diff --git a/.circleci/config.yml b/.circleci/config.yml index f118e3591a9..a0658a7878e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ version: 2 jobs: build_backend: docker: - - image: maven:3-openjdk-11 + - image: maven:3-eclipse-temurin-21 working_directory: /tmp/repos/cbioportal steps: - checkout @@ -18,10 +18,10 @@ jobs: - v1-mvn-dependencies-{{ checksum "poms_combined" }} - v1-mvn-dependencies- - run: - name: Build and unzip war + name: Build and unzip jar command: | - mvn -DskipTests clean install && \ - unzip portal/target/cbioportal*.war -d portal/target/war-exploded + cp src/main/resources/application.properties.EXAMPLE src/main/resources/application.properties && \ + mvn -DskipTests clean package - save_cache: paths: - ~/.m2 @@ -39,12 +39,12 @@ jobs: - run: name: Pull frontend code command: | - export FRONTEND_VERSION=$(grep 'frontend\.version' pom.xml | sed 's///g' | sed 's|||' | tr -d '[:blank:]') && \ + export FRONTEND_VERSION=$(grep '' pom.xml | sed 's///g' | sed 's|||' | tr -d '[:blank:]') && \ export FRONTEND_ORG=$(grep 'frontend\.groupId' pom.xml | sed 's///g' | sed 's|||' | tr -d '[:blank:]' | cut -d. -f3) && \ git clone https://github.com/$FRONTEND_ORG/cbioportal-frontend.git && \ cd cbioportal-frontend && \ git fetch --tags && \ - git checkout ${FRONTEND_VERSION} + git checkout demo-rfc72 - persist_to_workspace: root: /tmp/repos paths: @@ -145,11 +145,6 @@ jobs: command: | $TEST_HOME/docker_compose/setup.sh no_output_timeout: 25m - - run: - name: Generate checksum of data that populates the test database - command: | - bash -x $TEST_HOME/runtime-config/db_content_fingerprint.sh | tee /tmp/db_data_md5key - no_output_timeout: 25m - run: name: Create MySQL data directory command: | @@ -219,7 +214,7 @@ jobs: - store_artifacts: path: /tmp/repos/cbioportal-frontend/end-to-end-test/local/junit/errors/ destination: /errors - + environment: PORTAL_SOURCE_DIR: /tmp/repos/cbioportal-frontend/ TEST_HOME: /tmp/repos/cbioportal-frontend/end-to-end-test/local diff --git a/.github/workflows/core-test.yml b/.github/workflows/core-test.yml index 91db17f33b7..9664fa7d31e 100644 --- a/.github/workflows/core-test.yml +++ b/.github/workflows/core-test.yml @@ -17,10 +17,11 @@ jobs: uses: actions/checkout@v2 with: path: ./cbioportal - - name: 'Set up JDK 11' - uses: actions/setup-java@v1 + - name: 'Set up JDK 21' + uses: oracle-actions/setup-java@v1 with: - java-version: 11 + website: oracle.com + release: 21 - name: 'Cache Maven packages' uses: actions/cache@v1 with: @@ -40,6 +41,10 @@ jobs: run: | mkdir -p ~/.m2 && \ cp .github/settings.xml ~/.m2 + - name: 'Create application.properties' + working-directory: ./cbioportal + run: | + cp src/main/resources/application.properties.EXAMPLE src/main/resources/application.properties - name: 'Build cBioPortal once without tests' working-directory: ./cbioportal run: | diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index 70ee5e1c6b0..2da139728e5 100644 --- a/.github/workflows/dockerimage.yml +++ b/.github/workflows/dockerimage.yml @@ -18,7 +18,9 @@ jobs: steps: - name: Checkout git repo uses: actions/checkout@v3 - + - name: 'Create application.properties' + run: | + cp src/main/resources/application.properties.EXAMPLE src/main/resources/application.properties - name: Extract metadata id: meta uses: docker/metadata-action@v4 @@ -30,19 +32,19 @@ jobs: type=ref,event=branch type=semver,pattern={{version}} - # The following two actions are required to build multi-platform images - # buildx is an extension of docker build, QUEM is used to convert the binary to varies architecture - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} + # The following two actions are required to build multi-platform images + # buildx is an extension of docker build, QUEM is used to convert the binary to varies architecture + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Publish Docker Image on Tag uses: docker/build-push-action@v3 with: @@ -60,7 +62,9 @@ jobs: steps: - name: Checkout git repo uses: actions/checkout@v3 - + - name: 'Create application.properties' + run: | + cp src/main/resources/application.properties.EXAMPLE src/main/resources/application.properties - name: Extract metadata id: meta uses: docker/metadata-action@v4 @@ -75,19 +79,19 @@ jobs: type=ref,event=branch type=semver,pattern={{version}} - # The following two actions are required to build multi-platform images - # buildx is an extension of docker build, QUEM is used to convert the binary to varies architecture - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} + # The following two actions are required to build multi-platform images + # buildx is an extension of docker build, QUEM is used to convert the binary to varies architecture + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Publish Docker Image on Tag uses: docker/build-push-action@v3 with: diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 57ca628fc14..eb1ddd60dee 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -19,16 +19,21 @@ jobs: sudo apt-get install python3-setuptools && \ pip3 install -U wheel && \ pip3 install -r ./requirements.txt - - name: 'Set up JDK 11' - uses: actions/setup-java@v1 + - name: 'Set up JDK 21' + uses: oracle-actions/setup-java@v1 with: - java-version: 11 + website: oracle.com + release: 21 - name: 'Cache Maven packages' uses: actions/cache@v1 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 + - name: 'Copy application.properties' + working-directory: ./cbioportal + run: | + cp src/main/resources/application.properties.EXAMPLE src/main/resources/application.properties - name: 'Build cbioportal' working-directory: ./cbioportal run: | @@ -37,21 +42,30 @@ jobs: uses: actions/checkout@master with: repository: cbioportal/cbioportal-docker-compose + ref: demo-rfc72 path: ./cbioportal-docker-compose - name: 'Initialize cbioportal-docker-compose' working-directory: ./cbioportal-docker-compose run: | cd ./data && ./init.sh && rm -rf ./studies/* && cd ../config && \ - cat $PORTAL_SOURCE_DIR/portal/target/classes/portal.properties | \ - sed 's|db.host=.*||' | \ - sed 's|db.portal_db_name=.*||' | \ - sed 's|db.use_ssl=.*||' | \ - sed 's|db.connection_string=.*|db.connection_string=jdbc:mysql://cbioportal-database:3306/cbioportal?useSSL=false\&allowPublicKeyRetrieval=true|' \ - > portal.properties && more portal.properties + cat $PORTAL_SOURCE_DIR/src/main/resources/application.properties | \ + sed 's|spring.datasource.url=.*|spring.datasource.url=jdbc:mysql://cbioportal-database:3306/cbioportal?useSSL=false|' | \ + sed 's|spring.datasource.username=.*|spring.datasource.username=cbio_user|' | \ + sed 's|spring.datasource.password=.*|spring.datasource.password=somepassword|' \ + > application.properties && \ + echo "db.user=cbio_user" >> application.properties && \ + echo "db.password=somepassword" >> application.properties && \ + echo "db.connection_string=jdbc:mysql://cbioportal-database:3306/cbioportal?useSSL=false" >> application.properties && \ + echo "db.driver=com.mysql.jdbc.Driver" >> application.properties + - name: 'Copy cgds.sql file into Docker Compose' + run: cp ./cbioportal/src/main/resources/db-scripts/cgds.sql ./cbioportal-docker-compose/data/. + - name: 'Dump Properties' + working-directory: ./cbioportal-docker-compose + run: cat config/application.properties - name: 'Start cbioportal-docker-compose' working-directory: ./cbioportal-docker-compose run: | - docker-compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml up -d + export DOCKER_IMAGE_CBIOPORTAL=cbioportal/cbioportal:demo-rfc72-squash && docker-compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml up -d - name: 'Wait for cbioportal to initialize ...' id: startup uses: nev7n/wait_for_response@v1 @@ -60,6 +74,10 @@ jobs: responseCode: 200 timeout: 900000 interval: 30000 + - name: Log cBioPortal Service + if: ${{ failure() && steps.startup.conclusion == 'failure' }} + working-directory: ./cbioportal-docker-compose + run: docker-compose logs cbioportal - name: 'TEST - Validate and load study_es_0' if: steps.startup.conclusion == 'success' working-directory: ./cbioportal-docker-compose @@ -67,10 +85,9 @@ jobs: $PORTAL_SOURCE_DIR/test/integration/test_load_study.sh - name: 'TEST - Add OncoKB annotations to study' if: steps.startup.conclusion == 'success' - working-directory: ./cbioportal + working-directory: ./cbioportal-docker-compose run: | - export PYTHONPATH=$PORTAL_SOURCE_DIR/core/src/main/scripts && \ - $PORTAL_SOURCE_DIR/test/integration/integration_test_oncokb_import.sh + $PORTAL_SOURCE_DIR/test/integration/test_integration_test_oncokb_import.sh - name: 'TEST - Update OncoKB annotations' if: steps.startup.conclusion == 'success' working-directory: ./cbioportal-docker-compose diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index bcb38a958e8..bc6dc12004f 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -13,10 +13,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: Set up JDK 11 + - name: Set up JDK 21 uses: actions/setup-java@v1 with: - java-version: 11 + java-version: 21 - name: Cache SonarCloud packages uses: actions/cache@v1 with: @@ -29,6 +29,9 @@ jobs: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 + - name: 'Create application.properties' + run: | + cp src/main/resources/application.properties.EXAMPLE src/main/resources/application.properties - name: Build and analyze env: SONAR_TOKEN: de1b5cc660cd210dde840f492c371da6cc801763 diff --git a/.github/workflows/validate-data.yml b/.github/workflows/validate-data.yml index 05aabca2f21..80fc0e1818f 100644 --- a/.github/workflows/validate-data.yml +++ b/.github/workflows/validate-data.yml @@ -9,13 +9,18 @@ jobs: uses: actions/checkout@v2 with: path: ./cbioportal + - name: 'Checkout core module' + uses: actions/checkout@v4 + with: + path: ./cbioportal/core + repository: cBioPortal/cbioportal-core - name: 'Validate tests' working-directory: ./cbioportal run: | docker run -v ${PWD}:/cbioportal python:3.6 /bin/sh -c ' cd /cbioportal && pip install -r requirements.txt && - export PYTHONPATH=/cbioportal/core/src/main/scripts && + export PYTHONPATH=/cbioportal/core/src/main/resources/scripts && cd /cbioportal/core/src/test/scripts/ && python unit_tests_validate_data.py && python system_tests_validate_data.py && diff --git a/.gitignore b/.gitignore index 96a94a77245..4dda110d9ac 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,21 @@ +liftover/target/* +target/ +portal/target/* +core/target/* +annotator/target/* +importer/target/* +business/target/* +model/target/* +scripts/target +persistence/persistence-api/target/* +persistence/persistence-mybatis/target/* +persistence/persistence-mybatis-test/target/* +service/target/* +mutation-assessor/target/* +cbioportal-client/target/* +mondrian-cy3-app/target/* +utils/target/* +web/target/* nb-configuration.xml nbactions-private.xml oncotator/src/main/resources/db.properties @@ -55,6 +73,7 @@ portal/src/main/webapp/WEB-INF/logback.xml !src/main/resource/*.EXAMPLE firehose-importer/reference_data/gene_info portal.properties +application.properties importer.properties log4j.properties build.properties @@ -64,21 +83,6 @@ syntax: glob *.swp importer/*.log firehose-importer/*.txt -portal/target/* -liftover/target/* -core/target/* -annotator/target/* -importer/target/* -business/target/* -model/target/* -persistence/persistence-api/target/* -persistence/persistence-mybatis/target/* -persistence/persistence-mybatis-test/target/* -service/target/* -web/target/* -mutation-assessor/target/* -cbioportal-client/target/* -mondrian-cy3-app/target/* nbactions.xml */*.iml *.iml @@ -93,18 +97,16 @@ dependency-reduced-pom.xml /core/nbactions-private.xml .profile.d/ Procfile -scripts/target node_modules/ -target/ -portal/META-INF/* -portal/reactapp/* package.json .vscode/ *.tramp_history pom.version.* pom.xml.* -db-scripts/src/main/resources/cgds-test.sql pom.xml.* Dockerfile.local .factorypath -.retype \ No newline at end of file +.retype +security.properties +*.crt +*.key diff --git a/README.md b/README.md index 37ce2550b3f..afdcf952879 100644 --- a/README.md +++ b/README.md @@ -13,17 +13,59 @@ See [https://docs.cbioportal.org](https://docs.cbioportal.org) See [LICENSE](./LICENSE) ## 💻 Run Backend -cBioPortal consists of several components, please read the [Architecture docs](https://docs.cbioportal.org/2.1-deployment/architecture-overview) to figure out what repo would be relevant to edit. If you e.g. only want to make frontend changes, one can directly edit [the frontend repo](https://github.com/cbioportal/cbioportal-frontend) instead. Read the instructions in that repo for more info on how to do frontend development. This repo only contains the backend part. Before editing the backend, it's good to read the [backend code organization](docs/Backend-Code-Organization.md). For development of the backend repo one should first set up a database. Please follow the [Docker deployment documentation](https://docs.cbioportal.org/2.1.1-deploy-with-docker-recommended/docker) to do so. Change the [docker-compose](https://github.com/cBioPortal/cbioportal-docker-compose/blob/5da068f0eb9b4f42db52ab5e91321b26a1826d7a/docker-compose.yml#L6) file to use your image instead: +cBioPortal consists of several components, please read the [Architecture docs](https://docs.cbioportal.org/architecture-overview/) to figure out what repo would be relevant to edit. If you e.g. only want to make frontend changes, one can directly edit [the frontend repo](https://github.com/cbioportal/cbioportal-frontend) instead. Read the instructions in that repo for more info on how to do frontend development. This repo only contains the backend part. Before editing the backend, it's good to read the [backend code organization](docs/Backend-Code-Organization.md). + +### Local Development +#### What MySQL database to use +We recommend to set up a MySQL database using [Docker Compose](https://github.com/cBioPortal/cbioportal-docker-compose). It's useful to know how to do this as it allows you to import any dataset of your choice. For debugging production issues, we also have a database available with all the data on https://cbioportal.org that one can connect to directly. Please reach out on slack to get the credentials. + +#### Command Line +If you want to run the cBioPortal web app from the command line please follow these instructions. First, we want to make sure that all ports are open for the services set up through [docker compose](https://github.com/cBioPortal/cbioportal-docker-compose) (i.e. not just accessible to other containers within the same Docker Compose file). To do so, in the [docker compose repo](https://github.com/cBioPortal/cbioportal-docker-compose) run: + +``` +docker compose -f docker-compose.yml -f open-ports.yml up +``` +This should open the ports. Now we are ready to run the cBioPortal web app locally. You can compile the backend code with: +``` +export JAVA_HOME=/Library/Java/JavaVirtualMachines/temurin-11.jdk/Contents/Home/ && mvn -DskipTests clean install +``` +Note: change `JAVA_HOME` to point to a JDK 11 version. If everything compiles correctly you can then run the app like this: +``` +java -Xms2g -Xmx4g \ + -Dauthenticate=noauthsessionservice \ + -Dsession.service.url=http://localhost:5000/api/sessions/my_portal/ \ + -Dsession.service.origin='*' \ + -Dspring.datasource.username=cbio_user \ + -Dspring.datasource.password=somepassword \ + -Dspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver \ + -Dspring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect \ + -Dspring.datasource.url='jdbc:mysql://cbio_user:somepassword@localhost:3306/cbioportal?useSSL=false&allowPublicKeyRetrieval=true' \ + -Dshow.civic=true \ + -Dskin.footer='' \ + -Dapp.name='my-portal' \ + -Ddbconnector=dbcp \ + -cp "$PWD:$PWD/BOOT-INF/lib/*" \ + org.cbioportal.PortalApplication +``` +The app should now show up at http://localhost:8080. + +#### Deploy your development image inside Docker Compose +Another option is to deploy your development image directly into the [docker-compose](https://github.com/cBioPortal/cbioportal-docker-compose/blob/5da068f0eb9b4f42db52ab5e91321b26a1826d7a/docker-compose.yml#L6) file. First build the image like this ``` docker build -t cbioportal/cbioportal:my-dev-cbioportal-image -f docker/web-and-data/Dockerfile . ``` +Then change the [env file](https://github.com/cBioPortal/cbioportal-docker-compose/blob/master/.env) to use `cbioportal/cbioportal:my-dev-cbioportal-image`. + +### Local Development + + Note: internally we have a dev database available with the public data set that one can connect to directly. Please reach out on slack to get the credentials. It is usually best to use a small test dataset, but if a copy of the production database is necessary for e.g. fixing a bug specific to production data that can be useful. ### 🕵️‍♀️ Debugging -If you want to attach a debugger you can change the `docker-compose.yml` file to include the paramaters: `-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005`. Make sure to expose that port by adding `5005:5005` in the ports section of the cbioportal container. +If you want to attach a debugger you can change the `docker-compose.yml` file to include the paramaters: `-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005` (make sure to expose the debug port by adding `5005:5005` in the ports section of the cbioportal container). If you are running the java app outside of docker you can add the same parameters to the java command line arguments instead. You can then use a JAVA IDE to connect to that port. E.g. in [VSCode](https://code.visualstudio.com/), one would add the following configuration to `launch.json` to connect: diff --git a/app.json b/app.json deleted file mode 100644 index ecaf1edf5f4..00000000000 --- a/app.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "stack": "heroku-18", - "name": "cBioPortal", - "description":"The cBioPortal for Cancer Genomics provides visualization, analysis and download of large-scale cancer genomics data sets.", - "repository":"https://github.com/cbioportal/cbioportal", - "logo":"https://www.cbioportal.org/images/cbioportal_logo.png", - "keywords": [ - "java", - "tomcat", - "javascript", - "cancer", - "genomics" - ], - "env": { - "JAVA_OPTS": { - "description":"options for jvm", - "value": "-Xmx300m -Xms300m -XX:+UseCompressedOops" - }, - "MAVEN_CUSTOM_OPTS": { - "description":"set heroku profile for mvn", - "value":"-Pheroku,public -DskipTests -Dtomcat.catalina.scope=runtime -Dfinal.war.name=cbioportal" - }, - "SPRING_OPTS": { - "description":"set spring properties with e.g. -Dshow.civic=true (TODO: not all props work atm)", - "value":"-Dauthenticate=false -Dtomcat.catalina.scope=runtime -Ddb.user=cbio_user -Ddb.password=cbio_pass -Ddb.portal_db_name=cgds_public -Ddb.connection_string=jdbc:mysql://devdb.cbioportal.org:3306/ -Ddb.host=devdb.cbioportal.org -Dshow.civic=true -Dsuppress_schema_version_mismatch_errors=true -Dsession.service.url=https://cbioportal-session-service.herokuapp.com/session_service/api/sessions/heroku_portal/" - }, - "WEBAPP_RUNNER_OPTIONS": { - "description":"set webapp runner options", - "value":"--enable-compression" - } - }, - "buildpacks": [ - { - "url": "https://github.com/inodb/cbioportal-buildpack" - }, - { - "url": "https://github.com/heroku/heroku-buildpack-java" - } - ] -} diff --git a/core/pom.xml b/core/pom.xml deleted file mode 100644 index bf4c618d7d1..00000000000 --- a/core/pom.xml +++ /dev/null @@ -1,358 +0,0 @@ - - - - - master - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - core - Portal Core - Core libraries shared among other modules - - - - org.mskcc.cbio - persistence-connections - - - org.mskcc.cbio - security-spring - - - - org.mskcc.cbio - db-scripts - test - - - org.mskcc.cbio - service - - - - org.owasp - antisamy - - - - - org.antlr - antlr-runtime - - - - - org.apache.commons - commons-collections4 - - - org.apache.geronimo.bundles - commons-discovery - - - org.apache.commons - commons-dbcp2 - - - commons-fileupload - commons-fileupload - - - commons-io - commons-io - - - commons-httpclient - commons-httpclient - - - org.apache.httpcomponents - httpcore - - - commons-cli - commons-cli - - - org.apache.commons - commons-text - - - - - com.fasterxml.jackson.core - jackson-core - - - com.fasterxml.jackson.core - jackson-databind - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - - - - - javax.servlet - javax.servlet-api - - - - - net.sf.jopt-simple - jopt-simple - - - - - com.googlecode.json-simple - json-simple - - - - - net.sf.jung - jung-api - - - net.sf.jung - jung-graph-impl - - - - - net.sf.opencsv - opencsv - - - - - org.mockito - mockito-core - - - commons-codec - commons-codec - - - - batik - batik - - - batik - batik-rasterizer - - - org.apache.xmlgraphics - batik-codec - - - xalan - xalan - - - - - org.apache.xmlgraphics - fop - - - xerces - xercesImpl - - - - dom4j - dom4j - - - jaxen - jaxen - - - org.springframework - spring-tx - - - org.springframework - spring-test - - - org.easymock - easymock - - - org.mskcc.cbio - web - - - com.vlkan.hrrs - hrrs-servlet-filter-base64 - - - junit - junit - - - org.mskcc.cbio - maf - 0-unknown-version-SNAPSHOT - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - always - true - - - log4j.configuration - file:${project.parent.basedir}/src/main/resources/log4j.properties - - - - ${project.parent.basedir}/src/main/resources/ - - - **/Test*.java - - - - - integration-test - - test - - integration-test - - - none - - - **/Test*.java - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - unpack-dependencies - pre-integration-test - - unpack-dependencies - - - cgds-test.sql - ${project.build.testOutputDirectory} - db-scripts - - - - - - - org.codehaus.mojo - sql-maven-plugin - - - pre-integration-test - - execute - - - - settingsKey - ${db.test.driver} - ${db.test.url} - ${db.test.username} - ${db.test.password} - SET default_storage_engine=InnoDB - SET SESSION sql_mode = 'ANSI_QUOTES' - - ${project.build.testOutputDirectory}/cgds-test.sql - src/test/resources/seed_mini.sql - - - UTF-8 - characterEncoding=utf8, connectionCollation=utf8_general_ci - - ${skipTests} - - - - - - - org.apache.maven.plugins - maven-resources-plugin - - - copy-parent-resources - process-sources - - copy-resources - - - ${project.build.directory}/classes - - - ${project.parent.basedir}/portal/src/main/webapp/WEB-INF - true - - logback.xml - - - - ${project.parent.basedir}/src/main/resources - - **/*.properties - - - **/portal.properties.* - **/maven.properties.* - **/git.properties.* - **/*.EXAMPLE - - - - - - - - - - - - - src/main/resources - - sample_data/** - micrornas.tsv - - - - ../src/main/resources - true - - **/portal.properties - **/maven.properties - - - - - diff --git a/core/src/main/java/org/mskcc/cbio/io/WebFileConnect.java b/core/src/main/java/org/mskcc/cbio/io/WebFileConnect.java deleted file mode 100644 index ea6b1b58e8b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/io/WebFileConnect.java +++ /dev/null @@ -1,131 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.io; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileReader; -import java.io.IOException; -import java.util.ArrayList; - -/** - * Web/File Connect Utility Class. - * - * @author Ethan Cerami. - */ -public class WebFileConnect -{ - public static final String TAB = "\t"; - public static final String NEW_LINE = "\n"; - - /** - * Retrieves the Content from the Specified File. - * - * @param file File Object. - * @return String Object containing the full Document Content. - * @throws IOException Read Error. - */ - public static String retrieveDocument(File file) throws IOException { - BufferedReader in = new BufferedReader(new FileReader(file)); - return readFile(in); - } - - /** - * Retrieves the Matrix Content from the Specified File. - * - * @param file File Object. - * @return Matrix of Strings. - * @throws IOException Read Error. - */ - public static String[][] retrieveMatrix(File file) throws IOException { - BufferedReader in = new BufferedReader(new FileReader(file)); - String content = readFile(in); - return prepareMatrix(content); - } - - /** - * Parses Matrix Content from the Specified String. - * - * @param content Tab-Delim String. - * @return Matrix of Strings. - * @throws IOException Read Error. - */ - public static String[][] parseMatrix(String content) throws IOException { - return prepareMatrix(content); - } - - private static String[][] prepareMatrix(String content) { - String rawLines[] = content.split(NEW_LINE); - - // Ignore all lines starting with # sign; these are comments or warnings, not data. - ArrayList finalLines = new ArrayList(); - for (String currentLine: rawLines) { - if (!currentLine.startsWith("#")) { - finalLines.add(currentLine); - } - } - - String lines[] = finalLines.toArray(new String[finalLines.size()]); - String matrix[][] = null; - int numRows = lines.length; - int numCols = 0; - if (lines.length > 0) { - String firstLine = lines[0]; - String parts[] = firstLine.split(TAB); - numCols = parts.length; - } - if (numRows > 0 && numCols > 0) { - matrix = new String[numRows][numCols]; - for (int i = 0; i < lines.length; i++) { - String parts[] = lines[i].split(TAB,numCols); - for (int j = 0; j < parts.length; j++) { - matrix[i][j] = parts[j]; - } - } - } - return matrix; - } - - /** - * Reads Content from a Buffered Reader. - */ - public static String readFile(BufferedReader in) throws IOException { - StringBuffer buf = new StringBuffer(); - String str; - while ((str = in.readLine()) != null) { - buf.append(str + "\n"); - } - in.close(); - return buf.toString(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoAlleleSpecificCopyNumber.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoAlleleSpecificCopyNumber.java deleted file mode 100644 index 115d1717cce..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoAlleleSpecificCopyNumber.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright (c) 2019 - 2020 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; - -/** - * Data access object for Mutation table - */ -public final class DaoAlleleSpecificCopyNumber { - - public static int addAlleleSpecificCopyNumber(AlleleSpecificCopyNumber ascn) throws DaoException { - if (!MySQLbulkLoader.isBulkLoad()) { - throw new DaoException("You have to turn on MySQLbulkLoader in order to insert allele specific copy numbers"); - } else { - int result = 1; - MySQLbulkLoader.getMySQLbulkLoader("allele_specific_copy_number").insertRecord( - resolveValueToString(ascn.getMutationEventId()), - resolveValueToString(ascn.getGeneticProfileId()), - resolveValueToString(ascn.getSampleId()), - resolveValueToString(ascn.getAscnIntegerCopyNumber()), - ascn.getAscnMethod(), - resolveValueToString(ascn.getCcfExpectedCopiesUpper()), - resolveValueToString(ascn.getCcfExpectedCopies()), - ascn.getClonal(), - resolveValueToString(ascn.getMinorCopyNumber()), - resolveValueToString(ascn.getExpectedAltCopies()), - resolveValueToString(ascn.getTotalCopyNumber())); - return result; - } - } - - private static String resolveValueToString(Object value) { - if (value != null) { - return String.valueOf(value); - } - return null; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCancerStudy.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCancerStudy.java deleted file mode 100644 index 4073dbbb059..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCancerStudy.java +++ /dev/null @@ -1,677 +0,0 @@ -/* - * Copyright (c) 2015 - 2017 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.*; -import java.text.*; -import java.util.*; -import org.apache.commons.lang3.StringUtils; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; - -/** - * Analogous to and replaces the old DaoCancerType. A CancerStudy has a NAME and - * DESCRIPTION. If PUBLIC is true a CancerStudy can be accessed by anyone, - * otherwise can only be accessed through access control. - * - * @author Ethan Cerami - * @author Arthur Goldberg goldberg@cbio.mskcc.org - * @author Ersin Ciftci - */ -public final class DaoCancerStudy { - - public static enum Status { - UNAVAILABLE, - AVAILABLE - } - - private static final Map cacheDateByStableId = new HashMap(); - private static final Map cacheDateByInternalId = new HashMap(); - private static final Map byStableId = new HashMap(); - private static final Map byInternalId = new HashMap(); - - static { - SpringUtil.initDataSource(); - reCacheAll(); - } - - private DaoCancerStudy() {} - - public static synchronized void reCacheAll() { - System.out.println("Recaching... "); - DaoCancerStudy.reCache(); - DaoGeneticProfile.reCache(); - DaoPatient.reCache(); - DaoSample.reCache(); - DaoClinicalData.reCache(); - DaoInfo.setVersion(); - System.out.println("Finished recaching... "); - } - - private static synchronized void reCache() { - cacheDateByStableId.clear(); - cacheDateByInternalId.clear(); - byStableId.clear(); - byInternalId.clear(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - pstmt = con.prepareStatement("SELECT * FROM cancer_study"); - rs = pstmt.executeQuery(); - while (rs.next()) { - CancerStudy cancerStudy = extractCancerStudy(rs); - cacheCancerStudy(cancerStudy, new java.util.Date()); - } - } catch (SQLException | DaoException e) { - e.printStackTrace(); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } - - private static void cacheCancerStudy(CancerStudy study, java.util.Date importDate) { - cacheDateByStableId.put(study.getCancerStudyStableId(), importDate); - cacheDateByInternalId.put(study.getInternalId(), importDate); - byStableId.put(study.getCancerStudyStableId(), study); - byInternalId.put(study.getInternalId(), study); - } - - /** - * Removes the cancer study from cache - * @param internalCancerStudyId Internal cancer study ID - */ - private static void removeCancerStudyFromCache(int internalCancerStudyId) { - String stableId = byInternalId.get(internalCancerStudyId).getCancerStudyStableId(); - cacheDateByStableId.remove(stableId); - cacheDateByInternalId.remove(internalCancerStudyId); - byStableId.remove(stableId); - byInternalId.remove(internalCancerStudyId); - } - - public static void setStatus(Status status, String stableCancerStudyId, Integer ... internalId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - if (internalId.length > 0) { - pstmt = con.prepareStatement("UPDATE cancer_study set status = ? where cancer_study_id = ?"); - pstmt.setInt(1, status.ordinal()); - pstmt.setInt(2, internalId[0]); - } else { - pstmt = con.prepareStatement("UPDATE cancer_study set status = ? where cancer_study_identifier = ?"); - pstmt.setInt(1, status.ordinal()); - pstmt.setString(2, stableCancerStudyId); - } - pstmt.executeUpdate(); - } catch (SQLException e) { - if (!e.getMessage().toLowerCase().contains("unknown column")) { - throw new DaoException(e); - } - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } - - public static Status getStatus(String stableCancerStudyId, Integer ... internalId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - if (internalId.length > 0) { - pstmt = con.prepareStatement("SELECT status FROM cancer_study where cancer_study_id = ?"); - pstmt.setInt(1, internalId[0]); - } else { - pstmt = con.prepareStatement("SELECT status FROM cancer_study where cancer_study_identifier = ?"); - pstmt.setString(1, stableCancerStudyId); - } - rs = pstmt.executeQuery(); - if (rs.next()) { - Integer status = rs.getInt(1); - if (rs.wasNull()) { - return Status.AVAILABLE; - } - if (status>=Status.values().length) { - return Status.AVAILABLE; - } - return Status.values()[status]; - } else { - return Status.AVAILABLE; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } - - private static Integer getStudyCount() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - pstmt = con.prepareStatement("SELECT count(*) from cancer_study"); - rs = pstmt.executeQuery(); - if (rs.next()) { - return rs.getInt(1); - } else { - return 0; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } - - public static void setImportDate(Integer internalId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - pstmt = con.prepareStatement("UPDATE cancer_study set IMPORT_DATE = NOW() where cancer_study_id = ?"); - pstmt.setInt(1, internalId); - pstmt.executeUpdate(); - } catch (SQLException e) { - if (e.getMessage().toLowerCase().contains("unknown column")) { - return; - } - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } - - public static java.util.Date getImportDate(String stableCancerStudyId, Integer ... internalId) throws DaoException, ParseException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - if (internalId.length > 0) { - pstmt = con.prepareStatement("SELECT IMPORT_DATE FROM cancer_study where cancer_study_id = ?"); - pstmt.setInt(1, internalId[0]); - } else { - pstmt = con.prepareStatement("SELECT IMPORT_DATE FROM cancer_study where cancer_study_identifier = ?"); - pstmt.setString(1, stableCancerStudyId); - } - rs = pstmt.executeQuery(); - if (rs.next()) { - java.sql.Timestamp importDate = rs.getTimestamp(1); - if (rs.wasNull()) { - return new SimpleDateFormat("yyyyMMdd").parse("19180511"); - } else { - return importDate; - } - } else { - return new SimpleDateFormat("yyyyMMdd").parse("19180511"); - } - } catch (SQLException e) { - if (e.getMessage().toLowerCase().contains("unknown column")) { - return new SimpleDateFormat("yyyyMMdd").parse("19180511"); - } - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } - - /** - * Adds a cancer study to the Database. - * Updates cancerStudy with its auto incremented uid, in studyID. - * - * @param cancerStudy Cancer Study Object. - * @throws DaoException Database Error. - */ - public static void addCancerStudy(CancerStudy cancerStudy) throws DaoException { - addCancerStudy(cancerStudy, false); - } - - /** - * Adds a cancer study to the Database. - * @param cancerStudy - * @param overwrite if true, overwrite if exist. - * @throws DaoException - */ - public static void addCancerStudy(CancerStudy cancerStudy, boolean overwrite) throws DaoException { - // make sure that cancerStudy refers to a valid TypeOfCancerId - // TODO: have a foreign key constraint do this; why not? - TypeOfCancer aTypeOfCancer = DaoTypeOfCancer.getTypeOfCancerById(cancerStudy.getTypeOfCancerId()); - if (null == aTypeOfCancer) { - throw new DaoException("cancerStudy.getTypeOfCancerId() '" + cancerStudy.getTypeOfCancerId() + "' does not refer to a TypeOfCancer."); - } - // CANCER_STUDY_IDENTIFIER cannot be null - String stableId = cancerStudy.getCancerStudyStableId(); - if (stableId == null) { - throw new DaoException("Cancer study stable ID cannot be null."); - } - CancerStudy existing = getCancerStudyByStableId(stableId); - if (existing!=null) { - if (overwrite) { - //setStatus(Status.UNAVAILABLE, stableId); - deleteCancerStudy(existing.getInternalId()); - } else { - throw new DaoException("Cancer study " + stableId + "is already imported."); - } - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - pstmt = con.prepareStatement("INSERT INTO cancer_study " + - "( `CANCER_STUDY_IDENTIFIER`, `NAME`, " - + "`DESCRIPTION`, `PUBLIC`, `TYPE_OF_CANCER_ID`, " - + "`PMID`, `CITATION`, `GROUPS`, `STATUS`,`REFERENCE_GENOME_ID`, `IMPORT_DATE` ) VALUES (?,?,?,?,?,?,?,?,?,?,NOW())", - Statement.RETURN_GENERATED_KEYS); - pstmt.setString(1, stableId); - pstmt.setString(2, cancerStudy.getName()); - pstmt.setString(3, cancerStudy.getDescription()); - pstmt.setBoolean(4, cancerStudy.isPublicStudy()); - pstmt.setString(5, cancerStudy.getTypeOfCancerId()); - pstmt.setString(6, cancerStudy.getPmid()); - pstmt.setString(7, cancerStudy.getCitation()); - Set groups = cancerStudy.getGroups(); - if (groups==null) { - pstmt.setString(8, null); - } else { - pstmt.setString(8, StringUtils.join(groups, ";")); - } - //status is UNAVAILABLE until other data is loaded for this study. Once all is loaded, the - //data loading process can set this to AVAILABLE: - //TODO - use this field in parts of the system that build up the list of studies to display in home page: - pstmt.setInt(9, Status.UNAVAILABLE.ordinal()); - try { - ReferenceGenome referenceGenome = DaoReferenceGenome.getReferenceGenomeByGenomeName(cancerStudy.getReferenceGenome()); - pstmt.setInt(10, referenceGenome.getReferenceGenomeId()); - } - catch (NullPointerException e) { - throw new DaoException("Unsupported reference genome"); - } - pstmt.executeUpdate(); - rs = pstmt.getGeneratedKeys(); - if (rs.next()) { - int autoId = rs.getInt(1); - cancerStudy.setInternalId(autoId); - } - cacheCancerStudy(cancerStudy, new java.util.Date()); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - reCacheAll(); - } - - public static void addCancerStudyTags(CancerStudyTags cancerStudyTags) throws DaoException { - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - pstmt = con.prepareStatement("INSERT INTO cancer_study_tags " + - "( `CANCER_STUDY_ID`,`TAGS` ) VALUES (?,?)"); - pstmt.setInt(1, cancerStudyTags.getCancerStudyId()); - pstmt.setString(2, cancerStudyTags.getTags()); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } - - /** - * Return the cancerStudy identified by the internal cancer study ID, if it exists. - * - * @param internalId Internal (int) Cancer Study ID. - * @return Cancer Study Object, or null if there's no such study. - */ - public static CancerStudy getCancerStudyByInternalId(int internalId) throws DaoException { - return byInternalId.get(internalId); - } - - /** - * Returns the cancerStudy identified by the stable identifier, if it exists. - * - * @param stableId Cancer Study Stable ID. - * @return the CancerStudy, or null if there's no such study. - */ - public static CancerStudy getCancerStudyByStableId(String stableId) throws DaoException { - return byStableId.get(stableId); - } - - /** - * Indicates whether the cancerStudy identified by the stable ID exists. - * - * @param cancerStudyStableId Cancer Study Stable ID. - * @return true if the CancerStudy exists, otherwise false - */ - public static boolean doesCancerStudyExistByStableId(String cancerStudyStableId) { - return byStableId.containsKey(cancerStudyStableId); - } - - /** - * Indicates whether the cancerStudy identified by internal study ID exist. - * does no access control, so only returns a boolean. - * - * @param internalCancerStudyId Internal Cancer Study ID. - * @return true if the CancerStudy exists, otherwise false - */ - public static boolean doesCancerStudyExistByInternalId(int internalCancerStudyId) { - return byInternalId.containsKey(internalCancerStudyId); - } - - /** - * Returns all the cancerStudies. - * - * @return ArrayList of all CancerStudy Objects. - */ - public static ArrayList getAllCancerStudies() { - return new ArrayList(byStableId.values()); - } - - /** - * Gets Number of Cancer Studies. - * @return number of cancer studies. - */ - public static int getCount() { - return byStableId.size(); - } - - /** - * Deletes all Cancer Studies. - * @throws DaoException Database Error. - * - * @deprecated this should not be used. Use deleteCancerStudy(cancerStudyStableId) instead - */ - public static void deleteAllRecords() throws DaoException { - cacheDateByStableId.clear(); - cacheDateByInternalId.clear(); - byStableId.clear(); - byInternalId.clear(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - JdbcUtil.disableForeignKeyCheck(con); - pstmt = con.prepareStatement("TRUNCATE TABLE cancer_study"); - pstmt.executeUpdate(); - JdbcUtil.enableForeignKeyCheck(con); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } - - /** - * - * @param cancerStudyStableId - * @throws DaoException - * @deprecated - */ - public static void deleteCancerStudy(String cancerStudyStableId) throws DaoException { - CancerStudy study = getCancerStudyByStableId(cancerStudyStableId); - if (study != null){ - //setStatus(Status.UNAVAILABLE, cancerStudyStableId); - deleteCancerStudy(study.getInternalId()); - } - } - - public static Set getFreshGroups(int internalCancerStudyId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - pstmt = con.prepareStatement("SELECT * FROM cancer_study where cancer_study_id = ?"); - pstmt.setInt(1, internalCancerStudyId); - rs = pstmt.executeQuery(); - if (rs.next()) { - CancerStudy cancerStudy = extractCancerStudy(rs); - return cancerStudy.getGroups(); - } else { - return Collections.emptySet(); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } - - /** - * Calls deleteCancerStudyByCascade() if cancer study exists by stable id. - * @param cancerStudyStableId - * @throws DaoException - */ - public static void deleteCancerStudyByCascade(String cancerStudyStableId) throws DaoException { - CancerStudy study = getCancerStudyByStableId(cancerStudyStableId); - if (study != null) { - deleteCancerStudyByCascade(study.getInternalId()); - } - } - - /** - * Deletes a cancer study by internal id from db with foreign key constraints enforced. - * @param internalCancerStudyId - * @throws DaoException - */ - public static void deleteCancerStudyByCascade(int internalCancerStudyId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - pstmt = con.prepareStatement("DELETE FROM cancer_study WHERE cancer_study_id = ?"); - pstmt.setInt(1, internalCancerStudyId); - int rows = pstmt.executeUpdate(); - // throw dao exception if no rows affected by update - if (rows == 0) { - throw new DaoException("deleteCancerStudyByCascade() failed: No rows affected"); - } - removeCancerStudyFromCache(internalCancerStudyId); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - purgeUnreferencedRecordsAfterDeletionOfStudy(); - reCacheAll(); - System.out.println("deleted study:\nID: "+internalCancerStudyId); - } - - /** - * Deletes the Specified Cancer Study. - * This method uses a large set of database operations to progressively delete all associated - * data for a cancer study (including the study itself). A cleaner alternative based on - * foreign key constraints and the cascade of delete operations is also available - * (see deleteCancerStudyByCascade(int internalCancerStudyId)). - * - * Note to maintainers: Although deprecated, this method must be maintained for use in - * environments where foreign key constraints are not in use, so remember to update the - * implementation of this method if new tables are added or existing tables are changed. - * - * @param internalCancerStudyId Internal Cancer Study ID. - * @throws DaoException Database Error. - * @deprecated - */ - public static void deleteCancerStudy(int internalCancerStudyId) throws DaoException { - String[] deleteStudyStatements = { - "DELETE FROM sample_cna_event WHERE GENETIC_PROFILE_ID IN (SELECT GENETIC_PROFILE_ID FROM genetic_profile WHERE CANCER_STUDY_ID=?)", - "DELETE FROM genetic_alteration WHERE GENETIC_PROFILE_ID IN (SELECT GENETIC_PROFILE_ID FROM genetic_profile WHERE CANCER_STUDY_ID=?)", - "DELETE FROM genetic_profile_samples WHERE GENETIC_PROFILE_ID IN (SELECT GENETIC_PROFILE_ID FROM genetic_profile WHERE CANCER_STUDY_ID=?)", - "DELETE FROM sample_profile WHERE GENETIC_PROFILE_ID IN (SELECT GENETIC_PROFILE_ID FROM genetic_profile WHERE CANCER_STUDY_ID=?)", - "DELETE FROM mutation WHERE GENETIC_PROFILE_ID IN (SELECT GENETIC_PROFILE_ID FROM genetic_profile WHERE CANCER_STUDY_ID=?)", - "DELETE FROM alteration_driver_annotation WHERE GENETIC_PROFILE_ID IN (SELECT GENETIC_PROFILE_ID FROM genetic_profile WHERE CANCER_STUDY_ID=?)", - "DELETE FROM mutation_count_by_keyword WHERE GENETIC_PROFILE_ID IN (SELECT GENETIC_PROFILE_ID FROM genetic_profile WHERE CANCER_STUDY_ID=?)", - "DELETE FROM clinical_attribute_meta WHERE CANCER_STUDY_ID=?", - "DELETE FROM resource_definition WHERE CANCER_STUDY_ID=?", - "DELETE FROM resource_study WHERE INTERNAL_ID=?", - "DELETE FROM clinical_event_data WHERE CLINICAL_EVENT_ID IN (SELECT CLINICAL_EVENT_ID FROM clinical_event WHERE PATIENT_ID IN (SELECT INTERNAL_ID FROM patient WHERE CANCER_STUDY_ID=?))", - "DELETE FROM clinical_event WHERE PATIENT_ID IN (SELECT INTERNAL_ID FROM patient WHERE CANCER_STUDY_ID=?)", - "DELETE FROM sample_list_list WHERE LIST_ID IN (SELECT LIST_ID FROM sample_list WHERE CANCER_STUDY_ID=?)", - "DELETE FROM clinical_sample WHERE INTERNAL_ID IN (SELECT INTERNAL_ID FROM sample WHERE PATIENT_ID IN (SELECT INTERNAL_ID FROM patient WHERE CANCER_STUDY_ID=?))", - "DELETE FROM resource_sample WHERE INTERNAL_ID IN (SELECT INTERNAL_ID FROM sample WHERE PATIENT_ID IN (SELECT INTERNAL_ID FROM patient WHERE CANCER_STUDY_ID=?))", - "DELETE FROM copy_number_seg WHERE CANCER_STUDY_ID=?", - "DELETE FROM copy_number_seg_file WHERE CANCER_STUDY_ID=?", - "DELETE FROM sample WHERE PATIENT_ID IN (SELECT INTERNAL_ID FROM patient WHERE CANCER_STUDY_ID=?)", - "DELETE FROM clinical_patient WHERE INTERNAL_ID IN (SELECT INTERNAL_ID FROM patient WHERE CANCER_STUDY_ID=?)", - "DELETE FROM resource_patient WHERE INTERNAL_ID IN (SELECT INTERNAL_ID FROM patient WHERE CANCER_STUDY_ID=?)", - "DELETE FROM patient WHERE CANCER_STUDY_ID=?", - "DELETE FROM sample_list WHERE CANCER_STUDY_ID=?", - "DELETE FROM structural_variant WHERE GENETIC_PROFILE_ID IN (SELECT GENETIC_PROFILE_ID FROM genetic_profile WHERE CANCER_STUDY_ID=?)", - "DELETE FROM genetic_profile_link WHERE REFERRED_GENETIC_PROFILE_ID IN (select GENETIC_PROFILE_ID FROM genetic_profile where CANCER_STUDY_ID=?)", - "DELETE FROM genetic_profile WHERE CANCER_STUDY_ID=?", - "DELETE FROM gistic_to_gene WHERE GISTIC_ROI_ID IN (SELECT GISTIC_ROI_ID FROM gistic WHERE CANCER_STUDY_ID=?)", - "DELETE FROM gistic WHERE CANCER_STUDY_ID=?", - "DELETE FROM mut_sig WHERE CANCER_STUDY_ID=?", - "DELETE FROM cancer_study WHERE CANCER_STUDY_ID=?;" - }; - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - // check whether should delete generic assay meta profile by profile - DaoGenericAssay.checkAndDeleteGenericAssayMetaInStudy(internalCancerStudyId); - - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - for (String statementString : deleteStudyStatements) { - pstmt = con.prepareStatement(statementString); - if (statementString.contains("?")) { - pstmt.setInt(1, internalCancerStudyId); - } - pstmt.executeUpdate(); - pstmt.close(); - } - removeCancerStudyFromCache(internalCancerStudyId); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - purgeUnreferencedRecordsAfterDeletionOfStudy(); - reCacheAll(); - System.out.println("deleted study:\nID: "+internalCancerStudyId); - } - - /** - * Cleans up unreferenced records after cancer study deletion - * @throws DaoException - */ - public static void purgeUnreferencedRecordsAfterDeletionOfStudy() throws DaoException { - String[] deleteStudyStatements = { - "DELETE FROM cna_event WHERE NOT EXISTS (SELECT * FROM sample_cna_event WHERE sample_cna_event.CNA_EVENT_ID = cna_event.CNA_EVENT_ID)", - "DELETE FROM mutation_event WHERE NOT EXISTS (SELECT * FROM mutation WHERE mutation.MUTATION_EVENT_ID = mutation_event.MUTATION_EVENT_ID)" - }; - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - for (String statementString : deleteStudyStatements) { - pstmt = con.prepareStatement(statementString); - pstmt.executeUpdate(); - pstmt.close(); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } - - /** - * Extracts Cancer Study JDBC Results. - */ - private static CancerStudy extractCancerStudy(ResultSet rs) throws DaoException { - try { - CancerStudy cancerStudy = new CancerStudy(rs.getString("NAME"), - rs.getString("DESCRIPTION"), - rs.getString("CANCER_STUDY_IDENTIFIER"), - rs.getString("TYPE_OF_CANCER_ID"), - rs.getBoolean("PUBLIC")); - cancerStudy.setPmid(rs.getString("PMID")); - cancerStudy.setCitation(rs.getString("CITATION")); - cancerStudy.setGroupsInUpperCase(rs.getString("GROUPS")); - cancerStudy.setInternalId(rs.getInt("CANCER_STUDY_ID")); - cancerStudy.setImportDate(rs.getDate("IMPORT_DATE")); - cancerStudy.setReferenceGenome(DaoReferenceGenome.getReferenceGenomeByInternalId( - rs.getInt("REFERENCE_GENOME_ID")).getGenomeName()); - return cancerStudy; - } catch (SQLException e) { - throw new DaoException(e); - } - } - - private static boolean studyNeedsRecaching(String stableId, Integer ... internalId) { - if (cacheOutOfSyncWithDb()) { - return true; - } - try { - java.util.Date importDate = null; - java.util.Date cacheDate = null; - if (internalId.length > 0) { - importDate = getImportDate(null, internalId[0]); - cacheDate = cacheDateByInternalId.get(internalId[0]); - } else { - if (stableId.equals(org.mskcc.cbio.portal.util.AccessControl.ALL_CANCER_STUDIES_ID)) { - return false; - } - importDate = getImportDate(stableId); - cacheDate = cacheDateByStableId.get(stableId); - } - return (importDate == null || cacheDate == null) ? false : cacheDate.before(importDate); - } catch (ParseException e) { - return false; - } catch (DaoException e) { - return false; - } - } - - private static boolean cacheOutOfSyncWithDb() { - try { - return getStudyCount() != byStableId.size(); - } catch (DaoException e) { - } - return false; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoClinicalAttributeMeta.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoClinicalAttributeMeta.java deleted file mode 100644 index 4a725c41c96..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoClinicalAttributeMeta.java +++ /dev/null @@ -1,252 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; - -import com.google.inject.internal.Join; -import org.apache.commons.lang3.StringUtils; - -import java.sql.*; -import java.util.*; -import org.mskcc.cbio.portal.util.InternalIdUtil; - -/** - * Data Access Object for `clinical_attribute_meta` table - * - * @author Gideon Dresdner - */ -public class DaoClinicalAttributeMeta { - - public static int addDatum(ClinicalAttribute attr) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalAttributeMeta.class); - pstmt = con.prepareStatement - ("INSERT INTO clinical_attribute_meta(" + - "`ATTR_ID`," + - "`DISPLAY_NAME`," + - "`DESCRIPTION`," + - "`DATATYPE`," + - "`PATIENT_ATTRIBUTE`," + - "`PRIORITY`," + - "`CANCER_STUDY_ID`)" + - " VALUES(?,?,?,?,?,?,?)"); - pstmt.setString(1, attr.getAttrId()); - pstmt.setString(2, attr.getDisplayName()); - pstmt.setString(3, attr.getDescription()); - pstmt.setString(4, attr.getDatatype()); - pstmt.setBoolean(5, attr.isPatientAttribute()); - pstmt.setString(6, attr.getPriority()); - pstmt.setInt(7, attr.getCancerStudyId()); - return pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalAttributeMeta.class, con, pstmt, rs); - } - } - - private static ClinicalAttribute unpack(ResultSet rs) throws SQLException { - return new ClinicalAttribute(rs.getString("ATTR_ID"), - rs.getString("DISPLAY_NAME"), - rs.getString("DESCRIPTION"), - rs.getString("DATATYPE"), - rs.getBoolean("PATIENT_ATTRIBUTE"), - rs.getString("PRIORITY"), - rs.getInt("CANCER_STUDY_ID")); - } - - public static ClinicalAttribute getDatum(String attrId, Integer cancerStudyId) throws DaoException { - List attrs = getDatum(Arrays.asList(attrId), cancerStudyId); - if (attrs.isEmpty()) { - return null; - } - - return attrs.get(0); - } - - public static List getDatum(Collection attrIds, Integer cancerStudyId) throws DaoException { - if(attrIds == null || attrIds.isEmpty() ) { - return Collections.emptyList(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalAttributeMeta.class); - - pstmt = con.prepareStatement("SELECT * FROM clinical_attribute_meta WHERE ATTR_ID IN ('" - + StringUtils.join(attrIds,"','")+"') AND CANCER_STUDY_ID=" + String.valueOf(cancerStudyId)); - - rs = pstmt.executeQuery(); - - List list = new ArrayList(); - while (rs.next()) { - list.add(unpack(rs)); - } - - return list; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalAttributeMeta.class, con, pstmt, rs); - } - } - - public static List getDatum(Collection attrIds) throws DaoException { - if(attrIds == null || attrIds.isEmpty() ) { - return Collections.emptyList(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalAttributeMeta.class); - - pstmt = con.prepareStatement("SELECT * FROM clinical_attribute_meta WHERE ATTR_ID IN ('" - + StringUtils.join(attrIds,"','")+"')"); - - rs = pstmt.executeQuery(); - - List list = new ArrayList(); - while (rs.next()) { - list.add(unpack(rs)); - } - - return list; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalAttributeMeta.class, con, pstmt, rs); - } - } - - public static List getDataByStudy(int cancerStudyId) throws DaoException - { - List attrs = new ArrayList(); - attrs.addAll(getDataByCancerStudyId(cancerStudyId)); - - return attrs; - } - - /** - * Gets all the clinical attributes for a particular set of samples - * Looks in the clinical table for all records associated with any of the samples, extracts and uniques - * the attribute ids, then finally uses the attribute ids to fetch the clinical attributes from the db. - * - * @param sampleIdSet - * @return - * @throws DaoException - */ - private static List getDataByCancerStudyId(int cancerStudyId) throws DaoException { - - Connection con = null; - ResultSet rs = null; - PreparedStatement pstmt = null; - - String sql = ("SELECT DISTINCT ATTR_ID FROM clinical_attribute_meta" - + " WHERE CANCER_STUDY_ID = " + String.valueOf(cancerStudyId)); - - Set attrIds = new HashSet(); - try { - con = JdbcUtil.getDbConnection(DaoClinicalAttributeMeta.class); - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - - while(rs.next()) { - attrIds.add(rs.getString("ATTR_ID")); - } - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalAttributeMeta.class, con, pstmt, rs); - } - - return getDatum(attrIds, cancerStudyId); - } - - private static Collection getAll() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - Collection all = new ArrayList(); - - try { - con = JdbcUtil.getDbConnection(DaoClinicalAttributeMeta.class); - pstmt = con.prepareStatement("SELECT * FROM clinical_attribute_meta"); - rs = pstmt.executeQuery(); - - while (rs.next()) { - all.add(unpack(rs)); - } - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalAttributeMeta.class, con, pstmt, rs); - } - return all; - } - - public static Map getAllMap() throws DaoException { - - HashMap toReturn = new HashMap(); - for (ClinicalAttribute clinicalAttribute : DaoClinicalAttributeMeta.getAll()) { - toReturn.put(clinicalAttribute.getAttrId(), clinicalAttribute.getDisplayName()); - } - return toReturn; - } - - /** - * Deletes all Records. - * @throws DaoException DAO Error. - */ - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalAttributeMeta.class); - pstmt = con.prepareStatement("TRUNCATE TABLE clinical_attribute_meta"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalAttributeMeta.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoClinicalData.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoClinicalData.java deleted file mode 100755 index f626d9f4c1a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoClinicalData.java +++ /dev/null @@ -1,663 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.InternalIdUtil; - -import org.apache.commons.lang3.StringUtils; - -import java.sql.*; -import java.util.*; - -/** - * Data Access Object for `clinical` table - * - * @author Gideon Dresdner dresdnerg@cbio.mskcc.org - */ -public final class DaoClinicalData { - - public static final String SAMPLE_TABLE = "clinical_sample"; - public static final String PATIENT_TABLE = "clinical_patient"; - - private static final String SAMPLE_INSERT = "INSERT INTO " + SAMPLE_TABLE + "(`INTERAL_ID`,`ATTR_ID`,`ATTR_VALUE` VALUES(?,?,?)"; - private static final String PATIENT_INSERT = "INSERT INTO " + PATIENT_TABLE + "(`INTERNAL_ID`,`ATTR_ID`,`ATTR_VALUE` VALUES(?,?,?)"; - - private static final Map sampleAttributes = new HashMap(); - private static final Map patientAttributes = new HashMap(); - - private DaoClinicalData() {} - - public static synchronized void reCache() - { - clearCache(); - cacheAttributes(SAMPLE_TABLE, sampleAttributes); - cacheAttributes(PATIENT_TABLE, patientAttributes); - } - - private static void clearCache() - { - sampleAttributes.clear(); - patientAttributes.clear(); - } - - private static void cacheAttributes(String table, Map cache) - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalData.class); - pstmt = con.prepareStatement("SELECT * FROM " + table); - rs = pstmt.executeQuery(); - while (rs.next()) { - cache.put(rs.getString("ATTR_ID"), rs.getString("ATTR_ID")); - } - } - catch (SQLException e) { - e.printStackTrace(); - } - finally { - JdbcUtil.closeAll(DaoClinicalData.class, con, pstmt, rs); - } - } - - public static int addSampleDatum(int internalSampleId, String attrId, String attrVal) throws DaoException - { - sampleAttributes.put(attrId, attrId); - return addDatum(SAMPLE_INSERT, SAMPLE_TABLE, internalSampleId, attrId, attrVal); - } - - public static int addPatientDatum(int internalPatientId, String attrId, String attrVal) throws DaoException - { - patientAttributes.put(attrId, attrId); - return addDatum(PATIENT_INSERT, PATIENT_TABLE, internalPatientId, attrId, attrVal); - } - - public static int addDatum(String query, String tableName, - int internalId, String attrId, String attrVal) throws DaoException - { - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.getMySQLbulkLoader(tableName).insertRecord(Integer.toString(internalId), - attrId, - attrVal); - return 1; - } - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalData.class); - - pstmt = con.prepareStatement(query); - pstmt.setInt(1, internalId); - pstmt.setString(2, attrId); - pstmt.setString(3, attrVal); - int toReturn = pstmt.executeUpdate(); - - if (tableName.equals(PATIENT_TABLE)) { - patientAttributes.put(attrId, attrId); - } - else { - sampleAttributes.put(attrId, attrId); - } - - return toReturn; - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoClinicalData.class, con, pstmt, rs); - } - } - - public static ClinicalData getDatum(String cancerStudyId, String patientId, String attrId) throws DaoException - { - int internalCancerStudyId = getInternalCancerStudyId(cancerStudyId); - String table = getAttributeTable(attrId); - if (table==null) { - return null; - } - return getDatum(internalCancerStudyId, - table, - DaoPatient.getPatientByCancerStudyAndPatientId(internalCancerStudyId, patientId).getInternalId(), - attrId); - } - - private static int getInternalCancerStudyId(String cancerStudyId) throws DaoException - { - return DaoCancerStudy.getCancerStudyByStableId(cancerStudyId).getInternalId(); - } - - - private static String getAttributeTable(String attrId) throws DaoException - { - if (sampleAttributes.containsKey(attrId)) { - return SAMPLE_TABLE; - } - else if (patientAttributes.containsKey(attrId)) { - return (PATIENT_TABLE); - } - else { - return null; - } - } - - private static ClinicalData getDatum(int internalCancerStudyId, String table, int internalId, String attrId) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoClinicalData.class); - - pstmt = con.prepareStatement("SELECT * FROM " + table + - " WHERE INTERNAL_ID=? AND ATTR_ID=?"); - pstmt.setInt(1, internalId); - pstmt.setString(2, attrId); - - rs = pstmt.executeQuery(); - if (rs.next()) { - return extract(table, internalCancerStudyId, rs); - } - else { - return null; - } - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoClinicalData.class, con, pstmt, rs); - } - } - - public static List getDataByPatientId(int cancerStudyId, String patientId) throws DaoException - { - List internalIds = new ArrayList(); - internalIds.add(DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId).getInternalId()); - return getDataByInternalIds(cancerStudyId, PATIENT_TABLE, internalIds); - } - - private static List getDataByInternalIds(int internalCancerStudyId, String table, List internalIds) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - List clinicals = new ArrayList(); - String sql = ("SELECT * FROM " + table + " WHERE `INTERNAL_ID` IN " + - "(" + generateIdsSql(internalIds) + ")"); - - try { - con = JdbcUtil.getDbConnection(DaoClinicalData.class); - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - while (rs.next()) { - clinicals.add(extract(table, internalCancerStudyId, rs)); - } - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoClinicalData.class, con, pstmt, rs); - } - - return clinicals; - } - - public static List getData(String cancerStudyId) throws DaoException - { - return getData(getInternalCancerStudyId(cancerStudyId)); - } - public static List getData(int cancerStudyId) throws DaoException - { - - return getDataByInternalIds(cancerStudyId, PATIENT_TABLE, getPatientIdsByCancerStudy(cancerStudyId)); - } - - private static List getPatientIdsByCancerStudy(int cancerStudyId) - { - List patientIds = new ArrayList(); - for (Patient patient : DaoPatient.getPatientsByCancerStudyId(cancerStudyId)) { - patientIds.add(patient.getInternalId()); - } - return patientIds; - } - - private static List getSampleIdsByCancerStudy(int cancerStudyId) - { - List sampleIds = new ArrayList(); - for (Patient patient : DaoPatient.getPatientsByCancerStudyId(cancerStudyId)) { - for (Sample s : DaoSample.getSamplesByPatientId(patient.getInternalId())) { - sampleIds.add(s.getInternalId()); - } - } - return sampleIds; - } - - public static List getData(String cancerStudyId, Collection patientIds) throws DaoException - { - return getData(getInternalCancerStudyId(cancerStudyId), patientIds); - } - public static List getData(int cancerStudyId, Collection patientIds) throws DaoException - { - List patientIdsInt = new ArrayList(); - for (String patientId : patientIds) { - patientIdsInt.add(DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId).getInternalId()); - } - - return getDataByInternalIds(cancerStudyId, PATIENT_TABLE, patientIdsInt); - } - - public static List getSampleAndPatientData(int cancerStudyId, Collection sampleIds) throws DaoException - { - List sampleIdsInt = new ArrayList(); - List patientIdsInt = new ArrayList(); - Map> mapPatientIdSampleIds = new HashMap>(); - for (String sampleId : sampleIds) { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudyId, sampleId); - sampleIdsInt.add(sample.getInternalId()); - int patientIdInt = sample.getInternalPatientId(); - String patientIdStable = DaoPatient.getPatientById(patientIdInt).getStableId(); - patientIdsInt.add(patientIdInt); - Set sampleIdsForPatient = mapPatientIdSampleIds.get(patientIdStable); - if (sampleIdsForPatient==null) { - sampleIdsForPatient = new HashSet(); - mapPatientIdSampleIds.put(patientIdStable, sampleIdsForPatient); - } - sampleIdsForPatient.add(sampleId); - } - List sampleClinicalData = getDataByInternalIds(cancerStudyId, SAMPLE_TABLE, sampleIdsInt); - - List patientClinicalData = getDataByInternalIds(cancerStudyId, PATIENT_TABLE, patientIdsInt); - for (ClinicalData cd : patientClinicalData) { - String stablePatientId = cd.getStableId(); - Set sampleIdsForPatient = mapPatientIdSampleIds.get(stablePatientId); - for (String sampleId : sampleIdsForPatient) { - ClinicalData cdSample = new ClinicalData(cd); - cdSample.setStableId(sampleId); - sampleClinicalData.add(cdSample); - } - } - - return sampleClinicalData; - } - - public static List getSampleAndPatientData(int cancerStudyId, Collection sampleIds, ClinicalAttribute attr) throws DaoException - { - List sampleIdsInt = new ArrayList(); - List patientIdsInt = new ArrayList(); - Map> mapPatientIdSampleIds = new HashMap>(); - for (String sampleId : sampleIds) { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudyId, sampleId); - sampleIdsInt.add(sample.getInternalId()); - int patientIdInt = sample.getInternalPatientId(); - String patientIdStable = DaoPatient.getPatientById(patientIdInt).getStableId(); - patientIdsInt.add(patientIdInt); - Set sampleIdsForPatient = mapPatientIdSampleIds.get(patientIdStable); - if (sampleIdsForPatient==null) { - sampleIdsForPatient = new HashSet(); - mapPatientIdSampleIds.put(patientIdStable, sampleIdsForPatient); - } - sampleIdsForPatient.add(sampleId); - } - List sampleClinicalData = getDataByInternalIds(cancerStudyId, SAMPLE_TABLE, sampleIdsInt, Collections.singletonList(attr.getAttrId())); - - List patientClinicalData = getDataByInternalIds(cancerStudyId, PATIENT_TABLE, patientIdsInt, Collections.singletonList(attr.getAttrId())); - for (ClinicalData cd : patientClinicalData) { - String stablePatientId = cd.getStableId(); - Set sampleIdsForPatient = mapPatientIdSampleIds.get(stablePatientId); - for (String sampleId : sampleIdsForPatient) { - ClinicalData cdSample = new ClinicalData(cd); - cdSample.setStableId(sampleId); - sampleClinicalData.add(cdSample); - } - } - - return sampleClinicalData; - } - - public static List getSampleData(int cancerStudyId, Collection sampleIds, ClinicalAttribute attr) throws DaoException - { - List sampleIdsInt = new ArrayList(); - for (String sampleId : sampleIds) { - Sample _sample = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudyId, sampleId); - if (_sample != null) { - sampleIdsInt.add(_sample.getInternalId()); - } - } - return getDataByInternalIds(cancerStudyId, SAMPLE_TABLE, sampleIdsInt, Collections.singletonList(attr.getAttrId())); - } - - public static List getSampleData(int cancerStudyId, Collection sampleIds) throws DaoException - { - List sampleIdsInt = new ArrayList(); - for (String sampleId : sampleIds) { - sampleIdsInt.add(DaoSample.getSampleByCancerStudyAndSampleId(cancerStudyId, sampleId).getInternalId()); - } - return getDataByInternalIds(cancerStudyId, SAMPLE_TABLE, sampleIdsInt); - } - - public static List getData(String cancerStudyId, Collection patientIds, ClinicalAttribute attr) throws DaoException - { - int internalCancerStudyId = getInternalCancerStudyId(cancerStudyId); - List patientIdsInt = new ArrayList(); - for (String patientId : patientIds) { - patientIdsInt.add(DaoPatient.getPatientByCancerStudyAndPatientId(internalCancerStudyId, patientId).getInternalId()); - } - - return getDataByInternalIds(internalCancerStudyId, PATIENT_TABLE, patientIdsInt, Collections.singletonList(attr.getAttrId())); - } - - private static List getDataByInternalIds(int internalCancerStudyId, String table, List internalIds, Collection attributeIds) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - List clinicals = new ArrayList(); - - String sql = ("SELECT * FROM " + table + " WHERE `INTERNAL_ID` IN " + - "(" + generateIdsSql(internalIds) + ") " + - " AND ATTR_ID IN ('"+ StringUtils.join(attributeIds, "','")+"') "); - - try { - con = JdbcUtil.getDbConnection(DaoClinicalData.class); - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - while (rs.next()) { - clinicals.add(extract(table, internalCancerStudyId, rs)); - } - } catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoClinicalData.class, con, pstmt, rs); - } - return clinicals; - } - - public static List getDataByAttributeIds(int internalCancerStudyId, Collection attributeIds) throws DaoException { - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - List clinicals = new ArrayList(); - - try { - con = JdbcUtil.getDbConnection(DaoClinicalData.class); - - pstmt = con.prepareStatement("SELECT * FROM clinical_patient WHERE" + - " ATTR_ID IN ('" + StringUtils.join(attributeIds, "','") +"') "); - - List patients = getPatientIdsByCancerStudy(internalCancerStudyId); - - rs = pstmt.executeQuery(); - while(rs.next()) { - Integer patientId = rs.getInt("INTERNAL_ID"); - if (patients.contains(patientId)) { - clinicals.add(extract(PATIENT_TABLE, internalCancerStudyId, rs)); - } - } - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoClinicalData.class, con, pstmt, rs); - } - - return clinicals; - } - - private static ClinicalData extract(String table, int internalCancerStudyId, ResultSet rs) throws SQLException { - // get - String stableId = getStableIdFromInternalId(table, rs.getInt("INTERNAL_ID")); - return new ClinicalData(internalCancerStudyId, - stableId, - rs.getString("ATTR_ID"), - rs.getString("ATTR_VALUE")); - } - - private static String getStableIdFromInternalId(String table, int internalId) - { - if (table.equals(SAMPLE_TABLE)) { - return DaoSample.getSampleById(internalId).getStableId(); - } - else { - return DaoPatient.getPatientById(internalId).getStableId(); - } - } - - private static String generateIdsSql(Collection ids) { - return "'" + StringUtils.join(ids, "','") + "'"; - } - - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalData.class); - pstmt = con.prepareStatement("TRUNCATE TABLE clinical_patient"); - pstmt.executeUpdate(); - pstmt = con.prepareStatement("TRUNCATE TABLE clinical_sample"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalData.class, con, pstmt, rs); - } - reCache(); - } - - /********************************************************* - * Previous DaoClinicalData class methods (accessors only) - *********************************************************/ - - /** - * Returns the survival data for the given patientSet, NOT necessarily in the - * same order as the patientSet. - * - * @param cancerStudyId: the cancerstudy internal id - * @param patientSet: set of patient ids - * @return - * @throws DaoException - */ - public static List getSurvivalData(int cancerStudyId, Collection patientSet) throws DaoException { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByInternalId(cancerStudyId); - List data = getData(cancerStudyId, patientSet); - Map> clinicalData = new LinkedHashMap>(); - for (ClinicalData cd : data) { - String patientId = cd.getStableId(); - Map msc = clinicalData.get(cd.getStableId()); - if (msc==null) { - msc = new HashMap(); - clinicalData.put(patientId, msc); - } - msc.put(cd.getAttrId(), cd); - } - - ArrayList toReturn = new ArrayList(); - for (Map.Entry> entry : clinicalData.entrySet()) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, entry.getKey()); - toReturn.add(new Patient(cancerStudy, patient.getStableId(), patient.getInternalId(), entry.getValue())); - } - return toReturn; - } - - /************************************************************** - * Previous DaoClinicalFreeForm class methods (accessors only) - *************************************************************/ - - public static List getDataSlice(int cancerStudyId, Collection attributeIds) throws DaoException { - - Map> mapAttrStableIdValue = new HashMap>(); - for (ClinicalData cd : getDataByAttributeIds(cancerStudyId, attributeIds)) { - - String attrId = cd.getAttrId(); - String value = cd.getAttrVal(); - String stableId = cd.getStableId(); - - if (value.isEmpty() || value.equals(ClinicalAttribute.NA)) { - continue; - } - - Map mapStableIdValue = mapAttrStableIdValue.get(attrId); - if (mapStableIdValue == null) { - mapStableIdValue = new HashMap(); - mapAttrStableIdValue.put(attrId, mapStableIdValue); - } - mapStableIdValue.put(stableId, value); - } - - List maps = new ArrayList(); - for (Map.Entry> entry : mapAttrStableIdValue.entrySet()) { - maps.add(new ClinicalParameterMap(entry.getKey(), entry.getValue())); - } - - return maps; - } - - public static HashSet getDistinctParameters(int cancerStudyId) throws DaoException { - - HashSet toReturn = new HashSet(); - for (ClinicalData clinicalData : DaoClinicalData.getData(cancerStudyId)) { - toReturn.add(clinicalData.getAttrId()); - } - - return toReturn; - } - public static HashSet getAllPatients(int cancerStudyId) throws DaoException { - - HashSet toReturn = new HashSet(); - for (ClinicalData clinicalData : getData(cancerStudyId)) { - toReturn.add(clinicalData.getStableId()); - } - - return toReturn; - } - public static List getDataByCancerStudy(int cancerStudyId) throws DaoException { - - return DaoClinicalData.getData(cancerStudyId); - } - - public static List getDataByPatientIds(int cancerStudyId, List patientIds) throws DaoException { - - return DaoClinicalData.getData(cancerStudyId, patientIds); - } - - public static List getPatientsByAttribute(int cancerStudy, String paramName, String paramValue) throws DaoException - { - List ids = getIdsByAttribute(cancerStudy, paramName, paramValue, PATIENT_TABLE); - return InternalIdUtil.getPatientsById(ids); - } - - public static List getSamplesByAttribute(int cancerStudy, String paramName, String paramValue) throws DaoException - { - List ids = getIdsByAttribute(cancerStudy, paramName, paramValue, SAMPLE_TABLE); - return InternalIdUtil.getSamplesById(ids); - } - - - private static List getIdsByAttribute(int cancerStudyId, String paramName, String paramValue, String tableName) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try{ - con = JdbcUtil.getDbConnection(DaoClinicalData.class); - pstmt = con.prepareStatement ("SELECT INTERNAL_ID FROM `" + tableName + "`" - + " WHERE ATTR_ID=? AND ATTR_VALUE=?"); - pstmt.setString(1, paramName); - pstmt.setString(2, paramValue); - rs = pstmt.executeQuery(); - - List ids = new ArrayList(); - - while (rs.next()) - { - ids.add(rs.getInt("INTERNAL_ID")); - } - - return ids; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalData.class, con, pstmt, rs); - } - } - - // get cancerType from the clinical_sample table to determine whether we have multiple cancer types - // for given samples - public static Map> getCancerTypeInfoBySamples(List samplesList) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try{ - con = JdbcUtil.getDbConnection(DaoClinicalData.class); - pstmt = con.prepareStatement("select " + - "distinct ATTR_VALUE as attributeValue, " + - "ATTR_ID as attributeID from clinical_sample " + - "where ATTR_ID in (?, ?) and INTERNAL_ID in (" + - "select INTERNAL_ID from sample where STABLE_ID in ('" - + StringUtils.join(samplesList,"','")+"'))"); - pstmt.setString(1, ClinicalAttribute.CANCER_TYPE); - pstmt.setString(2, ClinicalAttribute.CANCER_TYPE_DETAILED); - rs = pstmt.executeQuery(); - - // create a map for the results - Map> result = new LinkedHashMap>(); - result.put( ClinicalAttribute.CANCER_TYPE, new HashSet()); - result.put( ClinicalAttribute.CANCER_TYPE_DETAILED, new HashSet()); - while (rs.next()) - { - result.get(rs.getString("attributeID")).add(rs.getString("attributeValue")); - } - - return result; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalData.class, con, pstmt, rs); - } - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoClinicalEvent.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoClinicalEvent.java deleted file mode 100644 index 21722902701..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoClinicalEvent.java +++ /dev/null @@ -1,224 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import org.apache.commons.lang3.StringUtils; -import org.mskcc.cbio.portal.model.ClinicalEvent; - -/** - * - * @author gaoj - */ -public final class DaoClinicalEvent { - private DaoClinicalEvent() {} - - public static int addClinicalEvent(ClinicalEvent clinicalEvent) { - if (!MySQLbulkLoader.isBulkLoad()) { - throw new IllegalStateException("Only buld load mode is allowed for importing clinical events"); - } - - MySQLbulkLoader.getMySQLbulkLoader("clinical_event").insertRecord( - Long.toString(clinicalEvent.getClinicalEventId()), - Integer.toString(clinicalEvent.getPatientId()), - clinicalEvent.getStartDate().toString(), - clinicalEvent.getStopDate()==null?null:clinicalEvent.getStopDate().toString(), - clinicalEvent.getEventType() - ); - return 1+addClinicalEventData(clinicalEvent); - } - - private static int addClinicalEventData(ClinicalEvent clinicalEvent) { - long eventId = clinicalEvent.getClinicalEventId(); - for (Map.Entry entry : clinicalEvent.getEventData().entrySet()) { - MySQLbulkLoader.getMySQLbulkLoader("clinical_event_data").insertRecord( - Long.toString(eventId), - entry.getKey(), - entry.getValue() - ); - } - return 1; - - } - - public static List getClinicalEvent(int patientId) throws DaoException { - return getClinicalEvent(patientId, null); - } - - public static List getClinicalEvent(int patientId, String eventType) throws DaoException { - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalEvent.class); - - // get events first - if (eventType==null) { - pstmt = con.prepareStatement("SELECT * FROM clinical_event WHERE PATIENT_ID=?"); - } else { - pstmt = con.prepareStatement("SELECT * FROM clinical_event WHERE PATIENT_ID=? AND EVENT_TYPE=?"); - } - pstmt.setInt(1, patientId); - if (eventType!=null) { - pstmt.setString(2, eventType); - } - - rs = pstmt.executeQuery(); - Map clinicalEvents = new HashMap(); - while (rs.next()) { - ClinicalEvent clinicalEvent = extractClinicalEvent(rs); - clinicalEvents.put(clinicalEvent.getClinicalEventId(), clinicalEvent); - } - - rs.close(); - - // get data then - if (!clinicalEvents.isEmpty()) { - pstmt = con.prepareStatement("SELECT * FROM clinical_event_data WHERE CLINICAL_EVENT_ID IN (" - + StringUtils.join(clinicalEvents.keySet(), ",") + ")"); - - rs = pstmt.executeQuery(); - while (rs.next()) { - long eventId = rs.getLong("CLINICAL_EVENT_ID"); - clinicalEvents.get(eventId).addEventDatum(rs.getString("KEY"), rs.getString("VALUE")); - } - } - - return new ArrayList(clinicalEvents.values()); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalEvent.class, con, pstmt, rs); - } - } - - private static ClinicalEvent extractClinicalEvent(ResultSet rs) throws SQLException { - ClinicalEvent clinicalEvent = new ClinicalEvent(); - clinicalEvent.setClinicalEventId(rs.getLong("CLINICAL_EVENT_ID")); - clinicalEvent.setPatientId(rs.getInt("PATIENT_ID")); - clinicalEvent.setStartDate(JdbcUtil.readLongFromResultSet(rs, "START_DATE")); - clinicalEvent.setStopDate(JdbcUtil.readLongFromResultSet(rs, "STOP_DATE")); - clinicalEvent.setEventType(rs.getString("EVENT_TYPE")); - return clinicalEvent; - } - - public static long getLargestClinicalEventId() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalEvent.class); - pstmt = con.prepareStatement - ("SELECT MAX(`CLINICAL_EVENT_ID`) FROM `clinical_event`"); - rs = pstmt.executeQuery(); - return rs.next() ? rs.getLong(1) : 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalEvent.class, con, pstmt, rs); - } - } - - /** - * - * @param cancerStudyId - * @param caseId - * @return true if timeline data exist for the case - * @throws DaoException - */ - public static boolean timeEventsExistForPatient(int patientId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCopyNumberSegment.class); - pstmt = con.prepareStatement("SELECT EXISTS(SELECT 1 FROM `clinical_event` WHERE `PATIENT_ID`=?)"); - pstmt.setInt(1, patientId); - rs = pstmt.executeQuery(); - return rs.next() && rs.getInt(1)==1; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCopyNumberSegment.class, con, pstmt, rs); - } - } - - public static void deleteByCancerStudyId(int cancerStudyId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalEvent.class); - - pstmt = con.prepareStatement("DELETE FROM clinical_event_data WHERE CLINICAL_EVENT_ID IN " - + "(SELECT CLINICAL_EVENT_ID FROM clinical_event WHERE PATIENT_ID in (SELECT INTERNAL_ID FROM patient where CANCER_STUDY_ID=?))"); - pstmt.setInt(1, cancerStudyId); - pstmt.executeUpdate(); - - pstmt = con.prepareStatement("DELETE FROM clinical_event WHERE PATIENT_ID in (SELECT INTERNAL_ID FROM patient where CANCER_STUDY_ID=?)"); - pstmt.setInt(1, cancerStudyId); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalEvent.class, con, pstmt, rs); - } - } - - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoClinicalData.class); - JdbcUtil.disableForeignKeyCheck(con); - pstmt = con.prepareStatement("TRUNCATE TABLE clinical_event_data"); - pstmt.executeUpdate(); - pstmt = con.prepareStatement("TRUNCATE TABLE clinical_event"); - pstmt.executeUpdate(); - JdbcUtil.enableForeignKeyCheck(con); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoClinicalData.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCnaEvent.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCnaEvent.java deleted file mode 100644 index e7785d4f6c6..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCnaEvent.java +++ /dev/null @@ -1,356 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.apache.commons.lang3.StringUtils; -import org.mskcc.cbio.portal.model.CnaEvent; -import org.mskcc.cbio.portal.model.Sample; - -import java.sql.*; -import java.util.*; - -/** - * - * @author jgao - */ -public final class DaoCnaEvent { - private DaoCnaEvent() {} - - public static void addCaseCnaEvent(CnaEvent cnaEvent, boolean newCnaEvent) throws DaoException { - if (!MySQLbulkLoader.isBulkLoad()) { - throw new DaoException("You have to turn on MySQLbulkLoader in order to insert sample_cna_event"); - } - else { - long eventId = cnaEvent.getEventId(); - if (newCnaEvent) { - eventId = addCnaEventDirectly(cnaEvent); - // update object based on new DB id (since this object is locally cached after this): - cnaEvent.setEventId(eventId); - } - - MySQLbulkLoader.getMySQLbulkLoader("sample_cna_event").insertRecord( - Long.toString(eventId), - Integer.toString(cnaEvent.getSampleId()), - Integer.toString(cnaEvent.getCnaProfileId()), - cnaEvent.getAnnotationJson() - ); - - if ((cnaEvent.getDriverFilter() != null - && !cnaEvent.getDriverFilter().isEmpty() - && !cnaEvent.getDriverFilter().toLowerCase().equals("na")) - || - (cnaEvent.getDriverTiersFilter() != null - && !cnaEvent.getDriverTiersFilter().isEmpty() - && !cnaEvent.getDriverTiersFilter().toLowerCase().equals("na")) - ) { - MySQLbulkLoader - .getMySQLbulkLoader("alteration_driver_annotation") - .insertRecord( - Long.toString(eventId), - Integer.toString(cnaEvent.getCnaProfileId()), - Integer.toString(cnaEvent.getSampleId()), - cnaEvent.getDriverFilter(), - cnaEvent.getDriverFilterAnnotation(), - cnaEvent.getDriverTiersFilter(), - cnaEvent.getDriverTiersFilterAnnotation() - ); - } - } - } - - /** - * Add new event directly and return the auto increment value. - * - * @param cnaEvent - * @return - * @throws DaoException - */ - private static long addCnaEventDirectly(CnaEvent cnaEvent) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCnaEvent.class); - pstmt = con.prepareStatement - ("INSERT INTO cna_event (" + - "`ENTREZ_GENE_ID`," + - "`ALTERATION` )" + - " VALUES(?,?)", Statement.RETURN_GENERATED_KEYS); - pstmt.setLong(1, cnaEvent.getEntrezGeneId()); - pstmt.setShort(2, cnaEvent.getAlteration().getCode()); - pstmt.executeUpdate(); - rs = pstmt.getGeneratedKeys(); - rs.next(); - long newId = rs.getLong(1); - return newId; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCnaEvent.class, con, pstmt, rs); - } - } - - public static Map> getSamplesWithAlterations( - Collection eventIds) throws DaoException { - return getSamplesWithAlterations(StringUtils.join(eventIds, ",")); - } - - public static Map> getSamplesWithAlterations(String concatEventIds) - throws DaoException { - if (concatEventIds.isEmpty()) { - return Collections.emptyMap(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCnaEvent.class); - String sql = "SELECT * FROM sample_cna_event" - + " WHERE `CNA_EVENT_ID` IN (" - + concatEventIds + ")"; - pstmt = con.prepareStatement(sql); - - Map> map = new HashMap> (); - rs = pstmt.executeQuery(); - while (rs.next()) { - Sample sample = DaoSample.getSampleById(rs.getInt("SAMPLE_ID")); - long eventId = rs.getLong("CNA_EVENT_ID"); - Set events = map.get(sample); - if (events == null) { - events = new HashSet(); - map.put(sample, events); - } - events.add(eventId); - } - return map; - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCnaEvent.class, con, pstmt, rs); - } - } - - public static List getCnaEvents(List sampleIds, Collection entrezGeneIds , int profileId, Collection cnaLevels) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCnaEvent.class); - pstmt = con.prepareStatement - ("SELECT sample_cna_event.CNA_EVENT_ID," - + " sample_cna_event.SAMPLE_ID," - + " sample_cna_event.GENETIC_PROFILE_ID," - + " ENTREZ_GENE_ID," - + " ALTERATION," - + " alteration_driver_annotation.DRIVER_FILTER," - + " alteration_driver_annotation.DRIVER_FILTER_ANNOTATION," - + " alteration_driver_annotation.DRIVER_TIERS_FILTER," - + " alteration_driver_annotation.DRIVER_TIERS_FILTER_ANNOTATION" - + " FROM sample_cna_event" - + " LEFT JOIN alteration_driver_annotation ON" - + " sample_cna_event.GENETIC_PROFILE_ID = alteration_driver_annotation.GENETIC_PROFILE_ID" - + " and sample_cna_event.SAMPLE_ID = alteration_driver_annotation.SAMPLE_ID" - + " and sample_cna_event.CNA_EVENT_ID = alteration_driver_annotation.ALTERATION_EVENT_ID," - + " cna_event" - + " WHERE sample_cna_event.GENETIC_PROFILE_ID=?" - + " AND sample_cna_event.CNA_EVENT_ID=cna_event.CNA_EVENT_ID" - + (entrezGeneIds==null?"":" AND ENTREZ_GENE_ID IN(" + StringUtils.join(entrezGeneIds,",") + ")") - + " AND ALTERATION IN (" + StringUtils.join(cnaLevels,",") + ")" - + " AND sample_cna_event.SAMPLE_ID in ('"+StringUtils.join(sampleIds, "','")+"')"); - pstmt.setInt(1, profileId); - rs = pstmt.executeQuery(); - List events = new ArrayList(); - while (rs.next()) { - events.add(extractCnaEvent(rs)); - } - return events; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCnaEvent.class, con, pstmt, rs); - } - } - - private static CnaEvent extractCnaEvent(ResultSet rs) throws SQLException { - CnaEvent cnaEvent = new CnaEvent(rs.getInt("SAMPLE_ID"), - rs.getInt("GENETIC_PROFILE_ID"), - rs.getLong("ENTREZ_GENE_ID"), - rs.getShort("ALTERATION")); - cnaEvent.setEventId(rs.getLong("CNA_EVENT_ID")); - cnaEvent.setDriverFilter(rs.getString("DRIVER_FILTER")); - cnaEvent.setDriverFilterAnnotation(rs.getString("DRIVER_FILTER_ANNOTATION")); - cnaEvent.setDriverTiersFilter(rs.getString("DRIVER_TIERS_FILTER")); - cnaEvent.setDriverTiersFilterAnnotation(rs.getString("DRIVER_TIERS_FILTER_ANNOTATION")); - return cnaEvent; - } - - public static List getAllCnaEvents() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCnaEvent.class); - pstmt = con.prepareStatement - ("SELECT * FROM cna_event"); - rs = pstmt.executeQuery(); - List events = new ArrayList(); - while (rs.next()) { - try { - CnaEvent.Event event = new CnaEvent.Event(); - event.setEventId(rs.getLong("CNA_EVENT_ID")); - event.setEntrezGeneId(rs.getLong("ENTREZ_GENE_ID")); - event.setAlteration(rs.getShort("ALTERATION")); - events.add(event); - } catch (IllegalArgumentException e) { - e.printStackTrace(); - } - } - return events; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCnaEvent.class, con, pstmt, rs); - } - } - - public static Map> countSamplesWithCNAGenes( - Collection entrezGeneIds, int profileId) throws DaoException { - return countSamplesWithCNAGenes(StringUtils.join(entrezGeneIds, ","), profileId); - } - - public static Map> countSamplesWithCNAGenes( - String concatEntrezGeneIds, int profileId) throws DaoException { - if (concatEntrezGeneIds.isEmpty()) { - return Collections.emptyMap(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCnaEvent.class); - String sql = "SELECT `ENTREZ_GENE_ID`, `ALTERATION`, count(*)" - + " FROM sample_cna_event, cna_event" - + " WHERE `GENETIC_PROFILE_ID`=" + profileId - + " and sample_cna_event.`CNA_EVENT_ID`=cna_event.`CNA_EVENT_ID`" - + " and `ENTREZ_GENE_ID` IN (" - + concatEntrezGeneIds - + ") GROUP BY `ENTREZ_GENE_ID`, `ALTERATION`"; - pstmt = con.prepareStatement(sql); - - Map> map = new HashMap>(); - rs = pstmt.executeQuery(); - while (rs.next()) { - Long entrez = rs.getLong(1); - Integer alt = rs.getInt(2); - Integer count = rs.getInt(3); - Map mapII = map.get(entrez); - if (mapII==null) { - mapII = new HashMap(); - map.put(entrez, mapII); - } - mapII.put(alt, count); - } - return map; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCnaEvent.class, con, pstmt, rs); - } - } - - public static Map countSamplesWithCnaEvents(Collection eventIds, - int profileId) throws DaoException { - return countSamplesWithCnaEvents(StringUtils.join(eventIds, ","), profileId); - } - - public static Map countSamplesWithCnaEvents(String concatEventIds, - int profileId) throws DaoException { - if (concatEventIds.isEmpty()) { - return Collections.emptyMap(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCnaEvent.class); - String sql = "SELECT `CNA_EVENT_ID`, count(*) FROM sample_cna_event" - + " WHERE `GENETIC_PROFILE_ID`=" + profileId - + " and `CNA_EVENT_ID` IN (" - + concatEventIds - + ") GROUP BY `CNA_EVENT_ID`"; - pstmt = con.prepareStatement(sql); - - Map map = new HashMap(); - rs = pstmt.executeQuery(); - while (rs.next()) { - map.put(rs.getLong(1), rs.getInt(2)); - } - return map; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCnaEvent.class, con, pstmt, rs); - } - } - - public static Set getAlteredGenes(String concatEventIds) - throws DaoException { - if (concatEventIds.isEmpty()) { - return Collections.emptySet(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCnaEvent.class); - String sql = "SELECT DISTINCT ENTREZ_GENE_ID FROM cna_event " - + "WHERE CNA_EVENT_ID in (" - + concatEventIds - + ")"; - pstmt = con.prepareStatement(sql); - - Set set = new HashSet(); - rs = pstmt.executeQuery(); - while (rs.next()) { - set.add(rs.getLong(1)); - } - return set; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCnaEvent.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCoexpression.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCoexpression.java deleted file mode 100644 index 57adc14d596..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCoexpression.java +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.*; - -import org.apache.commons.lang3.StringUtils; -import org.mskcc.cbio.portal.model.Coexpression; - -/** - * - * @author jgao - */ -public class DaoCoexpression { - public static int addCoexpression(Coexpression coexpression) throws DaoException { - if (!MySQLbulkLoader.isBulkLoad()) { - throw new DaoException("You have to turn on MySQLbulkLoader in order to insert Coexpression data"); - } else { - // use this code if bulk loading - // write to the temp file maintained by the MySQLbulkLoader - MySQLbulkLoader.getMySQLbulkLoader("coexpression").insertRecord( - Long.toString(coexpression.getGene1()), - Long.toString(coexpression.getGene2()), - Integer.toString(coexpression.getProfileId()), - Double.toString(coexpression.getPearson()), - Double.toString(coexpression.getSpearman())); - return 1; - } - } - - public static ArrayList getCoexpression(Collection queryGenes, int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCoexpression.class); - ArrayList result = new ArrayList(); - pstmt = con.prepareStatement("SELECT * FROM coexpression WHERE " + - "GENETIC_PROFILE_ID='" + geneticProfileId + "' AND " + - "(GENE_1 in ('" + StringUtils.join(queryGenes, "','") + "')" + " OR " + - " GENE_2 in ('" + StringUtils.join(queryGenes, "','") + "'));"); - rs = pstmt.executeQuery(); - while (rs.next()) { - int gene1Id = Integer.parseInt(rs.getString("GENE_1")); - int gene2Id = Integer.parseInt(rs.getString("GENE_2")); - //int geneticProfileId = Integer.parseInt(rs.getString("GENETIC_PROFILE_ID")); - float pearson = Float.parseFloat(rs.getString("PEARSON")); - float spearman = Float.parseFloat(rs.getString("SPEARMAN")); - result.add(new Coexpression(gene1Id, gene2Id, geneticProfileId, pearson, spearman)); - } - return result; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCoexpression.class, con, pstmt, rs); - } - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCopyNumberSegment.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCopyNumberSegment.java deleted file mode 100644 index a0113a44123..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCopyNumberSegment.java +++ /dev/null @@ -1,286 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; -import org.apache.commons.lang3.StringUtils; - -import java.sql.*; -import java.util.*; - -/** - * - * @author jgao - */ -public final class DaoCopyNumberSegment { - - private static final double FRACTION_GENOME_ALTERED_CUTOFF = 0.2; - private static final String FRACTION_GENOME_ALTERED_ATTR_ID = "FRACTION_GENOME_ALTERED"; - - private DaoCopyNumberSegment() {} - - public static int addCopyNumberSegment(CopyNumberSegment seg) throws DaoException { - if (!MySQLbulkLoader.isBulkLoad()) { - throw new DaoException("You have to turn on MySQLbulkLoader in order to insert mutations"); - } else { - MySQLbulkLoader.getMySQLbulkLoader("copy_number_seg").insertRecord( - Long.toString(seg.getSegId()), - Integer.toString(seg.getCancerStudyId()), - Integer.toString(seg.getSampleId()), - seg.getChr(), - Long.toString(seg.getStart()), - Long.toString(seg.getEnd()), - Integer.toString(seg.getNumProbes()), - Double.toString(seg.getSegMean()) - ); - return 1; - } - } - - public static void createFractionGenomeAlteredClinicalData(int cancerStudyId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCopyNumberSegment.class); - pstmt = con.prepareStatement( - "SELECT `SAMPLE_ID`, IF((SELECT SUM(`END`-`START`) FROM copy_number_seg " + - "AS c2 WHERE c2.`CANCER_STUDY_ID` = c1.`CANCER_STUDY_ID` AND c2.`SAMPLE_ID` = c1.`SAMPLE_ID` AND " + - "ABS(c2.`SEGMENT_MEAN`) >= 0.2) IS NULL, 0, (SELECT SUM(`END`-`START`) FROM copy_number_seg " + - "AS c2 WHERE c2.`CANCER_STUDY_ID` = c1.`CANCER_STUDY_ID` AND c2.`SAMPLE_ID` = c1.`SAMPLE_ID` AND " + - "ABS(c2.`SEGMENT_MEAN`) >= 0.2) / SUM(`END`-`START`)) AS `VALUE` FROM `copy_number_seg` AS c1 , `cancer_study` " + - "WHERE c1.`CANCER_STUDY_ID` = cancer_study.`CANCER_STUDY_ID` AND cancer_study.`CANCER_STUDY_ID`=? " + - "GROUP BY cancer_study.`CANCER_STUDY_ID` , `SAMPLE_ID` HAVING SUM(`END`-`START`) > 0;"); - pstmt.setInt(1, cancerStudyId); - Map fractionGenomeAltereds = new HashMap(); - rs = pstmt.executeQuery(); - while (rs.next()) { - fractionGenomeAltereds.put(rs.getInt(1), rs.getString(2)); - } - - ClinicalAttribute clinicalAttribute = DaoClinicalAttributeMeta.getDatum(FRACTION_GENOME_ALTERED_ATTR_ID, cancerStudyId); - if (clinicalAttribute == null) { - ClinicalAttribute attr = new ClinicalAttribute(FRACTION_GENOME_ALTERED_ATTR_ID, "Fraction Genome Altered", "Fraction Genome Altered", "NUMBER", - false, "20", cancerStudyId); - DaoClinicalAttributeMeta.addDatum(attr); - } - - for (Map.Entry fractionGenomeAltered : fractionGenomeAltereds.entrySet()) { - DaoClinicalData.addSampleDatum(fractionGenomeAltered.getKey(), FRACTION_GENOME_ALTERED_ATTR_ID, fractionGenomeAltered.getValue()); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCopyNumberSegment.class, con, pstmt, rs); - } - } - - public static long getLargestId() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement - ("SELECT MAX(`SEG_ID`) FROM `copy_number_seg`"); - rs = pstmt.executeQuery(); - return rs.next() ? rs.getLong(1) : 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - public static List getSegmentForASample( - int sampleId, int cancerStudyId) throws DaoException { - return getSegmentForSamples(Collections.singleton(sampleId),cancerStudyId); - } - - public static List getSegmentForSamples( - Collection sampleIds, int cancerStudyId) throws DaoException { - if (sampleIds.isEmpty()) { - return Collections.emptyList(); - } - String concatSampleIds = "('"+StringUtils.join(sampleIds, "','")+"')"; - - List segs = new ArrayList(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCopyNumberSegment.class); - pstmt = con.prepareStatement - ("SELECT * FROM copy_number_seg" - + " WHERE `SAMPLE_ID` IN "+ concatSampleIds - + " AND `CANCER_STUDY_ID`="+cancerStudyId); - rs = pstmt.executeQuery(); - while (rs.next()) { - CopyNumberSegment seg = new CopyNumberSegment( - rs.getInt("CANCER_STUDY_ID"), - rs.getInt("SAMPLE_ID"), - rs.getString("CHR"), - rs.getLong("START"), - rs.getLong("END"), - rs.getInt("NUM_PROBES"), - rs.getDouble("SEGMENT_MEAN")); - seg.setSegId(rs.getLong("SEG_ID")); - segs.add(seg); - } - return segs; - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCopyNumberSegment.class, con, pstmt, rs); - } - } - - public static double getCopyNumberActeredFraction(int sampleId, - int cancerStudyId, double cutoff) throws DaoException { - Double d = getCopyNumberActeredFraction(Collections.singleton(sampleId), cancerStudyId, cutoff) - .get(sampleId); - return d==null ? Double.NaN : d; - } - - public static Map getCopyNumberActeredFraction(Collection sampleIds, - int cancerStudyId, double cutoff) throws DaoException { - Map alteredLength = getCopyNumberAlteredLength(sampleIds, cancerStudyId, cutoff); - Map measuredLength = getCopyNumberAlteredLength(sampleIds, cancerStudyId, 0); - Map fraction = new HashMap(alteredLength.size()); - for (Integer sampleId : sampleIds) { - Long ml = measuredLength.get(sampleId); - if (ml==null || ml==0) { - continue; - } - Long al = alteredLength.get(sampleId); - if (al==null) { - al = (long) 0; - } - fraction.put(sampleId, 1.0*al/ml); - } - return fraction; - } - - private static Map getCopyNumberAlteredLength(Collection sampleIds, - int cancerStudyId, double cutoff) throws DaoException { - Map map = new HashMap(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - String sql; - try { - con = JdbcUtil.getDbConnection(DaoCopyNumberSegment.class); - if (cutoff>0) { - sql = "SELECT `SAMPLE_ID`, SUM(`END`-`START`)" - + " FROM `copy_number_seg`" - + " WHERE `CANCER_STUDY_ID`="+cancerStudyId - + " AND ABS(`SEGMENT_MEAN`)>=" + cutoff - + " AND `SAMPLE_ID` IN ('" + StringUtils.join(sampleIds,"','") +"')" - + " GROUP BY `SAMPLE_ID`"; - } else { - sql = "SELECT `SAMPLE_ID`, SUM(`END`-`START`)" - + " FROM `copy_number_seg`" - + " WHERE `CANCER_STUDY_ID`="+cancerStudyId - + " AND `SAMPLE_ID` IN ('" + StringUtils.join(sampleIds,"','") +"')" - + " GROUP BY `SAMPLE_ID`"; - } - - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - while (rs.next()) { - map.put(rs.getInt(1), rs.getLong(2)); - } - - return map; - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCopyNumberSegment.class, con, pstmt, rs); - } - } - - /** - * - * @param cancerStudyId - * @return true if segment data exist for the cancer study - * @throws DaoException - */ - public static boolean segmentDataExistForCancerStudy(int cancerStudyId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCopyNumberSegment.class); - pstmt = con.prepareStatement("SELECT EXISTS (SELECT 1 FROM `copy_number_seg` WHERE `CANCER_STUDY_ID`=?)"); - pstmt.setInt(1, cancerStudyId); - rs = pstmt.executeQuery(); - return rs.next() && rs.getInt(1)==1; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCopyNumberSegment.class, con, pstmt, rs); - } - } - - /** - * - * @param cancerStudyId - * @param sampleId - * @return true if segment data exist for the case - * @throws DaoException - */ - public static boolean segmentDataExistForSample(int cancerStudyId, int sampleId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCopyNumberSegment.class); - pstmt = con.prepareStatement("SELECT EXISTS(SELECT 1 FROM `copy_number_seg`" - + " WHERE `CANCER_STUDY_ID`=? AND `SAMPLE_ID`=?"); - pstmt.setInt(1, cancerStudyId); - pstmt.setInt(2, sampleId); - rs = pstmt.executeQuery(); - return rs.next() && rs.getInt(1)==1; - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCopyNumberSegment.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCopyNumberSegmentFile.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCopyNumberSegmentFile.java deleted file mode 100644 index ef0011a4c8a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCopyNumberSegmentFile.java +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.CopyNumberSegmentFile; - -import org.apache.commons.lang3.StringUtils; - -import java.sql.*; -import java.util.*; - -public final class DaoCopyNumberSegmentFile { - private DaoCopyNumberSegmentFile() {} - - public static int addCopyNumberSegmentFile(CopyNumberSegmentFile copySegFile) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCopyNumberSegmentFile.class); - pstmt = con.prepareStatement - ("INSERT INTO copy_number_seg_file (`CANCER_STUDY_ID`, `REFERENCE_GENOME_ID`, `DESCRIPTION`,`FILENAME`)" - + " VALUES (?,?,?,?)", Statement.RETURN_GENERATED_KEYS); - pstmt.setInt(1, copySegFile.cancerStudyId); - pstmt.setString(2, copySegFile.referenceGenomeId.toString()); - pstmt.setString(3, copySegFile.description); - pstmt.setString(4, copySegFile.filename); - pstmt.executeUpdate(); - rs = pstmt.getGeneratedKeys(); - if (rs.next()) { - return rs.getInt(1); - } - return -1; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCopyNumberSegment.class, con, pstmt, rs); - } - } - - public static CopyNumberSegmentFile getCopyNumberSegmentFile(int cancerStudyId) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCopyNumberSegmentFile.class); - pstmt = con.prepareStatement("SELECT * from copy_number_seg_file WHERE `CANCER_STUDY_ID` = ?"); - pstmt.setInt(1, cancerStudyId); - rs = pstmt.executeQuery(); - if (rs.next()) { - CopyNumberSegmentFile cnsf = new CopyNumberSegmentFile(); - cnsf.segFileId = rs.getInt("SEG_FILE_ID"); - cnsf.cancerStudyId = cancerStudyId; - cnsf.referenceGenomeId = CopyNumberSegmentFile.ReferenceGenomeId.valueOf(rs.getString("REFERENCE_GENOME_ID")); - cnsf.description = rs.getString("DESCRIPTION"); - cnsf.filename = rs.getString("FILENAME"); - return cnsf; - } - return null; - } - catch(SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoCopyNumberSegmentFile.class, con, pstmt, rs); - } - } - - public static void deleteAllRecords() throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCopyNumberSegmentFile.class); - pstmt = con.prepareStatement("TRUNCATE TABLE copy_number_seg_file"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCopyNumberSegmentFile.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCosmicData.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCosmicData.java deleted file mode 100644 index 24a8209e64b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoCosmicData.java +++ /dev/null @@ -1,188 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.Collection; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import org.apache.commons.lang3.StringUtils; -import org.mskcc.cbio.portal.model.CosmicMutationFrequency; -import org.mskcc.cbio.portal.model.ExtendedMutation; - -/** - * - * @author jgao - */ -public class DaoCosmicData { - public static int addCosmic(CosmicMutationFrequency cosmic) throws DaoException { - if (!MySQLbulkLoader.isBulkLoad()) { - throw new DaoException("You have to turn on MySQLbulkLoader in order to insert mutations"); - } else { - - // use this code if bulk loading - // write to the temp file maintained by the MySQLbulkLoader - MySQLbulkLoader.getMySQLbulkLoader("cosmic_mutation").insertRecord( - cosmic.getId(), - cosmic.getChr(), - Long.toString(cosmic.getStartPosition()), - cosmic.getReferenceAllele(), - cosmic.getTumorSeqAllele(), - cosmic.getStrand(), - cosmic.getCds(), - Long.toString(cosmic.getEntrezGeneId()), - cosmic.getAminoAcidChange(), - Integer.toString(cosmic.getFrequency()), - cosmic.getKeyword()); - - return 1; - } - } - - /** - * - * @param mutations - * @return Map of event id to map of aa change to count - * @throws DaoException - */ - public static Map> getCosmicForMutationEvents( - List mutations) throws DaoException { - Set mutKeywords = new HashSet(); - for (ExtendedMutation mut : mutations) { - mutKeywords.add(mut.getKeyword()); - } - - Map> map = - DaoCosmicData.getCosmicDataByKeyword(mutKeywords); - Map> ret - = new HashMap>(map.size()); - for (ExtendedMutation mut : mutations) { - String keyword = mut.getKeyword(); - Set cmfs = filterTruncatingCosmicByPosition(mut, map.get(keyword)); - - if (cmfs==null || cmfs.isEmpty()) { - continue; - } - - ret.put(mut.getMutationEventId(), cmfs); - } - return ret; - } - - private static Set filterTruncatingCosmicByPosition( - ExtendedMutation mut, Set cmfs) { - if (mut.getKeyword()==null || !mut.getKeyword().endsWith("truncating") || cmfs==null) { - return cmfs; - } - - Set ret = new HashSet(); - Pattern p = Pattern.compile("[0-9]+"); - int mutPos = mut.getProteinPosStart(); - for (CosmicMutationFrequency cmf : cmfs) { - String aa = cmf.getAminoAcidChange(); - Matcher m = p.matcher(aa); - if (m.find()) { - int cmfPos = Integer.parseInt(m.group()); - if (mutPos==cmfPos) { - ret.add(cmf); - } - } - } - return ret; - } - - /** - * - * @param keywordS - * @return Map> - * @throws DaoException - */ - public static Map> getCosmicDataByKeyword(Collection keywordS) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCosmicData.class); - pstmt = con.prepareStatement("SELECT * FROM cosmic_mutation " - + " WHERE KEYWORD in ('" + StringUtils.join(keywordS, "','") + "')"); - rs = pstmt.executeQuery(); - Map> ret = new HashMap>(); - while (rs.next()) { - CosmicMutationFrequency cmf = extractCosmic(rs); - Set cmfs = ret.get(cmf.getKeyword()); - if (cmfs==null) { - cmfs = new HashSet(); - ret.put(cmf.getKeyword(), cmfs); - } - cmfs.add(cmf); - } - return ret; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCosmicData.class, con, pstmt, rs); - } - } - - private static CosmicMutationFrequency extractCosmic(ResultSet rs) throws SQLException { - String id = rs.getString("COSMIC_MUTATION_ID"); - long entrez = rs.getLong("ENTREZ_GENE_ID"); - String aa = rs.getString("PROTEIN_CHANGE"); - String keyword = rs.getString("KEYWORD"); - int count = rs.getInt("COUNT"); - return new CosmicMutationFrequency(id, entrez, aa, keyword, count); - } - - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCosmicData.class); - pstmt = con.prepareStatement("TRUNCATE TABLE cosmic_mutation"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCosmicData.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoException.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoException.java deleted file mode 100644 index 32fe17dd6ee..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoException.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -/** - * Exception Occurred while reading/writing data to database. - * - * @author Ethan Cerami - */ -public class DaoException extends Exception { - private final String msg; - - /** - * Constructor. - * - * @param throwable Throwable Object containing root cause. - */ - public DaoException(Throwable throwable) { - super(throwable); - this.msg = throwable.getMessage(); - } - - /** - * Constructor. - * - * @param msg Error Message. - */ - public DaoException(String msg) { - super(); - this.msg = msg; - } - - /** - * Gets Error Message. - * - * @return Error Message String.I - */ - public String getMessage() { - return msg; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGene.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGene.java deleted file mode 100644 index be8862eb881..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGene.java +++ /dev/null @@ -1,498 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.cbioportal.model.EntityType; -import org.cbioportal.model.GeneticEntity; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; - -/** - * Data Access Object to Gene Table. - * For faster access, consider using DaoGeneOptimized. - * - * @author Ethan Cerami. - */ -final class DaoGene { - - /** - * Private Constructor to enforce Singleton Pattern. - */ - private DaoGene() { - } - - private static int fakeEntrezId = 0; - private static synchronized int getNextFakeEntrezId() throws DaoException { - while (getGene(--fakeEntrezId)!=null); - return fakeEntrezId; - } - - public static synchronized int addGeneWithoutEntrezGeneId(CanonicalGene gene) throws DaoException { - CanonicalGene existingGene = getGene(gene.getHugoGeneSymbolAllCaps()); - gene.setEntrezGeneId(existingGene==null?getNextFakeEntrezId():existingGene.getEntrezGeneId()); - return addOrUpdateGene(gene); - } - - /** - * Update Gene Record in the Database. - */ - public static int updateGene(CanonicalGene gene) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - boolean setBulkLoadAtEnd = false; - try { - //this method only works well with bulk load off, especially - //when it is called in a process that may update a gene more than once - //(e.g. the ImportGeneData updates some of the fields based on one - // input file and other fields based on another input file): - setBulkLoadAtEnd = MySQLbulkLoader.isBulkLoad(); - MySQLbulkLoader.bulkLoadOff(); - - int rows = 0; - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement - ("UPDATE gene SET `HUGO_GENE_SYMBOL`=?, `TYPE`=? WHERE `ENTREZ_GENE_ID`=?"); - pstmt.setString(1, gene.getHugoGeneSymbolAllCaps()); - pstmt.setString(2, gene.getType()); - pstmt.setLong(3, gene.getEntrezGeneId()); - rows += pstmt.executeUpdate(); - if (rows != 1) { - ProgressMonitor.logWarning("No change for " + gene.getEntrezGeneId() + " " + gene.getHugoGeneSymbolAllCaps() + "? Code " + rows); - } - - return rows; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - if (setBulkLoadAtEnd) { - //reset to original state: - MySQLbulkLoader.bulkLoadOn(); - } - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - -} - - /** - * Adds a new Gene Record to the Database OR updates the given gene object - * with the geneticEntityId found in the DB for this gene. - * If it is a new gene, it will generate a new genetic entity id and - * update the given CanonicalGene with the generated - * geneticEntityId. - * - * Adds a new Gene Record to the Database. - * - * @param gene Canonical Gene Object. - * @return number of records successfully added. - * @throws DaoException Database Error. - */ - public static int addOrUpdateGene(CanonicalGene gene) throws DaoException { - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - int rows = 0; - CanonicalGene existingGene = getGene(gene.getEntrezGeneId()); - if (existingGene == null) { - //new gene, so add genetic entity first: - GeneticEntity geneticEntity = DaoGeneticEntity.addNewGeneticEntity(new GeneticEntity(EntityType.GENE.name())); - int geneticEntityId = geneticEntity.getId(); - //update the Canonical gene as well: - gene.setGeneticEntityId(geneticEntityId); //TODO can we find a better way for this, to avoid this side effect? - //add gene, referring to this genetic entity - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement - ("INSERT INTO gene (`GENETIC_ENTITY_ID`, `ENTREZ_GENE_ID`,`HUGO_GENE_SYMBOL`,`TYPE`) " - + "VALUES (?,?,?,?)"); - pstmt.setInt(1, geneticEntityId); - pstmt.setLong(2, gene.getEntrezGeneId()); - pstmt.setString(3, gene.getHugoGeneSymbolAllCaps()); - pstmt.setString(4, gene.getType()); - rows += pstmt.executeUpdate(); - - } else { - if (gene.getGeneticEntityId() == -1) { - //update the Canonical gene //TODO can we find a better way for this, to avoid this side effect? - gene.setGeneticEntityId(existingGene.getGeneticEntityId()); - } else { - //check correctness...normally this error would not occur unless there is an invalid use of CanonicalGene - if (gene.getGeneticEntityId() != existingGene.getGeneticEntityId()) - throw new RuntimeException("Unexpected error. Invalid genetic entity id for gene: " + gene.getHugoGeneSymbolAllCaps() + " (" + gene.getGeneticEntityId() + ")"); - } - } - - rows += addGeneAliases(gene); - - return rows; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - /** - * Add gene_alias records. - * @param gene Canonical Gene Object. - * @return number of records successfully added. - * @throws DaoException Database Error. - */ - public static int addGeneAliases(CanonicalGene gene) throws DaoException { - if (MySQLbulkLoader.isBulkLoad()) { - // write to the temp file maintained by the MySQLbulkLoader - Set aliases = gene.getAliases(); - for (String alias : aliases) { - MySQLbulkLoader.getMySQLbulkLoader("gene_alias").insertRecord( - Long.toString(gene.getEntrezGeneId()), - alias); - - } - // return 1 because normal insert will return 1 if no error occurs - return 1; - } - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - Set aliases = gene.getAliases(); - Set existingAliases = getAliases(gene.getEntrezGeneId()); - int rows = 0; - for (String alias : aliases) { - if (!existingAliases.contains(alias)) { - pstmt = con.prepareStatement("INSERT INTO gene_alias " - + "(`ENTREZ_GENE_ID`,`GENE_ALIAS`) VALUES (?,?)"); - pstmt.setLong(1, gene.getEntrezGeneId()); - pstmt.setString(2, alias); - rows += pstmt.executeUpdate(); - } - } - - return rows; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - /** - * Gets the Gene with the Specified Entrez Gene ID. - * For faster access, consider using DaoGeneOptimized. - * - * @param entrezGeneId Entrez Gene ID. - * @return Canonical Gene Object. - * @throws DaoException Database Error. - */ - private static CanonicalGene getGene(long entrezGeneId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement - ("SELECT * FROM gene WHERE ENTREZ_GENE_ID = ?"); - pstmt.setLong(1, entrezGeneId); - rs = pstmt.executeQuery(); - if (rs.next()) { - return extractGene(rs); - } else { - return null; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - /** - * Gets aliases for all genes. - * @return map from entrez gene id to a set of aliases. - * @throws DaoException Database Error. - */ - private static Set getAliases(long entrezGeneId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement - ("SELECT * FROM gene_alias WHERE ENTREZ_GENE_ID = ?"); - pstmt.setLong(1, entrezGeneId); - rs = pstmt.executeQuery(); - Set aliases = new HashSet(); - while (rs.next()) { - aliases.add(rs.getString("GENE_ALIAS")); - } - return aliases; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - private static Map> getAllAliases() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement - ("SELECT * FROM gene_alias"); - rs = pstmt.executeQuery(); - Map> map = new HashMap>(); - while (rs.next()) { - Long entrez = rs.getLong("ENTREZ_GENE_ID"); - Set aliases = map.get(entrez); - if (aliases==null) { - aliases = new HashSet(); - map.put(entrez, aliases); - } - aliases.add(rs.getString("GENE_ALIAS")); - } - return map; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - /** - * Gets all Genes in the Database. - * - * @return ArrayList of Canonical Genes. - * @throws DaoException Database Error. - */ - public static ArrayList getAllGenes() throws DaoException { - Map> mapAliases = getAllAliases(); - ArrayList geneList = new ArrayList(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement - ("SELECT * FROM gene"); - rs = pstmt.executeQuery(); - while (rs.next()) { - int geneticEntityId = rs.getInt("GENETIC_ENTITY_ID"); - long entrezGeneId = rs.getInt("ENTREZ_GENE_ID"); - Set aliases = mapAliases.get(entrezGeneId); - CanonicalGene gene = new CanonicalGene(geneticEntityId, entrezGeneId, - rs.getString("HUGO_GENE_SYMBOL"), aliases); - gene.setType(rs.getString("TYPE")); - geneList.add(gene); - } - return geneList; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - /** - * Gets the Gene with the Specified HUGO Gene Symbol. - * For faster access, consider using DaoGeneOptimized. - * - * @param hugoGeneSymbol HUGO Gene Symbol. - * @return Canonical Gene Object. - * @throws DaoException Database Error. - */ - private static CanonicalGene getGene(String hugoGeneSymbol) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement - ("SELECT * FROM gene WHERE HUGO_GENE_SYMBOL = ?"); - pstmt.setString(1, hugoGeneSymbol); - rs = pstmt.executeQuery(); - if (rs.next()) { - return extractGene(rs); - } else { - return null; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - private static CanonicalGene extractGene(ResultSet rs) throws SQLException, DaoException { - int geneticEntityId = rs.getInt("GENETIC_ENTITY_ID"); - long entrezGeneId = rs.getInt("ENTREZ_GENE_ID"); - Set aliases = getAliases(entrezGeneId); - CanonicalGene gene = new CanonicalGene(geneticEntityId, entrezGeneId, - rs.getString("HUGO_GENE_SYMBOL"), aliases); - gene.setType(rs.getString("TYPE")); - - return gene; - } - - /** - * Gets the Number of Gene Records in the Database. - * - * @return number of gene records. - * @throws DaoException Database Error. - */ - public static int getCount() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement - ("SELECT COUNT(*) FROM gene"); - rs = pstmt.executeQuery(); - if (rs.next()) { - return rs.getInt(1); - } - return 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - /** - * Deletes the Gene Record that has the Entrez Gene ID in the Database. - * - * @param entrezGeneId - */ - public static void deleteGene(long entrezGeneId) throws DaoException { - deleteGeneAlias(entrezGeneId); - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement("DELETE FROM gene WHERE ENTREZ_GENE_ID=?"); - pstmt.setLong(1, entrezGeneId); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - /** - * Deletes the Gene Alias Record(s) that has/have the Entrez Gene ID in the Database. - * - * @param entrezGeneId - */ - public static void deleteGeneAlias(long entrezGeneId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement("DELETE FROM gene_alias WHERE ENTREZ_GENE_ID=?"); - pstmt.setLong(1, entrezGeneId); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - /** - * Deletes all Gene Records in the Database. - * - * @throws DaoException Database Error. - * - * @deprecated only used by deprecated code, so deprecating this as well. - */ - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - JdbcUtil.disableForeignKeyCheck(con); - pstmt = con.prepareStatement("TRUNCATE TABLE gene"); - pstmt.executeUpdate(); - JdbcUtil.enableForeignKeyCheck(con); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - deleteAllAliasRecords(); - } - - /** - * - * @throws DaoException - * - * @deprecated only used by deprecated code, so deprecating this as well. - */ - private static void deleteAllAliasRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement("TRUNCATE TABLE gene_alias"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneOptimized.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneOptimized.java deleted file mode 100644 index 1f58acb7bd9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneOptimized.java +++ /dev/null @@ -1,471 +0,0 @@ -/* - * Copyright (c) 2015 - 2019 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStreamReader; -import java.util.ArrayList; -import java.util.Collection; -import java.util.Collections; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -/** - * A Utility Class that speeds access to Gene Info. - * - * @author Ethan Cerami - */ -public class DaoGeneOptimized { - private static final String GENE_SYMBOL_DISAMBIGUATION_FILE = "/gene_symbol_disambiguation.txt"; - - private static final DaoGeneOptimized daoGeneOptimized = new DaoGeneOptimized(); - //nb: make sure any map is also cleared in clearCache() method below: - private final HashMap geneSymbolMap = new HashMap (); - private final HashMap entrezIdMap = new HashMap (); - private final HashMap geneticEntityMap = new HashMap(); - private final HashMap> geneAliasMap = new HashMap>(); - private final Map disambiguousGenes = new HashMap(); - - /** - * Private Constructor, to enforce singleton pattern. - * - * @throws DaoException Database Error. - */ - private DaoGeneOptimized () { - fillCache(); - } - - private synchronized void fillCache() { - try { - // Automatically populate hashmap upon init - ArrayList globalGeneList = DaoGene.getAllGenes(); - for (CanonicalGene currentGene: globalGeneList) { - cacheGene(currentGene); - } - } catch (DaoException e) { - e.printStackTrace(); - } - - try { - BufferedReader in = new BufferedReader(new InputStreamReader(getClass().getResourceAsStream(GENE_SYMBOL_DISAMBIGUATION_FILE))); - for (String line=in.readLine(); line!=null; line=in.readLine()) { - if (line.startsWith("#")) { - continue; - } - String[] parts = line.trim().split("\t",-1); - CanonicalGene gene = getGene(Long.parseLong(parts[1])); - if (gene==null) { - ProgressMonitor.logWarning(line+" in config file [resources" + GENE_SYMBOL_DISAMBIGUATION_FILE + - "]is not valid. You should either update this file or update the `gene` and `gene_alias` tables to fix this."); - } else { - disambiguousGenes.put(parts[0], gene); - } - } - in.close(); - } catch(IOException e) { - e.printStackTrace(); - } - } - - private void clearCache() { - geneSymbolMap.clear(); - entrezIdMap.clear(); - geneticEntityMap.clear(); - geneAliasMap.clear(); - disambiguousGenes.clear(); - } - - /** - * Clear and fill cache again. Useful for unit tests and - * for the Import procedure to update the genes table, clearing the - * cache without the need to restart the webserver. - */ - public synchronized void reCache() { - clearCache(); - fillCache(); - } - - /** - * Adds a new Gene Record to the Database. If the Entrez Gene ID is negative, - * a fake Entrez Gene ID will be assigned. - * @param gene Canonical Gene Object. - * @return number of records successfully added. - * @throws DaoException Database Error. - */ - public int addGene(CanonicalGene gene) throws DaoException { - int ret; - if (gene.getEntrezGeneId()>0) { - ret = DaoGene.addOrUpdateGene(gene); - } else { - ret = DaoGene.addGeneWithoutEntrezGeneId(gene); - } - //only overwrite cache if ..? - cacheGene(gene); - return ret; - } - - /** - * Update Gene Record in the Database. It will also replace this - * gene's aliases with the ones found in the given gene object. - */ - public int updateGene(CanonicalGene gene) throws DaoException { - int ret = DaoGene.updateGene(gene); - //recache: - cacheGene(gene); - return ret; - } - - public void deleteGene(CanonicalGene gene) throws DaoException { - DaoGene.deleteGene(gene.getEntrezGeneId()); - geneSymbolMap.remove(gene.getHugoGeneSymbolAllCaps()); - for (String alias : gene.getAliases()) { - String aliasUp = alias.toUpperCase(); - List genes = geneAliasMap.get(aliasUp); - genes.remove(gene); - if (genes.isEmpty()) { - geneAliasMap.remove(aliasUp); - } - } - } - - private void cacheGene(CanonicalGene gene) { - geneSymbolMap.put(gene.getHugoGeneSymbolAllCaps(), gene); - entrezIdMap.put(gene.getEntrezGeneId(), gene); - geneticEntityMap.put(gene.getGeneticEntityId(), gene); - - for (String alias : gene.getAliases()) { - String aliasUp = alias.toUpperCase(); - List genes = geneAliasMap.get(aliasUp); - if (genes==null) { - genes = new ArrayList(); - geneAliasMap.put(aliasUp, genes); - } - genes.add(gene); - } - } - - /** - * Gets Global Singleton Instance. - * - * @return DaoGeneOptimized Singleton. - * @throws DaoException Database Error. - */ - public static DaoGeneOptimized getInstance() { - return daoGeneOptimized; - } - - /** - * Return geneticEntityId from cache for given entrezGeneId - * - * @param entrezGeneId - * @return - */ - public static int getGeneticEntityId(long entrezGeneId) { - //get entity id from cache: - CanonicalGene gene = daoGeneOptimized.getGene(entrezGeneId); - if (gene != null) { - return gene.getGeneticEntityId(); - } - else { - throw new RuntimeException("Invalid entrezGeneId symbol. Not found in cache: " + entrezGeneId); - } - } - - /** - * Return entrezGeneId from cache for given geneticEntityId - * - * @param geneticEntityId - * @return - */ - public static long getEntrezGeneId(int geneticEntityId) { - //get entity id from cache: - CanonicalGene gene = daoGeneOptimized.getGeneByEntityId(geneticEntityId); - //since not every genetic entity will be a gene, this could be null (but would - //be a programming error elsewhere, so throw exception): - if (gene == null) { - throw new RuntimeException("Genetic entity was not found in gene cache: " + geneticEntityId); - } - - return daoGeneOptimized.getGeneByEntityId(geneticEntityId).getEntrezGeneId(); - } - - /** - * Gets Gene by HUGO Gene Symbol. - * - * @param hugoGeneSymbol HUGO Gene Symbol. - * @return Canonical Gene Object. - */ - public CanonicalGene getGene(String hugoGeneSymbol) { - return geneSymbolMap.get(hugoGeneSymbol.toUpperCase()); - } - - /** - * Looks for a Gene where HUGO Gene Symbol or an alias matches the given symbol. - * - * @param geneSymbol: HUGO Gene Symbol or an alias - * @param searchInAliases: set to true if this method should search for a match in this.geneAliasMap - * in case a matching hugo symbol cannot be found in this.geneSymbolMap - * - * @return - */ - public List getGene(String geneSymbol, boolean searchInAliases) { - CanonicalGene gene = getGene(geneSymbol); - if (gene != null) { - return Collections.singletonList(gene); - } - if (searchInAliases) { - return getGenesForAlias(geneSymbol); - } - return Collections.emptyList(); - } - - - /** - * Looks for all Gene records linked to a gene symbol in the gene_alias table. - * - * @param geneSymbol: HUGO Gene Symbol (alias) - * - * @return empty list if there are no linked Genes, or a unmodifiable list of linked genes - */ - public List getGenesForAlias(String geneSymbol) { - List genes = geneAliasMap.get(geneSymbol.toUpperCase()); - if (genes != null) { - return Collections.unmodifiableList(genes); - } - return Collections.emptyList(); - } - - /** - * Gets Gene By Entrez Gene ID. - * - * @param entrezId Entrez Gene ID. - * @return Canonical Gene Object. - */ - public CanonicalGene getGene(long entrezId) { - return entrezIdMap.get(entrezId); - } - - /** - * Gets Gene By Entrez Gene ID. - * - * @param geneticEntityId Gene Entity ID. - * @return Canonical Gene Object. - */ - public CanonicalGene getGeneByEntityId(int geneticEntityId) { - return geneticEntityMap.get(geneticEntityId); - } - - /** - * Look for genes with a specific ID. First look for genes with the specific - * Entrez Gene ID, if found return this gene; then for HUGO symbol, if found, - * return this gene; and lastly for aliases, if found, return a list of - * matched genes (could be more than one). If nothing matches, return an - * empty list. - * @param geneId an Entrez Gene ID or HUGO symbol or gene alias - * @return A list of genes that match, an empty list if no match. - */ - public List guessGene(String geneId) { - return guessGene(geneId, null); - } - - /** - * Look for genes with a specific ID on a chr. First look for genes with the specific - * Entrez Gene ID, if found return this gene; then for HUGO symbol, if found, - * return this gene; and lastly for aliases, if found, return a list of - * matched genes (could be more than one). If chr is not null, use that to match too. - * If nothing matches, return an empty list. - * @param geneId an Entrez Gene ID or HUGO symbol or gene alias - * @param chr chromosome - * @return A list of genes that match, an empty list if no match. - */ - public List guessGene(String geneId, String chr) { - if (geneId==null) { - return Collections.emptyList(); - } - - CanonicalGene gene; - if (geneId.matches("[0-9]+")) { // likely to be a entrez gene id - gene = getGene(Integer.parseInt(geneId)); - if (gene!=null) { - return Collections.singletonList(gene); - } - } - - gene = getGene(geneId); // HUGO gene symbol - if (gene!=null) { - return Collections.singletonList(gene); - } - - List genes = geneAliasMap.get(geneId.toUpperCase()); - if (genes!=null) { - return Collections.unmodifiableList(genes); - } - return Collections.emptyList(); - } - - - private static Map validChrValues = null; - public static String normalizeChr(String strChr) { - if (strChr==null) { - return null; - } - - if (validChrValues==null) { - validChrValues = new HashMap(); - for (int lc = 1; lc<=24; lc++) { - validChrValues.put(Integer.toString(lc),Integer.toString(lc)); - validChrValues.put("CHR" + Integer.toString(lc),Integer.toString(lc)); - } - validChrValues.put("X","23"); - validChrValues.put("CHRX","23"); - validChrValues.put("Y","24"); - validChrValues.put("CHRY","24"); - validChrValues.put("NA","NA"); - validChrValues.put("MT","MT"); // mitochondria - } - - return validChrValues.get(strChr); - } - - private static String getChrFromCytoband(String cytoband) { - if (cytoband==null) { - return null; - } - - if (cytoband.startsWith("X")) { - return "23"; - } - - if (cytoband.startsWith("Y")) { - return "24"; - } - - Pattern p = Pattern.compile("([0-9]+).*"); - Matcher m = p.matcher(cytoband); - if (m.find()) { - return m.group(1); - } - - return null; - } - - /** - * Look for gene that can be non-ambiguously determined. - * @param geneId an Entrez Gene ID or HUGO symbol or gene alias - * @return a gene that can be non-ambiguously determined, or null if cannot. - */ - public CanonicalGene getNonAmbiguousGene(String geneId) { - return getNonAmbiguousGene(geneId, true); - } - - /** - * Look for gene that can be non-ambiguously determined. - * @param geneId an Entrez Gene ID or HUGO symbol or gene alias - * @param chr chromosome - * @return a gene that can be non-ambiguously determined, or null if cannot. - */ - public CanonicalGene getNonAmbiguousGene(String geneId, String chr) { - return getNonAmbiguousGene(geneId, true); - } - - /** - * Look for gene that can be non-ambiguously determined - * @param geneId an Entrez Gene ID or HUGO symbol or gene alias - * @param issueWarning if true and gene is not ambiguous, - * print all the Entrez Ids corresponding to the geneId provided - * @return a gene that can be non-ambiguously determined, or null if cannot. - */ - public CanonicalGene getNonAmbiguousGene(String geneId, boolean issueWarning) { - List genes = guessGene(geneId); - if (genes.isEmpty()) { - return null; - } - - if (genes.size()==1) { - return genes.get(0); - } - - if (disambiguousGenes.containsKey(geneId)) { - return disambiguousGenes.get(geneId); - } - if (issueWarning) { - StringBuilder sb = new StringBuilder("Ambiguous alias "); - sb.append(geneId); - sb.append(": corresponding entrez ids of "); - for (CanonicalGene gene : genes) { - sb.append(gene.getEntrezGeneId()); - sb.append(","); - } - sb.deleteCharAt(sb.length()-1); - - ProgressMonitor.logWarning(sb.toString()); - } - return null; - - } - - public Set getEntrezGeneIds(Collection genes) { - Set entrezGeneIds = new HashSet(); - for (CanonicalGene gene : genes) { - entrezGeneIds.add(gene.getEntrezGeneId()); - } - return entrezGeneIds; - } - - /** - * Gets an ArrayList of All Genes. - * @return Array List of All Genes. - */ - public ArrayList getAllGenes () { - return new ArrayList(entrezIdMap.values()); - } - - /** - * Deletes all Gene Records in the Database. - * @throws DaoException Database Error. - * - * @deprecated only used by deprecated code, so deprecating this as well. - */ - public void deleteAllRecords() throws DaoException { - DaoGene.deleteAllRecords(); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenePanel.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenePanel.java deleted file mode 100644 index 87277d2aba5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenePanel.java +++ /dev/null @@ -1,300 +0,0 @@ -/* - * Copyright (c) 2017 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.dao; - -import java.sql.*; -import java.util.*; -import java.util.stream.Collectors; - -import org.mskcc.cbio.portal.model.*; - -import static org.mskcc.cbio.portal.util.GenePanelUtil.*; - -/** - * @author heinsz - */ -public class DaoGenePanel { - private static final Map genePanelMap = initMap(); - - /** - * @param stableId Name of the gene panel, e.g. TESTPANEL1 - * @return Gets a gene panel based on its stable id in the database. - */ - public static GenePanel getGenePanelByStableId(String stableId) { - return genePanelMap.get(stableId); - } - - private static Map initMap() { - Map genePanelMap = null; - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGenePanel.class); - pstmt = con.prepareStatement("SELECT * FROM gene_panel"); - rs = pstmt.executeQuery(); - genePanelMap = extractGenePanelMap(rs); - } catch (SQLException | DaoException e) { - e.printStackTrace(); - } finally { - JdbcUtil.closeAll(DaoGenePanel.class, con, pstmt, rs); - } - return genePanelMap; - } - - private static Map extractGenePanelMap(ResultSet rs) throws DaoException { - Map genePanelMap = new HashMap<>(); - try { - while (rs.next()) { - GenePanel gp = new GenePanel(); - gp.setInternalId(rs.getInt("INTERNAL_ID")); - gp.setStableId(rs.getString("STABLE_ID")); - gp.setDescription(rs.getString("DESCRIPTION")); - gp.setGenes(extractGenePanelGenes(gp.getInternalId())); - genePanelMap.put(gp.getStableId(), gp); - } - } catch (SQLException e) { - throw new DaoException(e); - } - return genePanelMap; - } - - private static Set extractGenePanelGenes(Integer genePanelId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - HashSet toReturn = new HashSet<>(); - try { - con = JdbcUtil.getDbConnection(DaoGenePanel.class); - pstmt = con.prepareStatement("SELECT * FROM gene_panel_list where INTERNAL_ID = ?"); - pstmt.setInt(1, genePanelId); - rs = pstmt.executeQuery(); - DaoGeneOptimized daoGeneOpt = DaoGeneOptimized.getInstance(); - while (rs.next()) { - CanonicalGene gene = daoGeneOpt.getGene(rs.getLong(2)); - toReturn.add(gene); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenePanel.class, con, pstmt, rs); - } - return toReturn; - } - - /** - * Adds a new gene panel to the database. - * - * @param stableId Name of the gene panel, e.g. TESTPANEL1 - * @param description Description for the gene panel - * @param canonicalGenes Genes to be added to the database - * @throws DaoException - */ - public static void addGenePanel(String stableId, String description, Set canonicalGenes) - throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - if (stableId == null) { - throw new DaoException("Gene Panel stable ID cannot be null."); - } - if (canonicalGenes == null || canonicalGenes.isEmpty()) { - throw new DaoException("Gene Panel gene list cannot be null or empty."); - } - - try { - con = JdbcUtil.getDbConnection(DaoGenePanel.class); - pstmt = con.prepareStatement("INSERT INTO gene_panel (`STABLE_ID`, `DESCRIPTION`) VALUES (?,?)", - Statement.RETURN_GENERATED_KEYS); - pstmt.setString(1, stableId); - pstmt.setString(2, description); - pstmt.executeUpdate(); - rs = pstmt.getGeneratedKeys(); - if (rs.next()) { - addGenePanelGeneList(rs.getInt(1), canonicalGenes); - // add panel to class map - GenePanel gp = new GenePanel(); - gp.setInternalId(rs.getInt(1)); - gp.setStableId(stableId); - gp.setDescription(description); - gp.setGenes(canonicalGenes); - genePanelMap.put(stableId, gp); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenePanel.class, con, pstmt, rs); - } - } - - private static void addGenePanelGeneList(Integer internalId, Set canonicalGenes) - throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - try { - con = JdbcUtil.getDbConnection(DaoGenePanel.class); - for (CanonicalGene canonicalGene : canonicalGenes) { - pstmt = con.prepareStatement("INSERT INTO gene_panel_list (`INTERNAL_ID`, `GENE_ID`) VALUES (?,?)"); - pstmt.setInt(1, internalId); - pstmt.setLong(2, canonicalGene.getEntrezGeneId()); - pstmt.executeUpdate(); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenePanel.class, con, pstmt, null); - } - } - - /** - * Deletes an existing gene panel in the database. - * - * @param genePanel - * @throws DaoException - */ - public static void deleteGenePanel(GenePanel genePanel) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - try { - con = JdbcUtil.getDbConnection(DaoGenePanel.class); - pstmt = con.prepareStatement("DELETE from gene_panel WHERE INTERNAL_ID = ?"); - pstmt.setInt(1, genePanel.getInternalId()); - pstmt.executeUpdate(); - genePanelMap.remove(genePanel.getStableId()); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenePanel.class, con, pstmt, null); - } - } - - /** - * Updates an existing gene panel to the incoming set of genes. - * - * @param genePanel - * @param incoming - * @throws DaoException - */ - public static void updateGenePanel(GenePanel genePanel, Set incoming) throws DaoException { - String stableId = genePanel.getStableId(); - Integer internalId = genePanel.getInternalId(); - - if (stableId == null) { - throw new DaoException("Gene Panel stable ID cannot be null."); - } - - updateGenePanelGeneList(internalId, incoming); - } - - /** - * Prints the genes to be added and removed from a gene panel in the database. - * - * @param genePanel - * @param incoming - * @throws DaoException - */ - public static void updatePreview(GenePanel genePanel, Set incoming) throws DaoException { - Pair pair = getAddRemove(incoming, extractGenePanelGenes(genePanel.getInternalId())); - String add = pair.add.stream() - .map(CanonicalGene::toString) - .collect(Collectors.joining(", ")); - String remove = pair.remove.stream() - .map(CanonicalGene::toString) - .collect(Collectors.joining(", ")); - - System.out.printf("ADD: %s\n", add); - System.out.printf("REMOVE: %s\n", remove); - } - - private static boolean genePanelExists(Integer internalId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - Map genePanelMap; - - try { - con = JdbcUtil.getDbConnection(DaoGenePanel.class); - pstmt = con.prepareStatement("SELECT * FROM gene_panel WHERE internal_id = ?"); - pstmt.setInt(1, internalId); - rs = pstmt.executeQuery(); - genePanelMap = extractGenePanelMap(rs); - return !genePanelMap.isEmpty(); - } catch (SQLException e) { - return false; - } finally { - JdbcUtil.closeAll(DaoGenePanel.class, con, pstmt, rs); - } - } - - /** - * Inserts and deletes genes from a gene panel represented by an internalId in - * the database. - */ - private static void updateGenePanelGeneList(Integer internalId, Set incoming) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - if (!genePanelExists(internalId)) { - System.out.println("Gene panel does not exist in gene_panel, exiting"); - return; - } - - con = JdbcUtil.getDbConnection(DaoGenePanel.class); - Pair pair = getAddRemove(incoming, extractGenePanelGenes(internalId)); - Set toAdd = pair.add; - Set toRemove = pair.remove; - - // Add and remove genes from specified gene panel - for (CanonicalGene canonicalGene : toAdd) { - pstmt = con.prepareStatement("INSERT INTO gene_panel_list (`INTERNAL_ID`, `GENE_ID`) VALUES (?,?)"); - pstmt.setInt(1, internalId); - pstmt.setLong(2, canonicalGene.getEntrezGeneId()); - pstmt.executeUpdate(); - } - for (CanonicalGene canonicalGene : toRemove) { - pstmt = con.prepareStatement("DELETE FROM gene_panel_list WHERE internal_id=? AND gene_id=?"); - pstmt.setInt(1, internalId); - pstmt.setLong(2, canonicalGene.getEntrezGeneId()); - pstmt.executeUpdate(); - } - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenePanel.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenericAssay.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenericAssay.java deleted file mode 100644 index 6a52b5237d0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenericAssay.java +++ /dev/null @@ -1,188 +0,0 @@ -package org.mskcc.cbio.portal.dao; - -import java.sql.*; -import java.util.*; -import java.util.stream.Collectors; - -import org.apache.commons.lang3.tuple.Pair; -import org.cbioportal.model.GenericEntityProperty; -import org.cbioportal.model.GeneticEntity; -import org.cbioportal.model.meta.GenericAssayMeta; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.GeneticProfile; - -public class DaoGenericAssay { - - public static void setGenericEntityProperty(Integer entityId, String name, String value) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGeneticEntity.class); - pstmt = con.prepareStatement("INSERT INTO generic_entity_properties (`GENETIC_ENTITY_ID`, `NAME`, `VALUE`) " - + "VALUES(?,?,?)"); - if (entityId == null) { - return; - } - pstmt.setInt(1, entityId); - pstmt.setString(2, name); - pstmt.setString(3, value); - pstmt.executeUpdate(); - } catch (SQLException e) { - e.printStackTrace(); - } finally { - JdbcUtil.closeAll(DaoGeneticEntity.class, con, pstmt, rs); - } - } - - public static void setGenericEntityPropertiesUsingBatch(List properties) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - final int batchSize = 1000; - - try { - con = JdbcUtil.getDbConnection(DaoGeneticEntity.class); - pstmt = con.prepareStatement("INSERT INTO generic_entity_properties (`GENETIC_ENTITY_ID`, `NAME`, `VALUE`) " - + "VALUES(?,?,?)"); - if (properties.size() == 0) { - return; - } - - // batch execution - int count = 0; - boolean preservedAutoCommitMode = con.getAutoCommit(); - con.setAutoCommit(false); - for (GenericEntityProperty property : properties) { - pstmt.setInt(1, property.getEntityId()); - pstmt.setString(2, property.getName()); - pstmt.setString(3, property.getValue()); - pstmt.addBatch(); - if (++count % batchSize == 0) { - pstmt.executeBatch(); - } - } - // insert remaining records - pstmt.executeBatch(); - con.setAutoCommit(preservedAutoCommitMode); - } catch (SQLException e) { - e.printStackTrace(); - } finally { - JdbcUtil.closeAll(DaoGeneticEntity.class, con, pstmt, rs); - } - } - - public static GenericAssayMeta getGenericAssayMetaByStableId(String stableId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGeneticEntity.class); - pstmt = con.prepareStatement("SELECT * FROM generic_entity_properties WHERE GENETIC_ENTITY_ID=?"); - GeneticEntity entity = DaoGeneticEntity.getGeneticEntityByStableId(stableId); - if (entity == null) { - return null; - } - pstmt.setInt(1, entity.getId()); - rs = pstmt.executeQuery(); - - HashMap map = new HashMap<>(); - while(rs.next()) { - map.put(rs.getString("NAME"), rs.getString("VALUE")); - } - GenericAssayMeta genericAssayMeta = new GenericAssayMeta(entity.getEntityType(), entity.getStableId(), map); - return genericAssayMeta; - } catch (SQLException e) { - e.printStackTrace(); - } finally { - JdbcUtil.closeAll(DaoGeneticEntity.class, con, pstmt, rs); - } - return null; - } - - public static void deleteGenericEntityPropertiesByEntityId(Integer entityId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGeneticEntity.class); - pstmt = con.prepareStatement("DELETE FROM generic_entity_properties WHERE GENETIC_ENTITY_ID=?"); - if (entityId == null) { - return; - } - pstmt.setInt(1, entityId); - pstmt.executeUpdate(); - } catch (SQLException e) { - e.printStackTrace(); - } finally { - JdbcUtil.closeAll(DaoGeneticEntity.class, con, pstmt, rs); - } - } - - public static boolean geneticEntitiesOnlyExistInSingleStudy(int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGeneticEntity.class); - pstmt = con.prepareStatement("SELECT DISTINCT CANCER_STUDY_ID FROM genetic_profile WHERE GENETIC_PROFILE_ID IN (SELECT GENETIC_PROFILE_ID FROM genetic_alteration WHERE GENETIC_ENTITY_ID IN (SELECT GENETIC_ENTITY_ID FROM genetic_alteration WHERE GENETIC_PROFILE_ID=?))"); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - - List studies = new ArrayList(); - while(rs.next()) { - studies.add(rs.getInt("CANCER_STUDY_ID")); - } - // check if entities only exist in single study - return studies.size() == 1; - } catch (SQLException e) { - e.printStackTrace(); - } finally { - JdbcUtil.closeAll(DaoGeneticEntity.class, con, pstmt, rs); - } - // do not update if there is an error - return false; - } - - /** - * delete generic assay meta records if meta is not shared with other studies - * check and delete generic assay meta records profile by profile - * @throws DaoException - */ - public static void checkAndDeleteGenericAssayMetaInStudy(int internalCancerStudyId) throws DaoException { - List geneticProfiles = DaoGeneticProfile.getAllGeneticProfiles(internalCancerStudyId); - List genericAssayProfiles = geneticProfiles.stream().filter(profile -> profile.getGeneticAlterationType() == GeneticAlterationType.GENERIC_ASSAY).collect(Collectors.toList()); - List> deleteGenericAssayStatements = new ArrayList<>(); - - for (GeneticProfile profile : genericAssayProfiles) { - if (DaoGenericAssay.geneticEntitiesOnlyExistInSingleStudy(profile.getGeneticProfileId())) { - deleteGenericAssayStatements.add(Pair.of(profile.getGeneticProfileId(), "DELETE FROM generic_entity_properties WHERE GENETIC_ENTITY_ID IN (SELECT GENETIC_ENTITY_ID FROM genetic_alteration WHERE GENETIC_PROFILE_ID=?)")); - deleteGenericAssayStatements.add(Pair.of(profile.getGeneticProfileId(), "DELETE FROM genetic_entity WHERE ID IN (SELECT GENETIC_ENTITY_ID FROM genetic_alteration WHERE GENETIC_PROFILE_ID=?)")); - } - } - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoCancerStudy.class); - for (Pair profileIdAndStatementPair : deleteGenericAssayStatements) { - pstmt = con.prepareStatement(profileIdAndStatementPair.getValue()); - if (profileIdAndStatementPair.getValue().contains("?")) { - pstmt.setInt(1, profileIdAndStatementPair.getKey()); - } - pstmt.executeUpdate(); - pstmt.close(); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCancerStudy.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneset.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneset.java deleted file mode 100644 index 6a751e7ea94..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneset.java +++ /dev/null @@ -1,437 +0,0 @@ -/* - * Copyright (c) 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author ochoaa - * @author Sander Tan -*/ - -package org.mskcc.cbio.portal.dao; - -import org.cbioportal.model.EntityType; -import org.cbioportal.model.GeneticEntity; -import org.mskcc.cbio.portal.dao.DaoGenesetHierarchyNode; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Geneset; -import org.mskcc.cbio.portal.scripts.ImportGenesetData; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import java.sql.*; -import java.util.*; -import java.util.stream.Collectors; - -public class DaoGeneset { - - private DaoGeneset() { - } - - /** - * Adds a new Geneset record to the database. - * @param geneset - * @return number of records successfully added - * @throws DaoException - */ - public static Geneset addGeneset(Geneset geneset) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - // new geneset so add genetic entity first - GeneticEntity geneticEntity = DaoGeneticEntity.addNewGeneticEntity(new GeneticEntity(EntityType.GENESET.name())); - int geneticEntityId = geneticEntity.getId(); - geneset.setGeneticEntityId(geneticEntityId); - - con = JdbcUtil.getDbConnection(DaoGeneset.class); - pstmt = con.prepareStatement("INSERT INTO geneset " - + "(`GENETIC_ENTITY_ID`, `EXTERNAL_ID`, `NAME`, `DESCRIPTION`, `REF_LINK`) " - + "VALUES(?,?,?,?,?)", Statement.RETURN_GENERATED_KEYS); - pstmt.setInt(1, geneset.getGeneticEntityId()); - pstmt.setString(2, geneset.getExternalId()); - pstmt.setString(3, geneset.getName()); - pstmt.setString(4, geneset.getDescription()); - pstmt.setString(5, geneset.getRefLink()); - pstmt.executeUpdate(); - //get the auto generated key: - rs = pstmt.getGeneratedKeys(); - rs.next(); - int newId = rs.getInt(1); - geneset.setId(newId); - - return geneset; - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoGeneset.class, con, pstmt, rs); - } - } - - /** - * Prepares a list of Gene records from Geneset object to be added to database via MySQLbulkLoader. - * @param geneset - * @return number of records where entrez gene id is found in db - */ - public static int addGenesetGenesToBulkLoader(Geneset geneset) { - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - - Set entrezGeneIds = geneset.getGenesetGeneIds(); - int rows = 0; - for (Long entrezGeneId : entrezGeneIds) { - //validate: - if (daoGeneOptimized.getGene(entrezGeneId.intValue()) == null) { - //throw error with clear message: - ProgressMonitor.logWarning(geneset.getExternalId() + " contains Entrez gene ID not found in local gene table: " + entrezGeneId); - ImportGenesetData.skippedGenes++; - continue; - } - // use this code if bulk loading - // write to the temp file maintained by the MySQLbulkLoader - MySQLbulkLoader.getMySQLbulkLoader("geneset_gene").insertRecord( - Integer.toString(geneset.getId()), - Long.toString(entrezGeneId)); - rows ++; - } - return rows; - } - - /** - * Given a Geneset record, returns list of CanonicalGene records. - * @param geneset - * @return list of geneset genes - * @throws DaoException - */ - public static List getGenesetGenes(Geneset geneset) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - - try { - con = JdbcUtil.getDbConnection(DaoGeneset.class); - pstmt = con.prepareStatement("SELECT * FROM geneset_gene WHERE GENESET_ID = ?"); - pstmt.setInt(1, geneset.getId()); - rs = pstmt.executeQuery(); - - // get list of entrez gene ids for geneset record - Set entrezGeneIds = new HashSet(); - while (rs.next()) { - entrezGeneIds.add(rs.getLong("ENTREZ_GENE_ID")); - } - - // get list of genes by entrez gene ids - List genes = new ArrayList(); - for (Long entrezGeneId : entrezGeneIds) { - CanonicalGene gene = daoGeneOptimized.getGene(entrezGeneId); - genes.add(gene); - } - - return genes; - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoGeneset.class, con, pstmt, rs); - } - } - - /** - * Given an external id, returns a Geneset record. - * @param externalId - * @return Geneset record - * @throws DaoException - */ - public static Geneset getGenesetByExternalId(String externalId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneset.class); - pstmt = con.prepareStatement("SELECT * FROM geneset WHERE `EXTERNAL_ID` = ?"); - pstmt.setString(1, externalId); - rs = pstmt.executeQuery(); - - // return null if result set is empty - if (rs.next()) { - return extractGeneset(rs); - } - else { - return null; - } - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoGeneset.class, con, pstmt, rs); - } - } - - /** - * Get Geneset record. - */ - public Geneset getGenesetById(int genesetId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneset.class); - pstmt = con.prepareStatement("SELECT * FROM geneset WHERE ID = ?"); - pstmt.setInt(1, genesetId); - rs = pstmt.executeQuery(); - if (rs.next()) { - return extractGeneset(rs); - } else { - return null; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneset.class, con, pstmt, rs); - } - } - - /** - * Extracts Geneset record from ResultSet. - * @param rs - * @return Geneset record - * @throws SQLException - * @throws DaoException - */ - private static Geneset extractGeneset(ResultSet rs) throws SQLException, DaoException { - Integer id = rs.getInt("ID"); - Integer geneticEntityId = rs.getInt("GENETIC_ENTITY_ID"); - String externalId = rs.getString("EXTERNAL_ID"); - String name = rs.getString("NAME"); - String description = rs.getString("DESCRIPTION"); - String refLink = rs.getString("REF_LINK"); - - Geneset geneset = new Geneset(); - geneset.setId(id); - geneset.setGeneticEntityId(geneticEntityId); - geneset.setExternalId(externalId); - geneset.setName(name); - geneset.setDescription(description); - geneset.setRefLink(refLink); - List genesetGenes = getGenesetGenes(geneset); - if (genesetGenes != null && genesetGenes.size() > 0) { - geneset.setGenesetGenes(genesetGenes.stream().map(g -> g.getEntrezGeneId()).collect(Collectors.toSet())); - } - return geneset; - } - - public static Set getGenesetGeneticEntityIds() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneset.class); - pstmt = con.prepareStatement("SELECT ID FROM genetic_entity WHERE ENTITY_TYPE = 'GENESET'"); - rs = pstmt.executeQuery(); - - Set geneticEntities = new HashSet(); - while (rs.next()) { - geneticEntities.add(rs.getLong("ID")); - } - return geneticEntities; - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneset.class, con, pstmt, rs); - } - } - - /** - * Checks the usage of a geneset by genetic entity id. - * @param geneticEntityId - * @return boolean indicating whether geneset is in use by other studies - * @throws DaoException - */ - public static boolean checkUsage(Integer geneticEntityId) throws DaoException { - String SQL = "SELECT COUNT(DISTINCT `CANCER_STUDY_ID`) FROM genetic_profile " + - "WHERE `GENETIC_PROFILE_ID` IN (SELECT `GENETIC_PROFILE_ID` FROM genetic_alteration WHERE `GENETIC_ENTITY_ID` = ?)"; - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneset.class); - pstmt = con.prepareStatement(SQL); - pstmt.setInt(1, geneticEntityId); - rs = pstmt.executeQuery(); - if (rs.next()) { - return rs.getInt(1)>0; - } - return false; - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoGeneset.class, con, pstmt, rs); - } - } - - public static void updateGeneset(Geneset geneset, boolean updateGenesetGenes) throws DaoException { - String SQL = "UPDATE geneset SET " + - "`NAME` = ?, `DESCRIPTION` = ?, `REF_LINK` = ?" + - "WHERE `ID` = ?"; - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneset.class); - pstmt = con.prepareStatement(SQL); - pstmt.setString(1, geneset.getName()); - pstmt.setString(2, geneset.getDescription()); - pstmt.setString(3, geneset.getRefLink()); - pstmt.setInt(4, geneset.getId()); - pstmt.executeUpdate(); - - // We decided that when updating genesets, it's not a good idea to update genes it contains, because - // in that case, data could be still from old version of the geneset. - // A solution would be to update geneset database to new version, and include new genes in that. - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoGeneset.class, con, pstmt, rs); - } - } - - /** - * Delete Geneset genetic entity records. - */ - private static void deleteGenesetGeneticEntityRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneset.class); - pstmt = con.prepareStatement("DELETE FROM genetic_entity WHERE ENTITY_TYPE = 'GENESET'"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneset.class, con, pstmt, rs); - } - } - - /** - * Deletes Geneset data such as GSVA Scores and Pvalues by genetic entity id - * @param id - * @throws DaoException - */ - private static void deleteGenesetGeneticProfiles() throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - try { - connection = JdbcUtil.getDbConnection(DaoGeneset.class); - - // Prepare statement - preparedStatement = connection.prepareStatement("DELETE FROM genetic_profile WHERE GENETIC_ALTERATION_TYPE = 'GENESET_SCORE'"); - - // Execute statement - preparedStatement.executeUpdate(); - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoGeneset.class, connection, preparedStatement, resultSet); - } - } - - /** - * Deletes genetic_profile_link records which are pointing to a profile of type to GENESET_SCORE - * @throws DaoException - */ - private static void deleteGenesetGeneticProfileLinks() throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - try { - connection = JdbcUtil.getDbConnection(DaoGeneset.class); - - // Prepare statement: DELETE genetic_profile_link which are pointing to a profile of type to GENESET_SCORE - preparedStatement = connection.prepareStatement("DELETE FROM genetic_profile_link WHERE REFERRED_GENETIC_PROFILE_ID IN " - + "(SELECT GENETIC_PROFILE_ID FROM genetic_profile WHERE GENETIC_ALTERATION_TYPE = 'GENESET_SCORE')"); - - // Execute statement - preparedStatement.executeUpdate(); - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoGeneset.class, connection, preparedStatement, resultSet); - } - } - - /** - * Deletes all records from 'geneset' table in database and records in related tables. - * @throws DaoException - */ - private static void deleteAllGenesetRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneset.class); - - pstmt = con.prepareStatement("DELETE FROM geneset"); - pstmt.executeUpdate(); - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoGeneset.class, con, pstmt, rs); - } - } - - /** - * Deletes all records from 'geneset' table in database and records in related tables. - * @throws DaoException - */ - public static void deleteAllRecords() throws DaoException { - deleteAllGenesetRecords(); - deleteGenesetGeneticProfileLinks(); - deleteGenesetGeneticProfiles(); - deleteGenesetGeneticEntityRecords(); - DaoGenesetHierarchyNode.deleteAllGenesetHierarchyRecords(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenesetHierarchyLeaf.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenesetHierarchyLeaf.java deleted file mode 100644 index f1fa984dfdc..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenesetHierarchyLeaf.java +++ /dev/null @@ -1,104 +0,0 @@ -/* - * Copyright (c) 2017 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author Sander Tan -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.*; -import java.util.*; - -import org.mskcc.cbio.portal.model.GenesetHierarchyLeaf; - -public class DaoGenesetHierarchyLeaf { - - private DaoGenesetHierarchyLeaf() { - } - - /** - * Add gene set hierarchy object to geneset_hierarchy_leaf table in database. - * @throws DaoException - */ - public static void addGenesetHierarchyLeaf(GenesetHierarchyLeaf genesetHierarchyLeaf) throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - - try { - // Open connection to database - connection = JdbcUtil.getDbConnection(DaoGenesetHierarchyLeaf.class); - - // Prepare SQL statement - preparedStatement = connection.prepareStatement("INSERT INTO geneset_hierarchy_leaf " - + "(`NODE_ID`, `GENESET_ID`) VALUES(?,?)"); - - // Fill in statement - preparedStatement.setInt(1, genesetHierarchyLeaf.getNodeId()); - preparedStatement.setInt(2, genesetHierarchyLeaf.getGenesetId()); - - // Execute statement - preparedStatement.executeUpdate(); - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenesetHierarchyLeaf.class, connection, preparedStatement, resultSet); - } - } - - public static List getGenesetHierarchyLeafsByGenesetId(int genesetId) throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - - try { - // Open connection to database - connection = JdbcUtil.getDbConnection(DaoGenesetHierarchyLeaf.class); - - // Prepare SQL statement - preparedStatement = connection.prepareStatement("SELECT * FROM geneset_hierarchy_leaf WHERE GENESET_ID = ?"); - preparedStatement.setInt(1, genesetId); - - // Execute statement - resultSet = preparedStatement.executeQuery(); - - List genesetHierarchyLeafs = new ArrayList(); - - while (resultSet.next()) { - GenesetHierarchyLeaf genesetHierarchyLeaf = new GenesetHierarchyLeaf(); - genesetHierarchyLeaf.setNodeId(resultSet.getInt("NODE_ID")); - genesetHierarchyLeaf.setGenesetId(resultSet.getInt("GENESET_ID")); - genesetHierarchyLeafs.add(genesetHierarchyLeaf); - } - - return genesetHierarchyLeafs; - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenesetHierarchyLeaf.class, connection, preparedStatement, resultSet); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenesetHierarchyNode.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenesetHierarchyNode.java deleted file mode 100644 index 8b8d19734a5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGenesetHierarchyNode.java +++ /dev/null @@ -1,130 +0,0 @@ -/* - * Copyright (c) 2017 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author Sander Tan -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.*; - -import org.mskcc.cbio.portal.model.GenesetHierarchy; - -public class DaoGenesetHierarchyNode { - - private DaoGenesetHierarchyNode() { - } - - /** - * Add gene set hierarchy object to geneset_hierarchy_node table in database. - * @throws DaoException - */ - public static void addGenesetHierarchy(GenesetHierarchy genesetHierarchy) throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - - try { - // Open connection to database - connection = JdbcUtil.getDbConnection(DaoGenesetHierarchyNode.class); - - // Prepare SQL statement - preparedStatement = connection.prepareStatement("INSERT INTO geneset_hierarchy_node " - + "(`NODE_NAME`, `PARENT_ID`) VALUES(?,?)", Statement.RETURN_GENERATED_KEYS); - - // Fill in statement - preparedStatement.setString(1, genesetHierarchy.getNodeName()); - - if (genesetHierarchy.getParentId() == 0) { - preparedStatement.setNull(2, java.sql.Types.INTEGER); - } else { - preparedStatement.setInt(2, genesetHierarchy.getParentId()); - } - - // Execute statement - preparedStatement.executeUpdate(); - - // Get the auto generated key, which is the Node ID: - resultSet = preparedStatement.getGeneratedKeys(); - if (resultSet.next()) { - genesetHierarchy.setNodeId(resultSet.getInt(1)); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenesetHierarchyNode.class, connection, preparedStatement, resultSet); - } - } - - /** - * Retrieve gene set hierarchy object from geneset_hierarchy_node table in database to check if table if filled. - * @throws DaoException - */ - public static boolean checkGenesetHierarchy() throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - - try { - // Open connection to database - connection = JdbcUtil.getDbConnection(DaoGenesetHierarchyNode.class); - - // Prepare SQL statement - preparedStatement = connection.prepareStatement("SELECT * FROM geneset_hierarchy_node LIMIT 1"); - - // Execute statement - resultSet = preparedStatement.executeQuery(); - - // return false if result set is empty - return resultSet.next(); - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenesetHierarchyNode.class, connection, preparedStatement, resultSet); - } - } - - /** - * Deletes all records from 'geneset_hierarchy_node' table in database. - * This also deletes all records from related 'geneset_hierarchy_leaf' table, via ON DELETE CASCADE - * constraint in DB. - * - * @throws DaoException - */ - public static void deleteAllGenesetHierarchyRecords() throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - try { - connection = JdbcUtil.getDbConnection(DaoGenesetHierarchyNode.class); - preparedStatement = connection.prepareStatement("DELETE FROM geneset_hierarchy_node"); - preparedStatement.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenesetHierarchyNode.class, connection, preparedStatement, resultSet); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticAlteration.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticAlteration.java deleted file mode 100644 index 25bef12594c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticAlteration.java +++ /dev/null @@ -1,468 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.CanonicalGene; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.*; -import java.util.Map.Entry; - -import com.fasterxml.jackson.databind.node.ObjectNode; - -import org.apache.commons.lang3.StringUtils; - -/** - * Data Access Object for the Genetic Alteration Table. - * - * @author Ethan Cerami. - */ -public class DaoGeneticAlteration { - private static final String DELIM = ","; - public static final String NAN = "NaN"; - private static DaoGeneticAlteration daoGeneticAlteration = null; - - /** - * Private Constructor (Singleton pattern). - */ - private DaoGeneticAlteration() { - } - - /** - * Gets Instance of Dao Object. (Singleton pattern). - * - * @return DaoGeneticAlteration Object. - * @throws DaoException Dao Initialization Error. - */ - public static DaoGeneticAlteration getInstance() throws DaoException { - if (daoGeneticAlteration == null) { - daoGeneticAlteration = new DaoGeneticAlteration(); - - } - - return daoGeneticAlteration; - } - - public static interface AlterationProcesser { - ObjectNode process( - long entrezGeneId, - String[] values, - ArrayList orderedSampleList - ); - } - - /** - * Adds a Row of Genetic Alterations associated with a Genetic Profile ID and Entrez Gene ID. - * @param geneticProfileId Genetic Profile ID. - * @param entrezGeneId Entrez Gene ID. - * @param values DELIM separated values. - * @return number of rows successfully added. - * @throws DaoException Database Error. - */ - public int addGeneticAlterations(int geneticProfileId, long entrezGeneId, String[] values) - throws DaoException { - return addGeneticAlterationsForGeneticEntity(geneticProfileId, DaoGeneOptimized.getGeneticEntityId(entrezGeneId), values); - } - - public int addGeneticAlterationsForGeneticEntity(int geneticProfileId, int geneticEntityId, String[] values) - throws DaoException { - - StringBuffer valueBuffer = new StringBuffer(); - for (String value: values) { - if (value.contains(DELIM)) { - throw new IllegalArgumentException ("Value cannot contain delim: " + DELIM - + " --> " + value); - } - valueBuffer.append(value).append(DELIM); - } - - if (MySQLbulkLoader.isBulkLoad() ) { - // write to the temp file maintained by the MySQLbulkLoader - MySQLbulkLoader.getMySQLbulkLoader("genetic_alteration").insertRecord(Integer.toString( geneticProfileId ), - Integer.toString( geneticEntityId ), valueBuffer.toString()); - // return 1 because normal insert will return 1 if no error occurs - return 1; - } - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGeneticAlteration.class); - pstmt = con.prepareStatement - ("INSERT INTO genetic_alteration (GENETIC_PROFILE_ID, " + - " GENETIC_ENTITY_ID," + - " `VALUES`) " - + "VALUES (?,?,?)"); - pstmt.setInt(1, geneticProfileId); - pstmt.setLong(2, geneticEntityId); - pstmt.setString(3, valueBuffer.toString()); - return pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticAlteration.class, con, pstmt, rs); - } - } - - /** - * Gets the Specified Genetic Alteration. - * - * @param geneticProfileId Genetic Profile ID. - * @param sampleId Sample ID. - * @param entrezGeneId Entrez Gene ID. - * @return value or NAN. - * @throws DaoException Database Error. - */ - public String getGeneticAlteration(int geneticProfileId, int sampleId, - long entrezGeneId) throws DaoException { - HashMap sampleMap = getGeneticAlterationMap(geneticProfileId, entrezGeneId); - if (sampleMap.containsKey(sampleId)) { - return sampleMap.get(sampleId); - } else { - return NAN; - } - } - - /** - * Gets a HashMap of Values, keyed by Sample ID. - * @param geneticProfileId Genetic Profile ID. - * @param entrezGeneId Entrez Gene ID. - * @return HashMap of values, keyed by Sample ID. - * @throws DaoException Database Error. - */ - public HashMap getGeneticAlterationMap(int geneticProfileId, - long entrezGeneId) throws DaoException { - HashMap> map = getGeneticAlterationMap(geneticProfileId, Collections.singleton(entrezGeneId)); - if (map.isEmpty()) { - return new HashMap(); - } - - return map.get(entrezGeneId); - } - - /** - * Returns the map of entrezGeneId as key and map with all - * respective CaseId and Values as value. - * - * @param geneticProfileId Genetic Profile ID. - * @param entrezGeneIds Entrez Gene IDs. - * @return Map>. - * @throws DaoException Database Error. - */ - public HashMap> getGeneticAlterationMap(int geneticProfileId, Collection entrezGeneIds) throws DaoException { - Collection geneticEntityIds = null; - if (entrezGeneIds != null) { - //translate entrezGeneIds to corresponding geneticEntityIds: - geneticEntityIds = new ArrayList(); - for (Long entrezGeneId : entrezGeneIds) { - geneticEntityIds.add(DaoGeneOptimized.getGeneticEntityId(entrezGeneId)); - } - } - HashMap> intermediateMap = getGeneticAlterationMapForEntityIds(geneticProfileId, geneticEntityIds); - //translate back to entrez, since intermediateMap is keyed by geneticEntityIds: - HashMap> resultMap = new HashMap>(); - Iterator>> mapIterator = intermediateMap.entrySet().iterator(); - while (mapIterator.hasNext()) { - Entry> mapEntry = mapIterator.next(); - resultMap.put(DaoGeneOptimized.getEntrezGeneId(mapEntry.getKey()), mapEntry.getValue()); - } - return resultMap; - } - - /** - * Returns the map of geneticEntityIds as key and map with all - * respective CaseId and Values as value. - * - * @param geneticProfileId - * @param geneticEntityIds - * @return Map>. - * @throws DaoException - */ - public HashMap> getGeneticAlterationMapForEntityIds(int geneticProfileId, Collection geneticEntityIds) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - HashMap> map = new HashMap>(); - ArrayList orderedSampleList = DaoGeneticProfileSamples.getOrderedSampleList(geneticProfileId); - if (orderedSampleList == null || orderedSampleList.size() ==0) { - throw new IllegalArgumentException ("Could not find any samples for genetic" + - " profile ID: " + geneticProfileId); - } - try { - con = JdbcUtil.getDbConnection(DaoGeneticAlteration.class); - if (geneticEntityIds == null) { - pstmt = con.prepareStatement("SELECT * FROM genetic_alteration WHERE" - + " GENETIC_PROFILE_ID = " + geneticProfileId); - } else { - pstmt = con.prepareStatement("SELECT * FROM genetic_alteration WHERE" - + " GENETIC_PROFILE_ID = " + geneticProfileId - + " AND GENETIC_ENTITY_ID IN ("+StringUtils.join(geneticEntityIds, ",")+")"); - } - rs = pstmt.executeQuery(); - while (rs.next()) { - HashMap mapSampleValue = new HashMap(); - int geneticEntityId = rs.getInt("GENETIC_ENTITY_ID"); - String values = rs.getString("VALUES"); - //hm.debug.. - String valueParts[] = values.split(DELIM); - for (int i=0; i - * @throws DaoException Database Error, MathException - */ - public static ArrayList getProcessedAlterationData( - int geneticProfileId, //queried profile internal id (num) - //Set entrezGeneIds, //list of genes in calculation gene pool (all genes or only cancer genes) - int offSet, //OFFSET for LIMIT (to get only one segment of the genes) - AlterationProcesser processor //implemented interface - ) throws DaoException { - - ArrayList result = new ArrayList<>(); - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - ArrayList orderedSampleList = DaoGeneticProfileSamples.getOrderedSampleList(geneticProfileId); - if (orderedSampleList == null || orderedSampleList.size() ==0) { - throw new IllegalArgumentException ("Could not find any samples for genetic" + - " profile ID: " + geneticProfileId); - } - - try { - con = JdbcUtil.getDbConnection(DaoGeneticAlteration.class); - - pstmt = con.prepareStatement("SELECT * FROM genetic_alteration WHERE" - + " GENETIC_PROFILE_ID = " + geneticProfileId - + " LIMIT 3000 OFFSET " + offSet); - - rs = pstmt.executeQuery(); - while (rs.next()) { - long entrezGeneId = DaoGeneOptimized.getEntrezGeneId(rs.getInt("GENETIC_ENTITY_ID")); - String[] values = rs.getString("VALUES").split(DELIM); - ObjectNode datum = processor.process( - entrezGeneId, - values, - orderedSampleList); - if (datum != null) result.add(datum); - } - return result; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticAlteration.class, con, pstmt, rs); - } - - } - - /** - * Gets all Genes in a Specific Genetic Profile. - * @param geneticProfileId Genetic Profile ID. - * @return Set of Canonical Genes. - * @throws DaoException Database Error. - */ - public Set getGenesInProfile(int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - Set geneList = new HashSet (); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - try { - con = JdbcUtil.getDbConnection(DaoGeneticAlteration.class); - pstmt = con.prepareStatement - ("SELECT * FROM genetic_alteration WHERE GENETIC_PROFILE_ID = ?"); - pstmt.setInt(1, geneticProfileId); - - rs = pstmt.executeQuery(); - while (rs.next()) { - Long entrezGeneId = DaoGeneOptimized.getEntrezGeneId(rs.getInt("GENETIC_ENTITY_ID")); - geneList.add(daoGene.getGene(entrezGeneId)); - } - return geneList; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticAlteration.class, con, pstmt, rs); - } - } - - /** - * Gets all Genes in a Specific Genetic Profile. - * @param geneticProfileId Genetic Profile ID. - * @return Set of Canonical Genes. - * @throws DaoException Database Error. - */ - public static Set getEntityIdsInProfile(int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - Set geneticEntityList = new HashSet<>(); - - try { - con = JdbcUtil.getDbConnection(DaoGeneticAlteration.class); - pstmt = con.prepareStatement - ("SELECT * FROM genetic_alteration WHERE GENETIC_PROFILE_ID = ?"); - pstmt.setInt(1, geneticProfileId); - - rs = pstmt.executeQuery(); - while (rs.next()) { - int geneticEntityId = rs.getInt("GENETIC_ENTITY_ID"); - geneticEntityList.add(geneticEntityId); - } - return geneticEntityList; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticAlteration.class, con, pstmt, rs); - } - } - - /** - * Gets the total number of all genes in a Specific Genetic Profile. - * @param geneticProfileId Genetic Profile ID. - * @return number of Canonical Genes. - * @throws DaoException Database Error. - */ - public static int getGenesCountInProfile(int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticAlteration.class); - pstmt = con.prepareStatement - ("SELECT COUNT(*) FROM genetic_alteration WHERE GENETIC_PROFILE_ID = ?"); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - if (rs.next()) { - return rs.getInt(1); - } - return 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticAlteration.class, con, pstmt, rs); - } - } - - /** - * Gets total number of records in table. - * @return number of records. - * @throws DaoException Database Error. - */ - public int getCount() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticAlteration.class); - pstmt = con.prepareStatement - ("SELECT COUNT(*) FROM genetic_alteration"); - rs = pstmt.executeQuery(); - if (rs.next()) { - return rs.getInt(1); - } - return 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticAlteration.class, con, pstmt, rs); - } - } - - /** - * Deletes all Genetic Alteration Records associated with the specified Genetic Profile ID. - * - * @param geneticProfileId Genetic Profile ID. - * @throws DaoException Database Error. - */ - public void deleteAllRecordsInGeneticProfile(long geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticAlteration.class); - pstmt = con.prepareStatement("DELETE from " + - "genetic_alteration WHERE GENETIC_PROFILE_ID=?"); - pstmt.setLong(1, geneticProfileId); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticAlteration.class, con, pstmt, rs); - } - } - - /** - * Deletes all Records in Table. - * - * @throws DaoException Database Error. - */ - public void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticAlteration.class); - pstmt = con.prepareStatement("TRUNCATE TABLE genetic_alteration"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticAlteration.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticEntity.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticEntity.java deleted file mode 100644 index e3858617890..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticEntity.java +++ /dev/null @@ -1,191 +0,0 @@ -package org.mskcc.cbio.portal.dao; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.*; - -import org.cbioportal.model.GeneticEntity; - -public class DaoGeneticEntity { - - /** - * Private Constructor to enforce Singleton Pattern. - */ - private DaoGeneticEntity() { - } - - private enum SqlAction { - INSERT, UPDATE, SELECT, DELETE - } - - /** - * Adds a new genetic entity Record to the Database and returns GeneticEntity - * - * @param GeneticEntity : GeneticEntity, can only contains the entity type - * @return : GeneticEntity created - * @throws DaoException Database Error. - */ - - public static GeneticEntity addNewGeneticEntity(GeneticEntity geneticEntity) throws DaoException { - - DbContainer container = executeSQLstatment( - SqlAction.INSERT, - "INSERT INTO genetic_entity (`ENTITY_TYPE`, `STABLE_ID`) " - + "VALUES(?,?)", - geneticEntity.getEntityType(), - geneticEntity.getStableId() - ); - - geneticEntity.setId(container.getId()); - - return geneticEntity; - } - - /** - * Given an external id, returns a GeneticEntity record. - * @param stableId - * @return GeneticEntity record - * @throws DaoException - */ - public static GeneticEntity getGeneticEntityByStableId(String stableId) throws DaoException { - DbContainer container = executeSQLstatment(SqlAction.SELECT, "SELECT * FROM genetic_entity WHERE `STABLE_ID` = ?", stableId); - return container.getGeneticEntity(); - } - - /** - * Get GeneticEntity record. - * @param id genetic_entity id - */ - public static GeneticEntity getGeneticEntityById(int id) throws DaoException { - DbContainer container = executeSQLstatment(SqlAction.SELECT, "SELECT * FROM genetic_entity WHERE ID = ?", String.valueOf(id)); - return container.getGeneticEntity(); - } - - /** - * Get all GeneticEntity record. - */ - public static List getAllGeneticEntities() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticEntity.class); - pstmt = con.prepareStatement - ("SELECT * FROM genetic_entity"); - rs = pstmt.executeQuery(); - List geneticEntities = new ArrayList<>(); - while (rs.next()) { - geneticEntities.add(extractGeneticEntity(rs)); - } - return geneticEntities; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticEntity.class, con, pstmt, rs); - } - } - - /** - * Extracts Geneset record from ResultSet. - * @param rs - * @return Geneset record - * @throws SQLException - * @throws DaoException - */ - private static GeneticEntity extractGeneticEntity(ResultSet rs) throws SQLException, DaoException { - - Integer id = rs.getInt("ID"); - String stableId = rs.getString("STABLE_ID"); - String entityType = rs.getString("ENTITY_TYPE"); - - GeneticEntity geneticEntity = new GeneticEntity(id, entityType, stableId); - - return geneticEntity; - } - - /** - * Helper method for retrieval of a geneticEntity record from the database - * @param action type of MySQL operation - * @param statement MySQL statement - * @param keys Series of values used in the statement (order is important) - * @return Object return data from - * @throws DaoException - */ - private static DbContainer executeSQLstatment(SqlAction action, String statement, String ... keys) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticEntity.class); - - // for insert statements the number of affected records is returned - // this requires the RETURN_GENERATED_KEYS to be set for insert statements. - int switchGetGeneratedKeys = PreparedStatement.NO_GENERATED_KEYS; - if (action == SqlAction.INSERT) - switchGetGeneratedKeys = PreparedStatement.RETURN_GENERATED_KEYS; - - pstmt = con.prepareStatement(statement, switchGetGeneratedKeys); - - int cnt = 1; - for (int i = 0; i < keys.length; i++) - pstmt.setString(cnt++, keys[i]); - - switch(action) { - case INSERT: - pstmt.executeUpdate(); - rs = pstmt.getGeneratedKeys(); - rs.next(); - return new DbContainer(rs.getInt(1)); - case SELECT: - rs = pstmt.executeQuery(); - if (rs.next()) { - return new DbContainer(extractGeneticEntity(rs)); - } - return new DbContainer(); - default: - pstmt.executeUpdate(); - return null; - } - - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoGeneticEntity.class, con, pstmt, rs); - } - } - - final static class DbContainer { - private int id; - private GeneticEntity geneticEntity; - - public DbContainer(){ - } - - public DbContainer(int id){ - this.id = id; - } - - public DbContainer(GeneticEntity geneticEntity) { - this.geneticEntity = geneticEntity; - } - - /** - * @return the geneticEntity - */ - public GeneticEntity getGeneticEntity() { - return geneticEntity; - } - - /** - * @return the id - */ - public int getId() { - return id; - } - - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticProfile.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticProfile.java deleted file mode 100644 index 0326fb2f68d..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticProfile.java +++ /dev/null @@ -1,314 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.*; -import java.util.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.SpringUtil; - -/** - * Analogous to and replaces the old DaoCancerType. A CancerStudy has a NAME and - * DESCRIPTION. If PUBLIC is true a CancerStudy can be accessed by anyone, - -/** - * Data access object for Genetic Profile table - */ -public final class DaoGeneticProfile { - private DaoGeneticProfile() {} - - private static final Map byStableId = new HashMap(); - private static final Map byInternalId = new HashMap(); - private static final Map> byStudy = new HashMap>(); - - static { - SpringUtil.initDataSource(); - reCache(); - } - - public static synchronized void reCache() { - byStableId.clear(); - byInternalId.clear(); - byStudy.clear(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticProfile.class); - - pstmt = con.prepareStatement - ("SELECT * FROM genetic_profile"); - rs = pstmt.executeQuery(); - while (rs.next()) { - GeneticProfile profileType = extractGeneticProfile(rs); - cacheGeneticProfile(profileType); - } - } catch (SQLException e) { - e.printStackTrace(); - } finally { - JdbcUtil.closeAll(DaoGeneticProfile.class, con, pstmt, rs); - } - } - - private static void cacheGeneticProfile(GeneticProfile profile) { - byStableId.put(profile.getStableId(), profile); - byInternalId.put(profile.getGeneticProfileId(), profile); - List list = byStudy.get(profile.getCancerStudyId()); - if (list==null) { - list = new ArrayList(); - byStudy.put(profile.getCancerStudyId(), list); - } - list.add(profile); - } - - public static int addGeneticProfile(GeneticProfile profile) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - int rows = 0; - try { - con = JdbcUtil.getDbConnection(DaoGeneticProfile.class); - - pstmt = con.prepareStatement - ("INSERT INTO genetic_profile (`STABLE_ID`, `CANCER_STUDY_ID`, "+ - "`GENETIC_ALTERATION_TYPE`, `DATATYPE`, `NAME`, `DESCRIPTION`, "+ - "`SHOW_PROFILE_IN_ANALYSIS_TAB`, `PIVOT_THRESHOLD`, `SORT_ORDER`, `GENERIC_ASSAY_TYPE`, `PATIENT_LEVEL`) " + - "VALUES (?,?,?,?,?,?,?,?,?,?,?)"); - pstmt.setString(1, profile.getStableId()); - pstmt.setInt(2, profile.getCancerStudyId()); - pstmt.setString(3, profile.getGeneticAlterationType().name()); - pstmt.setString(4, profile.getDatatype()); - pstmt.setString(5, profile.getProfileName()); - pstmt.setString(6, profile.getProfileDescription()); - pstmt.setBoolean(7, profile.showProfileInAnalysisTab()); - - // `pivot_threshold_value` and `value_sort_order` `GENERIC_ASSAY_TYPE` fields are geneirc assay data specific. - // These fields are set to null when not present in profile object. - if (profile.getPivotThreshold() == null) { - pstmt.setNull(8, java.sql.Types.FLOAT); - } else { - pstmt.setFloat(8, profile.getPivotThreshold()); - } - if (profile.getSortOrder() == null) { - pstmt.setNull(9, java.sql.Types.INTEGER); - } else { - pstmt.setString(9, profile.getSortOrder()); - } - if (profile.getGenericAssayType() == null) { - pstmt.setNull(10, java.sql.Types.VARCHAR); - } else { - pstmt.setString(10, profile.getGenericAssayType()); - } - - // default value is false - pstmt.setBoolean(11, profile.getPatientLevel()); - - rows = pstmt.executeUpdate(); - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticProfile.class, con, pstmt, rs); - } - - reCache(); - return rows; - } - - /** - * Updates a Genetic Profile Name and Description. - * @param geneticProfileId Genetic Profile ID. - * @param name New Genetic Profile Name. - * @param description New Genetic Profile Description. - * @return Returns True if Genetic Profile was Updated. - * @throws DaoException Data Access Error. - */ - public static boolean updateNameAndDescription (int geneticProfileId, String name, String description) - throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - boolean ret = false; - try { - con = JdbcUtil.getDbConnection(DaoGeneticProfile.class); - pstmt = con.prepareStatement("UPDATE genetic_profile SET NAME=?, DESCRIPTION=? " + - "WHERE GENETIC_PROFILE_ID=?"); - pstmt.setString(1, name); - pstmt.setString(2, description); - pstmt.setInt(3, geneticProfileId); - ret = pstmt.executeUpdate() > 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticProfile.class, con, pstmt, rs); - } - - reCache(); - return ret; - } - - /** - * Updates a Genetic Profile datatype - */ - public static boolean updateDatatype( - int geneticProfileId, - String datatype - ) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - boolean ret; - try { - con = JdbcUtil.getDbConnection(DaoGeneticProfile.class); - pstmt = con.prepareStatement("UPDATE genetic_profile SET DATATYPE=? " + - "WHERE GENETIC_PROFILE_ID=?"); - pstmt.setString(1, datatype); - pstmt.setInt(2, geneticProfileId); - ret = pstmt.executeUpdate() > 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticProfile.class, con, pstmt, rs); - } - - reCache(); - return ret; - } - - public static int deleteGeneticProfile(GeneticProfile profile) throws DaoException { - int rows = 0; - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticProfile.class); - pstmt = con.prepareStatement("DELETE FROM genetic_profile WHERE STABLE_ID = ?"); - pstmt.setString(1, profile.getStableId()); - rows = pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticProfile.class, con, pstmt, rs); - } - - reCache(); - return rows; - } - - public static GeneticProfile getGeneticProfileByStableId(String stableId) { - return byStableId.get(stableId); - } - - public static GeneticProfile getGeneticProfileById(int geneticProfileId) { - return byInternalId.get(geneticProfileId); - } - - // TODO: UNIT TEST - public static ArrayList getGeneticProfiles (int[] geneticProfileIds) throws - DaoException { - ArrayList geneticProfileList = new ArrayList (); - for (int geneticProfileId: geneticProfileIds) { - GeneticProfile geneticProfile = - DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - if (geneticProfile != null) { - geneticProfileList.add(geneticProfile); - } else { - throw new IllegalArgumentException ("Could not find genetic profile for: " - + geneticProfileId); - } - } - return geneticProfileList; - } - - public static int getCount() { - return byStableId.size(); - } - - private static GeneticProfile extractGeneticProfile(ResultSet rs) throws SQLException { - GeneticProfile profileType = new GeneticProfile(); - profileType.setStableId(rs.getString("STABLE_ID")); - - profileType.setCancerStudyId(rs.getInt("CANCER_STUDY_ID")); - profileType.setProfileName(rs.getString("NAME")); - profileType.setProfileDescription(rs.getString("DESCRIPTION")); - try { - profileType.setShowProfileInAnalysisTab(rs.getBoolean("SHOW_PROFILE_IN_ANALYSIS_TAB")); - } catch (SQLException e) { - profileType.setShowProfileInAnalysisTab(true); - } - profileType.setGeneticAlterationType(GeneticAlterationType.valueOf(rs.getString("GENETIC_ALTERATION_TYPE"))); - profileType.setDatatype(rs.getString("DATATYPE")); - profileType.setGeneticProfileId(rs.getInt("GENETIC_PROFILE_ID")); - if (rs.getFloat("PIVOT_THRESHOLD") != 0) { - profileType.setPivotThreshold(rs.getFloat("PIVOT_THRESHOLD")); - } - if (rs.getString("SORT_ORDER") != null && ! rs.getString("SORT_ORDER").equals("") ) { - profileType.setSortOrder(rs.getString("SORT_ORDER")); - } - if (rs.getString("GENERIC_ASSAY_TYPE") != null && ! rs.getString("GENERIC_ASSAY_TYPE").equals("") ) { - profileType.setGenericAssayType(rs.getString("GENERIC_ASSAY_TYPE")); - } - profileType.setPatientLevel(rs.getBoolean("PATIENT_LEVEL")); - return profileType; - } - - public static ArrayList getAllGeneticProfiles(int cancerStudyId) { - List list = byStudy.get(cancerStudyId); - if (list==null) { - return new ArrayList(); - } - - // TODO: refactor the code to use List - return new ArrayList(list); - } - - public static void deleteAllRecords() throws DaoException { - byStableId.clear(); - byInternalId.clear(); - byStudy.clear(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticProfile.class); - JdbcUtil.disableForeignKeyCheck(con); - pstmt = con.prepareStatement("TRUNCATE TABLE genetic_profile"); - pstmt.executeUpdate(); - JdbcUtil.enableForeignKeyCheck(con); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticProfile.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticProfileLink.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticProfileLink.java deleted file mode 100644 index b81387e122e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticProfileLink.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Copyright (c) 2017 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author Sander Tan -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.*; -import org.mskcc.cbio.portal.model.*; - -public class DaoGeneticProfileLink { - - private DaoGeneticProfileLink() { - } - - /** - * Set genetic profile link in `genetic_profile_link` table in database. - * @throws DaoException - */ - public static void addGeneticProfileLink(GeneticProfileLink geneticProfileLink) throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - - try { - // Open connection to database - connection = JdbcUtil.getDbConnection(DaoGeneticProfileLink.class); - - // Prepare SQL statement - preparedStatement = connection.prepareStatement("INSERT INTO genetic_profile_link " - + "(REFERRING_GENETIC_PROFILE_ID, REFERRED_GENETIC_PROFILE_ID, REFERENCE_TYPE) VALUES(?,?,?)"); - - // Fill in statement - preparedStatement.setInt(1, geneticProfileLink.getReferringGeneticProfileId()); - preparedStatement.setInt(2, geneticProfileLink.getReferredGeneticProfileId()); - preparedStatement.setString(3, geneticProfileLink.getReferenceType()); - - // Execute statement - preparedStatement.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticProfileLink.class, connection, preparedStatement, resultSet); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticProfileSamples.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticProfileSamples.java deleted file mode 100644 index b8346957354..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticProfileSamples.java +++ /dev/null @@ -1,163 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.Sample; - -import java.sql.*; -import java.util.*; - -/** - * Data Access Objects for the Genetic Profile Samples Table. - * - * @author Ethan Cerami. - */ -public final class DaoGeneticProfileSamples -{ - private static final String DELIM = ","; - - private DaoGeneticProfileSamples() {} - - /** - * Adds a new Ordered Sample List for a Specified Genetic Profile ID. - * - * @param geneticProfileId Genetic Profile ID. - * @param orderedSampleList Array List of Sample IDs. - * @return number of rows added. - * @throws DaoException Data Access Exception. - */ - public static int addGeneticProfileSamples(int geneticProfileId, List orderedSampleList) - throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - StringBuffer orderedSampleListBuf = new StringBuffer(); - // Created Joined String, based on DELIM token - for (Integer sampleId : orderedSampleList) { - orderedSampleListBuf.append(Integer.toString(sampleId)).append(DELIM); - } - try { - con = JdbcUtil.getDbConnection(DaoGeneticProfileSamples.class); - pstmt = con.prepareStatement - ("INSERT INTO genetic_profile_samples (`GENETIC_PROFILE_ID`, " + - "`ORDERED_SAMPLE_LIST`) "+ "VALUES (?,?)"); - pstmt.setInt(1, geneticProfileId); - pstmt.setString(2, orderedSampleListBuf.toString()); - return pstmt.executeUpdate(); - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticProfileSamples.class, con, pstmt, rs); - } - } - - /** - * Deletes all samples associated with the specified Genetic Profile ID. - * - * @param geneticProfileId Genetic Profile ID. - * @throws DaoException Database Error. - */ - public static void deleteAllSamplesInGeneticProfile(int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticProfileSamples.class); - pstmt = con.prepareStatement("DELETE from " + - "genetic_profile_samples WHERE GENETIC_PROFILE_ID=?"); - pstmt.setLong(1, geneticProfileId); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticProfileSamples.class, con, pstmt, rs); - } - } - - /** - * Gets an Ordered Sample List for the specified Genetic Profile ID. - * - * @param geneticProfileId Genetic Profile ID. - * @throws DaoException Database Error. - */ - public static ArrayList getOrderedSampleList(int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticProfileSamples.class); - pstmt = con.prepareStatement - ("SELECT * FROM genetic_profile_samples WHERE GENETIC_PROFILE_ID = ?"); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - if (rs.next()) { - String orderedSampleList = rs.getString("ORDERED_SAMPLE_LIST"); - - // Split, based on DELIM token - String parts[] = orderedSampleList.split(DELIM); - ArrayList sampleList = new ArrayList (); - for (String internalSampleId : parts) { - sampleList.add(Integer.parseInt(internalSampleId)); - } - return sampleList; - } else { - return new ArrayList(); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticProfileSamples.class, con, pstmt, rs); - } - } - - /** - * Deletes all Records in the table. - * @throws DaoException Database Exception. - */ - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticProfileSamples.class); - pstmt = con.prepareStatement("TRUNCATE TABLE genetic_profile_samples"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticProfileSamples.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGistic.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGistic.java deleted file mode 100644 index 55254d47aaf..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoGistic.java +++ /dev/null @@ -1,410 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Gistic; -import org.mskcc.cbio.portal.validate.ValidateGistic; -import org.mskcc.cbio.portal.validate.validationException; - -import java.sql.Connection; -import java.sql.Statement; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -/** - * A gistic includes a ROI and GISTIC information concerning that region. - * - * @author Gideon Dresdner - */ - -public class DaoGistic { - /** - * Adds a ROI with Gistic info to the database - * - * @param gistic Gistic object - * @throws DaoException - */ - - private static final Logger log = LoggerFactory.getLogger(DaoGistic.class); - - public static void addGistic(Gistic gistic) throws DaoException, validationException { - if (gistic == null) { - throw new DaoException("Given a null gistic object"); - } - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - ValidateGistic.validateBean(gistic); - - try { - con = JdbcUtil.getDbConnection(DaoGistic.class); - // insert into SQL gistic table - pstmt = con.prepareStatement - ("INSERT INTO gistic (`CANCER_STUDY_ID`," + - "`CHROMOSOME`, " + - "`CYTOBAND`, " + - "`WIDE_PEAK_START`, " + - "`WIDE_PEAK_END`, " + - "`Q_VALUE`, " + - "`AMP`) " + - "VALUES (?,?,?,?,?,?,?)", - Statement.RETURN_GENERATED_KEYS); - - pstmt.setInt(1, gistic.getCancerStudyId()); - pstmt.setInt(2, gistic.getChromosome()) ; - pstmt.setString(3, gistic.getCytoband()); - pstmt.setInt(4, gistic.getPeakStart()); - pstmt.setInt(5, gistic.getPeakEnd()); - pstmt.setDouble(6, gistic.getqValue()); - pstmt.setBoolean(7, gistic.getAmp()); - pstmt.executeUpdate(); - - // insert into SQL gistic_to_gene table - rs = pstmt.getGeneratedKeys(); - if (rs.next()) { - int autoId = rs.getInt(1); - gistic.setInternalId(autoId); - } - addGisticGenes(gistic, con); - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGistic.class, con, pstmt, rs); - } - } - - /** - * Helper function for addGistic. Adds the genes in the ROI to the database (gistic_to_genes) - * @param gistic - * @throws SQLException - * @throws DaoException - */ - private static void addGisticGenes(Gistic gistic, Connection con) throws DaoException { - ArrayList genes = gistic.getGenes_in_ROI(); - PreparedStatement pstmt; - - try { - if (!genes.isEmpty()) { - for (CanonicalGene g : genes) { - - // EntrezId = -1 if it does not exist in the gene table - // if this is the case, we are going to simply skip over this gene - if (g.getEntrezGeneId() != -1) { - pstmt = con.prepareStatement - ("INSERT INTO gistic_to_gene (`GISTIC_ROI_ID`," + - "`ENTREZ_GENE_ID`)" + - "VALUES (?,?)"); - - pstmt.setInt(1, gistic.getInternalId()); - pstmt.setLong(2, g.getEntrezGeneId()); - - pstmt.executeUpdate(); - } - - else { - throw new DaoException("gene not found, skipping: " + g); - } - } - } else { - throw new DaoException("No genes associated with given gistic"); - } - - } catch (SQLException e) { - - if (log.isDebugEnabled()) { - log.debug(e + " : " + genes); - } - - throw new DaoException(e); - } - } - - /** - * - * Extracts Gistic JDBC Results. - * @param rs Result Set of a JDBC database query - * @return Gistic - * @throws SQLException - * @throws DaoException - */ - private static Gistic extractGistic(Connection con, ResultSet rs) throws DaoException { - - // get the genes from the SQL gistic_to_gene table - // associated with a particular GISTIC_ROI_ID - PreparedStatement pstmt ; - ResultSet _rs = null; - Gistic gistic; - ArrayList genes = new ArrayList(); - - try { - - int id = rs.getInt("GISTIC_ROI_ID"); - - pstmt = con.prepareStatement("SELECT * FROM gistic_to_gene WHERE GISTIC_ROI_ID = ?"); - pstmt.setInt(1, id); - - _rs = pstmt.executeQuery(); - - while ( _rs.next() ) { - long entrez = _rs.getLong("ENTREZ_GENE_ID"); - CanonicalGene gene = DaoGeneOptimized.getInstance().getGene(entrez); - genes.add(gene); - } - - // create gistic return object - gistic = new Gistic(rs.getInt("CANCER_STUDY_ID"), - rs.getInt("CHROMOSOME") , - rs.getString("CYTOBAND") , - rs.getInt("WIDE_PEAK_START"), - rs.getInt("WIDE_PEAK_END"), - rs.getFloat("Q_VALUE") , - genes, - rs.getBoolean("AMP")); - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(_rs); - } - - return gistic; - } - - /** - * Given an ROI, returns associated Gistic objects. - * Right now, perhaps this is useless, but maybe something for the future? - * @param chromosome - * @param peakStart - * @param peakEnd - * @return - * @throws DaoException - */ - public static ArrayList getGisticByROI(int chromosome, int peakStart, int peakEnd) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGistic.class); - pstmt = con.prepareStatement("SELECT * FROM gistic WHERE CHROMOSOME = ? " + - "AND WIDE_PEAK_START = ? " + - "AND WIDE_PEAK_END = ?"); - - pstmt.setInt(1, chromosome); - pstmt.setInt(2, peakStart); - pstmt.setInt(3, peakEnd); - - rs = pstmt.executeQuery(); - ArrayList list = new ArrayList(); - - while( rs.next() ) { - Gistic gistic = extractGistic(con, rs); - list.add(gistic); - } - return list; - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGistic.class, con, pstmt, rs); - } - } - - /** - * Returns a list of all Gistic objects associated with a particular CancerStudy - * @param cancerStudyId CancerStudyId (of a database record) - * @return - */ - public static ArrayList getAllGisticByCancerStudyId(int cancerStudyId) throws DaoException { - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGistic.class); - pstmt = con.prepareStatement("SELECT * FROM gistic WHERE CANCER_STUDY_ID = ? "); - pstmt.setInt(1, cancerStudyId); - - rs = pstmt.executeQuery(); - ArrayList list = new ArrayList(); - - while( rs.next() ) { - Gistic gistic = extractGistic(con, rs); - list.add(gistic); - } - return list; - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGistic.class, con, pstmt, rs); - } - } - - /** - * Returns the number of rows in the gistic database table - * @param cancerStudy cancerStudyId - * @return no. of gistics - * @throws DaoException - */ - public static int countGistic(int cancerStudy) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGistic.class); - pstmt = con.prepareStatement - ("SELECT count(*) FROM gistic WHERE CANCER_STUDY_ID = ?"); - pstmt.setInt(1, cancerStudy); - rs = pstmt.executeQuery(); - - if (rs.next()) { - return rs.getInt(1); - } - - return 0; - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGistic.class, con, pstmt, rs); - } - } - - /** - * Deletes all Gistic records in the database (including gistic and gistic_to_gene tables) - * @throws DaoException - */ - - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGistic.class); - - pstmt = con.prepareStatement("TRUNCATE TABLE gistic_to_gene"); - pstmt.executeUpdate(); - - pstmt = con.prepareStatement("TRUNCATE TABLE gistic"); - pstmt.executeUpdate(); - - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGistic.class, con, pstmt, rs); - } - } - - /** - * Deletes a particular Gistic record in the database (including corresponding gistic_to_gene records) - * @param gisticInternalId - * @throws DaoException - */ - - public static void deleteGistic(int gisticInternalId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGistic.class); - - pstmt = con.prepareStatement("DELETE from gistic_to_gene WHERE GISTIC_ROI_ID=?"); - pstmt.setInt(1, gisticInternalId); - pstmt.executeUpdate(); - - pstmt = con.prepareStatement("DELETE from gistic WHERE GISTIC_ROI_ID=?"); - pstmt.setInt(1, gisticInternalId); - pstmt.executeUpdate(); - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGistic.class, con, pstmt, rs); - } - } - - /** - * Asks whether the gistic database table is empty. - * @param cancerStudy - * @return True is there are gistics for cancerStudy, false if there are not. - * @throws DaoException - */ - public static boolean hasGistic(CancerStudy cancerStudy) throws DaoException { - return !(countGistic(cancerStudy.getInternalId()) == 0); - } - - /** - * Returns all gistics in the database - * @return ArrayList of gistics - * @throws DaoException - */ - public static ArrayList getAllGistic() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoGistic.class); - pstmt = con.prepareStatement("SELECT * FROM gistic"); - - rs = pstmt.executeQuery(); - ArrayList list = new ArrayList(); - - while( rs.next() ) { - Gistic gistic = extractGistic(con, rs); - list.add(gistic); - } - return list; - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGistic.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoInfo.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoInfo.java deleted file mode 100644 index b8482b4354c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoInfo.java +++ /dev/null @@ -1,168 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.lang.StringBuilder; -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; - -import org.mskcc.cbio.portal.util.GlobalProperties; - -public class DaoInfo { - private static String version; - - /** - * Set database schema version in `info` table in database. - * @throws DaoException - */ - public static synchronized void setVersion() { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - version = "-1"; - try { - con = JdbcUtil.getDbConnection(DaoInfo.class); - pstmt = con.prepareStatement - ("SELECT * FROM info"); - rs = pstmt.executeQuery(); - if (rs.next()) { - version = rs.getString("DB_SCHEMA_VERSION"); - } - } catch (SQLException e) { - e.printStackTrace(); - } finally { - JdbcUtil.closeAll(DaoInfo.class, con, pstmt, rs); - } - } - - /** - * Get database schema version in `info` table in database. - * @throws DaoException - */ - public static String getVersion() { - return version; - } - - /** - * Check database schema version in `info` table in database. - * @throws DaoException - */ - public static boolean checkVersion(StringBuilder logMessageBuilder) { - setVersion(); - String expectedVersion = GlobalProperties.getDbVersion(); - String foundVersion = getVersion(); - logMessageBuilder.append("Checked DB schema version: (expected: " + expectedVersion + ") (found: " + foundVersion +")"); - return foundVersion.equals(expectedVersion); - } - - /** - * Set gene set version in `info` table in database. - * @throws DaoException - */ - public static void setGenesetVersion(String genesetVersion) throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - try { - // Open connection to database - connection = JdbcUtil.getDbConnection(DaoInfo.class); - - // Prepare SQL statement - preparedStatement = connection.prepareStatement("UPDATE info set GENESET_VERSION = ?"); - - preparedStatement.setString(1, genesetVersion); - // Execute statement - preparedStatement.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoInfo.class, connection, preparedStatement, resultSet); - } - } - - /** - * Get gene set version from `info` table in database. - * @throws DaoException - */ - public static String getGenesetVersion() throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - try { - // Open connection to database - connection = JdbcUtil.getDbConnection(DaoInfo.class); - - // Prepare SQL statement - preparedStatement = connection.prepareStatement( - "SELECT * FROM info"); - - // Execute statement - resultSet = preparedStatement.executeQuery(); - String genesetVersion = new String(); - - // Extract version from result - if (resultSet.next()) { - genesetVersion = resultSet.getString("GENESET_VERSION"); - } - return genesetVersion; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoInfo.class, connection, preparedStatement, resultSet); - } - } - - /** - * Clears (resets to NULL) the gene set version in `info` table in database. - * @throws DaoException - */ - public static void clearVersion() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoInfo.class); - - pstmt = con.prepareStatement("UPDATE info set GENESET_VERSION = NULL"); - pstmt.executeUpdate(); - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoInfo.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoMutSig.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoMutSig.java deleted file mode 100644 index 4a1c740d047..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoMutSig.java +++ /dev/null @@ -1,299 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.MutSig; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; - -/** - * - * @author Lennart Bastian, Gideon Dresdner - * DaoMutSig defines methods that interact with the CGDS database - * getMutSig methods return MutSig objects. addMutSig takes a MutSig object and adds it to CGDS - * getAllMutSig returns an arraylist - * - */ - -public class DaoMutSig { - - private DaoMutSig() { - } - - /* - * Adds a new MutSig Record to the Database. - * - * @param mutSig Mut Sig Object. - * @return number of records successfully added. - * @throws DaoException Database Error. - */ - - public static int addMutSig(MutSig mutSig) throws DaoException { - - CanonicalGene gene = mutSig.getCanonicalGene(); - - if (MySQLbulkLoader.isBulkLoad()) { - // write to the temp file maintained by the MySQLbulkLoader - MySQLbulkLoader.getMySQLbulkLoader("mut_sig").insertRecord(Integer.toString(mutSig.getCancerType()), - Long.toString(gene.getEntrezGeneId()), - Integer.toString(mutSig.getRank()), - Integer.toString(mutSig.getNumBasesCovered()), - Integer.toString(mutSig.getNumMutations()), - Float.toString(mutSig.getpValue()), - Float.toString(mutSig.getqValue())); - - // return 1 because normal insert will return 1 if no error occurs - return 1; - } - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - if (mutSig != null) { - con = JdbcUtil.getDbConnection(DaoMutSig.class); - - pstmt = con.prepareStatement - ("INSERT INTO mut_sig (`CANCER_STUDY_ID`," + - "`ENTREZ_GENE_ID`, " + - "`RANK`, " + - "`NumBasesCovered`, " + - "`NumMutations`, " + - "`P_Value`, " + - "`Q_Value`) " + - "VALUES (?,?,?,?,?,?,?)"); - - pstmt.setInt(1, mutSig.getCancerType()); - pstmt.setLong(2,gene.getEntrezGeneId()); - pstmt.setInt(3,mutSig.getRank()); - pstmt.setInt(4,mutSig.getNumBasesCovered()); - pstmt.setInt(5,mutSig.getNumMutations()); - pstmt.setFloat(6, mutSig.getpValue()); - pstmt.setFloat(7, mutSig.getqValue()); - - - return pstmt.executeUpdate(); - } - - else { - return 0; - } - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutSig.class, con, pstmt, rs); - } - } - - public static MutSig getMutSig(String hugoGeneSymbol, int cancerStudy) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - //get a new DaoGene Object, and get the EntrezGeneID - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - CanonicalGene gene = daoGene.getGene(hugoGeneSymbol); - - if (gene == null) { - throw new java.lang.IllegalArgumentException("This HugoGeneSymbol does not exist in Database: " + hugoGeneSymbol); - } else { - long entrezGeneID = gene.getEntrezGeneId(); - try { - con = JdbcUtil.getDbConnection(DaoMutSig.class); - pstmt = con.prepareStatement - ("SELECT * FROM mut_sig WHERE ENTREZ_GENE_ID = ? AND CANCER_STUDY_ID = ?"); - pstmt.setLong(1, entrezGeneID); - pstmt.setInt(2, cancerStudy); - rs = pstmt.executeQuery(); - if (rs.next()) { - return DaoMutSig.assignMutSig(gene, rs); - } else { - return null; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutSig.class, con, pstmt, rs); - } - } - } - - public static MutSig getMutSig(Long entrezGeneID, int cancerStudy) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - try { - con = JdbcUtil.getDbConnection(DaoMutSig.class); - pstmt = con.prepareStatement - ("SELECT * FROM mut_sig WHERE ENTREZ_GENE_ID = ? AND CANCER_STUDY_ID = ?"); - pstmt.setLong(1, entrezGeneID); - pstmt.setInt(2, cancerStudy); - rs = pstmt.executeQuery(); - if (rs.next()) { - //first go into gene database, and make a Canonical Gene Object with - CanonicalGene gene = daoGene.getGene(rs.getLong("ENTREZ_GENE_ID")); - return DaoMutSig.assignMutSig(gene, rs); - } else { - return null; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutSig.class, con, pstmt, rs); - } - } - - public static ArrayList getAllMutSig(int cancerStudy) throws DaoException { - ArrayList mutSigList = new ArrayList(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - try { - con = JdbcUtil.getDbConnection(DaoMutSig.class); - pstmt = con.prepareStatement - ("SELECT * FROM mut_sig WHERE CANCER_STUDY_ID = ?"); - pstmt.setInt(1, cancerStudy); - rs = pstmt.executeQuery(); - - while (rs.next()) { - CanonicalGene gene = daoGene.getGene(rs.getLong("ENTREZ_GENE_ID")); - MutSig mutSig = DaoMutSig.assignMutSig(gene, rs); - mutSigList.add(mutSig); - } - - return mutSigList; - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutSig.class, con, pstmt, rs); - } - } - - public static int countMutSig(int cancerStudy) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoMutSig.class); - pstmt = con.prepareStatement - ("SELECT count(*) FROM mut_sig WHERE CANCER_STUDY_ID = ?"); - pstmt.setInt(1, cancerStudy); - rs = pstmt.executeQuery(); - - if (rs.next()) { - return rs.getInt(1); - } - - return 0; - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutSig.class, con, pstmt, rs); - } - } - - public static ArrayList getAllMutSig(int cancerStudy, double qValueThreshold) throws DaoException { - ArrayList mutSigList = new ArrayList(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - try { - con = JdbcUtil.getDbConnection(DaoMutSig.class); - pstmt = con.prepareStatement - ("SELECT * FROM mut_sig WHERE CANCER_STUDY_ID = ? AND Q_Value < ?"); - pstmt.setInt(1, cancerStudy); - pstmt.setDouble(2,qValueThreshold); - rs = pstmt.executeQuery(); - while (rs.next()) { - CanonicalGene gene = daoGene.getGene(rs.getLong("ENTREZ_GENE_ID")); - MutSig mutSig = DaoMutSig.assignMutSig(gene, rs); - mutSigList.add(mutSig); - } - return mutSigList; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutSig.class, con, pstmt, rs); - } - } - - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutSig.class); - pstmt = con.prepareStatement("TRUNCATE TABLE mut_sig"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutSig.class, con, pstmt, rs); - } - } - - private static MutSig assignMutSig(CanonicalGene gene, ResultSet rs) - throws SQLException, DaoException { - - return new MutSig(rs.getInt("CANCER_STUDY_ID"), - gene, - rs.getInt("RANK"), - rs.getInt("NumBasesCovered"), - rs.getInt("numMutations"), - rs.getFloat("P_Value"), - rs.getFloat("Q_Value")); - } - - /** - * asks the database whether or not there are mutsigs for a given cancer study - * @param cancerStudy - * @return true or false - * - */ - public static boolean hasMutsig(CancerStudy cancerStudy) throws DaoException { - return countMutSig(cancerStudy.getInternalId()) == 0; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoMutation.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoMutation.java deleted file mode 100644 index 8adbdaddb3f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoMutation.java +++ /dev/null @@ -1,1678 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.apache.commons.collections4.MapIterator; -import org.apache.commons.collections4.keyvalue.MultiKey; -import org.apache.commons.collections4.map.MultiKeyMap; -import org.apache.commons.lang3.StringUtils; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.ClinicalAttribute; -import org.mskcc.cbio.portal.model.ExtendedMutation; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.GeneticProfile; -import org.mskcc.cbio.portal.model.Sample; -import org.mskcc.cbio.portal.util.MutationKeywordUtils; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -/** - * Data access object for Mutation table - */ -public final class DaoMutation { - public static final String NAN = "NaN"; - private static final String MUTATION_COUNT_ATTR_ID = "MUTATION_COUNT"; - - public static int addMutation(ExtendedMutation mutation, boolean newMutationEvent) throws DaoException { - if (!MySQLbulkLoader.isBulkLoad()) { - throw new DaoException("You have to turn on MySQLbulkLoader in order to insert mutations"); - } else { - int result = 1; - if (newMutationEvent) { - //add event first, as mutation has a Foreign key constraint to the event: - result = addMutationEvent(mutation.getEvent())+1; - } - - if ((mutation.getDriverFilter() != null - && !mutation.getDriverFilter().isEmpty() - && !mutation.getDriverFilter().toLowerCase().equals("na")) - || - (mutation.getDriverTiersFilter() != null - && !mutation.getDriverTiersFilter().isEmpty() - && !mutation.getDriverTiersFilter().toLowerCase().equals("na"))) { - MySQLbulkLoader.getMySQLbulkLoader("alteration_driver_annotation").insertRecord( - Long.toString(mutation.getMutationEventId()), - Integer.toString(mutation.getGeneticProfileId()), - Integer.toString(mutation.getSampleId()), - mutation.getDriverFilter(), - mutation.getDriverFilterAnn(), - mutation.getDriverTiersFilter(), - mutation.getDriverTiersFilterAnn() - ); - } - - MySQLbulkLoader.getMySQLbulkLoader("mutation").insertRecord( - Long.toString(mutation.getMutationEventId()), - Integer.toString(mutation.getGeneticProfileId()), - Integer.toString(mutation.getSampleId()), - Long.toString(mutation.getGene().getEntrezGeneId()), - mutation.getSequencingCenter(), - mutation.getSequencer(), - mutation.getMutationStatus(), - mutation.getValidationStatus(), - mutation.getTumorSeqAllele1(), - mutation.getTumorSeqAllele2(), - mutation.getMatchedNormSampleBarcode(), - mutation.getMatchNormSeqAllele1(), - mutation.getMatchNormSeqAllele2(), - mutation.getTumorValidationAllele1(), - mutation.getTumorValidationAllele2(), - mutation.getMatchNormValidationAllele1(), - mutation.getMatchNormValidationAllele2(), - mutation.getVerificationStatus(), - mutation.getSequencingPhase(), - mutation.getSequenceSource(), - mutation.getValidationMethod(), - mutation.getScore(), - mutation.getBamFile(), - (mutation.getTumorAltCount() == null) ? null : Integer.toString(mutation.getTumorAltCount()), - (mutation.getTumorRefCount() == null) ? null : Integer.toString(mutation.getTumorRefCount()), - (mutation.getNormalAltCount() == null) ? null : Integer.toString(mutation.getNormalAltCount()), - (mutation.getNormalRefCount() == null) ? null : Integer.toString(mutation.getNormalRefCount()), - //AminoAcidChange column is not used - null, - mutation.getAnnotationJson()); - return result; - } - } - - public static int addMutationEvent(ExtendedMutation.MutationEvent event) throws DaoException { - // use this code if bulk loading - // write to the temp file maintained by the MySQLbulkLoader - String keyword = MutationKeywordUtils.guessOncotatorMutationKeyword(event.getProteinChange(), event.getMutationType()); - MySQLbulkLoader.getMySQLbulkLoader("mutation_event").insertRecord( - Long.toString(event.getMutationEventId()), - Long.toString(event.getGene().getEntrezGeneId()), - event.getChr(), - Long.toString(event.getStartPosition()), - Long.toString(event.getEndPosition()), - event.getReferenceAllele(), - event.getTumorSeqAllele(), - event.getProteinChange(), - event.getMutationType(), - event.getNcbiBuild(), - event.getStrand(), - event.getVariantType(), - event.getDbSnpRs(), - event.getDbSnpValStatus(), - event.getRefseqMrnaId(), - event.getCodonChange(), - event.getUniprotAccession(), - Integer.toString(event.getProteinPosStart()), - Integer.toString(event.getProteinPosEnd()), - boolToStr(event.isCanonicalTranscript()), - keyword==null ? "\\N":(event.getGene().getHugoGeneSymbolAllCaps()+" "+keyword)); - return 1; - } - - public static void createMutationCountClinicalData(GeneticProfile geneticProfile) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - // add mutation count meta attribute if it does not exist - ClinicalAttribute clinicalAttribute = DaoClinicalAttributeMeta.getDatum(MUTATION_COUNT_ATTR_ID, geneticProfile.getCancerStudyId()); - if (clinicalAttribute == null) { - ClinicalAttribute attr = new ClinicalAttribute(MUTATION_COUNT_ATTR_ID, "Mutation Count", "Mutation Count", "NUMBER", - false, "30", geneticProfile.getCancerStudyId()); - DaoClinicalAttributeMeta.addDatum(attr); - } - - /* - * Add MUTATION_COUNT for each sample by checking number of - * mutations for the given genetic profile. - * - * We do not add the MUTATION_COUNT clinical data for the sample if - * it's not profiled. If it *is* profiled but there are 0 - * mutations, add a MUTATION_COUNT with 0 value record. Do not - * include germline when counting mutations. - * - * Use REPLACE (conditional INSERT/UPDATE) which inserts - * new counts if they don't exist and overwrites them if they do. - * This is necessary for when the mutation data is split over - * multiple files with same profile id. Note that since - * clinical_sample has a key contraint on INTERNAL_ID and ATTR_ID, - * there can only be one MUTATION_COUNT record for each sample, so - * we assume each sample is in only one MUTATION_EXTENDED profile. - */ - pstmt = con.prepareStatement( - "REPLACE `clinical_sample` " + - "SELECT sample_profile.`SAMPLE_ID`, 'MUTATION_COUNT', COUNT(DISTINCT mutation_event.`CHR`, mutation_event.`START_POSITION`, " + - "mutation_event.`END_POSITION`, mutation_event.`REFERENCE_ALLELE`, mutation_event.`TUMOR_SEQ_ALLELE`) AS MUTATION_COUNT " + - "FROM `sample_profile` " + - "LEFT JOIN mutation ON mutation.`SAMPLE_ID` = sample_profile.`SAMPLE_ID` " + - "AND ( mutation.`MUTATION_STATUS` <> 'GERMLINE' OR mutation.`MUTATION_STATUS` IS NULL ) " + - "LEFT JOIN mutation_event ON mutation.`MUTATION_EVENT_ID` = mutation_event.`MUTATION_EVENT_ID` " + - "INNER JOIN genetic_profile ON genetic_profile.`GENETIC_PROFILE_ID` = sample_profile.`GENETIC_PROFILE_ID` " + - "WHERE genetic_profile.`GENETIC_ALTERATION_TYPE` = 'MUTATION_EXTENDED' " + - "AND genetic_profile.`GENETIC_PROFILE_ID`=? " + - "GROUP BY sample_profile.`GENETIC_PROFILE_ID` , sample_profile.`SAMPLE_ID`;"); - pstmt.setInt(1, geneticProfile.getGeneticProfileId()); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - public static void calculateMutationCountByKeyword(int geneticProfileId) throws DaoException { - if (!MySQLbulkLoader.isBulkLoad()) { - throw new DaoException("You have to turn on MySQLbulkLoader in order to update mutation counts by keyword"); - } else { - MultiKeyMap mutationEventKeywordCountMap = getMutationEventKeywordCountByGeneticProfileId(geneticProfileId); // mutation event keyword -> entrez id -> keyword count - Map geneCountMap = getGeneCountByGeneticProfileId(geneticProfileId); // entrez id -> gene count - MapIterator it = mutationEventKeywordCountMap.mapIterator(); - while (it.hasNext()) { - it.next(); - MultiKey mk = (MultiKey) it.getKey(); - String mutationEventKeyword = String.valueOf(mk.getKey(0)); - Long entrezGeneId = Long.valueOf(mk.getKey(1).toString()); - String keywordCount = it.getValue().toString(); - Integer geneCount = geneCountMap.get(entrezGeneId); - MySQLbulkLoader.getMySQLbulkLoader("mutation_count_by_keyword").insertRecord( - Integer.toString(geneticProfileId), - mutationEventKeyword, - Long.toString(entrezGeneId), - keywordCount, - Integer.toString(geneCount) - ); - } - } - } - - public static MultiKeyMap getMutationEventKeywordCountByGeneticProfileId(int geneticProfileId) throws DaoException { - MultiKeyMap mutationEventKeywordCountByGeneticProfileId = new MultiKeyMap(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT mutation_event.`KEYWORD`, mutation_event.`ENTREZ_GENE_ID`, IF(mutation_event.`KEYWORD` IS NULL, 0, COUNT(DISTINCT(mutation.SAMPLE_ID))) AS KEYWORD_COUNT " + - "FROM mutation_event JOIN mutation on mutation.`MUTATION_EVENT_ID` = mutation_event.`MUTATION_EVENT_ID` " + - "WHERE mutation.`GENETIC_PROFILE_ID` = ? " + - "GROUP BY mutation_event.`KEYWORD`, mutation_event.`ENTREZ_GENE_ID`;" - ); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - while (rs.next()) { - mutationEventKeywordCountByGeneticProfileId.put(rs.getString(1), rs.getLong(2), rs.getInt(3)); - } - return mutationEventKeywordCountByGeneticProfileId; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - public static Map getGeneCountByGeneticProfileId(int geneticProfileId) throws DaoException { - Map geneCountByGeneticProfileId = new HashMap<>(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT ENTREZ_GENE_ID AS `ENTREZ_GENE_ID`, COUNT(DISTINCT(SAMPLE_ID)) AS `GENE_COUNT`" + - " FROM mutation WHERE GENETIC_PROFILE_ID = ? " + - "GROUP BY ENTREZ_GENE_ID;"); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - while (rs.next()) { - geneCountByGeneticProfileId.put(rs.getLong("ENTREZ_GENE_ID"), rs.getInt("GENE_COUNT")); - } - return geneCountByGeneticProfileId; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * Used by GeneticAlterationUtil (which is used by GetProfileData via webservice.do). This use comes out of an - * effort to discontinue the use of the business module. - */ - public static ArrayList getMutations (int geneticProfileId, Collection targetSampleList, - long entrezGeneId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - ArrayList mutationList = new ArrayList (); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT * FROM mutation " + - "INNER JOIN mutation_event ON mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "WHERE SAMPLE_ID IN ('" + org.apache.commons.lang3.StringUtils.join(targetSampleList, "','") + - "') AND GENETIC_PROFILE_ID = ? AND mutation.ENTREZ_GENE_ID = ?"); - pstmt.setInt(1, geneticProfileId); - pstmt.setLong(2, entrezGeneId); - rs = pstmt.executeQuery(); - while (rs.next()) { - ExtendedMutation mutation = extractMutation(rs); - mutationList.add(mutation); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return mutationList; - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static HashMap getSimplifiedMutations (int geneticProfileId, Collection targetSampleList, - Collection entrezGeneIds) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - HashMap hm = new HashMap(); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT SAMPLE_ID, ENTREZ_GENE_ID FROM mutation " + - //"INNER JOIN mutation_event ON mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "WHERE SAMPLE_ID IN ('" + - org.apache.commons.lang3.StringUtils.join(targetSampleList, "','") + - "') AND GENETIC_PROFILE_ID = ? AND mutation.ENTREZ_GENE_ID IN ('" + - org.apache.commons.lang3.StringUtils.join(entrezGeneIds, "','") + "')"); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - while (rs.next()) { - String tmpStr = new StringBuilder().append(Integer.toString(rs.getInt("SAMPLE_ID"))).append(Integer.toString(rs.getInt("ENTREZ_GENE_ID"))).toString(); - hm.put(tmpStr, ""); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return hm; - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static ArrayList getMutations (int geneticProfileId, int sampleId, - long entrezGeneId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - ArrayList mutationList = new ArrayList (); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT * FROM mutation " + - "INNER JOIN mutation_event ON mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "WHERE SAMPLE_ID = ? AND GENETIC_PROFILE_ID = ? AND mutation.ENTREZ_GENE_ID = ?"); - pstmt.setInt(1, sampleId); - pstmt.setInt(2, geneticProfileId); - pstmt.setLong(3, entrezGeneId); - rs = pstmt.executeQuery(); - while (rs.next()) { - ExtendedMutation mutation = extractMutation(rs); - mutationList.add(mutation); - } - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return mutationList; - } - - /** - * Gets all Genes in a Specific Genetic Profile. - * - * @param geneticProfileId Genetic Profile ID. - * @return Set of Canonical Genes. - * @throws DaoException Database Error. - */ - public static Set getGenesInProfile(int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - Set geneSet = new HashSet(); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT DISTINCT ENTREZ_GENE_ID FROM mutation WHERE GENETIC_PROFILE_ID = ?"); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - while (rs.next()) { - geneSet.add(daoGene.getGene(rs.getLong("ENTREZ_GENE_ID"))); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return geneSet; - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static ArrayList getMutations (long entrezGeneId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - ArrayList mutationList = new ArrayList (); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT * FROM mutation " + - "INNER JOIN mutation_event ON mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "WHERE mutation.ENTREZ_GENE_ID = ?"); - pstmt.setLong(1, entrezGeneId); - rs = pstmt.executeQuery(); - while (rs.next()) { - ExtendedMutation mutation = extractMutation(rs); - mutationList.add(mutation); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return mutationList; - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static ArrayList getMutations (long entrezGeneId, String aminoAcidChange) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - ArrayList mutationList = new ArrayList (); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT * FROM mutation_event " + - "INNER JOIN mutation ON mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "WHERE mutation.ENTREZ_GENE_ID = ? AND PROTEIN_CHANGE = ?"); - pstmt.setLong(1, entrezGeneId); - pstmt.setString(2, aminoAcidChange); - rs = pstmt.executeQuery(); - while (rs.next()) { - ExtendedMutation mutation = extractMutation(rs); - mutationList.add(mutation); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return mutationList; - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static ArrayList getMutations (int geneticProfileId, int sampleId) throws DaoException { - return getMutations(geneticProfileId, Arrays.asList(Integer.valueOf(sampleId))); - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static ArrayList getMutations (int geneticProfileId, List sampleIds) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - ArrayList mutationList = new ArrayList (); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT * FROM mutation " + - "INNER JOIN mutation_event ON mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "WHERE GENETIC_PROFILE_ID = ? AND SAMPLE_ID in ('"+ StringUtils.join(sampleIds, "','")+"')"); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - while (rs.next()) { - ExtendedMutation mutation = extractMutation(rs); - mutationList.add(mutation); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return mutationList; - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static boolean hasAlleleFrequencyData (int geneticProfileId, int sampleId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT EXISTS (SELECT 1 FROM mutation " + - "WHERE GENETIC_PROFILE_ID = ? AND SAMPLE_ID = ? AND TUMOR_ALT_COUNT>=0 AND TUMOR_REF_COUNT>=0)"); - pstmt.setInt(1, geneticProfileId); - pstmt.setInt(2, sampleId); - rs = pstmt.executeQuery(); - return rs.next() && rs.getInt(1)==1; - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static ArrayList getMutations (long entrezGeneId, String aminoAcidChange, int excludeSampleId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - ArrayList mutationList = new ArrayList (); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT * FROM mutation, mutation_event " + - "WHERE mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "AND mutation.ENTREZ_GENE_ID = ? AND PROTEIN_CHANGE = ? AND SAMPLE_ID <> ?"); - pstmt.setLong(1, entrezGeneId); - pstmt.setString(2, aminoAcidChange); - pstmt.setInt(3, excludeSampleId); - rs = pstmt.executeQuery(); - while (rs.next()) { - ExtendedMutation mutation = extractMutation(rs); - mutationList.add(mutation); - } - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return mutationList; - } - - /** - * Used by GetMutationData via webservice.do. This use comes out of an effort to - * discontinue the use of the business module. - */ - public static ArrayList getMutations (int geneticProfileId, - long entrezGeneId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - ArrayList mutationList = new ArrayList (); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT * FROM mutation " + - "INNER JOIN mutation_event ON mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "WHERE GENETIC_PROFILE_ID = ? AND mutation.ENTREZ_GENE_ID = ?"); - pstmt.setInt(1, geneticProfileId); - pstmt.setLong(2, entrezGeneId); - rs = pstmt.executeQuery(); - while (rs.next()) { - ExtendedMutation mutation = extractMutation(rs); - mutationList.add(mutation); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return mutationList; - } - - public static ArrayList getAllMutations () throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - ArrayList mutationList = new ArrayList (); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT * FROM mutation " + - "INNER JOIN mutation_event ON mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID"); - rs = pstmt.executeQuery(); - while (rs.next()) { - ExtendedMutation mutation = extractMutation(rs); - mutationList.add(mutation); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return mutationList; - } - - /** - * Similar to getAllMutations(), but filtered by a passed geneticProfileId - * @param geneticProfileId - * @return - * @throws DaoException - * - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static ArrayList getAllMutations (int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - ArrayList mutationList = new ArrayList (); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT * FROM mutation " + - "INNER JOIN mutation_event ON mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "WHERE mutation.GENETIC_PROFILE_ID = ?"); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - while (rs.next()) { - ExtendedMutation mutation = extractMutation(rs); - mutationList.add(mutation); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return mutationList; - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Set getAllMutationEvents() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - Set events = new HashSet(); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement("SELECT * FROM mutation_event"); - rs = pstmt.executeQuery(); - while (rs.next()) { - ExtendedMutation.MutationEvent event = extractMutationEvent(rs); - events.add(event); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - return events; - } - - /* - * Returns an existing MutationEvent record from the database or null. - */ - public static ExtendedMutation.MutationEvent getMutationEvent(ExtendedMutation.MutationEvent event) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement("SELECT * from mutation_event WHERE" + - " `ENTREZ_GENE_ID`=?" + - " AND `CHR`=?" + - " AND `START_POSITION`=?" + - " AND `END_POSITION`=?" + - " AND `TUMOR_SEQ_ALLELE`=?" + - " AND `PROTEIN_CHANGE`=?" + - " AND `MUTATION_TYPE`=?"); - pstmt.setLong(1, event.getGene().getEntrezGeneId()); - pstmt.setString(2, event.getChr()); - pstmt.setLong(3, event.getStartPosition()); - pstmt.setLong(4, event.getEndPosition()); - pstmt.setString(5, event.getTumorSeqAllele()); - pstmt.setString(6, event.getProteinChange()); - pstmt.setString(7, event.getMutationType()); - rs = pstmt.executeQuery(); - if (rs.next()) { - return extractMutationEvent(rs); - } - else { - return null; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - public static long getLargestMutationEventId() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement("SELECT MAX(`MUTATION_EVENT_ID`) FROM `mutation_event`"); - rs = pstmt.executeQuery(); - return rs.next() ? rs.getLong(1) : 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - private static ExtendedMutation extractMutation(ResultSet rs) throws SQLException, DaoException { - try { - ExtendedMutation mutation = new ExtendedMutation(extractMutationEvent(rs)); - mutation.setGeneticProfileId(rs.getInt("GENETIC_PROFILE_ID")); - mutation.setSampleId(rs.getInt("SAMPLE_ID")); - mutation.setSequencingCenter(rs.getString("CENTER")); - mutation.setSequencer(rs.getString("SEQUENCER")); - mutation.setMutationStatus(rs.getString("MUTATION_STATUS")); - mutation.setValidationStatus(rs.getString("VALIDATION_STATUS")); - mutation.setTumorSeqAllele1(rs.getString("TUMOR_SEQ_ALLELE1")); - mutation.setTumorSeqAllele2(rs.getString("TUMOR_SEQ_ALLELE2")); - mutation.setMatchedNormSampleBarcode(rs.getString("MATCHED_NORM_SAMPLE_BARCODE")); - mutation.setMatchNormSeqAllele1(rs.getString("MATCH_NORM_SEQ_ALLELE1")); - mutation.setMatchNormSeqAllele2(rs.getString("MATCH_NORM_SEQ_ALLELE2")); - mutation.setTumorValidationAllele1(rs.getString("TUMOR_VALIDATION_ALLELE1")); - mutation.setTumorValidationAllele2(rs.getString("TUMOR_VALIDATION_ALLELE2")); - mutation.setMatchNormValidationAllele1(rs.getString("MATCH_NORM_VALIDATION_ALLELE1")); - mutation.setMatchNormValidationAllele2(rs.getString("MATCH_NORM_VALIDATION_ALLELE2")); - mutation.setVerificationStatus(rs.getString("VERIFICATION_STATUS")); - mutation.setSequencingPhase(rs.getString("SEQUENCING_PHASE")); - mutation.setSequenceSource(rs.getString("SEQUENCE_SOURCE")); - mutation.setValidationMethod(rs.getString("VALIDATION_METHOD")); - mutation.setScore(rs.getString("SCORE")); - mutation.setBamFile(rs.getString("BAM_FILE")); - // the following checks/set of null is to maintain - // behavior with MutationRepositoryLegacy (mybatis) behavior - // whose use is being retired in this PR - mutation.setTumorAltCount(rs.getInt("TUMOR_ALT_COUNT")); - if (rs.wasNull()) mutation.setTumorAltCount(null); - mutation.setTumorRefCount(rs.getInt("TUMOR_REF_COUNT")); - if (rs.wasNull()) mutation.setTumorRefCount(null); - mutation.setNormalAltCount(rs.getInt("NORMAL_ALT_COUNT")); - if (rs.wasNull()) mutation.setNormalAltCount(null); - mutation.setNormalRefCount(rs.getInt("NORMAL_REF_COUNT")); - if (rs.wasNull()) mutation.setNormalRefCount(null); - mutation.setAnnotationJson(rs.getString("ANNOTATION_JSON")); - return mutation; - } - catch(NullPointerException e) { - throw new DaoException(e); - } - } - - private static ExtendedMutation.MutationEvent extractMutationEvent(ResultSet rs) throws SQLException, DaoException { - ExtendedMutation.MutationEvent event = new ExtendedMutation.MutationEvent(); - event.setMutationEventId(rs.getLong("MUTATION_EVENT_ID")); - long entrezId = rs.getLong("mutation_event.ENTREZ_GENE_ID"); - DaoGeneOptimized aDaoGene = DaoGeneOptimized.getInstance(); - CanonicalGene gene = aDaoGene.getGene(entrezId); - event.setGene(gene); - event.setChr(rs.getString("CHR")); - event.setStartPosition(rs.getLong("START_POSITION")); - event.setEndPosition(rs.getLong("END_POSITION")); - event.setProteinChange(rs.getString("PROTEIN_CHANGE")); - event.setMutationType(rs.getString("MUTATION_TYPE")); - event.setNcbiBuild(rs.getString("NCBI_BUILD")); - event.setStrand(rs.getString("STRAND")); - event.setVariantType(rs.getString("VARIANT_TYPE")); - event.setDbSnpRs(rs.getString("DB_SNP_RS")); - event.setDbSnpValStatus(rs.getString("DB_SNP_VAL_STATUS")); - event.setReferenceAllele(rs.getString("REFERENCE_ALLELE")); - event.setRefseqMrnaId(rs.getString("REFSEQ_MRNA_ID")); - event.setCodonChange(rs.getString("CODON_CHANGE")); - event.setUniprotAccession(rs.getString("UNIPROT_ACCESSION")); - event.setProteinPosStart(rs.getInt("PROTEIN_POS_START")); - event.setProteinPosEnd(rs.getInt("PROTEIN_POS_END")); - event.setCanonicalTranscript(rs.getBoolean("CANONICAL_TRANSCRIPT")); - event.setTumorSeqAllele(rs.getString("TUMOR_SEQ_ALLELE")); - event.setKeyword(rs.getString("KEYWORD")); - return event; - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static int getCount() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement("SELECT COUNT(*) FROM mutation"); - rs = pstmt.executeQuery(); - if (rs.next()) { - return rs.getInt(1); - } - return 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * Get significantly mutated genes - * @param profileId - * @param entrezGeneIds - * @param thresholdRecurrence - * @param thresholdNumGenes - * @param selectedCaseIds - * @return - * @throws DaoException - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Map> getSMGs(int profileId, Collection entrezGeneIds, - int thresholdRecurrence, int thresholdNumGenes, - Collection selectedCaseIds) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement("SET SESSION group_concat_max_len = 1000000"); - rs = pstmt.executeQuery(); - String sql = "SELECT mutation.ENTREZ_GENE_ID, GROUP_CONCAT(mutation.SAMPLE_ID), COUNT(*), COUNT(*)/`LENGTH` AS count_per_nt" + - " FROM mutation, gene" + - " WHERE mutation.ENTREZ_GENE_ID=gene.ENTREZ_GENE_ID" + - " AND GENETIC_PROFILE_ID=" + profileId + - (entrezGeneIds==null?"":(" AND mutation.ENTREZ_GENE_ID IN("+StringUtils.join(entrezGeneIds,",")+")")) + - (selectedCaseIds==null?"":(" AND mutation.SAMPLE_ID IN("+StringUtils.join(selectedCaseIds,",")+")")) + - " GROUP BY mutation.ENTREZ_GENE_ID" + - (thresholdRecurrence>0?(" HAVING COUNT(*)>="+thresholdRecurrence):"") + - " ORDER BY count_per_nt DESC" + - (thresholdNumGenes>0?(" LIMIT 0,"+thresholdNumGenes):""); - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - Map> map = new HashMap(); - while (rs.next()) { - Map value = new HashMap<>(); - value.put("caseIds", rs.getString(2)); - value.put("count", rs.getString(3)); - map.put(rs.getLong(1), value); - } - return map; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * return the number of all mutations for a profile - * @param profileId - * @return Map < case id, mutation count > - * @throws DaoException - * - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static int countMutationEvents(int profileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT count(DISTINCT `SAMPLE_ID`, `MUTATION_EVENT_ID`) FROM mutation" + - " WHERE `GENETIC_PROFILE_ID`=" + profileId; - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - if (rs.next()) { - return rs.getInt(1); - } - return 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * get events for each sample - * @return Map < sample id, list of event ids > - * @throws DaoException - * - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Map> getSamplesWithMutations(Collection eventIds) throws DaoException { - return getSamplesWithMutations(StringUtils.join(eventIds, ",")); - } - - /** - * get events for each sample - * @param concatEventIds event ids concatenated by comma (,) - * @return Map < sample id, list of event ids > - * @throws DaoException - * - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Map> getSamplesWithMutations(String concatEventIds) throws DaoException { - if (concatEventIds.isEmpty()) { - return Collections.emptyMap(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT `SAMPLE_ID`, `MUTATION_EVENT_ID` FROM mutation" + - " WHERE `MUTATION_EVENT_ID` IN (" + - concatEventIds + ")"; - pstmt = con.prepareStatement(sql); - Map> map = new HashMap> (); - rs = pstmt.executeQuery(); - while (rs.next()) { - int sampleId = rs.getInt("SAMPLE_ID"); - long eventId = rs.getLong("MUTATION_EVENT_ID"); - Set events = map.get(sampleId); - if (events == null) { - events = new HashSet(); - map.put(sampleId, events); - } - events.add(eventId); - } - return map; - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * @return Map < sample, list of event ids > - * @throws DaoException - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Map> getSimilarSamplesWithMutationsByKeywords( - Collection eventIds) throws DaoException { - return getSimilarSamplesWithMutationsByKeywords(StringUtils.join(eventIds, ",")); - } - - /** - * @param concatEventIds event ids concatenated by comma (,) - * @return Map < sample, list of event ids > - * @throws DaoException - */ - public static Map> getSimilarSamplesWithMutationsByKeywords( - String concatEventIds) throws DaoException { - if (concatEventIds.isEmpty()) { - return Collections.emptyMap(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT `SAMPLE_ID`, `GENETIC_PROFILE_ID`, me1.`MUTATION_EVENT_ID`" + - " FROM mutation cme, mutation_event me1, mutation_event me2" + - " WHERE me1.`MUTATION_EVENT_ID` IN ("+ concatEventIds + ")" + - " AND me1.`KEYWORD`=me2.`KEYWORD`" + - " AND cme.`MUTATION_EVENT_ID`=me2.`MUTATION_EVENT_ID`"; - pstmt = con.prepareStatement(sql); - Map> map = new HashMap> (); - rs = pstmt.executeQuery(); - while (rs.next()) { - Sample sample = DaoSample.getSampleById(rs.getInt("SAMPLE_ID")); - long eventId = rs.getLong("MUTATION_EVENT_ID"); - Set events = map.get(sample); - if (events == null) { - events = new HashSet(); - map.put(sample, events); - } - events.add(eventId); - } - return map; - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * @param entrezGeneIds event ids concatenated by comma (,) - * @return Map < sample, list of event ids > - * @throws DaoException - * - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Map> getSimilarSamplesWithMutatedGenes( - Collection entrezGeneIds) throws DaoException { - if (entrezGeneIds.isEmpty()) { - return Collections.emptyMap(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT `SAMPLE_ID`, `GENETIC_PROFILE_ID`, `ENTREZ_GENE_ID`" + - " FROM mutation" + - " WHERE `ENTREZ_GENE_ID` IN ("+ StringUtils.join(entrezGeneIds,",") + ")"; - pstmt = con.prepareStatement(sql); - Map> map = new HashMap> (); - rs = pstmt.executeQuery(); - while (rs.next()) { - Sample sample = DaoSample.getSampleById(rs.getInt("SAMPLE_ID")); - long entrez = rs.getLong("ENTREZ_GENE_ID"); - Set genes = map.get(sample); - if (genes == null) { - genes = new HashSet(); - map.put(sample, genes); - } - genes.add(entrez); - } - return map; - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Map countSamplesWithMutationEvents(Collection eventIds, int profileId) throws DaoException { - return countSamplesWithMutationEvents(StringUtils.join(eventIds, ","), profileId); - } - - /** - * return the number of samples for each mutation event - * @param concatEventIds - * @param profileId - * @return Map < event id, sampleCount > - * @throws DaoException - * - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Map countSamplesWithMutationEvents(String concatEventIds, int profileId) throws DaoException { - if (concatEventIds.isEmpty()) { - return Collections.emptyMap(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT `MUTATION_EVENT_ID`, count(DISTINCT `SAMPLE_ID`) FROM mutation" + - " WHERE `GENETIC_PROFILE_ID`=" + profileId + - " AND `MUTATION_EVENT_ID` IN (" + - concatEventIds + - ") GROUP BY `MUTATION_EVENT_ID`"; - pstmt = con.prepareStatement(sql); - Map map = new HashMap(); - rs = pstmt.executeQuery(); - while (rs.next()) { - map.put(rs.getLong(1), rs.getInt(2)); - } - return map; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Map countSamplesWithMutatedGenes(Collection entrezGeneIds, int profileId) throws DaoException { - return countSamplesWithMutatedGenes(StringUtils.join(entrezGeneIds, ","), profileId); - } - - /** - * return the number of samples for each mutated genes - * @param concatEntrezGeneIds - * @param profileId - * @return Map < entrez, sampleCount > - * @throws DaoException - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Map countSamplesWithMutatedGenes(String concatEntrezGeneIds, int profileId) throws DaoException { - if (concatEntrezGeneIds.isEmpty()) { - return Collections.emptyMap(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT ENTREZ_GENE_ID, count(DISTINCT SAMPLE_ID)" + - " FROM mutation" + - " WHERE GENETIC_PROFILE_ID=" + profileId + - " AND ENTREZ_GENE_ID IN (" + - concatEntrezGeneIds + - ") GROUP BY `ENTREZ_GENE_ID`"; - pstmt = con.prepareStatement(sql); - Map map = new HashMap(); - rs = pstmt.executeQuery(); - while (rs.next()) { - map.put(rs.getLong(1), rs.getInt(2)); - } - return map; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Map countSamplesWithKeywords(Collection keywords, int profileId) throws DaoException { - if (keywords.isEmpty()) { - return Collections.emptyMap(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT KEYWORD, count(DISTINCT SAMPLE_ID)" + - " FROM mutation, mutation_event" + - " WHERE GENETIC_PROFILE_ID=" + profileId + - " AND mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID" + - " AND KEYWORD IN ('" + - StringUtils.join(keywords,"','") + - "') GROUP BY `KEYWORD`"; - pstmt = con.prepareStatement(sql); - Map map = new HashMap(); - rs = pstmt.executeQuery(); - while (rs.next()) { - map.put(rs.getString(1), rs.getInt(2)); - } - return map; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * - * Counts all the samples in each cancer study in the collection of geneticProfileIds by mutation keyword - * - * @param keywords - * @param internalProfileIds - * @return Collection of Maps {"keyword" , "hugo" , "cancer_study" , "count"} where cancer_study == cancerStudy.getName(); - * @throws DaoException - * @author Gideon Dresdner - */ - public static Collection> countSamplesWithKeywords(Collection keywords, Collection internalProfileIds) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT KEYWORD, GENETIC_PROFILE_ID, mutation.ENTREZ_GENE_ID, count(DISTINCT SAMPLE_ID) FROM mutation, mutation_event " + - "WHERE GENETIC_PROFILE_ID IN (" + StringUtils.join(internalProfileIds, ",") + ") " + - "AND mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "AND KEYWORD IN ('" + StringUtils.join(keywords, "','") + "') " + - "GROUP BY KEYWORD, GENETIC_PROFILE_ID, mutation.ENTREZ_GENE_ID"; - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - Collection> data = new ArrayList>(); - while (rs.next()) { - Map d = new HashMap(); - String keyword = rs.getString(1); - Integer geneticProfileId = rs.getInt(2); - Long entrez = rs.getLong(3); - Integer count = rs.getInt(4); - // this is computing a join and in not optimal - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - Integer cancerStudyId = geneticProfile.getCancerStudyId(); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByInternalId(cancerStudyId); - String name = cancerStudy.getName(); - String cancerType = cancerStudy.getTypeOfCancerId(); - CanonicalGene gene = DaoGeneOptimized.getInstance().getGene(entrez); - String hugo = gene.getHugoGeneSymbolAllCaps(); - d.put("keyword", keyword); - d.put("hugo", hugo); - d.put("cancer_study", name); - d.put("cancer_type", cancerType); - d.put("count", count); - data.add(d); - } - return data; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * - * Counts up all the samples that have any mutation in a gene by genomic profile (ids) - * - * @param hugos - * @param internalProfileIds - * @return Collection of Maps {"hugo" , "cancer_study" , "count"} where cancer_study == cancerStudy.getName(); - * and gene is the hugo gene symbol. - * - * @throws DaoException - * @author Gideon Dresdner - */ - public static Collection> countSamplesWithGenes(Collection hugos, Collection internalProfileIds) throws DaoException { - // convert hugos to entrezs - // and simultaneously construct a map to turn them back into hugo gene symbols later - List entrezs = new ArrayList(); - Map entrez2CanonicalGene = new HashMap(); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - for (String hugo : hugos) { - CanonicalGene canonicalGene = daoGeneOptimized.getGene(hugo); - Long entrez = canonicalGene.getEntrezGeneId(); - entrezs.add(entrez); - entrez2CanonicalGene.put(entrez, canonicalGene); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "select mutation.ENTREZ_GENE_ID, mutation.GENETIC_PROFILE_ID, count(distinct SAMPLE_ID) from mutation, mutation_event\n" + - "where GENETIC_PROFILE_ID in (" + StringUtils.join(internalProfileIds, ",") + ")\n" + - "and mutation.ENTREZ_GENE_ID in (" + StringUtils.join(entrezs, ",") + ")\n" + - "and mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID\n" + - "group by ENTREZ_GENE_ID, GENETIC_PROFILE_ID"; - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - Collection> data = new ArrayList>(); - while (rs.next()) { - Map d = new HashMap(); - Long entrez = rs.getLong(1); - Integer geneticProfileId = rs.getInt(2); - Integer count = rs.getInt(3); - // can you get a cancerStudy's name? - // this is computing a join and in not optimal - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - Integer cancerStudyId = geneticProfile.getCancerStudyId(); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByInternalId(cancerStudyId); - String name = cancerStudy.getName(); - String cancerType = cancerStudy.getTypeOfCancerId(); - CanonicalGene canonicalGene = entrez2CanonicalGene.get(entrez); - String hugo = canonicalGene.getHugoGeneSymbolAllCaps(); - d.put("hugo", hugo); - d.put("cancer_study", name); - d.put("cancer_type", cancerType); - d.put("count", count); - data.add(d); - } - return data; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - public static Collection> countSamplesWithProteinChanges( - Collection proteinChanges, Collection internalProfileIds) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT PROTEIN_CHANGE, GENETIC_PROFILE_ID, mutation.ENTREZ_GENE_ID, count(DISTINCT SAMPLE_ID) FROM mutation, mutation_event " + - "WHERE GENETIC_PROFILE_ID IN (" + StringUtils.join(internalProfileIds, ",") + ") " + - "AND mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "AND PROTEIN_CHANGE IN ('" + StringUtils.join(proteinChanges, "','") + "') " + - "GROUP BY PROTEIN_CHANGE, GENETIC_PROFILE_ID, mutation.ENTREZ_GENE_ID"; - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - Collection> data = new ArrayList>(); - while (rs.next()) { - Map d = new HashMap(); - String proteinChange = rs.getString(1); - Integer geneticProfileId = rs.getInt(2); - Long entrez = rs.getLong(3); - Integer count = rs.getInt(4); - // can you get a cancerStudy's name? - // this is computing a join and in not optimal - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - Integer cancerStudyId = geneticProfile.getCancerStudyId(); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByInternalId(cancerStudyId); - String name = cancerStudy.getName(); - String cancerType = cancerStudy.getTypeOfCancerId(); - CanonicalGene gene = DaoGeneOptimized.getInstance().getGene(entrez); - String hugo = gene.getHugoGeneSymbolAllCaps(); - d.put("protein_change", proteinChange); - d.put("hugo", hugo); - d.put("cancer_study", name); - d.put("cancer_type", cancerType); - d.put("count", count); - data.add(d); - } - return data; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - public static Collection> countSamplesWithProteinPosStarts( - Collection proteinPosStarts, Collection internalProfileIds) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - //performance fix: mutation table contains geneId; by filtering on a geneId set before table join, the temporary table needed is smaller. - //a geneticProfileId set filter alone can in some cases let almost all mutations into the temporary table - HashSet geneIdSet = new HashSet(); - if (proteinPosStarts != null) { - Pattern geneIdPattern = Pattern.compile("\\(\\s*(\\d+)\\s*,"); - for (String proteinPos : proteinPosStarts) { - Matcher geneIdMatcher = geneIdPattern.matcher(proteinPos); - if (geneIdMatcher.find()) { - geneIdSet.add(geneIdMatcher.group(1)); - } - } - } - if (geneIdSet.size() == 0 || internalProfileIds.size() == 0) return new ArrayList>(); //empty IN() clause would be a SQL error below - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT PROTEIN_POS_START, GENETIC_PROFILE_ID, mutation.ENTREZ_GENE_ID, count(DISTINCT SAMPLE_ID) " + - "FROM mutation INNER JOIN mutation_event ON mutation.MUTATION_EVENT_ID=mutation_event.MUTATION_EVENT_ID " + - "WHERE mutation.ENTREZ_GENE_ID IN (" + StringUtils.join(geneIdSet, ",") + ") " + - "AND GENETIC_PROFILE_ID IN (" + StringUtils.join(internalProfileIds, ",") + ") " + - "AND (mutation.ENTREZ_GENE_ID, PROTEIN_POS_START) IN (" + StringUtils.join(proteinPosStarts, ",") + ") " + - "GROUP BY PROTEIN_POS_START, GENETIC_PROFILE_ID, mutation.ENTREZ_GENE_ID"; - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - Collection> data = new ArrayList>(); - while (rs.next()) { - Map d = new HashMap(); - String proteinPosStart = rs.getString(1); - Integer geneticProfileId = rs.getInt(2); - Long entrez = rs.getLong(3); - Integer count = rs.getInt(4); - // can you get a cancerStudy's name? - // this is computing a join and in not optimal - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - Integer cancerStudyId = geneticProfile.getCancerStudyId(); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByInternalId(cancerStudyId); - String name = cancerStudy.getName(); - String cancerType = cancerStudy.getTypeOfCancerId(); - CanonicalGene gene = DaoGeneOptimized.getInstance().getGene(entrez); - String hugo = gene.getHugoGeneSymbolAllCaps(); - d.put("protein_pos_start", proteinPosStart); - d.put("protein_start_with_hugo", hugo+"_"+proteinPosStart); - d.put("hugo", hugo); - d.put("cancer_study", name); - d.put("cancer_type", cancerType); - d.put("count", count); - data.add(d); - } - return data; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Set getGenesOfMutations( - Collection eventIds, int profileId) throws DaoException { - return getGenesOfMutations(StringUtils.join(eventIds, ","), profileId); - } - - /** - * return entrez gene ids of the mutations specified by their mutaiton event ids. - * @param concatEventIds - * @param profileId - * @return - * @throws DaoException - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Set getGenesOfMutations(String concatEventIds, int profileId) - throws DaoException { - if (concatEventIds.isEmpty()) { - return Collections.emptySet(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT DISTINCT ENTREZ_GENE_ID FROM mutation_event " + - "WHERE MUTATION_EVENT_ID in (" + concatEventIds + ")"; - pstmt = con.prepareStatement(sql); - Set set = new HashSet(); - rs = pstmt.executeQuery(); - while (rs.next()) { - set.add(rs.getLong(1)); - } - return set; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * return keywords of the mutations specified by their mutaiton event ids. - * @param concatEventIds - * @param profileId - * @return - * @throws DaoException - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static Set getKeywordsOfMutations(String concatEventIds, int profileId) - throws DaoException { - if (concatEventIds.isEmpty()) { - return Collections.emptySet(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - String sql = "SELECT DISTINCT KEYWORD FROM mutation_event " + - "WHERE MUTATION_EVENT_ID in (" + concatEventIds + ")"; - pstmt = con.prepareStatement(sql); - Set set = new HashSet(); - rs = pstmt.executeQuery(); - while (rs.next()) { - set.add(rs.getString(1)); - } - return set; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - protected static String boolToStr(boolean value) - { - return value ? "1" : "0"; - } - - /** - * @deprecated We believe that this method is no longer called by any part of the codebase, and it will soon be deleted. - */ - @Deprecated - public static void deleteAllRecordsInGeneticProfile(long geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement("DELETE from mutation WHERE GENETIC_PROFILE_ID=?"); - pstmt.setLong(1, geneticProfileId); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - JdbcUtil.disableForeignKeyCheck(con); - pstmt = con.prepareStatement("TRUNCATE TABLE mutation"); - pstmt.executeUpdate(); - pstmt = con.prepareStatement("TRUNCATE TABLE mutation_event"); - pstmt.executeUpdate(); - JdbcUtil.enableForeignKeyCheck(con); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * Gets all tiers in alphabetical order. - * - * @param - * @return Ordered list of tiers. - * @throws DaoException Database Error. - */ - public static List getTiers(String _cancerStudyStableIds) throws DaoException { - String[] cancerStudyStableIds = _cancerStudyStableIds.split(","); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - List tiers = new ArrayList(); - ArrayList geneticProfiles = new ArrayList<>(); - for (String cancerStudyStableId: cancerStudyStableIds) { - geneticProfiles.addAll(DaoGeneticProfile.getAllGeneticProfiles( - DaoCancerStudy.getCancerStudyByStableId(cancerStudyStableId).getInternalId() - )); - } - for (GeneticProfile geneticProfile : geneticProfiles) { - if (geneticProfile.getGeneticAlterationType().equals(GeneticAlterationType.MUTATION_EXTENDED)) { - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT DISTINCT DRIVER_TIERS_FILTER FROM alteration_driver_annotation " - + "WHERE DRIVER_TIERS_FILTER is not NULL AND DRIVER_TIERS_FILTER <> '' AND GENETIC_PROFILE_ID=? " - + "ORDER BY DRIVER_TIERS_FILTER"); - pstmt.setLong(1, geneticProfile.getGeneticProfileId()); - rs = pstmt.executeQuery(); - while (rs.next()) { - tiers.add(rs.getString("DRIVER_TIERS_FILTER")); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - } - - return tiers; - } - - /** - * Returns the number of tiers in the cancer study.. - * - * @param - * @return Ordered list of tiers. - * @throws DaoException Database Error. - */ - public static int numTiers(String _cancerStudyStableIds) throws DaoException { - List tiers = getTiers(_cancerStudyStableIds); - return tiers.size(); - } - - /** - * Returns true if there are "Putative_Driver" or "Putative_Passenger" values in the - * binary annotation column. Otherwise, it returns false. - * - * @param - * @return Ordered list of tiers. - * @throws DaoException Database Error. - */ - public static boolean hasDriverAnnotations(String _cancerStudyStableIds) throws DaoException { - String[] cancerStudyStableIds = _cancerStudyStableIds.split(","); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - List driverValues = new ArrayList(); - ArrayList geneticProfiles = new ArrayList<>(); - for (String cancerStudyStableId: cancerStudyStableIds) { - geneticProfiles.addAll( - DaoGeneticProfile.getAllGeneticProfiles(DaoCancerStudy.getCancerStudyByStableId(cancerStudyStableId).getInternalId()) - ); - } - for (GeneticProfile geneticProfile : geneticProfiles) { - if (geneticProfile.getGeneticAlterationType().equals(GeneticAlterationType.MUTATION_EXTENDED)) { - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT DISTINCT DRIVER_FILTER FROM alteration_driver_annotation " - + "WHERE DRIVER_FILTER is not NULL AND DRIVER_FILTER <> '' AND GENETIC_PROFILE_ID=? "); - pstmt.setLong(1, geneticProfile.getGeneticProfileId()); - rs = pstmt.executeQuery(); - while (rs.next()) { - driverValues.add(rs.getString("DRIVER_FILTER")); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - } - if (driverValues.size() > 0) { - return true; - } - return false; - } - - /** - * Returns true if there are duplicates in `mutation_event`. - * Compares count(*) of records in `mutation_event` against the count(distinct ...) - * records based on the fields specified below. - * - * If the counts do not match then SQL statement returns 0 (false), otherwise returns 1 (true). - * @return - * @throws DaoException - */ - public static boolean hasDuplicateMutationEvents() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - Integer sqlQueryResult = -1; // default = -1 to indicate mismatched counts from db table - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement( - "SELECT " - + "(SELECT COUNT(*) FROM mutation_event) = " - + "(SELECT COUNT(DISTINCT ENTREZ_GENE_ID, CHR, START_POSITION, END_POSITION, TUMOR_SEQ_ALLELE, PROTEIN_CHANGE, MUTATION_TYPE) FROM mutation_event)"); - rs = pstmt.executeQuery(); - if (rs.next()) { - sqlQueryResult = rs.getInt(1); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - if (sqlQueryResult == -1) { - throw new DaoException("Error occurred while executing SQL query to detect duplicate records in `mutation_event`"); - } - return !(sqlQueryResult > 0); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoPatient.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoPatient.java deleted file mode 100644 index fecc868bd88..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoPatient.java +++ /dev/null @@ -1,218 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; - -import org.apache.commons.collections4.map.MultiKeyMap; - -import java.sql.*; -import java.util.*; - -/** - * DAO to `patient`. - * - * @author Benjamin Gross - */ -public class DaoPatient { - - private static final String SAMPLE_COUNT_ATTR_ID = "SAMPLE_COUNT"; - - private static final Map byInternalId = new HashMap(); - private static final Map> byInternalCancerStudyId = new HashMap>(); - private static final MultiKeyMap byCancerIdAndStablePatientId = new MultiKeyMap(); - - private static void clearCache() - { - byInternalId.clear(); - byInternalCancerStudyId.clear(); - byCancerIdAndStablePatientId.clear(); - } - - public static synchronized void reCache() - { - clearCache(); - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoPatient.class); - pstmt = con.prepareStatement("SELECT * FROM patient"); - rs = pstmt.executeQuery(); - ArrayList list = new ArrayList(); - while (rs.next()) { - Patient p = extractPatient(rs); - if (p != null) { - cachePatient(p, p.getCancerStudy().getInternalId()); - } - } - } - catch (SQLException e) { - e.printStackTrace(); - } - finally { - JdbcUtil.closeAll(DaoPatient.class, con, pstmt, rs); - } - } - - public static void cachePatient(Patient patient, int cancerStudyId) - { - if (!byInternalId.containsKey(patient.getInternalId())) { - byInternalId.put(patient.getInternalId(), patient); - } - if (byInternalCancerStudyId.containsKey(patient.getCancerStudy().getInternalId())) { - byInternalCancerStudyId.get(patient.getCancerStudy().getInternalId()).add(patient); - } - else { - Set patientList = new HashSet(); - patientList.add(patient); - byInternalCancerStudyId.put(patient.getCancerStudy().getInternalId(), patientList); - } - - if (!byCancerIdAndStablePatientId.containsKey(cancerStudyId, patient.getStableId())) { - byCancerIdAndStablePatientId.put(cancerStudyId, patient.getStableId(), patient); - } - } - - public static int addPatient(Patient patient) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoPatient.class); - pstmt = con.prepareStatement("INSERT INTO patient (`STABLE_ID`, `CANCER_STUDY_ID`) VALUES (?,?)", - Statement.RETURN_GENERATED_KEYS); - pstmt.setString(1, patient.getStableId()); - pstmt.setInt(2, patient.getCancerStudy().getInternalId()); - pstmt.executeUpdate(); - rs = pstmt.getGeneratedKeys(); - if (rs.next()) { - cachePatient(new Patient(patient.getCancerStudy(), patient.getStableId(), rs.getInt(1)), patient.getCancerStudy().getInternalId()); - return rs.getInt(1); - } - return -1; - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoPatient.class, con, pstmt, rs); - } - } - - public static Patient getPatientById(int internalId) - { - return byInternalId.get(internalId); - } - - public static Patient getPatientByCancerStudyAndPatientId(int cancerStudyId, String stablePatientId) - { - return (Patient)byCancerIdAndStablePatientId.get(cancerStudyId, stablePatientId); - } - - public static Set getPatientsByCancerStudyId(int cancerStudyId) - { - return byInternalCancerStudyId.get(cancerStudyId); - } - - public static List getAllPatients() - { - return (byInternalId.isEmpty()) ? Collections.emptyList() : - new ArrayList(byInternalId.values()); - } - - public static void deleteAllRecords() throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoPatient.class); - JdbcUtil.disableForeignKeyCheck(con); - pstmt = con.prepareStatement("TRUNCATE TABLE patient"); - pstmt.executeUpdate(); - JdbcUtil.enableForeignKeyCheck(con); - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoPatient.class, con, pstmt, rs); - } - - clearCache(); - } - - public static void createSampleCountClinicalData(int cancerStudyId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoCopyNumberSegment.class); - pstmt = con.prepareStatement( - "REPLACE `clinical_patient`" + - "SELECT patient.`INTERNAL_ID`, 'SAMPLE_COUNT', COUNT(*) FROM sample " + - "INNER JOIN patient ON sample.`PATIENT_ID` = patient.`INTERNAL_ID`" + - "WHERE patient.`CANCER_STUDY_ID`=? " + - "GROUP BY patient.`INTERNAL_ID`;"); - pstmt.setInt(1, cancerStudyId); - ClinicalAttribute clinicalAttribute = DaoClinicalAttributeMeta.getDatum(SAMPLE_COUNT_ATTR_ID, cancerStudyId); - if (clinicalAttribute == null) { - ClinicalAttribute attr = new ClinicalAttribute(SAMPLE_COUNT_ATTR_ID, "Number of Samples Per Patient", - "Number of Samples Per Patient", "STRING", true, "1", cancerStudyId); - DaoClinicalAttributeMeta.addDatum(attr); - } - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoCopyNumberSegment.class, con, pstmt, rs); - } - } - - private static Patient extractPatient(ResultSet rs) throws SQLException - { - try { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByInternalId(rs.getInt("CANCER_STUDY_ID")); - if (cancerStudy == null) return null; - return new Patient(cancerStudy, - rs.getString("STABLE_ID"), - rs.getInt("INTERNAL_ID")); - } - catch (DaoException e) { - throw new SQLException(e); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoReferenceGenome.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoReferenceGenome.java deleted file mode 100644 index 1d9bb4990d5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoReferenceGenome.java +++ /dev/null @@ -1,261 +0,0 @@ -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.dao; - -import java.sql.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.SpringUtil; - -import java.util.*; - - -/** - * Adding or updating Reference Genomes used by molecular profiling - * @author Kelsey Zhu - */ -public final class DaoReferenceGenome { - - private static final Map byGenomeBuild = new HashMap(); - private static final Map byGenomeName = new HashMap(); - private static final Map byGenomeInternalId = new HashMap(); - private static final Map genomeInternalIds = new HashMap(); - - static { - SpringUtil.initDataSource(); - reCache(); - } - - private static synchronized void clearCache() { - byGenomeBuild.clear(); - byGenomeInternalId.clear(); - byGenomeName.clear(); - genomeInternalIds.clear(); - } - - private static synchronized void addCache(ReferenceGenome referenceGenome) { - byGenomeBuild.put(referenceGenome.getBuildName(), referenceGenome); - byGenomeName.put(referenceGenome.getGenomeName(), referenceGenome); - byGenomeInternalId.put(referenceGenome.getReferenceGenomeId(), referenceGenome); - genomeInternalIds.put(referenceGenome.getBuildName(), referenceGenome.getReferenceGenomeId()); - genomeInternalIds.put(referenceGenome.getGenomeName(), referenceGenome.getReferenceGenomeId()); - } - - private static synchronized void reCache() { - clearCache(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoReferenceGenome.class); - pstmt = con.prepareStatement("SELECT * FROM reference_genome"); - rs = pstmt.executeQuery(); - while (rs.next()) { - ReferenceGenome referenceGenome = extractReferenceGenome(rs); - addCache(referenceGenome); - } - } catch (SQLException e) { - e.printStackTrace(); - } finally { - JdbcUtil.closeAll(DaoReferenceGenome.class, con, pstmt, rs); - } - } - - /** - * Add a new reference genome to the Database. - * @param referenceGenome Reference Genome. - * @throws DaoException Database Error. - */ - public static void addReferenceGenome(ReferenceGenome referenceGenome) throws DaoException { - reCache(); - addReferenceGenome(referenceGenome, false); - } - - /** - * Add a new reference genome to the Database. - * @param referenceGenome - * @param overwrite if true, overwrite if exist. - * @throws DaoException - */ - public static void addReferenceGenome(ReferenceGenome referenceGenome, boolean overwrite) throws DaoException { - - ReferenceGenome existing = getReferenceGenomeByInternalId(referenceGenome.getReferenceGenomeId()); - if (existing!=null) { - if (!overwrite) { - throw new DaoException("Reference Genome " + referenceGenome.getBuildName() + "is already imported."); - } else { - updateReferenceGenome(referenceGenome); - } - } - else { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoReferenceGenome.class); - pstmt = con.prepareStatement("INSERT INTO reference_genome " + - "( `species`, `name`, " - + "`build_name`, `genome_size`, `URL`, " - + " `release_date` ) VALUES (?,?,?,?,?,?)", - Statement.RETURN_GENERATED_KEYS); - pstmt.setString(1, referenceGenome.getSpecies()); - pstmt.setString(2, referenceGenome.getGenomeName()); - pstmt.setString(3, referenceGenome.getBuildName()); - pstmt.setLong(4, referenceGenome.getGenomeSize()); - pstmt.setString(5, referenceGenome.getUrl()); - pstmt.setDate(6, new java.sql.Date(referenceGenome.getReleaseDate().getTime())); - if (pstmt.executeUpdate() != 0 ) { - rs = pstmt.getGeneratedKeys(); - if (rs.next()) { - int autoId = rs.getInt(1); - referenceGenome.setReferenceGenomeId(autoId); - } - // update reference cache - addCache(referenceGenome); - } else { - throw new DaoException("attempt to add new referenceGenome record failed"); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoReferenceGenome.class, con, pstmt, rs); - } - } - } - - /** - * Deletes all Reference Genomes. - * @throws DaoException Database Error. - */ - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoReferenceGenome.class); - JdbcUtil.disableForeignKeyCheck(con); - pstmt = con.prepareStatement("TRUNCATE TABLE reference_genome"); - pstmt.executeUpdate(); - JdbcUtil.enableForeignKeyCheck(con); - // clear cache - clearCache(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoReferenceGenome.class, con, pstmt, rs); - } - } - - /** - * Update existing reference genome. - * @param referenceGenome Reference Genome Object - * @throws DaoException - */ - public static void updateReferenceGenome(ReferenceGenome referenceGenome) throws DaoException { - - ReferenceGenome existing = getReferenceGenomeByInternalId(referenceGenome.getReferenceGenomeId()); - if (existing==null) { - throw new DaoException("Reference Genome " + referenceGenome.getBuildName() + "does not exist."); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoReferenceGenome.class); - pstmt = con.prepareStatement("UPDATE reference_genome " + - "SET `species`=?, `name`=?, " - + "`build_name`=?, `genome_size`=?, `URL`=?, " - + " `release_date`=? WHERE `reference_genome_id`=?"); - pstmt.setString(1, referenceGenome.getSpecies()); - pstmt.setString(2, referenceGenome.getGenomeName()); - pstmt.setString(3, referenceGenome.getBuildName()); - pstmt.setLong(4, referenceGenome.getGenomeSize()); - pstmt.setString(5, referenceGenome.getUrl()); - pstmt.setDate(6, new java.sql.Date(referenceGenome.getReleaseDate().getTime())); - pstmt.setInt(7, referenceGenome.getReferenceGenomeId()); - if (pstmt.executeUpdate() != 0) { - // update reference cache - reCache(); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoReferenceGenome.class, con, pstmt, rs); - } - } - - /** - * Retrieve reference genome by internal DB ID - * @param internalId Reference Genome internal DB ID - * @throws DaoException Database Error. - */ - - public static ReferenceGenome getReferenceGenomeByInternalId(int internalId) throws DaoException { - ReferenceGenome genome = byGenomeInternalId.get(internalId); - return genome; - } - - /** - * Retrieve reference genome by genome build name - * @param buildName Reference Genome build name - * @throws DaoException Database Error. - */ - - public static ReferenceGenome getReferenceGenomeByBuildName(String buildName) throws DaoException { - return byGenomeBuild.get(buildName); - } - - /** - * Retrieve reference genome by genome build name - * @param genomeName Reference Genome build name - * @throws DaoException Database Error. - */ - - public static ReferenceGenome getReferenceGenomeByGenomeName(String genomeName) throws DaoException { - return byGenomeName.get(genomeName); - } - - /** - * Retrieve reference genome of interest by genome name or genome assembly name - * @param name Name of Reference Genome or Genome Assembly - * @throws DaoException Database Error. - */ - public static int getReferenceGenomeIdByName(String name) throws DaoException { - Integer referenceGenomeId = genomeInternalIds.get(name); - if (referenceGenomeId == null) { - return -1; - } else { - return referenceGenomeId; - } - } - - /** - * Extracts Reference Genome JDBC Results. - * @param rs JDBC Result Set - */ - private static ReferenceGenome extractReferenceGenome(ResultSet rs) throws SQLException { - ReferenceGenome referenceGenome = new ReferenceGenome( - rs.getString("NAME"), - rs.getString("SPECIES"), - rs.getString("BUILD_NAME")); - referenceGenome.setReferenceGenomeId(rs.getInt("REFERENCE_GENOME_ID")); - referenceGenome.setGenomeSize(rs.getLong("GENOME_SIZE")); - referenceGenome.setReleaseDate(rs.getDate("RELEASE_DATE")); - referenceGenome.setUrl(rs.getString("URL")); - return referenceGenome; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoReferenceGenomeGene.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoReferenceGenomeGene.java deleted file mode 100644 index 3ca808aefb1..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoReferenceGenomeGene.java +++ /dev/null @@ -1,168 +0,0 @@ -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.ReferenceGenomeGene; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; - -/** - * Data Access Object to Reference Genome Gene Table - * Make a Singleton Class accessed by all objects throughout the system - * @author Kelsey Zhu - */ -public class DaoReferenceGenomeGene { - private static DaoReferenceGenomeGene instance = null; - - public static DaoReferenceGenomeGene getInstance() { - if (instance == null) { - instance = new DaoReferenceGenomeGene(); - } - return instance; - } - - /** - * Update Reference Genome Gene in the Database. - * @param gene Reference Genome Gene - */ - public void updateGene(ReferenceGenomeGene gene) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - MySQLbulkLoader.bulkLoadOff(); - con = JdbcUtil.getDbConnection(DaoReferenceGenome.class); - pstmt = con.prepareStatement - ("UPDATE reference_genome_gene SET `START`=?, `END`=? WHERE `ENTREZ_GENE_ID`=? AND `REFERENCE_GENOME_ID`=?"); - pstmt.setLong(1, gene.getStart()); - pstmt.setLong(2, gene.getEnd()); - pstmt.setLong(3, gene.getEntrezGeneId()); - pstmt.setInt(4, gene.getReferenceGenomeId()); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - MySQLbulkLoader.bulkLoadOn(); - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - /** - * Adds a new reference genome gene to the Database or update the existing one. - * @param gene Reference Genome Gene Object. - * @throws DaoException Database Error. - */ - public void addOrUpdateGene(ReferenceGenomeGene gene) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - ReferenceGenomeGene existingGene = getGene(gene.getEntrezGeneId(), gene.getReferenceGenomeId()); - - if (existingGene == null) { - //add gene, referring to this genetic entity - con = JdbcUtil.getDbConnection(DaoGene.class); - pstmt = con.prepareStatement - ("INSERT INTO `reference_genome_gene` (`ENTREZ_GENE_ID`, `REFERENCE_GENOME_ID`,`CHR`,`CYTOBAND`,`START`,`END`) " - + "VALUES (?,?,?,?,?,?)"); - pstmt.setLong(1, gene.getEntrezGeneId()); - pstmt.setInt(2, gene.getReferenceGenomeId()); - pstmt.setString(3, gene.getChr()); - pstmt.setString(4, gene.getCytoband()); - pstmt.setLong(5, gene.getStart()); - pstmt.setLong(6, gene.getEnd()); - pstmt.executeUpdate(); - } - else { - updateGene(existingGene); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - - /** - * Gets the Reference Genome Gene with the Specified Entrez Gene ID. - * @param entrezGeneId ENTRZ GENE ID. - * @return Reference Genome Gene Object. - * @throws DaoException Database Error. - */ - public ReferenceGenomeGene getGene(long entrezGeneId, int referenceGenomeId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoReferenceGenomeGene.class); - pstmt = con.prepareStatement - ("SELECT * FROM `reference_genome_gene` WHERE `ENTREZ_GENE_ID` = ? AND `REFERENCE_GENOME_ID` = ?"); - pstmt.setLong(1, entrezGeneId); - pstmt.setInt(2, referenceGenomeId); - rs = pstmt.executeQuery(); - if (rs.next()) { - return extractGene(rs); - } else { - return null; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } - - private ReferenceGenomeGene extractGene(ResultSet rs) throws SQLException, DaoException { - int entrezGeneId = rs.getInt("ENTREZ_GENE_ID"); - int reference_genome_id = rs.getInt("REFERENCE_GENOME_ID"); - String cytoband = rs.getString("CYTOBAND"); - ReferenceGenomeGene gene = new ReferenceGenomeGene(entrezGeneId, reference_genome_id); - gene.setChr(rs.getString("CHR")); - gene.setCytoband(rs.getString("CYTOBAND")); - gene.setStart(rs.getLong("START")); - gene.setEnd(rs.getLong("END")); - return gene; - } - - /** - * Deletes the Reference Genome Gene for a given Entrez Gene ID and Referece Genome ID. - * @param entrezGeneId ENTREZ GENE ID - * @param referenceGenomeId REFERENCE GENOME ID - */ - public void deleteGene(int entrezGeneId, int referenceGenomeId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoReferenceGenomeGene.class); - pstmt = con.prepareStatement("DELETE FROM `reference_genome_gene` WHERE ENTREZ_GENE_ID=? AND REFERENCE_GENOME_ID=?"); - pstmt.setLong(1, entrezGeneId); - pstmt.setInt(2, referenceGenomeId); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGene.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoResourceData.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoResourceData.java deleted file mode 100644 index c0346d63a3d..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoResourceData.java +++ /dev/null @@ -1,116 +0,0 @@ -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; -import org.apache.commons.lang3.StringUtils; -import java.sql.*; -import java.util.*; - -/** - * Data Access Object for `resource` tables - */ -public final class DaoResourceData { - - public static final String RESOURCE_SAMPLE_TABLE = "resource_sample"; - public static final String RESOURCE_PATIENT_TABLE = "resource_patient"; - public static final String RESOURCE_STUDY_TABLE = "resource_study"; - - private static final String SAMPLE_INSERT = "INSERT INTO " + RESOURCE_SAMPLE_TABLE - + "(`INTERNAL_ID`,`RESOURCE_ID`,`URL` VALUES(?,?,?)"; - private static final String PATIENT_INSERT = "INSERT INTO " + RESOURCE_PATIENT_TABLE - + "(`INTERNAL_ID`,`RESOURCE_ID`,`URL` VALUES(?,?,?)"; - private static final String STUDY_INSERT = "INSERT INTO " + RESOURCE_STUDY_TABLE - + "(`INTERNAL_ID`,`RESOURCE_ID`,`URL` VALUES(?,?,?)"; - - private DaoResourceData() { - } - - public static int addSampleDatum(int internalSampleId, String resourceId, String url) throws DaoException { - return addDatum(SAMPLE_INSERT, RESOURCE_SAMPLE_TABLE, internalSampleId, resourceId, url); - } - - public static int addPatientDatum(int internalPatientId, String resourceId, String url) throws DaoException { - return addDatum(PATIENT_INSERT, RESOURCE_PATIENT_TABLE, internalPatientId, resourceId, url); - } - - public static int addStudyDatum(int internalStudyId, String resourceId, String url) throws DaoException { - return addDatum(STUDY_INSERT, RESOURCE_STUDY_TABLE, internalStudyId, resourceId, url); - } - - public static int addDatum(String query, String tableName, int internalId, String resourceId, String url) - throws DaoException { - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.getMySQLbulkLoader(tableName).insertRecord(Integer.toString(internalId), resourceId, url); - return 1; - } - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoResourceData.class); - - pstmt = con.prepareStatement(query); - pstmt.setInt(1, internalId); - pstmt.setString(2, resourceId); - pstmt.setString(3, url); - - return pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoResourceData.class, con, pstmt, rs); - } - } - - public static List getDataByPatientId(int cancerStudyId, String patientId) throws DaoException - { - List internalIds = new ArrayList(); - internalIds.add(DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId).getInternalId()); - return getDataByInternalIds(cancerStudyId, RESOURCE_PATIENT_TABLE, internalIds); - } - - private static List getDataByInternalIds(int internalCancerStudyId, String table, List internalIds) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - List resources = new ArrayList(); - String sql = ("SELECT * FROM " + table + " WHERE `INTERNAL_ID` IN " + - "(" + generateIdsSql(internalIds) + ")"); - - try { - con = JdbcUtil.getDbConnection(DaoResourceData.class); - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - while (rs.next()) { - resources.add(extract(table, internalCancerStudyId, rs)); - } - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoResourceData.class, con, pstmt, rs); - } - - return resources; - } - - private static String generateIdsSql(Collection ids) { - return "'" + StringUtils.join(ids, "','") + "'"; - } - - private static ResourceBaseData extract(String table, int internalCancerStudyId, ResultSet rs) throws SQLException { - String stableId = getStableIdFromInternalId(table, rs.getInt("INTERNAL_ID")); - return new ResourceBaseData(internalCancerStudyId, stableId, rs.getString("RESOURCE_ID"), rs.getString("URL")); - } - - private static String getStableIdFromInternalId(String table, int internalId) { - if (table.equals(RESOURCE_SAMPLE_TABLE)) { - return DaoSample.getSampleById(internalId).getStableId(); - } else { - return DaoPatient.getPatientById(internalId).getStableId(); - } - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoResourceDefinition.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoResourceDefinition.java deleted file mode 100644 index a8919651d8e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoResourceDefinition.java +++ /dev/null @@ -1,135 +0,0 @@ -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; - -import org.apache.commons.lang3.StringUtils; -import org.cbioportal.model.ResourceType; - -import java.sql.*; -import java.util.*; - -/** - * Data Access Object for `resource_definition` table - */ -public class DaoResourceDefinition { - - public static int addDatum(ResourceDefinition resource) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoResourceDefinition.class); - pstmt = con.prepareStatement("INSERT INTO resource_definition(" + "`RESOURCE_ID`," + "`DISPLAY_NAME`," - + "`DESCRIPTION`," + "`RESOURCE_TYPE`," + "`OPEN_BY_DEFAULT`," + "`PRIORITY`," + "`CANCER_STUDY_ID`)" - + " VALUES(?,?,?,?,?,?,?)"); - pstmt.setString(1, resource.getResourceId()); - pstmt.setString(2, resource.getDisplayName()); - pstmt.setString(3, resource.getDescription()); - pstmt.setString(4, resource.getResourceType().name()); - pstmt.setBoolean(5, resource.isOpenByDefault()); - pstmt.setInt(6, resource.getPriority()); - pstmt.setInt(7, resource.getCancerStudyId()); - return pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoResourceDefinition.class, con, pstmt, rs); - } - } - - private static ResourceDefinition unpack(ResultSet rs) throws SQLException { - return new ResourceDefinition(rs.getString("RESOURCE_ID"), rs.getString("DISPLAY_NAME"), rs.getString("DESCRIPTION"), - ResourceType.valueOf(rs.getString("RESOURCE_TYPE")), rs.getBoolean("OPEN_BY_DEFAULT"), rs.getInt("PRIORITY"), - rs.getInt("CANCER_STUDY_ID")); - } - - public static ResourceDefinition getDatum(String resourceId, Integer cancerStudyId) throws DaoException { - List resources = getDatum(Arrays.asList(resourceId), cancerStudyId); - if (resources.isEmpty()) { - return null; - } - - return resources.get(0); - } - - public static List getDatum(Collection resourceIds, Integer cancerStudyId) - throws DaoException { - if (resourceIds == null || resourceIds.isEmpty()) { - return Collections.emptyList(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoResourceDefinition.class); - - pstmt = con.prepareStatement("SELECT * FROM resource_definition WHERE RESOURCE_ID IN ('" - + StringUtils.join(resourceIds, "','") + "') AND CANCER_STUDY_ID=" + String.valueOf(cancerStudyId)); - - rs = pstmt.executeQuery(); - - List list = new ArrayList(); - while (rs.next()) { - list.add(unpack(rs)); - } - - return list; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoResourceDefinition.class, con, pstmt, rs); - } - } - - public static List getDatum(Collection resourceIds) throws DaoException { - if (resourceIds == null || resourceIds.isEmpty()) { - return Collections.emptyList(); - } - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoResourceDefinition.class); - - pstmt = con.prepareStatement("SELECT * FROM resource_definition WHERE RESOURCE_ID IN ('" - + StringUtils.join(resourceIds, "','") + "')"); - - rs = pstmt.executeQuery(); - - List list = new ArrayList(); - while (rs.next()) { - list.add(unpack(rs)); - } - - return list; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoResourceDefinition.class, con, pstmt, rs); - } - } - - public static List getDatumByStudy(int cancerStudyId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoResourceDefinition.class); - - pstmt = con.prepareStatement("SELECT * FROM resource_definition WHERE CANCER_STUDY_ID=" + String.valueOf(cancerStudyId)); - - rs = pstmt.executeQuery(); - - List list = new ArrayList(); - while (rs.next()) { - list.add(unpack(rs)); - } - - return list; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoResourceDefinition.class, con, pstmt, rs); - } - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoSample.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoSample.java deleted file mode 100644 index df4450364ba..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoSample.java +++ /dev/null @@ -1,273 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; - -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import java.sql.*; -import java.util.*; - -/** - * DAO to `sample`. - * - * @author Benjamin Gross - */ -public class DaoSample { - - private static final int MISSING_CANCER_STUDY_ID = -1; - - private static final Map byStableId = new HashMap(); - private static final Map byInternalId = new HashMap(); - private static final Map> byInternalPatientAndStableSampleId = new HashMap>(); - private static final Map> byCancerStudyIdAndStableSampleId = new HashMap>(); - - private static void clearCache() - { - byStableId.clear(); - byInternalId.clear(); - byInternalPatientAndStableSampleId.clear(); - byCancerStudyIdAndStableSampleId.clear(); - } - - public static synchronized void reCache() - { - clearCache(); - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSample.class); - pstmt = con.prepareStatement("SELECT * FROM sample"); - rs = pstmt.executeQuery(); - while (rs.next()) { - cacheSample(extractSample(rs)); - } - } - catch (SQLException e) { - e.printStackTrace(); - } - finally { - JdbcUtil.closeAll(DaoSample.class, con, pstmt, rs); - } - } - - private static void cacheSample(Sample sample) - { - cacheSample(sample, getCancerStudyId(sample)); - } - - private static int getCancerStudyId(Sample sample) - { - Patient patient = DaoPatient.getPatientById(sample.getInternalPatientId()); - return (patient == null) ? MISSING_CANCER_STUDY_ID : patient.getCancerStudy().getInternalId(); - } - - private static void cacheSample(Sample sample, int cancerStudyId) - { - if (!byStableId.containsKey(sample.getStableId())) { - byStableId.put(sample.getStableId(), sample); - } - - if (!byInternalId.containsKey(sample.getInternalId())) { - byInternalId.put(sample.getInternalId(), sample); - } - - Map samples = byInternalPatientAndStableSampleId.get(sample.getInternalPatientId()); - if (samples==null) { - samples = new HashMap(); - byInternalPatientAndStableSampleId.put(sample.getInternalPatientId(), samples); - } - if (samples.containsKey(sample.getStableId())) { - System.err.println("Something is wrong: there are two samples of "+sample.getStableId()+" in the same patient."); - } - samples.put(sample.getStableId(), sample); - - samples = byCancerStudyIdAndStableSampleId.get(cancerStudyId); - if (samples==null) { - samples = new HashMap(); - byCancerStudyIdAndStableSampleId.put(cancerStudyId, samples); - } - if (samples.containsKey(sample.getStableId())) { - System.err.println("Something is wrong: there are two samples of "+sample.getStableId()+" in the same study."); - } - samples.put(sample.getStableId(), sample); - } - - public static int addSample(Sample sample) throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSample.class); - pstmt = con.prepareStatement("INSERT INTO sample " + - "( `STABLE_ID`, `SAMPLE_TYPE`, `PATIENT_ID` ) " + - "VALUES (?,?,?)", - Statement.RETURN_GENERATED_KEYS); - pstmt.setString(1, sample.getStableId()); - pstmt.setString(2, sample.getType().toString()); - pstmt.setInt(3, sample.getInternalPatientId()); - pstmt.executeUpdate(); - rs = pstmt.getGeneratedKeys(); - if (rs.next()) { - cacheSample(new Sample(rs.getInt(1), sample.getStableId(), - sample.getInternalPatientId())); - return rs.getInt(1); - } - return -1; - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoSample.class, con, pstmt, rs); - } - } - - public static List getAllSamples() - { - return (byStableId.isEmpty()) ? Collections.emptyList() : - new ArrayList(byStableId.values()); - } - - public static Sample getSampleById(int internalId) - { - return byInternalId.get(internalId); - } - - public static List getSamplesByPatientId(int internalPatientId) - { - return (byInternalPatientAndStableSampleId.isEmpty() || !byInternalPatientAndStableSampleId.containsKey(internalPatientId)) ? Collections.emptyList() : - new ArrayList(byInternalPatientAndStableSampleId.get(internalPatientId).values()); - } - - public static Sample getSampleByPatientAndSampleId(int internalPatientId, String stableSampleId) - { - Map samples = byInternalPatientAndStableSampleId.get(internalPatientId); - if (samples==null) { - return null; - } - - return samples.get(stableSampleId); - } - - public static List getSamplesByCancerStudy(int cancerStudyId) - { - Map samples = byCancerStudyIdAndStableSampleId.get(cancerStudyId); - if (samples==null) { - return Collections.emptyList(); - } - - return new ArrayList(samples.values()); - } - - /** - * This method returns the list of sample (stable) ids for a study, e.g. TCGA-A1-A0SB-01, etc. - * - * @param cancerStudyId : the cancer study internal id - * @return - */ - public static List getSampleStableIdsByCancerStudy(int cancerStudyId) - { - List samples = getSamplesByCancerStudy(cancerStudyId); - List result = new ArrayList(); - for (Sample sample : samples) { - result.add(sample.getStableId()); - } - return result; - } - - public static Sample getSampleByCancerStudyAndSampleId(int cancerStudyId, String stableSampleId) - { - return getSampleByCancerStudyAndSampleId(cancerStudyId, stableSampleId, true); - - } - - /** - * Same as getSampleByCancerStudyAndSampleId, but with extra option on whether or not - * to log extra warning when sample is not found. - * - * @param cancerStudyId - * @param stableSampleId - * @param errorWhenNotFound : set to true to log warning in ProgressMonitor in case sample is not found. - * Some processes, like ImportClinicalData do not want an error here, but use the null result as a flag - * to decide whether a new sample should be added to the DB. These processes should set this parameter - * to false. - * - * @return Sample object if sample was found in cache, null otherwise. - */ - public static Sample getSampleByCancerStudyAndSampleId(int cancerStudyId, String stableSampleId, boolean errorWhenNotFound) - { - Map samples = byCancerStudyIdAndStableSampleId.get(cancerStudyId); - if (samples==null) { - if (errorWhenNotFound) { - ProgressMonitor.logWarning("Couldn't find sample "+stableSampleId+" in study "+cancerStudyId); - } - return null; - } - - return samples.get(stableSampleId); - } - - public static void deleteAllRecords() throws DaoException - { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSample.class); - JdbcUtil.disableForeignKeyCheck(con); - pstmt = con.prepareStatement("TRUNCATE TABLE sample"); - pstmt.executeUpdate(); - JdbcUtil.enableForeignKeyCheck(con); - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoSample.class, con, pstmt, rs); - } - - clearCache(); - } - - private static Sample extractSample(ResultSet rs) throws SQLException - { - return new Sample(rs.getInt("INTERNAL_ID"), - rs.getString("STABLE_ID"), - rs.getInt("PATIENT_ID")); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoSampleList.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoSampleList.java deleted file mode 100644 index c3200389a30..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoSampleList.java +++ /dev/null @@ -1,314 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; - -import java.sql.*; -import java.util.*; - -/** - * Data access object for patient_List table - */ -public class DaoSampleList { - - /** - * Adds record to sample_list table. - */ - public int addSampleList(SampleList sampleList) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - int rows; - try { - con = JdbcUtil.getDbConnection(DaoSampleList.class); - - pstmt = con.prepareStatement("INSERT INTO sample_list (`STABLE_ID`, `CANCER_STUDY_ID`, `NAME`, `CATEGORY`," + - "`DESCRIPTION`)" + " VALUES (?,?,?,?,?)"); - pstmt.setString(1, sampleList.getStableId()); - pstmt.setInt(2, sampleList.getCancerStudyId()); - pstmt.setString(3, sampleList.getName()); - pstmt.setString(4, sampleList.getSampleListCategory().getCategory()); - pstmt.setString(5, sampleList.getDescription()); - rows = pstmt.executeUpdate(); - int listListRow = addSampleListList(sampleList, con); - rows = (listListRow != -1) ? (rows + listListRow) : rows; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleList.class, con, pstmt, rs); - } - - return rows; - } - - /** - * Given a patient list by stable Id, returns a patient list. - */ - public SampleList getSampleListByStableId(String stableId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleList.class); - pstmt = con.prepareStatement - ("SELECT * FROM sample_list WHERE STABLE_ID = ?"); - pstmt.setString(1, stableId); - rs = pstmt.executeQuery(); - if (rs.next()) { - SampleList sampleList = extractSampleList(rs); - sampleList.setSampleList(getSampleListList(sampleList, con)); - return sampleList; - } - return null; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleList.class, con, pstmt, rs); - } - } - - /** - * Given a patient list ID, returns a patient list. - */ - public SampleList getSampleListById(int id) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleList.class); - pstmt = con.prepareStatement - ("SELECT * FROM sample_list WHERE LIST_ID = ?"); - pstmt.setInt(1, id); - rs = pstmt.executeQuery(); - if (rs.next()) { - SampleList sampleList = extractSampleList(rs); - sampleList.setSampleList(getSampleListList(sampleList, con)); - return sampleList; - } - return null; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleList.class, con, pstmt, rs); - } - } - - /** - * Given a cancerStudyId, returns all patient list. - */ - public ArrayList getAllSampleLists( int cancerStudyId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleList.class); - - pstmt = con.prepareStatement - ("SELECT * FROM sample_list WHERE CANCER_STUDY_ID = ? ORDER BY NAME"); - pstmt.setInt(1, cancerStudyId); - rs = pstmt.executeQuery(); - ArrayList list = new ArrayList(); - while (rs.next()) { - SampleList sampleList = extractSampleList(rs); - list.add(sampleList); - } - // get patient list-list - for (SampleList sampleList : list) { - sampleList.setSampleList(getSampleListList(sampleList, con)); - } - return list; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleList.class, con, pstmt, rs); - } - } - - /** - * Returns a list of all patient lists. - */ - public ArrayList getAllSampleLists() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleList.class); - pstmt = con.prepareStatement - ("SELECT * FROM sample_list"); - rs = pstmt.executeQuery(); - ArrayList list = new ArrayList(); - while (rs.next()) { - SampleList sampleList = extractSampleList(rs); - list.add(sampleList); - } - // get patient list-list - for (SampleList sampleList : list) { - sampleList.setSampleList(getSampleListList(sampleList, con)); - } - return list; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleList.class, con, pstmt, rs); - } - } - - /** - * Clears all records from patient list & sample_list_list. - */ - public void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleList.class); - pstmt = con.prepareStatement("TRUNCATE TABLE sample_list"); - pstmt.executeUpdate(); - pstmt = con.prepareStatement("TRUNCATE TABLE sample_list_list"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleList.class, con, pstmt, rs); - } - } - - /** - * Given a patient list, gets list id from sample_list table - */ - private int getSampleListId(SampleList sampleList) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleList.class); - pstmt = con.prepareStatement("SELECT LIST_ID FROM sample_list WHERE STABLE_ID=?"); - pstmt.setString(1, sampleList.getStableId()); - rs = pstmt.executeQuery(); - if (rs.next()) { - return rs.getInt("LIST_ID"); - } - return -1; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleList.class, con, pstmt, rs); - } - } - - /** - * Adds record to sample_list_list. - */ - private int addSampleListList(SampleList sampleList, Connection con) throws DaoException { - - // get patient list id - int sampleListId = getSampleListId(sampleList); - if (sampleListId == -1) { - return -1; - } - - if (sampleList.getSampleList().isEmpty()) { - return 0; - } - - PreparedStatement pstmt ; - ResultSet rs = null; - int skippedPatients = 0; - try { - StringBuilder sql = new StringBuilder("INSERT INTO sample_list_list (`LIST_ID`, `SAMPLE_ID`) VALUES "); - // NOTE - as of 12/12/14, patient lists contain sample ids - for (String sampleId : sampleList.getSampleList()) { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(sampleList.getCancerStudyId(), sampleId); - if (sample == null) { - System.out.println("null sample: " + sampleId + ":" + sampleList.getStableId()); - ++skippedPatients; - continue; - } - sql.append("('").append(sampleListId).append("','").append(sample.getInternalId()).append("'),"); - } - if (skippedPatients == sampleList.getSampleList().size()) { - return 0; - } - sql.deleteCharAt(sql.length()-1); - pstmt = con.prepareStatement(sql.toString()); - return pstmt.executeUpdate(); - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(rs); - } - } - - /** - * Given a patient list object (thus patient list id) gets patient list list. - */ - private ArrayList getSampleListList(SampleList sampleList, Connection con) throws DaoException { - - PreparedStatement pstmt ; - ResultSet rs = null; - try { - pstmt = con.prepareStatement - ("SELECT * FROM sample_list_list WHERE LIST_ID = ?"); - pstmt.setInt(1, sampleList.getSampleListId()); - rs = pstmt.executeQuery(); - ArrayList patientIds = new ArrayList(); - while (rs.next()) { - // NOTE - as of 12/12/14, patient lists contain sample ids - Sample sample = DaoSample.getSampleById(rs.getInt("SAMPLE_ID")); - patientIds.add(sample.getStableId()); - } - return patientIds; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(rs); - } - } - - /** - * Given a result set, creates a patient list object. - */ - private SampleList extractSampleList(ResultSet rs) throws SQLException { - SampleList sampleList = new SampleList(); - sampleList.setStableId(rs.getString("STABLE_ID")); - sampleList.setCancerStudyId(rs.getInt("CANCER_STUDY_ID")); - sampleList.setName(rs.getString("NAME")); - sampleList.setSampleListCategory(SampleListCategory.get(rs.getString("CATEGORY"))); - sampleList.setDescription(rs.getString("DESCRIPTION")); - sampleList.setSampleListId(rs.getInt("LIST_ID")); - return sampleList; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoSampleProfile.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoSampleProfile.java deleted file mode 100644 index acfb299d314..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoSampleProfile.java +++ /dev/null @@ -1,392 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; - -import org.apache.commons.lang3.StringUtils; - -import java.sql.*; -import java.util.*; - -/** - * Data access object for sample_profile table - */ -public final class DaoSampleProfile { - /** - * Adds a record to the sample_profile table. This is part of adding records from genetic profiles. - * Can use the bulk loader. - */ - private DaoSampleProfile() {} - - private static final int NO_SUCH_PROFILE_ID = -1; - private static final String TABLE_NAME = "sample_profile"; - - public static int addSampleProfile(Integer sampleId, Integer geneticProfileId, Integer panelId) throws DaoException { - if (MySQLbulkLoader.isBulkLoad()) { - - // Add new record using bulk loader. Order of fields is: - // 1. sample ID - // 2. genetic Profile ID - // 3. gene panel ID - if (panelId != null) { - MySQLbulkLoader.getMySQLbulkLoader(TABLE_NAME).insertRecord( - Integer.toString(sampleId), - Integer.toString(geneticProfileId), - Integer.toString(panelId)); - } else { - MySQLbulkLoader.getMySQLbulkLoader(TABLE_NAME).insertRecord( - Integer.toString(sampleId), - Integer.toString(geneticProfileId), - null); - } - - return 1; - } - - // Add new record without using bulk loader - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - if (!sampleExistsInGeneticProfile(sampleId, geneticProfileId)) { - con = JdbcUtil.getDbConnection(DaoSampleProfile.class); - pstmt = con.prepareStatement - ("INSERT INTO sample_profile (`SAMPLE_ID`, `GENETIC_PROFILE_ID`, `PANEL_ID`) " - + "VALUES (?,?,?)"); - pstmt.setInt(1, sampleId); - pstmt.setInt(2, geneticProfileId); - if (panelId != null) { - pstmt.setInt(3, panelId); - } - else { - pstmt.setNull(3, java.sql.Types.INTEGER); - } - return pstmt.executeUpdate(); - } else { - // This should be an error, because the record already exists. - return 0; - } - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleProfile.class, con, pstmt, rs); - } - } - - public static void updateSampleProfile(Integer sampleId, Integer geneticProfileId, Integer panelId) throws DaoException { - /** - * Update a record in the sample_profile table when adding gene panel field from the sample profile matrix. - * Can not use the bulk loader, because the sample might already be added, which requires an UPDATE of the - * record. - */ - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoSampleProfile.class); - if (!sampleExistsInGeneticProfile(sampleId, geneticProfileId)) { - - pstmt = con.prepareStatement - ("INSERT INTO sample_profile (`SAMPLE_ID`, `GENETIC_PROFILE_ID`, `PANEL_ID`) VALUES (?,?,?)"); - pstmt.setInt(1, sampleId); - pstmt.setInt(2, geneticProfileId); - if (panelId != null) { - pstmt.setInt(3, panelId); - } else { - pstmt.setNull(3, java.sql.Types.INTEGER); - } - } else { - pstmt = con.prepareStatement - ("UPDATE `sample_profile` SET `PANEL_ID` = ? WHERE (`SAMPLE_ID` = ? AND `GENETIC_PROFILE_ID` = ?)"); - if (panelId != null) { - pstmt.setInt(1, panelId); - } else { - pstmt.setNull(1, java.sql.Types.INTEGER); - } - pstmt.setInt(2, sampleId); - pstmt.setInt(3, geneticProfileId); - } - pstmt.executeUpdate(); - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleProfile.class, con, pstmt, rs); - } - } - - public static boolean sampleExistsInGeneticProfile(int sampleId, int geneticProfileId) - throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoSampleProfile.class); - pstmt = con.prepareStatement - ("SELECT * FROM sample_profile WHERE SAMPLE_ID = ? AND GENETIC_PROFILE_ID = ?"); - pstmt.setInt(1, sampleId); - pstmt.setInt(2, geneticProfileId); - rs = pstmt.executeQuery(); - return (rs.next()); - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleProfile.class, con, pstmt, rs); - } - } - - public static int countSamplesInProfile(int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleProfile.class); - pstmt = con.prepareStatement - ("SELECT count(*) FROM sample_profile WHERE GENETIC_PROFILE_ID = ?"); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - if (rs.next()) { - return rs.getInt(1); - } - return 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleProfile.class, con, pstmt, rs); - } - } - - public static int getProfileIdForSample(int sampleId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - try { - con = JdbcUtil.getDbConnection(DaoSampleProfile.class); - pstmt = con.prepareStatement("SELECT GENETIC_PROFILE_ID FROM sample_profile WHERE SAMPLE_ID = ?"); - pstmt.setInt(1, sampleId); - rs = pstmt.executeQuery(); - if( rs.next() ) { - return rs.getInt("GENETIC_PROFILE_ID"); - }else{ - return NO_SUCH_PROFILE_ID; - } - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleProfile.class, con, pstmt, rs); - } - } - - public static ArrayList getAllSampleIdsInProfile(int geneticProfileId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleProfile.class); - pstmt = con.prepareStatement - ("SELECT * FROM sample_profile WHERE GENETIC_PROFILE_ID = ?"); - pstmt.setInt(1, geneticProfileId); - rs = pstmt.executeQuery(); - ArrayList sampleIds = new ArrayList(); - while (rs.next()) { - Sample sample = DaoSample.getSampleById(rs.getInt("SAMPLE_ID")); - sampleIds.add(rs.getInt("SAMPLE_ID")); - } - return sampleIds; - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleProfile.class, con, pstmt, rs); - } - } - - public static ArrayList getAllSamples() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleProfile.class); - pstmt = con.prepareStatement - ("SELECT * FROM sample_profile"); - rs = pstmt.executeQuery(); - ArrayList sampleIds = new ArrayList(); - while (rs.next()) { - sampleIds.add(rs.getInt("SAMPLE_ID")); - } - return sampleIds; - } catch (NullPointerException e) { - throw new DaoException(e); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleProfile.class, con, pstmt, rs); - } - } - - /** - * Counts the number of sequenced cases in each cancer study, returning a list of maps - * containing the cancer study (full string name), the cancer type (e.g. `brca_tcga`), and the count - * - * @return [ list of maps { cancer_study, cancer_type, num_sequenced_samples } ] - * @throws DaoException - * @author Gideon Dresdner - * - */ - public static List> metaData(List cancerStudies) throws DaoException { - // collect all mutationProfileIds - Map id2MutationProfile = new HashMap(); - for (CancerStudy cancerStudy : cancerStudies) { - GeneticProfile mutationProfile = cancerStudy.getMutationProfile(); - - if (mutationProfile != null) { - // e.g. if cancerStudy == All Cancer Studies - Integer mutationProfileId = mutationProfile.getGeneticProfileId(); - id2MutationProfile.put(mutationProfileId, mutationProfile); - } - } - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - - List> data = new ArrayList>(); - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - - String sql = "select `GENETIC_PROFILE_ID`, count(`SAMPLE_ID`) from sample_profile " + - " where `GENETIC_PROFILE_ID` in ("+ StringUtils.join(id2MutationProfile.keySet(), ",") + ")" + - " group by `GENETIC_PROFILE_ID`"; - - pstmt = con.prepareStatement(sql); - rs = pstmt.executeQuery(); - - while (rs.next()) { - Map datum = new HashMap(); - - Integer mutationProfileId = rs.getInt(1); - Integer numSequencedSamples = rs.getInt(2); - - GeneticProfile mutationProfile = id2MutationProfile.get(mutationProfileId); - Integer cancerStudyId = mutationProfile.getCancerStudyId(); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByInternalId(cancerStudyId); - String cancerStudyName = cancerStudy.getName(); - String cancerType = cancerStudy.getTypeOfCancerId(); - - datum.put("cancer_study", cancerStudyName); - datum.put("cancer_type", cancerType); - datum.put("color", DaoTypeOfCancer.getTypeOfCancerById(cancerType).getDedicatedColor()); - datum.put("num_sequenced_samples", numSequencedSamples); - - data.add(datum); - } - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - - return data; - } - - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleProfile.class); - pstmt = con.prepareStatement("TRUNCATE TABLE sample_profile"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleProfile.class, con, pstmt, rs); - } - } - - public static void deleteRecords(List sampleIds, List profileIds) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleProfile.class); - for (int i = 0; i < sampleIds.size(); i++) { - pstmt = con.prepareCall("DELETE FROM sample_profile WHERE sample_id = ? and genetic_profile_id = ?"); - pstmt.setInt(1, sampleIds.get(i)); - pstmt.setInt(2, profileIds.get(i)); - pstmt.executeUpdate(); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleProfile.class, con, pstmt, rs); - } - } - - public static boolean sampleProfileMappingExistsByPanel(Integer panelId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoSampleProfile.class); - pstmt = con.prepareStatement("select count(*) from sample_profile where PANEL_ID = ?"); - pstmt.setInt(1, panelId); - rs = pstmt.executeQuery(); - if (rs.next()) { - return (rs.getInt(1) > 0); - } - else { - return false; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoSampleProfile.class, con, pstmt, rs); - } - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoStructuralVariant.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoStructuralVariant.java deleted file mode 100644 index a11026a84f9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoStructuralVariant.java +++ /dev/null @@ -1,256 +0,0 @@ -/* - * Copyright (c) 2017 - 2022 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; -import org.mskcc.cbio.portal.model.StructuralVariant; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; -import java.util.List; - -public class DaoStructuralVariant { - - private DaoStructuralVariant() { - } - /** - * Adds a new Structural variant record to the database. - * @param structuralVariant - * @return number of records successfully added - * @throws DaoException - */ - - public static void addStructuralVariantToBulkLoader(StructuralVariant structuralVariant) throws DaoException { - MySQLbulkLoader bl = MySQLbulkLoader.getMySQLbulkLoader("structural_variant"); - String[] fieldNames = new String[]{ - "INTERNAL_ID", - "GENETIC_PROFILE_ID", - "SAMPLE_ID", - "SITE1_ENTREZ_GENE_ID", - "SITE1_ENSEMBL_TRANSCRIPT_ID", - "SITE1_CHROMOSOME", - "SITE1_POSITION", - "SITE1_CONTIG", - "SITE1_REGION", - "SITE1_REGION_NUMBER", - "SITE1_DESCRIPTION", - "SITE2_ENTREZ_GENE_ID", - "SITE2_ENSEMBL_TRANSCRIPT_ID", - "SITE2_CHROMOSOME", - "SITE2_POSITION", - "SITE2_CONTIG", - "SITE2_REGION", - "SITE2_REGION_NUMBER", - "SITE2_DESCRIPTION", - "SITE2_EFFECT_ON_FRAME", - "NCBI_BUILD", - "DNA_SUPPORT", - "RNA_SUPPORT", - "NORMAL_READ_COUNT", - "TUMOR_READ_COUNT", - "NORMAL_VARIANT_COUNT", - "TUMOR_VARIANT_COUNT", - "NORMAL_PAIRED_END_READ_COUNT", - "TUMOR_PAIRED_END_READ_COUNT", - "NORMAL_SPLIT_READ_COUNT", - "TUMOR_SPLIT_READ_COUNT", - "ANNOTATION", - "BREAKPOINT_TYPE", - "CONNECTION_TYPE", - "EVENT_INFO", - "CLASS", - "LENGTH", - "COMMENTS", - "SV_STATUS", - "ANNOTATION_JSON" - }; - bl.setFieldNames(fieldNames); - - // write to the temp file maintained by the MySQLbulkLoader - bl.insertRecord( - Long.toString(structuralVariant.getInternalId()), - Integer.toString(structuralVariant.getGeneticProfileId()), - Integer.toString(structuralVariant.getSampleIdInternal()), - structuralVariant.getSite1EntrezGeneId() == null ? null : Long.toString(structuralVariant.getSite1EntrezGeneId()), - structuralVariant.getSite1EnsemblTranscriptId(), - structuralVariant.getSite1Chromosome(), - Integer.toString(structuralVariant.getSite1Position()), - structuralVariant.getSite1Contig(), - structuralVariant.getSite1Region(), - Integer.toString(structuralVariant.getSite1RegionNumber()), - structuralVariant.getSite1Description(), - structuralVariant.getSite2EntrezGeneId() == null ? null : Long.toString(structuralVariant.getSite2EntrezGeneId()), - structuralVariant.getSite2EnsemblTranscriptId(), - structuralVariant.getSite2Chromosome(), - Integer.toString(structuralVariant.getSite2Position()), - structuralVariant.getSite2Contig(), - structuralVariant.getSite2Region(), - Integer.toString(structuralVariant.getSite2RegionNumber()), - structuralVariant.getSite2Description(), - structuralVariant.getSite2EffectOnFrame(), - structuralVariant.getNcbiBuild(), - structuralVariant.getDnaSupport(), - structuralVariant.getRnaSupport(), - Integer.toString(structuralVariant.getNormalReadCount()), - Integer.toString(structuralVariant.getTumorReadCount()), - Integer.toString(structuralVariant.getNormalVariantCount()), - Integer.toString(structuralVariant.getTumorVariantCount()), - Integer.toString(structuralVariant.getNormalPairedEndReadCount()), - Integer.toString(structuralVariant.getTumorPairedEndReadCount()), - Integer.toString(structuralVariant.getNormalSplitReadCount()), - Integer.toString(structuralVariant.getTumorSplitReadCount()), - structuralVariant.getAnnotation(), - structuralVariant.getBreakpointType(), - structuralVariant.getConnectionType(), - structuralVariant.getEventInfo(), - structuralVariant.getVariantClass(), - Integer.toString(structuralVariant.getLength()), - structuralVariant.getComments(), - structuralVariant.getSvStatus(), - structuralVariant.getAnnotationJson() - ); - - if ((structuralVariant.getDriverFilter() != null - && !structuralVariant.getDriverFilter().isEmpty() - && !structuralVariant.getDriverFilter().toLowerCase().equals("na")) - || - (structuralVariant.getDriverTiersFilter() != null - && !structuralVariant.getDriverTiersFilter().isEmpty() - && !structuralVariant.getDriverTiersFilter().toLowerCase().equals("na"))) { - MySQLbulkLoader.getMySQLbulkLoader("alteration_driver_annotation").insertRecord( - Long.toString(structuralVariant.getInternalId()), - Integer.toString(structuralVariant.getGeneticProfileId()), - Integer.toString(structuralVariant.getSampleIdInternal()), - structuralVariant.getDriverFilter(), - structuralVariant.getDriverFilterAnn(), - structuralVariant.getDriverTiersFilter(), - structuralVariant.getDriverTiersFilterAnn() - ); - } - } - - public static long getLargestInternalId() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoMutation.class); - pstmt = con.prepareStatement("SELECT MAX(`INTERNAL_ID`) FROM `structural_variant`"); - rs = pstmt.executeQuery(); - return rs.next() ? rs.getLong(1) : 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoMutation.class, con, pstmt, rs); - } - } - - /** - * Return all structural variants in the database. - * @return - * @throws DaoException - */ - public static List getAllStructuralVariants() throws DaoException { - ArrayList result = new ArrayList<>(); - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneset.class); - pstmt = con.prepareStatement( - "SELECT * FROM structural_variant" + - " LEFT JOIN alteration_driver_annotation ON" + - " structural_variant.GENETIC_PROFILE_ID = alteration_driver_annotation.GENETIC_PROFILE_ID" + - " and structural_variant.SAMPLE_ID = alteration_driver_annotation.SAMPLE_ID" + - " and structural_variant.INTERNAL_ID = alteration_driver_annotation.ALTERATION_EVENT_ID"); - rs = pstmt.executeQuery(); - - while (rs.next()) { - result.add(extractStructuralVariant(rs)); - } - return result; - } - catch (SQLException e) { - throw new DaoException(e); - } - finally { - JdbcUtil.closeAll(DaoGeneset.class, con, pstmt, rs); - } - } - - /** - * Extracts StructuralVariant record from ResultSet. - * @param rs - * @return StructuralVariant record - */ - private static StructuralVariant extractStructuralVariant(ResultSet rs) throws SQLException { - StructuralVariant structuralVariant = new StructuralVariant(); - structuralVariant.setGeneticProfileId(rs.getInt("GENETIC_PROFILE_ID")); - structuralVariant.setSampleIdInternal(rs.getInt("SAMPLE_ID")); - structuralVariant.setSite1EntrezGeneId(rs.getLong("SITE1_ENTREZ_GENE_ID")); - structuralVariant.setSite1EnsemblTranscriptId(rs.getString("SITE1_ENSEMBL_TRANSCRIPT_ID")); - structuralVariant.setSite1Chromosome(rs.getString("SITE1_CHROMOSOME")); - structuralVariant.setSite1Position(rs.getInt("SITE1_POSITION")); - structuralVariant.setSite1Contig(rs.getString("SITE1_CONTIG")); - structuralVariant.setSite1Region(rs.getString("SITE1_REGION")); - structuralVariant.setSite1RegionNumber(rs.getInt("SITE1_REGION_NUMBER")); - structuralVariant.setSite1Description(rs.getString("SITE1_DESCRIPTION")); - structuralVariant.setSite2EntrezGeneId(rs.getLong("SITE2_ENTREZ_GENE_ID")); - structuralVariant.setSite2EnsemblTranscriptId(rs.getString("SITE2_ENSEMBL_TRANSCRIPT_ID")); - structuralVariant.setSite2Chromosome(rs.getString("SITE2_CHROMOSOME")); - structuralVariant.setSite2Position(rs.getInt("SITE2_POSITION")); - structuralVariant.setSite2Contig(rs.getString("SITE2_CONTIG")); - structuralVariant.setSite2Region(rs.getString("SITE2_REGION")); - structuralVariant.setSite2RegionNumber(rs.getInt("SITE2_REGION_NUMBER")); - structuralVariant.setSite2Description(rs.getString("SITE2_DESCRIPTION")); - structuralVariant.setSite2EffectOnFrame(rs.getString("SITE2_EFFECT_ON_FRAME")); - structuralVariant.setNcbiBuild(rs.getString("NCBI_BUILD")); - structuralVariant.setDnaSupport(rs.getString("DNA_SUPPORT")); - structuralVariant.setRnaSupport(rs.getString("RNA_SUPPORT")); - structuralVariant.setNormalReadCount(rs.getInt("NORMAL_READ_COUNT")); - structuralVariant.setTumorReadCount(rs.getInt("TUMOR_READ_COUNT")); - structuralVariant.setNormalVariantCount(rs.getInt("NORMAL_VARIANT_COUNT")); - structuralVariant.setTumorVariantCount(rs.getInt("TUMOR_VARIANT_COUNT")); - structuralVariant.setNormalPairedEndReadCount(rs.getInt("NORMAL_PAIRED_END_READ_COUNT")); - structuralVariant.setTumorPairedEndReadCount(rs.getInt("TUMOR_PAIRED_END_READ_COUNT")); - structuralVariant.setNormalSplitReadCount(rs.getInt("NORMAL_SPLIT_READ_COUNT")); - structuralVariant.setTumorSplitReadCount(rs.getInt("TUMOR_SPLIT_READ_COUNT")); - structuralVariant.setAnnotation(rs.getString("ANNOTATION")); - structuralVariant.setBreakpointType(rs.getString("BREAKPOINT_TYPE")); - structuralVariant.setConnectionType(rs.getString("CONNECTION_TYPE")); - structuralVariant.setEventInfo(rs.getString("EVENT_INFO")); - structuralVariant.setVariantClass(rs.getString("CLASS")); - structuralVariant.setLength(rs.getInt("LENGTH")); - structuralVariant.setComments(rs.getString("COMMENTS")); - structuralVariant.setDriverFilter(rs.getString("DRIVER_FILTER")); - structuralVariant.setDriverFilterAnn(rs.getString("DRIVER_FILTER_ANNOTATION")); - structuralVariant.setDriverTiersFilter(rs.getString("DRIVER_TIERS_FILTER")); - structuralVariant.setDriverTiersFilterAnn(rs.getString("DRIVER_TIERS_FILTER_ANNOTATION")); - structuralVariant.setSvStatus(rs.getString("SV_STATUS")); - structuralVariant.setAnnotationJson(rs.getString("ANNOTATION_JSON")); - return structuralVariant; - } -} - diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoTypeOfCancer.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoTypeOfCancer.java deleted file mode 100644 index 45aea875c96..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoTypeOfCancer.java +++ /dev/null @@ -1,196 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; - -import org.mskcc.cbio.portal.model.TypeOfCancer; - -/** - * A TypeOfCancer is a clinical cancer type, such as Glioblastoma, Ovarian, etc. - * Eventually, we'll have ontology problems with this, but initially the dbms - * will be loaded from a file with a static table of types. - * - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -public class DaoTypeOfCancer { - - // these methods should be static, as this object has no state - public static int addTypeOfCancer(TypeOfCancer typeOfCancer) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoTypeOfCancer.class); - pstmt = con.prepareStatement("INSERT INTO type_of_cancer ( `TYPE_OF_CANCER_ID`, `NAME`, `DEDICATED_COLOR`, `SHORT_NAME`, `PARENT` ) VALUES (?,?,?,?,?)"); - pstmt.setString(1, typeOfCancer.getTypeOfCancerId()); - pstmt.setString(2, typeOfCancer.getName()); - pstmt.setString(3, typeOfCancer.getDedicatedColor()); - pstmt.setString(4, typeOfCancer.getShortName()); - pstmt.setString(5, typeOfCancer.getParentTypeOfCancerId()); - return pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoTypeOfCancer.class, con, pstmt, rs); - } - } - - public static TypeOfCancer getTypeOfCancerById(String typeOfCancerId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoTypeOfCancer.class); - pstmt = con.prepareStatement("SELECT * FROM type_of_cancer WHERE TYPE_OF_CANCER_ID=?"); - pstmt.setString(1, typeOfCancerId); - rs = pstmt.executeQuery(); - if (rs.next()) { - return extractTypeOfCancer(rs); - } - return null; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoTypeOfCancer.class, con, pstmt, rs); - } - } - - public static ArrayList getAllTypesOfCancer() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoTypeOfCancer.class); - pstmt = con.prepareStatement("SELECT * FROM type_of_cancer"); - rs = pstmt.executeQuery(); - ArrayList list = new ArrayList(); - while (rs.next()) { - TypeOfCancer typeOfCancer = extractTypeOfCancer(rs); - list.add(typeOfCancer); - } - return list; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoTypeOfCancer.class, con, pstmt, rs); - } - } - - public static int getCount() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoTypeOfCancer.class); - pstmt = con.prepareStatement("SELECT COUNT(*) FROM type_of_cancer"); - rs = pstmt.executeQuery(); - if (rs.next()) { - return rs.getInt(1); - } - return 0; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoTypeOfCancer.class, con, pstmt, rs); - } - } - - /** - * Deletes all records from DB using TRUNCATE statement! - * - * @throws DaoException - * - * @deprecated do not use this! Use deleteAllTypesOfCancer instead - */ - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoTypeOfCancer.class); - JdbcUtil.disableForeignKeyCheck(con); - pstmt = con.prepareStatement("TRUNCATE TABLE type_of_cancer"); - pstmt.executeUpdate(); - JdbcUtil.enableForeignKeyCheck(con); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoTypeOfCancer.class, con, pstmt, rs); - } - } - - /** - * Deletes all records from DB using DELETE statement. - * - * @param typeOfCancerId - * @throws DaoException - */ - public static void deleteAllTypesOfCancer() throws DaoException { - for (TypeOfCancer typeOfCancer : getAllTypesOfCancer()) { - deleteTypeOfCancer(typeOfCancer.getTypeOfCancerId()); - } - } - - public static void deleteTypeOfCancer(String typeOfCancerId) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoTypeOfCancer.class); - pstmt = con.prepareStatement("DELETE from " + "type_of_cancer WHERE TYPE_OF_CANCER_ID=?"); - pstmt.setString(1, typeOfCancerId); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoTypeOfCancer.class, con, pstmt, rs); - } - } - - private static TypeOfCancer extractTypeOfCancer(ResultSet rs) throws SQLException { - TypeOfCancer typeOfCancer = new TypeOfCancer(); - - typeOfCancer.setTypeOfCancerId(rs.getString("TYPE_OF_CANCER_ID")); - typeOfCancer.setName(rs.getString("NAME")); - typeOfCancer.setDedicatedColor(rs.getString("DEDICATED_COLOR")); - typeOfCancer.setShortName(rs.getString("SHORT_NAME")); - typeOfCancer.setParentTypeOfCancerId(rs.getString("PARENT")); - - return typeOfCancer; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoUser.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoUser.java deleted file mode 100644 index 4d03ead7bad..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoUser.java +++ /dev/null @@ -1,157 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; - -import org.mskcc.cbio.portal.model.User; - -/** - * A User. They must have an EMAIL & ENABLED. - * NAME is optional (i.e., could be ""). - * - * @author Arthur Goldberg goldberg@cbio.mskcc.org - * @author Benjamin Gross - */ -public class DaoUser { - - public static int addUser(User user) throws DaoException { - - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoUser.class); - pstmt = con.prepareStatement("INSERT INTO users ( `EMAIL`, `NAME`, `ENABLED` ) VALUES (?,?,?)"); - pstmt.setString(1, user.getEmail()); - pstmt.setString(2, user.getName()); - pstmt.setBoolean(3, user.isEnabled()); - return pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoUser.class, con, pstmt, rs); - } - } - - /** - * If a user with the email exists in the dbms, return their User object. - * Otherwise, return null. - * - * @param email - * @return - * @throws DaoException - */ - public static User getUserByEmail(String email) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoUser.class); - pstmt = con.prepareStatement("SELECT * FROM users WHERE EMAIL=?"); - pstmt.setString(1, email); - rs = pstmt.executeQuery(); - if (rs.next()) { - return extractUser(rs); - } - return null; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoUser.class, con, pstmt, rs); - } - } - - public static ArrayList getAllUsers() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoUser.class); - pstmt = con.prepareStatement("SELECT * FROM users"); - rs = pstmt.executeQuery(); - ArrayList list = new ArrayList(); - while (rs.next()) { - User user = extractUser(rs); - list.add(user); - } - return list; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoUser.class, con, pstmt, rs); - } - } - - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoUser.class); - pstmt = con.prepareStatement("TRUNCATE TABLE users"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoUser.class, con, pstmt, rs); - } - } - - public static void deleteUser(String email) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoUser.class); - pstmt = con.prepareStatement("DELETE FROM users WHERE EMAIL=?"); - pstmt.setString(1, email); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoUser.class, con, pstmt, rs); - } - } - - private static User extractUser(ResultSet rs) throws SQLException { - - return new User(rs.getString("EMAIL"), - rs.getString("NAME"), - rs.getBoolean("ENABLED")); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoUserAuthorities.java b/core/src/main/java/org/mskcc/cbio/portal/dao/DaoUserAuthorities.java deleted file mode 100644 index 6b7df403169..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/DaoUserAuthorities.java +++ /dev/null @@ -1,127 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -// imports -import org.mskcc.cbio.portal.model.User; -import org.mskcc.cbio.portal.model.UserAuthorities; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; - -/** - * DAO into authorities table. - * - * @author Benjamin Gross - */ -public class DaoUserAuthorities { - - public static int addUserAuthorities(UserAuthorities userAuthorities) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - int toReturn = 0; - try { - con = JdbcUtil.getDbConnection(DaoUserAuthorities.class); - String email = userAuthorities.getEmail(); - for (String authority : userAuthorities.getAuthorities()) { - pstmt = con.prepareStatement("INSERT INTO authorities (`EMAIL`, `AUTHORITY`) VALUES (?,?)"); - pstmt.setString(1, email); - pstmt.setString(2, authority); - toReturn += pstmt.executeUpdate(); - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoUserAuthorities.class, con, pstmt, rs); - } - - // outta here - return toReturn; - } - - public static UserAuthorities getUserAuthorities(User user) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoUserAuthorities.class); - pstmt = con.prepareStatement("SELECT * FROM authorities where EMAIL=?"); - pstmt.setString(1, user.getEmail()); - rs = pstmt.executeQuery(); - ArrayList authorities = new ArrayList(); - while (rs.next()) { - authorities.add(rs.getString("AUTHORITY")); - } - return new UserAuthorities(user.getEmail(), authorities); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoUserAuthorities.class, con, pstmt, rs); - } - } - - public static void removeUserAuthorities(User user) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoUserAuthorities.class); - pstmt = con.prepareStatement("DELETE FROM authorities where EMAIL=?"); - pstmt.setString(1, user.getEmail()); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoUserAuthorities.class, con, pstmt, rs); - } - } - - public static void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoUserAuthorities.class); - pstmt = con.prepareStatement("TRUNCATE TABLE authorities"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoUserAuthorities.class, con, pstmt, rs); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/GeneticAlterationUtil.java b/core/src/main/java/org/mskcc/cbio/portal/dao/GeneticAlterationUtil.java deleted file mode 100644 index c9327d786fd..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/GeneticAlterationUtil.java +++ /dev/null @@ -1,173 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; - -import org.springframework.stereotype.Component; -import org.springframework.beans.factory.annotation.Autowired; -import org.apache.commons.math3.stat.correlation.PearsonsCorrelation; -import java.util.*; - -/** - * Utility Class for Retrieving Genetic Alteration Data. - * - * This class is a wrapper for multiple DAO Classes, and enables you to retrieve different types - * of genomic data, and based on different types of genes, e.g. canonical (protein-coding) genes - * and microRNAs. - * - * @author Ethan Cerami. - */ -@Component -public class GeneticAlterationUtil { - private static final String NAN = "NaN"; - - /** - * Gets a Row of data corresponding to: target gene, within the target genetic profile - * and only within the target samples. - * - * @param targetGene Target Gene. - * @param targetSampleList Target Sample List. - * @param targetGeneticProfile Target Genetic Profile. - * @return Array List of String values. - * @throws DaoException Database Error. - */ - public static ArrayList getGeneticAlterationDataRow(Gene targetGene, - List targetSampleList, - GeneticProfile targetGeneticProfile) throws DaoException { - ArrayList dataRow = new ArrayList(); - DaoGeneticAlteration daoGeneticAlteration = DaoGeneticAlteration.getInstance(); - // First branch: are we dealing with a canonical (protein-coding) gene or a microRNA? - if (targetGene instanceof CanonicalGene) { - CanonicalGene canonicalGene = (CanonicalGene) targetGene; - Map sampleMap; - - // Handle Mutations one way - if (targetGeneticProfile.getGeneticAlterationType() == GeneticAlterationType.MUTATION_EXTENDED) { - sampleMap = getMutationMap(targetSampleList, - targetGeneticProfile.getGeneticProfileId(), - canonicalGene.getEntrezGeneId()); - } - else { - - // Handle All Other Data Types another way - sampleMap = daoGeneticAlteration.getGeneticAlterationMap(targetGeneticProfile.getGeneticProfileId(), - canonicalGene.getEntrezGeneId()); - } - - // Iterate through all samples in the profile - for (Integer sampleId : targetSampleList) { - String value = sampleMap.get(sampleId); - if (value == null) { - dataRow.add (NAN); - } else { - dataRow.add (value); - } - } - } - return dataRow; - } - - /** - * Gets a Map of Mutation Data. - */ - private static HashMap getMutationMap (List targetSampleList, - int geneticProfileId, long entrezGeneId) throws DaoException { - HashMap mutationMap = new HashMap (); - List mutationList = DaoMutation.getMutations(geneticProfileId, targetSampleList, entrezGeneId); - for (ExtendedMutation mutation : mutationList) { - Integer sampleId = mutation.getSampleId(); - // Handle the possibility of multiple mutations in the same gene / sample - // Handles issue: 165 - if (mutationMap.containsKey(sampleId)) { - String existingStr = mutationMap.get(sampleId); - mutationMap.put(sampleId, existingStr + "," + - mutation.getProteinChange()); - } else { - mutationMap.put(sampleId, mutation.getProteinChange()); - } - } - return mutationMap; - } - - - private static Map getBestCorrelatedSampleMap(Map[] sampleMaps, - List targetSampleList, - List correlatedToData) { - if (sampleMaps.length==1 || correlatedToData==null || correlatedToData.size()!= targetSampleList.size()) { - return sampleMaps[0]; - } - Map ret = null; - double maxCorr = Double.NEGATIVE_INFINITY; - for (Map map : sampleMaps) { - double corr = calcCorrCoef(map, targetSampleList, correlatedToData); - if (corr > maxCorr) { - maxCorr = corr; - ret = map; - } - } - return ret; - } - - private static double calcCorrCoef(Map sampleMap, - List targetSampleList, - List correlatedToData) { - try { - List l1 = new ArrayList(); - List l2 = new ArrayList(); - for (int i=0; i. -*/ - -package org.mskcc.cbio.portal.dao; - -import java.sql.*; -import java.util.*; -import javax.sql.DataSource; -import org.apache.commons.dbcp2.BasicDataSource; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.mskcc.cbio.portal.util.*; - -/** - * Connection Utility for JDBC. - * - * @author Ethan Cerami - * @author Ersin Ciftci - */ -public class JdbcUtil { - private static DataSource dataSource; - private static Map activeConnectionCount = new HashMap(); // keep track of the number of active connection per class/requester - private static final Logger LOG = LoggerFactory.getLogger(JdbcUtil.class); - - /** - * Gets the data source - * @return the data source - */ - public static DataSource getDataSource() { - if (dataSource == null) { - dataSource = new JdbcDataSource(); - } - return dataSource; - } - - /** - * Sets the data source - * @param value the data source - */ - public static void setDataSource(DataSource value) { - dataSource = value; - } - - /** - * Gets Connection to the Database. - * - * @param clazz class - * @return Live Connection to Database. - * @throws java.sql.SQLException Error Connecting to Database. - */ - public static Connection getDbConnection(Class clazz) throws SQLException { - return getDbConnection(clazz.getName()); - } - - /** - * Gets Connection to the Database. - * - * @param requester name - * @return Live Connection to Database. - * @throws java.sql.SQLException Error Connecting to Database. - */ - private static Connection getDbConnection(String requester) throws SQLException { - // this method should be syncronized - // but may slow the speed? - Connection con; - try { - con = getDataSource().getConnection(); - } catch (Exception e) { - logMessage(e.getMessage()); - throw new SQLException(e); - } - if (requester != null) { - Integer count = activeConnectionCount.get(requester); - activeConnectionCount.put(requester, count == null ? 1 : (count + 1)); - } - return con; - } - - /** - * Frees Database Connection. - * - * @param con Connection Object. - */ - public static void closeConnection(Class clazz, Connection con) { - closeConnection(clazz.getName(), con); - } - - private static void closeConnection(String requester, Connection con) { - try { - if (con != null && !con.isClosed()) { - con.close(); - if (requester!=null) { - int count = activeConnectionCount.get(requester) - 1; - if (count < 0) { - // since adding connection is not synchronized, the count may not be the real one - count = 0; - } - activeConnectionCount.put(requester, count); - } - } - } catch (Exception e) { - logMessage("Problem Closed a MySQL connection from " + requester + ": " + activeConnectionCount.toString()); - e.printStackTrace(); - } - } - - /** - * Frees PreparedStatement and ResultSet. - * - * @param rs ResultSet Object. - */ - public static void closeAll(ResultSet rs) { - JdbcUtil.closeAll((String)null, null, null, rs); - } - - /** - * Frees Database Connection. - * - * @param con Connection Object. - * @param ps Prepared Statement Object. - * @param rs ResultSet Object. - */ - public static void closeAll(Class clazz, Connection con, PreparedStatement ps, ResultSet rs) { - closeAll(clazz.getName(), con, ps, rs); - } - - /** - * Frees Database Connection. - * - * @param con Connection Object. - * @param rs ResultSet Object. - */ - private static void closeAll(String requester, Connection con, PreparedStatement ps, ResultSet rs) { - if (rs != null) { - try { - if (!rs.isClosed()) { - rs.close(); - } - } catch (SQLException e) { - e.printStackTrace(); - } - } - if (ps != null) { - try { - if (!ps.isClosed()) { - ps.close(); - } - } catch (SQLException e) { - e.printStackTrace(); - } - } - closeConnection(requester, con); - } - - /** - * Why does closeAll need a PreparedStatement? - * This is a copy of closeAll without the PreparedStatement - * @param clazz - * @param con - * @param rs - */ - public static void closeAll(Class clazz, Connection con, ResultSet rs) { - String requester = clazz.getName(); - closeConnection(requester, con); - if (rs != null) { - try { - if (!rs.isClosed()) { - rs.close(); - } - } catch (SQLException e) { - e.printStackTrace(); - } - } - } - - private static void logMessage(String message) { - if (LOG.isInfoEnabled()) { - LOG.info(message); - } - System.err.println(message); - } - - // is it good to put the two methods below here? - static Integer readIntegerFromResultSet(ResultSet rs, String column) throws SQLException { - int i = rs.getInt(column); - return rs.wasNull() ? null : i; - } - - static Long readLongFromResultSet(ResultSet rs, String column) throws SQLException { - long l = rs.getInt(column); - return rs.wasNull() ? null : l; - } - - static Double readDoubleFromResultSet(ResultSet rs, String column) throws SQLException { - double d = rs.getDouble(column); - return rs.wasNull() ? null : d; - } - - /** - * Tells the database to ignore foreign key constraints, effective only for current session. - * Useful when you want to truncate a table that has foreign key constraints. Note that this - * may create orphan records in child tables. - * @param con Database connection - * @throws SQLException - */ - public static void disableForeignKeyCheck(Connection con) throws SQLException { - Statement stmt = con.createStatement(); - stmt.execute("SET FOREIGN_KEY_CHECKS=0"); - stmt.close(); - } - - /** - * Reverses the effect of disableForeignKeyCheck method. - * @param con Database Connection - * @throws SQLException - */ - public static void enableForeignKeyCheck(Connection con) throws SQLException { - Statement stmt = con.createStatement(); - stmt.execute("SET FOREIGN_KEY_CHECKS=1"); - stmt.close(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/dao/MySQLbulkLoader.java b/core/src/main/java/org/mskcc/cbio/portal/dao/MySQLbulkLoader.java deleted file mode 100644 index c9b23e64d1f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/dao/MySQLbulkLoader.java +++ /dev/null @@ -1,305 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.util.*; -import org.apache.commons.io.FileUtils; - -import java.io.*; -import java.sql.*; -import java.util.*; -import java.util.stream.Collectors; - -/** - * To speed up CGDS data loading, bulk load from files using MySQL "LOAD DATA INFILE" functionality. - * Intercept each record write in the normal load, buffer it in a temp file, and load the temp file when done. - * NOT thread-safe. - * @author arthur goldberg - * In the future, would be cooler to implement this by overloading the JDBC Connection.prepareStatement - * and PreparedStatement.setX() calls. - */ -public class MySQLbulkLoader { - private static boolean bulkLoad = false; - private static boolean relaxedMode = false; - private String[] fieldNames = null; - - private static final Map mySQLbulkLoaders = new LinkedHashMap(); - /** - * Get a MySQLbulkLoader - * @param dbName database name - * @return - */ - public static MySQLbulkLoader getMySQLbulkLoader(String dbName) { - MySQLbulkLoader mySQLbulkLoader = mySQLbulkLoaders.get(dbName); - if (mySQLbulkLoader==null) { - mySQLbulkLoader = new MySQLbulkLoader(dbName); - mySQLbulkLoaders.put(dbName, mySQLbulkLoader); - } - return mySQLbulkLoader; - } - - /** - * Flushes all pending data from the bulk writer. Temporarily disables referential - * integrity while it does so, largely because MySQL uses a weird model and expects - * referential integrity at each record, not just at the end of the transaction. - * @return the number of rows added - * @throws DaoException - */ - public static int flushAll() throws DaoException { - int checks = 0; - PreparedStatement stmt = null; - boolean executedSetFKChecks = false; - Connection con = null; - try { - con = JdbcUtil.getDbConnection(MySQLbulkLoader.class); - stmt = con.prepareStatement("SELECT @@foreign_key_checks;"); - ResultSet result = stmt.executeQuery(); - - result.first(); - checks = result.getInt(1); - - stmt = con.prepareStatement("SET foreign_key_checks = ?;"); - stmt.setLong(1, 0); - stmt.execute(); - executedSetFKChecks = true; - - int n = 0; - for (MySQLbulkLoader mySQLbulkLoader : mySQLbulkLoaders.values()) { - n += mySQLbulkLoader.loadDataFromTempFileIntoDBMS(); - } - - return n; - } catch (IOException e) { - System.err.println("Could not open temp file"); - e.printStackTrace(); - return -1; - } catch (SQLException e) { - throw new DaoException(e); - } - finally { - mySQLbulkLoaders.clear(); - if (executedSetFKChecks && stmt != null) { - try { - stmt.setLong(1, checks); - stmt.execute(); - } - catch (SQLException e) { - throw new DaoException(e); - } - } - JdbcUtil.closeAll(MySQLbulkLoader.class, con, stmt, null); - } - } - - private String tempFileName = null; - private File tempFileHandle = null; - private BufferedWriter tempFileWriter = null; - private String tableName; - private final String tempTableSuffix = ".tempTable"; - private int rows; - // TODO: make configurable - private static final long numDebuggingRowsToPrint = 0; - - private MySQLbulkLoader( String tableName ){ - try { - openTempFile( tableName ); - this.tableName = tableName; - } catch (Exception e) { - e.printStackTrace(); - } - } - - /** - * Open temp file for table 'tableName'. - * note that auto_increment fields must be handled specially. - * @param tableName - * @throws FileNotFoundException - * @throws IOException - * @throws IllegalArgumentException - */ - private void openTempFile(String tableName) throws IOException { - - tempFileHandle = File.createTempFile( tableName, tempTableSuffix, FileUtils.getTempDirectory() ); - - tempFileName = tempFileHandle.getAbsolutePath(); - - if (!tempFileHandle.exists()) { - throw new FileNotFoundException("File does not exist: " + tempFileHandle); - } - if (!tempFileHandle.isFile()) { - throw new IllegalArgumentException("Should not be a directory: " + tempFileHandle); - } - if (!tempFileHandle.canWrite()) { - throw new IllegalArgumentException("File cannot be written: " + tempFileHandle); - } - - // to improve performance use buffering; FileWriter always assumes default encoding is OK! - this.tempFileWriter = new BufferedWriter(new FileWriter(tempFileHandle, false)); - } - - /** - * write a record's fields, in order, to the table's temp file. if no fields are provided, writes no record. - * fields are TAB separated. - * @param fieldValues - */ - public void insertRecord( String... fieldValues) { - if( fieldValues.length == 0 ){ - return; - } - try { - tempFileWriter.write( escapeValue(fieldValues[0]) ); - for( int i=1; i records inserted into `"+tableName + "` table: " + updateCount); - int nLines = FileUtil.getNumLines(tempFileHandle); - if (nLines!=updateCount && !relaxedMode) { - String otherDetails = ""; - if (stmt.getWarnings() != null) { - otherDetails = "More error/warning details: " + stmt.getWarnings().getMessage(); - } - throw new DaoException("DB Error: only "+updateCount+" of the "+nLines+" records were inserted in `" + tableName + "`. " + otherDetails + - " See tmp file for more details: " + tempFileName); - - } else { - tempFileHandle.delete(); - } - - // reopen empty temp file -- not necessary, this loader will be removed. - //this.tempFileWriter = new BufferedWriter(new FileWriter( this.tempFileHandle, false)); - - return updateCount; - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(MySQLbulkLoader.class, con, pstmt, rs); - } - } - - public String getTempFileName() { - return tempFileName; - } - - public String getTableName() { - return tableName; - } - - public static boolean isBulkLoad() { - return bulkLoad; - } - - public static void bulkLoadOn() { - MySQLbulkLoader.bulkLoad = true; - } - - public static void bulkLoadOff() { - MySQLbulkLoader.bulkLoad = false; - } - - public static void relaxedModeOn() { - MySQLbulkLoader.relaxedMode = true; - } - - public static void relaxedModeOff() { - MySQLbulkLoader.relaxedMode = false; - } - - public void setFieldNames(String[] fieldNames) { - this.fieldNames = fieldNames; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/graph/InteractionToJung.java b/core/src/main/java/org/mskcc/cbio/portal/graph/InteractionToJung.java deleted file mode 100644 index e3b58fc87d6..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/graph/InteractionToJung.java +++ /dev/null @@ -1,115 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.graph; - -import edu.uci.ics.jung.graph.Graph; -import edu.uci.ics.jung.graph.UndirectedSparseMultigraph; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Interaction; - -import java.util.ArrayList; -import java.util.Set; -import java.util.HashSet; - -/** - * Utility Class for converting Interaction Objects to JUNG 2.0 Graphs. - * - * @author Ethan Cerami. - */ -public final class InteractionToJung { - private static final String DELIM = ":"; - - /** - * Private constructor to prevent instantiation. - */ - private InteractionToJung() { - } - - /** - * Creates a JUNG Graph from the Specified List of Interactions. - * - * @param interactionList ArrayList of Interaction Objects. - * @return JUNG Graph. - * @throws DaoException Database Error. - */ - public static Graph createGraph(ArrayList interactionList) - throws DaoException { - Graph graph = new UndirectedSparseMultigraph(); - - // Add Interactions - addInteractionsToGraph(interactionList, graph); - - // All done. Return the graph. - return graph; - } - - private static void addInteractionsToGraph(ArrayList interactionList, - Graph g) throws DaoException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - Set edgeSet = new HashSet(); - for (Interaction interaction : interactionList) { - long geneAId = interaction.getGeneA(); - long geneBId = interaction.getGeneB(); - CanonicalGene geneA = daoGene.getGene(geneAId); - CanonicalGene geneB = daoGene.getGene(geneBId); - - if (geneA == null) { - throw new NullPointerException ("Cannot identify gene for: " + geneAId); - } - if (geneB == null) { - throw new NullPointerException ("Cannot identify gene for: " + geneBId); - } - g.addVertex(geneA.getHugoGeneSymbolAllCaps()); - g.addVertex(geneB.getHugoGeneSymbolAllCaps()); - String edgeParams = interaction.getInteractionType() + DELIM + interaction.getSource() - + DELIM + interaction.getExperimentTypes() + DELIM + interaction.getPmids(); - String completeEdgeKey = createKey(edgeParams, geneA, geneB); - if (!edgeSet.contains(completeEdgeKey)) { - g.addEdge(completeEdgeKey, geneA.getHugoGeneSymbolAllCaps(), geneB.getHugoGeneSymbolAllCaps()); - edgeSet.add(completeEdgeKey); - } - } - } - - private static String createKey (String edgeKey, CanonicalGene geneA, CanonicalGene geneB){ - long idA = geneA.getEntrezGeneId(); - long idB = geneB.getEntrezGeneId(); - if (idA < idB) { - return edgeKey + DELIM + idA + DELIM + idB; - } else { - return edgeKey + DELIM + idB + DELIM + idA; - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/graph/JungToTabDelim.java b/core/src/main/java/org/mskcc/cbio/portal/graph/JungToTabDelim.java deleted file mode 100644 index 2fa56292dea..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/graph/JungToTabDelim.java +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.graph; - -import edu.uci.ics.jung.graph.Graph; -import edu.uci.ics.jung.graph.util.Pair; - -import java.util.Iterator; - -/** - * Utility Class for Converting a JUNG Graph to a Tab-Delimited Tab Format. - * - * @author Ethan Cerami. - */ -public final class JungToTabDelim { - private static final String TAB = "\t"; - - /** - * Private Constructor to prevent instantiation. - */ - private JungToTabDelim() { - } - - /** - * Converts the Specified JUNG Graph to a Cytoscape SIF Format. - * - * @param g JUNG Graph. - * @return Simple Tab Delimited Format. - */ - public static String convertToSif(Graph g) { - StringBuffer buf = new StringBuffer(); - for (String edge : g.getEdges()) { - Pair pair = g.getEndpoints(edge); - String geneA = (String) pair.getFirst(); - String geneB = (String) pair.getSecond(); - buf.append(geneA).append(TAB).append(edge).append(TAB).append(geneB).append("\n"); - } - return buf.toString(); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/graph/NetworkOfInterest.java b/core/src/main/java/org/mskcc/cbio/portal/graph/NetworkOfInterest.java deleted file mode 100644 index 8897fb5704d..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/graph/NetworkOfInterest.java +++ /dev/null @@ -1,127 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.graph; - -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Interaction; -import org.mskcc.cbio.portal.dao.DaoException; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashSet; - -import edu.uci.ics.jung.graph.Graph; - -/** - * Generates a Network of Interest, based on Input Set of Seed Genes. - * - * @author Ethan Cerami. - */ -public class NetworkOfInterest { - private String tabDelim; - private Graph graph; - - /** - * Constructor. - * - * @param geneList ArrayList of Seed Genes. - * @throws DaoException Database Error. - */ - public NetworkOfInterest (ArrayList geneList) throws DaoException { - this(geneList, null); - } - - /** - * Constructor. - * - * @param geneList ArrayList of Seed Genes. - * @throws DaoException Database Error. - */ - public NetworkOfInterest (ArrayList geneList, - Collection dataSources) throws DaoException { - ArrayList interactionList = new ArrayList(); - HashSet seedSet = new HashSet(); - - for (CanonicalGene gene: geneList) { - - // Get all interactions involving current gene. - ArrayList currentInteractionList = - null; - interactionList.addAll(currentInteractionList); - seedSet.add(gene.getHugoGeneSymbolAllCaps()); - } - - // Convert to JUNG to Graph - graph = InteractionToJung.createGraph(interactionList); - - // For now, mark all nodes that have degree = 1, and mark for removal - Collection vertexCollection = graph.getVertices(); - ArrayList vertexList = new ArrayList(vertexCollection); - ArrayList deleteList = new ArrayList(); - for (String gene: vertexList) { - int seedDegree = 0; - for (String neighbor : graph.getNeighbors(gene)) { - if (seedSet.contains(neighbor)) { - seedDegree++; - } - } - if (seedDegree == 1 && !seedSet.contains(gene)) { - deleteList.add(gene); - } - } - - // Remove marked genes - for (String gene: deleteList) { - graph.removeVertex(gene); - } - - // Convert to Tab Delim - tabDelim = JungToTabDelim.convertToSif(graph); - } - - /** - * Gets the Tab Delim Output. - * @return Simple Tab Delim Output. - */ - public String getTabDelim() { - return tabDelim; - } - - /** - * Gets the JUNG Graph. - * @return JUNG Graph Object. - */ - public Graph getGraph() { - return graph; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/AlleleSpecificCopyNumber.java b/core/src/main/java/org/mskcc/cbio/portal/model/AlleleSpecificCopyNumber.java deleted file mode 100644 index 17e40625830..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/AlleleSpecificCopyNumber.java +++ /dev/null @@ -1,185 +0,0 @@ -/* - * Copyright (c) 2019-2020 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.io.Serializable; -import java.util.*; - -import static org.mskcc.cbio.maf.ValueTypeUtil.toFloat; -import static org.mskcc.cbio.maf.ValueTypeUtil.toInt; - -/** - * - * @author averyniceday. - */ -public class AlleleSpecificCopyNumber implements Serializable { - private final String ASCN_INT_COPY_NUMBER = "ascn_integer_copy_number"; - private final String ASCN_METHOD = "ascn_method"; - private final String CCF_EXPECTED_COPIES_UPPER = "ccf_expected_copies_upper"; - private final String CCF_EXPECTED_COPIES = "ccf_expected_copies"; - private final String CLONAL = "clonal"; - private final String MINOR_COPY_NUMBER = "minor_copy_number"; - private final String EXPECTED_ALT_COPIES = "expected_alt_copies"; - private final String TOTAL_COPY_NUMBER = "total_copy_number"; - - private final Set ACCEPTED_CLONAL_VALUES = new HashSet(Arrays.asList("CLONAL", "SUBCLONAL", "INDETERMINATE", "NA")); - - private long mutationEventId; - private int geneticProfileId; - private int sampleId; - private Integer ascnIntegerCopyNumber; - private String ascnMethod; - private Float ccfExpectedCopiesUpper; - private Float ccfExpectedCopies; - private String clonal; - private Integer minorCopyNumber; - private Integer expectedAltCopies; - private Integer totalCopyNumber; - - public AlleleSpecificCopyNumber(Map ascnData) { - this.ascnIntegerCopyNumber = toInt(ascnData.getOrDefault(ASCN_INT_COPY_NUMBER, null)); - this.ascnMethod = (String) ascnData.getOrDefault(ASCN_METHOD, null); - this.ccfExpectedCopiesUpper = toFloat(ascnData.getOrDefault(CCF_EXPECTED_COPIES_UPPER, null)); - this.ccfExpectedCopies = toFloat(ascnData.getOrDefault(CCF_EXPECTED_COPIES, null)); - this.clonal = normalizeClonalValue((String) ascnData.getOrDefault(CLONAL, null)); - this.minorCopyNumber = toInt(ascnData.getOrDefault(MINOR_COPY_NUMBER, null)); - this.expectedAltCopies = toInt(ascnData.getOrDefault(EXPECTED_ALT_COPIES, null)); - this.totalCopyNumber = toInt(ascnData.getOrDefault(TOTAL_COPY_NUMBER, null)); - } - - public void updateAscnUniqueKeyDetails(ExtendedMutation mutation) { - this.mutationEventId = mutation.getMutationEventId(); - this.geneticProfileId = mutation.getGeneticProfileId(); - this.sampleId = mutation.getSampleId(); - } - - public long getMutationEventId() { - return mutationEventId; - } - - public void setMutationEventId(long mutationEventId) { - this.mutationEventId = mutationEventId; - } - - public int getGeneticProfileId() { - return geneticProfileId; - } - - public void setGeneticProfileId(int geneticProfileId) { - this.geneticProfileId = geneticProfileId; - } - - public int getSampleId() { - return sampleId; - } - - public void setSampleId(int sampleId) { - this.sampleId = sampleId; - } - - public Integer getAscnIntegerCopyNumber() { - return ascnIntegerCopyNumber; - } - - public void setAscnIntegerCopyNumber(Integer ascnIntegerCopyNumber) { - this.ascnIntegerCopyNumber = ascnIntegerCopyNumber; - } - - public String getAscnMethod() { - return ascnMethod; - } - - public void setAscnMethod(String ascnMethod) { - this.ascnMethod = ascnMethod; - } - - public Float getCcfExpectedCopiesUpper() { - return ccfExpectedCopiesUpper; - } - - public void setCcfExpectedCopiesUpper(Float ccfExpectedCopiesUpper) { - this.ccfExpectedCopiesUpper = ccfExpectedCopiesUpper; - } - - public Float getCcfExpectedCopies() { - return ccfExpectedCopies; - } - - public void setCcfExpectedCopies(Float ccfExpectedCopies) { - this.ccfExpectedCopies = ccfExpectedCopies; - } - - public String getClonal() { - return clonal; - } - - public void setClonal(String clonal) { - this.clonal = clonal; - } - - public Integer getMinorCopyNumber() { - return minorCopyNumber; - } - - public void setMinorCopyNumber(Integer minorCopyNumber) { - this.minorCopyNumber = minorCopyNumber; - } - - public Integer getExpectedAltCopies() { - return expectedAltCopies; - } - - public void setExpectedAltCopies(Integer expectedAltCopies) { - this.expectedAltCopies = expectedAltCopies; - } - - public Integer getTotalCopyNumber() { - return totalCopyNumber; - } - - public void setTotalCopyNumber(Integer totalCopyNumber) { - this.totalCopyNumber = totalCopyNumber; - } - - private String normalizeClonalValue(String clonal) { - if (clonal == null) { - return null; - } - String upperCaseClonal = clonal.toUpperCase(); - if (ACCEPTED_CLONAL_VALUES.contains(upperCaseClonal)) { - return upperCaseClonal; - } - return "NA"; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/AnnotatedSampleSets.java b/core/src/main/java/org/mskcc/cbio/portal/model/AnnotatedSampleSets.java deleted file mode 100644 index 2d22dcd5cc8..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/AnnotatedSampleSets.java +++ /dev/null @@ -1,156 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.*; - -/** - * Annotated Sample Sets. - * - * @author Ethan Cerami - */ -public class AnnotatedSampleSets { - private static final String ALL_COMPLETE_TUMORS = "ALL COMPLETE TUMORS"; - private static final String ALL_TUMORS = "ALL TUMORS"; - private static final String ALL = "ALL"; - - private SampleList defaultSampleList; - - public AnnotatedSampleSets(List sampleSetList, Integer priorityLevel) { - this.defaultSampleList = determineDefaultSampleSet(sampleSetList, priorityLevel); - } - - public AnnotatedSampleSets(List sampleSetList) { - this(sampleSetList, 0); - } - - /** - * Gets the "best" default sample set. - * - * @return "best" default sample set. - */ - public SampleList getDefaultSampleList() { - return defaultSampleList; - } - - /** - * This code makes an attempts at selecting the "best" default sample set. - * - * - * @param sampleSetList List of all Sample Sets. - * @param priorityLevel Priority level, all priorities below this one will be ignored - * @return the "best" default sample set. - */ - private SampleList determineDefaultSampleSet(List sampleSetList, Integer priorityLevel) { - List priSampleList = new ArrayList(); - for (SampleList sampleSet : sampleSetList) { - Integer priority = null; - - // These are the new category overrides - switch (sampleSet.getSampleListCategory()) { - case ALL_CASES_WITH_MUTATION_AND_CNA_DATA: - priority = 0; - break; - case ALL_CASES_WITH_MUTATION_DATA: - priority = 1; - break; - case ALL_CASES_WITH_CNA_DATA: - priority = 2; - break; - } - - // If category matches none of the overrides, fallback to the old way - if(priority == null) { - registerPrioritySampleList(sampleSet, ALL_COMPLETE_TUMORS, 3, priSampleList); - registerPrioritySampleList(sampleSet, ALL_TUMORS, 4, priSampleList); - registerPrioritySampleList(sampleSet, ALL, 5, priSampleList); - } else { - // If we define a higher t-hold, just shift the priority level - if(priority < priorityLevel) - priority += 10; - - priSampleList.add(new SampleSetWithPriority(sampleSet, priority)); - } - } - - Collections.sort(priSampleList, new SampleSetWithPriorityComparator()); - if (priSampleList.size() > 0) { - return priSampleList.get(0).getSampleList(); - } else { - return failSafeReturn(sampleSetList); - } - } - - private SampleList failSafeReturn(List sampleSetList) { - if (sampleSetList.size() > 0) { - return sampleSetList.get(0); - } else { - return null; - } - } - - private void registerPrioritySampleList (SampleList sampleSet, String target, int priority, - List priSampleList) { - String name = sampleSet.getName(); - if (name.toUpperCase().startsWith(target)) { - priSampleList.add(new SampleSetWithPriority(sampleSet, priority)); - } - } -} - -class SampleSetWithPriority { - private SampleList sampleList; - private int priority; - - SampleSetWithPriority(SampleList sampleList, int priority) { - this.sampleList = sampleList; - this.priority = priority; - } - - public SampleList getSampleList() { - return sampleList; - } - - public int getPriority() { - return priority; - } -} - -class SampleSetWithPriorityComparator implements Comparator { - - public int compare(Object o0, Object o1) { - SampleSetWithPriority sampleSet0 = (SampleSetWithPriority) o0; - SampleSetWithPriority sampleSet1 = (SampleSetWithPriority) o1; - return Integer.valueOf(sampleSet0.getPriority()).compareTo(sampleSet1.getPriority()); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CancerStudy.java b/core/src/main/java/org/mskcc/cbio/portal/model/CancerStudy.java deleted file mode 100644 index 1370436c2d9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CancerStudy.java +++ /dev/null @@ -1,465 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; -import java.util.Date; -import java.util.HashSet; -import java.util.Set; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.web_api.GetGeneticProfiles; - - - -/** - * This represents a cancer study, with a set of cases and some data sets. - * - * @author Ethan Cerami, Arthur Goldberg. - */ -public class CancerStudy { - /** - * NO_SUCH_STUDY Internal ID has not been assigned yet. - */ - public static final int NO_SUCH_STUDY = -1; - - private int studyID; // assigned by dbms auto increment - private String name; - private String description; - private String cancerStudyIdentifier; - private String typeOfCancerId; // required - private boolean publicStudy; // if true, a public study, otherwise private - private String pmid; - private String citation; - private Set groups; - private Date importDate; - private String referenceGenome; - - - /** - * Constructor. - * @param name Name of Cancer Study. - * @param description Description of Cancer Study. - * @param cancerStudyIdentifier Cancer Study Stable Identifier. - * @param typeOfCancerId Type of Cancer. - * @param publicStudy Flag to indicate if this is a public study. - */ - public CancerStudy(String name, String description, String cancerStudyIdentifier, - String typeOfCancerId, boolean publicStudy) { - super(); - this.studyID = CancerStudy.NO_SUCH_STUDY; - this.name = name; - this.description = description; - this.cancerStudyIdentifier = cancerStudyIdentifier; - this.typeOfCancerId = typeOfCancerId; - this.publicStudy = publicStudy; - } - - /** - * Indicates that this is a public study. - * @return true or false. - */ - public boolean isPublicStudy() { - return publicStudy; - } - - /** - * Marks this study as public or private. - * @param publicFlag Public Flag. - */ - public void setPublicStudy(boolean publicFlag) { - this.publicStudy = publicFlag; - } - - /** - * Gets the Cancer Study Stable Identifier. - * @return cancer study stable identifier. - */ - public String getCancerStudyStableId() { - return cancerStudyIdentifier; - } - - /** - * Gets the Type of Cancer. - * @return type of cancer. - */ - public String getTypeOfCancerId() { - return typeOfCancerId; - } - - /** - * Sets the Cancer Study Stable Identifier. - * @param cancerStudyIdentifier Cancer Study Stable Identifier. - */ - public void setCancerStudyStablId(String cancerStudyIdentifier) { - this.cancerStudyIdentifier = cancerStudyIdentifier; - } - - /** - * Gets the Internal ID associated with this record. - * @return internal integer ID. - */ - public int getInternalId() { - return studyID; - } - - /** - * Sets the Internal ID associated with this record. - * @param studyId internal integer ID. - */ - public void setInternalId(int studyId) { - this.studyID = studyId; - } - - /** - * Gets the Cancer Study Name. - * @return cancer study name. - */ - public String getName() { - return name; - } - - /** - * Sets the Cancer Study Name. - * @param name cancer study name. - */ - public void setName(String name) { - this.name = name; - } - - /** - * Gets the Cancer Study Description. - * @return cancer study description. - */ - public String getDescription() { - return description; - } - - /** - * Sets the Cancer Study Description. - * @param description cancer study description. - */ - public void setDescription(String description) { - this.description = description; - } - - public String getPmid() { - return pmid; - } - - public void setPmid(String pmid) { - this.pmid = pmid; - } - - public String getCitation() { - return citation; - } - - public void setCitation(String citation) { - this.citation = citation; - } - - public String getReferenceGenome() { return referenceGenome; } - - public void setReferenceGenome(String referenceGenome) { - this.referenceGenome = referenceGenome; - } - - /** - * Gets the genetic profiles. - * @return genetic profiles - * @throws DaoException database read error - */ - public ArrayList getGeneticProfiles() throws DaoException { - return GetGeneticProfiles.getGeneticProfiles(getCancerStudyStableId()); - } - - /* TODO: Add a tag to cancer study in order to get rid of redundant code execution. - During the talk it was decided not to use an additional tag for each cancer - study, so we need a rather ugly solution. This won't be hurting us much for now - but could result in performance issues if the portal ever gets heavy load traffic. - */ - /** - * Get mutation profile if any; otherwise, return null. - * - * @return mutation profile if there is mutation data; otherwise, null. - * @param geneticProfiles genetic profiles to search mutations on - */ - public GeneticProfile getMutationProfile(ArrayList geneticProfiles, - String caseId) throws DaoException { - for(GeneticProfile geneticProfile: geneticProfiles) { - if(geneticProfile.getGeneticAlterationType() == GeneticAlterationType.MUTATION_EXTENDED && - acceptableCaseId(caseId, geneticProfile)) { - return geneticProfile; - } - } - - return null; - } - - private boolean acceptableCaseId(String caseId, GeneticProfile geneticProfile) throws DaoException { - if (caseId == null) return true; - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(geneticProfile.getCancerStudyId(), - StableIdUtil.getSampleId(caseId)); - return DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfile.getGeneticProfileId()); - } - - public GeneticProfile getMutationProfile(String caseId) throws DaoException { - return getMutationProfile(getGeneticProfiles(),caseId); - } - - public GeneticProfile getMutationProfile() throws DaoException { - return getMutationProfile(null); - } - - /** - * Checks if there is any mutation data associated with this cancer study. - * - * @return true if there is mutation data - * @param geneticProfiles genetic profiles to search mutations on - */ - public boolean hasMutationData(ArrayList geneticProfiles) throws DaoException { - return null != getMutationProfile(geneticProfiles,null); - } - - /** - * Get copy number alteration profile if any; otherwise, return null. - * - * @return cn profile if there is mutation data; otherwise, null. If - * showInAnalysisOnly is true, return cn profile shown in analysis tab only. - * @param geneticProfiles genetic profiles to search cna on - */ - public GeneticProfile getCopyNumberAlterationProfile(boolean showInAnalysisOnly) - throws DaoException { - return getCopyNumberAlterationProfile(null,showInAnalysisOnly); - } - - public boolean hasCnaData() throws DaoException { - GeneticProfile copyNumberAlterationProfile = getCopyNumberAlterationProfile(true); - return copyNumberAlterationProfile != null; - } - - /** - * Get copy number alteration profile if any; otherwise, return null. - * - * @return cn profile if there is cna data; otherwise, null. If - * showInAnalysisOnly is true, return cn profile shown in analysis tab only. - * @param geneticProfiles genetic profiles to search cna on - */ - public GeneticProfile getCopyNumberAlterationProfile(String caseId, boolean showInAnalysisOnly) - throws DaoException { - for(GeneticProfile geneticProfile: getGeneticProfiles()) { - if(geneticProfile.getGeneticAlterationType() == GeneticAlterationType.COPY_NUMBER_ALTERATION && - (!showInAnalysisOnly || geneticProfile.showProfileInAnalysisTab()) && - acceptableCaseId(caseId, geneticProfile)) { - return geneticProfile; - } - } - - return null; - } - - /** - * Get mRNA profile.. try to get a RNA-seq first then microarray. - * - * @return cn profile if there is mrna data; otherwise, null. - * @param geneticProfiles genetic profiles to search mutations on - */ - public GeneticProfile getMRnaZscoresProfile() - throws DaoException { - return getMRnaZscoresProfile(null); - } - - public boolean hasMRnaData() throws DaoException { - GeneticProfile mrnaProfile = getMRnaZscoresProfile(); - return mrnaProfile != null; - } - - /** - * Get mRNA Zscores profile. try to get a RNA-seq first then microarray. - * - * @return mrna profile if there is mrna data; otherwise, null. - * @param geneticProfiles genetic profiles to search mrna on - */ - public GeneticProfile getMRnaZscoresProfile(String caseId) - throws DaoException { - GeneticProfile ret = null; - for(GeneticProfile geneticProfile: getGeneticProfiles()) { - if(geneticProfile.getGeneticAlterationType() == GeneticAlterationType.MRNA_EXPRESSION && - acceptableCaseId(caseId, geneticProfile)) { - String stableId = geneticProfile.getStableId().toLowerCase(); - if (stableId.matches(".+rna_seq.*_zscores")) { - return geneticProfile; - } else if (stableId.endsWith("_zscores")) { - ret = geneticProfile; - } - } - } - - return ret; - } - - /** - * Similar to: - * @see #hasMutationData(java.util.ArrayList) - * but this method grabs all the genetic profiles associated to the cancer study - * Utilizes @link #getGeneticProfiles() - * - * @return true if there is mutation data - * @throws DaoException database read error - */ - public boolean hasMutationData() throws DaoException { - return hasMutationData(getGeneticProfiles()); - } - - /** - * - * @return true if copy number segment data exist for this study; false, otherwise. - * @throws DaoException - */ - public boolean hasCnaSegmentData() throws DaoException { - return DaoCopyNumberSegment.segmentDataExistForCancerStudy(studyID); - } - - public Set getFreshGroups() throws DaoException - { - return DaoCancerStudy.getFreshGroups(studyID); - } - - public Set getGroups() { - if (groups==null) { - return Collections.emptySet(); - } - return groups; - } - - /** - * Determines the set of groups by splitting the given groups string - * on ';' and transforming all group names to their UPPER CASE - * representation (this last one is in compliance to what is expected - * in CancerStudyPermissionEvaluator.hasPermission() ). - * - * @param groups semi-colon (;) delimited groups - */ - public void setGroupsInUpperCase(String groups) { - if (groups==null) { - this.groups = null; - return; - } - - this.groups = new HashSet(Arrays.asList(groups.toUpperCase().split(";"))); - } - - /** - * Equals. - * @param otherCancerStudy Other Cancer Study. - * @return true of false. - */ - @Override - public boolean equals(Object otherCancerStudy) { - if (this == otherCancerStudy) { - return true; - } - - if (!(otherCancerStudy instanceof CancerStudy)) { - return false; - } - - CancerStudy that = (CancerStudy) otherCancerStudy; - return - EqualsUtil.areEqual(this.publicStudy, that.publicStudy) && - EqualsUtil.areEqual(this.cancerStudyIdentifier, - that.cancerStudyIdentifier) && - EqualsUtil.areEqual(this.description, that.description) && - EqualsUtil.areEqual(this.name, that.name) && - EqualsUtil.areEqual(this.typeOfCancerId, that.typeOfCancerId) && - EqualsUtil.areEqual(this.studyID, that.studyID); - } - - @Override - public int hashCode() { - int hash = 5; - hash = 11 * hash + this.studyID; - hash = 11 * hash + (this.name != null ? this.name.hashCode() : 0); - hash = 11 * hash + (this.description != null ? this.description.hashCode() : 0); - hash = 11 * hash + (this.cancerStudyIdentifier != null ? this.cancerStudyIdentifier.hashCode() : 0); - hash = 11 * hash + (this.typeOfCancerId != null ? this.typeOfCancerId.hashCode() : 0); - hash = 11 * hash + (this.publicStudy ? 1 : 0); - return hash; - } - - /** - * toString() Override. - * @return string summary of cancer study. - */ - @Override - public String toString() { - return "CancerStudy [studyID=" + studyID + ", name=" + name + ", description=" - + description + ", cancerStudyIdentifier=" + cancerStudyIdentifier - + ", typeOfCancerId=" + typeOfCancerId + ", publicStudy=" + publicStudy + "]"; - } - - public boolean hasMutSigData() throws DaoException { - return !DaoMutSig.hasMutsig(this); - } - - public boolean hasGisticData() throws DaoException { - return DaoGistic.hasGistic(this); - } - - public boolean hasSurvivalData() throws DaoException { - Set attrs = DaoClinicalData.getDistinctParameters(studyID); - return attrs.contains(ClinicalAttribute.OS_STATUS) || - attrs.contains(ClinicalAttribute.DFS_STATUS); - } - - public String getTypeOfCancer() throws DaoException { - return DaoTypeOfCancer.getTypeOfCancerById(this.typeOfCancerId).getName(); - } - - /** - * @return the importDate - */ - public Date getImportDate() { - return importDate; - } - - /** - * @param importDate the importDate to set - */ - public void setImportDate(Date importDate) { - this.importDate = importDate; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CancerStudyStats.java b/core/src/main/java/org/mskcc/cbio/portal/model/CancerStudyStats.java deleted file mode 100644 index 787cf235ff2..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CancerStudyStats.java +++ /dev/null @@ -1,103 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoMutation; -import org.mskcc.cbio.portal.util.EqualsUtil; -import org.mskcc.cbio.portal.web_api.GetGeneticProfiles; - -import java.util.ArrayList; - -/** - * This class encapsulates cancer study stats displayed on the Data Sets Page. - * - * @author Benjamin Gross - */ -public class CancerStudyStats { - - private String stableID; - private String studyName; - private String reference; - private Integer all; - private Integer sequenced; - private Integer cna; - private Integer rnaSEQ; - private Integer tumorMRNA; - private Integer normal; - private Integer tumorMIRNA; - private Integer methylation; - private Integer rppa; - private Integer complete; - private Integer massSpectrometry; - - /** - * Constructor. - * - */ - public CancerStudyStats(String stableID, String studyName, String reference, Integer all, Integer sequenced, - Integer cna, Integer rnaSEQ, Integer tumorMRNA, Integer normal, - Integer tumorMIRNA, Integer methylation, Integer rppa, Integer complete, Integer massSpectrometry) { - - this.stableID = stableID; - this.studyName = studyName; - this.reference = reference; - this.all = all; - this.sequenced = sequenced; - this.cna = cna; - this.rnaSEQ = rnaSEQ; - this.tumorMRNA = tumorMRNA; - this.normal = normal; - this.tumorMIRNA = tumorMIRNA; - this.methylation = methylation; - this.rppa = rppa; - this.complete = complete; - this.massSpectrometry = massSpectrometry; - } - - // accessors - public String getStableID() { return this.stableID; } - public String getStudyName() { return this.studyName; } - public String getReference() { return this.reference; } - public Integer getAll() { return this.all; } - public Integer getSequenced() { return this.sequenced; } - public Integer getCNA() { return this.cna; } - public Integer getRNASEQ() { return this.rnaSEQ; } - public Integer getTumorMRNA() { return this.tumorMRNA; } - public Integer getNormal() { return this.normal; } - public Integer getTumorMIRNA() { return this.tumorMIRNA; } - public Integer getMethylation() { return this.methylation; } - public Integer getRPPA() { return this.rppa; } - public Integer getComplete() { return this.complete; } - public Integer getMassSpectrometry() { return this.massSpectrometry; } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CancerStudyTags.java b/core/src/main/java/org/mskcc/cbio/portal/model/CancerStudyTags.java deleted file mode 100644 index 86fad5a7802..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CancerStudyTags.java +++ /dev/null @@ -1,23 +0,0 @@ -package org.mskcc.cbio.portal.model; - -public class CancerStudyTags { - - private int cancerStudyId; - private String tags; - - public int getCancerStudyId() { - return cancerStudyId; - } - - public String getTags() { - return tags; - } - - public void setTags(String tags) { - this.tags = tags; - } - - public void setCancerStudyId(int cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CanonicalGene.java b/core/src/main/java/org/mskcc/cbio/portal/model/CanonicalGene.java deleted file mode 100644 index b3ed90d5db1..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CanonicalGene.java +++ /dev/null @@ -1,226 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.*; -import java.io.Serializable; - -import com.fasterxml.jackson.annotation.JsonIgnore; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * Class to wrap Entrez Gene ID, HUGO Gene Symbols,etc. - */ -public class CanonicalGene extends Gene implements Serializable { - public static final String MIRNA_TYPE = "miRNA"; - public static final String PHOSPHOPROTEIN_TYPE = "phosphoprotein"; - private int geneticEntityId; - @JsonProperty("entrezGeneId") - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - private long entrezGeneId; - @JsonProperty("hugoGeneSymbol") - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - private String hugoGeneSymbol; - private Set aliases; - private double somaticMutationFrequency; - private String type; - - /** - * @deprecated: hardly used (2 places that are not relevant, - * potentially dead code), should be deprecated - * - * @param hugoGeneSymbol - */ - public CanonicalGene(String hugoGeneSymbol) { - this(hugoGeneSymbol, null); - } - - /** - * This constructor can be used to get a rather empty object - * representing this gene symbol. - * - * Note: Its most important use is for data loading of "phosphogenes" - * (ImportTabDelimData.importPhosphoGene) where a dummy gene record - * is generated on the fly for this entity. TODO this constructor needs - * to be deprecated once "phosphogenes" become a genetic entity on their own. - * - * @param hugoGeneSymbol - */ - public CanonicalGene(String hugoGeneSymbol, Set aliases) { - this(-1, -1, hugoGeneSymbol, aliases); - } - - /** - * This constructor can be used when geneticEntityId is not yet known, - * e.g. in case of a new gene (like when adding new genes in ImportGeneData), or is - * not needed (like when retrieving mutation data) - * - * @param entrezGeneId - * @param hugoGeneSymbol - */ - public CanonicalGene(long entrezGeneId, String hugoGeneSymbol) { - this(-1, entrezGeneId, hugoGeneSymbol, null); - } - - /** - * This constructor can be used when geneticEntityId is not yet known, - * e.g. in case of a new gene (like when adding new genes in ImportGeneData), or is - * not needed (like when retrieving mutation data) - * - * @param entrezGeneId - * @param hugoGeneSymbol - * @param aliases - */ - public CanonicalGene(long entrezGeneId, String hugoGeneSymbol, Set aliases) { - this(-1, entrezGeneId, hugoGeneSymbol, aliases); - } - - public CanonicalGene(int geneticEntityId, long entrezGeneId, String hugoGeneSymbol, Set aliases) { - this.geneticEntityId = geneticEntityId; - this.entrezGeneId = entrezGeneId; - this.hugoGeneSymbol = hugoGeneSymbol; - setAliases(aliases); - } - - @JsonIgnore - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - - @JsonIgnore - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - public Set getAliases() { - if (aliases==null) { - return Collections.emptySet(); - } - return Collections.unmodifiableSet(aliases); - } - - public void setAliases(Set aliases) { - if (aliases==null) { - this.aliases = null; - return; - } - - Map map = new HashMap(aliases.size()); - for (String alias : aliases) { - map.put(alias.toUpperCase(), alias); - } - - this.aliases = new HashSet(map.values()); - } - - @JsonIgnore - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - public int getGeneticEntityId() { - return geneticEntityId; - } - - public void setGeneticEntityId(int geneticEntityId) { - this.geneticEntityId = geneticEntityId; - } - - public long getEntrezGeneId() { - return entrezGeneId; - } - - public void setEntrezGeneId(long entrezGeneId) { - this.entrezGeneId = entrezGeneId; - } - - @JsonIgnore - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - public String getHugoGeneSymbolAllCaps() { - return hugoGeneSymbol.toUpperCase(); - } - - @JsonIgnore - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - public String getStandardSymbol() { - return getHugoGeneSymbolAllCaps(); - } - - public void setHugoGeneSymbol(String hugoGeneSymbol) { - this.hugoGeneSymbol = hugoGeneSymbol; - } - - @JsonIgnore - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - public boolean isMicroRNA() { - return MIRNA_TYPE.equals(type); - } - - @JsonIgnore - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - public boolean isPhosphoProtein() { - return PHOSPHOPROTEIN_TYPE.equals(type); - } - - @Override - public String toString() { - return this.getHugoGeneSymbolAllCaps(); - } - - @Override - public boolean equals(Object obj0) { - if (!(obj0 instanceof CanonicalGene)) { - return false; - } - - CanonicalGene gene0 = (CanonicalGene) obj0; - if (gene0.getEntrezGeneId() == entrezGeneId) { - return true; - } - return false; - } - - @JsonIgnore - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - public double getSomaticMutationFrequency() { - return somaticMutationFrequency; - } - - public void setSomaticMutationFrequency(double somaticMutationFrequency) { - this.somaticMutationFrequency = somaticMutationFrequency; - } - - @Override - public int hashCode() { - return (int) entrezGeneId; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CaseFilter.java b/core/src/main/java/org/mskcc/cbio/portal/model/CaseFilter.java deleted file mode 100644 index dd2ced20748..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CaseFilter.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.HashSet; - -public class CaseFilter { - private String paramName; - private HashSet valueSet; - - public CaseFilter(String paramName, HashSet valueSet) { - this.paramName = paramName; - this.valueSet = valueSet; - } - - public String getParamName() { - return paramName; - } - - public HashSet getParamValueSet() { - return valueSet; - } - - public String toString() { - StringBuffer buf = new StringBuffer(); - buf.append("Filter: " + paramName + " ["); - for (String value: valueSet) { - buf.append(value + "#"); - } - buf.append("]"); - return buf.toString(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CategorizedGeneticProfileSet.java b/core/src/main/java/org/mskcc/cbio/portal/model/CategorizedGeneticProfileSet.java deleted file mode 100644 index e5aad0de0bb..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CategorizedGeneticProfileSet.java +++ /dev/null @@ -1,225 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.ArrayList; -import java.util.Collections; -import java.util.Comparator; -import java.util.HashMap; - -/** - * Categorized Set of Genetic Profiles. - * - * @author Ethan Cerami - */ -public class CategorizedGeneticProfileSet { - private static final String GISTIC = "GISTIC"; - private static final String RAE = "RAE"; - - private ArrayList mutationProfileList = new ArrayList(); - private ArrayList gisticProfileList = new ArrayList(); - private ArrayList raeProfileList = new ArrayList(); - private ArrayList otherCnaProfileList = new ArrayList(); - - /** - * Constructor. - * - * @param geneticProfileList All genetic profiles associated with a cancer study. - */ - public CategorizedGeneticProfileSet(ArrayList geneticProfileList) { - for (GeneticProfile currentProfile : geneticProfileList) { - addGeneticProfile(currentProfile); - } - } - - /** - * Gets the Default Copy Number Profile. - * - * An individual cancer study may have multiple copy number profiles associated with it. - * It is sometimes useful, however to have a single "default" copy number profile. - * - * This default copy number profile is determined by the following order of precedence rules: - * - * - Any GISTIC profile. - * - Any RAE profile. - * - Any other CNA profile. - * - * @return GeneticProfile Object. - */ - public GeneticProfile getDefaultCnaProfile() { - ArrayList> orderOfPredenceList - = new ArrayList>(); - orderOfPredenceList.add(gisticProfileList); - orderOfPredenceList.add(raeProfileList); - // Now prioritize the ones that are shown in the analysis tab - Collections.sort(otherCnaProfileList, new Comparator() { - @Override - public int compare(GeneticProfile geneticProfileA, GeneticProfile geneticProfileB) { - int a = geneticProfileA.showProfileInAnalysisTab() ? 1 : 0; - int b = geneticProfileB.showProfileInAnalysisTab() ? 1 : 0; - - return b-a; - } - }); - orderOfPredenceList.add(otherCnaProfileList); - return getFirstPriorityProfile(orderOfPredenceList); - } - - /** - * Gets the Default mutation profile. - * - * An individual cancer study may have multiple mutation profiles associated with it. - * It is sometimes useful, however to have a single "default" mutation profile. - * - * The default mutation profile is defined as the first mutation profile associated - * with the associated cancer study. - * - * @return GeneticProfile Object. - */ - public GeneticProfile getDefaultMutationProfile() { - if (mutationProfileList.size() > 0) { - return mutationProfileList.get(0); - } else { - return null; - } - } - - /** - * Gets a hashMap of the default mutation and copy number profiles. - * - * @return HashMap of Genetic Profiles, indexed by their stable IDs. - */ - public HashMap getDefaultMutationAndCopyNumberMap() { - return getDefaultGeneticProfileMap(true, true); - } - - /** - * Gets a hashMap of the default mutation profiles. - * - * @return HashMap of Genetic Profiles, indexed by their stable IDs. - */ - public HashMap getDefaultMutationMap() { - return getDefaultGeneticProfileMap(false, true); - } - - /** - * Gets a hashMap of the default copy number profiles. - * - * @return HashMap of Genetic Profiles, indexed by their stable IDs. - */ - public HashMap getDefaultCopyNumberMap() { - return getDefaultGeneticProfileMap(true, false); - } - - /** - * Gets a hashMap of the default mutation and copy number profiles. - * Provides functionality to exclude one of the profile types. - * - * @return HashMap of Genetic Profiles, indexed by their stable IDs. - */ - private HashMap getDefaultGeneticProfileMap(boolean includeCNA, boolean includeMutation) { - HashMap defaultProfileSet = new HashMap(); - - if(includeCNA) - conditionallyAddProfileToSet(getDefaultCnaProfile(), defaultProfileSet); - - if(includeMutation) - conditionallyAddProfileToSet(getDefaultMutationProfile(), defaultProfileSet); - - return defaultProfileSet; - } - - /** - * Gets number of default mutation and copy number profiles. - * - * @return number of default genetic profiles. - */ - public int getNumDefaultMutationAndCopyNumberProfiles() { - return getDefaultMutationAndCopyNumberMap().size(); - } - - private void addGeneticProfile(GeneticProfile geneticProfile) { - GeneticAlterationType geneticAlterationType = geneticProfile.getGeneticAlterationType(); - if (geneticAlterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION) { - addCopyNumberProfile(geneticProfile); - } else if (geneticAlterationType == GeneticAlterationType.MUTATION_EXTENDED) { - addMutationProfile(geneticProfile); - } - } - - private void conditionallyAddProfileToSet(GeneticProfile geneticProfile, - HashMap defaultProfileSet) { - if (geneticProfile != null) { - defaultProfileSet.put(geneticProfile.getStableId(), geneticProfile); - } - } - - private void addMutationProfile(GeneticProfile mutationProfile) { - mutationProfileList.add(mutationProfile); - } - - private void addCopyNumberProfile(GeneticProfile copyNumberProfile) { - //Using stableId as this is currently the more reliable than the name for example, - //since stableId is strictly validated before loading into DB: - String stableId = copyNumberProfile.getStableId(); - if (stableId.toLowerCase().endsWith(GISTIC.toLowerCase())) { - addGisticProfile(copyNumberProfile); - } else if (stableId.toLowerCase().endsWith(RAE.toLowerCase())) { - addRaeProfile(copyNumberProfile); - } else { - addOtherCnaProfile(copyNumberProfile); - } - } - - private void addGisticProfile(GeneticProfile gisticProfile) { - gisticProfileList.add(gisticProfile); - } - - private void addRaeProfile(GeneticProfile raeProfile) { - raeProfileList.add(raeProfile); - } - - private void addOtherCnaProfile(GeneticProfile otherCnaProfile) { - otherCnaProfileList.add(otherCnaProfile); - } - - private GeneticProfile getFirstPriorityProfile(ArrayList> - orderOfPredenceList) { - for (ArrayList currentList: orderOfPredenceList) { - if (currentList.size() > 0) { - return currentList.get(0); - } - } - return null; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalAttribute.java b/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalAttribute.java deleted file mode 100755 index 927610b45de..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalAttribute.java +++ /dev/null @@ -1,145 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.List; -import java.util.Arrays; -import java.util.ArrayList; - -public class ClinicalAttribute { - - // some defined statics - public static final String NA = "NA"; - public static final String DEFAULT_DATATYPE = "STRING"; - public static final String PATIENT_ATTRIBUTE = "PATIENT"; - public static final String SAMPLE_ATTRIBUTE = "SAMPLE"; - public static final String MISSING = "MISSING"; - public static final String OS_STATUS = "OS_STATUS"; - public static final String OS_MONTHS = "OS_MONTHS"; - public static final String DFS_STATUS = "DFS_STATUS"; - public static final String DFS_MONTHS = "DFS_MONTHS"; - public static final String AGE_AT_DIAGNOSIS = "AGE"; - // two additional variables for multi-cancer - public static final String CANCER_TYPE = "CANCER_TYPE"; // may have to change this to MAIN_CANCER_TYPE - public static final String CANCER_TYPE_DETAILED = "CANCER_TYPE_DETAILED"; // may have to change this to CANCER_TYPE - public static final String SAMPLE_COUNT = "SAMPLE_COUNT"; - - public static final List survivalAttributes = initializeSurvivalAttributeList(); - private static List initializeSurvivalAttributeList() { - return Arrays.asList(AGE_AT_DIAGNOSIS, OS_STATUS, OS_MONTHS, DFS_STATUS, DFS_MONTHS); - } - - private String attributeId; - private String displayName; - private String description; - private String datatype; - private boolean patientAttribute; - private String priority; - private Integer cancerStudyId; - - public ClinicalAttribute(String attributeId, String displayName, String description, - String datatype, boolean patientAttribute, String priority, Integer cancerStudyId) { - this.attributeId = attributeId; - this.displayName = displayName; - this.description = description; - this.datatype = datatype; - this.patientAttribute = patientAttribute; - this.priority = priority; - this.cancerStudyId = cancerStudyId; - } - - @Override - public String toString() { - return "ClinicalAttribute[" + - attributeId + "," + - displayName + "," + - description + "," + - priority + "," + - datatype + "," + - String.valueOf(cancerStudyId) + "]"; - } - - public String getAttrId() { - return attributeId; - } - - public void setAttributeId(String attributeId) { - this.attributeId = attributeId; - } - - public String getDisplayName() { - return displayName; - } - - public void setDisplayName(String displayName) { - this.displayName = displayName; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public String getDatatype() { - return datatype; - } - - public void setDatatype(String datatype) { - this.datatype = datatype; - } - - public boolean isPatientAttribute() { - return patientAttribute; - } - - public void setPatientAttribute(boolean patientAttribute) { - this.patientAttribute = patientAttribute; - } - - public String getPriority() { - return priority; - } - - public void setPriority(String priority) { - this.priority = priority; - } - public Integer getCancerStudyId() { - return cancerStudyId; - } - public void setCancerStudyId(Integer cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalAttributeAbstract.java b/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalAttributeAbstract.java deleted file mode 100644 index 35696b5e8cb..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalAttributeAbstract.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -public class ClinicalAttributeAbstract { - private String displayName; - private String description; - - public ClinicalAttributeAbstract(String displayName, String description) { - this.displayName = displayName; - this.description = description; - } - - public String getDisplayName() { - return displayName; - } - - public void setDisplayName(String displayName) { - this.displayName = displayName; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalData.java b/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalData.java deleted file mode 100644 index 97ed3ad0466..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalData.java +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -/** - * Encapsulates Clinical Data. - * - * @author Gideon Dresdner - */ -public class ClinicalData { - private int cancerStudyId; - private String stableId; - private String attrId; - private String attrVal; - - /** - * Constructor - */ - public ClinicalData() { - this(-1, "", "", ""); - } - - public ClinicalData(ClinicalData other) { - this(other.getCancerStudyId(), other.getStableId(), other.getAttrId(), other.getAttrVal()); - } - - /** - * Constructor - * - * @param cancerStudyId database id of cancer study - * @param stableId stable id of the patient or sample - * @param attrId database id of the attribute - * @param attrVal value of the clinical attribute given above - */ - public ClinicalData(int cancerStudyId, - String stableId, - String attrId, - String attrVal) { - - this.cancerStudyId = cancerStudyId; - this.stableId = stableId; - this.attrId = attrId; - this.attrVal = attrVal; - } - - public int getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(int cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public String getStableId() { - return stableId; - } - - public void setStableId(String stableId) { - this.stableId = stableId; - } - - public String getAttrId() { - return attrId; - } - - public void setAttrId(String attrId) { - this.attrId = attrId; - } - - public String getAttrVal() { - return attrVal; - } - - public void setAttrVal(String attrVal) { - this.attrVal = attrVal; - } - - public String toString() { - return String.format("ClinicalData[cancerStudyId=%d, %s, %s, %s]", cancerStudyId, stableId, attrId, attrVal); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalEvent.java b/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalEvent.java deleted file mode 100644 index 640aeab8a7c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalEvent.java +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.HashMap; -import java.util.Map; - -/** - * - * @author gaoj - */ -public class ClinicalEvent { - private Long clinicalEventId; - private Integer patientId; - private String eventType; - private Long startDate; - private Long stopDate; - private Map eventData = new HashMap(0); - - public Long getClinicalEventId() { - return clinicalEventId; - } - - public void setClinicalEventId(Long clinicalEventId) { - this.clinicalEventId = clinicalEventId; - } - - public int getPatientId() { - return patientId; - } - - public void setPatientId(int patientId) { - this.patientId = patientId; - } - - public String getEventType() { - return eventType; - } - - public void setEventType(String eventType) { - this.eventType = eventType; - } - - public Long getStartDate() { - return startDate; - } - - public void setStartDate(Long startDate) { - this.startDate = startDate; - } - - public Long getStopDate() { - return stopDate; - } - - public void setStopDate(Long stopDate) { - this.stopDate = stopDate; - } - - public Map getEventData() { - return eventData; - } - - public void setEventData(Map eventData) { - this.eventData = eventData; - } - - public void addEventDatum(String key, String value) { - eventData.put(key, value); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalParameterMap.java b/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalParameterMap.java deleted file mode 100644 index af9382276a3..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ClinicalParameterMap.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.HashSet; -import java.util.Iterator; -import java.util.Map; -import java.util.Set; - -/** - * Encapsulates any type of Clinical Parameter. - */ -public class ClinicalParameterMap -{ - public static final String NA = "NA"; - private String name; - private Map valueMap; - private Set uniqueCategories = new HashSet(); - - public ClinicalParameterMap(String name, Map valueMap) - { - this.name = name; - this.valueMap = valueMap; - - Iterator keyIterator = valueMap.keySet().iterator(); - - while (keyIterator.hasNext()) - { - String caseId = keyIterator.next(); - String value = valueMap.get(caseId); - uniqueCategories.add(value); - } - } - - public String getName() { - return name; - } - - public Set getDistinctCategories() { - return this.uniqueCategories; - } - - public String getValue(String caseId) - { - if (valueMap.containsKey(caseId)) { - return valueMap.get(caseId); - } else { - return NA; - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CnaEvent.java b/core/src/main/java/org/mskcc/cbio/portal/model/CnaEvent.java deleted file mode 100644 index 5192d031982..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CnaEvent.java +++ /dev/null @@ -1,262 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import org.cbioportal.model.CNA; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; - -/** - * - * @author jgao - */ -public class CnaEvent { - private int sampleId; - private int cnaProfileId; - private Event event; - private String driverFilter; - private String driverFilterAnnotation; - private String driverTiersFilter; - private String driverTiersFilterAnnotation; - private String annotationJson; - - public static class Event { - private long eventId; - private CanonicalGene gene; - private CNA alteration; - - public long getEventId() { - return eventId; - } - - public void setEventId(long eventId) { - this.eventId = eventId; - } - - public CanonicalGene getGene() { - return gene; - } - - public void setGene(CanonicalGene gene) { - this.gene = gene; - } - - public void setEntrezGeneId(long entrezGeneId) { - setGene(DaoGeneOptimized.getInstance().getGene(entrezGeneId)); - if (gene == null) { - throw new IllegalArgumentException("Could not find entrez gene id: " + entrezGeneId); - } - } - - public CNA getAlteration() { - return alteration; - } - - public void setAlteration(CNA alteration) { - this.alteration = alteration; - } - - public void setAlteration(short alteration) { - this.alteration = CNA.getByCode(alteration); - if (this.alteration == null) { - throw new IllegalArgumentException("wrong copy number alteration"); - } - } - - @Override - public int hashCode() { - int hash = 3; - hash = 97 * hash + (this.gene != null ? this.gene.hashCode() : 0); - hash = 97 * hash + (this.alteration != null ? this.alteration.hashCode() : 0); - return hash; - } - - /** - * Compare by gene and alteration, - * but not by eventId - */ - @Override - public boolean equals(Object obj) { - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final Event other = (Event) obj; - if (this.gene != other.gene && (this.gene == null || !this.gene.equals(other.gene))) { - return false; - } - if (this.alteration != other.alteration) { - return false; - } - return true; - } - - } - - public CnaEvent(int sampleId, int cnaProfileId, long entrezGeneId, short alteration) { - event = new Event(); - setEntrezGeneId(entrezGeneId); - this.sampleId = sampleId; - this.cnaProfileId = cnaProfileId; - event.setAlteration(alteration); - } - - public CNA getAlteration() { - return event.alteration; - } - - public void setAlteration(CNA alteration) { - event.setAlteration(alteration); - } - - public void setAlteration(short alteration) { - event.setAlteration(CNA.getByCode(alteration)); - } - - public int getSampleId() { - return sampleId; - } - - public void setSampleId(int sampleId) { - this.sampleId = sampleId; - } - - public int getCnaProfileId() { - return cnaProfileId; - } - - public void setCnaProfileId(int cnaProfileId) { - this.cnaProfileId = cnaProfileId; - } - - public long getEntrezGeneId() { - return event.getGene().getEntrezGeneId(); - } - - public String getGeneSymbol() { - return event.getGene().getHugoGeneSymbolAllCaps(); - } - - public void setEntrezGeneId(long entrezGeneId) { - event.setEntrezGeneId(entrezGeneId); - if (event.gene == null) { - throw new IllegalArgumentException("Could not find entrez gene id: "+entrezGeneId); - } - } - - public long getEventId() { - return event.getEventId(); - } - - public void setEventId(long eventId) { - event.setEventId(eventId); - } - - public Event getEvent() { - return event; - } - - public void setEvent(Event event) { - this.event = event; - } - - public String getDriverFilter() { - return driverFilter; - } - - public void setDriverFilter(String driverFilter) { - this.driverFilter = driverFilter; - } - - public String getDriverFilterAnnotation() { - return driverFilterAnnotation; - } - - public void setDriverFilterAnnotation(String driverFilterAnnotation) { - this.driverFilterAnnotation = driverFilterAnnotation; - } - - public String getDriverTiersFilter() { - return driverTiersFilter; - } - - public void setDriverTiersFilter(String driverTiersFilter) { - this.driverTiersFilter = driverTiersFilter; - } - - public String getDriverTiersFilterAnnotation() { - return driverTiersFilterAnnotation; - } - - public void setDriverTiersFilterAnnotation(String driverTiersFilterAnnotation) { - this.driverTiersFilterAnnotation = driverTiersFilterAnnotation; - } - - public String getAnnotationJson() { - return annotationJson; - } - - public void setAnnotationJson(String annotationJson) { - this.annotationJson = annotationJson; - } - - @Override - public int hashCode() { - int hash = 5; - return hash; - } - - @Override - public boolean equals(Object obj) { - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final CnaEvent other = (CnaEvent) obj; - if (!(this.sampleId == other.sampleId)) { - return false; - } - if (this.cnaProfileId != other.cnaProfileId) { - return false; - } - if (this.event != other.event && (this.event == null || !this.event.equals(other.event))) { - return false; - } - return true; - } - - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/Coexpression.java b/core/src/main/java/org/mskcc/cbio/portal/model/Coexpression.java deleted file mode 100644 index d805386e2b9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/Coexpression.java +++ /dev/null @@ -1,138 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.HashSet; -import java.util.Set; - -/** - * - * @author jgao - */ -public class Coexpression { - private long gene1; - private long gene2; - private int profileId; - private double pearson; - private double spearman; - - public Coexpression(long gene1, long gene2, int profileId, double pearson, double spearman) { - this.gene1 = gene1; - this.gene2 = gene2; - this.profileId = profileId; - this.pearson = pearson; - this.spearman = spearman; - } - - public long getGene1() { - return gene1; - } - - public void setGene1(long gene1) { - this.gene1 = gene1; - } - - public long getGene2() { - return gene2; - } - - public void setGene2(long gene2) { - this.gene2 = gene2; - } - - public int getProfileId() { - return profileId; - } - - public void setProfileId(int profileId) { - this.profileId = profileId; - } - - public double getPearson() { - return pearson; - } - - public void setPearson(double pearson) { - this.pearson = pearson; - } - - public double getSpearman() { - return spearman; - } - - public void setSpearman(double spearman) { - this.spearman = spearman; - } - - @Override - public int hashCode() { - int hash = 7; - hash = 97 * hash + this.profileId; - Set genes = new HashSet(2); - genes.add(gene1); - genes.add(gene2); - hash = 97 * hash + (genes != null ? genes.hashCode() : 0); - return hash; - } - - @Override - public boolean equals(Object obj) { - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final Coexpression other = (Coexpression) obj; - if (this.profileId != other.profileId) { - return false; - } - - Set genes = new HashSet(2); - genes.add(gene1); - genes.add(gene2); - - Set otherGenes = new HashSet(2); - genes.add(other.gene1); - genes.add(other.gene2); - - if (!genes.equals(otherGenes)) { - return false; - } - return true; - } - - - - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CopyNumberSegment.java b/core/src/main/java/org/mskcc/cbio/portal/model/CopyNumberSegment.java deleted file mode 100644 index ff0e90db348..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CopyNumberSegment.java +++ /dev/null @@ -1,123 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -/** - * - * @author jgao - */ -public class CopyNumberSegment { - private long segId; - private int cancerStudyId; - private int sampleId; - private String chr; // 1-22,X/Y,M - private long start; - private long end; - private int numProbes; - private double segMean; - - public CopyNumberSegment(int cancerStudyId, int sampleId, String chr, - long start, long end, int numProbes, double segMean) { - this.cancerStudyId = cancerStudyId; - this.sampleId = sampleId; - this.chr = chr; - this.start = start; - this.end = end; - this.numProbes = numProbes; - this.segMean = segMean; - } - - public int getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(int cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public String getChr() { - return chr; - } - - public void setChr(String chr) { - this.chr = chr; - } - - public long getEnd() { - return end; - } - - public void setEnd(long end) { - this.end = end; - } - - public int getNumProbes() { - return numProbes; - } - - public void setNumProbes(int numProbes) { - this.numProbes = numProbes; - } - - public int getSampleId() { - return sampleId; - } - - public void setSampleId(int sampleId) { - this.sampleId = sampleId; - } - - public long getSegId() { - return segId; - } - - public void setSegId(long segId) { - this.segId = segId; - } - - public double getSegMean() { - return segMean; - } - - public void setSegMean(double segMean) { - this.segMean = segMean; - } - - public long getStart() { - return start; - } - - public void setStart(long start) { - this.start = start; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CopyNumberSegmentFile.java b/core/src/main/java/org/mskcc/cbio/portal/model/CopyNumberSegmentFile.java deleted file mode 100644 index a0aa80c3a9c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CopyNumberSegmentFile.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -public class CopyNumberSegmentFile -{ - public static enum ReferenceGenomeId - { - hg18("hg18"), - hg19("hg19"), - hg38("hg38"), - mm10("mm10"); - - private String propertyName; - - ReferenceGenomeId(String propertyName) { this.propertyName = propertyName; } - public String toString() { return propertyName; } - static public boolean has(String value) - { - if (value == null) return false; - try { - return valueOf(value) != null; - } - catch (IllegalArgumentException x) { - return false; - } - } - } - - public int segFileId; - public int cancerStudyId; - public ReferenceGenomeId referenceGenomeId; - public String description; - public String filename; -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CopyNumberStatus.java b/core/src/main/java/org/mskcc/cbio/portal/model/CopyNumberStatus.java deleted file mode 100644 index f81f633dad9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CopyNumberStatus.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -/** - * Class for copy number status - */ -public class CopyNumberStatus { - public static final int COPY_NUMBER_AMPLIFICATION = 2; - public static final int COPY_NUMBER_GAIN = 1; - public static final int NO_CHANGE = 0; - public static final int HEMIZYGOUS_DELETION = -1; - public static final int HOMOZYGOUS_DELETION = -2; - public static final int NO_DATA = -9999; - - public static int getCNAStatus(int entrezGeneId, String caseId, String valueStr) { - - try { - Double value = Double.valueOf(valueStr); - if (value < -2 || value > 2) { - throw new IllegalArgumentException("Can't handle CNA value of: " + value - + " Case ID: " + caseId + ", Entrez Gene ID: " + entrezGeneId); - } else { - if (value > 2) { - return COPY_NUMBER_AMPLIFICATION; - } else { - return value.intValue(); - } - } - } catch (NumberFormatException e) { - throw new IllegalArgumentException("Can't handle CNA value of: " + valueStr - + " Case ID: " + caseId + ", Entrez Gene ID: " + entrezGeneId); - } - - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/CosmicMutationFrequency.java b/core/src/main/java/org/mskcc/cbio/portal/model/CosmicMutationFrequency.java deleted file mode 100644 index d517defda2a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/CosmicMutationFrequency.java +++ /dev/null @@ -1,170 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -/** - * - * @author jgao - */ -public class CosmicMutationFrequency { - private String id; - private String chr; - private long startPosition; - private String referenceAllele; - private String tumorSeqAllele; - private String strand; - private String cds; - private long entrezGeneId; - private String aminoAcidChange; - private String keyword; - private int frequency; - - public CosmicMutationFrequency(String id, long entrezGeneId, String aminoAcidChange, - String keyword, int frequency) { - this.id = id; - this.entrezGeneId = entrezGeneId; - this.aminoAcidChange = aminoAcidChange; - this.keyword = keyword; - this.frequency = frequency; - } - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public long getEntrezGeneId() { - return entrezGeneId; - } - - public void setEntrezGeneId(long entrezGeneId) { - this.entrezGeneId = entrezGeneId; - } - - public String getAminoAcidChange() { - return aminoAcidChange; - } - - public void setAminoAcidChange(String aminoAcidChange) { - this.aminoAcidChange = aminoAcidChange; - } - - public String getKeyword() { - return keyword; - } - - public void setKeyword(String keyword) { - this.keyword = keyword; - } - - public int getFrequency() { - return frequency; - } - - public void setFrequency(int frequency) { - this.frequency = frequency; - } - - public String getChr() { - return chr; - } - - public void setChr(String chr) { - this.chr = chr; - } - - public long getStartPosition() { - return startPosition; - } - - public void setStartPosition(long startPosition) { - this.startPosition = startPosition; - } - - public String getReferenceAllele() { - return referenceAllele; - } - - public void setReferenceAllele(String referenceAllele) { - this.referenceAllele = referenceAllele; - } - - public String getTumorSeqAllele() { - return tumorSeqAllele; - } - - public void setTumorSeqAllele(String tumorSeqAllele) { - this.tumorSeqAllele = tumorSeqAllele; - } - - public String getStrand() { - return strand; - } - - public void setStrand(String strand) { - this.strand = strand; - } - - public String getCds() { - return cds; - } - - public void setCds(String cds) { - this.cds = cds; - } - - @Override - public int hashCode() { - int hash = 7; - hash = 97 * hash + (this.id != null ? this.id.hashCode() : 0); - return hash; - } - - @Override - public boolean equals(Object obj) { - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final CosmicMutationFrequency other = (CosmicMutationFrequency) obj; - if ((this.id == null) ? (other.id != null) : !this.id.equals(other.id)) { - return false; - } - return true; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/DownloadLink.java b/core/src/main/java/org/mskcc/cbio/portal/model/DownloadLink.java deleted file mode 100644 index cb72c120654..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/DownloadLink.java +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.io.Serializable; -import java.util.ArrayList; - -/** - * Encapsulates a Download Link. - */ -public class DownloadLink implements Serializable { - private GeneticProfile profile; - private ArrayList geneList; - private String caseIds; - private String content; - - /** - * Constructor. - * - * @param profile GeneticProfile Object. - * @param geneList ArrayList of Gene Symbols. - * @param caseIds Whitespace-delimited list of case Ids. - * @param content Content from the CGDS Server. - */ - public DownloadLink(GeneticProfile profile, ArrayList geneList, - String caseIds, String content) { - this.profile = profile; - this.geneList = geneList; - this.caseIds = caseIds; - this.content = content; - } - - /** - * Gets the Genetic Profile. - * - * @return GeneticProfile Object. - */ - public GeneticProfile getProfile() { - return profile; - } - - /** - * Gets the Gene List. - * - * @return ArrayList of Gene Symbols. - */ - public ArrayList getGeneList() { - return geneList; - } - - /** - * Gets the Case IDs. - * - * @return whitespace-delimited list of case IDs. - */ - public String getCaseIds() { - return caseIds; - } - - /** - * Gets the content returned by the CGDS Server. - * - * @return CGDS Content. - */ - public String getContent() { - return content; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/Drug.java b/core/src/main/java/org/mskcc/cbio/portal/model/Drug.java deleted file mode 100644 index 13266080381..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/Drug.java +++ /dev/null @@ -1,163 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -public class Drug { - private String id; - private String name; - private String description; - private String synonyms; - private String externalReference; - private String resource; - private boolean isApprovedFDA = false; - private boolean isCancerDrug = false; - private boolean isNutraceuitical = false; - private Integer numberOfClinicalTrials = -1; - private String ATCCode; - - public Drug() { - } - - public Drug(String id, - String name, - String description, - String synonyms, - String externalReference, - String resource, - String ATCCode, - boolean approvedFDA, - boolean cancerDrug, - boolean nutraceuitical, - Integer numberOfClinicalTrials) { - - this.id = id; - this.name = name; - this.description = description; - this.synonyms = synonyms; - this.externalReference = externalReference; - this.resource = resource; - this.isApprovedFDA = approvedFDA; - this.ATCCode = ATCCode; - this.isCancerDrug = cancerDrug; - this.isNutraceuitical = nutraceuitical; - this.numberOfClinicalTrials = numberOfClinicalTrials; - } - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public String getSynonyms() { - return synonyms; - } - - public void setSynonyms(String synonyms) { - this.synonyms = synonyms; - } - - public String getExternalReference() { - return externalReference; - } - - public void setExternalReference(String externalReference) { - this.externalReference = externalReference; - } - - public String getResource() { - return resource; - } - - public void setResource(String resource) { - this.resource = resource; - } - - public boolean isApprovedFDA() { - return isApprovedFDA; - } - - public void setApprovedFDA(boolean approvedFDA) { - isApprovedFDA = approvedFDA; - } - - public String getATCCode() { - return ATCCode; - } - - public void setATCCode(String ATCCode) { - this.ATCCode = ATCCode; - } - - public boolean isCancerDrug() { - return isCancerDrug; - } - - public void setCancerDrug(boolean cancerDrug) { - isCancerDrug = cancerDrug; - } - - public boolean isNutraceuitical() { - return isNutraceuitical; - } - - public void setNutraceuitical(boolean nutraceuitical) { - isNutraceuitical = nutraceuitical; - } - - public Integer getNumberOfClinicalTrials() { - return numberOfClinicalTrials; - } - - public void setNumberOfClinicalTrials(Integer numberOfClinicalTrials) { - this.numberOfClinicalTrials = numberOfClinicalTrials; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/DrugInteraction.java b/core/src/main/java/org/mskcc/cbio/portal/model/DrugInteraction.java deleted file mode 100644 index 9c0b8756906..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/DrugInteraction.java +++ /dev/null @@ -1,108 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -public class DrugInteraction { - private String drug; - private long targetGene; - private String interactionType; - private String dataSource; - private String experimentTypes; - private String pubMedIDs; - - public DrugInteraction() { - } - - public DrugInteraction(String drug, - Integer targetGene, - String interactionType, - String dataSource, - String experimentTypes, - String pubMedIDs) { - - this.drug = drug; - this.targetGene = targetGene; - this.interactionType = interactionType; - this.dataSource = dataSource; - this.experimentTypes = experimentTypes; - this.pubMedIDs = pubMedIDs; - } - - public String getDrug() { - return drug; - } - - public void setDrug(String drug) { - this.drug = drug; - } - - public long getTargetGene() { - return targetGene; - } - - public void setTargetGene(long targetGene) { - this.targetGene = targetGene; - } - - public String getInteractionType() { - return interactionType; - } - - public void setInteractionType(String interactionType) { - this.interactionType = interactionType; - } - - public String getDataSource() { - return dataSource; - } - - public void setDataSource(String dataSource) { - this.dataSource = dataSource; - } - - public String getExperimentTypes() { - return experimentTypes; - } - - public void setExperimentTypes(String experimentTypes) { - this.experimentTypes = experimentTypes; - } - - public String getPubMedIDs() { - return pubMedIDs; - } - - public void setPubMedIDs(String pubMedIDs) { - this.pubMedIDs = pubMedIDs; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ExtendedMutation.java b/core/src/main/java/org/mskcc/cbio/portal/model/ExtendedMutation.java deleted file mode 100644 index 21c276f225f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ExtendedMutation.java +++ /dev/null @@ -1,891 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import com.fasterxml.jackson.annotation.JsonIgnore; - -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.mskcc.cbio.maf.MafUtil; - -/** - * Encapsules Details regarding a Single Mutation. - * - * @author Ethan Cerami. - */ -public final class ExtendedMutation -{ - - public final static class MutationEvent { - private long mutationEventId; - private CanonicalGene gene; - private String chr; - private long startPosition; - private long endPosition; - private String proteinChange; // amino acid change - private String mutationType; // variant classification - private String keyword; - private String ncbiBuild; - private String strand; - private String variantType; - private String referenceAllele; - private String tumorSeqAllele; - private String dbSnpRs; - private String dbSnpValStatus; - private String refseqMrnaId; - private String uniprotAccession; - private String codonChange; - private int proteinPosStart; - private int proteinPosEnd; - private boolean canonicalTranscript; - - public long getMutationEventId() { - return mutationEventId; - } - - public void setMutationEventId(long mutationEventId) { - this.mutationEventId = mutationEventId; - } - - @JsonIgnore - public CanonicalGene getGene() { - return gene; - } - - @JsonIgnore - public void setGene(CanonicalGene gene) { - this.gene = gene; - } - - public String getChr() { - return chr; - } - - public void setChr(String chr) { - this.chr = chr; - } - - public long getStartPosition() { - return startPosition; - } - - public void setStartPosition(long startPosition) { - this.startPosition = startPosition; - } - - public long getEndPosition() { - return endPosition; - } - - public void setEndPosition(long endPosition) { - this.endPosition = endPosition; - } - - public String getProteinChange() { - return proteinChange; - } - - public void setProteinChange(String proteinChange) { - this.proteinChange = proteinChange; - } - - public String getMutationType() { - return mutationType; - } - - public void setMutationType(String mutationType) { - this.mutationType = mutationType; - } - - public String getKeyword() { - return keyword; - } - - public void setKeyword(String keyword) { - this.keyword = keyword; - } - - public String getNcbiBuild() { - return ncbiBuild; - } - - public void setNcbiBuild(String ncbiBuild) { - this.ncbiBuild = ncbiBuild; - } - - public String getStrand() { - return strand; - } - - public void setStrand(String strand) { - this.strand = strand; - } - - public String getVariantType() { - return variantType; - } - - public void setVariantType(String variantType) { - this.variantType = variantType; - } - - public String getReferenceAllele() { - return referenceAllele; - } - - public void setReferenceAllele(String referenceAllele) { - this.referenceAllele = referenceAllele; - } - - public String getTumorSeqAllele() { - return tumorSeqAllele; - } - - public void setTumorSeqAllele(String tumorSeqAllele) { - this.tumorSeqAllele = tumorSeqAllele; - } - - public String getDbSnpRs() { - return dbSnpRs; - } - - public void setDbSnpRs(String dbSnpRs) { - this.dbSnpRs = dbSnpRs; - } - - public String getDbSnpValStatus() { - return dbSnpValStatus; - } - - public void setDbSnpValStatus(String dbSnpValStatus) { - this.dbSnpValStatus = dbSnpValStatus; - } - - public String getRefseqMrnaId() { - return refseqMrnaId; - } - - public void setRefseqMrnaId(String refseqMrnaId) { - this.refseqMrnaId = refseqMrnaId; - } - - public String getUniprotAccession() { - return uniprotAccession; - } - - public void setUniprotAccession(String uniprotAccession) { - this.uniprotAccession = uniprotAccession; - } - - public String getCodonChange() { - return codonChange; - } - - public void setCodonChange(String codonChange) { - this.codonChange = codonChange; - } - - public int getProteinPosStart() { - return proteinPosStart; - } - - public void setProteinPosStart(int proteinPosStart) { - this.proteinPosStart = proteinPosStart; - } - - public int getProteinPosEnd() { - return proteinPosEnd; - } - - public void setProteinPosEnd(int proteinPosEnd) { - this.proteinPosEnd = proteinPosEnd; - } - - public boolean isCanonicalTranscript() { - return canonicalTranscript; - } - - public void setCanonicalTranscript(boolean canonicalTranscript) { - this.canonicalTranscript = canonicalTranscript; - } - - // The fields used here have to be the same as in sql file. - // The comparison has to be case insensitive, since this is how MYSQL will - // look at the values for the UQ constraint in DB. - @Override - public int hashCode() { - int hash = 3; - hash = 37 * hash + (this.gene != null ? this.gene.hashCode() : 0); - hash = 37 * hash + (this.chr != null ? this.chr.toUpperCase().hashCode() : 0); - hash = 37 * hash + (int) (this.startPosition ^ (this.startPosition >>> 32)); - hash = 37 * hash + (int) (this.endPosition ^ (this.endPosition >>> 32)); - hash = 37 * hash + (this.proteinChange != null ? this.proteinChange.toUpperCase().hashCode() : 0); - hash = 37 * hash + (this.tumorSeqAllele != null ? this.tumorSeqAllele.toUpperCase().hashCode() : 0); - hash = 37 * hash + (this.mutationType != null ? this.mutationType.toUpperCase().hashCode() : 0); - return hash; - } - - @Override - public boolean equals(Object obj) { - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final MutationEvent other = (MutationEvent) obj; - if (this.gene != other.gene && (this.gene == null || !this.gene.equals(other.gene))) { - return false; - } - if ((this.chr == null) ? (other.chr != null) : !this.chr.equalsIgnoreCase(other.chr)) { - return false; - } - if (this.startPosition != other.startPosition) { - return false; - } - if (this.endPosition != other.endPosition) { - return false; - } - if ((this.proteinChange == null) ? (other.proteinChange != null) : !this.proteinChange.equalsIgnoreCase(other.proteinChange)) { - return false; - } - if ((this.tumorSeqAllele == null) ? (other.tumorSeqAllele != null) : !this.tumorSeqAllele.equalsIgnoreCase(other.tumorSeqAllele)) { - return false; - } - if ((this.mutationType == null) ? (other.mutationType != null) : !this.mutationType.equalsIgnoreCase(other.mutationType)) { - return false; - } - return true; - } - } - private static final String GERMLINE = "germline"; - - private MutationEvent event; - private int geneticProfileId; - private int sampleId; - private String sequencingCenter; - private String sequencer; - private String mutationStatus; - private String validationStatus; - private String tumorSeqAllele1; - private String tumorSeqAllele2; - private String matchedNormSampleBarcode; - private String matchNormSeqAllele1; - private String matchNormSeqAllele2; - private String tumorValidationAllele1; - private String tumorValidationAllele2; - private String matchNormValidationAllele1; - private String matchNormValidationAllele2; - private String verificationStatus; - private String sequencingPhase; - private String sequenceSource; - private String validationMethod; - private String score; - private String bamFile; - private String aminoAcidChange; - private Integer tumorAltCount; - private Integer tumorRefCount; - private Integer normalAltCount; - private Integer normalRefCount; - private String driverFilter; - private String driverFilterAnn; - private String driverTiersFilter; - private String driverTiersFilterAnn; - private String annotationJson; - - public ExtendedMutation() { - this(new MutationEvent()); - } - - public ExtendedMutation(MutationEvent event) { - this.event = event; - } - - /** - * Constructor. - * - * @param gene Gene Object. - * @param validationStatus Validation Status, e.g. Valid or Unknown. - * @param mutationStatus Mutation Status, e.g. Somatic or Germline. - * @param mutationType Mutation Type, e.g. Nonsense_Mutation, Frame_Shift_Del, etc. - */ - public ExtendedMutation(CanonicalGene gene, String validationStatus, String mutationStatus, - String mutationType) { - this(); - this.setGene(gene); - this.mutationStatus = mutationStatus; - this.validationStatus = validationStatus; - this.setMutationType(mutationType); - } - - /** - * Sets the Sequencing Center which performed the sequencing. - * @param center sequencing center, e.g. WashU, Broad, etc. - */ - public void setSequencingCenter(String center) { - this.sequencingCenter = center; - } - - /** - * Gets the Sequencing Center which performed the sequencing. - * @return sequencing center, e.g. WashU, Broad, etc. - */ - public String getSequencingCenter() { - return sequencingCenter; - } - - /** - * Gets the Mutations Status, e.g. Somatic or Germline. - * @return mutation status, e.g. Somatic or Germline. - */ - public String getMutationStatus() { - return mutationStatus; - } - - @JsonIgnore - public boolean isGermlineMutation() { - return getMutationStatus() != null && getMutationStatus().equalsIgnoreCase(GERMLINE); - } - - /** - * Sets the Mutation Status, e.g. Somatic or Germline. - * @param mutationStatus mutation status, e.g. Somatic or Germline. - */ - public void setMutationStatus(String mutationStatus) { - this.mutationStatus = mutationStatus; - } - - /** - * Sets the Validation Status, e.g. Valid or Unknown. - * @param validationStatus validation status, e.g. Valid or Unknown. - */ - public void setValidationStatus(String validationStatus) { - this.validationStatus = validationStatus; - } - - /** - * Gets the Validation Status, e.g. Valid or Unknown. - * @return validation status, e.g. Valid or Unknown. - */ - public String getValidationStatus() { - return validationStatus; - } - - /** - * Sets the Mutation Type, e.g. Nonsense_Mutation, Frame_Shift_Del, etc. - * @param mutationType mutation type, e.g. Nonsense_Mutation, Frame_Shift_Del, etc. - */ - public void setMutationType(String mutationType) { - event.setMutationType(mutationType); - } - - /** - * Gets the Mutation Type, e.g. Nonsense_Mutation, Frame_Shift_Del, etc. - * @return mutation type, e.g. Nonsense_Mutation, Frame_Shift_Del, etc. - */ - public String getMutationType() { - return event.getMutationType(); - } - - public int getGeneticProfileId() { - return geneticProfileId; - } - - public void setGeneticProfileId(int geneticProfileId) { - this.geneticProfileId = geneticProfileId; - } - - public int getSampleId() { - return sampleId; - } - - public void setSampleId(int sampleId) { - this.sampleId = sampleId; - } - - public String getChr() { - return event.getChr(); - } - - public void setChr(String chr) { - event.setChr(chr); - } - - public long getStartPosition() { - return event.getStartPosition(); - } - - public void setStartPosition(long startPosition) { - event.setStartPosition(startPosition); - } - - public long getEndPosition() { - return event.getEndPosition(); - } - - public void setEndPosition(long endPosition) { - event.setEndPosition(endPosition); - } - - public String getProteinChange() { - return event.getProteinChange(); - } - - public void setProteinChange(String proteinChange) { - event.setProteinChange(proteinChange); - } - - public String getAminoAcidChange() - { - return aminoAcidChange; - } - - public void setAminoAcidChange(String aminoAcidChange) - { - this.aminoAcidChange = aminoAcidChange; - } - - public String getSequencer() { - return sequencer; - } - - public void setSequencer(String sequencer) { - this.sequencer = sequencer; - } - - public String getNcbiBuild() { - return event.getNcbiBuild(); - } - - public void setNcbiBuild(String ncbiBuild) { - event.setNcbiBuild(ncbiBuild); - } - - public String getStrand() { - return event.getStrand(); - } - - public void setStrand(String strand) { - event.setStrand(strand); - } - - public String getVariantType() { - return event.getVariantType(); - } - - public void setVariantType(String variantType) { - event.setVariantType(variantType); - } - - public String getReferenceAllele() { - return event.getReferenceAllele(); - } - - public void setReferenceAllele(String referenceAllele) { - event.setReferenceAllele(referenceAllele); - } - - public String getTumorSeqAllele() { - return event.getTumorSeqAllele(); - } - - public void setTumorSeqAllele(String tumorSeqAllele) { - event.setTumorSeqAllele(tumorSeqAllele); - } - - public String getTumorSeqAllele1() { - return tumorSeqAllele1; - } - - public void setTumorSeqAllele1(String tumorSeqAllele1) { - this.tumorSeqAllele1 = tumorSeqAllele1; - } - - public String getTumorSeqAllele2() { - return tumorSeqAllele2; - } - - public void setTumorSeqAllele2(String tumorSeqAllele2) { - this.tumorSeqAllele2 = tumorSeqAllele2; - } - - - - /** - * Set alleles. - * For variant allele: one of the tumor sequence alleles is selected. - * @see MafUtil#resolveTumorSeqAllele(String referenceAllele, String tumorSeqAllele1, String tumorSeqAllele2) - * - * @param varAllele1 the first variant allele - * @param varAllele2 the second variant allele - * @param refAllele the reference allele - * @return tumor sequence allele - */ - public void setAllele(String varAllele1, String varAllele2, String refAllele) - { - this.setReferenceAllele(refAllele); - this.setTumorSeqAllele1(varAllele1); - this.setTumorSeqAllele2(varAllele2); - this.setTumorSeqAllele(MafUtil.resolveTumorSeqAllele(refAllele, varAllele1, varAllele2)); - } - - public String getDbSnpRs() { - return event.getDbSnpRs(); - } - - public void setDbSnpRs(String dbSnpRs) { - event.setDbSnpRs(dbSnpRs); - } - - public String getDbSnpValStatus() { - return event.getDbSnpValStatus(); - } - - public void setDbSnpValStatus(String dbSnpValStatus) { - event.setDbSnpValStatus(dbSnpValStatus); - } - - public String getMatchedNormSampleBarcode() { - return matchedNormSampleBarcode; - } - - public void setMatchedNormSampleBarcode(String matchedNormSampleBarcode) { - this.matchedNormSampleBarcode = matchedNormSampleBarcode; - } - - public String getMatchNormSeqAllele1() { - return matchNormSeqAllele1; - } - - public void setMatchNormSeqAllele1(String matchNormSeqAllele1) { - this.matchNormSeqAllele1 = matchNormSeqAllele1; - } - - public String getMatchNormSeqAllele2() { - return matchNormSeqAllele2; - } - - public void setMatchNormSeqAllele2(String matchNormSeqAllele2) { - this.matchNormSeqAllele2 = matchNormSeqAllele2; - } - - public String getTumorValidationAllele1() { - return tumorValidationAllele1; - } - - public void setTumorValidationAllele1(String tumorValidationAllele1) { - this.tumorValidationAllele1 = tumorValidationAllele1; - } - - public String getTumorValidationAllele2() { - return tumorValidationAllele2; - } - - public void setTumorValidationAllele2(String tumorValidationAllele2) { - this.tumorValidationAllele2 = tumorValidationAllele2; - } - - public String getMatchNormValidationAllele1() { - return matchNormValidationAllele1; - } - - public void setMatchNormValidationAllele1(String matchNormValidationAllele1) { - this.matchNormValidationAllele1 = matchNormValidationAllele1; - } - - public String getMatchNormValidationAllele2() { - return matchNormValidationAllele2; - } - - public void setMatchNormValidationAllele2(String matchNormValidationAllele2) { - this.matchNormValidationAllele2 = matchNormValidationAllele2; - } - - public String getVerificationStatus() { - return verificationStatus; - } - - public void setVerificationStatus(String verificationStatus) { - this.verificationStatus = verificationStatus; - } - - public String getSequencingPhase() { - return sequencingPhase; - } - - public void setSequencingPhase(String sequencingPhase) { - this.sequencingPhase = sequencingPhase; - } - - public String getSequenceSource() { - return sequenceSource; - } - - public void setSequenceSource(String sequenceSource) { - this.sequenceSource = sequenceSource; - } - - public String getValidationMethod() { - return validationMethod; - } - - public void setValidationMethod(String validationMethod) { - this.validationMethod = validationMethod; - } - - public String getScore() { - return score; - } - - public void setScore(String score) { - this.score = score; - } - - public String getBamFile() { - return bamFile; - } - - public void setBamFile(String bamFile) { - this.bamFile = bamFile; - } - - public Integer getTumorAltCount() { - return tumorAltCount; - } - - public void setTumorAltCount(Integer tumorAltCount) { - this.tumorAltCount = tumorAltCount; - } - - public Integer getTumorRefCount() { - return tumorRefCount; - } - - public void setTumorRefCount(Integer tumorRefCount) { - this.tumorRefCount = tumorRefCount; - } - - public Integer getNormalAltCount() { - return normalAltCount; - } - - public void setNormalAltCount(Integer normalAltCount) { - this.normalAltCount = normalAltCount; - } - - public Integer getNormalRefCount() { - return normalRefCount; - } - - public void setNormalRefCount(Integer normalRefCount) { - this.normalRefCount = normalRefCount; - } - - public String getRefseqMrnaId() - { - return event.getRefseqMrnaId(); - } - - public void setRefseqMrnaId(String refseqMrnaId) - { - event.setRefseqMrnaId(refseqMrnaId); - } - - public String getUniprotAccession() - { - return event.getUniprotAccession(); - } - - public void setUniprotAccession(String uniprotAccession) - { - event.setUniprotAccession(uniprotAccession); - } - - public String getCodonChange() - { - return event.getCodonChange(); - } - - public void setCodonChange(String codonChange) - { - event.setCodonChange(codonChange); - } - - public int getProteinPosStart() - { - return event.getProteinPosStart(); - } - - public void setProteinPosStart(int proteinPosStart) - { - event.setProteinPosStart(proteinPosStart); - } - - public int getProteinPosEnd() - { - return event.getProteinPosEnd(); - } - - public void setProteinPosEnd(int proteinPosEnd) - { - event.setProteinPosEnd(proteinPosEnd); - } - - public boolean isCanonicalTranscript() - { - return event.isCanonicalTranscript(); - } - - public void setCanonicalTranscript(boolean canonicalTranscript) - { - event.setCanonicalTranscript(canonicalTranscript); - } - - @JsonIgnore - public void setGene(CanonicalGene gene) { - event.setGene(gene); - } - - @JsonIgnore - public CanonicalGene getGene() { - return event.getGene(); - } - - @JsonIgnore - public long getEntrezGeneId() { - return event.getGene().getEntrezGeneId(); - } - - @JsonIgnore - public String getGeneSymbol() { - return event.getGene().getHugoGeneSymbolAllCaps(); - } - - public long getMutationEventId() { - return event.getMutationEventId(); - } - - public void setMutationEventId(long mutationEventId) { - event.setMutationEventId(mutationEventId); - } - - public String getKeyword() { - return event.getKeyword(); - } - - public void setKeyword(String keyword) { - event.setKeyword(keyword); - } - - public MutationEvent getEvent() { - return event; - } - - public void setEvent(MutationEvent event) { - this.event = event; - } - - public void setDriverFilter(String driverFilter) { - this.driverFilter = driverFilter; - } - - public String getDriverFilter() { - return driverFilter; - } - - public void setDriverFilterAnn(String driverFilterAnn) { - this.driverFilterAnn = driverFilterAnn; - } - - public String getDriverFilterAnn() { - return driverFilterAnn; - } - - public void setDriverTiersFilter(String driverTiersFilter) { - this.driverTiersFilter = driverTiersFilter; - } - - public String getDriverTiersFilter() { - return driverTiersFilter; - } - - public void setDriverTiersFilterAnn(String driverTiersFilterAnn) { - this.driverTiersFilterAnn = driverTiersFilterAnn; - } - - public String getDriverTiersFilterAnn() { - return driverTiersFilterAnn; - } - - public String getAnnotationJson() { - return annotationJson; - } - - public void setAnnotationJson(String annotationJson) { - this.annotationJson = annotationJson; - } - - @Override - public String toString() { - return ToStringBuilder.reflectionToString(this); - } - - @Override - public int hashCode() { - int hash = 7; - hash = 79 * hash + (this.event != null ? this.event.hashCode() : 0); - hash = 79 * hash + this.geneticProfileId; - hash = 79 * hash; - return hash; - } - - @Override - public boolean equals(Object obj) { - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final ExtendedMutation other = (ExtendedMutation) obj; - if (this.event != other.event && (this.event == null || !this.event.equals(other.event))) { - return false; - } - if (this.geneticProfileId != other.geneticProfileId) { - return false; - } - if (this.sampleId != other.sampleId) { - return false; - } - return true; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ExtendedMutationMap.java b/core/src/main/java/org/mskcc/cbio/portal/model/ExtendedMutationMap.java deleted file mode 100644 index 04105ecf3f1..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ExtendedMutationMap.java +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.ArrayList; -import java.util.HashMap; - -/** - * A HashMap of ExtendedMutation Objects, indexed by Gene and Sample ID. - * - * @author Ethan Cerami. - */ -public class ExtendedMutationMap { - private static final String DELIMITER = ":"; - private HashMap > mutationCaseMap = - new HashMap>(); - private HashMap > mutationMap = - new HashMap>(); - private ArrayList sampleList; - - public ExtendedMutationMap (ArrayList mutationList, - ArrayList sampleList) { - this.sampleList = sampleList; - for (ExtendedMutation mutation: mutationList) { - String key = getKey(mutation.getGeneSymbol(), mutation.getSampleId()); - appendToMap(key, mutation, mutationCaseMap); - appendToMap(mutation.getGeneSymbol(), mutation, mutationMap); - } - } - - /** - * Gets all Extended Mutations, associated with the specified Gene / Sample ID combination. - * @param geneSymbol Gene Symbol. - * @param sampleId Case ID. - * @return ArrayList of ExtendedMutation Objects. - */ - public ArrayList getExtendedMutations(String geneSymbol, Integer sampleId) { - String key = getKey(geneSymbol.toUpperCase(), sampleId); - return mutationCaseMap.get(key); - } - - /** - * Gets all Extended Mutations, associated with the specified Gene. - * @param geneSymbol Gene Symbol. - * @return ArrayList of ExtendedMutation Objects. - */ - public ArrayList getExtendedMutations(String geneSymbol) { - return mutationMap.get(geneSymbol.toUpperCase()); - } - - public int getNumExtendedMutations(String geneSymbol) { - ArrayList mutationList = mutationMap.get(geneSymbol.toUpperCase()); - if (mutationList == null) { - return 0; - } else { - return mutationList.size(); - } - } - - public int getNumGenesWithExtendedMutations() { - return mutationMap.keySet().size(); - } - - public ArrayList getSampleList() { - return sampleList; - } - - private void appendToMap(String key, ExtendedMutation mutation, - HashMap > map) { - if (map.containsKey(key)) { - ArrayList currentList = map.get(key); - currentList.add(mutation); - } else { - ArrayList currentList = new ArrayList (); - currentList.add(mutation); - map.put(key, currentList); - } - } - - private String getKey(String geneSymbol, Integer sampleId) { - return geneSymbol + DELIMITER + sampleId; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/Gene.java b/core/src/main/java/org/mskcc/cbio/portal/model/Gene.java deleted file mode 100644 index eeb89aa1d58..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/Gene.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -/** - * Encapsulate a Gene. - */ -public abstract class Gene { - - public abstract String getStandardSymbol(); -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GeneCounterPrefs.java b/core/src/main/java/org/mskcc/cbio/portal/model/GeneCounterPrefs.java deleted file mode 100644 index 1fc8eb98bc7..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GeneCounterPrefs.java +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -// TODO: I think this can be deleted -public class GeneCounterPrefs { - - private boolean mrnaUp; - private boolean mrnaDown; - private boolean ignoreMrna; - private boolean cnaUp; - private boolean cnaDown; - private boolean ignoreCna; - - - public boolean mrnaUp() { - return mrnaUp; - } - - public void setMrnaUp(boolean flag) { - this.mrnaUp = flag; - } - - public boolean mrnaDown() { - return mrnaDown; - } - - public void setMrnaDown(boolean flag) { - this.mrnaDown = flag; - } - - public boolean ignoreMrna() { - return ignoreMrna; - } - - public void setIgnoreMrna(boolean flag) { - this.ignoreMrna = flag; - } - - public boolean cnaUp() { - return cnaUp; - } - - public void setCnaUp(boolean flag) { - this.cnaUp = flag; - } - - public boolean cnaDown() { - return cnaDown; - } - - public void setCnaDown(boolean flag) { - this.cnaDown = flag; - } - - public boolean ignoreCna() { - return ignoreCna; - } - - public void setIgnoreCna(boolean flag) { - this.ignoreCna = flag; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GenePanel.java b/core/src/main/java/org/mskcc/cbio/portal/model/GenePanel.java deleted file mode 100644 index ab49fd4c9a2..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GenePanel.java +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Copyright (c) 2016 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ -package org.mskcc.cbio.portal.model; - -/** - * - * @author heinsz - */ - -import org.mskcc.cbio.portal.model.CanonicalGene; - -import java.io.Serializable; -import java.util.Set; - -public class GenePanel implements Serializable { - - private Integer internalId; - private String stableId; - private String description; - private Set genes; - - public GenePanel() {} - - public Integer getInternalId() { - return internalId; - } - - public void setInternalId(Integer internalId) { - this.internalId = internalId; - } - - public String getStableId() { - return stableId; - } - - public void setStableId(String stableId) { - this.stableId = stableId; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public Set getGenes() { - return genes; - } - - public void setGenes(Set genes) { - this.genes = genes; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GeneWithScore.java b/core/src/main/java/org/mskcc/cbio/portal/model/GeneWithScore.java deleted file mode 100644 index 18b363696fc..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GeneWithScore.java +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneWithSpec; - -/** - * Encapsulates a Gene with a Score. - * Score is used to rank genes. - */ -public class GeneWithScore { - private String gene; - private int entrezGeneId; - private double score; - // apg: was: private GeneCounterPrefs counterPrefs; - private GeneWithSpec aGeneWithSpec; - - /** - * Constructor. - */ - public GeneWithScore() { - // apg: was: counterPrefs = new GeneCounterPrefs(); - // TODO: decide if this constructor is needed: aGeneWithSpec = new GeneWithSpec(); - } - - /** - * Gets the Gene Symbol. - * - * @return gene symbol. - */ - public String getGene() { - return gene; - } - - /** - * Sets the Gene Symbol. - * - * @param gene gene symbol. - */ - public void setGene(String gene) { - this.gene = gene; - } - - /** - * Gets Entrez Gene Id. - * - * @return Entrez Gene Id. - */ - public int getEntrezGeneId() { - return entrezGeneId; - } - - /** - * Sets Entrez Gene Id. - * - * @param entrezGeneId Entrez Gene Id; - */ - public void setEntrezGeneId(int entrezGeneId) { - this.entrezGeneId = entrezGeneId; - } - - /** - * Gets the score. - * - * @return gene score. - */ - public double getScore() { - return score; - } - - /** - * Sets the gene score. - * - * @param score gene score. - */ - public void setScore(double score) { - this.score = score; - } - - /** - * Gets the Counter Prefs. - * @return Counter Prefs. - */ - /* apg: was - public GeneCounterPrefs getCounterPrefs() { - return counterPrefs; - } - */ - public GeneWithSpec getaGeneWithSpec() { - return aGeneWithSpec; - } - - - /** - * Sets the Counter Prefs; - * @param counterPrefs Counter Prefs. - */ - /* apg: was - public void setCounterPrefs(GeneCounterPrefs counterPrefs) { - this.counterPrefs = counterPrefs; - } - */ - public void setaGeneWithSpec(GeneWithSpec aGeneWithSpec) { - this.aGeneWithSpec = aGeneWithSpec; - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/Geneset.java b/core/src/main/java/org/mskcc/cbio/portal/model/Geneset.java deleted file mode 100644 index 6b5bbe37daa..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/Geneset.java +++ /dev/null @@ -1,151 +0,0 @@ -/* - * Copyright (c) 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.io.Serializable; -import java.util.Set; - -/** - * @author ochoaa - * @author Sander Tan - */ - -public class Geneset implements Serializable { - - private int id; - private int geneticEntityId; - private String externalId; - private String name; - private String description; - private String refLink; - private Set genesetGeneIds; - - /** - * @return the id - */ - public int getId() { - return id; - } - - /** - * @param id the id to set - */ - public void setId(Integer id) { - this.id = id; - } - - /** - * @return the geneticEntityId - */ - public int getGeneticEntityId() { - return geneticEntityId; - } - - /** - * @param geneticEntityId the geneticEntityId to set - */ - public void setGeneticEntityId(Integer geneticEntityId) { - this.geneticEntityId = geneticEntityId; - } - - /** - * @return the externalId - */ - public String getExternalId() { - return externalId; - } - - /** - * @param externalId the externalId to set - */ - public void setExternalId(String externalId) { - this.externalId = externalId; - } - - /** - * @return the name - */ - public String getName() { - return name; - } - - /** - * @param name the name to set - */ - public void setName(String name) { - this.name = name; - } - - /** - * @return the description - */ - public String getDescription() { - return description; - } - - /** - * @param description the description to set - */ - public void setDescription(String description) { - this.description = description; - } - - /** - * @return the refLink - */ - public String getRefLink() { - return refLink; - } - - /** - * @param refLink the refLink to set - */ - public void setRefLink(String refLink) { - this.refLink = refLink; - } - - /** - * @return the genesetGenes - */ - public Set getGenesetGeneIds() { - return genesetGeneIds; - } - - /** - * @param genesetGenes the genesetGenes to set - */ - public void setGenesetGenes(Set genesetGeneIds) { - this.genesetGeneIds = genesetGeneIds; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GenesetHierarchy.java b/core/src/main/java/org/mskcc/cbio/portal/model/GenesetHierarchy.java deleted file mode 100644 index 71a0d98beca..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GenesetHierarchy.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Copyright (c) 2017 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author Sander Tan -*/ - -package org.mskcc.cbio.portal.model; - -import java.io.Serializable; - -public class GenesetHierarchy implements Serializable { - - private int nodeId; - private String nodeName; - private int parentId; - - public GenesetHierarchy() { - } - - public int getNodeId() { - return nodeId; - } - - public void setNodeId(int nodeId) { - this.nodeId = nodeId; - } - - public String getNodeName() { - return nodeName; - } - - public void setNodeName(String nodeName) { - this.nodeName = nodeName; - } - - public int getParentId() { - return parentId; - } - - public void setParentId(int parentId) { - this.parentId = parentId; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GenesetHierarchyLeaf.java b/core/src/main/java/org/mskcc/cbio/portal/model/GenesetHierarchyLeaf.java deleted file mode 100644 index 065a9268566..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GenesetHierarchyLeaf.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) 2017 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author Sander Tan -*/ - -package org.mskcc.cbio.portal.model; - -import java.io.Serializable; - -public class GenesetHierarchyLeaf implements Serializable { - - private int nodeId; - private int genesetId; - - public void setNodeId(int nodeId) { - this.nodeId = nodeId; - } - - public int getNodeId() { - return nodeId; - } - - public void setGenesetId(int genesetId) { - this.genesetId = genesetId; - } - public int getGenesetId() { - return genesetId; - } -} - - diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticAlterationType.java b/core/src/main/java/org/mskcc/cbio/portal/model/GeneticAlterationType.java deleted file mode 100644 index eb650336eac..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticAlterationType.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -// Copied to org.cbioportal.model.MolecularProfile.GeneticAlterationType, if you alter this, -// don't forget to change the other one too -public enum GeneticAlterationType { - MUTATION_EXTENDED, - // uncalled mutations (mskcc internal) for showing read counts even if - // mutation wasn't called - MUTATION_UNCALLED, - STRUCTURAL_VARIANT, - COPY_NUMBER_ALTERATION, - MICRO_RNA_EXPRESSION, - MRNA_EXPRESSION, - MRNA_EXPRESSION_NORMALS, - RNA_EXPRESSION, - METHYLATION, - METHYLATION_BINARY, - PHOSPHORYLATION, - PROTEIN_LEVEL, - PROTEIN_ARRAY_PROTEIN_LEVEL, - PROTEIN_ARRAY_PHOSPHORYLATION, - GENESET_SCORE, - GENERIC_ASSAY -}; diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticEvent.java b/core/src/main/java/org/mskcc/cbio/portal/model/GeneticEvent.java deleted file mode 100644 index 0bf2fbaa88a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticEvent.java +++ /dev/null @@ -1,151 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import org.mskcc.cbio.portal.model.GeneticEventImpl.*; - -/** - * Interface for Encapsulating Information Regarding One Gene in One Sample. - * - * @author Ethan Cerami, Arthur Goldberg. - */ -public interface GeneticEvent { - - /** - * Is the Gene Amplified at the Copy Number Level? - * - * @return true or false. - */ - public boolean isCnaAmplified(); - - /** - * Is the Gene Homozygously Deleted at the Copy Number Level? - * - * @return true or false. - */ - public boolean isCnaHomozygouslyDeleted(); - - /** - * Is the Gene Heterozgously Deleted at the Copy Number Level? - * - * @return true or false. - */ - public boolean isCnaHeterozygousDeleted(); - - /** - * Is the Gene mRNA upregulated? - * - * @return true or false. - */ - public boolean isMRNAUpRegulated(); - - /** - * Is the Gene mRNA down-regulated? - * - * @return true or false. - */ - public boolean isMRNADownRegulated(); - - /** - * Is the Gene RPPA upregulated? - * - * @return true or false. - */ - public boolean isRPPAUpRegulated(); - - /** - * Is the Gene RPPA down-regulated? - * - * @return true or false. - */ - public boolean isRPPADownRegulated(); - - /** - * Is gene mutated. - * - * @return true or false. - */ - public boolean isMutated(); - - /** - * Gets the Gene. - * @return Gene Symbol. - */ - public String getGene(); - - /** - * Gets the Case ID. - * @return Case ID. - */ - public String caseCaseId(); - - /** - * Gets the CNA Value. - * - * @return cna Value. - */ - public CNA getCnaValue(); - - /** - * Gets the MRNA Value. - * - * @return mRNA Value. - */ - public MRNA getMrnaValue(); - - /** - * Gets the RPPA Value. - * - * @return RPPA Value. - */ - public RPPA getRPPAValue(); - - /** - * Gets the mutations Value. - * - * @return mutations Value. - */ - public mutations getMutationValue(); - - /** - * Gets the mutation type (amino acid change). - * - * @return mutation Type. - */ - public String getMutationType(); - - /** - * Set the event's comparator. - */ - public void setGeneticEventComparator( GeneticEventComparator geneticEventComparator ); -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticEventComparator.java b/core/src/main/java/org/mskcc/cbio/portal/model/GeneticEventComparator.java deleted file mode 100644 index c5e01e8c66d..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticEventComparator.java +++ /dev/null @@ -1,298 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.ArrayList; -import java.util.Comparator; -import java.util.EnumSet; -import java.util.HashMap; - -import org.mskcc.cbio.portal.model.GeneticEventImpl.CNA; -import org.mskcc.cbio.portal.model.GeneticEventImpl.MRNA; -import org.mskcc.cbio.portal.model.GeneticEventImpl.RPPA; -import org.mskcc.cbio.portal.model.GeneticEventImpl.mutations; - -/** - * Provides configurable comparison and equals of GeneticEventImpls. - * @author arthur goldberg - */ -public class GeneticEventComparator implements Comparator{ - - private ArrayList> cnaSortOrder = new ArrayList>(); - private ArrayList> mRnaSortOrder = new ArrayList>(); - private ArrayList> rppaSortOrder = new ArrayList>(); - private ArrayList> mutationsSortOrder = new ArrayList>(); - - private HashMap cnaSortOrderHash = new HashMap(); // load this from cnaSortOrder - private HashMap mrnaSortOrderHash = new HashMap(); // load this from mRnaSortOrder - private HashMap rppaSortOrderHash = new HashMap(); // load this from mRnaSortOrder - private HashMap mutationsSortOrderHash = - new HashMap(); // load this from mutationsSortOrder - - /* - * default sort order - */ - public GeneticEventComparator( ){ - defaultSortOrder(); - } - - public GeneticEventComparator( ArrayList> CNAsortOrder, - ArrayList> MRNAsortOrder, - ArrayList> RPPAsortOrder, - ArrayList> mutationsSortOrder ){ - this.cnaSortOrder = CNAsortOrder; - this.mRnaSortOrder = MRNAsortOrder; - this.rppaSortOrder = RPPAsortOrder; - this.mutationsSortOrder = mutationsSortOrder; - initSortOrder(); - } - - private void defaultSortOrder(){ - //System.out.println( "defaultSortOrder: " ); - int val = 1; - // all CNAs - for (CNA aCNA : CNA.values()){ - //System.out.println( aCNA + ": " + val ); - cnaSortOrderHash.put(aCNA, Integer.valueOf( val++ ) ); - } - - // all MRNAs - val = 1; - for (MRNA aMRNA : MRNA.values()){ - mrnaSortOrderHash.put(aMRNA, Integer.valueOf( val++ ) ); - } - - // all RPPAs - val = 1; - for (RPPA aRPPA : RPPA.values()){ - rppaSortOrderHash.put(aRPPA, Integer.valueOf( val++ ) ); - } - - // all mutations - val = 1; - for (mutations aMutations : mutations.values()){ - mutationsSortOrderHash.put(aMutations, Integer.valueOf( val++ ) ); - } - } - - // default sort orders are useful for calling the constructor - public static ArrayList> defaultCNASortOrder() { - ArrayList> CNAsortOrder = new ArrayList>(); - // all CNAs - for (CNA aCNA : CNA.values()) { - CNAsortOrder.add(EnumSet.of(aCNA)); - } - return CNAsortOrder; - } - - public static ArrayList> defaultMRNASortOrder() { - ArrayList> MRNAsortOrder = new ArrayList>(); - // all MRNAs - for (MRNA aMRNA : MRNA.values()) { - MRNAsortOrder.add(EnumSet.of(aMRNA)); - } - return MRNAsortOrder; - } - - public static ArrayList> defaultRPPASortOrder() { - ArrayList> RPPAsortOrder = new ArrayList>(); - // all MRNAs - for (RPPA aRPPA : RPPA.values()) { - RPPAsortOrder.add(EnumSet.of(aRPPA)); - } - return RPPAsortOrder; - } - - public static ArrayList> defaultMutationsSortOrder() { - ArrayList> mutationsSortOrder = new ArrayList>(); - // all mutations - for (mutations aMutations : mutations.values()) { - mutationsSortOrder.add(EnumSet.of(aMutations)); - } - return mutationsSortOrder; - } - - private void initSortOrder(){ - // verify that all elements of each enumeration are provided; otherwise compare() or equals() will die - // CNA - int val = 1; - for( EnumSet aCNAset: cnaSortOrder){ - for( CNA aCNA : aCNAset){ - cnaSortOrderHash.put(aCNA, Integer.valueOf(val) ); - //System.out.println( aCNA + ": " + val ); - } - val++; - } - - // verify all CNAs - for (CNA aCNA : CNA.values()){ - if( !cnaSortOrderHash.containsKey(aCNA) ){ - throw new IllegalArgumentException("CNA sets missing: " + aCNA ); - } - } - - // MRNA - val = 1; - for( EnumSet aMRNAset: mRnaSortOrder){ - for( MRNA aMRNA : aMRNAset){ - mrnaSortOrderHash.put(aMRNA, Integer.valueOf(val) ); - //System.out.println( aMRNA + ": " + val ); - } - val++; - } - // verify all MRNAs - for (MRNA aMRNA : MRNA.values()){ - if( !mrnaSortOrderHash.containsKey(aMRNA) ){ - throw new IllegalArgumentException("MRNA sets missing: " + aMRNA ); - } - } - - // RPPA - val = 1; - for( EnumSet aRPPAset: rppaSortOrder){ - for( RPPA aRPPA : aRPPAset){ - rppaSortOrderHash.put(aRPPA, Integer.valueOf(val) ); - //System.out.println( aMRNA + ": " + val ); - } - val++; - } - // verify all RPPAs - for (RPPA aRPPA : RPPA.values()){ - if( !rppaSortOrderHash.containsKey(aRPPA) ){ - throw new IllegalArgumentException("RPPA sets missing: " + aRPPA ); - } - } - - // mutations - val = 1; - for( EnumSet aMutationsSet: mutationsSortOrder){ - for( mutations aMutations : aMutationsSet){ - mutationsSortOrderHash.put( aMutations, Integer.valueOf(val) ); - //System.out.println( aMutations + ": " + val ); - } - val++; - } - // verify all mutations - for (mutations aMutations : mutations.values()){ - if( !mutationsSortOrderHash.containsKey(aMutations) ){ - throw new IllegalArgumentException("mutations sets missing: " + aMutations ); - } - } - - } - - public int compare(Object o1, Object o2) { - if( !( o1 instanceof GeneticEventImpl && o2 instanceof GeneticEventImpl )){ - throw new IllegalArgumentException("objects not GeneticEventImpl" ); - } - GeneticEventImpl ge1 = (GeneticEventImpl) o1; - GeneticEventImpl ge2 = (GeneticEventImpl) o2; - - // for now, significance of data types is CNA, expression, mutation - // CNA - if( cnaSortOrderHash.get( ge1.getCnaValue() ).intValue() < cnaSortOrderHash.get( ge2.getCnaValue() ).intValue() ){ - return -1; - } - if( cnaSortOrderHash.get( ge1.getCnaValue() ).intValue() > cnaSortOrderHash.get( ge2.getCnaValue() ).intValue() ){ - return 1; - } - - // MRNA - if( mrnaSortOrderHash.get( ge1.getMrnaValue() ).intValue() < mrnaSortOrderHash.get - ( ge2.getMrnaValue() ).intValue() ){ - return -1; - } - if( mrnaSortOrderHash.get( ge1.getMrnaValue() ).intValue() > mrnaSortOrderHash.get - ( ge2.getMrnaValue() ).intValue() ){ - return 1; - } - - // RPPA - if( rppaSortOrderHash.get( ge1.getRPPAValue() ).intValue() < rppaSortOrderHash.get - ( ge2.getRPPAValue() ).intValue() ){ - return -1; - } - if( rppaSortOrderHash.get( ge1.getRPPAValue() ).intValue() > rppaSortOrderHash.get - ( ge2.getRPPAValue() ).intValue() ){ - return 1; - } - - // mutations - if( mutationsSortOrderHash.get( ge1.getMutationValue() ).intValue() < mutationsSortOrderHash.get - ( ge2.getMutationValue() ).intValue() ){ - return -1; - } - if( mutationsSortOrderHash.get( ge1.getMutationValue() ).intValue() > mutationsSortOrderHash.get - ( ge2.getMutationValue() ).intValue() ){ - return 1; - } - - return 0; - } - - public boolean equals(Object obj1, Object obj2 ) { - if (obj1 instanceof GeneticEvent && obj2 instanceof GeneticEvent ) { - GeneticEvent ge1 = (GeneticEvent) obj2; - GeneticEvent ge2 = (GeneticEvent) obj1; - - // CNA - if( cnaSortOrderHash.get( ge1.getCnaValue() ).intValue() != cnaSortOrderHash.get - ( ge2.getCnaValue() ).intValue() ){ - return false; - } - - // MRNA - if( mrnaSortOrderHash.get( ge1.getMrnaValue() ).intValue() != mrnaSortOrderHash.get - ( ge2.getMrnaValue() ).intValue() ){ - return false; - } - - // RPPA - //System.out.println(ge1.getRPPAValue()); - //System.out.println(rppaSortOrderHash.get( ge1.getRPPAValue() )); - //System.out.println(rppaSortOrderHash.get( ge1.getRPPAValue() ).intValue()); - if( rppaSortOrderHash.get( ge1.getRPPAValue() ).intValue() != rppaSortOrderHash.get - ( ge2.getRPPAValue() ).intValue() ){ - return false; - } - - // mutations - if( mutationsSortOrderHash.get( ge1.getMutationValue() ).intValue() != mutationsSortOrderHash.get - ( ge2.getMutationValue() ).intValue() ){ - return false; - } - return true; - } - return false; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticEventImpl.java b/core/src/main/java/org/mskcc/cbio/portal/model/GeneticEventImpl.java deleted file mode 100644 index 588844c348e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticEventImpl.java +++ /dev/null @@ -1,359 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticTypeLevel; -import org.mskcc.cbio.portal.util.ValueParser; - -/** - * Implementation of Genetic Event Interface. - * - * @author Ethan Cerami and Arthur Goldberg. - */ -public class GeneticEventImpl implements GeneticEvent { - - public enum CNA { AMPLIFIED, GAINED, DIPLOID, HEMIZYGOUSLYDELETED, HOMODELETED, NONE } - - public enum MRNA { UPREGULATED, NORMAL, DOWNREGULATED, NOTSHOWN } - - public enum RPPA { UPREGULATED, NORMAL, DOWNREGULATED, NOTSHOWN } - - public enum mutations { MUTATED, UNMUTATED, NONE } - - private CNA cnaValue; - private MRNA mrnaValue; - private RPPA rppaValue; - private mutations isMutated; - private String mutationType; // mutation type - private String gene; - private String caseId; - - private GeneticEventComparator geneticEventComparator = null; - - /** - * Constructor. - * - */ - public GeneticEventImpl(ValueParser valueParser, String gene, String caseId) { - this.gene = gene; - this.caseId = caseId; - - /* - * was: - - // TODO: this might be wrong! what should be the default? - cnaValue = CNA.Diploid; - if (valueParser.isCnaAmplified()) { - cnaValue = CNA.Amplified; - } else if (valueParser.isCnaHemizygouslyDeleted()) { - cnaValue = CNA.HemizygouslyDeleted; - } else if (valueParser.isCnaHomozygouslyDeleted()) { - cnaValue = CNA.HomozygouslyDeleted; - } - */ - cnaValue = CNA.NONE; - if( valueParser == null ){ - System.err.println( "in GeneticEventImpl w null valueParser gene: " + gene + " case: "+ caseId); - return; - } - - GeneticTypeLevel theGeneticTypeLevel = valueParser.getCNAlevel(); - if( null != theGeneticTypeLevel ){ - switch( valueParser.getCNAlevel() ){ - case Amplified: - cnaValue = CNA.AMPLIFIED; - break; - case Diploid: - cnaValue = CNA.DIPLOID; - break; - case Gained: - cnaValue = CNA.GAINED; - break; - case HemizygouslyDeleted: - cnaValue = CNA.HEMIZYGOUSLYDELETED; - break; - case HomozygouslyDeleted: - cnaValue = CNA.HOMODELETED; - break; - } - } - - mrnaValue = MRNA.NOTSHOWN; - if (valueParser.isMRNAWayUp()) { - mrnaValue = MRNA.UPREGULATED; - } else if (valueParser.isMRNAWayDown()) { - mrnaValue = MRNA.DOWNREGULATED; - } - - rppaValue = RPPA.NOTSHOWN; - if (valueParser.isRPPAWayUp()) { - rppaValue = RPPA.UPREGULATED; - } else if (valueParser.isRPPAWayDown()) { - rppaValue = RPPA.DOWNREGULATED; - } - - isMutated = mutations.UNMUTATED; - - mutationType = "Mutation cannot be determined"; - if (valueParser.isMutated()) { - isMutated = mutations.MUTATED; - // get type - mutationType = valueParser.getMutationType(); - } - } - - // TODO: really should be static, but then there's no place to store the geneticEventComparator; think of a work-around - public void setGeneticEventComparator( GeneticEventComparator geneticEventComparator ){ - this.geneticEventComparator = geneticEventComparator; - } - - /** - * Gets the CNA Value. - * - * @return cna Value. - */ - public CNA getCnaValue() { - return cnaValue; - } - - /** - * Gets the MRNA Value. - * - * @return mRNA Value. - */ - public MRNA getMrnaValue() { - return mrnaValue; - } - - /** - * Gets the RPPA Value. - * - * @return RPPA Value. - */ - public RPPA getRPPAValue() { - return rppaValue; - } - - /** - * Gets the mutation Value. - * - * @return mutation Value. - */ - public mutations getMutationValue() { - return isMutated; - } - - /** - * Gets the mutation type (amino acid change). - * - * @return mutation Type. - */ - public String getMutationType() { - return mutationType; - } - - /** - * Constructor, to be used primarily by JUnit Tests. - * - * @cnaValue Copy Number Value, discretized -2, -1, 0, 1, 2. - * @mrnaValue mRNA Value, discretized: -1, 0, 1 - */ - public GeneticEventImpl(int cnaValue, int mrnaValue, int rppaValue, boolean isMutated) { - - switch (cnaValue) { - case 2 : - this.cnaValue = CNA.AMPLIFIED; - break; - case 1 : - this.cnaValue = CNA.GAINED; - break; - case 0 : - this.cnaValue = CNA.DIPLOID; - break; - case -1 : - this.cnaValue = CNA.HEMIZYGOUSLYDELETED; - break; - case -2 : - this.cnaValue = CNA.HOMODELETED; - break; - default : - throw new IllegalArgumentException("Illegal cnaValue: " + cnaValue); - } - - switch (mrnaValue) { - case 1 : - this.mrnaValue = MRNA.UPREGULATED; - break; - case 0 : - this.mrnaValue = MRNA.NORMAL; - break; - case -1 : - this.mrnaValue = MRNA.DOWNREGULATED; - break; - default : - throw new IllegalArgumentException("Illegal mrnaValue: " - + mrnaValue); - } - - switch (rppaValue) { - case 1 : - this.rppaValue = RPPA.UPREGULATED; - break; - case 0 : - this.rppaValue = RPPA.NORMAL; - break; - case -1 : - this.rppaValue = RPPA.DOWNREGULATED; - break; - default : - throw new IllegalArgumentException("Illegal mrnaValue: " - + rppaValue); - } - - if (isMutated) { - this.isMutated = mutations.MUTATED; - } else { - this.isMutated = mutations.UNMUTATED; - } - } - - public GeneticEventImpl(CNA cnaValue, MRNA mrnaValue, RPPA rppaValue, mutations isMutated) { - - this.cnaValue = cnaValue; - this.mrnaValue = mrnaValue; - this.rppaValue = rppaValue; - this.isMutated = isMutated; - } - - /** - * Is the Gene Amplified at the Copy Number Level? - * - * @return true or false. - */ - public boolean isCnaAmplified() { - return(cnaValue == CNA.AMPLIFIED); - } - - /** - * Is the Gene Homozygously Deleted at the Copy Number Level? - * - * @return true or false. - */ - public boolean isCnaHomozygouslyDeleted() { - return(cnaValue == CNA.HOMODELETED); - } - - /** - * Is the Gene Heterozgously Deleted at the Copy Number Level? - * - * @return true or false. - */ - public boolean isCnaHeterozygousDeleted() { - return(cnaValue == CNA.HEMIZYGOUSLYDELETED); - } - - /** - * Is the Gene mRNA upregulated? - * - * @return true or false. - */ - public boolean isMRNAUpRegulated() { - return(mrnaValue == MRNA.UPREGULATED); - } - - /** - * Is the Gene mRNA down-regulated? - * - * @return true or false. - */ - public boolean isMRNADownRegulated() { - return(mrnaValue == MRNA.DOWNREGULATED); - } - - /** - * Is the Gene RPPA upregulated? - * - * @return true or false. - */ - public boolean isRPPAUpRegulated() { - return(rppaValue == RPPA.UPREGULATED); - } - - /** - * Is the Gene RPPA down-regulated? - * - * @return true or false. - */ - public boolean isRPPADownRegulated() { - return(rppaValue == RPPA.DOWNREGULATED); - } - - /** - * Is gene mutated. - * - * @return true or false. - */ - public boolean isMutated() { - return( isMutated == mutations.MUTATED); - } - - /** - * Gets the Gene. - * @return Gene Symbol. - */ - public String getGene() { - return gene; - } - - /** - * Gets the Case ID. - * @return case ID. - */ - public String caseCaseId() { - return caseId; - } - - public boolean equals(Object obj) { - if( geneticEventComparator != null ){ - return geneticEventComparator.equals(this, obj); - } - - // TODO: should be different exception - throw new IllegalArgumentException("Cannot execute GeneticEventImpl.equals, geneticEventComparator not set, call setGeneticEventComparator."); - } - - @Override - public String toString() { - return (gene + ":" + cnaValue + ":" + mrnaValue + ":" + isMutated); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticProfile.java b/core/src/main/java/org/mskcc/cbio/portal/model/GeneticProfile.java deleted file mode 100644 index 9ebc0f96cf9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticProfile.java +++ /dev/null @@ -1,246 +0,0 @@ -/* -* Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. -* -* This library is distributed in the hope that it will be useful, but WITHOUT -* ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS -* FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder -* is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no -* obligations to provide maintenance, support, updates, enhancements or -* modifications. In no event shall Memorial Sloan-Kettering Cancer Center be -* liable to any party for direct, indirect, special, incidental or -* consequential damages, including lost profits, arising out of the use of this -* software and its documentation, even if Memorial Sloan-Kettering Cancer -* Center has been advised of the possibility of such damage. -*/ - -/* -* This file is part of cBioPortal. -* -* cBioPortal is free software: you can redistribute it and/or modify -* it under the terms of the GNU Affero General Public License as -* published by the Free Software Foundation, either version 3 of the -* License. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Affero General Public License for more details. -* -* You should have received a copy of the GNU Affero General Public License -* along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.io.Serializable; -import java.util.Properties; - -import org.apache.commons.lang3.builder.ToStringBuilder; - -/** - * Class for genetic profile - */ -public class GeneticProfile implements Serializable { - private int geneticProfileId; - private String stableId; - private int cancerStudyId; - private GeneticAlterationType geneticAlterationType; - private String genericAssayType; - private String datatype; - private String profileName; - private String profileDescription; - private String targetLine; - private boolean showProfileInAnalysisTab; - private Properties otherMetadataFields; - private Float pivotThreshold; - private String sortOrder; - private boolean patientLevel; - - public GeneticProfile() { - super(); - } - - public GeneticProfile(String stableId, int cancerStudyId, GeneticAlterationType geneticAlterationType, - String datatype, String profileName, String profileDescription, boolean showProfileInAnalysisTab) { - this(); - this.stableId = stableId; - this.cancerStudyId = cancerStudyId; - this.geneticAlterationType = geneticAlterationType; - this.datatype = datatype; - this.profileName = profileName; - this.profileDescription = profileDescription; - this.showProfileInAnalysisTab = showProfileInAnalysisTab; - } - - public GeneticProfile(String stableId, int cancerStudyId, GeneticAlterationType geneticAlterationType, - String datatype, String profileName, String profileDescription, boolean showProfileInAnalysisTab, float pivotThreshold, String sortOrder) { - this(stableId, cancerStudyId, geneticAlterationType, datatype, profileName, profileDescription, showProfileInAnalysisTab); - this.pivotThreshold = pivotThreshold; - this.sortOrder = sortOrder; - } - - - /** - * Constructs a new genetic profile object with the same attributes as the one given as an argument. - * - * @param template the object to copy - */ - public GeneticProfile(GeneticProfile template) { - this( - template.getStableId(), - template.getCancerStudyId(), - template.getGeneticAlterationType(), - template.getDatatype(), - template.getProfileName(), - template.getProfileDescription(), - template.showProfileInAnalysisTab()); - this.setGeneticProfileId(template.geneticProfileId); - this.setTargetLine(template.getTargetLine()); - this.setOtherMetadataFields(template.getAllOtherMetadataFields()); - this.setPivotThreshold(template.getPivotThreshold()); - this.setSortOrder(template.getSortOrder()); - this.setPatientLevel(template.getPatientLevel()); - } - - public int getGeneticProfileId() { - return geneticProfileId; - } - - public void setGeneticProfileId(int geneticProfileId) { - this.geneticProfileId = geneticProfileId; - } - - public String getStableId() { - return stableId; - } - - public void setStableId(String stableId) { - this.stableId = stableId; - } - - public int getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(int cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public GeneticAlterationType getGeneticAlterationType() { - return geneticAlterationType; - } - - public void setGeneticAlterationType(GeneticAlterationType geneticAlterationType) { - this.geneticAlterationType = geneticAlterationType; - } - - public String getDatatype() { - return datatype; - } - - public void setDatatype(String datatype) { - this.datatype = datatype; - } - - public String getProfileName() { - return profileName; - } - - public void setProfileName(String profileName) { - this.profileName = profileName; - } - - public String getProfileDescription() { - return profileDescription; - } - - public void setProfileDescription(String profileDescription) { - this.profileDescription = profileDescription; - } - - public String getTargetLine() { - return targetLine; - } - - public void setTargetLine(String targetLine) { - this.targetLine = targetLine; - } - - public boolean showProfileInAnalysisTab() { - return showProfileInAnalysisTab; - } - - public void setShowProfileInAnalysisTab(boolean showProfileInAnalysisTab) { - this.showProfileInAnalysisTab = showProfileInAnalysisTab; - } - - public Float getPivotThreshold() { - return this.pivotThreshold; - } - - public void setPivotThreshold(Float pivotThreshold) { - this.pivotThreshold = pivotThreshold; - } - - public String getSortOrder() { - return this.sortOrder; - } - - public void setSortOrder(String sortOrder) { - this.sortOrder = sortOrder; - } - - public String getGenericAssayType() { - return genericAssayType; - } - - public void setGenericAssayType(String genericAssayType) { - this.genericAssayType = genericAssayType; - } - - public boolean getPatientLevel() { - return patientLevel; - } - - public void setPatientLevel(boolean patientLevel) { - this.patientLevel = patientLevel; - } - - /** - * Stores metadata fields only recognized in particular data file types. - * - * @param fields a properties instance holding the keys and values - */ - public void setOtherMetadataFields(Properties fields) { - this.otherMetadataFields = fields; - } - - /** - * Returns all file-specific metadata fields as a Properties object. - * - * @return a properties instance holding the keys and values or null - */ - public Properties getAllOtherMetadataFields() { - return this.otherMetadataFields; - } - - /** - * Retrieves metadata fields specific to certain data file types. - * - * @param fieldname the name of the field to retrieve - * @return the value of the field or null - */ - public String getOtherMetaDataField(String fieldname) { - if (otherMetadataFields == null) { - return null; - } else { - return otherMetadataFields.getProperty(fieldname); - } - } - - @Override - public String toString() { - return ToStringBuilder.reflectionToString(this); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticProfileLink.java b/core/src/main/java/org/mskcc/cbio/portal/model/GeneticProfileLink.java deleted file mode 100644 index 8ee01063673..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/GeneticProfileLink.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) 2017 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author Sander Tan -*/ - -package org.mskcc.cbio.portal.model; - -import java.io.Serializable; - -public class GeneticProfileLink implements Serializable { - - private int referringGeneticProfileId; - private int referredGeneticProfileId; - private String referenceType; - - public int getReferringGeneticProfileId() { - return referringGeneticProfileId; - } - public void setReferringGeneticProfileId(int referringGeneticProfileId) { - this.referringGeneticProfileId = referringGeneticProfileId; - } - public int getReferredGeneticProfileId() { - return referredGeneticProfileId; - } - public void setReferredGeneticProfileId(int referredGeneticProfileId) { - this.referredGeneticProfileId = referredGeneticProfileId; - } - public String getReferenceType() { - return referenceType; - } - public void setReferenceType(String referenceType) { - this.referenceType = referenceType; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/Gistic.java b/core/src/main/java/org/mskcc/cbio/portal/model/Gistic.java deleted file mode 100644 index 7192bb1d916..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/Gistic.java +++ /dev/null @@ -1,284 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.ArrayList; - -/** - * This represents Gistic information for a particular ROI (region of interest) - * - * @author Gideon Dresdner - */ - -public class Gistic { - - public static final int NO_SUCH_GISTIC = -1; - public static final boolean AMPLIFIED = true; // ROI is an amplified region - public static final boolean DELETED = false; // ROI is a deleted region - - private int gisticID; - private int cancerStudyId; - private int chromosome; - private String cytoband; - private int peakStart; - private int peakEnd; - private ArrayList genes_in_ROI; - private double qValue; - private boolean amp; - - /** - * Constructor. - * @param cancerStudyId database key - * @param chromosome chromosome locus (eg. chromosome 17) - * @param peakStart start of wide peak - * @param peakEnd end of wide peak - * @param qValue q-value for the ROI - * @param genes_in_ROI genes in the ROI - * @param amp_del region is amplified or deleted. To set use Gistic.AMPLIFIED or Gistic.DELETED - */ - public Gistic(int cancerStudyId, int chromosome, String cytoband, int peakStart, int peakEnd, - double qValue, ArrayList genes_in_ROI, boolean amp_del) { - - this.gisticID = NO_SUCH_GISTIC; - this.cancerStudyId = cancerStudyId; - this.chromosome = chromosome; - this.cytoband = cytoband; - this.peakStart = peakStart; - this.peakEnd = peakEnd; - this.qValue = qValue; - this.genes_in_ROI = genes_in_ROI; - this.amp = amp_del; - } - - // todo: refactor this to be a method : Gistic.getDummyGistic(); What is the syntax for factory methods? - /** - * Dummy gistic for passing between different methods that can only - * set disjoint sets of fields (see GisticReader.java) - */ - public Gistic() { - this.gisticID = NO_SUCH_GISTIC; - this.cancerStudyId = -1; - this.chromosome = -1; - this.cytoband = ""; - this.peakStart = -1; - this.peakEnd = -1; - this.qValue = -1f; - this.genes_in_ROI = new ArrayList(); - this.amp = false; - } - - /** - * Calculates the size of the ROI - * @return size of the peak in ROI - */ - public int peakSize() { - return this.peakEnd - this.peakStart; - } - - @Override public String toString() { - - return String.format("cancerStudyId=%d, " + - "chromosome: %d, " + - "cytoband: %s, " + - "peakStart: %d, " + - "peakEnd: %d, " + - "qValue: %s, " + - "genes_in_ROI: %s, " + - "amp: %s", this.cancerStudyId, - this.chromosome, - this.cytoband, - this.peakStart, - this.peakEnd, - Double.toString(this.qValue), - this.genes_in_ROI, - this.amp); - } - - /** - * Sets the internal ID associated with this record - * @param internalId - */ - - public void setInternalId(int internalId) { - this.gisticID = internalId; - } - - /** - * Sets the Cancer Study Id of a gistic - * @param cancerStudyId - */ - public void setCancerStudyId(int cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - /** - * Sets the chromosome of a gistic - * @param chromosome - */ - public void setChromosome(int chromosome) { - this.chromosome = chromosome; - } - - /** - * Sets the cytoband of a gistic - * @param cytoband - */ - public void setCytoband (String cytoband) { - this.cytoband = cytoband; - } - - /** - * Sets the start of the peak of the ROI - * @param peakStart - */ - public void setPeakStart(int peakStart) { - this.peakStart = peakStart; - } - - /** - * Sets the end of the peak of the ROI - * @param peakEnd - */ - public void setPeakEnd(int peakEnd) { - this.peakEnd = peakEnd; - } - - /** - * Sets the genes in the ROI - * @param genes_in_ROI - */ - public void setGenes_in_ROI(ArrayList genes_in_ROI) { - this.genes_in_ROI = genes_in_ROI; - } - - /** - * Adds a gene to the genes in the ROI. - * N.B. All this method does is wrap the add function. - * It does not fancy. Specifically, - * it does *not* check for duplicates. - * @param gene - */ - public void addGene(CanonicalGene gene) { - this.genes_in_ROI.add(gene); - } - - /** - * Sets the q-value of the ROI - * @param qValue - */ - public void setqValue(double qValue) { - this.qValue = qValue; - } - - /** - * Sets whether the ROI is a deletion or amplification - * Use Gistic.AMPLIFIED and Gistic.DELETED - * @param amp - */ - public void setAmp(boolean amp) { - this.amp = amp; - } - - /** - * Returns the chromosome location in chromosome-arm-band notation, - * called chromosome notation (e.g. 1q12) - * @return chromosome locus of ROI - */ - public int getChromosome() { - return chromosome; - } - - /** - * Returns the cytoband - * @return cytoband of the ROI - */ - public String getCytoband() { - return cytoband; - } - - /** - * Returns the start of the peak - * @return start of peak of ROI - */ - public int getPeakStart() { - return peakStart; - } - - /** - * Returns the end of the peak - * @return end of peak of ROI - */ - public int getPeakEnd() { - return peakEnd; - } - - /** - * Returns a list of the genes in the ROI - * @return List of genes in the wide peak of the ROI - */ - public ArrayList getGenes_in_ROI() { - return genes_in_ROI; - } - - /** - * Returns the q-value of the wide peak - * @return q-value of wide peak - */ - public double getqValue() { - return qValue; - } - - /** - * Returns the internal CancerStudy ID of the study associated with this ROI - * @return Returns the internal CancerStudy ID of the ROI - */ - public int getCancerStudyId() { - return cancerStudyId; - } - - /** - * Returns the internal ID associated with this ROI - * @return internal ID associated with this ROI - */ - public int getInternalId() { - return gisticID; - } - - /** - * Returns whether or not the wide peak of ROI is a region of amplification or deletion - * @return whether or not ROI is amplified or deleted, use Gistic.AMPLIFIED or Gistic.DELETED - */ - public boolean getAmp() { - return amp; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/Interaction.java b/core/src/main/java/org/mskcc/cbio/portal/model/Interaction.java deleted file mode 100644 index 54f4c670ec7..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/Interaction.java +++ /dev/null @@ -1,172 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -/** - * Encapsulates an Interaction. - * - * @author Ethan Cerami. - */ -public class Interaction { - private long geneA; - private long geneB; - private String interactionType; - private String experimentTypes; - private String pmids; - private String source; - - /** - * Gets Entrez Gene ID for Gene A. - * - * @return Entrez Gene ID for Gene A. - */ - public long getGeneA() { - return geneA; - } - - /** - * Sets Entrez Gene ID for Gene A. - * - * @param entrezGeneId Entrez Gene ID for Gene A. - */ - public void setGeneA(long entrezGeneId) { - this.geneA = entrezGeneId; - } - - /** - * Gets Entrez Gene ID for Gene B. - * - * @return symbol for Gene B. - */ - public long getGeneB() { - return geneB; - } - - /** - * Sets Entrez Gene ID for Gene B. - * - * @param entrezGeneID Entrez Gene ID for Gene B. - */ - public void setGeneB(long entrezGeneID) { - this.geneB = entrezGeneID; - } - - /** - * Gets the Interaction Type. - * - * @return interaction type. - */ - public String getInteractionType() { - return interactionType; - } - - /** - * Sets the Interaction Type. - * - * @param type interaction type. - */ - public void setInteractionType(String type) { - this.interactionType = type; - } - - /** - * Gets the Experiment Types. - * - * @return experiment types. - */ - public String getExperimentTypes() { - return experimentTypes; - } - - /** - * Sets the Experiment Types. - * - * @param expTypes experiment types. - */ - public void setExperimentTypes(String expTypes) { - this.experimentTypes = expTypes; - } - - /** - * Gets the PMIDs. - * - * @return PMIDs. - */ - public String getPmids() { - return pmids; - } - - /** - * Sets the PMIDs. - * - * @param p PMIDs. - */ - public void setPmids(String p) { - this.pmids = p; - } - - /** - * Gets the data source, where this interaction comes from, e.g. REACTOME. - * - * @return data source. - */ - public String getSource() { - return source; - } - - /** - * Sets the data source, where this interaction comes from, e.g. REACTOME. - * - * @param s data source - */ - public void setSource(String s) { - this.source = s; - } - - @Override - /** - * Overrides toString() - */ - public String toString() { - return "Interaction: " + geneA + " " + interactionType + " " + geneB + ", " + source; - } - - /** - * Provides a Cytoscape SIF Version of this Interaction. - * - * @return SIF Text. - */ - public String toSif() { - return geneA + " " + interactionType + " " + geneB; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/LinkOutRequest.java b/core/src/main/java/org/mskcc/cbio/portal/model/LinkOutRequest.java deleted file mode 100644 index 65b27948a50..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/LinkOutRequest.java +++ /dev/null @@ -1,145 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import org.mskcc.cbio.portal.servlet.ServletXssUtil; -import org.mskcc.cbio.portal.web_api.ProtocolException; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.owasp.validator.html.PolicyException; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import javax.servlet.http.HttpServletRequest; -import java.net.URLEncoder; -import java.io.UnsupportedEncodingException; -import java.util.Set; -import java.util.HashSet; - -/** - * Encapsulates parameters for a Link Out Request. - */ -public class LinkOutRequest { - public static final String STABLE_PARAM_CANCER_STUDY_ID = "cancer_study_id"; - public static final String STABLE_PARAM_GENE_LIST = "gene_list"; - public static final String STABLE_PARAM_QUERY = "q"; - public static final String STABLE_PARAM_REPORT = "report"; - public static final String REPORT_FULL = "full"; - public static final String REPORT_ONCOPRINT_HTML = "oncoprint_html"; - private static Logger logger = LoggerFactory.getLogger(LinkOutRequest.class); - - private String cancerStudyId; - private String geneList; - private String report; - private ServletXssUtil xssUtil; - private boolean isCrossCancerQuery = false; - - public LinkOutRequest(HttpServletRequest httpServletRequest) throws ProtocolException, DaoException { - try { - xssUtil = ServletXssUtil.getInstance(); - } catch (PolicyException e) { - logger.error("Could not instantiate XSS Util: " + e.toString()); - } - getParametersSafely(httpServletRequest); - validateParameters(); - } - - public String getCancerStudyId() { - return cancerStudyId; - } - - public String getGeneList() { - return geneList; - } - - public String getGeneListUrlEncoded() throws UnsupportedEncodingException { - return URLEncoder.encode(geneList, "UTF-8"); - } - - public String getReport() { - return report; - } - - private void getParametersSafely(HttpServletRequest httpServletRequest) { - cancerStudyId = xssUtil.getCleanInput(httpServletRequest, STABLE_PARAM_CANCER_STUDY_ID); - geneList = xssUtil.getCleanInput(httpServletRequest, STABLE_PARAM_GENE_LIST); - if (geneList==null) { - geneList = xssUtil.getCleanInput(httpServletRequest, STABLE_PARAM_QUERY); - } - report = xssUtil.getCleanInput(httpServletRequest, STABLE_PARAM_REPORT); - } - - public boolean isIsCrossCancerQuery() { - return isCrossCancerQuery; - } - - private void validateParameters() throws ProtocolException, DaoException { - validateCancerStudyId(); - validateGeneList(); - validateOutput(); - } - - private void validateGeneList() throws ProtocolException { - if (geneList == null || geneList.length() == 0) { - throw new ProtocolException (LinkOutRequest.STABLE_PARAM_GENE_LIST + " is not specified"); - } - } - - private void validateCancerStudyId() throws ProtocolException, DaoException { - if (cancerStudyId == null || cancerStudyId.length() == 0 || cancerStudyId.equalsIgnoreCase("all")) { - isCrossCancerQuery = true; - } -// CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyId); -// if (cancerStudy == null) { -// throw new ProtocolException(cancerStudyId + " is not a recognized cancer study ID."); -// } - } - - private void validateOutput() throws ProtocolException { - Set validOutputs = initValidOutputSet(); - if (report == null || report.length() == 0) { - report = REPORT_FULL; - } else { - if (!validOutputs.contains(report.toLowerCase())) { - throw new ProtocolException("Unrecognized " + STABLE_PARAM_REPORT + ": " + report); - } - } - } - - private Set initValidOutputSet() { - Set validOutputs = new HashSet(); - validOutputs.add(REPORT_FULL); - validOutputs.add(REPORT_ONCOPRINT_HTML); - return validOutputs; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/MicroRna.java b/core/src/main/java/org/mskcc/cbio/portal/model/MicroRna.java deleted file mode 100644 index 0d4730c8584..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/MicroRna.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -/** - * Class for micro rna data - */ -public class MicroRna extends Gene{ - private String microRnaId; - - public MicroRna(String microRnaId) { - this.microRnaId = microRnaId; - } - - public String getStandardSymbol() { - return microRnaId; - } - - public String getMicroRnaId() { - return microRnaId; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/MutSig.java b/core/src/main/java/org/mskcc/cbio/portal/model/MutSig.java deleted file mode 100644 index fb563a6b451..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/MutSig.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import org.mskcc.cbio.portal.dao.DaoException; - -/** - * @author Lennart Bastian - * We use MutSig as an object to simplify the process of adding and getting - * data from the mut_sig database in CGDS. - * The MutSig object takes a total of 13 parameters, 12 of which correspond - * directly to MutSig data columns, and one of which is a CanonicalGene Object, - * containing a HugeGeneSymbol and EntrezGeneID. - * This simplifies the process of switching back between the two, and ensuring - * a stable system in which gene IDs do not fluctuate. - */ - -public class MutSig { - private int cancerType; - private int rank; - private CanonicalGene canonicalGene; - private int numBasesCovered; - private int numMutations; - private float pValue; - private float qValue; - - public MutSig() { - - } - - public MutSig(int cancerType, CanonicalGene canonicalGene, int rank, - int numBasesCovered, int numMutations, float pValue, float qValue) { - this.cancerType = cancerType; - this.rank = rank; - this.canonicalGene = canonicalGene; - this.numBasesCovered = numBasesCovered; - this.numMutations = numMutations; - this.pValue = pValue; - this.qValue = qValue; - } - // ignoring fields : - // nVal, nVer, cpg, cAndG, aAndT, inDel, adjustedQValue - - -// note: getCanonicalGene will return a CanonicalGene object. - - public MutSig getInstance() throws DaoException { - return this; - } - - public int getCancerType() { - return cancerType; - } - - public int getRank() { - return rank; - } - - public CanonicalGene getCanonicalGene() { - return canonicalGene; - } - - public int getNumBasesCovered() { - return numBasesCovered; - } - - public int getNumMutations() { - return numMutations; - } - - public float getpValue() { - return pValue; - } - - public float getqValue() { - return qValue; - } - - public void setCancerType(int cancerType) { - this.cancerType = cancerType; - } - - public void setRank(int rank) { - this.rank = rank; - } - - public void setCanonicalGene(CanonicalGene canonicalGene) { - this.canonicalGene = canonicalGene; - } - - public void setNumBasesCovered(int numBasesCovered) { - this.numBasesCovered = numBasesCovered; - } - - public void setNumMutations(int numMutations) { - this.numMutations = numMutations; - } - - public void setpValue(float pValue) { - this.pValue = pValue; - } - - public void setqValue(float qValue) { - this.qValue = qValue; - } - - public String toString() { - return String.format("[canonicalGene: %s, numBasesCovered: %d, numMutations: %d, qValue: %f]", - this.getCanonicalGene(), this.numBasesCovered, this.numMutations, this.qValue); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/MutationStatus.java b/core/src/main/java/org/mskcc/cbio/portal/model/MutationStatus.java deleted file mode 100644 index 79799bd116c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/MutationStatus.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -/** - * Class for mutation status - */ -public class MutationStatus { - public static final int MUTATED = 1; - public static final int NOT_MUTATED = 0; - public static final int NO_DATA = -9999; - - public static int getMutationStatus(String value) { - //if (value < -1 || value > 1) { - // throw new IllegalArgumentException("Can't handle mutation value of: " + value); - //} else { - return (value.equals("0")) ? NOT_MUTATED : MUTATED; - //} - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/Patient.java b/core/src/main/java/org/mskcc/cbio/portal/model/Patient.java deleted file mode 100644 index 7ce2fc51b4e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/Patient.java +++ /dev/null @@ -1,183 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.Map; -import java.util.HashMap; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -/** - * Encapsulates Patient Data. - * - * @author Benjamin Gross - */ -public class Patient { - - private int internalId; - private String stableId; - private CancerStudy cancerStudy; - - private Map clinicalDataMap; - private static final Logger logger = LoggerFactory.getLogger(Patient.class); - - public Patient(CancerStudy cancerStudy, String stableId) - { - this(cancerStudy, stableId, -1, new HashMap()); - } - - public Patient(CancerStudy cancerStudy, String stableId, int internalId) - { - this(cancerStudy, stableId, internalId, new HashMap()); - } - - public Patient(CancerStudy cancerStudy, String stableId, int internalId, Map clinicalDataMap) - { - this.cancerStudy = cancerStudy; - this.stableId = stableId; - this.internalId = internalId; - this.clinicalDataMap = clinicalDataMap; - } - - @Override - public String toString() - { - return stableId; - } - - @Override - public boolean equals(Object obj) { - if (!(obj instanceof Patient)) { - return false; - } - - Patient anotherPatient = (Patient)obj; - if (this.internalId != anotherPatient.getInternalId()) { - return false; - } - - if (this.cancerStudy.getInternalId() != anotherPatient.getCancerStudy().getInternalId()) { - return false; - } - - return true; - } - - @Override - public int hashCode() { - int hash = 3; - hash = 41 * hash + (this.stableId != null ? this.stableId.hashCode() : 0); - hash = 41 * hash + this.cancerStudy.getInternalId(); - return hash; - } - - public CancerStudy getCancerStudy() - { - return cancerStudy; - } - - public int getInternalId() - { - return internalId; - } - - public String getStableId() - { - return stableId; - } - - public Double getOverallSurvivalMonths() - { - return getDoubleValue(ClinicalAttribute.OS_MONTHS); - } - public String getOverallSurvivalStatus() - { - return getStringValue(ClinicalAttribute.OS_STATUS); - } - public Double getDiseaseFreeSurvivalMonths() - { - return getDoubleValue(ClinicalAttribute.DFS_MONTHS); - } - public String getDiseaseFreeSurvivalStatus() - { - return getStringValue(ClinicalAttribute.DFS_STATUS); - } - public Double getAgeAtDiagnosis() - { - return getDoubleValue(ClinicalAttribute.AGE_AT_DIAGNOSIS); - } - public Integer getSampleCount() - { - return getIntegerValue(ClinicalAttribute.SAMPLE_COUNT); - } - - private Double getDoubleValue(String attribute) - { - ClinicalData data = clinicalDataMap.get(attribute); - if (data == null || data.getAttrVal().length() == 0 || - data.getAttrVal().equals(ClinicalAttribute.NA) || - data.getAttrVal().equals(ClinicalAttribute.MISSING)) { - return null; - } - try { - return Double.valueOf(data.getAttrVal()); - } catch (NumberFormatException e) { - logger.warn("Can't handle clinical attribute of patient: " + stableId); - return null; - } - } - - private Integer getIntegerValue(String attribute) - { - ClinicalData data = clinicalDataMap.get(attribute); - if (data == null || data.getAttrVal().length() == 0 || - data.getAttrVal().equals(ClinicalAttribute.NA) || - data.getAttrVal().equals(ClinicalAttribute.MISSING)) { - return null; - } - try { - return Integer.valueOf(data.getAttrVal()); - } catch (NumberFormatException e) { - logger.warn("Can't handle clinical attribute of patient: " + stableId); - return null; - } - } - - private String getStringValue(String attribute) - { - ClinicalData data = clinicalDataMap.get(attribute); - return (data == null || data.getAttrVal().length() == 0 || - data.getAttrVal().equals(ClinicalAttribute.NA) || - data.getAttrVal().equals(ClinicalAttribute.MISSING)) ? null : data.getAttrVal(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ProfileData.java b/core/src/main/java/org/mskcc/cbio/portal/model/ProfileData.java deleted file mode 100644 index 7548c68410e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ProfileData.java +++ /dev/null @@ -1,188 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import org.mskcc.cbio.portal.util.ValueParser; - -import java.util.ArrayList; -import java.util.HashMap; - -/** - * Encapsulates Genetic Profile Data. - * Stores the properties of each gene in each case. - * Also stores lists of the genes and cases. - * - * @author Ethan Cerami. - */ -public class ProfileData { - private String[][] matrix; - private GeneticProfile geneticProfile; - - // primary store of profile's data: - private HashMap mapFromGeneAndCaseToGeneProperties = new HashMap(); - private ArrayList caseIdList = new ArrayList(); - private ArrayList geneList = new ArrayList(); - - /** - * Constructor. - * - * @param geneticProfile GeneticProfile Object. - * @param matrix 2D Matrix of Data - */ - public ProfileData(GeneticProfile geneticProfile, String[][] matrix) { - this.geneticProfile = geneticProfile; - this.matrix = matrix; - processMatrix(); - } - - /** - * Constructor. - * - * @param hashMap HashMap of Data. - * @param geneList List of Genes. - * @param caseIdList List of Case Ids. - */ - public ProfileData(HashMap hashMap, - ArrayList geneList, ArrayList caseIdList) { - this.mapFromGeneAndCaseToGeneProperties = hashMap; - this.geneList = geneList; - this.caseIdList = caseIdList; - } - - /** - * Gets the Data Matrix. - * - * @return 2D Matrix of Data. - */ - public String[][] getMatrix() { - return matrix; - } - - /** - * Gets the Genetic Profile. - * - * @return Genetic Profile Object. - */ - public GeneticProfile getGeneticProfile() { - return geneticProfile; - } - - /** - * Gets the value of gene X in case Y. - * - * @param geneSymbol Gene Symbol. - * @param caseId Case ID. - * @return value. - */ - public String getValue(String geneSymbol, String caseId) { - String key = createKey(geneSymbol, caseId); - return mapFromGeneAndCaseToGeneProperties.get(key); - } - - /** - * Gets the value of gene X in case Y. - * - * @param geneSymbol Gene Symbol. - * @param caseId Case ID. - * @return value. - */ - public ValueParser getValueParsed(String geneSymbol, String caseId, double zScoreThreshold) { - String key = createKey(geneSymbol, caseId); - String value = mapFromGeneAndCaseToGeneProperties.get(key); - if (value != null) { - return new ValueParser (value, zScoreThreshold); - } - return null; - } - - /** - * Gets list of case Ids. - * - * @return ArrayList of Case IDs. - */ - public ArrayList getCaseIdList() { - return caseIdList; - } - - /** - * Gets list of gene symbols. - * - * @return ArrayList of Gene Symbols. - */ - public ArrayList getGeneList() { - return geneList; - } - - /** - * Process the data matrix. - */ - private void processMatrix() { - // First, extract the case IDs - if (matrix[0].length > 0) { - for (int cols = 2; cols < matrix[0].length; cols++) { - String caseId = matrix[0][cols]; - caseIdList.add(caseId); - } - } - - // Then, extract the gene list - if (matrix.length > 0) { - for (int rows = 1; rows < matrix.length; rows++) { - String geneSymbol = matrix[rows][1]; - geneList.add(geneSymbol); - } - } - - // Then, store to hashtable for quick look up - for (int rows = 1; rows < matrix.length; rows++) { - for (int cols = 2; cols < matrix[0].length; cols++) { - String value = matrix[rows][cols]; - String caseId = matrix[0][cols]; - String geneSymbol = matrix[rows][1]; - String key = createKey(geneSymbol, caseId); - mapFromGeneAndCaseToGeneProperties.put(key, value); - } - } - } - - /** - * Create gene + case ID key. - * - * @param geneSymbol gene symbol. - * @param caseId case ID. - * @return hash key. - */ - private String createKey(String geneSymbol, String caseId) { - return geneSymbol + ":" + caseId; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ProfileDataSummary.java b/core/src/main/java/org/mskcc/cbio/portal/model/ProfileDataSummary.java deleted file mode 100644 index 68747d20117..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ProfileDataSummary.java +++ /dev/null @@ -1,474 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.ArrayList; - -import java.util.Collections; -import java.util.Comparator; -import java.util.EnumMap; -import java.util.HashMap; - -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticTypeLevel; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneWithSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintSpecification; -import org.mskcc.cbio.portal.util.ValueParser; - -/** - * Utility Class for Summarizing Profile Data. - */ -public class ProfileDataSummary { - private HashMap geneAlteredMap = new HashMap(); - private HashMap geneMutatedMap = new HashMap(); - private HashMap> geneCNALevelMap - = new HashMap>(); - private HashMap geneMRNAUpDownMap = new HashMap(); - private HashMap numCasesAlteredMap = new HashMap(); - private ArrayList geneAlteredList = new ArrayList(); - private HashMap caseAlteredMap = null; //lazy init - private HashMap> mapGeneCaseParser = - new HashMap>(); - private double percentOfCasesWithAlteredPathway; - private ProfileData profileData; - private double zScoreThreshold; - private double rppaScoreThreshold; - private OncoPrintSpecification theOncoPrintSpecification; - private int numCasesAffected; - - /** - * Calculate summary statistics for the cancer profiles in data, as filtered - * through theOncoPrintSpecification and the - * zScoreThreshold. - * - * @param data - * @param theOncoPrintSpecification - * @param zScoreThreshold - */ - public ProfileDataSummary(ProfileData data, - OncoPrintSpecification theOncoPrintSpecification, - double zScoreThreshold, - double rppaScoreThreshold) { - this.profileData = data; - this.theOncoPrintSpecification = theOncoPrintSpecification; - this.zScoreThreshold = zScoreThreshold; - this.rppaScoreThreshold = rppaScoreThreshold; - ArrayList geneList = data.getGeneList(); - ArrayList caseList = data.getCaseIdList(); - geneAlteredList = determineFrequencyOfGeneAlteration(geneList, caseList); - } - - /** - * Gets the embedded Profile Data Object. - * - * @return ProfileData Object. - */ - public ProfileData getProfileData() { - return this.profileData; - } - - /** - * Gets the list of gene ordered by frequency of alteration. - * - * @return ArrayList of GeneWithScore Objects. - */ - public ArrayList getGeneFrequencyList() { - return geneAlteredList; - } - - /** - * Gets percent of cases where gene X is altered. - * - * @param gene gene symbol. - * @return percentage value. - */ - public double getPercentCasesWhereGeneIsAltered(String gene) { - return geneAlteredMap.get(gene); - } - - /** - * Gene Number of cases where gene X is altered. - * - * @param gene gene symbol. - * @return percentage value. - */ - public int getNumCasesWhereGeneIsAltered(String gene) { - return numCasesAlteredMap.get(gene); - } - - /** - * Does this case contain an alteration in at least one gene in the set. - * - * @param caseId case ID. - * @return true or false. - */ - public boolean isCaseAltered(String caseId) { - determineFrequencyOfCaseAlteration(); - if (caseAlteredMap.get(caseId) != null) { - return caseAlteredMap.get(caseId); - } - return false; - } - - /** - * Gets percent of cases that contain an alteration in at least one gene in the set. - * - * @return percent value. - */ - public double getPercentCasesAffected() { - determineFrequencyOfCaseAlteration(); - return this.percentOfCasesWithAlteredPathway; - } - - /** - * Gets number of cases that contain an alteration in at least one gene in the set. - * - * @return number of cases. - */ - public int getNumCasesAffected() { - determineFrequencyOfCaseAlteration(); - return this.numCasesAffected; - } - - private ValueParser getValueParser(String gene, String caseId) { - HashMap mapCaseParser = mapGeneCaseParser.get(gene); - if (mapCaseParser==null) { - mapCaseParser = new HashMap(); - mapGeneCaseParser.put(gene, mapCaseParser); - } - - ValueParser parser = mapCaseParser.get(caseId); - if (parser==null) { - String value = profileData.getValue(gene, caseId); - parser = ValueParser.generateValueParser(gene, value, - this.zScoreThreshold, this.rppaScoreThreshold, - this.theOncoPrintSpecification); - mapCaseParser.put(caseId, parser); - } - return parser; - - } - - /** - * Determines if the gene X is altered in case Y. - * - * @param gene gene symbol. - * @param caseId case Id. - * @return true or false. - */ - public boolean isGeneAltered(String gene, String caseId) { - ValueParser parser = getValueParser(gene, caseId); - if( null != parser ){ - return parser.isGeneAltered(); - } - return false; - } - - /** - * Determines if the gene X is mutated in case Y. - * - * @param gene gene symbol. - * @param caseId case Id. - * @return true or false. - */ - public boolean isGeneMutated(String gene, String caseId) { - ValueParser parser = getValueParser(gene, caseId); - if( null != parser ){ - return parser.isMutated(); - } - return false; - } - - /** - * Get the CNA level of gene X in case Y. - * - * @param gene gene symbol. - * @param caseId case Id. - * @return CNV level. - */ - public GeneticTypeLevel getCNALevel(String gene, String caseId) { - ValueParser parser = getValueParser(gene, caseId); - if( null != parser ){ - if (parser.isCnaAmplified()) { - return GeneticTypeLevel.Amplified; - } else if (parser.isCnaGained()) { - return GeneticTypeLevel.Gained; - } else if (parser.isCnaHemizygouslyDeleted()) { - return GeneticTypeLevel.HemizygouslyDeleted; - } else if (parser.isCnaHomozygouslyDeleted()) { - return GeneticTypeLevel.HomozygouslyDeleted; - } - } - return null; - } - - /** - * Determines if the gene X is mutated in case Y. - * - * @param gene gene symbol. - * @param caseId case Id. - * @return true or false. - */ - public boolean isMRNAWayUp(String gene, String caseId) { - ValueParser parser = getValueParser(gene, caseId); - if( null != parser ){ - return parser.isMRNAWayUp(); - } - return false; - } - - /** - * Determines if the gene X is mutated in case Y. - * - * @param gene gene symbol. - * @param caseId case Id. - * @return true or false. - */ - public boolean isMRNAWayDown(String gene, String caseId) { - ValueParser parser = getValueParser(gene, caseId); - if( null != parser ){ - return parser.isMRNAWayDown(); - } - return false; - } - - /** - * Gene percentage of cases where gene X is at a certain CNA level. - * - * @param gene gene symbol. - * @return percentage value. - */ - public double getPercentCasesWhereGeneIsAtCNALevel(String gene, GeneticTypeLevel cnaLevel) { - EnumMap map = geneCNALevelMap.get(gene); - if (map == null) { - map = new EnumMap(GeneticTypeLevel.class); - for (GeneticTypeLevel level : GeneticTypeLevel.values()) { - map.put(level, 0.0); - } - - ArrayList caseList = profileData.getCaseIdList(); - double delta = 1.0 / caseList.size(); - for (String caseId : caseList) { - GeneticTypeLevel level = getCNALevel(gene, caseId); - if (level!=null) { - map.put(level, map.get(level)+delta); - } - } - } - - return map.get(cnaLevel); - } - - /** - * Gene percentage of cases where gene X is up regulated. - * - * @param gene gene symbol. - * @return percentage value. - */ - public double getPercentCasesWhereMRNAIsUpRegulated(String gene) { - return getPercentCasesWhereMRNAIsUpOrDownRegulated(gene, true); - } - - /** - * Gene percentage of cases where gene X is down regulated. - * - * @param gene gene symbol. - * @return percentage value. - */ - public double getPercentCasesWhereMRNAIsDownRegulated(String gene) { - return getPercentCasesWhereMRNAIsUpOrDownRegulated(gene, false); - } - - - /** - * Gene percentage of cases where gene X is up/down regulated. - * - * @param gene gene symbol. - * @param upOrDown true if up regulated; false if down regulated. - * @return percentage value. - */ - private double getPercentCasesWhereMRNAIsUpOrDownRegulated(String gene, boolean up) { - if (geneMRNAUpDownMap.get(gene)==null) { - int numSamplesWhereGeneIsUpRegulated = 0; - int numSamplesWhereGeneIsDownRegulated = 0; - ArrayList caseList = profileData.getCaseIdList(); - for (String caseId : caseList) { - if (isMRNAWayUp(gene, caseId)) { - numSamplesWhereGeneIsUpRegulated++; - } else if (isMRNAWayDown(gene, caseId)) { - numSamplesWhereGeneIsDownRegulated++; - } - } - geneMRNAUpDownMap.put(gene, new double[]{ - 1.0*numSamplesWhereGeneIsUpRegulated/caseList.size(), - 1.0*numSamplesWhereGeneIsDownRegulated/caseList.size() - } - ); - } - - double[] percs = geneMRNAUpDownMap.get(gene); - return up ? percs[0] : percs[1]; - } - - - /** - * Gene percentage of cases where gene X is mutated. - * - * @param gene gene symbol. - * @return percentage value. - */ - public double getPercentCasesWhereGeneIsMutated(String gene) { - if (geneMutatedMap.get(gene)==null) { - int numSamplesWhereGeneIsMutated = 0; - ArrayList caseList = profileData.getCaseIdList(); - for (String caseId : caseList) { - if (isGeneMutated(gene, caseId)) { - numSamplesWhereGeneIsMutated++; - } - } - geneMutatedMap.put(gene, 1.0*numSamplesWhereGeneIsMutated/caseList.size()); - } - - return geneMutatedMap.get(gene); - } - - - /** - * Determines frequency with which each gene is altered. - */ - private ArrayList determineFrequencyOfGeneAlteration(ArrayList geneList, - ArrayList caseList) { - ArrayList localGeneList = new ArrayList(); - // First, determine frequency with which each gene is altered. - // Iterate through all genes. - for (String gene : geneList) { - int numSamplesWhereGeneIsAltered = 0; - - // Iterate through all cases. - for (String caseId : caseList) { - - // Determine if gene is altered in this case - boolean isAltered = isGeneAltered(gene, caseId); - - // If gene is altered in this case, increment counter. - if (isAltered) { - numSamplesWhereGeneIsAltered++; - } - } - double percent = numSamplesWhereGeneIsAltered / (double) caseList.size(); - geneAlteredMap.put(gene, percent); - numCasesAlteredMap.put(gene, numSamplesWhereGeneIsAltered); - GeneWithScore geneWithScore = new GeneWithScore(); - geneWithScore.setGene(gene); - geneWithScore.setScore(percent); - - if (this.theOncoPrintSpecification.containsGene(gene) ) { - // TODO: this isn't right, as the same gene could appear multiple times in a spec; - // thus, we need a more complex way to find the given gene - // for now, return the 1st one - GeneWithSpec aGeneWithSpec = this.theOncoPrintSpecification.getGeneWithSpec(gene); - geneWithScore.setaGeneWithSpec(aGeneWithSpec); - } - localGeneList.add(geneWithScore); - } - - // Sort genes, based on frequency of alteration. - Collections.sort(localGeneList, new GeneWithScoreComparator()); - return localGeneList; - } - - /** - * Determines frequency with which each case contains an alteration in at - * least one member of the gene set. - */ - private void determineFrequencyOfCaseAlteration() { - if (caseAlteredMap != null) { - return; - } - - caseAlteredMap = new HashMap(); - - numCasesAffected = 0; - - ArrayList caseList = profileData.getCaseIdList(); - ArrayList geneList = profileData.getGeneList(); - - // Iterate through all cases - for (String caseId : caseList) { - boolean caseIsAltered = false; - - // Iterate through all gene lists - for (String gene : geneList) { - boolean isAltered = isGeneAltered(gene, caseId); - if (isAltered) { - caseIsAltered = true; - } - } - if (caseIsAltered) { - numCasesAffected++; - } - caseAlteredMap.put(caseId, caseIsAltered); - } - - percentOfCasesWithAlteredPathway = numCasesAffected - / (double) caseList.size(); - } -} - -/** - * Ranks Genes based on score. - */ -class GeneWithScoreComparator implements Comparator { - - /** - * Ranks genes based on score. - * - * @param o0 GeneWithScore0 - * @param o1 GeneWithScore1 - * @return integer value. - */ - public int compare(Object o0, Object o1) { - GeneWithScore gene0 = (GeneWithScore) o0; - GeneWithScore gene1 = (GeneWithScore) o1; - double score0 = gene0.getScore(); - double score1 = gene1.getScore(); - if (score0 == score1) { - return gene0.getGene().compareTo(gene1.getGene()); - } else { - if (score0 < score1) { - return +1; - } else { - return -1; - } - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ProteinArrayData.java b/core/src/main/java/org/mskcc/cbio/portal/model/ProteinArrayData.java deleted file mode 100644 index b634115bfa0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ProteinArrayData.java +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -/** - * class for protein array data - * @author jj - */ -public class ProteinArrayData { - private String arrayId; - private int cancerStudyId; - private int sampleId; - private double abundance; - - public ProteinArrayData(int cancerStudyId, String arrayId, int sampleId, double abundance) { - this.cancerStudyId = cancerStudyId; - this.arrayId = arrayId; - this.sampleId = sampleId; - this.abundance = abundance; - } - - public int getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(int cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public double getAbundance() { - return abundance; - } - - public void setAbundance(double abundance) { - this.abundance = abundance; - } - - public String getArrayId() { - return arrayId; - } - - public void setArrayId(String arrayId) { - this.arrayId = arrayId; - } - - public int getSampleId() { - return sampleId; - } - - public void setSampleId(int sampleId) { - this.sampleId = sampleId; - } - - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ProteinArrayInfo.java b/core/src/main/java/org/mskcc/cbio/portal/model/ProteinArrayInfo.java deleted file mode 100644 index d70c8531114..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ProteinArrayInfo.java +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.Collections; -import java.util.Set; - -/** - * Class for protein array information - * @author jj - */ -public class ProteinArrayInfo { - private String id; - private String type; - private String gene; - private String residue; - private Set cancerStudies; - - public ProteinArrayInfo(String id, String type, String gene, - String residue, Set cancerStudies) { - this.id = id; - this.type = type; - this.gene = gene; - this.residue = residue; - this.cancerStudies = cancerStudies; - } - - public String getGene() { - return gene; - } - - public void setGene(String gene) { - this.gene = gene; - } - - public String getResidue() { - return residue; - } - - public void setResidue(String residue) { - this.residue = residue; - } - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - - public Set getCancerStudies() { - if (cancerStudies==null) { - return Collections.emptySet(); - } - return cancerStudies; - } - - public void setCancerStudies(Set cancerStudies) { - this.cancerStudies = cancerStudies; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ReferenceGenome.java b/core/src/main/java/org/mskcc/cbio/portal/model/ReferenceGenome.java deleted file mode 100644 index 0d58cd09bab..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ReferenceGenome.java +++ /dev/null @@ -1,178 +0,0 @@ -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.model; - -import java.math.BigInteger; -import java.util.Date; -import org.mskcc.cbio.portal.util.*; - -/** - * This represents the reference genome used by molecular profiling - * - * @author Kelsey Zhu - */ -public class ReferenceGenome { - - private int referenceGenomeId; // assigned by DB, auto increment sequence number - private String genomeName; - private String species; - private String buildName; //genome assembly name - private long genomeSize; //non-N bases - private String url; - private Date releaseDate; - public static String HOMO_SAPIENS = "human"; - public static String MUS_MUSCULUS = "mouse"; - public static String HOMO_SAPIENS_DEFAULT_GENOME_BUILD = "GRCh37"; - public static String HOMO_SAPIENS_DEFAULT_GENOME_NAME = "hg19"; - public static String MUS_MUSCULUS_DEFAULT_GENOME_BUILD = "GRCm38"; - public static String HOMO_SAPIENS_DEFAULT_GENOME_BUILD_PREFIX = "GRCh"; - public static String MUS_MUSCULUS_DEFAULT_GENOME_BUILD_PREFIX = "GRCm"; - - /** - * Constructor. - * @param genomeName Name of the reference genome. - * @param species Species of the reference genome. - * @param buildName Name of genome assembly - */ - public ReferenceGenome(String genomeName, String species, String buildName) { - super(); - this.genomeName = genomeName; - this.species = species; - this.buildName = buildName; - } - - /** - * Constructor. - * @param genomeName Name of the reference genome. - * @param species Species of the reference genome. - * @param buildName Name of genome assembly - * @param genomeSize Effective genome size - * @param url URL to download reference genome - * @param releaseDate Date genome assembly released - */ - public ReferenceGenome(String genomeName, String species, String buildName, - Long genomeSize, String url, Date releaseDate) { - super(); - this.genomeName = genomeName; - this.species = species; - this.buildName = buildName; - this.genomeSize = genomeSize; - this.url = url; - this.releaseDate = releaseDate; - } - - public void setReferenceGenomeId(int referenceGenomeId) { - this.referenceGenomeId = referenceGenomeId; - } - - public int getReferenceGenomeId() { - return referenceGenomeId; - } - - public void setGenomeName(String genomeName) { - this.genomeName = genomeName; - } - - public String getGenomeName() { - return this.genomeName; - } - - public void setSpecies(String species) { - this.species = species; - } - - public String getSpecies() { - return this.species; - } - - public void setBuildName(String buildName) { - this.buildName = buildName; - } - - public String getBuildName () { - return this.buildName; - } - - public void setGenomeSize(long genomeSize) { - this.genomeSize = genomeSize; - } - - public long getGenomeSize() { - return this.genomeSize; - } - - public void setUrl(String url) { - this.url = url; - } - - public String getUrl() { - return this.url; - } - - public void setReleaseDate(Date releaseDate) { - this.releaseDate = releaseDate; - } - - public Date getReleaseDate() { - return this.releaseDate; - } - - /** - * Equals. - * @param otherReferenceGenome Other Reference Genome. - * @return true of false. - */ - @Override - public boolean equals(Object otherReferenceGenome) { - if (this == otherReferenceGenome) { - return true; - } - - if (!(otherReferenceGenome instanceof ReferenceGenome)) { - return false; - } - - ReferenceGenome that = (ReferenceGenome) otherReferenceGenome; - return - EqualsUtil.areEqual(this.genomeName, that.genomeName) && - EqualsUtil.areEqual(this.species, - that.species) && - EqualsUtil.areEqual(this.buildName, that.buildName); - } - - @Override - public int hashCode() { - int result = 3; - result = 31 * result + this.referenceGenomeId; - result = 31 * result + (this.genomeName != null ? this.genomeName.hashCode() : 0); - result = 31 * result + (this.buildName != null ? this.buildName.hashCode() : 0); - result = 31 * result + (this.species != null ? this.species.hashCode() : 0); - return result; - } - - /** - * toString() Override. - * @return string summary of reference genome - */ - @Override - public String toString() { - return "Reference Genome [referenceGenomeID=" + referenceGenomeId + ", genomeName=" + genomeName + ", species=" - + species + ", buildName=" + buildName + "]"; - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ReferenceGenomeGene.java b/core/src/main/java/org/mskcc/cbio/portal/model/ReferenceGenomeGene.java deleted file mode 100644 index a0071db3972..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ReferenceGenomeGene.java +++ /dev/null @@ -1,127 +0,0 @@ -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ -package org.mskcc.cbio.portal.model; -/** - * Class to wrap Reference Genome Gene. - * @author Kelsey Zhu - */ -public class ReferenceGenomeGene { - private int referenceGenomeId; - private long entrezGeneId; - private String chr; - private String cytoband; - private long start; - private long end; - - /** - * - * @param entrezGeneId ENTREZ_GENE_ID - * @param referenceGenomeId REFERENCE_GENOME_ID - */ - public ReferenceGenomeGene(long entrezGeneId, int referenceGenomeId) { - this.entrezGeneId = entrezGeneId; - this.referenceGenomeId = referenceGenomeId; - } - - /** - * - * @param referenceGenomeId REFERENCE_GENOME_ID - * @param chr Chromosome name - * @param cytoband CYTOBAND of the gene - * @param start start point of the gene - * @param end end point of the gene - */ - public ReferenceGenomeGene(long entrezGeneId, int referenceGenomeId, String chr, - String cytoband, long start, long end) { - - this.referenceGenomeId = referenceGenomeId; - this.entrezGeneId = entrezGeneId; - this.chr = chr; - this.cytoband = cytoband; - this.start = start; - this.end = end; - } - - - public void setReferenceGenomeId(int referenceGenomeId) { - this.referenceGenomeId = referenceGenomeId; - } - - public int getReferenceGenomeId() { - return referenceGenomeId; - } - - public void setEntrezGeneId(long entrezGeneId) { - this.entrezGeneId = entrezGeneId; - } - - public long getEntrezGeneId() { - return entrezGeneId; - } - - public String getChr() { - return chr; - } - - public void setChr(String chr) { - this.chr = chr; - } - public String getCytoband() { - return cytoband; - } - - public void setCytoband(String cytoband) { - this.cytoband = cytoband; - } - - public long getStart() { - return this.start; - } - - public void setStart(long start) { - this.start = start; - } - - public long getEnd() { - return this.end = end; - } - - public void setEnd(long end) { - this.end = end; - } - - @Override - public boolean equals(Object obj0) { - if (!(obj0 instanceof ReferenceGenomeGene)) { - return false; - } - - ReferenceGenomeGene gene0 = (ReferenceGenomeGene) obj0; - if (gene0.entrezGeneId == entrezGeneId && gene0.referenceGenomeId == referenceGenomeId) { - return true; - } - return false; - } - - @Override - public int hashCode() { - int result = 2; - result = 31 * result + (int)this.entrezGeneId; - result = 31 * result + this.referenceGenomeId; - return result; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ResourceBaseData.java b/core/src/main/java/org/mskcc/cbio/portal/model/ResourceBaseData.java deleted file mode 100644 index 27f4ebc460d..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ResourceBaseData.java +++ /dev/null @@ -1,70 +0,0 @@ -package org.mskcc.cbio.portal.model; - -/** - * Encapsulates Resource Base Data. - */ -public class ResourceBaseData { - private int cancerStudyId; - private String stableId; - private String resourceId; - private String url; - - /** - * Constructor - */ - public ResourceBaseData() { - this(-1, "", "", ""); - } - - /** - * Constructor - * - * @param cancerStudyId database id of cancer study - * @param stableId stable id of the patient or sample or study - * @param resourceId resource id - * @param url url of the resource - */ - - public ResourceBaseData(int cancerStudyId, String stableId, String resourceId, String url) { - this.setCancerStudyId(cancerStudyId); - this.setStableId(stableId); - this.setResourceId(resourceId); - this.setUrl(url); - } - - public ResourceBaseData(ResourceBaseData other) { - this(other.getCancerStudyId(), other.getStableId(), other.getResourceId(), other.getUrl()); - } - - public int getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(int cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public String getStableId() { - return stableId; - } - - public void setStableId(String stableId) { - this.stableId = stableId; - } - - public String getResourceId() { - return resourceId; - } - - public void setResourceId(String resourceId) { - this.resourceId = resourceId; - } - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/ResourceDefinition.java b/core/src/main/java/org/mskcc/cbio/portal/model/ResourceDefinition.java deleted file mode 100644 index e51ff9dd934..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/ResourceDefinition.java +++ /dev/null @@ -1,79 +0,0 @@ -package org.mskcc.cbio.portal.model; - -import org.cbioportal.model.ResourceType; - -public class ResourceDefinition { - - private String resourceId; - private String displayName; - private String description; - private ResourceType resourceType; - private boolean openByDefault; - private Integer priority; - private Integer cancerStudyId; - - public ResourceDefinition(String resourceId, String displayName, - String description, ResourceType resourceType, boolean openByDefault, Integer priority, Integer cancerStudyId) { - this.resourceId = resourceId; - this.displayName = displayName; - this.description = description; - this.resourceType = resourceType; - this.openByDefault = openByDefault; - this.priority = priority; - this.cancerStudyId = cancerStudyId; - } - - public String getResourceId() { - return resourceId; - } - - public void setResourceId(String resourceId) { - this.resourceId = resourceId; - } - - public String getDisplayName() { - return displayName; - } - - public void setDisplayName(String displayName) { - this.displayName = displayName; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public ResourceType getResourceType() { - return resourceType; - } - - public void setResourceType(ResourceType resourceType) { - this.resourceType = resourceType; - } - - public boolean isOpenByDefault() { - return openByDefault; - } - - public void setOpenByDefault(boolean openByDefault) { - this.openByDefault = openByDefault; - } - - public Integer getPriority() { - return priority; - } - - public void setPriority(Integer priority) { - this.priority = priority; - } - public Integer getCancerStudyId() { - return cancerStudyId; - } - public void setCancerStudyId(Integer cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/Sample.java b/core/src/main/java/org/mskcc/cbio/portal/model/Sample.java deleted file mode 100644 index 9344eb45cf4..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/Sample.java +++ /dev/null @@ -1,152 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.EnumSet; -import java.util.Set; -import org.mskcc.cbio.portal.util.StableIdUtil; - -import java.util.regex.*; - -/** - * Encapsulates Sample Data. - * - * @author Benjamin Gross - */ -public class Sample { - - public static enum Type - { - PRIMARY_SOLID_TUMOR("Primary Solid Tumor"), - RECURRENT_SOLID_TUMOR("Recurrent Solid Tumor"), - PRIMARY_BLOOD_TUMOR("Primary Blood Tumor"), - RECURRENT_BLOOD_TUMOR("Recurrent Blood Tumor"), - METASTATIC("Metastatic"), - BLOOD_DERIVED_NORMAL("Blood Derived Normal"), - SOLID_TISSUES_NORMAL("Solid Tissues Normal"); - - private String propertyName; - - Type(String propertyName) { this.propertyName = propertyName; } - public String toString() { return propertyName; } - public boolean isNormal() { return this==BLOOD_DERIVED_NORMAL || this==SOLID_TISSUES_NORMAL; } - public static Set normalTypes() { return EnumSet.of(BLOOD_DERIVED_NORMAL, SOLID_TISSUES_NORMAL); } - - static public boolean has(String value) - { - if (value == null) return false; - try { - return valueOf(value.toUpperCase()) != null; - } - catch (IllegalArgumentException x) { - return false; - } - } - } - - private int internalId; - private String stableId; - private Type sampleType; - private int internalPatientId; - - public Sample(String stableId, int internalPatientId, String sampleType) - { - this(stableId, internalPatientId); - this.sampleType = getType(stableId, sampleType); - } - - public Sample(int internalId, String stableId, int internalPatientId) - { - this(stableId, internalPatientId); - this.internalId = internalId; - } - - public Sample(String stableId, int internalPatientId) - { - this.stableId = stableId; - this.sampleType = getType(stableId, null); - this.internalPatientId = internalPatientId; - } - - private Type getType(String stableId, String sampleType) - { - Matcher tcgaSampleBarcodeMatcher = StableIdUtil.TCGA_SAMPLE_TYPE_BARCODE_REGEX.matcher(stableId); - if (tcgaSampleBarcodeMatcher.find()) { - return StableIdUtil.getTypeByTCGACode(tcgaSampleBarcodeMatcher.group(1)); - } - else if (sampleType != null && Type.has(sampleType)) { - return Type.valueOf(sampleType.toUpperCase()); - } - else { - return Type.PRIMARY_SOLID_TUMOR; - } - } - - public int getInternalId() - { - return internalId; - } - - public String getStableId() - { - return stableId; - } - - public Type getType() - { - return sampleType; - } - - public int getInternalPatientId() - { - return internalPatientId; - } - - - @Override - public boolean equals(Object obj) { - if (!(obj instanceof Sample)) { - return false; - } - - Sample anotherSample = (Sample)obj; - return (this.internalId == anotherSample.getInternalId()); - } - - @Override - public int hashCode() { - int hash = 3; - hash = 41 * hash + (this.stableId != null ? this.stableId.hashCode() : 0); - return hash; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/SampleList.java b/core/src/main/java/org/mskcc/cbio/portal/model/SampleList.java deleted file mode 100644 index b2954e104e4..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/SampleList.java +++ /dev/null @@ -1,153 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -// imports -import java.util.ArrayList; - -/** - * Class to store information of patient list. - */ -public class SampleList { - private String stableId; - private int sampleListId; - private int cancerStudyId; - private String name; - private String description; - private SampleListCategory sampleListCategory; - private ArrayList sampleList; - - public SampleList() { - super(); - } - - /** - * A constructor for all the NON NULL fields in a sample_list - * @param stableId - * @param sampleListId - * @param cancerStudyId - * @param name - */ - public SampleList(String stableId, int sampleListId, int cancerStudyId, String name, - SampleListCategory sampleListCategory) { - super(); - this.stableId = stableId; - this.sampleListId = sampleListId; - this.cancerStudyId = cancerStudyId; - this.name = name; - this.sampleListCategory = sampleListCategory; - } - - public String getStableId() { - return stableId; - } - - public void setStableId(String stableId) { - this.stableId = stableId; - } - - public int getSampleListId() { - return sampleListId; - } - - public void setSampleListId(int sampleListId) { - this.sampleListId = sampleListId; - } - - public int getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId( int cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public SampleListCategory getSampleListCategory() { - return sampleListCategory; - } - - public void setSampleListCategory(SampleListCategory sampleListCategory) { - this.sampleListCategory = sampleListCategory; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public ArrayList getSampleList() { - return sampleList; - } - - public void setSampleList(ArrayList sampleList) { - this.sampleList = sampleList; - } - - @Override - public String toString() { - return this.getClass().getName() + "{" - + "stableId " + this.stableId - + ", sampleListId " + this.sampleListId - + ", sampleListId " + this.cancerStudyId - + ", name " + this.name - + ", description " + this.description - + ", SampleListCategory " + this.sampleListCategory - + ", sampleList " + this.sampleList - + "}"; - } - - - /** - * Gets list of all patient IDs in the set as one string. - * - * @return space-delimited list of patient IDs. - */ - public String getSampleListAsString() { - StringBuilder str = new StringBuilder(); - for (String patientId : sampleList) { - str.append(patientId).append(" "); - } - return str.toString(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/SampleListCategory.java b/core/src/main/java/org/mskcc/cbio/portal/model/SampleListCategory.java deleted file mode 100644 index e6bb7e26cb8..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/SampleListCategory.java +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.EnumSet; -import java.util.HashMap; -import java.util.Map; - -/** - * Enumeration for Patient List Controlled Vocabulary (CV) Category. - */ -public enum SampleListCategory { - ALL_CASES_IN_STUDY("all_cases_in_study"), - ALL_CASES_WITH_MUTATION_DATA("all_cases_with_mutation_data"), - ALL_CASES_WITH_CNA_DATA("all_cases_with_cna_data"), - ALL_CASES_WITH_LOG2_CNA_DNA("all_cases_with_log2_cna_data"), - ALL_CASES_WITH_METHYLATION_DATA("all_cases_with_methylation_data"), - ALL_CASES_WITH_MRNA_ARRAY_DATA("all_cases_with_mrna_array_data"), - ALL_CASES_WITH_MRNA_RNA_SEQ_DATA("all_cases_with_mrna_rnaseq_data"), - ALL_CASES_WITH_RPPA_DATA("all_cases_with_rppa_data"), - ALL_CASES_WITH_MICRO_RNA_DATA("all_cases_with_microrna_data"), - ALL_CASES_WITH_MUTATION_AND_CNA_DATA("all_cases_with_mutation_and_cna_data"), - ALL_CASES_WITH_MUTATION_AND_CNA_AND_MRNA_DATA("all_cases_with_mutation_and_cna_and_mrna_data"), - ALL_CASES_WITH_GSVA_DATA("all_cases_with_gsva_data"), - ALL_CASES_WITH_SV_DATA("all_cases_with_sv_data"), - OTHER("other"); - - // Init the look up map. - private static final Map lookup - = new HashMap(); - - static { - for(SampleListCategory c : EnumSet.allOf(SampleListCategory.class)) { - lookup.put(c.getCategory(), c); - } - } - - private String category; - - private SampleListCategory(String category) { - this.category = category; - } - - public String getCategory() { return category; } - - /** - * Gets the matching category by category name. - * @param category category name. - * @return SampleListCategory Object. - */ - public static SampleListCategory get(String category) { - SampleListCategory match = lookup.get(category); - if (match != null) { - return match; - } else { - StringBuffer validOptions = new StringBuffer(); - for(SampleListCategory c : EnumSet.allOf(SampleListCategory.class)) { - validOptions.append(c.getCategory() + ", "); - } - String validStr = validOptions.substring(0, validOptions.length()-2) + "."; - throw new IllegalArgumentException("Invalid Patient List Category: " + category - + ". Valid options are: " + validStr); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/SangerCancerGene.java b/core/src/main/java/org/mskcc/cbio/portal/model/SangerCancerGene.java deleted file mode 100644 index 4a68b317fd9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/SangerCancerGene.java +++ /dev/null @@ -1,173 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.HashMap; -import java.util.ArrayList; - -/** - * Encapsulates a Gene from the Sanger Cancer Gene Census. - * - */ -public class SangerCancerGene { - private CanonicalGene gene; - private boolean cancerSomaticMutation; - private boolean cancerGermlineMutation; - private String tumorTypesSomaticMutation; - private String tumorTypesGermlineMutation; - private String cancerSyndrome; - private String tissueType; - private String mutationType; - private String translocationPartner; - private boolean otherGermlineMut; - private String otherDisease; - - public CanonicalGene getGene() { - return gene; - } - - public void setGene(CanonicalGene gene) { - this.gene = gene; - } - - public boolean isCancerSomaticMutation() { - return cancerSomaticMutation; - } - - public void setCancerSomaticMutation(boolean cancerSomaticMutation) { - this.cancerSomaticMutation = cancerSomaticMutation; - } - - public boolean isCancerGermlineMutation() { - return cancerGermlineMutation; - } - - public void setCancerGermlineMutation(boolean cancerGermlineMutation) { - this.cancerGermlineMutation = cancerGermlineMutation; - } - - public String getTumorTypesSomaticMutation() { - return tumorTypesSomaticMutation; - } - - public ArrayList getTumorTypesSomaticMutationList() { - return extractParts(tumorTypesSomaticMutation); - } - - public void setTumorTypesSomaticMutation(String tumorTypesSomaticMutation) { - this.tumorTypesSomaticMutation = tumorTypesSomaticMutation; - } - - public String getTumorTypesGermlineMutation() { - return tumorTypesGermlineMutation; - } - - public ArrayList getTumorTypesGermlineMutationList() { - return extractParts(tumorTypesGermlineMutation); - } - - public void setTumorTypesGermlineMutation(String tumorTypesGermlineMutation) { - this.tumorTypesGermlineMutation = tumorTypesGermlineMutation; - } - - public String getCancerSyndrome() { - return cancerSyndrome; - } - - public void setCancerSyndrome(String cancerSyndrome) { - this.cancerSyndrome = cancerSyndrome; - } - - public String getTissueType() { - return tissueType; - } - - public ArrayList getTissueTypeList() { - return extractParts(tissueType); - } - - public void setTissueType(String tissueType) { - this.tissueType = tissueType; - } - - public String getMutationType() { - return mutationType; - } - - public ArrayList getMutationTypeList() { - return extractParts(mutationType); - } - - public void setMutationType(String mutationType) { - this.mutationType = mutationType; - } - - public String getTranslocationPartner() { - return translocationPartner; - } - - public void setTranslocationPartner(String translocationPartner) { - this.translocationPartner = translocationPartner; - } - - public boolean getOtherGermlineMut() { - return otherGermlineMut; - } - - public void setOtherGermlineMut(boolean otherGermlineMut) { - this.otherGermlineMut = otherGermlineMut; - } - - public String getOtherDisease() { - return otherDisease; - } - - public void setOtherDisease(String otherDisease) { - this.otherDisease = otherDisease; - } - - private ArrayList extractParts(String target) { - String parts[] = target.split(","); - SangerCancerGeneAbbreviationMap abbrevMap = SangerCancerGeneAbbreviationMap.getInstance(); - ArrayList partList = new ArrayList(); - for (String part: parts) { - String translation = abbrevMap.getTranslation(part.trim()); - if (translation != null) { - partList.add(translation); - } else { - partList.add(part); - } - } - return partList; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/SangerCancerGeneAbbreviationMap.java b/core/src/main/java/org/mskcc/cbio/portal/model/SangerCancerGeneAbbreviationMap.java deleted file mode 100644 index 5b2351de0bf..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/SangerCancerGeneAbbreviationMap.java +++ /dev/null @@ -1,107 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.HashMap; - -/** - * Abbreviation Map for the Sanger Cancer Gene Census. - */ -public class SangerCancerGeneAbbreviationMap { - private HashMap abbreviationMap = new HashMap(); - private static SangerCancerGeneAbbreviationMap instance; - - public static SangerCancerGeneAbbreviationMap getInstance() { - if (instance == null) { - instance = new SangerCancerGeneAbbreviationMap(); - } - return instance; - } - - public String getTranslation(String abbreviation) { - return abbreviationMap.get(abbreviation); - } - - private SangerCancerGeneAbbreviationMap () { - initMap(); - } - - private void initMap() { - abbreviationMap.put("A", "amplification"); - abbreviationMap.put("AEL", "acute eosinophilic leukemia"); - abbreviationMap.put("AL", "acute leukemia"); - abbreviationMap.put("ALCL", "anaplastic large-cell lymphoma"); - abbreviationMap.put("ALL", "acute lymphocytic leukemia"); - abbreviationMap.put("AML", "acute myelogenous leukemia"); - abbreviationMap.put("AML*", "acute myelogenous leukemia (primarily treatment associated)"); - abbreviationMap.put("APL", "acute promyelocytic leukemia"); - abbreviationMap.put("B-ALL", "B-cell acute lymphocytic leukaemia"); - abbreviationMap.put("B-CLL", "B-cell Lymphocytic leukemia"); - abbreviationMap.put("B-NHL", "B-cell Non-Hodgkin Lymphoma"); - abbreviationMap.put("CLL", "chronic lymphatic leukemia"); - abbreviationMap.put("CML", "chronic myeloid leukemia"); - abbreviationMap.put("CMML", "chronic myelomonocytic leukemia"); - abbreviationMap.put("CNS", "central nervous system"); - abbreviationMap.put("D", "large deletion"); - abbreviationMap.put("DFSP", "dermatofibrosarcoma protuberans"); - abbreviationMap.put("DLBCL", "diffuse large B-cell lymphoma"); - abbreviationMap.put("DLCL", "diffuse large-cell lymphoma"); - abbreviationMap.put("Dom", "dominant"); - abbreviationMap.put("E", "epithelial"); - abbreviationMap.put("F", "frameshift"); - abbreviationMap.put("GIST", "gastrointestinal stromal tumour"); - abbreviationMap.put("JMML", "juvenile myelomonocytic leukemia"); - abbreviationMap.put("L", "leukaemia/lymphoma"); - abbreviationMap.put("M", "mesenchymal"); - abbreviationMap.put("MALT", "mucosa-associated lymphoid tissue lymphoma"); - abbreviationMap.put("MDS", "myelodysplastic syndrome"); - abbreviationMap.put("Mis", "missense"); - abbreviationMap.put("MLCLS", "mediastinal large cell lymphoma with sclerosis"); - abbreviationMap.put("MM", "multiple myeloma"); - abbreviationMap.put("MPD", "Myeloproliferative disorder"); - abbreviationMap.put("N", "nonsense"); - abbreviationMap.put("NHL", "non-Hodgkin lymphoma"); - abbreviationMap.put("NK/T", "natural killer T cell"); - abbreviationMap.put("NSCLC", "non small cell lung cancer"); - abbreviationMap.put("O", "other"); - abbreviationMap.put("PMBL", "primary mediastinal B-cell lymphoma"); - abbreviationMap.put("pre-B All", "pre-B-cell acute lymphoblastic leukaemia"); - abbreviationMap.put("Rec", "reccesive"); - abbreviationMap.put("S", "splice site"); - abbreviationMap.put("T", "translocation"); - abbreviationMap.put("T-ALL", "T-cell acute lymphoblastic leukemia"); - abbreviationMap.put("T-CLL", "T-cell chronic lymphocytic leukaemia"); - abbreviationMap.put("TGCT", "testicular germ cell tumour"); - abbreviationMap.put("T-PLL", "T cell prolymphocytic leukaemia"); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/SetOfGenes.java b/core/src/main/java/org/mskcc/cbio/portal/model/SetOfGenes.java deleted file mode 100644 index e0d00b81383..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/SetOfGenes.java +++ /dev/null @@ -1,88 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -/** - * Encapsulates a set of genes. - */ -public class SetOfGenes { - private String name; - private String geneList; - - /** - * Gets the name of the gene set. - * - * @return gene set name. - */ - public String getName() { - return name; - } - - /** - * Gets the alpha-numeric ID of the gene set. - * - * @return alpha-numeric ID of gene set. - */ - public String getId() { - String id = name.replaceAll(" ", "-"); - id = id.replaceAll("_", "-"); - return id.toLowerCase(); - } - - /** - * Sets the name of the gene set. - * - * @param name gene set name. - */ - public void setName(String name) { - this.name = name; - } - - /** - * Gets the List of Genes in the Set. - * - * @return whitespace delimited list of gene symbols. - */ - public String getGeneList() { - return geneList; - } - - /** - * Sets the List of Genes in the Set. - * - * @param geneList whitespace delimited list of gene symbols. - */ - public void setGeneList(String geneList) { - this.geneList = geneList; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/StructuralVariant.java b/core/src/main/java/org/mskcc/cbio/portal/model/StructuralVariant.java deleted file mode 100644 index 89c8352dea0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/StructuralVariant.java +++ /dev/null @@ -1,471 +0,0 @@ -/* - * Copyright (c) 2018 - 2022 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.model; - -/* This class is used only in connection with the core scripts package - * importer. The core API provides no structural variant data services. - * Additionally, there are some members of this class which are not - * populated when retrieving records from the database during a call to - * DaoStructuralVariant.getAllStructuralVariants(), a method which is - * only used for unit testing. The following members are here only for - * convenient passing of values between StructuralVariantUtil and - * ImportStructuralVariantData and are not populated otherwise: - * sampleId, site1HugoSymbol, site1HugoSymbol. - * The member internalId is only used during import. - * The member structuralVariantId is used nowhere. - */ -public class StructuralVariant { - private long internalId; // warning : see comment above - private int geneticProfileId; - private long structuralVariantId; // warning : see comment above - private int sampleIdInternal; - private String sampleId; // warning : see comment above - private Long site1EntrezGeneId; - private String site1HugoSymbol; // warning : see comment above - private String site1EnsemblTranscriptId; - private String site1Chromosome; - private int site1Position; - private String site1Contig; - private String site1Region; - private Integer site1RegionNumber; - private String site1Description; - private Long site2EntrezGeneId; - private String site2HugoSymbol; // warning : see comment above - private String site2EnsemblTranscriptId; - private String site2Chromosome; - private int site2Position; - private String site2Contig; - private String site2Region; - private Integer site2RegionNumber; - private String site2Description; - private String site2EffectOnFrame; - private String ncbiBuild; - private String dnaSupport; - private String rnaSupport; - private int normalReadCount; - private int tumorReadCount; - private int normalVariantCount; - private int tumorVariantCount; - private int normalPairedEndReadCount; - private int tumorPairedEndReadCount; - private int normalSplitReadCount; - private int tumorSplitReadCount; - private String annotation; - private String breakpointType; - private String connectionType; - private String eventInfo; - private String variantClass; - private int length; - private String comments; - private String svStatus; - private String driverFilter; - private String driverFilterAnn; - private String driverTiersFilter; - private String driverTiersFilterAnn; - private String annotationJson; - - public long getInternalId() { - return internalId; - } - - public void setInternalId(long internalId) { - this.internalId = internalId; - } - - public int getGeneticProfileId() { - return geneticProfileId; - } - - public void setGeneticProfileId(int geneticProfileId) { - this.geneticProfileId = geneticProfileId; - } - - public long getStructuralVariantId() { - return structuralVariantId; - } - - public void setStructuralVariantId(long structuralVariantId) { - this.structuralVariantId = structuralVariantId; - } - - public int getSampleIdInternal() { - return sampleIdInternal; - } - - public void setSampleIdInternal(int sampleId) { - this.sampleIdInternal = sampleId; - } - - public String getSampleId() { - return sampleId; - } - - public void setSampleId(String tumorSampleBarcode) { - this.sampleId = tumorSampleBarcode; - } - - public Long getSite1EntrezGeneId() { - return site1EntrezGeneId; - } - - public void setSite1EntrezGeneId(Long site1EntrezGeneId) { - this.site1EntrezGeneId = site1EntrezGeneId; - } - - public String getSite1HugoSymbol() { - return site1HugoSymbol; - } - - public void setSite1HugoSymbol(String site1HugoSymbol) { - this.site1HugoSymbol = site1HugoSymbol; - } - - public String getSite1EnsemblTranscriptId() { - return site1EnsemblTranscriptId; - } - - public void setSite1EnsemblTranscriptId(String site1TranscriptId) { - this.site1EnsemblTranscriptId = site1TranscriptId; - } - - public String getSite1Chromosome() { - return site1Chromosome; - } - - public void setSite1Chromosome(String site1Chrom) { - this.site1Chromosome = site1Chrom; - } - - public int getSite1Position() { - return site1Position; - } - - public void setSite1Position(int site1Pos) { - this.site1Position = site1Pos; - } - - public String getSite1Description() { - return site1Description; - } - - public void setSite1Description(String site1Desc) { - this.site1Description = site1Desc; - } - - public Long getSite2EntrezGeneId() { - return site2EntrezGeneId; - } - - public void setSite2EntrezGeneId(Long site2EntrezGeneId) { - this.site2EntrezGeneId = site2EntrezGeneId; - } - - public String getSite2HugoSymbol() { - return site2HugoSymbol; - } - - public void setSite2HugoSymbol(String site2HugoSymbol) { - this.site2HugoSymbol = site2HugoSymbol; - } - - public String getSite2EnsemblTranscriptId() { - return site2EnsemblTranscriptId; - } - - public void setSite2EnsemblTranscriptId(String site2TranscriptId) { - this.site2EnsemblTranscriptId = site2TranscriptId; - } - - public String getSite2Chromosome() { - return site2Chromosome; - } - - public void setSite2Chromosome(String site2Chrom) { - this.site2Chromosome = site2Chrom; - } - - public int getSite2Position() { - return site2Position; - } - - public void setSite2Position(int site2Pos) { - this.site2Position = site2Pos; - } - - public String getSite2Description() { - return site2Description; - } - - public void setSite2Description(String site2Desc) { - this.site2Description = site2Desc; - } - - public String getSite2EffectOnFrame() { - return site2EffectOnFrame; - } - - public void setSite2EffectOnFrame(String site2EffectOnFrame) { - this.site2EffectOnFrame = site2EffectOnFrame; - } - - public String getNcbiBuild() { - return ncbiBuild; - } - - public void setNcbiBuild(String ncbiBuild) { - this.ncbiBuild = ncbiBuild; - } - - public String getDnaSupport() { - return dnaSupport; - } - - public void setDnaSupport(String dnaSupport) { - this.dnaSupport = dnaSupport; - } - - public String getRnaSupport() { - return rnaSupport; - } - - public void setRnaSupport(String rnaSupport) { - this.rnaSupport = rnaSupport; - } - - public int getNormalReadCount() { - return normalReadCount; - } - - public void setNormalReadCount(int normalReadCount) { - this.normalReadCount = normalReadCount; - } - - public int getTumorReadCount() { - return tumorReadCount; - } - - public void setTumorReadCount(int tumorReadCount) { - this.tumorReadCount = tumorReadCount; - } - - public int getNormalVariantCount() { - return normalVariantCount; - } - - public void setNormalVariantCount(int normalVariantCount) { - this.normalVariantCount = normalVariantCount; - } - - public int getTumorVariantCount() { - return tumorVariantCount; - } - - public void setTumorVariantCount(int tumorVariantCount) { - this.tumorVariantCount = tumorVariantCount; - } - - public int getNormalPairedEndReadCount() { - return normalPairedEndReadCount; - } - - public void setNormalPairedEndReadCount(int normalPairedEndReadCount) { - this.normalPairedEndReadCount = normalPairedEndReadCount; - } - - public int getTumorPairedEndReadCount() { - return tumorPairedEndReadCount; - } - - public void setTumorPairedEndReadCount(int tumorPairedEndReadCount) { - this.tumorPairedEndReadCount = tumorPairedEndReadCount; - } - - public int getNormalSplitReadCount() { - return normalSplitReadCount; - } - - public void setNormalSplitReadCount(int normalSplitReadCount) { - this.normalSplitReadCount = normalSplitReadCount; - } - - public int getTumorSplitReadCount() { - return tumorSplitReadCount; - } - - public void setTumorSplitReadCount(int tumorSplitReadCount) { - this.tumorSplitReadCount = tumorSplitReadCount; - } - - public String getAnnotation() { - return annotation; - } - - public void setAnnotation(String annotation) { - this.annotation = annotation; - } - - public String getBreakpointType() { - return breakpointType; - } - - public void setBreakpointType(String breakpointType) { - this.breakpointType = breakpointType; - } - - public String getConnectionType() { - return connectionType; - } - - public void setConnectionType(String connectionType) { - this.connectionType = connectionType; - } - - public String getEventInfo() { - return eventInfo; - } - - public void setEventInfo(String eventInfo) { - this.eventInfo = eventInfo; - } - - public String getVariantClass() { - return variantClass; - } - - public void setVariantClass(String variantClass) { - this.variantClass = variantClass; - } - - public int getLength() { - return length; - } - - public void setLength(int length) { - this.length = length; - } - - public String getComments() { - return comments; - } - - public void setComments(String comments) { - this.comments = comments; - } - - public String getSvStatus() { - return svStatus; - } - - public void setSvStatus(String svStatus) { - this.svStatus = svStatus; - } - - public String getSite1Contig() { - return site1Contig; - } - - public void setSite1Contig(String site1Contig) { - this.site1Contig = site1Contig; - } - - public String getSite1Region() { - return site1Region; - } - - public void setSite1Region(String site1Region) { - this.site1Region = site1Region; - } - - public Integer getSite1RegionNumber() { - return site1RegionNumber; - } - - public void setSite1RegionNumber(Integer site1RegionNumber) { - this.site1RegionNumber = site1RegionNumber; - } - - public String getSite2Contig() { - return site2Contig; - } - - public void setSite2Contig(String site2Contig) { - this.site2Contig = site2Contig; - } - - public String getSite2Region() { - return site2Region; - } - - public void setSite2Region(String site2Region) { - this.site2Region = site2Region; - } - - public Integer getSite2RegionNumber() { - return site2RegionNumber; - } - - public void setSite2RegionNumber(Integer site2RegionNumber) { - this.site2RegionNumber = site2RegionNumber; - } - - public String getDriverFilter() { - return driverFilter; - } - - public void setDriverFilter(String driverFilter) { - this.driverFilter = driverFilter; - } - - public String getDriverFilterAnn() { - return driverFilterAnn; - } - - public void setDriverFilterAnn(String driverFilterAnn) { - this.driverFilterAnn = driverFilterAnn; - } - - public String getDriverTiersFilter() { - return driverTiersFilter; - } - - public void setDriverTiersFilter(String driverTiersFilter) { - this.driverTiersFilter = driverTiersFilter; - } - - public String getDriverTiersFilterAnn() { - return driverTiersFilterAnn; - } - - public void setDriverTiersFilterAnn(String driverTiersFilterAnn) { - this.driverTiersFilterAnn = driverTiersFilterAnn; - } - - public String getAnnotationJson() { - return annotationJson; - } - - public void setAnnotationJson(String annotationJson) { - this.annotationJson = annotationJson; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/TypeOfCancer.java b/core/src/main/java/org/mskcc/cbio/portal/model/TypeOfCancer.java deleted file mode 100644 index 1b7d609695b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/TypeOfCancer.java +++ /dev/null @@ -1,99 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.io.Serializable; -import com.fasterxml.jackson.annotation.JsonIgnore; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * A TypeOfCancer is a clinical cancer type, such as Glioblastoma, Ovarian, etc. - * Eventually, we'll have ontology problems with this, but initially the dbms - * will be loaded from a file with a static table of types. - * - * @author Arthur Goldberg goldberg@cbio.mskcc.org - * @author Arman Aksoy - */ -public class TypeOfCancer implements Serializable { - - private String name; - @JsonProperty("cancerTypeId") - private String typeOfCancerId; - // to preserve json output in DumpPortalInfo.java after migrating from ApiService - @JsonProperty("dedicatedColor") - private String dedicatedColor = "white"; - @JsonIgnore - private String shortName = ""; - @JsonIgnore - private String parentTypeOfCancerId; - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getTypeOfCancerId() { - return typeOfCancerId; - } - - public void setTypeOfCancerId(String typeOfCancerId) { - this.typeOfCancerId = typeOfCancerId; - } - - public String getDedicatedColor() { - return dedicatedColor; - } - - public void setDedicatedColor(String dedicatedColor) { - this.dedicatedColor = dedicatedColor; - } - - public String getShortName() { - return shortName; - } - - public void setShortName(String shortName) { - this.shortName = shortName; - } - - public String getParentTypeOfCancerId() { - return parentTypeOfCancerId; - } - - public void setParentTypeOfCancerId(String typeOfCancerId) { - this.parentTypeOfCancerId = typeOfCancerId; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/User.java b/core/src/main/java/org/mskcc/cbio/portal/model/User.java deleted file mode 100644 index acc6145af6c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/User.java +++ /dev/null @@ -1,106 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import org.mskcc.cbio.portal.util.EqualsUtil; - -/** - * This represents a user, identified by an email address. - * - * @author Arthur Goldberg goldberg@cbio.mskcc.org - * @author Benjamin Gross - */ -public class User { - private String email; - private String name; - private boolean enabled; - - public User(String email, String name, boolean enabled) { - if (null == email) { - throw new IllegalArgumentException ("email is null."); - } - this.email = email; - if (null == name) { - throw new IllegalArgumentException ("name is null."); - } - this.name = name; - this.enabled = enabled; - } - - public String getEmail() { - return email; - } - - public void setEmail(String email) { - this.email = email.toLowerCase(); - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public boolean isEnabled() { - return enabled; - } - - public void setEnabled(boolean enabled) { - this.enabled = enabled; - } - - @Override - public boolean equals(Object otherUser) { - if (this == otherUser) { - return true; - } - - if (!(otherUser instanceof User)) { - return false; - } - - User that = (User) otherUser; - return EqualsUtil.areEqual(this.email, that.email) - && EqualsUtil.areEqual(this.name, that.name); - } - - @Override - public int hashCode() { - int hash = 7; - hash = 67 * hash + (this.email != null ? this.email.hashCode() : 0); - hash = 67 * hash + (this.name != null ? this.name.hashCode() : 0); - return hash; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/UserAuthorities.java b/core/src/main/java/org/mskcc/cbio/portal/model/UserAuthorities.java deleted file mode 100644 index 9a47355823b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/UserAuthorities.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -// imports -import java.util.Collection; - -/** - * User authorites bean. - * - * @author Benjamin Gross - */ -public class UserAuthorities { - - private String email; - private Collection authorities; - - /** - * Constructor. - */ - public UserAuthorities(String email, Collection authorities) { - this.email = email; - this.authorities = authorities; - } - - // accessors - public String getEmail() { return email; } - public void setEmail(String email) { this.email = email.toLowerCase(); } - public Collection getAuthorities() { return authorities; } - public void setAuthorities(Collection authorities) { this.authorities = authorities; } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudy.java b/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudy.java deleted file mode 100644 index c516082280b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudy.java +++ /dev/null @@ -1,44 +0,0 @@ -package org.mskcc.cbio.portal.model.virtualstudy; - -public class VirtualStudy { - - private String id; - private String source; - private String type; - private VirtualStudyData data; - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public VirtualStudyData getData() { - return data; - } - - public void setData(VirtualStudyData data) { - this.data = data; - } - - public String getSource() { - return source; - } - - public void setSource(String source) { - this.source = source; - } - - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - -} - - diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudyData.java b/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudyData.java deleted file mode 100644 index 9787b55c6b5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudyData.java +++ /dev/null @@ -1,102 +0,0 @@ -package org.mskcc.cbio.portal.model.virtualstudy; - -import java.util.Collections; -import java.util.HashSet; -import java.util.Set; -import java.util.stream.Collectors; - -public class VirtualStudyData { - - private String name; - - private String description; - - private Set studies; - - private VirtualStudyFilters filters; - - private String owner = "anonymous"; - - private Set origin = new HashSet<>(); - - private Long created = System.currentTimeMillis(); - - private Set users = new HashSet<>(); - - private Float version = 1.0f; - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public Set getStudies() { - return studies; - } - - public void setStudies(Set studies) { - this.studies = studies; - } - - public VirtualStudyFilters getFilters() { - return filters; - } - - public void setFilters(VirtualStudyFilters filters) { - this.filters = filters; - } - - public String getOwner() { - return owner; - } - - public void setOwner(String owner) { - this.owner = owner; - } - - public Set getOrigin() { - if(origin == null || origin.size() == 0) { - return studies.stream().map(map -> map.getId()).collect(Collectors.toSet()); - } - return origin; - } - - public void setOrigin(Set origin) { - this.origin = origin; - } - - public Long getCreated() { - return created; - } - - public void setCreated(Long created) { - this.created = created; - } - - public Set getUsers() { - return users; - } - - public void setUsers(Set users) { - this.users = users; - } - - public Float getVersion() { - return version; - } - - public void setVersion(Float version) { - this.version = version; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudyFilters.java b/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudyFilters.java deleted file mode 100644 index 326e0f7f5cb..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudyFilters.java +++ /dev/null @@ -1,26 +0,0 @@ -package org.mskcc.cbio.portal.model.virtualstudy; - -import java.util.Map; -import java.util.Set; - -public class VirtualStudyFilters { - private Map> patients; - - private Map> samples; - - public Map> getPatients() { - return patients; - } - - public void setPatients(Map> patients) { - this.patients = patients; - } - - public Map> getSamples() { - return samples; - } - - public void setSamples(Map> samples) { - this.samples = samples; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudySamples.java b/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudySamples.java deleted file mode 100644 index 5953a79b246..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/model/virtualstudy/VirtualStudySamples.java +++ /dev/null @@ -1,25 +0,0 @@ -package org.mskcc.cbio.portal.model.virtualstudy; - -import java.util.Set; - -public class VirtualStudySamples { - private String id; - private Set samples; - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public Set getSamples() { - return samples; - } - - public void setSamples(Set samples) { - this.samples = samples; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/FeatureService.java b/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/FeatureService.java deleted file mode 100644 index 124cd452890..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/FeatureService.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram; - -import java.util.List; - -/** - * Feature service. - */ -public interface FeatureService { - - /** - * Return an immutable list of zero or more sequences for the specified UniProt id, populated - * with sequence features such as regions, motifs, and markups. - * - * @param uniProtId UniProt id, must not be null - * @return an immutable list of zero or more sequences for the specified UniProt id - */ - List getFeatures(String uniProtId); -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Markup.java b/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Markup.java deleted file mode 100644 index 26a34a2a163..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Markup.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram; - -import java.util.List; -import java.util.Map; - -/** - * Markup, derived from Pfam graphics response in JSON format. - */ -public final class Markup { - private int start; - private int end; - private String href; - private List colour; - private String lineColour; - private String display; - private String residue; - private String type; - private String headStyle; - private String v_align; - private Map metadata; - - public void setStart(final int start) { - this.start = start; - } - - public int getStart() { - return start; - } - - public void setEnd(final int end) { - this.end = end; - } - - public int getEnd() { - return end; - } - - public void setHref(final String href) { - this.href = href; - } - - public String getHref() { - return href; - } - - public void setColour(final List colour) { - this.colour = colour; - } - - public List getColour() { - return colour; - } - - public void setLineColour(final String lineColour) { - this.lineColour = lineColour; - } - - public String getLineColour() { - return lineColour; - } - - public void setDisplay(final String display) { - this.display = display; - } - - public String getDisplay() { - return display; - } - - public void setResidue(final String residue) { - this.residue = residue; - } - - public String getResidue() { - return residue; - } - - public void setType(final String type) { - this.type = type; - } - - public String getType() { - return type; - } - - public void setHeadStyle(final String headStyle) { - this.headStyle = headStyle; - } - - public String getHeadStyle() { - return headStyle; - } - - public void setV_align(final String v_align) { - this.v_align = v_align; - } - - public String getV_align() { - return v_align; - } - - public void setMetadata(final Map metadata) { - this.metadata = metadata; - } - - public Map getMetadata() { - return metadata; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Motif.java b/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Motif.java deleted file mode 100644 index 7382e00c306..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Motif.java +++ /dev/null @@ -1,104 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram; - -import java.util.List; -import java.util.Map; - -/** - * Motif, derived from Pfam graphics response in JSON format. - */ -public final class Motif { - private int start; - private int end; - private String href; - private List colour; - private String display; - private String type; - private Map metadata; - - public void setStart(final int start) { - this.start = start; - } - - public int getStart() { - return start; - } - - public void setEnd(final int end) { - this.end = end; - } - - public int getEnd() { - return end; - } - - public void setHref(final String href) { - this.href = href; - } - public String getHref() { - return href; - } - - public void setColour(final List colour) { - this.colour = colour; - } - - public List getColour() { - return colour; - } - - public void setDisplay(final String display) { - this.display = display; - } - - public String getDisplay() { - return display; - } - - public void setType(final String type) { - this.type = type; - } - - public String getType() { - return type; - } - - public void setMetadata(final Map metadata) { - this.metadata = metadata; - } - - public Map getMetadata() { - return metadata; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Options.java b/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Options.java deleted file mode 100644 index 7658c2fe38e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Options.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram; - -/** - * Options, derived from Pfam graphics response in JSON format. - */ -public final class Options { - private String baseUrl; - - public void setBaseUrl(final String baseUrl) { - this.baseUrl = baseUrl; - } - - public String getBaseUrl() { - return baseUrl; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Pileup.java b/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Pileup.java deleted file mode 100644 index 68a633eebfc..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Pileup.java +++ /dev/null @@ -1,167 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram; - -import static com.google.common.base.Preconditions.checkNotNull; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import java.util.Set; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.mskcc.cbio.portal.model.ExtendedMutation; - -import com.google.common.base.Joiner; -import com.google.common.collect.ArrayListMultimap; -import com.google.common.collect.HashMultimap; -import com.google.common.collect.ImmutableList; -import com.google.common.collect.ListMultimap; -import com.google.common.collect.Lists; -import com.google.common.collect.SetMultimap; -import com.google.common.collect.Sets; - -/** - * Pileup of one or mutations at a single location. - */ -public final class Pileup { - private static final Logger logger = LoggerFactory.getLogger(Pileup.class); - private final String label; - private final int location; - private final int count; - private final int missenseCount; - - public Pileup(final String label, - final int location, - final int count, - final int missenseCount) { - this.label = label; - this.location = location; - this.count = count; - this.missenseCount = missenseCount; - } - - /** - * Return the label for this pileup. - * - * @return the label for this pileup - */ - public String getLabel() { - return label; - } - - /** - * Return the location of this pileup. - * - * @return the location of this pileup - */ - public int getLocation() { - return location; - } - - /** - * Return the count of mutations at this location. - * - * @return the count of mutations as this location - */ - public int getCount() { - return count; - } - - /** - * Return the count of missense mutations at this location. - * - * @return the count of missense mutations as this location - */ - public int getMissenseCount() { - return missenseCount; - } - - /** - * Return a list of pileups for the specified list of mutations. The list of - * pileups may be empty but will not be null. - * - * @param mutations list of mutations, must not be null - * @return a list of pileups for the specified list of mutations - */ - public static List pileup(final List mutations) { - checkNotNull(mutations, "mutations must not be null"); - - List pileups = Lists.newArrayList(); - SetMultimap labels = HashMultimap.create(); - ListMultimap mutationsByLocation = ArrayListMultimap.create(); - for (ExtendedMutation mutation : mutations) { - String label = mutation.getProteinChange(); - if (label != null) { - try { - int location = Integer.valueOf(label.replaceAll("[A-Za-z\\.*]+", "")); - labels.put(location, label); - mutationsByLocation.put(location, mutation); - } - catch (NumberFormatException e) { - logger.warn("ignoring extended mutation " + label + ", no location information"); - } - } - } - - for (Map.Entry> entry : mutationsByLocation.asMap().entrySet()) - { - int location = entry.getKey(); - Set locationLabels = labels.get(location); - List sortedLocationLabels = new ArrayList(); - sortedLocationLabels.addAll(locationLabels); - Collections.sort(sortedLocationLabels); - String label = Joiner.on("/").join(sortedLocationLabels); - int missenseCount = 0; - Set caseIds = Sets.newHashSet(); - - for (ExtendedMutation mutation : entry.getValue()) - { - caseIds.add(mutation.getSampleId() + ":" + mutation.getProteinChange()); - - if (mutation.getMutationType() != null && - mutation.getMutationType().toLowerCase().contains("missense")) - { - missenseCount++; - } - } - - pileups.add(new Pileup(label, location, caseIds.size(), missenseCount)); - } - - return ImmutableList.copyOf(pileups); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Region.java b/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Region.java deleted file mode 100644 index cd81bf6492a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Region.java +++ /dev/null @@ -1,175 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram; - -import java.util.Map; - -/** - * Region, derived from Pfam graphics response in JSON format. - */ -public final class Region { - private int start; - private int end; - private int aliStart; - private int aliEnd; - private int modelStart; - private int modelEnd; - private int modelLength; - private String text; - private String href; - private String colour; - private String display; - private String startStyle; - private String endStyle; - private String type; - private Map metadata; - - public void setStart(final int start) { - this.start = start; - } - - public int getStart() { - return start; - } - - public void setEnd(final int end) { - this.end = end; - } - - public int getEnd() { - return end; - } - - public void setAliStart(final int aliStart) { - this.aliStart = aliStart; - } - - public int getAliStart() { - return aliStart; - } - - public void setAliEnd(final int aliEnd) { - this.aliEnd = aliEnd; - } - - public int getAliEnd() { - return aliEnd; - } - - public void setModelStart(final int modelStart) { - this.modelStart = modelStart; - } - - public int getModelStart() { - return modelStart; - } - - public void setModelEnd(final int modelEnd) { - this.modelEnd = modelEnd; - } - - public int getModelEnd() { - return modelEnd; - } - - public void setModelLength(final int modelLength) { - this.modelLength = modelLength; - } - - public int getModelLength() { - return modelLength; - } - - public void setText(final String text) { - this.text = text; - } - - public String getText() { - return text; - } - - public void setHref(final String href) { - this.href = href; - } - public String getHref() { - return href; - } - - public void setColour(final String colour) { - this.colour = colour; - } - - public String getColour() { - return colour; - } - - public void setDisplay(final String display) { - this.display = display; - } - - public String getDisplay() { - return display; - } - - public void setStartStyle(final String startStyle) { - this.startStyle = startStyle; - } - - public String getStartStyle() { - return startStyle; - } - - public void setEndStyle(final String endStyle) { - this.endStyle = endStyle; - } - - public String getEndStyle() { - return endStyle; - } - - public void setType(final String type) { - this.type = type; - } - - public String getType() { - return type; - } - - public void setMetadata(final Map metadata) { - this.metadata = metadata; - } - - public Map getMetadata() { - return metadata; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Sequence.java b/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Sequence.java deleted file mode 100644 index df285303f39..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/Sequence.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram; - -import static com.google.common.collect.Lists.newArrayList; -import static com.google.common.collect.Maps.newHashMap; - -import java.util.List; -import java.util.Map; - -/** - * Sequence, derived from Pfam graphics response in JSON format. - */ -public final class Sequence { - private int length; - private List markups; - private List motifs; - private List regions; - private Map metadata; - private Options options; - - public void setLength(final int length) { - this.length = length; - } - - public int getLength() { - return length; - } - - public void setMarkups(final List markups) { - this.markups = markups; - } - - public List getMarkups() { - return markups; - } - - public void setMotifs(final List motifs) { - this.motifs = motifs; - } - - public List getMotifs() { - return motifs; - } - - public void setRegions(final List regions) { - this.regions = regions; - } - - public List getRegions() { - return regions; - } - - public void setMetadata(final Map metadata) { - this.metadata = metadata; - } - - public Map getMetadata() { - return metadata; - } - - public void setOptions(final Options options) { - this.options = options; - } - - public Options getOptions() { - return options; - } - - public Sequence deepCopy() { - Sequence sequence = new Sequence(); - sequence.setLength(length); - if (markups != null) { - sequence.setMarkups(newArrayList(markups)); - } - if (metadata != null) { - sequence.setMetadata(newHashMap(metadata)); - } - if (motifs != null) { - sequence.setMotifs(newArrayList(motifs)); - } - if (options != null) { - Options copy = new Options(); - copy.setBaseUrl(options.getBaseUrl()); - sequence.setOptions(copy); - } - if (regions != null) { - sequence.setRegions(newArrayList(regions)); - } - return sequence; - } - - /** - * Return a deep copy of this sequence with the additional list of markups. - * - * @param markups list of markups to add - * @return a deep copy of this sequence with the additional list of markups - */ - public Sequence withMarkups(final List markups) { - Sequence sequence = deepCopy(); - if (markups != null && !markups.isEmpty()) { - if (sequence.getMarkups() == null) { - sequence.setMarkups(newArrayList(markups)); - } - else { - sequence.getMarkups().addAll(markups); - } - } - return sequence; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/impl/CacheFeatureService.java b/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/impl/CacheFeatureService.java deleted file mode 100644 index 954401d3cc6..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/impl/CacheFeatureService.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram.impl; - -import static com.google.common.base.Preconditions.checkNotNull; - -import java.util.Collections; -import java.util.List; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.mskcc.cbio.portal.mut_diagram.FeatureService; -import org.mskcc.cbio.portal.mut_diagram.Sequence; - -import com.google.common.cache.Cache; -import com.google.common.cache.CacheBuilder; -import com.google.common.cache.CacheLoader; - -/** - * Implementation of FeatureService based on CacheBuilder. - */ -public final class CacheFeatureService implements FeatureService { - private static final List EMPTY = Collections.emptyList(); - private static final Logger logger = LoggerFactory.getLogger(CacheFeatureService.class); - private final Cache> cache; - - /** - * Create a new cache feature service with a cache populated by the specified cache loader. - * - * @param cacheLoader cache loader, must not be null - */ - public CacheFeatureService(final CacheLoader> cacheLoader) { - checkNotNull(cacheLoader, "cacheLoader must not be null"); - cache = CacheBuilder.newBuilder().build(cacheLoader); - } - - /** {@inheritDoc} */ - public List getFeatures(final String uniProtId) { - checkNotNull(uniProtId, "uniProtId must not be null"); - List toReturn = cache.getIfPresent(uniProtId); - - if (toReturn == null) { - logger.error("could not load features from cache for " + uniProtId); - return EMPTY; - } else { - return toReturn; - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/impl/PfamGraphicsCacheLoader.java b/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/impl/PfamGraphicsCacheLoader.java deleted file mode 100644 index eeabfe6f5c0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/mut_diagram/impl/PfamGraphicsCacheLoader.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram.impl; - -import java.net.URL; -import java.util.LinkedList; -import java.util.List; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.mskcc.cbio.portal.mut_diagram.Sequence; - -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.databind.type.CollectionType; -import com.fasterxml.jackson.databind.type.TypeFactory; -import com.google.common.cache.CacheLoader; -import com.google.common.collect.ImmutableList; - -/** - * Feature service cache loader that calls the Pfam graphics service. - */ -public final class PfamGraphicsCacheLoader extends CacheLoader> { - private static final Logger logger = LoggerFactory.getLogger(PfamGraphicsCacheLoader.class); - static final String URL_PREFIX = "http://pfam.sanger.ac.uk/protein/"; - static final String URL_SUFFIX = "/graphic"; - private final ObjectMapper objectMapper; - - public PfamGraphicsCacheLoader(final ObjectMapper objectMapper) { - this.objectMapper = objectMapper; - } - - @Override - public List load(final String uniProtId) throws Exception { - List sequences = new LinkedList(); - try { - TypeFactory typeFactory = objectMapper.getTypeFactory(); - CollectionType sequenceList = typeFactory.constructCollectionType(List.class, Sequence.class); - - URL url = new URL(URL_PREFIX + uniProtId + URL_SUFFIX); - sequences = objectMapper.readValue(url, sequenceList); - } - catch (Exception e) { - logger.error("could not load features for " + uniProtId, e); - } - return ImmutableList.copyOf(sequences); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/network/Attribute.java b/core/src/main/java/org/mskcc/cbio/portal/network/Attribute.java deleted file mode 100644 index 7af50474f21..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/network/Attribute.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.network; - -/** - * - * @author jj - */ -public class Attribute { - private String name; - private Object value; - - /** - * - * @param name attribute name - * @param value attribute value - */ - Attribute(String name, Object value) { - this.name = name; - this.value = value; - } - - /** - * - * @return attribute name - */ - public String getName() { - return name; - } - - /** - * - * @return attribute value - */ - public Object getValue() { - return value; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/network/Edge.java b/core/src/main/java/org/mskcc/cbio/portal/network/Edge.java deleted file mode 100644 index 7b4bcfc9ffe..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/network/Edge.java +++ /dev/null @@ -1,123 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.network; - -import java.util.LinkedHashMap; -import java.util.Map; - -/** - * Class for Edge. - * @author jj - */ -public class Edge { - private boolean directed; - private String interactionType; - private Map attrs; - private String sourceID; - private String targetID; - - /** - * - * @param interactionType - */ - public Edge(boolean directed, String interactionType) { - this.directed = directed; - this.interactionType = interactionType; - attrs = new LinkedHashMap(); - } - - public Edge(boolean directed, String interactionType, String sourceID, String targetID) { - this.directed = directed; - this.interactionType = interactionType; - this.sourceID = sourceID; - this.targetID = targetID; - attrs = new LinkedHashMap(); - } - - public String getInteractionType() { - return interactionType; - } - - public void setInteractionType(String interactionType) { - this.interactionType = interactionType; - } - - /** - * - * @return edge attributes - */ - public Map getAttributes() { - return attrs; - } - - /** - * - * @param attr attribute name - * @param value attribute value - */ - public void addAttribute(String attr, Object value) { - attrs.put(attr, value); - } - - public boolean isDirected() { - return directed; - } - - public void setDirected(boolean directed) { - this.directed = directed; - } - - public String getSourceID() { - return sourceID; - } - - public void setSourceID(String sourceID) { - this.sourceID = sourceID; - } - - public String getTargetID() { - return targetID; - } - - public void setTargetID(String targetID) { - this.targetID = targetID; - } - - public boolean hasSameSourceTargetAndType(Edge other) - { - - return other.getSourceID().equals(this.getSourceID()) && - other.getTargetID().equals(this.getTargetID()) && - other.getAttributes().get("INTERACTION_TYPE").equals(this.getAttributes().get("INTERACTION_TYPE")); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/network/Network.java b/core/src/main/java/org/mskcc/cbio/portal/network/Network.java deleted file mode 100644 index 8260765c377..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/network/Network.java +++ /dev/null @@ -1,211 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.network; - -import edu.uci.ics.jung.graph.Graph; -import edu.uci.ics.jung.graph.DirectedSparseMultigraph; - -import java.util.Collection; -import java.util.HashMap; -import java.util.Iterator; -import java.util.Map; - -/** - * - * @author jj - */ -public class Network { - private Graph graph; - private Map nodesByIds; - - public Network() { - graph = new DirectedSparseMultigraph(); - nodesByIds = new HashMap(); - } - - /** - * - * @return the number of nodes - */ - public int countNodes() { - return countNodes(false); - } - - public int countNodes(boolean excludeDrugs) { - if(excludeDrugs) { - int count = 0; - for (Node node : nodesByIds.values()) { - if(node.getType().equals(NodeType.DRUG)) - continue; - - count++; - } - return count; - } else { - return graph.getVertexCount(); - } - } - - /** - * - * @return the number of edges - */ - public int coundEdges() { - return graph.getEdgeCount(); - } - - /** - * - * @return all edges - */ - public Collection getEdges() { - return graph.getEdges(); - } - - /** - * Returns the collection of nodes in this network which are connected to edge. - * @param node - * @return the collection of nodes which are connected to edge, could be empty. - */ - public Collection getIncidentEdges(Node node) { - return graph.getIncidentEdges(node); - } - - /** - * - * @param node - * @param edge - * @return - */ - public Node getOpposite(Node node, Edge edge) { - return graph.getOpposite(node, edge); - } - - /** - * - * @return all nodes - */ - public Collection getNodes() { - return graph.getVertices(); - } - - /** - * - * @param id node id - * @return the node with a particular id or null if not exist - */ - public Node getNodeById(String id) { - return nodesByIds.get(id); - } - - /** - * add a node - * @param node a node - */ - public void addNode(Node node) { - if (nodesByIds.get(node.getId())!=null) { - return; - } - - nodesByIds.put(node.getId(),node); - graph.addVertex(node); - } - - /** - * remove a node - * @param node a node - * @return true if node exists and removed - */ - public boolean removeNode(Node node) { - boolean ret = graph.removeVertex(node); - if (ret) { - nodesByIds.remove(node.getId()); - } - return ret; - } - - /** - * add an edge - * @param edge an edge - */ - public void addEdge(Edge edge) { - Node node1 = nodesByIds.get(edge.getSourceID()); - Node node2 = nodesByIds.get(edge.getTargetID()); - - if (node1==null || node2==null) { - throw new java.lang.UnsupportedOperationException("Add nodes before adding an edge"); - } - - graph.addEdge(edge, node1, node2); - - } - - /** - * - * @param edge an edge - * @return true if exists and removed - */ - public boolean removeEdge(Edge edge) { - return graph.removeEdge(edge); - } - - /** - * - * @param edge - * @return an array of 2 nodes - */ - public Node[] getNodes(Edge edge) { - return new Node[] {graph.getSource(edge), graph.getDest(edge)}; - } - - /** - * - */ - public Collection getNeighbors(Node node) { - return graph.getNeighbors(node); - } - - /** - * - * @param node - * @return - */ - public int getDegree(Node node) { - return graph.degree(node); - } - - public Collection findEdgeSet(Node node1, Node node2) - { - return this.graph.findEdgeSet(node1, node2); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/network/NetworkIO.java b/core/src/main/java/org/mskcc/cbio/portal/network/NetworkIO.java deleted file mode 100644 index 5bd552d26bd..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/network/NetworkIO.java +++ /dev/null @@ -1,509 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.network; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.util.*; -import org.apache.commons.httpclient.HttpClient; -import org.apache.commons.httpclient.HttpException; -import org.apache.commons.httpclient.HttpStatus; -import org.apache.commons.httpclient.MultiThreadedHttpConnectionManager; -import org.apache.commons.httpclient.methods.GetMethod; -import org.apache.commons.text.StringEscapeUtils; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Drug; -import org.mskcc.cbio.portal.model.DrugInteraction; -import org.mskcc.cbio.portal.model.Interaction; -import org.mskcc.cbio.portal.scripts.drug.AbstractDrugInfoImporter; -import org.mskcc.cbio.portal.web_api.ConnectionManager; -import org.mskcc.cbio.portal.util.GlobalProperties; - -/** - * - * @author jj - */ -public final class NetworkIO { - - public static enum NetworkSize { - SMALL, - MEDIUM, - LARGE - } - - /** - * private constructor for utility class. - */ - private NetworkIO(){} - - /** - * Interface for get label from a node - */ - public static interface NodeLabelHandler { - /** - * - * @param node a node - * @return label for the node - */ - String getLabel(Node node); - } - - public static String getCPath2URL(Set genes) { - StringBuilder sbUrl = new StringBuilder(GlobalProperties.getPathwayCommonsUrl()); - sbUrl.append("/graph?format=EXTENDED_BINARY_SIF&kind=NEIGHBORHOOD"); - for (String gene : genes) { - sbUrl.append("&source="); - sbUrl.append(gene.toUpperCase()); - } - - return sbUrl.toString(); - } - - public static Network readNetworkFromCPath2(Set genes, boolean removeSelfEdge) - throws DaoException, IOException { - String cPath2Url = getCPath2URL(genes); - - MultiThreadedHttpConnectionManager connectionManager = - ConnectionManager.getConnectionManager(); - HttpClient client = new HttpClient(connectionManager); - - GetMethod method = new GetMethod(cPath2Url); - try { - int statusCode = client.executeMethod(method); - if (statusCode == HttpStatus.SC_OK) { - Network network = readNetworkFromCPath2(method.getResponseBodyAsStream(), true); - Set seedNodes = addMissingGenesAndReturnSeedNodes(network, genes); - classifyNodes(network, seedNodes); - return network; - } else { - // Otherwise, throw HTTP Exception Object - throw new HttpException(statusCode + ": " + HttpStatus.getStatusText(statusCode) - + " Base URL: " + cPath2Url); - } - - } finally { - // Must release connection back to Apache Commons Connection Pool - method.releaseConnection(); - } - } - - /** - * Read a network from extended SIF of cPath2 - * @param isSif input stream of SIF - * @return a network - * @throws IOException if connection failed - */ - public static Network readNetworkFromCPath2(InputStream isSif, boolean removeSelfEdge) throws IOException { - Network network = new Network(); - BufferedReader bufReader = new BufferedReader(new InputStreamReader(isSif)); - - // read edges - String line = bufReader.readLine(); - if (!line.startsWith("PARTICIPANT_A\tINTERACTION_TYPE\tPARTICIPANT_B")) {// if empty - return network; - } - - String[] edgeHeaders = line.split("\t"); - ArrayList edgeLines = new ArrayList(); - for (line = bufReader.readLine(); !line.isEmpty(); line = bufReader.readLine()) { - edgeLines.add(line); - } - - // read nodes - line = bufReader.readLine(); - if (!line.startsWith("PARTICIPANT\tPARTICIPANT_TYPE\tPARTICIPANT_NAME\t" - + "UNIFICATION_XREF\tRELATIONSHIP_XREF")) { - System.err.print("cPath2 format changed."); - //return network; - } - - String[] nodeHeaders = line.split("\t"); - for (line = bufReader.readLine(); line!=null && !line.isEmpty(); line = bufReader.readLine()) { - String[] strs = line.split("\t"); - Node node = new Node(strs[0]); - for (int i=1; i addMissingGenesAndReturnSeedNodes(Network net, Set seedGenes) - throws DaoException { - Set seedNodes = new HashSet(seedGenes.size()); - Set missingGenes = new HashSet(seedGenes); - for (Node node : net.getNodes()) { - String symbol = NetworkUtils.getSymbol(node); - if (missingGenes.remove(symbol)) { - seedNodes.add(node); - } - } - - Map entrezHugoMap = getEntrezHugoMap(missingGenes); - for (Map.Entry entry : entrezHugoMap.entrySet()) { - Node node = addNode(net, entry.getKey().toString(), entry.getValue()); - seedNodes.add(node); - } - - return seedNodes; - } - - private static void classifyNodes(Network net, Set seedNodes) { - for (Node seed : seedNodes) { - seed.setAttribute("IN_QUERY", "true"); - //seed.setAttribute("IN_MEDIUM", "true"); - } - - for (Node node: net.getNodes()) { - if (seedNodes.contains(node)) { - continue; - } - - node.setAttribute("IN_QUERY", "false"); //TODO: remove this - } - } - - /** - * remove linker nodes that connect to only one query gene - * @param net - * @param seedNodes - */ - private static void pruneMediumNetwork(final Network net, final Set seedNodes) { - NetworkUtils.pruneNetwork(net, new NetworkUtils.NodeSelector() { - public boolean select(Node node) { - if (seedNodes.contains(node)) { - return false; - } - - int seedDegree = 0; - for (Node neighbor : net.getNeighbors(node)) { - if (seedNodes.contains(neighbor)) { - if (++seedDegree >= 2) { - return false; - } - } - } - return true; - } - }); - } - - private static Node addNode(Network net, String entrez, String hugo) { - Node node = net.getNodeById(entrez); - if (node != null) { - return node; - } - - node = new Node(entrez); - node.setType(NodeType.PROTEIN); - node.setAttribute("RELATIONSHIP_XREF", "HGNC:"+hugo+";Entrez Gene:"+entrez); - net.addNode(node); - return node; - } - - private static Node addDrugNode(Network net, Drug drug) throws DaoException { - Node node = net.getNodeById(drug.getId()); - if (node != null) { - return node; - } - - node = new Node(drug.getId()); - node.setType(NodeType.DRUG); - node.setAttribute("NAME", drug.getName()); - node.setAttribute("RELATIONSHIP_XREF", drug.getExternalReference()); - node.setAttribute("ATC_CODE", drug.getATCCode()); - node.setAttribute("FDA_APPROVAL", drug.isApprovedFDA() + ""); - node.setAttribute("CANCER_DRUG", drug.isCancerDrug() + ""); - node.setAttribute("NUMBER_OF_CLINICAL_TRIALS", drug.getNumberOfClinicalTrials()); - node.setAttribute("DESCRIPTION", drug.getDescription()); - node.setAttribute("SYNONYMS", drug.getSynonyms()); - - net.addNode(node); - return node; - } - - private static Map getEntrezHugoMap(Set genes) throws DaoException { - Map map = new HashMap(genes.size()); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - for (String gene : genes) { - CanonicalGene cGene = daoGeneOptimized.getGene(gene); - if (cGene!=null) { - map.put(cGene.getEntrezGeneId(),gene.toUpperCase()); - } - } - return map; - } - - private static String entrezToHugo(Map mapEntrezHugo, long entrez, - DaoGeneOptimized daoGeneOptimized) throws DaoException { - String hugo = mapEntrezHugo.get(entrez); - if (hugo==null) { - hugo = daoGeneOptimized.getGene(entrez).getHugoGeneSymbolAllCaps(); - mapEntrezHugo.put(entrez, hugo); - } - return hugo; - } - - /** - * Write network to SIF format - * @param network network to write - * @param nlh - * @return a string in SIF format - */ - public static String writeNetwork2Sif(Network network, NodeLabelHandler nlh) { - StringBuilder sb = new StringBuilder(); - - for (Edge edge : network.getEdges()) { - Node[] nodes = network.getNodes(edge); - sb.append(nlh.getLabel(nodes[0])); - sb.append("\t"); - sb.append(edge.getInteractionType()); - sb.append("\t"); - sb.append(nlh.getLabel(nodes[1])); - sb.append("\n"); - } - - return sb.toString(); - } - - /** - * Write network to GraphML format - * @param network network to write - * @param nlh - * @return a tring in GraphML format - */ - public static String writeNetwork2GraphML(Network network, NodeLabelHandler nlh) { - Map mapNodeAttrNameType = new HashMap(); - Map mapEdgeAttrNameType = new HashMap(); - - StringBuilder sbNodeEdge = new StringBuilder(); - - for (Node node : network.getNodes()) { - sbNodeEdge.append(" \n"); - sbNodeEdge.append(" "); - sbNodeEdge.append(nlh.getLabel(node)); - sbNodeEdge.append("\n"); - - sbNodeEdge.append(" "); - sbNodeEdge.append(node.getType().toString()); - sbNodeEdge.append("\n"); - - exportAttributes(node.getAttributes(),sbNodeEdge,mapNodeAttrNameType); - sbNodeEdge.append(" \n"); - } - - for (Edge edge : network.getEdges()) { - Node[] nodes = network.getNodes(edge); - sbNodeEdge.append(" \n"); - - sbNodeEdge.append(" "); - sbNodeEdge.append(edge.getInteractionType()); - sbNodeEdge.append("\n"); - - exportAttributes(edge.getAttributes(),sbNodeEdge,mapEdgeAttrNameType); - sbNodeEdge.append(" \n"); - } - - StringBuilder sb = new StringBuilder(); - sb.append("\n"); - sb.append(" \n"); - sb.append(" \n"); - - for (Map.Entry entry : mapNodeAttrNameType.entrySet()) { - sb.append(" \n"); - } - - for (Map.Entry entry : mapEdgeAttrNameType.entrySet()) { - sb.append(" \n"); - } - - sb.append(" \n"); - sb.append(sbNodeEdge); - sb.append(" \n"); - - sb.append("\n"); - - return sb.toString(); - } - - private static void exportAttributes(Map attrs, - StringBuilder to, Map mapAttrNameType) { - for (Map.Entry entry : attrs.entrySet()) { - String attr = entry.getKey(); - Object value = entry.getValue(); - - to.append(" "); - to.append(StringEscapeUtils.escapeXml11(value.toString())); - to.append("\n"); - - String type = getAttrType(value); - - String pre = mapAttrNameType.get(attr); - if (pre!=null) { - if (!pre.equals(type)) { - mapAttrNameType.put(attr, "string"); - } - } else { - mapAttrNameType.put(attr, type); - } - } - } - - private static String getAttrType(Object obj) { - if (obj instanceof Integer) { - return "integer"; - } - - if (obj instanceof Float || obj instanceof Double) { - return "double"; - } - - if (obj instanceof Boolean) { - return "boolean"; - } - - return "string"; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/network/NetworkUtils.java b/core/src/main/java/org/mskcc/cbio/portal/network/NetworkUtils.java deleted file mode 100644 index 5f13ed32f89..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/network/NetworkUtils.java +++ /dev/null @@ -1,196 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.network; - -import java.util.Arrays; -import java.util.HashMap; -import java.util.HashSet; -import java.util.Iterator; -import java.util.LinkedHashSet; -import java.util.Map; -import java.util.Set; -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -import org.apache.commons.lang3.StringUtils; - -/** - * - * @author jgao - */ -public final class NetworkUtils { - private NetworkUtils() {} - - public static String getSymbol(Node node) { - String strXrefs = (String)node.getAttribute("RELATIONSHIP_XREF"); - if (strXrefs==null) { - return null; - } - - Pattern pattern = Pattern.compile("HGNC Symbol:([^;]+)|HGNC SYMBOL:([^;]+)|HGNC:([^;]+)"); - Matcher matcher = pattern.matcher(strXrefs); - if (matcher.find()) - { - if (matcher.group(1) != null) { - return matcher.group(1).toUpperCase(); - } - else if (matcher.group(2) != null) { - return matcher.group(2).toUpperCase(); - } - else { - return matcher.group(3).toUpperCase(); - } - - } else { - return null; - } - } - - /** - * - */ - public static interface NodeSelector { - /** - * - * @return - */ - boolean select(Node node); - } - - /** - * - * @param net - * @param nodeSelector - */ - public static void pruneNetwork(Network net, NodeSelector nodeSelector) { - Set deleteNodes = new HashSet(); - for (Node node : net.getNodes()) { - if (nodeSelector.select(node)) { - deleteNodes.add(node); - } - } - - for (Node node : deleteNodes) { - net.removeNode(node); - } - } - - /** - * - * @param net - */ - public static void mergeNodesWithSameSymbol(Network net) { - Map mapSymbolNode = new HashMap(); - Set deleteNodes = new HashSet(); - for (Node node : net.getNodes()) { - String symbol = getSymbol(node); - if (symbol!=null) { - Node mergeTo = mapSymbolNode.get(symbol); - if (mergeTo==null) { - mapSymbolNode.put(symbol, node); - } else { - mergeNodes(net, mergeTo, node); - deleteNodes.add(node); - } - } - } - - for (Node node : deleteNodes) { - net.removeNode(node); - } - } - - /** - * - * @param net - * @param mergeTo - * @param mergeFrom - */ - private static void mergeNodes(Network net, Node mergeTo, Node mergeFrom) { - // merge attributes - mergeStringAttributes(mergeTo, mergeFrom, "PARTICIPANT_NAME"); - mergeStringAttributes(mergeTo, mergeFrom, "UNIFICATION_XREF"); - mergeStringAttributes(mergeTo, mergeFrom, "RELATIONSHIP_XREF"); - - // merge edges - for (Edge edge : net.getIncidentEdges(mergeFrom)) { - Node[] ends = net.getNodes(edge); - if (ends[0].equals(mergeFrom)) { - ends[0] = mergeTo; - } else { - ends[1] = mergeTo; - } - - net.removeEdge(edge); - //TODO check if this edge already occurs between this nodes - edge.setSourceID(ends[0].getId()); - edge.setTargetID(ends[1].getId()); - - if (net.findEdgeSet(mergeTo, mergeFrom).size() > 0) - { - for (Iterator iterator = net.findEdgeSet(mergeTo, mergeFrom).iterator(); iterator.hasNext();) - { - Edge tempEdge = (Edge) iterator.next(); - - if(!tempEdge.hasSameSourceTargetAndType(edge)) - net.addEdge(edge); - } - } - - } - } - - /** - * - * @param mergeTo - * @param mergeFrom - * @param attr - */ - private static void mergeStringAttributes(Node mergeTo, Node mergeFrom, String attr) { - Set attrs = new LinkedHashSet(); - - String attr2 = (String)mergeFrom.getAttribute(attr); - if (attr2==null) { - return; - } - - String attr1 = (String)mergeTo.getAttribute(attr); - if (attr1!=null) { - attrs.addAll(Arrays.asList(attr1.split(";"))); - } - - if (attrs.addAll(Arrays.asList(attr2.split(";")))) { - mergeTo.setAttribute(attr, StringUtils.join(attrs,";")); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/network/Node.java b/core/src/main/java/org/mskcc/cbio/portal/network/Node.java deleted file mode 100644 index f5aacc2bbd6..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/network/Node.java +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.network; - -import java.util.Collections; -import java.util.LinkedHashMap; -import java.util.Map; - -/** - * Class for Node - * @author jj - */ -public class Node { - private String id; - private NodeType type = NodeType.UNKNOWN; - private Map attrs; // map of attr type to attr value - - /** - * - * @param id cannot be null - */ - Node(String id) { - if (id==null) { - throw new IllegalArgumentException("Node ID cannot be null"); - } - this.id = id; - attrs = new LinkedHashMap(); - } - - /** - * - * @return node ID - */ - public String getId() { - return id; - } - - public NodeType getType() { - return type; - } - - public void setType(NodeType type) { - this.type = type; - } - - /** - * - * @return node attributes - */ - public Map getAttributes() { - return Collections.unmodifiableMap(attrs); - } - - public Object getAttribute(String attrName) { - return attrs.get(attrName); - } - - /** - * - * @param attr attribute name - * @param value attribute value - */ - public void setAttribute(String attr, Object value) { - attrs.put(attr, value); - } - - @Override - public String toString() { - return id; - } - - @Override - public int hashCode() { - return id.hashCode(); - } - - @Override - public boolean equals(Object obj) { - return obj instanceof Node && id.equals(((Node) obj).id); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/network/NodeType.java b/core/src/main/java/org/mskcc/cbio/portal/network/NodeType.java deleted file mode 100644 index 78aaf023c38..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/network/NodeType.java +++ /dev/null @@ -1,115 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.network; - -import java.util.Map; -import java.util.HashMap; - -/** - * - * @author jgao - */ -public enum NodeType { - PROTEIN("Protein","ProteinReference"), - RNAREF("Protein","RnaReference"), - RNAREGREF("Protein","RnaRegionReference"), - DNAREF("Protein","DnaReference"), - DNAREGREF("Protein","DnaRegionReference"), - NUCACIDREF("Protein","NuecleicAcidReference"), - NUCACIDREGREF("Protein","NuecleicAcidRegionReference"), - SMALL_MOLECULE("SmallMolecule", "SmallMoleculeReference"), - COMPLEX_GROUP("ComplexGroup","ComplexGroup"), - GENERIC_PROTEIN("GenericProtein","GenericProtein"), - GENERIC_COMPLEX("GenericComplex","GenericComplex"), - GENERIC_SMALL_MOLECULE("GenericSmallMolecule","GenericSmallMolecule"), - GENERIC("Generic","Generic"), - DRUG("Drug", "Drug"), - UNKNOWN("Unknown","Unknown"); - - private final String desc; - private final String cpath2Keyword; - - private NodeType(String desc, String cpath2Keyword) { - this.desc = desc; - this.cpath2Keyword = cpath2Keyword; - } - - private boolean isProtein(String [] cpath2Keywords) - { - for (int i = 0; i < cpath2Keywords.length; i++) - { - if (mapCpath2NodeType.get(cpath2Keywords[i]).desc.equals("Protein")) - { - return true; - } - } - return false; - } - - private static final Map mapCpath2NodeType; - static { - mapCpath2NodeType = new HashMap(); - for (NodeType type : NodeType.values()) { - mapCpath2NodeType.put(type.cpath2Keyword, type); - } - } - - public static NodeType getByCpath2Keyword(final String cpath2Keyword) { - String [] cpath2References = cpath2Keyword.split(";"); - NodeType nodeType = mapCpath2NodeType.get(cpath2References[0]); - - for (int i = 0; i < cpath2References.length; i++) - { - NodeType newType = mapCpath2NodeType.get(cpath2References[i]); - - //That means something is going terribly wrong here ! - //Two different result for cpath2Keyword e.g. protein and small molecule ! - if (!newType.desc.equals(nodeType.desc)) - { - return UNKNOWN; - } - else - nodeType = newType; - } - - if (nodeType != null) - return nodeType; - else - return UNKNOWN; - } - - @Override - public String toString() { - return desc; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/CallOncoPrintSpecParser.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/CallOncoPrintSpecParser.java deleted file mode 100644 index c204ef56a70..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/CallOncoPrintSpecParser.java +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.io.ByteArrayInputStream; -import java.io.IOException; - -import org.antlr.runtime.ANTLRInputStream; -import org.antlr.runtime.CommonTokenStream; -import org.antlr.runtime.RecognitionException; -import org.antlr.runtime.tree.CommonTree; -import org.antlr.runtime.tree.CommonTreeNodeStream; - -public class CallOncoPrintSpecParser { - - /** - * call the parser's root - * @param language - * @return - */ - public static ParserOutput callOncoPrintSpecParser( String specLanguage, OncoPrintGeneDisplaySpec anOncoPrintGeneDisplaySpec ){ - - try { - - specLanguage = reverseXSSclean( specLanguage ); - -// Utilities.clearErrorMessageList(); - // add end of line ;s where needed - ByteArrayInputStream bs = new ByteArrayInputStream( Utilities.appendSemis(specLanguage).getBytes() ); - ANTLRInputStream input = new ANTLRInputStream(bs); - - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getLineNumber()); - // Create a lexer attached to that input stream - completeOncoPrintSpecASTLexer lexer = new completeOncoPrintSpecASTLexer(input); - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getFileName() + ":" + Thread.currentThread().getStackTrace()[1].getLineNumber()); - // Create a stream of tokens pulled from the lexer - CommonTokenStream tokens = new CommonTokenStream(lexer); - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getFileName() + ":" + Thread.currentThread().getStackTrace()[1].getLineNumber()); - // Create a parser attached to the token stream - completeOncoPrintSpecASTParser parser = new completeOncoPrintSpecASTParser(tokens); - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getFileName() + ":" + Thread.currentThread().getStackTrace()[1].getLineNumber()); - - // Invoke the program rule in get return value - completeOncoPrintSpecASTParser.oncoPrintSpecification_return r = parser.oncoPrintSpecification(); - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getFileName() + ":" + Thread.currentThread().getStackTrace()[1].getLineNumber()); - - // now call returnedObject's getTree() - CommonTree t = (CommonTree)r.getTree(); - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getFileName() + ":" + Thread.currentThread().getStackTrace()[1].getLineNumber()); - // Walk resulting tree; create treenode stream first - CommonTreeNodeStream nodes = new CommonTreeNodeStream( t ); - // AST nodes have payloads that point into token stream - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getFileName() + ":" + Thread.currentThread().getStackTrace()[1].getLineNumber()); - nodes.setTokenStream(tokens); - // Create a tree Walker attached to the nodes stream - completeOncoPrintSpecASTwalker walker = new completeOncoPrintSpecASTwalker(nodes); - - // Invoke the start symbol - completeOncoPrintSpecASTwalker.oncoPrintSpecification_return rv - = (completeOncoPrintSpecASTwalker.oncoPrintSpecification_return) walker.oncoPrintSpecification( anOncoPrintGeneDisplaySpec ); - - ParserOutput theParserOutput = new ParserOutput( -// Utilities.getErrorMessages(), - // TODO: HIGH: UNIT TEST in OncoSpec - null, - rv.returnListOfErrors, - rv.theOncoPrintSpecification ); - return theParserOutput; - - } catch (IOException e) { - e.printStackTrace(); - } catch (RecognitionException e) { - e.printStackTrace(); - } - return null; - } - - // TODO: replace this with a comprehensive inverse of ServletXssUtil.getCleanInput(); cannot find any documentation on that now - public static String reverseXSSclean( String langInput ){ - // xssUtil cleaning screws up < and > signs; replace them - return langInput.replaceAll(">", ">").replaceAll("<", "<"); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ComparisonOp.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ComparisonOp.java deleted file mode 100644 index 471a360521d..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ComparisonOp.java +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.Arrays; - -import org.mskcc.cbio.portal.util.EqualsUtil; - -enum ComparisonOpDirection{ - Bigger, - Smaller, - Equal; -} - -public enum ComparisonOp { - GreaterEqual (">=", ComparisonOpDirection.Bigger), - Greater (">", ComparisonOpDirection.Bigger), - LessEqual ("<=", ComparisonOpDirection.Smaller), - Less ("<", ComparisonOpDirection.Smaller), - Equal ("=", ComparisonOpDirection.Equal); - - private final String token; - private final ComparisonOpDirection theComparisonOpDirection; - ComparisonOp( String token, ComparisonOpDirection theComparisonOpDirection){ - this.token = token; - this.theComparisonOpDirection = theComparisonOpDirection; - } - - public ComparisonOpDirection getTheComparisonOpDirection() { - return theComparisonOpDirection; - } - - /** - * map from an String ComparisonOp token to a ComparisonOp. - * @param parsedToken - * @return a ComparisonOp enum for the token - * @throws IllegalArgumentException when the token isn't a valid token for a ComparisonOp - */ - public static ComparisonOp convertCode( String parsedToken ) throws IllegalArgumentException{ - for( ComparisonOp v: ComparisonOp.values() ){ - if( v.token.equals(parsedToken) ){ - return v; - } - } - throw new IllegalArgumentException( "Invalid parsedToken: " + parsedToken ); - } - - public String getToken() { - return token; - } - - /** - * useful for testing. - * @param aComparisonOp - * @return - */ - public ComparisonOp oppositeComparisonOp( ){ - switch (this) { - case GreaterEqual: - return Less; - case Greater: - return LessEqual; - case LessEqual: - return Greater; - case Less: - return GreaterEqual; - case Equal: - return Equal; //todo: not correct - } - // keep compiler happy - (new UnreachableCodeException( "")).printStackTrace(); - return null; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/CompleteOncoPrintSpecASTdriver.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/CompleteOncoPrintSpecASTdriver.java deleted file mode 100644 index 22bed557718..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/CompleteOncoPrintSpecASTdriver.java +++ /dev/null @@ -1,220 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import static java.lang.System.out; - -import java.io.ByteArrayInputStream; -import java.io.IOException; -import java.lang.reflect.InvocationTargetException; -import java.lang.reflect.Method; -import java.util.Random; - -import org.antlr.runtime.ANTLRInputStream; -import org.antlr.runtime.CommonTokenStream; -import org.antlr.runtime.RecognitionException; -import org.antlr.runtime.tree.CommonTree; -import org.antlr.runtime.tree.CommonTreeNodeStream; - -public class CompleteOncoPrintSpecASTdriver { - - public static void main(String[] args) throws Exception { - - // TODO: MOVE TO TEST CODE - for( int j=0; j<20; j++){ - String s = randomInput( 100 ) ; - out.println( j + ": " + s ); - printObject( (OncoPrintSpecification)parseMethod( "oncoPrintSpecification", s, args ) ); - } - /* - printObject( (OncoPrintSpecification)parseMethod( "oncoPrintSpecification", - "DATATYPES : EXP MUT ; gene2 g3: CNA 2 ; g4 notGene \n", args ) ); - printObject( parseMethod( "oncoPrintSpecification", "", args ) ); - printObject( parseMethod( "oncoPrintSpecification", " \"hi mom\" { g3 g4} " + - " { g1 DATATYPES : EXP MUT ; g2 }" + - "DATATYPES : EXP MUT ; gene2 g3: CNA 2 ; g4 notGene \n" + - "", args ) ); - - printObject( parseMethod( "userGeneList", " \"hi mom\" { g3 g4}", args ) ); - printObject( parseMethod( "userGeneList", " { g1 DATATYPES : EXP MUT ; g2 } ", args ) ); - - printObject( parseMethod( "userGeneList", " g0 GENE1 : CNA > HetLoss ; " + - "DATATYPES : EXP MUT ; gene2 g3: CNA 2 ; g4 notGene \n" + - "f1: meth;", args ) ); - printObject( parseMethod( "geneList", " g0 GENE1 : CNA > HetLoss ; " + - "DATATYPES : EXP MUT ; gene2 g3: CNA 2 ; g4 notGene \n" + - "f1: meth;", args ) ); - - printObject( parseMethod( "fullDataTypeSpec", ": CNA > HetLoss Mut Exp < 3.5 ;", args ) ); - printObject( parseMethod( "fullDataTypeSpec", ": Exp <= -1 Exp < -1 Exp > 1 Exp > 2 ;", args ) ); - printObject( parseMethod( "fullDataTypeSpec", ": Exp foo;", args ) ); - printObject( parseMethod( "fullDataTypeSpec", ": Exp foo bar 876 *&^ ;", args ) ); - - printObject( parseMethod( "individualGene", "foo", args ) ); - printObject( parseMethod( "individualGene", "gene1: Methylation < 2;", args ) ); - printObject( parseMethod( "individualGene", "notGene", args ) ); - - printObject( parseMethod( "dataTypeSpec", "CNA > HetLoss", args ) ); - printObject( parseMethod( "dataTypeSpec", "\n\n CNA > elbow", args ) ); - printObject( parseMethod( "dataTypeSpec", "butt > HetLoss", args ) ); - printObject( parseMethod( "dataTypeSpec", "CNA 2", args ) ); - printObject( parseMethod( "dataTypeSpec", "CNA -1", args ) ); - - printObject( parseMethod( "dataTypeSpec", "CNA -4", args ) ); - printObject( parseMethod( "dataTypeSpec", "Mut -1", args ) ); - printObject( parseMethod( "dataTypeSpec", "Mut 0", args ) ); - printObject( parseMethod( "dataTypeSpec", "Mut 1", args ) ); - printObject( parseMethod( "dataTypeSpec", "Exp < 3.5", args ) ); - printObject( parseMethod( "dataTypeSpec", "Methylation < 2", args ) ); - printObject( parseMethod( "dataTypeSpec", "Methy < -1", args ) ); - printObject( parseMethod( "dataTypeSpec", "Ugly <= -1", args ) ); - */ - - printObject( parseMethod( "dataTypeSpec", "CNA", args ) ); - printObject( parseMethod( "dataTypeSpec", "GAI", args ) ); - printObject( parseMethod( "dataTypeSpec", "EXP", args ) ); - - printObject( parseMethod( "dataTypeSpec", "mrna", args ) ); - printObject( parseMethod( "dataTypeSpec", "FOO", args ) ); - printObject( parseMethod( "dataTypeSpec", "CNA < 3.5", args ) ); - printObject( parseMethod( "dataTypeSpec", "Exp << 3.5", args ) ); - printObject( parseMethod( "dataTypeSpec", "Exp < x", args ) ); - printObject( parseMethod( "dataTypeSpec", "foo < 3.5", args ) ); - printObject( parseMethod( "dataTypeSpec", "foo < 3.5", args ) ); - } - - static void printObject( Object o){ - if( null == o){ - // out.println( "null object" ); - }else{ - out.println( o.toString() ); - } - } - - /** - * return a string of n random tokens - * @param n - * @return - */ - static Random r = new Random(17); - private static String randomInput( int n ){ - StringBuffer sb=new StringBuffer(); - String tokens = "\\\" \t \r \n 0 1 2 3 4 5 6 .3 3. 0.2 . - + : ; : ; : ; : ; = == <= < > >= nonGene exp cna c mut methy expre mrna " + - "Gene1 gene2 DATATYPES \" DATATYPES \" { } { } { }"; - String[] tokenList = tokens.split( " +"); - // Random r = new Random(); - for( int i=0; i parserClass = parser.getClass(); // Class.forName("main.completeOncoPrintSpecASTParser.parser"); - //System.out.println( "parserClass is: " + parserClass.getName() ); - // create (empty) arg list - Class[] emptyArgList = new Class[] {}; - // get method - Method parserMethod = parserClass.getDeclaredMethod( method, emptyArgList); - //System.out.println( "parserMethod is: " + parserMethod.getName() ); - - // call method - // was completeOncoPrintSpecASTParser.fullDataTypeSpec_return r = parser.fullDataTypeSpec(); - Object parserRV = parserMethod.invoke( parser ); - - // now call returnedObject's getTree() - // get return value class - Class rvClass = parserRV.getClass(); - //System.out.println( "rvClass is: " + rvClass.getName() ); - // get method - Method rvClassGetTree = rvClass.getDeclaredMethod( "getTree", emptyArgList); - //System.out.println( "rvClassGetTree is: " + rvClassGetTree.getName() ); - // call method - // was: CommonTree t = (CommonTree)r.getTree(); - CommonTree theCommonTree = (CommonTree)rvClassGetTree.invoke(parserRV ); - //System.out.println( "theCommonTree is: " + "\n"+ theCommonTree.toStringTree() ); - - // Walk resulting tree; create treenode stream first - CommonTreeNodeStream nodes = new CommonTreeNodeStream(theCommonTree); - // AST nodes have payloads that point into token stream - nodes.setTokenStream(tokens); - // Create a tree Walker attached to the nodes stream - completeOncoPrintSpecASTwalker walker = new completeOncoPrintSpecASTwalker(nodes); - - // Invoke the start symbol, rule program - // invoke method 'method' on walker - return walker.getClass().getDeclaredMethod(method, emptyArgList).invoke(walker, (Object[])null); - // was: return walker.fullDataTypeSpec(); - - } catch (SecurityException e) { - - e.printStackTrace(); - } catch (IllegalArgumentException e) { - - e.printStackTrace(); - } catch (IOException e) { - e.printStackTrace(); - } catch (NoSuchMethodException e) { - - e.printStackTrace(); - } catch (IllegalAccessException e) { - - e.printStackTrace(); - } catch (InvocationTargetException e) { - - e.printStackTrace(); - } - - return null; - } - - static private CommonTokenStream getCommonTokenStream( String prog, String[] args )throws IOException{ - ByteArrayInputStream bs = new ByteArrayInputStream( prog.getBytes()); - ANTLRInputStream input = new ANTLRInputStream(bs); - // Create a lexer attached to that input stream - completeOncoPrintSpecASTLexer lexer = new completeOncoPrintSpecASTLexer(input); - // Create a stream of tokens pulled from the lexer - return new CommonTokenStream(lexer); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ConcreteDataTypeSpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ConcreteDataTypeSpec.java deleted file mode 100644 index 38db1486148..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ConcreteDataTypeSpec.java +++ /dev/null @@ -1,86 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import org.mskcc.cbio.portal.util.EqualsUtil; -import org.mskcc.cbio.portal.util.HashCodeUtil; - -public class ConcreteDataTypeSpec extends DataTypeSpec { - - public ConcreteDataTypeSpec( GeneticDataTypes theGeneticDataType) { - this.theGeneticDataType = theGeneticDataType; - } - - public ConcreteDataTypeSpec( String name ) { - this.theGeneticDataType = findDataType( name ); - } - - public static ConcreteDataTypeSpec concreteDataTypeSpecGenerator( String name ){ - try { - return new ConcreteDataTypeSpec( DataTypeSpec.genericFindDataType( name ) ); - } catch (IllegalArgumentException e) { - return null; - } - } - - public static GeneticDataTypes findDataType( String name ) - throws IllegalArgumentException{ - return DataTypeSpec.genericFindDataType( name ); - } - - public boolean satisfy( GeneticDataTypes value) { - return this.theGeneticDataType.equals(value); - } - - @Override - public String toString() { - return theGeneticDataType.toString(); - } - - @Override - public boolean equals( Object otherConcreteDataTypeSpec) { - if( this == otherConcreteDataTypeSpec ) return true; - if ( !(otherConcreteDataTypeSpec instanceof ConcreteDataTypeSpec) ) return false; - ConcreteDataTypeSpec that = (ConcreteDataTypeSpec) otherConcreteDataTypeSpec; - return - EqualsUtil.areEqual(this.theGeneticDataType, that.theGeneticDataType); - } - - // TODO: TEST - @Override - public int hashCode( ) { - int result = HashCodeUtil.SEED; - result = HashCodeUtil.hash( result, theGeneticDataType ); - return result; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ContinuousDataTypeSpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ContinuousDataTypeSpec.java deleted file mode 100644 index a9f36448c36..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ContinuousDataTypeSpec.java +++ /dev/null @@ -1,179 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; -import static java.lang.System.out; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DataTypeSpecEnumerations.DataTypeCategory; -import org.mskcc.cbio.portal.util.EqualsUtil; - -/** - * generically record and access the Continuous DataTypeSpecs, Expression and - * Methylation. - * - * @author Arthur Goldberg - */ -public class ContinuousDataTypeSpec extends DataTypeSpecInequality{ - - public ContinuousDataTypeSpec(GeneticDataTypes theGeneticDataType, - ComparisonOp comparisonOp, float threshold ) throws IllegalArgumentException{ - if( !theGeneticDataType.getTheDataTypeCategory().equals(DataTypeCategory.Continuous)){ - throw new IllegalArgumentException("ContinuousDataTypeSpec only takes Continuous GeneticDataTypes"); - } - this.theGeneticDataType = theGeneticDataType; - this.comparisonOp = comparisonOp; - this.threshold = Float.valueOf(threshold); - } - - /** - * generate a ContinuousDataTypeSpec from String only arguments; ease implementation of the grammar - * motto: do as little as possible in the grammar! - * - * @param theGeneticDataTypeString - * @param theComparisonOpString - * @param theThresholdString - * @return - */ - public static ContinuousDataTypeSpec continuousDataTypeSpecGenerator(String theGeneticDataTypeString, - String theComparisonOpString, String theThresholdString ){ - try { - //out.println( "continuousDataTypeSpecGenerator" + ":" + theGeneticDataTypeString + ":" + theComparisonOpString + ":" + theThresholdString ); - GeneticDataTypes theGeneticDataType = ContinuousDataTypeSpec.findDataType( theGeneticDataTypeString ); - ComparisonOp theComparisonOp = ComparisonOp.convertCode( theComparisonOpString ); - if( null == theThresholdString ){ - return null; - } - float theThreshold = Float.parseFloat( theThresholdString ); - return new ContinuousDataTypeSpec( theGeneticDataType, theComparisonOp, theThreshold ); - } catch (IllegalArgumentException e) { - return null; - } - } - - /** - * Copy constructor. - */ - public ContinuousDataTypeSpec(ContinuousDataTypeSpec aContinuousDataTypeSpec) { - this( aContinuousDataTypeSpec.getTheGeneticDataType(), aContinuousDataTypeSpec.getComparisonOp(), - ((Float)aContinuousDataTypeSpec.getThreshold()).floatValue() ); - //no defensive copies are created here, since - //there are no mutable object fields - } - - public static ContinuousDataTypeSpec newInstance( ContinuousDataTypeSpec aContinuousDataTypeSpec ){ - if( null == aContinuousDataTypeSpec ){ - return null; - } - return new ContinuousDataTypeSpec( aContinuousDataTypeSpec ); - } - - public static GeneticDataTypes findDataType( String name ) - throws IllegalArgumentException{ - return DataTypeSpecInequality.genericFindDataType( name, DataTypeCategory.Continuous ); - } - - /** - * indicate whether value satisfies this ContinuousDataTypeSpec - * - * @param value - * @return true if value satisfies this ContinuousDataTypeSpec - */ - public boolean satisfy( double value){ - Float f = (Float)this.threshold; - float t = f.floatValue(); - switch (this.comparisonOp) { - case GreaterEqual: - return( t <= value ); - case Greater: - return( t < value ); - case LessEqual: - return( value <= t ); - case Less: - return( value < t ); - } - // keep compiler happy - (new UnreachableCodeException( "")).printStackTrace(); - return false; - } - - /** - * combine aContinuousDataTypeSpec into this ContinuousDataTypeSpec, so that this ContinuousDataTypeSpec - * accepts any value that would have been accepted by either ContinuousDataTypeSpec. - * Both ContinuousDataTypeSpecs must have ComparisonOps with the same direction (> or <). - * Used to simplify a specification. - * - * @param aContinuousDataTypeSpec - * @throws IllegalArgumentException when the ContinuousDataTypeSpecs have ComparisonOps with different directions. - */ - public void combine(ContinuousDataTypeSpec aContinuousDataTypeSpec) throws IllegalArgumentException{ - if( !this.comparisonOp.getTheComparisonOpDirection().equals( aContinuousDataTypeSpec.getComparisonOp().getTheComparisonOpDirection() ) ){ - throw new IllegalArgumentException( "the ContinuousDataTypeSpecs must have ComparisonOps with the same direction" ); - } - switch( this.comparisonOp.getTheComparisonOpDirection() ){ - case Smaller: - if( ((Float)aContinuousDataTypeSpec.getThreshold()).floatValue() > ((Float)this.threshold).floatValue()){ - this.threshold = aContinuousDataTypeSpec.getThreshold(); - this.comparisonOp = aContinuousDataTypeSpec.getComparisonOp(); - } else if( ((Float)aContinuousDataTypeSpec.getThreshold()).floatValue() == ((Float)this.threshold).floatValue()){ - if(this.comparisonOp.equals(ComparisonOp.LessEqual) || aContinuousDataTypeSpec.getComparisonOp().equals(ComparisonOp.LessEqual) ){ - this.comparisonOp = ComparisonOp.LessEqual; - } - } - break; - - case Bigger: - if( ((Float)aContinuousDataTypeSpec.getThreshold()).floatValue() < ((Float)this.threshold).floatValue()){ - this.threshold = aContinuousDataTypeSpec.getThreshold(); - this.comparisonOp = aContinuousDataTypeSpec.getComparisonOp(); - } else if( ((Float)aContinuousDataTypeSpec.getThreshold()).floatValue() == ((Float)this.threshold).floatValue()){ - if(this.comparisonOp.equals(ComparisonOp.GreaterEqual) || aContinuousDataTypeSpec.getComparisonOp().equals(ComparisonOp.GreaterEqual) ){ - this.comparisonOp = ComparisonOp.GreaterEqual; - } - } - break; - - } - - } - - @Override - public boolean equals( Object aThat ) { - if ( this == aThat ) return true; - if ( !(aThat instanceof ContinuousDataTypeSpec) ) return false; - return - super.equals(aThat); - } - - @Override public final Object clone() throws CloneNotSupportedException { - throw new CloneNotSupportedException(); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DataTypeSpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DataTypeSpec.java deleted file mode 100644 index a29cd6451a7..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DataTypeSpec.java +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DataTypeSpecEnumerations.DataTypeCategory; - -/** - * DataTypeSpec is an abstract class at the root of a set of classes that - * record and provide access to data type specifications. - * - * @author Arthur Goldberg - */ -public abstract class DataTypeSpec { - GeneticDataTypes theGeneticDataType; - - public GeneticDataTypes getTheGeneticDataType() { - return theGeneticDataType; - } - - /** - * if a string name identifies a the unique genetic data type return the type, else - * throw IllegalArgumentException. - * @param name - * @param subType if non null, the unique genetic data type must have this DataTypeCategory - * @return - * @throws IllegalArgumentException - */ - public static GeneticDataTypes genericFindDataType( String name, DataTypeCategory subType ) - throws IllegalArgumentException{ - - GeneticDataTypes gdt = (GeneticDataTypes) UniqueEnumPrefix.findUniqueEnumMatchingPrefix( GeneticDataTypes.class, name ); - if( gdt == null ) { - gdt = (GeneticDataTypes)UniqueEnumPrefix.findUniqueEnumWithNicknameMatchingPrefix( GeneticDataTypes.class, name ); - } - if( gdt == null ) { - throw new IllegalArgumentException( "Invalid DataType: " + name ); - } - if( null == subType ){ - return gdt; - }else{ - if( gdt.getTheDataTypeCategory() == subType ){ - return gdt; - }else{ - throw new IllegalArgumentException( "Invalid DataType: " + name ); - } - } - } - - public static GeneticDataTypes genericFindDataType( String name ) - throws IllegalArgumentException{ - - return genericFindDataType( name, null ); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DataTypeSpecEnumerations.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DataTypeSpecEnumerations.java deleted file mode 100644 index d5ebf48b92c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DataTypeSpecEnumerations.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import static java.lang.System.out; - -import java.util.ArrayList; - -public class DataTypeSpecEnumerations { - static public boolean isDataTypeName(String id) { - - if (null == UniqueEnumPrefix.findUniqueEnumMatchingPrefix( - GeneticDataTypes.class, id) - && null == UniqueEnumPrefix.findUniqueEnumWithNicknameMatchingPrefix( - GeneticDataTypes.class, id)) { - // out.format( "isDataTypeName: returning false for '%s'%n", id ); - return false; - } - // out.format( "isDataTypeName: returning true for '%s'%n", id ); - return true; - } - - static public boolean isDataTypeLevel(String id) { - if (null == UniqueEnumPrefix.findUniqueEnumMatchingPrefix( - GeneticTypeLevel.class, id) - && null == UniqueEnumPrefix - .findUniqueEnumWithNicknameMatchingPrefix( - GeneticTypeLevel.class, id)) { - //out.format( "isDataTypeLevel: returning false for '%s'%n", id ); - ArrayList levels = new ArrayList(); - for( GeneticTypeLevel aGeneticTypeLevel: GeneticTypeLevel.values()){ - levels.add(aGeneticTypeLevel.toString()); - for( String s : aGeneticTypeLevel.getNicknames()){ - levels.add( s ); - } - } - out.format( "'%s' is not a unique data level; valid levels are %s.%n", id, levels ); - return false; - } - // out.format( "isDataTypeLevel: returning true for '%s'%n", id ); - return true; - } - - public enum DataTypeCategory { - Continuous, Discrete - }; -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DataTypeSpecInequality.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DataTypeSpecInequality.java deleted file mode 100644 index dbf59ace840..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DataTypeSpecInequality.java +++ /dev/null @@ -1,88 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import org.mskcc.cbio.portal.util.EqualsUtil; -import org.mskcc.cbio.portal.util.HashCodeUtil; - -/** - * Generically record and access a DataTypeSpec inequality, that is a spec that says - * a value must be greater or less (or >= or <=) a threshold. - * Subclassed by concrete classes DiscreteDataTypeSpec and ContinuousDataTypeSpec. - * - * @author Arthur Goldberg - */ -public abstract class DataTypeSpecInequality extends DataTypeSpec{ - - /** - * record the range over which a value satisfies the specification. - * @author Arthur Goldberg - */ - ComparisonOp comparisonOp; - Object threshold; // A level within theGeneticDataType; - - public ComparisonOp getComparisonOp() { - return comparisonOp; - } - - public Object getThreshold() { - return threshold; - } - - @Override - public String toString() { - return theGeneticDataType.toString() + comparisonOp.getToken() + - threshold.toString(); - } - - @Override - public boolean equals( Object otherDataTypeSpec) { - if( this == otherDataTypeSpec ) return true; - if ( !(otherDataTypeSpec instanceof DataTypeSpecInequality) ) return false; - DataTypeSpecInequality that = (DataTypeSpecInequality) otherDataTypeSpec; - return - EqualsUtil.areEqual(this.theGeneticDataType, that.theGeneticDataType) && - EqualsUtil.areEqual(this.threshold, that.threshold) && - EqualsUtil.areEqual(this.comparisonOp, that.comparisonOp); - } - - // TODO: TEST - @Override - public int hashCode( ) { - int result = HashCodeUtil.SEED; - result = HashCodeUtil.hash( result, theGeneticDataType ); - result = HashCodeUtil.hash( result, threshold ); - result = HashCodeUtil.hash( result, comparisonOp ); - return result; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DiscreteDataTypeSetSpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DiscreteDataTypeSetSpec.java deleted file mode 100644 index 28d9f7b07a3..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DiscreteDataTypeSetSpec.java +++ /dev/null @@ -1,383 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.EnumSet; -import java.util.HashSet; -import java.util.Set; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DataTypeSpecEnumerations.DataTypeCategory; -import org.mskcc.cbio.portal.util.EqualsUtil; -import org.mskcc.cbio.portal.util.HashCodeUtil; - -/** - * Represent a discrete dataTypeSpec, like CNA or mutation. - * The specified values are given by an EnumSet, so any subset can be specified. - * - * TODO: replace DiscreteDataTypeSpec with this - * @author Arthur Goldberg - */ -public class DiscreteDataTypeSetSpec extends DataTypeSpec{ - - private final Set specifiedValues; - private final Set mutationPatterns; - - public DiscreteDataTypeSetSpec(GeneticDataTypes theGeneticDataType){ - this.theGeneticDataType = theGeneticDataType; - specifiedValues = EnumSet.noneOf(GeneticTypeLevel.class); - mutationPatterns = new HashSet(); - } - - /** - * create a DiscreteDataTypeSetSpec from a datatype name and a data type level - * @param theGeneticDataType - * @param validValues1 - */ - public DiscreteDataTypeSetSpec(GeneticDataTypes theGeneticDataType, - GeneticTypeLevel validValues1) throws IllegalArgumentException{ - // verify that validValues1 is a level for theGeneticDataType - if( validValues1.getTheGeneticDataType().equals(theGeneticDataType)){ - this.theGeneticDataType = theGeneticDataType; - this.specifiedValues = EnumSet.of(validValues1); - mutationPatterns = new HashSet(); - }else{ - throw new IllegalArgumentException( validValues1 + " is not a level for " + theGeneticDataType ); - } - } - - /** - * create a DiscreteDataTypeSetSpec from a datatype name and a numerical level code. - * - * @param theGeneticDataTypeName - * @param levelCode - */ - public DiscreteDataTypeSetSpec(String theGeneticDataTypeName, - int levelCode) { - //System.out.format( "DiscreteDataTypeSetSpec: constructed with '%s' and '%d'%n", theGeneticDataTypeName, levelCode ); - - theGeneticDataType = DiscreteDataTypeSpec.findDataType( theGeneticDataTypeName ); - // convertCode throws an exception if levelCode is not a level for theGeneticDataTypeName - specifiedValues = EnumSet.of( GeneticTypeLevel.convertCode( this.theGeneticDataType, levelCode )); - mutationPatterns = new HashSet(); - } - - /** - * create a DiscreteDataTypeSetSpec from a datatype name and a set of levels. - * - * @param theGeneticDataType - * @param validValues - */ - public DiscreteDataTypeSetSpec(GeneticDataTypes theGeneticDataType, - GeneticTypeLevel... validValues) { - this.theGeneticDataType = theGeneticDataType; - this.specifiedValues = EnumSet.noneOf(GeneticTypeLevel.class); - // TODO: perhaps make it an error to provide no validValues - for( GeneticTypeLevel c : validValues){ - this.specifiedValues.add(c); - } - mutationPatterns = new HashSet(); - } - - /** - * - * @param theGeneticDataTypeNameString - * @param levelCodeString - * @return - */ - public static DiscreteDataTypeSetSpec discreteDataTypeSetSpecGeneratorByLevelCode(String theGeneticDataTypeNameString, - String levelCodeString ){ - - try { - return new DiscreteDataTypeSetSpec( theGeneticDataTypeNameString, Integer.parseInt(levelCodeString) ); - } catch (NumberFormatException e) { - return null; - } catch (IllegalArgumentException e) { - return null; - } - - } - - /** - * - * @param levelName - * @return - */ - public static DiscreteDataTypeSetSpec discreteDataTypeSetSpecGeneratorByLevelName(String levelName){ - if (levelName==null) { - return null; - } - - GeneticTypeLevel theGeneticTypeLevel = GeneticTypeLevel.findDataTypeLevel(levelName); - - // verify that levelName maps to a level within a discrete datatype - if( theGeneticTypeLevel!=null - && theGeneticTypeLevel.getTheGeneticDataType().getTheDataTypeCategory() - .equals(DataTypeCategory.Discrete) ){ - return new DiscreteDataTypeSetSpec(theGeneticTypeLevel.getTheGeneticDataType(), - theGeneticTypeLevel); - }else{ - return null; - } - } - - /** - * - * @param specificMutation - * @return - */ - public static DiscreteDataTypeSetSpec specificMutationDataTypeSetSpecGenerator(String specificMutation){ - DiscreteDataTypeSetSpec ret = new DiscreteDataTypeSetSpec(GeneticDataTypes.Mutation); - ret.addLevel(specificMutation); - return ret; - } - - public static GeneticDataTypes findDataType( String name ) - throws IllegalArgumentException{ - return DataTypeSpec.genericFindDataType( name, DataTypeCategory.Discrete ); - } - - /** - * Alternative style for a copy constructor, using a static newInstance - * method. - */ - public static DiscreteDataTypeSetSpec newInstance( DiscreteDataTypeSetSpec aDiscreteDataTypeSetSpec ) { - if( null == aDiscreteDataTypeSetSpec ){ - return null; - } - DiscreteDataTypeSetSpec theNewDiscreteDataTypeSetSpec = - new DiscreteDataTypeSetSpec( aDiscreteDataTypeSetSpec.getTheGeneticDataType() ); - theNewDiscreteDataTypeSetSpec.combine(aDiscreteDataTypeSetSpec); - return theNewDiscreteDataTypeSetSpec; - } - - /** - * indicate whether value satisfies this DiscreteDataTypeSetSpec - * @param value - * @return true if value satisfies this DiscreteDataTypeSetSpec - */ - public boolean satisfy( Object value ) { - if (value instanceof GeneticTypeLevel) { - return this.specifiedValues.contains((GeneticTypeLevel)value); - } else if (theGeneticDataType == GeneticDataTypes.Mutation) { - if (value instanceof String) { - return satisfySpecificMutation((String)value); - } - } - return false; - } - - private static Pattern SPECIFIC_POSITION_MUTATION_PATTERN = Pattern.compile("[^0-9]*([0-9]+)"); - private static Pattern SPECIFIC_RANGE_DELETION_PATTERN = Pattern.compile("[^0-9]*([0-9]+)[^0-9]+([0-9]+)[^0-9]*"); - private boolean satisfySpecificMutation( String specificMutations ) { - String specificMutationsUpper = specificMutations.toUpperCase(); - for (String specificMutationUpper : specificMutationsUpper.split(",")) { - if (specificMutationUpper.startsWith("P.")) { - specificMutationUpper = specificMutationUpper.substring(2); - } - - specificMutationUpper = specificMutationUpper.replaceAll(" ","_"); - - if (mutationPatterns.contains(specificMutationUpper)) { - // complete match, including specific mutation to an amino acid such V600E, D200fs - return true; - } - - for ( String mutationPattern : mutationPatterns ) { - Matcher spm = SPECIFIC_POSITION_MUTATION_PATTERN.matcher(mutationPattern); - if (spm.matches()) {// all mutations for a specific amino acid - String strPos = spm.group(1); - if (specificMutationUpper.matches(".*[^0-9]+"+strPos+"[^0-9\\+\\-]*") - || specificMutationUpper.matches(strPos+"[^0-9]+.*")) { - // To deal with cases that the query position appears in the mutation string - // e.g., S634*, S479_splice, *691S, 278in_frame_del, 1002_1003_del, - // YQQQQQ263in_frame_del*, A1060fs, A277_splice - // Note: "S30" will not match "S300" - // Note: "S30" will not match "e30+1" - return true; - } - - Matcher delm = SPECIFIC_RANGE_DELETION_PATTERN.matcher(specificMutationUpper); - if (delm.matches()) { - // To deal with deletions - // e.g. query 1020 matches 1018_1023DNPPVL>V - int start = Integer.parseInt(delm.group(1)); - int end = Integer.parseInt(delm.group(2)); - int pos = Integer.parseInt(strPos); - if (start getSpecifiedValues() { - return specifiedValues; - } - - public Set getMutationPatterns() { - return mutationPatterns; - } - - @Override public final Object clone() throws CloneNotSupportedException { - throw new CloneNotSupportedException(); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DiscreteDataTypeSpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DiscreteDataTypeSpec.java deleted file mode 100644 index e7a8f4e8044..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/DiscreteDataTypeSpec.java +++ /dev/null @@ -1,162 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; -import static java.lang.System.out; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DataTypeSpecEnumerations.DataTypeCategory; - -/** - * Generically record and access an inequality of one of the Discrete DataTypeSpecs, CNA and Mutation. - * - * @author Arthur Goldberg - */ -// TODO: since I need DiscreteDataTypeSetSpec, could reimplement this class with that -public class DiscreteDataTypeSpec extends DataTypeSpecInequality{ - - // TODO: constructor that takes text and use it in grammar to simplify that code - public DiscreteDataTypeSpec( - GeneticDataTypes theGeneticDataType, - ComparisonOp comparisonOp, Object threshold) throws IllegalArgumentException{ - this.theGeneticDataType = theGeneticDataType; - this.comparisonOp = comparisonOp; - - this.threshold = threshold; - // verify that threshold is a level within theGeneticDataType - if( theGeneticDataType == GeneticDataTypes.CopyNumberAlteration - && !theGeneticDataType.equals( ((GeneticTypeLevel) threshold).getTheGeneticDataType() )) { - // assumes that levels are organized in increasing order - throw new IllegalArgumentException( "threshold is not a level within theGeneticDataType" ); - } - } - - /** - * generate a DiscreteDataTypeSpec from the strings found by discreteDataType in the completeOncoPrintSpecAST - * @param theGeneticDataTypeString - * @param comparisonOpString - * @param levelString - * @return the DiscreteDataTypeSpec, or null if any inputs were incorrect - */ - public static DiscreteDataTypeSpec discreteDataTypeSpecGenerator( String theGeneticDataTypeString, - String comparisonOpString, String levelString ){ - try { - GeneticDataTypes theGeneticDataType = DiscreteDataTypeSpec.findDataType( theGeneticDataTypeString ); - ComparisonOp theComparisonOp = ComparisonOp.convertCode( comparisonOpString ); - Object threshold; - if (theGeneticDataType == GeneticDataTypes.CopyNumberAlteration) { - threshold = GeneticTypeLevel.findDataTypeLevel(levelString); - } else { - threshold = levelString; - } - return new DiscreteDataTypeSpec( theGeneticDataType, theComparisonOp, threshold ); - } catch (IllegalArgumentException e) { - //out.println( e.getMessage() ); - return null; - } - } - - public static GeneticDataTypes findDataType( String name ) - throws IllegalArgumentException{ - return DataTypeSpecInequality.genericFindDataType( name, DataTypeCategory.Discrete ); - } - - /** - * indicate whether value satisfies this DataTypeSpec - * - * @param value - * @return true if value satisfies this DataTypeSpec - */ - public boolean satisfy( Object value) { - if (value instanceof GeneticTypeLevel) { - if (!(threshold instanceof GeneticTypeLevel)) { - return false; - } - GeneticTypeLevel gtl = (GeneticTypeLevel)value; - if( !gtl.getTheGeneticDataType().equals(theGeneticDataType) ){ - return false; - } - GeneticTypeLevel theCNAthreshold = (GeneticTypeLevel)this.threshold; - switch (this.comparisonOp) { - case GreaterEqual: - return( 0 <= gtl.compareTo(theCNAthreshold) ); - case Greater: - return( 0 < gtl.compareTo(theCNAthreshold) ); - case LessEqual: - return( gtl.compareTo(theCNAthreshold) <= 0 ); - case Less: - return( gtl.compareTo(theCNAthreshold) < 0 ); - case Equal: - return ( gtl.compareTo(theCNAthreshold) == 0 ); - } - } - else if (value instanceof String) { - if (!(threshold instanceof String)) { - return false; - } - return comparisonOp == ComparisonOp.Equal && value.equals(threshold.toString()); - } - // keep compiler happy - (new UnreachableCodeException( "")).printStackTrace(); - return false; - } - - /** - * convert this DiscreteDataTypeSpec into a DiscreteDataTypeSetSpec - * @return a DiscreteDataTypeSetSpec that satisfies the same levels as the DiscreteDataTypeSpec - */ - // TODO: test - public DiscreteDataTypeSetSpec convertToDiscreteDataTypeSetSpec( ){ - if (threshold instanceof GeneticTypeLevel) { - DiscreteDataTypeSetSpec aDiscreteDataTypeSetSpec = new DiscreteDataTypeSetSpec( this.theGeneticDataType); - for( GeneticTypeLevel aGeneticTypeLevel : GeneticTypeLevel.values()){ - if( aGeneticTypeLevel.getTheGeneticDataType().getTheDataTypeCategory().equals(DataTypeCategory.Discrete) && - this.satisfy(aGeneticTypeLevel) ){ - aDiscreteDataTypeSetSpec.addLevel(aGeneticTypeLevel); - } - } - return aDiscreteDataTypeSetSpec; - } else if (theGeneticDataType == GeneticDataTypes.Mutation && threshold instanceof String) { - return DiscreteDataTypeSetSpec.specificMutationDataTypeSetSpecGenerator((String)threshold); - } - - return null; - } - - // TODO: unit test - @Override - public boolean equals( Object aThat ) { - if ( this == aThat ) return true; - if ( !(aThat instanceof DiscreteDataTypeSpec) ) return false; - return - super.equals(aThat); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/Gene.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/Gene.java deleted file mode 100644 index 59c8d5c1f11..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/Gene.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -public class Gene { - - /** - * indicates whether name is a valid gene name - * - * @param name - * @return - */ - static public boolean valid(String name) { - // TODO: remove this class when ASTwalker stops calling it - return true; - } - -} - diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneSet.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneSet.java deleted file mode 100644 index ca02a095807..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneSet.java +++ /dev/null @@ -1,194 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.ArrayList; - -import org.mskcc.cbio.portal.util.EqualsUtil; - -/** - * Stores either a single gene with an OncoPrint spec, or a set of genes in - * order. - * - * @author Arthur Goldberg - */ -public class GeneSet { - private String name; - private boolean userGeneList; - private ArrayList Genes; - - public GeneSet() { - Genes = new ArrayList(); - } - - public GeneSet(String name) { - this.name = name; - Genes = new ArrayList(); - } - - /** - * If this set contains just one gene, return it. - * @return - */ - public GeneWithSpec getGene() { - //System.out.println( "getGene Genes.size(): " + Genes.size()); - - if (Genes.size() == 1) { - return Genes.get(0); - } else { - return null; - } - } - - public void addGeneWithSpec(GeneWithSpec aGeneWithSpec) { - if( null != aGeneWithSpec){ - Genes.add(aGeneWithSpec); - } - } - - /** - * return the names of genes in this GeneSet; may contain duplicates - * @return - */ - public ArrayList listOfGenes(){ - ArrayList allGenes = new ArrayList(); - for( GeneWithSpec gene: Genes ){ - if( null != gene.name ){ - allGenes.add( gene.name.toUpperCase()); - } - } - return allGenes; - } - - /** - * return the GeneWithSpec for the first gene with the given name, if any - * TODO: as the same gene could appear multiple times in a spec this should return a set of GeneWithSpec; for now return the 1st - * @param geneName - * @return first GeneWithSpec with a gene with that name, else if none, null - */ - public GeneWithSpec getGeneWithSpec( String geneName ){ - for( GeneWithSpec gene: Genes ){ - if( null != gene.name ){ - if( gene.name.equalsIgnoreCase( geneName ) ){ - return gene; - } - } - } - return null; - } - - @Override - public String toString(){ - StringBuffer sb = new StringBuffer(); - if (Genes.size() == 1) { - return( this.getGene().toString() ); - - } else { - if( this.getName() != null ){ - // sb.append( Genes.size() ).append(" genes in '").append(this.getName()).append("':\n"); - sb.append("\"").append(this.getName()).append("\"").append( userGeneListToString() ); - }else{ - if( this.userGeneList ){ - sb.append( userGeneListToString() ); - } else{ - // sb.append( Genes.size() ).append(" genes:").append("\n"); - for( GeneWithSpec gene: Genes ){ - sb.append(gene.toString()); - } - } - } - } - return sb.toString(); - } - - public void setUserGeneList(String name ) { - - this.userGeneList = true; - if( null != name ){ - this.setName(name); - } - //System.out.println( "setUserGeneList: " + this.toString()); - } - - private String userGeneListToString(){ - StringBuffer sb = new StringBuffer(); - sb.append("{\n"); - for( GeneWithSpec gene: Genes ){ - sb.append(gene.toString()); - } - sb.append("\n}\n"); - return sb.toString(); - } - - public void setName(String name) { - this.name = stripQuotes( name ); - this.userGeneList = true; - } - - private String stripQuotes( String s){ - return s.replaceAll( "\"", ""); - } - - public ArrayList getGenes() { - return Genes; - } - - public String getName() { - return name; - } - - public boolean isUserGeneList() { - return userGeneList; - } - - public void setUserGeneList(boolean userGeneList) { - this.userGeneList = userGeneList; - } - - /* - * TODO: finish implementing - this.Genes.equals(that.Genes); - - @Override - public boolean equals( Object aThat ) { - if ( this == aThat ) return true; - if ( !(aThat instanceof GeneSet) ) return false; - GeneSet that = (GeneSet) aThat; - return - EqualsUtil.areEqual(this.name, that.name) && - EqualsUtil.areEqual(this.userGeneList, that.userGeneList) && - this.Genes.equals(that.Genes); - } - */ - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneWithSpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneWithSpec.java deleted file mode 100644 index cc8e08c88a1..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneWithSpec.java +++ /dev/null @@ -1,125 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import org.mskcc.cbio.portal.util.EqualsUtil; -import org.mskcc.cbio.portal.util.HashCodeUtil; - -/** - * a gene with an OncoPrint Spec - * @author Arthur Goldberg - */ -public class GeneWithSpec { - String name; - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec; - - public GeneWithSpec(String name) { - this.name = name; - } - - public GeneWithSpec(String name, - OncoPrintGeneDisplaySpec theResultFullDataTypeSpec) { - this.name = name; - this.theOncoPrintGeneDisplaySpec = theResultFullDataTypeSpec; - // System.out.println( "Creating GeneWithSpec '" + name + "' with spec :" + theResultFullDataTypeSpec.toString()); - // TODO: should clone, or make certain that theResultFullDataTypeSpec isn't changed this.theResultFullDataTypeSpec = theResultFullDataTypeSpec.clone(); - } - - /** - * generate a GeneWithSpec; use a custom spec for the gene if it's initialized (non null) in theResultFullDataTypeSpec, - * otherwise use the default from theDefaultResultFullDataTypeSpec. - * Used by the parser. - * @param name - * @param theResultFullDataTypeSpec - * @param theDefaultResultFullDataTypeSpec - * @return the new GeneWithSpec, or null if name is null or both of the ResultFullDataTypeSpecs - */ - public static GeneWithSpec geneWithSpecGenerator(String name, OncoPrintGeneDisplaySpec theResultFullDataTypeSpec, - OncoPrintGeneDisplaySpec theDefaultResultFullDataTypeSpec){ - if( null != name ){ - if( null != theResultFullDataTypeSpec ){ - return new GeneWithSpec( name, theResultFullDataTypeSpec); - }else{ - if( null != theDefaultResultFullDataTypeSpec ){ - return new GeneWithSpec( name, theDefaultResultFullDataTypeSpec); - } - } - } - return null; - } - - public String getName() { - return name; - } - - public OncoPrintGeneDisplaySpec getTheOncoPrintGeneDisplaySpec() { - return theOncoPrintGeneDisplaySpec; - } - - public void setTheResultFullDataTypeSpec( - OncoPrintGeneDisplaySpec theResultFullDataTypeSpec) { - // TODO: should clone, as above - this.theOncoPrintGeneDisplaySpec = theResultFullDataTypeSpec; - } - - @Override - public String toString(){ - StringBuffer sb = new StringBuffer(); - sb.append( this.name ); - if( null != this.theOncoPrintGeneDisplaySpec ){ - sb.append(": ").append( this.theOncoPrintGeneDisplaySpec.toString() ).append("\n"); - } - return sb.toString(); - } - - // TODO: TEST - @Override - public boolean equals( Object otherGeneWithSpec ) { - if( this == otherGeneWithSpec ) return true; - if ( !(otherGeneWithSpec instanceof GeneWithSpec ) ) return false; - GeneWithSpec that = (GeneWithSpec) otherGeneWithSpec; - return - EqualsUtil.areEqual( this.name, that.name) && - EqualsUtil.areEqual( this.theOncoPrintGeneDisplaySpec, that.theOncoPrintGeneDisplaySpec ); - } - - // TODO: TEST - @Override - public int hashCode( ) { - int result = HashCodeUtil.SEED; - result = HashCodeUtil.hash( result, this.name ); - result = HashCodeUtil.hash( result, this.theOncoPrintGeneDisplaySpec ); - return result; - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneticDataTypes.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneticDataTypes.java deleted file mode 100644 index 202a417601f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneticDataTypes.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DataTypeSpecEnumerations.DataTypeCategory; - -public enum GeneticDataTypes { - CopyNumberAlteration(DataTypeCategory.Discrete, "CNA"), - Expression(DataTypeCategory.Continuous, "MRNA microRNA"), - Mutation( DataTypeCategory.Discrete, ""), - Methylation(DataTypeCategory.Continuous, ""), - RPPA(DataTypeCategory.Continuous, "RPPA, prot"); - - private final DataTypeCategory theDataTypeCategory; - private String[] nicknames = null; - - /** - * @param theDataTypeCategory - * @param nicknames nicknames are alternative names that can be used to lookup GeneticDataTypes - */ - private GeneticDataTypes(DataTypeCategory theDataTypeCategory, String nicknames) { - this.theDataTypeCategory = theDataTypeCategory; - if( !nicknames.equals("")){ - this.nicknames = nicknames.split(" "); - }else{ - this.nicknames = new String[0]; - } - } - - public DataTypeCategory getTheDataTypeCategory() { - return theDataTypeCategory; - } - - public String[] getNicknames() { - return nicknames; - } - -}; \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneticTypeLevel.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneticTypeLevel.java deleted file mode 100644 index 816510258b0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/GeneticTypeLevel.java +++ /dev/null @@ -1,135 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -/** - * the levels within discrete GeneticDataTypes. - * Maps between GeneticDataTypes and the levels. - * @author Arthur Goldberg - */ -public enum GeneticTypeLevel{ - // this order must be maintained for DiscreteDataTypeSpec.satisfy - HomozygouslyDeleted (-2, GeneticDataTypes.CopyNumberAlteration, "Homdel"), - HemizygouslyDeleted (-1, GeneticDataTypes.CopyNumberAlteration, "Hetloss"), - Diploid (0, GeneticDataTypes.CopyNumberAlteration, "" ), - Gained (1, GeneticDataTypes.CopyNumberAlteration, "" ), - Amplified (2, GeneticDataTypes.CopyNumberAlteration, "" ), - Normal (0, GeneticDataTypes.Mutation, "" ), // TODO: IMPORTANT: verify that 0 & 1 are the right codes for mutation! - Mutated (1, GeneticDataTypes.Mutation, "" ); - - private final int code; - private final GeneticDataTypes theGeneticDataType; - private final String[] nicknames; - - private GeneticTypeLevel( int cNAcode, GeneticDataTypes theGeneticDataType, String nicknames ) { - this.code = cNAcode; - this.theGeneticDataType = theGeneticDataType; - if( !nicknames.equals("")){ - this.nicknames = nicknames.split(" "); - }else{ - this.nicknames = new String[0]; - } - } - - public String[] getNicknames() { - return nicknames; - } - - public GeneticDataTypes getTheGeneticDataType() { - return theGeneticDataType; - } - - /** - * map from a GeneticDataTypes and an integer code to a value for a discrete datatype - * - * @param code - * @return a GeneticTypeLevel enum for the code - * @throws IllegalArgumentException when the code isn't a valid code for a value - */ - public static GeneticTypeLevel convertCode( GeneticDataTypes aGeneticDataType, int code ) - throws IllegalArgumentException{ - for( GeneticTypeLevel v: GeneticTypeLevel.values() ){ - if( aGeneticDataType == v.theGeneticDataType && v.code == code ){ - return v; - } - } - throw new IllegalArgumentException( code + " is invalid code for levels in " + aGeneticDataType ); - } - - /** - * map from an integer CNA code to a GeneticTypeLevel for a CNA code. - * @param code - * @return a GeneticTypeLevel for a CNA code - * @throws IllegalArgumentException when the code isn't a valid code for a CNA - */ - public static GeneticTypeLevel convertCNAcode( int code ) throws IllegalArgumentException{ - return convertCode( GeneticDataTypes.CopyNumberAlteration, code ); - } - - /** - * map from an integer Mutation code to a GeneticTypeLevel for a Mutation code. - * @param code - * @return a GeneticTypeLevel for a Mutation code - * @throws IllegalArgumentException when the code isn't a valid code for a Mutation - */ - public static GeneticTypeLevel convertMutationcode( int code ) throws IllegalArgumentException{ - return convertCode( GeneticDataTypes.Mutation, code ); - } - - /** - * map from String name for a GeneticTypeLevel to a GeneticTypeLevel. Matches on any unique, case - * insensitive prefix or nickname. Cool, huh? - * - * @param name - * a unique prefix or nickname of a GeneticTypeLevel - * @return a GeneticTypeLevel enum for the name, if it is unique, null otherwise - * @throws IllegalArgumentException - */ - public static GeneticTypeLevel findDataTypeLevel(String name) - throws IllegalArgumentException { - - GeneticTypeLevel aGeneticTypeLevel = (GeneticTypeLevel) UniqueEnumPrefix - .findUniqueEnumMatchingPrefix(GeneticTypeLevel.class, name); - if (aGeneticTypeLevel == null) { - aGeneticTypeLevel = (GeneticTypeLevel) UniqueEnumPrefix - .findUniqueEnumWithNicknameMatchingPrefix(GeneticTypeLevel.class, - name); - } -// if (aGeneticTypeLevel == null) { -// throw new IllegalArgumentException( "Not a value for a GeneticTypeLevel: " + name ); -// }else{ - return aGeneticTypeLevel; -// } - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ListOfOncoPrintLangException.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ListOfOncoPrintLangException.java deleted file mode 100644 index b1458743a50..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ListOfOncoPrintLangException.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -// TODO: delete -import java.util.ArrayList; - -/* - * this exception is thrown by a method that's declared to throw OncoPrintLangException (org.antlr.runtime.OncoPrintLangException extends java.lang.Exception) - */ -public class ListOfOncoPrintLangException extends RuntimeException { - - private ArrayList theOncoPrintLangExceptions; - - public ListOfOncoPrintLangException(ArrayList theOncoPrintLangExceptions) { - this.theOncoPrintLangExceptions = theOncoPrintLangExceptions; - } - - public ArrayList getTheOncoPrintLangExceptions() { - return theOncoPrintLangExceptions; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintGeneDisplaySpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintGeneDisplaySpec.java deleted file mode 100644 index 78b2de4b929..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintGeneDisplaySpec.java +++ /dev/null @@ -1,292 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.EnumMap; - -import org.mskcc.cbio.portal.util.Direction; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DataTypeSpecEnumerations.DataTypeCategory; - -/** - * Stores and implements the filter for a gene's data. - * Has a separate filter (ResultDataTypeSpec) for each genetic data type. - * satisfy() takes a data type, and optional data value, and indicates whether that value satisfies - * this filter. - * When used by the parser, generated by simplifying a FullDataTypeSpec. - * - * @author Arthur Goldberg - */ -public class OncoPrintGeneDisplaySpec -{ - - // may contain a ResultDataTypeSpec for each GeneticDataTypes.values() - private EnumMap finalDataTypeSpecs; - - /** - * construct a ResultFullDataTypeSpec that selects nothing - */ - public OncoPrintGeneDisplaySpec() { - finalDataTypeSpecs = new EnumMap(GeneticDataTypes.class); - } - - /** - * set to default spec; - */ - public void setDefault( double zScoreThreshold, double rppaScoreThrehold ){ - this.setDefault( GeneticDataTypes.CopyNumberAlteration ); - this.setDefault( GeneticDataTypes.Mutation ); - this.setDefaultExpression( zScoreThreshold, GeneticDataTypes.Expression ); - this.setDefaultExpression( rppaScoreThrehold, GeneticDataTypes.RPPA ); - } - - /** - * Set default levels for CopyNumberAlteration (AMP and HomDel) and Mutation (Mutated) - * @param theGeneticDataType - */ - public void setDefault( GeneticDataTypes theGeneticDataType ){ - ResultDataTypeSpec theResultDataTypeSpec; - - switch( theGeneticDataType ){ - - case CopyNumberAlteration: - theResultDataTypeSpec = new ResultDataTypeSpec( GeneticDataTypes.CopyNumberAlteration ); - theResultDataTypeSpec.setTheDiscreteDataTypeSetSpec( - new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HomozygouslyDeleted, GeneticTypeLevel.Amplified ) ); - finalDataTypeSpecs.put( GeneticDataTypes.CopyNumberAlteration, theResultDataTypeSpec ); - break; - - case Expression: - // TODO: s/b exception - break; - - case Methylation: - // TODO: s/b exception - break; - - case Mutation: - theResultDataTypeSpec = new ResultDataTypeSpec( GeneticDataTypes.Mutation ); - theResultDataTypeSpec.setTheDiscreteDataTypeSetSpec( - new DiscreteDataTypeSetSpec( GeneticDataTypes.Mutation, - GeneticTypeLevel.Mutated ) ); - finalDataTypeSpecs.put( GeneticDataTypes.Mutation, theResultDataTypeSpec ); - break; - - } - } - - /** - * set the default Expression/RPPA thresholds, <= and >= scoreThreshold - * @param scoreThreshold - */ - public void setDefaultExpression( double scoreThreshold, GeneticDataTypes theGeneticDataType ){ - ResultDataTypeSpec theResultDataTypeSpec = new ResultDataTypeSpec( theGeneticDataType ); - - theResultDataTypeSpec.setCombinedGreaterContinuousDataTypeSpec( new ContinuousDataTypeSpec( theGeneticDataType, - ComparisonOp.convertCode(">="), (float)scoreThreshold ) ); - - theResultDataTypeSpec.setCombinedLesserContinuousDataTypeSpec( new ContinuousDataTypeSpec( theGeneticDataType, - ComparisonOp.convertCode("<="), (float) -scoreThreshold ) ); - - finalDataTypeSpecs.put( theGeneticDataType, theResultDataTypeSpec ); - } - - /** - * get the ResultDataTypeSpec for theGeneticDataType, creating one if necessary. - * @param theGeneticDataType - * - * @return - */ - public ResultDataTypeSpec createResultDataTypeSpec( GeneticDataTypes theGeneticDataType ){ - ResultDataTypeSpec theResultDataTypeSpec = finalDataTypeSpecs.get(theGeneticDataType); - if( null != theResultDataTypeSpec){ - return theResultDataTypeSpec; - } - theResultDataTypeSpec = new ResultDataTypeSpec( theGeneticDataType ); - finalDataTypeSpecs.put(theGeneticDataType, theResultDataTypeSpec ); - return theResultDataTypeSpec; - } - - public ResultDataTypeSpec getResultDataTypeSpec( GeneticDataTypes theGeneticDataType ){ - return finalDataTypeSpecs.get(theGeneticDataType); - } - - public void setResultDataTypeSpec( GeneticDataTypes theGeneticDataType, ResultDataTypeSpec theResultDataTypeSpec ){ - finalDataTypeSpecs.put(theGeneticDataType, theResultDataTypeSpec ); - } - - /** - * satisfy for all data types. - * - * @param theGeneticDataType - * @return true if the data type defines an alteration for any level - */ - public boolean satisfy( GeneticDataTypes theGeneticDataType ){ - ResultDataTypeSpec theResultDataTypeSpec = finalDataTypeSpecs.get(theGeneticDataType); - return (theResultDataTypeSpec != null ); - } - - /** - * satisfy for continuous data types. - * - * @param theGeneticDataType - * @return true if the value is in one of the inequalities passed by the spec - */ - public boolean satisfy( GeneticDataTypes theGeneticDataType, float value ) - throws IllegalArgumentException{ - if( theGeneticDataType.getTheDataTypeCategory().equals(DataTypeCategory.Discrete)){ - throw new IllegalArgumentException("satisfy for continuous data types only takes continuous GeneticDataTypes"); - } - ResultDataTypeSpec theResultDataTypeSpec = finalDataTypeSpecs.get(theGeneticDataType); - if( null == theResultDataTypeSpec ){ - return false; - } - if( theResultDataTypeSpec.acceptAll ) { - return true; - } - if( theResultDataTypeSpec.combinedLesserContinuousDataTypeSpec != null && - finalDataTypeSpecs.get(theGeneticDataType).combinedLesserContinuousDataTypeSpec.satisfy(value) ){ - return true; - } - if( theResultDataTypeSpec.combinedGreaterContinuousDataTypeSpec != null && - finalDataTypeSpecs.get(theGeneticDataType).combinedGreaterContinuousDataTypeSpec.satisfy(value) ){ - return true; - } - return false; - } - - /** - * Another satisfy for continuous data types. - * Indicates whether a particular value is higher or lower (as specified by theDirection) than the upper - * or lower threshold. - *

- * @param theGeneticDataType - * @return true if the value is satisfied by the specified inequalities in the spec - */ - public boolean satisfy( GeneticDataTypes theGeneticDataType, float value, Direction theDirection ) - throws IllegalArgumentException{ - if( !theGeneticDataType.getTheDataTypeCategory().equals(DataTypeCategory.Continuous)){ - throw new IllegalArgumentException("satisfy for continuous data types only takes continuous GeneticDataTypes"); - } - ResultDataTypeSpec theResultDataTypeSpec = finalDataTypeSpecs.get(theGeneticDataType); - if( null == theResultDataTypeSpec ){ - return false; - } - if( theResultDataTypeSpec.acceptAll ) { - return true; - } - switch(theDirection){ - case higher: - return( theResultDataTypeSpec.combinedGreaterContinuousDataTypeSpec != null && - finalDataTypeSpecs.get(theGeneticDataType).combinedGreaterContinuousDataTypeSpec.satisfy(value) ); - case lower: - return( theResultDataTypeSpec.combinedLesserContinuousDataTypeSpec != null && - finalDataTypeSpecs.get(theGeneticDataType).combinedLesserContinuousDataTypeSpec.satisfy(value) ); - } - // unreachable code; keep compiler happy - // TODO: throw an exception - return false; - } - - /** - * satisfy for discrete data types. - * - * @param theGeneticDataType - * @param theGeneticTypeLevel - * @return indicates whether this display spec classifies the given data types' level as an alteration - * @throws IllegalArgumentException - */ - public boolean satisfy( GeneticDataTypes theGeneticDataType, Object level)//GeneticTypeLevel theGeneticTypeLevel ) - throws IllegalArgumentException { - if( !theGeneticDataType.getTheDataTypeCategory().equals(DataTypeCategory.Discrete)){ - throw new IllegalArgumentException("satisfy for discrete data types only takes Discrete GeneticDataTypes"); - } - - ResultDataTypeSpec theResultDataTypeSpec = finalDataTypeSpecs.get(theGeneticDataType); - if( null == theResultDataTypeSpec ){ - return false; - } - - if( theResultDataTypeSpec.acceptAll ) { - return true; - } - - if( theResultDataTypeSpec.theDiscreteDataTypeSetSpec != null && - theResultDataTypeSpec.theDiscreteDataTypeSetSpec.satisfy(level) ){ - return true; - } - - return false; - } - - /** - * Returns true if this OncoPrintGeneDisplaySpec specifies the given type and the other one does not, - * i.e., if the difference is positive. - * - * @param otherOncoPrintGeneDisplaySpec - * @param aGeneticDataType - * @return - */ - public boolean typeDifference( OncoPrintGeneDisplaySpec otherOncoPrintGeneDisplaySpec, - GeneticDataTypes aGeneticDataType ){ - - return (null != this.getResultDataTypeSpec(aGeneticDataType)) && (null == otherOncoPrintGeneDisplaySpec.getResultDataTypeSpec(aGeneticDataType)); - } - - @Override - public String toString() { - StringBuffer sb = new StringBuffer(); - for( GeneticDataTypes aGeneticDataTypes: GeneticDataTypes.values()){ - //out.format("checking %s%n", aGeneticDataTypes); - ResultDataTypeSpec theResultDataTypeSpec = this.finalDataTypeSpecs.get(aGeneticDataTypes); - if( null != theResultDataTypeSpec ){ - //out.format(" for gt %s%n", aGeneticDataTypes); - sb.append(theResultDataTypeSpec.toString()).append(" "); - } - } - return sb.append(";").toString(); - } - - /* - * TODO: fix - protected ResultFullDataTypeSpec clone(){ - ResultFullDataTypeSpec theResultFullDataTypeSpec = new ResultFullDataTypeSpec(); - theResultFullDataTypeSpec.defaultDataTypeSpec = this.defaultDataTypeSpec; - theResultFullDataTypeSpec.finalDataTypeSpecs = this.finalDataTypeSpecs.clone(); - return theResultFullDataTypeSpec; - } - */ - // TODO: COPY - // TODO: equals - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintLangException.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintLangException.java deleted file mode 100644 index 4633c35127f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintLangException.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -/** - * used to report errors in the AST walker - * @author Arthur Goldberg - */ -public class OncoPrintLangException extends RuntimeException{ - public OncoPrintLangException( String msg){ - super(msg); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintSpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintSpec.java deleted file mode 100644 index 6bed9a41d9c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintSpec.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.ArrayList; - -public class OncoPrintSpec { - - // set of these, for each data type, subject to multiple constraints - // no constraints for a dataType means show all values - // at most 2 constraints for any dataType, which must define 1 or 2 non-empty intervals - ArrayList theContinuousDataTypeSpec; - ArrayList theDiscreteDataTypeSpec; - - public OncoPrintSpec() { - theContinuousDataTypeSpec = new ArrayList(); - theDiscreteDataTypeSpec = new ArrayList(); - } - - @Override - public String toString(){ - StringBuffer sb = new StringBuffer(); - // TODO: order by DataType - for( ContinuousDataTypeSpec aContinuousDataTypeSpec : theContinuousDataTypeSpec ){ - sb.append( aContinuousDataTypeSpec.toString() ); - } - for( DiscreteDataTypeSpec aDiscreteDataTypeSpec : theDiscreteDataTypeSpec ){ - sb.append( aDiscreteDataTypeSpec.toString() ); - } - return sb.toString(); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintSpecification.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintSpecification.java deleted file mode 100644 index f51ab888d42..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/OncoPrintSpecification.java +++ /dev/null @@ -1,171 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.ArrayList; -import static java.lang.System.out; - -public class OncoPrintSpecification { - ArrayList GeneSets; - - public OncoPrintSpecification() { - GeneSets = new ArrayList(); - } - - /** - * create an OncoPrintSpecification that has the OncoPrintGeneDisplaySpec default filter for a set of genes. - * a convenience constructor. - * @param genes - */ - public OncoPrintSpecification(String[] genes) { - OncoPrintGeneDisplaySpec aDefaultOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - aDefaultOncoPrintGeneDisplaySpec.setDefault( 1.0, 1.0 ); - constructOncoPrintSpecification( genes, aDefaultOncoPrintGeneDisplaySpec ); - } - - /** - * create an OncoPrintSpecification that has the given OncoPrintGeneDisplaySpec filter on all genes in an array. - * @param genes - * @param theOncoPrintGeneDisplaySpec - */ - public OncoPrintSpecification(String[] genes, OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec ) { - constructOncoPrintSpecification( genes, theOncoPrintGeneDisplaySpec ); - } - - private void constructOncoPrintSpecification(String[] genes, OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec ) { - this.GeneSets = new ArrayList(); - GeneSet aGeneSet = new GeneSet( ); - for( String g : genes){ - aGeneSet.addGeneWithSpec( new GeneWithSpec( g, theOncoPrintGeneDisplaySpec ) ); - } - this.add(aGeneSet); - } - - public ArrayList getGeneSets() { - return GeneSets; - } - - public void add( GeneSet aGeneSet ){ - this.GeneSets.add(aGeneSet); - } - - /** - * return the names of genes in this spec; may contain duplicates - * - * @return - */ - public ArrayList listOfGenes() { - ArrayList allGenes = new ArrayList(); - for (GeneSet aGeneSet : this.GeneSets) { - allGenes.addAll(aGeneSet.listOfGenes()); - } - return allGenes; - } - - public boolean containsGene(String geneName) { - return this.listOfGenes().contains(geneName); - } - - /** - * return the GeneWithSpec for the first gene with the given name, if any - * TODO: as the same gene could appear multiple times in a spec this should return a set of GeneWithSpec; for now return the 1st - * @param geneName - * @return - */ - public GeneWithSpec getGeneWithSpec(String geneName) { - for (GeneSet aGeneSet : this.GeneSets) { - GeneWithSpec aGeneWithSpec = aGeneSet.getGeneWithSpec(geneName); - if (null != aGeneWithSpec) { - return aGeneWithSpec; - } - } - return null; - } - - /** - * Get the union of all possible alterations. - * This is used to determine legends for figures (like the OncoPrint) - * that are configured by an OncoPrintSpecification, and overall errors in the OncoPrintSpecification. - *

- * E.g., if this OncoPrintSpecification describes two genes, and one gene shows AMP and Mutations, and the other AMP and under-expression below -2, - * then this will return an OncoPrintGeneDisplaySpec that would show AMP, Mutations, and under-expression below -2. - * The point is that a legend shouldn't list an alteration that cannot be presented. - *

- * @return the union of all possible alterations - */ - // TODO: HIGH: UNIT TEST in OncoSpec - public OncoPrintGeneDisplaySpec getUnionOfPossibleLevels() { - - ParsedFullDataTypeSpec aParsedFullDataTypeSpec = new ParsedFullDataTypeSpec(); - - // use cleanUpInput(), the 'unioning' code that cleans up the input from the parser - // for all gene sets, for all genes, for all genetic data types, get discrete or continuous type specs - for( GeneSet aGeneSet: this.GeneSets){ - for( GeneWithSpec aGeneWithSpec: aGeneSet.getGenes()){ - for( GeneticDataTypes theGeneticDataType : GeneticDataTypes.values()){ - - ResultDataTypeSpec theResultDataTypeSpec = - aGeneWithSpec.theOncoPrintGeneDisplaySpec.getResultDataTypeSpec(theGeneticDataType); - if( null != theResultDataTypeSpec ){ - ResultDataTypeSpec copyOfResultDataTypeSpec = ResultDataTypeSpec.newInstance( theResultDataTypeSpec ); - if( copyOfResultDataTypeSpec.isAcceptAll() ){ - aParsedFullDataTypeSpec.addSpec( new ConcreteDataTypeSpec( theGeneticDataType ) ); - }else{ - aParsedFullDataTypeSpec.addSpec( copyOfResultDataTypeSpec.getTheDiscreteDataTypeSetSpec() ); - aParsedFullDataTypeSpec.addSpec( copyOfResultDataTypeSpec.getCombinedLesserContinuousDataTypeSpec() ); - aParsedFullDataTypeSpec.addSpec( copyOfResultDataTypeSpec.getCombinedGreaterContinuousDataTypeSpec() ); - } - } - } - } - } - - OncoPrintGeneDisplaySpec tempOncoPrintGeneDisplaySpec = aParsedFullDataTypeSpec.cleanUpInput(); - return tempOncoPrintGeneDisplaySpec; - } - - @Override - public String toString(){ - StringBuffer sb = new StringBuffer(); - for( GeneSet aGeneSet: this.GeneSets ) { - sb.append(aGeneSet.toString() + "\n"); - } - return sb.toString(); - } - // TODO: COPY - // TODO: equals - @Override public final Object clone() throws CloneNotSupportedException { - throw new CloneNotSupportedException(); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ParsedFullDataTypeSpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ParsedFullDataTypeSpec.java deleted file mode 100644 index ee70ef09d3e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ParsedFullDataTypeSpec.java +++ /dev/null @@ -1,103 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.ArrayList; -import java.util.EnumMap; - -/** - * Holds a raw full data type spec, as produced by the parser production - * fullDataTypeSpec. creates the permanent - * - * @author Arthur Goldberg - * - */ -public class ParsedFullDataTypeSpec { - - private ArrayList theDataTypeSpecs; // the parser loads all - // dataTypeSpecs in here - - public ParsedFullDataTypeSpec() { - this.theDataTypeSpecs = new ArrayList(); - } - - public void addSpec(DataTypeSpec aDataTypeSpec) { - if( aDataTypeSpec != null ){ - this.theDataTypeSpecs.add(aDataTypeSpec); - } - } - - /** - * clean up from parse. - * - * I. Organize: collect DataTypeSpecs for each data type; then simplify - */ - public OncoPrintGeneDisplaySpec cleanUpInput() { - - EnumMap organizedDataTypeSpecs = - new EnumMap( - GeneticDataTypes.class); - - for (GeneticDataTypes aGeneticDataType : GeneticDataTypes.values()) { - organizedDataTypeSpecs.put(aGeneticDataType, new TempFullDataTypeSpec()); - } - - // copy all the DataTypeSpecs into the TempFullDataTypeSpec, preparing for clean up - for (DataTypeSpec aDataTypeSpec : this.theDataTypeSpecs) { - organizedDataTypeSpecs.get(aDataTypeSpec.theGeneticDataType).addSpec(aDataTypeSpec); - } - - OncoPrintGeneDisplaySpec theResultFullDataTypeSpec = new OncoPrintGeneDisplaySpec(); - - for (GeneticDataTypes aGeneticDataType : GeneticDataTypes.values()) { - - if( 0 < organizedDataTypeSpecs.get(aGeneticDataType).getTheDataTypeSpecs().size() ){ - organizedDataTypeSpecs.get(aGeneticDataType).cleanUpDataType( - theResultFullDataTypeSpec.createResultDataTypeSpec(aGeneticDataType), - aGeneticDataType); - } - - } - return theResultFullDataTypeSpec; - } - - @Override - public String toString() { - StringBuffer sb = new StringBuffer(); - for( DataTypeSpec aDataTypeSpec: this.theDataTypeSpecs){ - sb.append(aDataTypeSpec.toString()).append("\n"); - } - return sb.toString(); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ParserOutput.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ParserOutput.java deleted file mode 100644 index 22518a80161..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ParserOutput.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.ArrayList; - -/** - * the data returned by a call to the parser - * @author Arthur Goldberg - */ -public class ParserOutput { - ArrayList syntaxErrors; - ArrayList semanticsErrors; - OncoPrintSpecification theOncoPrintSpecification; - - public ParserOutput(ArrayList syntaxErrors, ArrayList semanticsErrors, - OncoPrintSpecification theOncoPrintSpecification) { - // TODO: make sure parser cannot store nulls in these 2, and remove the conditionals - if( null == syntaxErrors ){ - this.syntaxErrors = new ArrayList(); - }else{ - this.syntaxErrors = syntaxErrors; - } - if( null == semanticsErrors ){ - this.semanticsErrors = new ArrayList(); - }else{ - this.semanticsErrors = semanticsErrors; - } - this.theOncoPrintSpecification = theOncoPrintSpecification; - } - - public ArrayList getSyntaxErrors() { - return syntaxErrors; - } - - public ArrayList getSemanticsErrors() { - return semanticsErrors; - } - - public OncoPrintSpecification getTheOncoPrintSpecification() { - return theOncoPrintSpecification; - } - -} - diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ResultDataTypeSpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ResultDataTypeSpec.java deleted file mode 100644 index 6e0706ce67c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/ResultDataTypeSpec.java +++ /dev/null @@ -1,155 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import org.mskcc.cbio.portal.util.EqualsUtil; - -/** - * holds a data type spec; an OncoPrintGeneDisplaySpec contains one of these for each data type. - * - * @author Arthur Goldberg - */ -public class ResultDataTypeSpec { - GeneticDataTypes theGeneticDataType; - boolean acceptAll; - DiscreteDataTypeSetSpec theDiscreteDataTypeSetSpec; - - // means that all values that exceed the threshold in combinedGreaterContinuousDataTypeSpec indicate alteration - ContinuousDataTypeSpec combinedGreaterContinuousDataTypeSpec; - // same meaning, but lesser - ContinuousDataTypeSpec combinedLesserContinuousDataTypeSpec; - - public ResultDataTypeSpec(GeneticDataTypes theGeneticDataType) { - this.theGeneticDataType = theGeneticDataType; - } - - /** - * Alternative style for a copy constructor, using a static newInstance - * method. - */ - public static ResultDataTypeSpec newInstance( ResultDataTypeSpec aResultDataTypeSpec ) { - if( null == aResultDataTypeSpec ){ - return null; - } - ResultDataTypeSpec theNewResultDataTypeSpec = new ResultDataTypeSpec( aResultDataTypeSpec.theGeneticDataType ); - theNewResultDataTypeSpec.setAcceptAll( aResultDataTypeSpec.isAcceptAll() ); - theNewResultDataTypeSpec.setTheDiscreteDataTypeSetSpec( - DiscreteDataTypeSetSpec.newInstance( aResultDataTypeSpec.getTheDiscreteDataTypeSetSpec() ) ); - - theNewResultDataTypeSpec.setCombinedGreaterContinuousDataTypeSpec( - ContinuousDataTypeSpec.newInstance( aResultDataTypeSpec.getCombinedGreaterContinuousDataTypeSpec() ) ); - - theNewResultDataTypeSpec.setCombinedLesserContinuousDataTypeSpec( - ContinuousDataTypeSpec.newInstance( aResultDataTypeSpec.getCombinedLesserContinuousDataTypeSpec() ) ); - - return theNewResultDataTypeSpec; - } - - public DiscreteDataTypeSetSpec getTheDiscreteDataTypeSetSpec() { - return theDiscreteDataTypeSetSpec; - } - - public void setAcceptAll(boolean acceptAll) { - this.acceptAll = acceptAll; - } - - public boolean isAcceptAll() { - return acceptAll; - } - - public void setCombinedGreaterContinuousDataTypeSpec( - ContinuousDataTypeSpec combinedGreaterContinuousDataTypeSpec) { - this.combinedGreaterContinuousDataTypeSpec = combinedGreaterContinuousDataTypeSpec; - } - - public void setCombinedLesserContinuousDataTypeSpec( - ContinuousDataTypeSpec combinedLesserContinuousDataTypeSpec) { - this.combinedLesserContinuousDataTypeSpec = combinedLesserContinuousDataTypeSpec; - } - - public void setTheDiscreteDataTypeSetSpec( - DiscreteDataTypeSetSpec theDiscreteDataTypeSetSpec) { - this.theDiscreteDataTypeSetSpec = theDiscreteDataTypeSetSpec; - } - - public ContinuousDataTypeSpec getCombinedGreaterContinuousDataTypeSpec() { - return combinedGreaterContinuousDataTypeSpec; - } - - public ContinuousDataTypeSpec getCombinedLesserContinuousDataTypeSpec() { - return combinedLesserContinuousDataTypeSpec; - } - - @Override - public String toString() { - if( acceptAll ){ - return theGeneticDataType.toString(); - } - - switch( this.theGeneticDataType.getTheDataTypeCategory()){ - case Continuous: - StringBuffer sb = new StringBuffer(); - if( combinedLesserContinuousDataTypeSpec != null ){ - sb.append(combinedLesserContinuousDataTypeSpec.toString()).append(" "); - } - if( combinedGreaterContinuousDataTypeSpec != null ){ - sb.append(combinedGreaterContinuousDataTypeSpec.toString()).append(" "); - } - return sb.append(" ").toString(); - - case Discrete: - return theDiscreteDataTypeSetSpec.toString()+" "; - } - // keep compiler happy - (new UnreachableCodeException( "")).printStackTrace(); - return "compiler happy"; - } - - @Override public final Object clone() throws CloneNotSupportedException { - throw new CloneNotSupportedException(); - } - - @Override - public boolean equals( Object aThat ) { - if( this == aThat ) return true; - if ( !(aThat instanceof ResultDataTypeSpec ) ) return false; - ResultDataTypeSpec that = (ResultDataTypeSpec) aThat; - return - EqualsUtil.areEqual( this.theGeneticDataType, that.theGeneticDataType) && - EqualsUtil.areEqual( this.acceptAll, that.acceptAll ) && - EqualsUtil.areEqual( this.theDiscreteDataTypeSetSpec, that.theDiscreteDataTypeSetSpec ) && - EqualsUtil.areEqual( this.combinedGreaterContinuousDataTypeSpec, that.combinedGreaterContinuousDataTypeSpec ) && - EqualsUtil.areEqual( this.combinedLesserContinuousDataTypeSpec, that.combinedLesserContinuousDataTypeSpec ); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TempFullDataTypeSpec.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TempFullDataTypeSpec.java deleted file mode 100644 index aee09a390a4..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TempFullDataTypeSpec.java +++ /dev/null @@ -1,174 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.ArrayList; - -/** - * A temporary class, created by RawFullDataTypeSpec while it is cleaning up parser - * output from fullDataTypeSpec and creating the ResultFullDataTypeSpec. - * - * @author Arthur Goldberg - * - */ -public class TempFullDataTypeSpec { - private ArrayList theDataTypeSpecs; - private ArrayList theDiscreteDataTypeSpecs; - private ArrayList theDiscreteDataTypeSetSpecs; - private ArrayList theConcreteDataTypeSpecs; - private ArrayList theContinuousDataTypeSpecs; - - public TempFullDataTypeSpec() { - initCollections(); - } - - private void initCollections(){ - this.theDataTypeSpecs = new ArrayList(); - this.theDiscreteDataTypeSpecs = new ArrayList(); - this.theDiscreteDataTypeSetSpecs = new ArrayList(); - this.theConcreteDataTypeSpecs = new ArrayList(); - this.theContinuousDataTypeSpecs = new ArrayList(); - } - - public void addSpec(DataTypeSpec aDataTypeSpec){ - this.theDataTypeSpecs.add(aDataTypeSpec); - } - - /** - * Given a FullDataTypeSpec which contains DataTypeSpecs for a single GeneticDataTypes, simplify them as much as possible, - * putting the result into theResultDataTypeSpec. - *

- * TODO: check that the FullDataTypeSpec which contains DataTypeSpecs for a single GeneticDataTypes - *

- * II. simplify by eliminating redundant constraints; not an error - * 1) if contains a ConcreteDataTypeSpec, discard all other narrowing DataTypeSpecs; should we issue a warning? - * 2) otherwise, - * A) For discrete data types: - * a) convert all DiscreteDataTypeSpecs into creating DiscreteDataTypeSetSpecs - * b) combine multiple DiscreteDataTypeSetSpecs into a single DiscreteDataTypeSetSpec that accepts anything the DiscreteDataTypeSetSpecs - * would have accepted; not an error - * Done. - *

- * B) For continuous data types: - * a) combine together redundant ContinuousDataTypeSpecs - * Done. - *

- * TODO: eliminate DiscreteDataTypeSpecs entirely, creating DiscreteDataTypeSetSpecs instead - */ - void cleanUpDataType( ResultDataTypeSpec theResultDataTypeSpec, GeneticDataTypes theGeneticDataType ){ - - // organize by class - for( DataTypeSpec aDataTypeSpec : this.theDataTypeSpecs){ - - if( aDataTypeSpec instanceof ConcreteDataTypeSpec) { - this.theConcreteDataTypeSpecs.add( (ConcreteDataTypeSpec)aDataTypeSpec ); - - } else if( aDataTypeSpec instanceof ContinuousDataTypeSpec){ - this.theContinuousDataTypeSpecs.add( (ContinuousDataTypeSpec)aDataTypeSpec ); - - } else if( aDataTypeSpec instanceof DiscreteDataTypeSetSpec) { - this.theDiscreteDataTypeSetSpecs.add( (DiscreteDataTypeSetSpec)aDataTypeSpec ); - - } else if( aDataTypeSpec instanceof DiscreteDataTypeSpec) { - this.theDiscreteDataTypeSpecs.add( (DiscreteDataTypeSpec)aDataTypeSpec ); - - } else { - // TODO: throw exception - System.err.println("unexpected type"); - } - } - - // * 1) if contains a ConcreteDataTypeSpec, discard all other narrowing DataTypeSpecs; should we issue a warning? - if( 0 < this.theConcreteDataTypeSpecs.size() ){ - this.theContinuousDataTypeSpecs.clear(); - this.theDiscreteDataTypeSetSpecs.clear(); - this.theDiscreteDataTypeSpecs.clear(); - theResultDataTypeSpec.setAcceptAll(true); - return; - } - - /* - * A) For discrete data types: - * a) convert all DiscreteDataTypeSpecs into DiscreteDataTypeSetSpecs - */ - for( DiscreteDataTypeSpec aDiscreteDataTypeSpec : this.theDiscreteDataTypeSpecs ){ - this.theDiscreteDataTypeSetSpecs.add( aDiscreteDataTypeSpec.convertToDiscreteDataTypeSetSpec()); - } - this.theDiscreteDataTypeSpecs.clear(); - - /* - * b) combine multiple DiscreteDataTypeSetSpecs into a single DiscreteDataTypeSetSpec that accepts anything the DiscreteDataTypeSetSpecs - * would have accepted; not a language error - */ - DiscreteDataTypeSetSpec combinedDiscreteDataTypeSetSpec = new DiscreteDataTypeSetSpec( theGeneticDataType ); - for( DiscreteDataTypeSetSpec aDiscreteDataTypeSetSpec : this.theDiscreteDataTypeSetSpecs){ - combinedDiscreteDataTypeSetSpec.combine( aDiscreteDataTypeSetSpec ); - } - this.theDiscreteDataTypeSetSpecs.clear(); - theResultDataTypeSpec.setTheDiscreteDataTypeSetSpec(combinedDiscreteDataTypeSetSpec); - - /* - * B) For continuous data types: - * a) combine together redundant ContinuousDataTypeSpecs - */ - ContinuousDataTypeSpec combinedGreaterContinuousDataTypeSpec = null; - ContinuousDataTypeSpec combinedLesserContinuousDataTypeSpec = null; - for( ContinuousDataTypeSpec aContinuousDataTypeSpec : this.theContinuousDataTypeSpecs){ - switch( aContinuousDataTypeSpec.getComparisonOp().getTheComparisonOpDirection()){ - case Smaller: - if( null == combinedLesserContinuousDataTypeSpec ){ - combinedLesserContinuousDataTypeSpec = aContinuousDataTypeSpec; - }else{ - combinedLesserContinuousDataTypeSpec.combine( aContinuousDataTypeSpec ); - } - break; - - case Bigger: - if( null == combinedGreaterContinuousDataTypeSpec ){ - combinedGreaterContinuousDataTypeSpec = aContinuousDataTypeSpec; - }else{ - combinedGreaterContinuousDataTypeSpec.combine( aContinuousDataTypeSpec ); - } - break; - - } - } - theResultDataTypeSpec.setCombinedLesserContinuousDataTypeSpec(combinedLesserContinuousDataTypeSpec); - theResultDataTypeSpec.setCombinedGreaterContinuousDataTypeSpec(combinedGreaterContinuousDataTypeSpec); - } - - public ArrayList getTheDataTypeSpecs() { - return theDataTypeSpecs; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/UniqueEnumPrefix.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/UniqueEnumPrefix.java deleted file mode 100644 index 4842633c0b5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/UniqueEnumPrefix.java +++ /dev/null @@ -1,150 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.lang.reflect.InvocationTargetException; -import java.lang.reflect.Method; -import static java.lang.System.out; - -/** - * Given an enum and a String, - * map any unique prefix to a value of the enum. Cool, huh? - * return null if not found - * @author Arthur Goldberg - * - */ -public class UniqueEnumPrefix { - - public static Object findUniqueEnumMatchingPrefix( Class theEnum, String abbrev ) - throws IllegalArgumentException{ - - if ( null == theEnum || !theEnum.isEnum()) { - throw new IllegalArgumentException("Not an enum: " + theEnum ); - } - - if( null == abbrev ) { - throw new IllegalArgumentException("abbrev is null" ); - } - - Object maybe = null; - for (Object o : theEnum.getEnumConstants() ) { - //out.format( "findUniqueEnumMatchingPrefix: matching '%s' with '%s'%n", o.toString(), abbrev ); - - if (o.toString().regionMatches(true, 0, abbrev, 0, abbrev.length())) { - //out.format( "findUniqueEnumMatchingPrefix: '%s' matches '%s'%n", o.toString(), abbrev ); - if (maybe != null) { - - // Another match; not unique - //out.format( "findUniqueEnumMatchingPrefix: ret null%n"); - return null; - } else { - maybe = o; - } - } - } - //out.format( "findUniqueEnumMatchingPrefix: ret %s%n", maybe.toString()); - return maybe; - } - - static String convertError = "Invalid abbreviation, does not match either a unique substring or a unique prefix: "; - - /** - * find unique name prefix in nicknames of an enum. - * if theEnum is an enum with a getNicknames method look for unique prefix matches to the - * nicknames. - * - * @param theEnum an enum that implements getNicknames() which returns String[] - * @param abbrev an abbreviation that might match a unique prefix of a nickname - * @return the enum constant if a unique match, otherwise null - * @throws IllegalArgumentException - */ - public static Object findUniqueEnumWithNicknameMatchingPrefix(Class theEnum, - String abbrev) throws IllegalArgumentException { - - if ( null == theEnum || !theEnum.isEnum()) { - throw new IllegalArgumentException("Not an enum: " + theEnum); - } - //out.format("invoking uniqueEnumNicknamePrefix on %s%n", theEnum.getName()); - - if( null == abbrev ) { - throw new IllegalArgumentException("abbrev is null" ); - } - - try { - Object possibleEnumConst = null; - Class[] argTypes = new Class[] {}; - Method getNicknames = theEnum.getDeclaredMethod("getNicknames", - argTypes); - - for (Object enumConstant : theEnum.getEnumConstants()) { - - // match any string for a given enum constant - String[] nicknames = null; - nicknames = (String[]) getNicknames.invoke(enumConstant); - - Object thisEnumConst = null; - if (nicknames != null) { - for (String nickname : nicknames) { - if (nickname.regionMatches(true, 0, abbrev, 0, - abbrev.length())) { - thisEnumConst = enumConstant; - // out.format("%s matches %s for %s%n", nickname, abbrev, enumConstant.toString()); - } - } - } - - if (thisEnumConst != null) { - // don't match multiple enum constants - if (possibleEnumConst != null) { - return null; - } else { - possibleEnumConst = thisEnumConst; - } - } - } - return possibleEnumConst; - } catch (SecurityException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } catch (NoSuchMethodException e) { - throw new IllegalArgumentException("Enum must implement 'getNicknames()': " + theEnum); - } catch (IllegalAccessException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } catch (InvocationTargetException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - return null; // for compiler - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/UnreachableCodeException.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/UnreachableCodeException.java deleted file mode 100644 index f542d1063b7..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/UnreachableCodeException.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -public class UnreachableCodeException extends Exception { - - public UnreachableCodeException(String arg0) { - super(arg0); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/Utilities.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/Utilities.java deleted file mode 100644 index 42a64a1ca76..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/Utilities.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.ArrayList; - -/** - * use an ArrayList as a temp buffer; ugly, but works - * @author Arthur Goldberg - */ -public class Utilities { - // static is OK, as a new parser is instantiated for each user / input - // TODO: HIGH: UNIT TEST in OncoSpec - // TODO: find another way to save syntax errors! - - /* - static ArrayList errorMessages = new ArrayList(); - - static public void clearErrorMessageList() { - errorMessages.clear(); - } - - public static ArrayList getErrorMessages() { - return errorMessages; - } - */ - - /** - * So that users do not need to complete fullDataTypeSpecs with a semicolon, append a ';' at the end of each line that contains a ':' that isn't - * followed by a ';'. assume a new line at the end of the input string. - *

- * @param input - * @return the new string - */ - public static String appendSemis( String input ){ - // TODO: use system new line, as provided by String NL = System.getProperty("line.separator"); - - // append \n to final line. - String withNL = input+"\n"; - // # add missing ;s at end of line where needed, - String appendedSemis = withNL.replaceAll( ":([^;\n]*)\n", ":$1;\n"); - // then remove added \n - return appendedSemis.substring(0, appendedSemis.length() - 1 ); - } - - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecAST.g b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecAST.g deleted file mode 100644 index eb15273f2ff..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecAST.g +++ /dev/null @@ -1,249 +0,0 @@ -grammar completeOncoPrintSpecAST; - -options {output=AST;} -@parser::header { - package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - import java.util.ArrayList; - import org.mskcc.cbio.portal.oncoPrintSpecLanguage.*; - import static java.lang.System.out; - import java.io.PrintStream; -} -@lexer::header{ - package org.mskcc.cbio.portal.oncoPrintSpecLanguage; -} - -@members{ - /* - DAMN, won't work; this returns only an AST, and we don't want to throw exceptions because then the parse won't complete - - Error handling strategy: We serve two purposes, - 1) when calling the root production, oncoPrintSpecification, return a list of all errors, each a String; - similarly for the tree grammar; thus if syntax error(s) occur, the driver program gets all of them, and doesn't call the - tree parser; and if semantics error(s) occur, the driver will get all of them - 2) when calling any other production, as for unit testing, throw an RecognitionException - Implementation: - a) in reportError, determine whether we're in case 1 or 2, and collect or throw accordingly - b) in the root production if errors have been thrown, rethrow the list - */ - - // get a list to hold errors - ArrayList errorMessages = new ArrayList();//Utilities.getErrorMessages(); - - // override to make comprehensible errors for users - public void reportError(RecognitionException e){ - // if we've already reported an error and have not matched a token - // yet successfully, don't report any errors. - if ( state.errorRecovery ) { - //System.err.print("[SPURIOUS] "); - return; - } - state.syntaxErrors++; // don't count spurious - state.errorRecovery = true; - displayRecognitionError(this.getTokenNames(), e); - } - - public void displayRecognitionError(String[] tokenNames, RecognitionException e) { - // String hdr = getErrorHeader(e); - int normalPos = e.charPositionInLine + 1; - String hdr = "Syntax error at char " + normalPos + " of line "+e.line+": "; - String msg = getErrorMessage(e, tokenNames); - // TODO: change this to print to a tmp file - // get ASTparser to write errors to a PrintStream, connected to a file - // System.err.println( hdr + msg); - errorMessages.add( hdr + msg ); - } - - public String getErrorMessage(RecognitionException e, String[] tokenNames) { - String msg = e.getMessage(); - // emitErrorMessage( "APG received " + e.getClass().getName() + " with token " + e.token.getText() ); - - if (e instanceof UnwantedTokenException) { - UnwantedTokenException ute = (UnwantedTokenException) e; - String tokenName = ""; - if (ute.expecting == Token.EOF) { - tokenName = "EOF"; - } else { - tokenName = tokenNames[ute.expecting]; - } - msg = "extraneous input " + getTokenErrorDisplay(ute.getUnexpectedToken()) + " expecting " - + tokenName; - } else if (e instanceof MissingTokenException) { - MissingTokenException mte = (MissingTokenException) e; - String tokenName = ""; - if (mte.expecting == Token.EOF) { - tokenName = "EOF"; - } else { - tokenName = tokenNames[mte.expecting]; - } - msg = "missing " + tokenName + " at " + getTokenErrorDisplay(e.token); - } else if (e instanceof MismatchedTokenException) { - MismatchedTokenException mte = (MismatchedTokenException) e; - String tokenName = ""; - if (mte.expecting == Token.EOF) { - tokenName = "EOF"; - } else { - tokenName = tokenNames[mte.expecting]; - } - msg = "mismatched input " + getTokenErrorDisplay(e.token) + " expecting " + tokenName; - } else if (e instanceof MismatchedTreeNodeException) { - MismatchedTreeNodeException mtne = (MismatchedTreeNodeException) e; - String tokenName = ""; - if (mtne.expecting == Token.EOF) { - tokenName = "EOF"; - } else { - tokenName = tokenNames[mtne.expecting]; - } - msg = "mismatched tree node: " + mtne.node + " expecting " + tokenName; - } else if (e instanceof NoViableAltException) { - // NoViableAltException nvae = (NoViableAltException)e; - // for development, can add - // "decision=<<"+nvae.grammarDecisionDescription+">>" - // and "(decision="+nvae.decisionNumber+") and - // "state "+nvae.stateNumber - msg = "Syntax error at " + getTokenErrorDisplay(e.token); - } else if (e instanceof EarlyExitException) { - // EarlyExitException eee = (EarlyExitException)e; - // for development, can add "(decision="+eee.decisionNumber+")" - // TODO: better error message - msg = "found empty list at " // "required (...)+ loop did not match anything at input " - + getTokenErrorDisplay(e.token); - } else if (e instanceof MismatchedSetException) { - MismatchedSetException mse = (MismatchedSetException) e; - msg = "mismatched input " + getTokenErrorDisplay(e.token) + "."; // + " expecting set " + mse.expecting; - } else if (e instanceof MismatchedNotSetException) { - MismatchedNotSetException mse = (MismatchedNotSetException) e; - msg = "mismatched input " + getTokenErrorDisplay(e.token) + "."; // + " expecting set " + mse.expecting; - } else if (e instanceof FailedPredicateException) { - FailedPredicateException fpe = (FailedPredicateException) e; - // msg = "rule " + fpe.ruleName + " failed predicate: {" + fpe.predicateText + "}?"; - // msg = "token '" + e.token.getText() + "' is not a valid '" + lookupDataTypeName( fpe.ruleName ) +"'."; - } - return msg; - } -} - -// everything is a userGeneList, including a gene by itself -oncoPrintSpecification - : - ( userGeneList )+ -> userGeneList+ - ; - -userGeneList - : - geneList - | - ( '{' geneList '}' - | STRING '{' geneList '}' ) -> ^(UserGeneList geneList STRING?) - ; -UserGeneList : '&userGeneList'; - -// a list of genes and/or default specs -geneList - : - // build a list of interleaved genes and defaultDataTypeSpecs - // as Parr TDAR says, at start of 7.4 - // "the automatic AST construction mechanism ... [automatically] builds a tree, albeit a flat one." - ( individualGene | defaultDataTypeSpec )+ - ; - -// a gene and its optional data type specification -individualGene - : - ID fullDataTypeSpec? -> ^(IndividualGene ID fullDataTypeSpec?) - ; -IndividualGene - : '&individualGene'; - -// sets the global default -defaultDataTypeSpec - : 'DATATYPES' - fullDataTypeSpec -> ^(DefaultDataTypeSpec fullDataTypeSpec) - ; -DefaultDataTypeSpec - : '&defaultDataTypeSpec'; - -// all the data type specs for a gene or DATATYPES -fullDataTypeSpec - : ':' ( dataTypeSpec )+ ';' -> dataTypeSpec+ - ; - -// a single data type spec -// TODO: very strange; dataTypeSpec will not parse an ID, but fullDataTypeSpec will parse it; bizarre -dataTypeSpec - : - ID -> ^(DataTypeOrLevel ID) // may be discrete or continuous dataType or discrete level - | discreteDataType - | continuousDataTypeInequality - ; -DataTypeOrLevel - : '&DataTypeOrLevel' ; - -// a discrete data type, currently either CNA or mutation -discreteDataType - : - ( ID COMPARISON_OP ID )-> ^(DiscreteDataType ID COMPARISON_OP ID ) // all discrete levels that satisfy the condition - | ( ID SIGNED_INT ) -> ^(DiscreteDataType ID SIGNED_INT ) // the discrete level indicated by the INT - ; -DiscreteDataType : '&DiscreteDataType'; - -// a continous data type (expression or methylation) that satisfies the inequality -continuousDataTypeInequality - : - ( ID COMPARISON_OP floatOrInt ) -> - ^(ContinuousDataTypeInequality ID COMPARISON_OP floatOrInt ) - ; - -floatOrInt - : SIGNED_FLOAT | SIGNED_INT ; - -// dummy tokens because ANTLR rewrite rules cannot use constants as node names! Argh! -ContinuousDataTypeInequality : '&ContinuousDataTypeInequality'; - -COMPARISON_OP - : ( '<=' | '<' | '>' | '>=' | '=') - ; - -ID : ('a'..'z'|'A'..'Z'|'0'..'9'|'_'|'*') ('a'..'z'|'A'..'Z'|'0'..'9'|'_'|'-'|'@'|'.'|'*'|'/')* - ; - -SIGNED_FLOAT - : ('-')? ( INT+ '.' INT* - | '.' INT+ ) - ; - -SIGNED_INT : ('-')? INT+ ; - -fragment INT : ('0' .. '9') ; - -WS : ( ' ' - | '\t' - | '\r' - | '\n' - ) {$channel=HIDDEN;} - ; - -STRING - : '"' ( ESC_SEQ | ~('\\'|'"') )* '"' - ; - -fragment -ESC_SEQ - : '\\' ('b'|'t'|'n'|'f'|'r'|'\"'|'\''|'\\') - | UNICODE_ESC - | OCTAL_ESC - ; - -fragment -OCTAL_ESC - : '\\' ('0'..'3') ('0'..'7') ('0'..'7') - | '\\' ('0'..'7') ('0'..'7') - | '\\' ('0'..'7') - ; - -fragment -UNICODE_ESC - : '\\' 'u' HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT - ; - -fragment -HEX_DIGIT : ('0'..'9'|'a'..'f'|'A'..'F') ; diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecASTLexer.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecASTLexer.java deleted file mode 100644 index a2af91658f9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecASTLexer.java +++ /dev/null @@ -1,1279 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - - -// $ANTLR 3.2 Sep 23, 2009 12:02:23 ./completeOncoPrintSpecAST.g 2012-06-01 11:59:27 - - package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - - -import org.antlr.runtime.*; -import java.util.Stack; -import java.util.List; -import java.util.ArrayList; - -public class completeOncoPrintSpecASTLexer extends Lexer { - public static final int T__25=25; - public static final int T__24=24; - public static final int T__23=23; - public static final int T__22=22; - public static final int UserGeneList=5; - public static final int T__21=21; - public static final int COMPARISON_OP=10; - public static final int UNICODE_ESC=18; - public static final int OCTAL_ESC=19; - public static final int HEX_DIGIT=20; - public static final int INT=15; - public static final int ID=6; - public static final int EOF=-1; - public static final int DiscreteDataType=12; - public static final int ContinuousDataTypeInequality=14; - public static final int SIGNED_INT=11; - public static final int WS=16; - public static final int ESC_SEQ=17; - public static final int DataTypeOrLevel=9; - public static final int DefaultDataTypeSpec=8; - public static final int IndividualGene=7; - public static final int SIGNED_FLOAT=13; - public static final int STRING=4; - - // delegates - // delegators - - public completeOncoPrintSpecASTLexer() {;} - public completeOncoPrintSpecASTLexer(CharStream input) { - this(input, new RecognizerSharedState()); - } - public completeOncoPrintSpecASTLexer(CharStream input, RecognizerSharedState state) { - super(input,state); - - } - public String getGrammarFileName() { return "./completeOncoPrintSpecAST.g"; } - - // $ANTLR start "T__21" - public final void mT__21() throws RecognitionException { - try { - int _type = T__21; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:7:7: ( '{' ) - // ./completeOncoPrintSpecAST.g:7:9: '{' - { - match('{'); - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "T__21" - - // $ANTLR start "T__22" - public final void mT__22() throws RecognitionException { - try { - int _type = T__22; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:8:7: ( '}' ) - // ./completeOncoPrintSpecAST.g:8:9: '}' - { - match('}'); - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "T__22" - - // $ANTLR start "T__23" - public final void mT__23() throws RecognitionException { - try { - int _type = T__23; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:9:7: ( 'DATATYPES' ) - // ./completeOncoPrintSpecAST.g:9:9: 'DATATYPES' - { - match("DATATYPES"); - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "T__23" - - // $ANTLR start "T__24" - public final void mT__24() throws RecognitionException { - try { - int _type = T__24; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:10:7: ( ':' ) - // ./completeOncoPrintSpecAST.g:10:9: ':' - { - match(':'); - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "T__24" - - // $ANTLR start "T__25" - public final void mT__25() throws RecognitionException { - try { - int _type = T__25; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:11:7: ( ';' ) - // ./completeOncoPrintSpecAST.g:11:9: ';' - { - match(';'); - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "T__25" - - // $ANTLR start "UserGeneList" - public final void mUserGeneList() throws RecognitionException { - try { - int _type = UserGeneList; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:138:14: ( '&userGeneList' ) - // ./completeOncoPrintSpecAST.g:138:17: '&userGeneList' - { - match("&userGeneList"); - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "UserGeneList" - - // $ANTLR start "IndividualGene" - public final void mIndividualGene() throws RecognitionException { - try { - int _type = IndividualGene; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:155:2: ( '&individualGene' ) - // ./completeOncoPrintSpecAST.g:155:4: '&individualGene' - { - match("&individualGene"); - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "IndividualGene" - - // $ANTLR start "DefaultDataTypeSpec" - public final void mDefaultDataTypeSpec() throws RecognitionException { - try { - int _type = DefaultDataTypeSpec; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:163:2: ( '&defaultDataTypeSpec' ) - // ./completeOncoPrintSpecAST.g:163:4: '&defaultDataTypeSpec' - { - match("&defaultDataTypeSpec"); - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "DefaultDataTypeSpec" - - // $ANTLR start "DataTypeOrLevel" - public final void mDataTypeOrLevel() throws RecognitionException { - try { - int _type = DataTypeOrLevel; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:179:2: ( '&DataTypeOrLevel' ) - // ./completeOncoPrintSpecAST.g:179:4: '&DataTypeOrLevel' - { - match("&DataTypeOrLevel"); - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "DataTypeOrLevel" - - // $ANTLR start "DiscreteDataType" - public final void mDiscreteDataType() throws RecognitionException { - try { - int _type = DiscreteDataType; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:187:19: ( '&DiscreteDataType' ) - // ./completeOncoPrintSpecAST.g:187:21: '&DiscreteDataType' - { - match("&DiscreteDataType"); - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "DiscreteDataType" - - // $ANTLR start "ContinuousDataTypeInequality" - public final void mContinuousDataTypeInequality() throws RecognitionException { - try { - int _type = ContinuousDataTypeInequality; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:200:31: ( '&ContinuousDataTypeInequality' ) - // ./completeOncoPrintSpecAST.g:200:33: '&ContinuousDataTypeInequality' - { - match("&ContinuousDataTypeInequality"); - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "ContinuousDataTypeInequality" - - // $ANTLR start "COMPARISON_OP" - public final void mCOMPARISON_OP() throws RecognitionException { - try { - int _type = COMPARISON_OP; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:203:2: ( ( '<=' | '<' | '>' | '>=' | '=' ) ) - // ./completeOncoPrintSpecAST.g:203:4: ( '<=' | '<' | '>' | '>=' | '=' ) - { - // ./completeOncoPrintSpecAST.g:203:4: ( '<=' | '<' | '>' | '>=' | '=' ) - int alt1=5; - switch ( input.LA(1) ) { - case '<': - { - int LA1_1 = input.LA(2); - - if ( (LA1_1=='=') ) { - alt1=1; - } - else { - alt1=2;} - } - break; - case '>': - { - int LA1_2 = input.LA(2); - - if ( (LA1_2=='=') ) { - alt1=4; - } - else { - alt1=3;} - } - break; - case '=': - { - alt1=5; - } - break; - default: - NoViableAltException nvae = - new NoViableAltException("", 1, 0, input); - - throw nvae; - } - - switch (alt1) { - case 1 : - // ./completeOncoPrintSpecAST.g:203:6: '<=' - { - match("<="); - - - } - break; - case 2 : - // ./completeOncoPrintSpecAST.g:203:13: '<' - { - match('<'); - - } - break; - case 3 : - // ./completeOncoPrintSpecAST.g:203:19: '>' - { - match('>'); - - } - break; - case 4 : - // ./completeOncoPrintSpecAST.g:203:25: '>=' - { - match(">="); - - - } - break; - case 5 : - // ./completeOncoPrintSpecAST.g:203:32: '=' - { - match('='); - - } - break; - - } - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "COMPARISON_OP" - - // $ANTLR start "ID" - public final void mID() throws RecognitionException { - try { - int _type = ID; - int _channel = DEFAULT_TOKEN_CHANNEL; - { - if ( input.LA(1)=='*'||(input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) { - input.consume(); - - } - else { - MismatchedSetException mse = new MismatchedSetException(null,input); - recover(mse); - throw mse;} - - loop2: - do { - int alt2=2; - int LA2_0 = input.LA(1); - - if ( (LA2_0=='*'||(LA2_0>='-' && LA2_0<='9')||(LA2_0>='@' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) { - alt2=1; - } - - - switch (alt2) { - case 1 : - // ./completeOncoPrintSpecAST.g: - { - if ( input.LA(1)=='*'||(input.LA(1)>='-' && input.LA(1)<='9')||(input.LA(1)>='@' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) { - input.consume(); - - } - else { - MismatchedSetException mse = new MismatchedSetException(null,input); - recover(mse); - throw mse;} - - - } - break; - - default : - break loop2; - } - } while (true); - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "ID" - - // $ANTLR start "SIGNED_FLOAT" - public final void mSIGNED_FLOAT() throws RecognitionException { - try { - int _type = SIGNED_FLOAT; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:210:5: ( ( '-' )? ( ( INT )+ '.' ( INT )* | '.' ( INT )+ ) ) - // ./completeOncoPrintSpecAST.g:210:8: ( '-' )? ( ( INT )+ '.' ( INT )* | '.' ( INT )+ ) - { - // ./completeOncoPrintSpecAST.g:210:8: ( '-' )? - int alt3=2; - int LA3_0 = input.LA(1); - - if ( (LA3_0=='-') ) { - alt3=1; - } - switch (alt3) { - case 1 : - // ./completeOncoPrintSpecAST.g:210:9: '-' - { - match('-'); - - } - break; - - } - - // ./completeOncoPrintSpecAST.g:210:15: ( ( INT )+ '.' ( INT )* | '.' ( INT )+ ) - int alt7=2; - int LA7_0 = input.LA(1); - - if ( ((LA7_0>='0' && LA7_0<='9')) ) { - alt7=1; - } - else if ( (LA7_0=='.') ) { - alt7=2; - } - else { - NoViableAltException nvae = - new NoViableAltException("", 7, 0, input); - - throw nvae; - } - switch (alt7) { - case 1 : - // ./completeOncoPrintSpecAST.g:210:17: ( INT )+ '.' ( INT )* - { - // ./completeOncoPrintSpecAST.g:210:17: ( INT )+ - int cnt4=0; - loop4: - do { - int alt4=2; - int LA4_0 = input.LA(1); - - if ( ((LA4_0>='0' && LA4_0<='9')) ) { - alt4=1; - } - - - switch (alt4) { - case 1 : - // ./completeOncoPrintSpecAST.g:210:17: INT - { - mINT(); - - } - break; - - default : - if ( cnt4 >= 1 ) break loop4; - EarlyExitException eee = - new EarlyExitException(4, input); - throw eee; - } - cnt4++; - } while (true); - - match('.'); - // ./completeOncoPrintSpecAST.g:210:26: ( INT )* - loop5: - do { - int alt5=2; - int LA5_0 = input.LA(1); - - if ( ((LA5_0>='0' && LA5_0<='9')) ) { - alt5=1; - } - - - switch (alt5) { - case 1 : - // ./completeOncoPrintSpecAST.g:210:26: INT - { - mINT(); - - } - break; - - default : - break loop5; - } - } while (true); - - - } - break; - case 2 : - // ./completeOncoPrintSpecAST.g:211:8: '.' ( INT )+ - { - match('.'); - // ./completeOncoPrintSpecAST.g:211:12: ( INT )+ - int cnt6=0; - loop6: - do { - int alt6=2; - int LA6_0 = input.LA(1); - - if ( ((LA6_0>='0' && LA6_0<='9')) ) { - alt6=1; - } - - - switch (alt6) { - case 1 : - // ./completeOncoPrintSpecAST.g:211:12: INT - { - mINT(); - - } - break; - - default : - if ( cnt6 >= 1 ) break loop6; - EarlyExitException eee = - new EarlyExitException(6, input); - throw eee; - } - cnt6++; - } while (true); - - - } - break; - - } - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "SIGNED_FLOAT" - - // $ANTLR start "SIGNED_INT" - public final void mSIGNED_INT() throws RecognitionException { - try { - int _type = SIGNED_INT; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:214:12: ( ( '-' )? ( INT )+ ) - // ./completeOncoPrintSpecAST.g:214:14: ( '-' )? ( INT )+ - { - // ./completeOncoPrintSpecAST.g:214:14: ( '-' )? - int alt8=2; - int LA8_0 = input.LA(1); - - if ( (LA8_0=='-') ) { - alt8=1; - } - switch (alt8) { - case 1 : - // ./completeOncoPrintSpecAST.g:214:15: '-' - { - match('-'); - - } - break; - - } - - // ./completeOncoPrintSpecAST.g:214:21: ( INT )+ - int cnt9=0; - loop9: - do { - int alt9=2; - int LA9_0 = input.LA(1); - - if ( ((LA9_0>='0' && LA9_0<='9')) ) { - alt9=1; - } - - - switch (alt9) { - case 1 : - // ./completeOncoPrintSpecAST.g:214:21: INT - { - mINT(); - - } - break; - - default : - if ( cnt9 >= 1 ) break loop9; - EarlyExitException eee = - new EarlyExitException(9, input); - throw eee; - } - cnt9++; - } while (true); - - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "SIGNED_INT" - - // $ANTLR start "INT" - public final void mINT() throws RecognitionException { - try { - // ./completeOncoPrintSpecAST.g:216:14: ( ( '0' .. '9' ) ) - // ./completeOncoPrintSpecAST.g:216:16: ( '0' .. '9' ) - { - // ./completeOncoPrintSpecAST.g:216:16: ( '0' .. '9' ) - // ./completeOncoPrintSpecAST.g:216:17: '0' .. '9' - { - matchRange('0','9'); - - } - - - } - - } - finally { - } - } - // $ANTLR end "INT" - - // $ANTLR start "WS" - public final void mWS() throws RecognitionException { - try { - int _type = WS; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:218:4: ( ( ' ' | '\\t' | '\\r' | '\\n' ) ) - // ./completeOncoPrintSpecAST.g:218:8: ( ' ' | '\\t' | '\\r' | '\\n' ) - { - if ( (input.LA(1)>='\t' && input.LA(1)<='\n')||input.LA(1)=='\r'||input.LA(1)==' ' ) { - input.consume(); - - } - else { - MismatchedSetException mse = new MismatchedSetException(null,input); - recover(mse); - throw mse;} - - _channel=HIDDEN; - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "WS" - - // $ANTLR start "STRING" - public final void mSTRING() throws RecognitionException { - try { - int _type = STRING; - int _channel = DEFAULT_TOKEN_CHANNEL; - // ./completeOncoPrintSpecAST.g:226:5: ( '\"' ( ESC_SEQ | ~ ( '\\\\' | '\"' ) )* '\"' ) - // ./completeOncoPrintSpecAST.g:226:8: '\"' ( ESC_SEQ | ~ ( '\\\\' | '\"' ) )* '\"' - { - match('\"'); - // ./completeOncoPrintSpecAST.g:226:12: ( ESC_SEQ | ~ ( '\\\\' | '\"' ) )* - loop10: - do { - int alt10=3; - int LA10_0 = input.LA(1); - - if ( (LA10_0=='\\') ) { - alt10=1; - } - else if ( ((LA10_0>='\u0000' && LA10_0<='!')||(LA10_0>='#' && LA10_0<='[')||(LA10_0>=']' && LA10_0<='\uFFFF')) ) { - alt10=2; - } - - - switch (alt10) { - case 1 : - // ./completeOncoPrintSpecAST.g:226:14: ESC_SEQ - { - mESC_SEQ(); - - } - break; - case 2 : - // ./completeOncoPrintSpecAST.g:226:24: ~ ( '\\\\' | '\"' ) - { - if ( (input.LA(1)>='\u0000' && input.LA(1)<='!')||(input.LA(1)>='#' && input.LA(1)<='[')||(input.LA(1)>=']' && input.LA(1)<='\uFFFF') ) { - input.consume(); - - } - else { - MismatchedSetException mse = new MismatchedSetException(null,input); - recover(mse); - throw mse;} - - - } - break; - - default : - break loop10; - } - } while (true); - - match('\"'); - - } - - state.type = _type; - state.channel = _channel; - } - finally { - } - } - // $ANTLR end "STRING" - - // $ANTLR start "ESC_SEQ" - public final void mESC_SEQ() throws RecognitionException { - try { - // ./completeOncoPrintSpecAST.g:231:5: ( '\\\\' ( 'b' | 't' | 'n' | 'f' | 'r' | '\\\"' | '\\'' | '\\\\' ) | UNICODE_ESC | OCTAL_ESC ) - int alt11=3; - int LA11_0 = input.LA(1); - - if ( (LA11_0=='\\') ) { - switch ( input.LA(2) ) { - case '\"': - case '\'': - case '\\': - case 'b': - case 'f': - case 'n': - case 'r': - case 't': - { - alt11=1; - } - break; - case 'u': - { - alt11=2; - } - break; - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - { - alt11=3; - } - break; - default: - NoViableAltException nvae = - new NoViableAltException("", 11, 1, input); - - throw nvae; - } - - } - else { - NoViableAltException nvae = - new NoViableAltException("", 11, 0, input); - - throw nvae; - } - switch (alt11) { - case 1 : - // ./completeOncoPrintSpecAST.g:231:9: '\\\\' ( 'b' | 't' | 'n' | 'f' | 'r' | '\\\"' | '\\'' | '\\\\' ) - { - match('\\'); - if ( input.LA(1)=='\"'||input.LA(1)=='\''||input.LA(1)=='\\'||input.LA(1)=='b'||input.LA(1)=='f'||input.LA(1)=='n'||input.LA(1)=='r'||input.LA(1)=='t' ) { - input.consume(); - - } - else { - MismatchedSetException mse = new MismatchedSetException(null,input); - recover(mse); - throw mse;} - - - } - break; - case 2 : - // ./completeOncoPrintSpecAST.g:232:9: UNICODE_ESC - { - mUNICODE_ESC(); - - } - break; - case 3 : - // ./completeOncoPrintSpecAST.g:233:9: OCTAL_ESC - { - mOCTAL_ESC(); - - } - break; - - } - } - finally { - } - } - // $ANTLR end "ESC_SEQ" - - // $ANTLR start "OCTAL_ESC" - public final void mOCTAL_ESC() throws RecognitionException { - try { - // ./completeOncoPrintSpecAST.g:238:5: ( '\\\\' ( '0' .. '3' ) ( '0' .. '7' ) ( '0' .. '7' ) | '\\\\' ( '0' .. '7' ) ( '0' .. '7' ) | '\\\\' ( '0' .. '7' ) ) - int alt12=3; - int LA12_0 = input.LA(1); - - if ( (LA12_0=='\\') ) { - int LA12_1 = input.LA(2); - - if ( ((LA12_1>='0' && LA12_1<='3')) ) { - int LA12_2 = input.LA(3); - - if ( ((LA12_2>='0' && LA12_2<='7')) ) { - int LA12_5 = input.LA(4); - - if ( ((LA12_5>='0' && LA12_5<='7')) ) { - alt12=1; - } - else { - alt12=2;} - } - else { - alt12=3;} - } - else if ( ((LA12_1>='4' && LA12_1<='7')) ) { - int LA12_3 = input.LA(3); - - if ( ((LA12_3>='0' && LA12_3<='7')) ) { - alt12=2; - } - else { - alt12=3;} - } - else { - NoViableAltException nvae = - new NoViableAltException("", 12, 1, input); - - throw nvae; - } - } - else { - NoViableAltException nvae = - new NoViableAltException("", 12, 0, input); - - throw nvae; - } - switch (alt12) { - case 1 : - // ./completeOncoPrintSpecAST.g:238:9: '\\\\' ( '0' .. '3' ) ( '0' .. '7' ) ( '0' .. '7' ) - { - match('\\'); - // ./completeOncoPrintSpecAST.g:238:14: ( '0' .. '3' ) - // ./completeOncoPrintSpecAST.g:238:15: '0' .. '3' - { - matchRange('0','3'); - - } - - // ./completeOncoPrintSpecAST.g:238:25: ( '0' .. '7' ) - // ./completeOncoPrintSpecAST.g:238:26: '0' .. '7' - { - matchRange('0','7'); - - } - - // ./completeOncoPrintSpecAST.g:238:36: ( '0' .. '7' ) - // ./completeOncoPrintSpecAST.g:238:37: '0' .. '7' - { - matchRange('0','7'); - - } - - - } - break; - case 2 : - // ./completeOncoPrintSpecAST.g:239:9: '\\\\' ( '0' .. '7' ) ( '0' .. '7' ) - { - match('\\'); - // ./completeOncoPrintSpecAST.g:239:14: ( '0' .. '7' ) - // ./completeOncoPrintSpecAST.g:239:15: '0' .. '7' - { - matchRange('0','7'); - - } - - // ./completeOncoPrintSpecAST.g:239:25: ( '0' .. '7' ) - // ./completeOncoPrintSpecAST.g:239:26: '0' .. '7' - { - matchRange('0','7'); - - } - - - } - break; - case 3 : - // ./completeOncoPrintSpecAST.g:240:9: '\\\\' ( '0' .. '7' ) - { - match('\\'); - // ./completeOncoPrintSpecAST.g:240:14: ( '0' .. '7' ) - // ./completeOncoPrintSpecAST.g:240:15: '0' .. '7' - { - matchRange('0','7'); - - } - - - } - break; - - } - } - finally { - } - } - // $ANTLR end "OCTAL_ESC" - - // $ANTLR start "UNICODE_ESC" - public final void mUNICODE_ESC() throws RecognitionException { - try { - // ./completeOncoPrintSpecAST.g:245:5: ( '\\\\' 'u' HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT ) - // ./completeOncoPrintSpecAST.g:245:9: '\\\\' 'u' HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT - { - match('\\'); - match('u'); - mHEX_DIGIT(); - mHEX_DIGIT(); - mHEX_DIGIT(); - mHEX_DIGIT(); - - } - - } - finally { - } - } - // $ANTLR end "UNICODE_ESC" - - // $ANTLR start "HEX_DIGIT" - public final void mHEX_DIGIT() throws RecognitionException { - try { - // ./completeOncoPrintSpecAST.g:249:11: ( ( '0' .. '9' | 'a' .. 'f' | 'A' .. 'F' ) ) - // ./completeOncoPrintSpecAST.g:249:13: ( '0' .. '9' | 'a' .. 'f' | 'A' .. 'F' ) - { - if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='F')||(input.LA(1)>='a' && input.LA(1)<='f') ) { - input.consume(); - - } - else { - MismatchedSetException mse = new MismatchedSetException(null,input); - recover(mse); - throw mse;} - - - } - - } - finally { - } - } - // $ANTLR end "HEX_DIGIT" - - public void mTokens() throws RecognitionException { - // ./completeOncoPrintSpecAST.g:1:8: ( T__21 | T__22 | T__23 | T__24 | T__25 | UserGeneList | IndividualGene | DefaultDataTypeSpec | DataTypeOrLevel | DiscreteDataType | ContinuousDataTypeInequality | COMPARISON_OP | ID | SIGNED_FLOAT | SIGNED_INT | WS | STRING ) - int alt13=17; - alt13 = dfa13.predict(input); - switch (alt13) { - case 1 : - // ./completeOncoPrintSpecAST.g:1:10: T__21 - { - mT__21(); - - } - break; - case 2 : - // ./completeOncoPrintSpecAST.g:1:16: T__22 - { - mT__22(); - - } - break; - case 3 : - // ./completeOncoPrintSpecAST.g:1:22: T__23 - { - mT__23(); - - } - break; - case 4 : - // ./completeOncoPrintSpecAST.g:1:28: T__24 - { - mT__24(); - - } - break; - case 5 : - // ./completeOncoPrintSpecAST.g:1:34: T__25 - { - mT__25(); - - } - break; - case 6 : - // ./completeOncoPrintSpecAST.g:1:40: UserGeneList - { - mUserGeneList(); - - } - break; - case 7 : - // ./completeOncoPrintSpecAST.g:1:53: IndividualGene - { - mIndividualGene(); - - } - break; - case 8 : - // ./completeOncoPrintSpecAST.g:1:68: DefaultDataTypeSpec - { - mDefaultDataTypeSpec(); - - } - break; - case 9 : - // ./completeOncoPrintSpecAST.g:1:88: DataTypeOrLevel - { - mDataTypeOrLevel(); - - } - break; - case 10 : - // ./completeOncoPrintSpecAST.g:1:104: DiscreteDataType - { - mDiscreteDataType(); - - } - break; - case 11 : - // ./completeOncoPrintSpecAST.g:1:121: ContinuousDataTypeInequality - { - mContinuousDataTypeInequality(); - - } - break; - case 12 : - // ./completeOncoPrintSpecAST.g:1:150: COMPARISON_OP - { - mCOMPARISON_OP(); - - } - break; - case 13 : - // ./completeOncoPrintSpecAST.g:1:164: ID - { - mID(); - - } - break; - case 14 : - // ./completeOncoPrintSpecAST.g:1:167: SIGNED_FLOAT - { - mSIGNED_FLOAT(); - - } - break; - case 15 : - // ./completeOncoPrintSpecAST.g:1:180: SIGNED_INT - { - mSIGNED_INT(); - - } - break; - case 16 : - // ./completeOncoPrintSpecAST.g:1:191: WS - { - mWS(); - - } - break; - case 17 : - // ./completeOncoPrintSpecAST.g:1:194: STRING - { - mSTRING(); - - } - break; - - } - - } - - - protected DFA13 dfa13 = new DFA13(this); - static final String DFA13_eotS = - "\3\uffff\1\10\6\uffff\1\24\3\uffff\1\10\6\uffff\1\10\2\uffff\5\10"+ - "\1\36\1\uffff"; - static final String DFA13_eofS = - "\37\uffff"; - static final String DFA13_minS = - "\1\11\2\uffff\1\101\2\uffff\1\103\2\uffff\2\56\3\uffff\1\124\3\uffff"+ - "\1\141\2\uffff\1\101\2\uffff\1\124\1\131\1\120\1\105\1\123\1\52"+ - "\1\uffff"; - static final String DFA13_maxS = - "\1\175\2\uffff\1\101\2\uffff\1\165\2\uffff\2\71\3\uffff\1\124\3"+ - "\uffff\1\151\2\uffff\1\101\2\uffff\1\124\1\131\1\120\1\105\1\123"+ - "\1\172\1\uffff"; - static final String DFA13_acceptS = - "\1\uffff\1\1\1\2\1\uffff\1\4\1\5\1\uffff\1\14\1\15\2\uffff\1\16"+ - "\1\20\1\21\1\uffff\1\6\1\7\1\10\1\uffff\1\13\1\17\1\uffff\1\11\1"+ - "\12\6\uffff\1\3"; - static final String DFA13_specialS = - "\37\uffff}>"; - static final String[] DFA13_transitionS = { - "\2\14\2\uffff\1\14\22\uffff\1\14\1\uffff\1\15\3\uffff\1\6\3"+ - "\uffff\1\10\2\uffff\1\11\1\13\1\uffff\12\12\1\4\1\5\3\7\2\uffff"+ - "\3\10\1\3\26\10\4\uffff\1\10\1\uffff\32\10\1\1\1\uffff\1\2", - "", - "", - "\1\16", - "", - "", - "\1\23\1\22\37\uffff\1\21\4\uffff\1\20\13\uffff\1\17", - "", - "", - "\1\13\1\uffff\12\12", - "\1\13\1\uffff\12\12", - "", - "", - "", - "\1\25", - "", - "", - "", - "\1\26\7\uffff\1\27", - "", - "", - "\1\30", - "", - "", - "\1\31", - "\1\32", - "\1\33", - "\1\34", - "\1\35", - "\1\10\2\uffff\1\10\1\uffff\13\10\7\uffff\32\10\4\uffff\1\10"+ - "\1\uffff\32\10", - "" - }; - - static final short[] DFA13_eot = DFA.unpackEncodedString(DFA13_eotS); - static final short[] DFA13_eof = DFA.unpackEncodedString(DFA13_eofS); - static final char[] DFA13_min = DFA.unpackEncodedStringToUnsignedChars(DFA13_minS); - static final char[] DFA13_max = DFA.unpackEncodedStringToUnsignedChars(DFA13_maxS); - static final short[] DFA13_accept = DFA.unpackEncodedString(DFA13_acceptS); - static final short[] DFA13_special = DFA.unpackEncodedString(DFA13_specialS); - static final short[][] DFA13_transition; - - static { - int numStates = DFA13_transitionS.length; - DFA13_transition = new short[numStates][]; - for (int i=0; i. -*/ - - -// $ANTLR 3.2 Sep 23, 2009 12:02:23 ../completeOncoPrintSpecAST.g 2010-12-14 17:00:18 - - package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - import java.util.ArrayList; - import org.mskcc.cbio.portal.oncoPrintSpecLanguage.*; - import static java.lang.System.out; - import java.io.PrintStream; - - -import org.antlr.runtime.*; -import java.util.Stack; -import java.util.List; -import java.util.ArrayList; - - -import org.antlr.runtime.tree.*; - -public class completeOncoPrintSpecASTParser extends Parser { - public static final String[] tokenNames = new String[] { - "", "", "", "", "STRING", "UserGeneList", "ID", "IndividualGene", "DefaultDataTypeSpec", "DataTypeOrLevel", "COMPARISON_OP", "SIGNED_INT", "DiscreteDataType", "SIGNED_FLOAT", "ContinuousDataTypeInequality", "INT", "WS", "ESC_SEQ", "UNICODE_ESC", "OCTAL_ESC", "HEX_DIGIT", "'{'", "'}'", "'DATATYPES'", "':'", "';'" - }; - public static final int T__25=25; - public static final int T__24=24; - public static final int T__23=23; - public static final int T__22=22; - public static final int UserGeneList=5; - public static final int T__21=21; - public static final int COMPARISON_OP=10; - public static final int UNICODE_ESC=18; - public static final int OCTAL_ESC=19; - public static final int HEX_DIGIT=20; - public static final int INT=15; - public static final int ID=6; - public static final int EOF=-1; - public static final int DiscreteDataType=12; - public static final int ContinuousDataTypeInequality=14; - public static final int SIGNED_INT=11; - public static final int ESC_SEQ=17; - public static final int WS=16; - public static final int IndividualGene=7; - public static final int DefaultDataTypeSpec=8; - public static final int DataTypeOrLevel=9; - public static final int SIGNED_FLOAT=13; - public static final int STRING=4; - - // delegates - // delegators - - - public completeOncoPrintSpecASTParser(TokenStream input) { - this(input, new RecognizerSharedState()); - } - public completeOncoPrintSpecASTParser(TokenStream input, RecognizerSharedState state) { - super(input, state); - - } - - protected TreeAdaptor adaptor = new CommonTreeAdaptor(); - - public void setTreeAdaptor(TreeAdaptor adaptor) { - this.adaptor = adaptor; - } - public TreeAdaptor getTreeAdaptor() { - return adaptor; - } - - public String[] getTokenNames() { return completeOncoPrintSpecASTParser.tokenNames; } - public String getGrammarFileName() { return "../completeOncoPrintSpecAST.g"; } - - - /* - DAMN, won't work; this returns only an AST, and we don't want to throw exceptions because then the parse won't complete - - Error handling strategy: We serve two purposes, - 1) when calling the root production, oncoPrintSpecification, return a list of all errors, each a String; - similarly for the tree grammar; thus if syntax error(s) occur, the driver program gets all of them, and doesn't call the - tree parser; and if semantics error(s) occur, the driver will get all of them - 2) when calling any other production, as for unit testing, throw an RecognitionException - Implementation: - a) in reportError, determine whether we're in case 1 or 2, and collect or throw accordingly - b) in the root production if errors have been thrown, rethrow the list - */ - - // get a list to hold errors - // TODO: HIGH: UNIT TEST in OncoSpec - ArrayList errorMessages = new ArrayList(); // APG: TMP FIX: Utilities.getErrorMessages(); - - // override to make comprehensible errors for users - public void reportError(RecognitionException e){ - // if we've already reported an error and have not matched a token - // yet successfully, don't report any errors. - if ( state.errorRecovery ) { - //System.err.print("[SPURIOUS] "); - return; - } - state.syntaxErrors++; // don't count spurious - state.errorRecovery = true; - displayRecognitionError(this.getTokenNames(), e); - } - - public void displayRecognitionError(String[] tokenNames, RecognitionException e) { - // String hdr = getErrorHeader(e); - int normalPos = e.charPositionInLine + 1; - String hdr = "Syntax error at char " + normalPos + " of line "+e.line+": "; - String msg = getErrorMessage(e, tokenNames); - // TODO: change this to print to a tmp file - // get ASTparser to write errors to a PrintStream, connected to a file - // System.err.println( hdr + msg); - errorMessages.add( hdr + msg ); - } - - public String getErrorMessage(RecognitionException e, String[] tokenNames) { - String msg = e.getMessage(); - // emitErrorMessage( "APG received " + e.getClass().getName() + " with token " + e.token.getText() ); - - if (e instanceof UnwantedTokenException) { - UnwantedTokenException ute = (UnwantedTokenException) e; - String tokenName = ""; - if (ute.expecting == Token.EOF) { - tokenName = "EOF"; - } else { - tokenName = tokenNames[ute.expecting]; - } - msg = "extraneous input " + getTokenErrorDisplay(ute.getUnexpectedToken()) + " expecting " - + tokenName; - } else if (e instanceof MissingTokenException) { - MissingTokenException mte = (MissingTokenException) e; - String tokenName = ""; - if (mte.expecting == Token.EOF) { - tokenName = "EOF"; - } else { - tokenName = tokenNames[mte.expecting]; - } - msg = "missing " + tokenName + " at " + getTokenErrorDisplay(e.token); - } else if (e instanceof MismatchedTokenException) { - MismatchedTokenException mte = (MismatchedTokenException) e; - String tokenName = ""; - if (mte.expecting == Token.EOF) { - tokenName = "EOF"; - } else { - tokenName = tokenNames[mte.expecting]; - } - msg = "mismatched input " + getTokenErrorDisplay(e.token) + " expecting " + tokenName; - } else if (e instanceof MismatchedTreeNodeException) { - MismatchedTreeNodeException mtne = (MismatchedTreeNodeException) e; - String tokenName = ""; - if (mtne.expecting == Token.EOF) { - tokenName = "EOF"; - } else { - tokenName = tokenNames[mtne.expecting]; - } - msg = "mismatched tree node: " + mtne.node + " expecting " + tokenName; - } else if (e instanceof NoViableAltException) { - // NoViableAltException nvae = (NoViableAltException)e; - // for development, can add - // "decision=<<"+nvae.grammarDecisionDescription+">>" - // and "(decision="+nvae.decisionNumber+") and - // "state "+nvae.stateNumber - msg = "Syntax error at " + getTokenErrorDisplay(e.token); - } else if (e instanceof EarlyExitException) { - // EarlyExitException eee = (EarlyExitException)e; - // for development, can add "(decision="+eee.decisionNumber+")" - // TODO: better error message - msg = "found empty list at " // "required (...)+ loop did not match anything at input " - + getTokenErrorDisplay(e.token); - } else if (e instanceof MismatchedSetException) { - MismatchedSetException mse = (MismatchedSetException) e; - msg = "mismatched input " + getTokenErrorDisplay(e.token) + "."; // + " expecting set " + mse.expecting; - } else if (e instanceof MismatchedNotSetException) { - MismatchedNotSetException mse = (MismatchedNotSetException) e; - msg = "mismatched input " + getTokenErrorDisplay(e.token) + "."; // + " expecting set " + mse.expecting; - } else if (e instanceof FailedPredicateException) { - FailedPredicateException fpe = (FailedPredicateException) e; - // msg = "rule " + fpe.ruleName + " failed predicate: {" + fpe.predicateText + "}?"; - // msg = "token '" + e.token.getText() + "' is not a valid '" + lookupDataTypeName( fpe.ruleName ) +"'."; - } - return msg; - } - - - public static class oncoPrintSpecification_return extends ParserRuleReturnScope { - Object tree; - public Object getTree() { return tree; } - }; - - // $ANTLR start "oncoPrintSpecification" - // ../completeOncoPrintSpecAST.g:126:1: oncoPrintSpecification : ( userGeneList )+ -> ( userGeneList )+ ; - public final completeOncoPrintSpecASTParser.oncoPrintSpecification_return oncoPrintSpecification() throws RecognitionException { - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getFileName() + ":" + Thread.currentThread().getStackTrace()[1].getLineNumber()); - completeOncoPrintSpecASTParser.oncoPrintSpecification_return retval = new completeOncoPrintSpecASTParser.oncoPrintSpecification_return(); - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getFileName() + ":" + Thread.currentThread().getStackTrace()[1].getLineNumber()); - retval.start = input.LT(1); - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getFileName() + ":" + Thread.currentThread().getStackTrace()[1].getLineNumber()); - - Object root_0 = null; - - completeOncoPrintSpecASTParser.userGeneList_return userGeneList1 = null; - - // for debugging System.err.println( "at " + Thread.currentThread().getStackTrace()[1].getFileName() + ":" + Thread.currentThread().getStackTrace()[1].getLineNumber()); - - RewriteRuleSubtreeStream stream_userGeneList=new RewriteRuleSubtreeStream(adaptor,"rule userGeneList"); - try { - // ../completeOncoPrintSpecAST.g:127:2: ( ( userGeneList )+ -> ( userGeneList )+ ) - // ../completeOncoPrintSpecAST.g:128:2: ( userGeneList )+ - { - // ../completeOncoPrintSpecAST.g:128:2: ( userGeneList )+ - int cnt1=0; - loop1: - do { - int alt1=2; - int LA1_0 = input.LA(1); - - if ( (LA1_0==STRING||LA1_0==ID||LA1_0==21||LA1_0==23) ) { - alt1=1; - } - - - switch (alt1) { - case 1 : - // ../completeOncoPrintSpecAST.g:128:4: userGeneList - { - pushFollow(FOLLOW_userGeneList_in_oncoPrintSpecification45); - userGeneList1=userGeneList(); - - state._fsp--; - - stream_userGeneList.add(userGeneList1.getTree()); - - } - break; - - default : - if ( cnt1 >= 1 ) break loop1; - EarlyExitException eee = - new EarlyExitException(1, input); - throw eee; - } - cnt1++; - } while (true); - - - - // AST REWRITE - // elements: userGeneList - // token labels: - // rule labels: retval - // token list labels: - // rule list labels: - // wildcard labels: - retval.tree = root_0; - RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null); - - root_0 = (Object)adaptor.nil(); - // 128:20: -> ( userGeneList )+ - { - if ( !(stream_userGeneList.hasNext()) ) { - throw new RewriteEarlyExitException(); - } - while ( stream_userGeneList.hasNext() ) { - adaptor.addChild(root_0, stream_userGeneList.nextTree()); - - } - stream_userGeneList.reset(); - - } - - retval.tree = root_0; - } - - retval.stop = input.LT(-1); - - retval.tree = (Object)adaptor.rulePostProcessing(root_0); - adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop); - - } - catch (RecognitionException re) { - reportError(re); - recover(input,re); - retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); - - } - finally { - } - return retval; - } - // $ANTLR end "oncoPrintSpecification" - - public static class userGeneList_return extends ParserRuleReturnScope { - Object tree; - public Object getTree() { return tree; } - }; - - // $ANTLR start "userGeneList" - // ../completeOncoPrintSpecAST.g:131:1: userGeneList : ( geneList | ( '{' geneList '}' | STRING '{' geneList '}' ) -> ^( UserGeneList geneList ( STRING )? ) ); - public final completeOncoPrintSpecASTParser.userGeneList_return userGeneList() throws RecognitionException { - completeOncoPrintSpecASTParser.userGeneList_return retval = new completeOncoPrintSpecASTParser.userGeneList_return(); - retval.start = input.LT(1); - - Object root_0 = null; - - Token char_literal3=null; - Token char_literal5=null; - Token STRING6=null; - Token char_literal7=null; - Token char_literal9=null; - completeOncoPrintSpecASTParser.geneList_return geneList2 = null; - - completeOncoPrintSpecASTParser.geneList_return geneList4 = null; - - completeOncoPrintSpecASTParser.geneList_return geneList8 = null; - - - Object char_literal3_tree=null; - Object char_literal5_tree=null; - Object STRING6_tree=null; - Object char_literal7_tree=null; - Object char_literal9_tree=null; - RewriteRuleTokenStream stream_21=new RewriteRuleTokenStream(adaptor,"token 21"); - RewriteRuleTokenStream stream_22=new RewriteRuleTokenStream(adaptor,"token 22"); - RewriteRuleTokenStream stream_STRING=new RewriteRuleTokenStream(adaptor,"token STRING"); - RewriteRuleSubtreeStream stream_geneList=new RewriteRuleSubtreeStream(adaptor,"rule geneList"); - try { - // ../completeOncoPrintSpecAST.g:132:2: ( geneList | ( '{' geneList '}' | STRING '{' geneList '}' ) -> ^( UserGeneList geneList ( STRING )? ) ) - int alt3=2; - int LA3_0 = input.LA(1); - - if ( (LA3_0==ID||LA3_0==23) ) { - alt3=1; - } - else if ( (LA3_0==STRING||LA3_0==21) ) { - alt3=2; - } - else { - NoViableAltException nvae = - new NoViableAltException("", 3, 0, input); - - throw nvae; - } - switch (alt3) { - case 1 : - // ../completeOncoPrintSpecAST.g:133:2: geneList - { - root_0 = (Object)adaptor.nil(); - - pushFollow(FOLLOW_geneList_in_userGeneList65); - geneList2=geneList(); - - state._fsp--; - - adaptor.addChild(root_0, geneList2.getTree()); - - } - break; - case 2 : - // ../completeOncoPrintSpecAST.g:135:2: ( '{' geneList '}' | STRING '{' geneList '}' ) - { - // ../completeOncoPrintSpecAST.g:135:2: ( '{' geneList '}' | STRING '{' geneList '}' ) - int alt2=2; - int LA2_0 = input.LA(1); - - if ( (LA2_0==21) ) { - alt2=1; - } - else if ( (LA2_0==STRING) ) { - alt2=2; - } - else { - NoViableAltException nvae = - new NoViableAltException("", 2, 0, input); - - throw nvae; - } - switch (alt2) { - case 1 : - // ../completeOncoPrintSpecAST.g:135:4: '{' geneList '}' - { - char_literal3=(Token)match(input,21,FOLLOW_21_in_userGeneList75); - stream_21.add(char_literal3); - - pushFollow(FOLLOW_geneList_in_userGeneList77); - geneList4=geneList(); - - state._fsp--; - - stream_geneList.add(geneList4.getTree()); - char_literal5=(Token)match(input,22,FOLLOW_22_in_userGeneList79); - stream_22.add(char_literal5); - - - } - break; - case 2 : - // ../completeOncoPrintSpecAST.g:136:4: STRING '{' geneList '}' - { - STRING6=(Token)match(input,STRING,FOLLOW_STRING_in_userGeneList85); - stream_STRING.add(STRING6); - - char_literal7=(Token)match(input,21,FOLLOW_21_in_userGeneList87); - stream_21.add(char_literal7); - - pushFollow(FOLLOW_geneList_in_userGeneList89); - geneList8=geneList(); - - state._fsp--; - - stream_geneList.add(geneList8.getTree()); - char_literal9=(Token)match(input,22,FOLLOW_22_in_userGeneList91); - stream_22.add(char_literal9); - - - } - break; - - } - - - - // AST REWRITE - // elements: STRING, geneList - // token labels: - // rule labels: retval - // token list labels: - // rule list labels: - // wildcard labels: - retval.tree = root_0; - RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null); - - root_0 = (Object)adaptor.nil(); - // 136:30: -> ^( UserGeneList geneList ( STRING )? ) - { - // ../completeOncoPrintSpecAST.g:136:33: ^( UserGeneList geneList ( STRING )? ) - { - Object root_1 = (Object)adaptor.nil(); - root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(UserGeneList, "UserGeneList"), root_1); - - adaptor.addChild(root_1, stream_geneList.nextTree()); - // ../completeOncoPrintSpecAST.g:136:57: ( STRING )? - if ( stream_STRING.hasNext() ) { - adaptor.addChild(root_1, stream_STRING.nextNode()); - - } - stream_STRING.reset(); - - adaptor.addChild(root_0, root_1); - } - - } - - retval.tree = root_0; - } - break; - - } - retval.stop = input.LT(-1); - - retval.tree = (Object)adaptor.rulePostProcessing(root_0); - adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop); - - } - catch (RecognitionException re) { - reportError(re); - recover(input,re); - retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); - - } - finally { - } - return retval; - } - // $ANTLR end "userGeneList" - - public static class geneList_return extends ParserRuleReturnScope { - Object tree; - public Object getTree() { return tree; } - }; - - // $ANTLR start "geneList" - // ../completeOncoPrintSpecAST.g:141:1: geneList : ( individualGene | defaultDataTypeSpec )+ ; - public final completeOncoPrintSpecASTParser.geneList_return geneList() throws RecognitionException { - completeOncoPrintSpecASTParser.geneList_return retval = new completeOncoPrintSpecASTParser.geneList_return(); - retval.start = input.LT(1); - - Object root_0 = null; - - completeOncoPrintSpecASTParser.individualGene_return individualGene10 = null; - - completeOncoPrintSpecASTParser.defaultDataTypeSpec_return defaultDataTypeSpec11 = null; - - - - try { - // ../completeOncoPrintSpecAST.g:142:2: ( ( individualGene | defaultDataTypeSpec )+ ) - // ../completeOncoPrintSpecAST.g:146:2: ( individualGene | defaultDataTypeSpec )+ - { - root_0 = (Object)adaptor.nil(); - - // ../completeOncoPrintSpecAST.g:146:2: ( individualGene | defaultDataTypeSpec )+ - int cnt4=0; - loop4: - do { - int alt4=3; - int LA4_0 = input.LA(1); - - if ( (LA4_0==ID) ) { - alt4=1; - } - else if ( (LA4_0==23) ) { - alt4=2; - } - - - switch (alt4) { - case 1 : - // ../completeOncoPrintSpecAST.g:146:4: individualGene - { - pushFollow(FOLLOW_individualGene_in_geneList135); - individualGene10=individualGene(); - - state._fsp--; - - adaptor.addChild(root_0, individualGene10.getTree()); - - } - break; - case 2 : - // ../completeOncoPrintSpecAST.g:146:21: defaultDataTypeSpec - { - pushFollow(FOLLOW_defaultDataTypeSpec_in_geneList139); - defaultDataTypeSpec11=defaultDataTypeSpec(); - - state._fsp--; - - adaptor.addChild(root_0, defaultDataTypeSpec11.getTree()); - - } - break; - - default : - if ( cnt4 >= 1 ) break loop4; - EarlyExitException eee = - new EarlyExitException(4, input); - throw eee; - } - cnt4++; - } while (true); - - - } - - retval.stop = input.LT(-1); - - retval.tree = (Object)adaptor.rulePostProcessing(root_0); - adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop); - - } - catch (RecognitionException re) { - reportError(re); - recover(input,re); - retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); - - } - finally { - } - return retval; - } - // $ANTLR end "geneList" - - public static class individualGene_return extends ParserRuleReturnScope { - Object tree; - public Object getTree() { return tree; } - }; - - // $ANTLR start "individualGene" - // ../completeOncoPrintSpecAST.g:150:1: individualGene : ID ( fullDataTypeSpec )? -> ^( IndividualGene ID ( fullDataTypeSpec )? ) ; - public final completeOncoPrintSpecASTParser.individualGene_return individualGene() throws RecognitionException { - completeOncoPrintSpecASTParser.individualGene_return retval = new completeOncoPrintSpecASTParser.individualGene_return(); - retval.start = input.LT(1); - - Object root_0 = null; - - Token ID12=null; - completeOncoPrintSpecASTParser.fullDataTypeSpec_return fullDataTypeSpec13 = null; - - - Object ID12_tree=null; - RewriteRuleTokenStream stream_ID=new RewriteRuleTokenStream(adaptor,"token ID"); - RewriteRuleSubtreeStream stream_fullDataTypeSpec=new RewriteRuleSubtreeStream(adaptor,"rule fullDataTypeSpec"); - try { - // ../completeOncoPrintSpecAST.g:151:2: ( ID ( fullDataTypeSpec )? -> ^( IndividualGene ID ( fullDataTypeSpec )? ) ) - // ../completeOncoPrintSpecAST.g:152:2: ID ( fullDataTypeSpec )? - { - ID12=(Token)match(input,ID,FOLLOW_ID_in_individualGene155); - stream_ID.add(ID12); - - // ../completeOncoPrintSpecAST.g:152:5: ( fullDataTypeSpec )? - int alt5=2; - int LA5_0 = input.LA(1); - - if ( (LA5_0==24) ) { - alt5=1; - } - switch (alt5) { - case 1 : - // ../completeOncoPrintSpecAST.g:152:5: fullDataTypeSpec - { - pushFollow(FOLLOW_fullDataTypeSpec_in_individualGene157); - fullDataTypeSpec13=fullDataTypeSpec(); - - state._fsp--; - - stream_fullDataTypeSpec.add(fullDataTypeSpec13.getTree()); - - } - break; - - } - - - - // AST REWRITE - // elements: ID, fullDataTypeSpec - // token labels: - // rule labels: retval - // token list labels: - // rule list labels: - // wildcard labels: - retval.tree = root_0; - RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null); - - root_0 = (Object)adaptor.nil(); - // 152:23: -> ^( IndividualGene ID ( fullDataTypeSpec )? ) - { - // ../completeOncoPrintSpecAST.g:152:26: ^( IndividualGene ID ( fullDataTypeSpec )? ) - { - Object root_1 = (Object)adaptor.nil(); - root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(IndividualGene, "IndividualGene"), root_1); - - adaptor.addChild(root_1, stream_ID.nextNode()); - // ../completeOncoPrintSpecAST.g:152:46: ( fullDataTypeSpec )? - if ( stream_fullDataTypeSpec.hasNext() ) { - adaptor.addChild(root_1, stream_fullDataTypeSpec.nextTree()); - - } - stream_fullDataTypeSpec.reset(); - - adaptor.addChild(root_0, root_1); - } - - } - - retval.tree = root_0; - } - - retval.stop = input.LT(-1); - - retval.tree = (Object)adaptor.rulePostProcessing(root_0); - adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop); - - } - catch (RecognitionException re) { - reportError(re); - recover(input,re); - retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); - - } - finally { - } - return retval; - } - // $ANTLR end "individualGene" - - public static class defaultDataTypeSpec_return extends ParserRuleReturnScope { - Object tree; - public Object getTree() { return tree; } - }; - - // $ANTLR start "defaultDataTypeSpec" - // ../completeOncoPrintSpecAST.g:158:1: defaultDataTypeSpec : 'DATATYPES' fullDataTypeSpec -> ^( DefaultDataTypeSpec fullDataTypeSpec ) ; - public final completeOncoPrintSpecASTParser.defaultDataTypeSpec_return defaultDataTypeSpec() throws RecognitionException { - completeOncoPrintSpecASTParser.defaultDataTypeSpec_return retval = new completeOncoPrintSpecASTParser.defaultDataTypeSpec_return(); - retval.start = input.LT(1); - - Object root_0 = null; - - Token string_literal14=null; - completeOncoPrintSpecASTParser.fullDataTypeSpec_return fullDataTypeSpec15 = null; - - - Object string_literal14_tree=null; - RewriteRuleTokenStream stream_23=new RewriteRuleTokenStream(adaptor,"token 23"); - RewriteRuleSubtreeStream stream_fullDataTypeSpec=new RewriteRuleSubtreeStream(adaptor,"rule fullDataTypeSpec"); - try { - // ../completeOncoPrintSpecAST.g:159:2: ( 'DATATYPES' fullDataTypeSpec -> ^( DefaultDataTypeSpec fullDataTypeSpec ) ) - // ../completeOncoPrintSpecAST.g:159:4: 'DATATYPES' fullDataTypeSpec - { - string_literal14=(Token)match(input,23,FOLLOW_23_in_defaultDataTypeSpec190); - stream_23.add(string_literal14); - - pushFollow(FOLLOW_fullDataTypeSpec_in_defaultDataTypeSpec194); - fullDataTypeSpec15=fullDataTypeSpec(); - - state._fsp--; - - stream_fullDataTypeSpec.add(fullDataTypeSpec15.getTree()); - - - // AST REWRITE - // elements: fullDataTypeSpec - // token labels: - // rule labels: retval - // token list labels: - // rule list labels: - // wildcard labels: - retval.tree = root_0; - RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null); - - root_0 = (Object)adaptor.nil(); - // 160:19: -> ^( DefaultDataTypeSpec fullDataTypeSpec ) - { - // ../completeOncoPrintSpecAST.g:160:22: ^( DefaultDataTypeSpec fullDataTypeSpec ) - { - Object root_1 = (Object)adaptor.nil(); - root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(DefaultDataTypeSpec, "DefaultDataTypeSpec"), root_1); - - adaptor.addChild(root_1, stream_fullDataTypeSpec.nextTree()); - - adaptor.addChild(root_0, root_1); - } - - } - - retval.tree = root_0; - } - - retval.stop = input.LT(-1); - - retval.tree = (Object)adaptor.rulePostProcessing(root_0); - adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop); - - } - catch (RecognitionException re) { - reportError(re); - recover(input,re); - retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); - - } - finally { - } - return retval; - } - // $ANTLR end "defaultDataTypeSpec" - - public static class fullDataTypeSpec_return extends ParserRuleReturnScope { - Object tree; - public Object getTree() { return tree; } - }; - - // $ANTLR start "fullDataTypeSpec" - // ../completeOncoPrintSpecAST.g:166:1: fullDataTypeSpec : ':' ( dataTypeSpec )+ ';' -> ( dataTypeSpec )+ ; - public final completeOncoPrintSpecASTParser.fullDataTypeSpec_return fullDataTypeSpec() throws RecognitionException { - completeOncoPrintSpecASTParser.fullDataTypeSpec_return retval = new completeOncoPrintSpecASTParser.fullDataTypeSpec_return(); - retval.start = input.LT(1); - - Object root_0 = null; - - Token char_literal16=null; - Token char_literal18=null; - completeOncoPrintSpecASTParser.dataTypeSpec_return dataTypeSpec17 = null; - - - Object char_literal16_tree=null; - Object char_literal18_tree=null; - RewriteRuleTokenStream stream_24=new RewriteRuleTokenStream(adaptor,"token 24"); - RewriteRuleTokenStream stream_25=new RewriteRuleTokenStream(adaptor,"token 25"); - RewriteRuleSubtreeStream stream_dataTypeSpec=new RewriteRuleSubtreeStream(adaptor,"rule dataTypeSpec"); - try { - // ../completeOncoPrintSpecAST.g:167:2: ( ':' ( dataTypeSpec )+ ';' -> ( dataTypeSpec )+ ) - // ../completeOncoPrintSpecAST.g:167:4: ':' ( dataTypeSpec )+ ';' - { - char_literal16=(Token)match(input,24,FOLLOW_24_in_fullDataTypeSpec222); - stream_24.add(char_literal16); - - // ../completeOncoPrintSpecAST.g:167:8: ( dataTypeSpec )+ - int cnt6=0; - loop6: - do { - int alt6=2; - int LA6_0 = input.LA(1); - - if ( (LA6_0==ID) ) { - alt6=1; - } - - - switch (alt6) { - case 1 : - // ../completeOncoPrintSpecAST.g:167:10: dataTypeSpec - { - pushFollow(FOLLOW_dataTypeSpec_in_fullDataTypeSpec226); - dataTypeSpec17=dataTypeSpec(); - - state._fsp--; - - stream_dataTypeSpec.add(dataTypeSpec17.getTree()); - - } - break; - - default : - if ( cnt6 >= 1 ) break loop6; - EarlyExitException eee = - new EarlyExitException(6, input); - throw eee; - } - cnt6++; - } while (true); - - char_literal18=(Token)match(input,25,FOLLOW_25_in_fullDataTypeSpec231); - stream_25.add(char_literal18); - - - - // AST REWRITE - // elements: dataTypeSpec - // token labels: - // rule labels: retval - // token list labels: - // rule list labels: - // wildcard labels: - retval.tree = root_0; - RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null); - - root_0 = (Object)adaptor.nil(); - // 167:30: -> ( dataTypeSpec )+ - { - if ( !(stream_dataTypeSpec.hasNext()) ) { - throw new RewriteEarlyExitException(); - } - while ( stream_dataTypeSpec.hasNext() ) { - adaptor.addChild(root_0, stream_dataTypeSpec.nextTree()); - - } - stream_dataTypeSpec.reset(); - - } - - retval.tree = root_0; - } - - retval.stop = input.LT(-1); - - retval.tree = (Object)adaptor.rulePostProcessing(root_0); - adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop); - - } - catch (RecognitionException re) { - reportError(re); - recover(input,re); - retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); - - } - finally { - } - return retval; - } - // $ANTLR end "fullDataTypeSpec" - - public static class dataTypeSpec_return extends ParserRuleReturnScope { - Object tree; - public Object getTree() { return tree; } - }; - - // $ANTLR start "dataTypeSpec" - // ../completeOncoPrintSpecAST.g:172:1: dataTypeSpec : ( ID -> ^( DataTypeOrLevel ID ) | discreteDataType | continuousDataTypeInequality ); - public final completeOncoPrintSpecASTParser.dataTypeSpec_return dataTypeSpec() throws RecognitionException { - completeOncoPrintSpecASTParser.dataTypeSpec_return retval = new completeOncoPrintSpecASTParser.dataTypeSpec_return(); - retval.start = input.LT(1); - - Object root_0 = null; - - Token ID19=null; - completeOncoPrintSpecASTParser.discreteDataType_return discreteDataType20 = null; - - completeOncoPrintSpecASTParser.continuousDataTypeInequality_return continuousDataTypeInequality21 = null; - - - Object ID19_tree=null; - RewriteRuleTokenStream stream_ID=new RewriteRuleTokenStream(adaptor,"token ID"); - - try { - // ../completeOncoPrintSpecAST.g:173:2: ( ID -> ^( DataTypeOrLevel ID ) | discreteDataType | continuousDataTypeInequality ) - int alt7=3; - int LA7_0 = input.LA(1); - - if ( (LA7_0==ID) ) { - switch ( input.LA(2) ) { - case COMPARISON_OP: - { - int LA7_2 = input.LA(3); - - if ( (LA7_2==ID) ) { - alt7=2; - } - else if ( (LA7_2==SIGNED_INT||LA7_2==SIGNED_FLOAT) ) { - alt7=3; - } - else { - NoViableAltException nvae = - new NoViableAltException("", 7, 2, input); - - throw nvae; - } - } - break; - case SIGNED_INT: - { - alt7=2; - } - break; - case ID: - case 25: - { - alt7=1; - } - break; - default: - NoViableAltException nvae = - new NoViableAltException("", 7, 1, input); - - throw nvae; - } - - } - else { - NoViableAltException nvae = - new NoViableAltException("", 7, 0, input); - - throw nvae; - } - switch (alt7) { - case 1 : - // ../completeOncoPrintSpecAST.g:174:2: ID - { - ID19=(Token)match(input,ID,FOLLOW_ID_in_dataTypeSpec251); - stream_ID.add(ID19); - - - - // AST REWRITE - // elements: ID - // token labels: - // rule labels: retval - // token list labels: - // rule list labels: - // wildcard labels: - retval.tree = root_0; - RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null); - - root_0 = (Object)adaptor.nil(); - // 174:5: -> ^( DataTypeOrLevel ID ) - { - // ../completeOncoPrintSpecAST.g:174:8: ^( DataTypeOrLevel ID ) - { - Object root_1 = (Object)adaptor.nil(); - root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(DataTypeOrLevel, "DataTypeOrLevel"), root_1); - - adaptor.addChild(root_1, stream_ID.nextNode()); - - adaptor.addChild(root_0, root_1); - } - - } - - retval.tree = root_0; - } - break; - case 2 : - // ../completeOncoPrintSpecAST.g:175:4: discreteDataType - { - root_0 = (Object)adaptor.nil(); - - pushFollow(FOLLOW_discreteDataType_in_dataTypeSpec265); - discreteDataType20=discreteDataType(); - - state._fsp--; - - adaptor.addChild(root_0, discreteDataType20.getTree()); - - } - break; - case 3 : - // ../completeOncoPrintSpecAST.g:176:4: continuousDataTypeInequality - { - root_0 = (Object)adaptor.nil(); - - pushFollow(FOLLOW_continuousDataTypeInequality_in_dataTypeSpec271); - continuousDataTypeInequality21=continuousDataTypeInequality(); - - state._fsp--; - - adaptor.addChild(root_0, continuousDataTypeInequality21.getTree()); - - } - break; - - } - retval.stop = input.LT(-1); - - retval.tree = (Object)adaptor.rulePostProcessing(root_0); - adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop); - - } - catch (RecognitionException re) { - reportError(re); - recover(input,re); - retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); - - } - finally { - } - return retval; - } - // $ANTLR end "dataTypeSpec" - - public static class discreteDataType_return extends ParserRuleReturnScope { - Object tree; - public Object getTree() { return tree; } - }; - - // $ANTLR start "discreteDataType" - // ../completeOncoPrintSpecAST.g:182:1: discreteDataType : ( ( ID COMPARISON_OP ID ) -> ^( DiscreteDataType ID COMPARISON_OP ID ) | ( ID SIGNED_INT ) -> ^( DiscreteDataType ID SIGNED_INT ) ); - public final completeOncoPrintSpecASTParser.discreteDataType_return discreteDataType() throws RecognitionException { - completeOncoPrintSpecASTParser.discreteDataType_return retval = new completeOncoPrintSpecASTParser.discreteDataType_return(); - retval.start = input.LT(1); - - Object root_0 = null; - - Token ID22=null; - Token COMPARISON_OP23=null; - Token ID24=null; - Token ID25=null; - Token SIGNED_INT26=null; - - Object ID22_tree=null; - Object COMPARISON_OP23_tree=null; - Object ID24_tree=null; - Object ID25_tree=null; - Object SIGNED_INT26_tree=null; - RewriteRuleTokenStream stream_SIGNED_INT=new RewriteRuleTokenStream(adaptor,"token SIGNED_INT"); - RewriteRuleTokenStream stream_ID=new RewriteRuleTokenStream(adaptor,"token ID"); - RewriteRuleTokenStream stream_COMPARISON_OP=new RewriteRuleTokenStream(adaptor,"token COMPARISON_OP"); - - try { - // ../completeOncoPrintSpecAST.g:183:2: ( ( ID COMPARISON_OP ID ) -> ^( DiscreteDataType ID COMPARISON_OP ID ) | ( ID SIGNED_INT ) -> ^( DiscreteDataType ID SIGNED_INT ) ) - int alt8=2; - int LA8_0 = input.LA(1); - - if ( (LA8_0==ID) ) { - int LA8_1 = input.LA(2); - - if ( (LA8_1==COMPARISON_OP) ) { - alt8=1; - } - else if ( (LA8_1==SIGNED_INT) ) { - alt8=2; - } - else { - NoViableAltException nvae = - new NoViableAltException("", 8, 1, input); - - throw nvae; - } - } - else { - NoViableAltException nvae = - new NoViableAltException("", 8, 0, input); - - throw nvae; - } - switch (alt8) { - case 1 : - // ../completeOncoPrintSpecAST.g:184:2: ( ID COMPARISON_OP ID ) - { - // ../completeOncoPrintSpecAST.g:184:2: ( ID COMPARISON_OP ID ) - // ../completeOncoPrintSpecAST.g:184:4: ID COMPARISON_OP ID - { - ID22=(Token)match(input,ID,FOLLOW_ID_in_discreteDataType297); - stream_ID.add(ID22); - - COMPARISON_OP23=(Token)match(input,COMPARISON_OP,FOLLOW_COMPARISON_OP_in_discreteDataType299); - stream_COMPARISON_OP.add(COMPARISON_OP23); - - ID24=(Token)match(input,ID,FOLLOW_ID_in_discreteDataType301); - stream_ID.add(ID24); - - - } - - - - // AST REWRITE - // elements: ID, COMPARISON_OP, ID - // token labels: - // rule labels: retval - // token list labels: - // rule list labels: - // wildcard labels: - retval.tree = root_0; - RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null); - - root_0 = (Object)adaptor.nil(); - // 184:25: -> ^( DiscreteDataType ID COMPARISON_OP ID ) - { - // ../completeOncoPrintSpecAST.g:184:28: ^( DiscreteDataType ID COMPARISON_OP ID ) - { - Object root_1 = (Object)adaptor.nil(); - root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(DiscreteDataType, "DiscreteDataType"), root_1); - - adaptor.addChild(root_1, stream_ID.nextNode()); - adaptor.addChild(root_1, stream_COMPARISON_OP.nextNode()); - adaptor.addChild(root_1, stream_ID.nextNode()); - - adaptor.addChild(root_0, root_1); - } - - } - - retval.tree = root_0; - } - break; - case 2 : - // ../completeOncoPrintSpecAST.g:185:4: ( ID SIGNED_INT ) - { - // ../completeOncoPrintSpecAST.g:185:4: ( ID SIGNED_INT ) - // ../completeOncoPrintSpecAST.g:185:6: ID SIGNED_INT - { - ID25=(Token)match(input,ID,FOLLOW_ID_in_discreteDataType323); - stream_ID.add(ID25); - - SIGNED_INT26=(Token)match(input,SIGNED_INT,FOLLOW_SIGNED_INT_in_discreteDataType325); - stream_SIGNED_INT.add(SIGNED_INT26); - - - } - - - - // AST REWRITE - // elements: ID, SIGNED_INT - // token labels: - // rule labels: retval - // token list labels: - // rule list labels: - // wildcard labels: - retval.tree = root_0; - RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null); - - root_0 = (Object)adaptor.nil(); - // 185:22: -> ^( DiscreteDataType ID SIGNED_INT ) - { - // ../completeOncoPrintSpecAST.g:185:25: ^( DiscreteDataType ID SIGNED_INT ) - { - Object root_1 = (Object)adaptor.nil(); - root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(DiscreteDataType, "DiscreteDataType"), root_1); - - adaptor.addChild(root_1, stream_ID.nextNode()); - adaptor.addChild(root_1, stream_SIGNED_INT.nextNode()); - - adaptor.addChild(root_0, root_1); - } - - } - - retval.tree = root_0; - } - break; - - } - retval.stop = input.LT(-1); - - retval.tree = (Object)adaptor.rulePostProcessing(root_0); - adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop); - - } - catch (RecognitionException re) { - reportError(re); - recover(input,re); - retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); - - } - finally { - } - return retval; - } - // $ANTLR end "discreteDataType" - - public static class continuousDataTypeInequality_return extends ParserRuleReturnScope { - Object tree; - public Object getTree() { return tree; } - }; - - // $ANTLR start "continuousDataTypeInequality" - // ../completeOncoPrintSpecAST.g:190:1: continuousDataTypeInequality : ( ID COMPARISON_OP floatOrInt ) -> ^( ContinuousDataTypeInequality ID COMPARISON_OP floatOrInt ) ; - public final completeOncoPrintSpecASTParser.continuousDataTypeInequality_return continuousDataTypeInequality() throws RecognitionException { - completeOncoPrintSpecASTParser.continuousDataTypeInequality_return retval = new completeOncoPrintSpecASTParser.continuousDataTypeInequality_return(); - retval.start = input.LT(1); - - Object root_0 = null; - - Token ID27=null; - Token COMPARISON_OP28=null; - completeOncoPrintSpecASTParser.floatOrInt_return floatOrInt29 = null; - - - Object ID27_tree=null; - Object COMPARISON_OP28_tree=null; - RewriteRuleTokenStream stream_ID=new RewriteRuleTokenStream(adaptor,"token ID"); - RewriteRuleTokenStream stream_COMPARISON_OP=new RewriteRuleTokenStream(adaptor,"token COMPARISON_OP"); - RewriteRuleSubtreeStream stream_floatOrInt=new RewriteRuleSubtreeStream(adaptor,"rule floatOrInt"); - try { - // ../completeOncoPrintSpecAST.g:191:2: ( ( ID COMPARISON_OP floatOrInt ) -> ^( ContinuousDataTypeInequality ID COMPARISON_OP floatOrInt ) ) - // ../completeOncoPrintSpecAST.g:192:2: ( ID COMPARISON_OP floatOrInt ) - { - // ../completeOncoPrintSpecAST.g:192:2: ( ID COMPARISON_OP floatOrInt ) - // ../completeOncoPrintSpecAST.g:192:4: ID COMPARISON_OP floatOrInt - { - ID27=(Token)match(input,ID,FOLLOW_ID_in_continuousDataTypeInequality366); - stream_ID.add(ID27); - - COMPARISON_OP28=(Token)match(input,COMPARISON_OP,FOLLOW_COMPARISON_OP_in_continuousDataTypeInequality368); - stream_COMPARISON_OP.add(COMPARISON_OP28); - - pushFollow(FOLLOW_floatOrInt_in_continuousDataTypeInequality370); - floatOrInt29=floatOrInt(); - - state._fsp--; - - stream_floatOrInt.add(floatOrInt29.getTree()); - - } - - - - // AST REWRITE - // elements: ID, floatOrInt, COMPARISON_OP - // token labels: - // rule labels: retval - // token list labels: - // rule list labels: - // wildcard labels: - retval.tree = root_0; - RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null); - - root_0 = (Object)adaptor.nil(); - // 192:34: -> ^( ContinuousDataTypeInequality ID COMPARISON_OP floatOrInt ) - { - // ../completeOncoPrintSpecAST.g:193:3: ^( ContinuousDataTypeInequality ID COMPARISON_OP floatOrInt ) - { - Object root_1 = (Object)adaptor.nil(); - root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(ContinuousDataTypeInequality, "ContinuousDataTypeInequality"), root_1); - - adaptor.addChild(root_1, stream_ID.nextNode()); - adaptor.addChild(root_1, stream_COMPARISON_OP.nextNode()); - adaptor.addChild(root_1, stream_floatOrInt.nextTree()); - - adaptor.addChild(root_0, root_1); - } - - } - - retval.tree = root_0; - } - - retval.stop = input.LT(-1); - - retval.tree = (Object)adaptor.rulePostProcessing(root_0); - adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop); - - } - catch (RecognitionException re) { - reportError(re); - recover(input,re); - retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); - - } - finally { - } - return retval; - } - // $ANTLR end "continuousDataTypeInequality" - - public static class floatOrInt_return extends ParserRuleReturnScope { - Object tree; - public Object getTree() { return tree; } - }; - - // $ANTLR start "floatOrInt" - // ../completeOncoPrintSpecAST.g:196:1: floatOrInt : ( SIGNED_FLOAT | SIGNED_INT ); - public final completeOncoPrintSpecASTParser.floatOrInt_return floatOrInt() throws RecognitionException { - completeOncoPrintSpecASTParser.floatOrInt_return retval = new completeOncoPrintSpecASTParser.floatOrInt_return(); - retval.start = input.LT(1); - - Object root_0 = null; - - Token set30=null; - - Object set30_tree=null; - - try { - // ../completeOncoPrintSpecAST.g:197:2: ( SIGNED_FLOAT | SIGNED_INT ) - // ../completeOncoPrintSpecAST.g: - { - root_0 = (Object)adaptor.nil(); - - set30=(Token)input.LT(1); - if ( input.LA(1)==SIGNED_INT||input.LA(1)==SIGNED_FLOAT ) { - input.consume(); - adaptor.addChild(root_0, (Object)adaptor.create(set30)); - state.errorRecovery=false; - } - else { - MismatchedSetException mse = new MismatchedSetException(null,input); - throw mse; - } - - - } - - retval.stop = input.LT(-1); - - retval.tree = (Object)adaptor.rulePostProcessing(root_0); - adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop); - - } - catch (RecognitionException re) { - reportError(re); - recover(input,re); - retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); - - } - finally { - } - return retval; - } - // $ANTLR end "floatOrInt" - - // Delegated rules - - - - - public static final BitSet FOLLOW_userGeneList_in_oncoPrintSpecification45 = new BitSet(new long[]{0x0000000000A00052L}); - public static final BitSet FOLLOW_geneList_in_userGeneList65 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_21_in_userGeneList75 = new BitSet(new long[]{0x0000000000800040L}); - public static final BitSet FOLLOW_geneList_in_userGeneList77 = new BitSet(new long[]{0x0000000000400000L}); - public static final BitSet FOLLOW_22_in_userGeneList79 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_STRING_in_userGeneList85 = new BitSet(new long[]{0x0000000000200000L}); - public static final BitSet FOLLOW_21_in_userGeneList87 = new BitSet(new long[]{0x0000000000800040L}); - public static final BitSet FOLLOW_geneList_in_userGeneList89 = new BitSet(new long[]{0x0000000000400000L}); - public static final BitSet FOLLOW_22_in_userGeneList91 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_individualGene_in_geneList135 = new BitSet(new long[]{0x0000000000800042L}); - public static final BitSet FOLLOW_defaultDataTypeSpec_in_geneList139 = new BitSet(new long[]{0x0000000000800042L}); - public static final BitSet FOLLOW_ID_in_individualGene155 = new BitSet(new long[]{0x0000000001000002L}); - public static final BitSet FOLLOW_fullDataTypeSpec_in_individualGene157 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_23_in_defaultDataTypeSpec190 = new BitSet(new long[]{0x0000000001000000L}); - public static final BitSet FOLLOW_fullDataTypeSpec_in_defaultDataTypeSpec194 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_24_in_fullDataTypeSpec222 = new BitSet(new long[]{0x0000000000000040L}); - public static final BitSet FOLLOW_dataTypeSpec_in_fullDataTypeSpec226 = new BitSet(new long[]{0x0000000002000040L}); - public static final BitSet FOLLOW_25_in_fullDataTypeSpec231 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_ID_in_dataTypeSpec251 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_discreteDataType_in_dataTypeSpec265 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_continuousDataTypeInequality_in_dataTypeSpec271 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_ID_in_discreteDataType297 = new BitSet(new long[]{0x0000000000000400L}); - public static final BitSet FOLLOW_COMPARISON_OP_in_discreteDataType299 = new BitSet(new long[]{0x0000000000000040L}); - public static final BitSet FOLLOW_ID_in_discreteDataType301 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_ID_in_discreteDataType323 = new BitSet(new long[]{0x0000000000000800L}); - public static final BitSet FOLLOW_SIGNED_INT_in_discreteDataType325 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_ID_in_continuousDataTypeInequality366 = new BitSet(new long[]{0x0000000000000400L}); - public static final BitSet FOLLOW_COMPARISON_OP_in_continuousDataTypeInequality368 = new BitSet(new long[]{0x0000000000002800L}); - public static final BitSet FOLLOW_floatOrInt_in_continuousDataTypeInequality370 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_set_in_floatOrInt0 = new BitSet(new long[]{0x0000000000000002L}); - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecASTwalker.g b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecASTwalker.g deleted file mode 100644 index c8e6553c2b4..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecASTwalker.g +++ /dev/null @@ -1,228 +0,0 @@ -tree grammar completeOncoPrintSpecASTwalker; - -options { - tokenVocab=completeOncoPrintSpecAST; // import tokens from completeOncoPrintSpecAST.g - ASTLabelType=CommonTree; -} -@header { - package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - import java.util.ArrayList; - import org.mskcc.cbio.portal.oncoPrintSpecLanguage.*; - import static java.lang.System.out; -} - -// Alter code generation so catch-clauses get replaced with this action. -@rulecatch { - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } -} - -@members{ - // create default, which can be replaced with 'DATATYPES' specs - OncoPrintGeneDisplaySpec theDefaultOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec( ); - - // APG ERRORS: list of errors - ArrayList listOfErrors; - - public int increment( int n ){ - return n+1; - } - - public void generateOncoError( int charPos, int line, String token, String msg) throws IllegalArgumentException{ - - throw new OncoPrintLangException( "Error at char " + increment(charPos) + " of line " + line + - ": '" + token + "'" + msg ); - } - - // make comprehensible errors for users - // TODO: AVOID DUPLICATION WITH completeOncoPrintSpecAST.g - public void newReportError(OncoPrintLangException e) throws OncoPrintLangException{ - // if we've already reported an error and have not matched a token - // yet successfully, don't report any errors. - if ( state.errorRecovery ) { - //System.err.print("[SPURIOUS] "); - return; - } - state.syntaxErrors++; // don't count spurious - state.errorRecovery = true; - // displayRecognitionError(this.getTokenNames(), e); - /* APG ERROR handling - if collecting errors, add to list - else throw IAE - */ - if( null != listOfErrors){ - listOfErrors.add( e ); - }else{ - throw e; - } - } -} - -// everything is a userGeneList or a geneList, including a gene by itself -oncoPrintSpecification returns [OncoPrintSpecification theOncoPrintSpecification, - ArrayList returnListOfErrors] -@init{ - // ACTION: initialize default OncoPrintSpecification - $theOncoPrintSpecification = new OncoPrintSpecification( ); - // theDefaultOncoPrintGeneDisplaySpec.setDefault(); - - // APG ERRORS: initialize error list - listOfErrors = new ArrayList(); -} - : - ( userGeneList - { - $theOncoPrintSpecification.add( $userGeneList.theGeneSet ); - } - )+ - // APG ERRORS: return list of all exceptions - { - $returnListOfErrors = listOfErrors; - } - ; - -userGeneList returns [GeneSet theGeneSet] - : ^(UserGeneList geneList STRING? ) - { - $geneList.theGeneSet.setUserGeneList( $STRING.text); - $theGeneSet = $geneList.theGeneSet; - } - | geneList - { - $theGeneSet = $geneList.theGeneSet; - } - ; - -geneList returns [GeneSet theGeneSet] -@init{ - // create GeneSet - $theGeneSet = new GeneSet(); -} - : - (individualGene - { - // add gene to the set - $theGeneSet.addGeneWithSpec( $individualGene.theGeneWithSpec ); - } - | defaultDataTypeSpec )+ // nothing to do, but might be in the list - ; - -individualGene returns [GeneWithSpec theGeneWithSpec] - : - ^(IndividualGene ID fullDataTypeSpec?) - // optional elements are null if not present - { - // TODO: remove this test, because gene names are checked elsewhere - // check that ID is a gene - if( !Gene.valid( $ID.text ) ){ - generateOncoError( $ID.pos, $ID.line, $ID.text, " is not a valid gene or microRNA name." ); - } - $theGeneWithSpec = GeneWithSpec.geneWithSpecGenerator( $ID.text, - $fullDataTypeSpec.theOncoPrintGeneDisplaySpec, - theDefaultOncoPrintGeneDisplaySpec ); - } - ; - -defaultDataTypeSpec - : ^(DefaultDataTypeSpec fullDataTypeSpec) - { - // set the global default - theDefaultOncoPrintGeneDisplaySpec = $fullDataTypeSpec.theOncoPrintGeneDisplaySpec; - } - ; - -fullDataTypeSpec returns [OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec] -@init{ - // create a Parsed ... - ParsedFullDataTypeSpec theParsedFullDataTypeSpec = new ParsedFullDataTypeSpec(); -} - : - (dataTypeSpec - { - // save to a Parsed ... - theParsedFullDataTypeSpec.addSpec( $dataTypeSpec.theDataTypeSpec ); - } - )+ - { - // clean the parsed, and return the simplified spec - $theOncoPrintGeneDisplaySpec = theParsedFullDataTypeSpec.cleanUpInput(); - } - ; - -dataTypeSpec returns [DataTypeSpec theDataTypeSpec] - : - ^(DataTypeOrLevel ID) // may be discrete or continuous dataType or discrete level - { - $theDataTypeSpec = ConcreteDataTypeSpec.concreteDataTypeSpecGenerator( $ID.text ); - if( null == $theDataTypeSpec ){ - $theDataTypeSpec = DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelName( $ID.text ); - } - if( null == $theDataTypeSpec ){ - // APG ERRORS: throw IAE - generateOncoError( $ID.pos, $ID.line, $ID.text, " is not a valid genetic data type or data level." ); - } - } - | discreteDataType - { - $theDataTypeSpec = $discreteDataType.theDataTypeSpec; - } - | continuousDataTypeInequality - { - $theDataTypeSpec = $continuousDataTypeInequality.theContinuousDataTypeSpec; - } - ; - -discreteDataType returns [DataTypeSpec theDataTypeSpec] - : - // since the tree has 2 IDs, they need separate names; handy ANTLR feature - ^(DiscreteDataType type=ID COMPARISON_OP level=ID ) - { - $theDataTypeSpec = DiscreteDataTypeSpec.discreteDataTypeSpecGenerator( $type.text, $COMPARISON_OP.text, $level.text ); - // TODO: more specific error about type or level - if( null == $theDataTypeSpec ){ - // APG ERRORS: throw IAE - generateOncoError( $type.pos, $type.line, $type.text+ " " + $COMPARISON_OP.text+ " " + $level.text, - " is not a valid discrete genetic data type and discrete genetic data level." ); - } - } - | - ^(DiscreteDataType ID SIGNED_INT ) - { - $theDataTypeSpec = DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelCode( $ID.text, $SIGNED_INT.text ); - if( null == $theDataTypeSpec ){ - // APG ERRORS: throw IAE - generateOncoError( $ID.pos, $ID.line, $ID.text + " " + $SIGNED_INT.text, - " is not a valid genetic data type and GISTIC code." ); - } - } - ; - -floatOrInt returns [String number] - : - SIGNED_FLOAT - { - $number = $SIGNED_FLOAT.text; - } - | SIGNED_INT - { - $number = $SIGNED_INT.text; - } - ; - -continuousDataTypeInequality returns [ContinuousDataTypeSpec theContinuousDataTypeSpec] - : - ^(ContinuousDataTypeInequality ID COMPARISON_OP floatOrInt ) - { - $theContinuousDataTypeSpec = ContinuousDataTypeSpec.continuousDataTypeSpecGenerator( - $ID.text, $COMPARISON_OP.text, $floatOrInt.number ); - if( null == $theContinuousDataTypeSpec ){ - generateOncoError( $ID.pos, $ID.line, $ID.text, " is not a valid genetic data type." ); - } - } - ; \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecASTwalker.java b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecASTwalker.java deleted file mode 100644 index 966d46147d8..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecASTwalker.java +++ /dev/null @@ -1,986 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - - -// $ANTLR 3.2 Sep 23, 2009 12:02:23 ../completeOncoPrintSpecASTwalker.g 2010-12-14 17:00:19 -// TODO: upgrade to ANTLR 3.3 - - package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - import java.util.ArrayList; - import org.mskcc.cbio.portal.oncoPrintSpecLanguage.*; - import static java.lang.System.out; - - -import org.antlr.runtime.*; -import org.antlr.runtime.tree.*;import java.util.Stack; -import java.util.List; -import java.util.ArrayList; - -public class completeOncoPrintSpecASTwalker extends TreeParser { - public static final String[] tokenNames = new String[] { - "", "", "", "", "STRING", "UserGeneList", "ID", "IndividualGene", "DefaultDataTypeSpec", "DataTypeOrLevel", "COMPARISON_OP", "SIGNED_INT", "DiscreteDataType", "SIGNED_FLOAT", "ContinuousDataTypeInequality", "INT", "WS", "ESC_SEQ", "UNICODE_ESC", "OCTAL_ESC", "HEX_DIGIT", "'{'", "'}'", "'DATATYPES'", "':'", "';'" - }; - public static final int T__25=25; - public static final int T__24=24; - public static final int T__23=23; - public static final int T__22=22; - public static final int UserGeneList=5; - public static final int T__21=21; - public static final int COMPARISON_OP=10; - public static final int UNICODE_ESC=18; - public static final int OCTAL_ESC=19; - public static final int HEX_DIGIT=20; - public static final int INT=15; - public static final int ID=6; - public static final int EOF=-1; - public static final int DiscreteDataType=12; - public static final int ContinuousDataTypeInequality=14; - public static final int SIGNED_INT=11; - public static final int WS=16; - public static final int ESC_SEQ=17; - public static final int DataTypeOrLevel=9; - public static final int DefaultDataTypeSpec=8; - public static final int IndividualGene=7; - public static final int SIGNED_FLOAT=13; - public static final int STRING=4; - - // delegates - // delegators - - - public completeOncoPrintSpecASTwalker(TreeNodeStream input) { - this(input, new RecognizerSharedState()); - } - public completeOncoPrintSpecASTwalker(TreeNodeStream input, RecognizerSharedState state) { - super(input, state); - - } - - - public String[] getTokenNames() { return completeOncoPrintSpecASTwalker.tokenNames; } - public String getGrammarFileName() { return "../completeOncoPrintSpecASTwalker.g"; } - - - // create default, which can be replaced with 'DATATYPES' specs - OncoPrintGeneDisplaySpec theDefaultOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec( ); - - // APG ERRORS: list of errors - ArrayList listOfErrors; - - public int increment( int n ){ - return n+1; - } - - public void generateOncoError( int charPos, int line, String token, String msg) throws IllegalArgumentException{ - - throw new OncoPrintLangException( "Error at char " + increment(charPos) + " of line " + line + - ": '" + token + "'" + msg ); - } - - // make comprehensible errors for users - // TODO: AVOID DUPLICATION WITH completeOncoPrintSpecAST.g - public void newReportError(OncoPrintLangException e) throws OncoPrintLangException{ - // if we've already reported an error and have not matched a token - // yet successfully, don't report any errors. - if ( state.errorRecovery ) { - //System.err.print("[SPURIOUS] "); - return; - } - state.syntaxErrors++; // don't count spurious - state.errorRecovery = true; - // displayRecognitionError(this.getTokenNames(), e); - /* APG ERROR handling - if collecting errors, add to list - else throw IAE - */ - if( null != listOfErrors){ - listOfErrors.add( e ); - }else{ - throw e; - } - } - - - public static class oncoPrintSpecification_return extends TreeRuleReturnScope { - public OncoPrintSpecification theOncoPrintSpecification; - public ArrayList returnListOfErrors; - }; - - // $ANTLR start "oncoPrintSpecification" - // ../completeOncoPrintSpecASTwalker.g:68:1: oncoPrintSpecification returns [OncoPrintSpecification theOncoPrintSpecification, \n\tArrayList returnListOfErrors] : ( userGeneList )+ ; - - // TODO: MAJOR, MAJOR PROBLEM; figure out how to do this without hand-altering the parser - public final completeOncoPrintSpecASTwalker.oncoPrintSpecification_return oncoPrintSpecification( OncoPrintGeneDisplaySpec anOncoPrintGeneDisplaySpec ) - throws RecognitionException { - completeOncoPrintSpecASTwalker.oncoPrintSpecification_return retval = new completeOncoPrintSpecASTwalker.oncoPrintSpecification_return(); - retval.start = input.LT(1); - - GeneSet userGeneList1 = null; - - - - // ACTION: initialize default OncoPrintSpecification - retval.theOncoPrintSpecification = new OncoPrintSpecification( ); - // TODO: recompile grammar, eliminating this - theDefaultOncoPrintGeneDisplaySpec = anOncoPrintGeneDisplaySpec; - - // APG ERRORS: initialize error list - listOfErrors = new ArrayList(); - - try { - // ../completeOncoPrintSpecASTwalker.g:78:2: ( ( userGeneList )+ ) - // ../completeOncoPrintSpecASTwalker.g:79:2: ( userGeneList )+ - { - // ../completeOncoPrintSpecASTwalker.g:79:2: ( userGeneList )+ - int cnt1=0; - loop1: - do { - int alt1=2; - int LA1_0 = input.LA(1); - - if ( (LA1_0==UserGeneList||(LA1_0>=IndividualGene && LA1_0<=DefaultDataTypeSpec)) ) { - alt1=1; - } - - - switch (alt1) { - case 1 : - // ../completeOncoPrintSpecASTwalker.g:79:4: userGeneList - { - pushFollow(FOLLOW_userGeneList_in_oncoPrintSpecification62); - userGeneList1=userGeneList(); - - state._fsp--; - - - retval.theOncoPrintSpecification.add( userGeneList1 ); - - - } - break; - - default : - if ( cnt1 >= 1 ) break loop1; - EarlyExitException eee = - new EarlyExitException(1, input); - throw eee; - } - cnt1++; - } while (true); - - - retval.returnListOfErrors = listOfErrors; - - - } - - } - - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } - finally { - } - return retval; - } - // $ANTLR end "oncoPrintSpecification" - - - // $ANTLR start "userGeneList" - // ../completeOncoPrintSpecASTwalker.g:90:1: userGeneList returns [GeneSet theGeneSet] : ( ^( UserGeneList geneList ( STRING )? ) | geneList ); - public final GeneSet userGeneList() throws RecognitionException { - GeneSet theGeneSet = null; - - CommonTree STRING3=null; - GeneSet geneList2 = null; - - GeneSet geneList4 = null; - - - try { - // ../completeOncoPrintSpecASTwalker.g:91:2: ( ^( UserGeneList geneList ( STRING )? ) | geneList ) - int alt3=2; - int LA3_0 = input.LA(1); - - if ( (LA3_0==UserGeneList) ) { - alt3=1; - } - else if ( ((LA3_0>=IndividualGene && LA3_0<=DefaultDataTypeSpec)) ) { - alt3=2; - } - else { - NoViableAltException nvae = - new NoViableAltException("", 3, 0, input); - - throw nvae; - } - switch (alt3) { - case 1 : - // ../completeOncoPrintSpecASTwalker.g:91:4: ^( UserGeneList geneList ( STRING )? ) - { - match(input,UserGeneList,FOLLOW_UserGeneList_in_userGeneList91); - - match(input, Token.DOWN, null); - pushFollow(FOLLOW_geneList_in_userGeneList93); - geneList2=geneList(); - - state._fsp--; - - // ../completeOncoPrintSpecASTwalker.g:91:28: ( STRING )? - int alt2=2; - int LA2_0 = input.LA(1); - - if ( (LA2_0==STRING) ) { - alt2=1; - } - switch (alt2) { - case 1 : - // ../completeOncoPrintSpecASTwalker.g:91:28: STRING - { - STRING3=(CommonTree)match(input,STRING,FOLLOW_STRING_in_userGeneList95); - - } - break; - - } - - - match(input, Token.UP, null); - - geneList2.setUserGeneList( (STRING3!=null?STRING3.getText():null)); - theGeneSet = geneList2; - - - } - break; - case 2 : - // ../completeOncoPrintSpecASTwalker.g:96:4: geneList - { - pushFollow(FOLLOW_geneList_in_userGeneList106); - geneList4=geneList(); - - state._fsp--; - - - theGeneSet = geneList4; - - - } - break; - - } - } - - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } - finally { - } - return theGeneSet; - } - // $ANTLR end "userGeneList" - - - // $ANTLR start "geneList" - // ../completeOncoPrintSpecASTwalker.g:102:1: geneList returns [GeneSet theGeneSet] : ( individualGene | defaultDataTypeSpec )+ ; - public final GeneSet geneList() throws RecognitionException { - GeneSet theGeneSet = null; - - GeneWithSpec individualGene5 = null; - - - - // create GeneSet - theGeneSet = new GeneSet(); - - try { - // ../completeOncoPrintSpecASTwalker.g:107:2: ( ( individualGene | defaultDataTypeSpec )+ ) - // ../completeOncoPrintSpecASTwalker.g:108:2: ( individualGene | defaultDataTypeSpec )+ - { - // ../completeOncoPrintSpecASTwalker.g:108:2: ( individualGene | defaultDataTypeSpec )+ - int cnt4=0; - loop4: - do { - int alt4=3; - int LA4_0 = input.LA(1); - - if ( (LA4_0==IndividualGene) ) { - alt4=1; - } - else if ( (LA4_0==DefaultDataTypeSpec) ) { - alt4=2; - } - - - switch (alt4) { - case 1 : - // ../completeOncoPrintSpecASTwalker.g:108:3: individualGene - { - pushFollow(FOLLOW_individualGene_in_geneList132); - individualGene5=individualGene(); - - state._fsp--; - - - // add gene to the set - theGeneSet.addGeneWithSpec( individualGene5 ); - - - } - break; - case 2 : - // ../completeOncoPrintSpecASTwalker.g:113:4: defaultDataTypeSpec - { - pushFollow(FOLLOW_defaultDataTypeSpec_in_geneList140); - defaultDataTypeSpec(); - - state._fsp--; - - - } - break; - - default : - if ( cnt4 >= 1 ) break loop4; - EarlyExitException eee = - new EarlyExitException(4, input); - throw eee; - } - cnt4++; - } while (true); - - - } - - } - - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } - finally { - } - return theGeneSet; - } - // $ANTLR end "geneList" - - - // $ANTLR start "individualGene" - // ../completeOncoPrintSpecASTwalker.g:116:1: individualGene returns [GeneWithSpec theGeneWithSpec] : ^( IndividualGene ID ( fullDataTypeSpec )? ) ; - public final GeneWithSpec individualGene() throws RecognitionException { - GeneWithSpec theGeneWithSpec = null; - - CommonTree ID6=null; - OncoPrintGeneDisplaySpec fullDataTypeSpec7 = null; - - - try { - // ../completeOncoPrintSpecASTwalker.g:117:2: ( ^( IndividualGene ID ( fullDataTypeSpec )? ) ) - // ../completeOncoPrintSpecASTwalker.g:118:2: ^( IndividualGene ID ( fullDataTypeSpec )? ) - { - match(input,IndividualGene,FOLLOW_IndividualGene_in_individualGene161); - - match(input, Token.DOWN, null); - ID6=(CommonTree)match(input,ID,FOLLOW_ID_in_individualGene163); - // ../completeOncoPrintSpecASTwalker.g:118:22: ( fullDataTypeSpec )? - int alt5=2; - int LA5_0 = input.LA(1); - - if ( (LA5_0==DataTypeOrLevel||LA5_0==DiscreteDataType||LA5_0==ContinuousDataTypeInequality) ) { - alt5=1; - } - switch (alt5) { - case 1 : - // ../completeOncoPrintSpecASTwalker.g:118:22: fullDataTypeSpec - { - pushFollow(FOLLOW_fullDataTypeSpec_in_individualGene165); - fullDataTypeSpec7=fullDataTypeSpec(); - - state._fsp--; - - - } - break; - - } - - - match(input, Token.UP, null); - - // TODO: remove this test, because gene names are checked elsewhere - // check that ID is a gene - if( !Gene.valid( (ID6!=null?ID6.getText():null) ) ){ - generateOncoError( (ID6!=null?ID6.getCharPositionInLine():0), (ID6!=null?ID6.getLine():0), (ID6!=null?ID6.getText():null), " is not a valid gene or microRNA name." ); - } - theGeneWithSpec = GeneWithSpec.geneWithSpecGenerator( (ID6!=null?ID6.getText():null), - fullDataTypeSpec7, - theDefaultOncoPrintGeneDisplaySpec ); - - - } - - } - - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } - finally { - } - return theGeneWithSpec; - } - // $ANTLR end "individualGene" - - - // $ANTLR start "defaultDataTypeSpec" - // ../completeOncoPrintSpecASTwalker.g:132:1: defaultDataTypeSpec : ^( DefaultDataTypeSpec fullDataTypeSpec ) ; - public final void defaultDataTypeSpec() throws RecognitionException { - OncoPrintGeneDisplaySpec fullDataTypeSpec8 = null; - - - try { - // ../completeOncoPrintSpecASTwalker.g:133:2: ( ^( DefaultDataTypeSpec fullDataTypeSpec ) ) - // ../completeOncoPrintSpecASTwalker.g:133:4: ^( DefaultDataTypeSpec fullDataTypeSpec ) - { - match(input,DefaultDataTypeSpec,FOLLOW_DefaultDataTypeSpec_in_defaultDataTypeSpec185); - - match(input, Token.DOWN, null); - pushFollow(FOLLOW_fullDataTypeSpec_in_defaultDataTypeSpec187); - fullDataTypeSpec8=fullDataTypeSpec(); - - state._fsp--; - - - match(input, Token.UP, null); - - // set the global default - theDefaultOncoPrintGeneDisplaySpec = fullDataTypeSpec8; - - - } - - } - - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } - finally { - } - return ; - } - // $ANTLR end "defaultDataTypeSpec" - - - // $ANTLR start "fullDataTypeSpec" - // ../completeOncoPrintSpecASTwalker.g:140:1: fullDataTypeSpec returns [OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec] : ( dataTypeSpec )+ ; - public final OncoPrintGeneDisplaySpec fullDataTypeSpec() throws RecognitionException { - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec = null; - - DataTypeSpec dataTypeSpec9 = null; - - - - // create a Parsed ... - ParsedFullDataTypeSpec theParsedFullDataTypeSpec = new ParsedFullDataTypeSpec(); - - try { - // ../completeOncoPrintSpecASTwalker.g:145:2: ( ( dataTypeSpec )+ ) - // ../completeOncoPrintSpecASTwalker.g:146:2: ( dataTypeSpec )+ - { - // ../completeOncoPrintSpecASTwalker.g:146:2: ( dataTypeSpec )+ - int cnt6=0; - loop6: - do { - int alt6=2; - int LA6_0 = input.LA(1); - - if ( (LA6_0==DataTypeOrLevel||LA6_0==DiscreteDataType||LA6_0==ContinuousDataTypeInequality) ) { - alt6=1; - } - - - switch (alt6) { - case 1 : - // ../completeOncoPrintSpecASTwalker.g:146:3: dataTypeSpec - { - pushFollow(FOLLOW_dataTypeSpec_in_fullDataTypeSpec213); - dataTypeSpec9=dataTypeSpec(); - - state._fsp--; - - - // save to a Parsed ... - theParsedFullDataTypeSpec.addSpec( dataTypeSpec9 ); - - - } - break; - - default : - if ( cnt6 >= 1 ) break loop6; - EarlyExitException eee = - new EarlyExitException(6, input); - throw eee; - } - cnt6++; - } while (true); - - - // clean the parsed, and return the simplified spec - theOncoPrintGeneDisplaySpec = theParsedFullDataTypeSpec.cleanUpInput(); - - - } - - } - - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } - finally { - } - return theOncoPrintGeneDisplaySpec; - } - // $ANTLR end "fullDataTypeSpec" - - - // $ANTLR start "dataTypeSpec" - // ../completeOncoPrintSpecASTwalker.g:158:1: dataTypeSpec returns [DataTypeSpec theDataTypeSpec] : ( ^( DataTypeOrLevel ID ) | discreteDataType | continuousDataTypeInequality ); - public final DataTypeSpec dataTypeSpec() throws RecognitionException { - DataTypeSpec theDataTypeSpec = null; - - CommonTree ID10=null; - DataTypeSpec discreteDataType11 = null; - - ContinuousDataTypeSpec continuousDataTypeInequality12 = null; - - - try { - // ../completeOncoPrintSpecASTwalker.g:159:2: ( ^( DataTypeOrLevel ID ) | discreteDataType | continuousDataTypeInequality ) - int alt7=3; - switch ( input.LA(1) ) { - case DataTypeOrLevel: - { - alt7=1; - } - break; - case DiscreteDataType: - { - alt7=2; - } - break; - case ContinuousDataTypeInequality: - { - alt7=3; - } - break; - default: - NoViableAltException nvae = - new NoViableAltException("", 7, 0, input); - - throw nvae; - } - - switch (alt7) { - case 1 : - // ../completeOncoPrintSpecASTwalker.g:160:2: ^( DataTypeOrLevel ID ) - { - match(input,DataTypeOrLevel,FOLLOW_DataTypeOrLevel_in_dataTypeSpec242); - - match(input, Token.DOWN, null); - ID10=(CommonTree)match(input,ID,FOLLOW_ID_in_dataTypeSpec244); - - match(input, Token.UP, null); - - theDataTypeSpec = ConcreteDataTypeSpec.concreteDataTypeSpecGenerator( (ID10!=null?ID10.getText():null) ); - if( null == theDataTypeSpec ){ - theDataTypeSpec = DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelName( (ID10!=null?ID10.getText():null) ); - } - if( null == theDataTypeSpec ){ - // APG ERRORS: throw IAE - generateOncoError( (ID10!=null?ID10.getCharPositionInLine():0), (ID10!=null?ID10.getLine():0), (ID10!=null?ID10.getText():null), " is not a valid genetic data type or data level." ); - } - - - } - break; - case 2 : - // ../completeOncoPrintSpecASTwalker.g:171:4: discreteDataType - { - pushFollow(FOLLOW_discreteDataType_in_dataTypeSpec255); - discreteDataType11=discreteDataType(); - - state._fsp--; - - - theDataTypeSpec = discreteDataType11; - - - } - break; - case 3 : - // ../completeOncoPrintSpecASTwalker.g:175:4: continuousDataTypeInequality - { - pushFollow(FOLLOW_continuousDataTypeInequality_in_dataTypeSpec264); - continuousDataTypeInequality12=continuousDataTypeInequality(); - - state._fsp--; - - - theDataTypeSpec = continuousDataTypeInequality12; - - - } - break; - - } - } - - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } - finally { - } - return theDataTypeSpec; - } - // $ANTLR end "dataTypeSpec" - - - // $ANTLR start "discreteDataType" - // ../completeOncoPrintSpecASTwalker.g:181:1: discreteDataType returns [DataTypeSpec theDataTypeSpec] : ( ^( DiscreteDataType type= ID COMPARISON_OP level= ID ) | ^( DiscreteDataType ID SIGNED_INT ) ); - public final DataTypeSpec discreteDataType() throws RecognitionException { - DataTypeSpec theDataTypeSpec = null; - - CommonTree type=null; - CommonTree level=null; - CommonTree COMPARISON_OP13=null; - CommonTree ID14=null; - CommonTree SIGNED_INT15=null; - - try { - // ../completeOncoPrintSpecASTwalker.g:182:2: ( ^( DiscreteDataType type= ID COMPARISON_OP level= ID ) | ^( DiscreteDataType ID SIGNED_INT ) ) - int alt8=2; - int LA8_0 = input.LA(1); - - if ( (LA8_0==DiscreteDataType) ) { - int LA8_1 = input.LA(2); - - if ( (LA8_1==DOWN) ) { - int LA8_2 = input.LA(3); - - if ( (LA8_2==ID) ) { - int LA8_3 = input.LA(4); - - if ( (LA8_3==COMPARISON_OP) ) { - alt8=1; - } - else if ( (LA8_3==SIGNED_INT) ) { - alt8=2; - } - else { - NoViableAltException nvae = - new NoViableAltException("", 8, 3, input); - - throw nvae; - } - } - else { - NoViableAltException nvae = - new NoViableAltException("", 8, 2, input); - - throw nvae; - } - } - else { - NoViableAltException nvae = - new NoViableAltException("", 8, 1, input); - - throw nvae; - } - } - else { - NoViableAltException nvae = - new NoViableAltException("", 8, 0, input); - - throw nvae; - } - switch (alt8) { - case 1 : - // ../completeOncoPrintSpecASTwalker.g:184:2: ^( DiscreteDataType type= ID COMPARISON_OP level= ID ) - { - match(input,DiscreteDataType,FOLLOW_DiscreteDataType_in_discreteDataType288); - - match(input, Token.DOWN, null); - type=(CommonTree)match(input,ID,FOLLOW_ID_in_discreteDataType292); - COMPARISON_OP13=(CommonTree)match(input,COMPARISON_OP,FOLLOW_COMPARISON_OP_in_discreteDataType294); - level=(CommonTree)match(input,ID,FOLLOW_ID_in_discreteDataType298); - - match(input, Token.UP, null); - - theDataTypeSpec = DiscreteDataTypeSpec.discreteDataTypeSpecGenerator( (type!=null?type.getText():null), (COMPARISON_OP13!=null?COMPARISON_OP13.getText():null), (level!=null?level.getText():null) ); - // TODO: more specific error about type or level - if( null == theDataTypeSpec ){ - // APG ERRORS: throw IAE - generateOncoError( (type!=null?type.getCharPositionInLine():0), (type!=null?type.getLine():0), (type!=null?type.getText():null)+ " " + (COMPARISON_OP13!=null?COMPARISON_OP13.getText():null)+ " " + (level!=null?level.getText():null), - " is not a valid discrete genetic data type and discrete genetic data level." ); - } - - - } - break; - case 2 : - // ../completeOncoPrintSpecASTwalker.g:195:2: ^( DiscreteDataType ID SIGNED_INT ) - { - match(input,DiscreteDataType,FOLLOW_DiscreteDataType_in_discreteDataType311); - - match(input, Token.DOWN, null); - ID14=(CommonTree)match(input,ID,FOLLOW_ID_in_discreteDataType313); - SIGNED_INT15=(CommonTree)match(input,SIGNED_INT,FOLLOW_SIGNED_INT_in_discreteDataType315); - - match(input, Token.UP, null); - - theDataTypeSpec = DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelCode( (ID14!=null?ID14.getText():null), (SIGNED_INT15!=null?SIGNED_INT15.getText():null) ); - if( null == theDataTypeSpec ){ - // APG ERRORS: throw IAE - generateOncoError( (ID14!=null?ID14.getCharPositionInLine():0), (ID14!=null?ID14.getLine():0), (ID14!=null?ID14.getText():null) + " " + (SIGNED_INT15!=null?SIGNED_INT15.getText():null), - " is not a valid genetic data type and GISTIC code." ); - } - - - } - break; - - } - } - - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } - finally { - } - return theDataTypeSpec; - } - // $ANTLR end "discreteDataType" - - - // $ANTLR start "floatOrInt" - // ../completeOncoPrintSpecASTwalker.g:206:1: floatOrInt returns [String number] : ( SIGNED_FLOAT | SIGNED_INT ); - public final String floatOrInt() throws RecognitionException { - String number = null; - - CommonTree SIGNED_FLOAT16=null; - CommonTree SIGNED_INT17=null; - - try { - // ../completeOncoPrintSpecASTwalker.g:207:2: ( SIGNED_FLOAT | SIGNED_INT ) - int alt9=2; - int LA9_0 = input.LA(1); - - if ( (LA9_0==SIGNED_FLOAT) ) { - alt9=1; - } - else if ( (LA9_0==SIGNED_INT) ) { - alt9=2; - } - else { - NoViableAltException nvae = - new NoViableAltException("", 9, 0, input); - - throw nvae; - } - switch (alt9) { - case 1 : - // ../completeOncoPrintSpecASTwalker.g:208:2: SIGNED_FLOAT - { - SIGNED_FLOAT16=(CommonTree)match(input,SIGNED_FLOAT,FOLLOW_SIGNED_FLOAT_in_floatOrInt337); - - number = (SIGNED_FLOAT16!=null?SIGNED_FLOAT16.getText():null); - - - } - break; - case 2 : - // ../completeOncoPrintSpecASTwalker.g:212:4: SIGNED_INT - { - SIGNED_INT17=(CommonTree)match(input,SIGNED_INT,FOLLOW_SIGNED_INT_in_floatOrInt346); - - number = (SIGNED_INT17!=null?SIGNED_INT17.getText():null); - - - } - break; - - } - } - - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } - finally { - } - return number; - } - // $ANTLR end "floatOrInt" - - - // $ANTLR start "continuousDataTypeInequality" - // ../completeOncoPrintSpecASTwalker.g:218:1: continuousDataTypeInequality returns [ContinuousDataTypeSpec theContinuousDataTypeSpec] : ^( ContinuousDataTypeInequality ID COMPARISON_OP floatOrInt ) ; - public final ContinuousDataTypeSpec continuousDataTypeInequality() throws RecognitionException { - ContinuousDataTypeSpec theContinuousDataTypeSpec = null; - - CommonTree ID18=null; - CommonTree COMPARISON_OP19=null; - String floatOrInt20 = null; - - - try { - // ../completeOncoPrintSpecASTwalker.g:219:2: ( ^( ContinuousDataTypeInequality ID COMPARISON_OP floatOrInt ) ) - // ../completeOncoPrintSpecASTwalker.g:220:2: ^( ContinuousDataTypeInequality ID COMPARISON_OP floatOrInt ) - { - match(input,ContinuousDataTypeInequality,FOLLOW_ContinuousDataTypeInequality_in_continuousDataTypeInequality368); - - match(input, Token.DOWN, null); - ID18=(CommonTree)match(input,ID,FOLLOW_ID_in_continuousDataTypeInequality370); - COMPARISON_OP19=(CommonTree)match(input,COMPARISON_OP,FOLLOW_COMPARISON_OP_in_continuousDataTypeInequality372); - pushFollow(FOLLOW_floatOrInt_in_continuousDataTypeInequality374); - floatOrInt20=floatOrInt(); - - state._fsp--; - - - match(input, Token.UP, null); - - theContinuousDataTypeSpec = ContinuousDataTypeSpec.continuousDataTypeSpecGenerator( - (ID18!=null?ID18.getText():null), (COMPARISON_OP19!=null?COMPARISON_OP19.getText():null), floatOrInt20 ); - if( null == theContinuousDataTypeSpec ){ - generateOncoError( (ID18!=null?ID18.getCharPositionInLine():0), (ID18!=null?ID18.getLine():0), (ID18!=null?ID18.getText():null), " is not a valid genetic data type." ); - } - - - } - - } - - catch (RecognitionException re) { - // trees s/b all well-formed, so don't expect these - reportError(re); - recover(input,re); - } catch (OncoPrintLangException e) { - newReportError(e); - recover(input, null ); // recover doesn't use the RecognitionException, so null's OK - } - finally { - } - return theContinuousDataTypeSpec; - } - // $ANTLR end "continuousDataTypeInequality" - - // Delegated rules - - - - - public static final BitSet FOLLOW_userGeneList_in_oncoPrintSpecification62 = new BitSet(new long[]{0x00000000000001A2L}); - public static final BitSet FOLLOW_UserGeneList_in_userGeneList91 = new BitSet(new long[]{0x0000000000000004L}); - public static final BitSet FOLLOW_geneList_in_userGeneList93 = new BitSet(new long[]{0x0000000000000018L}); - public static final BitSet FOLLOW_STRING_in_userGeneList95 = new BitSet(new long[]{0x0000000000000008L}); - public static final BitSet FOLLOW_geneList_in_userGeneList106 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_individualGene_in_geneList132 = new BitSet(new long[]{0x00000000000001A2L}); - public static final BitSet FOLLOW_defaultDataTypeSpec_in_geneList140 = new BitSet(new long[]{0x00000000000001A2L}); - public static final BitSet FOLLOW_IndividualGene_in_individualGene161 = new BitSet(new long[]{0x0000000000000004L}); - public static final BitSet FOLLOW_ID_in_individualGene163 = new BitSet(new long[]{0x0000000000005208L}); - public static final BitSet FOLLOW_fullDataTypeSpec_in_individualGene165 = new BitSet(new long[]{0x0000000000000008L}); - public static final BitSet FOLLOW_DefaultDataTypeSpec_in_defaultDataTypeSpec185 = new BitSet(new long[]{0x0000000000000004L}); - public static final BitSet FOLLOW_fullDataTypeSpec_in_defaultDataTypeSpec187 = new BitSet(new long[]{0x0000000000000008L}); - public static final BitSet FOLLOW_dataTypeSpec_in_fullDataTypeSpec213 = new BitSet(new long[]{0x0000000000005202L}); - public static final BitSet FOLLOW_DataTypeOrLevel_in_dataTypeSpec242 = new BitSet(new long[]{0x0000000000000004L}); - public static final BitSet FOLLOW_ID_in_dataTypeSpec244 = new BitSet(new long[]{0x0000000000000008L}); - public static final BitSet FOLLOW_discreteDataType_in_dataTypeSpec255 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_continuousDataTypeInequality_in_dataTypeSpec264 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_DiscreteDataType_in_discreteDataType288 = new BitSet(new long[]{0x0000000000000004L}); - public static final BitSet FOLLOW_ID_in_discreteDataType292 = new BitSet(new long[]{0x0000000000000400L}); - public static final BitSet FOLLOW_COMPARISON_OP_in_discreteDataType294 = new BitSet(new long[]{0x0000000000000040L}); - public static final BitSet FOLLOW_ID_in_discreteDataType298 = new BitSet(new long[]{0x0000000000000008L}); - public static final BitSet FOLLOW_DiscreteDataType_in_discreteDataType311 = new BitSet(new long[]{0x0000000000000004L}); - public static final BitSet FOLLOW_ID_in_discreteDataType313 = new BitSet(new long[]{0x0000000000000800L}); - public static final BitSet FOLLOW_SIGNED_INT_in_discreteDataType315 = new BitSet(new long[]{0x0000000000000008L}); - public static final BitSet FOLLOW_SIGNED_FLOAT_in_floatOrInt337 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_SIGNED_INT_in_floatOrInt346 = new BitSet(new long[]{0x0000000000000002L}); - public static final BitSet FOLLOW_ContinuousDataTypeInequality_in_continuousDataTypeInequality368 = new BitSet(new long[]{0x0000000000000004L}); - public static final BitSet FOLLOW_ID_in_continuousDataTypeInequality370 = new BitSet(new long[]{0x0000000000000400L}); - public static final BitSet FOLLOW_COMPARISON_OP_in_continuousDataTypeInequality372 = new BitSet(new long[]{0x0000000000002800L}); - public static final BitSet FOLLOW_floatOrInt_in_continuousDataTypeInequality374 = new BitSet(new long[]{0x0000000000000008L}); - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecLanguage.g b/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecLanguage.g deleted file mode 100644 index 303f9d7e1e5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/completeOncoPrintSpecLanguage.g +++ /dev/null @@ -1,367 +0,0 @@ -grammar completeOncoPrintSpecLanguage; - -// Old implementation used before breaking OQL into a tree generator and a tree walker -// not in use - -@parser::header { - package main; - import java.util.ArrayList; - import org.mskcc.cbio.portal.oncoPrintSpecLanguage.*; - import static java.lang.System.out; -} -@lexer::header{ - package main; -} -@members{ - // create default, which can be replaced with 'DATATYPES' specs - ResultFullDataTypeSpec theDefaultResultFullDataTypeSpec = new ResultFullDataTypeSpec( ); - - String[] ruleNameToDataTypeNames = { - "geneName", "gene", - "dataTypeName", "genetic data type", - "dataTypeLevel", "genetic data level"}; - public String lookupDataTypeName( String ruleName ){ - for( int i = 0; i>" - // and "(decision="+nvae.decisionNumber+") and - // "state "+nvae.stateNumber - msg = "no viable alternative at input " + getTokenErrorDisplay(e.token); - } else if (e instanceof EarlyExitException) { - // EarlyExitException eee = (EarlyExitException)e; - // for development, can add "(decision="+eee.decisionNumber+")" - msg = "required (...)+ loop did not match anything at input " - + getTokenErrorDisplay(e.token); - } else if (e instanceof MismatchedSetException) { - MismatchedSetException mse = (MismatchedSetException) e; - msg = "mismatched input " + getTokenErrorDisplay(e.token) + " expecting set " - + mse.expecting; - } else if (e instanceof MismatchedNotSetException) { - MismatchedNotSetException mse = (MismatchedNotSetException) e; - msg = "mismatched input " + getTokenErrorDisplay(e.token) + " expecting set " - + mse.expecting; - } else if (e instanceof FailedPredicateException) { - FailedPredicateException fpe = (FailedPredicateException) e; - // msg = "rule " + fpe.ruleName + " failed predicate: {" + fpe.predicateText + "}?"; - msg = "token '" + e.token.getText() + "' is not a valid '" + lookupDataTypeName( fpe.ruleName ) +"'."; - } - return msg; - } - - /* -public String getErrorMessage(RecognitionException e, - String[] tokenNames){ - List stack = getRuleInvocationStack(e, this.getClass().getName()); - int charPos = e.charPositionInLine+1; - String rule = stack.get(0); - return " is not a valid " + e.getClass().getName() +" "+ rule + " at char " + charPos + " of line " + e.line; - // "X" is not a valid "Y" at line l, char c; valid "Y"s are "". - if( e isInstanceOf FailedPredicateException){ - } - -} - */ -} - -// everything is a groupedGeneList, including a gene by itself -oncoPrintSpecification returns [OncoPrintSpecification theOncoPrintSpecification] -@init{ - // ACTION: initialize default OncoPrintSpecification - $theOncoPrintSpecification = new OncoPrintSpecification( ); - theDefaultResultFullDataTypeSpec.setDefault(); -} - : - ( groupedGeneList - { - $theOncoPrintSpecification.add( $groupedGeneList.theGeneSet ); - } - )+ - ; - -groupedGeneList returns [GeneSet theGeneSet] - : - geneList - { - $theGeneSet = $geneList.theGeneSet; - } - // TODO: next phase - | '{' geneList '}' - { - $theGeneSet = $geneList.theGeneSet; - $theGeneSet.setUserGeneList(true); - } - // TODO: next phase - | STRING '{' geneList '}' - { - $theGeneSet = $geneList.theGeneSet; - $theGeneSet.setName( $STRING.text ); - } - ; - -geneList returns [GeneSet theGeneSet] -@init{ - $theGeneSet = new GeneSet(); -} - : - ( individualGene - { - // ACTION: add individualGene to G; - $theGeneSet.addGeneWithSpec( $individualGene.theGeneWithSpec ); - } - | defaultDataTypeSpec // nothing to do: defaultDataTypeSpec sets theDefaultResultFullDataTypeSpec - )+ - { // todo: ACTION: if G doesn't have any genes throw error - } - ; - -individualGene returns [GeneWithSpec theGeneWithSpec] - : - geneName - { - $theGeneWithSpec = new GeneWithSpec( $geneName.name ); - // copy the defaultDataTypeSpec to it - $theGeneWithSpec.setTheResultFullDataTypeSpec( theDefaultResultFullDataTypeSpec ); - } - ( fullDataTypeSpec - { - // ACTION: set dataTypeSpec for internalGeneWithSpec - $theGeneWithSpec.setTheResultFullDataTypeSpec( $fullDataTypeSpec.theParsedFullDataTypeSpec.cleanUpInput() ); - } - )? - ; - -geneNameOld returns [String name] - : ID - { - // ACTION: if the ID is a valid gene return ID else return null (Should we throw error?) - if( Gene.valid( $ID.text )){ - $name = $ID.text; - }else{ - $name = null; - } - } - ; - -geneName returns [String name] - : { Gene.valid( input.LT(1).getText() ) }? ID - // TODO: handle error when isDataTypeName fails - { $name = $ID.text; } - ; - -defaultDataTypeSpec returns [ResultFullDataTypeSpec theResultFullDataTypeSpec] - : 'DATATYPES' fullDataTypeSpec - { - // out.println( "in defaultDataTypeSpec, cleanUp "+ $fullDataTypeSpec.theParsedFullDataTypeSpec.toString() ); - $theResultFullDataTypeSpec = $fullDataTypeSpec.theParsedFullDataTypeSpec.cleanUpInput(); - // ACTION: reset the local defaultDataTypeSpec - theDefaultResultFullDataTypeSpec = $theResultFullDataTypeSpec; - } - ; - -fullDataTypeSpec returns [ParsedFullDataTypeSpec theParsedFullDataTypeSpec] -@init{ - $theParsedFullDataTypeSpec = new ParsedFullDataTypeSpec(); -} - : ':' ( dataTypeSpec - { - /* - out.print( "adding dataTypeSpec "); - if( $dataTypeSpec.theDataTypeSpec == null) { - out.println( "that's null "); - }else{ - out.println( $dataTypeSpec.theDataTypeSpec.toString() ); - } - */ - $theParsedFullDataTypeSpec.addSpec( $dataTypeSpec.theDataTypeSpec ); - } - )+ ';' - ; - -dataTypeSpec returns [DataTypeSpec theDataTypeSpec] - : - dataTypeName // may be discrete or continuous - { - $theDataTypeSpec = new ConcreteDataTypeSpec( $dataTypeName.text ); - } - | dataTypeLevel // must be discrete - { - $theDataTypeSpec = new DiscreteDataTypeSetSpec( $dataTypeLevel.text ); - } - | discreteDataType - { - $theDataTypeSpec = $discreteDataType.theDataTypeSpec; - } - | continuousDataTypeInterval - { - $theDataTypeSpec = $continuousDataTypeInterval.theContinuousDataTypeSpec; - } - ; - -discreteDataType returns [DataTypeSpec theDataTypeSpec] - : - // ( comparisonOP dataTypeLevel ) | confuses next alternative with 'dataTypeName' 'comparisonOP dataTypeLevel' - ( dataTypeName comparisonOP dataTypeLevel - { - $theDataTypeSpec = new DiscreteDataTypeSpec( - DiscreteDataTypeSpec.findDataType( $dataTypeName.text ), - $comparisonOP.theComparisonOp, - GeneticTypeLevel.findDataTypeLevel( $dataTypeLevel.text ) ); - } - ) | - ( dataTypeName SIGNED_INT ) - { - $theDataTypeSpec = new DiscreteDataTypeSetSpec( - $dataTypeName.text, Integer.parseInt( $SIGNED_INT.text ) ); - } - ; - -// TODO: rename to continuousDataTypeInequality -continuousDataTypeInterval returns [ContinuousDataTypeSpec theContinuousDataTypeSpec] - : - { - float threshold = 0.0f; - } - ( dataTypeName comparisonOP - ( SIGNED_INT { threshold = (float) Integer.parseInt( $SIGNED_INT.text);} - | SIGNED_FLOAT { threshold = Float.parseFloat( $SIGNED_FLOAT.text);} - ) ) - { - $theContinuousDataTypeSpec = new ContinuousDataTypeSpec( - ContinuousDataTypeSpec.findDataType( $dataTypeName.text ), - $comparisonOP.theComparisonOp, threshold ); - } - ; - -dataTypeName returns [String text] - : { DataTypeSpecEnumerations.isDataTypeName( input.LT(1).getText() ) }? - ID // was - // { DataTypeSpecEnumerations.isDataTypeName( $ID.text ) }? - // TODO: handle error when isDataTypeName fails - { $text = $ID.text; } - ; - -dataTypeLevel returns [String text] - : - // don't want this hoisted - { DataTypeSpecEnumerations.isDataTypeLevel( input.LT(1).getText() ) }? - ID - // { DataTypeSpecEnumerations.isDataTypeLevel( $ID.text ) }? - // TODO: handle error when isDataTypeLevel fails - { $text = $ID.text; } - ; - -comparisonOP returns [ComparisonOp theComparisonOp ] - : COMPARISON_OP - { - // ACTION: convert to enumeration - $theComparisonOp = ComparisonOp.convertCode( $COMPARISON_OP.text ); - } - ; - -COMPARISON_OP - // awkward to convert to enumeration in COMPARISON_OP cuz of char / text distinction for 1/longer tokens; see bottom p. 139 T. Parr - : ( '<=' | '<' | '>' | '>=' ) - ; - -ID : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')* - ; - -SIGNED_INT : ('-')? '0'..'9'+ ; - -SIGNED_FLOAT - : ('-')? ( ('0'..'9')+ '.' ('0'..'9')* - | '.' ('0'..'9')+ - | ('0'..'9')+ ) - ; - -WS : ( ' ' - | '\t' - | '\r' - | '\n' - ) {$channel=HIDDEN;} - ; - -STRING - : '"' ( ESC_SEQ | ~('\\'|'"') )* '"' - ; - -fragment -ESC_SEQ - : '\\' ('b'|'t'|'n'|'f'|'r'|'\"'|'\''|'\\') - | UNICODE_ESC - | OCTAL_ESC - ; - -fragment -OCTAL_ESC - : '\\' ('0'..'3') ('0'..'7') ('0'..'7') - | '\\' ('0'..'7') ('0'..'7') - | '\\' ('0'..'7') - ; - -fragment -UNICODE_ESC - : '\\' 'u' HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT - ; - -fragment -HEX_DIGIT : ('0'..'9'|'a'..'f'|'A'..'F') ; diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/AddCaseList.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/AddCaseList.java deleted file mode 100644 index acc067c640e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/AddCaseList.java +++ /dev/null @@ -1,172 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.util.ArrayList; -import java.util.List; - -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoSample; -import org.mskcc.cbio.portal.dao.DaoSampleList; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.Sample; -import org.mskcc.cbio.portal.model.SampleList; -import org.mskcc.cbio.portal.model.SampleListCategory; -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.mskcc.cbio.portal.util.SpringUtil; - -/** - * Command Line tool to Add new case lists by generating them based on some rules. - */ -public class AddCaseList extends ConsoleRunnable { - - - /** - * Add case list of type "all" - * - * @param theCancerStudy - * @param pMonitor - * @throws Exception - */ - private static void addAllCasesList(CancerStudy theCancerStudy) throws Exception { - String cancerStudyIdentifier = theCancerStudy.getCancerStudyStableId(); - String stableId = cancerStudyIdentifier + "_all"; - ProgressMonitor.setCurrentMessage("Adding case list: " + stableId + "..."); - - String sampleListCategoryStr = "other"; //TODO : check if this is important... - SampleListCategory sampleListCategory = SampleListCategory.get(sampleListCategoryStr); - - String sampleListDescription = "All cases in study"; - String sampleListName = sampleListDescription; - - // construct sample id list - ArrayList sampleIDsList = new ArrayList(); - - List sampleIds = DaoSample.getSampleStableIdsByCancerStudy(theCancerStudy.getInternalId()); - for (String sampleId : sampleIds) { - Sample s = DaoSample.getSampleByCancerStudyAndSampleId(theCancerStudy.getInternalId(), sampleId); - sampleIDsList.add(s.getStableId()); - } - addCaseList(stableId, theCancerStudy, sampleListCategory, sampleListName, sampleListDescription, sampleIDsList); - } - - /** - * Generic method to add a case list - * - * @param stableId - * @param theCancerStudy - * @param sampleListCategory - * @param sampleListName - * @param sampleListDescription - * @param sampleIDsList - * @param pMonitor - * @throws Exception - */ - private static void addCaseList(String stableId, CancerStudy theCancerStudy, - SampleListCategory sampleListCategory, String sampleListName, String sampleListDescription, - ArrayList sampleIDsList) throws Exception { - - DaoSampleList daoSampleList = new DaoSampleList(); - SampleList sampleList = daoSampleList.getSampleListByStableId(stableId); - if (sampleList != null) { - ProgressMonitor.logWarning("Case list with this stable Id already exists: " + stableId + ". Will keep the existing one."); - } - else { - sampleList = new SampleList(); - sampleList.setStableId(stableId); - int cancerStudyId = theCancerStudy.getInternalId(); - sampleList.setCancerStudyId(cancerStudyId); - sampleList.setSampleListCategory(sampleListCategory); - sampleList.setName(sampleListName); - sampleList.setDescription(sampleListDescription); - sampleList.setSampleList(sampleIDsList); - daoSampleList.addSampleList(sampleList); - - sampleList = daoSampleList.getSampleListByStableId(stableId); - - ProgressMonitor.setCurrentMessage(" --> stable ID: " + sampleList.getStableId()); - ProgressMonitor.setCurrentMessage(" --> case list name: " + sampleList.getName()); - ProgressMonitor.setCurrentMessage(" --> number of cases: " + sampleIDsList.size()); - } - } - - public void run() { - try { - // check args - String progName = "addCaseList.pl"; - String argSpec = " "; - if (this.args.length < 2) { - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - throw new UsageException( - progName, - null, - argSpec); - } - - String cancerStudyIdentifier = args[0]; - String caseListType = args[1]; - if (cancerStudyIdentifier == null) { - throw new UsageException(progName, null, argSpec, - "cancer_study_identifier is not specified."); - } - SpringUtil.initDataSource(); - CancerStudy theCancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyIdentifier); - if (theCancerStudy == null) { - throw new IllegalArgumentException("cancer study identified by cancer_study_identifier '" - + cancerStudyIdentifier + "' not found in dbms or inaccessible to user."); - } - - if (caseListType.equals("all")) { - //Add "all" case list: - AddCaseList.addAllCasesList(theCancerStudy); - } - } - catch (RuntimeException e) { - throw e; - } - catch (Exception e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public AddCaseList(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new AddCaseList(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/CalculateMutationFrequencies.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/CalculateMutationFrequencies.java deleted file mode 100644 index 0f1931c8bca..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/CalculateMutationFrequencies.java +++ /dev/null @@ -1,143 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.model.*; - -import java.util.*; -import java.text.DecimalFormat; - -/** - * Calculates Mutation Frequencies. - */ -public class CalculateMutationFrequencies { - - public static void main(String[] args) throws Exception { - HashMap > mutationMap = new HashMap>(); - ProgressMonitor.setConsoleModeAndParseShowProgress(args); - - if (args.length < 2) { - System.out.println ("You must specify a stable case set id and stable cancer study id."); - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - return; - } - - String sampleSetName = args[0]; - DaoSampleList daoSampleList = new DaoSampleList(); - SampleList sampleSet = daoSampleList.getSampleListByStableId(sampleSetName); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(args[1]); - HashSet masterSampleSet = new HashSet(); - // NOTE - as of 12/12/14, patient lists contain sample ids - masterSampleSet.addAll(InternalIdUtil.getInternalNonNormalSampleIds(cancerStudy.getInternalId(), sampleSet.getSampleList())); - - if (sampleSet == null) { - System.out.println ("Patient set id: " + sampleSetName + " does not exist in database."); - return; - } - - ProgressMonitor.setCurrentMessage("Using patient set: " + sampleSet.getName()); - ProgressMonitor.setCurrentMessage("Number of patients: " + sampleSet.getSampleList().size()); - - // Delete all Existing Mutation Frequency Records - ProgressMonitor.setCurrentMessage("Deleting all existing mutation frequency records"); - - // Get all mutations - ArrayList mutationList = DaoMutation.getAllMutations(); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - ProgressMonitor.setCurrentMessage("Getting All Mutations..."); - // Iterate through all mutation records - for (ExtendedMutation mutation: mutationList) { - long entrezGeneId = mutation.getEntrezGeneId(); - CanonicalGene gene = daoGene.getGene(entrezGeneId); - - // Only count the mutation if it's in the selected case set, - // and it's somatic. - if (masterSampleSet.contains(mutation.getSampleId())) { - if (mutation.getMutationStatus().equalsIgnoreCase("SOMATIC") - || mutation.getMutationStatus().equalsIgnoreCase("UNKNOWN")) { - // Store in mutation map - if (mutationMap.containsKey(gene)) { - HashSet mutationCaseSet = mutationMap.get(gene); - mutationCaseSet.add(mutation.getSampleId()); - } else { - HashSet mutationCaseSet = new HashSet (); - mutationCaseSet.add(mutation.getSampleId()); - mutationMap.put(gene, mutationCaseSet); - } - } - } - } - - ArrayList geneList = new ArrayList (); - for (CanonicalGene gene: mutationMap.keySet()) { - HashSet mutationCaseSet = mutationMap.get(gene); - gene.setSomaticMutationFrequency(mutationCaseSet.size() / (double) sampleSet.getSampleList().size()); - geneList.add(gene); - } - Collections.sort(geneList, new SingleGeneComparator()); - - ProgressMonitor.setCurrentMessage("Here are all genes mutated > 4%:"); - DecimalFormat formatter = new DecimalFormat("#,###,###.###"); - - for (int i=0; i< geneList.size(); i++) { - CanonicalGene gene = geneList.get(i); - if (gene.getSomaticMutationFrequency() > .01) { - System.out.println (gene.getHugoGeneSymbolAllCaps() + "\t" - + formatter.format(gene.getSomaticMutationFrequency())); - } - } - - ProgressMonitor.setCurrentMessage("Storing results to database."); - for (int i=0; i gene2.getSomaticMutationFrequency()) { - return -1; - } else { - return +1; - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ConsoleRunnable.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ConsoleRunnable.java deleted file mode 100644 index 0ce5e15e3d4..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ConsoleRunnable.java +++ /dev/null @@ -1,165 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - * - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.scripts; - -import java.io.IOException; -import java.util.Date; - -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -/** - * A superclass for procedures runnable as a command-line script. - * - * This keeps the procedure logic in {@link #run()} clean of the - * command line-specific functionality added by {@link #runInConsole()}, - * such as exiting the JVM process with a usage message and exit status code. - * - * @see {@link UsageException} - */ -public abstract class ConsoleRunnable implements Runnable { - - /** - * Standard Unix exit codes from sysexits.h. - * - * @see - * The (Free)BSD man page for sysexits(3) - * - */ - private enum SysExit { - EX_OK ( 0), // successful termination - EX_USAGE (64), // command line usage error - EX_DATAERR (65), // data format error - EX_NOINPUT (66), // cannot open input - EX_NOUSER (67), // addressee unknown - EX_NOHOST (68), // host name unknown - EX_UNAVAILABLE (69), // service unavailable - EX_SOFTWARE (70), // internal software error - EX_OSERR (71), // system error (e.g., can't fork) - EX_OSFILE (72), // critical OS file missing - EX_CANTCREAT (73), // can't create (user) output file - EX_IOERR (74), // input/output error - EX_TEMPFAIL (75), // temp failure; user is invited to retry - EX_PROTOCOL (76), // remote error in protocol - EX_NOPERM (77), // permission denied - EX_CONFIG (78); // configuration error - - private final int statusCode; - - /** - * Instantiates an exit status symbol for a numeric code. - * - * @param statusCode the exit status code - */ - private SysExit(int statusCode) { - this.statusCode = statusCode; - } - - /** - * Gets the numeric value of the exit status. - * - * @return the exit status code - */ - public int getStatusCode() { - return statusCode; - } - - /** - * Selects an appropriate exit status symbol to reflect an exception. - * - * @param t the exception or error to base the exit status on - */ - public static SysExit select(Throwable t) { - Class exceptionClass; - // if this is an uninformative RuntimeException packing another - // cause, use the class of the cause to determine exit status - if (t.getClass() == RuntimeException.class && - t.getCause() != null && - (t.getMessage() == null || - t.getMessage().equals(t.getCause().toString()))) { - exceptionClass = t.getCause().getClass(); - } else { - exceptionClass = t.getClass(); - } - // Select an appropriate exit status for this class of throwable - if (IllegalArgumentException.class.isAssignableFrom(exceptionClass) || - exceptionClass.equals(RuntimeException.class)) { - // These are usually thrown because of input data errors - return EX_DATAERR; - } else if (IOException.class.isAssignableFrom(exceptionClass)) { - return EX_IOERR; - } else { - return EX_SOFTWARE; - } - } - } - - /** - * the command line arguments to be used by the {@link #run()} method - */ - protected String[] args; - - /** - * Instantiates a ConsoleRunnable to run with the given command line args. - * - * @param args the command line arguments to be used - * @see {@link #run()} - */ - public ConsoleRunnable(String[] args) { - this.args = args; - } - - /** - * Performs the functionality of the script not specific to console usage. - */ - @Override - public abstract void run(); - - /** - * Runs the command as a script and exits with an appropriate exit code. - */ - public void runInConsole() { - SysExit status; - try { - Date start = new Date(); - ProgressMonitor.setConsoleModeAndParseShowProgress(this.args); - this.run(); - ConsoleUtil.showMessages(); - System.err.println("Done."); - Date end = new Date(); - long totalTime = end.getTime() - start.getTime(); - System.err.println ("Total time: " + totalTime + " ms\n"); - status = SysExit.EX_OK; - } - catch (UsageException e) { - e.printUsageLine(); - status = SysExit.EX_USAGE; - } - catch (Throwable t) { - ConsoleUtil.showWarnings(); - System.err.println ("\nABORTED!"); - t.printStackTrace(); - status = SysExit.select(t); - } - System.exit(status.getStatusCode()); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertCosmicVcfToMaf.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertCosmicVcfToMaf.java deleted file mode 100644 index 470a06e92e9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertCosmicVcfToMaf.java +++ /dev/null @@ -1,124 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.FileUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import java.io.BufferedReader; -import java.io.BufferedWriter; -import java.io.File; -import java.io.FileReader; -import java.io.FileWriter; -import java.io.IOException; - -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -public class ConvertCosmicVcfToMaf { - private File vcf, maf; - - public ConvertCosmicVcfToMaf(File vcf, File maf) { - this.vcf = vcf; - this.maf = maf; - } - - public void convert() throws IOException { - Pattern p = Pattern.compile(".+;CNT=([0-9]+)"); - FileWriter writer = new FileWriter(maf); - BufferedWriter bufWriter = new BufferedWriter(writer); - bufWriter.append("COSMIC_ID\tCOSMIC_COUNT\tChromosome\tStart_Position\tEnd_Position\t" - + "Reference_Allele\tTumor_Seq_Allele1\tTumor_Seq_Allele2\tNCBI_Build\tCOSMIC_Info\n"); - - FileReader reader = new FileReader(vcf); - BufferedReader buf = new BufferedReader(reader); - String line; - while ((line = buf.readLine()) != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if (!line.startsWith("#")) { - String parts[] = line.split("\t",-1); - if (parts.length<8) { - System.err.println("Wrong line in cosmic: "+line); - continue; - } - - String info = parts[7]; - Matcher m = p.matcher(info); - if (m.find()) { - String id = parts[2]; - String count = m.group(1); - String chr = parts[0]; - long start = Long.parseLong(parts[1]); - String ref = parts[3]; - String alt = parts[4].equals(".")?"-":parts[4]; - long end = start + ref.length() -1; - - bufWriter.append(id).append("\t") - .append(count).append("\t") - .append(chr).append("\t") - .append(Long.toString(start)).append("\t") - .append(Long.toString(end)).append("\t") - .append(ref).append("\t") - .append(alt).append("\t") - .append(alt).append("\t") - .append("37\t") - .append(info) - .append("\n"); - } - } - } - buf.close(); - bufWriter.close(); - } - - public static void main(String[] args) throws Exception { - if (args.length < 2) { - System.out.println("command line usage: importCosmicData.pl "); - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - return; - } - ProgressMonitor.setConsoleModeAndParseShowProgress(args); - - File vcf = new File(args[0]); - System.out.println("Reading data from: " + vcf.getAbsolutePath()); - int numLines = FileUtil.getNumLines(vcf); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - ConvertCosmicVcfToMaf parser = new ConvertCosmicVcfToMaf(vcf, new File(args[1])); - parser.convert(); - ConsoleUtil.showWarnings(); - System.err.println("Done."); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertGeneIds.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertGeneIds.java deleted file mode 100644 index e1313f16f00..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertGeneIds.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; - -import java.io.BufferedReader; -import java.io.FileReader; -import java.io.File; -import java.io.IOException; - -/** - * Command Line Tool to Convert Gene IDs. - */ -public class ConvertGeneIds { - - public static void convertGeneIds(File file, String goCategory) throws IOException, DaoException { - BufferedReader buf = new BufferedReader (new FileReader(file)); - String line = buf.readLine(); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - System.out.println ("GO_CATEGORY"); - while (line != null) { - line = line.trim(); - CanonicalGene canonicalGene = daoGene.getNonAmbiguousGene(line); - if (canonicalGene != null) { - System.out.println (canonicalGene.getHugoGeneSymbolAllCaps() + " = " + goCategory); - } - line = buf.readLine(); - } - } - - public static void main(String[] args) throws Exception { - if (args.length< 2) { - System.out.println ("command line usage: convertGeneIds.pl file_name attribute_name"); - return; - } - String file = args[0]; - String attribute = args[1]; - convertGeneIds(new File (file), attribute); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertGeneSymbols.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertGeneSymbols.java deleted file mode 100644 index 529cef3233c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertGeneSymbols.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; - -import java.io.BufferedReader; -import java.io.FileReader; -import java.io.IOException; -import java.util.List; - -/** - * Given a list of Genes in a File (specified as Gene Symbols or Aliases), - * convert these genes to Standard HUGO Gene Symbols that the Portal understands. - * - * @author Ethan Cerami. - */ -public class ConvertGeneSymbols { - - public static void main(String[] args) throws DaoException, IOException { - if (args.length < 1) { - System.out.println("command line usage: updateGeneSymbols.pl " + ""); - return; - } - String fileName = args[0]; - FileReader reader = new FileReader(fileName); - BufferedReader bufferedReader = new BufferedReader(reader); - String line = bufferedReader.readLine(); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - while (line != null) { - String geneId = line.trim(); - List geneList = daoGene.guessGene(geneId); - if (geneList != null && geneList.size() == 1) { - CanonicalGene gene = geneList.get(0); - System.out.println(gene.getHugoGeneSymbolAllCaps()); - } - line = bufferedReader.readLine(); - } - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertSvsImages.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertSvsImages.java deleted file mode 100644 index 093c011a0fe..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ConvertSvsImages.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -//import loci.formats.FormatTools; -//import loci.formats.in.SVSReader; -//import loci.formats.out.JPEGWriter; - -/** - * - * @author jgao - */ -public class ConvertSvsImages { -// public static void main(String[] args) { -// if (args.length<1) { -// System.err.println("specify at least the input file"); -// } -// -// String svs = args[0]; -// String ext = ".jpg"; -// -// SVSReader svsReader = new SVSReader(); -// -// try { -// svsReader.setId(svs); -// int nSeries = svsReader.getSeriesCount(); -// System.out.println(nSeries+" series in this SVS file"); -// -// for (int i=1; i<=nSeries; i++) { -// System.out.println("Convert images series "+i); -// svsReader.setSeries(i); -// String out = svs.replace(".svs", "")+".series"+i+ext; -// JPEGWriter writer = new JPEGWriter(); -// FormatTools.convert(svsReader, writer, out); -// writer.close(); -// } -// svsReader.close(); -// } catch (Exception ex) { -// ex.printStackTrace(); -// } -// } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/CutInvalidCases.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/CutInvalidCases.java deleted file mode 100644 index df1a1ce35fc..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/CutInvalidCases.java +++ /dev/null @@ -1,143 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.FileUtil; -import org.mskcc.cbio.portal.dao.*; - -import java.io.File; -import java.io.IOException; -import java.io.FileReader; -import java.io.BufferedReader; -import java.util.HashSet; - -/** - * Command Line Tool to Remove Exclused Cases. - */ -public class CutInvalidCases { - - private File caseExclusionFile; - private File dataFile; - - public CutInvalidCases(File caseExclusionFile, File dataFile) { - this.caseExclusionFile = caseExclusionFile; - this.dataFile = dataFile; - } - - public String process() throws IOException, DaoException { - StringBuffer revisedText = new StringBuffer(); - HashSet excludedCaseSet = getExcludedCases(); - FileReader reader = new FileReader(dataFile); - BufferedReader buf = new BufferedReader(reader); - String headerLine = buf.readLine(); - String parts[] = headerLine.split("\t"); - boolean includeColumn[] = new boolean [parts.length]; - - // Mark all columns for inclusion / exclusion - ProgressMonitor.setCurrentMessage("Total number of columns to process: " + parts.length); - for (int i = 0; i < parts.length; i++) { - String colHeading = parts[i].trim(); - if (excludedCaseSet.contains(colHeading)) { - includeColumn[i] = false; - ProgressMonitor.setCurrentMessage ("Marking for exclusion, col #" + i - + ", Case ID: " + colHeading); - } else { - includeColumn[i] = true; - revisedText.append(colHeading); - if (i < parts.length-1) { - revisedText.append ("\t"); - } - } - } - revisedText.append("\n"); - - String line = buf.readLine(); - while (line != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - parts = line.split("\t"); - for (int i=0; i 0) { - String parts[] = line.split("\t"); - excludedCaseSet.add(parts[0]); - } - line = buf.readLine(); - } - return excludedCaseSet; - } - - public static void main(String[] args) throws Exception { - if (args.length < 2) { - System.out.println("command line usage: cutInvalidCases.pl " + - " "); - return; - } - - ProgressMonitor.setConsoleModeAndParseShowProgress(args); - File casesExcludedFile = new File (args[0]); - File dataFile = new File(args[1]); - - - System.err.println("Reading data from: " + dataFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(dataFile); - ProgressMonitor.setMaxValue(numLines); - CutInvalidCases parser = new CutInvalidCases(casesExcludedFile, - dataFile); - String out = parser.process(); - System.out.print (out); - ConsoleUtil.showWarnings(); - System.err.println("Done."); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/DeleteAllSampleLists.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/DeleteAllSampleLists.java deleted file mode 100644 index bc3223eb8e0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/DeleteAllSampleLists.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.DaoSampleList; -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -/** - * Command Line Tool to Delete All Sample Lists. - */ -public class DeleteAllSampleLists { - - public static void main(String[] args) throws Exception { - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - ProgressMonitor.setConsoleModeAndParseShowProgress(args); - DaoSampleList daoSampleList = new DaoSampleList(); - daoSampleList.deleteAllRecords(); - System.out.println ("\nAll Existing Sample Lists Deleted."); - ConsoleUtil.showWarnings(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/DumpPortalInfo.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/DumpPortalInfo.java deleted file mode 100644 index 9bae5b54617..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/DumpPortalInfo.java +++ /dev/null @@ -1,194 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - * - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.util.SpringUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.cbioportal.service.GenesetService; -import org.cbioportal.service.GenePanelService; -import org.cbioportal.web.config.CustomObjectMapper; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; - -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.core.JsonProcessingException; - -import java.io.*; -import java.util.*; - -/** - * Command line tool to generate JSON files used by the validation script. - */ -public class DumpPortalInfo extends ConsoleRunnable { - - // these names are defined in annotations to the methods of ApiController, - // in org.mskcc.cbio.portal.web - private static final String API_CANCER_TYPES = "/cancer-types"; - private static final String API_GENES = "/genes"; - private static final String API_GENE_ALIASES = "/genesaliases"; - private static final String API_GENESETS = "/genesets"; - private static final String API_GENESET_VERSION = "/genesets/version"; - private static final String API_GENE_PANELS = "/gene-panels"; - private static final int MAX_PAGE_SIZE = 10000000; - private static final int MIN_PAGE_NUMBER = 0; - - static class GeneAlias implements Serializable { - public String alias; - public String entrezGeneId; - } - - private static List extractGeneAliases(List canonicalGenes) { - List toReturn = new ArrayList(); - for (CanonicalGene canonicalGene : canonicalGenes) { - String entrezGeneId = String.valueOf(canonicalGene.getEntrezGeneId()); - for (String alias : canonicalGene.getAliases()) { - GeneAlias geneAlias = new GeneAlias(); - geneAlias.alias = alias; - geneAlias.entrezGeneId = entrezGeneId; - toReturn.add(geneAlias); - } - } - return toReturn; - } - - private static File nameJsonFile(File dirName, String apiName) { - // Determine the first alphabetic character - int i; - for ( - i = 0; - !Character.isLetter(apiName.charAt(i)); - i++) {} - // make a string without the initial non-alphanumeric characters - String fileName = apiName.substring(i).replace('/', '_') + ".json"; - return new File(dirName, fileName); - } - - private static void writeJsonFile( - List objectList, - File outputFile) throws IOException { - ObjectMapper mapper = new CustomObjectMapper(); - try { - mapper.writeValue(outputFile, objectList); - } catch (JsonProcessingException e) { - throw new RuntimeException( - "Error converting API data to JSON file: " + - e.toString(), - e); - } - } - - public void run() { - try { - // check args - if (args.length != 1 || - args[0].equals("-h") || args[0].equals("--help")) { - throw new UsageException( - "dumpPortalInfo.pl", - "Generate a folder of files describing the portal " + - "configuration.\n" + - "\n" + - "This is a subset of the information provided " + - "by the web API,\n" + - "intended for offline use of the validation " + - "script for study data.", - ""); - } - String outputDirName = args[0]; - ProgressMonitor.setCurrentMessage( - "Writing portal info files to directory '" + - outputDirName + "'...\n"); - - // initialize application context, including database connection - SpringUtil.initDataSource(); - GenesetService genesetService = SpringUtil.getApplicationContext().getBean( - GenesetService.class); - GenePanelService genePanelService = SpringUtil.getApplicationContext().getBean( - GenePanelService.class); - - File outputDir = new File(outputDirName); - // this will do nothing if the directory already exists: - // the files will simply be overwritten - outputDir.mkdir(); - if (!outputDir.isDirectory()) { - throw new IOException( - "Could not create directory '" + - outputDir.getPath() + "'"); - } - - try { - writeJsonFile( - DaoTypeOfCancer.getAllTypesOfCancer(), - nameJsonFile(outputDir, API_CANCER_TYPES)); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - List allGenes = daoGeneOptimized.getAllGenes(); - writeJsonFile( - allGenes, - nameJsonFile(outputDir, API_GENES)); - writeJsonFile( - extractGeneAliases(allGenes), - nameJsonFile(outputDir, API_GENE_ALIASES)); - writeJsonFile( - genesetService.getAllGenesets("SUMMARY", MAX_PAGE_SIZE, MIN_PAGE_NUMBER), - nameJsonFile(outputDir, API_GENESETS)); - writeJsonFile( - Arrays.asList(genesetService.getGenesetVersion()), - nameJsonFile(outputDir, API_GENESET_VERSION)); - writeJsonFile( - genePanelService.getAllGenePanels("DETAILED", MAX_PAGE_SIZE, MIN_PAGE_NUMBER, null, "ASC"), - nameJsonFile(outputDir, API_GENE_PANELS)); - } catch (DaoException e) { - throw new RuntimeException(e); - } catch (IOException e) { - throw new IOException( - "Error writing portal info file: " + e.toString(), - e); - } - } - catch (RuntimeException e) { - throw e; - } - catch (IOException e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public DumpPortalInfo(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new DumpPortalInfo(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ExportDataForDownload.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ExportDataForDownload.java deleted file mode 100644 index 23569f1fa7d..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ExportDataForDownload.java +++ /dev/null @@ -1,297 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; - -import java.io.*; -import java.text.*; -import java.util.*; -import joptsimple.*; - -/** - * Export all profile data to tsv files suitable for downloading. - * Also produce html index to the exported files. - * - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -public class ExportDataForDownload { - static final String NOT_AVAILABLE = "NA"; - static final String TABBED_FILE_SUFFIX = ".tsv"; - - private static String usageLine; - private static OptionParser parser; - - private static void quit(String msg){ - if( null != msg ){ - System.err.println( msg ); - } - System.err.println( usageLine ); - try { - parser.printHelpOn(System.err); - } catch (IOException e) { - e.printStackTrace(); - } - } - - public static void main(String[] args) { - - usageLine = "command line usage for ExportProfileData:"; - - parser = new OptionParser(); - parser.accepts("noprogress"); - OptionSpec htmlIndexFile = parser.accepts( "htmlIndexFile", "output file to store html " + - "index of files produced" ). - withRequiredArg().describedAs( "htmlIndexFile" ).ofType( String.class ); - OptionSpec directory = parser.accepts( "directory", "directory to hold download files produced" ). - withRequiredArg().describedAs( "directory" ).ofType( String.class ); - OptionSpec baseURL = parser.accepts( "baseURL", "base for html links" ).withRequiredArg(). - describedAs( "baseURL" ).ofType( String.class ); - - OptionSet options = null; - try { - options = parser.parse( args ); - } catch (OptionException e) { - quit( e.getMessage() ); - } - - if( !options.has( baseURL ) || !options.has( directory ) || !options.has( htmlIndexFile ) ){ - quit( "All arguments required."); - } - - // TODO: maybe write markdown instead of html - // TODO: export extended mutations; clinical; if in this class, rename it - // TODO: write targz of all files for each cancer - // TODO: split miRNA and mRNA - // TODO: *.seg files - generateExportProfileData( options.valueOf( htmlIndexFile ), - options.valueOf( directory ), - options.valueOf( baseURL ) ); - } - - /** - * Export all profile data to downloadable *.tsv files. - * Files are stored in directory. - * Write an HTML directory of the files into htmlIndexFile. - * - */ - public static void generateExportProfileData( String htmlIndexFile, String directory, String baseURL ){ - - /* - * get all cancer types - * for each cancer type, get all profiles - * filename = cancer.name + profile.name - * for each profile, get all cases - * print header row - * for each profile, get all genes - * for each gene, get all values - * print gene and values - */ - - long beginning = System.currentTimeMillis(); - try { - - FileWriter outFile = new FileWriter( htmlIndexFile ); - PrintWriter htmlIndexFilePrintWriter = new PrintWriter(outFile); - - DaoGeneOptimized aDaoGene = DaoGeneOptimized.getInstance(); - ArrayList allGenes = aDaoGene.getAllGenes(); - // map from EntrezID to HugoSymbol, so we don't have to look up each one - // TODO: measure how much time this saves, if any - HashMap geneSymbolMap = new HashMap(); - for( CanonicalGene aCanonicalGene : allGenes ){ - geneSymbolMap.put( aCanonicalGene.getEntrezGeneId(), aCanonicalGene.getHugoGeneSymbolAllCaps() ); - } - - ArrayList theCancerStudies = DaoCancerStudy.getAllCancerStudies(); - htmlIndexFilePrintWriter.print( "

    " ); - - for( CancerStudy aCancerStudy : theCancerStudies ){ - - System.out.println( "\nProcessing " + aCancerStudy.getName() + "\n" ); - - htmlIndexFilePrintWriter.print( "
  • " + aCancerStudy.getName() + "
  • \n" ); - - ArrayList theGeneticProfiles = - DaoGeneticProfile.getAllGeneticProfiles( aCancerStudy.getInternalId() ); - htmlIndexFilePrintWriter.print( "
      " ); - - // for each of this cancer's genetic profiles - for( GeneticProfile aGeneticProfile : theGeneticProfiles ){ - - StringBuffer monitorOutput = new StringBuffer(); - monitorOutput.append( "\tProcessing " + aGeneticProfile.getProfileName() ); - - ArrayList internalSampleIds = - DaoSampleProfile.getAllSampleIdsInProfile( aGeneticProfile.getGeneticProfileId() ); - - // don't write empty files - if( 0 == internalSampleIds.size() ){ - monitorOutput.append( "\tNo samples ... skipping.\n" ); - System.out.println( monitorOutput.toString() ); - continue; - } - monitorOutput.append( ", with " + internalSampleIds.size() + " cases" ); - - // TODO: The code below needs to be updated to get genes in each type of profile - ArrayList< Long > theGenes = null; - - // don't write empty files - if( 0 == theGenes.size() ){ - monitorOutput.append( "\tNo genes ... skipping.\n" ); - System.out.println( monitorOutput.toString() ); - continue; - } - monitorOutput.append( " and " + theGenes.size() + " genes.\n" ); - - long start = System.currentTimeMillis(); - - String filename = aGeneticProfile.getStableId() + TABBED_FILE_SUFFIX; - String pathname = directory + "/" + filename; - FileWriter outDownloadFile = new FileWriter( pathname ); - PrintWriter out = new PrintWriter( outDownloadFile ); - - // link to baseURL + filename - htmlIndexFilePrintWriter.print( "
    • " + - aGeneticProfile.getProfileName() + "
    • \n" ); - - // TODO: write metadata row: # date generated, cgds dbms source, documentation of data encoding, - DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss"); - Date date = new Date(); - out.println( "# " + dateFormat.format(date) + ", cgds dbms source, documentation of " + - "data encoding, etc."); - - // write header row - out.print( "Hugo Gene Symbol\tGene ID"); - for(Integer sampleId : internalSampleIds){ - Sample s = DaoSample.getSampleById(sampleId); - out.print( "\t" + s.getStableId()); - } - out.println( ); - - DaoGeneticAlteration aDaoGeneticAlteration = DaoGeneticAlteration.getInstance(); - int genesWithoutSymbols = 0; - for( Long aGeneID : theGenes ){ - HashMap theGeneticAlterationMap = - aDaoGeneticAlteration.getGeneticAlterationMap( aGeneticProfile.getGeneticProfileId(), - aGeneID.longValue() ); - - // output gene symbol and ID - String geneSymbol = geneSymbolMap.get(aGeneID); - if( null == geneSymbol ){ - out.print( "---" ); // TODO: what should be done if a gene doesn't have a symbol? - genesWithoutSymbols++; - }else{ - out.print( geneSymbol ); - } - out.print( "\t" + aGeneID.longValue() ); - - // output data - for(Integer sampleId : internalSampleIds){ - String value = theGeneticAlterationMap.get(sampleId); - out.print( "\t" ); - if( null == value ){ - out.print(NOT_AVAILABLE); - }else{ - out.print( value ); - } - } - out.println( ); - } - - out.close(); - if( 0 < genesWithoutSymbols ){ - monitorOutput.append( "\tWarning: " + genesWithoutSymbols - + " Gene IDs without matching symbols.\n" ); - } - monitorOutput.append( "\tWrote " + pathname + "\n" ); - - long duration = System.currentTimeMillis() - start; - monitorOutput.append( "\tProcessed " + ((1000L*(long)theGenes.size()*(long)internalSampleIds.size())/duration) - + " values per second.\n"); - - System.out.println( monitorOutput.toString() ); - } - - // TODO NOW: export extended mutations; clinical - - // clinical data - // TODO need to be able to get all cases for a cancer - /* - // get cases - DaoSurvival aDaoClinicalData = new DaoSurvival(); - DaoCaseList aDaoCaseList = new DaoCaseList(); - ArrayList allClinicalData = aDaoClinicalData.getCases( - getCaseListByStableId - - ); - - for( Survival aClinicalData : allClinicalData ){ - - } - - // open file - - String filename = aCancerStudy.getCancerStudyId() + "_clinicalData" + TabbedFileSuffix; - String pathname = directory + "/" + filename; - FileWriter outDownloadFile = new FileWriter( pathname ); - PrintWriter out = new PrintWriter( outDownloadFile ); - - // link to baseURL + filename - htmlIndexFilePrintWriter.print( "
    • " + - "Clinical data" + "
    • \n" ); - - // write file - // create entry in html - // close file - - */ - - - htmlIndexFilePrintWriter.print( "
    \n" ); - } - htmlIndexFilePrintWriter.print( "
\n" ); - htmlIndexFilePrintWriter.close(); - - } catch (DaoException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } catch (IOException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - - System.out.println( "\nTotal time " + (System.currentTimeMillis() - beginning)/1000L + " seconds."); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ExportProfileData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ExportProfileData.java deleted file mode 100644 index 15e51b1aa8e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ExportProfileData.java +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; - -import java.io.*; -import java.util.*; - -/** - * Export all Data Associated with a Single Genomic Profile. - * - * @author Ethan Cerami. - */ -public class ExportProfileData { - private static final String TAB = "\t"; - private static final String NEW_LINE = "\n"; - - public static void main(String[] args) throws DaoException, IOException { - // check args - if (args.length < 1) { - System.out.println("command line usage: exportProfileData.pl " + ""); - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - return; - } - String stableGeneticProfileId = args[0]; - System.out.println("Using genetic profile ID: " + stableGeneticProfileId); - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId(stableGeneticProfileId); - if (geneticProfile == null) { - System.out.println("Genetic Profile not recognized: " + stableGeneticProfileId); - return; - } else { - System.out.println(geneticProfile.getProfileName()); - ProgressMonitor.setConsoleModeAndParseShowProgress(args); - export(geneticProfile); - } - } - - public static void export(GeneticProfile profile) throws IOException, DaoException { - String fileName = profile.getStableId() + ".txt"; - FileWriter writer = new FileWriter (fileName); - ArrayList sampleList = outputHeader(profile, writer); - - DaoGeneticAlteration daoGeneticAlteration = DaoGeneticAlteration.getInstance(); - Set geneSet = daoGeneticAlteration.getGenesInProfile(profile.getGeneticProfileId()); - ProgressMonitor.setMaxValue(geneSet.size()); - Iterator geneIterator = geneSet.iterator(); - outputProfileData(profile, writer, sampleList, daoGeneticAlteration, geneIterator); - System.out.println ("\nProfile data written to: " + fileName); - } - - private static void outputProfileData(GeneticProfile profile, FileWriter writer, - ArrayList sampleList, DaoGeneticAlteration daoGeneticAlteration, - Iterator geneIterator) throws IOException, DaoException { - while (geneIterator.hasNext()) { - ConsoleUtil.showProgress(); - ProgressMonitor.incrementCurValue(); - CanonicalGene currentGene = geneIterator.next(); - writer.write(currentGene.getHugoGeneSymbolAllCaps() + TAB); - writer.write(Long.toString(currentGene.getEntrezGeneId())); - HashMap valueMap = daoGeneticAlteration.getGeneticAlterationMap - (profile.getGeneticProfileId(), currentGene.getEntrezGeneId()); - for (Integer sampleId: sampleList) { - writer.write(TAB + valueMap.get(sampleId)); - } - writer.write(NEW_LINE); - } - writer.close(); - } - - private static ArrayList outputHeader(GeneticProfile profile, FileWriter writer) throws DaoException, IOException { - ArrayList sampleList = DaoGeneticProfileSamples.getOrderedSampleList(profile.getGeneticProfileId()); - writer.write("SYMBOL" + TAB); - writer.write("ENTREZ_GENE_ID"); - for (Integer sampleId : sampleList) { - Sample s = DaoSample.getSampleById(sampleId); - writer.write(TAB + s.getStableId()); - } - writer.write(NEW_LINE); - return sampleList; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/FilterCases.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/FilterCases.java deleted file mode 100644 index 6b39e8d7ba8..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/FilterCases.java +++ /dev/null @@ -1,154 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.BufferedReader; -import java.io.BufferedWriter; -import java.io.FileReader; -import java.io.FileWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.HashSet; -import java.util.List; -import java.util.Set; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import org.apache.commons.lang3.StringUtils; - -/** - * Filter cases in files - * @author jgao - */ -public class FilterCases { - public static void main(String[] args) throws Exception { - if (args.length == 0) { - System.out.println("command line usage: filterCases.pl regex.txt input_file output_file id_row_or_col starting_row_or_col:\n" - + "\te.g. filterCases.pl case_id.txt input_file output_file c10 r1"); - return; - } - - Set regexes = fileToSet(args[0]); - String concatRegex = "(("+StringUtils.join(regexes, ")|(")+"))"; - - String strIdIx = args[3].toLowerCase(); // row or column of IDs - int idIx = Integer.parseInt(strIdIx.substring(1)); - - String strStart = args[4].toLowerCase(); // starting to filter - boolean byRow = strStart.startsWith("r"); - int start = Integer.parseInt(strStart.substring(1)); - - if (byRow) { - cutRows(args[1], args[2], concatRegex, idIx, start); - } else { - cutColumns(args[1], args[2], concatRegex, idIx, start); - } - - } - - private static Set fileToSet(String caseIdFile) throws IOException { - BufferedReader in = new BufferedReader(new FileReader(caseIdFile)); - Set ret = new HashSet(); - for (String line = in.readLine(); line != null; line = in.readLine()) { - ret.add(line); - } - return ret; - } - - private static void cutColumns(String inFile, String outFile, - String concatRegex, int idRow, int startColum) throws IOException { - - BufferedReader in = new BufferedReader(new FileReader(inFile)); - - for (int i=0; i partsKept = new ArrayList(); - for (int i=0; i. -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.BufferedReader; -import java.io.FileReader; -import java.io.IOException; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.LinkedHashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Scanner; -import java.util.Set; - -import org.mskcc.cbio.portal.model.SetOfGenes; -import org.mskcc.cbio.portal.util.GeneSetUtil; - -/** - * The class verify if the gene symbols in the sample gene sets are the latest - * HUPO gene symbols. - * @author jgao - */ -public class GeneSetsVerification { - private String ncbiGeneFile; - - public GeneSetsVerification(String ncbiGeneFile) { - this.ncbiGeneFile = ncbiGeneFile; - } - - /** - * Verify if genes in gene sets are all latest HUPO gene symbols. - * @return true of all updated, otherwise, false. - * @throws IOException - */ - public boolean verify() throws IOException { - Map> geneSetMap = getGeneSet(); - Set ncbiSymbols = getNCBISymbols(); - - // go over all genes in geneset - boolean ret = true; - for (Map.Entry> entry : geneSetMap.entrySet()) { - String geneSetName = entry.getKey(); - for (String gene : entry.getValue()) { - if (!ncbiSymbols.contains(gene)) { - ret = false; - System.err.println("Gene symbol "+gene+" is out of date " - + "(in gene set of " + geneSetName + ")"); - } - } - } - return ret; - } - - private Map> getGeneSet() throws IOException { - GeneSetUtil geneSetUtil = GeneSetUtil.getInstance(); - ArrayList geneSetList = geneSetUtil.getGeneSetList(); - Map> map = new LinkedHashMap>(geneSetList.size()); - for (SetOfGenes setOfGenes : geneSetList) { - String geneSetName = setOfGenes.getName(); - String geneList = setOfGenes.getGeneList(); - map.put(geneSetName, Arrays.asList(geneList.split(" "))); - } - return map; - } - - private Set getNCBISymbols() throws IOException { - Set set = new HashSet(); - FileReader reader = new FileReader(ncbiGeneFile); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine(); - while (line != null) { - if (!line.startsWith("#")) { - String[] parts = line.split("\t"); - set.add(parts[2]); - } - line = buf.readLine(); - } - set.add(""); - return set; - } - - public static void main(String[] args) throws Exception { - if (args.length == 0) { - System.out.println("command line usage: verifyGeneSets.pl" - + " "); - return; - } - - String ncbiGeneFile = args[0]; - GeneSetsVerification geneSetsVerification - = new GeneSetsVerification(ncbiGeneFile); - if (!geneSetsVerification.verify()) { - System.out.println("Please update the gene symbols in the sample" - + " gene sets. \nPress enter to continue..."); - Scanner keyboard = new Scanner(System.in); - keyboard.nextLine(); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/GenerateMutationData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/GenerateMutationData.java deleted file mode 100644 index 3cad3df24cc..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/GenerateMutationData.java +++ /dev/null @@ -1,292 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import java.util.Set; -import java.util.Map; -import java.util.List; -import java.util.HashMap; -import java.util.ArrayList; -import java.io.File; -import java.io.FileReader; -import java.io.IOException; -import java.io.BufferedReader; - -/** - * Class to Generate Mutation Data, Ready for Import into CGDS. - * - * To work correctly, this script requires four data files: - * - * 1) a list of all cases. - * 2) a list of all sequenced genes. - * 3) a list of all cases, which were sequenced. - * 4) a list of mutations found. - * - * This script primarily handles the following functions: - * 1) outputs negative results; for example, if gene X is sequenced in case Y we report this as - * a zero. - * 2) multiple mutations within the same gene in the same case are output as one line. - */ -public class GenerateMutationData { - public static final String MAP_KEY_DELIMETER = ":::"; - private File allCasesFile; - private File sequencedGeneFile; - private File sequencedCaseFile; - private File knownMutationFile; - - /** - * Constructor. - * @param allCasesFile File containing all cases in project. - * @param sequencedGeneFile File containing all sequenced genes. - * @param sequencedCaseFile File containing all cases, which were sequenced. - * @param knownMutationFile File containing discovered mutations. - */ - public GenerateMutationData (File allCasesFile, File sequencedGeneFile, File sequencedCaseFile, - File knownMutationFile) { - this.allCasesFile = allCasesFile; - this.sequencedGeneFile = sequencedGeneFile; - this.sequencedCaseFile = sequencedCaseFile; - this.knownMutationFile = knownMutationFile; - } - - /** - * Executes the process. - * @throws IOException IO Error. - */ - public String execute () throws IOException { - List allCasesList = getList(allCasesFile); - List sequencedGeneList = getList(sequencedGeneFile); - List sequencedCaseList = getList(sequencedCaseFile); - - // create mutation map - Map mutationsMap = new HashMap(); - - // overlay no mutation on top of mutation map - applyNoMutationData(sequencedGeneList, sequencedCaseList, mutationsMap); - - // overlay known mutations on top of mutation map - applyKnownMutationsData(knownMutationFile, mutationsMap); - - // generate mutation file for import - return generateMutationFile(mutationsMap); - } - - /** - * Extracts a list of "things", e.g. caseIds or genes from a file. - * - * @param file File containing cases. - * @return Arrayist of "things", e.g. caseIds or genes. - */ - private ArrayList getList(File file) throws IOException { - - // list to return - ArrayList toReturn = new ArrayList(); - - FileReader reader = new FileReader(file); - BufferedReader buf = new BufferedReader(reader); - - String line = buf.readLine(); - while (line != null) { - if (line.trim().length() > 0 && ! line.startsWith("#")) { - toReturn.add(line.trim()); - } - line = buf.readLine(); - } - - // outta here - buf.close(); - return toReturn; - } - - /** - * Returns hash map of all gene, case combinations set to NaN. - * - * @param allCasesList List - * @return Map - */ - private Map getMutationMap(List allCasesList) - throws DaoException, IOException { - - // map to return - Map toReturn = new HashMap(); - - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - ArrayList geneList = daoGene.getAllGenes(); - - for (CanonicalGene canonicalGene : geneList) { - for (String caseId : allCasesList) { - toReturn.put(Long.toString(canonicalGene.getEntrezGeneId()) - + GenerateMutationData.MAP_KEY_DELIMETER + caseId, "NaN"); - } - } - - // outta here - return toReturn; - } - - /** - * Applies no mutation data to mutation map. - * - * @param sequencedGeneList List - * @param sequencedCaseList List - * @param mutationsMap Map - */ - private void applyNoMutationData(List sequencedGeneList, List sequencedCaseList, - Map mutationsMap) { - - for (String sequencedGene : sequencedGeneList) { - for (String sequencedCase : sequencedCaseList) { - String key = createKey(sequencedGene, sequencedCase); - mutationsMap.put(key, "0"); - } - } - } - - private String createKey(String sequencedGene, String sequencedCase) { - if (sequencedGene == null || sequencedCase == null - || sequencedGene.length() == 0 || sequencedCase.length() ==0) { - throw new IllegalArgumentException ("One or more parameters is null or empty."); - } - String key = sequencedGene + GenerateMutationData.MAP_KEY_DELIMETER + sequencedCase; - return key; - } - - /** - * Applies know mutations to mutation map - * - * @param knownMutationsFile File - * @param mutationsMap Map - */ - private void applyKnownMutationsData(File knownMutationsFile, - Map mutationsMap) throws IOException { - - // setup reader - FileReader reader = new FileReader(knownMutationsFile); - BufferedReader buf = new BufferedReader(reader); - - // read header - String line = buf.readLine(); - if (!line.startsWith("Entrez_Gene_Id")) { - ProgressMonitor.logWarning("Missing header in: " + knownMutationsFile.getCanonicalPath() - + " aborting mutation file import..."); - return; - } - - // concatentate all know mutations by gene/case - Map knownMutationsMap = new HashMap(); - line = buf.readLine(); - while (line != null) { - if (!line.startsWith("#")) { - String[] parts = line.split("\t"); - String key = createKey (parts[0], parts[1]); - String mutation = knownMutationsMap.get(key); - mutation = (mutation == null) ? parts[2] : mutation + "," + parts[2]; - knownMutationsMap.put(key, mutation); - } - line = buf.readLine(); - } - buf.close(); - - // apply known mutations to mutations map - Set keys = knownMutationsMap.keySet(); - for (String key : keys) { - if (!mutationsMap.containsKey(key)) { - String[] parts = key.split(":::"); - ProgressMonitor.logWarning("Missing gene/case combination: " + parts[0] + " " + parts[1] - + " in mutationMap. In other words, it looks like we have a mutation " - + "call for this gene/case combination, but the case is not listed as being " - + " sequenced in the first place!"); - continue; - } - mutationsMap.put(key, knownMutationsMap.get(key)); - } - } - - /** - * Generates mutation file for import - * - * @param mutationsMap Map - */ - private String generateMutationFile(Map mutationsMap) throws IOException { - - // write header - StringBuffer out = new StringBuffer(); - out.append ("Entrez_Gene_Id\tTumor_Case\tPROT_STRING\n"); - - // write data - Set keys = mutationsMap.keySet(); - for (String key : keys) { - String[] parts = key.split(GenerateMutationData.MAP_KEY_DELIMETER); - out.append(parts[0] + "\t" + parts[1] + "\t" + mutationsMap.get(key) + "\n"); - } - return out.toString(); - } - - public static void main(String[] args) throws Exception { - - // check args - if (args.length < 4) { - System.out.println("command line usage: generateMutationData.pl " + - " "); - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - return; - } - - // setup some vars - ProgressMonitor.setConsoleModeAndParseShowProgress(args); - ProgressMonitor.setCurrentMessage("Generating mutation data file..."); - File allCasesFile = new File(args[0]); - File sequencedGeneFile = new File(args[1]); - File sequencedCaseFile = new File(args[2]); - File knownMutationFile = new File(args[3]); - - try { - // construct our lists - GenerateMutationData util = new GenerateMutationData(allCasesFile, sequencedGeneFile, - sequencedCaseFile, knownMutationFile); - String out = util.execute(); - System.out.println (out); - } catch (IOException e) { - System.err.println(e.getMessage()); - } - - ConsoleUtil.showWarnings(); - System.err.println("Done."); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/GenericAssayMetaUtils.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/GenericAssayMetaUtils.java deleted file mode 100644 index 8582f071b45..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/GenericAssayMetaUtils.java +++ /dev/null @@ -1,26 +0,0 @@ -package org.mskcc.cbio.portal.scripts; - -import org.cbioportal.model.EntityType; -import org.cbioportal.model.GeneticEntity; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneticEntity; - -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.stream.Collectors; - -public class GenericAssayMetaUtils { - public static Map buildGenericAssayStableIdToEntityIdMap() { - Map genericAssayStableIdToEntityIdMap = new HashMap<>(); - try { - List allEntities = DaoGeneticEntity.getAllGeneticEntities(); - genericAssayStableIdToEntityIdMap = allEntities.stream() - .filter(entityType -> EntityType.GENERIC_ASSAY.toString().equals(entityType.getEntityType())) - .collect(Collectors.toMap(GeneticEntity::getStableId, GeneticEntity::getId)); - } catch (DaoException e) { - e.printStackTrace(); - } - return genericAssayStableIdToEntityIdMap; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/GeneticAlterationImporter.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/GeneticAlterationImporter.java deleted file mode 100644 index 32aa43f2380..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/GeneticAlterationImporter.java +++ /dev/null @@ -1,59 +0,0 @@ -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneticAlteration; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import java.util.*; - -import static java.lang.String.format; - -public class GeneticAlterationImporter { - - private final int geneticProfileId; - private Set importSetOfGenes = new HashSet<>(); - private DaoGeneticAlteration daoGeneticAlteration; - - public GeneticAlterationImporter( - int geneticProfileId, - DaoGeneticAlteration daoGeneticAlteration - ) { - this.geneticProfileId = geneticProfileId; - this.daoGeneticAlteration = daoGeneticAlteration; - } - - /** - * Check that we have not already imported information regarding this gene. - * This is an important check, because a GISTIC or RAE file may contain - * multiple rows for the same gene, and we only want to import the first row. - */ - public boolean store( - String[] values, - CanonicalGene gene, - String geneSymbol - ) throws DaoException { - try { - if (importSetOfGenes.add(gene.getEntrezGeneId())) { - daoGeneticAlteration.addGeneticAlterations(geneticProfileId, gene.getEntrezGeneId(), values); - return true; - } else { - String geneSymbolMessage = ""; - if (geneSymbol != null && !geneSymbol.equalsIgnoreCase(gene.getHugoGeneSymbolAllCaps())) { - geneSymbolMessage = " (given as alias in your file as: " + geneSymbol + ")"; - } - ProgressMonitor.logWarning(format( - "Gene %s (%d)%s found to be duplicated in your file. Duplicated row will be ignored!", - gene.getHugoGeneSymbolAllCaps(), - gene.getEntrezGeneId(), - geneSymbolMessage) - ); - return false; - } - } catch (Exception e) { - throw new RuntimeException("Aborted: Error found for row starting with " + geneSymbol + ": " + e.getMessage()); - } - } - - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/GetAllSampleLists.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/GetAllSampleLists.java deleted file mode 100644 index 5f15bc30143..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/GetAllSampleLists.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.DaoSampleList; -import org.mskcc.cbio.portal.model.SampleList; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import java.util.ArrayList; - -/** - * Command Line Tool to Export All Sample Lists to the Console. - */ -public class GetAllSampleLists { - - public static void main(String[] args) throws Exception { - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - ProgressMonitor.setConsoleModeAndParseShowProgress(args); - DaoSampleList daoSampleList = new DaoSampleList(); - ArrayList sampleListMaster = daoSampleList.getAllSampleLists(); - for (SampleList sampleList: sampleListMaster) { - System.out.println (sampleList.getSampleListId() + ": " - + sampleList.getStableId() + ": " + sampleList.getName()); - } - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCaisesClinicalXML.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCaisesClinicalXML.java deleted file mode 100644 index 162d129f82f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCaisesClinicalXML.java +++ /dev/null @@ -1,720 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.File; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; - -import org.dom4j.*; -import org.dom4j.io.SAXReader; -import joptsimple.*; - -import java.util.*; -/** - * - * @author jgao - */ -public class ImportCaisesClinicalXML extends ConsoleRunnable { - - private File xmlFile; - private int cancerStudyId; - - public ImportCaisesClinicalXML(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportCaisesClinicalXML(args); - runner.runInConsole(); - } - - public void run() { -// args = new String[] {"--data","/Users/jgao/projects/cbio-portal-data/studies/prad/su2c/data_clinical_caises.xml", -// "--meta","/Users/jgao/projects/cbio-portal-data/studies/prad/su2c/meta_clinical_caises.txt", -// "--loadMode", "bulkLoad"}; - try { - String progName = "ImportCaisesClinicalXML"; - String description = "Import clinical Caises XML files"; - - OptionParser parser = new OptionParser(); - parser.accepts("noprogress"); - OptionSpec data = parser.accepts( "data", - "caises data file" ).withRequiredArg().describedAs( "data_clinical_caises.xml" ).ofType( String.class ); - OptionSpec study = parser.accepts("study", - "cancer study identifier").withRequiredArg().describedAs("study").ofType(String.class); - parser.acceptsAll(Arrays.asList("dbmsAction", "loadMode")); - OptionSet options = null; - try { - options = parser.parse( args ); - //exitJVM = !options.has(returnFromMain); - } catch (OptionException e) { - throw new UsageException( - progName, description, parser, - e.getMessage()); - } - - String dataFile = null; - if( options.has( data ) ){ - dataFile = options.valueOf( data ); - } else{ - throw new UsageException( - progName, description, parser, - "'data' argument required"); - } - - String cancerStudyIdentifier = null; - if( options.has( study ) ){ - cancerStudyIdentifier = options.valueOf( study ); - } else{ - throw new UsageException( - progName, description, parser, - "'study' argument required"); - } - - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyIdentifier); - if (cancerStudy == null) { - throw new RuntimeException("Unknown cancer study: " + cancerStudyIdentifier); - } - - this.cancerStudyId = cancerStudy.getInternalId(); - DaoClinicalEvent.deleteByCancerStudyId(cancerStudyId); - this.xmlFile = new File(dataFile); - - importData(); - - System.out.println("Done!"); - } - catch (RuntimeException e) { - throw e; - } catch (Exception e) { - throw new RuntimeException(e); - } - - } - - public void setFile(File xmlFile, CancerStudy cancerStudy) { - this.xmlFile = xmlFile; - this.cancerStudyId = cancerStudy.getInternalId(); - } - - public void importData() throws Exception { - MySQLbulkLoader.bulkLoadOn(); - - // add unknow attriutes -- this - for (ClinicalAttribute ca : getClinicalAttributes(cancerStudyId)) { - if (DaoClinicalAttributeMeta.getDatum(ca.getAttrId(), cancerStudyId)==null) { - DaoClinicalAttributeMeta.addDatum(ca); - } - } - - SAXReader reader = new SAXReader(); - Document document = reader.read(xmlFile); - - List patientNodes = document.selectNodes("//Patients/Patient"); - - long clinicalEventId = DaoClinicalEvent.getLargestClinicalEventId(); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByInternalId(cancerStudyId); - - Map mapSu2cSampleIdSampleId = getMapSu2cSampleIdSampleId(cancerStudyId); - - for (Node patientNode : patientNodes) { - String patientId = patientNode.selectSingleNode("PtProtocolStudyId").getText(); - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId); - if (patient==null) { - continue; - } - - System.out.println("Importing "+patientId); - - // processing clinical data - // patient clinical data - List patientClinicalData = parsePatientClinicalData(patientNode, patientId, cancerStudyId); - for (ClinicalData cd : patientClinicalData) { - if (DaoClinicalData.getDatum(cancerStudy.getCancerStudyStableId(), cd.getStableId(), cd.getAttrId())==null) { - DaoClinicalData.addPatientDatum(patient.getInternalId(), cd.getAttrId(), cd.getAttrVal()); - } - } - // sample clinical data - List sampleClinicalData = parseClinicalDataFromSpecimen(patientNode, cancerStudyId, mapSu2cSampleIdSampleId); - for (ClinicalData cd : sampleClinicalData) { - if (DaoClinicalData.getDatum(cancerStudy.getCancerStudyStableId(), cd.getStableId(), cd.getAttrId())==null) { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudyId, cd.getStableId()); - DaoClinicalData.addSampleDatum(sample.getInternalId(), cd.getAttrId(), cd.getAttrVal()); - } - } - - // processing timeline data - List clinicalEvents = new ArrayList(); - long diagnositicDate = parseStatusesAndReturnDiagnosisDate(clinicalEvents, patientNode, patientId, cancerStudyId); - parseClinicalEventsFromSpecimen(clinicalEvents, patientNode, patientId, cancerStudyId); - parseMedicalTherapies(clinicalEvents, patientNode, patientId, cancerStudyId); - parseRadiationTherapies(clinicalEvents, patientNode, patientId, cancerStudyId); - parseBrachyTherapies(clinicalEvents, patientNode, patientId, cancerStudyId); - parseDiagnostics(clinicalEvents, patientNode, patientId, cancerStudyId); - parseLabTests(clinicalEvents, patientNode, patientId, cancerStudyId); - for (ClinicalEvent clinicalEvent : clinicalEvents) { - clinicalEvent.setClinicalEventId(++clinicalEventId); - if (clinicalEvent.getStartDate()!=null) { - clinicalEvent.setStartDate(clinicalEvent.getStartDate()-diagnositicDate); - } - if (clinicalEvent.getStopDate()!=null) { - clinicalEvent.setStopDate(clinicalEvent.getStopDate()-diagnositicDate); - } - DaoClinicalEvent.addClinicalEvent(clinicalEvent); - } - } - - MySQLbulkLoader.flushAll(); - } - - private static Map getMapSu2cSampleIdSampleId(int cancerStudyId) throws DaoException { - List clinicalData = DaoClinicalData.getDataByAttributeIds(cancerStudyId, Arrays.asList("SU2C_SAMPLE_ID")); - Map map = new HashMap(); - for (ClinicalData cd : clinicalData) { - String su2cSampleId = cd.getAttrVal(); - String sampleId = cd.getStableId(); - if (null!=map.put(su2cSampleId, sampleId)) { - System.err.println("Something is wrong: there are two samples with the same su2c ID: "+su2cSampleId); - } - } - return map; - } - - private static List getClinicalAttributes(int cancerStudyId) { - return Arrays.asList( -// new ClinicalAttribute("PATIENT_ID", "Patient ID", "Patient ID", "STRING", true, "1"), - new ClinicalAttribute("RACE", "Race", "Race", "STRING", true, "1", cancerStudyId), - new ClinicalAttribute("AGE", "Age", "Age", "Number", true, "1", cancerStudyId), - new ClinicalAttribute("PATIENT_CATEGORY", "Patient category", "Patient category", "STRING", true, "1", cancerStudyId), - new ClinicalAttribute("CLIN_T_STAGE", "Clinical T stage", "Clinical T stage", "STRING", true, "1", cancerStudyId), - new ClinicalAttribute("CLIN_N_STAGE", "Clinical N stage", "Clinical N stage", "STRING", true, "1", cancerStudyId), - new ClinicalAttribute("CLIN_M_STAGE", "Clinical M stage", "Clinical M stage", "STRING", true, "1", cancerStudyId), - new ClinicalAttribute("HISTOLOGY", "Histology", "Histology", "STRING", true, "1", cancerStudyId), - new ClinicalAttribute("PATH_T_STAGE", "Pathology T stage", "Pathology T stage", "STRING", true, "1", cancerStudyId), - new ClinicalAttribute("PATH_N_STAGE", "Pathology N stage", "Pathology N stage", "STRING", true, "1", cancerStudyId), - new ClinicalAttribute("PATH_M_STAGE", "Pathology M stage", "Pathology M stage", "STRING", true, "1", cancerStudyId), - new ClinicalAttribute("GLEASON_SCORE_1", "Gleason score 1", "Gleason score 1", "Number", true, "1", cancerStudyId), - new ClinicalAttribute("GLEASON_SCORE_2", "Gleason score 2", "Gleason score 2", "Number", true, "1", cancerStudyId), - new ClinicalAttribute("GLEASON_SCORE", "Gleason score", "Gleason score", "Number", true, "1", cancerStudyId), - new ClinicalAttribute("TUMOR_SITE", "Tumor site", "Tumor site", "STRING", false, "1", cancerStudyId) - ); - } - - private static List parsePatientClinicalData( - Node patientNode, String patientId, int cancerStudyId) { - List clinicalData = new ArrayList(); - - Node node = patientNode.selectSingleNode("PtRace"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "RACE", node.getText())); - } - - node = patientNode.selectSingleNode("PtRegistrationAge"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "AGE", node.getText())); - } - - node = patientNode.selectSingleNode("Categories/Category/Category"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "PATIENT_CATEGORY", node.getText())); - } - - node = patientNode.selectSingleNode("ClinicalStages/ClinicalStage/ClinStageT"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "CLIN_T_STAGE", node.getText())); - } - - node = patientNode.selectSingleNode("ClinicalStages/ClinicalStage/ClinStageN"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "CLIN_N_STAGE", node.getText())); - } - - node = patientNode.selectSingleNode("ClinicalStages/ClinicalStage/ClinStageM"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "CLIN_M_STAGE", node.getText())); - } - - node = patientNode.selectSingleNode("Pathologies/Pathology/PathHistology"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "HISTOLOGY", node.getText())); - } - - node = patientNode.selectSingleNode("Pathologies/Pathology/PathologyStageGrades/PathologyStageGrade/PathStageT"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "PATH_T_STAGE", node.getText())); - } - - node = patientNode.selectSingleNode("Pathologies/Pathology/PathologyStageGrades/PathologyStageGrade/PathStageN"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "PATH_N_STAGE", node.getText())); - } - - node = patientNode.selectSingleNode("Pathologies/Pathology/PathologyStageGrades/PathologyStageGrade/PathStageM"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "PATH_M_STAGE", node.getText())); - } - - node = patientNode.selectSingleNode("Pathologies/Pathology/ProstateBiopsyPaths/ProstateBiopsyPath/PathGG1"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "GLEASON_SCORE_1", node.getText())); - } - - node = patientNode.selectSingleNode("Pathologies/Pathology/ProstateBiopsyPaths/ProstateBiopsyPath/PathGG2"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "GLEASON_SCORE_2", node.getText())); - } - - node = patientNode.selectSingleNode("Pathologies/Pathology/ProstateBiopsyPaths/ProstateBiopsyPath/PathGGS"); - if (node!=null) { - clinicalData.add(new ClinicalData(cancerStudyId, patientId, "GLEASON_SCORE", node.getText())); - } - - return clinicalData; - } - - private static void parseMedicalTherapies(List clinicalEvents, - Node patientNode, String patientId, int cancerStudyId) { - List treatmentNodes = patientNode.selectNodes("MedicalTherapies/MedicalTherapy"); - - for (Node treatmentNode : treatmentNodes) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId); - ClinicalEvent clinicalEvent = new ClinicalEvent(); - clinicalEvent.setPatientId(patient.getInternalId()); - clinicalEvent.setEventType("TREATMENT"); - clinicalEvent.addEventDatum("TREATMENT_TYPE","Medical Therapy"); - - Node node = treatmentNode.selectSingleNode("MedTxDate"); - if (node==null) { - System.err.println("no date"); - continue; - } - clinicalEvent.setStartDate(Long.parseLong(node.getText())); - - node = treatmentNode.selectSingleNode("MedTxStopDate"); - if (node!=null) { - clinicalEvent.setStopDate(Long.parseLong(node.getText())); - } - - node = treatmentNode.selectSingleNode("MedTxType"); - if (node!=null) { - clinicalEvent.addEventDatum("SUBTYPE", node.getText()); - } - - node = treatmentNode.selectSingleNode("MedTxIndication"); - if (node!=null) { - clinicalEvent.addEventDatum("INDICATION", node.getText()); - } - - node = treatmentNode.selectSingleNode("MedTxAgent"); - if (node!=null) { - clinicalEvent.addEventDatum("AGENT", node.getText()); - } - - node = treatmentNode.selectSingleNode("MedTxDose"); - if (node!=null) { - clinicalEvent.addEventDatum("DOSE", node.getText()); - } - - node = treatmentNode.selectSingleNode("MedTxTotalDose"); - if (node!=null) { - clinicalEvent.addEventDatum("TOTAL_DOSE", node.getText()); - } - - node = treatmentNode.selectSingleNode("MedTxUnits"); - if (node!=null) { - clinicalEvent.addEventDatum("UNIT", node.getText()); - } - - node = treatmentNode.selectSingleNode("MedTxSchedule"); - if (node!=null) { - clinicalEvent.addEventDatum("SCHEDULE", node.getText()); - } - - node = treatmentNode.selectSingleNode("MedTxRoute"); - if (node!=null) { - clinicalEvent.addEventDatum("ROUTE", node.getText()); - } - - clinicalEvents.add(clinicalEvent); - } - } - - private static void parseRadiationTherapies(List clinicalEvents, - Node patientNode, String patientId, int cancerStudyId) { - List treatmentNodes = patientNode.selectNodes("RadiationTherapies/RadiationTherapy"); - - for (Node treatmentNode : treatmentNodes) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId); - ClinicalEvent clinicalEvent = new ClinicalEvent(); - clinicalEvent.setPatientId(patient.getInternalId()); - clinicalEvent.setEventType("TREATMENT"); - clinicalEvent.addEventDatum("TREATMENT_TYPE", "Radiation Therapy"); - - Node node = treatmentNode.selectSingleNode("RadTxDate"); - if (node==null) { - System.err.println("no date"); - continue; - } - clinicalEvent.setStartDate(Long.parseLong(node.getText())); - - node = treatmentNode.selectSingleNode("RadTxStopDate"); - if (node!=null) { - clinicalEvent.setStopDate(Long.parseLong(node.getText())); - } - - node = treatmentNode.selectSingleNode("RadTxType"); - if (node!=null) { - clinicalEvent.addEventDatum("SUBTYPE", node.getText()); - } - - node = treatmentNode.selectSingleNode("RadTxIndication"); - if (node!=null) { - clinicalEvent.addEventDatum("INDICATION", node.getText()); - } - - node = treatmentNode.selectSingleNode("RadTxIntent"); - if (node!=null) { - clinicalEvent.addEventDatum("INTENT", node.getText()); - } - - node = treatmentNode.selectSingleNode("RadTxDosePerFraction"); - if (node!=null) { - clinicalEvent.addEventDatum("DOSE_PER_FRACTION", node.getText()); - } - - node = treatmentNode.selectSingleNode("RadTxTotalDose"); - if (node!=null) { - clinicalEvent.addEventDatum("TOTAL_DOSE", node.getText()); - } - - node = treatmentNode.selectSingleNode("RadTxUnits"); - if (node!=null) { - clinicalEvent.addEventDatum("UNIT", node.getText()); - } - - node = treatmentNode.selectSingleNode("RadTxNumFractions"); - if (node!=null) { - clinicalEvent.addEventDatum("NUM_FRACTIONS", node.getText()); - } - - node = treatmentNode.selectSingleNode("RadTxTarget"); - if (node!=null) { - clinicalEvent.addEventDatum("TARGET", node.getText()); - } - - clinicalEvents.add(clinicalEvent); - } - } - - private static void parseBrachyTherapies(List clinicalEvents, - Node patientNode, String patientId, int cancerStudyId) { - List treatmentNodes = patientNode.selectNodes("BrachyTherapies/BrachyTherapy"); - - for (Node treatmentNode : treatmentNodes) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId); - ClinicalEvent clinicalEvent = new ClinicalEvent(); - clinicalEvent.setPatientId(patient.getInternalId()); - clinicalEvent.setEventType("TREATMENT"); - clinicalEvent.addEventDatum("TREATMENT_TYPE","Brachytherapy"); - - Node node = treatmentNode.selectSingleNode("BrachyDate"); - if (node==null) { - System.err.println("no date"); - continue; - } - clinicalEvent.setStartDate(Long.parseLong(node.getText())); - - node = treatmentNode.selectSingleNode("BrachyIsotope"); - if (node!=null) { - clinicalEvent.addEventDatum("BRACHY_ISOTOPE", node.getText()); - } - - node = treatmentNode.selectSingleNode("BrachyPrescribedDose"); - if (node!=null) { - clinicalEvent.addEventDatum("DOSE", node.getText()); - } - - node = treatmentNode.selectSingleNode("BrachyDoseNotes"); - if (node!=null) { - clinicalEvent.addEventDatum("DOSE_NOTES", node.getText()); - } - - clinicalEvents.add(clinicalEvent); - } - } - - private static void parseDiagnostics(List clinicalEvents, - Node patientNode, String patientId, int cancerStudyId) { - List diagnosticNodes = patientNode.selectNodes("Diagnostics/Diagnostic"); - for (Node diagnosticNode : diagnosticNodes) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId); - ClinicalEvent clinicalEvent = new ClinicalEvent(); - clinicalEvent.setPatientId(patient.getInternalId()); - clinicalEvent.setEventType("DIAGNOSTIC"); - - Node node = diagnosticNode.selectSingleNode("DxDate"); - if (node==null) { - System.err.println("no date"); - continue; - } - clinicalEvent.setStartDate(Long.parseLong(node.getText())); - - node = diagnosticNode.selectSingleNode("DxType"); - if (node!=null) { - clinicalEvent.addEventDatum("DIAGNOSTIC_TYPE", node.getText()); - } - - node = diagnosticNode.selectSingleNode("DxTarget"); - if (node!=null) { - clinicalEvent.addEventDatum("TARGET", node.getText()); - } - - node = diagnosticNode.selectSingleNode("DxResult"); - if (node!=null) { - clinicalEvent.addEventDatum("RESULT", node.getText()); - } - - node = diagnosticNode.selectSingleNode("DxNotes"); - if (node!=null) { - clinicalEvent.addEventDatum("NOTES", node.getText()); - } - - node = diagnosticNode.selectSingleNode("DxSide"); - if (node!=null) { - clinicalEvent.addEventDatum("SIDE", node.getText()); - } - - node = diagnosticNode.selectSingleNode("DxStatus"); - if (node!=null) { - clinicalEvent.addEventDatum("STATUS", node.getText()); - } - - node = diagnosticNode.selectSingleNode("ImgBaseline"); - if (node!=null) { - clinicalEvent.addEventDatum("BASELINE", node.getText()); - } - - node = diagnosticNode.selectSingleNode("DxNumNewTumors"); - if (node!=null) { - clinicalEvent.addEventDatum("NUM_NEW_TUMORS", node.getText()); - } - - clinicalEvents.add(clinicalEvent); - } - } - - private static void parseLabTests(List clinicalEvents, - Node patientNode, String patientId, int cancerStudyId) { - List labTestNodes = patientNode.selectNodes("LabTests/LabTest"); - for (Node labTestNode : labTestNodes) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId); - ClinicalEvent clinicalEvent = new ClinicalEvent(); - clinicalEvent.setPatientId(patient.getInternalId()); - clinicalEvent.setEventType("LAB_TEST"); - - Node node = labTestNode.selectSingleNode("LabDate"); - if (node==null) { - System.err.println("no date"); - continue; - } - clinicalEvent.setStartDate(Long.parseLong(node.getText())); - - node = labTestNode.selectSingleNode("LabTest"); - if (node==null) { - System.err.println("no lab test name"); - continue; - } - clinicalEvent.addEventDatum("TEST", node.getText()); - - node = labTestNode.selectSingleNode("LabResult"); - if (node==null) { - System.err.println("no lab result"); - continue; - } - clinicalEvent.addEventDatum("RESULT", node.getText()); - - node = labTestNode.selectSingleNode("LabUnits"); - if (node!=null) { - clinicalEvent.addEventDatum("UNIT", node.getText()); - } - - node = labTestNode.selectSingleNode("LabNormalRange"); - if (node!=null) { - clinicalEvent.addEventDatum("NORMAL_RANGE", node.getText()); - } - - node = labTestNode.selectSingleNode("LabNotes"); - if (node!=null) { - clinicalEvent.addEventDatum("NOTES", node.getText()); - } - - clinicalEvents.add(clinicalEvent); - } - } - - private static void parseClinicalEventsFromSpecimen(List clinicalEvents, - Node patientNode, String patientId, int cancerStudyId) { - List specimenAccessionNodes = patientNode.selectNodes("SpecimenAccessions/SpecimenAccession"); - for (Node specimenAccessionNode : specimenAccessionNodes) { - Node node = specimenAccessionNode.selectSingleNode("AccessionDate"); - if (node==null) { - System.err.println("no date"); - continue; - } - long date = Long.parseLong(node.getText()); - - String site = null, type = null, instrument = null; - node = specimenAccessionNode.selectSingleNode("AccessionAnatomicSite"); - if (node!=null) { - site = node.getText(); - } - node = specimenAccessionNode.selectSingleNode("AccessionVisitType"); - if (node!=null) { - type = node.getText(); - } - node = specimenAccessionNode.selectSingleNode("AccessionProcInstrument"); - if (node!=null) { - instrument = node.getText(); - } - - List specimenNodes = specimenAccessionNode.selectNodes("Specimens/Specimen"); - for (Node specimenNode : specimenNodes) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId); - - ClinicalEvent clinicalEvent = new ClinicalEvent(); - clinicalEvent.setPatientId(patient.getInternalId()); - clinicalEvent.setEventType("SPECIMEN"); - clinicalEvent.setStartDate(date); - if (site!=null) { - clinicalEvent.addEventDatum("SPECIMEN_SITE", site); - } - if (type!=null) { - clinicalEvent.addEventDatum("ANATOMIC_SITE", type); - } - if (instrument!=null) { - clinicalEvent.addEventDatum("PROC_INSTRUMENT", instrument); - } - - addAllDataUnderNode(clinicalEvent, Element.class.cast(specimenNode)); - - clinicalEvents.add(clinicalEvent); - } - } - } - - private static List parseClinicalDataFromSpecimen(Node patientNode, int cancerStudyId, Map mapSu2cSampleIdSampleId) { - List clinicalData = new ArrayList(); - List specimenAccessionNodes = patientNode.selectNodes("SpecimenAccessions/SpecimenAccession"); - for (Node specimenAccessionNode : specimenAccessionNodes) { - String site = null, instrument = null; - Node node = specimenAccessionNode.selectSingleNode("AccessionAnatomicSite"); - if (node!=null) { - site = node.getText(); - } - node = specimenAccessionNode.selectSingleNode("AccessionProcInstrument"); - if (node!=null) { - instrument = node.getText(); - } - - List specimenNodes = specimenAccessionNode.selectNodes("Specimens/Specimen"); - for (Node specimenNode : specimenNodes) { - node = specimenNode.selectSingleNode("SpecimenReferenceNumber"); - if (node==null) { - continue; - } - String su2cSampleId = node.getText(); - String sampleId = mapSu2cSampleIdSampleId.get(su2cSampleId); - if (sampleId == null) { - continue; - } - - if (site!=null) { - ClinicalData clinicalDatum = new ClinicalData(cancerStudyId, sampleId, "TUMOR_SITE", site); - clinicalData.add(clinicalDatum); - } - - if (instrument!=null) { - ClinicalData clinicalDatum = new ClinicalData(cancerStudyId, sampleId, "PROC_INSTRUMENT", instrument); - clinicalData.add(clinicalDatum); - } - } - } - return clinicalData; - } - - private static long parseStatusesAndReturnDiagnosisDate(List clinicalEvents, - Node patientNode, String patientId, int cancerStudyId) { - List statusNodes = patientNode.selectNodes("Statuses/Status"); - long diagnosisDate = 0; - for (Node statusNode : statusNodes) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId); - ClinicalEvent clinicalEvent = new ClinicalEvent(); - clinicalEvent.setPatientId(patient.getInternalId()); - clinicalEvent.setEventType("STATUS"); - - Node node = statusNode.selectSingleNode("StatusDate"); - if (node==null) { - System.err.println("no date"); - continue; - } - long statusDate = Long.parseLong(node.getText()); - clinicalEvent.setStartDate(statusDate); - - node = statusNode.selectSingleNode("Status"); - if (node==null) { - System.err.println("no status"); - continue; - } - clinicalEvent.addEventDatum("STATUS", node.getText()); - if (node.getText().equalsIgnoreCase("Diagnosis Date")) { - diagnosisDate = statusDate; - } - - clinicalEvents.add(clinicalEvent); - } - return diagnosisDate; - } - - private static void addAllDataUnderNode(ClinicalEvent clinicalEvent, Element element) { - for ( Iterator i = element.elementIterator(); i.hasNext(); ) { - Element child = (Element) i.next(); - clinicalEvent.addEventDatum(child.getName(), child.getTextTrim()); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCancerStudy.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCancerStudy.java deleted file mode 100644 index 03372dbb958..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCancerStudy.java +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.model.*; - -import java.io.File; - -/** - * Command Line Tool to Import a Single Cancer Study. - */ -public class ImportCancerStudy extends ConsoleRunnable { - - public void run() { - try { - if (args.length < 1) { - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - throw new UsageException( - "importCancerStudy.pl", - null, - ""); - } - - File file = new File(args[0]); - SpringUtil.initDataSource(); - CancerStudy cancerStudy = CancerStudyReader.loadCancerStudy(file); - CancerStudyTags cancerStudyTags = CancerStudyTagsReader.loadCancerStudyTags(file, cancerStudy); - String message = "Loaded the following cancer study:" + - "\n --> Study ID: " + cancerStudy.getInternalId() + - "\n --> Name: " + cancerStudy.getName() + - "\n --> Description: " + cancerStudy.getDescription(); - - if (cancerStudyTags != null) { - message += "\n --> Study Tags: " + cancerStudyTags.getTags(); - } - ProgressMonitor.setCurrentMessage(message); - } - catch (RuntimeException e) { - throw e; - } - catch (Exception e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportCancerStudy(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportCancerStudy(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportClinicalData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportClinicalData.java deleted file mode 100644 index 11eeedbc650..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportClinicalData.java +++ /dev/null @@ -1,742 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.util.SurvivalAttributeUtil.SurvivalStatusAttributes; - -import java.io.*; -import joptsimple.*; -import java.util.*; -import java.util.regex.*; -import org.apache.commons.collections4.map.MultiKeyMap; - -public class ImportClinicalData extends ConsoleRunnable { - - public static final String DELIMITER = "\t"; - public static final String METADATA_PREFIX = "#"; - public static final String SAMPLE_ID_COLUMN_NAME = "SAMPLE_ID"; - public static final String PATIENT_ID_COLUMN_NAME = "PATIENT_ID"; - public static final String SAMPLE_TYPE_COLUMN_NAME = "SAMPLE_TYPE"; - private int numSampleSpecificClinicalAttributesAdded = 0; - private int numPatientSpecificClinicalAttributesAdded = 0; - private int numEmptyClinicalAttributesSkipped = 0; - private int numSamplesProcessed = 0; - - private static Properties properties; - - private File clinicalDataFile; - private CancerStudy cancerStudy; - private AttributeTypes attributesType; - private boolean relaxed; - private Set patientIds = new HashSet(); - - public static enum MissingAttributeValues - { - NOT_APPLICABLE("Not Applicable"), - NOT_AVAILABLE("Not Available"), - PENDING("Pending"), - DISCREPANCY("Discrepancy"), - COMPLETED("Completed"), - NULL("null"), - MISSING(""), - NA("NA"); - - private String propertyName; - - MissingAttributeValues(String propertyName) { this.propertyName = propertyName; } - public String toString() { return propertyName; } - - static public boolean has(String value) { - if (value == null) return false; - if (value.trim().equals("")) return true; - try { - value = value.replaceAll("[\\[|\\]]", ""); - value = value.replaceAll(" ", "_"); - return valueOf(value.toUpperCase()) != null; - } - catch (IllegalArgumentException x) { - return false; - } - } - - static public String getNotAvailable() - { - return "[" + NOT_AVAILABLE.toString() + "]"; - } - } - - public static enum AttributeTypes - { - PATIENT_ATTRIBUTES("PATIENT"), - SAMPLE_ATTRIBUTES("SAMPLE"), - MIXED_ATTRIBUTES("MIXED"); - - private String attributeType; - - AttributeTypes(String attributeType) {this.attributeType = attributeType;} - - public String toString() {return attributeType;} - } - - public static enum DataTypes - { - STRING, - NUMBER, - BOOLEAN; - - static public boolean has(String value) { - try { - return valueOf(value.toUpperCase()) != null; - } - catch (IllegalArgumentException x) { - return false; - } - } - } - - public void setFile(CancerStudy cancerStudy, File clinicalDataFile, String attributesDatatype, boolean relaxed) - { - this.cancerStudy = cancerStudy; - this.clinicalDataFile = clinicalDataFile; - this.attributesType = AttributeTypes.valueOf(attributesDatatype); - this.relaxed = relaxed; - } - - public void importData() throws Exception - { - // if bulkLoading is ever turned off, - // code has to be added to check whether - // a clinical attribute update should be - // perform instead of an insert - MySQLbulkLoader.bulkLoadOn(); - - if(relaxed) { - MySQLbulkLoader.relaxedModeOn(); - } - - FileReader reader = new FileReader(clinicalDataFile); - BufferedReader buff = new BufferedReader(reader); - List columnAttrs = grabAttrs(buff); - - int patientIdIndex = findPatientIdColumn(columnAttrs); - int sampleIdIndex = findSampleIdColumn(columnAttrs); - - //validate required columns: - if (patientIdIndex < 0) { - //PATIENT_ID is required in both file types: - throw new RuntimeException("Aborting owing to failure to find " + - PATIENT_ID_COLUMN_NAME + - " in file. Please check your file format and try again."); - } - if (attributesType.toString().equals("SAMPLE") && sampleIdIndex < 0) { - //SAMPLE_ID is required in SAMPLE file type: - throw new RuntimeException("Aborting owing to failure to find " + - SAMPLE_ID_COLUMN_NAME + - " in file. Please check your file format and try again."); - } - importData(buff, columnAttrs); - - if (getAttributesType() == ImportClinicalData.AttributeTypes.SAMPLE_ATTRIBUTES || - getAttributesType() == ImportClinicalData.AttributeTypes.MIXED_ATTRIBUTES) { - DaoPatient.createSampleCountClinicalData(cancerStudy.getInternalId()); - } - - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - MySQLbulkLoader.relaxedModeOff(); - } - } - - private List grabAttrs(BufferedReader buff) throws DaoException, IOException { - List attrs = new ArrayList(); - - String line = buff.readLine(); - String[] displayNames = splitFields(line); - String[] descriptions, datatypes, attributeTypes = {}, priorities, colnames; - if (line.startsWith(METADATA_PREFIX)) { - // contains meta data about the attributes - descriptions = splitFields(buff.readLine()); - datatypes = splitFields(buff.readLine()); - - switch(this.attributesType) - { - case PATIENT_ATTRIBUTES: - case SAMPLE_ATTRIBUTES: - attributeTypes = new String[displayNames.length]; - Arrays.fill(attributeTypes, this.attributesType.toString()); - break; - case MIXED_ATTRIBUTES: - attributeTypes = splitFields(buff.readLine()); - //quick validation: attributeTypes values should be either PATIENT or SAMPLE - for (String attributeTypeVal : attributeTypes) { - if (!attributeTypeVal.equalsIgnoreCase(AttributeTypes.PATIENT_ATTRIBUTES.toString()) && - !attributeTypeVal.equalsIgnoreCase(AttributeTypes.SAMPLE_ATTRIBUTES.toString())) { - throw new RuntimeException("Invalid value for attributeType: " + attributeTypeVal + ". Check the header rows of your data file."); - } - } - break; - } - - //quick validation: datatypes values should be one of the valid types - for (String datatype : datatypes) { - if (!DataTypes.has(datatype)) { - throw new RuntimeException("Invalid value for datatype: " + datatype + ". Check the header rows of your data file."); - } - } - - priorities = splitFields(buff.readLine()); - colnames = splitFields(buff.readLine()); - - if (displayNames.length != colnames.length - || descriptions.length != colnames.length - || datatypes.length != colnames.length - || attributeTypes.length != colnames.length - || priorities.length != colnames.length) { - throw new DaoException("attribute and metadata mismatch in clinical staging file. All lines in header and data rows should have the same number of columns."); - } - } else { - // attribute Id header only - colnames = displayNames; - descriptions = new String[colnames.length]; - Arrays.fill(descriptions, ClinicalAttribute.MISSING); - datatypes = new String[colnames.length]; - Arrays.fill(datatypes, ClinicalAttribute.DEFAULT_DATATYPE); - attributeTypes = new String[colnames.length]; - Arrays.fill(attributeTypes, ClinicalAttribute.SAMPLE_ATTRIBUTE); - priorities = new String[colnames.length]; - Arrays.fill(priorities, "1"); - displayNames = new String[colnames.length]; - Arrays.fill(displayNames, ClinicalAttribute.MISSING); - } - - for (int i = 0; i < colnames.length; i+=1) { - ClinicalAttribute attr = - new ClinicalAttribute(colnames[i].trim().toUpperCase(), displayNames[i], - descriptions[i], datatypes[i], - attributeTypes[i].equals(ClinicalAttribute.PATIENT_ATTRIBUTE), - priorities[i], - cancerStudy.getInternalId()); - attrs.add(attr); - //skip PATIENT_ID / SAMPLE_ID columns, i.e. these are not clinical attributes but relational columns: - if (attr.getAttrId().equals(PATIENT_ID_COLUMN_NAME) || - attr.getAttrId().equals(SAMPLE_ID_COLUMN_NAME)) { - continue; - } - ClinicalAttribute attrInDb = DaoClinicalAttributeMeta.getDatum(attr.getAttrId(), cancerStudy.getInternalId()); - if (attrInDb != null) { - ProgressMonitor.logWarning("Attribute " + attrInDb.getAttrId() + " found twice in your study!"); - continue; - } - DaoClinicalAttributeMeta.addDatum(attr); - } - return attrs; - } - - private String[] splitFields(String line) throws IOException { - line = line.replaceAll("^"+METADATA_PREFIX+"+", ""); - String[] fields = line.split(DELIMITER, -1); - - return fields; - } - - private void importData(BufferedReader buff, List columnAttrs) throws Exception - { - String line; - MultiKeyMap attributeMap = new MultiKeyMap(); - while ((line = buff.readLine()) != null) { - if (skipLine(line.trim())) { - continue; - } - - String[] fieldValues = getFieldValues(line, columnAttrs); - addDatum(fieldValues, columnAttrs, attributeMap); - } - } - - private boolean skipLine(String line) - { - return (line.isEmpty() || line.substring(0,1).equals(METADATA_PREFIX)); - } - - /** - * Takes in the given line and returns the list of field values by - * splitting the line on DELIMITER. - * - * @param line - * @param columnAttrs - * @return the list of values, one for each column. Value will be "" for empty columns. - */ - private String[] getFieldValues(String line, List columnAttrs) - { - // split on delimiter: - String[] fieldValues = line.split(DELIMITER, -1); - - // validate: if number of fields is incorrect, give exception - if (fieldValues.length != columnAttrs.size()) { - throw new IllegalArgumentException("Number of columns in line is not as expected. Expected: " + - columnAttrs.size() + " columns, found: " + fieldValues.length + ", for line: " + line); - } - - // now iterate over lines and trim each value: - for (int i = 0; i < fieldValues.length; i++) - { - fieldValues[i] = fieldValues[i].trim(); - } - return fieldValues; - } - - private boolean addDatum(String[] fields, List columnAttrs, MultiKeyMap attributeMap) throws Exception - { - int sampleIdIndex = findSampleIdColumn(columnAttrs); - String stableSampleId = (sampleIdIndex >= 0) ? fields[sampleIdIndex] : ""; - stableSampleId = StableIdUtil.getSampleId(stableSampleId); - int patientIdIndex = findPatientIdColumn(columnAttrs); - String stablePatientId = (patientIdIndex >= 0) ? fields[patientIdIndex] : ""; - stablePatientId = StableIdUtil.getPatientId(stablePatientId); - int internalSampleId = -1; - int internalPatientId = -1; - - //check if sample is not already added: - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudy.getInternalId(), stableSampleId, false); - if (sample != null) { - //this should be a WARNING in case of TCGA studies (see https://github.com/cBioPortal/cbioportal/issues/839#issuecomment-203452415) - //and an ERROR in other studies. I.e. a sample should occur only once in clinical file! - if (stableSampleId.startsWith("TCGA-")) { - ProgressMonitor.logWarning("Sample " + stableSampleId + " found to be duplicated in your file. Only data of the first sample will be processed."); - return false; - } - //give error or warning if sample is already in DB and this is NOT expected (i.e. not supplemental data): - if (!this.isSupplementalData()) { - throw new RuntimeException("Error: Sample " + stableSampleId + " found to be duplicated in your file."); - } - else { - internalSampleId = sample.getInternalId(); - } - } - else { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudy.getInternalId(), stablePatientId); - if (patient != null) { - //patient exists, get internal id: - internalPatientId = patient.getInternalId(); - } - else { - //add patient: - internalPatientId = (patientIdIndex >= 0) ? - addPatientToDatabase(fields[patientIdIndex]) : -1; - } - // sample is new, so attempt to add to DB - internalSampleId = (stableSampleId.length() > 0) ? - addSampleToDatabase(stableSampleId, fields, columnAttrs) : -1; - - } - - //validate and count: - if (internalSampleId != -1) { - //some minimal validation/fail safe for now: only continue if patientId is same as patient id in - //existing sample (can occur in case of this.isSupplementalData or in case of parsing bug in addSampleToDatabase): - internalPatientId = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudy.getInternalId(), stablePatientId).getInternalId(); - if (internalPatientId != DaoSample.getSampleById(internalSampleId).getInternalPatientId()) { - throw new RuntimeException("Error: Sample " + stableSampleId + " was previously linked to another patient, and not to " + stablePatientId); - } - numSamplesProcessed++; - } - - for (int lc = 0; lc < fields.length; lc++) { - //if lc is sampleIdIndex or patientIdIndex, skip as well since these are the relational fields: - if (lc == sampleIdIndex || lc == patientIdIndex) { - continue; - } - //if the value matches one of the missing values, skip this attribute: - if (MissingAttributeValues.has(fields[lc])) { - numEmptyClinicalAttributesSkipped++; - continue; - } - boolean isPatientAttribute = columnAttrs.get(lc).isPatientAttribute(); - if (isPatientAttribute && internalPatientId != -1) { - // The attributeMap keeps track what patient/attribute to value pairs are being added to the DB. If there are duplicates, - // (which can happen in a MIXED_ATTRIBUTES type clinical file), we need to make sure that the value for the same - // attributes are consistent. This prevents duplicate entries in the temp file that the MySqlBulkLoader uses. - if(!attributeMap.containsKey(internalPatientId, columnAttrs.get(lc).getAttrId())) { - addDatum(internalPatientId, columnAttrs.get(lc).getAttrId(), fields[lc], - ClinicalAttribute.PATIENT_ATTRIBUTE); - attributeMap.put(internalPatientId, columnAttrs.get(lc).getAttrId(), fields[lc]); - } - else if (!relaxed) { - throw new RuntimeException("Error: Duplicated patient in file"); - } - // if the "relaxed" flag was given, and the new record e.g. tries to override a previously set attribute for - // an existing patient (e.g. set AGE from 2 to 10...in same study, or GENDER from M to F), then the system will keep - // the previous value and give a warning. NB: this is a kind of "random" harmonization strategy and is - // NOT recommended! TODO - change this to an Exception instead of just a warning. - else if (!attributeMap.get(internalPatientId, columnAttrs.get(lc).getAttrId()).equals(fields[lc])) { - ProgressMonitor.logWarning("Error: Duplicated patient " + stablePatientId + " with different values for patient attribute " + columnAttrs.get(lc).getAttrId() + - "\n\tValues: " + attributeMap.get(internalPatientId, columnAttrs.get(lc).getAttrId()) + " " + fields[lc]); - } - } - else if (internalSampleId != -1) { - if(!attributeMap.containsKey(internalSampleId, columnAttrs.get(lc).getAttrId())) { - addDatum(internalSampleId, columnAttrs.get(lc).getAttrId(), fields[lc], - ClinicalAttribute.SAMPLE_ATTRIBUTE); - attributeMap.put(internalSampleId, columnAttrs.get(lc).getAttrId(), fields[lc]); - } - else if (!relaxed) { - throw new RuntimeException("Error: Duplicated sample in file"); - } - else if (!attributeMap.get(internalSampleId, columnAttrs.get(lc).getAttrId()).equals(fields[lc])) { - ProgressMonitor.logWarning("Error: Duplicated sample " + stableSampleId + " with different values for sample attribute " + columnAttrs.get(lc).getAttrId() + - "\n\tValues: " + attributeMap.get(internalSampleId, columnAttrs.get(lc).getAttrId()) + " " + fields[lc]); - } - } - } - return true; - } - - private boolean isSupplementalData() { - //TODO : for now this is only true in MIXED_ATTRIBUTES type. We could add an extra flag "SUPPLEMENTAL_DATA" to make this more explicit: - return this.getAttributesType() == ImportClinicalData.AttributeTypes.MIXED_ATTRIBUTES; - } - - private int findPatientIdColumn(List attrs) - { - return findAttributeColumnIndex(PATIENT_ID_COLUMN_NAME, attrs); - } - - private int findSampleIdColumn(List attrs) - { - return findAttributeColumnIndex(SAMPLE_ID_COLUMN_NAME, attrs); - } - - private int findSampleTypeColumn(List attrs) { - return findAttributeColumnIndex(SAMPLE_TYPE_COLUMN_NAME, attrs); - } - - private int findAttributeColumnIndex(String columnHeader, List attrs) - { - for (int lc = 0; lc < attrs.size(); lc++) { - if (attrs.get(lc).getAttrId().equals(columnHeader)) { - return lc; - } - } - return -1; - } - - private int addPatientToDatabase(String patientId) throws Exception - { - int internalPatientId = -1; - if (validPatientId(patientId)) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudy.getInternalId(), patientId); - //other validations: - //in case of PATIENT data import, there are some special checks: - if (getAttributesType() == ImportClinicalData.AttributeTypes.PATIENT_ATTRIBUTES) { - //if clinical data is already there, then something has gone wrong (e.g. patient is duplicated in file), abort: - if (patient != null && DaoClinicalData.getDataByPatientId(cancerStudy.getInternalId(), patientId).size() > 0) { - throw new RuntimeException("Something has gone wrong. Patient " + patientId + " already has clinical data loaded."); - } - //if patient is duplicated, abort as well in this case: - if (!patientIds.add(patientId)) { - throw new RuntimeException("Error. Patient " + patientId + " found to be duplicated in your file."); - } - } - - if (patient != null) { - //in all cases (SAMPLE, PATIENT, or MIXED data import) this can be expected, so just fetch it: - internalPatientId = patient.getInternalId(); - } - else { - //in case of PATIENT data import and patient == null : - if (getAttributesType() == ImportClinicalData.AttributeTypes.PATIENT_ATTRIBUTES) { - //not finding the patient it unexpected (as SAMPLE data import should always precede it), but - //can happen when this patient does not have any samples for example. In any case, warn about it: - ProgressMonitor.logWarning("Patient " + patientId + " being added for the first time. Apparently this patient was not in the samples file, or the samples file is not yet loaded (should be loaded before this one)"); - } - - patient = new Patient(cancerStudy, patientId); - internalPatientId = DaoPatient.addPatient(patient); - } - } - return internalPatientId; - } - - private int addSampleToDatabase(String sampleId, String[] fields, List columnAttrs) throws Exception - { - int sampleTypeIndex = findSampleTypeColumn(columnAttrs); - String sampleTypeStr = (sampleTypeIndex != -1) ? fields[sampleTypeIndex] : null; - if (sampleTypeStr != null) { - // want to match Sample.Type enum names - sampleTypeStr = sampleTypeStr.trim().toUpperCase().replaceAll(" ", "_"); - } - Sample.Type sampleType = Sample.Type.has(sampleTypeStr) ? Sample.Type.valueOf(sampleTypeStr) : null; - - int internalSampleId = -1; - if (validSampleId(sampleId) && !StableIdUtil.isNormal(sampleId)) { - // want to try and capture normal sample types based on value for SAMPLE_TYPE - // if present in clinical data - if (sampleType != null && sampleType.isNormal()) { - return internalSampleId; - } - String stablePatientId = getStablePatientId(sampleId, fields, columnAttrs); - if (validPatientId(stablePatientId)) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudy.getInternalId(), stablePatientId); - if (patient == null) { - addPatientToDatabase(stablePatientId); - patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudy.getInternalId(), stablePatientId); - } - sampleId = StableIdUtil.getSampleId(sampleId); - internalSampleId = DaoSample.addSample(new Sample(sampleId, patient.getInternalId(), - sampleTypeStr)); - } - } - - return internalSampleId; - } - - private String getStablePatientId(String sampleId, String[] fields, List columnAttrs) - { - Matcher tcgaSampleBarcodeMatcher = StableIdUtil.TCGA_PATIENT_BARCODE_FROM_SAMPLE_REGEX.matcher(sampleId); - if (tcgaSampleBarcodeMatcher.find()) { - return tcgaSampleBarcodeMatcher.group(1); - } - else { - // internal studies should have a patient id column - int patientIdIndex = findAttributeColumnIndex(PATIENT_ID_COLUMN_NAME, columnAttrs); - if (patientIdIndex >= 0) { - return fields[patientIdIndex]; - } - // sample and patient id are the same - else { - return sampleId; - } - } - } - - private boolean validPatientId(String patientId) - { - return (patientId != null && !patientId.isEmpty()); - } - - private boolean validSampleId(String sampleId) - { - return (sampleId != null && !sampleId.isEmpty()); - } - - private void addDatum(int internalId, String attrId, String attrVal, String attrType) throws Exception - { - // if bulk loading is ever turned off, we need to check if - // attribute value exists and if so, perfom an update - if (attrType.equals(ClinicalAttribute.PATIENT_ATTRIBUTE)) { - numPatientSpecificClinicalAttributesAdded++; - // add prefix for OS or DFS attributes - if (SurvivalStatusAttributes.has(attrId)) { - DaoClinicalData.addPatientDatum(internalId, attrId, SurvivalAttributeUtil.getModifiedAttributeValue(attrVal.trim())); - } else { - DaoClinicalData.addPatientDatum(internalId, attrId, attrVal.trim()); - } - } - else { - numSampleSpecificClinicalAttributesAdded++; - DaoClinicalData.addSampleDatum(internalId, attrId, attrVal.trim()); - } - } - - public int getNumSampleSpecificClinicalAttributesAdded() { - return numSampleSpecificClinicalAttributesAdded; - } - - public int getNumPatientSpecificClinicalAttributesAdded() { - return numPatientSpecificClinicalAttributesAdded; - } - - public int getNumEmptyClinicalAttributesSkipped() { - return numEmptyClinicalAttributesSkipped; - } - - public int getNumSamplesProcessed() { - return numSamplesProcessed; - } - - /** - * The type of attributes found in the file. Basically the - * type of import running for this instance. Can be one of - * AttributeTypes. - * - * @return - */ - public AttributeTypes getAttributesType() { - return attributesType; - } - - /** - * Imports clinical data and clinical attributes (from the worksheet) - */ - public void run() { - try { - String progName = "importClinicalData"; - String description = "Import clinical files."; - // usage: --data --meta --loadMode [directLoad|bulkLoad (default)] [--noprogress] - - OptionParser parser = new OptionParser(); - OptionSpec data = parser.accepts( "data", - "profile data file" ).withRequiredArg().describedAs( "data_file.txt" ).ofType( String.class ); - OptionSpec meta = parser.accepts( "meta", - "meta (description) file" ).withOptionalArg().describedAs( "meta_file.txt" ).ofType( String.class ); - OptionSpec study = parser.accepts("study", - "cancer study id").withOptionalArg().describedAs("study").ofType(String.class); - OptionSpec attributeFlag = parser.accepts("a", - "(deprecated) Flag for using MIXED_ATTRIBUTES").withOptionalArg().describedAs("a").ofType(String.class); - OptionSpec relaxedFlag = parser.accepts("r", - "(not recommended) Flag for relaxed mode, determining how to handle detected data harmonization problems in the same study").withOptionalArg().describedAs("r").ofType(String.class); - parser.accepts( "loadMode", "direct (per record) or bulk load of data" ) - .withOptionalArg().describedAs( "[directLoad|bulkLoad (default)]" ).ofType( String.class ); - parser.accepts("noprogress", "this option can be given to avoid the messages regarding memory usage and % complete"); - - OptionSet options = null; - try { - options = parser.parse( args ); - } catch (OptionException e) { - throw new UsageException( - progName, description, parser, - e.getMessage()); - } - File clinical_f = null; - if( options.has( data ) ){ - clinical_f = new File( options.valueOf( data ) ); - } else { - throw new UsageException( - progName, description, parser, - "'data' argument required."); - } - String attributesDatatype = null; - boolean relaxed = false; - String cancerStudyStableId = null; - if( options.has ( study ) ) - { - cancerStudyStableId = options.valueOf(study); - } - if( options.has ( meta ) ) - { - properties = new TrimmedProperties(); - properties.load(new FileInputStream(options.valueOf(meta))); - attributesDatatype = properties.getProperty("datatype"); - cancerStudyStableId = properties.getProperty("cancer_study_identifier"); - } - if( options.has ( attributeFlag ) ) - { - attributesDatatype = "MIXED_ATTRIBUTES"; - } - if( options.has ( relaxedFlag ) ) - { - relaxed = true; - - } - SpringUtil.initDataSource(); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyStableId); - if (cancerStudy == null) { - throw new IllegalArgumentException("Unknown cancer study: " + cancerStudyStableId); - } - ProgressMonitor.setCurrentMessage("Reading data from: " + clinical_f.getAbsolutePath()); - int numLines = FileUtil.getNumLines(clinical_f); - ProgressMonitor.setCurrentMessage(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - - setFile(cancerStudy, clinical_f, attributesDatatype, relaxed); - importData(); - - if (getAttributesType() == ImportClinicalData.AttributeTypes.PATIENT_ATTRIBUTES || - getAttributesType() == ImportClinicalData.AttributeTypes.MIXED_ATTRIBUTES) { - ProgressMonitor.setCurrentMessage("Total number of patient specific clinical attributes added: " - + getNumPatientSpecificClinicalAttributesAdded()); - } - if (getAttributesType() == ImportClinicalData.AttributeTypes.SAMPLE_ATTRIBUTES || - getAttributesType() == ImportClinicalData.AttributeTypes.MIXED_ATTRIBUTES) { - ProgressMonitor.setCurrentMessage("Total number of sample specific clinical attributes added: " - + getNumSampleSpecificClinicalAttributesAdded()); - ProgressMonitor.setCurrentMessage("Total number of samples processed: " - + getNumSamplesProcessed()); - } - ProgressMonitor.setCurrentMessage("Total number of attribute values skipped because of empty value: " - + getNumEmptyClinicalAttributesSkipped()); - if (getAttributesType() == ImportClinicalData.AttributeTypes.SAMPLE_ATTRIBUTES && - (getNumSampleSpecificClinicalAttributesAdded() + getNumSamplesProcessed()) == 0) { - //should not occur: - throw new RuntimeException("No data was added. " + - "Please check your file format and try again."); - } - if (getAttributesType() == ImportClinicalData.AttributeTypes.PATIENT_ATTRIBUTES && - getNumPatientSpecificClinicalAttributesAdded() == 0) { - //could occur if patient clinical file is given with only PATIENT_ID column: - throw new RuntimeException("No data was added. " + - "Please check your file format and try again. If you only have sample clinical data, then a patients file with only PATIENT_ID column is not required."); - } - //backward compatible check (TODO - remove this later): - if (getAttributesType() == ImportClinicalData.AttributeTypes.MIXED_ATTRIBUTES && - (getNumPatientSpecificClinicalAttributesAdded() + getNumSampleSpecificClinicalAttributesAdded()) == 0) { - //should not occur: - throw new RuntimeException("No data was added. " + - "Please check your data and try again."); - } - - if (getAttributesType() == ImportClinicalData.AttributeTypes.PATIENT_ATTRIBUTES && - getNumPatientSpecificClinicalAttributesAdded() == 0) { - //could occur if patient clinical file is given with only PATIENT_ID column: - throw new RuntimeException("No data was added. " + - "Please check your file format and try again. If you only have sample clinical data, then a patients file with only PATIENT_ID column is not required."); - } - } catch (RuntimeException e) { - throw e; - } catch (Exception e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportClinicalData(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportClinicalData(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCnaDiscreteLongData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCnaDiscreteLongData.java deleted file mode 100644 index af67c17a288..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCnaDiscreteLongData.java +++ /dev/null @@ -1,351 +0,0 @@ -/* - * Copyright (c) 2018 - 2022 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ -package org.mskcc.cbio.portal.scripts; - -import com.google.common.base.*; -import com.google.common.collect.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; - -import java.io.*; -import java.util.Optional; -import java.util.*; -import java.util.stream.*; - -import static com.google.common.collect.Lists.*; -import static java.lang.String.*; -import static org.cbioportal.model.MolecularProfile.DataType.DISCRETE; - -public class ImportCnaDiscreteLongData { - - private final File cnaFile; - private final int geneticProfileId; - private final GeneticAlterationImporter geneticAlterationGeneImporter; - private String genePanel; - private final DaoGeneOptimized daoGene; - private CnaUtil cnaUtil; - private Set existingCnaEvents = new HashSet<>(); - private int samplesSkipped = 0; - private Set namespaces; - - private final ArrayList sampleIdGeneticProfileIds = new ArrayList<>(); - - public ImportCnaDiscreteLongData( - File cnaFile, - int geneticProfileId, - String genePanel, - DaoGeneOptimized daoGene, - DaoGeneticAlteration daoGeneticAlteration, - Set namespaces - ) { - this.namespaces = namespaces; - this.cnaFile = cnaFile; - this.geneticProfileId = geneticProfileId; - this.genePanel = genePanel; - this.daoGene = daoGene; - this.geneticAlterationGeneImporter = new GeneticAlterationImporter(geneticProfileId, daoGeneticAlteration); - } - - public void importData() throws Exception { - FileReader reader = new FileReader(this.cnaFile); - BufferedReader buf = new BufferedReader(reader); - - // Pass first line with headers to util: - String line = buf.readLine(); - int lineIndex = 1; - String[] headerParts = line.split("\t", -1); - this.cnaUtil = new CnaUtil(headerParts, this.namespaces); - - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - - boolean isDiscretizedCnaProfile = geneticProfile != null - && geneticProfile.getGeneticAlterationType() == GeneticAlterationType.COPY_NUMBER_ALTERATION - && geneticProfile.showProfileInAnalysisTab(); - - if (isDiscretizedCnaProfile) { - existingCnaEvents.addAll(DaoCnaEvent.getAllCnaEvents()); - MySQLbulkLoader.bulkLoadOn(); - } - - CnaImportData toImport = new CnaImportData(); - - while ((line = buf.readLine()) != null) { - lineIndex++; - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - this.extractDataToImport(geneticProfile, line, lineIndex, toImport); - } - - DaoGeneticProfileSamples.addGeneticProfileSamples( - geneticProfileId, - newArrayList(toImport.eventsTable.columnKeySet()) - ); - - for (Long entrezId : toImport.eventsTable.rowKeySet()) { - boolean added = storeGeneticAlterations(toImport, entrezId); - if (added) { - storeCnaEvents(toImport, entrezId); - } else { - ProgressMonitor.logWarning("Values not added to gene with entrezId: " + entrezId + ". Skip creation of cna events."); - } - } - - // Once the CNA import is done, update DISCRETE_LONG input datatype into resulting DISCRETE datatype: - geneticProfile.setDatatype(DISCRETE.name()); - DaoGeneticProfile.updateDatatype(geneticProfile.getGeneticProfileId(), geneticProfile.getDatatype()); - - ProgressMonitor.setCurrentMessage(" --> total number of samples skipped (normal samples): " + getSamplesSkipped()); - buf.close(); - MySQLbulkLoader.flushAll(); - } - - /** - * First we collect all the events - * to import all events related to a single gene in one query: - */ - public void extractDataToImport( - GeneticProfile geneticProfile, - String line, - int lineIndex, - CnaImportData importContainer - ) throws Exception { - boolean hasData = !line.startsWith("#") && line.trim().length() > 0; - if (!hasData) { - return; - } - String[] lineParts = line.split("\t", -1); - CanonicalGene gene = this.getGene(cnaUtil.getEntrezSymbol(lineParts), lineParts, cnaUtil); - importContainer.genes.add(gene); - - if (gene == null) { - ProgressMonitor.logWarning("Ignoring line with no Hugo_Symbol and no Entrez_Id"); - return; - } - - int cancerStudyId = geneticProfile.getCancerStudyId(); - - String sampleIdStr = cnaUtil.getSampleIdStr(lineParts); - Sample sample = findSample(sampleIdStr, cancerStudyId); - createSampleProfile(sample); - - long entrezId = gene.getEntrezGeneId(); - int sampleId = sample.getInternalId(); - CnaEventImportData eventContainer = new CnaEventImportData(); - eventContainer.cnaEvent = cnaUtil.createEvent(geneticProfile, sampleId, entrezId, lineParts); - - Table geneBySampleEventTable = importContainer.eventsTable; - - if (!geneBySampleEventTable.contains(entrezId, sample.getInternalId())) { - geneBySampleEventTable.put(entrezId, sampleId, eventContainer); - } else { - ProgressMonitor.logWarning(format("Skipping line %d with duplicate gene %d and sample %d", lineIndex, entrezId, sampleId)); - } - - } - - /** - * Store all cna events related to a single gene - */ - private void storeCnaEvents(CnaImportData toImport, Long entrezId) throws DaoException { - List events = toImport.eventsTable - .row(entrezId) - .values() - .stream() - .filter(v -> v.cnaEvent != null) - .map(v -> v.cnaEvent) - .collect(Collectors.toList()); - CnaUtil.storeCnaEvents(existingCnaEvents, events); - } - - /** - * Store all events related to a single gene - */ - private boolean storeGeneticAlterations(CnaImportData toImport, Long entrezId) throws DaoException { - String[] values = toImport.eventsTable - .columnKeySet() - .stream() - .map(sample -> { - CnaEventImportData event = toImport - .eventsTable - .get(entrezId, sample); - if (event == null) { - return ""; - } - return "" + event - .cnaEvent - .getAlteration() - .getCode(); - }) - .toArray(String[]::new); - - Optional gene = toImport.genes - .stream() - .filter(g -> g != null && g.getEntrezGeneId() == entrezId) - .findFirst(); - - if (!gene.isPresent()) { - ProgressMonitor.logWarning("No gene found for entrezId: " + entrezId); - return false; - } - - String geneSymbol = !Strings.isNullOrEmpty(gene.get().getHugoGeneSymbolAllCaps()) - ? gene.get().getHugoGeneSymbolAllCaps() - : "" + entrezId; - - return this.geneticAlterationGeneImporter.store(values, gene.get(), geneSymbol); - } - - /** - * Try to find gene by entrez ID, or else by hugo ID - * @return null when no gene could be found - */ - private CanonicalGene getGene( - long entrez, - String[] parts, - CnaUtil util - ) { - - String hugoSymbol = util.getHugoSymbol(parts); - - if (Strings.isNullOrEmpty(hugoSymbol) && entrez == 0) { - return null; - } - - // 1. try entrez: - if (entrez != 0) { - CanonicalGene foundByEntrez = this.daoGene.getGene(entrez); - if (foundByEntrez != null) { - return foundByEntrez; - } - } - - // 2. try hugo: - if (!Strings.isNullOrEmpty(hugoSymbol)) { - if (hugoSymbol.contains("///") || hugoSymbol.contains("---")) { - // Ignore gene IDs separated by ///. This indicates that - // the line contains information regarding multiple genes, and - // we cannot currently handle this. - // Also, ignore gene IDs that are specified as ---. This indicates - // the line contains information regarding an unknown gene, and - // we cannot currently handle this. - ProgressMonitor.logWarning("Ignoring gene ID: " + hugoSymbol); - return null; - } - int ix = hugoSymbol.indexOf("|"); - if (ix > 0) { - hugoSymbol = hugoSymbol.substring(0, ix); - } - List genes = daoGene.getGene(hugoSymbol, true); - if (genes.size() > 1) { - throw new IllegalStateException("Found multiple genes for Hugo symbol " + hugoSymbol + " while importing cna"); - } - return genes.get(0); - } - ProgressMonitor.logWarning("Entrez_Id " + entrez + " not found. Record will be skipped for this gene."); - return null; - } - - /** - * Find sample and create sample profile when needed - * - * @return boolean created or not - */ - public boolean createSampleProfile( - Sample sample - ) throws Exception { - boolean inDatabase = DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId); - Integer genePanelID = (genePanel == null) ? null : GeneticProfileUtil.getGenePanelId(genePanel); - SampleIdGeneticProfileId toCreate = new SampleIdGeneticProfileId(sample.getInternalId(), geneticProfileId); - boolean isQueued = this.sampleIdGeneticProfileIds.contains(toCreate); - if (!inDatabase && !isQueued) { - DaoSampleProfile.addSampleProfile(sample.getInternalId(), geneticProfileId, genePanelID); - this.sampleIdGeneticProfileIds.add(toCreate); - return true; - } - return false; - } - - - private static class SampleIdGeneticProfileId { - public int sampleId; - public int geneticProfileId; - - public SampleIdGeneticProfileId(int sampleId, int geneticProfileId) { - this.sampleId = sampleId; - this.geneticProfileId = geneticProfileId; - } - - @Override - public boolean equals(Object o) { - if (this == o) - return true; - if (o == null || getClass() != o.getClass()) - return false; - - SampleIdGeneticProfileId that = (SampleIdGeneticProfileId) o; - return sampleId == that.sampleId - && geneticProfileId == that.geneticProfileId; - } - } - - /** - * Find sample and create sample profile when needed - */ - public Sample findSample( - String sampleId, - int cancerStudyId - ) throws Exception { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId( - cancerStudyId, - StableIdUtil.getSampleId(sampleId) - ); - // can be null in case of 'normal' sample, throw exception if not 'normal' and sample not found in db - if (sample == null) { - if (StableIdUtil.isNormal(sampleId)) { - samplesSkipped++; - return null; - } else { - throw new RuntimeException("Unknown sample id '" + StableIdUtil.getSampleId(sampleId)); - } - } - return sample; - } - - private class CnaImportData { - // Entrez ID x Sample ID table: - public Table eventsTable = HashBasedTable.create(); - public Set genes = new HashSet<>(); - } - - private class CnaEventImportData { - public int line; - public CnaEvent cnaEvent; - public String geneSymbol; - } - - public int getSamplesSkipped() { - return samplesSkipped; - } -} - diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCopyNumberSegmentData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCopyNumberSegmentData.java deleted file mode 100644 index 1c876a75530..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCopyNumberSegmentData.java +++ /dev/null @@ -1,208 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.model.*; - -import joptsimple.*; - -import java.io.*; -import java.math.BigDecimal; -import java.util.*; - -/** - * Import Segment data into database. - * @author jj - */ -public class ImportCopyNumberSegmentData extends ConsoleRunnable { - - private int entriesSkipped; - - private void importData(File file, int cancerStudyId) throws IOException, DaoException { - MySQLbulkLoader.bulkLoadOn(); - FileReader reader = new FileReader(file); - BufferedReader buf = new BufferedReader(reader); - try { - String line = buf.readLine(); // skip header line - long segId = DaoCopyNumberSegment.getLargestId(); - while ((line=buf.readLine()) != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - - String[] strs = line.split("\t"); - if (strs.length<6) { - System.err.println("wrong format: "+line); - } - - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByInternalId(cancerStudyId); - String chrom = strs[1].trim(); - //validate in same way as GistitReader: - ValidationUtils.validateChromosome(chrom); - - long start = Double.valueOf(strs[2]).longValue(); - long end = Double.valueOf(strs[3]).longValue(); - if (start >= end) { - //workaround to skip with warning, according to https://github.com/cBioPortal/cbioportal/issues/839#issuecomment-203452415 - ProgressMonitor.logWarning("Start position of segment is not lower than end position. Skipping this entry."); - entriesSkipped++; - continue; - } - int numProbes = new BigDecimal((strs[4])).intValue(); - double segMean = Double.parseDouble(strs[5]); - - String sampleId = StableIdUtil.getSampleId(strs[0]); - Sample s = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudyId, sampleId); - if (s == null) { - if (StableIdUtil.isNormal(sampleId)) { - entriesSkipped++; - continue; - } - else { - //this likely will not be reached since samples are added on the fly above if not known to database - throw new RuntimeException("Unknown sample id '" + sampleId + "' found in seg file: " + file.getCanonicalPath()); - } - } - CopyNumberSegment cns = new CopyNumberSegment(cancerStudyId, s.getInternalId(), chrom, start, end, numProbes, segMean); - cns.setSegId(++segId); - DaoCopyNumberSegment.addCopyNumberSegment(cns); - } - MySQLbulkLoader.flushAll(); - } - finally { - buf.close(); - } - } - - public void run() { - try { - String description = "Import 'segment data' files"; - - OptionSet options = ConsoleUtil.parseStandardDataAndMetaOptions(args, description, true); - String dataFile = (String) options.valueOf("data"); - File descriptorFile = new File((String) options.valueOf("meta")); - - Properties properties = new Properties(); - properties.load(new FileInputStream(descriptorFile)); - - ProgressMonitor.setCurrentMessage("Reading data from: " + dataFile); - - SpringUtil.initDataSource(); - CancerStudy cancerStudy = getCancerStudy(properties); - - if (segmentDataExistsForCancerStudy(cancerStudy)) { - throw new IllegalArgumentException("Seg data for cancer study " + cancerStudy.getCancerStudyStableId() + " has already been imported: " + dataFile); - } - - importCopyNumberSegmentFileMetadata(cancerStudy, properties); - importCopyNumberSegmentFileData(cancerStudy, dataFile); - DaoCopyNumberSegment.createFractionGenomeAlteredClinicalData(cancerStudy.getInternalId()); - if( MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - } - } catch (RuntimeException e) { - throw e; - } catch (IOException|DaoException e) { - throw new RuntimeException(e); - } - } - - private static CancerStudy getCancerStudy(Properties properties) throws DaoException { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(properties.getProperty("cancer_study_identifier").trim()); - if (cancerStudy == null) { - throw new RuntimeException("Unknown cancer study: " + properties.getProperty("cancer_study_identifier").trim()); - } - return cancerStudy; - } - - private static boolean segmentDataExistsForCancerStudy(CancerStudy cancerStudy) throws DaoException { - return (DaoCopyNumberSegment.segmentDataExistForCancerStudy(cancerStudy.getInternalId())); - } - - private static void importCopyNumberSegmentFileMetadata(CancerStudy cancerStudy, Properties properties) throws DaoException { - CopyNumberSegmentFile copyNumSegFile = new CopyNumberSegmentFile(); - copyNumSegFile.cancerStudyId = cancerStudy.getInternalId(); - String referenceGenomeId = properties.getProperty("reference_genome_id").trim(); - String referenceGenome = cancerStudy.getReferenceGenome(); - if (referenceGenome == null) { - referenceGenome = ReferenceGenome.HOMO_SAPIENS_DEFAULT_GENOME_NAME; - } - if (!referenceGenomeId.equalsIgnoreCase(referenceGenome)) { - ProgressMonitor.setCurrentMessage(" Genome Build Name does not match, expecting " - + cancerStudy.getReferenceGenome()); - } - copyNumSegFile.referenceGenomeId = getRefGenId(referenceGenomeId); - copyNumSegFile.description = properties.getProperty("description").trim(); - copyNumSegFile.filename = properties.getProperty("data_filename").trim(); - DaoCopyNumberSegmentFile.addCopyNumberSegmentFile(copyNumSegFile); - } - - private void importCopyNumberSegmentFileData(CancerStudy cancerStudy, String dataFilename) throws IOException, DaoException { - File file = new File(dataFilename); - int numLines = FileUtil.getNumLines(file); - ProgressMonitor.setCurrentMessage(" --> total number of data lines: " + (numLines-1)); - ProgressMonitor.setMaxValue(numLines); - entriesSkipped = 0; - importData(file, cancerStudy.getInternalId()); - ProgressMonitor.setCurrentMessage(" --> total number of entries skipped: " + entriesSkipped); - } - - private static CopyNumberSegmentFile.ReferenceGenomeId getRefGenId(String potentialRefGenId) { - if (CopyNumberSegmentFile.ReferenceGenomeId.has(potentialRefGenId)) { - return CopyNumberSegmentFile.ReferenceGenomeId.valueOf(potentialRefGenId); - } - else { - throw new RuntimeException ("Unknown reference genome id: " + potentialRefGenId); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportCopyNumberSegmentData(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportCopyNumberSegmentData(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCosmicData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCosmicData.java deleted file mode 100644 index cea48b84b0d..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportCosmicData.java +++ /dev/null @@ -1,197 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.model.*; -import org.springframework.util.Assert; - -import java.io.*; - -import java.util.HashMap; -import java.util.Map; -import java.util.regex.*; -import java.util.stream.IntStream; - -public class ImportCosmicData { - private File file; - - public ImportCosmicData(File file) { - this.file = file; - } - - private final static String geneEntryName = "GENE"; - private final static String strandEntryName = "STRAND"; - private final static String cdsEntryName = "CDS"; - private final static String aaEntryName = "AA"; - private final static String cntEntryName = "CNT"; - - public void importData() throws IOException, DaoException { - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - // Pattern: must have gene, strand, cds, aa and cnt in any order, with other strings possibly in between. - Pattern p = Pattern.compile("(?=.*GENE=[^;]+.*)(?=.*STRAND=(.).*)(?=.*CDS=[^;]+.*)(?=.*AA=p\\.[^;]+.*)(?=.*CNT=[0-9]+.*)"); - Pattern id_pat = Pattern.compile("(?=.*LEGACY_ID=[^;]+.*)"); - MySQLbulkLoader.bulkLoadOn(); - FileReader reader = new FileReader(file); - BufferedReader buf = new BufferedReader(reader); - String line; - while ((line = buf.readLine()) != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if (!line.startsWith("#")) { - String parts[] = line.split("\t",-1); - if (parts.length<8) { - System.err.println("Wrong line in cosmic: "+line); - continue; - } - - String id = parts[2]; - String infoColumnValue = parts[7]; - if (!id.matches("COS(M|V)[0-9]+")) { - System.err.println("Wrong cosmic ID: "+id); - } else { - if (id.matches("COSM[0-9]+")) { //COSM can be taken as is - id = id.substring(4); - } else { //COSV does not map correctly, COSM still present in info-column - Matcher id_match = id_pat.matcher(infoColumnValue); - if (!id_match.find()) { - System.err.println("Cannot parse Legacy ID: "+line); - } - String id_items[] = infoColumnValue.split(";"); - for (String s: id_items) { - if (s.startsWith("LEGACY_ID=")) { - id = s.substring(14); - } - } - - } - } - - Matcher m = p.matcher(infoColumnValue); - if (m.find()) { - Map fieldValues = evaluateFieldValues(infoColumnValue); - - String gene = fieldValues.get(geneEntryName); - - if (gene.contains("_ENST")) { - gene = gene.substring(0,gene.indexOf("_ENST")); - } -// if (gene.contains("_HUMAN")) { -// gene = gene.substring(0,gene.indexOf("_HUMAN")); -// } - CanonicalGene canonicalGene = daoGeneOptimized.getNonAmbiguousGene(gene, true); - if (canonicalGene==null) { - System.err.println("Gene symbol in COSMIC not recognized: "+gene); - continue; - } - - String aa = fieldValues.get(aaEntryName); - String keyword = MutationKeywordUtils.guessCosmicKeyword(aa); - if (keyword == null) { - System.out.println("Mutation keyword in COSMIC not recognized: "+aa); - continue; - } - - String count_field = fieldValues.get(cntEntryName); - int count = Integer.parseInt(count_field); - - CosmicMutationFrequency cmf = new CosmicMutationFrequency(id, - canonicalGene.getEntrezGeneId(), aa, gene + " " + keyword, count); - - cmf.setChr(parts[0]); - cmf.setStartPosition(Long.parseLong(parts[1])); - cmf.setReferenceAllele(parts[3]); - cmf.setTumorSeqAllele(parts[4]); - cmf.setStrand(fieldValues.get(strandEntryName)); - cmf.setCds(fieldValues.get(cdsEntryName)); - - DaoCosmicData.addCosmic(cmf); - } - } - } - buf.close(); - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - } - } - - private Map evaluateFieldValues(String infoColumnValue) { - String[] fields = infoColumnValue.split(";"); - HashMap fieldValues = new HashMap<>(); - IntStream.range(0, fields.length).forEach(index -> { - if (fields[index].startsWith("GENE=")) - fieldValues.put(geneEntryName, removePrefix(fields[index])); - if (fields[index].startsWith("STRAND=")) - fieldValues.put(strandEntryName, removePrefix(fields[index])); - if (fields[index].startsWith("CDS=")) - fieldValues.put(cdsEntryName, removePrefix(fields[index])); - if (fields[index].startsWith("AA=")) - fieldValues.put(aaEntryName, removePrefix(fields[index])); - if (fields[index].startsWith("CNT=")) - fieldValues.put(cntEntryName, removePrefix(fields[index])); - }); - Assert.isTrue(fieldValues.keySet().size() == 5, "The value of one of the required fields could not be found."); - return fieldValues; - } - - private String removePrefix(String field) { - String[] elements = field.split("="); - String fieldName = elements[0]; - String fieldValue = elements[1]; - if (fieldName.equals("AA")) { - fieldValue = fieldValue.replaceAll("^p\\.", ""); - }; - return fieldValue; - } - - public static void main(String[] args) throws Exception { - if (args.length == 0) { - System.out.println("command line usage: importCosmicData.pl "); - return; - } - SpringUtil.initDataSource(); - DaoCosmicData.deleteAllRecords(); - ProgressMonitor.setConsoleMode(true); - - File file = new File(args[0]); - System.out.println("Reading data from: " + file.getAbsolutePath()); - int numLines = FileUtil.getNumLines(file); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - ImportCosmicData parser = new ImportCosmicData(file); - parser.importData(); - ConsoleUtil.showWarnings(); - System.err.println("Done."); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportDrugs.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportDrugs.java deleted file mode 100644 index a819b0de2bf..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportDrugs.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CanonicalGene; - -import java.io.*; - -/** - * Command Line tool to import background drug information. - */ -public class ImportDrugs { - private File file; - private static final String NA = "N/A"; - - public ImportDrugs(File file) { - this.file = file; - } - - public void importData() throws IOException, DaoException { - FileReader reader = new FileReader(file); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine(); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - while (line != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if (!line.startsWith("#") && line.trim().length() > 0) { - line = line.trim(); - String parts[] = line.split("\t"); - String geneSymbol = parts[0]; - String drugType = parts[1]; - String id = parts[2]; - - // Load up the specified genes from the master table - CanonicalGene gene = daoGene.getGene(geneSymbol); - - } - line = buf.readLine(); - } - } - - public static void main(String[] args) throws Exception { - if (args.length == 0) { - System.out.println("command line usage: importDrugs.pl "); - return; - } - ProgressMonitor.setConsoleMode(true); - SpringUtil.initDataSource(); - - File file = new File(args[0]); - System.out.println("Reading drug data from: " + file.getAbsolutePath()); - int numLines = FileUtil.getNumLines(file); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - ImportDrugs parser = new ImportDrugs(file); - parser.importData(); - ConsoleUtil.showWarnings(); - System.err.println("Done."); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportExtendedMutationData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportExtendedMutationData.java deleted file mode 100644 index 39dd97c30ef..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportExtendedMutationData.java +++ /dev/null @@ -1,615 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.model.ExtendedMutation.MutationEvent; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.maf.*; - -import org.apache.commons.lang3.StringUtils; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileReader; -import java.io.IOException; -import java.util.*; -import java.util.regex.*; - -/** - * Import an extended mutation file. - * Columns may be in any order. - *

- * @author Ethan Cerami - *
- * @author Arthur Goldberg goldberg@cbio.mskcc.org - *
- * @author Selcuk Onur Sumer - */ -public class ImportExtendedMutationData{ - - private File mutationFile; - private int geneticProfileId; - private boolean swissprotIsAccession; - private MutationFilter myMutationFilter; - private int entriesSkipped = 0; - private int samplesSkipped = 0; - private Set sampleSet = new HashSet(); - private Set geneSet = new HashSet(); - private String genePanel; - private Set filteredMutations = new HashSet(); - private Set namespaces = new HashSet(); - private Pattern SEQUENCE_SAMPLES_REGEX = Pattern.compile("^.*sequenced_samples:(.*)$"); - private final String ASCN_NAMESPACE = "ASCN"; - - /** - * construct an ImportExtendedMutationData. - * Filter mutations according to the no argument MutationFilter(). - */ - public ImportExtendedMutationData(File mutationFile, int geneticProfileId, String genePanel, Set filteredMutations, Set namespaces) { - this.mutationFile = mutationFile; - this.geneticProfileId = geneticProfileId; - this.swissprotIsAccession = false; - this.genePanel = genePanel; - this.filteredMutations = filteredMutations; - - // create default MutationFilter - myMutationFilter = new MutationFilter( ); - this.namespaces = namespaces; - } - - public ImportExtendedMutationData(File mutationFile, int geneticProfileId, String genePanel) { - this(mutationFile, geneticProfileId, genePanel, null, null); - } - - /** - * Turns parsing the SWISSPROT column as an accession on or off again. - * - * If off, the column will be parsed as the name (formerly ID). - * - * @param swissprotIsAccession whether to parse the column as an accession - */ - public void setSwissprotIsAccession(boolean swissprotIsAccession) { - this.swissprotIsAccession = swissprotIsAccession; - } - - public void importData() throws IOException, DaoException { - MySQLbulkLoader.bulkLoadOn(); - - HashSet sequencedCaseSet = new HashSet(); - - Map existingEvents = new HashMap(); - Set newEvents = new HashSet(); - - Map mutations = new HashMap(); - long mutationEventId = DaoMutation.getLargestMutationEventId(); - - List ascnRecords = new ArrayList(); - - FileReader reader = new FileReader(mutationFile); - BufferedReader buf = new BufferedReader(reader); - - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - // process MAF header and return line immediately following it - String line = processMAFHeader(buf); - - MafUtil mafUtil = new MafUtil(line, namespaces); - - boolean fileHasOMAData = false; - - if (mafUtil.getMaFImpactIndex() >= 0) { - // fail gracefully if a non-essential column is missing - // e.g. if there is no MA_link.var column, we assume that the value is NA and insert it as such - fileHasOMAData = true; - ProgressMonitor.setCurrentMessage(" --> OMA Scores Column Number: " - + mafUtil.getMaFImpactIndex()); - } - else { - fileHasOMAData = false; - } - - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByInternalId(geneticProfile.getCancerStudyId()); - String referenceGenome = cancerStudy.getReferenceGenome(); - if (referenceGenome == null) { - referenceGenome = GlobalProperties.getReferenceGenomeName(); - } - String genomeBuildName = DaoReferenceGenome.getReferenceGenomeByGenomeName(referenceGenome).getBuildName(); - - while((line=buf.readLine()) != null) - { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - - if( !line.startsWith("#") && line.trim().length() > 0) - { - String[] parts = line.split("\t", -1 ); // the -1 keeps trailing empty strings; see JavaDoc for String - MafRecord record = mafUtil.parseRecord(line); - - if (!record.getNcbiBuild().equalsIgnoreCase(genomeBuildName)) { - ProgressMonitor.logWarning("Genome Build Name does not match, expecting " + genomeBuildName); - } - // process case id - String barCode = record.getTumorSampleID(); - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(geneticProfile.getCancerStudyId(), - StableIdUtil.getSampleId(barCode)); - // can be null in case of 'normal' sample: - // (if data files are run through validator, this condition should be minimal) - if (sample == null) { - if (StableIdUtil.isNormal(barCode)) { - //if new sample: - if (sampleSet.add(barCode)) - samplesSkipped++; - continue; - } - else { - throw new RuntimeException("Unknown sample id '" + StableIdUtil.getSampleId(barCode) + "' found in MAF file: " + this.mutationFile.getCanonicalPath()); - } - } - - String validationStatus = record.getValidationStatus(); - - if (validationStatus == null || - validationStatus.equalsIgnoreCase("Wildtype")) - { - ProgressMonitor.logWarning("Skipping entry with Validation_Status: Wildtype"); - entriesSkipped++; - continue; - } - - String chr = DaoGeneOptimized.normalizeChr(record.getChr().toUpperCase()); - if (chr==null) { - ProgressMonitor.logWarning("Skipping entry with chromosome value: " + record.getChr()); - entriesSkipped++; - continue; - } - record.setChr(chr); - - if (record.getStartPosition() < 0) - record.setStartPosition(0); - - if (record.getEndPosition() < 0) - record.setEndPosition(0); - - String mutationType, - proteinChange, - aaChange, - codonChange, - refseqMrnaId, - uniprotAccession; - - int proteinPosStart, - proteinPosEnd; - - // determine whether to use canonical or best effect transcript - - // try canonical first - if (ExtendedMutationUtil.isAcceptableMutation(record.getVariantClassification())) - { - mutationType = record.getVariantClassification(); - } - // if not acceptable either, use the default value - else - { - mutationType = ExtendedMutationUtil.getMutationType(record); - } - - // skip RNA mutations - if (mutationType != null && mutationType.equalsIgnoreCase("rna")) - { - ProgressMonitor.logWarning("Skipping entry with mutation type: RNA"); - entriesSkipped++; - continue; - } - - proteinChange = ExtendedMutationUtil.getProteinChange(parts, record); - //proteinChange = record.getProteinChange(); - aaChange = record.getAminoAcidChange(); - codonChange = record.getCodons(); - refseqMrnaId = record.getRefSeq(); - //always uniprot accession - uniprotAccession = record.getSwissprot(); - - proteinPosStart = ExtendedMutationUtil.getProteinPosStart( - record.getProteinPosition(), proteinChange); - proteinPosEnd = ExtendedMutationUtil.getProteinPosEnd( - record.getProteinPosition(), proteinChange); - - // Assume we are dealing with Entrez Gene Ids (this is the best / most stable option) - String geneSymbol = record.getHugoGeneSymbol(); - String entrezIdString = record.getGivenEntrezGeneId(); - - CanonicalGene gene = null; - // try to parse entrez if it is not empty nor 0: - if (!(entrezIdString.isEmpty() || - entrezIdString.equals("0"))) { - Long entrezGeneId; - try { - entrezGeneId = Long.parseLong(entrezIdString); - } catch (NumberFormatException e) { - entrezGeneId = null; - } - //non numeric values or negative values should not be allowed: - if (entrezGeneId == null || entrezGeneId < 0) { - ProgressMonitor.logWarning( - "Ignoring line with invalid Entrez_Id " + - entrezIdString); - entriesSkipped++; - continue; - } else { - gene = daoGene.getGene(entrezGeneId); - if (gene == null) { - //skip if not in DB: - ProgressMonitor.logWarning( - "Entrez gene ID " + entrezGeneId + - " not found. Record will be skipped."); - entriesSkipped++; - continue; - } - } - } - - // If Entrez Gene ID Fails, try Symbol. - if (gene == null && - !(geneSymbol.equals("") || - geneSymbol.equals("Unknown"))) { - gene = daoGene.getNonAmbiguousGene(geneSymbol, true); - } - - // assume symbol=Unknown and entrez=0 (or missing Entrez column) to imply an - // intergenic, irrespective of what the column Variant_Classification says - if (geneSymbol.equals("Unknown") && - (entrezIdString.equals("0") || mafUtil.getEntrezGeneIdIndex() == -1)) { - // give extra warning if mutationType is something different from IGR: - if (mutationType != null && - !mutationType.equalsIgnoreCase("IGR")) { - ProgressMonitor.logWarning( - "Treating mutation with gene symbol 'Unknown' " + - (mafUtil.getEntrezGeneIdIndex() == -1 ? "" : "and Entrez gene ID 0") + " as intergenic ('IGR') " + - "instead of '" + mutationType + "'. Entry filtered/skipped."); - } - // treat as IGR: - myMutationFilter.decisions++; - myMutationFilter.addRejectedVariant(myMutationFilter.rejectionMap, "IGR"); - // skip entry: - entriesSkipped++; - continue; - } - - // skip the record if a gene was expected but not identified - if (gene == null) { - ProgressMonitor.logWarning( - "Ambiguous or missing gene: " + geneSymbol + - " ["+ record.getGivenEntrezGeneId() + - "] or ambiguous alias. Ignoring it " + - "and all mutation data associated with it!"); - entriesSkipped++; - continue; - } else { - ExtendedMutation mutation = new ExtendedMutation(); - - mutation.setGeneticProfileId(geneticProfileId); - mutation.setSampleId(sample.getInternalId()); - mutation.setGene(gene); - mutation.setSequencingCenter(record.getCenter()); - mutation.setSequencer(record.getSequencer()); - mutation.setProteinChange(proteinChange); - mutation.setAminoAcidChange(aaChange); - mutation.setMutationType(mutationType); - mutation.setChr(record.getChr()); - mutation.setStartPosition(record.getStartPosition()); - mutation.setEndPosition(record.getEndPosition()); - mutation.setValidationStatus(record.getValidationStatus()); - mutation.setMutationStatus(record.getMutationStatus()); - mutation.setNcbiBuild(record.getNcbiBuild()); - mutation.setStrand(record.getStrand()); - mutation.setVariantType(record.getVariantType()); - mutation.setAllele(record.getTumorSeqAllele1(), record.getTumorSeqAllele2(), record.getReferenceAllele()); - // log whether tumor seq allele is empty (failed to resolve tumor seq allele because of invalid data values) - if (mutation.getTumorSeqAllele().isEmpty()) { - ProgressMonitor.logWarning("Tumor allele could not be resolved for sample '" + sample.getStableId() + - "' (chr,start,end,ref,tum1,tum2) = (" + record.getChr() + "," + record.getStartPosition() + "," + - record.getEndPosition() + "," + record.getReferenceAllele() + "," + record.getTumorSeqAllele1() + - "," + record.getTumorSeqAllele2() + ")"); - } - mutation.setDbSnpRs(record.getDbSNP_RS()); - mutation.setDbSnpValStatus(record.getDbSnpValStatus()); - mutation.setMatchedNormSampleBarcode(record.getMatchedNormSampleBarcode()); - mutation.setMatchNormSeqAllele1(record.getMatchNormSeqAllele1()); - mutation.setMatchNormSeqAllele2(record.getMatchNormSeqAllele2()); - mutation.setTumorValidationAllele1(record.getTumorValidationAllele1()); - mutation.setTumorValidationAllele2(record.getTumorValidationAllele2()); - mutation.setMatchNormValidationAllele1(record.getMatchNormValidationAllele1()); - mutation.setMatchNormValidationAllele2(record.getMatchNormValidationAllele2()); - mutation.setVerificationStatus(record.getVerificationStatus()); - mutation.setSequencingPhase(record.getSequencingPhase()); - mutation.setSequenceSource(record.getSequenceSource()); - mutation.setValidationMethod(record.getValidationMethod()); - mutation.setScore(record.getScore()); - mutation.setBamFile(record.getBamFile()); - mutation.setTumorAltCount(ExtendedMutationUtil.getTumorAltCount(record)); - mutation.setTumorRefCount(ExtendedMutationUtil.getTumorRefCount(record)); - mutation.setNormalAltCount(ExtendedMutationUtil.getNormalAltCount(record)); - mutation.setNormalRefCount(ExtendedMutationUtil.getNormalRefCount(record)); - - // renamed the oncotator column names to mutation - mutation.setCodonChange(codonChange); - mutation.setRefseqMrnaId(refseqMrnaId); - mutation.setUniprotAccession(uniprotAccession); - mutation.setProteinPosStart(proteinPosStart); - mutation.setProteinPosEnd(proteinPosEnd); - - mutation.setDriverFilter(record.getDriverFilter()); - mutation.setDriverFilterAnn(record.getDriverFilterAnn()); - mutation.setDriverTiersFilter(record.getDriverTiersFilter()); - mutation.setDriverTiersFilterAnn(record.getDriverTiersFilterAnn()); - - // TODO we don't use this info right now... - mutation.setCanonicalTranscript(true); - - AlleleSpecificCopyNumber ascn = null; - if (namespaces != null && namespaces.contains(ASCN_NAMESPACE)) { - Map ascnData = record.getNamespacesMap().remove(ASCN_NAMESPACE); - // The AlleleSpecificCopyNumber constructor will construct the record from - // the ascnData hashmap and the ascnData will simultaneously be removed from - // the record's namespaces map since it is going into its own table - ascn = new AlleleSpecificCopyNumber(ascnData); - } - mutation.setAnnotationJson( - mafUtil.getNamespaceColumnParser().writeValueAsString(record.getNamespacesMap()) - ); - - sequencedCaseSet.add(sample.getStableId()); - - // Filter out Mutations - if( myMutationFilter.acceptMutation( mutation, this.filteredMutations )) { - MutationEvent event = - existingEvents.containsKey(mutation.getEvent()) ? - existingEvents.get(mutation.getEvent()) : - DaoMutation.getMutationEvent(mutation.getEvent()); - if (event!=null) { - mutation.setEvent(event); - } else { - mutation.setMutationEventId(++mutationEventId); - existingEvents.put(mutation.getEvent(), mutation.getEvent()); - newEvents.add(mutation.getEvent()); - } - - ExtendedMutation exist = mutations.get(mutation); - if (exist!=null) { - ExtendedMutation merged = mergeMutationData(exist, mutation); - mutations.put(merged, merged); - } else { - mutations.put(mutation,mutation); - } - if(!sampleSet.contains(sample.getStableId())) { - addSampleProfileRecord(sample); - } - // update ascn object with mutation unique key details - if (ascn != null){ - ascn.updateAscnUniqueKeyDetails(mutation); - ascnRecords.add(ascn); - } - - //keep track: - sampleSet.add(sample.getStableId()); - geneSet.add(mutation.getEntrezGeneId()+""); - } - else { - entriesSkipped++; - } - } - } - } - - for (MutationEvent event : newEvents) { - try { - DaoMutation.addMutationEvent(event); - } catch (DaoException ex) { - throw ex; - } - } - - for (ExtendedMutation mutation : mutations.values()) { - try { - DaoMutation.addMutation(mutation,false); - } catch (DaoException ex) { - throw ex; - } - } - - for (AlleleSpecificCopyNumber ascn : ascnRecords) { - try { - DaoAlleleSpecificCopyNumber.addAlleleSpecificCopyNumber(ascn); - } catch (DaoException ex) { - throw ex; - } - } - - if( MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - } - // run sanity check on `mutation_event` to determine whether duplicate - // events were introduced during current import - if (DaoMutation.hasDuplicateMutationEvents()) { - throw new DaoException("Duplicate mutation events were detected during this import. Aborting..."); - } - - /* - * At MSKCC there are some MUTATION_UNCALLED - * profiles that shouldn't be included when determining the number of - * mutations for a sample - */ - if (geneticProfile.getGeneticAlterationType().equals(GeneticAlterationType.MUTATION_EXTENDED)) { - DaoMutation.createMutationCountClinicalData(geneticProfile); - } - // the mutation count by keyword is on a per genetic profile basis so - // fine to calculate for any genetic profile - ProgressMonitor.setCurrentMessage("Calculating mutation counts by keyword..."); - DaoMutation.calculateMutationCountByKeyword(geneticProfileId); - - if( MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - } - - if (entriesSkipped > 0) { - ProgressMonitor.setCurrentMessage(" --> total number of data entries skipped (see table below): " + entriesSkipped); - } - ProgressMonitor.setCurrentMessage(" --> total number of samples: " + sampleSet.size()); - if (samplesSkipped > 0) { - ProgressMonitor.setCurrentMessage(" --> total number of samples skipped (normal samples): " + samplesSkipped); - } - ProgressMonitor.setCurrentMessage(" --> total number of genes for which one or more mutation events were stored: " + geneSet.size()); - - ProgressMonitor.setCurrentMessage("Filtering table:\n-----------------"); - ProgressMonitor.setCurrentMessage(myMutationFilter.getStatistics() ); - } - - /** - * merge the current mutation - * @return - */ - private ExtendedMutation mergeMutationData(ExtendedMutation mut1, ExtendedMutation mut2) { - ExtendedMutation ret = mut1; - if (!mut1.getMatchedNormSampleBarcode().equalsIgnoreCase(mut2.getMatchedNormSampleBarcode())) { - if (mut2.getMatchedNormSampleBarcode().matches("TCGA-..-....-10.*")) { - // select blood normal if available - ret = mut2; - } - } else if (!mut1.getValidationStatus().equalsIgnoreCase(mut2.getValidationStatus())) { - if (mut2.getValidationStatus().equalsIgnoreCase("Valid") || - mut2.getValidationStatus().equalsIgnoreCase("VALIDATED")) { - // select validated mutations - ret = mut2; - } - } else if (!mut1.getMutationStatus().equalsIgnoreCase(mut2.getMutationStatus())) { - if (mut2.getMutationStatus().equalsIgnoreCase("Germline")) { - // select germline over somatic - ret = mut2; - } else if (mut2.getMutationStatus().equalsIgnoreCase("SOMATIC")) { - if (!mut1.getMutationStatus().equalsIgnoreCase("Germline")) { - // select somatic over others - ret = mut2; - } - } - } - - // merge centers - Set centers = new TreeSet(Arrays.asList(mut1.getSequencingCenter().split(";"))); - if (centers.addAll(Arrays.asList(mut2.getSequencingCenter().split(";")))) { - if (centers.size()>1) { - centers.remove("NA"); - } - ret.setSequencingCenter(StringUtils.join(centers, ";")); - } - - return ret; - } - - private String transformOMAScore( String omaScore) { - if( omaScore == null || omaScore.length() ==0) { - return omaScore; - } - if( omaScore.equalsIgnoreCase("H") || omaScore.equalsIgnoreCase("high")) { - return "H"; - } else if( omaScore.equalsIgnoreCase("M") || omaScore.equalsIgnoreCase("medium")) { - return "M"; - } else if( omaScore.equalsIgnoreCase("L") || omaScore.equalsIgnoreCase("low")) { - return "L"; - } else if( omaScore.equalsIgnoreCase("N") || omaScore.equalsIgnoreCase("neutral")) { - return "N"; - } else if( omaScore.equalsIgnoreCase("[sent]")) { - return "NA"; - } else { - return omaScore; - } - } - - private String processMAFHeader(BufferedReader buffer) throws IOException, DaoException { - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - String line = buffer.readLine().trim(); - while (line.startsWith("#")) { - Matcher seqSamplesMatcher = SEQUENCE_SAMPLES_REGEX.matcher(line); - // line is of format #sequenced_samples: STABLE_ID STABLE_ID STABLE_ID STABLE_ID - if (seqSamplesMatcher.find()) { - addSampleProfileRecords(getSequencedSamples(seqSamplesMatcher.group(1), geneticProfile)); - } - line = buffer.readLine().trim(); - } - return line; - } - - private List getSequencedSamples(String sequencedSamplesIDList, GeneticProfile geneticProfile) { - ArrayList toReturn = new ArrayList(); - for (String stableSampleID : sequencedSamplesIDList.trim().split("\\s")) { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(geneticProfile.getCancerStudyId(), - StableIdUtil.getSampleId(stableSampleID)); - // if data files are run through validator, this condition should be minimal - if (sample == null) { - missingSample(stableSampleID); - } - toReturn.add(sample); - } - return toReturn; - } - - private void addSampleProfileRecords(List sequencedSamples) throws DaoException { - for (Sample sample : sequencedSamples) { - addSampleProfileRecord(sample); - } - if( MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - } - } - - private void addSampleProfileRecord(Sample sample) throws DaoException { - if (!DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId)) { - Integer genePanelID = (genePanel == null) ? null : GeneticProfileUtil.getGenePanelId(genePanel); - DaoSampleProfile.addSampleProfile(sample.getInternalId(), geneticProfileId, genePanelID); - } - } - - private void missingSample(String stableSampleID) { - throw new NullPointerException("Sample is not found in database (is it missing from clinical data file?): " + stableSampleID); - } - - private String convertMapToJsonString(Map> map) throws JsonProcessingException { - ObjectMapper mapper = new ObjectMapper(); - return mapper.writeValueAsString(map); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGeneData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGeneData.java deleted file mode 100644 index 0ab8bd88f25..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGeneData.java +++ /dev/null @@ -1,801 +0,0 @@ -/* - * Copyright (c) 2015 - 2021 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.ReferenceGenome; -import org.mskcc.cbio.portal.model.ReferenceGenomeGene; -import org.mskcc.cbio.portal.util.*; - -import joptsimple.OptionException; -import joptsimple.OptionParser; -import joptsimple.OptionSet; -import joptsimple.OptionSpec; - -import java.io.*; -import java.util.*; - -/** - * Command Line Tool to Import Background Gene Data. - */ -public class ImportGeneData extends ConsoleRunnable { - - /** - * Adds the genes parsed from the file into the Database. - * - * @param geneFile File with gene information - * @throws IOException - * @throws DaoException - */ - public static void importData(File geneFile, String genomeBuild) throws IOException, DaoException { - Map> genesWithSymbolFromNomenClatureAuthority = new LinkedHashMap<>(); - Map> genesWithoutSymbolFromNomenClatureAuthority = new LinkedHashMap<>(); - Map> refGenesWithSymbolFromNomenClatureAuthority = new LinkedHashMap<>(); - Map> refGenesWithoutSymbolFromNomenClatureAuthority = new LinkedHashMap<>(); - try (FileReader reader = new FileReader(geneFile)) { - BufferedReader buf = new BufferedReader(reader); - String line; - while ((line = buf.readLine()) != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if (line.startsWith("#")) { - continue; - } - - String species = GlobalProperties.getSpecies(); - String parts[] = line.split("\t"); - int taxonomy = Integer.parseInt(parts[0]); - if (species.equals("human")) { - if (taxonomy!=9606) { - // only import human genes - continue; - } - } else if (species.equals("mouse")) { - if (taxonomy!=10090) { - // only import mouse genes - continue; - } - } else { - throw new Error("Species "+species+" is not supported."); - } - - int entrezGeneId = Integer.parseInt(parts[1]); - String geneSymbol = parts[2]; - String locusTag = parts[3]; - String strAliases = parts[4]; - String strXrefs = parts[5]; - String cytoband = parts[7]; - String chr = cytoband.split("[pq;c \\|]")[0]; // various strange characters were found in this column - int referenceGenomeId = DaoReferenceGenome.getReferenceGenomeByBuildName(genomeBuild).getReferenceGenomeId(); - String desc = parts[8]; - String type = parts[9]; - String mainSymbol = parts[10]; // use 10 instead of 2 since column 2 may have duplication - Set aliases = new HashSet(); - - // try to get chr from other column if needed - if (chr.equals("-")) { - if (!parts[6].equals("-")) { - chr = parts[6]; - } else { - continue; // skip if both columns are absent - } - } - if (!locusTag.equals("-")) { - aliases.add(locusTag); - } - if (!strAliases.equals("-")) { - aliases.addAll(Arrays.asList(strAliases.split("\\|"))); - } - - if (geneSymbol.startsWith("MIR") && type.equalsIgnoreCase("miscRNA")) { - line = buf.readLine(); - continue; // ignore miRNA; process separately - } - - CanonicalGene gene = null; - ReferenceGenomeGene refGene = null; - if (!mainSymbol.equals("-")) { - //Try the main symbol: - gene = new CanonicalGene(entrezGeneId, mainSymbol, aliases); - refGene = new ReferenceGenomeGene(entrezGeneId, referenceGenomeId, chr, cytoband, 0, 0); - Set genes = genesWithSymbolFromNomenClatureAuthority.get(mainSymbol); - Set refGenes = refGenesWithSymbolFromNomenClatureAuthority.get(mainSymbol); - if (genes==null) { - genes = new HashSet(); - genesWithSymbolFromNomenClatureAuthority.put(mainSymbol, genes); - } - if (refGenes==null) { - refGenes = new HashSet(); - refGenesWithSymbolFromNomenClatureAuthority.put(mainSymbol, refGenes); - } - genes.add(gene); - refGenes.add(refGene); - } else if (!geneSymbol.equals("-")) { - //there is no main symbol, so import using the temporary/unofficial(?) symbol: - gene = new CanonicalGene(entrezGeneId, geneSymbol, aliases); - refGene = new ReferenceGenomeGene(entrezGeneId, referenceGenomeId, chr, cytoband, 0, 0); - Set genes = genesWithoutSymbolFromNomenClatureAuthority.get(geneSymbol); - Set refGenes = refGenesWithoutSymbolFromNomenClatureAuthority.get(geneSymbol); - if (genes==null) { - genes = new HashSet(); - genesWithoutSymbolFromNomenClatureAuthority.put(geneSymbol, genes); - } - if (refGenes==null) { - refGenes = new HashSet(); - refGenesWithoutSymbolFromNomenClatureAuthority.put(geneSymbol, refGenes); - } - genes.add(gene); - refGenes.add(refGene); - } - - if (gene!=null) { - gene.setType(type); - } - } - addGenesToDB(genesWithSymbolFromNomenClatureAuthority, genesWithoutSymbolFromNomenClatureAuthority); - addReferenceGenomeGenesToDB(refGenesWithSymbolFromNomenClatureAuthority, - refGenesWithoutSymbolFromNomenClatureAuthority); - } - } - - /** - * Adds the genes parsed from the HGNC file into the database. - * - * @param geneFile HGNC File with gene information - * @throws IOException - * @throws DaoException - */ - public static void importHGNCData(File geneFile, String genomeBuild) throws IOException, DaoException { - Map> canonicalGeneMap = new LinkedHashMap<>(); - Map> refGeneMap = new LinkedHashMap<>(); - try (FileReader reader = new FileReader(geneFile)) { - BufferedReader buf = new BufferedReader(reader); - String line; - buf.readLine(); // skip first (header) line - ProgressMonitor.incrementCurValue(); // for header line - while ((line = buf.readLine()) != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - String parts[] = line.split("\t", -1); // include trailing empty strings - if (!parts[0].matches("[0-9]+")) { - ProgressMonitor.logWarning("Skipping gene with invalid entrez gene id '" + parts[1] + "'"); - continue; - } - int entrezGeneId = Integer.parseInt(parts[0]); - String geneSymbol = parts[1]; - String cytoband = parts[3]; - String chr = cytoband.split("[pq;c \\|]")[0]; // various strange characters were found in this column - String type = parts[4]; - String strAliases = parts[5]; - Set aliases = new HashSet(); - int referenceGenomeId = DaoReferenceGenome.getReferenceGenomeByBuildName(genomeBuild).getReferenceGenomeId(); - - // try to get chr from chromosome column if needed - // if cytoband is mitochondria then use chromosome M - if (!chr.matches("[0-9XY]{1,2}")) { - if (parts[2].matches("[0-9XY]{1,2}")) { - chr = parts[2]; - ProgressMonitor.logWarning("Taking chromosome from chromosome column" + chr); - } else { - if (cytoband.equals("mitochondria")) { - chr = "M"; - } else { - ProgressMonitor.logWarning("Skipping gene with chromosome " + chr); - continue; // skip if we don't know chromosome - } - } - } - - if (!strAliases.equals("-") && !strAliases.equals("")) { - aliases.addAll(Arrays.asList(strAliases.split("\\|"))); - } - - CanonicalGene canonicalGene = new CanonicalGene(entrezGeneId, geneSymbol, aliases); - canonicalGene.setType(type); - ReferenceGenomeGene refGene = new ReferenceGenomeGene(entrezGeneId, referenceGenomeId, chr, cytoband, 0, 0); - Set canonicalGenes = canonicalGeneMap.get(geneSymbol); - Set refGenes = refGeneMap.get(geneSymbol); - if (canonicalGenes == null) { - canonicalGenes = new HashSet(); - canonicalGeneMap.put(geneSymbol, canonicalGenes); - } - if (refGenes == null) { - refGenes = new HashSet(); - refGeneMap.put(geneSymbol, refGenes); - } - canonicalGenes.add(canonicalGene); - refGenes.add(refGene); - } - addGenesToDB(canonicalGeneMap, new LinkedHashMap>()); - addReferenceGenomeGenesToDB(refGeneMap, new LinkedHashMap>()); - } - } - - /** - * Iterate over the genes found in the given maps and try to add them to the DB. - * - * @param genesWithSymbolFromNomenClatureAuthority: genes with official symbol - * @param genesWithoutSymbolFromNomenClatureAuthority: genes without official symbol (can happen, some entrez genes - * have no official symbol yet, but a temporary symbol). - * - * @throws DaoException - */ - private static void addGenesToDB(Map> genesWithSymbolFromNomenClatureAuthority, - Map> genesWithoutSymbolFromNomenClatureAuthority) throws DaoException { - - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - int nrExisting = 0; - // Add genes with symbol from nomenclature authority - for (Map.Entry> entry : genesWithSymbolFromNomenClatureAuthority.entrySet()) { - Set genes = entry.getValue(); - if (genes.size()==1) { - CanonicalGene gene = genes.iterator().next(); - // first check if gene exists. If exists, give warning and skip record: - if (daoGene.getGene(gene.getEntrezGeneId()) != null) { - ProgressMonitor.logWarning("Gene is already in table. Updates are not allowed. If you need to update the `gene` table, please remove all studies first and empty the `gene` table."); - nrExisting++; - continue; - } - daoGene.addGene(gene); - ProgressMonitor.logWarning("New gene with official symbol added"); - } else { - //TODO - is unexpected for official symbols...raise Exception instead? - logDuplicateGeneSymbolWarning(entry.getKey(), genes, true); - } - } - - // Add genes without symbol from nomenclature authority - if (genesWithoutSymbolFromNomenClatureAuthority.keySet().size() > 0) { - int nrImported = 0; - int nrSkipped = 0; - for (Map.Entry> entry : genesWithoutSymbolFromNomenClatureAuthority.entrySet()) { - Set genes = entry.getValue(); - String symbol = entry.getKey(); - if (genes.size()==1) { - CanonicalGene gene = genes.iterator().next(); - //only add the gene if it does not conflict with an official symbol: - if (!genesWithSymbolFromNomenClatureAuthority.containsKey(symbol)) { - //first check if gene exists. If exists, give warning and skip record since we don't allow updates in this process: - if (daoGene.getGene(gene.getEntrezGeneId()) != null) { - ProgressMonitor.logWarning("Gene is already in table. Updates are not allowed. If you need to update the `gene` table, please remove all studies first and empty the `gene` table."); - nrSkipped++; - nrExisting++; - continue; - } - daoGene.addGene(gene); - ProgressMonitor.logWarning("New gene with *no* official symbol added"); - nrImported++; - } else { - // ignore entries with a symbol that have the same value as stardard one - ProgressMonitor.logWarning("Ignored line with entrez gene id "+gene.getEntrezGeneId() + " because its 'unnoficial' symbol " + - symbol+" is already an 'official symbol' of another gene"); - nrSkipped++; - continue; - } - } else { - logDuplicateGeneSymbolWarning(symbol, genes, false); - nrSkipped++; - continue; - } - } - ProgressMonitor.logWarning("There were " +genesWithoutSymbolFromNomenClatureAuthority.keySet().size() + - " genes names in this file without an official symbol from nomenclature authority. Imported: " + nrImported + - ". Gene names skipped (because of duplicate symbol entry or because symbol is an 'official symbol' of another gene): " + nrSkipped); - } - - if (nrExisting > 0) { - ProgressMonitor.logWarning("Number of records skipped because the gene was already in the gene table (updates are not allowed - see specific warnings above): " + nrExisting); - } - } - - /** - * Iterate over the reference genome genes found in the given maps and try to add them to the DB. - * - * @param refGenesWithSymbolFromNomenClatureAuthority: reference genome genes with official symbol - * @param refGenesWithoutSymbolFromNomenClatureAuthority: reference genome genes without official symbol (can happen, some entrez genes - * have no official symbol yet, but a temporary symbol). - * - * @throws DaoException - */ - private static void addReferenceGenomeGenesToDB(Map> refGenesWithSymbolFromNomenClatureAuthority, - Map> refGenesWithoutSymbolFromNomenClatureAuthority) throws DaoException { - - DaoReferenceGenomeGene daoReferenceGenomeGene = DaoReferenceGenomeGene.getInstance(); - - int nrExisting = 0; - // Add genes with symbol from nomenclature authority - for (Map.Entry> entry : refGenesWithSymbolFromNomenClatureAuthority.entrySet()) { - Set refGenes = entry.getValue(); - if (refGenes.size()==1) { - ReferenceGenomeGene refGene = refGenes.iterator().next(); - // first check if gene exists. If exists, give warning and skip record: - if (daoReferenceGenomeGene.getGene(refGene.getEntrezGeneId(), refGene.getReferenceGenomeId()) != null) { - ProgressMonitor.logWarning("Reference Genome Gene is already in table. Updates are not allowed. If you need to update the `gene` table, please remove all studies first and empty the `gene` table."); - nrExisting++; - continue; - } - try { - daoReferenceGenomeGene.addOrUpdateGene(refGene); - } catch (Exception e) { - ProgressMonitor.logWarning("chromosome too large" + refGene.getChr()); - continue; - } - ProgressMonitor.logWarning("New reference genome gene with official symbol added"); - } else { - //TODO - is unexpected for official symbols...raise Exception instead? - logDuplicateReferenceGenomeGeneSymbolWarning(entry.getKey(), refGenes, true); - } - } - - // Add genes without symbol from nomenclature authority - if (refGenesWithoutSymbolFromNomenClatureAuthority.keySet().size() > 0) { - int nrImported = 0; - int nrSkipped = 0; - for (Map.Entry> entry : refGenesWithoutSymbolFromNomenClatureAuthority.entrySet()) { - Set refGenes = entry.getValue(); - String symbol = entry.getKey(); - if (refGenes.size()==1) { - ReferenceGenomeGene refGene = refGenes.iterator().next(); - //only add the gene if it does not conflict with an official symbol: - if (!refGenesWithSymbolFromNomenClatureAuthority.containsKey(symbol)) { - //first check if gene exists. If exists, give warning and skip record since we don't allow updates in this process: - if (daoReferenceGenomeGene.getGene(refGene.getEntrezGeneId(), refGene.getReferenceGenomeId()) != null) { - ProgressMonitor.logWarning("Gene is already in table. Updates are not allowed. If you need to update the `gene` table, please remove all studies first and empty the `gene` table."); - nrSkipped++; - nrExisting++; - continue; - } - daoReferenceGenomeGene.addOrUpdateGene(refGene); - ProgressMonitor.logWarning("New gene with *no* official symbol added"); - nrImported++; - } else { - // ignore entries with a symbol that have the same value as stardard one - ProgressMonitor.logWarning("Ignored line with entrez gene id "+refGene.getEntrezGeneId() + " because its 'unnoficial' symbol " + - symbol+" is already an 'official symbol' of another gene"); - nrSkipped++; - continue; - } - } else { - logDuplicateReferenceGenomeGeneSymbolWarning(entry.getKey(), refGenes, true); - nrSkipped++; - continue; - } - } - ProgressMonitor.logWarning("There were " +refGenesWithoutSymbolFromNomenClatureAuthority.keySet().size() + - " genes names in this file without an official symbol from nomenclature authority. Imported: " + nrImported + - ". Gene names skipped (because of duplicate symbol entry or because symbol is an 'official symbol' of another gene): " + nrSkipped); - } - - if (nrExisting > 0) { - ProgressMonitor.logWarning("Number of records skipped because the gene was already in the gene table (updates are not allowed - see specific warnings above): " + nrExisting); - } - } - - private static void logDuplicateGeneSymbolWarning(String symbol, Set genes, boolean isOfficialSymbol) { - StringBuilder sb = new StringBuilder(); - if (isOfficialSymbol) { - sb.append("More than 1 gene has the same (official) symbol "); - } else { - sb.append("More than 1 gene has the same (unofficial) symbol "); - } - sb.append(symbol) - .append(":"); - for (CanonicalGene gene : genes) { - sb.append(" ") - .append(gene.getEntrezGeneId()) - .append(". Ignore..."); - } - ProgressMonitor.logWarning(sb.toString()); - } - - private static void logDuplicateReferenceGenomeGeneSymbolWarning(String symbol, Set refGenes, boolean isOfficialSymbol) { - StringBuilder sb = new StringBuilder(); - if (isOfficialSymbol) { - sb.append("More than 1 gene has the same (official) symbol "); - } else { - sb.append("More than 1 gene has the same (unofficial) symbol "); - } - sb.append(symbol) - .append(":"); - for (ReferenceGenomeGene refGene : refGenes) { - sb.append(" ") - .append(refGene.getEntrezGeneId()) - .append(". Ignore..."); - } - ProgressMonitor.logWarning(sb.toString()); - } - - private static String getCytoband(String cytoband, String species) { - if (!cytoband.equals("-")) { - if (species.equals("mouse")) { - //Usually three cytobands are represented in the gene info for mouse: - //First, only the chromosome number, then the chromosome number and the position - //of the gene in cM, and finally, by the "Correct" cytoband, that is the name of - //the chromosome and the cytoband, which is a letter (from A to H) followed by a - //numeric position, for example X A3 or 3 A1.2. - List cytobands = new ArrayList(); - cytobands.addAll(Arrays.asList(cytoband.split("\\|"))); - for (String i : cytobands) { - if (!i.contains("cM")) { //Skip cytobands containing cM - if (cytobands.size() <= 2) { - cytoband = i; //Only one cytoband is left from these gene. - } else { - //We have more than one cytoband for these gene, so keep the one which - //has the cytoband. - if (i.contains("A") || i.contains("B") || i.contains("C") || i.contains("D") || i.contains("E") || i.contains("F") || i.contains("G") || i.contains("H")) { - cytoband = i; - } - } - } - } - } - return cytoband; - } - return null; - } - - /** - * This method imports the gene lengths of a General Transfer Format (gtf) file. This file contains different genetic features from genes (CDS, exons, introns...) in each line. - * All features of a single gene contain the same Ensembl ID. Therefore, this method uses the Ensembl IDs to differentiate between different genes. All the features with the same - * Ensembl ID are in consecutive lines. This method uses the gene symbol to retrieve the Entrez ID, but different Ensembl IDs can share the same symbol. If these Ensembl IDs are - * located in different chromosomes, the method uses the length of the Ensembl ID according to the cytoband from the gene saved in the database. In the case multiple Ensembl IDs - * with the same symbol are on the same chromosome or no cytoband information is available, the length of the last Ensembl ID is taken. - * - * @param geneFile - * @throws IOException - * @throws DaoException - */ - - public static void importGeneLength(File geneFile, String genomeBuild, String species, boolean hasGenes) throws IOException, DaoException { - //Set the variables needed for the method - FileReader reader = new FileReader(geneFile); - BufferedReader buf = new BufferedReader(reader); - int referenceGenomeId = DaoReferenceGenome.getReferenceGenomeByBuildName(genomeBuild).getReferenceGenomeId(); - String line; - ProgressMonitor.setCurrentMessage("\nUpdating gene lengths... \n"); //Display a message in the console - boolean geneUpdated = false; - - String previousEnsembl = ""; - String currentEnsembl = ""; - String previousSymbol = ""; - String currentSymbol = ""; - String previousChrom = ""; - String currentChrom = ""; - Long currentStart; - Long currentStop; - - String parts[] = null; - List loci = new ArrayList(); - int nrGenesUpdated = 0; - - //Iterate over the file and fill the hash map with the max and min values of each gene (start and end position) - while ((line=buf.readLine()) != null) { - if(line.charAt(0) == '#'){ - continue; - } - parts = line.split("\t"); - currentChrom = parts[0]; - currentStart = Long.parseLong(parts[3]); - currentStop = Long.parseLong(parts[4]) + 1; // We have to add 1 here, because the last base is also included. - - if (parts[2].contains("exon") || parts[2].contains("CDS")) { - String info[] = parts[8].split(";"); - - //Retrieve the ensembl ID - for (String i : info) { - if (i.contains("gene_id")) { - String j[] = i.split(" "); - currentEnsembl = j[1].replaceAll("\"", ""); - } - else if (i.contains("gene_name")) { - String j[] = i.split(" "); - currentSymbol = j[2].replaceAll("\"", ""); - } - } - - /// Only in case of the first line - if (previousEnsembl.equals("")) { - previousEnsembl = currentEnsembl; - previousSymbol = currentSymbol; - previousChrom = currentChrom; - loci.add(new long[]{currentStart, currentStop}); //Add the new positions - } - /// For all other lines - else { - - /// If there is no switch from Ensembl ID - if (previousEnsembl.equals(currentEnsembl)) { - loci.add(new long[]{currentStart, currentStop}); //Add the new positions - } - /// If there is a switch - else { - geneUpdated = updateLength(previousSymbol, previousChrom, loci, - referenceGenomeId); - if (geneUpdated) { - nrGenesUpdated++; - } - /// At the end of writing a new gene, clear the loci and save the new ensemblID. - loci.clear(); - - previousEnsembl = currentEnsembl; - previousSymbol = currentSymbol; - previousChrom = currentChrom; - loci.add(new long[]{currentStart, currentStop}); //Add the new positions - } - } - } - } - /// Write the last gene - /// First check if the gene exists in the database - geneUpdated = updateLength(previousSymbol, previousChrom, loci, referenceGenomeId); - if (geneUpdated) { - nrGenesUpdated++; - } - ProgressMonitor.setCurrentMessage("Updated length info for " + nrGenesUpdated + " genes\n"); - - buf.close(); - } - - /** - * This method receives a symbol, a chromosome and a list of loci (should be from the same gene), and with that it retrieves the database gene and it calculates the length - * of all its exons contained in loci. If the symbol is ambiguous, or the chromosome reported does not match the cytoband of the database gene, then length is not updated. - * The method reports a boolean stating if the gene length has been updated or not. - * - * @param symbol - * @param chromosome - * @param loci - * @return - * @throws IOException - * @throws DaoException - */ - public static boolean updateLength(String symbol, String chromosome, List loci, int refreneceGenomeId) throws IOException, DaoException { - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - CanonicalGene gene = daoGeneOptimized.getNonAmbiguousGene(symbol); - - boolean lengthUpdated = false; - - if (gene == null) { - ProgressMonitor.logWarning("Unable to retrieve gene by symbol: " +symbol); - return lengthUpdated; - } - - System.out.println(" --> update reference genome gene: " + gene.getHugoGeneSymbolAllCaps()); - DaoReferenceGenomeGene daoReferenceGenomeGene = DaoReferenceGenomeGene.getInstance(); - - /// Check if the gene is in the database - ReferenceGenomeGene refGene = daoReferenceGenomeGene.getGene(gene.getEntrezGeneId(), refreneceGenomeId); - /// If it's not in the database, don't add it - if (refGene != null) { - /// Calc length - long[] exonic = calculateGeneLength(loci); - - /// If there is a cytoband in database, check if cytoband-chr matches input-chr - if (refGene.getCytoband() != null) { - String cbChr = "chr"+refGene.getCytoband().split("[pq;c \\|]")[0]; - System.out.println(" updateLength--> cytoband of the gene: " + cbChr); - if (cbChr.equals(chromosome)) { //Update the length only if the chromosome matches - // update reference genome gene - System.out.println(" updateLength--> update reference genome gene: " + gene.getHugoGeneSymbolAllCaps()); - refGene.setStart(exonic[0]); - refGene.setEnd(exonic[1]); - daoReferenceGenomeGene.updateGene(refGene); - } - else { - ProgressMonitor.logWarning("Cytoband from reference gene is not on the same chromosome - unable to update the length of this gene (likely another version of gene in gtf has correct chr and is saved)"); - } - } - else { - ProgressMonitor.logWarning("Cytoband is not available - unable to update the length of this gene (likely another version of gene in gtf has correct chr and is saved)"); - } - } - return lengthUpdated; - } - - /** - * This method uses a list of exon loci from the same gene and it adds the length of all of them to get the gene length. If some of the exons are - * overlapping, the overlapping part is only counted once in the calculation. For example, if an exon goes from position 3 to 10 and another one from - * position 5 to 11, when calculating the length these exons would be considered as a single exon going from position 3 to 11. - * - * @param loci - * @return - */ - public static long[] calculateGeneLength(List loci) { - long min = Long.MAX_VALUE, max=-1; - for (long[] l : loci) { - if (l[0]max) { - max = l[1]; - } - } - if (max < min) { - throw new IllegalArgumentException("Found error: max=" + max + ", min=" + min); - } - BitSet bitSet = new BitSet((int)(max-min)); - for (long[] l : loci) { - bitSet.set((int)(l[0]-min), ((int)(l[1]-min))); - } - - return new long[]{min, max, bitSet.cardinality()}; - } - - static void importSuppGeneData(File suppGeneFile, String referenceGenomeBuild) throws IOException, DaoException { - MySQLbulkLoader.bulkLoadOff(); - FileReader reader = new FileReader(suppGeneFile); - BufferedReader buf = new BufferedReader(reader); - String line; - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - DaoReferenceGenomeGene daoRefGene = DaoReferenceGenomeGene.getInstance(); - ReferenceGenome refGenome = DaoReferenceGenome.getReferenceGenomeByBuildName(referenceGenomeBuild); - while ((line = buf.readLine()) != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if (!line.startsWith("#")) { - String parts[] = line.split("\t"); - CanonicalGene gene = new CanonicalGene(parts[0]); - ReferenceGenomeGene refGene = new ReferenceGenomeGene( - gene.getEntrezGeneId(), - refGenome.getReferenceGenomeId()); - if (!parts[1].isEmpty()) { - gene.setType(parts[1]); - } - if (!parts[2].isEmpty()) { - refGene.setCytoband(parts[2]); - } - daoGene.addGene(gene); - daoRefGene.addOrUpdateGene(refGene); - } - } - reader.close(); - } - - @Override - public void run() { - try { - SpringUtil.initDataSource(); - - String description = "Update gene / gene alias tables "; - - // using a real options parser, helps avoid bugs - OptionParser parser = new OptionParser(); - OptionSpec help = parser.accepts( "help", "print this help info" ); - parser.accepts( "genes", "ncbi genes file" ).withRequiredArg().describedAs( "ncbi_genes.txt" ).ofType( String.class ); - parser.accepts( "hgnc", "hgnc genes file" ).withRequiredArg().describedAs( "hgnc_genes.txt" ).ofType( String.class ); - parser.accepts( "supp-genes", "alternative genes file" ).withRequiredArg().describedAs( "supp-genes.txt" ).ofType( String.class ); - parser.accepts( "microrna", "microrna file" ).withRequiredArg().describedAs( "microrna.txt" ).ofType( String.class ); - parser.accepts( "gtf", "gtf file for calculating and storing gene lengths" ).withRequiredArg().describedAs( "gencode..annotation.gtf" ).ofType( String.class ); - parser.accepts( "genome-build", "genome build eg GRCh38" ).withRequiredArg().describedAs( "genome build" ).ofType( String.class ); - parser.accepts( "species", "different kinds of organisms eg. humna").withRequiredArg().describedAs( "species" ).ofType( String.class ); - String progName = "importGenes"; - OptionSet options = null; - try { - options = parser.parse( args ); - } catch (OptionException e) { - throw new UsageException(progName, description, parser, - e.getMessage()); - } - - if( options.has( help ) ){ - throw new UsageException(progName, description, parser); - } - - ProgressMonitor.setConsoleMode(true); - - if(options.has("genes")) { - File geneFile = new File((String) options.valueOf("genes")); - System.out.println("Reading gene data from: " + geneFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(geneFile); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - MySQLbulkLoader.bulkLoadOn(); - ImportGeneData.importData(geneFile, (String)options.valueOf("genome-build")); - MySQLbulkLoader.flushAll(); //Gene and gene_alias should be updated before calculating gene length (gtf)! - } - - if(options.has("hgnc")) { - File geneFile = new File((String) options.valueOf("hgnc")); - System.out.println("Reading gene data from: " + geneFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(geneFile); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - MySQLbulkLoader.bulkLoadOn(); - ImportGeneData.importHGNCData(geneFile, (String)options.valueOf("genome-build")); - MySQLbulkLoader.flushAll(); //Gene and gene_alias should be updated before calculating gene length (gtf)! - } - - if(options.has("supp-genes")) { - File suppGeneFile = new File((String) options.valueOf("genes")); - System.out.println("Reading supp. gene data from: " + suppGeneFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(suppGeneFile); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - ImportGeneData.importSuppGeneData(suppGeneFile, - (String)options.valueOf("genome-build")); - } - - if(options.has("microrna")) { - File miRNAFile = new File((String) options.valueOf("microrna")); - System.out.println("Reading miRNA data from: " + miRNAFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(miRNAFile); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - ImportMicroRNAIDs.importData(miRNAFile); - } - - if(options.has("gtf")) { - File lociFile = new File((String) options.valueOf("gtf")); - String species = ReferenceGenome.HOMO_SAPIENS; - if (options.has("species")) { - species = (String)options.valueOf("species"); - } - System.out.println("Reading loci data from: " + lociFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(lociFile); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - ImportGeneData.importGeneLength(lociFile, (String)options.valueOf("genome-build"), - species, options.has("genes")); - } - MySQLbulkLoader.flushAll(); - System.err.println("Done. Restart tomcat to make sure the cache is replaced with the new data."); - - } - catch (RuntimeException e) { - throw e; - } - catch (Exception e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportGeneData(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportGeneData(args); - runner.runInConsole(); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenePanel.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenePanel.java deleted file mode 100644 index 17263747154..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenePanel.java +++ /dev/null @@ -1,143 +0,0 @@ -/* - * Copyright (c) 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import java.io.*; -import java.util.*; - -import joptsimple.*; - -import static org.mskcc.cbio.portal.util.GenePanelUtil.extractGenes; -import static org.mskcc.cbio.portal.util.GenePanelUtil.extractPropertyValue; - -/** - * @author heinsz - */ -public class ImportGenePanel extends ConsoleRunnable { - - private File genePanelFile; - - @Override - public void run() { - try { - String progName = "ImportGenePanel"; - String description = "Import gene panel files."; - - OptionParser parser = new OptionParser(); - OptionSpec data = parser.accepts("data", - "gene panel file").withRequiredArg().describedAs("data_file.txt").ofType(String.class); - parser.accepts("noprogress", "this option can be given to avoid the messages regarding memory usage and % complete"); - - OptionSet options = null; - try { - options = parser.parse(args); - } catch (OptionException e) { - throw new UsageException( - progName, description, parser, - e.getMessage()); - } - File genePanel_f = null; - if (options.has(data)) { - genePanel_f = new File(options.valueOf(data)); - } else { - throw new UsageException( - progName, description, parser, - "'data' argument required."); - } - - setFile(genePanel_f); - importData(); - } catch (RuntimeException e) { - throw e; - } catch (Exception e) { - throw new RuntimeException(e); - } - } - - public void importData() throws Exception { - ProgressMonitor.setCurrentMessage("Reading data from: " + genePanelFile.getAbsolutePath()); - Properties properties = new Properties(); - properties.load(new FileInputStream(genePanelFile)); - - String stableId = extractPropertyValue("stable_id", properties, true); - String description = extractPropertyValue("description", properties, false); - Set canonicalGenes = extractGenes(properties, false); - - GenePanel genePanel = DaoGenePanel.getGenePanelByStableId(stableId); - boolean panelUsed = false; - if (genePanel != null) { - if (DaoSampleProfile.sampleProfileMappingExistsByPanel(genePanel.getInternalId())) { - ProgressMonitor.logWarning("Gene panel " + stableId + " already exists in databasel and is being used! Cannot import the gene panel!"); - panelUsed = true; - } else { - DaoGenePanel.deleteGenePanel(genePanel); - ProgressMonitor.logWarning("Gene panel " + stableId + " already exists in the database but is not being used. Overwriting old gene panel data."); - } - } - - if (!panelUsed) { - if (canonicalGenes != null) { - DaoGenePanel.addGenePanel(stableId, description, canonicalGenes); - } else { - ProgressMonitor.logWarning("Gene panel " + stableId + " cannot be imported because one or more genes in the panel are not found in the database, or are duplicated."); - } - } - } - - public void setFile(File genePanelFile) { - this.genePanelFile = genePanelFile; - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportGenePanel(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportGenePanel(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenePanelProfileMap.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenePanelProfileMap.java deleted file mode 100644 index 8e0d77c445a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenePanelProfileMap.java +++ /dev/null @@ -1,227 +0,0 @@ -/* - * Copyright (c) 2016 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; - -import java.io.*; -import joptsimple.*; -import java.util.*; - -/** - * - * @author heinsz, sandertan - */ -public class ImportGenePanelProfileMap extends ConsoleRunnable { - - private File genePanelProfileMapFile; - private String cancerStudyStableId; - - private static final String NA_STRING = "NA"; - private static final String WXS_STRING = "WXS"; - private static final String WGS_STRING = "WGS"; - private static final String WXS_WGS_STRING = "WXS/WGS"; - - @Override - public void run() { - try { - String progName = "ImportGenePanelProfileMap"; - String description = "Import gene panel profile map files."; - // usage: --data --meta [--noprogress] - - OptionParser parser = new OptionParser(); - OptionSpec data = parser.accepts( "data", - "gene panel file" ).withRequiredArg().describedAs( "data_file.txt" ).ofType( String.class ); - OptionSpec meta = parser.accepts( "meta", - "gene panel file" ).withRequiredArg().describedAs( "meta_file.txt" ).ofType( String.class ); - parser.accepts("noprogress", "this option can be given to avoid the messages regarding memory usage and % complete"); - - OptionSet options; - try { - options = parser.parse( args ); - } catch (OptionException e) { - throw new UsageException( - progName, description, parser, - e.getMessage()); - } - File genePanel_f; - if( options.has( data ) ){ - genePanel_f = new File( options.valueOf( data ) ); - } else { - throw new UsageException( - progName, description, parser, - "'data' argument required."); - } - - if( options.has( meta ) ){ - Properties properties = new TrimmedProperties(); - properties.load(new FileInputStream(options.valueOf(meta))); - cancerStudyStableId = properties.getProperty("cancer_study_identifier"); - } else { - throw new UsageException( - progName, description, parser, - "'meta' argument required."); - } - - setFile(genePanel_f); - SpringUtil.initDataSource(); - importData(); - } catch (RuntimeException e) { - throw e; - } catch (Exception e) { - throw new RuntimeException(e); - } - } - - /* This function will return null for special cases "WXS", "WGS", and "WXS/WGS". Otherwise - it will throw a RuntimeException if the specified genePanelName is not in the database. - */ - private Integer determineGenePanelId(String genePanelName) { - // use null for WXS (whole exome sequencing) or WGS (whole genome sequencing) - if (WXS_STRING.equals(genePanelName) || WGS_STRING.equals(genePanelName) || WXS_WGS_STRING.equals(genePanelName)) { - return null; - } - // extract gene panel ID - GenePanel genePanel = DaoGenePanel.getGenePanelByStableId(genePanelName); - if (genePanel != null) { - return genePanel.getInternalId(); - } else { - // Throw an exception if gene panel is not in database - throw new RuntimeException("Gene panel cannot be found in database: " + genePanelName); - } - } - - public void importData() throws Exception { - ProgressMonitor.setCurrentMessage("Reading data from: " + genePanelProfileMapFile.getAbsolutePath()); - FileReader reader = new FileReader(genePanelProfileMapFile); - BufferedReader buff = new BufferedReader(reader); - - // Extract and parse first line which contains the profile names - List profiles = getProfilesLine(buff); - Integer sampleIdIndex = profiles.indexOf("SAMPLE_ID"); - if (sampleIdIndex < 0) { - throw new RuntimeException("Missing SAMPLE_ID column in file " + genePanelProfileMapFile.getAbsolutePath()); - } - profiles.remove((int)sampleIdIndex); - List profileIds = getProfileIds(profiles); - - // Get cancer study - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyStableId); - - // Loop over gene panel matrix and load into database - ProgressMonitor.setCurrentMessage("Loading gene panel profile matrix data to database.."); - String row; - while((row = buff.readLine()) != null) { - List row_data = new LinkedList<>(Arrays.asList(row.split("\t"))); - - // Extract and parse sample ID - // Use StableIdUtil to convert IDs to match what would be stored in DB - // Specifically, TCGA samples have additional processing that changes the sample stable id - String sampleId = StableIdUtil.getSampleId(row_data.get(sampleIdIndex)); - - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudy.getInternalId(), sampleId); - row_data.remove((int)sampleIdIndex); - - // Loop over the values in the row - for (int i = 0; i < row_data.size(); i++) { - String genePanelName = row_data.get(i); - - // NA triggers specific case to indicate sample was not profiled - // e.g. an aggregate study from multiple institutions - // one of which definitely did not profile for the sv profile - if (NA_STRING.equals(genePanelName)) { - continue; - } - - Integer genePanelId = determineGenePanelId(genePanelName); - // Add gene panel information to database - DaoSampleProfile.updateSampleProfile( - sample.getInternalId(), - profileIds.get(i), - genePanelId); - } - } - } - - private List getProfilesLine(BufferedReader buff) throws Exception { - String line = buff.readLine(); - while(line.startsWith("#")) { - line = buff.readLine(); - } - return new LinkedList<>(Arrays.asList(line.split("\t"))); - } - - private List getProfileIds(List profiles) { - List geneticProfileIds = new LinkedList<>(); - for(String profile : profiles) { - if (!profile.startsWith(cancerStudyStableId)) { - profile = cancerStudyStableId + "_" + profile; - } - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId(profile); - if (geneticProfile != null) { - geneticProfileIds.add(geneticProfile.getGeneticProfileId()); - } - else { - throw new RuntimeException("Cannot find genetic profile " + profile + " in the database."); - } - } - return geneticProfileIds; - } - - - public void setFile(File genePanelProfileMapFile) - { - this.genePanelProfileMapFile = genePanelProfileMapFile; - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportGenePanelProfileMap(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportGenePanelProfileMap(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenericAssayEntity.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenericAssayEntity.java deleted file mode 100644 index 2da0ebd2cce..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenericAssayEntity.java +++ /dev/null @@ -1,283 +0,0 @@ -/* -* Copyright (c) 2019 The Hyve B.Vs. -* -* This library is distributed in the hope that it will be useful, but WITHOUT -* ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS -* FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder -* is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no -* obligations to provide maintenance, support, updates, enhancements or -* modifications. In no event shall Memorial Sloan-Kettering Cancer Center be -* liable to any party for direct, indirect, special, incidental or -* consequential damages, including lost profits, arising out of the use of this -* software and its documentation, even if Memorial Sloan-Kettering Cancer -* Center has been advised of the possibility of such damage. -*/ - -/* -* This file is part of cBioPortal. -* -* cBioPortal is free software: you can redistribute it and/or modify -* it under the terms of the GNU Affero General Public License as -* published by the Free Software Foundation, either version 3 of the -* License. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Affero General Public License for more details. -* -* You should have received a copy of the GNU Affero General Public License -* along with this program. If not, see . -*/ - -/** -* @author Pim van Nierop, pim@thehyve.nl -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileReader; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import org.cbioportal.model.EntityType; -import org.cbioportal.model.GenericEntityProperty; -import org.cbioportal.model.GeneticEntity; -import org.mskcc.cbio.portal.dao.DaoGenericAssay; -import org.mskcc.cbio.portal.dao.DaoGeneticEntity; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import joptsimple.OptionParser; -import joptsimple.OptionSet; -import joptsimple.OptionSpec; - -/** -* Note; Imports genetic entities from generic assay files. Has been written for treatment response data -* but is intended to be used for generic assay data in the future. The importer adds data to the treatment -* table. In later rounds of implementation of generic assay types this table should be renamed to fi. -* `assay`. Also all remaining references to 'treatment(s)' should be removed from the importer code. -* -* @author Pim van Nierop, pim@thehyve.nl -*/ -public class ImportGenericAssayEntity extends ConsoleRunnable { - - public ImportGenericAssayEntity(String[] args) { - super(args); - } - - public ImportGenericAssayEntity(File dataFile, EntityType entityType, String additionalProperties, boolean updateInfo) { - // fake the console arguments required by the ConsoleRunnable class - super( new String[]{"--data", dataFile.getAbsolutePath(), "--entity-type", entityType.name(), "--additional-properties", additionalProperties, "--update-info", updateInfo?"1":"0"}); - } - - @Override - public void run() { - try { - String progName = "ImportGenericAssay"; - String description = "Import generic assay records from generic assay response files."; - - OptionParser parser = new OptionParser(); - OptionSpec data = parser.accepts("data", "Generic assay data file") - .withRequiredArg().ofType(String.class); - - // require entity type - OptionSpec entityType = parser.accepts("entity-type", "Entity type") - .withRequiredArg().ofType(String.class); - - // don't require additional properties - OptionSpec additionalProperties = parser.accepts("additional-properties", "Additional properties need to be imported") - .withOptionalArg().ofType(String.class); - - // don't require updateInfo, default as true - OptionSpec updateInfoArg = parser.accepts("update-info", "Update information for existing entities in the database") - .withOptionalArg().ofType(String.class); - - OptionSet options = null; - try { - options = parser.parse(args); - } - catch (Exception ex) { - throw new UsageException( - progName, description, parser, - ex.getMessage()); - } - - // if neither option was set then throw UsageException - if (!options.has(data)) { - throw new UsageException( - progName, description, parser, - "'data' argument required"); - } - - // if no entity type then throw UsageException - if (!options.has(entityType)) { - throw new UsageException( - progName, description, parser, - "'entityType' argument required"); - } - - // Check options, set default as false - boolean updateInfo = false; - if (options.has("update-info") && (options.valueOf(updateInfoArg).equalsIgnoreCase("true") || options.valueOf(updateInfoArg).equals("1"))) { - updateInfo = true; - } - - ProgressMonitor.setCurrentMessage("Adding new generic assay to the database\n"); - startImport(options, data, entityType, additionalProperties, updateInfo); - - } catch (RuntimeException e) { - throw e; - } catch (Exception e) { - throw new RuntimeException(e); - } - } - - /** - * Start import process for gene set file and supplementary file. - * - * @param updateInfo - */ - public static void startImport(OptionSet options, OptionSpec data, OptionSpec geneticAlterationType, OptionSpec additionalProperties, boolean updateInfo) throws Exception { - if (options.hasArgument(data) && options.hasArgument(geneticAlterationType)) { - File genericAssayFile = new File(options.valueOf(data)); - GeneticAlterationType geneticAlterationTypeArg = GeneticAlterationType.valueOf(options.valueOf(geneticAlterationType)); - String additionalPropertiesArg = options.valueOf(additionalProperties); - importData(genericAssayFile, geneticAlterationTypeArg, additionalPropertiesArg, updateInfo); - } - } - - /** - * Imports feature columns from generic assay file. - * - * @param dataFile - * @param geneticAlterationType - * @param additionalProperties - * @throws Exception - */ - public static void importData(File dataFile, GeneticAlterationType geneticAlterationType, String additionalProperties, boolean updateInfo) throws Exception { - - ProgressMonitor.setCurrentMessage("Reading data from: " + dataFile.getCanonicalPath()); - - // read generic assay data file - FileReader reader = new FileReader(dataFile); - BufferedReader buf = new BufferedReader(reader); - String currentLine = buf.readLine(); - String[] headerNames = currentLine.split("\t"); - - // read generic assay data - int indexStableIdField = getStableIdIndex(headerNames); - - // entities have been overriden - List updatedEntities = new ArrayList<>(); - List notUpdatedEntities = new ArrayList<>(); - List newEntities = new ArrayList<>(); - - // list of generic entity properties to be updated - List updateProperties = new ArrayList<>(); - - // load entities map from database - Map genericAssayStableIdToEntityIdMap = GenericAssayMetaUtils.buildGenericAssayStableIdToEntityIdMap(); - - currentLine = buf.readLine(); - - while (currentLine != null) { - - String[] parts = currentLine.split("\t"); - - // get stableId and try to find related Entity ID from genericAssayStableIdToEntityIdMap - String stableId = parts[indexStableIdField]; - Integer entityId = genericAssayStableIdToEntityIdMap.getOrDefault(stableId, null); - - // generic assay meta are always updated to based on the current import; - // also when present in db a new record is created. - - // extract fields; replace optional fields with the Stable ID when not set - HashMap propertiesMap = new HashMap<>(); - if (additionalProperties != null) { - String[] columnNameList = additionalProperties.trim().split(","); - for (String columnName : columnNameList) { - int indexAdditionalField = getColIndexByName(headerNames, columnName); - if (indexAdditionalField != -1) { - propertiesMap.put(columnName, parts[indexAdditionalField]); - } - } - } - - // log for the existing entities - if (entityId != null) { - if (updateInfo) { - updatedEntities.add(stableId); - DaoGenericAssay.deleteGenericEntityPropertiesByEntityId(entityId); - propertiesMap.forEach((k, v) -> { - updateProperties.add(new GenericEntityProperty(k, v, entityId)); - }); - } else { - notUpdatedEntities.add(stableId); - } - } - // create a new generic assay meta and add to the database - else { - newEntities.add(stableId); - GeneticEntity newGeneticEntity = new GeneticEntity(geneticAlterationType.name(), stableId); - GeneticEntity createdGeneticEntity = DaoGeneticEntity.addNewGeneticEntity(newGeneticEntity); - propertiesMap.forEach((k, v) -> { - updateProperties.add(new GenericEntityProperty(k, v, createdGeneticEntity.getId())); - }); - } - - currentLine = buf.readLine(); - } - - // Add new properties - if (updateProperties.size() > 0) { - DaoGenericAssay.setGenericEntityPropertiesUsingBatch(updateProperties); - } - - // show import result message - if (updatedEntities.size() > 0) { - ProgressMonitor.setCurrentMessage("--> Entities updated: " + updatedEntities.size() + " generic entities existing in the database that were overridden during import."); - } - if (notUpdatedEntities.size() > 0) { - ProgressMonitor.setCurrentMessage("--> Entities not updated: " + notUpdatedEntities.size() + " generic entities existing in the database that were not overridden during import."); - } - if (newEntities.size() > 0) { - ProgressMonitor.setCurrentMessage("--> New Entities: " + newEntities.size() + " generic entities have been imported into database during import."); - } - - reader.close(); - - ProgressMonitor.setCurrentMessage("Finished loading generic assay.\n"); - - return; - } - - // returns index for ENTITY_STABLE_ID column - private static int getStableIdIndex(String[] headers) { - return getColIndexByName(headers, "ENTITY_STABLE_ID"); - } - - // helper function for finding the index of a column by name - private static int getColIndexByName(String[] headers, String colName) { - for (int i=0; i - * --update-info [0:1] - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportGenericAssayEntity(args); - runner.runInConsole(); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenericAssayPatientLevelData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenericAssayPatientLevelData.java deleted file mode 100644 index a7dda2ca679..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenericAssayPatientLevelData.java +++ /dev/null @@ -1,307 +0,0 @@ -/* - * Copyright (c) 2021 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.*; -import java.util.*; -import java.util.stream.*; - -import org.cbioportal.model.EntityType; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; - -public class ImportGenericAssayPatientLevelData { - private HashSet importedGeneticEntitySet = new HashSet<>(); - private File dataFile; - private String targetLine; - private int geneticProfileId; - private GeneticProfile geneticProfile; - private int entriesSkipped = 0; - private String genePanel; - private String genericEntityProperties; - - private static final String ENTITY_STABLE_ID_COLUMN_NAME = "ENTITY_STABLE_ID"; - - /** - * Constructor. - * - * @param dataFile Generic Assay Patient Level data file - * @param targetLine The line we want to import. - * If null, all lines are imported. - * @param geneticProfileId GeneticProfile ID. - * @param genePanel GenePanel - * @param genericEntityProperties Generic Assay Entities. - * - * @deprecated : TODO shall we deprecate this feature (i.e. the targetLine)? - */ - public ImportGenericAssayPatientLevelData(File dataFile, String targetLine, int geneticProfileId, String genePanel, String genericEntityProperties) { - this.dataFile = dataFile; - this.targetLine = targetLine; - this.geneticProfileId = geneticProfileId; - this.genePanel = genePanel; - this.genericEntityProperties = genericEntityProperties; - } - - /** - * Import the patient level Generic Assay data - * - * @throws IOException IO Error. - * @throws DaoException Database Error. - */ - public void importData(int numLines) throws IOException, DaoException { - - geneticProfile = DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - - FileReader reader = new FileReader(dataFile); - BufferedReader buf = new BufferedReader(reader); - String headerLine = buf.readLine(); - String parts[] = headerLine.split("\t"); - - int numRecordsToAdd = 0; - int patientsSkipped = 0; - try { - int patientStartIndex = getPatientIdStartColumnIndex(parts); - int genericAssayIdIndex = getGenericAssayIdIndex(parts); - if (genericAssayIdIndex == -1) { - throw new RuntimeException("Error: the following column should be present for this type of data: " + ENTITY_STABLE_ID_COLUMN_NAME); - } - - String patientIds[]; - patientIds = new String[parts.length - patientStartIndex]; - System.arraycopy(parts, patientStartIndex, patientIds, 0, parts.length - patientStartIndex); - - ProgressMonitor.setCurrentMessage(" --> total number of patients: " + patientIds.length); - - // link Samples associated with patients to the genetic profile - // 1. find samples associated with each patient - // 2. link samples to the genetic profile - ArrayList orderedSampleList = new ArrayList(); - int[][] numSamplesInPatient = new int[patientIds.length][1]; - int sampleCount = 0; - for (int i = 0; i < patientIds.length; i++) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(geneticProfile.getCancerStudyId(), patientIds[i]); - if (patient == null) { - throw new RuntimeException("Unknown patient id '" + StableIdUtil.getPatientId(patientIds[i]) + "' found in tab-delimited file: " + this.dataFile.getCanonicalPath()); - } else { - List samples = DaoSample.getSamplesByPatientId(patient.getInternalId()); - List sampleInternalIds = samples.stream().map(sample -> sample.getInternalId()).collect(Collectors.toList()); - for (int j = 0; j < sampleInternalIds.size(); j++) { - if (!DaoSampleProfile.sampleExistsInGeneticProfile(sampleInternalIds.get(j), geneticProfileId)) { - Integer genePanelID = (genePanel == null) ? null : GeneticProfileUtil.getGenePanelId(genePanel); - DaoSampleProfile.addSampleProfile(sampleInternalIds.get(j), geneticProfileId, genePanelID); - } - orderedSampleList.add(sampleInternalIds.get(j)); - } - numSamplesInPatient[i][0] = samples.size(); - sampleCount += samples.size(); - } - } - - ProgressMonitor.setCurrentMessage(" --> total number of data lines: " + (numLines-1)); - - DaoGeneticProfileSamples.addGeneticProfileSamples(geneticProfileId, orderedSampleList); - - //Object to insert records in the generic 'genetic_alteration' table: - DaoGeneticAlteration daoGeneticAlteration = DaoGeneticAlteration.getInstance(); - - // load entities map from database - Map genericAssayStableIdToEntityIdMap = GenericAssayMetaUtils.buildGenericAssayStableIdToEntityIdMap(); - - String line = buf.readLine(); - while (line != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - boolean recordAdded = false; - - recordAdded = parseGenericAssayLine(line, parts.length, patientStartIndex, genericAssayIdIndex, numSamplesInPatient, sampleCount, daoGeneticAlteration, genericAssayStableIdToEntityIdMap); - - // increment number of records added or entries skipped - if (recordAdded) { - numRecordsToAdd++; - } - else { - entriesSkipped++; - } - - line = buf.readLine(); - } - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - } - - if (entriesSkipped > 0) { - ProgressMonitor.setCurrentMessage(" --> total number of data entries skipped (see table below): " + entriesSkipped); - } - - if (numRecordsToAdd == 0) { - throw new DaoException ("Something has gone wrong! I did not save any records" + - " to the database!"); - } - } - finally { - buf.close(); - } - } - - /** - * Parses line for generic assay profile record and stores record in 'genetic_alteration' table. - * @param line row from the separated-text that contains one or more values on a single patient - * @param nrColumns - * @param patientStartIndex index of the first patient column - * @param genericAssayIdIndex index of the column that uniquely identifies a patient - * @param daoGeneticAlteration - * @return - * @throws DaoException - */ - - private boolean parseGenericAssayLine(String line, int nrColumns, int patientStartIndex, int genericAssayIdIndex, int[][] numSamplesInPatient, int sampleCount, DaoGeneticAlteration daoGeneticAlteration, Map genericAssayStableIdToEntityIdMap) throws DaoException { - - boolean recordIsStored = false; - - if (!line.startsWith("#") && line.trim().length() > 0) { - String[] parts = line.split("\t", -1); - - if (parts.length > nrColumns) { - if (line.split("\t").length > nrColumns) { - ProgressMonitor.logWarning("Ignoring line with more fields (" + parts.length - + ") than specified in the headers(" + nrColumns + "): \n"+parts[0]); - return false; - } - } - - String[] values = new String[sampleCount]; - int maxColumns = parts.length>nrColumns?nrColumns:parts.length; - int currentIndex = 0; - for (int i = patientStartIndex; i < maxColumns; i++) { - int patientIndex = i - patientStartIndex; - if (patientIndex < numSamplesInPatient.length) { - for (int j = 0; j < numSamplesInPatient[patientIndex][0]; j++) { - values[currentIndex] = parts[i]; - currentIndex++; - } - } - } - - // trim whitespace from values - values = Stream.of(values).map(String::trim).toArray(String[]::new); - - String stableId = parts[genericAssayIdIndex]; - Integer entityId = genericAssayStableIdToEntityIdMap.getOrDefault(stableId, null); - - if (entityId == null) { - ProgressMonitor.logWarning("Generic Assay entity " + parts[genericAssayIdIndex] + " not found in DB. Record will be skipped."); - } else { - recordIsStored = storeGeneticEntityGeneticAlterations(values, daoGeneticAlteration, entityId, stableId); - } - - return recordIsStored; - } - - return recordIsStored; - } - - /** - * Stores genetic alteration data for a genetic entity. - * @param values - * @param daoGeneticAlteration - * @param geneticEntityId - internal id for genetic entity - * @param geneticEntityName - entity name for Generic Assay - * @return boolean indicating if record was stored successfully or not - */ - private boolean storeGeneticEntityGeneticAlterations(String[] values, DaoGeneticAlteration daoGeneticAlteration, - Integer geneticEntityId, String geneticEntityName) { - try { - if (importedGeneticEntitySet.add(geneticEntityId)) { - daoGeneticAlteration.addGeneticAlterationsForGeneticEntity(geneticProfile.getGeneticProfileId(), geneticEntityId, values); - return true; - } - else { - ProgressMonitor.logWarning("Data for genetic entity " + geneticEntityName - + " [" + EntityType.GENERIC_ASSAY +"] already imported from file. Record will be skipped."); - return false; - } - } - catch (Exception ex) { - throw new RuntimeException("Aborted: Error found for row starting with " + geneticEntityName + ": " + ex.getMessage()); - } - } - - private int getGenericAssayIdIndex(String[] headers) { - return getColIndexByName(headers, ENTITY_STABLE_ID_COLUMN_NAME); - } - - // helper function for finding the index of a column by name - private int getColIndexByName(String[] headers, String colName) { - for (int i=0; i featureColNames = new ArrayList(); - featureColNames.add(ENTITY_STABLE_ID_COLUMN_NAME); - - // add genericEntityProperties as feature colums - if (genericEntityProperties != null && genericEntityProperties.trim().length() != 0) { - String[] propertyNames = genericEntityProperties.trim().split(","); - featureColNames.addAll(Arrays.asList(propertyNames)); - } - - int startIndex = -1; - - for (int i=0; i e.equalsIgnoreCase(h)) - && i > startFeatureCol) { - //then we consider this the start of the patient columns: - startIndex = i; - break; - } - } - if (startIndex == -1) - throw new RuntimeException("Could not find a patient column in the file"); - - return startIndex; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenesetData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenesetData.java deleted file mode 100644 index f912fa7793d..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenesetData.java +++ /dev/null @@ -1,325 +0,0 @@ -/* - * Copyright (c) 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/** - * @author ochoaa - * @author Sander Tan - */ - -package org.mskcc.cbio.portal.scripts; - -import java.io.*; -import java.util.*; -import joptsimple.*; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.Geneset; -import org.mskcc.cbio.portal.util.ProgressMonitor; - - -public class ImportGenesetData extends ConsoleRunnable { - - public static int skippedGenes; - - @Override - public void run() { - try { - String progName = "ImportGenesetData"; - String description = "Import gene set data files."; - // usage: --data --supp - // optional: --new-version - // --update-info - - OptionParser parser = new OptionParser(); - OptionSpec data = parser.accepts("data", "Geneset data file") - .withRequiredArg().ofType(String.class); - OptionSpec supp = parser.accepts("supp", "Option gene set supplemental data file") - .withRequiredArg().ofType(String.class); - OptionSpec newVersionArgument = parser.accepts("new-version", "New version of gene sets. This will REMOVE GSVA data and hierarchy.") - .withRequiredArg().ofType(String.class); - parser.accepts("update-info", "Only update the info of gene sets (Ref Link, name, description)"); - - // For testing purposes, we don't want the prompt, so make extra argument. - parser.accepts("confirm-delete-all-genesets-hierarchy-genesetprofiles", "This will avoid the command prompt being shown."); - - OptionSet options = null; - try { - options = parser.parse(args); - } - catch (Exception ex) { - throw new UsageException( - progName, description, parser, - ex.getMessage()); - } - - // if neither option was set then throw UsageException - if (!options.has(data) && !options.has(supp)) { - throw new UsageException( - progName, description, parser, - "'data' and/or 'supp' argument required"); - } - - // Check options - boolean updateInfo = options.has("update-info"); - boolean newVersion = options.has("new-version"); - boolean confirmEmptyGenesets = options.has("confirm-delete-all-genesets-hierarchy-genesetprofiles"); - - // Check current version - String databaseGenesetVersion = DaoInfo.getGenesetVersion(); - - // Check new version - String newGenesetVersion = options.valueOf(newVersionArgument); - - // Required to specify if we update info or add new version - if ((!updateInfo && !newVersion) || (updateInfo && newVersion)) { - throw new UsageException( - progName, description, parser, - "Please specify 1 of 2 options:\n" + - "--update-info Only update gene info (Ref Link, name, description). Genes will not be updated.\n" + - "--new-version Import new gene set version. This will REMOVE all previous loaded gene sets, gene set genetic profiles and gene set hierarchy.\n"); - - // In case of updating info only - } else if (updateInfo) { - - // Check if there is something in the database before updating - if (databaseGenesetVersion == null) { - throw new UsageException( - progName, description, parser, - "Attempted to update gene sets, but gene set tables are empty. You can import with --new-version "); - } - - ProgressMonitor.setCurrentMessage("Updating gene set information.\n"); - - // Only update info - startImport(options, data, supp, updateInfo, newVersion); - - // In case of new version - } else { - - // Check if gene set tables are empty. In that case, it's not necessary to ask user to remove previous data. - if (databaseGenesetVersion == null) { - ProgressMonitor.setCurrentMessage("New version of gene sets specified. Loading to empty database."); - DaoGeneset.deleteAllRecords(); - - ProgressMonitor.setCurrentMessage("Adding new gene sets.\n"); - startImport(options, data, supp, updateInfo, newVersion); - DaoInfo.setGenesetVersion(newGenesetVersion); - - } else { - // If automatic confirm is not set, prompt the user with question to confirm. - if (!confirmEmptyGenesets) { - ProgressMonitor.setCurrentMessage("Are you sure you want to remove all previous gene sets, gene set hierarchy and gene set genetic profiles?"); - ProgressMonitor.setCurrentMessage("Type `yes` to continue or anything else to abort."); - - try (Scanner scanner = new Scanner(System.in)) { - - String confirmEmptyingGenesets = scanner.next().toLowerCase(); - if (confirmEmptyingGenesets.equals("yes")) { - confirmEmptyGenesets = true; - } else { - ProgressMonitor.setCurrentMessage("Replacing existing gene sets not confirmed; aborting."); - return; - } - } - } else { - ProgressMonitor.setCurrentMessage("Auto confirm to empty gene sets, gene set hierarchy and gene set genetic profiles is set."); - } - - // Empty gene set tables and import new gene sets - ProgressMonitor.setCurrentMessage("New version of gene sets specified.\nRemoving old gene sets, gene set hierarchy and gene set genetic profiles."); - - DaoGeneset.deleteAllRecords(); - ProgressMonitor.setCurrentMessage("Adding new gene sets."); - startImport(options, data, supp, updateInfo, newVersion); - DaoInfo.setGenesetVersion(newGenesetVersion); - } - ProgressMonitor.setCurrentMessage("It is now possible to import gene set hierarchy data and gene set genetic profiles such as GSVA scores."); - } - } catch (RuntimeException e) { - throw e; - } catch (Exception e) { - throw new RuntimeException(e); - } - } - - /** - * Start import process for gene set file and supplementary file. - */ - // TODO Exception should be handled by the callling code. Remove - // handling of exception and replace with `throw` statement. - public static void startImport(OptionSet options, OptionSpec data, OptionSpec supp, boolean updateInfo, boolean newVersion){ - try { - if (options.hasArgument(data)) { - File genesetFile = new File(options.valueOf(data)); - importData(genesetFile, updateInfo, newVersion); - } - if (options.hasArgument(supp)) { - File genesetSuppFile = new File(options.valueOf(supp)); - importSuppGenesetData(genesetSuppFile); - } - } - catch (Exception ex) { - ex.printStackTrace(); - } - - } - - /** - * Imports data from gene set file. - * @param genesetFile - * @param allowUpdates - * @param version - * @throws Exception - */ - public static int importData(File genesetFile, boolean updateInfo, boolean newVersion) throws Exception { - - ProgressMonitor.setCurrentMessage("Reading data from: " + genesetFile.getCanonicalPath()); - - // read gene set data file - note: this file does not contain headers - FileReader reader = new FileReader(genesetFile); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine(); - - - while (line != null) { - String[] parts = line.split("\t"); - - // assumed that gene set id and ref link are the first two columns in file - Geneset geneset = new Geneset(); - geneset.setExternalId(parts[0]); - geneset.setRefLink(parts[1]); - - // by default name and desciption are the same as external id, and can be overriden in importSuppGenesetData: - geneset.setName(geneset.getExternalId()); - geneset.setDescription(geneset.getExternalId()); - - // parse entrez ids for gene set - Set genesetGenes = new HashSet(); - for (int i=2; i 0) { - ProgressMonitor.setCurrentMessage( - "\n" + skippedGenes + " times a gene was not found in local gene table. Possible reasons:\n\n" + - "1. The Entrez gene IDs are relatively new. Consider adding them to database.\n" + - "2. The Entrez gene IDs are deprecated. Consider updating gene sets and recalculating GSVA scores.\n" + - "3. Invalid Entrez gene IDs. Please check .gmt file to verify genes are in Entrez gene ID format.\n\n"); - } - - ProgressMonitor.setCurrentMessage("Finished loading gene sets.\n"); - - return skippedGenes; - } - - /** - * Imports supplemental gene set data from supp file. - * @param suppFile - * @throws Exception - */ - static void importSuppGenesetData(File suppFile) throws Exception { - - ProgressMonitor.setCurrentMessage("Reading data from: " + suppFile.getCanonicalPath()); - - // read supplemental gene set data file - note: this file does not contain headers - FileReader reader = new FileReader(suppFile); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine(); - - while (line != null) { - String[] parts = line.split("\t"); - - // assumed that fields contain: geneset id, name, short name - Geneset geneset = DaoGeneset.getGenesetByExternalId(parts[0]); - - // if gene set does not already exist then alert user and skip record - if (geneset == null) { - ProgressMonitor.logWarning("Could not find gene set " + parts[0] + " in DB. Record will be skipped."); - } - else { - // update name and short name for gene set - geneset.setName(parts[1]); - geneset.setDescription(parts[2]); - - // update gene set record in db without updating gene set genes - DaoGeneset.updateGeneset(geneset, false); - } - - line = buf.readLine(); - } - // close file - reader.close(); - - ProgressMonitor.setCurrentMessage("Finished loading supplementary gene set info.\n"); - } - - public ImportGenesetData(String[] args) { - super(args); - } - - public static void main(String[] args) { - ConsoleRunnable runner = new ImportGenesetData(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenesetHierarchy.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenesetHierarchy.java deleted file mode 100644 index a9a21247052..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGenesetHierarchy.java +++ /dev/null @@ -1,210 +0,0 @@ -/* - * Copyright (c) 2017 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -/* - * @author Sander Tan - */ - -package org.mskcc.cbio.portal.scripts; - -import java.io.*; -import java.util.*; -import joptsimple.*; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.Geneset; -import org.mskcc.cbio.portal.model.GenesetHierarchy; -import org.mskcc.cbio.portal.model.GenesetHierarchyLeaf; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.yaml.snakeyaml.Yaml; - -public class ImportGenesetHierarchy extends ConsoleRunnable { - - @Override - public void run() { - try { - String progName = "ImportGenesetHierarchy"; - String description = "Import gene set hierarchy files in YAML format."; - // usage: --data - - OptionParser parser = new OptionParser(); - OptionSpec data = parser.accepts("data", "Gene set hierarchy data (.yaml)") - .withRequiredArg().ofType(String.class); - - OptionSet options = null; - try { - options = parser.parse(args); - } - catch (Exception ex) { - throw new UsageException( - progName, description, parser, - ex.getMessage()); - } - - // if neither option was set then throw UsageException - if (!options.has(data)) { - throw new UsageException( - progName, description, parser, - "'data' argument required"); - } - - File genesetFile = new File(options.valueOf(data)); - ProgressMonitor.setCurrentMessage("Input file:\n" + genesetFile.getPath() + "\n"); - - // First validate if gene sets in the hierarchy file, are in database. Therefore start an import process - // with validation set to 'true'. This will mock the import process and checks the gene sets. - boolean validate = true; - importData(genesetFile, validate); - - // Check if gene set hierarchy tables are already filled - boolean filledGeneSetHierarchyTables = DaoGenesetHierarchyNode.checkGenesetHierarchy(); - - // If gene set hierarchy tables are already filled, ask if this data can be discarded - if (filledGeneSetHierarchyTables) { - - // Asks if used wants to continue - ProgressMonitor.setCurrentMessage("Previous gene set hierarchy found. Do you want to remove previous hierarchy and continue importing new hierarchy?"); - ProgressMonitor.setCurrentMessage("Type `yes` to continue or anything else to abort."); - - try (Scanner scanner = new Scanner(System.in)) { - - String confirmEmptyingGenesetHierarchy = scanner.next().toLowerCase(); - if (!confirmEmptyingGenesetHierarchy.equals("yes")) { - ProgressMonitor.setCurrentMessage("Replacing the gene set hierarchy not confirmed; aborting."); - return; - } - } - - ProgressMonitor.setCurrentMessage("Emptying `geneset_hierarchy_node` and `geneset_hierarchy_leaf` before filling with new data.\n"); - DaoGenesetHierarchyNode.deleteAllGenesetHierarchyRecords(); - } - - // Start the gene set hierarchy import process - validate = false; - importData(genesetFile, validate); - } catch (RuntimeException e) { - throw e; - } catch (Exception e) { - throw new RuntimeException(e); - } - } - - /** - * Imports data from gene set hierarchy file. - */ - public static void importData(File genesetFile, boolean validate) throws Exception { - - // Load data and parse with snakeyaml - InputStream input = new FileInputStream(genesetFile); - Yaml yaml = new Yaml(); - Map genesetTree = (Map) yaml.load(input); - input.close(); - - // Initiate start nodeId to give to first iteration. - int nodeIds = 0; - - // Parse the tree and import to geneset_hierarchy_node - parseTree(genesetTree, nodeIds, validate); - } - - /** - * Parses data from gene set hierarchy file and saves in database. - * @throws DaoException - */ - private static void parseTree(Map genesetTree, int parentNodeId, boolean validate) throws DaoException { - - // Create set with child nodes - Set childNodes = genesetTree.keySet(); - - // Iterate over the child nodes at this level - for (String childNode: childNodes) { - - // Add leaf for gene sets - if (childNode.equals("Gene sets")) { - - // Iterate over gene sets - for (String genesetName: (List) genesetTree.get("Gene sets")) { - - // Retrieve gene set from database - Geneset geneset = DaoGeneset.getGenesetByExternalId(genesetName); - - // Check if gene set is in database - if (geneset != null) { - - // Only write gene set to database when not validating - if (!validate) { - GenesetHierarchyLeaf genesetHierarchyLeaf = new GenesetHierarchyLeaf(); - genesetHierarchyLeaf.setNodeId(parentNodeId); - genesetHierarchyLeaf.setGenesetId(geneset.getId()); - - // Add leaf to geneset_hierarchy_leaf - ProgressMonitor.setCurrentMessage("Parent ID: " + parentNodeId + ", Gene set ID: " + genesetName); - DaoGenesetHierarchyLeaf.addGenesetHierarchyLeaf(genesetHierarchyLeaf); - } - } else { - throw new RuntimeException("\nGene set `" + genesetName + "` not in `geneset` table in database. Please add it first before adding tree containing it."); - } - } - - // Add nodes for (sub)categories - } else { - - try { - int childNodeId; - if (!validate) { - GenesetHierarchy genesetHierarchy = new GenesetHierarchy(); - genesetHierarchy.setNodeName(childNode); - genesetHierarchy.setParentId(parentNodeId); - - // Add node to geneset_hierarchy_node - DaoGenesetHierarchyNode.addGenesetHierarchy(genesetHierarchy); - - // Get node ID - childNodeId = genesetHierarchy.getNodeId(); - ProgressMonitor.setCurrentMessage("Node ID: " + childNodeId + ", Node name: " + childNode + ", Parent ID: " + parentNodeId); - } else{ - // Initiate childNodeId, necessary to test if GenesetId is present during validation - // , because true childNodeId will not be retrieved since no database connection is made. - childNodeId = 0; - } - - // Go into the node - parseTree((Map) genesetTree.get(childNode), childNodeId, validate); - - } catch (DaoException e) { - throw new DaoException(e); - } - } - } - } - - public ImportGenesetHierarchy(String[] args) { - super(args); - } - - public static void main(String[] args) { - ConsoleRunnable runner = new ImportGenesetHierarchy(args); - runner.runInConsole(); - } -} - diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGisticData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGisticData.java deleted file mode 100644 index e35a9ed6dad..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportGisticData.java +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.*; -import java.util.ArrayList; - -import org.mskcc.cbio.portal.model.Gistic; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.validate.validationException; - -import joptsimple.OptionSet; - - -/** - * Command line utility for importing (amp/del) Gistic data - */ -public class ImportGisticData extends ConsoleRunnable { - - public void run () { - try { - String description = "Import GISTIC data.\n" + - " Note that gistic-data-file.txt must be a massaged file, it does not come straight from the Broad"; - - OptionSet options = ConsoleUtil.parseStandardDataAndStudyOptions(args, description); - String dataFile = (String) options.valueOf("data"); - String studyId = (String) options.valueOf("study"); - - SpringUtil.initDataSource(); - - File gistic_f = new File(dataFile); - int cancerStudyInternalId = ValidationUtils.getInternalStudyId(studyId); - - ProgressMonitor.setCurrentMessage( - "Reading data from: " + gistic_f.getAbsolutePath()); - ProgressMonitor.setCurrentMessage( - "CancerStudyId: " + cancerStudyInternalId); - - int lines = FileUtil.getNumLines(gistic_f); - ProgressMonitor.setCurrentMessage( - " --> total number of lines: " + lines); - ProgressMonitor.setMaxValue(lines); - - GisticReader gisticReader = new GisticReader(); - ArrayList gistics = gisticReader.parse(gistic_f, cancerStudyInternalId); - - if (gistics == null) { - throw new RuntimeException("Error: didn't get any data"); - } - - // add to CGDS database - for (Gistic g : gistics) { - try { - DaoGistic.addGistic(g); - } catch (validationException e) { - // only catching validationException, not DaoException - ProgressMonitor.logWarning("Error: " + e.getMessage() + ". Skipping record."); - } - } - } catch (RuntimeException e) { - throw e; - } catch (IOException|DaoException e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportGisticData(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportGisticData(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportHprd.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportHprd.java deleted file mode 100644 index 1cbe26aaa76..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportHprd.java +++ /dev/null @@ -1,144 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CanonicalGene; - -import java.io.*; - -/** - * Command Line to Import HPRD Interactions. - * - * @author Ethan Cerami. - */ -public class ImportHprd { - private File hprdFile; - - /** - * Constructor. - * - * @param hprdFile SIF File. - */ - public ImportHprd(File hprdFile) { - this.hprdFile = hprdFile; - } - - /** - * Imports the Interaction Data. - * @throws java.io.IOException IO Error. - * @throws org.mskcc.cbio.portal.dao.DaoException Database Error. - */ - public void importData() throws IOException, DaoException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - int numInteractionsSaved = 0; - int numInteractionsNotSaved = 0; - - MySQLbulkLoader.bulkLoadOn(); - FileReader reader = new FileReader(hprdFile); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine(); - while (line != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if (!line.startsWith("#")) { - String parts[] = line.split("\t"); - - String geneAId = parts[0]; - String geneBId = parts[3]; - String interactionType = "INTERACTS_WITH"; - String dataSource = "HPRD"; - String expTypes = parts[6]; - String pmids = parts[7]; - - CanonicalGene geneA = daoGene.getNonAmbiguousGene(geneAId, true); - CanonicalGene geneB = daoGene.getNonAmbiguousGene(geneBId, true); - - // Log genes that we cannot identify. - if (geneA == null) { - ProgressMonitor.logWarning("Cannot identify gene: " + geneAId); - } - if (geneB == null) { - ProgressMonitor.logWarning("Cannot identify gene: " + geneBId); - } - - if (geneA != null && geneB != null) { - numInteractionsSaved++; - } else { - numInteractionsNotSaved++; - } - } - line = buf.readLine(); - } - - // Flush database - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - } - ProgressMonitor.setCurrentMessage("Total number of interactions saved: " + numInteractionsSaved); - ProgressMonitor.setCurrentMessage("Total number of interactions not saved, due to " + - "invalid gene IDs: " + numInteractionsNotSaved); - } - - /** - * Command Line Util. - * @param args Command Line Arguments. - */ - public static void main(String[] args) { - if (args.length < 1) { - System.out.println("command line usage: importHprd.pl "); - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - return; - } - ProgressMonitor.setConsoleModeAndParseShowProgress(args); - SpringUtil.initDataSource(); - - try { - File geneFile = new File(args[0]); - System.out.println("Reading interactions from: " + geneFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(geneFile); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - ImportHprd parser = new ImportHprd(geneFile); - parser.importData(); - } catch (IOException e) { - e.printStackTrace(); - } catch (DaoException e) { - e.printStackTrace(); - } finally { - ConsoleUtil.showWarnings(); - System.err.println("Done."); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportMicroRNAIDs.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportMicroRNAIDs.java deleted file mode 100644 index 929565fee6e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportMicroRNAIDs.java +++ /dev/null @@ -1,120 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.*; -import java.util.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.util.*; - -/** - * Command Line Tool to Import Background Gene Data. - */ -public class ImportMicroRNAIDs { - - public static void importData(File geneFile) throws IOException, DaoException { - MySQLbulkLoader.bulkLoadOff(); - FileReader reader = new FileReader(geneFile); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine(); // skip first line - SpringUtil.initDataSource(); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - List mirnas = new ArrayList(); - - while ((line=buf.readLine()) != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if (!line.startsWith("#")) { - String parts[] = line.split("\t"); - - String geneSymbol = parts[2]; - - Set aliases = new HashSet(); - setAliases(parts[0],aliases); - - if (!parts[0].equalsIgnoreCase(parts[1])) { - setAliases(parts[1],aliases); - } - - CanonicalGene mirna = new CanonicalGene(geneSymbol,aliases); - mirna.setType(CanonicalGene.MIRNA_TYPE); - mirnas.add(mirna); - } - } - - for (CanonicalGene mirna : mirnas) { - daoGene.addGene(mirna); - } - } - - private static void setAliases(String hsa, Set aliases) { - aliases.add(hsa); - if (hsa.startsWith("hsa-")) { - String mir = hsa.substring(4).toUpperCase(); - aliases.add(mir); - aliases.add(getHUGOInNCBIFile(mir)); - } - } - - private static String getHUGOInNCBIFile(String mir) { - StringBuilder sb = new StringBuilder(); - sb.append("MIR"); - if (mir.startsWith("LET")) { - sb.append("LET"); - } - - int ix = mir.indexOf("-"); - sb.append(mir.substring(ix+1)); - return sb.toString(); - } - - public static void main(String[] args) throws Exception { - System.err.println("This script will be called from ImportGeneData"); -// if (args.length == 0) { -// System.out.println("command line usage: importMicroRNAIDs.pl "); -// return; -// } -// ProgressMonitor.setConsoleMode(true); -// -// File geneFile = new File(args[0]); -// System.out.println("Reading data from: " + geneFile.getAbsolutePath()); -// int numLines = FileUtil.getNumLines(geneFile); -// System.out.println(" --> total number of lines: " + numLines); -// ProgressMonitor.setMaxValue(numLines); -// ImportMicroRNAIDs.importData(geneFile); -// ConsoleUtil.showWarnings(); -// System.err.println("Done."); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportMutSigData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportMutSigData.java deleted file mode 100644 index f03f751f27b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportMutSigData.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.util.*; - -import joptsimple.OptionSet; - -import java.io.File; -import java.io.IOException; - -/** - * ImportMutSig is used to import the Broad Institute's MutSig data into our CGDS SQL database. - * Command line users must specify a MutSig file, and properties file containing a CancerID (InternalId) - * - * @author Lennart Bastian, Gideon Dresdner - */ -public class ImportMutSigData extends ConsoleRunnable { - public void run() { - try { - String description = "Import MUTSIG data"; - - OptionSet options = ConsoleUtil.parseStandardDataAndStudyOptions(args, description); - String dataFile = (String) options.valueOf("data"); - String studyId = (String) options.valueOf("study"); - SpringUtil.initDataSource(); - - File mutSigFile = new File(dataFile); - ProgressMonitor.setCurrentMessage( - "Reading data from: " + mutSigFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(mutSigFile); - ProgressMonitor.setCurrentMessage( - " --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - - int internalId = ValidationUtils.getInternalStudyId(studyId); - MutSigReader.loadMutSig(internalId, mutSigFile); - } catch (RuntimeException e) { - throw e; - } catch (IOException|DaoException e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportMutSigData(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportMutSigData(args); - runner.runInConsole(); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportPathwayCommonsExtSif.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportPathwayCommonsExtSif.java deleted file mode 100644 index a17f783b85f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportPathwayCommonsExtSif.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CanonicalGene; - -import java.io.*; - -/** - * Command Line to Import HPRD Interactions. - * - * @author Ethan Cerami. - */ -public class ImportPathwayCommonsExtSif { - private File sifFile; - - /** - * Constructor. - * - * @param sifFile SIF File. - */ - public ImportPathwayCommonsExtSif(File sifFile) { - this.sifFile = sifFile; - } - - /** - * Imports the Interaction Data. - * @throws java.io.IOException IO Error. - * @throws org.mskcc.cbio.portal.dao.DaoException Database Error. - */ - public void importData() throws IOException, DaoException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - int numInteractionsSaved = 0; - int numInteractionsNotSaved = 0; - - MySQLbulkLoader.bulkLoadOn(); - FileReader reader = new FileReader(sifFile); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine(); // skip the first line - while ((line = buf.readLine()) != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - - String parts[] = line.split("\t"); - - if (parts.length<4) { - continue; - } - - String geneAId = parts[0]; - - CanonicalGene geneA = daoGene.getNonAmbiguousGene(geneAId, true); - if (geneA != null) { - String geneBId = parts[2]; - CanonicalGene geneB = daoGene.getNonAmbiguousGene(geneBId, true); - - if (geneB != null) { - String interactionType = parts[1]; - String dataSource = parts[3]; - String pmids = parts.length<=4 ? null : parts[4].replaceAll(";", ","); - String expTypes = null; - numInteractionsNotSaved++; - } else { - numInteractionsNotSaved++; - } - } else { - numInteractionsNotSaved++; - } - } - - // Flush database - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - } - ProgressMonitor.setCurrentMessage("Total number of interactions saved: " + numInteractionsSaved); - ProgressMonitor.setCurrentMessage("Total number of interactions not saved, due to " + - "invalid gene IDs: " + numInteractionsNotSaved); - } - - /** - * Command Line Util. - * @param args Command Line Arguments. - */ - public static void main(String[] args) { - if (args.length < 1) { - System.out.println("command line usage: importHprd.pl "); - return; - } - ProgressMonitor.setConsoleMode(true); - SpringUtil.initDataSource(); - - try { - File sifFile = new File(args[0]); - System.out.println("Reading interactions from: " + sifFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(sifFile); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - ImportPathwayCommonsExtSif parser = new ImportPathwayCommonsExtSif(sifFile); - parser.importData(); - } catch (IOException e) { - e.printStackTrace(); - } catch (DaoException e) { - e.printStackTrace(); - } finally { - ConsoleUtil.showWarnings(); - System.err.println("Done."); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportProfileData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportProfileData.java deleted file mode 100644 index 54ce204e5b9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportProfileData.java +++ /dev/null @@ -1,191 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.*; -import java.util.Set; - -import joptsimple.*; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; - -import static org.cbioportal.model.MolecularProfile.ImportType.DISCRETE_LONG; - -/** - * Import 'profile' files that contain data matrices indexed by gene, case. - * - * @author ECerami - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -public class ImportProfileData extends ConsoleRunnable { - - public void run() { - DaoGeneOptimized daoGene; - DaoGeneticAlteration daoGeneticAlteration; - try { - daoGene = DaoGeneOptimized.getInstance(); - daoGeneticAlteration = DaoGeneticAlteration.getInstance(); - } catch (DaoException e) { - throw new RuntimeException("Could not create dao instances", e); - } - - try { - // Parse arguments - // using a real options parser, helps avoid bugs - String description = "Import 'profile' files that contain data matrices indexed by gene, case"; - OptionSet options = ConsoleUtil.parseStandardDataAndMetaUpdateOptions(args, description, true); - File dataFile = new File((String) options.valueOf("data")); - File descriptorFile = new File((String) options.valueOf( "meta" ) ); - // Check options, set default as false - boolean updateInfo = false; - if (options.has("update-info") && (((String) options.valueOf("update-info")).equalsIgnoreCase("true") || options.valueOf("update-info").equals("1"))) { - updateInfo = true; - } - SpringUtil.initDataSource(); - ProgressMonitor.setCurrentMessage("Reading data from: " + dataFile.getAbsolutePath()); - // Load genetic profile and gene panel - GeneticProfile geneticProfile = null; - String genePanel = null; - try { - geneticProfile = GeneticProfileReader.loadGeneticProfile( descriptorFile ); - genePanel = GeneticProfileReader.loadGenePanelInformation( descriptorFile ); - } catch (java.io.FileNotFoundException e) { - throw new java.io.FileNotFoundException("Descriptor file '" + descriptorFile + "' not found."); - } - - // Print profile report - int numLines = FileUtil.getNumLines(dataFile); - ProgressMonitor.setCurrentMessage( - " --> profile id: " + geneticProfile.getGeneticProfileId() + - "\n --> profile name: " + geneticProfile.getProfileName() + - "\n --> genetic alteration type: " + geneticProfile.getGeneticAlterationType().name()); - ProgressMonitor.setMaxValue(numLines); - - // Check genetic alteration type - if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.MUTATION_EXTENDED || - geneticProfile.getGeneticAlterationType() == GeneticAlterationType.MUTATION_UNCALLED) { - Set filteredMutations = GeneticProfileReader.getVariantClassificationFilter( descriptorFile ); - Set namespaces = GeneticProfileReader.getNamespaces( descriptorFile ); - ImportExtendedMutationData importer = new ImportExtendedMutationData(dataFile, geneticProfile.getGeneticProfileId(), genePanel, filteredMutations, namespaces); - String swissprotIdType = geneticProfile.getOtherMetaDataField("swissprot_identifier"); - if (swissprotIdType != null && swissprotIdType.equals("accession")) { - importer.setSwissprotIsAccession(true); - } else if (swissprotIdType != null && !swissprotIdType.equals("name")) { - throw new RuntimeException( "Unrecognized swissprot_identifier specification, must be 'name' or 'accession'."); - } - importer.importData(); - } else if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.STRUCTURAL_VARIANT) { - Set namespaces = GeneticProfileReader.getNamespaces(descriptorFile); - ImportStructuralVariantData importer = new ImportStructuralVariantData( - dataFile, - geneticProfile.getGeneticProfileId(), - genePanel, - namespaces - ); - importer.importData(); - } else if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.GENERIC_ASSAY) { - // add all missing `genetic_entities` for this assay to the database - ImportGenericAssayEntity.importData(dataFile, geneticProfile.getGeneticAlterationType(), geneticProfile.getOtherMetaDataField("generic_entity_meta_properties"), updateInfo); - // use a different importer for patient level data - String patientLevel = geneticProfile.getOtherMetaDataField("patient_level"); - if (patientLevel != null && patientLevel.trim().toLowerCase().equals("true")) { - ImportGenericAssayPatientLevelData genericAssayProfileImporter = new ImportGenericAssayPatientLevelData(dataFile, geneticProfile.getTargetLine(), geneticProfile.getGeneticProfileId(), genePanel, geneticProfile.getOtherMetaDataField("generic_entity_meta_properties")); - genericAssayProfileImporter.importData(numLines); - } else { - // use ImportTabDelimData importer for non-patient level data - ImportTabDelimData genericAssayProfileImporter = new ImportTabDelimData( - dataFile, - geneticProfile.getTargetLine(), - geneticProfile.getGeneticProfileId(), - genePanel, - geneticProfile.getOtherMetaDataField("generic_entity_meta_properties"), - daoGeneticAlteration - ); - genericAssayProfileImporter.importData(numLines); - } - } else if( - geneticProfile.getGeneticAlterationType() == GeneticAlterationType.COPY_NUMBER_ALTERATION - && DISCRETE_LONG.name().equals(geneticProfile.getDatatype()) - ) { - Set namespaces = GeneticProfileReader.getNamespaces(descriptorFile); - ImportCnaDiscreteLongData importer = new ImportCnaDiscreteLongData( - dataFile, - geneticProfile.getGeneticProfileId(), - genePanel, - daoGene, - daoGeneticAlteration, - namespaces - ); - importer.importData(); - } else { - ImportTabDelimData importer = new ImportTabDelimData( - dataFile, - geneticProfile.getTargetLine(), - geneticProfile.getGeneticProfileId(), - genePanel, - daoGeneticAlteration - ); - String pdAnnotationsFilename = geneticProfile.getOtherMetaDataField("pd_annotations_filename"); - if (pdAnnotationsFilename != null && !"".equals(pdAnnotationsFilename)) { - importer.setPdAnnotationsFile(new File(dataFile.getParent(), pdAnnotationsFilename)); - } - importer.importData(numLines); - } - } - catch (Exception e) { - e.printStackTrace(); - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportProfileData(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportProfileData(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportReferenceGenome.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportReferenceGenome.java deleted file mode 100644 index 1230608a166..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportReferenceGenome.java +++ /dev/null @@ -1,177 +0,0 @@ -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.scripts; - -import org.apache.commons.lang3.StringUtils; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.ReferenceGenome; -import org.mskcc.cbio.portal.util.*; - -import joptsimple.OptionException; -import joptsimple.OptionParser; -import joptsimple.OptionSet; -import joptsimple.OptionSpec; - -import java.io.*; -import java.util.*; -import java.text.SimpleDateFormat; -import java.text.ParseException; - -/** - * Command Line Tool to Import Reference Genome Used by Molecular Profiling. - */ -public class ImportReferenceGenome extends ConsoleRunnable { - - /** - * Adds the genes parsed from the file into the Database. - * @param referenceGenomeFile File with reference genome information - * @throws IOException - * @throws DaoException - */ - public static void importData(File referenceGenomeFile) throws IOException, DaoException, ParseException { - - try (FileReader reader = new FileReader(referenceGenomeFile)) { - BufferedReader buf = new BufferedReader(reader); - String line; - Set referenceGenomes = new HashSet(); - while ((line = buf.readLine()) != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if (line.startsWith("#")) { - continue; - } - String parts[] = line.split("\t"); - String species = parts[0]; - String name = parts[1]; - String buildName = parts[2]; - String genomeSize = parts[3]; - String url = parts[4]; - String releaseDate = parts[5]; - - ReferenceGenome referenceGenome = new ReferenceGenome(name, species, buildName); - if (StringUtils.isNotEmpty(url)) { - referenceGenome.setUrl(url); - } - - if (StringUtils.isNotEmpty(genomeSize)) { - referenceGenome.setGenomeSize(Long.parseLong(genomeSize)); - } - - if (StringUtils.isNotEmpty(releaseDate)) { - SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd"); - referenceGenome.setReleaseDate(sdf.parse(releaseDate)); - - } - referenceGenomes.add(referenceGenome); - } - addReferenceGenomesToDB(referenceGenomes); - } - } - - /** - * Iterate over the genes found in the given maps and try to add them to the DB. - * @param referenceGenomes: reference genomes - * @throws DaoException - */ - private static void addReferenceGenomesToDB(Set referenceGenomes) throws DaoException { - int nrExisting = 0; - for (ReferenceGenome refGenome: referenceGenomes) { - if (DaoReferenceGenome.getReferenceGenomeByInternalId(refGenome.getReferenceGenomeId()) != null) { - ProgressMonitor.logWarning("Reference genome updated"); - try { - DaoReferenceGenome.updateReferenceGenome(refGenome); - } catch (DaoException e) { - ProgressMonitor.logWarning("No change for " + refGenome.getGenomeName()); - } - } else { - ProgressMonitor.logWarning("New reference genome added"); - DaoReferenceGenome.addReferenceGenome(refGenome); - } - } - } - - @Override - public void run() { - try { - SpringUtil.initDataSource(); - - String description = "Update reference_genome table "; - - // using a real options parser, helps avoid bugs - OptionParser parser = new OptionParser(); - OptionSpec help = parser.accepts( "help", "print this help info" ); - parser.accepts( "ref-genome", "reference genome file" ).withRequiredArg().describedAs("reference_genomes.txt").ofType( String.class ); - - String progName = "importReferenceGenomes"; - OptionSet options = null; - try { - options = parser.parse( args ); - } catch (OptionException e) { - throw new UsageException(progName, description, parser, - e.getMessage()); - } - - if( options.has( help ) ){ - throw new UsageException(progName, description, parser); - } - - ProgressMonitor.setConsoleMode(true); - - File referenceGenomeFile; - int numLines; - if(options.has("ref-genome")) { - File referenceFile = new File((String) options.valueOf("ref-genome")); - - System.out.println("Reading reference genome from: " + referenceFile.getAbsolutePath()); - numLines = FileUtil.getNumLines(referenceFile); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - MySQLbulkLoader.bulkLoadOn(); - ImportReferenceGenome.importData(referenceFile); - } - - MySQLbulkLoader.flushAll(); - System.err.println("Done. Restart tomcat to make sure the cache is replaced with the new data."); - - } - catch (RuntimeException e) { - throw e; - } - catch (Exception e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * @param args the command line arguments to be used - */ - public ImportReferenceGenome(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportReferenceGenome(args); - runner.runInConsole(); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportResourceData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportResourceData.java deleted file mode 100644 index d04124baa4a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportResourceData.java +++ /dev/null @@ -1,506 +0,0 @@ -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; - -import java.io.*; -import joptsimple.*; -import java.util.*; -import java.util.regex.*; -import java.util.stream.Collectors; - -import org.apache.commons.collections4.map.MultiKeyMap; -import org.cbioportal.model.ResourceType; - -public class ImportResourceData extends ConsoleRunnable { - - public static final String DELIMITER = "\t"; - public static final String METADATA_PREFIX = "#"; - public static final String SAMPLE_ID_COLUMN_NAME = "SAMPLE_ID"; - public static final String PATIENT_ID_COLUMN_NAME = "PATIENT_ID"; - public static final String RESOURCE_ID_COLUMN_NAME = "RESOURCE_ID"; - public static final String URL_COLUMN_NAME = "URL"; - public static final String SAMPLE_TYPE_COLUMN_NAME = "SAMPLE_TYPE"; - private int numSampleSpecificResourcesAdded = 0; - private int numPatientSpecificResourcesAdded = 0; - private int numStudySpecificResourcesAdded = 0; - private int numEmptyResourcesSkipped = 0; - private int numSamplesProcessed = 0; - - private static Properties properties; - - private File resourceDataFile; - private CancerStudy cancerStudy; - private ResourceType resourceType; - private boolean relaxed; - private Set patientIds = new HashSet(); - - public void setFile(CancerStudy cancerStudy, File resourceDataFile, String resourceType, boolean relaxed) { - this.cancerStudy = cancerStudy; - this.resourceDataFile = resourceDataFile; - this.resourceType = ResourceType.valueOf(resourceType); - this.relaxed = relaxed; - } - - public void importData() throws Exception { - // if bulkLoading is ever turned off, - // code has to be added to check whether - // a resource data update should be - // perform instead of an insert - MySQLbulkLoader.bulkLoadOn(); - - if (relaxed) { - MySQLbulkLoader.relaxedModeOn(); - } - - FileReader reader = new FileReader(resourceDataFile); - BufferedReader buff = new BufferedReader(reader); - List resources = DaoResourceDefinition.getDatumByStudy(cancerStudy.getInternalId()); - String currentLine = buff.readLine(); - String[] headerNames = currentLine.split("\t"); - Map headerIndexMap = makeHeaderIndexMap(headerNames); - - int patientIdIndex = findPatientIdColumn(headerIndexMap); - int sampleIdIndex = findSampleIdColumn(headerIndexMap); - int resourceIdIndex = findResourceIdColumn(headerIndexMap); - int urlIndex = findURLColumn(headerIndexMap); - - // validate required columns: - if (resourceIdIndex < 0) { - throw new RuntimeException("Aborting owing to failure to find " + RESOURCE_ID_COLUMN_NAME - + " in file. Please check your file format and try again."); - } - if (urlIndex < 0) { - throw new RuntimeException("Aborting owing to failure to find " + URL_COLUMN_NAME - + " in file. Please check your file format and try again."); - } - if ((resourceType.equals(ResourceType.SAMPLE) || resourceType.equals(ResourceType.PATIENT)) && patientIdIndex < 0) { - // PATIENT_ID is required in both patient and sample file types: - throw new RuntimeException("Aborting owing to failure to find " + PATIENT_ID_COLUMN_NAME - + " in file. Please check your file format and try again."); - } - if (resourceType.equals(ResourceType.SAMPLE) && sampleIdIndex < 0) { - // SAMPLE_ID is required in SAMPLE file type: - throw new RuntimeException("Aborting owing to failure to find " + SAMPLE_ID_COLUMN_NAME - + " in file. Please check your file format and try again."); - } - importData(buff, resources, headerIndexMap); - buff.close(); - - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - MySQLbulkLoader.relaxedModeOff(); - } - } - - private void importData(BufferedReader buff, List resources, Map headerIndexMap) throws Exception { - String line; - MultiKeyMap resourceMap = new MultiKeyMap(); - // create resource_id set - Set patientResourceIdSet = resources - .stream() - .filter(resource -> resource.getResourceType().equals(ResourceType.PATIENT)) - .map(resource -> resource.getResourceId()) - .collect(Collectors.toSet()); - Set sampleResourceIdSet = resources - .stream() - .filter(resource -> resource.getResourceType().equals(ResourceType.SAMPLE)) - .map(resource -> resource.getResourceId()) - .collect(Collectors.toSet()); - Set studyResourceIdSet = resources - .stream() - .filter(resource -> resource.getResourceType().equals(ResourceType.STUDY)) - .map(resource -> resource.getResourceId()) - .collect(Collectors.toSet()); - - while ((line = buff.readLine()) != null) { - if (skipLine(line.trim())) { - continue; - } - - String[] fieldValues = getFieldValues(line, headerIndexMap); - addDatum(fieldValues, resources, resourceMap, headerIndexMap, patientResourceIdSet, sampleResourceIdSet, studyResourceIdSet); - } - } - - private boolean skipLine(String line) { - return (line.isEmpty() || line.substring(0, 1).equals(METADATA_PREFIX)); - } - - /** - * Takes in the given line and returns the list of field values by splitting the - * line on DELIMITER. - * - * @param line - * @param headerIndexMap - * @return the list of values, one for each column. Value will be "" for empty - * columns. - */ - private String[] getFieldValues(String line, Map headerIndexMap) { - // split on delimiter: - String[] fieldValues = line.split(DELIMITER, -1); - - // validate: if number of fields is incorrect, give exception - if (fieldValues.length != headerIndexMap.size()) { - throw new IllegalArgumentException("Number of columns in line is not as expected. Expected: " - + headerIndexMap.size() + " columns, found: " + fieldValues.length + ", for line: " + line); - } - - // now iterate over lines and trim each value: - for (int i = 0; i < fieldValues.length; i++) { - fieldValues[i] = fieldValues[i].trim(); - } - return fieldValues; - } - - private boolean addDatum(String[] fields, List resources, MultiKeyMap resourceMap, Map headerIndexMap, Set patientResourceIdSet, Set sampleResourceIdSet, Set studyResourceIdSet) - throws Exception { - int sampleIdIndex = findSampleIdColumn(headerIndexMap); - String stableSampleId = (sampleIdIndex >= 0) ? fields[sampleIdIndex] : ""; - stableSampleId = StableIdUtil.getSampleId(stableSampleId); - int patientIdIndex = findPatientIdColumn(headerIndexMap); - String stablePatientId = (patientIdIndex >= 0) ? fields[patientIdIndex] : ""; - stablePatientId = StableIdUtil.getPatientId(stablePatientId); - int resourceIdIndex = findResourceIdColumn(headerIndexMap); - int urlIndex = findURLColumn(headerIndexMap); - int internalSampleId = -1; - int internalPatientId = -1; - - // validate patient and sample for patient and sample attibutes - if (resourceType.equals(ResourceType.PATIENT) || resourceType.equals(ResourceType.SAMPLE)) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudy.getInternalId(), stablePatientId); - if (patient != null) { - // patient exists, get internal id: - internalPatientId = patient.getInternalId(); - } else { - // add patient: if patient do not exist and resource type is sample - internalPatientId = (stablePatientId.length() > 0) ? addPatientToDatabase(stablePatientId) : -1; - } - - if (resourceType.equals(ResourceType.SAMPLE)) { - // check if sample is not already added: - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudy.getInternalId(), stableSampleId, false); - if (sample != null) { - // get internal sample id if sample exists - internalSampleId = sample.getInternalId(); - } else { - // sample is new, so attempt to add to DB - internalSampleId = (stableSampleId.length() > 0) ? addSampleToDatabase(stableSampleId, fields, headerIndexMap, internalPatientId) - : -1; - } - - // validate and count: - if (internalSampleId != -1) { - // some minimal validation/fail safe for now: only continue if patientId is same - // as patient id in - // existing sample (can occur in case of this.isSupplementalData or in case of - // parsing bug in addSampleToDatabase): - if (internalPatientId != DaoSample.getSampleById(internalSampleId).getInternalPatientId()) { - throw new RuntimeException("Error: Sample " + stableSampleId - + " was previously linked to another patient, and not to " + stablePatientId); - } - numSamplesProcessed++; - } - } - } - - // if the resource id or url matches one of the missing values, skip this resource: - if ((resourceIdIndex != -1 && MissingValues.has(fields[resourceIdIndex])) || (urlIndex != -1 && MissingValues.has(fields[urlIndex]))) { - numEmptyResourcesSkipped++; - } else { - // if patient_id column exists and resource type is patient - if (getResourceType() == ResourceType.PATIENT && internalPatientId != -1) { - validateAddDatum(internalPatientId, stablePatientId, fields[resourceIdIndex], fields[urlIndex], - ResourceType.PATIENT, patientResourceIdSet, resourceMap); - } - // if sample_id column exists and resource type is sample - else if (getResourceType() == ResourceType.SAMPLE && internalSampleId != -1) { - validateAddDatum(internalSampleId, stableSampleId, fields[resourceIdIndex], fields[urlIndex], - ResourceType.SAMPLE, sampleResourceIdSet, resourceMap); - } - // if resource type is study - else if (getResourceType() == ResourceType.STUDY) { - validateAddDatum(cancerStudy.getInternalId(), cancerStudy.getCancerStudyStableId(), fields[resourceIdIndex], fields[urlIndex], - ResourceType.STUDY, studyResourceIdSet, resourceMap); - } - } - return true; - } - - private Map makeHeaderIndexMap(String[] headerNames) { - Map headerIndexMap = new HashMap(); - for (int i= 0; i < headerNames.length; i++) { - headerIndexMap.put(headerNames[i], i); - } - return headerIndexMap; - } - - private int findPatientIdColumn(Map headerIndexMap) { - return findColumnIndexInHeaders(PATIENT_ID_COLUMN_NAME, headerIndexMap); - } - - private int findSampleIdColumn(Map headerIndexMap) { - return findColumnIndexInHeaders(SAMPLE_ID_COLUMN_NAME, headerIndexMap); - } - - private int findResourceIdColumn(Map headerIndexMap) { - return findColumnIndexInHeaders(RESOURCE_ID_COLUMN_NAME, headerIndexMap); - } - - private int findURLColumn(Map headerIndexMap) { - return findColumnIndexInHeaders(URL_COLUMN_NAME, headerIndexMap); - } - - private int findSampleTypeColumn(Map headerIndexMap) { - return findColumnIndexInHeaders(SAMPLE_TYPE_COLUMN_NAME, headerIndexMap); - } - - private int findColumnIndexInHeaders(String columnHeader, Map headerIndexMap) { - return headerIndexMap.getOrDefault(columnHeader, -1); - } - - private int addPatientToDatabase(String patientId) throws Exception { - int internalPatientId = -1; - - if (validPatientId(patientId)) { - // in case of PATIENT data import and patient == null : - if (getResourceType() == ResourceType.PATIENT) { - // not finding the patient it unexpected (as SAMPLE data import should always - // precede it), but - // can happen when this patient does not have any samples for example. In any - // case, warn about it: - ProgressMonitor.logWarning("Patient " + patientId - + " being added for the first time. Apparently this patient was not in the samples file, or the samples file is not yet loaded (should be loaded before this one)"); - } - internalPatientId = DaoPatient.addPatient(new Patient(cancerStudy, patientId)); - } - return internalPatientId; - } - - private int addSampleToDatabase(String sampleId, String[] fields, Map headerIndexMap, int internalPatientId) - throws Exception { - int sampleTypeIndex = findSampleTypeColumn(headerIndexMap); - String sampleTypeStr = (sampleTypeIndex != -1) ? fields[sampleTypeIndex] : null; - if (sampleTypeStr != null) { - // want to match Sample.Type enum names - sampleTypeStr = sampleTypeStr.trim().toUpperCase().replaceAll(" ", "_"); - } - Sample.Type sampleType = Sample.Type.has(sampleTypeStr) ? Sample.Type.valueOf(sampleTypeStr) : null; - - int internalSampleId = -1; - if (validSampleId(sampleId) && !StableIdUtil.isNormal(sampleId)) { - // want to try and capture normal sample types based on value for SAMPLE_TYPE - // if present in resource data - if (sampleType != null && sampleType.isNormal()) { - return internalSampleId; - } - sampleId = StableIdUtil.getSampleId(sampleId); - if (internalPatientId != -1) { - internalSampleId = DaoSample.addSample( - new Sample(sampleId, internalPatientId, sampleTypeStr)); - } - } - - return internalSampleId; - } - - private boolean validPatientId(String patientId) { - return (patientId != null && !patientId.isEmpty()); - } - - private boolean validSampleId(String sampleId) { - return (sampleId != null && !sampleId.isEmpty()); - } - - private void validateAddDatum(int internalId, String stableId, String resourceId, String resourceURL, ResourceType resourceType, Set resourceSet, MultiKeyMap resourceMap) throws Exception { - // throw exception if resource definition is not exist in the database - if (!resourceSet.contains(resourceId)) { - throw new RuntimeException("Error: " + resourceType.toString().toLowerCase() + " " + stableId - + " with resource " + resourceId - + " does not have matching resources information in database, please make sure to include resource definition in the resource definition file"); - } - // The resourceMap makes sure a pair of (internalId/resource_id/url) is unique - // added to the DB if there are no duplicates, - if (!resourceMap.containsKey(internalId, resourceId, resourceURL)) { - addDatum(internalId, resourceId, resourceURL,resourceType); - resourceMap.put(internalId, resourceId, resourceURL, resourceURL); - } - // handle duplicates - // if the "relaxed" flag was given, and the new record e.g. tries to ignore a duplicated resources and log a warning - else if (!relaxed) { - throw new RuntimeException("Error: Duplicated " + resourceType.toString().toLowerCase() + " resource in file"); - } - // log a warning - else if (!resourceMap.get(internalId, resourceId, resourceURL).equals(resourceURL)) { - ProgressMonitor.logWarning("Error: Duplicated " + resourceType.toString().toLowerCase() + " " + stableId - + " with different values for " + resourceType.toString().toLowerCase() + " resource " + resourceId - + "\n\tValues: " + resourceId + " " + resourceURL); - } - } - - // add datum for patient, sample and study resources - private void addDatum(int internalId, String resourceId, String resourceURL, ResourceType resourceType) throws Exception { - // if bulk loading is ever turned off, we need to check if - // resource value exists and if so, perfom an update - if (resourceType.equals(ResourceType.PATIENT)) { - numPatientSpecificResourcesAdded++; - DaoResourceData.addPatientDatum(internalId, resourceId, resourceURL); - } else if (resourceType.equals(ResourceType.SAMPLE)) { - numSampleSpecificResourcesAdded++; - DaoResourceData.addSampleDatum(internalId, resourceId, resourceURL); - } else { - numStudySpecificResourcesAdded++; - DaoResourceData.addStudyDatum(internalId, resourceId, resourceURL); - } - } - - public int getNumSampleSpecificResourcesAdded() { - return numSampleSpecificResourcesAdded; - } - - public int getNumPatientSpecificResourcesAdded() { - return numPatientSpecificResourcesAdded; - } - - public int getNumStudySpecificResourcesAdded() { - return numStudySpecificResourcesAdded; - } - - public int getNumEmptyResourcesSkipped() { - return numEmptyResourcesSkipped; - } - - public int getNumSamplesProcessed() { - return numSamplesProcessed; - } - - /** - * The type of resource found in the file. Basically the type of import - * running for this instance. Can be one of ResourceType. - * - * @return - */ - public ResourceType getResourceType() { - return resourceType; - } - - /** - * Imports resource definition and resource data (from the worksheet) - */ - public void run() { - try { - String progName = "importResourceData"; - String description = "Import resource files."; - // usage: --data --meta --loadMode - // [directLoad|bulkLoad (default)] [--noprogress] - - OptionParser parser = new OptionParser(); - OptionSpec data = parser.accepts("data", "profile data file").withRequiredArg() - .describedAs("data_file.txt").ofType(String.class); - OptionSpec meta = parser.accepts("meta", "meta (description) file").withOptionalArg() - .describedAs("meta_file.txt").ofType(String.class); - OptionSpec study = parser.accepts("study", "cancer study id").withOptionalArg().describedAs("study") - .ofType(String.class); - OptionSpec relaxedFlag = parser.accepts("r", - "(not recommended) Flag for relaxed mode, determining how to handle detected data harmonization problems in the same study") - .withOptionalArg().describedAs("r").ofType(String.class); - parser.accepts("loadMode", "direct (per record) or bulk load of data").withOptionalArg() - .describedAs("[directLoad|bulkLoad (default)]").ofType(String.class); - parser.accepts("noprogress", - "this option can be given to avoid the messages regarding memory usage and % complete"); - - OptionSet options = null; - try { - options = parser.parse(args); - } catch (OptionException e) { - throw new UsageException(progName, description, parser, e.getMessage()); - } - File resourceFile = null; - if (options.has(data)) { - resourceFile = new File(options.valueOf(data)); - } else { - throw new UsageException(progName, description, parser, "'data' argument required."); - } - String resourceType = null; - boolean relaxed = false; - String cancerStudyStableId = null; - if (options.has(study)) { - cancerStudyStableId = options.valueOf(study); - } - if (options.has(meta)) { - properties = new TrimmedProperties(); - properties.load(new FileInputStream(options.valueOf(meta))); - resourceType = properties.getProperty("resource_type"); - cancerStudyStableId = properties.getProperty("cancer_study_identifier"); - } - if (options.has(relaxedFlag)) { - relaxed = true; - - } - SpringUtil.initDataSource(); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyStableId); - if (cancerStudy == null) { - throw new IllegalArgumentException("Unknown cancer study: " + cancerStudyStableId); - } - ProgressMonitor.setCurrentMessage("Reading data from: " + resourceFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(resourceFile); - ProgressMonitor.setCurrentMessage(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - - setFile(cancerStudy, resourceFile, resourceType, relaxed); - importData(); - - if (getResourceType() == ResourceType.PATIENT) { - ProgressMonitor.setCurrentMessage("Total number of patient specific resources added: " - + getNumPatientSpecificResourcesAdded()); - } - if (getResourceType() == ResourceType.SAMPLE) { - ProgressMonitor.setCurrentMessage("Total number of sample specific resources added: " - + getNumSampleSpecificResourcesAdded()); - ProgressMonitor.setCurrentMessage("Total number of samples processed: " + getNumSamplesProcessed()); - } - ProgressMonitor.setCurrentMessage("Total number of resource values skipped because of empty value: " - + getNumEmptyResourcesSkipped()); - if (getResourceType() == ResourceType.SAMPLE - && (getNumSampleSpecificResourcesAdded() + getNumSamplesProcessed()) == 0) { - // should not occur: - throw new RuntimeException("No sample resources data was added. " + "Please check your file format and try again."); - } - if (getResourceType() == ResourceType.PATIENT - && getNumPatientSpecificResourcesAdded() == 0) { - // could occur if patient resource file is given with only PATIENT_ID column: - throw new RuntimeException("No patient resources data was added. " - + "Please check your file format and try again. If you only have sample resources data, then a patients file with only PATIENT_ID column is not required."); - } - if (getResourceType() == ResourceType.STUDY - && getNumStudySpecificResourcesAdded() == 0) { - throw new RuntimeException("No study resource data was added. " - + "Please check your file format and try again."); - } - } catch (RuntimeException e) { - throw e; - } catch (Exception e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportResourceData(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportResourceData(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportResourceDefinition.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportResourceDefinition.java deleted file mode 100644 index 5811ee44ae9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportResourceDefinition.java +++ /dev/null @@ -1,338 +0,0 @@ -package org.mskcc.cbio.portal.scripts; - -import org.cbioportal.model.ResourceType; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; - -import java.io.*; -import joptsimple.*; -import java.util.*; - -public class ImportResourceDefinition extends ConsoleRunnable { - - public static final String DELIMITER = "\t"; - public static final String RESOURCE_ID_COLUMN_NAME = "RESOURCE_ID"; - public static final String DISPLAY_NAME_COLUMN_NAME = "DISPLAY_NAME"; - public static final String DESCRIPTION_COLUMN_NAME = "DESCRIPTION"; - public static final String RESOURCE_TYPE_COLUMN_NAME = "RESOURCE_TYPE"; - public static final String OPEN_BY_DEFAULT_COLUMN_NAME = "OPEN_BY_DEFAULT"; - public static final String PRIORITY_COLUMN_NAME = "PRIORITY"; - public static final int MISSING_COLUMN_INDEX = -1; - private int numResourceDefinitionsAdded = 0; - - private static Properties properties; - - private File resourceDataFile; - private CancerStudy cancerStudy; - private boolean relaxed; - - public void setFile(CancerStudy cancerStudy, File resourceDataFile, boolean relaxed) { - this.cancerStudy = cancerStudy; - this.resourceDataFile = resourceDataFile; - this.relaxed = relaxed; - } - - public void importData() throws Exception { - // if bulkLoading is ever turned off, - // code has to be added to check whether - // a resource data update should be - // perform instead of an insert - MySQLbulkLoader.bulkLoadOn(); - - if (relaxed) { - MySQLbulkLoader.relaxedModeOn(); - } - - FileReader reader = new FileReader(resourceDataFile); - BufferedReader buff = new BufferedReader(reader); - - String line = buff.readLine(); - String[] headerNames = splitFields(line); - Map headerIndexMap = makeHeaderIndexMap(headerNames); - - // validate columns and get index - int resourceIdIndex = findAndValidateResourceIdColumn(headerIndexMap); - int displayNameIndex = findAndValidateDisplayNameColumn(headerIndexMap); - int descriptionIndex = findAndValidateDescriptionColumn(headerIndexMap); - int resourceTypeIndex = findAndValidateResourceTypeColumn(headerIndexMap); - int openByDefaultIndex = findAndValidateOpenByDefaultColumn(headerIndexMap); - int priorityIndex = findAndValidatePriorityColumn(headerIndexMap); - - while ((line = buff.readLine()) != null) { - if (skipLine(line.trim())) { - continue; - } - - String[] fieldValues = getFieldValues(line, headerIndexMap); - - // set default value - String resourceId = ""; - String displayName = ""; - String description = ""; - ResourceType resourceType = null; - Boolean openByDefault = false; - int priority = 1; - // get resource definitions from columns - // get resourceId - if (isValueNotMissing(fieldValues[resourceIdIndex].toUpperCase())) { - resourceId = fieldValues[resourceIdIndex].toUpperCase(); - } else { - throw new RuntimeException( - "Please provide a valid resource id"); - } - // get displayName - if (isValueNotMissing(fieldValues[displayNameIndex])) { - displayName = fieldValues[displayNameIndex]; - } - else { - throw new RuntimeException( - "Please provide a valid display name"); - } - // get description (optional) - if (descriptionIndex != MISSING_COLUMN_INDEX && isValueNotMissing(fieldValues[descriptionIndex])) { - description = fieldValues[descriptionIndex]; - } - // get resourceType (must be value of ResourceTypes) - if (isValidResourceType(fieldValues[resourceTypeIndex])) { - resourceType = ResourceType.valueOf(fieldValues[resourceTypeIndex]); - } - // get openByDefault (optional) - if (openByDefaultIndex != MISSING_COLUMN_INDEX && isValidOpenByDefault(fieldValues[openByDefaultIndex])) { - openByDefault = Boolean.parseBoolean(fieldValues[openByDefaultIndex]); - } - // get priority (optional) - if (priorityIndex != MISSING_COLUMN_INDEX) { - try { - priority = Integer.parseInt(fieldValues[priorityIndex]); - } catch (NumberFormatException ex) { - throw new DaoException( - "priority cannot be parsed as an integer, all priority should be an integer."); - } - } - - // add resource definitions into database - ResourceDefinition resource = new ResourceDefinition(resourceId, displayName, - description, resourceType, openByDefault, - priority, cancerStudy.getInternalId()); - - ResourceDefinition resourceInDb = DaoResourceDefinition.getDatum(resource.getResourceId(), - cancerStudy.getInternalId()); - if (resourceInDb != null) { - ProgressMonitor.logWarning("Resource " + resourceInDb.getResourceId() + " found twice in your study!"); - continue; - } - if (DaoResourceDefinition.addDatum(resource) > 0) { - numResourceDefinitionsAdded++; - } - } - buff.close(); - - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - MySQLbulkLoader.relaxedModeOff(); - } - } - - private String[] splitFields(String line) throws IOException { - return line.split(DELIMITER, -1); - } - - private boolean skipLine(String line) { - return line.isEmpty(); - } - - /** - * Takes in the given line and returns the list of field values by splitting the - * line on DELIMITER. - * - * @param line - * @param headerIndexMap - * @return the list of values, one for each column. Value will be "" for empty - * columns. - */ - private String[] getFieldValues(String line, Map headerIndexMap) { - // split on delimiter: - String[] fieldValues = line.split(DELIMITER, -1); - - // validate: if number of fields is incorrect, give exception - if (fieldValues.length != headerIndexMap.size()) { - throw new IllegalArgumentException("Number of columns in line is not as expected. Expected: " - + headerIndexMap.size() + " columns, found: " + fieldValues.length + ", for line: " + line); - } - - // now iterate over lines and trim each value: - for (int i = 0; i < fieldValues.length; i++) { - fieldValues[i] = fieldValues[i].trim(); - } - return fieldValues; - } - - private Boolean isValueNotMissing(String value) { - return !MissingValues.has(value); - } - - private Boolean isValidResourceType(String value) { - try { - ResourceType.valueOf(value); - } catch (IllegalArgumentException ex) { - throw new IllegalArgumentException("Resource_Type should be one of the following : 'SAMPLE', 'PATIENT' or 'STUDY'." - + "found: " + value); - } - return true; - } - - private Boolean isValidOpenByDefault(String value) { - if (value.equalsIgnoreCase("true") || value.equalsIgnoreCase("false")) { - return true; - } - // open by default value not valid, will set as false by default - ProgressMonitor.logWarning("OpenByDefault value is not true or false, set to false by default."); - return false; - } - - private Map makeHeaderIndexMap(String[] headerNames) { - Map headerIndexMap = new HashMap(); - for (int i= 0; i < headerNames.length; i++) { - headerIndexMap.put(headerNames[i], i); - } - return headerIndexMap; - } - - private int findAndValidateResourceIdColumn(Map headerIndexMap) { - return findAndValidateColumnIndexInHeaders(RESOURCE_ID_COLUMN_NAME, headerIndexMap); - } - - private int findAndValidateDisplayNameColumn(Map headerIndexMap) { - return findAndValidateColumnIndexInHeaders(DISPLAY_NAME_COLUMN_NAME, headerIndexMap); - } - - private int findAndValidateDescriptionColumn(Map headerIndexMap) { - return findAndValidateOptionalColumnIndexInHeaders(DESCRIPTION_COLUMN_NAME, headerIndexMap); - } - - private int findAndValidateResourceTypeColumn(Map headerIndexMap) { - return findAndValidateColumnIndexInHeaders(RESOURCE_TYPE_COLUMN_NAME, headerIndexMap); - } - - private int findAndValidateOpenByDefaultColumn(Map headerIndexMap) { - return findAndValidateOptionalColumnIndexInHeaders(OPEN_BY_DEFAULT_COLUMN_NAME, headerIndexMap); - } - - private int findAndValidatePriorityColumn(Map headerIndexMap) { - return findAndValidateOptionalColumnIndexInHeaders(PRIORITY_COLUMN_NAME, headerIndexMap); - } - - private int findAndValidateColumnIndexInHeaders(String columnHeader, Map headerIndexMap) { - if (headerIndexMap.containsKey(columnHeader)) { - return headerIndexMap.get(columnHeader); - } - throw new RuntimeException("Aborting owing to failure to find " + columnHeader + - " in file. Please check your file format and try again."); - } - - private int findAndValidateOptionalColumnIndexInHeaders(String columnHeader, Map headerIndexMap) { - return headerIndexMap.getOrDefault(columnHeader, MISSING_COLUMN_INDEX); - } - - public int getNumResourceDefinitionsAdded() { - return numResourceDefinitionsAdded; - } - - /** - * Imports resource definition data (from the worksheet) - */ - public void run() { - try { - String progName = "importResourceDefinition"; - String description = "Import resource definition file"; - // usage: --data --meta --loadMode - // [directLoad|bulkLoad (default)] [--noprogress] - - OptionParser parser = new OptionParser(); - OptionSpec data = parser.accepts("data", "profile data file").withRequiredArg() - .describedAs("data_file.txt").ofType(String.class); - OptionSpec meta = parser.accepts("meta", "meta (description) file").withOptionalArg() - .describedAs("meta_file.txt").ofType(String.class); - OptionSpec study = parser.accepts("study", "cancer study id").withOptionalArg().describedAs("study") - .ofType(String.class); - OptionSpec relaxedFlag = parser.accepts("r", - "(not recommended) Flag for relaxed mode, determining how to handle detected data harmonization problems in the same study") - .withOptionalArg().describedAs("r").ofType(String.class); - parser.accepts("loadMode", "direct (per record) or bulk load of data").withOptionalArg() - .describedAs("[directLoad|bulkLoad (default)]").ofType(String.class); - parser.accepts("noprogress", - "this option can be given to avoid the messages regarding memory usage and % complete"); - - OptionSet options = null; - try { - options = parser.parse(args); - } catch (OptionException e) { - throw new UsageException(progName, description, parser, e.getMessage()); - } - File resourceFile = null; - if (options.has(data)) { - resourceFile = new File(options.valueOf(data)); - } else { - throw new UsageException(progName, description, parser, "'data' argument required."); - } - boolean relaxed = false; - String cancerStudyStableId = null; - if (options.has(study)) { - cancerStudyStableId = options.valueOf(study); - } - if (options.has(meta)) { - properties = new TrimmedProperties(); - properties.load(new FileInputStream(options.valueOf(meta))); - cancerStudyStableId = properties.getProperty("cancer_study_identifier"); - } - if (options.has(relaxedFlag)) { - relaxed = true; - - } - SpringUtil.initDataSource(); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyStableId); - if (cancerStudy == null) { - throw new IllegalArgumentException("Unknown cancer study: " + cancerStudyStableId); - } - ProgressMonitor.setCurrentMessage("Reading data from: " + resourceFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(resourceFile); - ProgressMonitor.setCurrentMessage(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - - setFile(cancerStudy, resourceFile, relaxed); - importData(); - - // log import information - ProgressMonitor.setCurrentMessage( - "Total number of resource definitions added: " + getNumResourceDefinitionsAdded()); - if (getNumResourceDefinitionsAdded() == 0) { - throw new RuntimeException( - "No resource definition was added. " + "Please check your file format and try again."); - } - } catch (RuntimeException e) { - throw e; - } catch (Exception e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportResourceDefinition(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportResourceDefinition(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportSampleList.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportSampleList.java deleted file mode 100644 index 411de87fe0f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportSampleList.java +++ /dev/null @@ -1,196 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; - -import java.io.*; -import java.util.*; - -/** - * Command Line tool to Import Sample Lists. - */ -public class ImportSampleList extends ConsoleRunnable { - - public static void importSampleList(File dataFile) throws IOException, DaoException { - ProgressMonitor.setCurrentMessage("Read data from: " + dataFile.getAbsolutePath()); - Properties properties = new TrimmedProperties(); - properties.load(new FileInputStream(dataFile)); - - String stableId = properties.getProperty("stable_id"); - - if (stableId.contains(" ")) { - throw new IllegalArgumentException("stable_id cannot contain spaces: " + stableId); - } - - if (stableId == null || stableId.length() == 0) { - throw new IllegalArgumentException("stable_id is not specified."); - } - - String cancerStudyIdentifier = properties.getProperty("cancer_study_identifier"); - if (cancerStudyIdentifier == null) { - throw new IllegalArgumentException("cancer_study_identifier is not specified."); - } - SpringUtil.initDataSource(); - CancerStudy theCancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyIdentifier); - if (theCancerStudy == null) { - throw new IllegalArgumentException("cancer study identified by cancer_study_identifier '" - + cancerStudyIdentifier + "' not found in dbms or inaccessible to user."); - } - - String sampleListName = properties.getProperty("case_list_name"); - - String sampleListCategoryStr = properties.getProperty("case_list_category"); - if (sampleListCategoryStr == null || sampleListCategoryStr.length() == 0) { - sampleListCategoryStr = "other"; - } - SampleListCategory sampleListCategory = SampleListCategory.get(sampleListCategoryStr); - - String sampleListDescription = properties.getProperty("case_list_description"); - String sampleListStr = properties.getProperty("case_list_ids"); - if (sampleListName == null) { - throw new IllegalArgumentException("case_list_name is not specified."); - } else if (sampleListDescription == null) { - throw new IllegalArgumentException("case_list_description is not specified."); - } - - boolean itemsAddedViaPatientLink = false; - // construct sample id list - ArrayList sampleIDsList = new ArrayList(); - String[] sampleIds = sampleListStr.split("\t"); - for (String sampleId : sampleIds) { - sampleId = StableIdUtil.getSampleId(sampleId); - Sample s = DaoSample.getSampleByCancerStudyAndSampleId(theCancerStudy.getInternalId(), sampleId); - if (s==null) { - String warningMessage = "Error: could not find sample "+sampleId; - Patient p = DaoPatient.getPatientByCancerStudyAndPatientId(theCancerStudy.getInternalId(), sampleId); - if (p!=null) { - warningMessage += ". But found a patient with this ID. Will use its samples in the sample list."; - List samples = DaoSample.getSamplesByPatientId(p.getInternalId()); - for (Sample sa : samples) { - if (!sampleIDsList.contains(sa.getStableId())) { - sampleIDsList.add(sa.getStableId()); - itemsAddedViaPatientLink = true; - } - } - } - ProgressMonitor.logWarning(warningMessage); - } else if (!sampleIDsList.contains(s.getStableId())) { - sampleIDsList.add(s.getStableId()); - } else { - ProgressMonitor.logWarning("Warning: duplicated sample ID "+s.getStableId()+" in case list "+stableId); - } - } - - DaoSampleList daoSampleList = new DaoSampleList(); - SampleList sampleList = daoSampleList.getSampleListByStableId(stableId); - if (sampleList != null) { - throw new IllegalArgumentException("Patient list with this stable Id already exists: " + stableId); - } - - sampleList = new SampleList(); - sampleList.setStableId(stableId); - int cancerStudyId = theCancerStudy.getInternalId(); - sampleList.setCancerStudyId(cancerStudyId); - sampleList.setSampleListCategory(sampleListCategory); - sampleList.setName(sampleListName); - sampleList.setDescription(sampleListDescription); - sampleList.setSampleList(sampleIDsList); - daoSampleList.addSampleList(sampleList); - - sampleList = daoSampleList.getSampleListByStableId(stableId); - - ProgressMonitor.setCurrentMessage(" --> stable ID: " + sampleList.getStableId()); - ProgressMonitor.setCurrentMessage(" --> sample list name: " + sampleList.getName()); - ProgressMonitor.setCurrentMessage(" --> number of samples in file: " + sampleIds.length); - String warningSamplesViaPatientLink = (itemsAddedViaPatientLink? "(nb: can be higher if samples were added via patient link)" : ""); - ProgressMonitor.setCurrentMessage(" --> number of samples stored in final sample list " + warningSamplesViaPatientLink + ": " + sampleIDsList.size()); - } - - public void run () { - try { - // check args - if (args.length < 1) { - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - throw new UsageException( - "importCaseListData.pl ", - null, - ""); - } - File dataFile = new File(args[0]); - if (dataFile.isDirectory()) { - File files[] = dataFile.listFiles(); - for (File file : files) { - if (!file.getName().startsWith(".") && !file.getName().endsWith("~")) { - ImportSampleList.importSampleList(file); - } - } - if (files.length == 0) { - ProgressMonitor.logWarning("No patient lists found in directory, skipping import: " + dataFile.getCanonicalPath()); - } - } else { - if (!dataFile.getName().startsWith(".") && !dataFile.getName().endsWith("~")) { - ImportSampleList.importSampleList(dataFile); - } - else { - ProgressMonitor.logWarning("File name starts with '.' or ends with '~', so it was skipped: " + dataFile.getCanonicalPath()); - } - } - } catch (RuntimeException e) { - throw e; - } catch (IOException|DaoException e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportSampleList(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportSampleList(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportSif.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportSif.java deleted file mode 100644 index 75589416dfa..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportSif.java +++ /dev/null @@ -1,174 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CanonicalGene; - -import java.io.*; -import java.util.*; - -/** - * Command Line to Import SIF Interactions. - * - * @author Ethan Cerami. - */ -public class ImportSif { - private File sifFile; - private String dataSource; - - /** - * Constructor. - * - * @param sifFile SIF File. - * @param dataSource data source, e.g. "REACTOME" - */ - public ImportSif(File sifFile, String dataSource) { - this.sifFile = sifFile; - this.dataSource = dataSource; - } - - /** - * Imports the Interaction Data. - * @throws IOException IO Error. - * @throws DaoException Database Error. - */ - public void importData() throws IOException, DaoException { - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - int numInteractionsSaved = 0; - int numInteractionsNotSaved = 0; - int numRedundantInteractionsSkipped = 0; - Set interactionSet = new HashSet(); - - MySQLbulkLoader.bulkLoadOn(); - FileReader reader = new FileReader(sifFile); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine(); - while (line != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if (!line.startsWith("#")) { - String parts[] = line.split("\t"); - - String geneAId = parts[0]; - String interactionType = parts[1]; - String geneBId = parts[2]; - - CanonicalGene geneA = daoGeneOptimized.getNonAmbiguousGene(geneAId, true); - CanonicalGene geneB = daoGeneOptimized.getNonAmbiguousGene(geneBId, true); - - // Log genes that we cannot identify. - if (geneA == null) { - ProgressMonitor.logWarning("Cannot identify gene: " + geneAId); - } - if (geneB == null) { - ProgressMonitor.logWarning("Cannot identify gene: " + geneBId); - } - - if (geneA != null && geneB != null) { - - String key = createKey(geneA, geneB, interactionType); - if (!interactionSet.contains(key)) { - // SIF Interactions do not have experiment details or PMIDs. So, we set to null. - numInteractionsNotSaved++; - interactionSet.add(key); - } else { - numRedundantInteractionsSkipped++; - } - } else { - numInteractionsNotSaved++; - } - - } - line = buf.readLine(); - } - - // Flush database - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - } - ProgressMonitor.setCurrentMessage("Total number of interactions saved: " + numInteractionsSaved); - ProgressMonitor.setCurrentMessage("Total number of interactions not saved, due to " + - "invalid gene IDs: " + numInteractionsNotSaved); - ProgressMonitor.setCurrentMessage("Total number of redundant interactions skipped: " - + numRedundantInteractionsSkipped); - } - - /** - * Creates an Interacton Key. - * @param geneA Gene A. - * @param geneB Gene B. - * @param interactionType Interaction Type. - * @return key. - */ - private String createKey (CanonicalGene geneA, CanonicalGene geneB, - String interactionType) { - long idA = geneA.getEntrezGeneId(); - long idB = geneB.getEntrezGeneId(); - return new String(idA + ":" + interactionType + ":" + idB); - } - - - /** - * Command Line Util. - * @param args Command Line Arguments. - */ - public static void main(String[] args) { - if (args.length < 2) { - System.out.println("command line usage: importSif.pl "); - return; - } - ProgressMonitor.setConsoleMode(true); - - SpringUtil.initDataSource(); - - try { - File geneFile = new File(args[0]); - String dataSource = args[1]; - System.out.println("Reading interactions from: " + geneFile.getAbsolutePath()); - int numLines = FileUtil.getNumLines(geneFile); - System.out.println(" --> total number of lines: " + numLines); - ProgressMonitor.setMaxValue(numLines); - ImportSif parser = new ImportSif(geneFile, dataSource); - parser.importData(); - } catch (IOException e) { - e.printStackTrace(); - } catch (DaoException e) { - e.printStackTrace(); - } finally { - ConsoleUtil.showWarnings(); - System.err.println("Done."); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportStructuralVariantData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportStructuralVariantData.java deleted file mode 100644 index 50ebd329844..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportStructuralVariantData.java +++ /dev/null @@ -1,229 +0,0 @@ -/* - * Copyright (c) 2018 - 2022 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.maf.TabDelimitedFileUtil; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.GeneticProfile; -import org.mskcc.cbio.portal.model.Sample; -import org.mskcc.cbio.portal.model.StructuralVariant; -import org.mskcc.cbio.portal.util.*; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileReader; -import java.io.IOException; -import java.util.ArrayList; -import java.util.HashSet; -import java.util.Set; - -/** - * Imports a structural variant file. - * @author Sander Tan - */ - -public class ImportStructuralVariantData { - - // Initialize variables - private File structuralVariantFile; - private int geneticProfileId; - private String genePanel; - private Set namespaces; - private Set sampleSet = new HashSet<>(); - - public ImportStructuralVariantData( - File structuralVariantFile, - int geneticProfileId, - String genePanel, - Set namespaces - ) throws DaoException { - this.structuralVariantFile = structuralVariantFile; - this.geneticProfileId = geneticProfileId; - this.genePanel = genePanel; - this.namespaces = namespaces; - } - - public void importData() throws IOException, DaoException { - - FileReader reader = new FileReader(this.structuralVariantFile); - BufferedReader buf = new BufferedReader(reader); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - String line = buf.readLine(); - StructuralVariantUtil structuralVariantUtil = new StructuralVariantUtil(line, namespaces); - - int recordCount = 0; - // Genetic profile is read in first - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - ArrayList orderedSampleList = new ArrayList(); - long id = DaoStructuralVariant.getLargestInternalId(); - Set uniqueSVs = new HashSet<>(); - while ((line = buf.readLine()) != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if( !line.startsWith("#") && line.trim().length() > 0) { - recordCount++; - String parts[] = line.split("\t", -1); - StructuralVariant structuralVariant = structuralVariantUtil.parseStructuralVariantRecord(parts); - structuralVariant.setInternalId(++id); - structuralVariant.setGeneticProfileId(geneticProfileId); - if (!structuralVariantUtil.hasRequiredStructuralVariantFields(structuralVariant)) { - ProgressMonitor.logWarning( - "Data requirements not satisfied for SV record #" + recordCount + - " : sampleId was '" + structuralVariant.getSampleId() + "' (required)." + - " And at least one involved gene must be identified by entrez_id or hugo symbol: " + - " site1 geneId : '" + structuralVariant.getSite1EntrezGeneId() + "'" + - " site1 hugoSymbol : '" + structuralVariant.getSite1EntrezGeneId() + "'" + - " site2 geneId : '" + structuralVariant.getSite2EntrezGeneId() + "'" + - " site2 hugoSymbol : '" + structuralVariant.getSite2EntrezGeneId() + "'"); - continue; - } - - // get sample - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId( - geneticProfile.getCancerStudyId(), - StableIdUtil.getSampleId(structuralVariant.getSampleId())); - - // check sample existence - if (sample == null) { - ProgressMonitor.logWarning("Sample not found: " + structuralVariant.getSampleId() + ". Ignoring it."); - } else { - // Set sample internal id - structuralVariant.setSampleIdInternal(sample.getInternalId()); - - // The current structural variant model, the input file always contains 2 genes, so in this implementation both are required. - - // Assume we are dealing with Entrez Gene Ids - String site1HugoSymbol = structuralVariant.getSite1HugoSymbol(); - String site2HugoSymbol = structuralVariant.getSite2HugoSymbol(); - long site1EntrezGeneId = structuralVariant.getSite1EntrezGeneId(); - long site2EntrezGeneId = structuralVariant.getSite2EntrezGeneId(); - - CanonicalGene site1CanonicalGene = setCanonicalGene(site1EntrezGeneId, site1HugoSymbol, daoGene); - CanonicalGene site2CanonicalGene = setCanonicalGene(site2EntrezGeneId, site2HugoSymbol, daoGene); - - // Check for an invalid entrez gene id and make it null (but keep processing record) - if (site1EntrezGeneId != TabDelimitedFileUtil.NA_LONG && site1CanonicalGene == null) { - ProgressMonitor.logWarning("Could not find entrez gene id for gene 1: [" + site1EntrezGeneId - + "]. If we found gene 2, this record will still be loaded but without gene 1."); - site1EntrezGeneId = TabDelimitedFileUtil.NA_LONG; - } - if (site2EntrezGeneId != TabDelimitedFileUtil.NA_LONG && site2CanonicalGene == null) { - ProgressMonitor.logWarning("Could not find entrez gene id for gene 2: [" + site2EntrezGeneId - + "]. If we found gene 1, this record will still be loaded but without gene 2."); - site2EntrezGeneId = TabDelimitedFileUtil.NA_LONG; - } - - // If neither of the genes is recognized, skip the line - if(site1CanonicalGene == null && site2CanonicalGene == null) { - ProgressMonitor.logWarning("Could not find gene 1: " + site1HugoSymbol + " [" + site1EntrezGeneId - + "] or gene 2: " + site2HugoSymbol + " [" - + site2EntrezGeneId + "]. Ignoring it " - + "and all SV data associated with it!"); - // If at least one gene is recognized, continue - } else { - // Save the Entrez Gene Id if it was not saved before - if (site1EntrezGeneId == TabDelimitedFileUtil.NA_LONG || site1EntrezGeneId != site1CanonicalGene.getEntrezGeneId()) { - if (site1CanonicalGene != null) { - structuralVariant.setSite1EntrezGeneId(site1CanonicalGene.getEntrezGeneId()); - } else { - structuralVariant.setSite1EntrezGeneId(null); // we want this to be null in the database, not NA_LONG - } - } - if (site2EntrezGeneId == TabDelimitedFileUtil.NA_LONG || site2EntrezGeneId != site2CanonicalGene.getEntrezGeneId()) { - if (site2CanonicalGene != null) { - structuralVariant.setSite2EntrezGeneId(site2CanonicalGene.getEntrezGeneId()); - } else { - structuralVariant.setSite2EntrezGeneId(null); // we want this to be null in the database, not NA_LONG - } - } - - // check this is unique within the file - String key = getSVKey(structuralVariant); - if (!uniqueSVs.add(key)) { // we have already seen this SV in this file - ProgressMonitor.logWarning("Structural variant with sample id: " + structuralVariant.getSampleId() + ", site 1 Entrez gene id: " - + structuralVariant.getSite1EntrezGeneId() + ", site 1 chromosome: " + structuralVariant.getSite1Chromosome() - + ", site 1 position: " + structuralVariant.getSite1Position() + ", site 1 region number: " - + structuralVariant.getSite1RegionNumber() + ", site 1 Ensembl transcript id: " + structuralVariant.getSite1EnsemblTranscriptId() - + ", site 2 Entrez gene id: " - + structuralVariant.getSite2EntrezGeneId() + ", site 2 chromosome: " + structuralVariant.getSite2Chromosome() - + ", site 2 position: " + structuralVariant.getSite2Position() + ", site 2 region number: " - + structuralVariant.getSite2RegionNumber() + ", site 2 Ensembl transcript id: " + structuralVariant.getSite2EnsemblTranscriptId()); - continue; - } - - // Add structural variant - DaoStructuralVariant.addStructuralVariantToBulkLoader(structuralVariant); - - // Add sample to sample profile list, which is important for gene panels - if (!DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId) && !sampleSet.contains(sample.getStableId())) { - if (genePanel != null) { - DaoSampleProfile.addSampleProfile(sample.getInternalId(), geneticProfileId, GeneticProfileUtil.getGenePanelId(genePanel)); - } else { - DaoSampleProfile.addSampleProfile(sample.getInternalId(), geneticProfileId, null); - } - } - sampleSet.add(sample.getStableId()); - orderedSampleList.add(sample.getInternalId()); - } - } - } - } - DaoGeneticProfileSamples.addGeneticProfileSamples(geneticProfileId, orderedSampleList); - - buf.close(); - MySQLbulkLoader.flushAll(); - } - - private CanonicalGene setCanonicalGene(long siteEntrezGeneId, String siteHugoSymbol, DaoGeneOptimized daoGene) { - CanonicalGene siteCanonicalGene = null; - - // If the Entrez Gene Id is not "NA" set the canonical gene. - if (siteEntrezGeneId != TabDelimitedFileUtil.NA_LONG) { - siteCanonicalGene = daoGene.getGene(siteEntrezGeneId); - } - - // If no gene can be found based on Entrez Gene ID, try Symbol. - if (siteCanonicalGene == null && !TabDelimitedFileUtil.NA_STRING.equals(siteHugoSymbol)) { - siteCanonicalGene = daoGene.getNonAmbiguousGene(siteHugoSymbol, true); - } - - return siteCanonicalGene; - } - - private String getSVKey(StructuralVariant sv) { - StringBuffer sb = new StringBuffer(sv.getSampleId()); - sb.append(sv.getSite1EntrezGeneId()); - sb.append(sv.getSite1Chromosome()); - sb.append(sv.getSite1Position()); - sb.append(sv.getSite1RegionNumber()); - sb.append(sv.getSite1EnsemblTranscriptId()); - sb.append(sv.getSite2EntrezGeneId()); - sb.append(sv.getSite2Chromosome()); - sb.append(sv.getSite2Position()); - sb.append(sv.getSite2RegionNumber()); - sb.append(sv.getSite2EnsemblTranscriptId()); - sb.append(sv.getEventInfo()); - return sb.toString(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportTabDelimData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportTabDelimData.java deleted file mode 100644 index b984abf4388..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportTabDelimData.java +++ /dev/null @@ -1,1020 +0,0 @@ -/* - * Copyright (c) 2015 - 2019 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.scripts; - -import java.io.*; -import java.util.*; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import java.util.stream.IntStream; -import java.util.stream.Stream; - -import org.apache.commons.lang3.ArrayUtils; -import org.cbioportal.model.EntityType; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; - - -/** - * Code to Import Copy Number Alteration, MRNA Expression Data, Methylation, or protein RPPA data - * - * @author Ethan Cerami - */ -public class ImportTabDelimData { - public static final String CNA_VALUE_AMPLIFICATION = "2"; - public static final String CNA_VALUE_GAIN = "1"; - public static final String CNA_VALUE_HEMIZYGOUS_DELETION = "-1"; - public static final String CNA_VALUE_HOMOZYGOUS_DELETION = "-2"; - public static final String CNA_VALUE_PARTIAL_DELETION = "-1.5"; - public static final String CNA_VALUE_ZERO = "0"; - private HashSet importedGeneticEntitySet = new HashSet<>(); - private File dataFile; - private String targetLine; - private int geneticProfileId; - private GeneticProfile geneticProfile; - private int entriesSkipped = 0; - private int nrExtraRecords = 0; - private Set arrayIdSet = new HashSet(); - private String genePanel; - private String genericEntityProperties; - private File pdAnnotationsFile; - private Map, Map> pdAnnotations; - private final GeneticAlterationImporter geneticAlterationImporter; - - /** - * Constructor. - * - * @param dataFile Data File containing Copy Number Alteration, MRNA Expression Data, or protein RPPA data - * @param targetLine The line we want to import. - * If null, all lines are imported. - * @param geneticProfileId GeneticProfile ID. - * @param genePanel GenePanel - * @param genericEntityProperties Generic Assay Entities. - * - * @deprecated : TODO shall we deprecate this feature (i.e. the targetLine)? - */ - public ImportTabDelimData( - File dataFile, - String targetLine, - int geneticProfileId, - String genePanel, - String genericEntityProperties, - DaoGeneticAlteration daoGeneticAlteration - ) { - this.dataFile = dataFile; - this.targetLine = targetLine; - this.geneticProfileId = geneticProfileId; - this.genePanel = genePanel; - this.genericEntityProperties = genericEntityProperties; - this.geneticAlterationImporter = new GeneticAlterationImporter( - geneticProfileId, - daoGeneticAlteration - ); - } - - /** - * Constructor. - * - * @param dataFile Data File containing Copy Number Alteration, MRNA Expression Data, or protein RPPA data - * @param targetLine The line we want to import. - * If null, all lines are imported. - * @param geneticProfileId GeneticProfile ID. - * - * @deprecated : TODO shall we deprecate this feature (i.e. the targetLine)? - */ - public ImportTabDelimData( - File dataFile, - String targetLine, - int geneticProfileId, - String genePanel, - DaoGeneticAlteration daoGeneticAlteration - ) { - this.dataFile = dataFile; - this.targetLine = targetLine; - this.geneticProfileId = geneticProfileId; - this.genePanel = genePanel; - this.geneticAlterationImporter = new GeneticAlterationImporter(geneticProfileId, daoGeneticAlteration); - } - - /** - * Constructor. - * - * @param dataFile Data File containing Copy Number Alteration, MRNA Expression Data, or protein RPPA data - * @param geneticProfileId GeneticProfile ID. - */ - public ImportTabDelimData( - File dataFile, - int geneticProfileId, - String genePanel, - DaoGeneticAlteration daoGeneticAlteration - ) { - this.dataFile = dataFile; - this.geneticProfileId = geneticProfileId; - this.genePanel = genePanel; - this.geneticAlterationImporter = new GeneticAlterationImporter(geneticProfileId, daoGeneticAlteration); - } - - /** - * Import the Copy Number Alteration, mRNA Expression, protein RPPA, GSVA or generic_assay data - * - * @throws IOException IO Error. - * @throws DaoException Database Error. - */ - public void importData(int numLines) throws IOException, DaoException { - - geneticProfile = DaoGeneticProfile.getGeneticProfileById(geneticProfileId); - - FileReader reader = new FileReader(dataFile); - BufferedReader buf = new BufferedReader(reader); - String headerLine = buf.readLine(); - String parts[] = headerLine.split("\t"); - - //Whether data regards CNA or RPPA: - boolean isDiscretizedCnaProfile = geneticProfile != null - && geneticProfile.getGeneticAlterationType() == GeneticAlterationType.COPY_NUMBER_ALTERATION - && geneticProfile.showProfileInAnalysisTab(); - boolean isRppaProfile = geneticProfile != null - && geneticProfile.getGeneticAlterationType() == GeneticAlterationType.PROTEIN_LEVEL - && "Composite.Element.Ref".equalsIgnoreCase(parts[0]); - boolean isGsvaProfile = geneticProfile != null - && geneticProfile.getGeneticAlterationType() == GeneticAlterationType.GENESET_SCORE - && parts[0].equalsIgnoreCase("geneset_id"); - boolean isGenericAssayProfile = geneticProfile != null - && geneticProfile.getGeneticAlterationType() == GeneticAlterationType.GENERIC_ASSAY - && parts[0].equalsIgnoreCase("ENTITY_STABLE_ID"); - - int numRecordsToAdd = 0; - int samplesSkipped = 0; - try { - int hugoSymbolIndex = getHugoSymbolIndex(parts); - int entrezGeneIdIndex = getEntrezGeneIdIndex(parts); - int rppaGeneRefIndex = getRppaGeneRefIndex(parts); - int genesetIdIndex = getGenesetIdIndex(parts); - int sampleStartIndex = getStartIndex(parts, hugoSymbolIndex, entrezGeneIdIndex, rppaGeneRefIndex, genesetIdIndex); - int genericAssayIdIndex = getGenericAssayIdIndex(parts); - if (isRppaProfile) { - if (rppaGeneRefIndex == -1) { - throw new RuntimeException("Error: the following column should be present for RPPA data: Composite.Element.Ref"); - } - } else if (isGsvaProfile) { - if (genesetIdIndex == -1) { - throw new RuntimeException("Error: the following column should be present for gene set score data: geneset_id"); - } - } else if (isGenericAssayProfile) { - if (genericAssayIdIndex == -1) { - throw new RuntimeException("Error: the following column should be present for this type of data: ENTITY_STABLE_ID"); - } - } else if (hugoSymbolIndex == -1 && entrezGeneIdIndex == -1) { - throw new RuntimeException("Error: at least one of the following columns should be present: Hugo_Symbol or Entrez_Gene_Id"); - } - - String sampleIds[]; - sampleIds = new String[parts.length - sampleStartIndex]; - System.arraycopy(parts, sampleStartIndex, sampleIds, 0, parts.length - sampleStartIndex); - - int nrUnknownSamplesAdded = 0; - ProgressMonitor.setCurrentMessage(" --> total number of samples: " + sampleIds.length); - - Map, Map> pdAnnotationsForStableSampleIds = null; - if (this.pdAnnotationsFile != null) { - pdAnnotationsForStableSampleIds = readPdAnnotations(this.pdAnnotationsFile); - } - // link Samples to the genetic profile - ArrayList orderedSampleList = new ArrayList(); - ArrayList filteredSampleIndices = new ArrayList(); - this.pdAnnotations = new HashMap<>(); - for (int i = 0; i < sampleIds.length; i++) { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(geneticProfile.getCancerStudyId(), - StableIdUtil.getSampleId(sampleIds[i])); - // can be null in case of 'normal' sample, throw exception if not 'normal' and sample not found in db - if (sample == null) { - if (StableIdUtil.isNormal(sampleIds[i])) { - filteredSampleIndices.add(i); - samplesSkipped++; - continue; - } - else { - throw new RuntimeException("Unknown sample id '" + StableIdUtil.getSampleId(sampleIds[i]) + "' found in tab-delimited file: " + this.dataFile.getCanonicalPath()); - } - } - if (!DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId)) { - Integer genePanelID = (genePanel == null) ? null : GeneticProfileUtil.getGenePanelId(genePanel); - DaoSampleProfile.addSampleProfile(sample.getInternalId(), geneticProfileId, genePanelID); - } - orderedSampleList.add(sample.getInternalId()); - if (pdAnnotationsForStableSampleIds != null) { - Set> keys = new HashSet<>(pdAnnotationsForStableSampleIds.keySet()); - for (Map.Entry stableSampleIdToGeneKey : keys) { - if (stableSampleIdToGeneKey.getKey().equals(sample.getStableId())) { - Long entrezGeneId = stableSampleIdToGeneKey.getValue(); - Map pdAnnotationsDetails = pdAnnotationsForStableSampleIds.get(stableSampleIdToGeneKey); - this.pdAnnotations.put(new AbstractMap.SimpleEntry<>(sample.getInternalId(), entrezGeneId), pdAnnotationsDetails); - pdAnnotationsForStableSampleIds.remove(stableSampleIdToGeneKey); - } - } - } - } - if (pdAnnotationsForStableSampleIds != null && !pdAnnotationsForStableSampleIds.keySet().isEmpty()) { - ProgressMonitor.logWarning("WARNING: Following pd annotation sample-entrezId pairs newer used in the data file: " + pdAnnotationsForStableSampleIds.keySet()); - } - if (nrUnknownSamplesAdded > 0) { - ProgressMonitor.logWarning("WARNING: Number of samples added on the fly because they were missing in clinical data: " + nrUnknownSamplesAdded); - } - if (samplesSkipped > 0) { - ProgressMonitor.setCurrentMessage(" --> total number of samples skipped (normal samples): " + samplesSkipped); - } - ProgressMonitor.setCurrentMessage(" --> total number of data lines: " + (numLines - 1)); - - DaoGeneticProfileSamples.addGeneticProfileSamples(geneticProfileId, orderedSampleList); - - //Gene cache: - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - //Object to insert records in the generic 'genetic_alteration' table: - DaoGeneticAlteration daoGeneticAlteration = DaoGeneticAlteration.getInstance(); - - //cache for data found in cna_event' table: - Set existingCnaEvents = new HashSet<>(); - if (isDiscretizedCnaProfile) { - existingCnaEvents.addAll(DaoCnaEvent.getAllCnaEvents()); - MySQLbulkLoader.bulkLoadOn(); - } - - // load entities map from database - Map genericAssayStableIdToEntityIdMap = Collections.emptyMap(); - if (isGenericAssayProfile) { - genericAssayStableIdToEntityIdMap = GenericAssayMetaUtils.buildGenericAssayStableIdToEntityIdMap(); - } - - int lenParts = parts.length; - - String line = buf.readLine(); - while (line != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - boolean recordAdded = false; - - // either parse line as geneset or gene for importing into 'genetic_alteration' table - if (isGsvaProfile) { - recordAdded = parseGenesetLine(line, lenParts, sampleStartIndex, genesetIdIndex, - filteredSampleIndices, daoGeneticAlteration); - } else if (isGenericAssayProfile) { - recordAdded = parseGenericAssayLine(line, lenParts, sampleStartIndex, genericAssayIdIndex, - filteredSampleIndices, daoGeneticAlteration, genericAssayStableIdToEntityIdMap); - } else { - recordAdded = parseLine(line, lenParts, sampleStartIndex, - hugoSymbolIndex, entrezGeneIdIndex, rppaGeneRefIndex, - isRppaProfile, isDiscretizedCnaProfile, - daoGene, - filteredSampleIndices, orderedSampleList, - existingCnaEvents); - } - - // increment number of records added or entries skipped - if (recordAdded) { - numRecordsToAdd++; - } - else { - entriesSkipped++; - } - - line = buf.readLine(); - } - if (MySQLbulkLoader.isBulkLoad()) { - MySQLbulkLoader.flushAll(); - } - - if (isRppaProfile) { - ProgressMonitor.setCurrentMessage(" --> total number of extra records added because of multiple genes in one line: " + nrExtraRecords); - } - if (entriesSkipped > 0) { - ProgressMonitor.setCurrentMessage(" --> total number of data entries skipped (see table below): " + entriesSkipped); - } - - if (numRecordsToAdd == 0) { - throw new DaoException("Something has gone wrong! I did not save any records" + - " to the database!"); - } - } - finally { - buf.close(); - } - } - - private Map, Map> readPdAnnotations(File pdAnnotationsFile) { - Map, Map> pdAnnotations = new HashMap<>(); - BufferedReader reader; - try { - reader = new BufferedReader(new FileReader(pdAnnotationsFile)); - List header = Arrays.asList(reader.readLine().toLowerCase().split("\t")); - int sampleIdIndx = header.indexOf("sample_id"); - if (sampleIdIndx < 0) { - throw new RuntimeException("SAMPLE_ID column is not found in " + pdAnnotationsFile.getAbsolutePath()); - } - int entrezGeneIdIndx = header.indexOf("entrez_gene_id"); - if (entrezGeneIdIndx < 0) { - throw new RuntimeException("Entrez_Gene_Id column is not found in " + pdAnnotationsFile.getAbsolutePath()); - } - int driverFilterIndx = header.indexOf("cbp_driver"); - if (driverFilterIndx < 0) { - throw new RuntimeException("cbp_driver column is not found in " + pdAnnotationsFile.getAbsolutePath()); - } - int driverFilterAnnotationIndx = header.indexOf("cbp_driver_annotation"); - if (driverFilterAnnotationIndx < 0) { - throw new RuntimeException("cbp_driver_annotation column is not found in " + pdAnnotationsFile.getAbsolutePath()); - } - int driverTiersFilterIndx = header.indexOf("cbp_driver_tiers"); - if (driverTiersFilterIndx < 0) { - throw new RuntimeException("cbp_driver_tiers column is not found in " + pdAnnotationsFile.getAbsolutePath()); - } - int driverTiersFilterAnnotationIndx = header.indexOf("cbp_driver_tiers_annotation"); - if (driverTiersFilterAnnotationIndx < 0) { - throw new RuntimeException("cbp_driver_tiers_annotation column is not found in " + pdAnnotationsFile.getAbsolutePath()); - } - String line = reader.readLine(); - - while (line != null) { - String[] row = line.split("\t", -1); - if (row.length < 6) { - throw new RuntimeException("Mis-formatted row: " + String.join(", ", row)); - } - String stableSampleId = row[sampleIdIndx]; - Long entrezGeneId = Long.valueOf(row[entrezGeneIdIndx]); - Map.Entry sampleGeneKey = new AbstractMap.SimpleEntry<>(stableSampleId, entrezGeneId); - if (pdAnnotations.containsKey(sampleGeneKey)) { - throw new RuntimeException("There is more then one row with SAMPLE_ID=" + stableSampleId + " and Entrez_Gene_Id=" + entrezGeneId); - } - Map driverInfo = new HashMap<>(); - driverInfo.put("DRIVER_FILTER", row[driverFilterIndx]); - driverInfo.put("DRIVER_FILTER_ANNOTATION", row[driverFilterAnnotationIndx]); - driverInfo.put("DRIVER_TIERS_FILTER", row[driverTiersFilterIndx]); - driverInfo.put("DRIVER_TIERS_FILTER_ANNOTATION", row[driverTiersFilterAnnotationIndx]); - - pdAnnotations.put(sampleGeneKey, driverInfo); - line = reader.readLine(); - } - reader.close(); - } catch (IOException e) { - throw new RuntimeException("Can't read PD annotation file", e); - } - return pdAnnotations; - } - - /** - * Attempt to create a genetic_alteration record based on the current line read from a profile data file. - *

    - *
  1. Commented out lines and blank lines are always skipped (returns false) - *
  2. The line is split into columns by the tab delimiter - *
  3. The involved genes (list of entrez_gene_ids) are determined: - *
      - *
    1. Hugo_Symbol and Entrez_Gene_Id column indices are read and validated - *
    2. if neither are available, the line is skipped - *
    3. if Hugo_Symbol contains '///' or '---', the line is skipped - *
    4. rppaProfile parsing has special rules for determining the involved genes - *
    5. if Entrez_Gene_Id is available, use that to determine the involved genes - *
    6. if Hugo_Symbol is available, use that to determine the involved genes (truncate symbols with '|' in them) - *
    7. if the involved genes list is still empty, the line is skipped (returns false) - *
    - *
  4. Both gene_alias and gene records are examined to see how many genes of type 'miRNA' are matched - *
  5. If any matched record is of type 'miRNA': - *
      - *
    • Loop through each gene or gene_alias of type 'miRNA' and attempt to store the record under that gene in genetic_alteration - *
    • If no records were successfully stored in genetic_alteration, log the failure - *
    - *
  6. If no matched record is of type 'miRNA': - *
  7. if there is exactly 1 involved gene (using only the gene table if sufficient, or gene_alias if neccessary): - *
      - *
    1. if this is a 'discretizedCnaProfile', normalize the CNA values and create a list of cnaEvents to be added - *
    2. attempt to store the record in genetic_alteration - *
    3. if the record is successfully stored (not duplicated), create (or update) records in sample_cna_event for the created list of cnaEvents (if any) - *
    - *
  8. if there are several involved genes and the profile is an rppaProfile, loop through the genes; for each one: - *
      - *
    1. attempt to store the record under that gene in genetic_alteration - *
    2. count the number of successfully imported records (for logging) - *
    - *
      - *
    • after looping through all involved genes, check whether any records were successfully stored in genetic_alteration - if not log the failure - *
    - *
  9. if there are several involved genes and the profile is not an rppaProfile, log a failure to import the current line due to ambiguous gene symbol - *
- *
  • If a record was (or more than one were) successfully stored in genetic_alteration, return true ; else false - * - *

    - * During the import of any single profile data file, at most one record per Entrez_Gene_Id will be successfuly imported to genetic_alteration. - * Each attempt to import is done through a call to the function storeGeneticAlterations(). - * That function will check an instance variable importSetOfGenes, and if the gene has been previously imported, no new attempt is made (failure). - * Each time a gene is successfully imported, it is added to importSetOfGenes. - *

    - * MicroRNA are treated specially because of the possible presence of constructed combination forms (such as 'MIR-100/100*' and 'MIR-100/100'). - * In these cases a Hugo_Symbol such as 'hsa-mir-100' may be expected to match the (fake) Entrez_Gene_Id for both of these combination forms. - * In that case, we want to import several copies of the genetic alteration profile line .. one for each matched gene of type 'miRNA'. - * This allows the visualization of both CNA event profiles for the microRNA precursor with expression profiles for the microRNA mature form. - *

    - * The current implementation of this code does not attempt to "merge" / "unify" lines in the profile data file which have duplicated Entrez_Gene_Id. - * Instead, the first encountered line which maps to the Entrez_Gene_Id will be stored as a record in genetic_alteration (returns true). - * Later lines which attempt to store a record with that Entrez_Gene_Id will not be stored as a record in genetic_alteration (returns false). - * For microRNA gene aliases it is possible that complex interactions will occur, where an earlier line in the data file stores a record under several Entrez_Gene_Ids, and a later line in the file fails to store records under some of those previously 'used' Entrez_Gene_Ids, but succeeds in storing a record under one or more not previously used Entrez_Gene_Ids. So a microRNA line from the file may be imported "partially successfully" (returns true). - *

    - * Examples Cases:
    - * Gene records are P1, P2, P3, P4 (protein coding), M1, M2, M3 (microRNA). - * Gene_Symbol AMA is gene_alias for M1 and M2, Gene_Symbol AMB is gene_alias for M2 and M3, Gene_Symbol AAMBIG is gene_alias for P3 and P4. Gene_Symbol AMIXED is gene_alias for P1 and M3. - *

    - * Case_1 (the last two lines will be skipped and logged like "Gene P1 (#) found to be duplicated in your file. Duplicated row will be ignored!")
    - * - *
    Hugo_SymbolSample1... - *
    P10... - *
    P20... - *
    P10... - *
    P10... - *
    - *

    - * Case_2 (the last line will be skipped and logged like "Gene M1 (#) (given as alias in your file as: AMA) found to be duplicated in your file. Duplicated row will be ignored!" , "Gene M2 (#) (given as alias in your file as: AMA) found to be duplicated in your file. Duplicated row will be ignored!" , "Could not store microRNA or RPPA data" )
    - * - *
    Hugo_SymbolSample1... - *
    AMA0... - *
    AMA0... - *
    - *

    - * Case_3 (the last line in the file will fail with log messages like "Gene symbol AAMBIG found to be ambiguous. Record will be skipped for this gene.")
    - * - *
    Hugo_SymbolSample1... - *
    P10... - *
    P20... - *
    AAMBIG0... - *
    - *

    - * Case_4 (the second to last line will partially succeed, storing a record in genetic_alteration for gene M3 but failing for M2 with a log message like "Gene M2 (#) (given as alias in your file as: AMB) found to be duplicated in your file. Duplicated row will be ignored!" ; the last line in the file will fail with log messages like "Gene M3 (#) (given as alias in your file as: AMIXED) found to be duplicated in your file. Duplicated row will be ignored!" , "Gene symbol AMIXED found to be ambiguous (a mixture of microRNA and other types). Record will be skipped for this gene.")
    - * - *
    Hugo_SymbolSample1... - *
    AMA0... - *
    AMB0... - *
    AMIXED0... - *
    - * - * @param line the line from the profile data file to be parsed - * @param nrColumns the number of columns, defined by the header line - * @param sampleStartIndex the index of the first column with a sample name in the header field - * @param hugoSymbolIndex the index of the column Hugo_Symbol - * @param entrezGeneIdIndex the index of the column Entrez_Gene_Id - * @param rppaGeneRefIndex the index of the column Composite.Element.Ref - * @param isRppaProfile true if this is an rppa profile (i.e. alteration type is PROTEIN_LEVEL and the first column is Composite.Element.Ref) - * @param isDiscretizedCnaProfile true if this is a discretized CNA profile (i.e. alteration type COPY_NUMBER_ALTERATION and showProfileInAnalysisTab is true) - * @param daoGene an instance of DaoGeneOptimized ... for use in resolving gene symbols - * @param orderedSampleList a list of the internal sample ids corresponding to the sample names in the header line - * @param existingCnaEvents a collection of CnaEvents, to be added to or updated during parsing of individual lines - * @return true if any record was stored in genetic_alteration, else false - * @throws DaoException if any DaoException is thrown while using daoGene or daoGeneticAlteration - */ - private boolean parseLine(String line, int nrColumns, int sampleStartIndex, - int hugoSymbolIndex, int entrezGeneIdIndex, int rppaGeneRefIndex, - boolean isRppaProfile, boolean isDiscretizedCnaProfile, - DaoGeneOptimized daoGene, - List filteredSampleIndices, List orderedSampleList, - Set existingCnaEvents - ) throws DaoException { - - //TODO: refactor this entire function - split functionality into smaller units / subroutines - - boolean recordStored = false; - - // Ignore lines starting with # - if (!line.startsWith("#") && line.trim().length() > 0) { - String[] parts = line.split("\t", -1); - - if (parts.length > nrColumns) { - if (line.split("\t").length > nrColumns) { - ProgressMonitor.logWarning("Ignoring line with more fields (" + parts.length - + ") than specified in the headers(" + nrColumns + "): \n" + parts[0]); - return false; - } - } - String values[] = (String[]) ArrayUtils.subarray(parts, sampleStartIndex, parts.length > nrColumns ? nrColumns : parts.length); - values = filterOutNormalValues(filteredSampleIndices, values); - - String geneSymbol = null; - if (hugoSymbolIndex != -1) { - geneSymbol = parts[hugoSymbolIndex]; - } - //RPPA: //TODO - we should split up the RPPA scenario from this code...too many if/else because of this - if (rppaGeneRefIndex != -1) { - geneSymbol = parts[rppaGeneRefIndex]; - } - if (geneSymbol != null && geneSymbol.isEmpty()) { - geneSymbol = null; - } - if (isRppaProfile && geneSymbol == null) { - ProgressMonitor.logWarning("Ignoring line with no Composite.Element.REF value"); - return false; - } - //get entrez - String entrez = null; - if (entrezGeneIdIndex != -1) { - entrez = parts[entrezGeneIdIndex]; - } - if (entrez != null) { - if (entrez.isEmpty()) { - entrez = null; - } - else if (!entrez.matches("[0-9]+")) { - //TODO - would be better to give an exception in some cases, like negative Entrez values - ProgressMonitor.logWarning("Ignoring line with invalid Entrez_Id " + entrez); - return false; - } - } - - //If all are empty, skip line: - if (geneSymbol == null && entrez == null) { - ProgressMonitor.logWarning("Ignoring line with no Hugo_Symbol and no Entrez_Id"); - return false; - } else { - if (geneSymbol != null && (geneSymbol.contains("///") || geneSymbol.contains("---"))) { - // Ignore gene IDs separated by ///. This indicates that - // the line contains information regarding multiple genes, and - // we cannot currently handle this. - // Also, ignore gene IDs that are specified as ---. This indicates - // the line contains information regarding an unknown gene, and - // we cannot currently handle this. - ProgressMonitor.logWarning("Ignoring gene ID: " + geneSymbol); - return false; - } else { - List genes = null; - //If rppa, parse genes from "Composite.Element.REF" column: - if (isRppaProfile) { - genes = parseRPPAGenes(geneSymbol); - if (genes == null) { - //will be null when there is a parse error in this case, so we - //can return here and avoid duplicated messages: - return false; - } - if (genes.isEmpty()) { - String gene = (geneSymbol != null) ? geneSymbol : entrez; - ProgressMonitor.logWarning("Gene not found for: [" + gene - + "]. Ignoring it " - + "and all tab-delimited data associated with it!"); - return false; - } - } else { - //try entrez: - if (entrez != null) { - CanonicalGene gene = daoGene.getGene(Long.parseLong(entrez)); - if (gene != null) { - genes = Arrays.asList(gene); - } - } - //no entrez or could not resolve by entrez, try hugo: - if ((genes == null || genes.isEmpty()) && geneSymbol != null) { - // deal with multiple symbols separate by |, use the first one - int ix = geneSymbol.indexOf("|"); - if (ix > 0) { - geneSymbol = geneSymbol.substring(0, ix); - } - genes = daoGene.getGene(geneSymbol, true); - } - //if genes still null, skip current record - if (genes == null || genes.isEmpty()) { - ProgressMonitor.logWarning("Entrez_Id " + entrez + " not found. Record will be skipped for this gene."); - return false; - } - } - - // If targetLine is specified and does not match the current line, skip the current line. - if (targetLine != null && !(parts[0].equals(targetLine))) { - return false; - } - - List genesMatchingAnAlias = Collections.emptyList(); - if (geneSymbol != null) { - genesMatchingAnAlias = daoGene.getGenesForAlias(geneSymbol); - } - - Set microRNAGenes = new HashSet<>(); - Set nonMicroRNAGenes = new HashSet<>(); - Iterator geneIterator = Stream.concat(genes.stream(), genesMatchingAnAlias.stream()).iterator(); - while (geneIterator.hasNext()) { - CanonicalGene g = geneIterator.next(); - if ("miRNA".equals(g.getType())) { - microRNAGenes.add(g); - } else { - nonMicroRNAGenes.add(g); - } - } - if (!microRNAGenes.isEmpty()) { - // for micro rna, duplicate the data - for (CanonicalGene gene : microRNAGenes) { - if (this.geneticAlterationImporter.store(values, gene, geneSymbol)) { - recordStored = true; - } - } - if (!recordStored) { - if (nonMicroRNAGenes.isEmpty()) { - // this means that no microRNA records could not be stored - ProgressMonitor.logWarning("Could not store microRNA data"); - } else { - // this case : - // - at least one of the entrez-gene-ids was not a microRNA - // - all of the matched microRNA ids (if any) failed to be imported (presumably already imported on a prior line) - ProgressMonitor.logWarning("Gene symbol " + geneSymbol + " found to be ambiguous (a mixture of microRNA and other types). Record will be skipped for this gene."); - } - return false; - } - } else { - // none of the matched genes are type "miRNA" - if (genes.size() == 1) { - List cnaEventsToAdd = new ArrayList(); - - if (isDiscretizedCnaProfile) { - long entrezGeneId = genes.get(0).getEntrezGeneId(); - for (int i = 0; i < values.length; i++) { - - // temporary solution -- change partial deletion back to full deletion. - if (values[i].equals(CNA_VALUE_PARTIAL_DELETION)) { - values[i] = CNA_VALUE_HOMOZYGOUS_DELETION; - } - if (values[i].equals(CNA_VALUE_AMPLIFICATION) - // || values[i].equals(CNA_VALUE_GAIN) >> skipping GAIN, ZERO, HEMIZYGOUS_DELETION to minimize size of dataset in DB - // || values[i].equals(CNA_VALUE_ZERO) - // || values[i].equals(CNA_VALUE_HEMIZYGOUS_DELETION) - || values[i].equals(CNA_VALUE_HOMOZYGOUS_DELETION) - ) { - Integer sampleId = orderedSampleList.get(i); - CnaEvent cnaEvent = new CnaEvent(sampleId, geneticProfileId, entrezGeneId, Short.parseShort(values[i])); - //delayed add: - AbstractMap.SimpleEntry sampleGenePair = new AbstractMap.SimpleEntry<>(sampleId, entrezGeneId); - Map pdAnnotationDetails = this.pdAnnotations.get(sampleGenePair); - if (pdAnnotationDetails != null) { - cnaEvent.setDriverFilter(pdAnnotationDetails.get("DRIVER_FILTER")); - cnaEvent.setDriverFilterAnnotation(pdAnnotationDetails.get("DRIVER_FILTER_ANNOTATION")); - cnaEvent.setDriverTiersFilter(pdAnnotationDetails.get("DRIVER_TIERS_FILTER")); - cnaEvent.setDriverTiersFilterAnnotation(pdAnnotationDetails.get("DRIVER_TIERS_FILTER_ANNOTATION")); - } - cnaEventsToAdd.add(cnaEvent); - } - } - } - // Store all values per gene: - recordStored = this.geneticAlterationImporter.store(values, genes.get(0), geneSymbol); - //only add extra CNA related records if the step above worked, otherwise skip: - if (recordStored) { - CnaUtil.storeCnaEvents(existingCnaEvents, cnaEventsToAdd); - } - } else { - if (isRppaProfile) { // for protein data, duplicate the data - for (CanonicalGene gene : genes) { - if (this.geneticAlterationImporter.store(values, gene, geneSymbol)) { - recordStored = true; - nrExtraRecords++; - } - } - if (recordStored) { - //skip one, to avoid double counting: - nrExtraRecords--; - } else { - // this means that RPPA could not be stored - ProgressMonitor.logWarning("Could not store RPPA data"); - } - } else { - if (!recordStored) { - // this case : - // - the hugo gene symbol was ambiguous (matched multiple entrez-gene-ids) - ProgressMonitor.logWarning("Gene symbol " + geneSymbol + " found to be ambiguous. Record will be skipped for this gene."); - } - } - } - } - } - } - } - return recordStored; - } - - /** - * Parses line for gene set record and stores record in 'genetic_alteration' table. - * @param line - * @param nrColumns - * @param sampleStartIndex - * @param genesetIdIndex - * @param filteredSampleIndices - * @param daoGeneticAlteration - * @return - * @throws DaoException - */ - private boolean parseGenesetLine(String line, int nrColumns, int sampleStartIndex, int genesetIdIndex, - List filteredSampleIndices, DaoGeneticAlteration daoGeneticAlteration) throws DaoException { - boolean storedRecord = false; - - if (!line.startsWith("#") && line.trim().length() > 0) { - String[] parts = line.split("\t", -1); - - if (parts.length > nrColumns) { - if (line.split("\t").length > nrColumns) { - ProgressMonitor.logWarning("Ignoring line with more fields (" + parts.length - + ") than specified in the headers(" + nrColumns + "): \n" + parts[0]); - return false; - } - } - - String values[] = (String[]) ArrayUtils.subarray(parts, sampleStartIndex, parts.length > nrColumns ? nrColumns : parts.length); - - // trim whitespace from values - values = Stream.of(values).map(String::trim).toArray(String[]::new); - values = filterOutNormalValues(filteredSampleIndices, values); - - Geneset geneset = DaoGeneset.getGenesetByExternalId(parts[genesetIdIndex]); - if (geneset != null) { - storedRecord = storeGeneticEntityGeneticAlterations(values, daoGeneticAlteration, geneset.getGeneticEntityId(), - EntityType.GENESET, geneset.getExternalId()); - } - else { - ProgressMonitor.logWarning("Geneset " + parts[genesetIdIndex] + " not found in DB. Record will be skipped."); - } - } - return storedRecord; - } - - /** - * Parses line for generic assay profile record and stores record in 'genetic_alteration' table. - * @param line row from the separated-text that contains one or more values on a single sample - * @param nrColumns - * @param sampleStartIndex index of the first sample column - * @param genericAssayIdIndex index of the column that uniquely identifies a sample - * @param filteredSampleIndices - * @param daoGeneticAlteration - * @return - * @throws DaoException - */ - - private boolean parseGenericAssayLine(String line, int nrColumns, int sampleStartIndex, int genericAssayIdIndex, - List filteredSampleIndices, DaoGeneticAlteration daoGeneticAlteration, Map genericAssayStableIdToEntityIdMap) throws DaoException { - - boolean recordIsStored = false; - - if (!line.startsWith("#") && line.trim().length() > 0) { - String[] parts = line.split("\t", -1); - - if (parts.length > nrColumns) { - if (line.split("\t").length > nrColumns) { - ProgressMonitor.logWarning("Ignoring line with more fields (" + parts.length - + ") than specified in the headers(" + nrColumns + "): \n" + parts[0]); - return false; - } - } - - String values[] = (String[]) ArrayUtils.subarray(parts, sampleStartIndex, parts.length > nrColumns ? nrColumns : parts.length); - - // trim whitespace from values - values = Stream.of(values).map(String::trim).toArray(String[]::new); - values = filterOutNormalValues(filteredSampleIndices, values); - - String stableId = parts[genericAssayIdIndex]; - Integer entityId = genericAssayStableIdToEntityIdMap.getOrDefault(stableId, null); - - if (entityId == null) { - ProgressMonitor.logWarning("Generic Assay entity " + parts[genericAssayIdIndex] + " not found in DB. Record will be skipped."); - } else { - recordIsStored = storeGeneticEntityGeneticAlterations(values, daoGeneticAlteration, entityId, - EntityType.GENERIC_ASSAY, stableId); - } - - return recordIsStored; - } - - return recordIsStored; - } - - /** - * Stores genetic alteration data for a genetic entity. - * @param values - * @param daoGeneticAlteration - * @param geneticEntityId - internal id for genetic entity - * @param geneticEntityType - "GENE", "GENESET", "PHOSPHOPROTEIN" - * @param geneticEntityName - hugo symbol for "GENE", external id for "GENESET", phospho gene name for "PHOSPHOPROTEIN" - * @return boolean indicating if record was stored successfully or not - */ - private boolean storeGeneticEntityGeneticAlterations(String[] values, DaoGeneticAlteration daoGeneticAlteration, - Integer geneticEntityId, EntityType geneticEntityType, String geneticEntityName) { - try { - if (importedGeneticEntitySet.add(geneticEntityId)) { - daoGeneticAlteration.addGeneticAlterationsForGeneticEntity(geneticProfile.getGeneticProfileId(), geneticEntityId, values); - return true; - } - else { - ProgressMonitor.logWarning("Data for genetic entity " + geneticEntityName - + " [" + geneticEntityType + "] already imported from file. Record will be skipped."); - return false; - } - } - catch (Exception ex) { - throw new RuntimeException("Aborted: Error found for row starting with " + geneticEntityName + ": " + ex.getMessage()); - } - } - - /** - * Tries to parse the genes and look them up in DaoGeneOptimized - * - * @param antibodyWithGene - * @return returns null if something was wrong, e.g. could not parse the antibodyWithGene string; returns - * a list with 0 or more elements otherwise. - * @throws DaoException - */ - private List parseRPPAGenes(String antibodyWithGene) throws DaoException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - String[] parts = antibodyWithGene.split("\\|"); - //validate: - if (parts.length < 2) { - ProgressMonitor.logWarning("Could not parse Composite.Element.Ref value " + antibodyWithGene + ". Record will be skipped."); - //return null when there was a parse error: - return null; - } - String[] symbols = parts[0].split(" "); - String arrayId = parts[1]; - //validate arrayId: if arrayId if duplicated, warn: - if (!arrayIdSet.add(arrayId)) { - ProgressMonitor.logWarning("Id " + arrayId + " in [" + antibodyWithGene + "] found to be duplicated. Record will be skipped."); - return null; - } - List symbolsNotFound = new ArrayList(); - List genes = new ArrayList(); - for (String symbol : symbols) { - if (symbol.equalsIgnoreCase("NA")) { - //workaround because of bug in firehose. See https://github.com/cBioPortal/cbioportal/issues/839#issuecomment-203523078 - ProgressMonitor.logWarning("Gene " + symbol + " will be interpreted as 'Not Available' in this case. Record will be skipped for this gene."); - } - else { - CanonicalGene gene = daoGene.getNonAmbiguousGene(symbol, true); - if (gene != null) { - genes.add(gene); - } - else { - symbolsNotFound.add(symbol); - } - } - } - if (genes.size() == 0) { - //return empty list: - return genes; - } - //So one or more genes were found, but maybe some were not found. If any - //is not found, report it here: - for (String symbol : symbolsNotFound) { - ProgressMonitor.logWarning("Gene " + symbol + " not found in DB. Record will be skipped for this gene."); - } - - Pattern p = Pattern.compile("(p[STY][0-9]+(?:_[STY][0-9]+)*)"); - Matcher m = p.matcher(arrayId); - String residue; - if (!m.find()) { - //type is "protein_level": - return genes; - } else { - //type is "phosphorylation": - residue = m.group(1); - return importPhosphoGene(genes, residue); - } - } - - private List importPhosphoGene(List genes, String residue) throws DaoException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - List phosphoGenes = new ArrayList(); - for (CanonicalGene gene : genes) { - Set aliases = new HashSet(); - aliases.add("rppa-phospho"); - aliases.add("phosphoprotein"); - aliases.add("phospho" + gene.getStandardSymbol()); - String phosphoSymbol = gene.getStandardSymbol() + "_" + residue; - CanonicalGene phosphoGene = daoGene.getGene(phosphoSymbol); - if (phosphoGene == null) { - ProgressMonitor.logWarning("Phosphoprotein " + phosphoSymbol + " not yet known in DB. Adding it to `gene` table with 3 aliases in `gene_alias` table."); - phosphoGene = new CanonicalGene(phosphoSymbol, aliases); - phosphoGene.setType(CanonicalGene.PHOSPHOPROTEIN_TYPE); - daoGene.addGene(phosphoGene); - } - phosphoGenes.add(phosphoGene); - } - return phosphoGenes; - } - - - // returns index for geneset id column - private int getGenesetIdIndex(String[] headers) { - return getColIndexByName(headers, "geneset_id"); - } - - private int getGenericAssayIdIndex(String[] headers) { - return getColIndexByName(headers, "ENTITY_STABLE_ID"); - } - - private int getHugoSymbolIndex(String[] headers) { - return getColIndexByName(headers, "Hugo_Symbol"); - } - - private int getEntrezGeneIdIndex(String[] headers) { - return getColIndexByName(headers, "Entrez_Gene_Id"); - } - - private int getRppaGeneRefIndex(String[] headers) { - return getColIndexByName(headers, "Composite.Element.Ref"); - } - - // helper function for finding the index of a column by name - private int getColIndexByName(String[] headers, String colName) { - for (int i = 0; i < headers.length; i++) { - if (headers[i].equalsIgnoreCase(colName)) { - return i; - } - } - return -1; - } - - private int getStartIndex(String[] headers, int... featureColIds) { - - // get the feature column index with the highest value - Integer lastFeatureCol = IntStream.of(featureColIds).max().orElse(-1); - - // list the names of feature columns here - List featureColNames = new ArrayList(); - featureColNames.add("Gene Symbol"); - featureColNames.add("Hugo_Symbol"); - featureColNames.add("Entrez_Gene_Id"); - featureColNames.add("Locus ID"); - featureColNames.add("Cytoband"); - featureColNames.add("Composite.Element.Ref"); - featureColNames.add("geneset_id"); - featureColNames.add("entity_stable_id"); - featureColNames.add("ENTITY_STABLE_ID"); - - // add genericEntityProperties as the feature colum - if (genericEntityProperties != null && genericEntityProperties.trim().length() != 0) { - String[] propertyNames = genericEntityProperties.trim().split(","); - featureColNames.addAll(Arrays.asList(propertyNames)); - } - - int startIndex = -1; - - for (int i = 0; i < headers.length; i++) { - String h = headers[i]; - //if the column is not one of the gene symbol/gene id columns or other pre-sample columns: - // and the column is found after all non value columns that are passed in - if (featureColNames.stream().noneMatch(e -> e.equalsIgnoreCase(h)) - && i > lastFeatureCol) { - //then we consider this the start of the sample columns: - startIndex = i; - break; - } - } - if (startIndex == -1) - throw new RuntimeException("Could not find a sample column in the file"); - - return startIndex; - } - - private String[] filterOutNormalValues(List filteredSampleIndices, String[] values) - { - ArrayList filteredValues = new ArrayList(); - for (int lc = 0; lc < values.length; lc++) { - if (!filteredSampleIndices.contains(lc)) { - filteredValues.add(values[lc]); - } - } - return filteredValues.toArray(new String[filteredValues.size()]); - } - - public File getPdAnnotationsFile() { - return pdAnnotationsFile; - } - - public void setPdAnnotationsFile(File pdAnnotationsFile) { - this.pdAnnotationsFile = pdAnnotationsFile; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportTimelineData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportTimelineData.java deleted file mode 100644 index 0b5b182be47..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportTimelineData.java +++ /dev/null @@ -1,158 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.*; -import java.util.*; -import joptsimple.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.mskcc.cbio.portal.util.SpringUtil; - -/** - * Imports timeline data for display in patient view - * - * @author jgao, inodb - */ -public class ImportTimelineData extends ConsoleRunnable { - - private static void importData(String dataFile, int cancerStudyId) throws IOException, DaoException { - MySQLbulkLoader.bulkLoadOn(); - SpringUtil.initDataSource(); - - ProgressMonitor.setCurrentMessage("Reading file " + dataFile); - FileReader reader = new FileReader(dataFile); - BufferedReader buff = new BufferedReader(reader); - try { - String line = buff.readLine(); - - // Check event category agnostic headers - String[] headers = line.split("\t"); - int indexCategorySpecificField = -1; - if (headers[0].equals("PATIENT_ID") && headers[1].equals("START_DATE")) { - if ("STOP_DATE".equals(headers[2]) && "EVENT_TYPE".equals(headers[3])) { - indexCategorySpecificField = 4; - } else if (headers[2].equals("EVENT_TYPE")) { - indexCategorySpecificField = 3; - } - } - if (indexCategorySpecificField == -1) { - throw new RuntimeException("The first line must start with\n'PATIENT_ID\tSTART_DATE\tEVENT_TYPE'\nor\n" - + "PATIENT_ID\tSTART_DATE\tSTOP_DATE\tEVENT_TYPE"); - } - - long clinicalEventId = DaoClinicalEvent.getLargestClinicalEventId(); - - while ((line = buff.readLine()) != null) { - line = line.trim(); - - String[] fields = line.split("\t"); - if (fields.length > headers.length) { - //TODO - should better throw an exception here... - ProgressMonitor.logWarning("more attributes than header: " + line + ". Skipping entry."); - continue; - } - String patientId = fields[0]; - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId); - if (patient == null) { - ProgressMonitor.logWarning("Patient " + patientId + " not found in study " + cancerStudyId + ". Skipping entry."); - continue; - } - ClinicalEvent event = new ClinicalEvent(); - event.setClinicalEventId(++clinicalEventId); - event.setPatientId(patient.getInternalId()); - event.setStartDate(Long.valueOf(fields[1])); - if (indexCategorySpecificField != 3 && !fields[2].isEmpty()) { - event.setStopDate(Long.valueOf(fields[2])); - } - event.setEventType(fields[indexCategorySpecificField - 1]); - Map eventData = new HashMap(); - for (int i = indexCategorySpecificField; i < fields.length; i++) { - if (!fields[i].isEmpty()) { - eventData.put(headers[i], fields[i]); - } - } - event.setEventData(eventData); - - DaoClinicalEvent.addClinicalEvent(event); - } - - MySQLbulkLoader.flushAll(); - } - finally { - buff.close(); - } - } - - public void run() { - try { - String description = "Import 'timeline' data"; - - OptionSet options = ConsoleUtil.parseStandardDataAndMetaOptions(args, description, true); - String dataFile = (String) options.valueOf("data"); - File descriptorFile = new File((String) options.valueOf("meta")); - - Properties properties = new TrimmedProperties(); - properties.load(new FileInputStream(descriptorFile)); - - int cancerStudyInternalId = ValidationUtils.getInternalStudyId(properties.getProperty("cancer_study_identifier")); - - importData(dataFile, cancerStudyInternalId); - } catch (RuntimeException e) { - throw e; - } catch (IOException|DaoException e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportTimelineData(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportTimelineData(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportTypesOfCancers.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportTypesOfCancers.java deleted file mode 100644 index 9e119f039cc..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportTypesOfCancers.java +++ /dev/null @@ -1,156 +0,0 @@ -/* - * Copyright (c) 2015 - 2021 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.*; -import java.util.*; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoTypeOfCancer; -import org.mskcc.cbio.portal.model.TypeOfCancer; -import org.mskcc.cbio.portal.scripts.ConsoleRunnable; -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.mskcc.cbio.portal.util.SpringUtil; - -/** - * Load all the types of cancer and their names from a file. - * - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -public class ImportTypesOfCancers extends ConsoleRunnable { - - public static final int EXPECTED_DATAFILE_COLUMN_COUNT = 4; - - /** - * Executed by perl script importTypesOfCancer.pl - parses command line arguments and calls load() - */ - public void run() { - if (args.length < 1) { - throw new UsageException( "importTypesOfCancer.pl", null, " "); - } - String filePath = args[0]; - boolean clobber = true; - if (args.length > 1) { - String clobberArgString = args[1]; // positional argument - if (clobberArgString.equalsIgnoreCase("f") || clobberArgString.equalsIgnoreCase("false")) { - clobber = false; - } - } - try { - load(new File(filePath), clobber); - } catch (IOException|DaoException e) { - throw new RuntimeException(e); - } - } - - public static void load(File file, boolean clobber) throws IOException, DaoException { - ProgressMonitor.setCurrentMessage("Loading cancer types..."); - List typeOfCancerList = parseCancerTypesFromFile(file); - SpringUtil.initDataSource(); - if (clobber) { - ProgressMonitor.setCurrentMessage("Deleting all previous cancer types..."); - DaoTypeOfCancer.deleteAllRecords(); //TODO - remove this option - foreign key constraints may mean large cascade effects (possibly the deletion of all studies) - instead, change the option to 'deleteTypeOfCancerIfNotPresent' and add a loop through existing typeOfCancer records, removing those which are not in the parsed typeOfCancerList - } - writeRecordsToDatabase(typeOfCancerList, clobber); - ProgressMonitor.setCurrentMessage("Done."); - ConsoleUtil.showMessages(); - } - - private static List parseCancerTypesFromFile(File file) throws IOException { - ProgressMonitor.setCurrentMessage(String.format("Reading cancer types from file '%s'...", file.getPath())); - List typeOfCancerList = new ArrayList(); - Scanner scanner = new Scanner(file); - while (scanner.hasNextLine()) { - String nextLine = scanner.nextLine(); - String[] fields = nextLine.split("\t", -1); - throwExceptionIfColumnCountIsWrong(file, nextLine, fields, EXPECTED_DATAFILE_COLUMN_COUNT); - TypeOfCancer typeOfCancer = new TypeOfCancer(); - String typeOfCancerId = fields[0].trim(); - typeOfCancer.setTypeOfCancerId(typeOfCancerId.toLowerCase()); - typeOfCancer.setName(fields[1].trim()); - typeOfCancer.setDedicatedColor(fields[2].trim()); - typeOfCancer.setShortName(typeOfCancerId); - typeOfCancer.setParentTypeOfCancerId(fields[3].trim().toLowerCase()); - typeOfCancerList.add(typeOfCancer); - } - return typeOfCancerList; - } - - private static void throwExceptionIfColumnCountIsWrong(File file, String nextLine, String[] fields, int expectedDatafileColumnCount) throws IOException { - if (fields.length != expectedDatafileColumnCount) { - String msg = String.format("Cancer type file '%s' contains a line which is not %d-column tab-delimited." + - " Expected fields can be seen here: https://docs.cbioportal.org/5.1-data-loading/data-loading/file-formats#cancer-type" + - " The invalid line has %d columns:\n%s", file.getPath(), expectedDatafileColumnCount, fields.length, nextLine); - for (int i = 0; i < fields.length ; i++) { - msg = msg + String.format(" field#%d(len%d):'%s'\n", i, fields[i].length(), fields[i]); - } - throw new IOException(msg); - } - } - - private static void writeRecordsToDatabase(List typeOfCancerList, boolean clobber) throws IOException, DaoException { - int numNewCancerTypes = 0; - for (TypeOfCancer typeOfCancer : typeOfCancerList) { - if (!clobber && typeOfCancerExistsInDatabase(typeOfCancer)) { - ProgressMonitor.logWarning(String.format("Cancer type with id '%s' already exists. Skipping.", typeOfCancer.getTypeOfCancerId())); - } else { - DaoTypeOfCancer.addTypeOfCancer(typeOfCancer); - numNewCancerTypes++; - } - } - ProgressMonitor.setCurrentMessage(String.format(" --> Loaded %d new cancer types.", numNewCancerTypes)); - } - - private static boolean typeOfCancerExistsInDatabase(TypeOfCancer typeOfCancer) throws DaoException { - return DaoTypeOfCancer.getTypeOfCancerById(typeOfCancer.getTypeOfCancerId()) != null; - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public ImportTypesOfCancers(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new ImportTypesOfCancers(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportUsers.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportUsers.java deleted file mode 100644 index c886c8b8bbe..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ImportUsers.java +++ /dev/null @@ -1,118 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -// imports -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; - -import java.io.*; -import java.util.*; - -/** - * Import a file of users and their authorities. - * - * File contains the fields: - * - * EMAIL_ADDRESS\tUSERNAME\tENABLED\tAUTHORITIES - * - * AUTHORITIES is semicolon separated list of authorites - * - * @author Arthur Goldberg goldberg@cbio.mskcc.org - * @author Benjamin Gross - */ -public class ImportUsers { - - public static void main(String[] args) throws Exception { - if (args.length == 0) { - System.out.println("command line usage: java org.mskcc.cbio.portal.scripts.ImportUsers "); - return; - } - - ProgressMonitor.setConsoleMode(true); - - SpringUtil.initDataSource(); - - File file = new File(args[0]); - FileReader reader = new FileReader(file); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine(); - int count = 0; - while (line != null) { - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - if (!line.startsWith("#") && line.trim().length() > 0) { - try { - addUser(line); - count++; - } catch (Exception e) { - System.err.println("Could not add line '" + line + "'. " + e); - } - } - line = buf.readLine(); - } - System.err.println("Added " + count + " user access rights."); - ConsoleUtil.showWarnings(); - System.err.println("Done."); - } - - private static void addUser(String line) throws Exception { - line = line.trim(); - String parts[] = line.split("\t"); - if (parts.length != 4) { - throw new IllegalArgumentException("Missing a user attribute, parts: " + parts.length); - } - String email = parts[0]; - String name = parts[1]; - Boolean enabled = Boolean.valueOf(parts[2]); - List authorities = Arrays.asList(parts[3].split(";")); - - // if user doesn't exist create them - User user = DaoUser.getUserByEmail(email); - if (null == user) { - user = new User(email, name, enabled); - DaoUser.addUser(user); - } - - // if exist, delete user authorities - UserAuthorities currentAuthorities = DaoUserAuthorities.getUserAuthorities(user); - if (currentAuthorities != null) { - DaoUserAuthorities.removeUserAuthorities(user); - } - - // add new authorities - UserAuthorities userAuthorities = new UserAuthorities(email, authorities); - DaoUserAuthorities.addUserAuthorities(userAuthorities); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/MergeProfileData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/MergeProfileData.java deleted file mode 100644 index 7ef5dafb28b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/MergeProfileData.java +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.IOException; -import java.io.BufferedReader; -import java.io.BufferedWriter; -import java.io.FileReader; -import java.io.FileWriter; - -import java.util.LinkedHashMap; -import java.util.LinkedHashSet; -import java.util.Map; -import java.util.Set; - -/** - * - * @author jgao - */ -public class MergeProfileData { - public static void main(String[] args) { - if (args.length<3) { - System.err.println( "incorrect number of arguments. Arguments should be " - + "' ...'." ); - return; - } - - try { - Map> data = new LinkedHashMap>(); - Set cases = new LinkedHashSet(); - for (int i=1; i> - * @throws IOException - */ - private static void readData(String file, Map> data, - Set cases) throws IOException { - BufferedReader in = new BufferedReader(new FileReader(file)); - String line = in.readLine(); - String[] headers = line.split("\t"); - int nCases = headers.length; - for (int i=1; i map = new LinkedHashMap(); - data.put(parts[0], map); - for (int i=1; i> data, - Set cases) throws IOException { - BufferedWriter out = new BufferedWriter(new FileWriter(file)); - out.write("geneSymbol"); - for (String header : cases) { - out.write("\t"+header); - } - out.newLine(); - - for (Map.Entry> entry : data.entrySet()) { - out.write(entry.getKey()); - Map map = entry.getValue(); - for (String header : cases) { - out.write("\t"); - String value = map.get(header); - if (value==null) { - out.write("NA"); - } else { - out.write(value); - } - } - out.newLine(); - } - out.close(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/MutationFilter.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/MutationFilter.java deleted file mode 100644 index f006f65203e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/MutationFilter.java +++ /dev/null @@ -1,289 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.util.Arrays; -import java.util.HashMap; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; - -import org.mskcc.cbio.portal.model.ExtendedMutation; - -/** - * Filter mutations as they're imported into the CGDS dbms. - *

    - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -public class MutationFilter { - - private Set whiteListGenesForPromoterMutations; - - private int accepts=0; - private int germlineWhitelistAccepts=0; - private int somaticWhitelistAccepts=0; - private int unknownAccepts=0; - public int decisions=0; - private int mutationStatusNoneRejects=0; - private int lohOrWildTypeRejects=0; - private int emptyAnnotationRejects=0; - private int missenseGermlineRejects=0; - private int redactedRejects=0; - public Map rejectionMap = new HashMap(); - - /** - * Construct a MutationFilter with no white lists. - * This filter will - *
    - * REJECT Silent, LOH, Intron and Wildtype mutations, and - *
    - * KEEP all other mutations. - */ - public MutationFilter() throws IllegalArgumentException{ - whiteListGenesForPromoterMutations = new HashSet(); - whiteListGenesForPromoterMutations.add(Long.valueOf(7015)); // TERT - } - - /** - * Indicate whether the specified mutation should be accepted as input to - * the CGDS Database. - *

    - * @param mutation - * an ExtendedMutation. - *
    - * @return true if the mutation should be imported into the dbms - */ - public boolean acceptMutation(ExtendedMutation mutation, Set filteredMutations) { - this.decisions++; - - /* - * Mutation types from Firehose: - +------------------------+ - | De_novo_Start | - | Frame_Shift_Del | - | Frame_Shift_Ins | - | Indel | - | In_Frame_Del | - | In_Frame_Ins | - | Missense | - | Missense_Mutation | - | Nonsense_Mutation | - | Nonstop_Mutation | - | Splice_Site | - | Stop_Codon_Del | - | Translation_Start_Site | - +------------------------+ - */ - - // Do not accept mutations with Mutation_Status of None - if (safeStringTest( mutation.getMutationStatus(), "None" )) { - mutationStatusNoneRejects++; - return false; - } - - // Do not accept LOH or Wildtype Mutations - if( safeStringTest( mutation.getMutationStatus(), "LOH" ) || - safeStringTest( mutation.getMutationStatus(), "Wildtype" ) ){ - lohOrWildTypeRejects++; - return false; - } - - // Do not accept Redacted mutations - if (safeStringTest(mutation.getValidationStatus(), "Redacted")) { - redactedRejects++; - return false; - } - - //Filter by types if specified in the meta file, else filter for the default types - if (filteredMutations != null) { - if (filteredMutations.contains(mutation.getMutationType())) { - addRejectedVariant(rejectionMap, mutation.getMutationType()); - return false; - } else { - if( safeStringTest( mutation.getMutationType(), "5'Flank" ) ) { - mutation.setProteinChange("Promoter"); - } - return true; - } - } else { - // Do not accept Silent, Intronic, 3'UTR, 5'UTR or IGR Mutations - if( safeStringTest( mutation.getMutationType(), "Silent" ) || - safeStringTest( mutation.getMutationType(), "Intron" ) || - safeStringTest( mutation.getMutationType(), "3'UTR" ) || - safeStringTest( mutation.getMutationType(), "3'Flank" ) || - safeStringTest( mutation.getMutationType(), "5'UTR" ) || - safeStringTest( mutation.getMutationType(), "IGR") ){ - addRejectedVariant(rejectionMap, mutation.getMutationType()); - return false; - } - - if( safeStringTest( mutation.getMutationType(), "5'Flank" ) ) { - if (whiteListGenesForPromoterMutations.contains(mutation.getEntrezGeneId())){ - mutation.setProteinChange("Promoter"); - } else { - addRejectedVariant(rejectionMap, mutation.getMutationType()); - return false; - } - } - - this.accepts++; - return true; - } - } - - /** - * Provide number of decisions made by this MutationFilter. - * @return the number of decisions made by this MutationFilter - */ - public int getDecisions(){ - return this.decisions; - } - - /** - * Provide number of ACCEPT (return true) decisions made by this MutationFilter. - * @return the number of ACCEPT (return true) decisions made by this MutationFilter - */ - public int getAccepts(){ - return this.accepts; - } - - public int getMutationStatusNoneRejects() { - return mutationStatusNoneRejects; - } - - /** - * Provide number of REJECT decisions for LOH or Wild Type Mutations. - * @return number of REJECT decisions for LOH or Wild Type Mutations. - */ - public int getLohOrWildTypeRejects() { - return this.lohOrWildTypeRejects; - } - - /** - * Provide number of REJECT decisions for Emtpy Annotation Mutations. - * @return number of REJECT decisions for Empty Annotation Mutations. - */ - public int getEmptyAnnotationRejects() { - return this.emptyAnnotationRejects; - } - - /** - * Provide number of REJECT decisions for Missense Germline Mutations. - * @return number of REJECT decisions for Missense Germline Mutations. - */ - public int getMissenseGermlineRejects() { - return this.missenseGermlineRejects; - } - - /** - * Provide number of germline whitelist ACCEPT (return true) decisions made by this MutationFilter. - * @return the number of germline whitelist ACCEPT (return true) decisions made by this MutationFilter - */ - public int getGermlineWhitelistAccepts(){ - return this.germlineWhitelistAccepts; - } - - /** - * Provide number of somatic whitelist ACCEPT (return true) decisions made by this MutationFilter. - * @return the number of somatic whitelist ACCEPT (return true) decisions made by this MutationFilter - */ - public int getSomaticWhitelistAccepts(){ - return this.somaticWhitelistAccepts; - } - - /** - * Provide number of unknown whitelist ACCEPT (return true) decisions made by this MutationFilter. - * @return the number of unknown ACCEPT (return true) decisions made by this MutationFilter - */ - public int getUnknownAccepts(){ - return this.unknownAccepts; - } - - public int getRedactedRejects() - { - return this.redactedRejects; - } - - public Map getRejectionMap() { - return this.rejectionMap; - } - - public void addRejectedVariant(Map rejectionMap, String mutation) { - this.rejectionMap.computeIfAbsent(mutation, (k) -> 0); - this.rejectionMap.computeIfPresent(mutation, (k, v) -> v + 1); - } - - /** - * Provide number of REJECT (return false) decisions made by this MutationFilter. - * @return the number of REJECT (return false) decisions made by this MutationFilter - */ - public int getRejects(){ - return this.decisions - this.accepts; - } - - public String getStatistics(){ - String statistics = "Mutation filter decisions: " + this.getDecisions() + - "\nRejects: " + this.getRejects() + - "\nMutation Status 'None' Rejects: " + this.getMutationStatusNoneRejects() + - "\nLOH or Wild Type Rejects: " + this.getLohOrWildTypeRejects() + - "\nEmpty Annotation Rejects: " + this.getEmptyAnnotationRejects() + - "\nMissense Germline Rejects: " + this.getMissenseGermlineRejects(); - - Map variantsRejected = this.getRejectionMap(); - for (Map.Entry variant : variantsRejected.entrySet()) { - statistics = statistics + "\n" + variant.getKey() + " Rejects: " + variant.getValue(); - } - - return statistics; - } - - /** - * Carefully look for pattern in data. - *

    - * @param data - * @param pattern - * @return false if data is null; true if data starts with pattern, independent of case - */ - private boolean safeStringTest( String data, String pattern ){ - if( null == data){ - return false; - } - return data.toLowerCase().startsWith( pattern.toLowerCase() ); - } - - @Override - public String toString(){ - StringBuffer sb = new StringBuffer(); - return( sb.toString() ); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/NormalizeExpressionLevels.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/NormalizeExpressionLevels.java deleted file mode 100644 index a5c8d642025..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/NormalizeExpressionLevels.java +++ /dev/null @@ -1,655 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.*; -import java.util.*; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.util.SpringUtil; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -/** - * - * Given expression and CNV data for a set of samples generate normalized expression values. - * - * Each gene is normalized separately. First, the expression distribution for unaltered copies of the - * gene is estimated by calculating the mean and variance of the expression values for samples in which - * the gene is diploid (as reported by the CNV data). We call this the unaltered distribution. - * - * If the gene has no diploid samples, then its normalized expression is reported as NA. - * Otherwise, for every sample, the gene's normalized expression is reported as - * - * (r - mu)/sigma - * - * where r is the raw expression value, and mu and sigma are the mean and standard deviation - * of the unaltered distribution, respectively. - * - * The syntax is simple: - * - * java NormalizeExpressionLevels [] - * - * The output is written onto a file named "output_file" - * - * Any number of columns may precede the data. However, the following must be satisfied: - * - * - the first column provides gene identifiers - * - * Algorithm - * Input copy number (CNA) and expression (exp) files - * concept: - * for each gene{ - * identify diploid cases in CNA - * obtain mean and sd of exp of diploid cases - * for each case{ - * zScore <- (value - mean)/sd - * } - * } - * - * implementation: - * read CNA: build hash geneCopyNumberStatus: gene -> Array of (caseID, value ) pairs - * read exp: skip normal cases; - * for each gene{ - * get mean and s.d. of elements of diploids - * get zScore for each case - * } - * - * @author Giovanni Ciriello - * @author Arthur Goldberg goldberg@cbio.mskcc.org - * - */ -public class NormalizeExpressionLevels{ - - public static final String TCGA_NORMAL_SUFFIX = "-11"; - private static final String ENTREZ_GENE_ID_COLUMN = "Entrez_Gene_Id"; - private static final String HUGO_SYMBOL_COLUMN = "Hugo_Symbol"; - private static final String NOT_AVAILABLE = "NA"; - private static final int NO_POSITION = -1; - private static DaoGeneOptimized daoGeneOptimized; - - private static HashMap> geneCopyNumberStatus = null; - private static int SAMPLES; - private static String zScoresFile; - private static String normalSampleSuffix; - private static final int DEFAULT_MIN_NUM_DIPLOIDS = 10; - private static int MIN_NUM_DIPLOIDS = DEFAULT_MIN_NUM_DIPLOIDS; - private static final int MIN_NUM_ALLOWED_DIPLOIDS = 3; - - private static final Logger LOG = LoggerFactory.getLogger(NormalizeExpressionLevels.class); - - public static void main (String[]args) { - try { - SpringUtil.initDataSource(); - // init dao gene - daoGeneOptimized = DaoGeneOptimized.getInstance(); - driver(args); - } - catch (RuntimeException e) { - LOG.error(e.getMessage()); - } - } - - /** - * Helper function which allows routine to be - * called by other java code and get a return status code. - */ - public static void driver(String[] args) throws RuntimeException { - // TODO, perhaps: use command line parser - if ( args.length != 4 && args.length != 5) { - fatalError( "incorrect number of arguments. Arguments should be ' []'." ); - } - String copyNumberFile = args[0]; - String expressionFile = args[1]; - zScoresFile = args[2]; - normalSampleSuffix = args[3]; - if ( args.length == 5) { - try { - MIN_NUM_DIPLOIDS = Integer.parseInt(args[4] ); - } catch (NumberFormatException e) { - fatalError( "incorrect arguments. 'min_number_of_diploids', was entered as " + args[4] + " but must be an integer." ); - } - if ( MIN_NUM_DIPLOIDS < MIN_NUM_ALLOWED_DIPLOIDS ) { - fatalError( "incorrect arguments. 'min_number_of_diploids', was entered as " + args[4] + " but must be at least " + MIN_NUM_ALLOWED_DIPLOIDS + "." ); - } - } - - if (copyNumberFile!=null) { - geneCopyNumberStatus = readCopyNumberFile(copyNumberFile); - } - computeZScoreXP(expressionFile); - } - - /** - * Resolves a CanonicalGene by entrez gene id or hugo symbol. - * Attempts to resolve gene by entrez gene id first. If unsuccessful or - * entrez gene id column does not exist then falls back on hugo symbol. - * - * Returns null if gene cannot be resolved by entrez gene id or hugo symbol. - * @param values - * @param entrezGeneIdIndex - * @param hugoGeneSymbolIndex - * @return - */ - private static CanonicalGene resolveCanonicalGene(String[] values, Integer entrezGeneIdIndex, Integer hugoGeneSymbolIndex) { - CanonicalGene gene = null; - // try entrez gene id before hugo symbol if possible - if (entrezGeneIdIndex != -1) { - try{ - gene = daoGeneOptimized.getGene(Long.parseLong(values[entrezGeneIdIndex])); - } catch (NumberFormatException e) {} - } - if (gene == null && hugoGeneSymbolIndex != -1) { - gene = daoGeneOptimized.getNonAmbiguousGene(values[hugoGeneSymbolIndex]); - } - // log warning if failed to resolved canonical gene - if (gene == null) { - String message = "Could not resolve gene from: "; - message += "entrez gene id= " + (entrezGeneIdIndex != -1 ? values[entrezGeneIdIndex] : "unavailable, "); - message += "hugo symbol= " + (hugoGeneSymbolIndex != -1 ? values[hugoGeneSymbolIndex] : "unavailable"); - warning(message); - } - return gene; - } - - private static void computeZScoreXP(String file) { - BufferedReader in = null; - PrintWriter zscoreFileWriter = null; - - try { - zscoreFileWriter = new PrintWriter(new FileWriter( zScoresFile )); - } catch (IOException e) { - fatalError( "cannot open '" + zScoresFile + "' for writing."); - } - try { - in = new BufferedReader(new FileReader(file)); - } catch (FileNotFoundException e) { - fatalError( "cannot read in '" + file + "'."); - } - String header; - try { - header = in.readLine(); - String[]values = header.split("\t"); - int entrezGeneIdIndex = findColumnIndex(values, ENTREZ_GENE_ID_COLUMN); - int hugoGeneSymbolIndex = findColumnIndex(values, HUGO_SYMBOL_COLUMN); - if (entrezGeneIdIndex == -1 && hugoGeneSymbolIndex == -1) { - fatalError("Expression file header must contain at least one of the following: " + ENTREZ_GENE_ID_COLUMN + ", " + HUGO_SYMBOL_COLUMN); - } - - int firstSamplePosition = getFirstDataColumn( values ); - // catch error if no sample id contains SampleNamePrefix - if ( NO_POSITION == firstSamplePosition ) { - fatalError("no sample id in , '" + file + "'."); - } - - SAMPLES = values.length;// - firstSamplePosition; - String[]samples = new String[SAMPLES]; // the names of all samples - HashSet normalSamples = new HashSet(); - - // make set of case IDs of normal samples, and list of all truncated samples - for (int i=firstSamplePosition; i outputLine = new ArrayList(); - - // header contains only ids of tumor samples - if (firstSamplePosition==1) { - outputLine.add(values[0]); - } else { - outputLine.add("Hugo_Symbol"); - outputLine.add("Entrez_Gene_Id"); - } - for (int i=firstSamplePosition;i tumorSampleExpressions = new ArrayList(); - for (int i=firstSamplePosition;i cnStatus = geneCopyNumberStatus==null ? null : geneCopyNumberStatus.get(gene.getEntrezGeneId()); - double[] zscores = getZscore( tumorSampleExpressions, cnStatus ); - - if (zscores != null) { - rowsWithSomeDiploidCases++; - - if (firstSamplePosition==1) { - outputLine.add(values[0]); - } else { - outputLine.add(gene.getHugoGeneSymbolAllCaps()); - outputLine.add(Long.toString(gene.getEntrezGeneId())); - } - - for (int k =0;k in '" + file + "'."); - } - zscoreFileWriter.close(); - } - - private static int getFirstDataColumn( String[] values) { - // TODO: instead of guessing, we should normalizing - for (int i=0;i - * @return array of z-Scores for the expression data; null if there were no diploid values - */ - private static double[] getZscore( ArrayList xp, ArrayList cn) { - double[] z = null; - double[] diploid = new double[SAMPLES]; - HashSet diploidSamples = new HashSet(); - String DiploidSample = "0"; // CN value of 0 indicates diploid - - if (cn!=null) { - for (int i=0;i xp, double avg, double std) { - double[]z = new double[xp.size()]; - - if ( 0.0d == std) { - // this should not happen - fatalError( "cannot normalize relative to distribution with standard deviation of 0.0." ); - } - for (int i=0;i> that - * maps geneName -> ArrayList< [ sampleName, value ] > - */ - public static HashMap> readCopyNumberFile(String file) { - - HashMap> map = new HashMap>(); - BufferedReader in = null; - try { - in = new BufferedReader(new FileReader(file)); - } catch (FileNotFoundException e) { - fatalError( "cannot open copy number file '" + file + "' for reading."); - } - - // assumes single header line - String header; - try { - header = in.readLine(); - String[]values = header.split("\t"); - int entrezGeneIdIndex = findColumnIndex(values, ENTREZ_GENE_ID_COLUMN); - int hugoGeneSymbolIndex = findColumnIndex(values, HUGO_SYMBOL_COLUMN); - if (entrezGeneIdIndex == -1 && hugoGeneSymbolIndex == -1) { - fatalError("Copy number file header must contain at least one of the following: " + ENTREZ_GENE_ID_COLUMN + ", " + HUGO_SYMBOL_COLUMN); - } - int firstSamplePosition = getFirstDataColumn( values ); - // error if no sample id contains SampleNamePrefix - if ( NO_POSITION == firstSamplePosition ) { - fatalError( "no sample id contains in , '" + file + "'."); - } - - SAMPLES = values.length; // - firstSamplePosition; - String[]samples = new String[SAMPLES]; - HashSet tempSamplesNames = new HashSet(); - for (int i=firstSamplePosition;i, '" + file + "'."); - } - tempSamplesNames.add( samples[i] ); - } - LOG.info(file+": "+(SAMPLES-firstSamplePosition)+" SAMPLES"); - - String line; - while((line=in.readLine())!=null) { - values = line.split("\t"); - CanonicalGene gene = resolveCanonicalGene(values, entrezGeneIdIndex, hugoGeneSymbolIndex); - if (gene==null) { - continue; - } - - Long entrez = gene.getEntrezGeneId(); - if (!map.containsKey(entrez)) { - ArrayList tmp = new ArrayList(); - for (int i = firstSamplePosition;i, '" + file + "'."); - } - } - - LOG.info(file+": "+ map.size() +" GENES"); - if ( map.isEmpty() ) { - fatalError( "no gene IDs in copy number file '" + file + "'."); - } - } catch (IOException e) { - fatalError( "cannot read copy number file '" + file + "'."); - } - return map; - } - - /** - * Return the truncated version of a TCGA sample name - */ - private static String truncatedSampleName(String name) { - if (!name.startsWith("TCGA-")) { - return name; - } - - String truncatedName = ""; - int dash = 0; - for (int i=0;i s, String delimiter) { - if (s.isEmpty()) return ""; - - Iterator iter = s.iterator(); - StringBuffer buffer = new StringBuffer(iter.next()); - while (iter.hasNext()) { - buffer.append(delimiter).append(iter.next()); - } - return buffer.toString(); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/RemoveCancerStudy.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/RemoveCancerStudy.java deleted file mode 100644 index ad51568335f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/RemoveCancerStudy.java +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; - -/** - * Command Line Tool to Remove a Single Cancer Study. - */ -public class RemoveCancerStudy extends ConsoleRunnable { - - public void run() { - try { - if (args.length < 1) { - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - throw new UsageException( - "removeCancerStudy", - null, - ""); - } - String cancerStudyIdentifier = args[0]; - - SpringUtil.initDataSource(); - ProgressMonitor.setCurrentMessage( - "Checking if Cancer study with identifier " + - cancerStudyIdentifier + - " already exists before removing..."); - if (DaoCancerStudy.doesCancerStudyExistByStableId(cancerStudyIdentifier)) { - ProgressMonitor.setCurrentMessage( - "Cancer study with identifier " + - cancerStudyIdentifier + - " found in database, removing..."); - DaoCancerStudy.deleteCancerStudy(cancerStudyIdentifier); - } - else { - ProgressMonitor.setCurrentMessage( - "Cancer study with identifier " + - cancerStudyIdentifier + - " does not exist the the database, not removing..."); - } - } catch (RuntimeException e) { - throw e; - } catch (DaoException e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public RemoveCancerStudy(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new RemoveCancerStudy(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ResetDatabase.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ResetDatabase.java deleted file mode 100644 index 82cad8990f0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ResetDatabase.java +++ /dev/null @@ -1,99 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; - -/** - * Empty the database. - * - * @author Ethan Cerami - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -public class ResetDatabase { - - public static final int MAX_RESET_SIZE = 6; - - /** - * Remove all records from any size database. - * Whenever a new Dao* class is defined, must add its deleteAllRecords() method here. - * - * @throws DaoException - */ - public static void resetAnySizeDatabase() throws DaoException { - System.out.print("resetting all database."); - DaoUser.deleteAllRecords(); - DaoUserAuthorities.deleteAllRecords(); - DaoTypeOfCancer.deleteAllRecords(); - DaoCancerStudy.deleteAllRecords(); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - daoGene.deleteAllRecords(); - DaoGeneset.deleteAllRecords(); - DaoInfo.clearVersion(); - DaoSampleProfile.deleteAllRecords(); - DaoGeneticAlteration daoGenetic = DaoGeneticAlteration.getInstance(); - daoGenetic.deleteAllRecords(); - DaoMutSig.deleteAllRecords(); - DaoGeneticProfile.deleteAllRecords(); - DaoSampleList daoSampleList = new DaoSampleList(); - daoSampleList.deleteAllRecords(); - DaoClinicalData.deleteAllRecords(); - DaoClinicalEvent.deleteAllRecords(); - DaoCopyNumberSegmentFile.deleteAllRecords(); - DaoMutation.deleteAllRecords(); - DaoGeneticProfileSamples.deleteAllRecords(); - DaoPatient.deleteAllRecords(); - DaoSample.deleteAllRecords(); - System.out.println("all database reset."); - } - - public static void resetDatabase() throws DaoException { - - // safety measure: don't reset a big database - if (MAX_RESET_SIZE < DaoCancerStudy.getCount()) { - throw new DaoException("Database has " + DaoCancerStudy.getCount() + - " studies, and we don't reset a database with more than " + MAX_RESET_SIZE + " records."); - } else { - resetAnySizeDatabase(); - } - - } - - public static void main(String[] args) throws DaoException { - SpringUtil.initDataSource(); - StatDatabase.statDb(); - ResetDatabase.resetDatabase(); - System.err.println("Database Cleared and Reset."); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/StatDatabase.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/StatDatabase.java deleted file mode 100644 index ecf160aa089..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/StatDatabase.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.DatabaseProperties; - -/** - * Command Line Tool to Output Basic Database Stats, including Host Name, DB Name, and User Name / Password. - * - */ -public class StatDatabase { - - public static void main(String[] args) throws DaoException { - statDb(); - } - - public static void statDb() { - DatabaseProperties dbProperties = DatabaseProperties.getInstance(); - String host = dbProperties.getDbHost(); - String userName = dbProperties.getDbUser(); - String password = dbProperties.getDbPassword(); - String database = dbProperties.getDbName(); - System.out.println ("Host: " + host); - System.out.println ("User Name: " + userName); - System.out.println ("Password: " + password); - System.out.println ("Database: " + database); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/TransactionalScriptRunner.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/TransactionalScriptRunner.java deleted file mode 100644 index 7ee8d94af52..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/TransactionalScriptRunner.java +++ /dev/null @@ -1,109 +0,0 @@ -package org.mskcc.cbio.portal.scripts; - -import java.io.File; - -import org.mskcc.cbio.portal.util.SpringUtil; -import org.mskcc.cbio.portal.util.TransactionalScripts; -import org.springframework.context.support.FileSystemXmlApplicationContext; -import org.springframework.transaction.TransactionStatus; -import org.springframework.transaction.support.TransactionCallback; -import org.springframework.transaction.support.TransactionTemplate; - -/** - * A high-level script runner than can be used to run a batch of scripts within a - * transactional context. It's handy loading a batch of data of different types. - * This is already deprecated, because in the long run everything should be - * Runnable and/or work using Spring Batch or similar, but this is a quick and - * easy way to get a transactional block of data loaded through different - * import scripts defined elsewhere. - * - * The principle is a simple one: we get a set of lines on an input stream and - * we read from it. The lines are parsed into a class and an array of String - * arguments, which are then passed to the corresponding class as a call to - * their static main method. All this happens within a single JVM context, - * which will enclose a dependency-injected Spring context file. So we actually - * configure the whole caboodle (nastily) from Spring itself. - * - * Typically we'd expect two context files to be used: one for the database - * (which will be constant for most applications) and a second which which will - * be generated for a study load. So a Python wrapper can generate the second - * file, and pass it with a DB file configured for the whole portal to load - * a study transactionally. This pushes some of the logic into the Python code, - * but does mean that load errors don't corrupt the whole database. - * - * @author stuartw - * - */ -public class TransactionalScriptRunner extends ConsoleRunnable { - - private TransactionTemplate transactionTemplate; - - private TransactionalScriptRunner(String[] args) { - super(args); - } - - public static void main (String[] args) { - (new TransactionalScriptRunner(args)).run(); - } - - public void run () { - String result = null; - - if (args.length == 0) { - throw new UsageException("TransactionalScriptRunner", "context file", "context_file"); - } - - FileSystemXmlApplicationContext context = null; - - // Load the context files. This should set up the DB and core - try { - - // Convert files to URLs to make them work as absolutes - // See: Javadocs for FileSystemXmlApplicationContext - for(int i = 0; i < args.length; i++) { - args[i] = new File(args[i]).toURI().toURL().toString(); - } - - context = new FileSystemXmlApplicationContext(args); - - // Inject the context into SpringUtil, so we don't need to initialize again. - // This ensures that the XML files from the command line provide a complete - // context and we don't get data sources later from anywhere else. - SpringUtil.initDataSource(context); - - // Set up the transaction template - transactionTemplate = (TransactionTemplate) context.getBean("scriptTransactionTemplate"); - if (transactionTemplate == null) { - throw new Exception("Can't find transaction template in Spring context"); - } - - // Locate the scripts data - TransactionalScripts scripts = context.getBean(TransactionalScripts.class); - - // And run the scripts - runInTransaction(scripts); - - } catch (Exception e) { - result = e.getLocalizedMessage(); - } finally { - if (context != null) { - context.close(); - } - } - - // If something went wrong, notify - if (result != null) { - throw new RuntimeException(result); - } - } - - public void runInTransaction(final TransactionalScripts scripts) { - transactionTemplate.execute(new TransactionCallback() { - // the code in this method executes in a transactional context - public Object doInTransaction(TransactionStatus status) { - scripts.run(); - return null; - } - }); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/TrimmedProperties.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/TrimmedProperties.java deleted file mode 100644 index 8cb0f6e37f9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/TrimmedProperties.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ -package org.mskcc.cbio.portal.scripts; - -import java.util.Properties; - -@SuppressWarnings("serial") -/** - * This class overrides getProperties method to return the trimmed - * value of the property. - * - * @author pieterlukasse - * - */ -public class TrimmedProperties extends Properties { - - @Override - public String getProperty(String key) { - if (super.getProperty(key) == null) - return null; - else - return super.getProperty(key).trim(); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/UpdateCancerStudy.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/UpdateCancerStudy.java deleted file mode 100644 index af8a5ba9988..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/UpdateCancerStudy.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.model.*; - - -/** - * Command Line Tool to update the status of a Single Cancer Study. - */ -public class UpdateCancerStudy extends ConsoleRunnable { - public void run() { - try { - // check args - String progName = "updateCancerStudy"; - String argSpec = " "; - if (args.length < 2) { - // an extra --noprogress option can be given to avoid the messages regarding memory usage and % complete - throw new UsageException( - progName, - null, - argSpec); - } - - String cancerStudyIdentifier = args[0]; - String cancerStudyStatus = args[1]; - //validate: - DaoCancerStudy.Status status; - try { - status = DaoCancerStudy.Status.valueOf(cancerStudyStatus); - } - catch (IllegalArgumentException ia) { - throw new UsageException(progName, null, argSpec, - "Invalid study status parameter: " + cancerStudyStatus); - } - - SpringUtil.initDataSource(); - CancerStudy theCancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyIdentifier); - if (theCancerStudy == null) { - throw new IllegalArgumentException("cancer study identified by cancer_study_identifier '" - + cancerStudyIdentifier + "' not found in dbms or inaccessible to user."); - } - ProgressMonitor.setCurrentMessage("Updating study status to : '" + status.name() + "' for study: " + cancerStudyIdentifier); - DaoCancerStudy.setStatus(status, cancerStudyIdentifier); - } catch (RuntimeException e) { - throw e; - } catch (DaoException e) { - throw new RuntimeException(e); - } - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public UpdateCancerStudy(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new UpdateCancerStudy(args); - runner.runInConsole(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/UpdateGenePanel.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/UpdateGenePanel.java deleted file mode 100644 index 128f28a7c63..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/UpdateGenePanel.java +++ /dev/null @@ -1,152 +0,0 @@ -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.ProgressMonitor; - -import java.io.*; -import java.util.*; - -import joptsimple.*; - -import static org.mskcc.cbio.portal.util.GenePanelUtil.extractGenes; -import static org.mskcc.cbio.portal.util.GenePanelUtil.extractPropertyValue; - -/** - * Updates an existing, potentially in use gene panel. - * - * @author jtquach1 - */ -public class UpdateGenePanel extends ConsoleRunnable { - - private File genePanelFile; - private static final Scanner s = new Scanner(System.in); - - @Override - public void run() { - try { - String progName = "UpdateGenePanel"; - String description = "Update gene panel files."; - - OptionParser parser = new OptionParser(); - OptionSpec data = parser - .accepts("data", "gene panel file") - .withRequiredArg() - .describedAs("data_file.txt") - .ofType(String.class); - parser.accepts("noprogress", - "this option can be given to avoid the messages regarding memory usage and % complete"); - - OptionSet options; - try { - options = parser.parse(args); - } catch (OptionException e) { - throw new UsageException(progName, description, parser, e.getMessage()); - } - File genePanel_f; - if (options.has(data)) { - genePanel_f = new File(options.valueOf(data)); - } else { - throw new UsageException(progName, description, parser, "'data' argument required."); - } - - setFile(genePanel_f); - importData(); - } catch (RuntimeException e) { - throw e; - } catch (Exception e) { - throw new RuntimeException(e); - } - } - - public void importData() throws Exception { - ProgressMonitor.setCurrentMessage("Reading data from: " + genePanelFile.getAbsolutePath()); - Properties properties = new Properties(); - properties.load(new FileInputStream(genePanelFile)); - - ProgressMonitor.setCurrentMessage("Retrieving matching gene panel from database."); - String stableId = extractPropertyValue("stable_id", properties, true); - Set canonicalGenes = extractGenes(properties, true); - GenePanel genePanel = DaoGenePanel.getGenePanelByStableId(stableId); - - if (genePanel == null) { - ProgressMonitor.logWarning("Gene panel " + stableId + " does not exist in the database! Exiting."); - return; - } - - if (canonicalGenes == null || canonicalGenes.isEmpty()) { - ProgressMonitor.logWarning("Incoming gene panel is empty, which would result in the removal of all genes from gene panel " + stableId + ". Exiting."); - return; - } - - System.err.println("WARNING: You are about to make the following changes to gene panel " + stableId + ":"); - DaoGenePanel.updatePreview(genePanel, canonicalGenes); - System.err.println("Proceed? (Y/n)"); - - if (confirmContinue()) { - if (DaoSampleProfile.sampleProfileMappingExistsByPanel(genePanel.getInternalId())) { - ProgressMonitor.setCurrentMessage("Gene panel " + stableId - + " already exists in database and is being used. Proceeding with gene panel update!"); - } else { - ProgressMonitor.setCurrentMessage("Gene panel " + stableId - + " already exists in database but is unused. Proceeding with gene panel update!"); - } - DaoGenePanel.updateGenePanel(genePanel, canonicalGenes); - } - } - - private static boolean confirmContinue() { - boolean confirmed = false; - String answer = s.nextLine().toUpperCase(); - - switch (answer) { - case "Y": - System.err.println("Proceeding with update script."); - confirmed = true; - break; - case "N": - System.err.println("Exiting update script."); - break; - default: - System.err.println("Unrecognized input, exiting."); - break; - } - - return confirmed; - } - - public void setFile(File genePanelFile) { - this.genePanelFile = genePanelFile; - } - - /** - * Makes an instance to run with the given command line arguments. - * - * @param args the command line arguments to be used - */ - public UpdateGenePanel(String[] args) { - super(args); - } - - /** - * Runs the command as a script and exits with an appropriate exit code. - * - * @param args the arguments given on the command line - */ - public static void main(String[] args) { - ConsoleRunnable runner = new UpdateGenePanel(args); - System.out.print( - "WARNING: This script is ONLY for updating a gene panel, not for adding a new gene panel.\n" + - "To add a new gene panel, run the ImportGenePanel script.\n" + - "If you are making changes to an existing gene panel due to a miscount of genes, proceed.\n" + - "Otherwise, if you would like to add a new version of a gene panel, please exit this script\n" + - "and import the gene panel with a new stable ID!\n" + - "Will you proceed to update an existing gene panel? (Y/n)\n" - ); - - if (confirmContinue()) { - runner.runInConsole(); - s.close(); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/UpdateMetaData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/UpdateMetaData.java deleted file mode 100644 index d9669ed56f2..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/UpdateMetaData.java +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.model.GeneticProfile; - -import java.io.File; - -/** - * Command Line to Update Meta Data Associated with a Genomic Profile. - */ -public class UpdateMetaData { - - public static void main(String[] args) throws Exception { - String usageLine = "command line usage: updateMetaData.pl "; - if (args.length < 1) { - System.err.println(usageLine); - return; - } - - ProgressMonitor.setConsoleMode(true); - SpringUtil.initDataSource(); - File descriptorFile = new File(args[0]); - - GeneticProfile geneticProfile = GeneticProfileReader.loadGeneticProfileFromMeta(descriptorFile); - - GeneticProfile existingGeneticProfile = DaoGeneticProfile.getGeneticProfileByStableId - (geneticProfile.getStableId()); - - // TODO: handle null existingGeneticProfile - System.out.println ("Found Genetic Profile: " + existingGeneticProfile.getStableId()); - System.out.println ("Changing name from: " + existingGeneticProfile.getProfileName()); - System.out.println (" to: " + geneticProfile.getProfileName()); - System.out.println ("Changing desc from: " + existingGeneticProfile.getProfileDescription()); - System.out.println (" to: " + geneticProfile.getProfileDescription()); - - boolean flag = DaoGeneticProfile.updateNameAndDescription - (existingGeneticProfile.getGeneticProfileId(), - geneticProfile.getProfileName(), geneticProfile.getProfileDescription()); - - if (flag) { - System.out.println ("Success!"); - } else { - System.out.println ("Update Failed!"); - } - - ConsoleUtil.showWarnings(); - System.err.println("Done."); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/UsageException.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/UsageException.java deleted file mode 100644 index 3b7cce2fbab..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/UsageException.java +++ /dev/null @@ -1,134 +0,0 @@ -package org.mskcc.cbio.portal.scripts; - -import java.io.IOException; - -import joptsimple.OptionParser; - -/** - * RuntimeException to signal invalid command line usage - * - * @see {@link ConsoleRunnable} - */ -public class UsageException extends IllegalArgumentException { - - // the name of the command - private String prog; - // an OptionParser configured with the accepted options - private OptionParser parser; - // a string describing the arguments accepted - private String argspec; - // short description of the tool to display in the usage line - private String description; - // a final error/exit message - private String msg; - - /** - * Instantiates a UsageException using an OptionParser. - * - * @param prog the name of the command - * @param description short description of the tool to display in - * the usage line - * @param parser an OptionParser configured with the accepted options - */ - public UsageException( - String prog, - String description, - OptionParser parser) { - super("Invalid usage of the " + prog + " script"); - this.prog = prog; - this.description = description; - this.parser = parser; - } - - /** - * Instantiates a UsageException using an explicit argument specification. - * - * @param prog the name of the command - * @param description short description of the tool to display in - * the usage line - * @param argspec the string describing the arguments accepted - * - * @see - * chapter 12.01 of the POSIX specification, on utility argument - * syntax conventions - * - */ - public UsageException( - String prog, - String description, - String argspec) { - super("Invalid usage of the " + prog + " script"); - this.prog = prog; - this.description = description; - this.argspec = argspec; - } - - /** - * Instantiates a UsageException using an OptionParser. - * - * @param prog the name of the command - * @param description short description of the tool to display in - * the usage line - * @param parser an OptionParser configured with the accepted options - */ - public UsageException( - String prog, - String description, - OptionParser parser, - String msg) { - super(msg); - this.prog = prog; - this.description = description; - this.parser = parser; - this.msg = msg; - } - - /** - * Instantiates a UsageException using an explicit argument specification. - * - * @param prog the name of the command - * @param description short description of the tool to display in - * the usage line - * @param argspec the string describing the arguments accepted - * @param msg a final error/exit message - * - * @see - * chapter 12.01 of the POSIX specification, on utility argument - * syntax conventions - * - */ - public UsageException( - String prog, - String description, - String argspec, - String msg) { - super(msg); - this.prog = prog; - this.description = description; - this.argspec = argspec; - this.msg = msg; - } - - /** - * Prints a helpful message about command line usage of the utility. - */ - public void printUsageLine() { - if (msg != null){ - System.err.printf("%s\n", msg); - } - if (argspec != null) { - System.err.printf("usage: %s %s\n", prog, argspec); - } - if (description != null) { - System.err.printf("%s\n", description); - } - if (parser != null) { - try { - System.err.printf("Command line arguments for %s:\n", prog); - parser.printHelpOn(System.err); - } catch (IOException e) { - e.printStackTrace(); - } - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/ValidationUtils.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/ValidationUtils.java deleted file mode 100644 index 8a9bd1a9b4f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/ValidationUtils.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.IOException; - -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.model.CancerStudy; - - -/** - * Utility validation methods shared by different importers. - * - * @author pieterlukasse - */ -public class ValidationUtils { - - /** - * Utility method to validate the chromosome. Should be 1-22 or X, Y. - * It also makes a small exception for 23 and 24: 23 is interpreted as X and 24 is interpreted as Y - * - * @param chrom - * - * @throws IllegalArgumentException when chromosome is invalid, or even NumberFormatException - * when not a number and other than X or Y. - */ - public static int validateChromosome(String chrom) { - if (chrom.equalsIgnoreCase("X")) - chrom = "23"; - if (chrom.equalsIgnoreCase("Y")) - chrom = "24"; - int chromNr = Integer.parseInt(chrom); - if (chromNr > 24) { - throw new IllegalArgumentException("Error: Invalid chromosome [" + chrom + "]"); - } - return chromNr; - } - - /** - * Gets internal cancer study id by stable id and throws an - * exception when study is not found. - * - * @param cancerStudy String (e.g. "tcga_gbm") - * @return the cancer study internal id - * @throws IOException - * @throws DaoException when study cannot be found - */ - public static int getInternalStudyId(final String cancerStudyIdentifier) throws IOException, DaoException - { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyIdentifier); - - if (cancerStudy == null) { - throw new DaoException("no CancerStudy associated with \"" - + cancerStudyIdentifier + "\" cancer_study_identifier"); - } - - return cancerStudy.getInternalId(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/AbstractDrugInfoImporter.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/AbstractDrugInfoImporter.java deleted file mode 100644 index c5ceb83da76..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/AbstractDrugInfoImporter.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts.drug; - -import org.mskcc.cbio.portal.dao.DaoException; - -abstract public class AbstractDrugInfoImporter { - public static String DRUG_INTERACTION_TYPE = "DRUG_TARGET"; - - private DrugDataResource dataResource; - - public DrugDataResource getDataResource() { - return dataResource; - } - - public void setDataResource(DrugDataResource dataResource) { - this.dataResource = dataResource; - } - - abstract public void importData() throws Exception; -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/DrugDataResource.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/DrugDataResource.java deleted file mode 100644 index 469fe7165ec..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/DrugDataResource.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts.drug; - -import java.io.IOException; -import java.io.InputStream; -import java.net.URL; - -public class DrugDataResource { - private String name; - private String resourceURL; - private String version; - - public DrugDataResource() { - } - - public DrugDataResource(String name, String resourceURL, String version) { - this.name = name; - this.resourceURL = resourceURL; - this.version = version; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getResourceURL() { - return resourceURL; - } - - public void setResourceURL(String resourceURL) { - this.resourceURL = resourceURL; - } - - public String getVersion() { - return version; - } - - public void setVersion(String version) { - this.version = version; - } - - public InputStream getResourceAsStream() throws IOException { - URL url = new URL(resourceURL); - return url.openStream(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/ImportPiHelperData.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/ImportPiHelperData.java deleted file mode 100644 index ff162516460..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/ImportPiHelperData.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts.drug; - -import org.mskcc.cbio.portal.scripts.drug.internal.PiHelperImporter; - -import java.io.FileInputStream; -import java.text.SimpleDateFormat; -import java.util.Calendar; - -public class ImportPiHelperData { - public static void main(String arg[]) throws Exception { - if(arg.length < 2) { - System.err.println( - "Missing options!\nUsage: " - + ImportPiHelperData.class.getSimpleName() - + " drugs.tsv drugtargets.tsv" - ); - return; - } - - Calendar cal = Calendar.getInstance(); - SimpleDateFormat format = new SimpleDateFormat("yyyy-MM"); - String today = format.format(cal.getTime()); - DrugDataResource pihelper = new DrugDataResource( - "PiHelper", - "https://bitbucket.org/armish/pihelper/downloads/pihelper_data_20121107.zip", - today - ); - - PiHelperImporter piHelperImporter = new PiHelperImporter(pihelper); - piHelperImporter.setDrugInfoFile(new FileInputStream(arg[0].trim())); - piHelperImporter.setDrugTargetsFile(new FileInputStream(arg[1].trim())); - - piHelperImporter.importData(); - - System.out.println("PiHelper import done!"); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/internal/DrugBankResource.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/internal/DrugBankResource.java deleted file mode 100644 index 17e2ed335a7..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/internal/DrugBankResource.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts.drug.internal; - -import org.mskcc.cbio.portal.scripts.drug.DrugDataResource; - -import java.io.IOException; -import java.io.InputStream; -import java.util.zip.GZIPInputStream; - -public class DrugBankResource extends DrugDataResource { - @Override - public InputStream getResourceAsStream() throws IOException { - if(getResourceURL().toLowerCase().endsWith("gz")) - return new GZIPInputStream(super.getResourceAsStream()); - else - return super.getResourceAsStream(); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/internal/PiHelperImporter.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/internal/PiHelperImporter.java deleted file mode 100644 index 6864edcae35..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/internal/PiHelperImporter.java +++ /dev/null @@ -1,190 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts.drug.internal; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Drug; -import org.mskcc.cbio.portal.scripts.drug.AbstractDrugInfoImporter; -import org.mskcc.cbio.portal.scripts.drug.DrugDataResource; - -import java.io.InputStream; -import java.util.HashMap; -import java.util.List; -import java.util.Scanner; - -public class PiHelperImporter extends AbstractDrugInfoImporter { - private static final String separator = "\t"; - - private InputStream drugInfoFile; - private InputStream drugTargetsFile; - private HashMap nameToDrugMap = new HashMap(); - - // Ugly solution, but makes debugging much easier - private final Drug DRUG_SKIP = new Drug(); - - public PiHelperImporter(DrugDataResource dataResource) throws DaoException { - super.setDataResource(dataResource); - } - - public InputStream getDrugInfoFile() { - return drugInfoFile; - } - - public void setDrugInfoFile(InputStream drugInfoFile) { - this.drugInfoFile = drugInfoFile; - } - - public InputStream getDrugTargetsFile() { - return drugTargetsFile; - } - - public void setDrugTargetsFile(InputStream drugTargetsFile) { - this.drugTargetsFile = drugTargetsFile; - } - - @Override - public void importData() throws Exception { - // These are necessary files, hence the check below - if(getDrugInfoFile() == null || getDrugTargetsFile() == null) { - throw new IllegalArgumentException("Please provide drug and drug targets before you stat importing."); - } - MySQLbulkLoader.bulkLoadOff(); - importDrugs(); - importDrugTargets(); - } - - private void importDrugTargets() throws Exception { - Scanner scanner = new Scanner(getDrugTargetsFile()); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - - int lineNo = 0, saved = 0; - while (scanner.hasNextLine()) { - String line = scanner.nextLine(); - if(line.startsWith("#")) continue; - if((++lineNo) == 1) continue; - - String[] tokens = line.split(separator, -1); - assert tokens.length == 5; - if(tokens.length < 5) continue; - /* - 0 - PiHelperId - 1 - Symbol - 2 - Drug - 3 - DataSources - 4 - References - */ - - String geneSymbol = tokens[1].trim(); - String drugName = tokens[2].trim(); - String datasources = tokens[3].trim(); - String refs = tokens[4].trim(); - - Drug drug = nameToDrugMap.get(drugName); - - if(drug==null || drug == DRUG_SKIP) - continue; - - CanonicalGene gene = daoGeneOptimized.getNonAmbiguousGene(geneSymbol); - } - - scanner.close(); - - System.out.println("Number of drug-targets imported: " + saved); - } - - private void importDrugs() throws Exception { - nameToDrugMap.clear(); - - Scanner scanner = new Scanner(getDrugInfoFile()); - int lineNo = 0; - while (scanner.hasNextLine()) { - String line = scanner.nextLine(); - if(line.startsWith("#")) continue; - if((++lineNo) == 1) continue; - - try { - importDrug(line); - } catch (Exception e) { - System.err.println("Failed to load drug "+line); - e.printStackTrace(); - } - - } - - scanner.close(); - - System.out.println("Number of drugs imported: " + nameToDrugMap.keySet().size()); - } - - private void importDrug(String line) throws DaoException { - String[] t = line.split(separator, -1); - assert t.length == 12; - /* - 0 PiHelper_Drug_ID - 1 Drug_Name - 2 Drug_Synonyms - 3 Description - 4 Number_of_Targets - 5 ATC_Codes - 6 isFdaApproved - 7 isCancerDrug - 8 isNutraceutical - 9 Number_Of_Clinical_Trials - 10 DataSources - 11 References - */ - - Drug drug = new Drug( - t[0].trim(), // id - t[1].trim(), // name - t[3].trim().replace("\"", ""), // desc - t[2].trim(), // synonyms - t[11].trim(), // refs - t[10].trim(), // resource - t[5].trim(), // atc - Boolean.parseBoolean(t[6].trim()), // fda approval - Boolean.parseBoolean(t[7].trim()), // is cancer drug - Boolean.parseBoolean(t[8].trim()), // is Nutraceutical - Integer.parseInt(t[9]) - ); - - if(drug.isNutraceuitical()) { // We don't want these drugs within the database - nameToDrugMap.put(drug.getName(), DRUG_SKIP); - } else { - nameToDrugMap.put(drug.getName(), drug); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/internal/PiHelperResource.java b/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/internal/PiHelperResource.java deleted file mode 100644 index 23b8a30cb1b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/scripts/drug/internal/PiHelperResource.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts.drug.internal; - -import org.mskcc.cbio.portal.scripts.drug.DrugDataResource; - -public class PiHelperResource extends DrugDataResource { -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/BioGeneServlet.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/BioGeneServlet.java deleted file mode 100644 index 4b9dc3dadb2..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/BioGeneServlet.java +++ /dev/null @@ -1,117 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStreamReader; -import java.io.PrintWriter; -import java.net.URL; -import java.net.URLConnection; - -/** - * Servlet class to request BioGene information from BioGene web service. - * - * @author Selcuk Onur Sumer - */ -public class BioGeneServlet extends HttpServlet -{ - public final static String BIO_GENE_SERVICE = "https://biogene.herokuapp.com/retrieve.do"; - public final static String NA = "NA"; - - private static String makeRequest(String query, - String org, - String format) throws IOException - { - StringBuilder urlBuilder = new StringBuilder(); - - urlBuilder.append(BIO_GENE_SERVICE); - urlBuilder.append("?query=").append(query); - urlBuilder.append("&org=").append(org); - urlBuilder.append("&format=").append(format); - - String url = urlBuilder.toString(); - - URL bioGene = new URL(url); - URLConnection bioGeneCxn = bioGene.openConnection(); - BufferedReader in = new BufferedReader( - new InputStreamReader(bioGeneCxn.getInputStream())); - - String line; - StringBuilder sb = new StringBuilder(); - - // Read all - while((line = in.readLine()) != null) - { - sb.append(line); - } - - in.close(); - - return sb.toString(); - } - - - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse)throws ServletException, IOException - { - doPost(httpServletRequest, httpServletResponse); - } - - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse)throws ServletException, IOException - { - PrintWriter out = httpServletResponse.getWriter(); - - String query = httpServletRequest.getParameter("query"); - String org = httpServletRequest.getParameter("org"); - String format = httpServletRequest.getParameter("format"); - - String xml = makeRequest(query, org, format); - - if (format.equalsIgnoreCase("json")) - { - httpServletResponse.setContentType("application/json"); - } - else - { - httpServletResponse.setContentType("text/xml;charset=UTF-8"); - } - - out.write(xml); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/CalcCoExp.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/CalcCoExp.java deleted file mode 100644 index 547fa657e08..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/CalcCoExp.java +++ /dev/null @@ -1,115 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.*; -import java.util.*; -import java.lang.Math; - -import org.json.simple.JSONObject; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.json.simple.JSONValue; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; - -import org.apache.commons.math3.stat.correlation.PearsonsCorrelation; -import org.apache.commons.math3.stat.correlation.SpearmansCorrelation; -import org.mskcc.cbio.portal.util.CoExpUtil; -import org.mskcc.cbio.portal.util.XssRequestWrapper; - -/** - * Calculate co-expression scores for two incoming arrays - * - * @param : geneXarr -- String of profile data for the x axis gene - * @param : geneYarr -- String of profile data for the y axis gene - * @return : Pearson and spearman co-expression scores - * - */ -public class CalcCoExp extends HttpServlet { - - /** - * Handles HTTP GET Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - doPost(httpServletRequest, httpServletResponse); - } - - /** - * Handles the HTTP POST Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - - String geneXArr = httpServletRequest.getParameter("gene_x"); - String geneYArr = httpServletRequest.getParameter("gene_y"); - - String[] _geneXstrArr = geneXArr.split("\\s+"); - String[] _geneYstrArr = geneYArr.split("\\s+"); - - //Convert strings to doubles - double[] _geneXvalArr = new double[_geneXstrArr.length]; - double[] _geneYvalArr = new double[_geneYstrArr.length]; - for (int i = 0; i < _geneXstrArr.length; i++) { - double _valX = Double.parseDouble(_geneXstrArr[i]); - double _valY = Double.parseDouble(_geneYstrArr[i]); - _geneXvalArr[i] = _valX; - _geneYvalArr[i] = _valY; - } - - //Calculate Scores - PearsonsCorrelation pearsonsCorrelation = new PearsonsCorrelation(); - SpearmansCorrelation spearmansCorrelation = new SpearmansCorrelation(); - double pearson = pearsonsCorrelation.correlation(_geneXvalArr, _geneYvalArr); - double spearman = spearmansCorrelation.correlation(_geneXvalArr, _geneYvalArr); - - httpServletResponse.setContentType("text/html"); - PrintWriter out = httpServletResponse.getWriter(); - JSONValue.writeJSONString(pearson + " " + spearman, out); - } -} - - - diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/CalcFisherExactTest.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/CalcFisherExactTest.java deleted file mode 100644 index 16073e48ff0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/CalcFisherExactTest.java +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.*; -import java.util.*; - -import org.json.simple.JSONValue; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.mskcc.cbio.portal.stats.FisherExact; - -/** - * Calculate the cumulative (two-tail) p-value out of fisher exact test - * - * @param a a, b, c, d are the four cells in a 2x2 matrix - * @param b - * @param c - * @param d - * @return two-tailed P-value (right or left, whichever is smallest) - * - */ -public class CalcFisherExactTest extends HttpServlet { - - /** - * Handles HTTP GET Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - doPost(httpServletRequest, httpServletResponse); - } - - /** - * Handles the HTTP POST Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - - String[] dataSets = httpServletRequest.getParameter("params").split(":"); - String result = ""; - for (String dataSet : dataSets) { - if (!dataSet.isEmpty()) { - int a = Integer.parseInt(dataSet.split(" ")[0]); - int b = Integer.parseInt(dataSet.split(" ")[1]); - int c = Integer.parseInt(dataSet.split(" ")[2]); - int d = Integer.parseInt(dataSet.split(" ")[3]); - FisherExact fisher = new FisherExact(a + b + c + d); - double pValue = fisher.getTwoTailedP(a, b, c, d); - result = result.concat(String.valueOf(pValue) + " "); - } - } - result = result.replaceAll("\\s+$", ""); - - httpServletResponse.setContentType("text/html"); - PrintWriter out = httpServletResponse.getWriter(); - JSONValue.writeJSONString(result, out); - } -} - - - diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/CheckDarwinAccessServlet.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/CheckDarwinAccessServlet.java deleted file mode 100644 index 9c7ace9c311..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/CheckDarwinAccessServlet.java +++ /dev/null @@ -1,365 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.mskcc.cbio.portal.util.SpringUtil; -import org.mskcc.cbio.portal.util.GlobalProperties; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import org.springframework.http.*; -import org.springframework.web.client.RestTemplate; -import org.springframework.util.LinkedMultiValueMap; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.context.support.SpringBeanAutowiringSupport; - -import org.apache.commons.cli.*; -import org.apache.commons.lang3.builder.ToStringBuilder; - -import java.io.*; -import java.util.*; -import javax.annotation.Generated; -import com.fasterxml.jackson.annotation.*; -import java.util.regex.Pattern; - -import javax.servlet.http.*; -import javax.servlet.ServletConfig; -import javax.servlet.ServletException; - -/** - * - * @author ochoaa - */ -@JsonInclude(JsonInclude.Include.NON_NULL) -@Generated("org.jsonschema2pojo") -@JsonPropertyOrder({ -"darwinAuthResponse", -"p_userName", -"p_dmp_pid", -"deidentification_id" -}) -public class CheckDarwinAccessServlet extends HttpServlet { - private static Logger logger = LoggerFactory.getLogger(CheckDarwinAccessServlet.class); - private static final String DDP_INFO_ENDPOINT = "/info"; - - @Override - public void init(ServletConfig config) throws ServletException { - super.init(config); - SpringBeanAutowiringSupport.processInjectionBasedOnServletContext(this, - config.getServletContext()); - } - - public static class CheckDarwinAccess { - private static String darwinAuthUrl = GlobalProperties.getDarwinAuthCheckUrl(); - private static String ddpResponseUrl = GlobalProperties.getDdpResponseUrl(); - private static String cisUser = GlobalProperties.getCisUser(); - public static Pattern sampleIdRegex = Pattern.compile(GlobalProperties.getDarwinRegex()); - - public static String checkAccess(HttpServletRequest request) { - if (!existsDarwinProperties()) return ""; - // if sample id does not match regex or username matches cis username then return empty string - String userName = GlobalProperties.getAuthenticatedDisplayName().split("@")[0]; - String darwinResponse = ""; - try { - String[] sampleIds = request.getParameter(PatientView.SAMPLE_ID).split(","); - if (sampleIdRegex.matcher(sampleIds[0]).find() && !cisUser.equals(userName)) { - String patientId = request.getParameter(PatientView.PATIENT_ID); - darwinResponse = getResponse(userName, patientId); - } - } - catch (NullPointerException ex) {} - - return darwinResponse; - } - - public static String getResponse(String userName, String patientId){ - RestTemplate restTemplate = new RestTemplate(); - HttpEntity> requestEntity = getRequestEntity(userName, patientId); - ResponseEntity responseEntity = restTemplate.exchange(darwinAuthUrl, HttpMethod.POST, requestEntity, DarwinAccess.class); - String darwinResponse = responseEntity.getBody().getDarwinAuthResponse(); - String deidentificationId = responseEntity.getBody().getDeidentification_Id(); - if (!darwinResponse.equals("valid")) { - return ""; - } - if (deidentificationId.isEmpty()) { - return ""; - } - // construct URL - return ddpResponseUrl + deidentificationId + DDP_INFO_ENDPOINT; - } - - private static HttpEntity> getRequestEntity(String userName, String patientId) { - LinkedMultiValueMap map = new LinkedMultiValueMap<>(); - map.add("p_userName", userName); - map.add("p_dmp_pid", patientId); - HttpHeaders headers = new HttpHeaders(); - headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED); - return new HttpEntity>(map, headers); - } - - public static boolean existsDarwinProperties() { - return (!darwinAuthUrl.isEmpty() && !ddpResponseUrl.isEmpty() && !cisUser.isEmpty() && !GlobalProperties.getDarwinRegex().isEmpty()); - } - } - - public static class DarwinAccess { - /** - * (Required) - **/ - @JsonProperty("darwinAuthResponse") - private String darwinAuthResponse; - /** - * (Required) - **/ - @JsonProperty("p_userName") - private String p_userName; - /** - * (Required) - **/ - @JsonProperty("p_dmp_pid") - private String p_dmp_pid; - /** - * (Required) - **/ - @JsonProperty("deidentification_id") - private String deidentification_id; - - @JsonIgnore - private Map additionalProperties = new HashMap(); - - /** - * No args constructor for use in serialization - **/ - public DarwinAccess() {} - - /** - * @param darwinAuthResponse - * @param p_userName - * @param p_dmp_pid - * @param deidentification_id - **/ - public DarwinAccess(String darwinAuthResponse, String p_userName, String p_dmp_pid, String deidentification_id) { - this.darwinAuthResponse = darwinAuthResponse; - this.p_userName = p_userName; - this.p_dmp_pid = p_dmp_pid; - this.deidentification_id = deidentification_id; - } - - /** - * (Required) - * @return - * The darwinAuthResponse - **/ - @JsonProperty("darwinAuthResponse") - public String getDarwinAuthResponse() { - return darwinAuthResponse; - } - - /** - * (Required) - * @param darwinAuthResponse - * The Darwin authorization response - **/ - @JsonProperty("darwinAuthResponse") - public void setDarwinAuthResponse(String darwinAuthResponse) { - this.darwinAuthResponse = darwinAuthResponse; - } - - public DarwinAccess withDarwinAuthResponse(String darwinAuthResponse) { - this.darwinAuthResponse = darwinAuthResponse; - return this; - } - - /** - * (Required) - * @return - * The p_userName - **/ - @JsonProperty("p_userName") - public String getP_UserName() { - return p_userName; - } - - /** - * (Required) - * @param p_userName - * The p_userName - **/ - @JsonProperty("p_userName") - public void setP_UserName(String p_userName) { - this.p_userName = p_userName; - } - - public DarwinAccess withP_UserName(String p_userName) { - this.p_userName = p_userName; - return this; - } - - /** - * (Required) - * @return - * The p_dmp_pid - **/ - @JsonProperty("p_dmp_pid") - public String getP_Dmp_Pid() { - return p_dmp_pid; - } - - /** - * (Required) - * @param p_dmp_pid - * The p_dmp_pid - **/ - @JsonProperty("p_dmp_pid") - public void setP_Dmp_Pid(String p_dmp_pid) { - this.p_dmp_pid = p_dmp_pid; - } - - /** - * (Required) - * @return - * The deidentification_id - **/ - @JsonProperty("deidentification_id") - public String getDeidentification_Id() { - return deidentification_id; - } - - /** - * (Required) - * @param deidentification_id - * The deidentification_id - **/ - @JsonProperty("deidentification_id") - public void setDeidentification_Id(String deidentification_id) { - this.deidentification_id = deidentification_id; - } - - public DarwinAccess withP_Dmp_Pid(String p_dmp_pid) { - this.p_dmp_pid = p_dmp_pid; - return this; - } - - @Override - public String toString() { - return ToStringBuilder.reflectionToString(this); - } - - @JsonAnyGetter - public Map getAdditionalProperties() { - return this.additionalProperties; - } - - @JsonAnySetter - public void setAdditionalProperty(String name, Object value) { - this.additionalProperties.put(name, value); - } - - public DarwinAccess withAdditionalProperty(String name, Object value) { - this.additionalProperties.put(name, value); - return this; - } - } - - private static Options getOptions(String[] args) { - Options gnuOptions = new Options(); - gnuOptions.addOption("h", "help", false, "shows this help document and quits.") - .addOption("u", "user_name", true, "Username") - .addOption("p", "patient_id", true, "Patient ID") - .addOption("s", "sample_id", true, "Sample ID"); - - return gnuOptions; - } - private static void help(Options gnuOptions, int exitStatus) { - HelpFormatter helpFormatter = new HelpFormatter(); - helpFormatter.printHelp("CheckDarwinAccess", gnuOptions); - System.exit(exitStatus); - } - - /** - * Processes requests for both HTTP GET and POST methods. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - protected void processRequest(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - - String darwinResponse = CheckDarwinAccess.checkAccess(request); - - response.setContentType("text/plain"); - PrintWriter out = response.getWriter(); - try { - out.write(darwinResponse); - } finally { - out.close(); - } - } - - // - /** - * Handles the HTTP GET method. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - @Override - protected void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - processRequest(request, response); - } - - /** - * Handles the HTTP POST method. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - @Override - protected void doPost(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - processRequest(request, response); - } - - /** - * Returns a short description of the servlet. - * @return a String containing servlet description - */ - @Override - public String getServletInfo() { - return "Short description"; - }// -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/CheckGeneSymbolJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/CheckGeneSymbolJSON.java deleted file mode 100644 index a5d741f1442..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/CheckGeneSymbolJSON.java +++ /dev/null @@ -1,120 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.json.simple.JSONArray; -import org.json.simple.JSONValue; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.util.XssRequestWrapper; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.io.PrintWriter; -import java.util.HashMap; -import java.util.Map; - -/** - * A JSON servlet for checking gene symbols - * Is it valid, if so is it an alias? - * Returns valid gene symbols from the DB. - * - */ -public class CheckGeneSymbolJSON extends HttpServlet { - public static final String GENES = "genes"; - - /** - * Initializes the servlet. - */ - public void init() throws ServletException { - super.init(); - } - - protected void doGet(HttpServletRequest request, - HttpServletResponse response) throws ServletException, IOException - { - this.doPost(request, response); - } - - - /** - * Handles HTTP GET Request. - */ - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, - IOException { - new HashMap(); - JSONArray geneArray = new JSONArray(); - String genes = httpServletRequest.getParameter(GENES); - - // we need the raw gene list - if (httpServletRequest instanceof XssRequestWrapper) - { - genes = ((XssRequestWrapper)httpServletRequest).getRawParameter(GENES); - } - - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - // Use the OQL Parser to Extract the Gene Symbols - String[] geneList; - if (genes.length() > 0) { - geneList = genes.split(","); - } else { - geneList = new String[0]; - } - - for(String symbol: geneList) { - Map map = new HashMap(); - JSONArray symbols = new JSONArray(); - for(CanonicalGene gene: daoGene.guessGene(symbol)) { - symbols.add(gene.getStandardSymbol()); - } - map.put("symbols", symbols); - map.put("name", symbol); - - geneArray.add(map); - } - - httpServletResponse.setContentType("application/json"); - PrintWriter out = httpServletResponse.getWriter(); - try { - JSONValue.writeJSONString(geneArray, out); - } finally { - out.close(); - } - - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalAttributesServlet.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalAttributesServlet.java deleted file mode 100644 index 42d857bb373..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalAttributesServlet.java +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.json.simple.JSONArray; -import org.mskcc.cbio.portal.dao.DaoClinicalAttributeMeta; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.ClinicalAttribute; -import org.mskcc.cbio.portal.util.AccessControl; -import org.mskcc.cbio.portal.util.SpringUtil; -import org.mskcc.cbio.portal.util.WebserviceParserUtils; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.io.PrintWriter; -import java.util.List; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; - -public class ClinicalAttributesServlet extends HttpServlet { - private static Logger log = LoggerFactory.getLogger(ClinicalAttributesServlet.class); - - // class which process access control to cancer studies - private AccessControl accessControl; - - /** - * Initializes the servlet. - * - * @throws ServletException - */ - public void init() throws ServletException { - super.init(); - accessControl = SpringUtil.getAccessControl(); - } - - /** - * Takes any sort of patient list parameter in the request - * - * Returns a list of clinical attributes in json format - * - * @param request - * @param response - * @throws ServletException - */ - public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException { - try { - JSONArray toWrite = new JSONArray(); - response.setContentType("text/json"); - - String cancerStudyId = WebserviceParserUtils.getCancerStudyId(request); - - if(cancerStudyId != null) { - CancerStudy cancerStudy = DaoCancerStudy - .getCancerStudyByStableId(cancerStudyId); - if(cancerStudy != null && accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() == 1) { - List clinicalAttributes = DaoClinicalAttributeMeta.getDataByStudy(cancerStudy.getInternalId()); - - - for (ClinicalAttribute attr : clinicalAttributes) { - toWrite.add(ClinicalJSON.reflectToMap(attr)); - } - } - } - - - PrintWriter out = response.getWriter(); - JSONArray.writeJSONString(toWrite, out); - } catch (DaoException e) { - throw new ServletException(e); - } catch (IOException e) { - throw new ServletException(e); - } - } - - public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException { - doGet(request, response); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalFreeFormJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalFreeFormJSON.java deleted file mode 100644 index 79e2451b3a0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalFreeFormJSON.java +++ /dev/null @@ -1,187 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.IOException; -import java.io.PrintWriter; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.json.simple.JSONArray; -import org.json.simple.JSONObject; -import org.json.simple.JSONValue; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoClinicalData; -import org.mskcc.cbio.portal.dao.DaoClinicalAttributeMeta; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.ClinicalData; -import org.mskcc.cbio.portal.model.ClinicalParameterMap; -import org.mskcc.cbio.portal.util.AccessControl; -import org.mskcc.cbio.portal.util.CategoryLabelReader; -import org.mskcc.cbio.portal.util.SpringUtil; - -public class ClinicalFreeFormJSON extends HttpServlet -{ - public static final String STUDY_ID = "studyId"; - - // class which process access control to cancer studies - private AccessControl accessControl; - - /** - * Initializes the servlet. - */ - public void init() throws ServletException { - super.init(); - accessControl = SpringUtil.getAccessControl(); - } - - /** - * Handles HTTP GET Request. - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse)throws ServletException, - IOException { - - String studyId = httpServletRequest.getParameter(STUDY_ID); - - try - { - // final object to be send as JSON - JSONObject jsonObject = new JSONObject(); - - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(studyId); - - // check if cancerStudy exists - if (cancerStudy == null || accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() != 1) - { - // just create empty collections if cancers study cannot be found - jsonObject.put("clinicalCaseSet", new JSONArray()); - jsonObject.put("categoryMap", new HashMap()); - jsonObject.put("freeFormData", new JSONArray()); - } - else - { - HashSet clinicalPatientSet = - DaoClinicalData.getAllPatients(cancerStudy.getInternalId()); - - HashSet paramSet = - DaoClinicalData.getDistinctParameters(cancerStudy.getInternalId()); - - List freeFormData = - DaoClinicalData.getDataByCancerStudy(cancerStudy.getInternalId()); - - // map of pairs - Map categoryMap = new HashMap(); - - // array of clinical case IDs - JSONArray patientIds = new JSONArray(); - - // add the clinical patient set - for (String patientId : clinicalPatientSet) - { - patientIds.add(patientId); - } - - jsonObject.put("clinicalCaseSet", patientIds); - - // get all distinct categories - List paramMaps = DaoClinicalData.getDataSlice(cancerStudy.getInternalId(), paramSet); - for (ClinicalParameterMap paramMap : paramMaps) { - Set distinctCategorySet = paramMap.getDistinctCategories(); - JSONArray distinctCategories = new JSONArray(); - - for (String category : distinctCategorySet) - { - if (category.trim().length() > 0) - { - distinctCategories.add(category); - } - } - - categoryMap.put(CategoryLabelReader.safeCategoryName(paramMap.getName()), - distinctCategories); - } - - // add the category map - jsonObject.put("categoryMap", categoryMap); - - // array of free form data - JSONArray freeFormArray = new JSONArray(); - - // get all clinical free form data for the specified cancer study - for (ClinicalData data : freeFormData) - { - JSONObject freeFormObject = new JSONObject(); - - //freeFormObject.put("cancerStudyId", data.getCancerStudyId()); - freeFormObject.put("caseId", data.getStableId()); - freeFormObject.put("paramName", CategoryLabelReader.safeCategoryName(data.getAttrId())); - freeFormObject.put("paramValue", data.getAttrVal()); - - freeFormArray.add(freeFormObject); - } - - // add the free form data array - jsonObject.put("freeFormData", freeFormArray); - - // add the map for human readable category names - jsonObject.put("categoryLabelMap", DaoClinicalAttributeMeta.getAllMap()); - } - - httpServletResponse.setContentType("application/json"); - PrintWriter out = httpServletResponse.getWriter(); - - try - { - JSONValue.writeJSONString(jsonObject, out); - } - finally - { - out.close(); - } - } - catch (DaoException e) - { - throw new ServletException(e); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalJSON.java deleted file mode 100644 index 926b0cb4581..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalJSON.java +++ /dev/null @@ -1,174 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.json.simple.JSONArray; -import org.json.simple.JSONObject; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoClinicalData; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.model.ClinicalData; -import org.mskcc.cbio.portal.util.AccessControl; -import org.mskcc.cbio.portal.util.SpringUtil; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.ClinicalAttribute; -import org.mskcc.cbio.portal.model.ClinicalData; -import org.owasp.validator.html.PolicyException; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.io.PrintWriter; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.*; - -public class ClinicalJSON extends HttpServlet { - - // our logger - private static Logger LOG = LoggerFactory.getLogger(ClinicalJSON.class); - - // class which process access control to cancer studies - private AccessControl accessControl; - - public static final String SAMPLES_DELIMITER = " "; - public static final String ALL = "all"; - - /** - * Initializes the servlet. - * - * @throws ServletException - */ - public void init() throws ServletException { - super.init(); - accessControl = SpringUtil.getAccessControl(); - } - - /** - * take a clinical object and convert it to a map - * - * @param clinical - * @return - */ - public JSONObject reflectToMap(ClinicalData clinical) { - JSONObject object = new JSONObject(); - object.put("attr_id", clinical.getAttrId()); - object.put("attr_val", clinical.getAttrVal()); - //TODO: at some point we may want to incorporate the cancer_study_id -// object.put("cancer_study_id", Integer.toString(clinical.getCancerStudyId())); - object.put("case_id", clinical.getStableId()); - return object; - } - - public static Map reflectToMap(ClinicalAttribute clinicalAttribute) { - JSONObject object = new JSONObject(); - object.put("attr_id", clinicalAttribute.getAttrId()); - object.put("datatype", clinicalAttribute.getDatatype()); - object.put("description", clinicalAttribute.getDescription()); - object.put("display_name", clinicalAttribute.getDisplayName()); - return object; - } - - public JSONArray clinicals2JSONArray(List clincials) { - JSONArray toReturn = new JSONArray(); - for (ClinicalData c : clincials) { - toReturn.add(reflectToMap(c)); - } - return toReturn; - } - - /** - * Using post request to increase URL length, actually this should not be a POST request - * - * @param request - * @param response - * @throws ServletException - * @throws IOException - */ - @Override - public void doPost(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - - String query = request.getParameter("q"); - String type = request.getParameter("t"); - - String samples = request.getParameter("samples"); - String cancerStudyId = request.getParameter("cancer_study_id"); - - List clinicals; - JSONArray maps = null; - - try { - if(cancerStudyId != null) { - CancerStudy cancerStudy = DaoCancerStudy - .getCancerStudyByStableId(cancerStudyId); - if (cancerStudy != null && accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() == 1) { - if (samples == null || samples.equals(ALL) ) { - clinicals = DaoClinicalData.getData(cancerStudyId); - maps = clinicals2JSONArray(clinicals); - } else { - clinicals = DaoClinicalData.getData(cancerStudyId, - Arrays.asList(samples.trim().split(SAMPLES_DELIMITER))); - maps = clinicals2JSONArray(clinicals); - } - for (ClinicalData c : clinicals) { - maps.add(reflectToMap(c)); - } - } - } - } catch (DaoException e) { - throw new ServletException(e); - } - - response.setContentType("application/json"); - PrintWriter out = response.getWriter(); - JSONArray.writeJSONString(maps, out); - } - - /** - * reroute get to post - * @param request - * @param response - * @throws ServletException - * @throws IOException - */ - @Override - public void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - doPost(request, response); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalTimelineData.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalTimelineData.java deleted file mode 100644 index 04d7e9e2129..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/ClinicalTimelineData.java +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.IOException; -import java.io.PrintWriter; -import java.util.ArrayList; -import java.util.Collection; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import com.fasterxml.jackson.databind.ObjectMapper; - -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoClinicalEvent; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoPatient; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.ClinicalEvent; -import org.mskcc.cbio.portal.model.Patient; -import org.mskcc.cbio.portal.util.AccessControl; -import org.mskcc.cbio.portal.util.SpringUtil; - -/** - * - * @author jgao - */ -public class ClinicalTimelineData extends HttpServlet { - - // class which process access control to cancer studies - private AccessControl accessControl; - - /** - * Initializes the servlet. - */ - public void init() throws ServletException { - super.init(); - accessControl = SpringUtil.getAccessControl(); - } - - /** - * Processes requests for both HTTP GET and POST methods. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException - { - Collection clinicalEvents = new ArrayList(); - - try { - //Set types = new HashSet(Arrays.asList(request.getParameter("type").split("[ ,]+"))); - String cancerStudyId = request.getParameter("cancer_study_id"); - if(cancerStudyId != null) { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyId); - if (cancerStudy != null && accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() == 1) { - String patientId = request.getParameter("patient_id"); - - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudy.getInternalId(), patientId); - clinicalEvents = DaoClinicalEvent.getClinicalEvent(patient.getInternalId()); - } - } - - } - catch (DaoException ex) { - throw new ServletException(ex); - } - - response.setContentType("application/json"); - PrintWriter out = response.getWriter(); - ObjectMapper mapper = new ObjectMapper(); - try { - mapper.writeValue(out, clinicalEvents); - } finally { - out.close(); - } - } - - // - /** - * Handles the HTTP GET method. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - @Override - protected void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - processRequest(request, response); - } - - /** - * Handles the HTTP POST method. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - @Override - protected void doPost(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - processRequest(request, response); - } - - /** - * Returns a short description of the servlet. - * @return a String containing servlet description - */ - @Override - public String getServletInfo() { - return "Short description"; - }// -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/CnaJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/CnaJSON.java deleted file mode 100644 index c8afda00f96..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/CnaJSON.java +++ /dev/null @@ -1,489 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.cbioportal.model.CNA; - -import java.io.*; -import java.util.*; -import javax.servlet.http.*; - -import com.fasterxml.jackson.databind.ObjectMapper; - -import javax.servlet.ServletConfig; -import javax.servlet.ServletException; - -/** - * - * @author jj - */ -public class CnaJSON extends HttpServlet { - private static Logger logger = LoggerFactory.getLogger(CnaJSON.class); - - public static final String CMD = "cmd"; - public static final String GET_DRUG_CMD = "get_drug"; - public static final String GET_SEGMENT_CMD = "get_segment"; - public static final String GET_CNA_FRACTION_CMD = "get_cna_fraction"; - public static final String CNA_EVENT_ID = "cna_id"; - public static final String CBIO_GENES_FILTER = "cbio_genes_filter";//Only get cna events from Cbio Cancer genes - private static final double FRACTION_GENOME_ALTERED_CUTOFF = 0.2; - - // class which process access control to cancer studies - private AccessControl accessControl; - - @Override - public void init(ServletConfig config) throws ServletException { - super.init(config); - accessControl = SpringUtil.getAccessControl(); - } - - /** - * Processes requests for both HTTP GET and POST methods. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - protected void processRequest(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - String cmd = request.getParameter(CMD); - if (cmd!=null) { - if (cmd.equalsIgnoreCase(GET_SEGMENT_CMD)) { - processGetSegmentsRequest(request, response); - return; - } - - if (cmd.equalsIgnoreCase(GET_CNA_FRACTION_CMD)) { - processCnaFractionsRequest(request, response); - return; - } - } - - processGetCnaRequest(request, response); - } - - private void processGetCnaRequest(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - String[] sampleIds = null; - String cnaProfileId = request.getParameter(PatientView.CNA_PROFILE); - String mrnaProfileId = request.getParameter(PatientView.MRNA_PROFILE); - String drugType = request.getParameter(PatientView.DRUG_TYPE); - Boolean filterByCbioGene = Boolean.parseBoolean(request.getParameter(CBIO_GENES_FILTER)); - boolean fdaOnly = false; - boolean cancerDrug = true; - if (drugType!=null && drugType.equalsIgnoreCase(PatientView.DRUG_TYPE_FDA_ONLY)) { - fdaOnly = true; - cancerDrug = false; - } - if(request.getParameterMap().containsKey(PatientView.SAMPLE_ID)) { - sampleIds = request.getParameter(PatientView.SAMPLE_ID).split(" +"); - } - - GeneticProfile cnaProfile; - CancerStudy cancerStudy = null; - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - List cnaEvents = Collections.emptyList(); - Map> drugs = Collections.emptyMap(); - Map contextMap = Collections.emptyMap(); - Map> mrnaContext = Collections.emptyMap(); - - try { - if(cnaProfileId != null) { - // Get the Genetic Profile - cnaProfile = - DaoGeneticProfile.getGeneticProfileByStableId(cnaProfileId); - if(cnaProfile != null) { - cancerStudy = DaoCancerStudy - .getCancerStudyByInternalId(cnaProfile.getCancerStudyId()); - if (accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() == 1) { - List internalSampleIds = new ArrayList<>(); - if(sampleIds == null){ - internalSampleIds = InternalIdUtil.getInternalNonNormalSampleIds(cancerStudy.getInternalId()); - }else{ - internalSampleIds = InternalIdUtil.getInternalSampleIds(cancerStudy.getInternalId(), Arrays.asList(sampleIds)); - } - cnaEvents = DaoCnaEvent.getCnaEvents(internalSampleIds, null, cnaProfile.getGeneticProfileId(), Arrays.asList((short)-2,(short)2)); - if (!cnaEvents.isEmpty()) { - String concatEventIds = getConcatEventIds(cnaEvents); - int profileId = cnaProfile.getGeneticProfileId(); -// drugs = getDrugs(cnaEvents, fdaOnly, cancerDrug); - contextMap = DaoCnaEvent.countSamplesWithCnaEvents(concatEventIds, profileId); - if (mrnaProfileId!=null && sampleIds.length==1) { - mrnaContext = getMrnaContext(internalSampleIds.get(0), cnaEvents, mrnaProfileId); - } - } - } - } - } - - } catch (DaoException ex) { - throw new ServletException(ex); - } - - Map data = initMap(); - Map mapEventIndex = new HashMap(); - for (CnaEvent cnaEvent : cnaEvents) { - Set drug = Collections.emptySet(); - try { - drug = drugs.get(cnaEvent.getEntrezGeneId()); - } catch (Exception e) { - logger.error(e.getMessage()); - } - exportCnaEvent(data, mapEventIndex, cnaEvent, cancerStudy, drug, - contextMap.get(cnaEvent.getEventId()), - mrnaContext.get(cnaEvent.getEntrezGeneId()), - daoGeneOptimized); - } - - response.setContentType("application/json"); - PrintWriter out = response.getWriter(); - ObjectMapper mapper = new ObjectMapper(); - try { - out.write(mapper.writeValueAsString(data)); - } finally { - out.close(); - } - } - - private void processGetSegmentsRequest(HttpServletRequest request, - HttpServletResponse response) - throws ServletException, IOException { - - String[] sampleIds = request.getParameter(PatientView.SAMPLE_ID).split(" +"); - String cancerStudyId = request.getParameter(QueryBuilder.CANCER_STUDY_ID); - - List segs = Collections.emptyList(); - - List internalSampleIds = null; - - try { - if(cancerStudyId != null) { - CancerStudy cancerStudy = DaoCancerStudy - .getCancerStudyByStableId(cancerStudyId); - if(cancerStudy != null && accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() == 1) { - internalSampleIds = InternalIdUtil.getInternalSampleIds(cancerStudy.getInternalId(), Arrays.asList(sampleIds)); - segs = DaoCopyNumberSegment.getSegmentForSamples(internalSampleIds, cancerStudy.getInternalId()); - } - } - } catch (DaoException ex) { - throw new ServletException(ex); - } - - Map map = new HashMap(); - for (Integer sampleId : internalSampleIds) { - String stableId = DaoSample.getSampleById(sampleId).getStableId(); - map.put(stableId, new ArrayList()); - } - - for (CopyNumberSegment seg : segs) { - String stableId = DaoSample.getSampleById(seg.getSampleId()).getStableId(); - exportCopyNumberSegment(map.get(stableId), seg); - } - - response.setContentType("application/json"); - - PrintWriter out = response.getWriter(); - ObjectMapper mapper = new ObjectMapper(); - try { - out.write(mapper.writeValueAsString(map)); - } finally { - out.close(); - } - } - - private void processCnaFractionsRequest(HttpServletRequest request, - HttpServletResponse response) - throws ServletException, IOException { - String strSampleIds = request.getParameter(QueryBuilder.CASE_IDS); - List sampleIds = null; - String cancerStudyId = request.getParameter(QueryBuilder.CANCER_STUDY_ID); - - Map fraction = Collections.emptyMap(); - - try { - if (cancerStudyId != null) { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyId); - if (cancerStudy != null - && accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() == 1) { - if (strSampleIds != null) { - List stableSampleIds = Arrays.asList(strSampleIds.split("[ ,]+")); - sampleIds = InternalIdUtil.getInternalNonNormalSampleIds(cancerStudy.getInternalId(), - stableSampleIds); - } else { - sampleIds = InternalIdUtil.getInternalNonNormalSampleIds(cancerStudy.getInternalId()); - } - fraction = DaoCopyNumberSegment.getCopyNumberActeredFraction(sampleIds, cancerStudy.getInternalId(), - FRACTION_GENOME_ALTERED_CUTOFF); - } - } - } catch (DaoException ex) { - throw new ServletException(ex); - } - - response.setContentType("application/json"); - - PrintWriter out = response.getWriter(); - ObjectMapper mapper = new ObjectMapper(); - try { - out.write(mapper.writeValueAsString(replaceInternalSampleIdsWithStableIds(fraction))); - } finally { - out.close(); - } - } - - private Map replaceInternalSampleIdsWithStableIds(Map fraction) - { - Map toReturn = new HashMap(); - for (Integer internalId : fraction.keySet()) { - toReturn.put(DaoSample.getSampleById(internalId).getStableId(), - fraction.get(internalId)); - } - return toReturn; - } - - private String getConcatEventIds(List cnaEvents) { - if (cnaEvents.isEmpty()) { - return ""; - } - - StringBuilder sb = new StringBuilder(); - for (CnaEvent cna : cnaEvents) { - sb.append(cna.getEventId()).append(','); - } - sb.deleteCharAt(sb.length()-1); - return sb.toString(); - } - - - private Map> getMrnaContext(Integer internalSampleId, List cnaEvents, - String mrnaProfileId) throws DaoException { - Map> mapGenePercentile = new HashMap>(); - DaoGeneticAlteration daoGeneticAlteration = DaoGeneticAlteration.getInstance(); - for (CnaEvent cnaEvent : cnaEvents) { - long gene = cnaEvent.getEntrezGeneId(); - if (mapGenePercentile.containsKey(gene)) { - continue; - } - - Map mrnaMap = daoGeneticAlteration.getGeneticAlterationMap( - DaoGeneticProfile.getGeneticProfileByStableId(mrnaProfileId).getGeneticProfileId(), - gene); - double mrnaCase = parseNumber(mrnaMap.get(internalSampleId)); - if (Double.isNaN(mrnaCase)) { - continue; - } - - Map map = new HashMap(); - mapGenePercentile.put(gene, map); - - map.put("zscore", mrnaCase); - - int total = 0, below = 0; - for (String strMrna : mrnaMap.values()) { - double mrna = parseNumber(strMrna); - if (Double.isNaN(mrna)) { - continue; - } - - total++; - if (mrna <= mrnaCase) { - below++; - } - } - - map.put("perc", 100*below/total); - } - - return mapGenePercentile; - } - - private double parseNumber(String mrna) { - try { - return Double.parseDouble(mrna); - } catch (Exception e) { - return Double.NaN; - } - } - - private Map initMap() { - Map map = new HashMap(); - map.put("id", new ArrayList()); - map.put("caseIds", new ArrayList()); - map.put("entrez", new ArrayList()); - map.put("gene", new ArrayList()); - map.put("cytoband", new ArrayList()); - map.put("alter", new ArrayList()); - map.put("mrna", new ArrayList()); - map.put("gistic", new ArrayList()); - map.put("sanger", new ArrayList()); - map.put("cancer-gene", new ArrayList()); - map.put("drug", new ArrayList()); - map.put("altrate", new ArrayList()); - return map; - } - - private void exportCnaEvent(Map data, Map mapMutationEventIndex, - CnaEvent cnaEvent, CancerStudy cancerStudy, Set drugs, Integer context, - Map mrna, DaoGeneOptimized daoGeneOptimized) - throws ServletException { - Long eventId = cnaEvent.getEventId(); - Integer ix = mapMutationEventIndex.get(eventId); - if (ix!=null) { // multiple samples - Sample sample = DaoSample.getSampleById(cnaEvent.getSampleId()); - List.class.cast(data.get("caseIds").get(ix)).add(sample.getStableId()); - return; - } - - mapMutationEventIndex.put(eventId, data.get("id").size()); - - List samples = new ArrayList(); - Sample sample = DaoSample.getSampleById(cnaEvent.getSampleId()); - samples.add(sample.getStableId()); - data.get("caseIds").add(samples); - - data.get("id").add(cnaEvent.getEventId()); - CanonicalGene gene = daoGeneOptimized.getGene(cnaEvent.getEntrezGeneId()); - String symbol = gene.getHugoGeneSymbolAllCaps(); - data.get("gene").add(symbol); - data.get("entrez").add(cnaEvent.getEntrezGeneId()); - data.get("alter").add(cnaEvent.getAlteration().getCode()); - data.get("mrna").add(mrna); - - // TODO: GISTIC - List gistic; - try { - gistic = getGistic(cancerStudy.getInternalId(), - cnaEvent.getGeneSymbol(), cnaEvent.getAlteration()); - } catch (DaoException ex) { - throw new ServletException(ex); - } - data.get("gistic").add(gistic); - - data.get("altrate").add(context); - - - data.get("sanger").add(false); - data.get("cancer-gene").add(false); - - // drug - data.get("drug").add(drugs); - } - - private void exportCopyNumberSegment(List list, CopyNumberSegment seg) - throws ServletException { - List row = new ArrayList(); - row.add(DaoSample.getSampleById(seg.getSampleId()).getStableId()); - row.add(seg.getChr()); - row.add(seg.getStart()); - row.add(seg.getEnd()); - row.add(seg.getNumProbes()); - row.add(seg.getSegMean()); - list.add(row); - } - - private static final Map>> gisticMap // map from cancer study id - = new HashMap>>(); // to map from gene to a list of params - - private static List getGistic(int cancerStudyId, String gene, CNA cna) throws DaoException { - Map> mapGeneGistic; - synchronized(gisticMap) { - mapGeneGistic = gisticMap.get(cancerStudyId); - if (mapGeneGistic == null) { - mapGeneGistic = new HashMap>(); - gisticMap.put(cancerStudyId, mapGeneGistic); - List gistics = DaoGistic.getAllGisticByCancerStudyId(cancerStudyId); - for (Gistic g : gistics) { - List genes = new ArrayList(g.getGenes_in_ROI().size()); - for (CanonicalGene cg : g.getGenes_in_ROI()) { - genes.add(cg.getHugoGeneSymbolAllCaps()); - } - List l = new ArrayList(); - l.add(g.getqValue()); - l.add(genes.size()); - for (String hugo : genes) { - Map mapCC = mapGeneGistic.get(hugo); - if (mapCC==null) { - mapCC = new EnumMap(CNA.class); - mapGeneGistic.put(hugo, mapCC); - } - mapCC.put(cna,l); - } - } - } - } - - Map m = mapGeneGistic.get(gene); - return m==null ? null : m.get(cna); - } - - // - /** - * Handles the HTTP GET method. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - @Override - protected void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - processRequest(request, response); - } - - /** - * Handles the HTTP POST method. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - @Override - protected void doPost(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - processRequest(request, response); - } - - /** - * Returns a short description of the servlet. - * @return a String containing servlet description - */ - @Override - public String getServletInfo() { - return "Short description"; - }// -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/CrossCancerJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/CrossCancerJSON.java deleted file mode 100644 index 26699da1733..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/CrossCancerJSON.java +++ /dev/null @@ -1,312 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.*; -import javax.servlet.ServletException; -import javax.servlet.http.*; -import org.apache.commons.lang3.StringUtils; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.json.simple.JSONValue; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.web_api.*; -import java.util.*; - -public class CrossCancerJSON extends HttpServlet { - private static Logger logger = LoggerFactory.getLogger(CrossCancerJSON.class); - - // class which process access control to cancer studies - private AccessControl accessControl; - - /** - * Initializes the servlet. - * - * @throws ServletException Serlvet Init Error. - */ - public void init() throws ServletException { - super.init(); - accessControl = SpringUtil.getAccessControl(); - } - - protected void doPost(HttpServletRequest request, HttpServletResponse response) - throws IOException, ServletException - { - doGet(request, response); - } - /** - * Processes requests for both HTTP GET and POST methods. - * @param request servlet request - * @param response servlet response - * @throws javax.servlet.ServletException if a servlet-specific error occurs - * @throws java.io.IOException if an I/O error occurs - */ - protected void doGet(HttpServletRequest request, HttpServletResponse response) - throws IOException, ServletException - { - XDebug xdebug = new XDebug(); - xdebug.startTimer(); - - response.setContentType("application/json"); - PrintWriter writer = response.getWriter(); - - try { - List resultsList = new LinkedList(); - - // Get the gene list - String geneList = request.getParameter(QueryBuilder.GENE_LIST); - if (request instanceof XssRequestWrapper) { - geneList = ((XssRequestWrapper)request).getRawParameter(QueryBuilder.GENE_LIST); - } - String cancerStudyIdListString = request.getParameter(QueryBuilder.CANCER_STUDY_LIST); - String[] cancerStudyIdList = cancerStudyIdListString.split(","); - - // Get the priority - Integer dataTypePriority; - try { - dataTypePriority - = Integer.parseInt(request.getParameter(QueryBuilder.DATA_PRIORITY).trim()); - } catch (NumberFormatException e) { - dataTypePriority = 0; - } - - // Cancer All Cancer Studies - List cancerStudiesList = accessControl.getCancerStudies(); - HashMap studyMap = new HashMap<>(); - for (String studyId: cancerStudyIdList) { - studyMap.put(studyId, Boolean.TRUE); - } - for (CancerStudy cancerStudy : cancerStudiesList) { - String cancerStudyId = cancerStudy.getCancerStudyStableId(); - if (!studyMap.containsKey(cancerStudyId)) { - continue; - } - if (cancerStudyId.equalsIgnoreCase("all")) - continue; - - Map cancerMap = new LinkedHashMap(); - cancerMap.put("studyId", cancerStudyId); - cancerMap.put("typeOfCancer", cancerStudy.getTypeOfCancerId()); - - // Get all Genetic Profiles Associated with this Cancer Study ID. - ArrayList geneticProfileList = GetGeneticProfiles.getGeneticProfiles(cancerStudyId); - - // Get all Patient Lists Associated with this Cancer Study ID. - ArrayList sampleSetList = GetSampleLists.getSampleLists(cancerStudyId); - - // Get the default patient set - AnnotatedSampleSets annotatedSampleSets = new AnnotatedSampleSets(sampleSetList, dataTypePriority); - SampleList defaultSampleSet = annotatedSampleSets.getDefaultSampleList(); - if (defaultSampleSet == null) { - continue; - } - - List sampleIds = defaultSampleSet.getSampleList(); - - // Get the default genomic profiles - CategorizedGeneticProfileSet categorizedGeneticProfileSet = - new CategorizedGeneticProfileSet(geneticProfileList); - HashMap defaultGeneticProfileSet = null; - switch (dataTypePriority) { - case 2: - defaultGeneticProfileSet = categorizedGeneticProfileSet.getDefaultCopyNumberMap(); - break; - case 1: - defaultGeneticProfileSet = categorizedGeneticProfileSet.getDefaultMutationMap(); - break; - case 0: - default: - defaultGeneticProfileSet = categorizedGeneticProfileSet.getDefaultMutationAndCopyNumberMap(); - } - - String mutationProfile = "", cnaProfile = ""; - for (GeneticProfile geneticProfile : defaultGeneticProfileSet.values()) { - GeneticAlterationType geneticAlterationType = geneticProfile.getGeneticAlterationType(); - if (geneticAlterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION) { - cnaProfile = geneticProfile.getStableId(); - } else if (geneticAlterationType == GeneticAlterationType.MUTATION_EXTENDED) { - mutationProfile = geneticProfile.getStableId(); - } - } - - cancerMap.put("mutationProfile", mutationProfile); - cancerMap.put("cnaProfile", cnaProfile); - - cancerMap.put("caseSetId", defaultSampleSet.getStableId()); - cancerMap.put("caseSetLength", sampleIds.size()); - - - ProfileDataSummary genomicData = getGenomicData( - cancerStudyId, - defaultGeneticProfileSet, - defaultSampleSet, - geneList, - sampleSetList, - request, - response - ); - - ArrayList geneFrequencyList = genomicData.getGeneFrequencyList(); - ArrayList genes = new ArrayList(); - for (GeneWithScore geneWithScore : geneFrequencyList) - genes.add(geneWithScore.getGene()); - int noOfMutated = 0, - noOfCnaUp = 0, - noOfCnaDown = 0, - noOfCnaLoss = 0, - noOfCnaGain = 0, - noOfOther = 0, - noOfAll = 0; - - boolean skipStudy = defaultGeneticProfileSet.isEmpty(); - if (!skipStudy) { - - for (String sampleId: sampleIds) { - if (sampleId == null) { - continue; - } - if (!genomicData.isCaseAltered(sampleId)) continue; - - boolean isAnyMutated = false, - isAnyCnaUp = false, - isAnyCnaDown = false, - isAnyCnaLoss = false, - isAnyCnaGain = false - ; - - for (String gene : genes) { - isAnyMutated |= genomicData.isGeneMutated(gene, sampleId); - GeneticTypeLevel cnaLevel = genomicData.getCNALevel(gene, sampleId); - boolean isCnaUp = cnaLevel != null && cnaLevel.equals(GeneticTypeLevel.Amplified); - isAnyCnaUp |= isCnaUp; - boolean isCnaDown = cnaLevel != null && cnaLevel.equals(GeneticTypeLevel.HomozygouslyDeleted); - isAnyCnaDown |= isCnaDown; - boolean isCnaLoss = cnaLevel != null && cnaLevel.equals(GeneticTypeLevel.HemizygouslyDeleted); - isAnyCnaLoss |= isCnaLoss; - boolean isCnaGain = cnaLevel != null && cnaLevel.equals(GeneticTypeLevel.Gained); - isAnyCnaGain |= isCnaGain; - } - - boolean isAnyCnaChanged = isAnyCnaUp || isAnyCnaDown; - if (isAnyMutated && !isAnyCnaChanged) - noOfMutated++; - else if (isAnyMutated && isAnyCnaChanged) - noOfOther++; - else if (isAnyCnaUp) - noOfCnaUp++; - else if (isAnyCnaDown) - noOfCnaDown++; - else if (isAnyCnaGain) - noOfCnaGain++; - else if (isAnyCnaLoss) - noOfCnaLoss++; - - noOfAll++; - } - } - - Map alterations = new LinkedHashMap(); - cancerMap.put("alterations", alterations); - alterations.put("all", noOfAll); - alterations.put("mutation", noOfMutated); - alterations.put("cnaUp", noOfCnaUp); - alterations.put("cnaDown", noOfCnaDown); - alterations.put("cnaLoss", noOfCnaLoss); - alterations.put("cnaGain", noOfCnaGain); - alterations.put("other", noOfOther); - cancerMap.put("genes", genes); - cancerMap.put("skipped", skipStudy); - - resultsList.add(cancerMap); - } - - JSONValue.writeJSONString(resultsList, writer); - } catch (DaoException e) { - throw new ServletException(e); - } catch (ProtocolException e) { - throw new ServletException(e); - } finally { - writer.close(); - } - } - - /** - * Gets all Genomic Data. - */ - private ProfileDataSummary getGenomicData(String cancerStudyId, HashMap defaultGeneticProfileSet, - SampleList defaultSampleSet, String geneListStr, ArrayList sampleList, - HttpServletRequest request, - HttpServletResponse response) throws IOException, - ServletException, DaoException { - - // parse geneList, written in the OncoPrintSpec language (except for changes by XSS clean) - double zScore = ZScoreUtil.getZScore(new HashSet(defaultGeneticProfileSet.keySet()), - new ArrayList(defaultGeneticProfileSet.values()), request); - double rppaScore = ZScoreUtil.getRPPAScore(request); - - ParserOutput theOncoPrintSpecParserOutput = - OncoPrintSpecificationDriver.callOncoPrintSpecParserDriver(geneListStr, - new HashSet(defaultGeneticProfileSet.keySet()), - new ArrayList(defaultGeneticProfileSet.values()), zScore, rppaScore); - - ArrayList geneList = new ArrayList(); - geneList.addAll(theOncoPrintSpecParserOutput.getTheOncoPrintSpecification().listOfGenes()); - - ArrayList profileDataList = new ArrayList(); - Set warningUnion = new HashSet(); - - - for (GeneticProfile profile : defaultGeneticProfileSet.values()) { - try { - GetProfileData remoteCall = - new GetProfileData(profile, geneList, - StringUtils.join(defaultSampleSet.getSampleList(), " ")); - ProfileData pData = remoteCall.getProfileData(); - warningUnion.addAll(remoteCall.getWarnings()); - profileDataList.add(pData); - } catch (IllegalArgumentException e) { - e.getStackTrace(); - } - } - - ProfileMerger merger = new ProfileMerger(profileDataList); - ProfileData mergedProfile = merger.getMergedProfile(); - - ProfileDataSummary dataSummary = new ProfileDataSummary(mergedProfile, - theOncoPrintSpecParserOutput.getTheOncoPrintSpecification(), zScore, rppaScore); - return dataSummary; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/DbVersionException.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/DbVersionException.java deleted file mode 100644 index 2a5f886cdd6..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/DbVersionException.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -/** - * Throw this when there is a mismatch between DB version and portal expected version. - * - * @author Pieter Lukasse - */ -@SuppressWarnings("serial") -public class DbVersionException extends Exception { - - public DbVersionException(String errorMessage) { - super(errorMessage); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/EchoFile.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/EchoFile.java deleted file mode 100644 index 2f4a55ad2a4..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/EchoFile.java +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import au.com.bytecode.opencsv.CSVReader; -import org.apache.commons.fileupload.FileItem; -import org.apache.commons.fileupload.FileUploadException; -import org.apache.commons.fileupload.disk.DiskFileItemFactory; -import org.apache.commons.fileupload.servlet.ServletFileUpload; -import org.apache.commons.io.IOUtils; -import org.json.simple.JSONObject; -import org.owasp.validator.html.PolicyException; - -import javax.servlet.http.HttpServlet; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import com.fasterxml.jackson.databind.ObjectMapper; - -import java.io.*; -import java.util.*; - -public class EchoFile extends HttpServlet { - - public static final int MAX_NO_GENES = 30; - - /** - * Initializes the servlet. - * - * @throws ServletException - */ - public void init() throws ServletException { - - super.init(); - } - - /** - * - * If you specify the `str` parameter in the request, the servlet echoes back the string as is. - * - * If you specify files in the request, each file gets echoed back as a json object - * { name -> string (content of file)} - * - * @param request - * @param response - * @throws ServletException - * @throws IOException - */ - protected void doPost(HttpServletRequest request, - HttpServletResponse response) throws ServletException, IOException { - - Writer writer = response.getWriter(); - - try { - - String str = request.getParameter("str"); - - if (str != null) { - writer.write(request.getParameter("str")); - return; - } - - Map fieldName2fileContent = new HashMap(); - - List items = new ServletFileUpload(new DiskFileItemFactory()).parseRequest(request); - - for (FileItem item : items) { - if (item.getSize() == 0) { - // skip empty files - continue; - } - - InputStream contentStream = item.getInputStream(); - String fieldName = item.getFieldName(); - - // slurp the file as a string - String encoding = "UTF-8"; - StringWriter stringWriter = new StringWriter(); - IOUtils.copy(contentStream, stringWriter, encoding); - String contentString = stringWriter.toString(); - - fieldName2fileContent.put(fieldName, contentString); - } - - // write the objects out as json - response.setContentType("application/json"); - ObjectMapper mapper = new ObjectMapper(); - mapper.writeValue(writer, fieldName2fileContent); - } - - // catch all exceptions - catch (Exception e) { - - // "log" it - System.out.println(e); - - // hide details from user - throw new ServletException("there was an error processing your request"); - } - } - - /** - * Forwards to doPost - * - * doGet == doPost - * - * @param request - * @param response - * @throws ServletException - * @throws IOException - */ - protected void doGet(HttpServletRequest request, - HttpServletResponse response) throws ServletException, IOException { - doPost(request, response); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/GetCoExpressionJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/GetCoExpressionJSON.java deleted file mode 100644 index 329d585250f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/GetCoExpressionJSON.java +++ /dev/null @@ -1,274 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.*; -import java.util.*; -import java.lang.Math; - -import org.json.simple.JSONObject; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import com.fasterxml.jackson.databind.JsonNode; -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.databind.node.ObjectNode; - -import org.json.simple.JSONValue; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; - -import org.apache.commons.math3.stat.correlation.PearsonsCorrelation; -import org.apache.commons.math3.stat.correlation.SpearmansCorrelation; -import org.mskcc.cbio.portal.util.AccessControl; -import org.mskcc.cbio.portal.util.CoExpUtil; -import org.mskcc.cbio.portal.util.SpringUtil; -import org.mskcc.cbio.portal.util.XssRequestWrapper; - -/** - * Get the top co-expressed genes for queried genes - * - * @param : cancer study id - * @param : queried genes - * @return : JSON objects of co-expression under the same cancer_study - * (but always the mrna genetic profile) - */ -public class GetCoExpressionJSON extends HttpServlet { - - private double coExpScoreThreshold = 0.3; - //private int resultLength = 250; - - // class which process access control to cancer studies - private AccessControl accessControl; - - /** - * Initializes the servlet. - */ - public void init() throws ServletException { - super.init(); - accessControl = SpringUtil.getAccessControl(); - } - - /** - * Handles HTTP GET Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - doPost(httpServletRequest, httpServletResponse); - } - - /** - * Handles the HTTP POST Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - - String cancerStudyIdentifier = httpServletRequest.getParameter("cancer_study_id"); - CancerStudy cancerStudy = null; - ArrayList fullResultJson = new ArrayList(); - ObjectMapper mapper = new ObjectMapper(); - httpServletResponse.setContentType("application/json"); - PrintWriter out = httpServletResponse.getWriter(); - try{ - if(cancerStudyIdentifier != null) { - cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyIdentifier); - if (cancerStudy == null || accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() == 0) { - mapper.writeValue(out, fullResultJson); - return; - } - } else { - mapper.writeValue(out, fullResultJson); - return; - } - } catch (DaoException e) { - System.out.println(e.getMessage()); - return; - } - - String geneSymbol = httpServletRequest.getParameter("gene"); - if (httpServletRequest instanceof XssRequestWrapper) { - geneSymbol = ((XssRequestWrapper) httpServletRequest).getRawParameter("gene"); - } - String profileId = httpServletRequest.getParameter("profile_id"); - String caseSetId = httpServletRequest.getParameter("case_set_id"); - String caseIdsKey = httpServletRequest.getParameter("case_ids_key"); - boolean isFullResult = Boolean.parseBoolean(httpServletRequest.getParameter("is_full_result")); - - PearsonsCorrelation pearsonsCorrelation = new PearsonsCorrelation(); - SpearmansCorrelation spearmansCorrelation = new SpearmansCorrelation(); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - - CanonicalGene geneObj = daoGeneOptimized.getGene(geneSymbol); - Long queryGeneId = geneObj.getEntrezGeneId(); - - if (!isFullResult) { - GeneticProfile final_gp = DaoGeneticProfile.getGeneticProfileByStableId(profileId); - if (final_gp != null) { - try { - Map map = CoExpUtil.getExpressionMap(final_gp.getGeneticProfileId(), caseSetId, caseIdsKey); - int mapSize = map.size(); - List genes = new ArrayList(map.keySet()); - for (int i = 0; i < mapSize; i++) { - double[] query_gene_exp = map.get(queryGeneId); - long compared_gene_id = genes.get(i); - double[] compared_gene_exp = map.get(compared_gene_id); - if (compared_gene_exp != null && query_gene_exp != null) { - //Filter out cases with empty value on either side - int min_length = query_gene_exp.length < compared_gene_exp.length ? query_gene_exp.length : compared_gene_exp.length; - ArrayList new_query_gene_exp_arrlist = new ArrayList(); - ArrayList new_compared_gene_exp_arrlist = new ArrayList(); - for (int k = 0; k < min_length; k++) { - if (!Double.isNaN(query_gene_exp[k]) && !Double.isNaN(compared_gene_exp[k])) { - new_query_gene_exp_arrlist.add(query_gene_exp[k]); - new_compared_gene_exp_arrlist.add(compared_gene_exp[k]); - } - } - Double[] _new_query_gene_exp = new_query_gene_exp_arrlist.toArray(new Double[0]); - Double[] _new_compared_gene_exp = new_compared_gene_exp_arrlist.toArray(new Double[0]); - //convert double object to primitive data - double[] new_query_gene_exp = new double[_new_query_gene_exp.length]; - double[] new_compared_gene_exp = new double[_new_compared_gene_exp.length]; - for (int m = 0; m < _new_query_gene_exp.length; m++) { - new_query_gene_exp[m] = _new_query_gene_exp[m].doubleValue(); - new_compared_gene_exp[m] = _new_compared_gene_exp[m].doubleValue(); - } - - if (new_query_gene_exp.length != 0 && new_compared_gene_exp.length != 0) { - double pearson = pearsonsCorrelation.correlation(new_query_gene_exp, new_compared_gene_exp); - if ((pearson >= coExpScoreThreshold || - pearson <= (-1) * coExpScoreThreshold) && - (compared_gene_id != queryGeneId)) { - //Only calculate spearman with high scored pearson gene pairs. - double spearman = spearmansCorrelation.correlation(new_query_gene_exp, new_compared_gene_exp); - if ((spearman >= coExpScoreThreshold || spearman <= (-1) * coExpScoreThreshold) && - ((spearman > 0 && pearson > 0) || (spearman < 0 && pearson < 0))) { - CanonicalGene comparedGene = daoGeneOptimized.getGene(compared_gene_id); - ObjectNode _scores = mapper.createObjectNode(); - _scores.put("gene", comparedGene.getHugoGeneSymbolAllCaps()); - _scores.put("pearson", pearson); - _scores.put("spearman", spearman); - fullResultJson.add(_scores); - } - } - } - } - } - mapper.writeValue(out, fullResultJson); - } catch (DaoException e) { - System.out.println(e.getMessage()); - mapper.writeValue(out, new JSONObject()); - } - } else { - mapper.writeValue(out, new JSONObject()); - } - } else { - StringBuilder fullResutlStr = new StringBuilder(); - fullResutlStr.append("Gene Symbol\tCytoband\tPearson Score\tSpearman Score\n"); - GeneticProfile final_gp = DaoGeneticProfile.getGeneticProfileByStableId(profileId); - if (final_gp != null) { - try { - Map map = CoExpUtil.getExpressionMap(final_gp.getGeneticProfileId(), caseSetId, caseIdsKey); - int mapSize = map.size(); - List genes = new ArrayList(map.keySet()); - for (int i = 0; i < mapSize; i++) { - double[] query_gene_exp = map.get(queryGeneId); - long compared_gene_id = genes.get(i); - double[] compared_gene_exp = map.get(compared_gene_id); - if (compared_gene_exp != null && query_gene_exp != null) { - //Filter out cases with empty value on either side - int min_length = (query_gene_exp.length < compared_gene_exp.length) ? query_gene_exp.length : compared_gene_exp.length; - ArrayList new_query_gene_exp_arrlist = new ArrayList(); - ArrayList new_compared_gene_exp_arrlist = new ArrayList(); - for (int k = 0; k < min_length; k++) { - if (!Double.isNaN(query_gene_exp[k]) && !Double.isNaN(compared_gene_exp[k])) { - new_query_gene_exp_arrlist.add(query_gene_exp[k]); - new_compared_gene_exp_arrlist.add(compared_gene_exp[k]); - } - } - Double[] _new_query_gene_exp = new_query_gene_exp_arrlist.toArray(new Double[0]); - Double[] _new_compared_gene_exp = new_compared_gene_exp_arrlist.toArray(new Double[0]); - //convert double object to primitive data - double[] new_query_gene_exp = new double[_new_query_gene_exp.length]; - double[] new_compared_gene_exp = new double[_new_compared_gene_exp.length]; - for (int m = 0; m < _new_query_gene_exp.length; m++) { - new_query_gene_exp[m] = _new_query_gene_exp[m].doubleValue(); - new_compared_gene_exp[m] = _new_compared_gene_exp[m].doubleValue(); - } - if (new_query_gene_exp.length != 0 && new_compared_gene_exp.length != 0 && - compared_gene_id != queryGeneId) { - double pearson = pearsonsCorrelation.correlation(new_query_gene_exp, new_compared_gene_exp); - double spearman = spearmansCorrelation.correlation(new_query_gene_exp, new_compared_gene_exp); - CanonicalGene comparedGene = daoGeneOptimized.getGene(compared_gene_id); - fullResutlStr.append( - comparedGene.getHugoGeneSymbolAllCaps() + "\t" + - (double) Math.round(pearson * 100) / 100 + "\t" + - (double) Math.round(spearman * 100) / 100 + "\n" - ); - } - } - } - //construct file name - String fileName = "coexpression_" + geneSymbol + "_" + - final_gp.getProfileName().replaceAll("\\s+", "_") + "_" + - cancerStudyIdentifier.replaceAll("\\s+", "_") + ".txt"; - - httpServletResponse.setContentType("text/html"); - httpServletResponse.setContentType("application/force-download"); - httpServletResponse.setHeader("content-disposition", "inline; filename='" + fileName + "'"); - out = httpServletResponse.getWriter(); - JSONValue.writeJSONString(fullResutlStr, out); - } catch (DaoException e) { - System.out.println(e.getMessage()); - JSONValue.writeJSONString(new JSONObject(), out); - } - } else { - JSONValue.writeJSONString(new JSONObject(), out); - } - } - - } -} - - - diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/GetSurvivalDataJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/GetSurvivalDataJSON.java deleted file mode 100644 index bcdd8bdb06d..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/GetSurvivalDataJSON.java +++ /dev/null @@ -1,184 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.IOException; -import java.io.PrintWriter; -import java.util.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.web_api.GetClinicalData; -import org.mskcc.cbio.portal.util.*; - -import org.json.simple.*; - -import javax.servlet.ServletConfig; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - - -/** - * Author: yichaoS - * Date: 8/13 - * - * Retrieves survival information from clinical data. - * @param: case set id / case ids key, cancer study id - * @return: Set of case id & overall survival months/status & diease free months/status in JSON format - */ -public class GetSurvivalDataJSON extends HttpServlet { - - // class which process access control to cancer studies - private AccessControl accessControl; - - @Override - public void init(ServletConfig config) throws ServletException { - super.init(config); - accessControl = SpringUtil.getAccessControl(); - } - - /** - * Handles HTTP GET Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws javax.servlet.ServletException - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - doPost(httpServletRequest, httpServletResponse); - } - - /** - * Handles the HTTP POST Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - - String cancerStudyIdentifier = httpServletRequest.getParameter("cancer_study_id"); - String sampleSetId = httpServletRequest.getParameter("case_set_id"); - String sampleIdsKey = httpServletRequest.getParameter("case_ids_key"); - //So far only accept single data type - String dataType = httpServletRequest.getParameter("data_type"); - CancerStudy cancerStudy = null; - try { - if (cancerStudyIdentifier != null) { - cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyIdentifier); - if (cancerStudy == null - || accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() == 0) { - return; - } - } else { - return; - } - int cancerStudyId = cancerStudy.getInternalId(); - - //Get patient ID list - DaoSampleList daoSampleList = new DaoSampleList(); - SampleList sampleList; - ArrayList sampleIdList = new ArrayList(); - if (sampleSetId.equals("-1") && sampleIdsKey.length() != 0) { - String strSampleIds = SampleSetUtil.getSampleIds(sampleIdsKey); - String[] sampleArray = strSampleIds.split("\\s+"); - for (String item : sampleArray) { - sampleIdList.add(item); - } - } else { - sampleList = daoSampleList.getSampleListByStableId(sampleSetId); - sampleIdList = sampleList.getSampleList(); - } - - //Get Clinical Data List - NOTE - as of 12/12/14, patient lists contain sample ids - HashSet patientIdListHashSet = new HashSet(InternalIdUtil.getStablePatientIdsFromSampleIds(cancerStudyId, sampleIdList)); - List clinicalDataList = - GetClinicalData.getClinicalData(cancerStudyId, patientIdListHashSet); - - //Assemble JSON object (key <-- patient id) - JSONObject results = new JSONObject(); - for (int i = 0; i < clinicalDataList.size(); i++){ - Patient clinicalData = clinicalDataList.get(i); - JSONObject _result = new JSONObject(); - - _result.put("case_id", clinicalData.getStableId()); - if (dataType.equalsIgnoreCase("os")) { - if (clinicalData.getOverallSurvivalMonths() == null) { - _result.put("months", "NA"); - } else { - _result.put("months", clinicalData.getOverallSurvivalMonths()); - } - String osStatus = clinicalData.getOverallSurvivalStatus(); - if(osStatus == null || osStatus.length() == 0) { - _result.put("status", "NA"); - } else if (osStatus.equalsIgnoreCase("1:DECEASED")) { - _result.put("status", "1"); - } else if(osStatus.equalsIgnoreCase("0:LIVING")) { - _result.put("status", "0"); - } - } else if (dataType.equalsIgnoreCase("dfs")) { - if (clinicalData.getDiseaseFreeSurvivalMonths() == null) { - _result.put("months", "NA"); - } else { - _result.put("months", clinicalData.getDiseaseFreeSurvivalMonths()); - } - String dfsStatus = clinicalData.getDiseaseFreeSurvivalStatus(); - if(dfsStatus == null || dfsStatus.length() == 0) { - _result.put("status", "NA"); - }else if (dfsStatus.equalsIgnoreCase("1:Recurred/Progressed") || dfsStatus.equalsIgnoreCase("1:Recurred")) { - _result.put("status", "1"); - } else if(dfsStatus.equalsIgnoreCase("0:DiseaseFree")) { - _result.put("status", "0"); - } - } - results.put(clinicalData.getStableId(), _result); - } - - httpServletResponse.setContentType("application/json"); - PrintWriter out = httpServletResponse.getWriter(); - JSONValue.writeJSONString(results, out); - - } catch (DaoException e) { - httpServletResponse.setContentType("application/text"); - PrintWriter out = httpServletResponse.getWriter(); - out.print("DaoException: " + e.getMessage()); - out.flush(); - } - - } - -} - diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/GisticJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/GisticJSON.java deleted file mode 100644 index 6120f87c4a8..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/GisticJSON.java +++ /dev/null @@ -1,172 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.json.simple.JSONArray; -import org.json.simple.JSONValue; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGistic; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Gistic; -import org.mskcc.cbio.portal.util.AccessControl; -import org.mskcc.cbio.portal.util.SpringUtil; -import org.owasp.validator.html.PolicyException; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.io.PrintWriter; -import java.util.*; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -/** - * - * JSON servlet for fetching Gistic data. - * If there is no Gistic data, then return an empty JSON. - * @author Gideon Dresdner - */ -public class GisticJSON extends HttpServlet { - public static final String SELECTED_CANCER_STUDY = "selected_cancer_type"; - private static Logger log = LoggerFactory.getLogger(GisticJSON.class); - - // class which process access control to cancer studies - private AccessControl accessControl; - - /** - * Initializes the servlet. - * - * @throws ServletException - */ - public void init() throws ServletException { - super.init(); - accessControl = SpringUtil.getAccessControl(); - } - - /** - * Make a map out of every mutsig - * Add that map to the mutSigJSONArray - * Returns the empty set, {}, if qval > 0.01 (specificed by Ethan) - */ - public static Map Gistic_toMap(Gistic gistic) { - Map map = new HashMap(); - - map.put("chromosome", gistic.getChromosome()); - map.put("cytoband", gistic.getCytoband()); - map.put("peakStart", gistic.getPeakStart()); - map.put("peakEnd", gistic.getPeakEnd()); - - // convert CanonicalGenes in ROI to strings - ArrayList nonSangerGenes = new ArrayList(); - ArrayList sangerGenes = new ArrayList(); - - for (CanonicalGene g : gistic.getGenes_in_ROI()) { - nonSangerGenes.add(g.getHugoGeneSymbolAllCaps()); - } - - map.put("sangerGenes", sangerGenes); - map.put("nonSangerGenes", nonSangerGenes); - map.put("qval", gistic.getqValue()); - map.put("ampdel", gistic.getAmp()); - - return map; - } - - /** - * - * @param request - * @param response - * @throws ServletException - * @throws IOException - */ - @Override - public void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - - String cancer_study_id = request.getParameter(SELECTED_CANCER_STUDY); - // Collections.sort(gistics, new sortMutsigByRank()); - JSONArray gisticJSONArray = new JSONArray(); - try { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancer_study_id); - if(cancerStudy != null && accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() == 1) { - if (log.isDebugEnabled()) { - log.debug("cancerStudyId passed to GisticJSON: " + cancerStudy.getInternalId()) ; - } - - ArrayList gistics = DaoGistic.getAllGisticByCancerStudyId(cancerStudy.getInternalId()); - - if (log.isDebugEnabled()) { - log.debug("list of gistics associated with cancerStudy: " + gistics) ; - } - - for (Gistic gistic : gistics) { - Map map = Gistic_toMap(gistic); - - if (!map.isEmpty()) { - gisticJSONArray.add(map); - } - } - } - - response.setContentType("application/json"); - PrintWriter out = response.getWriter(); - - try { - JSONValue.writeJSONString(gisticJSONArray, out); - } finally { - out.close(); - } - } catch (DaoException e) { - log.error("Error occurred", e); - throw new ServletException(e); - } - } - - /** - * Just in case the request changes from GET to POST - * @param request - * @param response - * @throws ServletException - * @throws IOException - */ - public void doPost(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException - { - doGet(request, response); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/IGVLinkingJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/IGVLinkingJSON.java deleted file mode 100644 index 73002bf0dee..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/IGVLinkingJSON.java +++ /dev/null @@ -1,149 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.IOException; -import java.io.PrintWriter; -import java.net.URLEncoder; -import java.util.ArrayList; -import java.util.List; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.json.simple.JSONObject; -import org.json.simple.JSONValue; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.util.IGVLinking; - -import com.google.common.base.Joiner; - -/** - * - * @author benjamin - */ -public class IGVLinkingJSON extends HttpServlet { - - public static final String CMD = "cmd"; - public static final String CANCER_STUDY_ID = "cancer_study_id"; - public static final String CASE_ID = "case_id"; - public static final String LOCUS = "locus"; // IGV locus string, e.g. chr1:000-200 - - private static final int CANCER_STUDY_ID_INDEX = 0; - private static final int CASE_ID_INDEX = 1; - private static final int LOCUS_INDEX = 2; - private static final String GENE_LIST = "gene_list"; - - @Override - protected void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException - { - processRequest(request, response); - } - - @Override - protected void doPost(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException - { - processRequest(request, response); - } - - protected void processRequest(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - String cmd = request.getParameter(CMD); - response.setContentType("application/json"); - PrintWriter out = response.getWriter(); - JSONObject igvArgs = new JSONObject(); - try { - if ((cmd != null) && (cmd.equals("get_igv_args"))) { - String cancerStudyStableId = request.getParameter(CANCER_STUDY_ID); - cancerStudyStableId = cancerStudyStableId == null ? "" : cancerStudyStableId; - String geneList = request.getParameter(GENE_LIST); - geneList = geneList == null ? "" : geneList; - List onlyGenesList = new ArrayList(); - - String[] geneList_ = geneList.split(" "); - for (String gene_ : geneList_) { - CanonicalGene gene = DaoGeneOptimized.getInstance().getGene(gene_); - if (gene != null && !gene.isMicroRNA() && !gene.isPhosphoProtein()) { - onlyGenesList.add(gene_); - } - } - String encodedGeneList = ""; - if (onlyGenesList.size() > 0) { - encodedGeneList = URLEncoder.encode(Joiner.on(' ').join(onlyGenesList), "UTF-8"); - } - String[] args = IGVLinking.getIGVArgsForSegViewing(cancerStudyStableId, encodedGeneList); - igvArgs.put("segfileUrl", args[0]); - igvArgs.put("geneList", args[1]); - igvArgs.put("referenceId", args[2]); - igvArgs.put("fileName", args[3]); - } else { - String[] parameters = getParameters(request); - if (parameters != null) { - String[] args = IGVLinking.getIGVArgsForBAMViewing(parameters[CANCER_STUDY_ID_INDEX], - parameters[CASE_ID_INDEX], parameters[LOCUS_INDEX]); - if (args != null && args.length == 4) { - igvArgs.put("bamFileUrl", args[0]); - igvArgs.put("encodedLocus", args[1]); - igvArgs.put("referenceGenome", args[2]); - igvArgs.put("trackName", args[3]); - } - } - } - JSONValue.writeJSONString(igvArgs, out); - } catch (Exception e) { - JSONValue.writeJSONString(new JSONObject(), out); - } finally { - out.close(); - } - - } - - private String[] getParameters(HttpServletRequest request) - { - String[] parameters = new String[3]; - parameters[CANCER_STUDY_ID_INDEX] = request.getParameter(CANCER_STUDY_ID); - parameters[CASE_ID_INDEX] = request.getParameter(CASE_ID); - parameters[LOCUS_INDEX] = request.getParameter(LOCUS); - - return (parameters[CANCER_STUDY_ID_INDEX] == null || - parameters[CASE_ID_INDEX] == null || - parameters[LOCUS_INDEX] == null) ? null : parameters; - - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/MutSigJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/MutSigJSON.java deleted file mode 100644 index f20202dabcf..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/MutSigJSON.java +++ /dev/null @@ -1,159 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.json.simple.JSONArray; -import org.json.simple.JSONValue; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoMutSig; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.MutSig; -import org.owasp.validator.html.PolicyException; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.io.PrintWriter; -import java.util.*; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - - -/** - * - * JSON servlet for fetching MutSig data. - * If there is no MutSig data, then return an empty JSON. - * @author Gideon Dresdner - */ -public class MutSigJSON extends HttpServlet { - public static final String SELECTED_CANCER_STUDY = "selected_cancer_type"; - private static Logger log = LoggerFactory.getLogger(MutSigJSON.class); - - // - // Initializes the servlet. - // - public void init() throws ServletException { - super.init(); - } - - // Make a map out of every mutsig - // Add that map to the mutSigJSONArray - // Returns the empty set, {}, if qval > 0.01 (specificed by Ethan) - public static Map MutSigtoMap(MutSig mutsig) { - Map map = new HashMap(); - - map.put("gene_symbol", mutsig.getCanonicalGene().getStandardSymbol()); - map.put("num_muts", mutsig.getNumMutations()); - map.put("qval", mutsig.getqValue()); - - return map; - } - - /** - * Sort Mutsigs by rank, which is determined by q-value. - * So actually we are sorting by q-value - */ - private class sortMutsigByRank implements Comparator { - public int compare(MutSig mutSig1, MutSig mutSig2) { - - // Collections.sort is in ascending order and - // we want the smallest q-value at the top - return mutSig1.getRank() - mutSig2.getRank(); - } - } - - // - // Handles HTTP GET request - // - @Override - public void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException - { - - String cancer_study_id = request.getParameter(SELECTED_CANCER_STUDY); - JSONArray mutSigJSONArray = new JSONArray(); - - try { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancer_study_id); - - if (log.isDebugEnabled()) { - log.debug("cancerStudyId passed to MutSigJSON: " + cancerStudy.getInternalId()); - } - - ArrayList mutSigList = DaoMutSig.getAllMutSig(cancerStudy.getInternalId()); - - if (log.isDebugEnabled()) { - log.debug("no of mutsigs associated with cancerStudy: " + mutSigList.size() + "\n"); - } - - Collections.sort(mutSigList, new sortMutsigByRank()); - - int i = 0; - for (MutSig mutsig : mutSigList) { - -// log.debug("" + mutsig.toString() + " " + i++); - - Map map = MutSigtoMap(mutsig); - -// log.debug(map); - - if (!map.isEmpty()) { - mutSigJSONArray.add(map); - } - } - response.setContentType("application/json"); - PrintWriter out = response.getWriter(); - - try { - JSONValue.writeJSONString(mutSigJSONArray, out); - } finally { - out.close(); - } - - } catch (DaoException e) { - throw new ServletException(e); - } - } - - // Just in case the request changes from GET to POST - public void doPost(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException - { - doGet(request, response); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/MutationAlignerServlet.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/MutationAlignerServlet.java deleted file mode 100644 index a7a943a0746..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/MutationAlignerServlet.java +++ /dev/null @@ -1,123 +0,0 @@ -package org.mskcc.cbio.portal.servlet; - -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -import org.json.simple.JSONValue; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.*; -import java.net.HttpURLConnection; -import java.net.URL; -import java.net.URLConnection; -import java.util.HashMap; -import java.util.Map; - -/** - * Servlet class to request information from Mutation Aligner web service. - * - * @author Selcuk Onur Sumer - */ -public class MutationAlignerServlet extends HttpServlet -{ - public final static String MUTATION_ALIGNER_API = "http://mutationaligner.org/api/domains/"; - public final static String MUTATION_ALIGNER_API_SUFFIX = "?metadata=true"; - public final static String MUTATION_ALIGNER_BASE_LINK = "http://mutationaligner.org/domains/"; - - private static String makeRequest(String pfamAccession) throws IOException - { - StringBuilder urlBuilder = new StringBuilder(); - - urlBuilder.append(MUTATION_ALIGNER_API); - urlBuilder.append(pfamAccession); - urlBuilder.append(MUTATION_ALIGNER_API_SUFFIX); - - String url = urlBuilder.toString(); - - URL aligner = new URL(url); - URLConnection alignerCxn = aligner.openConnection(); - - StringBuilder sb = new StringBuilder(); - - // not found! - if (((HttpURLConnection)alignerCxn).getResponseCode() != HttpURLConnection.HTTP_OK) - { - sb.append(""); - } - else - { - BufferedReader in = new BufferedReader(new InputStreamReader(alignerCxn.getInputStream())); - String line; - - // Read all - while((line = in.readLine()) != null) - { - sb.append(line); - } - - in.close(); - } - - - return sb.toString(); - } - - - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse)throws ServletException, IOException - { - doPost(httpServletRequest, httpServletResponse); - } - - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse)throws ServletException, IOException - { - String pfamAccession = httpServletRequest.getParameter("pfamAccession"); - String response = makeRequest(pfamAccession); - - httpServletResponse.setContentType("application/json"); - - Map data = new HashMap(); - - if (response != null && response.length() > 0) - { - data.put("linkToMutationAligner", MUTATION_ALIGNER_BASE_LINK + pfamAccession); - } - - PrintWriter out = httpServletResponse.getWriter(); - String jsonText = JSONValue.toJSONString(data); - out.write(jsonText); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/NetworkSbgnServlet.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/NetworkSbgnServlet.java deleted file mode 100644 index 315ae071845..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/NetworkSbgnServlet.java +++ /dev/null @@ -1,169 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; -/* -import cpath.client.CPath2Client; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.biopax.paxtools.controller.EditorMap; -import org.biopax.paxtools.controller.PropertyEditor; -import org.biopax.paxtools.controller.SimpleEditorMap; -import org.biopax.paxtools.io.sbgn.L3ToSBGNPDConverter; -import org.biopax.paxtools.io.sbgn.ListUbiqueDetector; -import org.biopax.paxtools.io.sbgn.idmapping.HGNC; -import org.biopax.paxtools.model.BioPAXElement; -import org.biopax.paxtools.model.Model; -import org.biopax.paxtools.model.level3.Xref; -import org.json.simple.JSONValue; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; - -import javax.servlet.ServletException;*/ -import javax.servlet.http.HttpServlet; -/*import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.*; -import java.util.*; -*/ -/** - * Servlet class to request SBGN directly from cpath web service. - */ -public class NetworkSbgnServlet extends HttpServlet -{ -/* private final static Log log = LoggerFactory.getLogger(NetworkSbgnServlet.class); - - public final static String HGNC_GENE_PREFIX = "urn:biopax:RelationshipXref:HGNC_HGNC%3A"; - public final static String CPATH_SERVICE = "http://awabi.cbio.mskcc.org/cpath2/"; - public final static String NA = "NA"; - public final static Integer GRAPH_QUERY_LIMIT = 1; - public final static String ATTRIBUTES_FIELD = "attributes"; - public final static String SBGN_FIELD = "sbgn"; - public final static String GENES_FIELD = "genes"; - - private static ArrayList convert(String[] geneList) { - ArrayList convertedList = new ArrayList(); - DaoGeneOptimized daoGeneOptimized; - - daoGeneOptimized = DaoGeneOptimized.getInstance(); - - for(String gene: geneList) { - CanonicalGene cGene = daoGeneOptimized.getGene(gene); - String hgncId = HGNC.getID(cGene.getHugoGeneSymbolAllCaps()); - convertedList.add(HGNC_GENE_PREFIX.replace("+", "%2B") + hgncId); - } - - return convertedList; - } - - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse)throws ServletException, IOException - { - doPost(httpServletRequest, httpServletResponse); - } - - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse)throws ServletException, IOException - { - PrintWriter out = httpServletResponse.getWriter(); - String sourceSymbols = httpServletRequest.getParameter(QueryBuilder.GENE_LIST); - - String[] sourceGeneSet = sourceSymbols.split("\\s"); - - CPath2Client client = CPath2Client.newInstance(); - client.setEndPointURL(CPATH_SERVICE); - client.setGraphQueryLimit(GRAPH_QUERY_LIMIT); - client.setDirection(CPath2Client.Direction.BOTHSTREAM); - - ArrayList convertedList = convert(sourceGeneSet); - Model model = convertedList.size() > 1 - ? client.getPathsBetween(convertedList) - : client.getNeighborhood(convertedList); - - L3ToSBGNPDConverter converter - = new L3ToSBGNPDConverter(new ListUbiqueDetector(new HashSet()), null, true); - ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); - converter.writeSBGN(model, byteArrayOutputStream); - - // This is going to be our ultimate output - HashMap outputMap = new HashMap(); - outputMap.put(SBGN_FIELD, byteArrayOutputStream.toString()); - - // This will populate the genes field with all the genes found in the BioPAX model - outputMap.put(GENES_FIELD, extractGenes(model)); - - // The following will include RDF Id -> attributes map - HashMap>> attrMap = new HashMap>>(); - for (BioPAXElement bpe : model.getObjects()) - attrMap.put(bpe.getRDFId(), extractAttributes(bpe)); - outputMap.put(ATTRIBUTES_FIELD, attrMap); - - httpServletResponse.setContentType("application/json"); - JSONValue.writeJSONString(outputMap, out); - } - - private List extractGenes(Model model) { - HashSet genes = new HashSet(); - - for (Xref xref : model.getObjects(Xref.class)) { - if(xref.getDb() != null && xref.getDb().equalsIgnoreCase("HGNC")) { - String rawId = xref.getId(); - String id = rawId.split(":")[1].trim(); - String symbol = HGNC.getSymbol(id); - if(symbol != null) - genes.add(symbol); - } - } - - return new ArrayList(genes); - } - - private Map> extractAttributes(BioPAXElement bpe) { - EditorMap editorMap = SimpleEditorMap.L3; - Set editors = editorMap.getEditorsOf(bpe); - - Map> attributes = new HashMap>(); - for (PropertyEditor editor : editors) { - String key = editor.getProperty(); - Set valueFromBean = editor.getValueFromBean(bpe); - ArrayList strings = new ArrayList(); - for (Object o : valueFromBean) { - strings.add(o.toString()); - } - attributes.put(key, strings); - } - - return attributes; - } -*/ -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/OmaRedirectServlet.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/OmaRedirectServlet.java deleted file mode 100644 index 33d332ad80f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/OmaRedirectServlet.java +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.IOException; -import java.io.PrintWriter; -import java.net.MalformedURLException; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.mskcc.cbio.portal.util.OmaLinkUtil; - -/** - * Redirects Client to the Online Mutation Assessor (OMA). - * - * @author Ethan Cerami. - */ -public class OmaRedirectServlet extends HttpServlet { - - private static Logger logger = LoggerFactory.getLogger(OmaRedirectServlet.class); - - protected void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - response.setContentType("text/html"); - String omaQueryString = request.getQueryString(); - PrintWriter writer = response.getWriter(); - try { - String omaUrl = OmaLinkUtil.createOmaLink(omaQueryString); - sendHtmlRedirect(writer, omaUrl); - } catch (MalformedURLException e) { - logError(omaQueryString, e); - sendErrorPage(writer, e); - } - writer.close(); - } - - /** - * We use an HTML meta Refresh Redirect, because this strips out the HTTP Referer - * header, which can cause problems with the OMA web site. - * - */ - private void sendHtmlRedirect(PrintWriter writer, String omaUrl) { - writer.write(""); - writer.write(""); - writer.write(""); - writer.write(""); - writer.write(""); - } - - private void logError(String urlString, MalformedURLException e) { - logger.warn("a request to OmaRedirectServlet contained a malformed URL:" + urlString); - logger.warn(" exception message: " + e.getMessage()); - } - - private void sendErrorPage(PrintWriter writer, MalformedURLException e) { - writer.write(""); - writer.write(""); - writer.write("Error during redirect"); - writer.write(""); - writer.write(""); - writer.write("

    An error occurred during the navigation to the requested link."); - writer.write(" 
     "); - writer.write("

    This error has been recorded in the webserver logs. We appologize for this problem, and we will try to correct it."); - writer.write(""); - writer.write(""); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/OncoPrintConverter.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/OncoPrintConverter.java deleted file mode 100644 index 1487cfb89f5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/OncoPrintConverter.java +++ /dev/null @@ -1,182 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -// imports -import org.mskcc.cbio.portal.util.XDebug; -import org.mskcc.cbio.portal.util.FileUploadRequestWrapper; - -import javax.servlet.ServletContext; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.RequestDispatcher; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.apache.commons.fileupload.FileItem; -import org.mskcc.cbio.portal.util.XssRequestWrapper; -import org.owasp.validator.html.PolicyException; - -import java.io.PrintWriter; -import java.io.IOException; -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -/** - * Servlet responsible for converting OncoPrint into SVG. - */ -public class OncoPrintConverter extends HttpServlet { - - private Pattern svgXPosPattern; - - /** - * Initializes the servlet. - * - * @throws ServletException - */ - public void init() throws ServletException { - - super.init(); - svgXPosPattern = Pattern.compile("( x=\"(\\d+)\")"); - } - - /** - * Handles HTTP GET Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, - IOException { - - doPost(httpServletRequest, httpServletResponse); - } - - /** - * Handles the HTTP POST Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - - // setup a debug object - XDebug xdebug = new XDebug( httpServletRequest ); - xdebug.logMsg(this, "Attempting to parse request parameters."); - - String xml = ""; - String format = ""; - if (httpServletRequest instanceof FileUploadRequestWrapper) { - - // get instance of our request wrapper - FileUploadRequestWrapper wrapper = (FileUploadRequestWrapper)httpServletRequest; - - // get format parameter - format = wrapper.getParameter("format"); - - // get xml parameter - xml = wrapper.getParameter("xml"); - } - else { - httpServletRequest.getParameter("format"); - xml = httpServletRequest.getParameter("xml"); - - // TODO - update antisamy.xml to support svg-xml - if (httpServletRequest instanceof XssRequestWrapper) - { - xml = ((XssRequestWrapper) httpServletRequest).getRawParameter("xml"); - } - - } - - String xmlHeader = ""; - xml = xmlHeader + xml; - if(!xml.contains("svg xmlns")) { - xml = xml.replace(". -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.IOException; -import java.io.PrintWriter; -import java.util.*; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.json.simple.JSONArray; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.dao.DaoGeneticProfile; -import org.mskcc.cbio.portal.dao.DaoMutation; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.GeneticProfile; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.web_api.ProtocolException; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.owasp.validator.html.PolicyException; - -/** - * @author Gideon Dresdner - * - */ -public class PancancerMutationsJSON extends HttpServlet { - private ServletXssUtil servletXssUtil; - private static Logger log = LoggerFactory.getLogger(PancancerMutationsJSON.class); - private static AccessControl accessControl = null; - - /** - * Initializes the servlet. - * - * @throws ServletException - */ - public void init() throws ServletException { - super.init(); - try { - servletXssUtil = ServletXssUtil.getInstance(); - } catch (PolicyException e) { - throw new ServletException(e); - } - } - - /** - * Initializes the AccessControl member. - * - * TODO: may want to refactor this into a public method somewhere that other's can use. I grabbed this from `PatientViewServlet` - */ - private static synchronized AccessControl getaccessControl() { - if (accessControl==null) { - accessControl = SpringUtil.getAccessControl(); - } - - return accessControl; - } - - - /** - * iterate over all cancer studies, for each one grab all the genetic profiles, - * but only grab the ones that are mutation profiles, - * and for each mutation profile count samples by mutation keyword - * - * @param keywords List of keywords as there are in the mutation sql table - * @return data Collection of (Map: String -> Object) - * @throws DaoException - */ - public Collection> byKeywords(List keywords) - throws DaoException, ProtocolException - { - return DaoMutation.countSamplesWithKeywords(keywords, internalGeneticProfileIds()); - } - - /** - * - * @param hugos - * @return - * @throws DaoException - */ - public Collection> byHugos(List hugos) - throws DaoException, ProtocolException - { - return DaoMutation.countSamplesWithGenes(hugos, internalGeneticProfileIds()); - } - - /** - * - * @param proteinChanges - * @return - * @throws DaoException - * @throws ProtocolException - */ - public Collection> byProteinChanges(List proteinChanges) - throws DaoException, ProtocolException - { - return DaoMutation.countSamplesWithProteinChanges(proteinChanges, internalGeneticProfileIds()); - } - - public Collection> byProteinPosStarts(List proteinPosStarts) - throws DaoException, ProtocolException - { - List posWithEntrez = new ArrayList(); - - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - - // assuming that protein position start string is in a format _ - Pattern p = Pattern.compile("(.+)_([0-9]+)"); - for (String proteinPos: proteinPosStarts) - { - Matcher m = p.matcher(proteinPos); - if (m.find()) { - String symbol = m.group(1); - String position = m.group(2); - CanonicalGene gene = daoGeneOptimized.getGene(symbol); - if (gene!=null) { - long entrezId = gene.getEntrezGeneId(); - - // create the query string: (,) - posWithEntrez.add("(" + entrezId + "," + position + ")"); - } - } - - String[] parts = proteinPos.split("_"); - } - - if (posWithEntrez.isEmpty()) { - return Collections.emptySet(); - } - - return DaoMutation.countSamplesWithProteinPosStarts(posWithEntrez, internalGeneticProfileIds()); - } - - public Collection internalGeneticProfileIds() throws DaoException, ProtocolException - { - List allCancerStudies = getaccessControl().getCancerStudies(); - Collection internalGeneticProfileIds = new ArrayList(); - - for (CancerStudy cancerStudy : allCancerStudies) { - Integer internalId = cancerStudy.getInternalId(); - - List geneticProfiles = DaoGeneticProfile.getAllGeneticProfiles(internalId); - - for (GeneticProfile geneticProfile : geneticProfiles) { - - if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.MUTATION_EXTENDED) { - internalGeneticProfileIds.add(geneticProfile.getGeneticProfileId()); - } - } - } - - if (internalGeneticProfileIds.isEmpty()) { - throw new DaoException("no genetic_profile_ids found"); - } - - return internalGeneticProfileIds; - } - - /** - * the request requires a parameter "mutation_keys" which is a JSON list of strings. - * - * @param request - * @param response - * @throws ServletException - * @throws IOException - */ - @Override - public void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - - Collection> data = null; - PrintWriter writer = response.getWriter(); - response.setContentType("application/json"); - - String cmd = request.getParameter("cmd"); - String query = request.getParameter("q"); - - if (query == null || query.equals("")) { - throw new ServletException("no q parameter provided"); - } - List queryTerms = Arrays.asList(query.split(",")); - - if (cmd.equals("byKeywords")) { - try { - data = byKeywords(queryTerms); - } catch (DaoException e) { - throw new ServletException(e); - } catch (ProtocolException e) { - throw new ServletException(e); - } - } - else if (cmd.equals("byHugos")) { - try { - data = byHugos(queryTerms); - } catch (DaoException e) { - throw new ServletException(e); - } catch (ProtocolException e) { - throw new ServletException(e); - } - } - else if (cmd.equals("byMutations")) { - try { - data = byProteinChanges(queryTerms); - } catch (DaoException e) { - throw new ServletException(e); - } catch (ProtocolException e) { - throw new ServletException(e); - } - } - else if (cmd.equals("byProteinPos")) { - try { - data = byProteinPosStarts(queryTerms); - } catch (DaoException e) { - throw new ServletException(e); - } catch (ProtocolException e) { - throw new ServletException(e); - } - } - else { - throw new ServletException("cmd not found"); - } - - JSONArray.writeJSONString((List) data, writer); - } - - @Override - public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { - doGet(request, response); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/PatientView.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/PatientView.java deleted file mode 100644 index dc835300362..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/PatientView.java +++ /dev/null @@ -1,161 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - - -import java.io.IOException; -import javax.servlet.RequestDispatcher; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.mskcc.cbio.portal.util.*; - -import org.springframework.web.context.support.SpringBeanAutowiringSupport; - -import javax.servlet.*; - -/** - * - * @author jj - */ -public class PatientView extends HttpServlet { - public static final String SAMPLE_ID = "sample_id"; - public static final String PATIENT_ID = "case_id"; - public static final String HAS_ALLELE_FREQUENCY_DATA = "has_allele_frequency_data"; - public static final String MUTATION_PROFILE = "mutation_profile"; - public static final String CNA_PROFILE = "cna_profile"; - public static final String MRNA_PROFILE = "mrna_profile"; - - public static final String DRUG_TYPE = "drug_type"; - public static final String DRUG_TYPE_CANCER_DRUG = "cancer_drug"; - public static final String DRUG_TYPE_FDA_ONLY = "fda_approved"; - - private static Logger logger = LoggerFactory.getLogger(PatientView.class); - - @Override - public void init(ServletConfig config) throws ServletException { - super.init(config); - SpringBeanAutowiringSupport.processInjectionBasedOnServletContext(this, - config.getServletContext()); - } - - /** - * Processes requests for both HTTP GET and POST methods. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - protected void processRequest(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - XDebug xdebug = new XDebug( request ); - request.setAttribute(QueryBuilder.XDEBUG_OBJECT, xdebug); - - // Convert old URL parameters cancer_study_id and case_id/sample_id to new frontend - // hash style URL paramters #studyId=x&caseId=y - String cancerStudyId = (String) request.getParameter("cancer_study_id"); - if (cancerStudyId != null) { - String hashUrl = "#/patient?studyId=" + cancerStudyId; - String caseId = (String) request.getParameter("case_id"); - String sampleId = (String) request.getParameter("sample_id"); - if (caseId != null) { - hashUrl += "&caseId=" + caseId; - } else if (sampleId != null) { - hashUrl += "&sampleId=" + sampleId; - } else { - response.sendError(HttpServletResponse.SC_NOT_FOUND); - return; - } - - response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY); - String oldUrl = ((HttpServletRequest)request).getRequestURL().toString(); - response.setHeader("Location", oldUrl + hashUrl); - } else { - request.setAttribute(QueryBuilder.HTML_TITLE, "Patient"); - - RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/WEB-INF/jsp/patient_view/patient_view.jsp"); - dispatcher.forward(request, response); - } - } - - private static String getFullURL(HttpServletRequest request) { - StringBuffer requestURL = request.getRequestURL(); - String queryString = request.getQueryString(); - - if (queryString == null) { - return requestURL.toString(); - } else { - return requestURL.append('?').append(queryString).toString(); - } - } - - - // - /** - * Handles the HTTP GET method. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - @Override - protected void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - processRequest(request, response); - } - - /** - * Handles the HTTP POST method. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - @Override - protected void doPost(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - processRequest(request, response); - } - - /** - * Returns a short description of the servlet. - * @return a String containing servlet description - */ - @Override - public String getServletInfo() { - return "Short description"; - }// -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/PortalMetaData.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/PortalMetaData.java deleted file mode 100644 index a71c653173f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/PortalMetaData.java +++ /dev/null @@ -1,134 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.json.simple.JSONValue; -import org.mskcc.cbio.portal.dao.DaoSampleProfile; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.util.AccessControl; -import org.mskcc.cbio.portal.util.SpringUtil; -import org.mskcc.cbio.portal.web_api.ProtocolException; -import org.springframework.context.ApplicationContext; -import org.springframework.context.support.ClassPathXmlApplicationContext; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.io.PrintWriter; -import java.util.HashMap; -import java.util.Map; - -/** - * This servlet returns portal meta data on demand. - * - * @author Selcuk Onur Sumer - */ -public class PortalMetaData extends HttpServlet -{ - // class which process access control to cancer studies - private AccessControl accessControl; - - /** - * Initializes the servlet. - * - * @throws javax.servlet.ServletException Serlvet Init Error. - */ - public void init() throws ServletException - { - super.init(); - - ApplicationContext context - = new ClassPathXmlApplicationContext("classpath:applicationContext-security.xml"); - - accessControl = SpringUtil.getAccessControl(); - } - - /** - * Handles HTTP GET Request. - * - * @param httpServletRequest Http Servlet Request Object. - * @param httpServletResponse Http Servlet Response Object. - * @throws javax.servlet.ServletException Servlet Error. - * @throws java.io.IOException IO Error. - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException - { - doPost(httpServletRequest, httpServletResponse); - } - - /** - * Handles HTTP POST Request. - * - * @param httpServletRequest Http Servlet Request Object. - * @param httpServletResponse Http Servlet Response Object. - * @throws javax.servlet.ServletException Servlet Error. - * @throws java.io.IOException IO Error. - */ - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException - { - String cancerStudyMetadata = httpServletRequest.getParameter("cancerStudyMetaData"); - String cancerStudyName = httpServletRequest.getParameter("cancerStudyName"); - - Map metaData = new HashMap(); - - try { - if (cancerStudyMetadata != null && - !cancerStudyMetadata.equalsIgnoreCase("false")) - { - metaData.put("cancerStudyMetaData", DaoSampleProfile.metaData( - accessControl.getCancerStudies())); - } - - if (cancerStudyName != null && - !cancerStudyName.equalsIgnoreCase("false")) - { - // TODO cancerStudyName - } - } catch (DaoException e) { - throw new ServletException(e); - } catch (ProtocolException e) { - throw new ServletException(e); - } - - httpServletResponse.setContentType("application/json"); - String jsonText = JSONValue.toJSONString(metaData); - PrintWriter writer = httpServletResponse.getWriter(); - writer.write(jsonText); - writer.flush(); - writer.close(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/PortalMetaDataJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/PortalMetaDataJSON.java deleted file mode 100644 index 72a93fd5bfa..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/PortalMetaDataJSON.java +++ /dev/null @@ -1,311 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.*; -import java.util.*; -import javax.servlet.ServletException; -import javax.servlet.http.*; -import org.json.simple.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.web_api.*; - -/** - * This Servlet Returns a JSON Representation of all Cancer Studies and all Gene - * Sets within the Portal. - * - * @author Ethan Cerami. - */ -public class PortalMetaDataJSON extends HttpServlet { - - // class which process access control to cancer studies - private AccessControl accessControl; - public static final String STUDY_ID = "study_id"; - public static final String PARTIAL_STUDIES = "partial_studies"; - public static final String GENESET_ID = "geneset_id"; - public static final String PARTIAL_GENESETS = "partial_genesets"; - - /** - * Initializes the servlet. - * - * @throws ServletException Serlvet Init Error. - */ - - public void init() throws ServletException { - super.init(); - accessControl = SpringUtil.getAccessControl(); - } - - /** - * Generates a Map which will be turned into JSON representing a cancer - * study - * - * @param cancerStudy A CancerStudy object to be turned into a map - * @param partial Whether the generated Map should be "partial", i.e. - * including only the name and type of cancer of the study, or not, - * including all information about a cancer study. - * @return A Map representing the given study. - * @throws DaoException - */ - protected Map cancerStudyMap(CancerStudy cancerStudy, boolean partial) throws DaoException { - Map ret = new LinkedHashMap(); - ret.put("name", cancerStudy.getName()); - ret.put("type_of_cancer", cancerStudy.getTypeOfCancerId()); - ret.put("description", cancerStudy.getDescription()); - ArrayList caseSets = GetSampleLists.getSampleLists(cancerStudy.getCancerStudyStableId()); - int numSamples = 0; - for (SampleList pl: caseSets) { - String suffix = pl.getStableId().substring(pl.getStableId().length()-4); - if (suffix.equals("_all")) { - numSamples = pl.getSampleList().size(); - break; - } - } - ret.put("num_samples", numSamples); - - if (partial) { - ret.put("partial", "true"); - } else { - // at this point we have the study corresponding to the given ID - ArrayList geneticProfiles - = GetGeneticProfiles.getGeneticProfiles(cancerStudy.getCancerStudyStableId()); - - JSONArray jsonGenomicProfileList = new JSONArray(); - for (GeneticProfile geneticProfile : geneticProfiles) { - Map map = new LinkedHashMap(); - map.put("id", geneticProfile.getStableId()); - map.put("alteration_type", geneticProfile.getGeneticAlterationType().name()); - map.put("show_in_analysis_tab", geneticProfile.showProfileInAnalysisTab()); - map.put("name", geneticProfile.getProfileName()); - map.put("description", geneticProfile.getProfileDescription()); - map.put("datatype", geneticProfile.getDatatype()); - jsonGenomicProfileList.add(map); - } - - JSONArray jsonCaseList = new JSONArray(); - for (SampleList caseSet : caseSets) { - Map map = new LinkedHashMap(); - map.put("id", caseSet.getStableId()); - map.put("name", caseSet.getName()); - map.put("description", caseSet.getDescription()); - map.put("size", caseSet.getSampleList().size()); - jsonCaseList.add(map); - } - ret.put("citation", cancerStudy.getCitation()); - ret.put("pmid", cancerStudy.getPmid()); - ret.put("genomic_profiles", jsonGenomicProfileList); - ret.put("case_sets", jsonCaseList); - ret.put("has_mutation_data", cancerStudy.hasMutationData(geneticProfiles)); - ret.put("has_cna_data", cancerStudy.hasCnaData()); - ret.put("has_mutsig_data", cancerStudy.hasMutSigData()); - ret.put("has_gistic_data", cancerStudy.hasGisticData()); - - ret.put("partial", "false"); - } - - return ret; - } - - /** - * Handles HTTP GET Request. - * - * @param httpServletRequest Http Servlet Request Object. - * @param httpServletResponse Http Servlet Response Object. - * @throws javax.servlet.ServletException Servlet Error. - * @throws java.io.IOException IO Error. - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, - IOException { - XDebug xdebug = new XDebug(httpServletRequest); - String studyId = httpServletRequest.getParameter(STUDY_ID); - String geneSetId = httpServletRequest.getParameter(GENESET_ID); - - try { - if (geneSetId != null) { - String geneList = ""; - GeneSetUtil geneSetUtil = GeneSetUtil.getInstance(); - ArrayList geneSetList = geneSetUtil.getGeneSetList(); - for (SetOfGenes setOfGenes : geneSetList) { - if (setOfGenes.getId().replace("/", "").equals(geneSetId)) { - geneList = setOfGenes.getGeneList(); - break; - } - } - Map obj = new LinkedHashMap(); - obj.put("list", geneList); - String jsonText = JSONValue.toJSONString(obj); - PrintWriter writer = httpServletResponse.getWriter(); - writer.write(jsonText); - writer.flush(); - writer.close(); - return; - } - if (studyId != null) { - // check if it's a valid study ID first - // If not, return {} - CancerStudy cancerStudy = null; - List cancerStudiesList = accessControl.getCancerStudies(); - for (CancerStudy study : cancerStudiesList) { - if (study.getCancerStudyStableId().equals(studyId)) { - cancerStudy = study; - break; - } - } - if (cancerStudy == null) { - String jsonText = JSONValue.toJSONString(new LinkedHashMap()); - PrintWriter writer = httpServletResponse.getWriter(); - writer.write(jsonText); - writer.flush(); - writer.close(); - return; - } - // at this point we have a CancerStudy object corresponding to - // the given study - Map jsonCancerStudySubMap = cancerStudyMap(cancerStudy, false); - httpServletResponse.setContentType("application/json"); - String jsonText = JSONValue.toJSONString(jsonCancerStudySubMap); - PrintWriter writer = httpServletResponse.getWriter(); - writer.write(jsonText); - writer.flush(); - writer.close(); - } else { - Map rootMap = new LinkedHashMap(); - Map cancerStudyMap = new LinkedHashMap(); - - // Also get cancer study types and add it to the metadata - ArrayList allTypesOfCancer = DaoTypeOfCancer.getAllTypesOfCancer(); - Collections.sort(allTypesOfCancer, new Comparator() { - @Override - public int compare(TypeOfCancer typeOfCancer, TypeOfCancer typeOfCancer1) { - return typeOfCancer.getName().compareTo(typeOfCancer1.getName()); - } - }); - Map typeOfCancerMap = new HashMap<>(); - Map visibleTypeOfCancerMap = new HashMap(); - Map cancerColors = new HashMap(); - Map visibleCancerColors = new HashMap(); - Map shortNames = new HashMap(); - Map visibleShortNames = new HashMap(); - Map parentTypeOfCancer = new HashMap(); - for (TypeOfCancer typeOfCancer : allTypesOfCancer) { - typeOfCancerMap.put(typeOfCancer.getTypeOfCancerId(), typeOfCancer); - cancerColors.put(typeOfCancer.getTypeOfCancerId(), typeOfCancer.getDedicatedColor()); - shortNames.put(typeOfCancer.getTypeOfCancerId(), typeOfCancer.getShortName()); - parentTypeOfCancer.put(typeOfCancer.getTypeOfCancerId(), typeOfCancer.getParentTypeOfCancerId()); - } - - // Cancer All Cancer Studies - List cancerStudiesList = accessControl.getCancerStudies(); - - // Get all Genomic Profiles and Case Sets for each Cancer Study - rootMap.put("cancer_studies", cancerStudyMap); - String partial_studies_s = httpServletRequest.getParameter(PARTIAL_STUDIES); - - boolean full_studies_data = (partial_studies_s == null || partial_studies_s.equals("false")); - - for (CancerStudy cancerStudy : cancerStudiesList) { - //TODO - skip the dummy "all" study still being added by accessControl.getCancerStudies() above - Map jsonCancerStudySubMap = cancerStudyMap(cancerStudy, !full_studies_data); - cancerStudyMap.put(cancerStudy.getCancerStudyStableId(), jsonCancerStudySubMap); - String typeOfCancerId = cancerStudy.getTypeOfCancerId().toLowerCase(); - if (typeOfCancerMap.get(typeOfCancerId) == null) { - //should not occur if DB is on InnoDB mode with referential constraints: - throw new RuntimeException("Cancer type record not found for: " + typeOfCancerId); - } - visibleTypeOfCancerMap.put(typeOfCancerId, typeOfCancerMap.get(typeOfCancerId).getName()); - - // climb the oncotree - String parentId = typeOfCancerMap.get(typeOfCancerId).getParentTypeOfCancerId(); - String childId = typeOfCancerId; - while (!parentId.equals("tissue")) { - //validations: TODO - these validations need to be at data loading level to block - // such entries...but keeping these exceptions here to help other with troubleshooting in case of old data: - if (typeOfCancerMap.get(parentId) == null) { - //if parent type of cancer is wrong, give error: - throw new RuntimeException("Cancer type record not found for given 'parent type of cancer': " + parentId); - } - if (childId.equalsIgnoreCase(parentId)) { - //this is also an error as it causes infinite loop when building the tree - throw new RuntimeException("Cancer type and parent cancer type cannot be the same. Found: " + childId + "," + parentId); - } - visibleTypeOfCancerMap.put(parentId, typeOfCancerMap.get(parentId).getName()); - childId = parentId; - parentId = typeOfCancerMap.get(parentId).getParentTypeOfCancerId(); - } - visibleCancerColors.put(typeOfCancerId, cancerColors.get(typeOfCancerId)); - visibleShortNames.put(typeOfCancerId, shortNames.get(typeOfCancerId)); - } - - // Only put visible ones - rootMap.put("type_of_cancers", visibleTypeOfCancerMap); - rootMap.put("cancer_colors", visibleCancerColors); - rootMap.put("short_names", visibleShortNames); - rootMap.put("parent_type_of_cancers", parentTypeOfCancer); - - // Get all Gene Sets - GeneSetUtil geneSetUtil = GeneSetUtil.getInstance(); - Map jsonGeneSetMap = new LinkedHashMap(); - rootMap.put("gene_sets", jsonGeneSetMap); - ArrayList geneSetList = geneSetUtil.getGeneSetList(); - String partial_genesets_s = httpServletRequest.getParameter(PARTIAL_GENESETS); - boolean full_genesets_data = (partial_genesets_s == null || partial_genesets_s.equals("false")); - - for (SetOfGenes setOfGenes : geneSetList) { - Map geneSetMap = new LinkedHashMap(); - geneSetMap.put("name", setOfGenes.getName()); - if (full_genesets_data) { - geneSetMap.put("gene_list", setOfGenes.getGeneList()); - } else { - geneSetMap.put("gene_list", ""); - } - jsonGeneSetMap.put(setOfGenes.getId(), geneSetMap); - } - - httpServletResponse.setContentType("application/json"); - String jsonText = JSONValue.toJSONString(rootMap); - PrintWriter writer = httpServletResponse.getWriter(); - writer.write(jsonText); - writer.flush(); - writer.close(); - } - } catch (DaoException e) { - throw new ServletException(e); - } catch (ProtocolException e) { - throw new ServletException(e); - } - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/QueryBuilder.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/QueryBuilder.java deleted file mode 100644 index fd12199b816..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/QueryBuilder.java +++ /dev/null @@ -1,865 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.web_api.*; -import org.apache.commons.lang3.*; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.mskcc.cbio.portal.model.virtualstudy.VirtualStudy; -import org.mskcc.cbio.portal.model.virtualstudy.VirtualStudyData; -import org.mskcc.cbio.portal.model.virtualstudy.VirtualStudySamples; -import org.owasp.validator.html.PolicyException; - -import org.springframework.security.core.userdetails.UserDetails; - -import java.io.*; -import java.net.URLDecoder; -import java.util.*; -import java.util.concurrent.ConcurrentHashMap; -import java.util.stream.Collectors; - -import javax.servlet.*; -import javax.servlet.http.*; - -import com.fasterxml.jackson.databind.ObjectMapper; - -import java.rmi.RemoteException; - - -/** - * Central Servlet for building queries. - */ -public class QueryBuilder extends HttpServlet { - public static final String CLIENT_TRANSPOSE_MATRIX = "transpose_matrix"; - public static final String CANCER_TYPES_INTERNAL = "cancer_types"; - public static final String PROFILE_LIST_INTERNAL = "profile_list"; - public static final String CASE_SETS_INTERNAL = "case_sets"; - public static final String CANCER_STUDY_ID = "cancer_study_id"; - public static final String CANCER_STUDY_LIST = "cancer_study_list"; - public static final String HAS_SURVIVAL_DATA = "has_survival_data"; - public static final String GENETIC_PROFILE_IDS = "genetic_profile_ids"; - public static final String GENE_SET_CHOICE = "gene_set_choice"; - public static final String CASE_SET_ID = "case_set_id"; - public static final String CASE_IDS = "case_ids"; - public static final String CASE_IDS_KEY = "case_ids_key"; - public static final String SET_OF_CASE_IDS = "set_of_case_ids"; - public static final String CLINICAL_PARAM_SELECTION = "clinical_param_selection"; - public static final String GENE_LIST = "gene_list"; - public static final String GENESET_LIST = "geneset_list"; - public static final String ACTION_NAME = "Action"; - public static final String XDEBUG = "xdebug"; - public static final String ACTION_SUBMIT = "Submit"; - public static final String STEP1_ERROR_MSG = "step1_error_msg"; - public static final String STEP2_ERROR_MSG = "step2_error_msg"; - public static final String STEP3_ERROR_MSG = "step3_error_msg"; - public static final String STEP4_ERROR_MSG = "step4_error_msg"; - public static final String PROFILE_DATA_SUMMARY = "profile_data_summary"; - public static final String DOWNLOAD_LINKS = "download_links"; - public static final String OUTPUT = "output"; - public static final String HTML_TITLE = "html_title"; - public static final String TAB_INDEX = "tab_index"; - public static final String TAB_DOWNLOAD = "tab_download"; - public static final String TAB_VISUALIZE = "tab_visualize"; - public static final String USER_ERROR_MESSAGE = "user_error_message"; - public static final String ATTRIBUTE_URL_BEFORE_FORWARDING = "ATTRIBUTE_URL_BEFORE_FORWARDING"; - public static final String Z_SCORE_THRESHOLD = "Z_SCORE_THRESHOLD"; - public static final String RPPA_SCORE_THRESHOLD = "RPPA_SCORE_THRESHOLD"; - public static final String MRNA_PROFILES_SELECTED = "MRNA_PROFILES_SELECTED"; - public static final String COMPUTE_LOG_ODDS_RATIO = "COMPUTE_LOG_ODDS_RATIO"; - public static final int MUTATION_DETAIL_LIMIT = 100; - public static final String MUTATION_DETAIL_LIMIT_REACHED = "MUTATION_DETAIL_LIMIT_REACHED"; - public static final String XDEBUG_OBJECT = "xdebug_object"; - public static final String ONCO_PRINT_HTML = "oncoprint_html"; - public static final String INDEX_PAGE = "index.do"; - public static final String DATA_PRIORITY = "data_priority"; - public static final String SELECTED_PATIENT_SAMPLE_ID_MAP = "selected_patient_sample_id_map"; - public static final String DB_VERSION = "db_version"; - public static final String DB_ERROR = "db_error"; - public static final String IS_VIRTUAL_STUDY = "is_virtual_study"; - private static final String DB_CONNECT_ERROR = ("An error occurred while trying to connect to the database." + - " This could happen if the database does not contain any cancer studies."); - - private static Logger LOG = LoggerFactory.getLogger(QueryBuilder.class); - - public static final String HAS_CANCER_TYPES = "has_cancer_types"; - - private ServletXssUtil servletXssUtil; - - // class which process access control to cancer studies - private AccessControl accessControl; - - private SessionServiceUtil sessionServiceUtil = new SessionServiceUtil(); - - /** - * Initializes the servlet. - * - * @throws ServletException Serlvet Init Error. - */ - public void init() throws ServletException { - super.init(); - try { - servletXssUtil = ServletXssUtil.getInstance(); - accessControl = SpringUtil.getAccessControl(); - } catch (PolicyException e) { - throw new ServletException (e); - } - } - - /** - * Handles HTTP GET Request. - * - * @param httpServletRequest Http Servlet Request Object. - * @param httpServletResponse Http Servlet Response Object. - * @throws ServletException Servlet Error. - * @throws IOException IO Error. - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, - IOException { - doPost(httpServletRequest, httpServletResponse); - } - - /** - * Handles HTTP POST Request. - * - * @param httpServletRequest Http Servlet Request Object. - * @param httpServletResponse Http Servlet Response Object. - * @throws ServletException Servlet Error. - * @throws IOException IO Error. - */ - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, - IOException { - - XDebug xdebug = new XDebug( httpServletRequest ); - xdebug.startTimer(); - - xdebug.logMsg(this, "Attempting to initiate new user query."); - - if (httpServletRequest.getRequestURL() != null) { - httpServletRequest.setAttribute(ATTRIBUTE_URL_BEFORE_FORWARDING, - httpServletRequest.getRequestURL().toString()); - } - - - // Get User Selected Genetic Profiles - HashSet geneticProfileIdSet = getGeneticProfileIds(httpServletRequest, xdebug); - - String dbPortalExpectedSchemaVersion = null; - String dbActualSchemaVersion = null; - // Get all Cancer Types - try { - // Get User Selected Action - String action = httpServletRequest.getParameter(ACTION_NAME); - - // Get User Defined Gene List - String geneList = httpServletRequest.getParameter(GENE_LIST); - if (httpServletRequest instanceof XssRequestWrapper) { - geneList = ((XssRequestWrapper)httpServletRequest).getRawParameter(GENE_LIST); - } - geneList = servletXssUtil.getCleanInput(geneList); - httpServletRequest.setAttribute(GENE_LIST, geneList); - - // Get data priority - Integer dataTypePriority; - try { - dataTypePriority - = Integer.parseInt(httpServletRequest.getParameter(DATA_PRIORITY).trim()); - } catch (NumberFormatException | NullPointerException e) { - dataTypePriority = 0; - } - httpServletRequest.setAttribute(DATA_PRIORITY, dataTypePriority); - - httpServletRequest.setAttribute(XDEBUG_OBJECT, xdebug); - - dbPortalExpectedSchemaVersion = GlobalProperties.getDbVersion(); - dbActualSchemaVersion = DaoInfo.getVersion(); - LOG.info("version - "+dbPortalExpectedSchemaVersion); - LOG.info("version - "+dbActualSchemaVersion); -// if (!dbPortalExpectedSchemaVersion.equals(dbActualSchemaVersion)) -// { -// String extraMessage = ""; -// //extra message for the cases where property is missing (will happen often in transition period to this new versioning model): -// if (dbPortalExpectedSchemaVersion.equals("0")) { -// extraMessage = "The db.version property also not found in your portal.properties file. This new property needs to be added by the administrator."; -// } -// String finalMessage = "Current DB schema version: " + dbActualSchemaVersion + "
    " + -// "DB schema version expected by Portal: " + dbPortalExpectedSchemaVersion + "
    " + extraMessage; -// LOG.warn(finalMessage); -// if (!GlobalProperties.isSuppressSchemaVersionMismatchErrors()) { -// throw new DbVersionException(finalMessage); -// } -// } - - // Get the example study queries configured as a skin property - String[] exampleStudyQueries = GlobalProperties.getExampleStudyQueries().split("\n"); - httpServletRequest.setAttribute("exampleStudyQueries", exampleStudyQueries); - - // Validate query -// boolean errorsExist = validateForm(action, cohortDetails, -// geneticProfileIdSet, sampleSetId, sampleIds, httpServletRequest); - boolean errorsExist = false; - - // Query single / multiple studies? - // --> Single study - // -----> regular study - // -----> virtual study - // --> Multiple studies - // -----> always build temporary cohort - String cancerStudyId = httpServletRequest.getParameter(CANCER_STUDY_ID); - String cancerStudyList = httpServletRequest.getParameter(CANCER_STUDY_LIST); - Boolean _isVirtualStudy = false; - Boolean addProfiles = false; - - //this is a common case for most of the requests from study view when the there is only one study - if (cancerStudyId != null && cancerStudyId.equals("all") && cancerStudyList != null && cancerStudyList.split(",").length == 1) { - cancerStudyId = cancerStudyList.split(",")[0]; - addProfiles = true; - } - - //redirect requests with cancerStudyId="all" and cancerStudyList="all" to home page - // handle different possible scenarios in https://github.com/cBioPortal/cbioportal/issues/3431 - if (!(cancerStudyId != null - && cancerStudyId.equals("all") - && cancerStudyList != null - && cancerStudyList.equals("all") )) { - - if (cancerStudyId != null || cancerStudyList != null) { - CancerStudy cancerStudy = null; - if(cancerStudyId != null) { - cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyId); - } - - //single regular study - if(cancerStudy != null) { - cancerStudyList = null; - if(addProfiles) { - cancerStudy.getGeneticProfiles(); - geneticProfileIdSet = new HashSet(); - GeneticProfile cnaProfile = cancerStudy.getCopyNumberAlterationProfile(true); - GeneticProfile mutationProfile = cancerStudy.getMutationProfile(); - if(cnaProfile != null) { - geneticProfileIdSet.add(cnaProfile.getStableId()); - } - if(mutationProfile != null) { - geneticProfileIdSet.add(mutationProfile.getStableId()); - } - httpServletRequest.setAttribute(GENETIC_PROFILE_IDS, geneticProfileIdSet); - } - } - //multiple and virtual study - else { - _isVirtualStudy = true; - if (cancerStudyId != null && !cancerStudyId.equals("all")) { - cancerStudyList = null; - } else { - if ((cancerStudyId == null || cancerStudyId.equals("all")) - && (cancerStudyList!= null && !cancerStudyList.equals("all"))) { - cancerStudyId = "all"; - } - } - - } - httpServletRequest.setAttribute(IS_VIRTUAL_STUDY, _isVirtualStudy); - if(httpServletRequest.getParameter(CASE_SET_ID) != null) { - httpServletRequest.setAttribute(CASE_SET_ID, httpServletRequest.getParameter(CASE_SET_ID)); - if (httpServletRequest.getParameter(CASE_SET_ID).equals("-1")) { - httpServletRequest - .setAttribute(CASE_IDS,httpServletRequest - .getParameter(CASE_IDS) - .replaceAll("\\\\n", "\n") - .replaceAll("\\\\t", "\t")); - } - - } - } - } - httpServletRequest.setAttribute(CANCER_STUDY_ID, cancerStudyId); - httpServletRequest.setAttribute(CANCER_STUDY_LIST, cancerStudyList); - - if(cancerStudyId != null) { - String queriedStudies = cancerStudyId; - if (cancerStudyId.equals("all") - && cancerStudyList != null) { - queriedStudies = cancerStudyList; - } - - Set inputCohortIds = new HashSet<>(Arrays.asList(queriedStudies.split(","))); - Set studies = getStudies(inputCohortIds); - Set unKnownStudies = new HashSet<>(); - - if(studies.isEmpty()) { - unKnownStudies = inputCohortIds; - } else { - unKnownStudies = - studies - .stream() - .filter(obj -> { - if(inputCohortIds.contains(obj.getId())) { - for (VirtualStudySamples _study : obj.getData().getStudies()) { - try { - if (accessControl.isAccessibleCancerStudy(_study.getId()).size() != 1) - return true; - } catch (Exception e) { - return true; - } - } - return false; - } else { - return true; - } - }) - .map(obj -> obj.getId()) - .collect(Collectors.toSet()); - } - - errorsExist = errorsExist || unKnownStudies.size() > 0; - // Dispatch to query result page - if (action != null && action.equals(ACTION_SUBMIT) && (!errorsExist)) { - - Map> studySampleMap = new HashMap<>(); - - studies - .stream() - .forEach(obj -> { - for (VirtualStudySamples cohortStudyCasesMap : obj.getData().getStudies()) { - if (studySampleMap.containsKey(cohortStudyCasesMap.getId())) { - String _sharedStudyId = cohortStudyCasesMap.getId(); - if (studySampleMap.get(_sharedStudyId).size() != 0) { // original entry does not contain all samples - Set mergedSet = mergeSets(studySampleMap.get(_sharedStudyId), cohortStudyCasesMap.getSamples()); - studySampleMap.put(cohortStudyCasesMap.getId(), mergedSet); - } // otherwise keep the value as empty set - //create new entry/key - } else { - studySampleMap.put(cohortStudyCasesMap.getId(), cohortStudyCasesMap.getSamples()); - } - } - }); - - processData(studySampleMap, geneList, geneticProfileIdSet, - httpServletRequest.getParameter(CASE_SET_ID), - httpServletRequest.getParameter(CASE_IDS_KEY), - httpServletRequest.getParameter(CASE_IDS), - dataTypePriority, getServletContext(), - httpServletRequest, httpServletResponse, xdebug); - // Dispatch to home page (main query form) - } else { - if (errorsExist) { - httpServletRequest.setAttribute(QueryBuilder.USER_ERROR_MESSAGE, "Please fix the errors below."); - } - RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/WEB-INF/jsp/index.jsp"); - dispatcher.forward(httpServletRequest, httpServletResponse); - } - } else { - RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/WEB-INF/jsp/index.jsp"); - dispatcher.forward(httpServletRequest, httpServletResponse); - } - - - - } catch (RemoteException e) { - xdebug.logMsg(this, "Got Remote Exception: " + e.getMessage()); - forwardToErrorPage(httpServletRequest, httpServletResponse, - DB_CONNECT_ERROR, xdebug); - } catch (DaoException e) { - String errorMessage = ""; - if (dbPortalExpectedSchemaVersion != null && !dbPortalExpectedSchemaVersion.equals(dbActualSchemaVersion)) { - errorMessage += "Error could also be related to incompatible DB schema version: DB is at schema version " + dbActualSchemaVersion + - " while portal expects schema version " + dbPortalExpectedSchemaVersion + ". "; - } - errorMessage += "Got Database Exception: " + e.getMessage(); - xdebug.logMsg(this, errorMessage); - forwardToErrorPage(httpServletRequest, httpServletResponse, - DB_CONNECT_ERROR + " " + errorMessage, xdebug); -// } catch (DbVersionException e) { -// String errorMessage = "Mismatch between current DB schema version and DB schema version expected by portal. " + e.getMessage(); -// xdebug.logMsg(this, errorMessage); -// forwardToErrorPage(httpServletRequest, httpServletResponse, -// errorMessage, xdebug); - } - /*catch (ProtocolException e) { - xdebug.logMsg(this, "Got Protocol Exception: " + e.getMessage()); - forwardToErrorPage(httpServletRequest, httpServletResponse, - DB_CONNECT_ERROR, xdebug); - }*/ - - } - - /** - * Gets all Genetic Profile IDs. - * - * These values are passed with parameter names like this: - * - * genetic_profile_ids - * genetic_profile_ids_MUTATION - * genetic_profile_ids_MUTATION_EXTENDED - * genetic_profile_ids_COPY_NUMBER_ALTERATION - * genetic_profile_ids_MRNA_EXPRESSION - * - * - * @param httpServletRequest HTTPServlet Request. - * @return HashSet of GeneticProfileIDs. - */ - private HashSet getGeneticProfileIds(HttpServletRequest httpServletRequest, - XDebug xdebug) { - HashSet geneticProfileIdSet = new HashSet(); - Enumeration nameEnumeration = httpServletRequest.getParameterNames(); - while (nameEnumeration.hasMoreElements()) { - String currentName = (String) nameEnumeration.nextElement(); - if (currentName.startsWith(GENETIC_PROFILE_IDS)) { - String geneticProfileIds[] = httpServletRequest.getParameterValues(currentName); - if (geneticProfileIds != null && geneticProfileIds.length > 0) { - for (String geneticProfileId : geneticProfileIds) { - xdebug.logMsg (this, "Received Genetic Profile ID: " - + currentName + ": " + geneticProfileId); - geneticProfileIdSet.add(geneticProfileId); - } - } - } - } - httpServletRequest.setAttribute(GENETIC_PROFILE_IDS, geneticProfileIdSet); - return geneticProfileIdSet; - } - - /** - * process a good request - * - */ - private void processData(Map> inputStudySampleMap, - String geneList, - HashSet geneticProfileIdSet, - String sampleSetId, - String sampleIdsKey, - String sampleIdsStr, //raw string from "user custom case ids" box - Integer dataTypePriority, - ServletContext servletContext, - HttpServletRequest request, - HttpServletResponse response, - XDebug xdebug) throws IOException, ServletException, DaoException { - - String sampleSetName = "User-defined Patient List"; - String sampleSetDescription = "User defined patient list."; - HashMap geneticProfileMap = new HashMap<>(); - Map> studySampleMap = new HashMap<>(); - Boolean showIGVtab = false; - Boolean hasMrna = false; - Boolean hasMethylation = false; - Boolean hasCopyNo = false; - Boolean hasSurvival = false; - String decodedGeneList = URLDecoder.decode(geneList, "UTF-8"); - String singleStudyId = (String) request.getAttribute(CANCER_STUDY_ID); - if (inputStudySampleMap.keySet().size() == 1 && inputStudySampleMap.containsKey(singleStudyId)) { // single study - String _cancerStudyId = inputStudySampleMap.keySet().iterator().next(); - if (!sampleSetId.equals("-1")) { - for (SampleList sampleSet : GetSampleLists.getSampleLists(_cancerStudyId)) { - if (sampleSet.getStableId().equals(sampleSetId)) { - sampleIdsStr = sampleSet.getSampleListAsString(); - sampleSetName = sampleSet.getName(); - sampleSetDescription = sampleSet.getDescription(); - break; - } - } - List samplesList = new ArrayList<>(Arrays.asList(sampleIdsStr.split(" "))); - studySampleMap.put(_cancerStudyId,samplesList); - } else if (sampleSetId.equals("-1") && sampleIdsKey != null) { - sampleIdsStr = SampleSetUtil.getSampleIds(sampleIdsKey); - List samplesList = new ArrayList<>(Arrays.asList(sampleIdsStr.split(" "))); - studySampleMap.put(_cancerStudyId,samplesList); - } else if (sampleSetId.equals("-1") && sampleIdsKey == null && - sampleIdsStr != null && sampleIdsStr.length() > 0) { - studySampleMap = parseCaseIdsTextBoxStr(sampleIdsStr); - } else { - redirectStudyUnavailable(request, response); - } - } else { // multiple studies OR single virtual study - if (sampleSetId.equals("-1") && sampleIdsStr != null && sampleIdsStr.length() > 0) { //using user customized case list - studySampleMap = parseCaseIdsTextBoxStr(sampleIdsStr); - } else { - - SampleSet sampleSet = SampleSet.get(sampleSetId); - sampleSet = (sampleSet == null) ? SampleSet.ALL : sampleSet; - - request.setAttribute(CASE_SET_ID, sampleSet.getSampleSet()); - - final SampleListCategory sampleListCategory = sampleSet.getSampleListCategory(); - final Map> studySampleMapConcurrent = new ConcurrentHashMap<>(); - - inputStudySampleMap.keySet().parallelStream().forEach((String _cancerStudyId) -> { - try { - for(SampleList sampleList:GetSampleLists.getSampleLists(_cancerStudyId)) { - if (sampleList.getSampleListCategory().equals(sampleListCategory) - || (sampleListCategory.equals(SampleListCategory.ALL_CASES_IN_STUDY) - && sampleList.getStableId().equals(_cancerStudyId + "_all"))) { - List sampleIds = sampleList.getSampleList(); - if (inputStudySampleMap.get(_cancerStudyId).size() > 0) { - sampleIds.retainAll(inputStudySampleMap.get(_cancerStudyId)); - } - studySampleMapConcurrent.put(_cancerStudyId, sampleIds); - break; - } - } - } catch (DaoException e) { - e.printStackTrace(); - return; - } - }); - studySampleMap = studySampleMapConcurrent; - } - } - - //always set sampleIdsKey when there is only one real study in query - if (studySampleMap.keySet().size() == 1 && sampleIdsKey == null) { - String sampleIds = studySampleMap - .values() - .stream() - .flatMap(List::stream) - .collect(Collectors.joining("\n")); - sampleIdsKey = SampleSetUtil.shortenSampleIds(sampleIds); - } - - - // retrieve genetic profiles - for (String cancerStudyId : inputStudySampleMap.keySet()) { - CancerStudy selectedCancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyId); - ArrayList geneticProfileList = GetGeneticProfiles.getGeneticProfiles(cancerStudyId); - showIGVtab = showIGVtab || selectedCancerStudy.hasCnaSegmentData(); - hasMrna = hasMrna || countProfiles(geneticProfileList, GeneticAlterationType.MRNA_EXPRESSION) > 0; - hasMethylation = hasMethylation || countProfiles(geneticProfileList, GeneticAlterationType.METHYLATION) > 0; - hasCopyNo = hasCopyNo || countProfiles(geneticProfileList, GeneticAlterationType.COPY_NUMBER_ALTERATION) > 0; - hasSurvival = hasSurvival || selectedCancerStudy.hasSurvivalData(); - for(String profileId : geneticProfileIdSet){ - if (profileId != null && profileId.length() != 0) - geneticProfileMap.put(profileId, GeneticProfileUtil.getProfile(profileId, geneticProfileList)); - } - if (inputStudySampleMap.size()>1 || !inputStudySampleMap.containsKey(singleStudyId)) { - HashMap defaultGeneticProfileSet = null; - CategorizedGeneticProfileSet categorizedGeneticProfileSet = new CategorizedGeneticProfileSet( - geneticProfileList); - if (dataTypePriority != null) { - // Get the default genomic profiles - switch (dataTypePriority) { - case 2: - defaultGeneticProfileSet = categorizedGeneticProfileSet.getDefaultCopyNumberMap(); - break; - case 1: - defaultGeneticProfileSet = categorizedGeneticProfileSet.getDefaultMutationMap(); - break; - case 0: - default: - defaultGeneticProfileSet = categorizedGeneticProfileSet.getDefaultMutationAndCopyNumberMap(); - } - } else { - defaultGeneticProfileSet = categorizedGeneticProfileSet.getDefaultMutationAndCopyNumberMap(); - } - // geneticProfileMap.putAll(defaultGeneticProfileSet); - for (String pId: defaultGeneticProfileSet.keySet()) { - geneticProfileMap.put(pId, defaultGeneticProfileSet.get(pId)); - } - - } - } - // this will create a key even if the patient set is a predefined set, - // because it is required to build a patient id string in any case - request.setAttribute(CASE_IDS_KEY, sampleIdsKey); - request.setAttribute("case_set_name", sampleSetName); - request.setAttribute("case_set_description", sampleSetDescription); - request.setAttribute("showIGVtab", showIGVtab); - request.setAttribute("hasMrna", hasMrna); - request.setAttribute("hasMethylation", hasMethylation); - request.setAttribute("hasCopyNo", hasCopyNo); - request.setAttribute("hasSurvival", hasSurvival); - - ObjectMapper mapper = new ObjectMapper(); - String studySampleMapString = mapper.writeValueAsString(studySampleMap); - request.setAttribute("STUDY_SAMPLE_MAP", studySampleMapString); - - // retrieve information about the cancer types - List samples = new ArrayList<>(); - for (List samplesList : studySampleMap.values()) { - samples.addAll(samplesList); - } - Boolean showCancerTypesSummary = false; - Map> cancerTypesMap = DaoClinicalData.getCancerTypeInfoBySamples(samples); - if(cancerTypesMap.keySet().size() > 1) { - showCancerTypesSummary = true; - } - else if (cancerTypesMap.keySet().size() == 1 && cancerTypesMap.values().iterator().next().size() > 1 ) { - showCancerTypesSummary = true; - } - request.setAttribute(HAS_CANCER_TYPES, showCancerTypesSummary); - - String tabIndex = request.getParameter(QueryBuilder.TAB_INDEX); - if (tabIndex != null && tabIndex.equals(QueryBuilder.TAB_VISUALIZE)) { - HashSet geneticProfileIds = new HashSet(geneticProfileMap.keySet()); - ArrayList geneticProfiles = new ArrayList<>(geneticProfileMap.values()); - double zScoreThreshold = ZScoreUtil.getZScore(geneticProfileIds, geneticProfiles, request); - double rppaScoreThreshold = ZScoreUtil.getRPPAScore(request); - request.setAttribute(GENETIC_PROFILE_IDS, geneticProfileIds); - request.setAttribute(Z_SCORE_THRESHOLD, zScoreThreshold); - request.setAttribute(RPPA_SCORE_THRESHOLD, rppaScoreThreshold); - - // Store download links in session (for possible future retrieval). - RequestDispatcher dispatcher = - getServletContext().getRequestDispatcher("/WEB-INF/jsp/visualize.jsp"); - dispatcher.forward(request, response); - } else if (tabIndex != null && tabIndex.equals(QueryBuilder.TAB_DOWNLOAD)) { - // include downloadable data in session - ArrayList downloadLinkSet = new ArrayList<>(); - for(GeneticProfile profile : geneticProfileMap.values()){ - String _sampleIdsStr = StringUtils.join(studySampleMap.get(DaoCancerStudy.getCancerStudyByInternalId(profile.getCancerStudyId()).getCancerStudyStableId()), " "); - if (_sampleIdsStr != null && _sampleIdsStr.length() != 0) { - GetProfileData remoteCall = - new GetProfileData(profile, new ArrayList<>(Arrays.asList(decodedGeneList.split("( )|(\\n)"))), _sampleIdsStr); - DownloadLink downloadLink = new DownloadLink(profile, new ArrayList<>(Arrays.asList(decodedGeneList.split("( )|(\\n)"))), sampleIdsStr, - remoteCall.getRawContent()); - downloadLinkSet.add(downloadLink); - } - } - request.getSession().setAttribute(DOWNLOAD_LINKS, downloadLinkSet); - - ShowData.showDataAtSpecifiedIndex(servletContext, request, - response, 0, xdebug); - } - } - - private void redirectStudyUnavailable(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException - { - request.setAttribute(QueryBuilder.USER_ERROR_MESSAGE, "The selected cancer study is currently being updated, please try back later."); - RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/WEB-INF/jsp/index.jsp"); - dispatcher.forward(request, response); - } - - private Map> parseCaseIdsTextBoxStr(String _inputStr) { - Map> _resultMap = new HashMap<>(); - _inputStr = _inputStr.replaceAll("\\\\n", "\n").replaceAll("\\\\t", "\t"); - _inputStr = _inputStr.replaceAll("\n", "+").replaceAll("\t", ":"); - String[] _segs = _inputStr.split("\\+"); // _seg => a line in "Case Ids" box: study_id:sampleId - for (String _seg: _segs) { - String _studyId = _seg.split(":")[0]; - String _sampleId = _seg.split(":")[1]; - if (_resultMap.containsKey(_studyId)) { - List _tmpSampleList = _resultMap.get(_studyId); - if (!_tmpSampleList.contains(_sampleId)) { - _tmpSampleList.add(_sampleId); - } - _resultMap.put(_studyId, _tmpSampleList); - } else { - List _tmpSampleList = new ArrayList<>(Arrays.asList(_sampleId)); - _resultMap.put(_studyId, _tmpSampleList); - } - } - return _resultMap; - } - - /** - * validate the portal web input form. - * @throws ProtocolException - */ - private boolean validateForm(String action, - Map> studySampleMap, - HashSet geneticProfileIdSet, - String sampleSetId, String sampleIds, - HttpServletRequest httpServletRequest) throws DaoException { - boolean errorsExist = false; - String tabIndex = httpServletRequest.getParameter(QueryBuilder.TAB_INDEX); - if (action != null) { - if (action.equals(ACTION_SUBMIT)) { - - if (studySampleMap.keySet().size() == 0) { - httpServletRequest.setAttribute(STEP1_ERROR_MSG, - //"You are not authorized to view the cancer study with id: '" + - //cohortDetails.getCohortId() + "'. "); - "You are not authorized to view the cancer study."); //TODO: how to specify the Id(s) here? - errorsExist = true; - } - else { - UserDetails ud = accessControl.getUserDetails(); - if (ud != null) { - LOG.info("QueryBuilder.validateForm: Query initiated by user: " + ud.getUsername()); - } - } - - if(studySampleMap.keySet().size() == 1) { - - if (geneticProfileIdSet.size() == 0) { - if (tabIndex == null || tabIndex.equals(QueryBuilder.TAB_DOWNLOAD)) { - httpServletRequest.setAttribute(STEP2_ERROR_MSG, - "Please select a genetic profile below. "); - } else { - httpServletRequest.setAttribute(STEP2_ERROR_MSG, - "Please select one or more genetic profiles below. "); - } - errorsExist = true; - } - - // user-defined patient set - if (sampleIds != null && - sampleSetId != null && - sampleSetId.equals("-1")) - { - // empty patient list - if (sampleIds.trim().length() == 0) - { - httpServletRequest.setAttribute(STEP3_ERROR_MSG, - "Please enter at least one ID below. "); - - errorsExist = true; - } - else - { - List invalidSamples = SampleSetUtil - .validateSampleSet( - studySampleMap.keySet().iterator().next(), - sampleIds); - - String sampleSetErrMsg = "Invalid samples(s) for the selected cancer study:"; - - // non-empty list, but contains invalid patient IDs - if (invalidSamples.size() > 0) - { - // append patient ids to the message - for (String sampleId : invalidSamples) - { - sampleSetErrMsg += " " + sampleId; - } - - httpServletRequest.setAttribute(STEP3_ERROR_MSG, - sampleSetErrMsg); - - errorsExist = true; - } - } - } - - - } - } - } - - return errorsExist; - } - - private void forwardToErrorPage(HttpServletRequest request, HttpServletResponse response, - String userMessage, XDebug xdebug) - throws ServletException, IOException { - request.setAttribute("xdebug_object", xdebug); - request.setAttribute(USER_ERROR_MESSAGE, userMessage); - RequestDispatcher dispatcher = - getServletContext().getRequestDispatcher("/WEB-INF/jsp/error.jsp"); - dispatcher.forward(request, response); - } - - private int countProfiles (ArrayList profileList, GeneticAlterationType type) { - int counter = 0; - for (int i = 0; i < profileList.size(); i++) { - GeneticProfile profile = profileList.get(i); - if (profile.getGeneticAlterationType() == type) { - counter++; - } - } - return counter; - } - - private Set getStudies(Set inputCohortIds) throws DaoException { - Set studies = new HashSet<>(); - SessionServiceUtil sessionServiceUtil = new SessionServiceUtil(); - for (String inputCohortId: inputCohortIds) { - try { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(inputCohortId); - // is virtual study - if (cancerStudy == null) { - VirtualStudy virtualStudy = sessionServiceUtil.getVirtualStudyData(inputCohortId); - if (virtualStudy != null && virtualStudy.getData().getStudies().size() > 0) { - studies.add(virtualStudy); - } - // is regular study - } else { - VirtualStudy study = new VirtualStudy(); - VirtualStudySamples studySamples = new VirtualStudySamples(); - studySamples.setId(inputCohortId); - studySamples.setSamples(new HashSet<>()); - VirtualStudyData studyData = new VirtualStudyData(); - studyData.setStudies(Collections.singleton(studySamples)); - study.setId(cancerStudy.getCancerStudyStableId()); - study.setData(studyData); - studies.add(study); - } - } catch (DaoException e) { - throw e; - } - } - return studies; - } - - private Set mergeSets(Set a, Set b) { - Set resultSet = new HashSet(a.size() + b.size()); - for (String i : a) { resultSet.add(i); } - for (String i : b) { resultSet.add(i); } - return resultSet; - } -} - -enum SampleSet { - ALL("all",SampleListCategory.ALL_CASES_IN_STUDY), - W_MUT_CNA("w_mut_cna",SampleListCategory.ALL_CASES_WITH_MUTATION_AND_CNA_DATA), - W_MUT("w_mut",SampleListCategory.ALL_CASES_WITH_MUTATION_DATA), - W_CNA("w_cna",SampleListCategory.ALL_CASES_WITH_CNA_DATA); - - private SampleListCategory sampleListCategory; - - private String sampleSet; - - SampleSet(String sampleSet, SampleListCategory sampleListCategory) { - this.sampleSet = sampleSet; - this.sampleListCategory = sampleListCategory; - } - - public String getSampleSet() { - return sampleSet; - } - - public SampleListCategory getSampleListCategory() { - return sampleListCategory; - } - - public static SampleSet get(String sampleSet) { - return Arrays.stream(values()) - .filter(obj -> obj.sampleSet.equalsIgnoreCase(sampleSet)) - .findFirst() - .orElse(null); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/ServletXssUtil.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/ServletXssUtil.java deleted file mode 100644 index ea5dc832075..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/ServletXssUtil.java +++ /dev/null @@ -1,173 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.apache.commons.text.StringEscapeUtils; -import org.owasp.validator.html.Policy; -import org.owasp.validator.html.AntiSamy; -import org.owasp.validator.html.PolicyException; -import org.owasp.validator.html.ScanException; -import org.owasp.validator.html.CleanResults; - -import javax.servlet.http.HttpServletRequest; -import java.io.InputStream; - -/** - * Servlet Cross Site Scripting Util Class. - */ -public class ServletXssUtil { - private static ServletXssUtil servletUtil; - private Policy policy; - private AntiSamy as; - - /** - * Private Constructor. - * - * @throws PolicyException Policy Error. - */ - private ServletXssUtil() throws PolicyException { - InputStream inputStream = getClass().getClassLoader().getResourceAsStream("antisamy.xml"); - policy = Policy.getInstance(inputStream); - as = new AntiSamy(); - } - - /** - * Gets Global Singleton. - * @return Global Singleton of Servlet Util. - * @throws PolicyException Policy Exception. - */ - public static ServletXssUtil getInstance() throws PolicyException { - if (servletUtil == null) { - servletUtil = new ServletXssUtil(); - } - return servletUtil; - } - - /** - * Gets Clean XSS User Input. - * - * @param httpServletRequest Http Servlet Request. - * @param parameter Parameter. - * @return Clean Input, minus XSS Scripting Attack Problems. - * @throws ScanException Scan Error. - * @throws PolicyException Policy Error. - */ - public String getCleanInput (HttpServletRequest httpServletRequest, String parameter) { - String dirtyInput = httpServletRequest.getParameter(parameter); - try { - if (dirtyInput != null) { - CleanResults cr = as.scan(dirtyInput, policy); - return cr.getCleanHTML(); - } else { - return null; - } - } catch (ScanException e) { - System.err.println(e.getMessage()); - return null; - } catch (PolicyException e) { - System.err.println(e.getMessage()); - return null; - } - } - - /** - * Gets Clean XSS User Input. - * - * @param dirty Dirty User Input. - * @return Clean User Input. - */ - public String getCleanInput (String dirty) { - try { - CleanResults cr = as.scan(dirty, policy); - return cr.getCleanHTML(); - } catch (ScanException e) { - return null; - } catch (PolicyException e) { - return null; - } - } - - /** - * Gets Cleaner XSS User Input. In addition to applying antisamy rules, - * this method also escapes JavaScript characters. - * - * @param dirty Dirty User Input. - * @return Clean User Input. - */ - public String getCleanerInput(String dirty) - { - String clean = this.getCleanInput(dirty); - - if (clean != null) - { - clean = this.getJavascriptFreeInput(clean); - } - - return clean; - } - - /** - * /** - * Gets Cleaner XSS User Input. In addition to applying antisamy rules, - * this method also escapes JavaScript characters. - * - * @param request HTTP servlet request - * @param parameter name of the parameter - * @return cleaned and escaped user input - */ - public String getCleanerInput(HttpServletRequest request, String parameter) - { - String dirty = request.getParameter(parameter); - - return this.getCleanerInput(dirty); - } - - /** - * Escapes JavaScript characters for the given string. Also strips all - * occurrences of the word "javascript" from the string. - * - * @param dirty unescaped input string - * @return JavaScript escaped string - */ - public String getJavascriptFreeInput(String dirty) - { - String clean = null; - - if (dirty != null) - { - clean = StringEscapeUtils.escapeEcmaScript(dirty).replaceAll("(?i)javascript", ""); - } - - return clean; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/ShowData.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/ShowData.java deleted file mode 100644 index 34cc7cd6eef..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/ShowData.java +++ /dev/null @@ -1,180 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.mskcc.cbio.portal.model.DownloadLink; -import org.mskcc.cbio.portal.util.XDebug; -import org.owasp.validator.html.PolicyException; - -import javax.servlet.RequestDispatcher; -import javax.servlet.ServletContext; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.io.PrintWriter; -import java.util.ArrayList; - -/** - * Shows Content Already Retrieved from the CGDS Server. - */ -public class ShowData extends HttpServlet { - public static final String INDEX = "index"; - - /** - * Handles HTTP GET Request. - * - * @param request Http Servlet Request Object. - * @param response Http Servlet Response Object. - * @throws javax.servlet.ServletException Servlet Error. - * @throws java.io.IOException IO Error. - */ - protected void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - XDebug xdebug = new XDebug( request ); - showData(getServletContext(), request, response, xdebug); - } - - private static void showData(ServletContext servletContext, HttpServletRequest request, - HttpServletResponse response, XDebug xdebug) - throws ServletException, IOException { - String index = request.getParameter(INDEX); - if (index == null || index.trim().length() == 0) { - forwardToErrorPage(servletContext, request, response, xdebug); - } else { - try { - int i = Integer.parseInt(index); - showDataAtSpecifiedIndex(servletContext, request, response, i, xdebug); - } catch (NumberFormatException e) { - forwardToErrorPage(servletContext, request, response, xdebug); - } - } - } - - /** - * Shows data at specified index value. - * - * @param servletContext ServletContext Object. - * @param request Servlet Request. - * @param response Servlet Response. - * @param i Index i. - * @throws IOException IO Error. - * @throws ServletException Servlet Error. - */ - public static void showDataAtSpecifiedIndex(ServletContext servletContext, - HttpServletRequest request, HttpServletResponse response, int i, - XDebug xdebug) - throws IOException, ServletException { - ArrayList downloadLinkList = (ArrayList) - request.getSession().getAttribute(QueryBuilder.DOWNLOAD_LINKS); - if (downloadLinkList == null || downloadLinkList.size() == 0) { - xdebug.logMsg(xdebug, "Download link list is null or empty"); - forwardToErrorPage(servletContext, request, response, xdebug); - } else { - try { - DownloadLink downloadLink = downloadLinkList.get(i); - PrintWriter writer = response.getWriter(); - response.setContentType("text/plain"); - response.setHeader("Content-Disposition", "attachment;filename=cBioPortal_data.txt"); - String transposeStr = request.getParameter( - QueryBuilder.CLIENT_TRANSPOSE_MATRIX); - boolean transpose = false; - if (transposeStr != null) { - transpose = true; - } - outputData(downloadLink.getContent(), writer, transpose, xdebug); - writer.flush(); - } catch (ArrayIndexOutOfBoundsException e) { - xdebug.logMsg(xdebug, "Array Index out of bounds: " + e.getMessage()); - forwardToErrorPage(servletContext, request, response, xdebug); - } - } - } - - private static void outputData(String content, PrintWriter writer, boolean transpose, - XDebug xdebug) { - String lines[] = content.split("\n"); - - int numRows = 0; - int numCols = 0; - ArrayList dataLines = new ArrayList(); - for (String line : lines) { - if (line.startsWith("#")) { - writer.write(line + "\n"); - } else { - dataLines.add(line.trim()); - numRows++; - if (numRows == 1) { - String parts[] = line.split("\\s"); - numCols = parts.length; - } - } - } - xdebug.logMsg(xdebug, "Data matrix is size: " + numRows + " x " + numCols + "."); - String matrix[][] = new String[numRows][numCols]; - for (int i = 0; i < dataLines.size(); i++) { - String line = dataLines.get(i); - String parts[] = line.split("\t"); - for (int j = 0; j < parts.length; j++) { - matrix[i][j] = parts[j]; - } - } - - if (!transpose) { - for (int i = 0; i < numRows; i++) { - for (int j = 0; j < numCols; j++) { - writer.write(matrix[i][j] + "\t"); - } - writer.write("\n"); - } - } else { - for (int i = 0; i < numCols; i++) { - for (int j = 0; j < numRows; j++) { - writer.write(matrix[j][i] + "\t"); - } - writer.write("\n"); - } - } - - } - - private static void forwardToErrorPage(ServletContext servletContext, - HttpServletRequest request, HttpServletResponse response, XDebug xdebug) - throws ServletException, IOException { - request.setAttribute("xdebug_object", xdebug); - RequestDispatcher dispatcher = - servletContext.getRequestDispatcher("/WEB-INF/jsp/error.jsp"); - dispatcher.forward(request, response); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/SimilarPatientsJSON.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/SimilarPatientsJSON.java deleted file mode 100644 index e9b1acc7b9b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/SimilarPatientsJSON.java +++ /dev/null @@ -1,208 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.*; -import java.util.*; - -import javax.servlet.ServletConfig; -import javax.servlet.ServletException; -import javax.servlet.http.*; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.json.simple.*; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.AccessControl; -import org.mskcc.cbio.portal.util.SpringUtil; - -/** - * - * @author jj - */ -public class SimilarPatientsJSON extends HttpServlet { - private static Logger logger = LoggerFactory.getLogger(SimilarPatientsJSON.class); - - public static final String MUTATION = "mutation"; - public static final String CNA = "cna"; - - // class which process access control to cancer studies - private AccessControl accessControl; - - @Override - public void init(ServletConfig config) throws ServletException { - super.init(config); - accessControl = SpringUtil.getAccessControl(); - } - - /** - * Processes requests for both HTTP GET and POST methods. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - protected void processRequest(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - JSONArray table = new JSONArray(); - - String strMutations = request.getParameter(MUTATION); - String strCna = request.getParameter(CNA); - String sample = request.getParameter(PatientView.SAMPLE_ID); - String cancerStudyId = request.getParameter(QueryBuilder.CANCER_STUDY_ID); - - try { - if (cancerStudyId != null) { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyId); - if (cancerStudy != null - && accessControl.isAccessibleCancerStudy(cancerStudy.getCancerStudyStableId()).size() == 1) { - Sample _sample = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudy.getInternalId(), sample); - if (_sample!=null) { - Map> similarMutations; - if (strMutations==null||strMutations.isEmpty()) { - similarMutations = Collections.emptyMap(); - } else { - similarMutations = DaoMutation.getSimilarSamplesWithMutationsByKeywords(strMutations); - similarMutations.remove(_sample); - } - Map> similarCnas; - if (strCna==null||strCna.isEmpty()) { - similarCnas = Collections.emptyMap(); - } else { - similarCnas = DaoCnaEvent.getSamplesWithAlterations(strCna); - similarCnas.remove(_sample); - } - - export(table, similarMutations, similarCnas); - } - } - } - } catch (DaoException ex) { - throw new ServletException(ex); - } - - PrintWriter out = response.getWriter(); - response.setContentType("application/json"); - try { - JSONValue.writeJSONString(table, out); - } finally { - out.close(); - } - } - -// private Set parseEventIds(String str) { -// String[] parts = str.split(" "); -// Set ret = new HashSet(parts.length); -// for (String strMut : parts) { -// try { -// ret.add(Long.valueOf(strMut)); -// } catch (java.lang.NumberFormatException ex) { -// logger.info(ex.getMessage()); -// } -// } -// return ret; -// } - - private void export(JSONArray table, Map> similarMutations, Map> similarCnas) - throws DaoException { - Set samples = new HashSet(); - samples.addAll(similarMutations.keySet()); - samples.addAll(similarCnas.keySet()); - for (Sample sample : samples) { - JSONArray row = new JSONArray(); - row.add(sample.getStableId()); - - String[] cancerStudy = {"unknown","unknown"}; - try { - Patient patient = DaoPatient.getPatientById(sample.getInternalPatientId()); - CancerStudy study = patient.getCancerStudy(); - cancerStudy[0] = study.getCancerStudyStableId(); - cancerStudy[1] = study.getName(); - } catch (Exception e) { - logger.error(e.getMessage()); - } - - row.add(Arrays.asList(cancerStudy)); - Map> events = new HashMap>(2); - - Set mutations = similarMutations.get(sample); - if (mutations != null) { - events.put(MUTATION, mutations); - } - - Set cna = similarCnas.get(sample); - if (cna != null) { - events.put(CNA, cna); - } - - row.add(events); - table.add(row); - } - } - - // - /** - * Handles the HTTP GET method. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - @Override - protected void doGet(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - processRequest(request, response); - } - - /** - * Handles the HTTP POST method. - * @param request servlet request - * @param response servlet response - * @throws ServletException if a servlet-specific error occurs - * @throws IOException if an I/O error occurs - */ - @Override - protected void doPost(HttpServletRequest request, HttpServletResponse response) - throws ServletException, IOException { - processRequest(request, response); - } - - /** - * Returns a short description of the servlet. - * @return a String containing servlet description - */ - @Override - public String getServletInfo() { - return "Short description"; - }// -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/SurvivalChiSquareDistributionCalc.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/SurvivalChiSquareDistributionCalc.java deleted file mode 100644 index 37bf8566e52..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/SurvivalChiSquareDistributionCalc.java +++ /dev/null @@ -1,88 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.io.PrintWriter; -import org.apache.commons.math3.distribution.ChiSquaredDistribution; - -/** - * Calculate p-value from chi square score - * (degree of freedom is fixed as 1) - * - * - * @author : yichao S - * @date: Sep 2013 - * @param chi_square_score - * - * @return p_value - */ - -public class SurvivalChiSquareDistributionCalc extends HttpServlet { - - /** - * Handles HTTP GET Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws javax.servlet.ServletException - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) - throws ServletException, IOException { - doPost(httpServletRequest, httpServletResponse); - } - - /** - * Handles the HTTP POST Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) - throws ServletException, IOException { - String chi_square_score = httpServletRequest.getParameter("chi_square_score"); - ChiSquaredDistribution distribution; - distribution = new ChiSquaredDistribution(1); - double p_value = 1 - distribution.cumulativeProbability(Float.parseFloat(chi_square_score)); - httpServletResponse.setContentType("text/plain"); - PrintWriter out = httpServletResponse.getWriter(); - out.write(Double.toString(p_value)); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/SvgConverter.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/SvgConverter.java deleted file mode 100644 index 1c7f8eedab4..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/SvgConverter.java +++ /dev/null @@ -1,169 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.*; -import java.util.regex.Pattern; -import java.util.regex.Matcher; - -import org.apache.commons.codec.binary.Base64; -import org.apache.commons.io.FilenameUtils; -import org.apache.batik.transcoder.Transcoder; -import org.apache.batik.transcoder.TranscoderException; -import org.apache.batik.transcoder.TranscoderInput; -import org.apache.batik.transcoder.TranscoderOutput; -import org.apache.fop.svg.PDFTranscoder; -import org.apache.batik.transcoder.image.PNGTranscoder; - -import javax.servlet.RequestDispatcher; -import javax.servlet.ServletContext; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import org.apache.commons.io.IOUtils; -import org.apache.commons.fileupload.FileItem; -import org.mskcc.cbio.portal.util.FileUploadRequestWrapper; -import org.mskcc.cbio.portal.util.XDebug; -import org.mskcc.cbio.portal.util.XssRequestWrapper; -import org.owasp.validator.html.PolicyException; - -public class SvgConverter extends HttpServlet { - - private Pattern svgXPosPattern; - private static String DEFAULT_FILENAME = "result"; - - /** - * Initializes the servlet. - * - * @throws ServletException - */ - public void init() throws ServletException { - - super.init(); - svgXPosPattern = Pattern.compile("( x=\"(\\d+)\")"); - } - - /** - * Handles HTTP GET Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, - IOException { - - doPost(httpServletRequest, httpServletResponse); - } - - /** - * Handles the HTTP POST Request. - * - * @param httpServletRequest HttpServletRequest - * @param httpServletResponse HttpServletResponse - * @throws ServletException - */ - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - - // setup a debug object - XDebug xdebug = new XDebug( httpServletRequest ); - xdebug.logMsg(this, "Attempting to parse request parameters."); - - String format = httpServletRequest.getParameter("filetype"); - String xml = httpServletRequest.getParameter("svgelement"); - - // TODO - update antisamy.xml to support svg-xml - if (httpServletRequest instanceof XssRequestWrapper) - { - format = ((XssRequestWrapper) httpServletRequest).getRawParameter("filetype"); - xml = ((XssRequestWrapper) httpServletRequest).getRawParameter("svgelement"); - } - - if (format.equals("pdf_data")) - { - convertToPDF(httpServletResponse, xml); - } else if (format.equals("png_data")) { - convertToPNG(httpServletResponse, xml); - } - } - - /** - * Converts svg xml to pdf and writes it to the response as - * a Base 64 encoded string. - * - * @param response - * @param xml - * @throws ServletException - * @throws IOException - */ - private void convertToPDF(HttpServletResponse response, String xml) - throws ServletException, IOException { - OutputStream out = response.getOutputStream(); - ByteArrayOutputStream byteOut = new ByteArrayOutputStream(); - try { - InputStream is = new ByteArrayInputStream(xml.getBytes()); - TranscoderInput input = new TranscoderInput(is); - TranscoderOutput output = new TranscoderOutput(byteOut); - Transcoder transcoder = new PDFTranscoder(); - transcoder.addTranscodingHint( - PDFTranscoder.KEY_XML_PARSER_CLASSNAME, - "org.apache.xerces.parsers.SAXParser"); - response.setContentType("application/pdf"); - transcoder.transcode(input, output); - byteOut.close(); - out.write(Base64.encodeBase64(byteOut.toByteArray())); - } catch (Exception e) { - System.err.println(e.toString()); - } - } - - private void convertToPNG(HttpServletResponse response, String xml) - throws ServletException, IOException { - OutputStream out = response.getOutputStream(); - ByteArrayOutputStream byteOut = new ByteArrayOutputStream(); - try { - InputStream is = new ByteArrayInputStream(xml.getBytes()); - TranscoderInput input = new TranscoderInput(is); - TranscoderOutput output = new TranscoderOutput(byteOut); - Transcoder transcoder = new PNGTranscoder(); - transcoder.transcode(input, output); - byteOut.close(); - out.write(Base64.encodeBase64(byteOut.toByteArray())); - } catch (Exception e) { - System.err.println(e.toString()); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/servlet/WebService.java b/core/src/main/java/org/mskcc/cbio/portal/servlet/WebService.java deleted file mode 100644 index 06045555a40..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/servlet/WebService.java +++ /dev/null @@ -1,536 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.web_api.*; -import org.mskcc.cbio.portal.model.*; - -import org.json.simple.*; -import org.springframework.security.core.userdetails.UserDetails; - -import java.io.*; -import java.util.*; -import java.util.regex.Pattern; -import javax.servlet.http.*; -import javax.servlet.ServletException; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -/** - * Core Web Service. - * - * @author Ethan Cerami. - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -public class WebService extends HttpServlet { - private static Logger logger = LoggerFactory.getLogger(WebService.class); - public static final String CANCER_STUDY_ID = "cancer_study_id"; - public static final String CANCER_TYPE_ID = "cancer_type_id"; - public static final String GENETIC_PROFILE_ID = "genetic_profile_id"; - public static final String GENE_LIST = "gene_list"; - public static final String CMD = "cmd"; - public static final String Q_VALUE_THRESHOLD = "q_value_threshold"; - public static final String GENE_SYMBOL = "gene_symbol"; - public static final String ENTREZ_GENE_ID = "entrez_gene_id"; - public static final String CASE_LIST = "case_list"; - public static final String CASE_IDS_KEY = "case_ids_key"; - public static final String CASE_SET_ID = "case_set_id"; - public static final String SUPPRESS_MONDRIAN_HEADER = "suppress_mondrian_header"; - public static final String EMAIL_ADDRESS = "email_address"; - public static final String SECRET_KEY = "secret_key"; - public static final String PROTEIN_ARRAY_TYPE = "protein_array_type"; - public static final String PROTEIN_ARRAY_ID = "protein_array_id"; - public static final String FORMAT = "format"; - - // class which process access control to cancer studies - private AccessControl accessControl; - - /** - * Shutdown the Servlet. - */ - public void destroy() { - super.destroy(); - } - - /** - * Initializes Servlet with parameters in web.xml file. - * - * @throws javax.servlet.ServletException Servlet Initialization Error. - */ - public void init() throws ServletException { - super.init(); - System.out.println("Starting up the Web Service API..."); - System.out.println("Reading in init parameters from web.xml"); - DatabaseProperties dbProperties = DatabaseProperties.getInstance(); - System.out.println("Initializing AccessControl"); - accessControl = SpringUtil.getAccessControl(); - System.out.println("Starting CGDS Server"); - verifyDbConnection(); - } - - /** - * Handles GET Requests. - * - * @param httpServletRequest HttpServlet Request. - * @param httpServletResponse HttpServlet Response. - * @throws ServletException Servlet Error. - * @throws IOException IO Error. - */ - @Override - protected void doGet(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - processClient(httpServletRequest, httpServletResponse); - } - - /** - * Handles POST Requests. - * - * @param httpServletRequest HttpServlet Request. - * @param httpServletResponse HttpServlet Response. - * @throws ServletException Servlet Error. - * @throws IOException IO Error. - */ - @Override - protected void doPost(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws ServletException, IOException { - processClient(httpServletRequest, httpServletResponse); - } - - /** - * Processes all Client Requests. - * - * @param httpServletRequest HttpServlet Request. - * @param httpServletResponse HttpServlet Response. - * @throws IOException IO Error. - */ - public void processClient(HttpServletRequest httpServletRequest, - HttpServletResponse httpServletResponse) throws IOException { - PrintWriter writer = httpServletResponse.getWriter(); - Date startTime = new Date(); - String cmd = httpServletRequest.getParameter(CMD); - - - try { - // set the content type based on the format parameter - if ("json".equals(httpServletRequest.getParameter(FORMAT))) { - httpServletResponse.setContentType("application/json"); - } - else { - httpServletResponse.setContentType("text/plain"); - } - - // Branch, based on command. - if (null == cmd) { - outputMissingParameterError(writer, CMD); - return; - } - - // check command - if (!goodCommand(writer, cmd)) { - return; - } - - if (cmd.equals("getTypesOfCancer")) { - getTypesOfCancer(writer); - return; - } - if (cmd.equals("getNetwork")) { - getNetwork(httpServletRequest, writer); - return; - } - - if (cmd.equals("getMutSig")) { - getMutSig(httpServletRequest, writer); - return; - } - - // We support the new getCancerStudies plus the deprecated getCancerTypes command - if (cmd.equals("getCancerStudies") || cmd.equals("getCancerTypes")) { - getCancerStudies(httpServletRequest, writer); - return; - } - - - // TODO: CASES: REMOVE? - // no cancer_study_id or no case_set_id or genetic_profile_id - if (null == WebserviceParserUtils.getCancerStudyId(httpServletRequest) && - null == httpServletRequest.getParameter(WebService.CASE_SET_ID) && - null == httpServletRequest.getParameter(WebService.GENETIC_PROFILE_ID) && - null == httpServletRequest.getParameter(WebService.CASE_LIST)) { - outputError(writer, "No cancer study (cancer_study_id), or genetic profile (genetic_profile_id) " + - "or case list or (case_list) case set (case_set_id) provided by request. " + - "Please reformulate request."); - return; - } - - HashSet cancerStudyIDs = WebserviceParserUtils.getCancerStudyIDs(httpServletRequest); - if (cancerStudyIDs.isEmpty()) { - outputError(writer, "Problem when identifying a cancer study for the request."); - return; - } - // TODO: if cancerStudyID == CancerStudy.NO_SUCH_STUDY report an error with more info - for (String cancerStudyID : cancerStudyIDs) { - if (!DaoCancerStudy.doesCancerStudyExistByStableId(cancerStudyID)) { - outputError(writer, "The cancer study identified by the request (" + cancerStudyID + - ") is not in the dbms. Please reformulate request."); - return; - } - if (accessControl.isAccessibleCancerStudy(cancerStudyID).size() != 1) { - outputError(writer, "You are not authorized to view the cancer study identified by the request (" + cancerStudyID + ")."); - return; - } - else { - UserDetails ud = accessControl.getUserDetails(); - if (ud != null) { - logger.info("WebService.processClient: Query initiated by user: " + ud.getUsername()); - } - } - } - - if (cmd.equals("getGeneticProfiles")) { - // PROVIDES CANCER_STUDY_ID - getGeneticProfiles(httpServletRequest, writer); - } else if (cmd.equals("getProfileData")) { - // PROVIDES genetic_profile_id - getProfileData(httpServletRequest, writer); - } else if (cmd.equals("getCaseLists")) { - // PROVIDES CANCER_STUDY_ID - getSampleLists(httpServletRequest, writer); - } else if (cmd.equals("getClinicalData")) { - // PROVIDES case_set_id - getClinicalData(httpServletRequest, writer); - } else if (cmd.equals("getPatientSampleMapping")) { - getSampleAndPatientMappingTable(httpServletRequest, writer); - } else if (cmd.equals("getMutationData")) { - // PROVIDES genetic_profile_id - getMutationData(httpServletRequest, writer); - } else { - throw new ProtocolException("Unrecognized command: " + cmd); - } - } catch (DaoException e) { - e.printStackTrace(); - outputError(writer, "internal error: " + e.getMessage()); - } catch (ProtocolException e) { - e.printStackTrace(); - outputError(writer, e.getMsg()); - } catch (Exception e) { - e.printStackTrace(); - outputError(writer, e.toString()); - } finally { - writer.flush(); - writer.close(); - Date stopTime = new Date(); - long timeElapsed = stopTime.getTime() - startTime.getTime(); - } - } - - /** - * Gets the Network of Interest. - * - * @param httpServletRequest HttpServletRequest Object. - * @param writer Print Writer Object. - * @throws DaoException Database Exception. - * @throws ProtocolException Protocol Exception. - */ - private void getNetwork(HttpServletRequest httpServletRequest, - PrintWriter writer) throws DaoException, ProtocolException { - String geneList = httpServletRequest.getParameter(GENE_LIST); - if (geneList == null || geneList.length() == 0) { - throw new ProtocolException("Missing Parameter: " + GENE_LIST); - } - ArrayList targetGeneList = getGeneList(httpServletRequest); - String out = GetNetwork.getNetwork(targetGeneList); - writer.print(out); - } - - private void getTypesOfCancer(PrintWriter writer) throws DaoException, ProtocolException { - - String out = GetTypesOfCancer.getTypesOfCancer(); - writer.print(out); - } - - private void getCancerStudies(HttpServletRequest httpServletRequest, PrintWriter writer) - throws DaoException, ProtocolException { - String out = GetTypesOfCancer.getCancerStudies(); - writer.print(out); - } - - private void getGeneticProfiles(HttpServletRequest httpServletRequest, PrintWriter writer) - throws DaoException { - - String cancerStudyStableId = WebserviceParserUtils.getCancerStudyId(httpServletRequest); - if (cancerStudyStableId == null) { - outputMissingParameterError(writer, CANCER_STUDY_ID); - } else { - String out = GetGeneticProfiles.getGeneticProfilesAsTable(cancerStudyStableId); - writer.print(out); - } - } - - private void getSampleLists(HttpServletRequest httpServletRequest, PrintWriter writer) - throws DaoException { - - String cancerStudyStableId = WebserviceParserUtils.getCancerStudyId(httpServletRequest); - if (cancerStudyStableId == null) { - outputMissingParameterError(writer, CANCER_STUDY_ID); - } else { - String out = GetSampleLists.getSampleListsAsTable(cancerStudyStableId); - writer.print(out); - } - } - - private void outputError(PrintWriter writer, String msg) { - writer.print("Error: " + msg + "\n"); - } - - private void getProfileData(HttpServletRequest request, PrintWriter writer) - throws DaoException, ProtocolException, IOException { - List sampleList = WebserviceParserUtils.getSampleIds(request); - validateRequestForProfileOrMutationData(request); - ArrayList geneticProfileIdList = WebserviceParserUtils.getGeneticProfileId(request); - ArrayList targetGeneList = getGeneList(request); - - if (targetGeneList.size() > 1 && geneticProfileIdList.size() > 1) { - throw new ProtocolException - ("You can specify multiple genes or multiple genetic profiles, " + - "but not both at once!"); - } - - Boolean suppressMondrianHeader = Boolean.parseBoolean(request.getParameter(SUPPRESS_MONDRIAN_HEADER)); - GetProfileData getProfileData = new GetProfileData(geneticProfileIdList, targetGeneList, - sampleList, suppressMondrianHeader); - - String format = WebserviceParserUtils.getFormat(request); - - if (format == null || "txt".equals(format.toLowerCase())) { - // default to txt if format parameter is not specified - String out = getProfileData.getRawContent(); - writer.print(out); - } - else if ("json".equals(format.toLowerCase())) { - JSONArray.writeJSONString(getProfileData.getJson(), writer); - } - } - - private void getClinicalData(HttpServletRequest request, PrintWriter writer) - throws DaoException, ProtocolException, IOException { - - String cancerStudyId = WebserviceParserUtils.getCancerStudyId(request); - if (cancerStudyId==null) { - Set cancerStudyIds = WebserviceParserUtils.getCancerStudyIDs(request); - if (cancerStudyIds.size()!=1) { - writer.print("The cmd only support one and only one cancer study."); - return; - } - cancerStudyId = cancerStudyIds.iterator().next(); - } - int internalCancerStudyId = DaoCancerStudy.getCancerStudyByStableId(cancerStudyId).getInternalId(); - - List sampleIds = WebserviceParserUtils.getSampleIds(request); - - String format = WebserviceParserUtils.getFormat(request); - - String attrId = request.getParameter("attribute_id"); - - if (format == null || "txt".equals(format)) { // default to txt if format parameter is not specified - if (attrId == null) { - writer.print(GetClinicalData.getTxt(internalCancerStudyId, sampleIds)); - } else { - if (sampleIds.size() != 1) { - throw new IOException("cannot ask for multiple patients"); - } - writer.print(GetClinicalData.getTxtDatum(internalCancerStudyId, sampleIds.get(0), attrId)); - } - } - else if ("json".equals(format)) { - if (attrId == null) { - JSONObject.writeJSONString(GetClinicalData.getJSON(internalCancerStudyId, sampleIds), writer); - } else { - JSONObject outObject; - if (sampleIds.size() == 1) { - outObject = GetClinicalData.getJsonDatum(internalCancerStudyId, sampleIds.get(0), attrId); - } - else { - outObject = GetClinicalData.getJSON(internalCancerStudyId, sampleIds, attrId); - } - JSONObject.writeJSONString(outObject, writer); - } - } - else { - // die - writer.print("There was an error in processing your request. Please try again"); - throw new ProtocolException("please specify the format, i.e. format=txt OR format=json"); - } - } - - private void getSampleAndPatientMappingTable(HttpServletRequest request, PrintWriter writer) - throws DaoException, ProtocolException, IOException { - - String cancerStudyId = WebserviceParserUtils.getCancerStudyId(request); - if(cancerStudyId == null) { - writer.print("Please specify the cancer study."); - return; - } - - int internalCancerStudyId = DaoCancerStudy.getCancerStudyByStableId(cancerStudyId).getInternalId(); - List sampleIds = WebserviceParserUtils.getSampleIds(request); - - Map> mapping = new JSONObject(); - for (String sampleId : sampleIds) { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(internalCancerStudyId, sampleId); - Patient patient = DaoPatient.getPatientById(sample.getInternalPatientId()); - String patientId = patient.getStableId(); - List sids = mapping.get(patientId); - if (sids==null) { - sids = new ArrayList(); - mapping.put(patientId, sids); - } - sids.add(sampleId); - } - JSONObject.writeJSONString(mapping, writer); - } - - /* - * For getMutSig client specifies a Cancer Study ID, - * and either a q_value_threshold, or a gene list. - * The two latter parameters are optional. - */ - private void getMutSig(HttpServletRequest request, PrintWriter writer) - throws DaoException { - String cancerStudyID = WebserviceParserUtils.getCancerStudyId(request); - if ((cancerStudyID == null) || (cancerStudyID.length() == 0)) { - writer.print("Please enter a Cancer Type"); - } - String qValueThreshold = request.getParameter(Q_VALUE_THRESHOLD); - String geneList = request.getParameter(GENE_LIST); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyID); - int cancerID = cancerStudy.getInternalId(); - if (qValueThreshold == null && geneList == null) { - StringBuffer output = GetMutSig.getMutSig(cancerID); - writer.print(output); - } else if (qValueThreshold != null && geneList == null) { - StringBuffer output = GetMutSig.getMutSig(cancerID, qValueThreshold, true); - writer.print(output); - } else if (qValueThreshold == null && geneList != null) { - StringBuffer output = GetMutSig.getMutSig(cancerID, geneList, false); - writer.print(output); - } else { - writer.print("Invalid command. Please input a valid Q-Value Threshold, or Gene List."); - } - } - - private void getMutationData(HttpServletRequest request, PrintWriter writer) - throws DaoException, ProtocolException, UnsupportedEncodingException { - List sampleList = null; - try { - sampleList = WebserviceParserUtils.getSampleIds(request); - } catch (ProtocolException ex) {} - validateRequestForProfileOrMutationData(request); - ArrayList geneticProfileIdList = WebserviceParserUtils.getGeneticProfileId(request); - - for (String geneticProfileId : geneticProfileIdList) { - ArrayList targetGeneList = getGeneList(request); - String out = GetMutationData.getProfileData(geneticProfileId, targetGeneList, - sampleList); - writer.print(out); - } - } - - private ArrayList getGeneList(HttpServletRequest request) { - // bypassing security filtering for the gene list.. - String geneList = request.getParameter(GENE_LIST); - if (request instanceof XssRequestWrapper) { - geneList = ((XssRequestWrapper)request).getRawParameter(GENE_LIST); - } - - // Split on white space or commas - Pattern p = Pattern.compile("[,\\s]+"); - String genes[] = p.split(geneList); - ArrayList targetGeneList = new ArrayList(); - for (String gene : genes) { - gene = gene.trim(); - if (gene.length() == 0) { - continue; - } - targetGeneList.add(gene); - } - return targetGeneList; - } - - private void validateRequestForProfileOrMutationData(HttpServletRequest request) - throws ProtocolException { - String geneticProfileIdStr = request.getParameter(GENETIC_PROFILE_ID); - String geneList = request.getParameter(GENE_LIST); - if (geneticProfileIdStr == null || geneticProfileIdStr.length() == 0) { - throw new ProtocolException("Missing Parameter: " + GENETIC_PROFILE_ID); - } - - if (geneList == null || geneList.length() == 0) { - throw new ProtocolException("Missing Parameter: " + GENE_LIST); - } - } - - private void outputMissingParameterError(PrintWriter writer, String missingParameter) { - outputError(writer, "you must specify a " + missingParameter + " parameter."); - } - - /** - * Verifies Database Connection. In the event of an error, log - * messages are written out to catalina.out. - */ - private void verifyDbConnection() { - if (DaoCancerStudy.getCount()==0) { - System.err.println("**** Fatal Error in CGDS. Could not connect to " - + "database"); - } - } - - private boolean goodCommand(PrintWriter writer, String cmd) { - // check that command is correct - String[] commands = {"getTypesOfCancer", "getNetwork", "getCancerStudies", - "getCancerTypes", "getGeneticProfiles", "getProfileData", "getCaseLists", - "getClinicalData", "getAllClinicalData", "getPatientSampleMapping", - "getMutationData", "getMutationFrequency", "getProteinArrayInfo", - "getProteinArrayData", "getMutSig"}; - for (String aCmd : commands) { - if (aCmd.equals(cmd)) { - return true; - } - } - outputError(writer, "'" + cmd + "' not a valid command."); - return false; - - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/stats/BenjaminiHochbergFDR.java b/core/src/main/java/org/mskcc/cbio/portal/stats/BenjaminiHochbergFDR.java deleted file mode 100644 index 997f04a1bf7..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/stats/BenjaminiHochbergFDR.java +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - - -package org.mskcc.cbio.portal.stats; - -import java.util.Arrays; - -/** - * Bejamini Hochberg FDR Correction Code. - *

    - * For details, refer to: http://www.tau.ac.il/cc/pages/docs/sas8/stat/chap43/sect14.htm - * - * @author Steven Maere, Karel Heymans, and Ethan Cerami - */ -public final class BenjaminiHochbergFDR { - - /** - * the raw p-values that were given as input for the constructor. - */ - private double[] pvalues; - - /** - * the adjusted p-values ordened in ascending order. - */ - private double[] adjustedPvalues; - - /** - * the number of tests. - */ - private int m; - - /** - * Constructor. - * - * @param p P-Values. - */ - public BenjaminiHochbergFDR(double[] p) { - this.pvalues = p; - this.m = pvalues.length; - this.adjustedPvalues = new double[m]; - } - - /** - * method that calculates the Benjamini and Hochberg correction of - * the false discovery rate. - */ - public void calculate() { - - // order the pvalues. - Arrays.sort(pvalues); - - // iterate through all p-values: largest to smallest - for (int i = m - 1; i >= 0; i--) { - if (i == m - 1) { - adjustedPvalues[i] = pvalues[i]; - } else { - double unadjustedPvalue = pvalues[i]; - int divideByM = i + 1; - double left = adjustedPvalues[i + 1]; - double right = (m / (double) divideByM) * unadjustedPvalue; - adjustedPvalues[i] = Math.min(left, right); - } - } - } - - /** - * getter for the ordened p-values. - * - * @return String[] with the ordened p-values. - */ - public double[] getOrdenedPvalues() { - return pvalues; - } - - /** - * getter for the adjusted p-values. - * - * @return String[] with the adjusted p-values. - */ - public double[] getAdjustedPvalues() { - return adjustedPvalues; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/stats/FisherExact.java b/core/src/main/java/org/mskcc/cbio/portal/stats/FisherExact.java deleted file mode 100644 index e584a177d3f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/stats/FisherExact.java +++ /dev/null @@ -1,317 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.stats; - -/** - * This does a Fisher Exact test. The Fisher's Exact test procedure calculates an exact probability value - * for the relationship between two dichotomous variables, as found in a two by two crosstable. The program - * calculates the difference between the data observed and the data expected, considering the given marginal - * and the assumptions of the model of independence. It works in exactly the same way as the Chi-square test - * for independence; however, the Chi-square gives only an estimate of the true probability value, an estimate - * which might not be very accurate if the marginal is very uneven or if there is a small value (less than five) - * in one of the cells. - *

    - * It uses an array of factorials initialized at the beginning to provide speed. - * There could be better ways to do this. - * - * @author Ed Buckler - * @version $Id: FisherExact.java,v 1 - */ - -public class FisherExact { - private static final boolean DEBUG = false; - private double[] f; - int maxSize; - - /** - * constructor for FisherExact table - * - * @param maxSize is the maximum sum that will be encountered by the table (a+b+c+d) - */ - public FisherExact(int maxSize) { - this.maxSize = maxSize; - double cf = 1.0; - f = new double[maxSize + 1]; - f[0] = 0.0; - for (int i = 1; i <= this.maxSize; i++) { - f[i] = f[i - 1] + Math.log(i); - } - } - - /** - * calculates the P-value for this specific state - * - * @param a a, b, c, d are the four cells in a 2x2 matrix - * @param b - * @param c - * @param d - * @return the P-value - */ - public final double getP(int a, int b, int c, int d) { - int n = a + b + c + d; - if (n > maxSize) { - return Double.NaN; - } - double p; - p = (f[a + b] + f[c + d] + f[a + c] + f[b + d]) - (f[a] + f[b] + f[c] + f[d] + f[n]); - return Math.exp(p); - } - - /** - * Calculates the one-tail P-value for the Fisher Exact test. Determines whether to calculate the right- or left- - * tail, thereby always returning the smallest p-value. - * - * @param a a, b, c, d are the four cells in a 2x2 matrix - * @param b - * @param c - * @param d - * @return one-tailed P-value (right or left, whichever is smallest) - */ - public final double getCumlativeP(int a, int b, int c, int d) { - int min, i; - int n = a + b + c + d; - if (n > maxSize) { - return Double.NaN; - } - double p = 0; - - p += getP(a, b, c, d); - if (DEBUG) { - System.out.println("p = " + p); - } - if ((a * d) >= (b * c)) { - if (DEBUG) { - System.out.println("doing R-tail: a=" + a + " b=" + b + " c=" + c + " d=" + d); - } - min = (c < b) ? c : b; - for (i = 0; i < min; i++) { - if (DEBUG) { - System.out.print("doing round " + i); - } - p += getP(++a, --b, --c, ++d); - if (DEBUG) { - System.out.println("\ta=" + a + " b=" + b + " c=" + c + " d=" + d); - } - } - } - if ((a * d) < (b * c)) { - if (DEBUG) { - System.out.println("doing L-tail: a=" + a + " b=" + b + " c=" + c + " d=" + d); - } - min = (a < d) ? a : d; - for (i = 0; i < min; i++) { - if (DEBUG) { - System.out.print("doing round " + i); - } - double pTemp = getP(--a, ++b, ++c, --d); - if (DEBUG) { - System.out.print("\tpTemp = " + pTemp); - } - p += pTemp; - if (DEBUG) { - System.out.println("\ta=" + a + " b=" + b + " c=" + c + " d=" + d); - } - } - } - return p; - } - - /** - * Calculates the right-tail P-value for the Fisher Exact test. - * - * @param a a, b, c, d are the four cells in a 2x2 matrix - * @param b - * @param c - * @param d - * @return one-tailed P-value (right-tail) - */ - public final double getRightTailedP(int a, int b, int c, int d) { - int min, i; - int n = a + b + c + d; - if (n > maxSize) { - return Double.NaN; - } - double p = 0; - - p += getP(a, b, c, d); - if (DEBUG) { - System.out.println("p = " + p); - } - if (DEBUG) { - System.out.println("doing R-tail: a=" + a + " b=" + b + " c=" + c + " d=" + d); - } - min = (c < b) ? c : b; - for (i = 0; i < min; i++) { - p += getP(++a, --b, --c, ++d); - - } - return p; - } - - /** - * Calculates the left-tail P-value for the Fisher Exact test. - * - * @param a a, b, c, d are the four cells in a 2x2 matrix - * @param b - * @param c - * @param d - * @return one-tailed P-value (left-tail) - */ - public final double getLeftTailedP(int a, int b, int c, int d) { - int min, i; - int n = a + b + c + d; - if (n > maxSize) { - return Double.NaN; - } - double p = 0; - - p += getP(a, b, c, d); - if (DEBUG) { - System.out.println("p = " + p); - } - if (DEBUG) { - System.out.println("doing L-tail: a=" + a + " b=" + b + " c=" + c + " d=" + d); - } - min = (a < d) ? a : d; - for (i = 0; i < min; i++) { - if (DEBUG) { - System.out.print("doing round " + i); - } - double pTemp = getP(--a, ++b, ++c, --d); - if (DEBUG) { - System.out.print("\tpTemp = " + pTemp); - } - p += pTemp; - if (DEBUG) { - System.out.println("\ta=" + a + " b=" + b + " c=" + c + " d=" + d); - } - } - - - return p; - } - - /** - * Calculates the two-tailed P-value for the Fisher Exact test. - *

    - * In order for a table under consideration to have its p-value included - * in the final result, it must have a p-value less than the original table's P-value, i.e. - * Fisher's exact test computes the probability, given the observed marginal - * frequencies, of obtaining exactly the frequencies observed and any configuration more extreme. - * By "more extreme," we mean any configuration (given observed marginals) with a smaller probability of - * occurrence in the same direction (one-tailed) or in both directions (two-tailed). - * - * @param a a, b, c, d are the four cells in a 2x2 matrix - * @param b - * @param c - * @param d - * @return two-tailed P-value - */ - public final double getTwoTailedP(int a, int b, int c, int d) { - int min, i; - int n = a + b + c + d; - if (n > maxSize) { - return Double.NaN; - } - double p = 0; - - double baseP = getP(a, b, c, d); -// in order for a table under consideration to have its p-value included -// in the final result, it must have a p-value less than the baseP, i.e. -// Fisher's exact test computes the probability, given the observed marginal -// frequencies, of obtaining exactly the frequencies observed and any configuration more extreme. -// By "more extreme," we mean any configuration (given observed marginals) with a smaller probability of -// occurrence in the same direction (one-tailed) or in both directions (two-tailed). - - if (DEBUG) { - System.out.println("baseP = " + baseP); - } - int initialA = a, initialB = b, initialC = c, initialD = d; - p += baseP; - if (DEBUG) { - System.out.println("p = " + p); - } - if (DEBUG) { - System.out.println("Starting with R-tail: a=" + a + " b=" + b + " c=" + c + " d=" + d); - } - min = (c < b) ? c : b; - for (i = 0; i < min; i++) { - if (DEBUG) { - System.out.print("doing round " + i); - } - double tempP = getP(++a, --b, --c, ++d); - if (tempP <= baseP) { - if (DEBUG) { - System.out.print("\ttempP (" + tempP + ") is less than baseP (" + baseP + ")"); - } - p += tempP; - } - if (DEBUG) { - System.out.println(" a=" + a + " b=" + b + " c=" + c + " d=" + d); - } - } - - // reset the values to their original so we can repeat this process for the other side - a = initialA; - b = initialB; - c = initialC; - d = initialD; - - if (DEBUG) { - System.out.println("Now doing L-tail: a=" + a + " b=" + b + " c=" + c + " d=" + d); - } - min = (a < d) ? a : d; - if (DEBUG) { - System.out.println("min = " + min); - } - for (i = 0; i < min; i++) { - if (DEBUG) { - System.out.print("doing round " + i); - } - double pTemp = getP(--a, ++b, ++c, --d); - if (DEBUG) { - System.out.println(" pTemp = " + pTemp); - } - if (pTemp <= baseP) { - if (DEBUG) { - System.out.print("\ttempP (" + pTemp + ") is less than baseP (" + baseP + ")"); - } - p += pTemp; - } - if (DEBUG) { - System.out.println(" a=" + a + " b=" + b + " c=" + c + " d=" + d); - } - } - return p; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/stats/OddsRatio.java b/core/src/main/java/org/mskcc/cbio/portal/stats/OddsRatio.java deleted file mode 100644 index 92f8f839559..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/stats/OddsRatio.java +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.stats; - -import org.mskcc.cbio.portal.model.ProfileDataSummary; - -import java.util.ArrayList; - -public class OddsRatio { - private int a = 0, b = 0, c = 0, d = 0; - private ArrayList caseIdList; - private StringBuffer buf = new StringBuffer(); - private double oddsRatio; - private double pValue; - private double lowerConfidenceInterval; - private double upperConfidenceInterval; - private StringBuffer x = new StringBuffer(); - private StringBuffer y = new StringBuffer(); - - public OddsRatio(ProfileDataSummary pDataSummary, String geneA, String geneB) { - caseIdList = pDataSummary.getProfileData().getCaseIdList(); - x.append ("x = c("); - y.append ("y = c("); - for (String caseId : caseIdList) { - boolean valueA = pDataSummary.isGeneAltered(geneA, caseId); - boolean valueB = pDataSummary.isGeneAltered(geneB, caseId); - - if (valueA) { - x.append("1,"); - } else { - x.append("0,"); - } - if (valueB) { - y.append("1,"); - } else { - y.append("0,"); - } - - String valueAStr = pDataSummary.getProfileData().getValue(geneA, caseId); - String valueBStr = pDataSummary.getProfileData().getValue(geneB, caseId); - buf.append(valueAStr + ": " + valueBStr + "
    "); - buf.append("---> " + valueA + ": " + valueB + "
    "); - if (valueA == true && valueB == true) { - d++; - } else if (valueA == false && valueB == false) { - a++; - } else if (valueA == true && valueB == false) { - c++; - } else { - b++; - } - } - x = new StringBuffer(x.substring(0, x.length()-1)); - y = new StringBuffer(y.substring(0, y.length()-1)); - x.append (")"); - y.append (")"); - - oddsRatio = ((double) (a * d)) / ((double) (b * c)); - FisherExact fisher = new FisherExact(a + b + c + d); - pValue = fisher.getTwoTailedP(a, b, c, d); - lowerConfidenceInterval = Math.exp(Math.log(oddsRatio) - 1.96 * (Math.sqrt(1 / (double) a - + 1 / (double) b + 1 / (double) c + 1 / (double) d))); - upperConfidenceInterval = Math.exp(Math.log(oddsRatio) + 1.96 * (Math.sqrt(1 / (double) a - + 1 / (double) b + 1 / (double) c + 1 / (double) d))); - - } - - public String getLog() { - return buf.toString(); - } - - public double getOddsRatio() { - return oddsRatio; - } - - public double getTwoTailedP() { - return pValue; - } - - public String getRCommand() { - return "library(\"Kendall\")
    m <- matrix (c (" - + a + ", " + c + "," + b + "," + d + "), nr =2)" - + "
    " + "fisher.test (m, alternative=\"less\")
    " + - "fisher.test (m, alternative=\"greater\")
    " + - x.toString() + "
    " + - y.toString() + "
    " + - "Kendall(x,y)"; - } - - public int getA() { - return a; - } - - public int getB() { - return b; - } - - public int getC() { - return c; - } - - public int getD() { - return d; - } - - public int getNumCases() { - return caseIdList.size(); - } - - public double getLowerConfidenceInterval() { - return lowerConfidenceInterval; - } - - public double getUpperConfidenceInterval() { - return upperConfidenceInterval; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/AccessControl.java b/core/src/main/java/org/mskcc/cbio/portal/util/AccessControl.java deleted file mode 100644 index b5b359f2e95..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/AccessControl.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright (c) 2015 - 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -// imports -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.web_api.ProtocolException; - -import org.springframework.security.access.prepost.PostFilter; -import org.springframework.security.core.userdetails.UserDetails; - -import java.util.List; - -/** - * Utilities for managing access control. - * - * @author Benjamin Gross - */ -public interface AccessControl { - - public static final String ALL_CANCER_STUDIES_ID = "all"; - public static final String ALL_TCGA_CANCER_STUDIES_ID = "all_tcga"; - public static final String ALL_TARGET_CANCER_STUDIES_ID = "all_nci_target"; - public static final String MULTIPLE_CANCER_STUDIES_ID = "multiple"; - - /** - * Gets Cancer Studies. Used by QueryBuilder. - * - * @return List - * @throws DaoException Database Error. - * @throws ProtocolException Protocol Error. - */ - @PostFilter("hasPermission(filterObject.getCancerStudyStableId(), 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - List getCancerStudies() throws DaoException, ProtocolException; - - /** - * Return true if the user can access the study, false otherwise. - * - * @param stableStudyId - * @return ListCancerStudy - * @throws DaoException - */ - @PostFilter("hasPermission(#stableStudyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - List isAccessibleCancerStudy(String stableStudyId) throws DaoException; - - UserDetails getUserDetails(); -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/CacheUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/CacheUtil.java deleted file mode 100644 index 7ce5fdadf01..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/CacheUtil.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.UnsupportedEncodingException; -import java.math.BigInteger; -import java.security.MessageDigest; -import java.security.NoSuchAlgorithmException; - -public class CacheUtil -{ - public static final String encodeAlgorithm = "MD5"; - public static final String characterEncoding = "UTF-8"; - public static final int md5Base = 16; - - /** - * Generates an MD5 sum for the given string. - * - * @param message string to digested - * @return MD5 sum corresponding to the given text - */ - public static String md5sum(String message) - { - MessageDigest md5; - byte[] md5sumBytes; - String sum = null; - - try { - md5 = MessageDigest.getInstance(encodeAlgorithm); - md5sumBytes = md5.digest(message.getBytes(characterEncoding)); - sum = (new BigInteger(1, md5sumBytes)).toString(md5Base); - } catch (NoSuchAlgorithmException e) { - sum = null; - } catch (UnsupportedEncodingException e) { - sum = null; - } - - return sum; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/CancerStudyReader.java b/core/src/main/java/org/mskcc/cbio/portal/util/CancerStudyReader.java deleted file mode 100644 index 311ad5aad01..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/CancerStudyReader.java +++ /dev/null @@ -1,146 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoReferenceGenome; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.ReferenceGenome; -import org.mskcc.cbio.portal.scripts.TrimmedProperties; - -import java.io.File; -import java.io.FileInputStream; -import java.io.IOException; -import org.mskcc.cbio.portal.dao.DaoTypeOfCancer; - -/** - * Reads and loads a cancer study file. (Before July 2011, was called a cancer type file.) - * By default, the loaded cancers are public. - * - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -public class CancerStudyReader { - - public static CancerStudy loadCancerStudy(File file) throws IOException, DaoException { - return loadCancerStudy(file, true, true); - } - - public static CancerStudy loadCancerStudy(File file, boolean strict, boolean addStudyToDb) throws IOException, DaoException { - TrimmedProperties properties = new TrimmedProperties(); - properties.load(new FileInputStream(file)); - - CancerStudy cancerStudy = getCancerStudy(properties); - - if (strict && null==DaoTypeOfCancer.getTypeOfCancerById(cancerStudy.getTypeOfCancerId())) { - throw new IllegalArgumentException(cancerStudy.getTypeOfCancerId()+" is not a supported cancer type."); - } - - if (addStudyToDb) { - DaoCancerStudy.addCancerStudy(cancerStudy, true); // overwrite if exist - } - - return cancerStudy; - } - - private static Boolean checkSpecies(String studyId, String genomeName) { - if (genomeName == null || genomeName.equals("")) { - return true; - } - try { - CancerStudy oldCancerStudy = DaoCancerStudy.getCancerStudyByStableId(studyId); - ReferenceGenome referenceGenome = DaoReferenceGenome.getReferenceGenomeByGenomeName( - oldCancerStudy.getReferenceGenome()); - return referenceGenome.getGenomeName().equalsIgnoreCase(genomeName); - } catch (DaoException | NullPointerException e) { - return true; - } - } - - private static CancerStudy getCancerStudy(TrimmedProperties properties) - { - String cancerStudyIdentifier = properties.getProperty("cancer_study_identifier"); - if (cancerStudyIdentifier == null) { - throw new IllegalArgumentException("cancer_study_identifier is not specified."); - } - - String name = properties.getProperty("name"); - if (name == null) { - throw new IllegalArgumentException("name is not specified."); - } - - String description = properties.getProperty("description"); - if (description == null) { - throw new IllegalArgumentException("description is not specified."); - } - - String typeOfCancer = properties.getProperty("type_of_cancer").toLowerCase(); - if ( typeOfCancer == null) { - throw new IllegalArgumentException("type of cancer is not specified."); - } - - - - CancerStudy cancerStudy = new CancerStudy(name, description, cancerStudyIdentifier, - typeOfCancer, publicStudy(properties)); - cancerStudy.setPmid(properties.getProperty("pmid")); - cancerStudy.setCitation(properties.getProperty("citation")); - cancerStudy.setGroupsInUpperCase(properties.getProperty("groups")); - String referenceGenome = properties.getProperty("reference_genome"); - - if (referenceGenome == null) { - referenceGenome = GlobalProperties.getReferenceGenomeName(); - } - if (!checkSpecies(cancerStudyIdentifier, referenceGenome)) { - throw new IllegalArgumentException("Species not match with old study"); - } - cancerStudy.setReferenceGenome(referenceGenome); - return cancerStudy; - } - - private static boolean publicStudy( TrimmedProperties properties ) { - String studyAccess = properties.getProperty("study_access"); - if ( studyAccess != null) { - if( studyAccess.equals("public") ){ - return true; - } - if( studyAccess.equals("private") ){ - return false; - } - throw new IllegalArgumentException("study_access must be either 'public' or 'private', but is " + - studyAccess ); - } - // studies are public by default - return true; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/CancerStudyTagsReader.java b/core/src/main/java/org/mskcc/cbio/portal/util/CancerStudyTagsReader.java deleted file mode 100644 index f36639fe8f4..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/CancerStudyTagsReader.java +++ /dev/null @@ -1,45 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import java.io.File; -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.IOException; -import java.util.Scanner; - -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.CancerStudyTags; -import org.mskcc.cbio.portal.scripts.TrimmedProperties; - -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.dataformat.yaml.YAMLFactory; - -public class CancerStudyTagsReader { - - public static CancerStudyTags loadCancerStudyTags(File file, CancerStudy cancerStudy) - throws FileNotFoundException, IOException, DaoException { - - TrimmedProperties properties = new TrimmedProperties(); - properties.load(new FileInputStream(file)); - - String tags_filename = properties.getProperty("tags_file"); - String tags = null; - CancerStudyTags cancerStudyTags = null; - if (tags_filename != null) { - String content = new Scanner(new File(file.getParent()+"/"+tags_filename)).useDelimiter("\\Z").next(); - ObjectMapper yamlReader = new ObjectMapper(new YAMLFactory()); - Object obj = yamlReader.readValue(content, Object.class); - - ObjectMapper jsonWriter = new ObjectMapper(); - tags = jsonWriter.writeValueAsString(obj); - - cancerStudyTags = new CancerStudyTags(); - cancerStudyTags.setCancerStudyId(cancerStudy.getInternalId()); - cancerStudyTags.setTags(tags); - DaoCancerStudy.addCancerStudyTags(cancerStudyTags); - } - - return cancerStudyTags; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/CascadeSortOfMatrix.java b/core/src/main/java/org/mskcc/cbio/portal/util/CascadeSortOfMatrix.java deleted file mode 100644 index 77892502367..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/CascadeSortOfMatrix.java +++ /dev/null @@ -1,317 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Comparator; - -//import org.mskcc.cbio.portal.test.util.TestCascadeSortOfMatrix; - -//import static org.junit.Assert.assertArrayEquals; - -/** - * Given a matrix represented by an ArrayList of rows in ArrayLists, sort the - * columns so that the values in the rows are arranged in a 'cascade', that is, - * the elements in row i are sorted, and within each group of constant values in - * row i, the elements in row i+1 are sorted, etc. Used to present the data in our - * 'CancerPrint's. - * - * TODO: To scale for large datasets, convert matrix into a set of columns, and radix sort. - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -public class CascadeSortOfMatrix { - - private Comparator theObjectComparator; - - /** - * Construct as CascadeSortOfMatrix. - * - * @param aObjectComparator a Comparator that compares elements of the matrix that will be Cascade sorted, i.e., the argument to sort(). - * It will eventually be passed in a call to - * - * arrayListData, used for sorting. - */ - public CascadeSortOfMatrix(Comparator aObjectComparator) { - theObjectComparator = aObjectComparator; - } - - /** - * Perform the Cascade sort. - * This data documents the concept. It shows the state of the sort before each call to sortExtent, and before the return - * from sort. - -Original data: - 2 1 2 1 2 - 4 5 5 4 4 - 8 8 8 8 7 - -The first call to sortExtent sorts row 0: - 1 1 2 2 2 - 5 4 4 5 4 - 8 8 8 8 7 - -Next the first extent is sorted in row 1: - 1 1 2 2 2 - 4 5 4 5 4 - 8 8 8 8 7 - -Then the 2nd extent is sorted in row 1: - 1 1 2 2 2 - 4 5 4 4 5 - 8 8 8 7 8 - -Finally, the first and only extent of rows 0 and 1 is sorted in row 2: - 1 1 2 2 2 - 4 5 4 4 5 - 8 8 7 8 8 - - * - * @param arrayData - * @return - */ - - public Object[][] sort( Object[][] arrayData) { - - // CascadeSort - // sort columns by row 1 - int width = arrayData[0].length; // assume a rectangular matrix - - // DEFINITION of cumulativeChanges: after processing row r (cumulativeChanges[i] == true) <==> - // the value in some row <= r changed between column i-1 and column i - boolean[] cumulativeChanges = new boolean[width]; - - sortExtent(arrayData, 0, 0, width ); - recordChangeInThisRowOfData( arrayData, 0, 0, width, cumulativeChanges ); - - for (int rowIndex = 1; rowIndex < arrayData.length; rowIndex++) { - - // an 'extent' is a sequence of adjacent elements in previousRow - // that have the same value - int extentStart = 0; // index of first element in an extent - int nextExtentStart = 0; // index of first element in next extent - - while( true ){ - nextExtentStart++; - - // ALL previous rows must be the same across the entire extent - while( (nextExtentStart < width) && !cumulativeChanges[nextExtentStart] ){ - nextExtentStart++; - } - - sortExtent(arrayData, rowIndex, extentStart, nextExtentStart); - recordChangeInThisRowOfData( arrayData, rowIndex, extentStart, nextExtentStart, cumulativeChanges ); - - extentStart = nextExtentStart; - if (nextExtentStart == width ) { - break; - } - } - - } - - return arrayData; - } - - /* - * Record and accumulate (as a true bit) in cumulativeChanges columns at which data changes; - * that is, the cumulativeChanges is true for each column in which an extent ends. - * see DEFINITION of cumulativeChanges - */ - private void recordChangeInThisRowOfData( Object[][] data, int row, int extentStart, int nextExtentStart, boolean[] cumulativeChanges ){ - - for( int col=extentStart+1; col> arrayListData ) { - Object[][] data = new Object[arrayListData.size()][arrayListData.get(0).size()]; - int rowNum = 0; - for (ArrayList row : arrayListData) { - int colNum = 0; - for (Object value : row) { - data[rowNum][colNum++] = value; - } - rowNum++; - } - return data; - } - - /** - * just copy a matrix from and Array representation to an ArrayList representation - * @param arrayListData - * @return - */ - // NOT USED - public static ArrayList> copyToArrayListOfArrayList( Object[][] arrayData ) { - - ArrayList> arrayListData = new ArrayList>(); - - for (int i = 0; i < arrayData.length; i++) { - ArrayList row = new ArrayList(); - for (int j = 0; j < arrayData[i].length; j++) { - row.add( arrayData[ i ][ j ] ); - } - arrayListData.add( row ); - } - return arrayListData; - } - - // for debugging - // NOT USED - public String pToString( ElementAndIndex[] extentCopy ){ - StringBuffer sb = new StringBuffer(); - - for( ElementAndIndex e : extentCopy ){ - sb.append( e.toString() + "\n" ); - } - return sb.toString(); - } -} - -/** - * Little class to hold the pair (Object, index), so that objects and their - * original position can be found after sorting. - * - * @author arthurgoldberg - */ -class ElementAndIndex { - Object element; - int index; - - ElementAndIndex(Object e, int i) { - element = e; - index = i; - } - public String toString(){ - return( "element: " + element.toString() + "; index: " + index ); - } -} - -/** - * compare ElementAndIndex objects for sorting, etc. - * - * @author arthurgoldberg - */ -class SortExtentComparator implements Comparator { - private Comparator theObjectComparator; - - SortExtentComparator(Comparator c) { - theObjectComparator = c; - } - - public int compare(ElementAndIndex e1, ElementAndIndex e2) { - return (theObjectComparator.compare( e1.element, e2.element )); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/CategoryLabelReader.java b/core/src/main/java/org/mskcc/cbio/portal/util/CategoryLabelReader.java deleted file mode 100644 index a3735ecdae5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/CategoryLabelReader.java +++ /dev/null @@ -1,133 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.util.HashMap; -import java.util.Map; - -/** - * Singleton utility class for creating a map from a configuration file - * for more readable category names for clinical free form table parameters. - * - * @author Selcuk Onur Sumer - */ -public class CategoryLabelReader -{ - /** - * Resource filename for the map content. - */ - public static final String CATEGORY_MAP_FILE = "/human_readable_categories.txt"; - - /** - * Singleton instance. - */ - private static CategoryLabelReader instance = null; - - /** - * Map containing mapping for more human readable category text - */ - private Map categoryLabelMap; - - public Map getCategoryLabelMap() - { - return categoryLabelMap; - } - - public static CategoryLabelReader getInstace() throws IOException - { - if (instance == null) - { - instance = new CategoryLabelReader(); - } - - return instance; - } - - /** - * Constructor. - * - * Creates a new map using the resource file. - * - * @throws IOException if an IO error occurs. - */ - private CategoryLabelReader() throws IOException - { - InputStream in = this.getClass().getResourceAsStream(CATEGORY_MAP_FILE); - this.categoryLabelMap = CategoryLabelReader.readCategoryLabelMap(in); - in.close(); - } - - /** - * Populates the category label map using the given input stream. - * - * @param in input stream for the file - * @return mapping for category labels - * @throws IOException if an IO error occurs - */ - public static Map readCategoryLabelMap(InputStream in) throws IOException - { - Map categoryLabelMap = new HashMap(); - BufferedReader reader = new BufferedReader(new InputStreamReader(in)); - String line; - - while ((line = reader.readLine()) != null) - { - String[] pair = line.split(":"); - - // skip any line with incorrect formatting - if (pair.length == 2) - { - categoryLabelMap.put(safeCategoryName(pair[0].trim()), - pair[1].trim()); - } - } - - return categoryLabelMap; - } - - /** - * Creates a safe string by replacing problematic characters (for - * an HTML id) with an underscore for the given string. - * - * @param name parameter name - * @return modified string with replaced characters - */ - public static String safeCategoryName(String name) - { - return name.replaceAll("[ /#.,:;(){}\\]\\[\"\'\\\\]", "_"); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/ClinicalReader.java b/core/src/main/java/org/mskcc/cbio/portal/util/ClinicalReader.java deleted file mode 100644 index 30b76018d23..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/ClinicalReader.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.apache.commons.lang3.StringUtils; -import org.mskcc.cbio.portal.model.ClinicalData; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileReader; -import java.io.IOException; -import java.util.ArrayList; - -public class ClinicalReader { - - private File clinicalFile; - private int cancerStudyId; - - String DELIMITER = "\t"; - String COMMENT = "#"; - String CASE_ID = "CASE_ID"; - - public ClinicalReader() { } - - public ArrayList read(File file, int cancerStudyId) throws IOException { - - FileReader reader = new FileReader(file); - BufferedReader buf = new BufferedReader(reader); - - // get case id field, all other fields are clinical attributes - String line = buf.readLine(); - int caseIdField = -1; - - String[] fields = line.split(DELIMITER); - int fields_length = fields.length; - - for (int i = 0; i < fields_length; i++) { - String field = fields[i]; - - if (StringUtils.equals(field, CASE_ID)) { - caseIdField = i; - } - } - - if (caseIdField == -1) { - throw new IOException(String.format("%s does not have a column called 'CASE_ID'", file.getName())); - } - - line = buf.readLine(); - - while (line != null) { - System.out.println(line); - } - - ArrayList clinicals = new ArrayList(); - - return clinicals; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/CnaUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/CnaUtil.java deleted file mode 100644 index 8cd00b9aff0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/CnaUtil.java +++ /dev/null @@ -1,132 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import com.fasterxml.jackson.core.*; -import org.cbioportal.model.*; -import org.mskcc.cbio.maf.NamespaceColumnParser; -import org.mskcc.cbio.maf.TabDelimitedFileUtil; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CnaEvent; -import org.mskcc.cbio.portal.model.GeneticProfile; -import com.fasterxml.jackson.databind.ObjectMapper; - -import java.io.*; -import java.util.*; - -import static org.mskcc.cbio.portal.scripts.ImportTabDelimData.*; - -public class CnaUtil { - - private final HashMap columnIndexMap; - - public static final String HUGO_SYMBOL = "Hugo_Symbol"; - public static final String ENTREZ_GENE_ID = "Entrez_Gene_Id"; - public static final String SAMPLE_ID = "Sample_Id"; - public static final String VALUE = "Value"; - public static final String CBP_DRIVER = "cbp_driver"; - public static final String CBP_DRIVER_ANNOTATION = "cbp_driver_annotation"; - public static final String CBP_DRIVER_TIERS = "cbp_driver_tiers"; - - public static final String CBP_DRIVER_TIERS_ANNOTATION = "cbp_driver_tiers_annotation"; - private NamespaceColumnParser namespaceColumnParser; - private ObjectMapper objectMapper = new ObjectMapper(); - - public CnaUtil(String[] headerParts, Set namespaces) { - this.columnIndexMap = new HashMap<>(); - - // Find header indices - for (int i = 0; i < headerParts.length; i++) { - // Put the index in the map - this.columnIndexMap.put(headerParts[i].toLowerCase(), i); - } - - if (getColumnIndex(HUGO_SYMBOL) == -1 && getColumnIndex(ENTREZ_GENE_ID) == -1) { - throw new RuntimeException("Error: at least one of the following columns should be present: Hugo_Symbol or Entrez_Gene_Id"); - } - this.namespaceColumnParser = new NamespaceColumnParser(namespaces, headerParts); - } - - public static void storeCnaEvents( - Set existingCnaEvents, - List cnaEventsToAdd - ) throws DaoException { - for (CnaEvent cnaEvent : cnaEventsToAdd) { - if (!CNA.AMP.equals(cnaEvent.getAlteration()) && !CNA.HOMDEL.equals(cnaEvent.getAlteration())) { - continue; - } - Optional existingCnaEvent = existingCnaEvents - .stream() - .filter(e -> e.equals(cnaEvent.getEvent())) - .findFirst(); - if (existingCnaEvent.isPresent()) { - cnaEvent.setEventId(existingCnaEvent.get().getEventId()); - DaoCnaEvent.addCaseCnaEvent(cnaEvent, false); - } else { - DaoCnaEvent.addCaseCnaEvent(cnaEvent, true); - existingCnaEvents.add(cnaEvent.getEvent()); - } - } - } - - public CnaEvent createEvent( - GeneticProfile geneticProfile, - int sampleId, - long entrezId, - String[] parts - ) throws IOException { - int cnaProfileId = geneticProfile.getGeneticProfileId(); - short alteration = createAlteration(parts); - CnaEvent cna = new CnaEvent(sampleId, cnaProfileId, entrezId, alteration); - cna.setDriverFilter(TabDelimitedFileUtil.getPartString(getColumnIndex(CnaUtil.CBP_DRIVER), parts)); - cna.setDriverFilterAnnotation(TabDelimitedFileUtil.getPartString(getColumnIndex(CnaUtil.CBP_DRIVER_ANNOTATION), parts)); - cna.setDriverTiersFilter(TabDelimitedFileUtil.getPartString(getColumnIndex(CnaUtil.CBP_DRIVER_TIERS), parts)); - cna.setDriverTiersFilterAnnotation(TabDelimitedFileUtil.getPartString(getColumnIndex(CnaUtil.CBP_DRIVER_TIERS_ANNOTATION), parts)); - cna.setAnnotationJson(this.namespaceColumnParser.writeValueAsString( - this.namespaceColumnParser.parseCustomNamespaces(parts) - ) - ); - return cna; - } - - private String convertMapToJsonString(Map> map) throws JsonProcessingException { - return this.objectMapper.writeValueAsString(map); - } - - public long getEntrezSymbol(String[] parts) { - String entrezAsString = TabDelimitedFileUtil.getPartString(getColumnIndex(CnaUtil.ENTREZ_GENE_ID), parts); - if (entrezAsString.isEmpty()) { - return 0; - } else if (!entrezAsString.matches("^\\d+$")) { - ProgressMonitor.logWarning("Ignoring line with invalid Entrez_Id " + entrezAsString); - return 0; - } - return TabDelimitedFileUtil.getPartLong(getColumnIndex(CnaUtil.ENTREZ_GENE_ID), parts); - } - - public String getHugoSymbol(String[] parts) { - return TabDelimitedFileUtil.getPartString(getColumnIndex(CnaUtil.HUGO_SYMBOL), parts); - } - - private short createAlteration(String[] parts) { - String value = TabDelimitedFileUtil.getPartString(getColumnIndex(CnaUtil.VALUE), parts); - String result = value; - // temporary solution -- change partial deletion back to full deletion. - if (value.equals(CNA_VALUE_PARTIAL_DELETION)) { - result = CNA_VALUE_HOMOZYGOUS_DELETION; - } - return Integer.valueOf(result).shortValue(); - } - - /** - * @return column index, or -1 when not found - */ - public int getColumnIndex(String colName) { - return this.columnIndexMap.getOrDefault( - colName.toLowerCase(), - -1 - ); - } - - public String getSampleIdStr(String[] parts) { - return TabDelimitedFileUtil.getPartString(getColumnIndex(CnaUtil.SAMPLE_ID), parts); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/CoExpUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/CoExpUtil.java deleted file mode 100644 index 2be4469dfcc..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/CoExpUtil.java +++ /dev/null @@ -1,127 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.*; - -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.dao.*; - - - -public class CoExpUtil { - - public static ArrayList getSampleIds(String sampleSetId, String sampleIdsKeys) { - try { - DaoSampleList daoSampleList = new DaoSampleList(); - SampleList sampleList; - ArrayList sampleIdList = new ArrayList(); - if (sampleSetId.equals("-1")) { - String strSampleIds = SampleSetUtil.getSampleIds(sampleIdsKeys); - String[] sampleArray = strSampleIds.split("\\s+"); - for (String item : sampleArray) { - sampleIdList.add(item); - } - } else { - sampleList = daoSampleList.getSampleListByStableId(sampleSetId); - sampleIdList = sampleList.getSampleList(); - } - return sampleIdList; - } catch (DaoException e) { - System.out.println("Caught Dao Exception: " + e.getMessage()); - return null; - } - } - - public static GeneticProfile getPreferedGeneticProfile(String cancerStudyIdentifier) { - try { - CancerStudy cs = DaoCancerStudy.getCancerStudyByStableId(cancerStudyIdentifier); - ArrayList gps = DaoGeneticProfile.getAllGeneticProfiles(cs.getInternalId()); - GeneticProfile final_gp = null; - for (GeneticProfile gp : gps) { - // TODO: support miRNA later - if (gp.getGeneticAlterationType() == GeneticAlterationType.MRNA_EXPRESSION) { - //rna seq profile (no z-scores applied) holds the highest priority) - if (gp.getStableId().toLowerCase().contains("rna_seq") && - !gp.getStableId().toLowerCase().contains("zscores")) { - final_gp = gp; - break; - } else if (!gp.getStableId().toLowerCase().contains("zscores")) { - final_gp = gp; - } - } - } - return final_gp; - } - catch (DaoException e) { - return null; - } - } - - public static Map getExpressionMap(int profileId, String sampleSetId, String sampleIdsKeys) throws DaoException { - - GeneticProfile gp = DaoGeneticProfile.getGeneticProfileById(profileId); - List stableSampleIds = getSampleIds(sampleSetId, sampleIdsKeys); - List sampleIds = new ArrayList(); - for(String sampleId : stableSampleIds) { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(gp.getCancerStudyId(), sampleId); - sampleIds.add(sample.getInternalId()); - } - sampleIds.retainAll(DaoSampleProfile.getAllSampleIdsInProfile(profileId)); - - DaoGeneticAlteration daoGeneticAlteration = DaoGeneticAlteration.getInstance(); - Map> mapStr = daoGeneticAlteration.getGeneticAlterationMap(profileId, null); - Map map = new HashMap(mapStr.size()); - for (Map.Entry> entry : mapStr.entrySet()) { - Long gene = entry.getKey(); - Map mapCaseValueStr = entry.getValue(); - double[] values = new double[sampleIds.size()]; - for (int i = 0; i < sampleIds.size(); i++) { - Integer caseId = sampleIds.get(i); - String value = mapCaseValueStr.get(caseId); - Double d; - try { - d = Double.valueOf(value); - } catch (Exception e) { - d = Double.NaN; - } - values[i]=d; - } - - map.put(gene, values); - } - - return map; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/ConsoleUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/ConsoleUtil.java deleted file mode 100644 index b5b362270ea..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/ConsoleUtil.java +++ /dev/null @@ -1,299 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.IOException; -import java.text.DecimalFormat; -import java.text.NumberFormat; -import java.util.List; - -import org.mskcc.cbio.portal.dao.MySQLbulkLoader; -import org.mskcc.cbio.portal.scripts.UsageException; - -import joptsimple.OptionException; -import joptsimple.OptionParser; -import joptsimple.OptionSet; -import joptsimple.OptionSpec; - -/** - * Misc Utility Methods for Console Applications. - * - * @author Ethan Cerami - */ -public class ConsoleUtil { - private static String msg = ""; - - /** - * Outputs Progress Messages to Console. - * Uses ASNI Terminal Codes - * For future reference, ANSI Codes are here: - * http://www.dee.ufcg.edu.br/~rrbrandt/tools/ansi.html - * - */ - public static synchronized void showProgress() { - if (ProgressMonitor.isShowProgress()) { - int currentValue = ProgressMonitor.getCurValue(); - if (currentValue % 100 == 0) { - System.err.print("."); - } - - // this writes progress every 1000 records - if (currentValue % 1000 == 0) { - NumberFormat format = DecimalFormat.getPercentInstance(); - double percent = ProgressMonitor.getPercentComplete(); - msg = new String("Percentage Complete: " - + format.format(percent)); - System.err.println("\n" + msg); - Runtime rt = Runtime.getRuntime(); - long used = rt.totalMemory() - rt.freeMemory(); - System.err.println("Mem Allocated: " + getMegabytes(rt.totalMemory()) - + ", Mem used: " + getMegabytes(used) + ", Mem free: " - + getMegabytes(rt.freeMemory())); - } - if (currentValue == ProgressMonitor.getMaxValue()) { - System.err.println(); - } - } - } - - public static void showWarnings() { - List warningList = ProgressMonitor.getWarnings(); - if (warningList.size() > 0) { - System.err.println("\nWarnings / Errors:"); - System.err.println("-------------------"); - for (int i = 0; i < warningList.size(); i++) { - System.err.println(i + ". " + warningList.get(i)); - } - } - } - - /** - * Prints messages and warnings. - */ - public static void showMessages() { - showWarnings(); - List debugMessages = ProgressMonitor.getDebugMessages(); - if (debugMessages.size() > 0) { - System.err.println("-------------------"); - for (int i = 0; i < debugMessages.size(); i++) { - System.err.println(debugMessages.get(i)); - } - } - } - - private static String getMegabytes(long bytes) { - double mBytes = (bytes / 1024.0) / 1024.0; - DecimalFormat formatter = new DecimalFormat("#,###,###.###"); - return formatter.format(mBytes) + " MB"; - } - - /** - * Default method to be used when Importer class main method expects only 'data' and 'meta' as mandatory options - * and an optional 'loadMode' parameter - * - * @param args: the same args given to main() method of the tool - * @param description: short description of the tool (to display in the usage line if necessary) - * @param hasLoadMode: set to true to let this method validate whether the command line argument loadMode was given - * - * @return the parsed options - */ - public static OptionSet parseStandardDataAndMetaOptions(String[] args, String description, boolean hasLoadMode) { - // using a real options parser, helps avoid bugs - OptionParser parser = new OptionParser(); - parser.accepts("noprogress", "this option can be given to avoid the messages regarding memory usage and % complete"); - OptionSpec help = parser.accepts( "help", "print this help info" ); - parser.accepts( "data", "profile data file" ).withRequiredArg().describedAs( "data_file.txt" ).ofType( String.class ); - parser.accepts( "meta", "meta (description) file" ).withRequiredArg().describedAs( "meta_file.txt" ).ofType( String.class ); - if (hasLoadMode) { - parser.accepts( "loadMode", "direct (per record) or bulk load of data" ) - .withRequiredArg().describedAs( "[directLoad|bulkLoad (default)]" ).ofType( String.class ); - } - String progName = "importScript"; - - OptionSet options = null; - try { - options = parser.parse( args ); - } catch (OptionException e) { - throw new UsageException(progName, description, parser, - e.getMessage()); - } - - if( options.has( help ) ){ - throw new UsageException(progName, description, parser); - } - - //these extra checks are needed, since withRequiredArg above only indicated that the option - //has a mandatory argument but does not make the option itself mandatory. - if(!options.has("data")) { - throw new UsageException(progName, description, parser, - "Error: 'data' argument required."); - } - - if(!options.has("meta")) { - throw new UsageException(progName, description, parser, - "Error: 'meta' argument required."); - } - - if (hasLoadMode) { - if( options.has( "loadMode" ) ){ - String actionArg = (String) options.valueOf( "loadMode" ); - if (actionArg.equalsIgnoreCase("directLoad")) { - MySQLbulkLoader.bulkLoadOff(); - } else if (actionArg.equalsIgnoreCase( "bulkLoad" )) { - MySQLbulkLoader.bulkLoadOn(); - } else { - throw new UsageException(progName, description, parser, - "Error: unknown loadMode action: " + actionArg); - } - } - else { - throw new UsageException(progName, description, parser, - "Error: 'loadMode' argument required."); - } - } - return options; - } - - - /** - * Default method to be used when Importer class main method expects only 'data' and 'study' as mandatory options - * - * @param args: the same args given to main() method of the tool - * @param description: short description of the tool (to display in the usage line if necessary) - * - * @return the parsed options - */ - public static OptionSet parseStandardDataAndStudyOptions(String[] args, String description) { - // using a real options parser, helps avoid bugs - OptionParser parser = new OptionParser(); - parser.accepts("noprogress", "this option can be given to avoid the messages regarding memory usage and % complete"); - OptionSpec help = parser.accepts( "help", "print this help info" ); - parser.accepts( "data", "profile data file" ).withRequiredArg().describedAs( "data_file.txt" ).ofType( String.class ); - parser.accepts( "study", "cancer study identifier" ).withRequiredArg().describedAs( "e.g. brca_tcga" ).ofType( String.class ); - - String progName = "importScript"; - - OptionSet options = null; - try { - options = parser.parse( args ); - } catch (OptionException e) { - throw new UsageException(progName, description, parser, - e.getMessage()); - } - - if( options.has( help ) ){ - throw new UsageException(progName, description, parser); - } - //these extra checks are needed, since withRequiredArg above only indicated that the option - //has a mandatory argument but does not make the option itself mandatory. - if(!options.has("data")) { - throw new UsageException(progName, description, parser, - "Error: 'data' argument required."); - } - - if(!options.has("study")) { - throw new UsageException(progName, description, parser, - "Error: 'study' argument required."); - } - - return options; - } - - /** - * Default method to be used when Importer class main method expects only 'data' and 'meta' as mandatory options - * and an optional 'loadMode' parameter and an optional 'update-info' parameter - * - * @param args: the same args given to main() method of the tool - * @param description: short description of the tool (to display in the usage line if necessary) - * @param hasLoadMode: set to true to let this method validate whether the command line argument loadMode was given - * - * @return the parsed options - */ - public static OptionSet parseStandardDataAndMetaUpdateOptions(String[] args, String description, boolean hasLoadMode) { - // using a real options parser, helps avoid bugs - OptionParser parser = new OptionParser(); - parser.accepts("noprogress", "this option can be given to avoid the messages regarding memory usage and % complete"); - OptionSpec help = parser.accepts( "help", "print this help info" ); - parser.accepts( "data", "profile data file" ).withRequiredArg().describedAs( "data_file.txt" ).ofType( String.class ); - parser.accepts( "update-info", "Update information for existing entities in the database").withOptionalArg().ofType(String.class); - parser.accepts( "meta", "meta (description) file" ).withRequiredArg().describedAs( "meta_file.txt" ).ofType( String.class ); - if (hasLoadMode) { - parser.accepts( "loadMode", "direct (per record) or bulk load of data" ) - .withRequiredArg().describedAs( "[directLoad|bulkLoad (default)]" ).ofType( String.class ); - } - String progName = "importScript"; - - OptionSet options = null; - try { - options = parser.parse( args ); - } catch (OptionException e) { - throw new UsageException(progName, description, parser, - e.getMessage()); - } - - if( options.has( help ) ){ - throw new UsageException(progName, description, parser); - } - - //these extra checks are needed, since withRequiredArg above only indicated that the option - //has a mandatory argument but does not make the option itself mandatory. - if(!options.has("data")) { - throw new UsageException(progName, description, parser, - "Error: 'data' argument required."); - } - - if(!options.has("meta")) { - throw new UsageException(progName, description, parser, - "Error: 'meta' argument required."); - } - - if (hasLoadMode) { - if( options.has( "loadMode" ) ){ - String actionArg = (String) options.valueOf( "loadMode" ); - if (actionArg.equalsIgnoreCase("directLoad")) { - MySQLbulkLoader.bulkLoadOff(); - } else if (actionArg.equalsIgnoreCase( "bulkLoad" )) { - MySQLbulkLoader.bulkLoadOn(); - } else { - throw new UsageException(progName, description, parser, - "Error: unknown loadMode action: " + actionArg); - } - } - else { - throw new UsageException(progName, description, parser, - "Error: 'loadMode' argument required."); - } - } - return options; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/ConvertProfileDataToGeneticEvents.java b/core/src/main/java/org/mskcc/cbio/portal/util/ConvertProfileDataToGeneticEvents.java deleted file mode 100644 index 80ae72f448e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/ConvertProfileDataToGeneticEvents.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.ArrayList; - -import org.mskcc.cbio.portal.model.GeneticEvent; -import org.mskcc.cbio.portal.model.GeneticEventImpl; -import org.mskcc.cbio.portal.model.ProfileData; -import org.mskcc.cbio.portal.model.ProfileDataSummary; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintSpecification; - -/** - * Utility Class to Convert Profile Data to a Matrix of Genetic Events. - * - * @author Ethan Cerami - */ -public class ConvertProfileDataToGeneticEvents { - // TODO: move this method into ProfileDataSummary - - /** - * Converts a Profile Data Summary Object into a 2D Matrix of Genetic Event Objects. - * - * @param pSummaryData - * Profile Summary Data. - * @param zScoreThreshold - * Z Score Threshold. - * @param geneList - * list of rows of genes to return in the matrix - * @return 2D Matrix of GeneticEvent Objects. - */ - public static GeneticEvent[][] convert(ProfileDataSummary pSummaryData, String[] geneList, - OncoPrintSpecification theOncoPrintSpecification, double zScoreThreshold, double rppaScoreThreshold) { - ProfileData pData = pSummaryData.getProfileData(); - - ArrayList goodGenes = new ArrayList (); - for( String gene : geneList ){ - // TODO: replace with a hash lookup, as pData.getValidGeneList().contains is O(n), so this for-loop is O(n**2) - if (pData.getGeneList().contains( gene )) { - goodGenes.add(gene); - } - } - - GeneticEvent matrix[][] = new GeneticEvent[goodGenes.size()][pData.getCaseIdList().size()]; - int row = 0; - for( String currentGene : goodGenes ){ - - for (int j = 0; j < pData.getCaseIdList().size(); j++) { - String currentCaseId = pData.getCaseIdList().get(j); - String value = pData.getValue(currentGene, currentCaseId); - ValueParser valueParser = ValueParser.generateValueParser( currentGene, value, zScoreThreshold, - rppaScoreThreshold, theOncoPrintSpecification ); - if( null == valueParser){ - System.err.println( "Yikes null valueParser"); - }else{ - GeneticEventImpl event = new GeneticEventImpl(valueParser, currentGene, currentCaseId); - matrix[row][j] = event; - } - } - row++; - } - return matrix; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/DataSetsUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/DataSetsUtil.java deleted file mode 100644 index e3716935d37..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/DataSetsUtil.java +++ /dev/null @@ -1,175 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -// imports -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.AccessControl; -import org.mskcc.cbio.portal.web_api.ProtocolException; - -import java.util.List; -import java.util.HashSet; -import java.util.ArrayList; - -/** - * Utility Class to help generate Data Sets Page. - * - * @author Benjamin Gross. - */ -public class DataSetsUtil { - - // ref to our access control object - private static AccessControl accessControl = SpringUtil.getAccessControl(); - - // ref to total number of samples for al cancer studies - private Integer totalNumberOfSamples; - - // ref to our list of cancer study stats & total num of samples - private List cancerStudyStats; - - private DaoSample daoSample; - private DaoPatient daoPatient; - private DaoSampleList daoSampleList; - - /** - * Constructor (private). - */ - public DataSetsUtil() { - - try { - daoSample = new DaoSample(); - daoPatient = new DaoPatient(); - daoSampleList = new DaoSampleList(); - // totalNumberOfSamples will be set while computing stats - totalNumberOfSamples = 0; - cancerStudyStats = computeCancerStudyStats(); - } - catch (Exception e) { - e.printStackTrace(); - } - } - - /** - * Returns the cancer study stats. - * - * @return List - */ - public List getCancerStudyStats() { return cancerStudyStats; } - - /** - * Gets total number of samples for all studies. - * - * @return Integer - */ - public Integer getTotalNumberOfSamples() { return totalNumberOfSamples; } - - /** - * Routine which constructs and returns a list of CancerStudyStats - * - * @return List - * @throws DaoException Database Error. - * @throws ProtocolException Protocol Error. - */ - private List computeCancerStudyStats() throws DaoException, ProtocolException { - - // what we are returning - List toReturn = new ArrayList(); - - // get list of cancer studies - List cancerStudyList = accessControl.getCancerStudies(); - - // first element is 'all', remove it - cancerStudyList.remove(0); - - // process the list - for (CancerStudy cancerStudy : cancerStudyList) { - String citation = cancerStudy.getCitation(); - if (citation==null) { - citation = ""; - } else { - String pmid = cancerStudy.getPmid(); - if (pmid!=null) { - citation = ""+citation+""; - } - } - // get genetic profiles - int sequenced = getCount(cancerStudy, "_sequenced"); - int cna = getCount(cancerStudy, "_cna"); - int RNASEQ = getRNASEQ(cancerStudy); - int tumorMRNA = getCount(cancerStudy, "_mrna"); - int normal = getCount(cancerStudy, "_normal_mrna"); - int tumorMIRNA = getCount(cancerStudy, "_microrna"); - int methylationHM27 = getCount(cancerStudy, "_methylation_hm27"); - int rppa = getCount(cancerStudy, "_rppa"); - int massSpectrometry = getCount(cancerStudy, "_protein_quantification"); - int complete = getCount(cancerStudy, "_3way_complete"); - int all = getCount(cancerStudy, "_all"); - totalNumberOfSamples += all; - // add to return list - toReturn.add(new CancerStudyStats(cancerStudy.getCancerStudyStableId(), - cancerStudy.getName(), citation, all, sequenced, - cna, RNASEQ, tumorMRNA, normal, tumorMIRNA, - methylationHM27, rppa, complete, massSpectrometry)); - } - - // outta here - return toReturn; - } - - private int getRNASEQ(CancerStudy cancerStudy) throws DaoException { - // Looking for RNA SEQ V2 - Integer count = getCount(cancerStudy, "_rna_seq_v2_mrna"); - - // Looking for RNA SEQ if there is no data in v2 - if(count == null || count == 0) { - count = getCount(cancerStudy, "_rna_seq_mrna"); - } - return count; - } - - private int getCount(CancerStudy cancerStudy, String sampleListSuffix) throws DaoException - { - int count = 0; - - String sampleListID = cancerStudy.getCancerStudyStableId() + sampleListSuffix; - SampleList desiredSampleList = daoSampleList.getSampleListByStableId(sampleListID); - - if (desiredSampleList != null) { - // NOTE - as of 12/12/14, patient lists contain sample ids - count = desiredSampleList.getSampleList().size(); - } - - return count; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/DatabaseProperties.java b/core/src/main/java/org/mskcc/cbio/portal/util/DatabaseProperties.java deleted file mode 100644 index e2ec2753bec..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/DatabaseProperties.java +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.util.GlobalProperties; - -/** - * Stores db props (name, id, pw, host) from portal.properties - * and makes them accessible. - */ -public class DatabaseProperties { - private String dbHost; - private String dbUser; - private String dbPassword; - private String dbName; - private String dbEncryptedKey; - private String dbDriverClassName; - private String dbUseSSL; - private String dbEnablePooling; - private String connectionURL; - - // No production keys stored in filesystem or code: digest the key; put it in properties; load it into dbms on startup - private static DatabaseProperties dbProperties; - - public static DatabaseProperties getInstance() { - if (dbProperties == null) { - dbProperties = new DatabaseProperties(); - // Get DB Properties from portal.properties. - dbProperties.setDbHost(GlobalProperties.getProperty("db.host")); - dbProperties.setDbName(GlobalProperties.getProperty("db.portal_db_name")); - dbProperties.setDbUser(GlobalProperties.getProperty("db.user")); - dbProperties.setDbPassword(GlobalProperties.getProperty("db.password")); - dbProperties.setDbEncryptedKey(GlobalProperties.getProperty("db.encryptedKey")); - dbProperties.setDbDriverClassName(GlobalProperties.getProperty("db.driver")); - dbProperties.setDbUseSSL(GlobalProperties.getProperty("db.use_ssl")); - dbProperties.setDbEnablePooling(GlobalProperties.getProperty("db.enable_pooling")); - dbProperties.setConnectionURL(GlobalProperties.getProperty("db.connection_string")); - } - return dbProperties; - } - - public String getDbEncryptedKey() { - return dbEncryptedKey; - } - - public void setDbEncryptedKey(String dbEncryptedKey) { - this.dbEncryptedKey = dbEncryptedKey; - } - - private DatabaseProperties() { - } - - public String getDbHost() { - return dbHost; - } - - public void setDbHost(String dbHost) { - this.dbHost = dbHost; - } - - public String getDbUser() { - return dbUser; - } - - public void setDbUser(String dbUser) { - this.dbUser = dbUser; - } - - public String getDbPassword() { - return dbPassword; - } - - public void setDbPassword(String dbPassword) { - this.dbPassword = dbPassword; - } - - public String getDbName() { - return dbName; - } - - public void setDbName(String dbName) { - this.dbName = dbName; - } - - public String getDbDriverClassName() { - return dbDriverClassName; - } - - public void setDbDriverClassName(String dbDriverClassName) { - this.dbDriverClassName = dbDriverClassName; - } - - public String getDbUseSSL() { - return dbUseSSL; - } - - public void setDbUseSSL(String dbUseSSL) { - this.dbUseSSL = dbUseSSL; - } - - public String getDbEnablePooling() { - return dbEnablePooling; - } - - public void setDbEnablePooling(String dbEnablePooling) { - this.dbEnablePooling = dbEnablePooling; - } - - public String getConnectionURL() { - return connectionURL; - } - - public void setConnectionURL(String connectionURL) { - this.connectionURL = connectionURL; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/DebugHrrsFilter.java b/core/src/main/java/org/mskcc/cbio/portal/util/DebugHrrsFilter.java deleted file mode 100644 index 1dbb27bd942..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/DebugHrrsFilter.java +++ /dev/null @@ -1,118 +0,0 @@ -/* - * Copyright (c) 2019 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.util; - - -import com.vlkan.hrrs.api.HttpRequestRecordWriter; -import com.vlkan.hrrs.api.HttpRequestRecordWriterTarget; -import com.vlkan.hrrs.serializer.base64.Base64HttpRequestRecord; -import com.vlkan.hrrs.serializer.base64.Base64HttpRequestRecordWriter; -import com.vlkan.hrrs.serializer.base64.guava.GuavaBase64Encoder; -import com.vlkan.hrrs.serializer.file.HttpRequestRecordWriterRotatingFileTarget; -import com.vlkan.hrrs.servlet.HrrsFilter; -import com.vlkan.rfos.RotationConfig; -import com.vlkan.rfos.policy.DailyRotationPolicy; - -import java.io.*; -import java.util.*; -import javax.servlet.*; -import org.apache.commons.lang3.StringUtils; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.cbioportal.model.*; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.*; -import org.springframework.context.annotation.Bean; -import org.springframework.security.core.Authentication; -import org.springframework.security.core.authority.AuthorityUtils; -import org.springframework.stereotype.Component; - -public class DebugHrrsFilter extends HrrsFilter { - - private static final Logger LOGGER = LoggerFactory.getLogger(DebugHrrsFilter.class); - - private static final String DEFAULT_HRRS_LOGGING_NAME = "/hrrs-logging.csv"; - - private final HttpRequestRecordWriter writer; - - private final HttpRequestRecordWriterTarget writerTarget; - - public DebugHrrsFilter() { - boolean enableHrrsLogging = Boolean.valueOf(GlobalProperties.getProperty("hrrs.enable.logging")); - // only initialize writers/writing target if logging is enabled in properties file - if (enableHrrsLogging) { - RotationConfig rotationConfig = createRotationConfig(); - this.writerTarget = new HttpRequestRecordWriterRotatingFileTarget(rotationConfig, Base64HttpRequestRecord.CHARSET); - this.writer = new Base64HttpRequestRecordWriter(writerTarget, GuavaBase64Encoder.getInstance()); - this.setEnabled(enableHrrsLogging); - } else { - this.writer = null; - this.writerTarget = null; - } - } - - public HttpRequestRecordWriterTarget getWriterTarget() { - return writerTarget; - } - - @Override - protected HttpRequestRecordWriter getWriter() { - return writer; - } - - private static RotationConfig createRotationConfig() { - // default to tmpdir if logging is enabled but no logging path is provided - String hrrsLoggingFilePath = (!StringUtils.isEmpty(GlobalProperties.getProperty("hrrs.logging.filepath")) ? GlobalProperties.getProperty("hrrs.logging.filepath") : System.getProperty("java.io.tmpdir") + DEFAULT_HRRS_LOGGING_NAME); - String file = new File(hrrsLoggingFilePath).getAbsolutePath(); - String filePattern = new File(hrrsLoggingFilePath + "-%d{yyyyMMdd-HHmmss-SSS}.csv").getAbsolutePath(); - RotationConfig rotationConfig = RotationConfig - .builder() - .file(file) - .filePattern(filePattern) - .policy(DailyRotationPolicy.getInstance()) - .build(); - return rotationConfig; - } - - @Override - public void destroy() { - try { - if (writerTarget != null) { - writerTarget.close(); - } - } catch (IOException error) { - LOGGER.error("failed closing writer", error); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/Direction.java b/core/src/main/java/org/mskcc/cbio/portal/util/Direction.java deleted file mode 100644 index 3cf8a6d0eef..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/Direction.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -/** - * use to indicate whether a value (e.g., mRNA) is higher or lower than an upper or lower threshold; - * TODO: collect all enums in one class, and then reference them as inner classes to avoid ridiculously tiny classes like this. - * @author Arthur Goldberg - */ -public enum Direction { higher, lower }; diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/DoubleUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/DoubleUtil.java deleted file mode 100644 index a3a410c9e08..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/DoubleUtil.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -/** - * Derived from the web: http://stackoverflow.com/questions/356807/java-double-comparison-epsilon - */ -public class DoubleUtil { - - private final static double EPSILON = 0.00001; - /** - * Returns true if two doubles are considered equal. Tests if the absolute - * difference between two doubles has a difference less then .00001. This - * should be fine when comparing prices, because prices have a precision of - * .001. - * - * @param a double to compare. - * @param b double to compare. - * @return true true if two doubles are considered equal. - */ - public static boolean equals(double a, double b){ - return a == b ? true : Math.abs(a - b) < EPSILON; - } - /** - * Returns true if two doubles are considered equal. Tests if the absolute - * difference between the two doubles has a difference less then a given - * double (epsilon). Determining the given epsilon is highly dependant on the - * precision of the doubles that are being compared. - * - * @param a double to compare. - * @param b double to compare - * @param epsilon double which is compared to the absolute difference of two - * doubles to determine if they are equal. - * @return true if a is considered equal to b. - */ - public static boolean equals(double a, double b, double epsilon){ - return a == b ? true : Math.abs(a - b) < epsilon; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/DynamicState.java b/core/src/main/java/org/mskcc/cbio/portal/util/DynamicState.java deleted file mode 100644 index 870c0dbdf96..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/DynamicState.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import com.google.common.base.Strings; - -/** - * A Java Singleton implemented as an enum to support a common dynamic state across the cBioPortal application - * @author criscuof - */ -public enum DynamicState { - INSTANCE; - - private String currentUser = ""; - private String failedUser =""; - - public void setCurrentUser(String aUser) { - // n.b allow property yo be set to null or empty - currentUser = aUser; - failedUser =""; - } - - public String getCurrentUser() { - return currentUser; - } - - - /* - failedUser attribute represents a Google+ username that failed cBio authorization - once set, it can only be accessed once before being cleared - */ - public void setFailedUser(String aUser){ - failedUser = (Strings.isNullOrEmpty(failedUser))?aUser:"unknown"; - } - - public String getFailedUser(){ - String s = failedUser; - failedUser=""; - return s; - } - - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/EnrichmentsAnalysisUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/EnrichmentsAnalysisUtil.java deleted file mode 100644 index c1c4adac537..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/EnrichmentsAnalysisUtil.java +++ /dev/null @@ -1,673 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.*; - -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.databind.node.ObjectNode; - -import org.apache.commons.math3.stat.StatUtils; -import org.apache.commons.math3.stat.descriptive.DescriptiveStatistics; -import org.apache.commons.math3.stat.inference.TestUtils; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.dao.DaoGeneticProfile; -import org.mskcc.cbio.portal.dao.DaoReferenceGenome; -import org.mskcc.cbio.portal.dao.DaoReferenceGenomeGene; -import org.mskcc.cbio.portal.dao.DaoGeneticAlteration; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.ReferenceGenome; -import org.mskcc.cbio.portal.model.Gene; -import org.mskcc.cbio.portal.stats.FisherExact; - -/** - * pre-calculate/re-format input raw data based on different profiles - * then return result (p-value) of fisher exact test - * - * @author suny1 - * @date Mar 16, 2015 - */ -public class EnrichmentsAnalysisUtil implements DaoGeneticAlteration.AlterationProcesser { - - private String geneticProfileStableId; - private GeneticAlterationType geneticAlterationType; - private String[] queriedGenes; - private String copyNumType = "none"; - private List alteredSampleIds; - private List unalteredSampleIds; - - private ObjectMapper mapper = new ObjectMapper(); - - private final String COL_NAME_GENE = "Gene"; - private final String COL_NAME_CYTOBAND = "Cytoband"; - private final String COL_NAME_PCT_ALTERED = "percentage of alteration in altered group"; - private final String COL_NAME_PCT_UNALTERED = "percentage of alteration in unaltered group"; - private final String COL_NAME_RATIO = "Log Ratio"; - private final String COL_NAME_DIRECTION = "Direction/Tendency"; - private final String COL_NAME_P_VALUE = "p-Value"; - private final String COL_NAME_MEAN_ALTERED = "mean of alteration in altered group"; - private final String COL_NAME_MEAN_UNALTERED = "mean of alteration in unaltered group"; - private final String COL_NAME_STDEV_ALTERED = "standard deviation of alteration in altered group"; - private final String COL_NAME_STDEV_UNALTERED = "standard deviation of alteration in unaltered group"; - - public EnrichmentsAnalysisUtil( - String geneticProfileStableId, - GeneticAlterationType geneticAlterationType, - String copyNumType, - List alteredSampleIds, - List unalteredSampleIds, - String[] queriedGenes) throws DaoException, IllegalArgumentException { - this.geneticProfileStableId = geneticProfileStableId; - this.geneticAlterationType = geneticAlterationType; - this.copyNumType = copyNumType; - this.alteredSampleIds = alteredSampleIds; - this.unalteredSampleIds = unalteredSampleIds; - this.queriedGenes = queriedGenes; - } - - public ObjectNode processMutHm(long entrezGeneId, ArrayList sampleList, Map mutHm) { - ObjectNode _datum = mapper.createObjectNode(); - //create map to pair sample and value - HashMap mapSampleValue = new HashMap<>(); - for (Integer sampleId : sampleList) { //Assign every sample (included non mutated ones) values -- mutated -> Mutation Type, non-mutated -> "Non" - String mutationStatus = "Non"; - String tmpStr = new StringBuilder().append(Integer.toString(sampleId)).append(Long.toString(entrezGeneId)).toString(); - if (mutHm.containsKey(tmpStr)) mutationStatus = "Mutated"; - mapSampleValue.put(sampleId, mutationStatus); - } - //remove empty entry - Iterator it = mapSampleValue.entrySet().iterator(); - while (it.hasNext()) { - Map.Entry pair = (Map.Entry) it.next(); - if (pair.getValue().equals("NA") || pair.getValue().equals("NaN") || pair.getValue().equals("null")) { - it.remove(); - } - } - //get Gene Name and Cytoband - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - Gene gene = daoGeneOptimized.getGene(entrezGeneId); - String geneName = ((CanonicalGene) gene).getHugoGeneSymbolAllCaps(); - String cytoband = getCytoband(((CanonicalGene) gene).getGeneticEntityId(), geneticProfileStableId); - - //statistics analysis - if (!(Arrays.asList(queriedGenes)).contains(geneName)) { //remove queried genes from result - _datum.put(COL_NAME_GENE, geneName); - _datum.put(COL_NAME_CYTOBAND, cytoband); - _datum.put(COL_NAME_PCT_ALTERED, Integer.toString(countAltered(mapSampleValue, "altered")) + "////" + Double.toString(calcPct(mapSampleValue, "altered"))); - _datum.put(COL_NAME_PCT_UNALTERED, Integer.toString(countAltered(mapSampleValue, "unaltered")) + "////" + Double.toString(calcPct(mapSampleValue, "unaltered"))); - _datum.put(COL_NAME_RATIO, calcRatio( - calcPct(mapSampleValue, "altered"), calcPct(mapSampleValue, "unaltered"))); - _datum.put(COL_NAME_DIRECTION, "place holder"); //calculation is done by the front-end - _datum.put(COL_NAME_P_VALUE, calcPval(mapSampleValue, geneticProfileStableId)); - if (!(calcPct(mapSampleValue, "altered") == 0.0 && - calcPct(mapSampleValue, "unaltered") == 0.0) && - !Double.isNaN(calcPval(mapSampleValue, geneticProfileStableId))) { - return _datum; - } - } - return null; - } - - @Override - public ObjectNode process(long entrezGeneId, String[] values, ArrayList sampleList) { - ObjectNode _datum = mapper.createObjectNode(); - //create map to pair sample and value - HashMap mapSampleValue = new HashMap<>(); - for (int i = 0; i < values.length; i++) { - String value = values[i]; - Integer sampleId = sampleList.get(i); - mapSampleValue.put(sampleId, value); - } - //remove empty entry - Iterator it = mapSampleValue.entrySet().iterator(); - while (it.hasNext()) { - Map.Entry pair = (Map.Entry) it.next(); - if (pair.getValue().equals("NA") || pair.getValue().equals("NaN") || pair.getValue().equals("null")) { - it.remove(); - } - } - //get Gene Name and Cytoband - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - Gene gene = daoGeneOptimized.getGene(entrezGeneId); - String geneName = ((CanonicalGene) gene).getHugoGeneSymbolAllCaps(); - String cytoband = getCytoband(((CanonicalGene) gene).getGeneticEntityId(), geneticProfileStableId); - if (cytoband == null || cytoband.length() == 0) { - cytoband = "--"; - } - //statistics analysis - if (geneticAlterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION) { - if (!(Arrays.asList(queriedGenes)).contains(geneName)) { //remove queried genes from result - _datum.put(COL_NAME_GENE, geneName); - _datum.put(COL_NAME_CYTOBAND, cytoband); - _datum.put(COL_NAME_PCT_ALTERED, Integer.toString(countAltered(mapSampleValue, "altered")) + "////" + Double.toString(calcPct(mapSampleValue, "altered"))); - _datum.put(COL_NAME_PCT_UNALTERED, Integer.toString(countAltered(mapSampleValue, "unaltered")) + "////" + Double.toString(calcPct(mapSampleValue, "unaltered"))); - _datum.put(COL_NAME_RATIO, calcRatio( - calcPct(mapSampleValue, "altered"), calcPct(mapSampleValue, "unaltered"))); - _datum.put(COL_NAME_DIRECTION, "place holder"); //calculation is done by the front-end - _datum.put(COL_NAME_P_VALUE, calcPval(mapSampleValue, geneticProfileStableId)); - if (!(calcPct(mapSampleValue, "altered") == 0.0 && - calcPct(mapSampleValue, "unaltered") == 0.0) && - !Double.isNaN(calcPval(mapSampleValue, geneticProfileStableId))) { - return _datum; - } - } - } else if (geneticAlterationType == GeneticAlterationType.MRNA_EXPRESSION) { - _datum.put(COL_NAME_GENE, geneName); - _datum.put(COL_NAME_CYTOBAND, cytoband); - _datum.put(COL_NAME_MEAN_ALTERED, calcMean(mapSampleValue, "altered", geneticProfileStableId)); - _datum.put(COL_NAME_MEAN_UNALTERED, calcMean(mapSampleValue, "unaltered", geneticProfileStableId)); - _datum.put(COL_NAME_STDEV_ALTERED, calcSTDev(mapSampleValue, "altered", geneticProfileStableId)); - _datum.put(COL_NAME_STDEV_UNALTERED, calcSTDev(mapSampleValue, "unaltered", geneticProfileStableId)); - _datum.put(COL_NAME_P_VALUE, calcPval(mapSampleValue, geneticProfileStableId)); - if (!Double.isNaN(calcPval(mapSampleValue, geneticProfileStableId))) { - return _datum; - } - } else if (geneticAlterationType == GeneticAlterationType.PROTEIN_LEVEL) { - _datum.put(COL_NAME_GENE, geneName); - _datum.put(COL_NAME_CYTOBAND, cytoband); - _datum.put(COL_NAME_MEAN_ALTERED, calcMean(mapSampleValue, "altered", geneticProfileStableId)); - _datum.put(COL_NAME_MEAN_UNALTERED, calcMean(mapSampleValue, "unaltered", geneticProfileStableId)); - _datum.put(COL_NAME_STDEV_ALTERED, calcSTDev(mapSampleValue, "altered", geneticProfileStableId)); - _datum.put(COL_NAME_STDEV_UNALTERED, calcSTDev(mapSampleValue, "unaltered", geneticProfileStableId)); - _datum.put(COL_NAME_P_VALUE, calcPval(mapSampleValue, geneticProfileStableId)); - if (!Double.isNaN(calcPval(mapSampleValue, geneticProfileStableId))) { - return _datum; - } - } - return null; - } - - private String calcRatio(double pct1, double pct2) { - if (pct1 != 0 && pct2 != 0) { - if ((Math.log(pct1 / pct2) / Math.log(2)) > 10) { - return ">10"; - } else if (Math.log(pct1 / pct2) / Math.log(2) < -10) { - return "<-10"; - } else { - return Double.toString(Math.log(pct1 / pct2) / Math.log(2)); - } - } else if (pct1 == 0 && pct2 != 0) { - return "<-10"; - } else if (pct1 != 0 && pct2 == 0) { - return ">10"; - } else { - return "--"; - } - } - - private double calcMean(HashMap singleGeneCaseValueMap, String groupType, String profileStableId) { // group type: altered or unaltered - switch (groupType) { - case "altered": - int _index_altered = 0; - double[] alteredArray = new double[alteredSampleIds.size()]; - for (Integer alteredSampleId : alteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(alteredSampleId)) { - if (profileStableId.indexOf("rna_seq") != -1) { - try { - alteredArray[_index_altered] = Math.log(Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId))) / Math.log(2); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } else { - try { - alteredArray[_index_altered] = Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId)); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - _index_altered += 1; - } - } - return StatUtils.mean(alteredArray); - case "unaltered": - int _index_unaltered = 0; - double[] unalteredArray = new double[unalteredSampleIds.size()]; - for (Integer unalteredSampleId : unalteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(unalteredSampleId)) { - if (profileStableId.indexOf("rna_seq") != -1) { - try { - unalteredArray[_index_unaltered] = Math.log(Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId))) / Math.log(2); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } else { - try { - unalteredArray[_index_unaltered] = Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId)); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - _index_unaltered += 1; - } - } - return StatUtils.mean(unalteredArray); - default: - return Double.NaN; //error - } - } - - private double calcSTDev(HashMap singleGeneCaseValueMap, String groupType, String profileStableId) { - switch (groupType) { - case "altered": - DescriptiveStatistics stats_altered = new DescriptiveStatistics(); - for (Integer alteredSampleId : alteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(alteredSampleId)) { - if (profileStableId.indexOf("rna_seq") != -1) { - try { - stats_altered.addValue(Math.log(Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId))) / Math.log(2)); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } else { - try { - stats_altered.addValue(Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId))); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - } - } - return stats_altered.getStandardDeviation(); - case "unaltered": - DescriptiveStatistics stats_unaltered = new DescriptiveStatistics(); - for (Integer unalteredSampleId : unalteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(unalteredSampleId)) { - if (profileStableId.indexOf("rna_seq") != -1) { - try { - stats_unaltered.addValue(Math.log(Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId))) / Math.log(2)); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } else { - try { - stats_unaltered.addValue(Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId))); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - } - } - return stats_unaltered.getStandardDeviation(); - default: - return Double.NaN; //error - } - } - - //count alterations in different groups (altered/unaltered) (only for mutation tab and cna tab) - private int countAltered(HashMap singleGeneCaseValueMap, String groupType) { - int _count = 0; //altered samples count - if (geneticAlterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION && copyNumType.equals("del")) { - switch (groupType) { - case "altered": - for (Integer alteredSampleId : alteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(alteredSampleId)) { - try { - if (Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId)) == -2.0) { - _count += 1; - } - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - } - break; - case "unaltered": - for (Integer unalteredSampleId : unalteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(unalteredSampleId)) { - try { - if (Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId)) == -2.0) { - _count += 1; - } - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - } - break; - } - } else if (geneticAlterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION && copyNumType.equals("amp")) { - switch (groupType) { - case "altered": - for (Integer alteredSampleId : alteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(alteredSampleId)) { - try { - if (Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId)) == 2.0) { - _count += 1; - } - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - } - break; - case "unaltered": - for (Integer unalteredSampleId : unalteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(unalteredSampleId)) { - try { - if (Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId)) == 2.0) { - _count += 1; - } - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - } - break; - } - } else if (geneticAlterationType == GeneticAlterationType.MUTATION_EXTENDED) { - switch (groupType) { - case "altered": - for (Integer alteredSampleId : alteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(alteredSampleId)) { - if (!singleGeneCaseValueMap.get(alteredSampleId).equals("Non")) { - _count += 1; - } - } - } - break; - case "unaltered": - for (Integer unalteredSampleId : unalteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(unalteredSampleId)) { - if (!singleGeneCaseValueMap.get(unalteredSampleId).equals("Non")) { - _count += 1; - } - } - } - break; - } - } - return _count; - } - - private double calcPct(HashMap singleGeneCaseValueMap, String groupType) { // group type: altered or unaltered - double _result_pct = 0, _count = 0; //altered samples count - if (geneticAlterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION && copyNumType.equals("del")) { - switch (groupType) { - case "altered": - for (Integer alteredSampleId : alteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(alteredSampleId)) { - try { - if (Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId)) == -2.0) { - _count += 1; - } - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - } - _result_pct = _count / alteredSampleIds.size(); - break; - case "unaltered": - for (Integer unalteredSampleId : unalteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(unalteredSampleId)) { - try { - if (Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId)) == -2.0) { - _count += 1; - } - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - } - _result_pct = _count / unalteredSampleIds.size(); - break; - } - } else if (geneticAlterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION && copyNumType.equals("amp")) { - switch (groupType) { - case "altered": - for (Integer alteredSampleId : alteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(alteredSampleId)) { - try { - if (Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId)) == 2.0) { - _count += 1; - } - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - } - _result_pct = _count / alteredSampleIds.size(); - break; - case "unaltered": - for (Integer unalteredSampleId : unalteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(unalteredSampleId)) { - try { - if (Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId)) == 2.0) { - _count += 1; - } - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - } - _result_pct = _count / unalteredSampleIds.size(); - break; - } - } else if (geneticAlterationType == GeneticAlterationType.MUTATION_EXTENDED) { - switch (groupType) { - case "altered": - for (Integer alteredSampleId : alteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(alteredSampleId)) { - if (!singleGeneCaseValueMap.get(alteredSampleId).equals("Non")) { - _count += 1; - } - } - } - _result_pct = _count / alteredSampleIds.size(); - break; - case "unaltered": - for (Integer unalteredSampleId : unalteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(unalteredSampleId)) { - if (!singleGeneCaseValueMap.get(unalteredSampleId).equals("Non")) { - _count += 1; - } - } - } - _result_pct = _count / unalteredSampleIds.size(); - break; - } - } - return _result_pct; - } - - private double calcPval(HashMap singleGeneCaseValueMap, String profileStableId) - throws IllegalArgumentException { - double _p_value = 0.0; - if (geneticAlterationType == GeneticAlterationType.MUTATION_EXTENDED || geneticAlterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION) { - _p_value = runFisherExactTest(singleGeneCaseValueMap); - } else if (geneticAlterationType == GeneticAlterationType.MRNA_EXPRESSION || geneticAlterationType == GeneticAlterationType.PROTEIN_LEVEL) { - _p_value = runTTest(singleGeneCaseValueMap, profileStableId); - } - return _p_value; - } - - private double runTTest(HashMap singleGeneCaseValueMap, String profileStableId) throws IllegalArgumentException { - double[] unalteredArray = new double[unalteredSampleIds.size()]; - double[] alteredArray = new double[alteredSampleIds.size()]; - int _index_unaltered = 0, _index_altered = 0; - for (Integer alteredSampleId : alteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(alteredSampleId)) { - if (profileStableId.indexOf("rna_seq") != -1) { - try { - alteredArray[_index_altered] = Math.log(Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId))) / Math.log(2); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } else { - try { - alteredArray[_index_altered] = Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId)); - } catch (NumberFormatException e) { - e.getStackTrace(); - } - } - _index_altered += 1; - } - } - for (Integer unalteredSampleId : unalteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(unalteredSampleId)) { - if (profileStableId.indexOf("rna_seq") != -1) { - try { - unalteredArray[_index_unaltered] = Math.log(Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId))) / Math.log(2); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } else { - try { - unalteredArray[_index_unaltered] = Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId)); - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } - _index_unaltered += 1; - } - } - if (alteredArray.length < 2 || unalteredArray.length < 2) { - return Double.NaN; - } else { - double pvalue = TestUtils.tTest(alteredArray, unalteredArray); - return pvalue; - } - } - - private double runFisherExactTest(HashMap singleGeneCaseValueMap) { - int a = 0; //non altered - int b = 0; //x non altered, y altered - int c = 0; //x altered, y non altered - int d = 0; //both alered - for (Integer alteredSampleId : alteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(alteredSampleId)) { - if (geneticAlterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION) { - try { - Double value = Double.parseDouble(singleGeneCaseValueMap.get(alteredSampleId)); - if (copyNumType.equals("del")) { - if (value == -2.0) { - d += 1; - } else { - c += 1; - } - } else if (copyNumType.equals("amp")) { - if (value == 2.0) { - d += 1; - } else { - c += 1; - } - } - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } else if (geneticAlterationType == GeneticAlterationType.MUTATION_EXTENDED) { - String value = singleGeneCaseValueMap.get(alteredSampleId); - if (value.equals("Non")) { - c += 1; - } else { - d += 1; - } - } - } - } - - for (Integer unalteredSampleId : unalteredSampleIds) { - if (singleGeneCaseValueMap.containsKey(unalteredSampleId)) { - if (geneticAlterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION) { - try { - Double value = Double.parseDouble(singleGeneCaseValueMap.get(unalteredSampleId)); - if (copyNumType.equals("del")) { - if (value == -2.0) { - b += 1; - } else { - a += 1; - } - } else if (copyNumType.equals("amp")) { - if (value == 2.0) { - b += 1; - } else { - a += 1; - } - } - } catch (NumberFormatException e) { - e.getStackTrace(); - //TODO: add proper handling of this situation - } - } else if (geneticAlterationType == GeneticAlterationType.MUTATION_EXTENDED) { - String value = singleGeneCaseValueMap.get(unalteredSampleId); - if (value.equals("Non")) { - a += 1; - } else { - b += 1; - } - } - } - } - FisherExact fisher = new FisherExact(a + b + c + d); - return fisher.getTwoTailedP(a, b, c, d); - } - - private String getCytoband(int geneticEntityId, String geneticProfileStableId) { - try { - int cancerStudyId = DaoGeneticProfile.getGeneticProfileByStableId(geneticProfileStableId).getCancerStudyId(); - String genomeName = null; - try { - genomeName = DaoCancerStudy.getCancerStudyByInternalId(cancerStudyId).getReferenceGenome(); - } catch (NullPointerException ne) { - genomeName = GlobalProperties.getReferenceGenomeName(); - } - int genomeId = DaoReferenceGenome.getReferenceGenomeByGenomeName(genomeName).getReferenceGenomeId(); - return DaoReferenceGenomeGene.getInstance().getGene(geneticEntityId, genomeId).getCytoband(); - } catch (DaoException e) { - return null; - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/EqualsUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/EqualsUtil.java deleted file mode 100644 index 92edba25eb1..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/EqualsUtil.java +++ /dev/null @@ -1,97 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -/** - * Collected methods which allow easy implementation of equals. - * - * From http://www.javapractices.com/topic/TopicAction.do?Id=17 - * - * Example use case in a class called Car: - *
    - public boolean equals(Object aThat){
    -   if ( this == aThat ) return true;
    -   if ( !(aThat instanceof Car) ) return false;
    -   Car that = (Car)aThat;
    -   return
    -     EqualsUtil.areEqual(this.fName, that.fName) &&
    -     EqualsUtil.areEqual(this.fNumDoors, that.fNumDoors) &&
    -     EqualsUtil.areEqual(this.fGasMileage, that.fGasMileage) &&
    -     EqualsUtil.areEqual(this.fColor, that.fColor) &&
    -     Arrays.equals(this.fMaintenanceChecks, that.fMaintenanceChecks); //array!
    - }
    - * 
    - * - * Arrays are not handled by this class. - * This is because the Arrays.equals methods should be used for - * array fields. - */ - public final class EqualsUtil { - - static public boolean areEqual(boolean aThis, boolean aThat){ - //System.out.println("boolean"); - return aThis == aThat; - } - - static public boolean areEqual(char aThis, char aThat){ - //System.out.println("char"); - return aThis == aThat; - } - - static public boolean areEqual(long aThis, long aThat){ - /* - * Note that byte, short, and int are handled by this method, through - * implicit conversion. - */ - return aThis == aThat; - } - - static public boolean areEqual(float aThis, float aThat){ - return Float.floatToIntBits(aThis) == Float.floatToIntBits(aThat); - } - - static public boolean areEqual(double aThis, double aThat){ - return Double.doubleToLongBits(aThis) == Double.doubleToLongBits(aThat); - } - - /** - * Possibly-null object field. - * - * Includes type-safe enumerations and collections, but does not include - * arrays. See class comment. - */ - static public boolean areEqual(Object aThis, Object aThat){ - return aThis == null ? aThat == null : aThis.equals(aThat); - } - } - diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/ExtendedMutationUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/ExtendedMutationUtil.java deleted file mode 100644 index f4f61b59844..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/ExtendedMutationUtil.java +++ /dev/null @@ -1,428 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.maf.MafRecord; -import org.mskcc.cbio.maf.TabDelimitedFileUtil; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.ExtendedMutation; - -import java.util.Arrays; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -/** - * Utility class related to ExtendedMutation. - */ -public class ExtendedMutationUtil { - // originally NA (case ignored) was the only value for empty values in this column, - // but [Not Available] occurs in many TCGA studies. - // TODO if this list grows, create NotAvailableValues enum like in ImportClinicalData.java - public static final List NOT_AVAILABLE = Arrays.asList("NA", "[Not Available]"); - - public static String getCaseId(String barCode) { - // process bar code - // an example bar code looks like this: TCGA-13-1479-01A-01W - - String barCodeParts[] = barCode.split("-"); - - String caseId = null; - - try { - caseId = barCodeParts[0] + "-" + barCodeParts[1] + "-" + barCodeParts[2]; - - // the following condition was prompted by case ids coming from - // private cancer studies (like SKCM_BROAD) with case id's of - // the form MEL-JWCI-WGS-XX or MEL-Ma-Mel-XX or MEL-UKRV-Mel-XX - if (!barCode.startsWith("TCGA") && - barCodeParts.length == 4) { - caseId += "-" + barCodeParts[3]; - } - } catch (ArrayIndexOutOfBoundsException e) { - caseId = barCode; - } - - return caseId; - } - - /** - * Determines the most accurate protein change value for the given mutation. - * - * If there is an annotator value, returns that value. - * If no annotator value, then tries Amino Acid Change value. - * If none of the above is valid then returns "MUTATED". - * - * @param parts current mutation as split parts of the line - * @param record MAF record for the current line - * @return most accurate protein change - */ - public static String getProteinChange(String[] parts, MafRecord record) { - // try annotator value first - String proteinChange = record.getProteinChange(); - - // if protein change is not valid, try amino acid change value - if (!isValidProteinChange(proteinChange)) { - proteinChange = record.getAminoAcidChange(); - } - - // if none is valid, then use the string "MUTATED" - if (!isValidProteinChange(proteinChange)) { - proteinChange = "MUTATED"; - } - - // also remove the starting "p." string if any - proteinChange = normalizeProteinChange(proteinChange); - - return proteinChange; - } - - /** - * Removes the starting "p." (if any) from the given - * amino acid change string. - * - * @param aminoAcidChange aa change string to be normalized - * @return normalized aa change string - */ - public static String normalizeProteinChange(String aminoAcidChange) { - String pDot = "p."; - - // remove the starting "p." string if any - if (aminoAcidChange.startsWith(pDot)) { - aminoAcidChange = aminoAcidChange.substring(pDot.length()); - } - - return aminoAcidChange; - } - - public static int getProteinPosStart(String proteinPosition, String proteinChange) { - // parts[0] is the protein start-end positions, parts[1] is the length - String[] parts = proteinPosition.split("/"); - - int position = TabDelimitedFileUtil.getPartInt(0, parts[0].split("-")); - - // there is a case where the protein change is "-" - if (position == TabDelimitedFileUtil.NA_INT) { - // try to extract it from protein change value - Map annotation = annotateProteinChange(proteinChange); - - if (annotation.get("start") != null) { - position = annotation.get("start"); - } - } - - return position; - } - - public static int getProteinPosEnd(String proteinPosition, String proteinChange) { - // parts[0] is the protein start-end positions, parts[1] is the length - String[] parts = proteinPosition.split("/"); - - int end = TabDelimitedFileUtil.getPartInt(1, parts[0].split("-")); - - // if no end position is provided, - // then use start position as end position - if (end == -1) { - Map annotation = annotateProteinChange(proteinChange); - if (annotation.get("end") != null) { - end = annotation.get("end"); - } - } - - return end; - } - - public static boolean isValidProteinChange(String proteinChange) { - boolean invalid = proteinChange == null || - proteinChange.length() == 0 || - proteinChange.equalsIgnoreCase("NULL") || - NOT_AVAILABLE.stream().anyMatch(s -> s.equalsIgnoreCase(proteinChange)); - return !invalid; - } - - public static boolean isAcceptableMutation(String mutationType) { - // check for null or NA values - if (mutationType == null || - mutationType.length() == 0 || - mutationType.equals("NULL") || - mutationType.equals(TabDelimitedFileUtil.NA_STRING)) { - return false; - } - - // check for the type - boolean silent = mutationType.toLowerCase().startsWith("silent"); - boolean loh = mutationType.toLowerCase().startsWith("loh"); - boolean wildtype = mutationType.toLowerCase().startsWith("wildtype"); - boolean utr3 = mutationType.toLowerCase().startsWith("3'utr"); - boolean utr5 = mutationType.toLowerCase().startsWith("5'utr"); - boolean flank5 = mutationType.toLowerCase().startsWith("5'flank"); - boolean igr = mutationType.toLowerCase().startsWith("igr"); - boolean rna = mutationType.equalsIgnoreCase("rna"); - - return !(silent || loh || wildtype || utr3 || utr5 || flank5 || igr || rna); - } - - public static String getMutationType(MafRecord record) { - String mutationType = record.getMafVariantClassification(); - - if (mutationType == null || - mutationType.length() == 0 || - mutationType.equals("NULL") || - mutationType.equals(TabDelimitedFileUtil.NA_STRING)) { - mutationType = record.getVariantClassification(); - } - - return mutationType; - } - - public static Integer getTumorAltCount(MafRecord record) { - Integer result = null; - - if (record.getTumorAltCount() != TabDelimitedFileUtil.NA_INT) { - result = record.getTumorAltCount(); - } else if(record.getTVarCov() != TabDelimitedFileUtil.NA_INT) { - result = record.getTVarCov(); - } else if((record.getTumorDepth() != TabDelimitedFileUtil.NA_INT) && - (record.getTumorVaf() != TabDelimitedFileUtil.NA_INT)) { - result = Math.round(record.getTumorDepth() * record.getTumorVaf()); - } - - return result; - } - - public static Integer getTumorRefCount(MafRecord record) { - Integer result = null; - - if (record.getTumorRefCount() != TabDelimitedFileUtil.NA_INT) { - result = record.getTumorRefCount(); - } else if((record.getTVarCov() != TabDelimitedFileUtil.NA_INT) && - (record.getTTotCov() != TabDelimitedFileUtil.NA_INT)) { - result = record.getTTotCov()-record.getTVarCov(); - } else if((record.getTumorDepth() != TabDelimitedFileUtil.NA_INT) && - (record.getTumorVaf() != TabDelimitedFileUtil.NA_INT)) { - result = record.getTumorDepth() - Math.round(record.getTumorDepth() * record.getTumorVaf()); - } - - return result; - } - - public static Integer getNormalAltCount(MafRecord record) { - Integer result = null; - - if (record.getNormalAltCount() != TabDelimitedFileUtil.NA_INT) { - result = record.getNormalAltCount(); - } else if(record.getNVarCov() != TabDelimitedFileUtil.NA_INT) { - result = record.getNVarCov(); - } else if((record.getNormalDepth() != TabDelimitedFileUtil.NA_INT) && - (record.getNormalVaf() != TabDelimitedFileUtil.NA_INT)) { - result = Math.round(record.getNormalDepth() * record.getNormalVaf()); - } - - return result; - } - - public static Integer getNormalRefCount(MafRecord record) { - Integer result = null; - - if (record.getNormalRefCount() != TabDelimitedFileUtil.NA_INT) { - result = record.getNormalRefCount(); - } else if((record.getNVarCov() != TabDelimitedFileUtil.NA_INT) && - (record.getNTotCov() != TabDelimitedFileUtil.NA_INT)) { - result = record.getNTotCov()-record.getNVarCov(); - } else if((record.getNormalDepth() != TabDelimitedFileUtil.NA_INT) && - (record.getNormalVaf() != TabDelimitedFileUtil.NA_INT)) { - result = record.getNormalDepth() - Math.round(record.getNormalDepth() * record.getNormalVaf()); - } - - return result; - } - - /** - * Generates a new ExtendedMutation instance with default values. - * The mutation instance returned by this method will not have - * any field with a "null" value. - * - * @return a mutation instance initialized by default values - */ - public static ExtendedMutation newMutation() { - Integer defaultInt = TabDelimitedFileUtil.NA_INT; - String defaultStr = TabDelimitedFileUtil.NA_STRING; - //Long defaultLong = TabDelimitedFileUtil.NA_LONG; - Long defaultLong = -1L; - Float defaultFloat = TabDelimitedFileUtil.NA_FLOAT; - CanonicalGene defaultGene = new CanonicalGene("INVALID"); - - ExtendedMutation mutation = new ExtendedMutation(); - - mutation.setGeneticProfileId(defaultInt); - mutation.setSampleId(defaultInt); - mutation.setGene(defaultGene); - mutation.setSequencingCenter(defaultStr); - mutation.setSequencer(defaultStr); - mutation.setProteinChange(defaultStr); - mutation.setMutationType(defaultStr); - mutation.setChr(defaultStr); - mutation.setStartPosition(defaultLong); - mutation.setEndPosition(defaultLong); - mutation.setValidationStatus(defaultStr); - mutation.setMutationStatus(defaultStr); - mutation.setNcbiBuild(defaultStr); - mutation.setStrand(defaultStr); - mutation.setVariantType(defaultStr); - mutation.setAllele(defaultStr, defaultStr, defaultStr); - mutation.setDbSnpRs(defaultStr); - mutation.setDbSnpValStatus(defaultStr); - mutation.setMatchedNormSampleBarcode(defaultStr); - mutation.setMatchNormSeqAllele1(defaultStr); - mutation.setMatchNormSeqAllele2(defaultStr); - mutation.setTumorValidationAllele1(defaultStr); - mutation.setTumorValidationAllele2(defaultStr); - mutation.setMatchNormValidationAllele1(defaultStr); - mutation.setMatchNormValidationAllele2(defaultStr); - mutation.setVerificationStatus(defaultStr); - mutation.setSequencingPhase(defaultStr); - mutation.setSequenceSource(defaultStr); - mutation.setValidationMethod(defaultStr); - mutation.setScore(defaultStr); - mutation.setBamFile(defaultStr); - mutation.setTumorAltCount(defaultInt); - mutation.setTumorRefCount(defaultInt); - mutation.setNormalAltCount(defaultInt); - mutation.setNormalRefCount(defaultInt); - mutation.setCodonChange(defaultStr); - mutation.setRefseqMrnaId(defaultStr); - mutation.setUniprotAccession(defaultStr); - mutation.setProteinPosStart(defaultInt); - mutation.setProteinPosEnd(defaultInt); - mutation.setCanonicalTranscript(true); - - return mutation; - } - - private static Map annotateProteinChange(String proteinChange) { - int start = -1; - int end = -1; - Map annotation = new HashMap<>(); - annotation.put("start", start); - annotation.put("end", end); - - if (proteinChange == null) { - return annotation; - } - - if (proteinChange.startsWith("p.")) { - proteinChange = proteinChange.substring(2); - } - - if (proteinChange.indexOf("[") != -1) { - proteinChange = proteinChange.substring(0, proteinChange.indexOf("[")); - } - - proteinChange = proteinChange.trim(); - - Pattern p = Pattern.compile("^([A-Z\\*]+)([0-9]+)([A-Z\\*\\?]*)$"); - Matcher m = p.matcher(proteinChange); - if (m.matches()) { - String ref = m.group(1); - String var = m.group(3); - Integer refL = ref.length(); - - start = Integer.valueOf(m.group(2)); - - if (ref.equals(var)) { - end = start; - } else if (ref.equals("*")) { - end = start; - } else if (var.equals("*")) { - end = start; - } else if (start == 1) { - end = start; - } else if (var.equals("?")) { - end = start; - } else { - end = start + refL - 1; - } - } else { - p = Pattern.compile("[A-Z]?([0-9]+)(_[A-Z]?([0-9]+))?(delins|ins)([A-Z]+)"); - m = p.matcher(proteinChange); - if (m.matches()) { - start = Integer.valueOf(m.group(1)); - if (m.group(3) != null) { - end = Integer.valueOf(m.group(3)); - } else { - end = start; - } - } else { - p = Pattern.compile("[A-Z]?([0-9]+)(_[A-Z]?([0-9]+))?(_)?splice"); - m = p.matcher(proteinChange); - if (m.matches()) { - start = Integer.valueOf(m.group(1)); - if (m.group(3) != null) { - end = Integer.valueOf(m.group(3)); - } else { - end = start; - } - } else { - p = Pattern.compile("[A-Z]?([0-9]+)_[A-Z]?([0-9]+)(.+)"); - m = p.matcher(proteinChange); - if (m.matches()) { - start = Integer.valueOf(m.group(1)); - end = Integer.valueOf(m.group(2)); - } else { - // Check for frameshift variant - p = Pattern.compile("([A-Z\\*])([0-9]+)[A-Z]?fs.*"); - m = p.matcher(proteinChange); - if (m.matches()) { - start = Integer.valueOf(m.group(2)); - end = start; - } else { - // Check for inframe insertion, deletion or duplication - p = Pattern.compile("([A-Z]+)?([0-9]+)((ins)|(del)|(dup))"); - m = p.matcher(proteinChange); - if (m.matches()) { - start = Integer.valueOf(m.group(2)); - end = start; - } - } - } - } - } - } - - annotation.put("start", start); - annotation.put("end", end); - return annotation; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/FileUploadFilter.java b/core/src/main/java/org/mskcc/cbio/portal/util/FileUploadFilter.java deleted file mode 100644 index 9aa54c5d2ad..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/FileUploadFilter.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.IOException; -import javax.servlet.*; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletRequestWrapper; - -/** -* Filter that wraps an underlying file upload request. -* -*

    This filter should be configured only for those operations that use a -* file upload request. -*/ -public final class FileUploadFilter implements Filter { - - public void init(FilterConfig aConfig) throws ServletException { - //do nothing - } - - public void destroy() { - //do nothing - } - - public void doFilter( - ServletRequest aRequest, ServletResponse aResponse, FilterChain aChain - ) throws IOException, ServletException { - HttpServletRequest request = (HttpServletRequest) aRequest; - if ( isFileUploadRequest(request) ) { - FileUploadRequestWrapper wrapper = new FileUploadRequestWrapper(request); - aChain.doFilter(wrapper, aResponse); - } - else { - aChain.doFilter(aRequest, aResponse); - } - } - - private boolean isFileUploadRequest(HttpServletRequest aRequest){ - return - aRequest.getMethod().equalsIgnoreCase("POST") && - aRequest.getContentType().startsWith("multipart/form-data") - ; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/FileUploadRequestWrapper.java b/core/src/main/java/org/mskcc/cbio/portal/util/FileUploadRequestWrapper.java deleted file mode 100644 index 839f6057e8c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/FileUploadRequestWrapper.java +++ /dev/null @@ -1,190 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.IOException; -import java.util.*; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletRequestWrapper; -import org.apache.commons.fileupload.FileItem; -import org.apache.commons.fileupload.FileUploadException; -import org.apache.commons.fileupload.disk.DiskFileItemFactory; -import org.apache.commons.fileupload.servlet.ServletFileUpload; - -/** -* Wrapper for a file upload request. -* -*

    This class uses the Apache Commons -* File Upload tool. -* The generous Apache License will very likely allow you to use it in your -* applications as well. -*/ -public class FileUploadRequestWrapper extends HttpServletRequestWrapper { - - /** Constructor. */ - public FileUploadRequestWrapper(HttpServletRequest aRequest) throws IOException { - super(aRequest); - ServletFileUpload upload = new ServletFileUpload( new DiskFileItemFactory()); - try { - List fileItems = upload.parseRequest(aRequest); - convertToMaps(fileItems); - } - catch(FileUploadException ex){ - throw new IOException("Cannot parse underlying request: " + ex.toString()); - } - } - - /** - * Return all request parameter names, for both regular controls and file upload - * controls. - */ - @Override public Enumeration getParameterNames() { - Set allNames = new LinkedHashSet(); - allNames.addAll(fRegularParams.keySet()); - allNames.addAll(fFileParams.keySet()); - return Collections.enumeration(allNames); - } - - /** - * Return the parameter value. Applies only to regular parameters, not to - * file upload parameters. - * - *

    If the parameter is not present in the underlying request, - * then null is returned. - *

    If the parameter is present, but has no associated value, - * then an empty string is returned. - *

    If the parameter is multivalued, return the first value that - * appears in the request. - */ - @Override public String getParameter(String aName) { - String result = null; - List values = fRegularParams.get(aName); - if( values == null ){ - //you might try the wrappee, to see if it has a value - } - else if ( values.isEmpty() ) { - //param name known, but no values present - result = ""; - } - else { - //return first value in list - result = values.get(FIRST_VALUE); - } - return result; - } - - /** - * Return the parameter values. Applies only to regular parameters, - * not to file upload parameters. - */ - @Override public String[] getParameterValues(String aName) { - String[] result = null; - List values = fRegularParams.get(aName); - if( values != null ) { - result = values.toArray(new String[values.size()]); - } - return result; - } - - /** - * Return a {@code Map} for all regular parameters. - * Does not return any file upload paramters at all. - */ - @Override public Map getParameterMap() { - return Collections.unmodifiableMap(fRegularParams); - } - - /** - * Return a {@code List}, in the same order as they appear - * in the underlying request. - */ - public List getFileItems(){ - return new ArrayList(fFileParams.values()); - } - - /** - * Return the {@link FileItem} of the given name. - *

    If the name is unknown, then return null. - */ - public FileItem getFileItem(String aFieldName){ - return fFileParams.get(aFieldName); - } - - - // PRIVATE // - - /** Store regular params only. May be multivalued (hence the List). */ - private final Map> fRegularParams = - new LinkedHashMap>() - ; - /** Store file params only. */ - private final Map fFileParams = - new LinkedHashMap() - ; - private static final int FIRST_VALUE = 0; - - private void convertToMaps(List aFileItems){ - for(FileItem item: aFileItems) { - if ( isFileUploadField(item) ) { - fFileParams.put(item.getFieldName(), item); - } - else { - if( alreadyHasValue(item) ){ - addMultivaluedItem(item); - } - else { - addSingleValueItem(item); - } - } - } - } - - private boolean isFileUploadField(FileItem aFileItem){ - return ! aFileItem.isFormField(); - } - - private boolean alreadyHasValue(FileItem aItem){ - return fRegularParams.get(aItem.getFieldName()) != null; - } - - private void addSingleValueItem(FileItem aItem){ - List list = new ArrayList(); - list.add(aItem.getString()); - fRegularParams.put(aItem.getFieldName(), list); - } - - private void addMultivaluedItem(FileItem aItem){ - List values = fRegularParams.get(aItem.getFieldName()); - values.add(aItem.getString()); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/FileUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/FileUtil.java deleted file mode 100644 index 744ca56545a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/FileUtil.java +++ /dev/null @@ -1,108 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileReader; -import java.io.IOException; - -/** - * Misc File Utilities. - * - * @author Ethan Cerami. - */ -public class FileUtil { - /** - * BioPAX File Type. - */ - public static final int BIOPAX = 0; - - /** - * PSI_MI File Type. - */ - public static final int PSI_MI = 1; - - /** - * External DBs File Type. - */ - public static final int EXTERNAL_DBS = 2; - - /** - * Identifiers File Type. - */ - public static final int IDENTIFIERS = 3; - - /** - * Unknown File Type. - */ - public static final int UNKNOWN = 4; - - /** - * Gets Number of Lines in Specified File. - * - * @param file File. - * @return number of lines. - * @throws java.io.IOException Error Reading File. - */ - public static int getNumLines(File file) throws IOException { - int numLines = 0; - FileReader reader = new FileReader(file); - BufferedReader buffered = new BufferedReader(reader); - String line = buffered.readLine(); - while (line != null) { - if (!line.startsWith("#") && line.trim().length() > 0) { - numLines++; - } - line = buffered.readLine(); - } - reader.close(); - return numLines; - } - - /** - * Gets Next Line of Input. Filters out Empty Lines and Comments. - * - * @param buf BufferedReader Object. - * @return next line of input. - * @throws IOException Error reading input stream. - */ - public static String getNextLine(BufferedReader buf) throws IOException { - String line = buf.readLine(); - while (line != null && (line.trim().length() == 0 - || line.trim().startsWith("#"))) { - line = buf.readLine(); - } - return line; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/GeneComparator.java b/core/src/main/java/org/mskcc/cbio/portal/util/GeneComparator.java deleted file mode 100644 index f26d0cef438..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/GeneComparator.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -// imports -import java.util.Comparator; -import org.mskcc.cbio.portal.model.Gene; - -/** - * Compares two genes for equivalency (ref and standard symbol). - */ -public class GeneComparator implements Comparator { - - public int compare(Object object0, Object object1) { - if (object0 != null && object1 != null) { - Gene gene0 = (Gene) object0; - Gene gene1 = (Gene) object1; - String name0 = gene0.getStandardSymbol(); - String name1 = gene1.getStandardSymbol(); - if (name0 != null && name1 != null) { - return name0.compareTo(name1); - } - } - return -1; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/GenePanelUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/GenePanelUtil.java deleted file mode 100644 index 046c20083b0..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/GenePanelUtil.java +++ /dev/null @@ -1,145 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; - -import java.util.*; -import java.util.stream.Collectors; - -/** - * Utilities for operations on sets and importing/updating gene panels. - * - * @author jtquach1 - */ -public class GenePanelUtil { - - /** - * Extracts a property value from a given propertyName in properties. - * extractGenes is used instead for the propertyName "gene_list". - * - * @param propertyName May be "stable_id" or "description". - * @param properties - * @param noSpaceAllowed noSpaceAllowed=false may be used for propertyName="description". - * @return A String representing the propertyValue following the propertyName. - * @throws IllegalArgumentException - */ - public static String extractPropertyValue(String propertyName, Properties properties, boolean noSpaceAllowed) throws IllegalArgumentException { - String propertyValue = properties.getProperty(propertyName); - - if (propertyValue == null) { - throw new NullPointerException(propertyName + " does not exist in properties."); - } - - String propertyValueTrimmed = propertyValue.trim(); - if (propertyValueTrimmed.isEmpty()) { - throw new IllegalArgumentException(propertyName + " is not specified."); - } - - if (noSpaceAllowed && propertyValueTrimmed.contains(" ")) { - throw new IllegalArgumentException(propertyName + " cannot contain spaces: " + propertyValueTrimmed); - } - - return propertyValueTrimmed; - } - - /** - * Extracts genes from the tab-delimited list after the "gene_list" parameter. - * If updating, set allowEmptyGenePanel=true. - * - * @param properties - * @param allowEmptyGenePanel - * @return If a gene cannot be found, don't return any of the genes. - */ - public static Set extractGenes(Properties properties, Boolean allowEmptyGenePanel) { - String propertyValue = properties.getProperty("gene_list").trim(); - if (propertyValue.length() == 0) { - if (allowEmptyGenePanel) { - return new HashSet<>(); - } - throw new IllegalArgumentException("gene_list is not specified."); - } - - String[] genes = propertyValue.split("\t"); - Set canonicalGenes = new HashSet<>(); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - - //Check if genes are duplicated and report them - for (int i = 0; i < genes.length; i++) { - for (int j = i + 1 ; j < genes.length; j++) { - if (genes[i].equals(genes[j])) { - ProgressMonitor.logWarning("The following gene is duplicated: "+genes[i]); - } - } - } - - for (String panelGene : genes) { - try { - long geneId = Long.parseLong(panelGene); - CanonicalGene canonicalGene = daoGeneOptimized.getGene(geneId); - - if (canonicalGene != null) { - canonicalGenes.add(canonicalGene); - } else { - ProgressMonitor.logWarning("Could not find gene in the database: " + geneId); - } - } catch (NumberFormatException e) { - List canonicalGenesList = daoGeneOptimized.getGene(panelGene, true); - - if (canonicalGenesList != null && !canonicalGenesList.isEmpty()) { - // we do not want multiple genes added to the gene panel object - // for a single gene symbol found in the data file - canonicalGenes.add(canonicalGenesList.get(0)); - } else { - ProgressMonitor.logWarning("Could not find gene in the database: " + panelGene); - } - } - } - - return (canonicalGenes.size() == genes.length) ? canonicalGenes : null; - } - - /** - * Gets a Pair representing the gene sets to add and to remove from a gene panel - * in the database, since MySQL throws an error when trying to add duplicate genes. - * add represents genes from incoming that original does not have. - * remove represents genes from original that incoming does not have. - * - * @param incoming New genes to replace original - * @param original Old genes currently in the database - * @return Pair represents the unique genes from the incoming and original gene panels. - */ - public static Pair getAddRemove(Set incoming, Set original) { - Set add = incoming.stream() - .filter(e -> !original.contains(e)) - .collect(Collectors.toSet()); - Set remove = original.stream() - .filter(e -> !incoming.contains(e)) - .collect(Collectors.toSet()); - - return new Pair(add, remove); - } - - public static final class Pair { - public final Set add, remove; - - public Pair(Set add, Set remove) { - this.add = add; - this.remove = remove; - } - - @Override - public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; - Pair pair = (Pair) o; - return Objects.equals(add, pair.add) && - Objects.equals(remove, pair.remove); - } - - @Override - public int hashCode() { - return Objects.hash(add, remove); - } - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/GenePrefsParser.java b/core/src/main/java/org/mskcc/cbio/portal/util/GenePrefsParser.java deleted file mode 100644 index 863445d8795..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/GenePrefsParser.java +++ /dev/null @@ -1,125 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.model.GeneCounterPrefs; - -import java.util.HashMap; - -//TODO: I think this can be deleted, as it is replaced by OncoSpec language parser - -/** - * parse a list of genes with 'microencodings' as submitted in the Portal Web form. - * A microencoding has the form: - * geneSymbol:CE - * where :CE are optional and C and E, denoting copy number and Expression, respectively, are members of { -, +, ! }, meaning, - * respectively, set down, set up, and 'ignore'. - * - * @author Ethan Cerami - */ -public class GenePrefsParser { - - public static HashMap getGenePrefs (String userGeneListStr) { - HashMap geneCounterPrefMap = new HashMap(); - - String genes[] = userGeneListStr.trim().split("\\s+"); - for (String gene : genes) { - geneCounterPrefMap.put( parseGeneSymbol(gene), parseGeneWithMicroEncoding( gene ) ); - } - return geneCounterPrefMap; - } - - public static String parseGeneSymbol( String geneWithMicroEncoding ){ - - validateGeneWithMicroEncoding( geneWithMicroEncoding ); - if (geneWithMicroEncoding.contains(":")) { - String parts[] = geneWithMicroEncoding.split(":"); - return parts[0]; - } else { - return geneWithMicroEncoding; - } - } - - private static void validateGeneWithMicroEncoding( String geneWithMicroEncoding ){ - - if (geneWithMicroEncoding.contains(":")) { - String parts[] = geneWithMicroEncoding.split(":"); - if (parts.length != 2) { - throw new IllegalArgumentException ("Illegal String: " + geneWithMicroEncoding); - } - - String prefsString = parts[1]; - if (prefsString.length() != 2) { - throw new IllegalArgumentException ("Illegal String: " + geneWithMicroEncoding); - } - } - } - - public static GeneCounterPrefs parseGeneWithMicroEncoding( String gene ){ - GeneCounterPrefs prefs = new GeneCounterPrefs(); - prefs.setIgnoreCna(false); - prefs.setIgnoreMrna(false); - - validateGeneWithMicroEncoding( gene ); - - if (gene.contains(":")) { - String parts[] = gene.split(":"); - - String prefsString = parts[1]; - - char cnaPref = prefsString.charAt(0); - if (cnaPref == '-') { - prefs.setCnaDown(true); - } - if (cnaPref == '+') { - prefs.setCnaUp(true); - } - if (cnaPref == '!') { - prefs.setIgnoreCna(true); - } - char mrnaPref = prefsString.charAt(1); - if (mrnaPref == '-') { - prefs.setMrnaDown(true); - } - if (mrnaPref == '+') { - prefs.setMrnaUp(true); - } - if (mrnaPref == '!') { - prefs.setIgnoreMrna(true); - } - - } - return prefs; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/GeneSetReader.java b/core/src/main/java/org/mskcc/cbio/portal/util/GeneSetReader.java deleted file mode 100644 index ce5ed452785..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/GeneSetReader.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.model.SetOfGenes; - -import java.io.InputStreamReader; -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.util.ArrayList; - -/** - * Reads in Gene Sets from an InputStream. - * - * @author Ethan Cerami. - */ -public class GeneSetReader { - - /** - * Constructor. - * - * @param in InputStream Object. - * @return ArrayList of GeneSet Objects. - * @throws IOException IO Error. - */ - public static ArrayList readGeneSets (InputStream in) throws IOException { - ArrayList geneSetList = new ArrayList(); - - // User-Defined Gene Set Goes First - SetOfGenes g0 = new SetOfGenes(); - g0.setName("User-defined List"); - g0.setGeneList(""); - geneSetList.add(g0); - - BufferedReader bufReader = new BufferedReader(new InputStreamReader(in)); - String line = bufReader.readLine(); - while (line != null) { - line = line.trim(); - String parts[] = line.split("="); - g0 = new SetOfGenes(); - String genes[] = parts[1].split("\\s"); - - // Store number of genes in the gene name - g0.setName(parts[0] + " (" + genes.length + " genes)"); - g0.setGeneList(parts[1]); - geneSetList.add(g0); - line = bufReader.readLine(); - } - return geneSetList; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/GeneSetUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/GeneSetUtil.java deleted file mode 100644 index 59ed1d2b204..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/GeneSetUtil.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.model.SetOfGenes; - -import java.io.IOException; -import java.io.InputStream; -import java.util.ArrayList; - -/** - * Singleton to store arbitrary gene sets, to be displayed to the user. - *

    - * This will (eventually) be replaced with live gene sets from Broad MSigDB and Pathway Commons. - * - * @author Ethan Cerami - */ -public class GeneSetUtil { - private ArrayList geneSetList = new ArrayList(); - private static GeneSetUtil geneSetUtil; - - /** - * Gets Global Singleton. - * @return GeneSetUtil. - * @throws IOException IO Error. - */ - public static GeneSetUtil getInstance() throws IOException { - if (geneSetUtil == null) { - geneSetUtil = new GeneSetUtil(); - } - return geneSetUtil; - } - - /** - * Private Constructor. - * @throws IOException IO Error. - */ - private GeneSetUtil() throws IOException { - InputStream in = this.getClass().getResourceAsStream("/gene_sets.txt"); - geneSetList = GeneSetReader.readGeneSets(in); - in.close(); - } - - /** - * Gets all Gene Sets. - * - * @return ArrayList of GeneSet Objects. - */ - public ArrayList getGeneSetList() { - return geneSetList; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/GeneticProfileReader.java b/core/src/main/java/org/mskcc/cbio/portal/util/GeneticProfileReader.java deleted file mode 100644 index af686a7234e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/GeneticProfileReader.java +++ /dev/null @@ -1,362 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.File; -import java.io.FileInputStream; -import java.io.IOException; -import java.util.Arrays; -import java.util.HashSet; -import java.util.Properties; -import java.util.Set; - -import java.util.stream.Collectors; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.GeneticProfile; -import org.mskcc.cbio.portal.model.GeneticProfileLink; -import org.mskcc.cbio.portal.scripts.TrimmedProperties; - -/** - * Prepare a GeneticProfile for having its data loaded. - * - * @author Ethan Cerami - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -public class GeneticProfileReader { - - /** - * Load a GeneticProfile. Get a stableID from a description file. If the same - * GeneticProfile already exists in the dbms use it, otherwise create a new - * GeneticProfile dbms record, defining all parameters from the file. - * - * @author Ethan Cerami - * @author Arthur Goldberg goldberg@cbio.mskcc.org - * - * @param file - * A handle to a description of the genetic profile, i.e., a - * 'description' or 'meta' file. - * @return an instantiated GeneticProfile record - * @throws IOException - * if the description file cannot be read - * @throws DaoException - */ - public static GeneticProfile loadGeneticProfile(File file) throws IOException, DaoException { - GeneticProfile geneticProfile = loadGeneticProfileFromMeta(file); - GeneticProfile existingGeneticProfile = DaoGeneticProfile.getGeneticProfileByStableId(geneticProfile.getStableId()); - if (existingGeneticProfile != null) { - if (!existingGeneticProfile.getDatatype().equals("MAF")) { - // the dbms already contains a GeneticProfile with the file's stable_id. This scenario is not supported - // anymore, so throw error telling user to remove existing profile first: - throw new RuntimeException("Error: genetic_profile record found with same Stable ID as the one used in your data: " - + existingGeneticProfile.getStableId() + ". Remove the existing genetic_profile record first."); - } else { - // For mutation data only we can have multiple files with the same genetic_profile. - // There is a constraint in the mutation database table to prevent duplicated data - // If this constraint is hit (mistakenly importing the same maf twice) MySqlBulkLoader will throw an exception - // - // make an object combining the pre-existing profile with the file-specific properties of the current file - GeneticProfile gp = new GeneticProfile(existingGeneticProfile); - gp.setTargetLine(gp.getTargetLine()); - gp.setOtherMetadataFields(gp.getAllOtherMetadataFields()); - return gp; - } - } - - // For GSVA profiles, we want to create a geneticProfileLink from source_stable_id for: - // - expression zscores -> expression - // - gsva scores -> expression - // - gsva pvalues -> gsva scores - // Currently we only create geneticProfileLink for expression zscores when it's available. - // This geneticProfileLink is required for the oncoprint in a GSVA study. In the future it might - // be useful to make this a requirement for every expression zscore file. - GeneticProfileLink geneticProfileLink = null; - if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.GENESET_SCORE || - (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.MRNA_EXPRESSION && - geneticProfile.getDatatype().equals("Z-SCORE") && - geneticProfile.getAllOtherMetadataFields().getProperty("source_stable_id") != null)) { - geneticProfileLink = createGeneticProfileLink(geneticProfile); - } - - // For GSVA profiles, we want to check that the version in the meta file is - // the same as the version of the gene sets in the database (genesets_info table). - if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.GENESET_SCORE) { - validateGenesetProfile(geneticProfile, file); - } - - if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.GENERIC_ASSAY) { - validateGenericAssay(geneticProfile, file); - geneticProfile.setGenericAssayType(geneticProfile.getOtherMetaDataField("generic_assay_type")); - // if genericAssayType is TREATMENT_RESPONSE, validate if pivotThreshold and sortOrder exist - if (geneticProfile.getGenericAssayType().equals("TREATMENT_RESPONSE")) { - validateTreatmentResponse(geneticProfile, file); - } - // add pivotThreshold and sortOrder if exist - if (geneticProfile.getOtherMetaDataField("pivot_threshold_value") != null) { - geneticProfile.setPivotThreshold(Float.parseFloat(geneticProfile.getOtherMetaDataField("pivot_threshold_value"))); - } - if (geneticProfile.getOtherMetaDataField("value_sort_order") != null) { - geneticProfile.setSortOrder(geneticProfile.getOtherMetaDataField("value_sort_order")); - } - } - - // add new genetic profile - DaoGeneticProfile.addGeneticProfile(geneticProfile); - - // add genetic profile link if set - if (geneticProfileLink != null) { - // Set `REFERRING_GENETIC_PROFILE_ID` - int geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId(geneticProfile.getStableId()).getGeneticProfileId(); - geneticProfileLink.setReferringGeneticProfileId(geneticProfileId); - DaoGeneticProfileLink.addGeneticProfileLink(geneticProfileLink); - } - - // Get ID - GeneticProfile gp = DaoGeneticProfile.getGeneticProfileByStableId(geneticProfile.getStableId()); - geneticProfile.setGeneticProfileId(gp.getGeneticProfileId()); - return geneticProfile; - } - - private static GeneticProfileLink createGeneticProfileLink(GeneticProfile geneticProfile) { - GeneticProfileLink geneticProfileLink = new GeneticProfileLink(); - - // Set `REFERRED_GENETIC_PROFILE_ID` - String referredGeneticProfileStableId = parseStableId(geneticProfile.getAllOtherMetadataFields(), "source_stable_id"); - if (referredGeneticProfileStableId == null) { - throw new RuntimeException("'source_stable_id' is required in meta file for " + geneticProfile.getStableId()); - } - GeneticProfile referredGeneticProfile = DaoGeneticProfile.getGeneticProfileByStableId(referredGeneticProfileStableId); - geneticProfileLink.setReferredGeneticProfileId(referredGeneticProfile.getGeneticProfileId()); - - // Decide reference type - // In the future with other types of genetic profile links, this should be configurable in the meta file. - String referenceType; - if (Arrays.asList("P-VALUE", "Z-SCORE").contains(geneticProfile.getDatatype())) { - referenceType = "STATISTIC"; - } else if (geneticProfile.getDatatype().equals("GSVA-SCORE")) { - referenceType = "AGGREGATION"; - } else { - // not expected but might be useful for future genetic profile links - throw new RuntimeException("Unknown datatype '" + geneticProfile.getDatatype() + "' in meta file for " + geneticProfile.getStableId()); - } - // Set `REFERENCE_TYPE` - geneticProfileLink.setReferenceType(referenceType); - - return geneticProfileLink; - } - - private static void validateGenesetProfile(GeneticProfile geneticProfile, File file) throws DaoException { - String genesetVersion = DaoInfo.getGenesetVersion(); - - // TODO Auto-generated method stub - - // Check if version is present in database - if (genesetVersion == null) { - throw new RuntimeException("Attempted to import GENESET_SCORE data, but all gene set tables are empty.\n" - + "Please load gene sets with ImportGenesetData.pl first. See:\n" - + "https://github.com/cBioPortal/cbioportal/blob/master/docs/Import-Gene-Sets.md\n"); - - // Check if version is present in meta file - } else if (geneticProfile.getOtherMetaDataField("geneset_def_version") == null) { - throw new RuntimeException("Missing geneset_def_version property in '" + file.getPath() + "'. This version must be " - + "the same as the gene set version loaded with ImportGenesetData.pl ."); - - // Check if version is same as database version - } else if (!geneticProfile.getOtherMetaDataField("geneset_def_version").equals(genesetVersion)) { - throw new RuntimeException("'geneset_def_version' property (" + geneticProfile.getOtherMetaDataField("geneset_def_version") + - ") in '" + file.getPath() + "' differs from database version (" + genesetVersion + ")."); - } - - // Prevent p-value profile to show up as selectable genomic profile - if (geneticProfile.getDatatype().equals("P-VALUE")) { - geneticProfile.setShowProfileInAnalysisTab(false); - } - } - - /** - * Check whether required columns for assay response data were defined in the meta file - */ - private static void validateTreatmentResponse(GeneticProfile geneticProfile, File file) { - if (geneticProfile.getOtherMetaDataField("pivot_threshold_value") == null) - throw new RuntimeException("Missing `pivot_threshold_value` property in '" + file.getPath() + "' meta data file."); - - if (geneticProfile.getOtherMetaDataField("value_sort_order") == null) - throw new RuntimeException("Missing `value_sort_order` property in '" + file.getPath() + "' meta data file."); - } - - /** - * Check whether required columns for assay response data were defined in the meta file - */ - private static void validateGenericAssay(GeneticProfile geneticProfile, File file) { - if (geneticProfile.getOtherMetaDataField("generic_assay_type") == null) - throw new RuntimeException("Missing `generic_assay_type` property in '" + file.getPath() + "' meta data file."); - } - - /** - * Load a GeneticProfile from a description file. - * - * @author Ethan Cerami - * @author Arthur Goldberg goldberg@cbio.mskcc.org - * - * @param file - * A handle to a description of the genetic profile, i.e., a - * 'description' or 'meta' file. - * @return an instantiated GeneticProfile - * @throws IOException - * if the description file cannot be read - * @throws DaoException - */ - public static GeneticProfile loadGeneticProfileFromMeta(File file) throws IOException, DaoException { - Properties properties = new TrimmedProperties(); - properties.load(new FileInputStream(file)); - // when loading cancer studies and their profiles from separate files, - // use the cancer_study_identifier as a unique id for each study. - // this was called the "cancer_type_id" previously. - // eventually, it won't be needed when studies are loaded by a connected client that - // knows its study_id in its state - String cancerStudyIdentifier = properties.getProperty("cancer_study_identifier"); - if (cancerStudyIdentifier == null) { - throw new IllegalArgumentException("cancer_study_identifier is not specified."); - } - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyIdentifier); - if (cancerStudy == null) { - throw new IllegalArgumentException("cancer study identified by cancer_study_identifier " + cancerStudyIdentifier + " not found in dbms."); - } - String stableId = parseStableId(properties, "stable_id"); - String profileName = properties.getProperty("profile_name"); - String profileDescription = properties.getProperty("profile_description"); - String geneticAlterationTypeString = properties.getProperty("genetic_alteration_type"); - String datatype = properties.getProperty("datatype"); - if (profileName == null) { - profileName = geneticAlterationTypeString; - } - if (profileDescription == null) { - profileDescription = geneticAlterationTypeString; - } - if (geneticAlterationTypeString == null) { - throw new IllegalArgumentException("genetic_alteration_type is not specified."); - } else if (datatype == null) { - datatype = ""; - } - boolean showProfileInAnalysisTab = true; - String showProfileInAnalysisTabStr = properties.getProperty("show_profile_in_analysis_tab"); - if (showProfileInAnalysisTabStr != null && showProfileInAnalysisTabStr.equalsIgnoreCase("FALSE")) { - showProfileInAnalysisTab = false; - } - String patientLevelStr = properties.getProperty("patient_level"); - boolean patientLevel = patientLevelStr != null && patientLevelStr.equalsIgnoreCase("TRUE"); - - profileDescription = profileDescription.replaceAll("\t", " "); - GeneticAlterationType alterationType = GeneticAlterationType.valueOf(geneticAlterationTypeString); - GeneticProfile geneticProfile = new GeneticProfile(); - geneticProfile.setCancerStudyId(cancerStudy.getInternalId()); - geneticProfile.setStableId(stableId); - geneticProfile.setProfileName(profileName); - geneticProfile.setProfileDescription(profileDescription); - geneticProfile.setGeneticAlterationType(alterationType); - geneticProfile.setDatatype(datatype); - geneticProfile.setShowProfileInAnalysisTab(showProfileInAnalysisTab); - geneticProfile.setTargetLine(properties.getProperty("target_line")); - geneticProfile.setOtherMetadataFields(properties); - geneticProfile.setPatientLevel(patientLevel); - return geneticProfile; - } - - private static String parseStableId(Properties properties, String stableIdPropName) { - String stableId = properties.getProperty(stableIdPropName); - if (stableId == null) { - throw new IllegalArgumentException("stable_id is not specified."); - } - String cancerStudyIdentifier = properties.getProperty("cancer_study_identifier"); - //automatically add the cancerStudyIdentifier in front of stableId (since the rest of the - //code still relies on this - TODO: this can be removed once the rest of the backend and frontend code - //stop assuming cancerStudyIdentifier to be part of stableId): - if (!stableId.startsWith(cancerStudyIdentifier + "_")) { - stableId = cancerStudyIdentifier + "_" + stableId; - } - return stableId; - } - - public static String loadGenePanelInformation(File file) throws Exception { - Properties properties = new TrimmedProperties(); - properties.load(new FileInputStream(file)); - return properties.getProperty("gene_panel"); - } - - /** - * Gets the information of "variant_classification_filter" in the file, if it exists. Otherwise, it - * returns null. "variant_classification_filter" can be used in the mutation meta file to specify - * which types of mutations want to be filtered. - * - * @param file - * @return a string with the types of mutations that should be filtered, comma-separated. - * @throws Exception - */ - public static Set getVariantClassificationFilter(File file) throws Exception { - Properties properties = new TrimmedProperties(); - properties.load(new FileInputStream(file)); - String variantClassificationFilter = properties.getProperty("variant_classification_filter"); - if (variantClassificationFilter != null) { - Set filteredMutations = new HashSet(); - for (String mutation : (Arrays.asList(variantClassificationFilter.split(",")))) { - mutation = mutation.trim(); - filteredMutations.add(mutation); - } - return filteredMutations; - } else { - return null; - } - } - - /** - * Returns a set of namespaces if present in the maf metafile. - * The defined namespaces will be used to construct a JSON doc - * containing namespace => { key,value pairs } to import into - * the `mutation` database as a sample-level variant annotation. - * @param file - * @return - * @throws Exception - */ - public static Set getNamespaces(File file) throws Exception { - Properties properties = new TrimmedProperties(); - properties.load(new FileInputStream(file)); - String value = properties.getProperty("namespaces"); - return value != null ? - Arrays.stream(value.split(",")) - .map(String::trim) - .collect(Collectors.toSet()) - : - null; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/GeneticProfileUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/GeneticProfileUtil.java deleted file mode 100644 index 16ab5098eba..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/GeneticProfileUtil.java +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.dao.DaoGenePanel; - -import java.util.*; - -/** - * Genetic Profile Util Class. - * - */ -public class GeneticProfileUtil { - - /** - * Gets the GeneticProfile with the Specified GeneticProfile ID. - * @param profileId GeneticProfile ID. - * @param profileList List of Genetic Profiles. - * @return GeneticProfile or null. - */ - public static GeneticProfile getProfile(String profileId, - ArrayList profileList) { - for (GeneticProfile profile : profileList) { - if (profile.getStableId().equals(profileId)) { - return profile; - } - } - return null; - } - - /** - * Returns true if Any of the Profiles Selected by the User Refer to mRNA Expression - * outlier profiles. - * - * @param geneticProfileIdSet Set of Chosen Profiles IDs. - * @param profileList List of Genetic Profiles. - * @return true or false. - */ - public static boolean outlierExpressionSelected(HashSet geneticProfileIdSet, - ArrayList profileList) { - Iterator geneticProfileIdIterator = geneticProfileIdSet.iterator(); - while (geneticProfileIdIterator.hasNext()) { - String geneticProfileId = geneticProfileIdIterator.next(); - GeneticProfile geneticProfile = getProfile (geneticProfileId, profileList); - if (geneticProfile != null && geneticProfile.getGeneticAlterationType() == GeneticAlterationType.MRNA_EXPRESSION) { - String profileName = geneticProfile.getProfileName(); - if (profileName != null) { - if (profileName.toLowerCase().contains("outlier")) { - return true; - } - } - } - } - return false; - } - - public static int getGenePanelId(String panelId) { - GenePanel genePanel = DaoGenePanel.getGenePanelByStableId(panelId); - return genePanel.getInternalId(); - } - - public static boolean geneInPanel(CanonicalGene gene, GenePanel genePanel) { - for (CanonicalGene panelGene : genePanel.getGenes()) { - if (panelGene.getEntrezGeneId() == gene.getEntrezGeneId()) { - return true; - } - } - return false; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/GisticReader.java b/core/src/main/java/org/mskcc/cbio/portal/util/GisticReader.java deleted file mode 100644 index fe0602aa0f4..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/GisticReader.java +++ /dev/null @@ -1,219 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Gistic; -import org.mskcc.cbio.portal.scripts.ValidationUtils; - -import java.io.*; -import java.util.ArrayList; - -/** - * Utility for importing Gistic data from a file - */ -public class GisticReader { - - - public ArrayList parse(File gistic_f, int cancerStudyId) throws IOException, DaoException { - - ArrayList gistics = new ArrayList(); - - FileReader reader = new FileReader(gistic_f); - BufferedReader buf = new BufferedReader(reader); - try { - String line = buf.readLine(); - - // -- parse field names -- - // todo: would it be better to use ? - - int chromosomeField = -1; - int peakStartField = -1; - int peakEndField = -1; - int genesField = -1; - int qvalField = -1; - int ampField = -1; - int cytobandField = -1; - - String[] fields = line.split("\t"); - int num_fields = fields.length; - - for (int i = 0 ; i < num_fields; i+=1) { - if (fields[i].equals("chromosome")) { - chromosomeField = i; - } - - else if (fields[i].equals("peak_start")) { - peakStartField = i; - } - - else if (fields[i].equals("peak_end")) { - peakEndField = i; - } - - else if (fields[i].equals("genes_in_region")) { - genesField = i; - } - - else if (fields[i].equals("q_value")) { - qvalField = i; - } - - else if (fields[i].equals("cytoband")) { - cytobandField = i; - } - - else if (fields[i].equals("amp")) { - ampField = i; - } - } - - if (chromosomeField == -1) { - throw new IllegalStateException("The field: chromosome, is missing"); - } - - if (peakStartField == -1) { - throw new IllegalStateException("The field: peak start, is missing"); - } - - if (peakEndField == -1) { - throw new IllegalStateException("The field: peak end, is missing"); - } - - if (genesField == -1) { - throw new IllegalStateException("The field: genes, is missing"); - } - - if (qvalField == -1) { - throw new IllegalStateException("The field: q_value, is missing"); - } - - if (cytobandField == -1) { - throw new IllegalStateException("The field: cytoband, is missing"); - } - - if (ampField == -1) { - throw new IllegalStateException("The field: amp, is missing"); - } - - line = buf.readLine(); - while (line != null) { - Gistic gistic; - try { - gistic = this.parseLine(line, cancerStudyId, chromosomeField, peakStartField, peakEndField, genesField, qvalField, ampField, cytobandField); - if (gistic != null) { - gistics.add(gistic); - } - } catch(Exception e) { - e.printStackTrace(); - throw e; - } - line = buf.readLine(); - } - - buf.close(); - reader.close(); - return gistics; - } - finally { - buf.close(); - } - } - - private Gistic parseLine(String line, int cancerStudyId, int chromosomeField, int peakStartField, int peakEndField, int genesField, int qvalField, int ampField, int cytobandField) { - String[] fields = line.split("\t"); - - Gistic gistic = new Gistic(); - gistic.setCancerStudyId(cancerStudyId); - - int chromosomeNumber = ValidationUtils.validateChromosome(fields[chromosomeField]); - gistic.setChromosome(chromosomeNumber); - - gistic.setPeakStart(Integer.parseInt(fields[peakStartField])); - gistic.setPeakEnd(Integer.parseInt(fields[peakEndField])); - - int amp = Integer.parseInt(fields[ampField]); - gistic.setAmp(amp == 1); - - gistic.setCytoband(fields[cytobandField]); - gistic.setqValue((Float.parseFloat(fields[qvalField]))); - - // -- parse genes -- - - // parse out '[' and ']' chars and ** Do these brackets have meaning? ** - String[] _genes = fields[genesField].replace("[","") - .replace("]", "") - .split(","); - - // map _genes to list of CanonicalGenes - ArrayList genes = new ArrayList(); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - ArrayList alreadyProcessedGenes = new ArrayList(); - for (String gene : _genes) { - - gene = gene.split("\\|")[0]; - - CanonicalGene canonicalGene = daoGene.getNonAmbiguousGene(gene); - if (alreadyProcessedGenes.contains(canonicalGene)) { - String geneSymbolMessage = ""; - if (!gene.equalsIgnoreCase(canonicalGene.getHugoGeneSymbolAllCaps())) - geneSymbolMessage = "(given as alias in your file as: " + gene + ") "; - ProgressMonitor.logWarning("Gene " + canonicalGene.getHugoGeneSymbolAllCaps() + " (" + canonicalGene.getEntrezGeneId() + ")" + geneSymbolMessage + " found to be duplicated in your file. Skipping this duplicated entry of the gene."); - continue; - } - if (canonicalGene != null) { - if (canonicalGene.isMicroRNA()) { - ProgressMonitor.logWarning("ignoring miRNA: " + canonicalGene.getHugoGeneSymbolAllCaps()); - continue; - } - - genes.add(canonicalGene); - alreadyProcessedGenes.add(canonicalGene); - } - else { - ProgressMonitor.logWarning("Gene " + gene + " not found or was ambiguous. Skipping this gene."); - } - - } - // -- end parse genes -- - - if (genes.size() == 0) { - ProgressMonitor.logWarning("No genes found in database for " + fields[genesField] + ". Skipping gistic event"); - return null; - } - gistic.setGenes_in_ROI(genes); - - return gistic; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/GlobalProperties.java b/core/src/main/java/org/mskcc/cbio/portal/util/GlobalProperties.java deleted file mode 100644 index 18209811460..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/GlobalProperties.java +++ /dev/null @@ -1,1341 +0,0 @@ -/* - * Copyright (c) 2015 - 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; -import java.io.InputStream; -import java.nio.charset.StandardCharsets; -import java.nio.file.Files; -import java.nio.file.Paths; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.LinkedList; -import java.util.List; -import java.util.Properties; - -import org.apache.commons.lang.StringUtils; -import org.cbioportal.security.spring.authentication.PortalUserDetails; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.security.core.Authentication; -import org.springframework.security.core.authority.SimpleGrantedAuthority; -import org.springframework.security.core.context.SecurityContextHolder; -import org.springframework.stereotype.Component; -import org.springframework.util.ResourceUtils; - - -/** - * Utility class for getting / setting global properties. - */ -@Component -public class GlobalProperties { - - public static final String HOME_DIR = "PORTAL_HOME"; - private static final String PORTAL_PROPERTIES_FILE_NAME = "portal.properties"; - private static final String MAVEN_PROPERTIES_FILE_NAME = "maven.properties"; - - public static final String PATHWAY_COMMONS_URL = "pathway_commons.url"; - public static final String UCSC_CANCER_GENOMICS_URL = "ucsc_cancer_genomics.url"; - public static final String SEGFILE_URL = "segfile.url"; - public static final String OPENSSL_BINARY = "openssl.binary"; - public static final String SIGNATURE_KEY = "signature.key"; - public static final String ENCRYPTION_KEY = "encryption.key"; - public static final String BROAD_BAM_URL = "broad.bam.url"; - public static final String BROAD_BAM_CHECKING_URL = "broad.bam.checking.url"; - public static final String IGV_BAM_LINKING = "igv.bam.linking"; - public static final String IGV_BAM_LINKING_STUDIES = "igv.bam.linking.studies"; - private static String authenticate; - @Value("${authenticate:false}") // default is false - public void setAuthenticate(String property) { authenticate = property; } - public static final String FILTER_GROUPS_BY_APPNAME = "filter_groups_by_appname"; - public static final String INCLUDE_NETWORKS = "include_networks"; - public static final String GOOGLE_ANALYTICS_PROFILE_ID = "google_analytics_profile_id"; - - - private static String frontendSentryEndpoint; - @Value("${sentryjs.frontend_project_endpoint:null}") - public void setfrontendSentryEndpoint(String property) { frontendSentryEndpoint = property; } - - public static final String GENOMESPACE = "genomespace"; - - public static final String APP_NAME = "app.name"; - public static final String DEFAULT_APP_NAME = "public_portal"; - - public static final String APP_VERSION = "app.version"; - public static final String SKIN_TITLE = "skin.title"; - public static final String DEFAULT_SKIN_TITLE = "cBioPortal for Cancer Genomics"; - public static final String SKIN_BLURB = "skin.blurb"; - // blurb default - public static final String DEFAULT_SKIN_BLURB = "The cBioPortal for Cancer Genomics provides " + - "visualization, analysis and download of large-scale cancer genomics data sets. " + - "

    Please adhere to " + - "the TCGA publication guidelines when using TCGA data in your publications.

    " + - "

    Please cite Gao " + - "et al. Sci. Signal. 2013 & " + - "" + - "Cerami et al. Cancer Discov. 2012 when publishing results based on cBioPortal.

    \n"; - public static final String SKIN_TAG_LINE_IMAGE = "skin.tag_line_image"; - public static final String DEFAULT_SKIN_TAG_LINE_IMAGE = "images/tag_line.png"; - public static final String SKIN_EMAIL_CONTACT = "skin.email_contact"; - public static final String DEFAULT_EMAIL_CONTACT = "cbioportal at googlegroups dot com"; - public static final String SKIN_SHOW_NEWS_TAB = "skin.show_news_tab"; - public static final String SKIN_SHOW_DATA_TAB = "skin.show_data_tab"; - public static final String SKIN_RIGHT_NAV_SHOW_DATA_SETS = "skin.right_nav.show_data_sets"; - public static final String SKIN_RIGHT_NAV_SHOW_EXAMPLES = "skin.right_nav.show_examples"; - public static final String SKIN_RIGHT_NAV_SHOW_TESTIMONIALS = "skin.right_nav.show_testimonials"; - public static final String SKIN_RIGHT_NAV_SHOW_WHATS_NEW = "skin.right_nav.show_whats_new"; - public static final String SKIN_RIGHT_NAV_SHOW_WEB_TOURS = "skin.right_nav.show_web_tours"; - private static String skinAuthorizationMessage; - @Value("${skin.authorization_message:Access to this portal is only available to authorized users.}") - public void setSkinAuthorizationMessage(String property) { skinAuthorizationMessage = property; } - public static final String SKIN_USER_DISPLAY_NAME = "skin.user_display_name"; - public static final String SKIN_EXAMPLE_STUDY_QUERIES = "skin.example_study_queries"; - public static final String DEFAULT_SKIN_EXAMPLE_STUDY_QUERIES = - "tcga pancancer atlas\n" + - "tcga provisional\n" + - "tcga -provisional -pancancer\n" + - "tcga or icgc\n" + - "msk-impact\n" + - "-\"cell line\"\n" + - "breast\n" + - "esophageal OR stomach\n" + - "prostate msk\n" + - "serous"; - public static final String SKIN_DATASETS_HEADER = "skin.data_sets_header"; - public static final String DEFAULT_SKIN_DATASETS_HEADER = "The portal currently contains data from the following " + - "cancer genomics studies. The table below lists the number of available samples per data type and tumor."; - public static final String SKIN_DATASETS_FOOTER = "skin.data_sets_footer"; - public static final String DEFAULT_SKIN_DATASETS_FOOTER = "Data sets of TCGA studies were downloaded from Broad " + - "Firehose (http://gdac.broadinstitute.org) and updated monthly. In some studies, data sets were from the " + - "TCGA working groups directly."; - - public static final String PATIENT_VIEW_PLACEHOLDER = "patient_view_placeholder"; - public static final String PATIENT_VIEW_DIGITAL_SLIDE_IFRAME_URL = "digitalslidearchive.iframe.url"; - public static final String PATIENT_VIEW_DIGITAL_SLIDE_META_URL = "digitalslidearchive.meta.url"; - - public static final String PATIENT_VIEW_MDACC_HEATMAP_META_URL = "mdacc.heatmap.meta.url"; - public static final String PATIENT_VIEW_MDACC_HEATMAP_URL = "mdacc.heatmap.patient.url"; - - public static final String STUDY_VIEW_MDACC_HEATMAP_URL = "mdacc.heatmap.study.url"; - public static final String STUDY_VIEW_MDACC_HEATMAP_META_URL = "mdacc.heatmap.study.meta.url"; - - public static final String SHOW_ONCOKB = "show.oncokb"; - public static final String MERGE_ONCOKB_ICONS_BY_DEFAULT = "oncokb.merge_icons_by_default"; - public static final String ONCOKB_TOKEN = "oncokb.token"; - - private static String sessionServiceURL; - @Value("${session.service.url:}") // default is empty string - public void setSessionServiceURL(String property) { sessionServiceURL = property; } - - private static String sessionServiceUser; - @Value("${session.service.user:}") // default is empty string - public void setSessionServiceUser(String property) { sessionServiceUser = property; } - - private static String sessionServicePassword; - @Value("${session.service.password:}") // default is empty string - public void setSessionServicePassword(String property) { sessionServicePassword = property; } - - private static String frontendConfig; - @Value("${frontend.config:}") // default is empty string - public void setFrontendConfig(String property) { frontendConfig = property; } - - private static String oncoprintClinicalTracksConfigJson; - @Value("${oncoprint.clinical_tracks.config_json:}") // default is empty string - public void setOncoprintClinicalTracksConfigJson(String property) { - oncoprintClinicalTracksConfigJson = property; - } - - private static String skinPatientViewCustomSampleTypeColorsJson; - @Value("${skin.patient_view.custom_sample_type_colors_json:}") // default is empty string - public void setSkinPatientViewCustomSampleTypeColorsJson(String property) { - skinPatientViewCustomSampleTypeColorsJson = property; - } - - // properties for showing the right logo in the header_bar and default logo - public static final String SKIN_RIGHT_LOGO = "skin.right_logo"; - - // properties for hiding/showing tabs in the header navigation bar - public static final String SKIN_SHOW_WEB_API_TAB = "skin.show_web_api_tab"; - public static final String SKIN_SHOW_R_MATLAB_TAB = "skin.show_r_matlab_tab"; - public static final String SKIN_SHOW_TUTORIALS_TAB = "skin.show_tutorials_tab"; - public static final String SKIN_SHOW_FAQS_TAB = "skin.show_faqs_tab"; - public static final String SKIN_SHOW_TOOLS_TAB = "skin.show_tools_tab"; - public static final String SKIN_SHOW_ABOUT_TAB = "skin.show_about_tab"; - - // property for setting the news blurb in the right column - public static final String SKIN_RIGHT_NAV_WHATS_NEW_BLURB = "skin.right_nav.whats_new_blurb"; - public static final String DEFAULT_SKIN_WHATS_NEW_BLURB = ""; // default is in cbioportal-frontend repo - - // footer - public static final String SKIN_FOOTER = "skin.footer"; - public static final String DEFAULT_SKIN_FOOTER = ""; // default is in cbioportal-frontend repo - - // login contact - public static final String SKIN_LOGIN_CONTACT_HTML = "skin.login.contact_html"; - public static final String DEFAULT_SKIN_LOGIN_CONTACT_HTML = "If you think you have received this message in " + - "error, please contact us at " + - "cbioportal-access@cbio.mskcc.org"; - - // property for setting the saml registration html - public static final String SKIN_LOGIN_SAML_REGISTRATION_HTML = "skin.login.saml.registration_html"; - public static final String DEFAULT_SKIN_LOGIN_SAML_REGISTRATION_HTML = "Sign in with MSK"; - - // property for the saml entityid - public static final String SAML_IDP_METADATA_ENTITYID="saml.idp.metadata.entityid"; - // property for whether the SAML logout should be local (at SP level) or global (at IDP level). Default: false (global) - public static final String SAML_IS_LOGOUT_LOCAL="saml.logout.local"; - - // property for the custom header tabs - public static final String SKIN_CUSTOM_HEADER_TABS="skin.custom_header_tabs"; - - // properties for the FAQ, about us, news and examples - public static final String SKIN_BASEURL="skin.documentation.baseurl"; - public static final String DEFAULT_SKIN_BASEURL="https://raw.githubusercontent.com/cBioPortal/cbioportal/master/docs/"; - public static final String SKIN_DOCUMENTATION_MARKDOWN="skin.documentation.markdown"; - - public static final String SKIN_FAQ="skin.documentation.faq"; - public static final String DEFAULT_SKIN_FAQ="user-guide/faq.md"; - public static final String SKIN_ABOUT="skin.documentation.about"; - public static final String DEFAULT_SKIN_ABOUT="About-Us.md"; - public static final String SKIN_NEWS="skin.documentation.news"; - public static final String DEFAULT_SKIN_NEWS="News.md"; - public static final String SKIN_OQL="skin.documentation.oql"; - public static final String DEFAULT_SKIN_OQL="user-guide/oql.md"; - - public static final String SKIN_EXAMPLES_RIGHT_COLUMN_HTML="skin.examples_right_column_html"; - - public static final String ALWAYS_SHOW_STUDY_GROUP="always_show_study_group"; - - // property for query component - public static final String SKIN_QUERY_MAX_TREE_DEPTH="skin.query.max_tree_depth"; - public static final Number DEFAULT_QUERY_MAX_TREE_DEPTH=3; - - // property for text shown at the right side of the Select Patient/Case set, which - // links to the study view - public static final String SKIN_STUDY_VIEW_LINK_TEXT="skin.study_view.link_text"; - public static final String DEFAULT_SKIN_STUDY_VIEW_LINK_TEXT="To build your own case set, try out our enhanced " + - "Study View."; - - public static final String MYCANCERGENOME_SHOW = "mycancergenome.show"; - public static final String ONCOKB_GENE_STATUS = "oncokb.geneStatus"; - public static final String SHOW_HOTSPOT = "show.hotspot"; - - public static final String DB_VERSION = "db.version"; - private static boolean suppressSchemaVersionMismatchErrors; - @Value("${db.suppress_schema_version_mismatch_errors:false}") // default is false - public void setSuppressSchemaVersionMismatchErrors(String property) { suppressSchemaVersionMismatchErrors = Boolean.parseBoolean(property); } - - public static final String DARWIN_AUTH_URL = "darwin.auth_url"; - public static final String DDP_RESPONSE_URL = "ddp.response_url"; - public static final String CIS_USER = "cis.user"; - public static final String DISABLED_TABS = "disabled_tabs"; - public static final String BITLY_USER = "bitly.user"; - public static final String DARWIN_REGEX = "darwin.regex"; - - public static final String PRIORITY_STUDIES = "priority_studies"; - public static final String SPECIES = "species"; - public static final String DEFAULT_SPECIES = "human"; - public static final String NCBI_BUILD = "ncbi.build"; - public static final String DEFAULT_NCBI_BUILD = "37"; - public static final String UCSC_BUILD = "ucsc.build"; - public static final String DEFAULT_UCSC_BUILD = "hg19"; - - public static final String ONCOPRINT_DEFAULTVIEW = "oncoprint.defaultview"; - - public static final String SETSOFGENES_LOCATION = "querypage.setsofgenes.location"; - - public static final String MSK_WHOLE_SLIDE_VIEWER_SECRET_KEY = "msk.whole.slide.viewer.secret.key"; - - private static boolean showCivic; - @Value("${show.civic:false}") // default is false - public void setShowCivic(String property) { showCivic = Boolean.parseBoolean(property); } - - private static boolean sitemaps; - @Value("${sitemaps:false}") // default is false - public void setSitemaps(String property) { sitemaps = Boolean.parseBoolean(property); } - - private static boolean showTranscriptDropdown; - @Value("${show.transcript_dropdown:false}") // default is false - public void setShowTranscriptDropdown(String property) { showTranscriptDropdown = Boolean.parseBoolean(property); } - - private static boolean showGenomeNexus; - @Value("${show.genomenexus:true}") // default is true - public void setShowGenomeNexus(String property) { showGenomeNexus = Boolean.parseBoolean(property); } - - // TODO should support more sources such as clinvar,gnomad,sift - private static String showGenomeNexusAnnotationSources; - @Value("${show.genomenexus.annotation_sources:mutation_assessor}") // Available sources: mutation_assessor - public void setShowGenomeNexusAnnotationSources(String property) { showGenomeNexusAnnotationSources = property; } - - private static String genomeNexusIsoformOverrideSource; - @Value("${genomenexus.isoform_override_source:mskcc}") // Options: mskcc, uniprot - public void setGenomeNexusIsoformOverrideSource(String property) { genomeNexusIsoformOverrideSource = property; } - - private static boolean showMutationMapperToolGrch38; - @Value("${show.mutation_mappert_tool.grch38:true}") // default is true - public void setShowMutationMapperToolGrch38(String property) { showMutationMapperToolGrch38 = Boolean.parseBoolean(property); } - - private static boolean showSignal; - @Value("${show.signal:false}") // default is false - public void setShowSignal(String property) { showSignal = Boolean.parseBoolean(property); } - - private static boolean showNdex; - @Value("${show.ndex:true}") // default is true - public void setShowNdex(String property) { showNdex = Boolean.parseBoolean(property); } - - /* - * Trim whitespace of url and append / if it does not exist. Return empty - * string otherwise. - */ - public static String parseUrl(String url) - { - String rv; - - if (!url.isEmpty()) { - rv = url.trim(); - - if (!rv.endsWith("/")) { - rv += "/"; - } - } else { - rv = ""; - } - - return rv; - } - - public static final String BINARY_CUSTOM_DRIVER_ANNOTATION_MENU_LABEL = "oncoprint.custom_driver_annotation.binary.menu_label"; - public static final String TIERS_CUSTOM_DRIVER_ANNOTATION_MENU_LABEL = "oncoprint.custom_driver_annotation.tiers.menu_label"; - public static final String ENABLE_DRIVER_ANNOTATIONS = "oncoprint.custom_driver_annotation.binary.default"; - public static final String ENABLE_TIERS = "oncoprint.custom_driver_annotation.tiers.default"; - public static final String ENABLE_ONCOKB_AND_HOTSPOTS_ANNOTATIONS = "oncoprint.oncokb_hotspots.default"; - public static final String HIDE_PASSENGER_MUTATIONS = "oncoprint.hide_vus.default"; - - private static String civicUrl; - @Value("${civic.url:https://civicdb.org/api/}") // default - public void setCivicUrl(String property) { civicUrl = parseUrl(property); } - - private static String genomeNexusApiUrl; - @Value("${genomenexus.url:v1.genomenexus.org}") // default - public void setGenomeNexusApiUrl(String property) { genomeNexusApiUrl = parseUrl(property); } - - private static String genomeNexusGrch38ApiUrl; - @Value("${genomenexus.url.grch38:grch38.genomenexus.org}") // default - public void setGenomeNexusGrch38ApiUrl(String property) { genomeNexusGrch38ApiUrl = parseUrl(property); } - - private static String frontendUrl; - @Value("${frontend.url:}") // default is empty string - public void setFrontendUrl(String property) { frontendUrl = parseUrl(property); } - - /* read frontendUrl from this file at runtime (TODO: read from URL), - * overrides frontend.url */ - private static String frontendUrlRuntime; - @Value("${frontend.url.runtime:}") - public void setFrontendUrlRuntime(String property) { frontendUrlRuntime = property; } - - private static String downloadGroup; - @Value("${download_group:}") // default is empty string - public void setDownloadGroup(String property) { downloadGroup = property; } - - public static final String DEFAULT_DAT_METHOD = "none"; - - private static String dataAccessTokenMethod; - @Value("${dat.method:none}") // default is empty string - public void setDataAccessTokenMethod(String property) { dataAccessTokenMethod = property; } - - private static String tokenAccessUserRole; - @Value("${dat.filter_user_role:}") // default is empty string - public void setTokenAccessUserRole(String property) { tokenAccessUserRole = property; } - - private static Logger LOG = LoggerFactory.getLogger(GlobalProperties.class); - private static ConfigPropertyResolver portalProperties = new ConfigPropertyResolver(); - private static Properties mavenProperties = initializeProperties(MAVEN_PROPERTIES_FILE_NAME); - - /** - * Minimal portal property resolver that takes system property overrides. - * - * Provides properties from runtime or the baked-in - * portal.properties config file, but takes overrides from -D - * system properties. - */ - private static class ConfigPropertyResolver { - private Properties configFileProperties; - /** - * Finds the config file for properties not overridden by system props. - * - * Either the runtime or buildtime portal.properties file. - */ - public ConfigPropertyResolver() { - configFileProperties = initializeProperties(PORTAL_PROPERTIES_FILE_NAME); - } - /** - * Finds the property with the specified key, or returns the default. - */ - public String getProperty(String key, String defaultValue) { - String propertyValue = configFileProperties.getProperty(key, defaultValue); - return System.getProperty(key, propertyValue); - } - /** - * Finds the property with the specified key, or returns null. - */ - public String getProperty(String key) { - return getProperty(key, null); - } - /** - * Tests if a property has been specified for this key. - * - * @return true iff the property was specified, even if blank. - */ - public boolean containsKey(String key) { - return getProperty(key) != null; - } - } - - private static Properties initializeProperties(String propertiesFileName) - { - return loadProperties(getResourceStream(propertiesFileName)); - } - - private static InputStream getResourceStream(String propertiesFileName) - { - String resourceFilename = null; - InputStream resourceFIS = null; - - try { - String home = System.getenv(HOME_DIR); - if (home != null) { - resourceFilename = - home + File.separator + propertiesFileName; - if (LOG.isInfoEnabled()) { - LOG.info("Attempting to read properties file: " + resourceFilename); - } - resourceFIS = new FileInputStream(resourceFilename); - if (LOG.isInfoEnabled()) { - LOG.info("Successfully read properties file"); - } - } - } - catch (FileNotFoundException e) { - if (LOG.isInfoEnabled()) { - LOG.info("Failed to read properties file: " + resourceFilename); - } - } - - if (resourceFIS == null) { - if (LOG.isInfoEnabled()) { - LOG.info("Attempting to read properties file from classpath"); - } - resourceFIS = GlobalProperties.class.getClassLoader(). - getResourceAsStream(propertiesFileName); - if (LOG.isInfoEnabled()) { - LOG.info("Successfully read properties file"); - } - } - - return resourceFIS; - } - - private static Properties loadProperties(InputStream resourceInputStream) - { - Properties properties = new Properties(); - - try { - properties.load(resourceInputStream); - resourceInputStream.close(); - } - catch (IOException e) { - if (LOG.isErrorEnabled()) { - LOG.error("Error loading properties file: " + e.getMessage()); - } - } - - return properties; - } - - public static String getPathwayCommonsUrl() - { - return portalProperties.getProperty(PATHWAY_COMMONS_URL); - } - - public static String getUcscCancerGenomicsUrl() - { - return portalProperties.getProperty(UCSC_CANCER_GENOMICS_URL); - } - - public static String getSegfileUrl() - { - return portalProperties.getProperty(SEGFILE_URL); - } - - public static String getProperty(String property) - { - return (portalProperties.containsKey(property)) ? portalProperties.getProperty(property) : null; - } - - public static boolean wantIGVBAMLinking() { - String igvBamLinking = portalProperties.getProperty(IGV_BAM_LINKING); - return igvBamLinking!=null && igvBamLinking.equals("true"); - } - - public static Collection getIGVBAMLinkingStudies() { - String igvBamLinkingStudies = portalProperties.getProperty(IGV_BAM_LINKING_STUDIES); - if (igvBamLinkingStudies==null) { - return Collections.emptyList(); - } - String[] studies = igvBamLinkingStudies.split(":"); - return (studies.length > 0) ? Arrays.asList(studies) : Collections.emptyList(); - } - - // This method is the equivalent of @portalSecurityConfig.userAuthorizationEnabled() - // method in the org.cbioportal.utils package. Update both when changes are needed. - public static boolean usersMustAuthenticate() - { - // authentication for social_auth/social_auth_google/social_auth_microsoft is optional - return (!authenticate.isEmpty() && !authenticate.equals("noauthsessionservice") && !authenticate.equals("false") && !authenticate.contains("social_auth")); - } - - public static String authenticationMethod() - { - return authenticate; - } - - /** - * Return authenticated username - * @return String userName - * Return authenticated username. If the user is not authenticated, 'anonymousUser' will be returned. - */ - public static String getAuthenticatedDisplayName() { - String authenticatedParameter = portalProperties.getProperty(SKIN_USER_DISPLAY_NAME); - if (authenticatedParameter != null && authenticatedParameter.equals("username")) { - return getAuthenticatedUserName(); - } else { - return getAuthenticatedUserEmail(); //Default is email - } - } - - public static String getAuthenticatedUserName() { - Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); - - if(authentication != null) { - PortalUserDetails userDetails = (PortalUserDetails) authentication.getPrincipal(); - return userDetails.getUserName(); - - }else { - return "anonymousUser"; - } - } - - public static String getAuthenticatedUserEmail() { - Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); - - if(authentication != null) { - return authentication.getName(); - - }else { - return "anonymousUser"; - } - } - - public static String getAppName() - { - String appName = portalProperties.getProperty(APP_NAME); - return (appName == null) ? DEFAULT_APP_NAME : appName; - } - - public static String getAppVersion() - { - String appVersion = mavenProperties.getProperty(APP_VERSION); - return (appVersion == null) ? "1.0" : appVersion; - } - - public static String getTitle() - { - String skinTitle = portalProperties.getProperty(SKIN_TITLE); - return (skinTitle == null) ? DEFAULT_SKIN_TITLE : skinTitle; - } - // updated function to use a default if nothing is specified - public static String getBlurb() - { - String skinBlurb = portalProperties.getProperty(SKIN_BLURB); - return (skinBlurb == null) ? DEFAULT_SKIN_BLURB : skinBlurb; - } - // get custom FAQ html or the default - public static String getFaqHtml() - { - String faqHtml = portalProperties.getProperty(SKIN_FAQ); - return (faqHtml == null) ? DEFAULT_SKIN_FAQ : getContentString(faqHtml); - } - // get custom About html or the default - public static String getAboutHtml() - { - String aboutHtml = portalProperties.getProperty(SKIN_ABOUT); - return (aboutHtml == null) ? DEFAULT_SKIN_ABOUT : getContentString(aboutHtml); - } - // get custom News html or the default - public static String getNewsHtml() - { - String newsHtml = portalProperties.getProperty(SKIN_NEWS); - return (newsHtml == null) ? DEFAULT_SKIN_NEWS : getContentString(newsHtml); - } - - public static String getOqlHtml() - { - String oqlHtml = portalProperties.getProperty(SKIN_OQL); - return (oqlHtml == null) ? DEFAULT_SKIN_OQL : getContentString(oqlHtml); - } - // get custom News html or the default - public static String getBaseUrl() - { - String baseUrl = portalProperties.getProperty(SKIN_BASEURL); - return (baseUrl == null) ? DEFAULT_SKIN_BASEURL : baseUrl; - } - public static boolean isMarkdownDocumentation() - { - String markdownFlag = portalProperties.getProperty(SKIN_DOCUMENTATION_MARKDOWN); - return markdownFlag == null || Boolean.parseBoolean(markdownFlag); - } - - //get max tree depth - public static Number getMaxTreeDepth() - { - String maxTreeDepth = portalProperties.getProperty(SKIN_QUERY_MAX_TREE_DEPTH); - return (maxTreeDepth == null) ? DEFAULT_QUERY_MAX_TREE_DEPTH : Integer.parseInt(maxTreeDepth); - } - - // get custom Example Queries for the right column html or the default - public static String getExamplesRightColumnHtml() - { - String examplesRightColumnHtml = portalProperties.getProperty(SKIN_EXAMPLES_RIGHT_COLUMN_HTML); - return examplesRightColumnHtml == null? "": examplesRightColumnHtml; - } - - private static String getContentString(String contentString){ - if(getBaseUrl().equalsIgnoreCase("")) return "content/"+contentString; - return contentString; - } - - // get the login contact html - public static String getLoginContactHtml() - { - String loginContactHtml = portalProperties.getProperty(SKIN_LOGIN_CONTACT_HTML); - return (loginContactHtml == null) ? DEFAULT_SKIN_LOGIN_CONTACT_HTML : loginContactHtml; - } - // get the text for the saml login button - public static String getLoginSamlRegistrationHtml() - { - String loginSamlRegistrationHtml = portalProperties.getProperty(SKIN_LOGIN_SAML_REGISTRATION_HTML); - return (loginSamlRegistrationHtml == null) ? DEFAULT_SKIN_LOGIN_SAML_REGISTRATION_HTML : loginSamlRegistrationHtml; - } - public static String getSamlIdpMetadataEntityid() - { - return getProperty(SAML_IDP_METADATA_ENTITYID); - } - - // returns whether the SAML logout should be local (at SP level) or global (at IDP level). Default: false (global) - public static String getSamlIsLogoutLocal() - { - return portalProperties.getProperty(SAML_IS_LOGOUT_LOCAL, "false"); - } - - public static String getTagLineImage() - { - String tagLineImage = portalProperties.getProperty(SKIN_TAG_LINE_IMAGE); - return (tagLineImage == null) ? DEFAULT_SKIN_TAG_LINE_IMAGE : "images/" + tagLineImage; - } - - // function for retrieving the right logo, used by the header_bar - public static String getRightLogo() - { - String rightLogo = portalProperties.getProperty(SKIN_RIGHT_LOGO); - return (rightLogo == null || "".equals(rightLogo)) ? "" : "images/" + rightLogo; - } - - // function for retrieving the footer text - public static String getFooter(){ - String footer = portalProperties.getProperty(SKIN_FOOTER); - return (footer == null) ? DEFAULT_SKIN_FOOTER : footer; - } - // function for retrieving the studyview link text - public static String getStudyviewLinkText(){ - String studyviewLinkText = portalProperties.getProperty(SKIN_STUDY_VIEW_LINK_TEXT); - return (studyviewLinkText == null) ? DEFAULT_SKIN_STUDY_VIEW_LINK_TEXT : studyviewLinkText; - } - - public static String getEmailContact() - { - String emailAddress = portalProperties.getProperty(SKIN_EMAIL_CONTACT); - if (emailAddress == null) - emailAddress = DEFAULT_EMAIL_CONTACT; - return ( - "" + - emailAddress + - "" - ); - } - - public static boolean includeNetworks() - { - return Boolean.parseBoolean(portalProperties.getProperty(INCLUDE_NETWORKS)); - } - - public static String getGoogleAnalyticsProfileId() - { - return portalProperties.getProperty(GOOGLE_ANALYTICS_PROFILE_ID); - } - - public static String getFrontendSentryEndpoint() - { - return (frontendSentryEndpoint == null) ? null : frontendSentryEndpoint.trim(); - } - - public static boolean genomespaceEnabled() - { - return Boolean.parseBoolean(portalProperties.getProperty(GENOMESPACE)); - } - - public static boolean showPlaceholderInPatientView() - { - return Boolean.parseBoolean(portalProperties.getProperty(PATIENT_VIEW_PLACEHOLDER)); - } - - public static boolean showNewsTab() - { - String showFlag = portalProperties.getProperty(SKIN_SHOW_NEWS_TAB); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - - public static boolean showDataTab() - { - String showFlag = portalProperties.getProperty(SKIN_SHOW_DATA_TAB); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - - // show or hide the web api tab in header navigation bar - public static boolean showWebApiTab() - { - String showFlag = portalProperties.getProperty(SKIN_SHOW_WEB_API_TAB); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - // show or hide the r matlab tab in header navigation bar - public static boolean showRMatlabTab() - { - String showFlag = portalProperties.getProperty(SKIN_SHOW_R_MATLAB_TAB); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - // show or hide the tutorial tab in header navigation bar - public static boolean showTutorialsTab() - { - String showFlag = portalProperties.getProperty(SKIN_SHOW_TUTORIALS_TAB); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - // show or hide the faqs tab in header navigation bar - public static boolean showFaqsTab() - { - String showFlag = portalProperties.getProperty(SKIN_SHOW_FAQS_TAB); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - // show or hide the tools tab in header navigation bar - public static boolean showToolsTab() - { - String showFlag = portalProperties.getProperty(SKIN_SHOW_TOOLS_TAB); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - // show or hide the about tab in header navigation bar - public static boolean showAboutTab() - { - String showFlag = portalProperties.getProperty(SKIN_SHOW_ABOUT_TAB); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - // get the text for the What's New in the right navigation bar - public static String getRightNavWhatsNewBlurb(){ - String whatsNewBlurb = portalProperties.getProperty(SKIN_RIGHT_NAV_WHATS_NEW_BLURB); - return (whatsNewBlurb == null) ? DEFAULT_SKIN_WHATS_NEW_BLURB : whatsNewBlurb; - } - public static boolean showRightNavDataSets() - { - String showFlag = portalProperties.getProperty(SKIN_RIGHT_NAV_SHOW_DATA_SETS); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - public static boolean showRightNavExamples() - { - String showFlag = portalProperties.getProperty(SKIN_RIGHT_NAV_SHOW_EXAMPLES); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - - public static boolean showRightNavTestimonials() - { - String showFlag = portalProperties.getProperty(SKIN_RIGHT_NAV_SHOW_TESTIMONIALS); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - - public static boolean showRightNavWhatsNew() - { - String showFlag = portalProperties.getProperty(SKIN_RIGHT_NAV_SHOW_WHATS_NEW); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - - public static boolean showRightNavWebTours() - { - String showFlag = portalProperties.getProperty(SKIN_RIGHT_NAV_SHOW_WEB_TOURS); - return showFlag == null || Boolean.parseBoolean(showFlag); - } - - public static String getAuthorizationMessage() - { - return skinAuthorizationMessage; - } - - public static String getExampleStudyQueries() { - return portalProperties.getProperty( - SKIN_EXAMPLE_STUDY_QUERIES, - DEFAULT_SKIN_EXAMPLE_STUDY_QUERIES); - } - - // added usage of default data sets header - public static String getDataSetsHeader() - { - String dataSetsHeader = portalProperties.getProperty(SKIN_DATASETS_HEADER); - return dataSetsHeader == null ? DEFAULT_SKIN_DATASETS_HEADER : dataSetsHeader; - } - - // added usage of default data sets footer - public static String getDataSetsFooter() - { - String dataSetsFooter = portalProperties.getProperty(SKIN_DATASETS_FOOTER); - return dataSetsFooter == null ? DEFAULT_SKIN_DATASETS_FOOTER : dataSetsFooter; - } - - public static String getSpecies(){ - String species = portalProperties.getProperty(SPECIES); - return species == null ? DEFAULT_SPECIES : species; - } - - public static String getNCBIBuild(){ - String NCBIBuild = portalProperties.getProperty(NCBI_BUILD); - return NCBIBuild == null ? DEFAULT_NCBI_BUILD : NCBIBuild; - } - - public static String getGenomicBuild(){ - String genomicBuild = portalProperties.getProperty(UCSC_BUILD); - return genomicBuild == null ? DEFAULT_UCSC_BUILD : genomicBuild; - } - - public static String getLinkToPatientView(String caseId, String cancerStudyId) - { - return "patient?caseId=" + caseId - + "&studyId=" + cancerStudyId; - } - - public static String getLinkToSampleView(String caseId, String cancerStudyId) - { - return "patient?sampleId=" + caseId - + "&studyId=" + cancerStudyId; - } - - public static String getLinkToCancerStudyView(String cancerStudyId) - { - return "study?id=" + cancerStudyId; - } - - public static String getLinkToIGVForBAM(String cancerStudyId, String caseId, String locus) - { - return ("igvlinking.json?" + - org.mskcc.cbio.portal.servlet.IGVLinkingJSON.CANCER_STUDY_ID + - "=" + cancerStudyId + - "&" + org.mskcc.cbio.portal.servlet.IGVLinkingJSON.CASE_ID + - "=" + caseId + - "&" + org.mskcc.cbio.portal.servlet.IGVLinkingJSON.LOCUS + - "=" + locus); - } - - public static String getDigitalSlideArchiveIframeUrl(String caseId) - { - String url = portalProperties.getProperty(PATIENT_VIEW_DIGITAL_SLIDE_IFRAME_URL); - return url+caseId; - } - - public static String getDigitalSlideArchiveMetaUrl(String caseId) - { - String url = portalProperties.getProperty(PATIENT_VIEW_DIGITAL_SLIDE_META_URL); - return url+caseId; - } - - public static String getStudyHeatmapMetaUrl() - { - String url = portalProperties.getProperty(STUDY_VIEW_MDACC_HEATMAP_META_URL); - return url; - } - - public static String getStudyHeatmapViewerUrl() - { - String url = portalProperties.getProperty(STUDY_VIEW_MDACC_HEATMAP_URL); - return url; - } - - public static String getPatientHeatmapMetaUrl(String caseId) - { - String url = portalProperties.getProperty(PATIENT_VIEW_MDACC_HEATMAP_META_URL); - if (url == null || url.length() == 0) return null; - return url + caseId; - } - - public static String getPatientHeatmapViewerUrl(String caseId) - { - String url = portalProperties.getProperty(PATIENT_VIEW_MDACC_HEATMAP_URL); - if (url == null || url.length() == 0) return null; - return url + caseId; - } - - // function for getting the custom tabs for the header - public static String[] getCustomHeaderTabs(){ - String customPagesString = GlobalProperties.getProperty(SKIN_CUSTOM_HEADER_TABS); - if(customPagesString!=null){ - // split by comma and return the String array - return customPagesString.split(","); - } - return null; - } - - public static String getSessionServiceUrl() - { - return sessionServiceURL; - } - - public static String getSessionServiceUser() - { - return sessionServiceUser; - } - - public static String getSessionServicePassword() - { - return sessionServicePassword; - } - - public static String getCivicUrl() { - return civicUrl; - } - - public static String getGenomeNexusApiUrl() { - return genomeNexusApiUrl; - } - - public static String getGenomeNexusGrch38ApiUrl() { - return genomeNexusGrch38ApiUrl; - } - - public static boolean showOncoKB() { - String showOncokb = portalProperties.getProperty(SHOW_ONCOKB); - if (showOncokb==null || showOncokb.isEmpty()) { - return true; // show oncoKB by default - } else { - return Boolean.parseBoolean(showOncokb); - } - } - - public static boolean mergeOncoKBIcons() { - String mergeOncoKbIconsByDefault = portalProperties.getProperty(MERGE_ONCOKB_ICONS_BY_DEFAULT); - if (mergeOncoKbIconsByDefault == null || mergeOncoKbIconsByDefault.isEmpty()) { - return true; // merge OncoKB icons by default - } else { - return Boolean.parseBoolean(mergeOncoKbIconsByDefault); - } - } - - public static boolean showHotspot() { - String hotspot = portalProperties.getProperty(SHOW_HOTSPOT); - if (hotspot==null) { - return true; // show hotspots by default - } - - if(!hotspot.isEmpty()) { - return Boolean.parseBoolean(hotspot); - }else{ - return true; - } - } - - public static boolean showSitemaps() { - return sitemaps; - } - - public static boolean showCivic() { - return showCivic; - } - - public static boolean showTranscriptDropdown() { - return showTranscriptDropdown; - } - - public static boolean showGenomeNexus() { - return showGenomeNexus; - } - - public static String showGenomeNexusAnnotationSources() { - return showGenomeNexusAnnotationSources; - } - - public static String getGenomeNexusIsoformOverrideSource() { - return genomeNexusIsoformOverrideSource; - } - - public static boolean showMutationMapperToolGrch38() { - return showMutationMapperToolGrch38; - } - - public static boolean showNdex() { - return showNdex; - } - - public static boolean showSignal() { - return showSignal; - } - - public static String getFrontendUrl() { - if (frontendUrlRuntime.length() > 0) { - try { - String url = parseUrl(new String(Files.readAllBytes(Paths.get(frontendUrlRuntime)), StandardCharsets.UTF_8).replaceAll("[\\r\\n]+", "")); - if (LOG.isInfoEnabled()) { - LOG.info("Using frontend from " + frontendUrlRuntime + ": " + url); - } - return url; - } catch (IOException e) { - // error reading file, use existing frontendUrl - if (LOG.isErrorEnabled()) { - LOG.error("Can't read frontend.url.runtime: " + frontendUrlRuntime); - } - } - } - return frontendUrl; - } - - public static boolean showMyCancerGenomeUrl() - { - String show = portalProperties.getProperty(MYCANCERGENOME_SHOW); - return show != null && Boolean.parseBoolean(show); - } - - public static String getOncoKBGeneStatus() - { - return portalProperties.getProperty(ONCOKB_GENE_STATUS); - } - - public static String getBitlyUser() { - String bitlyUser = portalProperties.getProperty(BITLY_USER); - if (bitlyUser == null || bitlyUser.trim().equals("")) - { - return null; - } - return bitlyUser; - } - - public static String getDbVersion() { - String version = mavenProperties.getProperty(DB_VERSION); - if (version == null) - { - return "0"; - } - return version; - } - - public static boolean isSuppressSchemaVersionMismatchErrors() { - return suppressSchemaVersionMismatchErrors; - } - - public static String getDarwinAuthCheckUrl() { - String darwinAuthUrl = ""; - if (portalProperties.containsKey(DARWIN_AUTH_URL)) { - try{ - darwinAuthUrl = portalProperties.getProperty(DARWIN_AUTH_URL); - } - catch (NullPointerException e){} - } - return darwinAuthUrl; - } - - public static String getDdpResponseUrl() { - String ddpResponseUrl = ""; - if (portalProperties.containsKey(DDP_RESPONSE_URL)) { - try{ - ddpResponseUrl = portalProperties.getProperty(DDP_RESPONSE_URL); - } - catch (NullPointerException e) {} - } - return ddpResponseUrl; - } - - public static List getPriorityStudies() { - List priorityStudiesObject = new LinkedList<>(); - try { - String priorityStudies = portalProperties.getProperty(PRIORITY_STUDIES).trim(); - for (String priorityStudyCategory: priorityStudies.split(";")) { - String[] elements = priorityStudyCategory.split("[#,]"); - elements = Arrays.stream(elements).filter(s -> s.length() > 0).toArray(String[]::new); - if (elements.length > 1) { - priorityStudiesObject.add(elements); - } - } - } catch (NullPointerException e) {} - return priorityStudiesObject; - } - - public static String getCisUser() { - String cisUser = ""; - if (portalProperties.containsKey(CIS_USER)) { - try{ - cisUser = portalProperties.getProperty(CIS_USER); - } - catch (NullPointerException e) {} - } - return cisUser; - } - - - public static String getDarwinRegex() { - String darwinRegex = ""; - if (portalProperties.containsKey(DARWIN_REGEX)) { - try { - darwinRegex = portalProperties.getProperty(DARWIN_REGEX); - } - catch (NullPointerException e) {} - } - return darwinRegex; - } - - public static List getDisabledTabs() { - String disabledTabs = ""; - try { - disabledTabs = portalProperties.getProperty(DISABLED_TABS).trim(); - } - catch (NullPointerException e) {} - - String[] tabs = disabledTabs.split("\\|"); - return (tabs.length > 0 && disabledTabs.length() > 0) ? Arrays.asList(tabs) : new ArrayList(); - } - - public static String getDefaultOncoprintView() { - String defaultOncoprintView = portalProperties.getProperty(ONCOPRINT_DEFAULTVIEW); - if (defaultOncoprintView == null || defaultOncoprintView.isEmpty()) { - return "patient"; - } - return defaultOncoprintView.trim(); - } - - public static boolean enableDriverAnnotations() { - String enableDriverAnnotations = portalProperties.getProperty(ENABLE_DRIVER_ANNOTATIONS, "true"); - if (!showBinaryCustomDriverAnnotation()) { - return false; // do not enable driver annotations by default - } - return Boolean.parseBoolean(enableDriverAnnotations); - } - - public static boolean enableTiers() { - String enableTiers = portalProperties.getProperty(ENABLE_TIERS, "true"); - if (!showTiersCustomDriverAnnotation()) { - return false; // do not enable driver annotations by default - } - return Boolean.parseBoolean(enableTiers); - } - - public static String enableOncoKBandHotspots() { - String enableOncoKBandHotspots = portalProperties.getProperty(ENABLE_ONCOKB_AND_HOTSPOTS_ANNOTATIONS, "true").trim(); - if (enableOncoKBandHotspots.equalsIgnoreCase("custom")) { - return "custom"; - } else if (enableOncoKBandHotspots.equalsIgnoreCase("false")) { - return "false"; - } - return "true"; - } - - public static String getBinaryCustomDriverAnnotationMenuLabel() - { - return portalProperties.getProperty(BINARY_CUSTOM_DRIVER_ANNOTATION_MENU_LABEL); - } - - public static String getTiersCustomDriverAnnotationMenuLabel() - { - return portalProperties.getProperty(TIERS_CUSTOM_DRIVER_ANNOTATION_MENU_LABEL); - } - - public static void main(String[] args) - { - System.out.println(getAppVersion()); - } - - public static boolean showBinaryCustomDriverAnnotation() { - if (getBinaryCustomDriverAnnotationMenuLabel()==null || getBinaryCustomDriverAnnotationMenuLabel().isEmpty()) { - return false; - } - return true; - } - - public static boolean showTiersCustomDriverAnnotation() { - if (getTiersCustomDriverAnnotationMenuLabel()==null || getTiersCustomDriverAnnotationMenuLabel().isEmpty()) { - return false; - } - return true; - } - - public static boolean hidePassengerMutations() { - String hidePassenger = portalProperties.getProperty(HIDE_PASSENGER_MUTATIONS, "false"); - return Boolean.parseBoolean(hidePassenger); - } - - public static String readFile(String fileName) - { - String result = new String(); - - if (fileName == null || fileName.trim().equals("")) { - result = null; - } else { - try { - BufferedReader br = new BufferedReader(new FileReader(ResourceUtils.getFile(fileName))); - for (String line = br.readLine(); line != null; line = br.readLine()) { - line = line.trim(); - result = result + line; - } - br.close(); - } catch (FileNotFoundException e) { - if (LOG.isErrorEnabled()) { - LOG.error("frontend config file not found: " + e.getMessage()); - } - return null; - } catch (IOException e) { - if (LOG.isErrorEnabled()) { - LOG.error("Error reading frontend config file: " + e.getMessage()); - } - return null; - } - } - return result; - } - - public static String getFrontendConfig() { - if (frontendConfig.length() > 0) { - return readFile(frontendConfig); - } else { - return null; - } - } - - public static String getOncoprintClinicalTracksConfigJson() { - if (oncoprintClinicalTracksConfigJson.length() > 0) { - return readFile(oncoprintClinicalTracksConfigJson); - } else { - return null; - } - } - - public static String getSkinPatientViewCustomSampleTypeColorsJson() { - if (skinPatientViewCustomSampleTypeColorsJson.length() > 0) { - return readFile(skinPatientViewCustomSampleTypeColorsJson); - } else { - return null; - } - } - - public static String getQuerySetsOfGenes() { - String fileName = portalProperties.getProperty(SETSOFGENES_LOCATION, null); - return readFile(fileName); - } - - public static String getMskWholeSlideViewerToken() - { - // this token is for the msk portal - // the token is generated based on users' timestamp to let the slide viewer know whether the token is expired and then decide whether to allow the user to login the viewer - // every time when we refresh the page or goto the new page, a new token should be generated - Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); - String secretKey = portalProperties.getProperty(MSK_WHOLE_SLIDE_VIEWER_SECRET_KEY); - String timeStamp = String.valueOf(System.currentTimeMillis()); - - if(authentication != null && authentication.isAuthenticated() && secretKey != null && !secretKey.isEmpty()) { - return "{ \"token\":\"" + MskWholeSlideViewerTokenGenerator.generateTokenByHmacSHA256(authentication.getName(), secretKey, timeStamp) + "\", \"time\":\"" + timeStamp + "\"}"; - } else { - return null; - } - } - - public static String getReferenceGenomeName() { - return portalProperties.getProperty(UCSC_BUILD, DEFAULT_UCSC_BUILD); - } - - public static String getOncoKbToken() { - return portalProperties.getProperty(ONCOKB_TOKEN, null); - } - - public static String getDownloadControl() { - Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); - - if (authentication != null && - StringUtils.isNotEmpty(downloadGroup) && - authentication.getAuthorities().contains(new SimpleGrantedAuthority(downloadGroup))) { - return "show"; - } else { - String downloadControlOption = getProperty("skin.hide_download_controls"); - /* - skin.hide_download_controls return_value - true hide - false show - data data - null/empty show - */ - switch ((downloadControlOption != null) ? downloadControlOption.trim().toLowerCase() : "false") { - case "true": - return "hide"; - case "data": - return "data"; - case "false": - default: - return "show"; - } - } - } - - public static String getDataAccessTokenMethod() { - Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); - - if (authentication != null && - StringUtils.isNotEmpty(tokenAccessUserRole)) { - return authentication.getAuthorities().contains(new SimpleGrantedAuthority(tokenAccessUserRole)) ? dataAccessTokenMethod : DEFAULT_DAT_METHOD; - } else { - return dataAccessTokenMethod; - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/HashCodeUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/HashCodeUtil.java deleted file mode 100644 index af5dffce1af..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/HashCodeUtil.java +++ /dev/null @@ -1,144 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.lang.reflect.Array; - -/** - * Collected methods which allow easy implementation of hashCode. - * - * From http://www.javapractices.com/topic/TopicAction.do;Id=28 - * - * Example use case: - * - *
    - * public int hashCode() {
    - *     int result = HashCodeUtil.SEED;
    - *     // collect the contributions of various fields
    - *     result = HashCodeUtil.hash(result, fPrimitive);
    - *     result = HashCodeUtil.hash(result, fObject);
    - *     result = HashCodeUtil.hash(result, fArray);
    - *     return result;
    - * }
    - * 
    - */ -public final class HashCodeUtil { - - /** - * An initial value for a hashCode, to which is added - * contributions from fields. Using a non-zero value decreases collisons of - * hashCode values. - */ - public static final int SEED = 23; - - /** - * booleans. - */ - public static int hash(int aSeed, boolean aBoolean) { - return firstTerm(aSeed) + (aBoolean ? 1 : 0); - } - - /** - * chars. - */ - public static int hash(int aSeed, char aChar) { - return firstTerm(aSeed) + (int) aChar; - } - - /** - * ints. - */ - public static int hash(int aSeed, int aInt) { - /* - * Implementation Note Note that byte and short are handled by this - * method, through implicit conversion. - */ - return firstTerm(aSeed) + aInt; - } - - /** - * longs. - */ - public static int hash(int aSeed, long aLong) { - return firstTerm(aSeed) + (int) (aLong ^ (aLong >>> 32)); - } - - /** - * floats. - */ - public static int hash(int aSeed, float aFloat) { - return hash(aSeed, Float.floatToIntBits(aFloat)); - } - - /** - * doubles. - */ - public static int hash(int aSeed, double aDouble) { - return hash(aSeed, Double.doubleToLongBits(aDouble)); - } - - /** - * aObject is a possibly-null object field, and possibly an - * array. - * - * If aObject is an array, then each element may be a primitive - * or a possibly-null object. - */ - public static int hash(int aSeed, Object aObject) { - int result = aSeed; - if (aObject == null) { - result = hash(result, 0); - } else if (!isArray(aObject)) { - result = hash(result, aObject.hashCode()); - } else { - int length = Array.getLength(aObject); - for (int idx = 0; idx < length; ++idx) { - Object item = Array.get(aObject, idx); - // recursive call! - result = hash(result, item); - } - } - return result; - } - - // / PRIVATE /// - private static final int fODD_PRIME_NUMBER = 37; - - private static int firstTerm(int aSeed) { - return fODD_PRIME_NUMBER * aSeed; - } - - private static boolean isArray(Object aObject) { - return aObject.getClass().isArray(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/HeatMapLegend.java b/core/src/main/java/org/mskcc/cbio/portal/util/HeatMapLegend.java deleted file mode 100644 index 70941eb3e1f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/HeatMapLegend.java +++ /dev/null @@ -1,207 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.ArrayList; - -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticDataTypes; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticTypeLevel; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintGeneDisplaySpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ResultDataTypeSpec; - -/** - * - * @author Arthur Goldberg - * - */ -public class HeatMapLegend { - - static ArrayList CNAlevels; - static ArrayList MutationLevels; - static ArrayList ExpressionLevels; - static ArrayList RPPALevels; - static ArrayList Alterations; - - static ArrayList> allColumns; - static StringBuffer sb; - - /** - * Output the Heat Map html legend, listing only genetic alterations that are - * selected by the OncoSpec. - *

    - * TODO: unit test - * @param allPossibleAlterations - * @return - */ - static public String outputHeatMapLegend( OncoPrintGeneDisplaySpec allPossibleAlterations) { - /* - * Three columns: CNA, Mutation, mRNA regulation. Output column if any of - * it is selected; within a column, output all possible alternatives. - */ - CNAlevels = new ArrayList(); - MutationLevels = new ArrayList(); - ExpressionLevels = new ArrayList(); - RPPALevels = new ArrayList(); - Alterations = new ArrayList(); - - // CNA colors - if (allPossibleAlterations.satisfy(GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Amplified)) { - CNAlevels.add("High-Level Amplification"); - } - - if (allPossibleAlterations.satisfy(GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.HomozygouslyDeleted)) { - CNAlevels.add("Homozygous Deletion"); - } - - if (allPossibleAlterations.satisfy(GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Gained)) { - CNAlevels.add("Low-level Gain"); - } - - if (allPossibleAlterations.satisfy(GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.HemizygouslyDeleted)) { - CNAlevels.add("Heterozygous Deletion"); - } - - // mutations - if (allPossibleAlterations.satisfy(GeneticDataTypes.Mutation, GeneticTypeLevel.Mutated)) { - MutationLevels.add(" = Point Mutation"); - } - - // expression - // over - ResultDataTypeSpec theResultDataTypeSpec = allPossibleAlterations - .getResultDataTypeSpec(GeneticDataTypes.Expression); - if (null != theResultDataTypeSpec && (null != theResultDataTypeSpec.getCombinedGreaterContinuousDataTypeSpec())) { - ExpressionLevels.add(" = mRNA up-Regulation"); - } - - // under - theResultDataTypeSpec = allPossibleAlterations.getResultDataTypeSpec(GeneticDataTypes.Expression); - if (null != theResultDataTypeSpec && (null != theResultDataTypeSpec.getCombinedLesserContinuousDataTypeSpec())) { - ExpressionLevels.add(" = mRNA down-Regulation"); - } - - // RPPA - theResultDataTypeSpec = allPossibleAlterations - .getResultDataTypeSpec(GeneticDataTypes.RPPA); - if (null != theResultDataTypeSpec && (null != theResultDataTypeSpec.getCombinedGreaterContinuousDataTypeSpec())) { - RPPALevels.add(" = Protein up-Regulation"); - } - - // under - theResultDataTypeSpec = allPossibleAlterations.getResultDataTypeSpec(GeneticDataTypes.Expression); - if (null != theResultDataTypeSpec && (null != theResultDataTypeSpec.getCombinedLesserContinuousDataTypeSpec())) { - RPPALevels.add(" = Protein down-Regulation"); - } - - // column headers - if (0 < CNAlevels.size()) { - CNAlevels.add(0, "Putative Copy Number Alteration"); - } - if (0 < MutationLevels.size()) { - MutationLevels.add(0, "Point Mutation"); - } - if (0 < ExpressionLevels.size()) { - ExpressionLevels.add(0, "Gene Expression"); - } - if (0 < RPPALevels.size()) { - RPPALevels.add(0, "Protein Level"); - } - - // Alterations - Alterations.add("Gene Set"); - Alterations.add(" = At least one gene in set is altered in case"); - - allColumns = new ArrayList>(); - allColumns.add(CNAlevels); - allColumns.add(MutationLevels); - allColumns.add(ExpressionLevels); - allColumns.add(RPPALevels); - allColumns.add(Alterations); - - sb = new StringBuffer(); - appendLine( sb, ""); - - boolean[] columnUsed = outputHeadings(sb, allColumns); - while (levelsRemaining(allColumns)) { - outputNextRow(sb, allColumns, columnUsed); - } - - appendLine( sb, "
    "); - return sb.toString(); - } - - static private boolean[] outputHeadings( StringBuffer sb, ArrayList> allColumns) { - boolean[] rv = new boolean[allColumns.size()]; - int i = 0; - appendLine( sb, ""); - for (ArrayList col : allColumns) { - if (0 < col.size()) { - rv[i] = true; - appendLine( sb, col.remove(0)); - } - i++; - } - appendLine( sb, ""); - return rv; - } - - static private boolean levelsRemaining(ArrayList> allColumns) { - for (ArrayList col : allColumns) { - if (0 < col.size()) { - return true; - } - } - return false; - } - - static private void outputNextRow( StringBuffer sb, ArrayList> allColumns, boolean[] columnUsed) { - int i = 0; - appendLine( sb, ""); - for (ArrayList col : allColumns) { - if (0 < col.size()) { - appendLine( sb, col.remove(0)); - } else { - if (columnUsed[i]) { - appendLine( sb, ""); - } - } - i++; - } - appendLine( sb, ""); - } - - static private void appendLine( StringBuffer sb, String s ){ - sb.append(s).append("\n"); - } - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/IGVLinking.java b/core/src/main/java/org/mskcc/cbio/portal/util/IGVLinking.java deleted file mode 100644 index eb9008c9fd7..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/IGVLinking.java +++ /dev/null @@ -1,367 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.web_api.ConnectionManager; - -import org.apache.commons.io.*; - -import org.apache.commons.httpclient.*; -import org.apache.commons.httpclient.methods.*; - -import java.text.SimpleDateFormat; -import java.util.Calendar; -import java.io.File; -import java.net.*; - -/** - * Provides methods for linking to IGV. - * - * @author Benjamin Gross. - */ -public class IGVLinking { - - private static final String TOKEN_REGEX = ""; - private static final String SAMPLE_REGEX = ""; - private static final String KNOWN_ID = "KNOWN_ID"; - private static final String TUMOR_BAM_SIGNATURE = "-Tumor"; - private static final String NORMAL_BAM_SIGNATURE = "-Normal"; - - public static String[] getIGVArgsForSegViewing(String cancerStudyStableId, String encodedGeneList) throws Exception - { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyStableId); - CopyNumberSegmentFile cnsf = DaoCopyNumberSegmentFile.getCopyNumberSegmentFile(cancerStudy.getInternalId()); - - return new String[] { GlobalProperties.getSegfileUrl() + cnsf.filename, encodedGeneList, cnsf.referenceGenomeId.toString(), cnsf.filename }; - } - - // returns null if exception has been thrown during processing - public static String[] getIGVArgsForBAMViewing(String cancerStudyStableId, String caseId, String locus) - { - if (!IGVLinking.validBAMViewingArgs(cancerStudyStableId, caseId, locus) || - !IGVLinking.encryptionBinLocated()) { - return null; - } - - String trackName = caseId; - - String tumorBAMFileURL = getBAMFileURL(caseId); - if (tumorBAMFileURL == null) return null; - - // code added to view normal alongside tumor file - String normalCaseId = getNormalSampleId(caseId); - if (normalCaseId != null) { - String normalBAMFileURL = getBAMFileURL(normalCaseId); - if (normalBAMFileURL != null) { - tumorBAMFileURL += "," + normalBAMFileURL; - trackName += "," + normalCaseId; - } - } - - String encodedLocus = getEncoded(locus); - if (encodedLocus == null) return null; - - return new String[] { tumorBAMFileURL, encodedLocus, CopyNumberSegmentFile.ReferenceGenomeId.hg19.toString(), trackName }; - } - - public static boolean validBAMViewingArgs(String cancerStudy, String caseId, String locus) - { - return (caseId != null && caseId.length() > 0 && - locus != null && locus.length() > 0 && - cancerStudy != null && cancerStudy.length() > 0 && - bamExists(cancerStudy, caseId)); - } - - public static boolean bamExists(String cancerStudy, String caseId) - { - return GlobalProperties.getIGVBAMLinkingStudies().contains(cancerStudy) && knownCaseId(caseId); - } - - private static boolean encryptionBinLocated() - { - return new File(GlobalProperties.getProperty(GlobalProperties.OPENSSL_BINARY)).exists(); - } - - private static String getBAMFileURL(String caseId) - { - String token = IGVLinking.getToken(caseId); - return (token == null) ? null : - GlobalProperties.getProperty(GlobalProperties.BROAD_BAM_URL).replace(TOKEN_REGEX, token); - } - - private static String getToken(String caseId) - { - File messageToEncrypt = null; - File token = null; - String urlEncodedToken = null; - - try { - messageToEncrypt = getMessageToEncrypt(caseId, IGVLinking.getCurrentTime()); - token = IGVLinking.encrypt(messageToEncrypt); - urlEncodedToken = IGVLinking.getURLEncodedToken(token); - } - catch (Exception e) { - urlEncodedToken = null; - } - finally { - FileUtils.deleteQuietly(messageToEncrypt); - FileUtils.deleteQuietly(token); - } - - return urlEncodedToken; - } - - private static String getCurrentTime() - { - return Long.toString(Calendar.getInstance().getTime().getTime()); - } - - private static File getMessageToEncrypt(String caseId, String timestamp) throws Exception - { - File token = FileUtils.getFile(FileUtils.getTempDirectoryPath(), "broad-bam-token.txt"); - FileUtils.writeStringToFile(token, timestamp + " " + caseId, "UTF-8", false); - return token; - } - - private static String getURLEncodedToken(File token) throws Exception - { - return URLEncoder.encode(IGVLinking.getFileContents(token), "US-ASCII"); - } - - private static String getFileContents(File file) throws Exception - { - StringBuilder sb = new StringBuilder(); - LineIterator it = null; - - try { - it = FileUtils.lineIterator(file, "UTF-8"); - while (it.hasNext()) { - sb.append(it.nextLine()); - } - } - finally { - if (it != null) it.close(); - } - - return sb.toString(); - } - - private static String getEncoded(String toEncode) - { - String encoded = null; - try { - encoded = URLEncoder.encode(toEncode, "US-ASCII"); - } - catch(Exception e){} - - return encoded; - } - - private static File encrypt(File messageToEncrypt) throws Exception - { - - File encryptedMessage = null; - File signedMessage = null; - File base64Message = null; - - try { - encryptedMessage = IGVLinking.getEncryptedMessage(messageToEncrypt); - signedMessage = IGVLinking.getSignedMessage(encryptedMessage); - base64Message = IGVLinking.getBase64Message(signedMessage); - } - catch (Exception e) { - FileUtils.deleteQuietly(base64Message); - throw e; - } - finally { - FileUtils.deleteQuietly(encryptedMessage); - FileUtils.deleteQuietly(signedMessage); - } - - return base64Message; - } - - private static File getEncryptedMessage(File messageToEncrypt) throws Exception - { - File encryptedMessage = null; - - try { - encryptedMessage = FileUtils.getFile(FileUtils.getTempDirectoryPath(), "broad-bam-encrypted.txt"); - IGVLinking.execute(IGVLinking.getEncryptCommand(messageToEncrypt, encryptedMessage)); - } - catch (Exception e) { - FileUtils.deleteQuietly(encryptedMessage); - throw e; - } - - return encryptedMessage; - } - - private static String getEncryptCommand(File messageToEncrypt, File encryptedMessage) throws Exception - { - return (GlobalProperties.getProperty(GlobalProperties.OPENSSL_BINARY) + - " rsautl -encrypt" + - " -inkey " + GlobalProperties.getProperty(GlobalProperties.ENCRYPTION_KEY) + - " -keyform PEM -pubin" + - " -in " + messageToEncrypt.getCanonicalPath() + - " -out " + encryptedMessage.getCanonicalPath()); - } - - private static File getSignedMessage(File encryptedMessage) throws Exception - { - File signedMessage = null; - - try { - signedMessage = FileUtils.getFile(FileUtils.getTempDirectoryPath(), "broad-bam-signed-encrypted.txt"); - IGVLinking.execute(IGVLinking.getSignCommand(encryptedMessage, signedMessage)); - } - catch (Exception e) { - FileUtils.deleteQuietly(signedMessage); - throw e; - } - - return signedMessage; - } - - private static String getSignCommand(File encryptedMessage, File signedMessage) throws Exception - { - return (GlobalProperties.getProperty(GlobalProperties.OPENSSL_BINARY) + - " rsautl -sign" + - " -inkey " + GlobalProperties.getProperty(GlobalProperties.SIGNATURE_KEY) + - " -keyform PEM" + - " -in " + encryptedMessage.getCanonicalPath() + - " -out " + signedMessage.getCanonicalPath()); - } - - private static File getBase64Message(File signedMessage) throws Exception - { - File base64Message = null; - - try { - base64Message = FileUtils.getFile(FileUtils.getTempDirectoryPath(), "broad-bam-base64-signed-encrypted.txt"); - IGVLinking.execute(IGVLinking.getBase64Command(signedMessage, base64Message)); - } - catch (Exception e) { - FileUtils.deleteQuietly(base64Message); - throw e; - } - - return base64Message; - } - - private static String getBase64Command(File signedMessage, File base64Message) throws Exception - { - return (GlobalProperties.getProperty(GlobalProperties.OPENSSL_BINARY) + - " enc -base64" + - " -in " + signedMessage.getCanonicalPath() + - " -out " + base64Message.getCanonicalPath()); - } - - private static void execute(String command) throws Exception - { - Process process = Runtime.getRuntime().exec(command); - process.waitFor(); - if (process.exitValue() != 0) throw new RuntimeException(); - } - - private static boolean knownCaseId(String caseId) - { - String url = getBAMCheckingURL(caseId); - if (url == null) return false; - - HttpClient client = getHttpClient(); - GetMethod method = new GetMethod(url); - - try { - if (client.executeMethod(method) == HttpStatus.SC_OK) { - return processSampleIdCheckResult(method.getResponseBodyAsString()); - } - } - catch (Exception e) {} - finally { - method.releaseConnection(); - } - - return false; - } - - private static String getBAMCheckingURL(String caseId) - { - String encodedCaseId = getEncoded(caseId); - String url = GlobalProperties.getProperty(GlobalProperties.BROAD_BAM_CHECKING_URL); - return (url != null && !url.isEmpty() && encodedCaseId != null) ? - url.replace(SAMPLE_REGEX, encodedCaseId) : null; - } - - private static HttpClient getHttpClient() - { - MultiThreadedHttpConnectionManager connectionManager = - ConnectionManager.getConnectionManager(); - return new HttpClient(connectionManager); - } - - private static boolean processSampleIdCheckResult(String responseBody) - { - return (responseBody.equalsIgnoreCase(KNOWN_ID)); - } - - private static String getNormalSampleId(String tumorSampleId) - { - // most normal id's are simply the tumorSampleId with "Normal" replaced with "Tumor" - String normalId = tumorSampleId.replace(TUMOR_BAM_SIGNATURE, NORMAL_BAM_SIGNATURE); - if (knownCaseId(normalId)) return normalId; - - // in some cases, we need to truncate everything - // following & including "Tumor" and replace with "Normal" - String tumorSampleIdPrefix = getTumorSampleIdPrefix(tumorSampleId); - if (tumorSampleIdPrefix != null) { - String encodedTumorSampleId = getEncoded(tumorSampleIdPrefix + - NORMAL_BAM_SIGNATURE); - if (encodedTumorSampleId != null && - knownCaseId(encodedTumorSampleId)) { - return tumorSampleIdPrefix + NORMAL_BAM_SIGNATURE; - } - } - - return null; - } - - private static String getTumorSampleIdPrefix(String tumorSampleId) - { - int tumorSignatureIndex = tumorSampleId.indexOf(TUMOR_BAM_SIGNATURE); - return (tumorSignatureIndex > 0) ? - tumorSampleId.substring(0, tumorSignatureIndex) : null; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/InternalIdUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/InternalIdUtil.java deleted file mode 100644 index 580c570778c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/InternalIdUtil.java +++ /dev/null @@ -1,148 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; - -import java.util.*; - -public class InternalIdUtil -{ - public static List getStableSampleIds(List internalSampleIds) - { - List sampleIds = new ArrayList(); - for (Integer internalSampleId : internalSampleIds) { - Sample s = DaoSample.getSampleById(internalSampleId); - sampleIds.add(s.getStableId()); - } - return sampleIds; - } - - public static List getInternalPatientIds(int cancerStudyId) { - List patientIds = new ArrayList(); - for (Patient patient : DaoPatient.getPatientsByCancerStudyId(cancerStudyId)) { - patientIds.add(patient.getInternalId()); - } - return patientIds; - } - - public static List getInternalNonNormalSampleIds(int cancerStudyId) - { - List sampleIds = new ArrayList(); - List samples = DaoSample.getSamplesByCancerStudy(cancerStudyId); - for (Sample sample : samples) { - sampleIds.add(sample.getInternalId()); - } - return sampleIds; - } - - public static List getInternalNonNormalSampleIds(int cancerStudyId, List stableSampleIds) - { - List sampleIds = new ArrayList(); - for (String sampleId : stableSampleIds) { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudyId, sampleId); - if (Sample.Type.normalTypes().contains(sample.getType())) { - continue; - } - sampleIds.add(sample.getInternalId()); - } - return sampleIds; - } - - public static List getInternalSampleIds(int cancerStudyId, List stableSampleIds) - { - ArrayList sampleIds = new ArrayList(); - for (String sampleId : stableSampleIds) { - if (DaoSample.getSampleByCancerStudyAndSampleId(cancerStudyId, sampleId) != null) { - Sample s = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudyId, sampleId); - sampleIds.add(s.getInternalId()); - } - } - return sampleIds; - } - - public static List getInternalNonNormalSampleIdsFromPatientIds(int cancerStudyId, List stablePatientIds) - { - return getInternalSampleIdsFromPatientIds(cancerStudyId, stablePatientIds, Sample.Type.normalTypes()); - } - - public static List getInternalSampleIdsFromPatientIds(int cancerStudyId, List stablePatientIds, Set excludes) - { - List sampleIds = new ArrayList(); - for (String patientId : stablePatientIds) { - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudyId, patientId); - for (Sample sample : DaoSample.getSamplesByPatientId(patient.getInternalId())) { - if (excludes.contains(sample.getType())) { - continue; - } - sampleIds.add(sample.getInternalId()); - } - } - return sampleIds; - } - - - public static List getSamplesById(Collection sampleIds) { - List samples = new ArrayList(); - for (int id : sampleIds) { - Sample sample = DaoSample.getSampleById(id); - if (sample!=null) { - samples.add(sample); - } - } - return samples; - } - - public static List getPatientsById(Collection patientIds) { - List patients = new ArrayList(); - for (int id : patientIds) { - Patient patient = DaoPatient.getPatientById(id); - if (patient!=null) { - patients.add(patient); - } - } - return patients; - } - - public static List getStablePatientIdsFromSampleIds(int cancerStudyId, List stableSampleIds) - { - Set patientIds = new HashSet(); - for (String sampleId : stableSampleIds) { - Sample s = DaoSample.getSampleByCancerStudyAndSampleId(cancerStudyId, sampleId); - Patient p = DaoPatient.getPatientById(s.getInternalPatientId()); - patientIds.add(p.getStableId()); - } - return new ArrayList(patientIds); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/Logger.java b/core/src/main/java/org/mskcc/cbio/portal/util/Logger.java deleted file mode 100644 index 8282d75ad4a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/Logger.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -/** - * Class which provides logging facility. - * This comment added to satisfy checkstyle warning. - * Now that I am looking at class, I wonder why it is needed - * since we use log4j. -B - */ -public class Logger { - private static boolean log = false; - - public static void log (String msg) { - if (log) { - System.out.println (msg); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/MissingValues.java b/core/src/main/java/org/mskcc/cbio/portal/util/MissingValues.java deleted file mode 100644 index d52dad8ef4a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/MissingValues.java +++ /dev/null @@ -1,39 +0,0 @@ -package org.mskcc.cbio.portal.util; - -public enum MissingValues { - NOT_APPLICABLE("Not Applicable"), - NOT_AVAILABLE("Not Available"), - PENDING("Pending"), - DISCREPANCY("Discrepancy"), - COMPLETED("Completed"), - NULL("null"), MISSING(""), - NA("NA"); - - private String propertyName; - - MissingValues(String propertyName) { - this.propertyName = propertyName; - } - - public String toString() { - return propertyName; - } - - static public boolean has(String value) { - if (value == null) - return false; - if (value.trim().equals("")) - return true; - try { - value = value.replaceAll("[\\[|\\]]", ""); - value = value.replaceAll(" ", "_"); - return valueOf(value.toUpperCase()) != null; - } catch (IllegalArgumentException x) { - return false; - } - } - - static public String getNotAvailable() { - return "[" + NOT_AVAILABLE.toString() + "]"; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/MskWholeSlideViewerTokenGenerator.java b/core/src/main/java/org/mskcc/cbio/portal/util/MskWholeSlideViewerTokenGenerator.java deleted file mode 100644 index 6bb565c1452..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/MskWholeSlideViewerTokenGenerator.java +++ /dev/null @@ -1,36 +0,0 @@ - -package org.mskcc.cbio.portal.util; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import javax.crypto.Mac; -import javax.crypto.spec.SecretKeySpec; -import org.apache.commons.codec.binary.Base64; - -public class MskWholeSlideViewerTokenGenerator { - // ~ Static fields - // ======================================================================================================== - - private static Logger LOG = LoggerFactory.getLogger(MskWholeSlideViewerTokenGenerator.class); - private static final String PORTAL_NAME = "cbioportal"; - - // ~ Methods - // ======================================================================================================== - - public static String generateTokenByHmacSHA256(String username, String secretKey, String timeStamp) { - try { - String message = PORTAL_NAME + "?" + "user=" + username + "&t=" + timeStamp; - - Mac sha256_HMAC = Mac.getInstance("HmacSHA256"); - SecretKeySpec secret_key = new SecretKeySpec(secretKey.getBytes(), "HmacSHA256"); - sha256_HMAC.init(secret_key); - String hash = Base64.encodeBase64String(sha256_HMAC.doFinal(message.getBytes())); - return hash; - } - catch (Exception e) { - if (LOG.isErrorEnabled()) { - LOG.error("Error generate msk Whole slide viewer token: " + e.getMessage()); - } - return null; - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/MutSigReader.java b/core/src/main/java/org/mskcc/cbio/portal/util/MutSigReader.java deleted file mode 100644 index b846edee970..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/MutSigReader.java +++ /dev/null @@ -1,196 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.dao.MySQLbulkLoader; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.MutSig; - -import java.io.*; - -import static org.mskcc.cbio.portal.dao.DaoMutSig.addMutSig; - -/* - * Reads and loads a MutSig file. - * Requires a "properties" file for the Cancer Study associated with the MutSig file. - - * @author Lennart Bastian - * @author Gideon Dresdner - * - */ - -public class MutSigReader { - public static final int HIGH_Q_VALUE = -1; - - /** - * Adds MutSigs to CDGS database. - * @param internalId CancerStudy database record - * @param mutSigFile MutSigFile - * @return number of MutSig records loaded - * @throws IOException - * @throws DaoException - */ - public static int loadMutSig(int internalId, File mutSigFile) throws IOException, DaoException { - int loadedMutSigs = 0; - MySQLbulkLoader.bulkLoadOff(); - FileReader reader = new FileReader(mutSigFile); - BufferedReader buf = new BufferedReader(reader); - try { - // parse field names of a mutsig data file - int rankField = -1; - int hugoField = -1; - int BasesCoveredField = -1; - int numMutationsField = -1; - int PvalField = -1; - int QvalField = -1; - - String head = buf.readLine(); - String[] names = head.split("\t"); - int len = names.length; - for (int i = 0; i < len ; i++) - { - if (names[i].equals("rank")) { - rankField = i; - } else if (names[i].equalsIgnoreCase("gene")) { - hugoField = i; - } else if (names[i].equals("N") || names[i].equals("Nnon") ) { - BasesCoveredField = i; - } else if (names[i].equals("n") || names[i].equals("nnon") ) { - numMutationsField = i; - } else if (names[i].equalsIgnoreCase("p")) { - PvalField = i; - } else if (names[i].equalsIgnoreCase("q") || names[i].equalsIgnoreCase("q\n")) { - QvalField = i; - } - } - // end parse Column names - - // check to see if all fields are filled - if (hugoField == -1 - || BasesCoveredField == -1 - || numMutationsField == -1 - || PvalField == -1 - || QvalField == -1) { - throw new IOException("one or more of the fields [rank, hugoGeneSymbol, number of bases covered (N), " + - "number of mutations (n), p-value, q-value] are undefined"); - } - - // parse data - int rank = 0; - for (String line = buf.readLine();line != null;line = buf.readLine()) { - - ProgressMonitor.incrementCurValue(); - ConsoleUtil.showProgress(); - - MutSig mutSig = new MutSig(); - mutSig.setCancerType(internalId); - - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - String[] parts = line.split("\t"); - - // -- load parameters for new MutSig object -- - try { - if (rankField==-1) { // MutSigCV - rank++; - } else { - rank = Integer.parseInt(parts[rankField]); - } - mutSig.setRank(rank); - } catch (java.lang.NumberFormatException e) { - //should not occur anymore: - throw e; - } - - String hugoGeneSymbol = parts[hugoField]; - - try { - int numBasesCovered = Integer.parseInt(parts[BasesCoveredField]); - mutSig.setNumBasesCovered(numBasesCovered); - } catch (java.lang.NumberFormatException e) { - //should not occur anymore: - throw e; - } - - try { - int numMutations = Integer.parseInt(parts[numMutationsField]); - mutSig.setNumMutations(numMutations); - } catch (java.lang.NumberFormatException e) { - //should not occur anymore: - throw e; - } - - // ignoring '<' sign - try { - float pValue = Float.valueOf(parts[PvalField].replace("<", "")); - mutSig.setpValue(pValue); - } catch (java.lang.NumberFormatException e) { - //should not occur anymore: - throw e; - } - - try { - float qValue = Float.valueOf(parts[QvalField].replace("<", "")); - // Ignore everything with high q-value, - // specified by Ethan - if (qValue >= 0.1) { - ProgressMonitor.logWarning("Filtered out item with qValue >= 0.1"); //Because this message is static, it will be grouped and shown only once if it occurs many times - continue; - } - mutSig.setqValue(qValue); - } catch (java.lang.NumberFormatException e) { - //should not occur anymore: - throw e; - } - - CanonicalGene gene = daoGene.getNonAmbiguousGene(hugoGeneSymbol); - if (gene==null) { - ProgressMonitor.logWarning("Gene " + gene + " not found or was ambiguous. Skipping this gene."); - continue; - } - mutSig.setCanonicalGene(gene); - - // -- end load parameters for new MutSig object -- - - loadedMutSigs += addMutSig(mutSig); - - } - return loadedMutSigs; - } - finally { - buf.close(); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/MutationCounter.java b/core/src/main/java/org/mskcc/cbio/portal/util/MutationCounter.java deleted file mode 100644 index 9b70f4f47c7..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/MutationCounter.java +++ /dev/null @@ -1,146 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.model.ExtendedMutationMap; -import org.mskcc.cbio.portal.model.ExtendedMutation; - -import java.util.ArrayList; -import java.text.DecimalFormat; - -/** - * Calculates Somatic and Germline Mutation Frequency. - * - * @author Ethan Cerami. - */ -public class MutationCounter { - private int numSamplesWithSomaticMutation = 0; - private int numSamplesWithGermlineMutation = 0; - private int numSamplesWithMutation = 0; - private ExtendedMutationMap mutationMap; - private String gene; - - private int totalNumSamples; - - public MutationCounter (String gene, ExtendedMutationMap mutationMap) { - this.gene = gene; - this.mutationMap = mutationMap; - totalNumSamples = mutationMap.getSampleList().size(); - for (Integer sampleId: mutationMap.getSampleList()) { - if (sampleIsMutated(sampleId)) { - numSamplesWithMutation++; - MutationStatus mutationStatus = getMutationStatus(sampleId); - incrementCounters(mutationStatus); - } - } - } - - public String getTextSummary() { - StringBuffer summary = new StringBuffer(); - DecimalFormat percentFormat = new DecimalFormat("###,###.#%"); - summary.append("["); - if (getGermlineMutationRate() > 0) { - summary.append("Germline Mutation Rate: "); - summary.append(percentFormat.format(getGermlineMutationRate())); - summary.append(", "); - } - summary.append("Somatic Mutation Rate: "); - summary.append(percentFormat.format(getSomaticMutationRate())); - summary.append("]"); - return summary.toString(); - } - - public double getSomaticMutationRate() { - return numSamplesWithSomaticMutation / (float) totalNumSamples; - } - - public double getGermlineMutationRate() { - return numSamplesWithGermlineMutation / (float) totalNumSamples; - } - - public double getMutationRate() { - return numSamplesWithMutation / (float) totalNumSamples; - } - - private void incrementCounters(MutationStatus mutationStatus) { - if (mutationStatus.isSampleGermlineMutated()) { - numSamplesWithGermlineMutation++; - } - if (mutationStatus.isSampleSomaticallyMutated()) { - numSamplesWithSomaticMutation++; - } - } - - private boolean sampleIsMutated(Integer sampleId) { - ArrayList mutationList = mutationMap.getExtendedMutations(gene, sampleId); - return mutationList != null && mutationList.size() > 0; - } - - private MutationStatus getMutationStatus(Integer sampleId) { - ArrayList mutationList = mutationMap.getExtendedMutations(gene, sampleId); - MutationStatus mutationStatus = new MutationStatus(); - for (ExtendedMutation mutation: mutationList) { - setMutationStatus(mutation, mutationStatus); - } - return mutationStatus; - } - - private void setMutationStatus(ExtendedMutation mutation, MutationStatus mutationStatus) { - if (mutation.isGermlineMutation()) { - mutationStatus.setGermlineMutated(true); - } else { - mutationStatus.setSomaticMutated(true); - } - } -} - -class MutationStatus { - private boolean germlineMutated; - private boolean somaticMutated; - - public boolean isSampleGermlineMutated() { - return germlineMutated; - } - - public void setGermlineMutated(boolean germlineMutated) { - this.germlineMutated = germlineMutated; - } - - public boolean isSampleSomaticallyMutated() { - return somaticMutated; - } - - public void setSomaticMutated(boolean somaticMutated) { - this.somaticMutated = somaticMutated; - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/MutationKeywordUtils.java b/core/src/main/java/org/mskcc/cbio/portal/util/MutationKeywordUtils.java deleted file mode 100644 index 748136e5e11..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/MutationKeywordUtils.java +++ /dev/null @@ -1,266 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -/** - * - * @author jgao - */ -public final class MutationKeywordUtils { - private MutationKeywordUtils() {} - - public static String guessOncotatorMutationKeyword(String aminoAcidChange, String mutationType) { - if (mutationType.equals("Nonsense_Mutation") || - mutationType.equals("Splice_Site") || - mutationType.startsWith("Frame_Shift_") || - mutationType.equals("Nonstop_Mutation") || - mutationType.equals("Translation_Start_Site")) { - return "truncating"; - } - - if (mutationType.equals("Missense_Mutation")) { - if (aminoAcidChange.matches("M1[A-LN-Z][A-Z]*")) { // how about indels on the first position? - // non-start - return "truncating"; - } - - Pattern p = Pattern.compile("([A-Z][0-9]+)[A-Z]"); - Matcher m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1) + " missense"; - } - - p = Pattern.compile("([0-9]+)_([0-9]+)[A-Z]+>[A-Z]+"); - m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1) + "-" + m.group(2) + " missense"; - } - } - - if (mutationType.equals("In_Frame_Ins")) { - if (aminoAcidChange.matches("[0-9]+_[0-9]+[A-Z]*((ins)|(>)).*\\*.*")) { - // insertion of * - return "truncating"; - } - - if (aminoAcidChange.matches("1_1M>?[A-LN-Z][A-Z]*") - || aminoAcidChange.matches("1_2ins[A-LN-Z][A-Z]*")) {// insertion in the start position - return "truncating"; - } - - Pattern p = Pattern.compile("([0-9]+)_([0-9]+)[A-Z]*((ins)|(>))[A-Z]+"); - Matcher m = p.matcher(aminoAcidChange); - if (m.find()) { - return "" + m.group(1) + " insertion"; - } - } - - if (mutationType.equals("In_Frame_Del")) { - if (aminoAcidChange.matches("M[A-Z]*1del") - || aminoAcidChange.matches("1_[0-9]+M[A-Z]*>[A-LN-Z][A-Z]*")) { - // deletion of M1 - return "truncating"; - } - - if (aminoAcidChange.matches("[A-Z]*\\*[0-9]+del") - || aminoAcidChange.matches("[0-9]+_[0-9]+[A-Z]*\\*>[A-Z]+")) { - // deletion of * - return "truncating"; - } - - if (aminoAcidChange.matches("[0-9]+_[0-9]+[A-Z]*>.*\\*.*")) { - // deletion of * - return "truncating"; - } - - // only the first deleted residue was considered - Pattern p = Pattern.compile("([A-Z]+)([0-9]+)del"); - Matcher m = p.matcher(aminoAcidChange); - if (m.matches()) { - return "" + m.group(2) + "-" + (Integer.parseInt(m.group(2))+m.group(1).length()-1) + " deletion"; - } - - p = Pattern.compile("([0-9]+)_([0-9]+)[A-Z]*>[A-Z]+"); - m = p.matcher(aminoAcidChange); - if (m.find()) { - return m.group(1) + "-" + m.group(2) + " deletion"; - } - } - - if (mutationType.equals("Silent")) { - Pattern p = Pattern.compile("([0-9]+)"); - Matcher m = p.matcher(aminoAcidChange); - if (m.find()) { - return "" + m.group(1) + "silent"; - } - } - - if (mutationType.equals("Exon skipping") - || mutationType.equals("vIII deletion")) { - return aminoAcidChange; - } - - if (mutationType.equals("NA")) { - return guessCosmicKeyword(aminoAcidChange); - } - - // how about RNA or Translation_Start_Site - - return null; - } - - /** - * - * @param hugo - * @param aminoAcidChange - * @param cds - * @return - */ - public static String guessCosmicKeyword(String aminoAcidChange) { - if (aminoAcidChange.matches("\\(?[A-Z\\*]?[0-9]+[A-Z\\*]?\\)?fs\\*?>?\\??[0-9]*") // frameshift - || aminoAcidChange.equals("?fs") // frameshift - || aminoAcidChange.matches("[A-Z][0-9]+>?\\*") // non sense - || aminoAcidChange.matches("M1>?[A-LN-Z]") // non start - || aminoAcidChange.matches("M1delM") // non start, deletion of M1 - || aminoAcidChange.matches("M1_M1ins[A-LN-Z][A-Z]*") // non start, insertion of non M at start - || aminoAcidChange.matches("([A-Z][0-9]+_)?\\*[0-9]+>?[A-Z]") // non stop - || aminoAcidChange.matches("([A-Z][0-9]+_)\\*[0-9]+del([A-Z]+\\*)?") // delete * - || aminoAcidChange.matches("\\*[0-9]+del\\*") // delete * - || aminoAcidChange.matches("[A-Z][0-9]+(_[A-Z][0-9]+)?((ins)|(>)).*\\*.*") // inserting a stop - || aminoAcidChange.matches("[A-Z][0-9]+_[A-Z][0-9]+>.*\\*.*") // repleacing/inserting/deletion a stop - || aminoAcidChange.matches("M1_[A-Z][0-9]+>[A-LN-Z][A-Z]*") // repleacing/inserting/deletion the first codon - ) { - return "truncating"; - } - - Pattern p = Pattern.compile("(([A-Z\\*])[0-9]+)>?((\\2)|(=)|(%3D))"); // cosmic encodes = as %3D - Matcher m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1)+" silent"; - } - - p = Pattern.compile("([A-Z]([0-9]+))>?([A-Z]+)"); - m = p.matcher(aminoAcidChange); - if (m.matches()) { - if (m.group(3).length()>1) { - return m.group(2)+" insertion"; - } - return m.group(1)+" missense"; - } - - p = Pattern.compile("[A-Z]?([0-9]+)_[A-Z\\*]?[0-9]+ins(([A-Z]+)|([0-9]+))"); //incl. ins before stop codon - m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1)+" insertion"; - } - - p = Pattern.compile("\\*([0-9]+)[A-Z]?ext\\*(([0-9]+)|(\\?))"); //extension of stop codon - m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1)+" insertion"; - } - - p = Pattern.compile("[A-Z*]([0-9]+)(_[A-Z*][0-9]+)?dup"); //duplication treated as insertion - m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1)+" insertion"; - } - - p = Pattern.compile("[A-Z]?([0-9]+)>[A-Z][A-Z]+"); - m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1)+" insertion"; - } - - p = Pattern.compile("\\*([0-9]+)_\\*[0-9]+ins[A-Z]+\\*?"); - m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1)+" insertion"; - } - - p = Pattern.compile("[A-Z]([0-9]+)del[A-Z]?"); - m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1) + "-" + m.group(1) + " deletion"; - } - - p = Pattern.compile("[A-Z]([0-9]+)_[A-Z]([0-9]+)del(([A-Z]+)|([0-9]+))?"); - m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1) + "-" + m.group(2) + " deletion"; - } - - p = Pattern.compile("[A-Z]([0-9]+)_[A-Z*]([0-9]+)((>)|(delins))([A-Z*]+)"); // this is actually similar to missense mutation for more than 1 amino acid - m = p.matcher(aminoAcidChange); - if (m.matches()) { - int n1 = Integer.parseInt(m.group(2)) - Integer.parseInt(m.group(1)) + 1; - int n2 = m.group(6).length(); - if (n1==n2) { - return m.group(1) + "-" + m.group(2) + " missense"; - } - - if (n1 > n2) { - return m.group(1) + "-" + m.group(2) + " deletion"; - } - - return m.group(1) + " insertion"; - } - - p = Pattern.compile("[A-Z*]([0-9]+)delins[A-Z*]+[0-9]*"); //delins with 1 del & >1 ins - m = p.matcher(aminoAcidChange); - if (m.matches()) { - return m.group(1)+" insertion"; - } - - p = Pattern.compile("([A-Z*]+)([0-9]+)delext\\*([0-9]+)"); //delext - m = p.matcher(aminoAcidChange); - if (m.matches()) { - int n1 = m.group(1).length(); // no. of AA deleted - int n2 = Integer.parseInt(m.group(3)); // no. of AA added - int n3 = Integer.parseInt(m.group(2)); // location of AA1 - if (n1==n2) { - return m.group(2) + "-" + Integer.toString(n3 + n2 - 1) + " missense"; - } - - if (n1 < n2) { - return m.group(2) + " insertion"; - } - } - - return null; - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/MyCancerGenomeLinkUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/MyCancerGenomeLinkUtil.java deleted file mode 100644 index e1c035e16c9..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/MyCancerGenomeLinkUtil.java +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ -package org.mskcc.cbio.portal.util; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.net.URL; -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.TreeMap; -import java.util.logging.Level; -import java.util.logging.Logger; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import javax.net.ssl.HttpsURLConnection; -import org.apache.commons.text.StringEscapeUtils; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; - -/** - * - * @author jgao - */ -public final class MyCancerGenomeLinkUtil { - private MyCancerGenomeLinkUtil() {} - private final static Map>> LINK_MAP - = new HashMap>>(); - - static { - if (GlobalProperties.showMyCancerGenomeUrl()) { - setMyCancerGenomeLinkFromLocal(); - } - - } - - /** - * - * @param gene - * @param alteration - * @return - */ - public static List getMyCancerGenomeLinks(String gene, String alteration, boolean includeGeneralMutation) throws IOException { - List list = new ArrayList(); - - boolean showMyCancerGenomeUrl = GlobalProperties.showMyCancerGenomeUrl(); - if(showMyCancerGenomeUrl) { - Map> mapVariantCancerLink = LINK_MAP.get(gene); - if (mapVariantCancerLink != null) { - Map mapCancerLink = mapVariantCancerLink.get(alteration); - if (mapCancerLink != null) { - list.addAll(mapCancerLink.values()); - } - - if (includeGeneralMutation) { - mapCancerLink = mapVariantCancerLink.get("mutation"); - if (mapCancerLink != null) { - list.addAll(mapCancerLink.values()); - } - } - } - } - return list; - } - - private static final String MYCANCERGENOME_FILE = "/mycancergenome.txt"; - private static void setMyCancerGenomeLinkFromLocal() { - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - try (BufferedReader in = new BufferedReader( - new InputStreamReader(MyCancerGenomeLinkUtil.class.getResourceAsStream(MYCANCERGENOME_FILE)))) { - String line; - while ((line=in.readLine())!=null && line.startsWith("#")) {} - - for (; line!=null; line=in.readLine()) { - String[] parts = line.trim().split("\t",-1); - if (parts.length<4) { - continue; - } - - CanonicalGene gene = daoGeneOptimized.getNonAmbiguousGene(parts[0]); - if (gene!=null) { - String hugo = gene.getHugoGeneSymbolAllCaps(); - Map> mapVariantCancerLink = LINK_MAP.get(hugo); - if (mapVariantCancerLink == null) { - mapVariantCancerLink = new HashMap>(); - LINK_MAP.put(hugo, mapVariantCancerLink); - } - - Map mapCancerLink = mapVariantCancerLink.get(parts[1]); - if (mapCancerLink == null) { - mapCancerLink = new HashMap(); - mapVariantCancerLink.put(parts[1], mapCancerLink); - } - - mapCancerLink.put(parts[2], parts[3]); - } - } - } catch (IOException ex) { - ex.printStackTrace(); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/NaturalOrderComparator.java b/core/src/main/java/org/mskcc/cbio/portal/util/NaturalOrderComparator.java deleted file mode 100644 index 065082b69ab..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/NaturalOrderComparator.java +++ /dev/null @@ -1,166 +0,0 @@ -/* - NaturalOrderComparator.java -- Perform 'natural order' comparisons of strings in Java. - Copyright (C) 2003 by Pierre-Luc Paour - - Based on the C version by Martin Pool, of which this is more or less a straight conversion. - Copyright (C) 2000 by Martin Pool - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - */ -package org.mskcc.cbio.portal.util; - -import java.util.*; - -public class NaturalOrderComparator implements Comparator -{ - int compareRight(String a, String b) - { - int bias = 0; - int ia = 0; - int ib = 0; - - // The longest run of digits wins. That aside, the greatest - // value wins, but we can't know that it will until we've scanned - // both numbers to know that they have the same magnitude, so we - // remember it in BIAS. - for (;; ia++, ib++) - { - char ca = charAt(a, ia); - char cb = charAt(b, ib); - - if (!Character.isDigit(ca) && !Character.isDigit(cb)) - { - return bias; - } - else if (!Character.isDigit(ca)) - { - return -1; - } - else if (!Character.isDigit(cb)) - { - return +1; - } - else if (ca < cb) - { - if (bias == 0) - { - bias = -1; - } - } - else if (ca > cb) - { - if (bias == 0) - bias = +1; - } - else if (ca == 0 && cb == 0) - { - return bias; - } - } - } - - public int compare(Object o1, Object o2) - { - String a = o1.toString(); - String b = o2.toString(); - - int ia = 0, ib = 0; - int nza = 0, nzb = 0; - char ca, cb; - int result; - - while (true) - { - // only count the number of zeroes leading the last number compared - nza = nzb = 0; - - ca = charAt(a, ia); - cb = charAt(b, ib); - - // skip over leading spaces or zeros - while (Character.isSpaceChar(ca) || ca == '0') - { - if (ca == '0') - { - nza++; - } - else - { - // only count consecutive zeroes - nza = 0; - } - - ca = charAt(a, ++ia); - } - - while (Character.isSpaceChar(cb) || cb == '0') - { - if (cb == '0') - { - nzb++; - } - else - { - // only count consecutive zeroes - nzb = 0; - } - - cb = charAt(b, ++ib); - } - - // process run of digits - if (Character.isDigit(ca) && Character.isDigit(cb)) - { - if ((result = compareRight(a.substring(ia), b.substring(ib))) != 0) - { - return result; - } - } - - if (ca == 0 && cb == 0) - { - // The strings compare the same. Perhaps the caller - // will want to call strcmp to break the tie. - return nza - nzb; - } - - if (ca < cb) - { - return -1; - } - else if (ca > cb) - { - return +1; - } - - ++ia; - ++ib; - } - } - - static char charAt(String s, int i) - { - if (i >= s.length()) - { - return 0; - } - else - { - return s.charAt(i); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/OmaLinkUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/OmaLinkUtil.java deleted file mode 100644 index 92b0f8f7727..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/OmaLinkUtil.java +++ /dev/null @@ -1,166 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.net.URL; -import java.net.MalformedURLException; -import java.util.HashMap; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; - -/** - * Utility Class for Redirecting to the Online Mutation Assessor (OMA) Web Site. - * - * We redirect from the Portal to the OMA web site for two reasons: - * - * 1. To track usage, e.g. how many people actually click on links from the portal to OMA. - * 2. To address the security settings on the OMA web site, which prevent HTTP Referral URLs - * from containing new line characters, which frequently occurs within the gene set box. - * - * @author Ethan Cerami. - */ -public class OmaLinkUtil { - private final static String OMA_REDIRECT_LINK = "omaRedirect.do?"; - private final static String SITE_PARAM = "site"; - private final static ArrayList EMPTY_FIELD_MARKERS= new ArrayList(Arrays.asList("", "NA", "[Not Available]")); - - /** - * Creates a Redirect Link from Portal to OMA. - * - * Incoming links look like this: - * http://mutationassessor.org/?cm=var&var=17,7517830,G,C&fts=all - * - * Outgoing links look like this: - * omaRedirect.do?path=/&cm=var&var=17,7517830,G,C&fts=all - * - * @param omaUrl Incoming Link to OMA. - * @return Redirect Link from Portal to OMA. - * @throws MalformedURLException Malformed URL Error. - */ - public static String createOmaRedirectLink(String omaUrl) throws MalformedURLException { - if (EMPTY_FIELD_MARKERS.contains(omaUrl)) { - throw new MalformedURLException("value is empty field marker: " + omaUrl); - } - omaUrl = conditionallyPrependHttp(omaUrl); - URL url = new URL (omaUrl); - String site = url.getHost(); - String path = url.getPath(); - String query = url.getQuery(); - return OMA_REDIRECT_LINK + SITE_PARAM + "=" + site + path + "&" + query; - } - - /** - * Creates a Direct Link to the OMA Web Site. - * - * Incoming query string like this: - * path=/&cm=var&var=17,7517830,G,C&fts=all - * - * Outgoing links look like this: - * http://mutationassessor.org/?cm=var&var=17,7517830,G,C&fts=all - * - * @param omaQueryString OMA Query String. - * @return Direct Link to OMA Web Site. - * @throws MalformedURLException Malformed URL Error. - */ - public static String createOmaLink(String omaQueryString) throws MalformedURLException { - if (EMPTY_FIELD_MARKERS.contains(omaQueryString)) { - throw new MalformedURLException("value is empty field marker: " + omaQueryString); - } - omaQueryString = removePath(omaQueryString); - String params[] = omaQueryString.split("&"); - HashMap paramMap = getParameterMap(params); - String path = paramMap.get(SITE_PARAM); - ArrayList keyList = getKeyList(paramMap); - String queryString = createQueryString(keyList, paramMap); - return "http://" + path + "?" + queryString; - } - - public static boolean omaLinkIsValid(String omaQueryString) { - return !(omaQueryString == null || omaQueryString.length() == 0 || EMPTY_FIELD_MARKERS.contains(omaQueryString)); - } - - private static String conditionallyPrependHttp(String omaUrl) { - if (!omaUrl.startsWith("http://")) { - omaUrl = "http://" + omaUrl; - } - return omaUrl; - } - - private static String removePath(String omaQueryString) { - omaQueryString = omaQueryString.replaceAll(OMA_REDIRECT_LINK, ""); - if (omaQueryString.startsWith("?")) { - omaQueryString = omaQueryString.substring(1); - } - return omaQueryString; - } - - private static String createQueryString(ArrayList keyList, - HashMap paramMap) { - StringBuffer queryString = new StringBuffer(); - for (int i=0; i getParameterMap(String params[]) { - HashMap paramMap = new HashMap(); - for (String param : params) { - String parts[] = param.split("="); - paramMap.put(parts[0], parts[1]); - } - return paramMap; - } - - private static ArrayList getKeyList(HashMap paramMap) { - ArrayList keyList = new ArrayList(); - for (String currentKey: paramMap.keySet()) { - if (!currentKey.equals(SITE_PARAM)) { - keyList.add(currentKey); - } - } - Collections.sort(keyList); - return keyList; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/OncoPrintSpecificationDriver.java b/core/src/main/java/org/mskcc/cbio/portal/util/OncoPrintSpecificationDriver.java deleted file mode 100644 index ec2a8013a08..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/OncoPrintSpecificationDriver.java +++ /dev/null @@ -1,143 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.ArrayList; -import java.util.HashSet; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.CallOncoPrintSpecParser; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticDataTypes; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintGeneDisplaySpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintLangException; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintSpecification; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ParserOutput; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.GeneticProfile; - -public class OncoPrintSpecificationDriver { - - /** - * A wrapper for the OncoPrintSpec parser, which includes the list of genetic - * data types input in the user's checkboxes. Performs two complementary - * functions: - *

      - *
    • LimitLanguageDefaultToProfile: Limit the specification returned by the - * language to the genetic data types that the user selects in the - * checkboxes. - *
    • LanguageCannotOverrunProfile: If the user explicitly selects a data - * type in the language, but does not choose it in the checkboxes, add an - * error. - *
    - *

    - * - * @param geneListStr - * an OncoPrintSpec specification - * @param geneticProfileIdSet - * profile strings entered by the user - * @param profileList - * all profiles for the selected cancer type - * @return output from parsing geneListStr - */ - static public ParserOutput callOncoPrintSpecParserDriver(String geneListStr, HashSet geneticProfileIdSet, - ArrayList profileList, double zScoreThreshold, double rppaScoreThreshold) { - // I. LimitLanguageDefaultToProfile: Create an OncoPrintGeneDisplaySpec - // from the geneticProfileIdSet, and use that as the default for the parse - // make an OncoPrintGeneDisplaySpec, from geneticProfileIdSet, profileList and zScoreThreshold - OncoPrintGeneDisplaySpec checkboxInputOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - for (GeneticProfile geneticProfile : profileList) { - if (geneticProfileIdSet.contains(geneticProfile.getStableId())) { - if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.COPY_NUMBER_ALTERATION) { - checkboxInputOncoPrintGeneDisplaySpec.setDefault( GeneticDataTypes.CopyNumberAlteration ); - } - if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.MRNA_EXPRESSION) { - checkboxInputOncoPrintGeneDisplaySpec.setDefaultExpression(zScoreThreshold, GeneticDataTypes.Expression); - } - if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.PROTEIN_LEVEL) { - checkboxInputOncoPrintGeneDisplaySpec.setDefaultExpression(rppaScoreThreshold, GeneticDataTypes.RPPA); - } - if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.PROTEIN_ARRAY_PROTEIN_LEVEL) { - checkboxInputOncoPrintGeneDisplaySpec.setDefaultExpression(rppaScoreThreshold, GeneticDataTypes.RPPA); - } - if (geneticProfile.getGeneticAlterationType() == GeneticAlterationType.MUTATION_EXTENDED) { - checkboxInputOncoPrintGeneDisplaySpec.setDefault( GeneticDataTypes.Mutation ); - } - } - } - ParserOutput theOncoPrintSpecParserOutput = CallOncoPrintSpecParser.callOncoPrintSpecParser(geneListStr, checkboxInputOncoPrintGeneDisplaySpec); - // II. LanguageCannotOverrunProfile: If the OncoSpec asked for data types - // not in the geneticProfileIdSet, add semantics error(s) - OncoPrintSpecification anOncoPrintSpecification = theOncoPrintSpecParserOutput.getTheOncoPrintSpecification(); - ArrayList theSemanticsErrors = theOncoPrintSpecParserOutput.getSemanticsErrors(); - OncoPrintGeneDisplaySpec unionOncoPrintGeneDisplaySpec = anOncoPrintSpecification.getUnionOfPossibleLevels(); - for (GeneticDataTypes aGeneticDataType : GeneticDataTypes.values()) { - if (unionOncoPrintGeneDisplaySpec.typeDifference(checkboxInputOncoPrintGeneDisplaySpec, aGeneticDataType)) { - theSemanticsErrors.add(new OncoPrintLangException("Error: " + aGeneticDataType + - " specified in the list of genes, but not selected in the Genetic Profile Checkboxes.")); - } - } - return theOncoPrintSpecParserOutput; - } - - /** - * A wrapper for the OncoPrintSpec parser, which includes the list of genetic - * data types input in the user's checkboxes. Performs two complementary - * functions: - *

      - *
    • LimitLanguageDefaultToProfile: Limit the specification returned by the - * language to the genetic data types that the user selects in the - * checkboxes. - *
    • LanguageCannotOverrunProfile: If the user explicitly selects a data - * type in the language, but does not choose it in the checkboxes, add an - * error. - *
    - *

    - * - * @param geneListStr an OncoPrintSpec specification - * @return output from parsing geneListStr - */ - static public ParserOutput callOncoPrintSpecParserDriver(String geneListStr) { - OncoPrintGeneDisplaySpec checkboxInputOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - ParserOutput theOncoPrintSpecParserOutput = CallOncoPrintSpecParser.callOncoPrintSpecParser(geneListStr, checkboxInputOncoPrintGeneDisplaySpec); - // II. LanguageCannotOverrunProfile: If the OncoSpec asked for data types - // not in the geneticProfileIdSet, add semantics error(s) - OncoPrintSpecification anOncoPrintSpecification = theOncoPrintSpecParserOutput.getTheOncoPrintSpecification(); - ArrayList theSemanticsErrors = theOncoPrintSpecParserOutput.getSemanticsErrors(); - OncoPrintGeneDisplaySpec unionOncoPrintGeneDisplaySpec = anOncoPrintSpecification.getUnionOfPossibleLevels(); - for (GeneticDataTypes aGeneticDataType : GeneticDataTypes.values()) { - if (unionOncoPrintGeneDisplaySpec.typeDifference(checkboxInputOncoPrintGeneDisplaySpec, aGeneticDataType)) { - theSemanticsErrors.add( new OncoPrintLangException("Error: " + aGeneticDataType + - " specified in the list of genes, but not selected in the Genetic Profile Checkboxes.")); - } - } - return theOncoPrintSpecParserOutput; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/OncoPrintUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/OncoPrintUtil.java deleted file mode 100644 index 22066a5ebca..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/OncoPrintUtil.java +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.model.SampleList; - -import java.util.Formatter; -import java.util.List; - -public class OncoPrintUtil { - - /** - * Constructs the OncoPrint patient set description. - * - * @param sampleSetId String - * @param sampleSets List - * - * @return String - */ - public static String getSampleSetDescription(String sampleSetId, List sampleSets) { - - StringBuilder builder = new StringBuilder(); - for (SampleList sampleSet : sampleSets) { - if (sampleSetId.equals(sampleSet.getStableId())) { - builder.append(sampleSet.getName() + ": " + sampleSet.getDescription()); - } - } - return builder.toString(); - } - - /** - * Format percentage. - * - *

    - * if value == 0 return "--" - * case value - * 0: return "--" - * 0%" - * - * @param value double - * - * @return String - */ - public static String alterationValueToString(double value) { - - // in oncoPrint show 0 percent as 0%, not -- - if (0.0 < value && value <= 0.01) { - return "<1%"; - } - - // if( 1.0 < value ){ - Formatter f = new Formatter(); - f.format("%.0f", value * 100.0); - return f.out().toString() + "%"; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/OncokbHotspotUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/OncokbHotspotUtil.java deleted file mode 100644 index fda9eaa6e7e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/OncokbHotspotUtil.java +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ -package org.mskcc.cbio.portal.util; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.util.*; -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -/** - * - * @author jgao - */ -public final class OncokbHotspotUtil { - private OncokbHotspotUtil() {} - private static Map> linkMap = null; - - - /** - * - * @param gene - * @param alteration - * @return - */ - public static Boolean getOncokbHotspot(String gene, String alteration) throws IOException { - if (linkMap==null) { - linkMap = getOncokbHotspot(); - } - - Map geneInfo = linkMap.get(gene); - if (geneInfo != null) { - Pattern p = Pattern.compile("([A-Z][0-9]+)([A-Z])"); - Matcher m = p.matcher(alteration); - if (m.matches()) { - String codon = m.group(1); - if(geneInfo.containsKey(codon)) { - return true; - }else{ - return false; - } - }else{ - return false; - } - } - - return false; - } - - /** - * - * @return Map> - * @throws IOException - */ - private static Map> getOncokbHotspot() throws IOException { - Map> hotspots - = new HashMap<>(); - - InputStream inputStream = OncokbHotspotUtil.class.getClassLoader().getResourceAsStream("chang_hotspot.txt"); - BufferedReader br = new BufferedReader(new InputStreamReader(inputStream)); - String line; - while ((line = br.readLine()) != null) { - String[] items = line.split("\t"); - if(items.length > 1 && items.length < 4) { - String hugoSymbol = items[0]; - String codon = items[1]; -// String[] variants = items.length>2?items[2].split("\\|"):null; - - if(codon != null) { - if(!hotspots.containsKey(hugoSymbol)) { - hotspots.put(hugoSymbol, new HashMap()); - } -// if(variants != null && variants.length > 0) { -// for(String aa : variants) { -// String [] datum = aa.split(":"); -// if(datum.length == 2) { -// hotspots.get(hugoSymbol).put(codon+datum[0], Integer.parseInt(datum[1])); -// } -// } -// }else{ - hotspots.get(hugoSymbol).put(codon, 1000000); -// } - } - } - } - - return hotspots; - } -} - diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/PhpCache.java b/core/src/main/java/org/mskcc/cbio/portal/util/PhpCache.java deleted file mode 100644 index cb9c3fa3c0f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/PhpCache.java +++ /dev/null @@ -1,158 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.apache.commons.httpclient.HttpClient; -import org.apache.commons.httpclient.HttpException; -import org.apache.commons.httpclient.HttpStatus; -import org.apache.commons.httpclient.methods.GetMethod; - -import java.io.IOException; -import java.util.Date; - -/** - * PHP Cache of Global Components. - * Enables us to retrieve, store and display global header, footer and righ column, - * as globally defined for all pages within the cBio Cancer Genomics web site. - */ -public class PhpCache { - private static PhpCache cache; - private String header; - private String footer; - private String rightCol; - private Date timeOfLastRetrieval; - private static final long TWO_HOURS = 1000 * 60 * 60 * 2; - - /** - * Gets the singleton instance of this class. - * - * @return PhpCache Object. - */ - public static PhpCache getInstance() { - if (cache == null) { - cache = new PhpCache(); - } - return cache; - } - - /** - * Private Constructor. - * Enforces singleton pattern. - */ - private PhpCache() { - initCache(); - } - - /** - * Initializes the PHP Cache. - */ - private void initCache() { - header = getPhpComponent("header.php"); - footer = getPhpComponent("footer.php"); - rightCol = getPhpComponent("right_column.php"); - timeOfLastRetrieval = new Date(); - } - - /** - * Gets the header. - * - * @return header component. - */ - public String getHeader() { - conditionallyUpdateCache(); - return header; - } - - /** - * Gets the footer. - * - * @return footer component. - */ - public String getFooter() { - conditionallyUpdateCache(); - return footer; - } - - /** - * Gets the right column. - * - * @return right column. - */ - public String getRightCol() { - conditionallyUpdateCache(); - return rightCol; - } - - /** - * Conditionally update the cache every 2 Hours. - */ - private void conditionallyUpdateCache() { - Date currentDate = new Date(); - long diff = currentDate.getTime() - timeOfLastRetrieval.getTime(); - if (diff > TWO_HOURS) { - initCache(); - } - } - - /** - * Retrieve the PHP Component from the cBio Web Site. - * - * @param component component URL. - * @return component text/html. - */ - private String getPhpComponent(String component) { - String baseUrl = "http://cbio.mskcc.org/cancergenomics/components/"; - - // Create Apache HTTP Client - HttpClient client = new HttpClient(); - - try { - GetMethod method = new GetMethod(baseUrl + component); - - // Extract HTTP Status Code - int statusCode = client.executeMethod(method); - - // If all is OK, extract the response text - if (statusCode == HttpStatus.SC_OK) { - return ResponseUtil.getResponseString(method); - } else { - return ("Could not retrieve: " + component); - } - } catch (HttpException e) { - return ("Could not retrieve: " + component); - } catch (IOException e) { - return ("Could not retrieve: " + component); - } - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/ProfileMerger.java b/core/src/main/java/org/mskcc/cbio/portal/util/ProfileMerger.java deleted file mode 100644 index c0d8f5d0234..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/ProfileMerger.java +++ /dev/null @@ -1,224 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.ArrayList; -import java.util.HashMap; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.ProfileData; - -/* - * TODO: - * - * I think that these changes should be made to make that code more robust and easier, i.e. faster, to modify - * in the future. - * A value in a merged profile is stored as a String of the RE form (TYPE:VALUE;)+ I replaced constant ':' - * and ';' as used - * in these strings by defined constants ProfileMerger.TYPE_VALUE_SEPARATOR and ProfileMerger.VALUE_SEPARATOR, - * respectively. - * - * Since the VALUE in a PROTEIN_LEVEL or PHOSPHORYLATION data type can contain a ':', - * I changed ValueParser.parseValue to parse - * each TYPE:VALUE on the first ':'. - * - * These changes cause the tests on lines 154-155 of TestValueParser.testValueParser to fail. - * Unclear that we need these tests so I disabled them. - * - * Interactions between ValueParser and OncoPrintGeneDisplaySpec are overly complex and should be simplified. - * - * String-based enumerations, especially GeneticAlterationType, should be replaced with Java enums to - * 1) simplify the code, by, for example, - * replacing cascading if-else statements with switch statements, 2) provide reliable compile-time type checking, - * 3) provide opportunities for greater generality (such as operations on sets of enumerations), and - * 4) simplify the addition of new data types. Also, multiple enumerations, including those in - * the OncoSpec code, should be combined into one. - * - * ProfileMerger.determineAlteredStatus should return an object that stores the alteration, rather than a String, - * so we have the data already structured and it doesn't need to be parsed again (by ValueParser). - */ -/** - * Merge multiple ProfileData objects into one, so the data (in a String) for each gene,case pair - * contains the data from all input ProfileData objects. - */ -public class ProfileMerger { - private ProfileData profileData; - static final String VALUE_SEPARATOR = ";"; // Separator placed between multiple datatypes in the merged value - static final String TYPE_VALUE_SEPARATOR = ":"; // Separator placed between a datatype name and its value - - /** - * Constructor. - * - * @param profileList ArrayList of ProfileData Objects. - */ - public ProfileMerger(ArrayList profileList) { - - // Create Union of all Cases and all Genes - ArrayList caseList = new ArrayList(); - ArrayList geneList = new ArrayList(); - createUnion(profileList, caseList, geneList); - - // Create new HashMap of Merged Data - HashMap map = new HashMap(); - - // Perform the actual merge - mergeProfiles(map, profileList, caseList, geneList); - } - - /** - * Gets the new merged profile data object. - * - * @return ProfileData Object. - */ - public ProfileData getMergedProfile() { - return this.profileData; - } - - /** - * Perform the merge. - */ - private void mergeProfiles(HashMap map, ArrayList profileList, - ArrayList caseList, ArrayList geneList) { - // Iterate through all genes - for (String gene : geneList) { - - // Iterate through all cases - for (String caseId : caseList) { - - // Determine status of gene X in caseId Y. - String status = determineAlteredStatus(profileList, gene, caseId); - - // Store status in hash map - String key = createKey(gene, caseId); - map.put(key, status.toString()); - } - } - profileData = new ProfileData(map, geneList, caseList); - } - - /** - * Determines the alteration status of gene X in case Y. - */ - private String determineAlteredStatus(ArrayList profileList, - String gene, String caseId) { - // TODO: APG: I would prefer to have this return an object that stores the alteration, rather than a String - // so we have the data already structured and it doesn't need to be parsed again (by ValueParser) - StringBuffer status = new StringBuffer(""); - - // Iterate through all profiles - for (ProfileData data : profileList) { - - // Get the data value and alteration type for gene X in caseId Y in profile Z - String value = data.getValue(gene, caseId); - GeneticAlterationType alterationType = data.getGeneticProfile().getGeneticAlterationType(); - - // Handle Copy Number Changes - if (alterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION) { - if (value != null) { - status.append(GeneticAlterationType.COPY_NUMBER_ALTERATION.name() + TYPE_VALUE_SEPARATOR - + value + VALUE_SEPARATOR); - } - } else if (alterationType == GeneticAlterationType.MRNA_EXPRESSION) { - // Handle mRNA Data - if (value != null) { - status.append(GeneticAlterationType.MRNA_EXPRESSION.name() - + TYPE_VALUE_SEPARATOR + value + VALUE_SEPARATOR); - } - } else if (alterationType == GeneticAlterationType.MUTATION_EXTENDED) { - // Handle Mutation Data - if (value != null) { - status.append(GeneticAlterationType.MUTATION_EXTENDED.name() - + TYPE_VALUE_SEPARATOR + value + VALUE_SEPARATOR); - } - } else if (alterationType == GeneticAlterationType.METHYLATION) { - if (value != null) { - status.append(GeneticAlterationType.METHYLATION.name() - + TYPE_VALUE_SEPARATOR + value + VALUE_SEPARATOR); - } - } else if (alterationType == GeneticAlterationType.METHYLATION_BINARY) { - if (value != null) { - status.append(GeneticAlterationType.METHYLATION_BINARY.name() - + TYPE_VALUE_SEPARATOR + value + VALUE_SEPARATOR); - } - } else if (alterationType == GeneticAlterationType.PROTEIN_LEVEL) { - if (value != null) { - status.append(GeneticAlterationType.PROTEIN_LEVEL.name() - + TYPE_VALUE_SEPARATOR + value + VALUE_SEPARATOR); - } - } else if (alterationType == GeneticAlterationType.PHOSPHORYLATION) { - if (value != null) { - status.append(GeneticAlterationType.PHOSPHORYLATION.name() - + TYPE_VALUE_SEPARATOR + value + VALUE_SEPARATOR); - } - } else if (alterationType == GeneticAlterationType.PROTEIN_ARRAY_PROTEIN_LEVEL) { - if (value != null) { - status.append(GeneticAlterationType.PROTEIN_ARRAY_PROTEIN_LEVEL.name() - + TYPE_VALUE_SEPARATOR + value + VALUE_SEPARATOR); - } - } - } - return status.toString(); - } - - /** - * Creates the Union of all Cases and the Union of all Genes. - */ - private void createUnion(ArrayList profileList, - ArrayList caseIdList, ArrayList geneList) { - - // Iterate through all profiles - for (ProfileData data : profileList) { - - // Get the case list and the gene list - ArrayList currentCaseList = data.getCaseIdList(); - ArrayList currentGeneList = data.getGeneList(); - - // Conditionally add each new case to the global case list - for (String currentCaseId : currentCaseList) { - if (!caseIdList.contains(currentCaseId)) { - caseIdList.add(currentCaseId); - } - } - - // Conditionally add each new gene to the global gene list - for (String currentGene : currentGeneList) { - if (!geneList.contains(currentGene)) { - geneList.add(currentGene); - } - } - } - } - - private String createKey(String geneSymbol, String caseId) { - return geneSymbol + ":" + caseId; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/ProgressMonitor.java b/core/src/main/java/org/mskcc/cbio/portal/util/ProgressMonitor.java deleted file mode 100644 index cd95a9aee06..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/ProgressMonitor.java +++ /dev/null @@ -1,268 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashMap; -import java.util.Iterator; -import java.util.List; -import java.util.TreeSet; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -/** - * Monitors Progress of Long Term Tasks. - * - * @author Ethan Cerami. - */ -public class ProgressMonitor { - private int maxValue; - private int curValue; - private String currentMessage; - private StringBuffer log = new StringBuffer(); - private static Logger logger = LoggerFactory.getLogger(ProgressMonitor.class); - private boolean consoleMode; - private boolean showProgress; - private TreeSet warnings = new TreeSet<>(); - private HashMap warningCounts = new HashMap<>(); - private List debugMessages = new ArrayList<>(); - - private static final ProgressMonitor progressMonitor = new ProgressMonitor(); - - /** - * Private ctor for enforcing singleton - */ - private ProgressMonitor() { - - } - - private static boolean isRunningOnServer() { - return ServerDetector.getServerId() != null; - } - /** - * Sets Console Flag. - * When set to true Progress Monitor Messages are displayed to System.out. - * - * @param consoleFlag Console Mode Flag. - */ - public static void setConsoleMode(boolean consoleFlag) { - progressMonitor.consoleMode = consoleFlag; - } - - /** - * Sets consoleMode to true and tries to infer showProgress mode from args. If an argument - * with name "--noprogress" is found, then showProgress is set to false - * - * @param args - */ - public static void setConsoleModeAndParseShowProgress(String[] args) { - //default - setConsoleMode(true); - if (Arrays.asList(args).contains("--noprogress")) { - setShowProgress(false); - } else { - //default: - setShowProgress(true); - } - - } - - /** - * Whether the progress (in % complete and memory used) should be - * printed to the console. - * - * @param showProgress : set to false to avoid extra messages about % complete and memory usage. - */ - public static void setShowProgress(boolean showProgress) { - progressMonitor.showProgress = showProgress; - } - - /** - * Whether the progress (in % complete and memory used) should be - * printed to the console. - * - * @return returns true if !isRunningOnServer() and progressMonitor.showProgress==true - */ - public static boolean isShowProgress() { - return !isRunningOnServer() && progressMonitor.showProgress; - } - - /** - * Gets Console Mode Flag. - * - * @return Boolean Flag. - */ - public static boolean isConsoleMode() { - return !isRunningOnServer() && progressMonitor.consoleMode; - } - - /** - * Gets Percentage Complete. - * - * @return double value. - */ - public static double getPercentComplete() { - if (progressMonitor.curValue == 0) { - return 0.0; - } else { - return (progressMonitor.curValue / (double) progressMonitor.maxValue); - } - } - - /** - * Gets Max Value. - * - * @return max value. - */ - public static int getMaxValue() { - return progressMonitor.maxValue; - } - - /** - * Sets Max Value. - * - * @param maxValue Max Value. - */ - public static void setMaxValue(int maxValue) { - progressMonitor.maxValue = maxValue; - progressMonitor.curValue = 0; - } - - /** - * Gets Current Value. - * - * @return Current Value. - */ - public static int getCurValue() { - return progressMonitor.curValue; - } - - /** - * Increments the Current Value. - */ - public static void incrementCurValue() { - progressMonitor.curValue++; - } - - /** - * Sets the Current Value. - * - * @param curValue Current Value. - */ - public static void setCurValue(int curValue) { - progressMonitor.curValue = curValue; - } - - /** - * Gets the Current Task Message. - * - * @return Current Task Message. - */ - public static String getCurrentMessage() { - return progressMonitor.currentMessage; - } - - /** - * Gets Log of All Messages. - * - * @return String Object. - */ - public static String getLog() { - if (isRunningOnServer()) - return null; - return progressMonitor.log.toString(); - } - - /** - * Logs a Message. - * - * @param currentMessage Current Task Message. - */ - public static void setCurrentMessage(String currentMessage) { - if (isRunningOnServer()) - return; - progressMonitor.currentMessage = currentMessage; - progressMonitor.log.append(currentMessage + "\n"); - if (progressMonitor.consoleMode) { - System.out.println(currentMessage); - } - } - - public static void logWarning(String warning) { - logger.warn(warning); - if (isRunningOnServer()) - return; - progressMonitor.warnings.add(warning); - if (!progressMonitor.warningCounts.containsKey(warning)) { - progressMonitor.warningCounts.put(warning, 0); - } - progressMonitor.warningCounts.put(warning, progressMonitor.warningCounts.get(warning)+1); - } - - public static void logDebug(String debugMessage) { - logger.debug(debugMessage); - if (isShowProgress()) - progressMonitor.debugMessages.add(debugMessage); - } - - public static ArrayList getWarnings() { - ArrayList ret = new ArrayList<>(); - if (isRunningOnServer()) - return ret; - for(Iterator sit = progressMonitor.warnings.iterator(); sit.hasNext(); ) { - String w = sit.next(); - ret.add(w + "; "+progressMonitor.warningCounts.get(w)+"x"); - } - return ret; - } - - /** - * Reset the warnings list. - */ - public static void resetWarnings() { - progressMonitor.warnings.clear(); - progressMonitor.warningCounts.clear(); - } - - public static ArrayList getMessages() { - ArrayList ret = getWarnings(); - ret.addAll(progressMonitor.debugMessages); - return ret; - } - - public static List getDebugMessages() { - return progressMonitor.debugMessages; - - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/ResponseUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/ResponseUtil.java deleted file mode 100644 index 563afffe314..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/ResponseUtil.java +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.apache.commons.httpclient.HttpMethodBase; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; - -/** - * Response Utility Class. - */ -public class ResponseUtil { - - /** - * Reads in the Response String from Server. - * - * @param method HTTP Method. - * @return Response String. - * @throws IOException IO Error. - */ - public static String getResponseString(HttpMethodBase method) throws IOException { - return getResponseString(method.getResponseBodyAsStream()); - } - - /** - * Reads in the Response String from Server. - * - * @param inStream InputStream. - * @return Response String. - * @throws IOException IO Error. - */ - public static String getResponseString(InputStream inStream) throws IOException { - BufferedReader in = new BufferedReader(new InputStreamReader(inStream)); - StringBuffer buf = new StringBuffer(); - String line = in.readLine(); - while (line != null) { - buf.append(line); - buf.append("\n"); - line = in.readLine(); - } - return buf.toString(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/SampleSetUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/SampleSetUtil.java deleted file mode 100644 index 4af79e8fb29..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/SampleSetUtil.java +++ /dev/null @@ -1,126 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.web_api.GetSampleLists; - -import java.util.*; - -/** - * Utility class for the user-defined sample sets (samplet ID list). - * - * @author Selcuk Onur Sumer - */ -public class SampleSetUtil -{ - /** - * Checks whether the provided sample IDs are valid for a specific - * cancer study. This method returns a list of invalid samples if - * any, or returns an empty list if all the samples are valid. - * - * @param studyId stable cancer study id - * @param sampleIds sample IDs as a single string - * @return list of invalid samples - * @throws DaoException if a DB error occurs - */ - public static List validateSampleSet(String studyId, - String sampleIds) throws DaoException - { - ArrayList invalidSample = new ArrayList(); - - // get cancer study for the given stable id - CancerStudy study = DaoCancerStudy.getCancerStudyByStableId(studyId); - int iStudyId = study.getInternalId(); - - if (sampleIds != null) - { - - // validate each sample ID - for(String sampleId: sampleIds.trim().split("\\s+")) - { - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId(iStudyId, sampleId); - - if (sample==null) - { - invalidSample.add(sampleId); - } - } - } - - return invalidSample; - } - - /** - * Shortens the (possibly long) user-defined sample id list by hashing. - * Also adds the generated (key, text) pair to the database for - * future reference. - * - * @param sampleIds sample ID string to be shortened - * @return short (hashed) version of sample IDs - * @throws DaoException - */ - public static String shortenSampleIds(String sampleIds) - { - // return empty - return ""; - } - - /** - * Retrieves the sample ID list corresponding to the given key. - * - * @param sampleIdsKey key for a specific sample id list - * @return sample id list corresponding to the given key - * @throws DaoException - */ - public static String getSampleIds(String sampleIdsKey) - { - // return empty - return ""; - } - - /** - * Normalize the given sample list by trimming and replacing any white space - * character with single space. This is to prevent same sample lists - * to be interpreted as different lists just because of the different white - * space characters. - * - * @param sampleIds list of sample ids to be normalized - * @return normalized string with the same sample ids - */ - public static String normalizeSampleIds(String sampleIds) - { - return sampleIds.trim().replaceAll("\\s", " "); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/SequenceCenterUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/SequenceCenterUtil.java deleted file mode 100644 index 2409b5d03b2..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/SequenceCenterUtil.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -public class SequenceCenterUtil { - - public static String getSequencingCenterAbbrev(String center) { - if (center != null) { - if (center.equalsIgnoreCase("broad.mit.edu")) { - return "Broad"; - } else if (center.equalsIgnoreCase("genome.wustl.edu")) { - return "WashU"; - } else if (center.equalsIgnoreCase("hgsc.bcm.edu")) { - return "Baylor"; - } else { - return center; - } - } - return center; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/ServerDetector.java b/core/src/main/java/org/mskcc/cbio/portal/util/ServerDetector.java deleted file mode 100644 index 1033ae42ca4..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/ServerDetector.java +++ /dev/null @@ -1,347 +0,0 @@ -/** - * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package org.mskcc.cbio.portal.util; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - - -/** - * - * - * @author Brian Wing Shun Chan - * - */ -public class ServerDetector { - private static final Logger logger = LoggerFactory.getLogger(ServerDetector.class); - private static boolean isInstanceInitialized = false; - private static ServerDetector instance = new ServerDetector(); - - private String serverId; - private Boolean geronimo; - private Boolean glassfish; - private Boolean jBoss; - private Boolean jetty; - private Boolean jonas; - private Boolean oc4j; - private Boolean orion; - private Boolean pramati; - private Boolean resin; - private Boolean rexIP; - private Boolean tomcat; - private Boolean webLogic; - private Boolean webSphere; - - public static final String GERONIMO_CLASS = - "/org/apache/geronimo/system/main/Daemon.class"; - - public static final String GERONIMO_ID = "geronimo"; - - public static final String GLASSFISH_ID = "glassfish"; - - public static final String GLASSFISH_SYSTEM_PROPERTY = - "com.sun.aas.instanceRoot"; - - public static final String JBOSS_CLASS = "/org/jboss/Main.class"; - - public static final String JBOSS_ID = "jboss"; - - public static final String JETTY_CLASS = "/org/mortbay/jetty/Server.class"; - - public static final String JETTY_ID = "jetty"; - - public static final String JONAS_CLASS = - "/org/objectweb/jonas/server/Server.class"; - - public static final String JONAS_ID = "jonas"; - - public static final String OC4J_CLASS = - "oracle.oc4j.util.ClassUtils"; - - public static final String OC4J_ID = "oc4j"; - - public static final String ORION_CLASS = - "/com/evermind/server/ApplicationServer.class"; - - public static final String ORION_ID = "orion"; - - public static final String PRAMATI_CLASS = "/com/pramati/Server.class"; - - public static final String PRAMATI_ID = "pramati"; - - public static final String RESIN_CLASS = - "/com/caucho/server/resin/Resin.class"; - - public static final String RESIN_ID = "resin"; - - public static final String REXIP_CLASS = "/com/tcc/Main.class"; - - public static final String REXIP_ID = "rexip"; - - public static final String TOMCAT_BOOTSTRAP_CLASS = - "/org/apache/catalina/startup/Bootstrap.class"; - - public static final String TOMCAT_EMBEDDED_CLASS = - "/org/apache/catalina/startup/Embedded.class"; - - public static final String TOMCAT_ID = "tomcat"; - - public static final String WEBLOGIC_CLASS = "/weblogic/Server.class"; - - public static final String WEBLOGIC_ID = "weblogic"; - - public static final String WEBSPHERE_CLASS = - "/com/ibm/websphere/product/VersionInfo.class"; - - public static final String WEBSPHERE_ID = "websphere"; - - public static String getServerId() { - ServerDetector sd = instance; - - if (!isInstanceInitialized) { - if (isGeronimo()) { - sd.serverId = GERONIMO_ID; - } - else if (isGlassfish()) { - sd.serverId = GLASSFISH_ID; - } - else if (isJBoss()) { - sd.serverId = JBOSS_ID; - } - else if (isJOnAS()) { - sd.serverId = JONAS_ID; - } - else if (isOC4J()) { - sd.serverId = OC4J_ID; - } - else if (isOrion()) { - sd.serverId = ORION_ID; - } - else if (isPramati()) { - sd.serverId = PRAMATI_ID; - } - else if (isResin()) { - sd.serverId = RESIN_ID; - } - else if (isRexIP()) { - sd.serverId = REXIP_ID; - } - else if (isWebLogic()) { - sd.serverId = WEBLOGIC_ID; - } - else if (isWebSphere()) { - sd.serverId = WEBSPHERE_ID; - } - - if (isJetty()) { - if (sd.serverId == null) { - sd.serverId = JETTY_ID; - } - else { - sd.serverId += "-" + JETTY_ID; - } - } - else if (isTomcat()) { - if (sd.serverId == null) { - sd.serverId = TOMCAT_ID; - } - else { - sd.serverId += "-" + TOMCAT_ID; - } - } - - if (sd.serverId == null && logger.isInfoEnabled()) { - logger.info("Detected server " + sd.serverId); - } - isInstanceInitialized = true; - } - - return sd.serverId; - } - - public static boolean isGeronimo() { - ServerDetector sd = instance; - - if (sd.geronimo == null) { - sd.geronimo = _detect(GERONIMO_CLASS); - } - - return sd.geronimo.booleanValue(); - } - - public static boolean isGlassfish() { - ServerDetector sd = instance; - - if (sd.glassfish == null) { - String value = System.getProperty(GLASSFISH_SYSTEM_PROPERTY); - - if (value != null) { - sd.glassfish = Boolean.TRUE; - } - else { - sd.glassfish = Boolean.FALSE; - } - } - - return sd.glassfish.booleanValue(); - } - - public static boolean isJBoss() { - ServerDetector sd = instance; - - if (sd.jBoss == null) { - sd.jBoss = _detect(JBOSS_CLASS); - } - - return sd.jBoss.booleanValue(); - } - - public static boolean isJetty() { - ServerDetector sd = instance; - - if (sd.jetty == null) { - sd.jetty = _detect(JETTY_CLASS); - } - - return sd.jetty.booleanValue(); - } - - public static boolean isJOnAS() { - ServerDetector sd = instance; - - if (sd.jonas == null) { - sd.jonas = _detect(JONAS_CLASS); - } - - return sd.jonas.booleanValue(); - } - - public static boolean isOC4J() { - ServerDetector sd = instance; - - if (sd.oc4j == null) { - sd.oc4j = _detect(OC4J_CLASS); - } - - return sd.oc4j.booleanValue(); - } - - public static boolean isOrion() { - ServerDetector sd = instance; - - if (sd.orion == null) { - sd.orion = _detect(ORION_CLASS); - } - - return sd.orion.booleanValue(); - } - - public static boolean isPramati() { - ServerDetector sd = instance; - - if (sd.pramati == null) { - sd.pramati = _detect(PRAMATI_CLASS); - } - - return sd.pramati.booleanValue(); - } - - public static boolean isResin() { - ServerDetector sd = instance; - - if (sd.resin == null) { - sd.resin = _detect(RESIN_CLASS); - } - - return sd.resin.booleanValue(); - } - - public static boolean isRexIP() { - ServerDetector sd = instance; - - if (sd.rexIP == null) { - sd.rexIP = _detect(REXIP_CLASS); - } - - return sd.rexIP.booleanValue(); - } - - public static boolean isTomcat() { - ServerDetector sd = instance; - - if (sd.tomcat == null) { - sd.tomcat = _detect(TOMCAT_BOOTSTRAP_CLASS); - } - - if (sd.tomcat == null) { - sd.tomcat = _detect(TOMCAT_EMBEDDED_CLASS); - } - - return sd.tomcat.booleanValue(); - } - - public static boolean isWebLogic() { - ServerDetector sd = instance; - - if (sd.webLogic == null) { - sd.webLogic = _detect(WEBLOGIC_CLASS); - } - - return sd.webLogic.booleanValue(); - } - - public static boolean isWebSphere() { - ServerDetector sd = instance; - - if (sd.webSphere == null) { - sd.webSphere = _detect(WEBSPHERE_CLASS); - } - - return sd.webSphere.booleanValue(); - } - - private static Boolean _detect(String className) { - try { - ClassLoader.getSystemClassLoader().loadClass(className); - - return Boolean.TRUE; - } - catch (ClassNotFoundException cnfe) { - ServerDetector sd = instance; - - Class c = sd.getClass(); - - if (c.getResource(className) != null) { - return Boolean.TRUE; - } - else { - return Boolean.FALSE; - } - } - } - - private ServerDetector() { - } - - -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/SessionServiceFilter.java b/core/src/main/java/org/mskcc/cbio/portal/util/SessionServiceFilter.java deleted file mode 100644 index 8c874e7e2f5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/SessionServiceFilter.java +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.apache.commons.lang3.StringUtils; - -import javax.servlet.*; -import javax.servlet.http.*; - -import java.io.IOException; - -/** - * - * @author Manda Wilson - */ -public class SessionServiceFilter implements Filter { - - private static Logger LOG = LoggerFactory.getLogger(SessionServiceFilter.class); - // this is used to see if we have already redirected - // to same URL with the URL fragment/anchor (#blah) - private static String RETRIEVED_SESSION_PARAM = "found_session"; - - @Override - public void init(FilterConfig aConfig) throws ServletException { - //do nothing - } - - @Override - public void destroy() { - //do nothing - } - - @Override - public void doFilter(ServletRequest aRequest, - ServletResponse aResponse, - FilterChain aChain) - throws IOException, ServletException { - LOG.debug("SessionServiceFilter.doFilter()"); - LOG.info("SessionServiceFilter.doFilter() -- calling request.getSession() to create a valid session which is a requirement for the session service API proxy"); - HttpServletRequest request = (HttpServletRequest) aRequest; - request.getSession(); - String sessionServiceURL = GlobalProperties.getSessionServiceUrl(); - if (!StringUtils.isBlank(sessionServiceURL)) { - SessionServiceRequestWrapper wrapper = new SessionServiceRequestWrapper(request); - // do not get this parameter from the SessionServiceRequestWrapper -- it was not stored as part of the session - String foundSession = request.getParameter(RETRIEVED_SESSION_PARAM); - String sessionId = wrapper.getParameter(SessionServiceRequestWrapper.SESSION_ID_PARAM); - String urlHashData = wrapper.getParameter("url_hash_data"); - // check if we already added #fragment to URL, - // if not try to pull the fragment (url_hash_data) from session service - if (StringUtils.isBlank(foundSession) && !StringUtils.isBlank(sessionId) && !StringUtils.isBlank(urlHashData)) { - String requestURI = request.getRequestURI(); - String newURI = requestURI + "?" - + SessionServiceRequestWrapper.SESSION_ID_PARAM + "=" + sessionId - + "&" + RETRIEVED_SESSION_PARAM + "=true" - + "#" + urlHashData; - LOG.debug("SessionServiceFilter.doFilter(): need to include URL anchor, redirecting to '" + newURI + "'"); - HttpServletResponse response = (HttpServletResponse) aResponse; - // we have to do a client side redirect so this is reflected in browser location bar for javascript - response.sendRedirect(newURI); - return; - } - aChain.doFilter(wrapper, aResponse); - } else { - aChain.doFilter(aRequest, aResponse); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/SessionServiceRequestWrapper.java b/core/src/main/java/org/mskcc/cbio/portal/util/SessionServiceRequestWrapper.java deleted file mode 100644 index 261c694210f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/SessionServiceRequestWrapper.java +++ /dev/null @@ -1,133 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.apache.commons.lang3.StringUtils; - -import java.util.Collections; -import java.util.Enumeration; -import java.util.Map; -import java.util.HashMap; - -import javax.servlet.*; -import javax.servlet.http.*; - -/** - * - * @author Manda Wilson - */ -public class SessionServiceRequestWrapper extends HttpServletRequestWrapper { - - public static final String SESSION_ERROR = "session_error"; - public static final String SESSION_ID_PARAM = "session_id"; - - private static Logger LOG = LoggerFactory.getLogger(SessionServiceRequestWrapper.class); - private Map storedParameters; - private String sessionId; - - /** - * If session_id is a request parameter, calls session-service API to retrieve - * stored session. Stores SESSION_ERROR as a request attribute if the session is - * not found, or the session service returns an error. Stored session parameters - * override current request parameters. If session_id is not a request parameter, - * request behaves as normal. - * - * @param request wrapped HttpServletRequest - */ - public SessionServiceRequestWrapper(final HttpServletRequest request) { - super(request); - LOG.debug("new SessionServiceRequestWrapper()"); - sessionId = super.getParameter(SESSION_ID_PARAM); - LOG.debug("new SessionServiceRequestWrapper(): request parameter '" + SESSION_ID_PARAM + "' = '" + sessionId + "'"); - if (!StringUtils.isBlank(sessionId)) { - LOG.debug("new SessionServiceRequestWrapper(): retrieved parameters = '" + storedParameters + "'"); - try { - storedParameters = SessionServiceUtil.getSession(sessionId); - if (storedParameters == null || storedParameters.size() == 0) { - request.setAttribute(SESSION_ERROR, "Session with id '" + sessionId + "' not found."); - } - } catch (Exception e) { - request.setAttribute(SESSION_ERROR, "Session service error. Session with id '" + sessionId + "' not loaded. Try again later. If problem persists contact site administrator."); - } - } - } - - @Override - public String getParameter(final String name) { - if (storedParameters != null && !SESSION_ID_PARAM.equals(name)) { - LOG.debug("SessionServiceRequestWrapper.getParameter(" + name + "): accessing parameters from stored session with id '" + sessionId + "'"); - if (storedParameters.containsKey(name)) { - String value = storedParameters.get(name)[0]; - LOG.debug("SessionServiceRequestWrapper.getParameter(" + name + "): returning '" + value + "'"); - return value; - } - LOG.debug("SessionServiceRequestWrapper.getParameter(" + name + "): returning null - parameter name not found"); - return null; - } - LOG.debug("SessionServiceRequestWrapper.getParameter(" + name + "): accessing current request parameters"); - return super.getParameter(name); - } - - @Override - public Map getParameterMap() { - if (storedParameters != null) { - LOG.debug("SessionServiceRequestWrapper.getParameterMap(): accessing parameters from stored session with id '" + sessionId + "'"); - return Collections.unmodifiableMap(storedParameters); - } - LOG.debug("SessionServiceRequestWrapper.getParameterMap(): accessing current request parameters"); - return super.getParameterMap(); - } - - @Override - public Enumeration getParameterNames() { - if (storedParameters != null) { - LOG.debug("SessionServiceRequestWrapper.getParameterNames(): accessing parameters from stored session with id '" + sessionId + "'"); - return Collections.enumeration(storedParameters.keySet()); - } - LOG.debug("SessionServiceRequestWrapper.getParameterNames(): accessing current request parameters"); - return super.getParameterNames(); - } - - @Override - public String[] getParameterValues(final String name) { - if (storedParameters != null) { - LOG.debug("SessionServiceRequestWrapper.getParameterValues(): accessing parameters from stored session with id '" + sessionId + "'"); - return storedParameters.get(name); - } - LOG.debug("SessionServiceRequestWrapper.getParameterValues(): accessing current request parameters"); - return super.getParameterValues(name); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/SessionServiceUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/SessionServiceUtil.java deleted file mode 100644 index bd4bd2f30e5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/SessionServiceUtil.java +++ /dev/null @@ -1,171 +0,0 @@ -/* - * Copyright (c) 2015 - 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import com.fasterxml.jackson.core.type.TypeReference; -import com.fasterxml.jackson.databind.JsonNode; -import com.fasterxml.jackson.databind.ObjectMapper; -import java.io.IOException; -import java.io.StringWriter; -import java.net.HttpURLConnection; -import java.net.MalformedURLException; -import java.net.URL; -import java.nio.charset.Charset; -import java.util.Map; -import org.apache.commons.codec.binary.Base64; -import org.apache.commons.httpclient.HttpException; -import org.apache.commons.io.IOUtils; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.mskcc.cbio.portal.model.virtualstudy.VirtualStudy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpEntity; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpMethod; -import org.springframework.http.ResponseEntity; -import org.springframework.stereotype.Component; -import org.springframework.web.client.HttpStatusCodeException; -import org.springframework.web.client.RestTemplate; - -/** - * - * @author Manda Wilson - */ - -public class SessionServiceUtil { - - private static Logger LOG = LoggerFactory.getLogger(SessionServiceUtil.class); - - /** - * Returns an ServletRequest parameter map for a given sessionId. - * Returns null if the session was not found. - * - * @param sessionId - * @return an ServletRequest parameter map - * @throws HttpException if session service API returns with a response code that is not 404 or 200 - * @throws MalformedURLException - * @throws IOException - * @see ServletRequest#getParameterMap - */ - public static Map getSession(String sessionId) - throws HttpException, MalformedURLException, IOException { - LOG.debug("SessionServiceUtil.getSession()"); - Map parameterMap = null; - HttpURLConnection conn = null; - try { - URL url = new URL(GlobalProperties.getSessionServiceUrl() + "main_session/" + sessionId); - LOG.debug("SessionServiceUtil.getSession(): url = '" + url + "'"); - conn = (HttpURLConnection) url.openConnection(); - // Use basic authentication if provided (https://stackoverflow.com/questions/496651) - if (isBasicAuthEnabled()) { - conn.setRequestProperty("Authorization", getBasicAuthString()); - } - if (conn.getResponseCode() == HttpURLConnection.HTTP_OK) { - StringWriter stringWriter = new StringWriter(); - IOUtils.copy(conn.getInputStream(), stringWriter, Charset.forName("UTF-8")); - String contentString = stringWriter.toString(); - LOG.debug("SessionServiceUtil.getSession(): response = '" + contentString + "'"); - JsonNode json = new ObjectMapper().readTree(contentString); - LOG.debug("SessionServiceUtil.getSession(): response.data = '" + json.get("data").textValue() + "'"); - parameterMap = new ObjectMapper().readValue(json.get("data").toString(), new TypeReference>(){}); - } else { - LOG.warn("SessionServiceUtil.getSession(): conn.getResponseCode() = '" + conn.getResponseCode() + "'"); - if (conn.getResponseCode() == HttpURLConnection.HTTP_NOT_FOUND) { - return null; - } else if (conn.getResponseCode() == HttpURLConnection.HTTP_INTERNAL_ERROR) { - throw new HttpException("Internal server error"); - } else { - throw new HttpException("Unexpected error, response code '" + conn.getResponseCode() +"'"); - } - } - } catch (MalformedURLException mfue) { - LOG.warn("SessionServiceUtil.getSession(): MalformedURLException = '" + mfue.getMessage() + "'"); - throw mfue; - } catch (IOException ioe) { - LOG.warn("SessionServiceUtil.getSession(): IOException = '" + ioe.getMessage() + "'"); - throw ioe; - } finally { - if (conn != null) { - conn.disconnect(); - } - } - return parameterMap; - } - - public static Boolean isBasicAuthEnabled() { - return !GlobalProperties.getSessionServiceUser().equals("") && !GlobalProperties.getSessionServicePassword().equals(""); - } - - public static String getBasicAuthString() { - String auth = GlobalProperties.getSessionServiceUser() + ":" + GlobalProperties.getSessionServicePassword(); - byte[] encodedAuth = Base64.encodeBase64(auth.getBytes(Charset.forName("US-ASCII"))); - String authHeader = "Basic " + new String(encodedAuth); - return authHeader; - } - - public static HttpHeaders getHttpHeaders() { - return new HttpHeaders() {{ - if (isBasicAuthEnabled()) { - set( "Authorization", getBasicAuthString()); - } - set( "Content-Type", "application/json"); - }}; - } - - /** - * Return cohort object if there is success response from - * session-service API, else it would return null - * @param virtualStudyId - * @return cohort object - */ - public VirtualStudy getVirtualStudyData(String virtualStudyId) { - if (!GlobalProperties.getSessionServiceUrl().equals("")) { - try { - RestTemplate restTemplate = new RestTemplate(); - HttpEntity headers = new HttpEntity(getHttpHeaders()); - ResponseEntity responseEntity = restTemplate.exchange( - GlobalProperties.getSessionServiceUrl() + "virtual_study/" + virtualStudyId, - HttpMethod.GET, - headers, - VirtualStudy.class); - return responseEntity.getBody(); - } catch (HttpStatusCodeException exception) { - LOG.warn("SessionServiceUtil.getVirtualCohortData(): HttpStatusCodeException = '" + exception.getStatusCode() + "'"); - } - catch (Exception exception) { - LOG.warn("SessionServiceUtil.getVirtualCohortData(): Exception = '" + exception.getMessage() + "'"); - } - } - return null; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/SpringUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/SpringUtil.java deleted file mode 100644 index f8e2d57976f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/SpringUtil.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.ApplicationContext; -import org.springframework.context.support.ClassPathXmlApplicationContext; -import org.springframework.stereotype.Component; - -@Component -public class SpringUtil { - private static final Logger log = LoggerFactory.getLogger(SpringUtil.class); - - private static AccessControl accessControl; - private static ApplicationContext applicationContext; - - @Autowired - public void setAccessControl(AccessControl accessControl) { - log.debug("Setting access control"); - SpringUtil.accessControl = accessControl; - } - - public static AccessControl getAccessControl() { - return accessControl; - } - - public static synchronized void initDataSource() { - if (SpringUtil.applicationContext == null) { - SpringUtil.applicationContext = new ClassPathXmlApplicationContext("classpath:applicationContext-persistenceConnections.xml"); - } - } - - /** - * Get the app context as initialized or refreshed by initDataSource() - * - * @return the Spring Framework application context - */ - public static ApplicationContext getApplicationContext() { - return applicationContext; - } - - /** - * setter to allow override by unit test classes (which run in different context, connecting - * to test DB). - * - * @param context - */ - public static void setApplicationContext(ApplicationContext context) { - SpringUtil.applicationContext = context; - } - - /** - * Directly injects a context into the class, so we don't need to open - * any more XML files. - * - * @param context - */ - public static synchronized void initDataSource(ApplicationContext context) { - SpringUtil.applicationContext = context; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/StableIdUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/StableIdUtil.java deleted file mode 100644 index 204c9ed92fa..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/StableIdUtil.java +++ /dev/null @@ -1,143 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.model.Sample; -import org.mskcc.cbio.portal.model.Patient; -import org.mskcc.cbio.portal.dao.DaoPatient; -import org.mskcc.cbio.portal.dao.DaoSample; - -import java.util.*; -import java.util.regex.*; - -public class StableIdUtil -{ - public static final String TCGA_BARCODE_PREFIX = "TCGA"; - - public static final Pattern TCGA_SAMPLE_BARCODE_REGEX = - Pattern.compile("^(TCGA-\\w\\w-\\w\\w\\w\\w-\\d\\d).*$"); - - public static final Pattern TCGA_SAMPLE_TYPE_BARCODE_REGEX = - Pattern.compile("^TCGA-\\w\\w-\\w\\w\\w\\w-(\\d\\d).*$"); - - public static final Pattern TCGA_PATIENT_BARCODE_FROM_SAMPLE_REGEX = - Pattern.compile("^(TCGA-\\w\\w-\\w\\w\\w\\w)\\-\\d\\d.*$"); - - public static String getPatientId(String barcode) - { - return getId(barcode, false); - } - - public static String getSampleId(String barcode) - { - return getId(barcode, true); - } - - private static String getId(String barcode, boolean forSample) - { - // do not process non-TCGA bar codes... - if (!barcode.startsWith(TCGA_BARCODE_PREFIX)) { - return barcode; - } - - String id = null; - String barcodeParts[] = clean(barcode).split("-"); - try { - // an example bar code looks like this: TCGA-13-1479-01A-01W - id = barcodeParts[0] + "-" + barcodeParts[1] + "-" + barcodeParts[2]; - if (forSample) { - id += "-" + barcodeParts[3]; - Matcher tcgaSampleBarcodeMatcher = TCGA_SAMPLE_BARCODE_REGEX.matcher(id); - id = (tcgaSampleBarcodeMatcher.find()) ? tcgaSampleBarcodeMatcher.group(1) : id; - } - } - catch (ArrayIndexOutOfBoundsException e) { - // many (all?) barcodes in overrides are just patient id's - tack on a primary solid tumor code - // (we don't have any blood cancer overrides that need a sample code) - id = barcode + "-01"; - } - - return id; - } - - private static String clean(String barcode) - { - if (barcode.contains("Tumor")) { - return barcode.replace("Tumor", "01"); - } - else if (barcode.contains("Normal")) { - return barcode.replace("Normal", "11"); - } - else { - return barcode; - } - } - - public static Sample.Type getTypeByTCGACode(String tcgaCode) - { - if (tcgaCode.equals("01")) { - return Sample.Type.PRIMARY_SOLID_TUMOR; - } - else if (tcgaCode.equals("02")) { - return Sample.Type.RECURRENT_SOLID_TUMOR; - } - else if (tcgaCode.equals("03")) { - return Sample.Type.PRIMARY_BLOOD_TUMOR; - } - else if (tcgaCode.equals("04")) { - return Sample.Type.RECURRENT_BLOOD_TUMOR; - } - else if (tcgaCode.equals("06")) { - return Sample.Type.METASTATIC; - } - else if (tcgaCode.equals("10")) { - return Sample.Type.BLOOD_DERIVED_NORMAL; - } - else if (tcgaCode.equals("11")) { - return Sample.Type.SOLID_TISSUES_NORMAL; - } - else { - return Sample.Type.PRIMARY_SOLID_TUMOR; - } - } - - public static boolean isNormal(String barcode) - { - Matcher tcgaSampleBarcodeMatcher = TCGA_SAMPLE_TYPE_BARCODE_REGEX.matcher(barcode); - if (tcgaSampleBarcodeMatcher.find()) { - Sample.Type type = getTypeByTCGACode(tcgaSampleBarcodeMatcher.group(1)); - return (type.equals(Sample.Type.BLOOD_DERIVED_NORMAL) || type.equals(Sample.Type.SOLID_TISSUES_NORMAL)); - } - return false; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/StructuralVariantUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/StructuralVariantUtil.java deleted file mode 100644 index 793a14bb1ad..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/StructuralVariantUtil.java +++ /dev/null @@ -1,219 +0,0 @@ -/* - * Copyright (c) 2019 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.*; -import java.util.*; - -import com.fasterxml.jackson.databind.*; -import org.mskcc.cbio.maf.NamespaceColumnParser; -import org.mskcc.cbio.maf.TabDelimitedFileUtil; -import org.mskcc.cbio.portal.model.StructuralVariant; - -/** - * @author ochoaa - */ -public class StructuralVariantUtil { - private HashMap columnIndexMap; - private final NamespaceColumnParser namespaceColumnParser; - private final ObjectMapper objectMapper = new ObjectMapper(); - - // Column names structural variant file - public static final String SAMPLE_ID = "Sample_ID"; - public static final String SITE1_ENTREZ_GENE_ID = "Site1_Entrez_Gene_Id"; - public static final String SITE1_HUGO_SYMBOL = "Site1_Hugo_Symbol"; - public static final String SITE1_ENSEMBL_TRANSCRIPT_ID = "Site1_Ensembl_Transcript_Id"; - public static final String SITE1_CHROMOSOME = "Site1_Chromosome"; - public static final String SITE1_POSITION = "Site1_Position"; - public static final String SITE1_CONTIG = "Site1_Contig"; - public static final String SITE1_REGION = "Site1_Region"; - public static final String SITE1_REGION_NUMBER = "Site1_Region_Number"; - public static final String SITE1_DESCRIPTION = "Site1_Description"; - public static final String SITE2_ENTREZ_GENE_ID = "Site2_Entrez_Gene_Id"; - public static final String SITE2_HUGO_SYMBOL = "Site2_Hugo_Symbol"; - public static final String SITE2_ENSEMBL_TRANSCRIPT_ID = "Site2_Ensembl_Transcript_Id"; - public static final String SITE2_CHROMOSOME = "Site2_Chromosome"; - public static final String SITE2_POSITION = "Site2_Position"; - public static final String SITE2_CONTIG = "Site2_Contig"; - public static final String SITE2_REGION = "Site2_Region"; - public static final String SITE2_REGION_NUMBER = "Site2_Region_Number"; - public static final String SITE2_DESCRIPTION = "Site2_Description"; - public static final String SITE2_EFFECT_ON_FRAME = "Site2_Effect_On_Frame"; - public static final String NCBI_BUILD = "NCBI_Build"; - public static final String DNA_SUPPORT = "DNA_Support"; - public static final String RNA_SUPPORT = "RNA_Support"; - public static final String NORMAL_READ_COUNT = "Normal_Read_Count"; - public static final String TUMOR_READ_COUNT = "Tumor_Read_Count"; - public static final String NORMAL_VARIANT_COUNT = "Normal_Variant_Count"; - public static final String TUMOR_VARIANT_COUNT = "Tumor_Variant_Count"; - public static final String NORMAL_PAIRED_END_READ_COUNT = "Normal_Paired_End_Read_Count"; - public static final String TUMOR_PAIRED_END_READ_COUNT = "Tumor_Paired_End_Read_Count"; - public static final String NORMAL_SPLIT_READ_COUNT = "Normal_Split_Read_Count"; - public static final String TUMOR_SPLIT_READ_COUNT = "Tumor_Split_Read_Count"; - public static final String ANNOTATION = "Annotation"; - public static final String BREAKPOINT_TYPE = "Breakpoint_Type"; - public static final String CONNECTION_TYPE = "Connection_Type"; - public static final String EVENT_INFO = "Event_Info"; - public static final String VARIANT_CLASS = "Class"; - public static final String LENGTH = "SV_Length"; - public static final String COMMENTS = "Comments"; - public static final String DRIVER_FILTER = "cbp_driver"; - public static final String DRIVER_FILTER_ANNOTATION = "cbp_driver_annotation"; - public static final String DRIVER_TIERS_FILTER = "cbp_driver_tiers"; - public static final String DRIVER_TIERS_FILTER_ANNOTATION = "cbp_driver_tiers_annotation"; - public static final String SV_STATUS = "SV_Status"; - - public StructuralVariantUtil(String line, Set namespaces) { - this.columnIndexMap = new HashMap(); - String[] headerParts = line.trim().split("\t"); - this.namespaceColumnParser = new NamespaceColumnParser(namespaces, headerParts); - // Find header indices - for (int i=0; i> namespaces = this.namespaceColumnParser.parseCustomNamespaces(parts); - structuralVariant.setAnnotationJson(this.namespaceColumnParser.writeValueAsString(namespaces)); - return structuralVariant; - } - - public int getColumnIndex(String colName) { - Integer index = this.columnIndexMap.get(colName.toLowerCase()); - if (index == null) { - index = -1; - } - return index; - } - - /** - * Determines whether the structural variant record meets the minimal requirements for import. - * - * Structural variant records are valid if: - * (1) Neither Site 1 or Site 2 Ensembl transcript IDs and regions are defined in the record. - * (2) Both Site 1 and Site 2 Ensmebl transcript IDs and regions are defined in the record. - * Sample id and SV status are required fields. - * - * If a structural variant record has a mix of defined and missing values for Site 1 or Site 2 - * Ensembl transcript IDs and/or regions then the structural variant record will not be imported. - * - * Example (assuming that site 1 or site 2 hugo symbol and/or entrez id are present): - * - * Valid Record: - * Site 1 Transcript: EST0000024958 - * Site 1 Region: exon - * Site 1 Region number: 5 - * Site 2 Transcript: EST0001651651 - * Site 1 Region: exon - * Site 1 Region: 7 - * - * Valid Record: - * Site 1 Transcript: NA - * Site 1 Region: NA - * Site 1 Region number: -1 - * Site 2 Transcript: NA - * Site 2 Region: NA - * Site 2 Region number: -1 - * - * INVALID Record: - * Site 1 Transcript: EST0000024958 - * Site 1 Region: NA - * Site 1 Region number: -1 - * Site 2 Transcript: EST0001651651 - * Site 2 Region: NA - * Site 2 Region number: -1 - * - * @param record - * @return - */ - public Boolean hasRequiredStructuralVariantFields(StructuralVariant record) { - if (record.getSampleId() == null || - record.getSampleId().equalsIgnoreCase(TabDelimitedFileUtil.NA_STRING) || - record.getSvStatus() == null || - record.getSvStatus().equalsIgnoreCase(TabDelimitedFileUtil.NA_STRING)) { - return false; - } - - return ((record.getSite1EntrezGeneId() != null && record.getSite1EntrezGeneId() != Long.MIN_VALUE) || !TabDelimitedFileUtil.NA_STRING.equalsIgnoreCase(record.getSite1HugoSymbol()) || (record.getSite2EntrezGeneId() != null && record.getSite2EntrezGeneId() != Long.MIN_VALUE) || !TabDelimitedFileUtil.NA_STRING.equalsIgnoreCase(record.getSite2HugoSymbol())); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/SurvivalAttributeUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/SurvivalAttributeUtil.java deleted file mode 100644 index 01c700b476c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/SurvivalAttributeUtil.java +++ /dev/null @@ -1,90 +0,0 @@ -package org.mskcc.cbio.portal.util; - -public class SurvivalAttributeUtil { - - private static final String ZERO_PREFIX = "0:"; - private static final String ONE_PREFIX = "1:"; - - public enum SurvivalStatusAttributes { - OS_STATUS("OS_STATUS"), - DFS_STATUS("DFS_STATUS"); - - String attributeId; - SurvivalStatusAttributes(String attrId) { - attributeId = attrId; - } - - static public boolean has(String value) { - try { - return valueOf(value) != null; - } - catch (IllegalArgumentException x) { - return false; - } - } - - String getAttributeId() { - return attributeId; - } - } - - public enum SurvivalStatusMappingOneValues { - DECEASED("DECEASED"), - RECURRED_PROGRESSED("Recurred/Progressed"), - RECURRED("Recurred"), - PROGRESSED("Progressed"); - - String statusValue; - SurvivalStatusMappingOneValues(String value) { - statusValue = value; - } - - static public boolean has(String value) { - try { - value = value.replaceAll("[/]", "_"); - return valueOf(value.toUpperCase()) != null; - } - catch (IllegalArgumentException x) { - return false; - } - } - - String getStatusValue() { - return statusValue; - } - } - - public enum SurvivalStatusMappingZeroValues { - LIVING("LIVING"), - DISEASEFREE("DiseaseFree"); - - String statusValue; - SurvivalStatusMappingZeroValues(String value) { - statusValue = value; - } - - static public boolean has(String value) { - try { - return valueOf(value.toUpperCase()) != null; - } - catch (IllegalArgumentException x) { - return false; - } - } - - String getStatusValue() { - return statusValue; - } - } - - public static String getModifiedAttributeValue(String value) { - if (SurvivalStatusMappingOneValues.has(value)) { - return ONE_PREFIX + value; - } else if (SurvivalStatusMappingZeroValues.has(value)) { - return ZERO_PREFIX + value; - } else { - // value is new format or is one of the NULL_VALUES - return value; - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/TransactionalScripts.java b/core/src/main/java/org/mskcc/cbio/portal/util/TransactionalScripts.java deleted file mode 100644 index 7c044d9f319..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/TransactionalScripts.java +++ /dev/null @@ -1,80 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import java.lang.reflect.Constructor; -import java.lang.reflect.InvocationTargetException; -import java.lang.reflect.Method; -import java.util.ArrayList; -import java.util.List; - -import org.apache.commons.lang3.ArrayUtils; - -public class TransactionalScripts implements Runnable { - - public List scripts = new ArrayList(); - - /** - * Primary constructor, used to specify scripts through dependency injection. - * @param scripts - */ - public TransactionalScripts(List scripts) { - this.scripts = scripts; - } - - public List getScripts() { - return scripts; - } - - public void setScripts(List scripts) { - this.scripts = scripts; - } - - @Override - public void run() { - for(String[] command : getScripts()) { - // The first element in the array will be a class name. We should - // locate the class and the call the static main method with the - // rest of the arguments. Oh, and there needs to be a whole bunch - // of error handling. - - String className = command[0]; - String args[] = (String[])ArrayUtils.remove(command, 0); - - // Now let's look for the class - Class scriptClass; - try { - scriptClass = getClass().getClassLoader().loadClass(className); - } catch (ClassNotFoundException e) { - throw new RuntimeException("Failed to load script class: " + className, e); - } - - try { - Constructor[] ctors = scriptClass.getDeclaredConstructors(); - Constructor ctor = null; - for (int i = 0; i < ctors.length; i++) { - ctor = ctors[i]; - if (ctor.getGenericParameterTypes().length == 1) - break; - } - - Runnable newInstance = (Runnable) ctor.newInstance(new Object[] { args }); - newInstance.run(); - } catch (InstantiationException e) { - e.printStackTrace(System.err); - throw new RuntimeException("Can't find instantiate runner for: " + className, e); - } catch (SecurityException e) { - e.printStackTrace(System.err); - throw new RuntimeException("Can't access run() method in: " + className, e); - } catch (IllegalAccessException e) { - e.printStackTrace(System.err); - throw new RuntimeException("Invalid access to run() method in: " + className, e); - } catch (IllegalArgumentException e) { - e.printStackTrace(System.err); - throw new RuntimeException("Invalid arguments for run() method in: " + className, e); - } catch (InvocationTargetException e) { - e.printStackTrace(System.err); - throw new RuntimeException("Can't call run() method in: " + className, e); - } - } - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/UrlParamFilter.java b/core/src/main/java/org/mskcc/cbio/portal/util/UrlParamFilter.java deleted file mode 100644 index a7bf34bd214..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/UrlParamFilter.java +++ /dev/null @@ -1,37 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import org.springframework.stereotype.Component; - -import javax.servlet.*; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.security.InvalidParameterException; - -@Component("urlParamFilter") -public class UrlParamFilter implements Filter { - @Override - public void init(FilterConfig filterConfig) throws ServletException { - // Nothing to init (Sonar asks you to comment if you leave a method empty) - } - - @Override - public final void doFilter( - final ServletRequest servletRequest, - final ServletResponse servletResponse, - final FilterChain chain - ) throws IOException, ServletException { - HttpServletRequest request = (HttpServletRequest) servletRequest; - HttpServletResponse response = (HttpServletResponse) servletResponse; - if (request.getParameter("configUrl") != null && !request.getParameter("configUrl").isEmpty()) { - throw new InvalidParameterException(); - } else { - chain.doFilter(request, response); - } - } - - @Override - public final void destroy() { - // Nothing to destroy (Sonar asks you to comment if you leave a method empty) - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/UrlUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/UrlUtil.java deleted file mode 100644 index a6e92fed225..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/UrlUtil.java +++ /dev/null @@ -1,145 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.servlet.QueryBuilder; -import org.mskcc.cbio.portal.servlet.ServletXssUtil; -import org.owasp.validator.html.PolicyException; - -import javax.servlet.http.HttpServletRequest; -import java.net.URLEncoder; -import java.util.Enumeration; - -/** - * URL Utility Class. - */ -public class UrlUtil { - - /** - * Gets Current URL. - * - * @param request HttpServletRequest. - * @return Current URL - */ - public static String getCurrentUrl (HttpServletRequest request) { - Enumeration paramEnum = request.getParameterNames(); - StringBuffer buf = new StringBuffer(request.getAttribute - (QueryBuilder.ATTRIBUTE_URL_BEFORE_FORWARDING) + "?"); - while (paramEnum.hasMoreElements()) { - String paramName = (String) paramEnum.nextElement(); - String values[] = request.getParameterValues(paramName); - if (values != null && values.length >0) { - for (int i=0; i0) - { - for (int i=0; i. -*/ - -package org.mskcc.cbio.portal.util; - -import javax.servlet.http.HttpServletRequest; - -/** - * Provides Basic Information about a User, as Stored in the Session. - * Also provides methods for logging/logging out, as defined within the session. - * - * @author Ethan Cerami. - */ -public class UserInfo { - private static final String EMAIL = "email_address"; // key for email param stored in session - - /** - * Is the User Currently Authenticated? Determined via Session. - * - * @param request HttpServletRequest. - * @return boolean - */ - public static boolean isUserAuthenticated(HttpServletRequest request) { - String email = getEmailId(request); - if (email != null) { - return true; - } else { - return false; - } - } - - /** - * Gets the User's Email ID. Determined via Session. - * - * @param request HttpServletRequest. - * @return email address. - */ - public static String getEmailId (HttpServletRequest request) { - return (String) request.getSession().getAttribute(EMAIL); - } - - /** - * Registers the Users Session as Authenticated. - * - * @param emailAddress Email Address. - * @param request HttpServletRequest. - */ - public static void loginUser(String emailAddress, - HttpServletRequest request) { - request.getSession().setAttribute(EMAIL, emailAddress); - } - - /** - * Logs out the User. - * - * @param request HttpServletRequest. - */ - public static void logoutUser(HttpServletRequest request) { - request.getSession().removeAttribute(EMAIL); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/ValueParser.java b/core/src/main/java/org/mskcc/cbio/portal/util/ValueParser.java deleted file mode 100644 index f6151754531..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/ValueParser.java +++ /dev/null @@ -1,608 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.HashMap; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ComparisonOp; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ConcreteDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ContinuousDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DataTypeSpecEnumerations.DataTypeCategory; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneWithSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticDataTypes; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticTypeLevel; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintGeneDisplaySpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintSpecification; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ParsedFullDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ResultDataTypeSpec; -import org.mskcc.cbio.portal.model.GeneticAlterationType; - -/** - * Takes a String encoding of genetic data created by ProfileMerger, and some - * definition of the threshold for up or down regulation of mRNA expression and - * an optional filter for which datatypes and levels should be viewed, and then - * exports a set of boolean functions, such as isCnaAmplified() or - * isCnaHomozygouslyDeleted(), which indicates whether the genetic data meets - * the boolean characteristics. - *

    - * DEFAULT_THRESHOLD: The default definition of mRNA thresholds is provided by a - * zScore, symmetric about 0. The optional filter is provided as an - * OncoPrintGeneDisplaySpec, which would typically be the parsed output of a - * filter defined in the OncoPrintSpec language. If the filter defines any - * inequalities on mRNA expression then it overrides the zScore thresholds. - *

    - * Could be modified to implement GeneticEvent. - * @author Arthur Goldberg - */ -public class ValueParser { - public static final String MUTATION_VALUE_ZERO = "0"; - public static final String MUTATION_VALUE_NAN = "NaN"; - private String originalValue; - private HashMap datatypeToValueMap; - private OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec; - - /** - * Create a ValueParser. mRNA Expression, Copy Number Alterations and - * Mutations will be viewable. Since only zScoreThreshold is provided, we use - * it to set mRNA thresholds for over and under expression. - * - * @param str - * @param zScoreThreshold - */ - public ValueParser(String str, double zScoreThreshold) { - // TODO: get rid of this as soon as we can stop the calls - // isCaseEpigeneticallySilenced() - // ProfileData.getValueParsed() - - // create a 'default' OncoPrintGeneDisplaySpec, that displays all types - // and thresholds high and low expression values - // with zScoreThreshold, i.e., filter mRNA<= -zScoreThreshold - // mRNA>=zScoreThreshold - if (zScoreThreshold < 0.0) { - throw new IllegalArgumentException("zScoreThreshold must be greater than 0"); - } - ParsedFullDataTypeSpec aParsedFullDataTypeSpec = - createParsedFullDataTypeSpecFromZscore(zScoreThreshold); - - // add other data types - aParsedFullDataTypeSpec.addSpec(new ConcreteDataTypeSpec("CNA")); - aParsedFullDataTypeSpec.addSpec(new ConcreteDataTypeSpec("Mutation")); - - this.theOncoPrintGeneDisplaySpec = aParsedFullDataTypeSpec.cleanUpInput(); - parseValue(str); - } - - /** - * create a ParsedFullDataTypeSpec with symmetric zScore thresholds. - * - * @param zScoreThreshold - * @return - */ - private ParsedFullDataTypeSpec createParsedFullDataTypeSpecFromZscore(double zScoreThreshold) { - ParsedFullDataTypeSpec aParsedFullDataTypeSpec = new ParsedFullDataTypeSpec(); - aParsedFullDataTypeSpec.addSpec(new ContinuousDataTypeSpec(GeneticDataTypes.Expression, - ComparisonOp.convertCode("<="), (float) -zScoreThreshold)); - aParsedFullDataTypeSpec.addSpec(new ContinuousDataTypeSpec(GeneticDataTypes.Expression, - ComparisonOp.convertCode(">="), (float) zScoreThreshold)); - return aParsedFullDataTypeSpec; - } - - /** - * Create a ValueParser that filters according to a given - * OncoPrintGeneDisplaySpec. - * - * @param str - * @param theOncoPrintGeneDisplaySpec - */ - public ValueParser(String str, OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec) { - this.theOncoPrintGeneDisplaySpec = theOncoPrintGeneDisplaySpec; - parseValue(str); - // System.err.println(this.toString()); - } - - /** - * Generate a ValueParser. As a convenience, take a gene name and an - * OncoPrintSpecification, and find the gene in the OncoPrintSpecification. - * - * TODO: replace this: it's basically wrong because the same gene may - * occur in multiple times in an OncoPrintSpecification - * - * @param gene - * @param value - * @param zScoreThreshold - * @param theOncoPrintSpecification - * @return null if the gene cannot be found in theOncoPrintSpecification, - * otherwise a new ValueParser, as constructed by ValueParser(String - * value, double zScoreThreshold, OncoPrintGeneDisplaySpec - * theOncoPrintGeneDisplaySpec) for theOncoPrintGeneDisplaySpec for - * the gene in theOncoPrintSpecification. - */ - static public ValueParser generateValueParser(String gene, String value, double zScoreThreshold, - double rppaScoreThreshold, OncoPrintSpecification theOncoPrintSpecification) { - - // check that gene can be found - GeneWithSpec theGeneWithSpec = theOncoPrintSpecification.getGeneWithSpec(gene); - if (null == theGeneWithSpec) { - // System.err.println("Cannot find " + gene + " in theOncoPrintSpecification."); - return null; - } - return new ValueParser(value, zScoreThreshold, rppaScoreThreshold, - theGeneWithSpec.getTheOncoPrintGeneDisplaySpec()); - } - - // TODO: create a constructor that doesn't take a zScoreThreshold, to be used - // when the caller knows that the OncoPrintGeneDisplaySpec - // contains an Expression inequality - - /** - * Given genetic data in value, instantiate a ValueParser that combines a - * zScore threshold and an OncoPrintGeneDisplaySpec to determine which data - * types and levels should be displayed, and what defines over and under mRNA - * expression. See the DEFAULT_THRESHOLD logic in the class java doc. - *

    - * TODO: create a value parser constructor that doesn't need a - * zScoreThreshold, for use by code that has an OncoPrintGeneDisplaySpec with - * a mRNA inequality - * - * @param value - * @param zScoreThreshold - * @param theOncoPrintGeneDisplaySpec - */ - public ValueParser(String value, double zScoreThreshold, double rppaScoreThreshold, - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec) { - this.theOncoPrintGeneDisplaySpec = theOncoPrintGeneDisplaySpec; - determineExpressionThresholds(GeneticDataTypes.Expression, zScoreThreshold); - determineExpressionThresholds(GeneticDataTypes.RPPA, rppaScoreThreshold); - parseValue(value); - } - - private void determineExpressionThresholds(GeneticDataTypes theGeneticDataType, double zScoreThreshold) { - // if theOncoPrintGeneDisplaySpec shows Expression and does not define an - // inequality on Expression ... - // then use the zScore to determine Expression thresholds - ResultDataTypeSpec theResultDataTypeSpec = theOncoPrintGeneDisplaySpec - .getResultDataTypeSpec(theGeneticDataType); - if (null != theResultDataTypeSpec && null == - theResultDataTypeSpec.getCombinedLesserContinuousDataTypeSpec() - && null == theResultDataTypeSpec.getCombinedGreaterContinuousDataTypeSpec()) { - - ParsedFullDataTypeSpec aParsedFullDataTypeSpec = - createParsedFullDataTypeSpecFromZscore(zScoreThreshold); - - // combine this with the given OncoPrintGeneDisplaySpec - ResultDataTypeSpec expressionResultDataTypeSpec = aParsedFullDataTypeSpec.cleanUpInput() - .getResultDataTypeSpec(theGeneticDataType); - theOncoPrintGeneDisplaySpec.setResultDataTypeSpec(theGeneticDataType, - expressionResultDataTypeSpec); - } - } - - private void parseValue(String str) { - this.originalValue = str; - datatypeToValueMap = new HashMap(); - String fields[] = str.split(ProfileMerger.VALUE_SEPARATOR); - for (String field : fields) { - // just split on the 1st colon, so that colon(s) within the value remain intact - String parts[] = field.split(ProfileMerger.TYPE_VALUE_SEPARATOR, 2); - // TODO: throw exception if this conditional isn't true - if (parts != null && parts.length == 2) { - String name = parts[0]; - String value = parts[1]; - datatypeToValueMap.put(name, value); - } - } - } - - public String getOriginalValue() { - return originalValue; - } - - /** - * does a discrete type have the given level? given the params, report - * whether this genetic value has theGeneticTypeLevel, and that level is not - * filtered by the OncoPrintSpec. - * - * @param theDiscreteGeneticDataType - * @param theGeneticTypeLevel - * @return true, if the value for the given GeneticDataTypes has the given - * level, and the spec filter passes that level - */ - public boolean isDiscreteTypeThisLevel(GeneticDataTypes theDiscreteGeneticDataType, - GeneticTypeLevel theGeneticTypeLevel) { - /* - * basic idea: if the measurement is the right value, and it passes - * through the filter then yes, else no. - */ - - // check that theDiscreteGeneticDataType is not Mutation - if (theDiscreteGeneticDataType.equals(GeneticDataTypes.Mutation)) { - throw new IllegalArgumentException("isDiscreteTypeThisLevel cannot handle Mutations"); - } - - // check that theDiscreteGeneticDataType is a discrete datatype - if (!theDiscreteGeneticDataType.getTheDataTypeCategory().equals(DataTypeCategory.Discrete)) { - throw new IllegalArgumentException("theDiscreteGeneticDataType is not a " + - "discrete datatype"); - } - - // TODO: make sure getValue() returns the right kind of int code - String value = getValue(convertGeneticType(theDiscreteGeneticDataType)); - if (null == value) { - return false; - } - - GeneticTypeLevel theMeasuredGeneticTypeLevel; - try { - theMeasuredGeneticTypeLevel = GeneticTypeLevel - .convertCode(theDiscreteGeneticDataType, Integer.parseInt(value)); - } catch (NumberFormatException e) { - return false; - } catch (IllegalArgumentException e) { - return false; - } - if (!theMeasuredGeneticTypeLevel.equals(theGeneticTypeLevel)) { - return false; - } - return this.theOncoPrintGeneDisplaySpec.satisfy(theDiscreteGeneticDataType, - theGeneticTypeLevel); - } - - /** - * return true if the measurement in theDiscreteGeneticDataType is altered, - * that is, if it is one of the levels defined by the - * OncoPrintGeneDisplaySpec. Note that this does not work for mutation, - * because its values are not numeric codes. - * - * @param theDiscreteGeneticDataType - * @return - */ - public boolean isDiscreteTypeAltered(GeneticDataTypes theDiscreteGeneticDataType) { - // TODO: this is public only so it can be tested; todo: restructure tests - // so they can access package level methods - // consider approach in - // http://junit.sourceforge.net/doc/faq/faq.htm#organize_1, and perhaps - // http://www.artima.com/suiterunner/private3.html for testing private - // methods - - /* - * basic idea: false if there is no data or the measurement is NaN - * otherwise, true if the measurement satisfies the - * OncoPrintGeneDisplaySpec - */ - - // check that theDiscreteGeneticDataType is not Mutation - if (theDiscreteGeneticDataType.equals(GeneticDataTypes.Mutation)) { - throw new IllegalArgumentException("isDiscreteTypeAltered cannot handle Mutations"); - } - - // check that theDiscreteGeneticDataType is a discrete datatype - if (!theDiscreteGeneticDataType.getTheDataTypeCategory().equals(DataTypeCategory.Discrete)) { - throw new IllegalArgumentException("theDiscreteGeneticDataType is not a " + - "discrete datatype"); - } - - // TODO: make sure getValue() returns the right kind of int code - String measurement = getValue(convertGeneticType(theDiscreteGeneticDataType)); - if (null == measurement) { - return false; - } - - GeneticTypeLevel theMeasuredGeneticTypeLevel; - try { - theMeasuredGeneticTypeLevel = GeneticTypeLevel.convertCode(theDiscreteGeneticDataType, - Integer.parseInt(measurement)); - } catch (NumberFormatException e) { - return false; - } catch (IllegalArgumentException e) { - return false; - } - return this.theOncoPrintGeneDisplaySpec.satisfy(theDiscreteGeneticDataType, - theMeasuredGeneticTypeLevel); - } - - /** - * - * @return the CNA level of this ValueParser, or null if none. - */ - public GeneticTypeLevel getCNAlevel() { - for (GeneticTypeLevel theGeneticTypeLevel : GeneticTypeLevel.values()) { - if (theGeneticTypeLevel.getTheGeneticDataType().equals(GeneticDataTypes.CopyNumberAlteration)) { - if (isDiscreteTypeThisLevel(GeneticDataTypes.CopyNumberAlteration, theGeneticTypeLevel)) { - return theGeneticTypeLevel; - } - } - } - return null; - } - - // I'd prefer to just export getCNAlevel(), etc., but I guess - // these are helpful for some callers - public boolean isCnaAmplified() { - return isDiscreteTypeThisLevel(GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Amplified); - } - - public boolean isCnaGained() { - return isDiscreteTypeThisLevel(GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Gained); - } - - public boolean isCnaDiploid() { - return isDiscreteTypeThisLevel(GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Diploid); - } - - public boolean isCnaHemizygouslyDeleted() { - return isDiscreteTypeThisLevel(GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.HemizygouslyDeleted); - } - - public boolean isCnaHomozygouslyDeleted() { - return isDiscreteTypeThisLevel(GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.HomozygouslyDeleted); - } - - // general case for continuous types - private boolean doesContinuousValueExceedThreshold(GeneticDataTypes - theContinuousGeneticDataType, Direction theDirection) { - /* - * if the measurement is available and it passes through the filter (which - * checks the threshold) then yes else no - */ - - // check that theContinuousGeneticDataType is a continuous datatype - if (!theContinuousGeneticDataType.getTheDataTypeCategory().equals( - DataTypeCategory.Continuous)) { - throw new IllegalArgumentException("theContinuousGeneticDataType is " + - "not a continuous datatype"); - } - - String value = getValue(convertGeneticType(theContinuousGeneticDataType)); - // out.println(value); - if (null == value) { - // out.println("no value"); - return false; - } - float measuredValue; - try { - measuredValue = Float.parseFloat(value); - } catch (NumberFormatException e) { - // out.println(value + " not float"); - return false; - } - // out.println(measuredValue); - - return this.theOncoPrintGeneDisplaySpec.satisfy(theContinuousGeneticDataType, - measuredValue, theDirection); - } - - public boolean isMRNAWayUp() { - return doesContinuousValueExceedThreshold(GeneticDataTypes.Expression, Direction.higher); - } - - public boolean isMRNAWayDown() { - return doesContinuousValueExceedThreshold(GeneticDataTypes.Expression, Direction.lower); - } - - public boolean isRPPAWayUp() { - return doesContinuousValueExceedThreshold(GeneticDataTypes.RPPA, Direction.higher); - } - - public boolean isRPPAWayDown() { - return doesContinuousValueExceedThreshold(GeneticDataTypes.RPPA, Direction.lower); - } - - /** - * a special case, because mutation values can take any of { NaN, [CnnnD], 1} - * where the NaN indicates no mutation and the latter two indicates a - * mutation. A [CnnnD] is the standard amino acid encoding of a mutation. - * - * @return true if the gene was mutated and mutations were to be shown - */ - public boolean isMutated() { - // don't use isDiscreteTypeThisLevel because of mutation's complex values - String mutationValue = datatypeToValueMap.get(GeneticAlterationType.MUTATION_EXTENDED.name()); - if (mutationValue != null) { - // TODO: fix: this is a little dangerous, because it means that ANY - // value for mutation other than these will be reported as a mutation; - // I would prefer a positive test - if (mutationValue.equalsIgnoreCase(MUTATION_VALUE_NAN) - || mutationValue.equals(MUTATION_VALUE_ZERO)) { - return false; - } else { - return theOncoPrintGeneDisplaySpec.satisfy(GeneticDataTypes.Mutation, - GeneticTypeLevel.Mutated) - || - theOncoPrintGeneDisplaySpec.satisfy(GeneticDataTypes.Mutation, - mutationValue); - } - } - return false; - } - - /** - * Routine used to get amino acid encoding of mutation. Motivation was - * to provide amino acid change to MakeOncoPrint via GeneticEvent instead of - * ExtendedMutationMap. - */ - public String getMutationType() { - String toReturn = datatypeToValueMap.get(GeneticAlterationType.MUTATION_EXTENDED.name()); - return (toReturn == null) ? "Mutation cannot be determined" : toReturn; - } - - /** - * report on whether the gene was sequenced, as based on the mutation data, - * irrespective of what the oncoPrint filter says. - * - * @return - */ - public boolean wasSequenced() { - if (isMutated()) { - return true; - } else { - String mutationValue = datatypeToValueMap.get(GeneticAlterationType.MUTATION_EXTENDED.name()); - return mutationValue != null && !(mutationValue.equalsIgnoreCase(MUTATION_VALUE_NAN)); - } - } - - /** - * returns true if the gene has any of the alterations defined in the - * OncoPrintGeneDisplaySpec. - * - * @return - */ - public boolean isGeneAltered() { - return isMutated() || this.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration) || - isMRNAWayUp() || isMRNAWayDown() || isRPPAWayUp() || isRPPAWayDown(); - } - - // TODO: combine the union of all genetic types into one, include all, like - // GeneticAlterationType.METHYLATION_BINARY - private static GeneticAlterationType convertGeneticType(GeneticDataTypes theDiscreteGeneticDataType) { - switch (theDiscreteGeneticDataType) { - case CopyNumberAlteration: - return GeneticAlterationType.COPY_NUMBER_ALTERATION; - case Expression: - return GeneticAlterationType.MRNA_EXPRESSION; - case RPPA: - return GeneticAlterationType.PROTEIN_ARRAY_PROTEIN_LEVEL; - case Methylation: - return GeneticAlterationType.METHYLATION; - case Mutation: - return GeneticAlterationType.MUTATION_EXTENDED; - } - // unreachable code; keep compiler happy - // TODO: throw an exception - return null; - } - - private String getValue(GeneticAlterationType geneticAlterationType) { - return datatypeToValueMap.get(geneticAlterationType.name()); - } - - public String getCnaValue() { - return datatypeToValueMap.get(GeneticAlterationType.COPY_NUMBER_ALTERATION.name()); - } - - public String getUnparsedMRNAValue() { - return datatypeToValueMap.get(GeneticAlterationType.MRNA_EXPRESSION.name()); - } - - public String getUnparsedMethylationValue() { - return datatypeToValueMap.get(GeneticAlterationType.METHYLATION.name()); - } - - public String getUnparsedProteinLevelValue() { - return datatypeToValueMap.get(GeneticAlterationType.PROTEIN_LEVEL.name()); - } - - public String getUnparsedPhosphorylationValue() { - return datatypeToValueMap.get(GeneticAlterationType.PHOSPHORYLATION.name()); - } - - @Override - public String toString() { - // TODO: also return string of this.datatypeToValueMap - return this.originalValue + "\n" + this.theOncoPrintGeneDisplaySpec.toString(); - } - - /** - * next 3 methods determine glyphs for the heatmap. - *

    - * TODO: these belong in heatmap.java, when it gets made. - * - * this provides the HTML for the location of the mutation glyph - */ - public String getMutationGlyph() { - if (this.isMutated()) { - return ""; - } else { - if (this.wasSequenced()) { - return ""; - } else { - return ""; - } - } - } - - /** - * - * @param geneWithScore - * @return - */ - public String getMRNAGlyph() { - if (this.isMRNAWayUp()) { - return ""; - } - if (this.isMRNAWayDown()) { - if (this.isCnaAmplified()) { - return ""; - } else { - return ""; - } - } - return ""; - } - - /** - * - * @param geneWithScore - * @return - */ - public String getRPPAGlyph() { - if (this.isRPPAWayUp()) { - return ""; - } - if (this.isRPPAWayDown()) { - if (this.isCnaAmplified()) { - return ""; - } else { - return ""; - } - } - return ""; - } - - public String getCopyNumberStyle() { - GeneticTypeLevel theGeneticTypeLevel = this.getCNAlevel(); - if (null != theGeneticTypeLevel) { - switch (theGeneticTypeLevel) { - case Amplified: - return "amp_2"; - case Gained: - return "gained_2"; - case Diploid: - return "no_change"; - case HemizygouslyDeleted: - return "hetloss_2"; - case HomozygouslyDeleted: - return "del_2"; - } - } - return "no_change"; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/VersionUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/VersionUtil.java deleted file mode 100644 index c81eeb2172c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/VersionUtil.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.lang.StringBuilder; -import org.mskcc.cbio.portal.dao.DaoInfo; - -public class VersionUtil { - public static void main(String[] args) { - StringBuilder logMessageBuilder = new StringBuilder(117); - int versionCheck = DaoInfo.checkVersion(logMessageBuilder) ? 0 : 1; - System.out.println(logMessageBuilder.toString()); - System.out.flush(); - System.exit(versionCheck); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/WebserviceParserUtils.java b/core/src/main/java/org/mskcc/cbio/portal/util/WebserviceParserUtils.java deleted file mode 100644 index 4627a30022e..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/WebserviceParserUtils.java +++ /dev/null @@ -1,199 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.servlet.WebService; -import org.mskcc.cbio.portal.web_api.ProtocolException; - -import java.util.*; -import java.util.regex.Pattern; -import javax.servlet.http.HttpServletRequest; - -/** - * - * @author jgao - */ -public final class WebserviceParserUtils { - - private WebserviceParserUtils() {} - - /** - * Grabs the appropriate stuff from a request and returns a list of case_ids - * @param request - * @return - * @throws ProtocolException - * @throws DaoException - */ - public static ArrayList getSampleIds(HttpServletRequest request) throws ProtocolException, - DaoException { - String samples = request.getParameter(WebService.CASE_LIST); - String sampleSetId = request.getParameter(WebService.CASE_SET_ID); - String sampleIdsKey = request.getParameter(WebService.CASE_IDS_KEY); - - if (sampleIdsKey != null) - { - samples = SampleSetUtil.getSampleIds(sampleIdsKey); - } - - ArrayList sampleList = new ArrayList(); - if (sampleSetId != null && !(sampleSetId.equals("-1"))) { - DaoSampleList dao = new DaoSampleList(); - SampleList selectedSampleList = dao.getSampleListByStableId(sampleSetId); - if (selectedSampleList == null) { - throw new ProtocolException("Invalid " + WebService.CASE_SET_ID + ": " + sampleSetId + "."); - } - sampleList = selectedSampleList.getSampleList(); - } - else if (samples != null) { - for (String _sample : samples.split("[\\s,]+")) { - _sample = _sample.trim(); - if (_sample.length() == 0) continue; - sampleList.add(_sample); - } - } - else if (samples != null) { // todo: this is a hack, samples is just another word for patients - return new ArrayList(Arrays.asList(samples.split(" "))); - } - else { - throw new ProtocolException(WebService.CASE_SET_ID + " or " + WebService.CASE_LIST + " must be specified."); - } - return sampleList; - } - - /** - * Given an HttpServletRequest, determine all cancer_study_ids associated with it. - * cancer study identifiers can be inferred from profile_ids, case_list_ids, or case_ids. - * this returns the set of ALL POSSIBLE cancer study identifiers - * - * @param request - * @return the cancer_study_ids associated with the request, which will be empty - * if none can be determined; or empty set if a problem arises. - * @throws DaoException - * @throws ProtocolException - */ - public static HashSet getCancerStudyIDs(HttpServletRequest request) - throws DaoException, ProtocolException { - - HashSet cancerStudies = new HashSet(); - - // a CANCER_STUDY_ID is explicitly provided, as in getGeneticProfiles, getCaseLists, etc. - // make sure the cancer_study_id provided in the request points to a real study - String studyIDstring = getCancerStudyId(request); - if (studyIDstring != null) { - if (DaoCancerStudy.doesCancerStudyExistByStableId(studyIDstring)) { - cancerStudies.add(studyIDstring); - } - - return cancerStudies; - } - - // a genetic_profile_id is explicitly provided, as in getProfileData - if (null != request.getParameter(WebService.GENETIC_PROFILE_ID)) { - ArrayList geneticProfileIds = getGeneticProfileId(request); - for (String geneticProfileId : geneticProfileIds) { - - // that's the point of this code?? -// if (geneticProfileId == null) { -// return cancerStudies; -// } - - GeneticProfile aGeneticProfile = DaoGeneticProfile.getGeneticProfileByStableId(geneticProfileId); - if (aGeneticProfile != null && - DaoCancerStudy.doesCancerStudyExistByInternalId(aGeneticProfile.getCancerStudyId())) { - cancerStudies.add(DaoCancerStudy.getCancerStudyByInternalId - (aGeneticProfile.getCancerStudyId()).getCancerStudyStableId()); - } - } - - return cancerStudies; - } - - // a patient_set_id is explicitly provided, as in getProfileData, getMutationData, getClinicalData, etc. - String sampleSetId = request.getParameter(WebService.CASE_SET_ID); - if (sampleSetId != null) { - DaoSampleList aDaoSampleList = new DaoSampleList(); - SampleList aSampleList = aDaoSampleList.getSampleListByStableId(sampleSetId); - - if (aSampleList != null && DaoCancerStudy.doesCancerStudyExistByInternalId(aSampleList.getCancerStudyId())) { - cancerStudies.add(DaoCancerStudy.getCancerStudyByInternalId - (aSampleList.getCancerStudyId()).getCancerStudyStableId()); - } - - return cancerStudies; - } - - return cancerStudies; - } - - // TODO: rename TO getGeneticProfileId, as the return value is PLURAL - public static ArrayList getGeneticProfileId(HttpServletRequest request) throws ProtocolException { - String geneticProfileIdStr = request.getParameter(WebService.GENETIC_PROFILE_ID); - // Split on white space or commas - Pattern p = Pattern.compile("[,\\s]+"); - String geneticProfileIds[] = p.split(geneticProfileIdStr); - ArrayList geneticProfileIdList = new ArrayList(); - for (String geneticProfileId : geneticProfileIds) { - geneticProfileId = geneticProfileId.trim(); - geneticProfileIdList.add(geneticProfileId); - } - return geneticProfileIdList; - } - - - /** - * Get Cancer Study ID in a backward compatible fashion. - */ - public static String getCancerStudyId(HttpServletRequest request) { - String cancerStudyId = request.getParameter(WebService.CANCER_STUDY_ID); - if (cancerStudyId == null || cancerStudyId.length() == 0) { - cancerStudyId = request.getParameter(WebService.CANCER_TYPE_ID); - } - return cancerStudyId; - } - - /** - * Get the return format requested - */ - - public static String getFormat(HttpServletRequest request) { - String format = request.getParameter(WebService.FORMAT); - - return format == null ? format : format.toLowerCase(); - } - - public static String getCaseSetId(HttpServletRequest request) { - return request.getParameter(WebService.CASE_SET_ID); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/XDebug.java b/core/src/main/java/org/mskcc/cbio/portal/util/XDebug.java deleted file mode 100644 index a70c5250c88..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/XDebug.java +++ /dev/null @@ -1,204 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.util.ArrayList; -import java.util.Date; - -import javax.servlet.http.HttpServletRequest; - -/** - * Encapsulates Real-time debugging information. - * XDebug provides a simple facility for logging debug messages, - * and recording debug parameters. Results of XDebug are conditionally - * displayed at the bottom of the JSP page. - */ -public class XDebug { - private ArrayList messages; - private ArrayList parameters; - private Date startTime; - private Date stopTime; - private long timeElapsed; - private HttpServletRequest request; - - /** - * Constructor. - */ - public XDebug() { - messages = new ArrayList(); - parameters = new ArrayList(); - startTime = null; - stopTime = null; - timeElapsed = -1; - - } - - // FOR ACCESS CONTROL, so CgdsProtocol can get the session; bit of a hack - public XDebug(HttpServletRequest request) { - this(); - this.request = request; - - // FOR ACCESS CONTROL, DEBUGGING - if(UserInfo.isUserAuthenticated(request)) { - this.logMsg( this, "Logged in with: " + UserInfo.getEmailId(request)); - }else{ - this.logMsg( this, "Not logged in." ); - } - - } - - public HttpServletRequest getRequest() { - return request; - } - - /** - * Logs a new message with the specified color code. - * - * @param caller object that is making the log request - * @param msg message to log - * @param color color of message, e.g. "RED, "GREEN" - */ - public void logMsg(Object caller, String msg, String color) { - Class callerClass = caller.getClass(); - XDebugMessage message = new XDebugMessage(callerClass.getName(), msg, color); - messages.add(message); - } - - /** - * Logs a new message. - * - * @param caller object that is making the log request - * @param msg message to log - */ - public void logMsg(Object caller, String msg) { - logMsg(caller, msg, "black"); - } - - /** - * Adds a new String Parameter. - * - * @param type parameter type code, e.g. COOKIE_TYPE, ENVIRONMENT_TYPE - * @param name parameter name - * @param value parameter String value - */ - public void addParameter(int type, String name, String value) { - XDebugParameter param = new XDebugParameter(type, name, value); - parameters.add(param); - } - - /** - * Adds a new integer Parameter. - * - * @param type parameter type code, e.g. COOKIE_TYPE, ENVIRONMENT_TYPE - * @param name parameter name - * @param value parameter integer value - */ - public void addParameter(int type, String name, int value) { - XDebugParameter param = new XDebugParameter(type, name, value); - parameters.add(param); - } - - /** - * Adds a new boolean Parameter. - * - * @param type parameter type code, e.g. COOKIE_TYPE, ENVIRONMENT_TYPE - * @param name parameter name - * @param value parameter boolean value - */ - public void addParameter(int type, String name, boolean value) { - XDebugParameter param = new XDebugParameter(type, name, value); - parameters.add(param); - } - - /** - * Gets all Debug Messages. - * - * @return Vector of XDebugMessage objects - */ - public ArrayList getDebugMessages() { - return messages; - } - - /** - * Gets all Parameters. - * - * @return Vector of XDebugParameter objects - */ - public ArrayList getParameters() { - return parameters; - } - - /** - * Starts the internal timer. - */ - public void startTimer() { - this.startTime = new Date(); - } - - /** - * Stops the internal timer. - */ - public void stopTimer() { - this.stopTime = new Date(); - if (startTime != null) { - this.timeElapsed = stopTime.getTime() - startTime.getTime(); - } - } - - /** - * Gets the total time elapsed (in milliseconds). - * - * @return totalTimeElapsed (ms) - */ - public long getTimeElapsed() { - return timeElapsed; - } - - /** - * Gets Complete Log. - * Useful for command line utilities. - * - * @return Complete Log. - */ - public String getCompleteLog() { - StringBuffer log = new StringBuffer(); - if (messages == null || messages.size() == 0) { - log.append("No Log Messages"); - } - for (int i = 0; i < messages.size(); i++) { - XDebugMessage msg = messages.get(i); - log.append(msg.getMessage() + "\n"); - } - return log.toString(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/XDebugMessage.java b/core/src/main/java/org/mskcc/cbio/portal/util/XDebugMessage.java deleted file mode 100644 index c0387f8f68a..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/XDebugMessage.java +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -/** - * Encapsulates a single XDebug log message. - * An XDebug log message consists of three parts: - *

      - *
    • name of the class that invoked the logger - *
    • the log message - *
    • color of the log message (defaults to black) - *
    - */ -public class XDebugMessage { - private String message; - private String className; - private String color; - private static final String DEFAULT_COLOR = "black"; - - /** - * Constructor. - * - * @param className name of the class that invoke the logger - * @param message the log message - */ - public XDebugMessage(String className, String message) { - this.className = className; - this.message = message; - this.color = DEFAULT_COLOR; - } - - /** - * Constructor with Color Parameter. - * - * @param className name of the class that invoke the logger - * @param message the log message - * @param color the log message color - */ - public XDebugMessage(String className, String message, String color) { - this.className = className; - this.message = message; - this.color = color; - } - - /** - * Get Debug Message. - * - * @return the log message - */ - public String getMessage() { - return message; - } - - /** - * Get Class Name. - * - * @return the class name of the object that invoked the logger - */ - public String getClassName() { - return className; - } - - /** - * Get Color. - * - * @return color of the log message - */ - public String getColor() { - return color; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/XDebugParameter.java b/core/src/main/java/org/mskcc/cbio/portal/util/XDebugParameter.java deleted file mode 100644 index c3920a99108..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/XDebugParameter.java +++ /dev/null @@ -1,180 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -/** - * Encapsulates a single XDebug Parameter name/value. - * The following parameter types are supported:
      - *
    • COOKIE_TYPE: HTTP Cookies
    • USER_TYPE: Any user supplied parameters - *
    • INTERNAL_TYPE: Any internal parameters, such as timers. - *
    • ENVIRONMENT_TYPE: Any Environment Variables - *
    • HTTP_TYPE: Any HTTP parameters, such as protocol type - *
    • HTTP_HEADER_TYPE: Any HTTP Headers
    - */ -public class XDebugParameter { - /** - * HTTP Cookie Type. - */ - public static final int COOKIE_TYPE = 0; - - /** - * User Type; for example: form parameters. - */ - public static final int USER_TYPE = 1; - - /** - * Internal Type; for example: performance metrics. - */ - public static final int INTERNAL_TYPE = 2; - - /** - * Environment Variable Type; for example: Servlet Port #. - */ - public static final int ENVIRONMENT_TYPE = 3; - - /** - * HTTP Type; for example: Get vs Post. - */ - public static final int HTTP_TYPE = 4; - - /** - * HTTP Header Type; for example: Browser Client information. - */ - public static final int HTTP_HEADER_TYPE = 5; - - /** - * User Session Type. - */ - public static final int REQUEST_ATTRIBUTE_TYPE = 6; - - /** - * User Session Type. - */ - public static final int SESSION_TYPE = 7; - - /** - * Servlet Context Type. - */ - public static final int SERVLET_CONTEXT_TYPE = 8; - - private String name; - private String value; - private int type; - private final String[] paramTypes = - {"Cookie", "User Parameter", "Internal", "Environment", - "HTTP", "HTTP Header", "Internal Request Attribute", "Session", - "Servlet Context"}; - - private static final String UNDEFINED = "Undefined"; - - /** - * Constructor for String parameter. - * - * @param type parameter type, e.g. COOKIE_TYPE, ENVIRONMENT_TYPE - * @param name parameter name - * @param value parameter String value - */ - public XDebugParameter(int type, String name, String value) { - this.type = type; - this.name = name; - this.value = value; - } - - /** - * Constructor for integer parameter. - * - * @param type parameter type, e.g. COOKIE_TYPE, ENVIRONMENT_TYPE - * @param name parameter name - * @param value parameter integer value - */ - public XDebugParameter(int type, String name, int value) { - this.type = type; - this.name = name; - this.value = Integer.toString(value); - } - - /** - * Constructor for boolean parameter. - * - * @param type parameter type, e.g. COOKIE_TYPE, ENVIRONMENT_TYPE - * @param name parameter name - * @param value parameter String value - */ - public XDebugParameter(int type, String name, boolean value) { - this.type = type; - this.name = name; - this.value = Boolean.toString(value); - } - - /** - * Get Parameter Name. - * - * @return name of parameter - */ - public String getName() { - return name; - } - - /** - * Get Parameter Value. - * - * @return value of the parameter - */ - public String getValue() { - return value; - } - - /** - * Get Parameter Type Name. - * - * @return parameter type name, e.g. "Cookie", Internal", etc. - */ - public String getTypeName() { - String typeName = null; - try { - typeName = paramTypes[type]; - } catch (ArrayIndexOutOfBoundsException e) { - typeName = UNDEFINED; - } - return typeName; - } - - /** - * Get Parameter Type. - * - * @return parameter type integer code, e.g. COOKIE_TYPE, INTERNAL_TYPE - */ - public int getType() { - return type; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/XssFilter.java b/core/src/main/java/org/mskcc/cbio/portal/util/XssFilter.java deleted file mode 100644 index 1618eb66326..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/XssFilter.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import javax.servlet.*; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletRequestWrapper; -import java.io.IOException; - -/** - * Filter that wraps an underlying request. This is intended to filter - * all input request - * - *

    This filter should be configured only for those operations that use a - * file upload request. - */ -public class XssFilter implements Filter -{ - public void init(FilterConfig aConfig) throws ServletException - { - //do nothing - } - - public void destroy() { - //do nothing - } - - public void doFilter(ServletRequest aRequest, - ServletResponse aResponse, - FilterChain aChain) - throws IOException, ServletException - { - HttpServletRequest request = (HttpServletRequest) aRequest; - XssRequestWrapper wrapper = new XssRequestWrapper(request); - aChain.doFilter(wrapper, aResponse); - } - -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/XssRequestWrapper.java b/core/src/main/java/org/mskcc/cbio/portal/util/XssRequestWrapper.java deleted file mode 100644 index d9e259434cb..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/XssRequestWrapper.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.servlet.ServletXssUtil; -import org.owasp.validator.html.PolicyException; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletRequestWrapper; - -/** - * Wrapper designed for all requests. - * - *

    This class uses the Apache Commons - * File Upload tool. - * The generous Apache License will very likely allow you to use it in your - * applications as well. - */ -public class XssRequestWrapper extends HttpServletRequestWrapper -{ - private static Logger LOG = LoggerFactory.getLogger(XssRequestWrapper.class); - protected ServletXssUtil xssUtil; - - public XssRequestWrapper(HttpServletRequest request) { - super(request); - - try - { - xssUtil = ServletXssUtil.getInstance(); - } - catch (PolicyException e) - { - // TODO log? - xssUtil = null; - } - } - - public String getParameter(String name) - { - String parameter = super.getParameter(name); - - LOG.debug("XssRequestWrapper.getParameter(" + name + "): '" + parameter + "'"); - String clean = xssUtil.getCleanerInput(parameter); - LOG.debug("XssRequestWrapper.getParameter(" + name + "): cleaned = '" + clean + "'"); - - return clean; - } - - public String getRawParameter(String name) - { - String raw = super.getParameter(name); - LOG.debug("XssRequestWrapper.getRawParameter(" + name + "): cleaned = '" + raw + "'"); - return raw; - } - - // TODO also overwrite getParameterValues & getAttribute method? -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/ZScoreUtil.java b/core/src/main/java/org/mskcc/cbio/portal/util/ZScoreUtil.java deleted file mode 100644 index bf514f499b8..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/ZScoreUtil.java +++ /dev/null @@ -1,86 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.servlet.QueryBuilder; -import org.mskcc.cbio.portal.model.GeneticProfile; - -import javax.servlet.http.HttpServletRequest; -import java.util.ArrayList; -import java.util.HashSet; - -// TODO: perhaps delete this class -public class ZScoreUtil { - public static final double Z_SCORE_THRESHOLD_DEFAULT = 2; - public static final double RPPA_SCORE_THRESHOLD_DEFAULT = 2; - public static final double OUTLIER_THRESHOLD_DEFAULT = 1; - - public static double getZScore(HashSet geneticProfileIdSet, - ArrayList profileList, HttpServletRequest request) { - double zScoreThreshold = ZScoreUtil.Z_SCORE_THRESHOLD_DEFAULT; - - // If user has selected an outlier mRNA expression profile, - // switch to OUTLIER_THRESHOLD_DEFAULT. - if (GeneticProfileUtil.outlierExpressionSelected(geneticProfileIdSet, profileList)) { - zScoreThreshold = OUTLIER_THRESHOLD_DEFAULT; - } else { - String zScoreThesholdStr = request.getParameter(QueryBuilder.Z_SCORE_THRESHOLD); - if (zScoreThesholdStr != null) { - try { - zScoreThreshold = Double.parseDouble(zScoreThesholdStr); - - // take absolute value - if( zScoreThreshold < 0.0 ){ - zScoreThreshold = -zScoreThreshold; - } - - } catch (NumberFormatException e) { - } - } - } - return zScoreThreshold; - } - - public static double getRPPAScore(HttpServletRequest request) { - String rppaScoreStr = request.getParameter(QueryBuilder.RPPA_SCORE_THRESHOLD); - if (rppaScoreStr == null) { - return RPPA_SCORE_THRESHOLD_DEFAULT; - } else { - try { - return Double.parseDouble(rppaScoreStr); - } catch (NumberFormatException e) { - return RPPA_SCORE_THRESHOLD_DEFAULT; - } - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/internal/AccessControlImpl.java b/core/src/main/java/org/mskcc/cbio/portal/util/internal/AccessControlImpl.java deleted file mode 100644 index 3a2d3e4547b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/util/internal/AccessControlImpl.java +++ /dev/null @@ -1,165 +0,0 @@ -/* - * Copyright (c) 2015 - 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util.internal; - -// imports -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.web_api.ProtocolException; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.security.core.Authentication; -import org.springframework.security.core.userdetails.UserDetails; -import org.springframework.security.core.context.SecurityContextHolder; -import org.springframework.security.authentication.AnonymousAuthenticationToken; -import org.springframework.stereotype.Component; - -import java.util.*; - -/** - * Utilities for managing access control. - * - * @author Benjamin Gross - */ -@Component -public class AccessControlImpl implements AccessControl { - - // ref to log - private static Logger log = LoggerFactory.getLogger(AccessControlImpl.class); - - /** - * Gets Cancer Studies. Used by QueryBuilder. - * - * @return List - * @throws DaoException Database Error. - * @throws ProtocolException Protocol Error. - * - * We use @PostFilter annotation to remove elements - * in the return list inaccessible to the user. - */ - public List getCancerStudies() throws DaoException, ProtocolException { - - if (log.isDebugEnabled()) { - log.debug("getCancerStudies(), getting accessible cancer studies."); - } - - // get list of all cancer studies - List allCancerStudies = DaoCancerStudy.getAllCancerStudies(); - - // sort the list - Collections.sort(allCancerStudies, new CancerStudiesComparator()); - - // Then, insert "All" Cancer Types at beginning //TODO - fix this! It conflicts with ALL (Acute Lymphoid Leukemia)! - ArrayList finalCancerStudiesList = new ArrayList(); - String allCancerStudyTitle = (GlobalProperties.usersMustAuthenticate()) ? - "All Authorized Cancer Studies" : "All Cancer Studies"; - CancerStudy allCancerStudy = new CancerStudy(allCancerStudyTitle, allCancerStudyTitle, - "all", "all", true); - finalCancerStudiesList.add(allCancerStudy); - finalCancerStudiesList.addAll(allCancerStudies); - - if (finalCancerStudiesList.size() > 1) { - return finalCancerStudiesList; - } else { - throw new ProtocolException("No cancer studies accessible; "+ - "either provide credentials to access private studies, " + - "or ask administrator to load public ones.\n"); - } - } - - /** - * Return true if the user can access the study, false otherwise. - * - * @param stableStudyId - * @return List - * @throws DaoException - * - * We use @PostFilter rather than @PreAuthorize annotation to provide - * permission evaluation on this cancer study so that we can process - * invalid permissions via QueryBuilder.validateForm(). If we use @PreAuthorize, - * thread execution does not return from this method call if a user has invalid permissions. - */ - public List isAccessibleCancerStudy(String stableStudyId) throws DaoException { - - if (log.isDebugEnabled()) { - log.debug("isAccessibleCancerStudy(), stableStudyId: " + stableStudyId); - } - - // get cancer study by stable id - List toReturn = new ArrayList(); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(stableStudyId); - if (cancerStudy != null) { - toReturn.add(cancerStudy); - } - - // outta here - return toReturn; - } - - public UserDetails getUserDetails() - { - if (GlobalProperties.usersMustAuthenticate()) { - Authentication auth = SecurityContextHolder.getContext().getAuthentication(); - if (auth == null) { - String errorMessage = "Possible configuration error detected: authorization=true but no authentication found. " - + "If authentication is turned off, authorization should be set to false"; - log.error(errorMessage); - throw new RuntimeException(errorMessage); - } - return !(auth instanceof AnonymousAuthenticationToken) ? (UserDetails)auth.getPrincipal() : null; - } - return null; - } -} - -/** - * Compares Cancer Studies, so that we can sort them alphabetically. - */ -class CancerStudiesComparator implements Comparator { - - /** - * Compare two cancer studies. - * @param o First Cancer Study. - * @param o1 Second Cancer Study. - * @return int indicating name sort order. - */ - public int compare(Object o, Object o1) { - CancerStudy study0 = (CancerStudy) o; - CancerStudy study1 = (CancerStudy) o1; - return study0.getName().compareTo(study1.getName()); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/validate/ValidateGistic.java b/core/src/main/java/org/mskcc/cbio/portal/validate/ValidateGistic.java deleted file mode 100644 index dcd68874a45..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/validate/ValidateGistic.java +++ /dev/null @@ -1,158 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.validate; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Gistic; - -import java.util.ArrayList; - -// todo: later this can be refactored into a factory method. -public class ValidateGistic { - private static final Logger logger = LoggerFactory.getLogger(ValidateGistic.class); - - /** - * Validates a gistic bean object according to some basic "business logic". - * @param gistic - * @throws validationException - */ - public static void validateBean(Gistic gistic) throws validationException { - - int chromosome = gistic.getChromosome(); - int peakStart = gistic.getPeakStart(); - int peakEnd = gistic.getPeakEnd(); - double qValue = gistic.getqValue(); - ArrayList genes_in_ROI = gistic.getGenes_in_ROI(); - - if (chromosome < 1 || chromosome > 22) { - throw new validationException("Invalid chromosome: " + chromosome); - } - - if (peakStart <= 0) { - throw new validationException("Invalid peak start: " + peakStart); - } - - if (peakEnd <= 0) { - throw new validationException("Invalid peak end: " + peakEnd); - } - - if (peakEnd <= peakStart) { - throw new validationException("Peak end is <= peak start: (start=" + peakStart + ", end=" + peakEnd + ")"); - } - - if (qValue < 0 || qValue > 1) { - throw new validationException("Invalid qValue=" + qValue); - } - - if (genes_in_ROI.isEmpty()){ - throw new validationException("No genes in ROI"); - } - - // todo: how do you validate ampdel? - } - - /** - * Checks to make sure that we know all the fields that we are getting. - * @param fields - * @throws validationException - */ - - public static void validateFieldNames_tabularFile(String[] fields) throws validationException { - int fields_len = fields.length; - - for (int i = 0; i < fields_len; i+=1) { - // each field should be one of the following - if (!(fields[i].equals("chromosome") - || fields[i].equals("peak_start") - || fields[i].equals("peak_end") - || fields[i].equals("genes_in_region") - || fields[i].equals("genes_in_peak") - || fields[i].equals("n_genes_on_chip") - || fields[i].equals("genes_on_chip") - || fields[i].equals("top 3") - || fields[i].equals("n_genes_in_region") - || fields[i].equals("n_genes_in_peak") - || fields[i].equals("region_start") - || fields[i].equals("region_end") - || fields[i].equals("enlarged_peak_start") - || fields[i].equals("enlarged_peak_end") - || fields[i].equals("index"))) - { -// System.out.println(fields.toString()); - throw new validationException(fields[i]); - } - } - } - - /** - * Checks to make sure that we know all the fields that we are getting. - * @param cols - * @throws validationException - */ - public static void validateNonTabularRow(String[] cols) throws validationException { - int cols_len = cols.length; - - String field_name = cols[0]; - - for (int i = 0; i < cols_len; i+=1) { - // each field should be one of the following - if (!((field_name.equals("q value") - || field_name.equals("residual q value")) - || field_name.equals("genes in wide peak") - || field_name.equals("cytoband") - || field_name.equals("") // likely to actually contain a gene - || field_name.equals("wide peak boundaries"))) { - { - throw new validationException(field_name); - } - } - } - } - - /** - * Validates that two files are either both amplified for both deleted - * @param ampdel1 ampdel from one gistic file - * @param ampdel2 ampdel from another gistic file - * @throws validationException - */ - public static void validateAmpdels(boolean ampdel1, boolean ampdel2) throws validationException { - - if (ampdel1 != ampdel2) { - String x = ampdel1 == Gistic.AMPLIFIED ? "Amplified" : "Deleted"; - String y = ampdel2 == Gistic.AMPLIFIED ? "Amplified" : "Deleted"; - throw new validationException(x + " " + y); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/validate/validationException.java b/core/src/main/java/org/mskcc/cbio/portal/validate/validationException.java deleted file mode 100644 index 0a665aa8029..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/validate/validationException.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.validate; - -public class validationException extends Exception { - /** - * Throws a data validation exception. Data can be, for example, a bean or a line from a data file. - * @param param - */ - public validationException(Object param) { - super(param.toString()); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/ConnectionManager.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/ConnectionManager.java deleted file mode 100644 index b0a8a9aa1a5..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/ConnectionManager.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import org.apache.commons.httpclient.HttpClient; -import org.apache.commons.httpclient.MultiThreadedHttpConnectionManager; -import org.apache.commons.httpclient.params.HttpClientParams; -import org.apache.http.params.CoreConnectionPNames; - -/** - * Singleton Instance of the Connection Manager. - */ -public class ConnectionManager { - private static MultiThreadedHttpConnectionManager connectionManager = null; - - /** - * Gets the Global Connection Manager. - * - * @return MultiThreadedHttpConnectionManager Object. - */ - public static MultiThreadedHttpConnectionManager getConnectionManager() { - if (connectionManager == null) { - connectionManager = new MultiThreadedHttpConnectionManager(); - connectionManager.getParams().setDefaultMaxConnectionsPerHost(10); - connectionManager.getParams().setConnectionTimeout(5000); - } - return connectionManager; - } - - /** - * Get a HttpClient - * @param timeOut milliseconds - * @return - */ - public static HttpClient getHttpClient(int timeOut) { - if (timeOut<=0) { - return new HttpClient(getConnectionManager()); - } else { - HttpClientParams params = new HttpClientParams(); - params.setIntParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, timeOut); - params.setIntParameter(CoreConnectionPNames.SO_TIMEOUT, timeOut); - return new HttpClient(params, getConnectionManager()); - } - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetClinicalData.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/GetClinicalData.java deleted file mode 100644 index 3d4877624f1..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetClinicalData.java +++ /dev/null @@ -1,273 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import java.util.*; - -import org.json.simple.JSONArray; -import org.json.simple.JSONObject; -import org.mskcc.cbio.portal.dao.DaoClinicalAttributeMeta; -import org.mskcc.cbio.portal.dao.DaoClinicalData; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.model.ClinicalAttribute; -import org.mskcc.cbio.portal.model.ClinicalData; -import org.mskcc.cbio.portal.model.Patient; - -/** - * Utility class to get clinical data - */ -public class GetClinicalData { - private static final String NA = "NA"; - private static final String TAB = "\t"; - - /** - * Gets clinical data for specified cases. - * - * @param setOfCaseIds Case IDs. - * @return an ArrayList of Survival Objects - * @throws DaoException, as of August 2011 GetClinicalData has direct access to DAO Objects. - */ - public static List getClinicalData(int cancerStudyId, HashSet setOfCaseIds) throws DaoException { - if (setOfCaseIds != null && setOfCaseIds.size() > 0) { - return DaoClinicalData.getSurvivalData(cancerStudyId, setOfCaseIds); - } else { - return Collections.emptyList(); - } - } - - /** - * takes an object (Clinical or ClinicalAttribute) and - * converts it to a map (JSONObject) - * - * @param clinical - * @return - */ - public static JSONObject reflectToMap(ClinicalData clinical) { - JSONObject map = new JSONObject(); - - map.put("attr_id", clinical.getAttrId()); - map.put("attr_val", clinical.getAttrVal()); - //TODO: at some point we may want to incorporate the cancer_study_id -// map.put("cancer_study_id", Integer.toString(clinical.getCancerStudyId())); - map.put("sample", clinical.getStableId()); - - return map; - } - - public static JSONObject reflectToMap(ClinicalAttribute clinicalAttribute) { - JSONObject map = new JSONObject(); - - map.put("attr_id", clinicalAttribute.getAttrId()); - map.put("datatype", clinicalAttribute.getDatatype()); - map.put("description", clinicalAttribute.getDescription()); - map.put("display_name", clinicalAttribute.getDisplayName()); - - return map; - } - - public static JSONArray clinicals2JSONArray(List clinicals) { - JSONArray toReturn = new JSONArray(); - for (ClinicalData c : clinicals) { - toReturn.add(reflectToMap(c)); - } - return toReturn; - } - - /** - * Returns a single row the database - * - * @param cancerStudyId - * @param sampleId - * @param attrId - */ - public static JSONObject getJsonDatum(int cancerStudyId, String sampleId, String attrId) throws DaoException { - ClinicalAttribute attr = DaoClinicalAttributeMeta.getDatum(attrId, cancerStudyId); - List data = DaoClinicalData.getSampleAndPatientData(cancerStudyId, Collections.singletonList(sampleId), attr); - if (data.isEmpty()) { - return new JSONObject(); - } - return reflectToMap(data.get(0)); - } - - public static String getTxtDatum(int cancerStudyId, String sampleId, String attrId) throws DaoException { - ClinicalAttribute attr = DaoClinicalAttributeMeta.getDatum(attrId, cancerStudyId); - List data = DaoClinicalData.getSampleAndPatientData(cancerStudyId, Collections.singletonList(sampleId), attr); - if (data.isEmpty()) { - return ""; - } - - ClinicalData c = data.get(0); - return "" + c.getStableId() + "\t" + c.getAttrId() + "\t" + c.getAttrVal(); - } - - /** - * Creates a json object with data and attributes fields that correspond to the data - * in the clinicals and the set of attributes that exist in the clinicals, filtered - * by the defined cancer study ID. - * @param clinicals - * @param cancer_study_id - * @return - * @throws DaoException - */ - public static JSONObject generateJson(List clinicals, Integer cancer_study_id) throws DaoException { - Set attrs = new HashSet(); - JSONObject toReturn = new JSONObject(); - JSONArray data = new JSONArray(); - - Set attrIds = new HashSet(); - for (ClinicalData c : clinicals) { -// if (!c.getAttrVal().equalsIgnoreCase(NA)) { // filter out NAs - data.add(reflectToMap(c)); - attrIds.add(c.getAttrId()); -// } - } - - for (ClinicalAttribute attr : DaoClinicalAttributeMeta.getDatum(attrIds, cancer_study_id)) { - attrs.add(reflectToMap(attr)); - } - - Iterator attrsIt = attrs.iterator(); - JSONArray attributes = new JSONArray(); - while (attrsIt.hasNext()) { - attributes.add(attrsIt.next()); - } - - toReturn.put("data", data); - toReturn.put("attributes", attributes); - - return toReturn; - } - /** - * - * @param cancerStudyId - * @return An object with 2 fields: - * -- data: array of object literals corresponding to rows in the database - * -- attributes: array of clinical attribute metadatas (object literals) that appear in the data - * @throws DaoException - */ - public static JSONObject getJSON(int cancerStudyId, List sampleIds) throws DaoException { - List clinicals = DaoClinicalData.getSampleAndPatientData(cancerStudyId, sampleIds); - - return generateJson(clinicals, cancerStudyId); - } - - public static JSONObject getJSON(int cancerStudyId, List sampleIds, String attrId) throws DaoException { - - ClinicalAttribute attr = DaoClinicalAttributeMeta.getDatum(attrId, cancerStudyId); - List clinicals = DaoClinicalData.getSampleAndPatientData(cancerStudyId, sampleIds, attr); - - return generateJson(clinicals, cancerStudyId); - } - - - - - private static final Map clinicalAttributeRank = new HashMap(); - static { - clinicalAttributeRank.put(null, -1); - clinicalAttributeRank.put("CASE_ID", -1); // EXCLUDE - clinicalAttributeRank.put("PATIENT_ID", 1); - } - private static int getClinicalAttributeRank(String attrId) { - Integer r = clinicalAttributeRank.get(attrId); - if (r==null) { - return 1000; - } - return r; - } - - /** - * Takes a list of clinicals and turns them into a tab-delimited, new-line ended string. - * - * invariants : 1. they all must have the same sampleId - * 2. no repeats - * - * @param clinicals - * @return - */ - public static String getTxt(int cancerStudyId, List sampleIds) throws DaoException { - List allClinicals = DaoClinicalData.getSampleAndPatientData(cancerStudyId, sampleIds); - - TreeSet headers = new TreeSet(new Comparator() { - @Override - public int compare(String str1, String str2) { - Integer r1 = getClinicalAttributeRank(str1); - Integer r2 = getClinicalAttributeRank(str2); - if (r1.equals(r2)) { - return str1.compareTo(str2); - } - - return r1.compareTo(r2); - } - }); - Map> sampleId2Clinical = new HashMap>(); - for (ClinicalData c : allClinicals) { - if (getClinicalAttributeRank(c.getAttrId())<0) { - continue; - } - - Map got = sampleId2Clinical.get(c.getStableId()); - - if (got == null) { - got = new HashMap(); - sampleId2Clinical.put(c.getStableId(), got); - } - - got.put(c.getAttrId(),c); - headers.add(c.getAttrId()); - } - - StringBuilder sb = new StringBuilder(); - sb.append("CASE_ID"); - for (String h : headers) { - sb.append('\t').append(h); - } - sb.append('\n'); - - for (Map.Entry> entry : sampleId2Clinical.entrySet()) { - String sampleId = entry.getKey(); - sb.append(sampleId); - Map value = entry.getValue(); - for (String h : headers) { - sb.append('\t'); - ClinicalData cd = value.get(h); - if (cd!=null) { - sb.append(cd.getAttrVal()); - } - } - sb.append('\n'); - } - - return sb.toString(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetGeneticProfiles.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/GetGeneticProfiles.java deleted file mode 100644 index 4cb117a3583..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetGeneticProfiles.java +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import java.util.ArrayList; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneticProfile; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.GeneticProfile; - -/** - * Web API for Getting Genetic Profiles. - * - * @author Ethan Cerami. - */ -public class GetGeneticProfiles { - - /** - * Gets all Genetic Profiles associated with a specific cancer study. - * - * @param cancerStudyId Cancer Study ID. - * @return ArrayList of GeneticProfile Objects. - * @throws DaoException Remote / Network IO Error. - */ - public static ArrayList getGeneticProfiles(String cancerStudyId) - throws DaoException { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyId); - if (cancerStudy != null) { - return DaoGeneticProfile.getAllGeneticProfiles(cancerStudy.getInternalId()); - } else { - return new ArrayList(); - } - } - - /** - * Get the genetic profiles for a cancer study - * - * @param cancerStudyStableId Stable Identifier for Cancer Study. - * @return Genetic Profiles Table Output. - * @throws DaoException Database Exception. - */ - public static String getGeneticProfilesAsTable(String cancerStudyStableId) throws DaoException { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyStableId); - StringBuilder buf = new StringBuilder(); - if (cancerStudy != null) { - int cancerStudyInternalId = cancerStudy.getInternalId(); - ArrayList list = - DaoGeneticProfile.getAllGeneticProfiles(cancerStudyInternalId); - if (list.size() > 0) { - - buf.append("genetic_profile_id\tgenetic_profile_name\tgenetic_profile_description\t" + - "cancer_study_id\t" + - "genetic_alteration_type\tshow_profile_in_analysis_tab\n"); - for (GeneticProfile geneticProfile : list) { - buf.append(geneticProfile.getStableId()).append("\t"); - buf.append(geneticProfile.getProfileName()).append("\t"); - buf.append(geneticProfile.getProfileDescription()).append("\t"); - buf.append(geneticProfile.getCancerStudyId()).append("\t"); - buf.append(geneticProfile.getGeneticAlterationType().name()).append("\t"); - buf.append(geneticProfile.showProfileInAnalysisTab()).append("\n"); - } - } else { - buf.append("Error: No genetic profiles available for: ") - .append(cancerStudyStableId).append(".\n"); - return buf.toString(); - } - } - return buf.toString(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetMutSig.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/GetMutSig.java deleted file mode 100644 index ad180133964..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetMutSig.java +++ /dev/null @@ -1,128 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoMutSig; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.MutSig; - -import java.util.ArrayList; -import java.util.regex.Pattern; - -/** - * @author Lennart Bastian - */ -public class GetMutSig { - - private GetMutSig() { - } - - /* - * GetMutSig uses DaoMutSig to retrieve all MutSigs of a specific - * cancer study from the database, in an Arraylist. - * One option is to input only a CancerStudyId and retrieve - * the entire Gene List. - * @throws DaoException Database Error - * @returns StringBuffer - MutSig Table - */ - - public static StringBuffer getMutSig(int cancerStudy) - throws DaoException { - StringBuffer toReturn = header(new StringBuffer()); - ArrayList mutSigList = DaoMutSig.getAllMutSig(cancerStudy); - for (int i = 0; i < mutSigList.size(); i++) { - toReturn.append(parseMutSig(mutSigList.get(i))); - } - return toReturn; - } - - /* - * The second option is to input either a Gene List (foo = false) of a Q Value Threshold (foo = true) - * to retrieve only a specific number of Genes. - */ - - public static StringBuffer getMutSig(int cancerStudy, String qValueOrGeneList, Boolean qOrGene) - throws DaoException { - StringBuffer toReturn = header(new StringBuffer()); - //code for Q Value Threshold - if (qOrGene) { - ArrayList mutSigList = DaoMutSig.getAllMutSig(cancerStudy, Double.parseDouble(qValueOrGeneList)); - for (int i = 0; i < mutSigList.size(); i++) { - toReturn.append(parseMutSig(mutSigList.get(i))); - } - //code for Gene List - } else if (!qOrGene) { - Pattern p = Pattern.compile("[,\\s]+"); - String genes[] = p.split(qValueOrGeneList); - for (String gene : genes) { - gene = gene.trim(); - if (gene.length() == 0) { - continue; - } - MutSig mutSig = DaoMutSig.getMutSig(gene, cancerStudy); - toReturn.append(parseMutSig(mutSig)); - } - } - return toReturn; - } - - /* - * Splits of each individual MutSig and returns as String - */ - - private static String parseMutSig(MutSig mutSig) { - String toReturn = ""; - toReturn += Integer.toString(mutSig.getCancerType()) + "\t"; - CanonicalGene gene = mutSig.getCanonicalGene(); - toReturn += Long.toString(gene.getEntrezGeneId()) + "\t"; - toReturn += gene.getHugoGeneSymbolAllCaps() + "\t"; - toReturn += Integer.toString(mutSig.getRank()) + "\t"; - toReturn += Integer.toString(mutSig.getNumBasesCovered()) + "\t"; - toReturn += Integer.toString(mutSig.getNumMutations()) + "\t"; -// toReturn += Integer.toString(mutSig.getnVal()) + "\t"; -// toReturn += Integer.toString(mutSig.getnVer()) + "\t"; -// toReturn += Integer.toString(mutSig.getCpG()) + "\t"; -// toReturn += Integer.toString(mutSig.getCandG()) + "\t"; -// toReturn += Integer.toString(mutSig.getAandT()) + "\t"; -// toReturn += Integer.toString(mutSig.getIndel()) + "\t"; - toReturn += Float.toString(mutSig.getpValue()) + "\t"; - toReturn += Float.toString(mutSig.getqValue()) + "\n"; - return toReturn; - } - - private static StringBuffer header(StringBuffer stringBuffer){ - stringBuffer.append("Cancer\tEntrez\tHugo\tRank\tN\tn\tnVal\tnVer\tCpG\tC+G\tA+T\tINDEL\tp\tq\n"); - return stringBuffer; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetMutationData.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/GetMutationData.java deleted file mode 100644 index d0653071f7c..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetMutationData.java +++ /dev/null @@ -1,244 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.servlet.WebService; - -import org.apache.commons.httpclient.URI; - -import org.springframework.stereotype.Component; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.*; - -/** - * Class to get mutation data - */ -@Component -public class GetMutationData { - - public static final int GENE_SYMBOL = 0; - public static final int ID_ENTREZ_GENE = 1; - - private static final String TAB = "\t"; - - private URI uri; - private String content; - private ArrayList warningList = new ArrayList(); - - /** - * Gets MutationData Data for all specified genes in a specific genetic profile. - * - * @param profile GeneticProfile Object. - * @param geneList ArrayList of official gene symbols. - * @param sampleIdSet HashSet of Strings which are Sample Ids. - * @return ProfileData Object in an ArrayList. - * @throws DaoException, as of August 2011 GetMutationData has direct access to DAO Objects. - */ - public List getMutationData(GeneticProfile profile, - List geneList, Set sampleIdSet, XDebug xdebug) throws DaoException { - - //initialize DAO objects and ArrayLists - ArrayList mutationList = new ArrayList(); - ArrayList entrezIDList = new ArrayList(); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - - //Get Genetic Profile ID from GeneticProfile Object - int GeneticProfile = profile.getGeneticProfileId(); - if (geneList.size() > 0) { - //convert HUGOGENE List to ENTREZIDGENE List - for (String gene : geneList) { - if (null != gene) { - CanonicalGene canonicalGene = daoGeneOptimized.getGene(gene); - if(null != canonicalGene){ - Long EntrezGeneID = canonicalGene.getEntrezGeneId(); - entrezIDList.add((EntrezGeneID)); - } - } - } - - List internalSampleIds = InternalIdUtil.getInternalSampleIds(profile.getCancerStudyId(), new ArrayList(sampleIdSet)); - //parse each Mutation List retrieved from DaoMutation and add to Main Mutation List - for (Long entrezID : entrezIDList) { - List tempmutationList = DaoMutation.getMutations(GeneticProfile, entrezID); - for (ExtendedMutation mutation : tempmutationList){ - // seperate out mutations for the given set of sampleIDS. - if (internalSampleIds.contains(mutation.getSampleId())) - mutationList.add(mutation); - } - - } - return mutationList; - - } - System.err.println("Invalid list of Genes entered"); - return null; - } - - /** - * Gets warnings (if triggered). - * - * @return ArrayList of Warning Strings. - */ - public ArrayList getWarnings() { - return this.warningList; - } - - /** - * Gets URI for connecting to remote server. - * - * @return URI. - */ - public URI getURI() { - return this.uri; - } - - /** - * Gets Full Content retrieved from the CGDS. - * - * @return Full Content. - */ - public String getContent() { - return this.content; - } - - public static String getProfileData(String geneticProfileId, - List targetGeneList, - List targetSampleList) throws DaoException { - - StringBuffer buf = new StringBuffer(); - - // Get the Genetic Profile - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId - (geneticProfileId); - if (geneticProfile == null) { - buf.append("No genetic profile available for ").append(WebService.GENETIC_PROFILE_ID) - .append(": ").append(geneticProfileId).append(".\n"); - return buf.toString(); - } - - List internalSampleIds = targetSampleList==null ? null : - InternalIdUtil.getInternalSampleIds(geneticProfile.getCancerStudyId(), targetSampleList); - - // Output Actual Data - List geneList = WebApiUtil.getGeneList(targetGeneList, - geneticProfile.getGeneticAlterationType(), - buf, new ArrayList()); - - // Output DATA_TYPE - buf.append("# DATA_TYPE\t ").append(geneticProfile.getProfileName()).append("\n"); - - // Ouput Column Headings - buf.append(getColumnHeaders()).append("\n"); - - // TODO get data directly from MutationDataUtils and iterate the returned data - // Iterate through all validated genes, and extract mutation data. - for (Gene gene : geneList) { - CanonicalGene canonicalGene = (CanonicalGene) gene; - List mutationList = DaoMutation.getMutations(geneticProfile.getGeneticProfileId(), - canonicalGene.getEntrezGeneId()); - for (ExtendedMutation mutation: mutationList) { - Integer sampleId = mutation.getSampleId(); - if (targetSampleList==null || internalSampleIds.contains(sampleId)) { - buf.append(canonicalGene.getEntrezGeneId()).append(TAB); - buf.append(canonicalGene.getHugoGeneSymbolAllCaps()).append(TAB); - Sample s = DaoSample.getSampleById(sampleId); - buf.append(s.getStableId()).append(TAB); - buf.append(mutation.getSequencingCenter()).append(TAB); - buf.append(mutation.getMutationStatus()).append(TAB); - buf.append(mutation.getMutationType()).append(TAB); - buf.append(mutation.getValidationStatus()).append(TAB); - buf.append(mutation.getProteinChange()).append(TAB); - buf.append(mutation.getChr()).append(TAB); - buf.append(mutation.getStartPosition()).append(TAB); - buf.append(mutation.getEndPosition()).append(TAB); - buf.append(mutation.getReferenceAllele()).append(TAB); - buf.append(mutation.getTumorSeqAllele()).append(TAB); - buf.append(getAlleleCount(mutation.getTumorRefCount())).append(TAB); - buf.append(getAlleleCount(mutation.getTumorAltCount())).append(TAB); - buf.append(getAlleleCount(mutation.getNormalRefCount())).append(TAB); - buf.append(getAlleleCount(mutation.getNormalAltCount())).append(TAB); - buf.append(geneticProfileId); - buf.append("\n"); - } - } - } - return buf.toString(); - } - - private static String getAlleleCount(Integer count) - { - if (count == null || count < 0) - { - return "NA"; - } - else - { - return count.toString(); - } - } - - private static String getColumnHeaders() - { - StringBuffer buf = new StringBuffer(); - - // TODO externalize headers to an array and pair with corresponding data fields - buf.append("entrez_gene_id").append(TAB); - buf.append("gene_symbol").append(TAB); - buf.append("case_id").append(TAB); - buf.append("sequencing_center").append(TAB); - buf.append("mutation_status").append(TAB); - buf.append("mutation_type").append(TAB); - buf.append("validation_status").append(TAB); - buf.append("amino_acid_change").append(TAB); - buf.append("functional_impact_score").append(TAB); - buf.append("xvar_link").append(TAB); - buf.append("xvar_link_pdb").append(TAB); - buf.append("xvar_link_msa").append(TAB); - buf.append("chr").append(TAB); - buf.append("start_position").append(TAB); - buf.append("end_position").append(TAB); - buf.append("reference_allele").append(TAB); - buf.append("variant_allele").append(TAB); - buf.append("reference_read_count_tumor").append(TAB); - buf.append("variant_read_count_tumor").append(TAB); - buf.append("reference_read_count_normal").append(TAB); - buf.append("variant_read_count_normal").append(TAB); - buf.append("genetic_profile_id"); - - return buf.toString(); - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetNetwork.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/GetNetwork.java deleted file mode 100644 index 9862fb0123f..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetNetwork.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.graph.NetworkOfInterest; - -import java.util.ArrayList; - -/** - * Gets a Network of Interest, Based on Input Seed Gene List. - * - * @author Ethan Cerami. - */ -public class GetNetwork { - - - /** - * Gets Network of Interest, Based on Input Seed Gene List. - * - * @param targetGeneList Target Gene List. - * @return Tab-Delimited SIF Like Output. - * @throws DaoException Database Error. - * @throws ProtocolException Protocol Exception. - */ - public static String getNetwork(ArrayList targetGeneList) throws DaoException, - ProtocolException { - - // Convert Gene Symbols to Canonical Gene List. - ArrayList canonicalGeneList = new ArrayList(); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - for (String geneSymbol: targetGeneList) { - CanonicalGene canonicalGene = daoGeneOptimized.getGene(geneSymbol); - if (canonicalGene != null) { - canonicalGeneList.add(canonicalGene); - } - } - if (canonicalGeneList.isEmpty()) { - throw new ProtocolException ("You must specify at least one gene."); - } - - // Get the Network of Interest - NetworkOfInterest noi = new NetworkOfInterest(canonicalGeneList,null); - return noi.getTabDelim(); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetProfileData.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/GetProfileData.java deleted file mode 100644 index 0fd68552afb..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetProfileData.java +++ /dev/null @@ -1,327 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import java.io.IOException; -import java.util.*; -import org.json.simple.JSONArray; -import org.mskcc.cbio.io.WebFileConnect; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.servlet.WebService; -import org.mskcc.cbio.portal.util.*; - -/** - * Web Service to Get Profile Data. - * - * @author Ethan Cerami. - */ -public class GetProfileData { - public static final int ID_ENTREZ_GENE = 1; - public static final int GENE_SYMBOL = 0; - private String rawContent; - private String[][] matrix; - private ProfileData profileData; - private List warningList = new ArrayList(); - - /** - * Constructor. - * @param targetGeneticProfileIdList Target Genetic Profile List. - * @param targetGeneList Target Gene List. - * @param targetSampleList Target Sample List. - * @param suppressMondrianHeader Flag to suppress the mondrian header. - * @throws DaoException Database Error. - * @throws IOException IO Error. - */ - public GetProfileData (List targetGeneticProfileIdList, - List targetGeneList, - List targetSampleList, - Boolean suppressMondrianHeader) - throws DaoException, IOException { - execute(targetGeneticProfileIdList, targetGeneList, targetSampleList, suppressMondrianHeader); - } - - /** - * Constructor. - * - * @param geneticProfile Genetic Profile Object. - * @param targetGeneList Target Gene List. - * @param sampleIds White-space delimited sample IDs. - * @throws DaoException Database Error. - * @throws IOException IO Error. - */ - public GetProfileData (GeneticProfile geneticProfile, List targetGeneList, - String sampleIds) throws DaoException, IOException { - List targetGeneticProfileIdList = new ArrayList(); - targetGeneticProfileIdList.add(geneticProfile.getStableId()); - - List targetSampleList = new ArrayList(); - String sampleIdParts[] = sampleIds.split("\\s+"); - for (String sampleIdPart : sampleIdParts) { - targetSampleList.add(sampleIdPart); - } - execute(targetGeneticProfileIdList, targetGeneList, targetSampleList, true); - } - - /** - * Gets the Raw Content Generated by the Web API. - * @return Raw Content. - */ - public String getRawContent() { - return rawContent; - } - - /** - * Gets the Data Matrix Generated by the Web API. - * @return Matrix of Strings. - */ - public String[][] getMatrix() { - return matrix; - } - - /** - * Gets the Profile Data Object Generated by the Web API. - * @return ProfileData Object. - */ - public ProfileData getProfileData() { - return profileData; - } - - /** - * Gets warnings (if triggered). - * - * @return List of Warning Strings. - */ - public List getWarnings() { - return this.warningList; - } - - /** - * Executes the LookUp. - */ - private void execute(List targetGeneticProfileIdList, - List targetGeneList, List targetSampleList, - Boolean suppressMondrianHeader) throws DaoException, IOException { - this.rawContent = getProfileData (targetGeneticProfileIdList, targetGeneList, - targetSampleList, suppressMondrianHeader); - this.matrix = WebFileConnect.parseMatrix(rawContent); - - // Create the Profile Data Object - if (targetGeneticProfileIdList.size() == 1) { - String geneticProfileId = targetGeneticProfileIdList.get(0); - GeneticProfile geneticProfile = - DaoGeneticProfile.getGeneticProfileByStableId(geneticProfileId); - profileData = new ProfileData(geneticProfile, matrix); - } - } - - /** - * Gets Profile Data for Specified Target Info. - * @param targetGeneticProfileIdList Target Genetic Profile List. - * @param targetGeneList Target Gene List. - * @param targetSampleList Target Sample List. - * @param suppressMondrianHeader Flag to suppress the mondrian header. - * @return Tab Delim Text String. - * @throws DaoException Database Error. - */ - private String getProfileData(List targetGeneticProfileIdList, - List targetGeneList, - List targetSampleList, - Boolean suppressMondrianHeader) throws DaoException { - - StringBuffer buf = new StringBuffer(); - - // Validate that all Genetic Profiles are valid Stable IDs. - for (String geneticProfileId: targetGeneticProfileIdList) { - GeneticProfile geneticProfile = - DaoGeneticProfile.getGeneticProfileByStableId(geneticProfileId); - if (geneticProfile == null) { - buf.append("No genetic profile available for " + WebService.GENETIC_PROFILE_ID + ": ") - .append(geneticProfileId).append(".").append (WebApiUtil.NEW_LINE); - return buf.toString(); - } - } - // validate all genetic profiles belong to the same cancer study - if (differentCancerStudies(targetGeneticProfileIdList)) { - buf.append("Genetic profiles must come from same cancer study.").append((WebApiUtil.NEW_LINE)); - return buf.toString(); - } - int cancerStudyId = DaoGeneticProfile.getGeneticProfileByStableId(targetGeneticProfileIdList.get(0)).getCancerStudyId(); - List internalSampleIds = InternalIdUtil.getInternalSampleIds(cancerStudyId, targetSampleList); - - // Branch based on number of profiles requested. - // In the first case, we have 1 profile and 1 or more genes. - // In the second case, we have > 1 profiles and only 1 gene. - if (targetGeneticProfileIdList.size() == 1) { - String geneticProfileId = targetGeneticProfileIdList.get(0); - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId(geneticProfileId); - - // Get the Gene List - List geneList = WebApiUtil.getGeneList(targetGeneList, - geneticProfile.getGeneticAlterationType(), buf, warningList); - - // Output DATA_TYPE and COLOR_GRADIENT_SETTINGS (Used by Mondrian Cytoscape PlugIn) - if (!suppressMondrianHeader) { - buf.append("# DATA_TYPE\t ").append(geneticProfile.getProfileName()).append ("\n"); - buf.append("# COLOR_GRADIENT_SETTINGS\t ").append(geneticProfile.getGeneticAlterationType().name()) - .append ("\n"); - } - - // Ouput Column Headings - buf.append ("GENE_ID\tCOMMON"); - outputRow(targetSampleList, buf); - - // Iterate through all validated genes, and extract profile data. - for (Gene gene: geneList) { - List dataRow = GeneticAlterationUtil.getGeneticAlterationDataRow(gene, - internalSampleIds, geneticProfile); - outputGeneRow(dataRow, gene, buf); - } - } else { - // Ouput Column Headings - buf.append ("GENETIC_PROFILE_ID\tALTERATION_TYPE\tGENE_ID\tCOMMON"); - outputRow(targetSampleList, buf); - - List profiles = new ArrayList(targetGeneticProfileIdList.size()); - boolean includeRPPAProteinLevel = false; - for (String gId: targetGeneticProfileIdList) { - GeneticProfile profile = DaoGeneticProfile.getGeneticProfileByStableId(gId); - profiles.add(profile); - if (profile.getGeneticAlterationType() == GeneticAlterationType.PROTEIN_ARRAY_PROTEIN_LEVEL) { - includeRPPAProteinLevel = true; - } - } - - // for rppa protein level, choose the best correlated one - if (includeRPPAProteinLevel && profiles.size()==2) { - GeneticProfile gp1, gp2; - if (profiles.get(0).getGeneticAlterationType() == GeneticAlterationType.PROTEIN_ARRAY_PROTEIN_LEVEL) { - gp1 = profiles.get(1); - gp2 = profiles.get(0); - } else { - gp1 = profiles.get(0); - gp2 = profiles.get(1); - } - - // get data of the other profile - List dataRow1 = null; - List geneList = WebApiUtil.getGeneList(targetGeneList, - gp1.getGeneticAlterationType(), buf, warningList); - - if (geneList.size() > 0) { - Gene gene = geneList.get(0); - buf.append(gp1.getStableId()).append(WebApiUtil.TAB).append(gp1.getGeneticAlterationType().name()) - .append (WebApiUtil.TAB); - dataRow1 = GeneticAlterationUtil.getGeneticAlterationDataRow(gene, - internalSampleIds, gp1); - outputGeneRow(dataRow1, gene, buf); - } - } else { - // Iterate through all genetic profiles - for (GeneticProfile geneticProfile : profiles) { - // Get the Gene List - List geneList = WebApiUtil.getGeneList(targetGeneList, - geneticProfile.getGeneticAlterationType(), buf, warningList); - - if (geneList.size() > 0) { - Gene gene = geneList.get(0); - buf.append(geneticProfile.getStableId()).append(WebApiUtil.TAB) - .append(geneticProfile.getGeneticAlterationType().name()).append(WebApiUtil.TAB); - List dataRow = GeneticAlterationUtil.getGeneticAlterationDataRow(gene, - internalSampleIds, geneticProfile); - outputGeneRow(dataRow, gene, buf); - } - } - } - } - return buf.toString(); - } - - private static boolean differentCancerStudies(List targetGeneticProfileList) - { - if (targetGeneticProfileList.size() == 1) return false; - - int firstCancerStudyId = -1; - boolean processingFirstId = true; - for (String profileId : targetGeneticProfileList) { - GeneticProfile p = DaoGeneticProfile.getGeneticProfileByStableId(profileId); - if (processingFirstId) { - firstCancerStudyId = p.getCancerStudyId(); - processingFirstId = false; - } - else if (p.getCancerStudyId() != firstCancerStudyId) { - return true; - } - } - return false; - } - - private static void outputRow(List dataValues, StringBuffer buf) { - for (String value: dataValues) { - buf.append(WebApiUtil.TAB).append (value); - } - buf.append (WebApiUtil.NEW_LINE); - } - - private static void outputGeneRow(List dataRow, Gene gene, StringBuffer buf) - throws DaoException { - if (gene instanceof CanonicalGene) { - CanonicalGene canonicalGene = (CanonicalGene) gene; - buf.append(canonicalGene.getEntrezGeneId()).append (WebApiUtil.TAB); - buf.append (canonicalGene.getHugoGeneSymbolAllCaps()); - } else if (gene instanceof MicroRna) { - MicroRna microRna = (MicroRna) gene; - buf.append("-999999").append (WebApiUtil.TAB); - buf.append (microRna.getMicroRnaId()); - } - outputRow (dataRow, buf); - } - - public JSONArray getJson() { - JSONArray toReturn = new JSONArray(); - - - List sampleIds = new ArrayList(Arrays.asList(matrix[0])); - sampleIds.subList(0,4).clear(); // remove column names and meta data - - for (String s : sampleIds) { - toReturn.add(s); - } - -// for (String s : matrix[1]) { -// toReturn.add(s); -// } - - return toReturn; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetSampleLists.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/GetSampleLists.java deleted file mode 100644 index 805a4d4af6b..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetSampleLists.java +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; - -import java.util.ArrayList; - -/** - * Web API for Getting Patient Lists. - * - * @author Ethan Cerami. - */ -public class GetSampleLists { - - /** - * Gets all Patient Sets Associated with a specific Cancer Study. - * - * @param cancerStudyId Cancer Study ID. - * @return ArrayList of SampleSet Objects. - * @throws DaoException Database Error. - */ - public static ArrayList getSampleLists(String cancerStudyId) - throws DaoException { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyId); - if (cancerStudy != null) { - DaoSampleList daoSampleList = new DaoSampleList(); - ArrayList sampleList = daoSampleList.getAllSampleLists(cancerStudy.getInternalId()); - return sampleList; - } else { - ArrayList sampleList = new ArrayList(); - return sampleList; - } - } - - /** - * Get Patient List for Specified Stable Cancer Study ID. - * - * @param cancerStudyStableId Stable Cancer Study ID. - * @return Table output. - * @throws DaoException Database Error. - */ - public static String getSampleListsAsTable(String cancerStudyStableId) throws DaoException { - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId(cancerStudyStableId); - StringBuilder buf = new StringBuilder(); - if (cancerStudy != null) { - int cancerStudyInternalId = cancerStudy.getInternalId(); - DaoSampleList daoSampleList = new DaoSampleList(); - ArrayList list = daoSampleList.getAllSampleLists(cancerStudyInternalId); - if (list.size() > 0) { - buf.append("case_list_id\tcase_list_name\tcase_list_description\t" - + "cancer_study_id\t" + "case_ids\n"); - for (SampleList sampleList : list) { - buf.append(sampleList.getStableId()).append("\t"); - buf.append(sampleList.getName()).append("\t"); - buf.append(sampleList.getDescription()).append("\t"); - buf.append(sampleList.getCancerStudyId()).append("\t"); - for (String aSample : sampleList.getSampleList()) { - buf.append(aSample).append(" "); - } - buf.append("\n"); - } - } else { - buf.append("Error: No case lists available for: ").append(cancerStudyStableId).append(".\n"); - return buf.toString(); - } - } - return buf.toString(); - } -} - diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetTypesOfCancer.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/GetTypesOfCancer.java deleted file mode 100644 index 34917eb0391..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/GetTypesOfCancer.java +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import java.util.ArrayList; -import java.util.Comparator; -import java.util.Collections; - -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoTypeOfCancer; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.model.TypeOfCancer; -import org.mskcc.cbio.portal.model.CancerStudy; - -/** - * Get Types of Cancer and Cancer Studies. - * Used by the Web API. - * - * @author Ethan Cerami, Arthur Goldberg. - */ -public class GetTypesOfCancer { - - /** - * Gets all Types of Cancer. - * - * @return Tab-Delimited Text. - * @throws DaoException Database AccessException. - * @throws ProtocolException Protocol Error. - */ - public static String getTypesOfCancer() throws DaoException, ProtocolException { - ArrayList typeOfCancerList = DaoTypeOfCancer.getAllTypesOfCancer(); - StringBuilder buf = new StringBuilder(); - if (typeOfCancerList == null || typeOfCancerList.isEmpty()) { - throw new ProtocolException ("No Types of Cancer Available."); - } else { - buf.append("type_of_cancer_id\tname\n"); - for (TypeOfCancer typeOfCancer : typeOfCancerList) { - buf.append(typeOfCancer.getTypeOfCancerId()).append(WebApiUtil.TAB); - buf.append(typeOfCancer.getName()).append(WebApiUtil.NEW_LINE); - } - return buf.toString(); - } - } - - /** - * Gets all Cancer Studies. - * - * @return Tab-Delimited Text. - * @throws DaoException Database Access Error. - * @throws ProtocolException Protocol Error. - */ - public static String getCancerStudies() throws DaoException, ProtocolException { - ArrayList cancerStudyList = DaoCancerStudy.getAllCancerStudies(); - - if (cancerStudyList == null || cancerStudyList.isEmpty()) { - throw new ProtocolException ("No Cancer Studies Available."); - } else { - // Before returning the list, sort it alphabetically - Collections.sort(cancerStudyList, new CancerStudiesComparator()); - - StringBuilder buf = new StringBuilder(); - buf.append("cancer_study_id\tname\tdescription\n"); - - // Iterate through all cancer studies - for (CancerStudy cancerStudy : cancerStudyList) { - buf.append(cancerStudy.getCancerStudyStableId()).append(WebApiUtil.TAB); - buf.append(cancerStudy.getName()).append(WebApiUtil.TAB); - buf.append(cancerStudy.getDescription()).append(WebApiUtil.NEW_LINE); - } - return buf.toString(); - } - } -} - -/** - * Compares Cancer Studies, so that we can sort them alphabetically. - */ -class CancerStudiesComparator implements Comparator { - - /** - * Compare two cancer studies. - * @param o First Cancer Study. - * @param o1 Second Cancer Study. - * @return int indicating name sort order. - */ - public int compare(Object o, Object o1) { - CancerStudy study0 = (CancerStudy) o; - CancerStudy study1 = (CancerStudy) o1; - return study0.getName().compareTo(study1.getName()); - } -} \ No newline at end of file diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/ProtocolException.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/ProtocolException.java deleted file mode 100644 index 5d56027aaf6..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/ProtocolException.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -/** - * Wrapper exception class - */ -public class ProtocolException extends Exception { - private String msg; - - public ProtocolException (String msg) { - this.msg = msg; - } - - public String getMsg() { - return msg; - } -} diff --git a/core/src/main/java/org/mskcc/cbio/portal/web_api/WebApiUtil.java b/core/src/main/java/org/mskcc/cbio/portal/web_api/WebApiUtil.java deleted file mode 100644 index 963e4bd8f93..00000000000 --- a/core/src/main/java/org/mskcc/cbio/portal/web_api/WebApiUtil.java +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashSet; -import java.util.List; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.Gene; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.MicroRna; -import org.mskcc.cbio.portal.servlet.ServletXssUtil; -import org.mskcc.cbio.portal.util.GeneComparator; - -/** - * Utility class for web api - */ -public class WebApiUtil { - private static HashSet microRnaIdSet; - private static HashSet variantMicroRnaIdSet; - public static final String TAB = "\t"; - public static final String NEW_LINE = "\n"; - - public static List getGeneList (List targetGeneList, - GeneticAlterationType alterationType, StringBuffer warningBuffer, - List warningList) throws DaoException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - ServletXssUtil xssUtil = null; - - try { - xssUtil = ServletXssUtil.getInstance(); - } - catch (Exception e) { - } - - // Iterate through all the genes specified by the client - // Genes might be specified as Integers, e.g. Entrez Gene Ids or Strings, e.g. HUGO - // Symbols or microRNA Ids or aliases. - List geneList = new ArrayList(); - for (String geneId: targetGeneList) { - Gene gene = daoGene.getNonAmbiguousGene(geneId); - if (gene == null) { - // If that fails, try as micro RNA ID. - if (geneId.startsWith("hsa")) { - if (microRnaIdSet.contains(geneId)) { - // Conditionally Expand Micro RNAs - if (alterationType == GeneticAlterationType.COPY_NUMBER_ALTERATION) { - // Option 1: Client has specified a variant ID and really wants CNA - // data for this variant - if (variantMicroRnaIdSet.contains(geneId)) { - MicroRna microRna = new MicroRna(geneId); - geneList.add(microRna); - } - } else { - MicroRna microRna = new MicroRna(geneId); - geneList.add(microRna); - } - } else { - if (xssUtil != null) { - geneId = xssUtil.getCleanerInput(geneId); - } - String msg = "# Warning: Unknown microRNA: " + geneId; - warningBuffer.append(msg).append ("\n"); - warningList.add(msg); - } - } else { - if (xssUtil != null) { - geneId = xssUtil.getCleanerInput(geneId); - } - String msg = "# Warning: Unknown gene: " + geneId; - warningBuffer.append(msg).append ("\n"); - warningList.add(msg); - } - } else { - geneList.add(gene); - } - } - Collections.sort(geneList, new GeneComparator()); - return geneList; - } -} diff --git a/core/src/main/resources/chang_hotspot.txt b/core/src/main/resources/chang_hotspot.txt deleted file mode 100644 index ab7d0c447ae..00000000000 --- a/core/src/main/resources/chang_hotspot.txt +++ /dev/null @@ -1,470 +0,0 @@ -BRAF V600 E:520|K:33|R:4|V:1 -KRAS G12 D:255|V:227|C:115|R:71|A:43|S:23|G:1|F:1 -PIK3CA H1047 R:236|L:37|Y:6|Q:4 -IDH1 R132 H:250|C:50|G:12|S:8|L:4 -NRAS Q61 R:114|K:76|L:27|H:17|P:1 -PIK3CA E545 K:251|A:9|G:8|Q:6|D:3 -PIK3CA E542 K:134|A:4|Q:3|V:2|G:2 -TP53 R273 C:119|H:103|L:22|S:5|P:4 -TP53 R248 Q:108|W:90|L:11|P:5|G:2 -KRAS G13 D:75|C:12|V:2|R:1|G:1|A:1 -KRAS Q61 H:44|R:11|K:10|L:8|P:1|E:1 -HRAS Q61 R:19|K:10|L:9|H:2 -SF3B1 K700 E:33|R:1 -CTNNB1 D32 Y:15|G:13|N:10|V:8|H:4|A:2 -CTNNB1 S33 C:16|F:13|P:12|Y:8|A:3|T:1 -PIK3CA Q546 R:20|K:15|P:7|E:2|L:1|H:1 -FBXW7 R465 C:33|H:26|P:1|L:1|G:1 -PIK3CA N345 K:36|I:3|T:2|H:1 -CTNNB1 S37 F:21|C:16|A:6|P:4|Y:3 -U2AF1 S34 F:34|Y:3 -PTEN R130 Q:40|G:28|*:16|L:5|P:4 -TP53 R175 H:143|G:7|C:4 -TP53 Y220 C:63|S:4|H:2|N:1|D:1 -TP53 H179 -TP53 H193 R:32|Y:13|L:11|P:7|D:2|N:1 -EGFR L858 R:30 -CTNNB1 T41 A:21|I:10|N:2 -H3F3A K28 M:27 -NRAS G12 D:18|C:7|V:3|S:3|A:3|R:2 -GNAS R844 C:19|H:16|L:1 -RAC1 P29 S:25|L:5|T:1 -AKT1 E17 K:49 -EGFR A289 V:17|T:6|D:3|N:1|I:1 -FBXW7 R505 G:19|C:16|L:2|H:2|S:1 -CTNNB1 G34 R:16|V:8|E:7|A:1|*:1 -APC R1450 *:37 -TP53 C176 F:26|Y:21|S:3|G:2|*:2|W:1|R:1|C:1 -TP53 G245 S:46|D:22|V:16|C:9|R:2|A:2 -CDKN2A R80 *:50|Q:1 -ERBB2 S310 F:25|Y:1 -DNMT3A R882 H:22|C:8|P:1 -CTNNB1 S45 F:11|P:10|Y:3|C:3|S:1 -SMAD4 R361 H:20|C:18|G:2|P:1 -SPOP F133 L:9|V:4|C:4|S:3|I:2 -TP53 I195 T:25|F:11|N:5|S:2|M:2 -IDH2 R172 K:12|S:3|W:2|M:1|G:1 -HRAS G13 R:11|V:9|D:2|C:2|S:1|I:1 -HRAS G12 S:10|D:8|C:3|A:2|V:1|N:1 -PIK3CA M1043 V:13|I:11|T:2|L:2 -MYD88 L273 P:15 -ERBB3 V104 M:19|L:7 -NRAS G13 D:11|R:10|V:1 -PIK3CA G118 D:24 -BRAF G469 A:9|V:6|R:4|E:2|S:1|*:1 -BRAF K601 E:12|N:2|T:1 -KRAS A146 T:24|V:3|P:1 -ERBB2 L755 S:9|M:3|W:1|P:1 -IDH2 R140 Q:19|W:1|L:1 -APC R876 *:26|Q:1 -TP53 Y126_splice -TP53 R249 S:25|M:9|G:6|W:5|T:2|K:1 -TP53 R282 W:83|G:4|Q:2|R:1|P:1 -B2M M1 I:6|V:5|L:4|T:2|R:1 -PIK3CA C420 R:17|G:1 -TP53 Y163 C:27|N:4|H:4|D:2|*:1 -STK19 D89 N:16|D:2 -POLE P286 R:14|S:1|H:1 -FGFR3 S249 C:18 -CDKN2A W110 *:26 -FGFR2 N550 K:11|H:2 -SLC27A5 T554 I:8|T:6 -EZH2 Y646 N:6|F:4|S:2|H:2 -SMTNL2 E244_splice -NFE2L2 E79 Q:9|K:6|V:2|*:2|D:1 -RIMS2 S423 S:15 -NFE2L2 D29 H:11|Y:4|N:2|G:2 -PIK3CA K111 E:12|N:8|R:1 -TP53 C238 Y:15|F:12|S:3|R:3|G:1 -PIK3CA R88 Q:40 -PIK3CA E726 K:22|A:2 -EGFR G598 V:17|A:2 -RQCD1 P131 L:13|S:1 -FLT3 D835 Y:11|E:3|H:2|V:1 -CDKN2A H83 Y:12|R:3|D:3|Q:1 -BRAF N581 S:7|T:2|I:1|H:1 -TP53 V173 L:15|M:12|G:2|A:2|E:1 -TP53 C275 Y:15|F:10|S:4|*:2|R:1 -BRAF G466 V:10|E:6|A:1 -TP53 Y205 C:19|F:3|S:2|N:2|H:2|D:2|*:1 -RRAS2 Q72 L:7|H:2 -TP53 Y234 C:23|S:2|H:2|*:2|N:1|D:1 -APC R1114 *:24 -APC R213 *:20 -PPP2R1A R183 W:14|Q:4|G:1 -NFE2L2 E82 D:7|A:2|Q:1|G:1 -RXRA S427 F:11|Y:3 -MTOR S2215 Y:8|F:5|T:1 -HIST1H3B K28 M:11|E:1 -APC Q1378 *:15 -CDKN2A R58 *:27|R:1 -PPP2R1A P179 R:12|L:1 -CREBBP R1446 C:9|L:3|H:3|G:1 -POLE V411 L:10 -EP300 D1399 N:16|Y:2 -BRAF D594 G:6|N:5|H:1 -RHOA Y42 C:7|S:2|I:1|F:1 -FBXW7 R479 Q:13|*:4|P:2|L:2|G:2|R:1 -MAP2K1 P124 S:11|L:2|Q:1|P:1 -MAP2K1 K57 N:7|T:3 -TP53 C135 Y:9|F:9|R:3|W:2|S:2|*:2|G:1 -PIK3CA E453 K:16|Q:3|D:1 -CDKN2A V51_splice -NOTCH2 R5 R:10 -ERBB2 V842 I:14 -DCAF13 T118 T:8 -NUP93 E14 K:10|G:1 -NFE2L2 T80 K:3|R:2|P:2|A:2 -FGFR3 Y375 C:8 -ATM R337 C:13|H:5 -KNSTRN S24 F:13 -NFE2L2 G81 V:3|S:3|D:2|C:2 -CTNNB1 K335 I:8|T:1 -TP53 M237 I:17|K:4|V:3 -GPRIN2 A50 A:11 -SOS1 N233 Y:7 -SMAD4 G386 D:5|V:3|S:1|C:1|A:1 -PTEN R233 *:27|Q:1 -MAPK1 E322 K:15|*:1 -INPPL1 A1185 D:8 -TP53 R196 *:61|P:6 -TP53 G266 V:16|E:14|R:12|*:4 -TP53 C242 F:13|S:5|Y:3|W:1|G:1|C:1 -ERBB3 D297 Y:9|V:1|N:1 -CDKN2A Q50 *:12|H:2|R:1|Q:1 -MYCN P44 L:9 -POM121 N94 S:7 -TP53 R213 *:86|Q:8|L:7|P:1|G:1 -TP53 Y236 C:16|*:3|N:2|D:2 -ARID1A R1989 *:17 -APC R216 *:14 -XPO1 E571 K:12|V:1|A:1 -CDKN2A P114 L:13|T:1|H:1 -MYO18A G979 G:6|A:1 -TP53 P151 S:10|H:7|T:4|R:4|A:4|F:1 -GNAQ T96 S:7 -BNC2 S575 R:7|I:1 -NFE2L2 Q26 P:2|K:2|R:1|L:1|H:1 -CDK4 R24 L:5|H:3|C:2|S:1 -LRP1 P1058 T:7|L:1 -DTD2 R6 W:11 -SMAD2 S464 *:11 -TP53 A187_splice -RHEB Y35 N:5|C:1 -HOXB2 P335 P:6 -TP53 R280 K:15|T:10|G:6|I:5|S:4|*:1 -SNRPD3 G96 V:4|S:1|R:1|C:1 -GPRIN2 T100 P:7 -ALK F1174 L:6|C:2|V:1 -MED12 L1224 F:9|V:1 -ARL16 G6 R:7 -MAGOH I137 T:6 -CCT8 I86 T:6 -CCND1 Y44 D:2|S:1|H:1|F:1|C:1|*:1 -CRNKL1 S128 F:8|S:2 -TP53 K132 N:16|R:7|E:6|T:3|Q:1|M:1 -NT5C3A D322 G:6 -EGFR L861 Q:7 -PIK3R1 M582_splice -TP53 C141 Y:10|W:6|R:2|G:2|S:1|F:1|*:1 -RIMS1 R71 G:5|R:2 -OXA1L L57 F:9 -LENG8 G377 G:6 -APC R499 *:13 -APC Q1429 *:6|R:1 -ING1 R339 *:11 -SPOP W131 G:4|S:1|R:1|C:1 -TPTE2 M41 V:8 -TRUB1 T34 P:6 -ACADS R330 H:8|C:2 -ACSBG2 I250 M:5 -SPTA1 K1732 T:7 -TP53 V274 F:7|D:5|G:4|A:4|L:1 -PTPN11 Q510 L:3|H:3|E:1 -SF3B1 N626 Y:3|H:2|D:1 -RAC1 A178 V:10 -ARIH1 A409 E:6 -KRAS G60 G:10|D:1 -TP53 V216 M:15|L:2|G:2|E:1 -PIK3R1 N564 D:6 -PIK3R1 G376 R:9 -PIK3CA Y1021 C:7|H:2 -C5orf49 K130 T:6 -NPAS1 F159 F:6|L:1 -APC R564 *:12 -NFE2L2 L30 F:3|P:2|H:2|R:1 -RAF1 S257 L:11|W:1 -TP53 Q331_splice -KIAA1468 Q579 K:6 -BCL2L12 F8 F:8 -SF3B1 R625 H:4|C:4|L:2|G:1 -AHI1 Q294 R:5 -KDM6A Q555 *:9 -FGFR1 K687 E:4|N:1|K:1|*:1 -KIT K642 E:5|N:1 -TP53 S241 F:19|Y:10|C:6|P:3|A:2 -OBP2B S133 P:5 -APC R232 *:12 -TP53 L194 R:15|H:3|F:3|P:2 -MAP2K1 F53 L:4|V:1|I:1 -GNA11 Q209 L:5 -MAPK7 A501 D:6 -TP53 S33_splice -PRSS27 V246 G:5 -PCDHA10 G539 A:8|V:1 -MAP2K2 F57 L:3|V:2 -PTPN11 A72 T:3|V:2|D:2 -TP53 V272 M:17|G:4|V:1|L:1|K:1|E:1 -SYT13 P228 S:7|T:1 -FAM46D S69 R:4|G:2 -PTN K44 T:6|M:1 -TP53 P278 S:11|L:7|T:6|R:5|A:5|H:3 -HEXDC T482 P:5 -ZBTB7A K424 T:4|N:1 -EVPL C322 C:6 -FGFR1 N577 K:5|D:1 -TP53 V225_splice -TP53 H214 R:15|L:1 -ERBB2 R678 Q:9 -PTEN C136 R:4|Y:2|F:2|*:1 -CTNNB1 N387 K:4|Y:1|I:1 -ERBB2 D769 Y:5|H:2|N:1 -MEF2A P99 S:7 -FGFR3 R248 C:9 -MYO18B P1018 S:3|P:3|L:2|T:1 -TP53 T125_splice SS:23 -CDKN2A E88 *:10|K:5 -COBL E480 D:6 -ATM N2875 S:3|T:2|K:1 -ZHX3 N249 K:6 -APC Y935 *:6 -PLCB3 T909 P:5 -CHIT1 W358 *:7 -FRMD4B P368 S:5|L:1|F:1 -PCSK5 W924 *:7|L:1 -KRAS K117 N:9 -C3orf70 S6 L:9|W:2|*:1 -APC Q1338 *:6 -CHD3 I293 L:5 -OVGP1 S536 G:5 -INMT S212 F:8|S:1 -LAMC1 P641 P:4|L:2 -LCE1A K28 T:2|R:2|M:1 -PPP6C R301 C:14 -NFE2L2 G31 A:4|R:2|V:1|E:1 -U2AF1 Q157 R:2|P:2 -CDH1 Q23 *:7 -SF3B1 G742 D:6 -KAT8 R98 W:7|Q:1 -SEMA4B S231 S:4|F:2 -CTNNB1 H36 P:5|Y:1 -ERBB2 V777 L:4|M:1 -PNLIPRP3 K431 T:5|R:1 -NFE2L2 R34 G:7|Q:4|P:2 -FGFR2 S252 W:10|S:2 -FBXW7 R367 *:12 -FOXA1 I176 M:4|V:3 -SLC4A11 V718 G:5 -H3F3A G35 R:6 -FGFR2 C383 R:4|Y:1 -KIAA0020 K63 R:5 -TP53 F270 S:5|L:4|I:4|C:2|V:1 -SF3B1 K666 T:2|E:2|Q:1 -PIK3R1 R348 *:14 -PIK3R1 K567 E:5 -ALK R1275 Q:10|L:1|*:1 -U2AF1 I24 T:3|V:1 -DNAJB1 L190 L:4 -STAT3 H410 R:3|P:2 -PIK3CA E81 K:12|*:1 -TP53 E225_splice SS:19 -PTPN11 E76 K:4|A:2|G:1 -EGFR G719 A:5|D:1|C:1 -EHMT1 V280 F:5 -WDR73 G316 R:5 -TMEM131 E1319 Q:4|*:2|K:1 -WDR52 V1227 G:5 -SMAD4 D351 G:3|Y:2|H:2|A:1 -DICER1 E1813 G:3|Q:2|A:1 -HOOK2 S630 S:3|F:2|A:1 -KLF5 E419 Q:4|K:3 -LST3 R709 R:4|T:1|K:1 -HSD11B1 G45 V:2|R:2|W:1|G:1|E:1 -RBM39 T353 I:4|T:1 -PCBP1 L102 Q:2|R:1|P:1 -BCL2L12 F17 F:7 -SPOP Y87 S:2|N:2|C:1 -MYC T73 P:3|I:2 -TROAP S562 I:5 -PTPN11 G503 V:6|G:1 -ACVR1 R258 G:4|M:1 -PIK3CA V344 G:5|M:4|A:2 -ARID3A S557 G:4 -THBD C554 C:7 -TP53 G244 D:9|C:8|S:5|V:2|R:1|G:1 -SMARCA4 G1232 S:6|C:2|V:1 -RARA F286 S:2|I:1|C:1 -CCND1 P287 L:3|S:2|T:1 -CYP4A11 I491 M:3|T:1 -MAX R60 Q:9 -ARAF S214 F:3|S:1|C:1|A:1 -RQCD1 S87 P:3|C:3 -ABCC10 R570 W:5|Q:2|L:1 -FRMD6 S17 S:3|I:1|C:1 -NCR1 E42 K:6|G:1|E:1 -CELSR1 W1958 G:4|C:1 -LRP5 S1609 P:4|S:1 -MYO9A P1300 S:5|P:1|L:1 -CYP2C8 P402 S:7|L:2 -PIK3CA N1044 K:4|Y:2 -CDK4 K22 Q:2|M:2 -HIST1H3C K37 M:5 -TP53 N239 S:8|D:6|T:1 -LRRC71 K324 K:4 -CRB1 F630 V:5|S:1 -AMPD1 L631 F:4|V:1 -EBF2 G444 E:8|V:1 -TUBGCP4 A8 D:4|T:1 -CIZ1 L59 P:4 -TP53 I255 F:7|S:3|N:2|T:1 -PASD1 M338 I:5 -TP53 E286 K:17|*:7|G:4|Q:3|V:1|A:1 -IL7R K395 T:3|R:2|N:1|M:1|K:1 -SSBP3 K6 R:4 -PARP1 G500 G:6 -SLCO1B7 E27 K:9 -ACVR1 G328 E:4|V:2 -PCMTD1 P342 L:6|T:1|P:1 -BCL2L12 R18 W:7 -TGFBR2 R553 C:5|H:4|L:1 -VPS37B Y191 S:4 -C16orf80 R100 C:6|H:1 -TRIM65 H383 N:3|L:1 -VHL N78 S:3|D:2|Y:1 -MTOR C1483 F:2|Y:1|W:1|R:1 -DDX28 S442 S:3|F:2 -S100A8 K49 R:5 -BTBD11 K1003 T:3|R:1|M:1 -TARBP2 E191 *:5|E:1 -ZNF623 T500 K:5 -SLC16A13 F158 L:4 -TP53 S215 I:6|R:5|G:3|N:1 -PIK3CA G106 V:7|R:1 -UCHL1 H161 Y:5 -TPSD1 P22 R:6|P:3 -INTS12 M1 V:2|T:1|L:1 -FRMD6 F6 F:4 -UBXN11 S494 C:4 -SPOP F102 V:2|C:2|L:1 -PIK3CA C378 R:3|Y:2|F:1 -NFIC S339 P:4 -FBXW7 R658 *:10|Q:3|R:1 -MICA I236 T:4 -PODXL S22 P:4 -XPO6 I274 T:3|V:1 -CLECL1 Y50 N:4 -MXRA5 G792 G:9 -TSC22D2 S735 Y:4|F:2 -KIF26B R2024 H:5|C:2|S:1 -TP53 T125 T:36|M:7|P:2|R:1|K:1 -S100A3 P97 S:3|P:2 -TMEM200C R19 C:5|S:1|H:1 -SWI5 P34 S:7 -TUBGCP6 S1192 S:4 -CSPG5 R365 R:3|Q:2|W:1 -METTL14 R298 P:4|H:4 -BRD7 Y455 *:4 -ARID2 S297 F:8 -LTN1 S19 F:6|Y:1 -TP53 L111 P:5|R:4|Q:3 -PANK3 I301 F:4 -RSBN1L L432 V:4 -MYT1L K203 T:3|R:1 -TMEM147 A92 V:4|A:1 -EGFR R108 K:7|G:1 -SMAD4 D537 H:4|E:2|Y:1|V:1|G:1 -PSG4 E263 K:7 -PDHA1 G145 D:5 -LSM14A R272 C:7|H:1 -THRA R79 H:7 -FANK1 Q4 *:5 -ASF1B P21 L:3|P:2 -MAX H28 R:4 -APC Q1406 *:7 -APC E1408 *:7 -UBE2D3 M32 I:3|V:1 -MET D1010_splice -TBX2 S192 I:4 -ANKZF1 A650 V:4|A:1 -PIK3CA R38 H:7|C:4|S:1|L:1|G:1 -ELTD1 S11 F:5|S:3|P:1 -RPL10L K156 R:3|T:1|M:1 -MTOR I2500 M:3|F:1 -RHOA R5 W:5|Q:4|L:1 -RHOA E40 Q:6|K:1|*:1 -PCED1B S343 F:6|Y:1|P:1 -MYC S161 L:6 -NOL4 L423 L:3|V:1|M:1 -DNAH9 E2368 K:7|D:1 -CHST12 V12 G:4 -KCNQ5 G273 E:7|R:1 -ZNF516 A256 D:5 -CR1 R1842 C:5|H:4 -RINT1 K85 T:2|N:2 -TGFBRAP1 P824 S:2|L:2|P:1|F:1 -TOP2B R651 H:7 -PACS2 Q87 H:3|Q:1 -ZNF649 R198 I:5|S:1|K:1 -TP53 Q144 *:12|P:1|L:1|H:1 -VHL V155_splice -TACC3 P417 S:4|P:2 -ATP6V1B2 P352 S:4|P:1 -KCNJ8 G417 E:5|R:1|D:1 -TP53 D281 Y:8|N:7|V:4|E:4|H:2|D:2|P:1|G:1|A:1 -ARHGAP28 L277 R:3|P:2 -MEF2A Y105 C:4 -TCF20 P815 L:4|S:2 -BRAF L597 Q:2|S:1|R:1 -CANT1 K131 R:4 -ARID1A R1335 *:9 -LCE1F P27 P:7|Q:2|L:1 -ACP6 V29 G:4 -MAGEC1 K1046 N:6 -ACVR1B R485 *:8 -BRAF G596 R:2|V:1|S:1|D:1 -CEP63 S153 L:5|S:4 -PIK3CB D1067 V:3|Y:1|A:1 -ARHGAP33 S964 S:4 -KCNH5 T147 T:13 -DUSP16 R483 *:7 -CDKN2A L130 R:3|Q:2|V:1 -FAM58A K141_splice -C6 K817 T:5|R:1 -MED28 G7 G:3|C:1 -PROCR R98 L:8 -MARCH10 G241 E:4|R:1|G:1 -FZD10 S22 R:5 -RTKN2 R33 *:8|Q:2 -EP300 H1451 R:1|P:1|L:1|H:1 -ARID1A R693 *:8 -THSD7B G557 R:5|E:2|V:1 -THSD7B E1181 K:9 -SHROOM1 P300 T:4 -NUP93 Q15 *:4 -ERBB3 M60 K:3|R:1 -CLEC14A R193 C:5|H:3|R:2 -EYA4 L152 R:2|I:2|V:1|P:1|H:1 -CEP89 S153 G:3|I:1 -SHB A460 T:4 -APOBR E361 D:5 -SF3B1 D894 N:2|G:2|A:1 -BRINP1 G713 G:9 -RIPPLY2 S110 L:5|*:1 -TCEB1 Y79 S:1|N:1|F:1|*:1 -KCNJ12 E430 G:5|*:1 -NAP1L3 K502 R:2|T:1|N:1|M:1|K:1 -CYP7B1 K332 T:5 -HNMT L145 L:4 -NHS L215 P:4 -DHRS4 T102 M:6 -MAGI2 L603 R:3|P:2 \ No newline at end of file diff --git a/core/src/main/resources/dfs_plot.txt b/core/src/main/resources/dfs_plot.txt deleted file mode 100644 index a74127e89ad..00000000000 --- a/core/src/main/resources/dfs_plot.txt +++ /dev/null @@ -1,23 +0,0 @@ -library(Cairo) -library(survival) -attach(df) - -# Perform Disease Free Survival Analysis -dfs_surv = Surv (df$DFS_MONTHS, df$DFS_STATUS) -two_colors = c("blue", "red") -dfs_surv_fit = survfit(dfs_surv ~ GENE_SET_ALTERED) - -if (length(unique(df$GENE_SET_ALTERED))==1) { - plot (dfs_surv_fit, yscale=100, xlab="Months Disease Free", ylab="% Disease Free", cex.main=1.0, cex.axis=1.0, cex.lab=1.0, font=1) -} else { - dfs_log_rank = survdiff (dfs_surv ~ GENE_SET_ALTERED) - dfs_p_val <- 1 - pchisq(dfs_log_rank$chisq, length(dfs_log_rank$n) - 1) - - # Plot it - plot (dfs_surv_fit, col=two_colors, yscale=100, xlab="Months Disease Free", ylab="% Disease Free", cex.main=1.0, cex.axis=1.0, cex.lab=1.0, font=1) - strata = names (dfs_surv_fit$strata) - strata_english = gsub("GENE_SET_ALTERED=TRUE", "Gene Set Altered", strata) - strata_english = gsub("GENE_SET_ALTERED=FALSE", "Gene Set Not Altered", strata_english) - legend ("topright", bty="n", strata_english, fill=two_colors) - legend ("topright", bty="n", paste("Logrank test p-value: ", sprintf("%.6f", dfs_p_val)), inset=c(0.0, 0.1)) -} \ No newline at end of file diff --git a/core/src/main/resources/drug_target_annotation.txt b/core/src/main/resources/drug_target_annotation.txt deleted file mode 100644 index 538f85c2c77..00000000000 --- a/core/src/main/resources/drug_target_annotation.txt +++ /dev/null @@ -1,8 +0,0 @@ -#Gene of event Event Target gene -PTEN MUT,HOMDEL AKT1,AKT2,AKT3,PIK3CA -TSC1,TSC2 MUT,HOMDEL MTOR -BRCA1,BRCA2 MUT,HOMDEL PARP1 -CDKN2A MUT,HOMDEL CDK4,CDK6 -CCND1 MUT,AMP CDK4,CDK6 -PIK3CA MUT AKT1,AKT2,AKT3 -PIK3R1 MUT,HOMDEL AKT1,AKT2,AKT3,PIK3CA diff --git a/core/src/main/resources/gene_sets.txt b/core/src/main/resources/gene_sets.txt deleted file mode 100644 index 3738181d070..00000000000 --- a/core/src/main/resources/gene_sets.txt +++ /dev/null @@ -1,23 +0,0 @@ -Prostate Cancer: AR Signaling=SOX9 RAN TNK2 EP300 PXN NCOA2 AR NRIP1 NCOR1 NCOR2 -Prostate Cancer: AR and steroid synthesis enzymes=AKR1C3 AR CYB5A CYP11A1 CYP11B1 CYP11B2 CYP17A1 CYP19A1 CYP21A2 HSD17B1 HSD17B10 HSD17B11 HSD17B12 HSD17B13 HSD17B14 HSD17B2 HSD17B3 HSD17B4 HSD17B6 HSD17B7 HSD17B8 HSD3B1 HSD3B2 HSD3B7 RDH5 SHBG SRD5A1 SRD5A2 SRD5A3 STAR -Prostate Cancer: Steroid inactivating genes=AKR1C1 AKR1C2 AKR1C4 CYP3A4 CYP3A43 CYP3A5 CYP3A7 UGT2B15 UGT2B17 UGT2B7 -Prostate Cancer: Down-regulated by androgen=BCHE CDK8 CTBP1 ACKR3 DDC DPH1 FN1 HES6 MMP16 MYC PEG3 PIK3R3 PRKD1 SCNN1A SDC4 SERPINI1 SLC29A1 ST7 TULP4 -Glioblastoma: TP53 Pathway=CDKN2A MDM2 MDM4 TP53 -Glioblastoma: RTK/Ras/PI3K/AKT Signaling=EGFR ERBB2 PDGFRA MET KRAS NRAS HRAS NF1 SPRY2 FOXO1 FOXO3 AKT1 AKT2 AKT3 PIK3R1 PIK3CA PTEN -Glioblastoma: RB Pathway=CDKN2A CDKN2B CDKN2C CDK4 CDK6 CCND2 RB1 -Ovarian Cancer: Oncogenes associated with epithelial ovarian cancer=RAB25 MECOM EIF5A2 PRKCI PIK3CA KIT FGF1 MYC EGFR NOTCH3 KRAS AKT1 ERBB2 PIK3R1 CCNE1 AKT2 AURKA -Ovarian Cancer: Putative tumor-suppressor genes in epithelial ovarian cancer=DIRAS3 RASSF1 DLEC1 SPARC DAB2 PLAGL1 RPS6KA2 PTEN OPCML BRCA2 ARL11 WWOX TP53 DPH1 BRCA1 PEG3 -General: Cell Cycle Control=RB1 RBL1 RBL2 CCNA1 CCNB1 CDK1 CCNE1 CDK2 CDC25A CCND1 CDK4 CDK6 CCND2 CDKN2A CDKN2B MYC CDKN1A CDKN1B E2F1 E2F2 E2F3 E2F4 E2F5 E2F6 E2F7 E2F8 SRC JAK1 JAK2 STAT1 STAT2 STAT3 STAT5A STAT5B -General: p53 signaling=TP53 MDM2 MDM4 CDKN2A CDKN2B TP53BP1 -General: Notch signaling=ADAM10 ADAM17 APH1A APH1B ARRDC1 CIR1 CTBP1 CTBP2 CUL1 DLL1 DLL3 DLL4 DTX1 DTX2 DTX3 DTX3L DTX4 EP300 FBXW7 HDAC1 HDAC2 HES1 HES5 HEYL ITCH JAG1 JAG2 KDM5A LFNG MAML1 MAML2 MAML3 MFNG NCOR2 NCSTN NOTCH1 NOTCH2 NOTCH3 NOTCH4 NRARP NUMB NUMBL PSEN1 PSEN2 PSENEN RBPJ RBPJL RFNG SNW1 SPEN HES2 HES4 HES7 HEY1 HEY2 -General: DNA Damage Response=CHEK1 CHEK2 RAD51 BRCA1 BRCA2 MLH1 MSH2 ATM ATR MDC1 PARP1 FANCF -General: Other growth / proliferation signaling=CSF1 CSF1R IGF1 IGF1R FGF1 FGFR1 AURKA DLEC1 PLAGL1 OPCML DPH1 -General: Survival / cell death regulation signaling=NFKB1 NFKB2 CHUK DIRAS3 FAS HLA-G BAD BCL2 BCL2L1 APAF1 CASP9 CASP8 CASP10 CASP3 CASP6 CASP7 GSK3B ARL11 WWOX PEG3 TGFB1 TGFBR1 TGFBR2 -General: Telomere maintenance=TERC TERT -General: RTK signaling family=EGFR ERBB2 ERBB3 ERBB4 PDGFA PDGFB PDGFRA PDGFRB KIT FGF1 FGFR1 IGF1 IGF1R VEGFA VEGFB KDR -General: PI3K-AKT-mTOR signaling=PIK3CA PIK3R1 PIK3R2 PTEN PDPK1 AKT1 AKT2 FOXO1 FOXO3 MTOR RICTOR TSC1 TSC2 RHEB AKT1S1 RPTOR MLST8 -General: Ras-Raf-MEK-Erk/JNK signaling=KRAS HRAS BRAF RAF1 MAP3K1 MAP3K2 MAP3K3 MAP3K4 MAP3K5 MAP2K1 MAP2K2 MAP2K3 MAP2K4 MAP2K5 MAPK1 MAPK3 MAPK4 MAPK6 MAPK7 MAPK8 MAPK9 MAPK12 MAPK14 DAB2 RASSF1 RAB25 -General: Regulation of ribosomal protein synthesis and cell growth=RPS6KA1 RPS6KA2 RPS6KB1 RPS6KB2 EIF5A2 EIF4E EIF4EBP1 RPS6 HIF1A -General: Angiogenesis=VEGFA VEGFB KDR CXCL8 CXCR1 CXCR2 -General: Folate transport=SLC19A1 FOLR1 FOLR2 FOLR3 IZUMO1R -General: Invasion and metastasis=MMP1 MMP2 MMP3 MMP7 MMP9 MMP10 MMP11 MMP12 MMP13 MMP14 MMP15 MMP16 MMP17 MMP19 MMP21 MMP23B MMP24 MMP25 MMP26 MMP27 MMP28 ITGB3 ITGAV PTK2 CDH1 SPARC WFDC2 diff --git a/core/src/main/resources/gene_symbol_disambiguation.txt b/core/src/main/resources/gene_symbol_disambiguation.txt deleted file mode 100644 index ab97b3850ee..00000000000 --- a/core/src/main/resources/gene_symbol_disambiguation.txt +++ /dev/null @@ -1,3 +0,0 @@ -#Gene_Symbol Entrez_Gene_ID -MLL2 8085 -CDC2 983 diff --git a/core/src/main/resources/human_readable_categories.txt b/core/src/main/resources/human_readable_categories.txt deleted file mode 100644 index 37803883870..00000000000 --- a/core/src/main/resources/human_readable_categories.txt +++ /dev/null @@ -1,69 +0,0 @@ -TUMORRESIDUALDISEASE : Tumor Residual Disease -TUMORGRADE : Tumor Grade -VITALSTATUS : Vital Status -PlatinumStatus : Platinum Status -TUMORSTAGE : Tumor Stage -PERSONNEOPLASMCANCERSTATUS : Person Neoplasm Cancer Status -ProgressionFreeStatus : Progression Free Status -PRIMARYTHERAPYOUTCOMESUCCESS : Primary Therapy Outcome Success - -mutation_rate_cluster : Mutation Rate Cluster -cna_cluster_k4 : CNA Cluster K4 -cna_cluster_k3 : CNA Cluster K3 -micro_rna_cluster : microRNA Cluster -vital_status : Vital Status -cna_cluster_arm : CNA Cluster ARM -tumor_grade : Tumor Grade -mhl1_hypermethylated : MHL1 Hypermethylated -mrna_expression_cluster: mRNA Expression Cluster -2009stagegroup: 2009 Stage Group -msi_status_7_marker_call : MSI Status 7 Marker Call -data_gistic : Data Gistic -data_rna_seq : Data RNA sequence -histology : Histology -methylation_cluster : Methylation Cluster -recurred_progressed : Recurred Progressed -patient_type : Patient Type -data_maf: Data Maf -histology_grade : Histology Grade -disease_status_at_lfu : Disease Status at LFU -data_core_sample : Data Core Sample -msi_status_5_marker_call : MSI Status 5 Marker Call - -gender : Gender -histological_type : Histological Type -icd_10 : ICD 10 -pretreatment_history : Pretreatment History -prior_glioma : Prior Glioma -karnofsky_performance_score : Karnofsky Performance Score - -sequenced : Sequenced -copy-number : Copy-number -Agilent_expression : Agilent Expression -methylation : Methylation -MSI_status : MSI Status -methylation_subtype : Methylation Subtype -iCluster : i Cluster -MLH1_silencing : MLH1 Silencing -expression_subtype : Expression Subtype -hypermutated : Hypermutated -cancer : Cancer -anatomic_organ_subdivision : Anatomic Organ Subdivision -tumor_site : Tumor Site -primary_tumor_pathologic_spread : Primary Tumor Pathologic Spread -tumor_stage : Tumor Stage - -ClinT_Stage : ClinT Stage -PathStage : Path Stage -PathGG1 : Path GG1 -PathGG2 : Path GG2 -PathGGS : Path GGS -ERG-fusion gex : ERG-fusion gex -ERG-fusion aCGH : ERG-fusion Array CGH -Copy-number Cluster : Copy-number Cluster - -complete (aCGH, mRNA, sequencing) : Complete (Array CGH, mRNA, and Sequencing Data) -aCGH data : Array CGH Data -mRNA data : mRNA Data - - diff --git a/core/src/main/resources/micrornas.tsv b/core/src/main/resources/micrornas.tsv deleted file mode 100644 index bd84fb9a68c..00000000000 --- a/core/src/main/resources/micrornas.tsv +++ /dev/null @@ -1,4001 +0,0 @@ -precusor mature alias -hsa-mir-5787 hsa-miR-5787 mir-5787/5787 -hsa-mir-6068 hsa-miR-6068 mir-6068/6068 -hsa-mir-6069 hsa-miR-6069 mir-6069/6069 -hsa-mir-6070 hsa-miR-6070 mir-6070/6070 -hsa-mir-6073 hsa-miR-6073 mir-6073/6073 -hsa-mir-6074 hsa-miR-6074 mir-6074/6074 -hsa-mir-6076 hsa-miR-6076 mir-6076/6076 -hsa-mir-6078 hsa-miR-6078 mir-6078/6078 -hsa-mir-6079 hsa-miR-6079 mir-6079/6079 -hsa-mir-6080 hsa-miR-6080 mir-6080/6080 -hsa-mir-6083 hsa-miR-6083 mir-6083/6083 -hsa-mir-6084 hsa-miR-6084 mir-6084/6084 -hsa-mir-6085 hsa-miR-6085 mir-6085/6085 -hsa-mir-6087 hsa-miR-6087 mir-6087/6087 -hsa-mir-6088 hsa-miR-6088 mir-6088/6088 -hsa-mir-6089-1 hsa-miR-6089 mir-6089-1/6089 -hsa-mir-6125 hsa-miR-6125 mir-6125/6125 -hsa-mir-6126 hsa-miR-6126 mir-6126/6126 -hsa-mir-6128 hsa-miR-6128 mir-6128/6128 -hsa-mir-378j hsa-miR-378j mir-378j/378j -hsa-mir-6129 hsa-miR-6129 mir-6129/6129 -hsa-mir-6131 hsa-miR-6131 mir-6131/6131 -hsa-mir-99b hsa-miR-99b-5p mir-99b/5p -hsa-mir-99b hsa-miR-99b-3p mir-99b/3p -hsa-mir-99b hsa-miR-99b mir-99b/99b -hsa-mir-99b hsa-miR-99b* mir-99b/99b* -hsa-mir-99a hsa-miR-99a-5p mir-99a/5p -hsa-mir-6134 hsa-miR-6134 mir-6134/6134 -hsa-mir-6165 hsa-miR-6165 mir-6165/6165 -hsa-mir-99a hsa-miR-99a-3p mir-99a/3p -hsa-mir-99a hsa-miR-99a mir-99a/99a -hsa-mir-99a hsa-miR-99a* mir-99a/99a* -hsa-mir-99-21 hsa-miR-99a-5p mir-99-21/5p -hsa-mir-99-21 hsa-miR-99a-3p mir-99-21/3p -hsa-mir-99-21 hsa-miR-99a mir-99-21/99a -hsa-mir-99 hsa-miR-99a-5p mir-99/5p -hsa-mir-99 hsa-miR-99a-3p mir-99/3p -hsa-mir-99 hsa-miR-99a mir-99/99a -hsa-mir-9851 hsa-miR-9851-5p mir-9851/5p -hsa-mir-9851 hsa-miR-9851-3p mir-9851/3p -hsa-mir-98-X hsa-miR-98-5p mir-98-X/5p -hsa-mir-98-X hsa-miR-98 mir-98-X/98 -hsa-mir-98-X hsa-miR-98-3p mir-98-X/3p -hsa-mir-98 hsa-miR-98-5p mir-98/5p -hsa-mir-98 hsa-miR-98-3p mir-98/3p -hsa-mir-98 hsa-miR-98 mir-98/98 -hsa-mir-96-7 hsa-miR-96-5p mir-96-7/5p -hsa-mir-96-7 hsa-miR-96 mir-96-7/96 -hsa-mir-96-7 hsa-miR-96-3p mir-96-7/3p -hsa-mir-96 hsa-miR-96-5p mir-96/5p -hsa-mir-96 hsa-miR-96-3p mir-96/3p -hsa-mir-96 hsa-miR-96 mir-96/96 -hsa-mir-96 hsa-miR-96* mir-96/96* -hsa-mir-95-4 hsa-miR-95-3p mir-95-4/3p -hsa-mir-95-4 hsa-miR-95-5p mir-95-4/5p -hsa-mir-95 hsa-miR-95-3p mir-95/3p -hsa-mir-95 hsa-miR-95-5p mir-95/5p -hsa-mir-95 hsa-miR-95 mir-95/95 -hsa-mir-942 hsa-miR-942-5p mir-942/5p -hsa-mir-942 hsa-miR-942-3p mir-942/3p -hsa-mir-942 hsa-miR-942 mir-942/942 -hsa-mir-937 hsa-miR-937-5p mir-937/5p -hsa-mir-937 hsa-miR-937-3p mir-937/3p -hsa-mir-937 hsa-miR-937 mir-937/937 -hsa-mir-93-7.1 hsa-miR-93-5p mir-93-7.1/5p -hsa-mir-93-7.1 hsa-miR-93 mir-93-7.1/93 -hsa-mir-93-7.1 hsa-miR-93-3p mir-93-7.1/3p -hsa-mir-93-1 hsa-miR-93-5p mir-93-1/5p -hsa-mir-93-1 hsa-miR-93 mir-93-1/93 -hsa-mir-93-1 hsa-miR-93-3p mir-93-1/3p -hsa-mir-93 hsa-miR-93-5p mir-93/5p -hsa-mir-93 hsa-miR-93-3p mir-93/3p -hsa-mir-93 hsa-miR-93 mir-93/93 -hsa-mir-93 hsa-miR-93* mir-93/93* -hsa-mir-92b hsa-miR-92b-5p mir-92b/5p -hsa-mir-92b hsa-miR-92b-3p mir-92b/3p -hsa-mir-92b hsa-miR-92b* mir-92b/92b* -hsa-mir-92b hsa-miR-92b mir-92b/92b -hsa-mir-92a-2 hsa-miR-92a-2-5p mir-92a-2/5p -hsa-mir-92a-2 hsa-miR-92a-3p mir-92a-2/3p -hsa-mir-92a-2 hsa-miR-92 mir-92a-2/92 -hsa-mir-92a-2 hsa-miR-92a-2* mir-92a-2/2* -hsa-mir-92a-2 hsa-miR-92a mir-92a-2/92a -hsa-mir-92a-1 hsa-miR-92a-1-5p mir-92a-1/5p -hsa-mir-92a-1 hsa-miR-92a-3p mir-92a-1/3p -hsa-mir-92a-1 hsa-miR-92 mir-92a-1/92 -hsa-mir-92a-1 hsa-miR-92a-1* mir-92a-1/1* -hsa-mir-92a-1 hsa-miR-92a mir-92a-1/92a -hsa-mir-92-X hsa-miR-92a-2-5p mir-92-X/5p -hsa-mir-92-X hsa-miR-92a-3p mir-92-X/3p -hsa-mir-92-X hsa-miR-92 mir-92-X/92 -hsa-mir-92-X hsa-miR-92a mir-92-X/92a -hsa-mir-92-2 hsa-miR-92a-2-5p mir-92-2/5p -hsa-mir-92-2 hsa-miR-92a-3p mir-92-2/3p -hsa-mir-92-2 hsa-miR-92 mir-92-2/92 -hsa-mir-92-2 hsa-miR-92a mir-92-2/92a -hsa-mir-92-13 hsa-miR-92a-1-5p mir-92-13/5p -hsa-mir-92-13 hsa-miR-92a-3p mir-92-13/3p -hsa-mir-544a hsa-miR-544a mir-544a/544a -hsa-mir-92-13 hsa-miR-92 mir-92-13/92 -hsa-mir-92-13 hsa-miR-92a mir-92-13/92a -hsa-mir-92-1 hsa-miR-92a-1-5p mir-92-1/5p -hsa-mir-92-1 hsa-miR-92a-3p mir-92-1/3p -hsa-mir-92-1 hsa-miR-92 mir-92-1/92 -hsa-mir-92-1 hsa-miR-92a mir-92-1/92a -hsa-mir-9-3 hsa-miR-9-5p mir-9-3/5p -hsa-mir-9-3 hsa-miR-9 mir-9-3/9 -hsa-mir-9-3 hsa-miR-9* mir-9-3/9* -hsa-mir-9-2 hsa-miR-9-5p mir-9-2/5p -hsa-mir-9-2 hsa-miR-9-3p mir-9-2/3p -hsa-mir-9-2 hsa-miR-9 mir-9-2/9 -hsa-mir-9-2 hsa-miR-9* mir-9-2/9* -hsa-mir-9-1 hsa-miR-9-5p mir-9-1/5p -hsa-mir-9-1 hsa-miR-9-3p mir-9-1/3p -hsa-mir-9-1 hsa-miR-9 mir-9-1/9 -hsa-mir-9-1 hsa-miR-9* mir-9-1/9* -hsa-mir-892c hsa-miR-892c-5p mir-892c/5p -hsa-mir-892c hsa-miR-892c-3p mir-892c/3p -hsa-mir-891a hsa-miR-891a-5p mir-891a/5p -hsa-mir-891a hsa-miR-891a-3p mir-891a/3p -hsa-mir-891a hsa-miR-891a mir-891a/891a -hsa-mir-889 hsa-miR-889-5p mir-889/5p -hsa-mir-889 hsa-miR-889-3p mir-889/3p -hsa-mir-889 hsa-miR-889 mir-889/889 -hsa-mir-888 hsa-miR-888-5p mir-888/5p -hsa-mir-888 hsa-miR-888-3p mir-888/3p -hsa-mir-888 hsa-miR-888 mir-888/888 -hsa-mir-888 hsa-miR-888* mir-888/888* -hsa-mir-887 hsa-miR-887-5p mir-887/5p -hsa-mir-887 hsa-miR-887-3p mir-887/3p -hsa-mir-887 hsa-miR-887 mir-887/887 -hsa-mir-885 hsa-miR-885-5p mir-885/5p -hsa-mir-885 hsa-miR-885-3p mir-885/3p -hsa-mir-885 hsa-miR-885-5p mir-885/5p -hsa-mir-885 hsa-miR-885-3p mir-885/3p -hsa-mir-877 hsa-miR-877-5p mir-877/5p -hsa-mir-877 hsa-miR-877-3p mir-877/3p -hsa-mir-877 hsa-miR-877 mir-877/877 -hsa-mir-877 hsa-miR-877* mir-877/877* -hsa-mir-876 hsa-miR-876-5p mir-876/5p -hsa-mir-876 hsa-miR-876-3p mir-876/3p -hsa-mir-875 hsa-miR-875-5p mir-875/5p -hsa-mir-875 hsa-miR-875-3p mir-875/3p -hsa-mir-874 hsa-miR-874-5p mir-874/5p -hsa-mir-874 hsa-miR-874-3p mir-874/3p -hsa-mir-874 hsa-miR-874 mir-874/874 -hsa-mir-873 hsa-miR-873-5p mir-873/5p -hsa-mir-873 hsa-miR-873-3p mir-873/3p -hsa-mir-873 hsa-miR-873 mir-873/873 -hsa-mir-7843 hsa-miR-7843-5p mir-7843/5p -hsa-mir-7843 hsa-miR-7843-3p mir-7843/3p -hsa-mir-770 hsa-miR-770-5p mir-770/5p -hsa-mir-770 hsa-miR-770-5p mir-770/5p -hsa-mir-769 hsa-miR-769-5p mir-769/5p -hsa-mir-769 hsa-miR-769-3p mir-769/3p -hsa-mir-767 hsa-miR-767-5p mir-767/5p -hsa-mir-767 hsa-miR-767-3p mir-767/3p -hsa-mir-766 hsa-miR-766-5p mir-766/5p -hsa-mir-766 hsa-miR-766-3p mir-766/3p -hsa-mir-766 hsa-miR-766 mir-766/766 -hsa-mir-758 hsa-miR-758-5p mir-758/5p -hsa-mir-758 hsa-miR-758-3p mir-758/3p -hsa-mir-758 hsa-miR-758 mir-758/758 -hsa-mir-744 hsa-miR-744-5p mir-744/5p -hsa-mir-744 hsa-miR-744-3p mir-744/3p -hsa-mir-744 hsa-miR-744 mir-744/744 -hsa-mir-744 hsa-miR-744* mir-744/744* -hsa-mir-23 hsa-miR-23a-5p mir-23/5p -hsa-mir-7162 hsa-miR-7162-5p mir-7162/5p -hsa-mir-7162 hsa-miR-7162-3p mir-7162/3p -hsa-mir-7161 hsa-miR-7161-5p mir-7161/5p -hsa-mir-7161 hsa-miR-7161-3p mir-7161/3p -hsa-mir-7160 hsa-miR-7160-5p mir-7160/5p -hsa-mir-7160 hsa-miR-7160-3p mir-7160/3p -hsa-mir-7159 hsa-miR-7159-5p mir-7159/5p -hsa-mir-7159 hsa-miR-7159-3p mir-7159/3p -hsa-mir-7158 hsa-miR-7158-5p mir-7158/5p -hsa-mir-7158 hsa-miR-7158-3p mir-7158/3p -hsa-mir-7157 hsa-miR-7157-5p mir-7157/5p -hsa-mir-7157 hsa-miR-7157-3p mir-7157/3p -hsa-mir-7156 hsa-miR-7156-5p mir-7156/5p -hsa-mir-7156 hsa-miR-7156-3p mir-7156/3p -hsa-mir-7155 hsa-miR-7155-5p mir-7155/5p -hsa-mir-7155 hsa-miR-7155-3p mir-7155/3p -hsa-mir-7154 hsa-miR-7154-5p mir-7154/5p -hsa-mir-7154 hsa-miR-7154-3p mir-7154/3p -hsa-mir-7153 hsa-miR-7153-5p mir-7153/5p -hsa-mir-7153 hsa-miR-7153-3p mir-7153/3p -hsa-mir-7152 hsa-miR-7152-5p mir-7152/5p -hsa-mir-7152 hsa-miR-7152-3p mir-7152/3p -hsa-mir-7151 hsa-miR-7151-5p mir-7151/5p -hsa-mir-7151 hsa-miR-7151-3p mir-7151/3p -hsa-mir-7114 hsa-miR-7114-5p mir-7114/5p -hsa-mir-7114 hsa-miR-7114-3p mir-7114/3p -hsa-mir-7113 hsa-miR-7113-5p mir-7113/5p -hsa-mir-7113 hsa-miR-7113-3p mir-7113/3p -hsa-mir-7112-1 hsa-miR-7112-5p mir-7112-1/5p -hsa-mir-7112-1 hsa-miR-7112-3p mir-7112-1/3p -hsa-mir-7112 hsa-miR-7112-5p mir-7112/5p -hsa-mir-7112 hsa-miR-7112-3p mir-7112/3p -hsa-mir-7111 hsa-miR-7111-5p mir-7111/5p -hsa-mir-7111 hsa-miR-7111-3p mir-7111/3p -hsa-mir-7110 hsa-miR-7110-5p mir-7110/5p -hsa-mir-7110 hsa-miR-7110-3p mir-7110/3p -hsa-mir-7109 hsa-miR-7109-5p mir-7109/5p -hsa-mir-7109 hsa-miR-7109-3p mir-7109/3p -hsa-mir-7108 hsa-miR-7108-5p mir-7108/5p -hsa-mir-7108 hsa-miR-7108-3p mir-7108/3p -hsa-mir-7107 hsa-miR-7107-5p mir-7107/5p -hsa-mir-7107 hsa-miR-7107-3p mir-7107/3p -hsa-mir-7106 hsa-miR-7106-5p mir-7106/5p -hsa-mir-7106 hsa-miR-7106-3p mir-7106/3p -hsa-mir-708 hsa-miR-708-5p mir-708/5p -hsa-mir-708 hsa-miR-708-3p mir-708/3p -hsa-mir-708 hsa-miR-708 mir-708/708 -hsa-mir-708 hsa-miR-708* mir-708/708* -hsa-mir-7-3 hsa-miR-7-5p mir-7-3/5p -hsa-mir-7-3 hsa-miR-7 mir-7-3/7 -hsa-mir-7-2 hsa-miR-7-5p mir-7-2/5p -hsa-mir-7-2 hsa-miR-7-2-3p mir-7-2/3p -hsa-mir-7-2 hsa-miR-7-2* mir-7-2/2* -hsa-mir-7-2 hsa-miR-7 mir-7-2/7 -hsa-mir-7-1 hsa-miR-7-5p mir-7-1/5p -hsa-mir-7-1 hsa-miR-7-1-3p mir-7-1/3p -hsa-mir-7-1 hsa-miR-7 mir-7-1/7 -hsa-mir-7-1 hsa-miR-7-1* mir-7-1/1* -hsa-mir-6895 hsa-miR-6895-5p mir-6895/5p -hsa-mir-6895 hsa-miR-6895-3p mir-6895/3p -hsa-mir-6894 hsa-miR-6894-5p mir-6894/5p -hsa-mir-6894 hsa-miR-6894-3p mir-6894/3p -hsa-mir-6893 hsa-miR-6893-5p mir-6893/5p -hsa-mir-6893 hsa-miR-6893-3p mir-6893/3p -hsa-mir-6892 hsa-miR-6892-5p mir-6892/5p -hsa-mir-6892 hsa-miR-6892-3p mir-6892/3p -hsa-mir-6891 hsa-miR-6891-5p mir-6891/5p -hsa-mir-6891 hsa-miR-6891-3p mir-6891/3p -hsa-mir-6890 hsa-miR-6890-5p mir-6890/5p -hsa-mir-6890 hsa-miR-6890-3p mir-6890/3p -hsa-mir-6889 hsa-miR-6889-5p mir-6889/5p -hsa-mir-6889 hsa-miR-6889-3p mir-6889/3p -hsa-mir-6888 hsa-miR-6888-5p mir-6888/5p -hsa-mir-6888 hsa-miR-6888-3p mir-6888/3p -hsa-mir-6887 hsa-miR-6887-5p mir-6887/5p -hsa-mir-6887 hsa-miR-6887-3p mir-6887/3p -hsa-mir-6886 hsa-miR-6886-5p mir-6886/5p -hsa-mir-6886 hsa-miR-6886-3p mir-6886/3p -hsa-mir-6885 hsa-miR-6885-5p mir-6885/5p -hsa-mir-6885 hsa-miR-6885-3p mir-6885/3p -hsa-mir-6884 hsa-miR-6884-5p mir-6884/5p -hsa-mir-6884 hsa-miR-6884-3p mir-6884/3p -hsa-mir-6883 hsa-miR-6883-5p mir-6883/5p -hsa-mir-6883 hsa-miR-6883-3p mir-6883/3p -hsa-mir-6882 hsa-miR-6882-5p mir-6882/5p -hsa-mir-6882 hsa-miR-6882-3p mir-6882/3p -hsa-mir-6881 hsa-miR-6881-5p mir-6881/5p -hsa-mir-6881 hsa-miR-6881-3p mir-6881/3p -hsa-mir-6880 hsa-miR-6880-5p mir-6880/5p -hsa-mir-6880 hsa-miR-6880-3p mir-6880/3p -hsa-mir-6879 hsa-miR-6879-5p mir-6879/5p -hsa-mir-6879 hsa-miR-6879-3p mir-6879/3p -hsa-mir-6878 hsa-miR-6878-5p mir-6878/5p -hsa-mir-6878 hsa-miR-6878-3p mir-6878/3p -hsa-mir-6877 hsa-miR-6877-5p mir-6877/5p -hsa-mir-6877 hsa-miR-6877-3p mir-6877/3p -hsa-mir-6876 hsa-miR-6876-5p mir-6876/5p -hsa-mir-6876 hsa-miR-6876-3p mir-6876/3p -hsa-mir-6875 hsa-miR-6875-5p mir-6875/5p -hsa-mir-6875 hsa-miR-6875-3p mir-6875/3p -hsa-mir-6874 hsa-miR-6874-5p mir-6874/5p -hsa-mir-6874 hsa-miR-6874-3p mir-6874/3p -hsa-mir-6873 hsa-miR-6873-5p mir-6873/5p -hsa-mir-6873 hsa-miR-6873-3p mir-6873/3p -hsa-mir-6872 hsa-miR-6872-5p mir-6872/5p -hsa-mir-6872 hsa-miR-6872-3p mir-6872/3p -hsa-mir-6871 hsa-miR-6871-5p mir-6871/5p -hsa-mir-6871 hsa-miR-6871-3p mir-6871/3p -hsa-mir-6870 hsa-miR-6870-5p mir-6870/5p -hsa-mir-6870 hsa-miR-6870-3p mir-6870/3p -hsa-mir-6869 hsa-miR-6869-5p mir-6869/5p -hsa-mir-6869 hsa-miR-6869-3p mir-6869/3p -hsa-mir-6843 hsa-miR-6843-3p mir-6843/3p -hsa-mir-6868 hsa-miR-6868-5p mir-6868/5p -hsa-mir-6868 hsa-miR-6868-3p mir-6868/3p -hsa-mir-6867 hsa-miR-6867-5p mir-6867/5p -hsa-mir-6867 hsa-miR-6867-3p mir-6867/3p -hsa-mir-6866 hsa-miR-6866-5p mir-6866/5p -hsa-mir-6866 hsa-miR-6866-3p mir-6866/3p -hsa-mir-6865 hsa-miR-6865-5p mir-6865/5p -hsa-mir-6865 hsa-miR-6865-3p mir-6865/3p -hsa-mir-6864 hsa-miR-6864-5p mir-6864/5p -hsa-mir-6864 hsa-miR-6864-3p mir-6864/3p -hsa-mir-6862-2 hsa-miR-6862-5p mir-6862-2/5p -hsa-mir-6862-2 hsa-miR-6862-3p mir-6862-2/3p -hsa-mir-6862-1 hsa-miR-6862-5p mir-6862-1/5p -hsa-mir-6862-1 hsa-miR-6862-3p mir-6862-1/3p -hsa-mir-6861 hsa-miR-6861-5p mir-6861/5p -hsa-mir-6861 hsa-miR-6861-3p mir-6861/3p -hsa-mir-6859-4 hsa-miR-6859-5p mir-6859-4/5p -hsa-mir-6859-4 hsa-miR-6859-3p mir-6859-4/3p -hsa-mir-6860 hsa-miR-6860 mir-6860/6860 -hsa-mir-6859-3 hsa-miR-6859-5p mir-6859-3/5p -hsa-mir-6859-3 hsa-miR-6859-3p mir-6859-3/3p -hsa-mir-6859-2 hsa-miR-6859-5p mir-6859-2/5p -hsa-mir-6859-2 hsa-miR-6859-3p mir-6859-2/3p -hsa-mir-6859-1 hsa-miR-6859-5p mir-6859-1/5p -hsa-mir-6859-1 hsa-miR-6859-3p mir-6859-1/3p -hsa-mir-6858 hsa-miR-6858-5p mir-6858/5p -hsa-mir-6858 hsa-miR-6858-3p mir-6858/3p -hsa-mir-6857 hsa-miR-6857-5p mir-6857/5p -hsa-mir-6857 hsa-miR-6857-3p mir-6857/3p -hsa-mir-6856 hsa-miR-6856-5p mir-6856/5p -hsa-mir-6856 hsa-miR-6856-3p mir-6856/3p -hsa-mir-6855 hsa-miR-6855-5p mir-6855/5p -hsa-mir-6855 hsa-miR-6855-3p mir-6855/3p -hsa-mir-6854 hsa-miR-6854-5p mir-6854/5p -hsa-mir-6854 hsa-miR-6854-3p mir-6854/3p -hsa-mir-6853 hsa-miR-6853-5p mir-6853/5p -hsa-mir-6853 hsa-miR-6853-3p mir-6853/3p -hsa-mir-6852 hsa-miR-6852-5p mir-6852/5p -hsa-mir-6852 hsa-miR-6852-3p mir-6852/3p -hsa-mir-6851 hsa-miR-6851-5p mir-6851/5p -hsa-mir-6851 hsa-miR-6851-3p mir-6851/3p -hsa-mir-6850 hsa-miR-6850-5p mir-6850/5p -hsa-mir-6850 hsa-miR-6850-3p mir-6850/3p -hsa-mir-6849 hsa-miR-6849-5p mir-6849/5p -hsa-mir-6849 hsa-miR-6849-3p mir-6849/3p -hsa-mir-6848 hsa-miR-6848-5p mir-6848/5p -hsa-mir-6848 hsa-miR-6848-3p mir-6848/3p -hsa-mir-6847 hsa-miR-6847-5p mir-6847/5p -hsa-mir-6847 hsa-miR-6847-3p mir-6847/3p -hsa-mir-6846 hsa-miR-6846-5p mir-6846/5p -hsa-mir-6846 hsa-miR-6846-3p mir-6846/3p -hsa-mir-6845 hsa-miR-6845-5p mir-6845/5p -hsa-mir-6845 hsa-miR-6845-3p mir-6845/3p -hsa-mir-6842 hsa-miR-6842-5p mir-6842/5p -hsa-mir-6842 hsa-miR-6842-3p mir-6842/3p -hsa-mir-6841 hsa-miR-6841-5p mir-6841/5p -hsa-mir-6841 hsa-miR-6841-3p mir-6841/3p -hsa-mir-6840 hsa-miR-6840-5p mir-6840/5p -hsa-mir-6840 hsa-miR-6840-3p mir-6840/3p -hsa-mir-6839 hsa-miR-6839-5p mir-6839/5p -hsa-mir-6839 hsa-miR-6839-3p mir-6839/3p -hsa-mir-6838 hsa-miR-6838-5p mir-6838/5p -hsa-mir-6838 hsa-miR-6838-3p mir-6838/3p -hsa-mir-6837 hsa-miR-6837-5p mir-6837/5p -hsa-mir-6837 hsa-miR-6837-3p mir-6837/3p -hsa-mir-6836 hsa-miR-6836-5p mir-6836/5p -hsa-mir-6836 hsa-miR-6836-3p mir-6836/3p -hsa-mir-6835 hsa-miR-6835-5p mir-6835/5p -hsa-mir-6835 hsa-miR-6835-3p mir-6835/3p -hsa-mir-6834 hsa-miR-6834-5p mir-6834/5p -hsa-mir-6834 hsa-miR-6834-3p mir-6834/3p -hsa-mir-6833 hsa-miR-6833-5p mir-6833/5p -hsa-mir-6833 hsa-miR-6833-3p mir-6833/3p -hsa-mir-6832 hsa-miR-6832-5p mir-6832/5p -hsa-mir-6832 hsa-miR-6832-3p mir-6832/3p -hsa-mir-6831 hsa-miR-6831-5p mir-6831/5p -hsa-mir-6831 hsa-miR-6831-3p mir-6831/3p -hsa-mir-6830 hsa-miR-6830-5p mir-6830/5p -hsa-mir-6830 hsa-miR-6830-3p mir-6830/3p -hsa-mir-6829 hsa-miR-6829-5p mir-6829/5p -hsa-mir-6829 hsa-miR-6829-3p mir-6829/3p -hsa-mir-6828 hsa-miR-6828-5p mir-6828/5p -hsa-mir-6828 hsa-miR-6828-3p mir-6828/3p -hsa-mir-6827 hsa-miR-6827-5p mir-6827/5p -hsa-mir-6072 hsa-miR-6072 mir-6072/6072 -hsa-mir-6827 hsa-miR-6827-3p mir-6827/3p -hsa-mir-6826 hsa-miR-6826-5p mir-6826/5p -hsa-mir-6826 hsa-miR-6826-3p mir-6826/3p -hsa-mir-6825 hsa-miR-6825-5p mir-6825/5p -hsa-mir-6825 hsa-miR-6825-3p mir-6825/3p -hsa-mir-6824 hsa-miR-6824-5p mir-6824/5p -hsa-mir-6824 hsa-miR-6824-3p mir-6824/3p -hsa-mir-6823 hsa-miR-6823-5p mir-6823/5p -hsa-mir-6823 hsa-miR-6823-3p mir-6823/3p -hsa-mir-6822 hsa-miR-6822-5p mir-6822/5p -hsa-mir-6822 hsa-miR-6822-3p mir-6822/3p -hsa-mir-6821 hsa-miR-6821-5p mir-6821/5p -hsa-mir-6821 hsa-miR-6821-3p mir-6821/3p -hsa-mir-6820 hsa-miR-6820-5p mir-6820/5p -hsa-mir-6820 hsa-miR-6820-3p mir-6820/3p -hsa-mir-6819 hsa-miR-6819-5p mir-6819/5p -hsa-mir-6819 hsa-miR-6819-3p mir-6819/3p -hsa-mir-7847 hsa-miR-7847-3p mir-7847/3p -hsa-mir-8081 hsa-miR-8081 mir-8081/8081 -hsa-mir-6818 hsa-miR-6818-5p mir-6818/5p -hsa-mir-6818 hsa-miR-6818-3p mir-6818/3p -hsa-mir-6817 hsa-miR-6817-5p mir-6817/5p -hsa-mir-6817 hsa-miR-6817-3p mir-6817/3p -hsa-mir-6816 hsa-miR-6816-5p mir-6816/5p -hsa-mir-6816 hsa-miR-6816-3p mir-6816/3p -hsa-mir-7150 hsa-miR-7150 mir-7150/7150 -hsa-mir-6815 hsa-miR-6815-5p mir-6815/5p -hsa-mir-6815 hsa-miR-6815-3p mir-6815/3p -hsa-mir-6814 hsa-miR-6814-5p mir-6814/5p -hsa-mir-6814 hsa-miR-6814-3p mir-6814/3p -hsa-mir-6813 hsa-miR-6813-5p mir-6813/5p -hsa-mir-6813 hsa-miR-6813-3p mir-6813/3p -hsa-mir-6812 hsa-miR-6812-5p mir-6812/5p -hsa-mir-6812 hsa-miR-6812-3p mir-6812/3p -hsa-mir-6811 hsa-miR-6811-5p mir-6811/5p -hsa-mir-6811 hsa-miR-6811-3p mir-6811/3p -hsa-mir-6810 hsa-miR-6810-5p mir-6810/5p -hsa-mir-6810 hsa-miR-6810-3p mir-6810/3p -hsa-mir-6809 hsa-miR-6809-5p mir-6809/5p -hsa-mir-6809 hsa-miR-6809-3p mir-6809/3p -hsa-mir-6808 hsa-miR-6808-5p mir-6808/5p -hsa-mir-6808 hsa-miR-6808-3p mir-6808/3p -hsa-mir-6807 hsa-miR-6807-5p mir-6807/5p -hsa-mir-6807 hsa-miR-6807-3p mir-6807/3p -hsa-mir-6806 hsa-miR-6806-5p mir-6806/5p -hsa-mir-6806 hsa-miR-6806-3p mir-6806/3p -hsa-mir-6805 hsa-miR-6805-5p mir-6805/5p -hsa-mir-6805 hsa-miR-6805-3p mir-6805/3p -hsa-mir-7641-1 hsa-miR-7641 mir-7641-1/7641 -hsa-mir-6804 hsa-miR-6804-5p mir-6804/5p -hsa-mir-6804 hsa-miR-6804-3p mir-6804/3p -hsa-mir-6803 hsa-miR-6803-5p mir-6803/5p -hsa-mir-6803 hsa-miR-6803-3p mir-6803/3p -hsa-mir-6802 hsa-miR-6802-5p mir-6802/5p -hsa-mir-6802 hsa-miR-6802-3p mir-6802/3p -hsa-mir-6801 hsa-miR-6801-5p mir-6801/5p -hsa-mir-6801 hsa-miR-6801-3p mir-6801/3p -hsa-mir-6800 hsa-miR-6800-5p mir-6800/5p -hsa-mir-6800 hsa-miR-6800-3p mir-6800/3p -hsa-mir-7702 hsa-miR-7702 mir-7702/7702 -hsa-mir-7703 hsa-miR-7703 mir-7703/7703 -hsa-mir-6799 hsa-miR-6799-5p mir-6799/5p -hsa-mir-6799 hsa-miR-6799-3p mir-6799/3p -hsa-mir-6798 hsa-miR-6798-5p mir-6798/5p -hsa-mir-6798 hsa-miR-6798-3p mir-6798/3p -hsa-mir-6797 hsa-miR-6797-5p mir-6797/5p -hsa-mir-6797 hsa-miR-6797-3p mir-6797/3p -hsa-mir-7706 hsa-miR-7706 mir-7706/7706 -hsa-mir-6796 hsa-miR-6796-5p mir-6796/5p -hsa-mir-6796 hsa-miR-6796-3p mir-6796/3p -hsa-mir-6795 hsa-miR-6795-5p mir-6795/5p -hsa-mir-6795 hsa-miR-6795-3p mir-6795/3p -hsa-mir-6794 hsa-miR-6794-5p mir-6794/5p -hsa-mir-6794 hsa-miR-6794-3p mir-6794/3p -hsa-mir-7844 hsa-miR-7844-5p mir-7844/5p -hsa-mir-7845 hsa-miR-7845-5p mir-7845/5p -hsa-mir-7846 hsa-miR-7846-3p mir-7846/3p -hsa-mir-7849 hsa-miR-7849-3p mir-7849/3p -hsa-mir-7850 hsa-miR-7850-5p mir-7850/5p -hsa-mir-6793 hsa-miR-6793-5p mir-6793/5p -hsa-mir-6793 hsa-miR-6793-3p mir-6793/3p -hsa-mir-7852 hsa-miR-7852-3p mir-7852/3p -hsa-mir-7854 hsa-miR-7854-3p mir-7854/3p -hsa-mir-7855 hsa-miR-7855-5p mir-7855/5p -hsa-mir-7856 hsa-miR-7856-5p mir-7856/5p -hsa-mir-548ba hsa-miR-548ba mir-548ba/548ba -hsa-mir-6792 hsa-miR-6792-5p mir-6792/5p -hsa-mir-6792 hsa-miR-6792-3p mir-6792/3p -hsa-mir-6791 hsa-miR-6791-5p mir-6791/5p -hsa-mir-6791 hsa-miR-6791-3p mir-6791/3p -hsa-mir-6790 hsa-miR-6790-5p mir-6790/5p -hsa-mir-6790 hsa-miR-6790-3p mir-6790/3p -hsa-mir-6789 hsa-miR-6789-5p mir-6789/5p -hsa-mir-6789 hsa-miR-6789-3p mir-6789/3p -hsa-mir-6788 hsa-miR-6788-5p mir-6788/5p -hsa-mir-7974 hsa-miR-7974 mir-7974/7974 -hsa-mir-7976 hsa-miR-7976 mir-7976/7976 -hsa-mir-7977 hsa-miR-7977 mir-7977/7977 -hsa-mir-7978 hsa-miR-7978 mir-7978/7978 -hsa-mir-8054 hsa-miR-8054 mir-8054/8054 -hsa-mir-6721 hsa-miR-6721-5p mir-6721/5p -hsa-mir-8056 hsa-miR-8056 mir-8056/8056 -hsa-mir-6788 hsa-miR-6788-3p mir-6788/3p -hsa-mir-6787 hsa-miR-6787-5p mir-6787/5p -hsa-mir-6787 hsa-miR-6787-3p mir-6787/3p -hsa-mir-6786 hsa-miR-6786-5p mir-6786/5p -hsa-mir-6786 hsa-miR-6786-3p mir-6786/3p -hsa-mir-6785 hsa-miR-6785-5p mir-6785/5p -hsa-mir-8058 hsa-miR-8058 mir-8058/8058 -hsa-mir-8060 hsa-miR-8060 mir-8060/8060 -hsa-mir-8062 hsa-miR-8062 mir-8062/8062 -hsa-mir-8065 hsa-miR-8065 mir-8065/8065 -hsa-mir-6785 hsa-miR-6785-3p mir-6785/3p -hsa-mir-6784 hsa-miR-6784-5p mir-6784/5p -hsa-mir-8066 hsa-miR-8066 mir-8066/8066 -hsa-mir-6784 hsa-miR-6784-3p mir-6784/3p -hsa-mir-6783 hsa-miR-6783-5p mir-6783/5p -hsa-mir-8067 hsa-miR-8067 mir-8067/8067 -hsa-mir-8070 hsa-miR-8070 mir-8070/8070 -hsa-mir-8071-1 hsa-miR-8071 mir-8071-1/8071 -hsa-mir-8073 hsa-miR-8073 mir-8073/8073 -hsa-mir-8074 hsa-miR-8074 mir-8074/8074 -hsa-mir-6783 hsa-miR-6783-3p mir-6783/3p -hsa-mir-6782 hsa-miR-6782-5p mir-6782/5p -hsa-mir-8075 hsa-miR-8075 mir-8075/8075 -hsa-mir-8077 hsa-miR-8077 mir-8077/8077 -hsa-mir-8079 hsa-miR-8079 mir-8079/8079 -hsa-mir-8080 hsa-miR-8080 mir-8080/8080 -hsa-mir-8082 hsa-miR-8082 mir-8082/8082 -hsa-mir-8085 hsa-miR-8085 mir-8085/8085 -hsa-mir-6782 hsa-miR-6782-3p mir-6782/3p -hsa-mir-6781 hsa-miR-6781-5p mir-6781/5p -hsa-mir-8086 hsa-miR-8086 mir-8086/8086 -hsa-mir-8087 hsa-miR-8087 mir-8087/8087 -hsa-mir-8089 hsa-miR-8089 mir-8089/8089 -hsa-mir-6781 hsa-miR-6781-3p mir-6781/3p -hsa-mir-6780b hsa-miR-6780b-5p mir-6780b/5p -hsa-mir-6780b hsa-miR-6780b-3p mir-6780b/3p -hsa-mir-6780a hsa-miR-6780a-5p mir-6780a/5p -hsa-mir-10226 hsa-miR-10226 mir-10226/10226 -hsa-mir-6780a hsa-miR-6780a-3p mir-6780a/3p -hsa-mir-6779 hsa-miR-6779-5p mir-6779/5p -hsa-mir-6779 hsa-miR-6779-3p mir-6779/3p -hsa-mir-6778 hsa-miR-6778-5p mir-6778/5p -hsa-mir-6778 hsa-miR-6778-3p mir-6778/3p -hsa-mir-6777 hsa-miR-6777-5p mir-6777/5p -hsa-mir-6777 hsa-miR-6777-3p mir-6777/3p -hsa-mir-6776 hsa-miR-6776-5p mir-6776/5p -hsa-mir-6776 hsa-miR-6776-3p mir-6776/3p -hsa-mir-6775 hsa-miR-6775-5p mir-6775/5p -hsa-mir-6775 hsa-miR-6775-3p mir-6775/3p -hsa-mir-6774 hsa-miR-6774-5p mir-6774/5p -hsa-mir-6774 hsa-miR-6774-3p mir-6774/3p -hsa-mir-6773 hsa-miR-6773-5p mir-6773/5p -hsa-mir-6773 hsa-miR-6773-3p mir-6773/3p -hsa-mir-6772 hsa-miR-6772-5p mir-6772/5p -hsa-mir-6772 hsa-miR-6772-3p mir-6772/3p -hsa-mir-6771 hsa-miR-6771-5p mir-6771/5p -hsa-mir-6771 hsa-miR-6771-3p mir-6771/3p -hsa-mir-6770-3 hsa-miR-6770-5p mir-6770-3/5p -hsa-mir-6770-3 hsa-miR-6770-3p mir-6770-3/3p -hsa-mir-6770-2 hsa-miR-6770-5p mir-6770-2/5p -hsa-mir-6770-2 hsa-miR-6770-3p mir-6770-2/3p -hsa-mir-6770-1 hsa-miR-6770-5p mir-6770-1/5p -hsa-mir-6844 hsa-miR-6844 mir-6844/6844 -hsa-mir-6770-1 hsa-miR-6770-3p mir-6770-1/3p -hsa-mir-6769b hsa-miR-6769b-5p mir-6769b/5p -hsa-mir-6769b hsa-miR-6769b-3p mir-6769b/3p -hsa-mir-6769a hsa-miR-6769a-5p mir-6769a/5p -hsa-mir-6769a hsa-miR-6769a-3p mir-6769a/3p -hsa-mir-6768 hsa-miR-6768-5p mir-6768/5p -hsa-mir-6768 hsa-miR-6768-3p mir-6768/3p -hsa-mir-6767 hsa-miR-6767-5p mir-6767/5p -hsa-mir-6767 hsa-miR-6767-3p mir-6767/3p -hsa-mir-6766 hsa-miR-6766-5p mir-6766/5p -hsa-mir-6766 hsa-miR-6766-3p mir-6766/3p -hsa-mir-6765 hsa-miR-6765-5p mir-6765/5p -hsa-mir-6765 hsa-miR-6765-3p mir-6765/3p -hsa-mir-6764 hsa-miR-6764-5p mir-6764/5p -hsa-mir-6764 hsa-miR-6764-3p mir-6764/3p -hsa-mir-6763 hsa-miR-6763-5p mir-6763/5p -hsa-mir-6763 hsa-miR-6763-3p mir-6763/3p -hsa-mir-6762 hsa-miR-6762-5p mir-6762/5p -hsa-mir-6762 hsa-miR-6762-3p mir-6762/3p -hsa-mir-6761 hsa-miR-6761-5p mir-6761/5p -hsa-mir-9983 hsa-miR-9983-3p mir-9983/3p -hsa-mir-6761 hsa-miR-6761-3p mir-6761/3p -hsa-mir-6760 hsa-miR-6760-5p mir-6760/5p -hsa-mir-6760 hsa-miR-6760-3p mir-6760/3p -hsa-mir-676 hsa-miR-676-5p mir-676/5p -hsa-mir-676 hsa-miR-676-3p mir-676/3p -hsa-mir-676 hsa-miR-676* mir-676/676* -hsa-mir-676 hsa-miR-676 mir-676/676 -hsa-mir-6759 hsa-miR-6759-5p mir-6759/5p -hsa-mir-6759 hsa-miR-6759-3p mir-6759/3p -hsa-mir-6758 hsa-miR-6758-5p mir-6758/5p -hsa-mir-6758 hsa-miR-6758-3p mir-6758/3p -hsa-mir-6757 hsa-miR-6757-5p mir-6757/5p -hsa-mir-6757 hsa-miR-6757-3p mir-6757/3p -hsa-mir-6756 hsa-miR-6756-5p mir-6756/5p -hsa-mir-6756 hsa-miR-6756-3p mir-6756/3p -hsa-mir-6755 hsa-miR-6755-5p mir-6755/5p -hsa-mir-6755 hsa-miR-6755-3p mir-6755/3p -hsa-mir-6754 hsa-miR-6754-5p mir-6754/5p -hsa-mir-6754 hsa-miR-6754-3p mir-6754/3p -hsa-mir-6753 hsa-miR-6753-5p mir-6753/5p -hsa-mir-6753 hsa-miR-6753-3p mir-6753/3p -hsa-mir-6752 hsa-miR-6752-5p mir-6752/5p -hsa-mir-6752 hsa-miR-6752-3p mir-6752/3p -hsa-mir-6751 hsa-miR-6751-5p mir-6751/5p -hsa-mir-6751 hsa-miR-6751-3p mir-6751/3p -hsa-mir-6750 hsa-miR-6750-5p mir-6750/5p -hsa-mir-6750 hsa-miR-6750-3p mir-6750/3p -hsa-mir-675 hsa-miR-675-5p mir-675/5p -hsa-mir-675 hsa-miR-675-3p mir-675/3p -hsa-mir-675 hsa-miR-675b mir-675/675b -hsa-mir-675 hsa-miR-675 mir-675/675 -hsa-mir-675 hsa-miR-675* mir-675/675* -hsa-mir-6749 hsa-miR-6749-5p mir-6749/5p -hsa-mir-6749 hsa-miR-6749-3p mir-6749/3p -hsa-mir-3687-1 hsa-miR-3687 mir-3687-1/3687 -hsa-mir-6748 hsa-miR-6748-5p mir-6748/5p -hsa-mir-6748 hsa-miR-6748-3p mir-6748/3p -hsa-mir-6747 hsa-miR-6747-5p mir-6747/5p -hsa-mir-6747 hsa-miR-6747-3p mir-6747/3p -hsa-mir-7515 hsa-miR-7515 mir-7515/7515 -hsa-mir-6746 hsa-miR-6746-5p mir-6746/5p -hsa-mir-6746 hsa-miR-6746-3p mir-6746/3p -hsa-mir-6744 hsa-miR-6744-5p mir-6744/5p -hsa-mir-6744 hsa-miR-6744-3p mir-6744/3p -hsa-mir-6743 hsa-miR-6743-5p mir-6743/5p -hsa-mir-6743 hsa-miR-6743-3p mir-6743/3p -hsa-mir-6742 hsa-miR-6742-5p mir-6742/5p -hsa-mir-6742 hsa-miR-6742-3p mir-6742/3p -hsa-mir-6741 hsa-miR-6741-5p mir-6741/5p -hsa-mir-6741 hsa-miR-6741-3p mir-6741/3p -hsa-mir-6740 hsa-miR-6740-5p mir-6740/5p -hsa-mir-6740 hsa-miR-6740-3p mir-6740/3p -hsa-mir-6739 hsa-miR-6739-5p mir-6739/5p -hsa-mir-6739 hsa-miR-6739-3p mir-6739/3p -hsa-mir-6738 hsa-miR-6738-5p mir-6738/5p -hsa-mir-6738 hsa-miR-6738-3p mir-6738/3p -hsa-mir-7973-1 hsa-miR-7973 mir-7973-1/7973 -hsa-mir-6737 hsa-miR-6737-5p mir-6737/5p -hsa-mir-6737 hsa-miR-6737-3p mir-6737/3p -hsa-mir-6736 hsa-miR-6736-5p mir-6736/5p -hsa-mir-6736 hsa-miR-6736-3p mir-6736/3p -hsa-mir-6735 hsa-miR-6735-5p mir-6735/5p -hsa-mir-8061 hsa-miR-8061 mir-8061/8061 -hsa-mir-6735 hsa-miR-6735-3p mir-6735/3p -hsa-mir-6734 hsa-miR-6734-5p mir-6734/5p -hsa-mir-6734 hsa-miR-6734-3p mir-6734/3p -hsa-mir-6733 hsa-miR-6733-5p mir-6733/5p -hsa-mir-6733 hsa-miR-6733-3p mir-6733/3p -hsa-mir-6732 hsa-miR-6732-5p mir-6732/5p -hsa-mir-6732 hsa-miR-6732-3p mir-6732/3p -hsa-mir-6731 hsa-miR-6731-5p mir-6731/5p -hsa-mir-6731 hsa-miR-6731-3p mir-6731/3p -hsa-mir-6730 hsa-miR-6730-5p mir-6730/5p -hsa-mir-6730 hsa-miR-6730-3p mir-6730/3p -hsa-mir-6729 hsa-miR-6729-5p mir-6729/5p -hsa-mir-6729 hsa-miR-6729-3p mir-6729/3p -hsa-mir-6728 hsa-miR-6728-5p mir-6728/5p -hsa-mir-8069 hsa-miR-8069 mir-8069/8069 -hsa-mir-8069-1 hsa-miR-8069 mir-8069-1/8069 -hsa-mir-6728 hsa-miR-6728-3p mir-6728/3p -hsa-mir-6727 hsa-miR-6727-5p mir-6727/5p -hsa-mir-6727 hsa-miR-6727-3p mir-6727/3p -hsa-mir-6726 hsa-miR-6726-5p mir-6726/5p -hsa-mir-6726 hsa-miR-6726-3p mir-6726/3p -hsa-mir-6722 hsa-miR-6722-5p mir-6722/5p -hsa-mir-6722 hsa-miR-6722-3p mir-6722/3p -hsa-mir-6720 hsa-miR-6720-5p mir-6720/5p -hsa-mir-6720 hsa-miR-6720-3p mir-6720/3p -hsa-mir-6716 hsa-miR-6716-5p mir-6716/5p -hsa-mir-6716 hsa-miR-6716-3p mir-6716/3p -hsa-mir-6715b hsa-miR-6715b-5p mir-6715b/5p -hsa-mir-6715b hsa-miR-6715b-3p mir-6715b/3p -hsa-mir-671 hsa-miR-671-5p mir-671/5p -hsa-mir-671 hsa-miR-671 mir-671/671 -hsa-mir-671 hsa-miR-671-3p mir-671/3p -hsa-mir-668 hsa-miR-668-5p mir-668/5p -hsa-mir-6719 hsa-miR-6719-3p mir-6719/3p -hsa-mir-668 hsa-miR-668-3p mir-668/3p -hsa-mir-668 hsa-miR-668 mir-668/668 -hsa-mir-664a hsa-miR-664a-5p mir-664a/5p -hsa-mir-664a hsa-miR-664-5p mir-664a/5p -hsa-mir-664a hsa-miR-664a-3p mir-664a/3p -hsa-mir-664a hsa-miR-664 mir-664a/664 -hsa-mir-664a hsa-miR-664-3p mir-664a/3p -hsa-mir-664 hsa-miR-664a-5p mir-664/5p -hsa-mir-664 hsa-miR-664-5p mir-664/5p -hsa-mir-664 hsa-miR-664a-3p mir-664/3p -hsa-mir-664 hsa-miR-664-3p mir-664/3p -hsa-mir-664 hsa-miR-664* mir-664/664* -hsa-mir-664 hsa-miR-664 mir-664/664 -hsa-mir-663 hsa-miR-663a mir-663/663a -hsa-mir-663 hsa-miR-663 mir-663/663 -hsa-mir-660 hsa-miR-660-5p mir-660/5p -hsa-mir-660 hsa-miR-660-3p mir-660/3p -hsa-mir-660 hsa-miR-660 mir-660/660 -hsa-mir-5739 hsa-miR-5739 mir-5739/5739 -hsa-mir-6075 hsa-miR-6075 mir-6075/6075 -hsa-mir-6090 hsa-miR-6090 mir-6090/6090 -hsa-mir-659 hsa-miR-659-5p mir-659/5p -hsa-mir-659 hsa-miR-659-3p mir-659/3p -hsa-mir-659 hsa-miR-659 mir-659/659 -hsa-mir-656 hsa-miR-656-5p mir-656/5p -hsa-mir-656 hsa-miR-656-3p mir-656/3p -hsa-mir-656 hsa-miR-656 mir-656/656 -hsa-mir-655 hsa-miR-655-5p mir-655/5p -hsa-mir-655 hsa-miR-655-3p mir-655/3p -hsa-mir-655 hsa-miR-655 mir-655/655 -hsa-mir-654 hsa-miR-654-5p mir-654/5p -hsa-mir-654 hsa-miR-654 mir-654/654 -hsa-mir-6715a hsa-miR-6715a-3p mir-6715a/3p -hsa-mir-654 hsa-miR-654-3p mir-654/3p -hsa-mir-653 hsa-miR-653-5p mir-653/5p -hsa-mir-653 hsa-miR-653-3p mir-653/3p -hsa-mir-653 hsa-miR-653 mir-653/653 -hsa-mir-652 hsa-miR-652-5p mir-652/5p -hsa-mir-652 hsa-miR-652-3p mir-652/3p -hsa-mir-652 hsa-miR-652 mir-652/652 -hsa-mir-6516 hsa-miR-6516-5p mir-6516/5p -hsa-mir-6516 hsa-miR-6516-3p mir-6516/3p -hsa-mir-6515 hsa-miR-6515-5p mir-6515/5p -hsa-mir-6515 hsa-miR-6515-3p mir-6515/3p -hsa-mir-6514 hsa-miR-6514-5p mir-6514/5p -hsa-mir-6514 hsa-miR-6514-3p mir-6514/3p -hsa-mir-6513 hsa-miR-6513-5p mir-6513/5p -hsa-mir-6513 hsa-miR-6513-3p mir-6513/3p -hsa-mir-6512 hsa-miR-6512-5p mir-6512/5p -hsa-mir-6512 hsa-miR-6512-3p mir-6512/3p -hsa-mir-6511b-2 hsa-miR-6511b-5p mir-6511b-2/5p -hsa-mir-6511b-2 hsa-miR-6511b-3p mir-6511b-2/3p -hsa-mir-6511b-1 hsa-miR-6511b-5p mir-6511b-1/5p -hsa-mir-6511b-1 hsa-miR-6511b-3p mir-6511b-1/3p -hsa-mir-6511a-4 hsa-miR-6511a-5p mir-6511a-4/5p -hsa-mir-6511a-4 hsa-miR-6511a-3p mir-6511a-4/3p -hsa-mir-6511a-3 hsa-miR-6511a-5p mir-6511a-3/5p -hsa-mir-6511a-3 hsa-miR-6511a-3p mir-6511a-3/3p -hsa-mir-6511a-2 hsa-miR-6511a-5p mir-6511a-2/5p -hsa-mir-6511a-2 hsa-miR-6511a-3p mir-6511a-2/3p -hsa-mir-6511a-1 hsa-miR-6511a-5p mir-6511a-1/5p -hsa-mir-6511a-1 hsa-miR-6511a-3p mir-6511a-1/3p -hsa-mir-6510 hsa-miR-6510-5p mir-6510/5p -hsa-mir-6510 hsa-miR-6510-3p mir-6510/3p -hsa-mir-651 hsa-miR-651-5p mir-651/5p -hsa-mir-651 hsa-miR-651-3p mir-651/3p -hsa-mir-651 hsa-miR-651 mir-651/651 -hsa-mir-6509 hsa-miR-6509-5p mir-6509/5p -hsa-mir-6509 hsa-miR-6509-3p mir-6509/3p -hsa-mir-6508 hsa-miR-6508-5p mir-6508/5p -hsa-mir-6508 hsa-miR-6508-3p mir-6508/3p -hsa-mir-6507 hsa-miR-6507-5p mir-6507/5p -hsa-mir-6507 hsa-miR-6507-3p mir-6507/3p -hsa-mir-6506 hsa-miR-6506-5p mir-6506/5p -hsa-mir-6506 hsa-miR-6506-3p mir-6506/3p -hsa-mir-6505 hsa-miR-6505-5p mir-6505/5p -hsa-mir-6077 hsa-miR-6077 mir-6077/6077 -hsa-mir-6077-1 hsa-miR-6077 mir-6077-1/6077 -hsa-mir-6505 hsa-miR-6505-3p mir-6505/3p -hsa-mir-6504 hsa-miR-6504-5p mir-6504/5p -hsa-mir-6504 hsa-miR-6504-3p mir-6504/3p -hsa-mir-6503 hsa-miR-6503-5p mir-6503/5p -hsa-mir-6503 hsa-miR-6503-3p mir-6503/3p -hsa-mir-6502 hsa-miR-6502-5p mir-6502/5p -hsa-mir-6502 hsa-miR-6502-3p mir-6502/3p -hsa-mir-6501 hsa-miR-6501-5p mir-6501/5p -hsa-mir-6501 hsa-miR-6501-3p mir-6501/3p -hsa-mir-6500 hsa-miR-6500-5p mir-6500/5p -hsa-mir-6500 hsa-miR-6500-3p mir-6500/3p -hsa-mir-6499 hsa-miR-6499-5p mir-6499/5p -hsa-mir-6499 hsa-miR-6499-3p mir-6499/3p -hsa-mir-644a hsa-miR-644a mir-644a/644a -hsa-mir-6081 hsa-miR-6081 mir-6081/6081 -hsa-mir-644a hsa-miR-644 mir-644a/644 -hsa-mir-644 hsa-miR-644a mir-644/644a -hsa-mir-644 hsa-miR-644 mir-644/644 -hsa-mir-642b hsa-miR-642b-5p mir-642b/5p -hsa-mir-642b hsa-miR-642b-3p mir-642b/3p -hsa-mir-642b hsa-miR-642b mir-642b/642b -hsa-mir-642a hsa-miR-642a-5p mir-642a/5p -hsa-mir-8076 hsa-miR-8076 mir-8076/8076 -hsa-mir-642a hsa-miR-642 mir-642a/642 -hsa-mir-642a hsa-miR-642a-3p mir-642a/3p -hsa-mir-642a hsa-miR-642a mir-642a/642a -hsa-mir-642 hsa-miR-642a-5p mir-642/5p -hsa-mir-642 hsa-miR-642 mir-642/642 -hsa-mir-642 hsa-miR-642a mir-642/642a -hsa-mir-642 hsa-miR-642a-3p mir-642/3p -hsa-mir-629 hsa-miR-629-5p mir-629/5p -hsa-mir-629 hsa-miR-629-3p mir-629/3p -hsa-mir-629 hsa-miR-629 mir-629/629 -hsa-mir-629 hsa-miR-629* mir-629/629* -hsa-mir-628 hsa-miR-628-5p mir-628/5p -hsa-mir-628 hsa-miR-628-3p mir-628/3p -hsa-mir-628 hsa-miR-628 mir-628/628 -hsa-mir-6071 hsa-miR-6071 mir-6071/6071 -hsa-mir-5694 hsa-miR-5694 mir-5694/5694 -hsa-mir-6086 hsa-miR-6086 mir-6086/6086 -hsa-mir-627 hsa-miR-627-5p mir-627/5p -hsa-mir-627 hsa-miR-627-3p mir-627/3p -hsa-mir-627 hsa-miR-627 mir-627/627 -hsa-mir-625 hsa-miR-625-5p mir-625/5p -hsa-mir-6127 hsa-miR-6127 mir-6127/6127 -hsa-mir-625 hsa-miR-625-3p mir-625/3p -hsa-mir-625 hsa-miR-625 mir-625/625 -hsa-mir-625 hsa-miR-625* mir-625/625* -hsa-mir-624 hsa-miR-624-5p mir-624/5p -hsa-mir-624 hsa-miR-624-3p mir-624/3p -hsa-mir-624 hsa-miR-624* mir-624/624* -hsa-mir-624 hsa-miR-624 mir-624/624 -hsa-mir-619 hsa-miR-619-5p mir-619/5p -hsa-mir-619 hsa-miR-619-3p mir-619/3p -hsa-mir-619 hsa-miR-619 mir-619/619 -hsa-mir-616 hsa-miR-616-5p mir-616/5p -hsa-mir-616 hsa-miR-616-3p mir-616/3p -hsa-mir-6132 hsa-miR-6132 mir-6132/6132 -hsa-mir-616 hsa-miR-616* mir-616/616* -hsa-mir-616 hsa-miR-616 mir-616/616 -hsa-mir-615 hsa-miR-615-5p mir-615/5p -hsa-mir-615 hsa-miR-615-3p mir-615/3p -hsa-mir-615 hsa-miR-615 mir-615/615 -hsa-mir-605 hsa-miR-605-5p mir-605/5p -hsa-mir-605 hsa-miR-605-3p mir-605/3p -hsa-mir-605 hsa-miR-605 mir-605/605 -hsa-mir-598 hsa-miR-598-5p mir-598/5p -hsa-mir-598 hsa-miR-598-3p mir-598/3p -hsa-mir-598 hsa-miR-598 mir-598/598 -hsa-mir-597 hsa-miR-597-5p mir-597/5p -hsa-mir-597 hsa-miR-597-3p mir-597/3p -hsa-mir-597 hsa-miR-597 mir-597/597 -hsa-mir-593 hsa-miR-593-5p mir-593/5p -hsa-mir-593 hsa-miR-593-3p mir-593/3p -hsa-mir-593 hsa-miR-593* mir-593/593* -hsa-mir-593 hsa-miR-593 mir-593/593 -hsa-mir-590 hsa-miR-590-5p mir-590/5p -hsa-mir-590 hsa-miR-590 mir-590/590 -hsa-mir-590 hsa-miR-590-3p mir-590/3p -hsa-mir-589 hsa-miR-589-5p mir-589/5p -hsa-mir-589 hsa-miR-589-3p mir-589/3p -hsa-mir-589 hsa-miR-589 mir-589/589 -hsa-mir-589 hsa-miR-589* mir-589/589* -hsa-mir-585 hsa-miR-585-5p mir-585/5p -hsa-mir-585 hsa-miR-585-3p mir-585/3p -hsa-mir-585 hsa-miR-585 mir-585/585 -hsa-mir-584 hsa-miR-584-5p mir-584/5p -hsa-mir-584 hsa-miR-584-3p mir-584/3p -hsa-mir-584 hsa-miR-584 mir-584/584 -hsa-mir-582 hsa-miR-582-5p mir-582/5p -hsa-mir-582 hsa-miR-582 mir-582/582 -hsa-mir-582 hsa-miR-582-3p mir-582/3p -hsa-mir-580 hsa-miR-580-5p mir-580/5p -hsa-mir-580 hsa-miR-580-3p mir-580/3p -hsa-mir-580 hsa-miR-580 mir-580/580 -hsa-mir-579 hsa-miR-579-5p mir-579/5p -hsa-mir-579 hsa-miR-579-3p mir-579/3p -hsa-mir-579 hsa-miR-579 mir-579/579 -hsa-mir-576 hsa-miR-576-5p mir-576/5p -hsa-mir-576 hsa-miR-576 mir-576/576 -hsa-mir-576 hsa-miR-576-3p mir-576/3p -hsa-mir-574 hsa-miR-574-5p mir-574/5p -hsa-mir-574 hsa-miR-574-3p mir-574/3p -hsa-mir-574 hsa-miR-574 mir-574/574 -hsa-mir-570 hsa-miR-570-5p mir-570/5p -hsa-mir-570 hsa-miR-570-3p mir-570/3p -hsa-mir-570 hsa-miR-570 mir-570/570 -hsa-mir-561 hsa-miR-561-5p mir-561/5p -hsa-mir-561 hsa-miR-561-3p mir-561/3p -hsa-mir-561 hsa-miR-561 mir-561/561 -hsa-mir-5588 hsa-miR-5588-5p mir-5588/5p -hsa-mir-5588 hsa-miR-5588-3p mir-5588/3p -hsa-mir-5587 hsa-miR-5587-5p mir-5587/5p -hsa-mir-5587 hsa-miR-5587-3p mir-5587/3p -hsa-mir-5585 hsa-miR-5585-5p mir-5585/5p -hsa-mir-5585 hsa-miR-5585-3p mir-5585/3p -hsa-mir-5583-2 hsa-miR-5583-5p mir-5583-2/5p -hsa-mir-5583-2 hsa-miR-5583-3p mir-5583-2/3p -hsa-mir-5583-1 hsa-miR-5583-5p mir-5583-1/5p -hsa-mir-5583-1 hsa-miR-5583-3p mir-5583-1/3p -hsa-mir-5582 hsa-miR-5582-5p mir-5582/5p -hsa-mir-5582 hsa-miR-5582-3p mir-5582/3p -hsa-mir-5581 hsa-miR-5581-5p mir-5581/5p -hsa-mir-5581 hsa-miR-5581-3p mir-5581/3p -hsa-mir-5579 hsa-miR-5579-5p mir-5579/5p -hsa-mir-5579 hsa-miR-5579-3p mir-5579/3p -hsa-mir-5571 hsa-miR-5571-5p mir-5571/5p -hsa-mir-5571 hsa-miR-5571-3p mir-5571/3p -hsa-mir-556 hsa-miR-556-5p mir-556/5p -hsa-mir-556 hsa-miR-556 mir-556/556 -hsa-mir-556 hsa-miR-556-3p mir-556/3p -hsa-mir-552 hsa-miR-552-5p mir-552/5p -hsa-mir-552 hsa-miR-552-3p mir-552/3p -hsa-mir-552 hsa-miR-552 mir-552/552 -hsa-mir-551b hsa-miR-551b-5p mir-551b/5p -hsa-mir-551b hsa-miR-551b-3p mir-551b/3p -hsa-mir-551b hsa-miR-551b* mir-551b/551b* -hsa-mir-551b hsa-miR-551b mir-551b/551b -hsa-mir-550b-2 hsa-miR-550b-2-5p mir-550b-2/5p -hsa-mir-550b-2 hsa-miR-550b-3p mir-550b-2/3p -hsa-mir-550b-2 hsa-miR-550b mir-550b-2/550b -hsa-mir-550b-1 hsa-miR-550b-2-5p mir-550b-1/5p -hsa-mir-550b-1 hsa-miR-550b-3p mir-550b-1/3p -hsa-mir-550b-1 hsa-miR-550b mir-550b-1/550b -hsa-mir-550a-3 hsa-miR-550a-3-5p mir-550a-3/5p -hsa-mir-550a-3 hsa-miR-550a-3p mir-550a-3/3p -hsa-mir-550a-3 hsa-miR-550 mir-550a-3/550 -hsa-mir-550a-3 hsa-miR-550a* mir-550a-3/550a* -hsa-mir-550a-2 hsa-miR-550a-5p mir-550a-2/5p -hsa-mir-550a-2 hsa-miR-550 mir-550a-2/550 -hsa-mir-550a-2 hsa-miR-550a-3p mir-550a-2/3p -hsa-mir-550a-2 hsa-miR-550a mir-550a-2/550a -hsa-mir-550a-2 hsa-miR-550a* mir-550a-2/550a* -hsa-mir-550a-1 hsa-miR-550a-5p mir-550a-1/5p -hsa-mir-550a-1 hsa-miR-550 mir-550a-1/550 -hsa-mir-550a-1 hsa-miR-550a-3p mir-550a-1/3p -hsa-mir-550a-1 hsa-miR-550a mir-550a-1/550a -hsa-mir-550a-1 hsa-miR-550a* mir-550a-1/550a* -hsa-mir-550-2 hsa-miR-550a-5p mir-550-2/5p -hsa-mir-550-2 hsa-miR-550 mir-550-2/550 -hsa-mir-550-2 hsa-miR-550a mir-550-2/550a -hsa-mir-550-2 hsa-miR-550a-3p mir-550-2/3p -hsa-mir-550-1 hsa-miR-550a-5p mir-550-1/5p -hsa-mir-550-1 hsa-miR-550 mir-550-1/550 -hsa-mir-550-1 hsa-miR-550a mir-550-1/550a -hsa-mir-550-1 hsa-miR-550a-3p mir-550-1/3p -hsa-mir-549a hsa-miR-549a-5p mir-549a/5p -hsa-mir-549a hsa-miR-549 mir-549a/549 -hsa-mir-549a hsa-miR-549a-3p mir-549a/3p -hsa-mir-549 hsa-miR-549a-5p mir-549/5p -hsa-mir-549 hsa-miR-549a-3p mir-549/3p -hsa-mir-549 hsa-miR-549 mir-549/549 -hsa-mir-548x-2 hsa-miR-548x-3p mir-548x-2/3p -hsa-mir-548x-2 hsa-miR-548x mir-548x-2/548x -hsa-mir-548x hsa-miR-548x-5p mir-548x/5p -hsa-mir-548x hsa-miR-548x-3p mir-548x/3p -hsa-mir-548x hsa-miR-548x mir-548x/548x -hsa-mir-548t hsa-miR-548t-5p mir-548t/5p -hsa-mir-548t hsa-miR-548t-3p mir-548t/3p -hsa-mir-548t hsa-miR-548t mir-548t/548t -hsa-mir-548o-2 hsa-miR-548o-5p mir-548o-2/5p -hsa-mir-548o-2 hsa-miR-548o-3p mir-548o-2/3p -hsa-mir-548o-2 hsa-miR-548o mir-548o-2/548o -hsa-mir-548h-5 hsa-miR-548h-5p mir-548h-5/5p -hsa-mir-548h-5 hsa-miR-548h mir-548h-5/548h -hsa-mir-548f-5 hsa-miR-548f-3p mir-548f-5/3p -hsa-mir-548f-5 hsa-miR-548f mir-548f-5/548f -hsa-mir-548f-3 hsa-miR-548f-3p mir-548f-3/3p -hsa-mir-548f-3 hsa-miR-548f mir-548f-3/548f -hsa-mir-548f-1 hsa-miR-548f-5p mir-548f-1/5p -hsa-mir-548f-1 hsa-miR-548f-3p mir-548f-1/3p -hsa-mir-548f-1 hsa-miR-548f mir-548f-1/548f -hsa-mir-548d-2 hsa-miR-548d-5p mir-548d-2/5p -hsa-mir-548d-2 hsa-miR-548d-3p mir-548d-2/3p -hsa-mir-548d-2 hsa-miR-548d mir-548d-2/548d -hsa-mir-548d-1 hsa-miR-548d-5p mir-548d-1/5p -hsa-mir-548d-1 hsa-miR-548d-3p mir-548d-1/3p -hsa-mir-548d-1 hsa-miR-548d mir-548d-1/548d -hsa-mir-548c hsa-miR-548c-5p mir-548c/5p -hsa-mir-548c hsa-miR-548c-3p mir-548c/3p -hsa-mir-548c hsa-miR-548c mir-548c/548c -hsa-mir-548bb hsa-miR-548bb-5p mir-548bb/5p -hsa-mir-548bb hsa-miR-548bb-3p mir-548bb/3p -hsa-mir-548b hsa-miR-548b-5p mir-548b/5p -hsa-mir-548b hsa-miR-548b-3p mir-548b/3p -hsa-mir-548az hsa-miR-548az-5p mir-548az/5p -hsa-mir-548az hsa-miR-548az-3p mir-548az/3p -hsa-mir-548ay hsa-miR-548ay-5p mir-548ay/5p -hsa-mir-548ay hsa-miR-548ay-3p mir-548ay/3p -hsa-mir-548au hsa-miR-548au-5p mir-548au/5p -hsa-mir-548au hsa-miR-548au-3p mir-548au/3p -hsa-mir-548at hsa-miR-548at-5p mir-548at/5p -hsa-mir-548at hsa-miR-548at-3p mir-548at/3p -hsa-mir-548ar hsa-miR-548ar-5p mir-548ar/5p -hsa-mir-548ar hsa-miR-548ar-3p mir-548ar/3p -hsa-mir-548ap hsa-miR-548ap-5p mir-548ap/5p -hsa-mir-548ap hsa-miR-548ap-3p mir-548ap/3p -hsa-mir-548am hsa-miR-548am-5p mir-548am/5p -hsa-mir-548am hsa-miR-548am-3p mir-548am/3p -hsa-mir-548am hsa-miR-548am mir-548am/548am -hsa-mir-548aj-2 hsa-miR-548aj-5p mir-548aj-2/5p -hsa-mir-548aj-2 hsa-miR-548aj-3p mir-548aj-2/3p -hsa-mir-548aj-2 hsa-miR-548aj mir-548aj-2/548aj -hsa-mir-548aj-1 hsa-miR-548aj-3p mir-548aj-1/3p -hsa-mir-548aj-1 hsa-miR-548aj mir-548aj-1/548aj -hsa-mir-548ah hsa-miR-548ah-5p mir-548ah/5p -hsa-mir-548ah hsa-miR-548ah-3p mir-548ah/3p -hsa-mir-548ah hsa-miR-548ah mir-548ah/548ah -hsa-mir-548ae-2 hsa-miR-548ae-5p mir-548ae-2/5p -hsa-mir-548ae-2 hsa-miR-548ae-3p mir-548ae-2/3p -hsa-mir-548ae-2 hsa-miR-548ae mir-548ae-2/548ae -hsa-mir-548ae-1 hsa-miR-548ae-3p mir-548ae-1/3p -hsa-mir-548ae-1 hsa-miR-548ae mir-548ae-1/548ae -hsa-mir-548ad hsa-miR-548ad-5p mir-548ad/5p -hsa-mir-548ad hsa-miR-548ad-3p mir-548ad/3p -hsa-mir-548ad hsa-miR-548ad mir-548ad/548ad -hsa-mir-548a-3 hsa-miR-548a-5p mir-548a-3/5p -hsa-mir-548a-3 hsa-miR-548a-3p mir-548a-3/3p -hsa-mir-548a-3 hsa-miR-548a mir-548a-3/548a -hsa-mir-548a-2 hsa-miR-548a-3p mir-548a-2/3p -hsa-mir-548a-2 hsa-miR-548a mir-548a-2/548a -hsa-mir-548a-2 hsa-miR-548a-3p mir-548a-2/3p -hsa-mir-548a-1 hsa-miR-548a-3p mir-548a-1/3p -hsa-mir-548a-1 hsa-miR-548a mir-548a-1/548a -hsa-mir-548a-1 hsa-miR-548a-3p mir-548a-1/3p -hsa-mir-545 hsa-miR-545-5p mir-545/5p -hsa-mir-545 hsa-miR-545-3p mir-545/3p -hsa-mir-545 hsa-miR-545* mir-545/545* -hsa-mir-545 hsa-miR-545 mir-545/545 -hsa-mir-544 hsa-miR-544a mir-544/544a -hsa-mir-544 hsa-miR-544 mir-544/544 -hsa-mir-542 hsa-miR-542-5p mir-542/5p -hsa-mir-542 hsa-miR-542-3p mir-542/3p -hsa-mir-541 hsa-miR-541-5p mir-541/5p -hsa-mir-541 hsa-miR-541-3p mir-541/3p -hsa-mir-541 hsa-miR-541* mir-541/541* -hsa-mir-541 hsa-miR-541 mir-541/541 -hsa-mir-539 hsa-miR-539-5p mir-539/5p -hsa-mir-539 hsa-miR-539-3p mir-539/3p -hsa-mir-539 hsa-miR-539 mir-539/539 -hsa-mir-532 hsa-miR-532-5p mir-532/5p -hsa-mir-532 hsa-miR-532 mir-532/532 -hsa-mir-532 hsa-miR-532-3p mir-532/3p -hsa-mir-526b hsa-miR-526b-5p mir-526b/5p -hsa-mir-526b hsa-miR-526b-3p mir-526b/3p -hsa-mir-526b hsa-miR-526b mir-526b/526b -hsa-mir-526b hsa-miR-526b* mir-526b/526b* -hsa-mir-526a-2 hsa-miR-526a-5p mir-526a-2/5p -hsa-mir-526a-2 hsa-miR-526a mir-526a-2/526a -hsa-mir-526a-1 hsa-miR-526a-5p mir-526a-1/5p -hsa-mir-526a-1 hsa-miR-526a-3p mir-526a-1/3p -hsa-mir-526a-1 hsa-miR-526a mir-526a-1/526a -hsa-mir-525 hsa-miR-525-5p mir-525/5p -hsa-mir-525 hsa-miR-525 mir-525/525 -hsa-mir-525 hsa-miR-525-3p mir-525/3p -hsa-mir-30 hsa-miR-30a mir-30/30a -hsa-mir-524 hsa-miR-524 mir-524/524 -hsa-mir-524 hsa-miR-524-5p mir-524/5p -hsa-mir-524 hsa-miR-524-3p mir-524/3p -hsa-mir-523 hsa-miR-523-5p mir-523/5p -hsa-mir-523 hsa-miR-523-3p mir-523/3p -hsa-mir-523 hsa-miR-523* mir-523/523* -hsa-mir-523 hsa-miR-523 mir-523/523 -hsa-mir-522 hsa-miR-522-5p mir-522/5p -hsa-mir-522 hsa-miR-522-3p mir-522/3p -hsa-mir-522 hsa-miR-522* mir-522/522* -hsa-mir-522 hsa-miR-522 mir-522/522 -hsa-mir-520g hsa-miR-520g-5p mir-520g/5p -hsa-mir-520g hsa-miR-520g-3p mir-520g/3p -hsa-mir-520g hsa-miR-520g mir-520g/520g -hsa-mir-520f hsa-miR-520f-5p mir-520f/5p -hsa-mir-520f hsa-miR-520f-3p mir-520f/3p -hsa-mir-520f hsa-miR-520f mir-520f/520f -hsa-mir-520e hsa-miR-520e-5p mir-520e/5p -hsa-mir-520e hsa-miR-520e-3p mir-520e/3p -hsa-mir-520e hsa-miR-520e mir-520e/520e -hsa-mir-520d hsa-miR-520d-5p mir-520d/5p -hsa-mir-520d hsa-miR-520d-3p mir-520d/3p -hsa-mir-520d hsa-miR-520d mir-520d/520d -hsa-mir-3648-1 hsa-miR-3648 mir-3648-1/3648 -hsa-mir-520d hsa-miR-520d-5p mir-520d/5p -hsa-mir-520d hsa-miR-520d-3p mir-520d/3p -hsa-mir-520c hsa-miR-520c-5p mir-520c/5p -hsa-mir-520c hsa-miR-520c-3p mir-520c/3p -hsa-mir-520c hsa-miR-520c mir-520c/520c -hsa-mir-520c hsa-miR-520c-5p mir-520c/5p -hsa-mir-520c hsa-miR-520c-3p mir-520c/3p -hsa-mir-520b hsa-miR-520b-5p mir-520b/5p -hsa-mir-520b hsa-miR-520b-3p mir-520b/3p -hsa-mir-520b hsa-miR-520b mir-520b/520b -hsa-mir-520a hsa-miR-520a-5p mir-520a/5p -hsa-mir-520a hsa-miR-520a-3p mir-520a/3p -hsa-mir-520a hsa-miR-520a mir-520a/520a -hsa-mir-519e hsa-miR-519e-5p mir-519e/5p -hsa-mir-519e hsa-miR-519e-3p mir-519e/3p -hsa-mir-519e hsa-miR-519e* mir-519e/519e* -hsa-mir-519e hsa-miR-519e mir-519e/519e -hsa-mir-519d hsa-miR-519d-5p mir-519d/5p -hsa-mir-519d hsa-miR-519d-3p mir-519d/3p -hsa-mir-519d hsa-miR-519d mir-519d/519d -hsa-mir-519c hsa-miR-519c-5p mir-519c/5p -hsa-mir-519c hsa-miR-526c mir-519c/526c -hsa-mir-519c hsa-miR-519c-3p mir-519c/3p -hsa-mir-519c hsa-miR-519c mir-519c/519c -hsa-mir-519c hsa-miR-519c-5p mir-519c/5p -hsa-mir-519c hsa-miR-519c-3p mir-519c/3p -hsa-mir-519b hsa-miR-519b-5p mir-519b/5p -hsa-mir-6863 hsa-miR-6863 mir-6863/6863 -hsa-mir-519b hsa-miR-519b-3p mir-519b/3p -hsa-mir-519b hsa-miR-519b mir-519b/519b -hsa-mir-519a-2 hsa-miR-519a-2-5p mir-519a-2/5p -hsa-mir-519a-2 hsa-miR-519a-3p mir-519a-2/3p -hsa-mir-519a-2 hsa-miR-519a mir-519a-2/519a -hsa-mir-519a-1 hsa-miR-519a-5p mir-519a-1/5p -hsa-mir-519a-1 hsa-miR-519a-3p mir-519a-1/3p -hsa-mir-519a-1 hsa-miR-519a* mir-519a-1/519a* -hsa-mir-519a-1 hsa-miR-519a mir-519a-1/519a -hsa-mir-5197 hsa-miR-5197-5p mir-5197/5p -hsa-mir-5197 hsa-miR-5197-3p mir-5197/3p -hsa-mir-518f hsa-miR-518f-5p mir-518f/5p -hsa-mir-518f hsa-miR-518f-3p mir-518f/3p -hsa-mir-518f hsa-miR-518f* mir-518f/518f* -hsa-mir-518f hsa-miR-518f mir-518f/518f -hsa-mir-518e hsa-miR-518e-5p mir-518e/5p -hsa-mir-518e hsa-miR-518e-3p mir-518e/3p -hsa-mir-518e hsa-miR-518e* mir-518e/518e* -hsa-mir-518e hsa-miR-518e mir-518e/518e -hsa-mir-518d hsa-miR-518d-5p mir-518d/5p -hsa-mir-518d hsa-miR-518d-3p mir-518d/3p -hsa-mir-518d hsa-miR-518d mir-518d/518d -hsa-mir-518c hsa-miR-518c-5p mir-518c/5p -hsa-mir-518c hsa-miR-518c-3p mir-518c/3p -hsa-mir-7705 hsa-miR-7705 mir-7705/7705 -hsa-mir-518c hsa-miR-518c* mir-518c/518c* -hsa-mir-518c hsa-miR-518c mir-518c/518c -hsa-mir-518a-2 hsa-miR-518a-5p mir-518a-2/5p -hsa-mir-518a-2 hsa-miR-518a-3p mir-518a-2/3p -hsa-mir-7848 hsa-miR-7848-3p mir-7848/3p -hsa-mir-518a-2 hsa-miR-518a mir-518a-2/518a -hsa-mir-518a-1 hsa-miR-518a-5p mir-518a-1/5p -hsa-mir-518a-1 hsa-miR-518a-3p mir-518a-1/3p -hsa-mir-517c hsa-miR-517-5p mir-517c/5p -hsa-mir-517c hsa-miR-517c-3p mir-517c/3p -hsa-mir-517c hsa-miR-517c mir-517c/517c -hsa-mir-517c hsa-miR-517* mir-517c/517* -hsa-mir-517b hsa-miR-517-5p mir-517b/5p -hsa-mir-517b hsa-miR-517b-3p mir-517b/3p -hsa-mir-517b hsa-miR-517 mir-517b/517 -hsa-mir-517b hsa-miR-517b mir-517b/517b -hsa-mir-517b hsa-miR-517* mir-517b/517* -hsa-mir-517a hsa-miR-517-5p mir-517a/5p -hsa-mir-3670-1 hsa-miR-3670 mir-3670-1/3670 -hsa-mir-517a hsa-miR-517a-3p mir-517a/3p -hsa-mir-517a hsa-miR-517* mir-517a/517* -hsa-mir-517a hsa-miR-517a mir-517a/517a -hsa-mir-516b-2 hsa-miR-516b-5p mir-516b-2/5p -hsa-mir-516b-2 hsa-miR-516b-3p mir-516b-2/3p -hsa-mir-516b-2 hsa-miR-516b mir-516b-2/516b -hsa-mir-516b-2 hsa-miR-516b* mir-516b-2/516b* -hsa-mir-516b-1 hsa-miR-516b-5p mir-516b-1/5p -hsa-mir-516b-1 hsa-miR-516b-3p mir-516b-1/3p -hsa-mir-516b-1 hsa-miR-516b mir-516b-1/516b -hsa-mir-516b-1 hsa-miR-516b* mir-516b-1/516b* -hsa-mir-516a-2 hsa-miR-516a-5p mir-516a-2/5p -hsa-mir-516a-2 hsa-miR-516a-3p mir-516a-2/3p -hsa-mir-516a-1 hsa-miR-516a-5p mir-516a-1/5p -hsa-mir-516a-1 hsa-miR-516a-3p mir-516a-1/3p -hsa-mir-516-2 hsa-miR-516a-5p mir-516-2/5p -hsa-mir-516-2 hsa-miR-516a-3p mir-516-2/3p -hsa-mir-516-1 hsa-miR-516a-5p mir-516-1/5p -hsa-mir-516-1 hsa-miR-516a-3p mir-516-1/3p -hsa-mir-515-2 hsa-miR-515-5p mir-515-2/5p -hsa-mir-515-2 hsa-miR-515-3p mir-515-2/3p -hsa-mir-515-1 hsa-miR-515-5p mir-515-1/5p -hsa-mir-515-1 hsa-miR-515-3p mir-515-1/3p -hsa-mir-514b hsa-miR-514b-5p mir-514b/5p -hsa-mir-514b hsa-miR-514b-3p mir-514b/3p -hsa-mir-514a-3 hsa-miR-514a-5p mir-514a-3/5p -hsa-mir-514a-3 hsa-miR-514a-3p mir-514a-3/3p -hsa-mir-514a-3 hsa-miR-514 mir-514a-3/514 -hsa-mir-514a-2 hsa-miR-514a-3p mir-514a-2/3p -hsa-mir-514a-2 hsa-miR-514a-5p mir-514a-2/5p -hsa-mir-514a-2 hsa-miR-514 mir-514a-2/514 -hsa-mir-514a-1 hsa-miR-514a-5p mir-514a-1/5p -hsa-mir-514a-1 hsa-miR-514a-3p mir-514a-1/3p -hsa-mir-514a-1 hsa-miR-514 mir-514a-1/514 -hsa-mir-514-3 hsa-miR-514a-3p mir-514-3/3p -hsa-mir-514-3 hsa-miR-514 mir-514-3/514 -hsa-mir-514-2 hsa-miR-514a-5p mir-514-2/5p -hsa-mir-514-2 hsa-miR-514a-3p mir-514-2/3p -hsa-mir-514-2 hsa-miR-514 mir-514-2/514 -hsa-mir-514-1 hsa-miR-514a-5p mir-514-1/5p -hsa-mir-514-1 hsa-miR-514a-3p mir-514-1/3p -hsa-mir-514-1 hsa-miR-514 mir-514-1/514 -hsa-mir-513a-2 hsa-miR-513a-3p mir-513a-2/3p -hsa-mir-513a-2 hsa-miR-513 mir-513a-2/513 -hsa-mir-513a-2 hsa-miR-513a-5p mir-513a-2/5p -hsa-mir-513a-2 hsa-miR-513-5p mir-513a-2/5p -hsa-mir-513a-2 hsa-miR-513-3p mir-513a-2/3p -hsa-mir-513a-1 hsa-miR-513a-5p mir-513a-1/5p -hsa-mir-513a-1 hsa-miR-513 mir-513a-1/513 -hsa-mir-513a-1 hsa-miR-513-5p mir-513a-1/5p -hsa-mir-513a-1 hsa-miR-513a-3p mir-513a-1/3p -hsa-mir-513a-1 hsa-miR-513-3p mir-513a-1/3p -hsa-mir-513-2 hsa-miR-513a-3p mir-513-2/3p -hsa-mir-513-2 hsa-miR-513 mir-513-2/513 -hsa-mir-513-2 hsa-miR-513a-5p mir-513-2/5p -hsa-mir-513-2 hsa-miR-513-5p mir-513-2/5p -hsa-mir-513-2 hsa-miR-513-3p mir-513-2/3p -hsa-mir-513-1 hsa-miR-513a-5p mir-513-1/5p -hsa-mir-513-1 hsa-miR-513 mir-513-1/513 -hsa-mir-513-1 hsa-miR-513-5p mir-513-1/5p -hsa-mir-513-1 hsa-miR-513a-3p mir-513-1/3p -hsa-mir-513-1 hsa-miR-513-3p mir-513-1/3p -hsa-mir-512-2 hsa-miR-512-5p mir-512-2/5p -hsa-mir-512-2 hsa-miR-512-3p mir-512-2/3p -hsa-mir-512-1 hsa-miR-512-5p mir-512-1/5p -hsa-mir-512-1 hsa-miR-512-3p mir-512-1/3p -hsa-mir-511 hsa-miR-511-5p mir-511/5p -hsa-mir-511 hsa-miR-511-3p mir-511/3p -hsa-mir-510 hsa-miR-510-5p mir-510/5p -hsa-mir-510 hsa-miR-510-3p mir-510/3p -hsa-mir-510 hsa-miR-510 mir-510/510 -hsa-mir-509-3 hsa-miR-509-3-5p mir-509-3/5p -hsa-mir-509-3 hsa-miR-509-3p mir-509-3/3p -hsa-mir-509-3 hsa-miR-509 mir-509-3/509 -hsa-mir-509-2 hsa-miR-509-5p mir-509-2/5p -hsa-mir-509-2 hsa-miR-509-3p mir-509-2/3p -hsa-mir-509-2 hsa-miR-509 mir-509-2/509 -hsa-mir-509-1 hsa-miR-509-5p mir-509-1/5p -hsa-mir-509-1 hsa-miR-509-3p mir-509-1/3p -hsa-mir-508 hsa-miR-508-5p mir-508/5p -hsa-mir-508 hsa-miR-508-3p mir-508/3p -hsa-mir-508 hsa-miR-508 mir-508/508 -hsa-mir-506 hsa-miR-506-5p mir-506/5p -hsa-mir-506 hsa-miR-506-3p mir-506/3p -hsa-mir-506 hsa-miR-506 mir-506/506 -hsa-mir-505 hsa-miR-505-5p mir-505/5p -hsa-mir-505 hsa-miR-505-3p mir-505/3p -hsa-mir-505 hsa-miR-505* mir-505/505* -hsa-mir-505 hsa-miR-505 mir-505/505 -hsa-mir-504 hsa-miR-504-5p mir-504/5p -hsa-mir-504 hsa-miR-504-3p mir-504/3p -hsa-mir-504 hsa-miR-504 mir-504/504 -hsa-mir-503 hsa-miR-503-5p mir-503/5p -hsa-mir-503 hsa-miR-503-3p mir-503/3p -hsa-mir-503 hsa-miR-503 mir-503/503 -hsa-mir-502 hsa-miR-502-5p mir-502/5p -hsa-mir-502 hsa-miR-502 mir-502/502 -hsa-mir-502 hsa-miR-502-3p mir-502/3p -hsa-mir-5011 hsa-miR-5011-5p mir-5011/5p -hsa-mir-5011 hsa-miR-5011-3p mir-5011/3p -hsa-mir-5010 hsa-miR-5010-5p mir-5010/5p -hsa-mir-5010 hsa-miR-5010-3p mir-5010/3p -hsa-mir-501 hsa-miR-501-5p mir-501/5p -hsa-mir-501 hsa-miR-501 mir-501/501 -hsa-mir-501 hsa-miR-501-3p mir-501/3p -hsa-mir-500b hsa-miR-500b-5p mir-500b/5p -hsa-mir-500b hsa-miR-500b-3p mir-500b/3p -hsa-mir-500b hsa-miR-500b mir-500b/500b -hsa-mir-500a hsa-miR-500a-5p mir-500a/5p -hsa-mir-500a hsa-miR-500 mir-500a/500 -hsa-mir-500a hsa-miR-500a-3p mir-500a/3p -hsa-mir-500a hsa-miR-500a mir-500a/500a -hsa-mir-500a hsa-miR-500a* mir-500a/500a* -hsa-mir-5009 hsa-miR-5009-5p mir-5009/5p -hsa-mir-5009 hsa-miR-5009-3p mir-5009/3p -hsa-mir-5007 hsa-miR-5007-5p mir-5007/5p -hsa-mir-5007 hsa-miR-5007-3p mir-5007/3p -hsa-mir-5006 hsa-miR-5006-5p mir-5006/5p -hsa-mir-5006 hsa-miR-5006-3p mir-5006/3p -hsa-mir-5004 hsa-miR-5004-5p mir-5004/5p -hsa-mir-5004 hsa-miR-5004-3p mir-5004/3p -hsa-mir-5003 hsa-miR-5003-5p mir-5003/5p -hsa-mir-5003 hsa-miR-5003-3p mir-5003/3p -hsa-mir-5002 hsa-miR-5002-5p mir-5002/5p -hsa-mir-5002 hsa-miR-5002-3p mir-5002/3p -hsa-mir-5001 hsa-miR-5001-5p mir-5001/5p -hsa-mir-5001 hsa-miR-5001-3p mir-5001/3p -hsa-mir-5000 hsa-miR-5000-5p mir-5000/5p -hsa-mir-5000 hsa-miR-5000-3p mir-5000/3p -hsa-mir-500 hsa-miR-500a-5p mir-500/5p -hsa-mir-500 hsa-miR-500 mir-500/500 -hsa-mir-500 hsa-miR-500a mir-500/500a -hsa-mir-500 hsa-miR-500a-3p mir-500/3p -hsa-mir-499b hsa-miR-499b-5p mir-499b/5p -hsa-mir-499b hsa-miR-499b-3p mir-499b/3p -hsa-mir-499b hsa-miR-499a-3p mir-499b/3p -hsa-mir-499a hsa-miR-499 mir-499a/499 -hsa-mir-499a hsa-miR-499-5p mir-499a/5p -hsa-mir-499a hsa-miR-499-3p mir-499a/3p -hsa-mir-499a hsa-miR-499b-5p mir-499a/5p -hsa-mir-7851 hsa-miR-7851-3p mir-7851/3p -hsa-mir-8053 hsa-miR-8053 mir-8053/8053 -hsa-mir-8084 hsa-miR-8084 mir-8084/8084 -hsa-mir-3670-3 hsa-miR-3670 mir-3670-3/3670 -hsa-mir-499a hsa-miR-499b-3p mir-499a/3p -hsa-mir-499a hsa-miR-499a-5p mir-499a/5p -hsa-mir-499a hsa-miR-499a-3p mir-499a/3p -hsa-mir-4999 hsa-miR-4999-5p mir-4999/5p -hsa-mir-4999 hsa-miR-4999-3p mir-4999/3p -hsa-mir-499 hsa-miR-499a-3p mir-499/3p -hsa-mir-499 hsa-miR-499a-5p mir-499/5p -hsa-mir-6724-2 hsa-miR-6724-5p mir-6724-2/5p -hsa-mir-3179-4 hsa-miR-3179 mir-3179-4/3179 -hsa-mir-9500 hsa-miR-9500 mir-9500/9500 -hsa-mir-3648-2 hsa-miR-3648 mir-3648-2/3648 -hsa-mir-941-5 hsa-miR-941 mir-941-5/941 -hsa-mir-499 hsa-miR-499 mir-499/499 -hsa-mir-499 hsa-miR-499-5p mir-499/5p -hsa-mir-6724-4 hsa-miR-6724-5p mir-6724-4/5p -hsa-mir-1244-4 hsa-miR-1244 mir-1244-4/1244 -hsa-mir-499 hsa-miR-499-3p mir-499/3p -hsa-mir-8069-2 hsa-miR-8069 mir-8069-2/8069 -hsa-mir-8485 hsa-miR-8485 mir-8485/8485 -hsa-mir-498 hsa-miR-498-5p mir-498/5p -hsa-mir-498 hsa-miR-498-3p mir-498/3p -hsa-mir-498 hsa-miR-498 mir-498/498 -hsa-mir-6724-3 hsa-miR-6724-5p mir-6724-3/5p -hsa-mir-497 hsa-miR-497-5p mir-497/5p -hsa-mir-497 hsa-miR-497-3p mir-497/3p -hsa-mir-3670-4 hsa-miR-3670 mir-3670-4/3670 -hsa-mir-5701-3 hsa-miR-5701 mir-5701-3/5701 -hsa-mir-12114 hsa-miR-12114 mir-12114/12114 -hsa-mir-9718 hsa-miR-9718 mir-9718/9718 -hsa-mir-9898 hsa-miR-9898 mir-9898/9898 -hsa-mir-497 hsa-miR-497 mir-497/497 -hsa-mir-497 hsa-miR-497* mir-497/497* -hsa-mir-495 hsa-miR-495-5p mir-495/5p -hsa-mir-9900 hsa-miR-9900 mir-9900/9900 -hsa-mir-9902-1 hsa-miR-9902 mir-9902-1/9902 -hsa-mir-9986 hsa-miR-9986 mir-9986/9986 -hsa-mir-495 hsa-miR-495-3p mir-495/3p -hsa-mir-495 hsa-miR-495 mir-495/495 -hsa-mir-494 hsa-miR-494-5p mir-494/5p -hsa-mir-494 hsa-miR-494-3p mir-494/3p -hsa-mir-494 hsa-miR-494 mir-494/494 -hsa-mir-493 hsa-miR-493-5p mir-493/5p -hsa-mir-493 hsa-miR-493-3p mir-493/3p -hsa-mir-493 hsa-miR-493* mir-493/493* -hsa-mir-493 hsa-miR-493 mir-493/493 -hsa-mir-491 hsa-miR-491-5p mir-491/5p -hsa-mir-10522 hsa-miR-10522-5p mir-10522/5p -hsa-mir-10524 hsa-miR-10524-5p mir-10524/5p -hsa-mir-10526 hsa-miR-10526-3p mir-10526/3p -hsa-mir-491 hsa-miR-491 mir-491/491 -hsa-mir-491 hsa-miR-491-3p mir-491/3p -hsa-mir-490 hsa-miR-490-5p mir-490/5p -hsa-mir-490 hsa-miR-490-3p mir-490/3p -hsa-mir-490 hsa-miR-490 mir-490/490 -hsa-mir-9899 hsa-miR-9899 mir-9899/9899 -hsa-mir-9901 hsa-miR-9901 mir-9901/9901 -hsa-mir-9903 hsa-miR-9903 mir-9903/9903 -hsa-mir-9985 hsa-miR-9985 mir-9985/9985 -hsa-mir-6133 hsa-miR-6133 mir-6133/6133 -hsa-mir-489 hsa-miR-489-5p mir-489/5p -hsa-mir-489 hsa-miR-489-3p mir-489/3p -hsa-mir-489 hsa-miR-489 mir-489/489 -hsa-mir-488 hsa-miR-488-5p mir-488/5p -hsa-mir-488 hsa-miR-488-3p mir-488/3p -hsa-mir-488 hsa-miR-488* mir-488/488* -hsa-mir-488 hsa-miR-488 mir-488/488 -hsa-mir-487b hsa-miR-487b-5p mir-487b/5p -hsa-mir-487b hsa-miR-487b-3p mir-487b/3p -hsa-mir-10525 hsa-miR-10525-3p mir-10525/3p -hsa-mir-10527 hsa-miR-10527-5p mir-10527/5p -hsa-mir-11399 hsa-miR-11399 mir-11399/11399 -hsa-mir-12113 hsa-miR-12113 mir-12113/12113 -hsa-mir-487b hsa-miR-487b mir-487b/487b -hsa-mir-487a hsa-miR-487a-3p mir-487a/3p -hsa-mir-11401 hsa-miR-11401 mir-11401/11401 -hsa-mir-10523 hsa-miR-10523-5p mir-10523/5p -hsa-mir-9902-2 hsa-miR-9902 mir-9902-2/9902 -hsa-mir-487a hsa-miR-487a-5p mir-487a/5p -hsa-mir-487a hsa-miR-487 mir-487a/487 -hsa-mir-12115 hsa-miR-12115 mir-12115/12115 -hsa-mir-12116 hsa-miR-12116 mir-12116/12116 -hsa-mir-12117 hsa-miR-12117 mir-12117/12117 -hsa-mir-12119 hsa-miR-12119 mir-12119/12119 -hsa-mir-12121 hsa-miR-12121 mir-12121/12121 -hsa-mir-12122 hsa-miR-12122 mir-12122/12122 -hsa-mir-12123 hsa-miR-12123 mir-12123/12123 -hsa-mir-12124 hsa-miR-12124 mir-12124/12124 -hsa-mir-487a hsa-miR-487a mir-487a/487a -hsa-mir-487 hsa-miR-487 mir-487/487 -hsa-mir-487 hsa-miR-487a-3p mir-487/3p -hsa-mir-487 hsa-miR-487a-5p mir-487/5p -hsa-mir-486-2 hsa-miR-486-5p mir-486-2/5p -hsa-mir-486-2 hsa-miR-486 mir-486-2/486 -hsa-mir-486-2 hsa-miR-486-3p mir-486-2/3p -hsa-mir-12125 hsa-miR-12125 mir-12125/12125 -hsa-mir-486-1 hsa-miR-486-5p mir-486-1/5p -hsa-mir-486-1 hsa-miR-486 mir-486-1/486 -hsa-mir-486-1 hsa-miR-486-3p mir-486-1/3p -hsa-mir-486 hsa-miR-486-5p mir-486/5p -hsa-mir-486 hsa-miR-486 mir-486/486 -hsa-mir-12126 hsa-miR-12126 mir-12126/12126 -hsa-mir-486 hsa-miR-486-3p mir-486/3p -hsa-mir-485 hsa-miR-485-5p mir-485/5p -hsa-mir-12129 hsa-miR-12129 mir-12129/12129 -hsa-mir-12131 hsa-miR-12131 mir-12131/12131 -hsa-mir-485 hsa-miR-485-3p mir-485/3p -hsa-mir-483 hsa-miR-483-5p mir-483/5p -hsa-mir-483 hsa-miR-483-3p mir-483/3p -hsa-mir-483 hsa-miR-483 mir-483/483 -hsa-mir-12135 hsa-miR-12135 mir-12135/12135 -hsa-mir-4804 hsa-miR-4804-5p mir-4804/5p -hsa-mir-12128 hsa-miR-12128 mir-12128/12128 -hsa-mir-4804 hsa-miR-4804-3p mir-4804/3p -hsa-mir-12130 hsa-miR-12130 mir-12130/12130 -hsa-mir-4802 hsa-miR-4802-5p mir-4802/5p -hsa-mir-12132 hsa-miR-12132 mir-12132/12132 -hsa-mir-4802 hsa-miR-4802-3p mir-4802/3p -hsa-mir-12133 hsa-miR-12133 mir-12133/12133 -hsa-mir-4800 hsa-miR-4800-5p mir-4800/5p -hsa-mir-4800 hsa-miR-4800-3p mir-4800/3p -hsa-mir-12136 hsa-miR-12136 mir-12136/12136 -hsa-mir-4799 hsa-miR-4799-5p mir-4799/5p -hsa-mir-4799 hsa-miR-4799-3p mir-4799/3p -hsa-mir-4798 hsa-miR-4798-5p mir-4798/5p -hsa-mir-4798 hsa-miR-4798-3p mir-4798/3p -hsa-mir-4797 hsa-miR-4797-5p mir-4797/5p -hsa-mir-4797 hsa-miR-4797-3p mir-4797/3p -hsa-mir-12120 hsa-miR-12120 mir-12120/12120 -hsa-mir-12118 hsa-miR-12118 mir-12118/12118 -hsa-mir-4796 hsa-miR-4796-5p mir-4796/5p -hsa-mir-4796 hsa-miR-4796-3p mir-4796/3p -hsa-mir-4795 hsa-miR-4795-5p mir-4795/5p -hsa-mir-4795 hsa-miR-4795-3p mir-4795/3p -hsa-mir-12127 hsa-miR-12127 mir-12127/12127 -hsa-mir-4793 hsa-miR-4793-5p mir-4793/5p -hsa-mir-4793 hsa-miR-4793-3p mir-4793/3p -hsa-mir-4790 hsa-miR-4790-5p mir-4790/5p -hsa-mir-4790 hsa-miR-4790-3p mir-4790/3p -hsa-mir-4789 hsa-miR-4789-5p mir-4789/5p -hsa-mir-4789 hsa-miR-4789-3p mir-4789/3p -hsa-mir-4787 hsa-miR-4787-5p mir-4787/5p -hsa-mir-4787 hsa-miR-4787-3p mir-4787/3p -hsa-mir-4786 hsa-miR-4786-5p mir-4786/5p -hsa-mir-4786 hsa-miR-4786-3p mir-4786/3p -hsa-mir-4783 hsa-miR-4783-5p mir-4783/5p -hsa-mir-4783 hsa-miR-4783-3p mir-4783/3p -hsa-mir-4782 hsa-miR-4782-5p mir-4782/5p -hsa-mir-4782 hsa-miR-4782-3p mir-4782/3p -hsa-mir-4781 hsa-miR-4781-5p mir-4781/5p -hsa-mir-4781 hsa-miR-4781-3p mir-4781/3p -hsa-mir-4778 hsa-miR-4778-5p mir-4778/5p -hsa-mir-4778 hsa-miR-4778-3p mir-4778/3p -hsa-mir-4777 hsa-miR-4777-5p mir-4777/5p -hsa-mir-4777 hsa-miR-4777-3p mir-4777/3p -hsa-mir-4776-2 hsa-miR-4776-5p mir-4776-2/5p -hsa-mir-4776-2 hsa-miR-4776-3p mir-4776-2/3p -hsa-mir-6745 hsa-miR-6745 mir-6745/6745 -hsa-mir-4776-1 hsa-miR-4776-5p mir-4776-1/5p -hsa-mir-4776-1 hsa-miR-4776-3p mir-4776-1/3p -hsa-mir-4774 hsa-miR-4774-5p mir-4774/5p -hsa-mir-4774 hsa-miR-4774-3p mir-4774/3p -hsa-mir-4772 hsa-miR-4772-5p mir-4772/5p -hsa-mir-4772 hsa-miR-4772-3p mir-4772/3p -hsa-mir-4769 hsa-miR-4769-5p mir-4769/5p -hsa-mir-4769 hsa-miR-4769-3p mir-4769/3p -hsa-mir-4768 hsa-miR-4768-5p mir-4768/5p -hsa-mir-4768 hsa-miR-4768-3p mir-4768/3p -hsa-mir-4766 hsa-miR-4766-5p mir-4766/5p -hsa-mir-4766 hsa-miR-4766-3p mir-4766/3p -hsa-mir-4764 hsa-miR-4764-5p mir-4764/5p -hsa-mir-4764 hsa-miR-4764-3p mir-4764/3p -hsa-mir-4763 hsa-miR-4763-5p mir-4763/5p -hsa-mir-4763 hsa-miR-4763-3p mir-4763/3p -hsa-mir-4762 hsa-miR-4762-5p mir-4762/5p -hsa-mir-4762 hsa-miR-4762-3p mir-4762/3p -hsa-mir-4761 hsa-miR-4761-5p mir-4761/5p -hsa-mir-4761 hsa-miR-4761-3p mir-4761/3p -hsa-mir-4760 hsa-miR-4760-5p mir-4760/5p -hsa-mir-4760 hsa-miR-4760-3p mir-4760/3p -hsa-mir-4758 hsa-miR-4758-5p mir-4758/5p -hsa-mir-4758 hsa-miR-4758-3p mir-4758/3p -hsa-mir-4757 hsa-miR-4757-5p mir-4757/5p -hsa-mir-4757 hsa-miR-4757-3p mir-4757/3p -hsa-mir-4756 hsa-miR-4756-5p mir-4756/5p -hsa-mir-4756 hsa-miR-4756-3p mir-4756/3p -hsa-mir-4755 hsa-miR-4755-5p mir-4755/5p -hsa-mir-4755 hsa-miR-4755-3p mir-4755/3p -hsa-mir-4753 hsa-miR-4753-5p mir-4753/5p -hsa-mir-4753 hsa-miR-4753-3p mir-4753/3p -hsa-mir-4750 hsa-miR-4750-5p mir-4750/5p -hsa-mir-4750 hsa-miR-4750-3p mir-4750/3p -hsa-mir-4750 hsa-miR-4750 mir-4750/4750 -hsa-mir-4749 hsa-miR-4749-5p mir-4749/5p -hsa-mir-4749 hsa-miR-4749-3p mir-4749/3p -hsa-mir-4747 hsa-miR-4747-5p mir-4747/5p -hsa-mir-4747 hsa-miR-4747-3p mir-4747/3p -hsa-mir-4746 hsa-miR-4746-5p mir-4746/5p -hsa-mir-4746 hsa-miR-4746-3p mir-4746/3p -hsa-mir-4745 hsa-miR-4745-5p mir-4745/5p -hsa-mir-4745 hsa-miR-4745-3p mir-4745/3p -hsa-mir-4743 hsa-miR-4743-5p mir-4743/5p -hsa-mir-4743 hsa-miR-4743-3p mir-4743/3p -hsa-mir-4743 hsa-miR-4743 mir-4743/4743 -hsa-mir-4742 hsa-miR-4742-5p mir-4742/5p -hsa-mir-4742 hsa-miR-4742-3p mir-4742/3p -hsa-mir-4740 hsa-miR-4740-5p mir-4740/5p -hsa-mir-4740 hsa-miR-4740-3p mir-4740/3p -hsa-mir-4738 hsa-miR-4738-5p mir-4738/5p -hsa-mir-4738 hsa-miR-4738-3p mir-4738/3p -hsa-mir-4735 hsa-miR-4735-5p mir-4735/5p -hsa-mir-4735 hsa-miR-4735-3p mir-4735/3p -hsa-mir-4733 hsa-miR-4733-5p mir-4733/5p -hsa-mir-4733 hsa-miR-4733-3p mir-4733/3p -hsa-mir-4732 hsa-miR-4732-5p mir-4732/5p -hsa-mir-4732 hsa-miR-4732-3p mir-4732/3p -hsa-mir-4731 hsa-miR-4731-5p mir-4731/5p -hsa-mir-4731 hsa-miR-4731-3p mir-4731/3p -hsa-mir-4728 hsa-miR-4728-5p mir-4728/5p -hsa-mir-4728 hsa-miR-4728-3p mir-4728/3p -hsa-mir-4727 hsa-miR-4727-5p mir-4727/5p -hsa-mir-4727 hsa-miR-4727-3p mir-4727/3p -hsa-mir-4726 hsa-miR-4726-5p mir-4726/5p -hsa-mir-4726 hsa-miR-4726-3p mir-4726/3p -hsa-mir-4725 hsa-miR-4725-5p mir-4725/5p -hsa-mir-4725 hsa-miR-4725-3p mir-4725/3p -hsa-mir-4724 hsa-miR-4724-5p mir-4724/5p -hsa-mir-4724 hsa-miR-4724-3p mir-4724/3p -hsa-mir-4723 hsa-miR-4723-5p mir-4723/5p -hsa-mir-4723 hsa-miR-4723-3p mir-4723/3p -hsa-mir-4722 hsa-miR-4722-5p mir-4722/5p -hsa-mir-4722 hsa-miR-4722-3p mir-4722/3p -hsa-mir-107-10 hsa-miR-107 mir-107-10/107 -hsa-mir-4720 hsa-miR-4720-5p mir-4720/5p -hsa-mir-4720 hsa-miR-4720-3p mir-4720/3p -hsa-mir-4717 hsa-miR-4717-5p mir-4717/5p -hsa-mir-4717 hsa-miR-4717-3p mir-4717/3p -hsa-mir-4716 hsa-miR-4716-5p mir-4716/5p -hsa-mir-4716 hsa-miR-4716-3p mir-4716/3p -hsa-mir-4715 hsa-miR-4715-5p mir-4715/5p -hsa-mir-4715 hsa-miR-4715-3p mir-4715/3p -hsa-mir-4714 hsa-miR-4714-5p mir-4714/5p -hsa-mir-4714 hsa-miR-4714-3p mir-4714/3p -hsa-mir-4713 hsa-miR-4713-5p mir-4713/5p -hsa-mir-4713 hsa-miR-4713-3p mir-4713/3p -hsa-mir-4712 hsa-miR-4712-5p mir-4712/5p -hsa-mir-4712 hsa-miR-4712-3p mir-4712/3p -hsa-mir-4711 hsa-miR-4711-5p mir-4711/5p -hsa-mir-4711 hsa-miR-4711-3p mir-4711/3p -hsa-mir-4709 hsa-miR-4709-5p mir-4709/5p -hsa-mir-4709 hsa-miR-4709-3p mir-4709/3p -hsa-mir-4708 hsa-miR-4708-5p mir-4708/5p -hsa-mir-4708 hsa-miR-4708-3p mir-4708/3p -hsa-mir-4707 hsa-miR-4707-5p mir-4707/5p -hsa-mir-4707 hsa-miR-4707-3p mir-4707/3p -hsa-mir-4704 hsa-miR-4704-5p mir-4704/5p -hsa-mir-4704 hsa-miR-4704-3p mir-4704/3p -hsa-mir-4703 hsa-miR-4703-5p mir-4703/5p -hsa-mir-4703 hsa-miR-4703-3p mir-4703/3p -hsa-mir-4701 hsa-miR-4701-5p mir-4701/5p -hsa-mir-4701 hsa-miR-4701-3p mir-4701/3p -hsa-mir-4700 hsa-miR-4700-5p mir-4700/5p -hsa-mir-4700 hsa-miR-4700-3p mir-4700/3p -hsa-mir-4699 hsa-miR-4699-5p mir-4699/5p -hsa-mir-4699 hsa-miR-4699-3p mir-4699/3p -hsa-mir-4697 hsa-miR-4697-5p mir-4697/5p -hsa-mir-4697 hsa-miR-4697-3p mir-4697/3p -hsa-mir-4695 hsa-miR-4695-5p mir-4695/5p -hsa-mir-4695 hsa-miR-4695-3p mir-4695/3p -hsa-mir-4694 hsa-miR-4694-5p mir-4694/5p -hsa-mir-4694 hsa-miR-4694-3p mir-4694/3p -hsa-mir-4693 hsa-miR-4693-5p mir-4693/5p -hsa-mir-4693 hsa-miR-4693-3p mir-4693/3p -hsa-mir-4691 hsa-miR-4691-5p mir-4691/5p -hsa-mir-4691 hsa-miR-4691-3p mir-4691/3p -hsa-mir-4690 hsa-miR-4690-5p mir-4690/5p -hsa-mir-4690 hsa-miR-4690-3p mir-4690/3p -hsa-mir-4687 hsa-miR-4687-5p mir-4687/5p -hsa-mir-4687 hsa-miR-4687-3p mir-4687/3p -hsa-mir-663a hsa-miR-663a mir-663a/663a -hsa-mir-4685 hsa-miR-4685-5p mir-4685/5p -hsa-mir-4685 hsa-miR-4685-3p mir-4685/3p -hsa-mir-4684 hsa-miR-4684-5p mir-4684/5p -hsa-mir-4684 hsa-miR-4684-3p mir-4684/3p -hsa-mir-4680 hsa-miR-4680-5p mir-4680/5p -hsa-mir-4680 hsa-miR-4680-3p mir-4680/3p -hsa-mir-4677 hsa-miR-4677-5p mir-4677/5p -hsa-mir-4677 hsa-miR-4677-3p mir-4677/3p -hsa-mir-4676 hsa-miR-4676-5p mir-4676/5p -hsa-mir-4676 hsa-miR-4676-3p mir-4676/3p -hsa-mir-4671 hsa-miR-4671-5p mir-4671/5p -hsa-mir-4671 hsa-miR-4671-3p mir-4671/3p -hsa-mir-4670 hsa-miR-4670-5p mir-4670/5p -hsa-mir-4670 hsa-miR-4670-3p mir-4670/3p -hsa-mir-4668 hsa-miR-4668-5p mir-4668/5p -hsa-mir-4668 hsa-miR-4668-3p mir-4668/3p -hsa-mir-4667 hsa-miR-4667-5p mir-4667/5p -hsa-mir-4667 hsa-miR-4667-3p mir-4667/3p -hsa-mir-4666a hsa-miR-4666a-5p mir-4666a/5p -hsa-mir-3690-1 hsa-miR-3690 mir-3690-1/3690 -hsa-mir-4666a hsa-miR-4666-5p mir-4666a/5p -hsa-mir-4666a hsa-miR-4666a-3p mir-4666a/3p -hsa-mir-4666a hsa-miR-4666-3p mir-4666a/3p -hsa-mir-4666 hsa-miR-4666a-5p mir-4666/5p -hsa-mir-4666 hsa-miR-4666-5p mir-4666/5p -hsa-mir-4666 hsa-miR-4666a-3p mir-4666/3p -hsa-mir-4666 hsa-miR-4666-3p mir-4666/3p -hsa-mir-4665 hsa-miR-4665-5p mir-4665/5p -hsa-mir-4665 hsa-miR-4665-3p mir-4665/3p -hsa-mir-4664 hsa-miR-4664-5p mir-4664/5p -hsa-mir-4664 hsa-miR-4664-3p mir-4664/3p -hsa-mir-4662a hsa-miR-4662a-5p mir-4662a/5p -hsa-mir-4662a hsa-miR-4662a-3p mir-4662a/3p -hsa-mir-4661 hsa-miR-4661-5p mir-4661/5p -hsa-mir-4661 hsa-miR-4661-3p mir-4661/3p -hsa-mir-7704 hsa-miR-7704 mir-7704/7704 -hsa-mir-4659b hsa-miR-4659b-5p mir-4659b/5p -hsa-mir-4659b hsa-miR-4659b-3p mir-4659b/3p -hsa-mir-4659a hsa-miR-4659a-5p mir-4659a/5p -hsa-mir-7853 hsa-miR-7853-5p mir-7853/5p -hsa-mir-4659a hsa-miR-4659a-3p mir-4659a/3p -hsa-mir-4655 hsa-miR-4655-5p mir-4655/5p -hsa-mir-4655 hsa-miR-4655-3p mir-4655/3p -hsa-mir-4653 hsa-miR-4653-5p mir-4653/5p -hsa-mir-4653 hsa-miR-4653-3p mir-4653/3p -hsa-mir-4652 hsa-miR-4652-5p mir-4652/5p -hsa-mir-4652 hsa-miR-4652-3p mir-4652/3p -hsa-mir-4652 hsa-miR-4652-5p mir-4652/5p -hsa-mir-4652 hsa-miR-4652-3p mir-4652/3p -hsa-mir-4650-2 hsa-miR-4650-5p mir-4650-2/5p -hsa-mir-4650-2 hsa-miR-4650-3p mir-4650-2/3p -hsa-mir-7975 hsa-miR-7975 mir-7975/7975 -hsa-mir-4650-1 hsa-miR-4650-5p mir-4650-1/5p -hsa-mir-4650-1 hsa-miR-4650-3p mir-4650-1/3p -hsa-mir-4649 hsa-miR-4649-5p mir-4649/5p -hsa-mir-4649 hsa-miR-4649-3p mir-4649/3p -hsa-mir-4646 hsa-miR-4646-5p mir-4646/5p -hsa-mir-4646 hsa-miR-4646-3p mir-4646/3p -hsa-mir-4645 hsa-miR-4645-5p mir-4645/5p -hsa-mir-4645 hsa-miR-4645-3p mir-4645/3p -hsa-mir-4641 hsa-miR-323b-5p mir-4641/5p -hsa-mir-4641 hsa-miR-453 mir-4641/453 -hsa-mir-4641 hsa-miR-4641 mir-4641/4641 -hsa-mir-8052 hsa-miR-8052 mir-8052/8052 -hsa-mir-4640 hsa-miR-4640-5p mir-4640/5p -hsa-mir-4640 hsa-miR-4640-3p mir-4640/3p -hsa-mir-4639 hsa-miR-4639-5p mir-4639/5p -hsa-mir-8057 hsa-miR-8057 mir-8057/8057 -hsa-mir-4639 hsa-miR-4639-3p mir-4639/3p -hsa-mir-4638 hsa-miR-4638-5p mir-4638/5p -hsa-mir-4638 hsa-miR-4638-3p mir-4638/3p -hsa-mir-4633 hsa-miR-4633-5p mir-4633/5p -hsa-mir-8063 hsa-miR-8063 mir-8063/8063 -hsa-mir-4633 hsa-miR-4633-3p mir-4633/3p -hsa-mir-4632 hsa-miR-4632-5p mir-4632/5p -hsa-mir-4632 hsa-miR-4632-3p mir-4632/3p -hsa-mir-4632 hsa-miR-4632 mir-4632/4632 -hsa-mir-455 hsa-miR-455 mir-455/455 -hsa-mir-455 hsa-miR-455-5p mir-455/5p -hsa-mir-8068 hsa-miR-8068 mir-8068/8068 -hsa-mir-455 hsa-miR-455-3p mir-455/3p -hsa-mir-454 hsa-miR-454* mir-454/454* -hsa-mir-454 hsa-miR-454 mir-454/454 -hsa-mir-4536-1 hsa-miR-4536-5p mir-4536-1/5p -hsa-mir-4536-1 hsa-miR-4536 mir-4536-1/4536 -hsa-mir-4536-1 hsa-miR-4536-3p mir-4536-1/3p -hsa-mir-4536 hsa-miR-4536-5p mir-4536/5p -hsa-mir-4536 hsa-miR-4536-3p mir-4536/3p -hsa-mir-4536 hsa-miR-4536 mir-4536/4536 -hsa-mir-4529 hsa-miR-4529-5p mir-4529/5p -hsa-mir-8072 hsa-miR-8072 mir-8072/8072 -hsa-mir-4529 hsa-miR-4529-3p mir-4529/3p -hsa-mir-4524b hsa-miR-4524b-5p mir-4524b/5p -hsa-mir-4524b hsa-miR-4524b-3p mir-4524b/3p -hsa-mir-4524a hsa-miR-4524a-5p mir-4524a/5p -hsa-mir-4524a hsa-miR-4524 mir-4524a/4524 -hsa-mir-4524a hsa-miR-4524a-3p mir-4524a/3p -hsa-mir-4524 hsa-miR-4524a-5p mir-4524/5p -hsa-mir-4524 hsa-miR-4524a-3p mir-4524/3p -hsa-mir-4524 hsa-miR-4524 mir-4524/4524 -hsa-mir-4524 hsa-miR-4524* mir-4524/4524* -hsa-mir-4520b hsa-miR-4520-5p mir-4520b/5p -hsa-mir-4520b hsa-miR-4520a-5p mir-4520b/5p -hsa-mir-4520b hsa-miR-4520-2-3p mir-4520b/3p -hsa-mir-8078 hsa-miR-8078 mir-8078/8078 -hsa-mir-4520b hsa-miR-4520b-5p mir-4520b/5p -hsa-mir-4520b hsa-miR-4520b-3p mir-4520b/3p -hsa-mir-4520a hsa-miR-4520-5p mir-4520a/5p -hsa-mir-4520a hsa-miR-4520a-5p mir-4520a/5p -hsa-mir-4520a hsa-miR-4520-3p mir-4520a/3p -hsa-mir-4520a hsa-miR-4520a-3p mir-4520a/3p -hsa-mir-8083 hsa-miR-8083 mir-8083/8083 -hsa-mir-4520-2 hsa-miR-4520-5p mir-4520-2/5p -hsa-mir-4520-2 hsa-miR-4520a-5p mir-4520-2/5p -hsa-mir-4520-2 hsa-miR-4520-2-3p mir-4520-2/3p -hsa-mir-4520-2 hsa-miR-4520b-3p mir-4520-2/3p -hsa-mir-4520-1 hsa-miR-4520-5p mir-4520-1/5p -hsa-mir-4520-1 hsa-miR-4520a-5p mir-4520-1/5p -hsa-mir-4520-1 hsa-miR-4520-3p mir-4520-1/3p -hsa-mir-4520-1 hsa-miR-4520a-3p mir-4520-1/3p -hsa-mir-452 hsa-miR-452-5p mir-452/5p -hsa-mir-452 hsa-miR-452-3p mir-452/3p -hsa-mir-8088 hsa-miR-8088 mir-8088/8088 -hsa-mir-452 hsa-miR-452 mir-452/452 -hsa-mir-452 hsa-miR-452* mir-452/452* -hsa-mir-451a hsa-miR-451a mir-451a/451a -hsa-mir-451a hsa-miR-451 mir-451a/451 -hsa-mir-451 hsa-miR-451a mir-451/451a -hsa-mir-451 hsa-miR-451 mir-451/451 -hsa-mir-450b hsa-miR-450b-5p mir-450b/5p -hsa-mir-450b hsa-miR-450b-3p mir-450b/3p -hsa-mir-8071-2 hsa-miR-8071 mir-8071-2/8071 -hsa-mir-450a-2 hsa-miR-450a-5p mir-450a-2/5p -hsa-mir-450a-2 hsa-miR-450 mir-450a-2/450 -hsa-mir-450a-2 hsa-miR-450a-2-3p mir-450a-2/3p -hsa-mir-8064 hsa-miR-8064 mir-8064/8064 -hsa-mir-6124 hsa-miR-6124 mir-6124/6124 -hsa-mir-7973-2 hsa-miR-7973 mir-7973-2/7973 -hsa-mir-450a-2 hsa-miR-450a mir-450a-2/450a -hsa-mir-450a-1 hsa-miR-450a-5p mir-450a-1/5p -hsa-mir-450a-1 hsa-miR-450 mir-450a-1/450 -hsa-mir-450a-1 hsa-miR-450a-1-3p mir-450a-1/3p -hsa-mir-450a-1 hsa-miR-450a mir-450a-1/450a -hsa-mir-450-2 hsa-miR-450a-5p mir-450-2/5p -hsa-mir-6717 hsa-miR-6717-5p mir-6717/5p -hsa-mir-450-2 hsa-miR-450 mir-450-2/450 -hsa-mir-450-2 hsa-miR-450a mir-450-2/450a -hsa-mir-450-2 hsa-miR-450a-2-3p mir-450-2/3p -hsa-mir-450-1 hsa-miR-450a-5p mir-450-1/5p -hsa-mir-8059 hsa-miR-8059 mir-8059/8059 -hsa-mir-6718 hsa-miR-6718-5p mir-6718/5p -hsa-mir-6082 hsa-miR-6082 mir-6082/6082 -hsa-mir-450-1 hsa-miR-450 mir-450-1/450 -hsa-mir-450-1 hsa-miR-450a mir-450-1/450a -hsa-mir-450-1 hsa-miR-450a-1-3p mir-450-1/3p -hsa-mir-450 hsa-miR-450a-5p mir-450/5p -hsa-mir-450 hsa-miR-450 mir-450/450 -hsa-mir-450 hsa-miR-450a mir-450/450a -hsa-mir-450 hsa-miR-450a-1-3p mir-450/3p -hsa-mir-449c hsa-miR-449c mir-449c/449c -hsa-mir-449c hsa-miR-449c* mir-449c/449c* -hsa-mir-449b hsa-miR-449b-5p mir-449b/5p -hsa-mir-449b hsa-miR-449b-3p mir-449b/3p -hsa-mir-449b hsa-miR-449b mir-449b/449b -hsa-mir-449b hsa-miR-449b* mir-449b/449b* -hsa-mir-6130 hsa-miR-6130 mir-6130/6130 -hsa-mir-449a hsa-miR-449 mir-449a/449 -hsa-mir-449a hsa-miR-449a mir-449a/449a -hsa-mir-449 hsa-miR-449a mir-449/449a -hsa-mir-449 hsa-miR-449 mir-449/449 -hsa-mir-8055 hsa-miR-8055 mir-8055/8055 -hsa-mir-6724-1 hsa-miR-6724-5p mir-6724-1/5p -hsa-mir-6724 hsa-miR-6724-5p mir-6724/5p -hsa-mir-4485 hsa-miR-4485-5p mir-4485/5p -hsa-mir-4485 hsa-miR-4485-3p mir-4485/3p -hsa-mir-4485 hsa-miR-4485 mir-4485/4485 -hsa-mir-4482-1 hsa-miR-4482-5p mir-4482-1/5p -hsa-mir-4482-1 hsa-miR-4482-3p mir-4482-1/3p -hsa-mir-4474 hsa-miR-4474-5p mir-4474/5p -hsa-mir-4474 hsa-miR-4474-3p mir-4474/3p -hsa-mir-4446 hsa-miR-4446-5p mir-4446/5p -hsa-mir-4446 hsa-miR-4446-3p mir-4446/3p -hsa-mir-4445 hsa-miR-4445-5p mir-4445/5p -hsa-mir-4445 hsa-miR-4445-3p mir-4445/3p -hsa-mir-4445 hsa-miR-4445 mir-4445/4445 -hsa-mir-4445 hsa-miR-4445* mir-4445/4445* -hsa-mir-4436b-2 hsa-miR-4436b-5p mir-4436b-2/5p -hsa-mir-4436b-2 hsa-miR-4436b-3p mir-4436b-2/3p -hsa-mir-4436b-1 hsa-miR-4436b-3p mir-4436b-1/3p -hsa-mir-4436b-1 hsa-miR-4436b-5p mir-4436b-1/5p -hsa-mir-4436b hsa-miR-4436b-3p mir-4436b/3p -hsa-mir-4436b hsa-miR-4436b-5p mir-4436b/5p -hsa-mir-4433b hsa-miR-4433b-5p mir-4433b/5p -hsa-mir-4433b hsa-miR-4433b-3p mir-4433b/3p -hsa-mir-4433a hsa-miR-4433a-5p mir-4433a/5p -hsa-mir-4433a hsa-miR-4433-5p mir-4433a/5p -hsa-mir-4433a hsa-miR-4433a-3p mir-4433a/3p -hsa-mir-4433a hsa-miR-4433-3p mir-4433a/3p -hsa-mir-4433 hsa-miR-4433a-5p mir-4433/5p -hsa-mir-4433 hsa-miR-4433-5p mir-4433/5p -hsa-mir-4433 hsa-miR-4433a-3p mir-4433/3p -hsa-mir-4433 hsa-miR-4433-3p mir-4433/3p -hsa-mir-4433 hsa-miR-4433 mir-4433/4433 -hsa-mir-4423 hsa-miR-4423-5p mir-4423/5p -hsa-mir-4423 hsa-miR-4423-3p mir-4423/3p -hsa-mir-433 hsa-miR-433-5p mir-433/5p -hsa-mir-433 hsa-miR-433-3p mir-433/3p -hsa-mir-433 hsa-miR-433 mir-433/433 -hsa-mir-432 hsa-miR-432-5p mir-432/5p -hsa-mir-432 hsa-miR-432-3p mir-432/3p -hsa-mir-432 hsa-miR-432 mir-432/432 -hsa-mir-432 hsa-miR-432* mir-432/432* -hsa-mir-431 hsa-miR-431-5p mir-431/5p -hsa-mir-431 hsa-miR-431-3p mir-431/3p -hsa-mir-431 hsa-miR-431 mir-431/431 -hsa-mir-431 hsa-miR-431* mir-431/431* -hsa-mir-425 hsa-miR-425 mir-425/425 -hsa-mir-425 hsa-miR-425* mir-425/425* -hsa-mir-424 hsa-miR-424-5p mir-424/5p -hsa-mir-424 hsa-miR-424-3p mir-424/3p -hsa-mir-424 hsa-miR-424 mir-424/424 -hsa-mir-424 hsa-miR-424* mir-424/424* -hsa-mir-423 hsa-miR-423-5p mir-423/5p -hsa-mir-423 hsa-miR-423-3p mir-423/3p -hsa-mir-423 hsa-miR-423 mir-423/423 -hsa-mir-412 hsa-miR-412-5p mir-412/5p -hsa-mir-412 hsa-miR-412-3p mir-412/3p -hsa-mir-412 hsa-miR-412 mir-412/412 -hsa-mir-411 hsa-miR-411-5p mir-411/5p -hsa-mir-411 hsa-miR-411-3p mir-411/3p -hsa-mir-411 hsa-miR-411 mir-411/411 -hsa-mir-411 hsa-miR-411* mir-411/411* -hsa-mir-410 hsa-miR-410-5p mir-410/5p -hsa-mir-4444-1 hsa-miR-4444 mir-4444-1/4444 -hsa-mir-410 hsa-miR-410-3p mir-410/3p -hsa-mir-410 hsa-miR-410 mir-410/410 -hsa-mir-409 hsa-miR-409-5p mir-409/5p -hsa-mir-409 hsa-miR-409-3p mir-409/3p -hsa-mir-3944 hsa-miR-3944-5p mir-3944/5p -hsa-mir-3944 hsa-miR-3944-3p mir-3944/3p -hsa-mir-3944 hsa-miR-3944 mir-3944/3944 -hsa-mir-3942 hsa-miR-3942-5p mir-3942/5p -hsa-mir-3942 hsa-miR-3942 mir-3942/3942 -hsa-mir-3942 hsa-miR-3942-3p mir-3942/3p -hsa-mir-3940 hsa-miR-3940 mir-3940/3940 -hsa-mir-3940 hsa-miR-3940-3p mir-3940/3p -hsa-mir-3940 hsa-miR-3940-5p mir-3940/5p -hsa-mir-3934 hsa-miR-3934-5p mir-3934/5p -hsa-mir-3934 hsa-miR-3934-3p mir-3934/3p -hsa-mir-3934 hsa-miR-3934 mir-3934/3934 -hsa-mir-3928 hsa-miR-3928-5p mir-3928/5p -hsa-mir-3928 hsa-miR-3928-3p mir-3928/3p -hsa-mir-3928 hsa-miR-3928 mir-3928/3928 -hsa-mir-3927 hsa-miR-3927-5p mir-3927/5p -hsa-mir-3927 hsa-miR-3927-3p mir-3927/3p -hsa-mir-3927 hsa-miR-3927 mir-3927/3927 -hsa-mir-3925 hsa-miR-3925-5p mir-3925/5p -hsa-mir-3925 hsa-miR-3925 mir-3925/3925 -hsa-mir-3198 hsa-miR-3198 mir-3198/3198 -hsa-mir-3925 hsa-miR-3925-3p mir-3925/3p -hsa-mir-3922 hsa-miR-3922-5p mir-3922/5p -hsa-mir-3922 hsa-miR-3922-3p mir-3922/3p -hsa-mir-3922 hsa-miR-3922 mir-3922/3922 -hsa-mir-3913-2 hsa-miR-3913-5p mir-3913-2/5p -hsa-mir-3913-2 hsa-miR-3913 mir-3913-2/3913 -hsa-mir-3913-1 hsa-miR-3913-5p mir-3913-1/5p -hsa-mir-3913-1 hsa-miR-3913 mir-3913-1/3913 -hsa-mir-3913-1 hsa-miR-3913-3p mir-3913-1/3p -hsa-mir-3912 hsa-miR-3912-5p mir-3912/5p -hsa-mir-3912 hsa-miR-3912-3p mir-3912/3p -hsa-mir-3912 hsa-miR-3912 mir-3912/3912 -hsa-mir-383 hsa-miR-383-5p mir-383/5p -hsa-mir-383 hsa-miR-383-3p mir-383/3p -hsa-mir-383 hsa-miR-383 mir-383/383 -hsa-mir-382 hsa-miR-382-5p mir-382/5p -hsa-mir-382 hsa-miR-382-3p mir-382/3p -hsa-mir-382 hsa-miR-382 mir-382/382 -hsa-mir-381 hsa-miR-381-5p mir-381/5p -hsa-mir-381 hsa-miR-381-3p mir-381/3p -hsa-mir-381 hsa-miR-381 mir-381/381 -hsa-mir-380 hsa-miR-380* mir-380/380* -hsa-mir-380 hsa-miR-380 mir-380/380 -hsa-mir-379 hsa-miR-379-5p mir-379/5p -hsa-mir-379 hsa-miR-379-3p mir-379/3p -hsa-mir-379 hsa-miR-379 mir-379/379 -hsa-mir-379 hsa-miR-379* mir-379/379* -hsa-mir-378a hsa-miR-378a-5p mir-378a/5p -hsa-mir-378a hsa-miR-378 mir-378a/378 -hsa-mir-378a hsa-miR-378a-3p mir-378a/3p -hsa-mir-378 hsa-miR-378a-5p mir-378/5p -hsa-mir-378 hsa-miR-378a-3p mir-378/3p -hsa-mir-378 hsa-miR-422b mir-378/422b -hsa-mir-378 hsa-miR-378* mir-378/378* -hsa-mir-378 hsa-miR-378 mir-378/378 -hsa-mir-377 hsa-miR-377-5p mir-377/5p -hsa-mir-377 hsa-miR-377-3p mir-377/3p -hsa-mir-377 hsa-miR-377* mir-377/377* -hsa-mir-377 hsa-miR-377 mir-377/377 -hsa-mir-376c hsa-miR-376c-5p mir-376c/5p -hsa-mir-376c hsa-miR-368 mir-376c/368 -hsa-mir-376c hsa-miR-376c-3p mir-376c/3p -hsa-mir-376c hsa-miR-376c mir-376c/376c -hsa-mir-376b hsa-miR-376b-5p mir-376b/5p -hsa-mir-376b hsa-miR-376b-3p mir-376b/3p -hsa-mir-376b hsa-miR-376b mir-376b/376b -hsa-mir-376a-2 hsa-miR-376a-2-5p mir-376a-2/5p -hsa-mir-376a-2 hsa-miR-376a-3p mir-376a-2/3p -hsa-mir-376a-2 hsa-miR-376a mir-376a-2/376a -hsa-mir-376a-1 hsa-miR-376a-5p mir-376a-1/5p -hsa-mir-376a-1 hsa-miR-376a-3p mir-376a-1/3p -hsa-mir-376a-1 hsa-miR-376a* mir-376a-1/376a* -hsa-mir-376a-1 hsa-miR-376a mir-376a-1/376a -hsa-mir-376a hsa-miR-376a-5p mir-376a/5p -hsa-mir-376a hsa-miR-376a-3p mir-376a/3p -hsa-mir-376a hsa-miR-376a mir-376a/376a -hsa-mir-375 hsa-miR-375-5p mir-375/5p -hsa-mir-375 hsa-miR-375-3p mir-375/3p -hsa-mir-375 hsa-miR-375 mir-375/375 -hsa-mir-374c hsa-miR-374c-5p mir-374c/5p -hsa-mir-374c hsa-miR-374c-3p mir-374c/3p -hsa-mir-374c hsa-miR-374c mir-374c/374c -hsa-mir-374b hsa-miR-374b-5p mir-374b/5p -hsa-mir-374b hsa-miR-374b-3p mir-374b/3p -hsa-mir-374b hsa-miR-374b mir-374b/374b -hsa-mir-374b hsa-miR-374b* mir-374b/374b* -hsa-mir-374a hsa-miR-374a-5p mir-374a/5p -hsa-mir-374a hsa-miR-374 mir-374a/374 -hsa-mir-374a hsa-miR-374a-3p mir-374a/3p -hsa-mir-374a hsa-miR-374a mir-374a/374a -hsa-mir-374a hsa-miR-374a* mir-374a/374a* -hsa-mir-374 hsa-miR-374a-5p mir-374/5p -hsa-mir-374 hsa-miR-374 mir-374/374 -hsa-mir-374 hsa-miR-374a mir-374/374a -hsa-mir-374 hsa-miR-374a-3p mir-374/3p -hsa-mir-373 hsa-miR-373-5p mir-373/5p -hsa-mir-373 hsa-miR-373-3p mir-373/3p -hsa-mir-373 hsa-miR-373* mir-373/373* -hsa-mir-373 hsa-miR-373 mir-373/373 -hsa-mir-372 hsa-miR-372-5p mir-372/5p -hsa-mir-372 hsa-miR-372-3p mir-372/3p -hsa-mir-372 hsa-miR-372 mir-372/372 -hsa-mir-371b hsa-miR-371b-5p mir-371b/5p -hsa-mir-371b hsa-miR-371b-3p mir-371b/3p -hsa-mir-371a hsa-miR-371a-5p mir-371a/5p -hsa-mir-371a hsa-miR-371-5p mir-371a/5p -hsa-mir-371a hsa-miR-371a-3p mir-371a/3p -hsa-mir-371a hsa-miR-371 mir-371a/371 -hsa-mir-371 hsa-miR-371a-5p mir-371/5p -hsa-mir-371 hsa-miR-371a-3p mir-371/3p -hsa-mir-371 hsa-miR-371 mir-371/371 -hsa-mir-371 hsa-miR-371-5p mir-371/5p -hsa-mir-371 hsa-miR-371-3p mir-371/3p -hsa-mir-370 hsa-miR-370-5p mir-370/5p -hsa-mir-370 hsa-miR-370-3p mir-370/3p -hsa-mir-370 hsa-miR-370 mir-370/370 -hsa-mir-3692 hsa-miR-3692-5p mir-3692/5p -hsa-mir-3692 hsa-miR-3692-3p mir-3692/3p -hsa-mir-3692 hsa-miR-3692* mir-3692/3692* -hsa-mir-3692 hsa-miR-3692 mir-3692/3692 -hsa-mir-3691 hsa-miR-3691-5p mir-3691/5p -hsa-mir-3691 hsa-miR-3691 mir-3691/3691 -hsa-mir-3691 hsa-miR-3691-3p mir-3691/3p -hsa-mir-369 hsa-miR-369-5p mir-369/5p -hsa-mir-369 hsa-miR-369-3p mir-369/3p -hsa-mir-3689b hsa-miR-3689b-5p mir-3689b/5p -hsa-mir-3689b hsa-miR-3689b-3p mir-3689b/3p -hsa-mir-3689b hsa-miR-3689b mir-3689b/3689b -hsa-mir-3689b hsa-miR-3689b* mir-3689b/3689b* -hsa-mir-3689a hsa-miR-3689a-5p mir-3689a/5p -hsa-mir-3689a hsa-miR-3689a-3p mir-3689a/3p -hsa-mir-3689a hsa-miR-3689 mir-3689a/3689 -hsa-mir-3688-2 hsa-miR-3688-5p mir-3688-2/5p -hsa-mir-3688-2 hsa-miR-3688-3p mir-3688-2/3p -hsa-mir-3688-2 hsa-miR-3688 mir-3688-2/3688 -hsa-mir-1270 hsa-miR-1270 mir-1270/1270 -hsa-mir-3688-1 hsa-miR-3688-3p mir-3688-1/3p -hsa-mir-3688-1 hsa-miR-3688-5p mir-3688-1/5p -hsa-mir-3688 hsa-miR-3688-5p mir-3688/5p -hsa-mir-3688 hsa-miR-3688-3p mir-3688/3p -hsa-mir-3682 hsa-miR-3682-5p mir-3682/5p -hsa-mir-3682 hsa-miR-3682-3p mir-3682/3p -hsa-mir-3682 hsa-miR-3682 mir-3682/3682 -hsa-mir-3681 hsa-miR-3681-5p mir-3681/5p -hsa-mir-3681 hsa-miR-3681-3p mir-3681/3p -hsa-mir-3681 hsa-miR-3681 mir-3681/3681 -hsa-mir-3681 hsa-miR-3681* mir-3681/3681* -hsa-mir-3680-2 hsa-miR-3680-5p mir-3680-2/5p -hsa-mir-3680-2 hsa-miR-3680 mir-3680-2/3680 -hsa-mir-3680-2 hsa-miR-3680-3p mir-3680-2/3p -hsa-mir-3680-1 hsa-miR-3680-5p mir-3680-1/5p -hsa-mir-3680-1 hsa-miR-3680 mir-3680-1/3680 -hsa-mir-3680-1 hsa-miR-3680-3p mir-3680-1/3p -hsa-mir-3680 hsa-miR-3680-5p mir-3680/5p -hsa-mir-3680 hsa-miR-3680-3p mir-3680/3p -hsa-mir-3680 hsa-miR-3680 mir-3680/3680 -hsa-mir-3680 hsa-miR-3680* mir-3680/3680* -hsa-mir-368 hsa-miR-376c-5p mir-368/5p -hsa-mir-368 hsa-miR-368 mir-368/368 -hsa-mir-368 hsa-miR-376c mir-368/376c -hsa-mir-368 hsa-miR-376c-3p mir-368/3p -hsa-mir-3679 hsa-miR-3679-5p mir-3679/5p -hsa-mir-3679 hsa-miR-3679-3p mir-3679/3p -hsa-mir-3678 hsa-miR-3678-5p mir-3678/5p -hsa-mir-3678 hsa-miR-3678-3p mir-3678/3p -hsa-mir-3677 hsa-miR-3677-5p mir-3677/5p -hsa-mir-3677 hsa-miR-3677-3p mir-3677/3p -hsa-mir-3677 hsa-miR-3677 mir-3677/3677 -hsa-mir-3675 hsa-miR-3675-5p mir-3675/5p -hsa-mir-3675 hsa-miR-3675-3p mir-3675/3p -hsa-mir-367 hsa-miR-367-5p mir-367/5p -hsa-mir-367 hsa-miR-367-3p mir-367/3p -hsa-mir-367 hsa-miR-367* mir-367/367* -hsa-mir-367 hsa-miR-367 mir-367/367 -hsa-mir-3667 hsa-miR-3667-5p mir-3667/5p -hsa-mir-3667 hsa-miR-3667-3p mir-3667/3p -hsa-mir-3664 hsa-miR-3664-5p mir-3664/5p -hsa-mir-3664 hsa-miR-3664 mir-3664/3664 -hsa-mir-3664 hsa-miR-3664-3p mir-3664/3p -hsa-mir-3663 hsa-miR-3663-5p mir-3663/5p -hsa-mir-3663 hsa-miR-3663-3p mir-3663/3p -hsa-mir-3653 hsa-miR-3653-5p mir-3653/5p -hsa-mir-3653 hsa-miR-3653-3p mir-3653/3p -hsa-mir-3653 hsa-miR-3653 mir-3653/3653 -hsa-mir-365-2 hsa-miR-365* mir-365-2/365* -hsa-mir-365-2 hsa-miR-365 mir-365-2/365 -hsa-mir-3647 hsa-miR-3647-5p mir-3647/5p -hsa-mir-3647 hsa-miR-3647-3p mir-3647/3p -hsa-mir-363 hsa-miR-363-5p mir-363/5p -hsa-mir-363 hsa-miR-363-3p mir-363/3p -hsa-mir-363 hsa-miR-363* mir-363/363* -hsa-mir-363 hsa-miR-363 mir-363/363 -hsa-mir-3622b hsa-miR-3622b-5p mir-3622b/5p -hsa-mir-3622b hsa-miR-3622b-3p mir-3622b/3p -hsa-mir-3622a hsa-miR-3622a-5p mir-3622a/5p -hsa-mir-3622a hsa-miR-3622a-3p mir-3622a/3p -hsa-mir-3620 hsa-miR-3620-5p mir-3620/5p -hsa-mir-3620 hsa-miR-3620-3p mir-3620/3p -hsa-mir-3620 hsa-miR-3620 mir-3620/3620 -hsa-mir-362 hsa-miR-362-5p mir-362/5p -hsa-mir-362 hsa-miR-362 mir-362/362 -hsa-mir-362 hsa-miR-362-3p mir-362/3p -hsa-mir-3619 hsa-miR-3619-5p mir-3619/5p -hsa-mir-3619 hsa-miR-3619 mir-3619/3619 -hsa-mir-3619 hsa-miR-3619-3p mir-3619/3p -hsa-mir-3617 hsa-miR-3617-5p mir-3617/5p -hsa-mir-3617 hsa-miR-3617-3p mir-3617/3p -hsa-mir-3617 hsa-miR-3617 mir-3617/3617 -hsa-mir-1972 hsa-miR-1972 mir-1972/1972 -hsa-mir-3616 hsa-miR-3616-5p mir-3616/5p -hsa-mir-3616 hsa-miR-3616-3p mir-3616/3p -hsa-mir-3614 hsa-miR-3614-5p mir-3614/5p -hsa-mir-3614 hsa-miR-3614-3p mir-3614/3p -hsa-mir-3613 hsa-miR-3613-5p mir-3613/5p -hsa-mir-3613 hsa-miR-3613-3p mir-3613/3p -hsa-mir-361 hsa-miR-361-5p mir-361/5p -hsa-mir-361 hsa-miR-361 mir-361/361 -hsa-mir-361 hsa-miR-361-3p mir-361/3p -hsa-mir-3607 hsa-miR-3607-5p mir-3607/5p -hsa-mir-3607 hsa-miR-3607-3p mir-3607/3p -hsa-mir-3606 hsa-miR-3606-5p mir-3606/5p -hsa-mir-3606 hsa-miR-3606-3p mir-3606/3p -hsa-mir-3606 hsa-miR-3606 mir-3606/3606 -hsa-mir-3605 hsa-miR-3605-5p mir-3605/5p -hsa-mir-3605 hsa-miR-3605-3p mir-3605/3p -hsa-mir-3591 hsa-miR-3591-5p mir-3591/5p -hsa-mir-3591 hsa-miR-3591-3p mir-3591/3p -hsa-mir-3545 hsa-miR-203b-5p mir-3545/5p -hsa-mir-3545 hsa-miR-3545-5p mir-3545/5p -hsa-mir-3545 hsa-miR-203b-3p mir-3545/3p -hsa-mir-3545 hsa-miR-3545-3p mir-3545/3p -hsa-mir-3529 hsa-miR-3529-5p mir-3529/5p -hsa-mir-3529 hsa-miR-3529-3p mir-3529/3p -hsa-mir-3529 hsa-miR-3529 mir-3529/3529 -hsa-mir-34c hsa-miR-34c-5p mir-34c/5p -hsa-mir-34c hsa-miR-34c mir-34c/34c -hsa-mir-34c hsa-miR-34c-3p mir-34c/3p -hsa-mir-34b hsa-miR-34b-5p mir-34b/5p -hsa-mir-34b hsa-miR-34b-3p mir-34b/3p -hsa-mir-34b hsa-miR-34b* mir-34b/34b* -hsa-mir-34b hsa-miR-34b mir-34b/34b -hsa-mir-34a hsa-miR-34a-5p mir-34a/5p -hsa-mir-34a hsa-miR-34a-3p mir-34a/3p -hsa-mir-548aw hsa-miR-548aw mir-548aw/548aw -hsa-mir-34a hsa-miR-34a mir-34a/34a -hsa-mir-34a hsa-miR-34a* mir-34a/34a* -hsa-mir-345 hsa-miR-345-5p mir-345/5p -hsa-mir-345 hsa-miR-345-3p mir-345/3p -hsa-mir-345 hsa-miR-345 mir-345/345 -hsa-mir-342 hsa-miR-342-5p mir-342/5p -hsa-mir-342 hsa-miR-342-3p mir-342/3p -hsa-mir-342 hsa-miR-342 mir-342/342 -hsa-mir-340 hsa-miR-340-5p mir-340/5p -hsa-mir-340 hsa-miR-340-3p mir-340/3p -hsa-mir-340 hsa-miR-340 mir-340/340 -hsa-mir-340 hsa-miR-340* mir-340/340* -hsa-mir-34 hsa-miR-34a-5p mir-34/5p -hsa-mir-34 hsa-miR-34a mir-34/34a -hsa-mir-34 hsa-miR-34a-3p mir-34/3p -hsa-mir-33b hsa-miR-33b-5p mir-33b/5p -hsa-mir-33b hsa-miR-33b-3p mir-33b/3p -hsa-mir-33b hsa-miR-33b mir-33b/33b -hsa-mir-33b hsa-miR-33b* mir-33b/33b* -hsa-mir-33a hsa-miR-33a-5p mir-33a/5p -hsa-mir-33a hsa-miR-33 mir-33a/33 -hsa-mir-33a hsa-miR-33a-3p mir-33a/3p -hsa-mir-33a hsa-miR-33a mir-33a/33a -hsa-mir-33a hsa-miR-33a* mir-33a/33a* -hsa-mir-339 hsa-miR-339-5p mir-339/5p -hsa-mir-339 hsa-miR-339 mir-339/339 -hsa-mir-339 hsa-miR-339-3p mir-339/3p -hsa-mir-338 hsa-miR-338-5p mir-338/5p -hsa-mir-338 hsa-miR-338-3p mir-338/3p -hsa-mir-338 hsa-miR-338 mir-338/338 -hsa-mir-337 hsa-miR-337-5p mir-337/5p -hsa-mir-337 hsa-miR-337-3p mir-337/3p -hsa-mir-337 hsa-miR-337 mir-337/337 -hsa-mir-3670-2 hsa-miR-3670 mir-3670-2/3670 -hsa-mir-335 hsa-miR-335-5p mir-335/5p -hsa-mir-335 hsa-miR-335-3p mir-335/3p -hsa-mir-335 hsa-miR-335 mir-335/335 -hsa-mir-335 hsa-miR-335* mir-335/335* -hsa-mir-331 hsa-miR-331-5p mir-331/5p -hsa-mir-331 hsa-miR-331-3p mir-331/3p -hsa-mir-5689 hsa-miR-5689 mir-5689/5689 -hsa-mir-331 hsa-miR-331 mir-331/331 -hsa-mir-4444-2 hsa-miR-4444 mir-4444-2/4444 -hsa-mir-330 hsa-miR-330-5p mir-330/5p -hsa-mir-330 hsa-miR-330-3p mir-330/3p -hsa-mir-5680 hsa-miR-5680 mir-5680/5680 -hsa-mir-330 hsa-miR-330 mir-330/330 -hsa-mir-5693 hsa-miR-5693 mir-5693/5693 -hsa-mir-1254-1 hsa-miR-1254 mir-1254-1/1254 -hsa-mir-5188 hsa-miR-5188 mir-5188/5188 -hsa-mir-5701-2 hsa-miR-5701 mir-5701-2/5701 -hsa-mir-33 hsa-miR-33a-5p mir-33/5p -hsa-mir-5696 hsa-miR-5696 mir-5696/5696 -hsa-mir-33 hsa-miR-33 mir-33/33 -hsa-mir-33 hsa-miR-33a mir-33/33a -hsa-mir-33 hsa-miR-33a-3p mir-33/3p -hsa-mir-329-2 hsa-miR-329-5p mir-329-2/5p -hsa-mir-329-2 hsa-miR-329-3p mir-329-2/3p -hsa-mir-329-2 hsa-miR-329 mir-329-2/329 -hsa-mir-329-1 hsa-miR-329-5p mir-329-1/5p -hsa-mir-329-1 hsa-miR-329-3p mir-329-1/3p -hsa-mir-329-1 hsa-miR-329 mir-329-1/329 -hsa-mir-328 hsa-miR-328-5p mir-328/5p -hsa-mir-328 hsa-miR-328-3p mir-328/3p -hsa-mir-328 hsa-miR-328 mir-328/328 -hsa-mir-324 hsa-miR-324-5p mir-324/5p -hsa-mir-324 hsa-miR-324-3p mir-324/3p -hsa-mir-323b hsa-miR-323b-3p mir-323b/3p -hsa-mir-323b hsa-miR-323b-5p mir-323b/5p -hsa-mir-323b hsa-miR-323b-3p mir-323b/3p -hsa-mir-323a hsa-miR-323a-5p mir-323a/5p -hsa-mir-323a hsa-miR-323-5p mir-323a/5p -hsa-mir-323a hsa-miR-323a-3p mir-323a/3p -hsa-mir-323a hsa-miR-323 mir-323a/323 -hsa-mir-5692b hsa-miR-5692b mir-5692b/5692b -hsa-mir-5100 hsa-miR-5100 mir-5100/5100 -hsa-mir-5691 hsa-miR-5691 mir-5691/5691 -hsa-mir-5695 hsa-miR-5695 mir-5695/5695 -hsa-mir-5692c-2 hsa-miR-5692c mir-5692c-2/5692c -hsa-mir-323a hsa-miR-323-3p mir-323a/3p -hsa-mir-323 hsa-miR-323a-5p mir-323/5p -hsa-mir-323 hsa-miR-323-5p mir-323/5p -hsa-mir-323 hsa-miR-323a-3p mir-323/3p -hsa-mir-5687 hsa-miR-5687 mir-5687/5687 -hsa-mir-323 hsa-miR-323 mir-323/323 -hsa-mir-323 hsa-miR-323-3p mir-323/3p -hsa-mir-5093 hsa-miR-5093 mir-5093/5093 -hsa-mir-5091 hsa-miR-5091 mir-5091/5091 -hsa-mir-5698 hsa-miR-5698 mir-5698/5698 -hsa-mir-320a hsa-miR-320a-5p mir-320a/5p -hsa-mir-320a hsa-miR-320a-3p mir-320a/3p -hsa-mir-320a hsa-miR-320a mir-320a/320a -hsa-mir-3200 hsa-miR-3200-5p mir-3200/5p -hsa-mir-3200 hsa-miR-3200-3p mir-3200/3p -hsa-mir-3200 hsa-miR-3200 mir-3200/3200 -hsa-mir-5705 hsa-miR-5705 mir-5705/5705 -hsa-mir-320 hsa-miR-320a-5p mir-320/5p -hsa-mir-320 hsa-miR-320a-3p mir-320/3p -hsa-mir-320 hsa-miR-320 mir-320/320 -hsa-mir-32 hsa-miR-32-5p mir-32/5p -hsa-mir-32 hsa-miR-32-3p mir-32/3p -hsa-mir-32 hsa-miR-32 mir-32/32 -hsa-mir-32 hsa-miR-32* mir-32/32* -hsa-mir-3194 hsa-miR-3194-5p mir-3194/5p -hsa-mir-3194 hsa-miR-3194 mir-3194/3194 -hsa-mir-3194 hsa-miR-3194-3p mir-3194/3p -hsa-mir-3192 hsa-miR-3192-5p mir-3192/5p -hsa-mir-3192 hsa-miR-3192-3p mir-3192/3p -hsa-mir-5700 hsa-miR-5700 mir-5700/5700 -hsa-mir-5707 hsa-miR-5707 mir-5707/5707 -hsa-mir-3192 hsa-miR-3192 mir-3192/3192 -hsa-mir-3190 hsa-miR-3190-3p mir-3190/3p -hsa-mir-5683 hsa-miR-5683 mir-5683/5683 -hsa-mir-3190 hsa-miR-3190 mir-3190/3190 -hsa-mir-3189 hsa-miR-3189-5p mir-3189/5p -hsa-mir-5186 hsa-miR-5186 mir-5186/5186 -hsa-mir-3189 hsa-miR-3189-3p mir-3189/3p -hsa-mir-3189 hsa-miR-3189 mir-3189/3189 -hsa-mir-5692a-2 hsa-miR-5692a mir-5692a-2/5692a -hsa-mir-5092 hsa-miR-5092 mir-5092/5092 -hsa-mir-5704 hsa-miR-5704 mir-5704/5704 -hsa-mir-3187 hsa-miR-3187-3p mir-3187/3p -hsa-mir-5572 hsa-miR-5572 mir-5572/5572 -hsa-mir-3187 hsa-miR-3187-5p mir-3187/5p -hsa-mir-5682 hsa-miR-5682 mir-5682/5682 -hsa-mir-5087 hsa-miR-5087 mir-5087/5087 -hsa-mir-3186 hsa-miR-3186-5p mir-3186/5p -hsa-mir-3186 hsa-miR-3186-3p mir-3186/3p -hsa-mir-3184 hsa-miR-3184-5p mir-3184/5p -hsa-mir-3184 hsa-miR-3184-3p mir-3184/3p -hsa-mir-3184 hsa-miR-3184 mir-3184/3184 -hsa-mir-4666b hsa-miR-4666b mir-4666b/4666b -hsa-mir-5690 hsa-miR-5690 mir-5690/5690 -hsa-mir-3180-3 hsa-miR-3180-5p mir-3180-3/5p -hsa-mir-3180-3 hsa-miR-3180-3p mir-3180-3/3p -hsa-mir-3180-2 hsa-miR-3180-5p mir-3180-2/5p -hsa-mir-3180-2 hsa-miR-3180-3p mir-3180-2/3p -hsa-mir-5191 hsa-miR-5191 mir-5191/5191 -hsa-mir-5194 hsa-miR-5194 mir-5194/5194 -hsa-mir-664b hsa-miR-664b-3p mir-664b/3p -hsa-mir-664b hsa-miR-664b-5p mir-664b/5p -hsa-mir-5702 hsa-miR-5702 mir-5702/5702 -hsa-mir-3180-1 hsa-miR-3180-5p mir-3180-1/5p -hsa-mir-3180-1 hsa-miR-3180-3p mir-3180-1/3p -hsa-mir-5697 hsa-miR-5697 mir-5697/5697 -hsa-mir-5708 hsa-miR-5708 mir-5708/5708 -hsa-mir-3177 hsa-miR-3177 mir-3177/3177 -hsa-mir-3177 hsa-miR-3177-3p mir-3177/3p -hsa-mir-3177 hsa-miR-3177-5p mir-3177/5p -hsa-mir-3173 hsa-miR-3173-5p mir-3173/5p -hsa-mir-7641-2 hsa-miR-7641 mir-7641-2/7641 -hsa-mir-3173 hsa-miR-3173-3p mir-3173/3p -hsa-mir-3173 hsa-miR-3173 mir-3173/3173 -hsa-mir-6723 hsa-miR-6723-5p mir-6723/5p -hsa-mir-1273a hsa-miR-1273a mir-1273a/1273a -hsa-mir-3162 hsa-miR-3162-5p mir-3162/5p -hsa-mir-3162 hsa-miR-3162 mir-3162/3162 -hsa-mir-3162 hsa-miR-3162-3p mir-3162/3p -hsa-mir-3160-2 hsa-miR-3160-3p mir-3160-2/3p -hsa-mir-3160-2 hsa-miR-3160-5p mir-3160-2/5p -hsa-mir-3160-1 hsa-miR-3160-3p mir-3160-1/3p -hsa-mir-3160-1 hsa-miR-3160-5p mir-3160-1/5p -hsa-mir-3158-2 hsa-miR-3158-5p mir-3158-2/5p -hsa-mir-3687-2 hsa-miR-3687 mir-3687-2/3687 -hsa-mir-3158-2 hsa-miR-3158-3p mir-3158-2/3p -hsa-mir-3158-2 hsa-miR-3158 mir-3158-2/3158 -hsa-mir-3158-1 hsa-miR-3158-5p mir-3158-1/5p -hsa-mir-3158-1 hsa-miR-3158-3p mir-3158-1/3p -hsa-mir-3158-1 hsa-miR-3158 mir-3158-1/3158 -hsa-mir-3157 hsa-miR-3157-5p mir-3157/5p -hsa-mir-3157 hsa-miR-3157 mir-3157/3157 -hsa-mir-3157 hsa-miR-3157-3p mir-3157/3p -hsa-mir-3156-3 hsa-miR-3156-5p mir-3156-3/5p -hsa-mir-3156-3 hsa-miR-3156 mir-3156-3/3156 -hsa-mir-3156-3 hsa-miR-3156-5p mir-3156-3/5p -hsa-let-7c hsa-let-7c let-7c/7c -hsa-mir-3156-2 hsa-miR-3156-5p mir-3156-2/5p -hsa-mir-3156-2 hsa-miR-3156 mir-3156-2/3156 -hsa-mir-3156-2 hsa-miR-3156-3p mir-3156-2/3p -hsa-mir-3156-1 hsa-miR-3156-5p mir-3156-1/5p -hsa-mir-3156-1 hsa-miR-3156 mir-3156-1/3156 -hsa-mir-3156-1 hsa-miR-3156-3p mir-3156-1/3p -hsa-mir-3155a hsa-miR-3155a mir-3155a/3155a -hsa-mir-3155a hsa-miR-3155 mir-3155a/3155 -hsa-mir-3155 hsa-miR-3155a mir-3155/3155a -hsa-mir-3155 hsa-miR-3155 mir-3155/3155 -hsa-mir-3152 hsa-miR-3152-5p mir-3152/5p -hsa-mir-3152 hsa-miR-3152-3p mir-3152/3p -hsa-mir-3151 hsa-miR-3151-5p mir-3151/5p -hsa-mir-3151 hsa-miR-3151-3p mir-3151/3p -hsa-mir-3151 hsa-miR-3151 mir-3151/3151 -hsa-mir-103b-2 hsa-miR-103b mir-103b-2/103b -hsa-mir-3150b hsa-miR-3150b mir-3150b/3150b -hsa-mir-3150b hsa-miR-3150b-3p mir-3150b/3p -hsa-mir-3150b hsa-miR-3150b-5p mir-3150b/5p -hsa-mir-3150a hsa-miR-3150a-3p mir-3150a/3p -hsa-mir-3150a hsa-miR-3150a-5p mir-3150a/5p -hsa-mir-3150a hsa-miR-3150 mir-3150a/3150 -hsa-mir-3150a hsa-miR-3150a-3p mir-3150a/3p -hsa-mir-3150a hsa-miR-3150a-5p mir-3150a/5p -hsa-mir-107 hsa-miR-107 mir-107/107 -hsa-mir-3150 hsa-miR-3150a-3p mir-3150/3p -hsa-mir-3150 hsa-miR-3150a-5p mir-3150/5p -hsa-mir-3150 hsa-miR-3150 mir-3150/3150 -hsa-mir-3145 hsa-miR-3145-5p mir-3145/5p -hsa-mir-3145 hsa-miR-3145-3p mir-3145/3p -hsa-mir-1179 hsa-miR-1179 mir-1179/1179 -hsa-mir-3145 hsa-miR-3145 mir-3145/3145 -hsa-mir-1181 hsa-miR-1181 mir-1181/1181 -hsa-mir-1182 hsa-miR-1182 mir-1182/1182 -hsa-mir-1183 hsa-miR-1183 mir-1183/1183 -hsa-mir-1184-1 hsa-miR-1184 mir-1184-1/1184 -hsa-mir-1184-2 hsa-miR-1184 mir-1184-2/1184 -hsa-mir-1184-3 hsa-miR-1184 mir-1184-3/1184 -hsa-mir-1193 hsa-miR-1193 mir-1193/1193 -hsa-mir-1197 hsa-miR-1197 mir-1197/1197 -hsa-mir-1200 hsa-miR-1200 mir-1200/1200 -hsa-mir-1202 hsa-miR-1202 mir-1202/1202 -hsa-mir-1203 hsa-miR-1203 mir-1203/1203 -hsa-mir-1204 hsa-miR-1204 mir-1204/1204 -hsa-mir-1205 hsa-miR-1205 mir-1205/1205 -hsa-mir-1206 hsa-miR-1206 mir-1206/1206 -hsa-mir-3144 hsa-miR-3144-5p mir-3144/5p -hsa-mir-3144 hsa-miR-3144-3p mir-3144/3p -hsa-mir-1208 hsa-miR-1208 mir-1208/1208 -hsa-mir-3140 hsa-miR-3140-5p mir-3140/5p -hsa-mir-3140 hsa-miR-3140-3p mir-3140/3p -hsa-mir-3140 hsa-miR-3140 mir-3140/3140 -hsa-mir-3136 hsa-miR-3136-5p mir-3136/5p -hsa-mir-1227 hsa-miR-1227 mir-1227/1227 -hsa-mir-3136 hsa-miR-3136-3p mir-3136/3p -hsa-mir-1231 hsa-miR-1231 mir-1231/1231 -hsa-mir-3135a hsa-miR-3135a mir-3135a/3135a -hsa-mir-3135a hsa-miR-3135 mir-3135a/3135 -hsa-mir-3135 hsa-miR-3135a mir-3135/3135a -hsa-mir-3135 hsa-miR-3135 mir-3135/3135 -hsa-mir-3130-2 hsa-miR-3130-5p mir-3130-2/5p -hsa-mir-3130-2 hsa-miR-3130-3p mir-3130-2/3p -hsa-mir-3130-1 hsa-miR-3130-5p mir-3130-1/5p -hsa-mir-3130-1 hsa-miR-3130-3p mir-3130-1/3p -hsa-mir-1243 hsa-miR-1243 mir-1243/1243 -hsa-mir-1244-1 hsa-miR-1244 mir-1244-1/1244 -hsa-mir-1244-2 hsa-miR-1244 mir-1244-2/1244 -hsa-mir-1244-3 hsa-miR-1244 mir-1244-3/1244 -hsa-mir-3129 hsa-miR-3129-5p mir-3129/5p -hsa-mir-3129 hsa-miR-3129 mir-3129/3129 -hsa-mir-3129 hsa-miR-3129-3p mir-3129/3p -hsa-mir-1246 hsa-miR-1246 mir-1246/1246 -hsa-mir-1248 hsa-miR-1248 mir-1248/1248 -hsa-mir-3127 hsa-miR-3127-5p mir-3127/5p -hsa-mir-1251 hsa-miR-1251 mir-1251/1251 -hsa-mir-3127 hsa-miR-3127 mir-3127/3127 -hsa-mir-1253 hsa-miR-1253 mir-1253/1253 -hsa-mir-1254 hsa-miR-1254 mir-1254/1254 -hsa-mir-1254-2 hsa-miR-1254 mir-1254-2/1254 -hsa-mir-1255a hsa-miR-1255a mir-1255a/1255a -hsa-mir-1255b-1 hsa-miR-1255b mir-1255b-1/1255b -hsa-mir-1255b-2 hsa-miR-1255b mir-1255b-2/1255b -hsa-mir-1256 hsa-miR-1256 mir-1256/1256 -hsa-mir-1257 hsa-miR-1257 mir-1257/1257 -hsa-mir-1258 hsa-miR-1258 mir-1258/1258 -hsa-mir-3127 hsa-miR-3127-3p mir-3127/3p -hsa-mir-3126 hsa-miR-3126-5p mir-3126/5p -hsa-mir-3126 hsa-miR-3126-3p mir-3126/3p -hsa-mir-1260b hsa-miR-1260b mir-1260b/1260b -hsa-mir-1261 hsa-miR-1261 mir-1261/1261 -hsa-mir-1262 hsa-miR-1262 mir-1262/1262 -hsa-mir-1263 hsa-miR-1263 mir-1263/1263 -hsa-mir-1264 hsa-miR-1264 mir-1264/1264 -hsa-mir-1265 hsa-miR-1265 mir-1265/1265 -hsa-mir-3124 hsa-miR-3124-3p mir-3124/3p -hsa-mir-1267 hsa-miR-1267 mir-1267/1267 -hsa-mir-3124 hsa-miR-3124-5p mir-3124/5p -hsa-mir-1268b hsa-miR-1268b mir-1268b/1268b -hsa-mir-3124 hsa-miR-3124 mir-3124/3124 -hsa-mir-1269b hsa-miR-1269b mir-1269b/1269b -hsa-mir-3121 hsa-miR-3121 mir-3121/3121 -hsa-mir-1270-2 hsa-miR-1270 mir-1270-2/1270 -hsa-mir-3121 hsa-miR-3121-3p mir-3121/3p -hsa-mir-1272 hsa-miR-1272 mir-1272/1272 -hsa-mir-1273 hsa-miR-1273 mir-1273/1273 -hsa-mir-1273c hsa-miR-1273c mir-1273c/1273c -hsa-mir-1273d hsa-miR-1273d mir-1273d/1273d -hsa-mir-1273e hsa-miR-1273e mir-1273e/1273e -hsa-mir-1273f hsa-miR-1273f mir-1273f/1273f -hsa-mir-3121 hsa-miR-3121-5p mir-3121/5p -hsa-mir-1275 hsa-miR-1275 mir-1275/1275 -hsa-mir-1276 hsa-miR-1276 mir-1276/1276 -hsa-mir-1278 hsa-miR-1278 mir-1278/1278 -hsa-mir-1279 hsa-miR-1279 mir-1279/1279 -hsa-mir-3120 hsa-miR-3120 mir-3120/3120 -hsa-mir-1280 hsa-miR-1280 mir-1280/1280 -hsa-mir-1281 hsa-miR-1281 mir-1281/1281 -hsa-mir-1282 hsa-miR-1282 mir-1282/1282 -hsa-mir-1283-1 hsa-miR-1283 mir-1283-1/1283 -hsa-mir-1283-2 hsa-miR-1283 mir-1283-2/1283 -hsa-mir-1284 hsa-miR-1284 mir-1284/1284 -hsa-mir-3120 hsa-miR-3120-3p mir-3120/3p -hsa-mir-3120 hsa-miR-3120-5p mir-3120/5p -hsa-mir-1286 hsa-miR-1286 mir-1286/1286 -hsa-mir-1288 hsa-miR-1288 mir-1288/1288 -hsa-mir-1289-1 hsa-miR-1289 mir-1289-1/1289 -hsa-mir-1289-2 hsa-miR-1289 mir-1289-2/1289 -hsa-mir-3117 hsa-miR-3117 mir-3117/3117 -hsa-mir-3117 hsa-miR-3117-3p mir-3117/3p -hsa-mir-3117 hsa-miR-3117-5p mir-3117/5p -hsa-mir-1290 hsa-miR-1290 mir-1290/1290 -hsa-mir-1291 hsa-miR-1291 mir-1291/1291 -hsa-mir-31 hsa-miR-31-5p mir-31/5p -hsa-mir-1293 hsa-miR-1293 mir-1293/1293 -hsa-mir-1294 hsa-miR-1294 mir-1294/1294 -hsa-mir-31 hsa-miR-31-3p mir-31/3p -hsa-mir-31 hsa-miR-31 mir-31/31 -hsa-mir-1297 hsa-miR-1297 mir-1297/1297 -hsa-mir-31 hsa-miR-31* mir-31/31* -hsa-mir-1299 hsa-miR-1299 mir-1299/1299 -hsa-mir-30e hsa-miR-30e-5p mir-30e/5p -hsa-mir-1302-1 hsa-miR-1302 mir-1302-1/1302 -hsa-mir-1302-10 hsa-miR-1302 mir-1302-10/1302 -hsa-mir-1302-11 hsa-miR-1302 mir-1302-11/1302 -hsa-mir-1302-2 hsa-miR-1302 mir-1302-2/1302 -hsa-mir-1302-3 hsa-miR-1302 mir-1302-3/1302 -hsa-mir-1302-4 hsa-miR-1302 mir-1302-4/1302 -hsa-mir-1302-5 hsa-miR-1302 mir-1302-5/1302 -hsa-mir-1302-6 hsa-miR-1302 mir-1302-6/1302 -hsa-mir-1302-7 hsa-miR-1302 mir-1302-7/1302 -hsa-mir-1302-8 hsa-miR-1302 mir-1302-8/1302 -hsa-mir-1302-9 hsa-miR-1302 mir-1302-9/1302 -hsa-mir-1303 hsa-miR-1303 mir-1303/1303 -hsa-mir-30e hsa-miR-30e-3p mir-30e/3p -hsa-mir-1305 hsa-miR-1305 mir-1305/1305 -hsa-mir-30e hsa-miR-30e mir-30e/30e -hsa-mir-30e hsa-miR-30e* mir-30e/30e* -hsa-mir-30d hsa-miR-30d-5p mir-30d/5p -hsa-mir-30d hsa-miR-30d-3p mir-30d/3p -hsa-mir-30d hsa-miR-30d mir-30d/30d -hsa-mir-30d hsa-miR-30d* mir-30d/30d* -hsa-mir-30c-2 hsa-miR-30c-5p mir-30c-2/5p -hsa-mir-30c-2 hsa-miR-30c-2-3p mir-30c-2/3p -hsa-mir-1321 hsa-miR-1321 mir-1321/1321 -hsa-mir-1322 hsa-miR-1322 mir-1322/1322 -hsa-mir-1323 hsa-miR-1323 mir-1323/1323 -hsa-mir-1324 hsa-miR-1324 mir-1324/1324 -hsa-mir-30c-2 hsa-miR-30c mir-30c-2/30c -hsa-mir-133a-2 hsa-miR-133a mir-133a-2/133a -hsa-mir-133b hsa-miR-133b mir-133b/133b -hsa-mir-30c-2 hsa-miR-30c-2* mir-30c-2/2* -hsa-mir-30c-1 hsa-miR-30c-5p mir-30c-1/5p -hsa-mir-30c-1 hsa-miR-30c-1-3p mir-30c-1/3p -hsa-mir-30c-1 hsa-miR-30c-1* mir-30c-1/1* -hsa-mir-30c-1 hsa-miR-30c mir-30c-1/30c -hsa-mir-30c hsa-miR-30c-5p mir-30c/5p -hsa-mir-30c hsa-miR-30c mir-30c/30c -hsa-mir-30c hsa-miR-30c-2-3p mir-30c/3p -hsa-mir-30b hsa-miR-30b-5p mir-30b/5p -hsa-mir-30b hsa-miR-30b-3p mir-30b/3p -hsa-mir-30b hsa-miR-30b mir-30b/30b -hsa-mir-30b hsa-miR-30b* mir-30b/30b* -hsa-mir-30a hsa-miR-30a mir-30a/30a -hsa-mir-30a hsa-miR-30a* mir-30a/30a* -hsa-mir-3074 hsa-miR-3074-5p mir-3074/5p -hsa-mir-3074 hsa-miR-3074-3p mir-3074/3p -hsa-mir-3074 hsa-miR-3074 mir-3074/3074 -hsa-mir-3065 hsa-miR-3065-5p mir-3065/5p -hsa-mir-3065 hsa-miR-3065-3p mir-3065/3p -hsa-mir-3064 hsa-miR-3064-5p mir-3064/5p -hsa-mir-3064 hsa-miR-3064-3p mir-3064/3p -hsa-mir-302d hsa-miR-302d-5p mir-302d/5p -hsa-mir-1468 hsa-miR-1468 mir-1468/1468 -hsa-mir-1469 hsa-miR-1469 mir-1469/1469 -hsa-mir-302d hsa-miR-302d-3p mir-302d/3p -hsa-mir-302d hsa-miR-302d* mir-302d/302d* -hsa-mir-302d hsa-miR-302d mir-302d/302d -hsa-mir-302c hsa-miR-302c-5p mir-302c/5p -hsa-mir-302c hsa-miR-302c-3p mir-302c/3p -hsa-mir-1470 hsa-miR-1470 mir-1470/1470 -hsa-mir-1471 hsa-miR-1471 mir-1471/1471 -hsa-mir-302c hsa-miR-302c* mir-302c/302c* -hsa-mir-302c hsa-miR-302c mir-302c/302c -hsa-mir-302b hsa-miR-302b-5p mir-302b/5p -hsa-mir-302b hsa-miR-302b-3p mir-302b/3p -hsa-mir-302b hsa-miR-302b* mir-302b/302b* -hsa-mir-302b hsa-miR-302b mir-302b/302b -hsa-mir-302a hsa-miR-302a-5p mir-302a/5p -hsa-mir-302a hsa-miR-302a-3p mir-302a/3p -hsa-mir-302a hsa-miR-302a* mir-302a/302a* -hsa-mir-302a hsa-miR-302a mir-302a/302a -hsa-mir-302 hsa-miR-302a-5p mir-302/5p -hsa-mir-151b hsa-miR-151b mir-151b/151b -hsa-mir-302 hsa-miR-302a-3p mir-302/3p -hsa-mir-302 hsa-miR-302a mir-302/302a -hsa-mir-301b hsa-miR-301b-5p mir-301b/5p -hsa-mir-301b hsa-miR-301b-3p mir-301b/3p -hsa-mir-1538 hsa-miR-1538 mir-1538/1538 -hsa-mir-1539 hsa-miR-1539 mir-1539/1539 -hsa-mir-301b hsa-miR-301b mir-301b/301b -hsa-miR-301a hsa-miR-301 mir-301a/301 -hsa-mir-301a hsa-miR-301a-5p mir-301a/5p -hsa-mir-301a hsa-miR-301a-3p mir-301a/3p -hsa-mir-1587 hsa-miR-1587 mir-1587/1587 -hsa-mir-301a hsa-miR-301a mir-301a/301a -hsa-mir-301 hsa-miR-301 mir-301/301 -hsa-mir-301 hsa-miR-301a-5p mir-301/5p -hsa-mir-301 hsa-miR-301a-3p mir-301/3p -hsa-mir-301 hsa-miR-301a mir-301/301a -hsa-mir-29c hsa-miR-29c-5p mir-29c/5p -hsa-mir-29c hsa-miR-29c-3p mir-29c/3p -hsa-mir-29c hsa-miR-29c* mir-29c/29c* -hsa-mir-29c hsa-miR-29c mir-29c/29c -hsa-mir-29b-2 hsa-miR-29b-1-5p mir-29b-2/5p -hsa-mir-29b-2 hsa-miR-29b-2-5p mir-29b-2/5p -hsa-mir-29b-2 hsa-miR-29b-3p mir-29b-2/3p -hsa-mir-29b-2 hsa-miR-29b-2* mir-29b-2/2* -hsa-mir-29b-2 hsa-miR-29b mir-29b-2/29b -hsa-mir-181b-1 hsa-miR-181b mir-181b-1/181b -hsa-mir-29b-1 hsa-miR-29b-1-5p mir-29b-1/5p -hsa-mir-29b-1 hsa-miR-29b-2-5p mir-29b-1/5p -hsa-mir-29b-1 hsa-miR-29b-3p mir-29b-1/3p -hsa-mir-29b-1 hsa-miR-29b-1* mir-29b-1/1* -hsa-mir-29b-1 hsa-miR-29b mir-29b-1/29b -hsa-mir-29a hsa-miR-29a-5p mir-29a/5p -hsa-mir-1825 hsa-miR-1825 mir-1825/1825 -hsa-mir-1827 hsa-miR-1827 mir-1827/1827 -hsa-mir-29a hsa-miR-29a-3p mir-29a/3p -hsa-mir-29a hsa-miR-29a* mir-29a/29a* -hsa-mir-184 hsa-miR-184 mir-184/184 -hsa-mir-29a hsa-miR-29a mir-29a/29a -hsa-mir-299 hsa-miR-299 mir-299/299 -hsa-mir-299 hsa-miR-299-3p mir-299/3p -hsa-mir-299 hsa-miR-299-5p mir-299/5p -hsa-mir-299 hsa-miR-299-3p mir-299/3p -hsa-mir-2964a hsa-miR-2964a-5p mir-2964a/5p -hsa-mir-2964a hsa-miR-2964a-3p mir-2964a/3p -hsa-mir-296 hsa-miR-296-5p mir-296/5p -hsa-mir-296 hsa-miR-296 mir-296/296 -hsa-mir-296 hsa-miR-296-3p mir-296/3p -hsa-mir-29 hsa-miR-29a-5p mir-29/5p -hsa-mir-29 hsa-miR-29a-3p mir-29/3p -hsa-mir-29 hsa-miR-29a mir-29/29a -hsa-mir-28 hsa-miR-28-5p mir-28/5p -hsa-mir-28 hsa-miR-28 mir-28/28 -hsa-mir-28 hsa-miR-28-3p mir-28/3p -hsa-mir-27b hsa-miR-27b-5p mir-27b/5p -hsa-mir-27b hsa-miR-27b-3p mir-27b/3p -hsa-mir-27b hsa-miR-27b* mir-27b/27b* -hsa-mir-1913 hsa-miR-1913 mir-1913/1913 -hsa-mir-27b hsa-miR-27b mir-27b/27b -hsa-mir-27a hsa-miR-27a-5p mir-27a/5p -hsa-mir-27a hsa-miR-27a-3p mir-27a/3p -hsa-mir-27a hsa-miR-27a* mir-27a/27a* -hsa-mir-27a hsa-miR-27a mir-27a/27a -hsa-mir-27 hsa-miR-27a-5p mir-27/5p -hsa-mir-27 hsa-miR-27a-3p mir-27/3p -hsa-mir-27 hsa-miR-27a mir-27/27a -hsa-mir-26b hsa-miR-26b-5p mir-26b/5p -hsa-mir-26b hsa-miR-26b-3p mir-26b/3p -hsa-mir-26b hsa-miR-26b mir-26b/26b -hsa-mir-26b hsa-miR-26b* mir-26b/26b* -hsa-mir-26a-2 hsa-miR-26a-5p mir-26a-2/5p -hsa-mir-26a-2 hsa-miR-26a-2-3p mir-26a-2/3p -hsa-mir-26a-2 hsa-miR-26a-2* mir-26a-2/2* -hsa-mir-196a-1 hsa-miR-196a mir-196a-1/196a -hsa-mir-26a-2 hsa-miR-26a mir-26a-2/26a -hsa-mir-26a-1 hsa-miR-26a-1-3p mir-26a-1/3p -hsa-mir-26a-1 hsa-miR-26a-5p mir-26a-1/5p -hsa-mir-26a-1 hsa-miR-26a mir-26a-1/26a -hsa-mir-197 hsa-miR-197 mir-197/197 -hsa-mir-1972-1 hsa-miR-1972 mir-1972-1/1972 -hsa-mir-1972-2 hsa-miR-1972 mir-1972-2/1972 -hsa-mir-1973 hsa-miR-1973 mir-1973/1973 -hsa-mir-1976 hsa-miR-1976 mir-1976/1976 -hsa-mir-198 hsa-miR-198 mir-198/198 -hsa-mir-26a-1 hsa-miR-26a-1* mir-26a-1/1* -hsa-mir-26a hsa-miR-26a-1-3p mir-26a/3p -hsa-mir-26a hsa-miR-26a-5p mir-26a/5p -hsa-mir-26a hsa-miR-26a mir-26a/26a -hsa-mir-2682 hsa-miR-2682-5p mir-2682/5p -hsa-mir-2682 hsa-miR-2682-3p mir-2682/3p -hsa-mir-2682 hsa-miR-2682 mir-2682/2682 -hsa-mir-2682 hsa-miR-2682* mir-2682/2682* -hsa-mir-2681 hsa-miR-2681-5p mir-2681/5p -hsa-mir-2681 hsa-miR-2681-3p mir-2681/3p -hsa-mir-2681 hsa-miR-2681* mir-2681/2681* -hsa-mir-2681 hsa-miR-2681 mir-2681/2681 -hsa-mir-25 hsa-miR-25-5p mir-25/5p -hsa-mir-25 hsa-miR-25-3p mir-25/3p -hsa-mir-25 hsa-miR-25* mir-25/25* -hsa-mir-25 hsa-miR-25 mir-25/25 -hsa-mir-2467 hsa-miR-2467-5p mir-2467/5p -hsa-mir-2467 hsa-miR-2467-3p mir-2467/3p -hsa-mir-24-2 hsa-miR-24-2-5p mir-24-2/5p -hsa-mir-24-2 hsa-miR-24-3p mir-24-2/3p -hsa-mir-24-2 hsa-miR-24-2* mir-24-2/2* -hsa-mir-24-2 hsa-miR-24 mir-24-2/24 -hsa-mir-2052 hsa-miR-2052 mir-2052/2052 -hsa-mir-2053 hsa-miR-2053 mir-2053/2053 -hsa-mir-2054 hsa-miR-2054 mir-2054/2054 -hsa-mir-206 hsa-miR-206 mir-206/206 -hsa-mir-24-1 hsa-miR-24-1-5p mir-24-1/5p -hsa-mir-24-1 hsa-miR-189 mir-24-1/189 -hsa-mir-24-1 hsa-miR-24-3p mir-24-1/3p -hsa-mir-24-1 hsa-miR-24-1* mir-24-1/1* -hsa-mir-24-1 hsa-miR-24 mir-24-1/24 -hsa-mir-23b hsa-miR-23b-5p mir-23b/5p -hsa-mir-23b hsa-miR-23b-3p mir-23b/3p -hsa-mir-23b hsa-miR-23b* mir-23b/23b* -hsa-mir-23b hsa-miR-23b mir-23b/23b -hsa-mir-211 hsa-miR-211 mir-211/211 -hsa-mir-2110 hsa-miR-2110 mir-2110/2110 -hsa-mir-2113 hsa-miR-2113 mir-2113/2113 -hsa-mir-23a hsa-miR-23a-5p mir-23a/5p -hsa-mir-23a hsa-miR-23a* mir-23a/23a* -hsa-mir-23a hsa-miR-23a mir-23a/23a -hsa-mir-2355 hsa-miR-2355-5p mir-2355/5p -hsa-mir-2355 hsa-miR-2355 mir-2355/2355 -hsa-mir-2355 hsa-miR-2355-3p mir-2355/3p -hsa-mir-2117 hsa-miR-2117 mir-2117/2117 -hsa-mir-2277 hsa-miR-2277-5p mir-2277/5p -hsa-mir-2277 hsa-miR-2277-3p mir-2277/3p -hsa-mir-224 hsa-miR-224-5p mir-224/5p -hsa-mir-224 hsa-miR-224-3p mir-224/3p -hsa-mir-224 hsa-miR-224 mir-224/224 -hsa-mir-224 hsa-miR-224* mir-224/224* -hsa-mir-223 hsa-miR-223-5p mir-223/5p -hsa-mir-223 hsa-miR-223-3p mir-223/3p -hsa-mir-223 hsa-miR-223* mir-223/223* -hsa-mir-223 hsa-miR-223 mir-223/223 -hsa-mir-222 hsa-miR-222-5p mir-222/5p -hsa-mir-222 hsa-miR-222-3p mir-222/3p -hsa-mir-222 hsa-miR-222* mir-222/222* -hsa-mir-222 hsa-miR-222 mir-222/222 -hsa-mir-221 hsa-miR-221-5p mir-221/5p -hsa-mir-221 hsa-miR-221-3p mir-221/3p -hsa-mir-221 hsa-miR-221* mir-221/221* -hsa-mir-221 hsa-miR-221 mir-221/221 -hsa-mir-22 hsa-miR-22-5p mir-22/5p -hsa-mir-22 hsa-miR-22-3p mir-22/3p -hsa-mir-22 hsa-miR-22* mir-22/22* -hsa-mir-22 hsa-miR-22 mir-22/22 -hsa-mir-219b hsa-miR-219b-5p mir-219b/5p -hsa-mir-2276 hsa-miR-2276 mir-2276/2276 -hsa-mir-219b hsa-miR-219b-3p mir-219b/3p -hsa-mir-219a-2 hsa-miR-219a-5p mir-219a-2/5p -hsa-mir-2278 hsa-miR-2278 mir-2278/2278 -hsa-mir-219a-2 hsa-miR-219a-2-3p mir-219a-2/3p -hsa-mir-219a-1 hsa-miR-219a-5p mir-219a-1/5p -hsa-mir-2392 hsa-miR-2392 mir-2392/2392 -hsa-mir-219a-1 hsa-miR-219 mir-219a-1/219 -hsa-mir-219a-1 hsa-miR-219a-1-3p mir-219a-1/3p -hsa-mir-219-2 hsa-miR-219-2-3p mir-219-2/3p -hsa-mir-219-2 hsa-miR-219-5p mir-219-2/5p -hsa-mir-23c hsa-miR-23c mir-23c/23c -hsa-mir-219-1 hsa-miR-219-5p mir-219-1/5p -hsa-mir-219-1 hsa-miR-219-1-3p mir-219-1/3p -hsa-mir-219 hsa-miR-219a-5p mir-219/5p -hsa-mir-219 hsa-miR-219 mir-219/219 -hsa-mir-219 hsa-miR-219a-1-3p mir-219/3p -hsa-mir-218-2 hsa-miR-218-5p mir-218-2/5p -hsa-mir-218-2 hsa-miR-218-2-3p mir-218-2/3p -hsa-mir-218-2 hsa-miR-218-2* mir-218-2/2* -hsa-mir-218-2 hsa-miR-218 mir-218-2/218 -hsa-mir-218-1 hsa-miR-218-5p mir-218-1/5p -hsa-mir-218-1 hsa-miR-218-1-3p mir-218-1/3p -hsa-mir-218-1 hsa-miR-218 mir-218-1/218 -hsa-mir-218-1 hsa-miR-218-1* mir-218-1/1* -hsa-mir-217 hsa-miR-217-5p mir-217/5p -hsa-mir-217 hsa-miR-217-3p mir-217/3p -hsa-mir-217 hsa-miR-217 mir-217/217 -hsa-mir-216b hsa-miR-216b-5p mir-216b/5p -hsa-mir-216b hsa-miR-216b-3p mir-216b/3p -hsa-mir-216b hsa-miR-216b mir-216b/216b -hsa-mir-216a hsa-miR-216a-5p mir-216a/5p -hsa-mir-216a hsa-miR-216 mir-216a/216 -hsa-mir-216a hsa-miR-216a-3p mir-216a/3p -hsa-mir-216a hsa-miR-216a mir-216a/216a -hsa-mir-216 hsa-miR-216a-5p mir-216/5p -hsa-mir-2861 hsa-miR-2861 mir-2861/2861 -hsa-mir-2909 hsa-miR-2909 mir-2909/2909 -hsa-mir-216 hsa-miR-216 mir-216/216 -hsa-mir-216 hsa-miR-216a mir-216/216a -hsa-mir-216 hsa-miR-216a-3p mir-216/3p -hsa-mir-215 hsa-miR-215-5p mir-215/5p -hsa-mir-297 hsa-miR-297 mir-297/297 -hsa-mir-298 hsa-miR-298 mir-298/298 -hsa-mir-215 hsa-miR-215-3p mir-215/3p -hsa-mir-215 hsa-miR-215 mir-215/215 -hsa-mir-214 hsa-miR-214-5p mir-214/5p -hsa-mir-214 hsa-miR-214-3p mir-214/3p -hsa-mir-214 hsa-miR-214* mir-214/214* -hsa-mir-214 hsa-miR-214 mir-214/214 -hsa-mir-213 hsa-miR-181a-5p mir-213/5p -hsa-mir-213 hsa-miR-181a mir-213/181a -hsa-mir-213 hsa-miR-181a-3p mir-213/3p -hsa-mir-213 hsa-miR-213 mir-213/213 -hsa-mir-300 hsa-miR-300 mir-300/300 -hsa-mir-212 hsa-miR-212-5p mir-212/5p -hsa-mir-212 hsa-miR-212-3p mir-212/3p -hsa-mir-212 hsa-miR-212 mir-212/212 -hsa-mir-2116 hsa-miR-2116 mir-2116/2116 -hsa-mir-2116 hsa-miR-2116* mir-2116/2116* -hsa-mir-2115 hsa-miR-2115 mir-2115/2115 -hsa-mir-2115 hsa-miR-2115* mir-2115/2115* -hsa-mir-2114 hsa-miR-2114 mir-2114/2114 -hsa-mir-2114 hsa-miR-2114* mir-2114/2114* -hsa-mir-210 hsa-miR-210-5p mir-210/5p -hsa-mir-302e hsa-miR-302e mir-302e/302e -hsa-mir-302f hsa-miR-302f mir-302f/302f -hsa-mir-210 hsa-miR-210-3p mir-210/3p -hsa-mir-210 hsa-miR-210 mir-210/210 -hsa-mir-21 hsa-miR-21 mir-21/21 -hsa-mir-21 hsa-miR-21* mir-21/21* -hsa-mir-20b hsa-miR-20b-5p mir-20b/5p -hsa-mir-20b hsa-miR-20b-3p mir-20b/3p -hsa-mir-20b hsa-miR-20b mir-20b/20b -hsa-mir-20b hsa-miR-20b* mir-20b/20b* -hsa-mir-20a hsa-miR-20a-5p mir-20a/5p -hsa-mir-20a hsa-miR-20 mir-20a/20 -hsa-mir-20a hsa-miR-20a mir-20a/20a -hsa-mir-20a hsa-miR-20a* mir-20a/20a* -hsa-mir-208b hsa-miR-208b-5p mir-208b/5p -hsa-mir-208b hsa-miR-208b-3p mir-208b/3p -hsa-mir-208b hsa-miR-208b mir-208b/208b -hsa-mir-208a hsa-miR-208 mir-208a/208 -hsa-mir-208a hsa-miR-208a-5p mir-208a/5p -hsa-mir-208a hsa-miR-208a-3p mir-208a/3p -hsa-mir-208a hsa-miR-208a mir-208a/208a -hsa-mir-208 hsa-miR-208 mir-208/208 -hsa-mir-3115 hsa-miR-3115 mir-3115/3115 -hsa-mir-3116-1 hsa-miR-3116 mir-3116-1/3116 -hsa-mir-3116-2 hsa-miR-3116 mir-3116-2/3116 -hsa-mir-208 hsa-miR-208a-5p mir-208/5p -hsa-mir-208 hsa-miR-208a-3p mir-208/3p -hsa-mir-3118-1 hsa-miR-3118 mir-3118-1/3118 -hsa-mir-3118-2 hsa-miR-3118 mir-3118-2/3118 -hsa-mir-3118-3 hsa-miR-3118 mir-3118-3/3118 -hsa-mir-3118-4 hsa-miR-3118 mir-3118-4/3118 -hsa-mir-3118-5 hsa-miR-3118 mir-3118-5/3118 -hsa-mir-3118-6 hsa-miR-3118 mir-3118-6/3118 -hsa-mir-3119-1 hsa-miR-3119 mir-3119-1/3119 -hsa-mir-3119-2 hsa-miR-3119 mir-3119-2/3119 -hsa-mir-205 hsa-miR-205-5p mir-205/5p -hsa-mir-205 hsa-miR-205-3p mir-205/3p -hsa-mir-205 hsa-miR-205 mir-205/205 -hsa-mir-205 hsa-miR-205* mir-205/205* -hsa-mir-3122 hsa-miR-3122 mir-3122/3122 -hsa-mir-3123 hsa-miR-3123 mir-3123/3123 -hsa-mir-204 hsa-miR-204-5p mir-204/5p -hsa-mir-204 hsa-miR-204-3p mir-204/3p -hsa-mir-3125 hsa-miR-3125 mir-3125/3125 -hsa-mir-204 hsa-miR-204 mir-204/204 -hsa-mir-203b hsa-miR-203b-5p mir-203b/5p -hsa-mir-203b hsa-miR-3545-5p mir-203b/5p -hsa-mir-203b hsa-miR-203b-3p mir-203b/3p -hsa-mir-3128 hsa-miR-3128 mir-3128/3128 -hsa-mir-203b hsa-miR-3545-3p mir-203b/3p -hsa-mir-203a hsa-miR-203a-5p mir-203a/5p -hsa-mir-203a hsa-miR-203a-3p mir-203a/3p -hsa-mir-203a hsa-miR-203a mir-203a/203a -hsa-mir-203 hsa-miR-203a mir-203/203a -hsa-mir-203 hsa-miR-203a-3p mir-203/3p -hsa-mir-3131 hsa-miR-3131 mir-3131/3131 -hsa-mir-3132 hsa-miR-3132 mir-3132/3132 -hsa-mir-3133 hsa-miR-3133 mir-3133/3133 -hsa-mir-3134 hsa-miR-3134 mir-3134/3134 -hsa-mir-203 hsa-miR-203a-5p mir-203/5p -hsa-mir-3135b hsa-miR-3135b mir-3135b/3135b -hsa-mir-203 hsa-miR-203 mir-203/203 -hsa-mir-202 hsa-miR-202-5p mir-202/5p -hsa-mir-3137 hsa-miR-3137 mir-3137/3137 -hsa-mir-3138 hsa-miR-3138 mir-3138/3138 -hsa-mir-3139 hsa-miR-3139 mir-3139/3139 -hsa-mir-202 hsa-miR-202-3p mir-202/3p -hsa-mir-202 hsa-miR-202* mir-202/202* -hsa-mir-3141 hsa-miR-3141 mir-3141/3141 -hsa-mir-3142 hsa-miR-3142 mir-3142/3142 -hsa-mir-3143 hsa-miR-3143 mir-3143/3143 -hsa-mir-202 hsa-miR-202 mir-202/202 -hsa-mir-200c hsa-miR-200c-5p mir-200c/5p -hsa-mir-200c hsa-miR-200c-3p mir-200c/3p -hsa-mir-200c hsa-miR-200c* mir-200c/200c* -hsa-mir-3146 hsa-miR-3146 mir-3146/3146 -hsa-mir-3147 hsa-miR-3147 mir-3147/3147 -hsa-mir-3148 hsa-miR-3148 mir-3148/3148 -hsa-mir-3149 hsa-miR-3149 mir-3149/3149 -hsa-mir-200c hsa-miR-200c mir-200c/200c -hsa-mir-200b hsa-miR-200b-5p mir-200b/5p -hsa-mir-200b hsa-miR-200b-3p mir-200b/3p -hsa-mir-200b hsa-miR-200b* mir-200b/200b* -hsa-mir-200b hsa-miR-200b mir-200b/200b -hsa-mir-200a hsa-miR-200a-5p mir-200a/5p -hsa-mir-200a hsa-miR-200a-3p mir-200a/3p -hsa-mir-3153 hsa-miR-3153 mir-3153/3153 -hsa-mir-3154 hsa-miR-3154 mir-3154/3154 -hsa-mir-200a hsa-miR-200a* mir-200a/200a* -hsa-mir-3155b hsa-miR-3155b mir-3155b/3155b -hsa-mir-200a hsa-miR-200a mir-200a/200a -hsa-mir-20 hsa-miR-20a-5p mir-20/5p -hsa-mir-20 hsa-miR-20 mir-20/20 -hsa-mir-20 hsa-miR-20a mir-20/20a -hsa-mir-20 hsa-miR-20a-3p mir-20/3p -hsa-mir-1d hsa-miR-1-3p mir-1d/3p -hsa-mir-1d hsa-miR-1 mir-1d/1 -hsa-mir-1b hsa-miR-1-3p mir-1b/3p -hsa-mir-1b hsa-miR-1-5p mir-1b/5p -hsa-mir-19b-2 hsa-miR-19b-2-5p mir-19b-2/5p -hsa-mir-3159 hsa-miR-3159 mir-3159/3159 -hsa-mir-19b-2 hsa-miR-19b-3p mir-19b-2/3p -hsa-mir-19b-2 hsa-miR-19b-2* mir-19b-2/2* -hsa-mir-19b-2 hsa-miR-19b mir-19b-2/19b -hsa-mir-19b-1 hsa-miR-19b-1-5p mir-19b-1/5p -hsa-mir-3161 hsa-miR-3161 mir-3161/3161 -hsa-mir-19b-1 hsa-miR-19b-3p mir-19b-1/3p -hsa-mir-19b-1 hsa-miR-19b-1* mir-19b-1/1* -hsa-mir-3163 hsa-miR-3163 mir-3163/3163 -hsa-mir-3164 hsa-miR-3164 mir-3164/3164 -hsa-mir-3165 hsa-miR-3165 mir-3165/3165 -hsa-mir-3166 hsa-miR-3166 mir-3166/3166 -hsa-mir-3167 hsa-miR-3167 mir-3167/3167 -hsa-mir-3168 hsa-miR-3168 mir-3168/3168 -hsa-mir-3169 hsa-miR-3169 mir-3169/3169 -hsa-mir-3170 hsa-miR-3170 mir-3170/3170 -hsa-mir-3171 hsa-miR-3171 mir-3171/3171 -hsa-mir-19b-1 hsa-miR-19b mir-19b-1/19b -hsa-mir-19a hsa-miR-19a-5p mir-19a/5p -hsa-mir-3174 hsa-miR-3174 mir-3174/3174 -hsa-mir-3175 hsa-miR-3175 mir-3175/3175 -hsa-mir-3176 hsa-miR-3176 mir-3176/3176 -hsa-mir-19a hsa-miR-19a-3p mir-19a/3p -hsa-mir-19a hsa-miR-19a* mir-19a/19a* -hsa-mir-3178 hsa-miR-3178 mir-3178/3178 -hsa-mir-3179-1 hsa-miR-3179 mir-3179-1/3179 -hsa-mir-3179-2 hsa-miR-3179 mir-3179-2/3179 -hsa-mir-3179-3 hsa-miR-3179 mir-3179-3/3179 -hsa-mir-19a hsa-miR-19a mir-19a/19a -hsa-mir-199b hsa-miR-199b-5p mir-199b/5p -hsa-mir-199b hsa-miR-199b mir-199b/199b -hsa-mir-199b hsa-miR-199b-3p mir-199b/3p -hsa-mir-3180-4 hsa-miR-3180 mir-3180-4/3180 -hsa-mir-3180-5 hsa-miR-3180 mir-3180-5/3180 -hsa-mir-3181 hsa-miR-3181 mir-3181/3181 -hsa-mir-3182 hsa-miR-3182 mir-3182/3182 -hsa-mir-3183 hsa-miR-3183 mir-3183/3183 -hsa-mir-199a-2 hsa-miR-199a-5p mir-199a-2/5p -hsa-mir-3185 hsa-miR-3185 mir-3185/3185 -hsa-mir-199a-2 hsa-miR-199a mir-199a-2/199a -hsa-mir-199a-2 hsa-miR-199a-3p mir-199a-2/3p -hsa-mir-3188 hsa-miR-3188 mir-3188/3188 -hsa-mir-199a-1 hsa-miR-199a-5p mir-199a-1/5p -hsa-mir-199a-1 hsa-miR-199a mir-199a-1/199a -hsa-mir-3191 hsa-miR-3191 mir-3191/3191 -hsa-mir-3193 hsa-miR-3193 mir-3193/3193 -hsa-mir-199a-1 hsa-miR-199a-3p mir-199a-1/3p -hsa-mir-199-s hsa-miR-199a-5p mir-199-s/5p -hsa-mir-3195 hsa-miR-3195 mir-3195/3195 -hsa-mir-3196 hsa-miR-3196 mir-3196/3196 -hsa-mir-3197 hsa-miR-3197 mir-3197/3197 -hsa-mir-3198-1 hsa-miR-3198 mir-3198-1/3198 -hsa-mir-3198-2 hsa-miR-3198 mir-3198-2/3198 -hsa-mir-3199-1 hsa-miR-3199 mir-3199-1/3199 -hsa-mir-3199-2 hsa-miR-3199 mir-3199-2/3199 -hsa-mir-199-s hsa-miR-199a mir-199-s/199a -hsa-mir-199-s hsa-miR-199a-3p mir-199-s/3p -hsa-mir-196b hsa-miR-196b-5p mir-196b/5p -hsa-mir-196b hsa-miR-196b-3p mir-196b/3p -hsa-mir-3201 hsa-miR-3201 mir-3201/3201 -hsa-mir-3202-1 hsa-miR-3202 mir-3202-1/3202 -hsa-mir-3202-2 hsa-miR-3202 mir-3202-2/3202 -hsa-mir-196b hsa-miR-196b mir-196b/196b -hsa-mir-320b-1 hsa-miR-320b mir-320b-1/320b -hsa-mir-320b-2 hsa-miR-320b mir-320b-2/320b -hsa-mir-320c-1 hsa-miR-320c mir-320c-1/320c -hsa-mir-320c-2 hsa-miR-320c mir-320c-2/320c -hsa-mir-320d-1 hsa-miR-320d mir-320d-1/320d -hsa-mir-320d-2 hsa-miR-320d mir-320d-2/320d -hsa-mir-320e hsa-miR-320e mir-320e/320e -hsa-mir-196b hsa-miR-196b* mir-196b/196b* -hsa-mir-196a-2 hsa-miR-196a-5p mir-196a-2/5p -hsa-mir-196a-2 hsa-miR-196a-3p mir-196a-2/3p -hsa-mir-196a-2 hsa-miR-196a* mir-196a-2/196a* -hsa-mir-196a-2 hsa-miR-196a mir-196a-2/196a -hsa-mir-196-2 hsa-miR-196a-5p mir-196-2/5p -hsa-mir-325 hsa-miR-325 mir-325/325 -hsa-mir-326 hsa-miR-326 mir-326/326 -hsa-mir-196-2 hsa-miR-196a mir-196-2/196a -hsa-mir-196-2 hsa-miR-196a-3p mir-196-2/3p -hsa-mir-196-1 hsa-miR-196a-5p mir-196-1/5p -hsa-mir-196-1 hsa-miR-196a mir-196-1/196a -hsa-mir-196-1 hsa-miR-196a-1-3p mir-196-1/3p -hsa-mir-196 hsa-miR-196a-5p mir-196/5p -hsa-mir-196 hsa-miR-196a mir-196/196a -hsa-mir-196 hsa-miR-196a-1-3p mir-196/3p -hsa-mir-195 hsa-miR-195-5p mir-195/5p -hsa-mir-195 hsa-miR-195-3p mir-195/3p -hsa-mir-195 hsa-miR-195 mir-195/195 -hsa-mir-195 hsa-miR-195* mir-195/195* -hsa-mir-194-2 hsa-miR-194-5p mir-194-2/5p -hsa-mir-194-2 hsa-miR-194-3p mir-194-2/3p -hsa-mir-194-2 hsa-miR-194* mir-194-2/194* -hsa-mir-194-2 hsa-miR-194 mir-194-2/194 -hsa-mir-194-1 hsa-miR-194-5p mir-194-1/5p -hsa-mir-194-1 hsa-miR-194 mir-194-1/194 -hsa-mir-194 hsa-miR-194-5p mir-194/5p -hsa-mir-194 hsa-miR-194 mir-194/194 -hsa-mir-193b hsa-miR-193b-5p mir-193b/5p -hsa-mir-193b hsa-miR-193b-3p mir-193b/3p -hsa-mir-193b hsa-miR-193b* mir-193b/193b* -hsa-mir-193b hsa-miR-193b mir-193b/193b -hsa-mir-346 hsa-miR-346 mir-346/346 -hsa-mir-193a hsa-miR-193a-5p mir-193a/5p -hsa-mir-193a hsa-miR-193a-3p mir-193a/3p -hsa-mir-193 hsa-miR-193a-5p mir-193/5p -hsa-mir-193 hsa-miR-193a-3p mir-193/3p -hsa-mir-193 hsa-miR-193 mir-193/193 -hsa-mir-193 hsa-miR-193a mir-193/193a -hsa-mir-192 hsa-miR-192-5p mir-192/5p -hsa-mir-192 hsa-miR-192-3p mir-192/3p -hsa-mir-192 hsa-miR-192 mir-192/192 -hsa-mir-192 hsa-miR-192* mir-192/192* -hsa-mir-1915 hsa-miR-1915-5p mir-1915/5p -hsa-mir-1915 hsa-miR-1915-3p mir-1915/3p -hsa-mir-1915 hsa-miR-1915* mir-1915/1915* -hsa-mir-1915 hsa-miR-1915 mir-1915/1915 -hsa-mir-3609 hsa-miR-3609 mir-3609/3609 -hsa-mir-1914 hsa-miR-1914-5p mir-1914/5p -hsa-mir-1914 hsa-miR-1914-3p mir-1914/3p -hsa-mir-3610 hsa-miR-3610 mir-3610/3610 -hsa-mir-3611 hsa-miR-3611 mir-3611/3611 -hsa-mir-3612 hsa-miR-3612 mir-3612/3612 -hsa-mir-1914 hsa-miR-1914 mir-1914/1914 -hsa-mir-1914 hsa-miR-1914* mir-1914/1914* -hsa-mir-1912 hsa-miR-1912-5p mir-1912/5p -hsa-mir-1912 hsa-miR-1912-3p mir-1912/3p -hsa-mir-3615 hsa-miR-3615 mir-3615/3615 -hsa-mir-1912 hsa-miR-1912 mir-1912/1912 -hsa-mir-1911 hsa-miR-1911-5p mir-1911/5p -hsa-mir-1911 hsa-miR-1911-3p mir-1911/3p -hsa-mir-3618 hsa-miR-3618 mir-3618/3618 -hsa-mir-1911 hsa-miR-1911 mir-1911/1911 -hsa-mir-1911 hsa-miR-1911* mir-1911/1911* -hsa-mir-1910 hsa-miR-1910-5p mir-1910/5p -hsa-mir-1910 hsa-miR-1910-3p mir-1910/3p -hsa-mir-1910 hsa-miR-1910 mir-1910/1910 -hsa-mir-3621 hsa-miR-3621 mir-3621/3621 -hsa-mir-191 hsa-miR-191-5p mir-191/5p -hsa-mir-191 hsa-miR-191-3p mir-191/3p -hsa-mir-191 hsa-miR-191 mir-191/191 -hsa-mir-191 hsa-miR-191* mir-191/191* -hsa-mir-190b hsa-miR-190b-5p mir-190b/5p -hsa-mir-190b hsa-miR-190b-3p mir-190b/3p -hsa-mir-3646 hsa-miR-3646 mir-3646/3646 -hsa-mir-190b hsa-miR-190b mir-190b/190b -hsa-mir-190a hsa-miR-190a-5p mir-190a/5p -hsa-mir-3648 hsa-miR-3648 mir-3648/3648 -hsa-mir-3649 hsa-miR-3649 mir-3649/3649 -hsa-mir-365-1 hsa-miR-365 mir-365-1/365 -hsa-mir-190a hsa-miR-190 mir-190a/190 -hsa-mir-190a hsa-miR-190a-3p mir-190a/3p -hsa-mir-3650 hsa-miR-3650 mir-3650/3650 -hsa-mir-3651 hsa-miR-3651 mir-3651/3651 -hsa-mir-3652 hsa-miR-3652 mir-3652/3652 -hsa-mir-1909 hsa-miR-1909-5p mir-1909/5p -hsa-mir-3654 hsa-miR-3654 mir-3654/3654 -hsa-mir-3655 hsa-miR-3655 mir-3655/3655 -hsa-mir-3656 hsa-miR-3656 mir-3656/3656 -hsa-mir-3657 hsa-miR-3657 mir-3657/3657 -hsa-mir-3658 hsa-miR-3658 mir-3658/3658 -hsa-mir-3659 hsa-miR-3659 mir-3659/3659 -hsa-mir-3660 hsa-miR-3660 mir-3660/3660 -hsa-mir-3661 hsa-miR-3661 mir-3661/3661 -hsa-mir-3662 hsa-miR-3662 mir-3662/3662 -hsa-mir-1909 hsa-miR-1909-3p mir-1909/3p -hsa-mir-1909 hsa-miR-1909* mir-1909/1909* -hsa-mir-1909 hsa-miR-1909 mir-1909/1909 -hsa-mir-1908 hsa-miR-1908-5p mir-1908/5p -hsa-mir-3665 hsa-miR-3665 mir-3665/3665 -hsa-mir-3666 hsa-miR-3666 mir-3666/3666 -hsa-mir-1908 hsa-miR-1908-3p mir-1908/3p -hsa-mir-1908 hsa-miR-1908 mir-1908/1908 -hsa-mir-3668 hsa-miR-3668 mir-3668/3668 -hsa-mir-3669 hsa-miR-3669 mir-3669/3669 -hsa-mir-190 hsa-miR-190a-5p mir-190/5p -hsa-mir-190 hsa-miR-190a-3p mir-190/3p -hsa-mir-3670 hsa-miR-3670 mir-3670/3670 -hsa-mir-3671 hsa-miR-3671 mir-3671/3671 -hsa-mir-3672 hsa-miR-3672 mir-3672/3672 -hsa-mir-3673 hsa-miR-3673 mir-3673/3673 -hsa-mir-3674 hsa-miR-3674 mir-3674/3674 -hsa-mir-190 hsa-miR-190 mir-190/190 -hsa-mir-18b hsa-miR-18b-5p mir-18b/5p -hsa-mir-3676 hsa-miR-3676 mir-3676/3676 -hsa-mir-18b hsa-miR-18b-3p mir-18b/3p -hsa-mir-18b hsa-miR-18b mir-18b/18b -hsa-mir-18b hsa-miR-18b* mir-18b/18b* -hsa-mir-18a hsa-miR-18a-5p mir-18a/5p -hsa-mir-18a hsa-miR-18;hsa-miR-18a mir-18a/18;18a -hsa-mir-18a hsa-miR-18a-3p mir-18a/3p -hsa-mir-18a hsa-miR-18a mir-18a/18a -hsa-mir-18a hsa-miR-18a* mir-18a/18a* -hsa-mir-188 hsa-miR-188-5p mir-188/5p -hsa-mir-188 hsa-miR-188 mir-188/188 -hsa-mir-188 hsa-miR-188-3p mir-188/3p -hsa-mir-3683 hsa-miR-3683 mir-3683/3683 -hsa-mir-3684 hsa-miR-3684 mir-3684/3684 -hsa-mir-3685 hsa-miR-3685 mir-3685/3685 -hsa-mir-3686 hsa-miR-3686 mir-3686/3686 -hsa-mir-3687 hsa-miR-3687 mir-3687/3687 -hsa-mir-187 hsa-miR-187-5p mir-187/5p -hsa-mir-187 hsa-miR-187-3p mir-187/3p -hsa-mir-187 hsa-miR-187* mir-187/187* -hsa-mir-187 hsa-miR-187 mir-187/187 -hsa-mir-186 hsa-miR-186-5p mir-186/5p -hsa-mir-186 hsa-miR-186-3p mir-186/3p -hsa-mir-186 hsa-miR-186 mir-186/186 -hsa-mir-3689c hsa-miR-3689c mir-3689c/3689c -hsa-mir-3689d-1 hsa-miR-3689d mir-3689d-1/3689d -hsa-mir-3689d-2 hsa-miR-3689d mir-3689d-2/3689d -hsa-mir-3689e hsa-miR-3689e mir-3689e/3689e -hsa-mir-3689f hsa-miR-3689f mir-3689f/3689f -hsa-mir-186 hsa-miR-186* mir-186/186* -hsa-mir-185 hsa-miR-185-5p mir-185/5p -hsa-mir-3690 hsa-miR-3690 mir-3690/3690 -hsa-mir-185 hsa-miR-185-3p mir-185/3p -hsa-mir-185 hsa-miR-185 mir-185/185 -hsa-mir-185 hsa-miR-185* mir-185/185* -hsa-mir-183 hsa-miR-183-5p mir-183/5p -hsa-mir-183 hsa-miR-183-3p mir-183/3p -hsa-mir-183 hsa-miR-183 mir-183/183 -hsa-mir-183 hsa-miR-183* mir-183/183* -hsa-mir-3713 hsa-miR-3713 mir-3713/3713 -hsa-mir-3714 hsa-miR-3714 mir-3714/3714 -hsa-mir-182-as hsa-miR-182-3p mir-182-as/3p -hsa-mir-182-as hsa-miR-182-5p mir-182-as/5p -hsa-mir-182-as hsa-miR-182 mir-182-as/182 -hsa-mir-182 hsa-miR-182-3p mir-182/3p -hsa-mir-182 hsa-miR-182-5p mir-182/5p -hsa-mir-182 hsa-miR-182 mir-182/182 -hsa-mir-182 hsa-miR-182* mir-182/182* -hsa-mir-181d hsa-miR-181d-5p mir-181d/5p -hsa-mir-181d hsa-miR-181d-3p mir-181d/3p -hsa-mir-181d hsa-miR-181d mir-181d/181d -hsa-mir-181c hsa-miR-181c-5p mir-181c/5p -hsa-mir-181c hsa-miR-181c-3p mir-181c/3p -hsa-mir-181c hsa-miR-181c mir-181c/181c -hsa-mir-181c hsa-miR-181c* mir-181c/181c* -hsa-mir-181b-2 hsa-miR-181b-5p mir-181b-2/5p -hsa-mir-181b-2 hsa-miR-181b-2-3p mir-181b-2/3p -hsa-mir-181b-2 hsa-miR-181b mir-181b-2/181b -hsa-mir-181a-2 hsa-miR-181a-5p mir-181a-2/5p -hsa-mir-181a-2 hsa-miR-181a-2-3p mir-181a-2/3p -hsa-mir-181a-2 hsa-miR-181a mir-181a-2/181a -hsa-mir-378b hsa-miR-378b mir-378b/378b -hsa-mir-378c hsa-miR-378c mir-378c/378c -hsa-mir-378d-1 hsa-miR-378d mir-378d-1/378d -hsa-mir-378d-2 hsa-miR-378d mir-378d-2/378d -hsa-mir-378e hsa-miR-378e mir-378e/378e -hsa-mir-378f hsa-miR-378f mir-378f/378f -hsa-mir-378g hsa-miR-378g mir-378g/378g -hsa-mir-378h hsa-miR-378h mir-378h/378h -hsa-mir-378i hsa-miR-378i mir-378i/378i -hsa-mir-181a-2 hsa-miR-181a-2* mir-181a-2/2* -hsa-mir-181a-1 hsa-miR-181a-5p mir-181a-1/5p -hsa-mir-181a-1 hsa-miR-181a-3p mir-181a-1/3p -hsa-mir-181a-1 hsa-miR-213 mir-181a-1/213 -hsa-mir-181a-1 hsa-miR-181a* mir-181a-1/181a* -hsa-mir-181a-1 hsa-miR-181a mir-181a-1/181a -hsa-mir-18 hsa-miR-18a-5p mir-18/5p -hsa-mir-384 hsa-miR-384 mir-384/384 -hsa-mir-3907 hsa-miR-3907 mir-3907/3907 -hsa-mir-3908 hsa-miR-3908 mir-3908/3908 -hsa-mir-3909 hsa-miR-3909 mir-3909/3909 -hsa-mir-3910-1 hsa-miR-3910 mir-3910-1/3910 -hsa-mir-3910-2 hsa-miR-3910 mir-3910-2/3910 -hsa-mir-3911 hsa-miR-3911 mir-3911/3911 -hsa-mir-18 hsa-miR-18;hsa-miR-18a mir-18/18;18a -hsa-mir-18 hsa-miR-18a-3p mir-18/3p -hsa-mir-17 hsa-miR-17 mir-17/17 -hsa-mir-17 hsa-miR-17* mir-17/17* -hsa-mir-3914-1 hsa-miR-3914 mir-3914-1/3914 -hsa-mir-3914-2 hsa-miR-3914 mir-3914-2/3914 -hsa-mir-3915 hsa-miR-3915 mir-3915/3915 -hsa-mir-3916 hsa-miR-3916 mir-3916/3916 -hsa-mir-3917 hsa-miR-3917 mir-3917/3917 -hsa-mir-3918 hsa-miR-3918 mir-3918/3918 -hsa-mir-3919 hsa-miR-3919 mir-3919/3919 -hsa-mir-3920 hsa-miR-3920 mir-3920/3920 -hsa-mir-3921 hsa-miR-3921 mir-3921/3921 -hsa-mir-16-2 hsa-miR-16-2* mir-16-2/2* -hsa-mir-16-2 hsa-miR-16 mir-16-2/16 -hsa-mir-3923 hsa-miR-3923 mir-3923/3923 -hsa-mir-3924 hsa-miR-3924 mir-3924/3924 -hsa-mir-16-13 hsa-miR-16-5p mir-16-13/5p -hsa-mir-16-13 hsa-miR-16 mir-16-13/16 -hsa-mir-3926-1 hsa-miR-3926 mir-3926-1/3926 -hsa-mir-3926-2 hsa-miR-3926 mir-3926-2/3926 -hsa-mir-16-13 hsa-miR-16-1-3p mir-16-13/3p -hsa-mir-16-1 hsa-miR-16-5p mir-16-1/5p -hsa-mir-3929 hsa-miR-3929 mir-3929/3929 -hsa-mir-16-1 hsa-miR-16-1-3p mir-16-1/3p -hsa-mir-3935 hsa-miR-3935 mir-3935/3935 -hsa-mir-3936 hsa-miR-3936 mir-3936/3936 -hsa-mir-3937 hsa-miR-3937 mir-3937/3937 -hsa-mir-3938 hsa-miR-3938 mir-3938/3938 -hsa-mir-3939 hsa-miR-3939 mir-3939/3939 -hsa-mir-16-1 hsa-miR-16 mir-16-1/16 -hsa-mir-16-1 hsa-miR-16-1* mir-16-1/1* -hsa-mir-3941 hsa-miR-3941 mir-3941/3941 -hsa-mir-16 hsa-miR-16-5p mir-16/5p -hsa-mir-16 hsa-miR-16 mir-16/16 -hsa-mir-3943 hsa-miR-3943 mir-3943/3943 -hsa-mir-16 hsa-miR-16-1-3p mir-16/3p -hsa-mir-15b hsa-miR-15b-5p mir-15b/5p -hsa-mir-3945 hsa-miR-3945 mir-3945/3945 -hsa-mir-3960 hsa-miR-3960 mir-3960/3960 -hsa-mir-3972 hsa-miR-3972 mir-3972/3972 -hsa-mir-3973 hsa-miR-3973 mir-3973/3973 -hsa-mir-3974 hsa-miR-3974 mir-3974/3974 -hsa-mir-3975 hsa-miR-3975 mir-3975/3975 -hsa-mir-3976 hsa-miR-3976 mir-3976/3976 -hsa-mir-3977 hsa-miR-3977 mir-3977/3977 -hsa-mir-3978 hsa-miR-3978 mir-3978/3978 -hsa-mir-15b hsa-miR-15b-3p mir-15b/3p -hsa-mir-15b hsa-miR-15b mir-15b/15b -hsa-mir-15b hsa-miR-15b* mir-15b/15b* -hsa-mir-15a hsa-miR-15a-5p mir-15a/5p -hsa-mir-15a hsa-miR-15a-3p mir-15a/3p -hsa-mir-15a hsa-miR-15a mir-15a/15a -hsa-mir-421 hsa-miR-421 mir-421/421 -hsa-mir-422a hsa-miR-422a mir-422a/422a -hsa-mir-15a hsa-miR-15a* mir-15a/15a* -hsa-mir-155 hsa-miR-155-5p mir-155/5p -hsa-mir-155 hsa-miR-155-3p mir-155/3p -hsa-mir-155 hsa-miR-155 mir-155/155 -hsa-mir-155 hsa-miR-155* mir-155/155* -hsa-mir-154 hsa-miR-154-5p mir-154/5p -hsa-mir-4251 hsa-miR-4251 mir-4251/4251 -hsa-mir-4252 hsa-miR-4252 mir-4252/4252 -hsa-mir-4253 hsa-miR-4253 mir-4253/4253 -hsa-mir-4254 hsa-miR-4254 mir-4254/4254 -hsa-mir-4255 hsa-miR-4255 mir-4255/4255 -hsa-mir-4256 hsa-miR-4256 mir-4256/4256 -hsa-mir-4257 hsa-miR-4257 mir-4257/4257 -hsa-mir-4258 hsa-miR-4258 mir-4258/4258 -hsa-mir-4259 hsa-miR-4259 mir-4259/4259 -hsa-mir-4260 hsa-miR-4260 mir-4260/4260 -hsa-mir-4261 hsa-miR-4261 mir-4261/4261 -hsa-mir-4262 hsa-miR-4262 mir-4262/4262 -hsa-mir-4263 hsa-miR-4263 mir-4263/4263 -hsa-mir-4264 hsa-miR-4264 mir-4264/4264 -hsa-mir-4265 hsa-miR-4265 mir-4265/4265 -hsa-mir-4266 hsa-miR-4266 mir-4266/4266 -hsa-mir-4267 hsa-miR-4267 mir-4267/4267 -hsa-mir-4268 hsa-miR-4268 mir-4268/4268 -hsa-mir-4269 hsa-miR-4269 mir-4269/4269 -hsa-mir-4270 hsa-miR-4270 mir-4270/4270 -hsa-mir-4271 hsa-miR-4271 mir-4271/4271 -hsa-mir-4272 hsa-miR-4272 mir-4272/4272 -hsa-mir-4273 hsa-miR-4273 mir-4273/4273 -hsa-mir-4274 hsa-miR-4274 mir-4274/4274 -hsa-mir-4275 hsa-miR-4275 mir-4275/4275 -hsa-mir-4276 hsa-miR-4276 mir-4276/4276 -hsa-mir-4277 hsa-miR-4277 mir-4277/4277 -hsa-mir-4278 hsa-miR-4278 mir-4278/4278 -hsa-mir-4279 hsa-miR-4279 mir-4279/4279 -hsa-mir-4280 hsa-miR-4280 mir-4280/4280 -hsa-mir-4281 hsa-miR-4281 mir-4281/4281 -hsa-mir-4282 hsa-miR-4282 mir-4282/4282 -hsa-mir-4283-1 hsa-miR-4283 mir-4283-1/4283 -hsa-mir-4283-2 hsa-miR-4283 mir-4283-2/4283 -hsa-mir-4284 hsa-miR-4284 mir-4284/4284 -hsa-mir-4285 hsa-miR-4285 mir-4285/4285 -hsa-mir-4286 hsa-miR-4286 mir-4286/4286 -hsa-mir-4287 hsa-miR-4287 mir-4287/4287 -hsa-mir-4288 hsa-miR-4288 mir-4288/4288 -hsa-mir-4289 hsa-miR-4289 mir-4289/4289 -hsa-mir-429 hsa-miR-429 mir-429/429 -hsa-mir-4290 hsa-miR-4290 mir-4290/4290 -hsa-mir-4291 hsa-miR-4291 mir-4291/4291 -hsa-mir-4292 hsa-miR-4292 mir-4292/4292 -hsa-mir-4293 hsa-miR-4293 mir-4293/4293 -hsa-mir-4294 hsa-miR-4294 mir-4294/4294 -hsa-mir-4295 hsa-miR-4295 mir-4295/4295 -hsa-mir-4296 hsa-miR-4296 mir-4296/4296 -hsa-mir-4297 hsa-miR-4297 mir-4297/4297 -hsa-mir-4298 hsa-miR-4298 mir-4298/4298 -hsa-mir-4299 hsa-miR-4299 mir-4299/4299 -hsa-mir-4300 hsa-miR-4300 mir-4300/4300 -hsa-mir-4301 hsa-miR-4301 mir-4301/4301 -hsa-mir-4302 hsa-miR-4302 mir-4302/4302 -hsa-mir-4303 hsa-miR-4303 mir-4303/4303 -hsa-mir-4304 hsa-miR-4304 mir-4304/4304 -hsa-mir-4305 hsa-miR-4305 mir-4305/4305 -hsa-mir-4306 hsa-miR-4306 mir-4306/4306 -hsa-mir-4307 hsa-miR-4307 mir-4307/4307 -hsa-mir-4308 hsa-miR-4308 mir-4308/4308 -hsa-mir-4309 hsa-miR-4309 mir-4309/4309 -hsa-mir-154 hsa-miR-154-3p mir-154/3p -hsa-mir-154 hsa-miR-154 mir-154/154 -hsa-mir-4310 hsa-miR-4310 mir-4310/4310 -hsa-mir-4311 hsa-miR-4311 mir-4311/4311 -hsa-mir-4312 hsa-miR-4312 mir-4312/4312 -hsa-mir-4313 hsa-miR-4313 mir-4313/4313 -hsa-mir-4314 hsa-miR-4314 mir-4314/4314 -hsa-mir-4315-1 hsa-miR-4315 mir-4315-1/4315 -hsa-mir-4315-2 hsa-miR-4315 mir-4315-2/4315 -hsa-mir-4316 hsa-miR-4316 mir-4316/4316 -hsa-mir-4317 hsa-miR-4317 mir-4317/4317 -hsa-mir-4318 hsa-miR-4318 mir-4318/4318 -hsa-mir-4319 hsa-miR-4319 mir-4319/4319 -hsa-mir-154 hsa-miR-154* mir-154/154* -hsa-mir-1537 hsa-miR-1537-5p mir-1537/5p -hsa-mir-4320 hsa-miR-4320 mir-4320/4320 -hsa-mir-4321 hsa-miR-4321 mir-4321/4321 -hsa-mir-4322 hsa-miR-4322 mir-4322/4322 -hsa-mir-4323 hsa-miR-4323 mir-4323/4323 -hsa-mir-4324 hsa-miR-4324 mir-4324/4324 -hsa-mir-4325 hsa-miR-4325 mir-4325/4325 -hsa-mir-4326 hsa-miR-4326 mir-4326/4326 -hsa-mir-4327 hsa-miR-4327 mir-4327/4327 -hsa-mir-4328 hsa-miR-4328 mir-4328/4328 -hsa-mir-4329 hsa-miR-4329 mir-4329/4329 -hsa-mir-1537 hsa-miR-1537-3p mir-1537/3p -hsa-mir-4330 hsa-miR-4330 mir-4330/4330 -hsa-mir-4417 hsa-miR-4417 mir-4417/4417 -hsa-mir-4418 hsa-miR-4418 mir-4418/4418 -hsa-mir-4419a hsa-miR-4419a mir-4419a/4419a -hsa-mir-4419b hsa-miR-4419b mir-4419b/4419b -hsa-mir-4420 hsa-miR-4420 mir-4420/4420 -hsa-mir-4421 hsa-miR-4421 mir-4421/4421 -hsa-mir-4422 hsa-miR-4422 mir-4422/4422 -hsa-mir-1537 hsa-miR-1537 mir-1537/1537 -hsa-mir-153-2 hsa-miR-153-5p mir-153-2/5p -hsa-mir-4424 hsa-miR-4424 mir-4424/4424 -hsa-mir-4425 hsa-miR-4425 mir-4425/4425 -hsa-mir-4426 hsa-miR-4426 mir-4426/4426 -hsa-mir-4427 hsa-miR-4427 mir-4427/4427 -hsa-mir-4428 hsa-miR-4428 mir-4428/4428 -hsa-mir-4429 hsa-miR-4429 mir-4429/4429 -hsa-mir-4430 hsa-miR-4430 mir-4430/4430 -hsa-mir-4431 hsa-miR-4431 mir-4431/4431 -hsa-mir-4432 hsa-miR-4432 mir-4432/4432 -hsa-mir-153-2 hsa-miR-153-3p mir-153-2/3p -hsa-mir-4434 hsa-miR-4434 mir-4434/4434 -hsa-mir-4435-1 hsa-miR-4435 mir-4435-1/4435 -hsa-mir-4435-2 hsa-miR-4435 mir-4435-2/4435 -hsa-mir-4436a hsa-miR-4436a mir-4436a/4436a -hsa-mir-153-2 hsa-miR-153 mir-153-2/153 -hsa-mir-153-1 hsa-miR-153-3p mir-153-1/3p -hsa-mir-4437 hsa-miR-4437 mir-4437/4437 -hsa-mir-4438 hsa-miR-4438 mir-4438/4438 -hsa-mir-4439 hsa-miR-4439 mir-4439/4439 -hsa-mir-4440 hsa-miR-4440 mir-4440/4440 -hsa-mir-4441 hsa-miR-4441 mir-4441/4441 -hsa-mir-4442 hsa-miR-4442 mir-4442/4442 -hsa-mir-4443 hsa-miR-4443 mir-4443/4443 -hsa-mir-4444 hsa-miR-4444 mir-4444/4444 -hsa-mir-153-1 hsa-miR-153 mir-153-1/153 -hsa-mir-152 hsa-miR-152-5p mir-152/5p -hsa-mir-152 hsa-miR-152-3p mir-152/3p -hsa-mir-152 hsa-miR-152 mir-152/152 -hsa-mir-4447 hsa-miR-4447 mir-4447/4447 -hsa-mir-4448 hsa-miR-4448 mir-4448/4448 -hsa-mir-4449 hsa-miR-4449 mir-4449/4449 -hsa-mir-4450 hsa-miR-4450 mir-4450/4450 -hsa-mir-4451 hsa-miR-4451 mir-4451/4451 -hsa-mir-4452 hsa-miR-4452 mir-4452/4452 -hsa-mir-4453 hsa-miR-4453 mir-4453/4453 -hsa-mir-4454 hsa-miR-4454 mir-4454/4454 -hsa-mir-4455 hsa-miR-4455 mir-4455/4455 -hsa-mir-4456 hsa-miR-4456 mir-4456/4456 -hsa-mir-4457 hsa-miR-4457 mir-4457/4457 -hsa-mir-4458 hsa-miR-4458 mir-4458/4458 -hsa-mir-4459 hsa-miR-4459 mir-4459/4459 -hsa-mir-4460 hsa-miR-4460 mir-4460/4460 -hsa-mir-4461 hsa-miR-4461 mir-4461/4461 -hsa-mir-4462 hsa-miR-4462 mir-4462/4462 -hsa-mir-4463 hsa-miR-4463 mir-4463/4463 -hsa-mir-4464 hsa-miR-4464 mir-4464/4464 -hsa-mir-4465 hsa-miR-4465 mir-4465/4465 -hsa-mir-4466 hsa-miR-4466 mir-4466/4466 -hsa-mir-4467 hsa-miR-4467 mir-4467/4467 -hsa-mir-4468 hsa-miR-4468 mir-4468/4468 -hsa-mir-4469 hsa-miR-4469 mir-4469/4469 -hsa-mir-4470 hsa-miR-4470 mir-4470/4470 -hsa-mir-4471 hsa-miR-4471 mir-4471/4471 -hsa-mir-4472-1 hsa-miR-4472 mir-4472-1/4472 -hsa-mir-4472-2 hsa-miR-4472 mir-4472-2/4472 -hsa-mir-4473 hsa-miR-4473 mir-4473/4473 -hsa-mir-151a hsa-miR-151a-5p mir-151a/5p -hsa-mir-151a hsa-miR-151-5p mir-151a/5p -hsa-mir-4475 hsa-miR-4475 mir-4475/4475 -hsa-mir-4476 hsa-miR-4476 mir-4476/4476 -hsa-mir-4477a hsa-miR-4477a mir-4477a/4477a -hsa-mir-4477b hsa-miR-4477b mir-4477b/4477b -hsa-mir-4478 hsa-miR-4478 mir-4478/4478 -hsa-mir-4479 hsa-miR-4479 mir-4479/4479 -hsa-mir-448 hsa-miR-448 mir-448/448 -hsa-mir-4480 hsa-miR-4480 mir-4480/4480 -hsa-mir-4481 hsa-miR-4481 mir-4481/4481 -hsa-mir-4482 hsa-miR-4482 mir-4482/4482 -hsa-mir-4483 hsa-miR-4483 mir-4483/4483 -hsa-mir-4484 hsa-miR-4484 mir-4484/4484 -hsa-mir-151a hsa-miR-151a-3p mir-151a/3p -hsa-mir-4486 hsa-miR-4486 mir-4486/4486 -hsa-mir-4487 hsa-miR-4487 mir-4487/4487 -hsa-mir-4488 hsa-miR-4488 mir-4488/4488 -hsa-mir-4489 hsa-miR-4489 mir-4489/4489 -hsa-mir-4490 hsa-miR-4490 mir-4490/4490 -hsa-mir-4491 hsa-miR-4491 mir-4491/4491 -hsa-mir-4492 hsa-miR-4492 mir-4492/4492 -hsa-mir-4493 hsa-miR-4493 mir-4493/4493 -hsa-mir-4494 hsa-miR-4494 mir-4494/4494 -hsa-mir-4495 hsa-miR-4495 mir-4495/4495 -hsa-mir-4496 hsa-miR-4496 mir-4496/4496 -hsa-mir-4497 hsa-miR-4497 mir-4497/4497 -hsa-mir-4498 hsa-miR-4498 mir-4498/4498 -hsa-mir-4499 hsa-miR-4499 mir-4499/4499 -hsa-mir-151a hsa-miR-151 mir-151a/151 -hsa-mir-151a hsa-miR-151-3p mir-151a/3p -hsa-mir-151 hsa-miR-151a-5p mir-151/5p -hsa-mir-151 hsa-miR-151-5p mir-151/5p -hsa-mir-151 hsa-miR-151a-3p mir-151/3p -hsa-mir-4500 hsa-miR-4500 mir-4500/4500 -hsa-mir-4501 hsa-miR-4501 mir-4501/4501 -hsa-mir-4502 hsa-miR-4502 mir-4502/4502 -hsa-mir-4503 hsa-miR-4503 mir-4503/4503 -hsa-mir-4504 hsa-miR-4504 mir-4504/4504 -hsa-mir-4505 hsa-miR-4505 mir-4505/4505 -hsa-mir-4506 hsa-miR-4506 mir-4506/4506 -hsa-mir-4507 hsa-miR-4507 mir-4507/4507 -hsa-mir-4508 hsa-miR-4508 mir-4508/4508 -hsa-mir-4509-1 hsa-miR-4509 mir-4509-1/4509 -hsa-mir-4509-2 hsa-miR-4509 mir-4509-2/4509 -hsa-mir-4509-3 hsa-miR-4509 mir-4509-3/4509 -hsa-mir-151 hsa-miR-151 mir-151/151 -hsa-mir-151 hsa-miR-151-3p mir-151/3p -hsa-mir-150 hsa-miR-150-5p mir-150/5p -hsa-mir-4510 hsa-miR-4510 mir-4510/4510 -hsa-mir-4511 hsa-miR-4511 mir-4511/4511 -hsa-mir-4512 hsa-miR-4512 mir-4512/4512 -hsa-mir-4513 hsa-miR-4513 mir-4513/4513 -hsa-mir-4514 hsa-miR-4514 mir-4514/4514 -hsa-mir-4515 hsa-miR-4515 mir-4515/4515 -hsa-mir-4516 hsa-miR-4516 mir-4516/4516 -hsa-mir-4517 hsa-miR-4517 mir-4517/4517 -hsa-mir-4518 hsa-miR-4518 mir-4518/4518 -hsa-mir-4519 hsa-miR-4519 mir-4519/4519 -hsa-mir-451b hsa-miR-451b mir-451b/451b -hsa-mir-150 hsa-miR-150-3p mir-150/3p -hsa-mir-150 hsa-miR-150 mir-150/150 -hsa-mir-150 hsa-miR-150* mir-150/150* -hsa-mir-15 hsa-miR-15a-5p mir-15/5p -hsa-mir-15 hsa-miR-15a mir-15/15a -hsa-mir-15 hsa-miR-15a-3p mir-15/3p -hsa-mir-4521 hsa-miR-4521 mir-4521/4521 -hsa-mir-4522 hsa-miR-4522 mir-4522/4522 -hsa-mir-4523 hsa-miR-4523 mir-4523/4523 -hsa-mir-149 hsa-miR-149-5p mir-149/5p -hsa-mir-149 hsa-miR-149-3p mir-149/3p -hsa-mir-4525 hsa-miR-4525 mir-4525/4525 -hsa-mir-4526 hsa-miR-4526 mir-4526/4526 -hsa-mir-4527 hsa-miR-4527 mir-4527/4527 -hsa-mir-4528 hsa-miR-4528 mir-4528/4528 -hsa-mir-149 hsa-miR-149 mir-149/149 -hsa-mir-149 hsa-miR-149* mir-149/149* -hsa-mir-4530 hsa-miR-4530 mir-4530/4530 -hsa-mir-4531 hsa-miR-4531 mir-4531/4531 -hsa-mir-4532 hsa-miR-4532 mir-4532/4532 -hsa-mir-4533 hsa-miR-4533 mir-4533/4533 -hsa-mir-4534 hsa-miR-4534 mir-4534/4534 -hsa-mir-4535 hsa-miR-4535 mir-4535/4535 -hsa-mir-148b hsa-miR-148b-5p mir-148b/5p -hsa-mir-4537 hsa-miR-4537 mir-4537/4537 -hsa-mir-4538 hsa-miR-4538 mir-4538/4538 -hsa-mir-4539 hsa-miR-4539 mir-4539/4539 -hsa-mir-148b hsa-miR-148b-3p mir-148b/3p -hsa-mir-148b hsa-miR-148b* mir-148b/148b* -hsa-mir-4540 hsa-miR-4540 mir-4540/4540 -hsa-mir-148b hsa-miR-148b mir-148b/148b -hsa-mir-148a hsa-miR-148 mir-148a/148 -hsa-mir-148a hsa-miR-148a-5p mir-148a/5p -hsa-mir-148a hsa-miR-148a-3p mir-148a/3p -hsa-mir-148a hsa-miR-148a* mir-148a/148a* -hsa-mir-4634 hsa-miR-4634 mir-4634/4634 -hsa-mir-4635 hsa-miR-4635 mir-4635/4635 -hsa-mir-4636 hsa-miR-4636 mir-4636/4636 -hsa-mir-4637 hsa-miR-4637 mir-4637/4637 -hsa-mir-148a hsa-miR-148a mir-148a/148a -hsa-mir-148 hsa-miR-148 mir-148/148 -hsa-mir-148 hsa-miR-148a-5p mir-148/5p -hsa-mir-148 hsa-miR-148a-3p mir-148/3p -hsa-mir-148 hsa-miR-148a mir-148/148a -hsa-mir-147b hsa-miR-147b-5p mir-147b/5p -hsa-mir-147b hsa-miR-147b-3p mir-147b/3p -hsa-mir-4642 hsa-miR-4642 mir-4642/4642 -hsa-mir-4643 hsa-miR-4643 mir-4643/4643 -hsa-mir-4644 hsa-miR-4644 mir-4644/4644 -hsa-mir-147b hsa-miR-147b mir-147b/147b -hsa-mir-147a hsa-miR-147a mir-147a/147a -hsa-mir-147a hsa-miR-147 mir-147a/147 -hsa-mir-147 hsa-miR-147a mir-147/147a -hsa-mir-4647 hsa-miR-4647 mir-4647/4647 -hsa-mir-4648 hsa-miR-4648 mir-4648/4648 -hsa-mir-147 hsa-miR-147 mir-147/147 -hsa-mir-146b hsa-miR-146b-5p mir-146b/5p -hsa-mir-146b hsa-miR-146b mir-146b/146b -hsa-mir-146b hsa-miR-146b-3p mir-146b/3p -hsa-mir-4651 hsa-miR-4651 mir-4651/4651 -hsa-mir-146a hsa-miR-146a-3p mir-146a/3p -hsa-mir-146a hsa-miR-146a-5p mir-146a/5p -hsa-mir-146a hsa-miR-146 mir-146a/146 -hsa-mir-146a hsa-miR-146a mir-146a/146a -hsa-mir-4654 hsa-miR-4654 mir-4654/4654 -hsa-mir-146a hsa-miR-146a* mir-146a/146a* -hsa-mir-146 hsa-miR-146a-3p mir-146/3p -hsa-mir-4656 hsa-miR-4656 mir-4656/4656 -hsa-mir-4657 hsa-miR-4657 mir-4657/4657 -hsa-mir-4658 hsa-miR-4658 mir-4658/4658 -hsa-mir-146 hsa-miR-146a-5p mir-146/5p -hsa-mir-146 hsa-miR-146 mir-146/146 -hsa-mir-146 hsa-miR-146a mir-146/146a -hsa-mir-145 hsa-miR-145-5p mir-145/5p -hsa-mir-466 hsa-miR-466 mir-466/466 -hsa-mir-4660 hsa-miR-4660 mir-4660/4660 -hsa-mir-145 hsa-miR-145-3p mir-145/3p -hsa-mir-145 hsa-miR-145 mir-145/145 -hsa-mir-145 hsa-miR-145* mir-145/145* -hsa-mir-144 hsa-miR-144* mir-144/144* -hsa-mir-4662b hsa-miR-4662b mir-4662b/4662b -hsa-mir-4663 hsa-miR-4663 mir-4663/4663 -hsa-mir-144 hsa-miR-144 mir-144/144 -hsa-mir-143 hsa-miR-143-5p mir-143/5p -hsa-mir-143 hsa-miR-143-3p mir-143/3p -hsa-mir-143 hsa-miR-143* mir-143/143* -hsa-mir-143 hsa-miR-143 mir-143/143 -hsa-mir-142 hsa-miR-142-5p mir-142/5p -hsa-mir-142 hsa-miR-142-3p mir-142/3p -hsa-mir-141 hsa-miR-141-5p mir-141/5p -hsa-mir-4669 hsa-miR-4669 mir-4669/4669 -hsa-mir-141 hsa-miR-141-3p mir-141/3p -hsa-mir-141 hsa-miR-141* mir-141/141* -hsa-mir-141 hsa-miR-141 mir-141/141 -hsa-mir-140 hsa-miR-140-5p mir-140/5p -hsa-mir-4672 hsa-miR-4672 mir-4672/4672 -hsa-mir-4673 hsa-miR-4673 mir-4673/4673 -hsa-mir-4674 hsa-miR-4674 mir-4674/4674 -hsa-mir-4675 hsa-miR-4675 mir-4675/4675 -hsa-mir-140 hsa-miR-140-3p mir-140/3p -hsa-mir-139 hsa-miR-139-5p mir-139/5p -hsa-mir-139 hsa-miR-139 mir-139/139 -hsa-mir-139 hsa-miR-139-3p mir-139/3p -hsa-mir-4678 hsa-miR-4678 mir-4678/4678 -hsa-mir-4679-1 hsa-miR-4679 mir-4679-1/4679 -hsa-mir-4679-2 hsa-miR-4679 mir-4679-2/4679 -hsa-mir-4681 hsa-miR-4681 mir-4681/4681 -hsa-mir-4682 hsa-miR-4682 mir-4682/4682 -hsa-mir-4683 hsa-miR-4683 mir-4683/4683 -hsa-mir-138-2 hsa-miR-138-5p mir-138-2/5p -hsa-mir-138-2 hsa-miR-138-2-3p mir-138-2/3p -hsa-mir-138-2 hsa-miR-138 mir-138-2/138 -hsa-mir-138-2 hsa-miR-138-2* mir-138-2/2* -hsa-mir-4686 hsa-miR-4686 mir-4686/4686 -hsa-mir-138-1 hsa-miR-138-5p mir-138-1/5p -hsa-mir-138-1 hsa-miR-138-1-3p mir-138-1/3p -hsa-mir-4688 hsa-miR-4688 mir-4688/4688 -hsa-mir-4689 hsa-miR-4689 mir-4689/4689 -hsa-mir-138-1 hsa-miR-138-1* mir-138-1/1* -hsa-mir-138-1 hsa-miR-138 mir-138-1/138 -hsa-mir-137 hsa-miR-137-5p mir-137/5p -hsa-mir-137 hsa-miR-137-3p mir-137/3p -hsa-mir-4692 hsa-miR-4692 mir-4692/4692 -hsa-mir-137 hsa-miR-137 mir-137/137 -hsa-mir-136 hsa-miR-136-5p mir-136/5p -hsa-mir-136 hsa-miR-136-3p mir-136/3p -hsa-mir-136 hsa-miR-136 mir-136/136 -hsa-mir-136 hsa-miR-136* mir-136/136* -hsa-mir-135b hsa-miR-135b-5p mir-135b/5p -hsa-mir-4696 hsa-miR-4696 mir-4696/4696 -hsa-mir-135b hsa-miR-135b-3p mir-135b/3p -hsa-mir-135b hsa-miR-135b mir-135b/135b -hsa-mir-4698 hsa-miR-4698 mir-4698/4698 -hsa-mir-135b hsa-miR-135b* mir-135b/135b* -hsa-mir-135a-2 hsa-miR-135a-5p mir-135a-2/5p -hsa-mir-135a-2 hsa-miR-135a-2-3p mir-135a-2/3p -hsa-mir-135a-2 hsa-miR-135a mir-135a-2/135a -hsa-mir-135a-1 hsa-miR-135a-5p mir-135a-1/5p -hsa-mir-135a-1 hsa-miR-135a-3p mir-135a-1/3p -hsa-mir-135a-1 hsa-miR-135a mir-135a-1/135a -hsa-mir-135a-1 hsa-miR-135a* mir-135a-1/135a* -hsa-mir-135-2 hsa-miR-135a-5p mir-135-2/5p -hsa-mir-135-2 hsa-miR-135a mir-135-2/135a -hsa-mir-4705 hsa-miR-4705 mir-4705/4705 -hsa-mir-4706 hsa-miR-4706 mir-4706/4706 -hsa-mir-135-2 hsa-miR-135a-2-3p mir-135-2/3p -hsa-mir-135-1 hsa-miR-135a-5p mir-135-1/5p -hsa-mir-135-1 hsa-miR-135a mir-135-1/135a -hsa-mir-135-1 hsa-miR-135a-3p mir-135-1/3p -hsa-mir-1343 hsa-miR-1343-5p mir-1343/5p -hsa-mir-1343 hsa-miR-1343-3p mir-1343/3p -hsa-mir-4710 hsa-miR-4710 mir-4710/4710 -hsa-mir-1343 hsa-miR-1343 mir-1343/1343 -hsa-mir-134 hsa-miR-134-5p mir-134/5p -hsa-mir-134 hsa-miR-134-3p mir-134/3p -hsa-mir-134 hsa-miR-134 mir-134/134 -hsa-mir-133a-1 hsa-miR-133a-5p mir-133a-1/5p -hsa-mir-133a-1 hsa-miR-133a-3p mir-133a-1/3p -hsa-mir-133a-1 hsa-miR-133a mir-133a-1/133a -hsa-mir-132 hsa-miR-132* mir-132/132* -hsa-mir-132 hsa-miR-132 mir-132/132 -hsa-mir-130b hsa-miR-130b-5p mir-130b/5p -hsa-mir-130b hsa-miR-130b-3p mir-130b/3p -hsa-mir-130b hsa-miR-130b* mir-130b/130b* -hsa-mir-130b hsa-miR-130b mir-130b/130b -hsa-mir-130a hsa-miR-130a-5p mir-130a/5p -hsa-mir-4718 hsa-miR-4718 mir-4718/4718 -hsa-mir-4719 hsa-miR-4719 mir-4719/4719 -hsa-mir-130a hsa-miR-130a-3p mir-130a/3p -hsa-mir-130a hsa-miR-130a* mir-130a/130a* -hsa-mir-4721 hsa-miR-4721 mir-4721/4721 -hsa-mir-130a hsa-miR-130a mir-130a/130a -hsa-mir-1307 hsa-miR-1307-5p mir-1307/5p -hsa-mir-1307 hsa-miR-1307-3p mir-1307/3p -hsa-mir-1307 hsa-miR-1307 mir-1307/1307 -hsa-mir-1306 hsa-miR-1306-5p mir-1306/5p -hsa-mir-1306 hsa-miR-1306-3p mir-1306/3p -hsa-mir-1306 hsa-miR-1306 mir-1306/1306 -hsa-mir-1304 hsa-miR-1304-5p mir-1304/5p -hsa-mir-1304 hsa-miR-1304-3p mir-1304/3p -hsa-mir-1304 hsa-miR-1304 mir-1304/1304 -hsa-mir-1301 hsa-miR-1301-5p mir-1301/5p -hsa-mir-1301 hsa-miR-1301-3p mir-1301/3p -hsa-mir-1301 hsa-miR-1301 mir-1301/1301 -hsa-mir-129b hsa-miR-129-5p mir-129b/5p -hsa-mir-4729 hsa-miR-4729 mir-4729/4729 -hsa-mir-4730 hsa-miR-4730 mir-4730/4730 -hsa-mir-129b hsa-miR-129 mir-129b/129 -hsa-mir-129b hsa-miR-129-2-3p mir-129b/3p -hsa-mir-129b hsa-miR-129-3p mir-129b/3p -hsa-mir-129a hsa-miR-129-5p mir-129a/5p -hsa-mir-129a hsa-miR-129 mir-129a/129 -hsa-mir-129a hsa-miR-129-1-3p mir-129a/3p -hsa-mir-4734 hsa-miR-4734 mir-4734/4734 -hsa-mir-1298 hsa-miR-1298-5p mir-1298/5p -hsa-mir-1298 hsa-miR-1298-3p mir-1298/3p -hsa-mir-4736 hsa-miR-4736 mir-4736/4736 -hsa-mir-4737 hsa-miR-4737 mir-4737/4737 -hsa-mir-1298 hsa-miR-1298 mir-1298/1298 -hsa-mir-1296 hsa-miR-1296-5p mir-1296/5p -hsa-mir-4739 hsa-miR-4739 mir-4739/4739 -hsa-mir-1296 hsa-miR-1296-3p mir-1296/3p -hsa-mir-1296 hsa-miR-1296 mir-1296/1296 -hsa-mir-4741 hsa-miR-4741 mir-4741/4741 -hsa-mir-1295b hsa-miR-1295b-5p mir-1295b/5p -hsa-mir-1295b hsa-miR-1295b-3p mir-1295b/3p -hsa-mir-1295a hsa-miR-1295a mir-1295a/1295a -hsa-mir-4744 hsa-miR-4744 mir-4744/4744 -hsa-mir-1295a hsa-miR-1295 mir-1295a/1295 -hsa-mir-1295 hsa-miR-1295a mir-1295/1295a -hsa-mir-1295 hsa-miR-1295 mir-1295/1295 -hsa-mir-1292 hsa-miR-1292-5p mir-1292/5p -hsa-mir-1292 hsa-miR-1292-3p mir-1292/3p -hsa-mir-1292 hsa-miR-1292 mir-1292/1292 -hsa-mir-4748 hsa-miR-4748 mir-4748/4748 -hsa-mir-129-2 hsa-miR-129-5p mir-129-2/5p -hsa-mir-129-2 hsa-miR-129 mir-129-2/129 -hsa-mir-129-2 hsa-miR-129-2-3p mir-129-2/3p -hsa-mir-4751 hsa-miR-4751 mir-4751/4751 -hsa-mir-4752 hsa-miR-4752 mir-4752/4752 -hsa-mir-129-2 hsa-miR-129-3p mir-129-2/3p -hsa-mir-4754 hsa-miR-4754 mir-4754/4754 -hsa-mir-129-1 hsa-miR-129-5p mir-129-1/5p -hsa-mir-129-1 hsa-miR-129 mir-129-1/129 -hsa-mir-129-1 hsa-miR-129-1-3p mir-129-1/3p -hsa-mir-129-1 hsa-miR-129-5p mir-129-1/5p -hsa-mir-129-1 hsa-miR-129* mir-129-1/129* -hsa-mir-129 hsa-miR-129-5p mir-129/5p -hsa-mir-129 hsa-miR-129 mir-129/129 -hsa-mir-4759 hsa-miR-4759 mir-4759/4759 -hsa-mir-129 hsa-miR-129-1-3p mir-129/3p -hsa-mir-128b hsa-miR-128-2-5p mir-128b/5p -hsa-mir-128b hsa-miR-128-3p mir-128b/3p -hsa-mir-128b hsa-miR-128a mir-128b/128a -hsa-miR-128a hsa-miR-128-1-5p mir-128a/5p -hsa-miR-128a hsa-miR-128a mir-128a/128a -hsa-miR-128a hsa-miR-128-3p mir-128a/3p -hsa-mir-1287 hsa-miR-1287-5p mir-1287/5p -hsa-mir-1287 hsa-miR-1287-3p mir-1287/3p -hsa-mir-1287 hsa-miR-1287 mir-1287/1287 -hsa-mir-4765 hsa-miR-4765 mir-4765/4765 -hsa-mir-1285-2 hsa-miR-1285-3p mir-1285-2/3p -hsa-mir-1285-2 hsa-miR-1285 mir-1285-2/1285 -hsa-mir-4767 hsa-miR-4767 mir-4767/4767 -hsa-mir-1285-1 hsa-miR-1285-5p mir-1285-1/5p -hsa-mir-1285-1 hsa-miR-1285-3p mir-1285-1/3p -hsa-mir-1285-1 hsa-miR-1285 mir-1285-1/1285 -hsa-mir-128-2 hsa-miR-128-2-5p mir-128-2/5p -hsa-mir-4770 hsa-miR-4770 mir-4770/4770 -hsa-mir-4771-1 hsa-miR-4771 mir-4771-1/4771 -hsa-mir-4771-2 hsa-miR-4771 mir-4771-2/4771 -hsa-mir-128-2 hsa-miR-128-3p mir-128-2/3p -hsa-mir-128-2 hsa-miR-128 mir-128-2/128 -hsa-mir-4773-1 hsa-miR-4773 mir-4773-1/4773 -hsa-mir-4773-2 hsa-miR-4773 mir-4773-2/4773 -hsa-mir-128-1 hsa-miR-128-1-5p mir-128-1/5p -hsa-mir-128-1 hsa-miR-128a mir-128-1/128a -hsa-mir-4775 hsa-miR-4775 mir-4775/4775 -hsa-mir-128-1 hsa-miR-128-3p mir-128-1/3p -hsa-mir-128-1 hsa-miR-128 mir-128-1/128 -hsa-mir-1277 hsa-miR-1277-5p mir-1277/5p -hsa-mir-1277 hsa-miR-1277-3p mir-1277/3p -hsa-mir-1277 hsa-miR-1277 mir-1277/1277 -hsa-mir-1273h hsa-miR-1273h-5p mir-1273h/5p -hsa-mir-1273h hsa-miR-1273h-3p mir-1273h/3p -hsa-mir-1273g hsa-miR-1273g-5p mir-1273g/5p -hsa-mir-4779 hsa-miR-4779 mir-4779/4779 -hsa-mir-4780 hsa-miR-4780 mir-4780/4780 -hsa-mir-1273g hsa-miR-1273g-3p mir-1273g/3p -hsa-mir-1273g hsa-miR-1273g mir-1273g/1273g -hsa-mir-1271 hsa-miR-1271-5p mir-1271/5p -hsa-mir-1271 hsa-miR-1271-3p mir-1271/3p -hsa-mir-1271 hsa-miR-1271 mir-1271/1271 -hsa-mir-1270-1 hsa-miR-1270 mir-1270-1/1270 -hsa-mir-4784 hsa-miR-4784 mir-4784/4784 -hsa-mir-4785 hsa-miR-4785 mir-4785/4785 -hsa-mir-1270-1 hsa-miR-1270 mir-1270-1/1270 -hsa-mir-127 hsa-miR-127-5p mir-127/5p -hsa-mir-127 hsa-miR-127-3p mir-127/3p -hsa-mir-1269a hsa-miR-1269a mir-1269a/1269a -hsa-mir-4788 hsa-miR-4788 mir-4788/4788 -hsa-mir-1269a hsa-miR-1269 mir-1269a/1269 -hsa-mir-1269 hsa-miR-1269a mir-1269/1269a -hsa-mir-1269 hsa-miR-1269 mir-1269/1269 -hsa-mir-1268a hsa-miR-1268a mir-1268a/1268a -hsa-mir-4791 hsa-miR-4791 mir-4791/4791 -hsa-mir-4792 hsa-miR-4792 mir-4792/4792 -hsa-mir-1268a hsa-miR-1268 mir-1268a/1268 -hsa-mir-1268 hsa-miR-1268a mir-1268/1268a -hsa-mir-4794 hsa-miR-4794 mir-4794/4794 -hsa-mir-1268 hsa-miR-1268 mir-1268/1268 -hsa-mir-1266 hsa-miR-1266-5p mir-1266/5p -hsa-mir-1266 hsa-miR-1266-3p mir-1266/3p -hsa-mir-1266 hsa-miR-1266 mir-1266/1266 -hsa-mir-1260a hsa-miR-1260a mir-1260a/1260a -hsa-mir-1260a hsa-miR-1260 mir-1260a/1260 -hsa-mir-1260 hsa-miR-1260a mir-1260/1260a -hsa-mir-1260 hsa-miR-1260 mir-1260/1260 -hsa-mir-126 hsa-miR-126-5p mir-126/5p -hsa-mir-126 hsa-miR-126-3p mir-126/3p -hsa-mir-126 hsa-miR-126* mir-126/126* -hsa-mir-126 hsa-miR-126 mir-126/126 -hsa-mir-4801 hsa-miR-4801 mir-4801/4801 -hsa-mir-125b-2 hsa-miR-125b-5p mir-125b-2/5p -hsa-mir-125b-2 hsa-miR-125b-2-3p mir-125b-2/3p -hsa-mir-4803 hsa-miR-4803 mir-4803/4803 -hsa-mir-125b-2 hsa-miR-125b-2* mir-125b-2/2* -hsa-mir-125b-2 hsa-miR-125b mir-125b-2/125b -hsa-mir-125b-1 hsa-miR-125b-5p mir-125b-1/5p -hsa-mir-125b-1 hsa-miR-125b-1-3p mir-125b-1/3p -hsa-mir-484 hsa-miR-484 mir-484/484 -hsa-mir-125b-1 hsa-miR-125b mir-125b-1/125b -hsa-mir-125b-1 hsa-miR-125b-1* mir-125b-1/1* -hsa-mir-125a hsa-miR-125a-5p mir-125a/5p -hsa-mir-125a hsa-miR-125a mir-125a/125a -hsa-mir-125a hsa-miR-125a-3p mir-125a/3p -hsa-mir-1252 hsa-miR-1252-5p mir-1252/5p -hsa-mir-1252 hsa-miR-1252-3p mir-1252/3p -hsa-mir-1252 hsa-miR-1252 mir-1252/1252 -hsa-mir-1250 hsa-miR-1250-5p mir-1250/5p -hsa-mir-1250 hsa-miR-1250-3p mir-1250/3p -hsa-mir-1250 hsa-miR-1250 mir-1250/1250 -hsa-mir-492 hsa-miR-492 mir-492/492 -hsa-mir-124a-3 hsa-miR-124-5p mir-124a-3/5p -hsa-mir-124a-3 hsa-miR-124-3p mir-124a-3/3p -hsa-mir-124a-3 hsa-miR-124a mir-124a-3/124a -hsa-mir-124a-3 hsa-miR-124 mir-124a-3/124 -hsa-mir-496 hsa-miR-496 mir-496/496 -hsa-mir-124a-2 hsa-miR-124-5p mir-124a-2/5p -hsa-mir-124a-2 hsa-miR-124-3p mir-124a-2/3p -hsa-mir-124a-2 hsa-miR-124a mir-124a-2/124a -hsa-mir-124a-2 hsa-miR-124 mir-124a-2/124 -hsa-mir-124a-1 hsa-miR-124-5p mir-124a-1/5p -hsa-mir-124a-1 hsa-miR-124-3p mir-124a-1/3p -hsa-mir-124a-1 hsa-miR-124a mir-124a-1/124a -hsa-mir-124a-1 hsa-miR-124 mir-124a-1/124 -hsa-mir-1249 hsa-miR-1249-5p mir-1249/5p -hsa-mir-1249 hsa-miR-1249-3p mir-1249/3p -hsa-mir-1249 hsa-miR-1249 mir-1249/1249 -hsa-mir-1247 hsa-miR-1247-5p mir-1247/5p -hsa-mir-1247 hsa-miR-1247-3p mir-1247/3p -hsa-mir-1247 hsa-miR-1247 mir-1247/1247 -hsa-mir-1245b hsa-miR-1245b-5p mir-1245b/5p -hsa-mir-1245b hsa-miR-1245b-3p mir-1245b/3p -hsa-mir-5047 hsa-miR-5047 mir-5047/5047 -hsa-mir-1245a hsa-miR-1245a mir-1245a/1245a -hsa-mir-507 hsa-miR-507 mir-507/507 -hsa-mir-1245a hsa-miR-1245 mir-1245a/1245 -hsa-mir-1245 hsa-miR-1245a mir-1245/1245a -hsa-mir-1245 hsa-miR-1245 mir-1245/1245 -hsa-mir-124-3 hsa-miR-124-5p mir-124-3/5p -hsa-mir-124-3 hsa-miR-124-3p mir-124-3/3p -hsa-mir-124-3 hsa-miR-124a mir-124-3/124a -hsa-mir-124-3 hsa-miR-124* mir-124-3/124* -hsa-mir-124-3 hsa-miR-124 mir-124-3/124 -hsa-mir-5095 hsa-miR-5095 mir-5095/5095 -hsa-mir-5096 hsa-miR-5096 mir-5096/5096 -hsa-mir-124-2 hsa-miR-124-5p mir-124-2/5p -hsa-mir-511-1 hsa-miR-511 mir-511-1/511 -hsa-mir-511-2 hsa-miR-511 mir-511-2/511 -hsa-mir-124-2 hsa-miR-124-3p mir-124-2/3p -hsa-mir-124-2 hsa-miR-124a mir-124-2/124a -hsa-mir-124-2 hsa-miR-124* mir-124-2/124* -hsa-mir-124-2 hsa-miR-124 mir-124-2/124 -hsa-mir-124-1 hsa-miR-124-5p mir-124-1/5p -hsa-mir-124-1 hsa-miR-124-3p mir-124-1/3p -hsa-mir-124-1 hsa-miR-124a mir-124-1/124a -hsa-mir-124-1 hsa-miR-124* mir-124-1/124* -hsa-mir-513b hsa-miR-513b mir-513b/513b -hsa-mir-513c hsa-miR-513c mir-513c/513c -hsa-mir-124-1 hsa-miR-124 mir-124-1/124 -hsa-mir-1238 hsa-miR-1238-5p mir-1238/5p -hsa-mir-1238 hsa-miR-1238-3p mir-1238/3p -hsa-mir-1238 hsa-miR-1238 mir-1238/1238 -hsa-mir-1237 hsa-miR-1237-5p mir-1237/5p -hsa-mir-1237 hsa-miR-1237-3p mir-1237/3p -hsa-mir-1237 hsa-miR-1237 mir-1237/1237 -hsa-mir-1236 hsa-miR-1236-5p mir-1236/5p -hsa-mir-1236 hsa-miR-1236-3p mir-1236/3p -hsa-mir-1236 hsa-miR-1236 mir-1236/1236 -hsa-mir-1234 hsa-miR-1234-3p mir-1234/3p -hsa-mir-1234 hsa-miR-1234 mir-1234/1234 -hsa-mir-1233-2 hsa-miR-1233-5p mir-1233-2/5p -hsa-mir-1233-2 hsa-miR-1233-3p mir-1233-2/3p -hsa-mir-1233-2 hsa-miR-1233 mir-1233-2/1233 -hsa-mir-1233-1 hsa-miR-1233-5p mir-1233-1/5p -hsa-mir-1233-1 hsa-miR-1233-3p mir-1233-1/3p -hsa-mir-1233-1 hsa-miR-1233 mir-1233-1/1233 -hsa-mir-1233 hsa-miR-1233-5p mir-1233/5p -hsa-mir-1233 hsa-miR-1233-3p mir-1233/3p -hsa-mir-1233 hsa-miR-1233 mir-1233/1233 -hsa-mir-122b hsa-miR-122b-5p mir-122b/5p -hsa-mir-122b hsa-miR-122b-3p mir-122b/3p -hsa-mir-122a hsa-miR-122-5p mir-122a/5p -hsa-mir-122a hsa-miR-122a mir-122a/122a -hsa-mir-122a hsa-miR-122 mir-122a/122 -hsa-mir-122a hsa-miR-122-3p mir-122a/3p -hsa-mir-518b hsa-miR-518b mir-518b/518b -hsa-mir-1229 hsa-miR-1229-5p mir-1229/5p -hsa-mir-1229 hsa-miR-1229-3p mir-1229/3p -hsa-mir-1229 hsa-miR-1229 mir-1229/1229 -hsa-mir-1228 hsa-miR-1228-5p mir-1228/5p -hsa-mir-1228 hsa-miR-1228-3p mir-1228/3p -hsa-mir-1228 hsa-miR-1228* mir-1228/1228* -hsa-mir-1228 hsa-miR-1228 mir-1228/1228 -hsa-mir-1226 hsa-miR-1226-5p mir-1226/5p -hsa-mir-1226 hsa-miR-1226-3p mir-1226/3p -hsa-mir-1226 hsa-miR-1226* mir-1226/1226* -hsa-mir-1226 hsa-miR-1226 mir-1226/1226 -hsa-mir-1225 hsa-miR-1225-5p mir-1225/5p -hsa-mir-1225 hsa-miR-1225-3p mir-1225/3p -hsa-mir-1224 hsa-miR-1224-5p mir-1224/5p -hsa-mir-1224 hsa-miR-1224-3p mir-1224/3p -hsa-mir-122 hsa-miR-122-5p mir-122/5p -hsa-mir-122 hsa-miR-122a mir-122/122a -hsa-mir-122 hsa-miR-122-3p mir-122/3p -hsa-mir-122 hsa-miR-122 mir-122/122 -hsa-mir-122 hsa-miR-122* mir-122/122* -hsa-mir-1207 hsa-miR-1207-5p mir-1207/5p -hsa-mir-1207 hsa-miR-1207-3p mir-1207/3p -hsa-mir-1199 hsa-miR-1199-5p mir-1199/5p -hsa-mir-1199 hsa-miR-1199-3p mir-1199/3p -hsa-mir-1185-2 hsa-miR-1185-5p mir-1185-2/5p -hsa-mir-1185-2 hsa-miR-1185-2-3p mir-1185-2/3p -hsa-mir-520h hsa-miR-520h mir-520h/520h -hsa-mir-521-1 hsa-miR-521 mir-521-1/521 -hsa-mir-521-2 hsa-miR-521 mir-521-2/521 -hsa-mir-1185-2 hsa-miR-1185 mir-1185-2/1185 -hsa-mir-1185-1 hsa-miR-1185-5p mir-1185-1/5p -hsa-mir-1185-1 hsa-miR-1185-1-3p mir-1185-1/3p -hsa-mir-1185-1 hsa-miR-1185 mir-1185-1/1185 -hsa-mir-1180 hsa-miR-1180-5p mir-1180/5p -hsa-mir-1180 hsa-miR-1180-3p mir-1180/3p -hsa-mir-1180 hsa-miR-1180 mir-1180/1180 -hsa-mir-1178 hsa-miR-1178-5p mir-1178/5p -hsa-mir-1178 hsa-miR-1178-3p mir-1178/3p -hsa-mir-1178 hsa-miR-1178 mir-1178/1178 -hsa-mir-11181 hsa-miR-11181-5p mir-11181/5p -hsa-mir-11181 hsa-miR-11181-3p mir-11181/3p -hsa-mir-527 hsa-miR-527 mir-527/527 -hsa-mir-10b hsa-miR-10b-5p mir-10b/5p -hsa-mir-10b hsa-miR-10b-3p mir-10b/3p -hsa-mir-10b hsa-miR-10b mir-10b/10b -hsa-mir-10b hsa-miR-10b* mir-10b/10b* -hsa-mir-10a hsa-miR-10a-5p mir-10a/5p -hsa-mir-10a hsa-miR-10a-3p mir-10a/3p -hsa-mir-10a hsa-miR-10a mir-10a/10a -hsa-mir-543 hsa-miR-543 mir-543/543 -hsa-mir-10a hsa-miR-10a* mir-10a/10a* -hsa-mir-544b hsa-miR-544b mir-544b/544b -hsa-mir-106b hsa-miR-106b-5p mir-106b/5p -hsa-mir-106b hsa-miR-106b-3p mir-106b/3p -hsa-mir-106b hsa-miR-106b mir-106b/106b -hsa-mir-106b hsa-miR-106b* mir-106b/106b* -hsa-mir-106a hsa-miR-106a-3p mir-106a/3p -hsa-mir-106a hsa-miR-106a-5p mir-106a/5p -hsa-mir-548aa-1 hsa-miR-548aa mir-548aa-1/548aa -hsa-mir-548aa-2 hsa-miR-548aa mir-548aa-2/548aa -hsa-mir-548ab hsa-miR-548ab mir-548ab/548ab -hsa-mir-548ac hsa-miR-548ac mir-548ac/548ac -hsa-mir-106a hsa-miR-106a mir-106a/106a -hsa-mir-106a hsa-miR-106a* mir-106a/106a* -hsa-mir-106-X hsa-miR-106a-3p mir-106-X/3p -hsa-mir-548ag-1 hsa-miR-548ag mir-548ag-1/548ag -hsa-mir-548ag-2 hsa-miR-548ag mir-548ag-2/548ag -hsa-mir-106-X hsa-miR-106a-5p mir-106-X/5p -hsa-mir-548ai hsa-miR-548ai mir-548ai/548ai -hsa-mir-106-X hsa-miR-106a mir-106-X/106a -hsa-mir-106 hsa-miR-106a-3p mir-106/3p -hsa-mir-548ak hsa-miR-548ak mir-548ak/548ak -hsa-mir-548al hsa-miR-548al mir-548al/548al -hsa-mir-106 hsa-miR-106a-5p mir-106/5p -hsa-mir-548an hsa-miR-548an mir-548an/548an -hsa-mir-106 hsa-miR-106a mir-106/106a -hsa-mir-105-X.2 hsa-miR-105-3p mir-105-X.2/3p -hsa-mir-105-X.2 hsa-miR-105-5p mir-105-X.2/5p -hsa-mir-105-X.2 hsa-miR-105 mir-105-X.2/105 -hsa-mir-105-X.1 hsa-miR-105-5p mir-105-X.1/5p -hsa-mir-105-X.1 hsa-miR-105 mir-105-X.1/105 -hsa-mir-105-X.1 hsa-miR-105-3p mir-105-X.1/3p -hsa-mir-105-2 hsa-miR-105-3p mir-105-2/3p -hsa-mir-548e hsa-miR-548e mir-548e/548e -hsa-mir-105-2 hsa-miR-105-5p mir-105-2/5p -hsa-mir-548f-2 hsa-miR-548f mir-548f-2/548f -hsa-mir-105-2 hsa-miR-105 mir-105-2/105 -hsa-mir-548f-4 hsa-miR-548f mir-548f-4/548f -hsa-mir-105-2 hsa-miR-105* mir-105-2/105* -hsa-mir-548g hsa-miR-548g mir-548g/548g -hsa-mir-548h-1 hsa-miR-548h mir-548h-1/548h -hsa-mir-548h-2 hsa-miR-548h mir-548h-2/548h -hsa-mir-548h-3 hsa-miR-548h mir-548h-3/548h -hsa-mir-548h-4 hsa-miR-548h mir-548h-4/548h -hsa-mir-105-1 hsa-miR-105-5p mir-105-1/5p -hsa-mir-548i-1 hsa-miR-548i mir-548i-1/548i -hsa-mir-548i-2 hsa-miR-548i mir-548i-2/548i -hsa-mir-548i-3 hsa-miR-548i mir-548i-3/548i -hsa-mir-548i-4 hsa-miR-548i mir-548i-4/548i -hsa-mir-548j hsa-miR-548j mir-548j/548j -hsa-mir-548k hsa-miR-548k mir-548k/548k -hsa-mir-548l hsa-miR-548l mir-548l/548l -hsa-mir-548m hsa-miR-548m mir-548m/548m -hsa-mir-548n hsa-miR-548n mir-548n/548n -hsa-mir-548o hsa-miR-548o mir-548o/548o -hsa-mir-105-1 hsa-miR-105-3p mir-105-1/3p -hsa-mir-548p hsa-miR-548p mir-548p/548p -hsa-mir-548q hsa-miR-548q mir-548q/548q -hsa-mir-548s hsa-miR-548s mir-548s/548s -hsa-mir-105-1 hsa-miR-105 mir-105-1/105 -hsa-mir-548u hsa-miR-548u mir-548u/548u -hsa-mir-548v hsa-miR-548v mir-548v/548v -hsa-mir-548w hsa-miR-548w mir-548w/548w -hsa-mir-105-1 hsa-miR-105* mir-105-1/105* -hsa-mir-10400 hsa-miR-10400-5p mir-10400/5p -hsa-mir-548y hsa-miR-548y mir-548y/548y -hsa-mir-548z hsa-miR-548z mir-548z/548z -hsa-mir-10400 hsa-miR-10400-3p mir-10400/3p -hsa-mir-103b-1 hsa-miR-103-as mir-103b-1/103-as -hsa-mir-103b-1 hsa-miR-103b mir-103b-1/103b -hsa-mir-103a-2 hsa-miR-103a-2-5p mir-103a-2/5p -hsa-mir-103a-2 hsa-miR-103a-3p mir-103a-2/3p -hsa-mir-103a-2 hsa-miR-103a-2* mir-103a-2/2* -hsa-mir-103a-2 hsa-miR-103a mir-103a-2/103a -hsa-mir-103a-1 hsa-miR-103a-1-5p mir-103a-1/5p -hsa-mir-551a hsa-miR-551a mir-551a/551a -hsa-mir-103a-1 hsa-miR-103a-3p mir-103a-1/3p -hsa-mir-103a-1 hsa-miR-103a mir-103a-1/103a -hsa-mir-10399 hsa-miR-10399-5p mir-10399/5p -hsa-mir-553 hsa-miR-553 mir-553/553 -hsa-mir-554 hsa-miR-554 mir-554/554 -hsa-mir-555 hsa-miR-555 mir-555/555 -hsa-mir-10399 hsa-miR-10399-3p mir-10399/3p -hsa-mir-10398 hsa-miR-10398-5p mir-10398/5p -hsa-mir-557 hsa-miR-557 mir-557/557 -hsa-mir-558 hsa-miR-558 mir-558/558 -hsa-mir-559 hsa-miR-559 mir-559/559 -hsa-mir-10398 hsa-miR-10398-3p mir-10398/3p -hsa-mir-562 hsa-miR-562 mir-562/562 -hsa-mir-563 hsa-miR-563 mir-563/563 -hsa-mir-564 hsa-miR-564 mir-564/564 -hsa-mir-566 hsa-miR-566 mir-566/566 -hsa-mir-567 hsa-miR-567 mir-567/567 -hsa-mir-568 hsa-miR-568 mir-568/568 -hsa-mir-569 hsa-miR-569 mir-569/569 -hsa-mir-10397 hsa-miR-10397-5p mir-10397/5p -hsa-mir-571 hsa-miR-571 mir-571/571 -hsa-mir-572 hsa-miR-572 mir-572/572 -hsa-mir-573 hsa-miR-573 mir-573/573 -hsa-mir-10397 hsa-miR-10397-3p mir-10397/3p -hsa-mir-10396b hsa-miR-10396b-5p mir-10396b/5p -hsa-mir-575 hsa-miR-575 mir-575/575 -hsa-mir-10396b hsa-miR-10396b-3p mir-10396b/3p -hsa-mir-10396a hsa-miR-10396a-5p mir-10396a/5p -hsa-mir-577 hsa-miR-577 mir-577/577 -hsa-mir-578 hsa-miR-578 mir-578/578 -hsa-mir-10396a hsa-miR-10396a-3p mir-10396a/3p -hsa-mir-10394 hsa-miR-10394-5p mir-10394/5p -hsa-mir-581 hsa-miR-581 mir-581/581 -hsa-mir-10394 hsa-miR-10394-3p mir-10394/3p -hsa-mir-10393 hsa-miR-10393-5p mir-10393/5p -hsa-mir-583 hsa-miR-583 mir-583/583 -hsa-mir-10393 hsa-miR-10393-3p mir-10393/3p -hsa-mir-10392 hsa-miR-10392-5p mir-10392/5p -hsa-mir-586 hsa-miR-586 mir-586/586 -hsa-mir-587 hsa-miR-587 mir-587/587 -hsa-mir-588 hsa-miR-588 mir-588/588 -hsa-mir-10392 hsa-miR-10392-3p mir-10392/3p -hsa-mir-103-5 hsa-miR-103a-1-5p mir-103-5/5p -hsa-mir-103-5 hsa-miR-103a-3p mir-103-5/3p -hsa-mir-103-1-as hsa-miR-103b mir-103-1-as/103b -hsa-mir-591 hsa-miR-591 mir-591/591 -hsa-mir-592 hsa-miR-592 mir-592/592 -hsa-mir-103-1-as hsa-miR-103-as mir-103-1-as/103-as -hsa-mir-103-1 hsa-miR-103a-1-5p mir-103-1/5p -hsa-mir-595 hsa-miR-595 mir-595/595 -hsa-mir-596 hsa-miR-596 mir-596/596 -hsa-mir-103-1 hsa-miR-103a-3p mir-103-1/3p -hsa-mir-102-7.1 hsa-miR-29b-1-5p mir-102-7.1/5p -hsa-mir-599 hsa-miR-599 mir-599/599 -hsa-mir-600 hsa-miR-600 mir-600/600 -hsa-mir-601 hsa-miR-601 mir-601/601 -hsa-mir-602 hsa-miR-602 mir-602/602 -hsa-mir-603 hsa-miR-603 mir-603/603 -hsa-mir-604 hsa-miR-604 mir-604/604 -hsa-mir-102-7.1 hsa-miR-29b-3p mir-102-7.1/3p -hsa-mir-606 hsa-miR-606 mir-606/606 -hsa-mir-607 hsa-miR-607 mir-607/607 -hsa-mir-608 hsa-miR-608 mir-608/608 -hsa-mir-609 hsa-miR-609 mir-609/609 -hsa-mir-610 hsa-miR-610 mir-610/610 -hsa-mir-611 hsa-miR-611 mir-611/611 -hsa-mir-612 hsa-miR-612 mir-612/612 -hsa-mir-613 hsa-miR-613 mir-613/613 -hsa-mir-614 hsa-miR-614 mir-614/614 -hsa-mir-102-7.1 hsa-miR-29b mir-102-7.1/29b -hsa-mir-102-2 hsa-miR-29b-1-5p mir-102-2/5p -hsa-mir-102-2 hsa-miR-29b-3p mir-102-2/3p -hsa-mir-102-2 hsa-miR-29b mir-102-2/29b -hsa-mir-617 hsa-miR-617 mir-617/617 -hsa-mir-618 hsa-miR-618 mir-618/618 -hsa-mir-102-1 hsa-miR-29b-2-5p mir-102-1/5p -hsa-mir-620 hsa-miR-620 mir-620/620 -hsa-mir-621 hsa-miR-621 mir-621/621 -hsa-mir-622 hsa-miR-622 mir-622/622 -hsa-mir-623 hsa-miR-623 mir-623/623 -hsa-mir-102-1 hsa-miR-29b-3p mir-102-1/3p -hsa-mir-102-1 hsa-miR-29b mir-102-1/29b -hsa-mir-101-2 hsa-miR-101-2-5p mir-101-2/5p -hsa-mir-101-2 hsa-miR-101-3p mir-101-2/3p -hsa-mir-626 hsa-miR-626 mir-626/626 -hsa-mir-101-2 hsa-miR-101 mir-101-2/101 -hsa-mir-101-1 hsa-miR-101-5p mir-101-1/5p -hsa-mir-101-1 hsa-miR-101-3p mir-101-1/3p -hsa-mir-101-1 hsa-miR-101* mir-101-1/101* -hsa-mir-101-1 hsa-miR-101 mir-101-1/101 -hsa-mir-630 hsa-miR-630 mir-630/630 -hsa-mir-631 hsa-miR-631 mir-631/631 -hsa-mir-632 hsa-miR-632 mir-632/632 -hsa-mir-633 hsa-miR-633 mir-633/633 -hsa-mir-634 hsa-miR-634 mir-634/634 -hsa-mir-635 hsa-miR-635 mir-635/635 -hsa-mir-636 hsa-miR-636 mir-636/636 -hsa-mir-637 hsa-miR-637 mir-637/637 -hsa-mir-638 hsa-miR-638 mir-638/638 -hsa-mir-639 hsa-miR-639 mir-639/639 -hsa-mir-640 hsa-miR-640 mir-640/640 -hsa-mir-641 hsa-miR-641 mir-641/641 -hsa-mir-101 hsa-miR-101-5p mir-101/5p -hsa-mir-101 hsa-miR-101-3p mir-101/3p -hsa-mir-643 hsa-miR-643 mir-643/643 -hsa-mir-101 hsa-miR-101 mir-101/101 -hsa-mir-645 hsa-miR-645 mir-645/645 -hsa-mir-646 hsa-miR-646 mir-646/646 -hsa-mir-647 hsa-miR-647 mir-647/647 -hsa-mir-648 hsa-miR-648 mir-648/648 -hsa-mir-649 hsa-miR-649 mir-649/649 -hsa-mir-650 hsa-miR-650 mir-650/650 -hsa-mir-100-11 hsa-miR-100-5p mir-100-11/5p -hsa-mir-100-11 hsa-miR-100 mir-100-11/100 -hsa-mir-100-11 hsa-miR-100-3p mir-100-11/3p -hsa-mir-100 hsa-miR-100-5p mir-100/5p -hsa-mir-100 hsa-miR-100-3p mir-100/3p -hsa-mir-100 hsa-miR-100 mir-100/100 -hsa-mir-100 hsa-miR-100* mir-100/100* -hsa-mir-657 hsa-miR-657 mir-657/657 -hsa-mir-658 hsa-miR-658 mir-658/658 -hsa-mir-1-2 hsa-miR-1-3p mir-1-2/3p -hsa-mir-1-2 hsa-miR-1 mir-1-2/1 -hsa-mir-661 hsa-miR-661 mir-661/661 -hsa-mir-662 hsa-miR-662 mir-662/662 -hsa-mir-1-1 hsa-miR-1-3p mir-1-1/3p -hsa-mir-663b hsa-miR-663b mir-663b/663b -hsa-mir-1-1 hsa-miR-1-5p mir-1-1/5p -hsa-mir-1-1 hsa-miR-1 mir-1-1/1 -hsa-mir-665 hsa-miR-665 mir-665/665 -hsa-let-7i hsa-let-7i-5p let-7i/5p -hsa-mir-670 hsa-miR-670 mir-670/670 -hsa-let-7i hsa-let-7i-3p let-7i/3p -hsa-let-7i hsa-let-7i let-7i/7i -hsa-let-7i hsa-let-7i* let-7i/7i* -hsa-let-7g hsa-let-7g-5p let-7g/5p -hsa-let-7g hsa-let-7g-3p let-7g/3p -hsa-let-7g hsa-let-7g let-7g/7g -hsa-let-7g hsa-let-7g* let-7g/7g* -hsa-let-7f-2L hsa-let-7f-2-3p let-7f-2L/3p -hsa-let-7f-2L hsa-let-7f-5p let-7f-2L/5p -hsa-let-7f-2L hsa-let-7f let-7f-2L/7f -hsa-let-7f-2 hsa-let-7f-2-3p let-7f-2/3p -hsa-let-7f-2 hsa-let-7f-5p let-7f-2/5p -hsa-let-7f-2 hsa-let-7f-2* let-7f-2/2* -hsa-mir-711 hsa-miR-711 mir-711/711 -hsa-mir-718 hsa-miR-718 mir-718/718 -hsa-mir-720 hsa-miR-720 mir-720/720 -hsa-let-7f-2 hsa-let-7f let-7f-2/7f -hsa-let-7f-1L hsa-let-7f-5p let-7f-1L/5p -hsa-let-7f-1L hsa-let-7f let-7f-1L/7f -hsa-mir-759 hsa-miR-759 mir-759/759 -hsa-mir-760 hsa-miR-760 mir-760/760 -hsa-mir-761 hsa-miR-761 mir-761/761 -hsa-mir-762 hsa-miR-762 mir-762/762 -hsa-mir-764 hsa-miR-764 mir-764/764 -hsa-mir-765 hsa-miR-765 mir-765/765 -hsa-let-7f-1L hsa-let-7f-1-3p let-7f-1L/3p -hsa-let-7f-1 hsa-let-7f-5p let-7f-1/5p -hsa-let-7f-1 hsa-let-7f-1-3p let-7f-1/3p -hsa-let-7f-1 hsa-let-7f let-7f-1/7f -hsa-let-7f-1 hsa-let-7f-1* let-7f-1/1* -hsa-let-7eL hsa-let-7e-5p let-7eL/5p -hsa-mir-802 hsa-miR-802 mir-802/802 -hsa-let-7eL hsa-let-7e let-7eL/7e -hsa-let-7eL hsa-let-7e-3p let-7eL/3p -hsa-let-7e hsa-let-7e-5p let-7e/5p -hsa-let-7e hsa-let-7e-3p let-7e/3p -hsa-let-7e hsa-let-7e let-7e/7e -hsa-let-7e hsa-let-7e* let-7e/7e* -hsa-let-7dL hsa-let-7d-5p let-7dL/5p -hsa-let-7dL hsa-let-7d let-7dL/7d -hsa-let-7dL hsa-let-7d-3p let-7dL/3p -hsa-let-7d hsa-let-7d-5p let-7d/5p -hsa-let-7d hsa-let-7d-3p let-7d/3p -hsa-let-7d hsa-let-7d let-7d/7d -hsa-let-7d hsa-let-7d* let-7d/7d* -hsa-let-7bL hsa-let-7b let-7bL/7b -hsa-mir-890 hsa-miR-890 mir-890/890 -hsa-let-7bL hsa-let-7b-5p let-7bL/5p -hsa-mir-891b hsa-miR-891b mir-891b/891b -hsa-mir-892a hsa-miR-892a mir-892a/892a -hsa-mir-892b hsa-miR-892b mir-892b/892b -hsa-let-7bL hsa-let-7b-3p let-7bL/3p -hsa-let-7b hsa-let-7b-5p let-7b/5p -hsa-let-7b hsa-let-7b-3p let-7b/3p -hsa-let-7b hsa-let-7b let-7b/7b -hsa-let-7b hsa-let-7b* let-7b/7b* -hsa-let-7a-3L hsa-let-7a-5p let-7a-3L/5p -hsa-mir-920 hsa-miR-920 mir-920/920 -hsa-mir-921 hsa-miR-921 mir-921/921 -hsa-mir-922 hsa-miR-922 mir-922/922 -hsa-mir-924 hsa-miR-924 mir-924/924 -hsa-let-7a-3L hsa-let-7a-3p let-7a-3L/3p -hsa-let-7a-3L hsa-let-7a let-7a-3L/7a -hsa-let-7a-3 hsa-let-7a-5p let-7a-3/5p -hsa-let-7a-3 hsa-let-7a-3p let-7a-3/3p -hsa-let-7a-3 hsa-let-7a let-7a-3/7a -hsa-let-7a-3 hsa-let-7a* let-7a-3/7a* -hsa-let-7a-2L hsa-let-7a-5p let-7a-2L/5p -hsa-let-7a-2L hsa-let-7a let-7a-2L/7a -hsa-mir-933 hsa-miR-933 mir-933/933 -hsa-mir-934 hsa-miR-934 mir-934/934 -hsa-mir-935 hsa-miR-935 mir-935/935 -hsa-mir-936 hsa-miR-936 mir-936/936 -hsa-let-7a-2L hsa-let-7a-2-3p let-7a-2L/3p -hsa-mir-938 hsa-miR-938 mir-938/938 -hsa-mir-939 hsa-miR-939 mir-939/939 -hsa-mir-940 hsa-miR-940 mir-940/940 -hsa-mir-941-1 hsa-miR-941 mir-941-1/941 -hsa-mir-941-2 hsa-miR-941 mir-941-2/941 -hsa-mir-941-3 hsa-miR-941 mir-941-3/941 -hsa-mir-941-4 hsa-miR-941 mir-941-4/941 -hsa-let-7a-2 hsa-let-7a-5p let-7a-2/5p -hsa-mir-943 hsa-miR-943 mir-943/943 -hsa-mir-944 hsa-miR-944 mir-944/944 -hsa-let-7a-2 hsa-let-7a-2-3p let-7a-2/3p -hsa-let-7a-2 hsa-let-7a-2* let-7a-2/2* -hsa-let-7a-2 hsa-let-7a let-7a-2/7a -hsa-let-7a-1 hsa-let-7a-5p let-7a-1/5p -hsa-let-7a-1 hsa-let-7a-1L let-7a-1/7a-1L -hsa-let-7a-1 hsa-let-7a-3p let-7a-1/3p -hsa-let-7a-1 hsa-let-7a let-7a-1/7a -hsa-let-7a-1 hsa-let-7a* let-7a-1/7a* \ No newline at end of file diff --git a/core/src/main/resources/mycancergenome.txt b/core/src/main/resources/mycancergenome.txt deleted file mode 100644 index cc26fe098c0..00000000000 --- a/core/src/main/resources/mycancergenome.txt +++ /dev/null @@ -1,428 +0,0 @@ -#This file is generated from https://www.mycancergenome.org/sitemap -#Last updated: 3/1/2016 -#Gene Alteration Cancer Link -CRLF2 F232C Acute Lymphoblastic Leukemia CRLF2 c.695T>G (F232C) Mutation in Acute Lymphoblastic Leukemia -CRLF2 Fusions Acute Lymphoblastic Leukemia CRLF2 Fusions in Acute Lymphoblastic Leukemia -JAK2 R683G Acute Lymphoblastic Leukemia JAK2 c.2047A>G (R683G) Mutation in Acute Lymphoblastic Leukemia -JAK2 R683S Acute Lymphoblastic Leukemia JAK2 c.2049A>T (R683S) Mutation in Acute Lymphoblastic Leukemia -JAK2 R683S Acute Lymphoblastic Leukemia JAK2 c.2049A>C (R683S) Mutation in Acute Lymphoblastic Leukemia -JAK2 R683T Acute Lymphoblastic Leukemia JAK2 c.2048G>C (R683T) Mutation in Acute Lymphoblastic Leukemia -CBFB-MYH11 t(16;16)(p13.1;q22) Translocation Acute Myeloid Leukemia CBFB-MYH11 t(16;16)(p13.1;q22) Translocation in Acute Myeloid Leukemia -CBFB-MYH11 inv(16)(p13.1q22) Inversion Acute Myeloid Leukemia CBFB-MYH11 inv(16)(p13.1q22) Inversion in Acute Myeloid Leukemia -DEK-NUP214 t(6;9)(p23;q34) Translocation Acute Myeloid Leukemia DEK-NUP214 t(6;9)(p23;q34) Translocation in Acute Myeloid Leukemia -DNMT3A R882C Acute Myeloid Leukemia DNMT3A c.2644C>T (R882C) Mutation in Acute Myeloid Leukemia -DNMT3A R882S Acute Myeloid Leukemia DNMT3A c.2644C>A (R882S) Mutation in Acute Myeloid Leukemia -DNMT3A R882H Acute Myeloid Leukemia DNMT3A c.2645G>A (R882H) Mutation in Acute Myeloid Leukemia -DNMT3A R882P Acute Myeloid Leukemia DNMT3A c.2645G>C (R882P) Mutation in Acute Myeloid Leukemia -DNMT3A R882G Acute Myeloid Leukemia DNMT3A c.2644C>G (R882G) Mutation in Acute Myeloid Leukemia -DNMT3A R882L Acute Myeloid Leukemia DNMT3A c.2645G>T (R882L) Mutation in Acute Myeloid Leukemia -FLT3 Internal Tandem Duplication Acute Myeloid Leukemia FLT3 Internal Tandem Duplication in Acute Myeloid Leukemia -FLT3 D835H Acute Myeloid Leukemia FLT3 c.2503G>C (D835H) Mutation in Acute Myeloid Leukemia -FLT3 D835N Acute Myeloid Leukemia FLT3 c.2503G>A (D835N) Mutation in Acute Myeloid Leukemia -FLT3 D835Y Acute Myeloid Leukemia FLT3 c.2503G>T (D835Y) Mutation in Acute Myeloid Leukemia -FLT3 D835A Acute Myeloid Leukemia FLT3 c. 2504A>C (D835A) Mutation in Acute Myeloid Leukemia -FLT3 D835V Acute Myeloid Leukemia FLT3 c.2504A>T (D835V) Mutation in Acute Myeloid Leukemia -FLT3 D835E Acute Myeloid Leukemia FLT3 c.2505T>G (D835E) Mutation in Acute Myeloid Leukemia -FLT3 I836L Acute Myeloid Leukemia FLT3 c.2506A>C (I836L) Mutation in Acute Myeloid Leukemia -FLT3 I836V Acute Myeloid Leukemia FLT3 c.2506A>G (I836V) Mutation in Acute Myeloid Leukemia -FLT3 I836D Acute Myeloid Leukemia FLT3 c.2506_2507delATinsGA (I836D) Mutation in Acute Myeloid Leukemia -FLT3 I836H Acute Myeloid Leukemia FLT3 c.2506_2507delATinsCA (I836H) Mutation in Acute Myeloid Leukemia -FLT3 D835E Acute Myeloid Leukemia FLT3 c.2505T>A (D835E) Mutation in Acute Myeloid Leukemia -FLT3 I836F Acute Myeloid Leukemia FLT3 c.2506A>T (I836F) Mutation in Acute Myeloid Leukemia -FLT3 I836M Acute Myeloid Leukemia FLT3 c.2508C>G (I836M) Mutation in Acute Myeloid Leukemia -IDH1 R132C Acute Myeloid Leukemia IDH1 c.394C>T (R132C) Mutation in Acute Myeloid Leukemia -IDH1 R132G Acute Myeloid Leukemia IDH1 c.394C>G (R132G) Mutation in Acute Myeloid Leukemia -IDH1 R132S Acute Myeloid Leukemia IDH1 c.394C>A (R132S) Mutation in Acute Myeloid Leukemia -IDH1 R132H Acute Myeloid Leukemia IDH1 c.395G>A (R132H) Mutation in Acute Myeloid Leukemia -IDH1 R132L Acute Myeloid Leukemia IDH1 c.395G>T (R132L) Mutation in Acute Myeloid Leukemia -IDH1 R132P Acute Myeloid Leukemia IDH1 c.395G>C (R132P) Mutation in Acute Myeloid Leukemia -IDH2 R140Q Acute Myeloid Leukemia IDH2 c.419G>A (R140Q) Mutation in Acute Myeloid Leukemia -IDH2 R140W Acute Myeloid Leukemia IDH2 c.418C>T (R140W) Mutation in Acute Myeloid Leukemia -IDH2 R140L Acute Myeloid Leukemia IDH2 c.419G>T (R140L) Mutation in Acute Myeloid Leukemia -IDH2 R140G Acute Myeloid Leukemia IDH2 c.418C>G (R140G) Mutation in Acute Myeloid Leukemia -IDH2 R172K Acute Myeloid Leukemia IDH2 c.515G>A (R172K) Mutation in Acute Myeloid Leukemia -IDH2 R172M Acute Myeloid Leukemia IDH2 c.515G>T (R172M) Mutation in Acute Myeloid Leukemia -IDH2 R172S Acute Myeloid Leukemia IDH2 c.516G>C (R172S) Mutation in Acute Myeloid Leukemia -KIT Exon 8 Mutation Acute Myeloid Leukemia KIT Exon 8 Mutation in Acute Myeloid Leukemia -KIT D816Y Acute Myeloid Leukemia KIT c.2446G>T (D816Y) Mutation in Acute Myeloid Leukemia -KIT D816V Acute Myeloid Leukemia KIT c.2447A>T (D816V) Mutation in Acute Myeloid Leukemia -KIT D816I Acute Myeloid Leukemia KIT c.2446_2447delGAinsAT (D816I) Mutation in Acute Myeloid Leukemia -KIT D816H Acute Myeloid Leukemia KIT c.2446G>C (D816H) Mutation in Acute Myeloid Leukemia -MLL-MLLT3 t(9;11)(p22;q23) Translocation Acute Myeloid Leukemia MLL-MLLT3 t(9;11)(p22;q23) Translocation in Acute Myeloid Leukemia -PML-RARA t(15;17)(q22;q12) Translocation Acute Myeloid Leukemia PML-RARA t(15;17)(q22;q12) Translocation in Acute Myeloid Leukemia -RBM15-MKL1 t(1;22)(p13;q13) Translocation Acute Myeloid Leukemia RBM15-MKL1 t(1;22)(p13;q13) Translocation in Acute Myeloid Leukemia -RPN1-EVI1 (RPN1-MECOM) inv(3)(q21q26.2) Inversion Acute Myeloid Leukemia RPN1-EVI1 (RPN1-MECOM) inv(3)(q21q26.2) Inversion in Acute Myeloid Leukemia -RPN1-EVI1 (RPN1-MECOM) t(3;3)(q21;q26.2) Translocation Acute Myeloid Leukemia RPN1-EVI1 (RPN1-MECOM) t(3;3)(q21;q26.2) Translocation in Acute Myeloid Leukemia -RUNX1-RUNX1T1 t(8;21)(q22;q22) Translocation Acute Myeloid Leukemia RUNX1-RUNX1T1 t(8;21)(q22;q22) Translocation in Acute Myeloid Leukemia -ALK Fusions Anaplastic Large Cell Lymphoma ALK Fusions in Anaplastic Large Cell Lymphoma -SMO D473H Basal Cell Carcinoma SMO c.1417G>C (D473H) Mutation in Basal Cell Carcinoma -SMO A68V Basal Cell Carcinoma SMO c.203_204delCCinsTT (A68V) Mutation in Basal Cell Carcinoma -SMO R199W Basal Cell Carcinoma SMO c.595C>T (R199W) Mutation in Basal Cell Carcinoma -SMO T349I Basal Cell Carcinoma SMO c.1046_1047delCCinsTT (T349I) Mutation in Basal Cell Carcinoma -SMO R485W Basal Cell Carcinoma SMO c.1452_1453delCCinsTT (R485W) Mutation in Basal Cell Carcinoma -SMO L515F Basal Cell Carcinoma SMO c.1542_1543delCCinsTT (L515F) Mutation in Basal Cell Carcinoma -SMO W535L Basal Cell Carcinoma SMO c.1604G>T (W535L) Mutation in Basal Cell Carcinoma -SMO R562Q Basal Cell Carcinoma SMO c.1685G>A (R562Q) Mutation in Basal Cell Carcinoma -SMO A652V Basal Cell Carcinoma SMO c.1955C>T (A652V) Mutation in Basal Cell Carcinoma -SMO P755F Basal Cell Carcinoma SMO c.2263_2264delCCinsTT (P755F) Mutation in Basal Cell Carcinoma -TSC1 E636fs Bladder Cancer TSC1 c.1907_1908del (E636fs) Mutation in Bladder Cancer -AKT1 E17K Breast Cancer AKT1 c.49G>A (E17K) Mutation in Breast Cancer -AR Expression Breast Cancer AR Expression in Breast Cancer -ESR1 Expression Breast Cancer ER (ESR1) Expression in Breast Cancer -FGFR1 Amplification Breast Cancer FGFR1 Amplification in Breast Cancer -FGFR2 Amplification Breast Cancer FGFR2 Amplification in Breast Cancer -ERBB2 Amplification Breast Cancer HER2 (ERBB2) Amplification in Breast Cancer -ERBB2 Overexpression Breast Cancer HER2 (ERBB2) Overexpression in Breast Cancer -ERBB2 G309A Breast Cancer HER2 (ERBB2) c.926G>C (G309A) Mutation in Breast Cancer -ERBB2 D769H Breast Cancer HER2 (ERBB2) c.2305G>C (D769H) Mutation in Breast Cancer -ERBB2 D769Y Breast Cancer HER2 (ERBB2) c.2305G>T (D769Y) Mutation in Breast Cancer -ERBB2 L755_T759del Breast Cancer HER2 (ERBB2) c.2264_2278del (L755_T759del) Mutation in Breast Cancer -ERBB2 G778_P780dup Breast Cancer HER2 (ERBB2) c.2339_2340ins (G778_P780dup) Mutation in Breast Cancer -ERBB2 V842I Breast Cancer HER2 (ERBB2) c.2524G>A (V842I) Mutation in Breast Cancer -ERBB2 R896C Breast Cancer HER2 (ERBB2) c.2686C>T (R896C) Mutation in Breast Cancer -ERBB2 L755S Breast Cancer HER2 (ERBB2) c.2264T>C (L755S) Mutation in Breast Cancer -ERBB2 V777L Breast Cancer HER2 (ERBB2) c.2329G>T (V777L) Mutation in Breast Cancer -PIK3CA H1047L Breast Cancer PIK3CA c.3140A>T (H1047L) Mutation in Breast Cancer -PIK3CA H1047R Breast Cancer PIK3CA c.3140A>G (H1047R) Mutation in Breast Cancer -PIK3CA E545G Breast Cancer PIK3CA c.1634A>G (E545G) Mutation in Breast Cancer -PIK3CA E545V Breast Cancer PIK3CA c.1634A>T (E545V) Mutation in Breast Cancer -PIK3CA Q546E Breast Cancer PIK3CA c.1636C>G (Q546E) Mutation in Breast Cancer -PIK3CA Q546K Breast Cancer PIK3CA c.1636C>A (Q546K) Mutation in Breast Cancer -PIK3CA Q546L Breast Cancer PIK3CA c.1637A>T (Q546L) Mutation in Breast Cancer -PIK3CA Q546P Breast Cancer PIK3CA c.1637A>C (Q546P) Mutation in Breast Cancer -PIK3CA Q546R Breast Cancer PIK3CA c.1637A>G (Q546R) Mutation in Breast Cancer -PIK3CA D549N Breast Cancer PIK3CA c.1645G>A (D549N) Mutation in Breast Cancer -PIK3CA E542K Breast Cancer PIK3CA c.1624G>A (E542K) Mutation in Breast Cancer -PIK3CA E545K Breast Cancer PIK3CA c.1633G>A (E545K) Mutation in Breast Cancer -PIK3CA E545Q Breast Cancer PIK3CA c.1633G>C (E545Q) Mutation in Breast Cancer -PGR Expression Breast Cancer PR (PGR) Expression in Breast Cancer -PTEN R159Ss Breast Cancer PTEN c.477G>T (R159S) Mutations in Breast Cancer -PTEN R233* Breast Cancer PTEN c.697C>T (R233*) Mutations in Breast Cancer -PTEN K267fs Breast Cancer PTEN c.800delA (K267fs*9) Mutations in Breast Cancer -BIRC3 Truncating Mutations Chronic Lymphocytic Leukemia BIRC3 Truncating Mutations in Chronic Lymphocytic Leukemia -NOTCH1 P2514fs Chronic Lymphocytic Leukemia NOTCH1 c.7541_7542delCT (P2514fs) Mutation in Chronic Lymphocytic Leukemia -NOTCH1 Truncating Mutations Chronic Lymphocytic Leukemia NOTCH1 Truncating Mutations in Chronic Lymphocytic Leukemia -BCR-ABL1 Fusions Chronic Myeloid Leukemia BCR-ABL1 Fusions in Chronic Myeloid Leukemia -BCR-ABL1 F359V Chronic Myeloid Leukemia BCR-ABL1 c.1075T>G (F359V) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 F359I Chronic Myeloid Leukemia BCR-ABL1 c.1075T>A (F359I) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 F359C Chronic Myeloid Leukemia BCR-ABL1 c.1076T>G (F359C) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 E255V Chronic Myeloid Leukemia BCR-ABL1 c.764A>T (E255V) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 F317V Chronic Myeloid Leukemia BCR-ABL1 c.949T>G (F317V) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 F317L Chronic Myeloid Leukemia BCR-ABL1 c.951C>G (F317L) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 F317L Chronic Myeloid Leukemia BCR-ABL1 c.949T>C (F317L) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 F317L Chronic Myeloid Leukemia BCR-ABL1 c.951C>A (F317L) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 F317I Chronic Myeloid Leukemia BCR-ABL1 c.949T>A (F317I) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 F317C Chronic Myeloid Leukemia BCR-ABL1 c.950T>G (F317C) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 T315I Chronic Myeloid Leukemia BCR-ABL1 c.944C>T (T315I) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 T315A Chronic Myeloid Leukemia BCR-ABL1 c.943A>G (T315A) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 V299L Chronic Myeloid Leukemia BCR-ABL1 c.895G>T (V299L) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 V299L Chronic Myeloid Leukemia BCR-ABL1 c.895G>C (V299L) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 E255K Chronic Myeloid Leukemia BCR-ABL1 c.763G>A (E255K) Mutation in Chronic Myeloid Leukemia -BCR-ABL1 Y253H Chronic Myeloid Leukemia BCR-ABL1 c.757T>C (Y253H) Mutation in Chronic Myeloid Leukemia -AKT1 E17K Colorectal Cancer AKT1 c.49G>A (E17K) Mutation in Colorectal Cancer -BRAF G469E Colorectal Cancer BRAF c.1406G>A (G469E) Mutation in Colorectal Cancer -BRAF G469V Colorectal Cancer BRAF c.1406G>T (G469V) Mutation in Colorectal Cancer -BRAF D594G Colorectal Cancer BRAF c.1781A>G (D594G) Mutation in Colorectal Cancer -BRAF D594V Colorectal Cancer BRAF c.1781A>T (D594V) Mutation in Colorectal Cancer -BRAF G596R Colorectal Cancer BRAF c.1786G>C (G596R) Mutation in Colorectal Cancer -BRAF V600E Colorectal Cancer BRAF c.1799T>A (V600E) Mutation in Colorectal Cancer -BRAF G466V Colorectal Cancer BRAF c.1397G>T (G466V) Mutation in Colorectal Cancer -BRAF G469A Colorectal Cancer BRAF c.1406G>C (G469A) Mutation in Colorectal Cancer -KRAS G13V Colorectal Cancer KRAS c.38G>T (G13V) Mutation in Colorectal Cancer -KRAS K117N Colorectal Cancer KRAS c.351A>C (K117N) Mutation in Colorectal Cancer -KRAS K117N Colorectal Cancer KRAS c.351A>T (K117N) Mutation in Colorectal Cancer -KRAS A146P Colorectal Cancer KRAS c.436G>C (A146P) Mutation in Colorectal Cancer -KRAS A146T Colorectal Cancer KRAS c.436G>A (A146T) Mutation in Colorectal Cancer -KRAS A146V Colorectal Cancer KRAS c.437C>T (A146V) Mutation in Colorectal Cancer -KRAS Q61H Colorectal Cancer KRAS c.183A>C (Q61H) Mutation in Colorectal Cancer -KRAS Q61P Colorectal Cancer KRAS c.182A>C (Q61P) Mutation in Colorectal Cancer -KRAS Q61H Colorectal Cancer KRAS c.183A>T (Q61H) Mutation in Colorectal Cancer -KRAS G12A Colorectal Cancer KRAS c.35G>C (G12A) Mutation in Colorectal Cancer -KRAS G12C Colorectal Cancer KRAS c.34G>T (G12C) Mutation in Colorectal Cancer -KRAS G12D Colorectal Cancer KRAS c.35G>A (G12D) Mutation in Colorectal Cancer -KRAS G12R Colorectal Cancer KRAS c.34G>C (G12R) Mutation in Colorectal Cancer -KRAS G12S Colorectal Cancer KRAS c.34G>A (G12S) Mutation in Colorectal Cancer -KRAS G12V Colorectal Cancer KRAS c.35G>T (G12V) Mutation in Colorectal Cancer -KRAS G13C Colorectal Cancer KRAS c.37G>T (G13C) Mutation in Colorectal Cancer -KRAS G13D Colorectal Cancer KRAS c.38G>A (G13D) Mutation in Colorectal Cancer -KRAS G13R Colorectal Cancer KRAS c.37G>C (G13R) Mutation in Colorectal Cancer -KRAS Q61K Colorectal Cancer KRAS c.181C>A (Q61K) Mutation in Colorectal Cancer -KRAS Q61L Colorectal Cancer KRAS c.182A>T (Q61L) Mutation in Colorectal Cancer -KRAS Q61R Colorectal Cancer KRAS c.182A>G (Q61R) Mutation in Colorectal Cancer -KRAS G13A Colorectal Cancer KRAS c.38G>C (G13A) Mutation in Colorectal Cancer -KRAS G13S Colorectal Cancer KRAS c.37G>A (G13S) Mutation in Colorectal Cancer -NRAS Q61K Colorectal Cancer NRAS c.181C>A (Q61K) Mutation in Colorectal Cancer -NRAS Q61R Colorectal Cancer NRAS c.182A>G (Q61R) Mutation in Colorectal Cancer -NRAS G12A Colorectal Cancer NRAS c.35G>C (G12A) Mutation in Colorectal Cancer -NRAS G12C Colorectal Cancer NRAS c.34G>T (G12C) Mutation in Colorectal Cancer -NRAS G12D Colorectal Cancer NRAS c.35G>A (G12D) Mutation in Colorectal Cancer -NRAS G12S Colorectal Cancer NRAS c.34G>A (G12S) Mutation in Colorectal Cancer -NRAS G12V Colorectal Cancer NRAS c.35G>T (G12V) Mutation in Colorectal Cancer -PIK3CA H1047L Colorectal Cancer PIK3CA c.3140A>T (H1047L) Mutation in Colorectal Cancer -PIK3CA H1047R Colorectal Cancer PIK3CA c.3140A>G (H1047R) Mutation in Colorectal Cancer -PIK3CA E545G Coloretal Cancer PIK3CA c.1634A>G (E545G) Mutation in Coloretal Cancer -PIK3CA E545V Colorectal Cancer PIK3CA c.1634A>T (E545V) Mutation in Colorectal Cancer -PIK3CA Q546E Colorectal Cancer PIK3CA c.1636C>G (Q546E) Mutation in Colorectal Cancer -PIK3CA Q546K Colorectal Cancer PIK3CA c.1636C>A (Q546K) Mutation in Colorectal Cancer -PIK3CA Q546L Colorectal Cancer PIK3CA c.1637A>T (Q546L) Mutation in Colorectal Cancer -PIK3CA Q546P Colorectal Cancer PIK3CA c.1637A>C (Q546P) Mutation in Colorectal Cancer -PIK3CA Q546R Colorectal Cancer PIK3CA c.1637A>G (Q546R) Mutation in Colorectal Cancer -PIK3CA D549N Colorectal Cancer PIK3CA c.1645G>A (D549N) Mutation in Colorectal Cancer -PIK3CA E542K Colorectal Cancer PIK3CA c.1624G>A (E542K) Mutation in Colorectal Cancer -PIK3CA E545K Colorectal Cancer PIK3CA c.1633G>A (E545K) Mutation in Colorectal Cancer -PIK3CA E545Q Colorectal Cancer PIK3CA c.1633G>C (E545Q) Mutation in Colorectal Cancer -PTEN R159Ss Colorectal Cancer PTEN c.477G>T (R159S) Mutations in Colorectal Cancer -PTEN R233* Colorectal Cancer PTEN c.697C>T (R233*) Mutations in Colorectal Cancer -PTEN K267fs Colorectal Cancer PTEN c.800delA (K267fs*9) Mutations in Colorectal Cancer -SMAD4 E330A Colorectal Cancer SMAD4 c.989A>C (E330A) Mutation in Colorectal Cancer -SMAD4 D351H Colorectal Cancer SMAD4 c.1051G>C (D351H) Mutation in Colorectal Cancer -SMAD4 D537Y Colorectal Cancer SMAD4 c.1609G>T (D537Y) Mutation in Colorectal Cancer -SMAD4 D351N Colorectal Cancer SMAD4 c.1051G>A (D351N) mutation in Colorectal Cancer -SMAD4 D355E Colorectal Cancer SMAD4 c.1065C>A (D355E) Mutation in Colorectal Cancer -SMAD4 R361S Colorectal Cancer SMAD4 c.1081C>A (R361S) Mutation in Colorectal Cancer -SMAD4 R361C Colorectal Cancer SMAD4 c.1081C>T (R361C) Mutation in Colorectal Cancer -SMAD4 R361H Colorectal Cancer SMAD4 c.1082G>A (R361H) Mutation in Colorectal Cancer -ERBB2 Amplification Gastric Cancer HER2 (ERBB2) Amplification in Gastric Cancer -BRAF V600E GIST BRAF c.1799T>A (V600E) mutation in GIST -KIT Exon 9 Mutation GIST KIT Exon 9 Mutation in GIST -KIT Exon 11 Mutation GIST KIT Exon 11 Mutation in GIST -KIT Exon 13 Mutation GIST KIT Exon 13 Mutation in GIST -KIT Exon 14 Mutation GIST KIT Exon 14 Mutation in GIST -KIT Exon 17 Mutation GIST KIT Exon 17 Mutation in GIST -PDGFRA Exon 18 Mutation GIST PDGFRA Exon 18 Mutation in GIST (D842V) -PDGFRA Exon 12 Mutation GIST PDGFRA Exon 12 Mutation in GIST -PDGFRA Exon 14 Mutation GIST PDGFRA Exon 14 Mutation in GIST -PDGFRA Exon 18 Mutation GIST PDGFRA Exon 18 Mutation in GIST -BRAF V600E Glioma BRAF c.1799T>A (V600E) Mutation in Glioma -IDH1 R132C Glioma IDH1 c.394C>T (R132C) Mutation in Glioma -IDH1 R132G Glioma IDH1 c.394C>G (R132G) Mutation in Glioma -IDH1 R132S Glioma IDH1 c.394C>A (R132S) Mutation in Glioma -IDH1 R132H Glioma IDH1 c.395G>A (R132H) Mutation in Glioma -IDH1 R132L Glioma IDH1 c.395G>T (R132L) Mutation in Glioma -IDH2 R172K Glioma IDH2 c.515G>A (R172K) Mutation in Glioma -IDH2 R172M Glioma IDH2 c.515G>T (R172M) Mutation in Glioma -IDH2 R172S Glioma IDH2 c.516G>C (R172S) Mutation in Glioma -IDH2 R172G Glioma IDH2 c.514A>G (R172G) Mutation in Glioma -IDH2 R172W Glioma IDH2 c.514A>T (R172W) Mutation in Glioma -IDH2 R172S Glioma IDH2 c.516G>T (R172S) Mutation in Glioma -ALK Fusions Inflammatory Myofibroblastic Tumor ALK Fusions in Inflammatory Myofibroblastic Tumor -AKT1 E17Ks Non-Small Cell Lung Cancer AKT1 c.49G>A (E17K) Mutations in Non-Small Cell Lung Cancer (NSCLC) -ALK Fusions Non-Small Cell Lung Cancer ALK Fusions in Non-Small Cell Lung Cancer -BRAF Y472C Non-Small Cell Lung Cancer BRAF c.1415A>G (Y472C) Mutation in Non-Small Cell Lung Cancer -BRAF G469L Non-Small Cell Lung Cancer BRAF c.1405_1406delGGinsTT (G469L) Mutation in Non-Small Cell Lung Cancer -BRAF V600E Non-Small Cell Lung Cancer BRAF c.1799T>A (V600E) Mutation in Non-Small Cell Lung Cancer -BRAF G466V Non-Small Cell Lung Cancer BRAF c.1397G>T (G466V) Mutation in Non-Small Cell Lung Cancer -BRAF G469A Non-Small Cell Lung Cancer BRAF c.1406G>C (G469A) Mutation in Non-Small Cell Lung Cancer -BRAF L597V Non-Small Cell Lung Cancer BRAF c.1789C>G (L597V) Mutation in Non-Small Cell Lung Cancer -DDR2 S768R Squamous Cell Carcinoma of the Lung DDR2 c.2304T>A (S768R) Mutation in Squamous Cell Carcinoma of the Lung -EGFR G719As Non-Small Cell Lung Cancer EGFR c.2156G>C (G719A) Mutations in Non-Small Cell Lung Cancer -EGFR Exon 19 Insertion Non-Small Cell Lung Cancer EGFR Exon 19 Insertion in Non-Small Cell Lung Cancer -EGFR G719Cs Non-Small Cell Lung Cancer EGFR c.2155G>T (G719C) Mutations in Non-Small Cell Lung Cancer -EGFR Exon 19 Deletion Non-Small Cell Lung Cancer EGFR Exon 19 Deletion in Non-Small Cell Lung Cancer -EGFR G719Ss Non-Small Cell Lung Cancer EGFR c.2155G>A (G719S) Mutations in Non-Small Cell Lung Cancer -EGFR A763_Y764insFQEA Non-Small Cell Lung Cancer EGFR c.2290_2291ins (A763_Y764insFQEA) Mutation in Non-Small Cell Lung Cancer -EGFR Status Unknown Non-Small Cell Lung cancer EGFR Status Unknown in Non-Small Cell Lung cancer -EGFR exon 18–25 Kinase Domain Duplication (EGFR-KDD) Non-Small Cell Lung Cancer EGFR exon 18–25 Kinase Domain Duplication (EGFR-KDD) in Non-Small Cell Lung Cancer -EGFR T790M Non-Small Cell Lung Cancer EGFR c.2369C>T (T790M) Mutation in Non-Small Cell Lung Cancer -EGFR L858R Non-Small Cell Lung Cancer EGFR c.2573T>G (L858R) Mutation in Non-Small Cell Lung Cancer -EGFR L861Q Non-Small Cell Lung Cancer EGFR c.2582T>A (L861Q) Mutation in Non-Small Cell Lung Cancer -EGFR Exon 20 Insertion Non-Small Cell Lung Cancer EGFR Exon 20 Insertion in Non-Small Cell Lung Cancer -FGFR1 Amplification Squamous Cell Carcinoma of the Lung FGFR1 Amplification in SCC of the Lung -FGFR3 Fusions Lung Cancer FGFR3 Fusions in Lung Cancer -ERBB2 ERBB2 Exon 20 Insertion Non-Small Cell Lung Cancer HER2 (ERBB2) Exon 20 Insertion in Non-Small Cell Lung Cancer -KRAS Q61H Non-Small Cell Lung Cancer KRAS c.183A>C (Q61H) Mutation in Non-Small Cell Lung Cancer -KRAS Q61H Non-Small Cell Lung Cancer KRAS c.183A>T (Q61H) Mutation in Non-Small Cell Lung Cancer -KRAS G12A Non-Small Cell Lung Cancer KRAS c.35G>C (G12A) Mutation in Non-Small Cell Lung Cancer -KRAS G12C Non-Small Cell Lung Cancer KRAS c.34G>T (G12C) Mutation in Non-Small Cell Lung Cancer -KRAS G12D Non-Small Cell Lung Cancer KRAS c.35G>A (G12D) Mutation in Non-Small Cell Lung Cancer -KRAS G12R Non-Small Cell Lung Cancer KRAS c.34G>C (G12R) Mutation in Non-Small Cell Lung Cancer -KRAS G12S Non-Small Cell Lung Cancer KRAS c.34G>A (G12S) Mutation in Non-Small Cell Lung Cancer -KRAS G12V Non-Small Cell Lung Cancer KRAS c.35G>T (G12V) Mutation in Non-Small Cell Lung Cancer -KRAS G13C Non-Small Cell Lung Cancer KRAS c.37G>T (G13C) Mutation in Non-Small Cell Lung Cancer -KRAS G13D Non-Small Cell Lung Cancer KRAS c.38G>A (G13D) Mutation in Non-Small Cell Lung Cancer -KRAS G13R Non-Small Cell Lung Cancer KRAS c.37G>C (G13R) Mutation in Non-Small Cell Lung Cancer -KRAS Q61K Non-Small Cell Lung Cancer KRAS c.181C>A (Q61K) Mutation in Non-Small Cell Lung Cancer -KRAS Q61L Non-Small Cell Lung Cancer KRAS c.182A>T (Q61L) Mutation in Non-Small Cell Lung Cancer -KRAS Q61R Non-Small Cell Lung Cancer KRAS c.182A>G (Q61R) Mutation in Non-Small Cell Lung Cancer -KRAS G13A Non-Small Cell Lung Cancer KRAS c.38G>C (G13A) Mutation in Non-Small Cell Lung Cancer -KRAS G13S Non-Small Cell Lung Cancer KRAS c.37G>A (G13S) Mutation in Non-Small Cell Lung Cancer -MAP2K1 D67Ns Non-Small Cell Lung Cancer MEK1 (MAP2K1) c.199G>A (D67N) Mutations in Non-Small Cell Lung Cancer (NSCLC) -MAP2K1 K57Ns Non-Small Cell Lung Cancer MEK1 (MAP2K1) c.171G>T (K57N) Mutations in Non-Small Cell Lung Cancer (NSCLC) -MAP2K1 Q56P Non-Small Cell Lung Cancer MEK1 (MAP2K1) c.167A>C (Q56P) Mutation in Non-Small Cell Lung Cancer (NSCLC) -MET Exon 14 Skipping Mutations Lung Cancer MET Exon 14 Skipping Mutations in Lung Cancer -MET Amplification Non-Small Cell Lung Cancer MET Amplification in Non-Small Cell Lung Cancer -NRAS Q61K Non-Small Cell Lung Cancer NRAS c.181C>A (Q61K) Mutation in Non-Small Cell Lung Cancer -NRAS Q61L Non-Small Cell Lung Cancer NRAS c.182A>T (Q61L) Mutation in Non-Small Cell Lung Cancer -NRAS Q61R Non-Small Cell Lung Cancer NRAS c.182A>G (Q61R) Mutation in Non-Small Cell Lung Cancer -NRAS Q61H Non-Small Cell Lung Cancer NRAS c.183A>C (Q61H) Mutation in Non-Small Cell Lung Cancer -NRAS Q61H Lung Cancer NRAS c.183A>T (Q61H) Mutation in Lung Cancer -NRAS G12A Non-Small Cell Lung Cancer NRAS c.35G>C (G12A) Mutation in Non-Small Cell Lung Cancer -NRAS G12C Non-Small Cell Lung Cancer NRAS c.34G>T (G12C) Mutation in Non-Small Cell Lung Cancer -NRAS G12D Non-Small Cell Lung Cancer NRAS c.35G>A (G12D) Mutation in Non-Small Cell Lung Cancer -NRAS G12R Non-Small Cell Lung Cancer NRAS c.34G>C (G12R) Mutation in Non-Small Cell Lung Cancer -NRAS G12S Non-Small Cell Lung Cancer NRAS c.34G>A (G12S) Mutation in Non-Small Cell Lung Cancer -NTRK1 Fusions Lung Cancer NTRK1 (TRKA) Fusions in Lung Cancer -PIK3CA H1047L Non-Small Cell Lung Cancer PIK3CA c.3140A>T (H1047L) Mutation in Non-Small Cell Lung Cancer -PIK3CA H1047R Non-Small Cell Lung Cancer PIK3CA c.3140A>G (H1047R) Mutation in Non-Small Cell Lung Cancer -PIK3CA E542K Non-Small Cell Lung Cancer PIK3CA c.1624G>A (E542K) Mutation in Non-Small Cell Lung Cancer -PIK3CA E545K Non-Small Cell Lung Cancer PIK3CA c.1633G>A (E545K) Mutation in Non-Small Cell Lung Cancer -PIK3CA E545Q Non-Small Cell Lung Cancer PIK3CA c.1633G>C (E545Q) Mutation in Non-Small Cell Lung Cancer -PTEN R233* Non-Small Cell Lung Cancer PTEN c.697C>T (R233*) Mutations in Non-Small Cell Lung Cancer (NSCLC) -RET Fusions Non-Small Cell Lung Cancer RET Fusions in Non-Small Cell Lung Cancer -RICTOR Amplification Lung Cancer RICTOR Amplification in Lung Cancer -ROS1 Fusions Non-Small Cell Lung Cancer ROS1 Fusions in Non-Small Cell Lung Cancer -SMO D473H Medulloblastoma SMO c.1417G>C (D473H) Mutation in Medulloblastoma -BRAF V600E Melanoma BRAF c.1799_1800delTGinsAA (V600E) Mutation in Melanoma -BRAF V600D Melanoma BRAF c.1799_1800delTGinsAT (V600D) Mutation in Melanoma -BRAF V600G Melanoma BRAF c.1799T>G (V600G) Mutation in Melanoma -BRAF V600K Melanoma BRAF c.1798_1799delGTinsAA (V600K) Mutation in Melanoma -BRAF V600M Melanoma BRAF c.1798G>A (V600M) Mutation in Melanoma -BRAF V600R Melanoma BRAF c.1798_1799delGTinsAG (V600R) Mutation in Melanoma -BRAF L597R Melanoma BRAF c.1790T>G (L597R) Mutation in Melanoma -BRAF D594G Melanoma BRAF c.1781A>G (D594G) Mutation in Melanoma -BRAF D594V Melanoma BRAF c.1781A>T (D594V) Mutation in Melanoma -BRAF L597Q Melanoma BRAF c.1790T>A (L597Q) Mutation in Melanoma -BRAF L597S Melanoma BRAF c.1789_1790delCTinsTC (L597S) Mutation in Melanoma -BRAF K601E Melanoma BRAF c.1801A>G (K601E) Mutation in Melanoma -BRAF D594N Melanoma BRAF c.1780G>A (D594N) Mutation in Melanoma -BRAF D594N Melanoma BRAF c.1779_1780delTGinsGA (D594N) Mutation in Melanoma -BRAF D594H Melanoma BRAF c.1780G>C (D594H) Mutation in Melanoma -BRAF D594E Melanoma BRAF c.1782T>A (D594E) Mutation in Melanoma -BRAF D594E Melanoma BRAF c.1782T>G (D594E) Mutation in Melanoma -BRAF Fusions Melanoma BRAF Fusions in Melanoma -BRAF V600E Melanoma BRAF c.1799T>A (V600E) Mutation in Melanoma -BRAF L597V Melanoma BRAF c.1789C>G (L597V) Mutation in Melanoma -CTNNB1 S37F Melanoma CTNNB1(beta-catenin) c.110C>T (S37F) Mutation in Melanoma -CTNNB1 S37Y Melanoma CTNNB1 (beta-catenin) c.110C>A (S37Y) Mutation in Melanoma -CTNNB1 S45F Melanoma CTNNB1 (beta-catenin) c.134C>T (S45F) Mutation in Melanoma -CTNNB1 S45P Melanoma CTNNB1 (beta-catenin) c.133T>C (S45P) Mutation in Melanoma -CTNNB1 S45Y Melanoma CTNNB1 (beta-catenin) c.134C>A (S45Y) Mutation in Melanoma -GNA11 Q209P Melanoma GNA11 c.626A>C (Q209P) Mutation in Melanoma -GNA11 R183C Melanoma GNA11 c.546_547delCCinsTT (R183C) Mutation in Melanoma -GNA11 R183C Melanoma GNA11 c.547C>T (R183C) Mutation in Melanoma -GNA11 Q209L Melanoma GNA11 c.626A>T (Q209L) Mutation in Melanoma -GNAQ Q209L Melanoma GNAQ c.626A>T (Q209L) Mutation in Melanoma -GNAQ Q209P Melanoma GNAQ c.626A>C (Q209P) Mutation in Melanoma -GNAQ Q209R Melanoma GNAQ c.626A>G (Q209R) Mutation in Melanoma -GNAQ R183Q Melanoma GNAQ c.548G>A (R183Q) Mutation in Melanoma -KIT W557R Melanoma KIT c.1669T>A (W557R) Mutation in Melanoma -KIT W557R Melanoma KIT c.1669T>C (W557R) Mutation in Melanoma -KIT V559A Melanoma KIT c.1676T>C (V559A) Mutation in Melanoma -KIT V559D Melanoma KIT c.1676T>A (V559D) Mutation in Melanoma -Other KIT mutations Melanoma Other KIT mutations in Melanoma -KIT Amplification Melanoma KIT Amplification in Melanoma -KIT D816H Melanoma KIT c.2446G>C (D816H) Mutation in Melanoma -KIT K642E Melanoma KIT c.1924A>G (K642E) Mutation in Melanoma -KIT L576P Melanoma KIT c.1727T>C (L576P) Mutation in Melanoma -MAP2K1 F53L Melanoma MEK1 (MAP2K1) c.157T>C (F53L) Mutation in Melanoma -MAP2K1 I111S Melanoma MEK1 (MAP2K1) c.332T>G (I111S) Mutation in Melanoma -MAP2K1 C121S Melanoma MEK1 (MAP2K1) c.362G>C (C121S) Mutation in Melanoma -MAP2K1 P124L Melanoma MEK1 (MAP2K1) c.371C>T (P124L) Mutation in Melanoma -MAP2K1 P124S Melanoma MEK1 (MAP2K1) c.370C>T (P124S) Mutation in Melanoma -MAP2K1 E203K Melanoma MEK1 (MAP2K1) c.607G>A (E203K) Mutation in Melanoma -MAP2K1 P264S Melanoma MEK1 (MAP2K1) c.790C>T (P264S) Mutation in Melanoma -MAP2K1 N382H Melanoma MEK1 (MAP2K1) c.1144A>C (N382H) Mutation in Melanoma -NF1 Mutations Melanoma NF1 Mutations in Melanoma -NRAS G13C Melanoma NRAS c.37G>T (G13C) Mutation in Melanoma -NRAS Q61K Melanoma NRAS c.181C>A (Q61K) Mutation in Melanoma -NRAS Q61L Melanoma NRAS c.182A>T (Q61L) Mutation in Melanoma -NRAS Q61R Melanoma NRAS c.182A>G (Q61R) Mutation in Melanoma -NRAS Q61H Melanoma NRAS c.183A>C (Q61H) Mutation in Melanoma -NRAS Q61H Melanoma NRAS c.183A>T (Q61H) Mutation in Melanoma -NRAS Q61R Melanoma NRAS c.182_183delAAinsGG (Q61R) Mutation in Melanoma -NRAS Q61L Melanoma NRAS c.182_183delAAinsTG (Q61L) Mutation in Melanoma -NRAS G12A Melanoma NRAS c.35G>C (G12A) Mutation in Melanoma -NRAS G12C Melanoma NRAS c.34G>T (G12C) Mutation in Melanoma -NRAS G12D Melanoma NRAS c.35G>A (G12D) Mutation in Melanoma -NRAS G12R Melanoma NRAS c.34G>C (G12R) Mutation in Melanoma -NRAS G12S Melanoma NRAS c.34G>A (G12S) Mutation in Melanoma -NRAS G12V Melanoma NRAS c.35G>T (G12V) Mutation in Melanoma -NRAS G13A Melanoma NRAS c.38G>C (G13A) Mutation in Melanoma -NRAS G13D Melanoma NRAS c.38G>A (G13D) Mutation in Melanoma -NRAS G13R Melanoma NRAS c.37G>C (G13R) Mutation in Melanoma -NRAS G13V Melanoma NRAS c.38G>T (G13V) Mutation in Melanoma -NRAS Q61E Melanoma NRAS c.181C>G (Q61E) Mutation in Melanoma -NRAS Q61P Melanoma NRAS c.182A>C (Q61P) Mutation in Melanoma -ASXL1 Mutations Myelodysplastic Syndromes ASXL1 Mutations in Myelodysplastic Syndromes -BCOR Mutations Myelodysplastic Syndromes BCOR Mutations in Myelodysplastic Syndromes -DNMT3A Mutations Myelodysplastic Syndromes DNMT3A Mutations in Myelodysplastic Syndromes -ETV6 Mutations Myelodysplastic Syndromes ETV6 Mutations in Myelodysplastic Syndromes -EZH2 Mutations Myelodysplastic Syndromes EZH2 Mutations in Myelodysplastic Syndromes -NF1 Mutations Myelodysplastic Syndromes NF1 Mutations in Myelodysplastic Syndromes -RUNX1 Mutations Myelodysplastic Syndromes RUNX1 Mutations in Myelodysplastic Syndromes -SF3B1 Mutations Myelodysplastic Syndromes SF3B1 Mutations in Myelodysplastic Syndromes -SRSF2 Mutations Myelodysplastic Syndromes SRSF2 Mutations in Myelodysplastic Syndromes -STAG2 Mutations Myelodysplastic Syndromes STAG2 Mutations in Myelodysplastic Syndromes -TET2 Mutations Myelodysplastic Syndromes TET2 Mutations in Myelodysplastic Syndromes -TP53 Mutations Myelodysplastic Syndromes TP53 Mutations in Myelodysplastic Syndromes -U2AF1 Mutations Myelodysplastic Syndromes U2AF1 Mutations in Myelodysplastic Syndromes -ZRSR2 Mutations Myelodysplastic Syndromes ZRSR2 Mutations in Myelodysplastic Syndromes -ALK D1091N Neuroblastoma ALK c.3271G>A (D1091N) Mutation in Neuroblastoma -ALK T1151M Neuroblastoma ALK c.3452C>T (T1151M) Mutation in Neuroblastoma -ALK I1171N Neuroblastoma ALK c.3512T>A (I1171N) Mutation in Neuroblastoma -ALK F1174C Neuroblastoma ALK c.3521T>G (F1174C) Mutation in Neuroblastoma -ALK F1174I Neuroblastoma ALK c.3520T>A (F1174I) Mutation in Neuroblastoma -ALK F1174L Neuroblastoma ALK c.3522C>A (F1174L) Mutation in Neuroblastoma -ALK F1174V Neuroblastoma ALK c.3520T>G (F1174V) Mutation in Neuroblastoma -ALK F1245C Neuroblastoma ALK c.3734T>G (F1245C) Mutation in Neuroblastoma -ALK F1245L Neuroblastoma ALK c.3735C>G (F1245L) Mutation in Neuroblastoma -ALK F1245V Neuroblastoma ALK c.3733T>G (F1245V) Mutation in Neuroblastoma -ALK R1275Q Neuroblastoma ALK c.3824G>A (R1275Q) Mutation in Neuroblastoma -ALK Y1278S Neuroblastoma ALK c.3833A>C (Y1278S) Mutation in Neuroblastoma -BRAF L597R Ovarian Cancer BRAF c.1790T>G (L597R) Mutation in Ovarian Cancer -BRAF V600E Ovarian Cancer BRAF c.1799T>A (V600E) Mutation in Ovarian Cancer -KRAS G12A Ovarian Cancer KRAS c.35G>C (G12A) Mutation in Ovarian Cancer -KRAS G12C Ovarian Cancer KRAS c.34G>T (G12C) Mutation in Ovarian Cancer -KRAS G12D Ovarian Cancer KRAS c.35G>A (G12D) Mutation in Ovarian Cancer -KRAS G12R Ovarian Cancer KRAS c.34G>C (G12R) Mutation in Ovarian Cancer -KRAS G12V Ovarian Cancer KRAS c.35G>T (G12V) Mutation in Ovarian Cancer -KRAS G13D Ovarian Cancer KRAS c.38G>A (G13D) Mutation in Ovarian Cancer -PIK3CA H1047L Ovarian Cancer PIK3CA c.3140A>T (H1047L) Mutation in Ovarian Cancer -PIK3CA H1047R Ovarian Cancer PIK3CA c.3140A>G (H1047R) Mutation in Ovarian Cancer -PIK3CA Q546K Ovarian Cancer PIK3CA c.1636C>A (Q546K) Mutation in Ovarian Cancer -PIK3CA E542K Ovarian Cancer PIK3CA c.1624G>A (E542K) Mutation in Ovarian Cancer -PIK3CA E545K Ovarian Cancer PIK3CA c.1633G>A (E545K) Mutation in Ovarian Cancer -PTEN R130* Ovarian Cancer PTEN c.388C>T (R130*) Mutation in Ovarian Cancer -PTEN N323fs Ovarian Cancer PTEN c.968dupA (N323fs*2) Mutation in Ovarian Cancer -PTEN N323fs Ovarian Cancer PTEN c.968delA (N323fs*21) Mutation in Ovarian Cancer -PTEN P248fs Ovarian Cancer PTEN c.741dupA (P248fs*5) Mutation in Ovarian Cancer -PTEN R130fs Ovarian Cancer PTEN c.389delG (R130fs*4) Mutation in Ovarian Cancer -PTEN R130Q Ovarian Cancer PTEN c.389G>A (R130Q) Mutation in Ovarian Cancer -PTEN R130G Ovarian Cancer PTEN c.388C>G (R130G) Mutation in Ovarian Cancer -ALK Exon Deletion Rhabdomyosarcoma ALK Exon Deletion in Rhabdomyosarcoma -ALK D1225N Rhabdomyosarcoma ALK c.3673G>A (D1225N) Mutation in Rhabdomyosarcoma -KIT W557R Thymic Carcinoma KIT c. 1669T>C (W557R) Mutation in Thymic Carcinoma -KIT V559A Thymic Carcinoma KIT c. 1676T>C (V559A) Mutation in Thymic Carcinoma -KIT D820E Thymic Carcinoma KIT c.2460T>A (D820E) Mutation in Thymic Carcinoma -KIT H697Y Thymic Carcinoma KIT c.2089C>T (H697Y) Mutation in Thymic Carcinoma -KIT P577_D579del Thymic Carcinoma KIT c.1730_1738del (P577_D579del) Mutation in Thymic Carcinoma -KIT V560del Thymic Carcinoma KIT c.1679_1681del (V560del) Mutation in Thymic Carcinoma -KIT Y553N Thymic Carcinoma KIT c.1657T>A (Y553N) Mutation in Thymic Carcinoma -KIT E490K Thymic Carcinoma KIT c.1468G>A (E490K) Mutation in Thymic Carcinoma -KIT L576P Thymic Carcinoma KIT c.1727T>C (L576P) Mutation in Thymic Carcinoma -AKAP-BRAF Translocation Thyroid Cancer AKAP-BRAF Translocation in Thyroid Cancer -BRAF V600E Thyroid Cancer BRAF c.1799T>A (V600E) Mutation in Thyroid Cancer -HRAS G12R Thyroid Cancer HRAS c.34G>C (G12R) Mutation in Thyroid Cancer -HRAS G12V Thyroid Cancer HRAS c.35G>T (G12V) Mutation in Thyroid Cancer -HRAS G13C Thyroid Cancer HRAS c.37G>T (G13C) Mutation in Thyroid Cancer -HRAS G13R Thyroid Cancer HRAS c.37G>C (G13R) Mutation in Thyroid Cancer -HRAS Q61R Thyroid Cancer HRAS c.182A>G (Q61R) Mutation in Thyroid Cancer -KRAS A146V Thyroid Cancer KRAS c.437C>T (A146V) Mutation in Thyroid Cancer -KRAS Q61P Thyroid Cancer KRAS c.182A>C (Q61P) Mutation in Thyroid Cancer -KRAS G12A Thyroid Cancer KRAS c.35G>C (G12A) Mutation in Thyroid Cancer -KRAS G12C Thyroid Cancer KRAS c.34G>T (G12C) Mutation in Thyroid Cancer -KRAS G12D Thyroid Cancer KRAS c.35G>A (G12D) Mutation in Thyroid Cancer -KRAS G12R Thyroid Cancer KRAS c.34G>C (G12R) Mutation in Thyroid Cancer -KRAS G12S Thyroid Cancer KRAS c.34G>A (G12S) Mutation in Thyroid Cancer -KRAS G12V Thyroid Cancer KRAS c.35G>T (G12V) Mutation in Thyroid Cancer -KRAS G13D Thyroid Cancer KRAS c.38G>A (G13D) Mutation in Thyroid Cancer -KRAS G13R Thyroid Cancer KRAS c.37G>C (G13R) Mutation in Thyroid Cancer -KRAS Q61K Thyroid Cancer KRAS c.181C>A (Q61K) Mutation in Thyroid Cancer -KRAS Q61L Thyroid Cancer KRAS c.182A>T (Q61L) Mutation in Thyroid Cancer -KRAS Q61R Thyroid Cancer KRAS c.182A>G (Q61R) Mutation in Thyroid Cancer -KRAS G13S Thyroid Cancer KRAS c.37G>A (G13S) Mutation in Thyroid Cancer -NRAS Q61K Thyroid Cancer NRAS c.181C>A (Q61K) Mutation in Thyroid Cancer -NRAS Q61R Thyroid Cancer NRAS c.182A>G (Q61R) Mutation in Thyroid Cancer -RET C634 Mutations Thyroid Cancer RET C634 Mutations in Thyroid Cancer -RET Fusions Thyroid Cancer RET Fusions in Thyroid Cancer -RET M918T Mutations Thyroid Cancer RET M918T Mutations in Thyroid Cancer diff --git a/core/src/main/resources/os_plot.txt b/core/src/main/resources/os_plot.txt deleted file mode 100644 index 51d4727dfc5..00000000000 --- a/core/src/main/resources/os_plot.txt +++ /dev/null @@ -1,25 +0,0 @@ -library(Cairo) -library(survival) -attach(df) - -# Perform Overall Survival Analysis -os_surv = Surv (df$OS_MONTHS, df$OS_STATUS) -two_colors = c("blue", "red") -os_surv_fit = survfit(os_surv ~ GENE_SET_ALTERED) - -if (length(unique(df$GENE_SET_ALTERED))==1) { - # Plot Single Group - plot (os_surv_fit, yscale=100, xlab="Months Survival", ylab="% Surviving", cex.main=1.0, cex.axis=1.0, cex.lab=1.0, font=1) -} else { - # Plot Two Groups - os_log_rank = survdiff (os_surv ~ GENE_SET_ALTERED) - os_p_val <- 1 - pchisq(os_log_rank$chisq, length(os_log_rank$n) - 1) - - # Plot it - plot (os_surv_fit, col=two_colors, yscale=100, xlab="Months Survival", ylab="% Surviving", cex.main=1.0, cex.axis=1.0, cex.lab=1.0, font=1) - strata = names (os_surv_fit$strata) - strata_english = gsub("GENE_SET_ALTERED=TRUE", "Gene Set Altered", strata) - strata_english = gsub("GENE_SET_ALTERED=FALSE", "Gene Set Not Altered", strata_english) - legend ("topright", bty="n", strata_english, fill=two_colors) - legend ("topright", bty="n", paste("Logrank test p-value: ", sprintf("%.6f", os_p_val)), inset=c(0.0, 0.1)) -} \ No newline at end of file diff --git a/core/src/main/resources/sample_data/cancers.txt b/core/src/main/resources/sample_data/cancers.txt deleted file mode 100644 index e6077d7d051..00000000000 --- a/core/src/main/resources/sample_data/cancers.txt +++ /dev/null @@ -1,22 +0,0 @@ -BLCA : Bladder Urothelial Carcinoma -BRCA : Breast invasive carcinoma -CESC : Cervical Squamous Cell Carcinoma -COAD : Colon adenocarcinoma -GBM : Glioblastoma multiforme -HNSC : Head and Neck squamous cell carcinoma -KIRC : Kidney renal clear cell carcinoma -KIRP : Kidney renal papillary cell carcinoma -LAML : Acute Myeloid Leukemia -LGG : Brain Lower Grade Glioma -LIHC : Liver hepatocellular carcinoma -LUAD : Lung adenocarcinoma -LUSC : Lung squamous cell carcinoma -OV : Ovarian serous cystadenocarcinoma -PAAD : Pancreatic adenocarcinoma -PRAD : Prostate adenocarcinoma -READ : Rectum adenocarcinoma -SARC: Sarcoma -STAD : Stomach adenocarcinoma -THCA : Thyroid carcinoma -UCEC : Uterine Corpus Endometrioid Carcinoma -COADREAD : Colon and Rectum adenocarcinoma \ No newline at end of file diff --git a/core/src/main/resources/sample_data/gbm/GBM_clinical_portal_20110210.txt b/core/src/main/resources/sample_data/gbm/GBM_clinical_portal_20110210.txt deleted file mode 100644 index 4ea21416519..00000000000 --- a/core/src/main/resources/sample_data/gbm/GBM_clinical_portal_20110210.txt +++ /dev/null @@ -1,455 +0,0 @@ -CASE_ID OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TCGA-02-0001 1:DECEASED 11.60547945 1:Recurred 4.504109589 -TCGA-02-0003 1:DECEASED 4.734246575 1:Recurred 1.315068493 -TCGA-02-0004 1:DECEASED 11.34246575 1:Recurred 10.32328767 -TCGA-02-0006 1:DECEASED 18.34520548 1:Recurred 9.928767123 -TCGA-02-0007 1:DECEASED 23.17808219 1:Recurred 17.03013699 -TCGA-02-0009 1:DECEASED 10.58630137 1:Recurred 8.679452055 -TCGA-02-0010 1:DECEASED 35.40821918 1:Recurred 11.53972603 -TCGA-02-0011 1:DECEASED 20.71232877 1:Recurred 4.734246575 -TCGA-02-0014 1:DECEASED 82.55342466 NA NA -TCGA-02-0015 1:DECEASED 20.61369863 1:Recurred 14.99178082 -TCGA-02-0016 0:LIVING 55.85753425 1:Recurred 55.85753425 -TCGA-02-0021 1:DECEASED 77.62191781 1:Recurred 8.350684931 -TCGA-02-0023 1:DECEASED 20.12054795 1:Recurred 14.30136986 -TCGA-02-0024 1:DECEASED 53.0630137 1:Recurred 46.02739726 -TCGA-02-0025 1:DECEASED 42.73972603 1:Recurred 21.56712329 -TCGA-02-0026 1:DECEASED 24.59178082 1:Recurred 15.1890411 -TCGA-02-0027 1:DECEASED 12.16438356 1:Recurred 8.449315068 -TCGA-02-0028 1:DECEASED 90.57534247 1:Recurred 63.15616438 -TCGA-02-0033 1:DECEASED 2.82739726 1:Recurred 1.052054795 -TCGA-02-0034 1:DECEASED 14.1369863 1:Recurred 12.69041096 -TCGA-02-0037 1:DECEASED 3.583561644 1:Recurred 1.216438356 -TCGA-02-0038 1:DECEASED 10.71780822 1:Recurred 7.824657534 -TCGA-02-0039 1:DECEASED 10.52054795 1:Recurred 3.353424658 -TCGA-02-0043 1:DECEASED 18.27945205 1:Recurred 9.271232877 -TCGA-02-0046 1:DECEASED 6.838356164 1:Recurred 6.378082192 -TCGA-02-0047 1:DECEASED 14.69589041 1:Recurred 1.873972603 -TCGA-02-0048 1:DECEASED 3.189041096 1:Recurred 0.756164384 -TCGA-02-0051 1:DECEASED 15.05753425 1:Recurred 2.893150685 -TCGA-02-0052 1:DECEASED 12.59178082 1:Recurred 6.706849315 -TCGA-02-0054 1:DECEASED 6.542465753 1:Recurred 2.367123288 -TCGA-02-0055 1:DECEASED 2.498630137 1:Recurred 0.197260274 -TCGA-02-0057 1:DECEASED 19.85753425 1:Recurred 15.55068493 -TCGA-02-0058 1:DECEASED 8.350684931 1:Recurred 5.621917808 -TCGA-02-0059 1:DECEASED 9.567123288 1:Recurred 0.690410959 -TCGA-02-0060 1:DECEASED 6.016438356 1:Recurred 6.016438356 -TCGA-02-0064 1:DECEASED 19.7260274 1:Recurred 16.30684932 -TCGA-02-0068 1:DECEASED 26.43287671 1:Recurred 5.753424658 -TCGA-02-0069 0:LIVING 28.70136986 1:Recurred 28.70136986 -TCGA-02-0070 0:LIVING 25.05205479 1:Recurred 25.05205479 -TCGA-02-0071 1:DECEASED 5.490410959 1:Recurred 0.263013699 -TCGA-02-0074 1:DECEASED 10.19178082 1:Recurred 5.063013699 -TCGA-02-0075 1:DECEASED 20.84383562 1:Recurred 11.04657534 -TCGA-02-0079 1:DECEASED 27.22191781 1:Recurred 26.20273973 -TCGA-02-0080 1:DECEASED 89.72054795 1:Recurred 76.89863014 -TCGA-02-0083 1:DECEASED 22.71780822 1:Recurred 15.1890411 -TCGA-02-0084 1:DECEASED 12.62465753 NA NA -TCGA-02-0085 1:DECEASED 51.28767123 1:Recurred 32.08767123 -TCGA-02-0086 1:DECEASED 8.810958904 1:Recurred 3.189041096 -TCGA-02-0087 0:LIVING 57.76438356 1:Recurred 57.76438356 -TCGA-02-0089 1:DECEASED 16.93150685 1:Recurred 11.76986301 -TCGA-02-0099 1:DECEASED 3.484931507 NA NA -TCGA-02-0102 1:DECEASED 26.99178082 1:Recurred 14.79452055 -TCGA-02-0104 1:DECEASED 64.99726027 1:Recurred 47.90136986 -TCGA-02-0106 1:DECEASED 11.67123288 1:Recurred 6.410958904 -TCGA-02-0107 1:DECEASED 17.65479452 1:Recurred 4.8 -TCGA-02-0111 1:DECEASED 23.14520548 1:Recurred 2.432876712 -TCGA-02-0113 0:LIVING 92.61369863 1:Recurred 51.25479452 -TCGA-02-0114 1:DECEASED 99.94520548 1:Recurred 75.48493151 -TCGA-02-0115 1:DECEASED 15.64931507 1:Recurred 2.991780822 -TCGA-02-0116 1:DECEASED 48.95342466 1:Recurred 40.47123288 -TCGA-02-0258 1:DECEASED 16.5369863 1:Recurred 16.5369863 -TCGA-02-0260 1:DECEASED 16.89863014 NA NA -TCGA-02-0266 1:DECEASED 17.68767123 1:Recurred 9.632876712 -TCGA-02-0269 1:DECEASED 10.75068493 1:Recurred 3.254794521 -TCGA-02-0271 1:DECEASED 14.46575342 NA NA -TCGA-02-0281 1:DECEASED 3.978082192 NA NA -TCGA-02-0285 1:DECEASED 13.8739726 NA NA -TCGA-02-0289 1:DECEASED 14.20273973 1:Recurred 8.021917808 -TCGA-02-0290 1:DECEASED 15.94520548 1:Recurred 12.29589041 -TCGA-02-0317 1:DECEASED 12.23013699 1:Recurred 7.824657534 -TCGA-02-0321 1:DECEASED 9.863013699 1:Recurred 2.4 -TCGA-02-0324 1:DECEASED 7.693150685 1:Recurred 5.35890411 -TCGA-02-0325 1:DECEASED 10.61917808 1:Recurred 9.336986301 -TCGA-02-0326 1:DECEASED 7.331506849 1:Recurred 0.164383562 -TCGA-02-0330 1:DECEASED 15.91232877 1:Recurred 3.945205479 -TCGA-02-0332 1:DECEASED 25.70958904 1:Recurred 14.4 -TCGA-02-0333 1:DECEASED 4.37260274 1:Recurred 0.131506849 -TCGA-02-0337 1:DECEASED 25.11780822 1:Recurred 22.71780822 -TCGA-02-0338 1:DECEASED 10.58630137 1:Recurred 5.490410959 -TCGA-02-0339 1:DECEASED 12.39452055 1:Recurred 4.865753425 -TCGA-02-0422 1:DECEASED 14.49863014 1:Recurred 4.109589041 -TCGA-02-0430 1:DECEASED 10.55342466 NA NA -TCGA-02-0432 1:DECEASED 47.11232877 1:Recurred 34.61917808 -TCGA-02-0439 1:DECEASED 0.657534247 1:Recurred 0.42739726 -TCGA-02-0440 1:DECEASED 11.34246575 1:Recurred 6.969863014 -TCGA-02-0446 1:DECEASED 9.238356164 1:Recurred 0.493150685 -TCGA-02-0451 1:DECEASED 16.17534247 1:Recurred 14.03835616 -TCGA-02-0456 1:DECEASED 3.353424658 1:Recurred 0.394520548 -TCGA-02-2466 1:DECEASED 16.8 1:Recurred 4.208219178 -TCGA-02-2470 1:DECEASED 12.92054795 1:Recurred 5.983561644 -TCGA-02-2483 0:LIVING 15.28767123 0:DiseaseFree 15.28767123 -TCGA-02-2485 0:LIVING 15.41917808 1:Recurred 6.082191781 -TCGA-02-2486 0:LIVING 16.17534247 0:DiseaseFree 16.17534247 -TCGA-06-0119 NA NA NA NA -TCGA-06-0121 NA NA NA NA -TCGA-06-0122 1:DECEASED 6.147945205 NA NA -TCGA-06-0124 1:DECEASED 20.35068493 NA NA -TCGA-06-0125 1:DECEASED 47.60547945 1:Recurred 26.20273973 -TCGA-06-0126 1:DECEASED 6.904109589 NA NA -TCGA-06-0127 1:DECEASED 3.945205479 1:Recurred 2.95890411 -TCGA-06-0128 1:DECEASED 22.71780822 1:Recurred 6.21369863 -TCGA-06-0129 1:DECEASED 33.66575342 1:Recurred 4.832876712 -TCGA-06-0130 1:DECEASED 12.95342466 1:Recurred 8.021917808 -TCGA-06-0132 1:DECEASED 25.34794521 1:Recurred 15.84657534 -TCGA-06-0133 1:DECEASED 14.30136986 1:Recurred 2.564383562 -TCGA-06-0137 1:DECEASED 26.69589041 1:Recurred 16.0109589 -TCGA-06-0138 1:DECEASED 24.23013699 1:Recurred 12.95342466 -TCGA-06-0139 1:DECEASED 11.90136986 1:Recurred 4.997260274 -TCGA-06-0140 NA NA NA NA -TCGA-06-0141 1:DECEASED 10.29041096 1:Recurred 4.767123288 -TCGA-06-0142 NA NA NA NA -TCGA-06-0143 1:DECEASED 11.7369863 1:Recurred 8.679452055 -TCGA-06-0145 1:DECEASED 2.334246575 NA NA -TCGA-06-0146 1:DECEASED 20.08767123 1:Recurred 17.42465753 -TCGA-06-0147 1:DECEASED 17.78630137 NA NA -TCGA-06-0148 1:DECEASED 10.09315068 1:Recurred 6.180821918 -TCGA-06-0149 1:DECEASED 8.580821918 1:Recurred 6.673972603 -TCGA-06-0150 NA NA NA NA -TCGA-06-0151 NA NA NA NA -TCGA-06-0152 1:DECEASED 12.32876712 1:Recurred 9.830136986 -TCGA-06-0154 1:DECEASED 13.90684932 1:Recurred 6.805479452 -TCGA-06-0155 1:DECEASED 10.45479452 1:Recurred 8.416438356 -TCGA-06-0156 1:DECEASED 5.852054795 NA NA -TCGA-06-0157 1:DECEASED 3.189041096 NA NA -TCGA-06-0158 1:DECEASED 10.81643836 1:Recurred 2.95890411 -TCGA-06-0159 NA NA NA NA -TCGA-06-0160 NA NA NA NA -TCGA-06-0162 1:DECEASED 3.419178082 NA NA -TCGA-06-0164 1:DECEASED 56.87671233 1:Recurred 46.94794521 -TCGA-06-0165 NA NA NA NA -TCGA-06-0166 1:DECEASED 5.852054795 1:Recurred 2.169863014 -TCGA-06-0167 NA NA NA NA -TCGA-06-0168 1:DECEASED 19.66027397 1:Recurred 15.15616438 -TCGA-06-0169 1:DECEASED 3.287671233 1:Recurred 3.024657534 -TCGA-06-0171 1:DECEASED 13.11780822 1:Recurred 3.846575342 -TCGA-06-0173 1:DECEASED 4.471232877 NA NA -TCGA-06-0174 1:DECEASED 3.221917808 1:Recurred 1.545205479 -TCGA-06-0175 1:DECEASED 4.043835616 1:Recurred 1.282191781 -TCGA-06-0176 0:LIVING 51.32054795 1:Recurred 1.347945205 -TCGA-06-0177 1:DECEASED 4.142465753 NA NA -TCGA-06-0178 0:LIVING 53.98356164 1:Recurred 6.312328767 -TCGA-06-0179 1:DECEASED 20.25205479 1:Recurred 8.219178082 -TCGA-06-0182 1:DECEASED 3.649315068 NA NA -TCGA-06-0184 0:LIVING 40.37260274 0:DiseaseFree 40.37260274 -TCGA-06-0185 0:LIVING 37.01917808 1:Recurred 23.37534247 -TCGA-06-0187 1:DECEASED 27.22191781 1:Recurred 17.45753425 -TCGA-06-0188 0:LIVING 28.47123288 0:DiseaseFree 28.47123288 -TCGA-06-0189 1:DECEASED 15.41917808 NA NA -TCGA-06-0190 1:DECEASED 10.42191781 1:Recurred 2.893150685 -TCGA-06-0192 0:LIVING 18.27945205 0:DiseaseFree 18.27945205 -TCGA-06-0194 1:DECEASED 4.668493151 1:Recurred 4.109589041 -TCGA-06-0195 1:DECEASED 7.397260274 1:Recurred 4.832876712 -TCGA-06-0197 1:DECEASED 5.523287671 1:Recurred 1.545205479 -TCGA-06-0201 1:DECEASED 0.394520548 NA NA -TCGA-06-0206 1:DECEASED 7.62739726 1:Recurred 3.484931507 -TCGA-06-0208 1:DECEASED 8.383561644 1:Recurred 4.865753425 -TCGA-06-0209 1:DECEASED 7.594520548 NA NA -TCGA-06-0210 1:DECEASED 7.397260274 1:Recurred 2.202739726 -TCGA-06-0211 1:DECEASED 11.83561644 1:Recurred 1.742465753 -TCGA-06-0213 1:DECEASED 0.526027397 NA NA -TCGA-06-0214 1:DECEASED 15.02465753 1:Recurred 1.578082192 -TCGA-06-0216 1:DECEASED 24.16438356 1:Recurred 5.753424658 -TCGA-06-0219 1:DECEASED 0.690410959 NA NA -TCGA-06-0221 1:DECEASED 19.82465753 1:Recurred 8.547945205 -TCGA-06-0237 1:DECEASED 13.64383562 NA NA -TCGA-06-0238 1:DECEASED 13.28219178 1:Recurred 10.22465753 -TCGA-06-0240 NA NA NA NA -TCGA-06-0241 0:LIVING 14.95890411 1:Recurred 6.443835616 -TCGA-06-0394 1:DECEASED 10.81643836 1:Recurred 2.860273973 -TCGA-06-0397 1:DECEASED 3.978082192 NA NA -TCGA-06-0402 1:DECEASED 0.263013699 NA NA -TCGA-06-0409 1:DECEASED 72.36164384 1:Recurred 10.98082192 -TCGA-06-0410 1:DECEASED 4.668493151 NA NA -TCGA-06-0412 1:DECEASED 9.567123288 1:Recurred 4.273972603 -TCGA-06-0413 1:DECEASED 3.156164384 NA NA -TCGA-06-0414 1:DECEASED 35.11232877 1:Recurred 33.30410959 -TCGA-06-0644 0:LIVING 12.32876712 1:Recurred 2.794520548 -TCGA-06-0645 1:DECEASED 5.753424658 NA NA -TCGA-06-0646 1:DECEASED 5.753424658 1:Recurred 2.95890411 -TCGA-06-0648 1:DECEASED 9.764383562 1:Recurred 6.608219178 -TCGA-06-0649 1:DECEASED 2.104109589 NA NA -TCGA-06-0673 NA NA NA NA -TCGA-06-0675 NA NA NA NA -TCGA-06-0676 NA NA NA NA -TCGA-06-0678 NA NA NA NA -TCGA-06-0680 NA NA NA NA -TCGA-06-0681 NA NA NA NA -TCGA-06-0686 0:LIVING 9.369863014 1:Recurred 5.22739726 -TCGA-06-0743 0:LIVING 22.29041096 1:Recurred 5.753424658 -TCGA-06-0744 0:LIVING 19.52876712 0:DiseaseFree 19.52876712 -TCGA-06-0745 1:DECEASED 7.824657534 1:Recurred 2.991780822 -TCGA-06-0747 1:DECEASED 2.695890411 NA NA -TCGA-06-0749 1:DECEASED 2.663013699 NA NA -TCGA-06-0750 1:DECEASED 0.920547945 NA NA -TCGA-06-0875 0:LIVING 9.17260274 1:Recurred 9.17260274 -TCGA-06-0876 0:LIVING 8.909589041 0:DiseaseFree 8.909589041 -TCGA-06-0877 0:LIVING 6.706849315 0:DiseaseFree 6.706849315 -TCGA-06-0878 0:LIVING 7.167123288 1:Recurred 2.169863014 -TCGA-06-0879 0:LIVING 22.98082192 1:Recurred 22.98082192 -TCGA-06-0881 0:LIVING 5.852054795 1:Recurred 4.635616438 -TCGA-06-0882 0:LIVING 5.424657534 0:DiseaseFree 5.424657534 -TCGA-06-1084 0:LIVING 7.430136986 1:Recurred 6.838356164 -TCGA-06-1086 1:DECEASED 6.838356164 NA NA -TCGA-06-1087 1:DECEASED 4.043835616 1:Recurred 3.583561644 -TCGA-06-1800 1:DECEASED 26.79452055 1:Recurred 24.65753425 -TCGA-06-1801 0:LIVING 8.646575342 1:Recurred 7.62739726 -TCGA-06-1802 0:LIVING 7.857534247 1:Recurred 2.663013699 -TCGA-06-1805 0:LIVING 4.175342466 0:DiseaseFree 4.175342466 -TCGA-06-2557 1:DECEASED 1.084931507 NA NA -TCGA-06-2558 1:DECEASED 12.49315068 NA NA -TCGA-06-2559 1:DECEASED 4.898630137 NA NA -TCGA-06-2561 0:LIVING 9.271232877 1:Recurred 2.564383562 -TCGA-06-2562 0:LIVING 2.82739726 1:Recurred 5.030136986 -TCGA-06-2563 0:LIVING NA 0:DiseaseFree NA -TCGA-06-2564 0:LIVING 5.950684932 0:DiseaseFree 5.950684932 -TCGA-06-2565 0:LIVING 6.805479452 1:Recurred 5.852054795 -TCGA-06-2566 1:DECEASED 5.983561644 NA NA -TCGA-06-2567 1:DECEASED 4.37260274 NA NA -TCGA-06-2569 0:LIVING 0.42739726 0:DiseaseFree 0.42739726 -TCGA-06-2570 0:LIVING 9.369863014 0:DiseaseFree 9.369863014 -TCGA-08-0244 1:DECEASED 22.68493151 1:Recurred 15.87945205 -TCGA-08-0245 1:DECEASED 37.84109589 1:Recurred 15.22191781 -TCGA-08-0246 1:DECEASED 4.175342466 1:Recurred 3.024657534 -TCGA-08-0344 1:DECEASED 115.8575342 1:Recurred 61.80821918 -TCGA-08-0345 1:DECEASED 1.742465753 NA NA -TCGA-08-0346 1:DECEASED 8.416438356 1:Recurred 2.465753425 -TCGA-08-0347 1:DECEASED 25.70958904 1:Recurred 1.939726027 -TCGA-08-0348 1:DECEASED 12.16438356 1:Recurred 6.476712329 -TCGA-08-0349 1:DECEASED 9.797260274 1:Recurred 3.024657534 -TCGA-08-0350 1:DECEASED 29.19452055 1:Recurred 14.4 -TCGA-08-0351 1:DECEASED 65.29315068 1:Recurred 50.69589041 -TCGA-08-0352 1:DECEASED 1.282191781 NA NA -TCGA-08-0353 1:DECEASED 8.416438356 1:Recurred 5.391780822 -TCGA-08-0354 1:DECEASED 17.95068493 1:Recurred 8.317808219 -TCGA-08-0355 1:DECEASED 24.55890411 1:Recurred 17.0630137 -TCGA-08-0356 1:DECEASED 31.10136986 1:Recurred 14.69589041 -TCGA-08-0357 1:DECEASED 37.57808219 1:Recurred 5.095890411 -TCGA-08-0358 1:DECEASED 22.29041096 1:Recurred 8.646575342 -TCGA-08-0359 1:DECEASED 3.353424658 NA NA -TCGA-08-0360 1:DECEASED 15.38630137 1:Recurred 3.682191781 -TCGA-08-0373 1:DECEASED 4.405479452 NA NA -TCGA-08-0375 1:DECEASED 12.23013699 1:Recurred 5.293150685 -TCGA-08-0380 1:DECEASED 14.9260274 1:Recurred 4.964383562 -TCGA-08-0385 1:DECEASED 2.695890411 NA NA -TCGA-08-0386 1:DECEASED 18.01643836 1:Recurred 14.03835616 -TCGA-08-0389 1:DECEASED 15.35342466 NA NA -TCGA-08-0390 1:DECEASED 13.97260274 NA NA -TCGA-08-0392 1:DECEASED 0.723287671 NA NA -TCGA-08-0509 1:DECEASED 12.55890411 NA NA -TCGA-08-0510 1:DECEASED 4.24109589 1:Recurred 2.926027397 -TCGA-08-0511 1:DECEASED 7.726027397 NA NA -TCGA-08-0512 1:DECEASED 42.14794521 1:Recurred 7.594520548 -TCGA-08-0514 1:DECEASED 11.07945205 NA NA -TCGA-08-0516 1:DECEASED 19.59452055 1:Recurred 1.315068493 -TCGA-08-0517 1:DECEASED 58.68493151 1:Recurred 33.66575342 -TCGA-08-0518 1:DECEASED 19.33150685 1:Recurred 4.405479452 -TCGA-08-0520 1:DECEASED 10.71780822 1:Recurred 3.452054795 -TCGA-08-0521 1:DECEASED 4.8 1:Recurred 4.109589041 -TCGA-08-0522 1:DECEASED 20.87671233 1:Recurred 8.745205479 -TCGA-08-0524 1:DECEASED 7.232876712 1:Recurred 2.005479452 -TCGA-08-0525 1:DECEASED 15.97808219 1:Recurred 11.27671233 -TCGA-08-0529 1:DECEASED 18.37808219 1:Recurred 10.78356164 -TCGA-08-0531 1:DECEASED 7.561643836 NA NA -TCGA-08-0623 NA NA NA NA -TCGA-08-0625 NA NA NA NA -TCGA-08-0626 NA NA NA NA -TCGA-08-0627 NA NA NA NA -TCGA-12-0615 1:DECEASED 15.32054795 1:Recurred 5.22739726 -TCGA-12-0616 1:DECEASED 14.69589041 1:Recurred 13.05205479 -TCGA-12-0618 1:DECEASED 12.95342466 NA NA -TCGA-12-0619 1:DECEASED 34.91506849 1:Recurred 6.673972603 -TCGA-12-0620 1:DECEASED 10.45479452 NA NA -TCGA-12-0654 1:DECEASED 7.594520548 1:Recurred 7.101369863 -TCGA-12-0656 1:DECEASED 94.78356164 1:Recurred 48.23013699 -TCGA-12-0657 1:DECEASED 0.098630137 NA NA -TCGA-12-0662 1:DECEASED 38.16986301 1:Recurred 19.69315068 -TCGA-12-0670 1:DECEASED 25.97260274 1:Recurred 12.46027397 -TCGA-12-0688 1:DECEASED 26.6630137 1:Recurred 7.495890411 -TCGA-12-0691 1:DECEASED 12.09863014 1:Recurred 3.189041096 -TCGA-12-0692 1:DECEASED 3.649315068 1:Recurred 1.150684932 -TCGA-12-0703 1:DECEASED 20.35068493 1:Recurred 6.805479452 -TCGA-12-0707 1:DECEASED 28.37260274 NA NA -TCGA-12-0769 1:DECEASED 15.05753425 1:Recurred 12.42739726 -TCGA-12-0772 1:DECEASED 53.85205479 1:Recurred 19.95616438 -TCGA-12-0773 1:DECEASED 43.23287671 1:Recurred 23.83561644 -TCGA-12-0775 1:DECEASED 7.62739726 1:Recurred 3.090410959 -TCGA-12-0776 1:DECEASED 9.731506849 1:Recurred 4.175342466 -TCGA-12-0778 1:DECEASED 14.89315068 1:Recurred 7.594520548 -TCGA-12-0780 1:DECEASED 14.86027397 1:Recurred 2.991780822 -TCGA-12-0818 1:DECEASED 91.7260274 NA NA -TCGA-12-0819 1:DECEASED 24.75616438 1:Recurred 14.03835616 -TCGA-12-0820 1:DECEASED 18.47671233 1:Recurred 8.942465753 -TCGA-12-0821 1:DECEASED 10.61917808 1:Recurred 8.515068493 -TCGA-12-0822 1:DECEASED 23.50684932 1:Recurred 2.991780822 -TCGA-12-0826 1:DECEASED 27.78082192 NA NA -TCGA-12-0827 1:DECEASED 38.76164384 NA NA -TCGA-12-0828 1:DECEASED 8.909589041 1:Recurred 0.42739726 -TCGA-12-0829 1:DECEASED 20.58082192 1:Recurred 15.55068493 -TCGA-12-1088 1:DECEASED 127.5616438 NA NA -TCGA-12-1089 1:DECEASED 5.819178082 NA NA -TCGA-12-1090 1:DECEASED 7.561643836 NA NA -TCGA-12-1091 1:DECEASED 33.20547945 1:Recurred 1.84109589 -TCGA-12-1092 1:DECEASED 21.73150685 1:Recurred 20.94246575 -TCGA-12-1093 1:DECEASED 15.97808219 1:Recurred 10.58630137 -TCGA-12-1094 1:DECEASED 12.23013699 1:Recurred 6.115068493 -TCGA-12-1095 1:DECEASED 15.84657534 1:Recurred 3.156164384 -TCGA-12-1096 1:DECEASED 9.106849315 1:Recurred 8.876712329 -TCGA-12-1097 1:DECEASED 14.53150685 1:Recurred 5.457534247 -TCGA-12-1098 1:DECEASED 3.978082192 1:Recurred 3.057534247 -TCGA-12-1099 1:DECEASED 4.109589041 1:Recurred 2.038356164 -TCGA-12-1597 NA NA NA NA -TCGA-12-1598 1:DECEASED 15.64931507 NA NA -TCGA-12-1599 1:DECEASED 25.67671233 1:Recurred 2.926027397 -TCGA-12-1600 1:DECEASED 14.72876712 1:Recurred 13.28219178 -TCGA-12-1602 1:DECEASED 6.739726027 1:Recurred 4.569863014 -TCGA-12-3644 1:DECEASED 59.76986301 1:Recurred 37.54520548 -TCGA-12-3646 1:DECEASED 43.9890411 1:Recurred 43.2 -TCGA-12-3648 1:DECEASED 26.9260274 1:Recurred 2.82739726 -TCGA-12-3649 1:DECEASED 15.22191781 1:Recurred 11.53972603 -TCGA-12-3650 1:DECEASED 10.94794521 1:Recurred 7.857534247 -TCGA-12-3651 1:DECEASED 12.69041096 1:Recurred 11.76986301 -TCGA-12-3652 1:DECEASED 34.91506849 1:Recurred 6.673972603 -TCGA-12-3653 1:DECEASED 14.53150685 1:Recurred 7.331506849 -TCGA-14-0736 1:DECEASED 15.09041096 1:Recurred 4.175342466 -TCGA-14-0783 1:DECEASED 6.180821918 NA NA -TCGA-14-0786 1:DECEASED 23.04657534 1:Recurred 4.175342466 -TCGA-14-0787 1:DECEASED 2.235616438 NA NA -TCGA-14-0789 1:DECEASED 11.24383562 1:Recurred 3.452054795 -TCGA-14-0790 1:DECEASED 13.74246575 NA NA -TCGA-14-0812 1:DECEASED 3.254794521 NA NA -TCGA-14-0813 1:DECEASED 1.347945205 NA NA -TCGA-14-0817 1:DECEASED 5.391780822 NA NA -TCGA-14-0865 1:DECEASED 16.50410959 1:Recurred 7.068493151 -TCGA-14-0866 1:DECEASED 26.33424658 1:Recurred 3.189041096 -TCGA-14-0867 1:DECEASED 2.038356164 NA NA -TCGA-14-0871 1:DECEASED 28.89863014 NA NA -TCGA-14-1034 1:DECEASED 15.94520548 1:Recurred 9.008219178 -TCGA-14-1037 1:DECEASED 19.29863014 1:Recurred 10.71780822 -TCGA-14-1396 1:DECEASED 1.117808219 NA NA -TCGA-14-1401 1:DECEASED 3.747945205 NA NA -TCGA-14-1402 1:DECEASED 32.02191781 1:Recurred 10.94794521 -TCGA-14-1451 1:DECEASED 23.11232877 1:Recurred 0.624657534 -TCGA-14-1452 1:DECEASED 7.101369863 1:Recurred 5.654794521 -TCGA-14-1453 1:DECEASED 1.150684932 NA NA -TCGA-14-1454 1:DECEASED 30.14794521 1:Recurred 9.534246575 -TCGA-14-1455 1:DECEASED 0.920547945 NA NA -TCGA-14-1456 0:LIVING 40.93150685 1:Recurred 3.189041096 -TCGA-14-1458 1:DECEASED 6.64109589 1:Recurred 2.630136986 -TCGA-14-1459 1:DECEASED 12.42739726 1:Recurred 9.04109589 -TCGA-14-1794 1:DECEASED 0.98630137 NA NA -TCGA-14-1795 1:DECEASED 1.939726027 NA NA -TCGA-14-1821 1:DECEASED 17.75342466 1:Recurred 10.88219178 -TCGA-14-1823 1:DECEASED 17.81917808 1:Recurred 4.569863014 -TCGA-14-1825 1:DECEASED 7.62739726 1:Recurred 2.991780822 -TCGA-14-1827 1:DECEASED 5.884931507 NA NA -TCGA-14-1829 0:LIVING 7.134246575 0:DiseaseFree 7.134246575 -TCGA-14-2554 1:DECEASED 17.49041096 NA NA -TCGA-14-2555 0:LIVING 7.956164384 0:DiseaseFree 7.956164384 -TCGA-14-3477 0:LIVING 3.747945205 0:DiseaseFree 3.747945205 -TCGA-15-0742 1:DECEASED 13.74246575 1:Recurred 7.594520548 -TCGA-15-1446 0:LIVING 19.10136986 1:Recurred 14.56438356 -TCGA-15-1447 0:LIVING 53.19452055 1:Recurred 11.17808219 -TCGA-15-1449 1:DECEASED 13.28219178 1:Recurred 2.432876712 -TCGA-16-0846 1:DECEASED 3.912328767 NA NA -TCGA-16-0848 1:DECEASED 17.5890411 1:Recurred 4.24109589 -TCGA-16-0849 0:LIVING 26.07123288 0:DiseaseFree 26.07123288 -TCGA-16-0850 1:DECEASED 16.37260274 1:Recurred 2.728767123 -TCGA-16-0861 NA NA 1:Recurred 3.057534247 -TCGA-16-1045 1:DECEASED 28.99726027 1:Recurred 21.50136986 -TCGA-16-1047 1:DECEASED 4.569863014 1:Recurred 0.821917808 -TCGA-16-1055 1:DECEASED 10.29041096 1:Recurred 9.468493151 -TCGA-16-1056 1:DECEASED 14.00547945 1:Recurred 7.857534247 -TCGA-16-1060 1:DECEASED 9.139726027 1:Recurred 3.649315068 -TCGA-16-1062 1:DECEASED 21.23835616 1:Recurred 17.03013699 -TCGA-16-1063 1:DECEASED 13.97260274 1:Recurred 12.13150685 -TCGA-16-1460 0:LIVING 6.410958904 0:DiseaseFree 6.410958904 -TCGA-19-0955 0:LIVING 11.76986301 0:DiseaseFree 11.76986301 -TCGA-19-0957 1:DECEASED 21.8630137 1:Recurred 1.643835616 -TCGA-19-0960 0:LIVING 8.61369863 0:DiseaseFree 8.61369863 -TCGA-19-0962 1:DECEASED 0.657534247 NA NA -TCGA-19-0963 0:LIVING 10.19178082 1:Recurred 10.19178082 -TCGA-19-0964 0:LIVING 3.38630137 0:DiseaseFree 3.38630137 -TCGA-19-1385 1:DECEASED 10.75068493 1:Recurred 5.78630137 -TCGA-19-1386 1:DECEASED 9.073972603 1:Recurred 7.791780822 -TCGA-19-1387 0:LIVING 5.950684932 1:Recurred 2.597260274 -TCGA-19-1388 1:DECEASED 12.95342466 1:Recurred 4.865753425 -TCGA-19-1389 1:DECEASED 4.635616438 1:Recurred 2.663013699 -TCGA-19-1390 1:DECEASED 25.38082192 NA NA -TCGA-19-1392 1:DECEASED 3.649315068 NA NA -TCGA-19-1786 0:LIVING 7.134246575 0:DiseaseFree 7.134246575 -TCGA-19-1787 1:DECEASED 12.65753425 1:Recurred 10.09315068 -TCGA-19-1788 1:DECEASED 3.649315068 NA NA -TCGA-19-1789 1:DECEASED 3.057534247 NA NA -TCGA-19-1791 0:LIVING NA 0:DiseaseFree NA -TCGA-19-2619 0:LIVING 9.665753425 1:Recurred 4.8 -TCGA-19-2620 1:DECEASED 4.865753425 NA NA -TCGA-19-2621 1:DECEASED 1.084931507 NA NA -TCGA-19-2623 0:LIVING 7.528767123 0:DiseaseFree 7.528767123 -TCGA-19-2624 1:DECEASED 0.164383562 NA NA -TCGA-19-2625 1:DECEASED 4.076712329 NA NA -TCGA-19-2629 0:LIVING 6.706849315 1:Recurred 4.865753425 -TCGA-26-1438 0:LIVING 10.02739726 1:Recurred 5.194520548 -TCGA-26-1440 0:LIVING 9.731506849 1:Recurred 7.660273973 -TCGA-26-1443 0:LIVING 7.101369863 1:Recurred 7.101369863 -TCGA-26-1799 1:DECEASED 9.369863014 1:Recurred 7.002739726 -TCGA-27-1830 1:DECEASED 5.063013699 1:Recurred 4.076712329 -TCGA-27-1831 1:DECEASED 16.56986301 1:Recurred 4.701369863 -TCGA-27-1832 1:DECEASED 9.863013699 1:Recurred 6.016438356 -TCGA-27-1833 1:DECEASED 24.23013699 1:Recurred 15.41917808 -TCGA-27-1834 1:DECEASED 40.50410959 1:Recurred 11.01369863 -TCGA-27-1835 1:DECEASED 21.30410959 1:Recurred 5.161643836 -TCGA-27-1836 1:DECEASED 30.04931507 1:Recurred 5.654794521 -TCGA-27-1837 1:DECEASED 14.03835616 1:Recurred 4.438356164 -TCGA-27-1838 1:DECEASED 11.50684932 1:Recurred 3.912328767 -TCGA-27-2518 1:DECEASED 24.72328767 1:Recurred 17.68767123 -TCGA-27-2519 0:LIVING 10.3890411 1:Recurred 8.416438356 -TCGA-27-2521 0:LIVING 10.3890411 0:DiseaseFree 10.3890411 -TCGA-27-2523 1:DECEASED 16.07671233 1:Recurred 13.21643836 -TCGA-27-2524 1:DECEASED 7.594520548 NA NA -TCGA-27-2526 1:DECEASED 2.860273973 NA NA -TCGA-27-2527 1:DECEASED 14.4 NA NA -TCGA-27-2528 1:DECEASED 15.74794521 1:Recurred 2.334246575 -TCGA-28-1745 0:LIVING 11.30958904 1:Recurred 10.3890411 -TCGA-28-1746 0:LIVING 0.197260274 0:DiseaseFree 0.197260274 -TCGA-28-1747 1:DECEASED 2.531506849 NA NA -TCGA-28-1749 0:LIVING 9.17260274 1:Recurred 9.17260274 -TCGA-28-1750 0:LIVING 8.317808219 1:Recurred 3.780821918 -TCGA-28-1751 0:LIVING 7.594520548 1:Recurred 7.167123288 -TCGA-28-1752 0:LIVING 8.449315068 0:DiseaseFree 8.449315068 -TCGA-28-1753 0:LIVING 1.183561644 0:DiseaseFree 1.183561644 -TCGA-28-1755 1:DECEASED 1.512328767 NA NA -TCGA-28-1756 0:LIVING 2.82739726 0:DiseaseFree 2.82739726 -TCGA-28-1757 0:LIVING 0.131506849 0:DiseaseFree 0.131506849 -TCGA-28-1760 0:LIVING 4.701369863 1:Recurred 3.452054795 -TCGA-28-2499 NA NA NA NA -TCGA-28-2502 0:LIVING 0.657534247 0:DiseaseFree 0.657534247 -TCGA-28-2506 0:LIVING 6.739726027 1:Recurred 2.761643836 -TCGA-28-2509 0:LIVING 4.767123288 0:DiseaseFree 4.767123288 -TCGA-28-2512 NA NA NA NA -TCGA-28-2513 0:LIVING 7.298630137 1:Recurred 2.465753425 -TCGA-28-2514 0:LIVING 5.260273973 0:DiseaseFree 5.260273973 -TCGA-32-1970 1:DECEASED 15.35342466 1:Recurred 13.41369863 -TCGA-32-1976 1:DECEASED 0.493150685 NA NA -TCGA-32-1982 1:DECEASED 4.668493151 NA NA -TCGA-32-1986 0:LIVING 7.660273973 1:Recurred 7.660273973 -TCGA-32-2615 0:LIVING 10.29041096 1:Recurred 4.306849315 -TCGA-32-2616 1:DECEASED 7.331506849 1:Recurred 5.950684932 -TCGA-32-2632 1:DECEASED 8.843835616 NA NA -TCGA-32-2634 0:LIVING 8.876712329 0:DiseaseFree 8.876712329 -TCGA-32-2638 0:LIVING 7.364383562 0:DiseaseFree 7.364383562 -TCGA-41-2571 1:DECEASED 0.854794521 1:Recurred 0.854794521 -TCGA-41-2573 0:LIVING 8.942465753 1:Recurred 5.490410959 -TCGA-41-2575 1:DECEASED 9.534246575 1:Recurred 4.306849315 -TCGA-41-3392 1:DECEASED 0.98630137 NA NA diff --git a/core/src/main/resources/sample_data/gbm/case_lists/cases_all.txt b/core/src/main/resources/sample_data/gbm/case_lists/cases_all.txt deleted file mode 100644 index 8df7e8cb9dd..00000000000 --- a/core/src/main/resources/sample_data/gbm/case_lists/cases_all.txt +++ /dev/null @@ -1,6 +0,0 @@ -cancer_study_identifier: tcga_gbm -stable_id: all_cases_in_study -case_list_name: All Tumors -case_list_category: all_cases_in_study -case_list_description: All cases as used in the TCGA glioblastoma manuscript. -case_list_ids: TCGA-02-0001 TCGA-02-0003 TCGA-02-0004 TCGA-02-0006 TCGA-02-0007 TCGA-02-0009 TCGA-02-0010 TCGA-02-0011 TCGA-02-0014 TCGA-02-0015 TCGA-02-0016 TCGA-02-0021 TCGA-02-0023 TCGA-02-0024 TCGA-02-0025 TCGA-02-0026 TCGA-02-0027 TCGA-02-0028 TCGA-02-0033 TCGA-02-0034 TCGA-02-0037 TCGA-02-0038 TCGA-02-0039 TCGA-02-0043 TCGA-02-0046 TCGA-02-0047 TCGA-02-0048 TCGA-02-0052 TCGA-02-0054 TCGA-02-0055 TCGA-02-0057 TCGA-02-0058 TCGA-02-0060 TCGA-02-0064 TCGA-02-0068 TCGA-02-0069 TCGA-02-0070 TCGA-02-0071 TCGA-02-0074 TCGA-02-0075 TCGA-02-0079 TCGA-02-0080 TCGA-02-0083 TCGA-02-0084 TCGA-02-0085 TCGA-02-0086 TCGA-02-0087 TCGA-02-0089 TCGA-02-0099 TCGA-02-0102 TCGA-02-0104 TCGA-02-0106 TCGA-02-0107 TCGA-02-0111 TCGA-02-0113 TCGA-02-0114 TCGA-02-0115 TCGA-02-0116 TCGA-02-0258 TCGA-02-0260 TCGA-02-0266 TCGA-02-0269 TCGA-02-0271 TCGA-02-0281 TCGA-02-0285 TCGA-02-0289 TCGA-02-0290 TCGA-02-0317 TCGA-02-0321 TCGA-02-0324 TCGA-02-0325 TCGA-02-0326 TCGA-02-0330 TCGA-02-0332 TCGA-02-0333 TCGA-02-0337 TCGA-02-0338 TCGA-02-0339 TCGA-02-0422 TCGA-02-0430 TCGA-02-0432 TCGA-02-0439 TCGA-02-0440 TCGA-02-0446 TCGA-02-0451 TCGA-02-0456 TCGA-06-0122 TCGA-06-0124 TCGA-06-0125 TCGA-06-0126 TCGA-06-0127 TCGA-06-0128 TCGA-06-0129 TCGA-06-0130 TCGA-06-0132 TCGA-06-0133 TCGA-06-0137 TCGA-06-0138 TCGA-06-0139 TCGA-06-0141 TCGA-06-0143 TCGA-06-0145 TCGA-06-0146 TCGA-06-0147 TCGA-06-0148 TCGA-06-0149 TCGA-06-0152 TCGA-06-0154 TCGA-06-0156 TCGA-06-0157 TCGA-06-0158 TCGA-06-0162 TCGA-06-0164 TCGA-06-0166 TCGA-06-0168 TCGA-06-0169 TCGA-06-0171 TCGA-06-0173 TCGA-06-0174 TCGA-06-0175 TCGA-06-0176 TCGA-06-0177 TCGA-06-0178 TCGA-06-0179 TCGA-06-0182 TCGA-06-0184 TCGA-06-0185 TCGA-06-0187 TCGA-06-0188 TCGA-06-0189 TCGA-06-0190 TCGA-06-0194 TCGA-06-0195 TCGA-06-0197 TCGA-06-0201 TCGA-06-0206 TCGA-06-0208 TCGA-06-0209 TCGA-06-0210 TCGA-06-0211 TCGA-06-0213 TCGA-06-0214 TCGA-06-0219 TCGA-06-0221 TCGA-06-0237 TCGA-06-0238 TCGA-06-0241 TCGA-06-0394 TCGA-06-0397 TCGA-06-0402 TCGA-06-0409 TCGA-06-0410 TCGA-06-0412 TCGA-06-0413 TCGA-06-0414 TCGA-06-0644 TCGA-06-0645 TCGA-06-0646 TCGA-06-0648 TCGA-08-0244 TCGA-08-0246 TCGA-08-0344 TCGA-08-0345 TCGA-08-0346 TCGA-08-0347 TCGA-08-0348 TCGA-08-0349 TCGA-08-0350 TCGA-08-0351 TCGA-08-0352 TCGA-08-0353 TCGA-08-0354 TCGA-08-0355 TCGA-08-0356 TCGA-08-0357 TCGA-08-0358 TCGA-08-0359 TCGA-08-0360 TCGA-08-0373 TCGA-08-0375 TCGA-08-0380 TCGA-08-0385 TCGA-08-0386 TCGA-08-0389 TCGA-08-0390 TCGA-08-0392 TCGA-08-0509 TCGA-08-0510 TCGA-08-0511 TCGA-08-0512 TCGA-08-0514 TCGA-08-0516 TCGA-08-0517 TCGA-08-0518 TCGA-08-0520 TCGA-08-0521 TCGA-08-0522 TCGA-08-0524 TCGA-08-0525 TCGA-08-0529 TCGA-08-0531 TCGA-12-0615 TCGA-12-0616 TCGA-12-0618 TCGA-12-0619 TCGA-12-0620 diff --git a/core/src/main/resources/sample_data/gbm/case_lists/cases_all_three.txt b/core/src/main/resources/sample_data/gbm/case_lists/cases_all_three.txt deleted file mode 100644 index aa04b3f63d3..00000000000 --- a/core/src/main/resources/sample_data/gbm/case_lists/cases_all_three.txt +++ /dev/null @@ -1,6 +0,0 @@ -cancer_study_identifier: tcga_gbm -stable_id: gbm_3way_complete -case_list_name: All Complete Tumors (seq, mRNA, CNA) -case_list_category: all_cases_with_mutation_and_cna_and_mrna_data -case_list_description: 138 cases with sequencing data. 47 of these cases were not included in the 2008 Nature paper. -case_list_ids: TCGA-02-0027 TCGA-06-0137 TCGA-06-0145 TCGA-06-0238 TCGA-06-0129 TCGA-02-0006 TCGA-06-0214 TCGA-02-0021 TCGA-06-0166 TCGA-06-0173 TCGA-12-0620 TCGA-06-0648 TCGA-02-0028 TCGA-02-0057 TCGA-06-0158 TCGA-06-0187 TCGA-02-0115 TCGA-02-0009 TCGA-02-0104 TCGA-06-0168 TCGA-02-0113 TCGA-12-0616 TCGA-02-0079 TCGA-06-0201 TCGA-06-0178 TCGA-06-0147 TCGA-08-0390 TCGA-08-0345 TCGA-06-0209 TCGA-02-0099 TCGA-06-0139 TCGA-02-0052 TCGA-06-0176 TCGA-06-0645 TCGA-06-0148 TCGA-08-0352 TCGA-08-0356 TCGA-06-0169 TCGA-06-0185 TCGA-06-0154 TCGA-02-0086 TCGA-06-0143 TCGA-08-0380 TCGA-06-0156 TCGA-02-0015 TCGA-08-0348 TCGA-06-0152 TCGA-06-0124 TCGA-06-0125 TCGA-02-0038 TCGA-06-0219 TCGA-02-0116 TCGA-06-0122 TCGA-06-0128 TCGA-02-0085 TCGA-06-0211 TCGA-06-0138 TCGA-02-0064 TCGA-02-0070 TCGA-06-0171 TCGA-08-0358 TCGA-06-0189 TCGA-02-0107 TCGA-08-0375 TCGA-06-0157 TCGA-02-0068 TCGA-06-0210 TCGA-02-0023 TCGA-06-0126 TCGA-08-0385 TCGA-08-0354 TCGA-08-0347 TCGA-08-0355 TCGA-02-0007 TCGA-06-0174 TCGA-02-0102 TCGA-02-0060 TCGA-08-0350 TCGA-06-0141 TCGA-08-0244 TCGA-06-0133 TCGA-08-0246 TCGA-02-0069 TCGA-06-0208 TCGA-02-0047 TCGA-02-0043 TCGA-06-0127 TCGA-02-0014 TCGA-02-0071 TCGA-08-0344 TCGA-08-0349 TCGA-08-0386 TCGA-08-0357 TCGA-02-0016 TCGA-02-0025 TCGA-06-0644 TCGA-02-0024 TCGA-06-0646 TCGA-06-0195 TCGA-02-0004 TCGA-02-0011 TCGA-06-0188 TCGA-02-0058 TCGA-02-0084 TCGA-12-0618 TCGA-08-0373 TCGA-08-0360 TCGA-12-0619 TCGA-06-0206 TCGA-06-0213 TCGA-06-0130 TCGA-06-0190 TCGA-02-0026 TCGA-06-0221 TCGA-02-0055 TCGA-02-0034 TCGA-06-0197 TCGA-06-0241 TCGA-02-0033 TCGA-08-0353 TCGA-08-0359 TCGA-08-0351 TCGA-02-0089 TCGA-02-0074 TCGA-06-0237 TCGA-02-0075 TCGA-08-0389 TCGA-02-0083 TCGA-02-0037 TCGA-02-0080 TCGA-02-0114 TCGA-02-0003 TCGA-02-0048 TCGA-02-0054 TCGA-02-0046 TCGA-02-0001 TCGA-06-0184 TCGA-02-0010 diff --git a/core/src/main/resources/sample_data/gbm/data_CNA_consensus.txt b/core/src/main/resources/sample_data/gbm/data_CNA_consensus.txt deleted file mode 100644 index 686aef3ed53..00000000000 --- a/core/src/main/resources/sample_data/gbm/data_CNA_consensus.txt +++ /dev/null @@ -1,113 +0,0 @@ - TCGA-02-0001 TCGA-02-0003 TCGA-02-0004 TCGA-02-0006 TCGA-02-0007 TCGA-02-0009 TCGA-02-0010 TCGA-02-0011 TCGA-02-0014 TCGA-02-0015 TCGA-02-0016 TCGA-02-0021 TCGA-02-0023 TCGA-02-0024 TCGA-02-0025 TCGA-02-0026 TCGA-02-0027 TCGA-02-0028 TCGA-02-0033 TCGA-02-0034 TCGA-02-0037 TCGA-02-0038 TCGA-02-0039 TCGA-02-0043 TCGA-02-0046 TCGA-02-0047 TCGA-02-0048 TCGA-02-0052 TCGA-02-0054 TCGA-02-0055 TCGA-02-0057 TCGA-02-0058 TCGA-02-0060 TCGA-02-0064 TCGA-02-0068 TCGA-02-0069 TCGA-02-0070 TCGA-02-0071 TCGA-02-0074 TCGA-02-0075 TCGA-02-0079 TCGA-02-0080 TCGA-02-0083 TCGA-02-0084 TCGA-02-0085 TCGA-02-0086 TCGA-02-0087 TCGA-02-0089 TCGA-02-0099 TCGA-02-0102 TCGA-02-0104 TCGA-02-0106 TCGA-02-0107 TCGA-02-0111 TCGA-02-0113 TCGA-02-0114 TCGA-02-0115 TCGA-02-0116 TCGA-02-0258 TCGA-02-0260 TCGA-02-0266 TCGA-02-0269 TCGA-02-0271 TCGA-02-0281 TCGA-02-0285 TCGA-02-0289 TCGA-02-0290 TCGA-02-0317 TCGA-02-0321 TCGA-02-0324 TCGA-02-0325 TCGA-02-0326 TCGA-02-0330 TCGA-02-0332 TCGA-02-0333 TCGA-02-0337 TCGA-02-0338 TCGA-02-0339 TCGA-02-0422 TCGA-02-0430 TCGA-02-0432 TCGA-02-0439 TCGA-02-0440 TCGA-02-0446 TCGA-02-0451 TCGA-02-0456 TCGA-06-0122 TCGA-06-0124 TCGA-06-0125 TCGA-06-0126 TCGA-06-0127 TCGA-06-0128 TCGA-06-0129 TCGA-06-0130 TCGA-06-0132 TCGA-06-0133 TCGA-06-0137 TCGA-06-0138 TCGA-06-0139 TCGA-06-0141 TCGA-06-0143 TCGA-06-0145 TCGA-06-0146 TCGA-06-0147 TCGA-06-0148 TCGA-06-0149 TCGA-06-0152 TCGA-06-0154 TCGA-06-0156 TCGA-06-0157 TCGA-06-0158 TCGA-06-0162 TCGA-06-0164 TCGA-06-0166 TCGA-06-0168 TCGA-06-0169 TCGA-06-0171 TCGA-06-0173 TCGA-06-0174 TCGA-06-0175 TCGA-06-0176 TCGA-06-0177 TCGA-06-0178 TCGA-06-0179 TCGA-06-0182 TCGA-06-0184 TCGA-06-0185 TCGA-06-0187 TCGA-06-0188 TCGA-06-0189 TCGA-06-0190 TCGA-06-0194 TCGA-06-0195 TCGA-06-0197 TCGA-06-0201 TCGA-06-0206 TCGA-06-0208 TCGA-06-0209 TCGA-06-0210 TCGA-06-0211 TCGA-06-0213 TCGA-06-0214 TCGA-06-0219 TCGA-06-0221 TCGA-06-0237 TCGA-06-0238 TCGA-06-0241 TCGA-06-0394 TCGA-06-0397 TCGA-06-0402 TCGA-06-0409 TCGA-06-0410 TCGA-06-0412 TCGA-06-0413 TCGA-06-0414 TCGA-06-0644 TCGA-06-0645 TCGA-06-0646 TCGA-06-0648 TCGA-08-0244 TCGA-08-0246 TCGA-08-0344 TCGA-08-0345 TCGA-08-0346 TCGA-08-0347 TCGA-08-0348 TCGA-08-0349 TCGA-08-0350 TCGA-08-0351 TCGA-08-0352 TCGA-08-0353 TCGA-08-0354 TCGA-08-0355 TCGA-08-0356 TCGA-08-0357 TCGA-08-0358 TCGA-08-0359 TCGA-08-0360 TCGA-08-0373 TCGA-08-0375 TCGA-08-0380 TCGA-08-0385 TCGA-08-0386 TCGA-08-0389 TCGA-08-0390 TCGA-08-0392 TCGA-08-0509 TCGA-08-0510 TCGA-08-0511 TCGA-08-0512 TCGA-08-0514 TCGA-08-0516 TCGA-08-0517 TCGA-08-0518 TCGA-08-0520 TCGA-08-0521 TCGA-08-0522 TCGA-08-0524 TCGA-08-0525 TCGA-08-0529 TCGA-08-0531 TCGA-12-0615 TCGA-12-0616 TCGA-12-0618 TCGA-12-0619 TCGA-12-0620 -consensus AKT1 0 0 1 0 -1 0 -1 -1 0 0 0 0 0 -1 -1 0 0 0 0 -1 0 0 -1 0 0 -1 -1 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 -1 0 0 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 -1 0 -1 0 0 0 -1 0 0 -1 0 0 0 2 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 1 0 0 0 0 0 0 0 0 -1 -1 -1 1 0 -1 0 1 0 -1 -1 -1 0 0 -1 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 1 0 0 0 -1 0 0 0 -1 1 0 -1 0 -1 0 0 0 0 0 0 -1 -1 0 0 0 -consensus AKT2 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 -1 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 -1 1 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 -1 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 0 1 1 0 0 0 0 0 0 0 1 -1 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 -1 0 1 1 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 1 1 0 0 0 -1 0 1 0 1 0 0 0 -1 0 1 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -consensus AKT3 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 1 0 1 0 1 0 -consensus ATM 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 -consensus BRAF 1 1 1 1 0 1 0 0 1 1 1 1 1 0 1 0 1 -1 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 1 0 0 1 1 1 1 1 1 1 0 1 1 0 1 1 1 0 1 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 1 1 1 1 1 0 1 0 0 0 0 1 1 0 0 1 1 1 1 0 1 1 1 0 0 0 1 0 1 1 1 0 0 1 1 0 1 1 1 1 1 1 1 0 0 1 0 1 1 1 1 1 1 1 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 0 0 1 1 1 1 1 0 0 1 0 1 0 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 0 0 -1 1 1 1 0 0 0 1 1 1 0 0 1 1 1 -consensus BRCA1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 -1 1 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus BRCA2 0 0 0 -1 -1 0 -1 -1 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 -1 0 0 0 0 -1 -1 0 -1 -1 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 -1 0 0 0 0 0 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -consensus CBL 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 1 0 0 0 -1 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 -consensus CCND1 0 0 1 0 -1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 -1 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 -consensus CCND2 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 1 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 -1 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 2 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 -1 0 0 0 0 -1 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus CCNE1 0 0 0 0 1 1 0 0 0 1 0 1 1 0 0 0 0 -1 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 -1 1 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 -1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 0 2 0 0 1 0 0 1 1 0 0 0 -1 0 1 0 0 0 0 0 -1 1 1 0 0 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 -consensus CDC25A 1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 -1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 -1 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 -consensus CDC25B -1 0 1 1 0 0 0 -1 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 0 -1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1 1 0 1 1 0 1 0 0 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 0 0 1 1 0 0 0 0 0 -consensus CDC25C 0 0 1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -consensus CDK2 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 2 0 0 1 1 -1 0 -1 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 -1 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus CDK4 1 2 1 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 -1 0 0 2 0 0 0 1 -1 2 -1 0 0 0 -1 0 0 0 0 2 2 0 0 1 0 -1 0 0 0 0 0 2 0 1 0 0 0 0 0 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 2 0 0 0 2 -1 0 0 0 2 0 0 2 0 2 0 0 0 0 0 2 2 0 0 2 0 0 2 -1 0 0 0 0 0 0 0 -1 0 0 0 2 0 0 0 1 1 2 -1 2 0 0 0 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 0 0 0 2 2 -1 0 -consensus CDK6 1 1 1 1 -1 1 0 0 0 1 1 1 1 0 1 0 1 0 1 1 1 1 0 1 1 0 2 1 1 0 1 0 0 1 0 0 1 1 1 1 0 1 1 0 1 1 0 1 1 1 0 1 1 0 1 0 1 1 1 1 0 1 1 0 0 0 0 1 1 1 1 1 0 1 0 0 0 0 1 1 0 0 1 1 1 1 0 1 1 1 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 1 1 1 1 1 2 1 0 1 1 0 1 1 1 1 1 0 0 1 1 1 1 1 0 0 1 0 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 0 1 -1 0 1 1 0 0 0 1 1 1 1 0 1 1 1 -consensus CDKN1A 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -consensus CDKN1B 1 0 0 0 0 0 0 0 -1 0 0 0 0 1 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 1 -2 0 1 0 0 0 0 1 -1 0 -1 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 1 0 0 -1 0 -1 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus CDKN2A -2 0 -2 -1 -1 -2 -1 1 -2 -2 -2 -2 -2 -2 0 0 -2 0 0 -2 -2 -2 0 -2 0 -2 -2 0 -1 0 -2 -1 0 -2 -2 1 -1 -2 0 0 0 -1 -1 0 -2 -2 0 -2 -1 0 -2 -2 -1 -2 0 -1 -2 -2 -1 -2 -1 -2 0 -2 -2 -2 -2 -2 -1 -2 -2 -2 -1 1 -2 0 0 -1 -2 -2 -1 -2 -2 -2 -2 0 -2 -2 -2 -2 -2 0 0 0 -1 -2 -2 0 0 0 -2 -2 1 0 -2 0 0 -2 -2 0 -2 -1 -2 -2 0 -2 -2 -1 0 -2 0 -1 0 -2 0 0 -2 -2 -2 0 -1 -2 1 0 -2 0 -2 0 -2 -2 0 -2 -2 -1 -1 0 -2 -2 -2 0 -1 -2 -2 -2 0 -2 -1 -2 -2 -2 -2 0 -2 -2 -2 -2 0 0 0 -1 -2 -2 -2 -1 -2 -2 -2 -2 0 -2 0 0 0 0 -2 -2 -2 -2 -2 -2 -2 -1 -2 -2 -2 -2 -2 0 -2 -2 -2 -2 0 0 0 -2 -consensus CDKN2B -2 0 -2 -1 -1 -2 -1 1 -2 -2 -2 -2 -2 -2 0 0 -2 0 0 -2 -2 -2 0 -2 0 -2 -2 0 -1 0 -2 -1 0 -2 -2 1 -1 -2 0 0 0 -1 -1 0 -2 -2 0 -1 -1 0 -2 -2 -1 -2 0 -1 -2 -2 -1 -2 -1 -2 0 -2 -1 -2 -2 -2 -1 -2 -2 -2 -1 1 -2 0 0 -1 -2 -2 -1 -1 -2 -2 -2 0 -2 -2 -2 -2 -2 0 0 0 -1 -2 -2 0 0 0 -2 -2 1 0 -2 0 0 -2 -2 0 -2 -1 -2 -2 0 -2 -2 -1 0 -2 0 -1 0 -2 0 0 -2 -2 -2 0 -1 -2 1 0 -2 0 -2 0 -2 -2 0 -2 -2 -1 -1 0 -2 -1 -2 0 -1 -2 -2 -2 0 -2 -1 -2 -2 -2 -2 0 -2 -2 -2 -2 0 0 0 -1 -2 -2 -2 -1 -2 -2 -2 -2 0 -2 0 0 0 0 -2 -2 -2 -2 -2 -2 -2 -1 -2 -2 -2 -2 -2 0 -2 -2 -2 -2 0 0 0 -2 -consensus CDKN2C 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 -2 0 0 0 0 0 0 0 0 -2 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 -1 -2 0 0 -2 1 0 0 1 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 -2 0 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 -2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 0 1 0 -consensus CDKN2D 0 0 1 0 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 -1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 1 0 1 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 -1 0 0 1 1 0 1 1 1 0 0 0 0 1 0 1 0 1 1 0 1 1 0 0 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 -consensus AGAP2 1 2 1 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 -1 0 0 2 0 0 0 1 -1 2 -1 0 0 0 -1 0 0 0 0 2 2 0 0 1 0 -1 0 0 0 0 0 2 0 1 0 0 0 0 0 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 2 0 0 0 2 -1 0 0 0 2 0 0 2 0 2 0 0 0 0 0 2 2 0 0 2 0 0 2 -1 0 0 0 0 0 0 0 -1 0 0 0 2 0 0 0 1 1 2 -1 2 0 0 0 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 0 0 0 2 2 -1 0 -consensus CHEK2 0 0 1 -1 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 -1 0 0 -1 -1 -1 -1 0 0 0 0 -1 0 0 0 0 0 0 -1 0 -1 0 0 -1 0 -1 0 0 0 1 0 0 0 0 -1 -1 -1 0 -1 0 -1 -1 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 1 -1 -1 0 -1 0 -1 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 -1 -consensus DDIT4 0 -1 0 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 0 -1 -1 0 0 -1 -1 0 -1 -1 -1 -1 -1 0 -1 -1 -1 0 0 -1 -1 -1 0 -1 -1 -1 -1 0 0 -1 1 -1 0 -1 0 0 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 -1 0 0 -1 -1 -1 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -1 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 0 -1 -1 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 -1 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1 -1 -1 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -consensus E2F1 0 0 1 1 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1 1 0 1 0 0 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 -consensus EGF 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -consensus EGFR 1 2 2 1 1 2 0 0 0 1 2 2 2 0 1 0 1 0 1 1 1 2 0 2 2 0 2 1 1 0 1 0 0 2 2 1 1 2 1 1 1 0 2 0 1 1 0 2 1 2 0 2 1 1 1 0 1 2 0 2 0 2 1 0 2 2 2 2 1 1 1 1 0 1 2 0 0 0 2 2 0 2 1 1 2 1 2 2 2 2 2 0 0 1 2 2 2 2 0 0 2 2 0 1 2 1 2 2 2 2 2 2 1 0 1 2 1 2 2 1 1 0 0 2 2 1 2 2 1 1 1 2 1 1 1 1 2 2 1 2 1 2 2 0 2 1 1 1 1 2 2 0 2 1 0 1 2 2 1 2 2 0 1 1 1 1 2 0 0 2 2 2 2 2 2 2 1 2 1 2 1 -1 0 1 2 1 1 1 2 0 2 -1 -1 2 1 0 0 0 2 2 2 2 2 1 2 1 -consensus EIF4E 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -consensus EIF4EBP1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 -consensus EP300 0 0 1 0 -1 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 -1 0 -1 -1 -1 -1 -1 0 0 0 0 -1 0 0 0 0 0 0 -1 0 -1 0 0 -1 0 -1 0 0 0 1 0 0 0 1 -1 -1 -1 0 -1 0 -1 -1 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 -1 -1 0 0 0 -1 1 0 -1 0 0 -1 -1 0 0 2 -1 -1 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 -1 -consensus ERBB2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 0 1 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus ERBB3 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 2 0 0 1 1 -1 0 -1 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 0 -1 0 0 0 0 0 -1 0 -1 0 -1 0 0 2 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus ERRFI1 0 0 1 0 0 0 0 0 0 0 0 0 -1 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 -1 0 0 0 0 1 0 0 -1 0 -2 0 0 0 0 0 0 1 0 0 0 0 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 0 0 -1 1 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 -1 -1 -1 -1 -1 0 0 -2 0 0 0 0 0 -1 0 1 1 0 -1 0 -1 0 0 1 0 1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 -1 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 -2 0 1 -1 -1 -1 0 0 -2 0 0 -1 0 0 -1 -1 0 0 0 0 0 -1 0 0 0 1 0 -consensus FGFR1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -consensus FGFR2 0 -1 0 -1 -1 -1 -1 -1 2 0 -1 -1 -1 0 0 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 -1 0 -1 -1 -1 0 0 -1 -1 -1 -1 0 -1 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 -1 0 0 0 -1 -1 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 0 0 -1 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 0 -1 0 -1 -1 -1 -1 -1 -1 0 0 -1 -1 -1 -1 -1 0 0 -1 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 0 -1 -1 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -consensus FGFR3 0 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 -consensus FGFR4 0 0 1 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 1 0 0 -1 0 -1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -consensus FOXO1 0 0 0 -1 -1 0 -1 -1 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 -1 -1 0 -1 -1 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 0 -1 -1 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 -1 -1 0 -1 0 0 0 0 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 -2 -1 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 0 0 0 -1 0 0 -1 0 -1 -1 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -consensus FOXO3 0 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 -1 0 0 0 0 0 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 -1 0 1 2 0 -1 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 -consensus FOXO4 -consensus FRAP1 0 0 1 0 0 0 0 0 0 0 0 0 -1 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 -1 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 1 0 -consensus GAB1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 1 0 0 0 0 0 -consensus GBL 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -consensus GRB2 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -consensus GSK3B -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 1 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -consensus HGF 1 1 1 1 -1 1 0 0 0 1 1 1 1 0 1 0 1 0 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 1 0 0 1 1 1 1 0 1 1 0 1 1 0 1 1 1 0 1 1 0 1 0 1 1 0 1 0 1 1 0 0 0 0 1 1 1 1 1 0 1 0 0 0 0 1 1 0 0 1 1 1 1 1 0 1 1 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 0 0 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 1 0 1 0 1 1 0 1 1 1 1 1 0 0 1 1 1 1 1 0 0 1 0 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 0 0 -1 0 1 1 0 0 0 1 1 1 1 0 1 1 1 -consensus HIPK2 1 1 1 1 0 1 0 0 1 1 1 1 1 0 1 0 1 -1 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 1 0 0 1 1 1 1 1 1 0 0 1 1 0 1 1 1 0 1 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 1 1 1 1 1 0 1 0 0 0 0 1 1 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 1 1 1 0 0 1 1 0 1 1 1 1 1 1 1 0 0 1 0 1 1 1 1 1 1 1 0 0 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 0 1 2 1 1 1 0 0 1 1 1 1 1 0 0 1 0 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 0 0 -1 1 1 1 0 0 0 1 1 1 0 0 1 1 1 -consensus HRAS 0 0 1 0 0 1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 1 0 0 -1 0 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 -1 0 -consensus IGF1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus IGF1R 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 -consensus IRS1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -consensus KIAA1303 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 0 0 0 -consensus KRAS 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 1 0 0 0 0 1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus MAP2K1 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 -consensus MAP2K2 -1 0 1 0 1 1 0 0 1 1 2 1 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 -1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 -1 0 0 1 1 0 1 1 1 0 0 0 0 0 0 2 0 1 1 0 1 1 0 0 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 -consensus MAPK1 0 0 1 -1 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 2 0 0 0 0 0 0 -1 0 0 -1 -1 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 1 0 0 0 0 -1 -1 -1 0 -1 0 -1 1 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 1 -1 -1 0 -1 0 -1 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 -1 -consensus MAPK3 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -consensus MAPKAP1 1 0 1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 1 0 -1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 -1 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 -1 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -consensus MDM2 1 0 0 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 2 1 -1 0 0 2 0 0 0 1 2 0 -1 0 0 0 -1 0 0 0 0 2 2 0 0 0 0 -1 0 0 0 0 0 -1 0 1 0 0 0 0 0 2 1 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 -1 0 0 0 2 0 0 0 0 2 0 0 0 0 0 2 2 0 0 2 0 0 2 -1 0 2 0 0 0 0 0 -1 0 0 0 2 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 2 0 -1 0 -consensus MDM4 0 0 1 0 2 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 1 0 0 0 2 1 1 0 2 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 1 0 0 1 1 0 0 1 0 -consensus MET 1 1 0 1 0 1 1 0 0 1 1 1 1 2 1 0 1 0 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 1 0 0 1 1 1 1 1 1 0 0 1 1 0 1 1 1 0 1 1 1 1 0 1 1 1 1 0 1 1 2 0 0 0 1 1 1 1 1 0 1 0 0 0 0 1 1 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 1 1 1 0 1 1 1 0 0 1 1 1 1 1 1 0 0 1 0 1 1 1 1 1 1 1 0 0 1 1 2 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 2 0 1 1 1 1 1 0 0 2 1 1 1 1 0 0 1 0 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 0 0 -1 0 1 1 0 0 0 1 1 1 0 2 1 1 1 -consensus MSH6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 -consensus NF1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -2 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 -2 0 0 0 1 0 -1 0 0 0 0 0 -1 0 0 1 0 0 0 1 0 0 -2 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus NRAS 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 1 0 -consensus PDGFA 1 1 2 1 1 1 0 -1 0 1 1 1 1 0 1 0 1 0 1 1 1 1 0 1 1 0 0 1 1 1 1 0 0 1 0 0 1 1 1 1 1 0 0 0 0 1 0 1 1 1 0 0 0 1 1 0 1 1 -1 1 0 1 1 0 0 0 0 1 0 1 1 1 0 1 1 0 0 0 0 1 -1 0 1 1 1 1 1 0 1 1 0 0 0 1 0 1 1 1 0 0 1 1 0 1 1 1 1 0 1 1 0 0 1 0 1 1 1 1 1 1 1 0 0 1 1 1 1 0 1 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 2 1 0 1 1 0 1 1 1 1 1 0 0 1 1 1 1 1 -1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 0 0 0 -1 0 1 1 0 0 0 1 1 1 0 0 1 1 0 -consensus PDGFB 0 0 1 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 -1 0 -1 -1 -1 -1 -1 0 0 0 0 -1 0 0 0 0 0 0 -1 0 -1 0 0 -1 0 -1 0 0 0 1 0 0 0 0 -1 -1 -1 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 -1 -1 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 -1 -consensus PDGFRA 0 0 0 0 0 0 0 0 2 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 2 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 0 0 0 0 -1 0 2 0 0 0 0 1 0 0 1 1 2 0 0 2 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 2 2 0 2 0 2 0 0 2 0 0 2 0 2 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 -1 0 1 0 1 0 0 0 -consensus PDGFRB 0 0 1 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -consensus PDPK1 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -consensus PIK3C2A 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 -consensus PIK3C2B 0 0 1 0 2 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 1 0 0 0 2 1 2 0 2 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 1 0 0 1 1 0 0 1 0 -consensus PIK3C2G 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 1 0 0 0 0 1 -1 0 -1 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 1 0 0 -1 0 -1 -1 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus PIK3C3 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 -1 0 -1 -1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -consensus PIK3CA 1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 2 -1 0 0 1 0 1 0 0 1 0 -1 0 1 1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 0 1 0 2 0 0 -consensus PIK3CB 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 1 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 2 0 -consensus PIK3CD 0 0 1 0 0 0 0 0 0 0 0 0 -1 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 1 0 0 -1 0 -2 0 0 0 0 0 0 1 0 0 0 0 0 -1 -1 0 0 -1 1 0 0 -1 0 0 0 0 0 0 -1 1 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 -1 -1 -1 -1 0 0 -1 0 0 0 0 0 -1 0 1 1 0 0 0 1 0 0 1 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 1 -1 -1 -1 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 0 1 0 -consensus PIK3CG 1 1 0 1 -1 1 0 0 0 1 1 1 1 0 1 0 1 0 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 1 0 0 1 1 1 1 0 1 0 0 1 1 0 1 1 1 0 1 1 1 1 0 1 1 1 1 0 1 1 0 0 0 0 1 1 1 1 1 0 1 0 0 0 0 1 1 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 0 0 1 0 1 1 1 1 1 1 1 0 0 1 1 2 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 0 0 1 1 1 1 1 0 0 1 0 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 0 0 -1 0 1 1 0 0 0 1 1 1 0 0 1 1 1 -consensus PIK3R1 0 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 -consensus PIK3R2 0 0 1 0 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 1 0 1 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 -1 0 0 1 1 0 1 1 0 0 0 0 0 1 0 2 0 1 1 0 1 1 0 0 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 -consensus PIK3R4 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 1 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -consensus PLCG1 0 0 1 1 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1 1 0 1 0 0 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 -consensus PLCG2 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 -1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 -consensus PRKAA1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 1 0 0 0 1 0 0 0 0 0 0 0 0 -consensus PRKAA2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 -consensus PRKAB1 1 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -consensus PRKAB2 1 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 0 -consensus PRKCA 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -consensus PRKCB1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 -consensus PRKCD 1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 0 -1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 -consensus PRKCG 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 -1 0 -1 1 1 0 1 0 0 0 0 0 0 1 -1 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 1 1 -1 0 1 -1 1 0 1 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 -1 0 -1 0 0 0 0 -1 0 -1 1 0 0 0 1 0 0 0 -1 0 0 0 1 0 0 0 -1 1 0 0 0 1 0 -1 0 0 0 0 1 1 1 1 0 0 0 0 0 -consensus PRKCH 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 -1 -1 0 0 -1 -1 0 0 -1 0 0 -1 -1 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 -1 0 0 0 -1 1 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 -1 0 0 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 -1 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 0 -1 0 -1 -1 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 -1 -1 0 0 0 -1 1 0 -1 0 -1 0 0 0 0 0 0 -1 -1 0 0 0 -consensus PRKCI 1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 -1 0 0 0 0 0 0 -1 0 0 1 0 1 0 0 1 0 -1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -consensus PRKCQ 0 -1 -1 -1 0 -1 0 1 1 0 -1 -1 -1 0 0 0 -1 0 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 0 -1 -1 0 0 -1 -1 2 -1 -1 0 -1 -1 0 0 -1 -1 0 0 -1 -1 -1 0 -1 -1 0 -1 1 0 -1 0 -1 0 -1 0 0 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 0 -1 0 -1 0 -1 -1 -1 -1 -1 0 0 0 -1 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -1 0 -1 0 -1 -1 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 -1 -1 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 -1 1 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 0 -1 -1 -1 -1 -1 0 1 0 -1 -1 -1 0 0 -1 -1 -1 -1 -1 -1 -1 -consensus PRKCZ 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 -1 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 -1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 -1 1 0 -1 0 0 -1 0 0 0 0 0 -1 0 1 1 0 0 0 -1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 -1 0 0 0 0 0 -1 0 0 0 1 0 -consensus PTEN 0 -1 -1 -2 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1 -1 0 -1 -2 -1 -1 -2 -2 -1 0 -1 -1 0 -1 -1 1 0 -1 -1 0 -1 -1 -1 -1 -1 0 -1 -1 -1 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1 0 -1 0 -1 0 0 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 -1 0 0 -1 -1 -1 0 -1 -2 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -1 0 -1 -1 -1 -1 -1 -1 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -2 -2 0 -1 -1 -1 -1 0 -1 -1 -1 -1 0 -2 -1 -2 -2 -2 -1 -1 0 -1 -1 -2 -1 -1 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 -2 -1 -1 -1 -1 -1 -1 -2 -1 0 0 -1 -1 -1 0 0 -1 -1 -1 -2 -1 -1 -2 -1 -consensus RAF1 1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 0 -1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -consensus RB1 -2 0 0 -1 -1 0 -1 -1 0 0 0 0 0 -1 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 -1 -1 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 0 -2 -1 0 0 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 -1 0 -1 0 0 -1 -1 0 -1 -1 0 0 0 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 -1 0 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 0 0 0 0 0 -1 0 0 0 -2 -2 0 0 0 0 0 -1 0 0 0 -1 -1 -1 -2 0 0 0 -1 0 0 -1 0 -1 -1 -1 0 0 0 0 -1 0 0 -1 0 -1 -1 0 -1 -1 0 -2 0 0 0 0 0 0 -1 0 0 0 -1 -consensus RHEB 1 1 1 1 0 1 0 0 1 1 1 1 1 0 1 0 1 0 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 1 0 0 1 1 1 1 1 1 1 0 1 1 0 1 1 1 -1 1 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 1 1 1 1 1 0 1 0 0 0 0 1 1 0 0 1 1 1 1 0 1 1 1 0 0 0 0 0 1 1 1 0 0 1 1 0 1 1 1 1 1 1 1 0 0 1 0 1 1 1 1 1 0 1 0 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 0 0 1 1 1 1 1 0 0 1 0 1 0 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 0 0 -1 1 1 1 0 0 0 1 1 1 0 0 1 1 1 -consensus RICTOR 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 1 0 0 0 1 0 0 0 0 0 0 0 0 -consensus RPS6KA1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 -consensus RPS6KB1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -consensus SHC1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 2 0 -consensus SHC2 -1 0 1 0 1 1 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 1 0 0 0 1 0 0 0 0 1 1 0 1 0 1 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 1 0 1 -2 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 -1 0 0 1 1 0 1 1 1 0 0 0 0 0 0 2 0 1 1 0 1 1 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 -consensus SOS1 1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 -consensus SPRY2 -2 0 -1 -1 -1 0 -1 -1 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 -1 -1 -2 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 1 -1 0 0 0 0 -1 -1 0 -1 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 0 0 0 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 -1 0 -1 0 0 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 -1 0 -1 -1 0 -1 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 -1 -consensus SRC 0 0 1 1 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1 1 0 1 0 0 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 -consensus STK11 -1 0 1 0 1 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 1 0 1 -1 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 -1 0 0 1 1 0 1 1 1 0 0 0 0 0 0 2 0 1 1 0 1 1 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 -consensus TP53 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 0 0 -2 0 0 0 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 -2 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 -consensus TSC1 1 0 1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 0 0 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 -1 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 -1 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 0 -consensus TSC2 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 diff --git a/core/src/main/resources/sample_data/gbm/data_mutations_MAF.txt b/core/src/main/resources/sample_data/gbm/data_mutations_MAF.txt deleted file mode 100644 index a4e81d3254d..00000000000 --- a/core/src/main/resources/sample_data/gbm/data_mutations_MAF.txt +++ /dev/null @@ -1,1065 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_position End_position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_file Sequencer chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU Genome_Change_Broad Annotation_Transcript_Broad cDNA_Change_Broad Codon_Change_Broad Protein_Change_Broad MA:variant MA:GE.rank MA:CNA MA:OV.variant.samples MA:OV.gene.samples MA:mapping.issue MA:FImpact MA:FI.score MA:Func.region MA:bindsite.protein MA:bindsite.DNA/RNA MA:bindsite.sm.mol MA:CancerGenes FAM:TS MA:OG MA:COSMIC.mutations MA:COSMIC.cancers MA:Uniprot.regions MA:TS.interacts MA:OG.interacts MA:Pfam.domain MA:link.var MA:link.MSA MA:link.PDB -ELAVL2 1993 genome.wustl.edu 36 9 23691590 23691590 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense G167D G167D H 3.32 http://mutationassessor.org?cm=var&var=9,23691590,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ELAV2_HUMAN&rb=127&re=195&var=G167D http://mutationassessor.org/pdb.php?prot=ELAV2_HUMAN&from=127&to=195&var=G167D -NF1 4763 genome.wustl.edu 36 17 26609550 26609550 + missense SNP A A T Unknown Unknown TCGA-02-0107 TCGA-02-0107-10A-01W A A Valid Somatic missense R1412S R1412S H 3.155 http://mutationassessor.org?cm=var&var=17,26609550,A,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NF1_HUMAN&rb=1256&re=1451&var=R1412S http://mutationassessor.org/pdb.php?prot=NF1_HUMAN&from=1256&to=1451&var=R1412S -PTEN 5728 genome.wustl.edu 36 10 89682891 89682891 + missense SNP G A A Unknown Unknown TCGA-06-0187 TCGA-06-0187-10B-01W G G Valid Somatic missense G132D G132D H 3.075 http://mutationassessor.org?cm=var&var=10,89682891,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=G132D http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=G132D -PTEN 5728 genome.wustl.edu 36 10 89682783 89682783 + missense SNP C C T Unknown Unknown TCGA-02-0014 TCGA-02-0014-10A-01W C C Valid Somatic missense P96L P96L H 2.995 http://mutationassessor.org?cm=var&var=10,89682783,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=P96L http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=P96L -MSH2 4436 genome.wustl.edu 36 2 47557079 47557079 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense G692E G692E H 2.93 http://mutationassessor.org?cm=var&var=2,47557079,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MSH2_HUMAN&rb=619&re=854&var=G692E http://mutationassessor.org/pdb.php?prot=MSH2_HUMAN&from=619&to=854&var=G692E -LDHA 3939 genome.wustl.edu 36 11 18380975 18380975 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense T144I T144I H 2.87 http://mutationassessor.org?cm=var&var=11,18380975,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LDHA_HUMAN&rb=21&re=161&var=T144I http://mutationassessor.org/pdb.php?prot=LDHA_HUMAN&from=21&to=161&var=T144I -PTEN 5728 genome.wustl.edu 36 10 89701879 89701879 + missense SNP C C T Unknown Unknown TCGA-02-0038 TCGA-02-0038-10A-01W C C Valid Somatic missense R173C R173C H 2.8 http://mutationassessor.org?cm=var&var=10,89701879,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=R173C http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=R173C -KIT 3815 genome.wustl.edu 36 4 55288766 55288766 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense A599T A599T H 2.785 http://mutationassessor.org?cm=var&var=4,55288766,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KIT_HUMAN&rb=589&re=924&var=A599T http://mutationassessor.org/pdb.php?prot=KIT_HUMAN&from=589&to=924&var=A599T -ERBB2 2064 genome.wustl.edu 36 17 35133731 35133731 + missense SNP T A T Unknown Unknown TCGA-02-0107 TCGA-02-0107-10A-01W T T Valid Somatic missense V750E V750E H 2.785 http://mutationassessor.org?cm=var&var=17,35133731,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=720&re=976&var=V750E http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=720&to=976&var=V750E -TP53 7157 genome.wustl.edu 36 17 7519128 7519128 + missense SNP C T T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense C176Y C176Y H 2.765 http://mutationassessor.org?cm=var&var=17,7519128,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=C176Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=C176Y -TP53 7157 genome.wustl.edu 36 17 7518293 7518293 + missense SNP C T T Unknown Unknown TCGA-12-0618 TCGA-12-0618-10A-01W C C Valid Somatic missense C238Y C238Y H 2.755 http://mutationassessor.org?cm=var&var=17,7518293,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=C238Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=C238Y -DMBT1 1755 genome.wustl.edu 36 10 124348403 124348403 + missense SNP C C T Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C Valid Somatic missense A1027V A1027V H 2.73 http://mutationassessor.org?cm=var&var=10,124348403,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DMBT1_HUMAN&rb=996&re=1093&var=A1027V http://mutationassessor.org/pdb.php?prot=DMBT1_HUMAN&from=996&to=1093&var=A1027V -TP53 7157 genome.wustl.edu 36 17 7519120 7519120 + missense SNP G A G Unknown Unknown TCGA-02-0089 TCGA-02-0089-10A-01W G G Valid Somatic missense H179Y H179Y H 2.725 http://mutationassessor.org?cm=var&var=17,7519120,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H179Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H179Y -TP53 7157 genome.wustl.edu 36 17 7519132 7519132 + missense SNP G C C Unknown Unknown TCGA-02-0011 TCGA-02-0011-10A-01W G G Valid Somatic missense R175G R175G H 2.695 http://mutationassessor.org?cm=var&var=17,7519132,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R175G http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R175G -TP53 7157 genome.wustl.edu 36 17 7519131 7519131 + missense SNP C C T rs28934578 Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense R175H R175H H 2.695 http://mutationassessor.org?cm=var&var=17,7519131,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R175H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R175H -TP53 7157 genome.wustl.edu 36 17 7519182 7519182 + missense SNP C C T Unknown Unknown TCGA-06-0130 TCGA-06-0130-10A-01W C C Valid Somatic missense R158H R158H H 2.675 http://mutationassessor.org?cm=var&var=17,7519182,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R158H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R158H -TP53 7157 genome.wustl.edu 36 17 7519182 7519182 + missense SNP C C T Unknown Unknown TCGA-06-0184 TCGA-06-0184-10B-01W C C Valid Somatic missense R158H R158H H 2.675 http://mutationassessor.org?cm=var&var=17,7519182,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R158H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R158H -EPHA4 2043 genome.wustl.edu 36 2 222055639 222055639 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense P332L P332L H 2.67 http://mutationassessor.org?cm=var&var=2,222055639,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHA4_HUMAN&rb=330&re=424&var=P332L http://mutationassessor.org/pdb.php?prot=EPHA4_HUMAN&from=330&to=424&var=P332L -TP53 7157 genome.wustl.edu 36 17 7519137 7519137 + missense SNP A A C Unknown Unknown TCGA-02-0048 TCGA-02-0048-10A-01W A A Valid Somatic missense V173G V173G H 2.62 http://mutationassessor.org?cm=var&var=17,7519137,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V173G http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V173G -MET 4233 genome.wustl.edu 36 7 116206205 116206205 + missense SNP G C G Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G Valid Somatic missense M1160I M1160I H 2.595 http://mutationassessor.org?cm=var&var=7,116206205,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MET_HUMAN&rb=1078&re=1337&var=M1160I http://mutationassessor.org/pdb.php?prot=MET_HUMAN&from=1078&to=1337&var=M1160I -KRAS 3845 genome.wustl.edu 36 12 25289551 25289551 + missense SNP C C G Unknown Unknown TCGA-02-0069 TCGA-02-0069-10A-01W C C Valid Somatic missense G12A G12A H 2.59 http://mutationassessor.org?cm=var&var=12,25289551,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RASK_HUMAN&rb=5&re=165&var=G12A http://mutationassessor.org/pdb.php?prot=RASK_HUMAN&from=5&to=165&var=G12A -TP53 7157 genome.wustl.edu 36 17 7518928 7518928 + missense SNP C C T Unknown Unknown TCGA-02-0055 TCGA-02-0055-10A-01W C C Valid Somatic missense V216M V216M H 2.585 http://mutationassessor.org?cm=var&var=17,7518928,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V216M http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V216M -TP53 7157 genome.wustl.edu 36 17 7518928 7518928 + missense SNP C C T Unknown Unknown TCGA-08-0359 TCGA-08-0359-11A-01W C C Valid Somatic missense V216M V216M H 2.585 http://mutationassessor.org?cm=var&var=17,7518928,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V216M http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V216M -TP53 7157 genome.wustl.edu 36 17 7517830 7517830 + missense SNP G C G Unknown Unknown TCGA-02-0001 TCGA-02-0001-10A-01W G G Valid Somatic missense P278R P278R H 2.55 http://mutationassessor.org?cm=var&var=17,7517830,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=P278R http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=P278R -FGFR3 2261 genome.wustl.edu 36 4 1777687 1777687 + missense SNP A A G Unknown Unknown TCGA-06-0168 TCGA-06-0168-10A-01W A A Valid Somatic missense K650E K650E H 2.515 http://mutationassessor.org?cm=var&var=4,1777687,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FGFR3_HUMAN&rb=472&re=748&var=K650E http://mutationassessor.org/pdb.php?prot=FGFR3_HUMAN&from=472&to=748&var=K650E -NF1 4763 genome.wustl.edu 36 17 26610182 26610182 + missense SNP C A C Unknown Unknown TCGA-06-0190 TCGA-06-0190-10B-01W C C Valid Somatic missense Q1447K Q1447K H 2.515 http://mutationassessor.org?cm=var&var=17,26610182,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NF1_HUMAN&rb=1256&re=1451&var=Q1447K http://mutationassessor.org/pdb.php?prot=NF1_HUMAN&from=1256&to=1451&var=Q1447K -CHD5 26038 genome.wustl.edu 36 1 6111646 6111646 + missense SNP G A G Unknown Unknown TCGA-06-0210 TCGA-06-0210-10A-01W G G Valid Somatic missense S1153L S1153L H 2.51 http://mutationassessor.org?cm=var&var=1,6111646,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CHD5_HUMAN&rb=1028&re=1193&var=S1153L http://mutationassessor.org/pdb.php?prot=CHD5_HUMAN&from=1028&to=1193&var=S1153L -TP53 7157 genome.wustl.edu 36 17 7519267 7519267 + missense SNP G A G Unknown Unknown TCGA-02-0075 TCGA-02-0075-10A-01W G G Valid Somatic missense L130F L130F H 2.45 http://mutationassessor.org?cm=var&var=17,7519267,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=L130F http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=L130F -TP53 7157 genome.wustl.edu 36 17 7519266 7519266 + missense SNP A A C Unknown Unknown TCGA-08-0389 TCGA-08-0389-11A-01W A A Valid Somatic missense L130R L130R H 2.45 http://mutationassessor.org?cm=var&var=17,7519266,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=L130R http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=L130R -DSG1 1828 genome.wustl.edu 36 18 27165803 27165803 + missense SNP C C T Unknown Unknown TCGA-02-0004 TCGA-02-0004-10A-01W C C Valid Somatic missense T220M T220M H 2.38 http://mutationassessor.org?cm=var&var=18,27165803,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DSG1_HUMAN&rb=162&re=260&var=T220M http://mutationassessor.org/pdb.php?prot=DSG1_HUMAN&from=162&to=260&var=T220M -ERBB2 2064 genome.wustl.edu 36 17 35121736 35121736 + missense SNP T C T Unknown Unknown TCGA-02-0089 TCGA-02-0089-10A-01W T T Valid Somatic missense C311R C311R H 2.37 http://mutationassessor.org?cm=var&var=17,35121736,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=183&re=343&var=C311R http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=183&to=343&var=C311R -EGFR 1956 genome.wustl.edu 36 7 55200537 55200537 + missense SNP G T T Unknown Unknown TCGA-02-0046 TCGA-02-0046-10A-01W G G Valid Somatic missense G598V G598V H 2.37 http://mutationassessor.org?cm=var&var=7,55200537,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=G598V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=G598V -ZNF708 7562 genome.wustl.edu 36 19 21285158 21285158 + missense SNP T C T Unknown Unknown TCGA-06-0173 TCGA-06-0173-10B-01W T T Valid Somatic missense N39D N39D H 2.37 http://mutationassessor.org?cm=var&var=19,21285158,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ZN708_HUMAN&rb=4&re=44&var=N39D http://mutationassessor.org/pdb.php?prot=ZN708_HUMAN&from=4&to=44&var=N39D -ZNF708 7562 genome.wustl.edu 36 19 21285158 21285158 + missense SNP T C T Unknown Unknown TCGA-06-0190 TCGA-06-0190-10B-01W T T Valid Somatic missense N39D N39D H 2.37 http://mutationassessor.org?cm=var&var=19,21285158,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ZN708_HUMAN&rb=4&re=44&var=N39D http://mutationassessor.org/pdb.php?prot=ZN708_HUMAN&from=4&to=44&var=N39D -ZNF708 7562 genome.wustl.edu 36 19 21285158 21285158 + missense SNP T C T Unknown Unknown TCGA-06-0216 TCGA-06-0216-10A-01W T T Valid Somatic missense N39D N39D H 2.37 http://mutationassessor.org?cm=var&var=19,21285158,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ZN708_HUMAN&rb=4&re=44&var=N39D http://mutationassessor.org/pdb.php?prot=ZN708_HUMAN&from=4&to=44&var=N39D -EGFR 1956 genome.wustl.edu 36 7 55191104 55191104 + missense SNP G A G Unknown Unknown TCGA-08-0349 TCGA-08-0349-11A-02W G G Valid Somatic missense C326Y C326Y H 2.365 http://mutationassessor.org?cm=var&var=7,55191104,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=C326Y http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=C326Y -TP53 7157 genome.wustl.edu 36 17 7517846 7517846 + missense SNP G A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G Valid Somatic missense R273C R273C H 2.325 http://mutationassessor.org?cm=var&var=17,7517846,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R273C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R273C -TP53 7157 genome.wustl.edu 36 17 7517846 7517846 + missense SNP G A A Unknown Unknown TCGA-02-0080 TCGA-02-0080-10A-01W G G Valid Somatic missense R273C R273C H 2.325 http://mutationassessor.org?cm=var&var=17,7517846,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R273C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R273C -TP53 7157 genome.wustl.edu 36 17 7517845 7517845 + missense SNP C C T rs28934576 Unknown TCGA-06-0206 TCGA-06-0206-10A-01W C C Valid Somatic missense R273H R273H H 2.325 http://mutationassessor.org?cm=var&var=17,7517845,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R273H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R273H -ERBB2 2064 genome.wustl.edu 36 17 35121805 35121805 + missense SNP T A T Unknown Unknown TCGA-02-0115 TCGA-02-0115-10A-01W T T Valid Somatic missense C334S C334S H 2.32 http://mutationassessor.org?cm=var&var=17,35121805,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=183&re=343&var=C334S http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=183&to=343&var=C334S -ZNF708 7562 genome.wustl.edu 36 19 21285145 21285145 + missense SNP A A C Unknown Unknown TCGA-06-0159 TCGA-06-0159-10A-01W A A Valid Somatic missense L43R L43R H 2.295 http://mutationassessor.org?cm=var&var=19,21285145,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ZN708_HUMAN&rb=4&re=44&var=L43R http://mutationassessor.org/pdb.php?prot=ZN708_HUMAN&from=4&to=44&var=L43R -FGFR1 2260 genome.wustl.edu 36 8 38391465 38391465 + missense SNP T C T Unknown Unknown TCGA-02-0060 TCGA-02-0060-10A-01W T T Valid Somatic missense K656E K656E H 2.29 http://mutationassessor.org?cm=var&var=8,38391465,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FGFR1_HUMAN&rb=478&re=754&var=K656E http://mutationassessor.org/pdb.php?prot=FGFR1_HUMAN&from=478&to=754&var=K656E -TP53 7157 genome.wustl.edu 36 17 7519126 7519126 + missense SNP G A G Unknown Unknown TCGA-02-0046 TCGA-02-0046-10A-01W G G Valid Somatic missense P177S P177S H 2.29 http://mutationassessor.org?cm=var&var=17,7519126,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=P177S http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=P177S -PIK3C2G 5288 genome.wustl.edu 36 12 18468201 18468201 + missense SNP G A G Unknown Unknown TCGA-06-0137 TCGA-06-0137-10A-01W G G Valid Somatic missense R781H R781H H 2.26 http://mutationassessor.org?cm=var&var=12,18468201,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=646&re=828&var=R781H http://mutationassessor.org/pdb.php?prot=P3C2G_HUMAN&from=646&to=828&var=R781H -TP53 7157 genome.wustl.edu 36 17 7518234 7518234 + missense SNP C C G Unknown Unknown TCGA-02-0034 TCGA-02-0034-10A-01W C C Valid Somatic missense E258Q E258Q H 2.24 http://mutationassessor.org?cm=var&var=17,7518234,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=E258Q http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=E258Q -DSP 1832 genome.wustl.edu 36 6 7513753 7513753 + missense SNP C C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense R451C R451C H 2.23 http://mutationassessor.org?cm=var&var=6,7513753,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DESP_HUMAN&rb=401&re=600&var=R451C -PTPN11 5781 genome.wustl.edu 36 12 111395220 111395220 + missense SNP C C G Unknown Unknown TCGA-06-0171 TCGA-06-0171-10A-01W C C Valid Somatic missense I282M I282M H 2.21 http://mutationassessor.org?cm=var&var=12,111395220,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTN11_HUMAN&rb=273&re=524&var=I282M http://mutationassessor.org/pdb.php?prot=PTN11_HUMAN&from=273&to=524&var=I282M -TP53 7157 genome.wustl.edu 36 17 7518997 7518997 + missense SNP G A G Unknown Unknown TCGA-08-0245 TCGA-08-0245-11A-01W G G Valid Somatic missense H193Y H193Y H 2.2 http://mutationassessor.org?cm=var&var=17,7518997,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H193Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H193Y -TP53 7157 genome.wustl.edu 36 17 7517849 7517849 + missense SNP C C T Unknown Unknown TCGA-02-0058 TCGA-02-0058-10A-01W C C Valid Somatic missense V272M V272M H 2.195 http://mutationassessor.org?cm=var&var=17,7517849,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V272M http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V272M -LDHA 3939 genome.wustl.edu 36 11 18381850 18381850 + missense SNP T C T Unknown Unknown TCGA-02-0014 TCGA-02-0014-10A-01W T T Valid Somatic missense V209A V209A H 2.14 http://mutationassessor.org?cm=var&var=11,18381850,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LDHA_HUMAN&rb=163&re=331&var=V209A http://mutationassessor.org/pdb.php?prot=LDHA_HUMAN&from=163&to=331&var=V209A -TP53 7157 genome.wustl.edu 36 17 7518275 7518275 + missense SNP C C T rs28934572 Unknown TCGA-02-0026 TCGA-02-0026-10A-01W C C Valid Somatic missense G244D G244D H 2.1 http://mutationassessor.org?cm=var&var=17,7518275,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G244D http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G244D -A2M 2 genome.wustl.edu 36 12 9150104 9150104 + missense SNP C C G Unknown Unknown TCGA-02-0024 TCGA-02-0024-10A-01W C C Valid Somatic missense G367R G367R H 2.005 http://mutationassessor.org?cm=var&var=12,9150104,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=222&re=421&var=G367R -SULF1 23213 genome.wustl.edu 36 8 70713344 70713344 + missense SNP C C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense R780C R780C M 1.995 http://mutationassessor.org?cm=var&var=8,70713344,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SULF1_HUMAN&rb=681&re=871&var=R780C -COL4A1 1282 genome.wustl.edu 36 13 109629348 109629348 + missense SNP C C T Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C Valid Somatic missense G794E G794E M 1.99 http://mutationassessor.org?cm=var&var=13,109629348,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO4A1_HUMAN&rb=779&re=839&var=G794E -KLF6 1316 genome.wustl.edu 36 10 3817172 3817172 + missense SNP T C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T Valid Somatic missense E12G E12G M 1.975 http://mutationassessor.org?cm=var&var=10,3817172,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KLF6_HUMAN&rb=1&re=143&var=E12G -EGFR 1956 genome.wustl.edu 36 7 55187768 55187768 + missense SNP C T T Unknown Unknown TCGA-06-0154 TCGA-06-0154-10A-01W C C Valid Somatic missense R222C R222C M 1.965 http://mutationassessor.org?cm=var&var=7,55187768,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=R222C http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=R222C -SOCS1 8651 genome.wustl.edu 36 16 11256592 11256592 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense G82E G82E M 1.955 http://mutationassessor.org?cm=var&var=16,11256592,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SOCS1_HUMAN&rb=79&re=154&var=G82E http://mutationassessor.org/pdb.php?prot=SOCS1_HUMAN&from=79&to=154&var=G82E -FBXW7 55294 genome.wustl.edu 36 4 153463593 153463593 + missense SNP C C T Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C Valid Somatic missense V672M V672M M 1.955 http://mutationassessor.org?cm=var&var=4,153463593,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FBXW7_HUMAN&rb=601&re=707&var=V672M http://mutationassessor.org/pdb.php?prot=FBXW7_HUMAN&from=601&to=707&var=V672M -PIK3C2G 5288 genome.wustl.edu 36 12 18549503 18549503 + missense SNP A A G Unknown Unknown TCGA-06-0145 TCGA-06-0145-10A-01W A A Valid Somatic missense N1014S N1014S M 1.925 http://mutationassessor.org?cm=var&var=12,18549503,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=915&re=1130&var=N1014S http://mutationassessor.org/pdb.php?prot=P3C2G_HUMAN&from=915&to=1130&var=N1014S -TP53 7157 genome.wustl.edu 36 17 7517836 7517836 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense A276V A276V M 1.885 http://mutationassessor.org?cm=var&var=17,7517836,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=A276V http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=A276V -TP53 7157 genome.wustl.edu 36 17 7518273 7518273 + missense SNP C C T rs28934575 Unknown TCGA-02-0048 TCGA-02-0048-10A-01W C C Valid Somatic missense G245S G245S M 1.875 http://mutationassessor.org?cm=var&var=17,7518273,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G245S http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G245S -FRAP1 2475 genome.wustl.edu 36 1 11224264 11224264 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense A492T A492T M 1.83 http://mutationassessor.org?cm=var&var=1,11224264,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FRAP_HUMAN&rb=357&re=695&var=A492T -PTEN 5728 genome.wustl.edu 36 10 89682887 89682887 + missense SNP A A G Unknown Unknown TCGA-02-0055 TCGA-02-0055-10A-01W A A Valid Somatic missense T131A T131A M 1.815 http://mutationassessor.org?cm=var&var=10,89682887,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=T131A http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=T131A -ERBB2 2064 genome.wustl.edu 36 17 35121767 35121767 + missense SNP A A G Unknown Unknown TCGA-02-0089 TCGA-02-0089-10A-01W A A Valid Somatic missense E321G E321G M 1.78 http://mutationassessor.org?cm=var&var=17,35121767,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=183&re=343&var=E321G http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=183&to=343&var=E321G -MLH1 4292 genome.wustl.edu 36 3 37056750 37056750 + missense SNP A A G Unknown Unknown TCGA-02-0014 TCGA-02-0014-10A-01W A A Valid Somatic missense H543R H543R M 1.76 http://mutationassessor.org?cm=var&var=3,37056750,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MLH1_HUMAN&rb=521&re=755&var=H543R -ARNT 405 genome.wustl.edu 36 1 149055490 149055490 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense P607S P607S M 1.75 http://mutationassessor.org?cm=var&var=1,149055490,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ARNT_HUMAN&rb=601&re=789&var=P607S -FGFR3 2261 genome.wustl.edu 36 4 1777688 1777688 + missense SNP A A C Unknown Unknown TCGA-06-0159 TCGA-06-0159-10A-01W A A Valid Somatic missense K650T K650T M 1.73 http://mutationassessor.org?cm=var&var=4,1777688,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FGFR3_HUMAN&rb=472&re=748&var=K650T http://mutationassessor.org/pdb.php?prot=FGFR3_HUMAN&from=472&to=748&var=K650T -COL6A2 1292 genome.wustl.edu 36 21 46356756 46356756 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense G184D G184D M 1.725 http://mutationassessor.org?cm=var&var=21,46356756,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO6A2_HUMAN&rb=46&re=233&var=G184D -TP53 7157 genome.wustl.edu 36 17 7519121 7519121 + missense SNP G G T Unknown Unknown TCGA-02-0003 TCGA-02-0003-10A-01W G G Valid Somatic missense H178Q H178Q M 1.725 http://mutationassessor.org?cm=var&var=17,7519121,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H178Q http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H178Q -TP53 7157 genome.wustl.edu 36 17 7518303 7518303 + missense SNP T C C Unknown Unknown TCGA-02-0074 TCGA-02-0074-10A-01W T T Valid Somatic missense N235D N235D M 1.705 http://mutationassessor.org?cm=var&var=17,7518303,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=N235D http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=N235D -EGFR 1956 genome.wustl.edu 36 7 55189315 55189315 + missense SNP G A G Unknown Unknown TCGA-02-0089 TCGA-02-0089-10A-01W G G Valid Somatic missense A289T A289T M 1.7 http://mutationassessor.org?cm=var&var=7,55189315,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289T http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289T -EGFR 1956 genome.wustl.edu 36 7 55189316 55189316 + missense SNP C C T Unknown Unknown TCGA-02-0054 TCGA-02-0054-10A-01W C C Valid Somatic missense A289V A289V M 1.7 http://mutationassessor.org?cm=var&var=7,55189316,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289V -ERBB2 2064 genome.wustl.edu 36 17 35134527 35134527 + missense SNP T C T Unknown Unknown TCGA-02-0069 TCGA-02-0069-10A-01W T T Valid Somatic missense V777A V777A M 1.695 http://mutationassessor.org?cm=var&var=17,35134527,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=720&re=976&var=V777A http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=720&to=976&var=V777A -RELN 5649 genome.wustl.edu 36 7 102970478 102970478 + missense SNP G T T Unknown Unknown TCGA-06-0167 TCGA-06-0167-10A-01W G G Valid Somatic missense L2203I L2203I M 1.68 http://mutationassessor.org?cm=var&var=7,102970478,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RELN_HUMAN&rb=2160&re=2248&var=L2203I http://mutationassessor.org/pdb.php?prot=RELN_HUMAN&from=2160&to=2248&var=L2203I -ICA1 3382 genome.wustl.edu 36 7 8164735 8164735 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense L218F L218F M 1.675 http://mutationassessor.org?cm=var&var=7,8164735,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ICA69_HUMAN&rb=22&re=249&var=L218F -GPR78 27201 genome.wustl.edu 36 4 8633674 8633674 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense S22F S22F M 1.67 http://mutationassessor.org?cm=var&var=4,8633674,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GPR78_HUMAN&rb=22&re=294&var=S22F -PIK3R1 5295 genome.wustl.edu 36 5 67626853 67626853 + missense SNP A A G Unknown Unknown TCGA-02-0068 TCGA-02-0068-10A-01W A A Valid Somatic missense N564D N564D M 1.65 http://mutationassessor.org?cm=var&var=5,67626853,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P85A_HUMAN&rb=401&re=600&var=N564D http://mutationassessor.org/pdb.php?prot=P85A_HUMAN&from=401&to=600&var=N564D -PIK3R1 5295 genome.wustl.edu 36 5 67626855 67626855 + missense SNP C C G Unknown Unknown TCGA-02-0074 TCGA-02-0074-10A-01W C C Valid Somatic missense N564K N564K M 1.65 http://mutationassessor.org?cm=var&var=5,67626855,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P85A_HUMAN&rb=401&re=600&var=N564K http://mutationassessor.org/pdb.php?prot=P85A_HUMAN&from=401&to=600&var=N564K -PTEN 5728 genome.wustl.edu 36 10 89682975 89682975 + missense SNP C C T Unknown Unknown TCGA-02-0079 TCGA-02-0079-10A-01W C C Valid Somatic missense T160I T160I M 1.6 http://mutationassessor.org?cm=var&var=10,89682975,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=T160I http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=T160I -KALRN 8997 genome.wustl.edu 36 3 125860028 125860028 + missense SNP G A G Unknown Unknown TCGA-06-0176 TCGA-06-0176-10A-01W Valid Somatic missense V2031I V2031I M 1.585 http://mutationassessor.org?cm=var&var=3,125860028,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KALRN_HUMAN&rb=1932&re=2102&var=V2031I http://mutationassessor.org/pdb.php?prot=KALRN_HUMAN&from=1932&to=2102&var=V2031I -CHRNA1 1134 genome.wustl.edu 36 2 175327275 175327275 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense T178I T178I M 1.58 http://mutationassessor.org?cm=var&var=2,175327275,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ACHA_HUMAN&rb=97&re=256&var=T178I http://mutationassessor.org/pdb.php?prot=ACHA_HUMAN&from=97&to=256&var=T178I -EGFR 1956 genome.wustl.edu 36 7 55189324 55189324 + missense SNP G G T Unknown Unknown TCGA-06-0127 TCGA-06-0127-10A-01W G G Valid Somatic missense V292L V292L M 1.575 http://mutationassessor.org?cm=var&var=7,55189324,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=V292L http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=V292L -PIK3R1 5295 genome.wustl.edu 36 5 67626841 67626841 + missense SNP G G T Unknown Unknown TCGA-02-0089 TCGA-02-0089-10A-01W G G Valid Somatic missense D560Y D560Y M 1.56 http://mutationassessor.org?cm=var&var=5,67626841,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P85A_HUMAN&rb=401&re=600&var=D560Y http://mutationassessor.org/pdb.php?prot=P85A_HUMAN&from=401&to=600&var=D560Y -PIK3R1 5295 genome.wustl.edu 36 5 67624894 67624894 + missense SNP G A G Unknown Unknown TCGA-02-0003 TCGA-02-0003-10A-01W G G Valid Somatic missense G376R G376R M 1.545 http://mutationassessor.org?cm=var&var=5,67624894,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P85A_HUMAN&rb=333&re=408&var=G376R http://mutationassessor.org/pdb.php?prot=P85A_HUMAN&from=333&to=408&var=G376R -GYPC 2995 genome.wustl.edu 36 2 127170093 127170093 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense G98S G98S M 1.54 http://mutationassessor.org?cm=var&var=2,127170093,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GLPC_HUMAN&rb=1&re=128&var=G98S -OSMR 9180 genome.wustl.edu 36 5 38968356 38968356 + missense SNP C C T Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C Valid Somatic missense P777S P777S M 1.54 http://mutationassessor.org?cm=var&var=5,38968356,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=OSMR_HUMAN&rb=610&re=809&var=P777S -FBLN1 2192 genome.wustl.edu 36 22 44349167 44349167 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense P604S P604S M 1.53 http://mutationassessor.org?cm=var&var=22,44349167,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FBLN1_HUMAN&rb=578&re=703&var=P604S -A2M 2 genome.wustl.edu 36 12 9116623 9116623 + missense SNP A A G Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W A A Valid Somatic missense F1290L F1290L M 1.515 http://mutationassessor.org?cm=var&var=12,9116623,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=1267&re=1375&var=F1290L -EGFR 1956 genome.wustl.edu 36 7 55189204 55189204 + missense SNP C C T Unknown Unknown TCGA-02-0021 TCGA-02-0021-10A-01W C C Valid Somatic missense R252C R252C M 1.495 http://mutationassessor.org?cm=var&var=7,55189204,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=R252C http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=R252C -CYP3A4 1576 genome.wustl.edu 36 7 99219583 99219583 + missense SNP C C T Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W C C Valid Somatic missense V20M V20M M 1.485 http://mutationassessor.org?cm=var&var=7,99219583,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CP3A4_HUMAN&rb=1&re=200&var=V20M -GBAS 2631 genome.wustl.edu 36 7 56032609 56032609 + missense SNP G A G Unknown Unknown TCGA-02-0089 TCGA-02-0089-10A-01W G G Valid Somatic missense G257S G257S M 1.46 http://mutationassessor.org?cm=var&var=7,56032609,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NIPS2_HUMAN&rb=187&re=284&var=G257S http://mutationassessor.org/pdb.php?prot=NIPS2_HUMAN&from=187&to=284&var=G257S -PTEN 5728 genome.wustl.edu 36 10 89701940 89701940 + missense SNP T C C Unknown Unknown TCGA-02-0007 TCGA-02-0007-10A-01W T T Valid Somatic missense L193P L193P M 1.415 http://mutationassessor.org?cm=var&var=10,89701940,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=188&re=349&var=L193P http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=188&to=349&var=L193P -TOP1 7150 genome.wustl.edu 36 20 39177465 39177465 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense P560L P560L M 1.405 http://mutationassessor.org?cm=var&var=20,39177465,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TOP1_HUMAN&rb=431&re=668&var=P560L http://mutationassessor.org/pdb.php?prot=TOP1_HUMAN&from=431&to=668&var=P560L -PDGFRA 5156 genome.wustl.edu 36 4 54835503 54835503 + missense SNP T A T Unknown Unknown TCGA-08-0347 TCGA-08-0347-11A-01W T T Valid Somatic missense V536E V536E M 1.4 http://mutationassessor.org?cm=var&var=4,54835503,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PGFRA_HUMAN&rb=401&re=600&var=V536E -EGFR 1956 genome.wustl.edu 36 7 55200603 55200603 + missense SNP G A G Unknown Unknown TCGA-02-0003 TCGA-02-0003-10A-01W G G Valid Somatic missense C620Y C620Y M 1.34 http://mutationassessor.org?cm=var&var=7,55200603,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=601&re=800&var=C620Y http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=601&to=800&var=C620Y -KALRN 8997 genome.wustl.edu 36 3 125647749 125647749 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense T1120I T1120I M 1.34 http://mutationassessor.org?cm=var&var=3,125647749,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KALRN_HUMAN&rb=1004&re=1129&var=T1120I -FGFR3 2261 genome.wustl.edu 36 4 1777343 1777343 + missense SNP C C G Unknown Unknown TCGA-06-0141 TCGA-06-0141-10A-01W C C Valid Somatic missense P572A P572A M 1.315 http://mutationassessor.org?cm=var&var=4,1777343,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FGFR3_HUMAN&rb=472&re=748&var=P572A http://mutationassessor.org/pdb.php?prot=FGFR3_HUMAN&from=472&to=748&var=P572A -EGFR 1956 genome.wustl.edu 36 7 55208288 55208288 + missense SNP C C G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense R680G R680G M 1.31 http://mutationassessor.org?cm=var&var=7,55208288,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=601&re=800&var=R680G http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=601&to=800&var=R680G -HIPK2 28996 genome.wustl.edu 36 7 138962011 138962011 + missense SNP C C T Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C Valid Somatic missense E499K E499K M 1.305 http://mutationassessor.org?cm=var&var=7,138962011,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=HIPK2_HUMAN&rb=199&re=527&var=E499K http://mutationassessor.org/pdb.php?prot=HIPK2_HUMAN&from=199&to=527&var=E499K -NF1 4763 genome.wustl.edu 36 17 26681585 26681585 + missense SNP G A G Unknown Unknown TCGA-06-0208 TCGA-06-0208-10A-01W G G Valid Somatic missense E1919K E1919K M 1.295 http://mutationassessor.org?cm=var&var=17,26681585,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NF1_HUMAN&rb=1801&re=2000&var=E1919K -MBD6 114785 genome.wustl.edu 36 12 56204819 56204819 + missense SNP C C T Unknown Unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C Valid Somatic missense L55F L55F M 1.29 http://mutationassessor.org?cm=var&var=12,56204819,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MBD6_HUMAN&rb=11&re=81&var=L55F -RELN 5649 genome.wustl.edu 36 7 102914070 102914070 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense L3265F L3265F M 1.245 http://mutationassessor.org?cm=var&var=7,102914070,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RELN_HUMAN&rb=3201&re=3400&var=L3265F http://mutationassessor.org/pdb.php?prot=RELN_HUMAN&from=3201&to=3400&var=L3265F -NOS3 4846 genome.wustl.edu 36 7 150329333 150329333 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense G439R G439R M 1.235 http://mutationassessor.org?cm=var&var=7,150329333,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NOS3_HUMAN&rb=115&re=486&var=G439R http://mutationassessor.org/pdb.php?prot=NOS3_HUMAN&from=115&to=486&var=G439R -MAGEA1 4100 genome.wustl.edu 36 X 152135694 152135694 + missense SNP G A G Unknown Unknown TCGA-06-0137 TCGA-06-0137-10A-01W G G Valid Somatic missense L171F L171F M 1.215 http://mutationassessor.org?cm=var&var=X,152135694,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MAGA1_HUMAN&rb=109&re=279&var=L171F http://mutationassessor.org/pdb.php?prot=MAGA1_HUMAN&from=109&to=279&var=L171F -FGFR2 2263 genome.wustl.edu 36 10 123288210 123288210 + missense SNP G G T Unknown Unknown TCGA-02-0033 TCGA-02-0033-10A-01W G G Valid Somatic missense Q212K Q212K M 1.2 http://mutationassessor.org?cm=var&var=10,123288210,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FGFR2_HUMAN&rb=161&re=248&var=Q212K http://mutationassessor.org/pdb.php?prot=FGFR2_HUMAN&from=161&to=248&var=Q212K -BAI3 577 genome.wustl.edu 36 6 69760544 69760544 + missense SNP C C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense A633V A633V M 1.185 http://mutationassessor.org?cm=var&var=6,69760544,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BAI3_HUMAN&rb=586&re=810&var=A633V -FURIN 5045 genome.wustl.edu 36 15 89225202 89225202 + missense SNP G A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G Valid Somatic missense A574T A574T M 1.14 http://mutationassessor.org?cm=var&var=15,89225202,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FURIN_HUMAN&rb=401&re=600&var=A574T http://mutationassessor.org/pdb.php?prot=FURIN_HUMAN&from=401&to=600&var=A574T -LTF 4057 genome.wustl.edu 36 3 46471868 46471868 + missense SNP G A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G Valid Somatic missense R190C R190C M 1.13 http://mutationassessor.org?cm=var&var=3,46471868,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TRFL_HUMAN&rb=25&re=352&var=R190C http://mutationassessor.org/pdb.php?prot=TRFL_HUMAN&from=25&to=352&var=R190C -COL1A2 1278 genome.wustl.edu 36 7 93892889 93892889 + missense SNP G A G Unknown Unknown TCGA-06-0126 TCGA-06-0126-10A-01W G G Valid Somatic missense R938H R938H M 1.13 http://mutationassessor.org?cm=var&var=7,93892889,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO1A2_HUMAN&rb=801&re=1000&var=R938H http://mutationassessor.org/pdb.php?prot=CO1A2_HUMAN&from=801&to=1000&var=R938H -PGR 5241 genome.wustl.edu 36 11 100504462 100504462 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense V184M V184M M 1.13 http://mutationassessor.org?cm=var&var=11,100504462,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PRGR_HUMAN&rb=1&re=564&var=V184M -CTNNB1 1499 genome.wustl.edu 36 3 41252952 41252952 + missense SNP G A G Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G Valid Somatic missense A638T A638T M 1.115 http://mutationassessor.org?cm=var&var=3,41252952,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CTNB1_HUMAN&rb=601&re=781&var=A638T http://mutationassessor.org/pdb.php?prot=CTNB1_HUMAN&from=601&to=781&var=A638T -NF1 4763 genome.wustl.edu 36 17 26691733 26691733 + missense SNP G A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G Valid Somatic missense A2336T A2336T M 1.11 http://mutationassessor.org?cm=var&var=17,26691733,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NF1_HUMAN&rb=2201&re=2400&var=A2336T -AIFM1 9131 genome.wustl.edu 36 X 129111203 129111203 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense D91N D91N M 1.11 http://mutationassessor.org?cm=var&var=X,129111203,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=AIFM1_HUMAN&rb=1&re=132&var=D91N -FURIN 5045 genome.wustl.edu 36 15 89225991 89225991 + missense SNP G A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G Valid Somatic missense G755D G755D M 1.105 http://mutationassessor.org?cm=var&var=15,89225991,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FURIN_HUMAN&rb=683&re=793&var=G755D -RET 5979 genome.wustl.edu 36 10 42917990 42917990 + missense SNP G A G Unknown Unknown TCGA-08-0375 TCGA-08-0375-11A-01W G G Valid Somatic missense E178K E178K M 1.1 http://mutationassessor.org?cm=var&var=10,42917990,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RET_HUMAN&rb=172&re=262&var=E178K -BAMBI 25805 genome.wustl.edu 36 10 29011215 29011215 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense G221E G221E M 1.1 http://mutationassessor.org?cm=var&var=10,29011215,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BAMBI_HUMAN&rb=201&re=260&var=G221E -PRKDC 5591 genome.wustl.edu 36 8 48912493 48912493 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense P2532S P2532S M 1.1 http://mutationassessor.org?cm=var&var=8,48912493,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PRKDC_HUMAN&rb=2281&re=2764&var=P2532S -KIAA0415 9907 genome.wustl.edu 36 7 4791731 4791731 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense S341F S341F M 1.1 http://mutationassessor.org?cm=var&var=7,4791731,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=K0415_HUMAN&rb=201&re=400&var=S341F -COL6A2 1292 genome.wustl.edu 36 21 46368994 46368994 + missense SNP C C T Unknown Unknown TCGA-06-0644 TCGA-06-0644-10A-01W C C Valid Somatic missense A558V A558V M 1.065 http://mutationassessor.org/?cm=msa&ty=f&p=CO6A2_HUMAN&rb=401&re=600&var=A558V http://mutationassessor.org/pdb.php?prot=CO6A2_HUMAN&from=401&to=600&var=A558V -LYN 4067 genome.wustl.edu 36 8 57025643 57025643 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense A119V A119V M 1.025 http://mutationassessor.org?cm=var&var=8,57025643,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LYN_HUMAN&rb=63&re=123&var=A119V http://mutationassessor.org/pdb.php?prot=LYN_HUMAN&from=63&to=123&var=A119V -PIK3C2A 5286 genome.wustl.edu 36 11 17098009 17098009 + missense SNP C T T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense A916T A916T M 1.01 http://mutationassessor.org?cm=var&var=11,17098009,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2A_HUMAN&rb=863&re=1046&var=A916T http://mutationassessor.org/pdb.php?prot=P3C2A_HUMAN&from=863&to=1046&var=A916T -ERBB2 2064 genome.wustl.edu 36 17 35119867 35119867 + missense SNP A A T Unknown Unknown TCGA-02-0069 TCGA-02-0069-10A-01W A A Valid Somatic missense T216S T216S M 1.01 http://mutationassessor.org?cm=var&var=17,35119867,A,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=183&re=343&var=T216S http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=183&to=343&var=T216S -LRRN6C 158038 genome.wustl.edu 36 9 27940659 27940659 + missense SNP G A G Unknown Unknown TCGA-02-0068 TCGA-02-0068-10A-01W G G Valid Somatic missense T4M T4M M 1.005 http://mutationassessor.org?cm=var&var=9,27940659,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LIGO2_HUMAN&rb=1&re=200&var=T4M -TRRAP 8295 genome.wustl.edu 36 7 98447697 98447697 + missense SNP A A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W A A Valid Somatic missense D3788G D3788G M 1 http://mutationassessor.org?cm=var&var=7,98447697,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TRRAP_HUMAN&rb=3528&re=3826&var=D3788G -TERT 7015 genome.wustl.edu 36 5 1332521 1332521 + missense SNP C C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense R672H R672H M 0.99 http://mutationassessor.org/?cm=msa&ty=f&p=TERT_HUMAN&rb=649&re=913&var=R672H -ZNF431 170959 genome.wustl.edu 36 19 21157766 21157766 + missense SNP A A C Unknown Unknown TCGA-02-0086 TCGA-02-0086-10A-01W A A Valid Somatic missense T274P T274P L 0.99 http://mutationassessor.org?cm=var&var=19,21157766,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ZN431_HUMAN&rb=260&re=282&var=T274P http://mutationassessor.org/pdb.php?prot=ZN431_HUMAN&from=260&to=282&var=T274P -ZNF384 171017 genome.wustl.edu 36 12 6652748 6652748 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense S214F S214F L 0.975 http://mutationassessor.org?cm=var&var=12,6652748,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=Q7Z722_HUMAN&rb=201&re=223&var=S214F -TNFRSF1B 7133 genome.wustl.edu 36 1 12175619 12175619 + missense SNP A A C Unknown Unknown TCGA-06-0126 TCGA-06-0126-10A-01W A A Valid Somatic missense T222P T222P L 0.975 http://mutationassessor.org?cm=var&var=1,12175619,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TNR1B_HUMAN&rb=119&re=318&var=T222P -KLF4 9314 genome.wustl.edu 36 9 109289919 109289919 + missense SNP C C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense V193M V193M L 0.975 http://mutationassessor.org?cm=var&var=9,109289919,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KLF4_HUMAN&rb=102&re=301&var=V193M -DSP 1832 genome.wustl.edu 36 6 7510676 7510676 + missense SNP A A G Unknown Unknown TCGA-02-0014 TCGA-02-0014-10A-01W A A Valid Somatic missense D288G D288G L 0.96 http://mutationassessor.org?cm=var&var=6,7510676,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DESP_HUMAN&rb=201&re=400&var=D288G http://mutationassessor.org/pdb.php?prot=DESP_HUMAN&from=201&to=400&var=D288G -PIK3CG 5294 genome.wustl.edu 36 7 106311882 106311882 + missense SNP G C G Unknown Unknown TCGA-06-0173 TCGA-06-0173-10B-01W G G Valid Somatic missense C936S C936S L 0.95 http://mutationassessor.org?cm=var&var=7,106311882,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CG_HUMAN&rb=827&re=1044&var=C936S http://mutationassessor.org/pdb.php?prot=PK3CG_HUMAN&from=827&to=1044&var=C936S -ERBB2 2064 genome.wustl.edu 36 17 35116841 35116841 + missense SNP T A T Unknown Unknown TCGA-02-0080 TCGA-02-0080-10A-01W T T Valid Somatic missense L49H L49H L 0.95 http://mutationassessor.org?cm=var&var=17,35116841,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=1&re=200&var=L49H http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=1&to=200&var=L49H -PRKDC 5591 genome.wustl.edu 36 8 48968294 48968294 + missense SNP G A G Unknown Unknown TCGA-08-0373 TCGA-08-0373-11A-01W G G Valid Somatic missense T1269M T1269M L 0.95 http://mutationassessor.org?cm=var&var=8,48968294,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PRKDC_HUMAN&rb=1088&re=1287&var=T1269M -PTEN 5728 genome.wustl.edu 36 10 89707676 89707676 + missense SNP T C T Unknown Unknown TCGA-02-0075 TCGA-02-0075-10A-01W T T Valid Somatic missense F241L F241L L 0.945 http://mutationassessor.org?cm=var&var=10,89707676,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=188&re=349&var=F241L http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=188&to=349&var=F241L -ZNF431 170959 genome.wustl.edu 36 19 21118210 21118210 + missense SNP G A G Unknown Unknown TCGA-02-0001 TCGA-02-0001-10A-01W G G Valid Somatic missense G7E G7E L 0.945 http://mutationassessor.org?cm=var&var=19,21118210,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ZN431_HUMAN&rb=1&re=200&var=G7E -NTRK3 4916 genome.wustl.edu 36 15 86377214 86377214 + missense SNP A A G Unknown Unknown TCGA-06-0645 TCGA-06-0645-10A-01W A A Valid Somatic missense I488T I488T L 0.935 http://mutationassessor.org?cm=var&var=15,86377214,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NTRK3_HUMAN&rb=393&re=537&var=I488T -FRAP1 2475 genome.wustl.edu 36 1 11181971 11181971 + missense SNP T C T Unknown Unknown TCGA-08-0353 TCGA-08-0353-11A-01W T T Valid Somatic missense K1395R K1395R L 0.93 http://mutationassessor.org?cm=var&var=1,11181971,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FRAP_HUMAN&rb=1382&re=1982&var=K1395R -PIK3CG 5294 genome.wustl.edu 36 7 106332830 106332830 + missense SNP C A C Unknown Unknown TCGA-08-0244 TCGA-08-0244-11A-01W C C Valid Somatic missense T1024K T1024K L 0.91 http://mutationassessor.org?cm=var&var=7,106332830,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CG_HUMAN&rb=827&re=1044&var=T1024K http://mutationassessor.org/pdb.php?prot=PK3CG_HUMAN&from=827&to=1044&var=T1024K -BCR 613 genome.wustl.edu 36 22 21926057 21926057 + missense SNP G A A Unknown Unknown TCGA-02-0102 TCGA-02-0102-10A-01W G G Valid Somatic missense D451N D451N L 0.895 http://mutationassessor.org?cm=var&var=22,21926057,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BCR_HUMAN&rb=431&re=479&var=D451N -CAMTA1 23261 genome.wustl.edu 36 1 7646054 7646054 + missense SNP C C T Unknown Unknown TCGA-06-0176 TCGA-06-0176-10A-01W C C Valid Somatic missense S287L S287L L 0.895 http://mutationassessor.org?cm=var&var=1,7646054,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CMTA1_HUMAN&rb=184&re=383&var=S287L -NF1 4763 genome.wustl.edu 36 17 26678919 26678919 + missense SNP G A G Unknown Unknown TCGA-06-0214 TCGA-06-0214-10A-01W G G Valid Somatic missense D1849N D1849N L 0.885 http://mutationassessor.org?cm=var&var=17,26678919,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NF1_HUMAN&rb=1801&re=2000&var=D1849N -RPN1 6184 genome.wustl.edu 36 3 129846483 129846483 + missense SNP C C T Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W C C Valid Somatic missense E99K E99K L 0.885 http://mutationassessor.org?cm=var&var=3,129846483,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RPN1_HUMAN&rb=30&re=458&var=E99K -FURIN 5045 genome.wustl.edu 36 15 89225687 89225687 + missense SNP C C T Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C Valid Somatic missense P654S P654S L 0.88 http://mutationassessor.org?cm=var&var=15,89225687,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FURIN_HUMAN&rb=601&re=794&var=P654S -EGFR 1956 genome.wustl.edu 36 7 55200533 55200533 + missense SNP G C C Unknown Unknown TCGA-02-0116 TCGA-02-0116-10A-01W G G Valid Somatic missense A597P A597P L 0.87 http://mutationassessor.org?cm=var&var=7,55200533,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=A597P http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=A597P -MSH2 4436 genome.wustl.edu 36 2 47484039 47484039 + missense SNP C A C Unknown Unknown TCGA-02-0075 TCGA-02-0075-10A-01W C C Valid Somatic missense P69T P69T L 0.85 http://mutationassessor.org/?cm=msa&ty=f&p=MSH2_HUMAN&rb=17&re=132&var=P69T http://mutationassessor.org/pdb.php?prot=MSH2_HUMAN&from=17&to=132&var=P69T -CYP27B1 1594 genome.wustl.edu 36 12 56445112 56445112 + missense SNP G A G Unknown Unknown TCGA-02-0080 TCGA-02-0080-10A-01W G G Valid Somatic missense P247S P247S L 0.845 http://mutationassessor.org?cm=var&var=12,56445112,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CP27B_HUMAN&rb=41&re=505&var=P247S http://mutationassessor.org/pdb.php?prot=CP27B_HUMAN&from=41&to=505&var=P247S -ERBB2 2064 genome.wustl.edu 36 17 35121760 35121760 + missense SNP A A G Unknown Unknown TCGA-02-0116 TCGA-02-0116-10A-01W A A Valid Somatic missense N319D N319D L 0.825 http://mutationassessor.org?cm=var&var=17,35121760,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=183&re=343&var=N319D http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=183&to=343&var=N319D -MLLT7 4303 genome.wustl.edu 36 X 70237836 70237836 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense S344F S344F L 0.82 http://mutationassessor.org?cm=var&var=X,70237836,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FOXO4_HUMAN&rb=202&re=401&var=S344F -PIK3CG 5294 genome.wustl.edu 36 7 106313954 106313954 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense P1004L P1004L L 0.815 http://mutationassessor.org?cm=var&var=7,106313954,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CG_HUMAN&rb=827&re=1044&var=P1004L http://mutationassessor.org/pdb.php?prot=PK3CG_HUMAN&from=827&to=1044&var=P1004L -TSC1 7248 genome.wustl.edu 36 9 134761810 134761810 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense S1043N S1043N L 0.815 http://mutationassessor.org?cm=var&var=9,134761810,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TSC1_HUMAN&rb=821&re=1163&var=S1043N -MADD 8567 genome.wustl.edu 36 11 47262655 47262655 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense S707N S707N L 0.815 http://mutationassessor.org?cm=var&var=11,47262655,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MADD_HUMAN&rb=558&re=757&var=S707N -ADAM12 8038 genome.wustl.edu 36 10 128009005 128009005 + missense SNP T C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T Valid Somatic missense D51G D51G L 0.81 http://mutationassessor.org?cm=var&var=10,128009005,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ADA12_HUMAN&rb=25&re=167&var=D51G -DST 667 genome.wustl.edu 36 6 56581605 56581605 + missense SNP T C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T Valid Somatic missense E1390G E1390G L 0.805 http://mutationassessor.org?cm=var&var=6,56581605,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BPAEB_HUMAN&rb=1378&re=1446&var=E1390G -C20orf160 140706 genome.wustl.edu 36 20 30069280 30069280 + missense SNP C C T Unknown Unknown TCGA-08-0385 TCGA-08-0385-11A-01W C C Valid Somatic missense T72I T72I L 0.795 http://mutationassessor.org?cm=var&var=20,30069280,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CT160_HUMAN&rb=57&re=153&var=T72I -NTRK1 4914 genome.wustl.edu 36 1 155111328 155111328 + missense SNP G A G Unknown Unknown TCGA-02-0014 TCGA-02-0014-10A-01W G G Valid Somatic missense V420M V420M L 0.795 http://mutationassessor.org?cm=var&var=1,155111328,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NTRK1_HUMAN&rb=401&re=509&var=V420M -COL6A2 1292 genome.wustl.edu 36 21 46358384 46358384 + missense SNP C C T Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C Valid Somatic missense P257L P257L L 0.78 http://mutationassessor.org/?cm=msa&ty=f&p=CO6A2_HUMAN&rb=254&re=316&var=P257L -IQSEC3 440073 genome.wustl.edu 36 12 145185 145185 + missense SNP C A C Unknown Unknown TCGA-06-0211 TCGA-06-0211-10A-01W Valid Somatic missense P947T P947T L 0.775 http://mutationassessor.org?cm=var&var=12,145185,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IQEC3_HUMAN&rb=850&re=983&var=P947T -NPTX2 4885 genome.wustl.edu 36 7 98095698 98095698 + missense SNP C A C Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense L373I L373I L 0.77 http://mutationassessor.org?cm=var&var=7,98095698,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NPTX2_HUMAN&rb=224&re=420&var=L373I http://mutationassessor.org/pdb.php?prot=NPTX2_HUMAN&from=224&to=420&var=L373I -KLF6 1316 genome.wustl.edu 36 10 3814279 3814279 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense S77F S77F L 0.77 http://mutationassessor.org?cm=var&var=10,3814279,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KLF6_HUMAN&rb=1&re=143&var=S77F -DST 667 genome.wustl.edu 36 6 56607311 56607311 + missense SNP C C G Unknown Unknown TCGA-06-0148 TCGA-06-0148-10A-01W C C Valid Somatic missense K597N K597N L 0.75 http://mutationassessor.org?cm=var&var=6,56607311,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BPAEB_HUMAN&rb=564&re=616&var=K597N -PML 5371 genome.wustl.edu 36 15 72077554 72077554 + missense SNP C A C Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense P96T P96T L 0.75 http://mutationassessor.org/?cm=msa&ty=f&p=PML_HUMAN&rb=1&re=200&var=P96T http://mutationassessor.org/pdb.php?prot=PML_HUMAN&from=1&to=200&var=P96T -FRZB 2487 genome.wustl.edu 36 2 183439230 183439230 + missense SNP T C T Unknown Unknown TCGA-08-0385 TCGA-08-0385-11A-01W T T Valid Somatic missense D99G D99G L 0.735 http://mutationassessor.org?cm=var&var=2,183439230,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SFRP3_HUMAN&rb=35&re=148&var=D99G http://mutationassessor.org/pdb.php?prot=SFRP3_HUMAN&from=35&to=148&var=D99G -PLAG1 5324 genome.wustl.edu 36 8 57241776 57241776 + missense SNP C C T Unknown Unknown TCGA-02-0055 TCGA-02-0055-10A-01W C C Valid Somatic missense M361I M361I L 0.7 http://mutationassessor.org?cm=var&var=8,57241776,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PLAG1_HUMAN&rb=201&re=400&var=M361I -NBN 4683 genome.wustl.edu 36 8 91017009 91017009 + missense SNP G A G Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W G G Valid Somatic missense P748S P748S L 0.695 http://mutationassessor.org?cm=var&var=8,91017009,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NBN_HUMAN&rb=717&re=754&var=P748S -BCR 613 genome.wustl.edu 36 22 21854424 21854424 + missense SNP C A C Unknown Unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C Valid Somatic missense A426E A426E L 0.685 http://mutationassessor.org?cm=var&var=22,21854424,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BCR_HUMAN&rb=272&re=429&var=A426E -MADD 8567 genome.wustl.edu 36 11 47268322 47268322 + missense SNP G A G Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W G G Valid Somatic missense C1017Y C1017Y L 0.67 http://mutationassessor.org?cm=var&var=11,47268322,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MADD_HUMAN&rb=958&re=1157&var=C1017Y -NF1 4763 genome.wustl.edu 36 17 26581118 26581118 + missense SNP G A G Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G Valid Somatic missense R997K R997K L 0.67 http://mutationassessor.org?cm=var&var=17,26581118,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NF1_HUMAN&rb=801&re=1000&var=R997K -IRS1 3667 genome.wustl.edu 36 2 227370416 227370416 + missense SNP G A G Unknown Unknown TCGA-02-0033 TCGA-02-0033-10A-01W G G Valid Somatic missense S428L S428L L 0.65 http://mutationassessor.org/?cm=msa&ty=f&p=IRS1_HUMAN&rb=263&re=462&var=S428L -GATA6 2627 genome.wustl.edu 36 18 18005575 18005575 + missense SNP G A G Unknown Unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G Valid Somatic missense G158S G158S L 0.645 http://mutationassessor.org?cm=var&var=18,18005575,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GATA6_HUMAN&rb=147&re=381&var=G158S -COL6A2 1292 genome.wustl.edu 36 21 46356867 46356867 + missense SNP C C T Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C Valid Somatic missense P221L P221L L 0.64 http://mutationassessor.org?cm=var&var=21,46356867,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO6A2_HUMAN&rb=46&re=233&var=P221L -TERT 7015 genome.wustl.edu 36 5 1346683 1346683 + missense SNP C C T Unknown Unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C Valid Somatic missense E440K E440K L 0.62 http://mutationassessor.org/?cm=msa&ty=f&p=TERT_HUMAN&rb=381&re=458&var=E440K -MDM4 4194 genome.wustl.edu 36 1 202774027 202774027 + missense SNP C C G Unknown Unknown TCGA-06-0129 TCGA-06-0129-10A-01W C C Valid Somatic missense T160S T160S L 0.61 http://mutationassessor.org/?cm=msa&ty=f&p=MDM4_HUMAN&rb=1&re=200&var=T160S -AZGP1 563 genome.wustl.edu 36 7 99407506 99407506 + missense SNP C C T Unknown Unknown TCGA-08-0359 TCGA-08-0359-11A-01W C C Valid Somatic missense A43T A43T L 0.595 http://mutationassessor.org/?cm=msa&ty=f&p=ZA2G_HUMAN&rb=23&re=198&var=A43T http://mutationassessor.org/pdb.php?prot=ZA2G_HUMAN&from=23&to=198&var=A43T -TSC2 7249 genome.wustl.edu 36 16 2038750 2038750 + missense SNP C A C Unknown Unknown TCGA-02-0047 TCGA-02-0047-10A-01W C C Valid Somatic missense L45M L45M L 0.565 http://mutationassessor.org?cm=var&var=16,2038750,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TSC2_HUMAN&rb=1&re=200&var=L45M -ADAMTS20 80070 genome.wustl.edu 36 12 42057487 42057487 + missense SNP C C T Unknown Unknown TCGA-06-0143 TCGA-06-0143-10A-01W C C Valid Somatic missense C1648Y C1648Y L 0.55 http://mutationassessor.org?cm=var&var=12,42057487,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=1589&re=1652&var=C1648Y -MAPKBP1 23005 genome.wustl.edu 36 15 39903140 39903140 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense P1274S P1274S L 0.55 http://mutationassessor.org?cm=var&var=15,39903140,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MABP1_HUMAN&rb=1169&re=1368&var=P1274S -MBD6 114785 genome.wustl.edu 36 12 56208039 56208039 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense P793L P793L L 0.55 http://mutationassessor.org?cm=var&var=12,56208039,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MBD6_HUMAN&rb=601&re=800&var=P793L -LAX1 54900 genome.wustl.edu 36 1 202010148 202010148 + missense SNP A A T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W A A Valid Somatic missense S305C S305C L 0.55 http://mutationassessor.org?cm=var&var=1,202010148,A,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LAX1_HUMAN&rb=201&re=398&var=S305C -TRRAP 8295 genome.wustl.edu 36 7 98400280 98400280 + missense SNP G A G Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W G G Valid Somatic missense V2301I V2301I L 0.55 http://mutationassessor.org?cm=var&var=7,98400280,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TRRAP_HUMAN&rb=2139&re=2597&var=V2301I -HIPK2 28996 genome.wustl.edu 36 7 138919246 138919246 + missense SNP C C T Unknown Unknown TCGA-02-0089 TCGA-02-0089-10A-01W C C Valid Somatic missense R941H R941H L 0.525 http://mutationassessor.org/?cm=msa&ty=f&p=HIPK2_HUMAN&rb=928&re=1127&var=R941H -MLH1 4292 genome.wustl.edu 36 3 37042321 37042321 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense A410T A410T L 0.49 http://mutationassessor.org?cm=var&var=3,37042321,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MLH1_HUMAN&rb=336&re=519&var=A410T -DGKZ 8525 genome.wustl.edu 36 11 46357659 46357659 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense E1068K E1068K L 0.45 http://mutationassessor.org?cm=var&var=11,46357659,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DGKZ_HUMAN&rb=1001&re=1117&var=E1068K http://mutationassessor.org/pdb.php?prot=DGKZ_HUMAN&from=1001&to=1117&var=E1068K -DST 667 genome.wustl.edu 36 6 56534115 56534115 + missense SNP G A G Unknown Unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G Valid Somatic missense P2131S P2131S L 0.42 http://mutationassessor.org/?cm=msa&ty=f&p=BPAEA_HUMAN&rb=2101&re=2210&var=P2131S -BCR 613 genome.wustl.edu 36 22 21853559 21853559 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense A138T A138T L 0.39 http://mutationassessor.org/?cm=msa&ty=f&p=BCR_HUMAN&rb=80&re=271&var=A138T -FRAP1 2475 genome.wustl.edu 36 1 11239792 11239792 + missense SNP C C T Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C Valid Somatic missense E97K E97K L 0.385 http://mutationassessor.org?cm=var&var=1,11239792,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FRAP_HUMAN&rb=1&re=195&var=E97K -DST 667 genome.wustl.edu 36 6 56466808 56466808 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense E4162K E4162K L 0.38 http://mutationassessor.org/?cm=msa&ty=f&p=BPAEA_HUMAN&rb=4074&re=4180&var=E4162K -CYP27B1 1594 genome.wustl.edu 36 12 56444898 56444898 + missense SNP C C T Unknown Unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C Valid Somatic missense G290E G290E L 0.37 http://mutationassessor.org/?cm=msa&ty=f&p=CP27B_HUMAN&rb=41&re=505&var=G290E http://mutationassessor.org/pdb.php?prot=CP27B_HUMAN&from=41&to=505&var=G290E -TNFRSF25 8718 genome.wustl.edu 36 1 6447091 6447091 + missense SNP C C T Unknown Unknown TCGA-08-0244 TCGA-08-0244-11A-01W C C Valid Somatic missense R158K R158K L 0.37 http://mutationassessor.org/?cm=msa&ty=f&p=TNR25_HUMAN&rb=1&re=200&var=R158K http://mutationassessor.org/pdb.php?prot=TNR25_HUMAN&from=1&to=200&var=R158K -C18orf25 147339 genome.wustl.edu 36 18 42074101 42074101 + missense SNP G A G Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W G G Valid Somatic missense G283E G283E L 0.365 http://mutationassessor.org/?cm=msa&ty=f&p=CR025_HUMAN&rb=201&re=400&var=G283E -BAI3 577 genome.wustl.edu 36 6 70149531 70149531 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense P1455S P1455S L 0.36 http://mutationassessor.org/?cm=msa&ty=f&p=BAI3_HUMAN&rb=1401&re=1522&var=P1455S -ABCA1 19 genome.wustl.edu 36 9 106623528 106623528 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense T970I T970I L 0.36 http://mutationassessor.org/?cm=msa&ty=f&p=ABCA1_HUMAN&rb=940&re=1061&var=T970I http://mutationassessor.org/pdb.php?prot=ABCA1_HUMAN&from=940&to=1061&var=T970I -CAMTA1 23261 genome.wustl.edu 36 1 7646348 7646348 + missense SNP C C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense A385V A385V L 0.345 http://mutationassessor.org/?cm=msa&ty=f&p=CMTA1_HUMAN&rb=384&re=583&var=A385V -DST 667 genome.wustl.edu 36 6 56591932 56591932 + missense SNP C C T Unknown Unknown TCGA-02-0014 TCGA-02-0014-10A-01W C C Valid Somatic missense G2185D G2185D L 0.345 http://mutationassessor.org/?cm=msa&ty=f&p=BPA1_HUMAN&rb=2001&re=2200&var=G2185D -MLL3 58508 genome.wustl.edu 36 7 151490932 151490932 + missense SNP G A G Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G Valid Somatic missense P3555S P3555S L 0.345 http://mutationassessor.org/?cm=msa&ty=f&p=MLL3_HUMAN&rb=3401&re=3600&var=P3555S -RCSD1 92241 genome.wustl.edu 36 1 165933141 165933141 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense S219F S219F L 0.345 http://mutationassessor.org/?cm=msa&ty=f&p=CPZIP_HUMAN&rb=174&re=256&var=S219F -GRM5 2915 genome.wustl.edu 36 11 88420538 88420538 + missense SNP T C T Unknown Unknown TCGA-06-0143 TCGA-06-0143-10A-01W T T Valid Somatic missense K51E K51E L 0.335 http://mutationassessor.org/?cm=msa&ty=f&p=GRM5_HUMAN&rb=1&re=66&var=K51E http://mutationassessor.org/pdb.php?prot=GRM5_HUMAN&from=1&to=66&var=K51E -COL1A2 1278 genome.wustl.edu 36 7 93875479 93875479 + missense SNP C C T Unknown Unknown TCGA-06-0646 TCGA-06-0646-10A-01W C C Valid Somatic missense P230S P230S L 0.31 http://mutationassessor.org/?cm=msa&ty=f&p=CO1A2_HUMAN&rb=201&re=400&var=P230S http://mutationassessor.org/pdb.php?prot=CO1A2_HUMAN&from=201&to=400&var=P230S -ERBB2 2064 genome.wustl.edu 36 17 35121782 35121782 + missense SNP A A G Unknown Unknown TCGA-02-0115 TCGA-02-0115-10A-01W A A Valid Somatic missense D326G D326G L 0.305 http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=183&re=343&var=D326G http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=183&to=343&var=D326G -BCAS1 8537 genome.wustl.edu 36 20 52007415 52007415 + missense SNP T G T Unknown Unknown TCGA-08-0344 TCGA-08-0344-11A-01W T T Valid Somatic missense H460P H460P L 0.3 http://mutationassessor.org/?cm=msa&ty=f&p=BCAS1_HUMAN&rb=401&re=584&var=H460P -SERPINA3 12 genome.wustl.edu 36 14 94159851 94159851 + missense SNP G A A Unknown Unknown TCGA-06-0210 TCGA-06-0210-10A-01W G G Valid Somatic missense D407N D407N L 0.255 http://mutationassessor.org/?cm=msa&ty=f&p=AACT_HUMAN&rb=51&re=420&var=D407N http://mutationassessor.org/pdb.php?prot=AACT_HUMAN&from=51&to=420&var=D407N -DSG2 1829 genome.wustl.edu 36 18 27354918 27354918 + missense SNP T A T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W T T Valid Somatic missense F124Y F124Y L 0.255 http://mutationassessor.org/?cm=msa&ty=f&p=DSG2_HUMAN&rb=50&re=160&var=F124Y http://mutationassessor.org/pdb.php?prot=DSG2_HUMAN&from=50&to=160&var=F124Y -ZFP106 64397 genome.wustl.edu 36 15 40500582 40500582 + missense SNP C C T Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W C C Valid Somatic missense R1806K R1806K L 0.255 http://mutationassessor.org/?cm=msa&ty=f&p=ZF106_HUMAN&rb=1804&re=1883&var=R1806K -RGS4 5999 genome.wustl.edu 36 1 161310005 161310005 + missense SNP A A C Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W A A Valid Somatic missense N116T N116T L 0.23 http://mutationassessor.org/?cm=msa&ty=f&p=RGS4_HUMAN&rb=62&re=177&var=N116T http://mutationassessor.org/pdb.php?prot=RGS4_HUMAN&from=62&to=177&var=N116T -ZNF384 171017 genome.wustl.edu 36 12 6647289 6647289 + missense SNP T C T Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W T T Valid Somatic missense Q412R Q412R L 0.225 http://mutationassessor.org/?cm=msa&ty=f&p=Q7Z722_HUMAN&rb=224&re=423&var=Q412R -NTRK3 4916 genome.wustl.edu 36 15 86528499 86528499 + missense SNP T C T Unknown Unknown TCGA-02-0043 TCGA-02-0043-10A-01W T T Valid Somatic missense N95S N95S L 0.185 http://mutationassessor.org?cm=var&var=15,86528499,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NTRK3_HUMAN&rb=1&re=200&var=N95S http://mutationassessor.org/pdb.php?prot=NTRK3_HUMAN&from=1&to=200&var=N95S -GRM5 2915 genome.wustl.edu 36 11 88420594 88420594 + missense SNP G A G Unknown Unknown TCGA-06-0143 TCGA-06-0143-10A-01W G G Valid Somatic missense P32L P32L L 0.185 http://mutationassessor.org/?cm=msa&ty=f&p=GRM5_HUMAN&rb=1&re=66&var=P32L http://mutationassessor.org/pdb.php?prot=GRM5_HUMAN&from=1&to=66&var=P32L -ADAMTS20 80070 genome.wustl.edu 36 12 42144695 42144695 + missense SNP G A G Unknown Unknown TCGA-12-0620 TCGA-12-0620-10A-01W G G Valid Somatic missense A492V A492V L 0.17 http://mutationassessor.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=468&re=555&var=A492V http://mutationassessor.org/pdb.php?prot=ATS20_HUMAN&from=468&to=555&var=A492V -MAPK7 5598 genome.wustl.edu 36 17 19225977 19225977 + missense SNP G A G Unknown Unknown TCGA-02-0014 TCGA-02-0014-10A-01W G G Valid Somatic missense A590T A590T L 0.145 http://mutationassessor.org/?cm=msa&ty=f&p=MK07_HUMAN&rb=548&re=740&var=A590T -HPN 3249 genome.wustl.edu 36 19 40248402 40248402 + missense SNP G C G Unknown Unknown TCGA-06-0154 TCGA-06-0154-10A-01W Valid Somatic missense E343Q E343Q L 0.14 http://mutationassessor.org/?cm=msa&ty=f&p=HEPS_HUMAN&rb=163&re=400&var=E343Q http://mutationassessor.org/pdb.php?prot=HEPS_HUMAN&from=163&to=400&var=E343Q -GPR176 11245 genome.wustl.edu 36 15 37886593 37886593 + missense SNP T C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T Valid Somatic missense I111V I111V L 0.045 http://mutationassessor.org/?cm=msa&ty=f&p=GP176_HUMAN&rb=58&re=320&var=I111V http://mutationassessor.org/pdb.php?prot=GP176_HUMAN&from=58&to=320&var=I111V -AXL 558 genome.wustl.edu 36 19 46435815 46435815 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense P297S P297S L 0.03 http://mutationassessor.org?cm=var&var=19,46435815,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=UFO_HUMAN&rb=226&re=321&var=P297S -CYP3A4 1576 genome.wustl.edu 36 7 99219616 99219616 + missense SNP T C T Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W T T Valid Somatic missense M9V M9V L 0.005 http://mutationassessor.org/?cm=msa&ty=f&p=CP3A4_HUMAN&rb=1&re=200&var=M9V -TSC2 7249 genome.wustl.edu 36 16 2070190 2070190 + missense SNP G A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G Valid Somatic missense A1141T A1141T N 0 http://mutationassessor.org/?cm=msa&ty=f&p=TSC2_HUMAN&rb=1068&re=1213&var=A1141T -CYLD 1540 genome.wustl.edu 36 16 49341571 49341571 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense A154V A154V N 0 http://mutationassessor.org/?cm=msa&ty=f&p=CYLD_HUMAN&rb=127&re=203&var=A154V http://mutationassessor.org/pdb.php?prot=CYLD_HUMAN&from=127&to=203&var=A154V -SLC45A1 50651 genome.wustl.edu 36 1 8326515 8326515 + missense SNP C C T Unknown Unknown TCGA-06-0128 TCGA-06-0128-10A-01W C C Valid Somatic missense A735V A735V N 0 http://mutationassessor.org/?cm=msa&ty=f&p=S45A1_HUMAN&rb=730&re=782&var=A735V -MLL3 58508 genome.wustl.edu 36 7 151658722 151658722 + missense SNP C C T Unknown Unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C Valid Somatic missense A96T A96T N 0 http://mutationassessor.org/?cm=msa&ty=f&p=MLL3_HUMAN&rb=1&re=129&var=A96T -PRF1 5551 genome.wustl.edu 36 10 72028330 72028330 + missense SNP G A G Unknown Unknown TCGA-02-0070 TCGA-02-0070-10A-01W G G Valid Somatic missense R385W R385W N 0 http://mutationassessor.org/?cm=msa&ty=f&p=PERF_HUMAN&rb=376&re=408&var=R385W -MN1 4330 genome.wustl.edu 36 22 26522942 26522942 + missense SNP C C T Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C Valid Somatic missense S1197N S1197N N 0 http://mutationassessor.org/?cm=msa&ty=f&p=MN1_HUMAN&rb=1003&re=1253&var=S1197N -COL6A3 1293 genome.wustl.edu 36 2 237909682 237909682 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense V2934M V2934M N 0 http://mutationassessor.org/?cm=msa&ty=f&p=CO6A3_HUMAN&rb=2801&re=3000&var=V2934M -TSC2 7249 genome.wustl.edu 36 16 2064367 2064367 + missense SNP G A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G Valid Somatic missense V841I V841I N -0.005 http://mutationassessor.org/?cm=msa&ty=f&p=TSC2_HUMAN&rb=550&re=904&var=V841I -GATA3 2625 genome.wustl.edu 36 10 8140468 8140468 + missense SNP G A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G Valid Somatic missense A146T A146T N -0.01 http://mutationassessor.org/?cm=msa&ty=f&p=GATA3_HUMAN&rb=1&re=200&var=A146T -CDH23 64072 genome.wustl.edu 36 10 73209195 73209195 + missense SNP G A G Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G Valid Somatic missense D1785N D1785N N -0.01 http://mutationassessor.org/?cm=msa&ty=f&p=CAD23_HUMAN&rb=1751&re=1842&var=D1785N -KLF4 9314 genome.wustl.edu 36 9 109287936 109287936 + missense SNP G A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G Valid Somatic missense H487Y H487Y N -0.04 http://mutationassessor.org/?cm=msa&ty=f&p=KLF4_HUMAN&rb=302&re=489&var=H487Y http://mutationassessor.org/pdb.php?prot=KLF4_HUMAN&from=302&to=489&var=H487Y -CYP3A4 1576 genome.wustl.edu 36 7 99219625 99219625 + missense SNP C C T Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W C C Valid Somatic missense D6N D6N N -0.13 http://mutationassessor.org/?cm=msa&ty=f&p=CP3A4_HUMAN&rb=1&re=200&var=D6N -SRGAP1 57522 genome.wustl.edu 36 12 62789003 62789003 + missense SNP C C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C Valid Somatic missense A613V A613V N -0.15 http://mutationassessor.org/?cm=msa&ty=f&p=SRGP1_HUMAN&rb=520&re=672&var=A613V http://mutationassessor.org/pdb.php?prot=SRGP1_HUMAN&from=520&to=672&var=A613V -STYK1 55359 genome.wustl.edu 36 12 10668602 10668602 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense A281T A281T N -0.18 http://mutationassessor.org/?cm=msa&ty=f&p=STYK1_HUMAN&rb=114&re=380&var=A281T http://mutationassessor.org/pdb.php?prot=STYK1_HUMAN&from=114&to=380&var=A281T -CAPN3 825 genome.wustl.edu 36 15 40481252 40481252 + missense SNP C C G Unknown Unknown TCGA-08-0380 TCGA-08-0380-11A-01W C C Valid Somatic missense D492E D492E N -0.26 http://mutationassessor.org/?cm=msa&ty=f&p=CAN3_HUMAN&rb=428&re=582&var=D492E http://mutationassessor.org/pdb.php?prot=CAN3_HUMAN&from=428&to=582&var=D492E -LATS2 26524 genome.wustl.edu 36 13 20460246 20460246 + missense SNP C C T Unknown Unknown TCGA-08-0375 TCGA-08-0375-11A-01W C C Valid Somatic missense R558H R558H N -0.34 http://mutationassessor.org/?cm=msa&ty=f&p=LATS2_HUMAN&rb=401&re=600&var=R558H -PRSS1 5644 genome.wustl.edu 36 7 142139909 142139909 + missense SNP A A G Unknown Unknown TCGA-02-0074 TCGA-02-0074-10A-01W A A Valid Somatic missense K170E K170E N -0.415 http://mutationassessor.org?cm=var&var=7,142139909,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TRY1_HUMAN&rb=24&re=239&var=K170E http://mutationassessor.org/pdb.php?prot=TRY1_HUMAN&from=24&to=239&var=K170E -GATA6 2627 genome.wustl.edu 36 18 18034642 18034642 + missense SNP C C T Unknown Unknown TCGA-02-0007 TCGA-02-0007-10A-01W C C Valid Somatic missense A549V A549V N -0.435 http://mutationassessor.org/?cm=msa&ty=f&p=GATA6_HUMAN&rb=479&re=595&var=A549V -DSG2 1829 genome.wustl.edu 36 18 27365210 27365210 + missense SNP C C T Unknown Unknown TCGA-02-0070 TCGA-02-0070-10A-01W C C Valid Somatic missense A426V A426V N -0.555 http://mutationassessor.org/?cm=msa&ty=f&p=DSG2_HUMAN&rb=396&re=490&var=A426V -MBD6 114785 genome.wustl.edu 36 12 56205965 56205965 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense P316L P316L http://mutationassessor.org?cm=var&var=12,56205965,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MBD6_HUMAN&rb=201&re=400&var=P316L -DSG2 1829 genome.wustl.edu 36 18 27380563 27380563 + missense SNP G C G Unknown Unknown TCGA-08-0373 TCGA-08-0373-11A-01W G G Valid Somatic missense R1072S R1072S http://mutationassessor.org/?cm=msa&ty=f&p=DSG2_HUMAN&rb=1044&re=1118&var=R1072S -RCSD1 92241 genome.wustl.edu 36 1 165933483 165933483 + missense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic missense S333N S333N http://mutationassessor.org/?cm=msa&ty=f&p=CPZIP_HUMAN&rb=301&re=364&var=S333N -ADAMTS20 80070 genome.wustl.edu 36 12 42056174 42056174 + missense SNP T A T Unknown Unknown TCGA-08-0347 TCGA-08-0347-11A-01W T T Valid Somatic missense missense missense -ANXA8 653145 genome.wustl.edu 36 10 47222476 47222476 + missense SNP G A G Unknown Unknown TCGA-06-0130 TCGA-06-0130-10A-01W G G Valid Somatic missense missense missense -ANXA8 653145 genome.wustl.edu 36 10 47224739 47224739 + missense SNP G A G Unknown Unknown TCGA-06-0209 TCGA-06-0209-10A-01W G G Valid Somatic missense missense missense -CENPF 1063 genome.wustl.edu 36 1 212853776 212853776 + missense SNP A A G Unknown Unknown TCGA-02-0055 TCGA-02-0055-10A-01W A A Valid Somatic missense missense missense -DSP 1832 genome.wustl.edu 36 6 7501015 7501015 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense missense missense -DSP 1832 genome.wustl.edu 36 6 7516802 7516802 + missense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic missense missense missense -DST 667 genome.wustl.edu 36 6 56564994 56564994 + missense SNP G C G Unknown Unknown TCGA-06-0125 TCGA-06-0125-10A-01W G G Valid Somatic missense missense missense -DST 667 genome.wustl.edu 36 6 56576971 56576971 + missense SNP C C T Unknown Unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C Valid Somatic missense missense missense -MME 4311 genome.wustl.edu 36 3 156290331 156290331 + missense SNP G A G Unknown Unknown TCGA-06-0185 TCGA-06-0185-10B-01W G G Valid Somatic missense missense missense -NEK10 152110 genome.wustl.edu 36 3 27208682 27208682 + missense SNP T C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T Valid Somatic missense missense missense -PRKDC 5591 genome.wustl.edu 36 8 48968417 48968417 + missense SNP C A C Unknown Unknown TCGA-02-0107 TCGA-02-0107-10A-01W C C Valid Somatic missense missense missense -PRKDC 5591 genome.wustl.edu 36 8 48968417 48968417 + missense SNP C A C Unknown Unknown TCGA-02-0116 TCGA-02-0116-10A-01W C C Valid Somatic missense missense missense -SEMA3B 7869 genome.wustl.edu 36 3 50283416 50283416 + missense SNP C C T Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C Valid Somatic missense missense missense -SEMA3B 7869 genome.wustl.edu 36 3 50288996 50288996 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic missense missense missense -TMEM16E 422973 genome.wustl.edu 36 11 22240376 22240376 + missense SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic missense missense missense -TMEM16E 422973 genome.wustl.edu 36 11 22252830 22252830 + missense SNP A A C Unknown Unknown TCGA-06-0124 TCGA-06-0124-10A-01W A A Valid Somatic missense missense missense -TNFRSF6B 8771 genome.wustl.edu 36 20 61794615 61794615 + missense SNP C C T Unknown Unknown TCGA-02-0021 TCGA-02-0021-10A-01W C C Valid Somatic missense missense missense -PTEN 5728 genome.wustl.edu 36 10 89707658 89707658 + nonsense SNP G G T Unknown Unknown TCGA-02-0113 TCGA-02-0113-10A-01W G G Valid Somatic nonsense E235* E235* -NF1 4763 genome.wustl.edu 36 17 26580304 26580304 + nonsense SNP G G T Unknown Unknown TCGA-02-0075 TCGA-02-0075-10A-01W G G Valid Somatic nonsense G849* G849* -PTEN 5728 genome.wustl.edu 36 10 89682941 89682941 + nonsense SNP C C T Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C Valid Somatic nonsense Q149* Q149* -NF1 4763 genome.wustl.edu 36 17 26686128 26686128 + nonsense SNP C C T Unknown Unknown TCGA-06-0124 TCGA-06-0124-10A-01W C C Valid Somatic nonsense Q1987* Q1987* -PIK3C2A 5286 genome.wustl.edu 36 11 17092564 17092564 + nonsense SNP G A G Unknown Unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G Valid Somatic nonsense R1081* R1081* -PTEN 5728 genome.wustl.edu 36 10 89682884 89682884 + nonsense SNP C C T Unknown Unknown TCGA-06-0138 TCGA-06-0138-10C-01W C C Valid Somatic nonsense R130* R130* -NF1 4763 genome.wustl.edu 36 17 26612877 26612877 + nonsense SNP C C T Unknown Unknown TCGA-06-0201 TCGA-06-0201-10A-01W C C Valid Somatic nonsense R1534* R1534* -NF1 4763 genome.wustl.edu 36 17 26678679 26678679 + nonsense SNP C T T Unknown Unknown TCGA-02-0070 TCGA-02-0070-10A-01W C C Valid Somatic nonsense R1769* R1769* -NF1 4763 genome.wustl.edu 36 17 26521129 26521129 + nonsense SNP C C T Unknown Unknown TCGA-08-0352 TCGA-08-0352-11A-02W C C Valid Somatic nonsense R192* R192* -TP53 7157 genome.wustl.edu 36 17 7518937 7518937 + nonsense SNP G A G Unknown Unknown TCGA-02-0054 TCGA-02-0054-10A-01W G G Valid Somatic nonsense R213* R213* -NF1 4763 genome.wustl.edu 36 17 26551587 26551587 + nonsense SNP C C T Unknown Unknown TCGA-12-0620 TCGA-12-0620-10A-01W C C Valid Somatic nonsense R304* R304* -TP53 7157 genome.wustl.edu 36 17 7514728 7514728 + nonsense SNP G A G Unknown Unknown TCGA-02-0024 TCGA-02-0024-10A-01W G G Valid Somatic nonsense R342* R342* -FBXW7 55294 genome.wustl.edu 36 4 153471357 153471357 + nonsense SNP G A G Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G Valid Somatic nonsense R367* R367* -IL31 386653 genome.wustl.edu 36 12 121222973 121222973 + nonsense SNP G G T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G Valid Somatic nonsense S145* S145* -NF1 4763 genome.wustl.edu 36 17 26691722 26691722 + nonsense SNP C A C Unknown Unknown TCGA-06-0124 TCGA-06-0124-10A-01W C C Valid Somatic nonsense S2332* S2332* -NF1 4763 genome.wustl.edu 36 17 26677114 26677114 + nonsense SNP G A G Unknown Unknown TCGA-02-0115 TCGA-02-0115-10A-01W G G Valid Somatic nonsense W1662* W1662* -STK36 27148 genome.wustl.edu 36 2 219249113 219249113 + nonsense SNP G A G Unknown Unknown TCGA-02-0014 TCGA-02-0014-10A-01W G G Valid Somatic nonsense W184* W184* -NF1 4763 genome.wustl.edu 36 17 26691678 26691678 + nonsense SNP G A G Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G Valid Somatic nonsense W2317* W2317* -PAPSS2 9060 genome.wustl.edu 36 10 89493273 89493273 + nonsense SNP G A G Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G Valid Somatic nonsense W457* W457* -MET 4233 genome.wustl.edu 36 7 116168234 116168234 + nonsense SNP G A G Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G Valid Somatic nonsense W540* W540* -ESR2 2100 genome.wustl.edu 36 14 63819217 63819217 + nonsense SNP C C T Unknown Unknown TCGA-08-0373 TCGA-08-0373-11A-01W C C Valid Somatic nonsense W80* W80* -PTEN 5728 genome.wustl.edu 36 10 89701893 89701893 + nonsense SNP T G T Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W T T Valid Somatic nonsense Y177* Y177* -MOBP 4336 genome.wustl.edu 36 3 39518760 39518760 + nonsense SNP C C T Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C Valid Somatic nonsense nonsense nonsense -MET 4233 genome.wustl.edu 36 7 116199281 116199281 + splice SNP T C T Unknown Unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T Valid Somatic splice splice splice -CDH23 64072 genome.wustl.edu 36 10 73164422 73164422 + splice SNP G A G Unknown Unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G Valid Somatic splice splice splice -CTSH 1512 genome.wustl.edu 36 15 77008808 77008808 + splice SNP C C T Unknown Unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C Valid Somatic splice splice splice -ERBB2 2064 genome.wustl.edu 36 17 35116922 35116922 + splice SNP T A T Unknown Unknown TCGA-02-0115 TCGA-02-0115-10A-01W T T Valid Somatic splice splice splice -LTF 4057 genome.wustl.edu 36 3 46454625 46454625 + splice SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic splice splice splice -NDUFA10 4705 genome.wustl.edu 36 2 240599706 240599706 + splice SNP C C T Unknown Unknown TCGA-02-0099 TCGA-02-0099-10A-01W C C Valid Somatic splice splice splice -NF1 4763 genome.wustl.edu 36 17 26610175 26610175 + splice SNP G A G Unknown Unknown TCGA-02-0033 TCGA-02-0033-10A-01W G G Valid Somatic splice splice splice -PRKDC 5591 genome.wustl.edu 36 8 49032282 49032282 + splice SNP A A C Unknown Unknown TCGA-02-0113 TCGA-02-0113-10A-01W A A Valid Somatic splice splice splice -RB1 5925 genome.wustl.edu 36 13 47945496 47945496 + splice SNP G C G Unknown Unknown TCGA-06-0206 TCGA-06-0206-10A-01W G G Valid Somatic splice splice splice -VAV2 7410 genome.wustl.edu 36 9 135631024 135631024 + splice SNP C C T Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C Valid Somatic splice splice splice -JAG1 182 hgsc.bcm.edu 36 20 10581166 10581166 + missense SNP G G A novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G A G G G Unknown Valid Somatic missense P279L P279L M 1.21 http://mutationassessor.org?cm=var&var=20,10581166,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=JAG1_HUMAN&rb=201&re=400&var=P279L http://mutationassessor.org/pdb.php?prot=JAG1_HUMAN&from=201&to=400&var=P279L -ALDH1A3 220 hgsc.bcm.edu 36 15 99258351 99258351 + missense SNP G G A novel unknown TCGA-02-0089 TCGA-02-0089-10A-01W G G A G G G Unknown Valid Somatic missense G311D G311D H 3.385 http://mutationassessor.org?cm=var&var=15,99258351,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=AL1A3_HUMAN&rb=40&re=503&var=G311D http://mutationassessor.org/pdb.php?prot=AL1A3_HUMAN&from=40&to=503&var=G311D -ALDH1A3 220 hgsc.bcm.edu 36 15 99272470 99272470 + missense SNP T T C novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W T T C T T T Unknown Valid Somatic missense V503A V503A H 3.065 http://mutationassessor.org?cm=var&var=15,99272470,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=AL1A3_HUMAN&rb=40&re=503&var=V503A http://mutationassessor.org/pdb.php?prot=AL1A3_HUMAN&from=40&to=503&var=V503A -ANK1 286 hgsc.bcm.edu 36 8 41702525 41702525 + missense SNP G G A novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense P175S P175S M 1.665 http://mutationassessor.org?cm=var&var=8,41702525,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ANK1_HUMAN&rb=1&re=200&var=P175S http://mutationassessor.org/pdb.php?prot=ANK1_HUMAN&from=1&to=200&var=P175S -ANK1 286 hgsc.bcm.edu 36 8 41638537 41638537 + missense SNP C T T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense G1853E G1853E M 1.375 http://mutationassessor.org?cm=var&var=8,41638537,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ANK1_HUMAN&rb=1688&re=1881&var=G1853E -ANK2 287 broad.mit.edu 36.1 4 114498501 114498501 + missense SNP C C T TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 C C C T C C U Valid Somatic missense T3060I T3060I L 0.975 http://mutationassessor.org?cm=var&var=4,114498501,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ANK2_HUMAN&rb=2970&re=3169&var=T3060I -ANK2 287 broad.mit.edu 36.1 4 114498900 114498900 + missense SNP C C T TCGA-08-0354 TCGA-08-0354-11A-01W-0318-08 C C C T C C U Valid Somatic missense P3193L P3193L L 0.345 http://mutationassessor.org/?cm=msa&ty=f&p=ANK2_HUMAN&rb=3170&re=3369&var=P3193L -ANK2 287 broad.mit.edu 36.1 4 114499325 114499325 + missense SNP G G T TCGA-02-0064 TCGA-02-0064-10A-01W-0206-08 G G G T G G U Valid Somatic missense V3335F V3335F N 0 http://mutationassessor.org/?cm=msa&ty=f&p=ANK2_HUMAN&rb=3170&re=3369&var=V3335F -ANXA1 301 hgsc.bcm.edu 36 9 74974800 74974800 + missense SNP G G A novel Unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense G333E G333E H 2.975 http://mutationassessor.org?cm=var&var=9,74974800,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ANXA1_HUMAN&rb=277&re=342&var=G333E http://mutationassessor.org/pdb.php?prot=ANXA1_HUMAN&from=277&to=342&var=G333E -ANXA1 301 hgsc.bcm.edu 36 9 74974800 74974800 + missense SNP G G A novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense G333E G333E H 2.975 http://mutationassessor.org?cm=var&var=9,74974800,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ANXA1_HUMAN&rb=277&re=342&var=G333E http://mutationassessor.org/pdb.php?prot=ANXA1_HUMAN&from=277&to=342&var=G333E -ANXA7 310 broad.mit.edu 36.1 10 74826987 74826987 + missense SNP C C T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C C T C C U Valid Somatic missense G104E G104E L 0.895 http://mutationassessor.org?cm=var&var=10,74826987,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ANXA7_HUMAN&rb=1&re=153&var=G104E -APC 324 broad.mit.edu 36.1 5 112204016 112204016 + missense SNP C C T TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 C C C T C C U Valid Somatic missense P1609L P1609L L 0.55 http://mutationassessor.org?cm=var&var=5,112204016,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=APC_HUMAN&rb=1590&re=1635&var=P1609L -ATM 472 broad.mit.edu 36.1 11 107729766 107729766 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense R2912K R2912K M 1.745 http://mutationassessor.org?cm=var&var=11,107729766,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ATM_HUMAN&rb=2711&re=2962&var=R2912K http://mutationassessor.org/pdb.php?prot=ATM_HUMAN&from=2711&to=2962&var=R2912K -ATM 472 broad.mit.edu 36.1 11 107611687 107611687 + missense SNP G A G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 G G G A G G U Valid Somatic missense G138R G138R M 1.37 http://mutationassessor.org?cm=var&var=11,107611687,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ATM_HUMAN&rb=5&re=166&var=G138R -ATM 472 broad.mit.edu 36.1 11 107620796 107620796 + missense SNP T C T TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 T T C T T T U Valid Somatic missense V245A V245A L 0.235 http://mutationassessor.org/?cm=msa&ty=f&p=ATM_HUMAN&rb=201&re=400&var=V245A -RERE 473 hgsc.bcm.edu 36 1 8338240 8338240 + missense SNP G G A novel Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense P1498L P1498L L 0.895 http://mutationassessor.org?cm=var&var=1,8338240,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RERE_HUMAN&rb=568&re=1566&var=P1498L -ATP1A2 477 hgsc.bcm.edu 36 1 158370985 158370985 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense E639K E639K H 2.295 http://mutationassessor.org?cm=var&var=1,158370985,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=AT1A2_HUMAN&rb=368&re=726&var=E639K http://mutationassessor.org/pdb.php?prot=AT1A2_HUMAN&from=368&to=726&var=E639K -ATP6V1E1 529 broad.mit.edu 36.1 22 16455484 16455484 + missense SNP C C T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C C T C C U Valid Somatic missense G213R G213R L 0.53 http://mutationassessor.org/?cm=msa&ty=f&p=VATE1_HUMAN&rb=18&re=216&var=G213R -ATR 545 broad.mit.edu 36.1 3 143659194 143659194 + nonsense SNP G A G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 G G G A G G U Valid Somatic nonsense R2533* R2533* -BRCA2 675 broad.mit.edu 36.1 13 31809542 31809542 + missense SNP T G T TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 T T G T T T U Valid Somatic missense I1017S I1017S M 1.04 http://mutationassessor.org?cm=var&var=13,31809542,T,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BRCA2_HUMAN&rb=1002&re=1036&var=I1017S -BRCA2 675 broad.mit.edu 36.1 13 31788650 31788650 + missense SNP G A G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 G G A G G G U Valid Somatic missense R18H R18H L 0.79 http://mutationassessor.org?cm=var&var=13,31788650,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BRCA2_HUMAN&rb=1&re=200&var=R18H -BRCA2 675 broad.mit.edu 36.1 13 31809250 31809250 + missense SNP C C T TCGA-06-0169 TCGA-06-0169-10A-01W-0224-08 C C C T C C U Valid Somatic missense P920S P920S L 0.255 http://mutationassessor.org/?cm=msa&ty=f&p=BRCA2_HUMAN&rb=801&re=1000&var=P920S -BTK 695 broad.mit.edu 36.1 X 100497740 100497740 + missense SNP C C T TCGA-06-0184 TCGA-06-0184-10B-01W-0254-08 C C T C C C U Valid Somatic missense A508T A508T H 2.035 http://mutationassessor.org?cm=var&var=X,100497740,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BTK_HUMAN&rb=402&re=651&var=A508T http://mutationassessor.org/pdb.php?prot=BTK_HUMAN&from=402&to=651&var=A508T -DDR1 780 hgsc.bcm.edu 36 6 30967793 30967793 + missense SNP G G A novel unknown TCGA-06-0143 TCGA-06-0143-10A-01W G G A G G G Unknown Valid Somatic missense G234D G234D M 1.875 http://mutationassessor.org?cm=var&var=6,30967793,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DDR1_HUMAN&rb=199&re=367&var=G234D -DDR1 780 hgsc.bcm.edu 36 6 30974762 30974762 + missense SNP C C T novel unknown TCGA-06-0176 TCGA-06-0176-10A-01W C C C T C C Unknown Valid Somatic missense A857V A857V L 0.705 http://mutationassessor.org?cm=var&var=6,30974762,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DDR1_HUMAN&rb=610&re=905&var=A857V http://mutationassessor.org/pdb.php?prot=DDR1_HUMAN&from=610&to=905&var=A857V -CALCA 796 hgsc.bcm.edu 36 11 14947109 14947109 + missense SNP G G A novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G A G G G Unknown Valid Somatic missense P80S P80S L 0.33 http://mutationassessor.org/?cm=msa&ty=f&p=CALC_HUMAN&rb=1&re=123&var=P80S -CAST 831 broad.mit.edu 36.1 5 96132051 96132051 + missense SNP G A G TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 G G G A G G U Valid Somatic missense D694N D694N M 1.13 http://mutationassessor.org?cm=var&var=5,96132051,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ICAL_HUMAN&rb=640&re=708&var=D694N -CAST 831 broad.mit.edu 36.1 5 96112135 96112135 + missense SNP C C T TCGA-02-0043 TCGA-02-0043-10A-01W-0189-08 C C T C C C U Valid Somatic missense A423V A423V L 0.85 http://mutationassessor.org?cm=var&var=5,96112135,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ICAL_HUMAN&rb=369&re=501&var=A423V -RUNX1T1 862 broad.mit.edu 36.1 8 93157428 93157428 + missense SNP C C T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C C T C C U Valid Somatic missense R10K R10K L 0.17 http://mutationassessor.org/?cm=msa&ty=f&p=MTG8_HUMAN&rb=1&re=119&var=R10K -SERPINA6 866 hgsc.bcm.edu 36 14 93840542 93840542 + missense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense S395N S395N M 1.165 http://mutationassessor.org?cm=var&var=14,93840542,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CBG_HUMAN&rb=41&re=404&var=S395N http://mutationassessor.org/pdb.php?prot=CBG_HUMAN&from=41&to=404&var=S395N -CBL 867 broad.mit.edu 36.1 11 118654485 118654485 + missense SNP C C T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C C T C C U Valid Somatic missense P428L P428L M 0.995 http://mutationassessor.org?cm=var&var=11,118654485,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CBL_HUMAN&rb=401&re=600&var=P428L http://mutationassessor.org/pdb.php?prot=CBL_HUMAN&from=401&to=600&var=P428L -CBL 867 broad.mit.edu 36.1 11 118661372 118661372 + nonsense SNP G A G TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 G G G A G G U Valid Somatic nonsense W609* W609* -CCK 885 hgsc.bcm.edu 36 3 42280015 42280015 + missense SNP C C T novel unknown TCGA-06-0169 TCGA-06-0169-10A-01W C C C T C C Unknown Valid Somatic missense E38K E38K L 0.815 http://mutationassessor.org?cm=var&var=3,42280015,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CCKN_HUMAN&rb=2&re=115&var=E38K -CDH1 999 hgsc.bcm.edu 36 16 67413594 67413594 + missense SNP C C T novel unknown TCGA-06-0210 TCGA-06-0210-10A-01W C C C T C C Unknown Valid Somatic missense A634V A634V L 0.71 http://mutationassessor.org?cm=var&var=16,67413594,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CADH1_HUMAN&rb=598&re=686&var=A634V http://mutationassessor.org/pdb.php?prot=CADH1_HUMAN&from=598&to=686&var=A634V -CDKN2A 1029 hgsc.bcm.edu 36 9 21961053 21961053 + missense SNP G A A novel Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G A G G G Unknown Valid Somatic missense A102V A102V M 1.715 http://mutationassessor.org?cm=var&var=9,21961053,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CD2A1_HUMAN&rb=1&re=156&var=A102V http://mutationassessor.org/pdb.php?prot=CD2A1_HUMAN&from=1&to=156&var=A102V -CDKN2A 1029 genome.wustl.edu 36 9 21961124 21961125 + frameshift_del Del GA TC - Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -CDKN2A 1029 hgsc.bcm.edu 36 9 21964782 21964782 + nonsense SNP C C T novel Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic nonsense W15* W15* -CDKN2C 1031 genome.wustl.edu 36 1 51208671 51208671 + frameshift_del Del A A - Unknown Unknown TCGA-06-0646 TCGA-06-0646-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -CHAT 1103 hgsc.bcm.edu 36 10 50497778 50497778 + missense SNP G A A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense G130E G130E M 1.595 http://mutationassessor.org?cm=var&var=10,50497778,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CLAT_HUMAN&rb=130&re=720&var=G130E http://mutationassessor.org/pdb.php?prot=CLAT_HUMAN&from=130&to=720&var=G130E -CHAT 1103 hgsc.bcm.edu 36 10 50505694 50505694 + missense SNP G G A novel unknown TCGA-06-0125 TCGA-06-0125-10A-01W G G A G G G Unknown Valid Somatic missense R323H R323H M 1.05 http://mutationassessor.org?cm=var&var=10,50505694,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CLAT_HUMAN&rb=130&re=720&var=R323H http://mutationassessor.org/pdb.php?prot=CLAT_HUMAN&from=130&to=720&var=R323H -CHEK1 1111 hgsc.bcm.edu 36 11 125008322 125008322 + missense SNP G G A novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W G G A G G G Unknown Valid Somatic missense R160H R160H L 0.745 http://mutationassessor.org?cm=var&var=11,125008322,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CHK1_HUMAN&rb=9&re=265&var=R160H http://mutationassessor.org/pdb.php?prot=CHK1_HUMAN&from=9&to=265&var=R160H -CHEK1 1111 hgsc.bcm.edu 36 11 125028953 125028953 + splice SNP G G A novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G A G G G Unknown Valid Somatic splice splice splice -CHRNA3 1136 hgsc.bcm.edu 36 15 76680949 76680949 + missense SNP C C T novel unknown TCGA-02-0089 TCGA-02-0089-10A-01W C C C T C C Unknown Valid Somatic missense G362S G362S N -0.055 http://mutationassessor.org/?cm=msa&ty=f&p=ACHA3_HUMAN&rb=248&re=495&var=G362S -CHRNA3 1136 hgsc.bcm.edu 36 15 76680988 76680988 + missense SNP G G A novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G A G G G Unknown Valid Somatic missense P349S P349S N -0.12 http://mutationassessor.org?cm=var&var=15,76680988,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ACHA3_HUMAN&rb=248&re=495&var=P349S -CNTFR 1271 hgsc.bcm.edu 36 9 34542713 34542713 + missense SNP G A A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense T303I T303I L 0.805 http://mutationassessor.org?cm=var&var=9,34542713,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CNTFR_HUMAN&rb=295&re=372&var=T303I -COL1A1 1277 hgsc.bcm.edu 36 17 45627459 45627459 + missense SNP C C T novel Unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C C T C C Unknown Valid Somatic missense G434D G434D H 2.805 http://mutationassessor.org?cm=var&var=17,45627459,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO1A1_HUMAN&rb=416&re=475&var=G434D http://mutationassessor.org/pdb.php?prot=CO1A1_HUMAN&from=416&to=475&var=G434D -COL1A1 1277 hgsc.bcm.edu 36 17 45627459 45627459 + missense SNP C C T novel unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C C T C C Unknown Valid Somatic missense G434D G434D H 2.805 http://mutationassessor.org?cm=var&var=17,45627459,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO1A1_HUMAN&rb=416&re=475&var=G434D http://mutationassessor.org/pdb.php?prot=CO1A1_HUMAN&from=416&to=475&var=G434D -COL1A1 1277 hgsc.bcm.edu 36 17 45619111 45619111 + missense SNP G G A novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G A G G G Unknown Valid Somatic missense L1235F L1235F H 2.14 http://mutationassessor.org?cm=var&var=17,45619111,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO1A1_HUMAN&rb=1229&re=1464&var=L1235F -COL1A1 1277 hgsc.bcm.edu 36 17 45623200 45623200 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense P774S P774S M 1.68 http://mutationassessor.org?cm=var&var=17,45623200,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO1A1_HUMAN&rb=716&re=788&var=P774S http://mutationassessor.org/pdb.php?prot=CO1A1_HUMAN&from=716&to=788&var=P774S -COL1A1 1277 hgsc.bcm.edu 36 17 45628312 45628312 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense P343S P343S L 0.76 http://mutationassessor.org?cm=var&var=17,45628312,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO1A1_HUMAN&rb=296&re=355&var=P343S -COL1A1 1277 hgsc.bcm.edu 36 17 45630130 45630130 + nonsense SNP G G A novel unknown TCGA-12-0619 TCGA-12-0619-10A-01W G G A G G G Unknown Valid Somatic nonsense R220* R220* -COL3A1 1281 broad.mit.edu 36.1 2 189576733 189576733 + missense SNP G A G TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 G G A G G G U Valid Somatic missense G879D G879D H 3.62 http://mutationassessor.org?cm=var&var=2,189576733,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO3A1_HUMAN&rb=801&re=1000&var=G879D http://mutationassessor.org/pdb.php?prot=CO3A1_HUMAN&from=801&to=1000&var=G879D -COL3A1 1281 broad.mit.edu 36.1 2 189576409 189576409 + missense SNP G A G TCGA-02-0043 TCGA-02-0043-10A-01W-0189-08 G G G A G G U Valid Somatic missense G861S G861S H 3.055 http://mutationassessor.org?cm=var&var=2,189576409,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO3A1_HUMAN&rb=801&re=1000&var=G861S http://mutationassessor.org/pdb.php?prot=CO3A1_HUMAN&from=801&to=1000&var=G861S -COL5A1 1289 broad.mit.edu 36.1 9 136820826 136820826 + missense SNP C C T TCGA-06-0209 TCGA-06-0209-10A-01W-0255-08 C C C T C C U Valid Somatic missense S884F S884F M 1.225 http://mutationassessor.org?cm=var&var=9,136820826,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CO5A1_HUMAN&rb=801&re=1000&var=S884F http://mutationassessor.org/pdb.php?prot=CO5A1_HUMAN&from=801&to=1000&var=S884F -COL11A1 1301 broad.mit.edu 36.1 1 103225800 103225800 + missense SNP G A G TCGA-02-0055 TCGA-02-0055-10A-01W-0189-08 G G G A G G U Valid Somatic missense P827S P827S L 0.935 http://mutationassessor.org?cm=var&var=1,103225800,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=COBA1_HUMAN&rb=808&re=978&var=P827S -CSF1R 1436 hgsc.bcm.edu 36 5 149420674 149420674 + missense SNP C C T novel unknown TCGA-02-0084 TCGA-02-0084-10A-01W C C C T C C Unknown Valid Somatic missense S638N S638N M 1.185 http://mutationassessor.org?cm=var&var=5,149420674,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CSF1R_HUMAN&rb=582&re=910&var=S638N http://mutationassessor.org/pdb.php?prot=CSF1R_HUMAN&from=582&to=910&var=S638N -CSF3R 1441 broad.mit.edu 36.1 1 36707876 36707876 + missense SNP C C T TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 C C C T C C U Valid Somatic missense E480K E480K L 0.55 http://mutationassessor.org?cm=var&var=1,36707876,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CSF3R_HUMAN&rb=430&re=522&var=E480K -CSF3R 1441 broad.mit.edu 36.1 1 36704987 36704987 + missense SNP G A G TCGA-06-0241 TCGA-06-0241-10A-01W-0255-08 G G A G G G U Valid Somatic missense T690M T690M N 0 http://mutationassessor.org/?cm=msa&ty=f&p=CSF3R_HUMAN&rb=613&re=812&var=T690M -CSNK1E 1454 broad.mit.edu 36.1 22 37019247 37019247 + missense SNP C C T TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 C C C T C C U Valid Somatic missense G415R G415R http://mutationassessor.org?cm=var&var=22,37019247,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KC1E_HUMAN&rb=401&re=416&var=G415R http://mutationassessor.org/pdb.php?prot=KC1E_HUMAN&from=401&to=416&var=G415R -CYP1B1 1545 hgsc.bcm.edu 36 2 38155074 38155074 + missense SNP G A A novel Unknown TCGA-06-0151 TCGA-06-0151-10A-01W G G A A G G Unknown Valid Somatic missense P321L P321L M 1.225 http://mutationassessor.org?cm=var&var=2,38155074,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CP1B1_HUMAN&rb=51&re=520&var=P321L http://mutationassessor.org/pdb.php?prot=CP1B1_HUMAN&from=51&to=520&var=P321L -CYP27B1 1594 hgsc.bcm.edu 36 12 56445097 56445097 + missense SNP G G A novel unknown TCGA-06-0211 TCGA-06-0211-10A-01W G G A G G G Unknown Valid Somatic missense R252C R252C H 2.085 http://mutationassessor.org?cm=var&var=12,56445097,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CP27B_HUMAN&rb=41&re=505&var=R252C http://mutationassessor.org/pdb.php?prot=CP27B_HUMAN&from=41&to=505&var=R252C -CYP27B1 1594 hgsc.bcm.edu 36 12 56445112 56445112 + missense SNP G G A novel unknown TCGA-02-0080 TCGA-02-0080-10A-01W G G A G G G Unknown Valid Somatic missense P247S P247S L 0.845 http://mutationassessor.org?cm=var&var=12,56445112,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CP27B_HUMAN&rb=41&re=505&var=P247S http://mutationassessor.org/pdb.php?prot=CP27B_HUMAN&from=41&to=505&var=P247S -CYP27B1 1594 broad.mit.edu 36.1 12 56444898 56444898 + missense SNP C C T TCGA-02-0043 TCGA-02-0043-10A-01W-0189-08 C C T C C C U Valid Somatic missense G290E G290E L 0.37 http://mutationassessor.org/?cm=msa&ty=f&p=CP27B_HUMAN&rb=41&re=505&var=G290E http://mutationassessor.org/pdb.php?prot=CP27B_HUMAN&from=41&to=505&var=G290E -CYP27B1 1594 hgsc.bcm.edu 36 12 56444898 56444898 + missense SNP C C T novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C C T C C Unknown Valid Somatic missense G290E G290E L 0.37 http://mutationassessor.org/?cm=msa&ty=f&p=CP27B_HUMAN&rb=41&re=505&var=G290E http://mutationassessor.org/pdb.php?prot=CP27B_HUMAN&from=41&to=505&var=G290E -DBC1 1620 hgsc.bcm.edu 36 9 120969785 120969785 + missense SNP C C T novel unknown TCGA-06-0189 TCGA-06-0189-10A-01W C C C T C C Unknown Valid Somatic missense V562I V562I L 0.375 http://mutationassessor.org/?cm=msa&ty=f&p=DBC1_HUMAN&rb=478&re=677&var=V562I -DBC1 1620 hgsc.bcm.edu 36 9 120969418 120969418 + missense SNP C C T novel Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense G684D G684D N 0 http://mutationassessor.org/?cm=msa&ty=f&p=DBC1_HUMAN&rb=601&re=761&var=G684D -DBC1 1620 hgsc.bcm.edu 36 9 120969418 120969418 + missense SNP C C T novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense G684D G684D N 0 http://mutationassessor.org/?cm=msa&ty=f&p=DBC1_HUMAN&rb=601&re=761&var=G684D -DCN 1634 hgsc.bcm.edu 36 12 90074986 90074986 + nonsense SNP G G A novel unknown TCGA-02-0024 TCGA-02-0024-10A-01W G G A G G G Unknown Valid Somatic nonsense Q217* Q217* -DCN 1634 hgsc.bcm.edu 36 12 90076345 90076345 + nonsense SNP G G A novel unknown TCGA-06-0213 TCGA-06-0213-10A-01W G G A G G G Unknown Valid Somatic nonsense R133* R133* -DDIT3 1649 broad.mit.edu 36.1 12 56197363 56197363 + missense SNP C A C TCGA-06-0238 TCGA-06-0238-10A-01W-0323-08 C C C A C C U Valid Somatic missense D32Y D32Y M 1.445 http://mutationassessor.org?cm=var&var=12,56197363,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DDIT3_HUMAN&rb=1&re=169&var=D32Y -DES 1674 broad.mit.edu 36.1 2 219994348 219994348 + missense SNP T A T TCGA-02-0047 TCGA-02-0047-10A-01W-0189-08 T T A T T T U Valid Somatic missense F356I F356I M 1.51 http://mutationassessor.org?cm=var&var=2,219994348,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DESM_HUMAN&rb=107&re=415&var=F356I http://mutationassessor.org/pdb.php?prot=DESM_HUMAN&from=107&to=415&var=F356I -DES 1674 broad.mit.edu 36.1 2 219998918 219998918 + missense SNP G A G TCGA-06-0158 TCGA-06-0158-10A-01W-0254-08 G G A G G G U Valid Somatic missense V459I V459I L 0.735 http://mutationassessor.org?cm=var&var=2,219998918,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DESM_HUMAN&rb=401&re=470&var=V459I -DOCK1 1793 broad.mit.edu 36.1 10 128719946 128719946 + missense SNP A A T TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 A A T A A A U Valid Somatic missense K535M K535M M 1.385 http://mutationassessor.org?cm=var&var=10,128719946,A,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DOCK1_HUMAN&rb=422&re=664&var=K535M -DOCK1 1793 broad.mit.edu 36.1 10 129073048 129073048 + missense SNP C C T TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 C C T C C C U Valid Somatic missense S1250L S1250L M 1.255 http://mutationassessor.org?cm=var&var=10,129073048,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DOCK1_HUMAN&rb=1111&re=1616&var=S1250L http://mutationassessor.org/pdb.php?prot=DOCK1_HUMAN&from=1111&to=1616&var=S1250L -DOCK1 1793 broad.mit.edu 36.1 10 129121678 129121678 + missense SNP G G T TCGA-06-0152 TCGA-06-0152-10A-01W-0323-08 G G G T G G U Valid Somatic missense D1665Y D1665Y L 0.975 http://mutationassessor.org?cm=var&var=10,129121678,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DOCK1_HUMAN&rb=1601&re=1800&var=D1665Y -EGFR 1956 broad.mit.edu 36.1 7 55200531 55200531 + missense SNP C C T TCGA-08-0380 TCGA-08-0380-11A-01W-0318-08 C C C T C C U Valid Somatic missense P596L P596L H 2.865 http://mutationassessor.org?cm=var&var=7,55200531,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=P596L http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=P596L -EGFR 1956 hgsc.bcm.edu 36 7 55200531 55200531 + missense SNP C C T novel unknown TCGA-08-0380 TCGA-08-0380-11A-01W C C C T C C Unknown Valid Somatic missense P596L P596L H 2.865 http://mutationassessor.org?cm=var&var=7,55200531,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=P596L http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=P596L -EGFR 1956 broad.mit.edu 36.1 7 55178574 55178574 + missense SNP G A G TCGA-08-0390 TCGA-08-0390-11A-01W-0318-08 G G A G G G U Valid Somatic missense R108K R108K H 2.81 http://mutationassessor.org?cm=var&var=7,55178574,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=57&re=168&var=R108K http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=57&to=168&var=R108K -EGFR 1956 hgsc.bcm.edu 36 7 55178574 55178574 + missense SNP G G A novel unknown TCGA-08-0390 TCGA-08-0390-11A-01W G G A G G G Unknown Valid Somatic missense R108K R108K H 2.81 http://mutationassessor.org?cm=var&var=7,55178574,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=57&re=168&var=R108K http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=57&to=168&var=R108K -EGFR 1956 broad.mit.edu 36.1 7 55200537 55200537 + missense SNP G T T TCGA-02-0046 TCGA-02-0046-10A-01W-0189-08 G G T T G G U Valid Somatic missense G598V G598V H 2.37 http://mutationassessor.org?cm=var&var=7,55200537,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=G598V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=G598V -EGFR 1956 broad.mit.edu 36.1 7 55200537 55200537 + missense SNP G G T TCGA-06-0125 TCGA-06-0125-10A-01W-0224-08 G G G T G G U Valid Somatic missense G598V G598V H 2.37 http://mutationassessor.org?cm=var&var=7,55200537,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=G598V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=G598V -EGFR 1956 broad.mit.edu 36.1 7 55200537 55200537 + missense SNP G G T TCGA-12-0616 TCGA-12-0616-10A-01W-0323-08 G G G T G G U Valid Somatic missense G598V G598V H 2.37 http://mutationassessor.org?cm=var&var=7,55200537,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=G598V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=G598V -EGFR 1956 hgsc.bcm.edu 36 7 55200537 55200537 + missense SNP G T T novel Unknown TCGA-02-0046 TCGA-02-0046-10A-01W G G G T G G Unknown Valid Somatic missense G598V G598V H 2.37 http://mutationassessor.org?cm=var&var=7,55200537,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=G598V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=G598V -EGFR 1956 hgsc.bcm.edu 36 7 55200537 55200537 + missense SNP G T T novel unknown TCGA-02-0046 TCGA-02-0046-10A-01W G G G T G G Unknown Valid Somatic missense G598V G598V H 2.37 http://mutationassessor.org?cm=var&var=7,55200537,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=G598V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=G598V -EGFR 1956 hgsc.bcm.edu 36 7 55200537 55200537 + missense SNP G G T novel unknown TCGA-06-0125 TCGA-06-0125-10A-01W G G G T G G Unknown Valid Somatic missense G598V G598V H 2.37 http://mutationassessor.org?cm=var&var=7,55200537,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=G598V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=G598V -EGFR 1956 broad.mit.edu 36.1 7 55191104 55191104 + missense SNP G A G TCGA-08-0349 TCGA-08-0349-11A-02W-0323-08 G G G A G G U Valid Somatic missense C326Y C326Y H 2.365 http://mutationassessor.org?cm=var&var=7,55191104,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=C326Y http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=C326Y -EGFR 1956 hgsc.bcm.edu 36 7 55187768 55187768 + missense SNP C T T novel unknown TCGA-06-0154 TCGA-06-0154-10A-01W C C C T C C Unknown Valid Somatic missense R222C R222C M 1.965 http://mutationassessor.org?cm=var&var=7,55187768,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=R222C http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=R222C -EGFR 1956 broad.mit.edu 36.1 7 55189315 55189315 + missense SNP G A A TCGA-02-0089 TCGA-02-0089-10A-01W-0206-08 G G A A G G U Valid Somatic missense A289T A289T M 1.7 http://mutationassessor.org?cm=var&var=7,55189315,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289T http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289T -EGFR 1956 hgsc.bcm.edu 36 7 55189315 55189315 + missense SNP G A A novel unknown TCGA-02-0089 TCGA-02-0089-10A-01W G G A G G G Unknown Valid Somatic missense A289T A289T M 1.7 http://mutationassessor.org?cm=var&var=7,55189315,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289T http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289T -EGFR 1956 broad.mit.edu 36.1 7 55189316 55189316 + missense SNP C T T TCGA-06-0148 TCGA-06-0148-10A-01W-0224-08 C C C T C C U Valid Somatic missense A289V A289V M 1.7 http://mutationassessor.org?cm=var&var=7,55189316,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289V -EGFR 1956 broad.mit.edu 36.1 7 55189316 55189316 + missense SNP C T T TCGA-06-0148 TCGA-06-0148-10A-01W-0224-08 C C C T C C U Valid Somatic missense A289V A289V M 1.7 http://mutationassessor.org?cm=var&var=7,55189316,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289V -EGFR 1956 broad.mit.edu 36.1 7 55189316 55189316 + missense SNP C T T TCGA-06-0157 TCGA-06-0157-10A-01W-0254-08 C C C T C C U Valid Somatic missense A289V A289V M 1.7 http://mutationassessor.org?cm=var&var=7,55189316,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289V -EGFR 1956 hgsc.bcm.edu 36 7 55189316 55189316 + missense SNP C T T novel unknown TCGA-02-0016 TCGA-02-0016-10A-01W C C T T C C Unknown Valid Somatic missense A289V A289V M 1.7 http://mutationassessor.org?cm=var&var=7,55189316,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289V -EGFR 1956 hgsc.bcm.edu 36 7 55189316 55189316 + missense SNP C T T novel unknown TCGA-02-0023 TCGA-02-0023-10A-01W C C T T C C Unknown Valid Somatic missense A289V A289V M 1.7 http://mutationassessor.org?cm=var&var=7,55189316,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289V -EGFR 1956 hgsc.bcm.edu 36 7 55189316 55189316 + missense SNP C C T novel unknown TCGA-02-0054 TCGA-02-0054-10A-01W C C C T C C Unknown Valid Somatic missense A289V A289V M 1.7 http://mutationassessor.org?cm=var&var=7,55189316,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289V http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289V -EGFR 1956 broad.mit.edu 36.1 7 55189324 55189324 + missense SNP G G T TCGA-06-0127 TCGA-06-0127-10A-01W-0323-08 G G G T G G U Valid Somatic missense V292L V292L M 1.575 http://mutationassessor.org?cm=var&var=7,55189324,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=V292L http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=V292L -EGFR 1956 hgsc.bcm.edu 36 7 55189324 55189324 + missense SNP G G T novel unknown TCGA-06-0127 TCGA-06-0127-10A-01W G G G T G G Unknown Valid Somatic missense V292L V292L M 1.575 http://mutationassessor.org?cm=var&var=7,55189324,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=V292L http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=V292L -EGFR 1956 hgsc.bcm.edu 36 7 55178566 55178566 + missense SNP G G T novel unknown TCGA-08-0390 TCGA-08-0390-11A-01W G G G T G G Unknown Valid Somatic missense Q105H Q105H M 1.53 http://mutationassessor.org?cm=var&var=7,55178566,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=57&re=168&var=Q105H http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=57&to=168&var=Q105H -EGFR 1956 broad.mit.edu 36.1 7 55189204 55189204 + missense SNP C C T TCGA-02-0021 TCGA-02-0021-10A-01W-0189-08 C C C T C C U Valid Somatic missense R252C R252C M 1.495 http://mutationassessor.org?cm=var&var=7,55189204,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=R252C http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=R252C -EGFR 1956 hgsc.bcm.edu 36 7 55189204 55189204 + missense SNP C C T novel unknown TCGA-02-0021 TCGA-02-0021-10A-01W C C C T C C Unknown Valid Somatic missense R252C R252C M 1.495 http://mutationassessor.org?cm=var&var=7,55189204,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=R252C http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=R252C -EGFR 1956 broad.mit.edu 36.1 7 55189217 55189217 + missense SNP A C C TCGA-08-0246 TCGA-08-0246-11A-01W-0318-08 A A C A A A U Valid Somatic missense D256A D256A M 1.47 http://mutationassessor.org?cm=var&var=7,55189217,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=D256A http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=D256A -EGFR 1956 hgsc.bcm.edu 36 7 55189217 55189217 + missense SNP A C C novel unknown TCGA-08-0246 TCGA-08-0246-11A-01W A A A C A A Unknown Valid Somatic missense D256A D256A M 1.47 http://mutationassessor.org?cm=var&var=7,55189217,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=D256A http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=D256A -EGFR 1956 broad.mit.edu 36.1 7 55208201 55208201 + missense SNP G A G TCGA-06-0185 TCGA-06-0185-10B-01W-0254-08 G G G A G G U Valid Somatic missense V651M V651M M 1.345 http://mutationassessor.org?cm=var&var=7,55208201,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=601&re=800&var=V651M -EGFR 1956 hgsc.bcm.edu 36 7 55208201 55208201 + missense SNP G G A novel unknown TCGA-06-0185 TCGA-06-0185-10B-01W G G A G G G Unknown Valid Somatic missense V651M V651M M 1.345 http://mutationassessor.org?cm=var&var=7,55208201,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=601&re=800&var=V651M -EGFR 1956 broad.mit.edu 36.1 7 55200603 55200603 + missense SNP G A G TCGA-02-0003 TCGA-02-0003-10A-01W-0189-08 G G A G G G U Valid Somatic missense C620Y C620Y M 1.34 http://mutationassessor.org?cm=var&var=7,55200603,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=601&re=800&var=C620Y http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=601&to=800&var=C620Y -EGFR 1956 hgsc.bcm.edu 36 7 55200603 55200603 + missense SNP G G A novel Unknown TCGA-02-0003 TCGA-02-0003-10A-01W G G A G G G Unknown Valid Somatic missense C620Y C620Y M 1.34 http://mutationassessor.org?cm=var&var=7,55200603,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=601&re=800&var=C620Y http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=601&to=800&var=C620Y -EGFR 1956 hgsc.bcm.edu 36 7 55200603 55200603 + missense SNP G G A novel unknown TCGA-02-0003 TCGA-02-0003-10A-01W G G A G G G Unknown Valid Somatic missense C620Y C620Y M 1.34 http://mutationassessor.org?cm=var&var=7,55200603,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=601&re=800&var=C620Y http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=601&to=800&var=C620Y -EGFR 1956 broad.mit.edu 36.1 7 55208288 55208288 + missense SNP C C G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 C C G C C C U Valid Somatic missense R680G R680G M 1.31 http://mutationassessor.org?cm=var&var=7,55208288,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=601&re=800&var=R680G http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=601&to=800&var=R680G -EGFR 1956 hgsc.bcm.edu 36 7 55208288 55208288 + missense SNP C C G novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C G C C Unknown Valid Somatic missense R680G R680G M 1.31 http://mutationassessor.org?cm=var&var=7,55208288,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=601&re=800&var=R680G http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=601&to=800&var=R680G -EGFR 1956 hgsc.bcm.edu 36 7 55189316 55189316 + missense SNP C C A novel unknown TCGA-08-0355 TCGA-08-0355-11A-01W C C A C C C Unknown Valid Somatic missense A289D A289D M 1.195 http://mutationassessor.org?cm=var&var=7,55189316,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=A289D http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=A289D -EGFR 1956 broad.mit.edu 36.1 7 55177569 55177569 + missense SNP T G G TCGA-06-0237 TCGA-06-0237-10A-01W-0255-08 T T G T T T U Valid Somatic missense L62R L62R M 1 http://mutationassessor.org?cm=var&var=7,55177569,T,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=57&re=168&var=L62R http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=57&to=168&var=L62R -EGFR 1956 broad.mit.edu 36.1 7 55189237 55189237 + missense SNP A A C TCGA-02-0007 TCGA-02-0007-10A-01W-0189-08 A A C A A A U Valid Somatic missense T263P T263P L 0.915 http://mutationassessor.org?cm=var&var=7,55189237,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=T263P http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=T263P -EGFR 1956 hgsc.bcm.edu 36 7 55189237 55189237 + missense SNP A A C novel unknown TCGA-02-0007 TCGA-02-0007-10A-01W A A A C A A Unknown Valid Somatic missense T263P T263P L 0.915 http://mutationassessor.org?cm=var&var=7,55189237,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=177&re=338&var=T263P http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=177&to=338&var=T263P -EGFR 1956 broad.mit.edu 36.1 7 55200533 55200533 + missense SNP G C C TCGA-02-0116 TCGA-02-0116-10A-01W-0206-08 G G C C G G U Valid Somatic missense A597P A597P L 0.87 http://mutationassessor.org?cm=var&var=7,55200533,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EGFR_HUMAN&rb=401&re=600&var=A597P http://mutationassessor.org/pdb.php?prot=EGFR_HUMAN&from=401&to=600&var=A597P -EPHA2 1969 hgsc.bcm.edu 36 1 16347951 16347951 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense G111D G111D M 1.03 http://mutationassessor.org?cm=var&var=1,16347951,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHA2_HUMAN&rb=28&re=201&var=G111D http://mutationassessor.org/pdb.php?prot=EPHA2_HUMAN&from=28&to=201&var=G111D -EP300 2033 hgsc.bcm.edu 36 22 39894533 39894533 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense P1337S P1337S M 1.495 http://mutationassessor.org?cm=var&var=22,39894533,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EP300_HUMAN&rb=1306&re=1612&var=P1337S http://mutationassessor.org/pdb.php?prot=EP300_HUMAN&from=1306&to=1612&var=P1337S -EP300 2033 hgsc.bcm.edu 36 22 39904088 39904088 + missense SNP G G A novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense A2143T A2143T L 0.49 http://mutationassessor.org/?cm=msa&ty=f&p=EP300_HUMAN&rb=2001&re=2200&var=A2143T -EPHA3 2042 broad.mit.edu 36.1 3 89342222 89342222 + missense SNP G G T TCGA-08-0356 TCGA-08-0356-11A-01W-0318-08 G G G T G G U Valid Somatic missense V226F V226F H 2.005 http://mutationassessor.org?cm=var&var=3,89342222,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHA3_HUMAN&rb=201&re=400&var=V226F http://mutationassessor.org/pdb.php?prot=EPHA3_HUMAN&from=201&to=400&var=V226F -EPHA3 2042 broad.mit.edu 36.1 3 89604347 89604347 + missense SNP A A T TCGA-08-0344 TCGA-08-0344-11A-01W-0318-08 A A A T A A U Valid Somatic missense T912S T912S N -0.225 http://mutationassessor.org/?cm=msa&ty=f&p=EPHA3_HUMAN&rb=908&re=973&var=T912S http://mutationassessor.org/pdb.php?prot=EPHA3_HUMAN&from=908&to=973&var=T912S -EPHA7 2045 hgsc.bcm.edu 36 6 94177566 94177566 + missense SNP C C T novel Unknown TCGA-02-0003 TCGA-02-0003-10A-01W C C C T C C Unknown Valid Somatic missense R69Q R69Q H 2.2 http://mutationassessor.org?cm=var&var=6,94177566,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHA7_HUMAN&rb=32&re=205&var=R69Q http://mutationassessor.org/pdb.php?prot=EPHA7_HUMAN&from=32&to=205&var=R69Q -EPHA7 2045 hgsc.bcm.edu 36 6 94177566 94177566 + missense SNP C C T novel unknown TCGA-02-0003 TCGA-02-0003-10A-01W C C C T C C Unknown Valid Somatic missense R69Q R69Q H 2.2 http://mutationassessor.org?cm=var&var=6,94177566,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHA7_HUMAN&rb=32&re=205&var=R69Q http://mutationassessor.org/pdb.php?prot=EPHA7_HUMAN&from=32&to=205&var=R69Q -EPHA7 2045 hgsc.bcm.edu 36 6 94024697 94024697 + missense SNP G G A novel unknown TCGA-08-0354 TCGA-08-0354-11A-01W G G A G G G Unknown Valid Somatic missense R651C R651C M 1.83 http://mutationassessor.org?cm=var&var=6,94024697,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHA7_HUMAN&rb=633&re=890&var=R651C http://mutationassessor.org/pdb.php?prot=EPHA7_HUMAN&from=633&to=890&var=R651C -EPHA7 2045 hgsc.bcm.edu 36 6 94177152 94177152 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense S207F S207F L 0.16 http://mutationassessor.org?cm=var&var=6,94177152,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHA7_HUMAN&rb=201&re=400&var=S207F http://mutationassessor.org/pdb.php?prot=EPHA7_HUMAN&from=201&to=400&var=S207F -EPHA8 2046 broad.mit.edu 36.1 1 22788070 22788070 + missense SNP C C T TCGA-06-0176 TCGA-06-0176-10A-01W-0254-08 C C C T C C U Valid Somatic missense R367C R367C M 1.07 http://mutationassessor.org?cm=var&var=1,22788070,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHA8_HUMAN&rb=330&re=424&var=R367C http://mutationassessor.org/pdb.php?prot=EPHA8_HUMAN&from=330&to=424&var=R367C -EPHA8 2046 broad.mit.edu 36.1 1 22775426 22775426 + missense SNP G A G TCGA-08-0389 TCGA-08-0389-11A-01W-0318-08 G G G A G G U Valid Somatic missense V97I V97I L 0.005 http://mutationassessor.org/?cm=msa&ty=f&p=EPHA8_HUMAN&rb=31&re=204&var=V97I http://mutationassessor.org/pdb.php?prot=EPHA8_HUMAN&from=31&to=204&var=V97I -EPHB1 2047 broad.mit.edu 36.1 3 136403133 136403133 + missense SNP A A G TCGA-06-0185 TCGA-06-0185-10B-01W-0254-08 A A A G A A U Valid Somatic missense N753S N753S M 1.82 http://mutationassessor.org?cm=var&var=3,136403133,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHB1_HUMAN&rb=619&re=878&var=N753S http://mutationassessor.org/pdb.php?prot=EPHB1_HUMAN&from=619&to=878&var=N753S -EPHB4 2050 hgsc.bcm.edu 36 7 100248319 100248319 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense D702N D702N M 1.865 http://mutationassessor.org?cm=var&var=7,100248319,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHB4_HUMAN&rb=615&re=874&var=D702N http://mutationassessor.org/pdb.php?prot=EPHB4_HUMAN&from=615&to=874&var=D702N -EPHB4 2050 hgsc.bcm.edu 36 7 100248764 100248764 + missense SNP T C C novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T C T T T Unknown Valid Somatic missense T587A T587A L 0.33 http://mutationassessor.org/?cm=msa&ty=f&p=EPHB4_HUMAN&rb=520&re=614&var=T587A -EPHB6 2051 hgsc.bcm.edu 36 7 142272042 142272042 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense G121D G121D L 0.04 http://mutationassessor.org?cm=var&var=7,142272042,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHB6_HUMAN&rb=18&re=217&var=G121D http://mutationassessor.org/pdb.php?prot=EPHB6_HUMAN&from=18&to=217&var=G121D -EPHB6 2051 hgsc.bcm.edu 36 7 142276431 142276431 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense A700T A700T N -0.16 http://mutationassessor.org?cm=var&var=7,142276431,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHB6_HUMAN&rb=655&re=900&var=A700T http://mutationassessor.org/pdb.php?prot=EPHB6_HUMAN&from=655&to=900&var=A700T -ERBB2 2064 genome.wustl.edu 36 17 35134527 35134527 + missense SNP T C T Unknown Unknown TCGA-02-0069 TCGA-02-0069-10A-01W T T T C T T Valid Valid Somatic missense V777A V777A M 1.695 http://mutationassessor.org?cm=var&var=17,35134527,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=720&re=976&var=V777A http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=720&to=976&var=V777A -ERBB2 2064 genome.wustl.edu 36 17 35134527 35134527 + missense SNP T C T Unknown Unknown TCGA-02-0113 TCGA-02-0113-10A-01W T T T C Unknown Unknown Unknown Valid Somatic missense V777A V777A M 1.695 http://mutationassessor.org?cm=var&var=17,35134527,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB2_HUMAN&rb=720&re=976&var=V777A http://mutationassessor.org/pdb.php?prot=ERBB2_HUMAN&from=720&to=976&var=V777A -ERBB3 2065 hgsc.bcm.edu 36 12 54780232 54780232 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense S1046N S1046N L 0.895 http://mutationassessor.org?cm=var&var=12,54780232,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ERBB3_HUMAN&rb=966&re=1165&var=S1046N -EYA1 2138 broad.mit.edu 36.1 8 72319450 72319450 + missense SNP C A C TCGA-12-0618 TCGA-12-0618-10A-01W-0323-08 C C C A C C U Valid Somatic missense R361L R361L M 1.29 http://mutationassessor.org?cm=var&var=8,72319450,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EYA1_HUMAN&rb=322&re=568&var=R361L http://mutationassessor.org/pdb.php?prot=EYA1_HUMAN&from=322&to=568&var=R361L -EYA1 2138 broad.mit.edu 36.1 8 72290418 72290418 + missense SNP G A G TCGA-06-0241 TCGA-06-0241-10A-01W-0255-08 G G G A G G U Valid Somatic missense S487L S487L L 0.565 http://mutationassessor.org/?cm=msa&ty=f&p=EYA1_HUMAN&rb=322&re=568&var=S487L http://mutationassessor.org/pdb.php?prot=EYA1_HUMAN&from=322&to=568&var=S487L -F13A1 2162 broad.mit.edu 36.1 6 6211846 6211846 + missense SNP C C T TCGA-02-0075 TCGA-02-0075-10A-01W-0206-08 C C C T C C U Valid Somatic missense R172Q R172Q M 1.095 http://mutationassessor.org?cm=var&var=6,6211846,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=F13A_HUMAN&rb=168&re=281&var=R172Q http://mutationassessor.org/pdb.php?prot=F13A_HUMAN&from=168&to=281&var=R172Q -F13A1 2162 broad.mit.edu 36.1 6 6211846 6211846 + missense SNP C T T TCGA-02-0075 TCGA-02-0075-10A-01W-0206-08 C C C T C C U Valid Somatic missense R172Q R172Q M 1.095 http://mutationassessor.org?cm=var&var=6,6211846,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=F13A_HUMAN&rb=168&re=281&var=R172Q http://mutationassessor.org/pdb.php?prot=F13A_HUMAN&from=168&to=281&var=R172Q -PTK2B 2185 broad.mit.edu 36.1 8 27349782 27349782 + splice SNP C C T rs17853673 unknown TCGA-08-0358 TCGA-08-0358-11A-03W-0323-08 C T C T T T U Valid Somatic splice splice splice -FGFR1 2260 broad.mit.edu 36.1 8 38391465 38391465 + missense SNP T C T TCGA-02-0060 TCGA-02-0060-10A-01W-0189-08 T T T C T T U Valid Somatic missense K656E K656E H 2.29 http://mutationassessor.org?cm=var&var=8,38391465,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FGFR1_HUMAN&rb=478&re=754&var=K656E http://mutationassessor.org/pdb.php?prot=FGFR1_HUMAN&from=478&to=754&var=K656E -FGFR1 2260 hgsc.bcm.edu 36 8 38391465 38391465 + missense SNP T T C novel unknown TCGA-02-0060 TCGA-02-0060-10A-01W T T C T T T Unknown Valid Somatic missense K656E K656E H 2.29 http://mutationassessor.org?cm=var&var=8,38391465,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FGFR1_HUMAN&rb=478&re=754&var=K656E http://mutationassessor.org/pdb.php?prot=FGFR1_HUMAN&from=478&to=754&var=K656E -FGFR1 2260 hgsc.bcm.edu 36 8 38395035 38395035 + missense SNP G G A novel unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G A G G G Unknown Valid Somatic missense S433F S433F H 2.145 http://mutationassessor.org?cm=var&var=8,38395035,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FGFR1_HUMAN&rb=359&re=477&var=S433F -FGFR1 2260 broad.mit.edu 36.1 8 38398609 38398609 + missense SNP C C T TCGA-08-0245 TCGA-08-0245-11A-01W-0318-08 C C T C C C U Valid Somatic missense G315E G315E M 1.65 http://mutationassessor.org?cm=var&var=8,38398609,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FGFR1_HUMAN&rb=259&re=358&var=G315E http://mutationassessor.org/pdb.php?prot=FGFR1_HUMAN&from=259&to=358&var=G315E -FGFR1 2260 hgsc.bcm.edu 36 8 38398609 38398609 + missense SNP C C T novel Unknown TCGA-08-0245 TCGA-08-0245-11A-01W C C C T C C Unknown Valid Somatic missense G315E G315E M 1.65 http://mutationassessor.org?cm=var&var=8,38398609,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FGFR1_HUMAN&rb=259&re=358&var=G315E http://mutationassessor.org/pdb.php?prot=FGFR1_HUMAN&from=259&to=358&var=G315E -FGFR4 2264 hgsc.bcm.edu 36 5 176452877 176452877 + missense SNP G G A novel Unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense G397D G397D L 0.515 http://mutationassessor.org/?cm=msa&ty=f&p=FGFR4_HUMAN&rb=351&re=466&var=G397D -FGFR4 2264 hgsc.bcm.edu 36 5 176452877 176452877 + missense SNP G G A novel Unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense G397D G397D L 0.515 http://mutationassessor.org/?cm=msa&ty=f&p=FGFR4_HUMAN&rb=351&re=466&var=G397D -FGFR4 2264 hgsc.bcm.edu 36 5 176450399 176450399 + missense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense missense missense -FOXO3 2309 broad.mit.edu 36.1 6 108989360 108989360 + missense SNP G C C TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C G G C G G U Valid Somatic missense G86R G86R L 0.38 http://mutationassessor.org?cm=var&var=6,108989360,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FOXO3_HUMAN&rb=1&re=200&var=G86R -FLI1 2313 broad.mit.edu 36.1 11 128143273 128143273 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G A G G G U Valid Somatic missense G94E G94E M 1.675 http://mutationassessor.org?cm=var&var=11,128143273,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FLI1_HUMAN&rb=1&re=200&var=G94E http://mutationassessor.org/pdb.php?prot=FLI1_HUMAN&from=1&to=200&var=G94E -FLI1 2313 broad.mit.edu 36.1 11 128186040 128186040 + missense SNP G A G TCGA-02-0009 TCGA-02-0009-10A-01W-0189-08 G G A G G G U Valid Somatic missense V436I V436I L 0.78 http://mutationassessor.org?cm=var&var=11,128186040,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FLI1_HUMAN&rb=401&re=452&var=V436I -FLT1 2321 hgsc.bcm.edu 36 13 27829760 27829760 + missense SNP C C A novel unknown TCGA-06-0173 TCGA-06-0173-10B-01W C C A C C C Unknown Valid Somatic missense G727C G727C H 3.395 http://mutationassessor.org?cm=var&var=13,27829760,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=VGFR1_HUMAN&rb=661&re=748&var=G727C http://mutationassessor.org/pdb.php?prot=VGFR1_HUMAN&from=661&to=748&var=G727C -FLT1 2321 hgsc.bcm.edu 36 13 27906335 27906335 + missense SNP G G C novel unknown TCGA-02-0048 TCGA-02-0048-10A-01W G G C G G G Unknown Valid Somatic missense P179R P179R M 1.34 http://mutationassessor.org?cm=var&var=13,27906335,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=VGFR1_HUMAN&rb=151&re=214&var=P179R http://mutationassessor.org/pdb.php?prot=VGFR1_HUMAN&from=151&to=214&var=P179R -FLT3 2322 hgsc.bcm.edu 36 13 27542701 27542701 + missense SNP G G A novel unknown TCGA-06-0125 TCGA-06-0125-10A-01W G G A G G G Unknown Valid Somatic missense P31L P31L L 0.505 http://mutationassessor.org/?cm=msa&ty=f&p=FLT3_HUMAN&rb=1&re=200&var=P31L -FN1 2335 broad.mit.edu 36.1 2 215997243 215997243 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense P363S P363S H 2.69 http://mutationassessor.org/?cm=msa&ty=f&p=FINC_HUMAN&rb=360&re=401&var=P363S http://mutationassessor.org/pdb.php?prot=FINC_HUMAN&from=360&to=401&var=P363S -FN1 2335 broad.mit.edu 36.1 2 215948361 215948361 + missense SNP G A G TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 G G G A G G U Valid Somatic missense A1902V A1902V M 1.805 http://mutationassessor.org?cm=var&var=2,215948361,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FINC_HUMAN&rb=1902&re=1991&var=A1902V http://mutationassessor.org/pdb.php?prot=FINC_HUMAN&from=1902&to=1991&var=A1902V -FN1 2335 broad.mit.edu 36.1 2 215948606 215948606 + missense SNP C C T TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 C C C T C C U Valid Somatic missense A1899T A1899T M 1.12 http://mutationassessor.org?cm=var&var=2,215948606,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FINC_HUMAN&rb=1813&re=1901&var=A1899T http://mutationassessor.org/pdb.php?prot=FINC_HUMAN&from=1813&to=1901&var=A1899T -FN1 2335 broad.mit.edu 36.1 2 215998200 215998200 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense missense missense -GAS6 2621 hgsc.bcm.edu 36 13 113583837 113583837 + missense SNP G G A novel unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G A G G G Unknown Valid Somatic missense S490N S490N N -0.175 http://mutationassessor.org/?cm=msa&ty=f&p=GAS6_HUMAN&rb=368&re=497&var=S490N http://mutationassessor.org/pdb.php?prot=GAS6_HUMAN&from=368&to=497&var=S490N -GDF10 2662 broad.mit.edu 36.1 10 48049503 48049503 + missense SNP G A G TCGA-06-0176 TCGA-06-0176-10A-01W-0254-08 G G G A G G U Valid Somatic missense T130M T130M L 0.57 http://mutationassessor.org/?cm=msa&ty=f&p=BMP3B_HUMAN&rb=66&re=239&var=T130M -GLI1 2735 broad.mit.edu 36.1 12 56151942 56151942 + missense SNP C C T TCGA-06-0133 TCGA-06-0133-10A-01W-0224-08 C C T C C C U Valid Somatic missense A1051V A1051V L 0.895 http://mutationassessor.org?cm=var&var=12,56151942,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GLI1_HUMAN&rb=1001&re=1106&var=A1051V -GLI3 2737 hgsc.bcm.edu 36 7 42046363 42046363 + missense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense S276N S276N L 0.725 http://mutationassessor.org?cm=var&var=7,42046363,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GLI3_HUMAN&rb=221&re=429&var=S276N -GNAI1 2770 broad.mit.edu 36.1 7 79671071 79671071 + missense SNP G A G TCGA-06-0209 TCGA-06-0209-10A-01W-0255-08 G G G A G G U Valid Somatic missense D193N D193N M 1.245 http://mutationassessor.org?cm=var&var=7,79671071,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GNAI1_HUMAN&rb=6&re=353&var=D193N http://mutationassessor.org/pdb.php?prot=GNAI1_HUMAN&from=6&to=353&var=D193N -GNAS 2778 hgsc.bcm.edu 36 20 56849073 56849073 + missense SNP G G A novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G A G G G Unknown Valid Somatic missense A173T A173T L 0.755 http://mutationassessor.org?cm=var&var=20,56849073,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GNAS3_HUMAN&rb=1&re=245&var=A173T -GNAS 2778 hgsc.bcm.edu 36 20 56863479 56863479 + missense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense missense missense -GRLF1 2909 hgsc.bcm.edu 36 19 52115128 52115128 + nonsense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic nonsense W452* W452* -GRM1 2911 hgsc.bcm.edu 36 6 146761745 146761745 + missense SNP C C G novel unknown TCGA-06-0148 TCGA-06-0148-10A-01W C C C G C C Unknown Valid Somatic missense S626C S626C M 1.83 http://mutationassessor.org?cm=var&var=6,146761745,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GRM1_HUMAN&rb=602&re=838&var=S626C -GRM1 2911 hgsc.bcm.edu 36 6 146796940 146796940 + missense SNP G G A novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W G G A G G G Unknown Valid Somatic missense R967H R967H L 0.205 http://mutationassessor.org/?cm=msa&ty=f&p=GRM1_HUMAN&rb=931&re=1123&var=R967H -CXCL3 2921 hgsc.bcm.edu 36 4 75122717 75122717 + missense SNP C C T novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense A89T A89T L 0.835 http://mutationassessor.org/?cm=msa&ty=f&p=CXCL3_HUMAN&rb=34&re=101&var=A89T http://mutationassessor.org/pdb.php?prot=CXCL3_HUMAN&from=34&to=101&var=A89T -GSTM5 2949 broad.mit.edu 36.1 1 110059354 110059354 + missense SNP T C C TCGA-02-0006 TCGA-02-0006-10A-01W-0189-08 C C T C T T U Valid Somatic missense L179P L179P N -1.67 http://mutationassessor.org/?cm=msa&ty=f&p=GSTM5_HUMAN&rb=104&re=192&var=L179P http://mutationassessor.org/pdb.php?prot=GSTM5_HUMAN&from=104&to=192&var=L179P -GSTM5 2949 broad.mit.edu 36.1 1 110059354 110059354 + missense SNP T C T TCGA-02-0006 TCGA-02-0006-10A-01W-0189-08 C C T C T T U Valid Somatic missense L179P L179P N -1.67 http://mutationassessor.org/?cm=msa&ty=f&p=GSTM5_HUMAN&rb=104&re=192&var=L179P http://mutationassessor.org/pdb.php?prot=GSTM5_HUMAN&from=104&to=192&var=L179P -GSTM5 2949 broad.mit.edu 36.1 1 110059354 110059354 + missense SNP T C C TCGA-02-0047 TCGA-02-0047-10A-01W-0189-08 C C T C T T U Valid Somatic missense L179P L179P N -1.67 http://mutationassessor.org/?cm=msa&ty=f&p=GSTM5_HUMAN&rb=104&re=192&var=L179P http://mutationassessor.org/pdb.php?prot=GSTM5_HUMAN&from=104&to=192&var=L179P -GSTM5 2949 broad.mit.edu 36.1 1 110059354 110059354 + missense SNP T C T TCGA-02-0047 TCGA-02-0047-10A-01W-0189-08 C C T C T T U Valid Somatic missense L179P L179P N -1.67 http://mutationassessor.org/?cm=msa&ty=f&p=GSTM5_HUMAN&rb=104&re=192&var=L179P http://mutationassessor.org/pdb.php?prot=GSTM5_HUMAN&from=104&to=192&var=L179P -GSTM5 2949 broad.mit.edu 36.1 1 110059354 110059354 + missense SNP T C C TCGA-06-0150 TCGA-06-0150-10A-01W-0254-08 C T T C T T U Valid Somatic missense L179P L179P N -1.67 http://mutationassessor.org/?cm=msa&ty=f&p=GSTM5_HUMAN&rb=104&re=192&var=L179P http://mutationassessor.org/pdb.php?prot=GSTM5_HUMAN&from=104&to=192&var=L179P -MSH6 2956 hgsc.bcm.edu 36 2 47886856 47886856 + missense SNP C C T novel Unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C C T C C Unknown Valid Somatic missense T1219I T1219I H 3.285 http://mutationassessor.org?cm=var&var=2,47886856,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MSH6_HUMAN&rb=1074&re=1326&var=T1219I http://mutationassessor.org/pdb.php?prot=MSH6_HUMAN&from=1074&to=1326&var=T1219I -MSH6 2956 hgsc.bcm.edu 36 2 47880076 47880076 + missense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense E484K E484K H 2.85 http://mutationassessor.org?cm=var&var=2,47880076,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MSH6_HUMAN&rb=407&re=526&var=E484K http://mutationassessor.org/pdb.php?prot=MSH6_HUMAN&from=407&to=526&var=E484K -MSH6 2956 hgsc.bcm.edu 36 2 47881696 47881696 + missense SNP C C T novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense R1024W R1024W H 2.06 http://mutationassessor.org?cm=var&var=2,47881696,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MSH6_HUMAN&rb=730&re=1069&var=R1024W http://mutationassessor.org/pdb.php?prot=MSH6_HUMAN&from=730&to=1069&var=R1024W -MSH6 2956 hgsc.bcm.edu 36 2 47881792 47881792 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense V1056M V1056M M 1.065 http://mutationassessor.org?cm=var&var=2,47881792,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MSH6_HUMAN&rb=730&re=1069&var=V1056M http://mutationassessor.org/pdb.php?prot=MSH6_HUMAN&from=730&to=1069&var=V1056M -GYPA 2993 hgsc.bcm.edu 36 4 145259338 145259338 + missense SNP C C T novel unknown TCGA-08-0375 TCGA-08-0375-11A-01W C C C T C C Unknown Valid Somatic missense A84T A84T L 0.89 http://mutationassessor.org?cm=var&var=4,145259338,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GLPA_HUMAN&rb=28&re=147&var=A84T http://mutationassessor.org/pdb.php?prot=GLPA_HUMAN&from=28&to=147&var=A84T -GYPA 2993 hgsc.bcm.edu 36 4 145257477 145257477 + missense SNP C C T novel unknown TCGA-02-0079 TCGA-02-0079-10A-01W C C C T C C Unknown Valid Somatic missense G113S G113S L 0.045 http://mutationassessor.org/?cm=msa&ty=f&p=GLPA_HUMAN&rb=28&re=147&var=G113S http://mutationassessor.org/pdb.php?prot=GLPA_HUMAN&from=28&to=147&var=G113S -HCK 3055 broad.mit.edu 36.1 20 30152895 30152895 + missense SNP C C T TCGA-06-0646 TCGA-06-0646-10A-01W-0323-08 C C C T C C U Valid Somatic missense P498L P498L H 2.39 http://mutationassessor.org?cm=var&var=20,30152895,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=HCK_HUMAN&rb=262&re=511&var=P498L http://mutationassessor.org/pdb.php?prot=HCK_HUMAN&from=262&to=511&var=P498L -HGF 3082 hgsc.bcm.edu 36 7 81169936 81169936 + missense SNP C C T novel unknown TCGA-08-0390 TCGA-08-0390-11A-01W C C C T C C Unknown Valid Somatic missense R695H R695H M 0.995 http://mutationassessor.org?cm=var&var=7,81169936,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=HGF_HUMAN&rb=495&re=716&var=R695H http://mutationassessor.org/pdb.php?prot=HGF_HUMAN&from=495&to=716&var=R695H -HLA-E 3133 broad.mit.edu 36.1 6 30568302 30568302 + missense SNP G A A TCGA-02-0070 TCGA-02-0070-10A-01W-0318-08 nt nt G A G G U Valid Somatic missense D348N D348N M 1.555 http://mutationassessor.org?cm=var&var=6,30568302,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=HLAE_HUMAN&rb=293&re=358&var=D348N -HLA-E 3133 broad.mit.edu 36.1 6 30568297 30568297 + missense SNP G C C TCGA-02-0070 TCGA-02-0070-10A-01W-0318-08 nt nt C G G G U Valid Somatic missense missense missense -HLA-E 3133 broad.mit.edu 36.1 6 30568297 30568297 + missense SNP G C C TCGA-02-0079 TCGA-02-0079-10A-01W-0323-08 nt nt C G G G U Valid Somatic missense missense missense -HLA-E 3133 broad.mit.edu 36.1 6 30568297 30568297 + missense SNP G C C TCGA-08-0373 TCGA-08-0373-11A-01W-0323-08 nt nt C G G G U Valid Somatic missense missense missense -HPR 3250 hgsc.bcm.edu 36 16 70668449 70668449 + missense SNP C C G rs12646 byFrequency TCGA-02-0114 TCGA-02-0114-10A-01W C C C G C C Unknown Valid Somatic missense D339D D339D N -0.03 http://mutationassessor.org/?cm=msa&ty=f&p=HPTR_HUMAN&rb=104&re=341&var=D339D http://mutationassessor.org/pdb.php?prot=HPTR_HUMAN&from=104&to=341&var=D339D -HSPA8 3312 broad.mit.edu 36.1 11 122435727 122435727 + missense SNP G A A TCGA-08-0375 TCGA-08-0375-11A-01W-0318-08 G G G A G G U Valid Somatic missense R262C R262C H 3.005 http://mutationassessor.org?cm=var&var=11,122435727,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=HSP7C_HUMAN&rb=6&re=612&var=R262C http://mutationassessor.org/pdb.php?prot=HSP7C_HUMAN&from=6&to=612&var=R262C -HSPA8 3312 broad.mit.edu 36.1 11 122435894 122435894 + missense SNP T C C TCGA-02-0070 TCGA-02-0070-10A-01W-0318-08 T T T C T T U Valid Somatic missense D206G D206G H 2.99 http://mutationassessor.org?cm=var&var=11,122435894,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=HSP7C_HUMAN&rb=6&re=612&var=D206G http://mutationassessor.org/pdb.php?prot=HSP7C_HUMAN&from=6&to=612&var=D206G -HSP90AA1 3320 hgsc.bcm.edu 36 14 101617806 101617806 + missense SNP T T C novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T C T T T Unknown Valid Somatic missense D732G D732G H 2.62 http://mutationassessor.org?cm=var&var=14,101617806,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=HS90A_HUMAN&rb=196&re=732&var=D732G -HSP90AA1 3320 hgsc.bcm.edu 36 14 101675353 101675353 + missense SNP G G A novel Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense P48S P48S -HTR2A 3356 hgsc.bcm.edu 36 13 46367927 46367927 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense T39I T39I L 0.805 http://mutationassessor.org?cm=var&var=13,46367927,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=5HT2A_HUMAN&rb=1&re=90&var=T39I -TNC 3371 broad.mit.edu 36.1 9 116878675 116878675 + missense SNP C T T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C T C C C U Valid Somatic missense G892D G892D M 1.585 http://mutationassessor.org/?cm=msa&ty=f&p=TENA_HUMAN&rb=892&re=983&var=G892D http://mutationassessor.org/pdb.php?prot=TENA_HUMAN&from=892&to=983&var=G892D -TNC 3371 broad.mit.edu 36.1 9 116837402 116837402 + missense SNP C C T TCGA-06-0188 TCGA-06-0188-10B-01D-0373-08 C C C T C C U Valid Somatic missense E1897K E1897K M 1.34 http://mutationassessor.org?cm=var&var=9,116837402,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TENA_HUMAN&rb=1888&re=1964&var=E1897K http://mutationassessor.org/pdb.php?prot=TENA_HUMAN&from=1888&to=1964&var=E1897K -TNC 3371 broad.mit.edu 36.1 9 116888335 116888335 + missense SNP C C T TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 C C T C C C U Valid Somatic missense R499H R499H L 0.44 http://mutationassessor.org?cm=var&var=9,116888335,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TENA_HUMAN&rb=497&re=528&var=R499H -ID3 3399 broad.mit.edu 36.1 1 23758222 23758222 + missense SNP G A A TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense P95S P95S L 0.695 http://mutationassessor.org?cm=var&var=1,23758222,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ID3_HUMAN&rb=82&re=119&var=P95S -ID3 3399 broad.mit.edu 36.1 1 23758222 23758222 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense P95S P95S L 0.695 http://mutationassessor.org?cm=var&var=1,23758222,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ID3_HUMAN&rb=82&re=119&var=P95S -IDH1 3417 genome.wustl.edu 36 2 208821358 208821358 + missense SNP G C G TCGA-06-0221 TCGA-06-0221-10A-01W G G Unknown Unknown Unknown Unknown Valid Somatic missense R132G R132G H 3.27 http://mutationassessor.org?cm=var&var=2,208821358,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IDHC_HUMAN&rb=9&re=401&var=R132G http://mutationassessor.org/pdb.php?prot=IDHC_HUMAN&from=9&to=401&var=R132G -IDH1 3417 genome.wustl.edu 36 2 208821357 208821357 + missense SNP C T C TCGA-02-0010 TCGA-02-0010-10A-01W C C Unknown Unknown Unknown Unknown Valid Somatic missense R132H R132H H 2.925 http://mutationassessor.org?cm=var&var=2,208821357,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IDHC_HUMAN&rb=9&re=401&var=R132H http://mutationassessor.org/pdb.php?prot=IDHC_HUMAN&from=9&to=401&var=R132H -IDH1 3417 genome.wustl.edu 36 2 208821357 208821357 + missense SNP C T C TCGA-02-0014 TCGA-02-0014-10A-01W C C Unknown Unknown Unknown Unknown Valid Somatic missense R132H R132H H 2.925 http://mutationassessor.org?cm=var&var=2,208821357,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IDHC_HUMAN&rb=9&re=401&var=R132H http://mutationassessor.org/pdb.php?prot=IDHC_HUMAN&from=9&to=401&var=R132H -IDH1 3417 genome.wustl.edu 36 2 208821357 208821357 + missense SNP C T C TCGA-02-0026 TCGA-02-0026-10A-01W C C Unknown Unknown Unknown Unknown Valid Somatic missense R132H R132H H 2.925 http://mutationassessor.org?cm=var&var=2,208821357,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IDHC_HUMAN&rb=9&re=401&var=R132H http://mutationassessor.org/pdb.php?prot=IDHC_HUMAN&from=9&to=401&var=R132H -IDH1 3417 genome.wustl.edu 36 2 208821357 208821357 + missense SNP C T C TCGA-02-0028 TCGA-02-0028-10A-01W C C Unknown Unknown Unknown Unknown Valid Somatic missense R132H R132H H 2.925 http://mutationassessor.org?cm=var&var=2,208821357,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IDHC_HUMAN&rb=9&re=401&var=R132H http://mutationassessor.org/pdb.php?prot=IDHC_HUMAN&from=9&to=401&var=R132H -IDH1 3417 genome.wustl.edu 36 2 208821357 208821357 + missense SNP C T C TCGA-02-0058 TCGA-02-0058-10A-01W C C Unknown Unknown Unknown Unknown Valid Somatic missense R132H R132H H 2.925 http://mutationassessor.org?cm=var&var=2,208821357,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IDHC_HUMAN&rb=9&re=401&var=R132H http://mutationassessor.org/pdb.php?prot=IDHC_HUMAN&from=9&to=401&var=R132H -IDH1 3417 genome.wustl.edu 36 2 208821357 208821357 + missense SNP C T C TCGA-02-0080 TCGA-02-0080-10A-01W C C Unknown Unknown Unknown Unknown Valid Somatic missense R132H R132H H 2.925 http://mutationassessor.org?cm=var&var=2,208821357,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IDHC_HUMAN&rb=9&re=401&var=R132H http://mutationassessor.org/pdb.php?prot=IDHC_HUMAN&from=9&to=401&var=R132H -IDH1 3417 genome.wustl.edu 36 2 208821357 208821357 + missense SNP C T C TCGA-06-0128 TCGA-06-0128-10A-01W C C Unknown Unknown Unknown Unknown Valid Somatic missense R132H R132H H 2.925 http://mutationassessor.org?cm=var&var=2,208821357,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IDHC_HUMAN&rb=9&re=401&var=R132H http://mutationassessor.org/pdb.php?prot=IDHC_HUMAN&from=9&to=401&var=R132H -IDH1 3417 genome.wustl.edu 36 2 208821357 208821357 + missense SNP C T C TCGA-06-0129 TCGA-06-0129-10A-01W C C Unknown Unknown Unknown Unknown Valid Somatic missense R132H R132H H 2.925 http://mutationassessor.org?cm=var&var=2,208821357,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IDHC_HUMAN&rb=9&re=401&var=R132H http://mutationassessor.org/pdb.php?prot=IDHC_HUMAN&from=9&to=401&var=R132H -IDH1 3417 genome.wustl.edu 36 2 208821357 208821357 + missense SNP C T C TCGA-08-0344 TCGA-08-0344-11A-01W C C Unknown Unknown Unknown Unknown Valid Somatic missense R132H R132H H 2.925 http://mutationassessor.org?cm=var&var=2,208821357,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IDHC_HUMAN&rb=9&re=401&var=R132H http://mutationassessor.org/pdb.php?prot=IDHC_HUMAN&from=9&to=401&var=R132H -IFNA21 3452 hgsc.bcm.edu 36 9 21156466 21156466 + missense SNP G G T novel unknown TCGA-02-0099 TCGA-02-0099-10A-01W G G G T G G Unknown Valid Somatic missense P49H P49H M 1.34 http://mutationassessor.org?cm=var&var=9,21156466,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IFN21_HUMAN&rb=1&re=187&var=P49H http://mutationassessor.org/pdb.php?prot=IFN21_HUMAN&from=1&to=187&var=P49H -ILK 3611 hgsc.bcm.edu 36 11 6586561 6586561 + missense SNP A G G novel Unknown TCGA-02-0010 TCGA-02-0010-10A-01W A A A G A A Unknown Valid Somatic missense D138G D138G M 1.175 http://mutationassessor.org?cm=var&var=11,6586561,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ILK_HUMAN&rb=1&re=200&var=D138G http://mutationassessor.org/pdb.php?prot=ILK_HUMAN&from=1&to=200&var=D138G -ILK 3611 hgsc.bcm.edu 36 11 6586561 6586561 + missense SNP A G G novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W A A A G A A Unknown Valid Somatic missense D138G D138G M 1.175 http://mutationassessor.org?cm=var&var=11,6586561,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ILK_HUMAN&rb=1&re=200&var=D138G http://mutationassessor.org/pdb.php?prot=ILK_HUMAN&from=1&to=200&var=D138G -INSR 3643 hgsc.bcm.edu 36 19 7068186 7068186 + missense SNP C C T novel unknown TCGA-08-0385 TCGA-08-0385-11A-01W C C C T C C Unknown Valid Somatic missense D1344N D1344N L 0.88 http://mutationassessor.org?cm=var&var=19,7068186,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=INSR_HUMAN&rb=1201&re=1382&var=D1344N -ISL1 3670 broad.mit.edu 36.1 5 50722999 50722999 + missense SNP G C C TCGA-02-0069 TCGA-02-0069-10A-01W-0206-08 G G G C G G U Valid Somatic missense Q300H Q300H L 0.525 http://mutationassessor.org/?cm=msa&ty=f&p=ISL1_HUMAN&rb=239&re=349&var=Q300H -ITGAL 3683 broad.mit.edu 36.1 16 30398015 30398015 + missense SNP C C T TCGA-08-0353 TCGA-08-0353-11A-01W-0318-08 C C T C C C U Valid Somatic missense R144C R144C L 0.515 http://mutationassessor.org/?cm=msa&ty=f&p=ITAL_HUMAN&rb=1&re=155&var=R144C -ITGB2 3689 broad.mit.edu 36.1 21 45131203 45131203 + missense SNP G A G TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 G G A G G G U Valid Somatic missense missense missense -ITGB2 3689 broad.mit.edu 36.1 21 45144662 45144662 + splice SNP C C T TCGA-06-0158 TCGA-06-0158-10A-01W-0254-08 C C C T C C U Valid Somatic splice splice splice -ITGB3 3690 broad.mit.edu 36.1 17 42724694 42724694 + missense SNP G A G TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 G G G A G G U Valid Somatic missense G484E G484E H 2.92 http://mutationassessor.org?cm=var&var=17,42724694,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ITB3_HUMAN&rb=401&re=600&var=G484E http://mutationassessor.org/pdb.php?prot=ITB3_HUMAN&from=401&to=600&var=G484E -ITGB3 3690 broad.mit.edu 36.1 17 42731868 42731868 + missense SNP C C T TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 C C C T C C U Valid Somatic missense T629I T629I H 2.325 http://mutationassessor.org?cm=var&var=17,42731868,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ITB3_HUMAN&rb=595&re=663&var=T629I http://mutationassessor.org/pdb.php?prot=ITB3_HUMAN&from=595&to=663&var=T629I -ITGB3 3690 broad.mit.edu 36.1 17 42742529 42742529 + missense SNP C C T TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 C C T C C C U Valid Somatic missense A776V A776V M 1.88 http://mutationassessor.org?cm=var&var=17,42742529,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ITB3_HUMAN&rb=742&re=788&var=A776V http://mutationassessor.org/pdb.php?prot=ITB3_HUMAN&from=742&to=788&var=A776V -ITGB3 3690 broad.mit.edu 36.1 17 42723325 42723325 + missense SNP C C T TCGA-06-0141 TCGA-06-0141-10A-01W-0224-08 C C C T C C U Valid Somatic missense R378C R378C M 1.74 http://mutationassessor.org?cm=var&var=17,42723325,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ITB3_HUMAN&rb=38&re=461&var=R378C http://mutationassessor.org/pdb.php?prot=ITB3_HUMAN&from=38&to=461&var=R378C -ITPR3 3710 hgsc.bcm.edu 36 6 33755844 33755844 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense E1394K E1394K M 1.11 http://mutationassessor.org?cm=var&var=6,33755844,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ITPR3_HUMAN&rb=1346&re=1545&var=E1394K -ITPR3 3710 hgsc.bcm.edu 36 6 33752652 33752652 + missense SNP G G A novel Unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense E1138K E1138K M 1.09 http://mutationassessor.org/?cm=msa&ty=f&p=ITPR3_HUMAN&rb=1078&re=1170&var=E1138K -ITPR3 3710 hgsc.bcm.edu 36 6 33761460 33761460 + missense SNP C T T novel unknown TCGA-06-0209 TCGA-06-0209-10A-01W C C C T C C Unknown Valid Somatic missense R1849C R1849C L 0.655 http://mutationassessor.org?cm=var&var=6,33761460,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ITPR3_HUMAN&rb=1746&re=1859&var=R1849C -ITPR3 3710 hgsc.bcm.edu 36 6 33765907 33765907 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense T2329I T2329I N -0.275 http://mutationassessor.org/?cm=msa&ty=f&p=ITPR3_HUMAN&rb=2288&re=2516&var=T2329I -KCNG1 3755 hgsc.bcm.edu 36 20 49054656 49054656 + missense SNP G G A novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense A290V A290V M 1.14 http://mutationassessor.org?cm=var&var=20,49054656,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KCNG1_HUMAN&rb=270&re=459&var=A290V http://mutationassessor.org/pdb.php?prot=KCNG1_HUMAN&from=270&to=459&var=A290V -KCNJ16 3773 hgsc.bcm.edu 36 17 65640565 65640565 + missense SNP G G A novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense V248I V248I L 0.705 http://mutationassessor.org?cm=var&var=17,65640565,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IRK16_HUMAN&rb=37&re=367&var=V248I http://mutationassessor.org/pdb.php?prot=IRK16_HUMAN&from=37&to=367&var=V248I -KDR 3791 hgsc.bcm.edu 36 4 55671614 55671614 + missense SNP G G A novel Unknown TCGA-06-0188 TCGA-06-0188-10B-01W G G A G G G Unknown Valid Somatic missense A352V A352V N -0.445 http://mutationassessor.org/?cm=msa&ty=f&p=VGFR2_HUMAN&rb=334&re=417&var=A352V http://mutationassessor.org/pdb.php?prot=VGFR2_HUMAN&from=334&to=417&var=A352V -KIT 3815 broad.mit.edu 36.1 4 55288766 55288766 + missense SNP G A G TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 G G G A G G U Valid Somatic missense A599T A599T H 2.785 http://mutationassessor.org?cm=var&var=4,55288766,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KIT_HUMAN&rb=589&re=924&var=A599T http://mutationassessor.org/pdb.php?prot=KIT_HUMAN&from=589&to=924&var=A599T -KIT 3815 hgsc.bcm.edu 36 4 55288766 55288766 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense A599T A599T H 2.785 http://mutationassessor.org?cm=var&var=4,55288766,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KIT_HUMAN&rb=589&re=924&var=A599T http://mutationassessor.org/pdb.php?prot=KIT_HUMAN&from=589&to=924&var=A599T -KIT 3815 broad.mit.edu 36.1 4 55256515 55256515 + missense SNP G A G TCGA-06-0644 TCGA-06-0644-10A-01W-0323-08 G G G A G G U Valid Somatic missense V50M V50M L 0.73 http://mutationassessor.org?cm=var&var=4,55256515,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KIT_HUMAN&rb=27&re=112&var=V50M http://mutationassessor.org/pdb.php?prot=KIT_HUMAN&from=27&to=112&var=V50M -KPNA2 3838 broad.mit.edu 36.1 17 63463748 63463748 + missense SNP G A G TCGA-06-0141 TCGA-06-0141-10A-01W-0224-08 A G A G G G U Valid Somatic missense R13H R13H M 1.49 http://mutationassessor.org?cm=var&var=17,63463748,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IMA2_HUMAN&rb=5&re=99&var=R13H http://mutationassessor.org/pdb.php?prot=IMA2_HUMAN&from=5&to=99&var=R13H -KTN1 3895 broad.mit.edu 36.1 14 55148856 55148856 + missense SNP G A G TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 G G G A G G U Valid Somatic missense E113K E113K M 1.005 http://mutationassessor.org?cm=var&var=14,55148856,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KTN1_HUMAN&rb=1&re=200&var=E113K -LAMP1 3916 broad.mit.edu 36.1 13 113008879 113008879 + missense SNP C C G TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C C G C C U Valid Somatic missense S47C S47C M 1.35 http://mutationassessor.org?cm=var&var=13,113008879,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LAMP1_HUMAN&rb=1&re=200&var=S47C -LAMP1 3916 broad.mit.edu 36.1 13 113021973 113021973 + splice SNP G A G TCGA-02-0116 TCGA-02-0116-10A-01W-0206-08 G G G A G G U Valid Somatic splice splice splice -LGALS3BP 3959 broad.mit.edu 36.1 17 74479275 74479275 + missense SNP G A G TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 G G G A G G U Valid Somatic missense T579I T579I M 1.01 http://mutationassessor.org?cm=var&var=17,74479275,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LG3BP_HUMAN&rb=401&re=584&var=T579I -LGALS3BP 3959 broad.mit.edu 36.1 17 74479447 74479447 + missense SNP C C T TCGA-02-0028 TCGA-02-0028-10A-01W-0189-08 C C T C C C U Valid Somatic missense A522T A522T L 0.725 http://mutationassessor.org?cm=var&var=17,74479447,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LG3BP_HUMAN&rb=401&re=584&var=A522T -LGALS3BP 3959 broad.mit.edu 36.1 17 74480082 74480082 + missense SNP C C T TCGA-08-0344 TCGA-08-0344-11A-01W-0318-08 C C C T C C U Valid Somatic missense R310K R310K L 0.45 http://mutationassessor.org/?cm=msa&ty=f&p=LG3BP_HUMAN&rb=260&re=360&var=R310K -LUM 4060 hgsc.bcm.edu 36 12 90026552 90026552 + missense SNP G G T novel unknown TCGA-06-0143 TCGA-06-0143-10A-01W G G G T G G Unknown Valid Somatic missense F112L F112L M 1.915 http://mutationassessor.org?cm=var&var=12,90026552,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LUM_HUMAN&rb=60&re=146&var=F112L http://mutationassessor.org/pdb.php?prot=LUM_HUMAN&from=60&to=146&var=F112L -LUM 4060 hgsc.bcm.edu 36 12 90026506 90026506 + missense SNP G G T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W G G G T G G Unknown Valid Somatic missense L128M L128M L 0.695 http://mutationassessor.org?cm=var&var=12,90026506,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LUM_HUMAN&rb=117&re=142&var=L128M -LUM 4060 hgsc.bcm.edu 36 12 90026506 90026506 + missense SNP G G T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W G G G T G G Unknown Valid Somatic missense L128M L128M L 0.695 http://mutationassessor.org?cm=var&var=12,90026506,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LUM_HUMAN&rb=117&re=142&var=L128M -LUM 4060 hgsc.bcm.edu 36 12 90026506 90026506 + missense SNP G G T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W G G G T G G Unknown Valid Somatic missense L128M L128M L 0.695 http://mutationassessor.org?cm=var&var=12,90026506,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LUM_HUMAN&rb=117&re=142&var=L128M -LUM 4060 hgsc.bcm.edu 36 12 90026506 90026506 + missense SNP G G T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W G G G T G G Unknown Valid Somatic missense L128M L128M L 0.695 http://mutationassessor.org?cm=var&var=12,90026506,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LUM_HUMAN&rb=117&re=142&var=L128M -LUM 4060 hgsc.bcm.edu 36 12 90026506 90026506 + missense SNP G G T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W G G G T G G Unknown Valid Somatic missense L128M L128M L 0.695 http://mutationassessor.org?cm=var&var=12,90026506,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LUM_HUMAN&rb=117&re=142&var=L128M -LUM 4060 hgsc.bcm.edu 36 12 90026506 90026506 + missense SNP G G T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W G G G T G G Unknown Valid Somatic missense L128M L128M L 0.695 http://mutationassessor.org?cm=var&var=12,90026506,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LUM_HUMAN&rb=117&re=142&var=L128M -SMAD4 4089 broad.mit.edu 36.1 18 46858703 46858703 + nonsense SNP G A G TCGA-02-0028 TCGA-02-0028-10A-01W-0189-08 G G G A G G U Valid Somatic nonsense W509* W509* -MAG 4099 broad.mit.edu 36.1 19 40485323 40485323 + missense SNP C C T TCGA-06-0174 TCGA-06-0174-10B-01W-0254-08 C C C T C C U Valid Somatic missense T368M T368M L 0.78 http://mutationassessor.org?cm=var&var=19,40485323,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MAG_HUMAN&rb=329&re=409&var=T368M http://mutationassessor.org/pdb.php?prot=MAG_HUMAN&from=329&to=409&var=T368M -MAN1A1 4121 hgsc.bcm.edu 36 6 119552603 119552603 + missense SNP C C T novel unknown TCGA-06-0178 TCGA-06-0178-10B-01W C C C T C C Unknown Valid Somatic missense E491K E491K L 0.905 http://mutationassessor.org/?cm=msa&ty=f&p=MA1A1_HUMAN&rb=202&re=640&var=E491K http://mutationassessor.org/pdb.php?prot=MA1A1_HUMAN&from=202&to=640&var=E491K -MAP2 4133 hgsc.bcm.edu 36 2 210226252 210226252 + missense SNP G G A novel unknown TCGA-06-0238 TCGA-06-0238-10A-01W G G A G G G Unknown Valid Somatic missense G38E G38E M 1.28 http://mutationassessor.org?cm=var&var=2,210226252,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MAP2_HUMAN&rb=1&re=200&var=G38E -MARK1 4139 broad.mit.edu 36.1 1 218875861 218875861 + missense SNP G A G TCGA-08-0385 TCGA-08-0385-11A-01W-0318-08 G G A G G G U Valid Somatic missense S447N S447N L 0.65 http://mutationassessor.org?cm=var&var=1,218875861,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MARK1_HUMAN&rb=374&re=522&var=S447N -MARK1 4139 broad.mit.edu 36.1 1 218875890 218875890 + missense SNP G G T TCGA-08-0344 TCGA-08-0344-11A-01W-0318-08 G G G T G G U Valid Somatic missense V457L V457L N -0.025 http://mutationassessor.org/?cm=msa&ty=f&p=MARK1_HUMAN&rb=374&re=522&var=V457L -CD46 4179 hgsc.bcm.edu 36 1 206025059 206025059 + missense SNP A A G novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W A A A G A A Unknown Valid Somatic missense I350V I350V L 0.41 http://mutationassessor.org?cm=var&var=1,206025059,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MCP_HUMAN&rb=201&re=392&var=I350V -MDM2 4193 broad.mit.edu 36.1 12 67516737 67516737 + missense SNP T C T TCGA-02-0085 TCGA-02-0085-10A-01W-0206-08 T T T C T T U Valid Somatic missense Y281H Y281H M 1.26 http://mutationassessor.org?cm=var&var=12,67516737,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MDM2_HUMAN&rb=201&re=400&var=Y281H -MDM4 4194 broad.mit.edu 36.1 1 202774027 202774027 + missense SNP C C G TCGA-06-0129 TCGA-06-0129-10A-01W-0224-08 C C C G C C U Valid Somatic missense T160S T160S L 0.61 http://mutationassessor.org/?cm=msa&ty=f&p=MDM4_HUMAN&rb=1&re=200&var=T160S -MDM4 4194 hgsc.bcm.edu 36 1 202774027 202774027 + missense SNP C C G novel unknown TCGA-06-0129 TCGA-06-0129-10A-01W C C C G C C Unknown Valid Somatic missense T160S T160S L 0.61 http://mutationassessor.org/?cm=msa&ty=f&p=MDM4_HUMAN&rb=1&re=200&var=T160S -MET 4233 broad.mit.edu 36.1 7 116206205 116206205 + missense SNP G C G TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 G G C G G G U Valid Somatic missense M1160I M1160I H 2.595 http://mutationassessor.org?cm=var&var=7,116206205,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MET_HUMAN&rb=1078&re=1337&var=M1160I http://mutationassessor.org/pdb.php?prot=MET_HUMAN&from=1078&to=1337&var=M1160I -MET 4233 hgsc.bcm.edu 36 7 116206205 116206205 + missense SNP G G C novel unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G C G G G Unknown Valid Somatic missense M1160I M1160I H 2.595 http://mutationassessor.org?cm=var&var=7,116206205,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MET_HUMAN&rb=1078&re=1337&var=M1160I http://mutationassessor.org/pdb.php?prot=MET_HUMAN&from=1078&to=1337&var=M1160I -MET 4233 hgsc.bcm.edu 36 7 116168234 116168234 + nonsense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic nonsense W540* W540* -MET 4233 hgsc.bcm.edu 36 7 116199281 116199281 + splice SNP T T C novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T C T T T Unknown Valid Somatic splice splice splice -MMP15 4324 hgsc.bcm.edu 36 16 56636666 56636666 + missense SNP G G A rs3743563 byCluster;byFrequency;byHapMap TCGA-08-0358 TCGA-08-0358-11A-03W G G A G G G Unknown Valid Somatic missense G609R G609R L 0.57 http://mutationassessor.org/?cm=msa&ty=f&p=MMP15_HUMAN&rb=600&re=669&var=G609R -MSI1 4440 broad.mit.edu 36.1 12 119280036 119280036 + missense SNP C C T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C T C C C U Valid Somatic missense C167Y C167Y M 1.765 http://mutationassessor.org?cm=var&var=12,119280036,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MSI1H_HUMAN&rb=111&re=180&var=C167Y http://mutationassessor.org/pdb.php?prot=MSI1H_HUMAN&from=111&to=180&var=C167Y -MSI1 4440 broad.mit.edu 36.1 12 119286911 119286911 + missense SNP C C T TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 C C T C C C U Valid Somatic missense A100T A100T http://mutationassessor.org/?cm=msa&ty=f&p=MSI1H_HUMAN&rb=20&re=110&var=A100T http://mutationassessor.org/pdb.php?prot=MSI1H_HUMAN&from=20&to=110&var=A100T -MTAP 4507 broad.mit.edu 36.1 9 21827925 21827925 + missense SNP G C G TCGA-06-0156 TCGA-06-0156-10A-01W-0254-08 G G G C G G U Valid Somatic missense Q122H Q122H M 1.335 http://mutationassessor.org?cm=var&var=9,21827925,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MTAP_HUMAN&rb=11&re=256&var=Q122H http://mutationassessor.org/pdb.php?prot=MTAP_HUMAN&from=11&to=256&var=Q122H -MYCN 4613 broad.mit.edu 36.1 2 15999768 15999768 + missense SNP C C T TCGA-02-0028 TCGA-02-0028-10A-01W-0189-08 C C C T C C U Valid Somatic missense P44L P44L M 1.45 http://mutationassessor.org?cm=var&var=2,15999768,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MYCN_HUMAN&rb=8&re=372&var=P44L -NEFL 4747 hgsc.bcm.edu 36 8 24867048 24867048 + missense SNP C C T novel Unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C C T C C Unknown Valid Somatic missense missense missense -NEFL 4747 hgsc.bcm.edu 36 8 24867048 24867048 + missense SNP C C T novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C C T C C Unknown Valid Somatic missense missense missense -NELL2 4753 broad.mit.edu 36.1 12 43212631 43212631 + missense SNP C C T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C C T C C U Valid Somatic missense missense missense -NF1 4763 genome.wustl.edu 36 17 26576290 26576290 + frameshift_del Del G G - Unknown Unknown TCGA-06-0210 TCGA-06-0210-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -NF1 4763 genome.wustl.edu 36 17 26677105 26677108 + frameshift_del Del CTCT CTCT - Unknown Unknown TCGA-02-0107 TCGA-02-0107-10A-01W CTCT CTCT CTCT - CTCT CTCT Valid Valid Somatic frameshift_del frameshift_del frameshift_del -NF1 4763 genome.wustl.edu 36 17 26689934 26689934 + frameshift_del Del G G - Unknown Unknown TCGA-06-0184 TCGA-06-0184-10B-01W G G G - G G Valid Valid Somatic frameshift_del frameshift_del frameshift_del -NF1 4763 genome.wustl.edu 36 17 26691739 26691739 + frameshift_del Del C C - Unknown Unknown TCGA-02-0086 TCGA-02-0086-10A-01W C C C - C C Valid Valid Somatic frameshift_del frameshift_del frameshift_del -NF1 4763 genome.wustl.edu 36 17 26577610 26577611 + frameshift_ins Ins - - C Unknown Unknown TCGA-06-0176 TCGA-06-0176-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_ins frameshift_ins frameshift_ins -NF1 4763 genome.wustl.edu 36 17 26688511 26688511 + splice SNP G A G Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Valid Valid Somatic splice splice splice -NF1 4763 genome.wustl.edu 36 17 26574560 26574598 + splice Del AGTAACAATGAACTTTATGTTACTGCAGCTCACAAATGC AGTAACAATGAACTTTATGTTACTGCAGCTCACAAATGC - Unknown Unknown TCGA-02-0001 TCGA-02-0001-10A-01W AGTAACAATGAACTTTATGTTACTGCAGCTCACAAATGC AGTAACAATGAACTTTATGTTACTGCAGCTCACAAATGC AGTAACAATGAACTTTATGTTACTGCAGCTCACAAATGC - Unknown Unknown Unknown Valid Somatic splice splice splice -NMBR 4829 hgsc.bcm.edu 36 6 142451232 142451232 + missense SNP G G A novel Unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G A G G G Unknown Valid Somatic missense A86V A86V H 3.1 http://mutationassessor.org?cm=var&var=6,142451232,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NMBR_HUMAN&rb=60&re=324&var=A86V http://mutationassessor.org/pdb.php?prot=NMBR_HUMAN&from=60&to=324&var=A86V -NMBR 4829 hgsc.bcm.edu 36 6 142451232 142451232 + missense SNP G G A novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G A G G G Unknown Valid Somatic missense A86V A86V H 3.1 http://mutationassessor.org?cm=var&var=6,142451232,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NMBR_HUMAN&rb=60&re=324&var=A86V http://mutationassessor.org/pdb.php?prot=NMBR_HUMAN&from=60&to=324&var=A86V -NMBR 4829 hgsc.bcm.edu 36 6 142441713 142441713 + missense SNP G G T novel Unknown TCGA-06-0178 TCGA-06-0178-10B-01W G G G T G G Unknown Valid Somatic missense P148H P148H M 1.925 http://mutationassessor.org?cm=var&var=6,142441713,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NMBR_HUMAN&rb=60&re=324&var=P148H http://mutationassessor.org/pdb.php?prot=NMBR_HUMAN&from=60&to=324&var=P148H -NMBR 4829 hgsc.bcm.edu 36 6 142441713 142441713 + missense SNP G G T novel unknown TCGA-06-0178 TCGA-06-0178-10B-01W G G G T G G Unknown Valid Somatic missense P148H P148H M 1.925 http://mutationassessor.org?cm=var&var=6,142441713,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NMBR_HUMAN&rb=60&re=324&var=P148H http://mutationassessor.org/pdb.php?prot=NMBR_HUMAN&from=60&to=324&var=P148H -NOS3 4846 genome.wustl.edu 36 7 150324884 150324885 + frameshift_ins Ins - - G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_ins frameshift_ins frameshift_ins -NOTCH1 4851 genome.wustl.edu 36 9 138532894 138532896 + inframe_del Del AGG CCT - Unknown Unknown TCGA-02-0026 TCGA-02-0026-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic inframe_del inframe_del inframe_del -NOTCH4 4855 hgsc.bcm.edu 36 6 32295505 32295505 + missense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense S451F S451F M 1.01 http://mutationassessor.org?cm=var&var=6,32295505,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NOTC4_HUMAN&rb=432&re=474&var=S451F http://mutationassessor.org/pdb.php?prot=NOTC4_HUMAN&from=432&to=474&var=S451F -NRAP 4892 hgsc.bcm.edu 36 10 115381301 115381301 + missense SNP G A A novel unknown TCGA-02-0014 TCGA-02-0014-10A-01W G G A G G G Unknown Valid Somatic missense S600F S600F L 0.855 http://mutationassessor.org?cm=var&var=10,115381301,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NRAP_HUMAN&rb=593&re=731&var=S600F -NRAP 4892 hgsc.bcm.edu 36 10 115371834 115371834 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense missense missense -NTRK2 4915 hgsc.bcm.edu 36 9 86475515 86475515 + missense SNP C C T novel unknown TCGA-02-0099 TCGA-02-0099-10A-01W C C C T C C Unknown Valid Somatic missense A11V A11V L 0.695 http://mutationassessor.org?cm=var&var=9,86475515,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NTRK2_HUMAN&rb=1&re=30&var=A11V -ROR2 4920 hgsc.bcm.edu 36 9 93535351 93535351 + missense SNP C C T novel Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense A271T A271T M 1.315 http://mutationassessor.org?cm=var&var=9,93535351,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ROR2_HUMAN&rb=174&re=301&var=A271T -ROR2 4920 hgsc.bcm.edu 36 9 93535351 93535351 + missense SNP C C T novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense A271T A271T M 1.315 http://mutationassessor.org?cm=var&var=9,93535351,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ROR2_HUMAN&rb=174&re=301&var=A271T -ROR2 4920 hgsc.bcm.edu 36 9 93526393 93526393 + missense SNP C C T novel unknown TCGA-08-0390 TCGA-08-0390-11A-01W C C C T C C Unknown Valid Somatic missense R735Q R735Q M 1.17 http://mutationassessor.org?cm=var&var=9,93526393,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ROR2_HUMAN&rb=473&re=746&var=R735Q http://mutationassessor.org/pdb.php?prot=ROR2_HUMAN&from=473&to=746&var=R735Q -ROR2 4920 hgsc.bcm.edu 36 9 93527042 93527042 + missense SNP C C T novel Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense E519K E519K L 0.4 http://mutationassessor.org/?cm=msa&ty=f&p=ROR2_HUMAN&rb=473&re=746&var=E519K http://mutationassessor.org/pdb.php?prot=ROR2_HUMAN&from=473&to=746&var=E519K -ROR2 4920 hgsc.bcm.edu 36 9 93527042 93527042 + missense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense E519K E519K L 0.4 http://mutationassessor.org/?cm=msa&ty=f&p=ROR2_HUMAN&rb=473&re=746&var=E519K http://mutationassessor.org/pdb.php?prot=ROR2_HUMAN&from=473&to=746&var=E519K -DDR2 4921 broad.mit.edu 36.1 1 161016536 161016536 + missense SNP C C T TCGA-06-0185 TCGA-06-0185-10B-01W-0254-08 C C T C C C U Valid Somatic missense P815L P815L M 1.01 http://mutationassessor.org?cm=var&var=1,161016536,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DDR2_HUMAN&rb=563&re=849&var=P815L http://mutationassessor.org/pdb.php?prot=DDR2_HUMAN&from=563&to=849&var=P815L -DDR2 4921 broad.mit.edu 36.1 1 161003642 161003642 + splice SNP G G T TCGA-06-0176 TCGA-06-0176-10A-01W-0254-08 G G G T G G U Valid Somatic splice splice splice -TNFRSF11B 4982 hgsc.bcm.edu 36 8 120014420 120014420 + missense SNP G G A novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G A G G G Unknown Valid Somatic missense R111C R111C L 0.69 http://mutationassessor.org?cm=var&var=8,120014420,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TR11B_HUMAN&rb=106&re=278&var=R111C -PAX5 5079 genome.wustl.edu 36 9 37010768 37010769 + frameshift_ins Ins - - C Unknown Unknown TCGA-06-0141 TCGA-06-0141-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_ins frameshift_ins frameshift_ins -PDGFRA 5156 hgsc.bcm.edu 36 4 54828591 54828591 + missense SNP G G C novel unknown TCGA-06-0174 TCGA-06-0174-10B-01W G G C G G G Unknown Valid Somatic missense W349C W349C H 2.465 http://mutationassessor.org?cm=var&var=4,54828591,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PGFRA_HUMAN&rb=319&re=411&var=W349C http://mutationassessor.org/pdb.php?prot=PGFRA_HUMAN&from=319&to=411&var=W349C -PDGFRA 5156 broad.mit.edu 36.1 4 54825918 54825918 + missense SNP G A G TCGA-08-0245 TCGA-08-0245-11A-01W-0318-08 G G G A G G U Valid Somatic missense C235Y C235Y M 1.775 http://mutationassessor.org?cm=var&var=4,54825918,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PGFRA_HUMAN&rb=216&re=307&var=C235Y -PDGFRA 5156 broad.mit.edu 36.1 4 54835503 54835503 + missense SNP T A A TCGA-08-0347 TCGA-08-0347-11A-01W-0318-08 T T A T T T U Valid Somatic missense V536E V536E M 1.4 http://mutationassessor.org?cm=var&var=4,54835503,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PGFRA_HUMAN&rb=401&re=600&var=V536E -PDGFRA 5156 hgsc.bcm.edu 36 4 54835503 54835503 + missense SNP T T A novel unknown TCGA-08-0347 TCGA-08-0347-11A-01W T T A T T T Unknown Valid Somatic missense V536E V536E M 1.4 http://mutationassessor.org?cm=var&var=4,54835503,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PGFRA_HUMAN&rb=401&re=600&var=V536E -PDGFRB 5159 hgsc.bcm.edu 36 5 149477555 149477555 + missense SNP G G A novel Unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense L986F L986F L 0.565 http://mutationassessor.org?cm=var&var=5,149477555,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PGFRB_HUMAN&rb=959&re=1106&var=L986F -PDGFRB 5159 hgsc.bcm.edu 36 5 149477555 149477555 + missense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense L986F L986F L 0.565 http://mutationassessor.org?cm=var&var=5,149477555,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PGFRB_HUMAN&rb=959&re=1106&var=L986F -PDGFRB 5159 hgsc.bcm.edu 36 5 149495455 149495455 + missense SNP C C T novel Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense A74T A74T L 0.205 http://mutationassessor.org/?cm=msa&ty=f&p=PGFRB_HUMAN&rb=47&re=102&var=A74T -PDGFRB 5159 hgsc.bcm.edu 36 5 149495455 149495455 + missense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense A74T A74T L 0.205 http://mutationassessor.org/?cm=msa&ty=f&p=PGFRB_HUMAN&rb=47&re=102&var=A74T -PDK2 5164 hgsc.bcm.edu 36 17 45539183 45539183 + missense SNP C C T novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C C T C C Unknown Valid Somatic missense P182S P182S L 0.385 http://mutationassessor.org?cm=var&var=17,45539183,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PDK2_HUMAN&rb=29&re=193&var=P182S http://mutationassessor.org/pdb.php?prot=PDK2_HUMAN&from=29&to=193&var=P182S -PDPK1 5170 broad.mit.edu 36.1 16 2547714 2547714 + missense SNP G A G TCGA-08-0389 TCGA-08-0389-11A-01W-0318-08 G G A G G G U Valid Somatic missense V12M V12M L 0.77 http://mutationassessor.org?cm=var&var=16,2547714,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PDPK1_HUMAN&rb=1&re=81&var=V12M -PIK3C2A 5286 broad.mit.edu 36.1 11 17083357 17083357 + missense SNP A A G TCGA-06-0209 TCGA-06-0209-10A-01W-0255-08 A A A G A A U Valid Somatic missense F1206L F1206L M 1.19 http://mutationassessor.org?cm=var&var=11,17083357,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2A_HUMAN&rb=1132&re=1347&var=F1206L http://mutationassessor.org/pdb.php?prot=P3C2A_HUMAN&from=1132&to=1347&var=F1206L -PIK3C2A 5286 hgsc.bcm.edu 36 11 17083357 17083357 + missense SNP A A G novel unknown TCGA-06-0209 TCGA-06-0209-10A-01W A A A G A A Unknown Valid Somatic missense F1206L F1206L M 1.19 http://mutationassessor.org?cm=var&var=11,17083357,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2A_HUMAN&rb=1132&re=1347&var=F1206L http://mutationassessor.org/pdb.php?prot=P3C2A_HUMAN&from=1132&to=1347&var=F1206L -PIK3C2B 5287 broad.mit.edu 36.1 1 202674772 202674772 + missense SNP C C T TCGA-02-0043 TCGA-02-0043-10A-01W-0189-08 C C C T C C U Valid Somatic missense E1144K E1144K L 0.26 http://mutationassessor.org?cm=var&var=1,202674772,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2B_HUMAN&rb=1077&re=1292&var=E1144K http://mutationassessor.org/pdb.php?prot=P3C2B_HUMAN&from=1077&to=1292&var=E1144K -PIK3C2G 5288 broad.mit.edu 36.1 12 18468201 18468201 + missense SNP G A G TCGA-06-0137 TCGA-06-0137-10A-01W-0224-08 G G A G G G U Valid Somatic missense R781H R781H H 2.26 http://mutationassessor.org?cm=var&var=12,18468201,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=646&re=828&var=R781H http://mutationassessor.org/pdb.php?prot=P3C2G_HUMAN&from=646&to=828&var=R781H -PIK3C2G 5288 hgsc.bcm.edu 36 12 18468201 18468201 + missense SNP G G A novel unknown TCGA-06-0137 TCGA-06-0137-10A-01W G G A G G G Unknown Valid Somatic missense R781H R781H H 2.26 http://mutationassessor.org?cm=var&var=12,18468201,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=646&re=828&var=R781H http://mutationassessor.org/pdb.php?prot=P3C2G_HUMAN&from=646&to=828&var=R781H -PIK3C2G 5288 hgsc.bcm.edu 36 12 18468201 18468201 + missense SNP G G A novel unknown TCGA-06-0137 TCGA-06-0137-10A-01W G G A G G G Unknown Valid Somatic missense R781H R781H H 2.26 http://mutationassessor.org?cm=var&var=12,18468201,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=646&re=828&var=R781H http://mutationassessor.org/pdb.php?prot=P3C2G_HUMAN&from=646&to=828&var=R781H -PIK3C2G 5288 hgsc.bcm.edu 36 12 18468201 18468201 + missense SNP G G A novel unknown TCGA-06-0137 TCGA-06-0137-10A-01W G G A G G G Unknown Valid Somatic missense R781H R781H H 2.26 http://mutationassessor.org?cm=var&var=12,18468201,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=646&re=828&var=R781H http://mutationassessor.org/pdb.php?prot=P3C2G_HUMAN&from=646&to=828&var=R781H -PIK3C2G 5288 broad.mit.edu 36.1 12 18549503 18549503 + missense SNP A A G TCGA-06-0145 TCGA-06-0145-10A-01W-0224-08 A A G A A A U Valid Somatic missense N1014S N1014S M 1.925 http://mutationassessor.org?cm=var&var=12,18549503,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=915&re=1130&var=N1014S http://mutationassessor.org/pdb.php?prot=P3C2G_HUMAN&from=915&to=1130&var=N1014S -PIK3C2G 5288 hgsc.bcm.edu 36 12 18549503 18549503 + missense SNP A A G novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W A A A G A A Unknown Valid Somatic missense N1014S N1014S M 1.925 http://mutationassessor.org?cm=var&var=12,18549503,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=915&re=1130&var=N1014S http://mutationassessor.org/pdb.php?prot=P3C2G_HUMAN&from=915&to=1130&var=N1014S -PIK3C2G 5288 broad.mit.edu 36.1 12 18326302 18326302 + missense SNP C C T TCGA-06-0213 TCGA-06-0213-10A-01W-0255-08 C C C T C C U Valid Somatic missense T7M T7M L 0.695 http://mutationassessor.org?cm=var&var=12,18326302,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=1&re=200&var=T7M -PIK3C2G 5288 hgsc.bcm.edu 36 12 18326302 18326302 + missense SNP C C T novel unknown TCGA-06-0213 TCGA-06-0213-10A-01W C C C T C C Unknown Valid Somatic missense T7M T7M L 0.695 http://mutationassessor.org?cm=var&var=12,18326302,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=1&re=200&var=T7M -PIK3C2G 5288 broad.mit.edu 36.1 12 18444021 18444021 + missense SNP T C T TCGA-06-0201 TCGA-06-0201-10A-01W-0255-08 T T C T T T U Valid Somatic missense L722S L722S L 0.28 http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=646&re=828&var=L722S http://mutationassessor.org/pdb.php?prot=P3C2G_HUMAN&from=646&to=828&var=L722S -PIK3C2G 5288 broad.mit.edu 36.1 12 18358164 18358164 + missense SNP G A G TCGA-08-0375 TCGA-08-0375-11A-01W-0318-08 G G A G G G U Valid Somatic missense D346N D346N L 0.205 http://mutationassessor.org/?cm=msa&ty=f&p=P3C2G_HUMAN&rb=274&re=371&var=D346N -PIK3CA 5290 hgsc.bcm.edu 36 3 180418768 180418768 + missense SNP C C G novel unknown TCGA-08-0375 TCGA-08-0375-11A-01W C C C G C C Unknown Valid Somatic missense P539R P539R M 1.87 http://mutationassessor.org?cm=var&var=3,180418768,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CA_HUMAN&rb=519&re=704&var=P539R http://mutationassessor.org/pdb.php?prot=PK3CA_HUMAN&from=519&to=704&var=P539R -PIK3CA 5290 hgsc.bcm.edu 36 3 180404247 180404247 + missense SNP T T A novel unknown TCGA-02-0047 TCGA-02-0047-10A-01W T T A T T T Unknown Valid Somatic missense N345K N345K M 1.53 http://mutationassessor.org?cm=var&var=3,180404247,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CA_HUMAN&rb=319&re=428&var=N345K http://mutationassessor.org/pdb.php?prot=PK3CA_HUMAN&from=319&to=428&var=N345K -PIK3CA 5290 hgsc.bcm.edu 36 3 180399570 180399570 + missense SNP G G A novel unknown TCGA-02-0116 TCGA-02-0116-10A-01W G G A G G G Unknown Valid Somatic missense R88Q R88Q M 1.455 http://mutationassessor.org?cm=var&var=3,180399570,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CA_HUMAN&rb=31&re=108&var=R88Q http://mutationassessor.org/pdb.php?prot=PK3CA_HUMAN&from=31&to=108&var=R88Q -PIK3CA 5290 hgsc.bcm.edu 36 3 180410674 180410674 + missense SNP T T C novel unknown TCGA-02-0037 TCGA-02-0037-10A-01W T T C T T T Unknown Valid Somatic missense C420R C420R M 1.265 http://mutationassessor.org?cm=var&var=3,180410674,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CA_HUMAN&rb=350&re=485&var=C420R http://mutationassessor.org/pdb.php?prot=PK3CA_HUMAN&from=350&to=485&var=C420R -PIK3CA 5290 hgsc.bcm.edu 36 3 180418785 180418785 + missense SNP G G A novel unknown TCGA-06-0210 TCGA-06-0210-10A-01W G G A G G G Unknown Valid Somatic missense E545K E545K L 0.765 http://mutationassessor.org?cm=var&var=3,180418785,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CA_HUMAN&rb=519&re=704&var=E545K http://mutationassessor.org/pdb.php?prot=PK3CA_HUMAN&from=519&to=704&var=E545K -PIK3CA 5290 hgsc.bcm.edu 36 3 180434766 180434766 + missense SNP A A G novel Unknown TCGA-06-0171 TCGA-06-0171-10A-01W A A A G A A Unknown Valid Somatic missense M1043V M1043V L 0.65 http://mutationassessor.org?cm=var&var=3,180434766,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CA_HUMAN&rb=797&re=1068&var=M1043V http://mutationassessor.org/pdb.php?prot=PK3CA_HUMAN&from=797&to=1068&var=M1043V -PIK3CA 5290 hgsc.bcm.edu 36 3 180434766 180434766 + missense SNP A A G novel unknown TCGA-06-0171 TCGA-06-0171-10A-01W A A A G A A Unknown Valid Somatic missense M1043V M1043V L 0.65 http://mutationassessor.org?cm=var&var=3,180434766,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CA_HUMAN&rb=797&re=1068&var=M1043V http://mutationassessor.org/pdb.php?prot=PK3CA_HUMAN&from=797&to=1068&var=M1043V -PIK3CA 5290 hgsc.bcm.edu 36 3 180434785 180434785 + missense SNP G G C novel Unknown TCGA-06-0201 TCGA-06-0201-10A-01W G G C G G G Unknown Valid Somatic missense G1049A G1049A L 0.58 http://mutationassessor.org?cm=var&var=3,180434785,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CA_HUMAN&rb=797&re=1068&var=G1049A http://mutationassessor.org/pdb.php?prot=PK3CA_HUMAN&from=797&to=1068&var=G1049A -PIK3CA 5290 hgsc.bcm.edu 36 3 180434785 180434785 + missense SNP G G C novel unknown TCGA-06-0201 TCGA-06-0201-10A-01W G G C G G G Unknown Valid Somatic missense G1049A G1049A L 0.58 http://mutationassessor.org?cm=var&var=3,180434785,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CA_HUMAN&rb=797&re=1068&var=G1049A http://mutationassessor.org/pdb.php?prot=PK3CA_HUMAN&from=797&to=1068&var=G1049A -PIM1 5292 hgsc.bcm.edu 36 6 37247171 37247171 + missense SNP A A G novel Unknown TCGA-02-0011 TCGA-02-0011-10A-01W A A A G A A Unknown Valid Somatic missense N269S N269S L 0.31 http://mutationassessor.org?cm=var&var=6,37247171,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PIM1_HUMAN&rb=129&re=381&var=N269S http://mutationassessor.org/pdb.php?prot=PIM1_HUMAN&from=129&to=381&var=N269S -PIM1 5292 hgsc.bcm.edu 36 6 37247171 37247171 + missense SNP A A G novel unknown TCGA-02-0011 TCGA-02-0011-10A-01W A A A G A A Unknown Valid Somatic missense N269S N269S L 0.31 http://mutationassessor.org?cm=var&var=6,37247171,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PIM1_HUMAN&rb=129&re=381&var=N269S http://mutationassessor.org/pdb.php?prot=PIM1_HUMAN&from=129&to=381&var=N269S -PIK3CG 5294 hgsc.bcm.edu 36 7 106296896 106296896 + missense SNP C C T novel unknown TCGA-02-0116 TCGA-02-0116-10A-01W C C C T C C Unknown Valid Somatic missense R552C R552C H 2.075 http://mutationassessor.org?cm=var&var=7,106296896,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CG_HUMAN&rb=543&re=733&var=R552C http://mutationassessor.org/pdb.php?prot=PK3CG_HUMAN&from=543&to=733&var=R552C -PIK3CG 5294 hgsc.bcm.edu 36 7 106295295 106295295 + missense SNP G G A novel unknown TCGA-06-0176 TCGA-06-0176-10A-01W G G A G G G Unknown Valid Somatic missense R18Q R18Q L 0.895 http://mutationassessor.org/?cm=msa&ty=f&p=PK3CG_HUMAN&rb=1&re=200&var=R18Q -PIK3CG 5294 hgsc.bcm.edu 36 7 106313954 106313954 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense P1004L P1004L L 0.815 http://mutationassessor.org?cm=var&var=7,106313954,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PK3CG_HUMAN&rb=827&re=1044&var=P1004L http://mutationassessor.org/pdb.php?prot=PK3CG_HUMAN&from=827&to=1044&var=P1004L -PIK3R1 5295 genome.wustl.edu 36 5 67626884 67626885 + frameshift_del Del GA GA - Unknown Unknown TCGA-06-0129 TCGA-06-0129-10A-01W GA GA Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PIK3R1 5295 genome.wustl.edu 36 5 67625310 67625312 + inframe_del Del AGA AGA - Unknown Unknown TCGA-02-0021 TCGA-02-0021-10A-01W AGA AGA Unknown Unknown Unknown Unknown Unknown Valid Somatic inframe_del inframe_del inframe_del -PIK3R1 5295 genome.wustl.edu 36 5 67625370 67625372 + inframe_del Del AAG AAG - Unknown Unknown TCGA-02-0028 TCGA-02-0028-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic inframe_del inframe_del inframe_del -PIK3R1 5295 genome.wustl.edu 36 5 67626840 67626857 + inframe_del Del TGACAAACGTATGAACAG TGACAAACGTATGAACAG - Unknown Unknown TCGA-06-0178 TCGA-06-0178-10B-01W TGACAAACGTATGAACAG TGACAAACGTATGAACAG Unknown Unknown Unknown Unknown Unknown Valid Somatic inframe_del inframe_del inframe_del -PIK3R1 5295 genome.wustl.edu 36 5 67626889 67626891 + inframe_del Del ACG ACG - Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic inframe_del inframe_del inframe_del -PIK3R1 5295 genome.wustl.edu 36 5 67626889 67626891 + inframe_del Del ACG ACG - Unknown Unknown TCGA-08-0350 TCGA-08-0350-11A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic inframe_del inframe_del inframe_del -PIK3R1 5295 genome.wustl.edu 36 5 67626890 67626892 + inframe_del Del CGA CGA - Unknown Unknown TCGA-02-0114 TCGA-02-0114-10A-01W CGA CGA Unknown Unknown Unknown Unknown Unknown Valid Somatic inframe_del inframe_del inframe_del -PIK3R1 5295 genome.wustl.edu 36 5 67627006 67627008 + inframe_del Del GGT GGT - Unknown Unknown TCGA-06-0133 TCGA-06-0133-10A-01W GGT GGT Unknown Unknown Unknown Unknown Unknown Valid Somatic inframe_del inframe_del inframe_del -PIK3R1 5295 genome.wustl.edu 36 5 67626848 67626849 + inframe_del Ins - - GAAGAAGCAGGCAGCTGAGTATCGAGAAATTGACAAACG Unknown Unknown TCGA-02-0048 TCGA-02-0048-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic inframe_del inframe_del inframe_del -PLAG1 5324 broad.mit.edu 36.1 8 57241776 57241776 + missense SNP C C T TCGA-02-0055 TCGA-02-0055-10A-01W-0189-08 C C C T C C U Valid Somatic missense M361I M361I L 0.7 http://mutationassessor.org?cm=var&var=8,57241776,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PLAG1_HUMAN&rb=201&re=400&var=M361I -PLAG1 5324 hgsc.bcm.edu 36 8 57241776 57241776 + missense SNP C C T novel unknown TCGA-02-0055 TCGA-02-0055-10A-01W C C C T C C Unknown Valid Somatic missense M361I M361I L 0.7 http://mutationassessor.org?cm=var&var=8,57241776,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PLAG1_HUMAN&rb=201&re=400&var=M361I -PMS2 5395 hgsc.bcm.edu 36 7 6005414 6005414 + nonsense SNP G G A novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic nonsense Q186* Q186* -POU2F1 5451 hgsc.bcm.edu 36 1 165625522 165625522 + missense SNP G G A novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G A G G G Unknown Valid Somatic missense R273Q R273Q L 0.785 http://mutationassessor.org?cm=var&var=1,165625522,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PO2F1_HUMAN&rb=201&re=400&var=R273Q -PPP2R5D 5528 broad.mit.edu 36.1 6 43083723 43083723 + missense SNP G A G TCGA-02-0069 TCGA-02-0069-10A-01W-0206-08 G G G A G G U Valid Somatic missense G267S G267S M 1.91 http://mutationassessor.org?cm=var&var=6,43083723,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=2A5D_HUMAN&rb=102&re=514&var=G267S http://mutationassessor.org/pdb.php?prot=2A5D_HUMAN&from=102&to=514&var=G267S -PRKCA 5578 broad.mit.edu 36.1 17 62215542 62215542 + missense SNP C C T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C T C C C U Valid Somatic missense P613S P613S M 1.405 http://mutationassessor.org?cm=var&var=17,62215542,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KPCA_HUMAN&rb=598&re=668&var=P613S http://mutationassessor.org/pdb.php?prot=KPCA_HUMAN&from=598&to=668&var=P613S -PRKCB1 5579 broad.mit.edu 36.1 16 24138810 24138810 + missense SNP G A G TCGA-06-0185 TCGA-06-0185-10B-01W-0254-08 G G G A G G U Valid Somatic missense D631N D631N H 2.635 http://mutationassessor.org?cm=var&var=16,24138810,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KPCB_HUMAN&rb=620&re=666&var=D631N http://mutationassessor.org/pdb.php?prot=KPCB_HUMAN&from=620&to=666&var=D631N -PRKCD 5580 hgsc.bcm.edu 36 3 53188716 53188716 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense R67C R67C M 1.855 http://mutationassessor.org?cm=var&var=3,53188716,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KPCD_HUMAN&rb=1&re=90&var=R67C http://mutationassessor.org/pdb.php?prot=KPCD_HUMAN&from=1&to=90&var=R67C -PRKCD 5580 hgsc.bcm.edu 36 3 53188716 53188716 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense R67C R67C M 1.855 http://mutationassessor.org?cm=var&var=3,53188716,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KPCD_HUMAN&rb=1&re=90&var=R67C http://mutationassessor.org/pdb.php?prot=KPCD_HUMAN&from=1&to=90&var=R67C -PRKCD 5580 hgsc.bcm.edu 36 3 53188716 53188716 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense R67C R67C M 1.855 http://mutationassessor.org?cm=var&var=3,53188716,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KPCD_HUMAN&rb=1&re=90&var=R67C http://mutationassessor.org/pdb.php?prot=KPCD_HUMAN&from=1&to=90&var=R67C -PRKCD 5580 hgsc.bcm.edu 36 3 53188716 53188716 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense R67C R67C M 1.855 http://mutationassessor.org?cm=var&var=3,53188716,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KPCD_HUMAN&rb=1&re=90&var=R67C http://mutationassessor.org/pdb.php?prot=KPCD_HUMAN&from=1&to=90&var=R67C -PRKCD 5580 hgsc.bcm.edu 36 3 53188716 53188716 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense R67C R67C M 1.855 http://mutationassessor.org?cm=var&var=3,53188716,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KPCD_HUMAN&rb=1&re=90&var=R67C http://mutationassessor.org/pdb.php?prot=KPCD_HUMAN&from=1&to=90&var=R67C -PRKCD 5580 hgsc.bcm.edu 36 3 53188716 53188716 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense R67C R67C M 1.855 http://mutationassessor.org?cm=var&var=3,53188716,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KPCD_HUMAN&rb=1&re=90&var=R67C http://mutationassessor.org/pdb.php?prot=KPCD_HUMAN&from=1&to=90&var=R67C -PRKCZ 5590 hgsc.bcm.edu 36 1 2072180 2072180 + missense SNP G G A novel unknown TCGA-06-0206 TCGA-06-0206-10A-01W G G A G G G Unknown Valid Somatic missense missense missense -PRKCZ 5590 hgsc.bcm.edu 36 1 2106249 2106249 + missense SNP G G A novel Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense missense missense -MAPK9 5601 broad.mit.edu 36.1 5 179640065 179640065 + missense SNP C C T TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 C C T C C C U Valid Somatic missense G35R G35R H 3.16 http://mutationassessor.org?cm=var&var=5,179640065,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MK09_HUMAN&rb=26&re=321&var=G35R http://mutationassessor.org/pdb.php?prot=MK09_HUMAN&from=26&to=321&var=G35R -MAPK9 5601 broad.mit.edu 36.1 5 179624427 179624427 + missense SNP C C T TCGA-02-0028 TCGA-02-0028-10A-01W-0189-08 C C T C C C U Valid Somatic missense V91M V91M M 1.455 http://mutationassessor.org?cm=var&var=5,179624427,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MK09_HUMAN&rb=26&re=321&var=V91M http://mutationassessor.org/pdb.php?prot=MK09_HUMAN&from=26&to=321&var=V91M -MAPK13 5603 hgsc.bcm.edu 36 6 36212465 36212465 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense V184M V184M H 2.39 http://mutationassessor.org?cm=var&var=6,36212465,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MK13_HUMAN&rb=25&re=308&var=V184M http://mutationassessor.org/pdb.php?prot=MK13_HUMAN&from=25&to=308&var=V184M -PRNP 5621 hgsc.bcm.edu 36 20 4628251 4628251 + missense SNP A A G rs1799990 by2Hit2Allele;byCluster;byFrequency;byHapMap TCGA-08-0360 TCGA-08-0360-11A-01W A A A G A A Unknown Valid Somatic missense M129V M129V M 1.655 http://mutationassessor.org?cm=var&var=20,4628251,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PRIO_HUMAN&rb=1&re=200&var=M129V http://mutationassessor.org/pdb.php?prot=PRIO_HUMAN&from=1&to=200&var=M129V -PROX1 5629 broad.mit.edu 36.1 1 212237253 212237253 + missense SNP G A G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 G G G A G G U Valid Somatic missense R251H R251H L 0.985 http://mutationassessor.org?cm=var&var=1,212237253,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PROX1_HUMAN&rb=36&re=313&var=R251H -PSMD13 5719 broad.mit.edu 36.1 11 234115 234115 + missense SNP G A G rs7128044 unknown TCGA-02-0025 TCGA-02-0025-10A-01W-0318-08 A G G A G G U Valid Somatic missense C57Y C57Y N -0.16 http://mutationassessor.org/?cm=msa&ty=f&p=B3KT15_HUMAN&rb=1&re=200&var=C57Y -PSMD13 5719 broad.mit.edu 36.1 11 234115 234115 + missense SNP G A A rs7128044 unknown TCGA-08-0353 TCGA-08-0353-11A-01W-0318-08 A A G A A A U Valid Somatic missense C57Y C57Y N -0.16 http://mutationassessor.org/?cm=msa&ty=f&p=B3KT15_HUMAN&rb=1&re=200&var=C57Y -PSMD13 5719 broad.mit.edu 36.1 11 234115 234115 + missense SNP G A G rs7128044 unknown TCGA-08-0356 TCGA-08-0356-11A-01W-0318-08 nt nt G A G G U Valid Somatic missense C57Y C57Y N -0.16 http://mutationassessor.org/?cm=msa&ty=f&p=B3KT15_HUMAN&rb=1&re=200&var=C57Y -PTCH1 5727 hgsc.bcm.edu 36 9 97270875 97270875 + missense SNP G G T novel unknown TCGA-06-0151 TCGA-06-0151-10A-01W G G G T G G Unknown Valid Somatic missense F743L F743L N -0.04 http://mutationassessor.org/?cm=msa&ty=f&p=PTC1_HUMAN&rb=362&re=1180&var=F743L -PTCH1 5727 hgsc.bcm.edu 36 9 97249179 97249179 + nonsense SNP G A A novel unknown TCGA-06-0125 TCGA-06-0125-10A-01W G G A G G G Unknown Valid Somatic nonsense R1394* R1394* -PTEN 5728 broad.mit.edu 36.1 10 89682891 89682891 + missense SNP G A A TCGA-06-0187 TCGA-06-0187-10B-01W-0254-08 G G A G G G U Valid Somatic missense G132D G132D H 3.075 http://mutationassessor.org?cm=var&var=10,89682891,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=G132D http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=G132D -PTEN 5728 hgsc.bcm.edu 36 10 89682891 89682891 + missense SNP G A A novel unknown TCGA-06-0187 TCGA-06-0187-10B-01W G G A G G G Unknown Valid Somatic missense G132D G132D H 3.075 http://mutationassessor.org?cm=var&var=10,89682891,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=G132D http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=G132D -PTEN 5728 broad.mit.edu 36.1 10 89682783 89682783 + missense SNP C C T TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 C C T C C C U Valid Somatic missense P96L P96L H 2.995 http://mutationassessor.org?cm=var&var=10,89682783,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=P96L http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=P96L -PTEN 5728 hgsc.bcm.edu 36 10 89682783 89682783 + missense SNP C C T novel unknown TCGA-02-0014 TCGA-02-0014-10A-01W C C C T C C Unknown Valid Somatic missense P96L P96L H 2.995 http://mutationassessor.org?cm=var&var=10,89682783,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=P96L http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=P96L -PTEN 5728 broad.mit.edu 36.1 10 89701879 89701879 + missense SNP C C T TCGA-02-0038 TCGA-02-0038-10A-01W-0189-08 C C C T C C U Valid Somatic missense R173C R173C H 2.8 http://mutationassessor.org?cm=var&var=10,89701879,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=R173C http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=R173C -PTEN 5728 hgsc.bcm.edu 36 10 89701879 89701879 + missense SNP C C T novel unknown TCGA-02-0038 TCGA-02-0038-10A-01W C C C T C C Unknown Valid Somatic missense R173C R173C H 2.8 http://mutationassessor.org?cm=var&var=10,89701879,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=R173C http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=R173C -PTEN 5728 broad.mit.edu 36.1 10 89643821 89643821 + missense SNP A A G TCGA-08-0359 TCGA-08-0359-11A-01W-0318-08 A A G A A A U Valid Somatic missense R47G R47G H 2.74 http://mutationassessor.org?cm=var&var=10,89643821,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=R47G http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=R47G -PTEN 5728 broad.mit.edu 36.1 10 89643821 89643821 + missense SNP A G G TCGA-08-0359 TCGA-08-0359-11A-01W-0318-08 A A G A A A U Valid Somatic missense R47G R47G H 2.74 http://mutationassessor.org?cm=var&var=10,89643821,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=R47G http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=R47G -PTEN 5728 hgsc.bcm.edu 36 10 89710659 89710659 + missense SNP C C T novel unknown TCGA-06-0124 TCGA-06-0124-10A-01W C C C T C C Unknown Valid Somatic missense T277I T277I H 2.085 http://mutationassessor.org?cm=var&var=10,89710659,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=188&re=349&var=T277I http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=188&to=349&var=T277I -PTEN 5728 broad.mit.edu 36.1 10 89682772 89682772 + missense SNP C A C TCGA-06-0190 TCGA-06-0190-10B-01W-0254-08 C C C A C C U Valid Somatic missense D92E D92E M 1.98 http://mutationassessor.org?cm=var&var=10,89682772,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=D92E http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=D92E -PTEN 5728 hgsc.bcm.edu 36 10 89682772 89682772 + missense SNP C C A novel unknown TCGA-06-0190 TCGA-06-0190-10B-01W C C A C C C Unknown Valid Somatic missense D92E D92E M 1.98 http://mutationassessor.org?cm=var&var=10,89682772,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=D92E http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=D92E -PTEN 5728 broad.mit.edu 36.1 10 89682972 89682972 + missense SNP G A A TCGA-06-0195 TCGA-06-0195-10A-01W-0254-08 G G G A G G U Valid Somatic missense R159K R159K M 1.945 http://mutationassessor.org?cm=var&var=10,89682972,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=R159K http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=R159K -PTEN 5728 broad.mit.edu 36.1 10 89682972 89682972 + missense SNP G A G TCGA-06-0195 TCGA-06-0195-10A-01W-0254-08 G G G A G G U Valid Somatic missense R159K R159K M 1.945 http://mutationassessor.org?cm=var&var=10,89682972,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=R159K http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=R159K -PTEN 5728 hgsc.bcm.edu 36 10 89682972 89682972 + missense SNP G G A novel unknown TCGA-06-0195 TCGA-06-0195-10A-01W G G A G G G Unknown Valid Somatic missense R159K R159K M 1.945 http://mutationassessor.org?cm=var&var=10,89682972,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=R159K http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=R159K -PTEN 5728 broad.mit.edu 36.1 10 89682887 89682887 + missense SNP A A G TCGA-02-0055 TCGA-02-0055-10A-01W-0189-08 A A G A A A U Valid Somatic missense T131A T131A M 1.815 http://mutationassessor.org?cm=var&var=10,89682887,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=T131A http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=T131A -PTEN 5728 hgsc.bcm.edu 36 10 89682887 89682887 + missense SNP A A G novel unknown TCGA-02-0055 TCGA-02-0055-10A-01W A A A G A A Unknown Valid Somatic missense T131A T131A M 1.815 http://mutationassessor.org?cm=var&var=10,89682887,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=T131A http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=T131A -PTEN 5728 hgsc.bcm.edu 36 10 89701862 89701862 + missense SNP C T T novel unknown TCGA-02-0021 TCGA-02-0021-10A-01W C C C G C C Unknown Valid Somatic missense T167I T167I M 1.665 http://mutationassessor.org?cm=var&var=10,89701862,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=T167I http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=T167I -PTEN 5728 broad.mit.edu 36.1 10 89701862 89701862 + missense SNP C C G TCGA-06-0166 TCGA-06-0166-10A-01W-0254-08 C C G C C C U Valid Somatic missense T167S T167S M 1.665 http://mutationassessor.org?cm=var&var=10,89701862,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=T167S http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=T167S -PTEN 5728 hgsc.bcm.edu 36 10 89701862 89701862 + missense SNP C C G novel unknown TCGA-06-0166 TCGA-06-0166-10A-01W C C C G C C Unknown Valid Somatic missense T167S T167S M 1.665 http://mutationassessor.org?cm=var&var=10,89701862,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=T167S http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=T167S -PTEN 5728 broad.mit.edu 36.1 10 89682975 89682975 + missense SNP C C T TCGA-02-0079 TCGA-02-0079-10A-01W-0323-08 C C C T C C U Valid Somatic missense T160I T160I M 1.6 http://mutationassessor.org?cm=var&var=10,89682975,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=T160I http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=T160I -PTEN 5728 hgsc.bcm.edu 36 10 89682975 89682975 + missense SNP C C T novel unknown TCGA-02-0079 TCGA-02-0079-10A-01W C C C T C C Unknown Valid Somatic missense T160I T160I M 1.6 http://mutationassessor.org?cm=var&var=10,89682975,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=T160I http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=T160I -PTEN 5728 broad.mit.edu 36.1 10 89675288 89675288 + missense SNP A A G TCGA-06-0208 TCGA-06-0208-10A-01W-0255-08 A A G A A A U Valid Somatic missense Y68C Y68C M 1.595 http://mutationassessor.org?cm=var&var=10,89675288,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=Y68C http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=Y68C -PTEN 5728 broad.mit.edu 36.1 10 89675288 89675288 + missense SNP A G G TCGA-06-0208 TCGA-06-0208-10A-01W-0255-08 A A G A A A U Valid Somatic missense Y68C Y68C M 1.595 http://mutationassessor.org?cm=var&var=10,89675288,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=Y68C http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=Y68C -PTEN 5728 hgsc.bcm.edu 36 10 89675288 89675288 + missense SNP A A G novel unknown TCGA-06-0208 TCGA-06-0208-10A-01W A A A G A A Unknown Valid Somatic missense Y68C Y68C M 1.595 http://mutationassessor.org?cm=var&var=10,89675288,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=47&re=175&var=Y68C http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=47&to=175&var=Y68C -PTEN 5728 broad.mit.edu 36.1 10 89643789 89643789 + missense SNP G A G TCGA-06-0184 TCGA-06-0184-10B-01W-0254-08 G G G A G G U Valid Somatic missense G36E G36E M 1.51 http://mutationassessor.org?cm=var&var=10,89643789,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=14&re=185&var=G36E http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=14&to=185&var=G36E -PTEN 5728 hgsc.bcm.edu 36 10 89643789 89643789 + missense SNP G G A novel unknown TCGA-06-0184 TCGA-06-0184-10B-01W G G A G G G Unknown Valid Somatic missense G36E G36E M 1.51 http://mutationassessor.org?cm=var&var=10,89643789,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=14&re=185&var=G36E http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=14&to=185&var=G36E -PTEN 5728 broad.mit.edu 36.1 10 89701940 89701940 + missense SNP T C C TCGA-02-0007 TCGA-02-0007-10A-01W-0189-08 T T C C T T U Valid Somatic missense L193P L193P M 1.415 http://mutationassessor.org?cm=var&var=10,89701940,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=188&re=349&var=L193P http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=188&to=349&var=L193P -PTEN 5728 hgsc.bcm.edu 36 10 89701940 89701940 + missense SNP T C C novel unknown TCGA-02-0007 TCGA-02-0007-10A-01W T T C C T T Unknown Valid Somatic missense L193P L193P M 1.415 http://mutationassessor.org?cm=var&var=10,89701940,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=188&re=349&var=L193P http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=188&to=349&var=L193P -PTEN 5728 hgsc.bcm.edu 36 10 89710641 89710641 + missense SNP T C C novel unknown TCGA-08-0389 TCGA-08-0389-11A-01W T T C T T T Unknown Valid Somatic missense F271S F271S M 1.315 http://mutationassessor.org?cm=var&var=10,89710641,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=188&re=349&var=F271S http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=188&to=349&var=F271S -PTEN 5728 broad.mit.edu 36.1 10 89707676 89707676 + missense SNP T C T TCGA-02-0075 TCGA-02-0075-10A-01W-0206-08 T T C T T T U Valid Somatic missense F241L F241L L 0.945 http://mutationassessor.org?cm=var&var=10,89707676,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=188&re=349&var=F241L http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=188&to=349&var=F241L -PTEN 5728 hgsc.bcm.edu 36 10 89707676 89707676 + missense SNP T T C novel unknown TCGA-02-0075 TCGA-02-0075-10A-01W T T C T T T Unknown Valid Somatic missense F241L F241L L 0.945 http://mutationassessor.org?cm=var&var=10,89707676,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTEN_HUMAN&rb=188&re=349&var=F241L http://mutationassessor.org/pdb.php?prot=PTEN_HUMAN&from=188&to=349&var=F241L -PTEN 5728 genome.wustl.edu 36 10 89680803 89680804 + frameshift_del Del AC AC - Unknown Unknown TCGA-02-0052 TCGA-02-0052-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89680805 89680806 + frameshift_del Del AC - AC Unknown Unknown TCGA-02-0052 TCGA-02-0052-10A-01W AC AC Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89682885 89682885 + frameshift_del Del G G - Unknown Unknown TCGA-02-0027 TCGA-02-0027-10A-01W G G G - G G Valid Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89682970 89682970 + frameshift_del Del A A - Unknown Unknown TCGA-02-0001 TCGA-02-0001-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89682971 89682971 + frameshift_del Del A A - Unknown Unknown TCGA-02-0001 TCGA-02-0001-10A-01W A A Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89701969 89701970 + frameshift_del Del AT AT - Unknown Unknown TCGA-06-0644 TCGA-06-0644-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89710670 89710670 + frameshift_del Del C C - Unknown Unknown TCGA-08-0348 TCGA-08-0348-11A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89710784 89710787 + frameshift_del Del ACTT - - Unknown Unknown TCGA-06-0125 TCGA-06-0125-10A-01W ACTT ACTT - - ACTT ACTT Valid Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89710784 89710787 + frameshift_del Del ACTT ACTT - Unknown Unknown TCGA-06-0206 TCGA-06-0206-10A-01W ACTT ACTT ACTT - ACTT ACTT Valid Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89710797 89710797 + frameshift_del Del A A - Unknown Unknown TCGA-06-0188 TCGA-06-0188-10B-01W A A Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89710798 89710798 + frameshift_del Del T T - Unknown Unknown TCGA-06-0188 TCGA-06-0188-10B-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89710811 89710815 + frameshift_del Del GCAAA GCAAA - Unknown Unknown TCGA-06-0168 TCGA-06-0168-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89715130 89715133 + frameshift_del Del GATA GATA - Unknown Unknown TCGA-08-0345 TCGA-08-0345-11A-03W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_del frameshift_del frameshift_del -PTEN 5728 genome.wustl.edu 36 10 89643764 89643765 + frameshift_ins Ins - - GATA Unknown Unknown TCGA-12-0618 TCGA-12-0618-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_ins frameshift_ins frameshift_ins -PTEN 5728 genome.wustl.edu 36 10 89710819 89710820 + frameshift_ins Ins - - A Unknown Unknown TCGA-12-0620 TCGA-12-0620-10A-01W Unknown Unknown Unknown Unknown Unknown Unknown Unknown Valid Somatic frameshift_ins frameshift_ins frameshift_ins -PTEN 5728 hgsc.bcm.edu 36 10 89707658 89707658 + missense SNP G G T novel Unknown TCGA-02-0113 TCGA-02-0113-10A-01W G G G T G G Unknown Valid Somatic missense E235 E235 -PTEN 5728 broad.mit.edu 36.1 10 89707742 89707742 + nonsense SNP A A T TCGA-08-0352 TCGA-08-0352-11A-02W-0323-08 A A T A A A U Valid Somatic nonsense K263* K263* -PTEN 5728 broad.mit.edu 36.1 10 89682941 89682941 + nonsense SNP C C T TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 C C C T C C U Valid Somatic nonsense Q149* Q149* -PTEN 5728 broad.mit.edu 36.1 10 89682884 89682884 + nonsense SNP C C T TCGA-06-0138 TCGA-06-0138-10C-01W-0254-08 C C C T C C U Valid Somatic nonsense R130* R130* -PTEN 5728 broad.mit.edu 36.1 10 89682884 89682884 + nonsense SNP C C T TCGA-06-0176 TCGA-06-0176-10A-01W-0254-08 C C C T C C U Valid Somatic nonsense R130* R130* -PTEN 5728 broad.mit.edu 36.1 10 89682884 89682884 + nonsense SNP C C T TCGA-08-0380 TCGA-08-0380-11A-01W-0318-08 C C T C C C U Valid Somatic nonsense R130* R130* -PTEN 5728 hgsc.bcm.edu 36 10 89682884 89682884 + nonsense SNP C C T novel unknown TCGA-06-0138 TCGA-06-0138-10C-01W C C C T C C Unknown Valid Somatic nonsense R130* R130* -PTEN 5728 hgsc.bcm.edu 36 10 89682884 89682884 + nonsense SNP C C T novel unknown TCGA-06-0176 TCGA-06-0176-10A-01W C C C T C C Unknown Valid Somatic nonsense R130* R130* -PTEN 5728 hgsc.bcm.edu 36 10 89682884 89682884 + nonsense SNP C C T novel unknown TCGA-08-0380 TCGA-08-0380-11A-01W C C C T C C Unknown Valid Somatic nonsense R130* R130* -PTEN 5728 broad.mit.edu 36.1 10 89707652 89707652 + nonsense SNP C C T TCGA-02-0004 TCGA-02-0004-10A-01W-0318-08 C C C T C C U Valid Somatic nonsense R233* R233* -PTEN 5728 broad.mit.edu 36.1 10 89710832 89710832 + nonsense SNP C C T TCGA-06-0213 TCGA-06-0213-10A-01W-0255-08 C C T C C C U Valid Somatic nonsense R335* R335* -PTEN 5728 broad.mit.edu 36.1 10 89701893 89701893 + nonsense SNP T G T TCGA-02-0099 TCGA-02-0099-10A-01W-0206-08 T T G T T T U Valid Somatic nonsense Y177* Y177* -PTPRZ1 5803 hgsc.bcm.edu 36 7 121438125 121438125 + missense SNP C C T novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C C T C C Unknown Valid Somatic missense P597S P597S L 0.695 http://mutationassessor.org?cm=var&var=7,121438125,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PTPRZ_HUMAN&rb=481&re=739&var=P597S -RAP2A 5911 hgsc.bcm.edu 36 13 96914666 96914666 + missense SNP A A G novel Unknown TCGA-02-0010 TCGA-02-0010-10A-01W A A A G A A Unknown Valid Somatic missense D174G D174G L 0.775 http://mutationassessor.org?cm=var&var=13,96914666,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RAP2A_HUMAN&rb=137&re=183&var=D174G -RB1 5925 hgsc.bcm.edu 36 13 47931845 47931845 + missense SNP C C T novel unknown TCGA-12-0619 TCGA-12-0619-10A-01W C C C T C C Unknown Valid Somatic missense R661W R661W H 2.655 http://mutationassessor.org?cm=var&var=13,47931845,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RB_HUMAN&rb=645&re=766&var=R661W http://mutationassessor.org/pdb.php?prot=RB_HUMAN&from=645&to=766&var=R661W -RB1 5925 broad.mit.edu 36.1 13 47931840 47931840 + missense SNP A A T TCGA-06-0184 TCGA-06-0184-10B-01W-0254-08 A A T A A A U Valid Somatic missense Y659F Y659F M 1.04 http://mutationassessor.org?cm=var&var=13,47931840,A,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RB_HUMAN&rb=645&re=766&var=Y659F http://mutationassessor.org/pdb.php?prot=RB_HUMAN&from=645&to=766&var=Y659F -RB1 5925 hgsc.bcm.edu 36 13 47931840 47931840 + missense SNP A A T novel unknown TCGA-06-0184 TCGA-06-0184-10B-01W A A A T A A Unknown Valid Somatic missense Y659F Y659F M 1.04 http://mutationassessor.org?cm=var&var=13,47931840,A,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RB_HUMAN&rb=645&re=766&var=Y659F http://mutationassessor.org/pdb.php?prot=RB_HUMAN&from=645&to=766&var=Y659F -RB1 5925 hgsc.bcm.edu 36 13 47928486 47928486 + missense SNP G G C novel unknown TCGA-06-0213 TCGA-06-0213-10A-01W G G C G G G Unknown Valid Somatic missense V654L V654L L 0.555 http://mutationassessor.org?cm=var&var=13,47928486,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RB_HUMAN&rb=645&re=766&var=V654L http://mutationassessor.org/pdb.php?prot=RB_HUMAN&from=645&to=766&var=V654L -RB1 5925 hgsc.bcm.edu 36 13 47779430 47779430 + nonsense SNP G T T novel unknown TCGA-08-0389 TCGA-08-0389-11A-01W G G G T G G Unknown Valid Somatic nonsense E51* E51* -RB1 5925 broad.mit.edu 36.1 13 47845597 47845597 + nonsense SNP C C T TCGA-06-0195 TCGA-06-0195-10A-01W-0254-08 C C T C C C U Valid Somatic nonsense Q395* Q395* -RB1 5925 hgsc.bcm.edu 36 13 47845597 47845597 + nonsense SNP C C T novel unknown TCGA-06-0195 TCGA-06-0195-10A-01W C C C T C C Unknown Valid Somatic nonsense Q395* Q395* -RB1 5925 hgsc.bcm.edu 36 13 47931968 47931968 + nonsense SNP C C T novel unknown TCGA-02-0033 TCGA-02-0033-10A-01W C C C T C C Unknown Valid Somatic nonsense Q702* Q702* -RB1 5925 broad.mit.edu 36.1 13 47834984 47834984 + nonsense SNP C C T TCGA-06-0176 TCGA-06-0176-10A-01W-0254-08 C C C T C C U Valid Somatic nonsense R251* R251* -RB1 5925 hgsc.bcm.edu 36 13 47834984 47834984 + nonsense SNP C C T novel unknown TCGA-06-0176 TCGA-06-0176-10A-01W C C C T C C Unknown Valid Somatic nonsense R251* R251* -RB1 5925 hgsc.bcm.edu 36 13 47849111 47849111 + nonsense SNP C C A novel unknown TCGA-02-0079 TCGA-02-0079-10A-01W C C A C C C Unknown Valid Somatic nonsense Y424* Y424* -RB1 5925 broad.mit.edu 36.1 13 47937375 47937375 + nonsense SNP C T T TCGA-02-0007 TCGA-02-0007-10A-01W-0189-08 C C T T C C U Valid Somatic nonsense nonsense nonsense -RB1 5925 broad.mit.edu 36.1 13 47925250 47925250 + splice SNP T C T TCGA-02-0052 TCGA-02-0052-10A-01W-0189-08 T T T C T T U Valid Somatic splice splice splice -RB1 5925 broad.mit.edu 36.1 13 47931824 47931824 + splice SNP G G T TCGA-06-0184 TCGA-06-0184-10B-01W-0254-08 G G G T G G U Valid Somatic splice splice splice -RB1 5925 broad.mit.edu 36.1 13 47945496 47945496 + splice SNP G C G TCGA-06-0206 TCGA-06-0206-10A-01W-0255-08 G G C G G G U Valid Somatic splice splice splice -RB1 5925 hgsc.bcm.edu 36 13 47925250 47925250 + splice SNP T T C novel unknown TCGA-02-0052 TCGA-02-0052-10A-01W T T C T T T Unknown Valid Somatic splice splice splice -RB1 5925 hgsc.bcm.edu 36 13 47931824 47931824 + splice SNP G G T novel unknown TCGA-06-0184 TCGA-06-0184-10B-01W G G G T G G Unknown Valid Somatic splice splice splice -RB1 5925 hgsc.bcm.edu 36 13 47945496 47945496 + splice SNP G G C novel unknown TCGA-06-0206 TCGA-06-0206-10A-01W G G C G G G Unknown Valid Somatic splice splice splice -RNASE4 6038 hgsc.bcm.edu 36 14 20237510 20237510 + missense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense G47D G47D M 1.08 http://mutationassessor.org?cm=var&var=14,20237510,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RNAS4_HUMAN&rb=30&re=147&var=G47D http://mutationassessor.org/pdb.php?prot=RNAS4_HUMAN&from=30&to=147&var=G47D -ROS1 6098 broad.mit.edu 36.1 6 117769074 117769074 + missense SNP C C T TCGA-02-0089 TCGA-02-0089-10A-01W-0206-08 C C T C C C U Valid Somatic missense V1666I V1666I L 0.205 http://mutationassessor.org/?cm=msa&ty=f&p=ROS_HUMAN&rb=1659&re=1741&var=V1666I -ROS1 6098 broad.mit.edu 36.1 6 117790458 117790458 + splice SNP C C T TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 C C T C C C U Valid Somatic splice splice splice -RPS6KA3 6197 hgsc.bcm.edu 36 X 20103288 20103288 + missense SNP A T T novel unknown TCGA-06-0157 TCGA-06-0157-10A-01W A A A T A A Unknown Valid Somatic missense L381H L381H M 1.425 http://mutationassessor.org?cm=var&var=X,20103288,A,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KS6A3_HUMAN&rb=350&re=389&var=L381H -RTN1 6252 broad.mit.edu 36.1 14 59263887 59263887 + missense SNP G A G TCGA-02-0021 TCGA-02-0021-10A-01W-0189-08 G G G A G G U Valid Somatic missense A423V A423V M 1.01 http://mutationassessor.org?cm=var&var=14,59263887,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RTN1_HUMAN&rb=271&re=579&var=A423V -RYR3 6263 broad.mit.edu 36.1 15 31710758 31710758 + missense SNP G A G TCGA-06-0126 TCGA-06-0126-10A-01W-0224-08 G G G A G G U Valid Somatic missense D947N D947N N -0.41 http://mutationassessor.org/?cm=msa&ty=f&p=RYR3_HUMAN&rb=913&re=991&var=D947N -SFRP1 6422 hgsc.bcm.edu 36 8 41285417 41285417 + missense SNP C C T novel Unknown TCGA-02-0047 TCGA-02-0047-10A-01W C C C T C C Unknown Valid Somatic missense C140Y C140Y H 3.37 http://mutationassessor.org?cm=var&var=8,41285417,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SFRP1_HUMAN&rb=58&re=167&var=C140Y http://mutationassessor.org/pdb.php?prot=SFRP1_HUMAN&from=58&to=167&var=C140Y -SHH 6469 hgsc.bcm.edu 36 7 155289053 155289053 + missense SNP C C T novel unknown TCGA-08-0390 TCGA-08-0390-11A-01W C C C T C C Unknown Valid Somatic missense G231S G231S H 2.6 http://mutationassessor.org?cm=var&var=7,155289053,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SHH_HUMAN&rb=187&re=448&var=G231S http://mutationassessor.org/pdb.php?prot=SHH_HUMAN&from=187&to=448&var=G231S -SHH 6469 hgsc.bcm.edu 36 7 155288984 155288984 + missense SNP C C T novel unknown TCGA-06-0124 TCGA-06-0124-10A-01W C C C T C C Unknown Valid Somatic missense V254M V254M M 1.195 http://mutationassessor.org?cm=var&var=7,155288984,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SHH_HUMAN&rb=187&re=448&var=V254M http://mutationassessor.org/pdb.php?prot=SHH_HUMAN&from=187&to=448&var=V254M -ST6GAL1 6480 hgsc.bcm.edu 36 3 188274654 188274654 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense P273L P273L L 0.655 http://mutationassessor.org?cm=var&var=3,188274654,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SIAT1_HUMAN&rb=136&re=392&var=P273L -ST6GAL1 6480 hgsc.bcm.edu 36 3 188274654 188274654 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense P273L P273L L 0.655 http://mutationassessor.org?cm=var&var=3,188274654,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SIAT1_HUMAN&rb=136&re=392&var=P273L -ST6GAL1 6480 hgsc.bcm.edu 36 3 188274654 188274654 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense P273L P273L L 0.655 http://mutationassessor.org?cm=var&var=3,188274654,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SIAT1_HUMAN&rb=136&re=392&var=P273L -ST6GAL1 6480 hgsc.bcm.edu 36 3 188274654 188274654 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense P273L P273L L 0.655 http://mutationassessor.org?cm=var&var=3,188274654,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SIAT1_HUMAN&rb=136&re=392&var=P273L -ST6GAL1 6480 hgsc.bcm.edu 36 3 188274654 188274654 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense P273L P273L L 0.655 http://mutationassessor.org?cm=var&var=3,188274654,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SIAT1_HUMAN&rb=136&re=392&var=P273L -ST6GAL1 6480 hgsc.bcm.edu 36 3 188274654 188274654 + missense SNP C C T novel unknown TCGA-06-0145 TCGA-06-0145-10A-01W C C C T C C Unknown Valid Somatic missense P273L P273L L 0.655 http://mutationassessor.org?cm=var&var=3,188274654,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SIAT1_HUMAN&rb=136&re=392&var=P273L -SLC2A2 6514 broad.mit.edu 36.1 3 172205794 172205794 + missense SNP C C T TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 C C C T C C U Valid Somatic missense A313T A313T L 0.85 http://mutationassessor.org?cm=var&var=3,172205794,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GTR2_HUMAN&rb=13&re=499&var=A313T -SLC16A1 6566 hgsc.bcm.edu 36 1 113266204 113266204 + missense SNP A A T novel unknown TCGA-08-0385 TCGA-08-0385-11A-01W A A A T A A Unknown Valid Somatic missense C98S C98S L 0.38 http://mutationassessor.org/?cm=msa&ty=f&p=MOT1_HUMAN&rb=22&re=406&var=C98S -SOX11 6664 broad.mit.edu 36.1 2 5751587 5751587 + missense SNP A A G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 A A G A A A U Valid Somatic missense D428G D428G M 1.585 http://mutationassessor.org?cm=var&var=2,5751587,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SOX11_HUMAN&rb=351&re=440&var=D428G -SOX11 6664 broad.mit.edu 36.1 2 5751538 5751538 + nonsense SNP G T T TCGA-06-0173 TCGA-06-0173-10B-01W-0254-08 nt nt G T G G U Valid Somatic nonsense E412* E412* -SPARC 6678 broad.mit.edu 36.1 5 151029489 151029489 + missense SNP G A G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 G G G A G G U Valid Somatic missense A127V A127V M 1.82 http://mutationassessor.org?cm=var&var=5,151029489,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SPRC_HUMAN&rb=95&re=149&var=A127V http://mutationassessor.org/pdb.php?prot=SPRC_HUMAN&from=95&to=149&var=A127V -SPN 6693 broad.mit.edu 36.1 16 29582896 29582896 + missense SNP C A C TCGA-08-0354 TCGA-08-0354-11A-01W-0318-08 C C C A C C U Valid Somatic missense P116T P116T L 0.345 http://mutationassessor.org/?cm=msa&ty=f&p=LEUK_HUMAN&rb=1&re=200&var=P116T -STAT1 6772 hgsc.bcm.edu 36 2 191571219 191571219 + missense SNP T T A novel unknown TCGA-06-0185 TCGA-06-0185-10B-01W T T A T T T Unknown Valid Somatic missense K201M K201M L 0.83 http://mutationassessor.org?cm=var&var=2,191571219,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=STAT1_HUMAN&rb=136&re=315&var=K201M http://mutationassessor.org/pdb.php?prot=STAT1_HUMAN&from=136&to=315&var=K201M -CDKL5 6792 broad.mit.edu 36.1 X 18574049 18574049 + splice SNP C C T TCGA-06-0137 TCGA-06-0137-10A-01W-0224-08 C C T C C C U Valid Somatic splice splice splice -SYP 6855 broad.mit.edu 36.1 X 48935116 48935116 + missense SNP C C T TCGA-06-0157 TCGA-06-0157-10A-01W-0254-08 C C C T C C U Valid Somatic missense V222M V222M M 1.255 http://mutationassessor.org?cm=var&var=X,48935116,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SYPH_HUMAN&rb=21&re=227&var=V222M -SYP 6855 broad.mit.edu 36.1 X 48935116 48935116 + missense SNP C T T TCGA-06-0157 TCGA-06-0157-10A-01W-0254-08 C C C T C C U Valid Somatic missense V222M V222M M 1.255 http://mutationassessor.org?cm=var&var=X,48935116,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SYPH_HUMAN&rb=21&re=227&var=V222M -TAF1 6872 hgsc.bcm.edu 36 X 70504111 70504111 + missense SNP G G A novel unknown TCGA-06-0213 TCGA-06-0213-10A-01W G G A G G G Unknown Valid Somatic missense G73E G73E M 1.57 http://mutationassessor.org?cm=var&var=X,70504111,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TAF1_HUMAN&rb=22&re=87&var=G73E -TAF1 6872 hgsc.bcm.edu 36 X 70591395 70591395 + missense SNP G G C novel unknown TCGA-06-0176 TCGA-06-0176-10A-01W G G C G G G Unknown Valid Somatic missense S1633T S1633T L 0.545 http://mutationassessor.org?cm=var&var=X,70591395,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TAF1_HUMAN&rb=1425&re=1872&var=S1633T -TCF12 6938 hgsc.bcm.edu 36 15 55330914 55330914 + splice SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic splice splice splice -TCF12 6938 hgsc.bcm.edu 36 15 55342601 55342601 + splice SNP G G C novel unknown TCGA-06-0128 TCGA-06-0128-10A-01W G G C G G G Unknown Valid Somatic splice splice splice -TEK 7010 hgsc.bcm.edu 36 9 27219172 27219172 + missense SNP C C T novel unknown TCGA-06-0184 TCGA-06-0184-10B-01W C C C T C C Unknown Valid Somatic missense T1106M T1106M L 0.95 http://mutationassessor.org/?cm=msa&ty=f&p=TIE2_HUMAN&rb=1001&re=1124&var=T1106M http://mutationassessor.org/pdb.php?prot=TIE2_HUMAN&from=1001&to=1124&var=T1106M -TEK 7010 hgsc.bcm.edu 36 9 27173463 27173463 + missense SNP A A C rs682632 byCluster;byFrequency;byHapMap TCGA-06-0178 TCGA-06-0178-10B-01W C C A C C C Unknown Valid Somatic missense Q346P Q346P N -0.675 http://mutationassessor.org/?cm=msa&ty=f&p=TIE2_HUMAN&rb=319&re=444&var=Q346P http://mutationassessor.org/pdb.php?prot=TIE2_HUMAN&from=319&to=444&var=Q346P -TEK 7010 hgsc.bcm.edu 36 9 27148007 27148007 + missense SNP T T A novel unknown TCGA-06-0126 TCGA-06-0126-10A-01W T T A T T T Unknown Valid Somatic missense missense missense -TEK 7010 hgsc.bcm.edu 36 9 27147923 27147923 + nonsense SNP G G A novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic nonsense W49* W49* -TFAP2C 7022 hgsc.bcm.edu 36 20 54645203 54645203 + missense SNP G A A novel Unknown TCGA-06-0122 TCGA-06-0122-10A-01W G G A A G G Unknown Valid Somatic missense M351I M351I M 1.43 http://mutationassessor.org?cm=var&var=20,54645203,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=AP2C_HUMAN&rb=220&re=428&var=M351I -TGFBR2 7048 broad.mit.edu 36.1 3 30666785 30666785 + missense SNP A A T TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 A A A T A A U Valid Somatic missense I95L I95L L 0.63 http://mutationassessor.org?cm=var&var=3,30666785,A,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TGFR2_HUMAN&rb=47&re=165&var=I95L http://mutationassessor.org/pdb.php?prot=TGFR2_HUMAN&from=47&to=165&var=I95L -THBS1 7057 hgsc.bcm.edu 36 15 37662069 37662069 + missense SNP G G A novel unknown TCGA-02-0007 TCGA-02-0007-10A-01W G G A G G G Unknown Valid Somatic missense G151S G151S M 1.15 http://mutationassessor.org?cm=var&var=15,37662069,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TSP1_HUMAN&rb=24&re=221&var=G151S http://mutationassessor.org/pdb.php?prot=TSP1_HUMAN&from=24&to=221&var=G151S -THBS1 7057 hgsc.bcm.edu 36 15 37663495 37663495 + missense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense L240F L240F L 0.52 http://mutationassessor.org/?cm=msa&ty=f&p=TSP1_HUMAN&rb=201&re=317&var=L240F -TIMP2 7077 hgsc.bcm.edu 36 17 74363373 74363373 + nonsense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic nonsense Q212* Q212* -TP53 7157 broad.mit.edu 36.1 17 7519128 7519128 + missense SNP C T T TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 C C T T C C U Valid Somatic missense C176Y C176Y H 2.765 http://mutationassessor.org?cm=var&var=17,7519128,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=C176Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=C176Y -TP53 7157 hgsc.bcm.edu 36 17 7519128 7519128 + missense SNP C T T novel Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense C176Y C176Y H 2.765 http://mutationassessor.org?cm=var&var=17,7519128,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=C176Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=C176Y -TP53 7157 hgsc.bcm.edu 36 17 7519128 7519128 + missense SNP C T T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense C176Y C176Y H 2.765 http://mutationassessor.org?cm=var&var=17,7519128,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=C176Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=C176Y -TP53 7157 broad.mit.edu 36.1 17 7519120 7519120 + missense SNP G A G TCGA-02-0089 TCGA-02-0089-10A-01W-0206-08 G G A G G G U Valid Somatic missense H179Y H179Y H 2.725 http://mutationassessor.org?cm=var&var=17,7519120,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H179Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H179Y -TP53 7157 broad.mit.edu 36.1 17 7519132 7519132 + missense SNP G C C TCGA-02-0011 TCGA-02-0011-10A-01W-0189-08 G G G C G G U Valid Somatic missense R175G R175G H 2.695 http://mutationassessor.org?cm=var&var=17,7519132,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R175G http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R175G -TP53 7157 hgsc.bcm.edu 36 17 7519132 7519132 + missense SNP G C C novel Unknown TCGA-02-0011 TCGA-02-0011-10A-01W G G C G G G Unknown Valid Somatic missense R175G R175G H 2.695 http://mutationassessor.org?cm=var&var=17,7519132,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R175G http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R175G -TP53 7157 hgsc.bcm.edu 36 17 7519132 7519132 + missense SNP G C C novel unknown TCGA-02-0011 TCGA-02-0011-10A-01W G G C G G G Unknown Valid Somatic missense R175G R175G H 2.695 http://mutationassessor.org?cm=var&var=17,7519132,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R175G http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R175G -TP53 7157 broad.mit.edu 36.1 17 7519131 7519131 + missense SNP C C T rs28934578 unknown TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 C C T C C C U Valid Somatic missense R175H R175H H 2.695 http://mutationassessor.org?cm=var&var=17,7519131,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R175H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R175H -TP53 7157 broad.mit.edu 36.1 17 7519131 7519131 + missense SNP C C T rs28934578 unknown TCGA-02-0037 TCGA-02-0037-10A-01W-0189-08 C C T C C C U Valid Somatic missense R175H R175H H 2.695 http://mutationassessor.org?cm=var&var=17,7519131,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R175H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R175H -TP53 7157 hgsc.bcm.edu 36 17 7519131 7519131 + missense SNP C C T rs28934578 unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense R175H R175H H 2.695 http://mutationassessor.org?cm=var&var=17,7519131,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R175H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R175H -TP53 7157 hgsc.bcm.edu 36 17 7519131 7519131 + missense SNP C C T rs28934578 unknown TCGA-02-0037 TCGA-02-0037-10A-01W C C C T C C Unknown Valid Somatic missense R175H R175H H 2.695 http://mutationassessor.org?cm=var&var=17,7519131,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R175H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R175H -TP53 7157 broad.mit.edu 36.1 17 7519182 7519182 + missense SNP C C T TCGA-06-0184 TCGA-06-0184-10B-01W-0254-08 C C T C C C U Valid Somatic missense R158H R158H H 2.675 http://mutationassessor.org?cm=var&var=17,7519182,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R158H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R158H -TP53 7157 hgsc.bcm.edu 36 17 7519182 7519182 + missense SNP C C T novel unknown TCGA-06-0130 TCGA-06-0130-10A-01W C C C T C C Unknown Valid Somatic missense R158H R158H H 2.675 http://mutationassessor.org?cm=var&var=17,7519182,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R158H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R158H -TP53 7157 hgsc.bcm.edu 36 17 7519182 7519182 + missense SNP C C T novel unknown TCGA-06-0184 TCGA-06-0184-10B-01W C C C T C C Unknown Valid Somatic missense R158H R158H H 2.675 http://mutationassessor.org?cm=var&var=17,7519182,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R158H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R158H -TP53 7157 broad.mit.edu 36.1 17 7519137 7519137 + missense SNP A A C TCGA-02-0048 TCGA-02-0048-10A-01W-0318-08 A A C A A A U Valid Somatic missense V173G V173G H 2.62 http://mutationassessor.org?cm=var&var=17,7519137,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V173G http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V173G -TP53 7157 hgsc.bcm.edu 36 17 7519137 7519137 + missense SNP A A C novel unknown TCGA-02-0048 TCGA-02-0048-10A-01W A A A C A A Unknown Valid Somatic missense V173G V173G H 2.62 http://mutationassessor.org?cm=var&var=17,7519137,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V173G http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V173G -TP53 7157 broad.mit.edu 36.1 17 7517821 7517821 + missense SNP T G T TCGA-06-0195 TCGA-06-0195-10A-01W-0254-08 T T G T T T U Valid Somatic missense D281A D281A H 2.61 http://mutationassessor.org?cm=var&var=17,7517821,T,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=D281A http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=D281A -TP53 7157 hgsc.bcm.edu 36 17 7517821 7517821 + missense SNP T T G novel unknown TCGA-06-0195 TCGA-06-0195-10A-01W T T G T T T Unknown Valid Somatic missense D281A D281A H 2.61 http://mutationassessor.org?cm=var&var=17,7517821,T,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=D281A http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=D281A -TP53 7157 broad.mit.edu 36.1 17 7517867 7517867 + missense SNP C C T TCGA-06-0195 TCGA-06-0195-10A-01W-0254-08 C C T C C C U Valid Somatic missense G266R G266R H 2.585 http://mutationassessor.org?cm=var&var=17,7517867,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G266R http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G266R -TP53 7157 broad.mit.edu 36.1 17 7518928 7518928 + missense SNP C C T TCGA-02-0055 TCGA-02-0055-10A-01W-0189-08 C C C T C C U Valid Somatic missense V216M V216M H 2.585 http://mutationassessor.org?cm=var&var=17,7518928,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V216M http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V216M -TP53 7157 broad.mit.edu 36.1 17 7518928 7518928 + missense SNP C C T TCGA-08-0359 TCGA-08-0359-11A-01W-0318-08 C C C T C C U Valid Somatic missense V216M V216M H 2.585 http://mutationassessor.org?cm=var&var=17,7518928,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V216M http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V216M -TP53 7157 hgsc.bcm.edu 36 17 7518928 7518928 + missense SNP C C T novel unknown TCGA-02-0055 TCGA-02-0055-10A-01W C C C T C C Unknown Valid Somatic missense V216M V216M H 2.585 http://mutationassessor.org?cm=var&var=17,7518928,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V216M http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V216M -TP53 7157 hgsc.bcm.edu 36 17 7518928 7518928 + missense SNP C C T novel Unknown TCGA-08-0359 TCGA-08-0359-11A-01W C C C T C C Unknown Valid Somatic missense V216M V216M H 2.585 http://mutationassessor.org?cm=var&var=17,7518928,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V216M http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V216M -TP53 7157 genome.wustl.edu 36 17 7517831 7517831 + missense SNP G A G Unknown Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G G A G G Valid Valid Somatic missense P278S P278S H 2.55 http://mutationassessor.org?cm=var&var=17,7517831,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=P278S http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=P278S -TP53 7157 hgsc.bcm.edu 36 17 7517830 7517830 + missense SNP G G C novel unknown TCGA-02-0001 TCGA-02-0001-10A-01W G G C G G G Unknown Valid Somatic missense P278R P278R H 2.55 http://mutationassessor.org?cm=var&var=17,7517830,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=P278R http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=P278R -TP53 7157 hgsc.bcm.edu 36 17 7517831 7517831 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense P278S P278S H 2.55 http://mutationassessor.org?cm=var&var=17,7517831,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=P278S http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=P278S -TP53 7157 broad.mit.edu 36.1 17 7519267 7519267 + missense SNP G A G TCGA-02-0075 TCGA-02-0075-10A-01W-0206-08 G G G A G G U Valid Somatic missense L130F L130F H 2.45 http://mutationassessor.org?cm=var&var=17,7519267,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=L130F http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=L130F -TP53 7157 hgsc.bcm.edu 36 17 7519267 7519267 + missense SNP G G A novel unknown TCGA-02-0075 TCGA-02-0075-10A-01W G G A G G G Unknown Valid Somatic missense L130F L130F H 2.45 http://mutationassessor.org?cm=var&var=17,7519267,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=L130F http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=L130F -TP53 7157 hgsc.bcm.edu 36 17 7519266 7519266 + missense SNP A A C novel unknown TCGA-08-0389 TCGA-08-0389-11A-01W A A A C A A Unknown Valid Somatic missense L130R L130R H 2.45 http://mutationassessor.org?cm=var&var=17,7519266,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=L130R http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=L130R -TP53 7157 broad.mit.edu 36.1 17 7518272 7518272 + missense SNP C C G TCGA-06-0150 TCGA-06-0150-10A-01W-0254-08 C C G C C C U Valid Somatic missense G245A G245A H 2.385 http://mutationassessor.org?cm=var&var=17,7518272,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G245A http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G245A -TP53 7157 hgsc.bcm.edu 36 17 7520098 7520098 + missense SNP C C G novel unknown TCGA-02-0025 TCGA-02-0025-10A-01W C C C G C C Unknown Valid Somatic missense G105A G105A H 2.345 http://mutationassessor.org?cm=var&var=17,7520098,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G105A http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G105A -TP53 7157 hgsc.bcm.edu 36 17 7520099 7520099 + missense SNP C C A novel unknown TCGA-08-0353 TCGA-08-0353-11A-01W C C A C C C Unknown Valid Somatic missense G105C G105C H 2.345 http://mutationassessor.org?cm=var&var=17,7520099,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G105C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G105C -TP53 7157 broad.mit.edu 36.1 17 7517846 7517846 + missense SNP G A G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 G G G A G G U Valid Somatic missense R273C R273C H 2.325 http://mutationassessor.org?cm=var&var=17,7517846,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R273C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R273C -TP53 7157 broad.mit.edu 36.1 17 7517846 7517846 + missense SNP G A A TCGA-02-0080 TCGA-02-0080-10A-01W-0206-08 G G A A G G U Valid Somatic missense R273C R273C H 2.325 http://mutationassessor.org?cm=var&var=17,7517846,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R273C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R273C -TP53 7157 broad.mit.edu 36.1 17 7517846 7517846 + missense SNP G A G TCGA-02-0084 TCGA-02-0084-10A-01W-0323-08 nt nt A G G G U Valid Somatic missense R273C R273C H 2.325 http://mutationassessor.org?cm=var&var=17,7517846,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R273C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R273C -TP53 7157 broad.mit.edu 36.1 17 7517846 7517846 + missense SNP G A G TCGA-08-0373 TCGA-08-0373-11A-01W-0323-08 G G A G G G U Valid Somatic missense R273C R273C H 2.325 http://mutationassessor.org?cm=var&var=17,7517846,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R273C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R273C -TP53 7157 hgsc.bcm.edu 36 17 7517846 7517846 + missense SNP G G A novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G A G G G Unknown Valid Somatic missense R273C R273C H 2.325 http://mutationassessor.org?cm=var&var=17,7517846,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R273C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R273C -TP53 7157 hgsc.bcm.edu 36 17 7517846 7517846 + missense SNP G A A novel unknown TCGA-02-0080 TCGA-02-0080-10A-01W G G A G G G Unknown Valid Somatic missense R273C R273C H 2.325 http://mutationassessor.org?cm=var&var=17,7517846,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R273C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R273C -TP53 7157 hgsc.bcm.edu 36 17 7517845 7517845 + missense SNP C C T rs28934576 unknown TCGA-06-0206 TCGA-06-0206-10A-01W C C C T C C Unknown Valid Somatic missense R273H R273H H 2.325 http://mutationassessor.org?cm=var&var=17,7517845,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R273H http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R273H -TP53 7157 hgsc.bcm.edu 36 17 7518263 7518263 + missense SNP C C T rs11540652 byHapMap TCGA-02-0033 TCGA-02-0033-10A-01W C C C T C C Unknown Valid Somatic missense R248Q R248Q H 2.31 http://mutationassessor.org?cm=var&var=17,7518263,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R248Q http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R248Q -TP53 7157 hgsc.bcm.edu 36 17 7518263 7518263 + missense SNP C C T rs11540652 byHapMap TCGA-06-0241 TCGA-06-0241-10A-01W C C C T C C Unknown Valid Somatic missense R248Q R248Q H 2.31 http://mutationassessor.org?cm=var&var=17,7518263,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R248Q http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R248Q -TP53 7157 broad.mit.edu 36.1 17 7519126 7519126 + missense SNP G A G TCGA-02-0046 TCGA-02-0046-10A-01W-0189-08 G G A G G G U Valid Somatic missense P177S P177S H 2.29 http://mutationassessor.org?cm=var&var=17,7519126,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=P177S http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=P177S -TP53 7157 hgsc.bcm.edu 36 17 7519126 7519126 + missense SNP G G A novel unknown TCGA-02-0046 TCGA-02-0046-10A-01W G G A G G G Unknown Valid Somatic missense P177S P177S H 2.29 http://mutationassessor.org?cm=var&var=17,7519126,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=P177S http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=P177S -TP53 7157 hgsc.bcm.edu 36 17 7518234 7518234 + missense SNP C C G novel unknown TCGA-02-0034 TCGA-02-0034-10A-01W C C C G C C Unknown Valid Somatic missense E258Q E258Q H 2.24 http://mutationassessor.org?cm=var&var=17,7518234,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=E258Q http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=E258Q -TP53 7157 broad.mit.edu 36.1 17 7518997 7518997 + missense SNP G A A TCGA-08-0245 TCGA-08-0245-11A-01W-0318-08 G G A G G G U Valid Somatic missense H193Y H193Y H 2.2 http://mutationassessor.org?cm=var&var=17,7518997,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H193Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H193Y -TP53 7157 hgsc.bcm.edu 36 17 7518997 7518997 + missense SNP G A A novel Unknown TCGA-08-0245 TCGA-08-0245-11A-01W G G A G G G Unknown Valid Somatic missense H193Y H193Y H 2.2 http://mutationassessor.org?cm=var&var=17,7518997,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H193Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H193Y -TP53 7157 hgsc.bcm.edu 36 17 7518997 7518997 + missense SNP G A A novel unknown TCGA-08-0245 TCGA-08-0245-11A-01W G G A G G G Unknown Valid Somatic missense H193Y H193Y H 2.2 http://mutationassessor.org?cm=var&var=17,7518997,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H193Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H193Y -TP53 7157 broad.mit.edu 36.1 17 7517849 7517849 + missense SNP C C T TCGA-02-0058 TCGA-02-0058-10A-01W-0189-08 C C T C C C U Valid Somatic missense V272M V272M H 2.195 http://mutationassessor.org?cm=var&var=17,7517849,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V272M http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V272M -TP53 7157 hgsc.bcm.edu 36 17 7517849 7517849 + missense SNP C C T novel unknown TCGA-02-0058 TCGA-02-0058-10A-01W C C C T C C Unknown Valid Somatic missense V272M V272M H 2.195 http://mutationassessor.org?cm=var&var=17,7517849,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=V272M http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=V272M -TP53 7157 broad.mit.edu 36.1 17 7518275 7518275 + missense SNP C C T rs28934572 unknown TCGA-02-0026 TCGA-02-0026-10A-01W-0318-08 C C T C C C U Valid Somatic missense G244D G244D H 2.1 http://mutationassessor.org?cm=var&var=17,7518275,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G244D http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G244D -TP53 7157 broad.mit.edu 36.1 17 7518990 7518990 + missense SNP A A G TCGA-06-0237 TCGA-06-0237-10A-01W-0255-08 A A G A A A U Valid Somatic missense I195T I195T H 2.08 http://mutationassessor.org?cm=var&var=17,7518990,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=I195T http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=I195T -TP53 7157 hgsc.bcm.edu 36 17 7518990 7518990 + missense SNP A A G novel unknown TCGA-06-0237 TCGA-06-0237-10A-01W A A A G A A Unknown Valid Somatic missense I195T I195T H 2.08 http://mutationassessor.org?cm=var&var=17,7518990,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=I195T http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=I195T -TP53 7157 broad.mit.edu 36.1 17 7518915 7518915 + missense SNP T C T TCGA-06-0644 TCGA-06-0644-10A-01W-0323-08 T T C T T T U Valid Somatic missense Y220C Y220C H 2.06 http://mutationassessor.org?cm=var&var=17,7518915,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=Y220C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=Y220C -TP53 7157 broad.mit.edu 36.1 17 7518915 7518915 + missense SNP T C T TCGA-08-0351 TCGA-08-0351-11A-01W-0318-08 nt nt C T T T U Valid Somatic missense Y220C Y220C H 2.06 http://mutationassessor.org?cm=var&var=17,7518915,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=Y220C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=Y220C -TP53 7157 hgsc.bcm.edu 36 17 7518915 7518915 + missense SNP T T C novel unknown TCGA-08-0351 TCGA-08-0351-11A-01W T T C T T T Unknown Valid Somatic missense Y220C Y220C H 2.06 http://mutationassessor.org?cm=var&var=17,7518915,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=Y220C http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=Y220C -TP53 7157 hgsc.bcm.edu 36 17 7519251 7519251 + missense SNP C C T novel unknown TCGA-02-0034 TCGA-02-0034-10A-01W C C C T C C Unknown Valid Somatic missense C135Y C135Y H 2.01 http://mutationassessor.org?cm=var&var=17,7519251,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=C135Y http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=C135Y -TP53 7157 broad.mit.edu 36.1 17 7517819 7517819 + missense SNP G A G rs28934574 unknown TCGA-02-0003 TCGA-02-0003-10A-01W-0189-08 G G A G G G U Valid Somatic missense R282W R282W M 1.945 http://mutationassessor.org?cm=var&var=17,7517819,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R282W http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R282W -TP53 7157 broad.mit.edu 36.1 17 7517819 7517819 + missense SNP G A G rs28934574 unknown TCGA-02-0004 TCGA-02-0004-10A-01W-0318-08 G G A G G G U Valid Somatic missense R282W R282W M 1.945 http://mutationassessor.org?cm=var&var=17,7517819,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R282W http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R282W -TP53 7157 broad.mit.edu 36.1 17 7517819 7517819 + missense SNP G A G rs28934574 unknown TCGA-02-0046 TCGA-02-0046-10A-01W-0189-08 G G A G G G U Valid Somatic missense R282W R282W M 1.945 http://mutationassessor.org?cm=var&var=17,7517819,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R282W http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R282W -TP53 7157 hgsc.bcm.edu 36 17 7517819 7517819 + missense SNP G G A rs28934574 unknown TCGA-02-0003 TCGA-02-0003-10A-01W G G A G G G Unknown Valid Somatic missense R282W R282W M 1.945 http://mutationassessor.org?cm=var&var=17,7517819,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R282W http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R282W -TP53 7157 hgsc.bcm.edu 36 17 7517819 7517819 + missense SNP G G A rs28934574 unknown TCGA-02-0046 TCGA-02-0046-10A-01W G G A G G G Unknown Valid Somatic missense R282W R282W M 1.945 http://mutationassessor.org?cm=var&var=17,7517819,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R282W http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R282W -TP53 7157 broad.mit.edu 36.1 17 7517854 7517854 + missense SNP A A G TCGA-06-0197 TCGA-06-0197-10A-01W-0254-08 A A A G A A U Valid Somatic missense F270S F270S M 1.915 http://mutationassessor.org?cm=var&var=17,7517854,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=F270S http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=F270S -TP53 7157 broad.mit.edu 36.1 17 7518933 7518933 + missense SNP T C T TCGA-06-0159 TCGA-06-0159-10A-01W-0254-08 T T C T T T U Valid Somatic missense H214R H214R M 1.895 http://mutationassessor.org?cm=var&var=17,7518933,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H214R http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H214R -TP53 7157 broad.mit.edu 36.1 17 7517836 7517836 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense A276V A276V M 1.885 http://mutationassessor.org?cm=var&var=17,7517836,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=A276V http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=A276V -TP53 7157 hgsc.bcm.edu 36 17 7517836 7517836 + missense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense A276V A276V M 1.885 http://mutationassessor.org?cm=var&var=17,7517836,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=A276V http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=A276V -TP53 7157 broad.mit.edu 36.1 17 7518273 7518273 + missense SNP C C T rs28934575 unknown TCGA-02-0048 TCGA-02-0048-10A-01W-0318-08 C C C T C C U Valid Somatic missense G245S G245S M 1.875 http://mutationassessor.org?cm=var&var=17,7518273,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G245S http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G245S -TP53 7157 broad.mit.edu 36.1 17 7518273 7518273 + missense SNP C C T rs28934575 unknown TCGA-06-0190 TCGA-06-0190-10B-01W-0254-08 C C C T C C U Valid Somatic missense G245S G245S M 1.875 http://mutationassessor.org?cm=var&var=17,7518273,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G245S http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G245S -TP53 7157 hgsc.bcm.edu 36 17 7518273 7518273 + missense SNP C C T rs28934575 unknown TCGA-06-0190 TCGA-06-0190-10B-01W C C C T C C Unknown Valid Somatic missense G245S G245S M 1.875 http://mutationassessor.org?cm=var&var=17,7518273,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G245S http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G245S -TP53 7157 broad.mit.edu 36.1 17 7519233 7519233 + missense SNP C A C TCGA-08-0359 TCGA-08-0359-11A-01W-0318-08 C C C A C C U Valid Somatic missense C141F C141F M 1.82 http://mutationassessor.org?cm=var&var=17,7519233,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=C141F http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=C141F -TP53 7157 hgsc.bcm.edu 36 17 7519233 7519233 + missense SNP C C A novel unknown TCGA-08-0359 TCGA-08-0359-11A-01W C C A C C C Unknown Valid Somatic missense C141F C141F M 1.82 http://mutationassessor.org?cm=var&var=17,7519233,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=C141F http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=C141F -TP53 7157 broad.mit.edu 36.1 17 7519165 7519165 + missense SNP T C T TCGA-12-0619 TCGA-12-0619-10A-01W-0323-08 T T C T T T U Valid Somatic missense K164E K164E M 1.765 http://mutationassessor.org?cm=var&var=17,7519165,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=K164E http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=K164E -TP53 7157 hgsc.bcm.edu 36 17 7519165 7519165 + missense SNP T T C novel unknown TCGA-12-0619 TCGA-12-0619-10A-01W T T C T T T Unknown Valid Somatic missense K164E K164E M 1.765 http://mutationassessor.org?cm=var&var=17,7519165,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=K164E http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=K164E -TP53 7157 broad.mit.edu 36.1 17 7519121 7519121 + missense SNP G G T TCGA-02-0003 TCGA-02-0003-10A-01W-0189-08 G G G T G G U Valid Somatic missense H178Q H178Q M 1.725 http://mutationassessor.org?cm=var&var=17,7519121,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H178Q http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H178Q -TP53 7157 hgsc.bcm.edu 36 17 7519121 7519121 + missense SNP G G T novel Unknown TCGA-02-0003 TCGA-02-0003-10A-01W G G G T G G Unknown Valid Somatic missense H178Q H178Q M 1.725 http://mutationassessor.org?cm=var&var=17,7519121,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H178Q http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H178Q -TP53 7157 hgsc.bcm.edu 36 17 7519121 7519121 + missense SNP G G T novel unknown TCGA-02-0003 TCGA-02-0003-10A-01W G G G T G G Unknown Valid Somatic missense H178Q H178Q M 1.725 http://mutationassessor.org?cm=var&var=17,7519121,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=H178Q http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=H178Q -TP53 7157 broad.mit.edu 36.1 17 7518303 7518303 + missense SNP T C C TCGA-02-0074 TCGA-02-0074-10A-01W-0206-08 T T C C T T U Valid Somatic missense N235D N235D M 1.705 http://mutationassessor.org?cm=var&var=17,7518303,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=N235D http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=N235D -TP53 7157 hgsc.bcm.edu 36 17 7518303 7518303 + missense SNP T C C novel unknown TCGA-02-0074 TCGA-02-0074-10A-01W T T C T T T Unknown Valid Somatic missense N235D N235D M 1.705 http://mutationassessor.org?cm=var&var=17,7518303,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=N235D http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=N235D -TP53 7157 broad.mit.edu 36.1 17 7514713 7514713 + missense SNP C C T TCGA-08-0373 TCGA-08-0373-11A-01W-0323-08 C C T C C C U Valid Somatic missense A347T A347T M 1.58 http://mutationassessor.org?cm=var&var=17,7514713,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=318&re=359&var=A347T http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=318&to=359&var=A347T -TP53 7157 broad.mit.edu 36.1 17 7519188 7519188 + missense SNP C C G TCGA-02-0084 TCGA-02-0084-10A-01W-0323-08 C C G C C C U Valid Somatic missense R156P R156P M 1.575 http://mutationassessor.org?cm=var&var=17,7519188,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R156P http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R156P -TP53 7157 hgsc.bcm.edu 36 17 7519188 7519188 + missense SNP C C G novel unknown TCGA-02-0084 TCGA-02-0084-10A-01W C C C G C C Unknown Valid Somatic missense R156P R156P M 1.575 http://mutationassessor.org?cm=var&var=17,7519188,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=R156P http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=R156P -TP53 7157 hgsc.bcm.edu 36 17 7517651 7517651 + missense SNP G G A novel unknown TCGA-06-0188 TCGA-06-0188-10B-01W G G A G G G Unknown Valid Somatic missense A307V A307V M 1.415 http://mutationassessor.org?cm=var&var=17,7517651,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=201&re=393&var=A307V -TP53 7157 broad.mit.edu 36.1 17 7519257 7519257 + missense SNP A A C rs28934873 unknown TCGA-08-0360 TCGA-08-0360-11A-01W-0318-08 nt nt C A A A U Valid Somatic missense M133R M133R M 1.33 http://mutationassessor.org?cm=var&var=17,7519257,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=M133R http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=M133R -TP53 7157 hgsc.bcm.edu 36 17 7519257 7519257 + missense SNP A A C novel unknown TCGA-08-0360 TCGA-08-0360-11A-01W A A A C A A Unknown Valid Somatic missense M133R M133R M 1.33 http://mutationassessor.org?cm=var&var=17,7519257,A,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=M133R http://mutationassessor.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=M133R -TP53 7157 genome.wustl.edu 36 17 7519237 7519238 + frameshift_del Del TC - - Unknown Unknown TCGA-06-0221 TCGA-06-0221-10A-01W TC TC TC - TC TC Valid Valid Somatic frameshift_del frameshift_del frameshift_del -TP53 7157 broad.mit.edu 36.1 17 7518937 7518937 + nonsense SNP G A G TCGA-02-0054 TCGA-02-0054-10A-01W-0189-08 G G G A G G U Valid Somatic nonsense R213* R213* -TP53 7157 hgsc.bcm.edu 36 17 7518937 7518937 + nonsense SNP G G A novel unknown TCGA-02-0054 TCGA-02-0054-10A-01W G G A G G G Unknown Valid Somatic nonsense R213* R213* -TP53 7157 broad.mit.edu 36.1 17 7514728 7514728 + nonsense SNP G A A TCGA-02-0024 TCGA-02-0024-10A-01W-0189-08 G G A A G G U Valid Somatic nonsense R342* R342* -TP53 7157 broad.mit.edu 36.1 17 7514728 7514728 + nonsense SNP G A G TCGA-02-0024 TCGA-02-0024-10A-01W-0189-08 G G A A G G U Valid Somatic nonsense R342* R342* -TP53 7157 hgsc.bcm.edu 36 17 7514728 7514728 + nonsense SNP G G A novel unknown TCGA-02-0024 TCGA-02-0024-10A-01W G G A A G G Unknown Valid Somatic nonsense R342* R342* -TP53 7157 hgsc.bcm.edu 36 17 7517652 7517652 + splice SNP C C T novel unknown TCGA-06-0188 TCGA-06-0188-10B-01W C C C T C C Unknown Valid Somatic splice splice splice -TPBG 7162 broad.mit.edu 36.1 6 83132625 83132625 + missense SNP A A G TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 A G G A A A U Valid Somatic missense R410G R410G L 0.975 http://mutationassessor.org?cm=var&var=6,83132625,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TPBG_HUMAN&rb=346&re=420&var=R410G -TRIP6 7205 broad.mit.edu 36.1 7 100306136 100306136 + missense SNP G C G TCGA-02-0046 TCGA-02-0046-10A-01W-0189-08 G G G C G G U Valid Somatic missense Q278H Q278H L 0.535 http://mutationassessor.org/?cm=msa&ty=f&p=TRIP6_HUMAN&rb=201&re=278&var=Q278H -UNG 7374 hgsc.bcm.edu 36 12 108019967 108019967 + missense SNP G G A novel Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense A34T A34T L 0.48 http://mutationassessor.org/?cm=msa&ty=f&p=UNG_HUMAN&rb=1&re=139&var=A34T -USF1 7391 hgsc.bcm.edu 36 1 159279079 159279079 + missense SNP C C T novel Unknown TCGA-02-0014 TCGA-02-0014-10A-01W C C C T C C Unknown Valid Somatic missense V22M V22M M 1.25 http://mutationassessor.org?cm=var&var=1,159279079,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=USF1_HUMAN&rb=1&re=199&var=V22M -VLDLR 7436 broad.mit.edu 36.1 9 2641922 2641922 + missense SNP G A G TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 G G A G G G U Valid Somatic missense G795E G795E M 1.375 http://mutationassessor.org?cm=var&var=9,2641922,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=VLDLR_HUMAN&rb=697&re=873&var=G795E -WNT2 7472 hgsc.bcm.edu 36 7 116705516 116705516 + missense SNP C C T novel unknown TCGA-02-0099 TCGA-02-0099-10A-01W C C C T C C Unknown Valid Somatic missense D338N D338N M 1.32 http://mutationassessor.org?cm=var&var=7,116705516,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=WNT2_HUMAN&rb=40&re=349&var=D338N -ZNF85 7639 hgsc.bcm.edu 36 19 20909595 20909595 + missense SNP G G A novel unknown TCGA-06-0195 TCGA-06-0195-10A-01W G G A G G G Unknown Valid Somatic missense missense missense -ST7 7982 broad.mit.edu 36.1 7 116546849 116546849 + splice SNP A A G TCGA-02-0021 TCGA-02-0021-10A-01W-0189-08 A A G A A A U Valid Somatic splice splice splice -TUSC3 7991 hgsc.bcm.edu 36 8 15564045 15564045 + missense SNP T T C novel unknown TCGA-06-0128 TCGA-06-0128-10A-01W T T C T T T Unknown Valid Somatic missense F193L F193L L 0.615 http://mutationassessor.org?cm=var&var=8,15564045,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TUSC3_HUMAN&rb=177&re=331&var=F193L -DGKD 8527 broad.mit.edu 36.1 2 233961724 233961724 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G A G G G U Valid Somatic missense R80Q R80Q L 0.515 http://mutationassessor.org/?cm=msa&ty=f&p=DGKD_HUMAN&rb=54&re=146&var=R80Q http://mutationassessor.org/pdb.php?prot=DGKD_HUMAN&from=54&to=146&var=R80Q -AOC3 8639 broad.mit.edu 36.1 17 38258247 38258247 + missense SNP G A G TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 G G A G G G U Valid Somatic missense G454D G454D M 1.355 http://mutationassessor.org?cm=var&var=17,38258247,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=AOC3_HUMAN&rb=313&re=724&var=G454D http://mutationassessor.org/pdb.php?prot=AOC3_HUMAN&from=313&to=724&var=G454D -AOC3 8639 broad.mit.edu 36.1 17 38258459 38258459 + missense SNP C C T TCGA-06-0209 TCGA-06-0209-10A-01W-0255-08 C C T C C C U Valid Somatic missense H525Y H525Y M 1.085 http://mutationassessor.org?cm=var&var=17,38258459,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=AOC3_HUMAN&rb=313&re=724&var=H525Y http://mutationassessor.org/pdb.php?prot=AOC3_HUMAN&from=313&to=724&var=H525Y -ADAM15 8751 hgsc.bcm.edu 36 1 153299877 153299877 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense G741D G741D L 0.345 http://mutationassessor.org?cm=var&var=1,153299877,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ADA15_HUMAN&rb=687&re=755&var=G741D -ADAM15 8751 hgsc.bcm.edu 36 1 153293320 153293320 + missense SNP G G A novel unknown TCGA-02-0023 TCGA-02-0023-10A-01W G G A G G G Unknown Valid Somatic missense G138E G138E http://mutationassessor.org?cm=var&var=1,153293320,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ADA15_HUMAN&rb=12&re=167&var=G138E -TNFRSF10A 8797 hgsc.bcm.edu 36 8 23105230 23105230 + missense SNP C C G novel Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C G C C Unknown Valid Somatic missense K443N K443N L 0.59 http://mutationassessor.org?cm=var&var=8,23105230,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TR10A_HUMAN&rb=367&re=448&var=K443N -TNFRSF10A 8797 hgsc.bcm.edu 36 8 23138330 23138330 + missense SNP G G A novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense P64S P64S L 0.12 http://mutationassessor.org/?cm=msa&ty=f&p=TR10A_HUMAN&rb=1&re=200&var=P64S -TNFRSF10A 8797 hgsc.bcm.edu 36 8 23138312 23138312 + missense SNP C C T novel Unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense A70T A70T L 0.065 http://mutationassessor.org/?cm=msa&ty=f&p=TR10A_HUMAN&rb=1&re=200&var=A70T -TRIM24 8805 hgsc.bcm.edu 36 7 137886376 137886376 + missense SNP G G A novel unknown TCGA-06-0171 TCGA-06-0171-10A-01W G G A G G G Unknown Valid Somatic missense R391H R391H L 0.975 http://mutationassessor.org?cm=var&var=7,137886376,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TIF1A_HUMAN&rb=261&re=419&var=R391H -IQGAP1 8826 hgsc.bcm.edu 36 15 88818012 88818012 + missense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense S804F S804F L 0.55 http://mutationassessor.org/?cm=msa&ty=f&p=IQGA1_HUMAN&rb=775&re=804&var=S804F -WISP1 8840 hgsc.bcm.edu 36 8 134306873 134306873 + nonsense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic nonsense W223* W223* -CDC123 8872 broad.mit.edu 36.1 10 12331616 12331616 + missense SNP G A G TCGA-06-0141 TCGA-06-0141-10A-01W-0224-08 G G G A G G U Valid Somatic missense E293K E293K M 1.215 http://mutationassessor.org?cm=var&var=10,12331616,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CD123_HUMAN&rb=14&re=316&var=E293K -MAP3K6 9064 broad.mit.edu 36.1 1 27555547 27555547 + missense SNP C C T TCGA-02-0028 TCGA-02-0028-10A-01W-0189-08 C C T C C C U Valid Somatic missense E1186K E1186K M 1.28 http://mutationassessor.org?cm=var&var=1,27555547,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=M3K6_HUMAN&rb=1107&re=1288&var=E1186K -IL1RL1 9173 hgsc.bcm.edu 36 2 102332064 102332064 + missense SNP T T C novel unknown TCGA-02-0007 TCGA-02-0007-10A-01W T T C T T T Unknown Valid Somatic missense I404T I404T L 0.27 http://mutationassessor.org/?cm=msa&ty=f&p=ILRL1_HUMAN&rb=379&re=534&var=I404T http://mutationassessor.org/pdb.php?prot=ILRL1_HUMAN&from=379&to=534&var=I404T -CRLF1 9244 broad.mit.edu 36.1 19 18571416 18571416 + missense SNP C C T TCGA-06-0168 TCGA-06-0168-10A-01W-0254-08 C C C T C C U Valid Somatic missense R119H R119H N 0 http://mutationassessor.org/?cm=msa&ty=f&p=CRLF1_HUMAN&rb=38&re=131&var=R119H -SLIT2 9353 broad.mit.edu 36.1 4 20156799 20156799 + missense SNP A A G TCGA-06-0128 TCGA-06-0128-10A-01W-0224-08 A A A G A A U Valid Somatic missense N775S N775S N -0.165 http://mutationassessor.org?cm=var&var=4,20156799,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SLIT2_HUMAN&rb=724&re=807&var=N775S http://mutationassessor.org/pdb.php?prot=SLIT2_HUMAN&from=724&to=807&var=N775S -NRXN3 9369 broad.mit.edu 36.1 14 79397758 79397758 + splice SNP G A G TCGA-02-0016 TCGA-02-0016-10A-01W-0318-08 G G G A G G U Valid Somatic splice splice splice -KIF3B 9371 hgsc.bcm.edu 36 20 30361377 30361377 + missense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense P46S P46S M 1.335 http://mutationassessor.org?cm=var&var=20,30361377,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KIF3B_HUMAN&rb=15&re=340&var=P46S http://mutationassessor.org/pdb.php?prot=KIF3B_HUMAN&from=15&to=340&var=P46S -ONECUT2 9480 broad.mit.edu 36.1 18 53294846 53294846 + missense SNP G A G TCGA-06-0171 TCGA-06-0171-10A-01W-0254-08 G G G A G G U Valid Somatic missense V451I V451I H 2.095 http://mutationassessor.org?cm=var&var=18,53294846,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ONEC2_HUMAN&rb=408&re=463&var=V451I http://mutationassessor.org/pdb.php?prot=ONEC2_HUMAN&from=408&to=463&var=V451I -GDF15 9518 hgsc.bcm.edu 36 19 18358024 18358024 + missense SNP G G G rs1059519 by2Hit2Allele;byCluster;byFrequency;byHapMap TCGA-06-0165 TCGA-06-0165-10A-01W G C G G C C Unknown Valid Somatic missense V9V V9V N 0 http://mutationassessor.org/?cm=msa&ty=f&p=GDF15_HUMAN&rb=1&re=200&var=V9V -BCAR1 9564 hgsc.bcm.edu 36 16 73821184 73821184 + missense SNP G G A novel Unknown TCGA-06-0176 TCGA-06-0176-10A-01W G G A G G G Unknown Valid Somatic missense A780V A780V M 1.51 http://mutationassessor.org?cm=var&var=16,73821184,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BCAR1_HUMAN&rb=648&re=865&var=A780V -BCAR1 9564 hgsc.bcm.edu 36 16 73821184 73821184 + missense SNP G G A novel unknown TCGA-06-0176 TCGA-06-0176-10A-01W G G A G G G Unknown Valid Somatic missense A780V A780V M 1.51 http://mutationassessor.org?cm=var&var=16,73821184,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BCAR1_HUMAN&rb=648&re=865&var=A780V -BCAR1 9564 hgsc.bcm.edu 36 16 73821401 73821401 + missense SNP C C T novel unknown TCGA-02-0099 TCGA-02-0099-10A-01W C C C T C C Unknown Valid Somatic missense E708K E708K M 1.17 http://mutationassessor.org?cm=var&var=16,73821401,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BCAR1_HUMAN&rb=648&re=865&var=E708K -CLOCK 9575 hgsc.bcm.edu 36 4 56019892 56019892 + missense SNP C C T novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C C T C C Unknown Valid Somatic missense R239H R239H M 1.25 http://mutationassessor.org?cm=var&var=4,56019892,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CLOCK_HUMAN&rb=201&re=400&var=R239H -CLOCK 9575 hgsc.bcm.edu 36 4 56003507 56003507 + missense SNP G G T novel unknown TCGA-06-0124 TCGA-06-0124-10A-01W G G G T G G Unknown Valid Somatic missense Q652K Q652K M 1.095 http://mutationassessor.org?cm=var&var=4,56003507,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CLOCK_HUMAN&rb=574&re=773&var=Q652K -MLL4 9757 broad.mit.edu 36.1 19 40903582 40903582 + missense SNP C A A TCGA-02-0057 TCGA-02-0057-10A-01W-0189-08 C C C A U Valid Somatic missense T498N T498N N 0 http://mutationassessor.org/?cm=msa&ty=f&p=MLL4_HUMAN&rb=448&re=547&var=T498N -MLL4 9757 broad.mit.edu 36.1 19 40908522 40908522 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense missense missense -MLL4 9757 broad.mit.edu 36.1 19 40916372 40916372 + missense SNP C C T TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 C C C T C C U Valid Somatic missense missense missense -ZC3H11A 9877 hgsc.bcm.edu 36 1 202084081 202084081 + splice SNP G G A novel unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G A G G G Unknown Valid Somatic splice splice splice -KLHL21 9903 hgsc.bcm.edu 36 1 6576172 6576172 + missense SNP C C T novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense R545Q R545Q L 0.655 http://mutationassessor.org?cm=var&var=1,6576172,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KLH21_HUMAN&rb=502&re=547&var=R545Q http://mutationassessor.org/pdb.php?prot=KLH21_HUMAN&from=502&to=547&var=R545Q -SLC12A6 9990 hgsc.bcm.edu 36 15 32334819 32334819 + missense SNP C C T novel unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C C T C C Unknown Valid Somatic missense C271Y C271Y M 1.46 http://mutationassessor.org?cm=var&var=15,32334819,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=S12A6_HUMAN&rb=190&re=384&var=C271Y -SLC12A6 9990 hgsc.bcm.edu 36 15 32334754 32334754 + splice SNP C C T novel unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C C T C C Unknown Valid Somatic splice splice splice -ABI1 10006 hgsc.bcm.edu 36 10 27106149 27106149 + missense SNP C C T novel unknown TCGA-02-0015 TCGA-02-0015-10A-01W C C C T C C Unknown Valid Somatic missense A105T A105T M 1.89 http://mutationassessor.org?cm=var&var=10,27106149,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ABI1_HUMAN&rb=93&re=171&var=A105T -CTDSP2 10106 hgsc.bcm.edu 36 12 56509566 56509566 + missense SNP G G A novel unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G A G G G Unknown Valid Somatic missense H49Y H49Y L 0.36 http://mutationassessor.org/?cm=msa&ty=f&p=CTDS2_HUMAN&rb=1&re=101&var=H49Y -SLC25A13 10165 broad.mit.edu 36.1 7 95676178 95676178 + missense SNP G A G TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 G G A G G G U Valid Somatic missense P126S P126S M 1.475 http://mutationassessor.org?cm=var&var=7,95676178,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CMC2_HUMAN&rb=125&re=157&var=P126S -TNK2 10188 broad.mit.edu 36.1 3 197106537 197106537 + missense SNP C C T TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 C C C T C C U Valid Somatic missense missense missense -TNK2 10188 broad.mit.edu 36.1 3 197096286 197096286 + nonsense SNP G A G TCGA-02-0043 TCGA-02-0043-10A-01W-0189-08 G G G A G G U Valid Somatic nonsense R84* R84* -TNK2 10188 broad.mit.edu 36.1 3 197098255 197098255 + nonsense SNP C C T TCGA-06-0189 TCGA-06-0189-10A-01W-0254-08 C C C T C C U Valid Somatic nonsense W75* W75* -TNK2 10188 broad.mit.edu 36.1 3 197098255 197098255 + nonsense SNP C T T TCGA-06-0189 TCGA-06-0189-10A-01W-0254-08 C C C T C C U Valid Somatic nonsense W75* W75* -ABCC4 10257 broad.mit.edu 36.1 13 94484895 94484895 + missense SNP C C T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C T T C C U Valid Somatic missense A1279T A1279T L 0.195 http://mutationassessor.org/?cm=msa&ty=f&p=MRP4_HUMAN&rb=1206&re=1325&var=A1279T -ABCC4 10257 broad.mit.edu 36.1 13 94613377 94613377 + missense SNP C C G TCGA-02-0037 TCGA-02-0037-10A-01W-0189-08 C C C G C C U Valid Somatic missense missense missense -IFITM3 10410 broad.mit.edu 36.1 11 310606 310606 + missense SNP G T T TCGA-02-0070 TCGA-02-0070-10A-01W-0318-08 G G G T G G U Valid Somatic missense P70T P70T L 0.85 http://mutationassessor.org?cm=var&var=11,310606,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IFM3_HUMAN&rb=41&re=122&var=P70T -IFITM3 10410 broad.mit.edu 36.1 11 310803 310803 + missense SNP G A A TCGA-02-0070 TCGA-02-0070-10A-01W-0318-08 G G A G G G U Valid Somatic missense T4I T4I L 0.5 http://mutationassessor.org/?cm=msa&ty=f&p=IFM3_HUMAN&rb=1&re=40&var=T4I -IFITM3 10410 broad.mit.edu 36.1 11 309855 309855 + missense SNP A C C TCGA-06-0143 TCGA-06-0143-10A-01W-0224-08 A A C A A A U Valid Somatic missense F129V F129V N -0.03 http://mutationassessor.org/?cm=msa&ty=f&p=IFM3_HUMAN&rb=93&re=133&var=F129V -LRRN2 10446 hgsc.bcm.edu 36 1 202854501 202854501 + missense SNP C C T novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C C T C C Unknown Valid Somatic missense E415K E415K L 0.82 http://mutationassessor.org?cm=var&var=1,202854501,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=LRRN2_HUMAN&rb=335&re=426&var=E415K http://mutationassessor.org/pdb.php?prot=LRRN2_HUMAN&from=335&to=426&var=E415K -CCT2 10576 hgsc.bcm.edu 36 12 68267987 68267987 + missense SNP G G C novel unknown TCGA-02-0099 TCGA-02-0099-10A-01W G G C G G G Unknown Valid Somatic missense R89S R89S M 1.4 http://mutationassessor.org?cm=var&var=12,68267987,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TCPB_HUMAN&rb=35&re=525&var=R89S http://mutationassessor.org/pdb.php?prot=TCPB_HUMAN&from=35&to=525&var=R89S -TRIM3 10612 broad.mit.edu 36.1 11 6434421 6434421 + missense SNP C C T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C T C C C U Valid Somatic missense G371S G371S M 1.42 http://mutationassessor.org?cm=var&var=11,6434421,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TRIM3_HUMAN&rb=319&re=415&var=G371S http://mutationassessor.org/pdb.php?prot=TRIM3_HUMAN&from=319&to=415&var=G371S -AVIL 10677 broad.mit.edu 36.1 12 56482213 56482213 + nonsense SNP C C T TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 C C C T C C U Valid Somatic nonsense W716* W716* -DLL3 10683 hgsc.bcm.edu 36 19 44681933 44681933 + missense SNP C C T novel unknown TCGA-06-0169 TCGA-06-0169-10A-01W C C C T C C Unknown Valid Somatic missense P111S P111S M 1.225 http://mutationassessor.org?cm=var&var=19,44681933,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DLL3_HUMAN&rb=95&re=213&var=P111S -DLL3 10683 hgsc.bcm.edu 36 19 44681912 44681912 + missense SNP C C T novel unknown TCGA-06-0169 TCGA-06-0169-10A-01W C C C T C C Unknown Valid Somatic missense P104S P104S L 0.67 http://mutationassessor.org?cm=var&var=19,44681912,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DLL3_HUMAN&rb=95&re=213&var=P104S -CHL1 10752 broad.mit.edu 36.1 3 366197 366197 + missense SNP C C T TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 C C C T C C U Valid Somatic missense A319V A319V L 0.715 http://mutationassessor.org/?cm=msa&ty=f&p=CHL1_HUMAN&rb=241&re=327&var=A319V http://mutationassessor.org/pdb.php?prot=CHL1_HUMAN&from=241&to=327&var=A319V -CHL1 10752 broad.mit.edu 36.1 3 357596 357596 + missense SNP A A G TCGA-02-0084 TCGA-02-0084-10A-01W-0323-08 nt nt A G A A U Valid Somatic missense I169V I169V L 0.475 http://mutationassessor.org/?cm=msa&ty=f&p=CHL1_HUMAN&rb=128&re=223&var=I169V http://mutationassessor.org/pdb.php?prot=CHL1_HUMAN&from=128&to=223&var=I169V -PRSS23 11098 hgsc.bcm.edu 36 11 86197189 86197189 + nonsense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic nonsense R286* R286* -CHEK2 11200 broad.mit.edu 36.1 22 27421840 27421840 + missense SNP T C T TCGA-02-0084 TCGA-02-0084-10A-01W-0323-08 T T C T T T U Valid Somatic missense K373E K373E M 1.71 http://mutationassessor.org?cm=var&var=22,27421840,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CHK2_HUMAN&rb=220&re=486&var=K373E http://mutationassessor.org/pdb.php?prot=CHK2_HUMAN&from=220&to=486&var=K373E -CHEK2 11200 broad.mit.edu 36.1 22 27413910 27413910 + missense SNP G A G TCGA-02-0069 TCGA-02-0069-10A-01W-0206-08 G G G A G G U Valid Somatic missense P536L P536L L 0.31 http://mutationassessor.org/?cm=msa&ty=f&p=CHK2_HUMAN&rb=401&re=543&var=P536L -CHEK2 11200 broad.mit.edu 36.1 22 27413910 27413910 + missense SNP G A G TCGA-02-0075 TCGA-02-0075-10A-01W-0206-08 G G G A G G U Valid Somatic missense P536L P536L L 0.31 http://mutationassessor.org/?cm=msa&ty=f&p=CHK2_HUMAN&rb=401&re=543&var=P536L -CHEK2 11200 broad.mit.edu 36.1 22 27413910 27413910 + missense SNP G A G TCGA-02-0115 TCGA-02-0115-10A-01W-0206-08 G G G A G G U Valid Somatic missense P536L P536L L 0.31 http://mutationassessor.org/?cm=msa&ty=f&p=CHK2_HUMAN&rb=401&re=543&var=P536L -CHEK2 11200 broad.mit.edu 36.1 22 27413910 27413910 + missense SNP G A G TCGA-06-0209 TCGA-06-0209-10A-01W-0255-08 G G G A G G U Valid Somatic missense P536L P536L L 0.31 http://mutationassessor.org/?cm=msa&ty=f&p=CHK2_HUMAN&rb=401&re=543&var=P536L -KLK8 11202 broad.mit.edu 36.1 19 56195600 56195600 + missense SNP G A G TCGA-02-0028 TCGA-02-0028-10A-01W-0189-08 G G A G G G U Valid Somatic missense P41L P41L H 2.15 http://mutationassessor.org?cm=var&var=19,56195600,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KLK8_HUMAN&rb=33&re=252&var=P41L http://mutationassessor.org/pdb.php?prot=KLK8_HUMAN&from=33&to=252&var=P41L -IRAK3 11213 broad.mit.edu 36.1 12 64925008 64925008 + missense SNP T C T TCGA-02-0085 TCGA-02-0085-10A-01W-0206-08 T T C T T T U Valid Somatic missense V367A V367A M 1.11 http://mutationassessor.org?cm=var&var=12,64925008,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=IRAK3_HUMAN&rb=165&re=443&var=V367A http://mutationassessor.org/pdb.php?prot=IRAK3_HUMAN&from=165&to=443&var=V367A -AKAP2 11217 broad.mit.edu 36.1 9 111938487 111938487 + missense SNP C A C TCGA-06-0210 TCGA-06-0210-10A-01W-0255-08 C C C A C C U Valid Somatic missense missense missense -AKAP2 11217 broad.mit.edu 36.1 9 111939141 111939141 + missense SNP G A G TCGA-02-0025 TCGA-02-0025-10A-01W-0318-08 G G G A G G U Valid Somatic missense missense missense -FKBP9 11328 broad.mit.edu 36.1 7 32980852 32980852 + missense SNP G A G rs2953555 unknown TCGA-02-0023 TCGA-02-0023-10A-01W-0318-08 G G A G G G U Valid Somatic missense R107H R107H H 2.925 http://mutationassessor.org?cm=var&var=7,32980852,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FKBP9_HUMAN&rb=45&re=139&var=R107H http://mutationassessor.org/pdb.php?prot=FKBP9_HUMAN&from=45&to=139&var=R107H -FKBP9 11328 broad.mit.edu 36.1 7 32980852 32980852 + missense SNP G A A rs2953555 unknown TCGA-02-0048 TCGA-02-0048-10A-01W-0318-08 G G A A G G U Valid Somatic missense R107H R107H H 2.925 http://mutationassessor.org?cm=var&var=7,32980852,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FKBP9_HUMAN&rb=45&re=139&var=R107H http://mutationassessor.org/pdb.php?prot=FKBP9_HUMAN&from=45&to=139&var=R107H -FKBP9 11328 broad.mit.edu 36.1 7 32980852 32980852 + missense SNP G A G rs2953555 unknown TCGA-02-0070 TCGA-02-0070-10A-01W-0318-08 G G A G G G U Valid Somatic missense R107H R107H H 2.925 http://mutationassessor.org?cm=var&var=7,32980852,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FKBP9_HUMAN&rb=45&re=139&var=R107H http://mutationassessor.org/pdb.php?prot=FKBP9_HUMAN&from=45&to=139&var=R107H -FKBP9 11328 broad.mit.edu 36.1 7 32980852 32980852 + missense SNP G A G rs2953555 unknown TCGA-08-0245 TCGA-08-0245-11A-01W-0318-08 G G A G G G U Valid Somatic missense R107H R107H H 2.925 http://mutationassessor.org?cm=var&var=7,32980852,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FKBP9_HUMAN&rb=45&re=139&var=R107H http://mutationassessor.org/pdb.php?prot=FKBP9_HUMAN&from=45&to=139&var=R107H -FKBP9 11328 broad.mit.edu 36.1 7 32980852 32980852 + missense SNP G A G rs2953555 unknown TCGA-08-0386 TCGA-08-0386-11A-01W-0323-08 A A A G A A U Valid Somatic missense R107H R107H H 2.925 http://mutationassessor.org?cm=var&var=7,32980852,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FKBP9_HUMAN&rb=45&re=139&var=R107H http://mutationassessor.org/pdb.php?prot=FKBP9_HUMAN&from=45&to=139&var=R107H -FKBP9 11328 broad.mit.edu 36.1 7 32980852 32980852 + missense SNP G A G rs2953555 unknown TCGA-12-0616 TCGA-12-0616-10A-01W-0323-08 G G A G G G U Valid Somatic missense R107H R107H H 2.925 http://mutationassessor.org?cm=var&var=7,32980852,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FKBP9_HUMAN&rb=45&re=139&var=R107H http://mutationassessor.org/pdb.php?prot=FKBP9_HUMAN&from=45&to=139&var=R107H -PDZD2 23037 broad.mit.edu 36.1 5 32124997 32124997 + missense SNP G A G TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 G G A G G G U Valid Somatic missense V1896I V1896I N 0 http://mutationassessor.org/?cm=msa&ty=f&p=PDZD2_HUMAN&rb=1363&re=2324&var=V1896I -SNX13 23161 hgsc.bcm.edu 36 7 17881916 17881916 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense P155S P155S L 0.375 http://mutationassessor.org?cm=var&var=7,17881916,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SNX13_HUMAN&rb=97&re=283&var=P155S -MAPK8IP3 23162 broad.mit.edu 36.1 16 1758607 1758607 + missense SNP G A A TCGA-06-0139 TCGA-06-0139-10A-01W-0224-08 G G A G G G U Valid Somatic missense G1290S G1290S H 2.04 http://mutationassessor.org?cm=var&var=16,1758607,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=JIP3_HUMAN&rb=961&re=1335&var=G1290S -SNF1LK2 23235 broad.mit.edu 36.1 11 111095932 111095932 + missense SNP G A A TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense missense missense -SNF1LK2 23235 broad.mit.edu 36.1 11 111095932 111095932 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense missense missense -SNF1LK2 23235 broad.mit.edu 36.1 11 111096956 111096956 + missense SNP C C T TCGA-06-0176 TCGA-06-0176-10A-01W-0254-08 C C T C C C U Valid Somatic missense missense missense -PHLPP 23239 broad.mit.edu 36.1 18 58790915 58790915 + missense SNP T C T TCGA-06-0176 TCGA-06-0176-10A-01W-0254-08 T T T C T T U Valid Somatic missense M1250T M1250T http://mutationassessor.org/?cm=msa&ty=f&p=PHLPP_HUMAN&rb=1174&re=1415&var=M1250T -SYNE1 23345 hgsc.bcm.edu 36 6 152569061 152569061 + missense SNP C C T novel unknown TCGA-02-0099 TCGA-02-0099-10A-01W C C C T C C Unknown Valid Somatic missense E7652K E7652K L 0.965 http://mutationassessor.org?cm=var&var=6,152569061,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SYNE1_HUMAN&rb=7454&re=7653&var=E7652K -SYNE1 23345 hgsc.bcm.edu 36 6 152762605 152762605 + missense SNP G G A novel Unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense T2359I T2359I L 0.865 http://mutationassessor.org?cm=var&var=6,152762605,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SYNE1_HUMAN&rb=2310&re=2509&var=T2359I -SYNE1 23345 hgsc.bcm.edu 36 6 152583692 152583692 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense A7280V A7280V L 0.55 http://mutationassessor.org/?cm=msa&ty=f&p=SYNE1_HUMAN&rb=7234&re=7351&var=A7280V -SYNE1 23345 hgsc.bcm.edu 36 6 152679811 152679811 + missense SNP C C T novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense A5526T A5526T L 0.385 http://mutationassessor.org/?cm=msa&ty=f&p=SYNE1_HUMAN&rb=5250&re=5547&var=A5526T -SYNE1 23345 hgsc.bcm.edu 36 6 152706954 152706954 + missense SNP C C A rs4645434 by2Hit2Allele;byCluster;byFrequency;byHapMap TCGA-06-0178 TCGA-06-0178-10B-01W C C A C C C Unknown Valid Somatic missense E4060D E4060D L 0.26 http://mutationassessor.org/?cm=msa&ty=f&p=SYNE1_HUMAN&rb=3920&re=4119&var=E4060D -SYNE1 23345 hgsc.bcm.edu 36 6 152619557 152619557 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense P6337S P6337S L 0.205 http://mutationassessor.org/?cm=msa&ty=f&p=SYNE1_HUMAN&rb=6236&re=6435&var=P6337S -SYNE1 23345 hgsc.bcm.edu 36 6 152796651 152796651 + missense SNP G G A novel unknown TCGA-02-0014 TCGA-02-0014-10A-01W G G A G G G Unknown Valid Somatic missense A1478V A1478V N 0 http://mutationassessor.org/?cm=msa&ty=f&p=SYNE1_HUMAN&rb=1401&re=1600&var=A1478V -SYNE1 23345 hgsc.bcm.edu 36 6 152716523 152716523 + missense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense missense missense -SYNE1 23345 hgsc.bcm.edu 36 6 152779723 152779723 + missense SNP C C T novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C C T C C Unknown Valid Somatic missense missense missense -SYNE1 23345 hgsc.bcm.edu 36 6 152671412 152671412 + nonsense SNP G G A novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G A G G G Unknown Valid Somatic nonsense Q5751* Q5751* -MYST4 23522 broad.mit.edu 36.1 10 76407199 76407199 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense E705K E705K L 0.69 http://mutationassessor.org?cm=var&var=10,76407199,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MYST4_HUMAN&rb=601&re=800&var=E705K -MYST4 23522 broad.mit.edu 36.1 10 76458537 76458537 + missense SNP G A G TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 G G G A G G U Valid Somatic missense A1317T A1317T L 0.55 http://mutationassessor.org?cm=var&var=10,76458537,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MYST4_HUMAN&rb=1275&re=1532&var=A1317T -MYST4 23522 broad.mit.edu 36.1 10 76459177 76459177 + missense SNP G A G TCGA-02-0043 TCGA-02-0043-10A-01W-0189-08 G G G A G G U Valid Somatic missense G1530E G1530E L 0.55 http://mutationassessor.org?cm=var&var=10,76459177,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MYST4_HUMAN&rb=1275&re=1532&var=G1530E -PRAME 23532 hgsc.bcm.edu 36 22 21229234 21229234 + missense SNP A A G rs2266988 by2Hit2Allele;byCluster;byFrequency;byHapMap;byOtherPop TCGA-02-0068 TCGA-02-0068-10A-01W A G G G A A Unknown Valid Somatic missense W7R W7R -PRAME 23532 hgsc.bcm.edu 36 22 21229234 21229234 + missense SNP A A A rs2266988 by2Hit2Allele;byCluster;byFrequency;byHapMap;byOtherPop TCGA-08-0353 TCGA-08-0353-11A-01W A G A G G G Unknown Valid Somatic missense missense missense -PRAME 23532 hgsc.bcm.edu 36 22 21229234 21229234 + missense SNP A A A rs2266988 by2Hit2Allele;byCluster;byFrequency;byHapMap;byOtherPop TCGA-12-0619 TCGA-12-0619-10A-01W G G A G G G Unknown Valid Somatic missense missense missense -MAPK8IP2 23542 broad.mit.edu 36.1 22 49395592 49395592 + missense SNP C T T TCGA-06-0176 TCGA-06-0176-10A-01W-0254-08 C C T C C C U Valid Somatic missense missense missense -LEMD3 23592 hgsc.bcm.edu 36 12 63851109 63851109 + missense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense G489E G489E L 0.805 http://mutationassessor.org?cm=var&var=12,63851109,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MAN1_HUMAN&rb=450&re=504&var=G489E -LEMD3 23592 hgsc.bcm.edu 36 12 63851030 63851030 + missense SNP T T C novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T C T T T Unknown Valid Somatic missense S463P S463P L 0.695 http://mutationassessor.org?cm=var&var=12,63851030,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MAN1_HUMAN&rb=450&re=504&var=S463P -LEMD3 23592 hgsc.bcm.edu 36 12 63849861 63849861 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense missense missense -BCL2L13 23786 hgsc.bcm.edu 36 22 16590158 16590158 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense G439D G439D L 0.695 http://mutationassessor.org?cm=var&var=22,16590158,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=B2L13_HUMAN&rb=211&re=484&var=G439D -SPDEF 25803 broad.mit.edu 36.1 6 34616933 34616933 + missense SNP G C G TCGA-06-0154 TCGA-06-0154-10A-01W-0254-08 G G G C G G U Valid Somatic missense P147R P147R H 2.525 http://mutationassessor.org?cm=var&var=6,34616933,G,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=SPDEF_HUMAN&rb=131&re=213&var=P147R http://mutationassessor.org/pdb.php?prot=SPDEF_HUMAN&from=131&to=213&var=P147R -PRKD2 25865 broad.mit.edu 36.1 19 51892838 51892838 + missense SNP C C T TCGA-02-0080 TCGA-02-0080-10A-01W-0206-08 C C C T C C U Valid Somatic missense D411N D411N M 1.725 http://mutationassessor.org?cm=var&var=19,51892838,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KPCD2_HUMAN&rb=398&re=507&var=D411N http://mutationassessor.org/pdb.php?prot=KPCD2_HUMAN&from=398&to=507&var=D411N -UPF2 26019 broad.mit.edu 36.1 10 12038348 12038348 + missense SNP C T T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C C T C C U Valid Somatic missense E851K E851K H 2.74 http://mutationassessor.org?cm=var&var=10,12038348,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RENT2_HUMAN&rb=773&re=986&var=E851K http://mutationassessor.org/pdb.php?prot=RENT2_HUMAN&from=773&to=986&var=E851K -UPF2 26019 broad.mit.edu 36.1 10 12061106 12061106 + missense SNP C A C TCGA-02-0084 TCGA-02-0084-10A-01W-0323-08 C C C A C C U Valid Somatic missense A637S A637S L 0.425 http://mutationassessor.org/?cm=msa&ty=f&p=RENT2_HUMAN&rb=570&re=758&var=A637S -TBK1 29110 broad.mit.edu 36.1 12 63175611 63175611 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense A535T A535T N -0.695 http://mutationassessor.org/?cm=msa&ty=f&p=TBK1_HUMAN&rb=401&re=600&var=A535T -NME7 29922 hgsc.bcm.edu 36 1 167534446 167534446 + missense SNP C C T novel Unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense G207D G207D H 3.24 http://mutationassessor.org?cm=var&var=1,167534446,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NDK7_HUMAN&rb=92&re=226&var=G207D http://mutationassessor.org/pdb.php?prot=NDK7_HUMAN&from=92&to=226&var=G207D -NME7 29922 hgsc.bcm.edu 36 1 167534446 167534446 + missense SNP C C T novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense G207D G207D H 3.24 http://mutationassessor.org?cm=var&var=1,167534446,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=NDK7_HUMAN&rb=92&re=226&var=G207D http://mutationassessor.org/pdb.php?prot=NDK7_HUMAN&from=92&to=226&var=G207D -GLTSCR2 29997 broad.mit.edu 36.1 19 52951764 52951764 + missense SNP C C T TCGA-08-0357 TCGA-08-0357-11A-01W-0318-08 C C T C C C U Valid Somatic missense R461C R461C L 0.895 http://mutationassessor.org?cm=var&var=19,52951764,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GSCR2_HUMAN&rb=447&re=478&var=R461C -PI15 51050 broad.mit.edu 36.1 8 75920181 75920181 + missense SNP G A A TCGA-02-0080 TCGA-02-0080-10A-01W-0206-08 G G A G G G U Valid Somatic missense A179T A179T H 2.07 http://mutationassessor.org?cm=var&var=8,75920181,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PI15_HUMAN&rb=71&re=211&var=A179T http://mutationassessor.org/pdb.php?prot=PI15_HUMAN&from=71&to=211&var=A179T -PI15 51050 broad.mit.edu 36.1 8 75920181 75920181 + missense SNP G A G TCGA-02-0080 TCGA-02-0080-10A-01W-0206-08 G G A G G G U Valid Somatic missense A179T A179T H 2.07 http://mutationassessor.org?cm=var&var=8,75920181,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PI15_HUMAN&rb=71&re=211&var=A179T http://mutationassessor.org/pdb.php?prot=PI15_HUMAN&from=71&to=211&var=A179T -PI15 51050 broad.mit.edu 36.1 8 75923999 75923999 + missense SNP T A T TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 T T T A T T U Valid Somatic missense C245S C245S M 1.905 http://mutationassessor.org?cm=var&var=8,75923999,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PI15_HUMAN&rb=201&re=258&var=C245S -ING4 51147 broad.mit.edu 36.1 12 6630758 6630758 + missense SNP C C T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C C T C C U Valid Somatic missense G235R G235R M 1.905 http://mutationassessor.org?cm=var&var=12,6630758,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ING4_HUMAN&rb=198&re=245&var=G235R http://mutationassessor.org/pdb.php?prot=ING4_HUMAN&from=198&to=245&var=G235R -ING4 51147 broad.mit.edu 36.1 12 6630758 6630758 + missense SNP C T T TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 C C C T C C U Valid Somatic missense G235R G235R M 1.905 http://mutationassessor.org?cm=var&var=12,6630758,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ING4_HUMAN&rb=198&re=245&var=G235R http://mutationassessor.org/pdb.php?prot=ING4_HUMAN&from=198&to=245&var=G235R -ING4 51147 broad.mit.edu 36.1 12 6630798 6630798 + nonsense SNP C C T TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 C C T C C C U Valid Somatic nonsense W221* W221* -TAOK3 51347 broad.mit.edu 36.1 12 117103657 117103657 + missense SNP G A A TCGA-02-0075 TCGA-02-0075-10A-01W-0206-08 G G A A G G U Valid Somatic missense R490C R490C M 1.225 http://mutationassessor.org?cm=var&var=12,117103657,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TAOK3_HUMAN&rb=478&re=677&var=R490C -TRIM33 51592 broad.mit.edu 36.1 1 114742087 114742087 + nonsense SNP T A T TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 nt nt T A T T U Valid Somatic nonsense K1057* K1057* -TMBIM4 51643 hgsc.bcm.edu 36 12 64818021 64818021 + missense SNP C C T novel unknown TCGA-02-0014 TCGA-02-0014-10A-01W C C C T C C Unknown Valid Somatic missense V235I V235I L 0.585 http://mutationassessor.org?cm=var&var=12,64818021,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TMBI4_HUMAN&rb=205&re=238&var=V235I -BCL11A 53335 broad.mit.edu 36.1 2 60541333 60541333 + missense SNP G A A TCGA-06-0176 TCGA-06-0176-10A-01W-0254-08 G G G A G G U Valid Somatic missense R740C R740C M 1.825 http://mutationassessor.org?cm=var&var=2,60541333,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BC11A_HUMAN&rb=601&re=800&var=R740C http://mutationassessor.org/pdb.php?prot=BC11A_HUMAN&from=601&to=800&var=R740C -BCL11A 53335 broad.mit.edu 36.1 2 60542986 60542986 + missense SNP C C T TCGA-02-0028 TCGA-02-0028-10A-01W-0189-08 C C T C C C U Valid Somatic missense A189T A189T M 1.33 http://mutationassessor.org?cm=var&var=2,60542986,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BC11A_HUMAN&rb=1&re=200&var=A189T -BCL11A 53335 broad.mit.edu 36.1 2 60542382 60542382 + missense SNP C T T TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 C C C T C C U Valid Somatic missense S390N S390N L 0.805 http://mutationassessor.org?cm=var&var=2,60542382,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BC11A_HUMAN&rb=378&re=399&var=S390N -BCL11A 53335 broad.mit.edu 36.1 2 60542638 60542638 + missense SNP G A G TCGA-02-0083 TCGA-02-0083-10A-01W-0206-08 G G G A G G U Valid Somatic missense P305S P305S L 0.315 http://mutationassessor.org/?cm=msa&ty=f&p=BC11A_HUMAN&rb=201&re=400&var=P305S -BCL11A 53335 broad.mit.edu 36.1 2 60542011 60542011 + missense SNP C C T TCGA-06-0133 TCGA-06-0133-10A-01W-0224-08 C C T C C C U Valid Somatic missense G514S G514S N -0.18 http://mutationassessor.org/?cm=msa&ty=f&p=BC11A_HUMAN&rb=401&re=600&var=G514S -MYO3A 53904 broad.mit.edu 36.1 10 26399055 26399055 + missense SNP C A C TCGA-02-0055 TCGA-02-0055-10A-01W-0189-08 C C C A C C U Valid Somatic missense L394I L394I L 0.89 http://mutationassessor.org?cm=var&var=10,26399055,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MYO3A_HUMAN&rb=340&re=1041&var=L394I http://mutationassessor.org/pdb.php?prot=MYO3A_HUMAN&from=340&to=1041&var=L394I -APBB1IP 54518 broad.mit.edu 36.1 10 26865111 26865111 + missense SNP C C T TCGA-06-0154 TCGA-06-0154-10A-01W-0254-08 C C C T C C U Valid Somatic missense R335W R335W H 2.25 http://mutationassessor.org?cm=var&var=10,26865111,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=AB1IP_HUMAN&rb=311&re=419&var=R335W http://mutationassessor.org/pdb.php?prot=AB1IP_HUMAN&from=311&to=419&var=R335W -C9orf11 54586 hgsc.bcm.edu 36 9 27284380 27284380 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense P75S P75S L 0.205 http://mutationassessor.org/?cm=msa&ty=f&p=AFAF_HUMAN&rb=1&re=200&var=P75S -BCAS3 54828 hgsc.bcm.edu 36 17 56447963 56447963 + missense SNP C C T novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C C T C C Unknown Valid Somatic missense P519L P519L M 1.1 http://mutationassessor.org?cm=var&var=17,56447963,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BCAS3_HUMAN&rb=401&re=600&var=P519L -BCAS3 54828 hgsc.bcm.edu 36 17 56240210 56240210 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense G156E G156E L 0.755 http://mutationassessor.org?cm=var&var=17,56240210,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=BCAS3_HUMAN&rb=1&re=200&var=G156E -ETNK2 55224 broad.mit.edu 36.1 1 202387575 202387575 + missense SNP G G G rs3737655 unknown TCGA-06-0190 TCGA-06-0190-10B-01W-0254-08 nt nt G T G G U Valid Somatic missense missense missense -FBXW7 55294 broad.mit.edu 36.1 4 153463593 153463593 + missense SNP C C T TCGA-02-0028 TCGA-02-0028-10A-01W-0189-08 C C C T C C U Valid Somatic missense V672M V672M M 1.955 http://mutationassessor.org?cm=var&var=4,153463593,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FBXW7_HUMAN&rb=601&re=707&var=V672M http://mutationassessor.org/pdb.php?prot=FBXW7_HUMAN&from=601&to=707&var=V672M -FBXW7 55294 broad.mit.edu 36.1 4 153471357 153471357 + nonsense SNP G A G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 G G G A G G U Valid Somatic nonsense R367* R367* -FBXW7 55294 hgsc.bcm.edu 36 4 153471357 153471357 + nonsense SNP G G A novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G A G G G Unknown Valid Somatic nonsense R367* R367* -DHTKD1 55526 broad.mit.edu 36.1 10 12199705 12199705 + missense SNP G A G TCGA-02-0114 TCGA-02-0114-10A-01W-0206-08 G G G A G G U Valid Somatic missense A783T A783T L 0.345 http://mutationassessor.org?cm=var&var=10,12199705,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DHTK1_HUMAN&rb=774&re=919&var=A783T http://mutationassessor.org/pdb.php?prot=DHTK1_HUMAN&from=774&to=919&var=A783T -RADIL 55698 broad.mit.edu 36.1 7 4809833 4809833 + missense SNP T C T TCGA-06-0137 TCGA-06-0137-10A-01W-0224-08 C T T C C C U Valid Somatic missense missense missense -RADIL 55698 broad.mit.edu 36.1 7 4828640 4828640 + nonsense SNP C C T TCGA-06-0157 TCGA-06-0157-10A-01W-0254-08 C C T C C C U Valid Somatic nonsense nonsense nonsense -EXOC1 55763 hgsc.bcm.edu 36 4 56465332 56465332 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense R867C R867C M 1.55 http://mutationassessor.org?cm=var&var=4,56465332,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EXOC1_HUMAN&rb=170&re=871&var=R867C -SAC 55811 broad.mit.edu 36.1 1 166068972 166068972 + missense SNP G A G TCGA-06-0157 TCGA-06-0157-10A-01W-0254-08 G G A G G G U Valid Somatic missense A1157V A1157V M 1.04 http://mutationassessor.org?cm=var&var=1,166068972,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ADCYA_HUMAN&rb=1021&re=1220&var=A1157V -SAC 55811 broad.mit.edu 36.1 1 166073110 166073110 + splice SNP C C T TCGA-12-0616 TCGA-12-0616-10A-01W-0323-08 C C C T C C U Valid Somatic splice splice splice -SAC 55811 broad.mit.edu 36.1 1 166073110 166073110 + splice SNP C T T TCGA-12-0616 TCGA-12-0616-10A-01W-0323-08 C C C T C C U Valid Somatic splice splice splice -CAND1 55832 broad.mit.edu 36.1 12 65991847 65991847 + splice SNP G A G TCGA-02-0070 TCGA-02-0070-10A-01W-0318-08 nt nt G A G G U Valid Somatic splice splice splice -ANKMY2 57037 hgsc.bcm.edu 36 7 16615863 16615863 + missense SNP T T C novel unknown TCGA-08-0345 TCGA-08-0345-11A-03W T T C T T T Unknown Valid Somatic missense I267V I267V L 0.145 http://mutationassessor.org/?cm=msa&ty=f&p=ANKY2_HUMAN&rb=112&re=311&var=I267V -PAK7 57144 hgsc.bcm.edu 36 20 9494784 9494784 + missense SNP G G A novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G A G G G Unknown Valid Somatic missense P413L P413L L 0.695 http://mutationassessor.org?cm=var&var=20,9494784,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PAK7_HUMAN&rb=98&re=416&var=P413L -PAK7 57144 hgsc.bcm.edu 36 20 9491631 9491631 + missense SNP T T C novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W T T C T T T Unknown Valid Somatic missense D508G D508G L 0.085 http://mutationassessor.org/?cm=msa&ty=f&p=PAK7_HUMAN&rb=450&re=700&var=D508G http://mutationassessor.org/pdb.php?prot=PAK7_HUMAN&from=450&to=700&var=D508G -ADAMTSL3 57188 hgsc.bcm.edu 36 15 82430313 82430313 + missense SNP G G A rs2277848 byCluster;byFrequency;byHapMap TCGA-02-0048 TCGA-02-0048-10A-01W G G A G G G Unknown Valid Somatic missense R855H R855H L 0.345 http://mutationassessor.org/?cm=msa&ty=f&p=ATL3_HUMAN&rb=824&re=880&var=R855H -ADAMTSL3 57188 hgsc.bcm.edu 36 15 82481336 82481336 + missense SNP G G A novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W G G A G G G Unknown Valid Somatic missense missense missense -ADAMTSL3 57188 hgsc.bcm.edu 36 15 82233332 82233332 + nonsense SNP G G A novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic nonsense W81* W81* -EP400 57634 hgsc.bcm.edu 36 12 131076211 131076211 + missense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense M1677I M1677I L 0.805 http://mutationassessor.org?cm=var&var=12,131076211,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EP400_HUMAN&rb=1454&re=1739&var=M1677I -EP400 57634 hgsc.bcm.edu 36 12 131094732 131094732 + missense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense E2206K E2206K L 0.35 http://mutationassessor.org/?cm=msa&ty=f&p=EP400_HUMAN&rb=2201&re=2400&var=E2206K -EP400 57634 hgsc.bcm.edu 36 12 131012246 131012246 + nonsense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic nonsense Q377* Q377* -LRRC4C 57689 hgsc.bcm.edu 36 11 40092970 40092970 + missense SNP G G C novel unknown TCGA-02-0116 TCGA-02-0116-10A-01W G G C G G G Unknown Valid Somatic missense D483E D483E -KIAA1632 57724 hgsc.bcm.edu 36 18 41700876 41700876 + missense SNP C C G novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C G C C Unknown Valid Somatic missense S2169T S2169T M 1.09 http://mutationassessor.org?cm=var&var=18,41700876,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=K1632_HUMAN&rb=2001&re=2200&var=S2169T -MARK4 57787 hgsc.bcm.edu 36 19 50454106 50454106 + missense SNP G G A novel unknown TCGA-02-0015 TCGA-02-0015-10A-01W G G A G G G Unknown Valid Somatic missense G24D G24D L 0.63 http://mutationassessor.org?cm=var&var=19,50454106,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MARK4_HUMAN&rb=1&re=58&var=G24D -MARK4 57787 hgsc.bcm.edu 36 19 50482763 50482763 + splice SNP G A A novel unknown TCGA-06-0147 TCGA-06-0147-10A-01W G G A G G G Unknown Valid Somatic splice splice splice -DMRT3 58524 broad.mit.edu 36.1 9 980868 980868 + missense SNP C C T TCGA-08-0353 TCGA-08-0353-11A-01W-0318-08 C C C T C C U Valid Somatic missense R428C R428C M 1.245 http://mutationassessor.org?cm=var&var=9,980868,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DMRT3_HUMAN&rb=287&re=472&var=R428C -RINT1 60561 hgsc.bcm.edu 36 7 104994978 104994978 + missense SNP C C T novel Unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense P788L P788L L 0.43 http://mutationassessor.org/?cm=msa&ty=f&p=RINT1_HUMAN&rb=220&re=792&var=P788L -PAPPA2 60676 hgsc.bcm.edu 36 1 174925941 174925941 + missense SNP C C T novel Unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C C T C C Unknown Valid Somatic missense T728I T728I L 0.91 http://mutationassessor.org?cm=var&var=1,174925941,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PAPP2_HUMAN&rb=669&re=831&var=T728I http://mutationassessor.org/pdb.php?prot=PAPP2_HUMAN&from=669&to=831&var=T728I -PAPPA2 60676 hgsc.bcm.edu 36 1 174925941 174925941 + missense SNP C C T novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C C T C C Unknown Valid Somatic missense T728I T728I L 0.91 http://mutationassessor.org?cm=var&var=1,174925941,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PAPP2_HUMAN&rb=669&re=831&var=T728I http://mutationassessor.org/pdb.php?prot=PAPP2_HUMAN&from=669&to=831&var=T728I -PAPPA2 60676 hgsc.bcm.edu 36 1 174830630 174830630 + missense SNP C C A novel unknown TCGA-06-0176 TCGA-06-0176-10A-01W C C A C C C Unknown Valid Somatic missense L423M L423M L 0.475 http://mutationassessor.org/?cm=msa&ty=f&p=PAPP2_HUMAN&rb=261&re=449&var=L423M -PAPPA2 60676 hgsc.bcm.edu 36 1 174934927 174934927 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense H939Y H939Y L 0.285 http://mutationassessor.org/?cm=msa&ty=f&p=PAPP2_HUMAN&rb=832&re=1031&var=H939Y -PAPPA2 60676 hgsc.bcm.edu 36 1 174792832 174792832 + missense SNP G G A novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G A G G G Unknown Valid Somatic missense A251T A251T http://mutationassessor.org/?cm=msa&ty=f&p=PAPP2_HUMAN&rb=201&re=260&var=A251T -C10orf54 64115 hgsc.bcm.edu 36 10 73181455 73181455 + missense SNP C C T novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W C C C T C C Unknown Valid Somatic missense G292R G292R L 0.805 http://mutationassessor.org?cm=var&var=10,73181455,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GI24_HUMAN&rb=232&re=310&var=G292R -C6orf60 79632 broad.mit.edu 36.1 6 119337318 119337318 + missense SNP C A C TCGA-02-0104 TCGA-02-0104-10A-01W-0318-08 C C C A C C U Valid Somatic missense K963N K963N M 1.04 http://mutationassessor.org?cm=var&var=6,119337318,C,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=F184A_HUMAN&rb=801&re=1000&var=K963N -C6orf60 79632 broad.mit.edu 36.1 6 119343120 119343120 + missense SNP C C G TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 C C G C C C U Valid Somatic missense R728P R728P L 0.88 http://mutationassessor.org?cm=var&var=6,119343120,C,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=F184A_HUMAN&rb=601&re=800&var=R728P -PIP5K2C 79837 hgsc.bcm.edu 36 12 56280885 56280885 + missense SNP G G A novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W G G A G G G Unknown Valid Somatic missense D280N D280N H 3.025 http://mutationassessor.org?cm=var&var=12,56280885,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PI42C_HUMAN&rb=124&re=420&var=D280N http://mutationassessor.org/pdb.php?prot=PI42C_HUMAN&from=124&to=420&var=D280N -FBXL18 80028 hgsc.bcm.edu 36 7 5507507 5507507 + missense SNP G G A novel unknown TCGA-02-0115 TCGA-02-0115-10A-01W G G A G G G Unknown Valid Somatic missense L307F L307F L 0.975 http://mutationassessor.org?cm=var&var=7,5507507,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FXL18_HUMAN&rb=201&re=400&var=L307F -FBXL18 80028 hgsc.bcm.edu 36 7 5507188 5507188 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense R413H R413H L 0.55 http://mutationassessor.org?cm=var&var=7,5507188,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=FXL18_HUMAN&rb=275&re=474&var=R413H -TRPM3 80036 hgsc.bcm.edu 36 9 72588890 72588890 + missense SNP G G A novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G A G G G Unknown Valid Somatic missense R392W R392W M 1.77 http://mutationassessor.org?cm=var&var=9,72588890,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TRPM3_HUMAN&rb=201&re=400&var=R392W -ATHL1 80162 hgsc.bcm.edu 36 11 284679 284679 + missense SNP G G T novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W G G G T G G Unknown Valid Somatic missense S715I S715I N 0 http://mutationassessor.org/?cm=msa&ty=f&p=ATHL1_HUMAN&rb=610&re=737&var=S715I -TAS1R1 80835 broad.mit.edu 36.1 1 6559159 6559159 + missense SNP C C T TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 C C C T C C U Valid Somatic missense A453V A453V L 0.565 http://mutationassessor.org?cm=var&var=1,6559159,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=TS1R1_HUMAN&rb=74&re=457&var=A453V http://mutationassessor.org/pdb.php?prot=TS1R1_HUMAN&from=74&to=457&var=A453V -DOCK8 81704 broad.mit.edu 36.1 9 276581 276581 + missense SNP G A G TCGA-06-0145 TCGA-06-0145-10A-01W-0224-08 G G A G G G U Valid Somatic missense V93M V93M M 1.485 http://mutationassessor.org?cm=var&var=9,276581,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DOCK8_HUMAN&rb=69&re=164&var=V93M -DOCK8 81704 broad.mit.edu 36.1 9 369836 369836 + missense SNP G G T TCGA-02-0026 TCGA-02-0026-10A-01W-0318-08 G G G T G G U Valid Somatic missense D836Y D836Y M 1.255 http://mutationassessor.org?cm=var&var=9,369836,G,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DOCK8_HUMAN&rb=765&re=964&var=D836Y -INHBE 83729 broad.mit.edu 36.1 12 56136494 56136494 + missense SNP C C T TCGA-02-0014 TCGA-02-0014-10A-01W-0189-08 C C C T C C U Valid Somatic missense P217S P217S L 0.74 http://mutationassessor.org?cm=var&var=12,56136494,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=INHBE_HUMAN&rb=16&re=222&var=P217S -GARNL3 84253 broad.mit.edu 36.1 9 129135128 129135128 + missense SNP G A G TCGA-06-0190 TCGA-06-0190-10B-01W-0254-08 G G G A G G U Valid Somatic missense G226R G226R H 2.175 http://mutationassessor.org?cm=var&var=9,129135128,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=GARL3_HUMAN&rb=220&re=407&var=G226R http://mutationassessor.org/pdb.php?prot=GARL3_HUMAN&from=220&to=407&var=G226R -MYLK2 85366 broad.mit.edu 36.1 20 29871752 29871752 + missense SNP G A G TCGA-02-0043 TCGA-02-0043-10A-01W-0189-08 G G A G G G U Valid Somatic missense S72N S72N L 0.695 http://mutationassessor.org?cm=var&var=20,29871752,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MYLK2_HUMAN&rb=1&re=200&var=S72N -RHPN2 85415 hgsc.bcm.edu 36 19 38185136 38185136 + missense SNP T T C novel unknown TCGA-02-0075 TCGA-02-0075-10A-01W T T C T T T Unknown Valid Somatic missense Y321C Y321C H 2.38 http://mutationassessor.org?cm=var&var=19,38185136,T,C&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RHPN2_HUMAN&rb=111&re=517&var=Y321C http://mutationassessor.org/pdb.php?prot=RHPN2_HUMAN&from=111&to=517&var=Y321C -RHPN2 85415 hgsc.bcm.edu 36 19 38190786 38190786 + missense SNP G G A novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W G G A G G G Unknown Valid Somatic missense A245V A245V M 1.605 http://mutationassessor.org?cm=var&var=19,38190786,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RHPN2_HUMAN&rb=111&re=517&var=A245V http://mutationassessor.org/pdb.php?prot=RHPN2_HUMAN&from=111&to=517&var=A245V -RHPN2 85415 hgsc.bcm.edu 36 19 38185028 38185028 + missense SNP T T A novel unknown TCGA-02-0071 TCGA-02-0071-10A-01W T T A T T T Unknown Valid Somatic missense H357L H357L M 1.225 http://mutationassessor.org?cm=var&var=19,38185028,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RHPN2_HUMAN&rb=111&re=517&var=H357L http://mutationassessor.org/pdb.php?prot=RHPN2_HUMAN&from=111&to=517&var=H357L -RHPN2 85415 hgsc.bcm.edu 36 19 38185041 38185041 + missense SNP C C T novel unknown TCGA-02-0071 TCGA-02-0071-10A-01W C C C T C C Unknown Valid Somatic missense A353T A353T L 0.09 http://mutationassessor.org/?cm=msa&ty=f&p=RHPN2_HUMAN&rb=111&re=517&var=A353T http://mutationassessor.org/pdb.php?prot=RHPN2_HUMAN&from=111&to=517&var=A353T -RHPN2 85415 hgsc.bcm.edu 36 19 38185041 38185041 + missense SNP C C T novel unknown TCGA-02-0074 TCGA-02-0074-10A-01W C C C T C C Unknown Valid Somatic missense A353T A353T L 0.09 http://mutationassessor.org/?cm=msa&ty=f&p=RHPN2_HUMAN&rb=111&re=517&var=A353T http://mutationassessor.org/pdb.php?prot=RHPN2_HUMAN&from=111&to=517&var=A353T -HELB 92797 broad.mit.edu 36.1 12 64990195 64990195 + missense SNP C T T TCGA-08-0245 TCGA-08-0245-11A-01W-0318-08 C C C T C C U Valid Somatic missense P407L P407L L 0.345 http://mutationassessor.org/?cm=msa&ty=f&p=HELB_HUMAN&rb=261&re=460&var=P407L -SFT2D1 113402 hgsc.bcm.edu 36 6 166659636 166659636 + missense SNP T C C rs11551053 unknown TCGA-06-0178 TCGA-06-0178-10B-01W T T C T T T Unknown Valid Somatic missense I109V I109V N -0.39 http://mutationassessor.org/?cm=msa&ty=f&p=SFT2A_HUMAN&rb=42&re=156&var=I109V -CSMD3 114788 broad.mit.edu 36.1 8 113325934 113325934 + missense SNP C C T TCGA-06-0219 TCGA-06-0219-10A-01W-0255-08 C C T C C C U Valid Somatic missense V3386I V3386I N -0.005 http://mutationassessor.org?cm=var&var=8,113325934,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CSMD3_HUMAN&rb=3374&re=3429&var=V3386I http://mutationassessor.org/pdb.php?prot=CSMD3_HUMAN&from=3374&to=3429&var=V3386I -CENTG1 116986 hgsc.bcm.edu 36 12 56408033 56408033 + missense SNP C C T novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W C C C T C C Unknown Valid Somatic missense S907N S907N M 1.03 http://mutationassessor.org/?cm=msa&ty=f&p=AGAP2_HUMAN&rb=677&re=909&var=S907N -CENTG1 116986 hgsc.bcm.edu 36 12 56407992 56407992 + missense SNP C C T novel unknown TCGA-02-0014 TCGA-02-0014-10A-01W C C C T C C Unknown Valid Somatic missense V921I V921I N -0.04 http://mutationassessor.org/?cm=msa&ty=f&p=AGAP2_HUMAN&rb=880&re=960&var=V921I -OR5P2 120065 broad.mit.edu 36.1 11 7774741 7774741 + missense SNP C C T TCGA-06-0238 TCGA-06-0238-10A-01W-0323-08 C C C T C C U Valid Somatic missense V109I V109I N -0.075 http://mutationassessor.org/?cm=msa&ty=f&p=OR5P2_HUMAN&rb=37&re=286&var=V109I -PLD4 122618 hgsc.bcm.edu 36 14 104470242 104470242 + missense SNP G G A novel Unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G A G G G Unknown Valid Somatic missense V473M V473M L 0.495 http://mutationassessor.org?cm=var&var=14,104470242,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PLD4_HUMAN&rb=405&re=506&var=V473M -PLD4 122618 hgsc.bcm.edu 36 14 104470242 104470242 + missense SNP G G A novel unknown TCGA-02-0043 TCGA-02-0043-10A-01W G G A G G G Unknown Valid Somatic missense V473M V473M L 0.495 http://mutationassessor.org?cm=var&var=14,104470242,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PLD4_HUMAN&rb=405&re=506&var=V473M -ADSSL1 122622 hgsc.bcm.edu 36 14 104275781 104275781 + missense SNP C C T novel unknown TCGA-02-0114 TCGA-02-0114-10A-01W C C C T C C Unknown Valid Somatic missense P107S P107S M 1.185 http://mutationassessor.org?cm=var&var=14,104275781,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PURA1_HUMAN&rb=33&re=455&var=P107S http://mutationassessor.org/pdb.php?prot=PURA1_HUMAN&from=33&to=455&var=P107S -MAGEC3 139081 hgsc.bcm.edu 36 X 140796995 140796995 + missense SNP C C T novel Unknown TCGA-02-0021 TCGA-02-0021-10A-01W C C C T C C Unknown Valid Somatic missense T219M T219M L 0.67 http://mutationassessor.org?cm=var&var=X,140796995,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MAGC3_HUMAN&rb=191&re=306&var=T219M http://mutationassessor.org/pdb.php?prot=MAGC3_HUMAN&from=191&to=306&var=T219M -MAGEC3 139081 hgsc.bcm.edu 36 X 140796995 140796995 + missense SNP C C T novel unknown TCGA-02-0021 TCGA-02-0021-10A-01W C C C T C C Unknown Valid Somatic missense T219M T219M L 0.67 http://mutationassessor.org?cm=var&var=X,140796995,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=MAGC3_HUMAN&rb=191&re=306&var=T219M http://mutationassessor.org/pdb.php?prot=MAGC3_HUMAN&from=191&to=306&var=T219M -RNF38 152006 broad.mit.edu 36.1 9 36346448 36346448 + missense SNP T A T TCGA-06-0138 TCGA-06-0138-10C-01W-0254-08 T T T A T T U Valid Somatic missense Q254L Q254L M 1.325 http://mutationassessor.org?cm=var&var=9,36346448,T,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=RNF38_HUMAN&rb=201&re=400&var=Q254L -ABCA13 154664 hgsc.bcm.edu 36 7 48282838 48282838 + missense SNP C C A novel unknown TCGA-02-0060 TCGA-02-0060-10A-01W C C A C C C Unknown Valid Somatic missense missense missense -ABCA13 154664 hgsc.bcm.edu 36 7 48288980 48288980 + missense SNP C C T novel unknown TCGA-02-0083 TCGA-02-0083-10A-01W C C C T C C Unknown Valid Somatic missense missense missense -ABCA13 154664 hgsc.bcm.edu 36 7 48465295 48465295 + missense SNP C C T novel Unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C C T C C Unknown Valid Somatic missense missense missense -ABCA13 154664 hgsc.bcm.edu 36 7 48465295 48465295 + missense SNP C C T novel unknown TCGA-02-0028 TCGA-02-0028-10A-01W C C C T C C Unknown Valid Somatic missense missense missense -C9orf66 157983 hgsc.bcm.edu 36 9 204916 204916 + missense SNP G G A novel unknown TCGA-06-0173 TCGA-06-0173-10B-01W G G A G G G Unknown Valid Somatic missense missense missense -KCNV2 169522 hgsc.bcm.edu 36 9 2708940 2708940 + missense SNP G G A novel unknown TCGA-06-0176 TCGA-06-0176-10A-01W G G A G G G Unknown Valid Somatic missense G401S G401S H 2.045 http://mutationassessor.org?cm=var&var=9,2708940,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KCNV2_HUMAN&rb=304&re=492&var=G401S http://mutationassessor.org/pdb.php?prot=KCNV2_HUMAN&from=304&to=492&var=G401S -DTX3 196403 broad.mit.edu 36.1 12 56288721 56288721 + missense SNP G A A TCGA-02-0107 TCGA-02-0107-10A-01W-0206-08 G G A G G G U Valid Somatic missense G301E G301E H 2.38 http://mutationassessor.org?cm=var&var=12,56288721,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DTX3_HUMAN&rb=201&re=347&var=G301E -DTX3 196403 broad.mit.edu 36.1 12 56288721 56288721 + missense SNP G A G TCGA-02-0107 TCGA-02-0107-10A-01W-0206-08 G G A G G G U Valid Somatic missense G301E G301E H 2.38 http://mutationassessor.org?cm=var&var=12,56288721,G,A&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=DTX3_HUMAN&rb=201&re=347&var=G301E -C9orf72 203228 broad.mit.edu 36.1 9 27552474 27552474 + missense SNP C C T TCGA-02-0015 TCGA-02-0015-10A-01W-0318-08 C C C T C C U Valid Somatic missense G169S G169S L 0.695 http://mutationassessor.org?cm=var&var=9,27552474,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=CI072_HUMAN&rb=1&re=200&var=G169S -KIF6 221458 hgsc.bcm.edu 36 6 39662130 39662130 + missense SNP C C T novel unknown TCGA-02-0038 TCGA-02-0038-10A-01W C C C T C C Unknown Valid Somatic missense R292H R292H M 1.21 http://mutationassessor.org?cm=var&var=6,39662130,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=KIF6_HUMAN&rb=12&re=345&var=R292H http://mutationassessor.org/pdb.php?prot=KIF6_HUMAN&from=12&to=345&var=R292H -MMD2 221938 broad.mit.edu 36.1 7 4922229 4922229 + missense SNP C C T TCGA-08-0246 TCGA-08-0246-11A-01W-0318-08 C C C T C C U Valid Somatic missense E100K E100K M 1.085 http://mutationassessor.org?cm=var&var=7,4922229,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=PAQRA_HUMAN&rb=30&re=251&var=E100K -ASPM 259266 broad.mit.edu 36.1 1 195340175 195340175 + missense SNP A A G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 A A A G A A U Valid Somatic missense V1610A V1610A L 0.95 http://mutationassessor.org?cm=var&var=1,195340175,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ASPM_HUMAN&rb=1582&re=1613&var=V1610A -ASPM 259266 broad.mit.edu 36.1 1 195365053 195365053 + missense SNP A A G TCGA-02-0010 TCGA-02-0010-10A-01W-0189-08 A A G A A A U Valid Somatic missense S883P S883P L 0.81 http://mutationassessor.org?cm=var&var=1,195365053,A,G&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=ASPM_HUMAN&rb=681&re=959&var=S883P -KSR2 283455 broad.mit.edu 36.1 12 116501335 116501335 + missense SNP G A G TCGA-06-0648 TCGA-06-0648-10A-01W-0323-08 G G G A G G U Valid Somatic missense L433F L433F L 0.535 http://mutationassessor.org/?cm=msa&ty=f&p=KSR2_HUMAN&rb=401&re=600&var=L433F http://mutationassessor.org/pdb.php?prot=KSR2_HUMAN&from=401&to=600&var=L433F -ZNF493 284443 hgsc.bcm.edu 36 19 21379790 21379790 + missense SNP A A T novel unknown TCGA-02-0010 TCGA-02-0010-10A-01W A A A T A A Unknown Valid Somatic missense missense missense -EPHA6 285220 broad.mit.edu 36.1 3 98189215 98189215 + missense SNP C C T TCGA-06-0137 TCGA-06-0137-10A-01W-0224-08 C C C T C C U Valid Somatic missense R173C R173C M 1.695 http://mutationassessor.org?cm=var&var=3,98189215,C,T&fts=all http://mutationassessor.org/?cm=msa&ty=f&p=EPHA6_HUMAN&rb=33&re=206&var=R173C http://mutationassessor.org/pdb.php?prot=EPHA6_HUMAN&from=33&to=206&var=R173C -SPRED3 399473 broad.mit.edu 36.1 19 43574459 43574459 + missense SNP G A G TCGA-08-0349 TCGA-08-0349-11A-02W-0323-08 G G G A G G U Valid Somatic missense missense missense -PALM2-AKAP2 445815 broad.mit.edu 36.1 9 111938487 111938487 + missense SNP C A C TCGA-06-0210 TCGA-06-0210-10A-01W-0255-08 C C C A C C U Valid Somatic missense missense missense -PALM2-AKAP2 445815 broad.mit.edu 36.1 9 111939141 111939141 + missense SNP G A G TCGA-02-0025 TCGA-02-0025-10A-01W-0318-08 G G G A G G U Valid Somatic missense missense missense diff --git a/core/src/main/resources/sample_data/gbm/gbm.txt b/core/src/main/resources/sample_data/gbm/gbm.txt deleted file mode 100644 index f08a676d595..00000000000 --- a/core/src/main/resources/sample_data/gbm/gbm.txt +++ /dev/null @@ -1,4 +0,0 @@ -type_of_cancer: GBM -cancer_study_identifier: tcga_gbm -name: Glioblastoma (TCGA) -description: The Cancer Genome Atlas (TCGA) Glioblastoma project. 206 primary glioblastoma samples.
    Nature 2008. Raw data via the TCGA Data Portal. diff --git a/core/src/main/resources/sample_data/gbm/meta_CNA_consensus.txt b/core/src/main/resources/sample_data/gbm/meta_CNA_consensus.txt deleted file mode 100644 index 5852d693d28..00000000000 --- a/core/src/main/resources/sample_data/gbm/meta_CNA_consensus.txt +++ /dev/null @@ -1,6 +0,0 @@ -cancer_study_identifier: tcga_gbm -stable_id: gbm_cna_consensus -profile_name: Putative copy-number alterations (GBM Pathways) -profile_description: Putative copy-number calls for all genes in the hand-curated pathway of genes implicated in glioblastoma (206 cases). These calls were used for the pathway analysis in the initial TCGA manuscript, and they are the consensus of a combination of different platforms (Agilent, Affymetrix SNP6, Illumina) and methods (RAE, GISTIC, GTS). Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification. -genetic_alteration_type: COPY_NUMBER_ALTERATION -target_line: consensus diff --git a/core/src/main/resources/sample_data/gbm/meta_mutations_MAF.txt b/core/src/main/resources/sample_data/gbm/meta_mutations_MAF.txt deleted file mode 100644 index 9781380ad29..00000000000 --- a/core/src/main/resources/sample_data/gbm/meta_mutations_MAF.txt +++ /dev/null @@ -1,6 +0,0 @@ -cancer_study_identifier: tcga_gbm -stable_id: gbm_mutations -profile_name: Mutations -profile_description: Mutation data for ~1200 sequenced genes (Phases I/II of the TCGA glioblastoma project). -genetic_alteration_type: MUTATION_EXTENDED -target_line: mutation diff --git a/core/src/main/resources/sample_data/genes/human_genes.txt b/core/src/main/resources/sample_data/genes/human_genes.txt deleted file mode 100644 index 5ceb1080757..00000000000 --- a/core/src/main/resources/sample_data/genes/human_genes.txt +++ /dev/null @@ -1,43825 +0,0 @@ -9606 1 A1BG - A1B|ABG|GAB|HYST2477 HGNC:5|MIM:138670|Ensembl:ENSG00000121410|HPRD:00726 19 19q13.4 alpha-1-B glycoprotein protein-coding A1BG alpha-1-B glycoprotein O alpha-1B-glycoprotein 20121230 -9606 2 A2M - A2MD|CPAMD5|FWP007|S863-7 HGNC:7|MIM:103950|Ensembl:ENSG00000175899|HPRD:00072|Vega:OTTHUMG00000150267 12 12p13.31 alpha-2-macroglobulin protein-coding A2M alpha-2-macroglobulin O C3 and PZP-like alpha-2-macroglobulin domain-containing protein 5|alpha-2-M 20121230 -9606 3 A2MP1 - A2MP HGNC:8 12 12p13.31 alpha-2-macroglobulin pseudogene 1 pseudo A2MP1 alpha-2-macroglobulin pseudogene 1 O - 20121230 -9606 9 NAT1 - AAC1|MNAT|NAT-1|NATI HGNC:7645|MIM:108345|Ensembl:ENSG00000171428|HPRD:00149|Vega:OTTHUMG00000097001 8 8p22 N-acetyltransferase 1 (arylamine N-acetyltransferase) protein-coding NAT1 N-acetyltransferase 1 (arylamine N-acetyltransferase) O N-acetyltransferase type 1|arylamide acetylase 1|arylamine N-acetyltransferase 1|monomorphic arylamine N-acetyltransferase 20121230 -9606 10 NAT2 - AAC2|NAT-2|PNAT HGNC:7646|MIM:612182|Ensembl:ENSG00000156006|HPRD:02000|Vega:OTTHUMG00000130826 8 8p22 N-acetyltransferase 2 (arylamine N-acetyltransferase) protein-coding NAT2 N-acetyltransferase 2 (arylamine N-acetyltransferase) O N-acetyltransferase type 2|arylamide acetylase 2|arylamine N-acetyltransferase 2 20121230 -9606 11 AACP - NATP HGNC:15 8 8p22 arylamide acetylase pseudogene pseudo AACP arylamide acetylase pseudogene O - 20121230 -9606 12 SERPINA3 GIG24 AACT|ACT|GIG25 HGNC:16|MIM:107280|Ensembl:ENSG00000196136|HPRD:00120|Vega:OTTHUMG00000029851 14 14q32.1 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 3 protein-coding SERPINA3 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 3 O alpha-1-antichymotrypsin|cell growth-inhibiting gene 24/25 protein|growth-inhibiting protein 24|growth-inhibiting protein 25|serine (or cysteine) proteinase inhibitor, clade A, member 3|serpin A3 20121230 -9606 13 AADAC - CES5A1|DAC HGNC:17|MIM:600338|Ensembl:ENSG00000114771|HPRD:02640|Vega:OTTHUMG00000159876 3 3q25.1 arylacetamide deacetylase protein-coding AADAC arylacetamide deacetylase O arylacetamide deacetylase (esterase) 20121230 -9606 14 AAMP - - HGNC:18|MIM:603488|Ensembl:ENSG00000127837|HPRD:04600|Vega:OTTHUMG00000155202 2 2q35 angio-associated, migratory cell protein protein-coding AAMP angio-associated, migratory cell protein O angio-associated migratory cell protein 20121230 -9606 15 AANAT - DSPS|SNAT HGNC:19|MIM:600950|Ensembl:ENSG00000129673|HPRD:02974|Vega:OTTHUMG00000180179 17 17q25 aralkylamine N-acetyltransferase protein-coding AANAT aralkylamine N-acetyltransferase O arylalkylamine N-acetyltransferase|serotonin N-acetyltransferase|serotonin acetylase 20121230 -9606 16 AARS - CMT2N HGNC:20|MIM:601065|Ensembl:ENSG00000090861|HPRD:03042|Vega:OTTHUMG00000177042 16 16q22 alanyl-tRNA synthetase protein-coding AARS alanyl-tRNA synthetase O alaRS|alanine tRNA ligase 1, cytoplasmic|alanine--tRNA ligase, cytoplasmic|alanyl-tRNA synthetase, cytoplasmic|renal carcinoma antigen NY-REN-42 20121230 -9606 17 AAVS1 - AAV HGNC:22|MIM:102699 19 19q13|19q13-qter adeno-associated virus integration site 1 other AAVS1 adeno-associated virus integration site 1 O - 20111027 -9606 18 ABAT hCG_1984265 GABA-AT|GABAT|NPD009 HGNC:23|MIM:137150|Ensembl:ENSG00000183044|HPRD:00661|Vega:OTTHUMG00000048201 16 16p13.2 4-aminobutyrate aminotransferase protein-coding ABAT 4-aminobutyrate aminotransferase O (S)-3-amino-2-methylpropionate transaminase|4-aminobutyrate aminotransferase, mitochondrial|4-aminobutyrate transaminase|GABA aminotransferase|GABA transaminase|GABA transferase|gamma-amino-N-butyrate transaminase 20121230 -9606 19 ABCA1 - ABC-1|ABC1|CERP|HDLDT1|TGD HGNC:29|MIM:600046|Ensembl:ENSG00000165029|HPRD:02501|Vega:OTTHUMG00000020417 9 9q31.1 ATP-binding cassette, sub-family A (ABC1), member 1 protein-coding ABCA1 ATP-binding cassette, sub-family A (ABC1), member 1 O ATP-binding cassette sub-family A member 1|ATP-binding cassette transporter A1|cholesterol efflux regulatory protein|membrane-bound 20121230 -9606 20 ABCA2 RP11-229P13.8 ABC2 HGNC:32|MIM:600047|Ensembl:ENSG00000107331|HPRD:08967|Vega:OTTHUMG00000020958 9 9q34 ATP-binding cassette, sub-family A (ABC1), member 2 protein-coding ABCA2 ATP-binding cassette, sub-family A (ABC1), member 2 O ATP-binding cassette 2|ATP-binding cassette sub-family A member 2|ATP-binding cassette transporter 2|ATP-binding cassette, sub-family A, member 2 20121230 -9606 21 ABCA3 - ABC-C|ABC3|EST111653|LBM180|SMDP3 HGNC:33|MIM:601615|Ensembl:ENSG00000167972|HPRD:03369|Vega:OTTHUMG00000128845 16 16p13.3 ATP-binding cassette, sub-family A (ABC1), member 3 protein-coding ABCA3 ATP-binding cassette, sub-family A (ABC1), member 3 O ABC transporter 3|ABC-C transporter|ATP-binding cassette sub-family A member 3|ATP-binding cassette transporter 3 20121230 -9606 22 ABCB7 - ABC7|ASAT|Atm1p|EST140535 HGNC:48|MIM:300135|Ensembl:ENSG00000131269|HPRD:02137|Vega:OTTHUMG00000021862 X Xq13.3 ATP-binding cassette, sub-family B (MDR/TAP), member 7 protein-coding ABCB7 ATP-binding cassette, sub-family B (MDR/TAP), member 7 O ABC transporter 7 protein|ATP-binding cassette sub-family B member 7, mitochondrial|ATP-binding cassette transporter 7 20121230 -9606 23 ABCF1 DADB-129D20.7 ABC27|ABC50 HGNC:70|MIM:603429|Ensembl:ENSG00000204574|HPRD:09139|Vega:OTTHUMG00000031094 6 6p21.33 ATP-binding cassette, sub-family F (GCN20), member 1 protein-coding ABCF1 ATP-binding cassette, sub-family F (GCN20), member 1 O ATP-binding cassette 50 (TNF-alpha stimulated)|ATP-binding cassette sub-family F member 1|TNF-alpha-stimulated ABC protein|TNFalpha-inducible ATP-binding protein 20121230 -9606 24 ABCA4 - ABC10|ABCR|ARMD2|CORD3|FFM|RMP|RP19|STGD|STGD1 HGNC:34|MIM:601691|Ensembl:ENSG00000198691|HPRD:03408|Vega:OTTHUMG00000010622 1 1p22 ATP-binding cassette, sub-family A (ABC1), member 4 protein-coding ABCA4 ATP-binding cassette, sub-family A (ABC1), member 4 O ATP binding cassette transporter|ATP-binding cassette sub-family A member 4|ATP-binding cassette transporter, retinal-specific|ATP-binding transporter, retina-specific|RIM ABC transporter|RIM protein|photoreceptor rim protein|retina-specific ABC transporter|retinal-specific ATP-binding cassette transporter|stargardt disease protein 20121230 -9606 25 ABL1 RP11-83J21.1 ABL|JTK7|bcr/abl|c-ABL|p150|v-abl HGNC:76|MIM:189980|Ensembl:ENSG00000097007|HPRD:01809|Vega:OTTHUMG00000020813 9 9q34.1 c-abl oncogene 1, non-receptor tyrosine kinase protein-coding ABL1 c-abl oncogene 1, non-receptor tyrosine kinase O Abelson tyrosine-protein kinase 1|bcr/c-abl oncogene protein|c-abl oncogene 1, receptor tyrosine kinase|proto-oncogene c-Abl|proto-oncogene tyrosine-protein kinase ABL1|tyrosine-protein kinase ABL1|v-abl Abelson murine leukemia viral oncogene homolog 1 20121230 -9606 26 ABP1 - ABP|AOC1|DAO|DAO1|KAO HGNC:80|MIM:104610|Ensembl:ENSG00000002726|HPRD:00088|Vega:OTTHUMG00000158306 7 7q36.1 amiloride binding protein 1 (amine oxidase (copper-containing)) protein-coding ABP1 amiloride binding protein 1 (amine oxidase (copper-containing)) O amiloride-binding protein-1|amiloride-sensitive amine oxidase|amiloride-sensitive amine oxidase [copper-containing]|diamine oxidase|histaminase|kidney amine oxidase 20121230 -9606 27 ABL2 RP11-177A2.3 ABLL|ARG HGNC:77|MIM:164690|Ensembl:ENSG00000143322|HPRD:01259|Vega:OTTHUMG00000035199 1 1q25.2 v-abl Abelson murine leukemia viral oncogene homolog 2 protein-coding ABL2 v-abl Abelson murine leukemia viral oncogene homolog 2 O Abelson tyrosine-protein kinase 2|abelson-related gene protein|tyrosine-protein kinase ARG 20121230 -9606 28 ABO - A3GALNT|A3GALT1|GTB|NAGAT HGNC:79|MIM:110300|HPRD:05821 9 9q34.2 ABO blood group (transferase A, alpha 1-3-N-acetylgalactosaminyltransferase; transferase B, alpha 1-3-galactosyltransferase) protein-coding ABO ABO blood group (transferase A, alpha 1-3-N-acetylgalactosaminyltransferase; transferase B, alpha 1-3-galactosyltransferase) O ABO A3 transferase|ABO glycosyltransferase|ABO weak transfer|B(A) alpha-1,3-galactosyltransferase|fucosylglycoprotein 3-alpha-galactosyltransferase|fucosylglycoprotein alpha-N-acetylgalactosaminyltransferase|glycoprotein-fucosylgalactoside alpha-N-acetylgalactosaminyltransferase|glycoprotein-fucosylgalactoside alpha-galactosyltransferase|histo-blood group A transferase|histo-blood group A2 transferase|histo-blood group ABO system transferase|histo-blood group B transferase 20121230 -9606 29 ABR - MDB HGNC:81|MIM:600365|Ensembl:ENSG00000159842|HPRD:02649|Vega:OTTHUMG00000090313 17 17p13.3 active BCR-related protein-coding ABR active BCR-related O active breakpoint cluster region-related protein 20121230 -9606 30 ACAA1 - ACAA|PTHIO|THIO HGNC:82|MIM:604054|Ensembl:ENSG00000060971|HPRD:06815|Vega:OTTHUMG00000131087 3 3p22.2 acetyl-CoA acyltransferase 1 protein-coding ACAA1 acetyl-CoA acyltransferase 1 O 3-ketoacyl-CoA thiolase, peroxisomal|acetyl-Coenzyme A acyltransferase 1|beta-ketothiolase|peroxisomal 3-oxoacyl-CoA thiolase|peroxisomal 3-oxoacyl-Coenzyme A thiolase 20121230 -9606 31 ACACA - ACAC|ACACAD|ACC|ACC1|ACCA HGNC:84|MIM:200350|Ensembl:ENSG00000132142|HPRD:01938|Vega:OTTHUMG00000133064 17 17q21 acetyl-CoA carboxylase alpha protein-coding ACACA acetyl-CoA carboxylase alpha O ACC-alpha|acetyl-CoA carboxylase 1|acetyl-Coenzyme A carboxylase alpha 20121230 -9606 32 ACACB - ACC2|ACCB|HACC275 HGNC:85|MIM:601557|Ensembl:ENSG00000076555|HPRD:07044|Vega:OTTHUMG00000169250 12 12q24.11 acetyl-CoA carboxylase beta protein-coding ACACB acetyl-CoA carboxylase beta O ACC-beta|acetyl-CoA carboxylase 2|acetyl-Coenzyme A carboxylase beta 20121230 -9606 33 ACADL - ACAD4|LCAD HGNC:88|MIM:609576|Ensembl:ENSG00000115361|HPRD:01939|Vega:OTTHUMG00000132989 2 2q34 acyl-CoA dehydrogenase, long chain protein-coding ACADL acyl-CoA dehydrogenase, long chain O acyl-Coenzyme A dehydrogenase, long chain|long-chain specific acyl-CoA dehydrogenase, mitochondrial 20121230 -9606 34 ACADM RP4-682C21.1 ACAD1|MCAD|MCADH HGNC:89|MIM:607008|Ensembl:ENSG00000117054|HPRD:08447|Vega:OTTHUMG00000009784 1 1p31 acyl-CoA dehydrogenase, C-4 to C-12 straight chain protein-coding ACADM acyl-CoA dehydrogenase, C-4 to C-12 straight chain O acyl-Coenzyme A dehydrogenase, C-4 to C-12 straight chain|medium-chain specific acyl-CoA dehydrogenase, mitochondrial 20121230 -9606 35 ACADS - ACAD3|SCAD HGNC:90|MIM:606885|Ensembl:ENSG00000122971|HPRD:06053|Vega:OTTHUMG00000169203 12 12q24.31 acyl-CoA dehydrogenase, C-2 to C-3 short chain protein-coding ACADS acyl-CoA dehydrogenase, C-2 to C-3 short chain O acyl-Coenzyme A dehydrogenase, C-2 to C-3 short chain|butyryl-CoA dehydrogenase|mitochondrial short-chain specific acyl-CoA dehydrogenase|short-chain acyl-CoA dehydrogenase|short-chain specific acyl-CoA dehydrogenase, mitochondrial|unsaturated acyl-CoA reductase 20121230 -9606 36 ACADSB RP11-162A23.1 2-MEBCAD|ACAD7|SBCAD HGNC:91|MIM:600301|Ensembl:ENSG00000196177|HPRD:02626|Vega:OTTHUMG00000019200 10 10q26.13 acyl-CoA dehydrogenase, short/branched chain protein-coding ACADSB acyl-CoA dehydrogenase, short/branched chain O 2-methyl branched chain acyl-CoA dehydrogenase|2-methylbutyryl-coenzyme A dehydrogenase|acyl-Coenzyme A dehydrogenase, short/branched chain|short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 20121230 -9606 37 ACADVL - ACAD6|LCACD|VLCAD HGNC:92|MIM:609575|Ensembl:ENSG00000072778|HPRD:01940|Vega:OTTHUMG00000102157 17 17p13.1 acyl-CoA dehydrogenase, very long chain protein-coding ACADVL acyl-CoA dehydrogenase, very long chain O acyl-Coenzyme A dehydrogenase, very long chain|very long-chain specific acyl-CoA dehydrogenase, mitochondrial 20121230 -9606 38 ACAT1 - ACAT|MAT|T2|THIL HGNC:93|MIM:607809|Ensembl:ENSG00000075239|HPRD:01946|Vega:OTTHUMG00000166381 11 11q22.3 acetyl-CoA acetyltransferase 1 protein-coding ACAT1 acetyl-CoA acetyltransferase 1 O acetoacetyl Coenzyme A thiolase|acetoacetyl-CoA thiolase|acetyl-CoA acetyltransferase, mitochondrial|acetyl-Coenzyme A acetyltransferase 1|mitochondrial acetoacetyl-CoA thiolase 20121230 -9606 39 ACAT2 - - HGNC:94|MIM:100678|Ensembl:ENSG00000120437|HPRD:00006|Vega:OTTHUMG00000015935 6 6q25.3 acetyl-CoA acetyltransferase 2 protein-coding ACAT2 acetyl-CoA acetyltransferase 2 O acetoacetyl Coenzyme A thiolase|acetyl-CoA acetyltransferase, cytosolic|acetyl-CoA transferase-like protein|cytosolic acetoacetyl-CoA thiolase 20121230 -9606 40 ASIC2 - ACCN|ACCN1|ASIC2a|BNC1|BNaC1|MDEG|hBNaC1 HGNC:99|MIM:601784|Ensembl:ENSG00000108684|HPRD:03471|Vega:OTTHUMG00000132885 17 17q12 acid-sensing (proton-gated) ion channel 2 protein-coding ASIC2 acid-sensing (proton-gated) ion channel 2 O acid-sensing ion channel 2|amiloride-sensitive cation channel 1, neuronal|brain sodium channel 1|mammalian degenerin homolog|neuronal amiloride-sensitive cation channel 1 20121230 -9606 41 ASIC1 - ACCN2|ASIC|BNaC2 HGNC:100|MIM:602866|Ensembl:ENSG00000110881|HPRD:04182|Vega:OTTHUMG00000169812 12 12q12 acid-sensing (proton-gated) ion channel 1 protein-coding ASIC1 acid-sensing (proton-gated) ion channel 1 O Cation channel, amiloride-sensitive, neuronal, 2|acid-sensing ion channel 1|acid-sensing ion channel 1a protein|amiloride-sensitive cation channel 2, neuronal|brain sodium channel 2 20121230 -9606 43 ACHE - ACEE|ARACHE|N-ACHE|YT HGNC:108|MIM:100740|Ensembl:ENSG00000087085|HPRD:00010|Vega:OTTHUMG00000157033 7 7q22 acetylcholinesterase protein-coding ACHE acetylcholinesterase O Yt blood group|apoptosis-related acetylcholinesterase 20121230 -9606 46 ACLS - - HGNC:114|MIM:200990 12 12p13.3-p11.2 acrocallosal syndrome unknown ACLS acrocallosal syndrome O - 20111022 -9606 47 ACLY - ACL|ATPCL|CLATP HGNC:115|MIM:108728|Ensembl:ENSG00000131473|HPRD:00155|Vega:OTTHUMG00000133507 17 17q21.2 ATP citrate lyase protein-coding ACLY ATP citrate lyase O ATP citrate synthase|ATP-citrate (pro-S-)-lyase|ATP-citrate synthase|citrate cleavage enzyme 20121230 -9606 48 ACO1 RP11-334P12.1 ACONS|IREB1|IREBP|IREBP1|IRP1 HGNC:117|MIM:100880|Ensembl:ENSG00000122729|HPRD:00013|Vega:OTTHUMG00000019740 9 9p21.1 aconitase 1, soluble protein-coding ACO1 aconitase 1, soluble O IRE-BP 1|aconitate hydratase|citrate hydro-lyase|cytoplasmic aconitate hydratase|ferritin repressor protein|iron regulatory protein 1|iron-responsive element binding protein 1|iron-responsive element-binding protein 1 20121230 -9606 49 ACR - - HGNC:126|MIM:102480|Ensembl:ENSG00000100312|HPRD:06342|Vega:OTTHUMG00000150155 22 22q13.33 acrosin protein-coding ACR acrosin O acrosin light and heavy chain prepropeptide|preproacrosin|proacrosin 20121230 -9606 50 ACO2 RP3-347H13.8 ACONM|ICRD HGNC:118|MIM:100850|Ensembl:ENSG00000100412|HPRD:00012|Vega:OTTHUMG00000030544 22 22q13.2 aconitase 2, mitochondrial protein-coding ACO2 aconitase 2, mitochondrial O aconitate hydratase, mitochondrial|citrate hydro-lyase 20121230 -9606 51 ACOX1 - ACOX|PALMCOX|SCOX HGNC:119|MIM:609751|Ensembl:ENSG00000161533|HPRD:02030|Vega:OTTHUMG00000180027 17 17q25.1 acyl-CoA oxidase 1, palmitoyl protein-coding ACOX1 acyl-CoA oxidase 1, palmitoyl O AOX|acyl-CoA oxidase, straight-chain|acyl-Coenzyme A oxidase 1, palmitoyl|palmitoyl-CoA oxidase|peroxisomal acyl-coenzyme A oxidase 1|peroxisomal fatty acyl-CoA oxidase|straight-chain acyl-CoA oxidase 20121230 -9606 52 ACP1 - HAAP HGNC:122|MIM:171500|Ensembl:ENSG00000143727|HPRD:08881|Vega:OTTHUMG00000086933 2 2p25 acid phosphatase 1, soluble protein-coding ACP1 acid phosphatase 1, soluble O LMW-PTP|LMW-PTPase|acid phosphatase of erythrocyte|adipocyte acid phosphatase|cytoplasmic phosphotyrosyl protein phosphatase|low molecular weight cytosolic acid phosphatase|low molecular weight phosphotyrosine protein phosphatase|protein tyrosine phosphatase|red cell acid phosphatase 1 20121230 -9606 53 ACP2 - - HGNC:123|MIM:171650|Ensembl:ENSG00000134575|HPRD:01375|Vega:OTTHUMG00000166949 11 11p11.2|11p12-p11 acid phosphatase 2, lysosomal protein-coding ACP2 acid phosphatase 2, lysosomal O LAP|lysosomal acid phosphatase 20121230 -9606 54 ACP5 - SPENCDI|TRAP HGNC:124|MIM:171640|Ensembl:ENSG00000102575|HPRD:01374|Vega:OTTHUMG00000182036 19 19p13.2 acid phosphatase 5, tartrate resistant protein-coding ACP5 acid phosphatase 5, tartrate resistant O TrATPase|tartrate-resistant acid ATPase|tartrate-resistant acid phosphatase type 5 20121230 -9606 55 ACPP - 5'-NT|ACP-3|ACP3|PAP HGNC:125|MIM:171790|Ensembl:ENSG00000014257|HPRD:01378|Vega:OTTHUMG00000159650 3 3q22.1 acid phosphatase, prostate protein-coding ACPP acid phosphatase, prostate O 5'-nucleotidase|TMPase|ecto-5'-nucleotidase|prostatic acid phosphatase|prostatic acid phosphotase|thiamine monophosphatase 20121230 -9606 56 ACRV1 - D11S4365|SP-10|SPACA2 HGNC:127|MIM:102525|Ensembl:ENSG00000134940|HPRD:00014|Vega:OTTHUMG00000165854 11 11q24.2 acrosomal vesicle protein 1 protein-coding ACRV1 acrosomal vesicle protein 1 O acrosomal protein SP-10|sperm protein 10 20121230 -9606 58 ACTA1 RP5-1068B5.2 ACTA|ASMA|CFTD|CFTD1|CFTDM|MPFD|NEM1|NEM2|NEM3 HGNC:129|MIM:102610|Ensembl:ENSG00000143632|HPRD:00030|Vega:OTTHUMG00000038006 1 1q42.13 actin, alpha 1, skeletal muscle protein-coding ACTA1 actin, alpha 1, skeletal muscle O actin, alpha skeletal muscle|nemaline myopathy type 3 20121230 -9606 59 ACTA2 GIG46 AAT6|ACTSA|MYMY5 HGNC:130|MIM:102620|Ensembl:ENSG00000107796|HPRD:00031|Vega:OTTHUMG00000018700 10 10q23.3 actin, alpha 2, smooth muscle, aorta protein-coding ACTA2 actin, alpha 2, smooth muscle, aorta O actin, aortic smooth muscle|alpha-cardiac actin|cell growth-inhibiting gene 46 protein 20121230 -9606 60 ACTB - BRWS1|PS1TP5BP1 HGNC:132|MIM:102630|Ensembl:ENSG00000075624|HPRD:00032|Vega:OTTHUMG00000023268 7 7p22 actin, beta protein-coding ACTB actin, beta O PS1TP5-binding protein 1|actin, cytoplasmic 1|beta cytoskeletal actin 20121230 -9606 62 ACTBP2 - - HGNC:135 5 5q14.1 actin, beta pseudogene 2 pseudo ACTBP2 actin, beta pseudogene 2 O - 20121230 -9606 63 ACTBP3 - - HGNC:136 18 18q21.33 actin, beta pseudogene 3 pseudo ACTBP3 actin, beta pseudogene 3 O - 20121230 -9606 64 ACTBP4 - - HGNC:137 5 5q31.1 actin, beta pseudogene 4 pseudo ACTBP4 actin, beta pseudogene 4 O - 20121230 -9606 66 ACTBP6 - H8-PSI-BETA-AC3 HGNC:139 8 8q21.2 actin, beta pseudogene 6 pseudo ACTBP6 actin, beta pseudogene 6 O - 20121230 -9606 67 ACTBP7 - - HGNC:140 15 15q15.3 actin, beta pseudogene 7 pseudo ACTBP7 actin, beta pseudogene 7 O - 20121230 -9606 68 ACTBP8 - ACTBP2 HGNC:141 6 6q15 actin, beta pseudogene 8 pseudo ACTBP8 actin, beta pseudogene 8 O - 20121230 -9606 69 ACTBP9 - - HGNC:142 18 18q21.33 actin, beta pseudogene 9 pseudo ACTBP9 actin, beta pseudogene 9 O - 20121230 -9606 70 ACTC1 - ACTC|ASD5|CMD1R|CMH11|LVNC4 HGNC:143|MIM:102540|Ensembl:ENSG00000159251|HPRD:00015|Vega:OTTHUMG00000129675 15 15q14 actin, alpha, cardiac muscle 1 protein-coding ACTC1 actin, alpha, cardiac muscle 1 O actin, alpha cardiac muscle 1 20121230 -9606 71 ACTG1 - ACT|ACTG|BRWS2|DFNA20|DFNA26 HGNC:144|MIM:102560|Ensembl:ENSG00000184009|HPRD:00017|Vega:OTTHUMG00000177955 17 17q25 actin, gamma 1 protein-coding ACTG1 actin, gamma 1 O actin, cytoplasmic 2|cytoskeletal gamma-actin 20121230 -9606 72 ACTG2 - ACT|ACTA3|ACTE|ACTL3|ACTSG HGNC:145|MIM:102545|Ensembl:ENSG00000163017|HPRD:00016|Vega:OTTHUMG00000129813 2 2p13.1 actin, gamma 2, smooth muscle, enteric protein-coding ACTG2 actin, gamma 2, smooth muscle, enteric O actin, gamma-enteric smooth muscle|actin-like protein|alpha-actin 3|alpha-actin-3|gamma-2-actin|smooth muscle gamma actin|smooth muscle gamma-actin 20121230 -9606 73 ACTG1P1 - ACT1GP1|ACTGP1|HY-psi-gamma-AC6 HGNC:146 3 3q23 actin, gamma 1 pseudogene 1 pseudo ACTG1P1 actin, gamma 1 pseudogene 1 O - 20121230 -9606 74 ACTG1P2 - ACTGP2|ACTL2 HGNC:147 Y Yq11 actin, gamma 1 pseudogene 2 pseudo ACTG1P2 actin, gamma 1 pseudogene 2 O - 20121230 -9606 75 ACTG1P3 - ACTGP3|dJ545L17.4 HGNC:148 20 20p13 actin, gamma 1 pseudogene 3 pseudo ACTG1P3 actin, gamma 1 pseudogene 3 O - 20121230 -9606 78 ACTG1P6 - ACTGP6 HGNC:151 1 1p21 actin, gamma 1 pseudogene 6 pseudo ACTG1P6 actin, gamma 1 pseudogene 6 O - 20091219 -9606 79 ACTG1P7 - ACTGP7 HGNC:152 1 1p21 actin, gamma 1 pseudogene 7 pseudo ACTG1P7 actin, gamma 1 pseudogene 7 O - 20091219 -9606 80 ACTG1P8 - ACTGP8 HGNC:153 1 1p21 actin, gamma 1 pseudogene 8 pseudo ACTG1P8 actin, gamma 1 pseudogene 8 O - 20091219 -9606 81 ACTN4 - ACTININ-4|FSGS|FSGS1 HGNC:166|MIM:604638|Ensembl:ENSG00000130402|HPRD:05222|Vega:OTTHUMG00000137382 19 19q13 actinin, alpha 4 protein-coding ACTN4 actinin, alpha 4 O F-actin cross-linking protein|actinin alpha4 isoform|alpha-actinin-4|focal segmental glomerulosclerosis 1|non-muscle alpha-actinin 4 20121230 -9606 82 ACTG1P9 - ACTGP9 HGNC:154 6 6p12.3 actin, gamma 1 pseudogene 9 pseudo ACTG1P9 actin, gamma 1 pseudogene 9 O - 20121230 -9606 83 ACTG1P10 - ACTGP10|ACTL1|ACTP1 HGNC:155 X Xp11.22 actin, gamma 1 pseudogene 10 pseudo ACTG1P10 actin, gamma 1 pseudogene 10 O - 20121230 -9606 84 ACTL4 - - HGNC:158 3 3pter-q21 actin-like 4 protein-coding ACTL4 actin-like 4 O - 20080828 -9606 86 ACTL6A - ACTL6|ARPN-BETA|Arp4|BAF53A|INO80K HGNC:24124|MIM:604958|Ensembl:ENSG00000136518|HPRD:05389|Vega:OTTHUMG00000157782 3 3q26.33 actin-like 6A protein-coding ACTL6A actin-like 6A O 53 kDa BRG1-associated factor A|BAF complex 53 kDa subunit|BAF53|BRG1-associated factor 53A|INO80 complex subunit K|actin-like protein 6A|actin-related protein 4|actin-related protein Baf53a|arpNbeta|hArpN beta 20121230 -9606 87 ACTN1 - - HGNC:163|MIM:102575|Ensembl:ENSG00000072110|HPRD:00020|Vega:OTTHUMG00000171386 14 14q24|14q22-q24 actinin, alpha 1 protein-coding ACTN1 actinin, alpha 1 O F-actin cross-linking protein|actinin 1 smooth muscle|alpha-actinin cytoskeletal isoform|alpha-actinin-1|non-muscle alpha-actinin-1 20121230 -9606 88 ACTN2 - CMD1AA HGNC:164|MIM:102573|Ensembl:ENSG00000077522|HPRD:00019|Vega:OTTHUMG00000040059 1 1q42-q43 actinin, alpha 2 protein-coding ACTN2 actinin, alpha 2 O F-actin cross-linking protein|alpha-actinin skeletal muscle|alpha-actinin-2 20121230 -9606 89 ACTN3 - - HGNC:165|MIM:102574|HPRD:02148 11 11q13.1 actinin, alpha 3 protein-coding ACTN3 actinin, alpha 3 O F-actin cross-linking protein|alpha-actinin skeletal muscle|alpha-actinin-3 20121230 -9606 90 ACVR1 - ACTRI|ACVR1A|ACVRLK2|ALK2|FOP|SKR1|TSRI HGNC:171|MIM:102576|Ensembl:ENSG00000115170|HPRD:00021|Vega:OTTHUMG00000131967 2 2q23-q24 activin A receptor, type I protein-coding ACVR1 activin A receptor, type I O TGF-B superfamily receptor type I|activin A receptor, type II-like kinase 2|activin receptor type I|activin receptor type-1|activin receptor-like kinase 2|hydroxyalkyl-protein kinase|serine/threonine-protein kinase receptor R1 20121230 -9606 91 ACVR1B - ACTRIB|ACVRLK4|ALK4|SKR2 HGNC:172|MIM:601300|Ensembl:ENSG00000135503|HPRD:03193|Vega:OTTHUMG00000167920 12 12q13 activin A receptor, type IB protein-coding ACVR1B activin A receptor, type IB O activin A receptor, type II-like kinase 4|activin receptor type-1B|activin receptor-like kinase 4|serine/threonine-protein kinase receptor R2 20121230 -9606 92 ACVR2A - ACTRII|ACVR2 HGNC:173|MIM:102581|Ensembl:ENSG00000121989|HPRD:00025|Vega:OTTHUMG00000150603 2 2q22.3 activin A receptor, type IIA protein-coding ACVR2A activin A receptor, type IIA O activin receptor type-2A 20121230 -9606 93 ACVR2B - ACTRIIB|ActR-IIB|HTX4 HGNC:174|MIM:602730|Ensembl:ENSG00000114739|HPRD:04106|Vega:OTTHUMG00000131291 3 3p22 activin A receptor, type IIB protein-coding ACVR2B activin A receptor, type IIB O activin receptor type-2B 20121230 -9606 94 ACVRL1 - ACVRLK1|ALK-1|ALK1|HHT|HHT2|ORW2|SKR3|TSR-I HGNC:175|MIM:601284|Ensembl:ENSG00000139567|HPRD:03181|Vega:OTTHUMG00000169507 12 12q13.13 activin A receptor type II-like 1 protein-coding ACVRL1 activin A receptor type II-like 1 O TGF-B superfamily receptor type I|activin A receptor, type II-like kinase 1|serine/threonine-protein kinase receptor R3 20121230 -9606 95 ACY1 - ACY-1|ACY1D HGNC:177|MIM:104620|Ensembl:ENSG00000114786|Ensembl:ENSG00000243989|HPRD:00092|Vega:OTTHUMG00000157815|Vega:OTTHUMG00000166447 3 3p21.1 aminoacylase 1 protein-coding ACY1 aminoacylase 1 O N-acyl-L-amino-acid amidohydrolase|acylase|aminoacylase-1 20121230 -9606 97 ACYP1 - ACYPE HGNC:179|MIM:600875|Ensembl:ENSG00000119640|HPRD:02928|Vega:OTTHUMG00000171767 14 14q24.3 acylphosphatase 1, erythrocyte (common) type protein-coding ACYP1 acylphosphatase 1, erythrocyte (common) type O acylphosphatase, erythrocyte isozyme|acylphosphatase, organ-common type isozyme|acylphosphatase-1|acylphosphate phosphohydrolase 1 20121230 -9606 98 ACYP2 - ACYM|ACYP HGNC:180|MIM:102595|Ensembl:ENSG00000170634|HPRD:00028|Vega:OTTHUMG00000129287 2 2p16.2 acylphosphatase 2, muscle type protein-coding ACYP2 acylphosphatase 2, muscle type O acylphosphatase, muscle type isozyme|acylphosphatase-2|acylphosphate phosphohydrolase 2 20121230 -9606 100 ADA - - HGNC:186|MIM:608958|Ensembl:ENSG00000196839|HPRD:00038|Vega:OTTHUMG00000033081 20 20q13.12 adenosine deaminase protein-coding ADA adenosine deaminase O adenosine aminohydrolase 20121230 -9606 101 ADAM8 - CD156|MS2 HGNC:215|MIM:602267|Ensembl:ENSG00000151651|HPRD:03777|Vega:OTTHUMG00000019309 10 10q26.3 ADAM metallopeptidase domain 8 protein-coding ADAM8 ADAM metallopeptidase domain 8 O a disintegrin and metalloproteinase domain 8|cell surface antigen MS2|disintegrin and metalloproteinase domain-containing protein 8|human leukocyte differentiation antigen 20121230 -9606 102 ADAM10 - AD10|CD156c|HsT18717|MADM|kuz HGNC:188|MIM:602192|Ensembl:ENSG00000137845|HPRD:03723|Vega:OTTHUMG00000132633 15 15q22 ADAM metallopeptidase domain 10 protein-coding ADAM10 ADAM metallopeptidase domain 10 O ADAM 10|CDw156|a disintegrin and metalloprotease domain 10|a disintegrin and metalloproteinase domain 10|disintegrin and metalloproteinase domain-containing protein 10|kuzbanian protein homolog|mammalian disintegrin-metalloprotease 20121230 -9606 103 ADAR RP11-61L14.5 ADAR1|DRADA|DSH|DSRAD|G1P1|IFI-4|IFI4|K88DSRBP|P136 HGNC:225|MIM:146920|Ensembl:ENSG00000160710|HPRD:07528|Vega:OTTHUMG00000037261 1 1q21.3 adenosine deaminase, RNA-specific protein-coding ADAR adenosine deaminase, RNA-specific O 136 kDa double-stranded RNA-binding protein|adenosine deaminase acting on RNA 1-A|double-stranded RNA-specific adenosine deaminase|dsRNA adenosine deaminase|interferon-induced protein 4|interferon-inducible protein 4 20121230 -9606 104 ADARB1 - ADAR2|DRABA2|DRADA2|RED1 HGNC:226|MIM:601218|Ensembl:ENSG00000197381|HPRD:06777|Vega:OTTHUMG00000090295 21 21q22.3 adenosine deaminase, RNA-specific, B1 protein-coding ADARB1 adenosine deaminase, RNA-specific, B1 O RED1 homolog|RNA editase|RNA editing deaminase 1|RNA-editing deaminase 1|RNA-editing enzyme 1|adenosine deaminase, RNA-specific, B1 (RED1 homolog rat)|adenosine deaminase, RNA-specific, B1 (homolog of rat RED1)|double-stranded RNA-specific editase 1|dsRNA adenosine deaminase DRADA2 20121230 -9606 105 ADARB2 RP11-29A19.1 ADAR3|RED2 HGNC:227|MIM:602065|Ensembl:ENSG00000185736|HPRD:09070|Vega:OTTHUMG00000017543 10 10p15.3 adenosine deaminase, RNA-specific, B2 protein-coding ADARB2 adenosine deaminase, RNA-specific, B2 O RED2 homolog|RNA-dependent adenosine deaminase 3|RNA-editing deaminase 2|RNA-editing enzyme 2|adenosine deaminase, RNA-specific, B2 (RED1 homolog rat)|adenosine deaminase, RNA-specific, B2 (RED2 homolog rat)|double-stranded RNA-specific editase B2|dsRNA adenosine deaminase B2|homolog of rat BLUE 20121230 -9606 106 ADCP1 - - HGNC:229 6 - adenosine deaminase complexing protein 1 unknown ADCP1 adenosine deaminase complexing protein 1 O - 20100127 -9606 107 ADCY1 - AC1 HGNC:232|MIM:103072|Ensembl:ENSG00000164742|HPRD:00053|Vega:OTTHUMG00000155420 7 7p13-p12 adenylate cyclase 1 (brain) protein-coding ADCY1 adenylate cyclase 1 (brain) O 3',5'-cyclic AMP synthetase|ATP pyrophosphate-lyase 1|Ca(2+)/calmodulin-activated adenylyl cyclase|adenyl cyclase|adenylate cyclase type 1|adenylate cyclase type I|adenylyl cyclase 1 20121230 -9606 108 ADCY2 - AC2|HBAC2 HGNC:233|MIM:103071|Ensembl:ENSG00000078295|HPRD:00052|Vega:OTTHUMG00000090476 5 5p15.3 adenylate cyclase 2 (brain) protein-coding ADCY2 adenylate cyclase 2 (brain) O 3',5'-cyclic AMP synthetase|ATP pyrophosphate-lyase 2|adenylate cyclase II|adenylate cyclase type 2|adenylate cyclase type II|adenylyl cyclase 2|type II adenylate cyclase 20121230 -9606 109 ADCY3 - AC3 HGNC:234|MIM:600291|Ensembl:ENSG00000138031|HPRD:02620|Vega:OTTHUMG00000094765 2 2p23.3 adenylate cyclase 3 protein-coding ADCY3 adenylate cyclase 3 O AC-III|ATP pyrophosphate-lyase 3|adenylate cyclase type 3|adenylate cyclase type III|adenylate cyclase, olfactive type|adenylyl cyclase 3|adenylyl cyclase, type III 20121230 -9606 111 ADCY5 - AC5|FDFM HGNC:236|MIM:600293|Ensembl:ENSG00000173175|HPRD:08973|Vega:OTTHUMG00000159517 3 3q21.1 adenylate cyclase 5 protein-coding ADCY5 adenylate cyclase 5 O ATP pyrophosphate-lyase 5|adenylate cyclase type 5|adenylate cyclase type V|adenylyl cyclase 5 20121230 -9606 112 ADCY6 - AC6 HGNC:237|MIM:600294|Ensembl:ENSG00000174233|HPRD:02621|Vega:OTTHUMG00000170396 12 12q12-q13 adenylate cyclase 6 protein-coding ADCY6 adenylate cyclase 6 O ATP pyrophosphate-lyase 6|adenylate cyclase type 6|adenylate cyclase type VI|adenylyl cyclase 6|ca(2+)-inhibitable adenylyl cyclase 20121230 -9606 113 ADCY7 - AC7 HGNC:238|MIM:600385|Ensembl:ENSG00000121281|HPRD:02663|Vega:OTTHUMG00000133172 16 16q12.1 adenylate cyclase 7 protein-coding ADCY7 adenylate cyclase 7 O ATP pyrophosphate-lyase 7|adenylate cyclase type 7|adenylate cyclase type VII|adenylyl cyclase 7 20121230 -9606 114 ADCY8 - AC8|ADCY3|HBAC1 HGNC:239|MIM:103070|Ensembl:ENSG00000155897|HPRD:00051|Vega:OTTHUMG00000164756 8 8q24 adenylate cyclase 8 (brain) protein-coding ADCY8 adenylate cyclase 8 (brain) O ATP pyrophosphate-lyase 8|adenylate cyclase type 8|adenylate cyclase type VIII|adenylyl cyclase 8|adenylyl cyclase-8, brain|ca(2+)/calmodulin-activated adenylyl cyclase 20121230 -9606 115 ADCY9 - AC9 HGNC:240|MIM:603302|Ensembl:ENSG00000162104|HPRD:04489|Vega:OTTHUMG00000177612 16 16p13.3 adenylate cyclase 9 protein-coding ADCY9 adenylate cyclase 9 O ATP pyrophosphate-lyase 9|adenylate cyclase type 9|adenylate cyclase type IX|adenylyl cyclase 9|type IX ATP pyrophosphate-lyase 20121230 -9606 116 ADCYAP1 - PACAP HGNC:241|MIM:102980|Ensembl:ENSG00000141433|HPRD:02369|Vega:OTTHUMG00000131479 18 18p11 adenylate cyclase activating polypeptide 1 (pituitary) protein-coding ADCYAP1 adenylate cyclase activating polypeptide 1 (pituitary) O pituitary adenylate cyclase-activating polypeptide 20121230 -9606 117 ADCYAP1R1 - PAC1|PAC1R|PACAPR|PACAPRI HGNC:242|MIM:102981|Ensembl:ENSG00000078549|HPRD:00045|Vega:OTTHUMG00000023884 7 7p14 adenylate cyclase activating polypeptide 1 (pituitary) receptor type I protein-coding ADCYAP1R1 adenylate cyclase activating polypeptide 1 (pituitary) receptor type I O PACAP receptor 1|PACAP type I receptor|PACAP-R1|pituitary adenylate cyclase activating polypeptide 1 receptor type I Hiphop|pituitary adenylate cyclase-activating polypeptide type I receptor 20121230 -9606 118 ADD1 RP11-520M5.1 ADDA HGNC:243|MIM:102680|Ensembl:ENSG00000087274|HPRD:00036|Vega:OTTHUMG00000122080 4 4p16.3 adducin 1 (alpha) protein-coding ADD1 adducin 1 (alpha) O alpha-adducin|erythrocyte adducin alpha subunit 20121230 -9606 119 ADD2 - ADDB HGNC:244|MIM:102681|Ensembl:ENSG00000075340|HPRD:00037|Vega:OTTHUMG00000129710 2 2p13.3 adducin 2 (beta) protein-coding ADD2 adducin 2 (beta) O beta-adducin|erythrocyte adducin subunit beta 20121230 -9606 120 ADD3 RP11-252O7.3 ADDL HGNC:245|MIM:601568|Ensembl:ENSG00000148700|HPRD:03339|Vega:OTTHUMG00000019032 10 10q25.2 adducin 3 (gamma) protein-coding ADD3 adducin 3 (gamma) O adducin-like protein 70|gamma-adducin 20121230 -9606 122 ADFN - ALDS HGNC:247|MIM:300700 X Xq25-q26|Xq26.3-q27.1 albinism-deafness syndrome unknown ADFN albinism-deafness syndrome O - 20120622 -9606 123 PLIN2 RP11-151J10.1 ADFP|ADRP HGNC:248|MIM:103195|Ensembl:ENSG00000147872|HPRD:00057|Vega:OTTHUMG00000019624 9 9p22.1 perilipin 2 protein-coding PLIN2 perilipin 2 O adipophilin|adipose differentiation-related protein|perilipin-2 20121230 -9606 124 ADH1A - ADH1 HGNC:249|MIM:103700|Ensembl:ENSG00000187758|HPRD:00063|Vega:OTTHUMG00000131026 4 4q23 alcohol dehydrogenase 1A (class I), alpha polypeptide protein-coding ADH1A alcohol dehydrogenase 1A (class I), alpha polypeptide O ADH, alpha subunit|alcohol dehydrogenase 1 (class I), alpha polypeptide|alcohol dehydrogenase 1A|alcohol dehydrogenase subunit alpha|aldehyde reductase 20121230 -9606 125 ADH1B - ADH2 HGNC:250|MIM:103720|Ensembl:ENSG00000196616|HPRD:00065|Vega:OTTHUMG00000161413 4 4q23 alcohol dehydrogenase 1B (class I), beta polypeptide protein-coding ADH1B alcohol dehydrogenase 1B (class I), beta polypeptide O ADH, beta subunit|alcohol dehydrogenase 1B|alcohol dehydrogenase 2 (class I), beta polypeptide|alcohol dehydrogenase subunit beta|aldehyde reductase 20121230 -9606 126 ADH1C - ADH3 HGNC:251|MIM:103730|Ensembl:ENSG00000248144|HPRD:00066|Vega:OTTHUMG00000161422 4 4q23 alcohol dehydrogenase 1C (class I), gamma polypeptide protein-coding ADH1C alcohol dehydrogenase 1C (class I), gamma polypeptide O ADH, gamma subunit|alcohol dehydrogenase 1C|alcohol dehydrogenase 3 (class I), gamma polypeptide|alcohol dehydrogenase subunit gamma|aldehyde reductase 20121230 -9606 127 ADH4 - ADH-2 HGNC:252|MIM:103740|Ensembl:ENSG00000198099|HPRD:00068|Vega:OTTHUMG00000161227 4 4q22 alcohol dehydrogenase 4 (class II), pi polypeptide protein-coding ADH4 alcohol dehydrogenase 4 (class II), pi polypeptide O alcohol dehydrogenase 4|alcohol dehydrogenase class II pi chain|aldehyde reductase 20121230 -9606 128 ADH5 - ADH-3|ADHX|FALDH|FDH|GSH-FDH|GSNOR HGNC:253|MIM:103710|Ensembl:ENSG00000197894|HPRD:00064|Vega:OTTHUMG00000161230 4 4q23 alcohol dehydrogenase 5 (class III), chi polypeptide protein-coding ADH5 alcohol dehydrogenase 5 (class III), chi polypeptide O S-(hydroxymethyl)glutathione dehydrogenase|alcohol dehydrogenase (class III), chi polypeptide|alcohol dehydrogenase class chi chain|alcohol dehydrogenase class-3|alcohol dehydrogenase class-III|formaldehyde dehydrogenase|glutathione-dependent formaldehyde dehydrogenase 20121230 -9606 130 ADH6 - ADH-5 HGNC:255|MIM:103735|Ensembl:ENSG00000172955|HPRD:00067|Vega:OTTHUMG00000131024 4 4q23 alcohol dehydrogenase 6 (class V) protein-coding ADH6 alcohol dehydrogenase 6 (class V) O alcohol dehydrogenase 6|aldehyde reductase 20121230 -9606 131 ADH7 - ADH4 HGNC:256|MIM:600086|Ensembl:ENSG00000196344|HPRD:02515|Vega:OTTHUMG00000159318 4 4q23-q24 alcohol dehydrogenase 7 (class IV), mu or sigma polypeptide protein-coding ADH7 alcohol dehydrogenase 7 (class IV), mu or sigma polypeptide O alcohol dehydrogenase VII|alcohol dehydrogenase class 4 mu/sigma chain|alcohol dehydrogenase class IV mu/sigma chain|alcohol dehydrogenase-7|class IV sigma-1 alcohol dehydrogenase|class IV sigmasigma alcohol dehydrogenase|gastric alcohol dehydrogenase|retinol dehydrogenase 20121230 -9606 132 ADK - AK HGNC:257|MIM:102750|Ensembl:ENSG00000156110|HPRD:00039|Vega:OTTHUMG00000018506 10 10q22|10q11-q24 adenosine kinase protein-coding ADK adenosine kinase O adenosine 5'-phosphotransferase 20121230 -9606 133 ADM - AM HGNC:259|MIM:103275|Ensembl:ENSG00000148926|HPRD:00061|Vega:OTTHUMG00000165907 11 11p15.4 adrenomedullin protein-coding ADM adrenomedullin O preproadrenomedullin 20121230 -9606 134 ADORA1 - RDC7 HGNC:262|MIM:102775|Ensembl:ENSG00000163485|HPRD:00042|Vega:OTTHUMG00000042125 1 1q32.1 adenosine A1 receptor protein-coding ADORA1 adenosine A1 receptor O adenosine receptor A1 20121230 -9606 135 ADORA2A - ADORA2|RDC8|hA2aR HGNC:263|MIM:102776|Ensembl:ENSG00000128271|HPRD:00043|Vega:OTTHUMG00000150761 22 22q11.23 adenosine A2a receptor protein-coding ADORA2A adenosine A2a receptor O adenosine A2 receptor|adenosine receptor A2a|adenosine receptor subtype A2a 20121230 -9606 136 ADORA2B - ADORA2 HGNC:264|MIM:600446|Ensembl:ENSG00000170425|HPRD:15971|Vega:OTTHUMG00000059140 17 17p12 adenosine A2b receptor protein-coding ADORA2B adenosine A2b receptor O adenosine receptor A2b 20121230 -9606 137 ADORA2BP1 - ADORA2BP HGNC:265 1 1q32 adenosine A2b receptor pseudogene 1 pseudo ADORA2BP1 adenosine A2b receptor pseudogene 1 O - 20121230 -9606 140 ADORA3 RP11-552M11.7 A3AR|AD026|bA552M11.5 HGNC:268|MIM:600445|Ensembl:ENSG00000121933|HPRD:08984|HPRD:12424|Vega:OTTHUMG00000011957 1 1p13.2 adenosine A3 receptor protein-coding ADORA3 adenosine A3 receptor O adenosine receptor A3 20121230 -9606 141 ADPRH - ARH1 HGNC:269|MIM:603081|Ensembl:ENSG00000144843|HPRD:04359|Vega:OTTHUMG00000159420 3 3q13.31-q13.33 ADP-ribosylarginine hydrolase protein-coding ADPRH ADP-ribosylarginine hydrolase O ADP-ribose-L-arginine cleaving enzyme|[Protein ADP-ribosylarginine] hydrolase 20121230 -9606 142 PARP1 RP11-125A15.2 ADPRT|ADPRT 1|ADPRT1|ARTD1|PARP|PARP-1|PPOL|pADPRT-1 HGNC:270|MIM:173870|Ensembl:ENSG00000143799|HPRD:01435|Vega:OTTHUMG00000037556 1 1q41-q42 poly (ADP-ribose) polymerase 1 protein-coding PARP1 poly (ADP-ribose) polymerase 1 O ADP-ribosyltransferase (NAD+; poly (ADP-ribose) polymerase)|ADP-ribosyltransferase NAD(+)|ADP-ribosyltransferase diphtheria toxin-like 1|NAD(+) ADP-ribosyltransferase 1|poly (ADP-ribose) polymerase family, member 1|poly [ADP-ribose] polymerase 1|poly(ADP-ribose) polymerase|poly(ADP-ribose) synthetase|poly(ADP-ribosyl)transferase|poly[ADP-ribose] synthase 1 20121230 -9606 143 PARP4 RP11-169O17.2 ADPRTL1|ARTD4|PARP-4|PARPL|PH5P|VAULT3|VPARP|VWA5C|p193 HGNC:271|MIM:607519|Ensembl:ENSG00000102699|HPRD:09598|Vega:OTTHUMG00000016582 13 13q11 poly (ADP-ribose) polymerase family, member 4 protein-coding PARP4 poly (ADP-ribose) polymerase family, member 4 O 193 kDa vault protein|ADP-ribosyltransferase (NAD+; poly (ADP-ribose) polymerase)-like 1|ADP-ribosyltransferase diphtheria toxin-like 4|H5 proline-rich|I-alpha-I-related|PARP-related|PARP-related/IalphaI-related H5/proline-rich|poly [ADP-ribose] polymerase 4|poly(ADP-ribose) synthetase|poly(ADP-ribosyl)transferase-like 1|vault poly(ADP-ribose) polymerase|vault protein, 193-kDa|von Willebrand factor A domain containing 5C 20121230 -9606 144 PARP1P1 - ADPRTP1|PPOLP1 HGNC:275 13 13q34 poly (ADP-ribose) polymerase family, member 1 pseudogene 1 pseudo PARP1P1 poly (ADP-ribose) polymerase family, member 1 pseudogene 1 O - 20121230 -9606 145 PARP1P2 - ADPRTP2|PPOLP2 HGNC:276 14 14q22 poly (ADP-ribose) polymerase family, member 1 pseudogene 2 pseudo PARP1P2 poly (ADP-ribose) polymerase family, member 1 pseudogene 2 O - 20121230 -9606 146 ADRA1D - ADRA1|ADRA1A|ADRA1R|ALPHA1|DAR|dJ779E11.2 HGNC:280|MIM:104219|Ensembl:ENSG00000171873|HPRD:00079|Vega:OTTHUMG00000031779 20 20p13 adrenoceptor alpha 1D protein-coding ADRA1D adrenoceptor alpha 1D O adrenergic, alpha -1D-, receptor|adrenergic, alpha-1A-, receptor|adrenergic, alpha-1D-, receptor|alpha-1A adrenergic receptor|alpha-1D adrenergic receptor|alpha-1D adrenoceptor|alpha-1D adrenoreceptor|alpha-1D-adrenergic receptor|alpha-adrenergic receptor 1a 20121230 -9606 147 ADRA1B - ADRA1|ALPHA1BAR HGNC:278|MIM:104220|Ensembl:ENSG00000170214|HPRD:00080|Vega:OTTHUMG00000130327 5 5q33.3 adrenoceptor alpha 1B protein-coding ADRA1B adrenoceptor alpha 1B O adrenergic, alpha-1B-, receptor|alpha-1B adrenergic receptor|alpha-1B adrenoceptor|alpha-1B adrenoreceptor|alpha-1B-adrenergic receptor 20121230 -9606 148 ADRA1A - ADRA1C|ADRA1L1|ALPHA1AAR HGNC:277|MIM:104221|Ensembl:ENSG00000120907|HPRD:00081|Vega:OTTHUMG00000099459 8 8p21.2 adrenoceptor alpha 1A protein-coding ADRA1A adrenoceptor alpha 1A O G protein coupled receptor|adrenergic, alpha-1A-, receptor variant 1|adrenergic, alpha-1A-, receptor variant 3|adrenergic, alpha-1A-, receptor variant 5|adrenergic, alpha-1A-, receptor variant 8|alpha-1A adrenergic receptor|alpha-1A adrenoceptor|alpha-1A adrenoreceptor|alpha-1C adrenergic receptor 20121230 -9606 150 ADRA2A - ADRA2|ADRA2R|ADRAR|ALPHA2AAR|ZNF32 HGNC:281|MIM:104210|Ensembl:ENSG00000150594|HPRD:00078|Vega:OTTHUMG00000019050 10 10q25.2 adrenoceptor alpha 2A protein-coding ADRA2A adrenoceptor alpha 2A O adrenergic, alpha-2A-, receptor|alpha-2 adrenergic receptor subtype C10|alpha-2-adrenergic receptor, platelet type|alpha-2A adrenergic receptor|alpha-2A adrenoceptor|alpha-2A adrenoreceptor|alpha-2AAR subtype C10 20121230 -9606 151 ADRA2B - ADRA2L1|ADRA2RL1|ADRARL1|ALPHA2BAR|alpha-2BAR HGNC:282|MIM:104260|Ensembl:ENSG00000222040|HPRD:00086|Vega:OTTHUMG00000154375 2 2q11.1 adrenoceptor alpha 2B protein-coding ADRA2B adrenoceptor alpha 2B O ADRA2B adrenergic, alpha-2B-, receptor|G-protein coupled receptor|adrenergic receptor alpha 2B|adrenergic, alpha-2B-, receptor|alpha-2 adrenergic receptor subtype C2|alpha-2-adrenergic receptor-like 1|alpha-2B adrenergic receptor|alpha-2B adrenoceptor|alpha-2B adrenoreceptor 20121230 -9606 152 ADRA2C - ADRA2L2|ADRA2RL2|ADRARL2|ALPHA2CAR HGNC:283|MIM:104250|Ensembl:ENSG00000184160|HPRD:00085|Vega:OTTHUMG00000159830 4 4p16 adrenoceptor alpha 2C protein-coding ADRA2C adrenoceptor alpha 2C O adrenergic, alpha-2C-, receptor|alpha-2 adrenergic receptor subtype C4|alpha-2C adrenergic receptor|alpha-2C adrenoceptor|alpha-2C adrenoreceptor|alpha-2C-adrenergic receptor|alpha-2CAR|alpha2-AR-C4 20121230 -9606 153 ADRB1 - ADRB1R|B1AR|BETA1AR|RHR HGNC:285|MIM:109630|Ensembl:ENSG00000043591|HPRD:00181|Vega:OTTHUMG00000019079 10 10q25.3 adrenoceptor beta 1 protein-coding ADRB1 adrenoceptor beta 1 O adrenergic, beta-1-, receptor|beta-1 adrenergic receptor|beta-1 adrenoceptor|beta-1 adrenoreceptor 20121230 -9606 154 ADRB2 - ADRB2R|ADRBR|B2AR|BAR|BETA2AR HGNC:286|MIM:109690|Ensembl:ENSG00000169252|HPRD:00187|Vega:OTTHUMG00000129933 5 5q31-q32 adrenoceptor beta 2, surface protein-coding ADRB2 adrenoceptor beta 2, surface O adrenergic, beta-2-, receptor, surface|beta-2 adrenergic receptor|beta-2 adrenoceptor|beta-2 adrenoreceptor|catecholamine receptor 20121230 -9606 155 ADRB3 - BETA3AR HGNC:288|MIM:109691|Ensembl:ENSG00000188778|HPRD:00188|Vega:OTTHUMG00000164028 8 8p12 adrenoceptor beta 3 protein-coding ADRB3 adrenoceptor beta 3 O adrenergic, beta-3-, receptor|beta-3 adrenergic receptor|beta-3 adrenoceptor|beta-3 adrenoreceptor 20121230 -9606 156 ADRBK1 - BARK1|BETA-ARK1|GRK2 HGNC:289|MIM:109635|Ensembl:ENSG00000173020|HPRD:00182|Vega:OTTHUMG00000167104 11 11q13.1 adrenergic, beta, receptor kinase 1 protein-coding ADRBK1 adrenergic, beta, receptor kinase 1 O G-protein coupled receptor kinase 2|beta-ARK-1|beta-adrenergic receptor kinase 1 20121230 -9606 157 ADRBK2 - BARK2|GRK3 HGNC:290|MIM:109636|Ensembl:ENSG00000100077|HPRD:00183|Vega:OTTHUMG00000150280 22 22q12.1 adrenergic, beta, receptor kinase 2 protein-coding ADRBK2 adrenergic, beta, receptor kinase 2 O G-protein-coupled receptor kinase 3|beta-ARK-2|beta-adrenergic receptor kinase 2 20121230 -9606 158 ADSL RP5-1042K10.8 AMPS|ASASE|ASL HGNC:291|MIM:608222|Ensembl:ENSG00000239900|HPRD:00049|Vega:OTTHUMG00000166425 22 22q13.2 adenylosuccinate lyase protein-coding ADSL adenylosuccinate lyase O adenylosuccinase 20121230 -9606 159 ADSS RP11-518L10.4 ADEH|ADSS 2 HGNC:292|MIM:103060|Ensembl:ENSG00000035687|HPRD:00050|Vega:OTTHUMG00000040102 1 1q44 adenylosuccinate synthase protein-coding ADSS adenylosuccinate synthase O AMPSase 2|IMP--aspartate ligase 2|L-type adenylosuccinate synthetase|adenylosuccinate synthetase (Ade(-)H-complementing)|adenylosuccinate synthetase isozyme 2|adenylosuccinate synthetase, acidic isozyme|adenylosuccinate synthetase, liver isozyme 20121230 -9606 160 AP2A1 - ADTAA|AP2-ALPHA|CLAPA1 HGNC:561|MIM:601026|Ensembl:ENSG00000196961|HPRD:03016 19 19q13.33 adaptor-related protein complex 2, alpha 1 subunit protein-coding AP2A1 adaptor-related protein complex 2, alpha 1 subunit O 100 kDa coated vesicle protein A|AP-2 complex subunit alpha-1|adapter-related protein complex 2 alpha-1 subunit|adaptin, alpha A|adaptor protein complex AP-2 subunit alpha-1|alpha-adaptin A|alpha1-adaptin|clathrin assembly protein complex 2 alpha-A large chain|clathrin-associated/assembly/adaptor protein, large, alpha 1|plasma membrane adaptor HA2/AP2 adaptin alpha A subunit 20121230 -9606 161 AP2A2 - ADTAB|CLAPA2|HIP-9|HIP9|HYPJ HGNC:562|MIM:607242|Ensembl:ENSG00000183020|HPRD:06256|Vega:OTTHUMG00000165627 11 11p15.5 adaptor-related protein complex 2, alpha 2 subunit protein-coding AP2A2 adaptor-related protein complex 2, alpha 2 subunit O 100 kDa coated vesicle protein C|AP-2 complex subunit alpha-2|adaptin, alpha B|alpha-adaptin C; Huntingtin interacting protein J|alpha2-adaptin|clathrin assembly protein complex 2 alpha-C large chain|clathrin-associated/assembly/adaptor protein, large, alpha 2|huntingtin yeast partner J|huntingtin-interacting protein 9|plasma membrane adaptor HA2/AP2 adaptin alpha C subunit 20121230 -9606 162 AP1B1 - ADTB1|AP105A|BAM22|CLAPB2 HGNC:554|MIM:600157|Ensembl:ENSG00000100280|HPRD:02541|Vega:OTTHUMG00000151109 22 22q12.2 adaptor-related protein complex 1, beta 1 subunit protein-coding AP1B1 adaptor-related protein complex 1, beta 1 subunit O AP-1 complex subunit beta-1|Golgi adaptor HA1/AP1 adaptin beta subunit|adapter-related protein complex 1 subunit beta-1|adaptor protein complex AP-1 subunit beta-1|beta-1-adaptin|beta-adaptin 1|beta-prime-adaptin|beta1-adaptin|clathrin assembly protein complex 1 beta large chain|plasma membrane adaptor HA2/AP2 adaptor beta subunit 20121230 -9606 163 AP2B1 - ADTB2|AP105B|AP2-BETA|CLAPB1 HGNC:563|MIM:601025|Ensembl:ENSG00000006125|HPRD:03015|Vega:OTTHUMG00000179924 17 17q11.2-q12 adaptor-related protein complex 2, beta 1 subunit protein-coding AP2B1 adaptor-related protein complex 2, beta 1 subunit O AP-2 complex subunit beta|adapter-related protein complex 2 beta subunit|adaptin, beta 2 (beta)|adaptor protein complex AP-2 subunit beta|beta-2-adaptin|beta-adaptin|clathrin assembly protein complex 2 beta large chain|clathrin-associated/assembly/adaptor protein, large, beta 1|plasma membrane adaptor HA2/AP2 adaptin beta subunit 20121230 -9606 164 AP1G1 - ADTG|CLAPG1 HGNC:555|MIM:603533|Ensembl:ENSG00000166747|HPRD:04637|Vega:OTTHUMG00000176871 16 16q23 adaptor-related protein complex 1, gamma 1 subunit protein-coding AP1G1 adaptor-related protein complex 1, gamma 1 subunit O AP-1 complex subunit gamma-1|adapter-related protein complex 1 subunit gamma-1|adaptor protein complex AP-1 subunit gamma-1|clathrin assembly protein complex 1 gamma large chain|clathrin assembly protein complex 1 gamma-1 large chain|clathrin-associated/assembly/adaptor protein, large, gamma 1|gamma adaptin|gamma1-adaptin|golgi adaptor HA1/AP1 adaptin gamma subunit|golgi adaptor HA1/AP1 adaptin subunit gamma-1 20121230 -9606 165 AEBP1 - ACLP HGNC:303|MIM:602981|Ensembl:ENSG00000106624|HPRD:04281|Vega:OTTHUMG00000023362 7 7p13 AE binding protein 1 protein-coding AEBP1 AE binding protein 1 O AE-binding protein 1|adipocyte enhancer binding protein 1|adipocyte enhancer-binding protein 1|aortic carboxypeptidase-like protein 20121230 -9606 166 AES - AES-1|AES-2|ESP1|GRG|GRG5|TLE5 HGNC:307|MIM:600188|Ensembl:ENSG00000104964|HPRD:02556|Vega:OTTHUMG00000180567 19 19p13.3 amino-terminal enhancer of split protein-coding AES amino-terminal enhancer of split O gp130-associated protein GAM 20121230 -9606 167 CRISP1 - AEGL1|ARP|CRISP-1|HSCRISP1D|HSCRISP1G|HUMARP HGNC:304|MIM:601193|Ensembl:ENSG00000124812|HPRD:03118|Vega:OTTHUMG00000014827 6 6p21.3 cysteine-rich secretory protein 1 protein-coding CRISP1 cysteine-rich secretory protein 1 O AEG-like protein|AEG-related protein|acidic epididymal glycoprotein homolog|acidic epididymal glycoprotein-like 1|cysteine-rich secretory protein-1 delta 20121230 -9606 169 AF8T - - HGNC:309|MIM:116950 3 - AF8 temperature sensitivity complementing unknown AF8T AF8 temperature sensitivity complementing O - 20110215 -9606 170 AFA - - HGNC:310|MIM:106250 - - ankyloblepharon filiforme adnatum unknown AFA ankyloblepharon filiforme adnatum O - 20110215 -9606 171 AFD1 - AFDN HGNC:312|MIM:154400 9 9q32 acrofacial dysostosis 1, Nager type unknown AFD1 acrofacial dysostosis 1, Nager type O - 20110714 -9606 172 AFG3L1P - AFG3|AFG3L1 HGNC:314|MIM:603020|HPRD:04315 16 16q24.3 AFG3 ATPase family member 3-like 1 (S. cerevisiae), pseudogene pseudo AFG3L1P AFG3 ATPase family member 3-like 1 (S. cerevisiae), pseudogene O - 20121230 -9606 173 AFM - ALB2|ALBA|ALF HGNC:316|MIM:104145|Ensembl:ENSG00000079557|HPRD:00073|Vega:OTTHUMG00000130004 4 4q13.3 afamin protein-coding AFM afamin O alpha-Alb|alpha-albumin 20121230 -9606 174 AFP - FETA|HPAFP HGNC:317|MIM:104150|Ensembl:ENSG00000081051|HPRD:00074|Vega:OTTHUMG00000130011 4 4q13.3 alpha-fetoprotein protein-coding AFP alpha-fetoprotein O alpha-1-fetoprotein|alpha-fetoglobulin 20121230 -9606 175 AGA - AGU|ASRG|GA HGNC:318|MIM:613228|Ensembl:ENSG00000038002|HPRD:01949|Vega:OTTHUMG00000160723 4 4q34.3 aspartylglucosaminidase protein-coding AGA aspartylglucosaminidase O N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase|N4-(N-acetyl-beta-glucosaminyl)-L-asparagine amidase|aspartylglucosylamine deaspartylase|glycosylasparaginase 20121230 -9606 176 ACAN - AGC1|AGCAN|CSPG1|CSPGCP|MSK16|SEDK HGNC:319|MIM:155760|Ensembl:ENSG00000157766|HPRD:01123|Vega:OTTHUMG00000171989 15 15q26.1 aggrecan protein-coding ACAN aggrecan O aggrecan core protein|cartilage-specific proteoglycan core protein|chondroitin sulfate proteoglycan core protein 1|large aggregating proteoglycan 20121230 -9606 177 AGER DAMA-358M23.4 RAGE HGNC:320|MIM:600214|Ensembl:ENSG00000204305|HPRD:02568|Vega:OTTHUMG00000031120 6 6p21.3 advanced glycosylation end product-specific receptor protein-coding AGER advanced glycosylation end product-specific receptor O RAGE isoform NtRAGE-delta|RAGE isoform sRAGE-delta 20121230 -9606 178 AGL - GDE HGNC:321|MIM:610860|Ensembl:ENSG00000162688|HPRD:01984|Vega:OTTHUMG00000010803 1 1p21 amylo-alpha-1, 6-glucosidase, 4-alpha-glucanotransferase protein-coding AGL amylo-alpha-1, 6-glucosidase, 4-alpha-glucanotransferase O amylo-1, 6-glucosidase, 4-alpha-glucanotransferase|glycogen debrancher|glycogen debranching enzyme 20121230 -9606 179 AGMX2 - IMD6|XLA2 HGNC:323|MIM:300310 X Xp22 agammaglobulinemia, X-linked 2 (with growth hormone deficiency) unknown AGMX2 agammaglobulinemia, X-linked 2 (with growth hormone deficiency) O - 20120622 -9606 181 AGRP - AGRT|ART|ASIP2 HGNC:330|MIM:602311|Ensembl:ENSG00000159723|HPRD:09079|Vega:OTTHUMG00000137509 16 16q22 agouti related protein homolog (mouse) protein-coding AGRP agouti related protein homolog (mouse) O agouti-related protein 20121230 -9606 182 JAG1 - AGS|AHD|AWS|CD339|HJ1|JAGL1 HGNC:6188|MIM:601920|Ensembl:ENSG00000101384|HPRD:03562|Vega:OTTHUMG00000031872 20 20p12.1-p11.23 jagged 1 protein-coding JAG1 jagged 1 O protein jagged-1 20121230 -9606 183 AGT - ANHU|SERPINA8 HGNC:333|MIM:106150|Ensembl:ENSG00000135744|HPRD:00106|Vega:OTTHUMG00000037757 1 1q42.2 angiotensinogen (serpin peptidase inhibitor, clade A, member 8) protein-coding AGT angiotensinogen (serpin peptidase inhibitor, clade A, member 8) O alpha-1 antiproteinase, antitrypsin|angiotensin I|angiotensin II|angiotensinogen|pre-angiotensinogen|serine (or cysteine) proteinase inhibitor|serpin A8 20121230 -9606 185 AGTR1 - AG2S|AGTR1A|AGTR1B|AT1|AT1AR|AT1B|AT1BR|AT1R|AT2R1|AT2R1A|AT2R1B|HAT1R HGNC:336|MIM:106165|Ensembl:ENSG00000144891|HPRD:00107|Vega:OTTHUMG00000159503 3 3q24 angiotensin II receptor, type 1 protein-coding AGTR1 angiotensin II receptor, type 1 O type-1 angiotensin II receptor|type-1B angiotensin II receptor 20121230 -9606 186 AGTR2 - AT2|ATGR2|MRX88 HGNC:338|MIM:300034|Ensembl:ENSG00000180772|HPRD:02071|Vega:OTTHUMG00000022243 X Xq22-q23 angiotensin II receptor, type 2 protein-coding AGTR2 angiotensin II receptor, type 2 O angiotensin II type-2 receptor|type-2 angiotensin II receptor 20121230 -9606 187 APLNR - AGTRL1|APJ|APJR|HG11 HGNC:339|MIM:600052|HPRD:02503 11 11q12 apelin receptor protein-coding APLNR apelin receptor O APJ (apelin) receptor|APJ receptor|G protein-coupled receptor APJ|G-protein coupled receptor APJ|G-protein coupled receptor HG11|HG11 orphan receptor|angiotensin II receptor-like 1|angiotensin receptor-like 1 20121230 -9606 189 AGXT - AGT|AGT1|AGXT1|PH1|SPAT|SPT|TLH6 HGNC:341|MIM:604285|Ensembl:ENSG00000172482|HPRD:05048|Vega:OTTHUMG00000133354 2 2q37.3 alanine-glyoxylate aminotransferase protein-coding AGXT alanine-glyoxylate aminotransferase O L-alanine: glyoxylate aminotransferase 1|alanine--glyoxylate aminotransferase|hepatic peroxisomal alanine:glyoxylate aminotransferase|serine--pyruvate aminotransferase|serine-pyruvate aminotransferase|serine:pyruvate aminotransferase 20121230 -9606 190 NR0B1 - AHC|AHCH|AHX|DAX-1|DAX1|DSS|GTD|HHG|NROB1|SRXY2 HGNC:7960|MIM:300473|Ensembl:ENSG00000169297|HPRD:08362|Vega:OTTHUMG00000021323 X Xp21.3 nuclear receptor subfamily 0, group B, member 1 protein-coding NR0B1 nuclear receptor subfamily 0, group B, member 1 O DSS-AHC critical region on the X chromosome protein 1|nuclear hormone receptor|nuclear receptor DAX-1|nuclear receptor DAX1|nuclear receptor subfamily 0 group B member 1 20121230 -9606 191 AHCY - SAHH|adoHcyase HGNC:343|MIM:180960|Ensembl:ENSG00000101444|HPRD:01621|Vega:OTTHUMG00000140098 20 20q11.22 adenosylhomocysteinase protein-coding AHCY adenosylhomocysteinase O S-adenosyl-L-homocysteine hydrolase|S-adenosylhomocysteine hydrolase 20121230 -9606 192 AIC - - HGNC:350|MIM:304050 X Xp22 Aicardi syndrome unknown AIC Aicardi syndrome O - 20120622 -9606 196 AHR - bHLHe76 HGNC:348|MIM:600253|Ensembl:ENSG00000106546|HPRD:02596|Vega:OTTHUMG00000149967 7 7p15 aryl hydrocarbon receptor protein-coding AHR aryl hydrocarbon receptor O AH-receptor|ah receptor|aromatic hydrocarbon receptor|class E basic helix-loop-helix protein 76 20121230 -9606 197 AHSG PRO2743 A2HS|AHS|FETUA|HSGA HGNC:349|MIM:138680|Ensembl:ENSG00000145192|HPRD:00727|Vega:OTTHUMG00000156605 3 3q27 alpha-2-HS-glycoprotein protein-coding AHSG alpha-2-HS-glycoprotein O alpha-2-Z-globulin|ba-alpha-2-glycoprotein|fetuin-A 20121230 -9606 199 AIF1 DADB-70P7.8 AIF-1|IBA1|IRT-1|IRT1 HGNC:352|MIM:601833|Ensembl:ENSG00000204472|HPRD:03496|Vega:OTTHUMG00000031246 6 6p21.3 allograft inflammatory factor 1 protein-coding AIF1 allograft inflammatory factor 1 O allograft inflammatory factor-1 splice variant Hara-1|interferon gamma responsive transcript|ionized calcium-binding adapter molecule 1|protein G1 20121230 -9606 201 AIH3 - - HGNC:355|MIM:301201 X Xq22-q28 amelogenesis imperfecta 3, hypomaturation or hypoplastic type unknown AIH3 amelogenesis imperfecta 3, hypomaturation or hypoplastic type O - 20110215 -9606 202 AIM1 RP11-294H11.2 CRYBG1|ST4 HGNC:356|MIM:601797|Ensembl:ENSG00000112297|HPRD:18576|Vega:OTTHUMG00000015302 6 6q21 absent in melanoma 1 protein-coding AIM1 absent in melanoma 1 O absent in melanoma 1 protein|beta-gamma crystallin domain containing 1|beta/gamma crystallin domain-containing protein 1|suppression of tumorigenicity 4 (malignant melanoma) 20121230 -9606 203 AK1 RP11-203J24.1 - HGNC:361|MIM:103000|Ensembl:ENSG00000106992|HPRD:00046|Vega:OTTHUMG00000020722 9 9q34.1 adenylate kinase 1 protein-coding AK1 adenylate kinase 1 O AK 1|ATP-AMP transphosphorylase 1|adenylate kinase isoenzyme 1|myokinase 20121230 -9606 204 AK2 - ADK2|AK 2 HGNC:362|MIM:103020|Ensembl:ENSG00000004455|HPRD:00047|Vega:OTTHUMG00000004131 1 1p34 adenylate kinase 2 protein-coding AK2 adenylate kinase 2 O ATP-AMP transphosphorylase 2|adenylate kinase 2, mitochondrial|adenylate kinase isoenzyme 2, mitochondrial 20121230 -9606 205 AK4 RP4-686B20.1 AK3|AK3L1|AK3L2 HGNC:363|MIM:103030|Ensembl:ENSG00000162433|HPRD:00048|Vega:OTTHUMG00000009033 1 1p31.3 adenylate kinase 4 protein-coding AK4 adenylate kinase 4 O ATP-AMP transphosphorylase|GTP:AMP phosphotransferase|adenylate kinase 3-like 1|adenylate kinase isoenzyme 4, mitochondrial|mitochondrial adenylate kinase-3|nucleoside-triphosphate-adenylate kinase 20121230 -9606 206 AK4P1 - AK3P1 HGNC:364 17 17q11.2 adenylate kinase 4 pseudogene 1 pseudo AK4P1 adenylate kinase 4 pseudogene 1 O - 20121230 -9606 207 AKT1 - AKT|PKB|PKB-ALPHA|PRKBA|RAC|RAC-ALPHA HGNC:391|MIM:164730|Ensembl:ENSG00000142208|HPRD:01261|Vega:OTTHUMG00000170795 14 14q32.32 v-akt murine thymoma viral oncogene homolog 1 protein-coding AKT1 v-akt murine thymoma viral oncogene homolog 1 O PKB alpha|RAC-PK-alpha|RAC-alpha serine/threonine-protein kinase|protein kinase B alpha|proto-oncogene c-Akt|rac protein kinase alpha 20121230 -9606 208 AKT2 - HIHGHH|PKBB|PKBBETA|PRKBB|RAC-BETA HGNC:392|MIM:164731|Ensembl:ENSG00000105221|HPRD:01262|Vega:OTTHUMG00000137375 19 19q13.1-q13.2 v-akt murine thymoma viral oncogene homolog 2 protein-coding AKT2 v-akt murine thymoma viral oncogene homolog 2 O PKB beta|RAC-PK-beta|RAC-beta serine/threonine-protein kinase|murine thymoma viral (v-akt) homolog-2|protein kinase Akt-2|protein kinase B beta|rac protein kinase beta 20121230 -9606 210 ALAD RP11-10I9.1 ALADH|PBGS HGNC:395|MIM:125270|Ensembl:ENSG00000148218|HPRD:00504|Vega:OTTHUMG00000020522 9 9q33.1 aminolevulinate dehydratase protein-coding ALAD aminolevulinate dehydratase O aminolevulinate, delta-, dehydratase|delta-aminolevulinic acid dehydratase|porphobilinogen synthase 20121230 -9606 211 ALAS1 OK/SW-cl.121 ALAS|ALAS3|ALASH|MIG4 HGNC:396|MIM:125290|Ensembl:ENSG00000023330|HPRD:00505|Vega:OTTHUMG00000158108 3 3p21.1 aminolevulinate, delta-, synthase 1 protein-coding ALAS1 aminolevulinate, delta-, synthase 1 O 5-aminolevulinate synthase, nonspecific, mitochondrial|5-aminolevulinic acid synthase 1|ALAS-H|delta-ALA synthase 1|delta-aminolevulinate synthase 1|migration-inducing protein 4 20121230 -9606 212 ALAS2 RP5-884M20.1 ALAS-E|ALASE|ANH1|ASB|XLDPP|XLEPP|XLSA HGNC:397|MIM:301300|Ensembl:ENSG00000158578|HPRD:02356|Vega:OTTHUMG00000021641 X Xp11.21 aminolevulinate, delta-, synthase 2 protein-coding ALAS2 aminolevulinate, delta-, synthase 2 O 5-aminolevulinate synthase, erythroid-specific, mitochondrial|5-aminolevulinic acid synthase 2|delta-ALA synthase 2|delta-ALA synthetase|delta-aminolevulinate synthase 2 20121230 -9606 213 ALB GIG20 PRO0883|PRO0903|PRO1341 HGNC:399|MIM:103600|Ensembl:ENSG00000163631|HPRD:00062|Vega:OTTHUMG00000129919 4 4q13.3 albumin protein-coding ALB albumin O albumin (32 AA)|albumin (AA 34)|cell growth inhibiting protein 42|growth-inhibiting protein 20|serum albumin 20121230 -9606 214 ALCAM - CD166|MEMD HGNC:400|MIM:601662|Ensembl:ENSG00000170017|HPRD:03389|Vega:OTTHUMG00000159192 3 3q13.1 activated leukocyte cell adhesion molecule protein-coding ALCAM activated leukocyte cell adhesion molecule O CD166 antigen 20121230 -9606 215 ABCD1 - ABC42|ALD|ALDP|AMN HGNC:61|MIM:300371|Ensembl:ENSG00000101986|HPRD:02300|Vega:OTTHUMG00000024215 X Xq28 ATP-binding cassette, sub-family D (ALD), member 1 protein-coding ABCD1 ATP-binding cassette, sub-family D (ALD), member 1 O ATP-binding cassette sub-family D member 1|adrenoleukodystrophy protein 20121230 -9606 216 ALDH1A1 RP11-151D14.2 ALDC|ALDH-E1|ALDH1|ALDH11|PUMB1|RALDH1 HGNC:402|MIM:100640|Ensembl:ENSG00000165092|HPRD:00001|Vega:OTTHUMG00000020019 9 9q21.13 aldehyde dehydrogenase 1 family, member A1 protein-coding ALDH1A1 aldehyde dehydrogenase 1 family, member A1 O ALDH class 1|ALHDII|RALDH 1|acetaldehyde dehydrogenase 1|aldehyde dehydrogenase 1, soluble|aldehyde dehydrogenase, liver cytosolic|retinal dehydrogenase 1|retinaldehyde dehydrogenase 1 20121230 -9606 217 ALDH2 - ALDH-E2|ALDHI|ALDM HGNC:404|MIM:100650|Ensembl:ENSG00000111275|HPRD:00003|Vega:OTTHUMG00000169603 12 12q24.2 aldehyde dehydrogenase 2 family (mitochondrial) protein-coding ALDH2 aldehyde dehydrogenase 2 family (mitochondrial) O ALDH class 2|acetaldehyde dehydrogenase 2|aldehyde dehydrogenase, mitochondrial|liver mitochondrial ALDH|nucleus-encoded mitochondrial aldehyde dehydrogenase 2 20121230 -9606 218 ALDH3A1 - ALDH3|ALDHIII HGNC:405|MIM:100660|Ensembl:ENSG00000108602|HPRD:00004|Vega:OTTHUMG00000059469 17 17p11.2 aldehyde dehydrogenase 3 family, member A1 protein-coding ALDH3A1 aldehyde dehydrogenase 3 family, member A1 O aldehyde dehydrogenase isozyme 3|aldehyde dehydrogenase type III|aldehyde dehydrogenase, dimeric NADP-preferring|stomach aldehyde dehydrogenase 20121230 -9606 219 ALDH1B1 - ALDH5|ALDHX HGNC:407|MIM:100670|Ensembl:ENSG00000137124|HPRD:00005|Vega:OTTHUMG00000019938 9 9p11.1 aldehyde dehydrogenase 1 family, member B1 protein-coding ALDH1B1 aldehyde dehydrogenase 1 family, member B1 O ALDH class 2|acetaldehyde dehydrogenase 5|aldehyde dehydrogenase 5|aldehyde dehydrogenase X, mitochondrial 20121230 -9606 220 ALDH1A3 - ALDH1A6|ALDH6|RALDH3 HGNC:409|MIM:600463|Ensembl:ENSG00000184254|HPRD:02713|Vega:OTTHUMG00000149870 15 15q26.3 aldehyde dehydrogenase 1 family, member A3 protein-coding ALDH1A3 aldehyde dehydrogenase 1 family, member A3 O RALDH-3|acetaldehyde dehydrogenase 6|aldehyde dehydrogenase 6|aldehyde dehydrogenase family 1 member A3|retinaldehyde dehydrogenase 3 20121230 -9606 221 ALDH3B1 - ALDH4|ALDH7 HGNC:410|MIM:600466|HPRD:02716 11 11q13 aldehyde dehydrogenase 3 family, member B1 protein-coding ALDH3B1 aldehyde dehydrogenase 3 family, member B1 O aldehyde dehydrogenase 3B1|aldehyde dehydrogenase 7|aldehyde dehydrogenase family 3 member B1 20121230 -9606 222 ALDH3B2 - ALDH8 HGNC:411|MIM:601917|Ensembl:ENSG00000132746|HPRD:03559|Vega:OTTHUMG00000167284 11 11q13 aldehyde dehydrogenase 3 family, member B2 protein-coding ALDH3B2 aldehyde dehydrogenase 3 family, member B2 O acetaldehyde dehydrogenase 8|aldehyde dehydrogenase 8|aldehyde dehydrogenase family 3 member B2 20121230 -9606 223 ALDH9A1 - ALDH4|ALDH7|ALDH9|E3|TMABADH HGNC:412|MIM:602733|Ensembl:ENSG00000143149|HPRD:04109|Vega:OTTHUMG00000034677 1 1q23.1 aldehyde dehydrogenase 9 family, member A1 protein-coding ALDH9A1 aldehyde dehydrogenase 9 family, member A1 O 4-trimethylaminobutyraldehyde dehydrogenase|R-aminobutyraldehyde dehydrogenase|aldehyde dehydrogenase (NAD+)|aldehyde dehydrogenase E3 isozyme|aldehyde dehydrogenase family 9 member A1|gamma-aminobutyraldehyde dehydrogenase 20121230 -9606 224 ALDH3A2 - ALDH10|FALDH|SLS HGNC:403|MIM:609523|Ensembl:ENSG00000072210|HPRD:07188|Vega:OTTHUMG00000059471 17 17p11.2 aldehyde dehydrogenase 3 family, member A2 protein-coding ALDH3A2 aldehyde dehydrogenase 3 family, member A2 O aldehyde dehydrogenase 10|aldehyde dehydrogenase family 3 member A2|fatty aldehyde dehydrogenase|microsomal aldehyde dehydrogenase 20121230 -9606 225 ABCD2 - ABC39|ALDL1|ALDR|ALDRP|hALDR HGNC:66|MIM:601081|Ensembl:ENSG00000173208|HPRD:03051|Vega:OTTHUMG00000169337 12 12q12 ATP-binding cassette, sub-family D (ALD), member 2 protein-coding ABCD2 ATP-binding cassette, sub-family D (ALD), member 2 O ATP-binding cassette sub-family D member 2|adrenoleukodystrophy-like 1|adrenoleukodystrophy-related protein 20121230 -9606 226 ALDOA - ALDA|GSD12 HGNC:414|MIM:103850|Ensembl:ENSG00000149925|HPRD:00070|Vega:OTTHUMG00000132107 16 16p11.2 aldolase A, fructose-bisphosphate protein-coding ALDOA aldolase A, fructose-bisphosphate O fructose-1,6-bisphosphate triosephosphate-lyase|fructose-bisphosphate aldolase A|lung cancer antigen NY-LU-1|muscle-type aldolase 20121230 -9606 228 ALDOAP2 - - HGNC:416 10 10q26.13 aldolase A, fructose-bisphosphate pseudogene 2 pseudo ALDOAP2 aldolase A, fructose-bisphosphate pseudogene 2 O - 20121230 -9606 229 ALDOB RP11-490D19.1 ALDB|ALDO2 HGNC:417|MIM:612724|Ensembl:ENSG00000136872|HPRD:01972|Vega:OTTHUMG00000020378 9 9q21.3-q22.2 aldolase B, fructose-bisphosphate protein-coding ALDOB aldolase B, fructose-bisphosphate O aldolase 2|aldolase B, fructose-bisphosphatase|fructose-bisphosphate aldolase B|liver-type aldolase 20121230 -9606 230 ALDOC - ALDC HGNC:418|MIM:103870|Ensembl:ENSG00000109107|HPRD:02386|Vega:OTTHUMG00000132605 17 17cen-q12 aldolase C, fructose-bisphosphate protein-coding ALDOC aldolase C, fructose-bisphosphate O aldolase 3|brain-type aldolase|fructoaldolase C|fructose-1,6-biphosphate triosephosphate lyase|fructose-bisphosphate aldolase C 20121230 -9606 231 AKR1B1 - ADR|ALDR1|ALR2|AR HGNC:381|MIM:103880|Ensembl:ENSG00000085662|HPRD:00071|Vega:OTTHUMG00000155322 7 7q35 aldo-keto reductase family 1, member B1 (aldose reductase) protein-coding AKR1B1 aldo-keto reductase family 1, member B1 (aldose reductase) O Lii5-2 CTCL tumor antigen|aldehyde reductase 1|aldo-keto reductase family 1 member B1|aldose reductase|low Km aldose reductase 20121230 -9606 236 AKR1B1P2 - ALDRP HGNC:425 3 3p12 aldo-keto reductase family 1, member B1 pseudogene 2 pseudo AKR1B1P2 aldo-keto reductase family 1, member B1 pseudogene 2 O - 20121230 -9606 238 ALK - CD246|NBLST3 HGNC:427|MIM:105590|Ensembl:ENSG00000171094|HPRD:00104|Vega:OTTHUMG00000152034 2 2p23 anaplastic lymphoma receptor tyrosine kinase protein-coding ALK anaplastic lymphoma receptor tyrosine kinase O ALK tyrosine kinase receptor|CD246 antigen|mutant anaplastic lymphoma kinase 20121230 -9606 239 ALOX12 - 12-LOX|12S-LOX|LOG12 HGNC:429|MIM:152391|Ensembl:ENSG00000108839|HPRD:01066|Vega:OTTHUMG00000102088 17 17p13.1 arachidonate 12-lipoxygenase protein-coding ALOX12 arachidonate 12-lipoxygenase O 12(S)-lipoxygenase|12S-lipoxygenase|arachidonate 12-lipoxygenase, 12S-type|platelet 12-LOX|platelet-type 12-lipoxygenase|platelet-type lipoxygenase 12 20121230 -9606 240 ALOX5 RP11-67C2.3 5-LO|5-LOX|5LPG|LOG5 HGNC:435|MIM:152390|Ensembl:ENSG00000012779|HPRD:01065|Vega:OTTHUMG00000018081 10 10q11.2 arachidonate 5-lipoxygenase protein-coding ALOX5 arachidonate 5-lipoxygenase O LOX-5|arachidonic 5-lipoxygenase alpha-10 isoform|arachidonic 5-lipoxygenase delta-10-13 isoform|arachidonic 5-lipoxygenase delta-13 isoform|arachidonic 5-lipoxygenase delta-p10 isoform|arachidonic acid 5-lipoxygenase|leukotriene A4 synthase 20121230 -9606 241 ALOX5AP - FLAP HGNC:436|MIM:603700|Ensembl:ENSG00000132965|HPRD:04742|Vega:OTTHUMG00000016677 13 13q12 arachidonate 5-lipoxygenase-activating protein protein-coding ALOX5AP arachidonate 5-lipoxygenase-activating protein O MK-886-binding protein 20121230 -9606 242 ALOX12B - 12R-LOX HGNC:430|MIM:603741|Ensembl:ENSG00000179477|HPRD:04772|Vega:OTTHUMG00000108180 17 17p13.1 arachidonate 12-lipoxygenase, 12R type protein-coding ALOX12B arachidonate 12-lipoxygenase, 12R type O 12R-lipoxygenase|arachidonate 12-lipoxygenase, 12R-type|epidermis-type lipoxygenase 12 20121230 -9606 243 ALOX12P1 - ALOX12P HGNC:431 17 17q11 arachidonate 12-lipoxygenase pseudogene 1 pseudo ALOX12P1 arachidonate 12-lipoxygenase pseudogene 1 O - 20121230 -9606 244 ANXA8L2 - ANXA8|bA145E20.2 HGNC:23335|Ensembl:ENSG00000186807|HPRD:03866|Vega:OTTHUMG00000018131 10 10q11.22 annexin A8-like 2 protein-coding ANXA8L2 annexin A8-like 2 O annexin A8-like protein 2|annexin A8L2 20121230 -9606 245 ALOX12P2 - ALOX12E HGNC:432 17 17p13 arachidonate 12-lipoxygenase pseudogene 2 pseudo ALOX12P2 arachidonate 12-lipoxygenase pseudogene 2 O - 20121230 -9606 246 ALOX15 - 15-LOX-1|15LOX-1 HGNC:433|MIM:152392|Ensembl:ENSG00000161905|HPRD:01067|Vega:OTTHUMG00000090746 17 17p13.3 arachidonate 15-lipoxygenase protein-coding ALOX15 arachidonate 15-lipoxygenase O 15-LOX|15-lipooxygenase-1|arachidonate omega-6 lipoxygenase 20121230 -9606 247 ALOX15B - 15-LOX-2 HGNC:434|MIM:603697|Ensembl:ENSG00000179593|HPRD:04739|Vega:OTTHUMG00000108181 17 17p13.1 arachidonate 15-lipoxygenase, type B protein-coding ALOX15B arachidonate 15-lipoxygenase, type B O 15-LOX-B|15S-lipoxygenase|arachidonate 15-lipoxygenase 2|arachidonate 15-lipoxygenase B|arachidonate 15-lipoxygenase type II|arachidonate 15-lipoxygenase, second type|arachidonate omega(6) lipoxygenase 20121230 -9606 248 ALPI - IAP HGNC:437|MIM:171740|Ensembl:ENSG00000163295|HPRD:01376|Vega:OTTHUMG00000133258 2 2q37.1 alkaline phosphatase, intestinal protein-coding ALPI alkaline phosphatase, intestinal O Kasahara isozyme|alkaline phosphomonoesterase|glycerophosphatase|intestinal alkaline phosphatase|intestinal-type alkaline phosphatase 20121230 -9606 249 ALPL - AP-TNAP|APTNAP|HOPS|TNAP|TNSALP HGNC:438|MIM:171760|Ensembl:ENSG00000162551|HPRD:01377|Vega:OTTHUMG00000002949 1 1p36.12 alkaline phosphatase, liver/bone/kidney protein-coding ALPL alkaline phosphatase, liver/bone/kidney O alkaline phosphatase liver/bone/kidney isozyme|alkaline phosphatase, tissue-nonspecific isozyme|alkaline phosphomonoesterase|glycerophosphatase|liver/bone/kidney-type alkaline phosphatase|tissue-nonspecific ALP 20121230 -9606 250 ALPP - ALP|PALP|PLAP|PLAP-1 HGNC:439|MIM:171800|Ensembl:ENSG00000163283|Vega:OTTHUMG00000133255 2 2q37 alkaline phosphatase, placental protein-coding ALPP alkaline phosphatase, placental O Regan isozyme|alkaline phosphatase Regan isozyme|alkaline phosphatase, placental type|alkaline phosphomonoesterase|glycerophosphatase|placental alkaline phosphatase 1 20121230 -9606 251 ALPPL2 - ALPG|ALPPL|GCAP HGNC:441|MIM:171810|Ensembl:ENSG00000163286|HPRD:01380|Vega:OTTHUMG00000133257 2 2q37 alkaline phosphatase, placental-like 2 protein-coding ALPPL2 alkaline phosphatase, placental-like 2 O ALP-1|Nagao isozyme|alkaline phosphatase Nagao isozyme|alkaline phosphatase, placental-like|germ cell alkaline phosphatase|placental-like alkaline phosphatase|testicular and thymus alkaline phosphatase 20121230 -9606 253 ALS3 - ALS6 HGNC:444|MIM:606640 18 18q21 amyotrophic lateral sclerosis 3 (autosomal dominant) unknown ALS3 amyotrophic lateral sclerosis 3 (autosomal dominant) O - 20120622 -9606 255 ALS5 - - HGNC:446|MIM:602099 15 15q15.1-q21.1 amyotrophic lateral sclerosis 5 unknown ALS5 amyotrophic lateral sclerosis 5 O - 20120622 -9606 257 ALX3 - FND1 HGNC:449|MIM:606014|Ensembl:ENSG00000156150|HPRD:16190|Vega:OTTHUMG00000011650 1 1p13.3 ALX homeobox 3 protein-coding ALX3 ALX homeobox 3 O aristaless-like homeobox 3|homeobox protein aristaless-like 3|proline-rich transcription factor ALX3 20121230 -9606 258 AMBN - - HGNC:452|MIM:601259|Ensembl:ENSG00000178522|HPRD:03160|Vega:OTTHUMG00000129913 4 4q21 ameloblastin (enamel matrix protein) protein-coding AMBN ameloblastin (enamel matrix protein) O ameloblastin 20121230 -9606 259 AMBP - A1M|EDC1|HCP|HI30|IATIL|ITI|ITIL|ITILC|UTI HGNC:453|MIM:176870|Ensembl:ENSG00000106927|HPRD:01467|Vega:OTTHUMG00000020534 9 9q32-q33 alpha-1-microglobulin/bikunin precursor protein-coding AMBP alpha-1-microglobulin/bikunin precursor O bikunin|complex-forming glycoprotein heterogeneous in charge|growth-inhibiting protein 19|inter-alpha-trypsin inhibitor light chain|protein AMBP|protein HC|trypstatin|uristatin|uronic-acid-rich protein 20121230 -9606 261 AMCN - AMC|AMC1|AMCN1 HGNC:456|MIM:208100 5 5q35 arthrogryposis multiplex congenita, neurogenic unknown AMCN arthrogryposis multiplex congenita, neurogenic O - 20120622 -9606 262 AMD1 RP11-397G5.3 ADOMETDC|AMD|SAMDC HGNC:457|MIM:180980|Ensembl:ENSG00000123505|HPRD:01622|Vega:OTTHUMG00000015369 6 6q21 adenosylmethionine decarboxylase 1 protein-coding AMD1 adenosylmethionine decarboxylase 1 O S-adenosylmethionine decarboxylase 1|S-adenosylmethionine decarboxylase proenzyme 20121230 -9606 263 AMDP1 - AMD|AMD2|AMDPX|AMDPY HGNC:460 X|Y Xq28 and Yq12 adenosylmethionine decarboxylase pseudogene 1 pseudo AMDP1 adenosylmethionine decarboxylase pseudogene 1 O - 20121230 -9606 265 AMELX - AI1E|AIH1|ALGN|AMG|AMGL|AMGX HGNC:461|MIM:300391|Ensembl:ENSG00000125363|HPRD:02313|Vega:OTTHUMG00000021130 X Xp22.31-p22.1 amelogenin, X-linked protein-coding AMELX amelogenin, X-linked O amelogenesis imperfecta 1|amelogenin (X chromosome, amelogenesis imperfecta 1)|amelogenin (amelogenesis imperfecta 1, X-linked)|amelogenin, X isoform 20121230 -9606 266 AMELY - AMGL|AMGY HGNC:462|MIM:410000|Ensembl:ENSG00000099721|HPRD:02462|Vega:OTTHUMG00000035297 Y Yp11.2 amelogenin, Y-linked protein-coding AMELY amelogenin, Y-linked O amelogenin (Y chromosome)|amelogenin, Y isoform 20121230 -9606 267 AMFR - GP78|RNF45 HGNC:463|MIM:603243|Ensembl:ENSG00000159461|HPRD:09130|Vega:OTTHUMG00000133239 16 16q21 autocrine motility factor receptor, E3 ubiquitin protein ligase protein-coding AMFR autocrine motility factor receptor, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase AMFR|RING finger protein 45 20121230 -9606 268 AMH - MIF|MIS HGNC:464|MIM:600957|Ensembl:ENSG00000104899|HPRD:02979|Vega:OTTHUMG00000180415 19 19p13.3 anti-Mullerian hormone protein-coding AMH anti-Mullerian hormone O Mullerian inhibiting factor|Mullerian inhibiting substance|anti-Muellerian hormone|muellerian-inhibiting factor|muellerian-inhibiting substance 20121230 -9606 269 AMHR2 - AMHR|MISR2|MISRII|MRII HGNC:465|MIM:600956|Ensembl:ENSG00000135409|HPRD:02978|Vega:OTTHUMG00000170048 12 12q13 anti-Mullerian hormone receptor, type II protein-coding AMHR2 anti-Mullerian hormone receptor, type II O AMH type II receptor|MIS type II receptor|Mullerian inhibiting substance type II receptor|anti-Muellerian hormone type II receptor|anti-Muellerian hormone type-2 receptor 20121230 -9606 270 AMPD1 RP5-1000E10.1 MAD|MADA HGNC:468|MIM:102770|Ensembl:ENSG00000116748|HPRD:00040|Vega:OTTHUMG00000011892 1 1p13 adenosine monophosphate deaminase 1 protein-coding AMPD1 adenosine monophosphate deaminase 1 O AMP deaminase 1|AMPD|adenosine monophosphate deaminase 1 (isoform M)|adenosine monophosphate deaminase-1 (muscle)|myoadenylate deaminase|skeletal muscle AMPD 20121230 -9606 271 AMPD2 RP5-1160K1.5 - HGNC:469|MIM:102771|Ensembl:ENSG00000116337|HPRD:11808|Vega:OTTHUMG00000011649 1 1p13.3 adenosine monophosphate deaminase 2 protein-coding AMPD2 adenosine monophosphate deaminase 2 O AMP deaminase 2|AMPD|adenosine monophosphate deaminase 2 (isoform L) 20121230 -9606 272 AMPD3 - - HGNC:470|MIM:102772|Ensembl:ENSG00000133805|HPRD:00041|Vega:OTTHUMG00000165682 11 11p15 adenosine monophosphate deaminase 3 protein-coding AMPD3 adenosine monophosphate deaminase 3 O AMP aminohydrolase|AMP deaminase 3|adenosine monophosphate deaminase (isoform E)|erythrocyte AMP deaminase|erythrocyte type AMP deaminase|erythrocyte-specific AMP deaminase|myoadenylate deaminase 20121230 -9606 273 AMPH - AMPH1 HGNC:471|MIM:600418|Ensembl:ENSG00000078053|HPRD:02687|Vega:OTTHUMG00000023725 7 7p14-p13 amphiphysin protein-coding AMPH amphiphysin O amphiphysin (Stiff-Mann syndrome with breast cancer 128kD autoantigen)|amphiphysin I 20121230 -9606 274 BIN1 - AMPH2|AMPHL|SH3P9 HGNC:1052|MIM:601248|Ensembl:ENSG00000136717|HPRD:03150|Vega:OTTHUMG00000131465 2 2q14 bridging integrator 1 protein-coding BIN1 bridging integrator 1 O amphiphysin II|amphiphysin-like protein|box dependant MYC interacting protein 1|box-dependent myc-interacting protein 1|myc box-dependent-interacting protein 1 20121230 -9606 275 AMT - GCE|GCST|GCVT|NKH HGNC:473|MIM:238310|Ensembl:ENSG00000145020|HPRD:01997|Vega:OTTHUMG00000156847 3 3p21.2-p21.1 aminomethyltransferase protein-coding AMT aminomethyltransferase O aminomethyltransferase, mitochondrial|glycine cleavage system T protein|glycine cleavage system protein T 20121230 -9606 276 AMY1A - AMY1 HGNC:474|MIM:104700|Ensembl:ENSG00000237763|HPRD:00096|Vega:OTTHUMG00000011020 1 1p21 amylase, alpha 1A (salivary) protein-coding AMY1A amylase, alpha 1A (salivary) O 1,4-alpha-D-glucan glucanohydrolase 1|alpha-amylase 1|amylase, salivary, alpha-1A|glycogenase|salivary alpha-amylase|salivary amylase alpha 1A 20121222 -9606 277 AMY1B RP11-508C1.1 AMY1 HGNC:475|MIM:104701|Ensembl:ENSG00000174876|HPRD:18510|Vega:OTTHUMG00000011021 1 1p21 amylase, alpha 1B (salivary) protein-coding AMY1B amylase, alpha 1B (salivary) O 1,4-alpha-D-glucan glucanohydrolase 1|alpha-amylase 1|amylase, salivary, alpha-1B|glycogenase|salivary alpha-amylase|salivary amylase alpha 1B 20121222 -9606 278 AMY1C RP11-508C1.3 AMY1 HGNC:476|MIM:104702|Ensembl:ENSG00000187733|HPRD:15911|Vega:OTTHUMG00000011045 1 1p21 amylase, alpha 1C (salivary) protein-coding AMY1C amylase, alpha 1C (salivary) O 1,4-alpha-D-glucan glucanohydrolase 1|alpha-amylase 1|amylase, salivary, alpha-1C|glycogenase|salivary alpha-amylase|salivary amylase alpha 1C 20121230 -9606 279 AMY2A - AMY2|AMY2B|PA HGNC:477|MIM:104650|Ensembl:ENSG00000243480|HPRD:00094|Vega:OTTHUMG00000011023 1 1p21 amylase, alpha 2A (pancreatic) protein-coding AMY2A amylase, alpha 2A (pancreatic) O 1,4-alpha-D-glucan glucanohydrolase|alpha-amylase|amylase, pancreatic, alpha-2A|found in the pancreas|glycogenase|pancreatic alpha-amylase|pancreatic amylase 2A|pancreatic amylase alpha 2A 20121230 -9606 280 AMY2B - AMY2 HGNC:478|MIM:104660|Ensembl:ENSG00000240038|HPRD:00095|Vega:OTTHUMG00000011024 1 1p21 amylase, alpha 2B (pancreatic) protein-coding AMY2B amylase, alpha 2B (pancreatic) O 1,4-alpha-D-glucan glucanohydrolase 2B|alpha-amylase 2B|alpha-amylase carcinoid|carcinoid alpha-amylase|glycogenase 20121230 -9606 281 AMYP1 - AMY2P HGNC:479 1 1p21 amylase, alpha pseudogene 1 pseudo AMYP1 amylase, alpha pseudogene 1 O - 20121230 -9606 282 ANCR - - HGNC:482 15 15q11-q12 Angelman syndrome chromosome region other ANCR Angelman syndrome chromosome region O - 20120719 -9606 283 ANG - ALS9|HEL168|RNASE4|RNASE5 HGNC:483|MIM:105850|Ensembl:ENSG00000214274|HPRD:00105|Vega:OTTHUMG00000029576 14 14q11.1-q11.2 angiogenin, ribonuclease, RNase A family, 5 protein-coding ANG angiogenin, ribonuclease, RNase A family, 5 O RNase 5|angiogenin|epididymis luminal protein 168|ribonuclease 5 20121230 -9606 284 ANGPT1 - AGP1|AGPT|ANG1 HGNC:484|MIM:601667|Ensembl:ENSG00000154188|HPRD:03392|Vega:OTTHUMG00000164812 8 8q23.1 angiopoietin 1 protein-coding ANGPT1 angiopoietin 1 O ANG-1|angiopoietin-1 20121230 -9606 285 ANGPT2 - AGPT2|ANG2 HGNC:485|MIM:601922|Ensembl:ENSG00000091879|HPRD:03563|Vega:OTTHUMG00000090365 8 8p23.1 angiopoietin 2 protein-coding ANGPT2 angiopoietin 2 O ANG-2|Tie2-ligand|angiopoietin-2|angiopoietin-2B|angiopoietin-2a 20121230 -9606 286 ANK1 - ANK|SPH1|SPH2 HGNC:492|MIM:612641|Ensembl:ENSG00000029534|HPRD:01693|Vega:OTTHUMG00000150281 8 8p11.1 ankyrin 1, erythrocytic protein-coding ANK1 ankyrin 1, erythrocytic O ANK-1|ankyrin-1|ankyrin-R|erythrocyte ankyrin 20121230 -9606 287 ANK2 - ANK-2|LQT4|brank-2 HGNC:493|MIM:106410|Ensembl:ENSG00000145362|HPRD:00110|Vega:OTTHUMG00000132912 4 4q25-q27 ankyrin 2, neuronal protein-coding ANK2 ankyrin 2, neuronal O ankyrin B|ankyrin, brain|ankyrin-2|ankyrin-2, nonerythrocytic|non-erythroid ankyrin 20121230 -9606 288 ANK3 RP11-369L1.1 ANKYRIN-G HGNC:494|MIM:600465|Ensembl:ENSG00000151150|HPRD:02715|Vega:OTTHUMG00000018288 10 10q21 ankyrin 3, node of Ranvier (ankyrin G) protein-coding ANK3 ankyrin 3, node of Ranvier (ankyrin G) O ankyrin G119|ankyrin-3 20121230 -9606 289 ANOP1 - MCOPS4 HGNC:498|MIM:301590 X Xq27-q28 anophthalmos 1 (with mental retardation, without limb anomalies or dental or urogenital abnormalities) unknown ANOP1 anophthalmos 1 (with mental retardation, without limb anomalies or dental or urogenital abnormalities) O - 20110626 -9606 290 ANPEP - APN|CD13|GP150|LAP1|P150|PEPN HGNC:500|MIM:151530|Ensembl:ENSG00000166825|HPRD:01055|Vega:OTTHUMG00000149814 15 15q25-q26 alanyl (membrane) aminopeptidase protein-coding ANPEP alanyl (membrane) aminopeptidase O AP-M|AP-N|alanyl aminopeptidase|aminopeptidase M|aminopeptidase N|hAPN|microsomal aminopeptidase|myeloid plasma membrane glycoprotein CD13 20121230 -9606 291 SLC25A4 - AAC1|ANT|ANT1|PEO2|PEO3|T1 HGNC:10990|MIM:103220|Ensembl:ENSG00000151729|HPRD:00058|Vega:OTTHUMG00000134299 4 4q35 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 4 protein-coding SLC25A4 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 4 O ADP,ATP carrier protein 1|ADP,ATP carrier protein, heart/skeletal muscle|ADP/ATP translocase 1|ANT 1|adenine nucleotide translocator 1 (skeletal muscle)|heart/skeletal muscle ATP/ADP translocator|solute carrier family 25 member 4 20121230 -9606 292 SLC25A5 - 2F1|AAC2|ANT2|T2|T3 HGNC:10991|MIM:300150|Ensembl:ENSG00000005022|HPRD:02147|Vega:OTTHUMG00000022715 X Xq24 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 protein-coding SLC25A5 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 O ADP,ATP carrier protein 2|ADP,ATP carrier protein, fibroblast isoform|ADP/ATP carrier protein|ADP/ATP translocase 2|ANT 2|adenine nucleotide translocator 2 (fibroblast)|solute carrier family 25 member 5 20121230 -9606 293 SLC25A6 RP11-261P4.6 AAC3|ANT3|ANT3Y HGNC:10992|MIM:300151|MIM:403000|Ensembl:ENSG00000169100|HPRD:02461|Vega:OTTHUMG00000021058 X|Y Xp22.32 and Yp11.3 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 protein-coding SLC25A6 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 O ADP,ATP carrier protein|ADP,ATP carrier protein 3|ADP,ATP carrier protein, liver|ADP/ATP translocase 3|ADP/ATP translocator of liver|ANT 2|ANT 3|adenine nucleotide translocator 3|solute carrier family 25 member 6 20121230 -9606 301 ANXA1 RP11-71A24.1 ANX1|LPC1 HGNC:533|MIM:151690|Ensembl:ENSG00000135046|HPRD:01060|Vega:OTTHUMG00000020016 9 9q21.13 annexin A1 protein-coding ANXA1 annexin A1 O annexin I (lipocortin I)|annexin-1|calpactin II|calpactin-2|chromobindin-9|lipocortin I|p35|phospholipase A2 inhibitory protein 20121230 -9606 302 ANXA2 - ANX2|ANX2L4|CAL1H|LIP2|LPC2|LPC2D|P36|PAP-IV HGNC:537|MIM:151740|Ensembl:ENSG00000182718|HPRD:01061|Vega:OTTHUMG00000132763 15 15q22.2 annexin A2 protein-coding ANXA2 annexin A2 O annexin II|annexin-2|calpactin I heavy chain|calpactin I heavy polypeptide|calpactin-1 heavy chain|chromobindin 8|chromobindin-8|lipocortin II|placental anticoagulant protein IV|protein I 20121230 -9606 303 ANXA2P1 - ANX2L1|ANX2P1|LPC2A HGNC:538 4 4q31.3 annexin A2 pseudogene 1 pseudo ANXA2P1 annexin A2 pseudogene 1 O - 20121230 -9606 304 ANXA2P2 - ANX2L2|ANX2P2|LPC2B HGNC:539 9 9p13 annexin A2 pseudogene 2 pseudo ANXA2P2 annexin A2 pseudogene 2 O - 20121230 -9606 305 ANXA2P3 - ANX2L3|ANX2P3|LIP2|LPC2C HGNC:540 10 10q21.3 annexin A2 pseudogene 3 pseudo ANXA2P3 annexin A2 pseudogene 3 O - 20121230 -9606 306 ANXA3 - ANX3 HGNC:541|MIM:106490|Ensembl:ENSG00000138772|HPRD:00111|Vega:OTTHUMG00000130198 4 4q21.21 annexin A3 protein-coding ANXA3 annexin A3 O 35-alpha calcimedin|Annexin III (lipocortin III)|PAP-III|annexin III (lipocortin III, 1,2-cyclic-inositol-phosphate phosphodiesterase, placental anticoagulant protein III, calcimedin 35-alpha)|annexin-3|calcimedin 35-alpha|inositol 1,2-cyclic phosphate 2-phosphohydrolase|lipocortin III|placental anticoagulant protein III 20121230 -9606 307 ANXA4 - ANX4|PIG28|ZAP36 HGNC:542|MIM:106491|Ensembl:ENSG00000196975|HPRD:00112|Vega:OTTHUMG00000129649 2 2p13 annexin A4 protein-coding ANXA4 annexin A4 O 35-beta calcimedin|P32.5|PAP-II|PP4-X|annexin IV (placental anticoagulant protein II)|annexin-4|carbohydrate-binding protein p33/p41|chromobindin-4|endonexin I|lipocortin IV|placental anticoagulant protein II|proliferation-inducing gene 28|proliferation-inducing protein 28|protein II 20121230 -9606 308 ANXA5 - ANX5|ENX2|PP4|RPRGL3 HGNC:543|MIM:131230|Ensembl:ENSG00000164111|HPRD:00568|Vega:OTTHUMG00000133034 4 4q27 annexin A5 protein-coding ANXA5 annexin A5 O CBP-I|PAP-I|VAC-alpha|anchorin CII|annexin V|annexin-5|calphobindin I|endonexin II|lipocortin V|placental anticoagulant protein 4|placental anticoagulant protein I|thromboplastin inhibitor|vascular anticoagulant-alpha 20121230 -9606 309 ANXA6 - ANX6|CBP68 HGNC:544|MIM:114070|Ensembl:ENSG00000197043|HPRD:00231|Vega:OTTHUMG00000164179 5 5q33.1 annexin A6 protein-coding ANXA6 annexin A6 O 67 kDa calelectrin|CPB-II|annexin VI (p68)|annexin-6|calcium-binding protein p68|calelectrin|calphobindin II|calphobindin-II|chromobindin-20|lipocortin VI|p68|p70 20121230 -9606 310 ANXA7 RP11-537A6.8 ANX7|SNX|SYNEXIN HGNC:545|MIM:186360|Ensembl:ENSG00000138279|HPRD:01720|Vega:OTTHUMG00000018463 10 10q22.2 annexin A7 protein-coding ANXA7 annexin A7 O annexin VII|annexin-7 20121230 -9606 311 ANXA11 RP11-369J21.10-010 ANX11|CAP50 HGNC:535|MIM:602572|Ensembl:ENSG00000122359|HPRD:03983|Vega:OTTHUMG00000018604 10 10q23 annexin A11 protein-coding ANXA11 annexin A11 O 56 kDa autoantigen|CAP-50|annexin XI|annexin-11|autoantigen, 56-kD|calcyclin-associated annexin 50 20121230 -9606 312 ANXA13 - ANX13|ISA HGNC:536|MIM:602573|Ensembl:ENSG00000104537|HPRD:03984|Vega:OTTHUMG00000164987 8 8q24.13 annexin A13 protein-coding ANXA13 annexin A13 O annexin XIII|annexin, intestine-specific|annexin-13|intestine-specific annexin 20121230 -9606 313 AOAH - - HGNC:548|MIM:102593|Ensembl:ENSG00000136250|HPRD:00027|Vega:OTTHUMG00000023566 7 7p14-p12 acyloxyacyl hydrolase (neutrophil) protein-coding AOAH acyloxyacyl hydrolase (neutrophil) O acyloxyacyl hydrolase 20121230 -9606 314 AOC2 - DAO2|RAO HGNC:549|MIM:602268|Ensembl:ENSG00000131480|HPRD:11889|Vega:OTTHUMG00000180655 17 17q21 amine oxidase, copper containing 2 (retina-specific) protein-coding AOC2 amine oxidase, copper containing 2 (retina-specific) O SSAO|retina-specific copper amine oxidase|semicarbazide-sensitive amine oxidase 20121230 -9606 316 AOX1 - AO|AOH1 HGNC:553|MIM:602841|Ensembl:ENSG00000138356|HPRD:07537|Vega:OTTHUMG00000154536 2 2q33 aldehyde oxidase 1 protein-coding AOX1 aldehyde oxidase 1 O aldehyde oxidase 20121230 -9606 317 APAF1 - APAF-1|CED4 HGNC:576|MIM:602233|Ensembl:ENSG00000120868|HPRD:03755|Vega:OTTHUMG00000170214 12 12q23 apoptotic peptidase activating factor 1 protein-coding APAF1 apoptotic peptidase activating factor 1 O apoptotic protease-activating factor 1 20121230 -9606 318 NUDT2 - APAH1 HGNC:8049|MIM:602852|Ensembl:ENSG00000164978|HPRD:04168|Vega:OTTHUMG00000019817 9 9p13 nudix (nucleoside diphosphate linked moiety X)-type motif 2 protein-coding NUDT2 nudix (nucleoside diphosphate linked moiety X)-type motif 2 O Ap4A hydrolase 1|Ap4Aase|bis(5'-nucleosyl)-tetraphosphatase (asymmetrical)|bis(5'-nucleosyl)-tetraphosphatase [asymmetrical]|diadenosine 5',5'''-P1,P4-tetraphosphate asymmetrical hydrolase|diadenosine 5',5''-P1,P4-tetraphosphate pyrophosphohydrolase|diadenosine tetraphosphatase|nucleoside diphosphate-linked moiety X motif 2|nudix motif 2 20121230 -9606 319 APOF - Apo-F|LTIP HGNC:615|MIM:107760|Ensembl:ENSG00000175336|HPRD:00137|Vega:OTTHUMG00000170715 12 12q13.3 apolipoprotein F protein-coding APOF apolipoprotein F O lipid transfer inhibitor protein 20121230 -9606 320 APBA1 - D9S411E|LIN10|MINT1|X11|X11A|X11ALPHA HGNC:578|MIM:602414|Ensembl:ENSG00000107282|HPRD:03879|Vega:OTTHUMG00000019984 9 9q13-q21.1 amyloid beta (A4) precursor protein-binding, family A, member 1 protein-coding APBA1 amyloid beta (A4) precursor protein-binding, family A, member 1 O adapter protein X11alpha|adaptor protein X11alpha|amyloid beta (A4) precursor protein-binding, family A, member 1 (X11)|amyloid beta A4 precursor protein-binding family A member 1|mint-1|neuron-specific X11 protein|neuronal munc18-1-interacting protein 1|phosphotyrosine-binding/-interacting domain (PTB)-bearing protein 20121230 -9606 321 APBA2 - D15S1518E|HsT16821|LIN-10|MGC:14091|MINT2|X11-BETA|X11L HGNC:579|MIM:602712|Ensembl:ENSG00000034053|HPRD:04090|Vega:OTTHUMG00000129255 15 15q11-q12 amyloid beta (A4) precursor protein-binding, family A, member 2 protein-coding APBA2 amyloid beta (A4) precursor protein-binding, family A, member 2 O X11-like protein|adapter protein X11beta|amyloid beta (A4) precursor protein-binding, family A, member 2 (X11-like)|amyloid beta A4 precursor protein-binding family A member 2|mint-2|neuron-specific X11L protein|neuronal munc18-1-interacting protein 2|phosphotyrosine-binding/-interacting domain (PTB)-bearing protein 20121230 -9606 322 APBB1 - FE65|MGC:9072|RIR HGNC:581|MIM:602709|Ensembl:ENSG00000166313|HPRD:04087|Vega:OTTHUMG00000165454 11 11p15 amyloid beta (A4) precursor protein-binding, family B, member 1 (Fe65) protein-coding APBB1 amyloid beta (A4) precursor protein-binding, family B, member 1 (Fe65) O adaptor protein FE65a2|amyloid beta A4 precursor protein-binding family B member 1|stat-like protein 20121230 -9606 323 APBB2 - FE65L|FE65L1 HGNC:582|MIM:602710|Ensembl:ENSG00000163697|HPRD:04088|Vega:OTTHUMG00000160416 4 4p13 amyloid beta (A4) precursor protein-binding, family B, member 2 protein-coding APBB2 amyloid beta (A4) precursor protein-binding, family B, member 2 O Fe65-like 1|amyloid beta A4 precursor protein-binding family B member 2|protein Fe65-like 1 20121230 -9606 324 APC - BTPS2|DP2|DP2.5|DP3|GS|PPP1R46 HGNC:583|MIM:611731|Ensembl:ENSG00000134982|HPRD:01439|Vega:OTTHUMG00000128806 5 5q21-q22 adenomatous polyposis coli protein-coding APC adenomatous polyposis coli O adenomatosis polyposis coli tumor suppressor|adenomatous polyposis coli protein|deleted in polyposis 2.5|protein phosphatase 1, regulatory subunit 46 20121230 -9606 325 APCS - PTX2|SAP HGNC:584|MIM:104770|Ensembl:ENSG00000132703|HPRD:00101|Vega:OTTHUMG00000022741 1 1q21-q23 amyloid P component, serum protein-coding APCS amyloid P component, serum O 9.5S alpha-1-glycoprotein|pentaxin-related|serum amyloid P-component 20121230 -9606 326 AIRE - AIRE1|APECED|APS1|APSI|PGA1 HGNC:360|MIM:607358|Ensembl:ENSG00000160224|HPRD:06301|Vega:OTTHUMG00000086921 21 21q22.3 autoimmune regulator protein-coding AIRE autoimmune regulator O autoimmune polyendocrinopathy candidiasis ectodermal dystrophy protein 20121230 -9606 327 APEH - AARE|ACPH|APH|D3F15S2|D3S48E|DNF15S2|OPH HGNC:586|MIM:102645|Ensembl:ENSG00000164062|HPRD:00034|Vega:OTTHUMG00000156882 3 3p21.31 N-acylaminoacyl-peptide hydrolase protein-coding APEH N-acylaminoacyl-peptide hydrolase O acyl-peptide hydrolase|acylamino-acid-releasing enzyme|acylaminoacyl-peptidase|oxidized protein hydrolase 20121230 -9606 328 APEX1 - APE|APE1|APEN|APEX|APX|HAP1|REF1 HGNC:587|MIM:107748|Ensembl:ENSG00000100823|HPRD:00136|Vega:OTTHUMG00000029544 14 14q11.2 APEX nuclease (multifunctional DNA repair enzyme) 1 protein-coding APEX1 APEX nuclease (multifunctional DNA repair enzyme) 1 O AP endonuclease class I|AP lyase|DNA-(apurinic or apyrimidinic site) lyase|apurinic-apyrimidinic endonuclease 1|apurinic/apyrimidinic (abasic) endonuclease|deoxyribonuclease (apurinic or apyrimidinic)|protein REF-1|redox factor-1 20121230 -9606 329 BIRC2 - API1|HIAP2|Hiap-2|MIHB|RNF48|c-IAP1|cIAP1 HGNC:590|MIM:601712|Ensembl:ENSG00000110330|HPRD:03419|Vega:OTTHUMG00000167325 11 11q22 baculoviral IAP repeat containing 2 protein-coding BIRC2 baculoviral IAP repeat containing 2 O IAP homolog B|IAP-2|NFR2-TRAF signalling complex protein|RING finger protein 48|TNFR2-TRAF-signaling complex protein 2|apoptosis inhibitor 1|baculoviral IAP repeat-containing 2|baculoviral IAP repeat-containing protein 2|inhibitor of apoptosis protein 2 20121230 -9606 330 BIRC3 - AIP1|API2|CIAP2|HAIP1|HIAP1|MALT2|MIHC|RNF49|c-IAP2 HGNC:591|MIM:601721|Ensembl:ENSG00000023445|HPRD:03426|Vega:OTTHUMG00000167324 11 11q22 baculoviral IAP repeat containing 3 protein-coding BIRC3 baculoviral IAP repeat containing 3 O IAP homolog C|IAP-1|RING finger protein 49|TNFR2-TRAF signaling complex protein|TNFR2-TRAF-signaling complex protein 1|apoptosis inhibitor 2|baculoviral IAP repeat-containing 3|baculoviral IAP repeat-containing protein 3|inhibitor of apoptosis protein 1|mammalian IAP homolog C 20121230 -9606 331 XIAP RP1-315G1.5 API3|BIRC4|IAP-3|ILP1|MIHA|XLP2|hIAP-3|hIAP3 HGNC:592|MIM:300079|Ensembl:ENSG00000101966|HPRD:02094|Vega:OTTHUMG00000022336 X Xq25 X-linked inhibitor of apoptosis protein-coding XIAP X-linked inhibitor of apoptosis O E3 ubiquitin-protein ligase XIAP|IAP-like protein|X-linked IAP|X-linked inhibitor of apoptosis protein|baculoviral IAP repeat-containing 4|baculoviral IAP repeat-containing protein 4|inhibitor of apoptosis protein 3 20121230 -9606 332 BIRC5 - API4|EPR-1 HGNC:593|MIM:603352|Ensembl:ENSG00000089685|HPRD:04520|Vega:OTTHUMG00000177505 17 17q25 baculoviral IAP repeat containing 5 protein-coding BIRC5 baculoviral IAP repeat containing 5 O apoptosis inhibitor 4|apoptosis inhibitor survivin|baculoviral IAP repeat-containing protein 5|survivin variant 3 alpha 20121230 -9606 333 APLP1 - APLP HGNC:597|MIM:104775|Ensembl:ENSG00000105290|HPRD:00102|Vega:OTTHUMG00000180692 19 19q13.1 amyloid beta (A4) precursor-like protein 1 protein-coding APLP1 amyloid beta (A4) precursor-like protein 1 O APLP-1|amyloid precursor-like protein 1|amyloid-like protein 1 20121230 -9606 334 APLP2 - APLP-2|APPH|APPL2|CDEBP HGNC:598|MIM:104776|Ensembl:ENSG00000084234|HPRD:00103|Vega:OTTHUMG00000165767 11 11q24 amyloid beta (A4) precursor-like protein 2 protein-coding APLP2 amyloid beta (A4) precursor-like protein 2 O CDEI box-binding protein|amyloid precursor protein homolog HSD-2|amyloid-like protein 2 20121230 -9606 335 APOA1 - - HGNC:600|MIM:107680|Ensembl:ENSG00000118137|HPRD:02517|Vega:OTTHUMG00000046112 11 11q23-q24 apolipoprotein A-I protein-coding APOA1 apolipoprotein A-I O apo-AI|apoA-I 20121230 -9606 336 APOA2 - Apo-AII|ApoA-II|apoAII HGNC:601|MIM:107670|Ensembl:ENSG00000158874|HPRD:00129|Vega:OTTHUMG00000034346 1 1q23.3 apolipoprotein A-II protein-coding APOA2 apolipoprotein A-II O apolipoprotein A2 20121230 -9606 337 APOA4 - - HGNC:602|MIM:107690|Ensembl:ENSG00000110244|HPRD:00130|Vega:OTTHUMG00000046110 11 11q23 apolipoprotein A-IV protein-coding APOA4 apolipoprotein A-IV O apo-AIV|apoA-IV|apolipoprotein A4 20121230 -9606 338 APOB - FLDB|LDLCQ4 HGNC:603|MIM:107730|Ensembl:ENSG00000084674|HPRD:00133|Vega:OTTHUMG00000090785 2 2p24-p23 apolipoprotein B (including Ag(x) antigen) protein-coding APOB apolipoprotein B (including Ag(x) antigen) O apo B-100|apoB-100|apoB-48|apolipoprotein B-100|apolipoprotein B48|mutant Apo B 100 20121230 -9606 339 APOBEC1 - APOBEC-1|BEDP|CDAR1|HEPR HGNC:604|MIM:600130|Ensembl:ENSG00000111701|HPRD:02531|Vega:OTTHUMG00000141288 12 12p13.1 apolipoprotein B mRNA editing enzyme, catalytic polypeptide 1 protein-coding APOBEC1 apolipoprotein B mRNA editing enzyme, catalytic polypeptide 1 O C->U-editing enzyme APOBEC-1|apolipoprotein B mRNA editing enzyme complex-1|apolipoprotein B mRNA-editing enzyme 1 20121230 -9606 341 APOC1 - - HGNC:607|MIM:107710|Ensembl:ENSG00000130208|HPRD:00131|Vega:OTTHUMG00000180844 19 19q13.2 apolipoprotein C-I protein-coding APOC1 apolipoprotein C-I O apo-CIB|apoC-IB|apolipoprotein C1 20121230 -9606 342 APOC1P1 - - HGNC:608 19 19q13.2 apolipoprotein C-I pseudogene 1 pseudo APOC1P1 apolipoprotein C-I pseudogene 1 O - 20121230 -9606 343 AQP8 - AQP-8 HGNC:642|MIM:603750|Ensembl:ENSG00000103375|HPRD:04778|Vega:OTTHUMG00000097013 16 16p12 aquaporin 8 protein-coding AQP8 aquaporin 8 O aquaporin-8 20121230 -9606 344 APOC2 - APO-CII|APOC-II HGNC:609|MIM:608083|Ensembl:ENSG00000224916|Ensembl:ENSG00000234906|HPRD:07457|Vega:OTTHUMG00000180847 19 19q13.2 apolipoprotein C-II protein-coding APOC2 apolipoprotein C-II O apolipoprotein C2 20121230 -9606 345 APOC3 - APOCIII|HALP2 HGNC:610|MIM:107720|Ensembl:ENSG00000110245|HPRD:00132|Vega:OTTHUMG00000046115 11 11q23.3 apolipoprotein C-III protein-coding APOC3 apolipoprotein C-III O apo-CIII|apoC-III|apolipoprotein C3 20121230 -9606 346 APOC4 - APO-CIV|APOC-IV HGNC:611|MIM:600745|Ensembl:ENSG00000224916|Ensembl:ENSG00000267467|HPRD:02848|Vega:OTTHUMG00000180845 19 19q13.2 apolipoprotein C-IV protein-coding APOC4 apolipoprotein C-IV O apolipoprotein C4 20121230 -9606 347 APOD - - HGNC:612|MIM:107740|Ensembl:ENSG00000189058|HPRD:00134|Vega:OTTHUMG00000155854 3 3q26.2-qter apolipoprotein D protein-coding APOD apolipoprotein D O apo-D 20121230 -9606 348 APOE - AD2|LDLCQ5|LPG HGNC:613|MIM:107741|Ensembl:ENSG00000130203|HPRD:00135|Vega:OTTHUMG00000128901 19 19q13.2 apolipoprotein E protein-coding APOE apolipoprotein E O apo-E|apolipoprotein E3 20121230 -9606 350 APOH - B2G1|B2GP1|BG HGNC:616|MIM:138700|Ensembl:ENSG00000091583|HPRD:00728|Vega:OTTHUMG00000179530 17 17q24.2 apolipoprotein H (beta-2-glycoprotein I) protein-coding APOH apolipoprotein H (beta-2-glycoprotein I) O APC inhibitor|B2GPI|activated protein C-binding protein|anticardiolipin cofactor|apo-H|beta(2)GPI|beta-2-glycoprotein 1 20121230 -9606 351 APP - AAA|ABETA|ABPP|AD1|APPI|CTFgamma|CVAP|PN-II|PN2 HGNC:620|MIM:104760|Ensembl:ENSG00000142192|HPRD:00100|Vega:OTTHUMG00000078438 21 21q21.3 amyloid beta (A4) precursor protein protein-coding APP amyloid beta (A4) precursor protein O alzheimer disease amyloid protein|amyloid beta A4 protein|beta-amyloid peptide|cerebral vascular amyloid peptide|peptidase nexin-II|preA4|protease nexin-II 20121230 -9606 353 APRT - AMP|APRTD HGNC:626|MIM:102600|Ensembl:ENSG00000198931|HPRD:00029|Vega:OTTHUMG00000175454 16 16q24 adenine phosphoribosyltransferase protein-coding APRT adenine phosphoribosyltransferase O AMP diphosphorylase|AMP pyrophosphorylase|transphosphoribosidase 20121230 -9606 354 KLK3 - APS|KLK2A1|PSA|hK3 HGNC:6364|MIM:176820|Ensembl:ENSG00000142515|HPRD:01461 19 19q13.41 kallikrein-related peptidase 3 protein-coding KLK3 kallikrein-related peptidase 3 O P-30 antigen|gamma-seminoprotein|kallikrein-3|prostate specific antigen|prostate-specific antigen|semenogelase|seminin 20121230 -9606 355 FAS RP11-399O19.7 ALPS1A|APO-1|APT1|CD95|FAS1|FASTM|TNFRSF6 HGNC:11920|MIM:134637|Ensembl:ENSG00000026103|HPRD:00609|Vega:OTTHUMG00000018701 10 10q24.1 Fas (TNF receptor superfamily, member 6) protein-coding FAS Fas (TNF receptor superfamily, member 6) O APO-1 cell surface antigen|CD95 antigen|Delta Fas/APO-1/CD95|FAS 827dupA|FASLG receptor|Fas AMA|apoptosis antigen 1|apoptosis-mediating surface antigen FAS|tumor necrosis factor receptor superfamily member 6|tumor necrosis factor receptor superfamily, member 6 20121230 -9606 356 FASLG - ALPS1B|APT1LG1|CD178|CD95-L|CD95L|FASL|TNFSF6 HGNC:11936|MIM:134638|Ensembl:ENSG00000117560|HPRD:00610|Vega:OTTHUMG00000034841 1 1q23 Fas ligand (TNF superfamily, member 6) protein-coding FASLG Fas ligand (TNF superfamily, member 6) O APTL|CD95 ligand|apoptosis (APO-1) antigen ligand 1|apoptosis antigen ligand|fas antigen ligand|tumor necrosis factor (ligand) superfamily, member 6|tumor necrosis factor ligand superfamily member 6 20121230 -9606 357 SHROOM2 - APXL|HSAPXL HGNC:630|MIM:300103|Ensembl:ENSG00000146950|HPRD:02113|Vega:OTTHUMG00000021121 X Xp22.3 shroom family member 2 protein-coding SHROOM2 shroom family member 2 O APX homolog of Xenopus|apical-like protein|protein Shroom2 20121230 -9606 358 AQP1 - AQP-CHIP|CHIP28|CO HGNC:633|MIM:107776|Ensembl:ENSG00000240583|HPRD:00140|Vega:OTTHUMG00000023944 7 7p14 aquaporin 1 (Colton blood group) protein-coding AQP1 aquaporin 1 (Colton blood group) O Colton blood group|aquaporin 1 (channel-forming integral protein, 28kDa, CO blood group)|aquaporin-1|aquaporin-CHIP|channel-like integral membrane protein, 28-kDa|urine water channel|water channel protein for red blood cells and kidney proximal tubule 20121230 -9606 359 AQP2 - AQP-CD|WCH-CD HGNC:634|MIM:107777|Ensembl:ENSG00000167580|HPRD:00141|Vega:OTTHUMG00000169709 12 12q12-q13 aquaporin 2 (collecting duct) protein-coding AQP2 aquaporin 2 (collecting duct) O ADH water channel|AQP-2|aquaporin-2|aquaporin-CD|collecting duct water channel protein|water channel protein for renal collecting duct|water-channel aquaporin 2 20121230 -9606 360 AQP3 - AQP-3|GIL HGNC:636|MIM:600170|Ensembl:ENSG00000165272|HPRD:08970|Vega:OTTHUMG00000019769 9 9p13 aquaporin 3 (Gill blood group) protein-coding AQP3 aquaporin 3 (Gill blood group) O aquaglyceroporin-3|aquaporin 3 (GIL blood group)|aquaporin-3 20121230 -9606 361 AQP4 - HMIWC2|MIWC HGNC:637|MIM:600308|Ensembl:ENSG00000171885|HPRD:02631|Vega:OTTHUMG00000131955 18 18q11.2-q12.1 aquaporin 4 protein-coding AQP4 aquaporin 4 O WCH4|aquaporin type4|aquaporin-4|mercurial-insensitive water channel 20121230 -9606 362 AQP5 - AQP-5 HGNC:638|MIM:600442|Ensembl:ENSG00000161798|HPRD:02706|Vega:OTTHUMG00000169710 12 12q13 aquaporin 5 protein-coding AQP5 aquaporin 5 O aquaporin-5 20121230 -9606 363 AQP6 - AQP2L|KID HGNC:639|MIM:601383|Ensembl:ENSG00000086159|HPRD:03226|Vega:OTTHUMG00000133548 12 12q13 aquaporin 6, kidney specific protein-coding AQP6 aquaporin 6, kidney specific O AQP-6|aquaporin 2-like, kidney specific|aquaporin-6|aquaporin-6, kidney specific|hKID|kidney-specific aquaporin 20121230 -9606 364 AQP7 RP11-311H10.6 AQP7L|AQP9|AQPap|GLYCQTL HGNC:640|MIM:602974|Ensembl:ENSG00000165269|HPRD:04277|Vega:OTTHUMG00000019773 9 9p13 aquaporin 7 protein-coding AQP7 aquaporin 7 O AQP-7|aquaglyceroporin-7|aquaporin adipose|aquaporin-7 20121230 -9606 366 AQP9 - AQP-9|HsT17287|SSC1 HGNC:643|MIM:602914|Ensembl:ENSG00000103569|HPRD:04223|Vega:OTTHUMG00000132631 15 15q aquaporin 9 protein-coding AQP9 aquaporin 9 O aquaglyceroporin-9|aquaporin-9|small solute channel 1 20121230 -9606 367 AR RP11-383C12.1 AIS|DHTR|HUMARA|HYSP1|KD|NR3C4|SBMA|SMAX1|TFM HGNC:644|MIM:313700|Ensembl:ENSG00000169083|HPRD:02437|Vega:OTTHUMG00000021740 X Xq12 androgen receptor protein-coding AR androgen receptor O androgen nuclear receptor variant 2|dihydrotestosterone receptor|nuclear receptor subfamily 3 group C member 4 20121230 -9606 368 ABCC6 - ABC34|ARA|EST349056|GACI2|MLP1|MOAT-E|MOATE|MRP6|PXE|PXE1|URG7 HGNC:57|MIM:603234|Ensembl:ENSG00000091262|HPRD:04453|Vega:OTTHUMG00000129967 16 16p13.1 ATP-binding cassette, sub-family C (CFTR/MRP), member 6 protein-coding ABCC6 ATP-binding cassette, sub-family C (CFTR/MRP), member 6 O ATP-binding cassette sub-family C member 6|anthracycline resistance-associated protein|multi-specific organic anion transporter E|multidrug resistance-associated protein 6 20121230 -9606 369 ARAF RP1-230G1.1 A-RAF|ARAF1|PKS2|RAFA1 HGNC:646|MIM:311010|Ensembl:ENSG00000078061|HPRD:02405|Vega:OTTHUMG00000021446 X Xp11.4-p11.2 v-raf murine sarcoma 3611 viral oncogene homolog protein-coding ARAF v-raf murine sarcoma 3611 viral oncogene homolog O A-Raf proto-oncogene serine/threonine-protein kinase|Oncogene ARAF1|Ras-binding protein DA-Raf|proto-oncogene A-Raf-1|proto-oncogene Pks|serine/threonine-protein kinase A-Raf|v-raf murine sarcoma 3611 viral oncogene homolog 1 20121230 -9606 372 ARCN1 - COPD HGNC:649|MIM:600820|Ensembl:ENSG00000095139|HPRD:02893|Vega:OTTHUMG00000166340 11 11q23.3 archain 1 protein-coding ARCN1 archain 1 O archain vesicle transport protein 1|coatomer delta subunit|coatomer protein complex, subunit delta|coatomer protein delta-COP|coatomer subunit delta|delta-COP|delta-coat protein 20121230 -9606 373 TRIM23 - ARD1|ARFD1|RNF46 HGNC:660|MIM:601747|Ensembl:ENSG00000113595|HPRD:03449|Vega:OTTHUMG00000097802 5 5q12.3 tripartite motif containing 23 protein-coding TRIM23 tripartite motif containing 23 O ADP-ribosylation factor domain protein 1, 64kDa|ADP-ribosylation factor domain-containing protein 1|ARF domain protein 1|E3 ubiquitin-protein ligase TRIM23|GTP-binding protein ARD-1|RING finger protein 46|tripartite motif protein TRIM23|tripartite motif-containing 23|tripartite motif-containing protein 23 20121230 -9606 374 AREG - AR|CRDGF|SDGF HGNC:651|MIM:104640|Ensembl:ENSG00000109321|HPRD:00093|Vega:OTTHUMG00000130006 4 4q13.3 amphiregulin protein-coding AREG amphiregulin O colorectum cell-derived growth factor|schwannoma-derived growth factor 20121230 -9606 375 ARF1 - - HGNC:652|MIM:103180|Ensembl:ENSG00000143761|HPRD:00054|Vega:OTTHUMG00000037595 1 1q42 ADP-ribosylation factor 1 protein-coding ARF1 ADP-ribosylation factor 1 O - 20121230 -9606 377 ARF3 - - HGNC:654|MIM:103190|Ensembl:ENSG00000134287|HPRD:00056|Vega:OTTHUMG00000168080 12 12q13 ADP-ribosylation factor 3 protein-coding ARF3 ADP-ribosylation factor 3 O small GTP binding protein 20121230 -9606 378 ARF4 - ARF2 HGNC:655|MIM:601177|Ensembl:ENSG00000168374|HPRD:03107|Vega:OTTHUMG00000158601 3 3p21.2-p21.1 ADP-ribosylation factor 4 protein-coding ARF4 ADP-ribosylation factor 4 O ADP-ribosylation factor 2 20121230 -9606 379 ARL4D - ARF4L|ARL6 HGNC:656|MIM:600732|Ensembl:ENSG00000175906|HPRD:02842|Vega:OTTHUMG00000180881 17 17q21.31 ADP-ribosylation factor-like 4D protein-coding ARL4D ADP-ribosylation factor-like 4D O ADP-ribosylation factor-like 6|ADP-ribosylation factor-like protein 4D|ADP-ribosylation factor-like protein 4L 20121230 -9606 380 ARF4P1 - ARF4P HGNC:657 9 9q34 ADP-ribosylation factor 4 pseudogene 1 pseudo ARF4P1 ADP-ribosylation factor 4 pseudogene 1 O - 20121230 -9606 381 ARF5 - - HGNC:658|MIM:103188|Ensembl:ENSG00000004059|HPRD:00055|Vega:OTTHUMG00000023246 7 7q31.3 ADP-ribosylation factor 5 protein-coding ARF5 ADP-ribosylation factor 5 O - 20121230 -9606 382 ARF6 - - HGNC:659|MIM:600464|Ensembl:ENSG00000165527|HPRD:02714|Vega:OTTHUMG00000140296 14 14q21.3 ADP-ribosylation factor 6 protein-coding ARF6 ADP-ribosylation factor 6 O - 20121230 -9606 383 ARG1 - - HGNC:663|MIM:608313|Ensembl:ENSG00000118520|HPRD:01947|Vega:OTTHUMG00000015566 6 6q23 arginase, liver protein-coding ARG1 arginase, liver O arginase-1|liver-type arginase|type I arginase 20121230 -9606 384 ARG2 - - HGNC:664|MIM:107830|Ensembl:ENSG00000081181|HPRD:00143|Vega:OTTHUMG00000171807 14 14q24.1 arginase, type II protein-coding ARG2 arginase, type II O L-arginine amidinohydrolase|L-arginine ureahydrolase|arginase 2|arginase-2, mitochondrial|kidney arginase|kidney-type arginase|non-hepatic arginase|nonhepatic arginase|type II arginase 20121230 -9606 387 RHOA - ARH12|ARHA|RHO12|RHOH12 HGNC:667|MIM:165390|Ensembl:ENSG00000067560|HPRD:01323|Vega:OTTHUMG00000156838 3 3p21.3 ras homolog family member A protein-coding RHOA ras homolog family member A O Aplysia ras-related homolog 12|h12|oncogene RHO H12|ras homolog gene family, member A|rho cDNA clone 12|small GTP binding protein RhoA|transforming protein RhoA 20121230 -9606 388 RHOB - ARH6|ARHB|MST081|MSTP081|RHOH6 HGNC:668|MIM:165370|Ensembl:ENSG00000143878|HPRD:01321|Vega:OTTHUMG00000090755 2 2p24 ras homolog family member B protein-coding RHOB ras homolog family member B O Aplysia RAS-related homolog 6|h6|oncogene RHO H6|ras homolog gene family, member B|rho cDNA clone 6|rho-related GTP-binding protein RhoB 20121230 -9606 389 RHOC RP11-426L16.4 ARH9|ARHC|H9|RHOH9 HGNC:669|MIM:165380|Ensembl:ENSG00000155366|HPRD:01322|Vega:OTTHUMG00000011905 1 1p13.1 ras homolog family member C protein-coding RHOC ras homolog family member C O RAS-related homolog 9|oncogene RHO H9|ras homolog gene family, member C|rho cDNA clone 9|rho-related GTP-binding protein RhoC|rhoC GTPase|small GTP binding protein RhoC 20121230 -9606 390 RND3 - ARHE|Rho8|RhoE|memB HGNC:671|MIM:602924|Ensembl:ENSG00000115963|HPRD:04233|Vega:OTTHUMG00000131859 2 2q23.3 Rho family GTPase 3 protein-coding RND3 Rho family GTPase 3 O protein MemB|ras homolog gene family, member E|rho-related GTP-binding protein Rho8|rho-related GTP-binding protein RhoE|small GTP binding protein Rho8 20121230 -9606 391 RHOG - ARHG HGNC:672|MIM:179505|Ensembl:ENSG00000177105|HPRD:01537|Vega:OTTHUMG00000012287 11 11p15.5-p15.4 ras homolog family member G protein-coding RHOG ras homolog family member G O ras homolog gene family, member G (rho G)|rho-related GTP-binding protein RhoG 20121230 -9606 392 ARHGAP1 - CDC42GAP|RHOGAP|RHOGAP1|p50rhoGAP HGNC:673|MIM:602732|Ensembl:ENSG00000175220|HPRD:04108|Vega:OTTHUMG00000166567 11 11p11.2 Rho GTPase activating protein 1 protein-coding ARHGAP1 Rho GTPase activating protein 1 O CDC42 GTPase-activating protein|GTPase-activating protein rhoGAP|GTPase-activating protein rhoOGAP|GTPase-activating protein, Rho, 1|rho GTPase-activating protein 1|rho-related small GTPase protein activator|rho-type GTPase-activating protein 1 20121230 -9606 393 ARHGAP4 - C1|RGC1|RhoGAP4|SrGAP4|p115 HGNC:674|MIM:300023|Ensembl:ENSG00000089820|HPRD:02063|Vega:OTTHUMG00000024226 X Xq28 Rho GTPase activating protein 4 protein-coding ARHGAP4 Rho GTPase activating protein 4 O Rho-GAP hematopoietic protein C1|rho GTPase-activating protein 4|rho-type GTPase-activating protein 4 20121230 -9606 394 ARHGAP5 - GFI2|RhoGAP5|p190-B|p190BRhoGAP HGNC:675|MIM:602680|Ensembl:ENSG00000100852|HPRD:04060|Vega:OTTHUMG00000170589 14 14q12 Rho GTPase activating protein 5 protein-coding ARHGAP5 Rho GTPase activating protein 5 O growth factor independent 2|p100 RasGAP-associated p105 protein|p105 RhoGAP|rho GTPase-activating protein 5|rho-type GTPase-activating protein 5 20121230 -9606 395 ARHGAP6 - RHOGAP6|RHOGAPX-1 HGNC:676|MIM:300118|Ensembl:ENSG00000047648|HPRD:02124|Vega:OTTHUMG00000021134 X Xp22.3 Rho GTPase activating protein 6 protein-coding ARHGAP6 Rho GTPase activating protein 6 O Rho-type GTPase-activating protein RhoGAPX-1|rho GTPase-activating protein 6|rho-type GTPase-activating protein 6 20121230 -9606 396 ARHGDIA - GDIA1|RHOGDI|RHOGDI-1 HGNC:678|MIM:601925|Ensembl:ENSG00000141522|HPRD:03565|Vega:OTTHUMG00000178352 17 17q25.3 Rho GDP dissociation inhibitor (GDI) alpha protein-coding ARHGDIA Rho GDP dissociation inhibitor (GDI) alpha O rho GDI 1|rho GDP-dissociation inhibitor 1|rho-GDI alpha 20121230 -9606 397 ARHGDIB - D4|GDIA2|GDID4|LYGDI|Ly-GDI|RAP1GN1|RhoGDI2 HGNC:679|MIM:602843|Ensembl:ENSG00000111348|HPRD:04162|Vega:OTTHUMG00000168742 12 12p12.3 Rho GDP dissociation inhibitor (GDI) beta protein-coding ARHGDIB Rho GDP dissociation inhibitor (GDI) beta O Rho GDI 2|rho GDP-dissociation inhibitor 2|rho-GDI beta 20121230 -9606 398 ARHGDIG LA16c-314G4.1 RHOGDI-3 HGNC:680|MIM:602844|Ensembl:ENSG00000242173|HPRD:04163|Vega:OTTHUMG00000064892 16 16p13.3 Rho GDP dissociation inhibitor (GDI) gamma protein-coding ARHGDIG Rho GDP dissociation inhibitor (GDI) gamma O RhoGDI gamma|rho GDI 3|rho GDP-dissociation inhibitor 3|rho-GDI gamma 20121230 -9606 399 RHOH - ARHH|TTF HGNC:686|MIM:602037|Ensembl:ENSG00000168421|HPRD:03616|Vega:OTTHUMG00000099373 4 4p13 ras homolog family member H protein-coding RHOH ras homolog family member H O GTP-binding protein TTF|TTF, translocation three four|ras homolog gene family, member H|rho-related GTP-binding protein RhoH|translocation three four protein 20121230 -9606 400 ARL1 - ARFL1 HGNC:692|MIM:603425|Ensembl:ENSG00000120805|HPRD:04574|Vega:OTTHUMG00000170271 12 12q23.2 ADP-ribosylation factor-like 1 protein-coding ARL1 ADP-ribosylation factor-like 1 O ADP-ribosylation factor-like protein 1 20121230 -9606 401 PHOX2A - ARIX|CFEOM2|FEOM2|NCAM2|PMX2A HGNC:691|MIM:602753|Ensembl:ENSG00000165462|HPRD:04129|Vega:OTTHUMG00000167899 11 11q13.2 paired-like homeobox 2a protein-coding PHOX2A paired-like homeobox 2a O ARIX1 homeodomain protein|aristaless homeobox homolog|aristaless homeobox protein homolog|arix homeodomain protein|paired mesoderm homeobox protein 2A 20121230 -9606 402 ARL2 - ARFL2 HGNC:693|MIM:601175|Ensembl:ENSG00000213465|HPRD:11869|Vega:OTTHUMG00000165728 11 11q13 ADP-ribosylation factor-like 2 protein-coding ARL2 ADP-ribosylation factor-like 2 O ADP-ribosylation factor-like protein 2 20121230 -9606 403 ARL3 RP11-47A8.3 ARFL3 HGNC:694|MIM:604695|Ensembl:ENSG00000138175|HPRD:05260|Vega:OTTHUMG00000018965 10 10q23.3 ADP-ribosylation factor-like 3 protein-coding ARL3 ADP-ribosylation factor-like 3 O ADP-ribosylation factor-like protein 3|ARF-like 3 20121230 -9606 405 ARNT - HIF-1-beta|HIF-1beta|HIF1-beta|HIF1B|HIF1BETA|TANGO|bHLHe2 HGNC:700|MIM:126110|Ensembl:ENSG00000143437|HPRD:00524|Vega:OTTHUMG00000035011 1 1q21 aryl hydrocarbon receptor nuclear translocator protein-coding ARNT aryl hydrocarbon receptor nuclear translocator O class E basic helix-loop-helix protein 2|dioxin receptor, nuclear translocator|hypoxia-inducible factor 1, beta subunit 20121230 -9606 406 ARNTL - BMAL1|BMAL1c|JAP3|MOP3|PASD3|TIC|bHLHe5 HGNC:701|MIM:602550|Ensembl:ENSG00000133794|HPRD:03973|Vega:OTTHUMG00000150623 11 11p15 aryl hydrocarbon receptor nuclear translocator-like protein-coding ARNTL aryl hydrocarbon receptor nuclear translocator-like O ARNT-like protein 1, brain and muscle|PAS domain-containing protein 3|aryl hydrocarbon receptor nuclear translocator-like protein 1|bHLH-PAS protein JAP3|basic-helix-loop-helix-PAS orphan MOP3|basic-helix-loop-helix-PAS protein MOP3|brain and muscle ARNT-like 1|class E basic helix-loop-helix protein 5|member of PAS protein 3|member of PAS superfamily 3 20121230 -9606 407 ARR3 RP13-26D14.6 ARRX HGNC:710|MIM:301770|Ensembl:ENSG00000120500|HPRD:02358|Vega:OTTHUMG00000021768 X Xcen-q21 arrestin 3, retinal (X-arrestin) protein-coding ARR3 arrestin 3, retinal (X-arrestin) O C-arrestin|X-arrestin|arrestin 4|arrestin-C|cArr|cone arrestin|retinal cone arrestin-3 20121230 -9606 408 ARRB1 - ARB1|ARR1 HGNC:711|MIM:107940|Ensembl:ENSG00000137486|HPRD:00146|Vega:OTTHUMG00000165444 11 11q13 arrestin, beta 1 protein-coding ARRB1 arrestin, beta 1 O arrestin 2|beta-arrestin-1 20121230 -9606 409 ARRB2 - ARB2|ARR2|BARR2 HGNC:712|MIM:107941|Ensembl:ENSG00000141480|HPRD:00147|Vega:OTTHUMG00000090759 17 17p13 arrestin, beta 2 protein-coding ARRB2 arrestin, beta 2 O arrestin 3|arrestin beta-2|beta-arrestin-2 20121230 -9606 410 ARSA - MLD HGNC:713|MIM:607574|Ensembl:ENSG00000100299|HPRD:09617|Vega:OTTHUMG00000150180 22 22q13.33 arylsulfatase A protein-coding ARSA arylsulfatase A O ASA|cerebroside-sulfatase 20121230 -9606 411 ARSB - ASB|G4S|MPS6 HGNC:714|MIM:611542|Ensembl:ENSG00000113273|HPRD:08358|Vega:OTTHUMG00000108129 5 5q14.1 arylsulfatase B protein-coding ARSB arylsulfatase B O N-acetylgalactosamine-4-sulfatase 20121230 -9606 412 STS - ARSC|ARSC1|ASC|ES|SSDD|XLI HGNC:11425|MIM:300747|Ensembl:ENSG00000101846|HPRD:02389|Vega:OTTHUMG00000021102 X Xp22.32 steroid sulfatase (microsomal), isozyme S protein-coding STS steroid sulfatase (microsomal), isozyme S O arylsulfatase C|estrone sulfatase|steryl-sulfatase|steryl-sulfate sulfohydrolase 20121230 -9606 413 ARSC2 - ARSC HGNC:716|MIM:301780 X Xpter-p22.32 arylsulfatase C, isozyme F unknown ARSC2 arylsulfatase C, isozyme F O - 20080828 -9606 414 ARSD - ASD HGNC:717|MIM:300002|Ensembl:ENSG00000006756|HPRD:02048|Vega:OTTHUMG00000021077 X Xp22.3 arylsulfatase D protein-coding ARSD arylsulfatase D O - 20121230 -9606 415 ARSE - ASE|CDPX|CDPX1|CDPXR HGNC:719|MIM:300180|Ensembl:ENSG00000157399|HPRD:02171|Vega:OTTHUMG00000137358 X Xp22.3 arylsulfatase E (chondrodysplasia punctata 1) protein-coding ARSE arylsulfatase E (chondrodysplasia punctata 1) O arylsulfatase E|chondrodysplasia punctata 1 20121230 -9606 416 ARSF - ASF HGNC:721|MIM:300003|Ensembl:ENSG00000062096|HPRD:02049|Vega:OTTHUMG00000021081 X Xp22.3 arylsulfatase F protein-coding ARSF arylsulfatase F O - 20121230 -9606 417 ART1 - ART2|ARTC1|CD296|RT6 HGNC:723|MIM:601625|Ensembl:ENSG00000129744|HPRD:03377|Vega:OTTHUMG00000011845 11 11p15 ADP-ribosyltransferase 1 protein-coding ART1 ADP-ribosyltransferase 1 O ADP-ribosyltransferase 2|ADP-ribosyltransferase C2 and C3 toxin-like 1|GPI-linked NAD(P)(+)--arginine ADP-ribosyltransferase 1|mono(ADP-ribosyl)transferase 1 20121230 -9606 418 ART2P - ART1P|RT6 HGNC:724 11 11q13 ADP-ribosyltransferase 2 (RT6 antigen homolog, rat), pseudogene pseudo ART2P ADP-ribosyltransferase 2 (RT6 antigen homolog, rat), pseudogene O - 20121230 -9606 419 ART3 - ARTC3 HGNC:725|MIM:603086|Ensembl:ENSG00000156219|HPRD:04363|Vega:OTTHUMG00000130110 4 4q21.1|4p15.1-p14 ADP-ribosyltransferase 3 protein-coding ART3 ADP-ribosyltransferase 3 O ADP-ribosyltransferase C2 and C3 toxin-like 3|NAD(P)(+)--arginine ADP-ribosyltransferase 3|ecto-ADP-ribosyltransferase 3|mono(ADP-ribosyl)transferase 3|mono-ADP-ribosyltransferase 20121230 -9606 420 ART4 - ARTC4|CD297|DO|DOK1 HGNC:726|MIM:110600|Ensembl:ENSG00000111339|HPRD:04364|Vega:OTTHUMG00000168738 12 12p13-p12 ADP-ribosyltransferase 4 (Dombrock blood group) protein-coding ART4 ADP-ribosyltransferase 4 (Dombrock blood group) O ADP-ribosyltransferase 4 (DO blood group)|ADP-ribosyltransferase C2 and C3 toxin-like 4|Dombrock blood group carrier molecule|NAD(P)(+)--arginine ADP-ribosyltransferase 4|ecto-ADP-ribosyltransferase 4|mono(ADP-ribosyl)transferase 4|mono-ADP-ribosyltransferase 4 20121230 -9606 421 ARVCF - - HGNC:728|MIM:602269|Ensembl:ENSG00000099889|HPRD:03778|Vega:OTTHUMG00000030426 22 22q11.21 armadillo repeat gene deleted in velocardiofacial syndrome protein-coding ARVCF armadillo repeat gene deleted in velocardiofacial syndrome O armadillo repeat protein deleted in velo-cardio-facial syndrome 20121230 -9606 424 ARVD3 - ARVD2 HGNC:731|MIM:602086 14 14q12-q22 arrhythmogenic right ventricular dysplasia 3 unknown ARVD3 arrhythmogenic right ventricular dysplasia 3 O - 20120622 -9606 425 ARVD4 - - HGNC:732|MIM:602087 2 2q32.1-q32.3 arrhythmogenic right ventricular dysplasia 4 unknown ARVD4 arrhythmogenic right ventricular dysplasia 4 O - 20120622 -9606 427 ASAH1 HSD33 AC|ACDase|ASAH|PHP|PHP32|SMAPME HGNC:735|MIM:613468|Ensembl:ENSG00000104763|HPRD:01969|Vega:OTTHUMG00000096997 8 8p22 N-acylsphingosine amidohydrolase (acid ceramidase) 1 protein-coding ASAH1 N-acylsphingosine amidohydrolase (acid ceramidase) 1 O acid CDase|acid ceramidase|acylsphingosine deacylase|putative 32 kDa heart protein 20121230 -9606 429 ASCL1 - ASH1|HASH1|MASH1|bHLHa46 HGNC:738|MIM:100790|Ensembl:ENSG00000139352|HPRD:00011|Vega:OTTHUMG00000169967 12 12q23.2 achaete-scute complex homolog 1 (Drosophila) protein-coding ASCL1 achaete-scute complex homolog 1 (Drosophila) O ASH-1|achaete scute protein|achaete-scute complex-like 1|achaete-scute homolog 1|class A basic helix-loop-helix protein 46 20121230 -9606 430 ASCL2 - ASH2|HASH2|MASH2|bHLHa45 HGNC:739|MIM:601886|Ensembl:ENSG00000183734|HPRD:03533|Vega:OTTHUMG00000009648 11 11p15.5 achaete-scute complex homolog 2 (Drosophila) protein-coding ASCL2 achaete-scute complex homolog 2 (Drosophila) O ASH-2|achaete-scute complex-like 2|achaete-scute homolog 2|class A basic helix-loop-helix protein 45|mammalian achaete/scute homologue 2 20121230 -9606 431 ASD1 - - HGNC:741|MIM:108800 5 5p15.31 atrial septal defect 1 unknown ASD1 atrial septal defect 1 O - 20120622 -9606 432 ASGR1 - ASGPR|ASGPR1|CLEC4H1|HL-1 HGNC:742|MIM:108360|Ensembl:ENSG00000141505|HPRD:00151|Vega:OTTHUMG00000102159 17 17p13.2 asialoglycoprotein receptor 1 protein-coding ASGR1 asialoglycoprotein receptor 1 O C-type lectin domain family 4 member H1|hepatic lectin H1 20121230 -9606 433 ASGR2 - ASGP-R2|ASGPR2|CLEC4H2|HBXBP|HL-2 HGNC:743|MIM:108361|Ensembl:ENSG00000161944|HPRD:00152|Vega:OTTHUMG00000102158 17 17p asialoglycoprotein receptor 2 protein-coding ASGR2 asialoglycoprotein receptor 2 O C-type lectin domain family 4 member H2|HBxAg-binding protein|hepatic lectin H2 20121230 -9606 434 ASIP - AGSW|AGTI|AGTIL|ASP|SHEP9 HGNC:745|MIM:600201|Ensembl:ENSG00000101440|HPRD:02562|Vega:OTTHUMG00000032289 20 20q11.2-q12 agouti signaling protein protein-coding ASIP agouti signaling protein O agouti signaling protein, nonagouti homolog|agouti switch protein|agouti-signaling protein|nonagouti homolog 20121230 -9606 435 ASL - ASAL HGNC:746|MIM:608310|Ensembl:ENSG00000126522|HPRD:01948|Vega:OTTHUMG00000022876 7 7q11.21 argininosuccinate lyase protein-coding ASL argininosuccinate lyase O argininosuccinase|arginosuccinase 20121230 -9606 436 ASLP1 - ASLL HGNC:747 22 22q11.23 argininosuccinate lyase pseudogene 1 pseudo ASLP1 argininosuccinate lyase pseudogene 1 O - 20121230 -9606 437 ASMD - ASOD HGNC:749|MIM:107250 4 4q28-q31 anterior segment mesenchymal dysgenesis unknown ASMD anterior segment mesenchymal dysgenesis O - 20110714 -9606 438 ASMT RP13-297E16.2 ASMTY|HIOMT|HIOMTY HGNC:750|MIM:300015|MIM:402500|Ensembl:ENSG00000196433|HPRD:02058|Vega:OTTHUMG00000021065 X|Y Xp22.3 or Yp11.3 acetylserotonin O-methyltransferase protein-coding ASMT acetylserotonin O-methyltransferase O acetylserotonin N-methyltransferase|acetylserotonin methyltransferase (Y chromosome)|hydroxyindole O-methyltransferase 20121230 -9606 439 ASNA1 - ARSA-I|ARSA1|ASNA-I|GET3|TRC40|hASNA-I HGNC:752|MIM:601913|Ensembl:ENSG00000198356|HPRD:03555|Vega:OTTHUMG00000180355 19 19q13.3 arsA arsenite transporter, ATP-binding, homolog 1 (bacterial) protein-coding ASNA1 arsA arsenite transporter, ATP-binding, homolog 1 (bacterial) O ATPase ASNA1|arsenical pump-driving ATPase|arsenite-stimulated ATPase|golgi to ER traffic 3 homolog|transmembrane domain recognition complex 40 kDa ATPase subunit|transmembrane domain recognition complex, 40kDa 20121230 -9606 440 ASNS - TS11 HGNC:753|MIM:108370|Ensembl:ENSG00000070669|HPRD:00153|Vega:OTTHUMG00000022892 7 7q21.3 asparagine synthetase (glutamine-hydrolyzing) protein-coding ASNS asparagine synthetase (glutamine-hydrolyzing) O TS11 cell cycle control protein|asparagine synthetase [glutamine-hydrolyzing]|glutamine-dependent asparagine synthetase 20121230 -9606 442 ASNSP2 - ASNSL2 HGNC:755 21 21p11.2 asparagine synthetase pseudogene 2 pseudo ASNSP2 asparagine synthetase pseudogene 2 O - 20121230 -9606 443 ASPA - ACY2|ASP HGNC:756|MIM:608034|Ensembl:ENSG00000108381|HPRD:02033|Vega:OTTHUMG00000090655 17 17p13.3 aspartoacylase protein-coding ASPA aspartoacylase O ACY-2|aminoacylase 2|aminoacylase-2 20121230 -9606 444 ASPH - AAH|BAH|CASQ2BP1|HAAH|JCTN|junctin HGNC:757|MIM:600582|Ensembl:ENSG00000198363|HPRD:08996|Vega:OTTHUMG00000164375 8 8q12.1 aspartate beta-hydroxylase protein-coding ASPH aspartate beta-hydroxylase O A beta H-J-J|ASP beta-hydroxylase|aspartyl/asparaginyl beta-hydroxylase|aspartyl/asparaginyl-beta-hydroxylase|cardiac junctin|humbug|junctate|peptide-aspartate beta-dioxygenase 20121230 -9606 445 ASS1 RP11-618A20.2 ASS|CTLN1 HGNC:758|MIM:603470|Ensembl:ENSG00000130707|HPRD:04590|Vega:OTTHUMG00000020806 9 9q34.1 argininosuccinate synthase 1 protein-coding ASS1 argininosuccinate synthase 1 O argininosuccinate synthase|argininosuccinate synthetase 1|citrulline--aspartate ligase|citrulline-aspartate ligase 20121230 -9606 447 ASS1P2 - ASSP2 HGNC:765 2 2p22.1 argininosuccinate synthetase 1 pseudogene 2 pseudo ASS1P2 argininosuccinate synthetase 1 pseudogene 2 O - 20121230 -9606 449 ASS1P4 - ASSP4 HGNC:767 X Xp22.33 argininosuccinate synthetase 1 pseudogene 4 pseudo ASS1P4 argininosuccinate synthetase 1 pseudogene 4 O - 20121230 -9606 450 ASS1P5 - ASSP5 HGNC:768 X Xq23 argininosuccinate synthetase 1 pseudogene 5 pseudo ASS1P5 argininosuccinate synthetase 1 pseudogene 5 O - 20121230 -9606 451 ASS1P6 - ASSP6 HGNC:769 Y Yq11.21 argininosuccinate synthetase 1 pseudogene 6 pseudo ASS1P6 argininosuccinate synthetase 1 pseudogene 6 O - 20121230 -9606 453 ASS1P8 - ASSP8 HGNC:771 4 4q31.22 argininosuccinate synthetase 1 pseudogene 8 pseudo ASS1P8 argininosuccinate synthetase 1 pseudogene 8 O - 20121230 -9606 454 ASS1P9 - ASSP9 HGNC:772 5 5q11.2 argininosuccinate synthetase 1 pseudogene 9 pseudo ASS1P9 argininosuccinate synthetase 1 pseudogene 9 O - 20121230 -9606 455 ASS1P10 - ASSP10 HGNC:760 5 5q32 argininosuccinate synthetase 1 pseudogene 10 pseudo ASS1P10 argininosuccinate synthetase 1 pseudogene 10 O - 20121230 -9606 459 ASS1P14 - ASSP14 HGNC:764 12 12p11.21 argininosuccinate synthetase 1 pseudogene 14 pseudo ASS1P14 argininosuccinate synthetase 1 pseudogene 14 O - 20121230 -9606 460 ASTN1 - ASTN HGNC:773|MIM:600904|Ensembl:ENSG00000152092|HPRD:09019|Vega:OTTHUMG00000035041 1 1q25.2 astrotactin 1 protein-coding ASTN1 astrotactin 1 O astrotactin-1 20121230 -9606 462 SERPINC1 PRO0309 AT3|AT3D|ATIII|THPH7 HGNC:775|MIM:107300|Ensembl:ENSG00000117601|HPRD:00122|Vega:OTTHUMG00000037276 1 1q25.1 serpin peptidase inhibitor, clade C (antithrombin), member 1 protein-coding SERPINC1 serpin peptidase inhibitor, clade C (antithrombin), member 1 O antithrombin III|antithrombin-III|serine (or cysteine) proteinase inhibitor, clade C (antithrombin), member 1|serine-cysteine proteinase inhibitor clade C member 1|serpin C1 20121230 -9606 463 ZFHX3 - ATBF1|ATBT|ZNF927 HGNC:777|MIM:104155|Ensembl:ENSG00000140836|HPRD:00075|Vega:OTTHUMG00000137599 16 16q22.3 zinc finger homeobox 3 protein-coding ZFHX3 zinc finger homeobox 3 O AT motif-binding factor 1|AT-binding transcription factor 1|ZFH-3|alpha-fetoprotein enhancer binding protein|alpha-fetoprotein enhancer-binding protein|zinc finger homeobox protein 3|zinc finger homeodomain protein 3 20121230 -9606 465 ATD - ATD1 HGNC:780|MIM:208500 15 15q13 asphixiating thoracic dystrophy (chondroectodermal dysplasia-like syndrome) unknown ATD asphixiating thoracic dystrophy (chondroectodermal dysplasia-like syndrome) O - 20120622 -9606 466 ATF1 - EWS-ATF1|FUS/ATF-1|TREB36 HGNC:783|MIM:123803|Ensembl:ENSG00000123268|HPRD:00440|Vega:OTTHUMG00000169482 12 12q13 activating transcription factor 1 protein-coding ATF1 activating transcription factor 1 O cAMP-dependent transcription factor ATF-1|cyclic AMP-dependent transcription factor ATF-1 20121230 -9606 467 ATF3 RP11-338C15.1 - HGNC:785|MIM:603148|Ensembl:ENSG00000162772|HPRD:04395|Vega:OTTHUMG00000036747 1 1q32.3 activating transcription factor 3 protein-coding ATF3 activating transcription factor 3 O cAMP-dependent transcription factor ATF-3|cyclic AMP-dependent transcription factor ATF-3 20121230 -9606 468 ATF4 - CREB-2|CREB2|TAXREB67|TXREB HGNC:786|MIM:604064|Ensembl:ENSG00000128272|HPRD:06817|Vega:OTTHUMG00000151099 22 22q13.1 activating transcription factor 4 (tax-responsive enhancer element B67) protein-coding ATF4 activating transcription factor 4 (tax-responsive enhancer element B67) O DNA-binding protein TAXREB67|cAMP response element-binding protein 2|cAMP-dependent transcription factor ATF-4|cAMP-responsive element-binding protein 2|cyclic AMP-dependent transcription factor ATF-4|cyclic AMP-responsive element-binding protein 2|tax-responsive enhancer element-binding protein 67 20121230 -9606 469 ATF4P1 - ATF4P|TAXREB67P|TXREBP HGNC:789 X Xq28 activating transcription factor 4 pseudogene 1 pseudo ATF4P1 activating transcription factor 4 pseudogene 1 O - 20121230 -9606 470 ATHS - ALP HGNC:793|MIM:108725 19 19p13.3-p13.2 atherosclerosis susceptibility (lipoprotein associated) unknown ATHS atherosclerosis susceptibility (lipoprotein associated) O - 20120622 -9606 471 ATIC OK/SW-cl.86 AICAR|AICARFT|IMPCHASE|PURH HGNC:794|MIM:601731|Ensembl:ENSG00000138363|HPRD:03434|Vega:OTTHUMG00000133023 2 2q35 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase protein-coding ATIC 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase O 5-aminoimidazole-4-carboxamide-1-beta-D-ribonucleotide transformylase/inosinicase|AICAR formyltransferase/IMP cyclohydrolase bifunctional enzyme|AICARFT/IMPCHASE|bifunctional purine biosynthesis protein PURH|phosphoribosylaminoimidazolecarboxamide formyltransferase/IMP cyclohydrolase 20121230 -9606 472 ATM - AT1|ATA|ATC|ATD|ATDC|ATE|TEL1|TELO1 HGNC:795|MIM:607585|Ensembl:ENSG00000149311|HPRD:06347|Vega:OTTHUMG00000166480 11 11q22-q23 ataxia telangiectasia mutated protein-coding ATM ataxia telangiectasia mutated O A-T mutated|AT mutated|TEL1, telomere maintenance 1, homolog|serine-protein kinase ATM 20121230 -9606 473 RERE RP11-141M15.2 ARG|ARP|ATN1L|DNB1 HGNC:9965|MIM:605226|Ensembl:ENSG00000142599|HPRD:05566|Vega:OTTHUMG00000001765 1 1p36.23 arginine-glutamic acid dipeptide (RE) repeats protein-coding RERE arginine-glutamic acid dipeptide (RE) repeats O arginine-glutamic acid dipeptide repeats protein|atrophin 2|atrophin-1 like protein|atrophin-1 related protein|atrophin-1-like protein|atrophin-1-related protein 20121230 -9606 474 ATOH1 - ATH1|HATH1|MATH-1|bHLHa14 HGNC:797|MIM:601461|Ensembl:ENSG00000172238|HPRD:03270|Vega:OTTHUMG00000130972 4 4q22 atonal homolog 1 (Drosophila) protein-coding ATOH1 atonal homolog 1 (Drosophila) O class A basic helix-loop-helix protein 14|helix-loop-helix protein hATH-1|protein atonal homolog 1 20121230 -9606 475 ATOX1 - ATX1|HAH1 HGNC:798|MIM:602270|Ensembl:ENSG00000177556|HPRD:03779|Vega:OTTHUMG00000163499 5 5q32 ATX1 antioxidant protein 1 homolog (yeast) protein-coding ATOX1 ATX1 antioxidant protein 1 homolog (yeast) O copper transport protein ATOX1|metal transport protein ATX1 20121230 -9606 476 ATP1A1 RP4-655J12.1 - HGNC:799|MIM:182310|Ensembl:ENSG00000163399|HPRD:01662|Vega:OTTHUMG00000012109 1 1p21 ATPase, Na+/K+ transporting, alpha 1 polypeptide protein-coding ATP1A1 ATPase, Na+/K+ transporting, alpha 1 polypeptide O Na(+)/K(+) ATPase alpha-1 subunit|Na+, K+ ATPase alpha subunit|Na+/K+ ATPase 1|Na, K-ATPase, alpha-A catalytic polypeptide|Na,K-ATPase alpha-1 subunit|Na,K-ATPase catalytic subunit alpha-A protein|sodium pump 1|sodium pump subunit alpha-1|sodium-potassium ATPase catalytic subunit alpha-1|sodium-potassium-ATPase, alpha 1 polypeptide|sodium/potassium-transporting ATPase subunit alpha-1 20121230 -9606 477 ATP1A2 RP11-536C5.4 FHM2|MHP2 HGNC:800|MIM:182340|Ensembl:ENSG00000018625|HPRD:01665|Vega:OTTHUMG00000024080 1 1q23.2 ATPase, Na+/K+ transporting, alpha 2 polypeptide protein-coding ATP1A2 ATPase, Na+/K+ transporting, alpha 2 polypeptide O Na(+)/K(+) ATPase alpha-2 subunit|Na+/K+ ATPase, alpha-A(+) catalytic polypeptide|Na+/K+ ATPase, alpha-B polypeptide|sodium pump subunit alpha-2|sodium-potassium ATPase catalytic subunit alpha-2|sodium/potassium-transporting ATPase alpha-2 chain|sodium/potassium-transporting ATPase subunit alpha-2 20121230 -9606 478 ATP1A3 - AHC2|DYT12|RDP HGNC:801|MIM:182350|Ensembl:ENSG00000105409|HPRD:01666|Vega:OTTHUMG00000137384 19 19q13.31 ATPase, Na+/K+ transporting, alpha 3 polypeptide protein-coding ATP1A3 ATPase, Na+/K+ transporting, alpha 3 polypeptide O Na(+)/K(+) ATPase alpha(III) subunit|Na(+)/K(+) ATPase alpha-3 subunit|Na+/K+ ATPase 3|sodium pump subunit alpha-3|sodium-potassium ATPase catalytic subunit alpha-3|sodium-potassium-ATPase, alpha 3 polypeptide|sodium/potassium-transporting ATPase alpha-3 chain|sodium/potassium-transporting ATPase subunit alpha-3 20121230 -9606 479 ATP12A - ATP1AL1 HGNC:13816|MIM:182360|Ensembl:ENSG00000075673|HPRD:01667|Vega:OTTHUMG00000016588 13 13q12.12|13q12.1-q12.3 ATPase, H+/K+ transporting, nongastric, alpha polypeptide protein-coding ATP12A ATPase, H+/K+ transporting, nongastric, alpha polypeptide O ATPase, Na+/K+ transporting, alpha polypeptide-like 1|non-gastric H(+)/K(+) ATPase alpha subunit|non-gastric H(+)/K(+) ATPase subunit alpha|potassium-transporting ATPase alpha chain 2|proton pump 20121230 -9606 480 ATP1A4 RP11-536C5.5 ATP1A1|ATP1AL2 HGNC:14073|MIM:607321|Ensembl:ENSG00000132681|HPRD:09541|Vega:OTTHUMG00000031609 1 1q23.2 ATPase, Na+/K+ transporting, alpha 4 polypeptide protein-coding ATP1A4 ATPase, Na+/K+ transporting, alpha 4 polypeptide O ATPase, Na+/K+ transporting, alpha polypeptide-like 2|Na(+)/K(+) ATPase alpha-4 subunit|Na+/K+ ATPase 4|Na+/K+ ATPase, alpha-D polypeptide|Na,K-ATPase subunit alpha-C|sodium pump 4|sodium pump subunit alpha-4|sodium-potassium ATPase catalytic subunit alpha-4|sodium/potassium-transporting ATPase alpha-4 chain|sodium/potassium-transporting ATPase subunit alpha-4 20121230 -9606 481 ATP1B1 - ATP1B HGNC:804|MIM:182330|Ensembl:ENSG00000143153|HPRD:01663|Vega:OTTHUMG00000034590 1 1q24 ATPase, Na+/K+ transporting, beta 1 polypeptide protein-coding ATP1B1 ATPase, Na+/K+ transporting, beta 1 polypeptide O Beta 1-subunit of Na(+),K(+)-ATPase|Na, K-ATPase beta-1 polypeptide|adenosinetriphosphatase|sodium pump subunit beta-1|sodium-potassium ATPase subunit beta 1 (non-catalytic)|sodium/potassium-dependent ATPase beta-1 subunit|sodium/potassium-transporting ATPase beta-1 chain|sodium/potassium-transporting ATPase subunit beta-1 20121230 -9606 482 ATP1B2 - AMOG HGNC:805|MIM:182331|Ensembl:ENSG00000129244|HPRD:01664|Vega:OTTHUMG00000178018 17 17p13.1 ATPase, Na+/K+ transporting, beta 2 polypeptide protein-coding ATP1B2 ATPase, Na+/K+ transporting, beta 2 polypeptide O Na, K-ATPase beta-2 polypeptide|adhesion molecule on glia|sodium pump subunit beta-2|sodium-potassium ATPase subunit beta 2 (non-catalytic)|sodium/potassium-dependent ATPase beta-2 subunit|sodium/potassium-dependent ATPase subunit beta-2|sodium/potassium-transporting ATPase beta-2 chain|sodium/potassium-transporting ATPase subunit beta-2 20121230 -9606 483 ATP1B3 - ATPB-3|CD298 HGNC:806|MIM:601867|Ensembl:ENSG00000069849|HPRD:03521|Vega:OTTHUMG00000159081 3 3q23 ATPase, Na+/K+ transporting, beta 3 polypeptide protein-coding ATP1B3 ATPase, Na+/K+ transporting, beta 3 polypeptide O Na, K-ATPase beta-3 polypeptide|sodium pump subunit beta-3|sodium-potassium ATPase subunit beta 3 (non-catalytic)|sodium/potassium-dependent ATPase beta-3 subunit|sodium/potassium-dependent ATPase subunit beta-3|sodium/potassium-transporting ATPase beta-3 chain|sodium/potassium-transporting ATPase subunit beta-3 20121230 -9606 484 ATP1B3P1 - - HGNC:807 2 2p16.1 ATPase, Na+/K+ transporting, beta 3 pseudogene pseudo ATP1B3P1 ATPase, Na+/K+ transporting, beta 3 pseudogene O - 20121230 -9606 485 ATP1B1P1 - ATP1BL1 HGNC:809 4 4p13 ATPase, Na+/K+ transporting, beta 1 polypeptide pseudogene 1 pseudo ATP1B1P1 ATPase, Na+/K+ transporting, beta 1 polypeptide pseudogene 1 O - 20121230 -9606 486 FXYD2 - ATP1G1|HOMG2 HGNC:4026|MIM:601814|Ensembl:ENSG00000137731|HPRD:03487|Vega:OTTHUMG00000166990 11 11q23 FXYD domain containing ion transport regulator 2 protein-coding FXYD2 FXYD domain containing ion transport regulator 2 O ATPase, Na+/K+ transporting, gamma 1 polypeptide|Na(+)/K(+) ATPase subunit gamma|sodium pump gamma chain|sodium/potassium-transporting ATPase subunit gamma 20121230 -9606 487 ATP2A1 - ATP2A|SERCA1 HGNC:811|MIM:108730|Ensembl:ENSG00000196296|HPRD:00157|Vega:OTTHUMG00000131760 16 16p12.1 ATPase, Ca++ transporting, cardiac muscle, fast twitch 1 protein-coding ATP2A1 ATPase, Ca++ transporting, cardiac muscle, fast twitch 1 O SR Ca(2+)-ATPase 1|calcium pump 1|calcium-transporting ATPase sarcoplasmic reticulum type, fast twitch skeletal muscle isoform|endoplasmic reticulum class 1/2 Ca(2+) ATPase|sarcoplasmic/endoplasmic reticulum calcium ATPase 1 20121230 -9606 488 ATP2A2 - ATP2B|DAR|DD|SERCA2 HGNC:812|MIM:108740|Ensembl:ENSG00000174437|HPRD:00161|Vega:OTTHUMG00000169327 12 12q24.11 ATPase, Ca++ transporting, cardiac muscle, slow twitch 2 protein-coding ATP2A2 ATPase, Ca++ transporting, cardiac muscle, slow twitch 2 O ATPase, Ca++ dependent, slow-twitch, cardiac muscle-2|SR Ca(2+)-ATPase 2|calcium pump 2|calcium-transporting ATPase sarcoplasmic reticulum type, slow twitch skeletal muscle isoform|cardiac Ca2+ ATPase|endoplasmic reticulum class 1/2 Ca(2+) ATPase|sarcoplasmic/endoplasmic reticulum calcium ATPase 2 20121230 -9606 489 ATP2A3 - SERCA3 HGNC:813|MIM:601929|Ensembl:ENSG00000074370|HPRD:03568|Vega:OTTHUMG00000177674 17 17p13.3 ATPase, Ca++ transporting, ubiquitous protein-coding ATP2A3 ATPase, Ca++ transporting, ubiquitous O ATPase, Ca(2+)-transporting, ubiquitous|SR Ca(2+)-ATPase 3|adenosine triphosphatase, calcium|calcium pump 3|calcium-translocating P-type ATPase|sarco/endoplasmic reticulum Ca2+ -ATPase|sarcoplasmic/endoplasmic reticulum calcium ATPase 3 20121230 -9606 490 ATP2B1 - PMCA1|PMCA1kb HGNC:814|MIM:108731|Ensembl:ENSG00000070961|HPRD:00158|Vega:OTTHUMG00000169946 12 12q21.3 ATPase, Ca++ transporting, plasma membrane 1 protein-coding ATP2B1 ATPase, Ca++ transporting, plasma membrane 1 O plasma membrane calcium pump|plasma membrane calcium-transporting ATPase 1 20121230 -9606 491 ATP2B2 - PMCA2|PMCA2a|PMCA2i HGNC:815|MIM:108733|Ensembl:ENSG00000157087|HPRD:00160|Vega:OTTHUMG00000128679 3 3p25.3 ATPase, Ca++ transporting, plasma membrane 2 protein-coding ATP2B2 ATPase, Ca++ transporting, plasma membrane 2 O plasma membrane Ca(2+)-ATPase|plasma membrane Ca2+ pump 2|plasma membrane calcium ATPase|plasma membrane calcium pump|plasma membrane calcium-transporting ATPase 2 20121230 -9606 492 ATP2B3 - PMCA3|PMCA3a HGNC:816|MIM:300014|Ensembl:ENSG00000067842|HPRD:02057|Vega:OTTHUMG00000024202 X Xq28 ATPase, Ca++ transporting, plasma membrane 3 protein-coding ATP2B3 ATPase, Ca++ transporting, plasma membrane 3 O plasma membrane calcium ATPase|plasma membrane calcium pump|plasma membrane calcium-transporting ATPase 3 20121230 -9606 493 ATP2B4 - ATP2B2|MXRA1|PMCA4|PMCA4b|PMCA4x HGNC:817|MIM:108732|Ensembl:ENSG00000058668|HPRD:00159|Vega:OTTHUMG00000035906 1 1q32.1 ATPase, Ca++ transporting, plasma membrane 4 protein-coding ATP2B4 ATPase, Ca++ transporting, plasma membrane 4 O matrix-remodeling-associated protein 1|plasma membrane calcium-transporting ATPase 4|sarcolemmal calcium pump 20121230 -9606 495 ATP4A - ATP6A HGNC:819|MIM:137216|Ensembl:ENSG00000105675|HPRD:00668|Vega:OTTHUMG00000048106 19 19q13.1 ATPase, H+/K+ exchanging, alpha polypeptide protein-coding ATP4A ATPase, H+/K+ exchanging, alpha polypeptide O ATPase, H+/K+ transporting, alpha polypeptide|H(+)-K(+)-ATPase alpha subunit|gastric H(+)/K(+) ATPase subunit alpha|gastric H+/K+ ATPase alpha subunit|gastric H,K-ATPase alpha subunit|gastric H,K-ATPase catalytic subunit|gastric hydrogen-potassium ATPase|potassium-transporting ATPase alpha chain 1|proton pump 20121230 -9606 496 ATP4B RP11-230F18.4 ATP6B HGNC:820|MIM:137217|Ensembl:ENSG00000186009|HPRD:00669|Vega:OTTHUMG00000140234 13 13q34 ATPase, H+/K+ exchanging, beta polypeptide protein-coding ATP4B ATPase, H+/K+ exchanging, beta polypeptide O ATPase, H+/K+ transporting, beta polypeptide|gastric H(+)/K(+) ATPase subunit beta|gastric H+/K+ ATPase beta subunit|gastric hydrogen-potassium ATPase, beta|potassium-transporting ATPase beta chain|potassium-transporting ATPase subunit beta|proton pump beta chain 20121230 -9606 498 ATP5A1 - ATP5A|ATP5AL2|ATPM|MOM2|OMR|ORM|hATP1 HGNC:823|MIM:164360|Ensembl:ENSG00000152234|HPRD:01258|Vega:OTTHUMG00000132637 18 18q21 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1, cardiac muscle protein-coding ATP5A1 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1, cardiac muscle O ATP synthase alpha chain, mitochondrial|ATP synthase subunit alpha, mitochondrial|ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit, isoform 1, cardiac muscle|ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit, isoform 2, non-cardiac muscle-like 2|ATP sythase (F1-ATPase) alpha subunit|mitochondrial ATP synthetase, oligomycin-resistant 20121230 -9606 501 ALDH7A1 - ATQ1|EPD|PDE HGNC:877|MIM:107323|Ensembl:ENSG00000164904|HPRD:00124|Vega:OTTHUMG00000128942 5 5q31 aldehyde dehydrogenase 7 family, member A1 protein-coding ALDH7A1 aldehyde dehydrogenase 7 family, member A1 O 26g turgor protein homolog|P6c dehydrogenase|alpha-AASA dehydrogenase|alpha-aminoadipic semialdehyde dehydrogenase|antiquitin-1|betaine aldehyde dehydrogenase|delta1-piperideine-6-carboxylate dehydrogenase 20121230 -9606 504 ATP5A1P2 - ATP5AP2 HGNC:828 2 2q24.1 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 2 pseudo ATP5A1P2 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 2 O - 20121230 -9606 506 ATP5B - ATPMB|ATPSB HGNC:830|MIM:102910|Ensembl:ENSG00000110955|HPRD:00044|Vega:OTTHUMG00000170291 12 12q13.13 ATP synthase, H+ transporting, mitochondrial F1 complex, beta polypeptide protein-coding ATP5B ATP synthase, H+ transporting, mitochondrial F1 complex, beta polypeptide O ATP synthase subunit beta, mitochondrial|mitochondrial ATP synthase beta subunit|mitochondrial ATP synthetase, beta subunit 20121230 -9606 507 ATP5BP1 - ATP5BL1|ATPMBL1|ATPSBL1 HGNC:831 2 2q11.2 ATP synthase, H+ transporting, mitochondrial F1 complex, beta polypeptide pseudogene 1 pseudo ATP5BP1 ATP synthase, H+ transporting, mitochondrial F1 complex, beta polypeptide pseudogene 1 O - 20121230 -9606 509 ATP5C1 RP11-401E9.1 ATP5C|ATP5CL1 HGNC:833|MIM:108729|Ensembl:ENSG00000165629|HPRD:00156|Vega:OTTHUMG00000017639 10 10p15.1 ATP synthase, H+ transporting, mitochondrial F1 complex, gamma polypeptide 1 protein-coding ATP5C1 ATP synthase, H+ transporting, mitochondrial F1 complex, gamma polypeptide 1 O ATP synthase gamma chain, mitochondrial|ATP synthase subunit gamma, mitochondrial|F-ATPase gamma subunit|mitochondrial ATP synthase, gamma subunit 1 20121230 -9606 513 ATP5D - - HGNC:837|MIM:603150|Ensembl:ENSG00000099624|HPRD:04397|Vega:OTTHUMG00000180143 19 19p13.3 ATP synthase, H+ transporting, mitochondrial F1 complex, delta subunit protein-coding ATP5D ATP synthase, H+ transporting, mitochondrial F1 complex, delta subunit O ATP synthase subunit delta, mitochondrial|F-ATPase delta subunit|mitochondrial ATP synthase complex delta-subunit precusor|mitochondrial ATP synthase, delta subunit 20121230 -9606 514 ATP5E - ATPE|MC5DN3 HGNC:838|MIM:606153|Ensembl:ENSG00000124172|HPRD:05856|Vega:OTTHUMG00000032854 20 20q13.32 ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit protein-coding ATP5E ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit O ATP synthase subunit epsilon, mitochondrial|F(0)F(1)-ATPase|H(+)-transporting two-sector ATPase|mitochondrial ATP synthase epsilon chain|mitochondrial ATPase 20121230 -9606 515 ATP5F1 RP11-552M11.5 PIG47 HGNC:840|MIM:603270|Ensembl:ENSG00000116459|HPRD:04467|Vega:OTTHUMG00000011745 1 1p13.2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 protein-coding ATP5F1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 O ATP synthase B chain, mitochondrial|ATP synthase subunit b, mitochondrial|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit B1|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit b|ATPase subunit b|H+-ATP synthase subunit b|cell proliferation-inducing protein 47 20121230 -9606 516 ATP5G1 - ATP5A|ATP5G HGNC:841|MIM:603192|Ensembl:ENSG00000159199|HPRD:04428|Vega:OTTHUMG00000160520 17 17q21.32 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) protein-coding ATP5G1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) O ATP synthase lipid-binding protein, mitochondrial|ATP synthase proteolipid P1|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit C1 (subunit 9)|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit c (subunit 9)|ATPase protein 9|ATPase subunit 9|ATPase subunit C|mitochondrial ATP synthase, subunit 9|mitochondrial ATP synthase, subunit C 20121230 -9606 517 ATP5G2 PSEC0033 ATP5A HGNC:842|MIM:603193|Ensembl:ENSG00000135390|HPRD:04429|Vega:OTTHUMG00000133442 12 12q13.13 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) protein-coding ATP5G2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) O ATP synthase c subunit|ATP synthase lipid-binding protein, mitochondrial|ATP synthase proteolipid P2|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit C2 (subunit 9)|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit c (subunit 9)|ATPase protein 9|ATPase subunit C|mitochondrial ATP synthase, subunit C (subunit 9) 20121230 -9606 518 ATP5G3 - P3 HGNC:843|MIM:602736|Ensembl:ENSG00000154518|HPRD:04112|Vega:OTTHUMG00000132425 2 2q31.1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C3 (subunit 9) protein-coding ATP5G3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C3 (subunit 9) O ATP synthase lipid-binding protein, mitochondrial|ATP synthase proteolipid P3|ATP synthase subunit 9|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit C3 (subunit 9)|ATP synthase, mitochondrial, C subunit-3|ATPase protein 9|ATPase subunit C 20121230 -9606 520 ATP5G2P1 - ATP5GP1 HGNC:844 1 1q32.2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) pseudogene 1 pseudo ATP5G2P1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) pseudogene 1 O - 20121230 -9606 521 ATP5I - ATP5K HGNC:846|MIM:601519|Ensembl:ENSG00000169020|HPRD:03308|Vega:OTTHUMG00000086929 4 4p16.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit E protein-coding ATP5I ATP synthase, H+ transporting, mitochondrial Fo complex, subunit E O ATP synthase e chain, mitochondrial|ATP synthase subunit e, mitochondrial|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit E|ATPase subunit e|F1F0-ATP synthase, murine e subunit 20121230 -9606 522 ATP5J - ATP5|ATP5A|ATPM|CF6|F6 HGNC:847|MIM:603152|Ensembl:ENSG00000154723|HPRD:04399|Vega:OTTHUMG00000078442 21 21q21.1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F6 protein-coding ATP5J ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F6 O ATP synthase, H+ transporting, mitochondrial F0 complex, subunit F6|ATP synthase-coupling factor 6, mitochondrial|ATPase subunit F6|coupling factor 6|mitochondrial ATP synthase, coupling factor 6|mitochondrial ATP synthase, subunit F6|mitochondrial ATPase coupling factor 6|proliferation-inducing protein 36 20121230 -9606 523 ATP6V1A - ATP6A1|ATP6V1A1|HO68|VA68|VPP2|Vma1 HGNC:851|MIM:607027|Ensembl:ENSG00000114573|HPRD:06120|Vega:OTTHUMG00000159295 3 3q13.31 ATPase, H+ transporting, lysosomal 70kDa, V1 subunit A protein-coding ATP6V1A ATPase, H+ transporting, lysosomal 70kDa, V1 subunit A O ATPase, H+ transporting, lysosomal, subunit A1|H(+)-transporting two-sector ATPase, subunit A|H+-transporting ATPase chain A, vacuolar (VA68 type)|V-ATPase 69 kDa subunit 1|V-ATPase A subunit 1|V-ATPase subunit A|V-type proton ATPase catalytic subunit A|vacuolar ATP synthase catalytic subunit A, ubiquitous isoform|vacuolar ATPase isoform VA68|vacuolar proton pump alpha subunit 1|vacuolar proton pump subunit alpha 20121230 -9606 525 ATP6V1B1 - ATP6B1|RTA1B|VATB|VMA2|VPP3 HGNC:853|MIM:192132|Ensembl:ENSG00000116039|HPRD:01887|Vega:OTTHUMG00000129711 2 2p13.1 ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B1 protein-coding ATP6V1B1 ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B1 O H(+)-transporting two-sector ATPase, 58kD subunit|H+-ATPase beta 1 subunit|V-ATPase B1 subunit|V-ATPase subunit B 1|V-type proton ATPase subunit B, kidney isoform|endomembrane proton pump 58 kDa subunit|vacuolar proton pump 3|vacuolar proton pump subunit B 1|vacuolar proton pump, subunit 3 20121230 -9606 526 ATP6V1B2 - ATP6B1B2|ATP6B2|HO57|VATB|VPP3|Vma2 HGNC:854|MIM:606939|Ensembl:ENSG00000147416|HPRD:06088|Vega:OTTHUMG00000131073 8 8p21.3 ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B2 protein-coding ATP6V1B2 ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B2 O H+ transporting two-sector ATPase|V-ATPase B2 subunit|V-ATPase subunit B 2|V-type proton ATPase subunit B, brain isoform|endomembrane proton pump 58 kDa subunit|vacuolar H+-ATPase 56,000 subunit|vacuolar proton pump subunit B 2 20121230 -9606 527 ATP6V0C - ATP6C|ATP6L|ATPL|VATL|VPPC|Vma3 HGNC:855|MIM:108745|Ensembl:ENSG00000185883|HPRD:00162|Vega:OTTHUMG00000128865 16 16p13.3 ATPase, H+ transporting, lysosomal 16kDa, V0 subunit c protein-coding ATP6V0C ATPase, H+ transporting, lysosomal 16kDa, V0 subunit c O H(+)-transporting two-sector ATPase, 16 kDa subunit|V-ATPase 16 kDa proteolipid subunit|V-type proton ATPase 16 kDa proteolipid subunit|vacuolar ATP synthase 16 kDa proteolipid subunit|vacuolar H+ ATPase proton channel subunit|vacuolar proton pump 16 kDa proteolipid subunit 20121230 -9606 528 ATP6V1C1 - ATP6C|ATP6D|VATC|Vma5 HGNC:856|MIM:603097|Ensembl:ENSG00000155097|HPRD:04371|Vega:OTTHUMG00000164761 8 8q22.3 ATPase, H+ transporting, lysosomal 42kDa, V1 subunit C1 protein-coding ATP6V1C1 ATPase, H+ transporting, lysosomal 42kDa, V1 subunit C1 O H(+)-transporting two-sector ATPase, subunit C|H+ -ATPase C subunit|H+-transporting ATPase chain C, vacuolar|V-ATPase C subunit|V-ATPase subunit C 1|V-type proton ATPase subunit C 1|subunit C of vacuolar proton-ATPase V1 domain|vacuolar ATP synthase subunit C|vacuolar proton pump C subunit|vacuolar proton pump subunit C 1|vacuolar proton pump, 42-kD subunit|vacuolar proton-ATPase, subunit C, VI domain 20121230 -9606 529 ATP6V1E1 - ATP6E|ATP6E2|ATP6V1E|P31|Vma4 HGNC:857|MIM:108746|Ensembl:ENSG00000131100|HPRD:00163|Vega:OTTHUMG00000059320 22 22q11.1 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1 protein-coding ATP6V1E1 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1 O H(+)-transporting two-sector ATPase, 31kDa subunit|H+-transporting ATP synthase chain E, vacuolar|V-ATPase 31 kDa subunit|V-ATPase subunit E 1|V-ATPase, subunit E|V-type proton ATPase subunit E 1|vacuolar proton pump subunit E 1 20121230 -9606 533 ATP6V0B RP11-7O11.6 ATP6F|HATPL|VMA16 HGNC:861|MIM:603717|Ensembl:ENSG00000117410|HPRD:04759|Vega:OTTHUMG00000008298 1 1p32.3 ATPase, H+ transporting, lysosomal 21kDa, V0 subunit b protein-coding ATP6V0B ATPase, H+ transporting, lysosomal 21kDa, V0 subunit b O H(+)-transporting two-sector ATPase, subunit F|V-ATPase 21 kDa proteolipid subunit|V-ATPase subunit c''|V-type proton ATPase 21 kDa proteolipid subunit|vacuolar ATP synthase 21 kDa proteolipid subunit|vacuolar proton pump 21 kDa proteolipid subunit|vacuolar proton pump, 21 kDa subunit 20121230 -9606 534 ATP6V1G2 DADB-26I14.6 ATP6G|ATP6G2|NG38|VMA10 HGNC:862|MIM:606853|Ensembl:ENSG00000213760|HPRD:06030|Vega:OTTHUMG00000166618 6 6p21.3 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G2 protein-coding ATP6V1G2 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G2 O ATPase, H+ transporting, lysosomal (vacuolar proton pump)|H(+)-transporting two-sector ATPase, subunit G2|V-ATPase 13 kDa subunit 2|V-type proton ATPase subunit G 2|vacuolar ATP synthase subunit G 2|vacuolar proton pump G subunit 2 20121230 -9606 535 ATP6V0A1 - ATP6N1|ATP6N1A|Stv1|VPP1|Vph1|a1 HGNC:865|MIM:192130|Ensembl:ENSG00000033627|HPRD:01886|Vega:OTTHUMG00000180238 17 17q21 ATPase, H+ transporting, lysosomal V0 subunit a1 protein-coding ATP6V0A1 ATPase, H+ transporting, lysosomal V0 subunit a1 O ATPase, H+ transporting, lysosomal (vacuolar proton pump) non-catalytic accessory protein 1A (110/116kD)|ATPase, H+ transporting, lysosomal non-catalytic accessory protein 1 (110/116kD)|H(+)-transporting two-sector ATPase, 116 kDa accessory protein A1|V-ATPase 116 kDa|V-type proton ATPase 116 kDa subunit a|V-type proton ATPase 116 kDa subunit a isoform 1|clathrin-coated vesicle/synaptic vesicle proton pump 116 kDa subunit|vacuolar adenosine triphosphatase subunit Ac116|vacuolar proton pump subunit 1|vacuolar proton pump, subunit 1|vacuolar proton translocating ATPase 116 kDa subunit A|vacuolar-type H(+)-ATPase 115 kDa subunit 20121230 -9606 537 ATP6AP1 XX-FW83563B9.4 16A|ATP6IP1|ATP6S1|Ac45|CF2|VATPS1|XAP-3|XAP3 HGNC:868|MIM:300197|Ensembl:ENSG00000071553|HPRD:02184|Vega:OTTHUMG00000033291 X Xq28 ATPase, H+ transporting, lysosomal accessory protein 1 protein-coding ATP6AP1 ATPase, H+ transporting, lysosomal accessory protein 1 O ATPase, H+ transporting, lysosomal (vacuolar proton pump), subunit 1|ATPase, H+ transporting, lysosomal interacting protein 1|H-ATPase subunit|V-ATPase Ac45 subunit|V-ATPase S1 accessory protein|V-ATPase subunit S1|V-type proton ATPase subunit S1|protein XAP-3|vacuolar proton pump subunit S1 20121230 -9606 538 ATP7A RP3-465G10.1 DSMAX|MK|MNK|SMAX3 HGNC:869|MIM:300011|Ensembl:ENSG00000165240|HPRD:02054|Vega:OTTHUMG00000021885 X Xq21.1 ATPase, Cu++ transporting, alpha polypeptide protein-coding ATP7A ATPase, Cu++ transporting, alpha polypeptide O Cu++-transporting P-type ATPase|Menkes disease-associated protein|copper pump 1|copper-transporting ATPase 1 20121230 -9606 539 ATP5O - ATPO|OSCP HGNC:850|MIM:600828|Ensembl:ENSG00000241837|HPRD:02899|Vega:OTTHUMG00000065186 21 21q22.11 ATP synthase, H+ transporting, mitochondrial F1 complex, O subunit protein-coding ATP5O ATP synthase, H+ transporting, mitochondrial F1 complex, O subunit O ATP synthase subunit O, mitochondrial|human ATP synthase OSCP subunit|oligomycin sensitivity conferral protein|oligomycin sensitivity conferring protein 20121230 -9606 540 ATP7B RP11-327P2.1 PWD|WC1|WD|WND HGNC:870|MIM:606882|Ensembl:ENSG00000123191|HPRD:06050|Vega:OTTHUMG00000017406 13 13q14.3 ATPase, Cu++ transporting, beta polypeptide protein-coding ATP7B ATPase, Cu++ transporting, beta polypeptide O ATPase, Cu(2+)- transporting, beta polypeptide|Wilson disease-associated protein|copper pump 2|copper-transporting ATPase 2 20121230 -9606 541 ALDH7A1P1 - ATQL1 HGNC:878 5 5q14 aldehyde dehydrogenase 7 family, member A1 pseudogene 1 pseudo ALDH7A1P1 aldehyde dehydrogenase 7 family, member A1 pseudogene 1 O - 20121230 -9606 542 ALDH7A1P2 - ATQL2 HGNC:879 2 2q31.1 aldehyde dehydrogenase 7 family, member A1 pseudogene 2 pseudo ALDH7A1P2 aldehyde dehydrogenase 7 family, member A1 pseudogene 2 O - 20121230 -9606 543 ALDH7A1P3 - ATQL3 HGNC:880 7 7q36 aldehyde dehydrogenase 7 family, member A1 pseudogene 3 pseudo ALDH7A1P3 aldehyde dehydrogenase 7 family, member A1 pseudogene 3 O - 20121230 -9606 544 ALDH7A1P4 - ATQL4 HGNC:881 10 10q21 aldehyde dehydrogenase 7 family, member A1 pseudogene 4 pseudo ALDH7A1P4 aldehyde dehydrogenase 7 family, member A1 pseudogene 4 O - 20121230 -9606 545 ATR - FCTCS|FRP1|MEC1|SCKL|SCKL1 HGNC:882|MIM:601215|Ensembl:ENSG00000175054|HPRD:08369|Vega:OTTHUMG00000159234 3 3q23 ataxia telangiectasia and Rad3 related protein-coding ATR ataxia telangiectasia and Rad3 related O FRAP-related protein 1|FRAP-related protein-1|MEC1, mitosis entry checkpoint 1, homolog|Rad3 related protein|ataxia telangiectasia and Rad3-related protein|protein kinase ATR|serine/threonine-protein kinase ATR 20121230 -9606 546 ATRX RP5-875J14.1 ATR2|JMS|MRXHF1|RAD54|RAD54L|SFM1|SHS|XH2|XNP|ZNF-HX HGNC:886|MIM:300032|Ensembl:ENSG00000085224|HPRD:02069|Vega:OTTHUMG00000022686 X Xq21.1 alpha thalassemia/mental retardation syndrome X-linked protein-coding ATRX alpha thalassemia/mental retardation syndrome X-linked O ATP-dependent helicase ATRX|DNA dependent ATPase and helicase|RAD54 homolog|X-linked helicase II|X-linked nuclear protein|Zinc finger helicase|alpha thalassemia/mental retardation syndrome X-linked (RAD54 homolog, S. cerevisiae)|helicase 2, X-linked|transcriptional regulator ATRX 20121230 -9606 547 KIF1A - ATSV|C2orf20|HSN2C|MRD9|SPG30|UNC104 HGNC:888|MIM:601255|Ensembl:ENSG00000130294|HPRD:03156|Vega:OTTHUMG00000151940 2 2q37.3 kinesin family member 1A protein-coding KIF1A kinesin family member 1A O axonal transporter of synaptic vesicles|kinesin, heavy chain, member 1A, homolog of mouse|kinesin-like protein KIF1A|microtubule-based motor KIF1A|tmp_locus_27|unc-104- and KIF1A-related protein 20121230 -9606 549 AUH - - HGNC:890|MIM:600529|Ensembl:ENSG00000148090|HPRD:08987|Vega:OTTHUMG00000020207 9 9q22.31 AU RNA binding protein/enoyl-CoA hydratase protein-coding AUH AU RNA binding protein/enoyl-CoA hydratase O 3-methylglutaconyl-CoA hydratase|AU RNA binding protein/enoyl-Coenzyme A hydratase|AU RNA-binding protein/enoyl-Coenzyme A hydratase|AU-binding protein/Enoyl-CoA hydratase|AU-specific RNA-binding enoyl-CoA hydratase|methylglutaconyl-CoA hydratase, mitochondrial 20121230 -9606 550 AUP1 - - HGNC:891|MIM:602434|Ensembl:ENSG00000115307|HPRD:03892|Vega:OTTHUMG00000129964 2 2p13 ancient ubiquitous protein 1 protein-coding AUP1 ancient ubiquitous protein 1 O - 20121230 -9606 551 AVP - ADH|ARVP|AVP-NPII|AVRP|VP HGNC:894|MIM:192340|Ensembl:ENSG00000101200|HPRD:01891|Vega:OTTHUMG00000031733 20 20p13 arginine vasopressin protein-coding AVP arginine vasopressin O antidiuretic hormone|neurohypophyseal|vasopressin-neurophysin 2-copeptin|vasopressin-neurophysin II-copeptin 20121230 -9606 552 AVPR1A - AVPR V1a|AVPR1|V1aR HGNC:895|MIM:600821|Ensembl:ENSG00000166148|HPRD:02894|Vega:OTTHUMG00000169980 12 12q14-q15 arginine vasopressin receptor 1A protein-coding AVPR1A arginine vasopressin receptor 1A O SCCL vasopressin subtype 1a receptor|V1-vascular vasopressin receptor AVPR1A|V1a vasopressin receptor|antidiuretic hormone receptor 1A|vascular/hepatic-type arginine vasopressin receptor|vasopressin V1a receptor 20121230 -9606 553 AVPR1B - AVPR3 HGNC:896|MIM:600264|Ensembl:ENSG00000198049|HPRD:02600|Vega:OTTHUMG00000036119 1 1q32 arginine vasopressin receptor 1B protein-coding AVPR1B arginine vasopressin receptor 1B O AVPR V1b|AVPR V3|V1bR|antidiuretic hormone receptor 1B|arginine vasopressin receptor 3|pituitary vasopressin receptor 3|vasopressin V1b receptor|vasopressin V3 receptor 20121230 -9606 554 AVPR2 - ADHR|DI1|DIR|DIR3|NDI|V2R HGNC:897|MIM:300538|Ensembl:ENSG00000126895|HPRD:02368|Vega:OTTHUMG00000024227 X Xq28 arginine vasopressin receptor 2 protein-coding AVPR2 arginine vasopressin receptor 2 O AVPR V2|antidiuretic hormone receptor|renal-type arginine vasopressin receptor|vasopressin V2 receptor 20121230 -9606 558 AXL - JTK11|UFO HGNC:905|MIM:109135|Ensembl:ENSG00000167601|HPRD:00171 19 19q13.1 AXL receptor tyrosine kinase protein-coding AXL AXL receptor tyrosine kinase O AXL oncogene|AXL transforming sequence/gene|oncogene AXL|tyrosine-protein kinase receptor UFO 20121230 -9606 560 AZF1 - AZF|AZFA|SP3 HGNC:908|MIM:415000 Y Yq11 azoospermia factor 1 unknown AZF1 azoospermia factor 1 O - 20121010 -9606 563 AZGP1 - ZA2G|ZAG HGNC:910|MIM:194460|Ensembl:ENSG00000160862|HPRD:01910|Vega:OTTHUMG00000023066 7 7q22.1 alpha-2-glycoprotein 1, zinc-binding protein-coding AZGP1 alpha-2-glycoprotein 1, zinc-binding O Alpha-2-glycoprotein, zinc|Zn-alpha2-glycoprotein|zinc-alpha-2-glycoprotein|zn-alpha-2-GP|zn-alpha-2-glycoprotein 20121230 -9606 566 AZU1 - AZAMP|AZU|CAP37|HBP|HUMAZUR|NAZC HGNC:913|MIM:162815|Ensembl:ENSG00000172232|HPRD:01221|Vega:OTTHUMG00000181897 19 19p13.3 azurocidin 1 protein-coding AZU1 azurocidin 1 O azurocidin|cationic antimicrobial protein 37|cationic antimicrobial protein CAP37|heparin-binding protein|neutrophil azurocidin 20121230 -9606 567 B2M CDABP0092 - HGNC:914|MIM:109700|Ensembl:ENSG00000166710|HPRD:00189|Vega:OTTHUMG00000131247 15 15q21-q22.2 beta-2-microglobulin protein-coding B2M beta-2-microglobulin O beta chain of MHC class I molecules|beta-2-microglobin 20121230 -9606 568 B2MR - - HGNC:915|MIM:109710 15 15q13-q15 beta-2-microglobulin regulator unknown B2MR beta-2-microglobulin regulator O - 20080828 -9606 570 BAAT - BACAT|BAT HGNC:932|MIM:602938|Ensembl:ENSG00000136881|HPRD:08376|Vega:OTTHUMG00000020377 9 9q22.3 bile acid CoA: amino acid N-acyltransferase (glycine N-choloyltransferase) protein-coding BAAT bile acid CoA: amino acid N-acyltransferase (glycine N-choloyltransferase) O bile acid Coenzyme A: amino acid N-acyltransferase (glycine N-choloyltransferase)|bile acid-CoA:amino acid N-acyltransferase|long-chain fatty-acyl-CoA hydrolase 20121230 -9606 571 BACH1 - BACH-1 HGNC:935|MIM:602751|Ensembl:ENSG00000156273|HPRD:04127|Vega:OTTHUMG00000078878 21 21q22.11 BTB and CNC homology 1, basic leucine zipper transcription factor 1 protein-coding BACH1 BTB and CNC homology 1, basic leucine zipper transcription factor 1 O BTB and CNC homolog 1|HA2303|basic region leucine zipper transcriptional regulator BACH1|transcription regulator protein BACH1 20121230 -9606 572 BAD - BBC2|BCL2L8 HGNC:936|MIM:603167|Ensembl:ENSG00000002330|HPRD:04409|Vega:OTTHUMG00000134302 11 11q13.1 BCL2-associated agonist of cell death protein-coding BAD BCL2-associated agonist of cell death O BCL-X/BCL-2 binding protein|BCL2-antagonist of cell death protein|BCL2-binding component 6|BCL2-binding protein|bcl-2-binding component 6|bcl-2-like protein 8|bcl-XL/Bcl-2-associated death promoter|bcl2 antagonist of cell death|bcl2-L-8 20121230 -9606 573 BAG1 RP11-326F20.2 BAG-1|HAP|RAP46 HGNC:937|MIM:601497|Ensembl:ENSG00000107262|HPRD:03292|Vega:OTTHUMG00000019766 9 9p12 BCL2-associated athanogene protein-coding BAG1 BCL2-associated athanogene O BAG family molecular chaperone regulator 1|Bcl-2 associating athanogene-1 protein|Bcl-2-binding protein|glucocortoid receptor-associated protein RAP46|receptor-associated protein, 46-KD 20121230 -9606 574 BAGE - BAGE1|CT2.1 HGNC:942|MIM:605167|HPRD:05523 21 21p11.1 B melanoma antigen protein-coding BAGE B melanoma antigen O B melanoma antigen 1|antigen MZ2-BA|cancer/testis antigen 2.1|cancer/testis antigen family 2, member 1 20121230 -9606 575 BAI1 - GDAIF HGNC:943|MIM:602682|Ensembl:ENSG00000181790|HPRD:04062|Vega:OTTHUMG00000164732 8 8q24.3 brain-specific angiogenesis inhibitor 1 protein-coding BAI1 brain-specific angiogenesis inhibitor 1 O - 20121230 -9606 576 BAI2 RP11-73M7.7 - HGNC:944|MIM:602683|Ensembl:ENSG00000121753|HPRD:04063|Vega:OTTHUMG00000003885 1 1p35 brain-specific angiogenesis inhibitor 2 protein-coding BAI2 brain-specific angiogenesis inhibitor 2 O Brain-specific angiongenesis inhibitor-2 20121230 -9606 577 BAI3 - - HGNC:945|MIM:602684|Ensembl:ENSG00000135298|HPRD:04064|Vega:OTTHUMG00000014982 6 6q12 brain-specific angiogenesis inhibitor 3 protein-coding BAI3 brain-specific angiogenesis inhibitor 3 O dJ91B17.1 (brain-specific angiogenesis inhibitor 3) 20121230 -9606 578 BAK1 - BAK|BAK-LIKE|BCL2L7|CDN1 HGNC:949|MIM:600516|Ensembl:ENSG00000030110|HPRD:02744|Vega:OTTHUMG00000014530 6 6p21.3 BCL2-antagonist/killer 1 protein-coding BAK1 BCL2-antagonist/killer 1 O BCL2-like 7 protein|apoptosis regulator BAK|bcl-2 homologous antagonist/killer|bcl-2-like protein 7|bcl2-L-7|pro-apoptotic protein BAK 20121230 -9606 579 NKX3-2 - BAPX1|NKX3.2|NKX3B|SMMD HGNC:951|MIM:602183|Ensembl:ENSG00000109705|HPRD:09075|Vega:OTTHUMG00000090657 4 4p16.3 NK3 homeobox 2 protein-coding NKX3-2 NK3 homeobox 2 O bagpipe homeobox protein homolog 1|homeobox protein NK-3 homolog B|homeobox protein Nkx-3.2 20121230 -9606 580 BARD1 - - HGNC:952|MIM:601593|Ensembl:ENSG00000138376|HPRD:03354|Vega:OTTHUMG00000133016 2 2q34-q35 BRCA1 associated RING domain 1 protein-coding BARD1 BRCA1 associated RING domain 1 O BARD-1|BRCA1 associated RING domain 1 isoform alfa|BRCA1 associated RING domain 1 isoform beta|BRCA1 associated RING domain 1 isoform delta|BRCA1 associated RING domain 1 isoform epsilon|BRCA1 associated RING domain 1 isoform eta|BRCA1 associated RING domain 1 isoform gamma|BRCA1 associated RING domain 1 isoform phi|BRCA1-associated RING domain gene 1|BRCA1-associated RING domain protein 1 20121230 -9606 581 BAX - BCL2L4 HGNC:959|MIM:600040|Ensembl:ENSG00000087088|HPRD:02498|Vega:OTTHUMG00000160476 19 19q13.3-q13.4 BCL2-associated X protein protein-coding BAX BCL2-associated X protein O BCL2-associated X protein omega|BCL2-associated X protein transcript variant delta2|apoptosis regulator BAX|bcl-2-like protein 4|bcl2-L-4 20121230 -9606 582 BBS1 - BBS2L2 HGNC:966|MIM:209901|Ensembl:ENSG00000174483|Ensembl:ENSG00000256349|HPRD:01950|Vega:OTTHUMG00000167110|Vega:OTTHUMG00000167719 11 11q13 Bardet-Biedl syndrome 1 protein-coding BBS1 Bardet-Biedl syndrome 1 O BBS2-like protein 2|Bardet-Biedl syndrome 1 protein 20121230 -9606 583 BBS2 - BBS HGNC:967|MIM:606151|Ensembl:ENSG00000125124|HPRD:05855|Vega:OTTHUMG00000176943 16 16q21 Bardet-Biedl syndrome 2 protein-coding BBS2 Bardet-Biedl syndrome 2 O Bardet-Biedl syndrome 2 protein 20121230 -9606 585 BBS4 - - HGNC:969|MIM:600374|Ensembl:ENSG00000140463|HPRD:08982|Vega:OTTHUMG00000133510 15 15q22.3-q23 Bardet-Biedl syndrome 4 protein-coding BBS4 Bardet-Biedl syndrome 4 O Bardet-Biedl syndrome 4 protein 20121230 -9606 586 BCAT1 - BCATC|BCT1|ECA39|MECA39|PNAS121|PP18 HGNC:976|MIM:113520|Ensembl:ENSG00000060982|HPRD:00216|Vega:OTTHUMG00000169053 12 12p12.1 branched chain amino-acid transaminase 1, cytosolic protein-coding BCAT1 branched chain amino-acid transaminase 1, cytosolic O branched chain aminotransferase 1, cytosolic|branched-chain-amino-acid aminotransferase, cytosolic|placental protein 18 20121230 -9606 587 BCAT2 - BCAM|BCATM|BCT2|PP18 HGNC:977|MIM:113530|Ensembl:ENSG00000105552|HPRD:00217 19 19q13 branched chain amino-acid transaminase 2, mitochondrial protein-coding BCAT2 branched chain amino-acid transaminase 2, mitochondrial O branched chain aminotransferase 2, mitochondrial|branched-chain-amino-acid aminotransferase, mitochondrial|placental protein 18 20121230 -9606 590 BCHE - CHE1|E1 HGNC:983|MIM:177400|Ensembl:ENSG00000114200|HPRD:01519|Vega:OTTHUMG00000158131 3 3q26.1-q26.2 butyrylcholinesterase protein-coding BCHE butyrylcholinesterase O acylcholine acylhydrolase|butyrylcholine esterase|choline esterase II|cholinesterase|cholinesterase 1|pseudocholinesterase 20121230 -9606 593 BCKDHA - BCKDE1A|MSU|MSUD1|OVD1A HGNC:986|MIM:608348|Ensembl:ENSG00000248098|Ensembl:ENSG00000255730|HPRD:02009|Vega:OTTHUMG00000168128|Vega:OTTHUMG00000168134 19 19q13.1-q13.2 branched chain keto acid dehydrogenase E1, alpha polypeptide protein-coding BCKDHA branched chain keto acid dehydrogenase E1, alpha polypeptide O 2-oxoisovalerate dehydrogenase (lipoamide)|2-oxoisovalerate dehydrogenase subunit alpha, mitochondrial|BCKDH E1-alpha|branched-chain alpha-keto acid dehydrogenase E1 component alpha chain 20121230 -9606 594 BCKDHB RP1-279A18.1 E1B|dJ279A18.1 HGNC:987|MIM:248611|Ensembl:ENSG00000083123|HPRD:02011|Vega:OTTHUMG00000016430 6 6q14.1 branched chain keto acid dehydrogenase E1, beta polypeptide protein-coding BCKDHB branched chain keto acid dehydrogenase E1, beta polypeptide O 2-oxoisovalerate dehydrogenase beta subunit|2-oxoisovalerate dehydrogenase subunit beta, mitochondrial|BCKDE1B|BCKDH E1-beta|E1b-beta subunit of the branched-chain complex|branched chain alpha-ketoacid dehydrogenase E1-beta subunit|branched-chain alpha-keto acid dehydrogenase E1 component beta chain 20121230 -9606 595 CCND1 - BCL1|D11S287E|PRAD1|U21B31 HGNC:1582|MIM:168461|Ensembl:ENSG00000110092|HPRD:01346|Vega:OTTHUMG00000167877 11 11q13 cyclin D1 protein-coding CCND1 cyclin D1 O B-cell CLL/lymphoma 1|B-cell lymphoma 1 protein|BCL-1 oncogene|G1/S-specific cyclin-D1|PRAD1 oncogene 20121230 -9606 596 BCL2 - Bcl-2|PPP1R50 HGNC:990|MIM:151430|Ensembl:ENSG00000171791|HPRD:01045|Vega:OTTHUMG00000132791 18 18q21.3 B-cell CLL/lymphoma 2 protein-coding BCL2 B-cell CLL/lymphoma 2 O apoptosis regulator Bcl-2|protein phosphatase 1, regulatory subunit 50 20121230 -9606 597 BCL2A1 - ACC-1|ACC-2|BCL2L5|BFL1|GRS|HBPA1 HGNC:991|MIM:601056|Ensembl:ENSG00000140379|HPRD:03034|Vega:OTTHUMG00000144173 15 15q24.3 BCL2-related protein A1 protein-coding BCL2A1 BCL2-related protein A1 O bcl-2-like protein 5|bcl-2-related protein A1|bcl2-L-5|hematopoietic BCL2-related protein A1|hemopoietic-specific early response protein|protein BFL-1 20121230 -9606 598 BCL2L1 RP5-857M17.3 BCL-XL/S|BCL2L|BCLX|BCLXL|BCLXS|Bcl-X|PPP1R52|bcl-xL|bcl-xS HGNC:992|MIM:600039|Ensembl:ENSG00000171552|HPRD:02497|Vega:OTTHUMG00000032192 20 20q11.21 BCL2-like 1 protein-coding BCL2L1 BCL2-like 1 O apoptosis regulator Bcl-X|bcl-2-like protein 1|protein phosphatase 1, regulatory subunit 52 20121230 -9606 599 BCL2L2 - BCL-W|BCL2-L-2|BCLW|PPP1R51 HGNC:995|MIM:601931|Ensembl:ENSG00000129473|HPRD:03569|Vega:OTTHUMG00000028738 14 14q11.2-q12 BCL2-like 2 protein-coding BCL2L2 BCL2-like 2 O apoptosis regulator BCL-W|bcl-2-like protein 2|protein phosphatase 1, regulatory subunit 51 20121230 -9606 600 BAK1P1 - BAK2|BCL2L7P1|Bak-2 HGNC:996 20 20q11.21 BCL2-antagonist/killer 1 pseudogene 1 pseudo BAK1P1 BCL2-antagonist/killer 1 pseudogene 1 O - 20121230 -9606 601 BAK1P2 - BAK3|BAK3P|BCL2L7P2 HGNC:997 11 11q24.3 BCL2-antagonist/killer 1 pseudogene 2 pseudo BAK1P2 BCL2-antagonist/killer 1 pseudogene 2 O - 20121230 -9606 602 BCL3 - BCL4|D19S37 HGNC:998|MIM:109560|Ensembl:ENSG00000069399|HPRD:00179|Vega:OTTHUMG00000151517 19 19q13.1-q13.2 B-cell CLL/lymphoma 3 protein-coding BCL3 B-cell CLL/lymphoma 3 O B-cell leukemia/lymphoma 3|B-cell lymphoma 3 protein|B-cell lymphoma 3-encoded protein|BCL-3|chronic lymphatic leukemia protein|proto-oncogene BCL3 20121230 -9606 603 BCL5 - - HGNC:1000|MIM:151441 17 17q22 B-cell CLL/lymphoma 5 unknown BCL5 B-cell CLL/lymphoma 5 O - 20120902 -9606 604 BCL6 - BCL5|BCL6A|LAZ3|ZBTB27|ZNF51 HGNC:1001|MIM:109565|Ensembl:ENSG00000113916|HPRD:00180|Vega:OTTHUMG00000156441 3 3q27 B-cell CLL/lymphoma 6 protein-coding BCL6 B-cell CLL/lymphoma 6 O B-cell lymphoma 5 protein|B-cell lymphoma 6 protein|B-cell lymphoma 6 protein transcript|BCL-5|BCL-6|cys-his2 zinc finger transcription factor|lymphoma-associated zinc finger gene on chromosome 3|protein LAZ-3|zinc finger and BTB domain-containing protein 27|zinc finger protein 51|zinc finger transcription factor BCL6S 20121230 -9606 605 BCL7A - BCL7 HGNC:1004|MIM:601406|Ensembl:ENSG00000110987|HPRD:03243|Vega:OTTHUMG00000168951 12 12q24.13 B-cell CLL/lymphoma 7A protein-coding BCL7A B-cell CLL/lymphoma 7A O B-cell CLL/lymphoma 7 protein family member A|B-cell CLL/lymphoma-7 20121230 -9606 606 NBEAP1 - BCL8|BCL8A HGNC:1007|MIM:601889 15 15q11.2 neurobeachin pseudogene 1 pseudo NBEAP1 neurobeachin pseudogene 1 O - 20121230 -9606 607 BCL9 - LGS HGNC:1008|MIM:602597|Ensembl:ENSG00000116128|HPRD:04000|Vega:OTTHUMG00000014031 1 1q21 B-cell CLL/lymphoma 9 protein-coding BCL9 B-cell CLL/lymphoma 9 O B-cell CLL/lymphoma 9 protein|B-cell lymphoma 9 protein|bcl-9|protein legless homolog 20121230 -9606 608 TNFRSF17 - BCM|BCMA|CD269 HGNC:11913|MIM:109545|Ensembl:ENSG00000048462|HPRD:00144|Vega:OTTHUMG00000129826 16 16p13.1 tumor necrosis factor receptor superfamily, member 17 protein-coding TNFRSF17 tumor necrosis factor receptor superfamily, member 17 O B cell maturation antigen|B-cell maturation factor|B-cell maturation protein|tumor necrosis factor receptor superfamily member 17 20121230 -9606 610 HCN2 - BCNG-2|BCNG2|HAC-1 HGNC:4846|MIM:602781|Ensembl:ENSG00000099822|HPRD:07213|Vega:OTTHUMG00000180590 19 19p13.3 hyperpolarization activated cyclic nucleotide-gated potassium channel 2 protein-coding HCN2 hyperpolarization activated cyclic nucleotide-gated potassium channel 2 O brain cyclic nucleotide gated channel 2|brain cyclic nucleotide-gated channel 2|potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 2 20121230 -9606 611 OPN1SW - BCP|BOP|CBT HGNC:1012|MIM:613522|Ensembl:ENSG00000128617|HPRD:01836|Vega:OTTHUMG00000158311 7 7q32.1 opsin 1 (cone pigments), short-wave-sensitive protein-coding OPN1SW opsin 1 (cone pigments), short-wave-sensitive O blue cone photoreceptor pigment|blue-sensitive opsin|short-wave-sensitive opsin 1 20121230 -9606 613 BCR - ALL|BCR1|CML|D22S11|D22S662|PHL HGNC:1014|MIM:151410|Ensembl:ENSG00000186716|HPRD:01044|Vega:OTTHUMG00000150655 22 22q11.23 breakpoint cluster region protein-coding BCR breakpoint cluster region O BCR/FGFR1 chimera protein|FGFR1/BCR chimera protein|breakpoint cluster region protein|renal carcinoma antigen NY-REN-26 20121230 -9606 616 BCRP4 - BCR-4|BCR4|BCRL4 HGNC:1017|MIM:113660 22 22q11.22 breakpoint cluster region pseudogene 4 pseudo BCRP4 breakpoint cluster region pseudogene 4 O - 20121230 -9606 617 BCS1L - BCS|BCS1|BJS|FLNMS|GRACILE|Hs.6719|PTD|h-BCS HGNC:1020|MIM:603647|Ensembl:ENSG00000074582|HPRD:04708|Vega:OTTHUMG00000133114 2 2q33 BC1 (ubiquinol-cytochrome c reductase) synthesis-like protein-coding BCS1L BC1 (ubiquinol-cytochrome c reductase) synthesis-like O BCS1-like protein|h-BCS1|mitochondrial chaperone BCS1|mitochondrial complex III assembly 20121230 -9606 618 BCYRN1 - BC200|BC200a|LINC00004|NCRNA00004 HGNC:1022|MIM:606089 2 2p21 brain cytoplasmic RNA 1 miscRNA BCYRN1 brain cytoplasmic RNA 1 O - 20121230 -9606 619 BCYRN1P1 - BC200b HGNC:1023 X Xq27.1 brain cytoplasmic RNA 1, pseudogene 1 pseudo BCYRN1P1 brain cytoplasmic RNA 1, pseudogene 1 O - 20121230 -9606 620 BCYRN1P2 - BC200g HGNC:1024 1 1q42 brain cytoplasmic RNA 1, pseudogene 2 pseudo BCYRN1P2 brain cytoplasmic RNA 1, pseudogene 2 O - 20121102 -9606 622 BDH1 - BDH|SDR9C1 HGNC:1027|MIM:603063|Ensembl:ENSG00000161267|HPRD:04344|Vega:OTTHUMG00000155478 3 3q29 3-hydroxybutyrate dehydrogenase, type 1 protein-coding BDH1 3-hydroxybutyrate dehydrogenase, type 1 O (R)-3-hydroxybutyrate dehydrogenase|3-hydroxybutyrate dehydrogenase (heart, mitochondrial)|D-beta-hydroxybutyrate dehydrogenase, mitochondrial|short chain dehydrogenase/reductase family 9C, member 1 20121230 -9606 623 BDKRB1 - B1BKR|B1R|BKB1R|BKR1|BRADYB1 HGNC:1029|MIM:600337|Ensembl:ENSG00000100739|HPRD:02639|Vega:OTTHUMG00000171412 14 14q32.1-q32.2 bradykinin receptor B1 protein-coding BDKRB1 bradykinin receptor B1 O B1 bradykinin receptor|BK-1 receptor|bradykinin B1 receptor|bradykinin receptor 1 20121230 -9606 624 BDKRB2 - B2R|BK-2|BK2|BKR2|BRB2 HGNC:1030|MIM:113503|Ensembl:ENSG00000168398|HPRD:00213|Vega:OTTHUMG00000171408 14 14q32.1-q32.2 bradykinin receptor B2 protein-coding BDKRB2 bradykinin receptor B2 O B2 bradykinin receptor|BK-2 receptor 20121230 -9606 626 BDMR - AHO3 HGNC:1032|MIM:600430 2 2q37 brachydactyly-mental retardation syndrome unknown BDMR brachydactyly-mental retardation syndrome O - 20120622 -9606 627 BDNF - ANON2|BULN2 HGNC:1033|MIM:113505|Ensembl:ENSG00000176697|HPRD:00214|Vega:OTTHUMG00000178797 11 11p13 brain-derived neurotrophic factor protein-coding BDNF brain-derived neurotrophic factor O abrineurin|neurotrophin 20121230 -9606 628 BEVI - - MIM:109180 6 - baboon M7 virus integration site unknown - - - - 20110215 -9606 629 CFB DADB-122G4.5 AHUS4|BF|BFD|CFAB|FB|FBI12|GBG|H2-Bf|PBF2 HGNC:1037|MIM:138470|Ensembl:ENSG00000243649|HPRD:00718|Vega:OTTHUMG00000031198 6 6p21.3 complement factor B protein-coding CFB complement factor B O B-factor, properdin|C3 proaccelerator|C3 proactivator|C3/C5 convertase|glycine-rich beta glycoprotein|glycine-rich beta-glycoprotein|properdin factor B 20121230 -9606 631 BFSP1 RP4-531H16.2 CP115|CP94|LIFL-H HGNC:1040|MIM:603307|Ensembl:ENSG00000125864|HPRD:04494|Vega:OTTHUMG00000031940 20 20p12.1 beaded filament structural protein 1, filensin protein-coding BFSP1 beaded filament structural protein 1, filensin O cytoskeletal protein, 115 KD|filensin|lens fiber cell beaded-filament structural protein CP 115|lens intermediate filament-like heavy 20121230 -9606 632 BGLAP RP11-54H19.5 BGP|OC HGNC:1043|MIM:112260|Ensembl:ENSG00000242252|HPRD:00205|Vega:OTTHUMG00000014819 1 1q22 bone gamma-carboxyglutamate (gla) protein protein-coding BGLAP bone gamma-carboxyglutamate (gla) protein O bone Gla protein|bone gamma-carboxyglutamate (gla) protein (osteocalcin)|gamma-carboxyglutamic acid-containing protein|osteocalcin 20121230 -9606 633 BGN - DSPG1|PG-S1|PGI|SLRR1A HGNC:1044|MIM:301870|Ensembl:ENSG00000182492|HPRD:02359|Vega:OTTHUMG00000024205 X Xq28 biglycan protein-coding BGN biglycan O biglycan proteoglycan|bone/cartilage proteoglycan I|bone/cartilage proteoglycan-I|dermatan sulphate proteoglycan I|small leucine-rich protein 1A 20121230 -9606 634 CEACAM1 - BGP|BGP1|BGPI HGNC:1814|MIM:109770|Ensembl:ENSG00000079385|HPRD:00191|Vega:OTTHUMG00000151078 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule 1 (biliary glycoprotein) protein-coding CEACAM1 carcinoembryonic antigen-related cell adhesion molecule 1 (biliary glycoprotein) O CD66a antigen|antigen CD66|carcinoembryonic antigen-related cell adhesion molecule 1 20121230 -9606 635 BHMT - BHMT1 HGNC:1047|MIM:602888|Ensembl:ENSG00000145692|HPRD:04200|Vega:OTTHUMG00000108157 5 5q14.1 betaine--homocysteine S-methyltransferase protein-coding BHMT betaine--homocysteine S-methyltransferase O betaine--homocysteine S-methyltransferase 1 20121230 -9606 636 BICD1 - BICD HGNC:1049|MIM:602204|Ensembl:ENSG00000151746|HPRD:03730|Vega:OTTHUMG00000169307 12 12p11.2-p11.1 bicaudal D homolog 1 (Drosophila) protein-coding BICD1 bicaudal D homolog 1 (Drosophila) O bic-D 1|cytoskeleton-like bicaudal D protein homolog 1|protein bicaudal D homolog 1 20121230 -9606 637 BID - FP497 HGNC:1050|MIM:601997|Ensembl:ENSG00000015475|HPRD:03590|Vega:OTTHUMG00000150087 22 22q11.1 BH3 interacting domain death agonist protein-coding BID BH3 interacting domain death agonist O BH3-interacting domain death agonist|BID isoform ES(1b)|BID isoform L(2)|BID isoform Si6|Human BID coding sequence|apoptic death agonist|desmocollin type 4|p22 BID 20121230 -9606 638 BIK - BIP1|BP4|NBK HGNC:1051|MIM:603392|Ensembl:ENSG00000100290|HPRD:04547|Vega:OTTHUMG00000150703 22 22q13.31 BCL2-interacting killer (apoptosis-inducing) protein-coding BIK BCL2-interacting killer (apoptosis-inducing) O apoptosis inducer NBK|apoptosis-inducing NBK|bcl-2-interacting killer 20121230 -9606 639 PRDM1 RP1-134E15.1 BLIMP1|PRDI-BF1 HGNC:9346|MIM:603423|Ensembl:ENSG00000057657|HPRD:04572|Vega:OTTHUMG00000015299 6 6q21 PR domain containing 1, with ZNF domain protein-coding PRDM1 PR domain containing 1, with ZNF domain O B-lymphocyte-induced maturation protein 1|BLIMP-1|PR domain zinc finger protein 1|PRDI-binding factor-1|beta-interferon gene positive-regulatory domain I binding factor 20121230 -9606 640 BLK - MODY11 HGNC:1057|MIM:191305|Ensembl:ENSG00000136573|HPRD:01866|Vega:OTTHUMG00000090729 8 8p23-p22 B lymphoid tyrosine kinase protein-coding BLK B lymphoid tyrosine kinase O BLK nonreceptor tyrosine kinase|b lymphocyte kinase|p55-Blk|tyrosine-protein kinase Blk 20121230 -9606 641 BLM - BS|RECQ2|RECQL2|RECQL3 HGNC:1058|MIM:604610|Ensembl:ENSG00000197299|HPRD:05211|Vega:OTTHUMG00000149834 15 15q26.1 Bloom syndrome, RecQ helicase-like protein-coding BLM Bloom syndrome, RecQ helicase-like O Bloom syndrome protein|DNA helicase, RecQ-like type 2|recQ protein-like 3 20121230 -9606 642 BLMH - BH|BMH HGNC:1059|MIM:602403|Ensembl:ENSG00000108578|HPRD:03870|Vega:OTTHUMG00000179756 17 17q11.2 bleomycin hydrolase protein-coding BLMH bleomycin hydrolase O BLM hydrolase 20121230 -9606 643 CXCR5 - BLR1|CD185|MDR15 HGNC:1060|MIM:601613|Ensembl:ENSG00000160683|HPRD:03367|Vega:OTTHUMG00000166345 11 11q23.3 chemokine (C-X-C motif) receptor 5 protein-coding CXCR5 chemokine (C-X-C motif) receptor 5 O Burkitt lymphoma receptor 1, GTP binding protein (chemokine (C-X-C motif) receptor 5)|Burkitt lymphoma receptor 1, GTP-binding protein|C-X-C chemokine receptor type 5|CXC-R5|CXCR-5|MDR-15|monocyte-derived receptor 15 20121230 -9606 644 BLVRA - BLVR|BVR|BVRA HGNC:1062|MIM:109750|Ensembl:ENSG00000106605|HPRD:11229|Vega:OTTHUMG00000128953 7 7p13 biliverdin reductase A protein-coding BLVRA biliverdin reductase A O BVR A|biliverdin-IX alpha-reductase 20121230 -9606 645 BLVRB - BVRB|FLR|SDR43U1 HGNC:1063|MIM:600941|Ensembl:ENSG00000090013|HPRD:02967 19 19q13.1-q13.2 biliverdin reductase B (flavin reductase (NADPH)) protein-coding BLVRB biliverdin reductase B (flavin reductase (NADPH)) O BVR-B|FR|GHBP|NADPH-dependent diaphorase|NADPH-flavin reductase|biliverdin-IX beta-reductase|flavin reductase (NADPH)|green heme-binding protein|short chain dehydrogenase/reductase family 43U, member 1 20121230 -9606 646 BNC1 - BNC|BSN1|HsT19447 HGNC:1081|MIM:601930|Ensembl:ENSG00000169594|HPRD:11799|Vega:OTTHUMG00000147362 15 15q25.2 basonuclin 1 protein-coding BNC1 basonuclin 1 O zinc finger protein basonuclin|zinc finger protein basonuclin-1 20121230 -9606 648 BMI1 RP11-573G6.1 FLVI2/BMI1|PCGF4|RNF51 HGNC:1066|MIM:164831|Ensembl:ENSG00000168283|HPRD:01277|Vega:OTTHUMG00000017807 10 10p11.23 BMI1 polycomb ring finger oncogene protein-coding BMI1 BMI1 polycomb ring finger oncogene O B lymphoma Mo-MLV insertion region 1 homolog|flvi-2/bmi-1|murine leukemia viral (bmi-1) oncogene homolog|polycomb complex protein BMI-1|polycomb group RING finger protein 4|polycomb group protein Bmi1|ring finger protein 51 20121230 -9606 649 BMP1 - OI13|PCOLC|PCP|PCP2|TLD HGNC:1067|MIM:112264|Ensembl:ENSG00000168487|HPRD:00209|Vega:OTTHUMG00000097761 8 8p21.3 bone morphogenetic protein 1 protein-coding BMP1 bone morphogenetic protein 1 O mammalian tolloid protein|procollagen C-endopeptidase|procollagen C-proteinase 20121230 -9606 650 BMP2 - BDA2|BMP2A HGNC:1069|MIM:112261|Ensembl:ENSG00000125845|HPRD:00206|Vega:OTTHUMG00000031833 20 20p12 bone morphogenetic protein 2 protein-coding BMP2 bone morphogenetic protein 2 O BMP-2A|bone morphogenetic protein 2A 20121230 -9606 651 BMP3 - BMP-3A HGNC:1070|MIM:112263|Ensembl:ENSG00000152785|HPRD:00208|Vega:OTTHUMG00000130292 4 4q21 bone morphogenetic protein 3 protein-coding BMP3 bone morphogenetic protein 3 O BMP-3|bone morphogenetic protein 3 (osteogenic)|bone morphogenetic protein 3A|bone morphogenetic protein-3|osteogenin 20121230 -9606 652 BMP4 - BMP2B|BMP2B1|MCOPS6|OFC11|ZYME HGNC:1071|MIM:112262|Ensembl:ENSG00000125378|HPRD:00207|Vega:OTTHUMG00000140303 14 14q22-q23 bone morphogenetic protein 4 protein-coding BMP4 bone morphogenetic protein 4 O BMP-2B|BMP-4|bone morphogenetic protein 2B 20121230 -9606 653 BMP5 - - HGNC:1072|MIM:112265|Ensembl:ENSG00000112175|HPRD:00210|Vega:OTTHUMG00000014903 6 6p12.1 bone morphogenetic protein 5 protein-coding BMP5 bone morphogenetic protein 5 O BMP-5 20121230 -9606 654 BMP6 - VGR|VGR1 HGNC:1073|MIM:112266|Ensembl:ENSG00000153162|HPRD:00211|Vega:OTTHUMG00000014217 6 6p24-p23 bone morphogenetic protein 6 protein-coding BMP6 bone morphogenetic protein 6 O BMP-6|VG-1-R|VG-1-related protein|VGR-1|Vg1-related sequence|vegetal related growth factor (TGFB-related)|vegetal-related (TGFB related) cytokine 20121230 -9606 655 BMP7 RP11-560A15.5 OP-1 HGNC:1074|MIM:112267|Ensembl:ENSG00000101144|HPRD:00212|Vega:OTTHUMG00000032812 20 20q13 bone morphogenetic protein 7 protein-coding BMP7 bone morphogenetic protein 7 O osteogenic protein 1 20121230 -9606 656 BMP8B - BMP8|OP2 HGNC:1075|MIM:602284|Ensembl:ENSG00000116985|HPRD:03792|Vega:OTTHUMG00000009247 1 1p35-p32 bone morphogenetic protein 8b protein-coding BMP8B bone morphogenetic protein 8b O BMP-8|BMP-8B|bone morphogenetic protein 8 (osteogenic protein 2)|bone morphogenetic protein 8B|dJ118J21.1 (bone morphogenetic protein 8 (osteogenic protein 2))|osteogenic protein 2 20121230 -9606 657 BMPR1A - 10q23del|ACVRLK3|ALK3|CD292|SKR5 HGNC:1076|MIM:601299|Ensembl:ENSG00000107779|HPRD:03192|Vega:OTTHUMG00000018657 10 10q22.3 bone morphogenetic protein receptor, type IA protein-coding BMPR1A bone morphogenetic protein receptor, type IA O ALK-3|BMP type-1A receptor|BMPR-1A|activin A receptor, type II-like kinase 3|activin receptor-like kinase 3|bone morphogenetic protein receptor type-1A|serine/threonine-protein kinase receptor R5 20121230 -9606 658 BMPR1B - ALK-6|ALK6|CDw293 HGNC:1077|MIM:603248|Ensembl:ENSG00000138696|HPRD:04457|Vega:OTTHUMG00000130991 4 4q22-q24 bone morphogenetic protein receptor, type IB protein-coding BMPR1B bone morphogenetic protein receptor, type IB O BMP type-1B receptor|BMPR-1B|activin receptor-like kinase 6|bone morphogenetic protein receptor type-1B|serine/threonine receptor kinase 20121230 -9606 659 BMPR2 - BMPR-II|BMPR3|BMR2|BRK-3|PPH1|T-ALK HGNC:1078|MIM:600799|Ensembl:ENSG00000204217|HPRD:02880|Vega:OTTHUMG00000133617 2 2q33-q34 bone morphogenetic protein receptor, type II (serine/threonine kinase) protein-coding BMPR2 bone morphogenetic protein receptor, type II (serine/threonine kinase) O BMP type II receptor|BMP type-2 receptor|BMPR-2|bone morphogenetic protein receptor type II|bone morphogenetic protein receptor type-2|type II activin receptor-like kinase|type II receptor for bone morphogenetic protein-4 20121230 -9606 660 BMX - ETK|PSCTK2|PSCTK3 HGNC:1079|MIM:300101|Ensembl:ENSG00000102010|HPRD:02111|Vega:OTTHUMG00000021180 X Xp22.2 BMX non-receptor tyrosine kinase protein-coding BMX BMX non-receptor tyrosine kinase O Etk/Bmx cytosolic tyrosine kinase|NTK38 tyrosine kinase|bone marrow tyrosine kinase gene in chromosome X protein|cytoplasmic tyrosine-protein kinase BMX|epithelial and endothelial tyrosine kinase 20121230 -9606 661 POLR3D - BN51T|RPC4|RPC53|TSBN51 HGNC:1080|MIM:187280|Ensembl:ENSG00000168495|HPRD:01755|Vega:OTTHUMG00000163778 8 8q21 polymerase (RNA) III (DNA directed) polypeptide D, 44kDa protein-coding POLR3D polymerase (RNA) III (DNA directed) polypeptide D, 44kDa O BN51 (BHK21) temperature sensitivity complementing|DNA-directed RNA polymerase III 47 kDa polypeptide|DNA-directed RNA polymerase III subunit D|DNA-directed RNA polymerase III subunit RPC4|RNA polymerase III 47 kDa subunit|RNA polymerase III subunit C4|RPC53 homolog|temperature sensitive complementation, cell cycle specific, tsBN51 20121230 -9606 662 BNIP1 TRG8 NIP1|SEC20|TRG-8 HGNC:1082|MIM:603291|Ensembl:ENSG00000113734|HPRD:04480|Vega:OTTHUMG00000130521 5 5q33-q34 BCL2/adenovirus E1B 19kDa interacting protein 1 protein-coding BNIP1 BCL2/adenovirus E1B 19kDa interacting protein 1 O BCL2/adenovirus E1B 19 kDa protein-interacting protein 1|transformation-related gene 8 protein|vesicle transport protein SEC20 20121230 -9606 663 BNIP2 - BNIP-2|NIP2 HGNC:1083|MIM:603292|Ensembl:ENSG00000140299|HPRD:04481|Vega:OTTHUMG00000132727 15 15q22.2 BCL2/adenovirus E1B 19kDa interacting protein 2 protein-coding BNIP2 BCL2/adenovirus E1B 19kDa interacting protein 2 O BCL2/adenovirus E1B 19 kDa protein-interacting protein 2 20121230 -9606 664 BNIP3 - NIP3 HGNC:1084|MIM:603293|Ensembl:ENSG00000176171|HPRD:04482|Vega:OTTHUMG00000019278 10 10q26.3 BCL2/adenovirus E1B 19kDa interacting protein 3 protein-coding BNIP3 BCL2/adenovirus E1B 19kDa interacting protein 3 O BCL2/adenovirus E1B 19 kDa protein-interacting protein 3 20121230 -9606 665 BNIP3L - BNIP3a|NIX HGNC:1085|MIM:605368|Ensembl:ENSG00000104765|HPRD:07288|Vega:OTTHUMG00000099433 8 8p21 BCL2/adenovirus E1B 19kDa interacting protein 3-like protein-coding BNIP3L BCL2/adenovirus E1B 19kDa interacting protein 3-like O BCL2/adenovirus E1B 19 kDa protein-interacting protein 3-like|BCL2/adenovirus E1B 19 kDa protein-interacting protein 3A|BCL2/adenovirus E1B 19-kd protein-interacting protein 3a|NIP3-like protein X|NIP3L|adenovirus E1B19k-binding protein B5 20121230 -9606 666 BOK - BCL2L9|BOKL HGNC:1087|MIM:605404|Ensembl:ENSG00000176720|HPRD:05657|Vega:OTTHUMG00000133411 2 2q37.3 BCL2-related ovarian killer protein-coding BOK BCL2-related ovarian killer O bcl-2-like protein 9|bcl-2-related ovarian killer protein|bcl2-L-9|hBOK 20121230 -9606 667 DST RP3-361I14.2 BP240|BPA|BPAG1|CATX-15|CATX15|D6S1101|DMH|DT|HSAN6|MACF2 HGNC:1090|MIM:113810|Ensembl:ENSG00000151914|HPRD:00222|Vega:OTTHUMG00000014913 6 6p12.1 dystonin protein-coding DST dystonin O 230/240 kDa bullous pemphigoid antigen|bullous pemphigoid antigen 1|bullous pemphigoid antigen 1, 230/240kDa|dystonia musculorum protein|hemidesmosomal plaque protein|trabeculin-beta 20121230 -9606 668 FOXL2 - BPES|BPES1|PFRK|PINTO|POF3 HGNC:1092|MIM:605597|Ensembl:ENSG00000183770|HPRD:05723|Vega:OTTHUMG00000159889 3 3q23 forkhead box L2 protein-coding FOXL2 forkhead box L2 O forkhead box protein L2|forkhead transcription factor FOXL2 20121230 -9606 669 BPGM - DPGM HGNC:1093|MIM:613896|Ensembl:ENSG00000172331|HPRD:01961|Vega:OTTHUMG00000155380 7 7q33 2,3-bisphosphoglycerate mutase protein-coding BPGM 2,3-bisphosphoglycerate mutase O 2,3-bisphosphoglycerate mutase, erythrocyte|2,3-bisphosphoglycerate synthase|2,3-diphosphoglycerate mutase|BPG-dependent PGAM|bisphosphoglycerate mutase|erythrocyte 2,3-bisphosphoglycerate mutase 20121230 -9606 670 BPHL - BPH-RP|MCNAA|VACVASE HGNC:1094|MIM:603156|Ensembl:ENSG00000137274|HPRD:04403|Vega:OTTHUMG00000014140 6 6p25 biphenyl hydrolase-like (serine hydrolase) protein-coding BPHL biphenyl hydrolase-like (serine hydrolase) O biphenyl hydrolase-like protein|biphenyl hydrolase-related protein|breast epithelial mucin-associated antigen|valacyclovir hydrolase|valacyclovirase 20121230 -9606 671 BPI RP13-218F6_A.1 BPIFD1|rBPI HGNC:1095|MIM:109195|Ensembl:ENSG00000101425|HPRD:00174|Vega:OTTHUMG00000032441 20 20q11.23 bactericidal/permeability-increasing protein protein-coding BPI bactericidal/permeability-increasing protein O BPI fold containing family D, member 1|CAP 57|bactericidal permeability-increasing protein|recombinant BPI holoprotein, rBPI 20121230 -9606 672 BRCA1 - BRCAI|BRCC1|BROVCA1|IRIS|PNCA4|PPP1R53|PSCP|RNF53 HGNC:1100|MIM:113705|Ensembl:ENSG00000012048|HPRD:00218|Vega:OTTHUMG00000157426 17 17q21 breast cancer 1, early onset protein-coding BRCA1 breast cancer 1, early onset O BRCA1/BRCA2-containing complex, subunit 1|RING finger protein 53|breast and ovarian cancer susceptibility protein 1|breast and ovarian cancer sususceptibility protein 1|breast cancer type 1 susceptibility protein|protein phosphatase 1, regulatory subunit 53 20121230 -9606 673 BRAF - B-RAF1|BRAF1|NS7|RAFB1 HGNC:1097|MIM:164757|Ensembl:ENSG00000157764|HPRD:01264|Vega:OTTHUMG00000157457 7 7q34 v-raf murine sarcoma viral oncogene homolog B1 protein-coding BRAF v-raf murine sarcoma viral oncogene homolog B1 O 94 kDa B-raf protein|B-Raf proto-oncogene serine/threonine-protein kinase (p94)|murine sarcoma viral (v-raf) oncogene homolog B1|p94|proto-oncogene B-Raf|serine/threonine-protein kinase B-raf 20121230 -9606 675 BRCA2 RP11-298P3.4 BRCC2|BROVCA2|FACD|FAD|FAD1|FANCB|FANCD|FANCD1|GLM3|PNCA2 HGNC:1101|MIM:600185|Ensembl:ENSG00000139618|HPRD:02554|Vega:OTTHUMG00000017411 13 13q12.3 breast cancer 2, early onset protein-coding BRCA2 breast cancer 2, early onset O BRCA1/BRCA2-containing complex, subunit 2|breast and ovarian cancer susceptibility gene, early onset|breast cancer 2 tumor suppressor|breast cancer type 2 susceptibility protein|fanconi anemia group D1 protein|truncated breast and ovarian cancer susceptibility protein 2 20121230 -9606 676 BRDT - BRD6|CT9 HGNC:1105|MIM:602144|Ensembl:ENSG00000137948|HPRD:03684|Vega:OTTHUMG00000010113 1 1p22.1 bromodomain, testis-specific protein-coding BRDT bromodomain, testis-specific O RING3-like protein|bromodomain testis-specific protein|cancer/testis antigen 9 20121230 -9606 677 ZFP36L1 - BRF1|Berg36|ERF-1|ERF1|RNF162B|TIS11B|cMG1 HGNC:1107|MIM:601064|Ensembl:ENSG00000185650|HPRD:03041|Vega:OTTHUMG00000171385 14 14q22-q24 ZFP36 ring finger protein-like 1 protein-coding ZFP36L1 ZFP36 ring finger protein-like 1 O EGF-response factor 1|butyrate response factor 1|early response factor Berg36|zinc finger protein 36, C3H type-like 1|zinc finger protein 36, C3H1 type-like 1|zinc finger protein, C3H type, 36-like 1 20121230 -9606 678 ZFP36L2 - BRF2|ERF-2|ERF2|RNF162C|TIS11D HGNC:1108|MIM:612053|Ensembl:ENSG00000152518|HPRD:18319|Vega:OTTHUMG00000128642 2 2p22.3-p21 ZFP36 ring finger protein-like 2 protein-coding ZFP36L2 ZFP36 ring finger protein-like 2 O EGF-response factor 2|ZFP36-like 2|butyrate response factor 2|zinc finger protein 36, C3H type-like 1|zinc finger protein 36, C3H type-like 2|zinc finger protein 36, C3H1 type-like 2|zinc finger protein, C3H type, 36-like 2 20121230 -9606 680 BRS3 RP1-196E23.3 - HGNC:1113|MIM:300107|Ensembl:ENSG00000102239|HPRD:02116|Vega:OTTHUMG00000022726 X Xq26.3 bombesin-like receptor 3 protein-coding BRS3 bombesin-like receptor 3 O BRS-3|G-protein coupled receptor|bombesin receptor subtype 3|bombesin receptor subtype-3 20121230 -9606 682 BSG UNQ6505/PRO21383 5F7|CD147|EMMPRIN|M6|OK|TCSF HGNC:1116|MIM:109480|Ensembl:ENSG00000172270|HPRD:00176|Vega:OTTHUMG00000177718 19 19p13.3 basigin (Ok blood group) protein-coding BSG basigin (Ok blood group) O CD147 antigen|OK blood group antigen|basigin|collagenase stimulatory factor|extracellular matrix metalloproteinase inducer|leukocyte activation antigen M6|tumor cell-derived collagenase stimulatory factor 20121230 -9606 683 BST1 - CD157 HGNC:1118|MIM:600387|Ensembl:ENSG00000109743|HPRD:02665|Vega:OTTHUMG00000097739 4 4p15 bone marrow stromal cell antigen 1 protein-coding BST1 bone marrow stromal cell antigen 1 O ADP-ribosyl cyclase 2|BST-1|NAD(+) nucleosidase|bone marrow stromal antigen 1|cADPr hydrolase 2|cyclic ADP-ribose hydrolase 2 20121230 -9606 684 BST2 - CD317|TETHERIN HGNC:1119|MIM:600534|Ensembl:ENSG00000130303|HPRD:02759|Vega:OTTHUMG00000165993 19 19p13.1 bone marrow stromal cell antigen 2 protein-coding BST2 bone marrow stromal cell antigen 2 O BST-2|HM1.24 antigen|NPC-A-7|bone marrow stromal antigen 2 20121230 -9606 685 BTC - - HGNC:1121|MIM:600345|Ensembl:ENSG00000174808|HPRD:02643|Vega:OTTHUMG00000130107 4 4q13.3 betacellulin protein-coding BTC betacellulin O probetacellulin 20121230 -9606 686 BTD - - HGNC:1122|MIM:609019|Ensembl:ENSG00000169814|HPRD:08359|Vega:OTTHUMG00000129861 3 3p25 biotinidase protein-coding BTD biotinidase O biotinase 20121230 -9606 687 KLF9 - BTEB|BTEB1 HGNC:1123|MIM:602902|Ensembl:ENSG00000119138|HPRD:04211|Vega:OTTHUMG00000019991 9 9q13 Kruppel-like factor 9 protein-coding KLF9 Kruppel-like factor 9 O BTE-binding protein 1|GC-box-binding protein 1|Krueppel-like factor 9|basic transcription element binding protein 1|basic transcription element-binding protein 1|transcription factor BTEB1 20121230 -9606 688 KLF5 RP11-505F3.5 BTEB2|CKLF|IKLF HGNC:6349|MIM:602903|Ensembl:ENSG00000102554|HPRD:04212|Vega:OTTHUMG00000017074 13 13q22.1 Kruppel-like factor 5 (intestinal) protein-coding KLF5 Kruppel-like factor 5 (intestinal) O BTE-binding protein 2|GC box binding protein 2|GC-box-binding protein 2|Krueppel-like factor 5|basic transcription element binding protein 2|basic transcription element-binding protein 2|colon krueppel-like factor|colon kruppel-like factor|intestinal-enriched krueppel-like factor|intestinal-enriched kruppel-like factor|transcription factor BTEB2 20121230 -9606 689 BTF3 OK/SW-cl.8 BETA-NAC|BTF3a|BTF3b|NACB HGNC:1125|MIM:602542|Ensembl:ENSG00000145741|HPRD:03966|Vega:OTTHUMG00000102031 5 5q13.2 basic transcription factor 3 protein-coding BTF3 basic transcription factor 3 O RNA polymerase B transcription factor 3|nascent-polypeptide-associated complex beta polypeptide|transcription factor BTF3 20121230 -9606 690 BTF3P11 - BTF3L1|HUMBTFB|OCIF|OPG|TNFRSF11B HGNC:1126|MIM:602543 13 13q22 basic transcription factor 3 pseudogene 11 pseudo BTF3P11 basic transcription factor 3 pseudogene 11 O - 20121230 -9606 693 BTF3P1 - HUMBTFA HGNC:1129 8 8q11.23 basic transcription factor 3, pseudogene 1 pseudo BTF3P1 basic transcription factor 3, pseudogene 1 O - 20121230 -9606 694 BTG1 - - HGNC:1130|MIM:109580|Ensembl:ENSG00000133639|HPRD:15912|Vega:OTTHUMG00000170092 12 12q22 B-cell translocation gene 1, anti-proliferative protein-coding BTG1 B-cell translocation gene 1, anti-proliferative O B-cell translocation gene 1 protein|protein BTG1 20121230 -9606 695 BTK RP1-164F3.2 AGMX1|AT|ATK|BPK|IMD1|PSCTK1|XLA HGNC:1133|MIM:300300|Ensembl:ENSG00000010671|HPRD:02248|Vega:OTTHUMG00000022022 X Xq21.33-q22 Bruton agammaglobulinemia tyrosine kinase protein-coding BTK Bruton agammaglobulinemia tyrosine kinase O B-cell progenitor kinase|agammaglobulinaemia tyrosine kinase|dominant-negative kinase-deficient Brutons tyrosine kinase|tyrosine-protein kinase BTK|tyrosine-protein kinase BTK isoform (lacking exon 14) 20121230 -9606 696 BTN1A1 - BT|BTN HGNC:1135|MIM:601610|Ensembl:ENSG00000124557|HPRD:03365|Vega:OTTHUMG00000016358 6 6p22.1 butyrophilin, subfamily 1, member A1 protein-coding BTN1A1 butyrophilin, subfamily 1, member A1 O bK14H9.2 (butyrophilin, subfamily 1, member A1)|butyrophilin subfamily 1 member A1 20121230 -9606 698 BTS1 - - HGNC:1147 10 10p11.23 bladder tumor susceptibility 1 unknown BTS1 bladder tumor susceptibility 1 O - 20110215 -9606 699 BUB1 - BUB1A|BUB1L|hBUB1 HGNC:1148|MIM:602452|Ensembl:ENSG00000169679|HPRD:03907|Vega:OTTHUMG00000153638 2 2q14 budding uninhibited by benzimidazoles 1 homolog (yeast) protein-coding BUB1 budding uninhibited by benzimidazoles 1 homolog (yeast) O BUB1 budding uninhibited by benzimidazoles 1 homolog|mitotic checkpoint serine/threonine-protein kinase BUB1|mitotic spindle checkpoint kinase|putative serine/threonine-protein kinase 20121230 -9606 700 BVR1 - - HGNC:1153 8 8q24 Burkitt lymphoma variant rearranging region 1 other BVR1 Burkitt lymphoma variant rearranging region 1 O - 20080828 -9606 701 BUB1B - BUB1beta|BUBR1|Bub1A|MAD3L|SSK1|hBUBR1 HGNC:1149|MIM:602860|Ensembl:ENSG00000156970|HPRD:04176|Vega:OTTHUMG00000129877 15 15q15 budding uninhibited by benzimidazoles 1 homolog beta (yeast) protein-coding BUB1B budding uninhibited by benzimidazoles 1 homolog beta (yeast) O MAD3/BUB1-related protein kinase|mitotic checkpoint kinase MAD3L|mitotic checkpoint serine/threonine-protein kinase BUB1 beta 20121230 -9606 705 BYSL RP5-973N23.2 BYSTIN HGNC:1157|MIM:603871|Ensembl:ENSG00000112578|HPRD:04848|Vega:OTTHUMG00000014687 6 6p21.1 bystin-like protein-coding BYSL bystin-like O by the ribosomal protein s6 gene, drosophila, homolog-like|bystin 20121230 -9606 706 TSPO RP3-526I14.4 BPBS|BZRP|DBI|IBP|MBR|PBR|PBS|PKBS|PTBR|mDRC|pk18 HGNC:1158|MIM:109610|Ensembl:ENSG00000100300|HPRD:15913|Vega:OTTHUMG00000150573 22 22q13.31 translocator protein (18kDa) protein-coding TSPO translocator protein (18kDa) O benzodiazepine peripheral binding site|mitochondrial benzodiazepine receptor|peripheral-type benzodiazepine receptor|translocator protein 20121230 -9606 708 C1QBP - GC1QBP|HABP1|SF2p32|gC1Q-R|gC1qR|p32 HGNC:1243|MIM:601269|Ensembl:ENSG00000108561|HPRD:03168|Vega:OTTHUMG00000177875 17 17p13.3 complement component 1, q subcomponent binding protein protein-coding C1QBP complement component 1, q subcomponent binding protein O C1q globular domain-binding protein|complement component 1 Q subcomponent-binding protein, mitochondrial|glycoprotein gC1qBP|hyaluronan-binding protein 1|mitochondrial matrix protein p32|p33|splicing factor SF2-associated protein 20121230 -9606 709 C1HR - - HGNC:1227 X - C1AGOH temperature sensitivity complementing unknown C1HR C1AGOH temperature sensitivity complementing O - 20080828 -9606 710 SERPING1 - C1IN|C1INH|C1NH|HAE1|HAE2 HGNC:1228|MIM:606860|Ensembl:ENSG00000149131|HPRD:06033|Vega:OTTHUMG00000150304 11 11q12.1 serpin peptidase inhibitor, clade G (C1 inhibitor), member 1 protein-coding SERPING1 serpin peptidase inhibitor, clade G (C1 inhibitor), member 1 O C1 esterase inhibitor|C1-inhibiting factor|complement component 1 inhibitor|plasma protease C1 inhibitor|serine/cysteine proteinase inhibitor clade G member 1|serpin G1 20121230 -9606 711 ERC2-IT1 - C1orf1|C3orf51|Po42 HGNC:1229|HPRD:04924 3 3p14.3 ERC2 intronic transcript 1 (non-protein coding) miscRNA ERC2-IT1 ERC2 intronic transcript 1 (non-protein coding) O - 20121230 -9606 712 C1QA - - HGNC:1241|MIM:120550|Ensembl:ENSG00000173372|HPRD:00393|Vega:OTTHUMG00000002893 1 1p36.12 complement component 1, q subcomponent, A chain protein-coding C1QA complement component 1, q subcomponent, A chain O complement C1q subcomponent subunit A|complement component 1, q subcomponent, alpha polypeptide|complement component C1q, A chain 20121230 -9606 713 C1QB RP4-815O16.3 - HGNC:1242|MIM:120570|Ensembl:ENSG00000173369|HPRD:00394|Vega:OTTHUMG00000002896 1 1p36.12 complement component 1, q subcomponent, B chain protein-coding C1QB complement component 1, q subcomponent, B chain O complement C1q subcomponent subunit B|complement component 1, q subcomponent, beta polypeptide|complement component C1q, B chain|complement subcomponent C1q chain B 20121230 -9606 714 C1QC - C1Q-C|C1QG HGNC:1245|MIM:120575|Ensembl:ENSG00000159189|HPRD:00395|Vega:OTTHUMG00000002891 1 1p36.11 complement component 1, q subcomponent, C chain protein-coding C1QC complement component 1, q subcomponent, C chain O complement C1q subcomponent subunit C|complement component 1, q subcomponent, gamma polypeptide 20121230 -9606 715 C1R - - HGNC:1246|MIM:613785|Ensembl:ENSG00000159403|HPRD:01954|Vega:OTTHUMG00000168149 12 12p13 complement component 1, r subcomponent protein-coding C1R complement component 1, r subcomponent O complement C1r subcomponent 20121230 -9606 716 C1S - - HGNC:1247|MIM:120580|Ensembl:ENSG00000182326|HPRD:00397|Vega:OTTHUMG00000150305 12 12p13 complement component 1, s subcomponent protein-coding C1S complement component 1, s subcomponent O C1 esterase|basic proline-rich peptide IB-1|complement C1s subcomponent|complement component 1 subcomponent s 20121230 -9606 717 C2 DADB-122G4.1 CO2 HGNC:1248|MIM:613927|Ensembl:ENSG00000166278|HPRD:08939|Vega:OTTHUMG00000031190 6 6p21.3 complement component 2 protein-coding C2 complement component 2 O C3/C5 convertase|complement C2|complement component C2 20121230 -9606 718 C3 - AHUS5|ARMD9|ASP|CPAMD1 HGNC:1318|MIM:120700|Ensembl:ENSG00000125730|HPRD:00400 19 19p13.3-p13.2 complement component 3 protein-coding C3 complement component 3 O C3 and PZP-like alpha-2-macroglobulin domain-containing protein 1|acylation-stimulating protein cleavage product|complement C3|complement component C3 20121230 -9606 719 C3AR1 - AZ3B|C3AR|HNFAG09 HGNC:1319|MIM:605246|Ensembl:ENSG00000171860|HPRD:05581|Vega:OTTHUMG00000168569 12 12p13.31 complement component 3a receptor 1 protein-coding C3AR1 complement component 3a receptor 1 O C3a anaphylatoxin chemotactic receptor|C3a-R|complement component 3 receptor 1 20121230 -9606 720 C4A DAMC-258G8.6 C4|C4A2|C4A3|C4A4|C4A6|C4AD|C4S|CO4|CPAMD2|RG HGNC:1323|MIM:120810|Ensembl:ENSG00000244731|HPRD:00401|Vega:OTTHUMG00000031186 6 6p21.3 complement component 4A (Rodgers blood group) protein-coding C4A complement component 4A (Rodgers blood group) O C3 and PZP-like alpha-2-macroglobulin domain-containing protein 2|C4A anaphylatoxin|Rodgers form of C4|acidic C4|acidic complement C4|complement C4-A 20121230 -9606 721 C4B DADB-112B14.11-001 C4B1|C4B12|C4B2|C4B3|C4B5|C4BD|C4F|CH|CO4|CPAMD3 HGNC:1324|MIM:120820|Ensembl:ENSG00000224389|HPRD:00402|HPRD:18631|Vega:OTTHUMG00000031187 6 6p21.3 complement component 4B (Chido blood group) protein-coding C4B complement component 4B (Chido blood group) O C3 and PZP-like alpha-2-macroglobulin domain-containing protein 3|Chido form of C4|basic complement C4|complement C4-B|complement C4B1a 20121223 -9606 722 C4BPA RP11-164O23.4 C4BP|PRP HGNC:1325|MIM:120830|Ensembl:ENSG00000123838|HPRD:00403|Vega:OTTHUMG00000036173 1 1q32 complement component 4 binding protein, alpha protein-coding C4BPA complement component 4 binding protein, alpha O C4b-binding protein alpha chain|proline-rich protein 20121230 -9606 724 C4BPAP2 RP11-6J21.1 C4BPAL2 HGNC:1327 1 1q32 complement component 4 binding protein, alpha pseudogene 2 pseudo C4BPAP2 complement component 4 binding protein, alpha pseudogene 2 O - 20121230 -9606 725 C4BPB RP11-164O23.3 C4BP HGNC:1328|MIM:120831|Ensembl:ENSG00000123843|HPRD:00404|Vega:OTTHUMG00000036035 1 1q32 complement component 4 binding protein, beta protein-coding C4BPB complement component 4 binding protein, beta O C4b-binding protein beta chain 20121230 -9606 726 CAPN5 - HTRA3|nCL-3 HGNC:1482|MIM:602537|Ensembl:ENSG00000149260|HPRD:03963|Vega:OTTHUMG00000165192 11 11q14 calpain 5 protein-coding CAPN5 calpain 5 O calpain htra-3|calpain-5|new calpain 3 20121230 -9606 727 C5 - CPAMD4 HGNC:1331|MIM:120900|Ensembl:ENSG00000106804|HPRD:00405|Vega:OTTHUMG00000020579 9 9q33-q34 complement component 5 protein-coding C5 complement component 5 O C3 and PZP-like alpha-2-macroglobulin domain-containing protein 4|anaphylatoxin C5a analog|complement C5 20121230 -9606 728 C5AR1 - C5A|C5AR|C5R1|CD88 HGNC:1338|MIM:113995|Ensembl:ENSG00000197405|HPRD:00224 19 19q13.3-q13.4 complement component 5a receptor 1 protein-coding C5AR1 complement component 5a receptor 1 O C5a anaphylatoxin chemotactic receptor|C5a anaphylatoxin receptor|C5a ligand|C5a-R|complement component 5 receptor 1 20121230 -9606 729 C6 - - HGNC:1339|MIM:217050|Ensembl:ENSG00000039537|HPRD:01956|Vega:OTTHUMG00000094781 5 5p13 complement component 6 protein-coding C6 complement component 6 O complement component C6 20121230 -9606 730 C7 - - HGNC:1346|MIM:217070|Ensembl:ENSG00000112936|HPRD:01957|Vega:OTTHUMG00000150340 5 5p13 complement component 7 protein-coding C7 complement component 7 O complement component C7 20121230 -9606 731 C8A - - HGNC:1352|MIM:120950|Ensembl:ENSG00000157131|HPRD:00409|Vega:OTTHUMG00000008306 1 1p32 complement component 8, alpha polypeptide protein-coding C8A complement component 8, alpha polypeptide O complement component 8 subunit alpha|complement component C8 alpha chain 20121230 -9606 732 C8B - - HGNC:1353|MIM:120960|Ensembl:ENSG00000021852|HPRD:00410|Vega:OTTHUMG00000008305 1 1p32 complement component 8, beta polypeptide protein-coding C8B complement component 8, beta polypeptide O complement component 8 subunit beta|complement component C8 beta chain 20121230 -9606 733 C8G RP11-229P13.14-003 C8C HGNC:1354|MIM:120930|Ensembl:ENSG00000176919|HPRD:00407|Vega:OTTHUMG00000020955 9 9q34.3 complement component 8, gamma polypeptide protein-coding C8G complement component 8, gamma polypeptide O complement component C8 gamma chain 20121230 -9606 734 OSGIN2 - C8orf1|hT41 HGNC:1355|MIM:604598|Ensembl:ENSG00000164823|HPRD:06853|Vega:OTTHUMG00000163811 8 8q21 oxidative stress induced growth inhibitor family member 2 protein-coding OSGIN2 oxidative stress induced growth inhibitor family member 2 O oxidative stress-induced growth inhibitor 2 20121230 -9606 735 C9 - - HGNC:1358|MIM:120940|Ensembl:ENSG00000113600|HPRD:00408|Vega:OTTHUMG00000094767 5 5p14-p12 complement component 9 protein-coding C9 complement component 9 O complement component C9 20121230 -9606 738 VPS51 PP5382 ANG2|ANG3|C11orf2|C11orf3|FFR HGNC:1172|Ensembl:ENSG00000149823|HPRD:12605|Vega:OTTHUMG00000165600 11 11q13 vacuolar protein sorting 51 homolog (S. cerevisiae) protein-coding VPS51 vacuolar protein sorting 51 homolog (S. cerevisiae) O another new gene 2 protein|protein fat-free homolog|vacuolar protein sorting-associated protein 51 homolog 20121230 -9606 740 MRPL49 OK/SW-cl.67 C11orf4|L49mt|MRP-L49|NOF|NOF1 HGNC:1176|MIM:606866|Ensembl:ENSG00000149792|HPRD:06037|Vega:OTTHUMG00000165608 11 11q13 mitochondrial ribosomal protein L49 protein-coding MRPL49 mitochondrial ribosomal protein L49 O 39S ribosomal protein L49, mitochondrial|neighbor of FAU|next to FAU 20121230 -9606 741 ZNHIT2 - C11orf5|FON HGNC:1177|MIM:604575|Ensembl:ENSG00000174276|HPRD:05200|Vega:OTTHUMG00000165604 11 11q13 zinc finger, HIT-type containing 2 protein-coding ZNHIT2 zinc finger, HIT-type containing 2 O zinc finger HIT domain-containing protein 2|zinc finger, HIT domain containing 2|zinc finger, HIT type 2 20121230 -9606 744 MPPED2 - 239FB|C11orf8 HGNC:1180|MIM:600911|Ensembl:ENSG00000066382|HPRD:02947|Vega:OTTHUMG00000166159 11 11p13 metallophosphoesterase domain containing 2 protein-coding MPPED2 metallophosphoesterase domain containing 2 O fetal brain protein 239|metallophosphoesterase MPPED2|metallophosphoesterase domain-containing protein 2 20121230 -9606 745 MYRF - C11orf9|MRF|Ndt80|pqn-47 HGNC:1181|MIM:608329|Ensembl:ENSG00000124920|HPRD:12213|Vega:OTTHUMG00000168161 11 11q12-q13.1 myelin regulatory factor protein-coding MYRF myelin regulatory factor O myelin gene regulatory factor 20121230 -9606 746 TMEM258 HSPC005 C11orf10 HGNC:1164|Ensembl:ENSG00000134825|HPRD:12602|Vega:OTTHUMG00000168172 11 11q12.2 transmembrane protein 258 protein-coding TMEM258 transmembrane protein 258 O UPF0197 transmembrane protein C11orf10 20121230 -9606 747 DAGLA - C11orf11|DAGL(ALPHA)|DAGLALPHA|NSDDR HGNC:1165|MIM:614015|Ensembl:ENSG00000134780|HPRD:07092|Vega:OTTHUMG00000168160 11 11q12.2 diacylglycerol lipase, alpha protein-coding DAGLA diacylglycerol lipase, alpha O DGL-alpha|neural stem cell-derived dendrite regulator|sn1-specific diacylglycerol lipase alpha 20121230 -9606 750 C16orf3 - - HGNC:1197|MIM:605179|Ensembl:ENSG00000221819|HPRD:05534|Vega:OTTHUMG00000172804 16 16q24.3 chromosome 16 open reading frame 3 protein-coding C16orf3 chromosome 16 open reading frame 3 O uncharacterized protein C16orf3 20121230 -9606 752 FMNL1 - C17orf1|C17orf1B|FHOD4|FMNL|KW-13 HGNC:1212|MIM:604656|Ensembl:ENSG00000184922|HPRD:06876|Vega:OTTHUMG00000180196 17 17q21 formin-like 1 protein-coding FMNL1 formin-like 1 O CLL-associated antigen KW-13|formin-like protein 1|leukocyte formin 20121230 -9606 753 LDLRAD4 - C18orf1 HGNC:1224|MIM:606571|Ensembl:ENSG00000168675|HPRD:07358|Vega:OTTHUMG00000181925 18 18p11.21 low density lipoprotein receptor class A domain containing 4 protein-coding LDLRAD4 low density lipoprotein receptor class A domain containing 4 O clone 22|uncharacterized protein C18orf1 20121230 -9606 754 PTTG1IP - C21orf1|C21orf3|PBF HGNC:13524|MIM:603784|Ensembl:ENSG00000183255|HPRD:04807|Vega:OTTHUMG00000090254 21 21q22.3 pituitary tumor-transforming 1 interacting protein protein-coding PTTG1IP pituitary tumor-transforming 1 interacting protein O PTTG-binding factor|pituitary tumor-transforming gene 1 protein-interacting protein|pituitary tumor-transforming gene protein-binding factor 20121230 -9606 755 C21orf2 - YF5/A2 HGNC:1260|MIM:603191|Ensembl:ENSG00000160226|Vega:OTTHUMG00000086909 21 21q22.3 chromosome 21 open reading frame 2 protein-coding C21orf2 chromosome 21 open reading frame 2 O nuclear encoded mitochondrial protein C21orf2 20121230 -9606 757 TMEM50B UNQ167/PRO193 C21orf4|HCVP7TP3 HGNC:1280|Ensembl:ENSG00000142188|HPRD:10747|Vega:OTTHUMG00000065286 21 21q22.11 transmembrane protein 50B protein-coding TMEM50B transmembrane protein 50B O HCV p7-trans-regulated protein 3|HCV p7-transregulated protein 3 20121230 -9606 758 MPPED1 RP4-754E20__B.2 239AB|C22orf1|FAM1A HGNC:1306|MIM:602112|Ensembl:ENSG00000186732|HPRD:03663|Vega:OTTHUMG00000150566 22 22q13.31 metallophosphoesterase domain containing 1 protein-coding MPPED1 metallophosphoesterase domain containing 1 O adult brain protein 239|metallophosphoesterase domain-containing protein 1 20121230 -9606 759 CA1 - CA-I|CAB|Car1 HGNC:1368|MIM:114800|Ensembl:ENSG00000133742|HPRD:00265|Vega:OTTHUMG00000164941 8 8q21.2 carbonic anhydrase I protein-coding CA1 carbonic anhydrase I O carbonate dehydratase I|carbonic anhydrase 1|carbonic anhydrase B|carbonic dehydratase 20121230 -9606 760 CA2 - CA-II|CAC|CAII|Car2 HGNC:1373|MIM:611492|Ensembl:ENSG00000104267|HPRD:02023|Vega:OTTHUMG00000164944 8 8q22 carbonic anhydrase II protein-coding CA2 carbonic anhydrase II O carbonate dehydratase II|carbonic anhydrase 2|carbonic anhydrase B|carbonic anhydrase C|carbonic dehydratase 20121230 -9606 761 CA3 - CAIII|Car3 HGNC:1374|MIM:114750|Ensembl:ENSG00000164879|HPRD:00260|Vega:OTTHUMG00000164942 8 8q21.2 carbonic anhydrase III, muscle specific protein-coding CA3 carbonic anhydrase III, muscle specific O CA-III|carbonate dehydratase III|carbonic anhydrase 3 20121230 -9606 762 CA4 - CAIV|Car4|RP17 HGNC:1375|MIM:114760|Ensembl:ENSG00000167434|HPRD:00261|Vega:OTTHUMG00000179987 17 17q23 carbonic anhydrase IV protein-coding CA4 carbonic anhydrase IV O CA-IV|carbonate dehydratase IV|carbonic anhydrase 4|carbonic dehydratase IV 20121230 -9606 763 CA5A - CA5|CAV|CAVA HGNC:1377|MIM:114761|Ensembl:ENSG00000174990|HPRD:00262|Vega:OTTHUMG00000137677 16 16q24.3 carbonic anhydrase VA, mitochondrial protein-coding CA5A carbonic anhydrase VA, mitochondrial O CA-VA|carbonate dehydratase VA|carbonic anhydrase 5A, mitochondrial|carbonic anhydrase V, mitochondrial|carbonic dehydratase 20121230 -9606 764 CA5AP1 - CA5P HGNC:1379 16 16p11.2 carbonic anhydrase VA pseudogene 1 pseudo CA5AP1 carbonic anhydrase VA pseudogene 1 O - 20121230 -9606 765 CA6 RP3-477M7.7 CA-VI|GUSTIN HGNC:1380|MIM:114780|Ensembl:ENSG00000131686|HPRD:00264|Vega:OTTHUMG00000001763 1 1p36.2 carbonic anhydrase VI protein-coding CA6 carbonic anhydrase VI O carbonate dehydratase VI|carbonic anhydrase 6|salivary carbonic anhydrase|secreted carbonic anhydrase 20121230 -9606 766 CA7 - CAVII HGNC:1381|MIM:114770|Ensembl:ENSG00000168748|HPRD:00263|Vega:OTTHUMG00000137524 16 16q22.1 carbonic anhydrase VII protein-coding CA7 carbonic anhydrase VII O CA-VII|carbonate dehydratase VII|carbonic anhydrase 7|carbonic dehydratase VII 20121230 -9606 767 CA8 - CA-VIII|CALS|CAMRQ3|CARP HGNC:1382|MIM:114815|Ensembl:ENSG00000178538|HPRD:00266|Vega:OTTHUMG00000165325 8 8q12.1 carbonic anhydrase VIII protein-coding CA8 carbonic anhydrase VIII O CA-related protein|carbonate dehydratase|carbonic anhydrase-like sequence|carbonic anhydrase-related protein 20121230 -9606 768 CA9 - CAIX|MN HGNC:1383|MIM:603179|Ensembl:ENSG00000107159|HPRD:04417|Vega:OTTHUMG00000021029 9 9p13.3 carbonic anhydrase IX protein-coding CA9 carbonic anhydrase IX O CA-IX|P54/58N|RCC-associated antigen G250|RCC-associated protein G250|carbonate dehydratase IX|carbonic anhydrase 9|carbonic dehydratase|membrane antigen MN|pMW1|renal cell carcinoma-associated antigen G250 20121230 -9606 770 CA11 UNQ211/PRO237 CARPX1 HGNC:1370|MIM:604644|Ensembl:ENSG00000063180|HPRD:05225 19 19q13.3 carbonic anhydrase XI protein-coding CA11 carbonic anhydrase XI O CA-RP II|CA-XI|CARP XI|CARP-2|carbonic anhydrase-related protein 11|carbonic anhydrase-related protein 2|carbonic anhydrase-related protein XI 20121230 -9606 771 CA12 - CAXII|HsT18816 HGNC:1371|MIM:603263|Ensembl:ENSG00000074410|HPRD:04464|Vega:OTTHUMG00000132881 15 15q22 carbonic anhydrase XII protein-coding CA12 carbonic anhydrase XII O CA-XII|carbonate dehydratase XII|carbonic anhydrase 12|carbonic dehydratase|tumor antigen HOM-RCC-3.1.3 20121230 -9606 772 CACD - - HGNC:1387|MIM:215500 17 17p13 central areolar choroidal dystrophy unknown CACD central areolar choroidal dystrophy O - 20120622 -9606 773 CACNA1A - APCA|BI|CACNL1A4|CAV2.1|EA2|FHM|HPCA|MHP|MHP1|SCA6 HGNC:1388|MIM:601011|Ensembl:ENSG00000141837|HPRD:03004|Vega:OTTHUMG00000044590 19 19p13 calcium channel, voltage-dependent, P/Q type, alpha 1A subunit protein-coding CACNA1A calcium channel, voltage-dependent, P/Q type, alpha 1A subunit O brain calcium channel 1|brain calcium channel I|calcium channel, L type, alpha-1 polypeptide|voltage-dependent P/Q-type calcium channel subunit alpha-1A|voltage-gated calcium channel subunit alpha Cav2.1 20121230 -9606 774 CACNA1B - BIII|CACNL1A5|CACNN|Cav2.2 HGNC:1389|MIM:601012|Ensembl:ENSG00000148408|HPRD:03005|Vega:OTTHUMG00000021002 9 9q34 calcium channel, voltage-dependent, N type, alpha 1B subunit protein-coding CACNA1B calcium channel, voltage-dependent, N type, alpha 1B subunit O Cav2.2 voltage-gated Ca2+ channel|brain calcium channel III|calcium channel alpha12.2 subunit|calcium channel, L type, alpha-1 polypeptide|calcium channel, N type|calcium channel, voltage-dependent, L type, alpha 1B subunit|calcium channel, voltage-dependent, alpha 1B subunit, N type|voltage-dependent N-type calcium channel subunit alpha-1B|voltage-gated calcium channel alpha subunit Cav2.2|voltage-gated calcium channel subunit alpha Cav2.2 20121230 -9606 775 CACNA1C - CACH2|CACN2|CACNL1A1|CCHL1A1|CaV1.2|LQT8|TS HGNC:1390|MIM:114205|Ensembl:ENSG00000151067|HPRD:00246|Vega:OTTHUMG00000150243 12 12p13.3 calcium channel, voltage-dependent, L type, alpha 1C subunit protein-coding CACNA1C calcium channel, voltage-dependent, L type, alpha 1C subunit O DHPR, alpha-1 subunit|calcium channel, L type, alpha-1 polypeptide, isoform 1, cardiac muscle|calcium channel, cardic dihydropyridine-sensitive, alpha-1 subunit|voltage-dependent L-type calcium channel subunit alpha-1C|voltage-gated L-type calcium channel Cav1.2 alpha 1 subunit, splice variant 10* 20121230 -9606 776 CACNA1D - CACH3|CACN4|CACNL1A2|CCHL1A2|Cav1.3|SANDD HGNC:1391|MIM:114206|Ensembl:ENSG00000157388|HPRD:00247|Vega:OTTHUMG00000158278 3 3p14.3 calcium channel, voltage-dependent, L type, alpha 1D subunit protein-coding CACNA1D calcium channel, voltage-dependent, L type, alpha 1D subunit O calcium channel, L type, alpha-1 polypeptide|calcium channel, neuroendocrine/brain-type, alpha 1 subunit|voltage-dependent L-type calcium channel subunit alpha-1D|voltage-gated calcium channel alpha 1 subunit|voltage-gated calcium channel alpha subunit Cav1.3 20121230 -9606 777 CACNA1E - BII|CACH6|CACNL1A6|Cav2.3 HGNC:1392|MIM:601013|Ensembl:ENSG00000198216|HPRD:03006|Vega:OTTHUMG00000037301 1 1q25.3 calcium channel, voltage-dependent, R type, alpha 1E subunit protein-coding CACNA1E calcium channel, voltage-dependent, R type, alpha 1E subunit O brain calcium channel II|calcium channel, L type, alpha-1 polypeptide|calcium channel, R type, alpha-1 polypeptide|calcium channel, voltage-dependent, alpha 1E subunit|voltage-dependent R-type calcium channel subunit alpha-1E|voltage-dependent calcium channel alpha 1E subunit|voltage-gated calcium channel alpha 1E subunit|voltage-gated calcium channel alpha subunit Cav2.3|voltage-gated calcium channel subunit alpha Cav2.3 20121230 -9606 778 CACNA1F - AIED|COD3|COD4|CORDX|CORDX3|CSNB2|CSNB2A|CSNBX2|Cav1.4|JM8|JMC8|OA2 HGNC:1393|MIM:300110|Ensembl:ENSG00000102001|HPRD:02119|Vega:OTTHUMG00000022703 X Xp11.23 calcium channel, voltage-dependent, L type, alpha 1F subunit protein-coding CACNA1F calcium channel, voltage-dependent, L type, alpha 1F subunit O Aland island eye disease (Forsius-Eriksson ocular albinism, ocular albinism type 2)|Cav1.4alpha1|voltage gated calcium channel alpha 1F subunit|voltage-dependent L-type calcium channel subunit alpha-1F|voltage-gated calcium channel subunit alpha Cav1.4 20121230 -9606 779 CACNA1S - CACNL1A3|CCHL1A3|Cav1.1|HOKPP|HOKPP1|MHS5|TTPP1|hypoPP HGNC:1397|MIM:114208|Ensembl:ENSG00000081248|HPRD:00248|Vega:OTTHUMG00000035784 1 1q32 calcium channel, voltage-dependent, L type, alpha 1S subunit protein-coding CACNA1S calcium channel, voltage-dependent, L type, alpha 1S subunit O calcium channel, L type, alpha 1 polypeptide, isoform 3 (skeletal muscle, hypokalemic periodic paralysis)|dihydropyridine receptor|dihydropyridine-sensitive L-type calcium channel alpha-1 subunit|voltage-dependent L-type calcium channel subunit alpha-1S|voltage-gated calcium channel subunit alpha Cav1.1 20121230 -9606 780 DDR1 DAAP-278B20.1 CAK|CD167|DDR|EDDR1|HGK2|MCK10|NEP|NTRK4|PTK3|PTK3A|RTK6|TRKE HGNC:2730|MIM:600408|Ensembl:ENSG00000204580|HPRD:02678|Vega:OTTHUMG00000031236 6 6p21.3 discoidin domain receptor tyrosine kinase 1 protein-coding DDR1 discoidin domain receptor tyrosine kinase 1 O CD167 antigen-like family member A|PTK3A protein tyrosine kinase 3A|cell adhesion kinase|epithelial discoidin domain-containing receptor 1|mammary carcinoma kinase 10|neuroepithelial tyrosine kinase|neurotrophic tyrosine kinase, receptor, type 4|protein-tyrosine kinase RTK-6|tyrosine kinase DDR|tyrosine-protein kinase CAK 20121230 -9606 781 CACNA2D1 H_DJ0560O14.1 CACNA2|CACNL2A|CCHL2A HGNC:1399|MIM:114204|Ensembl:ENSG00000153956|HPRD:00245|Vega:OTTHUMG00000023622 7 7q21-q22 calcium channel, voltage-dependent, alpha 2/delta subunit 1 protein-coding CACNA2D1 calcium channel, voltage-dependent, alpha 2/delta subunit 1 O calcium channel, L type, alpha 2 polypeptide|dihydropyridine-sensitive L-type, calcium channel alpha-2/delta subunit|voltage-dependent calcium channel subunit alpha-2/delta-1|voltage-gated calcium channel subunit alpha-2/delta-1 20121230 -9606 782 CACNB1 - CAB1|CACNLB1|CCHLB1 HGNC:1401|MIM:114207|Ensembl:ENSG00000067191|HPRD:11743|Vega:OTTHUMG00000133217 17 17q21-q22 calcium channel, voltage-dependent, beta 1 subunit protein-coding CACNB1 calcium channel, voltage-dependent, beta 1 subunit O calcium channel voltage-dependent subunit beta 1|calcium channel, L type, beta 1 polypeptide|dihydropyridine-sensitive L-type, calcium channel beta-1 subunit|voltage-dependent L-type calcium channel subunit beta-1 20121230 -9606 783 CACNB2 RP11-383B4.2 CACNLB2|CAVB2|MYSB HGNC:1402|MIM:600003|Ensembl:ENSG00000165995|HPRD:02473|Vega:OTTHUMG00000017764 10 10p12 calcium channel, voltage-dependent, beta 2 subunit protein-coding CACNB2 calcium channel, voltage-dependent, beta 2 subunit O CAB2|calcium channel voltage-dependent subunit beta 2|lambert-Eaton myasthenic syndrome antigen B|myasthenic (Lambert-Eaton) syndrome antigen B|voltage-dependent L-type calcium channel subunit beta-2 20121230 -9606 784 CACNB3 - CAB3|CACNLB3 HGNC:1403|MIM:601958|Ensembl:ENSG00000167535|HPRD:11879|Vega:OTTHUMG00000170398 12 12q13 calcium channel, voltage-dependent, beta 3 subunit protein-coding CACNB3 calcium channel, voltage-dependent, beta 3 subunit O voltage-dependent L-type calcium channel subunit beta-3 20121230 -9606 785 CACNB4 - CAB4|CACNLB4|EA5|EIG9|EJM|EJM4|EJM6 HGNC:1404|MIM:601949|Ensembl:ENSG00000182389|HPRD:09057|Vega:OTTHUMG00000155091 2 2q22-q23 calcium channel, voltage-dependent, beta 4 subunit protein-coding CACNB4 calcium channel, voltage-dependent, beta 4 subunit O calcium channel voltage-dependent subunit beta 4|dihydropyridine-sensitive L-type, calcium channel beta-4 subunit|voltage-dependent L-type calcium channel subunit beta-4 20121230 -9606 786 CACNG1 - CACNLG HGNC:1405|MIM:114209|Ensembl:ENSG00000108878|HPRD:00249|Vega:OTTHUMG00000179553 17 17q24 calcium channel, voltage-dependent, gamma subunit 1 protein-coding CACNG1 calcium channel, voltage-dependent, gamma subunit 1 O L-type calcium channel gamma polypeptide|dihydropyridine-sensitive L-type, skeletal muscle calcium channel subunit gamma|neuronal dihydropyridine-sensitive calcium channel gamma subunit|voltage-dependent calcium channel gamma-1 subunit 20121230 -9606 788 SLC25A20 - CAC|CACT HGNC:1421|MIM:613698|Ensembl:ENSG00000178537|HPRD:01953|Vega:OTTHUMG00000133538 3 3p21.31 solute carrier family 25 (carnitine/acylcarnitine translocase), member 20 protein-coding SLC25A20 solute carrier family 25 (carnitine/acylcarnitine translocase), member 20 O mitochondrial carnitine/acylcarnitine carrier protein 20121230 -9606 789 SLC25A20P1 - CACTP|SLC25A20P HGNC:1422 6 6p12 solute carrier family 25 (carnitine/acylcarnitine translocase), member 20 pseudogene 1 pseudo SLC25A20P1 solute carrier family 25 (carnitine/acylcarnitine translocase), member 20 pseudogene 1 O - 20121230 -9606 790 CAD - - HGNC:1424|MIM:114010|Ensembl:ENSG00000084774|HPRD:06437|Vega:OTTHUMG00000097070 2 2p22-p21 carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase protein-coding CAD carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase O CAD protein|CAD trifunctional protein|multifunctional protein CAD 20121230 -9606 793 CALB1 - CALB HGNC:1434|MIM:114050|Ensembl:ENSG00000104327|HPRD:00229|Vega:OTTHUMG00000134314 8 8q21.3 calbindin 1, 28kDa protein-coding CALB1 calbindin 1, 28kDa O D-28K|RTVL-H protein|calbindin|calbindin 1, (28kD)|calbindin D28|vitamin D-dependent calcium-binding protein, avian-type 20121230 -9606 794 CALB2 - CAB29|CAL2|CR HGNC:1435|MIM:114051|Ensembl:ENSG00000172137|HPRD:00230|Vega:OTTHUMG00000137589 16 16q22.2 calbindin 2 protein-coding CALB2 calbindin 2 O 29 kDa calbindin|calbindin 2, (29kD, calretinin)|calbindin D29K|calretinin 20121230 -9606 795 S100G - CABP|CABP1|CABP9K|CALB3 HGNC:1436|MIM:302020|Ensembl:ENSG00000169906|HPRD:02360|Vega:OTTHUMG00000021194 X Xp22.2 S100 calcium binding protein G protein-coding S100G S100 calcium binding protein G O S100 calcium-binding protein G|calbindin 3, (vitamin D-dependent calcium-binding protein)|calbindin D9K|calbindin-D9K|protein S100-G|vitamin D-dependent calcium-binding protein, intestinal 20121230 -9606 796 CALCA - CALC1|CGRP|CGRP-I|CGRP1|CT|KC HGNC:1437|MIM:114130|Ensembl:ENSG00000110680|HPRD:00238|Vega:OTTHUMG00000159731 11 11p15.2 calcitonin-related polypeptide alpha protein-coding CALCA calcitonin-related polypeptide alpha O alpha-type CGRP|calcitonin|calcitonin 1|calcitonin gene-related peptide I|calcitonin/calcitonin-related polypeptide, alpha|katacalcin 20121230 -9606 797 CALCB - CALC2|CGRP-II|CGRP2 HGNC:1438|MIM:114160|Ensembl:ENSG00000175868|HPRD:11742|Vega:OTTHUMG00000164629 11 11p15.2-p15.1 calcitonin-related polypeptide beta protein-coding CALCB calcitonin-related polypeptide beta O beta-CGRP|beta-type CGRP|calcitonin 2|calcitonin gene-related peptide 2|calcitonin gene-related peptide II 20121230 -9606 798 CALCP - CALC3 HGNC:1439 11 11p15.1 calcitonin pseudogene pseudo CALCP calcitonin pseudogene O - 20121230 -9606 799 CALCR - CRT|CT-R|CTR|CTR1 HGNC:1440|MIM:114131|Ensembl:ENSG00000004948|HPRD:00239|Vega:OTTHUMG00000023599 7 7q21.3 calcitonin receptor protein-coding CALCR calcitonin receptor O - 20121230 -9606 800 CALD1 - CDM|H-CAD|HCAD|L-CAD|LCAD|NAG22 HGNC:1441|MIM:114213|Ensembl:ENSG00000122786|HPRD:00251|Vega:OTTHUMG00000155407 7 7q33 caldesmon 1 protein-coding CALD1 caldesmon 1 O caldesmon 20121230 -9606 801 CALM1 - CALML2|CAMI|CPVT4|DD132|PHKD|caM HGNC:1442|MIM:114180|Ensembl:ENSG00000198668|HPRD:00241|Vega:OTTHUMG00000171044 14 14q32.11 calmodulin 1 (phosphorylase kinase, delta) protein-coding CALM1 calmodulin 1 (phosphorylase kinase, delta) O calmodulin|phosphorylase kinase, delta subunit 20121230 -9606 802 CALM1P1 - CALML1 HGNC:1443 X Xq21.33 calmodulin 1 (phosphorylase kinase, delta) pseudogene 1 pseudo CALM1P1 calmodulin 1 (phosphorylase kinase, delta) pseudogene 1 O - 20121230 -9606 804 CALM1P2 - - HGNC:1444 7 7p11.2 calmodulin 1 (phosphorylase kinase, delta) pseudogene 2 pseudo CALM1P2 calmodulin 1 (phosphorylase kinase, delta) pseudogene 2 O - 20121230 -9606 805 CALM2 - CAMII|PHKD|PHKD2 HGNC:1445|MIM:114182|Ensembl:ENSG00000143933|HPRD:00242|Vega:OTTHUMG00000128850 2 2p21 calmodulin 2 (phosphorylase kinase, delta) protein-coding CALM2 calmodulin 2 (phosphorylase kinase, delta) O LP7057 protein|caM|calmodulin|phosphorylase kinase delta 20121230 -9606 806 CALM2P2 - - HGNC:1447 10 10q22.1 calmodulin 2 pseudogene 2 pseudo CALM2P2 calmodulin 2 pseudogene 2 O - 20121230 -9606 807 CALM2P3 - - HGNC:1448 13 13q14.11 calmodulin 2 pseudogene 3 pseudo CALM2P3 calmodulin 2 pseudogene 3 O - 20121230 -9606 808 CALM3 - PHKD|PHKD3 HGNC:1449|MIM:114183|Ensembl:ENSG00000160014|HPRD:00243|Vega:OTTHUMG00000133517 19 19q13.2-q13.3 calmodulin 3 (phosphorylase kinase, delta) protein-coding CALM3 calmodulin 3 (phosphorylase kinase, delta) O caM|calmodulin 20121230 -9606 810 CALML3 - CLP HGNC:1452|MIM:114184|Ensembl:ENSG00000178363|HPRD:00244|Vega:OTTHUMG00000017597 10 10p15.1 calmodulin-like 3 protein-coding CALML3 calmodulin-like 3 O caM-like protein|calmodulin-like protein 3|calmodulin-related protein NB-1 20121230 -9606 811 CALR - CRT|RO|SSA|cC1qR HGNC:1455|MIM:109091|Ensembl:ENSG00000179218|HPRD:00169|Vega:OTTHUMG00000180574 19 19p13.3-p13.2 calreticulin protein-coding CALR calreticulin O CRP55|ERp60|HACBP|Sicca syndrome antigen A (autoantigen Ro; calreticulin)|calregulin|endoplasmic reticulum resident protein 60|grp60 20121230 -9606 813 CALU - - HGNC:1458|MIM:603420|Ensembl:ENSG00000128595|HPRD:04569|Vega:OTTHUMG00000158274 7 7q32.1 calumenin protein-coding CALU calumenin O IEF SSP 9302|crocalbin|crocalbin-like protein|multiple EF-hand protein 20121230 -9606 814 CAMK4 - CaMK IV|CaMK-GR|IV|caMK HGNC:1464|MIM:114080|Ensembl:ENSG00000152495|HPRD:07169|Vega:OTTHUMG00000128792 5 5q21.3 calcium/calmodulin-dependent protein kinase IV protein-coding CAMK4 calcium/calmodulin-dependent protein kinase IV O CAM kinase IV|CAM kinase- GR|brain Ca(2+)-calmodulin-dependent protein kinase type IV|brain Ca++-calmodulin-dependent protein kinase type IV|caM kinase-GR|calcium/calmodulin-dependent protein kinase type IV|calcium/calmodulin-dependent protein kinase type IV catalytic chain 20121230 -9606 815 CAMK2A - CAMKA HGNC:1460|MIM:114078|Ensembl:ENSG00000070808|HPRD:06532|Vega:OTTHUMG00000134281 5 5q32 calcium/calmodulin-dependent protein kinase II alpha protein-coding CAMK2A calcium/calmodulin-dependent protein kinase II alpha O CaM kinase II alpha subunit|CaM-kinase II alpha chain|CaMK-II alpha subunit|CaMKIINalpha|caM kinase II subunit alpha|caMK-II subunit alpha|calcium/calmodulin-dependent protein kinase (CaM kinase) II alpha|calcium/calmodulin-dependent protein kinase II alpha-B subunit|calcium/calmodulin-dependent protein kinase type II alpha chain|calcium/calmodulin-dependent protein kinase type II subunit alpha 20121230 -9606 816 CAMK2B - CAM2|CAMK2|CAMKB HGNC:1461|MIM:607707|Ensembl:ENSG00000058404|HPRD:12127|Vega:OTTHUMG00000023491 7 7p14.3-p14.1 calcium/calmodulin-dependent protein kinase II beta protein-coding CAMK2B calcium/calmodulin-dependent protein kinase II beta O CaM kinase II beta subunit|CaM-kinase II beta chain|caMK-II subunit beta|calcium/calmodulin-dependent protein kinase type II subunit beta|proline rich calmodulin-dependent protein kinase 20121230 -9606 817 CAMK2D - CAMKD HGNC:1462|MIM:607708|Ensembl:ENSG00000145349|HPRD:09653|Vega:OTTHUMG00000132910 4 4q26 calcium/calmodulin-dependent protein kinase II delta protein-coding CAMK2D calcium/calmodulin-dependent protein kinase II delta O CaM kinase II delta subunit|CaM-kinase II delta chain|CaMK-II delta subunit|caM kinase II subunit delta|caMK-II subunit delta|calcium/calmodulin-dependent protein kinase (CaM kinase) II delta|calcium/calmodulin-dependent protein kinase type II delta chain|calcium/calmodulin-dependent protein kinase type II subunit delta 20121230 -9606 818 CAMK2G RP11-574K11.6 CAMK|CAMK-II|CAMKG HGNC:1463|MIM:602123|Ensembl:ENSG00000148660|HPRD:03672|Vega:OTTHUMG00000018492 10 10q22 calcium/calmodulin-dependent protein kinase II gamma protein-coding CAMK2G calcium/calmodulin-dependent protein kinase II gamma O caMK-II subunit gamma|calcium/calmodulin-dependent protein kinase (CaM kinase) II gamma|calcium/calmodulin-dependent protein kinase type II subunit gamma 20121230 -9606 819 CAMLG - CAML HGNC:1471|MIM:601118|Ensembl:ENSG00000164615|HPRD:03073|Vega:OTTHUMG00000129116 5 5q23 calcium modulating ligand protein-coding CAMLG calcium modulating ligand O calcium signal-modulating cyclophilin ligand|calcium-modulating cyclophilin ligand|calcium-signal modulating cyclophilin ligand|cyclophilin B-binding protein 20121230 -9606 820 CAMP HSD26 CAP-18|CAP18|CRAMP|FALL-39|FALL39|LL37 HGNC:1472|MIM:600474|Ensembl:ENSG00000164047|HPRD:02722|Vega:OTTHUMG00000133526 3 3p21.3 cathelicidin antimicrobial peptide protein-coding CAMP cathelicidin antimicrobial peptide O 18 kDa cationic antimicrobial protein 20121230 -9606 821 CANX - CNX|IP90|P90 HGNC:1473|MIM:114217|Ensembl:ENSG00000127022|HPRD:00252|Vega:OTTHUMG00000130910 5 5q35 calnexin protein-coding CANX calnexin O major histocompatibility complex class I antigen-binding protein p88 20121230 -9606 822 CAPG - AFCP|MCP HGNC:1474|MIM:153615|Ensembl:ENSG00000042493|HPRD:01088|Vega:OTTHUMG00000130183 2 2p11.2 capping protein (actin filament), gelsolin-like protein-coding CAPG capping protein (actin filament), gelsolin-like O actin regulatory protein CAP-G|actin-regulatory protein CAP-G|gelsolin-like capping protein|macrophage capping protein|macrophage-capping protein 20121230 -9606 823 CAPN1 PIG30 CANP|CANP1|CANPL1|muCANP|muCL HGNC:1476|MIM:114220|Ensembl:ENSG00000014216|HPRD:00253|Vega:OTTHUMG00000165614 11 11q13 calpain 1, (mu/I) large subunit protein-coding CAPN1 calpain 1, (mu/I) large subunit O CANP 1|calcium-activated neutral proteinase 1|calpain mu-type|calpain, large polypeptide L1|calpain-1 catalytic subunit|calpain-1 large subunit|cell proliferation-inducing gene 30 protein|cell proliferation-inducing protein 30|micromolar-calpain 20121230 -9606 824 CAPN2 - CANP2|CANPL2|CANPml|mCANP HGNC:1479|MIM:114230|Ensembl:ENSG00000162909|HPRD:00254|Vega:OTTHUMG00000037376 1 1q41-q42 calpain 2, (m/II) large subunit protein-coding CAPN2 calpain 2, (m/II) large subunit O CANP 2|M-calpain|calcium-activated neutral proteinase 2|calpain 2, large [catalytic] subunit|calpain 2, large subunit|calpain M-type|calpain large polypeptide L2|calpain, large polypeptide L2|calpain-2 catalytic subunit|calpain-2 large subunit|millimolar-calpain 20121230 -9606 825 CAPN3 - CANP3|CANPL3|LGMD2|LGMD2A|nCL-1|p94 HGNC:1480|MIM:114240|Ensembl:ENSG00000092529|HPRD:00255|Vega:OTTHUMG00000130619 15 15q15.1 calpain 3, (p94) protein-coding CAPN3 calpain 3, (p94) O calcium-activated neutral proteinase 3|calpain L3|calpain p94, large [catalytic] subunit|calpain, large polypeptide L3|calpain-3|muscle-specific calcium-activated neutral protease 3 large subunit|new calpain 1 20121230 -9606 826 CAPNS1 - 30K|CALPAIN4|CANP|CANPS|CAPN4|CDPS|CSS1 HGNC:1481|MIM:114170|Ensembl:ENSG00000126247|HPRD:00240|Vega:OTTHUMG00000160811 19 19q13.12 calpain, small subunit 1 protein-coding CAPNS1 calpain, small subunit 1 O CANP small subunit|calcium-activated neutral proteinase small subunit|calcium-dependent protease small subunit 1|calcium-dependent protease, small subunit|calpain 4, small subunit (30K)|calpain regulatory subunit|calpain small subunit 1|calpain, small polypeptide 20121230 -9606 827 CAPN6 - CANPX|CAPNX|CalpM|DJ914P14.1 HGNC:1483|MIM:300146|Ensembl:ENSG00000077274|HPRD:02145|Vega:OTTHUMG00000022203 X Xq23 calpain 6 protein-coding CAPN6 calpain 6 O calpain-6|calpain-like protease X-linked|calpamodulin 20121230 -9606 828 CAPS - CAPS1 HGNC:1487|MIM:114212|Ensembl:ENSG00000105519|HPRD:00250|Vega:OTTHUMG00000180619 19 19p13.3 calcyphosine protein-coding CAPS calcyphosine O calcyphosin|calcyphosine 1|thyroid protein p24 20121230 -9606 829 CAPZA1 - CAPPA1|CAPZ|CAZ1 HGNC:1488|MIM:601580|Ensembl:ENSG00000116489|HPRD:03347|Vega:OTTHUMG00000011769 1 1p13.2 capping protein (actin filament) muscle Z-line, alpha 1 protein-coding CAPZA1 capping protein (actin filament) muscle Z-line, alpha 1 O Cap Z|F-actin-capping protein subunit alpha-1|capZ alpha-1 20121230 -9606 830 CAPZA2 - CAPPA2|CAPZ HGNC:1490|MIM:601571|Ensembl:ENSG00000198898|HPRD:11871|Vega:OTTHUMG00000023185 7 7q31.2-q31.3 capping protein (actin filament) muscle Z-line, alpha 2 protein-coding CAPZA2 capping protein (actin filament) muscle Z-line, alpha 2 O F-actin capping protein alpha-2 subunit|F-actin-capping protein subunit alpha-2|capZ alpha-2 20121230 -9606 831 CAST - BS-17 HGNC:1515|MIM:114090|Ensembl:ENSG00000153113|HPRD:00233|Vega:OTTHUMG00000128413 5 5q15 calpastatin protein-coding CAST calpastatin O calpain inhibitor|sperm BS-17 component 20121230 -9606 832 CAPZB RP4-657E11.7 CAPB|CAPPB|CAPZ HGNC:1491|MIM:601572|Ensembl:ENSG00000077549|HPRD:11872|Vega:OTTHUMG00000002556 1 1p36.1 capping protein (actin filament) muscle Z-line, beta protein-coding CAPZB capping protein (actin filament) muscle Z-line, beta O F-actin-capping protein subunit beta|capZ beta 20121230 -9606 833 CARS - CARS1|CYSRS|MGC:11246 HGNC:1493|MIM:123859|Ensembl:ENSG00000110619|HPRD:00464|Vega:OTTHUMG00000010927 11 11p15.5 cysteinyl-tRNA synthetase protein-coding CARS cysteinyl-tRNA synthetase O cysteine tRNA ligase 1, cytoplasmic|cysteine translase|cysteine--tRNA ligase, cytoplasmic 20121230 -9606 834 CASP1 - ICE|IL1BC|P45 HGNC:1499|MIM:147678|Ensembl:ENSG00000137752|HPRD:00977|Vega:OTTHUMG00000048072 11 11q23 caspase 1, apoptosis-related cysteine peptidase protein-coding CASP1 caspase 1, apoptosis-related cysteine peptidase O CASP1 nirs variant 1|IL-1 beta-converting enzyme|IL1B-convertase|caspase 1, apoptosis-related cysteine peptidase (interleukin 1, beta, convertase)|caspase-1|interleukin 1, beta, convertase|interleukin 1-B converting enzyme 20121230 -9606 835 CASP2 - CASP-2|ICH1|NEDD-2|NEDD2|PPP1R57 HGNC:1503|MIM:600639|Ensembl:ENSG00000106144|HPRD:02800|Vega:OTTHUMG00000023641 7 7q34-q35 caspase 2, apoptosis-related cysteine peptidase protein-coding CASP2 caspase 2, apoptosis-related cysteine peptidase O caspase-2|neural precursor cell expressed developmentally down-regulated protein 2|protease ICH-1|protein phosphatase 1, regulatory subunit 57 20121230 -9606 836 CASP3 - CPP32|CPP32B|SCA-1 HGNC:1504|MIM:600636|Ensembl:ENSG00000164305|HPRD:02799|Vega:OTTHUMG00000133681 4 4q34 caspase 3, apoptosis-related cysteine peptidase protein-coding CASP3 caspase 3, apoptosis-related cysteine peptidase O CASP-3|CPP-32|PARP cleavage protease|SREBP cleavage activity 1|Yama|apopain|caspase 3, apoptosis-related cysteine protease|caspase-3|cysteine protease CPP32|procaspase3|protein Yama 20121230 -9606 837 CASP4 - ICE(rel)II|ICEREL-II|ICH-2|Mih1/TX|TX HGNC:1505|MIM:602664|Ensembl:ENSG00000196954|HPRD:04047|Vega:OTTHUMG00000166078 11 11q22.2-q22.3 caspase 4, apoptosis-related cysteine peptidase protein-coding CASP4 caspase 4, apoptosis-related cysteine peptidase O CASP-4|ICE(rel)-II|apoptotic cysteine protease Mih1/TX|caspase 4, apoptosis-related cysteine protease|caspase-4|protease ICH-2|protease TX 20121230 -9606 838 CASP5 - ICE(rel)III|ICEREL-III|ICH-3 HGNC:1506|MIM:602665|Ensembl:ENSG00000137757|HPRD:04048|Vega:OTTHUMG00000048073 11 11q22.2-q22.3 caspase 5, apoptosis-related cysteine peptidase protein-coding CASP5 caspase 5, apoptosis-related cysteine peptidase O CASP-5|ICE(rel)-III|TY protease|caspase 5, apoptosis-related cysteine protease|caspase-5|protease ICH-3|protease TY 20121230 -9606 839 CASP6 - MCH2 HGNC:1507|MIM:601532|Ensembl:ENSG00000138794|HPRD:03321|Vega:OTTHUMG00000131914 4 4q25 caspase 6, apoptosis-related cysteine peptidase protein-coding CASP6 caspase 6, apoptosis-related cysteine peptidase O apoptotic protease MCH-2|caspase 6, apoptosis-related cysteine protease|caspase-6 20121230 -9606 840 CASP7 RP11-211N11.6 CASP-7|CMH-1|ICE-LAP3|LICE2|MCH3 HGNC:1508|MIM:601761|Ensembl:ENSG00000165806|HPRD:03457|Vega:OTTHUMG00000019076 10 10q25 caspase 7, apoptosis-related cysteine peptidase protein-coding CASP7 caspase 7, apoptosis-related cysteine peptidase O ICE-like apoptotic protease 3|apoptotic protease MCH-3|caspase 7, apoptosis-related cysteine protease|caspase-7 20121230 -9606 841 CASP8 - ALPS2B|CAP4|Casp-8|FLICE|MACH|MCH5 HGNC:1509|MIM:601763|Ensembl:ENSG00000064012|HPRD:03459|Vega:OTTHUMG00000132821 2 2q33-q34 caspase 8, apoptosis-related cysteine peptidase protein-coding CASP8 caspase 8, apoptosis-related cysteine peptidase O FADD-homologous ICE/CED-3-like protease|FADD-like ICE|ICE-like apoptotic protease 5|MACH-alpha-1/2/3 protein|MACH-beta-1/2/3/4 protein|MORT1-associated ced-3 homolog|apoptotic cysteine protease|apoptotic protease Mch-5|caspase 8, apoptosis-related cysteine protease|caspase-8 20121230 -9606 842 CASP9 RP11-265F14.3 APAF-3|APAF3|CASPASE-9c|ICE-LAP6|MCH6|PPP1R56 HGNC:1511|MIM:602234|Ensembl:ENSG00000132906|HPRD:03756|Vega:OTTHUMG00000002256 1 1p36.21 caspase 9, apoptosis-related cysteine peptidase protein-coding CASP9 caspase 9, apoptosis-related cysteine peptidase O ICE-like apoptotic protease 6|apoptotic protease MCH-6|apoptotic protease activating factor 3|caspase-9|protein phosphatase 1, regulatory subunit 56 20121230 -9606 843 CASP10 - ALPS2|FLICE2|MCH4 HGNC:1500|MIM:601762|Ensembl:ENSG00000003400|HPRD:03458|Vega:OTTHUMG00000132818 2 2q33-q34 caspase 10, apoptosis-related cysteine peptidase protein-coding CASP10 caspase 10, apoptosis-related cysteine peptidase O CASP-10|FADD-like ICE2|FAS-associated death domain protein interleukin-1B-converting enzyme 2|ICE-like apoptotic protease 4|apoptotic protease MCH-4|caspase 10, apoptosis-related cysteine protease|caspase-10|interleukin-1B-converting enzyme 2 20121230 -9606 844 CASQ1 RP11-536C5.6 CASQ|PDIB1 HGNC:1512|MIM:114250|Ensembl:ENSG00000143318|HPRD:15915|Vega:OTTHUMG00000031607 1 1q21 calsequestrin 1 (fast-twitch, skeletal muscle) protein-coding CASQ1 calsequestrin 1 (fast-twitch, skeletal muscle) O calmitin|calmitine|calsequestrin, skeletal muscle isoform|calsequestrin-1 20121230 -9606 845 CASQ2 - PDIB2 HGNC:1513|MIM:114251|Ensembl:ENSG00000118729|HPRD:00256|Vega:OTTHUMG00000011970 1 1p13.1 calsequestrin 2 (cardiac muscle) protein-coding CASQ2 calsequestrin 2 (cardiac muscle) O calsequestrin 2, fast-twitch, cardiac muscle|calsequestrin, cardiac muscle isoform|calsequestrin-2 20121230 -9606 846 CASR - CAR|EIG8|FHH|FIH|GPRC2A|HHC|HHC1|NSHPT|PCAR1 HGNC:1514|MIM:601199|Ensembl:ENSG00000036828|HPRD:03122|Vega:OTTHUMG00000159491 3 3q13 calcium-sensing receptor protein-coding CASR calcium-sensing receptor O extracellular calcium-sensing receptor|parathyroid Ca(2+)-sensing receptor 1|parathyroid cell calcium-sensing receptor 20121230 -9606 847 CAT - - HGNC:1516|MIM:115500|Ensembl:ENSG00000121691|HPRD:00282|Vega:OTTHUMG00000044353 11 11p13 catalase protein-coding CAT catalase O - 20121230 -9606 856 CATR1 - - HGNC:1525|MIM:600676 7 7q32 CATR tumorigenicity conversion 1 unknown CATR1 CATR tumorigenicity conversion 1 O - 20090731 -9606 857 CAV1 - BSCL3|CGL3|MSTP085|VIP21 HGNC:1527|MIM:601047|Ensembl:ENSG00000105974|HPRD:03028|Vega:OTTHUMG00000023413 7 7q31.1 caveolin 1, caveolae protein, 22kDa protein-coding CAV1 caveolin 1, caveolae protein, 22kDa O caveolin-1|cell growth-inhibiting protein 32 20121230 -9606 858 CAV2 - CAV HGNC:1528|MIM:601048|Ensembl:ENSG00000105971|HPRD:03029|Vega:OTTHUMG00000023414 7 7q31.1 caveolin 2 protein-coding CAV2 caveolin 2 O caveolae protein, 20-kD|caveolin 2 isoform a and b|caveolin-2 20121230 -9606 859 CAV3 - LGMD1C|LQT9|VIP-21|VIP21 HGNC:1529|MIM:601253|Ensembl:ENSG00000182533|HPRD:03154|Vega:OTTHUMG00000090519 3 3p25 caveolin 3 protein-coding CAV3 caveolin 3 O M-caveolin|caveolin-3 20121230 -9606 860 RUNX2 RP1-166H4.1 AML3|CBFA1|CCD|CCD1|OSF-2|OSF2|PEA2aA|PEBP2A1|PEBP2A2|PEBP2aA|PEBP2aA1 HGNC:10472|MIM:600211|Ensembl:ENSG00000124813|HPRD:02566|Vega:OTTHUMG00000014774 6 6p21 runt-related transcription factor 2 protein-coding RUNX2 runt-related transcription factor 2 O CBF-alpha-1|PEA2-alpha A|PEBP2-alpha A|SL3-3 enhancer factor 1 alpha A subunit|SL3/AKV core-binding factor alpha A subunit|acute myeloid leukemia 3 protein|core-binding factor, runt domain, alpha subunit 1|oncogene AML-3|osteoblast-specific transcription factor 2|polyomavirus enhancer-binding protein 2 alpha A subunit 20121230 -9606 861 RUNX1 - AML1|AML1-EVI-1|AMLCR1|CBFA2|EVI-1|PEBP2aB HGNC:10471|MIM:151385|Ensembl:ENSG00000159216|HPRD:01043|Vega:OTTHUMG00000086299 21 21q22.3 runt-related transcription factor 1 protein-coding RUNX1 runt-related transcription factor 1 O AML1-EVI-1 fusion protein|CBF-alpha-2|PEA2-alpha B|PEBP2-alpha B|SL3-3 enhancer factor 1 alpha B subunit|SL3/AKV core-binding factor alpha B subunit|acute myeloid leukemia 1 protein|core-binding factor, runt domain, alpha subunit 2|oncogene AML-1|polyomavirus enhancer-binding protein 2 alpha B subunit 20121230 -9606 862 RUNX1T1 - AML1T1|CBFA2T1|CDR|ETO|MTG8|ZMYND2 HGNC:1535|MIM:133435|Ensembl:ENSG00000079102|HPRD:00590|Vega:OTTHUMG00000164066 8 8q22 runt-related transcription factor 1; translocated to, 1 (cyclin D-related) protein-coding RUNX1T1 runt-related transcription factor 1; translocated to, 1 (cyclin D-related) O acute myelogenous leukemia 1 translocation 1, cyclin-D related|core-binding factor, runt domain, alpha subunit 2; translocated to, 1; cyclin D-related|eight twenty one protein|myeloid translocation gene on 8q22|protein CBFA2T1|zinc finger MYND domain-containing protein 2 20121230 -9606 863 CBFA2T3 - ETO2|MTG16|MTGR2|ZMYND4 HGNC:1537|MIM:603870|Ensembl:ENSG00000129993|HPRD:04847|Vega:OTTHUMG00000137864 16 16q24 core-binding factor, runt domain, alpha subunit 2; translocated to, 3 protein-coding CBFA2T3 core-binding factor, runt domain, alpha subunit 2; translocated to, 3 O MTG8-related gene 2|MTG8-related protein 2|myeloid translocation gene 8 and 16b|myeloid translocation gene on chromosome 16 protein|protein CBFA2T3|zinc finger MYND domain-containing protein 4 20121230 -9606 864 RUNX3 RP3-398I9.1 AML2|CBFA3|PEBP2aC HGNC:10473|MIM:600210|Ensembl:ENSG00000020633|HPRD:02565|Vega:OTTHUMG00000003316 1 1p36 runt-related transcription factor 3 protein-coding RUNX3 runt-related transcription factor 3 O CBF-alpha-3|PEA2 alpha C|PEA2-alpha C|PEBP2 alpha C|PEBP2-alpha C|SL3-3 enhancer factor 1 alpha C subunit|SL3/AKV core-binding factor alpha C subunit|acute myeloid leukemia 2 protein|acute myeloid leukemia gene 2|core-binding factor subunit alpha-3|core-binding factor, runt domain, alpha subunit 3|oncogene AML-2|polyomavirus enhancer-binding protein 2 alpha C subunit|transcription factor AML2 20121230 -9606 865 CBFB - PEBP2B HGNC:1539|MIM:121360|Ensembl:ENSG00000067955|HPRD:00418|Vega:OTTHUMG00000137520 16 16q22.1 core-binding factor, beta subunit protein-coding CBFB core-binding factor, beta subunit O CBF-beta|PEA2-beta|PEBP2-beta|SL3-3 enhancer factor 1 beta subunit|SL3-3 enhancer factor 1 subunit beta|SL3/AKV core-binding factor beta subunit|core-binding factor subunit beta|polyomavirus enhancer binding protein 2, beta subunit|polyomavirus enhancer-binding protein 2 beta subunit 20121230 -9606 866 SERPINA6 - CBG HGNC:1540|MIM:122500|Ensembl:ENSG00000170099|HPRD:00419|Vega:OTTHUMG00000171346 14 14q32.1 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 6 protein-coding SERPINA6 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 6 O corticosteroid binding globulin|corticosteroid-binding globulin|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 6|serpin A6|transcortin 20121230 -9606 867 CBL - C-CBL|CBL2|FRA11B|NSLL|RNF55 HGNC:1541|MIM:165360|Ensembl:ENSG00000110395|HPRD:01320|Vega:OTTHUMG00000166170 11 11q23.3 Cbl proto-oncogene, E3 ubiquitin protein ligase protein-coding CBL Cbl proto-oncogene, E3 ubiquitin protein ligase O Cas-Br-M (murine) ecotropic retroviral transforming sequence|E3 ubiquitin-protein ligase CBL|RING finger protein 55|casitas B-lineage lymphoma proto-oncogene|fragile site, folic acid type, rare, fra(11)(q23.3)|oncogene CBL2|proto-oncogene c-Cbl|signal transduction protein CBL 20121230 -9606 868 CBLB Nbla00127 Cbl-b|RNF56 HGNC:1542|MIM:604491|Ensembl:ENSG00000114423|HPRD:05136|Vega:OTTHUMG00000150654 3 3q13.11 Cbl proto-oncogene, E3 ubiquitin protein ligase B protein-coding CBLB Cbl proto-oncogene, E3 ubiquitin protein ligase B O Cas-Br-M (murine) ecotropic retroviral transforming sequence b|Cas-Br-M (murine) ectropic retroviral transforming sequence b|E3 ubiquitin-protein ligase CBL-B|RING finger protein 56|SH3-binding protein CBL-B|casitas B-lineage lymphoma proto-oncogene b|signal transduction protein CBL-B 20121230 -9606 869 CBLN1 - - HGNC:1543|MIM:600432|Ensembl:ENSG00000102924|HPRD:02697|Vega:OTTHUMG00000133148 16 16q12.1 cerebellin 1 precursor protein-coding CBLN1 cerebellin 1 precursor O cerebellin-1|precerebellin 20121230 -9606 871 SERPINH1 PIG14 AsTP3|CBP1|CBP2|HSP47|OI10|PPROM|RA-A47|SERPINH2|gp46 HGNC:1546|MIM:600943|Ensembl:ENSG00000149257|HPRD:02968|Vega:OTTHUMG00000165362 11 11q13.5 serpin peptidase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1) protein-coding SERPINH1 serpin peptidase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1) O 47 kDa heat shock protein|arsenic-transactivated protein 3|cell proliferation-inducing gene 14 protein|colligin-1|colligin-2|rheumatoid arthritis antigen A-47|rheumatoid arthritis-related antigen RA-A47|serine (or cysteine) proteinase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1)|serine (or cysteine) proteinase inhibitor, clade H (heat shock protein 47), member 2, (collagen-binding protein 2)|serpin H1 20121230 -9606 873 CBR1 - CBR|SDR21C1|hCBR1 HGNC:1548|MIM:114830|Ensembl:ENSG00000159228|HPRD:00267|Vega:OTTHUMG00000086618 21 21q22.13 carbonyl reductase 1 protein-coding CBR1 carbonyl reductase 1 O 15-hydroxyprostaglandin dehydrogenase|NADPH-dependent carbonyl reductase 1|carbonyl reductase (NADPH) 1|carbonyl reductase [NADPH] 1|prostaglandin 9-ketoreductase|prostaglandin-E(2) 9-reductase|short chain dehydrogenase/reductase family 21C, member 1 20121230 -9606 874 CBR3 - SDR21C2|hCBR3 HGNC:1549|MIM:603608|Ensembl:ENSG00000159231|HPRD:07222|Vega:OTTHUMG00000086617 21 21q22.2 carbonyl reductase 3 protein-coding CBR3 carbonyl reductase 3 O NADPH-dependent carbonyl reductase 3|carbonyl reductase (NADPH) 3|carbonyl reductase [NADPH] 3|short chain dehydrogenase/reductase family 21C, member 2 20121230 -9606 875 CBS - HIP4 HGNC:1550|MIM:613381|Ensembl:ENSG00000160200|HPRD:01994|Vega:OTTHUMG00000086834 21 21q22.3 cystathionine-beta-synthase protein-coding CBS cystathionine-beta-synthase O beta-thionase|cystathionine beta-synthase|methylcysteine synthase|serine sulfhydrase 20121230 -9606 878 CCA1 - - HGNC:1559|MIM:115660 17 17q24 cataract, congenital, cerulean type, 1 unknown CCA1 cataract, congenital, cerulean type, 1 O - 20120622 -9606 881 CCIN RP11-421H8.4 - HGNC:1568|MIM:603960|Ensembl:ENSG00000185972|HPRD:04907|Vega:OTTHUMG00000019901 9 9p13.3 calicin protein-coding CCIN calicin O - 20121230 -9606 882 CCAL1 - CPDD HGNC:1561|MIM:600668 8 8q chondrocalcinosis 1 (calcium pyrophosphate-deposition disease, early onset osteoarthritis) unknown CCAL1 chondrocalcinosis 1 (calcium pyrophosphate-deposition disease, early onset osteoarthritis) O - 20120622 -9606 883 CCBL1 RP11-545E17.6 GTK|KAT1|KATI HGNC:1564|MIM:600547|Ensembl:ENSG00000171097|HPRD:02769|Vega:OTTHUMG00000020767 9 9q34.11 cysteine conjugate-beta lyase, cytoplasmic protein-coding CCBL1 cysteine conjugate-beta lyase, cytoplasmic O beta-lysase, kidney|cysteine conjugate-beta lyase; cytoplasmic (glutamine transaminase K, kyneurenine aminotransferase)|cysteine-S-conjugate beta-lyase|glutamine transaminase K|glutamine--phenylpyruvate transaminase|glutamine-phenylpyruvate aminotransferase|kyneurenine aminotransferase|kynurenine aminotransferase I|kynurenine--oxoglutarate transaminase 1|kynurenine--oxoglutarate transaminase I 20121230 -9606 885 CCK - - HGNC:1569|MIM:118440|Ensembl:ENSG00000187094|HPRD:00321|Vega:OTTHUMG00000131796 3 3p22.1 cholecystokinin protein-coding CCK cholecystokinin O - 20121230 -9606 886 CCKAR - CCK-A|CCK1-R|CCKRA HGNC:1570|MIM:118444|Ensembl:ENSG00000163394|HPRD:00322|Vega:OTTHUMG00000128567 4 4p15.1-p15.2 cholecystokinin A receptor protein-coding CCKAR cholecystokinin A receptor O CCK-A receptor|CCK-AR|cholecystokinin receptor type A|cholecystokinin type-A receptor|cholecystokinin-1 receptor 20121230 -9606 887 CCKBR - CCK-B|CCK2R|GASR HGNC:1571|MIM:118445|Ensembl:ENSG00000110148|HPRD:00323|Vega:OTTHUMG00000133380 11 11p15.4 cholecystokinin B receptor protein-coding CCKBR cholecystokinin B receptor O CCK-B receptor|CCK-BR|CCK2 receptor|CCK2-R|cholecystokinin-2 receptor|gastrin receptor|gastrin/cholecystokinin type B receptor 20121230 -9606 889 KRIT1 - CAM|CCM1 HGNC:1573|MIM:604214|Ensembl:ENSG00000001631|HPRD:05020|Vega:OTTHUMG00000131187 7 7q21.2 KRIT1, ankyrin repeat containing protein-coding KRIT1 KRIT1, ankyrin repeat containing O ankyrin repeat-containing protein Krit1|cerebral cavernous malformations 1 protein|krev interaction trapped 1|krev interaction trapped protein 1 20121230 -9606 890 CCNA2 - CCN1|CCNA HGNC:1578|MIM:123835|Ensembl:ENSG00000145386|HPRD:00453|Vega:OTTHUMG00000133072 4 4q27 cyclin A2 protein-coding CCNA2 cyclin A2 O cyclin-A|cyclin-A2 20121230 -9606 891 CCNB1 - CCNB HGNC:1579|MIM:123836|Ensembl:ENSG00000134057|HPRD:00454|Vega:OTTHUMG00000097817 5 5q12 cyclin B1 protein-coding CCNB1 cyclin B1 O G2/mitotic-specific cyclin B1|G2/mitotic-specific cyclin-B1 20121230 -9606 892 CCNC RP1-199J3.1 CycC HGNC:1581|MIM:123838|Ensembl:ENSG00000112237|HPRD:00456|Vega:OTTHUMG00000015268 6 6q21 cyclin C protein-coding CCNC cyclin C O SRB11 homolog|cyclin-C|hSRB11 20121230 -9606 894 CCND2 - KIAK0002 HGNC:1583|MIM:123833|Ensembl:ENSG00000118971|HPRD:00451|Vega:OTTHUMG00000168123 12 12p13 cyclin D2 protein-coding CCND2 cyclin D2 O G1/S-specific cyclin D2|G1/S-specific cyclin-D2 20121230 -9606 895 CCND2P - - HGNC:1584 11 11q13 cyclin D2 pseudogene pseudo CCND2P cyclin D2 pseudogene O - 20121230 -9606 896 CCND3 RP5-973N23.3 - HGNC:1585|MIM:123834|Ensembl:ENSG00000112576|HPRD:00452|Vega:OTTHUMG00000014690 6 6p21 cyclin D3 protein-coding CCND3 cyclin D3 O D3-type cyclin|G1/S-specific cyclin D3|G1/S-specific cyclin-D3 20121230 -9606 897 CCND3P - - HGNC:1586 10 10p11.23 cyclin D3 pseudogene pseudo CCND3P cyclin D3 pseudogene O - 20121230 -9606 898 CCNE1 - CCNE HGNC:1589|MIM:123837|Ensembl:ENSG00000105173|HPRD:00455|Vega:OTTHUMG00000177626 19 19q12 cyclin E1 protein-coding CCNE1 cyclin E1 O G1/S-specific cyclin-E1|cyclin Es|cyclin Et 20121230 -9606 899 CCNF - FBX1|FBXO1 HGNC:1591|MIM:600227|Ensembl:ENSG00000162063|HPRD:02574|Vega:OTTHUMG00000128858 16 16p13.3 cyclin F protein-coding CCNF cyclin F O F-box only protein 1|G2/mitotic-specific cyclin-F|cyclin-F 20121230 -9606 900 CCNG1 - CCNG HGNC:1592|MIM:601578|Ensembl:ENSG00000113328|HPRD:03345|Vega:OTTHUMG00000130380 5 5q32-q34 cyclin G1 protein-coding CCNG1 cyclin G1 O cyclin-G|cyclin-G1 20121230 -9606 901 CCNG2 - - HGNC:1593|MIM:603203|Ensembl:ENSG00000138764|HPRD:04438|Vega:OTTHUMG00000130100 4 4q21.1 cyclin G2 protein-coding CCNG2 cyclin G2 O cyclin-G2 20121230 -9606 902 CCNH - CAK|p34|p37 HGNC:1594|MIM:601953|Ensembl:ENSG00000134480|HPRD:09059|Vega:OTTHUMG00000119077 5 5q13.3-q14 cyclin H protein-coding CCNH cyclin H O CAK complex subunit|CDK-activating kinase complex subunit|MO15-associated protein|cyclin-H|cyclin-dependent kinase-activating kinase complex subunit 20121230 -9606 904 CCNT1 - CCNT|CYCT1|HIVE1 HGNC:1599|MIM:143055|Ensembl:ENSG00000129315|HPRD:03938|Vega:OTTHUMG00000170393 12 12q13.11 cyclin T1 protein-coding CCNT1 cyclin T1 O CDK9-associated C-type protein|Human immunodeficiency virus-1 expression|cyclin C-related protein|cyclin T1b|cyclin-T|cyclin-T1|human immunodeficiency virus type 1 (HIV-1) expression (elevated) 1|subunit of positive elongation transcription factor b 20121230 -9606 905 CCNT2 - CYCT2 HGNC:1600|MIM:603862|Ensembl:ENSG00000082258|HPRD:04839|Vega:OTTHUMG00000131712 2 2q21.3 cyclin T2 protein-coding CCNT2 cyclin T2 O SDS-stable vimentin-bound DNA fragment HEF42VIM22|cyclin T2a|cyclin T2b|cyclin-T2|subunit of positive elongation transcription factor b 20121230 -9606 907 CCT - - HGNC:1614|MIM:302200 X - cataract, congenital, total unknown CCT cataract, congenital, total O - 20120620 -9606 908 CCT6A - CCT-zeta|CCT-zeta-1|CCT6|Cctz|HTR3|MoDP-2|TCP-1-zeta|TCP20|TCPZ|TTCP20 HGNC:1620|MIM:104613|Ensembl:ENSG00000146731|HPRD:00089|Vega:OTTHUMG00000022842 7 7p11.2 chaperonin containing TCP1, subunit 6A (zeta 1) protein-coding CCT6A chaperonin containing TCP1, subunit 6A (zeta 1) O T-complex protein 1 subunit zeta|T-complex protein 1, zeta subunit|acute morphine dependence related protein 2|acute morphine dependence-related protein 2|amino acid transport defect-complementing|chaperonin containing T-complex subunit 6|histidine transport regulator 3 20121230 -9606 909 CD1A - CD1|FCB6|HTA1|R4|T6 HGNC:1634|MIM:188370|Ensembl:ENSG00000158477|HPRD:01776|Vega:OTTHUMG00000017512 1 1q22-q23 CD1a molecule protein-coding CD1A CD1a molecule O CD1A antigen, a polypeptide|T-cell surface antigen T6/Leu-6|T-cell surface glycoprotein CD1a|cluster of differentiation 1 A|cortical thymocyte antigen CD1A|differentiation antigen CD1-alpha-3|epidermal dendritic cell marker CD1a|hTa1 thymocyte antigen 20121230 -9606 910 CD1B RP11-101J8.4 CD1|CD1A|R1 HGNC:1635|MIM:188360|Ensembl:ENSG00000158485|HPRD:01775|Vega:OTTHUMG00000017513 1 1q22-q23 CD1b molecule protein-coding CD1B CD1b molecule O CD1B antigen, b polypeptide|T-cell surface glycoprotein CD1b|cortical thymocyte antigen CD1B|differentiation antigen CD1-alpha-3 20121230 -9606 911 CD1C RP11-101J8.3 BDCA1|CD1|CD1A|R7 HGNC:1636|MIM:188340|Ensembl:ENSG00000158481|HPRD:01772|Vega:OTTHUMG00000017514 1 1q22-q23 CD1c molecule protein-coding CD1C CD1c molecule O CD1C antigen, c polypeptide|T-cell surface glycoprotein CD1c|cortical thymocyte antigen CD1C|differentiation antigen CD1-alpha-3 20121230 -9606 912 CD1D - CD1A|R3 HGNC:1637|MIM:188410|Ensembl:ENSG00000158473|HPRD:01780|Vega:OTTHUMG00000022436 1 1q22-q23 CD1d molecule protein-coding CD1D CD1d molecule O CD1D antigen, d polypeptide|HMC class I antigen-like glycoprotein CD1D|R3G1|T-cell surface glycoprotein CD1d|antigen-presenting glycoprotein CD1d|differentiation antigen CD1-alpha-3|thymocyte antigen CD1D 20121230 -9606 913 CD1E RP11-101J8.5 CD1A|R2 HGNC:1638|MIM:188411|Ensembl:ENSG00000158488|HPRD:01781|Vega:OTTHUMG00000017515 1 1q22-q23 CD1e molecule protein-coding CD1E CD1e molecule O CD1E antigen, e polypeptide|R2G1|T-cell surface glycoprotein CD1e, membrane-associated|differentiation antigen CD1-alpha-3|hCD1e|leukocyte differentiation antigen|thymocyte antigen CD1E 20121230 -9606 914 CD2 RP4-655N15.2 LFA-2|SRBC|T11 HGNC:1639|MIM:186990|Ensembl:ENSG00000116824|HPRD:01750|Vega:OTTHUMG00000022750 1 1p13.1 CD2 molecule protein-coding CD2 CD2 molecule O CD2 antigen (p50), sheep red blood cell receptor|LFA-3 receptor|T-cell surface antigen CD2|T-cell surface antigen T11/Leu-5|erythrocyte receptor|lymphocyte-function antigen-2|rosette receptor 20121230 -9606 915 CD3D - CD3-DELTA|T3D HGNC:1673|MIM:186790|Ensembl:ENSG00000167286|HPRD:01730|Vega:OTTHUMG00000166970 11 11q23 CD3d molecule, delta (CD3-TCR complex) protein-coding CD3D CD3d molecule, delta (CD3-TCR complex) O CD3 antigen, delta subunit|CD3 delta|CD3d antigen, delta polypeptide (TiT3 complex)|OKT3, delta chain|T-cell receptor T3 delta chain|T-cell surface glycoprotein CD3 delta chain 20121230 -9606 916 CD3E - T3E|TCRE HGNC:1674|MIM:186830|Ensembl:ENSG00000198851|HPRD:08923|Vega:OTTHUMG00000166968 11 11q23 CD3e molecule, epsilon (CD3-TCR complex) protein-coding CD3E CD3e molecule, epsilon (CD3-TCR complex) O CD3-epsilon|CD3e antigen, epsilon polypeptide (TiT3 complex)|T-cell antigen receptor complex, epsilon subunit of T3|T-cell surface antigen T3/Leu-4 epsilon chain|T-cell surface glycoprotein CD3 epsilon chain 20121230 -9606 917 CD3G - CD3-GAMMA|T3G HGNC:1675|MIM:186740|Ensembl:ENSG00000160654|HPRD:07037|Vega:OTTHUMG00000166971 11 11q23 CD3g molecule, gamma (CD3-TCR complex) protein-coding CD3G CD3g molecule, gamma (CD3-TCR complex) O CD3g antigen, gamma polypeptide (TiT3 complex)|CD3g molecule, epsilon (CD3-TCR complex)|T-cell antigen receptor complex, gamma subunit of T3|T-cell receptor T3 gamma chain|T-cell surface glycoprotein CD3 gamma chain 20121230 -9606 919 CD247 RP11-104L21.1 CD3-ZETA|CD3H|CD3Q|CD3Z|T3Z|TCRZ HGNC:1677|MIM:186780|Ensembl:ENSG00000198821|HPRD:01729|Vega:OTTHUMG00000034593 1 1q24.2 CD247 molecule protein-coding CD247 CD247 molecule O CD247 antigen, zeta subunit|CD3Z antigen, zeta polypeptide (TiT3 complex)|CD3zeta chain|T-cell antigen receptor complex, zeta subunit of CD3|T-cell receptor T3 zeta chain|T-cell surface glycoprotein CD3 zeta chain|TCR zeta chain 20121230 -9606 920 CD4 - CD4mut HGNC:1678|MIM:186940|Ensembl:ENSG00000010610|HPRD:01740|Vega:OTTHUMG00000168514 12 12p13.31 CD4 molecule protein-coding CD4 CD4 molecule O CD4 antigen (p55)|CD4 receptor|T-cell surface antigen T4/Leu-3|T-cell surface glycoprotein CD4 20121230 -9606 921 CD5 - LEU1|T1 HGNC:1685|MIM:153340|Ensembl:ENSG00000110448|HPRD:01078|Vega:OTTHUMG00000167825 11 11q13 CD5 molecule protein-coding CD5 CD5 molecule O CD5 antigen (p56-62)|T-cell surface glycoprotein CD5|lymphocyte antigen T1/Leu-1 20121230 -9606 922 CD5L UNQ203/PRO229 AIM|API6|PRO229|SP-ALPHA|Spalpha HGNC:1690|MIM:602592|Ensembl:ENSG00000073754|HPRD:03997|Vega:OTTHUMG00000022440 1 1q21-q23 CD5 molecule-like protein-coding CD5L CD5 molecule-like O CD5 antigen-like|CD5 antigen-like (scavenger receptor cysteine rich family)|CT-2|apoptosis inhibitor 6|igM-associated peptide 20121230 -9606 923 CD6 - TP120 HGNC:1691|MIM:186720|Ensembl:ENSG00000013725|HPRD:01724|Vega:OTTHUMG00000167823 11 11q13 CD6 molecule protein-coding CD6 CD6 molecule O CD6 antigen|T-cell differentiation antigen CD6|T12 20121230 -9606 924 CD7 - GP40|LEU-9|TP41|Tp40 HGNC:1695|MIM:186820|Ensembl:ENSG00000173762|HPRD:01732|Vega:OTTHUMG00000178662 17 17q25.2-q25.3 CD7 molecule protein-coding CD7 CD7 molecule O CD7 antigen (p41)|T-cell antigen CD7|T-cell leukemia antigen|T-cell surface antigen Leu-9|p41 protein 20121230 -9606 925 CD8A - CD8|Leu2|MAL|p32 HGNC:1706|MIM:186910|Ensembl:ENSG00000153563|HPRD:01737|Vega:OTTHUMG00000130265 2 2p12 CD8a molecule protein-coding CD8A CD8a molecule O CD8 antigen, alpha polypeptide (p32)|Leu2 T-lymphocyte antigen|OKT8 T-cell antigen|T cell co-receptor|T-cell antigen Leu2|T-cell surface glycoprotein CD8 alpha chain|T-lymphocyte differentiation antigen T8/Leu-2|T8 T-cell antigen 20121230 -9606 926 CD8B - CD8B1|LEU2|LY3|LYT3|P37 HGNC:1707|MIM:186730|Ensembl:ENSG00000172116|HPRD:01725|Vega:OTTHUMG00000130264 2 2p12 CD8b molecule protein-coding CD8B CD8b molecule O CD8 antigen, beta polypeptide 1 (p37)|T lymphocyte surface glycoprotein beta chain|T-cell surface glycoprotein CD8 beta chain 20121230 -9606 927 CD8BP - CD8B2 HGNC:1708 2 2q12.1 CD8b molecule pseudogene pseudo CD8BP CD8b molecule pseudogene O - 20121230 -9606 928 CD9 GIG2 BTCC-1|DRAP-27|MIC3|MRP-1|TSPAN-29|TSPAN29 HGNC:1709|MIM:143030|Ensembl:ENSG00000010278|HPRD:00880|Vega:OTTHUMG00000044400 12 12p13.3 CD9 molecule protein-coding CD9 CD9 molecule O 5H9 antigen|BA-2/p24 antigen|CD9 antigen|CD9 antigen (p24)|cell growth-inhibiting gene 2 protein|leukocyte antigen MIC3|motility related protein-1|tetraspanin-29 20121230 -9606 929 CD14 - - HGNC:1628|MIM:158120|Ensembl:ENSG00000170458|HPRD:01151|Vega:OTTHUMG00000129507 5 5q31.1 CD14 molecule protein-coding CD14 CD14 molecule O monocyte differentiation antigen CD14|myeloid cell-specific leucine-rich glycoprotein 20121230 -9606 930 CD19 - B4|CVID3 HGNC:1633|MIM:107265|Ensembl:ENSG00000177455|HPRD:00113|Vega:OTTHUMG00000097049 16 16p11.2 CD19 molecule protein-coding CD19 CD19 molecule O B-lymphocyte antigen CD19|B-lymphocyte surface antigen B4|T-cell surface antigen Leu-12|differentiation antigen CD19 20121230 -9606 931 MS4A1 - B1|Bp35|CD20|CVID5|LEU-16|MS4A2|S7 HGNC:7315|MIM:112210|Ensembl:ENSG00000156738|HPRD:00204|Vega:OTTHUMG00000167614 11 11q12 membrane-spanning 4-domains, subfamily A, member 1 protein-coding MS4A1 membrane-spanning 4-domains, subfamily A, member 1 O B-lymphocyte antigen CD20|B-lymphocyte cell-surface antigen B1|CD20 antigen|CD20 receptor|leukocyte surface antigen Leu-16 20121230 -9606 932 MS4A3 - CD20L|HTM4 HGNC:7317|MIM:606498|Ensembl:ENSG00000149516|HPRD:09403|Vega:OTTHUMG00000167380 11 11q12.1 membrane-spanning 4-domains, subfamily A, member 3 (hematopoietic cell-specific) protein-coding MS4A3 membrane-spanning 4-domains, subfamily A, member 3 (hematopoietic cell-specific) O CD20 antigen homolog|CD20 antigen-like protein|IgE receptor beta chain|IgE receptor beta subunit|hematopoietic cell 4 transmembrane protein|hematopoietic-specific transmembrane protein 4|membrane-spanning 4-domains subfamily A member 3 20121230 -9606 933 CD22 - SIGLEC-2|SIGLEC2 HGNC:1643|MIM:107266|Ensembl:ENSG00000012124|HPRD:00114 19 19q13.1 CD22 molecule protein-coding CD22 CD22 molecule O B-cell receptor CD22|B-lymphocyte cell adhesion molecule|BL-CAM|CD22 antigen|T-cell surface antigen Leu-14|sialic acid binding Ig-like lectin 2|sialic acid-binding Ig-like lectin 2 20121230 -9606 935 CD24P1 - CD24L1 HGNC:1646 1 1p36 CD24 molecule pseudogene 1 pseudo CD24P1 CD24 molecule pseudogene 1 O - 20121230 -9606 936 CD24P2 - CD24L2 HGNC:1647 15 15q21.3 CD24 molecule pseudogene 2 pseudo CD24P2 CD24 molecule pseudogene 2 O - 20121230 -9606 937 CD24P3 - CD24L3 HGNC:1648 20 20q11.21 CD24 molecule pseudogene 3 pseudo CD24P3 CD24 molecule pseudogene 3 O - 20121230 -9606 938 CD24P4 - CD24L4 HGNC:1649 Y Yq11.222 CD24 molecule pseudogene 4 pseudo CD24P4 CD24 molecule pseudogene 4 O - 20121230 -9606 939 CD27 - S152|T14|TNFRSF7|Tp55 HGNC:11922|MIM:186711|Ensembl:ENSG00000139193|HPRD:01723|Vega:OTTHUMG00000168316 12 12p13 CD27 molecule protein-coding CD27 CD27 molecule O CD27 antigen|CD27L receptor|T cell activation antigen S152|T-cell activation antigen CD27|tumor necrosis factor receptor superfamily, member 7 20121230 -9606 940 CD28 - Tp44 HGNC:1653|MIM:186760|Ensembl:ENSG00000178562|HPRD:01727|Vega:OTTHUMG00000132878 2 2q33 CD28 molecule protein-coding CD28 CD28 molecule O CD28 antigen|T-cell-specific surface glycoprotein CD28 20121230 -9606 941 CD80 - B7|B7-1|B7.1|BB1|CD28LG|CD28LG1|LAB7 HGNC:1700|MIM:112203|Ensembl:ENSG00000121594|HPRD:00202|Vega:OTTHUMG00000159419 3 3q13.3-q21 CD80 molecule protein-coding CD80 CD80 molecule O B-lymphocyte activation antigen B7|CD80 antigen (CD28 antigen ligand 1, B7-1 antigen)|CTLA-4 counter-receptor B7.1|T-lymphocyte activation antigen CD80|activation B7-1 antigen|costimulatory factor CD80|costimulatory molecule variant IgV-CD80 20121230 -9606 942 CD86 - B7-2|B7.2|B70|CD28LG2|LAB72 HGNC:1705|MIM:601020|Ensembl:ENSG00000114013|HPRD:03011|Vega:OTTHUMG00000159482 3 3q21 CD86 molecule protein-coding CD86 CD86 molecule O B-lymphocyte activation antigen B7-2|BU63|CD86 antigen (CD28 antigen ligand 2, B7-2 antigen)|CTLA-4 counter-receptor B7.2|FUN-1|T-lymphocyte activation antigen CD86 20121230 -9606 943 TNFRSF8 - CD30|D1S166E|Ki-1 HGNC:11923|MIM:153243|Ensembl:ENSG00000120949|HPRD:01074|Vega:OTTHUMG00000001827 1 1p36 tumor necrosis factor receptor superfamily, member 8 protein-coding TNFRSF8 tumor necrosis factor receptor superfamily, member 8 O CD30L receptor|Ki-1 antigen|cytokine receptor CD30|lymphocyte activation antigen CD30|tumor necrosis factor receptor superfamily member 8 20121230 -9606 944 TNFSF8 - CD153|CD30L|CD30LG HGNC:11938|MIM:603875|Ensembl:ENSG00000106952|HPRD:04852|Vega:OTTHUMG00000021025 9 9q33 tumor necrosis factor (ligand) superfamily, member 8 protein-coding TNFSF8 tumor necrosis factor (ligand) superfamily, member 8 O CD153 antigen|CD30 antigen ligand|CD30 ligand|CD30-L|tumor necrosis factor ligand superfamily member 8 20121230 -9606 945 CD33 - SIGLEC-3|SIGLEC3|p67 HGNC:1659|MIM:159590|Ensembl:ENSG00000105383|HPRD:01165 19 19q13.3 CD33 molecule protein-coding CD33 CD33 molecule O CD33 antigen (gp67)|gp67|myeloid cell surface antigen CD33|sialic acid binding Ig-like lectin 3|sialic acid-binding Ig-like lectin 3 20121230 -9606 946 SIGLEC6 - CD327|CD33L|CD33L1|CD33L2|CDW327|OBBP1 HGNC:10875|MIM:604405|Ensembl:ENSG00000105492|HPRD:16058|Vega:OTTHUMG00000133571 19 19q13.3 sialic acid binding Ig-like lectin 6 protein-coding SIGLEC6 sialic acid binding Ig-like lectin 6 O CD33 antigen-like 1|obesity-binding protein 1|sialic acid-binding Ig-like lectin 6 20121230 -9606 947 CD34 RP11-328D5.2 - HGNC:1662|MIM:142230|Ensembl:ENSG00000174059|HPRD:00790|Vega:OTTHUMG00000036565 1 1q32 CD34 molecule protein-coding CD34 CD34 molecule O CD34 antigen|hematopoietic progenitor cell antigen CD34 20121230 -9606 948 CD36 - BDPLT10|CHDS7|FAT|GP3B|GP4|GPIV|PASIV|SCARB3 HGNC:1663|MIM:173510|Ensembl:ENSG00000135218|HPRD:01430|Vega:OTTHUMG00000155383 7 7q11.2 CD36 molecule (thrombospondin receptor) protein-coding CD36 CD36 molecule (thrombospondin receptor) O CD36 antigen (collagen type I receptor, thrombospondin receptor)|GPIIIB|PAS IV|PAS-4 protein|cluster determinant 36|fatty acid translocase|glycoprotein IIIb|leukocyte differentiation antigen CD36|platelet glycoprotein 4|platelet glycoprotein IV|scavenger receptor class B, member 3 20121230 -9606 949 SCARB1 - CD36L1|CLA-1|CLA1|HDLQTL6|SR-BI|SRB1 HGNC:1664|MIM:601040|Ensembl:ENSG00000073060|HPRD:03024|Vega:OTTHUMG00000168544 12 12q24.31 scavenger receptor class B, member 1 protein-coding SCARB1 scavenger receptor class B, member 1 O CD36 and LIMPII analogous 1|CD36 antigen (collagen type I receptor, thrombospondin receptor)-like 1|scavenger receptor class B member 1|scavenger receptor class B type III 20121230 -9606 950 SCARB2 - AMRF|CD36L2|EPM4|HLGP85|LGP85|LIMP-2|LIMPII|SR-BII HGNC:1665|MIM:602257|Ensembl:ENSG00000138760|HPRD:03772|Vega:OTTHUMG00000130099 4 4q21.1 scavenger receptor class B, member 2 protein-coding SCARB2 scavenger receptor class B, member 2 O 85 kDa lysosomal membrane sialoglycoprotein|85 kDa lysosomal sialoglycoprotein scavenger receptor class B, member 2|CD36 antigen (collagen type I receptor, thrombospondin receptor)-like 2 (lysosomal integral membrane protein II)|CD36 antigen-like 2|LIMP II|lysosome membrane protein 2|lysosome membrane protein II 20121230 -9606 951 CD37 - GP52-40|TSPAN26 HGNC:1666|MIM:151523|Ensembl:ENSG00000104894|HPRD:01053 19 19q13.3 CD37 molecule protein-coding CD37 CD37 molecule O CD37 antigen|cell differentiation antigen 37|leukocyte antigen CD37|leukocyte surface antigen CD37|tetraspanin-26|tspan-26 20121230 -9606 952 CD38 - T10 HGNC:1667|MIM:107270|Ensembl:ENSG00000004468|HPRD:00116|Vega:OTTHUMG00000048206 4 4p15 CD38 molecule protein-coding CD38 CD38 molecule O ADP-ribosyl cyclase 1|ADP-ribosyl cyclase/cyclic ADP-ribose hydrolase|CD38 antigen (p45)|NAD(+) nucleosidase|cADPr hydrolase 1|cyclic ADP-ribose hydrolase 1 20121230 -9606 953 ENTPD1 - ATPDase|CD39|NTPDase-1 HGNC:3363|MIM:601752|Ensembl:ENSG00000138185|HPRD:09047|Vega:OTTHUMG00000018818 10 10q24 ectonucleoside triphosphate diphosphohydrolase 1 protein-coding ENTPD1 ectonucleoside triphosphate diphosphohydrolase 1 O CD39 antigen|NTPDase 1|ecto-ATP diphosphohydrolase 1|ecto-ATPDase 1|ecto-ATPase 1|ecto-apyrase|lymphoid cell activation antigen 20121230 -9606 954 ENTPD2 RP11-229P13.11-001 CD39L1|NTPDase-2 HGNC:3364|MIM:602012|Ensembl:ENSG00000054179|HPRD:03600|Vega:OTTHUMG00000020953 9 9q34 ectonucleoside triphosphate diphosphohydrolase 2 protein-coding ENTPD2 ectonucleoside triphosphate diphosphohydrolase 2 O CD39 antigen-like 1|NTPDase 2|ecto-ATP diphosphohydrolase 2|ecto-ATPDase 2|ecto-ATPase 2 20121230 -9606 955 ENTPD6 RP4-738P15.5 CD39L2|IL-6SAG|IL6ST2|NTPDase-6|dJ738P15.3 HGNC:3368|MIM:603160|Ensembl:ENSG00000197586|HPRD:16013|Vega:OTTHUMG00000032116 20 20p11.21 ectonucleoside triphosphate diphosphohydrolase 6 (putative) protein-coding ENTPD6 ectonucleoside triphosphate diphosphohydrolase 6 (putative) O CD39 antigen-like 2|CD39-like 2|HCV-E2 binding protein 1|NTPDase 6|ectonucleoside triphosphate diphosphohydrolase 6|ectonucleoside triphosphate diphosphohydrolase 6 (putative function)|interleukin 6 signal transducer-2 20121230 -9606 956 ENTPD3 - CD39L3|HB6|NTPDase-3 HGNC:3365|MIM:603161|Ensembl:ENSG00000168032|HPRD:16014|Vega:OTTHUMG00000131390 3 3p21.3 ectonucleoside triphosphate diphosphohydrolase 3 protein-coding ENTPD3 ectonucleoside triphosphate diphosphohydrolase 3 O CD39 antigen-like 3|CD39-like 3|NTPDase 3|ecto-ATP diphosphohydrolase 3|ecto-ATPDase 3|ecto-ATPase 3|ecto-apyrase 3 20121230 -9606 957 ENTPD5 - CD39L4|NTPDase-5|PCPH HGNC:3367|MIM:603162|Ensembl:ENSG00000187097|HPRD:16015|Vega:OTTHUMG00000171201 14 14q24 ectonucleoside triphosphate diphosphohydrolase 5 protein-coding ENTPD5 ectonucleoside triphosphate diphosphohydrolase 5 O CD39 antigen-like 4|CD39-like 4|ER-UDPase|GDPase ENTPD5|NTPDase 5|Pcph proto-oncogene protein|UDPase ENTPD5|guanosine-diphosphatase ENTPD5|nucleoside diphosphatase|proto-oncogene CPH|uridine-diphosphatase ENTPD5 20121230 -9606 958 CD40 - Bp50|CDW40|TNFRSF5|p50 HGNC:11919|MIM:109535|Ensembl:ENSG00000101017|HPRD:00178|Vega:OTTHUMG00000033053 20 20q12-q13.2 CD40 molecule, TNF receptor superfamily member 5 protein-coding CD40 CD40 molecule, TNF receptor superfamily member 5 O B cell surface antigen CD40|B cell-associated molecule|B-cell surface antigen CD40|CD40 antigen (TNF receptor superfamily member 5)|CD40 type II isoform|CD40L receptor|nerve growth factor receptor-related B-lymphocyte activation molecule|tumor necrosis factor receptor superfamily member 5|tumor necrosis factor receptor superfamily, member 5 20121230 -9606 959 CD40LG RP3-527F8.3 CD154|CD40L|HIGM1|IGM|IMD3|T-BAM|TNFSF5|TRAP|gp39|hCD40L HGNC:11935|MIM:300386|Ensembl:ENSG00000102245|HPRD:02311|Vega:OTTHUMG00000022512 X Xq26 CD40 ligand protein-coding CD40LG CD40 ligand O CD40 antigen ligand|CD40-L|T-B cell-activating molecule|T-cell antigen Gp39|TNF-related activation protein|tumor necrosis factor (ligand) superfamily member 5 20121230 -9606 960 CD44 AL133330.1 CDW44|CSPG8|ECMR-III|HCELL|HUTCH-I|IN|LHR|MC56|MDU2|MDU3|MIC4|Pgp1 HGNC:1681|MIM:107269|Ensembl:ENSG00000026508|HPRD:00115|Vega:OTTHUMG00000044388 11 11p13 CD44 molecule (Indian blood group) protein-coding CD44 CD44 molecule (Indian blood group) O CD44 antigen|GP90 lymphocyte homing/adhesion receptor|Hermes antigen|cell surface glycoprotein CD44|chondroitin sulfate proteoglycan 8|epican|extracellular matrix receptor III|hematopoietic cell E- and L-selectin ligand|heparan sulfate proteoglycan|homing function and Indian blood group system|hyaluronate receptor|phagocytic glycoprotein 1 20121230 -9606 961 CD47 - IAP|MER6|OA3 HGNC:1682|MIM:601028|Ensembl:ENSG00000196776|HPRD:03017|Vega:OTTHUMG00000044216 3 3q13.1-q13.2 CD47 molecule protein-coding CD47 CD47 molecule O CD47 antigen (Rh-related antigen, integrin-associated signal transducer)|CD47 glycoprotein|Rh-related antigen|antigen identified by monoclonal antibody 1D8|antigenic surface determinant protein OA3|integrin associated protein|integrin-associated protein|integrin-associated signal transducer|leukocyte surface antigen CD47 20121230 -9606 962 CD48 RP11-404F10.3 BCM1|BLAST|BLAST1|MEM-102|SLAMF2|hCD48|mCD48 HGNC:1683|MIM:109530|Ensembl:ENSG00000117091|HPRD:00177|Vega:OTTHUMG00000024009 1 1q21.3-q22 CD48 molecule protein-coding CD48 CD48 molecule O B-lymphocyte activation marker BLAST-1|BCM1 surface antigen|CD48 antigen|CD48 antigen (B-cell membrane protein)|TCT.1|leukocyte antigen MEM-102 20121230 -9606 963 CD53 - MOX44|TSPAN25 HGNC:1686|MIM:151525|Ensembl:ENSG00000143119|HPRD:01054|Vega:OTTHUMG00000048020 1 1p13 CD53 molecule protein-coding CD53 CD53 molecule O CD53 antigen|CD53 glycoprotein|CD53 tetraspan antigen|antigen MOX44 identified by monoclonal antibody MRC-OX44|cell surface antigen|cell surface glycoprotein CD53|leukocyte surface antigen CD53|tetraspanin-25|transmembrane glycoprotein|tspan-25 20121230 -9606 965 CD58 RP5-1086K13.2 LFA-3|LFA3|ag3 HGNC:1688|MIM:153420|Ensembl:ENSG00000116815|HPRD:01081|Vega:OTTHUMG00000022749 1 1p13 CD58 molecule protein-coding CD58 CD58 molecule O CD58 antigen, (lymphocyte function-associated antigen 3)|lymphocyte function-associated antigen 3|surface glycoprotein LFA-3 20121230 -9606 966 CD59 - 16.3A5|1F5|EJ16|EJ30|EL32|G344|HRF-20|HRF20|MAC-IP|MACIF|MEM43|MIC11|MIN1|MIN2|MIN3|MIRL|MSK21|p18-20 HGNC:1689|MIM:107271|Ensembl:ENSG00000085063|HPRD:00117|Vega:OTTHUMG00000166270 11 11p13 CD59 molecule, complement regulatory protein protein-coding CD59 CD59 molecule, complement regulatory protein O 1F5 antigen|20 kDa homologous restriction factor|CD59 antigen p18-20 (antigen identified by monoclonal antibodies 16.3A5, EJ16, EJ30, EL32 and G344)|CD59 glycoprotein|Ly-6-like protein|MEM43 antigen|T cell-activating protein|human leukocyte antigen MIC11|lymphocytic antigen CD59/MEM43|membrane attack complex (MAC) inhibition factor|membrane attack complex inhibition factor|membrane inhibitor of reactive lysis|protectin|surface anitgen recognized by monoclonal antibody 16.3A5 20121230 -9606 967 CD63 - LAMP-3|ME491|MLA1|OMA81H|TSPAN30 HGNC:1692|MIM:155740|Ensembl:ENSG00000135404|HPRD:01121|Vega:OTTHUMG00000170454 12 12q12-q13 CD63 molecule protein-coding CD63 CD63 molecule O CD63 antigen|CD63 antigen (melanoma 1 antigen)|granulophysin|lysosomal-associated membrane protein 3|lysosome-associated membrane glycoprotein 3|melanoma-associated antigen ME491|melanoma-associated antigen MLA1|ocular melanoma-associated antigen|tetraspanin-30|tspan-30 20121230 -9606 968 CD68 - GP110|LAMP4|SCARD1 HGNC:1693|MIM:153634|Ensembl:ENSG00000129226|HPRD:01093|Vega:OTTHUMG00000108146 17 17p13 CD68 molecule protein-coding CD68 CD68 molecule O CD68 antigen|macrophage antigen CD68|macrosialin|scavenger receptor class D, member 1 20121230 -9606 969 CD69 - AIM|BL-AC/P26|CLEC2C|EA1|GP32/28|MLR-3 HGNC:1694|MIM:107273|Ensembl:ENSG00000110848|HPRD:00119|Vega:OTTHUMG00000168481 12 12p13 CD69 molecule protein-coding CD69 CD69 molecule O C-type lectin domain family 2, member C|CD69 antigen (p60, early T-cell activation antigen)|activation inducer molecule (AIM/CD69)|early T-cell activation antigen p60|early activation antigen CD69|early lymphocyte activation antigen|leukocyte surface antigen Leu-23 20121230 -9606 970 CD70 - CD27L|CD27LG|TNFSF7 HGNC:11937|MIM:602840|Ensembl:ENSG00000125726|HPRD:18515 19 19p13 CD70 molecule protein-coding CD70 CD70 molecule O CD27 ligand|CD27-L|CD70 antigen|Ki-24 antigen|surface antigen CD70|tumor necrosis factor (ligand) superfamily, member 7|tumor necrosis factor ligand superfamily member 7 20121230 -9606 971 CD72 RP11-331F9.9 CD72b|LYB2 HGNC:1696|MIM:107272|Ensembl:ENSG00000137101|HPRD:00118|Vega:OTTHUMG00000019870 9 9p13.3 CD72 molecule protein-coding CD72 CD72 molecule O B-cell differentiation antigen CD72|CD72 antigen|lyb-2 20121230 -9606 972 CD74 - DHLAG|HLADG|II|Ia-GAMMA HGNC:1697|MIM:142790|Ensembl:ENSG00000019582|HPRD:00825|Vega:OTTHUMG00000163559 5 5q32 CD74 molecule, major histocompatibility complex, class II invariant chain protein-coding CD74 CD74 molecule, major histocompatibility complex, class II invariant chain O CD74 antigen (invariant polypeptide of major histocompatibility complex, class II antigen-associated)|HLA class II histocompatibility antigen gamma chain|HLA-DR antigens-associated invariant chain|HLA-DR-gamma|Ia-associated invariant chain|MHC HLA-DR gamma chain|gamma chain of class II antigens|p33 20121230 -9606 973 CD79A - IGA|MB-1 HGNC:1698|MIM:112205|Ensembl:ENSG00000105369|HPRD:00203 19 19q13.2 CD79a molecule, immunoglobulin-associated alpha protein-coding CD79A CD79a molecule, immunoglobulin-associated alpha O B-cell antigen receptor complex-associated protein alpha chain|CD79a antigen (immunoglobulin-associated alpha)|MB-1 membrane glycoprotein|ig-alpha|membrane-bound immunoglobulin-associated protein|surface IgM-associated protein 20121230 -9606 974 CD79B - AGM6|B29|IGB HGNC:1699|MIM:147245|Ensembl:ENSG00000007312|HPRD:00922|Vega:OTTHUMG00000172294 17 17q23 CD79b molecule, immunoglobulin-associated beta protein-coding CD79B CD79b molecule, immunoglobulin-associated beta O B-cell antigen receptor complex-associated protein beta chain|B-cell-specific glycoprotein B29|CD79b antigen (immunoglobulin-associated beta)|Ig-beta|immunoglobulin-associated B29 protein 20121230 -9606 975 CD81 - CVID6|S5.7|TAPA1|TSPAN28 HGNC:1701|MIM:186845|Ensembl:ENSG00000110651|HPRD:08924|Vega:OTTHUMG00000009892 11 11p15.5 CD81 molecule protein-coding CD81 CD81 molecule O 26 kDa cell surface protein TAPA-1|CD81 antigen|CD81 antigen (target of antiproliferative antibody 1)|tetraspanin-28|tspan-28 20121230 -9606 976 CD97 - TM7LN1 HGNC:1711|MIM:601211|Ensembl:ENSG00000123146|HPRD:03130|Vega:OTTHUMG00000182166 19 19p13 CD97 molecule protein-coding CD97 CD97 molecule O CD97 antigen|leukocyte antigen CD97|seven transmembrane helix receptor|seven-span transmembrane protein|seven-transmembrane, heterodimeric receptor associated with inflammation 20121230 -9606 977 CD151 - GP27|MER2|PETA-3|RAPH|SFA1|TSPAN24 HGNC:1630|MIM:602243|Ensembl:ENSG00000177697|HPRD:03763|Vega:OTTHUMG00000133311 11 11p15.5 CD151 molecule (Raph blood group) protein-coding CD151 CD151 molecule (Raph blood group) O CD151 antigen|CD151 antigen (Raph blood group)|hemidesmosomal tetraspanin CD151|membrane glycoprotein SFA-1|platelet surface glycoprotein gp27|platelet-endothelial cell tetraspan antigen 3|platelet-endothelial tetraspan antigen 3|tetraspanin-24|tspan-24 20121230 -9606 978 CDA - CDD HGNC:1712|MIM:123920|Ensembl:ENSG00000158825|HPRD:11744|Vega:OTTHUMG00000002845 1 1p36.2-p35 cytidine deaminase protein-coding CDA cytidine deaminase O cytidine aminohydrolase|cytosine nucleoside deaminase|small cytidine deaminase 20121230 -9606 981 CDAN3 - CDA3|CDAIII HGNC:1715|MIM:105600 15 15q21-q25 congenital dyserythropoietic anemia, type III unknown CDAN3 congenital dyserythropoietic anemia, type III O - 20120622 -9606 982 CDB2 - CDBII|CDTB HGNC:1716|MIM:602082 10 10q23-q24 corneal dystrophy of Bowman layer type II (Thiel-Behnke) unknown CDB2 corneal dystrophy of Bowman layer type II (Thiel-Behnke) O - 20120622 -9606 983 CDK1 - CDC2|CDC28A|P34CDC2 HGNC:1722|MIM:116940|Ensembl:ENSG00000170312|HPRD:00302|Vega:OTTHUMG00000018290 10 10q21.1 cyclin-dependent kinase 1 protein-coding CDK1 cyclin-dependent kinase 1 O cell cycle controller CDC2|cell division control protein 2 homolog|cell division cycle 2, G1 to S and G2 to M|cell division protein kinase 1|p34 protein kinase 20121230 -9606 984 CDK11B - CDC2L1|CDK11|CDK11-p110|CDK11-p46|CDK11-p58|CLK-1|PK58|p58|p58CDC2L1|p58CLK-1 HGNC:1729|MIM:176873|Ensembl:ENSG00000248333|HPRD:08909|Vega:OTTHUMG00000078638 1 1p36.33 cyclin-dependent kinase 11B protein-coding CDK11B cyclin-dependent kinase 11B O CDC-related protein kinase p58|PITSLRE serine/threonine-protein kinase CDC2L1|PITSLREA|cell division cycle 2-like 1 (PITSLRE proteins)|cell division cycle 2-like protein kinase 1|cell division protein kinase 11B|galactosyltransferase-associated protein kinase p58/GTA|p58 CLK-1 20121230 -9606 987 LRBA - BGL|CDC4L|CVID8|LAB300|LBA HGNC:1742|MIM:606453|Ensembl:ENSG00000198589|HPRD:07344|Vega:OTTHUMG00000161443 4 4q31.3 LPS-responsive vesicle trafficking, beach and anchor containing protein-coding LRBA LPS-responsive vesicle trafficking, beach and anchor containing O CDC4-like protein|lipopolysaccharide-responsive and beige-like anchor protein|vesicle trafficking, beach and anchor containing 20121230 -9606 988 CDC5L RP1-319D22.1 CDC5|CDC5-LIKE|CEF1|PCDC5RP|dJ319D22.1 HGNC:1743|MIM:602868|Ensembl:ENSG00000096401|HPRD:04184|Vega:OTTHUMG00000014767 6 6p21 CDC5 cell division cycle 5-like (S. pombe) protein-coding CDC5L CDC5 cell division cycle 5-like (S. pombe) O Cdc5-related protein|cell division cycle 5-like protein|dJ319D22.1 (CDC5-like protein)|pombe cdc5-related protein 20121230 -9606 989 SEPT7 - CDC10|CDC3|NBLA02942|SEPT7A HGNC:1717|MIM:603151|Ensembl:ENSG00000122545|HPRD:04398|Vega:OTTHUMG00000155063 7 7p14.2 septin 7 protein-coding SEPT7 septin 7 O CDC10 (cell division cycle 10, S. cerevisiae, homolog)|CDC10 protein homolog|septin-7 20121230 -9606 990 CDC6 - CDC18L|HsCDC18|HsCDC6 HGNC:1744|MIM:602627|Ensembl:ENSG00000094804|HPRD:04022|Vega:OTTHUMG00000133324 17 17q21.3 cell division cycle 6 homolog (S. cerevisiae) protein-coding CDC6 cell division cycle 6 homolog (S. cerevisiae) O CDC6 cell division cycle 6 homolog|CDC6-related protein|cdc18-related protein|cell division control protein 6 homolog|p62(cdc6) 20121230 -9606 991 CDC20 - CDC20A|bA276H19.3|p55CDC HGNC:1723|MIM:603618|Ensembl:ENSG00000117399|HPRD:04686|Vega:OTTHUMG00000007420 1 1p34.1 cell division cycle 20 homolog (S. cerevisiae) protein-coding CDC20 cell division cycle 20 homolog (S. cerevisiae) O CDC20 cell division cycle 20 homolog|cell division cycle protein 20 homolog 20121230 -9606 993 CDC25A - CDC25A2 HGNC:1725|MIM:116947|Ensembl:ENSG00000164045|HPRD:00305|Vega:OTTHUMG00000133535 3 3p21 cell division cycle 25 homolog A (S. pombe) protein-coding CDC25A cell division cycle 25 homolog A (S. pombe) O CDC25A2-CAG isoform|M-phase inducer phosphatase 1|cell division cycle 25A|dual specificity phosphatase CDC25A 20121230 -9606 994 CDC25B RP5-1009E24.3 - HGNC:1726|MIM:116949|Ensembl:ENSG00000101224|HPRD:00307|Vega:OTTHUMG00000031764 20 20p13 cell division cycle 25 homolog B (S. pombe) protein-coding CDC25B cell division cycle 25 homolog B (S. pombe) O M-phase inducer phosphatase 2|cell division cycle 25B|dual specificity phosphatase Cdc25B 20121230 -9606 995 CDC25C - CDC25|PPP1R60 HGNC:1727|MIM:157680|Ensembl:ENSG00000158402|HPRD:01146|Vega:OTTHUMG00000129203 5 5q31 cell division cycle 25 homolog C (S. pombe) protein-coding CDC25C cell division cycle 25 homolog C (S. pombe) O M-phase inducer phosphatase 3|cell division cycle 25C|dual specificity phosphatase CDC25C|mitosis inducer CDC25|phosphotyrosine phosphatase|protein phosphatase 1, regulatory subunit 60 20121230 -9606 996 CDC27 - ANAPC3|APC3|CDC27Hs|D0S1430E|D17S978E|HNUC|NUC2 HGNC:1728|MIM:116946|Ensembl:ENSG00000004897|HPRD:00304|Vega:OTTHUMG00000166429 17 17q21.32 cell division cycle 27 homolog (S. cerevisiae) protein-coding CDC27 cell division cycle 27 homolog (S. cerevisiae) O CDC27 homolog|H-NUC|anaphase promoting complex subunit 3|anaphase-promoting complex subunit 3|anaphase-promoting complex, protein 3|cell division cycle protein 27 homolog|nuc2 homolog 20121230 -9606 997 CDC34 - E2-CDC34|UBC3|UBCH3|UBE2R1 HGNC:1734|MIM:116948|Ensembl:ENSG00000099804|HPRD:00306|Vega:OTTHUMG00000180558 19 19p13.3 cell division cycle 34 homolog (S. cerevisiae) protein-coding CDC34 cell division cycle 34 homolog (S. cerevisiae) O ubiquitin carrier protein|ubiquitin-conjugating enzyme E2 R1|ubiquitin-conjugating enzyme E2-32 KDA complementing|ubiquitin-conjugating enzyme E2-CDC34|ubiquitin-protein ligase R1 20121230 -9606 998 CDC42 RP1-224A6.5 CDC42Hs|G25K HGNC:1736|MIM:116952|Ensembl:ENSG00000070831|HPRD:00309|Vega:OTTHUMG00000002753 1 1p36.1 cell division cycle 42 (GTP binding protein, 25kDa) protein-coding CDC42 cell division cycle 42 (GTP binding protein, 25kDa) O G25K GTP-binding protein|GTP-binding protein, 25kD|cell division control protein 42 homolog|dJ224A6.1.1 (cell division cycle 42 (GTP-binding protein, 25kD))|dJ224A6.1.2 (cell division cycle 42 (GTP-binding protein, 25kD))|growth-regulating protein|small GTP binding protein CDC42 20121230 -9606 999 CDH1 - Arc-1|CD324|CDHE|ECAD|LCAM|UVO HGNC:1748|MIM:192090|Ensembl:ENSG00000039068|HPRD:01885|Vega:OTTHUMG00000137561 16 16q22.1 cadherin 1, type 1, E-cadherin (epithelial) protein-coding CDH1 cadherin 1, type 1, E-cadherin (epithelial) O CAM 120/80|E-Cadherin|cadherin 1, E-cadherin (epithelial)|cadherin-1|calcium-dependent adhesion protein, epithelial|cell-CAM 120/80|epithelial cadherin|uvomorulin 20121230 -9606 1000 CDH2 - CD325|CDHN|CDw325|NCAD HGNC:1759|MIM:114020|Ensembl:ENSG00000170558|HPRD:00226|Vega:OTTHUMG00000059940 18 18q11.2 cadherin 2, type 1, N-cadherin (neuronal) protein-coding CDH2 cadherin 2, type 1, N-cadherin (neuronal) O N-cadherin 1|cadherin 2, N-cadherin (neuronal)|cadherin-2|calcium-dependent adhesion protein, neuronal|neural cadherin|neural-cadherin 20121230 -9606 1001 CDH3 - CDHP|HJMD|PCAD HGNC:1762|MIM:114021|Ensembl:ENSG00000062038|HPRD:00227|Vega:OTTHUMG00000137560 16 16q22.1 cadherin 3, type 1, P-cadherin (placental) protein-coding CDH3 cadherin 3, type 1, P-cadherin (placental) O cadherin-3|calcium-dependent adhesion protein, placental 20121230 -9606 1002 CDH4 - CAD4|RCAD HGNC:1763|MIM:603006|Ensembl:ENSG00000179242|HPRD:04304|Vega:OTTHUMG00000032890 20 20q13.3 cadherin 4, type 1, R-cadherin (retinal) protein-coding CDH4 cadherin 4, type 1, R-cadherin (retinal) O R-CAD|R-cadherin|cadherin 4, type 1, preproprotein|cadherin-4|retinal cadherin 20121230 -9606 1003 CDH5 - 7B4|CD144 HGNC:1764|MIM:601120|Ensembl:ENSG00000179776|HPRD:03075|Vega:OTTHUMG00000137495 16 16q22.1 cadherin 5, type 2 (vascular endothelium) protein-coding CDH5 cadherin 5, type 2 (vascular endothelium) O 7B4 antigen|VE-cadherin|cadherin 5, type 2, VE-cadherin (vascular epithelium)|cadherin-5|cd144 antigen|endothelial-specific cadherin|vascular endothelial cadherin 20121230 -9606 1004 CDH6 - CAD6|KCAD HGNC:1765|MIM:603007|Ensembl:ENSG00000113361|HPRD:04305|Vega:OTTHUMG00000090673 5 5p13.3 cadherin 6, type 2, K-cadherin (fetal kidney) protein-coding CDH6 cadherin 6, type 2, K-cadherin (fetal kidney) O cadherin-6 20121230 -9606 1005 CDH7 - CDH7L1 HGNC:1766|MIM:605806|Ensembl:ENSG00000081138|HPRD:12049|Vega:OTTHUMG00000132800 18 18q22.1 cadherin 7, type 2 protein-coding CDH7 cadherin 7, type 2 O cadherin-7 20121230 -9606 1006 CDH8 - Nbla04261 HGNC:1767|MIM:603008|Ensembl:ENSG00000150394|HPRD:04306|Vega:OTTHUMG00000137493 16 16q22.1 cadherin 8, type 2 protein-coding CDH8 cadherin 8, type 2 O cadherin-8 20121230 -9606 1007 CDH9 - - HGNC:1768|MIM:609974|Ensembl:ENSG00000113100|HPRD:13021|Vega:OTTHUMG00000090671 5 5p14 cadherin 9, type 2 (T1-cadherin) protein-coding CDH9 cadherin 9, type 2 (T1-cadherin) O T1-cadherin|cadherin-9 20121230 -9606 1008 CDH10 - - HGNC:1749|MIM:604555|Ensembl:ENSG00000040731|HPRD:05187|Vega:OTTHUMG00000090667 5 5p14.2 cadherin 10, type 2 (T2-cadherin) protein-coding CDH10 cadherin 10, type 2 (T2-cadherin) O T2-cadherin|cadherin-10 20121230 -9606 1009 CDH11 - CAD11|CDHOB|OB|OSF-4 HGNC:1750|MIM:600023|Ensembl:ENSG00000140937|HPRD:08960|Vega:OTTHUMG00000137494 16 16q21 cadherin 11, type 2, OB-cadherin (osteoblast) protein-coding CDH11 cadherin 11, type 2, OB-cadherin (osteoblast) O cadherin-11 20121230 -9606 1010 CDH12 - CDHB HGNC:1751|MIM:600562|Ensembl:ENSG00000154162|HPRD:11081|Vega:OTTHUMG00000090591 5 5p14.3 cadherin 12, type 2 (N-cadherin 2) protein-coding CDH12 cadherin 12, type 2 (N-cadherin 2) O Br-cadherin|N-cadherin 2|brain cadherin|brain-cadherin|cadherin, neural type, 2|cadherin-12|neural type cadherin 2|neuronal cadherin 2 20121230 -9606 1011 CDH12P2 - C41-CAD|CDH12P HGNC:1752 5 5q13.1 cadherin 12 (N-cadherin 2) pseudogene 2 pseudo CDH12P2 cadherin 12 (N-cadherin 2) pseudogene 2 O - 20121230 -9606 1012 CDH13 - CDHH|P105 HGNC:1753|MIM:601364|Ensembl:ENSG00000140945|HPRD:03219|Vega:OTTHUMG00000176635 16 16q23.3 cadherin 13, H-cadherin (heart) protein-coding CDH13 cadherin 13, H-cadherin (heart) O H-cadherin|T-cad|T-cadherin|cadherin-13|heart cadherin 20121230 -9606 1013 CDH15 - CDH14|CDH3|CDHM|MCAD|MRD3 HGNC:1754|MIM:114019|Ensembl:ENSG00000129910|HPRD:00225|Vega:OTTHUMG00000138045 16 16q24.3 cadherin 15, type 1, M-cadherin (myotubule) protein-coding CDH15 cadherin 15, type 1, M-cadherin (myotubule) O cadherin-14|cadherin-15|cadherin-3|muscle-cadherin 20121230 -9606 1014 CDH16 UNQ695/PRO1340 - HGNC:1755|MIM:603118|Ensembl:ENSG00000166589|HPRD:11929|Vega:OTTHUMG00000137518 16 16q22.1 cadherin 16, KSP-cadherin protein-coding CDH16 cadherin 16, KSP-cadherin O KSP-cadherin|cadherin-16|kidney-specific cadherin 20121230 -9606 1015 CDH17 - CDH16|HPT-1|HPT1 HGNC:1756|MIM:603017|Ensembl:ENSG00000079112|HPRD:04312|Vega:OTTHUMG00000164391 8 8q22.1 cadherin 17, LI cadherin (liver-intestine) protein-coding CDH17 cadherin 17, LI cadherin (liver-intestine) O HPT-1 cadherin|LI cadherin|LI-cadherin|cadherin-16|cadherin-17|human intestinal peptide-associated transporter HPT-1|human peptide transporter 1|intestinal peptide-associated transporter HPT-1|liver-intestine cadherin 20121230 -9606 1016 CDH18 - CDH14|CDH14L|CDH24 HGNC:1757|MIM:603019|Ensembl:ENSG00000145526|HPRD:04314|Vega:OTTHUMG00000090578 5 5p14.3 cadherin 18, type 2 protein-coding CDH18 cadherin 18, type 2 O cadherin-14|cadherin-18|cadherin-like 24|ey-cadherin 20121230 -9606 1017 CDK2 - p33(CDK2) HGNC:1771|MIM:116953|Ensembl:ENSG00000123374|HPRD:00310|Vega:OTTHUMG00000170575 12 12q13 cyclin-dependent kinase 2 protein-coding CDK2 cyclin-dependent kinase 2 O cdc2-related protein kinase|cell devision kinase 2|cell division protein kinase 2|p33 protein kinase 20121230 -9606 1018 CDK3 - - HGNC:1772|MIM:123828|Ensembl:ENSG00000250506|HPRD:00446|Vega:OTTHUMG00000154861 17 17q25.1 cyclin-dependent kinase 3 protein-coding CDK3 cyclin-dependent kinase 3 O cell division protein kinase 3 20121230 -9606 1019 CDK4 - CMM3|PSK-J3 HGNC:1773|MIM:123829|Ensembl:ENSG00000135446|HPRD:00447|Vega:OTTHUMG00000170382 12 12q14 cyclin-dependent kinase 4 protein-coding CDK4 cyclin-dependent kinase 4 O cell division protein kinase 4 20121230 -9606 1020 CDK5 - PSSALRE HGNC:1774|MIM:123831|Ensembl:ENSG00000164885|HPRD:00449|Vega:OTTHUMG00000158414 7 7q36 cyclin-dependent kinase 5 protein-coding CDK5 cyclin-dependent kinase 5 O TPKII catalytic subunit|cell division protein kinase 5|protein kinase CDK5 splicing|serine/threonine-protein kinase PSSALRE|tau protein kinase II catalytic subunit 20121230 -9606 1021 CDK6 - PLSTIRE HGNC:1777|MIM:603368|Ensembl:ENSG00000105810|HPRD:04533|Vega:OTTHUMG00000131697 7 7q21-q22 cyclin-dependent kinase 6 protein-coding CDK6 cyclin-dependent kinase 6 O cell division protein kinase 6|serine/threonine-protein kinase PLSTIRE 20121230 -9606 1022 CDK7 - CAK1|CDKN7|HCAK|MO15|STK1|p39MO15 HGNC:1778|MIM:601955|Ensembl:ENSG00000134058|HPRD:15993|Vega:OTTHUMG00000099358 5 5q12.1 cyclin-dependent kinase 7 protein-coding CDK7 cyclin-dependent kinase 7 O 39 KDa protein kinase|CAK|CDK-activating kinase 1|TFIIH basal transcription factor complex kinase subunit|cell division protein kinase 7|cyclin-dependent kinase 7 (MO15 homolog, Xenopus laevis, cdk-activating kinase)|homolog of Xenopus MO15 Cdk-activating kinase|kinase subunit of CAK|p39 Mo15|protein kinase|serine/threonine kinase stk1|serine/threonine protein kinase 1|serine/threonine protein kinase MO15|serine/threonine-protein kinase 1 20121230 -9606 1023 CDL2 - - HGNC:1793 - - Cornelia de Lange syndrome 2 unknown CDL2 Cornelia de Lange syndrome 2 O - 20110215 -9606 1024 CDK8 - K35 HGNC:1779|MIM:603184|Ensembl:ENSG00000132964|HPRD:04422|Vega:OTTHUMG00000016617 13 13q12 cyclin-dependent kinase 8 protein-coding CDK8 cyclin-dependent kinase 8 O CDK8 protein kinase|cell division protein kinase 8|mediator complex subunit CDK8|mediator of RNA polymerase II transcription subunit CDK8|protein kinase K35 20121230 -9606 1025 CDK9 RP11-228B15.5 C-2k|CDC2L4|CTK1|PITALRE|TAK HGNC:1780|MIM:603251|Ensembl:ENSG00000136807|HPRD:16016|Vega:OTTHUMG00000020715 9 9q34.1 cyclin-dependent kinase 9 protein-coding CDK9 cyclin-dependent kinase 9 O CDC2-related kinase|cell division cycle 2-like protein kinase 4|cell division protein kinase 9|serine/threonine protein kinase PITALRE|serine/threonine-protein kinase PITALRE|tat-associated kinase complex catalytic subunit 20121230 -9606 1026 CDKN1A - CAP20|CDKN1|CIP1|MDA-6|P21|SDI1|WAF1|p21CIP1 HGNC:1784|MIM:116899|Ensembl:ENSG00000124762|HPRD:00298|Vega:OTTHUMG00000014603 6 6p21.2 cyclin-dependent kinase inhibitor 1A (p21, Cip1) protein-coding CDKN1A cyclin-dependent kinase inhibitor 1A (p21, Cip1) O CDK-interacting protein 1|CDK-interaction protein 1|DNA synthesis inhibitor|cyclin-dependent kinase inhibitor 1|melanoma differentiation associated protein 6|wild-type p53-activated fragment 1 20121230 -9606 1027 CDKN1B - CDKN4|KIP1|MEN1B|MEN4|P27KIP1 HGNC:1785|MIM:600778|Ensembl:ENSG00000111276|HPRD:02867|Vega:OTTHUMG00000149914 12 12p13.1-p12 cyclin-dependent kinase inhibitor 1B (p27, Kip1) protein-coding CDKN1B cyclin-dependent kinase inhibitor 1B (p27, Kip1) O cyclin-dependent kinase inhibitor 1B 20121230 -9606 1028 CDKN1C - BWCR|BWS|IMAGE|KIP2|WBS|p57 HGNC:1786|MIM:600856|Ensembl:ENSG00000129757|HPRD:02913|Vega:OTTHUMG00000010040 11 11p15.5 cyclin-dependent kinase inhibitor 1C (p57, Kip2) protein-coding CDKN1C cyclin-dependent kinase inhibitor 1C (p57, Kip2) O cyclin-dependent kinase inhibitor 1C|cyclin-dependent kinase inhibitor p57|p57Kip2 20121230 -9606 1029 CDKN2A - ARF|CDK4I|CDKN2|CMM2|INK4|INK4A|MLM|MTS-1|MTS1|P14|P14ARF|P16|P16-INK4A|P16INK4|P16INK4A|P19|P19ARF|TP16 HGNC:1787|MIM:600160|Ensembl:ENSG00000147889|HPRD:02542|Vega:OTTHUMG00000019686 9 9p21 cyclin-dependent kinase inhibitor 2A protein-coding CDKN2A cyclin-dependent kinase inhibitor 2A O CDK4 inhibitor p16-INK4|cell cycle negative regulator beta|cyclin-dependent kinase 4 inhibitor A|cyclin-dependent kinase inhibitor 2A (melanoma, p16, inhibits CDK4)|multiple tumor suppressor 1 20121230 -9606 1030 CDKN2B RP11-149I2.1 CDK4I|INK4B|MTS2|P15|TP15|p15INK4b HGNC:1788|MIM:600431|Ensembl:ENSG00000147883|HPRD:02696|Vega:OTTHUMG00000019691 9 9p21 cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4) protein-coding CDKN2B cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4) O CDK inhibitory protein|CDK4B inhibitor|MTS-2|cyclin-dependent kinase 4 inhibitor B|cyclin-dependent kinases 4 and 6 binding protein|multiple tumor suppressor 2|p14-INK4b|p14_CDK inhibitor|p14_INK4B|p15 CDK inhibitor|p15-INK4b|p15_INK4B 20121230 -9606 1031 CDKN2C RP11-278J17.2 INK4C|p18|p18-INK4C HGNC:1789|MIM:603369|Ensembl:ENSG00000123080|HPRD:04534|Vega:OTTHUMG00000008046 1 1p32 cyclin-dependent kinase inhibitor 2C (p18, inhibits CDK4) protein-coding CDKN2C cyclin-dependent kinase inhibitor 2C (p18, inhibits CDK4) O CDK6 inhibitor p18|cyclin-dependent inhibitor|cyclin-dependent kinase 4 inhibitor C|cyclin-dependent kinase 6 inhibitor p18|p18-INK6 20121230 -9606 1032 CDKN2D - INK4D|p19|p19-INK4D HGNC:1790|MIM:600927|Ensembl:ENSG00000129355|HPRD:02957|Vega:OTTHUMG00000180583 19 19p13 cyclin-dependent kinase inhibitor 2D (p19, inhibits CDK4) protein-coding CDKN2D cyclin-dependent kinase inhibitor 2D (p19, inhibits CDK4) O CDK inhibitor p19INK4d|cell cycle inhibitor, Nur77 associating protein|cyclin-dependent kinase 4 inhibitor D|cyclin-dependent kinase 4 inhibitor D p19|inhibitor of cyclin-dependent kinase 4d 20121230 -9606 1033 CDKN3 - CDI1|CIP2|KAP|KAP1 HGNC:1791|MIM:123832|Ensembl:ENSG00000100526|HPRD:00450|Vega:OTTHUMG00000140302 14 14q22 cyclin-dependent kinase inhibitor 3 protein-coding CDKN3 cyclin-dependent kinase inhibitor 3 O CDK2-associated dual specificity phosphatase|CDK2-associated dual-specificity phosphatase|Cdk-associated protein phosphatase|cyclin-dependent kinase interacting protein 2|cyclin-dependent kinase interactor 1|cyclin-dependent kinase-interacting protein 2|kinase associated phosphatase|kinase-associated phosphatase 20121230 -9606 1036 CDO1 - - HGNC:1795|MIM:603943|Ensembl:ENSG00000129596|HPRD:06806|Vega:OTTHUMG00000128891 5 5q23.2 cysteine dioxygenase, type I protein-coding CDO1 cysteine dioxygenase, type I O CDO|CDO-I|cysteine dioxygenase type 1 20121230 -9606 1038 CDR1 RP1-177G6.1 CDR|CDR34|CDR62A HGNC:1798|MIM:302650|Ensembl:ENSG00000184258|HPRD:02361|Vega:OTTHUMG00000137398 X Xq27.1-q27.2 cerebellar degeneration-related protein 1, 34kDa protein-coding CDR1 cerebellar degeneration-related protein 1, 34kDa O cerebellar degeneration-related antigen 1 20121230 -9606 1039 CDR2 - CDR62|Yo HGNC:1799|MIM:117340|Ensembl:ENSG00000140743|HPRD:06681|Vega:OTTHUMG00000175463 16 16p12.3 cerebellar degeneration-related protein 2, 62kDa protein-coding CDR2 cerebellar degeneration-related protein 2, 62kDa O Yo paraneoplastic antigen|cerebellar degeneration-related protein 2|major Yo paraneoplastic antigen|paraneoplastic cerebellar degeneration-associated antigen 20121230 -9606 1040 CDS1 - CDS HGNC:1800|MIM:603548|Ensembl:ENSG00000163624|HPRD:11944|Vega:OTTHUMG00000130428 4 4q21.23 CDP-diacylglycerol synthase (phosphatidate cytidylyltransferase) 1 protein-coding CDS1 CDP-diacylglycerol synthase (phosphatidate cytidylyltransferase) 1 O CDP-DAG synthase 1|CDP-DG synthase 1|CDP-DG synthetase 1|CDP-diacylglycerol synthase 1|CDP-diglyceride pyrophosphorylase 1|CDP-diglyceride synthase 1|CDP-diglyceride synthetase 1|CDS 1|CTP:phosphatidate cytidylyltransferase 1|phosphatidate cytidylyltransferase 1 20121230 -9606 1041 CDSN DADB-141O4.5 D6S586E|HTSS|HTSS1|PSS|S HGNC:1802|MIM:602593|Ensembl:ENSG00000204539|HPRD:03998|Vega:OTTHUMG00000031150 6 6p21.3 corneodesmosin protein-coding CDSN corneodesmosin O differentiated keratinocyte S protein 20121230 -9606 1043 CD52 - CDW52 HGNC:1804|MIM:114280|Ensembl:ENSG00000169442|HPRD:00257|Vega:OTTHUMG00000003491 1 1p36 CD52 molecule protein-coding CD52 CD52 molecule O CAMPATH-1 antigen|CD52 antigen (CAMPATH-1 antigen)|CDW52 antigen (CAMPATH-1 antigen)|cambridge pathology 1 antigen|epididymal secretory protein E5|he5|human epididymis-specific protein 5 20121230 -9606 1044 CDX1 - - HGNC:1805|MIM:600746|Ensembl:ENSG00000113722|HPRD:02849|Vega:OTTHUMG00000169772 5 5q32 caudal type homeobox 1 protein-coding CDX1 caudal type homeobox 1 O caudal type homeo box transcription factor 1|caudal type homeobox transcription factor 1|caudal-type homeobox protein 1|caudal-type homeobox protein CDX1|homeobox protein CDX-1 20121230 -9606 1045 CDX2 - CDX-3|CDX3 HGNC:1806|MIM:600297|Ensembl:ENSG00000165556|HPRD:02622|Vega:OTTHUMG00000016640 13 13q12.3 caudal type homeobox 2 protein-coding CDX2 caudal type homeobox 2 O caudal type homeo box transcription factor 2|caudal type homeobox transcription factor 2|caudal-type homeobox protein 2|homeobox protein CDX-2 20121230 -9606 1046 CDX4 - - HGNC:1808|MIM:300025|Ensembl:ENSG00000131264|HPRD:02065|Vega:OTTHUMG00000021831 X Xq13.2 caudal type homeobox 4 protein-coding CDX4 caudal type homeobox 4 O caudal type homeobox transcription factor 4|caudal-type homeobox protein 4|homeobox protein CDX-4 20121230 -9606 1047 CLGN - - HGNC:2060|MIM:601858|Ensembl:ENSG00000153132|HPRD:03513|Vega:OTTHUMG00000133414 4 4q28.3-q31.1 calmegin protein-coding CLGN calmegin O - 20121230 -9606 1048 CEACAM5 - CD66e|CEA HGNC:1817|MIM:114890|Ensembl:ENSG00000105388|HPRD:00274|Vega:OTTHUMG00000151061 19 19q13.1-q13.2 carcinoembryonic antigen-related cell adhesion molecule 5 protein-coding CEACAM5 carcinoembryonic antigen-related cell adhesion molecule 5 O meconium antigen 100 20121230 -9606 1050 CEBPA - C/EBP-alpha|CEBP HGNC:1833|MIM:116897|Ensembl:ENSG00000245848|HPRD:00296|Vega:OTTHUMG00000161461 19 19q13.1 CCAAT/enhancer binding protein (C/EBP), alpha protein-coding CEBPA CCAAT/enhancer binding protein (C/EBP), alpha O CCAAT/enhancer-binding protein alpha 20121230 -9606 1051 CEBPB PP9092 C/EBP-beta|CRP2|IL6DBP|LAP|NF-IL6|TCF5 HGNC:1834|MIM:189965|Ensembl:ENSG00000172216|HPRD:01801|Vega:OTTHUMG00000032715 20 20q13.1 CCAAT/enhancer binding protein (C/EBP), beta protein-coding CEBPB CCAAT/enhancer binding protein (C/EBP), beta O CCAAT/enhancer-binding protein beta|TCF-5|interleukin 6-dependent DNA-binding protein|liver-enriched transcriptional activator protein|nuclear factor NF-IL6|nuclear factor of interleukin 6|transcription factor 5 20121230 -9606 1052 CEBPD - C/EBP-delta|CELF|CRP3|NF-IL6-beta HGNC:1835|MIM:116898|Ensembl:ENSG00000221869|HPRD:00297|Vega:OTTHUMG00000162290 8 8p11.2-p11.1 CCAAT/enhancer binding protein (C/EBP), delta protein-coding CEBPD CCAAT/enhancer binding protein (C/EBP), delta O CCAAT/enhancer-binding protein delta|c/EBP delta|nuclear factor NF-IL6-beta 20121230 -9606 1053 CEBPE - C/EBP-epsilon|CRP1 HGNC:1836|MIM:600749|Ensembl:ENSG00000092067|HPRD:02852|Vega:OTTHUMG00000028719 14 14q11.2 CCAAT/enhancer binding protein (C/EBP), epsilon protein-coding CEBPE CCAAT/enhancer binding protein (C/EBP), epsilon O CCAAT/enhancer-binding protein epsilon|c/EBP epsilon 20121230 -9606 1054 CEBPG - GPE1BP|IG/EBP-1 HGNC:1837|MIM:138972|Ensembl:ENSG00000153879|HPRD:00738|Vega:OTTHUMG00000180469 19 19q13.11 CCAAT/enhancer binding protein (C/EBP), gamma protein-coding CEBPG CCAAT/enhancer binding protein (C/EBP), gamma O CCAAT/enhancer-binding protein gamma|c/EBP gamma 20121230 -9606 1055 CECR - CES HGNC:1838|MIM:115470 22 22pter-q11 cat eye syndrome chromosome region unknown CECR cat eye syndrome chromosome region O - 20120719 -9606 1056 CEL - BAL|BSDL|BSSL|CELL|CEase|FAP|FAPP|LIPA|MODY8 HGNC:1848|MIM:114840|Ensembl:ENSG00000170835|HPRD:07509|Vega:OTTHUMG00000020855 9 9q34.3 carboxyl ester lipase (bile salt-stimulated lipase) protein-coding CEL carboxyl ester lipase (bile salt-stimulated lipase) O bile salt-activated lipase|bile salt-dependent lipase, oncofetal isoform|bile-salt-activated lipase|bucelipase|carboxyl ester hydrolase|cholesterol esterase|fetoacinar pancreatic protein|lysophospholipase, pancreatic|pancreatic lysophospholipase|sterol esterase 20121230 -9606 1057 CELP - CELL|cell1|cell2|cell3 HGNC:1849 9 9q34.3 carboxyl ester lipase pseudogene pseudo CELP carboxyl ester lipase pseudogene O - 20121230 -9606 1058 CENPA - CENP-A|CenH3 HGNC:1851|MIM:117139|Ensembl:ENSG00000115163|HPRD:00313|Vega:OTTHUMG00000097073 2 2p23.3 centromere protein A protein-coding CENPA centromere protein A O centromere autoantigen A|centromere protein A, 17kDa|centromere-specific histone|histone H3-like centromeric protein A 20121230 -9606 1059 CENPB - - HGNC:1852|MIM:117140|Ensembl:ENSG00000125817|HPRD:00314|Vega:OTTHUMG00000031761 20 20p13 centromere protein B, 80kDa protein-coding CENPB centromere protein B, 80kDa O CENP-B|centromere autoantigen B|major centromere autoantigen B 20121230 -9606 1060 CENPC1 - CENP-C|CENPC|MIF2|hcp-4 HGNC:1854|MIM:117141|Ensembl:ENSG00000145241|HPRD:00315|Vega:OTTHUMG00000160735 4 4q13.2 centromere protein C 1 protein-coding CENPC1 centromere protein C 1 O CENP-C 1|centromere autoantigen C|centromere autoantigen C1|interphase centromere complex protein 7 20121230 -9606 1061 CENPC1P1 - CENPC|CENPC2 HGNC:1855 12 12q21.33 centromere protein C 1 pseudogene 1 pseudo CENPC1P1 centromere protein C 1 pseudogene 1 O - 20121230 -9606 1062 CENPE - CENP-E|KIF10|PPP1R61 HGNC:1856|MIM:117143|Ensembl:ENSG00000138778|HPRD:00316|Vega:OTTHUMG00000160980 4 4q24-q25 centromere protein E, 312kDa protein-coding CENPE centromere protein E, 312kDa O Centromere autoantigen E (312kD)|centromere-associated protein E|kinesin family member 10|kinesin-related protein CENPE|protein phosphatase 1, regulatory subunit 61 20121230 -9606 1063 CENPF RP11-262H5.1 CENF|PRO1779|hcp-1 HGNC:1857|MIM:600236|Ensembl:ENSG00000117724|HPRD:02582|Vega:OTTHUMG00000036955 1 1q41 centromere protein F, 350/400kDa (mitosin) protein-coding CENPF centromere protein F, 350/400kDa (mitosin) O AH antigen|CENP-F kinetochore protein|cell-cycle-dependent 350K nuclear protein|centromere protein F|centromere protein F, 350/400ka (mitosin)|kinetochore protein CENPF|mitosin 20121230 -9606 1066 CES1 - ACAT|CE-1|CEH|CES2|HMSE|HMSE1|PCE-1|REH|SES1|TGH|hCE-1 HGNC:1863|MIM:114835|Ensembl:ENSG00000198848|HPRD:00268|Vega:OTTHUMG00000176718 16 16q22.2 carboxylesterase 1 protein-coding CES1 carboxylesterase 1 O acyl coenzyme A:cholesterol acyltransferase|acyl-coenzyme A:cholesterol acyltransferase|brain carboxylesterase hBr1|carboxylesterase 1 (monocyte/macrophage serine esterase 1)|carboxylesterase 2 (liver)|cholesteryl ester hydrolase|cocaine carboxylesterase|egasyn|human monocyte/macrophage serine esterase 1|liver carboxylesterase 1|methylumbelliferyl-acetate deacetylase 1|monocyte/macrophage serine esterase|retinyl ester hydrolase|serine esterase 1|triacylglycerol hydrolase 20121230 -9606 1068 CETN1 - CEN1|CETN HGNC:1866|MIM:603187|HPRD:04425 18 18p11.32 centrin, EF-hand protein, 1 protein-coding CETN1 centrin, EF-hand protein, 1 O EF-hand protein|calcium binding protein|caltractin|centrin-1 20121230 -9606 1069 CETN2 - CALT|CEN2 HGNC:1867|MIM:300006|Ensembl:ENSG00000147400|HPRD:02051|Vega:OTTHUMG00000024246 X Xq28 centrin, EF-hand protein, 2 protein-coding CETN2 centrin, EF-hand protein, 2 O caltractin (20kD calcium-binding protein)|centrin-2 20121230 -9606 1070 CETN3 - CEN3 HGNC:1868|MIM:602907|Ensembl:ENSG00000153140|HPRD:04216|Vega:OTTHUMG00000131326 5 5q14.3 centrin, EF-hand protein, 3 protein-coding CETN3 centrin, EF-hand protein, 3 O CDC31 yeast homolog|EF-hand superfamily member|centrin, EF-hand protein, 3 (CDC31 homolog, yeast)|centrin-3 20121230 -9606 1071 CETP - BPIFF|HDLCQ10 HGNC:1869|MIM:118470|Ensembl:ENSG00000087237|HPRD:00325|Vega:OTTHUMG00000133279 16 16q21 cholesteryl ester transfer protein, plasma protein-coding CETP cholesteryl ester transfer protein, plasma O BPI fold containing family F|cholesteryl ester transfer protein|lipid transfer protein I 20121230 -9606 1072 CFL1 - CFL HGNC:1874|MIM:601442|Ensembl:ENSG00000172757|HPRD:03261|Vega:OTTHUMG00000166602 11 11q13 cofilin 1 (non-muscle) protein-coding CFL1 cofilin 1 (non-muscle) O 18 kDa phosphoprotein|cofilin, non-muscle isoform|cofilin-1|p18 20121230 -9606 1073 CFL2 - NEM7 HGNC:1875|MIM:601443|Ensembl:ENSG00000165410|HPRD:03262|Vega:OTTHUMG00000029536 14 14q12 cofilin 2 (muscle) protein-coding CFL2 cofilin 2 (muscle) O cofilin, muscle isoform|cofilin-2|nemaline myopathy type 7 20121230 -9606 1074 CFL1P5 - CFLL1|CFLP5 HGNC:1877 5 5q13.2 cofilin 1 (non-muscle) pseudogene 5 pseudo CFL1P5 cofilin 1 (non-muscle) pseudogene 5 O - 20121230 -9606 1075 CTSC - CPPI|DPP-I|DPP1|DPPI|HMS|JP|JPD|PALS|PLS HGNC:2528|MIM:602365|Ensembl:ENSG00000109861|HPRD:03841|Vega:OTTHUMG00000167290 11 11q14.2 cathepsin C protein-coding CTSC cathepsin C O cathepsin J|dipeptidyl peptidase 1|dipeptidyl peptidase I|dipeptidyl transferase|dipeptidyl-peptidase I 20121230 -9606 1080 CFTR tcag7.78 ABC35|ABCC7|CF|CFTR/MRP|MRP7|TNR-CFTR|dJ760C5.1 HGNC:1884|MIM:602421|Ensembl:ENSG00000001626|HPRD:03883|Vega:OTTHUMG00000023076 7 7q31.2 cystic fibrosis transmembrane conductance regulator (ATP-binding cassette sub-family C, member 7) protein-coding CFTR cystic fibrosis transmembrane conductance regulator (ATP-binding cassette sub-family C, member 7) O cAMP-dependent chloride channel|channel conductance-controlling ATPase|cystic fibrosis transmembrane conductance regulator 20121230 -9606 1081 CGA RP11-156F23.1 CG-ALPHA|FSHA|GPHA1|GPHa|HCG|LHA|TSHA HGNC:1885|MIM:118850|Ensembl:ENSG00000135346|HPRD:00342|Vega:OTTHUMG00000015161 6 6q12-q21 glycoprotein hormones, alpha polypeptide protein-coding CGA glycoprotein hormones, alpha polypeptide O FSH-alpha|LSH-alpha|TSH-alpha|anterior pituitary glycoprotein hormones common subunit alpha|choriogonadotropin alpha chain|chorionic gonadotrophin subunit alpha|chorionic gonadotropin, alpha polypeptide|follicle-stimulating hormone alpha chain|follicle-stimulating hormone alpha subunit|follitropin alpha chain|glycoprotein hormones alpha chain|luteinizing hormone alpha chain|lutropin alpha chain|thyroid-stimulating hormone alpha chain|thyrotropin alpha chain 20121230 -9606 1082 CGB - CGB3|CGB5|CGB7|CGB8|hCGB HGNC:1886|MIM:118860|Ensembl:ENSG00000104827|HPRD:00343|Vega:OTTHUMG00000180605 19 19q13.32 chorionic gonadotropin, beta polypeptide protein-coding CGB chorionic gonadotropin, beta polypeptide O CG-beta|choriogonadotropin subunit beta|chorionic gonadotrophin chain beta|chorionic gonadotropin beta 3 subunit|chorionic gonadotropin beta chain|chorionic gonadotropin beta subunit 20121230 -9606 1083 CGF1 - - HGNC:1887|MIM:300082 X Xp11.22-qter cognitive function 1, social unknown CGF1 cognitive function 1, social O - 20120622 -9606 1084 CEACAM3 - CD66D|CEA|CGM1|W264|W282 HGNC:1815|MIM:609142|Ensembl:ENSG00000170956|HPRD:16450|Vega:OTTHUMG00000150142 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule 3 protein-coding CEACAM3 carcinoembryonic antigen-related cell adhesion molecule 3 O CD66d antigen|carcinoembryonic antigen CGM1|carcinoembryonic antigen gene family member 1|nonspecific cross-reacting antigen 20121230 -9606 1085 CEACAMP5 - CEACAM26P|CGM12 HGNC:1827 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 5 pseudo CEACAMP5 carcinoembryonic antigen-related cell adhesion molecule pseudogene 5 O - 20121230 -9606 1086 CEACAMP11 - CEACAM32P|CGM18 HGNC:1823 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 11 pseudo CEACAMP11 carcinoembryonic antigen-related cell adhesion molecule pseudogene 11 O - 20121230 -9606 1087 CEACAM7 - CEA|CGM2 HGNC:1819|Ensembl:ENSG00000007306|HPRD:07629|Vega:OTTHUMG00000151063 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule 7 protein-coding CEACAM7 carcinoembryonic antigen-related cell adhesion molecule 7 O carcinoembryonic antigen CGM2|carcinoembryonic antigen gene family member 2 20121230 -9606 1088 CEACAM8 - CD66b|CD67|CGM6|NCA-95 HGNC:1820|Ensembl:ENSG00000124469|HPRD:07630|Vega:OTTHUMG00000151124 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule 8 protein-coding CEACAM8 carcinoembryonic antigen-related cell adhesion molecule 8 O CD67 antigen|carcinoembryonic antigen CGM6|carcinoembryonic antigen gene family member 6|non-specific cross-reacting antigen NCA-95 20121230 -9606 1089 CEACAM4 - CGM7|CGM7_HUMAN|NCA HGNC:1816|Ensembl:ENSG00000105352|HPRD:07628|Vega:OTTHUMG00000151065 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule 4 protein-coding CEACAM4 carcinoembryonic antigen-related cell adhesion molecule 4 O Nonspecific cross-reacting antigen (NCA)|carcinoembryonic antigen CGM7|carcinoembryonic antigen gene family member 7|non-specific cross-reacting antigen W236|nonspecific cross-reacting antigen W236 20121230 -9606 1090 CEACAMP1 - CEACAM22P|CGM8 HGNC:1821 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 1 pseudo CEACAMP1 carcinoembryonic antigen-related cell adhesion molecule pseudogene 1 O - 20121230 -9606 1091 CEACAMP2 - CEACAM23P|CGM9 HGNC:1824 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 2 pseudo CEACAMP2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 2 O - 20121230 -9606 1092 CEACAMP3 - CEACAM24P|CGM10 HGNC:1825 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 3 pseudo CEACAMP3 carcinoembryonic antigen-related cell adhesion molecule pseudogene 3 O - 20121230 -9606 1093 CEACAMP4 - CEACAM25P|CGM11 HGNC:1826 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 4 pseudo CEACAMP4 carcinoembryonic antigen-related cell adhesion molecule pseudogene 4 O - 20121230 -9606 1094 CEACAMP6 - CEACAM27P|CGM13 HGNC:1828 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 6 pseudo CEACAMP6 carcinoembryonic antigen-related cell adhesion molecule pseudogene 6 O - 20121230 -9606 1095 CEACAMP7 - CEACAM28P|CGM14 HGNC:1829 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 7 pseudo CEACAMP7 carcinoembryonic antigen-related cell adhesion molecule pseudogene 7 O - 20121230 -9606 1096 CEACAMP8 - CEACAM29P|CGM15 HGNC:1830 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 8 pseudo CEACAMP8 carcinoembryonic antigen-related cell adhesion molecule pseudogene 8 O - 20121230 -9606 1097 CEACAMP9 - CEACAM30P|CGM16 HGNC:1831 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 9 pseudo CEACAMP9 carcinoembryonic antigen-related cell adhesion molecule pseudogene 9 O - 20121230 -9606 1098 CEACAMP10 - CEACAM31P|CGM17 HGNC:1822 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule pseudogene 10 pseudo CEACAMP10 carcinoembryonic antigen-related cell adhesion molecule pseudogene 10 O - 20121230 -9606 1101 CHAD - SLRR4A HGNC:1909|MIM:602178|Ensembl:ENSG00000136457|HPRD:03711|Vega:OTTHUMG00000162129 17 17q21.33 chondroadherin protein-coding CHAD chondroadherin O cartilage leucine-rich protein|chondroadherin proteoglycan 20121230 -9606 1102 RCBTB2 - CHC1L HGNC:1914|MIM:603524|Ensembl:ENSG00000136161|HPRD:04631|Vega:OTTHUMG00000016902 13 13q14.3 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 2 protein-coding RCBTB2 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 2 O CHC1-L|RCC1 and BTB domain-containing protein 2|RCC1-like G exchanging factor RLG|regulator of chromosome condensation and BTB domain containing protein 2|regulator of chromosome condensation and BTB domain-containing protein 2 20121230 -9606 1103 CHAT - CHOACTASE|CMS1A|CMS1A2 HGNC:1912|MIM:118490|Ensembl:ENSG00000070748|HPRD:07510|Vega:OTTHUMG00000018198 10 10q11.2 choline O-acetyltransferase protein-coding CHAT choline O-acetyltransferase O acetyl CoA:choline O-acetyltransferase|choline acetylase 20121230 -9606 1104 RCC1 RP4-669K10.2 CHC1|RCC1-I|SNHG3-RCC1 HGNC:1913|MIM:179710|Ensembl:ENSG00000180198|HPRD:01559|Vega:OTTHUMG00000003645 1 1p36.1 regulator of chromosome condensation 1 protein-coding RCC1 regulator of chromosome condensation 1 O SNHG3-RCC1 readthrough transcript|cell cycle regulatory protein|guanine nucleotide-releasing protein|regulator of chromosome condensation 20121230 -9606 1105 CHD1 - - HGNC:1915|MIM:602118|Ensembl:ENSG00000153922|HPRD:03668|Vega:OTTHUMG00000162744 5 5q15-q21 chromodomain helicase DNA binding protein 1 protein-coding CHD1 chromodomain helicase DNA binding protein 1 O ATP-dependent helicase CHD1|CHD-1|chromodomain-helicase-DNA-binding protein 1 20121230 -9606 1106 CHD2 - - HGNC:1917|MIM:602119|Ensembl:ENSG00000173575|HPRD:03669|Vega:OTTHUMG00000149845 15 15q26 chromodomain helicase DNA binding protein 2 protein-coding CHD2 chromodomain helicase DNA binding protein 2 O ATP-dependent helicase CHD2|CHD-2|chromodomain-helicase-DNA-binding protein 2 20121230 -9606 1107 CHD3 - Mi-2a|Mi2-ALPHA|ZFH HGNC:1918|MIM:602120|Ensembl:ENSG00000170004|HPRD:09071|Vega:OTTHUMG00000150427 17 17p13.1 chromodomain helicase DNA binding protein 3 protein-coding CHD3 chromodomain helicase DNA binding protein 3 O ATP-dependent helicase CHD3|CHD-3|chromodomain-helicase-DNA-binding protein 3|hZFH|mi-2 autoantigen 240 kDa protein|zinc finger helicase|zinc-finger helicase (Snf2-like) 20121230 -9606 1108 CHD4 - Mi-2b|Mi2-BETA HGNC:1919|MIM:603277|Ensembl:ENSG00000111642|HPRD:04472|Vega:OTTHUMG00000169164 12 12p13 chromodomain helicase DNA binding protein 4 protein-coding CHD4 chromodomain helicase DNA binding protein 4 O ATP-dependent helicase CHD4|CHD-4|Mi-2 autoantigen 218 kDa protein|chromodomain-helicase-DNA-binding protein 4 20121230 -9606 1109 AKR1C4 - 3-alpha-HSD|C11|CDR|CHDR|DD-4|DD4|HAKRA HGNC:387|MIM:600451|Ensembl:ENSG00000198610|HPRD:07040|Vega:OTTHUMG00000017591 10 10p15.1 aldo-keto reductase family 1, member C4 protein-coding AKR1C4 aldo-keto reductase family 1, member C4 O 3-alpha-HSD1|aldo-keto reductase family 1 member C4|chlordecone reductase; 3-alpha hydroxysteroid dehydrogenase, type I; dihydrodiol dehydrogenase 4|dihydrodiol dehydrogenase isozyme DD4|type I 3-alpha-hydroxysteroid dehydrogenase 20121230 -9606 1110 CHE2 - - HGNC:1922|MIM:177500 2 2q33-q35 cholinesterase (serum) 2 protein-coding CHE2 cholinesterase (serum) 2 O - 20080828 -9606 1111 CHEK1 - CHK1 HGNC:1925|MIM:603078|Ensembl:ENSG00000149554|HPRD:04356|Vega:OTTHUMG00000165853 11 11q24.2 checkpoint kinase 1 protein-coding CHEK1 checkpoint kinase 1 O CHK1 checkpoint homolog|Checkpoint, S. pombe, homolog of, 1|Chk1-S|cell cycle checkpoint kinase|checkpoint kinase-1|serine/threonine-protein kinase Chk1 20121230 -9606 1112 FOXN3 - C14orf116|CHES1|PRO1635 HGNC:1928|MIM:602628|Ensembl:ENSG00000053254|HPRD:07533|Vega:OTTHUMG00000170898 14 14q31.3 forkhead box N3 protein-coding FOXN3 forkhead box N3 O checkpoint suppressor 1|forkhead box protein N3 20121230 -9606 1113 CHGA - CGA HGNC:1929|MIM:118910|Ensembl:ENSG00000100604|HPRD:07170|Vega:OTTHUMG00000171225 14 14q32 chromogranin A (parathyroid secretory protein 1) protein-coding CHGA chromogranin A (parathyroid secretory protein 1) O SP-I|betagranin (N-terminal fragment of chromogranin A)|chromogranin-A|parathyroid secretory protein 1|pituitary secretory protein I 20121230 -9606 1114 CHGB - SCG1 HGNC:1930|MIM:118920|Ensembl:ENSG00000089199|HPRD:07512|Vega:OTTHUMG00000031821 20 20pter-p12 chromogranin B (secretogranin 1) protein-coding CHGB chromogranin B (secretogranin 1) O cgB|chromogranin-B|secretogranin B|secretogranin I|secretogranin-1|sgI 20121230 -9606 1116 CHI3L1 - ASRT7|CGP-39|GP-39|GP39|HC-gp39|HCGP-3P|YKL-40|YKL40|YYL-40|hCGP-39 HGNC:1932|MIM:601525|Ensembl:ENSG00000133048|HPRD:03314|Vega:OTTHUMG00000042122 1 1q32.1 chitinase 3-like 1 (cartilage glycoprotein-39) protein-coding CHI3L1 chitinase 3-like 1 (cartilage glycoprotein-39) O 39 kDa synovial protein|cartilage glycoprotein 39|chitinase-3-like protein 1 20121230 -9606 1117 CHI3L2 - YKL-39|YKL39 HGNC:1933|MIM:601526|Ensembl:ENSG00000064886|HPRD:03315|Vega:OTTHUMG00000012174 1 1p13.3 chitinase 3-like 2 protein-coding CHI3L2 chitinase 3-like 2 O chitinase-3-like protein 2|chondrocyte protein 39 20121230 -9606 1118 CHIT1 - CHI3|CHIT|CHITD HGNC:1936|MIM:600031|Ensembl:ENSG00000133063|HPRD:02494|Vega:OTTHUMG00000042126 1 1q31-q32 chitinase 1 (chitotriosidase) protein-coding CHIT1 chitinase 1 (chitotriosidase) O chitotriosidase-1|plasma methylumbelliferyl tetra-N-acetylchitotetraoside hydrolase 20121230 -9606 1119 CHKA - CHK|CK|CKI|EK HGNC:1937|MIM:118491|Ensembl:ENSG00000110721|HPRD:00327|Vega:OTTHUMG00000167424 11 11q13.2 choline kinase alpha protein-coding CHKA choline kinase alpha O CHETK-alpha|ethanolamine kinase 20121230 -9606 1120 CHKB - CHETK|CHKL|CK|CKB|CKEKB|EK|EKB|MDCMC HGNC:1938|MIM:612395|Ensembl:ENSG00000100288|HPRD:07631|Vega:OTTHUMG00000150275 22 22q13.33 choline kinase beta protein-coding CHKB choline kinase beta O choline kinase-like protein|choline/ethanolamine kinase|ethanolamine kinase beta 20121230 -9606 1121 CHM RP1-93L7.1 DXS540|GGTA|HSD-32|REP-1|TCD HGNC:1940|MIM:300390|Ensembl:ENSG00000188419|HPRD:02312|HPRD:06563|Vega:OTTHUMG00000021937 X Xq21.2 choroideremia (Rab escort protein 1) protein-coding CHM choroideremia (Rab escort protein 1) O rab proteins geranylgeranyltransferase component A 1 20121230 -9606 1122 CHML - REP2 HGNC:1941|MIM:118825|Ensembl:ENSG00000203668|HPRD:00341|Vega:OTTHUMG00000039690 1 1q42-qter choroideremia-like (Rab escort protein 2) protein-coding CHML choroideremia-like (Rab escort protein 2) O choroideraemia-like protein|rab proteins geranylgeranyltransferase component A 2 20121230 -9606 1123 CHN1 - ARHGAP2|CHN|DURS2|NC|RHOGAP2 HGNC:1943|MIM:118423|Ensembl:ENSG00000128656|HPRD:00319|Vega:OTTHUMG00000154225 2 2q31.1 chimerin 1 protein-coding CHN1 chimerin 1 O A-chimaerin|N-chimaerin|Rho GTPase-activating protein 2|a2-chimaerin|alpha-chimerin|chimaerin 1|chimerin (chimaerin) 1|n-chimerin 20121230 -9606 1124 CHN2 - ARHGAP3|BCH|CHN2-3|RHOGAP3 HGNC:1944|MIM:602857|Ensembl:ENSG00000106069|HPRD:04173|Vega:OTTHUMG00000023063 7 7p15.3 chimerin 2 protein-coding CHN2 chimerin 2 O beta-chimaerin|beta-chimerin|beta3-chimaerin|chimaerin 2|chimerin (chimaerin) 2|rho-GTPase-activating protein 3 20121230 -9606 1125 CHR - - HGNC:1945|MIM:118840 5 5q35 chromate resistance; sulfate transport unknown CHR chromate resistance; sulfate transport O - 20110215 -9606 1128 CHRM1 - HM1|M1|M1R HGNC:1950|MIM:118510|Ensembl:ENSG00000168539|HPRD:00338|Vega:OTTHUMG00000167765 11 11q13 cholinergic receptor, muscarinic 1 protein-coding CHRM1 cholinergic receptor, muscarinic 1 O acetylcholine receptor, muscarinic 1|muscarinic acetylcholine receptor M1 20121230 -9606 1129 CHRM2 - HM2 HGNC:1951|MIM:118493|Ensembl:ENSG00000181072|HPRD:00328|Vega:OTTHUMG00000155658 7 7q31-q35 cholinergic receptor, muscarinic 2 protein-coding CHRM2 cholinergic receptor, muscarinic 2 O 7TM receptor|acetylcholine receptor, muscarinic 2|muscarinic M2 receptor|muscarinic acetylcholine receptor M2 20121230 -9606 1130 LYST - CHS|CHS1 HGNC:1968|MIM:606897|Ensembl:ENSG00000143669|HPRD:06060|Vega:OTTHUMG00000040527 1 1q42.1-q42.2 lysosomal trafficking regulator protein-coding LYST lysosomal trafficking regulator O Chediak-Higashi syndrome 1|beige homolog|beige protein|lysosomal-trafficking regulator 20121230 -9606 1131 CHRM3 - EGBRS|HM3 HGNC:1952|MIM:118494|Ensembl:ENSG00000133019|HPRD:00329|Vega:OTTHUMG00000039649 1 1q43 cholinergic receptor, muscarinic 3 protein-coding CHRM3 cholinergic receptor, muscarinic 3 O acetylcholine receptor, muscarinic 3|m3 muscarinic receptor|muscarinic acetylcholine receptor M3 20121230 -9606 1132 CHRM4 - HM4|M4R HGNC:1953|MIM:118495|Ensembl:ENSG00000180720|HPRD:00330|Vega:OTTHUMG00000154371 11 11p12-p11.2 cholinergic receptor, muscarinic 4 protein-coding CHRM4 cholinergic receptor, muscarinic 4 O acetylcholine receptor, muscarinic 4|muscarinic acetylcholine receptor M4 20121230 -9606 1133 CHRM5 - HM5 HGNC:1954|MIM:118496|Ensembl:ENSG00000184984|HPRD:00331|Vega:OTTHUMG00000129369 15 15q26 cholinergic receptor, muscarinic 5 protein-coding CHRM5 cholinergic receptor, muscarinic 5 O acetylcholine receptor, muscarinic 5|muscarinic acetylcholine receptor M5 20121230 -9606 1134 CHRNA1 - ACHRA|ACHRD|CHRNA|CMS2A|FCCMS|SCCMS HGNC:1955|MIM:100690|Ensembl:ENSG00000138435|HPRD:00007|Vega:OTTHUMG00000132357 2 2q31.1 cholinergic receptor, nicotinic, alpha 1 (muscle) protein-coding CHRNA1 cholinergic receptor, nicotinic, alpha 1 (muscle) O acetylcholine receptor subunit alpha|acetylcholine receptor, nicotinic, alpha 1 (muscle)|cholinergic receptor, nicotinic, alpha polypeptide 1 (muscle)|muscle nicotinic acetylcholine receptor|nicotinic acetylcholine receptor alpha subunit|nicotinic cholinergic receptor alpha 1 20121230 -9606 1135 CHRNA2 - - HGNC:1956|MIM:118502|Ensembl:ENSG00000120903|HPRD:00332|Vega:OTTHUMG00000102083 8 8p21 cholinergic receptor, nicotinic, alpha 2 (neuronal) protein-coding CHRNA2 cholinergic receptor, nicotinic, alpha 2 (neuronal) O acetylcholine receptor, nicotinic, alpha 2 (neuronal)|cholinergic receptor, nicotinic, alpha polypeptide 2 (neuronal)|neuronal acetylcholine receptor subunit alpha-2 20121230 -9606 1136 CHRNA3 - LNCR2|NACHRA3|PAOD2 HGNC:1957|MIM:118503|Ensembl:ENSG00000080644|HPRD:07511|Vega:OTTHUMG00000143863 15 15q24 cholinergic receptor, nicotinic, alpha 3 (neuronal) protein-coding CHRNA3 cholinergic receptor, nicotinic, alpha 3 (neuronal) O cholinergic receptor, nicotinic, alpha polypeptide 3|neuronal acetylcholine receptor subunit alpha-3|neuronal nicotinic acetylcholine receptor, alpha3 subunit 20121230 -9606 1137 CHRNA4 - BFNC|EBN|EBN1|NACHR|NACHRA4|NACRA4 HGNC:1958|MIM:118504|Ensembl:ENSG00000101204|HPRD:00333|Vega:OTTHUMG00000033080 20 20q13.2-q13.3 cholinergic receptor, nicotinic, alpha 4 (neuronal) protein-coding CHRNA4 cholinergic receptor, nicotinic, alpha 4 (neuronal) O cholinergic receptor, nicotinic, alpha polypeptide 4|neuronal acetylcholine receptor subunit alpha-4|neuronal nicotinic acetylcholine receptor alpha-4 subunit 20121230 -9606 1138 CHRNA5 - LNCR2 HGNC:1959|MIM:118505|Ensembl:ENSG00000169684|HPRD:00334|Vega:OTTHUMG00000143858 15 15q24 cholinergic receptor, nicotinic, alpha 5 (neuronal) protein-coding CHRNA5 cholinergic receptor, nicotinic, alpha 5 (neuronal) O Cholinergic receptor, neuronal nicotinic, alpha polypeptide-5|acetylcholine receptor, nicotinic, alpha 5 (neuronal)|neuronal acetylcholine receptor subunit alpha-5|neuronal nicotinic acetylcholine receptor, alpha5 subunit 20121230 -9606 1139 CHRNA7 - CHRNA7-2|NACHRA7 HGNC:1960|MIM:118511|Ensembl:ENSG00000175344|HPRD:00339|Vega:OTTHUMG00000129285 15 15q14 cholinergic receptor, nicotinic, alpha 7 (neuronal) protein-coding CHRNA7 cholinergic receptor, nicotinic, alpha 7 (neuronal) O a7 nicotinic acetylcholine receptor|acetylcholine receptor, nicotinic, alpha 7 (neuronal)|alpha 7 neuronal nicotinic acetylcholine receptor|alpha-7 nicotinic cholinergic receptor subunit|cholinergic receptor, nicotinic, alpha polypeptide 7|neuronal acetylcholine receptor protein, alpha-7 chain|neuronal acetylcholine receptor subunit alpha-7 20121230 -9606 1140 CHRNB1 - ACHRB|CHRNB|CMS1D|CMS2A|SCCMS HGNC:1961|MIM:100710|Ensembl:ENSG00000170175|HPRD:01156|Vega:OTTHUMG00000108139 17 17p13.1 cholinergic receptor, nicotinic, beta 1 (muscle) protein-coding CHRNB1 cholinergic receptor, nicotinic, beta 1 (muscle) O acetylcholine receptor subunit beta|acetylcholine receptor, nicotinic, beta 1 (muscle)|cholinergic receptor, nicotinic, beta polypeptide 1 (muscle) 20121230 -9606 1141 CHRNB2 RP11-61L14.4 EFNL3|nAChRB2 HGNC:1962|MIM:118507|Ensembl:ENSG00000160716|HPRD:00335|Vega:OTTHUMG00000037262 1 1q21.3 cholinergic receptor, nicotinic, beta 2 (neuronal) protein-coding CHRNB2 cholinergic receptor, nicotinic, beta 2 (neuronal) O acetylcholine receptor, nicotinic, beta 2 (neuronal)|cholinergic receptor, nicotinic, beta polypeptide 2 (neuronal)|neuronal acetylcholine receptor subunit beta-2|neuronal nicotinic acetylcholine receptor beta 2 20121230 -9606 1142 CHRNB3 - - HGNC:1963|MIM:118508|Ensembl:ENSG00000147432|HPRD:00336|Vega:OTTHUMG00000165262 8 8p11.2 cholinergic receptor, nicotinic, beta 3 (neuronal) protein-coding CHRNB3 cholinergic receptor, nicotinic, beta 3 (neuronal) O acetylcholine receptor, neuronal nicotinic, beta-3 subunit|acetylcholine receptor, nicotinic, beta 3 (neuronal)|cholinergic receptor, nicotinic, beta polypeptide 3|neuronal acetylcholine receptor subunit beta-3 20121230 -9606 1143 CHRNB4 hCG_1731645 - HGNC:1964|MIM:118509|Ensembl:ENSG00000117971|HPRD:00337|Vega:OTTHUMG00000143860 15 15q24 cholinergic receptor, nicotinic, beta 4 (neuronal) protein-coding CHRNB4 cholinergic receptor, nicotinic, beta 4 (neuronal) O acetylcholine receptor, nicotinic, beta 4 (neuronal)|cholinergic receptor, nicotinic, beta polypeptide 4|neuronal acetylcholine receptor subunit beta-4|neuronal nicotinic receptor beta 4 subunit 20121230 -9606 1144 CHRND - ACHRD|CMS2A|FCCMS|SCCMS HGNC:1965|MIM:100720|Ensembl:ENSG00000135902|HPRD:01516|Vega:OTTHUMG00000133261 2 2q37.1 cholinergic receptor, nicotinic, delta (muscle) protein-coding CHRND cholinergic receptor, nicotinic, delta (muscle) O acetylcholine receptor subunit delta|acetylcholine receptor, nicotinic, delta (muscle)|cholinergic receptor, nicotinic, delta polypeptide 20121230 -9606 1145 CHRNE - ACHRE|CMS1D|CMS1E|CMS2A|FCCMS|SCCMS HGNC:1966|MIM:100725|Ensembl:ENSG00000108556|HPRD:00008|Vega:OTTHUMG00000090778 17 17p13.2 cholinergic receptor, nicotinic, epsilon (muscle) protein-coding CHRNE cholinergic receptor, nicotinic, epsilon (muscle) O AchR epsilon subunit|acetylcholine receptor subunit epsilon|acetylcholine receptor, nicotinic, epsilon (muscle)|cholinergic receptor, nicotinic, epsilon polypeptide 20121230 -9606 1146 CHRNG - ACHRG HGNC:1967|MIM:100730|Ensembl:ENSG00000196811|HPRD:00009|Vega:OTTHUMG00000153327 2 2q37.1 cholinergic receptor, nicotinic, gamma (muscle) protein-coding CHRNG cholinergic receptor, nicotinic, gamma (muscle) O acetylcholine receptor subunit gamma|acetylcholine receptor, muscle, gamma subunit|acetylcholine receptor, nicotinic, gamma (muscle)|cholinergic receptor, nicotinic, gamma polypeptide 20121230 -9606 1147 CHUK - IKBKA|IKK-alpha|IKK1|IKKA|NFKBIKA|TCF16 HGNC:1974|MIM:600664|Ensembl:ENSG00000213341|HPRD:02811|Vega:OTTHUMG00000018899 10 10q24-q25 conserved helix-loop-helix ubiquitous kinase protein-coding CHUK conserved helix-loop-helix ubiquitous kinase O I-kappa-B kinase 1|I-kappa-B kinase-alpha|IKK-a kinase|IkB kinase alpha subunit|Nuclear factor NFkappaB inhibitor kinase alpha|TCF-16|inhibitor of nuclear factor kappa-B kinase subunit alpha|transcription factor 16 20121230 -9606 1149 CIDEA - CIDE-A HGNC:1976|MIM:604440|Ensembl:ENSG00000176194|HPRD:08380|Vega:OTTHUMG00000131691 18 18p11.21|18 cell death-inducing DFFA-like effector a protein-coding CIDEA cell death-inducing DFFA-like effector a O cell death activator CIDE-A 20121230 -9606 1152 CKB - B-CK|CKBB HGNC:1991|MIM:123280|Ensembl:ENSG00000166165|HPRD:00423|Vega:OTTHUMG00000171786 14 14q32 creatine kinase, brain protein-coding CKB creatine kinase, brain O creatine kinase B chain|creatine kinase B-type|creatine kinase-B 20121230 -9606 1153 CIRBP - CIRP HGNC:1982|MIM:602649|Ensembl:ENSG00000099622|HPRD:08375|Vega:OTTHUMG00000180145 19 19p13.3 cold inducible RNA binding protein protein-coding CIRBP cold inducible RNA binding protein O A18 hnRNP|cold inducible RNA-binding protein|cold-inducible RNA-binding protein|glycine-rich RNA binding protein|glycine-rich RNA-binding protein CIRP 20121230 -9606 1154 CISH - BACTS2|CIS|CIS-1|G18|SOCS HGNC:1984|MIM:602441|Ensembl:ENSG00000114737|HPRD:03897|Vega:OTTHUMG00000156853 3 3p21.3 cytokine inducible SH2-containing protein protein-coding CISH cytokine inducible SH2-containing protein O cytokine-inducible SH2-containing protein|cytokine-inducible inhibitor of signaling type 1B|suppressor of cytokine signaling 20121230 -9606 1155 TBCB - CG22|CKAP1|CKAPI HGNC:1989|MIM:601303|Ensembl:ENSG00000105254|HPRD:03196|Vega:OTTHUMG00000048143 19 19q13.11-q13.12 tubulin folding cofactor B protein-coding TBCB tubulin folding cofactor B O cytoskeleton associated protein 1|cytoskeleton-associated protein 1|cytoskeleton-associated protein CKAPI|tubulin-folding cofactor B|tubulin-specific chaperone B 20121230 -9606 1156 CKBE - - HGNC:1992|MIM:123270 14 14q32 creatine kinase, ectopic expression unknown CKBE creatine kinase, ectopic expression O - 20120622 -9606 1157 CKBP1 - - HGNC:1993 16 16q11.2 creatine kinase B pseudogene 1 pseudo CKBP1 creatine kinase B pseudogene 1 O - 20121230 -9606 1158 CKM - CKMM|M-CK HGNC:1994|MIM:123310|Ensembl:ENSG00000104879|HPRD:00426|Vega:OTTHUMG00000181782 19 19q13.32 creatine kinase, muscle protein-coding CKM creatine kinase, muscle O creatine kinase M chain|creatine kinase M-type 20121230 -9606 1159 CKMT1B - CKMT|CKMT1|UMTCK HGNC:1995|MIM:123290|Ensembl:ENSG00000237289|HPRD:00424|Vega:OTTHUMG00000059900 15 15q15 creatine kinase, mitochondrial 1B protein-coding CKMT1B creatine kinase, mitochondrial 1B O U-MtCK|acidic-type mitochondrial creatine kinase|creatine kinase U-type, mitochondrial|creatine kinase, mitochondrial 1 (ubiquitous)|mia-CK|ubiquitous mitochondrial creatine kinase 20121230 -9606 1160 CKMT2 - SMTCK HGNC:1996|MIM:123295|Ensembl:ENSG00000131730|HPRD:00425|Vega:OTTHUMG00000119013 5 5q13.3 creatine kinase, mitochondrial 2 (sarcomeric) protein-coding CKMT2 creatine kinase, mitochondrial 2 (sarcomeric) O S-MtCK|basic-type mitochondrial creatine kinase|creatine kinase S-type, mitochondrial|mib-CK|sarcomeric mitochondrial creatine kinase 20121230 -9606 1161 ERCC8 - CKN1|CSA|UVSS2 HGNC:3439|MIM:609412|Ensembl:ENSG00000049167|HPRD:07523|Vega:OTTHUMG00000097741 5 5q12.1 excision repair cross-complementing rodent repair deficiency, complementation group 8 protein-coding ERCC8 excision repair cross-complementing rodent repair deficiency, complementation group 8 O Cockayne syndrome WD-repeat protein CSA|DNA excision repair protein ERCC-8|cockayne syndrome WD repeat protein CSA 20121230 -9606 1163 CKS1B RP11-307C12.6 CKS1|PNAS-16|PNAS-18|ckshs1 HGNC:19083|MIM:116900|Ensembl:ENSG00000173207|HPRD:00299|Vega:OTTHUMG00000037413 1 1q21.2 CDC28 protein kinase regulatory subunit 1B protein-coding CKS1B CDC28 protein kinase regulatory subunit 1B O CDC2-associated protein CKS1|CDC28 protein kinase 1|CDC28 protein kinase 1B|CKS-1|NB4 apoptosis/differentiation related protein|PNAS-143|cell division control protein CKS1|cyclin-dependent kinases regulatory subunit 1 20121230 -9606 1164 CKS2 RP11-8C21.2 CKSHS2 HGNC:2000|MIM:116901|Ensembl:ENSG00000123975|HPRD:00300|Vega:OTTHUMG00000020180 9 9q22 CDC28 protein kinase regulatory subunit 2 protein-coding CKS2 CDC28 protein kinase regulatory subunit 2 O CDC28 protein kinase 2|CKS-2|CKS1(S. cerevisiae Cdc28/Cdc2 kinase subunit) homolog-2|cyclin-dependent kinases regulatory subunit 2 20121230 -9606 1165 SCAR2 - CLA1|CPD3 HGNC:2002|MIM:213200 9 9q34.3 spinocerebellar ataxia, autosomal recessive 2 unknown SCAR2 spinocerebellar ataxia, autosomal recessive 2 O - 20120622 -9606 1166 SCAX1 - CLA2|OPCA HGNC:2003|MIM:302500 X Xp11.21-q21.3 spinocerebellar ataxia, X-linked 1 unknown SCAX1 spinocerebellar ataxia, X-linked 1 O - 20120622 -9606 1167 CLA3 - CPD1|SCAR6 HGNC:2004|MIM:608029 20 20q11-q13 cerebellar ataxia 3 (cerebellar parenchyma disorder 1) unknown CLA3 cerebellar ataxia 3 (cerebellar parenchyma disorder 1) O - 20120713 -9606 1173 AP2M1 - AP50|CLAPM1|mu2 HGNC:564|MIM:601024|Ensembl:ENSG00000161203|HPRD:03014|Vega:OTTHUMG00000156822 3 3q28 adaptor-related protein complex 2, mu 1 subunit protein-coding AP2M1 adaptor-related protein complex 2, mu 1 subunit O AP-2 complex subunit mu|AP-2 mu 2 chain|AP-2 mu chain|HA2 50 kDA subunit|adapter-related protein complex 2 mu subunit|adaptin-mu2|adaptor protein complex AP-2 subunit mu|clathrin adaptor complex AP2, mu subunit|clathrin assembly protein complex 2 medium chain|clathrin coat adaptor protein AP50|clathrin coat assembly protein AP50|clathrin coat-associated protein AP50|clathrin-associated/assembly/adaptor protein, medium 1|plasma membrane adaptor AP-2 50 kDa protein|plasma membrane adaptor AP-2 50kDA protein 20121230 -9606 1174 AP1S1 - AP19|CLAPS1|SIGMA1A|WUGSC:H_DJ0747G18.2 HGNC:559|MIM:603531|Ensembl:ENSG00000106367|HPRD:04635|Vega:OTTHUMG00000157103 7 7q22.1 adaptor-related protein complex 1, sigma 1 subunit protein-coding AP1S1 adaptor-related protein complex 1, sigma 1 subunit O AP-1 complex subunit sigma-1A|HA1 19 kDa subunit|adapter-related protein complex 1 sigma-1A subunit|adaptor protein complex AP-1 sigma-1A subunit|clathrin assembly protein complex 1 sigma-1A small chain|clathrin coat assembly protein AP19|clathrin-associated/assembly/adaptor protein, small 1 (19kD)|golgi adaptor HA1/AP1 adaptin sigma-1A subunit|sigma 1a subunit of AP-1 clathrin|sigma-adaptin 1A|sigma1A subunit of AP-1 clathrin adaptor complex|sigma1A-adaptin 20121230 -9606 1175 AP2S1 - AP17|AP17-DELTA|CLAPS2 HGNC:565|MIM:602242|Ensembl:ENSG00000042753|HPRD:03762 19 19q13.2-q13.3 adaptor-related protein complex 2, sigma 1 subunit protein-coding AP2S1 adaptor-related protein complex 2, sigma 1 subunit O AP-2 complex subunit sigma|HA2 17 kDa subunit|adapter-related protein complex 2 sigma subunit|adaptor protein complex AP-2 subunit sigma|clathrin assembly protein 2 small chain|clathrin coat assembly protein AP17|clathrin coat-associated protein AP17|clathrin-associated/assembly/adaptor protein, small 2 (17kD)|plasma membrane adaptor AP-2 17 kDa protein|sigma2-adaptin 20121230 -9606 1176 AP3S1 - CLAPS3|Sigma3A HGNC:2013|MIM:601507|Ensembl:ENSG00000177879|HPRD:03298|Vega:OTTHUMG00000128887 5 5q22 adaptor-related protein complex 3, sigma 1 subunit protein-coding AP3S1 adaptor-related protein complex 3, sigma 1 subunit O AP-3 complex sigma-3A subunit|AP-3 complex subunit sigma-1|AP-3 complex subunit sigma-3A|adapter-related protein complex 3 sigma-1 subunit|clathrin-associated/assembly/adapter protein, small 3|clathrin-associated/assembly/adaptor protein, small 3 (22kD)|sigma-3A-adaptin|sigma-adaptin 3a|sigma3A-adaptin 20121230 -9606 1178 CLC - GAL10|Gal-10|LGALS10|LGALS10A|LPPL_HUMAN HGNC:2014|MIM:153310|Ensembl:ENSG00000105205|HPRD:08351 19 19q13.1 Charcot-Leyden crystal protein protein-coding CLC Charcot-Leyden crystal protein O eosinophil lysophospholipase|galectin 10|galectin-10|lysolecithin acylhydrolase 20121230 -9606 1179 CLCA1 - CACC|CACC1|CLCRG1|CaCC-1|GOB5|hCLCA1|hCaCC-1 HGNC:2015|MIM:603906|Ensembl:ENSG00000016490|HPRD:04880|Vega:OTTHUMG00000010254 1 1p22.3 chloride channel accessory 1 protein-coding CLCA1 chloride channel accessory 1 O CLCA family member 1, chloride channel regulator|calcium-activated chloride channel family member 1|calcium-activated chloride channel protein 1|calcium-activated chloride channel regulator 1|calcium-dependent chloride channel-1|chloride channel regulator 1|chloride channel, calcium activated, family member 1 20121230 -9606 1180 CLCN1 - CLC1 HGNC:2019|MIM:118425|Ensembl:ENSG00000188037|HPRD:00320|Vega:OTTHUMG00000152695 7 7q35 chloride channel, voltage-sensitive 1 protein-coding CLCN1 chloride channel, voltage-sensitive 1 O chloride channel 1, skeletal muscle|chloride channel protein 1|chloride channel protein, skeletal muscle|clC-1 20121230 -9606 1181 CLCN2 - CIC-2|CLC2|ECA2|ECA3|EGI11|EGI3|EGMA|EJM6|EJM8|clC-2 HGNC:2020|MIM:600570|Ensembl:ENSG00000114859|HPRD:02782|Vega:OTTHUMG00000156747 3 3q27-q28 chloride channel, voltage-sensitive 2 protein-coding CLCN2 chloride channel, voltage-sensitive 2 O chloride channel 2|chloride channel protein 2 20121230 -9606 1182 CLCN3 - CLC3|ClC-3 HGNC:2021|MIM:600580|Ensembl:ENSG00000109572|HPRD:02785|Vega:OTTHUMG00000160973 4 4q33 chloride channel, voltage-sensitive 3 protein-coding CLCN3 chloride channel, voltage-sensitive 3 O H(+)/Cl(-) exchange transporter 3|chloride channel 3|chloride channel protein 3|chloride transporter ClC-3 20121230 -9606 1183 CLCN4 - CLC4|ClC-4|ClC-4A HGNC:2022|MIM:302910|Ensembl:ENSG00000073464|HPRD:02362|Vega:OTTHUMG00000021125 X Xp22.3 chloride channel, voltage-sensitive 4 protein-coding CLCN4 chloride channel, voltage-sensitive 4 O H(+)/Cl(-) exchange transporter 4|chloride channel 4|chloride channel protein 4|chloride transporter ClC-4 20121230 -9606 1184 CLCN5 - CLC5|CLCK2|DENTS|NPHL1|NPHL2|XLRH|XRN|clC-5|hCIC-K2|hClC-K2 HGNC:2023|MIM:300008|Ensembl:ENSG00000171365|HPRD:02053|Vega:OTTHUMG00000021514 X Xp11.23-p11.22 chloride channel, voltage-sensitive 5 protein-coding CLCN5 chloride channel, voltage-sensitive 5 O H(+)/Cl(-) exchange transporter 5|chloride channel 5|chloride channel protein 5|chloride transporter ClC-5 20121230 -9606 1185 CLCN6 RP5-934G17.1 CLC-6 HGNC:2024|MIM:602726|Ensembl:ENSG00000011021|HPRD:04102|Vega:OTTHUMG00000002299 1 1p36 chloride channel, voltage-sensitive 6 protein-coding CLCN6 chloride channel, voltage-sensitive 6 O chloride transport protein 6 20121230 -9606 1186 CLCN7 LA16c-390E6.1 CLC-7|CLC7|OPTA2|OPTB4|PPP1R63 HGNC:2025|MIM:602727|Ensembl:ENSG00000103249|HPRD:04103|Vega:OTTHUMG00000044467 16 16p13 chloride channel, voltage-sensitive 7 protein-coding CLCN7 chloride channel, voltage-sensitive 7 O H(+)/Cl(-) exchange transporter 7|chloride channel 7 alpha subunit|chloride channel protein 7|protein phosphatase 1, regulatory subunit 63 20121230 -9606 1187 CLCNKA RP11-5P18.7 CLCK1|ClC-K1|hClC-Ka HGNC:2026|MIM:602024|Ensembl:ENSG00000186510|HPRD:03608|Vega:OTTHUMG00000009529 1 1p36 chloride channel, voltage-sensitive Ka protein-coding CLCNKA chloride channel, voltage-sensitive Ka O chloride channel Ka|chloride channel protein ClC-Ka|chloride channel, kidney, A 20121230 -9606 1188 CLCNKB RP11-5P18.8 CLCKB|ClC-K2|ClC-Kb HGNC:2027|MIM:602023|Ensembl:ENSG00000184908|HPRD:03607|Vega:OTTHUMG00000009530 1 1p36 chloride channel, voltage-sensitive Kb protein-coding CLCNKB chloride channel, voltage-sensitive Kb O chloride channel protein ClC-Kb|chloride channel, kidney, B 20121230 -9606 1191 CLU AAG4 APO-J|APOJ|CLI|CLU1|CLU2|KUB1|NA1/NA2|SGP-2|SGP2|SP-40|TRPM-2|TRPM2 HGNC:2095|MIM:185430|Ensembl:ENSG00000120885|HPRD:01706|Vega:OTTHUMG00000102114 8 8p21-p12 clusterin protein-coding CLU clusterin O aging-associated protein 4|apolipoprotein J|complement cytolysis inhibitor|complement lysis inhibitor|complement-associated protein SP-40,40|ku70-binding protein 1|sulfated glycoprotein 2|testosterone-repressed prostate message 2 20121230 -9606 1192 CLIC1 DADB-110M10.1 G6|NCC27 HGNC:2062|MIM:602872|Ensembl:ENSG00000213719|HPRD:04188|Vega:OTTHUMG00000031103 6 6p21.3 chloride intracellular channel 1 protein-coding CLIC1 chloride intracellular channel 1 O RNCC protein|chloride channel ABP|chloride intracellular channel protein 1|hRNCC|nuclear chloride ion channel 27|nuclear chloride ion channel protein|p64CLCP|regulatory nuclear chloride ion channel protein 20121230 -9606 1193 CLIC2 RP13-228J13.7 CLIC2b|MRXS32|XAP121 HGNC:2063|MIM:300138|Ensembl:ENSG00000155962|HPRD:02139|Vega:OTTHUMG00000022660 X Xq28 chloride intracellular channel 2 protein-coding CLIC2 chloride intracellular channel 2 O chloride intracellular channel protein 2 20121230 -9606 1195 CLK1 - CLK|CLK/STY|STY HGNC:2068|MIM:601951|Ensembl:ENSG00000013441|HPRD:09058|Vega:OTTHUMG00000132784 2 2q33 CDC-like kinase 1 protein-coding CLK1 CDC-like kinase 1 O CDC28/CDC2-like kinase|dual specificity protein kinase CLK1|protein tyrosine kinase STY 20121230 -9606 1196 CLK2 - hCLK2 HGNC:2069|MIM:602989|Ensembl:ENSG00000176444|HPRD:04289|Vega:OTTHUMG00000035873 1 1q21 CDC-like kinase 2 protein-coding CLK2 CDC-like kinase 2 O CLK kinase|dual specificity protein kinase CLK2 20121230 -9606 1197 CLK2P tcag7.1259 - HGNC:2070 7 7p15.3 CDC-like kinase 2, pseudogene pseudo CLK2P CDC-like kinase 2, pseudogene O - 20121230 -9606 1198 CLK3 - PHCLK3|PHCLK3/152 HGNC:2071|MIM:602990|Ensembl:ENSG00000179335|HPRD:04290|Vega:OTTHUMG00000141320 15 15q24 CDC-like kinase 3 protein-coding CLK3 CDC-like kinase 3 O dual specificity protein kinase CLK3 20121230 -9606 1200 TPP1 GIG1 CLN2|LPIC|TPP-1 HGNC:2073|MIM:607998|Ensembl:ENSG00000166340|HPRD:06415|Vega:OTTHUMG00000133404 11 11p15 tripeptidyl peptidase I protein-coding TPP1 tripeptidyl peptidase I O cell growth-inhibiting gene 1 protein|growth-inhibiting protein 1|lysosomal pepstatin insensitive protease|tripeptidyl aminopeptidase|tripeptidyl-peptidase 1 20121230 -9606 1201 CLN3 - BTS|JNCL HGNC:2074|MIM:607042|Ensembl:ENSG00000188603|Ensembl:ENSG00000261832|HPRD:08450|Vega:OTTHUMG00000097024|Vega:OTTHUMG00000175737 16 16p12.1 ceroid-lipofuscinosis, neuronal 3 protein-coding CLN3 ceroid-lipofuscinosis, neuronal 3 O batten disease protein|battenin 20121230 -9606 1203 CLN5 - NCL HGNC:2076|MIM:608102|Ensembl:ENSG00000102805|HPRD:07619|Vega:OTTHUMG00000017100 13 13q21.1-q32 ceroid-lipofuscinosis, neuronal 5 protein-coding CLN5 ceroid-lipofuscinosis, neuronal 5 O ceroid-lipofuscinosis neuronal protein 5 20121230 -9606 1204 CLNS1AP1 - CLNS1B|ICln HGNC:2081 6 6p12-q13 chloride channel, nucleotide-sensitive, 1A pseudogene 1 pseudo CLNS1AP1 chloride channel, nucleotide-sensitive, 1A pseudogene 1 O - 20121230 -9606 1207 CLNS1A - CLCI|CLNS1B|ICln HGNC:2080|MIM:602158|Ensembl:ENSG00000074201|HPRD:03694|Vega:OTTHUMG00000165143 11 11q13.5-q14 chloride channel, nucleotide-sensitive, 1A protein-coding CLNS1A chloride channel, nucleotide-sensitive, 1A O chloride channel regulatory protein|chloride channel, nucleotide sensitive 1A|chloride conductance regulatory protein ICln|chloride ion current inducer protein|i(Cln)|methylosome subunit pICln|reticulocyte pICln|reticulocyte protein ICln 20121230 -9606 1208 CLPS - - HGNC:2085|MIM:120105|Ensembl:ENSG00000137392|HPRD:00356|Vega:OTTHUMG00000014578 6 6p21.31 colipase, pancreatic protein-coding CLPS colipase, pancreatic O colipase|pancreatic colipase preproprotein 20121230 -9606 1209 CLPTM1 - - HGNC:2087|MIM:604783|Ensembl:ENSG00000104853|Vega:OTTHUMG00000180849 19 19q13.3 cleft lip and palate associated transmembrane protein 1 protein-coding CLPTM1 cleft lip and palate associated transmembrane protein 1 O cleft lip and palate transmembrane protein 1 20121230 -9606 1211 CLTA - LCA HGNC:2090|MIM:118960|Ensembl:ENSG00000122705|HPRD:00351|Vega:OTTHUMG00000019896 9 9p13 clathrin, light chain A protein-coding CLTA clathrin, light chain A O clathrin light chain A|clathrin, light polypeptide (Lca) 20121230 -9606 1212 CLTB - LCB HGNC:2091|MIM:118970|Ensembl:ENSG00000175416|HPRD:00352|Vega:OTTHUMG00000130662 5 5q35 clathrin, light chain B protein-coding CLTB clathrin, light chain B O clathrin light chain B|clathrin, light chain (Lcb)|clathrin, light polypeptide (Lcb) 20121230 -9606 1213 CLTC - CHC|CHC17|CLH-17|CLTCL2|Hc HGNC:2092|MIM:118955|Ensembl:ENSG00000141367|HPRD:00350|Vega:OTTHUMG00000134279 17 17q11-qter clathrin, heavy chain (Hc) protein-coding CLTC clathrin, heavy chain (Hc) O clathrin heavy chain 1|clathrin heavy chain on chromosome 17|clathrin, heavy polypeptide (Hc)|clathrin, heavy polypeptide-like 2 20121230 -9606 1215 CMA1 - CYH|MCT1|chymase HGNC:2097|MIM:118938|Ensembl:ENSG00000092009|HPRD:00346|Vega:OTTHUMG00000140181 14 14q11.2 chymase 1, mast cell protein-coding CMA1 chymase 1, mast cell O alpha-chymase|chymase|chymase 1 preproprotein transcript E|chymase 1 preproprotein transcript I|chymase, heart|chymase, mast cell|mast cell protease I 20121230 -9606 1218 CMD1B - CMPD1|FDC HGNC:2102|MIM:600884 9 9q13-q22 cardiomyopathy, dilated 1B (autosomal dominant) unknown CMD1B cardiomyopathy, dilated 1B (autosomal dominant) O - 20120622 -9606 1219 CMD1C - CMPD3 HGNC:2103|MIM:601493 10 10q21-q23 cardiomyopathy, dilated 1C (autosomal dominant) unknown CMD1C cardiomyopathy, dilated 1C (autosomal dominant) O - 20120622 -9606 1222 CMD1F - CDCD3|LGMD1D|LGMD1E HGNC:2106|MIM:602067 6 6q23 cardiomyopathy, dilated 1F (autosomal dominant) unknown CMD1F cardiomyopathy, dilated 1F (autosomal dominant) O - 20120622 -9606 1224 CMD2A - - HGNC:2110 - - cardiomyopathy, dilated 2A (autosomal recessive) unknown CMD2A cardiomyopathy, dilated 2A (autosomal recessive) O - 20110215 -9606 1230 CCR1 - CD191|CKR-1|CKR1|CMKBR1|HM145|MIP1aR|SCYAR1 HGNC:1602|MIM:601159|Ensembl:ENSG00000163823|HPRD:03101|Vega:OTTHUMG00000133451 3 3p21 chemokine (C-C motif) receptor 1 protein-coding CCR1 chemokine (C-C motif) receptor 1 O C-C CKR-1|C-C chemokine receptor type 1|CC-CKR-1|CCR-1|LD78 receptor|MIP-1alpha-R|RANTES receptor|RANTES-R|macrophage inflammatory protein 1-alpha receptor 20121230 -9606 1232 CCR3 - CC-CKR-3|CD193|CKR3|CMKBR3 HGNC:1604|MIM:601268|Ensembl:ENSG00000183625|HPRD:03167|Vega:OTTHUMG00000133484 3 3p21.3 chemokine (C-C motif) receptor 3 protein-coding CCR3 chemokine (C-C motif) receptor 3 O C-C CKR-3|C-C chemokine receptor type 3|CC chemokine receptor 3|CCR-3|b-chemokine receptor|eosinophil CC chemokine receptor 3|eosinophil eotaxin receptor 20121230 -9606 1233 CCR4 - CC-CKR-4|CD194|CKR4|CMKBR4|ChemR13|HGCN:14099|K5-5 HGNC:1605|MIM:604836|Ensembl:ENSG00000183813|HPRD:05324|Vega:OTTHUMG00000130752 3 3p24 chemokine (C-C motif) receptor 4 protein-coding CCR4 chemokine (C-C motif) receptor 4 O C-C CKR-4|C-C chemokine receptor type 4|CCR-4|chemokine (C-C) receptor 4 20121230 -9606 1234 CCR5 - CC-CKR-5|CCCKR5|CCR-5|CD195|CKR-5|CKR5|CMKBR5|IDDM22 HGNC:1606|MIM:601373|Ensembl:ENSG00000160791|HPRD:03223 3 3p21.31 chemokine (C-C motif) receptor 5 (gene/pseudogene) protein-coding CCR5 chemokine (C-C motif) receptor 5 (gene/pseudogene) O C-C chemokine receptor type 5|C-C motif chemokine receptor 5 A159A|HIV-1 fusion coreceptor|chemokine receptor CCR5|chemr13 20121230 -9606 1235 CCR6 - BN-1|C-C CKR-6|CC-CKR-6|CCR-6|CD196|CKR-L3|CKRL3|CMKBR6|DCR2|DRY6|GPR29|GPRCY4|STRL22 HGNC:1607|MIM:601835|Ensembl:ENSG00000112486|HPRD:03498|Vega:OTTHUMG00000016015 6 6q27 chemokine (C-C motif) receptor 6 protein-coding CCR6 chemokine (C-C motif) receptor 6 O C-C chemokine receptor type 6|G protein-coupled receptor 29|G-protein coupled receptor 29|LARC receptor|chemokine (C-C) receptor 6|chemokine receptor-like 3|seven-transmembrane receptor, lymphocyte, 22 20121230 -9606 1236 CCR7 - BLR2|CD197|CDw197|CMKBR7|EBI1 HGNC:1608|MIM:600242|Ensembl:ENSG00000126353|HPRD:02588|Vega:OTTHUMG00000133375 17 17q12-q21.2 chemokine (C-C motif) receptor 7 protein-coding CCR7 chemokine (C-C motif) receptor 7 O C-C CKR-7|C-C chemokine receptor type 7|CC chemokine receptor 7|CC-CKR-7|CCR-7|EBV-induced G protein-coupled receptor 1|EBV-induced G-protein coupled receptor 1|Epstein-Barr virus induced G-protein coupled receptor|Epstein-Barr virus induced gene 1|MIP-3 beta receptor|chemokine (C-C) receptor 7|epstein-Barr virus-induced G-protein coupled receptor 1|lymphocyte-specific G protein-coupled peptide receptor 20121230 -9606 1237 CCR8 - CC-CKR-8|CCR-8|CDw198|CKRL1|CMKBR8|CMKBRL2|CY6|GPRCY6|TER1 HGNC:1609|MIM:601834|Ensembl:ENSG00000179934|HPRD:03497|Vega:OTTHUMG00000131290 3 3p22 chemokine (C-C motif) receptor 8 protein-coding CCR8 chemokine (C-C motif) receptor 8 O C-C chemokine receptor type 8|CC chemokine receptor 8|CC chemokine receptor CHEMR1|CC-chemokine receptor chemr1|chemokine (C-C) receptor 8|chemokine (C-C) receptor-like 2|chemokine receptor-like 1 20121230 -9606 1238 CCBP2 - CCR10|CCR9|CMKBR9|D6|hD6 HGNC:1565|MIM:602648|Ensembl:ENSG00000144648|HPRD:09095|Vega:OTTHUMG00000133040 3 3p21.3 chemokine binding protein 2 protein-coding CCBP2 chemokine binding protein 2 O C-C chemokine receptor D6|CC-chemokine-binding receptor JAB61|chemokine (C-C motif) receptor 9|chemokine (C-C) receptor 9|chemokine receptor CCR-10|chemokine receptor CCR-9|chemokine receptor D6|chemokine-binding protein 2|chemokine-binding protein D6 20121230 -9606 1240 CMKLR1 - CHEMERINR|ChemR23|DEZ|RVER1 HGNC:2121|MIM:602351|Ensembl:ENSG00000174600|HPRD:03829|Vega:OTTHUMG00000169576 12 12q24.1 chemokine-like receptor 1 protein-coding CMKLR1 chemokine-like receptor 1 O G-protein coupled receptor ChemR23|G-protein coupled receptor DEZ|chemokine receptor-like 1|orphan G-protein coupled receptor, Dez|resolvin E1 receptor 20121230 -9606 1241 LTB4R - BLT1|BLTR|CMKRL1|GPR16|LTB4R1|LTBR1|P2RY7|P2Y7 HGNC:6713|MIM:601531|Ensembl:ENSG00000213903|HPRD:03320|Vega:OTTHUMG00000029346 14 14q11.2-q12 leukotriene B4 receptor protein-coding LTB4R leukotriene B4 receptor O G protein-coupled receptor 16|G-protein coupled receptor 16|LTB4-R 1|LTB4-R1|P2Y purinoceptor 7|chemoattractant receptor-like 1|chemokine receptor-like 1|leukotriene B4 receptor 1|purinergic receptor P2Y, G-protein coupled, 7 20121230 -9606 1243 CMM - CMM1|DNS|FAMMM|MLM HGNC:2124|MIM:155600 1 1p36 cutaneous malignant melanoma/dysplastic nevus unknown CMM cutaneous malignant melanoma/dysplastic nevus O - 20120622 -9606 1244 ABCC2 RP11-114F7.2 ABC30|CMOAT|DJS|MRP2|cMRP HGNC:53|MIM:601107|Ensembl:ENSG00000023839|HPRD:03065|Vega:OTTHUMG00000018895 10 10q24 ATP-binding cassette, sub-family C (CFTR/MRP), member 2 protein-coding ABCC2 ATP-binding cassette, sub-family C (CFTR/MRP), member 2 O ATP-binding cassette sub-family C member 2|canalicular multidrug resistance protein|canalicular multispecific organic anion transporter 1|multidrug resistance-associated protein 2 20121230 -9606 1245 CMR1A - - HGNC:2126 - - cardiomyopathy, restrictive 1A (autosomal dominant) unknown CMR1A cardiomyopathy, restrictive 1A (autosomal dominant) O - 20110215 -9606 1246 CMR2A - - HGNC:2127 - - cardiomyopathy, restrictive 2A (autosomal recessive) unknown CMR2A cardiomyopathy, restrictive 2A (autosomal recessive) O - 20110215 -9606 1247 CMR3A - - HGNC:2128 X Xpter-qter cardiomyopathy, restrictive 3A (X-linked) unknown CMR3A cardiomyopathy, restrictive 3A (X-linked) O - 20110215 -9606 1253 CMTX2 - - HGNC:2137|MIM:302801 X Xp22 Charcot-Marie-Tooth neuropathy, X-linked 2 (recessive) unknown CMTX2 Charcot-Marie-Tooth neuropathy, X-linked 2 (recessive) O - 20120622 -9606 1254 CMTX3 - - HGNC:2138|MIM:302802 X - Charcot-Marie-Tooth neuropathy, X-linked 3 (dominant) unknown CMTX3 Charcot-Marie-Tooth neuropathy, X-linked 3 (dominant) O - 20120622 -9606 1255 CNA1 - - HGNC:2139|MIM:121400 12 12q cornea plana 1 (autosomal dominant) unknown CNA1 cornea plana 1 (autosomal dominant) O - 20110215 -9606 1257 CNC - CNC2 HGNC:2141|MIM:605244 2 2p16 Carney complex, multiple neoplasia and lentiginosis unknown CNC Carney complex, multiple neoplasia and lentiginosis O - 20120622 -9606 1258 CNGB1 - CNCG2|CNCG3L|CNCG4|CNG4|CNGB1B|GAR1|GARP|RCNC2|RCNCb|RCNCbeta|RP45 HGNC:2151|MIM:600724|Ensembl:ENSG00000070729|HPRD:07204|Vega:OTTHUMG00000154810 16 16q13 cyclic nucleotide gated channel beta 1 protein-coding CNGB1 cyclic nucleotide gated channel beta 1 O CNG channel beta-1|CNG-4|cyclic nucleotide-gated cation channel 4|cyclic nucleotide-gated cation channel beta-1|cyclic nucleotide-gated cation channel gamma|cyclic nucleotide-gated cation channel modulatory subunit|cyclic nucleotide-gated channel beta-1|glutamic acid-rich protein|glutamic-acid-rich protein 20121230 -9606 1259 CNGA1 - CNCG|CNCG1|CNG-1|CNG1|RCNC1|RCNCa|RCNCalpha|RP49 HGNC:2148|MIM:123825|Ensembl:ENSG00000198515|HPRD:00445|Vega:OTTHUMG00000160668 4 4p12 cyclic nucleotide gated channel alpha 1 protein-coding CNGA1 cyclic nucleotide gated channel alpha 1 O CNG channel alpha-1|cGMP-gated cation channel alpha-1|cyclic nucleotide-gated cation channel 1|cyclic nucleotide-gated channel alpha-1|cyclic nucleotide-gated channel, photoreceptor|interleukin-1 homologue|rod photoreceptor cGMP-gated channel subunit alpha 20121230 -9606 1260 CNGA2 - CNCA|CNCA1|CNG2|OCNC1|OCNCALPHA|OCNCa HGNC:2149|MIM:300338|Ensembl:ENSG00000183862|HPRD:08946|Vega:OTTHUMG00000024173 X Xq27 cyclic nucleotide gated channel alpha 2 protein-coding CNGA2 cyclic nucleotide gated channel alpha 2 O CNG channel alpha-2|CNG-2|cyclic nucleotide-gated cation channel 2|cyclic nucleotide-gated channel alpha-2|cyclic nucleotide-gated olfactory channel|cyclic-nucleotide-gated cation channel 2|cyclic-nucleotide-gated olfactory channel 20121230 -9606 1261 CNGA3 - ACHM2|CCNC1|CCNCa|CCNCalpha|CNCG3|CNG3 HGNC:2150|MIM:600053|Ensembl:ENSG00000144191|HPRD:02504|Vega:OTTHUMG00000130561 2 2q11.2 cyclic nucleotide gated channel alpha 3 protein-coding CNGA3 cyclic nucleotide gated channel alpha 3 O CNG channel alpha-3|CNG-3|cone photoreceptor cGMP-gated channel alpha subunit|cone photoreceptor cGMP-gated channel subunit alpha|cyclic nucleotide-gated cation channel alpha-3|cyclic nucleotide-gated channel alpha-3 20121230 -9606 1262 CNGA4 - CNCA2|CNG-4|CNG4|CNG5|CNGB2|OCNC2|OCNCBETA|OCNCb HGNC:2152|MIM:609472|Ensembl:ENSG00000132259|HPRD:18724|Vega:OTTHUMG00000165379 11 11p15.4 cyclic nucleotide gated channel alpha 4 protein-coding CNGA4 cyclic nucleotide gated channel alpha 4 O CNG channel alpha-4|cyclic nucleotide gated channel beta 2|cyclic nucleotide-gated cation channel alpha-4 20121230 -9606 1263 PLK3 RP11-269F19.6 CNK|FNK|PRK HGNC:2154|MIM:602913|Ensembl:ENSG00000173846|HPRD:04222|Vega:OTTHUMG00000008491 1 1p34.1 polo-like kinase 3 protein-coding PLK3 polo-like kinase 3 O FGF-inducible kinase|PLK-3|cytokine-inducible kinase|cytokine-inducible serine/threonine-protein kinase|proliferation-related kinase|serine/threonine-protein kinase PLK3 20121230 -9606 1264 CNN1 - SMCC|Sm-Calp HGNC:2155|MIM:600806|Ensembl:ENSG00000130176|HPRD:02884|Vega:OTTHUMG00000182033 19 19p13.2-p13.1 calponin 1, basic, smooth muscle protein-coding CNN1 calponin 1, basic, smooth muscle O basic calponin|calponin H1, smooth muscle|calponin-1|calponins, basic 20121230 -9606 1265 CNN2 - - HGNC:2156|MIM:602373|Ensembl:ENSG00000064666|HPRD:03847|Vega:OTTHUMG00000172729 19 19p13.3 calponin 2 protein-coding CNN2 calponin 2 O calponin H2, smooth muscle|calponin-2|neutral calponin 20121230 -9606 1266 CNN3 - - HGNC:2157|MIM:602374|Ensembl:ENSG00000117519|HPRD:03848|Vega:OTTHUMG00000010783 1 1p22-p21 calponin 3, acidic protein-coding CNN3 calponin 3, acidic O calponin, acidic isoform|calponin-3|dJ639P13.2.2 (acidic calponin 3) 20121230 -9606 1267 CNP - CNP1 HGNC:2158|MIM:123830|Ensembl:ENSG00000173786|HPRD:00448|Vega:OTTHUMG00000133502 17 17q21 2',3'-cyclic nucleotide 3' phosphodiesterase protein-coding CNP 2',3'-cyclic nucleotide 3' phosphodiesterase O 2', 3' cyclic nucleotide 3' phosphohydrolase|2',3'-cyclic-nucleotide 3'-phosphodiesterase|CNPase 20121230 -9606 1268 CNR1 RP1-23D17.1 CANN6|CB-R|CB1|CB1A|CB1K5|CB1R|CNR HGNC:2159|MIM:114610|Ensembl:ENSG00000118432|HPRD:00259|Vega:OTTHUMG00000015184 6 6q14-q15 cannabinoid receptor 1 (brain) protein-coding CNR1 cannabinoid receptor 1 (brain) O cannabinoid receptor 1|central cannabinoid receptor 20121230 -9606 1269 CNR2 RP11-4M23.1 CB-2|CB2|CX5 HGNC:2160|MIM:605051|Ensembl:ENSG00000188822|HPRD:05444|Vega:OTTHUMG00000013892 1 1p36.11 cannabinoid receptor 2 (macrophage) protein-coding CNR2 cannabinoid receptor 2 (macrophage) O cannabinoid receptor 2|testis-dominant CNR2 isoform CB2 20121230 -9606 1270 CNTF - HCNTF HGNC:2169|MIM:118945|Ensembl:ENSG00000242689|HPRD:00347|Vega:OTTHUMG00000137476 11 11q12.2 ciliary neurotrophic factor protein-coding CNTF ciliary neurotrophic factor O - 20121230 -9606 1271 CNTFR RP11-296L22.1 - HGNC:2170|MIM:118946|Ensembl:ENSG00000122756|HPRD:00348|Vega:OTTHUMG00000019821 9 9p13 ciliary neurotrophic factor receptor protein-coding CNTFR ciliary neurotrophic factor receptor O CNTF receptor subunit alpha|CNTFR-alpha|ciliary neurotrophic factor receptor subunit alpha 20121230 -9606 1272 CNTN1 - F3|GP135 HGNC:2171|MIM:600016|Ensembl:ENSG00000018236|HPRD:07189|Vega:OTTHUMG00000169362 12 12q11-q12 contactin 1 protein-coding CNTN1 contactin 1 O contactin-1|glycoprotein gP135|neural cell surface protein F3 20121230 -9606 1275 COD2 - CORDX2 HGNC:2182|MIM:300085 X Xq27 cone dystrophy 2 (X-linked) unknown COD2 cone dystrophy 2 (X-linked) O - 20120622 -9606 1277 COL1A1 - OI4 HGNC:2197|MIM:120150|Ensembl:ENSG00000108821|HPRD:00362|Vega:OTTHUMG00000148674 17 17q21.33 collagen, type I, alpha 1 protein-coding COL1A1 collagen, type I, alpha 1 O alpha-1 type I collagen|collagen alpha 1 chain type I|collagen alpha-1(I) chain|collagen alpha-1(I) chain preproprotein|collagen of skin, tendon and bone, alpha-1 chain|pro-alpha-1 collagen type 1 20121230 -9606 1278 COL1A2 - OI4 HGNC:2198|MIM:120160|Ensembl:ENSG00000164692|HPRD:00363|Vega:OTTHUMG00000148675 7 7q22.1 collagen, type I, alpha 2 protein-coding COL1A2 collagen, type I, alpha 2 O alpha 2(I)-collagen|alpha-2 type I collagen|collagen I, alpha-2 polypeptide|collagen alpha-2(I) chain|collagen of skin, tendon and bone, alpha-2 chain|type I procollagen 20121230 -9606 1279 COL1AR - COLR HGNC:2199|MIM:120340 15 - collagen, type I, alpha, receptor unknown COL1AR collagen, type I, alpha, receptor O - 20080828 -9606 1280 COL2A1 - ANFH|AOM|COL11A3|SEDC HGNC:2200|MIM:120140|Ensembl:ENSG00000139219|HPRD:00361|Vega:OTTHUMG00000149896 12 12q13.11 collagen, type II, alpha 1 protein-coding COL2A1 collagen, type II, alpha 1 O alpha-1 type II collagen|cartilage collagen|chondrocalcin|collagen II, alpha-1 polypeptide|collagen alpha-1(II) chain 20121230 -9606 1281 COL3A1 - EDS4A HGNC:2201|MIM:120180|Ensembl:ENSG00000168542|HPRD:00365|Vega:OTTHUMG00000132648 2 2q31 collagen, type III, alpha 1 protein-coding COL3A1 collagen, type III, alpha 1 O Ehlers-Danlos syndrome type IV, autosomal dominant|alpha1 (III) collagen|collagen alpha-1(III) chain|collagen, fetal 20121230 -9606 1282 COL4A1 RP11-472K17.2 HANAC|POREN1|arresten HGNC:2202|MIM:120130|Ensembl:ENSG00000187498|HPRD:00359|Vega:OTTHUMG00000017342 13 13q34 collagen, type IV, alpha 1 protein-coding COL4A1 collagen, type IV, alpha 1 O COL4A1 NC1 domain|collagen IV, alpha-1 polypeptide|collagen alpha-1(IV) chain|collagen of basement membrane, alpha-1 chain 20121230 -9606 1283 CTD - - HGNC:2497|MIM:300216 - - Coats disease unknown CTD Coats disease O - 20121209 -9606 1284 COL4A2 RP11-90L1.2 ICH|POREN2 HGNC:2203|MIM:120090|Ensembl:ENSG00000134871|HPRD:00355|Vega:OTTHUMG00000017344 13 13q34 collagen, type IV, alpha 2 protein-coding COL4A2 collagen, type IV, alpha 2 O canstatin|collagen alpha-2(IV) chain 20121230 -9606 1285 COL4A3 - - HGNC:2204|MIM:120070|Ensembl:ENSG00000169031|HPRD:00354|Vega:OTTHUMG00000149891 2 2q36-q37 collagen, type IV, alpha 3 (Goodpasture antigen) protein-coding COL4A3 collagen, type IV, alpha 3 (Goodpasture antigen) O collagen IV, alpha-3 polypeptide|collagen alpha-3(IV) chain|tumstatin 20121230 -9606 1286 COL4A4 - CA44 HGNC:2206|MIM:120131|Ensembl:ENSG00000081052|HPRD:00360|Vega:OTTHUMG00000149892 2 2q35-q37 collagen, type IV, alpha 4 protein-coding COL4A4 collagen, type IV, alpha 4 O Collagen IV, alpha-4 polypeptide|collagen alpha-4(IV) chain|collagen of basement membrane, alpha-4 chain 20121230 -9606 1287 COL4A5 RP6-24A23.5 ASLN|ATS|CA54 HGNC:2207|MIM:303630|Ensembl:ENSG00000188153|HPRD:02363|Vega:OTTHUMG00000022182 X Xq22 collagen, type IV, alpha 5 protein-coding COL4A5 collagen, type IV, alpha 5 O collagen IV, alpha-5 polypeptide|collagen alpha-5(IV) chain|collagen of basement membrane, alpha-5 chain|dA149D17.3|dA24A23.1 20121230 -9606 1288 COL4A6 RP5-889N15.4 CXDELq22.3|DELXq22.3 HGNC:2208|MIM:303631|Ensembl:ENSG00000197565|HPRD:02364|Vega:OTTHUMG00000022179 X Xq22 collagen, type IV, alpha 6 protein-coding COL4A6 collagen, type IV, alpha 6 O collagen IV, alpha-6 polypeptide|collagen alpha 6 type IV|collagen alpha-6(IV) chain|collagen of basement membrane, alpha-6|dJ889N15.4 (Collagen Alpha 6(IV)) 20121230 -9606 1289 COL5A1 RP11-263F14.1 - HGNC:2209|MIM:120215|Ensembl:ENSG00000130635|HPRD:00368|Vega:OTTHUMG00000020891 9 9q34.2-q34.3 collagen, type V, alpha 1 protein-coding COL5A1 collagen, type V, alpha 1 O alpha 1 type V collagen|collagen alpha-1(V) chain 20121230 -9606 1290 COL5A2 - - HGNC:2210|MIM:120190|Ensembl:ENSG00000204262|HPRD:00366|Vega:OTTHUMG00000149842 2 2q14-q32 collagen, type V, alpha 2 protein-coding COL5A2 collagen, type V, alpha 2 O AB collagen|collagen alpha-2(V) chain|collagen, fetal membrane, A polypeptide|type V preprocollagen alpha 2 chain 20121230 -9606 1291 COL6A1 - OPLL HGNC:2211|MIM:120220|Ensembl:ENSG00000142156|HPRD:00370|Vega:OTTHUMG00000090440 21 21q22.3 collagen, type VI, alpha 1 protein-coding COL6A1 collagen, type VI, alpha 1 O alpha 1 (VI) chain (61 AA)|collagen VI, alpha-1 polypeptide|collagen alpha-1(VI) chain 20121230 -9606 1292 COL6A2 - PP3610 HGNC:2212|MIM:120240|Ensembl:ENSG00000142173|HPRD:02110|Vega:OTTHUMG00000090489 21 21q22.3 collagen, type VI, alpha 2 protein-coding COL6A2 collagen, type VI, alpha 2 O collagen VI, alpha-2 polypeptide|collagen alpha-2(VI) chain|human mRNA for collagen VI alpha-2 C-terminal globular domain 20121230 -9606 1293 COL6A3 - - HGNC:2213|MIM:120250|Ensembl:ENSG00000163359|HPRD:00371|Vega:OTTHUMG00000150020 2 2q37 collagen, type VI, alpha 3 protein-coding COL6A3 collagen, type VI, alpha 3 O collagen VI, alpha-3 polypeptide|collagen alpha-3(VI) chain 20121230 -9606 1294 COL7A1 - EBD1|EBDCT|EBR1 HGNC:2214|MIM:120120|Ensembl:ENSG00000114270|HPRD:00358|Vega:OTTHUMG00000133541 3 3p21.1 collagen, type VII, alpha 1 protein-coding COL7A1 collagen, type VII, alpha 1 O LC collagen|collagen VII, alpha-1 polypeptide|collagen alpha-1(VII) chain|long-chain collagen 20121230 -9606 1295 COL8A1 - C3orf7 HGNC:2215|MIM:120251|Ensembl:ENSG00000144810|HPRD:00372|Vega:OTTHUMG00000148669 3 3q12.3 collagen, type VIII, alpha 1 protein-coding COL8A1 collagen, type VIII, alpha 1 O cell proliferation-inducing protein 41|collagen VIII, alpha-1 polypeptide|collagen alpha-1(VIII) chain|endothelial collagen|smooth muscle cell-expressed and macrophage conditioned medium-induced protein smag-64 20121230 -9606 1296 COL8A2 RP4-665N4.3 FECD|FECD1|PPCD|PPCD2 HGNC:2216|MIM:120252|Ensembl:ENSG00000171812|HPRD:08347|Vega:OTTHUMG00000007665 1 1p34.2 collagen, type VIII, alpha 2 protein-coding COL8A2 collagen, type VIII, alpha 2 O collagen VIII, alpha-2 polypeptide|collagen alpha-2(VIII) chain|dJ665N4.1 (collagen type VIII alpha 2)|endothelial collagen 20121230 -9606 1297 COL9A1 RP1-138F4.2 DJ149L1.1.2|EDM6|MED|STL4 HGNC:2217|MIM:120210|Ensembl:ENSG00000112280|HPRD:00367|Vega:OTTHUMG00000014988 6 6q12-q14 collagen, type IX, alpha 1 protein-coding COL9A1 collagen, type IX, alpha 1 O alpha-1(IX) collagen chain|cartilage-specific short collagen|collagen IX, alpha-1 polypeptide|collagen alpha-1(IX) chain 20121230 -9606 1298 COL9A2 - DJ39G22.4|EDM2|MED|STL5 HGNC:2218|MIM:120260|Ensembl:ENSG00000049089|HPRD:00373|Vega:OTTHUMG00000005761 1 1p33-p32 collagen, type IX, alpha 2 protein-coding COL9A2 collagen, type IX, alpha 2 O alpha 2 type IX collagen|collagen IX, alpha-2 polypeptide|collagen alpha-2(IX) chain 20121230 -9606 1299 COL9A3 RP5-885L7.6 DJ885L7.4.1|EDM3|IDD|MED HGNC:2219|MIM:120270|Ensembl:ENSG00000092758|HPRD:00374|Vega:OTTHUMG00000032938 20 20q13.3 collagen, type IX, alpha 3 protein-coding COL9A3 collagen, type IX, alpha 3 O collagen IX, alpha-3 polypeptide|collagen alpha-3(IX) chain|collagen type IX proteoglycan 20121230 -9606 1300 COL10A1 RP1-136O14.2 - HGNC:2185|MIM:120110|Ensembl:ENSG00000123500|HPRD:00357|Vega:OTTHUMG00000015426 6 6q21-q22 collagen, type X, alpha 1 protein-coding COL10A1 collagen, type X, alpha 1 O Schmid metaphyseal chondrodysplasia|collagen X, alpha-1 polypeptide|collagen alpha-1(X) chain 20121230 -9606 1301 COL11A1 - CO11A1|COLL6|STL2 HGNC:2186|MIM:120280|Ensembl:ENSG00000060718|HPRD:00375|Vega:OTTHUMG00000010872 1 1p21 collagen, type XI, alpha 1 protein-coding COL11A1 collagen, type XI, alpha 1 O collagen XI, alpha-1 polypeptide|collagen alpha-1(XI) chain 20121230 -9606 1302 COL11A2 DADB-100D22.2 DFNA13|DFNB53|FBCG2|HKE5|PARP|STL3 HGNC:2187|MIM:120290|Ensembl:ENSG00000204248|HPRD:00376|HPRD:09049|Vega:OTTHUMG00000031036 6 6p21.3 collagen, type XI, alpha 2 protein-coding COL11A2 collagen, type XI, alpha 2 O collagen alpha-2(XI) chain|pro-a2 chain of collagen type XI 20121230 -9606 1303 COL12A1 RP1-238D15.1 BA209D8.1|COL12A1L|DJ234P15.1 HGNC:2188|MIM:120320|Ensembl:ENSG00000111799|HPRD:00377|HPRD:00378|Vega:OTTHUMG00000015051 6 6q12-q13 collagen, type XII, alpha 1 protein-coding COL12A1 collagen, type XII, alpha 1 O collagen alpha-1(XII) chain|collagen type XII proteoglycan 20121230 -9606 1305 COL13A1 - COLXIIIA1 HGNC:2190|MIM:120350|Ensembl:ENSG00000197467|HPRD:00383|Vega:OTTHUMG00000018394 10 10q22 collagen, type XIII, alpha 1 protein-coding COL13A1 collagen, type XIII, alpha 1 O collagen alpha-1(XIII) chain 20121230 -9606 1306 COL15A1 - - HGNC:2192|MIM:120325|Ensembl:ENSG00000204291|HPRD:00380|Vega:OTTHUMG00000020351 9 9q21-q22 collagen, type XV, alpha 1 protein-coding COL15A1 collagen, type XV, alpha 1 O collagen XV, alpha-1 polypeptide|collagen alpha-1(XV) chain|collagen type XV proteoglycan 20121230 -9606 1307 COL16A1 FP1572 447AA HGNC:2193|MIM:120326|Ensembl:ENSG00000084636|HPRD:00381|Vega:OTTHUMG00000003883 1 1p35-p34 collagen, type XVI, alpha 1 protein-coding COL16A1 collagen, type XVI, alpha 1 O alpha 1 type XVI collagen|collagen XVI, alpha-1 polypeptide|collagen alpha-1(XVI) chain 20121230 -9606 1308 COL17A1 RP11-16H23.2 BA16H23.2|BP180|BPA-2|BPAG2|LAD-1 HGNC:2194|MIM:113811|Ensembl:ENSG00000065618|HPRD:00223|Vega:OTTHUMG00000018998 10 10q24.3 collagen, type XVII, alpha 1 protein-coding COL17A1 collagen, type XVII, alpha 1 O 180 kDa bullous pemphigoid antigen 2|alpha 1 type XVII collagen|bA16H23.2 (collagen, type XVII, alpha 1 (BP180))|bullous pemphigoid antigen 2 (180kD)|collagen XVII, alpha-1 polypeptide|collagen alpha-1(XVII) chain 20121230 -9606 1310 COL19A1 RP1-138F4.1 COL9A1L|D6S228E HGNC:2196|MIM:120165|Ensembl:ENSG00000082293|HPRD:00364|Vega:OTTHUMG00000014987 6 6q12-q13 collagen, type XIX, alpha 1 protein-coding COL19A1 collagen, type XIX, alpha 1 O a1 chain of type XIX collagen|collagen XIX, alpha-1 polypeptide|collagen alpha 1 (Y) chain|collagen alpha-1(XIX) chain|collagen alpha-1(Y) chain 20121230 -9606 1311 COMP - EDM1|EPD1|MED|PSACH|THBS5 HGNC:2227|MIM:600310|Ensembl:ENSG00000105664|HPRD:02632|Vega:OTTHUMG00000169318 19 19p13.1 cartilage oligomeric matrix protein protein-coding COMP cartilage oligomeric matrix protein O TSP5|cartilage oligomeric matrix protein (pseudoachondroplasia, epiphyseal dysplasia 1, multiple)|cartilage oligomeric matrix protein(pseudoachondroplasia, epiphyseal dysplasia 1, multiple)|pseudoachondroplasia (epiphyseal dysplasia 1, multiple)|thrombospondin-5 20121230 -9606 1312 COMT - - HGNC:2228|MIM:116790|Ensembl:ENSG00000093010|HPRD:00284|Vega:OTTHUMG00000150529 22 22q11.21 catechol-O-methyltransferase protein-coding COMT catechol-O-methyltransferase O catechol O-methyltransferase 20121230 -9606 1313 COP - CLTO HGNC:2229 - - clathrin-ordered protein protein-coding COP clathrin-ordered protein O - 20121209 -9606 1314 COPA - HEP-COP HGNC:2230|MIM:601924|Ensembl:ENSG00000122218|HPRD:03564|Vega:OTTHUMG00000033111 1 1q23.2 coatomer protein complex, subunit alpha protein-coding COPA coatomer protein complex, subunit alpha O HEPCOP|alpha coat protein|alpha-COP|alpha-coat protein|coatomer subunit alpha|xenin 20121230 -9606 1315 COPB1 MSTP026 COPB HGNC:2231|MIM:600959|Ensembl:ENSG00000129083|HPRD:02981|Vega:OTTHUMG00000165824 11 11p15.2 coatomer protein complex, subunit beta 1 protein-coding COPB1 coatomer protein complex, subunit beta 1 O beta coat protein|beta-coat protein|beta-cop|coatomer subunit beta 20121230 -9606 1316 KLF6 RP11-184A2.1 BCD1|CBA1|COPEB|CPBP|GBF|PAC1|ST12|ZF9 HGNC:2235|MIM:602053|Ensembl:ENSG00000067082|HPRD:03632|Vega:OTTHUMG00000017567 10 10p15 Kruppel-like factor 6 protein-coding KLF6 Kruppel-like factor 6 O B-cell-derived protein 1|GC-rich binding factor|GC-rich sites-binding factor GBF|Krueppel-like factor 6|Kruppel-like zinc finger protein Zf9|core promoter element binding protein|core promoter element-binding protein|proto-oncogene BCD1|protooncogene B-cell derived 1|suppression of tumorigenicity 12 (prostate)|suppressor of tumorigenicity 12 protein|transcription factor Zf9 20121230 -9606 1317 SLC31A1 RP11-110L1.1 COPT1|CTR1 HGNC:11016|MIM:603085|Ensembl:ENSG00000136868|HPRD:04362|Vega:OTTHUMG00000020519 9 9q32 solute carrier family 31 (copper transporters), member 1 protein-coding SLC31A1 solute carrier family 31 (copper transporters), member 1 O copper transport 1 homolog|copper transporter 1|high affinity copper uptake protein 1|solute carrier family 31 member 1 20121230 -9606 1318 SLC31A2 RP11-9H12.2 COPT2|CTR2|hCTR2 HGNC:11017|MIM:603088|Ensembl:ENSG00000136867|HPRD:04365|Vega:OTTHUMG00000021037 9 9q32 solute carrier family 31 (copper transporters), member 2 protein-coding SLC31A2 solute carrier family 31 (copper transporters), member 2 O copper transporter 2|probable low affinity copper uptake protein 2|solute carrier family 31 member 2 20121230 -9606 1319 CORD1 - CORD|CRD1 HGNC:2245|MIM:600624 18 18q21.1-q21.3 cone rod dystrophy 1 (autosomal dominant) unknown CORD1 cone rod dystrophy 1 (autosomal dominant) O - 20121209 -9606 1321 CORD4 - - HGNC:2247 17 17q cone rod dystrophy 4 unknown CORD4 cone rod dystrophy 4 O - 20110215 -9606 1325 CORT UNQ307/PRO350 CST-14|CST-17|CST-29 HGNC:2257|MIM:602784|Ensembl:ENSG00000241563|HPRD:04150|Vega:OTTHUMG00000001906 1 1p36.22 cortistatin protein-coding CORT cortistatin O cortistatin-14|cortistatin-17|cortistatin-29|preprocortistatin 20121230 -9606 1326 MAP3K8 RP11-449I17.8 COT|EST|ESTF|MEKK8|TPL2|Tpl-2|c-COT HGNC:6860|MIM:191195|Ensembl:ENSG00000107968|HPRD:01863|Vega:OTTHUMG00000017889 10 10p11.23 mitogen-activated protein kinase kinase kinase 8 protein-coding MAP3K8 mitogen-activated protein kinase kinase kinase 8 O Ewing sarcoma transformant|cot (cancer Osaka thyroid) oncogene|proto-oncogene c-Cot|proto-oncogene serine/threoine protein kinase|tumor progression locus 2 20121230 -9606 1327 COX4I1 - COX4|COX4-1|COXIV HGNC:2265|MIM:123864|Ensembl:ENSG00000131143|HPRD:00466|Vega:OTTHUMG00000137649 16 16q24.1 cytochrome c oxidase subunit IV isoform 1 protein-coding COX4I1 cytochrome c oxidase subunit IV isoform 1 O COX IV-1|cytochrome c oxidase polypeptide IV|cytochrome c oxidase subunit 4 isoform 1, mitochondrial 20121230 -9606 1329 COX5B - COXVB HGNC:2269|MIM:123866|Ensembl:ENSG00000135940|HPRD:00467|Vega:OTTHUMG00000130548 2 2q11.2 cytochrome c oxidase subunit Vb protein-coding COX5B cytochrome c oxidase subunit Vb O cytochrome c oxidase polypeptide VB, mitochondrial|cytochrome c oxidase subunit 5B, mitochondrial 20121230 -9606 1330 COX5BP1 - COX5BL1 HGNC:2270 4 4q21.3 cytochrome c oxidase subunit Vb pseudogene 1 pseudo COX5BP1 cytochrome c oxidase subunit Vb pseudogene 1 O - 20121230 -9606 1331 COX5BP2 - COX5BL2 HGNC:2271 6 6q23.3 cytochrome c oxidase subunit Vb pseudogene 2 pseudo COX5BP2 cytochrome c oxidase subunit Vb pseudogene 2 O - 20121230 -9606 1332 COX5BP3 - COX5BL3 HGNC:2272 7 7q33 cytochrome c oxidase subunit Vb pseudogene 3 pseudo COX5BP3 cytochrome c oxidase subunit Vb pseudogene 3 O - 20121230 -9606 1333 COX5BP4 - COX5BL4 HGNC:2273 11 11q cytochrome c oxidase subunit Vb pseudogene 4 pseudo COX5BP4 cytochrome c oxidase subunit Vb pseudogene 4 O - 20121230 -9606 1335 COX5BP6 - COX5BL6 HGNC:2275 13 13q32.3 cytochrome c oxidase subunit Vb pseudogene 6 pseudo COX5BP6 cytochrome c oxidase subunit Vb pseudogene 6 O - 20121230 -9606 1336 COX5BP7 - COX5BL7 HGNC:2276 22 22q13.1 cytochrome c oxidase subunit Vb pseudogene 7 pseudo COX5BP7 cytochrome c oxidase subunit Vb pseudogene 7 O - 20121230 -9606 1337 COX6A1 - COX6A|COX6AL HGNC:2277|MIM:602072|Ensembl:ENSG00000111775|HPRD:03644|Vega:OTTHUMG00000047791 12 12q24.2|12q24.2 cytochrome c oxidase subunit VIa polypeptide 1 protein-coding COX6A1 cytochrome c oxidase subunit VIa polypeptide 1 O COX VIa-L|cytochrome C oxidase subunit VIa homolog|cytochrome c oxidase polypeptide VIa-liver|cytochrome c oxidase subunit 6A1, mitochondrial|cytochrome c oxidase subunit VIA-liver 20121230 -9606 1338 COX6A1P1 - COX6A1P HGNC:2278 1 1p31.1 cytochrome c oxidase subunit VIa polypeptide 1 pseudogene 1 pseudo COX6A1P1 cytochrome c oxidase subunit VIa polypeptide 1 pseudogene 1 O - 20121230 -9606 1339 COX6A2 - COX6AH|COXVIAH HGNC:2279|MIM:602009|Ensembl:ENSG00000156885|HPRD:03598|Vega:OTTHUMG00000132463 16 16p11.12 cytochrome c oxidase subunit VIa polypeptide 2 protein-coding COX6A2 cytochrome c oxidase subunit VIa polypeptide 2 O COX VIa-M|cytochrome c oxidase polypeptide VIa-heart|cytochrome c oxidase subunit 6A2, mitochondrial|cytochrome c oxidase subunit VIA-muscle 20121230 -9606 1340 COX6B1 - COX6B|COXG|COXVIb1 HGNC:2280|MIM:124089|Ensembl:ENSG00000126267|HPRD:00493|Vega:OTTHUMG00000048112 19 19q13.1 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) protein-coding COX6B1 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) O COX VIb-1|cytochrome c oxidase subunit 6B1 20121230 -9606 1342 COX6B1P2 - COX6BP-2|COX6BP2 HGNC:2282 17 17q21.32 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 2 pseudo COX6B1P2 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 2 O - 20121230 -9606 1343 COX6B1P3 - COX6BP-3|COX6BP3 HGNC:2283 22 22q13.2 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 3 pseudo COX6B1P3 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 3 O - 20121230 -9606 1345 COX6C - - HGNC:2285|MIM:124090|Ensembl:ENSG00000164919|HPRD:00494|Vega:OTTHUMG00000164703 8 8q22.2 cytochrome c oxidase subunit VIc protein-coding COX6C cytochrome c oxidase subunit VIc O cytochrome c oxidase polypeptide VIc|cytochrome c oxidase subunit 6C|cytochrome c oxidase subunit VIc preprotein 20121230 -9606 1346 COX7A1 - COX7A|COX7AH|COX7AM HGNC:2287|MIM:123995|Ensembl:ENSG00000161281|HPRD:00481|Vega:OTTHUMG00000048144 19 19q13.1 cytochrome c oxidase subunit VIIa polypeptide 1 (muscle) protein-coding COX7A1 cytochrome c oxidase subunit VIIa polypeptide 1 (muscle) O cytochrome c oxidase subunit 7A1, mitochondrial|cytochrome c oxidase subunit VIIa heart/muscle isoform|cytochrome c oxidase subunit VIIa-H|cytochrome c oxidase subunit VIIa-M|cytochrome c oxidase subunit VIIa-heart|cytochrome c oxidase subunit VIIa-muscle 20121230 -9606 1347 COX7A2 - COX7AL|COX7AL1|COXVIIAL|COXVIIa-L|VIIAL HGNC:2288|MIM:123996|Ensembl:ENSG00000112695|HPRD:00482|Vega:OTTHUMG00000015049 6 6q12 cytochrome c oxidase subunit VIIa polypeptide 2 (liver) protein-coding COX7A2 cytochrome c oxidase subunit VIIa polypeptide 2 (liver) O cytochrome c oxidase polypeptide 7A2, mitochondrial|cytochrome c oxidase polypeptide VIIa-liver/heart|cytochrome c oxidase subunit 7A2, mitochondrial|cytochrome c oxidase subunit VIIa-L|cytochrome c oxidase subunit VIIa-liver/heart|cytochrome c oxidase subunit VIIaL|hepatic cytochrome-c oxidase chain VIIa 20121230 -9606 1348 COX7A2P2 - COX7A3|COX7AL|COX7AL2|COX7AP2 HGNC:2290|MIM:123997|HPRD:00483 4 4q22.3 cytochrome c oxidase subunit VIIa polypeptide 2 (liver) pseudogene 2 pseudo COX7A2P2 cytochrome c oxidase subunit VIIa polypeptide 2 (liver) pseudogene 2 O - 20121230 -9606 1349 COX7B - APLCC HGNC:2291|MIM:300885|Ensembl:ENSG00000131174|HPRD:04812|Vega:OTTHUMG00000022718 X Xq21.1 cytochrome c oxidase subunit VIIb protein-coding COX7B cytochrome c oxidase subunit VIIb O cytochrome c oxidase polypeptide VIIb|cytochrome c oxidase subunit 7B, mitochondrial|cytochrome-c oxidase chain VIIb 20121230 -9606 1350 COX7C - - HGNC:2292|MIM:603774|Ensembl:ENSG00000127184|HPRD:04800|Vega:OTTHUMG00000119049 5 5q14 cytochrome c oxidase subunit VIIc protein-coding COX7C cytochrome c oxidase subunit VIIc O cytochrome c oxidase polypeptide VIIc|cytochrome c oxidase subunit 7C, mitochondrial|cytochrome-c oxidase chain VIIc 20121230 -9606 1351 COX8A - COX|COX8|COX8-2|COX8L|VIII|VIII-L HGNC:2294|MIM:123870|Ensembl:ENSG00000176340|HPRD:00468|Vega:OTTHUMG00000167785 11 11q12-q13 cytochrome c oxidase subunit VIIIA (ubiquitous) protein-coding COX8A cytochrome c oxidase subunit VIIIA (ubiquitous) O cytochrome c oxidase polypeptide VIII-liver/heart|cytochrome c oxidase subunit 8-2|cytochrome c oxidase subunit 8A (ubiquitous)|cytochrome c oxidase subunit 8A, mitochondrial|cytochrome c oxidase subunit VIII 20121230 -9606 1352 COX10 - - HGNC:2260|MIM:602125|Ensembl:ENSG00000006695|HPRD:03673|Vega:OTTHUMG00000058814 17 17p12 cytochrome c oxidase assembly homolog 10 (yeast) protein-coding COX10 cytochrome c oxidase assembly homolog 10 (yeast) O COX10 homolog, cytochrome c oxidase assembly protein, heme A: farnesyltransferase|cytochrome c oxidase assembly protein|cytochrome c oxidase subunit X|heme A: farnesyltransferase|heme O synthase|protoheme IX farnesyltransferase, mitochondrial 20121230 -9606 1353 COX11 - COX11P HGNC:2261|MIM:603648|Ensembl:ENSG00000166260|HPRD:04709|Vega:OTTHUMG00000177838 17 17q22 cytochrome c oxidase assembly homolog 11 (yeast) protein-coding COX11 cytochrome c oxidase assembly homolog 11 (yeast) O COX11 cytochrome c oxidase assembly homolog|COX11 homolog, cytochrome c oxidase assembly protein|cytochrome c oxidase assembly protein COX11, mitochondrial|cytochrome c oxidase subunit 11 20121230 -9606 1355 COX15 - - HGNC:2263|MIM:603646|Ensembl:ENSG00000014919|HPRD:04707|Vega:OTTHUMG00000018893 10 10q24 cytochrome c oxidase assembly homolog 15 (yeast) protein-coding COX15 cytochrome c oxidase assembly homolog 15 (yeast) O COX15 homolog, cytochrome c oxidase assembly protein|cytochrome c oxidase assembly protein COX15 homolog|cytochrome c oxidase subunit 15 20121230 -9606 1356 CP - CP-2 HGNC:2295|MIM:117700|Ensembl:ENSG00000047457|HPRD:00317|Vega:OTTHUMG00000159563 3 3q23-q25 ceruloplasmin (ferroxidase) protein-coding CP ceruloplasmin (ferroxidase) O ceruloplasmin 20121230 -9606 1357 CPA1 - CPA HGNC:2296|MIM:114850|Ensembl:ENSG00000091704|HPRD:00269|Vega:OTTHUMG00000157826 7 7q32 carboxypeptidase A1 (pancreatic) protein-coding CPA1 carboxypeptidase A1 (pancreatic) O carboxypeptidase A1|pancreatic carboxypeptidase A 20121230 -9606 1358 CPA2 - - HGNC:2297|MIM:600688|Ensembl:ENSG00000158516|HPRD:02821|Vega:OTTHUMG00000157019 7 7q32 carboxypeptidase A2 (pancreatic) protein-coding CPA2 carboxypeptidase A2 (pancreatic) O carboxypeptidase A2 20121230 -9606 1359 CPA3 - MC-CPA HGNC:2298|MIM:114851|Ensembl:ENSG00000163751|HPRD:00270|Vega:OTTHUMG00000159526 3 3q24 carboxypeptidase A3 (mast cell) protein-coding CPA3 carboxypeptidase A3 (mast cell) O mast cell carboxypeptidase A|tissue carboxypeptidase A 20121230 -9606 1360 CPB1 - CPB|PASP|PCPB HGNC:2299|MIM:114852|Ensembl:ENSG00000153002|HPRD:00271|Vega:OTTHUMG00000159520 3 3q24 carboxypeptidase B1 (tissue) protein-coding CPB1 carboxypeptidase B1 (tissue) O carboxypeptidase B|pancreas-specific protein|pancreatic carboxypeptidase B|procarboxypeptidase B|protaminase|tissue carboxypeptidase B 20121230 -9606 1361 CPB2 - CPU|PCPB|TAFI HGNC:2300|MIM:603101|Ensembl:ENSG00000080618|HPRD:04374|Vega:OTTHUMG00000016867 13 13q14.11 carboxypeptidase B2 (plasma) protein-coding CPB2 carboxypeptidase B2 (plasma) O carboxypeptidase B-like protein|carboxypeptidase B2|carboxypeptidase B2 (plasma, carboxypeptidase U)|carboxypeptidase R|thrombin-activable fibrinolysis inhibitor|thrombin-activatable fibrinolysis inhibitor 20121230 -9606 1362 CPD - GP180 HGNC:2301|MIM:603102|Ensembl:ENSG00000108582|HPRD:04375|Vega:OTTHUMG00000132797 17 17q11.2 carboxypeptidase D protein-coding CPD carboxypeptidase D O metallocarboxypeptidase D 20121230 -9606 1363 CPE - - HGNC:2303|MIM:114855|Ensembl:ENSG00000109472|HPRD:00272|Vega:OTTHUMG00000150252 4 4q32.3 carboxypeptidase E protein-coding CPE carboxypeptidase E O CPH|carboxypeptidase H|cobalt-stimulated chromaffin granule carboxypeptidase|enkephalin convertase|insulin granule-associated carboxypeptidase|prohormone-processing carboxypeptidase 20121230 -9606 1364 CLDN4 - CPE-R|CPER|CPETR|CPETR1|WBSCR8|hCPE-R HGNC:2046|MIM:602909|Ensembl:ENSG00000189143|HPRD:04218 7 7q11.23 claudin 4 protein-coding CLDN4 claudin 4 O CPE-receptor|Clostridium perfringens enterotoxin receptor 1|Williams-Beuren syndrome chromosomal region 8 protein|claudin-4 20121230 -9606 1365 CLDN3 - C7orf1|CPE-R2|CPETR2|HRVP1|RVP1 HGNC:2045|MIM:602910|Ensembl:ENSG00000165215|HPRD:04219|Vega:OTTHUMG00000023424 7 7q11.23 claudin 3 protein-coding CLDN3 claudin 3 O CPE-R 2|CPE-receptor 2|Clostridium perfringens enterotoxin receptor 2|claudin-3|ventral prostate.1 protein homolog|ventral prostate.1-like protein 20121230 -9606 1366 CLDN7 - CEPTRL2|CLDN-7|CPETRL2|Hs.84359|claudin-1 HGNC:2049|MIM:609131|Ensembl:ENSG00000181885|HPRD:07633|Vega:OTTHUMG00000178005 17 - claudin 7 protein-coding CLDN7 claudin 7 O claudin-7|clostridium perfringens enterotoxin receptor-like 2 20121230 -9606 1368 CPM - - HGNC:2311|MIM:114860|Ensembl:ENSG00000135678|HPRD:00273|Vega:OTTHUMG00000169300 12 12q14.3 carboxypeptidase M protein-coding CPM carboxypeptidase M O renal carboxypeptidase|urinary carboxypeptidase B 20121230 -9606 1369 CPN1 - CPN|SCPN HGNC:2312|MIM:603103|Ensembl:ENSG00000120054|HPRD:09120|Vega:OTTHUMG00000018896 10 10q24.2 carboxypeptidase N, polypeptide 1 protein-coding CPN1 carboxypeptidase N, polypeptide 1 O anaphylatoxin inactivator|arginine carboxypeptidase|carboxypeptidase K|carboxypeptidase N catalytic chain|carboxypeptidase N catalytic subunit|carboxypeptidase N polypeptide 1 50 kD|carboxypeptidase N small subunit|kininase I|kininase-1|lysine carboxypeptidase|plasma carboxypeptidase B|serum carboxypeptidase N 20121230 -9606 1370 CPN2 - ACBP HGNC:2313|MIM:603104|Ensembl:ENSG00000178772|HPRD:11928|Vega:OTTHUMG00000156047 3 3q29 carboxypeptidase N, polypeptide 2 protein-coding CPN2 carboxypeptidase N, polypeptide 2 O arginine carboxypeptidase (carboxypeptidase N)|carboxypeptidase N 83 kDa chain|carboxypeptidase N large subunit|carboxypeptidase N regulatory subunit|carboxypeptidase N subunit 2|carboxypeptidase N, polypeptide 2, 83kD 20121230 -9606 1371 CPOX - CPO|CPX|HCP HGNC:2321|MIM:612732|Ensembl:ENSG00000080819|HPRD:00417|Vega:OTTHUMG00000160016 3 3q12 coproporphyrinogen oxidase protein-coding CPOX coproporphyrinogen oxidase O COX|coprogen oxidase|coproporphyrinogen-III oxidase, mitochondrial|coproporphyrinogenase 20121230 -9606 1373 CPS1 - CPSASE1 HGNC:2323|MIM:608307|Ensembl:ENSG00000021826|HPRD:01995|Vega:OTTHUMG00000132994 2 2q35 carbamoyl-phosphate synthase 1, mitochondrial protein-coding CPS1 carbamoyl-phosphate synthase 1, mitochondrial O carbamoyl-phosphate synthase [ammonia], mitochondrial|carbamoylphosphate synthetase I 20121230 -9606 1374 CPT1A - CPT1|CPT1-L|L-CPT1 HGNC:2328|MIM:600528|Ensembl:ENSG00000110090|HPRD:02755|Vega:OTTHUMG00000167892 11 11q13.2 carnitine palmitoyltransferase 1A (liver) protein-coding CPT1A carnitine palmitoyltransferase 1A (liver) O CPT I|CPTI-L|carnitine O-palmitoyltransferase 1, liver isoform|carnitine O-palmitoyltransferase I, liver isoform|carnitine palmitoyltransferase I, liver 20121230 -9606 1375 CPT1B - CPT1-M|CPT1M|CPTI|CPTI-M|M-CPT1|MCCPT1|MCPT1 HGNC:2329|MIM:601987|Ensembl:ENSG00000205560|HPRD:09065|Vega:OTTHUMG00000137390 22 22q13.33 carnitine palmitoyltransferase 1B (muscle) protein-coding CPT1B carnitine palmitoyltransferase 1B (muscle) O carnitine O-palmitoyltransferase 1, muscle isoform|carnitine O-palmitoyltransferase I, mitochondrial muscle isoform|carnitine palmitoyltransferase I-like protein 20121230 -9606 1376 CPT2 - CPT1|CPTASE|IIAE4 HGNC:2330|MIM:600650|Ensembl:ENSG00000157184|HPRD:02802|Vega:OTTHUMG00000008942 1 1p32 carnitine palmitoyltransferase 2 protein-coding CPT2 carnitine palmitoyltransferase 2 O CPT II|carnitine O-palmitoyltransferase 2, mitochondrial|carnitine palmitoyltransferase II 20121230 -9606 1378 CR1 RP11-57I17.1 C3BR|C4BR|CD35|KN HGNC:2334|MIM:120620|Ensembl:ENSG00000203710|HPRD:00398|Vega:OTTHUMG00000036311 1 1q32 complement component (3b/4b) receptor 1 (Knops blood group) protein-coding CR1 complement component (3b/4b) receptor 1 (Knops blood group) O C3-binding protein|C3b/C4b receptor|CD35 antigen|Knops blood group antigen|complement component receptor 1|complement receptor type 1 20121230 -9606 1379 CR1L - - HGNC:2335|MIM:605886|Ensembl:ENSG00000197721|Vega:OTTHUMG00000036354 1 1q32.1 complement component (3b/4b) receptor 1-like protein-coding CR1L complement component (3b/4b) receptor 1-like O complement C4b-binding protein CR-1-like protein|complement component receptor 1-like protein 20121230 -9606 1380 CR2 RP11-78B10.1 C3DR|CD21|CR|CVID7|SLEB9 HGNC:2336|MIM:120650|Ensembl:ENSG00000117322|HPRD:00399|Vega:OTTHUMG00000036307 1 1q32 complement component (3d/Epstein Barr virus) receptor 2 protein-coding CR2 complement component (3d/Epstein Barr virus) receptor 2 O EBV receptor|complement C3d receptor|complement receptor type 2|epstein-Barr virus receptor 20121230 -9606 1381 CRABP1 - CRABP|CRABP-I|CRABPI|RBP5 HGNC:2338|MIM:180230|Ensembl:ENSG00000166426|HPRD:07520|Vega:OTTHUMG00000143862 15 15q24 cellular retinoic acid binding protein 1 protein-coding CRABP1 cellular retinoic acid binding protein 1 O cellular retinoic acid-binding protein 1|cellular retinoic acid-binding protein I 20121230 -9606 1382 CRABP2 RP11-66D17.4 CRABP-II|RBP6 HGNC:2339|MIM:180231|Ensembl:ENSG00000143320|HPRD:08353|Vega:OTTHUMG00000041300 1 1q21.3 cellular retinoic acid binding protein 2 protein-coding CRABP2 cellular retinoic acid binding protein 2 O cellular retinoic acid-binding protein 2|cellular retinoic acid-binding protein II 20121230 -9606 1384 CRAT RP11-247A12.5 CAT1 HGNC:2342|MIM:600184|Ensembl:ENSG00000095321|HPRD:08971|Vega:OTTHUMG00000147343 9 9q34.1 carnitine O-acetyltransferase protein-coding CRAT carnitine O-acetyltransferase O CAT|carnitine acetylase|carnitine acetyltransferase 20121230 -9606 1385 CREB1 - CREB HGNC:2345|MIM:123810|Ensembl:ENSG00000118260|HPRD:00442|Vega:OTTHUMG00000132936 2 2q34 cAMP responsive element binding protein 1 protein-coding CREB1 cAMP responsive element binding protein 1 O CREB-1|active transcription factor CREB|cAMP-response element-binding protein-1|cAMP-responsive element-binding protein 1|cyclic AMP-responsive element-binding protein 1|transactivator protein 20121230 -9606 1386 ATF2 - CRE-BP1|CREB2|HB16|TREB7 HGNC:784|MIM:123811|Ensembl:ENSG00000115966|HPRD:00443|Vega:OTTHUMG00000132424 2 2q32 activating transcription factor 2 protein-coding ATF2 activating transcription factor 2 O CREB-2|activating transcription factor 2 splice variant ATF2-var2|cAMP response element-binding protein CRE-BP1|cAMP responsive element binding protein 2, formerly|cAMP-dependent transcription factor ATF-2|cAMP-responsive element-binding protein 2|cyclic AMP-dependent transcription factor ATF-2|cyclic AMP-responsive element-binding protein 2 20121230 -9606 1387 CREBBP - CBP|KAT3A|RSTS HGNC:2348|MIM:600140|Ensembl:ENSG00000005339|HPRD:02534|Vega:OTTHUMG00000129431 16 16p13.3 CREB binding protein protein-coding CREBBP CREB binding protein O CREB-binding protein 20121230 -9606 1388 ATF6B DADB-220I18.4 CREB-RP|CREBL1|G13 HGNC:2349|MIM:600984|Ensembl:ENSG00000213676|HPRD:02992|Vega:OTTHUMG00000031296 6 6p21.3 activating transcription factor 6 beta protein-coding ATF6B activating transcription factor 6 beta O ATF6-beta|Creb-related protein|cAMP response element-binding protein-related protein|cAMP responsive element binding protein-like 1|cAMP-dependent transcription factor ATF-6 beta|cAMP-responsive element-binding protein-like 1|cyclic AMP-dependent transcription factor ATF-6 beta|protein G13 20121230 -9606 1389 CREBL2 - - HGNC:2350|MIM:603476|Ensembl:ENSG00000111269|HPRD:07541|Vega:OTTHUMG00000168704 12 12p13 cAMP responsive element binding protein-like 2 protein-coding CREBL2 cAMP responsive element binding protein-like 2 O MHBs-binding protein 1|cAMP-responsive element-binding protein-like 2 20121230 -9606 1390 CREM RP11-324I22.1 CREM-2|ICER|hCREM-2 HGNC:2352|MIM:123812|Ensembl:ENSG00000095794|HPRD:00444|Vega:OTTHUMG00000017953 10 10p11.21 cAMP responsive element modulator protein-coding CREM cAMP responsive element modulator O CREM 2alpha-b protein|CREM 2beta-a protein|cAMP response element modulator|cAMP-responsive element modulator|inducible cAMP early repressor ICER 20121230 -9606 1391 CRG - - HGNC:2354 - - CHARGE association unknown CRG CHARGE association O - 20080828 -9606 1392 CRH - CRF HGNC:2355|MIM:122560|Ensembl:ENSG00000147571|HPRD:07172|Vega:OTTHUMG00000164474 8 8q13 corticotropin releasing hormone protein-coding CRH corticotropin releasing hormone O corticoliberin|corticotropin-releasing factor 20121230 -9606 1393 CRHBP - CRF-BP|CRFBP HGNC:2356|MIM:122559|Ensembl:ENSG00000145708|HPRD:08348|Vega:OTTHUMG00000102133 5 5q11.2-q13.3 corticotropin releasing hormone binding protein protein-coding CRHBP corticotropin releasing hormone binding protein O CRF-binding protein|CRH-BP|corticotropin releasing hormone-binding protein|corticotropin-releasing factor-binding protein|corticotropin-releasing hormone-binding protein 20121230 -9606 1394 CRHR1 - CRF-R|CRF-R-1|CRF-R1|CRF1|CRFR-1|CRFR1|CRH-R-1|CRH-R1|CRH-R1h|CRHR|CRHR1L|CRHR1f HGNC:2357|MIM:122561|Ensembl:ENSG00000120088|HPRD:08830|Vega:OTTHUMG00000178271 17 17q12-q22 corticotropin releasing hormone receptor 1 protein-coding CRHR1 corticotropin releasing hormone receptor 1 O corticotropin releasing hormone receptor variant 1e|corticotropin releasing hormone receptor variant 1g|corticotropin-releasing factor receptor 1|corticotropin-releasing factor type 1 receptor|corticotropin-releasing hormone receptor 1|seven transmembrane helix receptor 20121230 -9606 1395 CRHR2 - CRF-RB|CRF2|CRFR2|HM-CRF HGNC:2358|MIM:602034|Ensembl:ENSG00000106113|HPRD:03614|Vega:OTTHUMG00000023218 7 7p14.3 corticotropin releasing hormone receptor 2 protein-coding CRHR2 corticotropin releasing hormone receptor 2 O CRF2 receptor, beta isoform|CRH-R2|corticotropin-releasing factor receptor 2 20121230 -9606 1396 CRIP1 - CRHP|CRIP|CRP-1|CRP1 HGNC:2360|MIM:123875|Ensembl:ENSG00000213145|HPRD:00469|Vega:OTTHUMG00000029908 14 14q32.33 cysteine-rich protein 1 (intestinal) protein-coding CRIP1 cysteine-rich protein 1 (intestinal) O cysteine-rich heart protein|cysteine-rich intestinal protein|cysteine-rich protein 1 20121230 -9606 1397 CRIP2 - CRIP|CRP2|ESP1 HGNC:2361|MIM:601183|Ensembl:ENSG00000182809|HPRD:03113|Vega:OTTHUMG00000029906 14 14q32.3 cysteine-rich protein 2 protein-coding CRIP2 cysteine-rich protein 2 O Cysteine-rich intestinal protein|LIM domain protein ESP1/CRP2 20121230 -9606 1398 CRK - CRKII|p38 HGNC:2362|MIM:164762|Ensembl:ENSG00000167193|HPRD:01267|Vega:OTTHUMG00000090317 17 17p13.3 v-crk sarcoma virus CT10 oncogene homolog (avian) protein-coding CRK v-crk sarcoma virus CT10 oncogene homolog (avian) O adapter molecule crk|proto-oncogene c-Crk 20121230 -9606 1399 CRKL - - HGNC:2363|MIM:602007|Ensembl:ENSG00000099942|HPRD:03596|Vega:OTTHUMG00000150807 22 22q11.21 v-crk sarcoma virus CT10 oncogene homolog (avian)-like protein-coding CRKL v-crk sarcoma virus CT10 oncogene homolog (avian)-like O crk-like protein 20121230 -9606 1400 CRMP1 - CRMP-1|DPYSL1|DRP-1|DRP1|ULIP-3 HGNC:2365|MIM:602462|Ensembl:ENSG00000072832|HPRD:03913|Vega:OTTHUMG00000125489 4 4p16.1 collapsin response mediator protein 1 protein-coding CRMP1 collapsin response mediator protein 1 O dihydropyrimidinase related protein-1|dihydropyrimidinase-like 1|dihydropyrimidinase-related protein 1|unc-33-like phosphoprotein 3 20121230 -9606 1401 CRP RP11-419N10.4 PTX1 HGNC:2367|MIM:123260|Ensembl:ENSG00000132693|HPRD:00422|Vega:OTTHUMG00000035344 1 1q21-q23 C-reactive protein, pentraxin-related protein-coding CRP C-reactive protein, pentraxin-related O C-reactive protein|pentraxin 1 20121230 -9606 1403 CRS - CRS1|CSO HGNC:2369|MIM:123100 7 7p21 craniosynostosis unknown CRS craniosynostosis O - 20120622 -9606 1404 HAPLN1 - CRTL1 HGNC:2380|MIM:115435|Ensembl:ENSG00000145681|HPRD:00275|Vega:OTTHUMG00000119045 5 5q14.3 hyaluronan and proteoglycan link protein 1 protein-coding HAPLN1 hyaluronan and proteoglycan link protein 1 O Cartilage link protein|cartilage linking protein 1|cartilage-link protein|cartilage-linking protein 1|proteoglycan link protein 20121230 -9606 1406 CRX - CORD2|CRD|LCA7|OTX3 HGNC:2383|MIM:602225|Ensembl:ENSG00000105392|HPRD:03748|Vega:OTTHUMG00000170610 19 19q13.3 cone-rod homeobox protein-coding CRX cone-rod homeobox O cone-rod homeobox protein|orthodenticle homeobox 3 20121230 -9606 1407 CRY1 - PHLL1 HGNC:2384|MIM:601933|Ensembl:ENSG00000008405|HPRD:09050|Vega:OTTHUMG00000170005 12 12q23-q24.1 cryptochrome 1 (photolyase-like) protein-coding CRY1 cryptochrome 1 (photolyase-like) O cryptochrome-1 20121230 -9606 1408 CRY2 - HCRY2|PHLL2 HGNC:2385|MIM:603732|Ensembl:ENSG00000121671|HPRD:07226|Vega:OTTHUMG00000153225 11 11p11.2 cryptochrome 2 (photolyase-like) protein-coding CRY2 cryptochrome 2 (photolyase-like) O cryptochrome-2|growth-inhibiting protein 37 20121230 -9606 1409 CRYAA - CRYA1|HSPB4 HGNC:2388|MIM:123580|Ensembl:ENSG00000160202|HPRD:00427|Vega:OTTHUMG00000086842 21 21q22.3 crystallin, alpha A protein-coding CRYAA crystallin, alpha A O alpha-crystallin A chain|crystallin, alpha-1|heat shock protein beta-4|human alphaA-crystallin (CRYA1) 20121230 -9606 1410 CRYAB - CRYA2|CTPP2|HSPB5 HGNC:2389|MIM:123590|Ensembl:ENSG00000109846|HPRD:00428|Vega:OTTHUMG00000166885 11 11q22.3-q23.1 crystallin, alpha B protein-coding CRYAB crystallin, alpha B O alpha-crystallin B chain|heat shock protein beta-5|heat-shock 20 kD like-protein|renal carcinoma antigen NY-REN-27|rosenthal fiber component 20121230 -9606 1411 CRYBA1 - CRYB1 HGNC:2394|MIM:123610|Ensembl:ENSG00000108255|HPRD:00429|Vega:OTTHUMG00000132729 17 17q11.2 crystallin, beta A1 protein-coding CRYBA1 crystallin, beta A1 O beta-crystallin A3|crystallin, beta A3|eye lens structural protein 20121230 -9606 1412 CRYBA2 - - HGNC:2395|MIM:600836|Ensembl:ENSG00000163499|HPRD:02905|Vega:OTTHUMG00000133084 2 2q34-q36 crystallin, beta A2 protein-coding CRYBA2 crystallin, beta A2 O beta-crystallin A2|eye lens structural protein 20121230 -9606 1413 CRYBA4 CTA-445C9.1 MCOPCT4 HGNC:2396|MIM:123631|Ensembl:ENSG00000196431|HPRD:00432|Vega:OTTHUMG00000150983 22 22q12.1 crystallin, beta A4 protein-coding CRYBA4 crystallin, beta A4 O beta-A4 crystallin|beta-crystallin A4|crystallin, beta polypeptide A4|eye lens structural protein 20121230 -9606 1414 CRYBB1 - CATCN3 HGNC:2397|MIM:600929|Ensembl:ENSG00000100122|HPRD:09021|Vega:OTTHUMG00000150980 22 22q12.1 crystallin, beta B1 protein-coding CRYBB1 crystallin, beta B1 O beta-B1 crystallin|beta-crystallin B1|eye lens structural protein 20121230 -9606 1415 CRYBB2 - CCA2|CRYB2|CRYB2A|D22S665 HGNC:2398|MIM:123620|Ensembl:ENSG00000244752|HPRD:00430|Vega:OTTHUMG00000150905 22 22q11.23 crystallin, beta B2 protein-coding CRYBB2 crystallin, beta B2 O beta-B2 crystallin|beta-crystallin B2|beta-crystallin Bp|eye lens structural protein 20121230 -9606 1416 CRYBB2P1 - CRYB2B HGNC:2399 22 22q11.2-q12.1 crystallin, beta B2 pseudogene 1 pseudo CRYBB2P1 crystallin, beta B2 pseudogene 1 O - 20121230 -9606 1417 CRYBB3 CTA-221G9.6 CATCN2|CRYB3 HGNC:2400|MIM:123630|Ensembl:ENSG00000100053|HPRD:00431|Vega:OTTHUMG00000150869 22 22q11.23 crystallin, beta B3 protein-coding CRYBB3 crystallin, beta B3 O beta-B3 crystallin|beta-crystallin B3|eye lens structural protein 20121230 -9606 1418 CRYGA - CRY-g-A|CRYG1|CRYG5 HGNC:2408|MIM:123660|Ensembl:ENSG00000168582|HPRD:00433|Vega:OTTHUMG00000154796 2 2q33-q35 crystallin, gamma A protein-coding CRYGA crystallin, gamma A O crystallin, gamma 1|gamma-crystallin 5|gamma-crystallin A 20121230 -9606 1419 CRYGB - CRYG2 HGNC:2409|MIM:123670|Ensembl:ENSG00000182187|HPRD:00434|Vega:OTTHUMG00000132941 2 2q33-q35 crystallin, gamma B protein-coding CRYGB crystallin, gamma B O crystallin, gamma 1-2|gamma-crystallin B 20121230 -9606 1420 CRYGC - CCL|CRYG3 HGNC:2410|MIM:123680|Ensembl:ENSG00000163254|HPRD:00435|Vega:OTTHUMG00000132942 2 2q33-q35 crystallin, gamma C protein-coding CRYGC crystallin, gamma C O crystallin, gamma-3|gamma-C-crystallin|gamma-crystallin 2-1|gamma-crystallin 3|gamma-crystallin C 20121230 -9606 1421 CRYGD - CACA|CCA3|CCP|CRYG4|cry-g-D HGNC:2411|MIM:123690|Ensembl:ENSG00000118231|HPRD:00436|Vega:OTTHUMG00000132944 2 2q33-q35 crystallin, gamma D protein-coding CRYGD crystallin, gamma D O gamma crystallin 4|gamma-D-crystallin|gamma-crystallin 4|gamma-crystallin D 20121230 -9606 1423 CRYGFP - CRYG6|CRYGFP1|p1 HGNC:2413 2 2q34 crystallin, gamma F pseudogene pseudo CRYGFP crystallin, gamma F pseudogene O - 20121230 -9606 1424 CRYGGP - CRYGGP1 HGNC:2414 2 2p16.3 crystallin, gamma G, pseudogene pseudo CRYGGP crystallin, gamma G, pseudogene O - 20121230 -9606 1427 CRYGS - CRYG8 HGNC:2417|MIM:123730|Ensembl:ENSG00000213139|HPRD:00439|Vega:OTTHUMG00000156615 3 3q25-qter crystallin, gamma S protein-coding CRYGS crystallin, gamma S O beta-crystallin S|crystallin, gamma 8|gamma-S-crystallin|gamma-crystallin S 20121230 -9606 1428 CRYM - DFNA40|THBP HGNC:2418|MIM:123740|Ensembl:ENSG00000103316|HPRD:08831|Vega:OTTHUMG00000090707 16 16p crystallin, mu protein-coding CRYM crystallin, mu O NADP-regulated thyroid-hormone binding protein|ketimine reductase|mu-crystallin homolog|thiomorpholine-carboxylate dehydrogenase 20121230 -9606 1429 CRYZ - - HGNC:2419|MIM:123691|Ensembl:ENSG00000116791|HPRD:00437|Vega:OTTHUMG00000009620 1 1p31-p22 crystallin, zeta (quinone reductase) protein-coding CRYZ crystallin, zeta (quinone reductase) O NADPH:quinone reductase|quinone oxidoreductase 20121230 -9606 1430 CRYZP1 - - HGNC:2421 7 7q22 crystallin, zeta (quinone reductase) pseudogene 1 pseudo CRYZP1 crystallin, zeta (quinone reductase) pseudogene 1 O - 20121230 -9606 1431 CS - - HGNC:2422|MIM:118950|Ensembl:ENSG00000062485|HPRD:00349|Vega:OTTHUMG00000170344 12 12q13.2 citrate synthase protein-coding CS citrate synthase O citrate synthase, mitochondrial 20121230 -9606 1432 MAPK14 RP1-179N16.5 CSBP|CSBP1|CSBP2|CSPB1|EXIP|Mxi2|PRKM14|PRKM15|RK|SAPK2A|p38|p38ALPHA HGNC:6876|MIM:600289|Ensembl:ENSG00000112062|HPRD:02619|Vega:OTTHUMG00000159806 6 6p21.3-p21.2 mitogen-activated protein kinase 14 protein-coding MAPK14 mitogen-activated protein kinase 14 O CSAID-binding protein|Csaids binding protein|MAP kinase 14|MAP kinase Mxi2|MAP kinase p38 alpha|MAX-interacting protein 2|cytokine suppressive anti-inflammatory drug binding protein|cytokine suppressive anti-inflammatory drug-binding protein|mitogen-activated protein kinase p38 alpha|p38 MAP kinase|p38 mitogen activated protein kinase|p38alpha Exip|stress-activated protein kinase 2A 20121230 -9606 1433 CSE - DYT9 HGNC:2430|MIM:601042 1 1p31 choreoathetosis/spasticity, episodic (paroxysmal choreoathetosis/spasticity) unknown CSE choreoathetosis/spasticity, episodic (paroxysmal choreoathetosis/spasticity) O - 20120622 -9606 1434 CSE1L - CAS|CSE1|XPO2 HGNC:2431|MIM:601342|Ensembl:ENSG00000124207|HPRD:03217|Vega:OTTHUMG00000033046 20 20q13 CSE1 chromosome segregation 1-like (yeast) protein-coding CSE1L CSE1 chromosome segregation 1-like (yeast) O cellular apoptosis susceptibility protein|chromosome segregation 1-like protein|exp2|exportin-2|importin-alpha re-exporter 20121230 -9606 1435 CSF1 RP11-195M16.2 CSF-1|MCSF HGNC:2432|MIM:120420|Ensembl:ENSG00000184371|HPRD:00388|Vega:OTTHUMG00000011646 1 1p13.3 colony stimulating factor 1 (macrophage) protein-coding CSF1 colony stimulating factor 1 (macrophage) O lanimostim|macrophage colony-stimulating factor 1 20121230 -9606 1436 CSF1R - C-FMS|CD115|CSF-1R|CSFR|FIM2|FMS|HDLS|M-CSF-R HGNC:2433|MIM:164770|Ensembl:ENSG00000182578|HPRD:01269|Vega:OTTHUMG00000130050 5 5q32 colony stimulating factor 1 receptor protein-coding CSF1R colony stimulating factor 1 receptor O CD115 antigen|CSF-1 receptor|FMS proto-oncogene|McDonough feline sarcoma viral (v-fms) oncogene homolog|macrophage colony stimulating factor I receptor|macrophage colony-stimulating factor 1 receptor|proto-oncogene c-Fms 20121230 -9606 1437 CSF2 - GMCSF HGNC:2434|MIM:138960|Ensembl:ENSG00000164400|HPRD:00734|Vega:OTTHUMG00000059637 5 5q31.1 colony stimulating factor 2 (granulocyte-macrophage) protein-coding CSF2 colony stimulating factor 2 (granulocyte-macrophage) O CSF|granulocyte-macrophage colony-stimulating factor|molgramostin|sargramostim 20121230 -9606 1438 CSF2RA - CD116|CDw116|CSF2R|CSF2RAX|CSF2RAY|CSF2RX|CSF2RY|GM-CSF-R-alpha|GMCSFR|GMR|SMDP4 HGNC:2435|MIM:306250|MIM:425000|Ensembl:ENSG00000198223|HPRD:02381|Vega:OTTHUMG00000012533 X|Y Xp22.32 and Yp11.3 colony stimulating factor 2 receptor, alpha, low-affinity (granulocyte-macrophage) protein-coding CSF2RA colony stimulating factor 2 receptor, alpha, low-affinity (granulocyte-macrophage) O CD116 antigen|GM-CSF receptor alpha subunit|GMCSFR-alpha|GMR-alpha|colony stimulating factor 2 receptor alpha subunit|granulocyte-macrophage colony-stimulating factor receptor alpha chain|granulocyte-macrophage colony-stimulating factor receptor subunit alpha 20121230 -9606 1439 CSF2RB CITF22-45C1.4 CD131|CDw131|IL3RB|IL5RB|SMDP5 HGNC:2436|MIM:138981|Ensembl:ENSG00000100368|HPRD:00739|Vega:OTTHUMG00000150546 22 22q13.1 colony stimulating factor 2 receptor, beta, low-affinity (granulocyte-macrophage) protein-coding CSF2RB colony stimulating factor 2 receptor, beta, low-affinity (granulocyte-macrophage) O GM-CSF/IL-3/IL-5 receptor common beta subunit|GM-CSF/IL-3/IL-5 receptor common beta-chain|colony-stimulating factor-2 receptor, beta, low-affinity|cytokine receptor common subunit beta|interleukin 3 receptor/granulocyte-macrophage colony stimulating factor 3 receptor, beta (high affinity) 20121230 -9606 1440 CSF3 - C17orf33|CSF3OS|GCSF HGNC:2438|MIM:138970|Ensembl:ENSG00000108342|HPRD:00736|Vega:OTTHUMG00000133247 17 17q11.2-q12 colony stimulating factor 3 (granulocyte) protein-coding CSF3 colony stimulating factor 3 (granulocyte) O filgrastim|granulocyte colony-stimulating factor|lenograstim|pluripoietin 20121230 -9606 1441 CSF3R - CD114|GCSFR HGNC:2439|MIM:138971|Ensembl:ENSG00000119535|HPRD:00737|Vega:OTTHUMG00000008010 1 1p35-p34.3 colony stimulating factor 3 receptor (granulocyte) protein-coding CSF3R colony stimulating factor 3 receptor (granulocyte) O CD114 antigen|G-CSF receptor|G-CSF-R|granulocyte colony-stimulating factor receptor 20121230 -9606 1442 CSH1 - CS-1|CSA|CSMT|PL|hCS-A HGNC:2440|MIM:150200|Ensembl:ENSG00000136488|HPRD:08350|Vega:OTTHUMG00000171947 17 17q24.2 chorionic somatomammotropin hormone 1 (placental lactogen) protein-coding CSH1 chorionic somatomammotropin hormone 1 (placental lactogen) O choriomammotropin|chorionic somatomammotropin A|chorionic somatomammotropin hormone|placental lactogen 20121230 -9606 1443 CSH2 - CS-2|CSB|hCS-B HGNC:2441|MIM:118820|Ensembl:ENSG00000213218|HPRD:06688|Vega:OTTHUMG00000172283 17 17q24.2 chorionic somatomammotropin hormone 2 protein-coding CSH2 chorionic somatomammotropin hormone 2 O chorionic somatomammotropin B|placental lactogen 20121230 -9606 1444 CSHL1 - CS-5|CSHP1|CSL|hCS-L HGNC:2442|MIM:603515|Ensembl:ENSG00000204414|HPRD:04623|Vega:OTTHUMG00000172287 17 17q24.2 chorionic somatomammotropin hormone-like 1 protein-coding CSHL1 chorionic somatomammotropin hormone-like 1 O chorionic somatomammotropin CS-5|growth hormone cluster 20121230 -9606 1445 CSK - - HGNC:2444|MIM:124095|Ensembl:ENSG00000103653|HPRD:00496|Vega:OTTHUMG00000142814 15 15q24.1 c-src tyrosine kinase protein-coding CSK c-src tyrosine kinase O C-Src kinase|protein-tyrosine kinase CYL|tyrosine-protein kinase CSK 20121230 -9606 1446 CSN1S1 - CASA|CSN1 HGNC:2445|MIM:115450|Ensembl:ENSG00000126545|HPRD:00280|Vega:OTTHUMG00000160843 4 4q21.1 casein alpha s1 protein-coding CSN1S1 casein alpha s1 O alpha-S1-casein|casein, alpha 20121230 -9606 1447 CSN2 - CASB HGNC:2447|MIM:115460|Ensembl:ENSG00000135222|HPRD:00281|Vega:OTTHUMG00000129409 4 4q21.1 casein beta protein-coding CSN2 casein beta O beta-casein 20121230 -9606 1448 CSN3 - CSN10|CSNK|KCA HGNC:2446|MIM:601695|Ensembl:ENSG00000171209|HPRD:03411|Vega:OTTHUMG00000129399 4 4q21.1 casein kappa protein-coding CSN3 casein kappa O kappa-casein 20121230 -9606 1452 CSNK1A1 - CK1|CK1a|CKIa|HLCDGP1|PRO2975 HGNC:2451|MIM:600505|Ensembl:ENSG00000113712|HPRD:02739|Vega:OTTHUMG00000163463 5 5q32 casein kinase 1, alpha 1 protein-coding CSNK1A1 casein kinase 1, alpha 1 O CKI-alpha|casein kinase I isoform alpha|clock regulator kinase|down-regulated in lung cancer 20121230 -9606 1453 CSNK1D - CKIdelta|HCKID HGNC:2452|MIM:600864|Ensembl:ENSG00000141551|HPRD:02920|Vega:OTTHUMG00000178601 17 17q25 casein kinase 1, delta protein-coding CSNK1D casein kinase 1, delta O CKI-delta|CKId|casein kinase I isoform delta|tau-protein kinase CSNK1D 20121230 -9606 1454 CSNK1E RP1-5O6.1 CKIepsilon|HCKIE HGNC:2453|MIM:600863|Ensembl:ENSG00000213923|HPRD:02919|Vega:OTTHUMG00000151135 22 22q13.1 casein kinase 1, epsilon protein-coding CSNK1E casein kinase 1, epsilon O CKI-epsilon|CKIe|casein kinase I isoform epsilon 20121230 -9606 1455 CSNK1G2 - CK1g2 HGNC:2455|MIM:602214|Ensembl:ENSG00000133275|HPRD:03738|Vega:OTTHUMG00000180016 19 19p13.3 casein kinase 1, gamma 2 protein-coding CSNK1G2 casein kinase 1, gamma 2 O CKI-gamma 2|casein kinase 1 isoform gamma-2|casein kinase I isoform gamma-2 20121230 -9606 1456 CSNK1G3 - CKI-gamma 3|CSNK1G3L HGNC:2456|MIM:604253|Ensembl:ENSG00000151292|HPRD:05034|Vega:OTTHUMG00000128923 5 5q23 casein kinase 1, gamma 3 protein-coding CSNK1G3 casein kinase 1, gamma 3 O casein kinase I isoform gamma-3 20121230 -9606 1457 CSNK2A1 - CK2A1|CKII HGNC:2457|MIM:115440|Ensembl:ENSG00000101266|HPRD:00277|Vega:OTTHUMG00000031636 20 20p13 casein kinase 2, alpha 1 polypeptide protein-coding CSNK2A1 casein kinase 2, alpha 1 polypeptide O CK II alpha|CK2 catalytic subunit alpha|casein kinase II alpha 1 subunit|casein kinase II subunit alpha|protein kinase CK2 20121230 -9606 1459 CSNK2A2 - CK2A2|CSNK2A1 HGNC:2459|MIM:115442|Ensembl:ENSG00000070770|HPRD:00279|Vega:OTTHUMG00000133488 16 16q21 casein kinase 2, alpha prime polypeptide protein-coding CSNK2A2 casein kinase 2, alpha prime polypeptide O CK II alpha'|casein kinase II subunit alpha' 20121230 -9606 1460 CSNK2B DADB-127H9.2 CK2B|CK2N|CSK2B|G5A HGNC:2460|MIM:115441|Ensembl:ENSG00000204435|Ensembl:ENSG00000263020|HPRD:00278|Vega:OTTHUMG00000031056|Vega:OTTHUMG00000177888 6 6p21.3 casein kinase 2, beta polypeptide protein-coding CSNK2B casein kinase 2, beta polypeptide O CK II beta|Casein kinase II beta subunit|alternative name: G5a, phosvitin|casein kinase II subunit beta|phosvitin|protein G5a 20121230 -9606 1462 VCAN - CSPG2|ERVR|GHAP|PG-M|WGN|WGN1 HGNC:2464|MIM:118661|Ensembl:ENSG00000038427|HPRD:00340|Vega:OTTHUMG00000131321 5 5q14.3 versican protein-coding VCAN versican O chondroitin sulfate proteoglycan 2|chondroitin sulfate proteoglycan core protein 2|glial hyaluronate-binding protein|large fibroblast proteoglycan|versican core protein|versican proteoglycan 20121230 -9606 1463 NCAN - CSPG3 HGNC:2465|MIM:600826|Ensembl:ENSG00000130287|HPRD:02897|Vega:OTTHUMG00000182218 19 19p12 neurocan protein-coding NCAN neurocan O chondroitin sulfate proteoglycan 3 (neurocan)|neurocan core protein|neurocan proteoglycan 20121230 -9606 1464 CSPG4 - HMW-MAA|MCSP|MCSPG|MEL-CSPG|MSK16|NG2 HGNC:2466|MIM:601172|Ensembl:ENSG00000173546|HPRD:03105|Vega:OTTHUMG00000142836 15 15q24.2 chondroitin sulfate proteoglycan 4 protein-coding CSPG4 chondroitin sulfate proteoglycan 4 O chondroitin sulfate proteoglycan 4 (melanoma-associated)|chondroitin sulfate proteoglycan NG2|melanoma chondroitin sulfate proteoglycan|melanoma-associated chondroitin sulfate proteoglycan 20121230 -9606 1465 CSRP1 - CRP|CRP1|CSRP|CYRP|D1S181E HGNC:2469|MIM:123876|Ensembl:ENSG00000159176|HPRD:00470|Vega:OTTHUMG00000035773 1 1q32 cysteine and glycine-rich protein 1 protein-coding CSRP1 cysteine and glycine-rich protein 1 O LIM-domain protein|cysteine-rich protein 1 20121230 -9606 1466 CSRP2 - CRP2|LMO5|SmLIM HGNC:2470|MIM:601871|Ensembl:ENSG00000175183|HPRD:03523|Vega:OTTHUMG00000169919 12 12q21.1 cysteine and glycine-rich protein 2 protein-coding CSRP2 cysteine and glycine-rich protein 2 O LIM domain only 5, smooth muscle|LIM domain only protein 5|LMO-5|cysteine-rich protein 2|smooth muscle cell LIM protein 20121230 -9606 1467 CSRP2P - - HGNC:2471 3 3q13.33 cysteine and glycine-rich protein 2 pseudogene pseudo CSRP2P cysteine and glycine-rich protein 2 pseudogene O - 20121230 -9606 1468 SLC25A10 - DIC HGNC:10980|MIM:606794|Ensembl:ENSG00000183048|Ensembl:ENSG00000262660|HPRD:08424|Vega:OTTHUMG00000178172|Vega:OTTHUMG00000178173 17 17q25.3 solute carrier family 25 (mitochondrial carrier; dicarboxylate transporter), member 10 protein-coding SLC25A10 solute carrier family 25 (mitochondrial carrier; dicarboxylate transporter), member 10 O dicarboxylate ion carrier|mitochondrial dicarboxylate carrier 20121230 -9606 1469 CST1 - - HGNC:2473|MIM:123855|Ensembl:ENSG00000170373|HPRD:00460|Vega:OTTHUMG00000032085 20 20p11.21 cystatin SN protein-coding CST1 cystatin SN O cystain-SA-I|cystatin 1|cystatin SA-I|cystatin-1|cystatin-SN|cysteine proteinase inhibitor, type 2 family|salivary cystatin-SA-1 20121230 -9606 1470 CST2 - - HGNC:2474|MIM:123856|Ensembl:ENSG00000170369|HPRD:00461|Vega:OTTHUMG00000032086 20 20p11.21 cystatin SA protein-coding CST2 cystatin SA O cystatin 2|cystatin S5|cystatin-2|cystatin-S5|cystatin-SA|cysteine-proteinase inhibitor|salivary cysteine (thiol) protease inhibitor 20121230 -9606 1471 CST3 - ARMD11 HGNC:2475|MIM:604312|Ensembl:ENSG00000101439|HPRD:05056|Vega:OTTHUMG00000032080 20 20p11.21 cystatin C protein-coding CST3 cystatin C O bA218C14.4 (cystatin C)|cystatin 3|cystatin-3|cystatin-C|gamma-trace|neuroendocrine basic polypeptide|post-gamma-globulin 20121230 -9606 1472 CST4 - - HGNC:2476|MIM:123857|Ensembl:ENSG00000101441|HPRD:00462|Vega:OTTHUMG00000032083 20 20p11.21 cystatin S protein-coding CST4 cystatin S O cystatin 4|cystatin-4|cystatin-S|cystatin-SA-III|salivary acidic protein 1 20121230 -9606 1473 CST5 - - HGNC:2477|MIM:123858|Ensembl:ENSG00000170367|HPRD:00463|Vega:OTTHUMG00000032089 20 20p11.21 cystatin D protein-coding CST5 cystatin D O cystatin 5|cystatin-5|cystatin-D|cysteine-proteinase inhibitor 20121230 -9606 1474 CST6 - - HGNC:2478|MIM:601891|Ensembl:ENSG00000175315|HPRD:03535|Vega:OTTHUMG00000166750 11 11q13 cystatin E/M protein-coding CST6 cystatin E/M O cystatin 6|cystatin M|cystatin M/E|cystatin-6|cystatin-E|cystatin-M|cysteine proteinase inhibitor 20121230 -9606 1475 CSTA - AREI|STF1|STFA HGNC:2481|MIM:184600|Ensembl:ENSG00000121552|HPRD:01697|Vega:OTTHUMG00000159488 3 3q21 cystatin A (stefin A) protein-coding CSTA cystatin A (stefin A) O cystatin AS|cystatin-A 20121230 -9606 1476 CSTB - CST6|EPM1|EPM1A|PME|STFB|ULD HGNC:2482|MIM:601145|Ensembl:ENSG00000160213|HPRD:03091|Vega:OTTHUMG00000086886 21 21q22.3 cystatin B (stefin B) protein-coding CSTB cystatin B (stefin B) O CPI-B|cystatin-B|liver thiol proteinase inhibitor 20121230 -9606 1477 CSTF1 RP5-1167H4.1 CstF-50|CstFp50 HGNC:2483|MIM:600369|Ensembl:ENSG00000101138|HPRD:02653|Vega:OTTHUMG00000032791 20 20q13.2 cleavage stimulation factor, 3' pre-RNA, subunit 1, 50kDa protein-coding CSTF1 cleavage stimulation factor, 3' pre-RNA, subunit 1, 50kDa O CF-1 50 kDa subunit|CSTF 50 kDa subunit|cleavage stimulation factor 50 kDa subunit|cleavage stimulation factor subunit 1 20121230 -9606 1478 CSTF2 RP1-146H21.2 CstF-64 HGNC:2484|MIM:600368|Ensembl:ENSG00000101811|HPRD:02652|Vega:OTTHUMG00000022709 X Xq22.1 cleavage stimulation factor, 3' pre-RNA, subunit 2, 64kDa protein-coding CSTF2 cleavage stimulation factor, 3' pre-RNA, subunit 2, 64kDa O CF-1 64 kDa subunit|CSTF 64 kDa subunit|betaCstF-64 variant 2|cleavage stimulation factor 64 kDa subunit|cleavage stimulation factor subunit 2 20121230 -9606 1479 CSTF3 - CSTF-77 HGNC:2485|MIM:600367|Ensembl:ENSG00000176102|HPRD:02651|Vega:OTTHUMG00000166268 11 11p13 cleavage stimulation factor, 3' pre-RNA, subunit 3, 77kDa protein-coding CSTF3 cleavage stimulation factor, 3' pre-RNA, subunit 3, 77kDa O CF-1 77 kDa subunit|CSTF 77 kDa subunit|cleavage stimulation factor 77 kDa subunit|cleavage stimulation factor subunit 3 20121230 -9606 1480 CSTP1 - dJ850N15.1 HGNC:2486 20 20p11 cystatin pseudogene 1 pseudo CSTP1 cystatin pseudogene 1 O - 20121230 -9606 1481 CSTP2 - - HGNC:2487 20 20p11.21 cystatin pseudogene 2 pseudo CSTP2 cystatin pseudogene 2 O - 20121230 -9606 1482 NKX2-5 - CHNG5|CSX|CSX1|HLHS2|NKX2.5|NKX2E|NKX4-1|VSD3 HGNC:2488|MIM:600584|Ensembl:ENSG00000183072|HPRD:02787|Vega:OTTHUMG00000130522 5 5q34 NK2 homeobox 5 protein-coding NKX2-5 NK2 homeobox 5 O NK2 transcription factor related, locus 5|cardiac-specific homeobox 1|homeobox protein CSX|homeobox protein NK-2 homolog E|homeobox protein Nkx-2.5|tinman paralog 20121230 -9606 1483 CTAA1 - CAP HGNC:2489|MIM:115650 14 14q24-qter cataract, anterior polar 1 unknown CTAA1 cataract, anterior polar 1 O - 20110215 -9606 1484 CTAA2 - - HGNC:2490|MIM:601202 17 17p13 cataract, anterior polar 2 unknown CTAA2 cataract, anterior polar 2 O - 20120622 -9606 1485 CTAG1B - CT6.1|CTAG|CTAG1|ESO1|LAGE-2|LAGE2B|NY-ESO-1 HGNC:2491|MIM:300156|Ensembl:ENSG00000184033|HPRD:02151|Vega:OTTHUMG00000024232 X Xq28 cancer/testis antigen 1B protein-coding CTAG1B cancer/testis antigen 1B O New York esophageal squamous cell carcinoma 1|autoimmunogenic cancer/testis antigen NY-ESO-1|cancer antigen 3|cancer/testis antigen 1|cancer/testis antigen 6.1|l antigen family member 2 20121230 -9606 1486 CTBS RP11-118B23.5 CTB HGNC:2496|MIM:600873|Ensembl:ENSG00000117151|HPRD:02927|Vega:OTTHUMG00000009922 1 1p22 chitobiase, di-N-acetyl- protein-coding CTBS chitobiase, di-N-acetyl- O di-N-acetylchitobiase 20121230 -9606 1487 CTBP1 - BARS HGNC:2494|MIM:602618|Ensembl:ENSG00000159692|HPRD:04015|Vega:OTTHUMG00000089259 4 4p16 C-terminal binding protein 1 protein-coding CTBP1 C-terminal binding protein 1 O C-terminal-binding protein 1|brefeldin A-ribosylated substrate 20121230 -9606 1488 CTBP2 RP11-59C5.2 - HGNC:2495|MIM:602619|Ensembl:ENSG00000175029|HPRD:04016|Vega:OTTHUMG00000019224 10 10q26.13 C-terminal binding protein 2 protein-coding CTBP2 C-terminal binding protein 2 O C-terminal-binding protein 2|ribeye 20121230 -9606 1489 CTF1 - CT-1|CT1 HGNC:2499|MIM:600435|Ensembl:ENSG00000150281|HPRD:02699|Vega:OTTHUMG00000132413 16 16p11.2 cardiotrophin 1 protein-coding CTF1 cardiotrophin 1 O cardiophin 1|cardiotrophin-1 20121230 -9606 1490 CTGF - CCN2|HCS24|IGFBP8|NOV2 HGNC:2500|MIM:121009|Ensembl:ENSG00000118523|HPRD:00412|Vega:OTTHUMG00000015573 6 6q23.1 connective tissue growth factor protein-coding CTGF connective tissue growth factor O CCN family member 2|IBP-8|IGF-binding protein 8|IGFBP-8|hypertrophic chondrocyte-specific protein 24|insulin-like growth factor-binding protein 8 20121230 -9606 1491 CTH - - HGNC:2501|MIM:607657|Ensembl:ENSG00000116761|HPRD:09633|Vega:OTTHUMG00000009352 1 1p31.1 cystathionase (cystathionine gamma-lyase) protein-coding CTH cystathionase (cystathionine gamma-lyase) O cystathionine gamma-lyase|cysteine desulfhydrase|cysteine-protein sulfhydrase|gamma-cystathionase|homoserine deaminase|homoserine dehydratase 20121230 -9606 1493 CTLA4 - CD|CD152|CELIAC3|CTLA-4|GRD4|GSE|ICOS|IDDM12 HGNC:2505|MIM:123890|Ensembl:ENSG00000163599|HPRD:00474|Vega:OTTHUMG00000132877 2 2q33 cytotoxic T-lymphocyte-associated protein 4 protein-coding CTLA4 cytotoxic T-lymphocyte-associated protein 4 O CD152 isoform|celiac disease 3|cytotoxic T lymphocyte associated antigen 4 short spliced form|cytotoxic T-lymphocyte antigen 4|cytotoxic T-lymphocyte protein 4|cytotoxic T-lymphocyte-associated antigen 4|cytotoxic T-lymphocyte-associated serine esterase-4|ligand and transmembrane spliced cytotoxic T lymphocyte associated antigen 4 20121230 -9606 1495 CTNNA1 - CAP102 HGNC:2509|MIM:116805|Ensembl:ENSG00000044115|HPRD:00285|Vega:OTTHUMG00000163502 5 5q31.2 catenin (cadherin-associated protein), alpha 1, 102kDa protein-coding CTNNA1 catenin (cadherin-associated protein), alpha 1, 102kDa O alpha E-catenin|alpha-E-catenin|alpha-catenin|alphaE-catenin|cadherin-associated protein,102kDa|catenin alpha-1|renal carcinoma antigen NY-REN-13 20121230 -9606 1496 CTNNA2 - CAP-R|CAPR|CT114|CTNR HGNC:2510|MIM:114025|Ensembl:ENSG00000066032|HPRD:00228|Vega:OTTHUMG00000152903 2 2p12-p11.1 catenin (cadherin-associated protein), alpha 2 protein-coding CTNNA2 catenin (cadherin-associated protein), alpha 2 O alpha N-catenin|alpha-N-catenin|alpha-catenin-related protein|cadherin-associated protein, related|cancer/testis antigen 114|catenin alpha-2 20121230 -9606 1497 CTNS - CTNS-LSB|PQLC4 HGNC:2518|MIM:606272|Ensembl:ENSG00000040531|HPRD:05885|Vega:OTTHUMG00000090693 17 17p13 cystinosin, lysosomal cystine transporter protein-coding CTNS cystinosin, lysosomal cystine transporter O cystinosin 20121230 -9606 1498 CTNNA1P1 - CTNNAP1 HGNC:2513 5 5q22 catenin (cadherin-associated protein), alpha 1 pseudogene 1 pseudo CTNNA1P1 catenin (cadherin-associated protein), alpha 1 pseudogene 1 O - 20121230 -9606 1499 CTNNB1 OK/SW-cl.35 CTNNB HGNC:2514|MIM:116806|Ensembl:ENSG00000168036|HPRD:00286|Vega:OTTHUMG00000131393 3 3p21 catenin (cadherin-associated protein), beta 1, 88kDa protein-coding CTNNB1 catenin (cadherin-associated protein), beta 1, 88kDa O catenin beta-1 20121230 -9606 1500 CTNND1 - CAS|CTNND|P120CAS|P120CTN|p120|p120(CAS)|p120(CTN) HGNC:2515|MIM:601045|Ensembl:ENSG00000198561|HPRD:03026|Vega:OTTHUMG00000167272 11 11q11 catenin (cadherin-associated protein), delta 1 protein-coding CTNND1 catenin (cadherin-associated protein), delta 1 O cadherin-associated Src substrate|catenin delta-1|p120 catenin 20121230 -9606 1501 CTNND2 - GT24|NPRAP HGNC:2516|MIM:604275|Ensembl:ENSG00000169862|HPRD:09181|Vega:OTTHUMG00000090511 5 5p15.2 catenin (cadherin-associated protein), delta 2 protein-coding CTNND2 catenin (cadherin-associated protein), delta 2 O T-cell delta-catenin|catenin (cadherin-associated protein), delta 2 (neural plakophilin-related arm-repeat protein)|catenin delta-2|neurojungin 20121230 -9606 1503 CTPS1 - CTPS HGNC:2519|MIM:123860|Ensembl:ENSG00000171793|HPRD:00465|Vega:OTTHUMG00000005712 1 1p34.1 CTP synthase 1 protein-coding CTPS1 CTP synthase 1 O CTP synthetase 1|UTP--ammonia ligase 1|cytidine 5'-triphosphate synthetase|cytidine 5-prime triphosphate synthetase 20121230 -9606 1504 CTRB1 - CTRB HGNC:2521|MIM:118890|Ensembl:ENSG00000168925|HPRD:00345|Vega:OTTHUMG00000159272 16 16q23.1 chymotrypsinogen B1 protein-coding CTRB1 chymotrypsinogen B1 O chymotrypsinogen B 20121230 -9606 1506 CTRL - CTRL1 HGNC:2524|MIM:118888|Ensembl:ENSG00000141086|HPRD:00344|Vega:OTTHUMG00000137552 16 16q22.1 chymotrypsin-like protein-coding CTRL chymotrypsin-like O chymotrypsin-like protease CTRL-1 20121230 -9606 1508 CTSB - APPS|CPSB HGNC:2527|MIM:116810|Ensembl:ENSG00000164733|HPRD:00287|Vega:OTTHUMG00000090799 8 8p22 cathepsin B protein-coding CTSB cathepsin B O APP secretase|amyloid precursor protein secretase|cathepsin B1|cysteine protease 20121230 -9606 1509 CTSD - CLN10|CPSD HGNC:2529|MIM:116840|Ensembl:ENSG00000117984|HPRD:00291|Vega:OTTHUMG00000044760 11 11p15.5 cathepsin D protein-coding CTSD cathepsin D O ceroid-lipofuscinosis, neuronal 10|lysosomal aspartyl peptidase|lysosomal aspartyl protease 20121230 -9606 1510 CTSE - CATE HGNC:2530|MIM:116890|Ensembl:ENSG00000196188|HPRD:00294|Vega:OTTHUMG00000036121 1 1q31 cathepsin E protein-coding CTSE cathepsin E O erythrocyte membrane aspartic proteinase|slow-moving proteinase 20121230 -9606 1511 CTSG - CATG|CG HGNC:2532|MIM:116830|Ensembl:ENSG00000100448|HPRD:00289|Vega:OTTHUMG00000140182 14 14q11.2 cathepsin G protein-coding CTSG cathepsin G O - 20121230 -9606 1512 CTSH - ACC-4|ACC-5|CPSB|minichain HGNC:2535|MIM:116820|Ensembl:ENSG00000103811|HPRD:00288|Vega:OTTHUMG00000144171 15 15q25.1 cathepsin H protein-coding CTSH cathepsin H O N-benzoylarginine-beta-naphthylamide hydrolase|aleurain|cathepsin B3|cathepsin BA|pro-cathepsin H 20121230 -9606 1513 CTSK RP11-363I22.4 CTS02|CTSO|CTSO1|CTSO2|PKND|PYCD HGNC:2536|MIM:601105|Ensembl:ENSG00000143387|HPRD:03064|Vega:OTTHUMG00000035008 1 1q21 cathepsin K protein-coding CTSK cathepsin K O cathepsin O|cathepsin O1|cathepsin O2|cathepsin X 20121230 -9606 1514 CTSL1 RP11-65B23.1 CATL|CTSL|MEP HGNC:2537|MIM:116880|Ensembl:ENSG00000135047|HPRD:00293|Vega:OTTHUMG00000020149 9 9q21.33 cathepsin L1 protein-coding CTSL1 cathepsin L1 O cathepsin L|major excreted protein 20121230 -9606 1515 CTSL2 UNQ268/PRO305 CATL2|CTSU|CTSV HGNC:2538|MIM:603308|Ensembl:ENSG00000136943|HPRD:04495|Vega:OTTHUMG00000020314 9 9q22.2 cathepsin L2 protein-coding CTSL2 cathepsin L2 O cathepsin L2, preproprotein|cathepsin U|cathepsin V 20121230 -9606 1517 CTSL1P2 - CTSLL2 HGNC:2540 10 10q11.22 cathepsin L1 pseudogene 2 pseudo CTSL1P2 cathepsin L1 pseudogene 2 O - 20121230 -9606 1518 CTSL1P8 - - HGNC:39084 9 9q22.1 cathepsin L1 pseudogene 8 pseudo CTSL1P8 cathepsin L1 pseudogene 8 O - 20121230 -9606 1519 CTSO - CTSO1 HGNC:2542|MIM:600550|Ensembl:ENSG00000256043|HPRD:02772|Vega:OTTHUMG00000161942 4 4q32.1 cathepsin O protein-coding CTSO cathepsin O O - 20121230 -9606 1520 CTSS - - HGNC:2545|MIM:116845|Ensembl:ENSG00000163131|HPRD:00292|Vega:OTTHUMG00000035010 1 1q21 cathepsin S protein-coding CTSS cathepsin S O - 20121230 -9606 1521 CTSW - LYPN HGNC:2546|MIM:602364|Ensembl:ENSG00000172543|HPRD:03840|Vega:OTTHUMG00000166663 11 11q13.1 cathepsin W protein-coding CTSW cathepsin W O lymphopain 20121230 -9606 1522 CTSZ - CTSX HGNC:2547|MIM:603169|Ensembl:ENSG00000101160|HPRD:04410|Vega:OTTHUMG00000032858 20 20q13.32 cathepsin Z protein-coding CTSZ cathepsin Z O carboxypeptidase LB|cathepsin B2|cathepsin IV|cathepsin P|cathepsin X|cathepsin Y|cathepsin Z1|cysteine-type carboxypeptidase|lysosomal carboxypeptidase B|preprocathepsin P 20121230 -9606 1523 CUX1 - CASP|CDP|CDP/Cut|CDP1|COY1|CUTL1|CUX|Clox|Cux/CDP|GOLIM6|Nbla10317|p100|p110|p200|p75 HGNC:2557|MIM:116896|Ensembl:ENSG00000257923|HPRD:00295|Vega:OTTHUMG00000157129 7 7q22.1 cut-like homeobox 1 protein-coding CUX1 cut-like homeobox 1 O CCAAT displacement protein|cut homolog|golgi integral membrane protein 6|homeobox protein cux-1|protein CASP|putative protein product of Nbla10317 20121230 -9606 1524 CX3CR1 - CCRL1|CMKBRL1|CMKDR1|GPR13|GPRV28|V28 HGNC:2558|MIM:601470|Ensembl:ENSG00000168329|HPRD:03277|Vega:OTTHUMG00000156249 3 3p21.3 chemokine (C-X3-C motif) receptor 1 protein-coding CX3CR1 chemokine (C-X3-C motif) receptor 1 O C-X3-C CKR-1|CMK-BRL-1|CMK-BRL1|CX3C chemokine receptor 1|G protein-coupled receptor 13|G-protein coupled receptor 13|beta chemokine receptor-like 1|chemokine (C-C) receptor-like 1|chemokine (C-X3-C) receptor 1|fractalkine receptor 20121230 -9606 1525 CXADR - CAR|CAR4/6|HCAR HGNC:2559|MIM:602621|Ensembl:ENSG00000154639|HPRD:11804|Vega:OTTHUMG00000074508 21 21q21.1 coxsackie virus and adenovirus receptor protein-coding CXADR coxsackie virus and adenovirus receptor O 46 kD coxsackievirus and adenovirus receptor (CAR) protein|CVB3-binding protein|HCVADR|coxsackievirus B-adenovirus receptor|coxsackievirus and adenovirus receptor 20121230 -9606 1526 CXB3S - CB3S HGNC:2560|MIM:120050 19 19pter-q13 coxsackie virus B3 sensitivity unknown CXB3S coxsackie virus B3 sensitivity O - 20110215 -9606 1527 TEX28 AC092402.6 CXorf2|TEX28P1|TEX28P2|fTEX HGNC:2563|MIM:300092|Ensembl:ENSG00000185254|HPRD:02103|Vega:OTTHUMG00000022654 X Xq28 testis expressed 28 protein-coding TEX28 testis expressed 28 O testis-specific protein TEX28 20121230 -9606 1528 CYB5A - CYB5|MCB5 HGNC:2570|MIM:613218|Ensembl:ENSG00000166347|HPRD:08941|Vega:OTTHUMG00000132843 18 18q23 cytochrome b5 type A (microsomal) protein-coding CYB5A cytochrome b5 type A (microsomal) O cytochrome b5|type 1 cyt-b5 20121230 -9606 1531 CYB5AP3 - CYB5P3|Psgb-5-1 HGNC:2574 14 14q32.12 cytochrome b5 type A (microsomal) pseudogene 3 pseudo CYB5AP3 cytochrome b5 type A (microsomal) pseudogene 3 O - 20121230 -9606 1532 CYB5AP4 - CYB5P4|Psgb-5-2|bA189G24.1 HGNC:2575 20 20p11.2 cytochrome b5 type A (microsomal) pseudogene 4 pseudo CYB5AP4 cytochrome b5 type A (microsomal) pseudogene 4 O - 20121230 -9606 1534 CYB561 - FRRS2 HGNC:2571|MIM:600019|Ensembl:ENSG00000008283|HPRD:02485|Vega:OTTHUMG00000179116 17 17q23.3 cytochrome b-561 protein-coding CYB561 cytochrome b-561 O cytochrome b561|ferric-chelate reductase 2 20121230 -9606 1535 CYBA - p22-PHOX HGNC:2577|MIM:608508|Ensembl:ENSG00000051523|HPRD:01989|Vega:OTTHUMG00000173320 16 16q24 cytochrome b-245, alpha polypeptide protein-coding CYBA cytochrome b-245, alpha polypeptide O cytochrome b light chain|cytochrome b(558) alpha chain|cytochrome b(558) alpha-subunit|cytochrome b, alpha polypeptide|cytochrome b-245 light chain|cytochrome b558 subunit alpha|flavocytochrome b-558 alpha polypeptide|neutrophil cytochrome b 22 kDa polypeptide|p22 phagocyte B-cytochrome|p22phox|superoxide-generating NADPH oxidase light chain subunit 20121230 -9606 1536 CYBB - AMCBX2|CGD|GP91-1|GP91-PHOX|GP91PHOX|NOX2|p91-PHOX HGNC:2578|MIM:300481|Ensembl:ENSG00000165168|HPRD:02382|Vega:OTTHUMG00000033175 X Xp21.1 cytochrome b-245, beta polypeptide protein-coding CYBB cytochrome b-245, beta polypeptide O CGD91-phox|NADPH oxidase 2|cytochrome b(558) subunit beta|cytochrome b-245 heavy chain|cytochrome b558 subunit beta|heme-binding membrane glycoprotein gp91phox|neutrophil cytochrome b 91 kDa polypeptide|p22 phagocyte B-cytochrome|superoxide-generating NADPH oxidase heavy chain subunit 20121230 -9606 1537 CYC1 - UQCR4 HGNC:2579|MIM:123980|Ensembl:ENSG00000179091|HPRD:00480|Vega:OTTHUMG00000165242 8 8q24.3 cytochrome c-1 protein-coding CYC1 cytochrome c-1 O complex III subunit 4|complex III subunit IV|cytochrome b-c1 complex subunit 4|cytochrome c1, heme protein, mitochondrial|ubiquinol-cytochrome-c reductase complex cytochrome c1 subunit 20121230 -9606 1538 CYLC1 RP11-305I2.1 CYCL1 HGNC:2582|MIM:300768|Ensembl:ENSG00000183035|Vega:OTTHUMG00000021922 X Xq21.1 cylicin, basic protein of sperm head cytoskeleton 1 protein-coding CYLC1 cylicin, basic protein of sperm head cytoskeleton 1 O cylicin I|cylicin-1|multiple-band polypeptide I 20121230 -9606 1539 CYLC2 - - HGNC:2583|MIM:604035|Ensembl:ENSG00000155833|HPRD:04945|Vega:OTTHUMG00000020396 9 9q31.1 cylicin, basic protein of sperm head cytoskeleton 2 protein-coding CYLC2 cylicin, basic protein of sperm head cytoskeleton 2 O cylicin II|cylicin-2|multiple-band polypeptide II 20121230 -9606 1540 CYLD HSPC057 BRSS|CDMT|CYLD1|CYLDI|EAC|MFT|MFT1|SBS|TEM|USPL2 HGNC:2584|MIM:605018|Ensembl:ENSG00000083799|HPRD:05427|Vega:OTTHUMG00000173404 16 16q12.1 cylindromatosis (turban tumor syndrome) protein-coding CYLD cylindromatosis (turban tumor syndrome) O deubiquitinating enzyme CYLD|probable ubiquitin carboxyl-terminal hydrolase CYLD|ubiquitin carboxyl-terminal hydrolase CYLD|ubiquitin specific peptidase like 2|ubiquitin thioesterase CYLD|ubiquitin thiolesterase CYLD|ubiquitin-specific-processing protease CYLD 20121230 -9606 1541 CYMD - DCMD|MDDC HGNC:2587|MIM:153880 7 7p21-p15 cystoid macular dystrophy unknown CYMD cystoid macular dystrophy O - 20120622 -9606 1543 CYP1A1 - AHH|AHRR|CP11|CYP1|P1-450|P450-C|P450DX HGNC:2595|MIM:108330|Ensembl:ENSG00000140465|HPRD:00148|Vega:OTTHUMG00000142812 15 15q24.1 cytochrome P450, family 1, subfamily A, polypeptide 1 protein-coding CYP1A1 cytochrome P450, family 1, subfamily A, polypeptide 1 O CYPIA1|aryl hydrocarbon hydroxylase|cytochrome P1-450, dioxin-inducible|cytochrome P450 1A1|cytochrome P450 form 6|cytochrome P450, subfamily I (aromatic compound-inducible), polypeptide 1|cytochrome P450-C|cytochrome P450-P1|flavoprotein-linked monooxygenase|xenobiotic monooxygenase 20121230 -9606 1544 CYP1A2 - CP12|P3-450|P450(PA) HGNC:2596|MIM:124060|Ensembl:ENSG00000140505|HPRD:00489|Vega:OTTHUMG00000172901 15 15q24.1 cytochrome P450, family 1, subfamily A, polypeptide 2 protein-coding CYP1A2 cytochrome P450, family 1, subfamily A, polypeptide 2 O CYPIA2|P450 form 4|aryl hydrocarbon hydroxylase|cytochrome P(3)450|cytochrome P450 1A2|cytochrome P450 4|cytochrome P450, subfamily I (aromatic compound-inducible), polypeptide 2|cytochrome P450-P3|dioxin-inducible P3-450|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 20121230 -9606 1545 CYP1B1 - CP1B|CYPIB1|GLC3A|P4501B1 HGNC:2597|MIM:601771|Ensembl:ENSG00000138061|HPRD:03464|Vega:OTTHUMG00000100970 2 2p22.2 cytochrome P450, family 1, subfamily B, polypeptide 1 protein-coding CYP1B1 cytochrome P450, family 1, subfamily B, polypeptide 1 O aryl hydrocarbon hydroxylase|cytochrome P450 1B1|cytochrome P450, subfamily I (dioxin-inducible), polypeptide 1 (glaucoma 3, primary infantile)|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 20121230 -9606 1546 CYP2A - CYP1|CYP2|P450C2|P450C2A|P450PB HGNC:2607 19 19q13.2 cytochrome P450, family 2, subfamily A other CYP2A cytochrome P450, family 2, subfamily A O - 20120720 -9606 1548 CYP2A6 - CPA6|CYP2A|CYP2A3|CYPIIA6|P450C2A|P450PB HGNC:2610|MIM:122720|Ensembl:ENSG00000255974|HPRD:00420 19 19q13.2 cytochrome P450, family 2, subfamily A, polypeptide 6 protein-coding CYP2A6 cytochrome P450, family 2, subfamily A, polypeptide 6 O 1,4-cineole 2-exo-monooxygenase|coumarin 7-hydroxylase|cytochrome P450 2A6|cytochrome P450 IIA3|cytochrome P450(I)|cytochrome P450, subfamily IIA (phenobarbital-inducible), polypeptide 6|flavoprotein-linked monooxygenase|xenobiotic monooxygenase 20121230 -9606 1549 CYP2A7 - CPA7|CPAD|CYP2A|CYPIIA7|P450-IIA4 HGNC:2611|MIM:608054|Ensembl:ENSG00000198077|HPRD:07453 19 19q13.2 cytochrome P450, family 2, subfamily A, polypeptide 7 protein-coding CYP2A7 cytochrome P450, family 2, subfamily A, polypeptide 7 O cytochrome P450 2A7|cytochrome P450 IIA4|cytochrome P450, subfamily IIA (phenobarbital-inducible), polypeptide 7|cytochrome P450IIA4 20121230 -9606 1550 CYP2A7P1 - CYP2A18PC|CYP2A18PN|CYP2A7P2|CYP2A7PT HGNC:2612 19 19q13.2 cytochrome P450, family 2, subfamily A, polypeptide 7 pseudogene 1 pseudo CYP2A7P1 cytochrome P450, family 2, subfamily A, polypeptide 7 pseudogene 1 O - 20121230 -9606 1551 CYP3A7 - CP37|CYPIIIA7|P450-HFLA HGNC:2640|MIM:605340|Ensembl:ENSG00000160870|HPRD:05630|Vega:OTTHUMG00000156726 7 7q21-q22.1 cytochrome P450, family 3, subfamily A, polypeptide 7 protein-coding CYP3A7 cytochrome P450, family 3, subfamily A, polypeptide 7 O aryl hydrocarbon hydroxylase|cytochrome P450 3A7|cytochrome P450, subfamily IIIA, polypeptide 7|cytochrome P450-HFLA|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 20121230 -9606 1553 CYP2A13 - CPAD|CYP2A|CYPIIA13 HGNC:2608|MIM:608055|Ensembl:ENSG00000197838|HPRD:07454 19 19q13.2 cytochrome P450, family 2, subfamily A, polypeptide 13 protein-coding CYP2A13 cytochrome P450, family 2, subfamily A, polypeptide 13 O cytochrome P450 2A13|cytochrome P450, subfamily IIA (phenobarbital-inducible), polypeptide 13 20121230 -9606 1555 CYP2B6 - CPB6|CYP2B|CYP2B7|CYP2B7P|CYPIIB6|EFVM|IIB1|P450 HGNC:2615|MIM:123930|Ensembl:ENSG00000197408|HPRD:00477 19 19q13.2 cytochrome P450, family 2, subfamily B, polypeptide 6 protein-coding CYP2B6 cytochrome P450, family 2, subfamily B, polypeptide 6 O 1,4-cineole 2-exo-monooxygenase|cytochrome P450 2B6|cytochrome P450 IIB1|cytochrome P450, subfamily IIB (phenobarbital-inducible), polypeptide 6 20121230 -9606 1556 CYP2B7P1 - CYP2B|CYP2B7|CYP2B7P HGNC:2616 19 19q13.2 cytochrome P450, family 2, subfamily B, polypeptide 7 pseudogene 1 pseudo CYP2B7P1 cytochrome P450, family 2, subfamily B, polypeptide 7 pseudogene 1 O - 20121230 -9606 1557 CYP2C19 RP11-400G3.4 CPCJ|CYP2C|P450C2C|P450IIC19 HGNC:2621|MIM:124020|Ensembl:ENSG00000165841|HPRD:00486|Vega:OTTHUMG00000018799 10 10q24 cytochrome P450, family 2, subfamily C, polypeptide 19 protein-coding CYP2C19 cytochrome P450, family 2, subfamily C, polypeptide 19 O (R)-limonene 6-monooxygenase|(S)-limonene 6-monooxygenase|(S)-limonene 7-monooxygenase|CYPIIC17|CYPIIC19|S-mephenytoin 4-hydroxylase|cytochrome P-450 II C|cytochrome P450 2C19|cytochrome P450, subfamily IIC (mephenytoin 4-hydroxylase), polypeptide 19|cytochrome P450-11A|cytochrome P450-254C|flavoprotein-linked monooxygenase|mephenytoin 4'-hydroxylase|mephenytoin 4-hydroxylase|microsomal monooxygenase|xenobiotic monooxygenase 20121230 -9606 1558 CYP2C8 - CPC8|CYPIIC8|MP-12/MP-20 HGNC:2622|MIM:601129|Ensembl:ENSG00000138115|HPRD:03083|Vega:OTTHUMG00000018804 10 10q23.33 cytochrome P450, family 2, subfamily C, polypeptide 8 protein-coding CYP2C8 cytochrome P450, family 2, subfamily C, polypeptide 8 O P450 form 1|cytochrome P450 2C8|cytochrome P450 IIC2|cytochrome P450 MP-12|cytochrome P450 MP-20|cytochrome P450 form 1|cytochrome P450, subfamily IIC (mephenytoin 4-hydroxylase), polypeptide 8|flavoprotein-linked monooxygenase|microsomal monooxygenase|s-mephenytoin 4-hydroxylase|xenobiotic monooxygenase 20121230 -9606 1559 CYP2C9 RP11-208C17.6 CPC9|CYP2C|CYP2C10|CYPIIC9|P450IIC9 HGNC:2623|MIM:601130|Ensembl:ENSG00000138109|HPRD:03084|Vega:OTTHUMG00000018805 10 10q24 cytochrome P450, family 2, subfamily C, polypeptide 9 protein-coding CYP2C9 cytochrome P450, family 2, subfamily C, polypeptide 9 O cytochrome P-450 S-mephenytoin 4-hydroxylase|cytochrome P-450MP|cytochrome P450 2C9|cytochrome P450 PB-1|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 20121230 -9606 1562 CYP2C18 RP11-466J14.4 CPCI|CYP2C|CYP2C17|P450-6B/29C|P450IIC17 HGNC:2620|MIM:601131|Ensembl:ENSG00000108242|HPRD:03085|Vega:OTTHUMG00000018796 10 10q24 cytochrome P450, family 2, subfamily C, polypeptide 18 protein-coding CYP2C18 cytochrome P450, family 2, subfamily C, polypeptide 18 O (S)-mephenytoin hydroxylase associated cytochrome P450|CYPIIC18|cytochrome P450 2C18|cytochrome P450, subfamily IIC (mephenytoin 4-hydroxylase), polypeptide 17|cytochrome P450, subfamily IIC (mephenytoin 4-hydroxylase), polypeptide 18|cytochrome P450-6B/29C|flavoprotein-linked monooxygenase|microsomal monooxygenase|unspecific monooxygenase 20121230 -9606 1564 CYP2D7P1 - CYP2D|CYP2D7|CYP2D7AP|CYP2D@|P450C2D|P450DB1 HGNC:2624|HPRD:13108 22 22q13 cytochrome P450, family 2, subfamily D, polypeptide 7 pseudogene 1 pseudo CYP2D7P1 cytochrome P450, family 2, subfamily D, polypeptide 7 pseudogene 1 O - 20121230 -9606 1565 CYP2D6 RP4-669P10.2 CPD6|CYP2D|CYP2D7AP|CYP2D7BP|CYP2D7P2|CYP2D8P2|CYP2DL1|CYPIID6|P450-DB1|P450C2D|P450DB1 HGNC:2625|MIM:124030|Ensembl:ENSG00000100197|HPRD:00487|Vega:OTTHUMG00000150918 22 22q13.1 cytochrome P450, family 2, subfamily D, polypeptide 6 protein-coding CYP2D6 cytochrome P450, family 2, subfamily D, polypeptide 6 O cytochrome P450 2D6|cytochrome P450, family 2, subfamily D, polypeptide 7 pseudogene 2|cytochrome P450, family 2, subfamily D, polypeptide 8 pseudogene 2|cytochrome P450, subfamily II (debrisoquine, sparteine, etc., -metabolising), polypeptide 7 pseudogene 2|cytochrome P450, subfamily IID (debrisoquine, sparteine, etc., -metabolising), polypeptide 8 pseudogene 2|cytochrome P450, subfamily IID (debrisoquine, sparteine, etc., -metabolizing), polypeptide 6|cytochrome P450, subfamily IID (debrisoquine, sparteine, etc., -metabolizing)-like 1|cytochrome P450-DB1|debrisoquine 4-hydroxylase|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 20121230 -9606 1566 CYP2D7BP - - - 22 22q13.2 cytochrome P450, subfamily IID (debrisoquine, sparteine, etc., -metabolising), polypeptide 7b (pseudogene) pseudo - - - - 20120720 -9606 1568 CYP2D8P1 - CYP2D8P|CYP2DP1 HGNC:2628 22 22q13.2 cytochrome P450, family 2, subfamily D, polypeptide 8 pseudogene 1 pseudo CYP2D8P1 cytochrome P450, family 2, subfamily D, polypeptide 8 pseudogene 1 O - 20121230 -9606 1571 CYP2E1 - CPE1|CYP2E|P450-J|P450C2E HGNC:2631|MIM:124040|Ensembl:ENSG00000130649|HPRD:11813|Vega:OTTHUMG00000019322 10 10q24.3-qter cytochrome P450, family 2, subfamily E, polypeptide 1 protein-coding CYP2E1 cytochrome P450, family 2, subfamily E, polypeptide 1 O 4-nitrophenol 2-hydroxylase|CYPIIE1|cytochrome P450 2E1|cytochrome P450, subfamily IIE (ethanol-inducible), polypeptide 1|cytochrome P450-J|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 20121230 -9606 1572 CYP2F1 - C2F1|CYP2F HGNC:2632|MIM:124070|Ensembl:ENSG00000197446|HPRD:00490|Vega:OTTHUMG00000167412 19 19q13.2 cytochrome P450, family 2, subfamily F, polypeptide 1 protein-coding CYP2F1 cytochrome P450, family 2, subfamily F, polypeptide 1 O CYPIIF1|cytochrome P450 2F1|cytochrome P450, subfamily IIF, polypeptide 1|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 20121230 -9606 1573 CYP2J2 - CPJ2 HGNC:2634|MIM:601258|Ensembl:ENSG00000134716|HPRD:03159|Vega:OTTHUMG00000008991 1 1p31.3-p31.2 cytochrome P450, family 2, subfamily J, polypeptide 2 protein-coding CYP2J2 cytochrome P450, family 2, subfamily J, polypeptide 2 O CYPIIJ2|arachidonic acid epoxygenase|cytochrome P450 2J2|cytochrome P450, subfamily IIJ (arachidonic acid epoxygenase) polypeptide 2|flavoprotein-linked monooxygenase|microsomal monooxygenase 20121230 -9606 1574 CYP3A - CYP3 HGNC:2635 7 7q21.3-q22.1 cytochrome P450, family 3, subfamily A other CYP3A cytochrome P450, family 3, subfamily A O - 20120923 -9606 1576 CYP3A4 - CP33|CP34|CYP3A|CYP3A3|CYPIIIA3|CYPIIIA4|HLP|NF-25|P450C3|P450PCN1 HGNC:2637|MIM:124010|Ensembl:ENSG00000160868|HPRD:00484|Vega:OTTHUMG00000156651 7 7q21.1 cytochrome P450, family 3, subfamily A, polypeptide 4 protein-coding CYP3A4 cytochrome P450, family 3, subfamily A, polypeptide 4 O 1,8-cineole 2-exo-monooxygenase|P450-III, steroid inducible|albendazole monooxygenase|albendazole sulfoxidase|cytochrome P450 3A3|cytochrome P450 3A4|cytochrome P450 HLp|cytochrome P450 NF-25|cytochrome P450, subfamily IIIA (niphedipine oxidase), polypeptide 3|cytochrome P450, subfamily IIIA (niphedipine oxidase), polypeptide 4|cytochrome P450-PCN1|glucocorticoid-inducible P450|nifedipine oxidase|quinine 3-monooxygenase|taurochenodeoxycholate 6-alpha-hydroxylase 20121230 -9606 1577 CYP3A5 - CP35|CYPIIIA5|P450PCN3|PCN3 HGNC:2638|MIM:605325|Ensembl:ENSG00000106258|HPRD:05617|Vega:OTTHUMG00000156724 7 7q21.1 cytochrome P450, family 3, subfamily A, polypeptide 5 protein-coding CYP3A5 cytochrome P450, family 3, subfamily A, polypeptide 5 O aryl hydrocarbon hydroxylase|cytochrome P450 3A5|cytochrome P450 HLp2|cytochrome P450, subfamily IIIA (niphedipine oxidase), polypeptide 5|cytochrome P450-PCN3|flavoprotein-linked monooxygenase|microsomal monooxygenase|xenobiotic monooxygenase 20121230 -9606 1578 CYP3AP1 - CYP3A5P1 - 7 7q22.1 cytochrome P450, family 3, subfamily A, polypeptide 5 pseudogene 1 pseudo - - - - 20121230 -9606 1579 CYP4A11 - CP4Y|CYP4A2|CYP4AII HGNC:2642|MIM:601310|Ensembl:ENSG00000187048|HPRD:03201|Vega:OTTHUMG00000008020 1 1p33 cytochrome P450, family 4, subfamily A, polypeptide 11 protein-coding CYP4A11 cytochrome P450, family 4, subfamily A, polypeptide 11 O 20-HETE synthase|20-hydroxyeicosatetraenoic acid synthase|CYPIVA11|P450HL-omega|alkane-1 monooxygenase|cytochrome P-450HK-omega|cytochrome P450 4A11|cytochrome P450, subfamily IVA, polypeptide 11|cytochrome P450HL-omega|fatty acid omega-hydroxylase|lauric acid omega-hydroxylase 20121230 -9606 1580 CYP4B1 RP4-732G19.1 CYPIVB1|P-450HP HGNC:2644|MIM:124075|Ensembl:ENSG00000142973|HPRD:00491|Vega:OTTHUMG00000007984 1 1p34-p12 cytochrome P450, family 4, subfamily B, polypeptide 1 protein-coding CYP4B1 cytochrome P450, family 4, subfamily B, polypeptide 1 O cytochrome P450 4B1|cytochrome P450, subfamily IVB, polypeptide 1|cytochrome P450-HP|microsomal monooxygenase 20121230 -9606 1581 CYP7A1 - CP7A|CYP7|CYPVII HGNC:2651|MIM:118455|Ensembl:ENSG00000167910|HPRD:00324|Vega:OTTHUMG00000164301 8 8q11-q12 cytochrome P450, family 7, subfamily A, polypeptide 1 protein-coding CYP7A1 cytochrome P450, family 7, subfamily A, polypeptide 1 O cholesterol 7-alpha-hydroxylase|cholesterol 7-alpha-monooxygenase|cytochrome P450 7A1|cytochrome P450, subfamily VIIA polypeptide 1 20121230 -9606 1582 CYP8B1 - CP8B|CYP12 HGNC:2653|MIM:602172|Ensembl:ENSG00000180432|HPRD:03705|Vega:OTTHUMG00000133047 3 3p22.1 cytochrome P450, family 8, subfamily B, polypeptide 1 protein-coding CYP8B1 cytochrome P450, family 8, subfamily B, polypeptide 1 O 7 alpha-hydroxy-4-cholesten-3-one 12-alpha-hydroxylase|7-alpha-hydroxy-4-cholesten-3-one 12-alpha-hydroxylase|7-alpha-hydroxycholest-4-en-3-one 12-alpha-hydroxylase|CYPVIIIB1|cytochrome P450 8B1|cytochrome P450, subfamily VIIIB (sterol 12-alpha-hydroxylase), polypeptide 1|sterol 12-alpha-hydroxylase 20121230 -9606 1583 CYP11A1 - CYP11A|CYPXIA1|P450SCC HGNC:2590|MIM:118485|Ensembl:ENSG00000140459|HPRD:00326|Vega:OTTHUMG00000150716 15 15q23-q24 cytochrome P450, family 11, subfamily A, polypeptide 1 protein-coding CYP11A1 cytochrome P450, family 11, subfamily A, polypeptide 1 O cholesterol 20-22 desmolase|cholesterol monooxygenase (side-chain cleaving)|cholesterol side-chain cleavage enzyme, mitochondrial|cytochrome P450 11A1|cytochrome P450(scc)|cytochrome P450, subfamily XIA (cholesterol side chain cleavage)|cytochrome P450C11A1|steroid 20-22-lyase 20121230 -9606 1584 CYP11B1 - CPN1|CYP11B|FHI|P450C11 HGNC:2591|MIM:610613|Ensembl:ENSG00000160882|HPRD:01943|Vega:OTTHUMG00000164637 8 8q21 cytochrome P450, family 11, subfamily B, polypeptide 1 protein-coding CYP11B1 cytochrome P450, family 11, subfamily B, polypeptide 1 O CYPXIB1|cytochrome P-450c11|cytochrome P450 11B1, mitochondrial|cytochrome P450, subfamily XIB (steroid 11-beta-hydroxylase), polypeptide 1|cytochrome P450C11|cytochrome p450 XIB1|steroid 11-beta-hydroxylase|steroid 11-beta-monooxygenase 20121230 -9606 1585 CYP11B2 - ALDOS|CPN2|CYP11B|CYP11BL|CYPXIB2|P-450C18|P450C18|P450aldo HGNC:2592|MIM:124080|Ensembl:ENSG00000179142|HPRD:00492|Vega:OTTHUMG00000160254 8 8q21-q22 cytochrome P450, family 11, subfamily B, polypeptide 2 protein-coding CYP11B2 cytochrome P450, family 11, subfamily B, polypeptide 2 O aldosterone synthase|aldosterone-synthesizing enzyme|cytochrome P-450Aldo|cytochrome P-450C18|cytochrome P450 11B2, mitochondrial|cytochrome P450, subfamily XIB (steroid 11-beta-hydroxylase), polypeptide 2|mitochondrial cytochrome P450, family 11, subfamily B, polypeptide 2|steroid 11-beta-monooxygenase|steroid 11-beta/18-hydroxylase|steroid 18-hydroxylase, aldosterone synthase, P450C18, P450aldo 20121230 -9606 1586 CYP17A1 RP11-753C18.1 CPT7|CYP17|P450C17|S17AH HGNC:2593|MIM:609300|Ensembl:ENSG00000148795|HPRD:01944|Vega:OTTHUMG00000018969 10 10q24.3 cytochrome P450, family 17, subfamily A, polypeptide 1 protein-coding CYP17A1 cytochrome P450, family 17, subfamily A, polypeptide 1 O CYPXVII|cytochrome P450 17A1|cytochrome P450, subfamily XVII (steroid 17-alpha-hydroxylase), adrenal hyperplasia|cytochrome P450-C17|cytochrome P450c17|cytochrome p450 XVIIA1|steroid 17-alpha-hydroxylase/17,20 lyase|steroid 17-alpha-monooxygenase 20121230 -9606 1587 ADAM3A - ADAM3|CYRN1|tMDCI HGNC:209 8 8p11.23 ADAM metallopeptidase domain 3A (pseudogene) pseudo ADAM3A ADAM metallopeptidase domain 3A (pseudogene) O - 20121230 -9606 1588 CYP19A1 - ARO|ARO1|CPV1|CYAR|CYP19|CYPXIX|P-450AROM HGNC:2594|MIM:107910|Ensembl:ENSG00000137869|HPRD:00488|Vega:OTTHUMG00000131747 15 15q21.1 cytochrome P450, family 19, subfamily A, polypeptide 1 protein-coding CYP19A1 cytochrome P450, family 19, subfamily A, polypeptide 1 O aromatase|cytochrome P-450AROM|cytochrome P450 19A1|cytochrome P450, subfamily XIX (aromatization of androgens)|estrogen synthase|estrogen synthetase|flavoprotein-linked monooxygenase|microsomal monooxygenase 20121230 -9606 1589 CYP21A2 DADB-112B14.10-001 CA21H|CAH1|CPS1|CYP21|CYP21B|P450c21B HGNC:2600|MIM:613815|Ensembl:ENSG00000231852|HPRD:01942|Vega:OTTHUMG00000031069 6 6p21.3 cytochrome P450, family 21, subfamily A, polypeptide 2 protein-coding CYP21A2 cytochrome P450, family 21, subfamily A, polypeptide 2 O 21-OHase|cytochrome P450 21|cytochrome P450 XXI|cytochrome P450, subfamily XXIA (steroid 21-hydroxylase, congenital adrenal hyperplasia), polypeptide 2|cytochrome P450-C21B|steroid 21-hydroxylase|steroid 21-monooxygenase 20121230 -9606 1590 CYP21A1P - CYP21A|CYP21P|P450c21A HGNC:2599 6 6p21.3 cytochrome P450, family 21, subfamily A, polypeptide 1 pseudogene pseudo CYP21A1P cytochrome P450, family 21, subfamily A, polypeptide 1 pseudogene O - 20121230 -9606 1591 CYP24A1 - CP24|CYP24|HCAI|P450-CC24 HGNC:2602|MIM:126065|Ensembl:ENSG00000019186|HPRD:00522|Vega:OTTHUMG00000032773 20 20q13 cytochrome P450, family 24, subfamily A, polypeptide 1 protein-coding CYP24A1 cytochrome P450, family 24, subfamily A, polypeptide 1 O 1,25-@dihydroxyvitamin D3 24-hydroxylase|1,25-dihydroxyvitamin D(3) 24-hydroxylase, mitochondrial|24-OHase|cytochrome P450 24A1|cytochrome P450, subfamily XXIV (vitamin D 24-hydroxylase)|cytochrome P450-CC24|exo-mitochondrial protein|vitamin D 24-hydroxylase|vitamin D(3) 24-hydroxylase 20121230 -9606 1592 CYP26A1 RP11-348J12.1 CP26|CYP26|P450RAI|P450RAI1 HGNC:2603|MIM:602239|Ensembl:ENSG00000095596|HPRD:03759|Vega:OTTHUMG00000018765 10 10q23-q24 cytochrome P450, family 26, subfamily A, polypeptide 1 protein-coding CYP26A1 cytochrome P450, family 26, subfamily A, polypeptide 1 O P450, retinoic acid-inactivating, 1|cytochrome P450 26A1|cytochrome P450 retinoic acid-inactivating 1|cytochrome P450, subfamily XXVIA, polypeptide 1|cytochrome P450RAI|hP450RAI|retinoic acid 4-hydroxylase|retinoic acid-metabolizing cytochrome 20121230 -9606 1593 CYP27A1 - CP27|CTX|CYP27 HGNC:2605|MIM:606530|Ensembl:ENSG00000135929|HPRD:05939|Vega:OTTHUMG00000048238 2 2q33-qter cytochrome P450, family 27, subfamily A, polypeptide 1 protein-coding CYP27A1 cytochrome P450, family 27, subfamily A, polypeptide 1 O 5-beta-cholestane-3-alpha, 7-alpha, 12-alpha-triol 26-hydroxylase|5-beta-cholestane-3-alpha, 7-alpha, 12-alpha-triol 27-hydroxylase|5-beta-cholestane-3-alpha,7-alpha,12-alpha-triol 27-hydroxylase|cholestanetriol 26-monooxygenase|cytochrome P-450C27/25|cytochrome P450 27|cytochrome P450, subfamily XXVIIA (steroid 27-hydroxylase, cerebrotendinous xanthomatosis), polypeptide 1|sterol 26-hydroxylase, mitochondrial|sterol 27-hydroxylase|vitamin D(3) 25-hydroxylase 20121230 -9606 1594 CYP27B1 - CP2B|CYP1|CYP1alpha|CYP27B|P450c1|PDDR|VDD1|VDDR|VDDRI|VDR HGNC:2606|MIM:609506|Ensembl:ENSG00000111012|HPRD:02031|Vega:OTTHUMG00000170457 12 12q13.1-q13.3 cytochrome P450, family 27, subfamily B, polypeptide 1 protein-coding CYP27B1 cytochrome P450, family 27, subfamily B, polypeptide 1 O 1alpha(OH)ase|25 hydroxyvitamin D3-1-alpha hydroxylase|25-OHD-1 alpha-hydroxylase|25-hydroxyvitamin D-1 alpha hydroxylase, mitochondrial|VD3 1A hydroxylase|calcidiol 1-monooxygenase|cytochrome P450 subfamily XXVIIB polypeptide 1|cytochrome P450C1 alpha|cytochrome P450VD1-alpha|cytochrome p450 27B1 20121230 -9606 1595 CYP51A1 - CP51|CYP51|CYPL1|LDM|P450-14DM|P450L1 HGNC:2649|MIM:601637|Ensembl:ENSG00000001630|HPRD:03381|Vega:OTTHUMG00000131131 7 7q21.2 cytochrome P450, family 51, subfamily A, polypeptide 1 protein-coding CYP51A1 cytochrome P450, family 51, subfamily A, polypeptide 1 O CYPLI|cytochrome P450 51A1|cytochrome P450, 51 (lanosterol 14-alpha-demethylase)|cytochrome P450-14DM|cytochrome P45014DM|cytochrome P450LI|lanosterol 14-alpha demethylase|lanosterol 14-alpha-demethylase|sterol 14-alpha demethylase 20121230 -9606 1596 ADAM3B - CYRN2 HGNC:210 16 16q12.1 ADAM metallopeptidase domain 3B (pseudogene) pseudo ADAM3B ADAM metallopeptidase domain 3B (pseudogene) O - 20121230 -9606 1600 DAB1 RP6-239D12.2 - HGNC:2661|MIM:603448|Ensembl:ENSG00000173406|HPRD:04582|Vega:OTTHUMG00000008391 1 1p32-p31 disabled homolog 1 (Drosophila) protein-coding DAB1 disabled homolog 1 (Drosophila) O disabled homolog 1 20121230 -9606 1601 DAB2 - DOC-2|DOC2 HGNC:2662|MIM:601236|Ensembl:ENSG00000153071|HPRD:03139|Vega:OTTHUMG00000162043 5 5p13 disabled homolog 2, mitogen-responsive phosphoprotein (Drosophila) protein-coding DAB2 disabled homolog 2, mitogen-responsive phosphoprotein (Drosophila) O differentially-expressed protein 2|disabled homolog 2 20121230 -9606 1602 DACH1 RP11-512J14.1 DACH HGNC:2663|MIM:603803|Ensembl:ENSG00000165659|HPRD:16031|Vega:OTTHUMG00000017063 13 13q22 dachshund homolog 1 (Drosophila) protein-coding DACH1 dachshund homolog 1 (Drosophila) O dachshund homolog 1 20121230 -9606 1603 DAD1 - OST2 HGNC:2664|MIM:600243|Ensembl:ENSG00000129562|HPRD:02589|Vega:OTTHUMG00000028685 14 14q11.2 defender against cell death 1 protein-coding DAD1 defender against cell death 1 O DAD-1|dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit DAD1|oligosaccharyl transferase subunit DAD1|oligosaccharyltransferase 2 homolog 20121230 -9606 1604 CD55 RP11-357P18.1 CR|CROM|DAF|TC HGNC:2665|MIM:125240|Ensembl:ENSG00000196352|HPRD:00500|Vega:OTTHUMG00000036255 1 1q32 CD55 molecule, decay accelerating factor for complement (Cromer blood group) protein-coding CD55 CD55 molecule, decay accelerating factor for complement (Cromer blood group) O CD55 antigen|complement decay-accelerating factor 20121230 -9606 1605 DAG1 - 156DAG|A3a|AGRNR|DAG|MDDGC7 HGNC:2666|MIM:128239|Ensembl:ENSG00000173402|HPRD:00546|Vega:OTTHUMG00000156869 3 3p21 dystroglycan 1 (dystrophin-associated glycoprotein 1) protein-coding DAG1 dystroglycan 1 (dystrophin-associated glycoprotein 1) O dystroglycan 20121230 -9606 1606 DGKA - DAGK|DAGK1|DGK-alpha HGNC:2849|MIM:125855|Ensembl:ENSG00000065357|HPRD:00517|Vega:OTTHUMG00000170109 12 12q13.3 diacylglycerol kinase, alpha 80kDa protein-coding DGKA diacylglycerol kinase, alpha 80kDa O 80 kDa diacylglycerol kinase|DAG kinase alpha|diacylglycerol kinase alpha|diglyceride kinase alpha 20121230 -9606 1607 DGKB - DAGK2|DGK|DGK-BETA HGNC:2850|MIM:604070|Ensembl:ENSG00000136267|HPRD:06819|Vega:OTTHUMG00000152477 7 7p21.2 diacylglycerol kinase, beta 90kDa protein-coding DGKB diacylglycerol kinase, beta 90kDa O 90 kDa diacylglycerol kinase|DAG kinase beta|diacylglycerol kinase beta|diglyceride kinase beta 20121230 -9606 1608 DGKG - DAGK3|DGK-GAMMA HGNC:2853|MIM:601854|Ensembl:ENSG00000058866|HPRD:03510|Vega:OTTHUMG00000156617 3 3q27.2-q27.3 diacylglycerol kinase, gamma 90kDa protein-coding DGKG diacylglycerol kinase, gamma 90kDa O DAG kinase gamma|diacylglycerol kinase gamma|diacylglyerol kinase gamma|diglyceride kinase gamma 20121230 -9606 1609 DGKQ - DAGK|DAGK4|DAGK7 HGNC:2856|MIM:601207|Ensembl:ENSG00000145214|HPRD:03127|Vega:OTTHUMG00000088629 4 4p16.3 diacylglycerol kinase, theta 110kDa protein-coding DGKQ diacylglycerol kinase, theta 110kDa O DAG kinase theta|DGK-theta|diacylglycerol kinase theta|diglyceride kinase theta 20121230 -9606 1610 DAO - DAAO|DAMOX|OXDA HGNC:2671|MIM:124050|Ensembl:ENSG00000110887|HPRD:15917|Vega:OTTHUMG00000169360 12 12q24 D-amino-acid oxidase protein-coding DAO D-amino-acid oxidase O D-amino acid oxidase 20121230 -9606 1611 DAP - - HGNC:2672|MIM:600954|Ensembl:ENSG00000112977|HPRD:02977|Vega:OTTHUMG00000131041 5 5p15.2 death-associated protein protein-coding DAP death-associated protein O DAP-1|death-associated protein 1 20121230 -9606 1612 DAPK1 - DAPK HGNC:2674|MIM:600831|Ensembl:ENSG00000196730|HPRD:02902|Vega:OTTHUMG00000020150 9 9q21.33 death-associated protein kinase 1 protein-coding DAPK1 death-associated protein kinase 1 O DAP kinase 1 20121230 -9606 1613 DAPK3 - ZIP|ZIPK HGNC:2676|MIM:603289|Ensembl:ENSG00000167657|HPRD:04478 19 19p13.3 death-associated protein kinase 3 protein-coding DAPK3 death-associated protein kinase 3 O DAP kinase 3|DAP-like kinase|MYPT1 kinase|ZIP kinase isoform|ZIP-kinase|dlk|zipper-interacting protein kinase 20121230 -9606 1615 DARS PIG40 - HGNC:2678|MIM:603084|Ensembl:ENSG00000115866|HPRD:04361|Vega:OTTHUMG00000131741 2 2q21.3 aspartyl-tRNA synthetase protein-coding DARS aspartyl-tRNA synthetase O aspRS|aspartate tRNA ligase 1, cytoplasmic|aspartate--tRNA ligase, cytoplasmic|aspartyl-tRNA synthetase, cytoplasmic|cell proliferation-inducing gene 40 protein|cell proliferation-inducing protein 40 20121230 -9606 1616 DAXX DADB-159G18.9 BING2|DAP6|EAP1 HGNC:2681|MIM:603186|Ensembl:ENSG00000204209|HPRD:04424|Vega:OTTHUMG00000031203 6 6p21.3 death-domain associated protein protein-coding DAXX death-domain associated protein O CENP-C binding protein|ETS1-associated protein 1|Fas-binding protein|death domain-associated protein 6|death-associated protein 6|fas death domain-associated protein 20121230 -9606 1617 DAZ1 - DAZ|SPGY HGNC:2682|MIM:400003|Ensembl:ENSG00000188120|HPRD:15958|Vega:OTTHUMG00000044053 Y Yq11.223 deleted in azoospermia 1 protein-coding DAZ1 deleted in azoospermia 1 O deleted in azoospermia protein 1 20121230 -9606 1618 DAZL - DAZH|DAZL1|DAZLA|SPGYLA HGNC:2685|MIM:601486|Ensembl:ENSG00000092345|HPRD:09029|Vega:OTTHUMG00000157050 3 3p24.3 deleted in azoospermia-like protein-coding DAZL deleted in azoospermia-like O DAZ homolog|DAZ-like autosomal|SPGY-like-autosomal|deleted in azoospermia-like 1|germline specific RNA binding protein|spermatogenesis gene on the Y-like autosomal 20121230 -9606 1620 DBC1 IB3089A BRINP1|DBCCR1|FAM5A HGNC:2687|MIM:602865|Ensembl:ENSG00000078725|HPRD:04181|Vega:OTTHUMG00000021020 9 9q32-q33 deleted in bladder cancer 1 protein-coding DBC1 deleted in bladder cancer 1 O bA574M5.1 (deleted in bladder cancer chromosome region candidate 1 (IB3089A))|deleted in bladder cancer chromosome region candidate 1|deleted in bladder cancer protein 1 20121230 -9606 1621 DBH RP11-317B10.1 DBM HGNC:2689|MIM:609312|Ensembl:ENSG00000123454|HPRD:01963|Vega:OTTHUMG00000020878 9 9q34 dopamine beta-hydroxylase (dopamine beta-monooxygenase) protein-coding DBH dopamine beta-hydroxylase (dopamine beta-monooxygenase) O dopamine beta-hydroxylase 20121230 -9606 1622 DBI - ACBD1|ACBP|CCK-RP|EP HGNC:2690|MIM:125950|Ensembl:ENSG00000155368|HPRD:08832|Vega:OTTHUMG00000131403 2 2q12-q21 diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein) protein-coding DBI diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein) O GABA receptor modulator|acyl coenzyme A binding protein|acyl-CoA-binding protein|acyl-Coenzyme A binding domain containing 1|cholecystokinin-releasing peptide, trypsin-sensitive|diazepam binding inhibitor (GABA receptor modulator, acyl-Coenzyme A binding protein)|diazepam-binding inhibitor|endozepine 20121230 -9606 1623 DBIP2 - DBIL1 HGNC:2691 5 5q14.1 diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein) pseudogene 2 pseudo DBIP2 diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein) pseudogene 2 O - 20121230 -9606 1624 DBIP1 - DBIL2 HGNC:2692 6 6q14.1 diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein) pseudogene 1 pseudo DBIP1 diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein) pseudogene 1 O - 20121230 -9606 1627 DBN1 - D0S117E HGNC:2695|MIM:126660|Ensembl:ENSG00000113758|HPRD:00545|Vega:OTTHUMG00000130856 5 5q35.3 drebrin 1 protein-coding DBN1 drebrin 1 O developmentally-regulated brain protein|drebrin|drebrin E|drebrin E2|drebrin-1 20121230 -9606 1628 DBP - DABP HGNC:2697|MIM:124097|Ensembl:ENSG00000105516|HPRD:00497 19 19q13.3 D site of albumin promoter (albumin D-box) binding protein protein-coding DBP D site of albumin promoter (albumin D-box) binding protein O D site-binding protein|albumin D box-binding protein|albumin D-element-binding protein|tax-responsive enhancer element-binding protein 302|taxREB302 20121230 -9606 1629 DBT RP11-305E17.3 BCATE2|BCKAD-E2|BCKADE2|E2|E2B HGNC:2698|MIM:248610|Ensembl:ENSG00000137992|HPRD:02010|Vega:OTTHUMG00000010921 1 1p31 dihydrolipoamide branched chain transacylase E2 protein-coding DBT dihydrolipoamide branched chain transacylase E2 O BCKAD E2 subunit|E2 component of branched chain alpha-keto acid dehydrogenase complex|branched chain acyltransferase, E2 component|branched-chain alpha-keto acid dehydrogenase complex component E2|dihydrolipoamide acetyltransferase component of branched-chain alpha-keto acid dehydrogenase complex|dihydrolipoyl transacylase|dihydrolipoyllysine-residue (2-methylpropanoyl)transferase|lipoamide acyltransferase component of branched-chain alpha-keto acid dehydrogenase complex, mitochondrial|lipoamide acyltransferase component of mitochondrial branched-chain alpha-keto acid dehydrogenase complex|mitochondrial branched chain alpha-keto acid dehydrogenase transacylase subunit (E2b) 20121230 -9606 1630 DCC - CRC18|CRCR1|IGDCC1 HGNC:2701|MIM:120470|Ensembl:ENSG00000187323|HPRD:00391|Vega:OTTHUMG00000132698 18 18q21.3 deleted in colorectal carcinoma protein-coding DCC deleted in colorectal carcinoma O colorectal cancer suppressor|colorectal tumor suppressor|deleted in colorectal cancer protein|immunoglobulin superfamily DCC subclass member 1|immunoglobulin superfamily, DCC subclass, member 1|netrin receptor DCC|tumor suppressor protein DCC 20121230 -9606 1632 ECI1 - DCI HGNC:2703|MIM:600305|Ensembl:ENSG00000167969|HPRD:02628|Vega:OTTHUMG00000128830 16 16p13.3 enoyl-CoA delta isomerase 1 protein-coding ECI1 enoyl-CoA delta isomerase 1 O 3,2 trans-enoyl-CoA isomerase|3,2 trans-enoyl-Coenzyme A isomerase|3,2-trans-enoyl-CoA isomerase, mitochondrial|D3,D2-enoyl-CoA isomerase|acetylene-allene isomerase|delta(3),Delta(2)-enoyl-CoA isomerase|delta3, delta2-enoyl-CoA isomerase|dodecenoyl-CoA delta isomerase (3,2 trans-enoyl-CoA isomerase)|dodecenoyl-CoA isomerase|dodecenoyl-Coenzyme A delta isomerase (3,2 trans-enoyl-Coenzyme A isomerase)|enoyl-CoA delta isomerase 1, mitochondrial 20121230 -9606 1633 DCK - - HGNC:2704|MIM:125450|Ensembl:ENSG00000156136|HPRD:00507|Vega:OTTHUMG00000129908 4 4q13.3-q21.1 deoxycytidine kinase protein-coding DCK deoxycytidine kinase O deoxynucleoside kinase 20121230 -9606 1634 DCN - CSCD|DSPG2|PG40|PGII|PGS2|SLRR1B HGNC:2705|MIM:125255|Ensembl:ENSG00000011465|HPRD:00501|Vega:OTTHUMG00000169998 12 12q21.33 decorin protein-coding DCN decorin O PG-S2|bone proteoglycan II|decorin proteoglycan|dermatan sulphate proteoglycans II|proteoglycan core protein|small leucine-rich protein 1B 20121230 -9606 1635 DCTD - - HGNC:2710|MIM:607638|Ensembl:ENSG00000129187|HPRD:09623|Vega:OTTHUMG00000160685 4 4q35.1 dCMP deaminase protein-coding DCTD dCMP deaminase O deoxycytidylate deaminase 20121230 -9606 1636 ACE - ACE1|CD143|DCP|DCP1|ICH|MVCD3 HGNC:2707|MIM:106180|Ensembl:ENSG00000159640|HPRD:00108|Vega:OTTHUMG00000154927 17 17q23.3 angiotensin I converting enzyme (peptidyl-dipeptidase A) 1 protein-coding ACE angiotensin I converting enzyme (peptidyl-dipeptidase A) 1 O CD143 antigen|angiotensin I converting enzyme peptidyl-dipeptidase A 1 transcript|angiotensin converting enzyme, somatic isoform|angiotensin-converting enzyme|carboxycathepsin|dipeptidyl carboxypeptidase 1|dipeptidyl carboxypeptidase I|kininase II|peptidase P|testicular ECA 20121230 -9606 1637 DCR - DSCR HGNC:2708|MIM:190685 21 21q22.3 Down syndrome chromosome region other DCR Down syndrome chromosome region O - 20120622 -9606 1638 DCT - TRP-2|TYRP2 HGNC:2709|MIM:191275|Ensembl:ENSG00000080166|HPRD:01864|Vega:OTTHUMG00000017206 13 13q32 dopachrome tautomerase protein-coding DCT dopachrome tautomerase O DT|L-dopachrome Delta-isomerase|L-dopachrome tautomerase|TRP2|dopachrome delta-isomerase|dopachrome tautomerase (dopachrome delta-isomerase, tyrosine-related protein 2)|tyrosinase-related protein 2|tyrosine-related protein 2 20121230 -9606 1639 DCTN1 - DAP-150|DP-150|P135 HGNC:2711|MIM:601143|Ensembl:ENSG00000204843|HPRD:07206|Vega:OTTHUMG00000129963 2 2p13 dynactin 1 protein-coding DCTN1 dynactin 1 O 150 kDa dynein-associated polypeptide|dynactin 1 (p150, glued homolog, Drosophila)|dynactin subunit 1 20121230 -9606 1641 DCX RP5-914P14.1 DBCN|DC|LISX|SCLH|XLIS HGNC:2714|MIM:300121|Ensembl:ENSG00000077279|HPRD:02127|Vega:OTTHUMG00000022204 X Xq22.3-q23 doublecortin protein-coding DCX doublecortin O doublecortex|doublin|lis-X|lissencephalin-X|neuronal migration protein doublecortin 20121230 -9606 1642 DDB1 - DDBA|UV-DDB1|XAP1|XPCE|XPE|XPE-BF HGNC:2717|MIM:600045|Ensembl:ENSG00000167986|HPRD:10952|Vega:OTTHUMG00000168209 11 11q12-q13 damage-specific DNA binding protein 1, 127kDa protein-coding DDB1 damage-specific DNA binding protein 1, 127kDa O DDB p127 subunit|DNA damage-binding protein 1|DNA damage-binding protein a|HBV X-associated protein 1|UV-DDB 1|UV-damaged DNA-binding factor|UV-damaged DNA-binding protein 1|XAP-1|XPE-binding factor|xeroderma pigmentosum group E-complementing protein 20121230 -9606 1643 DDB2 - DDBB|UV-DDB2 HGNC:2718|MIM:600811|Ensembl:ENSG00000134574|HPRD:02886 11 11p12-p11 damage-specific DNA binding protein 2, 48kDa protein-coding DDB2 damage-specific DNA binding protein 2, 48kDa O DDB p48 subunit|DNA damage-binding protein 2|UV-DDB 2|UV-damaged DNA-binding protein 2|damage-specific DNA-binding protein 2|xeroderma pigmentosum group E protein 20121230 -9606 1644 DDC - AADC HGNC:2719|MIM:107930|Ensembl:ENSG00000132437|HPRD:00145|Vega:OTTHUMG00000023353 7 7p12.2 dopa decarboxylase (aromatic L-amino acid decarboxylase) protein-coding DDC dopa decarboxylase (aromatic L-amino acid decarboxylase) O aromatic-L-amino-acid decarboxylase 20121230 -9606 1645 AKR1C1 RP11-69D4.1 2-ALPHA-HSD|20-ALPHA-HSD|C9|DD1|DD1/DD2|DDH|DDH1|H-37|HAKRC|HBAB|MBAB HGNC:384|MIM:600449|Ensembl:ENSG00000187134|HPRD:07194|Vega:OTTHUMG00000017580 10 10p15-p14 aldo-keto reductase family 1, member C1 protein-coding AKR1C1 aldo-keto reductase family 1, member C1 O 20 alpha-hydroxysteroid dehydrogenase|20-alpha-hydroxysteroid dehydrogenase|aldo-keto reductase C|aldo-keto reductase family 1 member C1|chlordecone reductase homolog HAKRC|dihydrodiol dehydrogenase 1|dihydrodiol dehydrogenase 1/2|dihydrodiol dehydrogenase 1; 20-alpha (3-alpha)-hydroxysteroid dehydrogenase|dihydrodiol dehydrogenase isoform DD1|hepatic dihydrodiol dehydrogenase|high-affinity hepatic bile acid-binding protein|indanol dehydrogenase|trans-1,2-dihydrobenzene-1,2-diol dehydrogenase|type II 3-alpha-hydroxysteroid dehydrogenase 20121230 -9606 1646 AKR1C2 - AKR1C-pseudo|BABP|DD|DD2|DDH2|HAKRD|HBAB|MCDR2|SRXY8 HGNC:385|MIM:600450|Ensembl:ENSG00000151632|HPRD:11857|Vega:OTTHUMG00000017584 10 10p15-p14 aldo-keto reductase family 1, member C2 protein-coding AKR1C2 aldo-keto reductase family 1, member C2 O 3-alpha-HSD3|DD-2|DD/BABP|aldo-keto reductase family 1 member C2|chlordecone reductase homolog HAKRD|dihydrodiol dehydrogenase 2; bile acid binding protein; 3-alpha hydroxysteroid dehydrogenase, type III|pseudo-chlordecone reductase|trans-1,2-dihydrobenzene-1,2-diol dehydrogenase|type II dihydrodiol dehydrogenase 20121230 -9606 1647 GADD45A RP5-975D15.1 DDIT1|GADD45 HGNC:4095|MIM:126335|Ensembl:ENSG00000116717|HPRD:00528|Vega:OTTHUMG00000009374 1 1p31.2 growth arrest and DNA-damage-inducible, alpha protein-coding GADD45A growth arrest and DNA-damage-inducible, alpha O DDIT-1|DNA damage-inducible transcript 1 protein|DNA damage-inducible transcript-1|DNA-damage-inducible transcript 1|growth arrest and DNA damage-inducible protein GADD45 alpha|growth arrest and DNA-damage-inducible 45 alpha 20121230 -9606 1648 GADD45AP1 - DDIT1L|GADD45AL HGNC:2725 12 12q growth arrest and DNA-damage-inducible, alpha pseudogene 1 pseudo GADD45AP1 growth arrest and DNA-damage-inducible, alpha pseudogene 1 O - 20121230 -9606 1649 DDIT3 - CEBPZ|CHOP|CHOP-10|CHOP10|GADD153 HGNC:2726|MIM:126337|Ensembl:ENSG00000175197|HPRD:00529|Vega:OTTHUMG00000170046 12 12q13.1-q13.2 DNA-damage-inducible transcript 3 protein-coding DDIT3 DNA-damage-inducible transcript 3 O C/EBP zeta|CCAAT/enhancer-binding protein homologous protein|DDIT-3|DNA damage-inducible transcript 3 protein|c/EBP-homologous protein 10|growth arrest and DNA damage-inducible protein GADD153 20121230 -9606 1650 DDOST OK/SW-cl.45 AGER1|CDG1R|OKSWcl45|OST|OST48|WBP1 HGNC:2728|MIM:602202|Ensembl:ENSG00000244038|HPRD:03728|Vega:OTTHUMG00000002844 1 1p36.1 dolichyl-diphosphooligosaccharide--protein glycosyltransferase protein-coding DDOST dolichyl-diphosphooligosaccharide--protein glycosyltransferase O advanced glycation endproduct receptor 1|dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit|dolichyl-diphosphooligosaccharide-protein glycotransferase|oligosaccharyl transferase 48 kDa subunit|oligosaccharyltransferase 48 kDa subunit 20121230 -9606 1652 DDT hCG_41098 DDCT HGNC:2732|MIM:602750|Ensembl:ENSG00000099977|HPRD:04126|Vega:OTTHUMG00000150798 22 22q11.23 D-dopachrome tautomerase protein-coding DDT D-dopachrome tautomerase O D-dopachrome decarboxylase|phenylpyruvate tautomerase II 20121230 -9606 1653 DDX1 - DBP-RB|UKVH5d HGNC:2734|MIM:601257|Ensembl:ENSG00000079785|HPRD:03158|Vega:OTTHUMG00000090593 2 2p24 DEAD (Asp-Glu-Ala-Asp) box helicase 1 protein-coding DDX1 DEAD (Asp-Glu-Ala-Asp) box helicase 1 O ATP-dependent RNA helicase DDX1|DEAD (Asp-Glu-Ala-Asp) box polypeptide 1|DEAD box polypeptide 1|DEAD box protein 1|DEAD box protein retinoblastoma|DEAD box-1|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 1 20121230 -9606 1654 DDX3X - DBX|DDX14|DDX3|HLP2 HGNC:2745|MIM:300160|Ensembl:ENSG00000215301|HPRD:02154|Vega:OTTHUMG00000021369 X Xp11.3-p11.23 DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, X-linked protein-coding DDX3X DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, X-linked O ATP-dependent RNA helicase DDX3X|CAP-Rf|DEAD box protein 3, X-chromosomal|DEAD box, X isoform|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 3|DEAD/H box-3|helicase like protein 2|helicase-like protein 2 20121230 -9606 1655 DDX5 - G17P1|HLR1|HUMP68|p68 HGNC:2746|MIM:180630|Ensembl:ENSG00000108654|HPRD:01615|Vega:OTTHUMG00000178936 17 17q21 DEAD (Asp-Glu-Ala-Asp) box helicase 5 protein-coding DDX5 DEAD (Asp-Glu-Ala-Asp) box helicase 5 O ATP-dependent RNA helicase DDX5|DEAD (Asp-Glu-Ala-Asp) box polypeptide 5|DEAD box protein 5|DEAD box-5|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 5 (RNA helicase, 68kD)|RNA helicase p68|probable ATP-dependent RNA helicase DDX5 20121230 -9606 1656 DDX6 - HLR2|P54|RCK HGNC:2747|MIM:600326|Ensembl:ENSG00000110367|HPRD:02638|Vega:OTTHUMG00000166411 11 11q23.3 DEAD (Asp-Glu-Ala-Asp) box helicase 6 protein-coding DDX6 DEAD (Asp-Glu-Ala-Asp) box helicase 6 O ATP-dependent RNA helicase p54|DEAD (Asp-Glu-Ala-Asp) box polypeptide 6|DEAD box protein 6|DEAD box-6|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 6 (RNA helicase, 54kD)|oncogene RCK|probable ATP-dependent RNA helicase DDX6 20121230 -9606 1657 DMXL1 - - HGNC:2937|MIM:605671|Ensembl:ENSG00000172869|HPRD:09294|Vega:OTTHUMG00000128898 5 5q22 Dmx-like 1 protein-coding DMXL1 Dmx-like 1 O X-like 1 protein|dmX-like protein 1 20121230 -9606 1659 DHX8 - DDX8|HRH1|PRP22|PRPF22 HGNC:2749|MIM:600396|Ensembl:ENSG00000067596|HPRD:02672|Vega:OTTHUMG00000180883 17 17q21.31 DEAH (Asp-Glu-Ala-His) box polypeptide 8 protein-coding DHX8 DEAH (Asp-Glu-Ala-His) box polypeptide 8 O ATP-dependent RNA helicase DHX8|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 8 (RNA helicase)|DEAH box protein 8|DEAH-box protein 8|RNA helicase HRH1 20121230 -9606 1660 DHX9 - DDX9|LKP|NDH2|NDHII|RHA HGNC:2750|MIM:603115|Ensembl:ENSG00000135829|HPRD:04386|Vega:OTTHUMG00000035337 1 1q25 DEAH (Asp-Glu-Ala-His) box polypeptide 9 protein-coding DHX9 DEAH (Asp-Glu-Ala-His) box polypeptide 9 O ATP-dependent RNA helicase A|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 9|DEAH box protein 9|leukophysin|nuclear DNA helicase II 20121230 -9606 1661 DHX9P1 - DDX9P|DHX9P HGNC:2751 13 13q21 DEAH (Asp-Glu-Ala-His) box polypeptide 9 pseudogene 1 pseudo DHX9P1 DEAH (Asp-Glu-Ala-His) box polypeptide 9 pseudogene 1 O - 20121230 -9606 1662 DDX10 - HRH-J8 HGNC:2735|MIM:601235|Ensembl:ENSG00000178105|HPRD:03138|Vega:OTTHUMG00000166540 11 11q22-q23 DEAD (Asp-Glu-Ala-Asp) box polypeptide 10 protein-coding DDX10 DEAD (Asp-Glu-Ala-Asp) box polypeptide 10 O DDX10-NUP98 fusion protein type 2|DEAD box protein 10|DEAD box-10|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 10 (RNA helicase)|probable ATP-dependent RNA helicase DDX10 20121230 -9606 1663 DDX11 - CHL1|CHLR1|KRG2|WABS HGNC:2736|MIM:601150|Ensembl:ENSG00000013573|HPRD:03095|Vega:OTTHUMG00000168435 12 12p11 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 protein-coding DDX11 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 O CHL1-like helicase homolog|CHL1-related helicase gene-1|CHL1-related protein 1|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 (CHL1-like helicase homolog, S. cerevisiae)|DEAD/H box protein 11|KRG-2|hCHLR1|keratinocyte growth factor-regulated gene 2 protein|probable ATP-dependent RNA helicase DDX11 20121230 -9606 1665 DHX15 - DBP1|DDX15|HRH2|PRP43|PRPF43|PrPp43p HGNC:2738|MIM:603403|Ensembl:ENSG00000109606|HPRD:04553|Vega:OTTHUMG00000160304 4 4p15.3 DEAH (Asp-Glu-Ala-His) box polypeptide 15 protein-coding DHX15 DEAH (Asp-Glu-Ala-His) box polypeptide 15 O ATP-dependent RNA helicase #46|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 15|DEAD/H box-15|DEAH box protein 15|RNA helicase 2|putative pre-mRNA-splicing factor ATP-dependent RNA helicase DHX15 20121230 -9606 1666 DECR1 - DECR|NADPH|SDR18C1 HGNC:2753|MIM:222745|Ensembl:ENSG00000104325|HPRD:01959|Vega:OTTHUMG00000163829 8 8q21.3 2,4-dienoyl CoA reductase 1, mitochondrial protein-coding DECR1 2,4-dienoyl CoA reductase 1, mitochondrial O 2,4-dienoyl-CoA reductase, mitochondrial|4-enoyl-CoA reductase|short chain dehydrogenase/reductase family 18C, member 1 20121230 -9606 1667 DEFA1 - DEF1|DEFA2|HNP-1|HP-1|HP1|MRS HGNC:2761|MIM:125220|Ensembl:ENSG00000206047|HPRD:00499|Vega:OTTHUMG00000154594 8 8p23.1 defensin, alpha 1 protein-coding DEFA1 defensin, alpha 1 O defensin, alpha 1, myeloid-related sequence|defensin, alpha 2|myeloid-related sequence|neutrophil defensin 1 20121230 -9606 1668 DEFA3 - DEF3|HNP-3|HNP3|HP-3|HP3 HGNC:2762|MIM:604522|Ensembl:ENSG00000239839|HPRD:05159|Vega:OTTHUMG00000090381 8 8p23.1 defensin, alpha 3, neutrophil-specific protein-coding DEFA3 defensin, alpha 3, neutrophil-specific O defensin 3, neutrophil-specific|neutrophil defensin 3|neutrophil peptide 3 20121230 -9606 1669 DEFA4 - DEF4|HNP-4|HP-4|HP4 HGNC:2763|MIM:601157|Ensembl:ENSG00000164821|HPRD:03099|Vega:OTTHUMG00000090382 8 8p23 defensin, alpha 4, corticostatin protein-coding DEFA4 defensin, alpha 4, corticostatin O corticostatin|defensin, alpha 4, preproprotein|neutrophil defensin 4 20121230 -9606 1670 DEFA5 - DEF5|HD-5 HGNC:2764|MIM:600472|Ensembl:ENSG00000164816|HPRD:02720|Vega:OTTHUMG00000090383 8 8p23.1 defensin, alpha 5, Paneth cell-specific protein-coding DEFA5 defensin, alpha 5, Paneth cell-specific O HD5(20-94)|defensin 5|defensin, alpha 5, preproprotein|defensin-5 20121230 -9606 1671 DEFA6 - DEF6|HD-6 HGNC:2765|MIM:600471|Ensembl:ENSG00000164822|HPRD:02719|Vega:OTTHUMG00000149984 8 8p23.1 defensin, alpha 6, Paneth cell-specific protein-coding DEFA6 defensin, alpha 6, Paneth cell-specific O defensin 6|defensin-6 20121230 -9606 1672 DEFB1 - BD1|DEFB-1|DEFB101|HBD1 HGNC:2766|MIM:602056|Ensembl:ENSG00000164825|HPRD:03634|Vega:OTTHUMG00000090367 8 8p23.1 defensin, beta 1 protein-coding DEFB1 defensin, beta 1 O BD-1|beta-defensin 1|beta-defensin-1 20121230 -9606 1673 DEFB4A - BD-2|DEFB-2|DEFB102|DEFB2|DEFB4|HBD-2|SAP1 HGNC:2767|MIM:602215|Ensembl:ENSG00000171711|HPRD:03739|Vega:OTTHUMG00000129314 8 8p23.1 defensin, beta 4A protein-coding DEFB4A defensin, beta 4A O beta-defensin 4A|defensin, beta 2|defensin, beta 4|skin-antimicrobial peptide 1 20121230 -9606 1674 DES - ARVC7|ARVD7|CMD1I|CSM1|CSM2|MFM1|SCPNK HGNC:2770|MIM:125660|Ensembl:ENSG00000175084|HPRD:00514|Vega:OTTHUMG00000058924 2 2q35 desmin protein-coding DES desmin O intermediate filament protein 20121230 -9606 1675 CFD - ADIPSIN|ADN|DF|PFD HGNC:2771|MIM:134350|Ensembl:ENSG00000197766|HPRD:00600|Vega:OTTHUMG00000181840 19 19p13.3 complement factor D (adipsin) protein-coding CFD complement factor D (adipsin) O C3 convertase activator|D component of complement (adipsin)|complement factor D|complement factor D preproprotein|properdin factor D 20121230 -9606 1676 DFFA H13 DFF-45|DFF1|ICAD HGNC:2772|MIM:601882|Ensembl:ENSG00000160049|HPRD:03531|Vega:OTTHUMG00000001909 1 1p36.3-p36.2 DNA fragmentation factor, 45kDa, alpha polypeptide protein-coding DFFA DNA fragmentation factor, 45kDa, alpha polypeptide O DFF45|DNA fragmentation factor 45 kDa subunit|DNA fragmentation factor subunit alpha|inhibitor of CAD 20121230 -9606 1677 DFFB RP13-531C17.1 CAD|CPAN|DFF-40|DFF2|DFF40 HGNC:2773|MIM:601883|Ensembl:ENSG00000169598|HPRD:03532|Vega:OTTHUMG00000003525 1 1p36.3 DNA fragmentation factor, 40kDa, beta polypeptide (caspase-activated DNase) protein-coding DFFB DNA fragmentation factor, 40kDa, beta polypeptide (caspase-activated DNase) O DNA fragmentation factor 40 kDa subunit|DNA fragmentation factor subunit beta|caspase-activated DNase|caspase-activated deoxyribonuclease|caspase-activated nuclease 20121230 -9606 1678 TIMM8A - DDP|DDP1|DFN1|MTS|TIM8 HGNC:11817|MIM:300356|Ensembl:ENSG00000126953|HPRD:02287|Vega:OTTHUMG00000022028 X Xq22.1 translocase of inner mitochondrial membrane 8 homolog A (yeast) protein-coding TIMM8A translocase of inner mitochondrial membrane 8 homolog A (yeast) O X-linked deafness dystonia protein|deafness dystonia protein 1|deafness/dystonia peptide|mitochondrial import inner membrane translocase subunit Tim8 A 20121230 -9606 1680 DFN4 - - HGNC:2777|MIM:300030 X Xp21.2 deafness, X-linked 4, congenital sensorineural unknown DFN4 deafness, X-linked 4, congenital sensorineural O - 20120622 -9606 1681 DFN5 - - HGNC:2778 - - deafness, X-linked 5 unknown DFN5 deafness, X-linked 5 O - 20110215 -9606 1682 DFN6 - - HGNC:2779|MIM:300066 X Xp22 deafness, X-linked 6, sensorineural unknown DFN6 deafness, X-linked 6, sensorineural O - 20120908 -9606 1684 DFN8 - - HGNC:2781 - - deafness, X-linked 8 unknown DFN8 deafness, X-linked 8 O - 20110215 -9606 1687 DFNA5 - ICERE-1 HGNC:2810|MIM:608798|Ensembl:ENSG00000105928|HPRD:02996|Vega:OTTHUMG00000023237 7 7p15 deafness, autosomal dominant 5 protein-coding DFNA5 deafness, autosomal dominant 5 O inversely correlated with estrogen receptor expression 1|non-syndromic hearing impairment protein 5|nonsyndromic hearing impairment protein 20121230 -9606 1689 DFNA7 - - HGNC:2812|MIM:601412 1 1q21-q23 deafness, autosomal dominant 7 unknown DFNA7 deafness, autosomal dominant 7 O - 20120622 -9606 1690 COCH UNQ257/PRO294 COCH-5B2|COCH5B2|DFNA9 HGNC:2180|MIM:603196|Ensembl:ENSG00000100473|HPRD:04431|Vega:OTTHUMG00000029432 14 14q11.2-q13 coagulation factor C homolog, cochlin (Limulus polyphemus) protein-coding COCH coagulation factor C homolog, cochlin (Limulus polyphemus) O cochlin 20121230 -9606 1694 DFNA16 - - HGNC:2789|MIM:603964 2 2q24 deafness, autosomal dominant 16 unknown DFNA16 deafness, autosomal dominant 16 O - 20120622 -9606 1696 DFNA19 - - HGNC:2791 10 - deafness, autosomal dominant 19 unknown DFNA19 deafness, autosomal dominant 19 O - 20110215 -9606 1697 DFNB5 - - HGNC:2837|MIM:600792 14 14q12 deafness, autosomal recessive 5 unknown DFNB5 deafness, autosomal recessive 5 O - 20120622 -9606 1705 DFNB13 - - HGNC:2819|MIM:603098 7 7q34-q36 deafness, autosomal recessive 13 unknown DFNB13 deafness, autosomal recessive 13 O - 20120622 -9606 1706 DFNB14 - - HGNC:2820|MIM:603678 7 7q31 deafness, autosomal recessive 14 unknown DFNB14 deafness, autosomal recessive 14 O - 20120622 -9606 1709 DFNB17 - - HGNC:2823|MIM:603010 7 7q31 deafness, autosomal recessive 17 unknown DFNB17 deafness, autosomal recessive 17 O - 20120622 -9606 1712 DFNB19 - - HGNC:2825 18 18p11 deafness, autosomal recessive 19 unknown DFNB19 deafness, autosomal recessive 19 O - 20110215 -9606 1713 DFNB20 - - HGNC:2827|MIM:604060 11 11q25-qter deafness, autosomal recessive 20 unknown DFNB20 deafness, autosomal recessive 20 O - 20120622 -9606 1714 DGCR - CATCH22|DGS|VCF HGNC:2844|MIM:188400 22 22q11.21-q11.23 DiGeorge syndrome chromosome region other DGCR DiGeorge syndrome chromosome region O - 20121220 -9606 1716 DGUOK - MTDPS3|dGK HGNC:2858|MIM:601465|Ensembl:ENSG00000114956|HPRD:03273|Vega:OTTHUMG00000129819 2 2p13 deoxyguanosine kinase protein-coding DGUOK deoxyguanosine kinase O deoxyguanosine kinase, mitochondrial 20121230 -9606 1717 DHCR7 - SLOS HGNC:2860|MIM:602858|Ensembl:ENSG00000172893|HPRD:04174|Vega:OTTHUMG00000167346 11 11q13.4 7-dehydrocholesterol reductase protein-coding DHCR7 7-dehydrocholesterol reductase O 7-DHC reductase|delta-7-dehydrocholesterol reductase|putative sterol reductase SR-2|sterol delta-7-reductase 20121230 -9606 1718 DHCR24 - DCE|Nbla03646|SELADIN1|seladin-1 HGNC:2859|MIM:606418|Ensembl:ENSG00000116133|HPRD:05916|Vega:OTTHUMG00000009989 1 1p32.3 24-dehydrocholesterol reductase protein-coding DHCR24 24-dehydrocholesterol reductase O 3 beta-hydroxysterol delta 24-reductase|3-beta-hydroxysterol delta-24-reductase|delta(24)-sterol reductase|desmosterol-to-cholesterol enzyme|diminuto/dwarf1 homolog|seladin 1|selective AD indicator 1 20121230 -9606 1719 DHFR - DHFRP1|DYR HGNC:2861|MIM:126060|Ensembl:ENSG00000228716|HPRD:00519|Vega:OTTHUMG00000162529 5 5q11.2-q13.2 dihydrofolate reductase protein-coding DHFR dihydrofolate reductase O - 20121230 -9606 1720 LOC1720 - - - 2 2p12 dihydrofolate reductase pseudogene pseudo - - - - 20121230 -9606 1723 DHODH - DHOdehase|POADS|URA1 HGNC:2867|MIM:126064|Ensembl:ENSG00000102967|HPRD:00521|Vega:OTTHUMG00000178093 16 16q22 dihydroorotate dehydrogenase (quinone) protein-coding DHODH dihydroorotate dehydrogenase (quinone) O dihydroorotate dehydrogenase (quinone), mitochondrial|dihydroorotate oxidase|human complement of yeast URA1 20121230 -9606 1725 DHPS - DHS|DS|MIG13 HGNC:2869|MIM:600944|Ensembl:ENSG00000095059|HPRD:02969 19 19p13.2 deoxyhypusine synthase protein-coding DHPS deoxyhypusine synthase O migration-inducing gene 13 20121230 -9606 1727 CYB5R3 - B5R|DIA1 HGNC:2873|MIM:613213|Ensembl:ENSG00000100243|HPRD:08942|Vega:OTTHUMG00000150745 22 22q13.2 cytochrome b5 reductase 3 protein-coding CYB5R3 cytochrome b5 reductase 3 O NADH-cytochrome b5 reductase 3|NADH-cytochrome b5 reductase 3 membrane-bound form|NADH-cytochrome b5 reductase 3 soluble form|diaphorase-1 20121230 -9606 1728 NQO1 - DHQU|DIA4|DTD|NMOR1|NMORI|QR1 HGNC:2874|MIM:125860|Ensembl:ENSG00000181019|HPRD:00518|Vega:OTTHUMG00000137575 16 16q22.1 NAD(P)H dehydrogenase, quinone 1 protein-coding NQO1 NAD(P)H dehydrogenase, quinone 1 O DT-diaphorase|NAD(P)H dehydrogenase [quinone] 1|NAD(P)H:Quinone acceptor oxidoreductase type 1|NAD(P)H:menadione oxidoreductase 1|NAD(P)H:quinone oxidoreductase 1|NAD(P)H:quinone oxireductase|azoreductase|diaphorase (NADH/NADPH) (cytochrome b-5 reductase)|diaphorase-4|dioxin-inducible 1|menadione reductase|phylloquinone reductase|quinone reductase 1 20121230 -9606 1729 DIAPH1 - DFNA1|DIA1|DRF1|LFHL1|hDIA1 HGNC:2876|MIM:602121|Ensembl:ENSG00000131504|HPRD:03670|Vega:OTTHUMG00000149893 5 5q31 diaphanous homolog 1 (Drosophila) protein-coding DIAPH1 diaphanous homolog 1 (Drosophila) O diaphanous-related formin 1|diaphanous-related formin-1|protein diaphanous homolog 1 20121230 -9606 1730 DIAPH2 RP11-212B22.1 DIA|DIA2|DRF2|POF|POF2 HGNC:2877|MIM:300108|Ensembl:ENSG00000147202|HPRD:02117|Vega:OTTHUMG00000022689 X Xq21.33 diaphanous homolog 2 (Drosophila) protein-coding DIAPH2 diaphanous homolog 2 (Drosophila) O diaphanous-related formin-2|diaphorase-2|protein diaphanous homolog 2 20121230 -9606 1731 SEPT1 - DIFF6|LARP|PNUTL3|SEP1 HGNC:2879|MIM:612897|Ensembl:ENSG00000180096|HPRD:15324|Vega:OTTHUMG00000176984 16 16p11.1 septin 1 protein-coding SEPT1 septin 1 O differentiation 6 (deoxyguanosine triphosphate triphosphohydrolase)|peanut-like protein 3|septin-1|serologically defined breast cancer antigen NY-BR-24 20121230 -9606 1732 DIH1 - HCD HGNC:2881|MIM:142340 15 15q26.1-q26.2 diaphragmatic hernia 1 unknown DIH1 diaphragmatic hernia 1 O - 20120622 -9606 1733 DIO1 - 5DI|TXDI1 HGNC:2883|MIM:147892|Ensembl:ENSG00000211452|HPRD:01002|Vega:OTTHUMG00000008435 1 1p33-p32 deiodinase, iodothyronine, type I protein-coding DIO1 deiodinase, iodothyronine, type I O DIOI|thyroxine deiodinase type I (selenoprotein)|type 1 DI|type I iodothyronine deiodinase|type-I 5'-deiodinase 20121230 -9606 1734 DIO2 - 5DII|D2|DIOII|SelY|TXDI2 HGNC:2884|MIM:601413|Ensembl:ENSG00000211448|HPRD:09027|Vega:OTTHUMG00000171443 14 14q24.2-q24.3 deiodinase, iodothyronine, type II protein-coding DIO2 deiodinase, iodothyronine, type II O thyroxine deiodinase, type II|type 2 DI|type 2 iodothyronine deiodinase|type II iodothyronine deiodinase|type-II 5'-deiodinase|type-II 5'deiodinase 20121230 -9606 1735 DIO3 - 5DIII|D3|DIOIII|TXDI3 HGNC:2885|MIM:601038|Ensembl:ENSG00000197406|Ensembl:ENSG00000258865|HPRD:11867|Vega:OTTHUMG00000160681 14 14q32 deiodinase, iodothyronine, type III protein-coding DIO3 deiodinase, iodothyronine, type III O iodothyronine deiodinase, placental type|thyroxine deiodinase type III (selenoprotein)|type 3 DI|type 3 iodothyronine selenodeiodinase|type III iodothyronine deiodinase|type-III 5' deiodinase|type-III 5'-deiodinase 20121230 -9606 1736 DKC1 - CBF5|DKC|DKCX|NAP57|NOLA4|XAP101 HGNC:2890|MIM:300126|Ensembl:ENSG00000130826|HPRD:02129|Vega:OTTHUMG00000024242 X Xq28 dyskeratosis congenita 1, dyskerin protein-coding DKC1 dyskeratosis congenita 1, dyskerin O CBF5 homolog|H/ACA ribonucleoprotein complex subunit 4|cbf5p homolog|nopp140-associated protein of 57 kDa|nucleolar protein NAP57|nucleolar protein family A member 4|snoRNP protein DKC1 20121230 -9606 1737 DLAT - DLTA|PDC-E2|PDCE2 HGNC:2896|MIM:608770|Ensembl:ENSG00000150768|HPRD:10578|Vega:OTTHUMG00000133751 11 11q23.1 dihydrolipoamide S-acetyltransferase protein-coding DLAT dihydrolipoamide S-acetyltransferase O 70 kDa mitochondrial autoantigen of primary biliary cirrhosis|E2 component of pyruvate dehydrogenase complex|M2 antigen complex 70 kDa subunit|PBC|dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex|dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex mitochondrial|dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex, mitochondrial|pyruvate dehydrogenase complex component E2 20121230 -9606 1738 DLD tcag7.39 DLDH|E3|GCSL|LAD|PHE3 HGNC:2898|MIM:238331|Ensembl:ENSG00000091140|HPRD:02006|Vega:OTTHUMG00000154813 7 7q31-q32 dihydrolipoamide dehydrogenase protein-coding DLD dihydrolipoamide dehydrogenase O E3 component of pyruvate dehydrogenase complex, 2-oxo-glutarate complex, branched chain keto acid dehydrogenase complex|diaphorase|dihydrolipoyl dehydrogenase, mitochondrial|glycine cleavage system L protein|glycine cleavage system protein L|lipoamide dehydrogenase|lipoamide reductase|lipoyl dehydrogenase 20121230 -9606 1739 DLG1 - DLGH1|SAP-97|SAP97|dJ1061C18.1.1|hdlg HGNC:2900|MIM:601014|Ensembl:ENSG00000075711|HPRD:03007|Vega:OTTHUMG00000047972 3 3q29 discs, large homolog 1 (Drosophila) protein-coding DLG1 discs, large homolog 1 (Drosophila) O disks large homolog 1|presynaptic protein SAP97|synapse-associated protein 97 20121230 -9606 1740 DLG2 - PPP1R58|PSD-93|PSD93|chapsyn-110 HGNC:2901|MIM:603583|Ensembl:ENSG00000150672|HPRD:04663|HPRD:08220|Vega:OTTHUMG00000134309 11 11q14.1 discs, large homolog 2 (Drosophila) protein-coding DLG2 discs, large homolog 2 (Drosophila) O channel-associated protein of synapse-110|channel-associated protein of synapses, 110kDa|discs, large homolog 2, chapsyn-110|disks large homolog 2|postsynaptic density protein PSD-93|protein phosphatase 1, regulatory subunit 58 20121230 -9606 1741 DLG3 RP11-291O7.3 MRX|MRX90|NEDLG|SAP102|XLMR HGNC:2902|MIM:300189|Ensembl:ENSG00000082458|HPRD:02177|Vega:OTTHUMG00000021778 X Xq13.1 discs, large homolog 3 (Drosophila) protein-coding DLG3 discs, large homolog 3 (Drosophila) O disks large homolog 3|neuroendocrine-DLG|synapse-associated protein 102 20121230 -9606 1742 DLG4 - PSD95|SAP-90|SAP90 HGNC:2903|MIM:602887|Ensembl:ENSG00000132535|HPRD:04199|Vega:OTTHUMG00000134327 17 17p13.1 discs, large homolog 4 (Drosophila) protein-coding DLG4 discs, large homolog 4 (Drosophila) O Tax interaction protein 15|discs large homolog 4|disks large homolog 4|post-synaptic density protein 95|postsynaptic density protein 95|synapse-associated protein 90 20121230 -9606 1743 DLST - DLTS HGNC:2911|MIM:126063|Ensembl:ENSG00000119689|HPRD:00520|Vega:OTTHUMG00000171483 14 14q24.3 dihydrolipoamide S-succinyltransferase (E2 component of 2-oxo-glutarate complex) protein-coding DLST dihydrolipoamide S-succinyltransferase (E2 component of 2-oxo-glutarate complex) O E2K|OGDC-E2|dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 20121230 -9606 1744 DLSTP1 - DLSTP HGNC:2912 1 1p31 dihydrolipoamide S-succinyltransferase pseudogene 1 pseudo DLSTP1 dihydrolipoamide S-succinyltransferase pseudogene 1 O - 20121230 -9606 1745 DLX1 - - HGNC:2914|MIM:600029|Ensembl:ENSG00000144355|HPRD:08961|Vega:OTTHUMG00000073951 2 2q32 distal-less homeobox 1 protein-coding DLX1 distal-less homeobox 1 O distal-less homeo box 1|homeobox protein DLX-1 20121230 -9606 1746 DLX2 - TES-1|TES1 HGNC:2915|MIM:126255|Ensembl:ENSG00000115844|HPRD:00527|Vega:OTTHUMG00000132276 2 2q32 distal-less homeobox 2 protein-coding DLX2 distal-less homeobox 2 O distal-less homeo box 2|homeobox protein DLX-2 20121230 -9606 1747 DLX3 - AI4|TDO HGNC:2916|MIM:600525|Ensembl:ENSG00000064195|HPRD:02752|Vega:OTTHUMG00000161892 17 17q21 distal-less homeobox 3 protein-coding DLX3 distal-less homeobox 3 O homeobox protein DLX-3 20121230 -9606 1748 DLX4 - BP1|DLX7|DLX8|DLX9 HGNC:2917|MIM:601911|Ensembl:ENSG00000108813|HPRD:03553|Vega:OTTHUMG00000161839 17 17q21.33 distal-less homeobox 4 protein-coding DLX4 distal-less homeobox 4 O beta protein 1|distal-less homeo box 7|distal-less homeo box 9|homeobox protein DLX-4|homeobox protein DLX-7|homeobox protein DLX-8 20121230 -9606 1749 DLX5 - SHFM1D HGNC:2918|MIM:600028|Ensembl:ENSG00000105880|HPRD:02492|Vega:OTTHUMG00000154200 7 7q22 distal-less homeobox 5 protein-coding DLX5 distal-less homeobox 5 O distal-less homeo box 5|homeobox protein DLX-5|split hand/foot malformation type 1 with sensorineural hearing loss 20121230 -9606 1750 DLX6 - - HGNC:2919|MIM:600030|Ensembl:ENSG00000006377|HPRD:02493|Vega:OTTHUMG00000154201 7 7q22 distal-less homeobox 6 protein-coding DLX6 distal-less homeobox 6 O distal-less homeo box 6|homeobox protein DLX-6 20121230 -9606 1755 DMBT1 RP11-481L19.1 GP340|muclin HGNC:2926|MIM:601969|Ensembl:ENSG00000187908|HPRD:03575|Vega:OTTHUMG00000019185 10 10q26.13 deleted in malignant brain tumors 1 protein-coding DMBT1 deleted in malignant brain tumors 1 O SAG|deleted in malignant brain tumors 1 protein|glycoprotein 340|gp-340|hensin|salivary agglutinin|surfactant pulmonary-associated D-binding protein 20121230 -9606 1756 DMD GS1-19O24.1 BMD|CMD3B|DXS142|DXS164|DXS206|DXS230|DXS239|DXS268|DXS269|DXS270|DXS272 HGNC:2928|MIM:300377|Ensembl:ENSG00000198947|HPRD:02303|Vega:OTTHUMG00000021336 X Xp21.2 dystrophin protein-coding DMD dystrophin O - 20121230 -9606 1757 SARDH RP11-317B10.2 BPR-2|DMGDHL1|SAR|SARD|SDH HGNC:10536|MIM:604455|Ensembl:ENSG00000123453|HPRD:06831|Vega:OTTHUMG00000020879 9 9q33-q34 sarcosine dehydrogenase protein-coding SARDH sarcosine dehydrogenase O dimethylglycine dehydrogenase-like 1|sarcosine dehydrogenase, mitochondrial 20121230 -9606 1758 DMP1 - ARHP|ARHR|DMP-1 HGNC:2932|MIM:600980|Ensembl:ENSG00000152592|HPRD:02989|Vega:OTTHUMG00000130598 4 4q21 dentin matrix acidic phosphoprotein 1 protein-coding DMP1 dentin matrix acidic phosphoprotein 1 O dentin matrix protein 1 20121230 -9606 1759 DNM1 - DNM HGNC:2972|MIM:602377|Ensembl:ENSG00000106976|HPRD:03851|Vega:OTTHUMG00000020733 9 9q34 dynamin 1 protein-coding DNM1 dynamin 1 O dynamin-1 20121230 -9606 1760 DMPK - DM|DM1|DM1PK|DMK|MDPK|MT-PK HGNC:2933|MIM:605377|Ensembl:ENSG00000104936|HPRD:05645|Vega:OTTHUMG00000182334 19 19q13.3 dystrophia myotonica-protein kinase protein-coding DMPK dystrophia myotonica-protein kinase O DM protein kinase|DM-kinase|DM1 protein kinase|myotonic dystrophy associated protein kinase|myotonic dystrophy protein kinase|myotonin protein kinase A|myotonin-protein kinase|thymopoietin homolog 20121230 -9606 1761 DMRT1 - DMT1 HGNC:2934|MIM:602424|Ensembl:ENSG00000137090|HPRD:03885|Vega:OTTHUMG00000019435 9 9p24.3 doublesex and mab-3 related transcription factor 1 protein-coding DMRT1 doublesex and mab-3 related transcription factor 1 O DM domain expressed in testis 1|DM domain expressed in testis protein 1|doublesex- and mab-3-related transcription factor 1 20121230 -9606 1762 DMWD - D19S593E|DMR-N9|DMRN9|gene59 HGNC:2936|MIM:609857|Ensembl:ENSG00000185800|Vega:OTTHUMG00000169044 19 19q13.3 dystrophia myotonica, WD repeat containing protein-coding DMWD dystrophia myotonica, WD repeat containing O dystrophia myotonica WD repeat-containing protein|dystrophia myotonica-containing WD repeat motif protein|protein 59 20121230 -9606 1763 DNA2 RP11-9E13.1 DNA2L|hDNA2 HGNC:2939|MIM:601810|Ensembl:ENSG00000138346|Vega:OTTHUMG00000018352 10 10q21.3-q22.1 DNA replication helicase 2 homolog (yeast) protein-coding DNA2 DNA replication helicase 2 homolog (yeast) O DNA replication ATP-dependent helicase-like homolog|DNA replication ATP-dependent helicase/nuclease DNA2|DNA2-like helicase 20121230 -9606 1767 DNAH5 - CILD3|DNAHC5|HL1|KTGNR|PCD HGNC:2950|MIM:603335|Ensembl:ENSG00000039139|HPRD:04514|Vega:OTTHUMG00000090533 5 5p15.2 dynein, axonemal, heavy chain 5 protein-coding DNAH5 dynein, axonemal, heavy chain 5 O axonemal beta dynein heavy chain 5|ciliary dynein heavy chain 5|dynein heavy chain 5, axonemal|dynein, axonemal, heavy polypeptide 5 20121230 -9606 1768 DNAH6 hCG_1789665 DNHL1|Dnahc6|HL-2|HL2 HGNC:2951|MIM:603336|Ensembl:ENSG00000115423|Vega:OTTHUMG00000128957 2 2p11.2 dynein, axonemal, heavy chain 6 protein-coding DNAH6 dynein, axonemal, heavy chain 6 O axonemal beta dynein heavy chain 6|ciliary dynein heavy chain 6|dynein heavy chain 6, axonemal|dynein heavy chain-like 1|dynein, axonemal, heavy polypeptide 6 20121230 -9606 1769 DNAH8 RP1-202I21.7 ATPase|hdhc9 HGNC:2952|MIM:603337|Ensembl:ENSG00000124721|HPRD:04515|Vega:OTTHUMG00000016253 6 6p21.2 dynein, axonemal, heavy chain 8 protein-coding DNAH8 dynein, axonemal, heavy chain 8 O axonemal beta dynein heavy chain 8|ciliary dynein heavy chain 8|dynein heavy chain 8, axonemal|dynein, axonemal, heavy polypeptide 8 20121230 -9606 1770 DNAH9 - DNAH17L|DNEL1|DYH9|Dnahc9|HL-20|HL20 HGNC:2953|MIM:603330|Ensembl:ENSG00000007174|HPRD:04511|Vega:OTTHUMG00000130383 17 17p12 dynein, axonemal, heavy chain 9 protein-coding DNAH9 dynein, axonemal, heavy chain 9 O DNAH9 variant protein|axonemal beta dynein heavy chain 9|ciliary dynein heavy chain 9|dynein heavy chain 9, axonemal|dynein, axonemal, heavy polypeptide 9 20121230 -9606 1773 DNASE1 - DNL1|DRNI HGNC:2956|MIM:125505|Ensembl:ENSG00000213918|HPRD:00509|Vega:OTTHUMG00000129426 16 16p13.3 deoxyribonuclease I protein-coding DNASE1 deoxyribonuclease I O DNase I, lysosomal|Dornase alfa|deoxyribonuclease-1|human urine deoxyribonuclease I 20121230 -9606 1774 DNASE1L1 XX-FW83563B9.2 DNAS1L1|DNASEX|DNL1L|G4.8|XIB HGNC:2957|MIM:300081|Ensembl:ENSG00000013563|HPRD:02096|Vega:OTTHUMG00000033188 X Xq28 deoxyribonuclease I-like 1 protein-coding DNASE1L1 deoxyribonuclease I-like 1 O DNase I-like 1|DNase I-like, muscle-specific|DNase X|deoxyribonuclease-1-like 1 20121230 -9606 1775 DNASE1L2 - DNAS1L2 HGNC:2958|MIM:602622|Ensembl:ENSG00000167968|HPRD:04018|Vega:OTTHUMG00000177086 16 16p13.3 deoxyribonuclease I-like 2 protein-coding DNASE1L2 deoxyribonuclease I-like 2 O DNase I homolog protein DHP1|DNase I-like 2|deoxyribonuclease-1-like 2 20121230 -9606 1776 DNASE1L3 - DHP2|DNAS1L3|LSD|SLEB16 HGNC:2959|MIM:602244|Ensembl:ENSG00000163687|HPRD:03764|Vega:OTTHUMG00000159153 3 3p14.3 deoxyribonuclease I-like 3 protein-coding DNASE1L3 deoxyribonuclease I-like 3 O DNase I homolog protein 2|DNase I homolog protein DHP2|DNase I-like 3|DNase gamma|LS-DNase|Liver and spleen DNase|deoxyribonuclease I-like III|deoxyribonuclease gamma 20121230 -9606 1777 DNASE2 - DNASE2A|DNL|DNL2 HGNC:2960|MIM:126350|Ensembl:ENSG00000105612|HPRD:00531|Vega:OTTHUMG00000180535 19 19p13.2 deoxyribonuclease II, lysosomal protein-coding DNASE2 deoxyribonuclease II, lysosomal O DNase II alpha|DNase II, lysosomal|R31240_2|acid DNase|deoxyribonuclease II alpha|deoxyribonuclease-2-alpha|lysosomal DNase II 20121230 -9606 1778 DYNC1H1 - CMT20|DHC1|DHC1a|DNCH1|DNCL|DNECL|DYHC|Dnchc1|HL-3|MRD13|SMALED|p22 HGNC:2961|MIM:600112|Ensembl:ENSG00000197102|HPRD:02524|Vega:OTTHUMG00000171644 14 14q32 dynein, cytoplasmic 1, heavy chain 1 protein-coding DYNC1H1 dynein, cytoplasmic 1, heavy chain 1 O cytoplasmic dynein 1 heavy chain 1|cytoplasmic dynein heavy chain 1|dynein heavy chain, cytosolic|dynein, cytoplasmic, heavy polypeptide 1 20121230 -9606 1780 DYNC1I1 - DNCI1|DNCIC1 HGNC:2963|MIM:603772|Ensembl:ENSG00000158560|HPRD:04798|Vega:OTTHUMG00000153983 7 7q21.3-q22.1 dynein, cytoplasmic 1, intermediate chain 1 protein-coding DYNC1I1 dynein, cytoplasmic 1, intermediate chain 1 O DH IC-1|cytoplasmic dynein 1 intermediate chain 1|cytoplasmic dynein intermediate chain 1|dynein intermediate chain 1, cytosolic|dynein, cytoplasmic, intermediate polypeptide 1 20121230 -9606 1781 DYNC1I2 - DNCI2|IC2 HGNC:2964|MIM:603331|Ensembl:ENSG00000077380|HPRD:04512|Vega:OTTHUMG00000154061 2 2q31.1 dynein, cytoplasmic 1, intermediate chain 2 protein-coding DYNC1I2 dynein, cytoplasmic 1, intermediate chain 2 O DH IC-2|cytoplasmic dynein 1 intermediate chain 2|dynein intermediate chain 2, cytosolic|dynein, cytoplasmic, intermediate polypeptide 2 20121230 -9606 1783 DYNC1LI2 - DNCLI2|LIC2 HGNC:2966|MIM:611406|Ensembl:ENSG00000135720|HPRD:09923|Vega:OTTHUMG00000137523 16 16q22.1 dynein, cytoplasmic 1, light intermediate chain 2 protein-coding DYNC1LI2 dynein, cytoplasmic 1, light intermediate chain 2 O LIC-2|LIC53/55|cytoplasmic dynein 1 light intermediate chain 2|dynein light intermediate chain 2, cytosolic|dynein, cytoplasmic, light intermediate polypeptide 2 20121230 -9606 1784 DNCM - cmDNA MIM:126330 9 9q12 DNA associated with cytoplasmic membrane other - - - - 20100624 -9606 1785 DNM2 - CMT2M|CMTDI1|CMTDIB|DI-CMTB|DYN2|DYNII HGNC:2974|MIM:602378|Ensembl:ENSG00000079805|HPRD:03852|Vega:OTTHUMG00000180694 19 19p13.2 dynamin 2 protein-coding DNM2 dynamin 2 O dynamin II|dynamin-2 20121230 -9606 1786 DNMT1 - AIM|CXXC9|DNMT|HSN1E|MCMT HGNC:2976|MIM:126375|Ensembl:ENSG00000130816|HPRD:00532|Vega:OTTHUMG00000180397 19 19p13.2 DNA (cytosine-5-)-methyltransferase 1 protein-coding DNMT1 DNA (cytosine-5-)-methyltransferase 1 O CXXC finger protein 9|CXXC-type zinc finger protein 9|DNA (cytosine-5)-methyltransferase 1|DNA MTase HsaI|DNA methyltransferase 1|DNA methyltransferase HsaI|m.HsaI 20121230 -9606 1787 TRDMT1 RP11-406H21.1 DMNT2|DNMT2|MHSAIIP|PUMET|RNMT1 HGNC:2977|MIM:602478|Ensembl:ENSG00000107614|HPRD:16001|Vega:OTTHUMG00000017745 10 10p15.1 tRNA aspartic acid methyltransferase 1 protein-coding TRDMT1 tRNA aspartic acid methyltransferase 1 O DNA (cytosine-5)-methyltransferase-like protein 2|DNA MTase homolog HsaIIP|DNA methyltransferase-2|tRNA (cytosine(38)-C(5))-methyltransferase|tRNA (cytosine-5-)-methyltransferase 20121230 -9606 1788 DNMT3A - DNMT3A2|M.HsaIIIA HGNC:2978|MIM:602769|Ensembl:ENSG00000119772|HPRD:04141|Vega:OTTHUMG00000094777 2 2p23 DNA (cytosine-5-)-methyltransferase 3 alpha protein-coding DNMT3A DNA (cytosine-5-)-methyltransferase 3 alpha O DNA (cytosine-5)-methyltransferase 3A|DNA MTase HsaIIIA|DNA cytosine methyltransferase 3A2 20121230 -9606 1789 DNMT3B RP5-1085F17.2 ICF|ICF1|M.HsaIIIB HGNC:2979|MIM:602900|Ensembl:ENSG00000088305|HPRD:04209|Vega:OTTHUMG00000032226 20 20q11.2 DNA (cytosine-5-)-methyltransferase 3 beta protein-coding DNMT3B DNA (cytosine-5-)-methyltransferase 3 beta O DNA (cytosine-5)-methyltransferase 3B|DNA MTase HsaIIIB|DNA methyltransferase HsaIIIB 20121230 -9606 1791 DNTT - TDT HGNC:2983|MIM:187410|Ensembl:ENSG00000107447|HPRD:08925|Vega:OTTHUMG00000018832 10 10q23-q24 deoxynucleotidyltransferase, terminal protein-coding DNTT deoxynucleotidyltransferase, terminal O DNA nucleotidylexotransferase|nucleosidetriphosphate:DNA deoxynucleotidylexotransferase|terminal addition enzyme|terminal deoxynucleotidyltransferase|terminal deoxyribonucleotidyltransferase|terminal transferase 20121230 -9606 1793 DOCK1 RP11-82L9.1 DOCK180|ced5 HGNC:2987|MIM:601403|Ensembl:ENSG00000150760|HPRD:03240|Vega:OTTHUMG00000019249 10 10q26.13-q26.3 dedicator of cytokinesis 1 protein-coding DOCK1 dedicator of cytokinesis 1 O 180 kDa protein downstream of CRK|DOwnstream of CrK|dedicator of cyto-kinesis 1|dedicator of cytokinesis protein 1 20121230 -9606 1794 DOCK2 - - HGNC:2988|MIM:603122|Ensembl:ENSG00000134516|HPRD:09121|Vega:OTTHUMG00000130437 5 5q35.1 dedicator of cytokinesis 2 protein-coding DOCK2 dedicator of cytokinesis 2 O dedicator of cyto-kinesis 2|dedicator of cytokinesis protein 2 20121230 -9606 1795 DOCK3 - MOCA|PBP HGNC:2989|MIM:603123|Ensembl:ENSG00000088538|HPRD:10341|Vega:OTTHUMG00000156892 3 3p21.2 dedicator of cytokinesis 3 protein-coding DOCK3 dedicator of cytokinesis 3 O dedicator of cytokinesis protein 3|modifier of cell adhesion|presenilin-binding protein 20121230 -9606 1796 DOK1 - P62DOK HGNC:2990|MIM:602919|Ensembl:ENSG00000115325|HPRD:04228|Vega:OTTHUMG00000129956 2 2p13 docking protein 1, 62kDa (downstream of tyrosine kinase 1) protein-coding DOK1 docking protein 1, 62kDa (downstream of tyrosine kinase 1) O Downstream of tyrosine kinase 1|docking protein 1|docking protein 1 (downstream of tyrosine kinase 1)|p62(dok)|pp62 20121230 -9606 1797 DOM3Z DAMC-178C20.2 DOM3L|NG6|RAI1 HGNC:2992|MIM:605996|Ensembl:ENSG00000204348|HPRD:16186|Vega:OTTHUMG00000031272 6 6p21.3 dom-3 homolog Z (C. elegans) protein-coding DOM3Z dom-3 homolog Z (C. elegans) O protein Dom3Z 20121230 -9606 1798 DPAGT1 - ALG7|CDG-Ij|CDG1J|CMSTA2|D11S366|DGPT|DPAGT|DPAGT2|G1PT|GPT|UAGT|UGAT HGNC:2995|MIM:191350|Ensembl:ENSG00000172269|HPRD:01879|Vega:OTTHUMG00000153533 11 11q23.3 dolichyl-phosphate (UDP-N-acetylglucosamine) N-acetylglucosaminephosphotransferase 1 (GlcNAc-1-P transferase) protein-coding DPAGT1 dolichyl-phosphate (UDP-N-acetylglucosamine) N-acetylglucosaminephosphotransferase 1 (GlcNAc-1-P transferase) O GlcNAc-1-P transferase|N-acetylglucosamine-1-phosphate transferase|UDP-GlcNAc:dolichyl-phosphate N-acetylglucosaminephosphotransferase|UDP-N-acetylglucosamine--dolichyl-phosphate N-acetylglucosaminephosphotransferase|dolichyl-phosphate (UDP-N-acetylglucosamine) N-acetylglucosaminephosphotransferase 1 (GlcNAc-1-P tra|dolichyl-phosphate alpha-N-acetylglucosaminyltransferase 20121230 -9606 1800 DPEP1 - MBD1|MDP|RDP HGNC:3002|MIM:179780|Ensembl:ENSG00000015413|HPRD:01563|Vega:OTTHUMG00000138052 16 16q24.3 dipeptidase 1 (renal) protein-coding DPEP1 dipeptidase 1 (renal) O dehydropeptidase-I|dipeptidase 1|hRDP|microsomal dipeptidase|renal dipeptidase 20121230 -9606 1801 DPH1 - DPH2L|DPH2L1|OVCA1 HGNC:3003|MIM:603527|Ensembl:ENSG00000108963|HPRD:04634|Vega:OTTHUMG00000177724 17 17p13.3 DPH1 homolog (S. cerevisiae) protein-coding DPH1 DPH1 homolog (S. cerevisiae) O DPH-like 1|DPH2-like 1|candidate tumor suppressor in ovarian cancer 1|diphthamide biosynthesis protein 1|diphthamide biosynthesis protein 2 homolog-like 1|diptheria toxin resistance protein required for diphthamide biosynthesis (Saccharomyces)-like 1|diptheria toxin resistance protein required for diphthamide biosynthesis-like 1|ovarian cancer-associated gene 1 protein|ovarian tumor suppressor candidate 1 20121230 -9606 1802 DPH2 - DPH2L2 HGNC:3004|MIM:603456|Ensembl:ENSG00000132768|HPRD:16023|Vega:OTTHUMG00000008295 1 1p34 DPH2 homolog (S. cerevisiae) protein-coding DPH2 DPH2 homolog (S. cerevisiae) O DPH2-like 2|diphthamide biosynthesis protein 2|diphthamide biosynthesis protein 2 homolog-like 2|diphthamide biosynthesis-like protein 2|diptheria toxin resistance protein required for diphthamide biosynthesis-like 2 20121230 -9606 1803 DPP4 - ADABP|ADCP2|CD26|DPPIV|TP103 HGNC:3009|MIM:102720|Ensembl:ENSG00000197635|HPRD:02187|Vega:OTTHUMG00000132056 2 2q24.3 dipeptidyl-peptidase 4 protein-coding DPP4 dipeptidyl-peptidase 4 O ADCP-2|DPP IV|T-cell activation antigen CD26|adenosine deaminase complexing protein 2|dipeptidyl peptidase 4|dipeptidyl peptidase IV|dipeptidylpeptidase 4|dipeptidylpeptidase IV (CD26, adenosine deaminase complexing protein 2) 20121230 -9606 1804 DPP6 - DPPX|VF2 HGNC:3010|MIM:126141|Ensembl:ENSG00000130226|HPRD:00525|Vega:OTTHUMG00000151511 7 7q36.2 dipeptidyl-peptidase 6 protein-coding DPP6 dipeptidyl-peptidase 6 O DPP VI|dipeptidyl aminopeptidase IV-related protein|dipeptidyl aminopeptidase-like protein 6|dipeptidyl aminopeptidase-related protein|dipeptidyl peptidase 6|dipeptidyl peptidase IV-like protein|dipeptidyl peptidase IV-related protein|dipeptidyl peptidase VI|dipeptidylpeptidase 6|dipeptidylpeptidase VI 20121230 -9606 1805 DPT - TRAMP HGNC:3011|MIM:125597|Ensembl:ENSG00000143196|HPRD:00510|Vega:OTTHUMG00000034554 1 1q12-q23 dermatopontin protein-coding DPT dermatopontin O tyrosine-rich acidic matrix protein 20121230 -9606 1806 DPYD - DHP|DHPDHASE|DPD HGNC:3012|MIM:612779|Ensembl:ENSG00000188641|HPRD:02036|Vega:OTTHUMG00000039683 1 1p22 dihydropyrimidine dehydrogenase protein-coding DPYD dihydropyrimidine dehydrogenase O dihydropyrimidine dehydrogenase [NADP(+)]|dihydrothymine dehydrogenase|dihydrouracil dehydrogenase 20121230 -9606 1807 DPYS - DHP|DHPase HGNC:3013|MIM:613326|Ensembl:ENSG00000147647|HPRD:01960|Vega:OTTHUMG00000164891 8 8q22 dihydropyrimidinase protein-coding DPYS dihydropyrimidinase O dihydropyrimidine amidohydrolase|hydantoinase 20121230 -9606 1808 DPYSL2 - CRMP-2|CRMP2|DHPRP2|DRP-2|DRP2|N2A3|ULIP-2|ULIP2 HGNC:3014|MIM:602463|Ensembl:ENSG00000092964|HPRD:03914|Vega:OTTHUMG00000099439 8 8p22-p21 dihydropyrimidinase-like 2 protein-coding DPYSL2 dihydropyrimidinase-like 2 O collapsin response mediator protein hCRMP-2|dihydropyrimidinase-related protein 2|unc-33-like phosphoprotein 2 20121230 -9606 1809 DPYSL3 - CRMP-4|CRMP4|DRP-3|DRP3|LCRMP|ULIP|ULIP-1 HGNC:3015|MIM:601168|Ensembl:ENSG00000113657|HPRD:03104|Vega:OTTHUMG00000163437 5 5q32 dihydropyrimidinase-like 3 protein-coding DPYSL3 dihydropyrimidinase-like 3 O collapsin response mediator protein 4 long|dihydropyrimidinase-related protein 3|unc-33-like phosphoprotein 1 20121230 -9606 1810 DR1 - NC2|NC2-BETA HGNC:3017|MIM:601482|Ensembl:ENSG00000117505|HPRD:03284|Vega:OTTHUMG00000010862 1 1p22.1 down-regulator of transcription 1, TBP-binding (negative cofactor 2) protein-coding DR1 down-regulator of transcription 1, TBP-binding (negative cofactor 2) O TATA-binding protein-associated phosphoprotein|negative cofactor 2-beta|protein Dr1 20121230 -9606 1811 SLC26A3 - CLD|DRA HGNC:3018|MIM:126650|Ensembl:ENSG00000091138|HPRD:00544|Vega:OTTHUMG00000154812 7 7q31 solute carrier family 26, member 3 protein-coding SLC26A3 solute carrier family 26, member 3 O chloride anion exchanger|down-regulated in adenoma protein 20121230 -9606 1812 DRD1 - DADR|DRD1A HGNC:3020|MIM:126449|Ensembl:ENSG00000184845|HPRD:00538 5 5q35.1 dopamine receptor D1 protein-coding DRD1 dopamine receptor D1 O D(1A) dopamine receptor|dopamine D1 receptor 20121230 -9606 1813 DRD2 - D2DR|D2R HGNC:3023|MIM:126450|Ensembl:ENSG00000149295|HPRD:00539|Vega:OTTHUMG00000167717 11 11q23 dopamine receptor D2 protein-coding DRD2 dopamine receptor D2 O D(2) dopamine receptor|dopamine D2 receptor|dopamine receptor D2 isoform|seven transmembrane helix receptor 20121230 -9606 1814 DRD3 - D3DR|ETM1|FET1 HGNC:3024|MIM:126451|Ensembl:ENSG00000151577|HPRD:00540|Vega:OTTHUMG00000159334 3 3q13.3 dopamine receptor D3 protein-coding DRD3 dopamine receptor D3 O D(3) dopamine receptor|dopamine D3 receptor|essential tremor 1 20121230 -9606 1815 DRD4 - D4DR HGNC:3025|MIM:126452|Ensembl:ENSG00000069696|HPRD:00541|Vega:OTTHUMG00000133312 11 11p15.5 dopamine receptor D4 protein-coding DRD4 dopamine receptor D4 O D(2C) dopamine receptor|D(4) dopamine receptor|dopamine D4 receptor|seven transmembrane helix receptor 20121230 -9606 1816 DRD5 - DBDR|DRD1B|DRD1L2 HGNC:3026|MIM:126453|Ensembl:ENSG00000169676|HPRD:00542|Vega:OTTHUMG00000128489 4 4p16.1 dopamine receptor D5 protein-coding DRD5 dopamine receptor D5 O D(1B) dopamine receptor|D1beta dopamine receptor|d(5) dopamine receptor|dopamine D5 receptor|dopamine receptor D1B 20121230 -9606 1817 DRD5P1 - - HGNC:3027 2 2p11.1 dopamine receptor D5 pseudogene 1 pseudo DRD5P1 dopamine receptor D5 pseudogene 1 O - 20121230 -9606 1818 DRD5P2 - - HGNC:3028 1 1q21.1 dopamine receptor D5 pseudogene 2 pseudo DRD5P2 dopamine receptor D5 pseudogene 2 O - 20121230 -9606 1819 DRG2 - - HGNC:3030|MIM:602986|Ensembl:ENSG00000108591|HPRD:04286|Vega:OTTHUMG00000059399 17 17p11.2 developmentally regulated GTP binding protein 2 protein-coding DRG2 developmentally regulated GTP binding protein 2 O developmentally-regulated GTP-binding protein 2 20121230 -9606 1820 ARID3A - BRIGHT|DRIL1|DRIL3|E2FBP1 HGNC:3031|MIM:603265|Ensembl:ENSG00000116017|HPRD:10343|Vega:OTTHUMG00000182018 19 19p13.3 AT rich interactive domain 3A (BRIGHT-like) protein-coding ARID3A AT rich interactive domain 3A (BRIGHT-like) O ARID domain-containing 3A|ARID domain-containing protein 3A|AT rich interactive domain 3A (BRIGHT- like) protein|AT-rich interactive domain-containing protein 3A|B-cell regulator of IgH transcription|E2F-binding protein 1|dead ringer-like 1|dead ringer-like protein 1 20121230 -9606 1821 DRP2 GHc-521F8.2 - HGNC:3032|MIM:300052|Ensembl:ENSG00000102385|HPRD:02083|Vega:OTTHUMG00000022020 X Xq22 dystrophin related protein 2 protein-coding DRP2 dystrophin related protein 2 O DRP-2|dystrophin-related protein 2 20121230 -9606 1822 ATN1 - B37|D12S755E|DRPLA|HRS|NOD HGNC:3033|MIM:607462|Ensembl:ENSG00000111676|HPRD:06311|Vega:OTTHUMG00000169015 12 12p13.31 atrophin 1 protein-coding ATN1 atrophin 1 O atrophin-1|dentatorubral-pallidoluysian atrophy protein 20121230 -9606 1823 DSC1 - CDHF1|DG2/DG3 HGNC:3035|MIM:125643|Ensembl:ENSG00000134765|HPRD:00511|Vega:OTTHUMG00000131982 18 18q12.1 desmocollin 1 protein-coding DSC1 desmocollin 1 O cadherin family member 1|desmocollin-1|desmosomal glycoprotein 2/3 20121230 -9606 1824 DSC2 - ARVD11|CDHF2|DG2|DGII/III|DSC3 HGNC:3036|MIM:125645|Ensembl:ENSG00000134755|HPRD:00512|Vega:OTTHUMG00000131981 18 18q12.1 desmocollin 2 protein-coding DSC2 desmocollin 2 O cadherin family member 2|desmocollin-2|desmosomal glycoprotein II/III 20121230 -9606 1825 DSC3 - CDHF3|DSC|DSC1|DSC2|DSC4|HT-CP HGNC:3037|MIM:600271|Ensembl:ENSG00000134762|HPRD:02604|Vega:OTTHUMG00000179622 18 18q12.1 desmocollin 3 protein-coding DSC3 desmocollin 3 O cadherin family member 3|desmocollin-3|desmocollin-4 20121230 -9606 1826 DSCAM - CHD2-42|CHD2-52 HGNC:3039|MIM:602523|Ensembl:ENSG00000171587|HPRD:03953|Vega:OTTHUMG00000086732 21 21q22.2 Down syndrome cell adhesion molecule protein-coding DSCAM Down syndrome cell adhesion molecule O CHD2|human CHD2-52 down syndrome cell adhesion molecule 20121230 -9606 1827 RCAN1 - ADAPT78|CSP1|DSC1|DSCR1|MCIP1|RCN1 HGNC:3040|MIM:602917|Ensembl:ENSG00000159200|HPRD:04226|Vega:OTTHUMG00000086235 21 21q22.12 regulator of calcineurin 1 protein-coding RCAN1 regulator of calcineurin 1 O Down syndrome candidate region 1|Down syndrome critical region gene 1|calcipressin-1|calcium and oxidant-inducible mRNA|down syndrome critical region protein 1|modulatory calcineurin-interacting protein 1|myocyte-enriched calcineurin-interacting protein 1|near DSCR proline-rich protein 20121230 -9606 1828 DSG1 - CDHF4|DG1|DSG|PPKS1|SPPK1 HGNC:3048|MIM:125670|Ensembl:ENSG00000134760|HPRD:00515|Vega:OTTHUMG00000131983 18 18q12.1 desmoglein 1 protein-coding DSG1 desmoglein 1 O DGI|cadherin family member 4|desmoglein-1|desmosomal glycoprotein 1|pemphigus foliaceus antigen 20121230 -9606 1829 DSG2 - ARVC10|ARVD10|CDHF5|CMD1BB|HDGC HGNC:3049|MIM:125671|Ensembl:ENSG00000046604|HPRD:00516|Vega:OTTHUMG00000179649 18 18q12.1 desmoglein 2 protein-coding DSG2 desmoglein 2 O HDGC|cadherin family member 5|desmoglein-2 20121230 -9606 1830 DSG3 - CDHF6|PVA HGNC:3050|MIM:169615|Ensembl:ENSG00000134757|HPRD:01355|Vega:OTTHUMG00000131985 18 18q12.1 desmoglein 3 protein-coding DSG3 desmoglein 3 O 130 kDa pemphigus vulgaris antigen|130-kD pemphigus vulgaris antigen|cadherin family member 6|desmoglein-3|pemphigus vulgaris antigen 20121230 -9606 1831 TSC22D3 RP13-364K23.1 DIP|DSIPI|GILZ|TSC-22R|hDIP HGNC:3051|MIM:300506|Ensembl:ENSG00000157514|HPRD:04266|Vega:OTTHUMG00000022168 X Xq22.3 TSC22 domain family, member 3 protein-coding TSC22D3 TSC22 domain family, member 3 O DSIP-immunoreactive leucine zipper protein|DSIP-immunoreactive peptide|TSC-22 related protein|TSC-22-like protein|TSC-22-related protein|TSC22 domain family protein 3|delta sleep inducing peptide, immunoreactor|delta sleep-inducing peptide immunoreactor|glucocorticoid-induced leucine zipper protein 20121230 -9606 1832 DSP - DP|DPI|DPII HGNC:3052|MIM:125647|Ensembl:ENSG00000096696|HPRD:00513|Vega:OTTHUMG00000014212 6 6p24 desmoplakin protein-coding DSP desmoplakin O 250/210 kDa paraneoplastic pemphigus antigen|desmoplakin I|desmoplakin II 20121230 -9606 1833 EPYC - DSPG3|PGLB|Pg-Lb|SLRR3B HGNC:3053|MIM:601657|Ensembl:ENSG00000083782|HPRD:15988|Vega:OTTHUMG00000170072 12 12q21 epiphycan protein-coding EPYC epiphycan O dermatan sulfate proteoglycan 3|epiphycan proteoglycan|proteoglycan-lb|small chondroitin/dermatan sulfate proteoglycan 20121230 -9606 1834 DSPP - DFNA39|DGI1|DMP3|DPP|DSP|DTDP2 HGNC:3054|MIM:125485|Ensembl:ENSG00000152591|HPRD:00508|Vega:OTTHUMG00000161061 4 4q21.3 dentin sialophosphoprotein protein-coding DSPP dentin sialophosphoprotein O dentin phosphophoryn|dentin phosphoprotein|dentin phosphoryn|dentin sialoprotein 20121230 -9606 1836 SLC26A2 - D5S1708|DTD|DTDST|EDM4|MST153|MSTP157 HGNC:10994|MIM:606718|Ensembl:ENSG00000155850|HPRD:05990|Vega:OTTHUMG00000130054 5 5q31-q34 solute carrier family 26 (sulfate transporter), member 2 protein-coding SLC26A2 solute carrier family 26 (sulfate transporter), member 2 O diastrophic dysplasia protein|sulfate anion transporter 1|sulfate transporter 20121230 -9606 1837 DTNA - D18S892E|DRP3|DTN|DTN-A|LVNC1 HGNC:3057|MIM:601239|Ensembl:ENSG00000134769|HPRD:03141|Vega:OTTHUMG00000132309 18 18q12 dystrobrevin, alpha protein-coding DTNA dystrobrevin, alpha O dystrobrevin alpha|dystrophin-related protein 3 20121230 -9606 1838 DTNB - - HGNC:3058|MIM:602415|Ensembl:ENSG00000138101|HPRD:09091|Vega:OTTHUMG00000152129 2 2p24 dystrobrevin, beta protein-coding DTNB dystrobrevin, beta O DTN-B|beta-dystrobrevin|dystrobrevin beta 20121230 -9606 1839 HBEGF - DTR|DTS|DTSF|HEGFL HGNC:3059|MIM:126150|Ensembl:ENSG00000113070|HPRD:00526|Vega:OTTHUMG00000129496 5 5q23 heparin-binding EGF-like growth factor protein-coding HBEGF heparin-binding EGF-like growth factor O diphtheria toxin receptor (heparin-binding EGF-like growth factor)|diphtheria toxin receptor (heparin-binding epidermal growth factor-like growth factor)|heparin-binding epidermal growth factor|proheparin-binding EGF-like growth factor 20121230 -9606 1840 DTX1 - hDx-1 HGNC:3060|MIM:602582|Ensembl:ENSG00000135144|HPRD:03991|Vega:OTTHUMG00000169610 12 12q24.13 deltex homolog 1 (Drosophila) protein-coding DTX1 deltex homolog 1 (Drosophila) O E3 ubiquitin-protein ligase DTX1|deltex1|hDTX1|protein deltex-1 20121230 -9606 1841 DTYMK - CDC8|PP3731|TMPK|TYMK HGNC:3061|MIM:188345|Ensembl:ENSG00000168393|HPRD:01773|Vega:OTTHUMG00000133409 2 2q37.3 deoxythymidylate kinase (thymidylate kinase) protein-coding DTYMK deoxythymidylate kinase (thymidylate kinase) O dTMP kinase|thymidylate kinase 20121230 -9606 1842 ECM2 RP11-77D6.2 - HGNC:3154|MIM:603479|Ensembl:ENSG00000106823|HPRD:09148|Vega:OTTHUMG00000020226 9 9q22.3 extracellular matrix protein 2, female organ and adipocyte specific protein-coding ECM2 extracellular matrix protein 2, female organ and adipocyte specific O extracellular matrix protein 2|matrix glycoprotein SC1/ECM2 20121230 -9606 1843 DUSP1 - CL100|HVH1|MKP-1|MKP1|PTPN10 HGNC:3064|MIM:600714|Ensembl:ENSG00000120129|HPRD:02835|Vega:OTTHUMG00000130523 5 5q34 dual specificity phosphatase 1 protein-coding DUSP1 dual specificity phosphatase 1 O MAP kinase phosphatase 1|dual specificity protein phosphatase 1|dual specificity protein phosphatase hVH1|mitogen-activated protein kinase phosphatase 1|protein-tyrosine phosphatase CL100|serine/threonine specific protein phosphatase 20121230 -9606 1844 DUSP2 - PAC-1|PAC1 HGNC:3068|MIM:603068|Ensembl:ENSG00000158050|HPRD:04348|Vega:OTTHUMG00000130456 2 2q11 dual specificity phosphatase 2 protein-coding DUSP2 dual specificity phosphatase 2 O dual specificity protein phosphatase 2|dual specificity protein phosphatase PAC-1|dual-specificity phosphatase 2|serine/threonine specific protein phosphatase 20121230 -9606 1845 DUSP3 - VHR HGNC:3069|MIM:600183|Ensembl:ENSG00000108861|HPRD:02553|Vega:OTTHUMG00000180889 17 17q21 dual specificity phosphatase 3 protein-coding DUSP3 dual specificity phosphatase 3 O dual specificity protein phosphatase 3|dual specificity protein phosphatase VHR|serine/threonine specific protein phosphatase|vaccinia H1-related phosphatase|vaccinia virus phosphatase VH1-related 20121230 -9606 1846 DUSP4 - HVH2|MKP-2|MKP2|TYP HGNC:3070|MIM:602747|Ensembl:ENSG00000120875|HPRD:04123|Vega:OTTHUMG00000133395 8 8p12-p11 dual specificity phosphatase 4 protein-coding DUSP4 dual specificity phosphatase 4 O MAP kinase phosphatase 2|VH1 homologous phosphatase 2|dual specificity protein phosphatase 4|dual specificity protein phosphatase hVH2|mitogen-activated protein kinase phosphatase 2|serine/threonine specific protein phosphatase 20121230 -9606 1847 DUSP5 - DUSP|HVH3 HGNC:3071|MIM:603069|Ensembl:ENSG00000138166|HPRD:04349|Vega:OTTHUMG00000019040 10 10q25 dual specificity phosphatase 5 protein-coding DUSP5 dual specificity phosphatase 5 O VH1-like phosphatase 3|dual specificity protein phosphatase 5|dual specificity protein phosphatase hVH3|serine/threonine specific protein phosphatase 20121230 -9606 1848 DUSP6 - MKP3|PYST1 HGNC:3072|MIM:602748|Ensembl:ENSG00000139318|HPRD:04124|Vega:OTTHUMG00000169912 12 12q22-q23 dual specificity phosphatase 6 protein-coding DUSP6 dual specificity phosphatase 6 O MAP kinase phosphatase 3|dual specificity protein phosphatase 6|dual specificity protein phosphatase PYST1|mitogen-activated protein kinase phosphatase 3|serine/threonine specific protein phosphatase 20121230 -9606 1849 DUSP7 - MKPX|PYST2 HGNC:3073|MIM:602749|Ensembl:ENSG00000164086|HPRD:04125|Vega:OTTHUMG00000157819 3 3p21 dual specificity phosphatase 7 protein-coding DUSP7 dual specificity phosphatase 7 O dual specificity protein phosphatase 7|dual specificity protein phosphatase PYST2|dual-specificity phosphatase-7 20121230 -9606 1850 DUSP8 - C11orf81|HB5|HVH-5|HVH8 HGNC:3074|MIM:602038|Ensembl:ENSG00000184545|HPRD:03617|Vega:OTTHUMG00000133348 11 11p15.5 dual specificity phosphatase 8 protein-coding DUSP8 dual specificity phosphatase 8 O H1 phosphatase, vaccinia virus homolog|dual specificity protein phosphatase 8|dual specificity protein phosphatase hVH-5|serine/threonine specific protein phosphatase 20121230 -9606 1851 DUSP8P - - HGNC:3075 10 10q11.2 dual specificity phosphatase 8 pseudogene pseudo DUSP8P dual specificity phosphatase 8 pseudogene O - 20090331 -9606 1852 DUSP9 - MKP-4|MKP4 HGNC:3076|MIM:300134|Ensembl:ENSG00000130829|HPRD:02136|Vega:OTTHUMG00000024211 X Xq28 dual specificity phosphatase 9 protein-coding DUSP9 dual specificity phosphatase 9 O dual specificity protein phosphatase 9|map kinase phosphatase 4|mitogen-activated protein kinase phosphatase 4|serine/threonine specific protein phosphatase 20121230 -9606 1854 DUT - dUTPase HGNC:3078|MIM:601266|Ensembl:ENSG00000128951|HPRD:03165|Vega:OTTHUMG00000172155 15 15q21.1 deoxyuridine triphosphatase protein-coding DUT deoxyuridine triphosphatase O dUTP nucleotidohydrolase|dUTP pyrophosphatase|deoxyuridine 5'-triphosphate nucleotidohydrolase, mitochondrial 20121230 -9606 1855 DVL1 RP5-890O3.5 DVL|DVL1L1 HGNC:3084|MIM:601365|Ensembl:ENSG00000107404|HPRD:03220|Vega:OTTHUMG00000003069 1 1p36 dishevelled, dsh homolog 1 (Drosophila) protein-coding DVL1 dishevelled, dsh homolog 1 (Drosophila) O DSH homolog 1|dishevelled 1 (homologous to Drosophila dsh)|dishevelled-1|segment polarity protein dishevelled homolog DVL-1 20121230 -9606 1856 DVL2 - - HGNC:3086|MIM:602151|Ensembl:ENSG00000004975|HPRD:03690|Vega:OTTHUMG00000102155 17 17p13.1 dishevelled, dsh homolog 2 (Drosophila) protein-coding DVL2 dishevelled, dsh homolog 2 (Drosophila) O dishevelled 2 (homologous to Drosophila dsh)|segment polarity protein dishevelled homolog DVL-2 20121230 -9606 1857 DVL3 - - HGNC:3087|MIM:601368|Ensembl:ENSG00000161202|HPRD:03222|Vega:OTTHUMG00000156841 3 3q27 dishevelled, dsh homolog 3 (Drosophila) protein-coding DVL3 dishevelled, dsh homolog 3 (Drosophila) O DSH homolog 3|dishevelled 3 (homologous to Drosophila dsh)|dishevelled-3|segment polarity protein dishevelled homolog DVL-3 20121230 -9606 1858 DWS - C3DELq22q24|DEL3q22q24 HGNC:3088|MIM:220200 3 3q22-q24 dandy-walker syndrome unknown DWS dandy-walker syndrome O - 20120715 -9606 1859 DYRK1A - DYRK|DYRK1|HP86|MNB|MNBH|MRD7 HGNC:3091|MIM:600855|Ensembl:ENSG00000157540|HPRD:09018|Vega:OTTHUMG00000086657 21 21q22.13 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 1A protein-coding DYRK1A dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 1A O MNB/DYRK protein kinase|dual specificity YAK1-related kinase|dual specificity tyrosine-phosphorylation-regulated kinase 1A|hMNB|mnb protein kinase homolog hp86|protein kinase minibrain homolog|serine/threonine kinase MNB|serine/threonine-specific protein kinase 20121230 -9606 1861 TOR1A - DQ2|DYT1 HGNC:3098|MIM:605204|Ensembl:ENSG00000136827|HPRD:06897|Vega:OTTHUMG00000020794 9 9q34 torsin family 1, member A (torsin A) protein-coding TOR1A torsin family 1, member A (torsin A) O dystonia 1 protein|dystonia 1, torsion (autosomal dominant; torsin A)|torsin family 1 member A|torsin-1A 20121230 -9606 1862 DYT2 - - HGNC:3102|MIM:224500 - - dystonia 2, torsion (autosomal recessive) unknown DYT2 dystonia 2, torsion (autosomal recessive) O - 20110215 -9606 1864 DYT4 - - HGNC:3104|MIM:128101 - - dystonia 4, torsion (autosomal dominant) unknown DYT4 dystonia 4, torsion (autosomal dominant) O - 20120409 -9606 1866 DYT7 - - HGNC:3107|MIM:602124 18 18p dystonia 7, torsion (autosomal dominant) unknown DYT7 dystonia 7, torsion (autosomal dominant) O - 20120622 -9606 1867 DYX1 - RD HGNC:3108|MIM:127700 15 - dyslexia susceptibility 1 unknown DYX1 dyslexia susceptibility 1 O - 20110703 -9606 1869 E2F1 - E2F-1|RBAP1|RBBP3|RBP3 HGNC:3113|MIM:189971|Ensembl:ENSG00000101412|HPRD:01806|Vega:OTTHUMG00000032265 20 20q11.2 E2F transcription factor 1 protein-coding E2F1 E2F transcription factor 1 O PBR3|PRB-binding protein E2F-1|RBAP-1|RBBP-3|retinoblastoma-associated protein 1|retinoblastoma-binding protein 3|transcription factor E2F1 20121230 -9606 1870 E2F2 - E2F-2 HGNC:3114|MIM:600426|Ensembl:ENSG00000007968|HPRD:02692|Vega:OTTHUMG00000003223 1 1p36 E2F transcription factor 2 protein-coding E2F2 E2F transcription factor 2 O transcription factor E2F2 20121230 -9606 1871 E2F3 RP1-177P22.2 E2F-3 HGNC:3115|MIM:600427|Ensembl:ENSG00000112242|HPRD:02693|Vega:OTTHUMG00000016389 6 6p22 E2F transcription factor 3 protein-coding E2F3 E2F transcription factor 3 O transcription factor E2F3 20121230 -9606 1872 E2F3P1 - - HGNC:3116 17 17q11-q12 E2F transcription factor 3 pseudogene 1 pseudo E2F3P1 E2F transcription factor 3 pseudogene 1 O - 20121230 -9606 1874 E2F4 - E2F-4 HGNC:3118|MIM:600659|Ensembl:ENSG00000205250|HPRD:02806|Vega:OTTHUMG00000172975 16 16q21-q22 E2F transcription factor 4, p107/p130-binding protein-coding E2F4 E2F transcription factor 4, p107/p130-binding O p107/p130-binding protein|transcription factor E2F4 20121230 -9606 1875 E2F5 - E2F-5 HGNC:3119|MIM:600967|Ensembl:ENSG00000133740|HPRD:02983|Vega:OTTHUMG00000164785 8 8q21.2 E2F transcription factor 5, p130-binding protein-coding E2F5 E2F transcription factor 5, p130-binding O transcription factor E2F5 20121230 -9606 1876 E2F6 - E2F-6 HGNC:3120|MIM:602944|Ensembl:ENSG00000169016|HPRD:04251|Vega:OTTHUMG00000090565 2 2p25.1 E2F transcription factor 6 protein-coding E2F6 E2F transcription factor 6 O transcription factor E2F6 20121230 -9606 1877 E4F1 - E4F HGNC:3121|MIM:603022|Ensembl:ENSG00000167967|HPRD:04317|Vega:OTTHUMG00000177084 16 16p13.3 E4F transcription factor 1 protein-coding E4F1 E4F transcription factor 1 O p120E4F|p50E4F|putative E3 ubiquitin-protein ligase E4F1|transcription factor E4F|transcription factor E4F1 20121230 -9606 1878 E11S - - HGNC:3112|MIM:129150 19 19q13.1-q13.3 ECHO virus (serotypes 4, 6, 11, 19) sensitivity unknown E11S ECHO virus (serotypes 4, 6, 11, 19) sensitivity O - 20110215 -9606 1879 EBF1 - COE1|EBF|O/E-1|OLF1 HGNC:3126|MIM:164343|Ensembl:ENSG00000164330|HPRD:01256|Vega:OTTHUMG00000130304 5 5q34 early B-cell factor 1 protein-coding EBF1 early B-cell factor 1 O Collier, Olf and EBF transcription factor 1|OE-1|olfactory neuronal transcription factor 1|transcription factor COE1 20121230 -9606 1880 GPR183 RP11-461N23.2 EBI2 HGNC:3128|MIM:605741|Ensembl:ENSG00000169508|HPRD:12040|Vega:OTTHUMG00000017263 13 13q32.3 G protein-coupled receptor 183 protein-coding GPR183 G protein-coupled receptor 183 O EBV-induced G-protein coupled receptor 2|Epstein-Barr virus induced gene 2 (lymphocyte-specific G protein-coupled receptor)|G-protein coupled receptor 183|epstein-Barr virus-induced G-protein coupled receptor 2 20121230 -9606 1881 EBM - - HGNC:3130|MIM:302000 X Xq27.3-qter epidermolysis bullosa, macular type unknown EBM epidermolysis bullosa, macular type O - 20110215 -9606 1884 EBR3 - ULG4 HGNC:3136|MIM:226500 - - epidermolysis bullosa 3, progressiva unknown EBR3 epidermolysis bullosa 3, progressiva O - 20110215 -9606 1885 EBR4 - - HGNC:3137 - - epidermolysis bullosa 4, pseudojunctional (intraepidermal) unknown EBR4 epidermolysis bullosa 4, pseudojunctional (intraepidermal) O - 20110215 -9606 1888 EBVS1 - - HGNC:3143|MIM:132850 1 1p35 Epstein Barr virus integration site 1 other EBVS1 Epstein Barr virus integration site 1 O - 20100629 -9606 1889 ECE1 RP3-329E20.1 ECE HGNC:3146|MIM:600423|Ensembl:ENSG00000117298|HPRD:02690|Vega:OTTHUMG00000002625 1 1p36.1 endothelin converting enzyme 1 protein-coding ECE1 endothelin converting enzyme 1 O ECE-1|endothelin-converting enzyme 1 20121230 -9606 1890 TYMP - ECGF|ECGF1|MEDPS1|MNGIE|MTDPS1|PDECGF|TP|hPD-ECGF HGNC:3148|MIM:131222|Ensembl:ENSG00000025708|HPRD:08833|Vega:OTTHUMG00000150249 22 22q13.33 thymidine phosphorylase protein-coding TYMP thymidine phosphorylase O gliostatin|tdRPase 20121230 -9606 1891 ECH1 - HPXEL HGNC:3149|MIM:600696|Ensembl:ENSG00000104823|HPRD:02825 19 19q13.1 enoyl CoA hydratase 1, peroxisomal protein-coding ECH1 enoyl CoA hydratase 1, peroxisomal O delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial|delta3,5-delta2,4-dienoyl-CoA isomerase|dienoyl-CoA isomerase|enoyl Coenzyme A hydratase 1, peroxisomal|peroxisomal enoyl-CoA hydratase 1 20121230 -9606 1892 ECHS1 - SCEH HGNC:3151|MIM:602292|Ensembl:ENSG00000127884|HPRD:03799|Vega:OTTHUMG00000019320 10 10q26.2-q26.3 enoyl CoA hydratase, short chain, 1, mitochondrial protein-coding ECHS1 enoyl CoA hydratase, short chain, 1, mitochondrial O enoyl Coenzyme A hydratase, short chain, 1, mitochondrial|enoyl-CoA hydratase 1|enoyl-CoA hydratase, mitochondrial|short-chain enoyl-CoA hydratase 20121230 -9606 1893 ECM1 RP11-54A4.6 - HGNC:3153|MIM:602201|Ensembl:ENSG00000143369|HPRD:03727|Vega:OTTHUMG00000012806 1 1q21 extracellular matrix protein 1 protein-coding ECM1 extracellular matrix protein 1 O secretory component p85 20121230 -9606 1894 ECT2 - ARHGEF31 HGNC:3155|MIM:600586|Ensembl:ENSG00000114346|HPRD:11860|Vega:OTTHUMG00000156762 3 3q26.1-q26.2 epithelial cell transforming sequence 2 oncogene protein-coding ECT2 epithelial cell transforming sequence 2 oncogene O epithelial cell-transforming sequence 2 oncogene|protein ECT2 20121230 -9606 1896 EDA RP11-351K23.1 ECTD1|ED1|ED1-A1|ED1-A2|EDA1|EDA2|HED|HED1|ODT1|STHAGX1|XHED|XLHED HGNC:3157|MIM:300451|Ensembl:ENSG00000158813|HPRD:02347|Vega:OTTHUMG00000021764 X Xq12-q13.1 ectodysplasin A protein-coding EDA ectodysplasin A O X-linked anhidroitic ectodermal dysplasia protein|ectodysplasin-A|oligodontia 1 20121230 -9606 1901 S1PR1 - CD363|CHEDG1|D1S3362|ECGF1|EDG-1|EDG1|S1P1 HGNC:3165|MIM:601974|Ensembl:ENSG00000170989|HPRD:03578|Vega:OTTHUMG00000010835 1 1p21 sphingosine-1-phosphate receptor 1 protein-coding S1PR1 sphingosine-1-phosphate receptor 1 O S1P receptor 1|S1P receptor Edg-1|endothelial differentiation G-protein coupled receptor 1|endothelial differentiation, sphingolipid G-protein-coupled receptor, 1|sphingosine 1-phosphate receptor 1|sphingosine 1-phosphate receptor EDG1|sphingosine 1-phosphate receptor Edg-1 20121230 -9606 1902 LPAR1 RP11-104M22.2 EDG2|GPR26|Gpcr26|LPA1|Mrec1.3|VZG1|edg-2|rec.1.3|vzg-1 HGNC:3166|MIM:602282|Ensembl:ENSG00000198121|HPRD:03790|Vega:OTTHUMG00000020486 9 9q31.3 lysophosphatidic acid receptor 1 protein-coding LPAR1 lysophosphatidic acid receptor 1 O LPA receptor 1|LPA-1|endothelial differentiation, lysophosphatidic acid G-protein-coupled receptor, 2|lysophosphatidic acid receptor Edg-2|ventricular zone gene 1 20121230 -9606 1903 S1PR3 - EDG-3|EDG3|LPB3|S1P3 HGNC:3167|MIM:601965|Ensembl:ENSG00000213694|HPRD:03572|Vega:OTTHUMG00000020173 9 9q22.1-q22.2 sphingosine-1-phosphate receptor 3 protein-coding S1PR3 sphingosine-1-phosphate receptor 3 O G protein-coupled receptor, endothelial differentiation gene-3|S1P receptor 3|S1P receptor EDG3|S1P receptor Edg-3|endothelial differentiation G-protein coupled receptor 3|endothelial differentiation, sphingolipid G-protein-coupled receptor, 3|sphingosine 1-phosphate receptor 3|sphingosine 1-phosphate receptor Edg-3 20121230 -9606 1906 EDN1 - ET1|HDLCQ7|PPET1 HGNC:3176|MIM:131240|Ensembl:ENSG00000078401|HPRD:07030|Vega:OTTHUMG00000014266 6 6p24.1 endothelin 1 protein-coding EDN1 endothelin 1 O endothelin-1|preproendothelin-1 20121230 -9606 1907 EDN2 - ET2|PPET2 HGNC:3177|MIM:131241|Ensembl:ENSG00000127129|HPRD:07173|Vega:OTTHUMG00000006362 1 1p34 endothelin 2 protein-coding EDN2 endothelin 2 O ET-2|endothelin-2|preproendothelin 2|preproendothelin-2 20121230 -9606 1908 EDN3 RP4-614C15.1 ET-3|ET3|HSCR4|PPET3|WS4B HGNC:3178|MIM:131242|Ensembl:ENSG00000124205|HPRD:00570|Vega:OTTHUMG00000032867 20 20q13.2-q13.3 endothelin 3 protein-coding EDN3 endothelin 3 O endothelin-3|preproendothelin-3 20121230 -9606 1909 EDNRA - ET-A|ETA|ETA-R|ETAR|ETRA|hET-AR HGNC:3179|MIM:131243|Ensembl:ENSG00000151617|HPRD:00571|Vega:OTTHUMG00000161354 4 4q31.22 endothelin receptor type A protein-coding EDNRA endothelin receptor type A O G protein-coupled receptor|endothelin receptor subtype A|endothelin-1 receptor|endothelin-1-specific receptor 20121230 -9606 1910 EDNRB RP11-318G21.1 ABCDS|ET-B|ET-BR|ETB|ETBR|ETRB|HSCR|HSCR2|WS4A HGNC:3180|MIM:131244|Ensembl:ENSG00000136160|HPRD:08834|Vega:OTTHUMG00000017111 13 13q22 endothelin receptor type B protein-coding EDNRB endothelin receptor type B O endothelin B receptor|endothelin receptor non-selective type 20121230 -9606 1911 PHC1 - EDR1|HPH1|RAE28 HGNC:3182|MIM:602978|Ensembl:ENSG00000111752|HPRD:16009|Vega:OTTHUMG00000168275 12 12p13 polyhomeotic homolog 1 (Drosophila) protein-coding PHC1 polyhomeotic homolog 1 (Drosophila) O early development regulator 1 (homolog of polyhomeotic 1)|early development regulatory protein 1|polyhomeotic-like 1|polyhomeotic-like protein 1 20121230 -9606 1912 PHC2 - EDR2|HPH2|PH2 HGNC:3183|MIM:602979|Ensembl:ENSG00000134686|HPRD:10340|Vega:OTTHUMG00000004133 1 1p34.3 polyhomeotic homolog 2 (Drosophila) protein-coding PHC2 polyhomeotic homolog 2 (Drosophila) O early development regulator 2 (homolog of polyhomeotic 2)|early development regulatory protein 2|polyhomeotic 2|polyhomeotic-like 2|polyhomeotic-like protein 2 20121230 -9606 1913 EEC1 - EEC HGNC:3186|MIM:129900 7 7q11.2-q21.3 ectrodactyly, ectodermal dysplasia and cleft lip/palate syndrome 1 unknown EEC1 ectrodactyly, ectodermal dysplasia and cleft lip/palate syndrome 1 O - 20110714 -9606 1914 EEC2 - - HGNC:3187 19 - ectrodactyly, ectodermal dysplasia and cleft lip/palate syndrome 2 unknown EEC2 ectrodactyly, ectodermal dysplasia and cleft lip/palate syndrome 2 O - 20110215 -9606 1915 EEF1A1 RP11-505P4.2 CCS-3|CCS3|EE1A1|EEF-1|EEF1A|EF-Tu|EF1A|GRAF-1EF|HNGC:16303|LENG7|PTI1|eEF1A-1 HGNC:3189|MIM:130590|Ensembl:ENSG00000156508|HPRD:00559|Vega:OTTHUMG00000015031 6 6q14.1 eukaryotic translation elongation factor 1 alpha 1 protein-coding EEF1A1 eukaryotic translation elongation factor 1 alpha 1 O CTCL tumor antigen|EF-1-alpha-1|EF1a-like protein|cervical cancer suppressor 3|elongation factor 1 alpha subunit|elongation factor 1-alpha 1|elongation factor Tu|eukaryotic elongation factor 1 A-1|eukaryotic translation elongation factor 1 alpha 1-like 14|glucocorticoid receptor AF-1 specific elongation factor|leukocyte receptor cluster (LRC) member 7|leukocyte receptor cluster member 7|prostate tumor-inducing protein 1|translation elongation factor 1 alpha 1-like 14 20121230 -9606 1917 EEF1A2 - EEF1AL|EF-1-alpha-2|EF1A|HS1|STN|STNL HGNC:3192|MIM:602959|Ensembl:ENSG00000101210|HPRD:04265|Vega:OTTHUMG00000033076 20 20q13.3 eukaryotic translation elongation factor 1 alpha 2 protein-coding EEF1A2 eukaryotic translation elongation factor 1 alpha 2 O eEF1A-2|elongation factor 1-alpha 2|elongation factor-1 alpha|eukaryotic elongation factor 1 A-2|statin S1|statin-S1 20121230 -9606 1918 EEF1A3 - - HGNC:3193 17 17p11.2 eukaryotic translation elongation factor 1 alpha 3 pseudo EEF1A3 eukaryotic translation elongation factor 1 alpha 3 O - 20121125 -9606 1932 EEF1B2P1 - EEF1B1|EF1B HGNC:3207 15 15q21.2 eukaryotic translation elongation factor 1 beta 2 pseudogene 1 pseudo EEF1B2P1 eukaryotic translation elongation factor 1 beta 2 pseudogene 1 O - 20121230 -9606 1933 EEF1B2 - EEF1B|EEF1B1|EF1B HGNC:3208|MIM:600655|Ensembl:ENSG00000114942|HPRD:02804|Vega:OTTHUMG00000132891 2 2q33.3 eukaryotic translation elongation factor 1 beta 2 protein-coding EEF1B2 eukaryotic translation elongation factor 1 beta 2 O EF-1-beta|elongation factor 1-beta|eukaryotic translation elongation factor 1 beta 1 20121230 -9606 1934 EEF1B2P2 - BETA-3|EEF-1|EEF-1BETA5A|EEF1B|EEF1B3 HGNC:3209 5 5q13.1 eukaryotic translation elongation factor 1 beta 2 pseudogene 2 pseudo EEF1B2P2 eukaryotic translation elongation factor 1 beta 2 pseudogene 2 O - 20121230 -9606 1936 EEF1D UNQ601 EF-1D|EF1D|FP1047 HGNC:3211|MIM:130592|Ensembl:ENSG00000104529|HPRD:00560|Vega:OTTHUMG00000165191 8 8q24.3 eukaryotic translation elongation factor 1 delta (guanine nucleotide exchange protein) protein-coding EEF1D eukaryotic translation elongation factor 1 delta (guanine nucleotide exchange protein) O EF-1-delta|antigen NY-CO-4|elongation factor 1-delta|guanine nucleotide exchange protein 20121230 -9606 1937 EEF1G PRO1608 EF1G|GIG35 HGNC:3213|MIM:130593|Ensembl:ENSG00000254772|HPRD:11745|Vega:OTTHUMG00000167567 11 11q12.3 eukaryotic translation elongation factor 1 gamma protein-coding EEF1G eukaryotic translation elongation factor 1 gamma O EF-1-gamma|PRO1608|eEF-1B gamma|elongation factor 1-gamma|pancreatic tumor-related protein|translation elongation factor eEF-1 gamma chain 20121230 -9606 1938 EEF2 - EEF-2|EF-2|EF2 HGNC:3214|MIM:130610|Ensembl:ENSG00000167658|HPRD:00561 19 19p13.3 eukaryotic translation elongation factor 2 protein-coding EEF2 eukaryotic translation elongation factor 2 O elongation factor 2|polypeptidyl-tRNA translocase 20121230 -9606 1939 EIF2D RP11-534L20.3 HCA56|LGTN HGNC:6583|MIM:613709|Ensembl:ENSG00000143486|HPRD:01057|Vega:OTTHUMG00000036344 1 1q32.1 eukaryotic translation initiation factor 2D protein-coding EIF2D eukaryotic translation initiation factor 2D O hepatocellular carcinoma-associated antigen 56|ligatin 20121230 -9606 1940 EEGV1 - EEGL HGNC:3215|MIM:130180 20 20q electro-encephalographic variant pattern 1 unknown EEGV1 electro-encephalographic variant pattern 1 O - 20110215 -9606 1942 EFNA1 - B61|ECKLG|EFL1|EPLG1|LERK-1|LERK1|TNFAIP4 HGNC:3221|MIM:191164|Ensembl:ENSG00000169242|HPRD:01858|Vega:OTTHUMG00000035312 1 1q21-q22 ephrin-A1 protein-coding EFNA1 ephrin-A1 O TNF alpha-induced protein 4|eph-related receptor tyrosine kinase ligand 1|immediate early response protein B61|ligand of eph-related kinase 1|tumor necrosis factor alpha-induced protein 4|tumor necrosis factor, alpha-induced protein 4 20121230 -9606 1943 EFNA2 - ELF-1|EPLG6|HEK7-L|LERK-6|LERK6 HGNC:3222|MIM:602756|Ensembl:ENSG00000099617|HPRD:04132|Vega:OTTHUMG00000180148 19 19p13.3 ephrin-A2 protein-coding EFNA2 ephrin-A2 O HEK7 ligand|eph-related receptor tyrosine kinase ligand 6 20121230 -9606 1944 EFNA3 - EFL2|EPLG3|Ehk1-L|LERK3 HGNC:3223|MIM:601381|Ensembl:ENSG00000143590|Ensembl:ENSG00000251246|HPRD:03225|Vega:OTTHUMG00000035313|Vega:OTTHUMG00000161134 1 1q21-q22 ephrin-A3 protein-coding EFNA3 ephrin-A3 O EFL-2|EHK1 ligand|LERK-3|eph-related receptor tyrosine kinase ligand 3|ligand of eph-related kinase 3 20121230 -9606 1945 EFNA4 - EFL4|EPLG4|LERK4 HGNC:3224|MIM:601380|Ensembl:ENSG00000243364|HPRD:03224|Vega:OTTHUMG00000035309 1 1q21-q22 ephrin-A4 protein-coding EFNA4 ephrin-A4 O LERK-4|eph-related receptor tyrosine kinase ligand 4|ligand of eph-related kinase 4 20121230 -9606 1946 EFNA5 - AF1|EFL5|EPLG7|GLC1M|LERK7|RAGS HGNC:3225|MIM:601535|Ensembl:ENSG00000184349|HPRD:03324|Vega:OTTHUMG00000128741 5 5q21 ephrin-A5 protein-coding EFNA5 ephrin-A5 O AL-1|LERK-7|eph-related receptor tyrosine kinase ligand 7 20121230 -9606 1947 EFNB1 RP3-496G1.1 CFND|CFNS|EFL3|EPLG2|Elk-L|LERK2 HGNC:3226|MIM:300035|Ensembl:ENSG00000090776|HPRD:02072|Vega:OTTHUMG00000021751 X Xq12 ephrin-B1 protein-coding EFNB1 ephrin-B1 O EFL-3|ELK ligand|LERK-2|eph-related receptor tyrosine kinase ligand 2|ligand of eph-related kinase 2 20121230 -9606 1948 EFNB2 RP11-272L14.1 EPLG5|HTKL|Htk-L|LERK5 HGNC:3227|MIM:600527|Ensembl:ENSG00000125266|HPRD:02754|Vega:OTTHUMG00000017324 13 13q33 ephrin-B2 protein-coding EFNB2 ephrin-B2 O HTK ligand|LERK-5|eph-related receptor tyrosine kinase ligand 5|ligand of eph-related kinase 5 20121230 -9606 1949 EFNB3 - EFL6|EPLG8|LERK8 HGNC:3228|MIM:602297|Ensembl:ENSG00000108947|HPRD:03804|Vega:OTTHUMG00000108161 17 17p13.1 ephrin-B3 protein-coding EFNB3 ephrin-B3 O EPH-related receptor transmembrane ligand ELK-L3|Ephrin B3|eph-related receptor tyrosine kinase ligand 8 20121230 -9606 1950 EGF - HOMG4|URG HGNC:3229|MIM:131530|Ensembl:ENSG00000138798|HPRD:00578|Vega:OTTHUMG00000132044 4 4q25 epidermal growth factor protein-coding EGF epidermal growth factor O beta-urogastrone|pro-epidermal growth factor 20121230 -9606 1951 CELSR3 - CDHF11|EGFL1|FMI1|HFMI1|MEGF2|RESDA1 HGNC:3230|MIM:604264|Ensembl:ENSG00000008300|HPRD:09179|Vega:OTTHUMG00000133544 3 3p21.31 cadherin, EGF LAG seven-pass G-type receptor 3 (flamingo homolog, Drosophila) protein-coding CELSR3 cadherin, EGF LAG seven-pass G-type receptor 3 (flamingo homolog, Drosophila) O EGF-like protein 1|EGF-like-domain, multiple 1|anchor protein|cadherin EGF LAG seven-pass G-type receptor 3|cadherin family member 11|epidermal growth factor-like 1|epidermal growth factor-like protein 1|flamingo homolog 1|multiple EGF-like domains 2|multiple EGF-like domains protein 2|multiple epidermal growth factor-like domains protein 2 20121230 -9606 1952 CELSR2 - CDHF10|EGFL2|Flamingo1|MEGF3 HGNC:3231|MIM:604265|Ensembl:ENSG00000143126|HPRD:05040|Vega:OTTHUMG00000012003 1 1p21 cadherin, EGF LAG seven-pass G-type receptor 2 (flamingo homolog, Drosophila) protein-coding CELSR2 cadherin, EGF LAG seven-pass G-type receptor 2 (flamingo homolog, Drosophila) O EGF-like protein 2|EGF-like-domain, multiple 2|cadherin EGF LAG seven-pass G-type receptor 2|cadherin family member 10|epidermal growth factor-like 2|epidermal growth factor-like protein 2|flamingo homolog 3|multiple EGF-like domains protein 3|multiple epidermal growth factor-like domains 3|multiple epidermal growth factor-like domains protein 3 20121230 -9606 1953 MEGF6 - EGFL3 HGNC:3232|MIM:604266|Ensembl:ENSG00000162591|HPRD:11973|Vega:OTTHUMG00000000611 1 1p36.3 multiple EGF-like-domains 6 protein-coding MEGF6 multiple EGF-like-domains 6 O EGF-like protein 3|EGF-like-domain, multiple 3|epidermal growth factor-like protein 3|multiple EGF-like domains protein 6|multiple epidermal growth factor-like domains protein 6 20121230 -9606 1954 MEGF8 - C19orf49|EGFL4|SBP1 HGNC:3233|MIM:604267|Ensembl:ENSG00000105429|HPRD:10370|Vega:OTTHUMG00000150342 19 19q12 multiple EGF-like-domains 8 protein-coding MEGF8 multiple EGF-like-domains 8 O EGF-like domain-containing protein 4|EGF-like-domain, multiple 4|HBV pre-s2 binding protein 1|epidermal growth factor-like protein 4|multiple epidermal growth factor-like domains protein 8 20121230 -9606 1955 MEGF9 UNQ671/PRO1305 EGFL5 HGNC:3234|MIM:604268|Ensembl:ENSG00000106780|Vega:OTTHUMG00000021039 9 9q32-q33.3 multiple EGF-like-domains 9 protein-coding MEGF9 multiple EGF-like-domains 9 O EGF-like-domain, multiple 5|epidermal growth factor-like protein 5|multiple epidermal growth factor-like domains protein 9 20121230 -9606 1956 EGFR - ERBB|ERBB1|HER1|PIG61|mENA HGNC:3236|MIM:131550|Ensembl:ENSG00000146648|HPRD:00579|Vega:OTTHUMG00000023661 7 7p12 epidermal growth factor receptor protein-coding EGFR epidermal growth factor receptor O avian erythroblastic leukemia viral (v-erb-b) oncogene homolog|cell growth inhibiting protein 40|cell proliferation-inducing protein 61|proto-oncogene c-ErbB-1|receptor tyrosine-protein kinase erbB-1 20121230 -9606 1957 EGI - EIG|EIG1 HGNC:3237|MIM:600669 8 8q24 epilepsy, generalized, idiopathic unknown EGI epilepsy, generalized, idiopathic O - 20120622 -9606 1958 EGR1 - AT225|G0S30|KROX-24|NGFI-A|TIS8|ZIF-268|ZNF225 HGNC:3238|MIM:128990|Ensembl:ENSG00000120738|HPRD:00549|Vega:OTTHUMG00000129197 5 5q31.1 early growth response 1 protein-coding EGR1 early growth response 1 O EGR-1|early growth response protein 1|nerve growth factor-induced protein A|transcription factor ETR103|transcription factor Zif268|zinc finger protein 225|zinc finger protein Krox-24 20121230 -9606 1959 EGR2 - AT591|CMT1D|CMT4E|KROX20 HGNC:3239|MIM:129010|Ensembl:ENSG00000122877|HPRD:00551|Vega:OTTHUMG00000018308 10 10q21.1 early growth response 2 protein-coding EGR2 early growth response 2 O E3 SUMO-protein ligase EGR2|KROX-20, Drosophila, homolog (early growth response-2)|early growth response protein 2|zinc finger protein Krox-20 20121230 -9606 1960 EGR3 - EGR-3|PILOT HGNC:3240|MIM:602419|Ensembl:ENSG00000179388|HPRD:03881|Vega:OTTHUMG00000097825 8 8p23-p21 early growth response 3 protein-coding EGR3 early growth response 3 O early growth response protein 3|zinc finger protein pilot 20121230 -9606 1961 EGR4 - NGFI-C|NGFIC|PAT133 HGNC:3241|MIM:128992|Ensembl:ENSG00000135625|HPRD:00550|Vega:OTTHUMG00000129774 2 2p13 early growth response 4 protein-coding EGR4 early growth response 4 O AT133|EGR-4|early growth response protein 4 20121230 -9606 1962 EHHADH - ECHD|L-PBE|LBFP|LBP|PBFE HGNC:3247|MIM:607037|Ensembl:ENSG00000113790|HPRD:06125|Vega:OTTHUMG00000156698 3 3q26.3-q28 enoyl-CoA, hydratase/3-hydroxyacyl CoA dehydrogenase protein-coding EHHADH enoyl-CoA, hydratase/3-hydroxyacyl CoA dehydrogenase O 3,2-trans-enoyl-CoA isomerase|L-3-hydroxyacyl-CoA dehydrogenase|L-bifunctional protein, peroxisomal|PBE|enoyl-Coenzyme A, hydratase/3-hydroxyacyl Coenzyme A dehydrogenase|peroxisomal bifunctional enzyme|peroxisomal enoyl-CoA hydratase 20121230 -9606 1964 EIF1AX RP11-393H10.1 EIF1A|EIF1AP1|EIF4C|eIF-1A|eIF-4C HGNC:3250|MIM:300186|Ensembl:ENSG00000173674|HPRD:02174|Vega:OTTHUMG00000022704 X Xp22.12 eukaryotic translation initiation factor 1A, X-linked protein-coding EIF1AX eukaryotic translation initiation factor 1A, X-linked O Putative eukaryotic translation initiation factor 1A|eIF-1A X isoform|eukaryotic translation initiation factor 1A, X chromosome|eukaryotic translation initiation factor 1A, X-chromosomal|eukaryotic translation initiation factor 4C 20121230 -9606 1965 EIF2S1 - EIF-2|EIF-2A|EIF-2alpha|EIF2|EIF2A HGNC:3265|MIM:603907|Ensembl:ENSG00000134001|HPRD:04881|Vega:OTTHUMG00000029800 14 14q23.3 eukaryotic translation initiation factor 2, subunit 1 alpha, 35kDa protein-coding EIF2S1 eukaryotic translation initiation factor 2, subunit 1 alpha, 35kDa O eIF-2-alpha|eukaryotic translation initiation factor 2 subunit 1|eukaryotic translation initiation factor 2 subunit alpha 20121230 -9606 1967 EIF2B1 - EIF2B|EIF2BA HGNC:3257|MIM:606686|Ensembl:ENSG00000111361|HPRD:09458|Vega:OTTHUMG00000168696 12 12q24.31 eukaryotic translation initiation factor 2B, subunit 1 alpha, 26kDa protein-coding EIF2B1 eukaryotic translation initiation factor 2B, subunit 1 alpha, 26kDa O eIF-2B GDP-GTP exchange factor subunit alpha|translation initiation factor eIF-2B subunit alpha 20121230 -9606 1968 EIF2S3 - EIF2|EIF2G|EIF2gamma|eIF-2gA HGNC:3267|MIM:300161|Ensembl:ENSG00000130741|HPRD:02155|Vega:OTTHUMG00000021262 X Xp22.2-p22.1 eukaryotic translation initiation factor 2, subunit 3 gamma, 52kDa protein-coding EIF2S3 eukaryotic translation initiation factor 2, subunit 3 gamma, 52kDa O eIF-2-gamma X|eIF-2gX|eukaryotic translation initiation factor 2 subunit 3|eukaryotic translation initiation factor 2 subunit gamma X|eukaryotic translation initiation factor 2G 20121230 -9606 1969 EPHA2 - ARCC2|CTPA|CTPP1|ECK HGNC:3386|MIM:176946|Ensembl:ENSG00000142627|HPRD:01494|Vega:OTTHUMG00000009527 1 1p36 EPH receptor A2 protein-coding EPHA2 EPH receptor A2 O ephrin type-A receptor 2|epithelial cell receptor protein tyrosine kinase|soluble EPHA2 variant 1|tyrosine-protein kinase receptor ECK 20121230 -9606 1973 EIF4A1 - DDX2A|EIF-4A|EIF4A|eIF-4A-I|eIF4A-I HGNC:3282|MIM:602641|Ensembl:ENSG00000161960|HPRD:04030|Vega:OTTHUMG00000108149 17 17p13 eukaryotic translation initiation factor 4A1 protein-coding EIF4A1 eukaryotic translation initiation factor 4A1 O ATP-dependent RNA helicase eIF4A-1|eukaryotic initiation factor 4A-I|eukaryotic initiation factor 4AI|eukaryotic translation initiation factor 4A 20121230 -9606 1974 EIF4A2 - BM-010|DDX2B|EIF4A|EIF4F|eIF-4A-II|eIF4A-II HGNC:3284|MIM:601102|Ensembl:ENSG00000156976|HPRD:03062|Vega:OTTHUMG00000156564 3 3q28 eukaryotic translation initiation factor 4A2 protein-coding EIF4A2 eukaryotic translation initiation factor 4A2 O ATP-dependent RNA helicase eIF4A-2|eukaryotic initiation factor 4A-II|eukaryotic translation initiation factor 4A 20121230 -9606 1975 EIF4B - EIF-4B|PRO1843 HGNC:3285|MIM:603928|Ensembl:ENSG00000063046|HPRD:04892|Vega:OTTHUMG00000169570 12 12q13.13 eukaryotic translation initiation factor 4B protein-coding EIF4B eukaryotic translation initiation factor 4B O - 20121230 -9606 1977 EIF4E - CBP|EIF4E1|EIF4EL1|EIF4F HGNC:3287|MIM:133440|Ensembl:ENSG00000151247|HPRD:00591|Vega:OTTHUMG00000161090 4 4q21-q25 eukaryotic translation initiation factor 4E protein-coding EIF4E eukaryotic translation initiation factor 4E O eIF-4E|eIF-4F 25 kDa subunit|eukaryotic translation initiation factor 4E-like 1|mRNA cap-binding protein 20121230 -9606 1978 EIF4EBP1 - 4E-BP1|4EBP1|BP-1|PHAS-I HGNC:3288|MIM:602223|Ensembl:ENSG00000187840|HPRD:03746|Vega:OTTHUMG00000164012 8 8p12 eukaryotic translation initiation factor 4E binding protein 1 protein-coding EIF4EBP1 eukaryotic translation initiation factor 4E binding protein 1 O eIF4E-binding protein 1|eukaryotic translation initiation factor 4E-binding protein 1|phosphorylated heat- and acid-stable protein regulated by insulin 1 20121230 -9606 1979 EIF4EBP2 - 4EBP2|PHASII HGNC:3289|MIM:602224|Ensembl:ENSG00000148730|HPRD:03747|Vega:OTTHUMG00000018409 10 10q21-q22 eukaryotic translation initiation factor 4E binding protein 2 protein-coding EIF4EBP2 eukaryotic translation initiation factor 4E binding protein 2 O 4E-BP2|eIF4E-binding protein 2|eukaryotic translation initiation factor 4E-binding protein 2|phosphorylated, heat and acid stable regulated by insulin protein II 20121230 -9606 1980 EIF4EP1 - EIF4EL2|dJ1022P6.3 HGNC:3292 20 20p13 eukaryotic translation initiation factor 4E pseudogene 1 pseudo EIF4EP1 eukaryotic translation initiation factor 4E pseudogene 1 O - 20121230 -9606 1981 EIF4G1 - EIF-4G1|EIF4F|EIF4G|EIF4GI|P220|PARK18 HGNC:3296|MIM:600495|Ensembl:ENSG00000114867|HPRD:06774|Vega:OTTHUMG00000156784 3 3q27-qter eukaryotic translation initiation factor 4 gamma, 1 protein-coding EIF4G1 eukaryotic translation initiation factor 4 gamma, 1 O EIF4-gamma|eIF-4-gamma 1|eucaryotic translation initiation factor 4G|eukaryotic translation initiation factor 4 gamma 1 20121230 -9606 1982 EIF4G2 OK/SW-cl.75 AAG1|DAP5|NAT1|P97 HGNC:3297|MIM:602325|Ensembl:ENSG00000110321|HPRD:09084|Vega:OTTHUMG00000165823 11 11p15 eukaryotic translation initiation factor 4 gamma, 2 protein-coding EIF4G2 eukaryotic translation initiation factor 4 gamma, 2 O DAP-5|aging-associated protein 1|death-associated protein 5|eIF-4-gamma 2|eIF-4G 2|eIF4G 2|eukaryotic translation initiation factor 4 gamma 2|eukaryotic translation initiation factor 4G-like 1 20121230 -9606 1983 EIF5 - EIF-5|EIF-5A HGNC:3299|MIM:601710|Ensembl:ENSG00000100664|HPRD:03417|Vega:OTTHUMG00000171839 14 14q32.32 eukaryotic translation initiation factor 5 protein-coding EIF5 eukaryotic translation initiation factor 5 O - 20121230 -9606 1984 EIF5A - EIF-5A|EIF5A1|eIF5AI HGNC:3300|MIM:600187|Ensembl:ENSG00000132507|HPRD:02555|Vega:OTTHUMG00000102197 17 17p13-p12 eukaryotic translation initiation factor 5A protein-coding EIF5A eukaryotic translation initiation factor 5A O eIF-4D|eIF-5A-1|eIF-5A1|eukaryotic initiation factor 5A|eukaryotic translation initiation factor 5A-1|rev-binding factor 20121230 -9606 1986 EIF5AP2 - - HGNC:3303 17 17q25.3 eukaryotic translation initiation factor 5A pseudogene 2 pseudo EIF5AP2 eukaryotic translation initiation factor 5A pseudogene 2 O - 20121230 -9606 1987 EIF5AP3 - - HGNC:3304 19 19q13.2 eukaryotic translation initiation factor 5A pseudogene 3 pseudo EIF5AP3 eukaryotic translation initiation factor 5A pseudogene 3 O - 20121230 -9606 1990 CELA1 - ELA1 HGNC:3308|MIM:130120|Ensembl:ENSG00000139610|HPRD:00553|Vega:OTTHUMG00000167523 12 12q13 chymotrypsin-like elastase family, member 1 protein-coding CELA1 chymotrypsin-like elastase family, member 1 O chymotrypsin-like elastase family member 1|elastase 1, pancreatic|elastase-1|pancreatic elastase 1 20121230 -9606 1991 ELANE - ELA2|GE|HLE|HNE|NE|PMN-E|SCN1 HGNC:3309|MIM:130130|Ensembl:ENSG00000197561|HPRD:00554|Vega:OTTHUMG00000181839 19 19p13.3 elastase, neutrophil expressed protein-coding ELANE elastase, neutrophil expressed O PMN elastase|bone marrow serine protease|elastase 2, neutrophil|elastase-2|granulocyte-derived elastase|human leukocyte elastase|leukocyte elastase|medullasin|neutrophil elastase|polymorphonuclear elastase 20121230 -9606 1992 SERPINB1 - EI|ELANH2|LEI|M/NEI|MNEI|PI-2|PI2 HGNC:3311|MIM:130135|Ensembl:ENSG00000021355|HPRD:00555|Vega:OTTHUMG00000014124 6 6p25 serpin peptidase inhibitor, clade B (ovalbumin), member 1 protein-coding SERPINB1 serpin peptidase inhibitor, clade B (ovalbumin), member 1 O leukocyte elastase inhibitor|peptidase inhibitor 2|protease inhibitor 2 (anti-elastase), monocyte/neutrophil derived|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 1 20121230 -9606 1993 ELAVL2 RP11-315I14.4 HEL-N1|HELN1|HUB HGNC:3313|MIM:601673|Ensembl:ENSG00000107105|HPRD:03396|Vega:OTTHUMG00000019700 9 9p21 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 2 (Hu antigen B) protein-coding ELAVL2 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 2 (Hu antigen B) O ELAV-like neuronal protein 1|ELAV-like protein 2|hu-antigen B|nervous system-specific RNA-binding protein Hel-N1 20121230 -9606 1994 ELAVL1 - ELAV1|HUR|Hua|MelG HGNC:3312|MIM:603466|Ensembl:ENSG00000066044|HPRD:16025 19 19p13.2 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 1 (Hu antigen R) protein-coding ELAVL1 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 1 (Hu antigen R) O ELAV-like protein 1|Hu antigen R|embryonic lethal, abnormal vision, drosophila, homolog-like 1|hu-antigen R 20121230 -9606 1995 ELAVL3 - HUC|HUCL|PLE21 HGNC:3314|MIM:603458|Ensembl:ENSG00000196361|HPRD:16024|Vega:OTTHUMG00000182030 19 19p13.2 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 3 (Hu antigen C) protein-coding ELAVL3 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 3 (Hu antigen C) O ELAV-like protein 3|Hu antigen C|hu-antigen C|paraneoplastic cerebellar degeneration-associated antigen|paraneoplastic limbic encephalitis antigen 21 20121230 -9606 1996 ELAVL4 - HUD|PNEM HGNC:3315|MIM:168360|Ensembl:ENSG00000162374|HPRD:01343|Vega:OTTHUMG00000007877 1 1p34 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 4 protein-coding ELAVL4 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 4 O ELAV (embryonic lethal, abnormal vision, Drosophila)-like 4 (Hu antigen D)|ELAV-like protein 4|Embryonic lethal, abnormal vision, Drosophila, homolog of, like-4|Hu antigen D|hu-antigen D|paraneoplastic encephalomyelitis antigen HuD 20121230 -9606 1997 ELF1 RP11-2P5.1 - HGNC:3316|MIM:189973|Ensembl:ENSG00000120690|HPRD:01808|Vega:OTTHUMG00000016783 13 13q13 E74-like factor 1 (ets domain transcription factor) protein-coding ELF1 E74-like factor 1 (ets domain transcription factor) O ETS-related transcription factor Elf-1 20121230 -9606 1998 ELF2 - EU32|NERF|NERF-1A|NERF-1B|NERF-1a,b|NERF-2 HGNC:3317|Ensembl:ENSG00000109381|HPRD:16856|Vega:OTTHUMG00000133383 4 4q28 E74-like factor 2 (ets domain transcription factor) protein-coding ELF2 E74-like factor 2 (ets domain transcription factor) O ETS-related transcription factor Elf-2|ets family transcription factor ELF2C|new Ets-related factor 20121230 -9606 1999 ELF3 RP11-510N19.1 EPR-1|ERT|ESE-1|ESX HGNC:3318|MIM:602191|Ensembl:ENSG00000163435|HPRD:03722|Vega:OTTHUMG00000035867 1 1q32.2 E74-like factor 3 (ets domain transcription factor, epithelial-specific ) protein-coding ELF3 E74-like factor 3 (ets domain transcription factor, epithelial-specific ) O E74-like factor 3 (ETS domain transcription factor, serine box, epithelial-specific)|E74-like factor 3 (ets domain transcription factor)|ETS-related transcription factor Elf-3|epithelial-restricted with serine box|epithelium-restricted Ets protein ESX|epithelium-specific Ets transcription factor 1|ets domain transcription factor, serine box (epithelial-specific) 20121230 -9606 2000 ELF4 RP3-510O21.2 ELFR|MEF HGNC:3319|MIM:300775|Ensembl:ENSG00000102034|HPRD:06499|Vega:OTTHUMG00000022390 X Xq26 E74-like factor 4 (ets domain transcription factor) protein-coding ELF4 E74-like factor 4 (ets domain transcription factor) O ETS-related transcription factor Elf-4|myeloid Elf-1-like factor 20121230 -9606 2001 ELF5 - ESE2 HGNC:3320|MIM:605169|Ensembl:ENSG00000135374|HPRD:05525|Vega:OTTHUMG00000166451 11 11p13-p12 E74-like factor 5 (ets domain transcription factor) protein-coding ELF5 E74-like factor 5 (ets domain transcription factor) O ETS-related transcription factor Elf-5|epithelium-restricted ESE-1-related Ets factor|epithelium-specific Ets transcription factor 2 20121230 -9606 2002 ELK1 - - HGNC:3321|MIM:311040|Ensembl:ENSG00000126767|HPRD:02407|Vega:OTTHUMG00000021452 X Xp11.2 ELK1, member of ETS oncogene family protein-coding ELK1 ELK1, member of ETS oncogene family O ETS domain-containing protein Elk-1|ETS-like gene 1|tyrosine kinase (ELK1) oncogene 20121230 -9606 2003 ELK2AP - ELK2|ELK2.1|ELK2P1 HGNC:3323 14 14q32.3 ELK2A, member of ETS oncogene family, pseudogene pseudo ELK2AP ELK2A, member of ETS oncogene family, pseudogene O - 20121230 -9606 2004 ELK3 - ERP|NET|SAP2 HGNC:3325|MIM:600247|Ensembl:ENSG00000111145|HPRD:02593|Vega:OTTHUMG00000170364 12 12q23 ELK3, ETS-domain protein (SRF accessory protein 2) protein-coding ELK3 ELK3, ETS-domain protein (SRF accessory protein 2) O ETS domain-containing protein Elk-3|ETS-domain protein|ETS-related protein ERP|ETS-related protein NET|SAP-2|SRF accessory protein 2|serum response factor accessory protein 2 20121230 -9606 2005 ELK4 - SAP1 HGNC:3326|MIM:600246|Ensembl:ENSG00000158711|HPRD:02592|Vega:OTTHUMG00000037221 1 1q32 ELK4, ETS-domain protein (SRF accessory protein 1) protein-coding ELK4 ELK4, ETS-domain protein (SRF accessory protein 1) O ETS domain-containing protein Elk-4|SAP-1|serum response factor accessory protein 1 20121230 -9606 2006 ELN - SVAS|WBS|WS HGNC:3327|MIM:130160|Ensembl:ENSG00000049540|HPRD:00556|Vega:OTTHUMG00000150229 7 7q11.23 elastin protein-coding ELN elastin O tropoelastin 20121230 -9606 2009 EML1 - ELP79|EMAP|EMAPL|HuEMAP HGNC:3330|MIM:602033|Ensembl:ENSG00000066629|HPRD:03613|Vega:OTTHUMG00000171529 14 14q32 echinoderm microtubule associated protein like 1 protein-coding EML1 echinoderm microtubule associated protein like 1 O EMAP-1|echinoderm microtubule-associated protein-like 1|huEMAP-1 20121230 -9606 2010 EMD XX-FW88778H2.1 EDMD|LEMD5|STA HGNC:3331|MIM:300384|Ensembl:ENSG00000102119|HPRD:02309|Vega:OTTHUMG00000033186 X Xq28 emerin protein-coding EMD emerin O LEM domain containing 5 20121230 -9606 2011 MARK2 - EMK-1|EMK1|PAR-1|Par-1b|Par1b HGNC:3332|MIM:600526|Ensembl:ENSG00000072518|HPRD:02753|Vega:OTTHUMG00000160504 11 11q13.1 MAP/microtubule affinity-regulating kinase 2 protein-coding MARK2 MAP/microtubule affinity-regulating kinase 2 O ELKL motif kinase 1|PAR1 homolog b|Ser/Thr protein kinase PAR-1B|serine/threonine protein kinase EMK|serine/threonine-protein kinase MARK2 20121230 -9606 2012 EMP1 - CL-20|EMP-1|TMP HGNC:3333|MIM:602333|Ensembl:ENSG00000134531|HPRD:11892|Vega:OTTHUMG00000168775 12 12p12.3 epithelial membrane protein 1 protein-coding EMP1 epithelial membrane protein 1 O tumor-associated membrane protein 20121230 -9606 2013 EMP2 - XMP HGNC:3334|MIM:602334|Ensembl:ENSG00000213853|HPRD:11893|Vega:OTTHUMG00000129752 16 16p13.2 epithelial membrane protein 2 protein-coding EMP2 epithelial membrane protein 2 O EMP-2 20121230 -9606 2014 EMP3 - YMP HGNC:3335|MIM:602335|Ensembl:ENSG00000142227|HPRD:18514 19 19q13.3 epithelial membrane protein 3 protein-coding EMP3 epithelial membrane protein 3 O EMP-3|HNMP-1|hematopoietic neural membrane protein 1 20121230 -9606 2015 EMR1 - TM7LN3 HGNC:3336|MIM:600493|Ensembl:ENSG00000174837|HPRD:02733 19 19p13.3 egf-like module containing, mucin-like, hormone receptor-like 1 protein-coding EMR1 egf-like module containing, mucin-like, hormone receptor-like 1 O EGF-like module receptor 1|EGF-like module-containing mucin-like hormone receptor-like 1|EMR1 hormone receptor|egf-like module containing, mucin-like, hormone receptor-like sequence 1 20121230 -9606 2016 EMX1 - - HGNC:3340|MIM:600034|Ensembl:ENSG00000135638|HPRD:08963|Vega:OTTHUMG00000129778 2 2p13.2 empty spiracles homeobox 1 protein-coding EMX1 empty spiracles homeobox 1 O empty spiracles homolog 1|empty spiracles-like protein 1|homeobox protein EMX1 20121230 -9606 2017 CTTN - EMS1 HGNC:3338|MIM:164765|Ensembl:ENSG00000085733|HPRD:01268|Vega:OTTHUMG00000134307 11 11q13 cortactin protein-coding CTTN cortactin O 1110020L01Rik|amplaxin|ems1 sequence (mammary tumor and squamous cell carcinoma-associated (p80/85 src substrate)|oncogene EMS1|src substrate cortactin 20121230 -9606 2018 EMX2 - - HGNC:3341|MIM:600035|Ensembl:ENSG00000170370|HPRD:02495|Vega:OTTHUMG00000019123 10 10q26.1 empty spiracles homeobox 2 protein-coding EMX2 empty spiracles homeobox 2 O empty spiracles homolog 2|empty spiracles-like protein 2|homeobox protein EMX2 20121230 -9606 2019 EN1 - - HGNC:3342|MIM:131290|Ensembl:ENSG00000163064|HPRD:08835|Vega:OTTHUMG00000131401 2 2q14.2 engrailed homeobox 1 protein-coding EN1 engrailed homeobox 1 O engrailed homolog 1|homeobox protein en-1|homeobox protein engrailed-1|hu-En-1 20121230 -9606 2020 EN2 tcag7.568 - HGNC:3343|MIM:131310|Ensembl:ENSG00000164778|HPRD:08836|Vega:OTTHUMG00000151354 7 7q36 engrailed homeobox 2 protein-coding EN2 engrailed homeobox 2 O engrailed homolog 2|engrailed-2|homeobox protein en-2|homeobox protein engrailed-2|hu-En-2 20121230 -9606 2021 ENDOG - - HGNC:3346|MIM:600440|Ensembl:ENSG00000167136|HPRD:02704|Vega:OTTHUMG00000020763 9 9q34.1 endonuclease G protein-coding ENDOG endonuclease G O endo G|endonuclease G, mitochondrial|mitochondrial endonuclease G 20121230 -9606 2022 ENG RP11-228B15.2 CD105|END|HHT1|ORW|ORW1 HGNC:3349|MIM:131195|Ensembl:ENSG00000106991|HPRD:00565|Vega:OTTHUMG00000020723 9 9q34.11 endoglin protein-coding ENG endoglin O CD105 antigen 20121230 -9606 2023 ENO1 - ENO1L1|MPB1|NNE|PPH HGNC:3350|MIM:172430|Ensembl:ENSG00000074800|HPRD:01400|Vega:OTTHUMG00000001773 1 1p36.2 enolase 1, (alpha) protein-coding ENO1 enolase 1, (alpha) O 2-phospho-D-glycerate hydro-lyase|MYC promoter-binding protein 1|alpha enolase like 1|alpha-enolase|enolase-alpha|non-neural enolase|phosphopyruvate hydratase|plasminogen-binding protein|tau-crystallin 20121230 -9606 2025 ENO1P1 - ENO1P HGNC:3352 1 1q43 enolase 1, (alpha) pseudogene 1 pseudo ENO1P1 enolase 1, (alpha) pseudogene 1 O - 20121230 -9606 2026 ENO2 - NSE HGNC:3353|MIM:131360|Ensembl:ENSG00000111674|HPRD:00573|Vega:OTTHUMG00000168967 12 12p13 enolase 2 (gamma, neuronal) protein-coding ENO2 enolase 2 (gamma, neuronal) O 2-phospho-D-glycerate hydro-lyase|2-phospho-D-glycerate hydrolyase|gamma-enolase|neural enolase|neuron specific gamma enolase|neuron-specific enolase|neurone-specific enolase 20121230 -9606 2027 ENO3 - GSD13|MSE HGNC:3354|MIM:131370|Ensembl:ENSG00000108515|HPRD:11746|Vega:OTTHUMG00000099394 17 17pter-p11 enolase 3 (beta, muscle) protein-coding ENO3 enolase 3 (beta, muscle) O 2-phospho-D-glycerate hydrolyase|beta-enolase|muscle-specific enolase|skeletal muscle enolase 20121230 -9606 2028 ENPEP - APA|CD249|gp160 HGNC:3355|MIM:138297|Ensembl:ENSG00000138792|HPRD:08848|Vega:OTTHUMG00000132546 4 4q25 glutamyl aminopeptidase (aminopeptidase A) protein-coding ENPEP glutamyl aminopeptidase (aminopeptidase A) O AP-A|EAP|aminopeptidase A|differentiation antigen gp160|glutamyl aminopeptidase 20121230 -9606 2029 ENSA RP11-54A4.10-004 ARPP-19e HGNC:3360|MIM:603061|Ensembl:ENSG00000143420|HPRD:11927|Vega:OTTHUMG00000035004 1 1q21.3 endosulfine alpha protein-coding ENSA endosulfine alpha O alpha-endosulfine 20121230 -9606 2030 SLC29A1 - ENT1 HGNC:11003|MIM:602193|Ensembl:ENSG00000112759|HPRD:03724|Vega:OTTHUMG00000014759 6 6p21.1 solute carrier family 29 (nucleoside transporters), member 1 protein-coding SLC29A1 solute carrier family 29 (nucleoside transporters), member 1 O equilibrative NBMPR-sensitive nucleoside transporter|equilibrative nitrobenzylmercaptopurine riboside (NBMPR)-sensitive nucleoside transporter|equilibrative nitrobenzylmercaptopurine riboside-sensitive nucleoside transporter|equilibrative nucleoside transporter 1|nucleoside transporter, es-type|solute carrier family 29 member 1|solute carrier family 29, member 1 20121230 -9606 2031 ENUR1 - - HGNC:3369|MIM:600631 13 13q13-q14.3 enuresis, nocturnal 1 unknown ENUR1 enuresis, nocturnal 1 O - 20120622 -9606 2032 ENUR2 - - HGNC:3370|MIM:600808 12 12q13-q21 enuresis, nocturnal 2 unknown ENUR2 enuresis, nocturnal 2 O - 20120622 -9606 2033 EP300 RP1-85F18.1 KAT3B|RSTS2|p300 HGNC:3373|MIM:602700|Ensembl:ENSG00000100393|HPRD:04078|Vega:OTTHUMG00000150937 22 22q13.2 E1A binding protein p300 protein-coding EP300 E1A binding protein p300 O E1A-associated protein p300|E1A-binding protein, 300kD|histone acetyltransferase p300|p300 HAT 20121230 -9606 2034 EPAS1 - ECYT4|HIF2A|HLF|MOP2|PASD2|bHLHe73 HGNC:3374|MIM:603349|Ensembl:ENSG00000116016|HPRD:06787|Vega:OTTHUMG00000128818 2 2p21-p16 endothelial PAS domain protein 1 protein-coding EPAS1 endothelial PAS domain protein 1 O EPAS-1|HIF-1-alpha-like factor|HIF-1alpha-like factor|HIF-2-alpha|HIF2-alpha|PAS domain-containing protein 2|basic-helix-loop-helix-PAS protein MOP2|class E basic helix-loop-helix protein 73|endothelial PAS domain-containing protein 1|hypoxia-inducible factor 2 alpha|hypoxia-inducible factor 2-alpha|member of PAS protein 2 20121230 -9606 2035 EPB41 RP11-242O24.1 4.1R|EL1|HE HGNC:3377|MIM:130500|Ensembl:ENSG00000159023|HPRD:00558|Vega:OTTHUMG00000003644 1 1p33-p32 erythrocyte membrane protein band 4.1 (elliptocytosis 1, RH-linked) protein-coding EPB41 erythrocyte membrane protein band 4.1 (elliptocytosis 1, RH-linked) O EPB4.1|P4.1|band 4.1|erythrocyte surface protein band 4.1|protein 4.1 20121230 -9606 2036 EPB41L1 RP11-234K24.1 4.1N|MRD11 HGNC:3378|MIM:602879|Ensembl:ENSG00000088367|HPRD:04193|Vega:OTTHUMG00000032378 20 20q11.2-q12 erythrocyte membrane protein band 4.1-like 1 protein-coding EPB41L1 erythrocyte membrane protein band 4.1-like 1 O band 4.1-like protein 1|neuron-type nonerythroid protein 4.1|neuronal protein 4.1 20121230 -9606 2037 EPB41L2 RP3-324N14.1 4.1-G|4.1G HGNC:3379|MIM:603237|Ensembl:ENSG00000079819|HPRD:09126|Vega:OTTHUMG00000015560 6 6q23 erythrocyte membrane protein band 4.1-like 2 protein-coding EPB41L2 erythrocyte membrane protein band 4.1-like 2 O band 4.1-like protein 2|erythrocyte membrane protein band 4.1 like-protein 2|generally expressed protein 4.1 20121230 -9606 2038 EPB42 - PA|SPH5 HGNC:3381|MIM:177070|Ensembl:ENSG00000166947|HPRD:01517|Vega:OTTHUMG00000130701 15 15q15-q21 erythrocyte membrane protein band 4.2 protein-coding EPB42 erythrocyte membrane protein band 4.2 O P4.2|erythrocyte protein 4.2|erythrocyte surface protein band 4.2 20121230 -9606 2039 EPB49 - DMT HGNC:3382|MIM:125305|Ensembl:ENSG00000158856|HPRD:00506|Vega:OTTHUMG00000097087 8 8p21.1 erythrocyte membrane protein band 4.9 (dematin) protein-coding EPB49 erythrocyte membrane protein band 4.9 (dematin) O dematin 20121230 -9606 2040 STOM RP11-342H3.1 BND7|EPB7|EPB72 HGNC:3383|MIM:133090|Ensembl:ENSG00000148175|HPRD:00585|Vega:OTTHUMG00000020590 9 9q34.1 stomatin protein-coding STOM stomatin O erythrocyte band 7 integral membrane protein|erythrocyte membrane protein band 7.2 (stomatin)|erythrocyte surface protein band 7.2|protein 7.2b 20121230 -9606 2041 EPHA1 - EPH|EPHT|EPHT1 HGNC:3385|MIM:179610|Ensembl:ENSG00000146904|HPRD:01554|Vega:OTTHUMG00000155894 7 7q34 EPH receptor A1 protein-coding EPHA1 EPH receptor A1 O eph tyrosine kinase 1|ephrin type-A receptor 1|erythropoietin-producing hepatoma amplified sequence|erythropoietin-producing hepatoma receptor|hEpha1|oncogene EPH|soluble EPHA1 variant 1|soluble EPHA1 variant 2|tyrosine-protein kinase receptor EPH 20121230 -9606 2042 EPHA3 - EK4|ETK|ETK1|HEK|HEK4|TYRO4 HGNC:3387|MIM:179611|Ensembl:ENSG00000044524|HPRD:01555|Vega:OTTHUMG00000159040 3 3p11.2 EPH receptor A3 protein-coding EPHA3 EPH receptor A3 O EPH-like kinase 4|TYRO4 protein tyrosine kinase|eph-like tyrosine kinase 1|ephrin type-A receptor 3|human embryo kinase 1|tyrosine-protein kinase receptor ETK1 20121230 -9606 2043 EPHA4 - HEK8|SEK|TYRO1 HGNC:3388|MIM:602188|Ensembl:ENSG00000116106|HPRD:03719|Vega:OTTHUMG00000133142 2 2q36.1 EPH receptor A4 protein-coding EPHA4 EPH receptor A4 O EK8|EPH-like kinase 8|TYRO1 protein tyrosine kinase|ephrin type-A receptor 4|receptor protein-tyrosine kinase HEK8|tyrosine-protein kinase TYRO1|tyrosine-protein kinase receptor SEK 20121230 -9606 2044 EPHA5 - CEK7|EHK1|HEK7|TYRO4 HGNC:3389|MIM:600004|Ensembl:ENSG00000145242|HPRD:02474|Vega:OTTHUMG00000129273 4 4q13.1 EPH receptor A5 protein-coding EPHA5 EPH receptor A5 O EHK-1|EK7|EPH homology kinase 1|EPH-like kinase 7|Eph homology kinase-1|brain-specific kinase|ephrin type-A receptor 5|receptor protein-tyrosine kinase HEK7|tyrosine-protein kinase receptor EHK-1 20121230 -9606 2045 EPHA7 - EHK3|HEK11 HGNC:3390|MIM:602190|Ensembl:ENSG00000135333|HPRD:03721|Vega:OTTHUMG00000015228 6 6q16.1 EPH receptor A7 protein-coding EPHA7 EPH receptor A7 O EHK-3|EK11|EPH homology kinase 3|EPH-like kinase 11|Eph homology kinase-3|ephrin type-A receptor 7|receptor protein-tyrosine kinase HEK11|tyrosine-protein kinase receptor EHK-3 20121230 -9606 2046 EPHA8 RP1-61A9.3 EEK|EK3|HEK3 HGNC:3391|MIM:176945|Ensembl:ENSG00000070886|HPRD:01493|Vega:OTTHUMG00000002892 1 1p36.12 EPH receptor A8 protein-coding EPHA8 EPH receptor A8 O EPH- and ELK-related kinase|EPH- and ELK-related tyrosine kinase|EPH-like kinase 3|ephrin type-A receptor 8|hydroxyaryl-protein kinase|protein-tyrosine kinase|tyrosine-protein kinase receptor EEK|tyrosylprotein kinase 20121230 -9606 2047 EPHB1 - ELK|EPHT2|Hek6|NET HGNC:3392|MIM:600600|Ensembl:ENSG00000154928|HPRD:02790|Vega:OTTHUMG00000159804 3 3q21-q23 EPH receptor B1 protein-coding EPHB1 EPH receptor B1 O EK6|EPH-like kinase 6|eph tyrosine kinase 2|ephrin type-B receptor 1|neuronally-expressed EPH-related tyrosine kinase|soluble EPHB1 variant 1|tyrosine-protein kinase receptor EPH-2 20121230 -9606 2048 EPHB2 - CAPB|DRT|EK5|EPHT3|ERK|Hek5|PCBC|Tyro5 HGNC:3393|MIM:600997|Ensembl:ENSG00000133216|HPRD:02997|Vega:OTTHUMG00000002881 1 1p36.1-p35 EPH receptor B2 protein-coding EPHB2 EPH receptor B2 O EPH-like kinase 5|developmentally-regulated Eph-related tyrosine kinase|elk-related tyrosine kinase|eph tyrosine kinase 3|ephrin type-B receptor 2|protein-tyrosine kinase HEK5|renal carcinoma antigen NY-REN-47|tyrosine-protein kinase TYRO5|tyrosine-protein kinase receptor EPH-3 20121230 -9606 2049 EPHB3 - ETK2|HEK2|TYRO6 HGNC:3394|MIM:601839|Ensembl:ENSG00000182580|HPRD:03502|Vega:OTTHUMG00000156710 3 3q21-qter EPH receptor B3 protein-coding EPHB3 EPH receptor B3 O EK2|EPH-like kinase 2|EPH-like tyrosine kinase 2|EPH-like tyrosine kinase-2|embryonic kinase 2|ephrin type-B receptor 3|human embryo kinase 2|tyrosine-protein kinase TYRO6 20121230 -9606 2050 EPHB4 - HTK|MYK1|TYRO11 HGNC:3395|MIM:600011|Ensembl:ENSG00000196411|HPRD:02481|Vega:OTTHUMG00000157040 7 7q22 EPH receptor B4 protein-coding EPHB4 EPH receptor B4 O ephrin receptor EphB4|ephrin type-B receptor 4|hepatoma transmembrane kinase|soluble EPHB4 variant 1|soluble EPHB4 variant 2|soluble EPHB4 variant 3|tyrosine-protein kinase TYRO11|tyrosine-protein kinase receptor HTK 20121230 -9606 2051 EPHB6 - HEP HGNC:3396|MIM:602757|Ensembl:ENSG00000106123|HPRD:04133|Vega:OTTHUMG00000155707 7 7q33-q35 EPH receptor B6 protein-coding EPHB6 EPH receptor B6 O ephrin type-B receptor 6|tyrosine-protein kinase-defective receptor EPH-6 20121230 -9606 2052 EPHX1 - EPHX|EPOX|HYL1|MEH HGNC:3401|MIM:132810|Ensembl:ENSG00000143819|HPRD:00581|Vega:OTTHUMG00000037743 1 1q42.1 epoxide hydrolase 1, microsomal (xenobiotic) protein-coding EPHX1 epoxide hydrolase 1, microsomal (xenobiotic) O epoxide hydratase|epoxide hydrolase 1 20121230 -9606 2053 EPHX2 - CEH|SEH HGNC:3402|MIM:132811|Ensembl:ENSG00000120915|HPRD:00582|Vega:OTTHUMG00000102115 8 8p21 epoxide hydrolase 2, cytoplasmic protein-coding EPHX2 epoxide hydrolase 2, cytoplasmic O bifunctional epoxide hydrolase 2|epoxide hydratase|epoxide hydrolase 2, cytosolic|epoxide hydrolase, soluble 20121230 -9606 2054 STX2 - EPIM|EPM|STX2A|STX2B|STX2C HGNC:3403|MIM:132350|Ensembl:ENSG00000111450|HPRD:11816|Vega:OTTHUMG00000168365 12 12q24.33 syntaxin 2 protein-coding STX2 syntaxin 2 O epimorphin|syntaxin-2 20121230 -9606 2055 CLN8 - C8orf61|EPMR HGNC:2079|MIM:607837|Ensembl:ENSG00000182372|HPRD:06383|Vega:OTTHUMG00000090343 8 8p23 ceroid-lipofuscinosis, neuronal 8 (epilepsy, progressive with mental retardation) protein-coding CLN8 ceroid-lipofuscinosis, neuronal 8 (epilepsy, progressive with mental retardation) O protein CLN8 20121230 -9606 2056 EPO - EP|MVCD2 HGNC:3415|MIM:133170|Ensembl:ENSG00000130427|HPRD:00586|Vega:OTTHUMG00000152121 7 7q22 erythropoietin protein-coding EPO erythropoietin O epoetin 20121230 -9606 2057 EPOR - EPO-R HGNC:3416|MIM:133171|Ensembl:ENSG00000187266|HPRD:00587|Vega:OTTHUMG00000182027 19 19p13.3-p13.2 erythropoietin receptor protein-coding EPOR erythropoietin receptor O - 20121230 -9606 2058 EPRS PIG32 EARS|GLUPRORS|PARS|QARS|QPRS HGNC:3418|MIM:138295|Ensembl:ENSG00000136628|HPRD:00703|Vega:OTTHUMG00000037433 1 1q41 glutamyl-prolyl-tRNA synthetase protein-coding EPRS glutamyl-prolyl-tRNA synthetase O bifunctional aminoacyl-tRNA synthetase|bifunctional glutamate/proline--tRNA ligase|cell proliferation-inducing gene 32 protein|glutamate tRNA ligase|glutaminyl-tRNA synthetase|proliferation-inducing gene 32 protein|proliferation-inducing protein 32|proline tRNA ligase|proline-tRNA ligase|prolyl-tRNA synthetase 20121230 -9606 2059 EPS8 - - HGNC:3420|MIM:600206|Ensembl:ENSG00000151491|HPRD:02563|Vega:OTTHUMG00000168787 12 12p12.3 epidermal growth factor receptor pathway substrate 8 protein-coding EPS8 epidermal growth factor receptor pathway substrate 8 O epidermal growth factor receptor kinase substrate 8 20121230 -9606 2060 EPS15 - AF-1P|AF1P|MLLT5 HGNC:3419|MIM:600051|Ensembl:ENSG00000085832|HPRD:08968|Vega:OTTHUMG00000008192 1 1p32 epidermal growth factor receptor pathway substrate 15 protein-coding EPS15 epidermal growth factor receptor pathway substrate 15 O ALL1 fused gene from chromosome 1|epidermal growth factor receptor substrate 15|protein AF-1p 20121230 -9606 2063 NR2F6 - EAR-2|EAR2|ERBAL2 HGNC:7977|MIM:132880|Ensembl:ENSG00000160113|HPRD:00583 19 19p13.1 nuclear receptor subfamily 2, group F, member 6 protein-coding NR2F6 nuclear receptor subfamily 2, group F, member 6 O ERBA-related gene-2|V-erbA-related protein 2|nuclear receptor V-erbA-related|nuclear receptor subfamily 2 group F member 6|v-erb-a avian erythroblastic leukemia viral oncogene homolog-like 2 20121230 -9606 2064 ERBB2 - CD340|HER-2|HER-2/neu|HER2|MLN 19|NEU|NGL|TKR1 HGNC:3430|MIM:164870|Ensembl:ENSG00000141736|HPRD:01281|Vega:OTTHUMG00000179300 17 17q12 v-erb-b2 erythroblastic leukemia viral oncogene homolog 2, neuro/glioblastoma derived oncogene homolog (avian) protein-coding ERBB2 v-erb-b2 erythroblastic leukemia viral oncogene homolog 2, neuro/glioblastoma derived oncogene homolog (avian) O c-erb B2/neu protein|herstatin|metastatic lymph node gene 19 protein|neuroblastoma/glioblastoma derived oncogene homolog|p185erbB2|proto-oncogene Neu|proto-oncogene c-ErbB-2|receptor tyrosine-protein kinase erbB-2|tyrosine kinase-type cell surface receptor HER2|v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 2 (neuro/glioblastoma derived oncogene homolog) 20121230 -9606 2065 ERBB3 - ErbB-3|HER3|LCCS2|MDA-BF-1|c-erbB-3|c-erbB3|erbB3-S|p180-ErbB3|p45-sErbB3|p85-sErbB3 HGNC:3431|MIM:190151|Ensembl:ENSG00000065361|HPRD:01820|Vega:OTTHUMG00000170140 12 12q13 v-erb-b2 erythroblastic leukemia viral oncogene homolog 3 (avian) protein-coding ERBB3 v-erb-b2 erythroblastic leukemia viral oncogene homolog 3 (avian) O proto-oncogene-like protein c-ErbB-3|receptor tyrosine-protein kinase erbB-3|tyrosine kinase-type cell surface receptor HER3 20121230 -9606 2066 ERBB4 - HER4|p180erbB4 HGNC:3432|MIM:600543|Ensembl:ENSG00000178568|HPRD:02767|Vega:OTTHUMG00000133012 2 2q33.3-q34 v-erb-a erythroblastic leukemia viral oncogene homolog 4 (avian) protein-coding ERBB4 v-erb-a erythroblastic leukemia viral oncogene homolog 4 (avian) O avian erythroblastic leukemia viral (v-erb-b2) oncogene homolog 4|proto-oncogene-like protein c-ErbB-4|receptor tyrosine-protein kinase erbB-4|tyrosine kinase-type cell surface receptor HER4 20121230 -9606 2067 ERCC1 - COFS4|RAD10|UV20 HGNC:3433|MIM:126380|Ensembl:ENSG00000012061|HPRD:00533|Vega:OTTHUMG00000182121 19 19q13.32 excision repair cross-complementing rodent repair deficiency, complementation group 1 (includes overlapping antisense sequence) protein-coding ERCC1 excision repair cross-complementing rodent repair deficiency, complementation group 1 (includes overlapping antisense sequence) O DNA excision repair protein ERCC-1 20121230 -9606 2068 ERCC2 - COFS2|EM9|TTD|XPD HGNC:3434|MIM:126340|Ensembl:ENSG00000104884|HPRD:00530|Vega:OTTHUMG00000048190 19 19q13.3 excision repair cross-complementing rodent repair deficiency, complementation group 2 protein-coding ERCC2 excision repair cross-complementing rodent repair deficiency, complementation group 2 O BTF2 p80|CXPD|DNA excision repair protein ERCC-2|DNA repair protein complementing XP-D cells|TFIIH 80 kDa subunit|TFIIH basal transcription factor complex 80 kDa subunit|TFIIH basal transcription factor complex helicase XPD subunit|TFIIH basal transcription factor complex helicase subunit|TFIIH p80|basic transcription factor 2 80 kDa subunit|xeroderma pigmentosum complementary group D|xeroderma pigmentosum group D-complementing protein 20121230 -9606 2069 EREG - ER HGNC:3443|MIM:602061|Ensembl:ENSG00000124882|HPRD:03638|Vega:OTTHUMG00000130005 4 4q13.3 epiregulin protein-coding EREG epiregulin O proepiregulin 20121230 -9606 2070 EYA4 RP11-704J17.4 CMD1J|DFNA10 HGNC:3522|MIM:603550|Ensembl:ENSG00000112319|HPRD:04648|Vega:OTTHUMG00000015602 6 6q23 eyes absent homolog 4 (Drosophila) protein-coding EYA4 eyes absent homolog 4 (Drosophila) O dJ78N10.1 (eyes absent)|eyes absent homolog 4 20121230 -9606 2071 ERCC3 - BTF2|GTF2H|RAD25|TFIIH|XPB HGNC:3435|MIM:133510|Ensembl:ENSG00000163161|HPRD:00593|Vega:OTTHUMG00000131530 2 2q21 excision repair cross-complementing rodent repair deficiency, complementation group 3 protein-coding ERCC3 excision repair cross-complementing rodent repair deficiency, complementation group 3 O BTF2 p89|DNA excision repair protein ERCC-3|DNA repair protein complementing XP-B cells|TFIIH 89 kDa subunit|TFIIH basal transcription factor complex 89 kDa subunit|TFIIH basal transcription factor complex helicase XPB subunit|TFIIH p89|basic transcription factor 2 89 kDa subunit|xeroderma pigmentosum group B-complementing protein|xeroderma pigmentosum, complementation group B 20121230 -9606 2072 ERCC4 - ERCC11|RAD1|XPF HGNC:3436|MIM:133520|Ensembl:ENSG00000175595|HPRD:00594|Vega:OTTHUMG00000048194 16 16p13.12 excision repair cross-complementing rodent repair deficiency, complementation group 4 protein-coding ERCC4 excision repair cross-complementing rodent repair deficiency, complementation group 4 O DNA excision repair protein ERCC-4|DNA repair endonuclease XPF|DNA repair protein complementing XP-F cells|excision-repair, complementing defective, in Chinese hamster|xeroderma pigmentosum group F-complementing protein|xeroderma pigmentosum, complementation group F 20121230 -9606 2073 ERCC5 RP11-484I6.5 COFS3|ERCM2|UVDR|XPG|XPGC HGNC:3437|MIM:133530|Ensembl:ENSG00000134899|HPRD:00595|Vega:OTTHUMG00000017310 13 13q33 excision repair cross-complementing rodent repair deficiency, complementation group 5 protein-coding ERCC5 excision repair cross-complementing rodent repair deficiency, complementation group 5 O DNA excision repair protein ERCC-5|DNA repair protein complementing XP-G cells|XPG-complementing protein|xeroderma pigmentosum, complementation group G 20121230 -9606 2074 ERCC6 - ARMD5|CKN2|COFS|COFS1|CSB|RAD26|UVSS1 HGNC:3438|MIM:609413|Ensembl:ENSG00000225830|HPRD:00596|Vega:OTTHUMG00000018195 10 10q11.23 excision repair cross-complementing rodent repair deficiency, complementation group 6 protein-coding ERCC6 excision repair cross-complementing rodent repair deficiency, complementation group 6 O ATP-dependent helicase ERCC6|Cockayne syndrome B protein|Cockayne syndrome group B protein|DNA excision repair protein ERCC-6|Rad26 homolog|cockayne syndrome protein CSB 20121230 -9606 2076 ERCM1 - - HGNC:3440|MIM:133535 3 - excision repair complementing defective repair in mouse cells unknown ERCM1 excision repair complementing defective repair in mouse cells O - 20080828 -9606 2077 ERF - PE-2|PE2 HGNC:3444|MIM:611888|Ensembl:ENSG00000105722|HPRD:09942 19 19q13 Ets2 repressor factor protein-coding ERF Ets2 repressor factor O ETS domain-containing transcription factor ERF 20121230 -9606 2078 ERG - erg-3|p55 HGNC:3446|MIM:165080|Ensembl:ENSG00000157554|HPRD:01298|Vega:OTTHUMG00000090767 21 21q22.3 v-ets erythroblastosis virus E26 oncogene homolog (avian) protein-coding ERG v-ets erythroblastosis virus E26 oncogene homolog (avian) O TMPRSS2/ERG fusion|ets-related|transcriptional regulator ERG|transcriptional regulator ERG (transforming protein ERG)|v-ets avian erythroblastosis virus E26 oncogene related|v-ets erythroblastosis virus E26 oncogene like 20121230 -9606 2079 ERH - DROER HGNC:3447|MIM:601191|Ensembl:ENSG00000100632|HPRD:09026|Vega:OTTHUMG00000171323 14 14q24.1|7q34 enhancer of rudimentary homolog (Drosophila) protein-coding ERH enhancer of rudimentary homolog (Drosophila) O enhancer of rudimentary homolog 20121230 -9606 2081 ERN1 - IRE1|IRE1P|IRE1a|hIRE1p HGNC:3449|MIM:604033|Ensembl:ENSG00000178607|HPRD:04943|Vega:OTTHUMG00000178879 17 17q24.2 endoplasmic reticulum to nucleus signaling 1 protein-coding ERN1 endoplasmic reticulum to nucleus signaling 1 O ER to nucleus signalling 1|endoplasmic reticulum-to-nucleus signaling 1|inositol-requiring 1|inositol-requiring enzyme 1|inositol-requiring protein 1|ire1-alpha|protein kinase/endoribonuclease|serine/threonine-protein kinase/endoribonuclease IRE1 20121230 -9606 2082 ERPL1 - HLM2 HGNC:3450|MIM:131190 1 1pter-p36 endogenous retroviral pol gene-like sequence 1 (clone HLM2) unknown ERPL1 endogenous retroviral pol gene-like sequence 1 (clone HLM2) O - 20120710 -9606 2083 ERPL2 - HLM-25 HGNC:3451|MIM:131180 5 5q33.2 endogenous retroviral pol gene-like sequence 2 unknown ERPL2 endogenous retroviral pol gene-like sequence 2 O - 20120511 -9606 2086 ERV3-1 - ERV-R|ERV3|ERVR|HERV-R|HERVR|envR HGNC:3454|MIM:131170|Ensembl:ENSG00000213462|HPRD:15919|Vega:OTTHUMG00000165023 7 7q11.2 endogenous retrovirus group 3, member 1 protein-coding ERV3-1 endogenous retrovirus group 3, member 1 O ERV-3 envelope protein|ERV-R envelope protein|ERV3-1 envelope protein|HERV-R envelope protein|HERV-R_7q21.2 provirus ancestral Env polyprotein|endogenous retroviral sequence 3 20121230 -9606 2090 ESA4 - - HGNC:3462|MIM:133220 11 11q13-q22 esterase A4 protein-coding ESA4 esterase A4 O - 20100204 -9606 2091 FBL - FIB|FLRN|RNU3IP1 HGNC:3599|MIM:134795|Ensembl:ENSG00000105202|HPRD:00617 19 19q13.1 fibrillarin protein-coding FBL fibrillarin O 34 kDa nucleolar scleroderma antigen|34-kD nucleolar scleroderma antigen|RNA, U3 small nucleolar interacting protein 1|rRNA 2'-O-methyltransferase fibrillarin 20121230 -9606 2096 ESAT - - HGNC:3463|MIM:133250 14 - esterase activator unknown ESAT esterase activator O - 20080828 -9606 2097 ESB3 - - HGNC:3464|MIM:133290 16 - esterase B3 protein-coding ESB3 esterase B3 O - 20100204 -9606 2098 ESD RP11-147L20.1 FGH HGNC:3465|MIM:133280|Ensembl:ENSG00000139684|HPRD:00588|Vega:OTTHUMG00000016878 13 13q14.1-q14.2 esterase D protein-coding ESD esterase D O S-formylglutathione hydrolase|esterase 10|esterase D/formylglutathione hydrolase|methylumbelliferyl-acetate deacetylase 20121230 -9606 2099 ESR1 RP1-130E4.1 ER|ESR|ESRA|Era|NR3A1 HGNC:3467|MIM:133430|Ensembl:ENSG00000091831|HPRD:00589|Vega:OTTHUMG00000016103 6 6q25.1 estrogen receptor 1 protein-coding ESR1 estrogen receptor 1 O ER-alpha|estradiol receptor|estrogen nuclear receptor alpha|estrogen receptor|estrogen receptor alpha 3*,4,5,6,7*/822 isoform|estrogen receptor alpha E1-E2-1-2|estrogen receptor alpha E1-N2-E2-1-2|estrogen receptor alpha delta 3*,4,5,6,7*,8*/941 isoform|estrogen receptor alpha delta 3*,4,5,6,7*/819-2 isoform|estrogen receptor alpha delta 4 +49 isoform|estrogen receptor alpha delta 4*,5,6,7*/654 isoform|estrogen receptor alpha delta 4*,5,6,7,8*/901 isoform|nuclear receptor subfamily 3 group A member 1 20121230 -9606 2100 ESR2 - ER-BETA|ESR-BETA|ESRB|ESTRB|Erb|NR3A2 HGNC:3468|MIM:601663|Ensembl:ENSG00000140009|HPRD:03390|Vega:OTTHUMG00000141306 14 14q23.2 estrogen receptor 2 (ER beta) protein-coding ESR2 estrogen receptor 2 (ER beta) O estrogen nuclear receptor beta variant a|estrogen nuclear receptor beta variant b|estrogen receptor beta|estrogen receptor beta 4|nuclear receptor subfamily 3 group A member 2 20121230 -9606 2101 ESRRA - ERR1|ERRa|ERRalpha|ESRL1|NR3B1 HGNC:3471|MIM:601998|Ensembl:ENSG00000173153|HPRD:07210|Vega:OTTHUMG00000150641 11 11q13 estrogen-related receptor alpha protein-coding ESRRA estrogen-related receptor alpha O ERR-alpha|estrogen receptor-like 1|estrogen-related nuclear receptor alpha|nuclear receptor subfamily 3 group B member 1|steroid hormone receptor ERR1 20121230 -9606 2103 ESRRB - DFNB35|ERR2|ERRb|ESRL2|NR3B2 HGNC:3473|MIM:602167|Ensembl:ENSG00000119715|HPRD:03700|Vega:OTTHUMG00000160457 14 14q24.3 estrogen-related receptor beta protein-coding ESRRB estrogen-related receptor beta O ERR beta-2|ERR-beta|ERRbeta-2|estrogen receptor-like 2|estrogen-related nuclear receptor beta|nuclear receptor ERRB2|nuclear receptor subfamily 3 group B member 2|orphan nuclear receptor|steroid hormone receptor ERR2 20121230 -9606 2104 ESRRG - ERR3|ERRgamma|NR3B3 HGNC:3474|MIM:602969|Ensembl:ENSG00000196482|HPRD:04274|Vega:OTTHUMG00000037025 1 1q41 estrogen-related receptor gamma protein-coding ESRRG estrogen-related receptor gamma O ERR gamma-2|estrogen receptor-related protein 3|nuclear receptor subfamily 3 group B member 3 20121230 -9606 2107 ETF1 - D5S1995|ERF|ERF1|RF1|SUP45L1|TB3-1 HGNC:3477|MIM:600285|Ensembl:ENSG00000120705|HPRD:02616|Vega:OTTHUMG00000129199 5 5q31.1 eukaryotic translation termination factor 1 protein-coding ETF1 eukaryotic translation termination factor 1 O eukaryotic peptide chain release factor subunit 1|eukaryotic release factor 1|polypeptide chain release factor 1|protein Cl1|sup45 (yeast omnipotent suppressor 45) homolog-like 1 20121230 -9606 2108 ETFA - EMA|GA2|MADD HGNC:3481|MIM:608053|Ensembl:ENSG00000140374|HPRD:01979|Vega:OTTHUMG00000172586 15 15q23-q25 electron-transfer-flavoprotein, alpha polypeptide protein-coding ETFA electron-transfer-flavoprotein, alpha polypeptide O alpha-ETF|electron transfer flavoprotein alpha-subunit|electron transfer flavoprotein subunit alpha, mitochondrial|electron transfer flavoprotein, alpha polypeptide|glutaric aciduria II 20121230 -9606 2109 ETFB FP585 MADD HGNC:3482|MIM:130410|Ensembl:ENSG00000105379|HPRD:00557 19 19q13.3 electron-transfer-flavoprotein, beta polypeptide protein-coding ETFB electron-transfer-flavoprotein, beta polypeptide O beta-ETF|electron transfer flavoprotein beta subunit|electron transfer flavoprotein beta-subunit|electron transfer flavoprotein subunit beta|electron transfer flavoprotein, beta polypeptide|electron-transferring-flavoprotein, beta polypeptide 20121230 -9606 2110 ETFDH - ETFQO|MADD HGNC:3483|MIM:231675|Ensembl:ENSG00000171503|HPRD:01978|Vega:OTTHUMG00000161684 4 4q32-q35 electron-transferring-flavoprotein dehydrogenase protein-coding ETFDH electron-transferring-flavoprotein dehydrogenase O ETF dehydrogenase|ETF-QO|ETF-ubiquinone oxidoreductase|electron transfer flavoprotein ubiquinone oxidoreductase|electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial 20121230 -9606 2112 ETM2 - ETM HGNC:3487|MIM:602134 2 2p25-p22 essential tremor 2 unknown ETM2 essential tremor 2 O - 20120622 -9606 2113 ETS1 - ETS-1|EWSR2 HGNC:3488|MIM:164720|Ensembl:ENSG00000134954|HPRD:01260|Vega:OTTHUMG00000165799 11 11q23.3 v-ets erythroblastosis virus E26 oncogene homolog 1 (avian) protein-coding ETS1 v-ets erythroblastosis virus E26 oncogene homolog 1 (avian) O Avian erythroblastosis virus E26 (v-ets) oncogene homolog-1|ets protein|p54|protein C-ets-1|v-ets avian erythroblastosis virus E2 oncogene homolog 1 20121230 -9606 2114 ETS2 - ETS2IT1 HGNC:3489|MIM:164740|Ensembl:ENSG00000157557|HPRD:01263|Vega:OTTHUMG00000090769 21 21q22.2 v-ets erythroblastosis virus E26 oncogene homolog 2 (avian) protein-coding ETS2 v-ets erythroblastosis virus E26 oncogene homolog 2 (avian) O oncogene ETS-2|protein C-ets-2|v-ets avian erythroblastosis virus E2 oncogene homolog 2|v-ets avian erythroblastosis virus E26 oncogene homolog 2 20121230 -9606 2115 ETV1 - ER81 HGNC:3490|MIM:600541|Ensembl:ENSG00000006468|HPRD:02765|Vega:OTTHUMG00000152403 7 7p21.3 ets variant 1 protein-coding ETV1 ets variant 1 O ETS translocation variant 1|ets variant gene 1|ets-related protein 81 20121230 -9606 2116 ETV2 - ER71|ETSRP71 HGNC:3491|MIM:609358|Ensembl:ENSG00000105672|HPRD:16871|Vega:OTTHUMG00000150545 19 19q13.12 ets variant 2 protein-coding ETV2 ets variant 2 O ETS translocation variant 2|ets variant gene 2|ets-related protein 71 20121230 -9606 2117 ETV3 - METS|PE-1|PE1|bA110J1.4 HGNC:3492|MIM:164873|Ensembl:ENSG00000117036|HPRD:01282|Vega:OTTHUMG00000034298 1 1q21-q23 ets variant 3 protein-coding ETV3 ets variant 3 O ETS domain transcriptional repressor PE1|ETS translocation variant 3|ets variant gene 3, ETS family transcriptional repressor|mitogenic Ets transcriptional suppressor 20121230 -9606 2118 ETV4 - E1A-F|E1AF|PEA3|PEAS3 HGNC:3493|MIM:600711|Ensembl:ENSG00000175832|HPRD:02833|Vega:OTTHUMG00000180884 17 17q21 ets variant 4 protein-coding ETV4 ets variant 4 O ETS translocation variant 4|EWS protein/E1A enhancer binding protein chimera|adenovirus E1A enhancer-binding protein|ets variant gene 4 (E1A enhancer-binding protein, E1AF)|polyomavirus enhancer activator 3 homolog 20121230 -9606 2119 ETV5 - ERM HGNC:3494|MIM:601600|Ensembl:ENSG00000244405|HPRD:09035|Vega:OTTHUMG00000156639 3 3q28 ets variant 5 protein-coding ETV5 ets variant 5 O ETS translocation variant 5|ets-related molecule|ets-related protein ERM 20121230 -9606 2120 ETV6 - TEL|TEL/ABL HGNC:3495|MIM:600618|Ensembl:ENSG00000139083|HPRD:15976|Vega:OTTHUMG00000168538 12 12p13 ets variant 6 protein-coding ETV6 ets variant 6 O ETS translocation variant 6|ETS-related protein Tel1|TEL1 oncogene|ets variant gene 6 (TEL oncogene)|transcription factor ETV6 20121230 -9606 2121 EVC - DWF-1|EVC1|EVCL HGNC:3497|MIM:604831|Ensembl:ENSG00000072840|HPRD:05319|Vega:OTTHUMG00000090427 4 4p16 Ellis van Creveld syndrome protein-coding EVC Ellis van Creveld syndrome O ellis-van Creveld syndrome protein 20121230 -9606 2122 MECOM hCG_1640438 AML1-EVI-1|EVI1|MDS1|MDS1-EVI1|PRDM3 HGNC:3498|MIM:165215|Ensembl:ENSG00000085276|HPRD:01310|Vega:OTTHUMG00000158596 3 3q26 MDS1 and EVI1 complex locus protein-coding MECOM MDS1 and EVI1 complex locus O AML1-EVI-1 fusion protein|MDS1 and EVI1 complex locus protein EVI1|MDS1 and EVI1 complex locus protein MDS1|ecotropic virus integration site 1 protein homolog|myelodysplasia syndrome-associated protein 1|oncogene EVI1|zinc finger protein Evi1 20121230 -9606 2123 EVI2A - EVDA|EVI-2A|EVI2 HGNC:3499|MIM:158380|Ensembl:ENSG00000126860|HPRD:08866|Vega:OTTHUMG00000159306 17 17q11.2 ecotropic viral integration site 2A protein-coding EVI2A ecotropic viral integration site 2A O ecotropic viral integration site 2A protein homolog|protein EVI2A 20121230 -9606 2124 EVI2B - CD361|D17S376|EVDB HGNC:3500|MIM:158381|Ensembl:ENSG00000185862|HPRD:08867|Vega:OTTHUMG00000132869 17 17q11.2 ecotropic viral integration site 2B protein-coding EVI2B ecotropic viral integration site 2B O EVI-2B|ecotropic viral integration site 2B protein homolog|protein EVI2B 20121230 -9606 2125 EVPL - EVPK HGNC:3503|MIM:601590|Ensembl:ENSG00000167880|HPRD:03352|Vega:OTTHUMG00000180053 17 17q25 envoplakin protein-coding EVPL envoplakin O 210 kDa cornified envelope precursor protein|210 kDa paraneoplastic pemphigus antigen|p210 20121230 -9606 2128 EVX1 - - HGNC:3506|MIM:142996|Ensembl:ENSG00000106038|HPRD:00876|Vega:OTTHUMG00000023093 7 7p15.2 even-skipped homeobox 1 protein-coding EVX1 even-skipped homeobox 1 O EVX-1|eve, even-skipped homeo box homolog 1|eve, even-skipped homeobox homolog 1|even-skipped homeo box 1 (homolog of Drosophila)|homeobox even-skipped homolog protein 1 20121230 -9606 2130 EWSR1 AC002059.7 EWS|bK984G1.4 HGNC:3508|MIM:133450|Ensembl:ENSG00000182944|HPRD:00592|Vega:OTTHUMG00000151107 22 22q12.2 Ewing sarcoma breakpoint region 1 protein-coding EWSR1 Ewing sarcoma breakpoint region 1 O Ewings sarcoma EWS-Fli1 (type 1) oncogene|RNA-binding protein EWS 20121230 -9606 2131 EXT1 - EXT|LGCR|LGS|TRPS2|TTV HGNC:3512|MIM:608177|Ensembl:ENSG00000182197|HPRD:00598|Vega:OTTHUMG00000059718 8 8q24.11 exostosin 1 protein-coding EXT1 exostosin 1 O Glucuronosyl-N-acetylglucosaminyl-proteoglycan 4-alpha-N- acetylglucosaminyltransferase|Langer-Giedion syndrome chromosome region|N-acetylglucosaminyl-proteoglycan 4-beta-glucuronosyltransferase|exostoses (multiple) 1|exostosin-1|glucuronosyl-N-acetylglucosaminyl-proteoglycan/N-acetylglucosaminyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase|multiple exostoses protein 1|putative tumor suppressor protein EXT1 20121230 -9606 2132 EXT2 - SOTV HGNC:3513|MIM:608210|Ensembl:ENSG00000151348|HPRD:00599|Vega:OTTHUMG00000166498 11 11p12-p11 exostosin 2 protein-coding EXT2 exostosin 2 O N-acetylglucosaminyl-proteoglycan 4-beta-glucuronosyltransferase|exostosin-2|glucuronosyl-N-acetylglucosaminyl-proteoglycan/N-acetylglucosaminyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase|multiple exostoses protein 2|putative tumor suppressor protein EXT2 20121230 -9606 2133 EXT3 - EXT2 HGNC:3514|MIM:600209 19 19p exostoses (multiple) 3 unknown EXT3 exostoses (multiple) 3 O - 20120622 -9606 2134 EXTL1 - EXTL HGNC:3515|MIM:601738|Ensembl:ENSG00000158008|HPRD:03441|Vega:OTTHUMG00000007509 1 1p36.1 exostoses (multiple)-like 1 protein-coding EXTL1 exostoses (multiple)-like 1 O alpha-N-acetylglucosaminyltransferase II|exostosin-L|exostosin-like 1|glucuronosyl-N-acetylglucosaminyl-proteoglycan 4-alpha-N- acetylglucosaminyltransferase|glucuronosyl-N-acetylglucosaminyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase|glucuronyl-N-acetylglucosaminylproteoglycan alpha-1,4-N- acetylglucosaminyltransferase|multiple exostosis-like protein 20121230 -9606 2135 EXTL2 - EXTR2 HGNC:3516|MIM:602411|Ensembl:ENSG00000162694|HPRD:03876|Vega:OTTHUMG00000011814 1 1p21 exostoses (multiple)-like 2 protein-coding EXTL2 exostoses (multiple)-like 2 O EXT-related protein 2|alpha-1,4-N-acetylhexosaminyltransferase EXTL2|alpha-GalNAcT EXTL2|exostosin-like 2|glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase|processed exostosin-like 2 20121230 -9606 2137 EXTL3 - BOTV|EXTR1|REGR|RPR HGNC:3518|MIM:605744|Ensembl:ENSG00000012232|HPRD:09306|Vega:OTTHUMG00000102146 8 8p21 exostoses (multiple)-like 3 protein-coding EXTL3 exostoses (multiple)-like 3 O EXT-related 1|exostosin tumor-like 3|exostosin-like 3|glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase|hereditary multiple exostoses gene isolog|putative tumor suppressor protein EXTL3|reg receptor 20121230 -9606 2138 EYA1 - BOP|BOR|BOS1 HGNC:3519|MIM:601653|Ensembl:ENSG00000104313|HPRD:03388|Vega:OTTHUMG00000149894 8 8q13.3 eyes absent homolog 1 (Drosophila) protein-coding EYA1 eyes absent homolog 1 (Drosophila) O eyes absent homolog 1 20121230 -9606 2139 EYA2 RP5-890O15.2 EAB1 HGNC:3520|MIM:601654|Ensembl:ENSG00000064655|HPRD:09041|Vega:OTTHUMG00000033041 20 20q13.1 eyes absent homolog 2 (Drosophila) protein-coding EYA2 eyes absent homolog 2 (Drosophila) O eyes absent homolog 2 20121230 -9606 2140 EYA3 RP11-460I13.4 - HGNC:3521|MIM:601655|Ensembl:ENSG00000158161|HPRD:09042|Vega:OTTHUMG00000003916 1 1p36 eyes absent homolog 3 (Drosophila) protein-coding EYA3 eyes absent homolog 3 (Drosophila) O eyes absent 3|eyes absent homolog 3 20121230 -9606 2141 EYCL1 - GEY HGNC:3523 19 - eye color 1 (green/blue) unknown EYCL1 eye color 1 (green/blue) O - 20111201 -9606 2145 EZH1 - KMT6B HGNC:3526|MIM:601674|Ensembl:ENSG00000108799|HPRD:03397|Vega:OTTHUMG00000180645 17 17q21.1-q21.3 enhancer of zeste homolog 1 (Drosophila) protein-coding EZH1 enhancer of zeste homolog 1 (Drosophila) O ENX-2|histone-lysine N-methyltransferase EZH1 20121230 -9606 2146 EZH2 - ENX-1|ENX1|EZH1|KMT6|KMT6A|WVS2 HGNC:3527|MIM:601573|Ensembl:ENSG00000106462|HPRD:03342|Vega:OTTHUMG00000158973 7 7q35-q36 enhancer of zeste homolog 2 (Drosophila) protein-coding EZH2 enhancer of zeste homolog 2 (Drosophila) O histone-lysine N-methyltransferase EZH2|lysine N-methyltransferase 6 20121230 -9606 2147 F2 - PT|RPRGL2|THPH1 HGNC:3535|MIM:176930|Ensembl:ENSG00000180210|HPRD:01488|Vega:OTTHUMG00000150344 11 11p11 coagulation factor II (thrombin) protein-coding F2 coagulation factor II (thrombin) O prothrombin|prothrombin B-chain|serine protease 20121230 -9606 2149 F2R - CF2R|HTR|PAR-1|PAR1|TR HGNC:3537|MIM:187930|Ensembl:ENSG00000181104|HPRD:01763|Vega:OTTHUMG00000131299 5 5q13 coagulation factor II (thrombin) receptor protein-coding F2R coagulation factor II (thrombin) receptor O protease-activated receptor 1|proteinase-activated receptor 1 20121230 -9606 2150 F2RL1 - GPR11|PAR2 HGNC:3538|MIM:600933|Ensembl:ENSG00000164251|HPRD:02960|Vega:OTTHUMG00000102118 5 5q13 coagulation factor II (thrombin) receptor-like 1 protein-coding F2RL1 coagulation factor II (thrombin) receptor-like 1 O G-protein coupled receptor 11|coagulation factor II receptor-like 1|protease-activated receptor 2|proteinase-activated receptor 2|thrombin receptor-like 1 20121230 -9606 2151 F2RL2 - PAR-3|PAR3 HGNC:3539|MIM:601919|Ensembl:ENSG00000164220|HPRD:03561|Vega:OTTHUMG00000102119 5 5q13 coagulation factor II (thrombin) receptor-like 2 protein-coding F2RL2 coagulation factor II (thrombin) receptor-like 2 O Coagulation factor II receptor-like 2 (protease-actovated receptor 3)|protease-activated receptor 3|proteinase-activated receptor 3|proteinase-activated receptor-3|thrombin receptor-like 2 20121230 -9606 2152 F3 - CD142|TF|TFA HGNC:3541|MIM:134390|Ensembl:ENSG00000117525|HPRD:00603|Vega:OTTHUMG00000010716 1 1p22-p21 coagulation factor III (thromboplastin, tissue factor) protein-coding F3 coagulation factor III (thromboplastin, tissue factor) O tissue factor 20121230 -9606 2153 F5 - FVL|PCCF|RPRGL1|THPH2 HGNC:3542|MIM:612309|Ensembl:ENSG00000198734|HPRD:01964|Vega:OTTHUMG00000034595 1 1q23 coagulation factor V (proaccelerin, labile factor) protein-coding F5 coagulation factor V (proaccelerin, labile factor) O activated protein c cofactor|coagulation factor V|coagulation factor V jinjiang A2 domain|factor V Leiden|proaccelerin, labile factor 20121230 -9606 2155 F7 - SPCA HGNC:3544|MIM:613878|Ensembl:ENSG00000057593|HPRD:01965|Vega:OTTHUMG00000017373 13 13q34 coagulation factor VII (serum prothrombin conversion accelerator) protein-coding F7 coagulation factor VII (serum prothrombin conversion accelerator) O FVII coagulation protein|coagulation factor VII|eptacog alfa|proconvertin 20121230 -9606 2156 F7R - F7E HGNC:3545|MIM:134450 8 8p23.2-p23.1 coagulation factor VII regulator unknown F7R coagulation factor VII regulator O - 20080828 -9606 2157 F8 RP11-115M6.7 AHF|DXS1253E|F8B|F8C|FVIII|HEMA HGNC:3546|MIM:300841|Ensembl:ENSG00000185010|HPRD:02384|Vega:OTTHUMG00000022688 X Xq28 coagulation factor VIII, procoagulant component protein-coding F8 coagulation factor VIII, procoagulant component O antihemophilic factor|coagulation factor VIII|coagulation factor VIIIc|factor VIII F8B 20121230 -9606 2158 F9 RP6-88D7.1 FIX|HEMB|P19|PTC|THPH8 HGNC:3551|MIM:300746|Ensembl:ENSG00000101981|HPRD:02385|Vega:OTTHUMG00000022536 X Xq27.1-q27.2 coagulation factor IX protein-coding F9 coagulation factor IX O Christmas factor|F9 p22|FIX F9|factor 9|factor IX F9|plasma thromboplastic component|plasma thromboplastin component 20121230 -9606 2159 F10 RP11-98F14.9 FX|FXA HGNC:3528|MIM:613872|Ensembl:ENSG00000126218|HPRD:01966|Vega:OTTHUMG00000017374 13 13q34 coagulation factor X protein-coding F10 coagulation factor X O Stuart-Prower factor|factor Xa|prothrombinase 20121230 -9606 2160 F11 - FXI HGNC:3529|MIM:264900|Ensembl:ENSG00000088926|HPRD:07524|Vega:OTTHUMG00000150311 4 4q35 coagulation factor XI protein-coding F11 coagulation factor XI O PTA|plasma thromboplastin antecedent 20121230 -9606 2161 F12 - HAE3|HAEX|HAF HGNC:3530|MIM:610619|Ensembl:ENSG00000131187|HPRD:01992|Vega:OTTHUMG00000163403 5 5q33-qter coagulation factor XII (Hageman factor) protein-coding F12 coagulation factor XII (Hageman factor) O Hageman factor|beta-factor XIIa part 1|beta-factor XIIa part 2|coagulation factor XII|coagulation factor XIIa heavy chain|coagulation factor XIIa light chain 20121230 -9606 2162 F13A1 RP11-232H4.1 F13A HGNC:3531|MIM:134570|Ensembl:ENSG00000124491|HPRD:00604|Vega:OTTHUMG00000014186 6 6p25.3-p24.3 coagulation factor XIII, A1 polypeptide protein-coding F13A1 coagulation factor XIII, A1 polypeptide O FSF, A subunit|TGase|bA525O21.1 (coagulation factor XIII, A1 polypeptide)|coagulation factor XIII A chain|coagulation factor XIII, A polypeptide|coagulation factor XIIIa|factor XIIIa|fibrin stabilizing factor, A subunit|fibrinoligase|protein-glutamine gamma-glutamyltransferase A chain|transglutaminase A chain|transglutaminase. plasma 20121230 -9606 2165 F13B - FXIIIB HGNC:3534|MIM:134580|Ensembl:ENSG00000143278|HPRD:00605|Vega:OTTHUMG00000036519 1 1q31-q32.1 coagulation factor XIII, B polypeptide protein-coding F13B coagulation factor XIII, B polypeptide O TGase|coagulation factor XIII B chain|fibrin-stabilizing factor B subunit|protein-glutamine gamma-glutamyltransferase B chain|transglutaminase B chain 20121230 -9606 2166 FAAH - FAAH-1 HGNC:3553|MIM:602935|Ensembl:ENSG00000117480|HPRD:04244|Vega:OTTHUMG00000007811 1 1p35-p34 fatty acid amide hydrolase protein-coding FAAH fatty acid amide hydrolase O anandamide amidohydrolase 1|fatty-acid amide hydrolase 1|oleamide hydrolase 1 20121230 -9606 2167 FABP4 - A-FABP|AFABP|ALBP|aP2 HGNC:3559|MIM:600434|Ensembl:ENSG00000170323|HPRD:02698|Vega:OTTHUMG00000164602 8 8q21 fatty acid binding protein 4, adipocyte protein-coding FABP4 fatty acid binding protein 4, adipocyte O adipocyte lipid-binding protein|adipocyte-type fatty acid-binding protein|fatty acid-binding protein 4|fatty acid-binding protein, adipocyte 20121230 -9606 2168 FABP1 - FABPL|L-FABP HGNC:3555|MIM:134650|Ensembl:ENSG00000163586|HPRD:00612|Vega:OTTHUMG00000130312 2 2p11 fatty acid binding protein 1, liver protein-coding FABP1 fatty acid binding protein 1, liver O fatty acid-binding protein 1|fatty acid-binding protein, liver|liver-type fatty acid-binding protein 20121230 -9606 2169 FABP2 - FABPI|I-FABP HGNC:3556|MIM:134640|Ensembl:ENSG00000145384|HPRD:00611|Vega:OTTHUMG00000132972 4 4q28-q31 fatty acid binding protein 2, intestinal protein-coding FABP2 fatty acid binding protein 2, intestinal O fatty acid-binding protein 2|fatty acid-binding protein, intestinal|intestinal-type fatty acid-binding protein 20121230 -9606 2170 FABP3 - FABP11|H-FABP|M-FABP|MDGI|O-FABP HGNC:3557|MIM:134651|Ensembl:ENSG00000121769|HPRD:00613|Vega:OTTHUMG00000003797 1 1p33-p32 fatty acid binding protein 3, muscle and heart (mammary-derived growth inhibitor) protein-coding FABP3 fatty acid binding protein 3, muscle and heart (mammary-derived growth inhibitor) O Fatty acid-binding protein 3, muscle|fatty acid binding protein 11|fatty acid-binding protein, heart|heart-type fatty acid-binding protein|mammary-derived growth inhibitor|muscle fatty acid-binding protein 20121230 -9606 2171 FABP5 - E-FABP|EFABP|KFABP|PA-FABP|PAFABP HGNC:3560|MIM:605168|Ensembl:ENSG00000164687|HPRD:05524|Vega:OTTHUMG00000134313 8 8q21.13 fatty acid binding protein 5 (psoriasis-associated) protein-coding FABP5 fatty acid binding protein 5 (psoriasis-associated) O epidermal-type fatty acid-binding protein|fatty acid-binding protein, epidermal|psoriasis-associated fatty acid-binding protein homolog 20121230 -9606 2172 FABP6 - I-15P|I-BABP|I-BALB|I-BAP|ILBP|ILBP3|ILLBP HGNC:3561|MIM:600422|Ensembl:ENSG00000170231|HPRD:02689|Vega:OTTHUMG00000130329 5 5q33.3-q34 fatty acid binding protein 6, ileal protein-coding FABP6 fatty acid binding protein 6, ileal O GT|gastrotropin|ileal bile acid binding protein|ileal lipid-binding protein|illeal lipid-binding protein|intestinal 15 kDa protein 20121230 -9606 2173 FABP7 RP11-548E19.1 B-FABP|BLBP|FABPB|MRG HGNC:3562|MIM:602965|Ensembl:ENSG00000164434|HPRD:04271|Vega:OTTHUMG00000015489 6 6q22-q23 fatty acid binding protein 7, brain protein-coding FABP7 fatty acid binding protein 7, brain O brain lipid binding protein|brain lipid-binding protein|brain-type fatty acid-binding protein|fatty acid-binding protein 7|fatty acid-binding protein, brain|mammary-derived growth inhibitor related|mammary-derived growth inhibitor-related 20121230 -9606 2175 FANCA - FA|FA-H|FA1|FAA|FACA|FAH|FANCH HGNC:3582|MIM:607139|Ensembl:ENSG00000187741|HPRD:06186|Vega:OTTHUMG00000173049 16 16q24.3 Fanconi anemia, complementation group A protein-coding FANCA Fanconi anemia, complementation group A O Fanconi anemia group A protein|Fanconi anemia, complementation group H|Fanconi anemia, type 1 20121230 -9606 2176 FANCC RP11-80I15.2 FA3|FAC|FACC HGNC:3584|MIM:613899|Ensembl:ENSG00000158169|HPRD:01967|Vega:OTTHUMG00000020279 9 9q22.3 Fanconi anemia, complementation group C protein-coding FANCC Fanconi anemia, complementation group C O Fanconi anemia group C protein 20121230 -9606 2177 FANCD2 - FA-D2|FA4|FACD|FAD|FAD2|FANCD HGNC:3585|MIM:613984|Ensembl:ENSG00000144554|HPRD:01968|Vega:OTTHUMG00000128670 3 3p26 Fanconi anemia, complementation group D2 protein-coding FANCD2 Fanconi anemia, complementation group D2 O Fanconi anemia group D2 protein 20121230 -9606 2178 FANCE - FACE|FAE HGNC:3586|MIM:613976|Ensembl:ENSG00000112039|HPRD:02943|Vega:OTTHUMG00000014565 6 6p22-p21 Fanconi anemia, complementation group E protein-coding FANCE Fanconi anemia, complementation group E O Fanconi anemia group E protein 20121230 -9606 2180 ACSL1 - ACS1|FACL1|FACL2|LACS|LACS1|LACS2 HGNC:3569|MIM:152425|Ensembl:ENSG00000151726|HPRD:01068|Vega:OTTHUMG00000160547 4 4q35 acyl-CoA synthetase long-chain family member 1 protein-coding ACSL1 acyl-CoA synthetase long-chain family member 1 O LACS 1|LACS 2|acyl-CoA synthetase 1|fatty-acid-Coenzyme A ligase, long-chain 1|fatty-acid-Coenzyme A ligase, long-chain 2|lignoceroyl-CoA synthase|long-chain acyl-CoA synthetase 1|long-chain acyl-CoA synthetase 2|long-chain fatty acid-CoA ligase 2|long-chain fatty-acid-coenzyme A ligase 1|long-chain-fatty-acid--CoA ligase 1|palmitoyl-CoA ligase 1|palmitoyl-CoA ligase 2|paltimoyl-CoA ligase 1 20121230 -9606 2181 ACSL3 - ACS3|FACL3|PRO2194 HGNC:3570|MIM:602371|Ensembl:ENSG00000123983|HPRD:03845|Vega:OTTHUMG00000133160 2 2q34-q35 acyl-CoA synthetase long-chain family member 3 protein-coding ACSL3 acyl-CoA synthetase long-chain family member 3 O LACS 3|fatty-acid-Coenzyme A ligase, long-chain 3|lignoceroyl-CoA synthase|long-chain acyl-CoA synthetase 3|long-chain-fatty-acid--CoA ligase 3 20121230 -9606 2182 ACSL4 - ACS4|FACL4|LACS4|MRX63|MRX68 HGNC:3571|MIM:300157|Ensembl:ENSG00000068366|HPRD:02152|Vega:OTTHUMG00000022190 X Xq22.3-q23 acyl-CoA synthetase long-chain family member 4 protein-coding ACSL4 acyl-CoA synthetase long-chain family member 4 O LACS 4|acyl-CoA synthetase 4|fatty-acid-Coenzyme A ligase, long-chain 4|lignoceroyl-CoA synthase|long-chain acyl-CoA synthetase 4|long-chain fatty-acid-Coenzyme A ligase 4|long-chain-fatty-acid--CoA ligase 4 20121230 -9606 2184 FAH - - HGNC:3579|MIM:613871|Ensembl:ENSG00000103876|HPRD:02040|Vega:OTTHUMG00000144187 15 15q25.1 fumarylacetoacetate hydrolase (fumarylacetoacetase) protein-coding FAH fumarylacetoacetate hydrolase (fumarylacetoacetase) O FAA|beta-diketonase|fumarylacetoacetase 20121230 -9606 2185 PTK2B - CADTK|CAKB|FADK2|FAK2|PKB|PTK|PYK2|RAFTK HGNC:9612|MIM:601212|Ensembl:ENSG00000120899|HPRD:03131|Vega:OTTHUMG00000102082 8 8p21.1 PTK2B protein tyrosine kinase 2 beta protein-coding PTK2B PTK2B protein tyrosine kinase 2 beta O CAK-beta|FADK 2|calcium-dependent tyrosine kinase|calcium-regulated non-receptor proline-rich tyrosine kinase|cell adhesion kinase beta|focal adhesion kinase 2|proline-rich tyrosine kinase 2|protein kinase B|protein-tyrosine kinase 2-beta|related adhesion focal tyrosine kinase 20121230 -9606 2186 BPTF - FAC1|FALZ|NURF301 HGNC:3581|MIM:601819|Ensembl:ENSG00000171634|HPRD:03490|Vega:OTTHUMG00000132254 17 17q24.3 bromodomain PHD finger transcription factor protein-coding BPTF bromodomain PHD finger transcription factor O bromodomain and PHD domain transcription factor|bromodomain and PHD finger-containing transcription factor|fetal Alz-50 clone 1 protein|fetal Alz-50 reactive clone 1|fetal Alzheimer antigen|nucleosome remodeling factor, large subunit|nucleosome-remodeling factor subunit BPTF 20121230 -9606 2187 FANCB - FA2|FAAP90|FAAP95|FAB|FACB HGNC:3583|MIM:300515|Ensembl:ENSG00000181544|HPRD:06557|Vega:OTTHUMG00000021168 X Xp22.2 Fanconi anemia, complementation group B protein-coding FANCB Fanconi anemia, complementation group B O Fanconi anemia group B protein|Fanconi anemia-associated polypeptide of 95 kDa 20121230 -9606 2188 FANCF - FAF HGNC:3587|MIM:613897|Ensembl:ENSG00000183161|HPRD:04589|Vega:OTTHUMG00000166070 11 11p15 Fanconi anemia, complementation group F protein-coding FANCF Fanconi anemia, complementation group F O Fanconi anemia group F protein 20121230 -9606 2189 FANCG - FAG|XRCC9 HGNC:3588|MIM:602956|Ensembl:ENSG00000221829|HPRD:04262|Vega:OTTHUMG00000019850 9 9p13 Fanconi anemia, complementation group G protein-coding FANCG Fanconi anemia, complementation group G O DNA repair protein XRCC9|Fanconi anemia group G protein|X-ray repair complementing defective repair in Chinese hamster cells 9|X-ray repair, complementing defective, in Chinese hamster, 9 20121230 -9606 2191 FAP - DPPIV|FAPA HGNC:3590|MIM:600403|Ensembl:ENSG00000078098|HPRD:02674|Vega:OTTHUMG00000153890 2 2q23 fibroblast activation protein, alpha protein-coding FAP fibroblast activation protein, alpha O 170 kDa melanoma membrane-bound gelatinase|integral membrane serine protease|seprase 20121230 -9606 2192 FBLN1 CTA-941F9.7 FBLN|FIBL1 HGNC:3600|MIM:135820|Ensembl:ENSG00000077942|HPRD:00629|Vega:OTTHUMG00000151340 22 22q13.31 fibulin 1 protein-coding FBLN1 fibulin 1 O fibulin-1 20121230 -9606 2193 FARSA - CML33|FARSL|FARSLA|FRSA|PheHA HGNC:3592|MIM:602918|Ensembl:ENSG00000179115|HPRD:04227|Vega:OTTHUMG00000180569 19 19p13.2 phenylalanyl-tRNA synthetase, alpha subunit protein-coding FARSA phenylalanyl-tRNA synthetase, alpha subunit O pheRS|phenylalanine tRNA ligase 1, alpha, cytoplasmic|phenylalanine--tRNA ligase alpha chain|phenylalanine--tRNA ligase alpha subunit|phenylalanine-tRNA synthetase alpha-subunit|phenylalanine-tRNA synthetase-like, alpha subunit|phenylalanyl-tRNA synthetase alpha chain|phenylalanyl-tRNA synthetase-like, alpha subunit 20121230 -9606 2194 FASN - FAS|OA-519|SDR27X1 HGNC:3594|MIM:600212|Ensembl:ENSG00000169710|HPRD:02567|Vega:OTTHUMG00000178527 17 17q25 fatty acid synthase protein-coding FASN fatty acid synthase O short chain dehydrogenase/reductase family 27X, member 1 20121230 -9606 2195 FAT1 - CDHF7|CDHR8|FAT|ME5|hFat1 HGNC:3595|MIM:600976|Ensembl:ENSG00000083857|HPRD:02986|Vega:OTTHUMG00000160320 4 4q35 FAT tumor suppressor homolog 1 (Drosophila) protein-coding FAT1 FAT tumor suppressor homolog 1 (Drosophila) O FAT tumor suppressor 1|cadherin ME5|cadherin family member 7|cadherin-related family member 8|cadherin-related tumor suppressor homolog|protein fat homolog|protocadherin Fat 1 20121230 -9606 2196 FAT2 - CDHF8|CDHR9|HFAT2|MEGF1 HGNC:3596|MIM:604269|Ensembl:ENSG00000086570|HPRD:05041|Vega:OTTHUMG00000130126 5 5q33.1 FAT tumor suppressor homolog 2 (Drosophila) protein-coding FAT2 FAT tumor suppressor homolog 2 (Drosophila) O cadherin family member 8|cadherin-related family member 9|multiple EGF-like domains protein 1|multiple epidermal growth factor-like domains 1|multiple epidermal growth factor-like domains protein 1|protocadherin FAT2|protocadherin Fat 2 20121230 -9606 2197 FAU - FAU1|Fub1|Fubi|MNSFbeta|RPS30|S30|asr1 HGNC:3597|MIM:134690|Ensembl:ENSG00000149806|HPRD:00002|Vega:OTTHUMG00000165606 11 11q13 Finkel-Biskis-Reilly murine sarcoma virus (FBR-MuSV) ubiquitously expressed protein-coding FAU Finkel-Biskis-Reilly murine sarcoma virus (FBR-MuSV) ubiquitously expressed O 40S ribosomal protein S30|FAU-encoded ubiquitin-like protein|FBR-MuSV-associated ubiquitously expressed|Finkel-Biskis-Reilly murine sarcoma virus (FBR-MuSV) ubiquitously expressed (fox derived)|monoclonal nonspecific suppressor factor beta|ribosomal protein S30|ubiquitin-like protein fubi and ribosomal protein S30|ubiquitin-like-S30 fusion protein 20121230 -9606 2199 FBLN2 - - HGNC:3601|MIM:135821|Ensembl:ENSG00000163520|HPRD:00630|Vega:OTTHUMG00000155437 3 3p25.1 fibulin 2 protein-coding FBLN2 fibulin 2 O FIBL-2|fibulin-2 20121230 -9606 2200 FBN1 - ACMICD|ECTOL1|FBN|GPHYSD2|MASS|MFS1|OCTD|SGS|SSKS|WMS|WMS2 HGNC:3603|MIM:134797|Ensembl:ENSG00000166147|HPRD:00618|Vega:OTTHUMG00000172218 15 15q21.1 fibrillin 1 protein-coding FBN1 fibrillin 1 O fibrillin 15|fibrillin-1 20121230 -9606 2201 FBN2 - CCA|DA9 HGNC:3604|MIM:612570|Ensembl:ENSG00000138829|HPRD:00416|Vega:OTTHUMG00000163082 5 5q23-q31 fibrillin 2 protein-coding FBN2 fibrillin 2 O fibrillin 5|fibrillin-2 20121230 -9606 2202 EFEMP1 - DHRD|DRAD|FBLN3|FBNL|FIBL-3|MLVT|MTLV|S1-5 HGNC:3218|MIM:601548|Ensembl:ENSG00000115380|HPRD:03331|Vega:OTTHUMG00000129343 2 2p16 EGF containing fibulin-like extracellular matrix protein 1 protein-coding EFEMP1 EGF containing fibulin-like extracellular matrix protein 1 O EGF-containing fibulin-like extracellular matrix protein 1|extracellular protein S1-5|fibulin-3 20121230 -9606 2203 FBP1 RP11-342C23.1 FBP HGNC:3606|MIM:611570|Ensembl:ENSG00000165140|HPRD:01973|Vega:OTTHUMG00000020268 9 9q22.3 fructose-1,6-bisphosphatase 1 protein-coding FBP1 fructose-1,6-bisphosphatase 1 O D-fructose-1,6-bisphosphate 1-phosphohydrolase 1|FBPase 1|fructose-bisphosphatase 1|growth-inhibiting protein 17 20121230 -9606 2204 FCAR XXbac-BCX195L8.9 CD89 HGNC:3608|MIM:147045|Ensembl:ENSG00000186431|HPRD:00914|Vega:OTTHUMG00000065936 19 19q13.42 Fc fragment of IgA, receptor for protein-coding FCAR Fc fragment of IgA, receptor for O Fc alpha receptor|IgA Fc receptor|immunoglobulin alpha Fc receptor 20121230 -9606 2205 FCER1A RP11-550P17.3 FCE1A|FcERI HGNC:3609|MIM:147140|Ensembl:ENSG00000179639|HPRD:00917|Vega:OTTHUMG00000037176 1 1q23 Fc fragment of IgE, high affinity I, receptor for; alpha polypeptide protein-coding FCER1A Fc fragment of IgE, high affinity I, receptor for; alpha polypeptide O Fc IgE receptor, alpha polypeptide|Fc epsilon RI alpha-chain|Fc-epsilon RI-alpha|high affinity immunoglobulin epsilon receptor alpha-subunit|high affinity immunoglobulin epsilon receptor subunit alpha|igE Fc receptor subunit alpha|immunoglobulin E receptor, high-affinity, of mast cells, alpha polypeptide 20121230 -9606 2206 MS4A2 - APY|ATOPY|FCER1B|FCERI|IGEL|IGER|IGHER|MS4A1 HGNC:7316|MIM:147138|Ensembl:ENSG00000149534|HPRD:00915|Vega:OTTHUMG00000167239 11 11q12-q13 membrane-spanning 4-domains, subfamily A, member 2 protein-coding MS4A2 membrane-spanning 4-domains, subfamily A, member 2 O Fc fragment of IgE, high affinity I, receptor for; beta polypeptide|High affinity immunoglobulin epsilon receptor beta-subunit (FcERI) (IgE Fc receptor, beta-subunit) (Fc epsilon receptor I beta-chain)|high affinity IgE receptor beta subunit|high affinity immunoglobulin epsilon receptor subunit beta|igE Fc receptor subunit beta|immunoglobulin E receptor, high affinity, beta polypeptide 20121230 -9606 2207 FCER1G - FCRG HGNC:3611|MIM:147139|Ensembl:ENSG00000158869|HPRD:00916|Vega:OTTHUMG00000034343 1 1q23 Fc fragment of IgE, high affinity I, receptor for; gamma polypeptide protein-coding FCER1G Fc fragment of IgE, high affinity I, receptor for; gamma polypeptide O Fc receptor gamma-chain|fc-epsilon RI-gamma|fcRgamma|fceRI gamma|high affinity immunoglobulin epsilon receptor subunit gamma|immunoglobulin E receptor, high affinity, gamma chain 20121230 -9606 2208 FCER2 - CD23|CD23A|CLEC4J|FCE2|IGEBF HGNC:3612|MIM:151445|Ensembl:ENSG00000104921|HPRD:01049 19 19p13.3 Fc fragment of IgE, low affinity II, receptor for (CD23) protein-coding FCER2 Fc fragment of IgE, low affinity II, receptor for (CD23) O BLAST-2|C-type lectin domain family 4, member J|CD23 antigen|fc-epsilon-RII|immunoglobulin E-binding factor|low affinity immunoglobulin epsilon Fc receptor|lymphocyte IgE receptor 20121230 -9606 2209 FCGR1A RP11-196G18.2 CD64|CD64A|FCRI|IGFR1 HGNC:3613|MIM:146760|Ensembl:ENSG00000150337|HPRD:00904|Vega:OTTHUMG00000012089 1 1q21.2-q21.3 Fc fragment of IgG, high affinity Ia, receptor (CD64) protein-coding FCGR1A Fc fragment of IgG, high affinity Ia, receptor (CD64) O Fc fragment of IgG, high affinity Ia, receptor for (CD64)|Fc gamma receptor|Fc-gamma RI|Fc-gamma receptor I A1|IgG Fc receptor I|fc-gamma RIA|fcgammaRIa|high affinity immunoglobulin gamma Fc receptor I 20121230 -9606 2210 FCGR1B RP11-439A17.1 CD64b|IGFRB HGNC:3614|MIM:601502|Ensembl:ENSG00000198019|HPRD:14225|Vega:OTTHUMG00000040903 1 1p11.2 Fc fragment of IgG, high affinity Ib, receptor (CD64) protein-coding FCGR1B Fc fragment of IgG, high affinity Ib, receptor (CD64) O Fc-gamma receptor I B2|fc-gamma RIB|fcRIB|hFcgammaRIB|high affinity immunoglobulin gamma Fc receptor IB|igG Fc receptor IB 20121230 -9606 2212 FCGR2A RP11-5K23.6 CD32|CD32A|CDw32|FCG2|FCGR2|FCGR2A1|FcGR|IGFR2 HGNC:3616|MIM:146790|Ensembl:ENSG00000143226|HPRD:00906|Vega:OTTHUMG00000034469 1 1q23 Fc fragment of IgG, low affinity IIa, receptor (CD32) protein-coding FCGR2A Fc fragment of IgG, low affinity IIa, receptor (CD32) O Immunoglobulin G Fc receptor II|fc-gamma RII-a|fc-gamma-RIIa|fcRII-a|igG Fc receptor II-a|low affinity immunoglobulin gamma Fc region receptor II-a 20121230 -9606 2213 FCGR2B RP11-474I16.2 CD32|CD32B|FCG2|FCGR2|IGFR2 HGNC:3618|MIM:604590|Ensembl:ENSG00000072694|HPRD:06849|Vega:OTTHUMG00000034470 1 1q23 Fc fragment of IgG, low affinity IIb, receptor (CD32) protein-coding FCGR2B Fc fragment of IgG, low affinity IIb, receptor (CD32) O CDw32|Fc fragment of IgG, low affinity II, receptor for (CD32)|Fc fragment of IgG, low affinity IIb, receptor for (CD32)|Fc gamma RIIb|fc-gamma RII-b|fc-gamma-RIIb|fcRII-b|igG Fc receptor II-b|low affinity immunoglobulin gamma Fc region receptor II-b 20121230 -9606 2214 FCGR3A RP11-5K23.1 CD16|CD16A|FCG3|FCGR3|FCGRIII|FCR-10|FCRIII|FCRIIIA|IGFR3 HGNC:3619|MIM:146740|Ensembl:ENSG00000203747|HPRD:00903|Vega:OTTHUMG00000034466 1 1q23 Fc fragment of IgG, low affinity IIIa, receptor (CD16a) protein-coding FCGR3A Fc fragment of IgG, low affinity IIIa, receptor (CD16a) O CD16a antigen|Fc fragment of IgG, low affinity III, receptor for (CD16)|Fc gamma receptor III-A|Fc-gamma RIII-alpha|Fc-gamma RIIIa|Fc-gamma receptor III-2 (CD 16)|Fc-gamma receptor IIIb (CD16)|FcgammaRIIIA|fc-gamma RIII|igG Fc receptor III-2|immunoglobulin G Fc receptor III|low affinity immunoglobulin gamma Fc region receptor III-A|neutrophil-specific antigen NA 20121230 -9606 2215 FCGR3B RP11-25K21.3 CD16|CD16b|FCG3|FCGR3|FCR-10|FCRIII|FCRIIIb HGNC:3620|MIM:610665|Ensembl:ENSG00000162747|HPRD:09951|Vega:OTTHUMG00000074099 1 1q23 Fc fragment of IgG, low affinity IIIb, receptor (CD16b) protein-coding FCGR3B Fc fragment of IgG, low affinity IIIb, receptor (CD16b) O Fc fragment of IgG, low affinity IIIb, receptor for (CD16)|Fc-gamma receptor IIIb (CD 16)|fc-gamma RIII|fc-gamma RIII-beta|fc-gamma RIIIb|igG Fc receptor III-1|low affinity immunoglobulin gamma Fc region receptor III-B 20121230 -9606 2216 FDX1P2 - FDXP2 HGNC:3641 21 21q21.3 ferredoxin 1 pseudogene 2 pseudo FDX1P2 ferredoxin 1 pseudogene 2 O - 20121230 -9606 2217 FCGRT - FCRN|alpha-chain HGNC:3621|MIM:601437|Ensembl:ENSG00000104870|HPRD:03257 19 19q13.3 Fc fragment of IgG, receptor, transporter, alpha protein-coding FCGRT Fc fragment of IgG, receptor, transporter, alpha O FcRn alpha chain|IgG Fc fragment receptor transporter alpha chain|IgG receptor FcRn large subunit p51|immunoglobulin receptor, intestinal, heavy chain|major histocompatibility complex class I-like Fc receptor|neonatal Fc receptor|neonatal Fc-receptor for Ig 20121230 -9606 2218 FKTN RP11-235C23.1 CMD1X|FCMD|LGMD2M|MDDGA4|MDDGB4|MDDGC4 HGNC:3622|MIM:607440|Ensembl:ENSG00000106692|HPRD:06308|Vega:OTTHUMG00000020425 9 9q31-q33 fukutin protein-coding FKTN fukutin O Fukuyama type congenital muscular dystrophy protein|patient fukutin 20121230 -9606 2219 FCN1 RP11-447M12.1 FCNM HGNC:3623|MIM:601252|Ensembl:ENSG00000085265|HPRD:03153|Vega:OTTHUMG00000020895 9 9q34 ficolin (collagen/fibrinogen domain containing) 1 protein-coding FCN1 ficolin (collagen/fibrinogen domain containing) 1 O M-ficolin|collagen/fibrinogen domain-containing protein 1|ficolin (collagen/fibrinogen domain-containing) 1|ficolin-1|ficolin-A|ficolin-alpha 20121230 -9606 2220 FCN2 RP11-263F14.2 EBP-37|FCNL|P35|ficolin-2 HGNC:3624|MIM:601624|Ensembl:ENSG00000160339|HPRD:03376|Vega:OTTHUMG00000020892 9 9q34.3 ficolin (collagen/fibrinogen domain containing lectin) 2 (hucolin) protein-coding FCN2 ficolin (collagen/fibrinogen domain containing lectin) 2 (hucolin) O 37 kDa elastin-binding protein|L-ficolin|collagen/fibrinogen domain-containing protein 2|ficolin B|ficolin-2|ficolin-B|ficolin-beta|serum lectin p35 20121230 -9606 2221 FCP1 - FCP|FCPX HGNC:3627|MIM:305435 X Xp22.3-p22.2 F-cell production 1 unknown FCP1 F-cell production 1 O - 20121209 -9606 2222 FDFT1 - DGPT|ERG9|SQS|SS HGNC:3629|MIM:184420|Ensembl:ENSG00000079459|HPRD:01694|Vega:OTTHUMG00000090801 8 8p23.1-p22 farnesyl-diphosphate farnesyltransferase 1 protein-coding FDFT1 farnesyl-diphosphate farnesyltransferase 1 O FPP:FPP farnesyltransferase|presqualene-di-diphosphate synthase|squalene synthase|squalene synthetase 20121230 -9606 2224 FDPS - FPPS|FPS HGNC:3631|MIM:134629|Ensembl:ENSG00000160752|HPRD:00606|Vega:OTTHUMG00000013909 1 1q22 farnesyl diphosphate synthase protein-coding FDPS farnesyl diphosphate synthase O (2E,6E)-farnesyl diphosphate synthase|FPP synthase|FPP synthetase|dimethylallyltranstransferase|farnesyl pyrophosphate synthase|farnesyl pyrophosphate synthetase, dimethylallyltranstransferase, geranyltranstransferase|geranyltranstransferase 20121230 -9606 2227 FDPSP3 - FDPSL3|FPSL3 HGNC:3634 14 14q22.2 farnesyl diphosphate synthase pseudogene 3 pseudo FDPSP3 farnesyl diphosphate synthase pseudogene 3 O - 20121230 -9606 2228 FDPSP4 - CHR39B|FDPSL4|FPSL4 HGNC:3635 15 15q15.2 farnesyl diphosphate synthase pseudogene 4 pseudo FDPSP4 farnesyl diphosphate synthase pseudogene 4 O - 20121230 -9606 2229 FDPSP5 - CHR39C|FDPSL5|FPSL5 HGNC:3636 X Xp11.3 farnesyl diphosphate synthase pseudogene 5 pseudo FDPSP5 farnesyl diphosphate synthase pseudogene 5 O - 20121230 -9606 2230 FDX1 - ADX|FDX|LOH11CR1D HGNC:3638|MIM:103260|Ensembl:ENSG00000137714|HPRD:00059|Vega:OTTHUMG00000166589 11 11q22 ferredoxin 1 protein-coding FDX1 ferredoxin 1 O adrenal ferredoxin|adrenodoxin, mitochondrial|ferredoxin-1|hepatoredoxin|mitochondrial adrenodoxin 20121230 -9606 2231 FDX1P1 - ADXP1|FDXP1 HGNC:3640 20 20q11.22 ferredoxin 1 pseudogene 1 pseudo FDX1P1 ferredoxin 1 pseudogene 1 O - 20121230 -9606 2232 FDXR - ADXR HGNC:3642|MIM:103270|Ensembl:ENSG00000161513|HPRD:00060|Vega:OTTHUMG00000179026 17 17q24-q25 ferredoxin reductase protein-coding FDXR ferredoxin reductase O AR|NADPH:adrenodoxin oxidoreductase, mitochondrial|adrenodoxin reductase|ferredoxin--NADP(+) reductase 20121230 -9606 2233 FEB1 - - HGNC:3643|MIM:121210 8 8q13-q21 febrile convulsions 1 unknown FEB1 febrile convulsions 1 O - 20120622 -9606 2234 FEB2 - - HGNC:3644|MIM:602477 19 19p13.3 febrile convulsions 2 unknown FEB2 febrile convulsions 2 O - 20120622 -9606 2235 FECH - EPP|FCE HGNC:3647|MIM:612386|Ensembl:ENSG00000066926|HPRD:01509|Vega:OTTHUMG00000132740 18 18q21.3 ferrochelatase protein-coding FECH ferrochelatase O ferrochelatase, mitochondrial|heme synthase|heme synthetase|protoheme ferro-lyase|protoporphyria 20121230 -9606 2236 FECHP1 - FECHP HGNC:3648 3 3p22.3 ferrochelatase pseudogene 1 pseudo FECHP1 ferrochelatase pseudogene 1 O - 20121230 -9606 2237 FEN1 - FEN-1|MF1|RAD2 HGNC:3650|MIM:600393|Ensembl:ENSG00000168496|HPRD:02670|Vega:OTTHUMG00000168162 11 11q12 flap structure-specific endonuclease 1 protein-coding FEN1 flap structure-specific endonuclease 1 O DNase IV|flap endonuclease 1|maturation factor 1|maturation factor-1 20121230 -9606 2239 GPC4 RP6-198C21.1 K-glypican HGNC:4452|MIM:300168|Ensembl:ENSG00000076716|HPRD:02160|Vega:OTTHUMG00000022434 X Xq26.1 glypican 4 protein-coding GPC4 glypican 4 O dJ900E8.1 (glypican 4)|glypican proteoglycan 4|glypican-4 20121230 -9606 2241 FER - FerT|PPP1R74|TYK3 HGNC:3655|MIM:176942|Ensembl:ENSG00000151422|HPRD:01491|Vega:OTTHUMG00000128751 5 5q21 fer (fps/fes related) tyrosine kinase protein-coding FER fer (fps/fes related) tyrosine kinase O feline encephalitis virus-related kinase FER|fujinami poultry sarcoma/Feline sarcoma-related protein Fer|p94-Fer|phosphoprotein NCP94|protein phosphatase 1, regulatory subunit 74|proto-oncogene c-Fer|tyrosine kinase 3|tyrosine-protein kinase Fer 20121230 -9606 2242 FES - FPS HGNC:3657|MIM:190030|Ensembl:ENSG00000182511|HPRD:01814|Vega:OTTHUMG00000044456 15 15q26.1 feline sarcoma oncogene protein-coding FES feline sarcoma oncogene O Oncogene FES, feline sarcoma virus|feline sarcoma (Snyder-Theilen) viral (v-fes)/Fujinami avian sarcoma (PRCII) viral (v-fps) oncogene homolog|feline sarcoma/Fujinami avian sarcoma oncogene homolog|p93c-fes|proto-oncogene c-Fes|proto-oncogene c-Fps|proto-oncogene tyrosine-protein kinase Fes/Fps|tyrosine-protein kinase Fes/Fps 20121230 -9606 2243 FGA - Fib2 HGNC:3661|MIM:134820|Ensembl:ENSG00000171560|HPRD:00619|Vega:OTTHUMG00000150330 4 4q28 fibrinogen alpha chain protein-coding FGA fibrinogen alpha chain O fibrinogen, A alpha polypeptide 20121230 -9606 2244 FGB - - HGNC:3662|MIM:134830|Ensembl:ENSG00000171564|HPRD:00620|Vega:OTTHUMG00000150331 4 4q28 fibrinogen beta chain protein-coding FGB fibrinogen beta chain O fibrinogen, B beta polypeptide 20121230 -9606 2245 FGD1 RP1-112K5.1 AAS|FGDY|MRXS16|ZFYVE3 HGNC:3663|MIM:300546|Ensembl:ENSG00000102302|HPRD:02373|Vega:OTTHUMG00000021627 X Xp11.21 FYVE, RhoGEF and PH domain containing 1 protein-coding FGD1 FYVE, RhoGEF and PH domain containing 1 O FYVE, RhoGEF and PH domain-containing protein 1|faciogenital dysplasia 1 protein|rho/Rac GEF|rho/Rac guanine nucleotide exchange factor FGD1|zinc finger FYVE domain-containing protein 3 20121230 -9606 2246 FGF1 - AFGF|ECGF|ECGF-beta|ECGFA|ECGFB|FGF-1|FGF-alpha|FGFA|GLIO703|HBGF-1|HBGF1 HGNC:3665|MIM:131220|Ensembl:ENSG00000113578|HPRD:00567|Vega:OTTHUMG00000059703 5 5q31 fibroblast growth factor 1 (acidic) protein-coding FGF1 fibroblast growth factor 1 (acidic) O beta-endothelial cell growth factor|endothelial cell growth factor, alpha|endothelial cell growth factor, beta|fibroblast growth factor 1|heparin-binding growth factor 1 20121230 -9606 2247 FGF2 - BFGF|FGF-2|FGFB|HBGF-2 HGNC:3676|MIM:134920|Ensembl:ENSG00000138685|HPRD:00622|Vega:OTTHUMG00000039506 4 4q26 fibroblast growth factor 2 (basic) protein-coding FGF2 fibroblast growth factor 2 (basic) O basic fibroblast growth factor bFGF|fibroblast growth factor 2|heparin-binding growth factor 2|prostatropin 20121230 -9606 2248 FGF3 - HBGF-3|INT2 HGNC:3681|MIM:164950|Ensembl:ENSG00000186895|HPRD:01289|Vega:OTTHUMG00000167888 11 11q13 fibroblast growth factor 3 protein-coding FGF3 fibroblast growth factor 3 O FGF-3|INT-2 proto-oncogene protein|V-INT2 murine mammary tumor virus integration site oncogene homolog|fibroblast growth factor 3 (murine mammary tumor virus integration site (v-int-2) oncogene homolog)|heparin-binding growth factor 3|murine mammary tumor virus integration site 2, mouse|oncogene INT2|proto-oncogene Int-2 20121230 -9606 2249 FGF4 - HBGF-4|HST|HST-1|HSTF1|K-FGF|KFGF HGNC:3682|MIM:164980|Ensembl:ENSG00000075388|HPRD:01294|Vega:OTTHUMG00000167887 11 11q13.3 fibroblast growth factor 4 protein-coding FGF4 fibroblast growth factor 4 O FGF-4|HSTF-1|fibroblast growth factor 4 splice isoform|heparin secretory transforming protein 1|heparin secretory-transforming protein 1|heparin-binding growth factor 4|human stomach cancer, transforming factor from FGF-related oncogene|kaposi sarcoma oncogene|oncogene HST|transforming protein KS3 20121230 -9606 2250 FGF5 - HBGF-5|Smag-82 HGNC:3683|MIM:165190|Ensembl:ENSG00000138675|HPRD:01307|Vega:OTTHUMG00000130288 4 4q21 fibroblast growth factor 5 protein-coding FGF5 fibroblast growth factor 5 O heparin-binding growth factor 5 20121230 -9606 2251 FGF6 - HBGF-6|HST2 HGNC:3684|MIM:134921|Ensembl:ENSG00000111241|HPRD:00623|Vega:OTTHUMG00000168242 12 12p13 fibroblast growth factor 6 protein-coding FGF6 fibroblast growth factor 6 O FGF-6|HST-2|HSTF-2|heparin secretory-transforming protein 2|heparin-binding growth factor 6 20121230 -9606 2252 FGF7 - HBGF-7|KGF HGNC:3685|MIM:148180|Ensembl:ENSG00000140285|HPRD:01022|Vega:OTTHUMG00000131517 15 15q21.2 fibroblast growth factor 7 protein-coding FGF7 fibroblast growth factor 7 O FGF-7|heparin-binding growth factor 7|keratinocyte growth factor 20121230 -9606 2253 FGF8 - AIGF|FGF-8|HBGF-8|HH6|KAL6 HGNC:3686|MIM:600483|Ensembl:ENSG00000107831|HPRD:02727|Vega:OTTHUMG00000018940 10 10q24 fibroblast growth factor 8 (androgen-induced) protein-coding FGF8 fibroblast growth factor 8 (androgen-induced) O androgen-induced growth factor|fibroblast growth factor 8|heparin-binding growth factor 8 20121230 -9606 2254 FGF9 - GAF|HBFG-9|SYNS3 HGNC:3687|MIM:600921|Ensembl:ENSG00000102678|HPRD:02951|Vega:OTTHUMG00000017412 13 13q11-q12 fibroblast growth factor 9 (glia-activating factor) protein-coding FGF9 fibroblast growth factor 9 (glia-activating factor) O FGF-9|HBGF-9|fibroblast growth factor 9|heparin-binding growth factor 9 20121230 -9606 2255 FGF10 - - HGNC:3666|MIM:602115|Ensembl:ENSG00000070193|HPRD:03665|Vega:OTTHUMG00000131153 5 5p13-p12 fibroblast growth factor 10 protein-coding FGF10 fibroblast growth factor 10 O FGF-10|keratinocyte growth factor 2|produced by fibroblasts of urinary bladder lamina propria 20121230 -9606 2256 FGF11 - FHF3 HGNC:3667|MIM:601514|Ensembl:ENSG00000161958|HPRD:03304|Vega:OTTHUMG00000108136 17 17p13.1 fibroblast growth factor 11 protein-coding FGF11 fibroblast growth factor 11 O FGF-11|FHF-3|fibroblast growth factor homologous factor 3 20121230 -9606 2257 FGF12 - FGF12B|FHF1 HGNC:3668|MIM:601513|Ensembl:ENSG00000114279|HPRD:03303|Vega:OTTHUMG00000156132 3 3q28 fibroblast growth factor 12 protein-coding FGF12 fibroblast growth factor 12 O FGF-12|FHF-1|fibroblast growth factor 12B|fibroblast growth factor FGF-12b|fibroblast growth factor homologous factor 1|myocyte-activating factor 20121230 -9606 2258 FGF13 RP6-27P15.3 FGF-13|FGF2|FHF-2|FHF2 HGNC:3670|MIM:300070|Ensembl:ENSG00000129682|HPRD:02090|Vega:OTTHUMG00000022532 X Xq26.3 fibroblast growth factor 13 protein-coding FGF13 fibroblast growth factor 13 O fibroblast growth factor homologous factor 2 20121230 -9606 2259 FGF14 RP11-397O8.6 FGF-14|FHF-4|FHF4|SCA27 HGNC:3671|MIM:601515|Ensembl:ENSG00000102466|HPRD:03305|Vega:OTTHUMG00000017303 13 13q34 fibroblast growth factor 14 protein-coding FGF14 fibroblast growth factor 14 O bA397O8.2|fibroblast growth factor homologous factor 4 20121230 -9606 2260 FGFR1 - BFGFR|CD331|CEK|FGFBR|FGFR-1|FLG|FLT-2|FLT2|HBGFR|HH2|KAL2|N-SAM|OGD|bFGF-R-1 HGNC:3688|MIM:136350|Ensembl:ENSG00000077782|HPRD:00634|Vega:OTTHUMG00000147366 8 8p12 fibroblast growth factor receptor 1 protein-coding FGFR1 fibroblast growth factor receptor 1 O FGFR1/PLAG1 fusion|FMS-like tyrosine kinase 2|basic fibroblast growth factor receptor 1|fms-related tyrosine kinase 2|heparin-binding growth factor receptor|hydroxyaryl-protein kinase|proto-oncogene c-Fgr 20121230 -9606 2261 FGFR3 - ACH|CD333|CEK2|HSFGFR3EX|JTK4 HGNC:3690|MIM:134934|Ensembl:ENSG00000068078|HPRD:00624|Vega:OTTHUMG00000121148 4 4p16.3 fibroblast growth factor receptor 3 protein-coding FGFR3 fibroblast growth factor receptor 3 O FGFR-3|fibroblast growth factor receptor 3 variant 4|hydroxyaryl-protein kinase|tyrosine kinase JTK4 20121230 -9606 2262 GPC5 - - HGNC:4453|MIM:602446|Ensembl:ENSG00000179399|HPRD:03902|Vega:OTTHUMG00000017200 13 13q32 glypican 5 protein-coding GPC5 glypican 5 O bA93M14.1|glypican proteoglycan 5|glypican-5 20121230 -9606 2263 FGFR2 - BBDS|BEK|BFR-1|CD332|CEK3|CFD1|ECT1|JWS|K-SAM|KGFR|TK14|TK25 HGNC:3689|MIM:176943|Ensembl:ENSG00000066468|HPRD:01492|Vega:OTTHUMG00000019175 10 10q26 fibroblast growth factor receptor 2 protein-coding FGFR2 fibroblast growth factor receptor 2 O BEK fibroblast growth factor receptor|FGF receptor|FGFR-2|bacteria-expressed kinase|hydroxyaryl-protein kinase|keratinocyte growth factor receptor|protein tyrosine kinase, receptor like 14|soluble FGFR4 variant 4 20121230 -9606 2264 FGFR4 - CD334|JTK2|TKF HGNC:3691|MIM:134935|Ensembl:ENSG00000160867|HPRD:00625|Vega:OTTHUMG00000151523 5 5q35.1-qter fibroblast growth factor receptor 4 protein-coding FGFR4 fibroblast growth factor receptor 4 O FGFR-4|hydroxyaryl-protein kinase|protein-tyrosine kinase|tyrosine kinase related to fibroblast growth factor receptor|tyrosylprotein kinase 20121230 -9606 2266 FGG PRO2061 - HGNC:3694|MIM:134850|Ensembl:ENSG00000171557|HPRD:00621|Vega:OTTHUMG00000150329 4 4q28 fibrinogen gamma chain protein-coding FGG fibrinogen gamma chain O fibrinogen, gamma polypeptide 20121230 -9606 2267 FGL1 - HFREP1|HP-041|LFIRE-1|LFIRE1 HGNC:3695|MIM:605776|Ensembl:ENSG00000104760|HPRD:09312|Vega:OTTHUMG00000096989 8 8p22 fibrinogen-like 1 protein-coding FGL1 fibrinogen-like 1 O fibrinogen-like protein 1|hepassocin|hepatocellular carcinoma-related sequence|hepatocyte-derived fibrinogen-related protein 1|liver fibrinogen-related protein 1 20121230 -9606 2268 FGR RP1-159A19.2 SRC2|c-fgr|c-src2|p55-Fgr|p55c-fgr|p58-Fgr|p58c-fgr HGNC:3697|MIM:164940|Ensembl:ENSG00000000938|HPRD:01288|Vega:OTTHUMG00000003516 1 1p36.2-p36.1 Gardner-Rasheed feline sarcoma viral (v-fgr) oncogene homolog protein-coding FGR Gardner-Rasheed feline sarcoma viral (v-fgr) oncogene homolog O c-fgr protooncogene|c-src-2 proto-oncogene|p55-c-fgr protein|proto-oncogene c-Fgr|proto-oncogene tyrosine-protein kinase FGR|tyrosine-protein kinase Fgr 20121230 -9606 2270 FGS2 - - HGNC:3699|MIM:300321 X Xq11-q28 FG syndrome 2 unknown FGS2 FG syndrome 2 O - 20120622 -9606 2271 FH - HLRCC|LRCC|MCL|MCUL1 HGNC:3700|MIM:136850|Ensembl:ENSG00000091483|HPRD:00652|Vega:OTTHUMG00000039597 1 1q42.1 fumarate hydratase protein-coding FH fumarate hydratase O fumarase|fumarate hydratase, mitochondrial 20121230 -9606 2272 FHIT - AP3Aase|FRA3B HGNC:3701|MIM:601153|Ensembl:ENSG00000189283|HPRD:03096|Vega:OTTHUMG00000158591 3 3p14.2 fragile histidine triad protein-coding FHIT fragile histidine triad O AP3A hydrolase|bis(5'-adenosyl)-triphosphatase|diadenosine 5',5'''-P1,P3-triphosphate hydrolase|dinucleosidetriphosphatase|tumor suppressor protein 20121230 -9606 2273 FHL1 RP11-535K18.1 FHL-1|FHL1A|FHL1B|FLH1A|KYOT|SLIM|SLIM-1|SLIM1|SLIMMER|XMPMA HGNC:3702|MIM:300163|Ensembl:ENSG00000022267|HPRD:02157|Vega:OTTHUMG00000022504 X Xq26 four and a half LIM domains 1 protein-coding FHL1 four and a half LIM domains 1 O LIM protein SLIMMER|four and a half LIM domains protein 1|four-and-a-half Lin11, Isl-1 and Mec-3 domains 1|skeletal muscle LIM-protein 1|skeletal muscle LIM-protein1 20121230 -9606 2274 FHL2 - AAG11|DRAL|FHL-2|SLIM-3|SLIM3 HGNC:3703|MIM:602633|Ensembl:ENSG00000115641|HPRD:04026|Vega:OTTHUMG00000153120 2 2q12.2 four and a half LIM domains 2 protein-coding FHL2 four and a half LIM domains 2 O LIM domain protein DRAL|aging-associated gene 11|down-regulated in rhabdomyosarcoma LIM protein|four and a half LIM domains protein 2|four and a half LIM-domain protein 2|four-and-a-half LIM domains 2|skeletal muscle LIM-protein 3 20121230 -9606 2275 FHL3 - SLIM2 HGNC:3704|MIM:602790|Ensembl:ENSG00000183386|HPRD:09101|Vega:OTTHUMG00000004434 1 1p34 four and a half LIM domains 3 protein-coding FHL3 four and a half LIM domains 3 O FHL-3|LIM-only protein FHL3|SLIM-2|four and a half LIM domains protein 3|skeletal muscle LIM-protein 2 20121230 -9606 2277 FIGF - VEGF-D|VEGFD HGNC:3708|MIM:300091|Ensembl:ENSG00000165197|HPRD:02102|Vega:OTTHUMG00000021175 X Xp22.31 c-fos induced growth factor (vascular endothelial growth factor D) protein-coding FIGF c-fos induced growth factor (vascular endothelial growth factor D) O vascular endothelial growth factor D 20121230 -9606 2278 FIM1 - - - 6 6p23-p22.3 Friend-murine leukemia virus integration site 1 homolog other - - - - 20120315 -9606 2279 FIM3 - - - 3 3q27 Friend-murine leukemia virus integration site 3 homolog other - - - - 20120315 -9606 2280 FKBP1A RP11-314N13.2 FKBP-12|FKBP-1A|FKBP1|FKBP12|PKC12|PKCI2|PPIASE HGNC:3711|MIM:186945|Ensembl:ENSG00000088832|HPRD:01741|Vega:OTTHUMG00000031666 20 20p13 FK506 binding protein 1A, 12kDa protein-coding FKBP1A FK506 binding protein 1A, 12kDa O 12 kDa FK506-binding protein|12 kDa FKBP|FK506 binding protein12|FK506-binding protein 1|FK506-binding protein 12|FK506-binding protein 1A (12kD)|FK506-binding protein, T-cell, 12-kD|FKBP12-Exip3|PPIase FKBP1A|calstabin-1|immunophilin FKBP12|peptidyl-prolyl cis-trans isomerase FKBP1A|protein kinase C inhibitor 2|rotamase 20121230 -9606 2281 FKBP1B - FKBP12.6|FKBP1L|OTK4|PKBP1L|PPIase HGNC:3712|MIM:600620|Ensembl:ENSG00000119782|HPRD:02795|Vega:OTTHUMG00000151889 2 2p23.3 FK506 binding protein 1B, 12.6 kDa protein-coding FKBP1B FK506 binding protein 1B, 12.6 kDa O 12.6 kDa FK506-binding protein|12.6 kDa FKBP|FK506-binding protein 12.6|FK506-binding protein 1B|FKBP-12.6|FKBP-1B|PPIase FKBP1B|calstabin 2|h-FKBP-12|immunophilin FKBP12.6|peptidyl-prolyl cis-trans isomerase FKBP1B|rotamase 20121230 -9606 2282 FKBP1AP1 - FKBP12|FKBP1P1 HGNC:3714 19 19q13.43 FK506 binding protein 1A, 12kDa pseudogene 1 pseudo FKBP1AP1 FK506 binding protein 1A, 12kDa pseudogene 1 O - 20121230 -9606 2283 FKBP1AP2 - FKBP12|FKBP1P2 HGNC:3715 15 15q24.1 FK506 binding protein 1A, 12kDa pseudogene 2 pseudo FKBP1AP2 FK506 binding protein 1A, 12kDa pseudogene 2 O - 20121230 -9606 2284 FKBP1AP3 - FKBP12|FKBP1P3 HGNC:3716 13 13q14.13 FK506 binding protein 1A, 12kDa pseudogene 3 pseudo FKBP1AP3 FK506 binding protein 1A, 12kDa pseudogene 3 O - 20121230 -9606 2285 FKBP1AP4 - FKBP12|FKBP1P4 HGNC:3717 3 3q25.1 FK506 binding protein 1A, 12kDa pseudogene 4 pseudo FKBP1AP4 FK506 binding protein 1A, 12kDa pseudogene 4 O - 20121230 -9606 2286 FKBP2 - FKBP-13|PPIase HGNC:3718|MIM:186946|Ensembl:ENSG00000173486|HPRD:01742|Vega:OTTHUMG00000167814 11 11q13.1-q13.3 FK506 binding protein 2, 13kDa protein-coding FKBP2 FK506 binding protein 2, 13kDa O 13 kDa FK506-binding protein|13 kDa FKBP|FK506-binding protein 2 (13kD)|FKBP-2|PPIase FKBP2|immunophilin FKBP13|peptidyl-prolyl cis-trans isomerase FKBP2|proline isomerase|rapamycin-binding protein|rotamase 20121230 -9606 2287 FKBP3 - FKBP-25|FKBP-3|FKBP25|PPIase HGNC:3719|MIM:186947|Ensembl:ENSG00000100442|HPRD:01743|Vega:OTTHUMG00000140267 14 14q21.2 FK506 binding protein 3, 25kDa protein-coding FKBP3 FK506 binding protein 3, 25kDa O 25 kDa FK506-binding protein|25 kDa FKBP|FK506-binding protein 25, T-cell|FK506-binding protein 3 (25kD)|PPIase FKBP3|immunophilin FKBP25|peptidyl-prolyl cis-trans isomerase FKBP3|rapamycin binding protein|rapamycin-selective 25 kDa immunophilin|rotamase 20121230 -9606 2288 FKBP4 - FKBP51|FKBP52|FKBP59|HBI|Hsp56|PPIase|p52 HGNC:3720|MIM:600611|Ensembl:ENSG00000004478|HPRD:11794|Vega:OTTHUMG00000090429 12 12p13.33 FK506 binding protein 4, 59kDa protein-coding FKBP4 FK506 binding protein 4, 59kDa O 51 kDa FK506-binding protein|FK506-binding protein 4 (59kD)|HSP binding immunophilin|T-cell FK506-binding protein, 59kD|peptidyl-prolyl cis-trans isomerase FKBP4|peptidylprolyl cis-trans isomerase|rotamase 20121230 -9606 2289 FKBP5 RP3-340B19.6 AIG6|FKBP51|FKBP54|P54|PPIase|Ptg-10 HGNC:3721|MIM:602623|Ensembl:ENSG00000096060|HPRD:04019|Vega:OTTHUMG00000014576 6 6p21.31 FK506 binding protein 5 protein-coding FKBP5 FK506 binding protein 5 O 51 kDa FK506-binding protein 5|51 kDa FKBP|54 kDa progesterone receptor-associated immunophilin|FF1 antigen|FKBP-5|FKBP-51|HSP90-binding immunophilin|PPIase FKBP5|T-cell FK506-binding protein|androgen-regulated protein 6|peptidyl-prolyl cis-trans isomerase FKBP5|peptidylprolyl cis-trans isomerase|rotamase 20121230 -9606 2290 FOXG1 - BF1|BF2|FHKL3|FKH2|FKHL1|FKHL2|FKHL3|FKHL4|FOXG1A|FOXG1B|FOXG1C|HBF-1|HBF-2|HBF-3|HBF-G2|HBF2|HFK1|HFK2|HFK3|KHL2|QIN HGNC:3811|MIM:164874|Ensembl:ENSG00000176165|HPRD:01283|Vega:OTTHUMG00000140187 14 14q13 forkhead box G1 protein-coding FOXG1 forkhead box G1 O brain factor 1|brain factor 2|forkhead box protein G1|forkhead-like 1|forkhead-like 2|forkhead-like 3|forkhead-like 4|oncogene QIN 20121230 -9606 2294 FOXF1 - ACDMPV|FKHL5|FREAC1 HGNC:3809|MIM:601089|Ensembl:ENSG00000103241|HPRD:03053|Vega:OTTHUMG00000137651 16 16q24 forkhead box F1 protein-coding FOXF1 forkhead box F1 O FREAC-1|Forkhead, drosophila, homolog-like 5|forkhead box protein F1|forkhead-related activator 1|forkhead-related protein FKHL5|forkhead-related transcription factor 1 20121230 -9606 2295 FOXF2 - FKHL6|FREAC-2|FREAC2 HGNC:3810|MIM:603250|HPRD:09131 6 6p25.3 forkhead box F2 protein-coding FOXF2 forkhead box F2 O forkhead box protein F2|forkhead-like 6|forkhead-related activator 2|forkhead-related protein FKHL6|forkhead-related transcription factor 2 20121230 -9606 2296 FOXC1 - ARA|FKHL7|FREAC-3|FREAC3|IGDA|IHG1|IRID1|RIEG3 HGNC:3800|MIM:601090|Ensembl:ENSG00000054598|HPRD:03054|Vega:OTTHUMG00000016182 6 6p25 forkhead box C1 protein-coding FOXC1 forkhead box C1 O forkhead box protein C1|forkhead, drosophila, homolog-like 7|forkhead-related activator 3|forkhead-related protein FKHL7|forkhead-related transcription factor 3|forkhead/winged helix-like transcription factor 7|myeloid factor-delta 20121230 -9606 2297 FOXD1 - FKHL8|FREAC4 HGNC:3802|MIM:601091|Ensembl:ENSG00000251493|HPRD:03055|Vega:OTTHUMG00000162495 5 5q12-q13 forkhead box D1 protein-coding FOXD1 forkhead box D1 O FREAC-4|Forkhead, drosophila, homolog-like 8|forkhead box protein D1|forkhead-like 8|forkhead-related activator 4|forkhead-related protein FKHL8|forkhead-related transcription factor 4 20121230 -9606 2298 FOXD4 - FKHL9|FOXD4A|FREAC-5|FREAC5 HGNC:3805|MIM:601092|Ensembl:ENSG00000170122|HPRD:03056 9 9p24.3 forkhead box D4 protein-coding FOXD4 forkhead box D4 O forkhead box protein D4|forkhead, Drosophila, homolog-like 9|forkhead-related activator 5|forkhead-related protein FKHL9|forkhead-related transcription factor 5|myeloid factor-alpha 20121230 -9606 2299 FOXI1 - FKH10|FKHL10|FREAC-6|FREAC6|HFH-3|HFH3 HGNC:3815|MIM:601093|Ensembl:ENSG00000168269|HPRD:03057|Vega:OTTHUMG00000130436 5 5q34 forkhead box I1 protein-coding FOXI1 forkhead box I1 O HNF-3/fork-head homolog 3|HNF-3/fork-head homolog-3|forkhead box protein I1|forkhead-like 10|forkhead-related activator 6|forkhead-related protein FKHL10|forkhead-related transcription factor 6|hepatocyte nuclear factor 3 forkhead homolog 3 20121230 -9606 2300 FOXL1 - FKH6|FKHL11|FREAC7 HGNC:3817|MIM:603252|Ensembl:ENSG00000176678|HPRD:07219|Vega:OTTHUMG00000137653 16 16q24 forkhead box L1 protein-coding FOXL1 forkhead box L1 O forkhead box protein L1|forkhead-like 11|forkhead-related protein FKHL11|forkhead-related transcription factor 7 20121230 -9606 2301 FOXE3 - FKHL12|FREAC8 HGNC:3808|MIM:601094|Ensembl:ENSG00000186790|HPRD:03058|Vega:OTTHUMG00000007954 1 1p32 forkhead box E3 protein-coding FOXE3 forkhead box E3 O FREAC-8|forkhead box protein E3|forkhead, drosophila, homolog-like 12|forkhead-related protein FKHL12|forkhead-related transcription factor 8 20121230 -9606 2302 FOXJ1 - FKHL13|HFH-4|HFH4 HGNC:3816|MIM:602291|Ensembl:ENSG00000129654|HPRD:03798|Vega:OTTHUMG00000180120 17 17q25.1 forkhead box J1 protein-coding FOXJ1 forkhead box J1 O fork head homologue 4|forkhead box protein J1|forkhead transcription factor HFH-4|forkhead-like 13|forkhead-related protein FKHL13|hepatocyte nuclear factor 3 forkhead homolog 4 20121230 -9606 2303 FOXC2 - FKHL14|LD|MFH-1|MFH1 HGNC:3801|MIM:602402|Ensembl:ENSG00000176692|HPRD:03869|Vega:OTTHUMG00000137652 16 16q24.1 forkhead box C2 (MFH-1, mesenchyme forkhead 1) protein-coding FOXC2 forkhead box C2 (MFH-1, mesenchyme forkhead 1) O MFH-1,mesenchyme forkhead 1|forkhead box protein C2|forkhead, Drosophila, homolog-like 14|forkhead-related protein FKHL14|mesenchyme fork head protein 1|transcription factor FKH-14 20121230 -9606 2304 FOXE1 - FKHL15|FOXE2|HFKH4|HFKL5|TITF2|TTF-2|TTF2 HGNC:3806|MIM:602617|Ensembl:ENSG00000178919|HPRD:04014|HPRD:06188|Vega:OTTHUMG00000020333 9 9q22 forkhead box E1 (thyroid transcription factor 2) protein-coding FOXE1 forkhead box E1 (thyroid transcription factor 2) O HNF-3/fork head-like protein 5|forkhead box E2|forkhead box protein E1|forkhead box protein E2|forkhead, drosophila, homolog-like 15|forkhead-related protein FKHL15|thyroid transcription factor 2 20121230 -9606 2305 FOXM1 - FKHL16|FOXM1B|HFH-11|HFH11|HNF-3|INS-1|MPHOSPH2|MPP-2|MPP2|PIG29|TGT3|TRIDENT HGNC:3818|MIM:602341|Ensembl:ENSG00000111206|HPRD:03823|Vega:OTTHUMG00000168118 12 12p13 forkhead box M1 protein-coding FOXM1 forkhead box M1 O Forkhead, drosophila, homolog-like 16|HNF-3/fork-head homolog 11|M-phase phosphoprotein 2|MPM-2 reactive phosphoprotein 2|forkhead box protein M1|forkhead-related protein FKHL16|hepatocyte nuclear factor 3 forkhead homolog 11|transcription factor Trident|winged-helix factor from INS-1 cells 20121230 -9606 2306 FOXD2 - FKHL17|FREAC-9|FREAC9 HGNC:3803|MIM:602211|Ensembl:ENSG00000186564|HPRD:03735|Vega:OTTHUMG00000007950 1 1p34-p32 forkhead box D2 protein-coding FOXD2 forkhead box D2 O forkhead box protein D2|forkhead, drosophila, homolog-like 17|forkhead-like 17|forkhead-related activator 9|forkhead-related protein FKHL17|forkhead-related transcription factor 9 20121230 -9606 2307 FOXS1 - FKHL18|FREAC10 HGNC:3735|MIM:602939|Ensembl:ENSG00000179772|HPRD:04246|Vega:OTTHUMG00000032183 20 20q11.21 forkhead box S1 protein-coding FOXS1 forkhead box S1 O FREAC-10|forkhead box protein S1|forkhead-like 18 protein|forkhead-related activator 10|forkhead-related transcription factor 10|forkhead-related transcription factor FREAC-10 20121230 -9606 2308 FOXO1 - FKH1|FKHR|FOXO1A HGNC:3819|MIM:136533|Ensembl:ENSG00000150907|HPRD:00645|Vega:OTTHUMG00000016775 13 13q14.1 forkhead box O1 protein-coding FOXO1 forkhead box O1 O forkhead box protein O1|forkhead box protein O1A|forkhead, Drosophila, homolog of, in rhabdomyosarcoma 20121230 -9606 2309 FOXO3 - AF6q21|FKHRL1|FKHRL1P2|FOXO2|FOXO3A HGNC:3821|MIM:602681|Ensembl:ENSG00000118689|HPRD:04061|Vega:OTTHUMG00000015327 6 6q21 forkhead box O3 protein-coding FOXO3 forkhead box O3 O forkhead box O3A|forkhead box protein O3|forkhead homolog (rhabdomyosarcoma) like 1|forkhead in rhabdomyosarcoma-like 1|forkhead, Drosophila, homolog of, in rhabdomyosarcoma-like 1 20121230 -9606 2310 FOXO3B - FKHRL1P1|ZNF286C HGNC:3822 17 17p11.2 forkhead box O3B pseudogene pseudo FOXO3B forkhead box O3B pseudogene O - 20121230 -9606 2311 FOXO1B - FKHRP1 HGNC:3820 5 5q35.3 forkhead box O1B pseudogene pseudo FOXO1B forkhead box O1B pseudogene O - 20121230 -9606 2312 FLG - ATOD2 HGNC:3748|MIM:135940|Ensembl:ENSG00000143631|HPRD:15920|Vega:OTTHUMG00000012202 1 1q21.3 filaggrin protein-coding FLG filaggrin O epidermal filaggrin 20121230 -9606 2313 FLI1 - EWSR2|SIC-1 HGNC:3749|MIM:193067|Ensembl:ENSG00000151702|HPRD:01901|Vega:OTTHUMG00000165792 11 11q24.1-q24.3 Friend leukemia virus integration 1 protein-coding FLI1 Friend leukemia virus integration 1 O Ewing sarcoma breakpoint region 2|Friend leukemia integration 1 transcription factor|proto-oncogene Fli-1|transcription factor ERGB 20121230 -9606 2314 FLII - FLI|FLIL|Fli1 HGNC:3750|MIM:600362|Ensembl:ENSG00000177731|HPRD:02647|Vega:OTTHUMG00000059389 17 17p11.2 flightless I homolog (Drosophila) protein-coding FLII flightless I homolog (Drosophila) O protein flightless-1 homolog 20121230 -9606 2315 MLANA RP11-546N22.1 MART-1|MART1 HGNC:7124|MIM:605513|Ensembl:ENSG00000120215|HPRD:09269|Vega:OTTHUMG00000019510 9 9p24.1 melan-A protein-coding MLANA melan-A O antigen LB39-AA|antigen SK29-AA|melanoma antigen recognized by T-cells 1|protein Melan-A 20121230 -9606 2316 FLNA XX-FW83128A1.1 ABP-280|ABPX|CVD1|FLN|FLN-A|FLN1|FMD|MNS|NHBP|OPD|OPD1|OPD2|XLVD|XMVD HGNC:3754|MIM:300017|Ensembl:ENSG00000196924|HPRD:02060|Vega:OTTHUMG00000022712 X Xq28 filamin A, alpha protein-coding FLNA filamin A, alpha O actin binding protein 280|alpha-filamin|endothelial actin-binding protein|filamin-1|filamin-A|non-muscle filamin 20121230 -9606 2317 FLNB - ABP-278|ABP-280|AOI|FH1|FLN-B|FLN1L|LRS1|SCT|TABP|TAP HGNC:3755|MIM:603381|Ensembl:ENSG00000136068|HPRD:04543|Vega:OTTHUMG00000159158 3 3p14.3 filamin B, beta protein-coding FLNB filamin B, beta O ABP-280 homolog|Larsen syndrome 1 (autosomal dominant)|actin binding protein 278|actin-binding-like protein|beta-filamin|filamin homolog 1|filamin-3|filamin-B|thyroid autoantigen 20121230 -9606 2318 FLNC - ABP-280|ABP280A|ABPA|ABPL|FLN2|MFM5|MPD4 HGNC:3756|MIM:102565|Ensembl:ENSG00000128591|HPRD:00018|Vega:OTTHUMG00000023627 7 7q32-q35 filamin C, gamma protein-coding FLNC filamin C, gamma O ABP-280-like protein|ABP-L, gamma filamin|FLN-C|actin binding protein 280|actin-binding-like protein|filamin 2|filamin-2|filamin-C 20121230 -9606 2319 FLOT2 - ECS-1|ECS1|ESA|ESA1|M17S1 HGNC:3758|MIM:131560|Ensembl:ENSG00000132589|HPRD:00580|Vega:OTTHUMG00000132674 17 17q11-q12 flotillin 2 protein-coding FLOT2 flotillin 2 O Flotillin 2 (epidermal surface antigen 1)|epidermal surface antigen|flotillin-2|membrane component chromosome 17 surface marker 1|membrane component, chromosome 17, surface marker 1 (35kD protein identified by monoclonal antibody ECS-1) 20121230 -9606 2321 FLT1 - FLT|FLT-1|VEGFR-1|VEGFR1 HGNC:3763|MIM:165070|Ensembl:ENSG00000102755|HPRD:01297|Vega:OTTHUMG00000016648 13 13q12 fms-related tyrosine kinase 1 protein-coding FLT1 fms-related tyrosine kinase 1 O fms-like tyrosine kinase 1|fms-related tyrosine kinase 1 (vascular endothelial growth factor/vascular permeability factor receptor)|tyrosine-protein kinase FRT|tyrosine-protein kinase receptor FLT|vascular endothelial growth factor receptor 1|vascular permeability factor receptor 20121230 -9606 2322 FLT3 RP11-153M24.3 CD135|FLK-2|FLK2|STK1 HGNC:3765|MIM:136351|Ensembl:ENSG00000122025|HPRD:00635|Vega:OTTHUMG00000016646 13 13q12 fms-related tyrosine kinase 3 protein-coding FLT3 fms-related tyrosine kinase 3 O CD135 antigen|FL cytokine receptor|STK-1|fetal liver kinase 2|fms-like tyrosine kinase 3|growth factor receptor tyrosine kinase type III|receptor-type tyrosine-protein kinase FLT3|stem cell tyrosine kinase 1 20121230 -9606 2323 FLT3LG - FL|FLT3L HGNC:3766|MIM:600007|Ensembl:ENSG00000090554|HPRD:02477 19 19q13.3 fms-related tyrosine kinase 3 ligand protein-coding FLT3LG fms-related tyrosine kinase 3 ligand O flt3 ligand 20121230 -9606 2324 FLT4 - FLT41|LMPH1A|PCL|VEGFR3 HGNC:3767|MIM:136352|Ensembl:ENSG00000037280|HPRD:00636|Vega:OTTHUMG00000130931 5 5q35.3 fms-related tyrosine kinase 4 protein-coding FLT4 fms-related tyrosine kinase 4 O FLT-4|VEGFR-3|fms-like tyrosine kinase 4|soluble VEGFR3 variant 1|soluble VEGFR3 variant 2|soluble VEGFR3 variant 3|tyrosine-protein kinase receptor FLT4|vascular endothelial growth factor receptor 3 20121230 -9606 2326 FMO1 - - HGNC:3769|MIM:136130|Ensembl:ENSG00000010932|HPRD:00631|Vega:OTTHUMG00000035502 1 1q24.3 flavin containing monooxygenase 1 protein-coding FMO1 flavin containing monooxygenase 1 O FMO 1|Flavin-containing monooxygenase 1 (fetal liver)|dimethylaniline monooxygenase [N-oxide-forming] 1|dimethylaniline oxidase 1|fetal hepatic flavin-containing monooxygenase 1 20121230 -9606 2327 FMO2 - FMO1B1 HGNC:3770|MIM:603955|Ensembl:ENSG00000094963|HPRD:04903|Vega:OTTHUMG00000035504 1 1q24.3 flavin containing monooxygenase 2 (non-functional) protein-coding FMO2 flavin containing monooxygenase 2 (non-functional) O FMO 1B1|FMO 2|FMO, pulmonary|dimethylaniline monooxygenase [N-oxide-forming] 2|dimethylaniline oxidase 2|pulmonary flavin-containing monooxygenase 2 20121230 -9606 2328 FMO3 - FMOII|TMAU|dJ127D3.1 HGNC:3771|MIM:136132|Ensembl:ENSG00000007933|HPRD:00633|Vega:OTTHUMG00000035505 1 1q24.3 flavin containing monooxygenase 3 protein-coding FMO3 flavin containing monooxygenase 3 O FMO 3|FMO II|FMO form 2|dimethylaniline monooxygenase [N-oxide-forming] 3|dimethylaniline oxidase 3|hepatic flavin-containing monooxygenase 3|hepatic flavin-containing monooxygenase-3|trimethylamine monooxygenase 20121230 -9606 2329 FMO4 - FMO2 HGNC:3772|MIM:136131|Ensembl:ENSG00000076258|HPRD:00632|Vega:OTTHUMG00000035506 1 1q24.3 flavin containing monooxygenase 4 protein-coding FMO4 flavin containing monooxygenase 4 O FMO 4|dimethylaniline monooxygenase [N-oxide-forming] 4|dimethylaniline oxidase 4|hepatic flavin-containing monooxygenase 4 20121230 -9606 2330 FMO5 RP11-337C18.2 - HGNC:3773|MIM:603957|Ensembl:ENSG00000131781|HPRD:04904|Vega:OTTHUMG00000014607 1 1q21.1 flavin containing monooxygenase 5 protein-coding FMO5 flavin containing monooxygenase 5 O FMO 5|dimethylaniline monooxygenase [N-oxide-forming] 5|dimethylaniline oxidase 5|hepatic flavin-containing monooxygenase 5 20121230 -9606 2331 FMOD - SLRR2E HGNC:3774|MIM:600245|Ensembl:ENSG00000122176|HPRD:02591|Vega:OTTHUMG00000035910 1 1q32 fibromodulin protein-coding FMOD fibromodulin O FM|KSPG fibromodulin|collagen-binding 59 kDa protein|fibromodulin proteoglycan|keratan sulfate proteoglycan fibromodulin 20121230 -9606 2332 FMR1 - FMRP|FRAXA|POF|POF1 HGNC:3775|MIM:309550|Ensembl:ENSG00000102081|HPRD:02398|Vega:OTTHUMG00000022606 X Xq27.3 fragile X mental retardation 1 protein-coding FMR1 fragile X mental retardation 1 O fragile X mental retardation 1 protein|fragile X mental retardation protein 1|protein FMR-1 20121230 -9606 2334 AFF2 - FMR2|FMR2P|FRAXE|MRX2|OX19 HGNC:3776|MIM:300806|Ensembl:ENSG00000155966|HPRD:02397|Vega:OTTHUMG00000022613 X Xq28 AF4/FMR2 family, member 2 protein-coding AFF2 AF4/FMR2 family, member 2 O AF4/FMR2 family member 2|fragile X E mental retardation syndrome protein|fragile X mental retardation 2 protein|protein FMR-2 20121230 -9606 2335 FN1 - CIG|ED-B|FINC|FN|FNZ|GFND|GFND2|LETS|MSF HGNC:3778|MIM:135600|Ensembl:ENSG00000115414|HPRD:00626|Vega:OTTHUMG00000133054 2 2q34 fibronectin 1 protein-coding FN1 fibronectin 1 O cold-insoluble globulin|fibronectin|migration-stimulating factor 20121230 -9606 2336 FND - - HGNC:3779 - - frontonasal dysplasia unknown FND frontonasal dysplasia O - 20110215 -9606 2339 FNTA - FPTA|PGGT1A|PTAR2 HGNC:3782|MIM:134635|Ensembl:ENSG00000168522|HPRD:00607|Vega:OTTHUMG00000165279 8 8p11 farnesyltransferase, CAAX box, alpha protein-coding FNTA farnesyltransferase, CAAX box, alpha O FTase-alpha|GGTase-I-alpha|farnesyl-protein transferase alpha-subunit|protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha|protein prenyltransferase alpha subunit repeat containing 2|ras proteins prenyltransferase subunit alpha|type I protein geranyl-geranyltransferase alpha subunit 20121230 -9606 2341 FNTAP2 - FNTAL2 HGNC:3784 13 13q12.11 farnesyltransferase, CAAX box, alpha pseudogene 2 pseudo FNTAP2 farnesyltransferase, CAAX box, alpha pseudogene 2 O - 20121230 -9606 2342 FNTB - FPTB HGNC:3785|MIM:134636|Ensembl:ENSG00000125954|Ensembl:ENSG00000257365|HPRD:00608|Vega:OTTHUMG00000142811 14 14q23.3 farnesyltransferase, CAAX box, beta protein-coding FNTB farnesyltransferase, CAAX box, beta O CAAX farnesyltransferase subunit beta|FTase-beta|protein farnesyltransferase subunit beta|ras proteins prenyltransferase subunit beta 20121230 -9606 2346 FOLH1 GIG27 FGCP|FOLH|GCP2|GCPII|NAALAD1|NAALAdase|PSM|PSMA|mGCP HGNC:3788|MIM:600934|Ensembl:ENSG00000086205|HPRD:02961|Vega:OTTHUMG00000166625 11 11p11.2 folate hydrolase (prostate-specific membrane antigen) 1 protein-coding FOLH1 folate hydrolase (prostate-specific membrane antigen) 1 O N-acetylated alpha-linked acidic dipeptidase 1|N-acetylated-alpha-linked acidic dipeptidase I|NAALADase I|cell growth-inhibiting gene 27 protein|folylpoly-gamma-glutamate carboxypeptidase|glutamate carboxylase II|glutamate carboxypeptidase 2|glutamate carboxypeptidase II|membrane glutamate carboxypeptidase|prostate specific membrane antigen variant F|pteroylpoly-gamma-glutamate carboxypeptidase 20121230 -9606 2348 FOLR1 - FBP|FOLR HGNC:3791|MIM:136430|Ensembl:ENSG00000110195|HPRD:00638|Vega:OTTHUMG00000167876 11 11q13.3-q14.1 folate receptor 1 (adult) protein-coding FOLR1 folate receptor 1 (adult) O FR-alpha|KB cells FBP|adult folate-binding protein|folate binding protein|folate receptor alpha|folate receptor, adult|ovarian tumor-associated antigen MOv18 20121230 -9606 2350 FOLR2 - BETA-HFR|FBP|FBP/PL-1|FR-BETA|FR-P3 HGNC:3793|MIM:136425|Ensembl:ENSG00000165457|HPRD:00637|Vega:OTTHUMG00000150394 11 11q13.3-q13.5 folate receptor 2 (fetal) protein-coding FOLR2 folate receptor 2 (fetal) O folate receptor beta|folate receptor, beta|folate receptor, fetal/placental|folate-binding protein, fetal/placental|placental folate-binding protein 20121230 -9606 2352 FOLR3 - FR-G|FR-gamma|gamma-hFR HGNC:3795|MIM:602469|Ensembl:ENSG00000110203|HPRD:03918|Vega:OTTHUMG00000167870 11 11q13 folate receptor 3 (gamma) protein-coding FOLR3 folate receptor 3 (gamma) O folate receptor gamma 20121230 -9606 2353 FOS - AP-1|C-FOS|p55 HGNC:3796|MIM:164810|Ensembl:ENSG00000170345|HPRD:01275|Vega:OTTHUMG00000171774 14 14q24.3 FBJ murine osteosarcoma viral oncogene homolog protein-coding FOS FBJ murine osteosarcoma viral oncogene homolog O FBJ murine osteosarcoma viral (v-fos) oncogene homolog (oncogene FOS)|G0/G1 switch regulatory protein 7|activator protein 1|cellular oncogene c-fos|proto-oncogene c-Fos 20121230 -9606 2354 FOSB - AP-1|G0S3|GOS3|GOSB HGNC:3797|MIM:164772|Ensembl:ENSG00000125740|HPRD:01270|Vega:OTTHUMG00000182122 19 19q13.32 FBJ murine osteosarcoma viral oncogene homolog B protein-coding FOSB FBJ murine osteosarcoma viral oncogene homolog B O G0/G1 switch regulatory protein 3|activator protein 1|protein fosB 20121230 -9606 2355 FOSL2 - FRA2 HGNC:3798|MIM:601575|Ensembl:ENSG00000075426|HPRD:03343|Vega:OTTHUMG00000097832 2 2p23.3 FOS-like antigen 2 protein-coding FOSL2 FOS-like antigen 2 O FRA-2|fos-related antigen 2 20121230 -9606 2356 FPGS RP11-228B15.1 - HGNC:3824|MIM:136510|Ensembl:ENSG00000136877|HPRD:00642|Vega:OTTHUMG00000020716 9 9q34.1 folylpolyglutamate synthase protein-coding FPGS folylpolyglutamate synthase O folylpoly-gamma-glutamate synthetase|folylpolyglutamate synthase, mitochondrial|tetrahydrofolate synthase|tetrahydrofolylpolyglutamate synthase 20121230 -9606 2357 FPR1 - FMLP|FPR HGNC:3826|MIM:136537|Ensembl:ENSG00000171051|HPRD:00646 19 19q13.4 formyl peptide receptor 1 protein-coding FPR1 formyl peptide receptor 1 O N-formylpeptide chemoattractant receptor|fMLP receptor|fMet-Leu-Phe receptor 20121230 -9606 2358 FPR2 - ALXR|FMLP-R-II|FMLPX|FPR2A|FPRH1|FPRH2|FPRL1|HM63|LXA4R HGNC:3827|MIM:136538|Ensembl:ENSG00000171049|HPRD:00647 19 19q13.3-q13.4 formyl peptide receptor 2 protein-coding FPR2 formyl peptide receptor 2 O FMLP-R-I|FMLP-related receptor I|LXA4 receptor|N-formyl peptide receptor 2|RFP|formyl peptide receptor-like 1|lipoxin A4 receptor (formyl peptide receptor related) 20121230 -9606 2359 FPR3 - FML2_HUMAN|FMLPY|FPRH1|FPRH2|FPRL2|RMLP-R-I HGNC:3828|MIM:136539|Ensembl:ENSG00000187474|HPRD:00648 19 19q13.3-q13.4 formyl peptide receptor 3 protein-coding FPR3 formyl peptide receptor 3 O FMLP-R-II|FMLP-related receptor II|N-formyl peptide receptor 3|formyl peptide receptor-like 2 20121230 -9606 2360 FRA1A - - HGNC:3868 1 1p36 fragile site, aphidicolin type, common, fra(1)(p36) other FRA1A fragile site, aphidicolin type, common, fra(1)(p36) O - 20070912 -9606 2361 FRA1B - - HGNC:3869 1 1p32 fragile site, aphidicolin type, common, fra(1)(p32) other FRA1B fragile site, aphidicolin type, common, fra(1)(p32) O - 20100121 -9606 2362 FRA1C - - HGNC:3870 1 1p31.2 fragile site, aphidicolin type, common, fra(1)(p31.2) other FRA1C fragile site, aphidicolin type, common, fra(1)(p31.2) O - 20070912 -9606 2363 FRA1D - - HGNC:3871 1 1p22 fragile site, aphidicolin type, common, fra(1)(p22) other FRA1D fragile site, aphidicolin type, common, fra(1)(p22) O - 20070912 -9606 2364 FRA1E - - HGNC:3872 1 1p21.2 fragile site, aphidicolin type, common, fra(1)(p21.2) other FRA1E fragile site, aphidicolin type, common, fra(1)(p21.2) O - 20070912 -9606 2365 FRA1F - - HGNC:3873 1 1q21 fragile site, aphidicolin type, common, fra(1)(q21) other FRA1F fragile site, aphidicolin type, common, fra(1)(q21) O - 20070912 -9606 2366 FRA1G - - HGNC:3874 1 1q25.1 fragile site, aphidicolin type, common, fra(1)(q25.1) other FRA1G fragile site, aphidicolin type, common, fra(1)(q25.1) O - 20070912 -9606 2367 FRA1H - - HGNC:3875 1 1q42.1 fragile site, 5-azacytidine type, common, fra(1)(q42) other FRA1H fragile site, 5-azacytidine type, common, fra(1)(q42) O - 20100121 -9606 2368 FRA1I - - HGNC:3876 1 1q44 fragile site, aphidicolin type, common, fra(1)(q44) other FRA1I fragile site, aphidicolin type, common, fra(1)(q44) O - 20070912 -9606 2369 FRA1J - - HGNC:3877 1 1q12 fragile site, 5-azacytidine type, common, fra(1)(q12) other FRA1J fragile site, 5-azacytidine type, common, fra(1)(q12) O - 20070912 -9606 2370 FRA1K - - HGNC:3878 1 1q31 fragile site, aphidicolin type, common, fra(1)(q31) other FRA1K fragile site, aphidicolin type, common, fra(1)(q31) O - 20070912 -9606 2371 FRA1L - - HGNC:3879 1 1p31 fragile site, aphidicolin type, common, fra(1)(p31) other FRA1L fragile site, aphidicolin type, common, fra(1)(p31) O - 20070912 -9606 2372 FRA1M - - HGNC:3880 1 1p21.3 fragile site, folic acid type, rare, fra(1)(p21.3) other FRA1M fragile site, folic acid type, rare, fra(1)(p21.3) O - 20070912 -9606 2373 FRA2A - - HGNC:3885|MIM:136610 2 2q11.2 fragile site, folic acid type, rare, fra(2)(q11.2) other FRA2A fragile site, folic acid type, rare, fra(2)(q11.2) O - 20070912 -9606 2374 FRA2B - - HGNC:3886 2 2q13 fragile site, folic acid type, rare, fra(2)(q13) other FRA2B fragile site, folic acid type, rare, fra(2)(q13) O - 20070912 -9606 2375 FRA2C - - HGNC:3887 2 2p24.2 fragile site, aphidicolin type, common, fra(2)(p24.2) other FRA2C fragile site, aphidicolin type, common, fra(2)(p24.2) O - 20070912 -9606 2376 FRA2D - - HGNC:3888 2 2p16.2 fragile site, aphidicolin type, common, fra(2)(p16.2) other FRA2D fragile site, aphidicolin type, common, fra(2)(p16.2) O - 20070912 -9606 2377 FRA2E - - HGNC:3889 2 2p13 fragile site, aphidicolin type, common, fra(2)(p13) other FRA2E fragile site, aphidicolin type, common, fra(2)(p13) O - 20070912 -9606 2378 FRA2F - - HGNC:3890 2 2q21.3 fragile site, aphidicolin type, common, fra(2)(q21.3) other FRA2F fragile site, aphidicolin type, common, fra(2)(q21.3) O - 20070912 -9606 2379 FRA2G - - HGNC:3891 2 2q31 fragile site, aphidicolin type, common, fra(2)(q31) other FRA2G fragile site, aphidicolin type, common, fra(2)(q31) O - 20100121 -9606 2380 FRA2H - - HGNC:3892 2 2q32.1 fragile site, aphidicolin type, common, fra(2)(q32.1) other FRA2H fragile site, aphidicolin type, common, fra(2)(q32.1) O - 20120923 -9606 2381 FRA2I - - HGNC:3893 2 2q33 fragile site, aphidicolin type, common, fra(2)(q33) other FRA2I fragile site, aphidicolin type, common, fra(2)(q33) O - 20070912 -9606 2382 FRA2J - - HGNC:3894 2 2q37.3 fragile site, aphidicolin type, common, fra(2)(q37.3) other FRA2J fragile site, aphidicolin type, common, fra(2)(q37.3) O - 20070912 -9606 2383 FRA2K - - HGNC:3895 2 2q22.3 fragile site, folic acid type, rare, fra(2)(q22.3) other FRA2K fragile site, folic acid type, rare, fra(2)(q22.3) O - 20070912 -9606 2384 FRA3A - - HGNC:3896 3 3p24.2 fragile site, aphidicolin type, common, fra(3)(p24.2) other FRA3A fragile site, aphidicolin type, common, fra(3)(p24.2) O - 20070912 -9606 2386 FRA3C - - HGNC:3898 3 3q27 fragile site, aphidicolin type, common, fra(3)(q27) other FRA3C fragile site, aphidicolin type, common, fra(3)(q27) O - 20070912 -9606 2387 FRA3D - - HGNC:3899 3 3q25 fragile site, aphidicolin type, common, fra(3)(q25) other FRA3D fragile site, aphidicolin type, common, fra(3)(q25) O - 20070912 -9606 2388 FRA4A - - HGNC:3900 4 4p16.1 fragile site, aphidicolin type, common, fra(4)(p16.1) other FRA4A fragile site, aphidicolin type, common, fra(4)(p16.1) O - 20070912 -9606 2389 FRA4B - - HGNC:3901 4 4q12 fragile site, BrdU type, common, fra(4)(q12) other FRA4B fragile site, BrdU type, common, fra(4)(q12) O - 20070912 -9606 2390 FRA4C - - HGNC:3902 4 4q31.1 fragile site, aphidicolin type, common, fra(4)(q31.1) other FRA4C fragile site, aphidicolin type, common, fra(4)(q31.1) O - 20070912 -9606 2391 FRA4D - - HGNC:3903 4 4p15 fragile site, aphidicolin type, common, fra(4)(p15) other FRA4D fragile site, aphidicolin type, common, fra(4)(p15) O - 20070912 -9606 2393 FRA5A - - HGNC:3905 5 5p13 fragile site, BrdU type, common, fra(5)(p13) other FRA5A fragile site, BrdU type, common, fra(5)(p13) O - 20070912 -9606 2394 FRA5B - - HGNC:3906 5 5q15 fragile site, BrdU type, common, fra(5)(q15) other FRA5B fragile site, BrdU type, common, fra(5)(q15) O - 20070912 -9606 2395 FXN - CyaY|FA|FARR|FRDA|X25 HGNC:3951|MIM:606829|Ensembl:ENSG00000165060|HPRD:06013|Vega:OTTHUMG00000019977 9 9q21.11 frataxin protein-coding FXN frataxin O Friedreich ataxia protein|frataxin, mitochondrial 20121230 -9606 2396 FRA5C - - HGNC:3907 5 5q31.1 fragile site, aphidicolin type, common, fra(5)(q31.1) other FRA5C fragile site, aphidicolin type, common, fra(5)(q31.1) O - 20070912 -9606 2397 FRA5D - - HGNC:3908 5 5q15 fragile site, aphidicolin type, common, fra(5)(q15) other FRA5D fragile site, aphidicolin type, common, fra(5)(q15) O - 20070912 -9606 2398 FRA5E - - HGNC:3909 5 5p14 fragile site, aphidicolin type, common, fra(5)(p14) other FRA5E fragile site, aphidicolin type, common, fra(5)(p14) O - 20070912 -9606 2399 FRA5F - - HGNC:3910 5 5q21 fragile site, aphidicolin type, common, fra(5)(q21) other FRA5F fragile site, aphidicolin type, common, fra(5)(q21) O - 20070912 -9606 2400 FRA5G - - HGNC:3911 5 5q35 fragile site, folic acid type, rare, fra(5)(q35) other FRA5G fragile site, folic acid type, rare, fra(5)(q35) O - 20070912 -9606 2401 FRA6A - - HGNC:3912 6 6p23 fragile site, folic acid type, rare, fra(6)(p23) other FRA6A fragile site, folic acid type, rare, fra(6)(p23) O - 20070912 -9606 2402 FRA6B - - HGNC:3913 6 6p25.1 fragile site, aphidicolin type, common, fra(6)(p25.1) other FRA6B fragile site, aphidicolin type, common, fra(6)(p25.1) O - 20070912 -9606 2403 FRA6C - - HGNC:3914 6 6p22.2 fragile site, aphidicolin type, common, fra(6)(p22.2) other FRA6C fragile site, aphidicolin type, common, fra(6)(p22.2) O - 20070912 -9606 2404 FRA6D - - HGNC:3915 6 6q13 fragile site, BrdU type, common, fra(6)(q13) other FRA6D fragile site, BrdU type, common, fra(6)(q13) O - 20070912 -9606 2405 FRA6E - - HGNC:3916 6 6q26 fragile site, aphidicolin type, common, fra(6)(q26) other FRA6E fragile site, aphidicolin type, common, fra(6)(q26) O - 20110227 -9606 2406 FRA6F - - HGNC:3917 6 6q21 fragile site, aphidicolin type, common, fra(6)(q21) other FRA6F fragile site, aphidicolin type, common, fra(6)(q21) O - 20070912 -9606 2407 FRA6G - - HGNC:3918 6 6q15 fragile site, aphidicolin type, common, fra(6)(q15) other FRA6G fragile site, aphidicolin type, common, fra(6)(q15) O - 20070912 -9606 2408 FRA7A - - HGNC:3919 7 7p11.2 fragile site, folic acid type, rare, fra(7)(p11.2) other FRA7A fragile site, folic acid type, rare, fra(7)(p11.2) O - 20070912 -9606 2409 FRA7B - - HGNC:3920 7 7p22 fragile site, aphidicolin type, common, fra(7)(p22) other FRA7B fragile site, aphidicolin type, common, fra(7)(p22) O - 20070912 -9606 2410 FRA7C - - HGNC:3921 7 7p14.2 fragile site, aphidicolin type, common, fra(7)(p14.2) other FRA7C fragile site, aphidicolin type, common, fra(7)(p14.2) O - 20070912 -9606 2411 FRA7D - - HGNC:3922 7 7p13 fragile site, aphidicolin type, common, fra(7)(p13) other FRA7D fragile site, aphidicolin type, common, fra(7)(p13) O - 20070912 -9606 2412 FRA7E - - HGNC:3923 7 7q21.2 fragile site, aphidicolin type, common, fra(7)(q21.2) other FRA7E fragile site, aphidicolin type, common, fra(7)(q21.2) O - 20070912 -9606 2413 FRA7F - - HGNC:3924 7 7q22 fragile site, aphidicolin type, common, fra(7)(q22) other FRA7F fragile site, aphidicolin type, common, fra(7)(q22) O - 20070912 -9606 2414 FRA7G - D7S486 HGNC:3925 7 7q31.2 fragile site, aphidicolin type, common, fra(7)(q31.2) other FRA7G fragile site, aphidicolin type, common, fra(7)(q31.2) O - 20070912 -9606 2415 FRA7H - - HGNC:3926 7 7q32.3 fragile site, aphidicolin type, common, fra(7)(q32.3) other FRA7H fragile site, aphidicolin type, common, fra(7)(q32.3) O - 20070912 -9606 2416 FRA7I - - HGNC:3927 7 7q36 fragile site, aphidicolin type, common, fra(7)(q36) other FRA7I fragile site, aphidicolin type, common, fra(7)(q36) O - 20070912 -9606 2417 FRA7J - - HGNC:3928 7 7q11 fragile site, aphidicolin type, common, fra(7)(q11) other FRA7J fragile site, aphidicolin type, common, fra(7)(q11) O - 20070912 -9606 2418 FRA8A - - HGNC:3929 8 8q22.3 fragile site, folic acid type, rare, fra(8)(q22.3) other FRA8A fragile site, folic acid type, rare, fra(8)(q22.3) O - 20070912 -9606 2419 FRA8B - - HGNC:3930 8 8q22.1 fragile site, aphidicolin type, common, fra(8)(q22.1) other FRA8B fragile site, aphidicolin type, common, fra(8)(q22.1) O - 20070912 -9606 2420 FRDA2 - - HGNC:3952|MIM:601992 9 9p23-p11 Friedreich ataxia 2 unknown FRDA2 Friedreich ataxia 2 O - 20120622 -9606 2421 FRA8C - - HGNC:3931 8 8q24.1 fragile site, aphidicolin type, common, fra(8)(q24.1) other FRA8C fragile site, aphidicolin type, common, fra(8)(q24.1) O - 20070912 -9606 2422 FRA8D - - HGNC:3932 8 8q24.3 fragile site, aphidicolin type, common, fra(8)(q24.3) other FRA8D fragile site, aphidicolin type, common, fra(8)(q24.3) O - 20070912 -9606 2423 FRA8E - - HGNC:3933 8 8q24.1 fragile site, distamycin A type, rare, fra(8)(q24.1) other FRA8E fragile site, distamycin A type, rare, fra(8)(q24.1) O - 20070912 -9606 2425 FRA9A - - HGNC:3935 9 9p21 fragile site, folic acid type, rare, fra(9)(p21) other FRA9A fragile site, folic acid type, rare, fra(9)(p21) O - 20070912 -9606 2426 FRA9B - - HGNC:3936|MIM:136640 9 9q32 fragile site, folic acid type, rare, fra(9)(q32) other FRA9B fragile site, folic acid type, rare, fra(9)(q32) O - 20070912 -9606 2427 FRA9C - - HGNC:3937 9 9p21 fragile site, BrdU type, common, fra(9)(p21) other FRA9C fragile site, BrdU type, common, fra(9)(p21) O - 20070912 -9606 2428 FRA9D - - HGNC:3938 9 9q22.1 fragile site, aphidicolin type, common, fra(9)(q22.1) other FRA9D fragile site, aphidicolin type, common, fra(9)(q22.1) O - 20070912 -9606 2429 FRA9E - - HGNC:3939 9 9q32 fragile site, aphidicolin type, common, fra(9)(q32) other FRA9E fragile site, aphidicolin type, common, fra(9)(q32) O - 20100121 -9606 2430 FRA9F - - HGNC:3940 9 9q12 fragile site, 5-azacytidine type, common, fra(9)(q12) other FRA9F fragile site, 5-azacytidine type, common, fra(9)(q12) O - 20070912 -9606 2431 FRA10A - - HGNC:3829|MIM:136620 10 10q23.3 or 10q24.2 fragile site, folic acid type, rare, fra(10)(q23.3) or fra(10)(q24.2) other FRA10A fragile site, folic acid type, rare, fra(10)(q23.3) or fra(10)(q24.2) O - 20070912 -9606 2432 FRA10B - - HGNC:3830 10 10q25.2 fragile site, BrdU type, rare, fra(10)(q25.2) other FRA10B fragile site, BrdU type, rare, fra(10)(q25.2) O - 20070912 -9606 2433 FRA10C - - HGNC:3831 10 10q21 fragile site, BrdU type, common, fra(10)(q21) other FRA10C fragile site, BrdU type, common, fra(10)(q21) O - 20070912 -9606 2434 FRA10D - - HGNC:3832 10 10q22.1 fragile site, aphidicolin type, common, fra(10)(q22.1) other FRA10D fragile site, aphidicolin type, common, fra(10)(q22.1) O - 20070912 -9606 2435 FRA10E - - HGNC:3833 10 10q25.2 fragile site, aphidicolin type, common, fra(10)(q25.2) other FRA10E fragile site, aphidicolin type, common, fra(10)(q25.2) O - 20070912 -9606 2436 FRA10F - - HGNC:3834 10 10q26.1 fragile site, aphidicolin type, common, fra(10)(q26.1) other FRA10F fragile site, aphidicolin type, common, fra(10)(q26.1) O - 20121209 -9606 2437 FRA10G - - HGNC:3835 10 10q11.2 fragile site, aphidicolin type, common, fra(10)(q11.2) other FRA10G fragile site, aphidicolin type, common, fra(10)(q11.2) O - 20080828 -9606 2438 FRA11A - - HGNC:3836 11 11q13.3 fragile site, folic acid type, rare, fra(11)(q13.3) other FRA11A fragile site, folic acid type, rare, fra(11)(q13.3) O - 20100121 -9606 2440 FRA11C - - HGNC:3838 11 11p15.1 fragile site, aphidicolin type, common, fra(11)(p15.1) other FRA11C fragile site, aphidicolin type, common, fra(11)(p15.1) O - 20070912 -9606 2441 FRA11D - - HGNC:3839 11 11p14.2 fragile site, aphidicolin type, common, fra(11)(p14.2) other FRA11D fragile site, aphidicolin type, common, fra(11)(p14.2) O - 20070912 -9606 2442 FRA11E - - HGNC:3840 11 11p13 fragile site, aphidicolin type, common, fra(11)(p13) other FRA11E fragile site, aphidicolin type, common, fra(11)(p13) O - 20070912 -9606 2443 FRA11F - - HGNC:3841 11 11q14.2 fragile site, aphidicolin type, common, fra(11)(q14.2) other FRA11F fragile site, aphidicolin type, common, fra(11)(q14.2) O - 20100121 -9606 2444 FRK - GTK|PTK5|RAK HGNC:3955|MIM:606573|Ensembl:ENSG00000111816|HPRD:05954|Vega:OTTHUMG00000015424 6 6q21-q22.3 fyn-related kinase protein-coding FRK fyn-related kinase O PTK5 protein tyrosine kinase 5|nuclear tyrosine protein kinase RAK|protein-tyrosine kinase 5|tyrosine-protein kinase FRK 20121230 -9606 2445 FRA11G - - HGNC:3842 11 11q23.3 fragile site, aphidicolin type, common, fra(11)(q23.3) other FRA11G fragile site, aphidicolin type, common, fra(11)(q23.3) O - 20070912 -9606 2446 FRA11H - - HGNC:3843 11 11q13 fragile site, aphidicolin type, common, fra(11)(q13) other FRA11H fragile site, aphidicolin type, common, fra(11)(q13) O - 20070912 -9606 2447 FRA11I - - HGNC:3844 11 11p15.1 fragile site, distamycin A type, rare, fra(11)(p15.1) other FRA11I fragile site, distamycin A type, rare, fra(11)(p15.1) O - 20070912 -9606 2448 FRA12A - - HGNC:3845|MIM:136630 12 12q13.1 fragile site, folic acid type, rare, fra(12)(q13.1) other FRA12A fragile site, folic acid type, rare, fra(12)(q13.1) O - 20110814 -9606 2449 FRA12B - - HGNC:3846 12 12q21.3 fragile site, aphidicolin type, common, fra(12)(q21.3) other FRA12B fragile site, aphidicolin type, common, fra(12)(q21.3) O - 20070912 -9606 2450 FRA12C - - HGNC:3847 12 12q24.2 fragile site, BrdU type, rare, fra(12)(q24.2) other FRA12C fragile site, BrdU type, rare, fra(12)(q24.2) O - 20070912 -9606 2451 FRA12D - - HGNC:3848 12 12q24.13 fragile site, folic acid type, rare, fra(12)(q24.13) other FRA12D fragile site, folic acid type, rare, fra(12)(q24.13) O - 20070912 -9606 2452 FRA12E - - HGNC:3849 12 12q24 fragile site, aphidicolin type, common, fra(12)(q24) other FRA12E fragile site, aphidicolin type, common, fra(12)(q24) O - 20070912 -9606 2453 FRA13A - - HGNC:3850 13 13q13.2 fragile site, aphidicolin type, common, fra(13)(q13.2) other FRA13A fragile site, aphidicolin type, common, fra(13)(q13.2) O - 20070912 -9606 2454 FRA13B - - HGNC:3851 13 13q21 fragile site, BrdU type, common, fra(13)(q21) other FRA13B fragile site, BrdU type, common, fra(13)(q21) O - 20070912 -9606 2455 FRA13C - - HGNC:3852 13 13q21.2 fragile site, aphidicolin type, common, fra(13)(q21.2) other FRA13C fragile site, aphidicolin type, common, fra(13)(q21.2) O - 20070912 -9606 2456 FRA13D - - HGNC:3853 13 13q32 fragile site, aphidicolin type, common, fra(13)(q32) other FRA13D fragile site, aphidicolin type, common, fra(13)(q32) O - 20070912 -9606 2457 FRA14B - - HGNC:3854 14 14q23 fragile site, aphidicolin type, common, fra(14)(q23) other FRA14B fragile site, aphidicolin type, common, fra(14)(q23) O - 20070912 -9606 2458 FRA14C - - HGNC:3855 14 14q24.1 fragile site, aphidicolin type, common, fra(14)(q24.1) other FRA14C fragile site, aphidicolin type, common, fra(14)(q24.1) O - 20070912 -9606 2459 FRA15A - - HGNC:3856 15 15q22 fragile site, aphidicolin type, common, fra(15)(q22) other FRA15A fragile site, aphidicolin type, common, fra(15)(q22) O - 20070912 -9606 2460 FRA16A - C16DELp12.1 HGNC:3857|MIM:136570 16 16p13.11 fragile site, folic acid type, rare, fra(16)(p13.11) other FRA16A fragile site, folic acid type, rare, fra(16)(p13.11) O - 20120622 -9606 2461 FRA16B - - HGNC:3858|MIM:136580 16 16q22.1 fragile site, distamycin A type, rare, fra(16)(q22.1) other FRA16B fragile site, distamycin A type, rare, fra(16)(q22.1) O - 20070912 -9606 2462 FRA16C - - HGNC:3859 16 16q22.1 fragile site, aphidicolin type, common, fra(16)(q22.1) other FRA16C fragile site, aphidicolin type, common, fra(16)(q22.1) O - 20070912 -9606 2463 FRA16D - - HGNC:3860 16 16q23.2 fragile site, aphidicolin type, common, fra(16)(q23.2) other FRA16D fragile site, aphidicolin type, common, fra(16)(q23.2) O - 20100121 -9606 2464 FRA16E - - HGNC:3861 16 16p12.1 fragile site, distamycin A type, rare, fra(16)(p12.1) other FRA16E fragile site, distamycin A type, rare, fra(16)(p12.1) O - 20070912 -9606 2465 FRA17A - - HGNC:3862|MIM:136660 17 17p12 fragile site, distamycin A type, rare, fra(17)(p12) other FRA17A fragile site, distamycin A type, rare, fra(17)(p12) O - 20070912 -9606 2466 FRA17B - - HGNC:3863 17 17q23.1 fragile site, aphidicolin type, common, fra(17)(q23.1) other FRA17B fragile site, aphidicolin type, common, fra(17)(q23.1) O - 20070912 -9606 2467 FRA18A - - HGNC:3864 18 18q12.2 fragile site, aphidicolin type, common, fra(18)(q12.2) other FRA18A fragile site, aphidicolin type, common, fra(18)(q12.2) O - 20070912 -9606 2468 FRA18B - - HGNC:3865 18 18q21.3 fragile site, aphidicolin type, common, fra(18)(q21.3) other FRA18B fragile site, aphidicolin type, common, fra(18)(q21.3) O - 20070912 -9606 2469 FRA19A - - HGNC:3866 19 19q13 fragile site, 5-azacytidine type, common, fra(19)(q13) other FRA19A fragile site, 5-azacytidine type, common, fra(19)(q13) O - 20070912 -9606 2470 FRA19B - - HGNC:3867 19 19p13 fragile site, folic acid type, rare, fra(19)(p13) other FRA19B fragile site, folic acid type, rare, fra(19)(p13) O - 20070912 -9606 2471 FRA20A - - HGNC:3881|MIM:136590 20 20p11.23 fragile site, folic acid type, rare, fra(20)(p11.23) other FRA20A fragile site, folic acid type, rare, fra(20)(p11.23) O - 20070912 -9606 2472 FRA20B - - HGNC:3882 20 20p12.2 fragile site, aphidicolin type, common, fra(20)(p12.2) other FRA20B fragile site, aphidicolin type, common, fra(20)(p12.2) O - 20070912 -9606 2473 FRA22A - - HGNC:3883 22 22q13 fragile site, folic acid type, rare, fra(22)(q13) other FRA22A fragile site, folic acid type, rare, fra(22)(q13) O - 20070912 -9606 2474 FRA22B - - HGNC:3884 22 22q12.2 fragile site, aphidicolin type, common, fra(22)(q12.2) other FRA22B fragile site, aphidicolin type, common, fra(22)(q12.2) O - 20070912 -9606 2475 MTOR - FRAP|FRAP1|FRAP2|RAFT1|RAPT1 HGNC:3942|MIM:601231|Ensembl:ENSG00000198793|HPRD:03134|Vega:OTTHUMG00000002001 1 1p36.2 mechanistic target of rapamycin (serine/threonine kinase) protein-coding MTOR mechanistic target of rapamycin (serine/threonine kinase) O FK506 binding protein 12-rapamycin associated protein 1|FK506 binding protein 12-rapamycin associated protein 2|FK506-binding protein 12-rapamycin complex-associated protein 1|FKBP-rapamycin associated protein|FKBP12-rapamycin complex-associated protein 1|mammalian target of rapamycin|rapamycin and FKBP12 target 1|rapamycin associated protein FRAP2|rapamycin target protein 1|serine/threonine-protein kinase mTOR 20121230 -9606 2477 FRAXA - FMR1 HGNC:3945 X Xq27.3 fragile site, folic acid type, rare, fra(X)(q27.3) A (macroorchidism, mental retardation) other FRAXA fragile site, folic acid type, rare, fra(X)(q27.3) A (macroorchidism, mental retardation) O - 20111016 -9606 2478 FRAXB - - HGNC:3946 X Xp22.31 fragile site, aphidicolin type, common, fra(X)(p22.31) B other FRAXB fragile site, aphidicolin type, common, fra(X)(p22.31) B O - 20070912 -9606 2479 FRAXC - - HGNC:3947 X Xq22.1 fragile site, aphidicolin type, common, fra(X)(q22.1) C other FRAXC fragile site, aphidicolin type, common, fra(X)(q22.1) C O - 20070912 -9606 2480 FRAXD - - HGNC:3948 X Xq27.2 fragile site, aphidicolin type, common, fra(X)(q27.2) D other FRAXD fragile site, aphidicolin type, common, fra(X)(q27.2) D O - 20070912 -9606 2481 FRAXE - FMR2 HGNC:3949 X Xq28 fragile site, folic acid type, rare, fra(X)(q28) E other FRAXE fragile site, folic acid type, rare, fra(X)(q28) E O - 20111127 -9606 2483 FRG1 - FRG1A|FSG1 HGNC:3954|MIM:601278|Ensembl:ENSG00000109536|HPRD:03176|Vega:OTTHUMG00000160202 4 4q35 FSHD region gene 1 protein-coding FRG1 FSHD region gene 1 O FSHD region gene 1 protein|facioscapulohumeral muscular dystrophy region gene-1|protein FRG1 20121230 -9606 2487 FRZB - FRE|FRITZ|FRP-3|FRZB-1|FRZB-PEN|FRZB1|FZRB|OS1|SFRP3|SRFP3|hFIZ HGNC:3959|MIM:605083|Ensembl:ENSG00000162998|HPRD:07282|Vega:OTTHUMG00000132597 2 2qter frizzled-related protein protein-coding FRZB frizzled-related protein O frezzled|frizzled homolog-related|frizzled-related protein 1|sFRP-3|secreted frizzled-related protein 3 20121230 -9606 2488 FSHB - - HGNC:3964|MIM:136530|Ensembl:ENSG00000131808|HPRD:00644|Vega:OTTHUMG00000166146 11 11p13 follicle stimulating hormone, beta polypeptide protein-coding FSHB follicle stimulating hormone, beta polypeptide O FSH-B|FSH-beta|follicle-stimulating hormone beta subunit|follitropin beta chain|follitropin subunit beta|follitropin, beta chain 20121230 -9606 2489 FSHMD1A - FMD|FSHD|FSHD1A|FSHMD HGNC:3966|MIM:158900 4 4q35 facioscapulohumeral muscular dystrophy 1A unknown FSHMD1A facioscapulohumeral muscular dystrophy 1A O - 20120708 -9606 2490 FSHMD1B - FSHD1B HGNC:3967|MIM:158901 - - facioscapulohumeral muscular dystrophy 1B unknown FSHMD1B facioscapulohumeral muscular dystrophy 1B O - 20110714 -9606 2491 CENPI RP5-1188J21.1 CENP-I|FSHPRH1|LRPR1|Mis6 HGNC:3968|MIM:300065|Ensembl:ENSG00000102384|HPRD:02089|Vega:OTTHUMG00000022018 X Xq22.1 centromere protein I protein-coding CENPI centromere protein I O FSH primary response 1|FSH primary response protein 1|follicle-stimulating hormone primary response protein|interphase centromere complex protein 19|leucine-rich primary response protein 1 20121230 -9606 2492 FSHR - FSHRO|LGR1|ODG1 HGNC:3969|MIM:136435|Ensembl:ENSG00000170820|HPRD:00639|Vega:OTTHUMG00000129259 2 2p21-p16 follicle stimulating hormone receptor protein-coding FSHR follicle stimulating hormone receptor O FSH receptor|follicle-stimulating hormone receptor|follitropin receptor 20121230 -9606 2494 NR5A2 - B1F|B1F2|CPF|FTF|FTZ-F1|FTZ-F1beta|LRH-1|LRH1|hB1F-2 HGNC:7984|MIM:604453|Ensembl:ENSG00000116833|HPRD:06830|Vega:OTTHUMG00000035635 1 1q32.1 nuclear receptor subfamily 5, group A, member 2 protein-coding NR5A2 nuclear receptor subfamily 5, group A, member 2 O CYP7A promoter-binding factor|alpha-1-fetoprotein transcription factor|b1-binding factor, hepatocyte transcription factor which activates enhancer II of hepatitis B virus|fetoprotein-alpha 1 (AFP) transcription factor|hepatocytic transcription factor|liver nuclear receptor homolog-1 variant 2|liver receptor homolog 1|liver receptor homolog-1|nuclear receptor NR5A2|nuclear receptor subfamily 5 group A member 2 20121230 -9606 2495 FTH1 OK/SW-cl.84 FHC|FTH|FTHL6|PIG15|PLIF HGNC:3976|MIM:134770|Ensembl:ENSG00000167996|HPRD:00615|Vega:OTTHUMG00000166217 11 11q13 ferritin, heavy polypeptide 1 protein-coding FTH1 ferritin, heavy polypeptide 1 O apoferritin|cell proliferation-inducing gene 15 protein|ferritin H subunit|ferritin heavy chain|placenta immunoregulatory factor|proliferation-inducing protein 15 20121230 -9606 2496 FTH1P1 - FTHL1 HGNC:3979 1 1p34.3 ferritin, heavy polypeptide 1 pseudogene pseudo FTH1P1 ferritin, heavy polypeptide 1 pseudogene O - 20121230 -9606 2497 FTH1P2 - FTHL2 HGNC:3989 1 1q42.13 ferritin, heavy polypeptide 1 pseudogene 2 pseudo FTH1P2 ferritin, heavy polypeptide 1 pseudogene 2 O - 20121230 -9606 2498 FTH1P3 - FTHL3|FTHL3P HGNC:3990 2 2p23.3 ferritin, heavy polypeptide 1 pseudogene 3 pseudo FTH1P3 ferritin, heavy polypeptide 1 pseudogene 3 O - 20121230 -9606 2499 FTH1P4 - FTHL4 HGNC:3991 3 3q21.3 ferritin, heavy polypeptide 1 pseudogene 4 pseudo FTH1P4 ferritin, heavy polypeptide 1 pseudogene 4 O - 20121230 -9606 2500 FTH1P7 - FTHL7 HGNC:3994 13 13q12.11 ferritin, heavy polypeptide 1 pseudogene 7 pseudo FTH1P7 ferritin, heavy polypeptide 1 pseudogene 7 O - 20121230 -9606 2501 FTH1P8 - FTHL8 HGNC:3995 X Xq28 ferritin, heavy polypeptide 1 pseudogene 8 pseudo FTH1P8 ferritin, heavy polypeptide 1 pseudogene 8 O - 20121230 -9606 2502 FTH1P10 - FTHL10 HGNC:3980 5 5p15.1 ferritin, heavy polypeptide 1 pseudogene 10 pseudo FTH1P10 ferritin, heavy polypeptide 1 pseudogene 10 O - 20121230 -9606 2503 FTH1P11 - FTHL11 HGNC:3981 8 8q21.13 ferritin, heavy polypeptide 1 pseudogene 11 pseudo FTH1P11 ferritin, heavy polypeptide 1 pseudogene 11 O - 20121230 -9606 2504 FTH1P12 - FTHL12 HGNC:3982 9 9p22.3 ferritin, heavy polypeptide 1 pseudogene 12 pseudo FTH1P12 ferritin, heavy polypeptide 1 pseudogene 12 O - 20121230 -9606 2507 FTH1P15 - FTHL15 HGNC:3985 6 6p12 ferritin, heavy polypeptide 1 pseudogene 15 pseudo FTH1P15 ferritin, heavy polypeptide 1 pseudogene 15 O - 20121230 -9606 2508 FTH1P16 - FTH2|FTHL16 HGNC:3986|HPRD:17023 11 11q13 ferritin, heavy polypeptide 1 pseudogene 16 pseudo FTH1P16 ferritin, heavy polypeptide 1 pseudogene 16 O - 20121230 -9606 2509 FTH1P5 - FTHL5|FTHP1 HGNC:3996 6 6p12.3 ferritin, heavy polypeptide 1 pseudogene 5 pseudo FTH1P5 ferritin, heavy polypeptide 1 pseudogene 5 O - 20121230 -9606 2510 FTH1P21 - FTHL21|FTHP2 HGNC:3997 4 4q32.1 ferritin, heavy polypeptide 1 pseudogene 21 pseudo FTH1P21 ferritin, heavy polypeptide 1 pseudogene 21 O - 20121230 -9606 2512 FTL - NBIA3 HGNC:3999|MIM:134790|Ensembl:ENSG00000087086|HPRD:00616 19 19q13.33 ferritin, light polypeptide protein-coding FTL ferritin, light polypeptide O ferritin L subunit|ferritin L-chain|ferritin light chain|ferritin light polypeptide-like 3 20121230 -9606 2515 ADAM2 - CRYN1|CRYN2|CT15|FTNB|PH-30b|PH30 HGNC:198|MIM:601533|Ensembl:ENSG00000104755|HPRD:03322|Vega:OTTHUMG00000164041 8 8p11.2 ADAM metallopeptidase domain 2 protein-coding ADAM2 ADAM metallopeptidase domain 2 O ADAM 2|PH-30|PH30-beta|cancer/testis antigen 15|disintegrin and metalloproteinase domain-containing protein 2|fertilin beta|fertilin subunit beta 20121230 -9606 2516 NR5A1 RP11-101K10.1 AD4BP|ELP|FTZ1|FTZF1|POF7|SF-1|SF1|SPGF8|SRXY3 HGNC:7983|MIM:184757|Ensembl:ENSG00000136931|HPRD:01702|Vega:OTTHUMG00000020655 9 9q33 nuclear receptor subfamily 5, group A, member 1 protein-coding NR5A1 nuclear receptor subfamily 5, group A, member 1 O STF-1|adrenal 4 binding protein|adrenal 4-binding protein|fushi tarazu factor homolog 1|nuclear receptor AdBP4|steroid hormone receptor Ad4BP|steroidogenic factor 1|steroidogenic factor 1 nuclear receptor|steroidogenic factor-1 20121230 -9606 2517 FUCA1 RP11-45G17.1 FUCA HGNC:4006|MIM:612280|Ensembl:ENSG00000179163|HPRD:01974|Vega:OTTHUMG00000002965 1 1p34 fucosidase, alpha-L- 1, tissue protein-coding FUCA1 fucosidase, alpha-L- 1, tissue O alpha-L-fucosidase 1|alpha-L-fucosidase I|alpha-L-fucoside fucohydrolase 1|tissue alpha-L-fucosidase 20121230 -9606 2518 FUCA1P1 - FUCA1P HGNC:4007 2 2q31-q32 fucosidase, alpha-L- 1, tissue pseudogene 1 pseudo FUCA1P1 fucosidase, alpha-L- 1, tissue pseudogene 1 O - 20121230 -9606 2519 FUCA2 RP1-20N2.5 dJ20N2.5 HGNC:4008|MIM:136820|Ensembl:ENSG00000001036|HPRD:00649|Vega:OTTHUMG00000015728 6 6q24 fucosidase, alpha-L- 2, plasma protein-coding FUCA2 fucosidase, alpha-L- 2, plasma O alpha-L-fucosidase 2|alpha-L-fucoside fucohydrolase 2|plasma alpha-L-fucosidase 20121230 -9606 2520 GAST - GAS HGNC:4164|MIM:137250|Ensembl:ENSG00000184502|HPRD:00671|Vega:OTTHUMG00000133496 17 17q21 gastrin protein-coding GAST gastrin O - 20121230 -9606 2521 FUS - ALS6|ETM4|FUS1|HNRNPP2|POMP75|TLS HGNC:4010|MIM:137070|Ensembl:ENSG00000089280|HPRD:00660|Vega:OTTHUMG00000132395 16 16p11.2 fused in sarcoma protein-coding FUS fused in sarcoma O 75 kDa DNA-pairing protein|RNA-binding protein FUS|fus-like protein|fusion gene in myxoid liposarcoma|heterogeneous nuclear ribonucleoprotein P2|oncogene FUS|oncogene TLS|translocated in liposarcoma protein 20121230 -9606 2522 FUSE - - HGNC:4011|MIM:174750 10 - polykaryocytosis promoter unknown FUSE polykaryocytosis promoter O - 20110215 -9606 2523 FUT1 - H|HH|HSC HGNC:4012|MIM:211100|Ensembl:ENSG00000174951|HPRD:07186 19 19q13.3 fucosyltransferase 1 (galactoside 2-alpha-L-fucosyltransferase, H blood group) protein-coding FUT1 fucosyltransferase 1 (galactoside 2-alpha-L-fucosyltransferase, H blood group) O 2-alpha-L-fucosyltransferase|GDP-L-fucose:beta-D-galactoside 2-alpha-L-fucosyltransferase 1|alpha (1,2) fucosyltransferase|alpha(1,2)FT 1|blood group H alpha 2-fucosyltransferase|fucosyltransferase 1 (galactoside 2-alpha-L-fucosyltransferase)|galactoside 2-alpha-L-fucosyltransferase 1 20121230 -9606 2524 FUT2 - B12QTL1|SE|SEC2|Se2|sej HGNC:4013|MIM:182100|Ensembl:ENSG00000176920|HPRD:01629|Vega:OTTHUMG00000164427 19 19q13.3 fucosyltransferase 2 (secretor status included) protein-coding FUT2 fucosyltransferase 2 (secretor status included) O GDP-L-fucose:beta-D-galactoside 2-alpha-L-fucosyltransferase 2|alpha (1,2) fucosyltransferase|alpha(1,2)FT 2|alpha(1,2)FT2|galactoside 2-alpha-L-fucosyltransferase 2|secretor blood group alpha-2-fucosyltransferase|secretor factor 20121230 -9606 2525 FUT3 - CD174|FT3B|FucT-III|LE|Les HGNC:4014|MIM:111100|Ensembl:ENSG00000171124|HPRD:00196|Vega:OTTHUMG00000180614 19 19p13.3 fucosyltransferase 3 (galactoside 3(4)-L-fucosyltransferase, Lewis blood group) protein-coding FUT3 fucosyltransferase 3 (galactoside 3(4)-L-fucosyltransferase, Lewis blood group) O Lewis FT|alpha-(1,3/1,4)-fucosyltransferase|blood group Lewis alpha-4-fucosyltransferase|fucosyltransferase III|galactoside 3(4)-L-fucosyltransferase 20121230 -9606 2526 FUT4 - CD15|ELFT|FCT3A|FUC-TIV|FUTIV|LeX|SSEA-1 HGNC:4015|MIM:104230|Ensembl:ENSG00000196371|HPRD:00083|Vega:OTTHUMG00000167795 11 11q21 fucosyltransferase 4 (alpha (1,3) fucosyltransferase, myeloid-specific) protein-coding FUT4 fucosyltransferase 4 (alpha (1,3) fucosyltransferase, myeloid-specific) O ELAM ligand fucosyltransferase|ELAM-1 ligand fucosyltransferase|Lewis X|alpha-(1,3)-fucosyltransferase|fucT-IV|fucosyltransferase IV|galactoside 3-L-fucosyltransferase|stage-specific embryonic antigen 1 20121230 -9606 2527 FUT5 - FUC-TV HGNC:4016|MIM:136835|Ensembl:ENSG00000130383|HPRD:00650|Vega:OTTHUMG00000180616 19 19p13.3 fucosyltransferase 5 (alpha (1,3) fucosyltransferase) protein-coding FUT5 fucosyltransferase 5 (alpha (1,3) fucosyltransferase) O alpha (1,3) fucosyltransferase|alpha-(1,3)-fucosyltransferase|fucT-V|fucosyltransferase V|galactoside 3-L-fucosyltransferase 20121230 -9606 2528 FUT6 - FCT3A|FT1A|Fuc-TVI|FucT-VI HGNC:4017|MIM:136836|Ensembl:ENSG00000156413|HPRD:00651|Vega:OTTHUMG00000167335 19 19p13.3 fucosyltransferase 6 (alpha (1,3) fucosyltransferase) protein-coding FUT6 fucosyltransferase 6 (alpha (1,3) fucosyltransferase) O alpha-(1,3)-fucosyltransferase|fucosyltransferase VI|galactoside 3-L-fucosyltransferase 20121230 -9606 2529 FUT7 - FucT-VII HGNC:4018|MIM:602030|Ensembl:ENSG00000180549|HPRD:03611|Vega:OTTHUMG00000020964 9 9q34.3 fucosyltransferase 7 (alpha (1,3) fucosyltransferase) protein-coding FUT7 fucosyltransferase 7 (alpha (1,3) fucosyltransferase) O alpha-(1,3)-fucosyltransferase|fuc-TVII|fucosyltransferase VII|galactoside 3-L-fucosyltransferase|selectin ligand synthase|selectin-ligand synthase 20121230 -9606 2530 FUT8 - - HGNC:4019|MIM:602589|Ensembl:ENSG00000033170|HPRD:03994|Vega:OTTHUMG00000142818 14 14q24.3 fucosyltransferase 8 (alpha (1,6) fucosyltransferase) protein-coding FUT8 fucosyltransferase 8 (alpha (1,6) fucosyltransferase) O GDP-L-Fuc:N-acetyl-beta-D-glucosaminide alpha1,6-fucosyltransferase|GDP-fucose--glycoprotein fucosyltransferase|alpha-(1,6)-fucosyltransferase|alpha1-6FucT|glycoprotein 6-alpha-L-fucosyltransferase 20121230 -9606 2531 KDSR - DHSR|FVT1|SDR35C1 HGNC:4021|MIM:136440|Ensembl:ENSG00000119537|HPRD:00640|Vega:OTTHUMG00000132792 18 18q21.3 3-ketodihydrosphingosine reductase protein-coding KDSR 3-ketodihydrosphingosine reductase O 3-dehydrosphinganine reductase|FVT-1|KDS reductase|follicular lymphoma variant translocation 1|follicular variant translocation protein 1|short chain dehydrogenase/reductase family 35C, member 1 20121230 -9606 2532 DARC CTA-134P22.3 CCBP1|CD234|Dfy|FY|GPD|GpFy|WBCQ1 HGNC:4035|MIM:613665|Ensembl:ENSG00000213088|HPRD:00192|Vega:OTTHUMG00000037182 1 1q21-q22 Duffy blood group, chemokine receptor protein-coding DARC Duffy blood group, chemokine receptor O Duffy antigen/chemokine receptor|Duffy blood group antigen|Fy glycoprotein|glycoprotein D|plasmodium vivax receptor 20121230 -9606 2533 FYB - ADAP|PRO0823|SLAP-130 HGNC:4036|MIM:602731|Ensembl:ENSG00000082074|HPRD:04107|Vega:OTTHUMG00000162071 5 5p13.1 FYN binding protein protein-coding FYB FYN binding protein O FYB-120/130|FYN-T-binding protein|FYN-binding protein|SLP-76-associated phosphoprotein|adhesion and degranulation-promoting adaptor protein|p120/p130 20121230 -9606 2534 FYN RP1-66H14.1 SLK|SYN|p59-FYN HGNC:4037|MIM:137025|Ensembl:ENSG00000010810|HPRD:00655|Vega:OTTHUMG00000016305 6 6q21 FYN oncogene related to SRC, FGR, YES protein-coding FYN FYN oncogene related to SRC, FGR, YES O OKT3-induced calcium influx regulator|c-syn protooncogene|proto-oncogene Syn|proto-oncogene c-Fyn|src-like kinase|src/yes-related novel|tyrosine kinase p59fyn(T)|tyrosine-protein kinase Fyn 20121230 -9606 2535 FZD2 - Fz2|fz-2|fzE2|hFz2 HGNC:4040|MIM:600667|Ensembl:ENSG00000180340|HPRD:02813|Vega:OTTHUMG00000181819 17 17q21.1 frizzled family receptor 2 protein-coding FZD2 frizzled family receptor 2 O frizzled 2, seven transmembrane spanning receptor|frizzled homolog 2|frizzled-2 20121230 -9606 2537 IFI6 RP11-288L9.2 6-16|FAM14C|G1P3|IFI-6-16|IFI616 HGNC:4054|MIM:147572|Ensembl:ENSG00000126709|HPRD:00959|Vega:OTTHUMG00000003518 1 1p35 interferon, alpha-inducible protein 6 protein-coding IFI6 interferon, alpha-inducible protein 6 O interferon alpha-inducible protein 6|interferon, alpha-inducible protein clone IFI-6-16|interferon-induced protein 6-16 20121230 -9606 2538 G6PC - G6PC1|G6PT|GSD1|GSD1a HGNC:4056|MIM:613742|Ensembl:ENSG00000131482|HPRD:01983|Vega:OTTHUMG00000180657 17 17q21 glucose-6-phosphatase, catalytic subunit protein-coding G6PC glucose-6-phosphatase, catalytic subunit O G-6-Pase|G6Pase|G6Pase-alpha|glucose-6-phosphatase|glucose-6-phosphatase alpha 20121230 -9606 2539 G6PD - G6PD1 HGNC:4057|MIM:305900|Ensembl:ENSG00000160211|HPRD:02377|Vega:OTTHUMG00000024237 X Xq28 glucose-6-phosphate dehydrogenase protein-coding G6PD glucose-6-phosphate dehydrogenase O glucose-6-phosphate 1-dehydrogenase|glucose-6-phosphate dehydrogenase, G6PD 20121230 -9606 2540 G6PDL - - HGNC:4058|MIM:138110 17 - glucose-6-phosphate dehydrogenase-like protein-coding G6PDL glucose-6-phosphate dehydrogenase-like O - 20080828 -9606 2541 G6PR - GSD1aSP HGNC:4059 - - glucose-6-phosphatase regulator protein-coding G6PR glucose-6-phosphatase regulator O glucose-6-phosphatase, regulatory 20080828 -9606 2542 SLC37A4 PRO0685 G6PT1|G6PT2|G6PT3|GSD1b|GSD1c|GSD1d|TRG-19|TRG19 HGNC:4061|MIM:602671|HPRD:04052 11 11q23.3 solute carrier family 37 (glucose-6-phosphate transporter), member 4 protein-coding SLC37A4 solute carrier family 37 (glucose-6-phosphate transporter), member 4 O glucose-5-phosphate transporter|glucose-6-phosphatase, transport (glucose) protein 3|glucose-6-phosphatase, transport (glucose-6-phosphate) protein 1|glucose-6-phosphatase, transport (phosphate/pyrophosphate) protein 2|glucose-6-phosphate translocase|microsomal glucose-6-phosphate transporter|solute carrier family 37 member 4|transformation-related gene 19 protein 20121230 -9606 2543 GAGE1 - CT4.1|GAGE-1 HGNC:4098|MIM:300594|Ensembl:ENSG00000205777|Ensembl:ENSG00000255738|HPRD:05028|Vega:OTTHUMG00000024150 X Xp11.23 G antigen 1 protein-coding GAGE1 G antigen 1 O MZ2-F antigen|cancer/testis antigen 4.1|cancer/testis antigen family 4, member 1 20121230 -9606 2546 G7P1 - - HGNC:4064|MIM:148750 7 7q22-q32 kinase-like protein protein-coding G7P1 kinase-like protein O - 20080828 -9606 2547 XRCC6 CTA-216E10.7 CTC75|CTCBF|G22P1|KU70|ML8|TLAA HGNC:4055|MIM:152690|Ensembl:ENSG00000196419|HPRD:01071|Vega:OTTHUMG00000151190 22 22q13.2 X-ray repair complementing defective repair in Chinese hamster cells 6 protein-coding XRCC6 X-ray repair complementing defective repair in Chinese hamster cells 6 O 5'-dRP lyase Ku70|5'-deoxyribose-5-phosphate lyase Ku70|70 kDa subunit of Ku antigen|ATP-dependent DNA helicase 2 subunit 1|ATP-dependent DNA helicase II 70 kDa subunit|ATP-dependent DNA helicase II, 70 kDa subunit|CTC box binding factor 75 kDa subunit|CTC box-binding factor 75 kDa subunit|DNA repair protein XRCC6|Ku autoantigen p70 subunit|Ku autoantigen, 70kDa|X-ray repair cross-complementing protein 6|lupus Ku autoantigen protein p70|thyroid autoantigen 70kD (Ku antigen)|thyroid autoantigen 70kDa (Ku antigen)|thyroid-lupus autoantigen p70 20121230 -9606 2548 GAA - LYAG HGNC:4065|MIM:606800|Ensembl:ENSG00000171298|HPRD:06006|Vega:OTTHUMG00000177537 17 17q25.2-q25.3 glucosidase, alpha; acid protein-coding GAA glucosidase, alpha; acid O acid maltase|aglucosidase alfa|lysosomal alpha-glucosidase 20121230 -9606 2549 GAB1 - - HGNC:4066|MIM:604439|Ensembl:ENSG00000109458|HPRD:05116|Vega:OTTHUMG00000161432 4 4q31.21 GRB2-associated binding protein 1 protein-coding GAB1 GRB2-associated binding protein 1 O GRB2-associated binder 1|GRB2-associated-binding protein 1|growth factor receptor bound protein 2-associated protein 1 20121230 -9606 2550 GABBR1 DAAP-188P13.3 GABABR1|GABBR1-3|GB1|GPRC3A|dJ271M21.1.1|dJ271M21.1.2 HGNC:4070|MIM:603540|Ensembl:ENSG00000204681|HPRD:04644|Vega:OTTHUMG00000031095 6 6p21.31 gamma-aminobutyric acid (GABA) B receptor, 1 protein-coding GABBR1 gamma-aminobutyric acid (GABA) B receptor, 1 O GABA-BR1|GABAB, subunit 1c|gamma-aminobutyric acid type B receptor subunit 1|seven transmembrane helix receptor 20121230 -9606 2551 GABPA - E4TF1-60|E4TF1A|NFT2|NRF2|NRF2A|RCH04A07 HGNC:4071|MIM:600609|Ensembl:ENSG00000154727|HPRD:11793|Vega:OTTHUMG00000078443 21 21q21.3 GA binding protein transcription factor, alpha subunit 60kDa protein-coding GABPA GA binding protein transcription factor, alpha subunit 60kDa O GA binding protein transcription factor alpha subunit 60kDa|GA-binding protein alpha chain|GABP subunit alpha|human nuclear respiratory factor-2 subunit alpha|nuclear respiratory factor 2 alpha subunit|nuclear respiratory factor 2 subunit alpha|transcription factor E4TF1-60 20121230 -9606 2553 GABPB1 - BABPB2|E4TF1|E4TF1-47|E4TF1-53|E4TF1B|GABPB|GABPB2|NRF2B1|NRF2B2 HGNC:4074|MIM:600610|Ensembl:ENSG00000104064|HPRD:15975|Vega:OTTHUMG00000131642 15 15q21.2 GA binding protein transcription factor, beta subunit 1 protein-coding GABPB1 GA binding protein transcription factor, beta subunit 1 O GA binding protein transcription factor beta subunit 1 transcript variant gamma-2|GA-binding protein subunit beta-1|GABP subunit beta-2|GABPB-1|nuclear respiratory factor 2|transcription factor E4TF1-47|transcription factor E4TF1-53 20121230 -9606 2554 GABRA1 - ECA4|EJM|EJM5 HGNC:4075|MIM:137160|Ensembl:ENSG00000022355|HPRD:00662|Vega:OTTHUMG00000163586 5 5q34 gamma-aminobutyric acid (GABA) A receptor, alpha 1 protein-coding GABRA1 gamma-aminobutyric acid (GABA) A receptor, alpha 1 O GABA(A) receptor subunit alpha-1|GABA(A) receptor, alpha 1|gamma-aminobutyric acid receptor subunit alpha-1 20121230 -9606 2555 GABRA2 - - HGNC:4076|MIM:137140|Ensembl:ENSG00000151834|HPRD:11747|Vega:OTTHUMG00000044266 4 4p12 gamma-aminobutyric acid (GABA) A receptor, alpha 2 protein-coding GABRA2 gamma-aminobutyric acid (GABA) A receptor, alpha 2 O GABA(A) receptor subunit alpha-2|GABA(A) receptor, alpha 2|gamma-aminobutyric acid receptor subunit alpha-2 20121230 -9606 2556 GABRA3 - - HGNC:4077|MIM:305660|Ensembl:ENSG00000011677|HPRD:02375|Vega:OTTHUMG00000024183 X Xq28 gamma-aminobutyric acid (GABA) A receptor, alpha 3 protein-coding GABRA3 gamma-aminobutyric acid (GABA) A receptor, alpha 3 O GABA(A) receptor subunit alpha-3|GABA(A) receptor, alpha 3|gamma-aminobutyric acid receptor subunit alpha-3|gamma-animobutyric acid (GABA) A receptor, alpha 3 20121230 -9606 2557 GABRA4 - - HGNC:4078|MIM:137141|Ensembl:ENSG00000109158|HPRD:08839|Vega:OTTHUMG00000099431 4 4p12 gamma-aminobutyric acid (GABA) A receptor, alpha 4 protein-coding GABRA4 gamma-aminobutyric acid (GABA) A receptor, alpha 4 O GABA(A) receptor, alpha 4|gamma-aminobutyric acid receptor subunit alpha-4 20121230 -9606 2558 GABRA5 - - HGNC:4079|MIM:137142|Ensembl:ENSG00000186297|HPRD:08840|Vega:OTTHUMG00000171824 15 15q12 gamma-aminobutyric acid (GABA) A receptor, alpha 5 protein-coding GABRA5 gamma-aminobutyric acid (GABA) A receptor, alpha 5 O GABA(A) receptor subunit alpha-5|gamma-aminobutyric acid receptor subunit alpha-5 20121230 -9606 2559 GABRA6 - - HGNC:4080|MIM:137143|Ensembl:ENSG00000145863|HPRD:08841|Vega:OTTHUMG00000130351 5 5q34 gamma-aminobutyric acid (GABA) A receptor, alpha 6 protein-coding GABRA6 gamma-aminobutyric acid (GABA) A receptor, alpha 6 O GABA subunit A receptor alpha 6|GABA(A) receptor subunit alpha-6|GABA(A) receptor, alpha 6|gamma-aminobutyric acid receptor subunit alpha-6 20121230 -9606 2560 GABRB1 - - HGNC:4081|MIM:137190|Ensembl:ENSG00000163288|HPRD:15924|Vega:OTTHUMG00000044269 4 4p12 gamma-aminobutyric acid (GABA) A receptor, beta 1 protein-coding GABRB1 gamma-aminobutyric acid (GABA) A receptor, beta 1 O GABA(A) receptor subunit beta-1|GABA(A) receptor, beta 1|gamma-aminobutyric acid receptor subunit beta-1 20121230 -9606 2561 GABRB2 - - HGNC:4082|MIM:600232|Ensembl:ENSG00000145864|HPRD:02578|Vega:OTTHUMG00000130349 5 5q34 gamma-aminobutyric acid (GABA) A receptor, beta 2 protein-coding GABRB2 gamma-aminobutyric acid (GABA) A receptor, beta 2 O GABA(A) receptor subunit beta-2|GABA(A) receptor, beta 2|gamma-aminobutyric acid A receptor beta 2|gamma-aminobutyric acid receptor subunit beta-2 20121230 -9606 2562 GABRB3 - ECA5 HGNC:4083|MIM:137192|Ensembl:ENSG00000166206|HPRD:08844|Vega:OTTHUMG00000129231 15 15q12 gamma-aminobutyric acid (GABA) A receptor, beta 3 protein-coding GABRB3 gamma-aminobutyric acid (GABA) A receptor, beta 3 O GABA(A) receptor beta-3 subunit|GABA(A) receptor, beta 3|GABA-alpha receptor beta-2 subunit|GABAA receptor beta-3 subunit|gamma-aminobutyric acid receptor subunit beta-3 20121230 -9606 2563 GABRD - EIG10|EJM7|GEFSP5 HGNC:4084|MIM:137163|Ensembl:ENSG00000187730|HPRD:08842|Vega:OTTHUMG00000041064 1 1p36.3 gamma-aminobutyric acid (GABA) A receptor, delta protein-coding GABRD gamma-aminobutyric acid (GABA) A receptor, delta O GABA(A) receptor subunit delta|GABA(A) receptor, delta|GABA-A receptor, delta polypeptide|gamma-aminobutyric acid receptor subunit delta 20121230 -9606 2564 GABRE - - HGNC:4085|MIM:300093|Ensembl:ENSG00000102287|HPRD:02104|Vega:OTTHUMG00000024176 X Xq28 gamma-aminobutyric acid (GABA) A receptor, epsilon protein-coding GABRE gamma-aminobutyric acid (GABA) A receptor, epsilon O GABA(A) receptor subunit epsilon|GABA(A) receptor, epsilon|gamma-aminobutyric acid receptor subunit epsilon 20121230 -9606 2565 GABRG1 - - HGNC:4086|MIM:137166|Ensembl:ENSG00000163285|HPRD:15923|Vega:OTTHUMG00000128609 4 4p12 gamma-aminobutyric acid (GABA) A receptor, gamma 1 protein-coding GABRG1 gamma-aminobutyric acid (GABA) A receptor, gamma 1 O GABA(A) receptor subunit gamma-1|GABA(A) receptor, gamma|gamma-1 polypeptide|gamma-aminobutyric acid receptor subunit gamma-1 20121230 -9606 2566 GABRG2 - CAE2|ECA2|GEFSP3 HGNC:4087|MIM:137164|Ensembl:ENSG00000113327|HPRD:00663|Vega:OTTHUMG00000130350 5 5q34 gamma-aminobutyric acid (GABA) A receptor, gamma 2 protein-coding GABRG2 gamma-aminobutyric acid (GABA) A receptor, gamma 2 O GABA(A) receptor subunit gamma-2|GABA(A) receptor, gamma 2|gamma-aminobutyric acid receptor subunit gamma-2 20121230 -9606 2567 GABRG3 - - HGNC:4088|MIM:600233|Ensembl:ENSG00000182256|HPRD:02579|Vega:OTTHUMG00000044462 15 15q12 gamma-aminobutyric acid (GABA) A receptor, gamma 3 protein-coding GABRG3 gamma-aminobutyric acid (GABA) A receptor, gamma 3 O GABA(A) receptor subunit gamma-3|GABA(G) receptor, gamma 3|gamma-aminobutyric acid receptor subunit gamma-3 20121230 -9606 2568 GABRP - - HGNC:4089|MIM:602729|Ensembl:ENSG00000094755|HPRD:04105|Vega:OTTHUMG00000130443 5 5q35.1 gamma-aminobutyric acid (GABA) A receptor, pi protein-coding GABRP gamma-aminobutyric acid (GABA) A receptor, pi O GABA(A) receptor subunit pi|GABA(A) receptor, pi|gamma-aminobutyric acid receptor subunit pi 20121230 -9606 2569 GABRR1 RP11-63L7.1 - HGNC:4090|MIM:137161|Ensembl:ENSG00000146276|HPRD:15921|Vega:OTTHUMG00000015195 6 6q15 gamma-aminobutyric acid (GABA) A receptor, rho 1 protein-coding GABRR1 gamma-aminobutyric acid (GABA) A receptor, rho 1 O GABA(A) receptor subunit rho-1|GABA(A) receptor, rho 1|GABA(C) receptor|bA135P14.1 (gamma-aminobutyric acid (GABA) receptor, rho 1)|gamma-aminobutyric acid (GABA) A receptor, rho-1|gamma-aminobutyric acid (GABA) receptor, rho 1|gamma-aminobutyric acid receptor subunit rho-1 20121230 -9606 2570 GABRR2 RP1-131H7.1 - HGNC:4091|MIM:137162|Ensembl:ENSG00000111886|HPRD:15922|Vega:OTTHUMG00000015198 6 6q15 gamma-aminobutyric acid (GABA) A receptor, rho 2 protein-coding GABRR2 gamma-aminobutyric acid (GABA) A receptor, rho 2 O GABA(A) receptor subunit rho-2|GABA(A) receptor, rho 2|GABA(C) receptor|GABA-C receptor, rho-2 subunit|gamma-aminobutyric acid (GABA) receptor, rho 2|gamma-aminobutyric acid receptor subunit rho-2 20121230 -9606 2571 GAD1 - CPSQ1|GAD|SCP HGNC:4092|MIM:605363|Ensembl:ENSG00000128683|HPRD:12011|Vega:OTTHUMG00000044175 2 2q31 glutamate decarboxylase 1 (brain, 67kDa) protein-coding GAD1 glutamate decarboxylase 1 (brain, 67kDa) O 67 kDa glutamic acid decarboxylase|GAD-67|glutamate decarboxylase 1|glutamate decarboxylase 67 kDa isoform 20121230 -9606 2572 GAD2 RP11-420F12.2 GAD65 HGNC:4093|MIM:138275|Ensembl:ENSG00000136750|HPRD:11817|Vega:OTTHUMG00000017836 10 10p11.23 glutamate decarboxylase 2 (pancreatic islets and brain, 65kDa) protein-coding GAD2 glutamate decarboxylase 2 (pancreatic islets and brain, 65kDa) O 65 kDa glutamic acid decarboxylase|GAD-65|Glutamate decarboxylase-2 (pancreas)|glutamate decarboxylase 2|glutamate decarboxylase 65 kDa isoform 20121230 -9606 2574 GAGE2C - CT4.2|GAGE-2|GAGE-2C|GAGE2 HGNC:31958|MIM:300595|Ensembl:ENSG00000236249|HPRD:05029|Vega:OTTHUMG00000067392 X Xp11.23 G antigen 2C protein-coding GAGE2C G antigen 2C O G antigen 2|G antigen 2B/2C|cancer/testis antigen 4.2 20121230 -9606 2575 GAGE3 - CT4.3 HGNC:4100|MIM:300596 X Xp11.4-p11.2 G antigen 3 protein-coding GAGE3 G antigen 3 O GAGE-3|cancer/testis antigen 4.3|cancer/testis antigen family 4, member 3 20110814 -9606 2576 GAGE4 - CT4.4 HGNC:4101|MIM:300597|HPRD:05031 X Xp11.4-p11.2 G antigen 4 protein-coding GAGE4 G antigen 4 O GAGE-4|cancer/testis antigen 4.4|cancer/testis antigen family 4, member 4 20121117 -9606 2577 GAGE5 - CT4.5 HGNC:4102|MIM:300598|HPRD:05032 X Xp11.4-p11.2 G antigen 5 protein-coding GAGE5 G antigen 5 O GAGE-5|cancer/testis antigen 4.5|cancer/testis antigen family 4, member 5 20121209 -9606 2578 GAGE6 - CT4.6 HGNC:4103|MIM:300599|HPRD:05033 X Xp11.4-p11.2 G antigen 6 protein-coding GAGE6 G antigen 6 O GAGE-6|cancer/testis antigen 4.6|cancer/testis antigen family 4, member 6 20120508 -9606 2579 GAGE7 - AL4|CT4.7|GAGE-7 HGNC:4104|MIM:300601|HPRD:04993 X Xp11.4-p11.2 G antigen 7 protein-coding GAGE7 G antigen 7 O G antigen 12G|cancer/testis antigen 4.7|cancer/testis antigen family 4, member 7 20121117 -9606 2580 GAK - DNAJ26|DNAJC26 HGNC:4113|MIM:602052|Ensembl:ENSG00000178950|HPRD:03631|Vega:OTTHUMG00000088301 4 4p16 cyclin G associated kinase protein-coding GAK cyclin G associated kinase O auxilin-2|cyclin-G-associated kinase 20121230 -9606 2581 GALC - - HGNC:4115|MIM:606890|Ensembl:ENSG00000054983|HPRD:06057|Vega:OTTHUMG00000028646 14 14q31 galactosylceramidase protein-coding GALC galactosylceramidase O GALCERase|galactocerebrosidase|galactocerebroside beta-galactosidase|galactosylceramide beta-galactosidase|galactosylceraminidase 20121230 -9606 2582 GALE RP5-886K2.6 SDR1E1 HGNC:4116|MIM:606953|Ensembl:ENSG00000117308|HPRD:06092|Vega:OTTHUMG00000002958 1 1p36-p35 UDP-galactose-4-epimerase protein-coding GALE UDP-galactose-4-epimerase O UDP galactose-4'-epimerase|UDP-galactose 4-epimerase|UDP-glucose 4-epimerase|galactose-4-epimerase, UDP-|galactowaldenase|short chain dehydrogenase/reductase family 1E, member 1 20121230 -9606 2583 B4GALNT1 - GALGT|GALNACT HGNC:4117|MIM:601873|Ensembl:ENSG00000135454|HPRD:03525|Vega:OTTHUMG00000170190 12 12q13.3 beta-1,4-N-acetyl-galactosaminyl transferase 1 protein-coding B4GALNT1 beta-1,4-N-acetyl-galactosaminyl transferase 1 O (N-acetylneuraminyl)-galactosylglucosylceramide|GD2 synthase, GM2 synthase|GM2/GD2 synthase|GalNAc-T|UDP-Gal:betaGlcNAc beta-1,4-N-acetylgalactosaminyltransferase transferase 1|UDP-N-acetyl-alpha-D-galactosamine:(N-acetylneuraminyl)-galactosylglucosylceramide N-acetylgalactosaminyltransferase (GalNAc-T)|beta-1,4 N-acetylgalactosaminyltransferase 1|beta1,4GalNAc-T|beta1-4GalNAc-T 20121230 -9606 2584 GALK1 - GALK|GK1 HGNC:4118|MIM:604313|Ensembl:ENSG00000108479|HPRD:05057|Vega:OTTHUMG00000179832 17 17q24 galactokinase 1 protein-coding GALK1 galactokinase 1 O galactokinase|galactose kinase 20121230 -9606 2585 GALK2 - GK2 HGNC:4119|MIM:137028|Ensembl:ENSG00000156958|HPRD:00657|Vega:OTTHUMG00000172325 15 15q21.1-q21.2 galactokinase 2 protein-coding GALK2 galactokinase 2 O N-acetylgalactosamine kinase|galNAc kinase 20121230 -9606 2587 GALR1 - GALNR|GALNR1 HGNC:4132|MIM:600377|Ensembl:ENSG00000166573|HPRD:02657|Vega:OTTHUMG00000132875 18 18q23 galanin receptor 1 protein-coding GALR1 galanin receptor 1 O GAL1-R|GALR-1|galanin receptor type 1 20121230 -9606 2588 GALNS - GALNAC6S|GAS|MPS4A HGNC:4122|MIM:612222|Ensembl:ENSG00000141012|HPRD:08357|Vega:OTTHUMG00000137862 16 16q24.3 galactosamine (N-acetyl)-6-sulfate sulfatase protein-coding GALNS galactosamine (N-acetyl)-6-sulfate sulfatase O N-acetylgalactosamine-6-sulfatase|N-acetylgalactosamine-6-sulfate sulfatase|chondroitinase|chondroitinsulfatase|galNAc6S sulfatase|galactose-6-sulfate sulfatase 20121230 -9606 2589 GALNT1 - GALNAC-T1 HGNC:4123|MIM:602273|Ensembl:ENSG00000141429|HPRD:03781|Vega:OTTHUMG00000132567 18 18q12.1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 1 (GalNAc-T1) protein-coding GALNT1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 1 (GalNAc-T1) O GalNAc transferase 1|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 1|polypeptide GalNAc transferase 1|polypeptide N-acetylgalactosaminyltransferase 1|pp-GaNTase 1|protein-UDP acetylgalactosaminyltransferase 1 20121230 -9606 2590 GALNT2 RP5-956O18.1 GalNAc-T2 HGNC:4124|MIM:602274|Ensembl:ENSG00000143641|HPRD:03782|Vega:OTTHUMG00000037771 1 1q41-q42 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 2 (GalNAc-T2) protein-coding GALNT2 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 2 (GalNAc-T2) O UDP-GalNAc transferase 2|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 2|polypeptide GalNAc transferase 2|polypeptide N-acetylgalactosaminyltransferase 2|pp-GaNTase 2|protein-UDP acetylgalactosaminyltransferase 2 20121230 -9606 2591 GALNT3 - GalNAc-T3|HFTC|HHS HGNC:4125|MIM:601756|Ensembl:ENSG00000115339|HPRD:03453|Vega:OTTHUMG00000132157 2 2q24-q31 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 3 (GalNAc-T3) protein-coding GALNT3 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 3 (GalNAc-T3) O GalNAc transferase 3|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 3|polypeptide GalNAc transferase 3|polypeptide GalNAc-transferase T3|polypeptide N-acetylgalactosaminyltransferase 3|pp-GaNTase 3|protein-UDP acetylgalactosaminyltransferase 3 20121230 -9606 2592 GALT hCG_2040046 - HGNC:4135|MIM:606999|Ensembl:ENSG00000213930|HPRD:06106|Vega:OTTHUMG00000019836 9 9p13 galactose-1-phosphate uridylyltransferase protein-coding GALT galactose-1-phosphate uridylyltransferase O UDP-glucose--hexose-1-phosphate uridylyltransferase|gal-1-P uridylyltransferase|galactose-1-phosphate uridyl transferase 20121230 -9606 2593 GAMT - PIG2|TP53I2 HGNC:4136|MIM:601240|Ensembl:ENSG00000130005|HPRD:03142|Vega:OTTHUMG00000180095 19 19p13.3 guanidinoacetate N-methyltransferase protein-coding GAMT guanidinoacetate N-methyltransferase O - 20121230 -9606 2595 GANC - - HGNC:4139|MIM:104180|Ensembl:ENSG00000214013|HPRD:00077|Vega:OTTHUMG00000130487 15 15q15.2 glucosidase, alpha; neutral C protein-coding GANC glucosidase, alpha; neutral C O neutral alpha-glucosidase C 20121230 -9606 2596 GAP43 - B-50|PP46 HGNC:4140|MIM:162060|Ensembl:ENSG00000172020|HPRD:01198|Vega:OTTHUMG00000133758 3 3q13.1-q13.2 growth associated protein 43 protein-coding GAP43 growth associated protein 43 O axonal membrane protein GAP-43|calmodulin-binding protein P-57|growth-associated protein 43|nerve growth-related peptide GAP43|neural phosphoprotein B-50|neuromodulin|neuron growth-associated protein 43|protein F1 20121230 -9606 2597 GAPDH CDABP0047 G3PD|GAPD HGNC:4141|MIM:138400|Ensembl:ENSG00000111640|HPRD:00713|Vega:OTTHUMG00000137379 12 12p13 glyceraldehyde-3-phosphate dehydrogenase protein-coding GAPDH glyceraldehyde-3-phosphate dehydrogenase O aging-associated gene 9 protein|peptidyl-cysteine S-nitrosylase GAPDH 20121230 -9606 2601 GAPDHP60 - GAPDHL4|GAPDL4 HGNC:4153 4 4q22.1 glyceraldehyde-3-phosphate dehydrogenase pseudogene 60 pseudo GAPDHP60 glyceraldehyde-3-phosphate dehydrogenase pseudogene 60 O - 20121230 -9606 2609 GAPDHP67 RP11-274K13.4 GAPDHL12|GAPDL12 HGNC:4145 X Xq26.3 glyceraldehyde 3 phosphate dehydrogenase pseudogene 67 pseudo GAPDHP67 glyceraldehyde 3 phosphate dehydrogenase pseudogene 67 O - 20121230 -9606 2611 GAPDHP69 - GAPDHL14|GAPDL14 HGNC:4147 13 13q12 glyceraldehyde 3 phosphate dehydrogenase pseudogene 69 pseudo GAPDHP69 glyceraldehyde 3 phosphate dehydrogenase pseudogene 69 O - 20121230 -9606 2613 GAPDHP71 - GAPDHL16|GAPDL16 HGNC:4149 5 5q35.2 glyceraldehyde-3-phosphate dehydrogenase pseudogene 71 pseudo GAPDHP71 glyceraldehyde-3-phosphate dehydrogenase pseudogene 71 O - 20121230 -9606 2615 LRRC32 - D11S833E|GARP HGNC:4161|MIM:137207|Ensembl:ENSG00000137507|HPRD:00667|Vega:OTTHUMG00000133687 11 11q13.5-q14 leucine rich repeat containing 32 protein-coding LRRC32 leucine rich repeat containing 32 O garpin|glycoprotein A repetitions predominant|leucine-rich repeat-containing protein 32 20121230 -9606 2616 GAPDHP1 - GAPDHL2|GAPDL2|GAPDP1 HGNC:4159 X Xp11.4 glyceraldehyde-3-phosphate dehydrogenase pseudogene 1 pseudo GAPDHP1 glyceraldehyde-3-phosphate dehydrogenase pseudogene 1 O - 20121230 -9606 2617 GARS - CMT2D|DSMAV|GlyRS|HMN5|SMAD1 HGNC:4162|MIM:600287|Ensembl:ENSG00000106105|HPRD:02617|Vega:OTTHUMG00000152769 7 7p15 glycyl-tRNA synthetase protein-coding GARS glycyl-tRNA synthetase O AP-4-A synthetase|Charcot-Marie-Tooth neuropathy 2D|Charcot-Marie-Tooth neuropathy, neuronal type, D|diadenosine tetraphosphate synthetase|glycine tRNA ligase|glycine--tRNA ligase 20121230 -9606 2618 GART - AIRS|GARS|GARTF|PAIS|PGFT|PRGS HGNC:4163|MIM:138440|Ensembl:ENSG00000159131|HPRD:00716|Vega:OTTHUMG00000065628 21 21q22.11 phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase protein-coding GART phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase O trifunctional purine biosynthetic protein adenosine-3 20121230 -9606 2619 GAS1 - - HGNC:4165|MIM:139185|Ensembl:ENSG00000180447|HPRD:00747|Vega:OTTHUMG00000020141 9 9q21.3-q22 growth arrest-specific 1 protein-coding GAS1 growth arrest-specific 1 O GAS-1|Growth arrest-specific gene-1|growth arrest-specific protein 1 20121230 -9606 2620 GAS2 - - HGNC:4167|MIM:602835|Ensembl:ENSG00000148935|HPRD:04158|Vega:OTTHUMG00000166071 11 11p14.3 growth arrest-specific 2 protein-coding GAS2 growth arrest-specific 2 O GAS-2|growth arrest-specific protein 2 20121230 -9606 2621 GAS6 - AXLLG|AXSF HGNC:4168|MIM:600441|Ensembl:ENSG00000183087|HPRD:02705|Vega:OTTHUMG00000017395 13 13q34 growth arrest-specific 6 protein-coding GAS6 growth arrest-specific 6 O AXL receptor tyrosine kinase ligand|AXL stimulatory factor|growth arrest-specific protein 6 20121230 -9606 2622 GAS8 - GAS11 HGNC:4166|MIM:605178|Ensembl:ENSG00000141013|HPRD:05533|Vega:OTTHUMG00000138988 16 16q24.3 growth arrest-specific 8 protein-coding GAS8 growth arrest-specific 8 O GAS-11|GAS-8|growth arrest specific 11|growth arrest-specific 11|growth arrest-specific protein 11|growth arrest-specific protein 8 20121230 -9606 2623 GATA1 - ERYF1|GATA-1|GF-1|GF1|NFE1|XLANP|XLTDA|XLTT HGNC:4170|MIM:305371|Ensembl:ENSG00000102145|HPRD:02372|Vega:OTTHUMG00000021504 X Xp11.23 GATA binding protein 1 (globin transcription factor 1) protein-coding GATA1 GATA binding protein 1 (globin transcription factor 1) O GATA-binding factor 1|NF-E1 DNA-binding protein|erythroid transcription factor|erythroid transcription factor 1|globin transcription factor 1|transcription factor GATA1 20121230 -9606 2624 GATA2 - DCML|MONOMAC|NFE1B HGNC:4171|MIM:137295|Ensembl:ENSG00000179348|HPRD:00673|Vega:OTTHUMG00000159689 3 3q21.3 GATA binding protein 2 protein-coding GATA2 GATA binding protein 2 O endothelial transcription factor GATA-2 20121230 -9606 2625 GATA3 - HDR|HDRS HGNC:4172|MIM:131320|Ensembl:ENSG00000107485|HPRD:00572|Vega:OTTHUMG00000017640 10 10p15 GATA binding protein 3 protein-coding GATA3 GATA binding protein 3 O GATA-binding factor 3|trans-acting T-cell-specific transcription factor GATA-3 20121230 -9606 2626 GATA4 - ASD2|VSD1 HGNC:4173|MIM:600576|Ensembl:ENSG00000136574|HPRD:08994|Vega:OTTHUMG00000090800 8 8p23.1-p22 GATA binding protein 4 protein-coding GATA4 GATA binding protein 4 O GATA-binding factor 4|transcription factor GATA-4 20121230 -9606 2627 GATA6 - - HGNC:4174|MIM:601656|Ensembl:ENSG00000141448|HPRD:09043|Vega:OTTHUMG00000131767 18 18q11.1-q11.2 GATA binding protein 6 protein-coding GATA6 GATA binding protein 6 O GATA-binding factor 6|transcription factor GATA-6 20121230 -9606 2628 GATM - AGAT|AT HGNC:4175|MIM:602360|Ensembl:ENSG00000171766|HPRD:03838|Vega:OTTHUMG00000131427 15 15q21.1 glycine amidinotransferase (L-arginine:glycine amidinotransferase) protein-coding GATM glycine amidinotransferase (L-arginine:glycine amidinotransferase) O L-arginine:glycine amidinotransferase|glycine amidinotransferase, mitochondrial|transamidinase 20121230 -9606 2629 GBA - GBA1|GCB|GLUC HGNC:4177|MIM:606463|Ensembl:ENSG00000177628|HPRD:06973|Vega:OTTHUMG00000035841 1 1q21 glucosidase, beta, acid protein-coding GBA glucosidase, beta, acid O D-glucosyl-N-acylsphingosine glucohydrolase|acid beta-glucosidase|alglucerase|beta-glucocerebrosidase|glucosylceramidase|imiglucerase|lysosomal glucocerebrosidase 20121230 -9606 2630 GBAP1 RP11-263K19.8 GBAP HGNC:4178 1 1q21 glucosidase, beta, acid pseudogene 1 pseudo GBAP1 glucosidase, beta, acid pseudogene 1 O - 20121230 -9606 2631 GBAS - NIPSNAP2 HGNC:4179|MIM:603004|Ensembl:ENSG00000146729|HPRD:04302|Vega:OTTHUMG00000022932 7 7p12 glioblastoma amplified sequence protein-coding GBAS glioblastoma amplified sequence O 4-nitrophenylphosphatase domain and non-neuronal SNAP25-like 2|protein NipSnap homolog 2 20121230 -9606 2632 GBE1 - APBD|GBE|GSD4 HGNC:4180|MIM:607839|Ensembl:ENSG00000114480|HPRD:01985|Vega:OTTHUMG00000158978 3 3p12.3 glucan (1,4-alpha-), branching enzyme 1 protein-coding GBE1 glucan (1,4-alpha-), branching enzyme 1 O 1,4-alpha-glucan-branching enzyme|amylo-(1,4 to 1,6) transglucosidase|amylo-(1,4 to 1,6) transglycosylase|brancher enzyme|glycogen branching enzyme|glycogen-branching enzyme 20121230 -9606 2633 GBP1 - - HGNC:4182|MIM:600411|Ensembl:ENSG00000117228|HPRD:02681|Vega:OTTHUMG00000010614 1 1p22.2 guanylate binding protein 1, interferon-inducible protein-coding GBP1 guanylate binding protein 1, interferon-inducible O GBP-1|GTP-binding protein 1|guanine nucleotide-binding protein 1|guanylate binding protein 1, interferon-inducible, 67kDa|huGBP-1|interferon-induced guanylate-binding protein 1 20121230 -9606 2634 GBP2 - - HGNC:4183|MIM:600412|Ensembl:ENSG00000162645|HPRD:02682|Vega:OTTHUMG00000010662 1 1p22.2 guanylate binding protein 2, interferon-inducible protein-coding GBP2 guanylate binding protein 2, interferon-inducible O GBP-2|GTP-binding protein 2|guanine nucleotide-binding protein 2|huGBP-2|interferon-induced guanylate-binding protein 2 20121230 -9606 2635 GBP3 RP4-531M19.1 - HGNC:4184|MIM:600413|Ensembl:ENSG00000117226|HPRD:02683|Vega:OTTHUMG00000010616 1 1p22.2 guanylate binding protein 3 protein-coding GBP3 guanylate binding protein 3 O GBP-3|GTP-binding protein 3|guanine nucleotide-binding protein 3|guanylate-binding protein 3|guanylate-binding protein 3 delta C 20121230 -9606 2636 GBX1 - - HGNC:4185|MIM:603354|Ensembl:ENSG00000164900|Vega:OTTHUMG00000158751 7 7q36.1 gastrulation brain homeobox 1 protein-coding GBX1 gastrulation brain homeobox 1 O gastrulation and brain-specific homeobox protein 1|gastrulation brain homeo box 1|homeobox protein GBX-1 20121230 -9606 2637 GBX2 - - HGNC:4186|MIM:601135|Ensembl:ENSG00000168505|HPRD:03087|Vega:OTTHUMG00000133294 2 2q37.2 gastrulation brain homeobox 2 protein-coding GBX2 gastrulation brain homeobox 2 O gastrulation and brain-specific homeobox protein 2|gastrulation brain homeo box 2|homeobox protein GBX-2 20121230 -9606 2638 GC - DBP|DBP/GC|GRD3|VDBG|VDBP HGNC:4187|MIM:139200|Ensembl:ENSG00000145321|HPRD:00749|Vega:OTTHUMG00000129915 4 4q12-q13 group-specific component (vitamin D binding protein) protein-coding GC group-specific component (vitamin D binding protein) O VDB|gc-globulin|vitamin D-binding alpha-globulin|vitamin D-binding protein 20121230 -9606 2639 GCDH - ACAD5|GCD HGNC:4189|MIM:608801|Ensembl:ENSG00000105607|HPRD:01977|Vega:OTTHUMG00000180561 19 19p13.2 glutaryl-CoA dehydrogenase protein-coding GCDH glutaryl-CoA dehydrogenase O glutaryl-CoA dehydrogenase, mitochondrial|glutaryl-Coenzyme A dehydrogenase 20121230 -9606 2641 GCG - GLP1|GLP2|GRPP HGNC:4191|MIM:138030|Ensembl:ENSG00000115263|HPRD:00676|Vega:OTTHUMG00000153892 2 2q36-q37 glucagon protein-coding GCG glucagon O glicentin-related polypeptide|glucagon-like peptide 1|glucagon-like peptide 2 20121230 -9606 2642 GCGR - GGR HGNC:4192|MIM:138033|Ensembl:ENSG00000215644|HPRD:00678|Vega:OTTHUMG00000177914 17 17q25 glucagon receptor protein-coding GCGR glucagon receptor O GL-R 20121230 -9606 2643 GCH1 - DYT14|DYT5|DYT5a|GCH|GTP-CH-1|GTPCH1|HPABH4B HGNC:4193|MIM:600225|Ensembl:ENSG00000131979|HPRD:02573|Vega:OTTHUMG00000029754 14 14q22.1-q22.2 GTP cyclohydrolase 1 protein-coding GCH1 GTP cyclohydrolase 1 O GTP cyclohydrolase I|GTP-CH-I|dystonia 14|guanosine 5'-triphosphate cyclohydrolase I 20121230 -9606 2644 GCHFR - GFRP|HsT16933|P35 HGNC:4194|MIM:602437|Ensembl:ENSG00000137880|HPRD:03895|Vega:OTTHUMG00000130069 15 15q15 GTP cyclohydrolase I feedback regulator protein-coding GCHFR GTP cyclohydrolase I feedback regulator O GTP cyclohydrolase 1 feedback regulatory protein|GTP cyclohydrolase I feedback regulatory protein 20121230 -9606 2645 GCK - FGQTL3|GK|GLK|HHF3|HK4|HKIV|HXKP|LGLK|MODY2 HGNC:4195|MIM:138079|Ensembl:ENSG00000106633|HPRD:00680|Vega:OTTHUMG00000022903 7 7p15.3-p15.1 glucokinase (hexokinase 4) protein-coding GCK glucokinase (hexokinase 4) O ATP:D-hexose 6-phosphotransferase|HK IV|glucokinase|hexokinase D, pancreatic isozyme|hexokinase type IV|hexokinase-4|hexokinase-D 20121230 -9606 2646 GCKR - FGQTL5|GKRP HGNC:4196|MIM:600842|Ensembl:ENSG00000084734|HPRD:02909|Vega:OTTHUMG00000128426 2 2p23 glucokinase (hexokinase 4) regulator protein-coding GCKR glucokinase (hexokinase 4) regulator O glucokinase regulatory protein 20121230 -9606 2647 BLOC1S1 - BLOS1|GCN5L1|MICoA|RT14 HGNC:4200|MIM:601444|Ensembl:ENSG00000135441|Ensembl:ENSG00000258311|HPRD:03263|Vega:OTTHUMG00000169962|Vega:OTTHUMG00000170130 12 12q13-q14 biogenesis of lysosomal organelles complex-1, subunit 1 protein-coding BLOC1S1 biogenesis of lysosomal organelles complex-1, subunit 1 O BLOC subunit 1|BLOC-1 subunit 1|GCN5 (general control of amino-acid synthesis, yeast, homolog)-like 1|GCN5 general control of amino-acid synthesis 5-like 1|GCN5-like protein 1|MTA1-interacting coactivator|biogenesis of lysosome-related organelles complex 1 subunit 1 20121230 -9606 2648 KAT2A - GCN5|GCN5L2|PCAF-b|hGCN5 HGNC:4201|MIM:602301|Ensembl:ENSG00000108773|HPRD:03807|Vega:OTTHUMG00000133504 17 17q21 K(lysine) acetyltransferase 2A protein-coding KAT2A K(lysine) acetyltransferase 2A O GCN5 (general control of amino-acid synthesis, yeast, homolog)-like 2|General control of amino acid synthesis, yeast, homolog-like 2|STAF97|general control of amino acid synthesis protein 5-like 2|histone acetyltransferase GCN5|histone acetyltransferase KAT2A|hsGCN5|lysine acetyltransferase 2A 20121230 -9606 2649 NR6A1 - GCNF|GCNF1|NR61|RTR HGNC:7985|MIM:602778|Ensembl:ENSG00000148200|HPRD:04147|Vega:OTTHUMG00000020661 9 9q33.3 nuclear receptor subfamily 6, group A, member 1 protein-coding NR6A1 nuclear receptor subfamily 6, group A, member 1 O germ cell nuclear factor variant 1|hGCNF|hRTR|nuclear receptor subfamily 6 group A member 1|retinoic acid receptor-related testis-associated receptor|retinoid receptor-related testis-specific receptor 20121230 -9606 2650 GCNT1 RP11-214N16.1 C2GNT|C2GNT-L|C2GNT1|G6NT|NACGT2|NAGCT2 HGNC:4203|MIM:600391|Ensembl:ENSG00000187210|HPRD:02669|Vega:OTTHUMG00000020044 9 9q13 glucosaminyl (N-acetyl) transferase 1, core 2 protein-coding GCNT1 glucosaminyl (N-acetyl) transferase 1, core 2 O beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N--acetylglucosaminyltransferase|beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase|beta-1,6-N-acetylglucosaminyltransferase|core 2 GnT|core 2 beta-1,6-N-acetylglucosaminyltransferase I|core 2 beta1,6 N-acetylglucosaminyltransferase-I|core 2 branching enzyme|core 2-branching enzyme|core2-GlcNAc-transferase|glucosaminyl (N-acetyl) transferase 1, core 2 (beta-1,6-N-acetylglucosaminyltransferase) 20121230 -9606 2651 GCNT2 RP11-421M1.1 CCAT|GCNT2C|GCNT5|IGNT|II|NACGT1|NAGCT1|ULG3|bA360O19.2|bA421M1.1 HGNC:4204|MIM:600429|Ensembl:ENSG00000111846|HPRD:02695|Vega:OTTHUMG00000014244 6 6p24.2 glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group) protein-coding GCNT2 glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group) O I beta-1,6-N-acetylglucosaminyltransferase|Ii blood group|N-acetyllactosaminide beta-1,6-N-acetylglucosaminyl-transferase|beta-1,6-N-acetylglucosaminyltransferase 2 20121230 -9606 2652 OPN1MW - CBBM|CBD|COD5|GCP|GOP|OPN1MW1 HGNC:4206|MIM:300821|Ensembl:ENSG00000147380|HPRD:02365|Vega:OTTHUMG00000022652 X Xq28 opsin 1 (cone pigments), medium-wave-sensitive protein-coding OPN1MW opsin 1 (cone pigments), medium-wave-sensitive O cone dystrophy 5 (X-linked)|green cone photoreceptor pigment|green cone pigment|green-sensitive opsin|medium-wave-sensitive opsin 1|photopigment apoprotein 20121230 -9606 2653 GCSH - GCE|NKH HGNC:4208|MIM:238330|Ensembl:ENSG00000140905|HPRD:01998|Vega:OTTHUMG00000137626 16 16q23.2 glycine cleavage system protein H (aminomethyl carrier) protein-coding GCSH glycine cleavage system protein H (aminomethyl carrier) O glycine cleavage system H protein, mitochondrial|lipoic acid-containing protein|mitochondrial glycine cleavage system H-protein 20121230 -9606 2656 GCY - STA|TS|TSY HGNC:4211|MIM:475000 Y Yq11 growth control, Y chromosome influenced unknown GCY growth control, Y chromosome influenced O - 20110215 -9606 2657 GDF1 - DORV|DTGA3 HGNC:4214|MIM:602880|Ensembl:ENSG00000130283|HPRD:04194 19 19p12 growth differentiation factor 1 protein-coding GDF1 growth differentiation factor 1 O GDF-1|embryonic growth/differentiation factor 1 20121230 -9606 2658 GDF2 - BMP-9|BMP9 HGNC:4217|MIM:605120|Ensembl:ENSG00000128802|HPRD:05492|Vega:OTTHUMG00000018149 10 10q11.22 growth differentiation factor 2 protein-coding GDF2 growth differentiation factor 2 O GDF-2|bone morphogenetic protein 9|growth/differentiation factor 2 20121230 -9606 2660 MSTN - GDF8|MSLHP HGNC:4223|MIM:601788|Ensembl:ENSG00000138379|HPRD:03474|Vega:OTTHUMG00000132663 2 2q32.2 myostatin protein-coding MSTN myostatin O GDF-8|growth differentiation factor 8|growth/differentiation factor 8 20121230 -9606 2661 GDF9 - - HGNC:4224|MIM:601918|Ensembl:ENSG00000164404|HPRD:03560 5 5q31.1 growth differentiation factor 9 protein-coding GDF9 growth differentiation factor 9 O GDF-9|growth/differentiation factor 9 20121230 -9606 2662 GDF10 RP11-463P17.5 BMP-3b|BMP3B HGNC:4215|MIM:601361|Ensembl:ENSG00000107623|HPRD:03218|Vega:OTTHUMG00000018144 10 10q11.22 growth differentiation factor 10 protein-coding GDF10 growth differentiation factor 10 O BIP|GDF-10|bone morphogenetic protein 3B|bone-inducing protein 20121230 -9606 2664 GDI1 XX-FW81657B9.1 1A|GDIL|MRX41|MRX48|OPHN2|RABGD1A|RABGDIA|XAP-4 HGNC:4226|MIM:300104|Ensembl:ENSG00000203879|HPRD:02114|Vega:OTTHUMG00000033293 X Xq28 GDP dissociation inhibitor 1 protein-coding GDI1 GDP dissociation inhibitor 1 O GDI-1|guanosine diphosphate dissociation inhibitor 1|mental retardation, X-linked 48|oligophrenin-2|protein XAP-4|rab GDI alpha|rab GDP dissociation inhibitor alpha|rab GDP-dissociation inhibitor, alpha 20121230 -9606 2665 GDI2 RP11-318E3.2 RABGDIB HGNC:4227|MIM:600767|Ensembl:ENSG00000057608|HPRD:02863|Vega:OTTHUMG00000017607 10 10p15 GDP dissociation inhibitor 2 protein-coding GDI2 GDP dissociation inhibitor 2 O GDI-2|guanosine diphosphate dissociation inhibitor 2|rab GDI beta|rab GDP dissociation inhibitor beta|rab GDP-dissociation inhibitor, beta 20121230 -9606 2667 GDI2P1 - GDI2P HGNC:4228 7 7p12.3 GDP dissociation inhibitor 2 pseudogene 1 pseudo GDI2P1 GDP dissociation inhibitor 2 pseudogene 1 O - 20121230 -9606 2668 GDNF - ATF1|ATF2|HFB1-GDNF|HSCR3 HGNC:4232|MIM:600837|Ensembl:ENSG00000168621|HPRD:02906|Vega:OTTHUMG00000090809 5 5p13.1-p12 glial cell derived neurotrophic factor protein-coding GDNF glial cell derived neurotrophic factor O ATF|astrocyte-derived trophic factor|glial cell line-derived neurotrophic factor 20121230 -9606 2669 GEM - KIR HGNC:4234|MIM:600164|Ensembl:ENSG00000164949|HPRD:11553|Vega:OTTHUMG00000164392 8 8q13-q21 GTP binding protein overexpressed in skeletal muscle protein-coding GEM GTP binding protein overexpressed in skeletal muscle O GTP-binding mitogen-induced T-cell protein|GTP-binding protein GEM|GTP-binding protein overexpressed in skeletal muscle|RAS-like protein KIR|kinase-inducible Ras-like protein 20121230 -9606 2670 GFAP - - HGNC:4235|MIM:137780|Ensembl:ENSG00000131095|HPRD:00675|Vega:OTTHUMG00000179866 17 17q21 glial fibrillary acidic protein protein-coding GFAP glial fibrillary acidic protein O - 20121230 -9606 2671 GFER - ALR|ERV1|HERV1|HPO|HPO1|HPO2|HSS HGNC:4236|MIM:600924|Ensembl:ENSG00000127554|HPRD:02954|Vega:OTTHUMG00000176896 16 16p13.3-p13.12 growth factor, augmenter of liver regeneration protein-coding GFER growth factor, augmenter of liver regeneration O ERV1 homolog|FAD-linked sulfhydryl oxidase ALR|erv1-like growth factor|hepatic regenerative stimulation substance|hepatopoietin protein 20121230 -9606 2672 GFI1 - GFI-1|GFI1A|SCN2|ZNF163 HGNC:4237|MIM:600871|Ensembl:ENSG00000162676|HPRD:07527|Vega:OTTHUMG00000010897 1 1p22 growth factor independent 1 transcription repressor protein-coding GFI1 growth factor independent 1 transcription repressor O growth factor independence-1|growth factor independent protein 1|zinc finger protein 163|zinc finger protein Gfi-1 20121230 -9606 2673 GFPT1 - CMSTA1|GFA|GFAT|GFAT 1|GFAT1|GFAT1m|GFPT|GFPT1L|MSLG HGNC:4241|MIM:138292|Ensembl:ENSG00000198380|HPRD:00702|Vega:OTTHUMG00000152666 2 2p13 glutamine--fructose-6-phosphate transaminase 1 protein-coding GFPT1 glutamine--fructose-6-phosphate transaminase 1 O D-fructose-6-phosphate amidotransferase 1|glucosamine--fructose-6-phosphate aminotransferase [isomerizing] 1|glutamine:fructose 6 phosphate amidotransferase 1|hexosephosphate aminotransferase 1 20121230 -9606 2674 GFRA1 - GDNFR|GDNFRA|GFR-ALPHA-1|RET1L|RETL1|TRNR1 HGNC:4243|MIM:601496|Ensembl:ENSG00000151892|HPRD:03291|Vega:OTTHUMG00000019097 10 10q26.11 GDNF family receptor alpha 1 protein-coding GFRA1 GDNF family receptor alpha 1 O GDNF family receptor alpha-1|GDNF receptor alpha-1|GDNFR-alpha-1|GPI-linked anchor protein|Glial cell line-derived neurotrophic factor receptor alpha|PI-linked cell-surface accessory protein|RET ligand 1|TGF-beta related neurotrophic factor receptor 1|TGF-beta-related neurotrophic factor receptor 1 20121230 -9606 2675 GFRA2 - GDNFRB|NRTNR-ALPHA|NTNRA|RETL2|TRNR2 HGNC:4244|MIM:601956|Ensembl:ENSG00000168546|HPRD:11801|Vega:OTTHUMG00000163897 8 8p21.3 GDNF family receptor alpha 2 protein-coding GFRA2 GDNF family receptor alpha 2 O GDNF family receptor alpha-2|GDNF receptor beta|GDNFR-alpha-2|GDNFR-beta|GFR-alpha 2|NTNR-alpha|PI-linked cell-surface accessory protein|RET ligand 2|TGF-beta-related neurotrophic factor receptor 2|TRN receptor, GPI-anchored|glial cell line derived neurotrophic factor receptor, beta|neurturin receptor alpha 20121230 -9606 2676 GFRA3 UNQ339/PRO538/PRO3664 - HGNC:4245|MIM:605710|Ensembl:ENSG00000146013|HPRD:10420|Vega:OTTHUMG00000129200 5 5q31.1-q31.3 GDNF family receptor alpha 3 protein-coding GFRA3 GDNF family receptor alpha 3 O GDNF family receptor alpha-3|GDNF receptor alpha-3|GDNFR-alpha-3|GFR-alpha-3|GPI-linked receptor|glial cell line-derived neurotrophic factor receptor alpha-3 20121230 -9606 2677 GGCX - VKCFD1 HGNC:4247|MIM:137167|Ensembl:ENSG00000115486|HPRD:00665|Vega:OTTHUMG00000130173 2 2p12 gamma-glutamyl carboxylase protein-coding GGCX gamma-glutamyl carboxylase O peptidyl-glutamate 4-carboxylase|vitamin K-dependent gamma-carboxylase 20121230 -9606 2678 GGT1 - CD224|D22S672|D22S732|GGT|GGT 1|GTG HGNC:4250|MIM:612346|Ensembl:ENSG00000100031|HPRD:01980|Vega:OTTHUMG00000030859 22 22q11.23 gamma-glutamyltransferase 1 protein-coding GGT1 gamma-glutamyltransferase 1 O gamma-glutamyl transpeptidase|gamma-glutamyltranspeptidase 1|glutamyl transpeptidase|glutathione hydrolase 1|leukotriene-C4 hydrolase 20121230 -9606 2679 GGT3P - GGT3 HGNC:4252 22 22q11.21 gamma-glutamyltransferase 3 pseudogene pseudo GGT3P gamma-glutamyltransferase 3 pseudogene O - 20121230 -9606 2681 GGTA1P - GGTA|GGTA1|GLYT2|a1/3GTP HGNC:4253|MIM:104175 9 9q33.2 glycoprotein, alpha-galactosyltransferase 1 pseudogene pseudo GGTA1P glycoprotein, alpha-galactosyltransferase 1 pseudogene O - 20121230 -9606 2683 B4GALT1 - B4GAL-T1|CDG2D|GGTB2|GT1|GTB|beta4Gal-T1 HGNC:924|MIM:137060|Ensembl:ENSG00000086062|HPRD:00659|Vega:OTTHUMG00000019764 9 9p13 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 1 protein-coding B4GALT1 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 1 O UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 1|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 1|beta-1,4-GalTase 1|beta-1,4-galactosyltransferase 1|glycoprotein-4-beta-galactosyltransferase 2|lactose synthase 20121230 -9606 2686 GGT7 RP1-18C9.2 D20S101|GGT4|GGTL3|GGTL5|dJ18C9.2 HGNC:4259|MIM:612342|Ensembl:ENSG00000131067|HPRD:07488|Vega:OTTHUMG00000032314 20 20q11.22 gamma-glutamyltransferase 7 protein-coding GGT7 gamma-glutamyltransferase 7 O GGT 7|gamma-glutamyltransferase 4|gamma-glutamyltransferase-like 3|gamma-glutamyltransferase-like 5|gamma-glutamyltranspeptidase 7|gamma-glutamyltranspeptidase-like 3|glutathione hydrolase 7 20121230 -9606 2687 GGT5 - GGT-REL|GGTLA1 HGNC:4260|MIM:137168|Ensembl:ENSG00000099998|HPRD:00666|Vega:OTTHUMG00000150796 22 22q11.23 gamma-glutamyltransferase 5 protein-coding GGT5 gamma-glutamyltransferase 5 O GGT 5|gamma-glutamyl cleaving enzyme|gamma-glutamyl transpeptidase-related enzyme|gamma-glutamyl transpeptidase-related protein|gamma-glutamyltransferase-like activity 1|gamma-glutamyltranspeptidase 5|glutathione hydrolase 5|leukotriene-C4 hydrolase 20121230 -9606 2688 GH1 - GH|GH-N|GHN|IGHD1B|hGH-N HGNC:4261|MIM:139250|Ensembl:ENSG00000259384|HPRD:00751|Vega:OTTHUMG00000172293 17 17q24.2 growth hormone 1 protein-coding GH1 growth hormone 1 O pituitary growth hormone|somatotropin 20121230 -9606 2689 GH2 - GH-V|GHL|GHV|hGH-V HGNC:4262|MIM:139240|Ensembl:ENSG00000136487|HPRD:00750|Vega:OTTHUMG00000172284 17 17q24.2 growth hormone 2 protein-coding GH2 growth hormone 2 O growth hormone variant|placenta-specific growth hormone|placental-specific growth hormone 20121230 -9606 2690 GHR - GHBP HGNC:4263|MIM:600946|Ensembl:ENSG00000112964|HPRD:02971|Vega:OTTHUMG00000094791 5 5p13-p12 growth hormone receptor protein-coding GHR growth hormone receptor O GH receptor|growth hormone binding protein|serum binding protein|somatotropin receptor 20121230 -9606 2691 GHRH - GHRF|GRF|INN HGNC:4265|MIM:139190|Ensembl:ENSG00000118702|HPRD:11752|Vega:OTTHUMG00000032413 20 20q11.2 growth hormone releasing hormone protein-coding GHRH growth hormone releasing hormone O growth hormone-releasing factor|growth hormone-releasing hormone|sermorelin|somatocrinin|somatoliberin|somatorelin 20121230 -9606 2692 GHRHR - GHRFR|GRFR|IGHD1B HGNC:4266|MIM:139191|Ensembl:ENSG00000106128|HPRD:00748|Vega:OTTHUMG00000152801 7 7p14 growth hormone releasing hormone receptor protein-coding GHRHR growth hormone releasing hormone receptor O GHRH receptor|GRF receptor|growth hormone-releasing hormone receptor 20121230 -9606 2693 GHSR - - HGNC:4267|MIM:601898|Ensembl:ENSG00000121853|HPRD:03541|Vega:OTTHUMG00000156946 3 3q26.31 growth hormone secretagogue receptor protein-coding GHSR growth hormone secretagogue receptor O GH-releasing peptide receptor|GHRP|GHS-R|ghrelin receptor|growth hormone secretagogue receptor type 1 20121230 -9606 2694 GIF - IF|IFMH|INF|TCN3 HGNC:4268|MIM:609342|Ensembl:ENSG00000134812|HPRD:02024|Vega:OTTHUMG00000167399 11 11q13 gastric intrinsic factor (vitamin B synthesis) protein-coding GIF gastric intrinsic factor (vitamin B synthesis) O gastric intrinsic factor|intrinsic factor 20121230 -9606 2695 GIP - - HGNC:4270|MIM:137240|Ensembl:ENSG00000159224|HPRD:15925|Vega:OTTHUMG00000161171 17 17q21.3-q22 gastric inhibitory polypeptide protein-coding GIP gastric inhibitory polypeptide O glucose-dependent insulinotropic polypeptide|incretin hormone 20121230 -9606 2696 GIPR - PGQTL2 HGNC:4271|MIM:137241|Ensembl:ENSG00000010310|HPRD:00670|Vega:OTTHUMG00000182129 19 19q13.3 gastric inhibitory polypeptide receptor protein-coding GIPR gastric inhibitory polypeptide receptor O GIP-R|glucose-dependent insulinotropic polypeptide receptor 20121230 -9606 2697 GJA1 - AVSD3|CX43|DFNB38|GJAL|HLHS1|HSS|ODDD HGNC:4274|MIM:121014|Ensembl:ENSG00000152661|HPRD:00414|Vega:OTTHUMG00000015479 6 6q21-q23.2 gap junction protein, alpha 1, 43kDa protein-coding GJA1 gap junction protein, alpha 1, 43kDa O connexin 43|connexin-43|gap junction 43 kDa heart protein|gap junction alpha-1 protein 20121230 -9606 2698 GJA1P1 - - HGNC:4275 5 5q21.3 gap junction protein, alpha 1, 43kDa pseudogene 1 pseudo GJA1P1 gap junction protein, alpha 1, 43kDa pseudogene 1 O - 20121230 -9606 2700 GJA3 - CX46|CZP3 HGNC:4277|MIM:121015|Ensembl:ENSG00000121743|HPRD:00415|Vega:OTTHUMG00000016510 13 13q12.11 gap junction protein, alpha 3, 46kDa protein-coding GJA3 gap junction protein, alpha 3, 46kDa O connexin 46|connexin-46|gap junction alpha-3 protein 20121230 -9606 2701 GJA4 RP1-34M23.4 CX37 HGNC:4278|MIM:121012|Ensembl:ENSG00000187513|HPRD:08509|Vega:OTTHUMG00000004050 1 1p35.1 gap junction protein, alpha 4, 37kDa protein-coding GJA4 gap junction protein, alpha 4, 37kDa O connexin 37|connexin-37|gap junction alpha-4 protein 20121230 -9606 2702 GJA5 - ATFB11|CX40 HGNC:4279|MIM:121013|Ensembl:ENSG00000143140|HPRD:08699|Vega:OTTHUMG00000014020 1 1q21.1 gap junction protein, alpha 5, 40kDa protein-coding GJA5 gap junction protein, alpha 5, 40kDa O connexin 40|connexin-40|gap junction alpha-5 protein 20121230 -9606 2703 GJA8 - CAE|CAE1|CX50|CZP1|MP70 HGNC:4281|MIM:600897|Ensembl:ENSG00000121634|HPRD:02939 1 1q21.1 gap junction protein, alpha 8, 50kDa protein-coding GJA8 gap junction protein, alpha 8, 50kDa O cell surface glycoprotein|connexin 50|connexin-50|gap junction alpha-8 protein|gap junction membrane channel protein alpha-8|lens fiber protein MP70|lens intrinsic membrane protein MP70 20121230 -9606 2705 GJB1 - CMTX|CMTX1|CX32 HGNC:4283|MIM:304040|Ensembl:ENSG00000169562|HPRD:02367|Vega:OTTHUMG00000021797 X Xq13.1 gap junction protein, beta 1, 32kDa protein-coding GJB1 gap junction protein, beta 1, 32kDa O GAP junction 28 kDa liver protein|connexin 32|connexin-32|gap junction beta-1 protein 20121230 -9606 2706 GJB2 - CX26|DFNA3|DFNA3A|DFNB1|DFNB1A|HID|KID|NSRD1|PPK HGNC:4284|MIM:121011|Ensembl:ENSG00000165474|HPRD:00413|Vega:OTTHUMG00000016513 13 13q11-q12 gap junction protein, beta 2, 26kDa protein-coding GJB2 gap junction protein, beta 2, 26kDa O connexin 26|gap junction beta-2 protein|gap junction protein beta 2 20121230 -9606 2707 GJB3 - CX31|DFNA2|DFNA2B|EKV HGNC:4285|MIM:603324|Ensembl:ENSG00000188910|HPRD:04505|Vega:OTTHUMG00000004051 1 1p34 gap junction protein, beta 3, 31kDa protein-coding GJB3 gap junction protein, beta 3, 31kDa O connexin 31|connexin-31|gap junction beta-3 protein 20121230 -9606 2709 GJB5 - CX31.1 HGNC:4287|MIM:604493|Ensembl:ENSG00000189280|HPRD:06840|Vega:OTTHUMG00000004053 1 1p35.1 gap junction protein, beta 5, 31.1kDa protein-coding GJB5 gap junction protein, beta 5, 31.1kDa O gap junction beta-5 protein|gap junction protein, beta 5 (connexin 31.1)|gap junctional protein cx31.1 20121230 -9606 2710 GK - GK1|GKD HGNC:4289|MIM:300474|Ensembl:ENSG00000198814|HPRD:08363|Vega:OTTHUMG00000021328 X Xp21.3 glycerol kinase protein-coding GK glycerol kinase O ATP:glycerol 3-phosphotransferase|glycerokinase 20121230 -9606 2712 GK2 - GKP2|GKTA HGNC:4291|MIM:600148|Ensembl:ENSG00000196475|HPRD:15966|Vega:OTTHUMG00000130199 4 4q13 glycerol kinase 2 protein-coding GK2 glycerol kinase 2 O ATP:glycerol 3-phosphotransferase 2|glycerokinase 2|glycerol kinase pseudogene 2|glycerol kinase testis specific 2|glycerol kinase, testis specific 2 20121230 -9606 2713 GK3P - GKP3|GKTB HGNC:4292|MIM:600149 4 4q32.1 glycerol kinase 3 pseudogene pseudo GK3P glycerol kinase 3 pseudogene O - 20121230 -9606 2716 GK4P - GKP6 HGNC:4295 X Xq22.1 glycerol kinase 4 pseudogene pseudo GK4P glycerol kinase 4 pseudogene O - 20121230 -9606 2717 GLA - GALA HGNC:4296|MIM:300644|Ensembl:ENSG00000102393|HPRD:02357|Vega:OTTHUMG00000022026 X Xq22 galactosidase, alpha protein-coding GLA galactosidase, alpha O agalsidase alfa|alpha-D-galactosidase A|alpha-D-galactoside galactohydrolase 1|alpha-gal A|alpha-galactosidase A|melibiase 20121230 -9606 2718 GLAT - - HGNC:4297|MIM:137030 2 2p22-p11 galactose enzyme activator unknown GLAT galactose enzyme activator O - 20080828 -9606 2719 GPC3 AC002420.1 DGSX|GTR2-2|MXR7|OCI-5|SDYS|SGB|SGBS|SGBS1 HGNC:4451|MIM:300037|Ensembl:ENSG00000147257|HPRD:02074|Vega:OTTHUMG00000022448 X Xq26.1 glypican 3 protein-coding GPC3 glypican 3 O glypican proteoglycan 3|glypican-3|heparan sulphate proteoglycan|intestinal protein OCI-5|secreted glypican-3 20121230 -9606 2720 GLB1 - EBP|ELNR1|MPS4B HGNC:4298|MIM:611458|Ensembl:ENSG00000170266|HPRD:01975|Vega:OTTHUMG00000155781 3 3p21.33 galactosidase, beta 1 protein-coding GLB1 galactosidase, beta 1 O acid beta-galactosidase|beta-galactosidase|elastin receptor 1, 67kDa|lactase 20121230 -9606 2722 GLC1B - - HGNC:4302|MIM:606689 2 2cen-q13 glaucoma 1, open angle, B (adult-onset) unknown GLC1B glaucoma 1, open angle, B (adult-onset) O - 20120622 -9606 2723 GLC1C - - HGNC:4303|MIM:601682 3 3q21-q24 glaucoma 1, open angle, C unknown GLC1C glaucoma 1, open angle, C O - 20120622 -9606 2724 GLC1D - - HGNC:4304|MIM:602429 8 8q23 glaucoma 1, open angle, D (adult-onset) unknown GLC1D glaucoma 1, open angle, D (adult-onset) O - 20120622 -9606 2726 GLC1F - - HGNC:4306|MIM:603383 7 7q35-q36 glaucoma 1, open angle, F (adult-onset) unknown GLC1F glaucoma 1, open angle, F (adult-onset) O - 20120622 -9606 2727 GLC2A - - HGNC:4307 - - glaucoma 2, angle closure unknown GLC2A glaucoma 2, angle closure O - 20110215 -9606 2728 GLC3B - - HGNC:4309|MIM:600975 1 1p36 glaucoma 3, primary infantile, B unknown GLC3B glaucoma 3, primary infantile, B O - 20120622 -9606 2729 GCLC - GCL|GCS|GLCL|GLCLC HGNC:4311|MIM:606857|Ensembl:ENSG00000001084|HPRD:06032|Vega:OTTHUMG00000160220 6 6p12 glutamate-cysteine ligase, catalytic subunit protein-coding GCLC glutamate-cysteine ligase, catalytic subunit O GCS heavy chain|gamma-ECS|gamma-glutamylcysteine synthetase|glutamate--cysteine ligase catalytic subunit 20121230 -9606 2730 GCLM RP4-561L24.2 GLCLR HGNC:4312|MIM:601176|Ensembl:ENSG00000023909|HPRD:03106|Vega:OTTHUMG00000010562 1 1p22.1 glutamate-cysteine ligase, modifier subunit protein-coding GCLM glutamate-cysteine ligase, modifier subunit O GCS light chain|GSC light chain|gamma-ECS regulatory subunit|gamma-glutamylcysteine synthetase regulatory subunit|glutamate--cysteine ligase modifier subunit|glutamate--cysteine ligase regulatory subunit|glutamate-cysteine ligase (gamma-glutamylcysteine synthetase), regulatory (30.8kD)|glutamate-cysteine ligase regulatory protein 20121230 -9606 2731 GLDC RP11-472F14.1 GCE|GCSP|HYGN1 HGNC:4313|MIM:238300|Ensembl:ENSG00000178445|HPRD:01996|Vega:OTTHUMG00000019524 9 9p22 glycine dehydrogenase (decarboxylating) protein-coding GLDC glycine dehydrogenase (decarboxylating) O glycine cleavage system protein P|glycine decarboxylase P-protein|glycine dehydrogenase [decarboxylating], mitochondrial 20121230 -9606 2732 GLDCP1 - GLDCP HGNC:4314 4 4q12 glycine dehydrogenase (decarboxylase) pseudogene 1 pseudo GLDCP1 glycine dehydrogenase (decarboxylase) pseudogene 1 O - 20121230 -9606 2733 GLE1 - GLE1L|LCCS|LCCS1|hGLE1 HGNC:4315|MIM:603371|Ensembl:ENSG00000119392|HPRD:04536|Vega:OTTHUMG00000020749 9 9q34.11 GLE1 RNA export mediator homolog (yeast) protein-coding GLE1 GLE1 RNA export mediator homolog (yeast) O GLE1-like protein|GLE1-like, RNA export mediator|nucleoporin GLE1 20121230 -9606 2734 GLG1 - CFR-1|ESL-1|MG-160|MG160 HGNC:4316|MIM:600753|Ensembl:ENSG00000090863|HPRD:02855|Vega:OTTHUMG00000177174 16 16q22.3 golgi glycoprotein 1 protein-coding GLG1 golgi glycoprotein 1 O E-selectin ligand 1|Golgi apparatus protein 1|cysteine-rich fibroblast growth factor receptor|golgi sialoglycoprotein MG-160 20121230 -9606 2735 GLI1 - GLI HGNC:4317|MIM:165220|Ensembl:ENSG00000111087|HPRD:01311|Vega:OTTHUMG00000167332 12 12q13.2-q13.3 GLI family zinc finger 1 protein-coding GLI1 GLI family zinc finger 1 O glioma-associated oncogene 1|glioma-associated oncogene homolog 1 (zinc finger protein)|oncogene GLI|zinc finger protein GLI1 20121230 -9606 2736 GLI2 - HPE9|THP1|THP2 HGNC:4318|MIM:165230|Ensembl:ENSG00000074047|HPRD:01312|Vega:OTTHUMG00000153741 2 2q14 GLI family zinc finger 2 protein-coding GLI2 GLI family zinc finger 2 O GLI-Kruppel family member GLI2|glioma-associated oncogene family zinc finger 2|oncogene GLI2|tax helper protein 1|tax helper protein 2|tax-responsive element-2 holding protein|tax-responsive element-25-bp sequence binding protein|zinc finger protein GLI2 20121230 -9606 2737 GLI3 - ACLS|GCPS|GLI3-190|GLI3FL|PAP-A|PAPA|PAPA1|PAPB|PHS|PPDIV HGNC:4319|MIM:165240|Ensembl:ENSG00000106571|HPRD:01313|Vega:OTTHUMG00000023630 7 7p13 GLI family zinc finger 3 protein-coding GLI3 GLI family zinc finger 3 O GLI-Kruppel family member GLI3|glioma-associated oncogene family zinc finger 3|oncogene GLI3|transcriptional activator GLI3|zinc finger protein GLI3 20121230 -9606 2738 GLI4 hCG_1995022 HKR4|ZNF928 HGNC:4320|MIM:165280|Ensembl:ENSG00000250571|HPRD:01317|Vega:OTTHUMG00000164952 8 8q24.3 GLI family zinc finger 4 protein-coding GLI4 GLI family zinc finger 4 O GLI-Kruppel family member GLI4 (oncogene HKR4)|glioma-associated oncogene family zinc finger 4|krueppel-related zinc finger protein 4|zinc finger protein GLI4 20121230 -9606 2739 GLO1 - GLOD1|GLYI HGNC:4323|MIM:138750|Ensembl:ENSG00000124767|HPRD:00730|Vega:OTTHUMG00000014636 6 6p21.3-p21.1 glyoxalase I protein-coding GLO1 glyoxalase I O S-D-lactoylglutathione methylglyoxal lyase|aldoketomutase|glx I|glyoxalase domain containing 1|ketone-aldehyde mutase|lactoyl glutathione lyase|lactoylglutathione lyase|methylglyoxalase 20121230 -9606 2740 GLP1R - - HGNC:4324|MIM:138032|Ensembl:ENSG00000112164|HPRD:00677|Vega:OTTHUMG00000014638 6 6p21 glucagon-like peptide 1 receptor protein-coding GLP1R glucagon-like peptide 1 receptor O GLP-1 receptor|GLP-1-R|GLP-1R 20121230 -9606 2741 GLRA1 - HKPX1|STHE HGNC:4326|MIM:138491|Ensembl:ENSG00000145888|HPRD:00719|Vega:OTTHUMG00000130121 5 5q32 glycine receptor, alpha 1 protein-coding GLRA1 glycine receptor, alpha 1 O glycine receptor 48 kDa subunit|glycine receptor strychnine-binding subunit|glycine receptor subunit alpha-1 20121230 -9606 2742 GLRA2 - GLR HGNC:4327|MIM:305990|Ensembl:ENSG00000101958|HPRD:02379|Vega:OTTHUMG00000021166 X Xp22.2 glycine receptor, alpha 2 protein-coding GLRA2 glycine receptor, alpha 2 O glycine receptor alpha 2 subunit|glycine receptor subunit alpha-2|glycine receptor, alpha-2 polypeptide 20121230 -9606 2743 GLRB - HKPX2 HGNC:4329|MIM:138492|Ensembl:ENSG00000109738|HPRD:11751|Vega:OTTHUMG00000161954 4 4q31.3 glycine receptor, beta protein-coding GLRB glycine receptor, beta O glycine receptor 58 kDa subunit|glycine receptor subunit beta|glycine receptor, beta subunit 20121230 -9606 2744 GLS - AAD20|GAC|GAM|GLS1|KGA HGNC:4331|MIM:138280|Ensembl:ENSG00000115419|HPRD:00700|Vega:OTTHUMG00000132701 2 2q32-q34 glutaminase protein-coding GLS glutaminase O K-glutaminase|L-glutamine amidohydrolase|glutaminase C|glutaminase kidney isoform, mitochondrial|glutaminase, phosphate-activated 20121230 -9606 2745 GLRX - GRX|GRX1 HGNC:4330|MIM:600443|Ensembl:ENSG00000173221|HPRD:02707|Vega:OTTHUMG00000121167 5 5q14 glutaredoxin (thioltransferase) protein-coding GLRX glutaredoxin (thioltransferase) O TTase-1|glutaredoxin-1|thioltransferase-1 20121230 -9606 2746 GLUD1 - GDH|GDH1|GLUD HGNC:4335|MIM:138130|Ensembl:ENSG00000148672|HPRD:11748|Vega:OTTHUMG00000018666 10 10q23.3 glutamate dehydrogenase 1 protein-coding GLUD1 glutamate dehydrogenase 1 O GDH 1|glutamate dehydrogenase (NAD(P)+)|glutamate dehydrogenase 1, mitochondrial 20121230 -9606 2747 GLUD2 - GDH2|GLUDP1 HGNC:4336|MIM:300144|Ensembl:ENSG00000182890|HPRD:02143|Vega:OTTHUMG00000022320 X Xq24-q25 glutamate dehydrogenase 2 protein-coding GLUD2 glutamate dehydrogenase 2 O GDH 2|glutamate dehydrogenase 2, mitochondrial|glutamate dehydrogenase pseudogene 1 20121230 -9606 2748 LOC2748 - - - 10 10q11.2 glutamate dehydrogenase 1 pseudogene pseudo - - - - 20121209 -9606 2749 GLUD1P3 - C10orf102|Em:AC022400.11|GLUDP3|RP11-574K11.12 HGNC:4338 10 10q22.2 glutamate dehydrogenase 1 pseudogene 3 pseudo GLUD1P3 glutamate dehydrogenase 1 pseudogene 3 O - 20121230 -9606 2750 GLUD1P4 - GLUDP4 HGNC:4339 18 18q21.32 glutamate dehydrogenase 1 pseudogene 4 pseudo GLUD1P4 glutamate dehydrogenase 1 pseudogene 4 O - 20121230 -9606 2751 GLUD1P5 - GLUDP5 HGNC:4340 10 10p11.2 glutamate dehydrogenase 1 pseudogene 5 pseudo GLUD1P5 glutamate dehydrogenase 1 pseudogene 5 O - 20121230 -9606 2752 GLUL - GLNS|GS|PIG43|PIG59 HGNC:4341|MIM:138290|Ensembl:ENSG00000135821|HPRD:00701|Vega:OTTHUMG00000037407 1 1q31 glutamate-ammonia ligase protein-coding GLUL glutamate-ammonia ligase O cell proliferation-inducing protein 59|glutamate decarboxylase|glutamate--ammonia ligase|glutamine synthase|glutamine synthetase|proliferation-inducing protein 43 20121230 -9606 2753 GLULP1 - GLULL1 HGNC:4342 5 5q33 glutamate-ammonia ligase (glutamine synthetase) pseudogene 1 pseudo GLULP1 glutamate-ammonia ligase (glutamine synthetase) pseudogene 1 O - 20121230 -9606 2754 GLULP2 - GLULL2 HGNC:4343 11 11p15.4 glutamate-ammonia ligase (glutamine synthetase) pseudogene 2 pseudo GLULP2 glutamate-ammonia ligase (glutamine synthetase) pseudogene 2 O - 20121230 -9606 2757 GLYB - - HGNC:4363|MIM:138480 8 8q21.1-qter glycine B complementing unknown GLYB glycine B complementing O - 20080828 -9606 2759 GLYS1 - - HGNC:4365|MIM:233100 6 6p21.3 glycosuria 1, renal unknown GLYS1 glycosuria 1, renal O - 20110714 -9606 2760 GM2A - GM2-AP|SAP-3 HGNC:4367|MIM:613109|Ensembl:ENSG00000196743|HPRD:02034|Vega:OTTHUMG00000130124 5 5q33.1 GM2 ganglioside activator protein-coding GM2A GM2 ganglioside activator O cerebroside sulfate activator protein|ganglioside GM2 activator|shingolipid activator protein 3|sphingolipid activator protein 3 20121230 -9606 2761 GM2AP1 - GM2AP HGNC:4368 3 3q24 GM2 ganglioside activator pseudogene 1 pseudo GM2AP1 GM2 ganglioside activator pseudogene 1 O - 20121230 -9606 2762 GMDS RP1-118B18.1 GMD|SDR3E1 HGNC:4369|MIM:602884|Ensembl:ENSG00000112699|HPRD:11925|Vega:OTTHUMG00000016143 6 6p25 GDP-mannose 4,6-dehydratase protein-coding GMDS GDP-mannose 4,6-dehydratase O GDP-D-mannose dehydratase|GDP-mannose 4,6 dehydratase|short chain dehydrogenase/reductase family 3E, member 1 20121230 -9606 2763 GMFA - - HGNC:4372 - - glia maturation factor, alpha protein-coding GMFA glia maturation factor, alpha O - 20080828 -9606 2764 GMFB - GMF HGNC:4373|MIM:601713|Ensembl:ENSG00000197045|Vega:OTTHUMG00000140307 14 14q22.2 glia maturation factor, beta protein-coding GMFB glia maturation factor, beta O GMF-beta|glia maturation factor beta 20121230 -9606 2765 GML - LY6DL HGNC:4375|MIM:602370|Ensembl:ENSG00000104499|HPRD:03844|Vega:OTTHUMG00000164656 8 8q24.3 glycosylphosphatidylinositol anchored molecule like protein-coding GML glycosylphosphatidylinositol anchored molecule like O GPI anchored molecule like protein|Glycosylphosphatidylinositol-anchored molecule-like protein|glycosyl-phosphatidylinositol-anchored molecule-like protein|glycosylphosphatidylinositol anchored molecule like protein 20121230 -9606 2766 GMPR RP3-467D16.2 GMPR1 HGNC:4376|MIM:139265|Ensembl:ENSG00000137198|HPRD:00754|Vega:OTTHUMG00000014302 6 6p23 guanosine monophosphate reductase protein-coding GMPR guanosine monophosphate reductase O GMP reductase 1|guanine monophosphate reductase|guanosine 5'-monophosphate oxidoreductase 1|guanosine monophosphate reductase 1 20121230 -9606 2767 GNA11 - GNA-11 HGNC:4379|MIM:139313|Ensembl:ENSG00000088256|HPRD:00759|Vega:OTTHUMG00000180631 19 19p13.3 guanine nucleotide binding protein (G protein), alpha 11 (Gq class) protein-coding GNA11 guanine nucleotide binding protein (G protein), alpha 11 (Gq class) O G-protein subunit alpha-11|g alpha-11|guanine nucleotide-binding protein G(y) subunit alpha|guanine nucleotide-binding protein subunit alpha-11|guanine nucleotide-binding protein, Gq class, GNA11 20121230 -9606 2768 GNA12 - NNX3|RMP|gep HGNC:4380|MIM:604394|Ensembl:ENSG00000146535|HPRD:05093|Vega:OTTHUMG00000023064 7 7p22.2 guanine nucleotide binding protein (G protein) alpha 12 protein-coding GNA12 guanine nucleotide binding protein (G protein) alpha 12 O G-protein subunit alpha-12|WUGSC:H_GS165O14.2|g alpha-12|guanine nucleotide-binding protein subunit alpha-12 20121230 -9606 2769 GNA15 - GNA16 HGNC:4383|MIM:139314|Ensembl:ENSG00000060558|HPRD:00760|Vega:OTTHUMG00000180637 19 19p13.3 guanine nucleotide binding protein (G protein), alpha 15 (Gq class) protein-coding GNA15 guanine nucleotide binding protein (G protein), alpha 15 (Gq class) O G-protein subunit alpha-15|G-protein subunit alpha-16|epididymis tissue protein Li 17E|g alpha-15|g alpha-16|guanine nucleotide-binding protein subunit alpha-15|guanine nucleotide-binding protein subunit alpha-16 20121230 -9606 2770 GNAI1 - Gi HGNC:4384|MIM:139310|Ensembl:ENSG00000127955|HPRD:00756|Vega:OTTHUMG00000023523 7 7q21 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 1 protein-coding GNAI1 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 1 O Gi1 protein alpha subunit|adenylate cyclase-inhibiting G alpha protein|guanine nucleotide-binding protein G(i) subunit alpha-1 20121230 -9606 2771 GNAI2 - GIP|GNAI2B|H_LUCA15.1|H_LUCA16.1 HGNC:4385|MIM:139360|Ensembl:ENSG00000114353|HPRD:00764|Vega:OTTHUMG00000156940 3 3p21.31 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 2 protein-coding GNAI2 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 2 O GTP-binding regulatory protein Gi alpha-2 chain|adenylate cyclase-inhibiting G alpha protein|guanine nucleotide-binding protein G(i) subunit alpha-2|guanine nucleotide-binding protein G(i), alpha-2 subunit 20121230 -9606 2772 GNAI2P1 - GNAI2A|GNAI2L HGNC:4386|MIM:139180 12 12p13.1 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 2 pseudogene 1 pseudo GNAI2P1 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 2 pseudogene 1 O - 20121230 -9606 2773 GNAI3 RP5-1160K1.2 87U6|ARCND1 HGNC:4387|MIM:139370|Ensembl:ENSG00000065135|HPRD:00765|Vega:OTTHUMG00000011648 1 1p13 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 3 protein-coding GNAI3 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 3 O g(i) alpha-3|guanine nucleotide-binding protein G(k) subunit alpha 20121230 -9606 2774 GNAL - - HGNC:4388|MIM:139312|Ensembl:ENSG00000141404|HPRD:00758|Vega:OTTHUMG00000131660 18 18p11.22-p11.21 guanine nucleotide binding protein (G protein), alpha activating activity polypeptide, olfactory type protein-coding GNAL guanine nucleotide binding protein (G protein), alpha activating activity polypeptide, olfactory type O adenylate cyclase-stimulating G alpha protein, olfactory type|guanine nucleotide binding protein (G protein), alpha stimulating activity polypeptide, olfactory type|guanine nucleotide-binding protein G(olf) subunit alpha 20121230 -9606 2775 GNAO1 - G-ALPHA-o|GNAO HGNC:4389|MIM:139311|Ensembl:ENSG00000087258|HPRD:00757|Vega:OTTHUMG00000133241 16 16q13 guanine nucleotide binding protein (G protein), alpha activating activity polypeptide O protein-coding GNAO1 guanine nucleotide binding protein (G protein), alpha activating activity polypeptide O O guanine nucleotide-binding protein G(o) subunit alpha 20121230 -9606 2776 GNAQ RP11-494N1.1 G-ALPHA-q|GAQ HGNC:4390|MIM:600998|Ensembl:ENSG00000156052|HPRD:02998|Vega:OTTHUMG00000020059 9 9q21 guanine nucleotide binding protein (G protein), q polypeptide protein-coding GNAQ guanine nucleotide binding protein (G protein), q polypeptide O guanine nucleotide-binding protein G(q) subunit alpha|guanine nucleotide-binding protein alpha-q 20121230 -9606 2777 GNAQP1 - GNAQP HGNC:4391 2 2q21.1 guanine nucleotide binding protein (G protein), q polypeptide pseudogene 1 pseudo GNAQP1 guanine nucleotide binding protein (G protein), q polypeptide pseudogene 1 O - 20121230 -9606 2778 GNAS RP4-543J19.4 AHO|C20orf45|GNAS1|GPSA|GSA|GSP|NESP|PHP1A|PHP1B|PHP1C|POH HGNC:4392|MIM:139320|Ensembl:ENSG00000087460|HPRD:00761|Vega:OTTHUMG00000033069 20 20q13.3 GNAS complex locus protein-coding GNAS GNAS complex locus O adenylate cyclase-stimulating G alpha protein|alternative gene product encoded by XL-exon|extra large alphas protein|guanine nucleotide binding protein (G protein), alpha stimulating activity polypeptide 1|guanine nucleotide regulatory protein|guanine nucleotide-binding protein G(s) subunit alpha isoforms XLas|neuroendocrine secretory protein|protein ALEX|secretogranin VI 20121230 -9606 2779 GNAT1 - CSNBAD3|GBT1|GNATR HGNC:4393|MIM:139330|Ensembl:ENSG00000114349|HPRD:08850|Vega:OTTHUMG00000156808 3 3p21 guanine nucleotide binding protein (G protein), alpha transducing activity polypeptide 1 protein-coding GNAT1 guanine nucleotide binding protein (G protein), alpha transducing activity polypeptide 1 O guanine nucleotide-binding protein G(T), alpha-1 subunit|guanine nucleotide-binding protein G(t) subunit alpha-1|rod-type transducin alpha subunit|transducin alpha-1 chain|transducin, rod-specific 20121230 -9606 2780 GNAT2 RP5-1160K1.4 ACHM4|GNATC HGNC:4394|MIM:139340|Ensembl:ENSG00000134183|HPRD:00762|Vega:OTTHUMG00000011639 1 1p13.1 guanine nucleotide binding protein (G protein), alpha transducing activity polypeptide 2 protein-coding GNAT2 guanine nucleotide binding protein (G protein), alpha transducing activity polypeptide 2 O cone-type transducin alpha subunit|guanine nucleotide-binding protein G(t) subunit alpha-2|transducin alpha-2 chain|transducin, cone-specific, alpha polypeptide 20121230 -9606 2781 GNAZ - - HGNC:4395|MIM:139160|Ensembl:ENSG00000128266|HPRD:00746|Vega:OTTHUMG00000150611 22 22q11.22 guanine nucleotide binding protein (G protein), alpha z polypeptide protein-coding GNAZ guanine nucleotide binding protein (G protein), alpha z polypeptide O g(x) alpha chain|guanine nucleotide-binding protein G(z) subunit alpha|gz-alpha|transducin alpha 20121230 -9606 2782 GNB1 RP1-283E3.7 - HGNC:4396|MIM:139380|Ensembl:ENSG00000078369|HPRD:00766|Vega:OTTHUMG00000000940 1 1p36.33 guanine nucleotide binding protein (G protein), beta polypeptide 1 protein-coding GNB1 guanine nucleotide binding protein (G protein), beta polypeptide 1 O G protein, beta-1 subunit|beta subunit, signal-transducing proteins GS/GI|guanine nucleotide-binding protein G(I)/G(S)/G(T) beta subunit 1|guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-1|transducin beta chain 1 20121230 -9606 2783 GNB2 - - HGNC:4398|MIM:139390|Ensembl:ENSG00000172354|HPRD:11820|Vega:OTTHUMG00000137419 7 7q22 guanine nucleotide binding protein (G protein), beta polypeptide 2 protein-coding GNB2 guanine nucleotide binding protein (G protein), beta polypeptide 2 O G protein, beta-2 subunit|g protein subunit beta-2|guanine nucleotide-binding protein G(I)/G(S)/G(T) beta subunit 2|guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-2|signal-transducing guanine nucleotide-binding regulatory protein beta subunit|transducin beta chain 2 20121230 -9606 2784 GNB3 - - HGNC:4400|MIM:139130|Ensembl:ENSG00000111664|HPRD:00743|Vega:OTTHUMG00000168517 12 12p13 guanine nucleotide binding protein (G protein), beta polypeptide 3 protein-coding GNB3 guanine nucleotide binding protein (G protein), beta polypeptide 3 O G protein, beta-3 subunit|GTP-binding regulatory protein beta-3 chain|guanine nucleotide-binding protein G(I)/G(S)/G(T) beta subunit 3|guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-3|hypertension associated protein|transducin beta chain 3 20121230 -9606 2785 GNG3 - - HGNC:4405|MIM:608941|Ensembl:ENSG00000162188|HPRD:12337|Vega:OTTHUMG00000167560 11 11p11 guanine nucleotide binding protein (G protein), gamma 3 protein-coding GNG3 guanine nucleotide binding protein (G protein), gamma 3 O NBP gamma-3|guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-3|guanine nucleotide-binding protein gamma-3 subunit 20121230 -9606 2786 GNG4 - - HGNC:4407|MIM:604388|Ensembl:ENSG00000168243|HPRD:11978|Vega:OTTHUMG00000040740 1 1q42.3 guanine nucleotide binding protein (G protein), gamma 4 protein-coding GNG4 guanine nucleotide binding protein (G protein), gamma 4 O guanine nucleotide binding protein 4|guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-4 20121230 -9606 2787 GNG5 - - HGNC:4408|MIM:600874|Ensembl:ENSG00000174021|HPRD:11865|Vega:OTTHUMG00000009858 1 1p22 guanine nucleotide binding protein (G protein), gamma 5 protein-coding GNG5 guanine nucleotide binding protein (G protein), gamma 5 O guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-5 20121230 -9606 2788 GNG7 - - HGNC:4410|MIM:604430|Ensembl:ENSG00000176533|HPRD:07638|HPRD:10376|Vega:OTTHUMG00000180435 19 19p13.3 guanine nucleotide binding protein (G protein), gamma 7 protein-coding GNG7 guanine nucleotide binding protein (G protein), gamma 7 O guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-7 20121230 -9606 2789 GNG5P1 - GNG5P HGNC:4409 6 6q27 guanine nucleotide binding protein (G protein), gamma 5 pseudogene 1 pseudo GNG5P1 guanine nucleotide binding protein (G protein), gamma 5 pseudogene 1 O - 20121230 -9606 2790 GNG10 - - HGNC:4402|MIM:604389|Ensembl:ENSG00000242616|Vega:OTTHUMG00000157193 9 9q31.3 guanine nucleotide binding protein (G protein), gamma 10 protein-coding GNG10 guanine nucleotide binding protein (G protein), gamma 10 O guanine nucleotide binding protein 10|guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-10 20121230 -9606 2791 GNG11 - GNGT11 HGNC:4403|MIM:604390|Ensembl:ENSG00000127920|HPRD:11979|Vega:OTTHUMG00000023411 7 7q21 guanine nucleotide binding protein (G protein), gamma 11 protein-coding GNG11 guanine nucleotide binding protein (G protein), gamma 11 O G protein gamma-11 subunit|guanine nucleotide-binding protein G(I)/G(S)/G(O) gamma-11 subunit|guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-11 20121230 -9606 2792 GNGT1 - GNG1 HGNC:4411|MIM:189970|Ensembl:ENSG00000127928|HPRD:01805|Vega:OTTHUMG00000022908 7 7q21.3 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 1 protein-coding GNGT1 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 1 O guanine nucleotide-binding protein G(T) subunit gamma-T1|transducin gamma chain 20121230 -9606 2793 GNGT2 - G-GAMMA-8|G-GAMMA-C|GNG8|GNG9|GNGT8 HGNC:4412|MIM:139391|Ensembl:ENSG00000167083|HPRD:06792|Vega:OTTHUMG00000161308 17 17q21 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 2 protein-coding GNGT2 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 2 O G protein cone gamma 8 subunit|G-gamma-9|g gamma-C|gamma-T2 subunit|guanine nucleotide binding protein gamma 9|guanine nucleotide binding protein gamma transducing activity polypeptide 2|guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-T2 20121230 -9606 2794 GNL1 DAAP-394O23.2 HSR1 HGNC:4413|MIM:143024|Ensembl:ENSG00000204590|HPRD:00879|Vega:OTTHUMG00000031137 6 6p21.3 guanine nucleotide binding protein-like 1 protein-coding GNL1 guanine nucleotide binding protein-like 1 O GTP-binding protein HSR1|HSR1 GTP-binding protein|guanine nucleotide-binding protein-like 1 20121230 -9606 2796 GNRH1 - GNRH|GRH|HH12|LHRH|LNRH HGNC:4419|MIM:152760|Ensembl:ENSG00000147437|HPRD:08860|Vega:OTTHUMG00000163852 8 8p21-p11.2 gonadotropin-releasing hormone 1 (luteinizing-releasing hormone) protein-coding GNRH1 gonadotropin-releasing hormone 1 (luteinizing-releasing hormone) O GnRH-associated peptide 1|gonadotropin-releasing hormone 1 (leutinizing-releasing hormone)|luliberin I|progonadoliberin I|progonadoliberin-1|prolactin release-inhibiting factor 20121230 -9606 2797 GNRH2 - GnRH-II|LH-RHII HGNC:4420|MIM:602352|Ensembl:ENSG00000125787|HPRD:03830|Vega:OTTHUMG00000031723 20 20p13 gonadotropin-releasing hormone 2 protein-coding GNRH2 gonadotropin-releasing hormone 2 O luliberin II|luteinizing hormone-releasing hormone II|progonadoliberin II|progonadoliberin-2 20121230 -9606 2798 GNRHR - GNRHR1|GRHR|HH7|LHRHR|LRHR HGNC:4421|MIM:138850|Ensembl:ENSG00000109163|HPRD:00732|Vega:OTTHUMG00000129302 4 4q21.2 gonadotropin-releasing hormone receptor protein-coding GNRHR gonadotropin-releasing hormone receptor O gnRH receptor|gnRH-R|gonadotropin-releasing hormone (type 1) receptor 1|leutinizing hormone releasing horomone receptor|leutinizing-releasing hormone receptor|luliberin receptor|type I GnRH receptor 20121230 -9606 2799 GNS - G6S HGNC:4422|MIM:607664|Ensembl:ENSG00000135677|HPRD:09637|Vega:OTTHUMG00000168819 12 12q14 glucosamine (N-acetyl)-6-sulfatase protein-coding GNS glucosamine (N-acetyl)-6-sulfatase O N-acetylglucosamine-6-sulfatase|glucosamine-6-sulfatase 20121230 -9606 2800 GOLGA1 RP11-175D17.2 golgin-97 HGNC:4424|MIM:602502|Ensembl:ENSG00000136935|HPRD:03934|Vega:OTTHUMG00000020665 9 9q33.3 golgin A1 protein-coding GOLGA1 golgin A1 O Golgin subfamily A member 1|gap junction protein, alpha 4, 37kD|golgi autoantigen, golgin subfamily a, 1 20121230 -9606 2801 GOLGA2 RP11-395P17.5 GM130 HGNC:4425|MIM:602580|Ensembl:ENSG00000167110|HPRD:03989|Vega:OTTHUMG00000020732 9 9q34.11 golgin A2 protein-coding GOLGA2 golgin A2 O 130 kDa cis-Golgi matrix protein|GM130 autoantigen|Golgi matrix protein GM130|Golgin subfamily A member 2|SY11 protein|golgi autoantigen, golgin subfamily a, 2|golgin-95 20121230 -9606 2802 GOLGA3 - GCP170|MEA-2 HGNC:4426|MIM:602581|Ensembl:ENSG00000090615|HPRD:03990|Vega:OTTHUMG00000168023 12 12q24.33 golgin A3 protein-coding GOLGA3 golgin A3 O Golgi membrane associated protein|Golgi peripheral membrane protein|Golgin subfamily A member 3|SY2/SY10 protein|golgi autoantigen, golgin subfamily a, 3|golgi complex-associated protein of 170 kDa|golgin-160|golgin-165|male enhanced antigen-2 20121230 -9606 2803 GOLGA4 - GCP2|GOLG|MU-RMS-40.18|p230 HGNC:4427|MIM:602509|Ensembl:ENSG00000144674|HPRD:03941|Vega:OTTHUMG00000130799 3 3p22-p21.3 golgin A4 protein-coding GOLGA4 golgin A4 O 256 kDa golgin|72.1 protein|Golgin subfamily A member 4|golgi autoantigen, golgin subfamily a, 4|golgin-240|golgin-245|protein 72.1|trans-Golgi p230 20121230 -9606 2804 GOLGB1 - GCP|GCP372|GOLIM1 HGNC:4429|MIM:602500|Ensembl:ENSG00000173230|HPRD:03933|Vega:OTTHUMG00000159411 3 3q13 golgin B1 protein-coding GOLGB1 golgin B1 O 372 kDa Golgi complex-associated protein|Golgin subfamily B member 1|giantin|golgi autoantigen, golgin subfamily b, macrogolgin (with transmembrane signal), 1|golgi integral membrane protein 1|golgin B1, golgi integral membrane protein|macrogolgin 20121230 -9606 2805 GOT1 - ASTQTL1|GIG18 HGNC:4432|MIM:138180|Ensembl:ENSG00000120053|HPRD:00687|Vega:OTTHUMG00000018882 10 10q24.1-q25.1 glutamic-oxaloacetic transaminase 1, soluble (aspartate aminotransferase 1) protein-coding GOT1 glutamic-oxaloacetic transaminase 1, soluble (aspartate aminotransferase 1) O aspartate aminotransferase, cytoplasmic|glutamate oxaloacetate transaminase 1|growth-inhibiting protein 18|transaminase A 20121230 -9606 2806 GOT2 - KAT4|KATIV|mitAAT HGNC:4433|MIM:138150|Ensembl:ENSG00000125166|HPRD:00684|Vega:OTTHUMG00000133769 16 16q21 glutamic-oxaloacetic transaminase 2, mitochondrial (aspartate aminotransferase 2) protein-coding GOT2 glutamic-oxaloacetic transaminase 2, mitochondrial (aspartate aminotransferase 2) O FABP-1|FABPpm|aspartate aminotransferase, mitochondrial|fatty acid-binding protein|glutamate oxaloacetate transaminase 2|kynurenine aminotransferase 4|kynurenine aminotransferase IV|kynurenine--oxoglutarate transaminase 4|kynurenine--oxoglutarate transaminase IV|mAspAT|plasma membrane-associated fatty acid-binding protein|transaminase A 20121230 -9606 2810 SFN - YWHAS HGNC:10773|MIM:601290|Ensembl:ENSG00000175793|HPRD:03185|Vega:OTTHUMG00000004093 1 1p36.11 stratifin protein-coding SFN stratifin O 14-3-3 protein sigma|14-3-3 sigma|epithelial cell marker protein 1 20121230 -9606 2811 GP1BA - BDPLT1|BDPLT3|BSS|CD42B|CD42b-alpha|DBPLT3|GP1B|GPIbA|VWDP HGNC:4439|MIM:606672|Ensembl:ENSG00000185245|HPRD:01976|Vega:OTTHUMG00000177946 17 17pter-p12 glycoprotein Ib (platelet), alpha polypeptide protein-coding GP1BA glycoprotein Ib (platelet), alpha polypeptide O GP-Ib alpha|antigen CD42b-alpha|platelet glycoprotein Ib alpha chain|platelet membrane glycoprotein 1b-alpha subunit 20121230 -9606 2812 GP1BB - BDPLT1|BS|CD42C|GPIBB HGNC:4440|MIM:138720|Ensembl:ENSG00000203618|HPRD:00729|Vega:OTTHUMG00000150397 22 22q11.21 glycoprotein Ib (platelet), beta polypeptide protein-coding GP1BB glycoprotein Ib (platelet), beta polypeptide O GP-Ib beta|GPIb-beta|antigen CD42b-beta|nuclear localization signal deleted in velocardiofacial syndrome|platelet glycoprotein Ib beta chain 20121230 -9606 2813 GP2 - ZAP75 HGNC:4441|MIM:602977|Ensembl:ENSG00000169347|HPRD:04279|Vega:OTTHUMG00000131489 16 16p12 glycoprotein 2 (zymogen granule membrane) protein-coding GP2 glycoprotein 2 (zymogen granule membrane) O pancreatic secretory granule membrane major glycoprotein GP2|pancreatic zymogen granule membrane associated protein GP2|pancreatic zymogen granule membrane protein GP-2 20121230 -9606 2814 GP5 - CD42d|GPV HGNC:4443|MIM:173511|Ensembl:ENSG00000178732|HPRD:01431 3 3q29 glycoprotein V (platelet) protein-coding GP5 glycoprotein V (platelet) O glycoprotein 5|platelet glycoprotein V 20121230 -9606 2815 GP9 - CD42a|GPIX HGNC:4444|MIM:173515|Ensembl:ENSG00000169704|HPRD:01432|Vega:OTTHUMG00000159944 3 3q21.3 glycoprotein IX (platelet) protein-coding GP9 glycoprotein IX (platelet) O GP-IX|glycoprotein 9|platelet glycoprotein IX 20121230 -9606 2817 GPC1 - glypican HGNC:4449|MIM:600395|Ensembl:ENSG00000063660|HPRD:02671|Vega:OTTHUMG00000133349 2 2q35-q37 glypican 1 protein-coding GPC1 glypican 1 O glypican proteoglycan 1|glypican-1 20121230 -9606 2819 GPD1 - GPD-C|GPDH-C|HTGTI HGNC:4455|MIM:138420|Ensembl:ENSG00000167588|HPRD:00714|Vega:OTTHUMG00000169813 12 12q12-q13 glycerol-3-phosphate dehydrogenase 1 (soluble) protein-coding GPD1 glycerol-3-phosphate dehydrogenase 1 (soluble) O glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic|glycerol-3-phosphate dehydrogenase [NAD+], cytoplasmic|glycerophosphate dehydrogenase 20121230 -9606 2820 GPD2 - GDH2|GPDM|mGPDH HGNC:4456|MIM:138430|Ensembl:ENSG00000115159|HPRD:00715|Vega:OTTHUMG00000131951 2 2q24.1 glycerol-3-phosphate dehydrogenase 2 (mitochondrial) protein-coding GPD2 glycerol-3-phosphate dehydrogenase 2 (mitochondrial) O GPD-M|GPDH-M|glycerol-3-phosphate dehydrogenase, mitochondrial|mitochondrial glycerophosphate dehydrogenase|mtGPD 20121230 -9606 2821 GPI - AMF|GNPI|NLK|PGI|PHI|SA-36|SA36 HGNC:4458|MIM:172400|Ensembl:ENSG00000105220|HPRD:01394|Vega:OTTHUMG00000182087 19 19q13.1 glucose-6-phosphate isomerase protein-coding GPI glucose-6-phosphate isomerase O autocrine motility factor|glucose phosphate isomerase|hexose monophosphate isomerase|hexosephosphate isomerase|neuroleukin|oxoisomerase|phosphoglucose isomerase|phosphohexomutase|phosphohexose isomerase|phosphosaccharomutase|sperm antigen 36|sperm antigen-36 20121230 -9606 2822 GPLD1 - GPIPLD|GPIPLDM|PIGPLD|PIGPLD1 HGNC:4459|MIM:602515|Ensembl:ENSG00000112293|HPRD:03946|Vega:OTTHUMG00000016104 6 6p22.1 glycosylphosphatidylinositol specific phospholipase D1 protein-coding GPLD1 glycosylphosphatidylinositol specific phospholipase D1 O GPI-PLD|GPI-specific phospholipase D|PI-G PLD|glycoprotein phospholipase D|phosphatidylinositol-glycan-specific phospholipase D 20121230 -9606 2823 GPM6A - GPM6|M6A HGNC:4460|MIM:601275|Ensembl:ENSG00000150625|HPRD:03174|Vega:OTTHUMG00000160760 4 4q34 glycoprotein M6A protein-coding GPM6A glycoprotein M6A O neuronal membrane glycoprotein M6-a 20121230 -9606 2824 GPM6B - M6B HGNC:4461|MIM:300051|Ensembl:ENSG00000046653|HPRD:02082|Vega:OTTHUMG00000021162 X Xp22.2 glycoprotein M6B protein-coding GPM6B glycoprotein M6B O neuronal membrane glycoprotein M6-b|protolipid M6B 20121230 -9606 2825 GPR1 - - HGNC:4463|MIM:600239|Ensembl:ENSG00000183671|HPRD:02585|Vega:OTTHUMG00000132894 2 2q33.3 G protein-coupled receptor 1 protein-coding GPR1 G protein-coupled receptor 1 O G-protein coupled receptor 1|probable G-protein coupled receptor 1 20121230 -9606 2826 CCR10 - GPR2 HGNC:4474|MIM:600240|Ensembl:ENSG00000184451|HPRD:02586|Vega:OTTHUMG00000132301 17 17q21.1-q21.3 chemokine (C-C motif) receptor 10 protein-coding CCR10 chemokine (C-C motif) receptor 10 O C-C CKR-10|C-C chemokine receptor type 10|CC chemokine receptor 10|CC-CKR-10|CCR-10|G protein-coupled receptor 2|G-protein coupled receptor 2 20121230 -9606 2827 GPR3 - ACCA HGNC:4484|MIM:600241|Ensembl:ENSG00000181773|HPRD:02587|Vega:OTTHUMG00000003397 1 1p36.1-p35 G protein-coupled receptor 3 protein-coding GPR3 G protein-coupled receptor 3 O ACCA orphan receptor|G-protein coupled receptor 3|adenylate cyclase constitutive activator 20121230 -9606 2828 GPR4 - - HGNC:4497|MIM:600551|Ensembl:ENSG00000177464|HPRD:02773|Vega:OTTHUMG00000182126 19 19q13.3 G protein-coupled receptor 4 protein-coding GPR4 G protein-coupled receptor 4 O G-protein coupled receptor 19|G-protein coupled receptor 4 20121230 -9606 2829 XCR1 - CCXCR1|GPR5 HGNC:1625|MIM:600552|Ensembl:ENSG00000173578|HPRD:02774|Vega:OTTHUMG00000133449 3 3p21.3 chemokine (C motif) receptor 1 protein-coding XCR1 chemokine (C motif) receptor 1 O G protein-coupled receptor 5|G-protein coupled receptor 5|XC chemokine receptor 1|chemokine (C motif) XC receptor 1|chemokine XC receptor 1|lymphotactin receptor 20121230 -9606 2830 GPR6 - - HGNC:4515|MIM:600553|Ensembl:ENSG00000146360|HPRD:02775|Vega:OTTHUMG00000015354 6 6q21 G protein-coupled receptor 6 protein-coding GPR6 G protein-coupled receptor 6 O G-protein coupled receptor 6|sphingosine 1-phosphate receptor GPR6 20121230 -9606 2831 NPBWR1 - GPR7 HGNC:4522|MIM:600730|Ensembl:ENSG00000183729|HPRD:02840|Vega:OTTHUMG00000164275 8 8p22-q21.13 neuropeptides B/W receptor 1 protein-coding NPBWR1 neuropeptides B/W receptor 1 O G protein-coupled receptor 7|G-protein coupled receptor 7|neuropeptide B/W receptor 1|neuropeptides B/W receptor type 1|opioid-somatostatin-like receptor 7 20121230 -9606 2832 NPBWR2 - GPR8 HGNC:4530|MIM:600731|Ensembl:ENSG00000125522|HPRD:02841|Vega:OTTHUMG00000033032 20 20q13.3 neuropeptides B/W receptor 2 protein-coding NPBWR2 neuropeptides B/W receptor 2 O G protein-coupled receptor 8|G-protein coupled receptor 8|neuropeptides B/W receptor type 2|opioid-somatostatin-like receptor 8 20121230 -9606 2833 CXCR3 - CD182|CD183|CKR-L2|CMKAR3|GPR9|IP10-R|Mig-R|MigR HGNC:4540|MIM:300574|Ensembl:ENSG00000186810|HPRD:02936|Vega:OTTHUMG00000033326 X Xq13 chemokine (C-X-C motif) receptor 3 protein-coding CXCR3 chemokine (C-X-C motif) receptor 3 O C-X-C chemokine receptor type 3|CXC-R3|CXCR-3|G protein-coupled receptor 9|IP-10 receptor|IP10 receptor|Mig receptor|chemokine (C-X-C) receptor 3|interferon-inducible protein 10 receptor 20121230 -9606 2834 PRLHR - GPR10|GR3|PrRPR HGNC:4464|MIM:600895|Ensembl:ENSG00000119973|HPRD:02937 10 10q26.13 prolactin releasing hormone receptor protein-coding PRLHR prolactin releasing hormone receptor O G protein-coupled receptor 10|G-protein coupled receptor 10|hGR3|prRP receptor|prolactin releasing peptide receptor|prolactin-releasing hormone receptor|prolactin-releasing peptide receptor 20121230 -9606 2835 GPR12 - GPCR12|GPCR21 HGNC:4466|MIM:600752|Ensembl:ENSG00000132975|HPRD:15978 13 13q12 G protein-coupled receptor 12 protein-coding GPR12 G protein-coupled receptor 12 O G-protein coupled receptor 12 20121230 -9606 2837 UTS2R - GPR14|UR-2-R|UTR|UTR2 HGNC:4468|MIM:600896|Ensembl:ENSG00000181408|HPRD:02938|Vega:OTTHUMG00000178835 17 17q25.3 urotensin 2 receptor protein-coding UTS2R urotensin 2 receptor O G protein-coupled receptor 14|G-protein coupled receptor 14|UR-II-R|urotensin II receptor|urotensin-2 receptor 20121230 -9606 2838 GPR15 - BOB HGNC:4469|MIM:601166|Ensembl:ENSG00000154165|HPRD:03102|Vega:OTTHUMG00000160017 3 3q11.2-q13.1 G protein-coupled receptor 15 protein-coding GPR15 G protein-coupled receptor 15 O G-protein coupled receptor 15|brother of Bonzo 20121230 -9606 2840 GPR17 - - HGNC:4471|MIM:603071|Ensembl:ENSG00000144230|HPRD:04351|Vega:OTTHUMG00000131533 2 2q21 G protein-coupled receptor 17 protein-coding GPR17 G protein-coupled receptor 17 O G-protein coupled receptor 17|P2Y-like receptor|R12|UDP/CysLT receptor|uracil nucleotide/cysteinyl leukotriene receptor 20121230 -9606 2841 GPR18 RP11-461N23.8 - HGNC:4472|MIM:602042|Ensembl:ENSG00000125245|HPRD:03621|Vega:OTTHUMG00000017266 13 13q32 G protein-coupled receptor 18 protein-coding GPR18 G protein-coupled receptor 18 O N-arachidonyl glycine receptor|NAGly receptor 20121230 -9606 2842 GPR19 - - HGNC:4473|MIM:602927|Ensembl:ENSG00000183150|HPRD:04236|Vega:OTTHUMG00000168705 12 12p12.3 G protein-coupled receptor 19 protein-coding GPR19 G protein-coupled receptor 19 O GPR-NGA|probable G-protein coupled receptor 19 20121230 -9606 2843 GPR20 - - HGNC:4475|MIM:601908|Ensembl:ENSG00000204882|HPRD:03550|Vega:OTTHUMG00000164484 8 8q24.3 G protein-coupled receptor 20 protein-coding GPR20 G protein-coupled receptor 20 O G-protein coupled receptor 20 20121230 -9606 2844 GPR21 - - HGNC:4476|MIM:601909|Ensembl:ENSG00000188394|HPRD:03551|Vega:OTTHUMG00000020631 9 9q33 G protein-coupled receptor 21 protein-coding GPR21 G protein-coupled receptor 21 O probable G-protein coupled receptor 21 20121230 -9606 2845 GPR22 tcag7.108 - HGNC:4477|MIM:601910|Ensembl:ENSG00000172209|HPRD:03552|Vega:OTTHUMG00000154902 7 7q22-q31.1 G protein-coupled receptor 22 protein-coding GPR22 G protein-coupled receptor 22 O probable G-protein coupled receptor 22 20121230 -9606 2846 LPAR4 - GPR23|LPA4|P2RY9|P2Y5-LIKE|P2Y9 HGNC:4478|MIM:300086|Ensembl:ENSG00000147145|HPRD:02099 X Xq21.1 lysophosphatidic acid receptor 4 protein-coding LPAR4 lysophosphatidic acid receptor 4 O G protein-coupled receptor 23|G-protein coupled receptor 23|LPA receptor 4|LPA-4|P2Y purinoceptor 9|P2Y5-like receptor|purinergic receptor 9 20121230 -9606 2847 MCHR1 CTA-229A8.4 GPR24|MCH1R|SLC1 HGNC:4479|MIM:601751|Ensembl:ENSG00000128285|HPRD:11874|Vega:OTTHUMG00000150256 22 22q13.2 melanin-concentrating hormone receptor 1 protein-coding MCHR1 melanin-concentrating hormone receptor 1 O G protein-coupled receptor 24|MCH receptor 1|MCH-1R|SLC-1|somatostatin receptor-like protein 20121230 -9606 2848 GPR25 - - HGNC:4480|MIM:602174|Ensembl:ENSG00000170128|HPRD:03707|Vega:OTTHUMG00000035788 1 1q32.1 G protein-coupled receptor 25 protein-coding GPR25 G protein-coupled receptor 25 O probable G-protein coupled receptor 25 20121230 -9606 2849 GPR26 - - HGNC:4481|MIM:604847|Ensembl:ENSG00000154478|HPRD:07275|Vega:OTTHUMG00000019204 10 10q26.13 G protein-coupled receptor 26 protein-coding GPR26 G protein-coupled receptor 26 O G-protein coupled receptor 26 20121230 -9606 2850 GPR27 - SREB1 HGNC:4482|MIM:605187|Ensembl:ENSG00000170837|HPRD:05542|Vega:OTTHUMG00000158810 3 3p21-p14 G protein-coupled receptor 27 protein-coding GPR27 G protein-coupled receptor 27 O probable G-protein coupled receptor 27|super conserved receptor expressed in brain 1 20121230 -9606 2852 GPER - CEPR|CMKRL2|DRY12|FEG-1|GPCR-Br|GPR30|LERGU|LERGU2|LyGPR HGNC:4485|MIM:601805|Ensembl:ENSG00000164850|HPRD:03484|Vega:OTTHUMG00000023680 7 7p22.3 G protein-coupled estrogen receptor 1 protein-coding GPER G protein-coupled estrogen receptor 1 O G protein-coupled receptor 30|G-protein coupled estrogen receptor 1|G-protein coupled receptor 30|IL8-related receptor DRY12|chemoattractant receptor-like 2|chemokine receptor-like 2|constitutively expressed peptide-like receptor|flow-induced endothelial G-protein coupled receptor 1|heptahelix receptor|leucine rich protein in GPR30 3'UTR|lymphocyte-derived G-protein coupled receptor|mER|membrane estrogen receptor 20121230 -9606 2853 GPR31 - 12-HETER|HETER|HETER1 HGNC:4486|MIM:602043|Ensembl:ENSG00000120436|HPRD:03622|Vega:OTTHUMG00000016013 6 6q27 G protein-coupled receptor 31 protein-coding GPR31 G protein-coupled receptor 31 O 12-(S)-HETE acid receptor|12-(S)-HETE receptor|12-(S)-hydroxy-5,8,10,14-eicosatetraenoic acid (HETE) receptor|12-(S)-hydroxy-5,8,10,14-eicosatetraenoic acid receptor|G-protein coupled receptor 31|bA517H2.2 (G protein-coupled receptor 31)|hydroxyeicosatetraenoic (HETE) acid receptor 1|probable G-protein coupled receptor 31 20121230 -9606 2854 GPR32 - RVDR1 HGNC:4487|MIM:603195|Ensembl:ENSG00000142511|HPRD:04430 19 19q13.33 G protein-coupled receptor 32 protein-coding GPR32 G protein-coupled receptor 32 O probable G-protein coupled receptor 32|resolvin D1 receptor 20121230 -9606 2855 GPR32P1 - GPR32P HGNC:4488 19 19q13.33 G protein-coupled receptor 32, pseudogene 1 pseudo GPR32P1 G protein-coupled receptor 32, pseudogene 1 O - 20121230 -9606 2856 GPR33 - - HGNC:4489|MIM:610118 14 14q12 G protein-coupled receptor 33 (gene/pseudogene) protein-coding GPR33 G protein-coupled receptor 33 (gene/pseudogene) O G protein-coupled receptor 33 pseudogene|probable G-protein coupled receptor 33 20121230 -9606 2857 GPR34 RP11-204C16.6 - HGNC:4490|MIM:300241|Ensembl:ENSG00000171659|HPRD:02213|Vega:OTTHUMG00000021375 X Xp11.4 G protein-coupled receptor 34 protein-coding GPR34 G protein-coupled receptor 34 O probable G-protein coupled receptor 34 20121230 -9606 2859 GPR35 - - HGNC:4492|MIM:602646|Ensembl:ENSG00000178623|HPRD:16003|Vega:OTTHUMG00000133356 2 2q37.3 G protein-coupled receptor 35 protein-coding GPR35 G protein-coupled receptor 35 O G-protein coupled receptor 35|KYNA receptor|kynurenic acid receptor 20121230 -9606 2860 GPR36 - - HGNC:4493 - - G protein-coupled receptor 36 protein-coding GPR36 G protein-coupled receptor 36 O - 20080828 -9606 2861 GPR37 - EDNRBL|PAELR|hET(B)R-LP HGNC:4494|MIM:602583|Ensembl:ENSG00000170775|HPRD:03992|Vega:OTTHUMG00000157197 7 7q31 G protein-coupled receptor 37 (endothelin receptor type B-like) protein-coding GPR37 G protein-coupled receptor 37 (endothelin receptor type B-like) O ETBR-LP-1|Parkin-associated endothelin receptor-like receptor|endothelin B receptor-like protein 1|probable G-protein coupled receptor 37 20121230 -9606 2862 MLNR - GPR38|MTLR1 HGNC:4495|MIM:602885|Ensembl:ENSG00000102539|HPRD:04197|Vega:OTTHUMG00000016909 13 13q14-q21 motilin receptor protein-coding MLNR motilin receptor O G protein-coupled receptor 38 20121230 -9606 2863 GPR39 - - HGNC:4496|MIM:602886|Ensembl:ENSG00000183840|HPRD:04198|Vega:OTTHUMG00000131679 2 2q21-q22 G protein-coupled receptor 39 protein-coding GPR39 G protein-coupled receptor 39 O G-protein coupled receptor 39 20121230 -9606 2864 FFAR1 - FFA1R|GPCR40|GPR40 HGNC:4498|MIM:603820|Ensembl:ENSG00000126266|HPRD:04822 19 19q13.1 free fatty acid receptor 1 protein-coding FFAR1 free fatty acid receptor 1 O G protein-coupled receptor 40|G-protein coupled receptor 40 20121230 -9606 2865 FFAR3 - FFA3R|GPR41 HGNC:4499|MIM:603821|Ensembl:ENSG00000185897|HPRD:04823|Vega:OTTHUMG00000172514 19 19q13.1 free fatty acid receptor 3 protein-coding FFAR3 free fatty acid receptor 3 O G protein-coupled receptor 41|G-protein coupled receptor 41 20121230 -9606 2866 GPR42 - FFAR1L|FFAR3L|GPR41L|GPR42P HGNC:4500|MIM:603822|HPRD:16033 19 19q13.1 G protein-coupled receptor 42 (gene/pseudogene) pseudo GPR42 G protein-coupled receptor 42 (gene/pseudogene) O - 20121209 -9606 2867 FFAR2 - FFA2R|GPR43 HGNC:4501|MIM:603823|Ensembl:ENSG00000126262|HPRD:04824 19 19q13.1 free fatty acid receptor 2 protein-coding FFAR2 free fatty acid receptor 2 O G protein-coupled receptor 43|G-protein coupled receptor 43|free fatty acid activated receptor 2 20121230 -9606 2868 GRK4 - GPRK2L|GPRK4|GRK4a|IT11 HGNC:4543|MIM:137026|Ensembl:ENSG00000125388|HPRD:00656|Vega:OTTHUMG00000159914 4 4p16.3 G protein-coupled receptor kinase 4 protein-coding GRK4 G protein-coupled receptor kinase 4 O ITI1 20121230 -9606 2869 GRK5 RP11-714M16.1 GPRK5 HGNC:4544|MIM:600870|Ensembl:ENSG00000198873|HPRD:02926|Vega:OTTHUMG00000019149 10 10q26.11 G protein-coupled receptor kinase 5 protein-coding GRK5 G protein-coupled receptor kinase 5 O FP2025|g protein-coupled receptor kinase GRK5 20121230 -9606 2870 GRK6 - GPRK6 HGNC:4545|MIM:600869|Ensembl:ENSG00000198055|HPRD:02925|Vega:OTTHUMG00000163401 5 5q35 G protein-coupled receptor kinase 6 protein-coding GRK6 G protein-coupled receptor kinase 6 O - 20121230 -9606 2871 GRK6P1 - GPRK6L|GPRK6P|GRK6PS HGNC:4547 13 13q12.11 G protein-coupled receptor kinase 6 pseudogene 1 pseudo GRK6P1 G protein-coupled receptor kinase 6 pseudogene 1 O - 20121230 -9606 2872 MKNK2 - GPRK7|MNK2 HGNC:7111|MIM:605069|Ensembl:ENSG00000099875|HPRD:05459|Vega:OTTHUMG00000180020 19 19p13.3 MAP kinase interacting serine/threonine kinase 2 protein-coding MKNK2 MAP kinase interacting serine/threonine kinase 2 O G protein-coupled receptor kinase 7|MAP kinase signal-integrating kinase 2|MAP kinase-interacting serine/threonine-protein kinase 2|MAPK signal-integrating kinase 2 20121230 -9606 2873 GPS1 - COPS1|CSN1 HGNC:4549|MIM:601934|Ensembl:ENSG00000169727|HPRD:15991|Vega:OTTHUMG00000178484 17 17q25.3 G protein pathway suppressor 1 protein-coding GPS1 G protein pathway suppressor 1 O COP9 signalosome complex subunit 1|GPS-1|JAB1-containing signalosome subunit 1|SGN1|signalosome subunit 1 20121230 -9606 2874 GPS2 - AMF-1 HGNC:4550|MIM:601935|Ensembl:ENSG00000132522|HPRD:11878|Vega:OTTHUMG00000102198 17 17p13 G protein pathway suppressor 2 protein-coding GPS2 G protein pathway suppressor 2 O GPS-2 20121230 -9606 2875 GPT - AAT1|ALT1|GPT1 HGNC:4552|MIM:138200|Ensembl:ENSG00000167701|HPRD:00689|Vega:OTTHUMG00000165176 8 8q24.3 glutamic-pyruvate transaminase (alanine aminotransferase) protein-coding GPT glutamic-pyruvate transaminase (alanine aminotransferase) O GPT 1|alanine aminotransferase 1|glutamate pyruvate transaminase 1|glutamic--alanine transaminase 1|glutamic--pyruvic transaminase 1|glutamic-alanine transaminase 1 20121230 -9606 2876 GPX1 - GPXD|GSHPX1 HGNC:4553|MIM:138320|Ensembl:ENSG00000233276|HPRD:11749|Vega:OTTHUMG00000156837 3 3p21.3 glutathione peroxidase 1 protein-coding GPX1 glutathione peroxidase 1 O GPx-1|GSHPx-1|cellular glutathione peroxidase 20121230 -9606 2877 GPX2 - GI-GPx|GPRP|GPRP-2|GPx-2|GPx-GI|GSHPX-GI|GSHPx-2 HGNC:4554|MIM:138319|Ensembl:ENSG00000176153|HPRD:11818|Vega:OTTHUMG00000171677 14 14q24.1 glutathione peroxidase 2 (gastrointestinal) protein-coding GPX2 glutathione peroxidase 2 (gastrointestinal) O gastrointestinal glutathione peroxidase|glutathione peroxidase 2|glutathione peroxidase-related protein 2 20121230 -9606 2878 GPX3 - GPx-P|GSHPx-3|GSHPx-P HGNC:4555|MIM:138321|Ensembl:ENSG00000211445|HPRD:11750|Vega:OTTHUMG00000163693 5 5q23 glutathione peroxidase 3 (plasma) protein-coding GPX3 glutathione peroxidase 3 (plasma) O GPx-3|extracellular glutathione peroxidase|glutathione peroxidase 3|plasma glutathione peroxidase 20121230 -9606 2879 GPX4 - GPx-4|GSHPx-4|MCSP|PHGPx|snGPx|snPHGPx HGNC:4556|MIM:138322|Ensembl:ENSG00000167468|HPRD:11819|Vega:OTTHUMG00000181874 19 19p13.3 glutathione peroxidase 4 protein-coding GPX4 glutathione peroxidase 4 O phospholipid hydroperoxidase|phospholipid hydroperoxide glutathione peroxidase, mitochondrial|sperm nucleus glutathione peroxidase 20121230 -9606 2880 GPX5 - - HGNC:4557|MIM:603435|Ensembl:ENSG00000224586|HPRD:11941|Vega:OTTHUMG00000016307 6 6p22.1 glutathione peroxidase 5 (epididymal androgen-related protein) protein-coding GPX5 glutathione peroxidase 5 (epididymal androgen-related protein) O EGLP|GPx-5|GSHPx-5|epididymal androgen-related protein|epididymal secretory glutathione peroxidase|epididymis-specific glutathione peroxidase-like protein 20121230 -9606 2882 GPX7 UNQ469/PRO828 CL683|GPX6|GPx-7|GSHPx-7|NPGPx HGNC:4559|Ensembl:ENSG00000116157|HPRD:13606|Vega:OTTHUMG00000008322 1 1p32 glutathione peroxidase 7 protein-coding GPX7 glutathione peroxidase 7 O glutathione peroxidase 6|non-selenocysteine containing phospholipid hydroperoxide glutathione peroxidase 20121230 -9606 2884 GPX1P2 - GPXL1|GPXL2|GPXP2|GPXP2P HGNC:4561 21 21q21.3 glutathione peroxidase pseudogene 2 pseudo GPX1P2 glutathione peroxidase pseudogene 2 O - 20121230 -9606 2885 GRB2 - ASH|EGFRBP-GRB2|Grb3-3|MST084|MSTP084|NCKAP2 HGNC:4566|MIM:108355|Ensembl:ENSG00000177885|HPRD:00150|Vega:OTTHUMG00000134332 17 17q24-q25 growth factor receptor-bound protein 2 protein-coding GRB2 growth factor receptor-bound protein 2 O HT027|SH2/SH3 adapter GRB2|abundant SRC homology|epidermal growth factor receptor-binding protein GRB2|growth factor receptor-bound protein 3|protein Ash 20121230 -9606 2886 GRB7 - - HGNC:4567|MIM:601522|Ensembl:ENSG00000141738|HPRD:03311|Vega:OTTHUMG00000133253 17 17q12 growth factor receptor-bound protein 7 protein-coding GRB7 growth factor receptor-bound protein 7 O B47|GRB7 adapter protein|epidermal growth factor receptor GRB-7 20121230 -9606 2887 GRB10 - GRB-IR|Grb-10|IRBP|MEG1|RSS HGNC:4564|MIM:601523|Ensembl:ENSG00000106070|HPRD:03312|Vega:OTTHUMG00000150622 7 7p12.2 growth factor receptor-bound protein 10 protein-coding GRB10 growth factor receptor-bound protein 10 O GRB10 adapter protein|GRB10 adaptor protein|insulin receptor-binding protein Grb-IR|maternally expressed gene 1 20121230 -9606 2888 GRB14 - - HGNC:4565|MIM:601524|Ensembl:ENSG00000115290|HPRD:03313|Vega:OTTHUMG00000132135 2 2q22-q24 growth factor receptor-bound protein 14 protein-coding GRB14 growth factor receptor-bound protein 14 O GRB14 adapter protein 20121230 -9606 2889 RAPGEF1 RP11-40A7.1 C3G|GRF2 HGNC:4568|MIM:600303|Ensembl:ENSG00000107263|HPRD:02627|Vega:OTTHUMG00000020829 9 9q34.3 Rap guanine nucleotide exchange factor (GEF) 1 protein-coding RAPGEF1 Rap guanine nucleotide exchange factor (GEF) 1 O CRK SH3-binding GNRP|guanine nucleotide-releasing factor 2 (specific for crk proto-oncogene)|rap guanine nucleotide exchange factor 1 20121230 -9606 2890 GRIA1 - GLUH1|GLUR1|GLURA|GluA1|HBGR1 HGNC:4571|MIM:138248|Ensembl:ENSG00000155511|HPRD:00695|Vega:OTTHUMG00000130148 5 5q31.1 glutamate receptor, ionotropic, AMPA 1 protein-coding GRIA1 glutamate receptor, ionotropic, AMPA 1 O AMPA 1|AMPA-selective glutamate receptor 1|gluR-1|gluR-A|gluR-K1|glutamate receptor 1 20121230 -9606 2891 GRIA2 - GLUR2|GLURB|GluA2|GluR-K2|HBGR2 HGNC:4572|MIM:138247|Ensembl:ENSG00000120251|HPRD:04726|Vega:OTTHUMG00000133836 4 4q32.1 glutamate receptor, ionotropic, AMPA 2 protein-coding GRIA2 glutamate receptor, ionotropic, AMPA 2 O AMPA-selective glutamate receptor 2|gluR-2|gluR-B|glutamate receptor 2 20121230 -9606 2892 GRIA3 RP11-349N19.3 GLUR-C|GLUR-K3|GLUR3|GLURC|GluA3|MRX94 HGNC:4573|MIM:305915|Ensembl:ENSG00000125675|HPRD:02378|Vega:OTTHUMG00000022685 X Xq25 glutamate receptor, ionotropic, AMPA 3 protein-coding GRIA3 glutamate receptor, ionotropic, AMPA 3 O AMPA-selective glutamate receptor 3|dJ1171F9.1|gluR-3|glutamate receptor 3|glutamate receptor C|glutamate receptor subunit 3|glutamate receptor, ionotrophic, AMPA 3 20121230 -9606 2893 GRIA4 - GLUR4|GLUR4C|GLURD|GluA4 HGNC:4574|MIM:138246|Ensembl:ENSG00000152578|HPRD:00694|Vega:OTTHUMG00000166236 11 11q22 glutamate receptor, ionotropic, AMPA 4 protein-coding GRIA4 glutamate receptor, ionotropic, AMPA 4 O AMPA-selective glutamate receptor 4|gluR-4|gluR-D|glutamate receptor 4|glutamate receptor, ionotrophic, AMPA 4 20121230 -9606 2894 GRID1 RP11-93H12.1 GluD1 HGNC:4575|MIM:610659|Ensembl:ENSG00000182771|HPRD:17078|Vega:OTTHUMG00000018650 10 10q22 glutamate receptor, ionotropic, delta 1 protein-coding GRID1 glutamate receptor, ionotropic, delta 1 O gluR delta-1 subunit|glutamate receptor delta-1 subunit 20121230 -9606 2895 GRID2 - GluD2 HGNC:4576|MIM:602368|Ensembl:ENSG00000152208|HPRD:06781|Vega:OTTHUMG00000130975 4 4q22 glutamate receptor, ionotropic, delta 2 protein-coding GRID2 glutamate receptor, ionotropic, delta 2 O GluR-delta-2|gluR delta-2 subunit|glutamate receptor delta-2 subunit 20121230 -9606 2896 GRN - CLN11|GEP|GP88|PCDGF|PEPI|PGRN HGNC:4601|MIM:138945|Ensembl:ENSG00000030582|HPRD:00733|Vega:OTTHUMG00000181816 17 17q21.32 granulin protein-coding GRN granulin O PC cell-derived growth factor|acrogranin|granulin-epithelin|granulins|proepithelin|progranulin 20121230 -9606 2897 GRIK1 - EAA3|EEA3|GLR5|GLUR5|GluK1 HGNC:4579|MIM:138245|Ensembl:ENSG00000171189|HPRD:00693|Vega:OTTHUMG00000078879 21 21q22.11 glutamate receptor, ionotropic, kainate 1 protein-coding GRIK1 glutamate receptor, ionotropic, kainate 1 O excitatory amino acid receptor 3|gluR-5|glutamate receptor 5|glutamate receptor, ionotropic kainate 1 20121230 -9606 2898 GRIK2 - EAA4|GLR6|GLUK6|GLUR6|GluK2|MRT6 HGNC:4580|MIM:138244|Ensembl:ENSG00000164418|HPRD:00692|Vega:OTTHUMG00000016328 6 6q16.3 glutamate receptor, ionotropic, kainate 2 protein-coding GRIK2 glutamate receptor, ionotropic, kainate 2 O bA487F5.1|excitatory amino acid receptor 4|gluR-6|glutamate receptor 6|glutamate receptor form A|glutamate receptor form B|glutamate receptor form C|glutamate receptor form D|glutamate receptor form E|glutamate receptor, ionotropic kainate 2 20121230 -9606 2899 GRIK3 - EAA5|GLR7|GLUR7|GluK3|GluR7a HGNC:4581|MIM:138243|Ensembl:ENSG00000163873|HPRD:00691|Vega:OTTHUMG00000004189 1 1p34.3 glutamate receptor, ionotropic, kainate 3 protein-coding GRIK3 glutamate receptor, ionotropic, kainate 3 O dJ1090M5.1 (glutamate receptor, ionotropic, kainate 3 (GLUR7))|excitatory amino acid receptor 5|gluR-7|glutamate receptor 7|glutamate receptor, ionotropic kainate 3 20121230 -9606 2900 GRIK4 - EAA1|GRIK|GluK4|KA1 HGNC:4582|MIM:600282|Ensembl:ENSG00000149403|HPRD:02613|Vega:OTTHUMG00000048255 11 11q22.3 glutamate receptor, ionotropic, kainate 4 protein-coding GRIK4 glutamate receptor, ionotropic, kainate 4 O excitatory amino acid receptor 1|glutamate receptor KA-1|glutamate receptor KA1|glutamate receptor, ionotropic kainate 4 20121230 -9606 2901 GRIK5 - EAA2|GRIK2|GluK5|KA2 HGNC:4583|MIM:600283|Ensembl:ENSG00000105737|HPRD:02614 19 19q13.2 glutamate receptor, ionotropic, kainate 5 protein-coding GRIK5 glutamate receptor, ionotropic, kainate 5 O excitatory amino acid receptor 2|glutamate receptor KA-2|glutamate receptor KA2|glutamate receptor, ionotropic kainate 5 20121230 -9606 2902 GRIN1 RP11-350O14.1 GluN1|MRD8|NMDA1|NMDAR1|NR1 HGNC:4584|MIM:138249|Ensembl:ENSG00000176884|HPRD:15926|Vega:OTTHUMG00000020976 9 9q34.3 glutamate receptor, ionotropic, N-methyl D-aspartate 1 protein-coding GRIN1 glutamate receptor, ionotropic, N-methyl D-aspartate 1 O N-methyl-D-aspartate receptor channel, subunit zeta-1|N-methyl-D-aspartate receptor subunit NR1|NMD-R1|glutamate [NMDA] receptor subunit zeta 1|glutamate [NMDA] receptor subunit zeta-1 20121230 -9606 2903 GRIN2A - EPND|GluN2A|NMDAR2A|NR2A HGNC:4585|MIM:138253|Ensembl:ENSG00000183454|HPRD:00698|Vega:OTTHUMG00000129721 16 16p13.2 glutamate receptor, ionotropic, N-methyl D-aspartate 2A protein-coding GRIN2A glutamate receptor, ionotropic, N-methyl D-aspartate 2A O N-methyl D-aspartate receptor subtype 2A|N-methyl-D-aspartate receptor channel, subunit epsilon-1|N-methyl-D-aspartate receptor subunit 2A|NMDA receptor subtype 2A|glutamate [NMDA] receptor subunit epsilon-1|hNR2A 20121230 -9606 2904 GRIN2B - GluN2B|MRD6|NMDAR2B|NR2B|hNR3 HGNC:4586|MIM:138252|Ensembl:ENSG00000150086|HPRD:00697|Vega:OTTHUMG00000137373 12 12p12 glutamate receptor, ionotropic, N-methyl D-aspartate 2B protein-coding GRIN2B glutamate receptor, ionotropic, N-methyl D-aspartate 2B O N-methyl D-aspartate receptor subtype 2B|N-methyl-D-aspartate receptor subunit 3|NR3|glutamate [NMDA] receptor subunit epsilon-2|glutamate receptor subunit epsilon-2 20121230 -9606 2905 GRIN2C - GluN2C|NMDAR2C|NR2C HGNC:4587|MIM:138254|Ensembl:ENSG00000161509|HPRD:00699|Vega:OTTHUMG00000044524 17 17q25 glutamate receptor, ionotropic, N-methyl D-aspartate 2C protein-coding GRIN2C glutamate receptor, ionotropic, N-methyl D-aspartate 2C O N-methyl D-aspartate receptor subtype 2C|N-methyl-D-aspartate receptor subunit 2C|glutamate [NMDA] receptor subunit epsilon-3 20121230 -9606 2906 GRIN2D - EB11|GluN2D|NMDAR2D|NR2D HGNC:4588|MIM:602717|Ensembl:ENSG00000105464|HPRD:04095 19 19q13.33 glutamate receptor, ionotropic, N-methyl D-aspartate 2D protein-coding GRIN2D glutamate receptor, ionotropic, N-methyl D-aspartate 2D O N-methyl D-aspartate receptor subtype 2D|N-methyl-d-aspartate receptor subunit 2D|estrogen receptor binding CpG island|glutamate [NMDA] receptor subunit epsilon-4 20121230 -9606 2907 GRINA - HNRGW|LFG1|NMDARA1|TMBIM3 HGNC:4589|MIM:138251|Ensembl:ENSG00000178719|HPRD:15927|Vega:OTTHUMG00000165433 8 8q24.3 glutamate receptor, ionotropic, N-methyl D-aspartate-associated protein 1 (glutamate binding) protein-coding GRINA glutamate receptor, ionotropic, N-methyl D-aspartate-associated protein 1 (glutamate binding) O NMDA receptor glutamate-binding subunit|glutamate [NMDA] receptor-associated protein 1|glutamate receptor, NMDA subtype, glutamate-binding subunit|protein lifeguard 1|putative MAPK-activating protein PM02|transmembrane BAX inhibitor motif containing 3|transmembrane BAX inhibitor motif-containing protein 3 20121230 -9606 2908 NR3C1 - GCCR|GCR|GR|GRL HGNC:7978|MIM:138040|Ensembl:ENSG00000113580|HPRD:00679|Vega:OTTHUMG00000129677 5 5q31.3 nuclear receptor subfamily 3, group C, member 1 (glucocorticoid receptor) protein-coding NR3C1 nuclear receptor subfamily 3, group C, member 1 (glucocorticoid receptor) O glucocorticoid nuclear receptor variant 1|glucocorticoid receptor 20121230 -9606 2909 ARHGAP35 - GRF-1|GRLF1|P190-A|P190A|p190ARhoGAP|p190RhoGAP HGNC:4591|MIM:605277|Ensembl:ENSG00000160007|HPRD:05592 19 19q13.3 Rho GTPase activating protein 35 protein-coding ARHGAP35 Rho GTPase activating protein 35 O glucocorticoid receptor DNA binding factor 1|glucocorticoid receptor DNA-binding factor 1|glucocorticoid receptor repression factor 1|rho GAP p190A|rho GTPase-activating protein 35 20121230 -9606 2910 NR3C1P1 - GCR2|GCRL|GRLL1|NR3C1P HGNC:4592|MIM:138060 16 16q24.2 nuclear receptor subfamily 3, group C, member 1 pseudogene 1 pseudo NR3C1P1 nuclear receptor subfamily 3, group C, member 1 pseudogene 1 O - 20121230 -9606 2911 GRM1 - GPRC1A|GRM1A|MGLUR1|MGLUR1A|SCAR13|mGlu1 HGNC:4593|MIM:604473|Ensembl:ENSG00000152822|HPRD:05129|Vega:OTTHUMG00000015752 6 6q24 glutamate receptor, metabotropic 1 protein-coding GRM1 glutamate receptor, metabotropic 1 O metabotropic glutamate receptor 1 20121230 -9606 2912 GRM2 - GLUR2|GPRC1B|MGLUR2|mGlu2 HGNC:4594|MIM:604099|Ensembl:ENSG00000164082|HPRD:04977|Vega:OTTHUMG00000156902 3 3p21.2 glutamate receptor, metabotropic 2 protein-coding GRM2 glutamate receptor, metabotropic 2 O glutamate metabotropic receptor 2|glutamate receptor homolog|metabotropic glutamate receptor 2 20121230 -9606 2913 GRM3 - GLUR3|GPRC1C|MGLUR3|mGlu3 HGNC:4595|MIM:601115|Ensembl:ENSG00000198822|HPRD:03070|Vega:OTTHUMG00000022884 7 7q21.1-q21.2 glutamate receptor, metabotropic 3 protein-coding GRM3 glutamate receptor, metabotropic 3 O glutamate metabotropic receptor 3|metabotropic glutamate receptor 3 20121230 -9606 2914 GRM4 - GPRC1D|MGLUR4|mGlu4 HGNC:4596|MIM:604100|Ensembl:ENSG00000124493|HPRD:04978|Vega:OTTHUMG00000014538 6 6p21.3 glutamate receptor, metabotropic 4 protein-coding GRM4 glutamate receptor, metabotropic 4 O metabotropic glutamate receptor 4 20121230 -9606 2915 GRM5 - GPRC1E|MGLUR5|mGlu5 HGNC:4597|MIM:604102|Ensembl:ENSG00000168959|Vega:OTTHUMG00000134306 11 11q14.3 glutamate receptor, metabotropic 5 protein-coding GRM5 glutamate receptor, metabotropic 5 O metabotropic glutamate receptor 5|metabotropic glutamate receptor 5 variant F|metabotropic glutamate receptor 5 variant G|metabotropic glutamate receptor 5 variant H 20121230 -9606 2916 GRM6 - CSNB1B|GPRC1F|MGLUR6|mGlu6 HGNC:4598|MIM:604096|Ensembl:ENSG00000113262|HPRD:04975|Vega:OTTHUMG00000130889 5 5q35 glutamate receptor, metabotropic 6 protein-coding GRM6 glutamate receptor, metabotropic 6 O metabotropic glutamate receptor 6 20121230 -9606 2917 GRM7 - GLUR7|GPRC1G|MGLU7|MGLUR7 HGNC:4599|MIM:604101|Ensembl:ENSG00000196277|HPRD:04979|Vega:OTTHUMG00000125549 3 3p26.1-p25.1 glutamate receptor, metabotropic 7 protein-coding GRM7 glutamate receptor, metabotropic 7 O metabotropic glutamate receptor 7 20121230 -9606 2918 GRM8 - GLUR8|GPRC1H|MGLUR8|mGlu8 HGNC:4600|MIM:601116|Ensembl:ENSG00000179603|HPRD:03071|Vega:OTTHUMG00000022888 7 7q31.3-q32.1 glutamate receptor, metabotropic 8 protein-coding GRM8 glutamate receptor, metabotropic 8 O metabotropic glutamate receptor 8 20121230 -9606 2919 CXCL1 - FSP|GRO1|GROa|MGSA|MGSA-a|NAP-3|SCYB1 HGNC:4602|MIM:155730|Ensembl:ENSG00000163739|HPRD:01119|Vega:OTTHUMG00000160866 4 4q21 chemokine (C-X-C motif) ligand 1 (melanoma growth stimulating activity, alpha) protein-coding CXCL1 chemokine (C-X-C motif) ligand 1 (melanoma growth stimulating activity, alpha) O C-X-C motif chemokine 1|GRO-alpha(1-73)|GRO1 oncogene (melanoma growth stimulating activity, alpha)|GRO1 oncogene (melanoma growth-stimulating activity)|MGSA alpha|fibroblast secretory protein|growth-regulated alpha protein|melanoma growth stimulatory activity alpha|neutrophil-activating protein 3 20121230 -9606 2920 CXCL2 - CINC-2a|GRO2|GROb|MGSA-b|MIP-2a|MIP2|MIP2A|SCYB2 HGNC:4603|MIM:139110|Ensembl:ENSG00000081041|HPRD:00741|Vega:OTTHUMG00000160865 4 4q21 chemokine (C-X-C motif) ligand 2 protein-coding CXCL2 chemokine (C-X-C motif) ligand 2 O C-X-C motif chemokine 2|GRO2 oncogene|MGSA beta|MIP2-alpha|gro-beta|growth-regulated protein beta|macrophage inflammatory protein 2-alpha|melanoma growth stimulatory activity beta 20121230 -9606 2921 CXCL3 - CINC-2b|GRO3|GROg|MIP-2b|MIP2B|SCYB3 HGNC:4604|MIM:139111|Ensembl:ENSG00000163734|HPRD:00742|Vega:OTTHUMG00000160861 4 4q21 chemokine (C-X-C motif) ligand 3 protein-coding CXCL3 chemokine (C-X-C motif) ligand 3 O C-X-C motif chemokine 3|GRO-gamma|GRO-gamma(1-73)|GRO3 oncogene|MGSA gamma|MIP2-beta|growth-regulated protein gamma|macrophage inflammatory protein 2-beta|melanoma growth stimulatory activity gamma 20121230 -9606 2922 GRP - BN|GRP-10|preproGRP|proGRP HGNC:4605|MIM:137260|Ensembl:ENSG00000134443|HPRD:08845|Vega:OTTHUMG00000132760 18 18q21.1-q21.32 gastrin-releasing peptide protein-coding GRP gastrin-releasing peptide O bombesin|neuromedin C|pre-progastrin releasing peptide 20121230 -9606 2923 PDIA3 - ER60|ERp57|ERp60|ERp61|GRP57|GRP58|HsT17083|P58|PI-PLC HGNC:4606|MIM:602046|Ensembl:ENSG00000167004|HPRD:03625|Vega:OTTHUMG00000044444 15 15q15 protein disulfide isomerase family A, member 3 protein-coding PDIA3 protein disulfide isomerase family A, member 3 O 58 kDa glucose-regulated protein|58 kDa microsomal protein|ER protein 57|ER protein 60|disulfide isomerase ER-60|endoplasmic reticulum P58|endoplasmic reticulum resident protein 57|endoplasmic reticulum resident protein 60|glucose regulated protein, 58kDa|phospholipase C-alpha|protein disulfide isomerase-associated 3|protein disulfide-isomerase A3 20121230 -9606 2925 GRPR - - HGNC:4609|MIM:305670|Ensembl:ENSG00000126010|HPRD:02376|Vega:OTTHUMG00000021189 X Xp22.2 gastrin-releasing peptide receptor protein-coding GRPR gastrin-releasing peptide receptor O GRP-R|GRP-preferring bombesin receptor 20121230 -9606 2926 GRSF1 - - HGNC:4610|MIM:604851|Ensembl:ENSG00000132463|HPRD:07276|Vega:OTTHUMG00000160846 4 4q13 G-rich RNA sequence binding factor 1 protein-coding GRSF1 G-rich RNA sequence binding factor 1 O G-rich sequence factor 1|GRSF-1 20121230 -9606 2928 GSC2 - GSCL HGNC:4613|MIM:601845|Ensembl:ENSG00000063515|HPRD:03506|Vega:OTTHUMG00000150122 22 22q11.21 goosecoid homeobox 2 protein-coding GSC2 goosecoid homeobox 2 O GSC-2|GSC-L|homeobox protein goosecoid-2 20121230 -9606 2931 GSK3A - - HGNC:4616|MIM:606784|Ensembl:ENSG00000105723|HPRD:06002|Vega:OTTHUMG00000150722 19 19q13.2 glycogen synthase kinase 3 alpha protein-coding GSK3A glycogen synthase kinase 3 alpha O GSK-3 alpha|glycogen synthase kinase-3 alpha|serine/threonine-protein kinase GSK3A 20121230 -9606 2932 GSK3B - - HGNC:4617|MIM:605004|Ensembl:ENSG00000082701|HPRD:05418|Vega:OTTHUMG00000133765 3 3q13.3 glycogen synthase kinase 3 beta protein-coding GSK3B glycogen synthase kinase 3 beta O GSK-3 beta|GSK3beta isoform|glycogen synthase kinase-3 beta|serine/threonine-protein kinase GSK3B 20121230 -9606 2933 GSM1 - GSP HGNC:4619|MIM:190100 9 9q13-q21 geniospasm 1 unknown GSM1 geniospasm 1 O - 20120622 -9606 2934 GSN RP11-477J21.1 ADF|AGEL HGNC:4620|MIM:137350|Ensembl:ENSG00000148180|HPRD:00674|Vega:OTTHUMG00000020584 9 9q33 gelsolin protein-coding GSN gelsolin O actin-depolymerizing factor|brevin 20121230 -9606 2935 GSPT1 - 551G9.2|ETF3A|GST1|eRF3a HGNC:4621|MIM:139259|Ensembl:ENSG00000103342|HPRD:00753|Vega:OTTHUMG00000172956 16 16p13.1 G1 to S phase transition 1 protein-coding GSPT1 G1 to S phase transition 1 O G1 to S phase transition protein 1 homolog|eukaryotic peptide chain release factor GTP-binding subunit ERF3A|eukaryotic peptide chain release factor subunit 3a 20121230 -9606 2936 GSR - - HGNC:4623|MIM:138300|Ensembl:ENSG00000104687|HPRD:00704|Vega:OTTHUMG00000163946 8 8p21.1 glutathione reductase protein-coding GSR glutathione reductase O GR|GRase|glutathione reductase, mitochondrial 20121230 -9606 2937 GSS - GSHS HGNC:4624|MIM:601002|Ensembl:ENSG00000100983|HPRD:03000|Vega:OTTHUMG00000032315 20 20q11.2 glutathione synthetase protein-coding GSS glutathione synthetase O GSH synthetase|GSH-S|glutathione synthase 20121230 -9606 2938 GSTA1 RP11-392A23.1 GST2|GSTA1-1|GTH1 HGNC:4626|MIM:138359|Ensembl:ENSG00000243955|HPRD:00708|Vega:OTTHUMG00000014861 6 6p12.1 glutathione S-transferase alpha 1 protein-coding GSTA1 glutathione S-transferase alpha 1 O GST HA subunit 1|GST class-alpha member 1|GST, class alpha, 1|GST-epsilon|S-(hydroxyalkyl)glutathione lyase A1|glutathione S-alkyltransferase A1|glutathione S-aryltransferase A1|glutathione S-transferase 2|glutathione S-transferase A1|glutathione S-transferase Ha subunit 1 20121230 -9606 2939 GSTA2 - GST2|GSTA2-2|GTA2|GTH2 HGNC:4627|MIM:138360|Ensembl:ENSG00000244067|HPRD:00709|Vega:OTTHUMG00000016263 6 6p12.1 glutathione S-transferase alpha 2 protein-coding GSTA2 glutathione S-transferase alpha 2 O GST HA subunit 2|GST class-alpha member 2|GST-gamma|S-(hydroxyalkyl)glutathione lyase A2|glutathione S-alkyltransferase A2|glutathione S-aralkyltransferase A2|glutathione S-aryltransferase A2|glutathione S-transferase A2|liver GST2 20121230 -9606 2940 GSTA3 RP1-214M20.2 GSTA3-3|GTA3 HGNC:4628|MIM:605449|Ensembl:ENSG00000174156|HPRD:07290|Vega:OTTHUMG00000014865 6 6p12.1 glutathione S-transferase alpha 3 protein-coding GSTA3 glutathione S-transferase alpha 3 O GST class-alpha member 3|S-(hydroxyalkyl)glutathione lyase A3|glutathione S-alkyltransferase A3|glutathione S-aralkyltransferase A3|glutathione S-aryltransferase A3|glutathione S-transferase A3|glutathione S-transferase A3-3 20121230 -9606 2941 GSTA4 RP1-214M20.1 GSTA4-4|GTA4 HGNC:4629|MIM:605450|Ensembl:ENSG00000170899|HPRD:06899|Vega:OTTHUMG00000014868 6 6p12.1 glutathione S-transferase alpha 4 protein-coding GSTA4 glutathione S-transferase alpha 4 O GST class-alpha member 4|S-(hydroxyalkyl)glutathione lyase A4|glutathione S-alkyltransferase A4|glutathione S-aralkyltransferase A4|glutathione S-aryltransferase A4|glutathione S-transferase A4|glutathione S-transferase A4-4|glutathione transferase A4-4 20121230 -9606 2942 GSTA6P - GSTAP1 HGNC:4630 6 6p12.2 glutathione S-transferase alpha 6, pseudogene pseudo GSTA6P glutathione S-transferase alpha 6, pseudogene O - 20121230 -9606 2944 GSTM1 - GST1|GSTM1-1|GSTM1a-1a|GSTM1b-1b|GTH4|GTM1|H-B|MU|MU-1 HGNC:4632|MIM:138350|Ensembl:ENSG00000134184|HPRD:00707|Vega:OTTHUMG00000011635 1 1p13.3 glutathione S-transferase mu 1 protein-coding GSTM1 glutathione S-transferase mu 1 O GST HB subunit 4|GST class-mu 1|HB subunit 4|S-(hydroxyalkyl)glutathione lyase|glutathione S-alkyltransferase|glutathione S-aralkyltransferase|glutathione S-aryltransferase|glutathione S-transferase M1|glutathione S-transferase Mu 1 20121230 -9606 2945 GSTM5P1 - GST1L|GSTM1L HGNC:4633 3 3p25.2 glutathione S-transferase mu 5 pseudogene 1 pseudo GSTM5P1 glutathione S-transferase mu 5 pseudogene 1 O - 20121230 -9606 2946 GSTM2 - GST4|GSTM|GSTM2-2|GTHMUS HGNC:4634|MIM:138380|Ensembl:ENSG00000213366|HPRD:00710|Vega:OTTHUMG00000011638 1 1p13.3 glutathione S-transferase mu 2 (muscle) protein-coding GSTM2 glutathione S-transferase mu 2 (muscle) O GST class-mu 2|GST, muscle|S-(hydroxyalkyl)glutathione lyase M2|glutathione S-alkyltransferase M2|glutathione S-aralkyltransferase M2|glutathione S-aryltransferase M2|glutathione S-transferase 4|glutathione S-transferase M1|glutathione S-transferase M2 (muscle)|glutathione S-transferase Mu 2 20121230 -9606 2947 GSTM3 RP4-735C1.2 GST5|GSTB|GSTM3-3|GTM3 HGNC:4635|MIM:138390|Ensembl:ENSG00000134202|HPRD:00712|Vega:OTTHUMG00000011640 1 1p13.3 glutathione S-transferase mu 3 (brain) protein-coding GSTM3 glutathione S-transferase mu 3 (brain) O GST class-mu 3|S-(hydroxyalkyl)glutathione lyase M3|brain GST|brain type mu-glutathione S-transferase|glutathione S-alkyltransferase M3|glutathione S-aralkyltransferase M3|glutathione S-aryltransferase M3|glutathione S-transferase M3 (brain)|glutathione S-transferase Mu 3|glutathione S-transferase, Mu-3|hGSTM3-3 20121230 -9606 2948 GSTM4 - GSTM4-4|GTM4 HGNC:4636|MIM:138333|Ensembl:ENSG00000168765|HPRD:00706|Vega:OTTHUMG00000011642 1 1p13.3 glutathione S-transferase mu 4 protein-coding GSTM4 glutathione S-transferase mu 4 O GST class-mu 4|GST-Mu2|GTS-Mu2|S-(hydroxyalkyl)glutathione lyase M4|glutathione S-alkyltransferase M4|glutathione S-aralkyltransferase M4|glutathione S-aryltransferase M4|glutathione S-transferase M4|glutathione S-transferase Mu 4 20121230 -9606 2949 GSTM5 RP4-735C1.1 GSTM5-5|GTM5 HGNC:4637|MIM:138385|Ensembl:ENSG00000134201|HPRD:00711|Vega:OTTHUMG00000011644 1 1p13.3 glutathione S-transferase mu 5 protein-coding GSTM5 glutathione S-transferase mu 5 O GST class-mu 5|S-(hydroxyalkyl)glutathione lyase M5|glutathione S-alkyltransferase M5|glutathione S-aralkyltransferase M5|glutathione S-aryltransferase M5|glutathione S-transferase M5|glutathione S-transferase Mu 5 20121230 -9606 2950 GSTP1 - DFN7|FAEES3|GST3|GSTP|PI HGNC:4638|MIM:134660|Ensembl:ENSG00000084207|HPRD:00614|Vega:OTTHUMG00000137430 11 11q13 glutathione S-transferase pi 1 protein-coding GSTP1 glutathione S-transferase pi 1 O GST class-pi|GSTP1-1|deafness, X-linked 7|fatty acid ethyl ester synthase III|glutathione S-transferase P 20121230 -9606 2951 GSTP1P1 - GST3L|GSTP1P|GSTPL|GSTPP HGNC:4640 12 12q13-q14 glutathione S-transferase pi 1 pseudogene 1 pseudo GSTP1P1 glutathione S-transferase pi 1 pseudogene 1 O - 20121230 -9606 2952 GSTT1 - - HGNC:4641|MIM:600436|Ensembl:ENSG00000184674|HPRD:02700|Vega:OTTHUMG00000150816 22 22q11.23 glutathione S-transferase theta 1 protein-coding GSTT1 glutathione S-transferase theta 1 O GST class-theta-1|glutathione S-transferase theta-1|glutathione transferase T1-1 20121230 -9606 2953 GSTT2 hCG_41095 GSTT2B HGNC:4642|MIM:600437|Ensembl:ENSG00000099984|HPRD:02701|Vega:OTTHUMG00000150786 22 22q11.23 glutathione S-transferase theta 2 protein-coding GSTT2 glutathione S-transferase theta 2 O GST class-theta-2|Glutathione S-transferase theta-2B|glutathione S-transferase theta-2 20121230 -9606 2954 GSTZ1 - GSTZ1-1|MAAI|MAI HGNC:4643|MIM:603758|Ensembl:ENSG00000100577|HPRD:04785|Vega:OTTHUMG00000171551 14 14q24.3 glutathione S-transferase zeta 1 protein-coding GSTZ1 glutathione S-transferase zeta 1 O S-(hydroxyalkyl)glutathione lyase|glutathione S-alkyltransferase|glutathione S-aralkyltransferase|glutathione S-aryltransferase|glutathione transferase zeta 1|maleylacetoacetate isomerase|maleylacetone isomerase 20121230 -9606 2956 MSH6 - GTBP|HNPCC5|HSAP HGNC:7329|MIM:600678|Ensembl:ENSG00000116062|HPRD:07202|Vega:OTTHUMG00000129129 2 2p16 mutS homolog 6 (E. coli) protein-coding MSH6 mutS homolog 6 (E. coli) O DNA mismatch repair protein Msh6|G/T mismatch-binding protein|GTMBP|hMSH6|mutS-alpha 160 kDa subunit|p160|sperm-associated protein 20121230 -9606 2957 GTF2A1 - TF2A1|TFIIA|TFIIA-42|TFIIAL HGNC:4646|MIM:600520|Ensembl:ENSG00000165417|HPRD:02748|Vega:OTTHUMG00000171414 14 14q31.1 general transcription factor IIA, 1, 19/37kDa protein-coding GTF2A1 general transcription factor IIA, 1, 19/37kDa O TFIIA alpha, p55|general transcription factor IIA subunit 1|glucose regulated protein, 58kD pseudogene|transcription initiation factor IIA subunit 1|transcription initiation factor TFIIA 42 kDa subunit 20121230 -9606 2958 GTF2A2 - HsT18745|TF2A2|TFIIA HGNC:4647|MIM:600519|Ensembl:ENSG00000140307|HPRD:02747|Vega:OTTHUMG00000132725 15 15q22.2 general transcription factor IIA, 2, 12kDa protein-coding GTF2A2 general transcription factor IIA, 2, 12kDa O TFIIA p12 subunit|TFIIA-12|TFIIA-gamma|TFIIAS|general transcription factor IIA subunit 2|transcription initiation factor IIA gamma chain|transcription initiation factor IIA subunit 2 20121230 -9606 2959 GTF2B RP11-82K18.1 TF2B|TFIIB HGNC:4648|MIM:189963|Ensembl:ENSG00000137947|HPRD:08928|Vega:OTTHUMG00000010611 1 1p22-p21 general transcription factor IIB protein-coding GTF2B general transcription factor IIB O RNA polymerase II transcription factor IIB|S300-II|general transcription factor TFIIB|transcription initiation factor IIB 20121230 -9606 2960 GTF2E1 - FE|TF2E1|TFIIE-A HGNC:4650|MIM:189962|Ensembl:ENSG00000153767|HPRD:01799|Vega:OTTHUMG00000159667 3 3q21-q24 general transcription factor IIE, polypeptide 1, alpha 56kDa protein-coding GTF2E1 general transcription factor IIE, polypeptide 1, alpha 56kDa O TFIIE-alpha|general transcription factor IIE 56 kDa subunit|general transcription factor IIE subunit 1|transcription initiation factor IIE subunit alpha 20121230 -9606 2961 GTF2E2 - FE|TF2E2|TFIIE-B HGNC:4651|MIM:189964|Ensembl:ENSG00000197265|HPRD:01800|Vega:OTTHUMG00000163934 8 8p12 general transcription factor IIE, polypeptide 2, beta 34kDa protein-coding GTF2E2 general transcription factor IIE, polypeptide 2, beta 34kDa O TFIIE-beta|general transcription factor IIE subunit 2|transcription initiation factor IIE subunit beta 20121230 -9606 2962 GTF2F1 - BTF4|RAP74|TF2F1|TFIIF HGNC:4652|MIM:189968|Ensembl:ENSG00000125651|HPRD:01803 19 19p13.3 general transcription factor IIF, polypeptide 1, 74kDa protein-coding GTF2F1 general transcription factor IIF, polypeptide 1, 74kDa O TFIIF-alpha|general transcription factor IIF 74 kDa subunit|general transcription factor IIF subunit 1|transcription initiation factor IIF subunit alpha|transcription initiation factor RAP74 20121230 -9606 2963 GTF2F2 - BTF4|RAP30|TF2F2|TFIIF HGNC:4653|MIM:189969|Ensembl:ENSG00000188342|HPRD:01804|Vega:OTTHUMG00000016849 13 13q14 general transcription factor IIF, polypeptide 2, 30kDa protein-coding GTF2F2 general transcription factor IIF, polypeptide 2, 30kDa O ATP-dependent helicase GTF2F2|TFIIF-beta|general transcription factor IIF 30 kDa subunit|general transcription factor IIF subunit 2|transcription initiation factor IIF subunit beta|transcription initiation factor RAP30 20121230 -9606 2964 GTF2F2P1 - GTF2F2L|TFIIF HGNC:4654 4 4q31.22 general transcription factor IIF, polypeptide 2 pseudogene 1 pseudo GTF2F2P1 general transcription factor IIF, polypeptide 2 pseudogene 1 O - 20121230 -9606 2965 GTF2H1 - BTF2|P62|TFB1|TFIIH HGNC:4655|MIM:189972|Ensembl:ENSG00000110768|HPRD:01807|Vega:OTTHUMG00000167690 11 11p15.1-p14 general transcription factor IIH, polypeptide 1, 62kDa protein-coding GTF2H1 general transcription factor IIH, polypeptide 1, 62kDa O BTF2 p62|TFIIH basal transcription factor complex p62 subunit|basic transcription factor 2 62 kDa subunit|general transcription factor IIH polypeptide 1|general transcription factor IIH subunit 1 20121230 -9606 2966 GTF2H2 - BTF2|BTF2P44|T-BTF2P44|TFIIH|p44 HGNC:4656|MIM:601748|Ensembl:ENSG00000145736|HPRD:03450|Vega:OTTHUMG00000164542 5 5q13.2 general transcription factor IIH, polypeptide 2, 44kDa protein-coding GTF2H2 general transcription factor IIH, polypeptide 2, 44kDa O BTF2 p44|TFIIH basal transcription factor complex p44 subunit|basic transcription factor 2 44 kDa subunit|general transcription factor IIH polypeptide 2|general transcription factor IIH subunit 2|general transcription factor IIH, polypeptide 2, 44kD subunit 20121230 -9606 2967 GTF2H3 - BTF2|P34|TFB4|TFIIH HGNC:4657|MIM:601750|Ensembl:ENSG00000111358|HPRD:07531|Vega:OTTHUMG00000168697 12 12q24.31 general transcription factor IIH, polypeptide 3, 34kDa protein-coding GTF2H3 general transcription factor IIH, polypeptide 3, 34kDa O TFIIH basal transcription factor complex p34 subunit|basic transcription factor 2 34 kDa subunit|general transcription factor IIH subunit 3 20121230 -9606 2968 GTF2H4 DADB-160J14.4 P52|TFB2|TFIIH HGNC:4658|MIM:601760|Ensembl:ENSG00000213780|HPRD:03456|Vega:OTTHUMG00000031043 6 6p21.3 general transcription factor IIH, polypeptide 4, 52kDa protein-coding GTF2H4 general transcription factor IIH, polypeptide 4, 52kDa O BTF2 p52|TFIIH basal transcription factor complex p52 subunit|basic transcription factor 2 52 kDa subunit|general transcription factor IIH polypeptide 4|general transcription factor IIH subunit 4 20121230 -9606 2969 GTF2I - BAP135|BTKAP1|DIWS|GTFII-I|IB291|SPIN|TFII-I|WBS|WBSCR6 HGNC:4659|MIM:601679|Ensembl:ENSG00000077809|HPRD:03399|Vega:OTTHUMG00000156237 7 7q11.23 general transcription factor IIi protein-coding GTF2I general transcription factor IIi O BTK-associated protein 135|BTK-associated protein, 135kD|Bruton tyrosine kinase-associated protein 135|SRF-Phox1-interacting protein|Williams-Beuren syndrome chromosome region 6|general transcription factor II-I|williams-Beuren syndrome chromosomal region 6 protein 20121230 -9606 2970 GTF2IP1 - WBSCR7 HGNC:4660 7 7q11.23 general transcription factor IIi, pseudogene 1 pseudo GTF2IP1 general transcription factor IIi, pseudogene 1 O - 20121230 -9606 2971 GTF3A RP11-125I23.2 AP2|TFIIIA HGNC:4662|MIM:600860|Ensembl:ENSG00000122034|HPRD:02916|Vega:OTTHUMG00000016632 13 13q12.3-q13.1 general transcription factor IIIA protein-coding GTF3A general transcription factor IIIA O transcription factor IIIA 20121230 -9606 2972 BRF1 - BRF|BRF-1|GTF3B|TAF3B2|TAF3C|TAFIII90|TF3B90|TFIIIB90|hBRF HGNC:11551|MIM:604902|Ensembl:ENSG00000185024|HPRD:05361|Vega:OTTHUMG00000029884 14 14q BRF1 homolog, subunit of RNA polymerase III transcription initiation factor IIIB (S. cerevisiae) protein-coding BRF1 BRF1 homolog, subunit of RNA polymerase III transcription initiation factor IIIB (S. cerevisiae) O B - related factor 1|TATA box binding protein (TBP)-associated factor 3C|TATA box binding protein (TBP)-associated factor, RNA polymerase III, GTF3B subunit 2|TBP - associated factor, RNA polymerase III, 90kD|general transcription factor IIIB, 90kD subunit|transcription factor IIIB 90 kDa subunit 20121230 -9606 2973 GTS - - HGNC:4671|MIM:137580 11 11q23 Gilles de la Tourette syndrome unknown GTS Gilles de la Tourette syndrome O - 20120622 -9606 2974 GUCY1B2 - GC-SB2 HGNC:4686|MIM:603695|HPRD:07542 13 13q14.3 guanylate cyclase 1, soluble, beta 2 (pseudogene) pseudo GUCY1B2 guanylate cyclase 1, soluble, beta 2 (pseudogene) O - 20121230 -9606 2975 GTF3C1 - TFIIIC|TFIIIC220|TFIIICalpha HGNC:4664|MIM:603246|Ensembl:ENSG00000077235|HPRD:07540|Vega:OTTHUMG00000176805 16 16p12 general transcription factor IIIC, polypeptide 1, alpha 220kDa protein-coding GTF3C1 general transcription factor IIIC, polypeptide 1, alpha 220kDa O TF3C-alpha|TFIIIC 220 kDa subunit|TFIIIC box B-binding subunit|general transcription factor 3C polypeptide 1|general transcription factor IIIC, polypeptide 1 (alpha subunit)|transcription factor IIIC 220 kDa subunit|transcription factor IIIC subunit alpha 20121230 -9606 2976 GTF3C2 - TFIIIC-BETA|TFIIIC110 HGNC:4665|MIM:604883|Ensembl:ENSG00000115207|HPRD:05347|Vega:OTTHUMG00000097785 2 2p23.3 general transcription factor IIIC, polypeptide 2, beta 110kDa protein-coding GTF3C2 general transcription factor IIIC, polypeptide 2, beta 110kDa O TF3C-beta|TFIIIC 110 kDa subunit|general transcription factor 3C polypeptide 2|transcription factor IIIC 110 kDa subunit|transcription factor IIIC subunit beta 20121230 -9606 2977 GUCY1A2 - GC-SA2|GUC1A2 HGNC:4684|MIM:601244|Ensembl:ENSG00000152402|HPRD:03146|Vega:OTTHUMG00000166296 11 11q21-q22 guanylate cyclase 1, soluble, alpha 2 protein-coding GUCY1A2 guanylate cyclase 1, soluble, alpha 2 O GCS-alpha-2|guanylate cyclase soluble subunit alpha-2 20121230 -9606 2978 GUCA1A RP1-139D8.2 C6orf131|COD3|CORD14|GCAP|GCAP1|GUCA|GUCA1|dJ139D8.6 HGNC:4678|MIM:600364|Ensembl:ENSG00000048545|HPRD:02648|Vega:OTTHUMG00000014696 6 6p21.1 guanylate cyclase activator 1A (retina) protein-coding GUCA1A guanylate cyclase activator 1A (retina) O GCAP 1|cone dystrophy 3|guanylate cyclase-activating protein, photoreceptor 1|guanylin 1, retina|guanylyl cyclase-activating protein 1 20121230 -9606 2979 GUCA1B RP1-139D8.1 GCAP2|GUCA2|RP48 HGNC:4679|MIM:602275|Ensembl:ENSG00000112599|HPRD:03783|Vega:OTTHUMG00000014697 6 6p21.1 guanylate cyclase activator 1B (retina) protein-coding GUCA1B guanylate cyclase activator 1B (retina) O GCAP 2|guanylate cyclase-activating protein, photoreceptor 2|guanylyl cyclase-activating protein 2 20121230 -9606 2980 GUCA2A - GCAP-I|GUCA2|STARA HGNC:4682|MIM:139392|Ensembl:ENSG00000197273|HPRD:00767|Vega:OTTHUMG00000007023 1 1p35-p34 guanylate cyclase activator 2A (guanylin) protein-coding GUCA2A guanylate cyclase activator 2A (guanylin) O guanylate cyclase activator 2A (guanylin 2, intestinal, heat-stable)|guanylate cyclase-activating protein 1|guanylate cyclase-activating protein I|guanylin 20121230 -9606 2981 GUCA2B - GCAP-II|UGN HGNC:4683|MIM:601271|Ensembl:ENSG00000044012|HPRD:03170|Vega:OTTHUMG00000007024 1 1p34-p33 guanylate cyclase activator 2B (uroguanylin) protein-coding GUCA2B guanylate cyclase activator 2B (uroguanylin) O guanylate cyclase activator 2B|uroguanylin 20121230 -9606 2982 GUCY1A3 - GC-SA3|GUC1A3|GUCA3|GUCSA3|GUCY1A1 HGNC:4685|MIM:139396|Ensembl:ENSG00000164116|HPRD:00768|Vega:OTTHUMG00000161700 4 4q31.1-q31.2 guanylate cyclase 1, soluble, alpha 3 protein-coding GUCY1A3 guanylate cyclase 1, soluble, alpha 3 O GC-S-alpha-1|GCS-alpha-1|GCS-alpha-3|guanylate cyclase soluble subunit alpha-3|soluble guanylate cyclase large subunit 20121230 -9606 2983 GUCY1B3 - GC-S-beta-1|GC-SB3|GUC1B3|GUCB3|GUCSB3|GUCY1B1 HGNC:4687|MIM:139397|Ensembl:ENSG00000061918|HPRD:00769|Vega:OTTHUMG00000161698 4 4q31.3-q33 guanylate cyclase 1, soluble, beta 3 protein-coding GUCY1B3 guanylate cyclase 1, soluble, beta 3 O GCS-beta-1|GCS-beta-3|guanylate cyclase soluble subunit beta-1|guanylate cyclase soluble subunit beta-3|soluble guanylate cyclase small subunit 20121230 -9606 2984 GUCY2C - DIAR6|GUC2C|MECIL|MUCIL|STAR HGNC:4688|MIM:601330|Ensembl:ENSG00000070019|HPRD:07529|Vega:OTTHUMG00000168732 12 12p12 guanylate cyclase 2C (heat stable enterotoxin receptor) protein-coding GUCY2C guanylate cyclase 2C (heat stable enterotoxin receptor) O GC-C|STA receptor|guanylyl cyclase C|hSTAR|heat-stable enterotoxin receptor|intestinal guanylate cyclase 20121230 -9606 2986 GUCY2F - CYGF|GC-F|GUC2DL|GUC2F|RETGC-2|ROS-GC2 HGNC:4691|MIM:300041|Ensembl:ENSG00000101890|HPRD:02078|Vega:OTTHUMG00000022184 X Xq22 guanylate cyclase 2F, retinal protein-coding GUCY2F guanylate cyclase 2F, retinal O guanylate cyclase 2D-like, membrane (retina-specific)|guanylate cyclase F|retinal guanylyl cyclase 2|rod outer segment membrane guanylate cyclase 2 20121230 -9606 2987 GUK1 RP11-520H14.2 GMK HGNC:4693|MIM:139270|Ensembl:ENSG00000143774|HPRD:00755|Vega:OTTHUMG00000039503 1 1q32-q41 guanylate kinase 1 protein-coding GUK1 guanylate kinase 1 O ATP:GMP phosphotransferase|GMP kinase|guanylate kinase 20121230 -9606 2988 GUK2 - - HGNC:4694|MIM:139280 1 1q32.1-q42 guanylate kinase 2 protein-coding GUK2 guanylate kinase 2 O - 20080828 -9606 2989 GULOP - GULO|SCURVY HGNC:4695|MIM:240400 8 8p21.1 gulonolactone (L-) oxidase, pseudogene pseudo GULOP gulonolactone (L-) oxidase, pseudogene O - 20121230 -9606 2990 GUSB tcag7.927 BG|MPS7 HGNC:4696|MIM:611499|Ensembl:ENSG00000169919|HPRD:02018|Vega:OTTHUMG00000023735 7 7q21.11 glucuronidase, beta protein-coding GUSB glucuronidase, beta O beta-D-glucuronidase|beta-G1|beta-glucuronidase 20121230 -9606 2992 GYG1 - GSD15|GYG HGNC:4699|MIM:603942|Ensembl:ENSG00000163754|HPRD:06805|Vega:OTTHUMG00000159533 3 3q24-q25.1 glycogenin 1 protein-coding GYG1 glycogenin 1 O GN-1|glycogenin-1 20121230 -9606 2993 GYPA - CD235a|GPA|GPErik|GPSAT|HGpMiV|HGpMiXI|HGpSta(C)|MN|MNS|PAS-2 HGNC:4702|MIM:111300|Ensembl:ENSG00000170180|HPRD:07508|Vega:OTTHUMG00000161403 4 4q31.21 glycophorin A (MNS blood group) protein-coding GYPA glycophorin A (MNS blood group) O MN sialoglycoprotein|Mi.V glycoprotein (24 AA)|erythroid-lineage-specific membrane sialoglycoprotein|glycophorin A (MN blood group)|glycophorin A, GPA|glycophorin Erik|glycophorin MiI|glycophorin MiV|glycophorin SAT|glycophorin Sta type C|glycophorin-A|recombinant glycophorin A-B Miltenberger-DR|sialoglycoprotein alpha 20121230 -9606 2994 GYPB - CD235b|GPB|GPB.NY|GYPHe.NY|GpMiIII|HGpMiIII|HGpMiVI|HGpMiX|MNS|PAS-3|SS HGNC:4703|MIM:111740|Ensembl:ENSG00000250361|HPRD:00201|Vega:OTTHUMG00000161404 4 4q31.21 glycophorin B (MNS blood group) protein-coding GYPB glycophorin B (MNS blood group) O SS-active sialoglycoprotein|Ss blood group|glycophorin HeP2|glycophorin MiIII|glycophorin MiVI|glycophorin MiX|glycophorin-B|sialoglycoprotein delta 20121230 -9606 2995 GYPC - CD236|CD236R|GE|GPC|GPD|GYPD|PAS-2|PAS-2' HGNC:4704|MIM:110750|Ensembl:ENSG00000136732|HPRD:00193|Vega:OTTHUMG00000131464 2 2q14-q21 glycophorin C (Gerbich blood group) protein-coding GYPC glycophorin C (Gerbich blood group) O glycoconnectin|glycophorin-C|glycophorin-D|glycoprotein beta|sialoglycoprotein D 20121230 -9606 2996 GYPE - GPE|MNS|MiIX HGNC:4705|MIM:138590|Ensembl:ENSG00000197465|HPRD:00723|Vega:OTTHUMG00000161402 4 4q31.1 glycophorin E (MNS blood group) protein-coding GYPE glycophorin E (MNS blood group) O glycophorin-E 20121230 -9606 2997 GYS1 - GSY|GYS HGNC:4706|MIM:138570|Ensembl:ENSG00000104812|HPRD:00721|Vega:OTTHUMG00000150723 19 19q13.3 glycogen synthase 1 (muscle) protein-coding GYS1 glycogen synthase 1 (muscle) O glycogen [starch] synthase, muscle 20121230 -9606 2998 GYS2 - - HGNC:4707|MIM:138571|Ensembl:ENSG00000111713|HPRD:00722|Vega:OTTHUMG00000169135 12 12p12.2 glycogen synthase 2 (liver) protein-coding GYS2 glycogen synthase 2 (liver) O glycogen [starch] synthase, liver 20121230 -9606 2999 GZMH - CCP-X|CGL-2|CSP-C|CTLA1|CTSGL2 HGNC:4710|MIM:116831|Ensembl:ENSG00000100450|HPRD:00290|Vega:OTTHUMG00000140185 14 14q11.2 granzyme H (cathepsin G-like 2, protein h-CCPX) protein-coding GZMH granzyme H (cathepsin G-like 2, protein h-CCPX) O cytotoxic T-lymphocyte proteinase|cytotoxic T-lymphocyte-associated serine esterase 1|cytotoxin serine protease-C|granzyme H 20121230 -9606 3000 GUCY2D - CORD5|CORD6|CYGD|GUC1A4|GUC2D|LCA|LCA1|RCD2|RETGC-1|ROS-GC1|ROSGC|retGC HGNC:4689|MIM:600179|Ensembl:ENSG00000132518|HPRD:02550|Vega:OTTHUMG00000108169 17 17p13.1 guanylate cyclase 2D, membrane (retina-specific) protein-coding GUCY2D guanylate cyclase 2D, membrane (retina-specific) O ROS-GC|guanylate cyclase 2D, retinal|retinal guanylyl cyclase 1|rod outer segment membrane guanylate cyclase 20121230 -9606 3001 GZMA - CTLA3|HFSP HGNC:4708|MIM:140050|Ensembl:ENSG00000145649|HPRD:00771|Vega:OTTHUMG00000097011 5 5q11-q12 granzyme A (granzyme 1, cytotoxic T-lymphocyte-associated serine esterase 3) protein-coding GZMA granzyme A (granzyme 1, cytotoxic T-lymphocyte-associated serine esterase 3) O CTL tryptase|Granzyme A (Cytotoxic T-lymphocyte-associated serine esterase-3; Hanukah factor serine protease)|HF|cytotoxic T-lymphocyte proteinase 1|fragmentin-1|granzyme A|h factor 20121230 -9606 3002 GZMB - CCPI|CGL-1|CGL1|CSP-B|CSPB|CTLA1|CTSGL1|HLP|SECT HGNC:4709|MIM:123910|Ensembl:ENSG00000100453|HPRD:00476|Vega:OTTHUMG00000029369 14 14q11.2 granzyme B (granzyme 2, cytotoxic T-lymphocyte-associated serine esterase 1) protein-coding GZMB granzyme B (granzyme 2, cytotoxic T-lymphocyte-associated serine esterase 1) O C11|CTLA-1|T-cell serine protease 1-3E|cathepsin G-like 1|cytotoxic T-lymphocyte proteinase 2|cytotoxic serine protease B|fragmentin 2|fragmentin-2|granzyme B|human lymphocyte protein 20121230 -9606 3003 GZMK - TRYP2 HGNC:4711|MIM:600784|Ensembl:ENSG00000113088|HPRD:02872|Vega:OTTHUMG00000097009 5 5q11.2 granzyme K (granzyme 3; tryptase II) protein-coding GZMK granzyme K (granzyme 3; tryptase II) O NK-Tryp-2|NK-tryptase-2|fragmentin-3|granzyme 3|granzyme K|granzyme K (serine protease, granzyme 3; tryptase II)|granzyme-3|tryptase II 20121230 -9606 3004 GZMM - LMET1|MET1 HGNC:4712|MIM:600311|Ensembl:ENSG00000197540|HPRD:02633|Vega:OTTHUMG00000180559 19 19p13.3 granzyme M (lymphocyte met-ase 1) protein-coding GZMM granzyme M (lymphocyte met-ase 1) O HU-Met-1|Met-1 serine protease|granzyme M|lymphocyte met-ase 1|met-ase|natural killer cell granular protease 20121230 -9606 3005 H1F0 - H10|H1FV HGNC:4714|MIM:142708|Ensembl:ENSG00000189060|HPRD:00819|Vega:OTTHUMG00000150659 22 22q13.1 H1 histone family, member 0 protein-coding H1F0 H1 histone family, member 0 O H1.0, H1(0), H1-0|histone H1'|histone H1(0)|histone H1.0 20121230 -9606 3006 HIST1H1C - H1.2|H1C|H1F2|H1s-1 HGNC:4716|MIM:142710|Ensembl:ENSG00000187837|HPRD:07514|Vega:OTTHUMG00000016140 6 6p21.3 histone cluster 1, H1c protein-coding HIST1H1C histone cluster 1, H1c O H1 histone family, member 2|histone 1, H1c|histone H1.2|histone H1c|histone H1d|histone H1s-1 20121230 -9606 3007 HIST1H1D - H1.3|H1D|H1F3|H1s-2 HGNC:4717|MIM:142210|Ensembl:ENSG00000124575|HPRD:06764|Vega:OTTHUMG00000014432 6 6p21.3 histone cluster 1, H1d protein-coding HIST1H1D histone cluster 1, H1d O H1 histone family, member 3|histone 1, H1d|histone H1.3|histone H1c|histone H1s-2 20121230 -9606 3008 HIST1H1E - H1.4|H1E|H1F4|H1s-4|dJ221C16.5 HGNC:4718|MIM:142220|Ensembl:ENSG00000168298|HPRD:07513|Vega:OTTHUMG00000014422 6 6p21.3 histone cluster 1, H1e protein-coding HIST1H1E histone cluster 1, H1e O H1 histone family, member 4|histone 1, H1e|histone H1.4|histone H1b|histone H1s-4 20121230 -9606 3009 HIST1H1B - H1|H1.5|H1B|H1F5|H1s-3 HGNC:4719|MIM:142711|Ensembl:ENSG00000184357|HPRD:00821|Vega:OTTHUMG00000016139 6 6p22.1 histone cluster 1, H1b protein-coding HIST1H1B histone cluster 1, H1b O H1 histone family, member 5|histone 1, H1b|histone H1.5|histone H1a|histone H1b|histone H1s-3 20121230 -9606 3010 HIST1H1T - H1FT|H1t|dJ221C16.2 HGNC:4720|MIM:142712|Ensembl:ENSG00000187475|HPRD:00822|Vega:OTTHUMG00000014430 6 6p21.3 histone cluster 1, H1t protein-coding HIST1H1T histone cluster 1, H1t O H1 histone family, member T (testis-specific)|histone 1, H1t|histone H1t|testicular H1 histone 20121230 -9606 3012 HIST1H2AE - H2A.1|H2A.2|H2A/a|H2AFA HGNC:4724|MIM:602786|Ensembl:ENSG00000168274|HPRD:04152|Vega:OTTHUMG00000014440 6 6p22.1 histone cluster 1, H2ae protein-coding HIST1H2AE histone cluster 1, H2ae O H2A histone family, member A|histone 1, H2ae|histone H2A type 1-B/E|histone H2A/a|histone H2AE 20121230 -9606 3013 HIST1H2AD - H2A.3|H2A/g|H2AFG HGNC:4729|MIM:602792|Ensembl:ENSG00000196866|HPRD:07534|Vega:OTTHUMG00000014437 6 6p21.3 histone cluster 1, H2ad protein-coding HIST1H2AD histone cluster 1, H2ad O H2A histone family, member G|histone 1, H2ad|histone H2A type 1-D|histone H2A.3|histone H2A/g|histone H2AD 20121230 -9606 3014 H2AFX - H2A.X|H2A/X|H2AX HGNC:4739|MIM:601772|Ensembl:ENSG00000188486|HPRD:03465|Vega:OTTHUMG00000166196 11 11q23.3 H2A histone family, member X protein-coding H2AFX H2A histone family, member X O H2AX histone|histone H2A.x 20121230 -9606 3015 H2AFZ - H2A.z|H2A/z|H2AZ HGNC:4741|MIM:142763|Ensembl:ENSG00000164032|HPRD:00823|Vega:OTTHUMG00000131048 4 4q24 H2A histone family, member Z protein-coding H2AFZ H2A histone family, member Z O H2AZ histone|histone H2A.Z 20121230 -9606 3017 HIST1H2BD - H2B.1B|H2B/b|H2BFB|HIRIP2|dJ221C16.6 HGNC:4747|MIM:602799|Ensembl:ENSG00000158373|HPRD:07535|Vega:OTTHUMG00000014426 6 6p21.3 histone cluster 1, H2bd protein-coding HIST1H2BD histone cluster 1, H2bd O H2B histone family, member B|HIRA-interacting protein 2|histone 1, H2bd|histone H2B type 1-D|histone H2B.1 B|histone H2B.b 20121230 -9606 3018 HIST1H2BB - H2B.1|H2B/f|H2BFF HGNC:4751|MIM:602803|Ensembl:ENSG00000196226|HPRD:07536|Vega:OTTHUMG00000014421 6 6p21.3 histone cluster 1, H2bb protein-coding HIST1H2BB histone cluster 1, H2bb O H2B histone family, member F|histone 1, H2bb|histone H2B type 1-B|histone H2B.1|histone H2B.f 20121230 -9606 3020 H3F3A RP11-396C23.1 H3.3A|H3F3 HGNC:4764|MIM:601128|Ensembl:ENSG00000163041|HPRD:03082|Vega:OTTHUMG00000037507 1 1q42.12 H3 histone, family 3A protein-coding H3F3A H3 histone, family 3A O histone H3.3 20121230 -9606 3021 H3F3B - H3.3B HGNC:4765|MIM:601058|Ensembl:ENSG00000132475|HPRD:03036|Vega:OTTHUMG00000179842 17 17q25.1 H3 histone, family 3B (H3.3B) protein-coding H3F3B H3 histone, family 3B (H3.3B) O H3 histone, family 3A|histone H3.3 20121230 -9606 3024 HIST1H1A - H1.1|H1A|H1F1|HIST1 HGNC:4715|MIM:142709|Ensembl:ENSG00000124610|HPRD:00820|Vega:OTTHUMG00000016413 6 6p21.3 histone cluster 1, H1a protein-coding HIST1H1A histone cluster 1, H1a O H1 histone family, member 1|histone 1, H1a|histone H1.1|histone H1a 20121230 -9606 3026 HABP2 - FSAP|HABP|HGFAL|PHBP HGNC:4798|MIM:603924|Ensembl:ENSG00000148702|HPRD:04890|Vega:OTTHUMG00000019073 10 10q25.3 hyaluronan binding protein 2 protein-coding HABP2 hyaluronan binding protein 2 O factor VII activating protein|factor VII-activating protease|factor seven-activating protease|hepatocyte growth factor activator-like protein|hyaluronan-binding protein 2|hyaluronic acid binding protein 2|plasma hyaluronan binding protein|plasma hyaluronan-binding protein 20121230 -9606 3028 HSD17B10 RP3-339A18.2 17b-HSD10|ABAD|CAMR|DUPXp11.22|ERAB|HADH2|HCD2|MHBD|MRPP2|MRX17|MRX31|MRXS10|SCHAD|SDR5C1 HGNC:4800|MIM:300256|Ensembl:ENSG00000072506|HPRD:02223|Vega:OTTHUMG00000021612 X Xp11.2 hydroxysteroid (17-beta) dehydrogenase 10 protein-coding HSD17B10 hydroxysteroid (17-beta) dehydrogenase 10 O 3-hydroxy-2-methylbutyryl-CoA dehydrogenase|3-hydroxyacyl-CoA dehydrogenase type-2|AB-binding alcohol dehydrogenase|amyloid-beta peptide binding alcohol dehydrogenase|endoplasmic reticulum-associated amyloid beta-peptide-binding protein|mitochondrial RNase P subunit 2|mitochondrial ribonuclease P protein 2|short chain L-3-hydroxyacyl-CoA dehydrogenase type 2|short chain dehydrogenase/reductase family 5C, member 1|short chain type dehydrogenase/reductase XH98G2 20121230 -9606 3029 HAGH - GLO2|GLX2|GLXII|HAGH1 HGNC:4805|MIM:138760|Ensembl:ENSG00000063854|HPRD:00731|Vega:OTTHUMG00000128662 16 16p13.3 hydroxyacylglutathione hydrolase protein-coding HAGH hydroxyacylglutathione hydrolase O glx II|glyoxalase II|hydroxyacylglutathione hydrolase, mitochondrial|hydroxyacylglutathione hydroxylase 20121230 -9606 3030 HADHA - ECHA|GBP|HADH|LCEH|LCHAD|MTPA|TP-ALPHA HGNC:4801|MIM:600890|Ensembl:ENSG00000084754|HPRD:02934|Vega:OTTHUMG00000096979 2 2p23 hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), alpha subunit protein-coding HADHA hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), alpha subunit O 3-ketoacyl-Coenzyme A (CoA) thiolase, alpha subunit|3-oxoacyl-CoA thiolase|78 kDa gastrin-binding protein|gastrin-binding protein|hydroxyacyl-Coenzyme A dehydrogenase/3-ketoacyl-Coenzyme A thiolase/enoyl-Coenzyme A hydratase (trifunctional protein), alpha subunit|long-chain 2-enoyl-CoA hydratase|long-chain-3-hydroxyacyl-CoA dehydrogenase|mitochondrial long-chain 2-enoyl-Coenzyme A (CoA) hydratase, alpha subunit|mitochondrial long-chain L-3-hydroxyacyl-Coenzyme A (CoA) dehydrogenase, alpha subunit|mitochondrial trifunctional enzyme, alpha subunit|mitochondrial trifunctional protein, alpha subunit|trifunctional enzyme subunit alpha, mitochondrial 20121230 -9606 3031 HADHAP1 - HADHAP HGNC:4802 4 4q32 hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), alpha subunit pseudogene 1 pseudo HADHAP1 hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), alpha subunit pseudogene 1 O - 20121230 -9606 3032 HADHB MSTP029 ECHB|MTPB|TP-BETA HGNC:4803|MIM:143450|Ensembl:ENSG00000138029|HPRD:00887|Vega:OTTHUMG00000096978 2 2p23 hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), beta subunit protein-coding HADHB hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), beta subunit O 2-enoyl-Coenzyme A (CoA) hydratase, beta subunit|3-ketoacyl-Coenzyme A (CoA) thiolase of mitochondrial trifunctional protein, beta subunit|acetyl-CoA acyltransferase|beta-ketothiolase|hydroxyacyl-Coenzyme A (CoA) dehydrogenase, beta subunit|hydroxyacyl-Coenzyme A dehydrogenase/3-ketoacyl-Coenzyme A thiolase/enoyl-Coenzyme A hydratase (trifunctional protein), beta subunit|mitochondrial trifunctional enzyme, beta subunit|mitochondrial trifunctional protein, beta subunit|trifunctional enzyme subunit beta, mitochondrial 20121230 -9606 3033 HADH - HAD|HADH1|HADHSC|HCDH|HHF4|MSCHAD|SCHAD HGNC:4799|MIM:601609|Ensembl:ENSG00000138796|Vega:OTTHUMG00000131810 4 4q22-q26 hydroxyacyl-CoA dehydrogenase protein-coding HADH hydroxyacyl-CoA dehydrogenase O L-3-hydroxyacyl-Coenzyme A dehydrogenase, short chain|hydroxyacyl-coenzyme A dehydrogenase, mitochondrial|medium and short-chain L-3-hydroxyacyl-coenzyme A dehydrogenase|short-chain 3-hydroxyacyl-CoA dehydrogenase 20121230 -9606 3034 HAL - HIS|HSTD HGNC:4806|MIM:609457|Ensembl:ENSG00000084110|HPRD:07187|Vega:OTTHUMG00000170354 12 12q22-q24.1 histidine ammonia-lyase protein-coding HAL histidine ammonia-lyase O histidase 20121230 -9606 3035 HARS - HRS|USH3B HGNC:4816|MIM:142810|Ensembl:ENSG00000170445|HPRD:00827|Vega:OTTHUMG00000129502 5 5q31.3 histidyl-tRNA synthetase protein-coding HARS histidyl-tRNA synthetase O HisRS|histidine translase|histidine--tRNA ligase, cytoplasmic 20121230 -9606 3036 HAS1 - HAS HGNC:4818|MIM:601463|Ensembl:ENSG00000105509|HPRD:03271 19 19q13.4 hyaluronan synthase 1 protein-coding HAS1 hyaluronan synthase 1 O HA synthase 1|huHAS1|hyaluronate synthase 1|hyaluronic acid synthase 1 20121230 -9606 3037 HAS2 - - HGNC:4819|MIM:601636|Ensembl:ENSG00000170961|HPRD:07045|Vega:OTTHUMG00000164953 8 8q24.12 hyaluronan synthase 2 protein-coding HAS2 hyaluronan synthase 2 O HA synthase 2|hyaluronate synthase 2|hyaluronic acid synthase 2 20121230 -9606 3038 HAS3 - - HGNC:4820|MIM:602428|Ensembl:ENSG00000103044|HPRD:03889|Vega:OTTHUMG00000137562 16 16q22.1 hyaluronan synthase 3 protein-coding HAS3 hyaluronan synthase 3 O HA synthase 3|hyaluronate synthase 3|hyaluronic acid synthase 3 20121230 -9606 3039 HBA1 - CD31|HBH HGNC:4823|MIM:141800|Ensembl:ENSG00000206172|HPRD:00784|Vega:OTTHUMG00000060138 16 16p13.3 hemoglobin, alpha 1 protein-coding HBA1 hemoglobin, alpha 1 O alpha one globin|alpha-1 globin|alpha-1-globin|alpha-globin|hemoglobin alpha 1 globin chain|hemoglobin alpha chain|hemoglobin alpha-1 chain|hemoglobin subunit alpha 20121230 -9606 3040 HBA2 - HBH HGNC:4824|MIM:141850|Ensembl:ENSG00000188536|HPRD:00785|Vega:OTTHUMG00000059924 16 16p13.3 hemoglobin, alpha 2 protein-coding HBA2 hemoglobin, alpha 2 O alpha globin|alpha-2 globin|alpha-globin|hemoglobin alpha chain|hemoglobin subunit alpha 20121230 -9606 3041 HBAP1 - - HGNC:4825 16 16p13.3 hemoglobin, alpha pseudogene 1 pseudo HBAP1 hemoglobin, alpha pseudogene 1 O - 20121230 -9606 3042 HBM - HBAP2 HGNC:4826|MIM:609639|Ensembl:ENSG00000206177|HPRD:13633|Vega:OTTHUMG00000059926 16 16p13.3 hemoglobin, mu protein-coding HBM hemoglobin, mu O alpha globin pseudogene 2|hemoglobin mu chain|hemoglobin subunit mu|hemoglobin, alpha pseudogene 2|mu-globin 20121230 -9606 3043 HBB - CD113t-C|beta-globin HGNC:4827|MIM:141900|Ensembl:ENSG00000244734|HPRD:00786|Vega:OTTHUMG00000066678 11 11p15.5 hemoglobin, beta protein-coding HBB hemoglobin, beta O beta globin chain|hemoglobin beta chain|hemoglobin subunit beta 20121230 -9606 3044 HBBP1 - - HGNC:4828 11 11p15.5 hemoglobin, beta pseudogene 1 pseudo HBBP1 hemoglobin, beta pseudogene 1 O - 20121230 -9606 3045 HBD - - HGNC:4829|MIM:142000|Ensembl:ENSG00000223609|HPRD:00787|Vega:OTTHUMG00000066674 11 11p15.5 hemoglobin, delta protein-coding HBD hemoglobin, delta O delta globin|delta-globin chain|hemoglobin delta chain|hemoglobin subunit delta 20121230 -9606 3046 HBE1 - HBE HGNC:4830|MIM:142100|Ensembl:ENSG00000213931|HPRD:00788 11 11p15.5 hemoglobin, epsilon 1 protein-coding HBE1 hemoglobin, epsilon 1 O epsilon globin|epsilon-globin|hemoglobin epsilon chain|hemoglobin subunit epsilon 20121230 -9606 3047 HBG1 PRO2979 HBGA|HBGR|HSGGL1 HGNC:4831|MIM:142200|Ensembl:ENSG00000213934|HPRD:00789|Vega:OTTHUMG00000066681 11 11p15.5 hemoglobin, gamma A protein-coding HBG1 hemoglobin, gamma A O A-gamma globin|gamma A hemoglobin|gamma globin|gamma-1-globin|hb F Agamma|hemoglobin gamma-1 chain|hemoglobin gamma-a chain|hemoglobin subunit gamma-1|hemoglobin, gamma, regulator of 20121230 -9606 3048 HBG2 - TNCY HGNC:4832|MIM:142250|Ensembl:ENSG00000196565|HPRD:00792 11 11p15.5 hemoglobin, gamma G protein-coding HBG2 hemoglobin, gamma G O G-gamma globin Paulinia|abnormal hemoglobin|gamma-2-globin|hb F Ggamma|hemoglobin gamma-2 chain|hemoglobin gamma-G chain|hemoglobin subunit gamma-2|methemoglobin 20121230 -9606 3049 HBQ1 - - HGNC:4833|MIM:142240|Ensembl:ENSG00000086506|HPRD:00791|Vega:OTTHUMG00000060727 16 16p13.3 hemoglobin, theta 1 protein-coding HBQ1 hemoglobin, theta 1 O hemoglobin subunit theta-1|hemoglobin theta-1 chain|theta-1-globin 20121230 -9606 3050 HBZ - - HGNC:4835|MIM:142310|Ensembl:ENSG00000130656|HPRD:00794|Vega:OTTHUMG00000059928 16 16p13.3 hemoglobin, zeta protein-coding HBZ hemoglobin, zeta O HBAZ|hemoglobin subunit zeta|hemoglobin zeta chain|zeta-globin 20121230 -9606 3051 HBZP1 - HBZP HGNC:4836 16 16p13.3 hemoglobin, zeta pseudogene 1 pseudo HBZP1 hemoglobin, zeta pseudogene 1 O - 20121230 -9606 3052 HCCS - CCHL|MCOPS7 HGNC:4837|MIM:300056|Ensembl:ENSG00000004961|HPRD:02085|Vega:OTTHUMG00000021128 X Xp22.3 holocytochrome c synthase protein-coding HCCS holocytochrome c synthase O cytochrome c heme-lyase|cytochrome c-type heme lyase|holocytochrome c-type synthase 20121230 -9606 3053 SERPIND1 - D22S673|HC2|HCF2|HCII|HLS2|LS2|THPH10 HGNC:4838|MIM:142360|Ensembl:ENSG00000099937|HPRD:00795|Vega:OTTHUMG00000150755 22 22q11.21 serpin peptidase inhibitor, clade D (heparin cofactor), member 1 protein-coding SERPIND1 serpin peptidase inhibitor, clade D (heparin cofactor), member 1 O heparin cofactor 2|leuserpin 2|protease inhibitor leuserpin-2|serine (or cysteine) proteinase inhibitor, clade D (heparin cofactor), member 1|serpin D1 20121230 -9606 3054 HCFC1 - CFF|HCF-1|HCF1|HFC1|MRX3|VCAF HGNC:4839|MIM:300019|Ensembl:ENSG00000172534|HPRD:02061|Vega:OTTHUMG00000024222 X Xq28 host cell factor C1 (VP16-accessory protein) protein-coding HCFC1 host cell factor C1 (VP16-accessory protein) O C1 factor|HCF|VP16 accessory protein|host cell factor 1 20121230 -9606 3055 HCK RP5-836N17.3 JTK9|p59Hck|p61Hck HGNC:4840|MIM:142370|Ensembl:ENSG00000101336|HPRD:00796|Vega:OTTHUMG00000032204 20 20q11-q12 hemopoietic cell kinase protein-coding HCK hemopoietic cell kinase O hematopoietic cell kinase|p59-HCK/p60-HCK|tyrosine-protein kinase HCK 20121230 -9606 3056 HCL1 - BRHC HGNC:4841 19 - hair color 1 (brown) unknown HCL1 hair color 1 (brown) O - 20110215 -9606 3057 HCL2 - RHA|RHC HGNC:4842|MIM:266300 4 4q28-q31 hair color 2 (red) unknown HCL2 hair color 2 (red) O - 20120622 -9606 3059 HCLS1 - CTTNL|HS1 HGNC:4844|MIM:601306|Ensembl:ENSG00000180353|HPRD:03199|Vega:OTTHUMG00000159409 3 3q13 hematopoietic cell-specific Lyn substrate 1 protein-coding HCLS1 hematopoietic cell-specific Lyn substrate 1 O hematopoietic lineage cell-specific protein|lckBP1|p75 20121230 -9606 3060 HCRT - NRCLP1|OX|PPOX HGNC:4847|MIM:602358|Ensembl:ENSG00000161610|HPRD:03836|Vega:OTTHUMG00000180107 17 17q21 hypocretin (orexin) neuropeptide precursor protein-coding HCRT hypocretin (orexin) neuropeptide precursor O orexin 20121230 -9606 3061 HCRTR1 - OX1R HGNC:4848|MIM:602392|Ensembl:ENSG00000121764|HPRD:03863|Vega:OTTHUMG00000003876 1 1p33 hypocretin (orexin) receptor 1 protein-coding HCRTR1 hypocretin (orexin) receptor 1 O hypocretin receptor 1|hypocretin receptor type 1|hypocretin receptor-1|orexin receptor 1|orexin receptor type 1|orexin receptor-1|ox-1-R|ox1-R 20121230 -9606 3062 HCRTR2 - OX2R HGNC:4849|MIM:602393|Ensembl:ENSG00000137252|HPRD:08374|Vega:OTTHUMG00000016150 6 6p12 hypocretin (orexin) receptor 2 protein-coding HCRTR2 hypocretin (orexin) receptor 2 O hypocretin receptor type 2|orexin receptor type 2|ox-2-R|ox2-R 20121230 -9606 3063 HCVS - - HGNC:4850|MIM:122460 15 15q11-qter human coronavirus sensitivity unknown HCVS human coronavirus sensitivity O - 20110215 -9606 3064 HTT - HD|IT15 HGNC:4851|MIM:613004|Ensembl:ENSG00000197386|HPRD:00883|Vega:OTTHUMG00000159916 4 4p16.3 huntingtin protein-coding HTT huntingtin O huntington disease protein 20121230 -9606 3065 HDAC1 RP4-811H24.2 GON-10|HD1|RPD3|RPD3L1 HGNC:4852|MIM:601241|Ensembl:ENSG00000116478|HPRD:03143|Vega:OTTHUMG00000007529 1 1p34 histone deacetylase 1 protein-coding HDAC1 histone deacetylase 1 O reduced potassium dependency, yeast homolog-like 1 20121230 -9606 3066 HDAC2 - HD2|RPD3|YAF1 HGNC:4853|MIM:605164|Ensembl:ENSG00000196591|HPRD:05521|Vega:OTTHUMG00000015411 6 6q21 histone deacetylase 2 protein-coding HDAC2 histone deacetylase 2 O YY1-associated factor 1|transcriptional regulator homolog RPD3 20121230 -9606 3067 HDC - - HGNC:4855|MIM:142704|Ensembl:ENSG00000140287|HPRD:00817|Vega:OTTHUMG00000131644 15 15q21-q22 histidine decarboxylase protein-coding HDC histidine decarboxylase O - 20121230 -9606 3068 HDGF RP11-66D17.10-003 HMG1L2 HGNC:4856|MIM:600339|Ensembl:ENSG00000143321|HPRD:02079|Vega:OTTHUMG00000041295 1 1q21-q23 hepatoma-derived growth factor protein-coding HDGF hepatoma-derived growth factor O HMG-1L2|high mobility group protein 1-like 2 20121230 -9606 3069 HDLBP - HBP|PRO2900|VGL HGNC:4857|MIM:142695|Ensembl:ENSG00000115677|HPRD:00813|Vega:OTTHUMG00000133391 2 2q37.3 high density lipoprotein binding protein protein-coding HDLBP high density lipoprotein binding protein O HDL-binding protein|high density lipoprotein-binding protein|vigilin 20121230 -9606 3070 HELLS Nbla10143 LSH|PASG|SMARCA6 HGNC:4861|MIM:603946|Ensembl:ENSG00000119969|HPRD:07232|Vega:OTTHUMG00000018793 10 10q24.2 helicase, lymphoid-specific protein-coding HELLS helicase, lymphoid-specific O SWI/SNF2-related matrix-associated actin-dependent regulator of chromatin subfamily A member 6|SWI/SNF2-related, matrix-associated, actin-dependent regulator of chromatin, subfamily A, member 6|lymphoid-specific helicase|proliferation-associated SNF2-like protein 20121230 -9606 3071 NCKAP1L - HEM1 HGNC:4862|MIM:141180|Ensembl:ENSG00000123338|HPRD:00781|Vega:OTTHUMG00000169843 12 12q13.1 NCK-associated protein 1-like protein-coding NCKAP1L NCK-associated protein 1-like O hematopoietic protein 1|membrane-associated protein hem-1|nck-associated protein 1-like 20121230 -9606 3073 HEXA - TSD HGNC:4878|MIM:606869|Ensembl:ENSG00000213614|HPRD:06040|Vega:OTTHUMG00000133445 15 15q24.1 hexosaminidase A (alpha polypeptide) protein-coding HEXA hexosaminidase A (alpha polypeptide) O N-acetyl-beta-glucosaminidase subunit alpha|beta-N-acetylhexosaminidase subunit alpha|beta-hexosaminidase subunit alpha|hexosaminidase subunit A 20121230 -9606 3074 HEXB HCC7 ENC-1AS HGNC:4879|MIM:606873|Ensembl:ENSG00000049860|HPRD:06043|Vega:OTTHUMG00000102057 5 5q13 hexosaminidase B (beta polypeptide) protein-coding HEXB hexosaminidase B (beta polypeptide) O HCC-7|N-acetyl-beta-glucosaminidase subunit beta|beta-N-acetylhexosaminidase subunit beta|beta-hexosaminidase subunit beta|cervical cancer proto-oncogene 7 protein|hexosaminidase subunit B 20121230 -9606 3075 CFH RP1-177P10.1 AHUS1|AMBP1|ARMD4|ARMS1|CFHL3|FH|FHL1|HF|HF1|HF2|HUS HGNC:4883|MIM:134370|Ensembl:ENSG00000000971|HPRD:00601|Vega:OTTHUMG00000035607 1 1q32 complement factor H protein-coding CFH complement factor H O H factor 1 (complement)|H factor 2 (complement)|adrenomedullin binding protein|age-related maculopathy susceptibility 1|beta-1-H-globulin|beta-1H|factor H|factor H-like 1 20121230 -9606 3077 HFE - HFE1|HH|HLA-H|MVCD7|TFQTL2 HGNC:4886|MIM:613609|Ensembl:ENSG00000010704|HPRD:01993|Vega:OTTHUMG00000016348 6 6p21.3 hemochromatosis protein-coding HFE hemochromatosis O MHC class I-like protein HFE|hereditary hemochromatosis protein|hereditary hemochromatosis protein HLA-H|high Fe 20121230 -9606 3078 CFHR1 - CFHL|CFHL1|CFHL1P|CFHR1P|FHR1|H36-1|H36-2|HFL1|HFL2 HGNC:4888|MIM:134371|Ensembl:ENSG00000244414|HPRD:00602|Vega:OTTHUMG00000036276 1 1q32 complement factor H-related 1 protein-coding CFHR1 complement factor H-related 1 O FHR-1|H factor (complement)-like 1|H factor (complement)-like 2|H-factor-like 1|H36|complement factor H-related 1 pseudogene|complement factor H-related protein 1|h factor-like protein 1 20121230 -9606 3080 CFHR2 - CFHL2|FHR2|HFL3 HGNC:4890|MIM:600889|Ensembl:ENSG00000080910|HPRD:02933|Vega:OTTHUMG00000036518 1 1q31.3 complement factor H-related 2 protein-coding CFHR2 complement factor H-related 2 O DDESK59|FHR-2|H factor (complement)-like 3|complement factor H-related protein 2|factor H-related gene 2|h factor-like 3|h factor-like protein 2 20121230 -9606 3081 HGD - AKU|HGO HGNC:4892|MIM:607474|Ensembl:ENSG00000113924|HPRD:06315|Vega:OTTHUMG00000159441 3 3q13.33 homogentisate 1,2-dioxygenase protein-coding HGD homogentisate 1,2-dioxygenase O homogentisate oxidase|homogentisate oxygenase|homogentisic acid oxidase|homogentisicase 20121230 -9606 3082 HGF - DFNB39|F-TCF|HGFB|HPTA|SF HGNC:4893|MIM:142409|Ensembl:ENSG00000019991|HPRD:00799|Vega:OTTHUMG00000023804 7 7q21.1 hepatocyte growth factor (hepapoietin A; scatter factor) protein-coding HGF hepatocyte growth factor (hepapoietin A; scatter factor) O fibroblast-derived tumor cytotoxic factor|hepatocyte growth factor|hepatopoeitin-A|hepatopoietin-A|lung fibroblast-derived mitogen 20121230 -9606 3083 HGFAC RP11-529E10.2 HGFA HGNC:4894|MIM:604552|Ensembl:ENSG00000109758|HPRD:05184|Vega:OTTHUMG00000090281 4 4p16 HGF activator protein-coding HGFAC HGF activator O hepatocyte growth factor activator 20121230 -9606 3084 NRG1 - ARIA|GGF|GGF2|HGL|HRG|HRG1|HRGA|MST131|NDF|SMDF HGNC:7997|MIM:142445|Ensembl:ENSG00000157168|HPRD:00802|Vega:OTTHUMG00000163918 8 8p12 neuregulin 1 protein-coding NRG1 neuregulin 1 O MSTP131|glial growth factor|heregulin, alpha (45kD, ERBB2 p185-activator)|neu differentiation factor|neuregulin 1 type IV beta 1a|neuregulin 1 type IV beta 3|pro-NRG1|pro-neuregulin-1, membrane-bound isoform|sensory and motor neuron derived factor 20121230 -9606 3086 HHC2 - FBH|FBH2|FHH2 HGNC:4899|MIM:145981 19 19p13.3 hypocalciuric hypercalcemia 2 unknown HHC2 hypocalciuric hypercalcemia 2 O - 20120622 -9606 3087 HHEX - HEX|HMPH|HOX11L-PEN|PRH|PRHX HGNC:4901|MIM:604420|Ensembl:ENSG00000152804|HPRD:06829|Vega:OTTHUMG00000018762 10 10q23.33 hematopoietically expressed homeobox protein-coding HHEX hematopoietically expressed homeobox O hematopoietically-expressed homeobox protein HHEX|homeobox protein HEX|homeobox protein PRH|homeobox, hematopoietically expressed|proline-rich homeodomain-containing transcription factor 20121230 -9606 3090 HIC1 - ZBTB29|ZNF901|hic-1 HGNC:4909|MIM:603825|Ensembl:ENSG00000177374|HPRD:04826|Vega:OTTHUMG00000177635 17 17p13.3 hypermethylated in cancer 1 protein-coding HIC1 hypermethylated in cancer 1 O hypermethylated in cancer 1 protein|zinc finger and BTB domain-containing protein 29 20121230 -9606 3091 HIF1A - HIF-1A|HIF-1alpha|HIF1|HIF1-ALPHA|MOP1|PASD8|bHLHe78 HGNC:4910|MIM:603348|Ensembl:ENSG00000100644|HPRD:04517|Vega:OTTHUMG00000140344 14 14q23.2 hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor) protein-coding HIF1A hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor) O ARNT interacting protein|ARNT-interacting protein|HIF-1-alpha|PAS domain-containing protein 8|basic-helix-loop-helix-PAS protein MOP1|class E basic helix-loop-helix protein 78|hypoxia-inducible factor 1 alpha isoform I.3|hypoxia-inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)|hypoxia-inducible factor 1-alpha|hypoxia-inducible factor1alpha|member of PAS protein 1|member of PAS superfamily 1 20121230 -9606 3092 HIP1 - ILWEQ HGNC:4913|MIM:601767|Ensembl:ENSG00000127946|HPRD:03461|Vega:OTTHUMG00000156050 7 7q11.23 huntingtin interacting protein 1 protein-coding HIP1 huntingtin interacting protein 1 O HIP-I|huntingtin-interacting protein 1|huntingtin-interacting protein I 20121230 -9606 3093 UBE2K - E2-25K|HIP2|HYPG|LIG|UBC1 HGNC:4914|MIM:602846|Ensembl:ENSG00000078140|HPRD:04165|Vega:OTTHUMG00000160543 4 4p14 ubiquitin-conjugating enzyme E2K protein-coding UBE2K ubiquitin-conjugating enzyme E2K O E2(25K)|HIP-2|huntingtin interacting protein 2|huntingtin-interacting protein 2|ubiquitin carrier protein|ubiquitin-conjugating enzyme E2 K|ubiquitin-conjugating enzyme E2(25K)|ubiquitin-conjugating enzyme E2-25 KDA|ubiquitin-conjugating enzyme E2-25K|ubiquitin-conjugating enzyme E2K (UBC1 homolog, yeast)|ubiquitin-protein ligase 20121230 -9606 3094 HINT1 - HINT|NMAN|PKCI-1|PRKCNH1 HGNC:4912|MIM:601314|Ensembl:ENSG00000169567|HPRD:03204|Vega:OTTHUMG00000128995 5 5q31.2 histidine triad nucleotide binding protein 1 protein-coding HINT1 histidine triad nucleotide binding protein 1 O adenosine 5'-monophosphoramidase|histidine triad nucleotide-binding protein 1|protein kinase C inhibitor 1|protein kinase C-interacting protein 1 20121230 -9606 3096 HIVEP1 RP3-451B15.2 CIRIP|CRYBP1|MBP-1|PRDII-BF1|Schnurri-1|ZAS1|ZNF40|ZNF40A HGNC:4920|MIM:194540|Ensembl:ENSG00000095951|HPRD:01925|Vega:OTTHUMG00000014265 6 6p24-p22.3 human immunodeficiency virus type I enhancer binding protein 1 protein-coding HIVEP1 human immunodeficiency virus type I enhancer binding protein 1 O GAAP|HIV-EP1|Zinc finger protein 40 (Human immunodeficiency virus type I enhancer-binding protein 1) (HIV-EP1) (Major histocompatibility complex binding protein 1) (MBP-1) (Positive regulatory domain II binding factor 1) (PRDII-BF1)|cirhin interaction protein|gate keeper of apoptosis-activating protein|human immunodeficiency virus type I enhancer-binding protein 1|major histocompatibility complex binding protein 1|major histocompatibility complex-binding protein 1|positive regulatory domain II binding factor 1|positive regulatory domain II-binding factor 1|zinc finger protein 40 20121230 -9606 3097 HIVEP2 - HIV-EP2|MBP-2|MIBP1|SHN2|ZAS2|ZNF40B HGNC:4921|MIM:143054|Ensembl:ENSG00000010818|HPRD:00881|Vega:OTTHUMG00000015713 6 6q23-q24 human immunodeficiency virus type I enhancer binding protein 2 protein-coding HIVEP2 human immunodeficiency virus type I enhancer binding protein 2 O MHC binding protein-2|MHC-binding protein 2|Schnurri-2|c-myc intron binding protein 1|human immunodeficiency virus type I enhancer-binding protein 2|transcription factor HIVEP2 20121230 -9606 3098 HK1 - HK1-ta|HK1-tb|HK1-tc|HKI|HXK1 HGNC:4922|MIM:142600|Ensembl:ENSG00000156515|HPRD:00809|Vega:OTTHUMG00000018380 10 10q22 hexokinase 1 protein-coding HK1 hexokinase 1 O HK I|brain form hexokinase|glycolytic enzyme|hexokinase type I|hexokinase-1 20121230 -9606 3099 HK2 - HKII|HXK2 HGNC:4923|MIM:601125|Ensembl:ENSG00000159399|HPRD:03080|Vega:OTTHUMG00000129972 2 2p13 hexokinase 2 protein-coding HK2 hexokinase 2 O HK II|hexokinase type II|hexokinase-2|hexokinase-2, muscle|muscle form hexokinase 20121230 -9606 3101 HK3 - HKIII|HXK3 HGNC:4925|MIM:142570|Ensembl:ENSG00000160883|HPRD:00806|Vega:OTTHUMG00000130855 5 5q35.2 hexokinase 3 (white cell) protein-coding HK3 hexokinase 3 (white cell) O ATP:D-hexose 6-phosphotransferase|HK III|hexokinase type III|hexokinase-3 20121230 -9606 3104 ZBTB48 RP11-58A11.4 HKR3|ZNF855|pp9964 HGNC:4930|MIM:165270|Ensembl:ENSG00000204859|HPRD:01316|Vega:OTTHUMG00000001438 1 1p36.3 zinc finger and BTB domain containing 48 protein-coding ZBTB48 zinc finger and BTB domain containing 48 O GLI-Kruppel family member HKR3|krueppel-related zinc finger protein 3|zinc finger and BTB domain-containing protein 48|zinc finger protein 855 20121230 -9606 3105 HLA-A DAQB-90C11.16-002 HLAA HGNC:4931|MIM:142800|Ensembl:ENSG00000206503|HPRD:00826|Vega:OTTHUMG00000130501 6 6p21.3 major histocompatibility complex, class I, A protein-coding HLA-A major histocompatibility complex, class I, A O HLA class I histocompatibility antigen, A-1 alpha chain|MHC class I antigen HLA-A heavy chain|antigen presenting molecule|leukocyte antigen class I-A 20121230 -9606 3106 HLA-B CDABP0067 AS|HLAB|SPDA1 HGNC:4932|MIM:142830|Ensembl:ENSG00000234745|HPRD:00828|Vega:OTTHUMG00000031153 6 6p21.3 major histocompatibility complex, class I, B protein-coding HLA-B major histocompatibility complex, class I, B O HLA class I histocompatibility antigen, B alpha chain|MHC Class I HLA heavy chain|MHC HLA-B cell surface glycoprotein|MHC HLA-B transmembrane glycoprotein|MHC class I antigen GN00104|MHC class I antigen HLA-B heavy chain|MHC class I antigen SHCHA|leukocyte antigen class I-B|lymphocyte antigen 20121230 -9606 3107 HLA-C XXbac-BCX101P6.2 D6S204|HLA-JY3|HLC-C|PSORS1 HGNC:4933|MIM:142840|Ensembl:ENSG00000204525|HPRD:00829|Vega:OTTHUMG00000031154 6 6p21.3 major histocompatibility complex, class I, C protein-coding HLA-C major histocompatibility complex, class I, C O HLA class I histocompatibility antigen, C alpha chain|HLA class I histocompatibility antigen, Cw-1 alpha chain|MHC class I antigen heavy chain HLA-C|human leukocyte antigen-C alpha chain|major histocompatibility antigen HLA-C 20121230 -9606 3108 HLA-DMA DAAP-27A1.5 D6S222E|DMA|HLADM|RING6 HGNC:4934|MIM:142855|Ensembl:ENSG00000204257|HPRD:00830|Vega:OTTHUMG00000031173 6 6p21.3 major histocompatibility complex, class II, DM alpha protein-coding HLA-DMA major histocompatibility complex, class II, DM alpha O HLA class II histocompatibility antigen, DM alpha chain|MHC class II antigen DMA|class II histocompatibility antigen, M alpha chain|really interesting new gene 6 protein 20121230 -9606 3109 HLA-DMB DAAP-27A1.4 D6S221E|RING7 HGNC:4935|MIM:142856|Ensembl:ENSG00000242574|HPRD:00831|Vega:OTTHUMG00000031176 6 6p21.3 major histocompatibility complex, class II, DM beta protein-coding HLA-DMB major histocompatibility complex, class II, DM beta O HLA class II histocompatibility antigen, DM beta chain|MHC class II HLA-DMB|MHC class II antigen DMB|MHC class II antigen HLA-DM beta chain|class II histocompatibility antigen, M beta chain|really interesting new gene 7 protein 20121230 -9606 3110 MNX1 - HB9|HLXB9|HOXHB9|SCRA1 HGNC:4979|MIM:142994|Ensembl:ENSG00000130675|HPRD:00874|Vega:OTTHUMG00000157181 7 7q36 motor neuron and pancreas homeobox 1 protein-coding MNX1 motor neuron and pancreas homeobox 1 O homeobox HB9|homeobox protein HB9|motor neuron and pancreas homeobox protein 1 20121230 -9606 3111 HLA-DOA DADB-17J1.1 HLA-DNA|HLA-DZA|HLADZ HGNC:4936|MIM:142930|Ensembl:ENSG00000204252|HPRD:00837|Vega:OTTHUMG00000031211 6 6p21.3 major histocompatibility complex, class II, DO alpha protein-coding HLA-DOA major histocompatibility complex, class II, DO alpha O HLA class II histocompatibility antigen, DO alpha chain|HLA-D0-alpha|MHC DN-alpha|MHC DZ alpha|MHC class II antigen DOA|lymphocyte antigen|major histocompatibility complex, class II, DN alpha 20121230 -9606 3112 HLA-DOB DAAP-57C1.1 DOB HGNC:4937|MIM:600629|Ensembl:ENSG00000241106|HPRD:08368|Vega:OTTHUMG00000031213 6 6p21.3 major histocompatibility complex, class II, DO beta protein-coding HLA-DOB major histocompatibility complex, class II, DO beta O HLA class II histocompatibility antigen, DO beta chain|MHC class II antigen DOB 20121230 -9606 3113 HLA-DPA1 DAAP-277G18.1 DP(W3)|DP(W4)|HLA-DP1A|HLADP|HLASB|PLT1 HGNC:4938|MIM:142880|Ensembl:ENSG00000231389|HPRD:00835|Vega:OTTHUMG00000031058 6 6p21.3 major histocompatibility complex, class II, DP alpha 1 protein-coding HLA-DPA1 major histocompatibility complex, class II, DP alpha 1 O HLA class II histocompatibility antigen, DP alpha 1 chain|HLA class II histocompatibility antigen, DP alpha chain|HLA-SB alpha chain|MHC class II DP3-alpha|MHC class II DPA1|MHC class II HLA-DPA1 antigen|MHC class II antigen|Primed lymphocyte test-1 20121230 -9606 3115 HLA-DPB1 DADB-22N23.4 DPB1|HLA-DP|HLA-DP1B|HLA-DPB HGNC:4940|MIM:142858|Ensembl:ENSG00000223865|HPRD:00832|Vega:OTTHUMG00000031076 6 6p21.3 major histocompatibility complex, class II, DP beta 1 protein-coding HLA-DPB1 major histocompatibility complex, class II, DP beta 1 O HLA DP14-beta chain|HLA class II histocompatibility antigen, DP beta 1 chain|HLA class II histocompatibility antigen, DP(W4) beta chain|HLA-DP histocompatibility type, beta-1 subunit|MHC HLA DPB1|MHC class II HLA-DP-beta|MHC class II HLA-DP-beta-1|MHC class II HLA-DRB1|MHC class II antigen DP beta 1 chain|MHC class II antigen DPB1|MHC class II antigen DPbeta1|MHC class II antigen beta chain|beta1 domain MHC class II HLA DPB|class II HLA beta chain|major histocompatibility complex class II HLA DPB1 protein|major histocompatibility complex class II antigen beta chain 20121230 -9606 3116 HLA-DPB2 - DP2B|DPB2|DPbeta2|HLA-DP2B HGNC:4941 6 6p21.3 major histocompatibility complex, class II, DP beta 2 (pseudogene) pseudo HLA-DPB2 major histocompatibility complex, class II, DP beta 2 (pseudogene) O - 20121230 -9606 3117 HLA-DQA1 DAQB-109B10.1 CD|CELIAC1|DQ-A1|GSE|HLA-DQA HGNC:4942|MIM:146880|Ensembl:ENSG00000196735|HPRD:06765|Vega:OTTHUMG00000031106 6 6p21.3 major histocompatibility complex, class II, DQ alpha 1 protein-coding HLA-DQA1 major histocompatibility complex, class II, DQ alpha 1 O DC-1 alpha chain|DC-alpha|HLA class II histocompatibility antigen, DQ alpha 1 chain|HLA class II histocompatibility antigen, DQ(W3) alpha chain|HLA-DCA|MHC HLA-DQ alpha|MHC class II DQA1|MHC class II HLA-D alpha glycoprotein|MHC class II HLA-DQ-alpha-1|MHC class II antigen|MHC class II surface glycoprotein|leucocyte antigen DQA1|leukocyte antigen alpha chain 20121230 -9606 3118 HLA-DQA2 DAAP-381D23.2 DX-ALPHA|HLA-DXA HGNC:4943|MIM:613503|Ensembl:ENSG00000237541|HPRD:09982|Vega:OTTHUMG00000031108 6 6p21.3 major histocompatibility complex, class II, DQ alpha 2 protein-coding HLA-DQA2 major histocompatibility complex, class II, DQ alpha 2 O DX alpha chain|HLA class II histocompatibility antigen, DQ alpha 2 chain|HLA class II histocompatibility antigen, DQ(6) alpha chain|MHC class II DQA2 20121230 -9606 3119 HLA-DQB1 DADB-249P12.2 CELIAC1|HLA-DQB|IDDM1 HGNC:4944|MIM:604305|Ensembl:ENSG00000179344|HPRD:05054|Vega:OTTHUMG00000031124 6 6p21.3 major histocompatibility complex, class II, DQ beta 1 protein-coding HLA-DQB1 major histocompatibility complex, class II, DQ beta 1 O HLA class II histocompatibility antigen, DQ beta 1 chain|MHC DQ beta|MHC class II DQ beta chain|MHC class II HLA-DQ beta glycoprotein|MHC class II antigen DQB1|MHC class II antigen HLA-DQ-beta-1|MHC class2 antigen|lymphocyte antigen 20121230 -9606 3120 HLA-DQB2 DAMA-367I24.2 HLA-DQB1|HLA-DXB HGNC:4945|Ensembl:ENSG00000232629|HPRD:09983|HPRD:09984|Vega:OTTHUMG00000031125 6 6p21 major histocompatibility complex, class II, DQ beta 2 protein-coding HLA-DQB2 major histocompatibility complex, class II, DQ beta 2 O DV19.1 (major histocompatibility complex, class II, DQ beta 2 (HLA-DXB))|HLA class II histocompatibility antigen, DQ beta 2 chain|HLA class II histocompatibility antigen, DX beta chain|MHC class II antigen DQB2|major histocompatibility complex, class II, DQ beta 1 20121230 -9606 3121 HLA-DQB3 - D6S205|D6S205E|DQB3|DVB|DVbeta|HLA-DVB HGNC:4946 6 6p21.3 major histocompatibility complex, class II, DQ beta 3 protein-coding HLA-DQB3 major histocompatibility complex, class II, DQ beta 3 O - 20120710 -9606 3122 HLA-DRA DASS-397D15.1 HLA-DRA1|MLRW HGNC:4947|MIM:142860|Ensembl:ENSG00000204287|HPRD:00833|Vega:OTTHUMG00000031269 6 6p21.3 major histocompatibility complex, class II, DR alpha protein-coding HLA-DRA major histocompatibility complex, class II, DR alpha O HLA class II histocompatibility antigen, DR alpha chain|MHC cell surface glycoprotein|MHC class II antigen DRA|histocompatibility antigen HLA-DR alpha 20121230 -9606 3123 HLA-DRB1 XXbac-BPG161M6.1 DRB1|DRw10|HLA-DR1B|HLA-DRB|SS1 HGNC:4948|MIM:142857|Ensembl:ENSG00000196126|HPRD:08349|Vega:OTTHUMG00000031196 6 6p21.3 major histocompatibility complex, class II, DR beta 1 protein-coding HLA-DRB1 major histocompatibility complex, class II, DR beta 1 O DW2.2/DR2.2|HLA class II histocompatibility antigen, DR-1 beta chain|MHC class II HLA-DR beta 1 chain|MHC class II HLA-DR-beta cell surface glycoprotein|MHC class II HLA-DRw10-beta|MHC class II antigen|human leucocyte antigen DRB1|lymphocyte antigen DRB1 20121230 -9606 3124 HLA-DRB2 - HLA-DR2B HGNC:4950 6 6p21.3 major histocompatibility complex, class II, DR beta 2 (pseudogene) pseudo HLA-DRB2 major histocompatibility complex, class II, DR beta 2 (pseudogene) O - 20121102 -9606 3125 HLA-DRB3 - HLA-DR3B HGNC:4951|MIM:612735|HPRD:09985 6 6p21.3 major histocompatibility complex, class II, DR beta 3 protein-coding HLA-DRB3 major histocompatibility complex, class II, DR beta 3 O DR7|HLA class II histocompatibility antigen, DR beta 3 chain|HLA class II histocompatibility antigen, DRB1-7 beta chain|MHC class II HLA-DR beta 3 chain|MHC class II antigen DR beta 3 chain|MHC class II antigen DRB3|human leucocyte antigen DRB3 20121230 -9606 3126 HLA-DRB4 DAMC-146E17.2 DR-4|DR4|DRB4|HLA-DR4B HGNC:4952|HPRD:09986 6 6p21.3 major histocompatibility complex, class II, DR beta 4 protein-coding HLA-DRB4 major histocompatibility complex, class II, DR beta 4 O DRB1 transplantation antigen|HLA class II histocompatibility antigen, DR beta 4 chain|MHC HLA DR-beta chain|MHC class II antigen DRB4|MHC class II antigen HLA-DR-beta|MHC class2 antigen|human leucocyte antigen DRB4|leukocyte antigen 20121230 -9606 3127 HLA-DRB5 hCG_1998957 HLA-DRB HGNC:4953|MIM:604776|Ensembl:ENSG00000198502|HPRD:09209|Vega:OTTHUMG00000031027 6 6p21.3 major histocompatibility complex, class II, DR beta 5 protein-coding HLA-DRB5 major histocompatibility complex, class II, DR beta 5 O DR beta-5|DR-9|DR2-beta-2|DR9|HLA class II histocompatibility antigen, DR beta 5 chain|HLA class II histocompatibility antigen, DR-5 beta chain|HLA class II histocompatibility antigen, DRB1-9 beta chain|MHC HLA-DR-beta cell surface glycoprotein|MHC HLA-DR-beta chain|MHC class II HLA beta chain|MHC class II antigen DRB1*9|MHC class II antigen DRB5|dw2|human leucocyte antigen DRB5|leukocyte antigen class II 20121230 -9606 3128 HLA-DRB6 - - HGNC:4954 6 6p21.3 major histocompatibility complex, class II, DR beta 6 (pseudogene) pseudo HLA-DRB6 major histocompatibility complex, class II, DR beta 6 (pseudogene) O - 20121230 -9606 3129 HLA-DRB7 - - HGNC:4955 6 6p21.3 major histocompatibility complex, class II, DR beta 7 (pseudogene) pseudo HLA-DRB7 major histocompatibility complex, class II, DR beta 7 (pseudogene) O - 20121102 -9606 3130 HLA-DRB8 - - HGNC:4956 6 6p21.3 major histocompatibility complex, class II, DR beta 8 (pseudogene) pseudo HLA-DRB8 major histocompatibility complex, class II, DR beta 8 (pseudogene) O - 20121230 -9606 3131 HLF - - HGNC:4977|MIM:142385|Ensembl:ENSG00000108924|HPRD:00797|Vega:OTTHUMG00000177840 17 17q22 hepatic leukemia factor protein-coding HLF hepatic leukemia factor O - 20121230 -9606 3132 HLA-DRB9 - D6S206|D6S206E|HLA-DR1BL|HLA-DRB1L HGNC:4957 6 6p21.3 major histocompatibility complex, class II, DR beta 9 (pseudogene) pseudo HLA-DRB9 major histocompatibility complex, class II, DR beta 9 (pseudogene) O - 20121230 -9606 3133 HLA-E DAMA-277I14.1 EA1.2|EA2.1|HLA-6.2|MHC|QA1 HGNC:4962|MIM:143010|Ensembl:ENSG00000204592|HPRD:00877|Vega:OTTHUMG00000031155 6 6p21.3 major histocompatibility complex, class I, E protein-coding HLA-E major histocompatibility complex, class I, E O HLA class I histocompatibility antigen, E alpha chain|HLA class I histocompatibility antigen, alpha chain E|MHC HLA-E alpha-1|MHC HLA-E alpha-2.1|MHC class I antigen E|lymphocyte antigen 20121230 -9606 3134 HLA-F DADB-68M4.2 CDA12|HLA-5.4|HLA-CDA12|HLAF HGNC:4963|MIM:143110|Ensembl:ENSG00000204642|HPRD:00884|Vega:OTTHUMG00000031156 6 6p21.3 major histocompatibility complex, class I, F protein-coding HLA-F major histocompatibility complex, class I, F O HLA F antigen|HLA class I histocompatibility antigen, alpha chain F|HLA class I molecule|MHC class I antigen F|MHC class Ib antigen|leukocyte antigen F 20121230 -9606 3135 HLA-G DADB-15K14.8 MHC-G HGNC:4964|MIM:142871|Ensembl:ENSG00000204632|HPRD:00834|Vega:OTTHUMG00000031157 6 6p21.3 major histocompatibility complex, class I, G protein-coding HLA-G major histocompatibility complex, class I, G O HLA G antigen|HLA class I histocompatibility antigen, alpha chain G|HLA class I molecule|HLA-G histocompatibility antigen, class I, G|MHC class I antigen G|b2 microglobulin 20121230 -9606 3136 HLA-H - HLAHP HGNC:4965 6 6p21.3 major histocompatibility complex, class I, H (pseudogene) pseudo HLA-H major histocompatibility complex, class I, H (pseudogene) O - 20121230 -9606 3137 HLA-J - CDA12|D6S203|HLA-59|HLA-CDA12 HGNC:4967 6 6p21.31 major histocompatibility complex, class I, J (pseudogene) pseudo HLA-J major histocompatibility complex, class I, J (pseudogene) O - 20121230 -9606 3138 HLA-K - HLA-70|HLA70|HLAK HGNC:4969 6 6p21.3 major histocompatibility complex, class I, K (pseudogene) pseudo HLA-K major histocompatibility complex, class I, K (pseudogene) O - 20121230 -9606 3139 HLA-L hCG_23770 HLA-92|HLA92|HLAL HGNC:4970 6 6p21.3 major histocompatibility complex, class I, L (pseudogene) pseudo HLA-L major histocompatibility complex, class I, L (pseudogene) O - 20121230 -9606 3140 MR1 RP11-309G3.1 HLALS HGNC:4975|MIM:600764|Ensembl:ENSG00000153029|HPRD:09012|Vega:OTTHUMG00000035175 1 1q25.3 major histocompatibility complex, class I-related protein-coding MR1 major histocompatibility complex, class I-related O MHC class I-like antigen MR-1|MHC class I-related gene protein|MHC class-I related-gene protein|class I histocompatibility antigen-like protein|major histocompatibility complex class I-related gene protein|major histocompatibility complex, class I-like sequence 20121230 -9606 3141 HLCS - HCS HGNC:4976|MIM:609018|Ensembl:ENSG00000159267|HPRD:08360|Vega:OTTHUMG00000086636 21 21q22.13 holocarboxylase synthetase (biotin-(proprionyl-CoA-carboxylase (ATP-hydrolysing)) ligase) protein-coding HLCS holocarboxylase synthetase (biotin-(proprionyl-CoA-carboxylase (ATP-hydrolysing)) ligase) O biotin apo-protein ligase|biotin--[acetyl-CoA-carboxylase] ligase|biotin--[methylcrotonoyl-CoA-carboxylase] ligase|biotin--[methylmalonyl-CoA-carboxytransferase] ligase|biotin--protein ligase|holocarboxylase synthetase (biotin-(proprionyl-Coenzyme A-carboxylase (ATP-hydrolysing)) ligase) 20121230 -9606 3142 HLX RP11-295M18.3 HB24|HLX1 HGNC:4978|MIM:142995|Ensembl:ENSG00000136630|HPRD:00875|Vega:OTTHUMG00000037352 1 1q41 H2.0-like homeobox protein-coding HLX H2.0-like homeobox O H2.0-like homeo box 1|H2.0-like homeo box-1|H2.0-like homeobox 1|H2.0-like homeobox protein|homeobox protein HB24|homeobox protein HLX1 20121230 -9606 3145 HMBS - PBG-D|PBGD|PORC|UPS HGNC:4982|MIM:609806|Ensembl:ENSG00000256269|HPRD:01440|Vega:OTTHUMG00000168295 11 11q23.3 hydroxymethylbilane synthase protein-coding HMBS hydroxymethylbilane synthase O porphobilinogen deaminase|porphyria, acute; Chester type|pre-uroporphyrinogen synthase|uroporphyrinogen I synthase|uroporphyrinogen I synthetase 20121230 -9606 3146 HMGB1 RP11-550P23.1 HMG1|HMG3|SBP-1 HGNC:4983|MIM:163905|Ensembl:ENSG00000189403|HPRD:01228|Vega:OTTHUMG00000016670 13 13q12 high mobility group box 1 protein-coding HMGB1 high mobility group box 1 O Amphoterin|HMG-1|Sulfoglucuronyl carbohydrate binding protein|high mobility group protein 1|high mobility group protein B1|high-mobility group (nonhistone chromosomal) protein 1|high-mobility group box 1 20121230 -9606 3148 HMGB2 - HMG2 HGNC:5000|MIM:163906|Ensembl:ENSG00000164104|HPRD:01229|Vega:OTTHUMG00000160799 4 4q31 high mobility group box 2 protein-coding HMGB2 high mobility group box 2 O HMG-2|high mobility group protein 2|high mobility group protein B2|high-mobility group (nonhistone chromosomal) protein 2|high-mobility group box 2 20121230 -9606 3149 HMGB3 - HMG-2a|HMG-4|HMG2A|HMG4 HGNC:5004|MIM:300193|Ensembl:ENSG00000029993|HPRD:02181|Vega:OTTHUMG00000024162 X Xq28 high mobility group box 3 protein-coding HMGB3 high mobility group box 3 O high mobility group protein 2a|high mobility group protein 4|high mobility group protein B3|high-mobility group (nonhistone chromosomal) protein 4|high-mobility group box 3|non-histone chromosomal protein 20121230 -9606 3150 HMGN1 - HMG14 HGNC:4984|MIM:163920|Ensembl:ENSG00000205581|HPRD:01231|Vega:OTTHUMG00000066178 21 21q22.2 high mobility group nucleosome binding domain 1 protein-coding HMGN1 high mobility group nucleosome binding domain 1 O high mobility group nucleosome-binding domain-containing protein 1|high-mobility group (nonhistone chromosomal) protein 14|high-mobility group nucleosome binding 1|high-mobility group nucleosome binding domain 1|non-histone chromosomal protein HMG-14|nonhistone chromosomal protein HMG-14 20121230 -9606 3151 HMGN2 - HMG17 HGNC:4986|MIM:163910|Ensembl:ENSG00000198830|HPRD:01230|Vega:OTTHUMG00000003555 1 1p36.1 high mobility group nucleosomal binding domain 2 protein-coding HMGN2 high mobility group nucleosomal binding domain 2 O high mobility group nucleosome-binding domain-containing protein 2|high mobility group protein N2|high-mobility group (nonhistone chromosomal) protein 17|high-mobility group nucleosomal binding domain 2|non-histone chromosomal protein HMG-17|nonhistone chromosomal protein HMG-17 20121230 -9606 3152 HMGN2P11 - 28H|HMG17P1|HMGN2L11 HGNC:4990 7 7q21.11 high mobility group nucleosomal binding domain 2 pseudogene 11 pseudo HMGN2P11 high mobility group nucleosomal binding domain 2 pseudogene 11 O - 20121230 -9606 3153 HMGN2P12 - 60H|HMG17P2|HMGN2L12 HGNC:4991 6 6q21 high mobility group nucleosomal binding domain 2 pseudogene 12 pseudo HMGN2P12 high mobility group nucleosomal binding domain 2 pseudogene 12 O - 20120720 -9606 3155 HMGCL - HL HGNC:5005|MIM:613898|Ensembl:ENSG00000117305|HPRD:02003|Vega:OTTHUMG00000002963 1 1p36.1-p35 3-hydroxymethyl-3-methylglutaryl-CoA lyase protein-coding HMGCL 3-hydroxymethyl-3-methylglutaryl-CoA lyase O 3-hydroxy-3-methylglutarate-CoA lyase|3-hydroxy-3-methylglutaryl-CoA lyase|3-hydroxymethyl-3-methylglutaryl-Coenzyme A lyase|HMG-CoA lyase|hydroxymethylglutaricaciduria|hydroxymethylglutaryl-CoA lyase, mitochondrial|mitochondrial 3-hydroxy-3-methylglutaryl-CoA lyase 20121230 -9606 3156 HMGCR - LDLCQ3 HGNC:5006|MIM:142910|Ensembl:ENSG00000113161|HPRD:00836|Vega:OTTHUMG00000102069 5 5q13.3-q14 3-hydroxy-3-methylglutaryl-CoA reductase protein-coding HMGCR 3-hydroxy-3-methylglutaryl-CoA reductase O 3-hydroxy-3-methylglutaryl CoA reductase (NADPH)|3-hydroxy-3-methylglutaryl-Coenzyme A reductase|HMG-CoA reductase|hydroxymethylglutaryl-CoA reductase 20121230 -9606 3157 HMGCS1 - HMGCS HGNC:5007|MIM:142940|Ensembl:ENSG00000112972|HPRD:07515|Vega:OTTHUMG00000162231 5 5p14-p13 3-hydroxy-3-methylglutaryl-CoA synthase 1 (soluble) protein-coding HMGCS1 3-hydroxy-3-methylglutaryl-CoA synthase 1 (soluble) O 3-hydroxy-3-methylglutaryl coenzyme A (HMG-CoA) synthase|3-hydroxy-3-methylglutaryl-Coenzyme A synthase 1 (soluble)|hydroxymethylglutaryl-CoA synthase, cytoplasmic 20121230 -9606 3158 HMGCS2 - - HGNC:5008|MIM:600234|Ensembl:ENSG00000134240|HPRD:02580|Vega:OTTHUMG00000012101 1 1p13-p12 3-hydroxy-3-methylglutaryl-CoA synthase 2 (mitochondrial) protein-coding HMGCS2 3-hydroxy-3-methylglutaryl-CoA synthase 2 (mitochondrial) O 3-hydroxy-3-methylglutaryl-Coenzyme A synthase 2 (mitochondrial)|HMG-CoA synthase|hydroxymethylglutaryl-CoA synthase, mitochondrial 20121230 -9606 3159 HMGA1 RP11-513I15.2 HMG-R|HMGA1A|HMGIY HGNC:5010|MIM:600701|Ensembl:ENSG00000137309|HPRD:02829|Vega:OTTHUMG00000014539 6 6p21 high mobility group AT-hook 1 protein-coding HMGA1 high mobility group AT-hook 1 O HMG-I(Y)|high mobility group protein A1|high mobility group protein HMG-I/HMG-Y|high mobility group protein R|high-mobility group (nonhistone chromosomal) protein isoforms I and Y|nonhistone chromosomal high-mobility group protein HMG-I/HMG-Y 20121230 -9606 3160 HMI - IPA|ITO HGNC:5011|MIM:300337 - - hypomelanosis of Ito unknown HMI hypomelanosis of Ito O - 20110215 -9606 3161 HMMR - CD168|IHABP|RHAMM HGNC:5012|MIM:600936|Ensembl:ENSG00000072571|HPRD:02963|Vega:OTTHUMG00000130381 5 5q33.2-qter hyaluronan-mediated motility receptor (RHAMM) protein-coding HMMR hyaluronan-mediated motility receptor (RHAMM) O hyaluronan mediated motility receptor|intracellular hyaluronic acid-binding protein|receptor for hyaluronan-mediated motility 20121230 -9606 3162 HMOX1 CTA-286B10.6 HO-1|HSP32|bK286B10 HGNC:5013|MIM:141250|Ensembl:ENSG00000100292|HPRD:00782|Vega:OTTHUMG00000150960 22 22q13.1 heme oxygenase (decycling) 1 protein-coding HMOX1 heme oxygenase (decycling) 1 O heat shock protein, 32-kD|heme oxygenase 1 20121230 -9606 3163 HMOX2 - HO-2 HGNC:5014|MIM:141251|Ensembl:ENSG00000103415|HPRD:00783|Vega:OTTHUMG00000129473 16 16p13.3 heme oxygenase (decycling) 2 protein-coding HMOX2 heme oxygenase (decycling) 2 O heme oxygenase 2 20121230 -9606 3164 NR4A1 - GFRP1|HMR|N10|NAK-1|NGFIB|NP10|NUR77|TR3 HGNC:7980|MIM:139139|Ensembl:ENSG00000123358|HPRD:00744|Vega:OTTHUMG00000150393 12 12q13 nuclear receptor subfamily 4, group A, member 1 protein-coding NR4A1 nuclear receptor subfamily 4, group A, member 1 O ST-59|TR3 orphan receptor|early response protein NAK1|growth factor-inducible nuclear protein N10|hormone receptor|nerve growth factor IB nuclear receptor variant 1|nuclear hormone receptor NUR/77|nuclear receptor subfamily 4 group A member 1|orphan nuclear receptor HMR|orphan nuclear receptor TR3|steroid receptor TR3|testicular receptor 3 20121230 -9606 3166 HMX1 - H6|NKX5-3 HGNC:5017|MIM:142992|Ensembl:ENSG00000215612|HPRD:00873|Vega:OTTHUMG00000160012 4 4p16.1 H6 family homeobox 1 protein-coding HMX1 H6 family homeobox 1 O H6 homeodomain protein|homeobox protein H6|homeobox protein HMX1 20121230 -9606 3167 HMX2 - H6L|Nkx5-2 HGNC:5018|MIM:600647|Ensembl:ENSG00000188816|HPRD:18780|Vega:OTTHUMG00000019198 10 10q26.13 H6 family homeobox 2 protein-coding HMX2 H6 family homeobox 2 O homeo box (H6 family) 2|homeobox protein H6 family member 2|homeobox protein HMX2 20121230 -9606 3169 FOXA1 - HNF3A|TCF3A HGNC:5021|MIM:602294|Ensembl:ENSG00000129514|HPRD:03801|Vega:OTTHUMG00000140253 14 14q12-q13 forkhead box A1 protein-coding FOXA1 forkhead box A1 O HNF-3-alpha|HNF-3A|TCF-3A|forkhead box protein A1|hepatocyte nuclear factor 3-alpha|transcription factor 3A 20121230 -9606 3170 FOXA2 - HNF3B|TCF3B HGNC:5022|MIM:600288|Ensembl:ENSG00000125798|HPRD:02618|Vega:OTTHUMG00000032041 20 20p11 forkhead box A2 protein-coding FOXA2 forkhead box A2 O HNF-3-beta|HNF-3B|TCF-3B|forkhead box protein A2|hepatic nuclear factor-3-beta|hepatocyte nuclear factor 3, beta|hepatocyte nuclear factor 3-beta|transcription factor 3B 20121230 -9606 3171 FOXA3 - FKHH3|HNF3G|TCF3G HGNC:5023|MIM:602295|Ensembl:ENSG00000170608|HPRD:03802 19 19q13.2-q13.4 forkhead box A3 protein-coding FOXA3 forkhead box A3 O HNF-3-gamma|HNF-3G|TCF-3G|fork head-related protein FKH H3|forkhead box protein A3|hepatocyte nuclear factor 3, gamma|hepatocyte nuclear factor 3-gamma|transcription factor 3G 20121230 -9606 3172 HNF4A RP5-1013A22.1 HNF4|HNF4a7|HNF4a8|HNF4a9|HNF4alpha|MODY|MODY1|NR2A1|NR2A21|TCF|TCF14 HGNC:5024|MIM:600281|Ensembl:ENSG00000101076|HPRD:02612|Vega:OTTHUMG00000032531 20 20q13.12 hepatocyte nuclear factor 4, alpha protein-coding HNF4A hepatocyte nuclear factor 4, alpha O HNF4alpha10/11/12|TCF-14|hepatic nuclear factor 4 alpha|hepatocyte nuclear factor 4-alpha|nuclear receptor subfamily 2 group A member 1|transcription factor 14|transcription factor HNF-4 20121230 -9606 3174 HNF4G - NR2A2|NR2A3 HGNC:5026|MIM:605966|Ensembl:ENSG00000164749|HPRD:06909|Vega:OTTHUMG00000149920 8 8q21.11 hepatocyte nuclear factor 4, gamma protein-coding HNF4G hepatocyte nuclear factor 4, gamma O HNF-4-gamma|hepatocyte nuclear factor 4-gamma|nuclear receptor subfamily 2 group A member 2 20121230 -9606 3175 ONECUT1 - HNF-6|HNF6|HNF6A HGNC:8138|MIM:604164|Ensembl:ENSG00000169856|HPRD:05002|Vega:OTTHUMG00000131899 15 15q21.3 one cut homeobox 1 protein-coding ONECUT1 one cut homeobox 1 O hepatocyte nuclear factor 6|hepatocyte nuclear factor 6, alpha|one cut domain family member 1 20121230 -9606 3176 HNMT - HMT|HNMT-S1|HNMT-S2 HGNC:5028|MIM:605238|Ensembl:ENSG00000150540|HPRD:05575|Vega:OTTHUMG00000131751 2 2q22.1 histamine N-methyltransferase protein-coding HNMT histamine N-methyltransferase O - 20121230 -9606 3177 SLC29A2 - DER12|ENT2|HNP36 HGNC:11004|MIM:602110|Ensembl:ENSG00000174669|HPRD:03662|Vega:OTTHUMG00000169056 11 11q13 solute carrier family 29 (nucleoside transporters), member 2 protein-coding SLC29A2 solute carrier family 29 (nucleoside transporters), member 2 O 36 kDa nucleolar protein HNP36|delayed-early response protein 12|equilibrative NBMPR-insensitive nucleoside transporter|equilibrative nitrobenzylmercaptopurine riboside-insensitive nucleoside transporter|equilibrative nucleoside transporter 2|hydrophobic nucleolar protein, 36 kDa|hydrophobic nucleolar protein, 36kD|nucleoside transporter, ei-type|solute carrier family 29 member 2 20121230 -9606 3178 HNRNPA1 - HNRPA1|HNRPA1L3|hnRNP A1|hnRNP-A1 HGNC:5031|MIM:164017|Ensembl:ENSG00000135486|HPRD:01242|Vega:OTTHUMG00000169702 12 12q13.1 heterogeneous nuclear ribonucleoprotein A1 protein-coding HNRNPA1 heterogeneous nuclear ribonucleoprotein A1 O Putative heterogeneous nuclear ribonucleoprotein A1-like 3|helix-destabilizing protein|heterogeneous nuclear ribonucleoprotein A1B protein|heterogeneous nuclear ribonucleoprotein B2 protein|heterogeneous nuclear ribonucleoprotein core protein A1|hnRNP A1-like 3|hnRNP core protein A1|hnRNP core protein A1-like 3|nuclear ribonucleoprotein particle A1 protein|single-strand DNA-binding protein UP1|single-strand RNA-binding protein 20121230 -9606 3181 HNRNPA2B1 - HNRNPA2|HNRNPB1|HNRPA2|HNRPA2B1|HNRPB1|RNPA2|SNRPB1 HGNC:5033|MIM:600124|Ensembl:ENSG00000122566|HPRD:02526|Vega:OTTHUMG00000023471 7 7p15 heterogeneous nuclear ribonucleoprotein A2/B1 protein-coding HNRNPA2B1 heterogeneous nuclear ribonucleoprotein A2/B1 O heterogeneous nuclear ribonucleoproteins A2/B1|hnRNP A2 / hnRNP B1|nuclear ribonucleoprotein particle A2 protein 20121230 -9606 3182 HNRNPAB - ABBP1|HNRPAB HGNC:5034|MIM:602688|Ensembl:ENSG00000197451|HPRD:04067|Vega:OTTHUMG00000163452 5 5q35.3 heterogeneous nuclear ribonucleoprotein A/B protein-coding HNRNPAB heterogeneous nuclear ribonucleoprotein A/B O ABBP-1|APOBEC1-binding protein 1|apobec-1 binding protein 1|apolipoprotein B mRNA editing enzyme, catalytic polypeptide 1-binding protein 1|hnRNP A/B|hnRNP type A/B protein 20121230 -9606 3183 HNRNPC - C1|C2|HNRNP|HNRPC|SNRPC HGNC:5035|MIM:164020|Ensembl:ENSG00000092199|HPRD:01243|Vega:OTTHUMG00000170757 14 14q11.2 heterogeneous nuclear ribonucleoprotein C (C1/C2) protein-coding HNRNPC heterogeneous nuclear ribonucleoprotein C (C1/C2) O heterogeneous nuclear ribonucleoproteins C1/C2|hnRNP C1/C2|nuclear ribonucleoprotein particle C1 protein|nuclear ribonucleoprotein particle C2 protein 20121230 -9606 3184 HNRNPD - AUF1|AUF1A|HNRPD|P37|hnRNPD0 HGNC:5036|MIM:601324|Ensembl:ENSG00000138668|HPRD:03206|Vega:OTTHUMG00000130290 4 4q21 heterogeneous nuclear ribonucleoprotein D (AU-rich element RNA binding protein 1, 37kDa) protein-coding HNRNPD heterogeneous nuclear ribonucleoprotein D (AU-rich element RNA binding protein 1, 37kDa) O ARE-binding protein AUFI, type A|heterogeneous nuclear ribonucleoprotein D0|hnRNP D0 20121230 -9606 3185 HNRNPF - HNRPF|OK/SW-cl.23|mcs94-1 HGNC:5039|MIM:601037|Ensembl:ENSG00000169813|HPRD:03023|Vega:OTTHUMG00000018029 10 10q11.21 heterogeneous nuclear ribonucleoprotein F protein-coding HNRNPF heterogeneous nuclear ribonucleoprotein F O HnRNP F protein|nucleolin-like protein mcs94-1 20121230 -9606 3186 RBMXP1 - HNRNP-G|HNRPG HGNC:9911 6 6p12.3 RNA binding motif protein, X-linked pseudogene 1 pseudo RBMXP1 RNA binding motif protein, X-linked pseudogene 1 O - 20121230 -9606 3187 HNRNPH1 - HNRPH|HNRPH1|hnRNPH HGNC:5041|MIM:601035|Ensembl:ENSG00000169045|HPRD:03021|Vega:OTTHUMG00000130908 5 5q35.3 heterogeneous nuclear ribonucleoprotein H1 (H) protein-coding HNRNPH1 heterogeneous nuclear ribonucleoprotein H1 (H) O heterogeneous nuclear ribonucleoprotein H 20121230 -9606 3188 HNRNPH2 - FTP3|HNRPH'|HNRPH2|hnRNPH' HGNC:5042|MIM:300610|Ensembl:ENSG00000126945|HPRD:03022|Vega:OTTHUMG00000022029 X Xq22 heterogeneous nuclear ribonucleoprotein H2 (H') protein-coding HNRNPH2 heterogeneous nuclear ribonucleoprotein H2 (H') O FTP-3|heterogeneous nuclear ribonucleoprotein H-prime|heterogeneous nuclear ribonucleoprotein H2|hnRNP H'|hnRNP H2 20121230 -9606 3189 HNRNPH3 - 2H9|HNRPH3 HGNC:5043|MIM:602324|Ensembl:ENSG00000096746|HPRD:03818|Vega:OTTHUMG00000018349 10 10q22 heterogeneous nuclear ribonucleoprotein H3 (2H9) protein-coding HNRNPH3 heterogeneous nuclear ribonucleoprotein H3 (2H9) O heterogeneous nuclear ribonucleoprotein 2H9|heterogeneous nuclear ribonucleoprotein H3|hnRNP 2H9|hnRNP H3 20121230 -9606 3190 HNRNPK RP11-575L7.1 CSBP|HNRPK|TUNP HGNC:5044|MIM:600712|Ensembl:ENSG00000165119|HPRD:02834|Vega:OTTHUMG00000020107 9 9q21.32-q21.33 heterogeneous nuclear ribonucleoprotein K protein-coding HNRNPK heterogeneous nuclear ribonucleoprotein K O dC-stretch binding protein|transformation upregulated nuclear protein 20121230 -9606 3191 HNRNPL P/OKcl.14 HNRPL|hnRNP-L HGNC:5045|MIM:603083|Ensembl:ENSG00000104824|HPRD:04360 19 19q13.2 heterogeneous nuclear ribonucleoprotein L protein-coding HNRNPL heterogeneous nuclear ribonucleoprotein L O hnRNP L 20121230 -9606 3192 HNRNPU RP11-11N7.3 HNRPU|SAF-A|U21.1|hnRNP U HGNC:5048|MIM:602869|Ensembl:ENSG00000153187|HPRD:04185|Vega:OTTHUMG00000040396 1 1q44 heterogeneous nuclear ribonucleoprotein U (scaffold attachment factor A) protein-coding HNRNPU heterogeneous nuclear ribonucleoprotein U (scaffold attachment factor A) O heterogeneous nuclear ribonucleoprotein U|p120 nuclear protein|pp120|scaffold attachment factor A 20121230 -9606 3193 HOAC - ULG4 HGNC:5049 - - hypoacusis 2 (autosomal recessive) unknown HOAC hypoacusis 2 (autosomal recessive) O - 20110215 -9606 3195 TLX1 - HOX11|TCL3 HGNC:5056|MIM:186770|Ensembl:ENSG00000107807|HPRD:01728|Vega:OTTHUMG00000019341 10 10q24 T-cell leukemia homeobox 1 protein-coding TLX1 T-cell leukemia homeobox 1 O T-cell leukemia homeobox protein 1|T-cell leukemia/lymphoma protein 3|homeo box-11 (T-cell leukemia-3 associated breakpoint, homologous to Drosophila Notch)|homeobox protein Hox-11|proto-oncogene TCL-3 20121230 -9606 3196 TLX2 - HOX11L1|NCX HGNC:5057|MIM:604240|Ensembl:ENSG00000115297|HPRD:07254|Vega:OTTHUMG00000129960 2 2p13.1 T-cell leukemia homeobox 2 protein-coding TLX2 T-cell leukemia homeobox 2 O T-cell leukemia homeobox protein 2|homeo box 11-like 1|homeobox protein Hox-11L1|neural crest homeobox protein 20121230 -9606 3197 HOXA@ - HOX1@ HGNC:5098 7 7p15.2 homeobox A cluster other HOXA@ homeobox A cluster O - 20110619 -9606 3198 HOXA1 - BSAS|HOX1|HOX1F HGNC:5099|MIM:142955|Ensembl:ENSG00000105991|HPRD:00843|Vega:OTTHUMG00000023207 7 7p15.3 homeobox A1 protein-coding HOXA1 homeobox A1 O HOX A1 homeodomain protein|Hox 1.6-like protein|homeo box A1|homeobox 1F|homeobox protein Hox-1F|homeobox protein Hox-A1|lab-like protein 20121230 -9606 3199 HOXA2 - HOX1K HGNC:5103|MIM:604685|Ensembl:ENSG00000105996|HPRD:05252|Vega:OTTHUMG00000023208 7 7p15.2 homeobox A2 protein-coding HOXA2 homeobox A2 O homeobox protein Hox-1K|homeobox protein Hox-A2 20121230 -9606 3200 HOXA3 - HOX1|HOX1E HGNC:5104|MIM:142954|Ensembl:ENSG00000105997|HPRD:00842|Vega:OTTHUMG00000023209 7 7p15.2 homeobox A3 protein-coding HOXA3 homeobox A3 O Hox-1.5-like protein|homeo box 1E|homeo box A3|homeobox protein Hox-1E|homeobox protein Hox-A3 20121230 -9606 3201 HOXA4 - HOX1|HOX1D HGNC:5105|MIM:142953|Ensembl:ENSG00000197576|HPRD:00841|Vega:OTTHUMG00000023213 7 7p15.2 homeobox A4 protein-coding HOXA4 homeobox A4 O Dfd-like protein|Hox-1.4-like protein|homeo box A4|homeobox protein Hox-1.4|homeobox protein Hox-1D|homeobox protein Hox-A4 20121230 -9606 3202 HOXA5 - HOX1|HOX1.3|HOX1C HGNC:5106|MIM:142952|Ensembl:ENSG00000106004|HPRD:00840|Vega:OTTHUMG00000023214 7 7p15.2 homeobox A5 protein-coding HOXA5 homeobox A5 O homeo box 1C|homeo box A5|homeobox protein HOXA5|homeobox protein Hox-1C|homeobox protein Hox-A5 20121230 -9606 3203 HOXA6 - HOX1|HOX1.2|HOX1B HGNC:5107|MIM:142951|Ensembl:ENSG00000106006|HPRD:00839|Vega:OTTHUMG00000023216 7 7p15.2 homeobox A6 protein-coding HOXA6 homeobox A6 O homeo box 1B|homeo box A6|homeobox protein HOXA6|homeobox protein Hox-1B|homeobox protein Hox-A6 20121230 -9606 3204 HOXA7 - ANTP|HOX1|HOX1.1|HOX1A HGNC:5108|MIM:142950|Ensembl:ENSG00000122592|HPRD:00838|Vega:OTTHUMG00000023217 7 7p15.2 homeobox A7 protein-coding HOXA7 homeobox A7 O homeo box A7|homeobox protein HOX-1A|homeobox protein Hox 1.1|homeobox protein Hox-A7 20121230 -9606 3205 HOXA9 - ABD-B|HOX1|HOX1.7|HOX1G HGNC:5109|MIM:142956|Ensembl:ENSG00000078399|HPRD:00844|Vega:OTTHUMG00000023220 7 7p15.2 homeobox A9 protein-coding HOXA9 homeobox A9 O homeobox protein Hox-1G|homeobox protein Hox-A9|homeodomain protein HOXA9 20121230 -9606 3206 HOXA10 - HOX1|HOX1.8|HOX1H|PL HGNC:5100|MIM:142957|Ensembl:ENSG00000253293|HPRD:00845|Vega:OTTHUMG00000023436 7 7p15.2 homeobox A10 protein-coding HOXA10 homeobox A10 O homeo box A10|homeobox protein 1H|homeobox protein HOXA10|homeobox protein Hox-1.8|homeobox protein Hox-1H|homeobox protein Hox-A10 20121230 -9606 3207 HOXA11 - HOX1|HOX1I HGNC:5101|MIM:142958|Ensembl:ENSG00000005073|HPRD:00846|Vega:OTTHUMG00000023437 7 7p15.2 homeobox A11 protein-coding HOXA11 homeobox A11 O homeo box 1I|homeobox protein HOXA11|homeobox protein Hox-1I|homeobox protein Hox-A11 20121230 -9606 3208 HPCA - BDR2 HGNC:5144|MIM:142622|Ensembl:ENSG00000121905|HPRD:00811|Vega:OTTHUMG00000004017 1 1p35-p34.2 hippocalcin protein-coding HPCA hippocalcin O calcium-binding protein BDR-2|neuron specific calcium-binding protein hippocalcin|neuron-specific calcium-binding protein hippocalcin 20121230 -9606 3209 HOXA13 - HOX1|HOX1J HGNC:5102|MIM:142959|Ensembl:ENSG00000106031|HPRD:00847|Vega:OTTHUMG00000023438 7 7p15.2 homeobox A13 protein-coding HOXA13 homeobox A13 O homeo box 1J|homeo box A13|homeobox protein HOXA13|homeobox protein Hox-1J|homeobox protein Hox-A13|transcription factor HOXA13 20121230 -9606 3210 HOXB@ - HOX2@ HGNC:5110 17 17q21.32 homeobox B cluster other HOXB@ homeobox B cluster O - 20100721 -9606 3211 HOXB1 - HCFP3|HOX2|HOX2I|Hox-2.9 HGNC:5111|MIM:142968|Ensembl:ENSG00000120094|HPRD:00855|Vega:OTTHUMG00000159929 17 17q21.3 homeobox B1 protein-coding HOXB1 homeobox B1 O homeobox protein Hox-2I|homeobox protein Hox-B1 20121230 -9606 3212 HOXB2 - HOX2|HOX2H|Hox-2.8|K8 HGNC:5113|MIM:142967|Ensembl:ENSG00000173917|HPRD:00854|Vega:OTTHUMG00000159930 17 17q21.32 homeobox B2 protein-coding HOXB2 homeobox B2 O K8 home protein|homeo box 2H|homeo box B2|homeobox protein Hox-2.8|homeobox protein Hox-2H|homeobox protein Hox-B2 20121230 -9606 3213 HOXB3 - HOX2|HOX2G|Hox-2.7 HGNC:5114|MIM:142966|Ensembl:ENSG00000120093|HPRD:00853|Vega:OTTHUMG00000159922 17 17q21.3 homeobox B3 protein-coding HOXB3 homeobox B3 O homeo box 2G|homeo box B3|homeobox protein Hox-2.7|homeobox protein Hox-2G|homeobox protein Hox-B3 20121230 -9606 3214 HOXB4 - HOX-2.6|HOX2|HOX2F HGNC:5115|MIM:142965|Ensembl:ENSG00000182742|HPRD:07032|Vega:OTTHUMG00000159920 17 17q21.32 homeobox B4 protein-coding HOXB4 homeobox B4 O homeo box 2F|homeo box B4|homeobox protein Hox-2.6|homeobox protein Hox-2F|homeobox protein Hox-B4 20121230 -9606 3215 HOXB5 - HHO.C10|HOX2|HOX2A|HU-1|Hox2.1 HGNC:5116|MIM:142960|Ensembl:ENSG00000120075|HPRD:00848|Vega:OTTHUMG00000159913 17 17q21.3 homeobox B5 protein-coding HOXB5 homeobox B5 O homeo box 2A|homeo box B5|homeobox protein HHO.C10|homeobox protein Hox-2A|homeobox protein Hox-B5|homeobox protein Hu-1 20121230 -9606 3216 HOXB6 - HOX2|HOX2B|HU-2|Hox-2.2 HGNC:5117|MIM:142961|Ensembl:ENSG00000108511|HPRD:00849|Vega:OTTHUMG00000159912 17 17q21.3 homeobox B6 protein-coding HOXB6 homeobox B6 O homeo box 2B|homeo box B6|homeobox protein Hox-2.2|homeobox protein Hox-2B|homeobox protein Hox-B6|homeobox protein Hu-2 20121230 -9606 3217 HOXB7 - HHO.C1|HOX2|HOX2C|Hox-2.3 HGNC:5118|MIM:142962|Ensembl:ENSG00000120087|HPRD:00850|Vega:OTTHUMG00000170231 17 17q21.3 homeobox B7 protein-coding HOXB7 homeobox B7 O homeo box 2C|homeo box B7|homeo box c1 protein|homeobox protein HHO.C1|homeobox protein Hox-2C|homeobox protein Hox-B7 20121230 -9606 3218 HOXB8 - HOX2|HOX2D|Hox-2.4 HGNC:5119|MIM:142963|Ensembl:ENSG00000120068|HPRD:00851|Vega:OTTHUMG00000159904 17 17q21.3 homeobox B8 protein-coding HOXB8 homeobox B8 O homeo box 2D|homeo box B8|homeobox protein Hox-2.4|homeobox protein Hox-2D|homeobox protein Hox-B8 20121230 -9606 3219 HOXB9 - HOX-2.5|HOX2|HOX2E HGNC:5120|MIM:142964|Ensembl:ENSG00000170689|HPRD:00852|Vega:OTTHUMG00000159907 17 17q21.3 homeobox B9 protein-coding HOXB9 homeobox B9 O homeo box 2E|homeo box B9|homeobox protein Hox-2.5|homeobox protein Hox-2E|homeobox protein Hox-B9 20121230 -9606 3220 HOXC@ - HOX3@ HGNC:5121 12 12q12-q13 homeobox C cluster other HOXC@ homeobox C cluster O - 20080828 -9606 3221 HOXC4 - HOX3|HOX3E|cp19 HGNC:5126|MIM:142974|Ensembl:ENSG00000198353|HPRD:00860|Vega:OTTHUMG00000160036 12 12q13.3 homeobox C4 protein-coding HOXC4 homeobox C4 O homeo box 3E|homeo box C4|homeobox protein CP19|homeobox protein Hox-3E|homeobox protein Hox-C4 20121230 -9606 3222 HOXC5 - CP11|HOX3|HOX3D HGNC:5127|MIM:142973|Ensembl:ENSG00000172789|HPRD:00859|Vega:OTTHUMG00000160028 12 12q13.3 homeobox C5 protein-coding HOXC5 homeobox C5 O homeo box C5|homeobox protein CP11|homeobox protein Hox-3D|homeobox protein Hox-C5 20121230 -9606 3223 HOXC6 - CP25|HHO.C8|HOX3|HOX3C HGNC:5128|MIM:142972|Ensembl:ENSG00000197757|HPRD:00858|Vega:OTTHUMG00000160027 12 12q13.3 homeobox C6 protein-coding HOXC6 homeobox C6 O homeo box 3C|homeo box C6|homeo box C8 protein|homeobox protein CP25|homeobox protein HHO.C8|homeobox protein Hox-3C|homeobox protein Hox-C6 20121230 -9606 3224 HOXC8 - HOX3|HOX3A HGNC:5129|MIM:142970|Ensembl:ENSG00000037965|HPRD:00856|Vega:OTTHUMG00000160032 12 12q13.3 homeobox C8 protein-coding HOXC8 homeobox C8 O Hox-3.1, mouse, homolog of|homeo box 3A|homeo box C8|homeobox protein Hox-3A|homeobox protein Hox-C8 20121230 -9606 3225 HOXC9 - HOX3|HOX3B HGNC:5130|MIM:142971|Ensembl:ENSG00000180806|HPRD:00857|Vega:OTTHUMG00000160033 12 12q13.3 homeobox C9 protein-coding HOXC9 homeobox C9 O homeo box C9|homeobox protein Hox-3B|homeobox protein Hox-C9 20121230 -9606 3226 HOXC10 - HOX3I HGNC:5122|MIM:605560|Ensembl:ENSG00000180818|HPRD:05710|Vega:OTTHUMG00000160031 12 12q13.3 homeobox C10 protein-coding HOXC10 homeobox C10 O homeo box C10|homeobox protein Hox-3I|homeobox protein Hox-C10|homeoprotein C10 20121230 -9606 3227 HOXC11 - HOX3H HGNC:5123|MIM:605559|Ensembl:ENSG00000123388|HPRD:09275|Vega:OTTHUMG00000160011 12 12q13.3 homeobox C11 protein-coding HOXC11 homeobox C11 O homeo box C11|homeobox protein Hox-3H|homeobox protein Hox-C11 20121230 -9606 3228 HOXC12 - HOC3F|HOX3|HOX3F HGNC:5124|MIM:142975|Ensembl:ENSG00000123407|HPRD:00861|Vega:OTTHUMG00000160010 12 12q13.13 homeobox C12 protein-coding HOXC12 homeobox C12 O homeo box 3F|homeo box C12|homeobox protein Hox-3F|homeobox protein Hox-C12 20121230 -9606 3229 HOXC13 - ECTD9|HOX3|HOX3G HGNC:5125|MIM:142976|Ensembl:ENSG00000123364|HPRD:00862|Vega:OTTHUMG00000160008 12 12q13.3 homeobox C13 protein-coding HOXC13 homeobox C13 O NUP98/HOXC13|homeo box 3G|homeobox protein Hox-3G|homeobox protein Hox-C13 20121230 -9606 3230 HOXD@ - HOX4@ HGNC:5131 2 2q31.1 homeobox D cluster other HOXD@ homeobox D cluster O - 20120809 -9606 3231 HOXD1 - HOX4|HOX4G|Hox-4.7 HGNC:5132|MIM:142987|Ensembl:ENSG00000128645|HPRD:00870|Vega:OTTHUMG00000132512 2 2q31.1 homeobox D1 protein-coding HOXD1 homeobox D1 O homeo box 4G|homeo box D1|homeobox protein Hox-D1|homeobox protein Hox-GG 20121230 -9606 3232 HOXD3 - HOX1D|HOX4|HOX4A|Hox-4.1 HGNC:5137|MIM:142980|Ensembl:ENSG00000128652|HPRD:00863|Vega:OTTHUMG00000132517 2 2q31.1 homeobox D3 protein-coding HOXD3 homeobox D3 O Hox-4.1, mouse, homolog of|homeo box D3|homeobox protein Hox-4A|homeobox protein Hox-D3 20121230 -9606 3233 HOXD4 - HHO.C13|HOX-5.1|HOX4|HOX4B|Hox-4.2 HGNC:5138|MIM:142981|Ensembl:ENSG00000170166|HPRD:00864|Vega:OTTHUMG00000132515 2 2q31.1 homeobox D4 protein-coding HOXD4 homeobox D4 O Hox-4.2, mouse, homolog of homeo box X|homeobox protein HHO.C13|homeobox protein Hox-4B|homeobox protein Hox-5.1|homeobox protein Hox-D4 20121230 -9606 3234 HOXD8 - HOX4|HOX4E|HOX5.4 HGNC:5139|MIM:142985|Ensembl:ENSG00000175879|HPRD:00868|Vega:OTTHUMG00000132513 2 2q31.1 homeobox D8 protein-coding HOXD8 homeobox D8 O Hox-4.5|homeo box 4E|homeo box D8|homeobox protein 5.4|homeobox protein Hox-4E|homeobox protein Hox-5.4|homeobox protein Hox-D8 20121230 -9606 3235 HOXD9 - HOX4|HOX4C|Hox-4.3|Hox-5.2 HGNC:5140|MIM:142982|Ensembl:ENSG00000128709|HPRD:00865|Vega:OTTHUMG00000132516 2 2q31.1 homeobox D9 protein-coding HOXD9 homeobox D9 O Hox-4.3, mouse, homolog of|homeo box D9|homeobox protein Hox-4C|homeobox protein Hox-5.2|homeobox protein Hox-D9 20121230 -9606 3236 HOXD10 - HOX4|HOX4D|HOX4E|Hox-4.4 HGNC:5133|MIM:142984|Ensembl:ENSG00000128710|HPRD:00867|Vega:OTTHUMG00000132511 2 2q31.1 homeobox D10 protein-coding HOXD10 homeobox D10 O homeo box 4D|homeo box D10|homeobox protein Hox-4D|homeobox protein Hox-4E|homeobox protein Hox-D10 20121230 -9606 3237 HOXD11 - HOX4|HOX4F HGNC:5134|MIM:142986|Ensembl:ENSG00000128713|HPRD:00869|Vega:OTTHUMG00000132510 2 2q31.1 homeobox D11 protein-coding HOXD11 homeobox D11 O Hox-4.6, mouse, homolog of|homeo box 4F|homeo box D11|homeobox protein Hox-4F|homeobox protein Hox-D11 20121230 -9606 3238 HOXD12 - HOX4H HGNC:5135|MIM:142988|Ensembl:ENSG00000170178|HPRD:00871|Vega:OTTHUMG00000150358 2 2q31.1 homeobox D12 protein-coding HOXD12 homeobox D12 O Hox-4.7, mouse, homolog of|homeo box D12|homeobox protein Hox-4H|homeobox protein Hox-D12 20121230 -9606 3239 HOXD13 - BDE|BDSD|HOX4I|SPD HGNC:5136|MIM:142989|Ensembl:ENSG00000128714|HPRD:00872|Vega:OTTHUMG00000132431 2 2q31.1 homeobox D13 protein-coding HOXD13 homeobox D13 O homeo box 4I|homeo box D13|homeobox protein Hox-4I|homeobox protein Hox-D13 20121230 -9606 3240 HP - BP|HP2ALPHA2|HPA1S HGNC:5141|MIM:140100|Ensembl:ENSG00000257017|HPRD:00772|Vega:OTTHUMG00000173009 16 16q22.2 haptoglobin protein-coding HP haptoglobin O binding peptide|haptoglobin alpha(1S)-beta|haptoglobin alpha(2FS)-beta|haptoglobin, alpha polypeptide|haptoglobin, beta polypeptide|zonulin 20121230 -9606 3241 HPCAL1 - BDR1|HLP2|VILIP-3 HGNC:5145|MIM:600207|Ensembl:ENSG00000115756|HPRD:02564|Vega:OTTHUMG00000090451 2 2p25.1 hippocalcin-like 1 protein-coding HPCAL1 hippocalcin-like 1 O calcium-binding protein BDR-1|hippocalcin-like protein 1|visinin-like protein 3 20121230 -9606 3242 HPD - 4-HPPD|4HPPD|GLOD3|HPPDASE|PPD HGNC:5147|MIM:609695|Ensembl:ENSG00000158104|HPRD:02041|Vega:OTTHUMG00000169081 12 12q24-qter 4-hydroxyphenylpyruvate dioxygenase protein-coding HPD 4-hydroxyphenylpyruvate dioxygenase O 4-hydroxyphenylpyruvic acid oxidase|glyoxalase domain containing 3 20121230 -9606 3244 HPE1 - HPEC HGNC:5149|MIM:236100 21 21q22.3 holoprosencephaly 1, alobar unknown HPE1 holoprosencephaly 1, alobar O - 20120622 -9606 3247 HPFH2 - - HGNC:5153|MIM:142335 7 7q36 hereditary persistence of fetal hemoglobin, heterocellular, Indian type unknown HPFH2 hereditary persistence of fetal hemoglobin, heterocellular, Indian type O - 20120622 -9606 3248 HPGD - 15-PGDH|PGDH|PGDH1|PHOAR1|SDR36C1 HGNC:5154|MIM:601688|Ensembl:ENSG00000164120|HPRD:03406|Vega:OTTHUMG00000160772 4 4q34-q35 hydroxyprostaglandin dehydrogenase 15-(NAD) protein-coding HPGD hydroxyprostaglandin dehydrogenase 15-(NAD) O 15-hydroxyprostaglandin dehydrogenase [NAD(+)]|NAD+-dependent 15-hydroxyprostaglandin dehydrogenase|prostaglandin dehydrogenase 1|short chain dehydrogenase/reductase family 36C, member 1 20121230 -9606 3249 HPN - TMPRSS1 HGNC:5155|MIM:142440|Ensembl:ENSG00000105707|HPRD:00801 19 19q11-q13.2 hepsin protein-coding HPN hepsin O serine protease hepsin|serine protease hepsin catalytic chain|serine protease hepsin non-catalytic chain|transmembrane protease serine 1|transmembrane protease, serine 1 20121230 -9606 3250 HPR - A-259H10.2|HP HGNC:5156|MIM:140210|Ensembl:ENSG00000261701|HPRD:00773|Vega:OTTHUMG00000173010 16 16q22.1 haptoglobin-related protein protein-coding HPR haptoglobin-related protein O Haptoglobin-related locus 20121230 -9606 3251 HPRT1 - HGPRT|HPRT HGNC:5157|MIM:308000|Ensembl:ENSG00000165704|HPRD:02388|Vega:OTTHUMG00000022452 X Xq26.1 hypoxanthine phosphoribosyltransferase 1 protein-coding HPRT1 hypoxanthine phosphoribosyltransferase 1 O HGPRTase|hypoxanthine-guanine phosphoribosyltransferase 20121230 -9606 3254 HPRTP2 - - HGNC:5160 5 5p13.3 hypoxanthine phosphoribosyltransferase pseudogene 2 pseudo HPRTP2 hypoxanthine phosphoribosyltransferase pseudogene 2 O - 20121230 -9606 3255 HPRTP3 - - HGNC:5161 11 11q hypoxanthine phosphoribosyltransferase pseudogene 3 pseudo HPRTP3 hypoxanthine phosphoribosyltransferase pseudogene 3 O - 20121230 -9606 3257 HPS1 RP11-439D8.1 HPS HGNC:5163|MIM:604982|Ensembl:ENSG00000107521|HPRD:05403|Vega:OTTHUMG00000018876 10 10q23.1-q23.3 Hermansky-Pudlak syndrome 1 protein-coding HPS1 Hermansky-Pudlak syndrome 1 O Hermansky-Pudlak syndrome 1 protein 20121230 -9606 3258 HPT - HPTX|HYPX HGNC:5165|MIM:307700 X Xq26-q27 hypoparathyroidism unknown HPT hypoparathyroidism O - 20120622 -9606 3259 HPV6AI1 - - HGNC:5168|MIM:604461 14 14q21.1 human papillomavirus (type 6a) integration site 1 other HPV6AI1 human papillomavirus (type 6a) integration site 1 O - 20080828 -9606 3260 HPV18I1 - D8S37|HPV18I HGNC:5166|MIM:167959 8 8q24 human papilloma virus (type 18) integration site 1 other HPV18I1 human papilloma virus (type 18) integration site 1 O - 20080828 -9606 3261 HPV18I2 - PAL2|pal2A|pal2B HGNC:5167|MIM:167960 12 12q13 human papillomavirus (type 18) integration site 2 other HPV18I2 human papillomavirus (type 18) integration site 2 O - 20100629 -9606 3262 HPVC1 - HPV18E5L|PE5L HGNC:5169|MIM:600762 7 7p11.2 human papillomavirus (type 18) E5 central sequence-like 1 miscRNA HPVC1 human papillomavirus (type 18) E5 central sequence-like 1 O - 20121230 -9606 3263 HPX - HX HGNC:5171|MIM:142290|Ensembl:ENSG00000110169|HPRD:00793|Vega:OTTHUMG00000133399 11 11p15.5-p15.4 hemopexin protein-coding HPX hemopexin O beta-1B-glycoprotein 20121230 -9606 3265 HRAS - C-BAS/HAS|C-H-RAS|C-HA-RAS1|CTLO|H-RASIDX|HAMSV|HRAS1|K-RAS|N-RAS|RASH1 HGNC:5173|MIM:190020|Ensembl:ENSG00000174775|HPRD:01813|Vega:OTTHUMG00000131919 11 11p15.5 v-Ha-ras Harvey rat sarcoma viral oncogene homolog protein-coding HRAS v-Ha-ras Harvey rat sarcoma viral oncogene homolog O GTP- and GDP-binding peptide B|GTPase HRas|H-Ras-1|Ha-Ras1 proto-oncoprotein|Ras family small GTP binding protein H-Ras|c-has/bas p21 protein|c-ras-Ki-2 activated oncogene|p19 H-RasIDX protein|p21ras|transformation gene: oncogene HAMSV|transforming protein p21 20121230 -9606 3266 ERAS - HRAS2|HRASP HGNC:5174|MIM:300437|Ensembl:ENSG00000187682|HPRD:02339|Vega:OTTHUMG00000059533 X Xp11.23 ES cell expressed Ras protein-coding ERAS ES cell expressed Ras O E-Ras|GTPase ERas|embryonic stem cell-expressed Ras|small GTPase protein E-Ras|v-Ha-ras Harvey rat sarcoma viral oncogene homolog 2|v-Ha-ras Harvey rat sarcoma viral oncogene homolog pseudogene 20121230 -9606 3267 AGFG1 - HRB|RAB|RIP HGNC:5175|MIM:600862|Ensembl:ENSG00000173744|HPRD:02918|Vega:OTTHUMG00000133186 2 2q36.3 ArfGAP with FG repeats 1 protein-coding AGFG1 ArfGAP with FG repeats 1 O HIV-1 Rev binding protein|HIV-1 Rev-binding protein|Rab, Rev/Rex activation domain-binding protein|arf-GAP domain and FG repeat-containing protein 1|arf-GAP domain and FG repeats-containing protein 1|hRIP, Rev interacting protein|nucleoporin-like protein RIP|rev-interacting protein|rev/Rex activation domain-binding protein 20121230 -9606 3268 AGFG2 tcag7.884 HRBL|RABR HGNC:5177|MIM:604019|Ensembl:ENSG00000106351|HPRD:04932|Vega:OTTHUMG00000156029 7 7q22.1 ArfGAP with FG repeats 2 protein-coding AGFG2 ArfGAP with FG repeats 2 O HIV-1 Rev-binding protein-like protein|Rev/Rex activation domain binding protein-related|arf-GAP domain and FG repeat-containing protein 2|arf-GAP domain and FG repeats-containing protein 2|nucleoporin|rev/Rex activation domain-binding protein related 20121230 -9606 3269 HRH1 - H1-R|hisH1 HGNC:5182|MIM:600167|Ensembl:ENSG00000196639|HPRD:02544|Vega:OTTHUMG00000129719 3 3p25 histamine receptor H1 protein-coding HRH1 histamine receptor H1 O H1R|HH1R|histamine H(1) receptor|histamine H1 receptor|histamine receptor, subclass H1 20121230 -9606 3270 HRC - - HGNC:5178|MIM:142705|Ensembl:ENSG00000130528|HPRD:00818 19 19q13.3 histidine rich calcium binding protein protein-coding HRC histidine rich calcium binding protein O sarcoplasmic reticulum histidine-rich calcium-binding protein 20121230 -9606 3272 HRES1 - - HGNC:5180|MIM:143025|HPRD:15930 1 1q42 HTLV-1 related endogenous sequence unknown HRES1 HTLV-1 related endogenous sequence O - 20120710 -9606 3273 HRG - HPRG|HRGP|THPH11 HGNC:5181|MIM:142640|Ensembl:ENSG00000113905|HPRD:00812|Vega:OTTHUMG00000156578 3 3q27 histidine-rich glycoprotein protein-coding HRG histidine-rich glycoprotein O histidine-proline-rich glycoprotein 20121230 -9606 3274 HRH2 - H2R HGNC:5183|MIM:142703|Ensembl:ENSG00000113749|HPRD:00816|Vega:OTTHUMG00000130660 5 5q35.2 histamine receptor H2 protein-coding HRH2 histamine receptor H2 O HH2R|gastric receptor 1|gastric receptor I|histamine H2 receptor 20121230 -9606 3275 PRMT2 - HRMT1L1 HGNC:5186|MIM:601961|Ensembl:ENSG00000160310|HPRD:09060|Vega:OTTHUMG00000048806 21 21q22.3 protein arginine methyltransferase 2 protein-coding PRMT2 protein arginine methyltransferase 2 O HMT1 (hnRNP methyltransferase, S. cerevisiae)-like 1|HMT1 hnRNP methyltransferase-like 1|PRMT2 alpha|PRMT2 beta|PRMT2 gamma|histone-arginine N-methyltransferase PRMT2|protein arginine N-methyltransferase 2 20121230 -9606 3276 PRMT1 - ANM1|HCP1|HRMT1L2|IR1B4 HGNC:5187|MIM:602950|Ensembl:ENSG00000126457|HPRD:04257|Vega:OTTHUMG00000167568 19 19q13.3 protein arginine methyltransferase 1 protein-coding PRMT1 protein arginine methyltransferase 1 O HMT1 (hnRNP methyltransferase, S. cerevisiae)-like 2|heterogeneous nuclear ribonucleoprotein methyltransferase 1-like 2|histone-arginine N-methyltransferase PRMT1|interferon receptor 1-bound protein 4|protein arginine N-methyltransferase 1 20121230 -9606 3278 HRPT1 - FIHP HGNC:5190|MIM:145000 1 1q25-q31 hyperparathyroidism 1 unknown HRPT1 hyperparathyroidism 1 O - 20110714 -9606 3280 HES1 - HES-1|HHL|HRY|bHLHb39 HGNC:5192|MIM:139605|Ensembl:ENSG00000114315|HPRD:00770|Vega:OTTHUMG00000155984 3 3q28-q29 hairy and enhancer of split 1, (Drosophila) protein-coding HES1 hairy and enhancer of split 1, (Drosophila) O class B basic helix-loop-helix protein 39|hairy homolog|hairy-like protein|transcription factor HES-1 20121230 -9606 3281 HSBP1 - NPC-A-13 HGNC:5203|MIM:604553|Ensembl:ENSG00000230989|HPRD:05185|Vega:OTTHUMG00000176653 16 16q23.3 heat shock factor binding protein 1 protein-coding HSBP1 heat shock factor binding protein 1 O heat shock factor-binding protein 1|nasopharyngeal carcinoma-associated antigen 13 20121230 -9606 3283 HSD3B1 RP5-920G3.4 3BETAHSD|HSD3B|HSDB3|HSDB3A|I|SDR11E1 HGNC:5217|MIM:109715|Ensembl:ENSG00000203857|HPRD:04920|Vega:OTTHUMG00000012525 1 1p13.1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 1 protein-coding HSD3B1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 1 O 3 beta-hydroxysteroid dehydrogenase/Delta 5-->4-isomerase type 1|3 beta-hydroxysteroid dehydrogenase/Delta 5-->4-isomerase type I|3-beta-HSD I|3-beta-hydroxy-5-ene steroid dehydrogenase|3-beta-hydroxy-Delta(5)-steroid dehydrogenase|delta-5-3-ketosteroid isomerase|hydroxy-delta-5-steroid dehydrogenase, 3 beta-and steroid delta-isomerase 1|progesterone reductase|short chain dehydrogenase/reductase family 11E, member 1|steroid Delta-isomerase|trophoblast antigen FDO161G 20121230 -9606 3284 HSD3B2 RP5-871G17.2 HSD3B|HSDB|SDR11E2 HGNC:5218|MIM:613890|Ensembl:ENSG00000203859|HPRD:01941|Vega:OTTHUMG00000012526 1 1p13.1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 2 protein-coding HSD3B2 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 2 O 3 beta-HSD type II|3 beta-hydroxysteroid dehydrogenase type II, delta 5-delta 4-isomerase type II, 3 beta-HSD type II|3 beta-hydroxysteroid dehydrogenase/Delta 5-->4-isomerase type 2|3 beta-hydroxysteroid dehydrogenase/Delta 5-->4-isomerase type II|3-beta-HSD II|3-beta-HSD adrenal and gonadal type|3-beta-hydroxy-5-ene steroid dehydrogenase|3-beta-hydroxy-Delta(5)-steroid dehydrogenase|delta 5-delta 4-isomerase type II|progesterone reductase|short chain dehydrogenase/reductase family 11E, member 2 20121230 -9606 3290 HSD11B1 - 11-DH|11-beta-HSD1|CORTRD2|HDL|HSD11|HSD11B|HSD11L|SDR26C1 HGNC:5208|MIM:600713|Ensembl:ENSG00000117594|HPRD:07042|Vega:OTTHUMG00000036481 1 1q32-q41 hydroxysteroid (11-beta) dehydrogenase 1 protein-coding HSD11B1 hydroxysteroid (11-beta) dehydrogenase 1 O corticosteroid 11-beta-dehydrogenase isozyme 1|short chain dehydrogenase/reductase family 26C, member 1 20121230 -9606 3291 HSD11B2 - AME|AME1|HSD11K|HSD2|SDR9C3 HGNC:5209|MIM:614232|Ensembl:ENSG00000176387|HPRD:01958|Vega:OTTHUMG00000137507 16 16q22 hydroxysteroid (11-beta) dehydrogenase 2 protein-coding HSD11B2 hydroxysteroid (11-beta) dehydrogenase 2 O -HSD11 type II|11-DH2|11-beta-HSD2|11-beta-hydroxysteroid dehydrogenase type 2|11-beta-hydroxysteroid dehydrogenase type II|NAD-dependent 11-beta-hydroxysteroid dehydrogenase|corticosteroid 11-beta-dehydrogenase isozyme 2|short chain dehydrogenase/reductase family 9C member 3 20121230 -9606 3292 HSD17B1 - EDH17B2|EDHB17|HSD17|SDR28C1 HGNC:5210|MIM:109684|Ensembl:ENSG00000108786|HPRD:00185|Vega:OTTHUMG00000180243 17 17q11-q21 hydroxysteroid (17-beta) dehydrogenase 1 protein-coding HSD17B1 hydroxysteroid (17-beta) dehydrogenase 1 O 17-beta-HSD 1|17-beta-hydroxysteroid dehydrogenase type 1|20 alpha-hydroxysteroid dehydrogenase|20-alpha-HSD|E2DH|estradiol 17-beta-dehydrogenase 1|estradiol 17-beta-dehydrogenase-1|hydroxysteroid (17-beta) dehydrogenase 1 isoform|placental 17-beta-hydroxysteroid dehydrogenase|short chain dehydrogenase/reductase family 28CE, member 1 20121230 -9606 3293 HSD17B3 RP11-240L7.3 EDH17B3|SDR12C2 HGNC:5212|MIM:605573|Ensembl:ENSG00000130948|HPRD:05716|Vega:OTTHUMG00000020292 9 9q22 hydroxysteroid (17-beta) dehydrogenase 3 protein-coding HSD17B3 hydroxysteroid (17-beta) dehydrogenase 3 O 17-beta-HSD 3|17-beta-HSD3|17-beta-hydroxysteroid dehydrogenase type 3|short chain dehydrogenase/reductase family 12C, member 2|testicular 17-beta-hydroxysteroid dehydrogenase|testosterone 17-beta-dehydrogenase 3 20121230 -9606 3294 HSD17B2 - EDH17B2|HSD17|SDR9C2 HGNC:5211|MIM:109685|Ensembl:ENSG00000086696|HPRD:00186|Vega:OTTHUMG00000137631 16 16q24.1-q24.2 hydroxysteroid (17-beta) dehydrogenase 2 protein-coding HSD17B2 hydroxysteroid (17-beta) dehydrogenase 2 O 17-beta-HSD 2|17-beta-hydroxysteroid dehydrogenase type 2|20 alpha-hydroxysteroid dehydrogenase|20-alpha-HSD|E2DH|estradiol 17-beta-dehydrogenase 2|microsomal 17-beta-hydroxysteroid dehydrogenase|short chain dehydrogenase/reductase family 9C, member 2|testosterone 17-beta-dehydrogenase 20121230 -9606 3295 HSD17B4 - DBP|MFE-2|MPF-2|PRLTS1|SDR8C1 HGNC:5213|MIM:601860|Ensembl:ENSG00000133835|HPRD:03514|Vega:OTTHUMG00000128899 5 5q21 hydroxysteroid (17-beta) dehydrogenase 4 protein-coding HSD17B4 hydroxysteroid (17-beta) dehydrogenase 4 O 17-beta-HSD 4|17-beta-HSD IV|17-beta-hydroxysteroid dehydrogenase 4|17beta-estradiol dehydrogenase type IV|3-alpha,7-alpha,12-alpha-trihydroxy-5-beta-cholest-24-enoyl-CoA hydratase|D-3-hydroxyacyl-CoA dehydratase|D-bifunctional protein, peroxisomal|beta-hydroxyacyl dehydrogenase|beta-keto-reductase|multifunctional protein 2|peroxisomal multifunctional enzyme type 2|peroxisomal multifunctional protein 2|short chain dehydrogenase/reductase family 8C, member 1 20121230 -9606 3297 HSF1 - HSTF1 HGNC:5224|MIM:140580|Ensembl:ENSG00000185122|HPRD:00778|Vega:OTTHUMG00000165134 8 8q24.3 heat shock transcription factor 1 protein-coding HSF1 heat shock transcription factor 1 O HSF 1|HSTF 1|heat shock factor protein 1 20121230 -9606 3298 HSF2 - HSF 2|HSTF 2 HGNC:5225|MIM:140581|Ensembl:ENSG00000025156|HPRD:00779|Vega:OTTHUMG00000016216 6 6q22.31 heat shock transcription factor 2 protein-coding HSF2 heat shock transcription factor 2 O heat shock factor protein 2 20121230 -9606 3299 HSF4 - CTM HGNC:5227|MIM:602438|Ensembl:ENSG00000102878|HPRD:03896|Vega:OTTHUMG00000178325 16 16q21 heat shock transcription factor 4 protein-coding HSF4 heat shock transcription factor 4 O HSF 4|HSTF 4|hHSF4|heat shock factor protein 4 20121230 -9606 3300 DNAJB2 - DSMA5|HSJ-1|HSJ1|HSPF3 HGNC:5228|MIM:604139|Ensembl:ENSG00000135924|HPRD:07249|Vega:OTTHUMG00000133134 2 2q32-q34 DnaJ (Hsp40) homolog, subfamily B, member 2 protein-coding DNAJB2 DnaJ (Hsp40) homolog, subfamily B, member 2 O dnaJ homolog subfamily B member 2|dnaJ protein homolog 1|heat shock 40 kDa protein 3|heat shock protein J1|heat shock protein, neuronal DNAJ-like 1 20121230 -9606 3301 DNAJA1 RP11-54K16.1 DJ-2|DjA1|HDJ2|HSDJ|HSJ2|HSPF4|NEDD7|hDJ-2 HGNC:5229|MIM:602837|Ensembl:ENSG00000086061|HPRD:04159|Vega:OTTHUMG00000019760 9 9p13.3 DnaJ (Hsp40) homolog, subfamily A, member 1 protein-coding DNAJA1 DnaJ (Hsp40) homolog, subfamily A, member 1 O HSJ-2|dnaJ homolog subfamily A member 1|dnaJ protein homolog 2|heat shock 40 kDa protein 4|heat shock protein J2|heat shock protein, DNAJ-like 2|human DnaJ protein 2|neural precursor cell expressed, developmentally down-regulated 7 20121230 -9606 3303 HSPA1A DAQB-147D11.1 HSP70-1|HSP70-1A|HSP70I|HSP72|HSPA1 HGNC:5232|MIM:140550|Ensembl:ENSG00000204389|HPRD:00774|Vega:OTTHUMG00000031201 6 6p21.3 heat shock 70kDa protein 1A protein-coding HSPA1A heat shock 70kDa protein 1A O HSP70-1/HSP70-2|HSP70.1/HSP70.2|dnaK-type molecular chaperone HSP70-1|heat shock 70 kDa protein 1/2|heat shock 70 kDa protein 1A/1B|heat shock 70kD protein 1A|heat shock-induced protein 20121230 -9606 3304 HSPA1B DAAP-21F2.7 HSP70-1B|HSP70-2 HGNC:5233|MIM:603012|Ensembl:ENSG00000204388|HPRD:06784|Vega:OTTHUMG00000031202 6 6p21.3 heat shock 70kDa protein 1B protein-coding HSPA1B heat shock 70kDa protein 1B O HSP70-1/HSP70-2|HSP70.1/HSP70.2|heat shock 70 kDa protein 1/2|heat shock 70 kDa protein 1A/1B|heat shock 70kD protein 1B 20121230 -9606 3305 HSPA1L DADB-333F21.5 HSP70-1L|HSP70-HOM|HSP70T|hum70t HGNC:5234|MIM:140559|Ensembl:ENSG00000204390|HPRD:00776|Vega:OTTHUMG00000031208 6 6p21.3 heat shock 70kDa protein 1-like protein-coding HSPA1L heat shock 70kDa protein 1-like O heat shock 10kDa protein 1-like|heat shock 70 kDa protein 1-Hom|heat shock 70 kDa protein 1-like|heat shock 70 kDa protein 1L|heat shock 70kD protein-like 1 20121230 -9606 3306 HSPA2 - HSP70-2|HSP70-3 HGNC:5235|MIM:140560|Ensembl:ENSG00000126803|HPRD:07174 14 14q24.1 heat shock 70kDa protein 2 protein-coding HSPA2 heat shock 70kDa protein 2 O heat shock 70kD protein 2|heat shock-related 70 kDa protein 2 20121230 -9606 3308 HSPA4 - APG-2|HS24/P52|HSPH2|RY|hsp70|hsp70RY HGNC:5237|MIM:601113|Ensembl:ENSG00000170606|HPRD:09025|Vega:OTTHUMG00000129012 5 5q31.1 heat shock 70kDa protein 4 protein-coding HSPA4 heat shock 70kDa protein 4 O heat shock 70 kDa protein 4|heat shock 70-related protein APG-2|heat shock 70kD protein 4|heat shock protein, 110 kDa|hsp70 RY 20121230 -9606 3309 HSPA5 - BIP|GRP78|MIF2 HGNC:5238|MIM:138120|Ensembl:ENSG00000044574|HPRD:00682|Vega:OTTHUMG00000020672 9 9q33.3 heat shock 70kDa protein 5 (glucose-regulated protein, 78kDa) protein-coding HSPA5 heat shock 70kDa protein 5 (glucose-regulated protein, 78kDa) O 78 kDa glucose-regulated protein|endoplasmic reticulum lumenal Ca(2+)-binding protein grp78|immunoglobulin heavy chain-binding protein 20121230 -9606 3310 HSPA6 - - HGNC:5239|MIM:140555|Ensembl:ENSG00000173110|HPRD:00775|Vega:OTTHUMG00000034461 1 1q23 heat shock 70kDa protein 6 (HSP70B') protein-coding HSPA6 heat shock 70kDa protein 6 (HSP70B') O heat shock 70 kDa protein 6|heat shock 70 kDa protein B'|heat shock 70kD protein 6 (HSP70B') 20121230 -9606 3311 HSPA7 - HSP70B HGNC:5240|MIM:140556 1 1q23.3 heat shock 70kDa protein 7 (HSP70B) pseudo HSPA7 heat shock 70kDa protein 7 (HSP70B) O - 20121230 -9606 3312 HSPA8 - HSC54|HSC70|HSC71|HSP71|HSP73|HSPA10|LAP1|NIP71 HGNC:5241|MIM:600816|Ensembl:ENSG00000109971|HPRD:07205|Vega:OTTHUMG00000166030 11 11q24.1 heat shock 70kDa protein 8 protein-coding HSPA8 heat shock 70kDa protein 8 O LPS-associated protein 1|N-myristoyltransferase inhibitor protein 71|constitutive heat shock protein 70|heat shock 70kd protein 10|heat shock cognate 71 kDa protein|heat shock cognate protein 54|lipopolysaccharide-associated protein 1 20121230 -9606 3313 HSPA9 - CSA|GRP-75|GRP75|HSPA9B|MOT|MOT2|MTHSP75|PBP74 HGNC:5244|MIM:600548|Ensembl:ENSG00000113013|HPRD:02770|Vega:OTTHUMG00000129206 5 5q31.1 heat shock 70kDa protein 9 (mortalin) protein-coding HSPA9 heat shock 70kDa protein 9 (mortalin) O 75 kDa glucose-regulated protein|heat shock 70kD protein 9B|mortalin, perinuclear|mortalin-2|p66-mortalin|peptide-binding protein 74|stress-70 protein, mitochondrial 20121230 -9606 3314 HSPA8P1 - HSPAP1 HGNC:5245 X Xq24 heat shock 70kDa protein 8 pseudogene 1 pseudo HSPA8P1 heat shock 70kDa protein 8 pseudogene 1 O - 20121230 -9606 3315 HSPB1 - CMT2F|HMN2B|HS.76067|HSP27|HSP28|Hsp25|SRP27 HGNC:5246|MIM:602195|Ensembl:ENSG00000106211|HPRD:09076|Vega:OTTHUMG00000023228 7 7q11.23 heat shock 27kDa protein 1 protein-coding HSPB1 heat shock 27kDa protein 1 O 28 kDa heat shock protein|HSP 27|estrogen-regulated 24 kDa protein|heat shock 27 kDa protein|heat shock 27kD protein 1|heat shock protein beta-1|stress-responsive protein 27 20121230 -9606 3316 HSPB2 - HSP27|Hs.78846|LOH11CR1K|MKBP HGNC:5247|MIM:602179|Ensembl:ENSG00000170276|HPRD:03712|Vega:OTTHUMG00000166886 11 11q22-q23 heat shock 27kDa protein 2 protein-coding HSPB2 heat shock 27kDa protein 2 O DMPK-binding protein|heat shock 27kD protein 2|heat shock protein beta-2|heat-shock protein beta-2 20121230 -9606 3320 HSP90AA1 - HSP86|HSP89A|HSP90A|HSP90N|HSPC1|HSPCA|HSPCAL1|HSPCAL4|HSPN|Hsp89|Hsp90|LAP2 HGNC:5253|MIM:140571|Ensembl:ENSG00000080824|HPRD:00777|Vega:OTTHUMG00000171752 14 14q32.33 heat shock protein 90kDa alpha (cytosolic), class A member 1 protein-coding HSP90AA1 heat shock protein 90kDa alpha (cytosolic), class A member 1 O HSP 86|heat shock 86 kDa|heat shock 90kD protein 1, alpha|heat shock 90kD protein 1, alpha-like 4|heat shock 90kD protein, alpha-like 4|heat shock 90kDa protein 1, alpha|heat shock protein HSP 90-alpha|renal carcinoma antigen NY-REN-38 20121230 -9606 3321 IGSF3 RP4-781D12.1 EWI-3|V8 HGNC:5950|MIM:603491|Ensembl:ENSG00000143061|HPRD:04602|Vega:OTTHUMG00000022751 1 1p13 immunoglobulin superfamily, member 3 protein-coding IGSF3 immunoglobulin superfamily, member 3 O glu-Trp-Ile EWI motif-containing protein 3|immunoglobin superfamily, member 3|immunoglobulin superfamily member 3 20121230 -9606 3322 HSP90AA3P - HSPCAL1 HGNC:5254 1 1q23.1 heat shock protein 90kDa alpha (cytosolic), class A member 3, pseudogene pseudo HSP90AA3P heat shock protein 90kDa alpha (cytosolic), class A member 3, pseudogene O - 20121230 -9606 3323 HSP90AA4P - HSP90Ad|HSPCAL2 HGNC:5255 4 4q35.2 heat shock protein 90kDa alpha (cytosolic), class A member 4, pseudogene pseudo HSP90AA4P heat shock protein 90kDa alpha (cytosolic), class A member 4, pseudogene O - 20121230 -9606 3324 HSP90AA2 - HSP90ALPHA|HSPCA|HSPCAL3 HGNC:5256|MIM:140575 11 11p14.1 heat shock protein 90kDa alpha (cytosolic), class A member 2 pseudo HSP90AA2 heat shock protein 90kDa alpha (cytosolic), class A member 2 O - 20121230 -9606 3326 HSP90AB1 RP1-302G2.1 D6S182|HSP84|HSP90B|HSPC2|HSPCB HGNC:5258|MIM:140572|Ensembl:ENSG00000096384|HPRD:06763|Vega:OTTHUMG00000014761 6 6p12 heat shock protein 90kDa alpha (cytosolic), class B member 1 protein-coding HSP90AB1 heat shock protein 90kDa alpha (cytosolic), class B member 1 O HSP90-beta|heat shock 84 kDa|heat shock 90kD protein 1, beta|heat shock protein HSP 90-beta 20121230 -9606 3327 HSP90AB3P - HSP90BC|HSPCP1 HGNC:5259 4 4q22.1 heat shock protein 90kDa alpha (cytosolic), class B member 3, pseudogene pseudo HSP90AB3P heat shock protein 90kDa alpha (cytosolic), class B member 3, pseudogene O - 20121230 -9606 3329 HSPD1 - CPN60|GROEL|HLD4|HSP-60|HSP60|HSP65|HuCHA60|SPG13 HGNC:5261|MIM:118190|Ensembl:ENSG00000144381|HPRD:00318|Vega:OTTHUMG00000154463 2 2q33.1 heat shock 60kDa protein 1 (chaperonin) protein-coding HSPD1 heat shock 60kDa protein 1 (chaperonin) O 60 kDa chaperonin|60 kDa heat shock protein, mitochondrial|P60 lymphocyte protein|chaperonin 60|heat shock protein 65|mitochondrial matrix protein P1|short heat shock protein 60 Hsp60s1 20121230 -9606 3332 HSPD1P3 - HSP60P1|HSP60P3|HSP60P4|HSPD1-7P|HSPDP1|HSPDP3|HSPDP4 HGNC:5264 8 8p23.1 heat shock 60kDa protein 1 (chaperonin) pseudogene 3 pseudo HSPD1P3 heat shock 60kDa protein 1 (chaperonin) pseudogene 3 O - 20121230 -9606 3336 HSPE1 - CPN10|EPF|GROES|HSP10 HGNC:5269|MIM:600141|Ensembl:ENSG00000115541|HPRD:02535|Vega:OTTHUMG00000132749 2 2q33.1 heat shock 10kDa protein 1 (chaperonin 10) protein-coding HSPE1 heat shock 10kDa protein 1 (chaperonin 10) O 10 kDa chaperonin|10 kDa heat shock protein, mitochondrial|chaperonin 10|early-pregnancy factor|heat shock 10kD protein 1 (chaperonin 10) 20121230 -9606 3337 DNAJB1 - HSPF1|Hdj1|Hsp40|RSPH16B|Sis1 HGNC:5270|MIM:604572|Ensembl:ENSG00000132002|HPRD:05198 19 19p13.2 DnaJ (Hsp40) homolog, subfamily B, member 1 protein-coding DNAJB1 DnaJ (Hsp40) homolog, subfamily B, member 1 O DnaJ (Hsp40) homolog, subfmaily B, member 1|dnaJ homolog subfamily B member 1|dnaJ protein homolog 1|hDj-1|heat shock 40 kDa protein 1|heat shock 40kD protein 1|heat shock protein 40|human DnaJ protein 1|radial spoke 16 homolog B 20121230 -9606 3338 DNAJC4 - DANJC4|HSPF2|MCG18 HGNC:5271|MIM:604189|Ensembl:ENSG00000110011|Vega:OTTHUMG00000167792 11 11q13 DnaJ (Hsp40) homolog, subfamily C, member 4 protein-coding DNAJC4 DnaJ (Hsp40) homolog, subfamily C, member 4 O dnaJ homolog subfamily C member 4|dnaJ-like protein HSPF2|heat shock 40kD protein 2|multiple endocrine neoplasia type 1 candidate protein number 18 20121230 -9606 3339 HSPG2 RP11-132G19.2 HSPG|PLC|PRCAN|SJA|SJS|SJS1 HGNC:5273|MIM:142461|Ensembl:ENSG00000142798|HPRD:00804|Vega:OTTHUMG00000002674 1 1p36.1-p34 heparan sulfate proteoglycan 2 protein-coding HSPG2 heparan sulfate proteoglycan 2 O basement membrane-specific heparan sulfate proteoglycan core protein|endorepellin (domain V region)|perlecan proteoglycan 20121230 -9606 3340 NDST1 - HSST|NST1 HGNC:7680|MIM:600853|Ensembl:ENSG00000070614|HPRD:02912|Vega:OTTHUMG00000163572 5 5q33.1 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 1 protein-coding NDST1 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 1 O HSNST 1|N-HSST 1|N-heparan sulfate sulfotransferase 1|NDST-1|[Heparan sulfate]-glucosamine N-sulfotransferase 1|bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 1|glucosaminyl N-deacetylase/N-sulfotransferase 1|heparan sulfate-N-deacetylase/N-sulfotransferase 20121230 -9606 3341 HTC1 - - HGNC:5277|MIM:145700 8 - hypertrichosis 1 (universalis, congenital) unknown HTC1 hypertrichosis 1 (universalis, congenital) O - 20110215 -9606 3342 HTC2 - CGH|CXINSq27.1|HCG HGNC:5278|MIM:307150 X Xq24-q27.1 hypertrichosis 2 (generalized, congenital) unknown HTC2 hypertrichosis 2 (generalized, congenital) O - 20120622 -9606 3343 HTL - HLT|LEUT HGNC:5280|MIM:151310 20 - high L-leucine transport unknown HTL high L-leucine transport O - 20120401 -9606 3344 FOXN2 - HTLF HGNC:5281|MIM:143089|Ensembl:ENSG00000170802|HPRD:00882|Vega:OTTHUMG00000129168 2 2p22-p16 forkhead box N2 protein-coding FOXN2 forkhead box N2 O forkhead box protein N2|human T-cell leukemia virus enhancer factor 20121230 -9606 3345 HTLVR - - HGNC:5282|MIM:143090 17 17q human T-cell leukemia virus (I and II) receptor protein-coding HTLVR human T-cell leukemia virus (I and II) receptor O Receptor for HTLV-1 and HTLV-2 20100721 -9606 3346 HTN1 - HIS1 HGNC:5283|MIM:142701|Ensembl:ENSG00000126550|HPRD:00814|Vega:OTTHUMG00000129397 4 4q13 histatin 1 protein-coding HTN1 histatin 1 O PPB|histatin-1|histidine-rich protein 1|post-PB protein 20121230 -9606 3347 HTN3 - HIS2|HTN2|HTN5 HGNC:5284|MIM:142702|Ensembl:ENSG00000205649|HPRD:00815|Vega:OTTHUMG00000160841 4 4q13 histatin 3 protein-coding HTN3 histatin 3 O PB|basic histidine-rich protein|histatin 5|histatin-3|histidine-rich protein 3|hst 20121230 -9606 3348 HTX2 - - HGNC:5306 - - heterotaxy 2 (autosomal dominant) unknown HTX2 heterotaxy 2 (autosomal dominant) O - 20110215 -9606 3349 HTOR - - HGNC:5285|MIM:143460 21 - 5-hydroxytryptamine (serotonin) oxygenase regulator other HTOR 5-hydroxytryptamine (serotonin) oxygenase regulator O - 20110915 -9606 3350 HTR1A - 5-HT-1A|5-HT1A|5HT1a|ADRB2RL1|ADRBRL1|G-21|PFMCD HGNC:5286|MIM:109760|Ensembl:ENSG00000178394|HPRD:00190|Vega:OTTHUMG00000162279 5 5q11.2-q13 5-hydroxytryptamine (serotonin) receptor 1A, G protein-coupled protein-coding HTR1A 5-hydroxytryptamine (serotonin) receptor 1A, G protein-coupled O 5-HT1a receptor|5-hydroxytryptamine receptor 1A|guanine nucleotide-binding regulatory protein-coupled receptor 20121230 -9606 3351 HTR1B - 5-HT1B|5-HT1DB|HTR1D2|HTR1DB|S12 HGNC:5287|MIM:182131|Ensembl:ENSG00000135312|HPRD:01634|Vega:OTTHUMG00000015066 6 6q13 5-hydroxytryptamine (serotonin) receptor 1B, G protein-coupled protein-coding HTR1B 5-hydroxytryptamine (serotonin) receptor 1B, G protein-coupled O 5-HT-1B|5-HT-1D-beta|5-hydroxytryptamine receptor 1B|serotonin 1D beta receptor|serotonin receptor 1B 20121230 -9606 3352 HTR1D - 5-HT1D|HT1DA|HTR1DA|HTRL|RDC4 HGNC:5289|MIM:182133|Ensembl:ENSG00000179546|HPRD:01636|Vega:OTTHUMG00000003235 1 1p36.3-p34.3 5-hydroxytryptamine (serotonin) receptor 1D, G protein-coupled protein-coding HTR1D 5-hydroxytryptamine (serotonin) receptor 1D, G protein-coupled O 5-HT-1D|5-HT-1D-alpha|5-hydroxytryptamine receptor 1D|serotonin receptor 1D 20121230 -9606 3354 HTR1E - 5-HT1E HGNC:5291|MIM:182132|Ensembl:ENSG00000168830|HPRD:01635 6 6q14-q15 5-hydroxytryptamine (serotonin) receptor 1E, G protein-coupled protein-coding HTR1E 5-hydroxytryptamine (serotonin) receptor 1E, G protein-coupled O 5-HT-1E|5-hydroxytryptamine receptor 1E|S31|serotonin receptor 1E 20121230 -9606 3355 HTR1F - 5-HT-1F|5-HT1F|5HT6|HTR1EL|MR77 HGNC:5292|MIM:182134|HPRD:01637 3 3p12 5-hydroxytryptamine (serotonin) receptor 1F, G protein-coupled protein-coding HTR1F 5-hydroxytryptamine (serotonin) receptor 1F, G protein-coupled O 5-hydroxytryptamine receptor 1F|serotonin receptor 1F 20121230 -9606 3356 HTR2A RP11-147L20.2 5-HT2A|HTR2 HGNC:5293|MIM:182135|Ensembl:ENSG00000102468|HPRD:01638|Vega:OTTHUMG00000016881 13 13q14-q21 5-hydroxytryptamine (serotonin) receptor 2A, G protein-coupled protein-coding HTR2A 5-hydroxytryptamine (serotonin) receptor 2A, G protein-coupled O 5-HT-2A|5-HT2 receptor|5-hydroxytryptamine receptor 2A|serotonin 5-HT-2A receptor 20121230 -9606 3357 HTR2B - 5-HT(2B)|5-HT2B HGNC:5294|MIM:601122|Ensembl:ENSG00000135914|HPRD:03077|Vega:OTTHUMG00000133222 2 2q36.3-q37.1 5-hydroxytryptamine (serotonin) receptor 2B, G protein-coupled protein-coding HTR2B 5-hydroxytryptamine (serotonin) receptor 2B, G protein-coupled O 5-HT 2B receptor|5-HT-2B|5-hydroxytryptamine 2B receptor|5-hydroxytryptamine receptor 2B|5-hydroxytryptamine receptor 2B variant b|serotonin receptor 2B 20121230 -9606 3358 HTR2C RP11-810O3.1 5-HT2C|5-HTR2C|HTR1C HGNC:5295|MIM:312861|Ensembl:ENSG00000147246|HPRD:02429|Vega:OTTHUMG00000022226 X Xq24 5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled protein-coding HTR2C 5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled O 5-HT-1C|5-HT-2C|5-HT1C|5-hydroxytryptamine receptor 1C|5-hydroxytryptamine receptor 2C|serotonin 5-HT-2C receptor|serotonin receptor 2C 20121230 -9606 3359 HTR3A - 5-HT-3|5-HT3A|5-HT3R|5HT3R|HTR3 HGNC:5297|MIM:182139|Ensembl:ENSG00000166736|HPRD:08917|Vega:OTTHUMG00000160494 11 11q23.1 5-hydroxytryptamine (serotonin) receptor 3A, ionotropic protein-coding HTR3A 5-hydroxytryptamine (serotonin) receptor 3A, ionotropic O 5-HT3-A|5-hydroxytryptamine receptor 3|5-hydroxytryptamine receptor 3A|5HT3 serotonin receptor|serotonin receptor 3A|serotonin-gated ion channel receptor 20121230 -9606 3360 HTR4 - 5-HT4|5-HT4R HGNC:5299|MIM:602164|Ensembl:ENSG00000164270|Vega:OTTHUMG00000129931 5 5q31-q33 5-hydroxytryptamine (serotonin) receptor 4, G protein-coupled protein-coding HTR4 5-hydroxytryptamine (serotonin) receptor 4, G protein-coupled O 5-hydroxytryptamine receptor 4|cardiac 5-HT4 receptor 20121230 -9606 3361 HTR5A - 5-HT5A HGNC:5300|MIM:601305|Ensembl:ENSG00000157219|HPRD:03198|Vega:OTTHUMG00000151327 7 7q36.1 5-hydroxytryptamine (serotonin) receptor 5A, G protein-coupled protein-coding HTR5A 5-hydroxytryptamine (serotonin) receptor 5A, G protein-coupled O 5-HT-5|5-HT-5A|5-hydroxytryptamine receptor 5A|serotonin receptor 5A 20121230 -9606 3362 HTR6 - 5-HT6|5-HT6R HGNC:5301|MIM:601109|Ensembl:ENSG00000158748|HPRD:03066|Vega:OTTHUMG00000002713 1 1p36-p35 5-hydroxytryptamine (serotonin) receptor 6, G protein-coupled protein-coding HTR6 5-hydroxytryptamine (serotonin) receptor 6, G protein-coupled O 5-HT-6|5-hydroxytryptamine receptor 6|serotonin receptor 6 20121230 -9606 3363 HTR7 RP11-103A2.1 5-HT7 HGNC:5302|MIM:182137|Ensembl:ENSG00000148680|HPRD:01639|Vega:OTTHUMG00000018732 10 10q21-q24 5-hydroxytryptamine (serotonin) receptor 7, adenylate cyclase-coupled protein-coding HTR7 5-hydroxytryptamine (serotonin) receptor 7, adenylate cyclase-coupled O 5-HT-7|5-HT-X|5-hydroxytryptamine (serotonin) receptor 7 (adenylate cyclase-coupled)|5-hydroxytryptamine receptor 7 20121230 -9606 3364 HUS1 tcag7.704 hHUS1 HGNC:5309|MIM:603760|Ensembl:ENSG00000136273|HPRD:04787|Vega:OTTHUMG00000155645 7 7p13-p12 HUS1 checkpoint homolog (S. pombe) protein-coding HUS1 HUS1 checkpoint homolog (S. pombe) O checkpoint protein HUS1|hus1+-like protein 20121230 -9606 3365 HV1S - - HGNC:5310 3|11 3 or 11p11-qter herpes simplex virus type 1 sensitivity unknown HV1S herpes simplex virus type 1 sensitivity O - 20110215 -9606 3369 HVBS7 - - HGNC:5314 18 18q11.1-q11.2 hepatitis B virus integration site 7 other HVBS7 hepatitis B virus integration site 7 O - 20100623 -9606 3370 HVBS8 - - HGNC:5315 17 17p12-p11.2 hepatitis B virus integration site 8 other HVBS8 hepatitis B virus integration site 8 O - 20080828 -9606 3371 TNC - 150-225|GMEM|GP|HXB|JI|TN|TN-C HGNC:5318|MIM:187380|Ensembl:ENSG00000041982|HPRD:01756|Vega:OTTHUMG00000021010 9 9q33 tenascin C protein-coding TNC tenascin C O GP 150-225|cytotactin|glioma-associated-extracellular matrix antigen|hexabrachion (tenascin)|myotendinous antigen|neuronectin|tenascin|tenascin-C isoform 14/AD1/16 20121230 -9606 3373 HYAL1 - HYAL-1|LUCA1|NAT6 HGNC:5320|MIM:607071|Ensembl:ENSG00000114378|HPRD:06146|Vega:OTTHUMG00000156941 3 3p21.3-p21.2 hyaluronoglucosaminidase 1 protein-coding HYAL1 hyaluronoglucosaminidase 1 O hyaluronidase-1|luCa-1|lung carcinoma protein 1|plasma hyaluronidase|tumor suppressor LUCA-1 20121230 -9606 3375 IAPP - DAP|IAP HGNC:5329|MIM:147940|Ensembl:ENSG00000121351|HPRD:01005|Vega:OTTHUMG00000169128 12 12p12.1 islet amyloid polypeptide protein-coding IAPP islet amyloid polypeptide O Islet amyloid polypeptide (diabetes-associated peptide; amylin)|amylin|diabetes-associated peptide|insulinoma amyloid peptide 20121230 -9606 3376 IARS RP11-62C3.1 IARS1|ILERS|ILRS|IRS|PRO0785 HGNC:5330|MIM:600709|Ensembl:ENSG00000196305|HPRD:02832|Vega:OTTHUMG00000020219 9 9q21 isoleucyl-tRNA synthetase protein-coding IARS isoleucyl-tRNA synthetase O isoleucine tRNA ligase 1, cytoplasmic|isoleucine--tRNA ligase, cytoplasmic|isoleucyl-tRNA synthetase, cytoplasmic 20121230 -9606 3378 IBD2 - - HGNC:5332|MIM:601458 12 12p13.2-q24.1 inflammatory bowel disease 2 unknown IBD2 inflammatory bowel disease 2 O - 20121018 -9606 3380 IBM3 - - HGNC:5338 17 17p13.1 inclusion body myopathy 3, autosomal dominant unknown IBM3 inclusion body myopathy 3, autosomal dominant O - 20110215 -9606 3381 IBSP - BNSP|BSP|BSP-II|SP-II HGNC:5341|MIM:147563|Ensembl:ENSG00000029559|HPRD:00951|Vega:OTTHUMG00000130600 4 4q21.1 integrin-binding sialoprotein protein-coding IBSP integrin-binding sialoprotein O BSP II|bone sialoprotein 2|bone sialoprotein II|cell-binding sialoprotein 20121230 -9606 3382 ICA1 - ICA69|ICAp69 HGNC:5343|MIM:147625|Ensembl:ENSG00000003147|HPRD:00971|Vega:OTTHUMG00000152008 7 7p22 islet cell autoantigen 1, 69kDa protein-coding ICA1 islet cell autoantigen 1, 69kDa O 69 kDa islet cell autoantigen|diabetes mellitus type I autoantigen|islet cell autoantigen 1|islet cell autoantigen 1 isoform|islet cell autoantigen p69|p69 20121230 -9606 3383 ICAM1 - BB2|CD54|P3.58 HGNC:5344|MIM:147840|Ensembl:ENSG00000090339|HPRD:00996|Vega:OTTHUMG00000180403 19 19p13.3-p13.2 intercellular adhesion molecule 1 protein-coding ICAM1 intercellular adhesion molecule 1 O ICAM-1|cell surface glycoprotein P3.58|intercellular adhesion molecule 1 (CD54), human rhinovirus receptor|major group rhinovirus receptor 20121230 -9606 3384 ICAM2 - CD102 HGNC:5345|MIM:146630|Ensembl:ENSG00000108622|HPRD:00888|Vega:OTTHUMG00000178865 17 17q23.3 intercellular adhesion molecule 2 protein-coding ICAM2 intercellular adhesion molecule 2 O ICAM-2 20121230 -9606 3385 ICAM3 - CD50|CDW50|ICAM-R HGNC:5346|MIM:146631|Ensembl:ENSG00000076662|HPRD:00889|Vega:OTTHUMG00000180410 19 19p13.3-p13.2 intercellular adhesion molecule 3 protein-coding ICAM3 intercellular adhesion molecule 3 O ICAM-3|intercellular adhesion molecule-3 20121230 -9606 3386 ICAM4 - CD242|LW HGNC:5347|MIM:614088|Ensembl:ENSG00000105371|HPRD:00198|Vega:OTTHUMG00000180405 19 19p13.2-cen intercellular adhesion molecule 4 (Landsteiner-Wiener blood group) protein-coding ICAM4 intercellular adhesion molecule 4 (Landsteiner-Wiener blood group) O CD242 antigen|LW blood group protein|Landsteiner-Wiener blood group antigen a|Landsteiner-Wiener blood group glycoprotein|intercellular adhesion molecule 4|intercellular adhesion molecule 4 (LW blood group) 20121230 -9606 3387 ICCA - FICCA HGNC:5349|MIM:602066 16 16p12-q12 infantile convulsions and paroxysmal choreoathetosis unknown ICCA infantile convulsions and paroxysmal choreoathetosis O - 20121106 -9606 3388 ICR1 - - HGNC:5352 - - ichthyosis congenita I, erythromatous lamellar ichthyosis, ichthyosiform erythroderma unknown ICR1 ichthyosis congenita I, erythromatous lamellar ichthyosis, ichthyosiform erythroderma O - 20110215 -9606 3390 ICR3 - - HGNC:5354 - - ichthyosis congenita III, vulgaris-like recessive ichthyosis unknown ICR3 ichthyosis congenita III, vulgaris-like recessive ichthyosis O - 20110215 -9606 3391 ICR4 - - HGNC:5355 - - ichthyosis congenita IV, ichthyosis-prematurity syndrome unknown ICR4 ichthyosis congenita IV, ichthyosis-prematurity syndrome O - 20110215 -9606 3394 IRF8 - H-ICSBP|ICSBP|ICSBP1|IRF-8 HGNC:5358|MIM:601565|Ensembl:ENSG00000140968|HPRD:03336|Vega:OTTHUMG00000137648 16 16q24.1 interferon regulatory factor 8 protein-coding IRF8 interferon regulatory factor 8 O interferon consensus sequence binding protein 1 20121230 -9606 3396 ICT1 - DS-1|DS1 HGNC:5359|MIM:603000|Ensembl:ENSG00000167862|HPRD:04299|Vega:OTTHUMG00000179218 17 17q25.1 immature colon carcinoma transcript 1 protein-coding ICT1 immature colon carcinoma transcript 1 O digestion substraction 1|immature colon carcinoma transcript 1 protein|peptidyl-tRNA hydrolase ICT1, mitochondrial 20121230 -9606 3397 ID1 - ID|bHLHb24 HGNC:5360|MIM:600349|Ensembl:ENSG00000125968|HPRD:08980|Vega:OTTHUMG00000032181 20 20q11 inhibitor of DNA binding 1, dominant negative helix-loop-helix protein protein-coding ID1 inhibitor of DNA binding 1, dominant negative helix-loop-helix protein O DNA-binding protein inhibitor ID-1|class B basic helix-loop-helix protein 24|dJ857M17.1.2 (inhibitor of DNA binding 1, dominant negative helix-loop-helix protein)|inhibitor of differentiation 1 20121230 -9606 3398 ID2 - GIG8|ID2A|ID2H|bHLHb26 HGNC:5361|MIM:600386|Ensembl:ENSG00000115738|HPRD:02664 2 2p25 inhibitor of DNA binding 2, dominant negative helix-loop-helix protein protein-coding ID2 inhibitor of DNA binding 2, dominant negative helix-loop-helix protein O DNA-binding protein inhibitor ID-2|DNA-binding protein inhibitor ID2|cell growth-inhibiting gene 8|class B basic helix-loop-helix protein 26|helix-loop-helix protein ID2|inhibitor of differentiation 2 20121230 -9606 3399 ID3 - HEIR-1|bHLHb25 HGNC:5362|MIM:600277|Ensembl:ENSG00000117318|HPRD:02608|Vega:OTTHUMG00000003229 1 1p36.13-p36.12 inhibitor of DNA binding 3, dominant negative helix-loop-helix protein protein-coding ID3 inhibitor of DNA binding 3, dominant negative helix-loop-helix protein O DNA-binding protein inhibitor ID-3|ID-like protein inhibitor HLH 1R21|class B basic helix-loop-helix protein 25|helix-loop-helix protein HEIR-1 20121230 -9606 3400 ID4 - IDB4|bHLHb27 HGNC:5363|MIM:600581|Ensembl:ENSG00000172201|HPRD:08995|Vega:OTTHUMG00000014333 6 6p22.3 inhibitor of DNA binding 4, dominant negative helix-loop-helix protein protein-coding ID4 inhibitor of DNA binding 4, dominant negative helix-loop-helix protein O DNA-binding protein inhibitor ID-4|class B basic helix-loop-helix protein 27 20121230 -9606 3401 IDDM2 - IDDM|IDDM1|ILPR HGNC:5373|MIM:125852 11 11p15.5 insulin-dependent diabetes mellitus 2 unknown IDDM2 insulin-dependent diabetes mellitus 2 O - 20120622 -9606 3402 IDDM3 - - HGNC:5374|MIM:600318 15 15q26 insulin-dependent diabetes mellitus 3 unknown IDDM3 insulin-dependent diabetes mellitus 3 O - 20120622 -9606 3403 IDDM4 - - HGNC:5375|MIM:600319 11 11q13 insulin-dependent diabetes mellitus 4 unknown IDDM4 insulin-dependent diabetes mellitus 4 O - 20120622 -9606 3405 IDDM6 - - HGNC:5377|MIM:601941 18 18q21 insulin-dependent diabetes mellitus 6 unknown IDDM6 insulin-dependent diabetes mellitus 6 O - 20120622 -9606 3406 IDDM7 - - HGNC:5378|MIM:600321 2 2q31 insulin-dependent diabetes mellitus 7 unknown IDDM7 insulin-dependent diabetes mellitus 7 O - 20120622 -9606 3407 IDDM8 - - HGNC:5379|MIM:600883 6 6q27 insulin-dependent diabetes mellitus 8 unknown IDDM8 insulin-dependent diabetes mellitus 8 O - 20120622 -9606 3408 IDDM9 - - HGNC:5380 3 3q22.3-q25.1 insulin-dependent diabetes mellitus 9 unknown IDDM9 insulin-dependent diabetes mellitus 9 O - 20110215 -9606 3409 IDDM10 - - HGNC:5364|MIM:601942 10 10p11-q11 insulin-dependent diabetes mellitus 10 unknown IDDM10 insulin-dependent diabetes mellitus 10 O - 20110215 -9606 3410 IDDM11 - - HGNC:5365|MIM:601208 14 14q24.3-q31 insulin-dependent diabetes mellitus 11 unknown IDDM11 insulin-dependent diabetes mellitus 11 O - 20120622 -9606 3412 IDDM13 - - HGNC:5367|MIM:601318 2 2q34 insulin-dependent diabetes mellitus 13 unknown IDDM13 insulin-dependent diabetes mellitus 13 O - 20120622 -9606 3413 IDDM14 - - HGNC:5368 2 2q34-q35 insulin-dependent diabetes mellitus 14 unknown IDDM14 insulin-dependent diabetes mellitus 14 O - 20110215 -9606 3414 IDDM15 - - HGNC:5369|MIM:601666 6 6q21 insulin-dependent diabetes mellitus 15 unknown IDDM15 insulin-dependent diabetes mellitus 15 O - 20120622 -9606 3415 IDDM16 - - HGNC:5370 14 14q32.32-q32.33 insulin-dependent diabetes mellitus 16 unknown IDDM16 insulin-dependent diabetes mellitus 16 O - 20110215 -9606 3416 IDE RP11-366I13.1 INSULYSIN HGNC:5381|MIM:146680|Ensembl:ENSG00000119912|HPRD:00894|Vega:OTTHUMG00000018759 10 10q23-q25 insulin-degrading enzyme protein-coding IDE insulin-degrading enzyme O Abeta-degrading protease|insulin protease|insulinase 20121230 -9606 3417 IDH1 - IDCD|IDH|IDP|IDPC|PICD HGNC:5382|MIM:147700|Ensembl:ENSG00000138413|HPRD:00984|Vega:OTTHUMG00000132943 2 2q33.3 isocitrate dehydrogenase 1 (NADP+), soluble protein-coding IDH1 isocitrate dehydrogenase 1 (NADP+), soluble O NADP(+)-specific ICDH|NADP-dependent isocitrate dehydrogenase, cytosolic|NADP-dependent isocitrate dehydrogenase, peroxisomal|isocitrate dehydrogenase [NADP] cytoplasmic|oxalosuccinate decarboxylase 20121230 -9606 3418 IDH2 - D2HGA2|ICD-M|IDH|IDHM|IDP|IDPM|mNADP-IDH HGNC:5383|MIM:147650|Ensembl:ENSG00000182054|HPRD:00973|Vega:OTTHUMG00000149815 15 15q26.1 isocitrate dehydrogenase 2 (NADP+), mitochondrial protein-coding IDH2 isocitrate dehydrogenase 2 (NADP+), mitochondrial O NADP(+)-specific ICDH|isocitrate dehydrogenase [NADP], mitochondrial|oxalosuccinate decarboxylase 20121230 -9606 3419 IDH3A - - HGNC:5384|MIM:601149|Ensembl:ENSG00000166411|HPRD:03094|Vega:OTTHUMG00000143732 15 15q25.1-q25.2 isocitrate dehydrogenase 3 (NAD+) alpha protein-coding IDH3A isocitrate dehydrogenase 3 (NAD+) alpha O H-IDH alpha|NAD(+)-specific ICDH subunit alpha|NAD(H)-specific isocitrate dehydrogenase alpha subunit|NAD+-specific ICDH|isocitrate dehydrogenase (NAD+) alpha chain|isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial|isocitric dehydrogenase subunit alpha 20121230 -9606 3420 IDH3B RP4-686C3.2 H-IDHB|RP46 HGNC:5385|MIM:604526|Ensembl:ENSG00000101365|HPRD:05163|Vega:OTTHUMG00000031699 20 20p13 isocitrate dehydrogenase 3 (NAD+) beta protein-coding IDH3B isocitrate dehydrogenase 3 (NAD+) beta O NAD(+)-specific ICDH subunit beta|NAD+-specific ICDH|NAD+-specific isocitrate dehydrogenase b subunit|NAD+-specific isocitrate dehydrogenase beta|isocitrate dehydrogenase [NAD] subunit beta, mitochondrial|isocitrate dehydrogenase, NAD(+)-specific, mitochondrial, beta subunit|isocitric dehydrogenase subunit beta 20121230 -9606 3421 IDH3G hCG_2004980 H-IDHG HGNC:5386|MIM:300089|Ensembl:ENSG00000067829|HPRD:02100|Vega:OTTHUMG00000024219 X Xq28 isocitrate dehydrogenase 3 (NAD+) gamma protein-coding IDH3G isocitrate dehydrogenase 3 (NAD+) gamma O IDH-gamma|NAD (H)-specific isocitrate dehydrogenase gamma subunit|NAD(+)-specific ICDH subunit gamma|NAD+-specific ICDH|isocitrate dehydrogenase [NAD] subunit gamma, mitochondrial|isocitrate dehydrogenase, NAD(+)-specific, mitochondrial, gamma subunit|isocitric dehydrogenase subunit gamma 20121230 -9606 3422 IDI1 - IPP1|IPPI1 HGNC:5387|MIM:604055|Ensembl:ENSG00000067064|HPRD:07235|Vega:OTTHUMG00000017536 10 10p15.3 isopentenyl-diphosphate delta isomerase 1 protein-coding IDI1 isopentenyl-diphosphate delta isomerase 1 O IPP isomerase 1|isopentenyl diphosphate dimethylallyl diphosphate isomerase 1|isopentenyl pyrophosphate isomerase 1|isopentenyl-diphosphate Delta-isomerase 1 20121230 -9606 3423 IDS - MPS2|SIDS HGNC:5389|MIM:300823|Ensembl:ENSG00000010404|HPRD:02402|Vega:OTTHUMG00000022615 X Xq28 iduronate 2-sulfatase protein-coding IDS iduronate 2-sulfatase O alpha-L-iduronate sulfate sulfatase|iduronate 2-sulfatase 14 kDa chain|iduronate 2-sulfatase 42 kDa chain|idursulfase 20121230 -9606 3424 IDSP1 - IDS2 HGNC:5390 X Xq27.3-q28 iduronate 2-sulfatase pseudogene 1 pseudo IDSP1 iduronate 2-sulfatase pseudogene 1 O - 20121230 -9606 3425 IDUA - IDA|MPS1 HGNC:5391|MIM:252800|Ensembl:ENSG00000127415|HPRD:02016|Vega:OTTHUMG00000088901 4 4p16.3 iduronidase, alpha-L- protein-coding IDUA iduronidase, alpha-L- O alpha-L-iduronidase 20121230 -9606 3426 CFI - AHUS3|C3BINA|C3b-INA|FI|IF|KAF HGNC:5394|MIM:217030|Ensembl:ENSG00000205403|HPRD:01955|Vega:OTTHUMG00000161109 4 4q25 complement factor I protein-coding CFI complement factor I O C3B/C4B inactivator|C3b-inactivator|Konglutinogen-activating factor|complement component I|complement control protein factor I|complement factor I heavy chain|light chain of factor I 20121230 -9606 3428 IFI16 - IFNGIP1|PYHIN2 HGNC:5395|MIM:147586|Ensembl:ENSG00000163565|HPRD:00969|Vega:OTTHUMG00000037108 1 1q22 interferon, gamma-inducible protein 16 protein-coding IFI16 interferon, gamma-inducible protein 16 O gamma-interferon-inducible protein 16|interferon-gamma induced protein IFI 16|interferon-inducible myeloid differentiation transcriptional activator 20121230 -9606 3429 IFI27 - FAM14D|ISG12|ISG12A|P27 HGNC:5397|MIM:600009|Ensembl:ENSG00000165949|HPRD:02479|Vega:OTTHUMG00000171303 14 14q32 interferon, alpha-inducible protein 27 protein-coding IFI27 interferon, alpha-inducible protein 27 O 2310061N23Rik|ISG12(a)|interferon alpha-induced 11.5 kDa protein|interferon alpha-inducible protein 27, mitochondrial|interferon-stimulated gene 12a protein 20121230 -9606 3430 IFI35 - IFP35 HGNC:5399|MIM:600735|Ensembl:ENSG00000068079|HPRD:02844|Vega:OTTHUMG00000167720 17 17q21 interferon-induced protein 35 protein-coding IFI35 interferon-induced protein 35 O IFP 35|ifi-35|interferon-induced 35 kDa protein 20121230 -9606 3431 SP110 - IFI41|IFI75|IPR1|VODI HGNC:5401|MIM:604457|Ensembl:ENSG00000135899|HPRD:06832|Vega:OTTHUMG00000133204 2 2q37.1 SP110 nuclear body protein protein-coding SP110 SP110 nuclear body protein O interferon-induced protein 41, 30kD|interferon-induced protein 41/75|interferon-induced protein 75, 52kD|phosphoprotein 41|phosphoprotein 75|sp110 nuclear body protein|speckled 110 kDa|transcriptional coactivator Sp110 20121230 -9606 3433 IFIT2 - G10P2|GARG-39|IFI-54|IFI-54K|IFI54|IFIT-2|ISG-54 K|ISG-54K|ISG54|P54|cig42 HGNC:5409|MIM:147040|Ensembl:ENSG00000119922|HPRD:00913|Vega:OTTHUMG00000018707 10 10q23.31 interferon-induced protein with tetratricopeptide repeats 2 protein-coding IFIT2 interferon-induced protein with tetratricopeptide repeats 2 O Interferon, alpha-inducible protein (MW 54kD)|interferon-induced 54 kDa protein|interferon-induced protein 54 20121230 -9606 3434 IFIT1 RP11-168O10.1 C56|G10P1|IFI-56|IFI-56K|IFI56|IFIT-1|IFNAI1|ISG56|P56|RNM561 HGNC:5407|MIM:147690|Ensembl:ENSG00000185745|HPRD:00983|Vega:OTTHUMG00000018712 10 10q23.31 interferon-induced protein with tetratricopeptide repeats 1 protein-coding IFIT1 interferon-induced protein with tetratricopeptide repeats 1 O interferon, alpha-inducible protein (MW 56kD)|interferon-induced 56 kDa protein|interferon-inducible mRNA 561 20121230 -9606 3437 IFIT3 RP11-149I23.4 CIG-49|GARG-49|IFI60|IFIT4|IRG2|ISG60|P60|RIG-G HGNC:5411|MIM:604650|Ensembl:ENSG00000119917|HPRD:05228|Vega:OTTHUMG00000018708 10 10q24 interferon-induced protein with tetratricopeptide repeats 3 protein-coding IFIT3 interferon-induced protein with tetratricopeptide repeats 3 O CIG49|IFI-60K|IFIT-3|IFIT-4|ISG-60|interferon-induced 60 kDa protein|interferon-induced protein with tetratricopeptide repeats 4|retinoic acid-induced gene G protein 20121230 -9606 3438 IFN1@ - IFNA HGNC:5415 9 9p22 interferon, type 1, cluster other IFN1@ interferon, type 1, cluster O - 20120902 -9606 3439 IFNA1 - IFL|IFN|IFN-ALPHA|IFN-alphaD|IFNA13|IFNA@ HGNC:5417|MIM:147660|Ensembl:ENSG00000197919|HPRD:00974|Vega:OTTHUMG00000019673 9 9p22 interferon, alpha 1 protein-coding IFNA1 interferon, alpha 1 O IFN-alpha 1b|IFN-alpha-1/13|interferon alpha 1b|interferon alpha-1/13|interferon alpha-D|interferon-alpha1|leIF D 20121230 -9606 3440 IFNA2 RP11-354P17.2 IFN-alphaA|IFNA|IFNA2B|INFA2 HGNC:5423|MIM:147562|Ensembl:ENSG00000188379|HPRD:00950|Vega:OTTHUMG00000019674 9 9p22 interferon, alpha 2 protein-coding IFNA2 interferon, alpha 2 O IFN-alpha-2|alpha-2a interferon|interferon alpha 2a|interferon alpha 2b|interferon alpha A|interferon alpha-2|leIF A 20121230 -9606 3441 IFNA4 - IFN-alpha4a|INFA4 HGNC:5425|MIM:147564|Ensembl:ENSG00000236637|HPRD:00952|Vega:OTTHUMG00000019660 9 9p22 interferon, alpha 4 protein-coding IFNA4 interferon, alpha 4 O IFN-alpha-4|interferon alpha-4|interferon alpha-4B|interferon alpha-76|interferon alpha-M1 20121230 -9606 3442 IFNA5 RP11-380P16.5 IFN-alphaG|INFA5 HGNC:5426|MIM:147565|Ensembl:ENSG00000147873|HPRD:00953|Vega:OTTHUMG00000019664 9 9p22 interferon, alpha 5 protein-coding IFNA5 interferon, alpha 5 O IFN-alpha-5|interferon alpha-5|interferon alpha-61|interferon alpha-G|leIF G 20121230 -9606 3443 IFNA6 RP11-354P17.7 IFN-alphaK HGNC:5427|MIM:147566|Ensembl:ENSG00000120235|HPRD:00954|Vega:OTTHUMG00000019676 9 9p22 interferon, alpha 6 protein-coding IFNA6 interferon, alpha 6 O IFN-alpha-6|interferon alpha-54|interferon alpha-6|interferon alpha-K|leIF K 20121230 -9606 3444 IFNA7 - IFN-alphaJ|IFNA-J HGNC:5428|MIM:147567|Ensembl:ENSG00000214042|HPRD:08857|Vega:OTTHUMG00000019662 9 9p22 interferon, alpha 7 protein-coding IFNA7 interferon, alpha 7 O IFN-alpha 7|IFN-alpha-7|IFN-alpha-J1|interferon alpha-7|interferon alpha-J|interferon alpha-J1|leIF J 20121230 -9606 3445 IFNA8 RP11-354P17.14-001 IFN-alphaB HGNC:5429|MIM:147568|Ensembl:ENSG00000120242|HPRD:00955|Vega:OTTHUMG00000019677 9 9p22 interferon, alpha 8 protein-coding IFNA8 interferon, alpha 8 O IFN-alpha-8|interferon alpha type 201|interferon alpha-8|interferon alpha-B|interferon alpha-B'|interferon alpha-B2|leIF B 20121230 -9606 3446 IFNA10 - IFN-alphaC HGNC:5418|MIM:147577|Ensembl:ENSG00000186803|HPRD:00963|Vega:OTTHUMG00000019658 9 9p22 interferon, alpha 10 protein-coding IFNA10 interferon, alpha 10 O IFN-alpha-10|interferon alpha-10|interferon alpha-6L|interferon alpha-C|leIF C 20121230 -9606 3447 IFNA13 - - HGNC:5419|MIM:147578|Ensembl:ENSG00000233816|HPRD:00964|Vega:OTTHUMG00000019675 9 9p22 interferon, alpha 13 protein-coding IFNA13 interferon, alpha 13 O IFN-alpha-1/13|interferon alpha-1/13|interferon alpha-D|leIF D 20121230 -9606 3448 IFNA14 - IFN-alphaH|LEIF2H HGNC:5420|MIM:147579|Ensembl:ENSG00000228083|HPRD:00965|Vega:OTTHUMG00000019665 9 9p22 interferon, alpha 14 protein-coding IFNA14 interferon, alpha 14 O IFN-alpha-14|interferon alpha-14|interferon alpha-H|interferon lambda-2-H|leIF H 20121230 -9606 3449 IFNA16 - IFN-alphaO HGNC:5421|MIM:147580|Ensembl:ENSG00000147885|HPRD:00966|Vega:OTTHUMG00000019663 9 9p22 interferon, alpha 16 protein-coding IFNA16 interferon, alpha 16 O IFN-alpha-16|IFN-alpha-N-protein|interferon alpha-16|interferon alpha-WA 20121230 -9606 3451 IFNA17 RP11-380P16.10-001 IFN-alphaI|IFNA|INFA|LEIF2C1 HGNC:5422|MIM:147583|Ensembl:ENSG00000234829|HPRD:00967|Vega:OTTHUMG00000019667 9 9p22 interferon, alpha 17 protein-coding IFNA17 interferon, alpha 17 O IFN-alpha-17|interferon alpha-17|interferon alpha-88|interferon alpha-I'|interferon alpha-T|interferon alpha-WA|leIF I 20121230 -9606 3452 IFNA21 - IFN-alphaI|LeIF F|leIF-F HGNC:5424|MIM:147584|Ensembl:ENSG00000137080|HPRD:00968|Vega:OTTHUMG00000019653 9 9p22 interferon, alpha 21 protein-coding IFNA21 interferon, alpha 21 O IFN-alpha-21|interferon alpha-21|interferon alpha-F|leukocyte interferon protein 20121230 -9606 3453 IFNA22P - IFNAP22 HGNC:5431 9 9p22 interferon, alpha 22, pseudogene pseudo IFNA22P interferon, alpha 22, pseudogene O - 20121230 -9606 3454 IFNAR1 - AVP|IFN-alpha-REC|IFNAR|IFNBR|IFRC HGNC:5432|MIM:107450|Ensembl:ENSG00000142166|HPRD:00126|Vega:OTTHUMG00000065126 21 21q22.11 interferon (alpha, beta and omega) receptor 1 protein-coding IFNAR1 interferon (alpha, beta and omega) receptor 1 O CRF2-1|IFN-R-1|IFN-alpha/beta receptor 1|alpha-type antiviral protein|beta-type antiviral protein|cytokine receptor class-II member 1|cytokine receptor family 2 member 1|interferon alpha/beta receptor 1|interferon-alpha/beta receptor alpha chain|interferon-beta receptor 1|type I interferon receptor 1 20121230 -9606 3455 IFNAR2 - IFN-R|IFN-alpha-REC|IFNABR|IFNARB HGNC:5433|MIM:602376|Ensembl:ENSG00000159110|HPRD:03850|Vega:OTTHUMG00000065127 21 21q22.11 interferon (alpha, beta and omega) receptor 2 protein-coding IFNAR2 interferon (alpha, beta and omega) receptor 2 O IFN-R-2|IFN-alpha binding protein|IFN-alpha/beta receptor 2|human interferon alpha/beta receptor|interferon alpha binding protein|interferon alpha/beta receptor 2|interferon-alpha/beta receptor beta chain|type I interferon receptor 2 20121230 -9606 3456 IFNB1 RP11-113D19.1 IFB|IFF|IFNB HGNC:5434|MIM:147640|Ensembl:ENSG00000171855|HPRD:00972|Vega:OTTHUMG00000019652 9 9p21 interferon, beta 1, fibroblast protein-coding IFNB1 interferon, beta 1, fibroblast O IFN-beta|fibroblast interferon|interferon beta 20121230 -9606 3458 IFNG - IFG|IFI HGNC:5438|MIM:147570|Ensembl:ENSG00000111537|HPRD:00957|Vega:OTTHUMG00000169113 12 12q14 interferon, gamma protein-coding IFNG interferon, gamma O IFN-gamma|immune interferon|interferon gamma 20121230 -9606 3459 IFNGR1 RP3-503F13.3 CD119|IFNGR HGNC:5439|MIM:107470|Ensembl:ENSG00000027697|HPRD:00127|Vega:OTTHUMG00000015656 6 6q23.3 interferon gamma receptor 1 protein-coding IFNGR1 interferon gamma receptor 1 O AVP, type 2|CD119 antigen|CDw119|IFN-gamma receptor 1|IFN-gamma-R1|antiviral protein, type 2|immune interferon receptor 1|interferon-gamma receptor alpha chain 20121230 -9606 3460 IFNGR2 - AF-1|IFGR2|IFNGT1 HGNC:5440|MIM:147569|Ensembl:ENSG00000159128|HPRD:00956|Vega:OTTHUMG00000065188 21 21q22.11 interferon gamma receptor 2 (interferon gamma transducer 1) protein-coding IFNGR2 interferon gamma receptor 2 (interferon gamma transducer 1) O IFN-gamma receptor 2|IFN-gamma-R2|interferon gamma receptor 2|interferon gamma receptor accessory factor 1|interferon gamma receptor accessory factor-1|interferon gamma receptor beta chain|interferon gamma transducer 1 20121230 -9606 3461 IFNA11P - IFNP11 HGNC:5442 9 9p21.3 interferon, alpha 11, pseudogene pseudo IFNA11P interferon, alpha 11, pseudogene O - 20121230 -9606 3463 IFNA20P - IFNP20 HGNC:5444 9 9p21.3 interferon, alpha 20, pseudogene pseudo IFNA20P interferon, alpha 20, pseudogene O - 20121230 -9606 3466 IFNR - IFNGM|IFNGM2 HGNC:5447|MIM:147573 16 - interferon production regulator unknown IFNR interferon production regulator O - 20121209 -9606 3467 IFNW1 - - HGNC:5448|MIM:147553|Ensembl:ENSG00000177047|HPRD:00944|Vega:OTTHUMG00000019656 9 9p22 interferon, omega 1 protein-coding IFNW1 interferon, omega 1 O IFN-omega 1, interferon omega-1|interferon alpha-II-1|interferon omega-1 20121230 -9606 3474 IFNWP19 - - HGNC:5451 9 9p22 interferon, omega 1 pseudogene 19 pseudo IFNWP19 interferon, omega 1 pseudogene 19 O - 20121230 -9606 3475 IFRD1 - PC4|TIS7 HGNC:5456|MIM:603502|Ensembl:ENSG00000006652|HPRD:04612|Vega:OTTHUMG00000155124 7 7q31.1 interferon-related developmental regulator 1 protein-coding IFRD1 interferon-related developmental regulator 1 O 12-O-tetradecanoylphorbol-13-acetate-induced sequence 7|TPA induced sequence 7|nerve growth factor-inducible protein PC4|pheochromocytoma cell-4 20121230 -9606 3476 IGBP1 RP13-46G5.1 ALPHA-4|IBP1 HGNC:5461|MIM:300139|Ensembl:ENSG00000089289|HPRD:02140|Vega:OTTHUMG00000021767 X Xq13.1-q13.3 immunoglobulin (CD79A) binding protein 1 protein-coding IGBP1 immunoglobulin (CD79A) binding protein 1 O B cell signal transduction molecule alpha 4|B-cell signal transduction molecule alpha 4|CD79a-binding protein 1|bA351K23.1 (immunoglobulin binding protein 1 (CD79A) )|immunoglobulin-binding protein 1|protein alpha-4|protein phosphatase 2/4/6 regulatory subunit|protein phosphatase 2A, regulatory subunit alpha-4|renal carcinoma antigen NY-REN-16 20121230 -9606 3478 IGES - - HGNC:5463|MIM:147061 5 5q31.1 immunoglobulin E concentration, serum unknown IGES immunoglobulin E concentration, serum O - 20120622 -9606 3479 IGF1 - IGF-I|IGF1A|IGFI HGNC:5464|MIM:147440|Ensembl:ENSG00000017427|HPRD:00936|Vega:OTTHUMG00000149910 12 12q23.2 insulin-like growth factor 1 (somatomedin C) protein-coding IGF1 insulin-like growth factor 1 (somatomedin C) O IGF-IA|IGF-IB|MGF|insulin-like growth factor 1|insulin-like growth factor I|insulin-like growth factor IA|insulin-like growth factor IB|mechano growth factor|somatomedin-C 20121230 -9606 3480 IGF1R - CD221|IGFIR|IGFR|JTK13 HGNC:5465|MIM:147370|Ensembl:ENSG00000140443|HPRD:00932|Vega:OTTHUMG00000149851 15 15q26.3 insulin-like growth factor 1 receptor protein-coding IGF1R insulin-like growth factor 1 receptor O IGF-I receptor|insulin-like growth factor I receptor|soluble IGF1R variant 1|soluble IGF1R variant 2 20121230 -9606 3481 IGF2 PP1446 C11orf43|IGF-II|PP9974 HGNC:5466|MIM:147470|Ensembl:ENSG00000167244|HPRD:00939|HPRD:17410|Vega:OTTHUMG00000009395 11 11p15.5 insulin-like growth factor 2 (somatomedin A) protein-coding IGF2 insulin-like growth factor 2 (somatomedin A) O insulin-like growth factor II|insulin-like growth factor type 2|somatomedin-A 20121230 -9606 3482 IGF2R - CD222|CIMPR|M6P-R|MPR1|MPRI HGNC:5467|MIM:147280|Ensembl:ENSG00000197081|HPRD:00928|Vega:OTTHUMG00000015945 6 6q26 insulin-like growth factor 2 receptor protein-coding IGF2R insulin-like growth factor 2 receptor O 300 kDa mannose 6-phosphate receptor|CI Man-6-P receptor|CI-MPR|IGF-II receptor|M6P/IGF2 receptor|M6P/IGF2R|M6PR|MPR 300|cation-independent mannose-6 phosphate receptor|cation-independent mannose-6-phosphate receptor|insulin-like growth factor II receptor 20121230 -9606 3483 IGFALS - ALS HGNC:5468|MIM:601489|Ensembl:ENSG00000099769|HPRD:03290|Vega:OTTHUMG00000128638 16 16p13.3 insulin-like growth factor binding protein, acid labile subunit protein-coding IGFALS insulin-like growth factor binding protein, acid labile subunit O insulin-like growth factor binding protein complex acid labile chain|insulin-like growth factor-binding protein complex acid labile subunit 20121230 -9606 3484 IGFBP1 tcag7.702 AFBP|IBP1|IGF-BP25|PP12|hIGFBP-1 HGNC:5469|MIM:146730|Ensembl:ENSG00000146678|HPRD:00897|Vega:OTTHUMG00000152343 7 7p13-p12 insulin-like growth factor binding protein 1 protein-coding IGFBP1 insulin-like growth factor binding protein 1 O IBP-1|IGF-binding protein 1|IGFBP-1|alpha-pregnancy-associated endometrial globulin|amniotic fluid binding protein|binding protein-25|binding protein-26|binding protein-28|growth hormone independent-binding protein|insulin-like growth factor-binding protein 1|placental protein 12 20121230 -9606 3485 IGFBP2 - IBP2|IGF-BP53 HGNC:5471|MIM:146731|Ensembl:ENSG00000115457|HPRD:00898|Vega:OTTHUMG00000155341 2 2q33-q34 insulin-like growth factor binding protein 2, 36kDa protein-coding IGFBP2 insulin-like growth factor binding protein 2, 36kDa O IBP-2|IGF-binding protein 2|IGFBP-2|insulin-like growth factor-binding protein 2 20121230 -9606 3486 IGFBP3 tcag7.703 BP-53|IBP3 HGNC:5472|MIM:146732|Ensembl:ENSG00000146674|HPRD:00899|Vega:OTTHUMG00000023769 7 7p13-p12 insulin-like growth factor binding protein 3 protein-coding IGFBP3 insulin-like growth factor binding protein 3 O IBP-3|IGF-binding protein 3|IGFBP-3|acid stable subunit of the 140 K IGF complex|binding protein 29|binding protein 53|growth hormone-dependent binding protein|insulin-like growth factor-binding protein 3 20121230 -9606 3487 IGFBP4 - BP-4|HT29-IGFBP|IBP4|IGFBP-4 HGNC:5473|MIM:146733|Ensembl:ENSG00000141753|HPRD:00900|Vega:OTTHUMG00000133326 17 17q12-q21.1 insulin-like growth factor binding protein 4 protein-coding IGFBP4 insulin-like growth factor binding protein 4 O IBP-4|IGF-binding protein 4|insulin-like growth factor-binding protein 4 20121230 -9606 3488 IGFBP5 - IBP5 HGNC:5474|MIM:146734|Ensembl:ENSG00000115461|HPRD:00901|Vega:OTTHUMG00000133058 2 2q33-q36 insulin-like growth factor binding protein 5 protein-coding IGFBP5 insulin-like growth factor binding protein 5 O IBP-5|IGF-binding protein 5|IGFBP-5|insulin-like growth factor-binding protein 5 20121230 -9606 3489 IGFBP6 - IBP6 HGNC:5475|MIM:146735|Ensembl:ENSG00000167779|HPRD:00902|Vega:OTTHUMG00000169773 12 12q13 insulin-like growth factor binding protein 6 protein-coding IGFBP6 insulin-like growth factor binding protein 6 O IBP-6|IGF binding protein 6|IGF-binding protein 6|IGFBP-6|insulin-like growth factor-binding protein 6 20121230 -9606 3490 IGFBP7 - AGM|FSTL2|IBP-7|IGFBP-7|IGFBP-7v|IGFBPRP1|MAC25|PSF|RAMSVPS|TAF HGNC:5476|MIM:602867|Ensembl:ENSG00000163453|HPRD:04183|Vega:OTTHUMG00000128772 4 4q12 insulin-like growth factor binding protein 7 protein-coding IGFBP7 insulin-like growth factor binding protein 7 O IGF-binding protein 7|IGFBP-rP1|PGI2-stimulating factor|angiomodulin|insulin-like growth factor-binding protein 7|prostacyclin-stimulating factor|tumor-derived adhesion factor 20121230 -9606 3491 CYR61 - CCN1|GIG1|IGFBP10 HGNC:2654|MIM:602369|Ensembl:ENSG00000142871|HPRD:09089|Vega:OTTHUMG00000010577 1 1p22.3 cysteine-rich, angiogenic inducer, 61 protein-coding CYR61 cysteine-rich, angiogenic inducer, 61 O CCN family member 1|IBP-10|IGF-binding protein 10|IGFBP-10|cysteine-rich heparin-binding protein 61|cysteine-rich, anigogenic inducer, 61|insulin-like growth factor-binding protein 10|protein CYR61 20121230 -9606 3492 IGH@ - IGH|IGH.1@|IGHDY1 HGNC:5477 14 14q32.33 immunoglobulin heavy locus protein-coding IGH@ immunoglobulin heavy locus O immunglobulin heavy chain variable region 20121230 -9606 3493 IGHA1 - IgA1 HGNC:5478|MIM:146900|IMGT/GENE-DB:IGHA1 14 14q32.33 immunoglobulin heavy constant alpha 1 other IGHA1 immunoglobulin heavy constant alpha 1 O - 20121230 -9606 3494 IGHA2 - - HGNC:5479|MIM:147000|IMGT/GENE-DB:IGHA2 14 14q32.33 immunoglobulin heavy constant alpha 2 (A2m marker) other IGHA2 immunoglobulin heavy constant alpha 2 (A2m marker) O - 20121230 -9606 3495 IGHD - - HGNC:5480|MIM:147170|IMGT/GENE-DB:IGHD 14 14q32.33 immunoglobulin heavy constant delta other IGHD immunoglobulin heavy constant delta O - 20121230 -9606 3496 IGHDOR15@ - IGD2|IGHD/OR15|IGHDY2 MIM:146990 15 15q11-q12 immunoglobulin heavy diversity orphans on chromosome 15 other - - - - 20101007 -9606 3497 IGHE - IgE HGNC:5522|MIM:147180|IMGT/GENE-DB:IGHE 14 14q32.33 immunoglobulin heavy constant epsilon other IGHE immunoglobulin heavy constant epsilon O - 20121230 -9606 3498 IGHEP1 - - HGNC:5523|IMGT/GENE-DB:IGHEP1 14 14q32.33 immunoglobulin heavy constant epsilon P1 (pseudogene) pseudo IGHEP1 immunoglobulin heavy constant epsilon P1 (pseudogene) O - 20121230 -9606 3499 IGHEP2 - - HGNC:5524|IMGT/GENE-DB:IGHEP2 9 9p24.1 immunoglobulin heavy constant epsilon P2 (pseudogene) pseudo IGHEP2 immunoglobulin heavy constant epsilon P2 (pseudogene) O - 20121230 -9606 3500 IGHG1 - - HGNC:5525|MIM:147100|IMGT/GENE-DB:IGHG1 14 14q32.33 immunoglobulin heavy constant gamma 1 (G1m marker) other IGHG1 immunoglobulin heavy constant gamma 1 (G1m marker) O - 20121230 -9606 3501 IGHG2 - - HGNC:5526|MIM:147110|IMGT/GENE-DB:IGHG2 14 14q32.33 immunoglobulin heavy constant gamma 2 (G2m marker) other IGHG2 immunoglobulin heavy constant gamma 2 (G2m marker) O - 20121230 -9606 3502 IGHG3 - IgG3 HGNC:5527|MIM:147120|IMGT/GENE-DB:IGHG3 14 14q32.33 immunoglobulin heavy constant gamma 3 (G3m marker) other IGHG3 immunoglobulin heavy constant gamma 3 (G3m marker) O - 20121230 -9606 3503 IGHG4 - - HGNC:5528|MIM:147130|IMGT/GENE-DB:IGHG4 14 14q32.33 immunoglobulin heavy constant gamma 4 (G4m marker) other IGHG4 immunoglobulin heavy constant gamma 4 (G4m marker) O - 20121230 -9606 3505 IGHGP - IGHGP1 HGNC:5529|IMGT/GENE-DB:IGHGP 14 14q32.33 immunoglobulin heavy constant gamma P (non-functional) pseudo IGHGP immunoglobulin heavy constant gamma P (non-functional) O - 20121230 -9606 3506 IGHJ@ - IGHJ HGNC:5531|MIM:147010 14 14q32.33 immunoglobulin heavy joining cluster other IGHJ@ immunoglobulin heavy joining cluster O - 20120208 -9606 3507 IGHM - AGM1|MU|VH HGNC:5541|MIM:147020|IMGT/GENE-DB:IGHM 14 14q32.33 immunoglobulin heavy constant mu other IGHM immunoglobulin heavy constant mu O - 20121230 -9606 3508 IGHMBP2 - CATF1|HCSA|HMN6|SMARD1|SMUBP2|ZFAND7 HGNC:5542|MIM:600502|Ensembl:ENSG00000132740|HPRD:02736|Vega:OTTHUMG00000167894 11 11q13.3 immunoglobulin mu binding protein 2 protein-coding IGHMBP2 immunoglobulin mu binding protein 2 O ATP-dependent helicase IGHMBP2|DNA-binding protein SMUBP-2|GF-1|cardiac transcription factor 1|glial factor 1|immunoglobulin mu-binding protein 2|zinc finger, AN1-type domain 7 20121230 -9606 3509 IGHV@ - IGHV HGNC:5545|MIM:147070 14 14q32.33 immunoglobulin heavy variable cluster other IGHV@ immunoglobulin heavy variable cluster O - 20121230 -9606 3512 IGJ - IGCJ|JCH HGNC:5713|MIM:147790|Ensembl:ENSG00000132465|HPRD:00991|Vega:OTTHUMG00000129909 4 4q21 immunoglobulin J polypeptide, linker protein for immunoglobulin alpha and mu polypeptides protein-coding IGJ immunoglobulin J polypeptide, linker protein for immunoglobulin alpha and mu polypeptides O IgJ chain|immunoglobulin J chain 20121230 -9606 3513 IGJP1 - - HGNC:5714 8 8q21.2 immunoglobulin J polypeptide pseudogene 1 pseudo IGJP1 immunoglobulin J polypeptide pseudogene 1 O - 20121230 -9606 3514 IGKC - HCAK1|IGKCD|Km HGNC:5716|MIM:147200|IMGT/GENE-DB:IGKC 2 2p12 immunoglobulin kappa constant other IGKC immunoglobulin kappa constant O - 20121230 -9606 3515 IGKDEL - IGKDE HGNC:5717|MIM:146780 2 2p12 immunoglobulin kappa deleting element or like other IGKDEL immunoglobulin kappa deleting element or like O - 20120816 -9606 3516 RBPJ - AOS3|CBF1|IGKJRB|IGKJRB1|KBF2|RBP-J|RBPJK|RBPSUH|SUH|csl HGNC:5724|MIM:147183|Ensembl:ENSG00000168214|HPRD:00920|Vega:OTTHUMG00000097793 4 4p15.2 recombination signal binding protein for immunoglobulin kappa J region protein-coding RBPJ recombination signal binding protein for immunoglobulin kappa J region O CBF-1|H-2K binding factor-2|RBP-J kappa|RBP-JK|immunoglobulin kappa J region recombination signal binding protein 1|recombining binding protein suppressor of hairless|renal carcinoma antigen NY-REN-30|suppressor of hairless homolog 20121230 -9606 3517 RBPJP2 - IGKJRBP2|RBPSUHP2 HGNC:5726 9 9q13 RBPJ pseudogene 2 pseudo RBPJP2 RBPJ pseudogene 2 O - 20121230 -9606 3519 IGKV@ - IGKV|IGKV1|IGKV1@|IGKV2|IGKV2@|IGKV3|IGKV3@ HGNC:5728|MIM:146980 2 2p12 immunoglobulin kappa variable cluster other IGKV@ immunoglobulin kappa variable cluster O - 20120208 -9606 3523 IGKV3OR2-268 - IGKV268|IGKV3OR2-268A|IGKV3OR2268|IGKV3OR2268A HGNC:5830|IMGT/GENE-DB:IGKV3/OR2-268 2 2p12 immunoglobulin kappa variable 3/OR2-268 (non-functional) other IGKV3OR2-268 immunoglobulin kappa variable 3/OR2-268 (non-functional) O - 20120514 -9606 3525 IGKV1OR1-1 - IGKV1/OR1-1|IGKV1OR11|IGKVP1 HGNC:5764|IMGT/GENE-DB:IGKV1/OR1-1 1 1p13-q12 immunoglobulin kappa variable 1/OR1-1 (pseudogene) pseudo IGKV1OR1-1 immunoglobulin kappa variable 1/OR1-1 (pseudogene) O - 20121230 -9606 3527 IGKV3OR22-2 - IGKV3OR222|IGKVP3 HGNC:5833|IMGT/GENE-DB:IGKV3/OR22-2 22 22q11.1 immunoglobulin kappa variable 3/OR22-2 (pseudogene) pseudo IGKV3OR22-2 immunoglobulin kappa variable 3/OR22-2 (pseudogene) O - 20121230 -9606 3529 IGKV2OR22-3 - IGKV2OR223|IGKVP4 HGNC:5812|IMGT/GENE-DB:IGKV2/OR22-3 22 22q11.1 immunoglobulin kappa variable 2/OR22-3 (pseudogene) pseudo IGKV2OR22-3 immunoglobulin kappa variable 2/OR22-3 (pseudogene) O - 20121230 -9606 3530 IGKV1OR22-1 - IGKV1OR221|IGKVP5 HGNC:5772|IMGT/GENE-DB:IGKV1/OR22-1 22 22q11.1 immunoglobulin kappa variable 1/OR22-1 (pseudogene) pseudo IGKV1OR22-1 immunoglobulin kappa variable 1/OR22-1 (pseudogene) O - 20121230 -9606 3531 IGKV1OR-1 - IGKV1/OR-1|IGKV1OR1|IGKVPZ1 HGNC:5760|IMGT/GENE-DB:IGKV1/OR-1 - - immunoglobulin kappa variable 1/OR-1 (pseudogene) pseudo IGKV1OR-1 immunoglobulin kappa variable 1/OR-1 (pseudogene) O - 20111109 -9606 3532 IGKV1OR-2 - IGKV1/OR-2|IGKV1OR2|IGKVPZ2 HGNC:5761|IMGT/GENE-DB:IGKV1/OR-2 9 - immunoglobulin kappa variable 1/OR-2 (pseudogene) pseudo IGKV1OR-2 immunoglobulin kappa variable 1/OR-2 (pseudogene) O - 20121230 -9606 3534 IGKV1OR-4 - IGKV1/OR-4|IGKV1OR4|IGKVPZ4 HGNC:5763|IMGT/GENE-DB:IGKV1/OR-4 - - immunoglobulin kappa variable 1/OR-4 (pseudogene) pseudo IGKV1OR-4 immunoglobulin kappa variable 1/OR-4 (pseudogene) O - 20111109 -9606 3535 IGL@ - IGL|IGLC6 HGNC:5853 22 22q11.2 immunoglobulin lambda locus protein-coding IGL@ immunoglobulin lambda locus O ig lambda-6 chain C region|immunoglobulin lambda gene cluster 20121230 -9606 3536 IGLC@ - IGLC HGNC:5854 22 22q11.2 immunoglobulin lambda constant cluster other IGLC@ immunoglobulin lambda constant cluster O - 20120208 -9606 3537 IGLC1 - IGLC HGNC:5855|MIM:147220|IMGT/GENE-DB:IGLC1 22 22q11.2 immunoglobulin lambda constant 1 (Mcg marker) other IGLC1 immunoglobulin lambda constant 1 (Mcg marker) O - 20121230 -9606 3538 IGLC2 - IGLC HGNC:5856|IMGT/GENE-DB:IGLC2 22 22q11.2 immunoglobulin lambda constant 2 (Kern-Oz- marker) other IGLC2 immunoglobulin lambda constant 2 (Kern-Oz- marker) O - 20121230 -9606 3539 IGLC3 - IGLC HGNC:5857|IMGT/GENE-DB:IGLC3 22 22q11.2 immunoglobulin lambda constant 3 (Kern-Oz+ marker) other IGLC3 immunoglobulin lambda constant 3 (Kern-Oz+ marker) O - 20121230 -9606 3540 IGLC4 - IGLC HGNC:5858|IMGT/GENE-DB:IGLC4 22 22q11.2 immunoglobulin lambda constant 4 (pseudogene) pseudo IGLC4 immunoglobulin lambda constant 4 (pseudogene) O - 20121230 -9606 3541 IGLC5 - IGLC HGNC:5859|IMGT/GENE-DB:IGLC5 22 22q11.2 immunoglobulin lambda constant 5 (pseudogene) pseudo IGLC5 immunoglobulin lambda constant 5 (pseudogene) O - 20121230 -9606 3542 IGLC6 - IGLC HGNC:5860|IMGT/GENE-DB:IGLC6 22 22q11.2 immunoglobulin lambda constant 6 (Kern+Oz- marker, gene/pseudogene) other IGLC6 immunoglobulin lambda constant 6 (Kern+Oz- marker, gene/pseudogene) O - 20121230 -9606 3543 IGLL1 - 14.1|AGM2|CD179b|IGL1|IGL5|IGLJ14.1|IGLL|IGO|IGVPB|VPREB2 HGNC:5870|MIM:146770|Ensembl:ENSG00000128322|HPRD:00905|Vega:OTTHUMG00000150673 22 22q11.23 immunoglobulin lambda-like polypeptide 1 protein-coding IGLL1 immunoglobulin lambda-like polypeptide 1 O CD179 antigen-like family member B|CD179b antigen|Pre-B lymphocyte-specific protein-2|ig lambda-5|immunoglobulin omega polypeptide chain|immunoglobulin-related 14.1 protein|immunoglobulin-related protein 14.1|lambda5 20121230 -9606 3544 IGLL2P - 16.2|FLAMBDA1|IGLL1P|IGLL2 HGNC:5871 22 22q11.23 immunoglobulin lambda-like polypeptide 2, pseudogene pseudo IGLL2P immunoglobulin lambda-like polypeptide 2, pseudogene O - 20120720 -9606 3546 IGLV@ - IGLV HGNC:5875|MIM:147240 22 22q11.2 immunoglobulin lambda variable cluster other IGLV@ immunoglobulin lambda variable cluster O - 20120923 -9606 3547 IGSF1 RP11-689E9.1 IGCD1|IGDC1|INHBP|PGSF2|p120 HGNC:5948|MIM:300137|Ensembl:ENSG00000147255|HPRD:02138|Vega:OTTHUMG00000022406 X Xq25 immunoglobulin superfamily, member 1 protein-coding IGSF1 immunoglobulin superfamily, member 1 O immunoglobulin superfamily member 1|immunoglobulin-like domain-containing protein 1|inhibin-binding protein|pituitary gland-specific factor 2 20121230 -9606 3548 IHG1 - IHG HGNC:5954|MIM:308500 X - iris hypoplasia with glaucoma 1 unknown IHG1 iris hypoplasia with glaucoma 1 O - 20110215 -9606 3549 IHH - BDA1|HHG2 HGNC:5956|MIM:600726|Ensembl:ENSG00000163501|HPRD:02839|Vega:OTTHUMG00000154631 2 2q33-q35 Indian hedgehog protein-coding IHH Indian hedgehog O HHG-2|Indian hedgehog homolog|indian hedgehog protein 20121230 -9606 3550 IK - CSA2|RED HGNC:5958|MIM:600549|Ensembl:ENSG00000113141|HPRD:02771|Vega:OTTHUMG00000163374 5 5q31.3 IK cytokine, down-regulator of HLA II protein-coding IK IK cytokine, down-regulator of HLA II O IK factor|RD element|chondrosarcoma-associated protein 2|cytokine IK|prer protein|protein Red 20121230 -9606 3551 IKBKB - IKK-beta|IKK2|IKKB|NFKBIKB HGNC:5960|MIM:603258|Ensembl:ENSG00000104365|HPRD:04462|Vega:OTTHUMG00000164092 8 8p11.2 inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase beta protein-coding IKBKB inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase beta O I-kappa-B kinase 2|I-kappa-B-kinase beta|IKK-B|inhibitor of nuclear factor kappa-B kinase subunit beta|nuclear factor NF-kappa-B inhibitor kinase beta 20121230 -9606 3552 IL1A - IL-1A|IL1|IL1-ALPHA|IL1F1 HGNC:5991|MIM:147760|Ensembl:ENSG00000115008|HPRD:00988|Vega:OTTHUMG00000131315 2 2q14 interleukin 1, alpha protein-coding IL1A interleukin 1, alpha O IL-1 alpha|hematopoietin-1|interleukin-1 alpha|preinterleukin 1 alpha|pro-interleukin-1-alpha 20121230 -9606 3553 IL1B - IL-1|IL1-BETA|IL1F2 HGNC:5992|MIM:147720|Ensembl:ENSG00000125538|HPRD:00985|Vega:OTTHUMG00000131344 2 2q14 interleukin 1, beta protein-coding IL1B interleukin 1, beta O IL-1 beta|catabolin|interleukin-1 beta|preinterleukin 1 beta|pro-interleukin-1-beta 20121230 -9606 3554 IL1R1 - CD121A|D2S1473|IL-1R-alpha|IL1R|IL1RA|P80 HGNC:5993|MIM:147810|Ensembl:ENSG00000115594|HPRD:00994|Vega:OTTHUMG00000130783 2 2q12 interleukin 1 receptor, type I protein-coding IL1R1 interleukin 1 receptor, type I O CD121 antigen-like family member A|IL-1R-1|IL-1RT-1|IL-1RT1|antigen CD121a|interleukin 1 receptor alpha, type I|interleukin receptor 1|interleukin-1 receptor alpha|interleukin-1 receptor type 1|interleukin-1 receptor type I 20121230 -9606 3556 IL1RAP - C3orf13|IL-1RAcP|IL1R3 HGNC:5995|MIM:602626|Ensembl:ENSG00000196083|HPRD:04021|Vega:OTTHUMG00000156211 3 3q28 interleukin 1 receptor accessory protein protein-coding IL1RAP interleukin 1 receptor accessory protein O IL-1 receptor accessory protein|IL-1R3|interleukin-1 receptor 3|interleukin-1 receptor accessory protein|interleukin-1 receptor accessory protein beta 20121230 -9606 3557 IL1RN - DIRA|ICIL-1RA|IL-1RN|IL-1ra|IL-1ra3|IL1F3|IL1RA|IRAP|MVCD4 HGNC:6000|MIM:147679|Ensembl:ENSG00000136689|HPRD:00978|Vega:OTTHUMG00000131341 2 2q14.2 interleukin 1 receptor antagonist protein-coding IL1RN interleukin 1 receptor antagonist O IL1 inhibitor|IL1RN (IL1F3)|interleukin-1 receptor antagonist protein|intracellular IL-1 receptor antagonist type II|intracellular interleukin-1 receptor antagonist (icIL-1ra)|type II interleukin-1 receptor antagonist 20121230 -9606 3558 IL2 - IL-2|TCGF|lymphokine HGNC:6001|MIM:147680|Ensembl:ENSG00000109471|HPRD:00979|Vega:OTTHUMG00000133075 4 4q26-q27 interleukin 2 protein-coding IL2 interleukin 2 O T cell growth factor|aldesleukin|interleukin-2|involved in regulation of T-cell clonal expansion 20121230 -9606 3559 IL2RA RP11-536K7.1 CD25|IDDM10|IL2R|TCGFR HGNC:6008|MIM:147730|Ensembl:ENSG00000134460|HPRD:00986|Vega:OTTHUMG00000017616 10 10p15-p14 interleukin 2 receptor, alpha protein-coding IL2RA interleukin 2 receptor, alpha O IL-2 receptor subunit alpha|IL-2-RA|IL-2R subunit alpha|IL2-RA|TAC antigen|interleukin-2 receptor subunit alpha|p55 20121230 -9606 3560 IL2RB RP5-1170K4.6 CD122|IL15RB|P70-75 HGNC:6009|MIM:146710|Ensembl:ENSG00000100385|HPRD:00896|Vega:OTTHUMG00000150534 22 22q13.1 interleukin 2 receptor, beta protein-coding IL2RB interleukin 2 receptor, beta O CD122 antigen|IL-2 receptor subunit beta|IL-2R subunit beta|IL-2RB|high affinity IL-2 receptor beta subunit|high affinity IL-2 receptor subunit beta|interleukin 15 receptor, beta|interleukin-2 receptor subunit beta|p75 20121230 -9606 3561 IL2RG - CD132|CIDX|IL-2RG|IMD4|P64|SCIDX|SCIDX1 HGNC:6010|MIM:308380|Ensembl:ENSG00000147168|HPRD:02391|Vega:OTTHUMG00000021787 X Xq13.1 interleukin 2 receptor, gamma protein-coding IL2RG interleukin 2 receptor, gamma O CD132 antigen|IL-2 receptor subunit gamma|IL-2R subunit gamma|common cytokine receptor gamma chain|cytokine receptor common subunit gamma|gammaC 20121230 -9606 3562 IL3 - IL-3|MCGF|MULTI-CSF HGNC:6011|MIM:147740|Ensembl:ENSG00000164399|HPRD:00987|Vega:OTTHUMG00000059640 5 5q31.1 interleukin 3 (colony-stimulating factor, multiple) protein-coding IL3 interleukin 3 (colony-stimulating factor, multiple) O P-cell stimulating factor|P-cell-stimulating factor|hematopoietic growth factor|interleukin-3|mast cell growth factor|mast-cell growth factor|multilineage-colony-stimulating factor|multipotential colony-stimulating factor 20121230 -9606 3563 IL3RA RP11-261P4.2 CD123|IL3R|IL3RAY|IL3RX|IL3RY|hIL-3Ra HGNC:6012|MIM:308385|MIM:430000|Ensembl:ENSG00000185291|HPRD:02392|HPRD:08951|Vega:OTTHUMG00000021059 X|Y Xp22.3 or Yp11.3 interleukin 3 receptor, alpha (low affinity) protein-coding IL3RA interleukin 3 receptor, alpha (low affinity) O CD123 antigen|IL-3 receptor alpha SP2 isoform|IL-3 receptor subunit alpha|IL-3R subunit alpha|IL-3R-alpha|IL-3RA|interleukin-3 receptor subunit alpha 20121230 -9606 3565 IL4 - BCGF-1|BCGF1|BSF-1|BSF1|IL-4 HGNC:6014|MIM:147780|Ensembl:ENSG00000113520|HPRD:00989|Vega:OTTHUMG00000059724 5 5q31.1 interleukin 4 protein-coding IL4 interleukin 4 O B cell growth factor 1|B_cell stimulatory factor 1|binetrakin|interleukin-4|lymphocyte stimulatory factor 1|pitrakinra 20121230 -9606 3566 IL4R 582J2.1 CD124|IL-4RA|IL4RA HGNC:6015|MIM:147781|Ensembl:ENSG00000077238|HPRD:00990|Vega:OTTHUMG00000097015 16 16p12.1-p11.2 interleukin 4 receptor protein-coding IL4R interleukin 4 receptor O IL-4 receptor subunit alpha|IL4R nirs variant 1|interleukin-4 receptor alpha chain|interleukin-4 receptor subunit alpha 20121230 -9606 3567 IL5 - EDF|IL-5|TRF HGNC:6016|MIM:147850|Ensembl:ENSG00000113525|HPRD:00997|Vega:OTTHUMG00000059496 5 5q31.1 interleukin 5 (colony-stimulating factor, eosinophil) protein-coding IL5 interleukin 5 (colony-stimulating factor, eosinophil) O B-cell differentiation factor I|T-cell replacing factor|eosinophil differentiation factor|interleukin-5 20121230 -9606 3568 IL5RA - CD125|CDw125|HSIL5R3|IL5R HGNC:6017|MIM:147851|Ensembl:ENSG00000091181|HPRD:00998|Vega:OTTHUMG00000090245 3 3p26-p24 interleukin 5 receptor, alpha protein-coding IL5RA interleukin 5 receptor, alpha O CD125 antigen|IL-5 receptor subunit alpha|IL-5R subunit alpha|interleukin 5 receptor type 3|interleukin-5 receptor alpha chain|interleukin-5 receptor subunit alpha 20121230 -9606 3569 IL6 - BSF2|HGF|HSF|IFNB2|IL-6 HGNC:6018|MIM:147620|Ensembl:ENSG00000136244|HPRD:00970|Vega:OTTHUMG00000023178 7 7p21 interleukin 6 (interferon, beta 2) protein-coding IL6 interleukin 6 (interferon, beta 2) O B-cell differentiation factor|B-cell stimulatory factor 2|BSF-2|CDF|CTL differentiation factor|IFN-beta-2|hybridoma growth factor|interferon beta-2|interleukin BSF-2|interleukin-6 20121230 -9606 3570 IL6R - CD126|IL-6R-1|IL-6RA|IL6Q|IL6RA|IL6RQ|gp80 HGNC:6019|MIM:147880|Ensembl:ENSG00000160712|HPRD:01000|Vega:OTTHUMG00000036073 1 1q21 interleukin 6 receptor protein-coding IL6R interleukin 6 receptor O CD126 antigen|IL-6 receptor subunit alpha|IL-6R 1|interleukin-6 receptor subunit alpha|membrane glycoprotein 80 20121230 -9606 3572 IL6ST - CD130|CDW130|GP130|IL-6RB HGNC:6021|MIM:600694|Ensembl:ENSG00000134352|HPRD:02824|Vega:OTTHUMG00000097043 5 5q11.2 interleukin 6 signal transducer (gp130, oncostatin M receptor) protein-coding IL6ST interleukin 6 signal transducer (gp130, oncostatin M receptor) O CD130 antigen|IL-6 receptor subunit beta|IL-6R subunit beta|gp130 of the rheumatoid arthritis antigenic peptide-bearing soluble form|interleukin receptor beta chain|interleukin-6 receptor subunit beta|membrane glycoprotein 130|membrane glycoprotein gp130|oncostatin-M receptor subunit alpha 20121230 -9606 3573 IL6STP1 - IL6STP HGNC:6022 17 17p11 interleukin 6 signal transducer (gp130, oncostatin M receptor) pseudogene 1 pseudo IL6STP1 interleukin 6 signal transducer (gp130, oncostatin M receptor) pseudogene 1 O - 20121230 -9606 3574 IL7 - IL-7 HGNC:6023|MIM:146660|Ensembl:ENSG00000104432|HPRD:00892|Vega:OTTHUMG00000164620 8 8q12-q13 interleukin 7 protein-coding IL7 interleukin 7 O interleukin-7 20121230 -9606 3575 IL7R - CD127|CDW127|IL-7R-alpha|IL7RA|ILRA HGNC:6024|MIM:146661|Ensembl:ENSG00000168685|HPRD:00893|Vega:OTTHUMG00000090791 5 5p13 interleukin 7 receptor protein-coding IL7R interleukin 7 receptor O CD127 antigen|IL-7 receptor subunit alpha|IL-7R subunit alpha|IL-7RA|interleukin 7 receptor alpha chain|interleukin 7 receptor isoform H5-6|interleukin-7 receptor subunit alpha 20121230 -9606 3576 IL8 - CXCL8|GCP-1|GCP1|LECT|LUCT|LYNAP|MDNCF|MONAP|NAF|NAP-1|NAP1 HGNC:6025|MIM:146930|Ensembl:ENSG00000169429|HPRD:00909|Vega:OTTHUMG00000151316 4 4q13-q21 interleukin 8 protein-coding IL8 interleukin 8 O T-cell chemotactic factor|alveolar macrophage chemotactic factor I|beta endothelial cell-derived neutrophil activating peptide|beta-thromboglobulin-like protein|chemokine (C-X-C motif) ligand 8|emoctakin|granulocyte chemotactic protein 1|interleukin-8|lung giant cell carcinoma-derived chemotactic protein|lymphocyte derived neutrophil activating peptide|monocyte-derived neutrophil chemotactic factor|monocyte-derived neutrophil-activating peptide|neutrophil-activating peptide 1|small inducible cytokine subfamily B, member 8|tumor necrosis factor-induced gene 1 20121230 -9606 3577 CXCR1 - C-C|C-C-CKR-1|CD128|CD181|CDw128a|CKR-1|CMKAR1|IL8R1|IL8RA|IL8RBA HGNC:6026|MIM:146929|Ensembl:ENSG00000163464|HPRD:00908|Vega:OTTHUMG00000133108 2 2q35 chemokine (C-X-C motif) receptor 1 protein-coding CXCR1 chemokine (C-X-C motif) receptor 1 O C-X-C chemokine receptor type 1|CXC-R1|CXCR-1|IL-8 receptor type 1|IL-8R A|high affinity interleukin-8 receptor A|interleukin 8 receptor, alpha|interleukin-8 receptor type 1|interleukin-8 receptor type A 20121230 -9606 3578 IL9 - HP40|IL-9|P40 HGNC:6029|MIM:146931|Ensembl:ENSG00000145839|HPRD:00910|Vega:OTTHUMG00000129147 5 5q31.1 interleukin 9 protein-coding IL9 interleukin 9 O T-cell growth factor p40|cytokine P40|homolog of mouse T cell and mast cell growth factor 40|interleukin-9|p40 T-cell and mast cell growth factor|p40 cytokine 20121230 -9606 3579 CXCR2 - CD182|CDw128b|CMKAR2|IL8R2|IL8RA|IL8RB HGNC:6027|MIM:146928|Ensembl:ENSG00000180871|HPRD:00907|Vega:OTTHUMG00000133107 2 2q35 chemokine (C-X-C motif) receptor 2 protein-coding CXCR2 chemokine (C-X-C motif) receptor 2 O C-X-C chemokine receptor type 2|CXC-R2|CXCR-2|CXCR2 gene for IL8 receptor type B|GRO/MGSA receptor|IL-8 receptor type 2|IL-8R B|chemokine (CXC) receptor 2|high affinity interleukin-8 receptor B|interleukin 8 receptor B|interleukin 8 receptor type 2|interleukin 8 receptor, beta|interleukin-8 receptor type B 20121230 -9606 3580 CXCR2P1 - CXCR2P|IL8RBP HGNC:6028 2 2q35 chemokine (C-X-C motif) receptor 2 pseudogene 1 pseudo CXCR2P1 chemokine (C-X-C motif) receptor 2 pseudogene 1 O - 20121230 -9606 3581 IL9R - CD129|IL-9R HGNC:6030|MIM:300007|Ensembl:ENSG00000124334|HPRD:02052|Vega:OTTHUMG00000022720 X|Y Xq28 and Yq12 interleukin 9 receptor protein-coding IL9R interleukin 9 receptor O IL-9 receptor|interleukin-9 receptor 20121230 -9606 3586 IL10 RP11-262N9.1 CSIF|GVHDS|IL-10|IL10A|TGIF HGNC:5962|MIM:124092|Ensembl:ENSG00000136634|HPRD:00495|Vega:OTTHUMG00000036386 1 1q31-q32 interleukin 10 protein-coding IL10 interleukin 10 O T-cell growth inhibitory factor|cytokine synthesis inhibitory factor|interleukin-10 20121230 -9606 3587 IL10RA - CD210|CD210a|CDW210A|HIL-10R|IL-10R1|IL10R HGNC:5964|MIM:146933|Ensembl:ENSG00000110324|HPRD:00911|Vega:OTTHUMG00000166523 11 11q23 interleukin 10 receptor, alpha protein-coding IL10RA interleukin 10 receptor, alpha O IL-10 receptor subunit alpha|IL-10R subunit 1|IL-10R subunit alpha|IL-10RA|interleukin-10 receptor alpha chain|interleukin-10 receptor subunit 1|interleukin-10 receptor subunit alpha 20121230 -9606 3588 IL10RB - CDW210B|CRF2-4|CRFB4|D21S58|D21S66|IL-10R2 HGNC:5965|MIM:123889|Ensembl:ENSG00000243646|HPRD:00473|Vega:OTTHUMG00000065128 21 21q22.11 interleukin 10 receptor, beta protein-coding IL10RB interleukin 10 receptor, beta O IL-10 receptor subunit beta|IL-10R subunit 2|IL-10R subunit beta|IL-10RB|cytokine receptor class-II CRF2-4|cytokine receptor class-II member 4|cytokine receptor family 2 member 4|cytokine receptor family II, member 4|interleukin-10 receptor subunit 2|interleukin-10 receptor subunit beta 20121230 -9606 3589 IL11 - AGIF|IL-11 HGNC:5966|MIM:147681|Ensembl:ENSG00000095752|HPRD:00980|Vega:OTTHUMG00000180789 19 19q13.3-q13.4 interleukin 11 protein-coding IL11 interleukin 11 O adipogenesis inhibitory factor|interleukin-11|oprelvekin 20121230 -9606 3590 IL11RA hCG_2011440 CRSDA HGNC:5967|MIM:600939|Ensembl:ENSG00000137070|HPRD:02965|Vega:OTTHUMG00000019837 9 9p13 interleukin 11 receptor, alpha protein-coding IL11RA interleukin 11 receptor, alpha O IL-11 receptor subunit alpha|IL-11R subunit alpha|interleukin-11 receptor alpha chain|interleukin-11 receptor subunit alpha 20121230 -9606 3591 IL11RB - - HGNC:5968 - - interleukin 11 receptor, beta protein-coding IL11RB interleukin 11 receptor, beta O - 20080828 -9606 3592 IL12A - CLMF|IL-12A|NFSK|NKSF1|P35 HGNC:5969|MIM:161560|Ensembl:ENSG00000168811|HPRD:01193|Vega:OTTHUMG00000158942 3 3q25.33 interleukin 12A (natural killer cell stimulatory factor 1, cytotoxic lymphocyte maturation factor 1, p35) protein-coding IL12A interleukin 12A (natural killer cell stimulatory factor 1, cytotoxic lymphocyte maturation factor 1, p35) O CLMF p35|IL-12 subunit p35|IL-12, subunit p35|IL35 subunit|NF cell stimulatory factor chain 1|NK cell stimulatory factor chain 1|cytotoxic lymphocyte maturation factor 1, p35|cytotoxic lymphocyte maturation factor 35 kDa subunit|interleukin 12, p35|interleukin-12 alpha chain|interleukin-12 subunit alpha|natural killer cell stimulatory factor 1, 35 kD subunit 20121230 -9606 3593 IL12B - CLMF|CLMF2|IL-12B|NKSF|NKSF2 HGNC:5970|MIM:161561|Ensembl:ENSG00000113302|HPRD:01194|Vega:OTTHUMG00000130307 5 5q31.1-q33.1 interleukin 12B (natural killer cell stimulatory factor 2, cytotoxic lymphocyte maturation factor 2, p40) protein-coding IL12B interleukin 12B (natural killer cell stimulatory factor 2, cytotoxic lymphocyte maturation factor 2, p40) O CLMF p40|IL-12 subunit p40|IL12, subunit p40|NK cell stimulatory factor chain 2|cytotoxic lymphocyte maturation factor 40 kDa subunit|interleukin 12, p40|interleukin-12 beta chain|interleukin-12 subunit beta|natural killer cell stimulatory factor, 40 kD subunit 20121230 -9606 3594 IL12RB1 - CD212|IL-12R-BETA1|IL12RB HGNC:5971|MIM:601604|Ensembl:ENSG00000096996|HPRD:03363 19 19p13.1 interleukin 12 receptor, beta 1 protein-coding IL12RB1 interleukin 12 receptor, beta 1 O IL-12 receptor beta component|IL-12 receptor subunit beta-1|IL-12R subunit beta-1|IL-12R-beta-1|IL-12RB1|interleukin-12 receptor beta-1 chain|interleukin-12 receptor subunit beta-1 20121230 -9606 3595 IL12RB2 RP11-102M16.1 - HGNC:5972|MIM:601642|Ensembl:ENSG00000081985|HPRD:03383|Vega:OTTHUMG00000009094 1 1p31.3-p31.2 interleukin 12 receptor, beta 2 protein-coding IL12RB2 interleukin 12 receptor, beta 2 O IL-12 receptor subunit beta-2|IL-12R subunit beta-2|interleukin-12 receptor beta-2 chain|interleukin-12 receptor subunit beta-2 20121230 -9606 3596 IL13 - ALRH|BHR1|IL-13|P600 HGNC:5973|MIM:147683|Ensembl:ENSG00000169194|HPRD:00981|Vega:OTTHUMG00000059723 5 5q31 interleukin 13 protein-coding IL13 interleukin 13 O Bronchial hyperresponsiveness-1 (bronchial asthma)|allergic rhinitis|interleukin-13 20121230 -9606 3597 IL13RA1 RP13-128O4.2 CD213A1|IL-13Ra|NR4 HGNC:5974|MIM:300119|Ensembl:ENSG00000131724|HPRD:02125|Vega:OTTHUMG00000022258 X Xq24 interleukin 13 receptor, alpha 1 protein-coding IL13RA1 interleukin 13 receptor, alpha 1 O CD213a1 antigen|CT19|IL-13 receptor subunit alpha-1|IL-13R subunit alpha-1|IL-13R-alpha-1|IL-13RA1|IL13 receptor alpha-1 chain|bB128O4.2.1 (interleukin 13 receptor, alpha 1)|cancer/testis antigen 19|interleukin-13 receptor subunit alpha-1 20121230 -9606 3598 IL13RA2 - CD213A2|CT19|IL-13R|IL13BP HGNC:5975|MIM:300130|Ensembl:ENSG00000123496|HPRD:02132|Vega:OTTHUMG00000022229 X Xq13.1-q28 interleukin 13 receptor, alpha 2 protein-coding IL13RA2 interleukin 13 receptor, alpha 2 O IL-13 receptor subunit alpha-2|IL-13R subunit alpha-2|IL-13R-alpha-2|IL-13RA2|cancer/testis antigen 19|interleukin 13 binding protein|interleukin 13 receptor alpha 2 chain|interleukin-13 receptor subunit alpha-2|interleukin-13-binding protein 20121230 -9606 3600 IL15 - IL-15 HGNC:5977|MIM:600554|Ensembl:ENSG00000164136|HPRD:02776|Vega:OTTHUMG00000133418 4 4q31 interleukin 15 protein-coding IL15 interleukin 15 O interleukin-15 20121230 -9606 3601 IL15RA RP11-536K7.2 CD215 HGNC:5978|MIM:601070|Ensembl:ENSG00000134470|HPRD:03045|Vega:OTTHUMG00000017612 10 10p15.1 interleukin 15 receptor, alpha protein-coding IL15RA interleukin 15 receptor, alpha O interleukin-15 receptor subunit alpha 20121230 -9606 3603 IL16 - LCF|NIL16|PRIL16|prIL-16 HGNC:5980|MIM:603035|Ensembl:ENSG00000172349|HPRD:04329|Vega:OTTHUMG00000144186 15 15q26.3 interleukin 16 protein-coding IL16 interleukin 16 O lymphocyte chemoattractant factor|neuronal interleukin 16|pro-interleukin-16|prointerleukin 16 20121230 -9606 3604 TNFRSF9 - 4-1BB|CD137|CDw137|ILA HGNC:11924|MIM:602250|Ensembl:ENSG00000049249|HPRD:03767|Vega:OTTHUMG00000001223 1 1p36 tumor necrosis factor receptor superfamily, member 9 protein-coding TNFRSF9 tumor necrosis factor receptor superfamily, member 9 O 4-1BB ligand receptor|CD137 antigen|T cell antigen ILA|T-cell antigen 4-1BB homolog|T-cell antigen ILA|homolog of mouse 4-1BB|induced by lymphocyte activation (ILA)|interleukin-activated receptor, homolog of mouse Ly63|receptor protein 4-1BB|tumor necrosis factor receptor superfamily member 9 20121230 -9606 3605 IL17A - CTLA8|IL-17|IL-17A|IL17 HGNC:5981|MIM:603149|Ensembl:ENSG00000112115|HPRD:04396|Vega:OTTHUMG00000014840 6 6p12 interleukin 17A protein-coding IL17A interleukin 17A O CTLA-8|cytotoxic T-lymphocyte-associated antigen 8|cytotoxic T-lymphocyte-associated protein 8|interleukin 17 (cytotoxic T-lymphocyte-associated serine esterase 8)|interleukin-17A 20121230 -9606 3606 IL18 - IGIF|IL-18|IL-1g|IL1F4 HGNC:5986|MIM:600953|Ensembl:ENSG00000150782|HPRD:02976|Vega:OTTHUMG00000167006 11 11q22.2-q22.3 interleukin 18 (interferon-gamma-inducing factor) protein-coding IL18 interleukin 18 (interferon-gamma-inducing factor) O IFN-gamma-inducing factor|IL-1 gamma|iboctadekin|interleukin-1 gamma|interleukin-18 20121230 -9606 3607 FOXK2 - ILF|ILF-1|ILF1 HGNC:6036|MIM:147685|Ensembl:ENSG00000141568|HPRD:00982|Vega:OTTHUMG00000140374 17 17q25 forkhead box K2 protein-coding FOXK2 forkhead box K2 O FOXK1|cellular transcription factor ILF-1|forkhead box protein K2|interleukin enhancer binding factor 1|interleukin enhancer-binding factor 1 20121230 -9606 3608 ILF2 RP11-354A16.1 NF45|PRO3063 HGNC:6037|MIM:603181|Ensembl:ENSG00000143621|HPRD:04419|Vega:OTTHUMG00000037087 1 1q21.3 interleukin enhancer binding factor 2, 45kDa protein-coding ILF2 interleukin enhancer binding factor 2, 45kDa O interleukin enhancer-binding factor 2|nuclear factor of activated T-cells, 45-kDa 20121230 -9606 3609 ILF3 - CBTF|DRBF|DRBP76|MMP4|MPHOSPH4|MPP4|NF-AT-90|NF110|NF110b|NF90|NF90a|NF90b|NFAR|NFAR-1|NFAR2|TCP110|TCP80 HGNC:6038|MIM:603182|Ensembl:ENSG00000129351|HPRD:04420|Vega:OTTHUMG00000180587 19 19p13.2 interleukin enhancer binding factor 3, 90kDa protein-coding ILF3 interleukin enhancer binding factor 3, 90kDa O M-phase phosphoprotein 4|double-stranded RNA-binding protein, 76 kD|dsRNA binding protein NFAR-2/MPP4|interleukin enhancer-binding factor 3|nuclear factor associated with dsRNA|nuclear factor of activated T-cells 90 kDa|nuclear factor of activated T-cells, 90 kD|translational control protein 80 20121230 -9606 3611 ILK - ILK-2|P59 HGNC:6040|MIM:602366|Ensembl:ENSG00000166333|HPRD:03842|Vega:OTTHUMG00000133407 11 11p15.4 integrin-linked kinase protein-coding ILK integrin-linked kinase O 59 kDa serine/threonine-protein kinase|ILK-1|integrin-linked kinase-2|integrin-linked protein kinase|p59ILK 20121230 -9606 3612 IMPA1 - IMP|IMPA HGNC:6050|MIM:602064|Ensembl:ENSG00000133731|HPRD:03641|Vega:OTTHUMG00000164682 8 8q21.13-q21.3 inositol(myo)-1(or 4)-monophosphatase 1 protein-coding IMPA1 inositol(myo)-1(or 4)-monophosphatase 1 O IMP 1|IMPase 1|inositol monophosphatase 1|inositol-1(or 4)-monophosphatase 1|lithium-sensitive myo-inositol monophosphatase A1 20121230 -9606 3613 IMPA2 - - HGNC:6051|MIM:605922|Ensembl:ENSG00000141401|HPRD:09329|Vega:OTTHUMG00000131693 18 18p11.2 inositol(myo)-1(or 4)-monophosphatase 2 protein-coding IMPA2 inositol(myo)-1(or 4)-monophosphatase 2 O IMP 2|IMPase 2|inosine monophosphatase 2|inositol monophosphatase 2|inositol monophosphatase 2 variant 1|inositol monophosphatase 2 variant 2|myo-inositol monophosphatase A2 20121230 -9606 3614 IMPDH1 - IMPD|IMPD1|LCA11|RP10|sWSS2608 HGNC:6052|MIM:146690|Ensembl:ENSG00000106348|HPRD:08853|Vega:OTTHUMG00000157713 7 7q31.3-q32 IMP (inosine 5'-monophosphate) dehydrogenase 1 protein-coding IMPDH1 IMP (inosine 5'-monophosphate) dehydrogenase 1 O IMP (inosine monophosphate) dehydrogenase 1|IMP dehydrogenase 1|IMPD 1|IMPDH 1|IMPDH-I|inosine-5'-monophosphate dehydrogenase 1 20121230 -9606 3615 IMPDH2 hCG_2002013 IMPD2|IMPDH-II HGNC:6053|MIM:146691|Ensembl:ENSG00000178035|HPRD:00895|Vega:OTTHUMG00000156771 3 3p21.2 IMP (inosine 5'-monophosphate) dehydrogenase 2 protein-coding IMPDH2 IMP (inosine 5'-monophosphate) dehydrogenase 2 O IMP (inosine monophosphate) dehydrogenase 2|IMP oxireductase 2|IMPD 2|IMPDH 2|inosine 5' phosphate dehydrogenase 2|inosine monophosphate dehydrogenase type II|inosine-5'-monophosphate dehydrogenase 2 20121230 -9606 3617 IMPG1 RP11-758J17.1 GP147|IPM150|SPACR HGNC:6055|MIM:602870|Ensembl:ENSG00000112706|HPRD:04186|Vega:OTTHUMG00000015063 6 6q14.2-q15 interphotoreceptor matrix proteoglycan 1 protein-coding IMPG1 interphotoreceptor matrix proteoglycan 1 O IPM-150|interphotoreceptor matrix proteoglycan of 150 kDa|sialoprotein associated with cones and rods 20121230 -9606 3619 INCENP - - HGNC:6058|MIM:604411|Ensembl:ENSG00000149503|HPRD:05103|Vega:OTTHUMG00000167470 11 11q12.3 inner centromere protein antigens 135/155kDa protein-coding INCENP inner centromere protein antigens 135/155kDa O binds and activates aurora-B and -C in vivo and in vitro|chromosomal passenger protein|inner centromere protein|inner centromere protein INCENP 20121230 -9606 3620 IDO1 - IDO|IDO-1|INDO HGNC:6059|MIM:147435|Ensembl:ENSG00000131203|HPRD:00935|Vega:OTTHUMG00000164057 8 8p12-p11 indoleamine 2,3-dioxygenase 1 protein-coding IDO1 indoleamine 2,3-dioxygenase 1 O indolamine 2,3 dioxygenase|indole 2,3-dioxygenase|indoleamine-pyrrole 2,3-dioxygenase 20121230 -9606 3621 ING1 RP11-8D7.1 p24ING1c|p33|p33ING1|p33ING1b|p47|p47ING1a HGNC:6062|MIM:601566|Ensembl:ENSG00000153487|HPRD:03337|Vega:OTTHUMG00000017346 13 13q34 inhibitor of growth family, member 1 protein-coding ING1 inhibitor of growth family, member 1 O growth inhibitor ING1|growth inhibitory protein ING1|inhibitor of growth protein 1|tumor suppressor ING1 20121230 -9606 3622 ING2 - ING1L|p33ING2 HGNC:6063|MIM:604215|Ensembl:ENSG00000168556|HPRD:05021|Vega:OTTHUMG00000150502 4 4q35.1 inhibitor of growth family, member 2 protein-coding ING2 inhibitor of growth family, member 2 O ING1Lp|inhibitor of growth 1-like protein|inhibitor of growth protein 2|p32 20121230 -9606 3623 INHA - - HGNC:6065|MIM:147380|Ensembl:ENSG00000123999|HPRD:00933|Vega:OTTHUMG00000059237 2 2q33-q36 inhibin, alpha protein-coding INHA inhibin, alpha O A-inhibin subunit|inhibin alpha chain 20121230 -9606 3624 INHBA - EDF|FRP HGNC:6066|MIM:147290|Ensembl:ENSG00000122641|HPRD:00929|Vega:OTTHUMG00000023574 7 7p15-p13 inhibin, beta A protein-coding INHBA inhibin, beta A O FSH-releasing protein|Inhibin, beta-1|activin beta-A chain|erythroid differentiation factor|erythroid differentiation protein|follicle-stimulating hormone-releasing protein|inhibin beta A chain|inhibin, beta A (activin A, activin AB alpha polypeptide) 20121230 -9606 3625 INHBB - - HGNC:6067|MIM:147390|Ensembl:ENSG00000163083|HPRD:00934|Vega:OTTHUMG00000131437 2 2cen-q13 inhibin, beta B protein-coding INHBB inhibin, beta B O Inhibin, beta-2|activin AB beta polypeptide|activin beta-B chain|inhibin beta B chain 20121230 -9606 3626 INHBC - IHBC HGNC:6068|MIM:601233|Ensembl:ENSG00000175189|HPRD:03136|Vega:OTTHUMG00000169994 12 12q13.1 inhibin, beta C protein-coding INHBC inhibin, beta C O activin beta-C chain|inhibin beta C chain 20121230 -9606 3627 CXCL10 - C7|IFI10|INP10|IP-10|SCYB10|crg-2|gIP-10|mob-1 HGNC:10637|MIM:147310|Ensembl:ENSG00000169245|HPRD:00930|Vega:OTTHUMG00000160887 4 4q21 chemokine (C-X-C motif) ligand 10 protein-coding CXCL10 chemokine (C-X-C motif) ligand 10 O 10 kDa interferon gamma-induced protein|C-X-C motif chemokine 10|gamma IP10|gamma-IP10|interferon-inducible cytokine IP-10|protein 10 from interferon (gamma)-induced cell line|small inducible cytokine subfamily B (Cys-X-Cys), member 10|small-inducible cytokine B10 20121230 -9606 3628 INPP1 - - HGNC:6071|MIM:147263|Ensembl:ENSG00000151689|HPRD:00923|Vega:OTTHUMG00000132672 2 2q32 inositol polyphosphate-1-phosphatase protein-coding INPP1 inositol polyphosphate-1-phosphatase O IPP|IPPase|inositol polyphosphate 1-phosphatase 20121230 -9606 3629 INPP3 - - HGNC:6072 - - inositol polyphosphate-3-phosphatase protein-coding INPP3 inositol polyphosphate-3-phosphatase O - 20080828 -9606 3630 INS - IDDM2|ILPR|IRDN|MODY10 HGNC:6081|MIM:176730|Ensembl:ENSG00000254647|HPRD:01455|Vega:OTTHUMG00000009558 11 11p15.5 insulin protein-coding INS insulin O preproinsulin|proinsulin 20121230 -9606 3631 INPP4A - INPP4|TVAS1 HGNC:6074|MIM:600916|Ensembl:ENSG00000040933|HPRD:02949|Vega:OTTHUMG00000153106 2 2q11.2 inositol polyphosphate-4-phosphatase, type I, 107kDa protein-coding INPP4A inositol polyphosphate-4-phosphatase, type I, 107kDa O type I inositol 3,4-bisphosphate 4-phosphatase|type I inositol-3,4-bisphosphate 4-phosphatase 20121230 -9606 3632 INPP5A RP11-288G11.1 5PTASE HGNC:6076|MIM:600106|Ensembl:ENSG00000068383|HPRD:02521|Vega:OTTHUMG00000019293 10 10q26.3 inositol polyphosphate-5-phosphatase, 40kDa protein-coding INPP5A inositol polyphosphate-5-phosphatase, 40kDa O 43 kDa inositol polyphosphate 5-phophatase|CTCL tumor antigen HD-CL-02|InsP3 5-phosphatase|inositol trisphosphate-5-phosphatase, 40kD|type I inositol 1,4,5-trisphosphate 5-phosphatase|type I inositol-1,4,5-trisphosphate 5-phophatase|type I inositol-1,4,5-trisphosphate 5-phosphatase 20121230 -9606 3633 INPP5B RP11-109P14.7 5PTase HGNC:6077|MIM:147264|Ensembl:ENSG00000204084|HPRD:00924|Vega:OTTHUMG00000004436 1 1p34 inositol polyphosphate-5-phosphatase, 75kDa protein-coding INPP5B inositol polyphosphate-5-phosphatase, 75kDa O 75 kDa inositol polyphosphate-5-phosphatase|phosphoinositide 5-phosphatase|type II inositol 1,4,5-trisphosphate 5-phosphatase|type II inositol-1,4,5-trisphosphate 5-phosphatase 20121230 -9606 3635 INPP5D - SHIP|SHIP-1|SHIP1|SIP-145|hp51CN HGNC:6079|MIM:601582|Ensembl:ENSG00000168918|HPRD:09033|Vega:OTTHUMG00000133688 2 2q37.1 inositol polyphosphate-5-phosphatase, 145kDa protein-coding INPP5D inositol polyphosphate-5-phosphatase, 145kDa O SH2 containing inositol phosphatase|SH2 domain-containing inositol 5'-phosphatase 1|SH2 domain-containing inositol phosphatase 1|SH2 domain-containing inositol-5'-phosphatase 1|inositol polyphosphate-5-phosphatase of 145 kDa|p150Ship|phosphatidylinositol 3,4,5-trisphosphate 5-phosphatase 1|phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase 1|signaling inositol polyphosphate 5 phosphatase SIP-145 20121230 -9606 3636 INPPL1 - SHIP2 HGNC:6080|MIM:600829|Ensembl:ENSG00000165458|HPRD:02900|Vega:OTTHUMG00000167879 11 11q13 inositol polyphosphate phosphatase-like 1 protein-coding INPPL1 inositol polyphosphate phosphatase-like 1 O 51C protein|INPPL-1|SH2 domain-containing inositol 5'-phosphatase 2|SH2 domain-containing inositol-5'-phosphatase 2|SHIP-2|phosphatidylinositol 3,4,5-trisphosphate 5-phosphatase 2|phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase 2|protein 51C 20121230 -9606 3638 INSIG1 - CL-6|CL6 HGNC:6083|MIM:602055|Ensembl:ENSG00000186480|HPRD:03633|Vega:OTTHUMG00000151330 7 7q36 insulin induced gene 1 protein-coding INSIG1 insulin induced gene 1 O INSIG-1 membrane protein|insulin-induced gene 1 protein 20121230 -9606 3640 INSL3 - RLF|RLNL|ley-I-L HGNC:6086|MIM:146738|Ensembl:ENSG00000248099|HPRD:08854 19 19p13.2-p12 insulin-like 3 (Leydig cell) protein-coding INSL3 insulin-like 3 (Leydig cell) O insulin-like 3|leydig insulin -like hormone|leydig insulin-like peptide|relaxin-like factor b 20121230 -9606 3641 INSL4 - EPIL|PLACENTIN HGNC:6087|MIM:600910|Ensembl:ENSG00000120211|HPRD:02946|Vega:OTTHUMG00000019494 9 9p24 insulin-like 4 (placenta) protein-coding INSL4 insulin-like 4 (placenta) O early placenta insulin-like peptide|early placenta insulin-like peptide (EPIL)|insulin-like peptide 4 20121230 -9606 3642 INSM1 - IA-1|IA1 HGNC:6090|MIM:600010|Ensembl:ENSG00000173404|HPRD:02480|Vega:OTTHUMG00000032004 20 20p11.2 insulinoma-associated 1 protein-coding INSM1 insulinoma-associated 1 O insulinoma-associated protein 1|zinc finger protein IA-1 20121230 -9606 3643 INSR - CD220|HHF5 HGNC:6091|MIM:147670|Ensembl:ENSG00000171105|HPRD:00975 19 19p13.3-p13.2 insulin receptor protein-coding INSR insulin receptor O IR 20121230 -9606 3644 INSRL - - HGNC:6092 7 7p13-q22 insulin receptor-like protein-coding INSRL insulin receptor-like O - 20080828 -9606 3645 INSRR - IRR HGNC:6093|MIM:147671|Ensembl:ENSG00000027644|HPRD:00976|Vega:OTTHUMG00000041291 1 1q21-q23 insulin receptor-related receptor protein-coding INSRR insulin receptor-related receptor O IR-related receptor|insulin receptor-related protein 20121230 -9606 3646 EIF3E - EIF3-P48|EIF3S6|INT6|eIF3-p46 HGNC:3277|MIM:602210|Ensembl:ENSG00000104408|HPRD:03734|Vega:OTTHUMG00000164858 8 8q22-q23 eukaryotic translation initiation factor 3, subunit E protein-coding EIF3E eukaryotic translation initiation factor 3, subunit E O eIF-3 p48|eukaryotic translation initiation factor 3 subunit 6|eukaryotic translation initiation factor 3 subunit E|eukaryotic translation initiation factor 3, subunit 6 (48kD)|eukaryotic translation initiation factor 3, subunit 6 48kDa|mammary tumor-associated protein INT6|murine mammary tumor integration site 6 (oncogene homolog)|viral integration site protein INT-6 homolog 20121230 -9606 3647 EIF3EP1 - EIF3EP|EIF3S6P1|INT6P1 HGNC:6102 6 6q13 eukaryotic translation initiation factor 3, subunit E pseudogene 1 pseudo EIF3EP1 eukaryotic translation initiation factor 3, subunit E pseudogene 1 O - 20121230 -9606 3651 PDX1 - GSF|IDX-1|IPF1|IUF1|MODY4|PDX-1|STF-1 HGNC:6107|MIM:600733|Ensembl:ENSG00000139515|HPRD:02843|Vega:OTTHUMG00000016638 13 13q12.1 pancreatic and duodenal homeobox 1 protein-coding PDX1 pancreatic and duodenal homeobox 1 O IPF-1|IUF-1|glucose-sensitive factor|insulin promoter factor 1, homeodomain transcription factor|insulin upstream factor 1|islet/duodenum homeobox-1|pancreas/duodenum homeobox protein 1|pancreatic-duodenal homeobox factor 1|somatostatin transcription factor 1|somatostatin-transactivating factor 1 20121230 -9606 3652 IPP RP11-767N6.6 KLHL27 HGNC:6108|MIM:147485|Ensembl:ENSG00000197429|HPRD:00940|Vega:OTTHUMG00000008004 1 1p34-p32 intracisternal A particle-promoted polypeptide protein-coding IPP intracisternal A particle-promoted polypeptide O actin-binding protein IPP|kelch-like protein 27 20121230 -9606 3653 IPW - NCRNA00002 HGNC:6109|MIM:601491 15 15q11-q12 imprinted in Prader-Willi syndrome (non-protein coding) miscRNA IPW imprinted in Prader-Willi syndrome (non-protein coding) O - 20121230 -9606 3654 IRAK1 - IRAK|pelle HGNC:6112|MIM:300283|Ensembl:ENSG00000184216|HPRD:02235|Vega:OTTHUMG00000024228 X Xq28 interleukin-1 receptor-associated kinase 1 protein-coding IRAK1 interleukin-1 receptor-associated kinase 1 O IRAK-1|Pelle homolog 20121230 -9606 3655 ITGA6 - CD49f|ITGA6B|VLA-6 HGNC:6142|MIM:147556|Ensembl:ENSG00000091409|HPRD:00945|Vega:OTTHUMG00000132277 2 2q31.1 integrin, alpha 6 protein-coding ITGA6 integrin, alpha 6 O CD49 antigen-like family member F|integrin alpha-6|integrin alpha6B 20121230 -9606 3656 IRAK2 - IRAK-2 HGNC:6113|MIM:603304|Ensembl:ENSG00000134070|HPRD:04491|Vega:OTTHUMG00000155358 3 3p25.3 interleukin-1 receptor-associated kinase 2 protein-coding IRAK2 interleukin-1 receptor-associated kinase 2 O interleukin-1 receptor associated kinase-2|interleukin-1 receptor-associated kinase-like 2 20121230 -9606 3658 IREB2 - ACO3|IRP2|IRP2AD HGNC:6115|MIM:147582|Ensembl:ENSG00000136381|HPRD:08858|Vega:OTTHUMG00000143861 15 15q25.1 iron-responsive element binding protein 2 protein-coding IREB2 iron-responsive element binding protein 2 O IRE-BP 2|iron regulatory protein 2|iron-responsive element-binding protein 2 20121230 -9606 3659 IRF1 - IRF-1|MAR HGNC:6116|MIM:147575|Ensembl:ENSG00000125347|HPRD:00961|Vega:OTTHUMG00000059497 5 5q31.1 interferon regulatory factor 1 protein-coding IRF1 interferon regulatory factor 1 O - 20121230 -9606 3660 IRF2 - IRF-2 HGNC:6117|MIM:147576|Ensembl:ENSG00000168310|HPRD:00962|Vega:OTTHUMG00000160606 4 4q34.1-q35.1 interferon regulatory factor 2 protein-coding IRF2 interferon regulatory factor 2 O - 20121230 -9606 3661 IRF3 - - HGNC:6118|MIM:603734|Ensembl:ENSG00000126456|HPRD:04769 19 19q13.3-q13.4 interferon regulatory factor 3 protein-coding IRF3 interferon regulatory factor 3 O - 20121230 -9606 3662 IRF4 - LSIRF|MUM1|NF-EM5 HGNC:6119|MIM:601900|Ensembl:ENSG00000137265|HPRD:03543|Vega:OTTHUMG00000016294 6 6p25-p23 interferon regulatory factor 4 protein-coding IRF4 interferon regulatory factor 4 O lymphocyte-specific interferon regulatory factor|multiple myeloma oncogene 1 20121230 -9606 3663 IRF5 - SLEB10 HGNC:6120|MIM:607218|Ensembl:ENSG00000128604|HPRD:06240|Vega:OTTHUMG00000158410 7 7q32 interferon regulatory factor 5 protein-coding IRF5 interferon regulatory factor 5 O IRF-5 20121230 -9606 3664 IRF6 - LPS|OFC6|PIT|PPS|VWS|VWS1 HGNC:6121|MIM:607199|Ensembl:ENSG00000117595|HPRD:06227|Vega:OTTHUMG00000036521 1 1q32.3-q41 interferon regulatory factor 6 protein-coding IRF6 interferon regulatory factor 6 O - 20121230 -9606 3665 IRF7 - IRF-7H|IRF7A HGNC:6122|MIM:605047|Ensembl:ENSG00000185507|HPRD:05441|Vega:OTTHUMG00000132019 11 11p15.5 interferon regulatory factor 7 protein-coding IRF7 interferon regulatory factor 7 O IRF-7|interferon regulatory factor-7H 20121230 -9606 3667 IRS1 - HIRS-1 HGNC:6125|MIM:147545|Ensembl:ENSG00000169047|HPRD:00943|Vega:OTTHUMG00000133179 2 2q36 insulin receptor substrate 1 protein-coding IRS1 insulin receptor substrate 1 O IRS-1 20121230 -9606 3669 ISG20 - CD25|HEM45 HGNC:6130|MIM:604533|Ensembl:ENSG00000172183|HPRD:05169|Vega:OTTHUMG00000148679 15 15q26 interferon stimulated exonuclease gene 20kDa protein-coding ISG20 interferon stimulated exonuclease gene 20kDa O estrogen-regulated transcript 45 protein|interferon-stimulated gene 20 kDa protein|promyelocytic leukemia nuclear body-associated protein ISG20 20121230 -9606 3670 ISL1 - ISLET1|Isl-1 HGNC:6132|MIM:600366|Ensembl:ENSG00000016082|HPRD:02650|Vega:OTTHUMG00000162281 5 5q11.1 ISL LIM homeobox 1 protein-coding ISL1 ISL LIM homeobox 1 O ISL1 transcription factor, LIM/homeodomain|insulin gene enhancer protein ISL-1|islet-1 20121230 -9606 3671 ISLR UNQ189/PRO215 HsT17563 HGNC:6133|MIM:602059|Ensembl:ENSG00000129009|HPRD:03636|Vega:OTTHUMG00000137623 15 15q23-q24 immunoglobulin superfamily containing leucine-rich repeat protein-coding ISLR immunoglobulin superfamily containing leucine-rich repeat O immunoglobulin superfamily containing leucine-rich repeat protein 20121230 -9606 3672 ITGA1 - CD49a|VLA1 HGNC:6134|MIM:192968|Ensembl:ENSG00000213949|HPRD:01892|Vega:OTTHUMG00000131163 5 5q11.2 integrin, alpha 1 protein-coding ITGA1 integrin, alpha 1 O CD49 antigen-like family member A|VLA-1|integrin alpha-1|laminin and collagen receptor|very late activation protein 1 20121230 -9606 3673 ITGA2 - BR|CD49B|GPIa|HPA-5|VLA-2|VLAA2 HGNC:6137|MIM:192974|Ensembl:ENSG00000164171|HPRD:01893|Vega:OTTHUMG00000131165 5 5q11.2 integrin, alpha 2 (CD49B, alpha 2 subunit of VLA-2 receptor) protein-coding ITGA2 integrin, alpha 2 (CD49B, alpha 2 subunit of VLA-2 receptor) O CD49 antigen-like family member B|VLA2 receptor, alpha-2 subunit|collagen receptor|human platelet alloantigen system 5|integrin alpha-2|platelet antigen Br|platelet glycoprotein GPIa|platelet membrane glycoprotein Ia|very late activation protein 2 receptor, alpha-2 subunit 20121230 -9606 3674 ITGA2B - BDPLT2|CD41|CD41B|GP2B|GPIIb|GT|GTA|HPA3 HGNC:6138|MIM:607759|Ensembl:ENSG00000005961|HPRD:06377|Vega:OTTHUMG00000177935 17 17q21.32 integrin, alpha 2b (platelet glycoprotein IIb of IIb/IIIa complex, antigen CD41) protein-coding ITGA2B integrin, alpha 2b (platelet glycoprotein IIb of IIb/IIIa complex, antigen CD41) O GPalpha IIb|integrin alpha-IIb|platelet fibrinogen receptor, alpha subunit|platelet membrane glycoprotein IIb|platelet-specific antigen BAK 20121230 -9606 3675 ITGA3 - CD49C|GAP-B3|GAPB3|MSK18|VCA-2|VL3A|VLA3a HGNC:6139|MIM:605025|Ensembl:ENSG00000005884|HPRD:05431|Vega:OTTHUMG00000161890 17 17q21.33 integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor) protein-coding ITGA3 integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor) O CD49 antigen-like family member C|FRP-2|VLA-3 subunit alpha|antigen identified by monoclonal antibody J143|galactoprotein B3|integrin alpha-3|very late activation protein 3 receptor, alpha-3 subunit 20121230 -9606 3676 ITGA4 - CD49D|IA4 HGNC:6140|MIM:192975|Ensembl:ENSG00000115232|HPRD:01894|Vega:OTTHUMG00000154212 2 2q31.3 integrin, alpha 4 (antigen CD49D, alpha 4 subunit of VLA-4 receptor) protein-coding ITGA4 integrin, alpha 4 (antigen CD49D, alpha 4 subunit of VLA-4 receptor) O 269C wild type|CD49 antigen-like family member D|VLA-4 subunit alpha|antigen CD49D, alpha-4 subunit of VLA-4 receptor|integrin alpha 4|integrin alpha-4|integrin alpha-4 subunit|integrin alpha-IV|very late activation protein 4 receptor, alpha 4 subunit 20121230 -9606 3678 ITGA5 - CD49e|FNRA|VLA5A HGNC:6141|MIM:135620|Ensembl:ENSG00000161638|HPRD:00627|Vega:OTTHUMG00000169841 12 12q11-q13 integrin, alpha 5 (fibronectin receptor, alpha polypeptide) protein-coding ITGA5 integrin, alpha 5 (fibronectin receptor, alpha polypeptide) O CD49 antigen-like family member E|VLA-5|fibronectin receptor subunit alpha|fibronectin receptor, alpha subunit|integrin alpha-5|integrin alpha-F|very late activation protein 5, alpha subunit 20121230 -9606 3679 ITGA7 UNQ406/PRO768 - HGNC:6143|MIM:600536|Ensembl:ENSG00000135424|HPRD:02761|Vega:OTTHUMG00000170699 12 12q13 integrin, alpha 7 protein-coding ITGA7 integrin, alpha 7 O integrin alpha 7 chain|integrin alpha-7 20121230 -9606 3680 ITGA9 - ALPHA-RLC|ITGA4L|RLC HGNC:6145|MIM:603963|Ensembl:ENSG00000144668|HPRD:04910|Vega:OTTHUMG00000130815 3 3p21.3 integrin, alpha 9 protein-coding ITGA9 integrin, alpha 9 O integrin alpha-9|integrin alpha-RLC 20121230 -9606 3681 ITGAD - ADB2|CD11D HGNC:6146|MIM:602453|Ensembl:ENSG00000156886|Vega:OTTHUMG00000176614 16 16p11.2 integrin, alpha D protein-coding ITGAD integrin, alpha D O CD11 antigen-like family member D|integrin alpha-D|leukointegrin alpha D 20121230 -9606 3682 ITGAE - CD103|HUMINAE HGNC:6147|MIM:604682|Ensembl:ENSG00000083457|HPRD:05249|Vega:OTTHUMG00000177634 17 17p13 integrin, alpha E (antigen CD103, human mucosal lymphocyte antigen 1; alpha polypeptide) protein-coding ITGAE integrin, alpha E (antigen CD103, human mucosal lymphocyte antigen 1; alpha polypeptide) O HML-1 antigen|antigen CD103, human mucosal lymphocyte antigen 1; alpha polypeptide|integrin alpha-E|integrin alpha-IEL|mucosal lymphocyte 1 antigen 20121230 -9606 3683 ITGAL - CD11A|LFA-1|LFA1A HGNC:6148|MIM:153370|Ensembl:ENSG00000005844|HPRD:01079|Vega:OTTHUMG00000176964 16 16p11.2 integrin, alpha L (antigen CD11A (p180), lymphocyte function-associated antigen 1; alpha polypeptide) protein-coding ITGAL integrin, alpha L (antigen CD11A (p180), lymphocyte function-associated antigen 1; alpha polypeptide) O CD11 antigen-like family member A|LFA-1 alpha|LFA-1A|antigen CD11A (p180), lymphocyte function-associated antigen 1, alpha polypeptide|integrin alpha-L|integrin gene promoter|leukocyte adhesion glycoprotein LFA-1 alpha chain|leukocyte function-associated molecule 1 alpha chain|lymphocyte function-associated antigen 1 20121230 -9606 3684 ITGAM - CD11B|CR3A|MAC-1|MAC1A|MO1A|SLEB6 HGNC:6149|MIM:120980|Ensembl:ENSG00000169896|HPRD:00411|Vega:OTTHUMG00000176612 16 16p11.2 integrin, alpha M (complement component 3 receptor 3 subunit) protein-coding ITGAM integrin, alpha M (complement component 3 receptor 3 subunit) O CD11 antigen-like family member B|CR-3 alpha chain|antigen CD11b (p170)|cell surface glycoprotein MAC-1 subunit alpha|integrin alpha-M|leukocyte adhesion receptor MO1|macrophage antigen alpha polypeptide|neutrophil adherence receptor alpha-M subunit 20121230 -9606 3685 ITGAV - CD51|MSK8|VNRA|VTNR HGNC:6150|MIM:193210|Ensembl:ENSG00000138448|HPRD:01903|Vega:OTTHUMG00000132635 2 2q31-q32 integrin, alpha V protein-coding ITGAV integrin, alpha V O antigen identified by monoclonal antibody L230|integrin alpha-V|integrin alphaVbeta3|integrin, alpha V (vitronectin receptor, alpha polypeptide, antigen CD51)|vitronectin receptor subunit alpha 20121230 -9606 3686 ITGAW - - HGNC:6151 - - integrin, alpha W protein-coding ITGAW integrin, alpha W O - 20080828 -9606 3687 ITGAX - CD11C|SLEB6 HGNC:6152|MIM:151510|Ensembl:ENSG00000140678|HPRD:01051|Vega:OTTHUMG00000132465 16 16p11.2 integrin, alpha X (complement component 3 receptor 4 subunit) protein-coding ITGAX integrin, alpha X (complement component 3 receptor 4 subunit) O CD11 antigen-like family member C|integrin alpha-X|integrin, alpha X (antigen CD11C (p150), alpha polypeptide)|leu M5, alpha subunit|leukocyte adhesion glycoprotein p150,95 alpha chain|leukocyte adhesion receptor p150,95|leukocyte surface antigen p150,95, alpha subunit|myeloid membrane antigen, alpha subunit|p150 95 integrin alpha chain 20121230 -9606 3688 ITGB1 RP11-479G22.2 CD29|FNRB|GPIIA|MDF2|MSK12|VLA-BETA|VLAB HGNC:6153|MIM:135630|Ensembl:ENSG00000150093|HPRD:00628|Vega:OTTHUMG00000017928 10 10p11.2 integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12) protein-coding ITGB1 integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12) O integrin VLA-4 beta subunit|integrin beta-1|very late activation protein, beta polypeptide 20121230 -9606 3689 ITGB2 - CD18|LAD|LCAMB|LFA-1|MAC-1|MF17|MFI7 HGNC:6155|MIM:600065|Ensembl:ENSG00000160255|HPRD:02506|Vega:OTTHUMG00000090257 21 21q22.3 integrin, beta 2 (complement component 3 receptor 3 and 4 subunit) protein-coding ITGB2 integrin, beta 2 (complement component 3 receptor 3 and 4 subunit) O cell surface adhesion glycoprotein LFA-1/CR3/P150,959 beta subunit precursor)|cell surface adhesion glycoproteins LFA-1/CR3/p150,95 subunit beta|complement receptor C3 beta-subunit|complement receptor C3 subunit beta|integrin beta chain, beta 2|integrin beta-2|leukocyte cell adhesion molecule CD18|leukocyte-associated antigens CD18/11A, CD18/11B, CD18/11C 20121230 -9606 3690 ITGB3 - BDPLT2|CD61|GP3A|GPIIIa|GT HGNC:6156|MIM:173470|Ensembl:ENSG00000259207|Ensembl:ENSG00000259753|HPRD:01428|Vega:OTTHUMG00000171956|Vega:OTTHUMG00000171957 17 17q21.32 integrin, beta 3 (platelet glycoprotein IIIa, antigen CD61) protein-coding ITGB3 integrin, beta 3 (platelet glycoprotein IIIa, antigen CD61) O integrin beta-3|platelet membrane glycoprotein IIIa 20121230 -9606 3691 ITGB4 - CD104 HGNC:6158|MIM:147557|Ensembl:ENSG00000132470|HPRD:00946|Vega:OTTHUMG00000179814 17 17q25 integrin, beta 4 protein-coding ITGB4 integrin, beta 4 O CD104 antigen|GP150|integrin beta-4|integrin beta-4 subunit 20121230 -9606 3692 EIF6 RP4-614O4.1 CAB|EIF3A|ITGB4BP|b(2)gcn|eIF-6|p27(BBP)|p27BBP HGNC:6159|MIM:602912|Ensembl:ENSG00000242372|HPRD:04221|Vega:OTTHUMG00000032328 20 20q12 eukaryotic translation initiation factor 6 protein-coding EIF6 eukaryotic translation initiation factor 6 O B4 integrin interactor|eukaryotic translation initiation factor 3A|p27 beta-4 integrin-binding protein 20121230 -9606 3693 ITGB5 - - HGNC:6160|MIM:147561|Ensembl:ENSG00000082781|HPRD:00949|Vega:OTTHUMG00000159432 3 3q21.2 integrin, beta 5 protein-coding ITGB5 integrin, beta 5 O integrin beta-5 20121230 -9606 3694 ITGB6 - - HGNC:6161|MIM:147558|Ensembl:ENSG00000115221|HPRD:00947|Vega:OTTHUMG00000132026 2 2q24.2 integrin, beta 6 protein-coding ITGB6 integrin, beta 6 O integrin beta-6 20121230 -9606 3695 ITGB7 - - HGNC:6162|MIM:147559|Ensembl:ENSG00000139626|HPRD:00948|Vega:OTTHUMG00000169775 12 12q13.13 integrin, beta 7 protein-coding ITGB7 integrin, beta 7 O gut homing receptor beta subunit|integrin beta 7 subunit|integrin beta-7 20121230 -9606 3696 ITGB8 - - HGNC:6163|MIM:604160|Ensembl:ENSG00000105855|HPRD:05001|Vega:OTTHUMG00000023594 7 7p21.1 integrin, beta 8 protein-coding ITGB8 integrin, beta 8 O integrin beta-8 20121230 -9606 3697 ITIH1 - H1P|IATIH|IGHEP1|ITI-HC1|ITIH|SHAP HGNC:6166|MIM:147270|Ensembl:ENSG00000055957|HPRD:00927|Vega:OTTHUMG00000150312 3 3p21.1 inter-alpha-trypsin inhibitor heavy chain 1 protein-coding ITIH1 inter-alpha-trypsin inhibitor heavy chain 1 O ITI heavy chain H1|inter-alpha (globulin) inhibitor H1|inter-alpha (globulin) inhibitor, H1 polypeptide|inter-alpha-inhibitor heavy chain 1|inter-alpha-trypsin inhibitor complex component III|inter-alpha-trypsin inhibitor heavy chain H1|serum-derived hyaluronan-associated protein 20121230 -9606 3698 ITIH2 RP11-264C14.2 H2P|SHAP HGNC:6167|MIM:146640|Ensembl:ENSG00000151655|HPRD:00890|Vega:OTTHUMG00000017633 10 10p15 inter-alpha-trypsin inhibitor heavy chain 2 protein-coding ITIH2 inter-alpha-trypsin inhibitor heavy chain 2 O ITI heavy chain H2|ITI-HC2|inter-alpha (globulin) inhibitor H2|inter-alpha (globulin) inhibitor, H2 polypeptide|inter-alpha-inhibitor heavy chain 2|inter-alpha-trypsin inhibitor complex component II|inter-alpha-trypsin inhibitor heavy chain H2|serum-derived hyaluronan-associated protein 20121230 -9606 3699 ITIH3 - H3P HGNC:6168|MIM:146650|Ensembl:ENSG00000162267|HPRD:00891|Vega:OTTHUMG00000158956 3 3p21.1 inter-alpha-trypsin inhibitor heavy chain 3 protein-coding ITIH3 inter-alpha-trypsin inhibitor heavy chain 3 O ITI heavy chain H3|ITI-HC3|SHAP|inter-alpha (globulin) inhibitor H3|inter-alpha (globulin) inhibitor, H3 polypeptide|inter-alpha-inhibitor heavy chain 3|inter-alpha-trypsin inhibitor heavy chain H3|pre-alpha (globulin) inhibitor, H3 polypeptide|serum-derived hyaluronan-associated protein 20121230 -9606 3700 ITIH4 PRO1851 GP120|H4P|IHRP|ITI-HC4|ITIHL1|PK-120|PK120 HGNC:6169|MIM:600564|Ensembl:ENSG00000055955|HPRD:02781|Vega:OTTHUMG00000159023 3 3p21.1 inter-alpha-trypsin inhibitor heavy chain family, member 4 protein-coding ITIH4 inter-alpha-trypsin inhibitor heavy chain family, member 4 O ITI heavy chain H4|inter-alpha (globulin) inhibitor H4 (plasma Kallikrein-sensitive glycoprotein)|inter-alpha-inhibitor heavy chain 4|inter-alpha-trypsin inhibitor family heavy chain-related protein|inter-alpha-trypsin inhibitor heavy chain H4|inter-alpha-trypsin inhibitor, heavy chain-like, 1|plasma kallikrein-sensitive glycoprotein 120 20121230 -9606 3702 ITK - EMT|LYK|PSCTK2 HGNC:6171|MIM:186973|Ensembl:ENSG00000113263|HPRD:01746|Vega:OTTHUMG00000130245 5 5q31-q32 IL2-inducible T-cell kinase protein-coding ITK IL2-inducible T-cell kinase O IL-2-inducible T cell kinase|IL-2-inducible T-cell kinase|T-cell-specific kinase|homolog of mouse T-cell itk/tsk|interleukin-2-inducible T cell kinase|interleukin-2-inducible T-cell kinase|kinase EMT|tyrosine-protein kinase ITK/TSK|tyrosine-protein kinase LYK 20121230 -9606 3703 STT3A - ITM1|STT3-A|TMC HGNC:6172|MIM:601134|Ensembl:ENSG00000134910|HPRD:03086|Vega:OTTHUMG00000165852 11 11q23.3 STT3, subunit of the oligosaccharyltransferase complex, homolog A (S. cerevisiae) protein-coding STT3A STT3, subunit of the oligosaccharyltransferase complex, homolog A (S. cerevisiae) O B5|dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3A|integral membrane protein 1|integral transmembrane protein 1|oligosaccharyl transferase subunit STT3A|transmembrane conserved|transmembrane protein TMC 20121230 -9606 3704 ITPA My049 C20orf37|HLC14-06-P|dJ794I6.3 HGNC:6176|MIM:147520|Ensembl:ENSG00000125877|HPRD:08856|Vega:OTTHUMG00000031738 20 20p inosine triphosphatase (nucleoside triphosphate pyrophosphatase) protein-coding ITPA inosine triphosphatase (nucleoside triphosphate pyrophosphatase) O ITPase|NTPase|inosine triphosphatase-A|inosine triphosphate pyrophosphatase|inosine triphosphate pyrophosphohydrolase|non-canonical purine NTP pyrophosphatase|non-standard purine NTP pyrophosphatase|nucleoside-triphosphate diphosphatase|putative oncogene protein HLC14-06-P 20121230 -9606 3705 ITPK1 - ITRPK1 HGNC:6177|MIM:601838|Ensembl:ENSG00000100605|HPRD:03501|Vega:OTTHUMG00000171226 14 14q31 inositol-tetrakisphosphate 1-kinase protein-coding ITPK1 inositol-tetrakisphosphate 1-kinase O inositol 1,3,4-triphosphate 5/6 kinase|inositol 1,3,4-trisphosphate 5/6 kinase|inositol 1,3,4-trisphosphate 5/6-kinase|inositol-triphosphate 5/6-kinase|ins(1,3,4)P(3) 5/6-kinase 20121230 -9606 3706 ITPKA - IP3-3KA|IP3KA HGNC:6178|MIM:147521|Ensembl:ENSG00000137825|HPRD:00941|Vega:OTTHUMG00000130343 15 15q15.1 inositol-trisphosphate 3-kinase A protein-coding ITPKA inositol-trisphosphate 3-kinase A O IP3 3-kinase A|IP3K A|inositol 1,4,5-trisphosphate 3-kinase A|insP 3-kinase A 20121230 -9606 3707 ITPKB - IP3-3KB|IP3K|IP3K-B|IP3KB|PIG37 HGNC:6179|MIM:147522|Ensembl:ENSG00000143772|HPRD:00942|Vega:OTTHUMG00000037582 1 1q42.13 inositol-trisphosphate 3-kinase B protein-coding ITPKB inositol-trisphosphate 3-kinase B O IP3 3-kinase B|IP3K B|inositol 1,4,5-trisphosphate 3-kinase B|insP 3-kinase B|proliferation-inducing protein 37 20121230 -9606 3708 ITPR1 - INSP3R1|IP3R|IP3R1|SCA15|SCA16 HGNC:6180|MIM:147265|Ensembl:ENSG00000150995|HPRD:00925|Vega:OTTHUMG00000154996 3 3p26.1 inositol 1,4,5-trisphosphate receptor, type 1 protein-coding ITPR1 inositol 1,4,5-trisphosphate receptor, type 1 O IP3 receptor|IP3R 1|inositol 1,4,5-triphosphate receptor, type 1|inositol 1,4,5-trisphosphate receptor type 1|type 1 InsP3 receptor|type 1 inositol 1,4,5-trisphosphate receptor 20121230 -9606 3709 ITPR2 - IP3R2 HGNC:6181|MIM:600144|Ensembl:ENSG00000123104|HPRD:02536|Vega:OTTHUMG00000169181 12 12p11 inositol 1,4,5-trisphosphate receptor, type 2 protein-coding ITPR2 inositol 1,4,5-trisphosphate receptor, type 2 O IP3 receptor|IP3R 2|inositol 1,4,5-triphosphate receptor, type 2|inositol 1,4,5-trisphosphate receptor type 2|insP3R2|type 2 InsP3 receptor|type 2 inositol 1,4,5-trisphosphate receptor 20121230 -9606 3710 ITPR3 - IP3R|IP3R3 HGNC:6182|MIM:147267|Ensembl:ENSG00000096433|HPRD:00926|Vega:OTTHUMG00000014532 6 6p21 inositol 1,4,5-trisphosphate receptor, type 3 protein-coding ITPR3 inositol 1,4,5-trisphosphate receptor, type 3 O IP3 receptor|inositol 1,4,5-triphosphate receptor, type 3|inositol 1,4,5-trisphosphate receptor type 3|insP3R3|type 3 InsP3 receptor 20121230 -9606 3712 IVD - ACAD2 HGNC:6186|MIM:607036|Ensembl:ENSG00000128928|HPRD:09516|Vega:OTTHUMG00000129984 15 15q14-q15 isovaleryl-CoA dehydrogenase protein-coding IVD isovaleryl-CoA dehydrogenase O isovaleryl CoA dehydrogenase|isovaleryl Coenzyme A dehydrogenase|isovaleryl-CoA dehydrogenase, mitochondrial 20121230 -9606 3713 IVL - - HGNC:6187|MIM:147360|Ensembl:ENSG00000163207|HPRD:00931|Vega:OTTHUMG00000012451 1 1q21 involucrin protein-coding IVL involucrin O - 20121230 -9606 3714 JAG2 - HJ2|SER2 HGNC:6189|MIM:602570|Ensembl:ENSG00000184916|HPRD:03981|Vega:OTTHUMG00000140172 14 14q32 jagged 2 protein-coding JAG2 jagged 2 O protein jagged-2 20121230 -9606 3716 JAK1 - JAK1A|JAK1B|JTK3 HGNC:6190|MIM:147795|Ensembl:ENSG00000162434|HPRD:00992|Vega:OTTHUMG00000009310 1 1p32.3-p31.3 Janus kinase 1 protein-coding JAK1 Janus kinase 1 O tyrosine-protein kinase JAK1 20121230 -9606 3717 JAK2 - JTK10|THCYT3 HGNC:6192|MIM:147796|Ensembl:ENSG00000096968|HPRD:00993|Vega:OTTHUMG00000019490 9 9p24 Janus kinase 2 protein-coding JAK2 Janus kinase 2 O JAK-2|Janus kinase 2 (a protein tyrosine kinase)|tyrosine-protein kinase JAK2 20121230 -9606 3718 JAK3 - JAK-3|JAK3_HUMAN|JAKL|L-JAK|LJAK HGNC:6193|MIM:600173|Ensembl:ENSG00000105639|HPRD:02547|Vega:OTTHUMG00000165648 19 19p13.1 Janus kinase 3 protein-coding JAK3 Janus kinase 3 O Janus kinase 3 (a protein tyrosine kinase, leukocyte)|leukocyte Janus kinase|tyrosine-protein kinase JAK3 20121230 -9606 3719 JBS - - HGNC:6194|MIM:147791 11 11q24.1 Jacobsen syndrome unknown JBS Jacobsen syndrome O - 20120902 -9606 3720 JARID2 - JMJ HGNC:6196|MIM:601594|Ensembl:ENSG00000008083|HPRD:03355|Vega:OTTHUMG00000014293 6 6p24-p23 jumonji, AT rich interactive domain 2 protein-coding JARID2 jumonji, AT rich interactive domain 2 O jumonji homolog|jumonji-like protein|jumonji/ARID domain-containing protein 2|protein Jumonji 20121230 -9606 3725 JUN - AP-1|AP1|c-Jun HGNC:6204|MIM:165160|Ensembl:ENSG00000177606|HPRD:01302|Vega:OTTHUMG00000008376 1 1p32-p31 jun proto-oncogene protein-coding JUN jun proto-oncogene O Jun activation domain binding protein|activator protein 1|enhancer-binding protein AP1|jun oncogene|p39|proto-oncogene c-Jun|transcription factor AP-1|v-jun avian sarcoma virus 17 oncogene homolog|v-jun sarcoma virus 17 oncogene homolog 20121230 -9606 3726 JUNB - AP-1 HGNC:6205|MIM:165161|Ensembl:ENSG00000171223|HPRD:01303|Vega:OTTHUMG00000180373 19 19p13.2 jun B proto-oncogene protein-coding JUNB jun B proto-oncogene O activator protein 1|transcription factor jun-B 20121230 -9606 3727 JUND - AP-1 HGNC:6206|MIM:165162|Ensembl:ENSG00000130522|HPRD:01304 19 19p13.2 jun D proto-oncogene protein-coding JUND jun D proto-oncogene O JunD-FL isoform|activator protein 1|transcription factor jun-D 20121230 -9606 3728 JUP - ARVD12|CTNNG|DP3|DPIII|PDGB|PKGB HGNC:6207|MIM:173325|Ensembl:ENSG00000173801|HPRD:01414|Vega:OTTHUMG00000133494 17 17q21 junction plakoglobin protein-coding JUP junction plakoglobin O catenin (cadherin-associated protein), gamma 80kDa|desmoplakin III|desmoplakin-3 20121230 -9606 3729 K12T - - HGNC:6209|MIM:187310 14 - K12 temperature sensitivity complementing unknown K12T K12 temperature sensitivity complementing O - 20110215 -9606 3730 KAL1 - ADMLX|HH1|HHA|KAL|KALIG-1|KMS HGNC:6211|MIM:300836|Ensembl:ENSG00000011201|HPRD:02393|Vega:OTTHUMG00000021107 X Xp22.32 Kallmann syndrome 1 sequence protein-coding KAL1 Kallmann syndrome 1 sequence O Kallmann syndrome interval gene 1|Kallmann syndrome-1 sequence (anosmin-1)|adhesion molecule-like X-linked|anosmin-1|kallmann syndrome protein 20121230 -9606 3732 CD82 - 4F9|C33|GR15|IA4|KAI1|R2|SAR2|ST6|TSPAN27 HGNC:6210|MIM:600623|Ensembl:ENSG00000085117|HPRD:09004|Vega:OTTHUMG00000166472 11 11p11.2 CD82 molecule protein-coding CD82 CD82 molecule O C33 antigen|CD82 antigen|inducible membrane protein R2|kangai 1 (suppression of tumorigenicity 6, prostate; CD82 antigen (R2 leukocyte antigen, antigen detected by monoclonal and antibody IA4))|metastasis suppressor Kangai-1|tetraspanin-27|tspan-27 20121230 -9606 3734 KALP - ADMLY|KAL-Y HGNC:6214 Y Yq11 Kallmann syndrome sequence pseudogene pseudo KALP Kallmann syndrome sequence pseudogene O - 20121230 -9606 3735 KARS - CMTRIB|KARS1|KARS2|KRS HGNC:6215|MIM:601421|Ensembl:ENSG00000065427|HPRD:03249|Vega:OTTHUMG00000137609 16 16q23.1 lysyl-tRNA synthetase protein-coding KARS lysyl-tRNA synthetase O lysRS|lysine tRNA ligase|lysine--tRNA ligase 20121230 -9606 3736 KCNA1 - AEMK|EA1|HBK1|HUK1|KV1.1|MBK1|MK1|RBK1 HGNC:6218|MIM:176260|Ensembl:ENSG00000111262|HPRD:08885|Vega:OTTHUMG00000044398 12 12p13.32 potassium voltage-gated channel, shaker-related subfamily, member 1 (episodic ataxia with myokymia) protein-coding KCNA1 potassium voltage-gated channel, shaker-related subfamily, member 1 (episodic ataxia with myokymia) O potassium voltage-gated channel subfamily A member 1|voltage-gated K(+) channel HuKI|voltage-gated potassium channel HBK1|voltage-gated potassium channel subunit Kv1.1 20121230 -9606 3737 KCNA2 RP11-284N8.1 HBK5|HK4|HUKIV|KV1.2|MK2|NGK1|RBK2 HGNC:6220|MIM:176262|Ensembl:ENSG00000177301|HPRD:01443|Vega:OTTHUMG00000011567 1 1p13 potassium voltage-gated channel, shaker-related subfamily, member 2 protein-coding KCNA2 potassium voltage-gated channel, shaker-related subfamily, member 2 O potassium voltage-gated channel subfamily A member 2|voltage-gated K(+) channel HuKIV|voltage-gated potassium channel HBK5|voltage-gated potassium channel protein Kv1.2|voltage-gated potassium channel subunit Kv1.2 20121230 -9606 3738 KCNA3 - HGK5|HLK3|HPCN3|HUKIII|KV1.3|MK3|PCN3 HGNC:6221|MIM:176263|Ensembl:ENSG00000177272|HPRD:15937|Vega:OTTHUMG00000034493 1 1p13.3 potassium voltage-gated channel, shaker-related subfamily, member 3 protein-coding KCNA3 potassium voltage-gated channel, shaker-related subfamily, member 3 O potassium channel 3|potassium voltage-gated channel subfamily A member 3|type n potassium channel|voltage-gated K(+) channel HuKIII|voltage-gated potassium channel protein Kv1.3|voltage-gated potassium channel subunit Kv1.3 20121230 -9606 3739 KCNA4 - HBK4|HK1|HPCN2|HUKII|KCNA4L|KCNA8|KV1.4|PCN2 HGNC:6222|MIM:176266|Ensembl:ENSG00000182255|HPRD:01444|Vega:OTTHUMG00000166144 11 11p14 potassium voltage-gated channel, shaker-related subfamily, member 4 protein-coding KCNA4 potassium voltage-gated channel, shaker-related subfamily, member 4 O cardiac potassium channel|fetal skeletal muscle potassium channel|potassium channel 2|potassium voltage-gated channel subfamily A member 4|rapidly inactivating potassium channel|shaker-related potassium channel Kv1.4|type A potassium channel|voltage-gated K(+) channel HuKII|voltage-gated potassium channel HBK4|voltage-gated potassium channel HK1|voltage-gated potassium channel subunit Kv1.4 20121230 -9606 3741 KCNA5 - ATFB7|HCK1|HK2|HPCN1|KV1.5|PCN1 HGNC:6224|MIM:176267|Ensembl:ENSG00000130037|HPRD:08888|Vega:OTTHUMG00000168232 12 12p13 potassium voltage-gated channel, shaker-related subfamily, member 5 protein-coding KCNA5 potassium voltage-gated channel, shaker-related subfamily, member 5 O cardiac potassium channel|insulinoma and islet potassium channel|potassium channel 1|potassium voltage-gated channel subfamily A member 5|voltage-gated potassium channel HK2|voltage-gated potassium channel protein Kv1.5|voltage-gated potassium channel subunit Kv1.5 20121230 -9606 3742 KCNA6 - HBK2|KV1.6 HGNC:6225|MIM:176257|Ensembl:ENSG00000151079|HPRD:08884 12 12p13 potassium voltage-gated channel, shaker-related subfamily, member 6 protein-coding KCNA6 potassium voltage-gated channel, shaker-related subfamily, member 6 O human brain potassium channel-2|potassium voltage-gated channel subfamily A member 6|voltage-gated potassium channel HBK2|voltage-gated potassium channel protein Kv1.6|voltage-gated potassium channel subunit Kv1.6 20121230 -9606 3743 KCNA7 - HAK6|KV1.7 HGNC:6226|MIM:176268|Ensembl:ENSG00000104848|HPRD:01445 19 19q13.3 potassium voltage-gated channel, shaker-related subfamily, member 7 protein-coding KCNA7 potassium voltage-gated channel, shaker-related subfamily, member 7 O potassium voltage-gated channel subfamily A member 7|voltage-dependent potassium channel Kv1.7|voltage-gated potassium channel KCNA7|voltage-gated potassium channel subunit Kv1.7 20121230 -9606 3744 KCNA10 - Kcn1|Kv1.8 HGNC:6219|MIM:602420|Ensembl:ENSG00000143105|HPRD:03882|Vega:OTTHUMG00000022785 1 1p13.1 potassium voltage-gated channel, shaker-related subfamily, member 10 protein-coding KCNA10 potassium voltage-gated channel, shaker-related subfamily, member 10 O cyclic GMP gated potassium channel|potassium voltage-gated channel subfamily A member 10|voltage-gated potassium channel subunit Kv1.8 20121230 -9606 3745 KCNB1 - DRK1|KV2.1|h-DRK1 HGNC:6231|MIM:600397|Ensembl:ENSG00000158445|HPRD:08983|Vega:OTTHUMG00000033051 20 20q13.2 potassium voltage-gated channel, Shab-related subfamily, member 1 protein-coding KCNB1 potassium voltage-gated channel, Shab-related subfamily, member 1 O delayed rectifier potassium channel 1|delayed rectifier potassium channel Kv2.1|h-DRK1 K(+) channel|potassium channel protein DRK1|potassium voltage-gated channel subfamily B member 1|voltage-gated potassium channel subunit Kv2.1 20121230 -9606 3746 KCNC1 - KV3.1|KV4|NGK2 HGNC:6233|MIM:176258|Ensembl:ENSG00000129159|HPRD:15936|Vega:OTTHUMG00000166359 11 11p15 potassium voltage-gated channel, Shaw-related subfamily, member 1 protein-coding KCNC1 potassium voltage-gated channel, Shaw-related subfamily, member 1 O potassium voltage-gated channel subfamily C member 1|voltage-gated potassium channel protein KV3.1|voltage-gated potassium channel subunit Kv3.1|voltage-gated potassium channel subunit Kv4 20121230 -9606 3747 KCNC2 - KV3.2 HGNC:6234|MIM:176256|Ensembl:ENSG00000166006|HPRD:08883|Vega:OTTHUMG00000169717 12 12q14.1 potassium voltage-gated channel, Shaw-related subfamily, member 2 protein-coding KCNC2 potassium voltage-gated channel, Shaw-related subfamily, member 2 O potassium voltage-gated channel subfamily C member 2|voltage-gated potassium channel Kv3.2 20121230 -9606 3748 KCNC3 - KSHIIID|KV3.3|SCA13 HGNC:6235|MIM:176264|Ensembl:ENSG00000131398|HPRD:08886|Vega:OTTHUMG00000044580 19 19q13.33 potassium voltage-gated channel, Shaw-related subfamily, member 3 protein-coding KCNC3 potassium voltage-gated channel, Shaw-related subfamily, member 3 O Shaw-related voltage-gated potassium channel protein 3|potassium voltage-gated channel subfamily C member 3|voltage-gated potassium channel protein KV3.3|voltage-gated potassium channel subunit Kv3.3 20121230 -9606 3749 KCNC4 - C1orf30|HKSHIIIC|KSHIIIC|KV3.4 HGNC:6236|MIM:176265|Ensembl:ENSG00000116396|HPRD:08887|Vega:OTTHUMG00000011037 1 1p21 potassium voltage-gated channel, Shaw-related subfamily, member 4 protein-coding KCNC4 potassium voltage-gated channel, Shaw-related subfamily, member 4 O K+ channel subunit|potassium voltage-gated channel subfamily C member 4|voltage-gated potassium channel subunit KV3.4 20121230 -9606 3750 KCND1 - KV4.1 HGNC:6237|MIM:300281|Ensembl:ENSG00000102057|HPRD:02233|Vega:OTTHUMG00000024127 X Xp11.23 potassium voltage-gated channel, Shal-related subfamily, member 1 protein-coding KCND1 potassium voltage-gated channel, Shal-related subfamily, member 1 O potassium voltage-gated channel subfamily D member 1|shal-type potassium channel|voltage-gated potassium channel Kv4.1|voltage-gated potassium channel subunit Kv4.1 20121230 -9606 3751 KCND2 - KV4.2|RK5 HGNC:6238|MIM:605410|Ensembl:ENSG00000184408|HPRD:09254|Vega:OTTHUMG00000156989 7 7q31 potassium voltage-gated channel, Shal-related subfamily, member 2 protein-coding KCND2 potassium voltage-gated channel, Shal-related subfamily, member 2 O potassium voltage-gated channel subfamily D member 2|voltage-gated potassium channel Kv4.2|voltage-gated potassium channel subunit Kv4.2|voltage-sensitive potassium channel 20121230 -9606 3752 KCND3 RP4-773A18.7 KCND3L|KCND3S|KSHIVB|KV4.3 HGNC:6239|MIM:605411|Ensembl:ENSG00000171385|HPRD:16104|Vega:OTTHUMG00000011989 1 1p13.3 potassium voltage-gated channel, Shal-related subfamily, member 3 protein-coding KCND3 potassium voltage-gated channel, Shal-related subfamily, member 3 O potassium ionic channel Kv4.3|potassium voltage-gated channel subfamily D member 3|sha1-related potassium channel Kv4.3|voltage-gated K+ channel|voltage-gated potassium channel subunit Kv4.3 20121230 -9606 3753 KCNE1 - ISK|JLNS|JLNS2|LQT2/5|LQT5|MinK HGNC:6240|MIM:176261|Ensembl:ENSG00000180509|HPRD:01442|Vega:OTTHUMG00000086236 21 21q22.12 potassium voltage-gated channel, Isk-related family, member 1 protein-coding KCNE1 potassium voltage-gated channel, Isk-related family, member 1 O IKs producing slow voltage-gated potassium channel subunit beta Mink|cardiac delayed rectifier potassium channel protein|delayed rectifier potassium channel subunit IsK|minimal potassium channel|potassium voltage-gated channel subfamily E member 1|potassium voltage-gated channel, Isk-related subfamily, member 1|voltage gated potassiun channel accessory subunit 20121230 -9606 3754 KCNF1 - IK8|KCNF|KV5.1|kH1 HGNC:6246|MIM:603787|Ensembl:ENSG00000162975|HPRD:04808|Vega:OTTHUMG00000119054 2 2p25 potassium voltage-gated channel, subfamily F, member 1 protein-coding KCNF1 potassium voltage-gated channel, subfamily F, member 1 O potassium channel KH1|potassium channel Kv5.1|potassium voltage-gated channel subfamily F member 1|voltage-gated potassium channel subunit Kv5.1 20121230 -9606 3755 KCNG1 RP5-955M13.1 K13|KCNG|KV6.1|kH2 HGNC:6248|MIM:603788|Ensembl:ENSG00000026559|HPRD:04809|Vega:OTTHUMG00000032745 20 20q13 potassium voltage-gated channel, subfamily G, member 1 protein-coding KCNG1 potassium voltage-gated channel, subfamily G, member 1 O potassium channel KH2|potassium channel Kv6.1|potassium voltage-gated channel subfamily G member 1|voltage-gated potassium channel subunit Kv6.1 20121230 -9606 3756 KCNH1 - EAG|EAG1|Kv10.1|h-eag HGNC:6250|MIM:603305|Ensembl:ENSG00000143473|HPRD:04492|Vega:OTTHUMG00000036309 1 1q32.2 potassium voltage-gated channel, subfamily H (eag-related), member 1 protein-coding KCNH1 potassium voltage-gated channel, subfamily H (eag-related), member 1 O EAG channel 1|ether-a-go-go potassium channel 1|ether-a-go-go, Drosophila, homolog of|hEAG1|potassium voltage-gated channel subfamily H member 1|voltage-gated potassium channel subunit Kv10.1 20121230 -9606 3757 KCNH2 - ERG1|HERG|HERG1|Kv11.1|LQT2|SQT1 HGNC:6251|MIM:152427|Ensembl:ENSG00000055118|HPRD:01069|Vega:OTTHUMG00000158341 7 7q36.1 potassium voltage-gated channel, subfamily H (eag-related), member 2 protein-coding KCNH2 potassium voltage-gated channel, subfamily H (eag-related), member 2 O ERG-1|H-ERG|eag homolog|eag-related protein 1|ether-a-go-go-related gene potassium channel 1|ether-a-go-go-related potassium channel protein|ether-a-go-go-related protein 1|hERG-1|potassium voltage-gated channel subfamily H member 2|voltage-gated potassium channel subunit Kv11.1 20121230 -9606 3758 KCNJ1 - KIR1.1|ROMK|ROMK1 HGNC:6255|MIM:600359|Ensembl:ENSG00000151704|HPRD:08981|Vega:OTTHUMG00000048247 11 11q24 potassium inwardly-rectifying channel, subfamily J, member 1 protein-coding KCNJ1 potassium inwardly-rectifying channel, subfamily J, member 1 O ATP-regulated potassium channel ROM-K|ATP-sensitive inward rectifier potassium channel 1|inward rectifier K(+) channel Kir1.1|inwardly rectifying K+ channel|potassium channel, inwardly rectifying subfamily J member 1 20121230 -9606 3759 KCNJ2 - ATFB9|HHBIRK1|HHIRK1|IRK1|KIR2.1|LQT7|SQT3 HGNC:6263|MIM:600681|Ensembl:ENSG00000123700|HPRD:02815|Vega:OTTHUMG00000180351 17 17q24.3 potassium inwardly-rectifying channel, subfamily J, member 2 protein-coding KCNJ2 potassium inwardly-rectifying channel, subfamily J, member 2 O IRK-1|cardiac inward rectifier potassium channel|hIRK1|inward rectifier K+ channel KIR2.1|inward rectifier potassium channel 2 20121230 -9606 3760 KCNJ3 - GIRK1|KGA|KIR3.1 HGNC:6264|MIM:601534|Ensembl:ENSG00000162989|HPRD:03323|Vega:OTTHUMG00000131937 2 2q24.1 potassium inwardly-rectifying channel, subfamily J, member 3 protein-coding KCNJ3 potassium inwardly-rectifying channel, subfamily J, member 3 O G protein-activated inward rectifier potassium channel 1|GIRK-1|inward rectifier K(+) channel Kir3.1|inward rectifier K+ channel KIR3.1|potassium channel, inwardly rectifying subfamily J member 3|potassium inwardly-rectifying channel subfamily J member 3 splice variant 1e 20121230 -9606 3761 KCNJ4 RP3-434P1.2 HIR|HIRK2|HRK1|IRK-3|IRK3|Kir2.3 HGNC:6265|MIM:600504|Ensembl:ENSG00000168135|HPRD:02738|Vega:OTTHUMG00000151131 22 22q13.1 potassium inwardly-rectifying channel, subfamily J, member 4 protein-coding KCNJ4 potassium inwardly-rectifying channel, subfamily J, member 4 O hippocampal inward rectifier potassium channel|inward rectifier K(+) channel Kir2.3|inward rectifier K+ channel Kir2.3|inward rectifier potassium channel 4|potassium channel, inwardly rectifying subfamily J member 4 20121230 -9606 3762 KCNJ5 - CIR|GIRK4|KATP1|KIR3.4|LQT13 HGNC:6266|MIM:600734|Ensembl:ENSG00000120457|HPRD:09010|Vega:OTTHUMG00000165795 11 11q24 potassium inwardly-rectifying channel, subfamily J, member 5 protein-coding KCNJ5 potassium inwardly-rectifying channel, subfamily J, member 5 O G protein-activated inward rectifier potassium channel 4|IRK-4|cardiac ATP-sensitive potassium channel|heart KATP channel|inward rectifier K+ channel KIR3.4 20121230 -9606 3763 KCNJ6 - BIR1|GIRK-2|GIRK2|KATP-2|KATP2|KCNJ7|KIR3.2|hiGIRK2 HGNC:6267|MIM:600877|Ensembl:ENSG00000157542|HPRD:02929|Vega:OTTHUMG00000086667 21 21q22.1 potassium inwardly-rectifying channel, subfamily J, member 6 protein-coding KCNJ6 potassium inwardly-rectifying channel, subfamily J, member 6 O G protein-activated inward rectifier potassium channel 2|inward rectifier K(+) channel Kir3.2|inward rectifier potassium channel KIR3.2 20121230 -9606 3764 KCNJ8 - KIR6.1|uKATP-1 HGNC:6269|MIM:600935|Ensembl:ENSG00000121361|HPRD:02962|Vega:OTTHUMG00000169093 12 12p11.23 potassium inwardly-rectifying channel, subfamily J, member 8 protein-coding KCNJ8 potassium inwardly-rectifying channel, subfamily J, member 8 O ATP-sensitive inward rectifier potassium channel 8|inward rectifier K(+) channel Kir6.1|inwardly rectifying potassium channel KIR6.1|potassium channel, inwardly rectifying subfamily J member 8 20121230 -9606 3765 KCNJ9 RP11-536C5.1 GIRK3|KIR3.3 HGNC:6270|MIM:600932|Ensembl:ENSG00000162728|HPRD:02959|Vega:OTTHUMG00000024072 1 1q23.2 potassium inwardly-rectifying channel, subfamily J, member 9 protein-coding KCNJ9 potassium inwardly-rectifying channel, subfamily J, member 9 O G protein-activated inward rectifier potassium channel 3|G protein-coupled inward rectifier potassium channel|GIRK-3|inward rectifier K(+) channel Kir3.3|inwardly rectifier K+ channel KIR3.3|potassium channel, inwardly rectifying subfamily J member 9 20121230 -9606 3766 KCNJ10 - BIRK-10|KCNJ13-PEN|KIR1.2|KIR4.1|SESAME HGNC:6256|MIM:602208|Ensembl:ENSG00000177807|HPRD:03732|Vega:OTTHUMG00000024073 1 1q23.2 potassium inwardly-rectifying channel, subfamily J, member 10 protein-coding KCNJ10 potassium inwardly-rectifying channel, subfamily J, member 10 O ATP-dependent inwardly rectifying potassium channel Kir4.1|ATP-sensitive inward rectifier potassium channel 10|glial ATP-dependent inwardly rectifying potassium channel KIR4.1|inward rectifier K(+) channel Kir1.2|inward rectifier K+ channel KIR1.2|potassium channel, inwardly rectifying subfamily J member 10 20121230 -9606 3767 KCNJ11 - BIR|HHF2|IKATP|KIR6.2|PHHI|TNDM3 HGNC:6257|MIM:600937|Ensembl:ENSG00000187486|HPRD:09022|Vega:OTTHUMG00000165914 11 11p15.1 potassium inwardly-rectifying channel, subfamily J, member 11 protein-coding KCNJ11 potassium inwardly-rectifying channel, subfamily J, member 11 O ATP-sensitive inward rectifier potassium channel 11|beta-cell inward rectifier subunit|inward rectifier K(+) channel Kir6.2|inwardly rectifying potassium channel KIR6.2|potassium channel inwardly rectifing subfamily J member 11|potassium channel, inwardly rectifying subfamily J member 11 20121230 -9606 3768 KCNJ12 - IRK-2|IRK2|KCNJN1|Kir2.2|Kir2.2v|hIRK|hIRK1|hkir2.2x|kcnj12x HGNC:6258|MIM:602323|Ensembl:ENSG00000184185|HPRD:09083|Vega:OTTHUMG00000132039 17 17p11.2 potassium inwardly-rectifying channel, subfamily J, member 12 protein-coding KCNJ12 potassium inwardly-rectifying channel, subfamily J, member 12 O ATP-sensitive inward rectifier potassium channel 12|inward rectifier K(+) channel Kir2.2|inward rectifier K(+) channel Kir2.2v|inward rectifier K(+) channel Kir2.6|potassium channel, inwardly rectifying subfamily J member 12|potassium inwardly-rectifying channel, subfamily J, inhibitor 1 20121230 -9606 3769 KCNJ13 - KIR1.4|KIR7.1|LCA16|SVD HGNC:6259|MIM:603208|Ensembl:ENSG00000115474|HPRD:04441|Vega:OTTHUMG00000153292 2 2q37 potassium inwardly-rectifying channel, subfamily J, member 13 protein-coding KCNJ13 potassium inwardly-rectifying channel, subfamily J, member 13 O inward rectifier K(+) channel Kir7.1|inward rectifier potassium channel 13 20121230 -9606 3770 KCNJ14 - IRK4|KIR2.4 HGNC:6260|MIM:603953|Ensembl:ENSG00000182324|HPRD:04901 19 19q13 potassium inwardly-rectifying channel, subfamily J, member 14 protein-coding KCNJ14 potassium inwardly-rectifying channel, subfamily J, member 14 O ATP-sensitive inward rectifier potassium channel 14|IRK-4|inward rectifier K(+) channel Kir2.4|inwardly rectifying potassium channel KIR2.4|potassium channel, inwardly rectifying subfamily J member 14 20121230 -9606 3772 KCNJ15 - IRKK|KIR1.3|KIR4.2 HGNC:6261|MIM:602106|Ensembl:ENSG00000157551|HPRD:03659|Vega:OTTHUMG00000090609 21 21q22.2 potassium inwardly-rectifying channel, subfamily J, member 15 protein-coding KCNJ15 potassium inwardly-rectifying channel, subfamily J, member 15 O ATP-sensitive inward rectifier potassium channel 15|inward rectifier K(+) channel Kir1.3|inward rectifier K(+) channel Kir4.2|inward rectifier K+ channel KIR4.2|potassium channel, inwardly rectifying subfamily J member 15 20121230 -9606 3773 KCNJ16 - BIR9|KIR5.1 HGNC:6262|MIM:605722|Ensembl:ENSG00000153822|HPRD:16146 17 17q24.3 potassium inwardly-rectifying channel, subfamily J, member 16 protein-coding KCNJ16 potassium inwardly-rectifying channel, subfamily J, member 16 O inward rectifier K(+) channel Kir5.1|inward rectifier K+ channel KIR5.1|inward rectifier potassium channel 16|potassium channel, inwardly rectifying subfamily J member 16 20121230 -9606 3775 KCNK1 RP4-550F15.1 DPK|HOHO|K2P1|K2p1.1|KCNO1|TWIK-1|TWIK1 HGNC:6272|MIM:601745|Ensembl:ENSG00000135750|HPRD:03447|Vega:OTTHUMG00000037923 1 1q42-q43 potassium channel, subfamily K, member 1 protein-coding KCNK1 potassium channel, subfamily K, member 1 O inward rectifying potassium channel protein TWIK-1|potassium channel KCNO1|potassium channel subfamily K member 1|potassium inwardly-rectifying channel, subfamily K, member 1 20121230 -9606 3776 KCNK2 - K2p2.1|TPKC1|TREK|TREK-1|TREK1|hTREK-1c|hTREK-1e HGNC:6277|MIM:603219|Ensembl:ENSG00000082482|Vega:OTTHUMG00000037017 1 1q41 potassium channel, subfamily K, member 2 protein-coding KCNK2 potassium channel, subfamily K, member 2 O K2P2.1 potassium channel|TREK-1 K(+) channel subunit|TWIK-related potassium channel 1|outward rectifying potassium channel protein TREK-1|potassium channel subfamily K member 2|potassium inwardly-rectifying channel, subfamily K, member 2|tandem-pore-domain potassium channel TREK-1|two pore domain potassium channel TREK-1|two pore potassium channel TPKC1|two-pore potassium channel 1 20121230 -9606 3777 KCNK3 - K2p3.1|OAT1|TASK|TASK-1|TBAK1 HGNC:6278|MIM:603220|Ensembl:ENSG00000171303|HPRD:04451|Vega:OTTHUMG00000125530 2 2p23 potassium channel, subfamily K, member 3 protein-coding KCNK3 potassium channel, subfamily K, member 3 O TWIK-related acid-sensitive K(+) channel 1|TWIK-related acid-sensitive K+ channel|acid-sensitive potassium channel protein TASK|acid-sensitive potassium channel protein TASK-1|cardiac potassium channel|potassium channel subfamily K member 3|potassium inwardly-rectifying channel, subfamily K, member 3|two P domain potassium channel|two pore K(+) channel KT3.1|two pore potassium channel KT3.1 20121230 -9606 3778 KCNMA1 RP11-443A13.1 BKTM|KCa1.1|MaxiK|SAKCA|SLO|SLO-ALPHA|SLO1|bA205K10.1|mSLO1 HGNC:6284|MIM:600150|Ensembl:ENSG00000156113|HPRD:15967|Vega:OTTHUMG00000018543 10 10q22.3 potassium large conductance calcium-activated channel, subfamily M, alpha member 1 protein-coding KCNMA1 potassium large conductance calcium-activated channel, subfamily M, alpha member 1 O BK channel alpha subunit|BKCA alpha subunit|calcium-activated potassium channel subunit alpha-1|calcium-activated potassium channel, subfamily M subunit alpha-1|hSlo|k(VCA)alpha|maxi-K channel HSLO|slo homolog|slowpoke homolog|stretch-activated Kca channel 20121230 -9606 3779 KCNMB1 - K(VCA)beta|SLO-BETA|hslo-beta HGNC:6285|MIM:603951|Ensembl:ENSG00000145936|HPRD:10358|Vega:OTTHUMG00000130439 5 5q34 potassium large conductance calcium-activated channel, subfamily M, beta member 1 protein-coding KCNMB1 potassium large conductance calcium-activated channel, subfamily M, beta member 1 O BK channel beta subunit|BK channel subunit beta-1|BKbeta|BKbeta1|Maxi K channel beta subunit|calcium-activated potassium channel subunit beta|calcium-activated potassium channel subunit beta-1|calcium-activated potassium channel, subfamily M subunit beta-1|charybdotoxin receptor subunit beta-1|hbeta1|k(VCA)beta-1|large conductance Ca2+-activated K+ channel beta 1 subunit|maxi K channel subunit beta-1|slo-beta-1 20121230 -9606 3780 KCNN1 - KCa2.1|SK1|SKCA1|hSK1 HGNC:6290|MIM:602982|Ensembl:ENSG00000105642|HPRD:04282 19 19p13.1 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 1 protein-coding KCNN1 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 1 O SKCa 1|small conductance calcium-activated potassium channel protein 1 20121230 -9606 3781 KCNN2 - KCa2.2|SK2|SKCA2|hSK2 HGNC:6291|MIM:605879|Ensembl:ENSG00000080709|HPRD:09323|Vega:OTTHUMG00000128836 5 5q22.3 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 2 protein-coding KCNN2 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 2 O SKCa 2|apamin-sensitive small-conductance Ca2+-activated potassium channel|small conductance calcium-activated potassium channel protein 2 20121230 -9606 3782 KCNN3 RP11-274N19.1 KCa2.3|SK3|SKCA3|hSK3 HGNC:6292|MIM:602983|Ensembl:ENSG00000143603|HPRD:04283|Vega:OTTHUMG00000037260 1 1q21.3 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 3 protein-coding KCNN3 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 3 O SKCa 3|small conductance calcium-activated potassium channel protein 3 20121230 -9606 3783 KCNN4 - IK1|IKCA1|KCA4|KCa3.1|SK4|hIKCa1|hKCa4|hSK4 HGNC:6293|MIM:602754|Ensembl:ENSG00000104783|HPRD:04130 19 19q13.2 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 4 protein-coding KCNN4 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 4 O SKCa 4|SKCa4|intermediate conductance calcium-activated potassium channel protein 4|putative Gardos channel|putative erythrocyte intermediate conductance calcium-activated potassium Gardos channel 20121230 -9606 3784 KCNQ1 - ATFB1|ATFB3|JLNS1|KCNA8|KCNA9|KVLQT1|Kv1.9|Kv7.1|LQT|LQT1|RWS|SQT2|WRS HGNC:6294|MIM:607542|Ensembl:ENSG00000053918|HPRD:06341|Vega:OTTHUMG00000009900 11 11p15.5 potassium voltage-gated channel, KQT-like subfamily, member 1 protein-coding KCNQ1 potassium voltage-gated channel, KQT-like subfamily, member 1 O IKs producing slow voltage-gated potassium channel subunit alpha KvLQT1|kidney and cardiac voltage dependend K+ channel|potassium voltage-gated channel subfamily KQT member 1|slow delayed rectifier channel subunit|voltage-gated potassium channel subunit Kv7.1 20121230 -9606 3785 KCNQ2 RP11-261N11.2 BFNC|BFNS1|EBN|EBN1|EIEE7|ENB1|HNSPC|KCNA11|KV7.2|KVEBN1 HGNC:6296|MIM:602235|Ensembl:ENSG00000075043|HPRD:03757|Vega:OTTHUMG00000033049 20 20q13.3 potassium voltage-gated channel, KQT-like subfamily, member 2 protein-coding KCNQ2 potassium voltage-gated channel, KQT-like subfamily, member 2 O KQT-like 2|neuroblastoma-specific potassium channel protein|neuroblastoma-specific potassium channel subunit alpha KvLQT2|potassium voltage-gated channel subfamily KQT member 2|voltage-gated potassium channel subunit Kv7.2 20121230 -9606 3786 KCNQ3 - BFNC2|EBN2|KV7.3 HGNC:6297|MIM:602232|Ensembl:ENSG00000184156|HPRD:09077|Vega:OTTHUMG00000137472 8 8q24 potassium voltage-gated channel, KQT-like subfamily, member 3 protein-coding KCNQ3 potassium voltage-gated channel, KQT-like subfamily, member 3 O potassium channel subunit alpha KvLQT3|potassium channel, voltage-gated, subfamily Q, member 3|potassium voltage-gated channel subfamily KQT member 3|voltage-gated potassium channel subunit Kv7.3 20121230 -9606 3787 KCNS1 - KV9.1 HGNC:6300|MIM:602905|Ensembl:ENSG00000124134|HPRD:04214|Vega:OTTHUMG00000033079 20 20q12 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 1 protein-coding KCNS1 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 1 O delayed-rectifier K(+) channel alpha subunit 1|delayed-rectifier K+ channel alpha subunit 1|potassium voltage-gated channel subfamily S member 1|voltage-gated potassium channel protein Kv9.1|voltage-gated potassium channel subunit Kv9.1 20121230 -9606 3788 KCNS2 - KV9.2 HGNC:6301|MIM:602906|Ensembl:ENSG00000156486|HPRD:04215|Vega:OTTHUMG00000044337 8 8q22 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 2 protein-coding KCNS2 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 2 O delayed-rectifier K(+) channel alpha subunit 2|potassium voltage-gated channel subfamily S member 2|voltage-gated potassium channel subunit Kv9.2 20121230 -9606 3790 KCNS3 - KV9.3 HGNC:6302|MIM:603888|Ensembl:ENSG00000170745|HPRD:04865|Vega:OTTHUMG00000044150 2 2p24 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 3 protein-coding KCNS3 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 3 O Shab-related delayed-rectifier K+ channel alpha subunit 3|delayed-rectifier K(+) channel alpha subunit 3|potassium voltage-gated channel delayed-rectifier protein S3|potassium voltage-gated channel subfamily S member 3|voltage-gated potassium channel protein Kv9.3|voltage-gated potassium channel subunit Kv9.3 20121230 -9606 3791 KDR - CD309|FLK1|VEGFR|VEGFR2 HGNC:6307|MIM:191306|Ensembl:ENSG00000128052|HPRD:01867|Vega:OTTHUMG00000128734 4 4q11-q12 kinase insert domain receptor (a type III receptor tyrosine kinase) protein-coding KDR kinase insert domain receptor (a type III receptor tyrosine kinase) O fetal liver kinase 1|fetal liver kinase-1|protein-tyrosine kinase receptor Flk-1|soluble VEGFR2|tyrosine kinase growth factor receptor|vascular endothelial growth factor receptor 2 20121230 -9606 3792 KEL - CD238|ECE3 HGNC:6308|MIM:613883|Ensembl:ENSG00000197993|HPRD:00194|Vega:OTTHUMG00000157159 7 7q33 Kell blood group, metallo-endopeptidase protein-coding KEL Kell blood group, metallo-endopeptidase O kell blood group antigen|kell blood group glycoprotein 20121230 -9606 3795 KHK - - HGNC:6315|MIM:614058|Ensembl:ENSG00000138030|HPRD:11774|Vega:OTTHUMG00000097077 2 2p23.3 ketohexokinase (fructokinase) protein-coding KHK ketohexokinase (fructokinase) O hepatic fructokinase|ketohexokinase 20121230 -9606 3796 KIF2A - HK2|KIF2 HGNC:6318|MIM:602591|Ensembl:ENSG00000068796|HPRD:03996|Vega:OTTHUMG00000097755 5 5q12-q13 kinesin heavy chain member 2A protein-coding KIF2A kinesin heavy chain member 2A O Kinesin, heavy chain, 2|kinesin-2|kinesin-like protein KIF2A 20121230 -9606 3797 KIF3C - - HGNC:6321|MIM:602845|Ensembl:ENSG00000084731|HPRD:04164|Vega:OTTHUMG00000094797 2 2p23 kinesin family member 3C protein-coding KIF3C kinesin family member 3C O KIF3C variant protein|kinesin-like protein KIF3C 20121230 -9606 3798 KIF5A - D12S1889|MY050|NKHC|SPG10 HGNC:6323|MIM:602821|Ensembl:ENSG00000155980|HPRD:09108|Vega:OTTHUMG00000170143 12 12q13.13 kinesin family member 5A protein-coding KIF5A kinesin family member 5A O KIF5A variant protein|kinesin heavy chain isoform 5A|kinesin heavy chain neuron-specific 1|kinesin, heavy chain, neuron-specific|neuronal kinesin heavy chain 20121230 -9606 3799 KIF5B - KINH|KNS|KNS1|UKHC HGNC:6324|MIM:602809|Ensembl:ENSG00000170759|HPRD:07214|Vega:OTTHUMG00000017913 10 10p11.22 kinesin family member 5B protein-coding KIF5B kinesin family member 5B O conventional kinesin heavy chain|kinesin 1 (110-120kD)|kinesin heavy chain|kinesin-1 heavy chain|ubiquitous kinesin heavy chain 20121230 -9606 3800 KIF5C - KINN|NKHC|NKHC-2|NKHC2 HGNC:6325|MIM:604593|Ensembl:ENSG00000168280|Vega:OTTHUMG00000153779 2 2q23.1 kinesin family member 5C protein-coding KIF5C kinesin family member 5C O kinesin heavy chain isoform 5C|kinesin heavy chain neuron-specific 2|kinesin, heavy chain, neuron-specific 20121230 -9606 3801 KIFC3 - - HGNC:6326|MIM:604535|Ensembl:ENSG00000140859|HPRD:05171|Vega:OTTHUMG00000133455 16 16q13-q21 kinesin family member C3 protein-coding KIFC3 kinesin family member C3 O kinesin-like protein KIFC3 20121230 -9606 3802 KIR2DL1 XXbac-BCX195L8.1 CD158A|KIR-K64|KIR221|NKAT|NKAT1|p58.1 HGNC:6329|MIM:604936|Ensembl:ENSG00000125498|HPRD:12000|Vega:OTTHUMG00000065885 19 19q13.4 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 1 protein-coding KIR2DL1 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 1 O CD158 antigen-like family member A|MHC class I NK cell receptor|NKAT-1|killer Ig receptor|killer cell immunoglobulin-like receptor 2DL1|killer inhibitory receptor 2-2-1|natural killer-associated transcript 1|p58 NK cell inhibitory receptor NKR-K6|p58 NK receptor CL-42/47.11|p58 killer cell inhibitory receptor KIR-K64|p58 natural killer cell receptor clones CL-42/47.11|p58.1 MHC class-I-specific NK receptor 20121230 -9606 3803 KIR2DL2 CU464060.2 CD158B1|CD158b|NKAT6|p58.2 HGNC:6330|MIM:604937|HPRD:16080 19 19q13.4 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 2 protein-coding KIR2DL2 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 2 O CD158 antigen-like family member B1|MHC class I NK cell receptor|NKAT-6|killer cell immunoglobulin-like receptor 2DL2|natural killer-associated transcript 6|p58 NK receptor CL-43|p58 natural killer cell receptor clone CL-43 20121222 -9606 3804 KIR2DL3 CU464054.1 CD158B2|CD158b|GL183|KIR-023GB|KIR-K7b|KIR-K7c|KIRCL23|NKAT|NKAT2|NKAT2A|NKAT2B|p58 HGNC:6331|MIM:604938|Ensembl:ENSG00000243772|HPRD:10383|Vega:OTTHUMG00000065887 19 19q13.4 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 3 protein-coding KIR2DL3 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 3 O CD158 antigen-like family member B2|MHC class I NK cell receptor|NK-receptor|NKAT-2|killer cell immunoglobulin-like receptor 2DL3|killer inhibitory receptor cl 2-3|natural killer associated transcript 2|natural killer cell inhibitory receptor KIR2DL3|natural killer-associated transcript 2|p58 NK receptor CL-6|p58 natural killer cell receptor clone CL-6|p58.2 MHC class-I specific NK receptor|p58.2 MHC class-I-specific NK receptor 20121230 -9606 3805 KIR2DL4 XXbac-BCX195L8.3 CD158D|G9P|KIR103|KIR103AS HGNC:6332|MIM:604945|Ensembl:ENSG00000189013|HPRD:16082|Vega:OTTHUMG00000065880 19 19q13.4 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 4 protein-coding KIR2DL4 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 4 O CD158 antigen-like family member D|KIR-103AS|MHC class I NK cell receptor KIR103AS|NK cell receptor|killer Ig receptor|killer cell immunoglobulin-like receptor 2DL4|killer cell inhibitory receptor 103AS|natural killer cell inhibitory receptor 20121230 -9606 3806 KIR2DS1 XXbac-BCX195L8.7 CD158H|CD158a|p50.1 HGNC:6333|MIM:604952|HPRD:05384 19 19q13.4 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 1 protein-coding KIR2DS1 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 1 O CD158 antigen-like family member H|KIR2DL1-KIR2DS1|MHC class I NK cell receptor Eb6 ActI|killer cell immunoglobulin-like receptor 2DS1|killer cell immunoglobulin-like receptor KIRDS1|killer-cell immunoglobulin-like receptor 20121209 -9606 3808 KIR2DS3 - NKAT7 HGNC:6335|MIM:604954|HPRD:05386 19 19q13.4 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 3 protein-coding KIR2DS3 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 3 O MHC class I NK cell receptor|NKAT-7|killer cell immunoglobulin-like receptor 2DS3|natural killer cell inhibitory receptor|natural killer-associated transcript 7 20121222 -9606 3809 KIR2DS4 XXbac-BPG230H20.3 CD158I|KIR1D|KIR412|KKA3|NKAT8 HGNC:6336|MIM:604955|Ensembl:ENSG00000221957|HPRD:05387|Vega:OTTHUMG00000065932 19 19q13.4 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 4 protein-coding KIR2DS4 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 4 O CD158 antigen-like family member I|KIR antigen 2DS4|MHC class I NK cell receptor|NKAT-8|P58 natural killer cell receptor clones CL-39/CL-17|killer cell immunoglobulin-like receptor 2DS4|killer inhibitory receptor 4-1-2|natural killer cell inhibitory receptor|natural killer-associated transcript 8|p58 NK receptor CL-39/CL-17 20121230 -9606 3810 KIR2DS5 XXbac-BCX195L8.6 CD158G|NKAT9 HGNC:6337|MIM:604956|HPRD:05388 19 19q13.4 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 5 protein-coding KIR2DS5 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 5 O CD158 antigen-like family member G|MHC class I NK cell receptor|NKAT-9|killer cell immunoglobulin-like receptor 2DS5|natural killer cell inhibitory receptor|natural killer-associated transcript 9 20121222 -9606 3811 KIR3DL1 XXbac-BCX195L8.4 CD158E1|KIR|KIR3DL1/S1|NKAT3|NKB1|NKB1B HGNC:6338|MIM:604946|Ensembl:ENSG00000167633|HPRD:09226|HPRD:10034|Vega:OTTHUMG00000065933 19 19q13.4 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 1 protein-coding KIR3DL1 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 1 O CD158 antigen-like family member E|HLA-BW4-specific inhibitory NK cell receptor|KIR antigen 3DL1|MHC class I NK cell receptor|NK-receptor|NKAT-3|killer Ig receptor|killer cell immunoglobulin-like receptor 3DL1|natural killer-associated transcript 3|p70 NK receptor CL-2/CL-11|p70 killer cell inhibitory receptor|p70 natural killer cell receptor clones CL-2/CL-11 20121230 -9606 3812 KIR3DL2 CU464063.2 CD158K|NKAT-4|NKAT4|NKAT4B|p140 HGNC:6339|MIM:604947|Ensembl:ENSG00000240403|HPRD:10384|Vega:OTTHUMG00000065935 19 19q13.4 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 2 protein-coding KIR3DL2 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 2 O CD158 antigen-like family member K|KIR antigen 3DL2|MHC class I NK cell receptor|killer Ig receptor|killer cell immunoglobulin-like receptor 3DL2|killer cell immunoglobulin-like receptor KIR3DL2|natural killer cell inhibitory receptor|natural killer-associated transcript 4|p70 NK receptor CL-5|p70 killer cell inhibitory receptor|p70 natural killer cell receptor clone CL-5 20121230 -9606 3813 KIR3DS1 - CD158E2|KIR-123FM|KIR-G1|NKAT10 HGNC:6340 19 19q13.4 killer cell immunoglobulin-like receptor, three domains, short cytoplasmic tail, 1 protein-coding KIR3DS1 killer cell immunoglobulin-like receptor, three domains, short cytoplasmic tail, 1 O MHC class I NK cell receptor|NKAT-10|killer Ig receptor|killer cell immunoglobulin-like receptor 3DS1|killer cell immunoglobulin-like receptor KIR3DS1|natural killer-associated transcript 10 20121222 -9606 3814 KISS1 PP5098 HH13|KiSS-1 HGNC:6341|MIM:603286|Ensembl:ENSG00000170498|HPRD:04475|Vega:OTTHUMG00000036060 1 1q32 KiSS-1 metastasis-suppressor protein-coding KISS1 KiSS-1 metastasis-suppressor O kisspeptin-1|malignant melanoma metastasis-suppressor|metastasis-suppressor KiSS-1|metastin 20121230 -9606 3815 KIT - C-Kit|CD117|PBT|SCFR HGNC:6342|MIM:164920|Ensembl:ENSG00000157404|HPRD:01287|Vega:OTTHUMG00000128713 4 4q11-q12 v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog protein-coding KIT v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog O mast/stem cell growth factor receptor Kit|p145 c-kit|piebald trait protein|proto-oncogene c-Kit|proto-oncogene tyrosine-protein kinase Kit|soluble KIT variant 1|tyrosine-protein kinase Kit|v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene-like protein 20121230 -9606 3816 KLK1 - KLKR|Klk6|hK1 HGNC:6357|MIM:147910|Ensembl:ENSG00000167748|HPRD:01003 19 19q13.3 kallikrein 1 protein-coding KLK1 kallikrein 1 O glandular kallikrein 1|kallikrein 1, renal/pancreas/salivary|kallikrein serine protease 1|kallikrein-1|kidney/pancreas/salivary gland kallikrein|tissue kallikrein 20121230 -9606 3817 KLK2 - KLK2A2|hGK-1|hK2 HGNC:6363|MIM:147960|Ensembl:ENSG00000167751|HPRD:01006 19 19q13.41 kallikrein-related peptidase 2 protein-coding KLK2 kallikrein-related peptidase 2 O glandular kallikrein 2|glandular kallikrein-1|kallikrein 2, prostatic|kallikrein-2|tissue kallikrein-2 20121230 -9606 3818 KLKB1 - KLK3|PPK HGNC:6371|MIM:229000|Ensembl:ENSG00000164344|HPRD:01971|Vega:OTTHUMG00000150347 4 4q35 kallikrein B, plasma (Fletcher factor) 1 protein-coding KLKB1 kallikrein B, plasma (Fletcher factor) 1 O Fletcher factor|kininogenin|plasma kallikrein|plasma kallikrein heavy chain|plasma kallikrein light chain|plasma prekallikrein 20121230 -9606 3820 KLRB1 - CD161|CLEC5B|NKR|NKR-P1|NKR-P1A|NKRP1A|hNKR-P1A HGNC:6373|MIM:602890|Ensembl:ENSG00000111796|HPRD:04201|Vega:OTTHUMG00000168581 12 12p13 killer cell lectin-like receptor subfamily B, member 1 protein-coding KLRB1 killer cell lectin-like receptor subfamily B, member 1 O C-type lectin domain family 5 member B|killer cell lectin-like receptor subfamily B member 1|natural killer cell surface protein P1A 20121230 -9606 3821 KLRC1 - CD159A|NKG2|NKG2A HGNC:6374|MIM:161555|Ensembl:ENSG00000134545|HPRD:01192|Vega:OTTHUMG00000168584 12 12p13 killer cell lectin-like receptor subfamily C, member 1 protein-coding KLRC1 killer cell lectin-like receptor subfamily C, member 1 O C-lectin type II protein|CD159 antigen-like family member A|NK cell receptor A|NKG2-1/B activating NK receptor|NKG2-A/B type II integral membrane protein|NKG2-A/B-activating NK receptor|NKG2-A/NKG2-B type II integral membrane protein|natural killer cell lectin|natural killer group protein 2 20121230 -9606 3822 KLRC2 - CD159c|NKG2-C|NKG2C HGNC:6375|MIM:602891|Ensembl:ENSG00000205809|HPRD:04202|Vega:OTTHUMG00000168532 12 12p13 killer cell lectin-like receptor subfamily C, member 2 protein-coding KLRC2 killer cell lectin-like receptor subfamily C, member 2 O CD159 antigen-like family member C|NK cell receptor C|NKG2-C type II integral membrane protein|NKG2-C-activating NK receptor 20121230 -9606 3823 KLRC3 - NKG2-E|NKG2E HGNC:6376|MIM:602892|Ensembl:ENSG00000205810|HPRD:04203|Vega:OTTHUMG00000167149 12 12p13 killer cell lectin-like receptor subfamily C, member 3 protein-coding KLRC3 killer cell lectin-like receptor subfamily C, member 3 O NK cell receptor E|NKG2-E type II integral membrane protein|NKG2-E-activating NK receptor 20121230 -9606 3824 KLRD1 - CD94 HGNC:6378|MIM:602894|Ensembl:ENSG00000134539|HPRD:04204|Vega:OTTHUMG00000168419 12 12p13 killer cell lectin-like receptor subfamily D, member 1 protein-coding KLRD1 killer cell lectin-like receptor subfamily D, member 1 O CD94 antigen|KP43|NK cell receptor|natural killer cells antigen CD94 20121230 -9606 3827 KNG1 - BDK|KNG HGNC:6383|MIM:612358|Ensembl:ENSG00000113889|HPRD:01970|Vega:OTTHUMG00000150348 3 3q27 kininogen 1 protein-coding KNG1 kininogen 1 O HMWK|alpha-2-thiol proteinase inhibitor|bradykinin|fitzgerald factor|high molecular weight kininogen|kininogen-1|williams-Fitzgerald-Flaujeac factor 20121230 -9606 3829 KNPEP - - HGNC:6385 - - lysyl aminopeptidase (aminopeptidase Co) protein-coding KNPEP lysyl aminopeptidase (aminopeptidase Co) O - 20080828 -9606 3831 KLC1 - KLC|KNS2|KNS2A HGNC:6387|MIM:600025|Ensembl:ENSG00000126214|Ensembl:ENSG00000256500|HPRD:02489|Vega:OTTHUMG00000169226|Vega:OTTHUMG00000169227 14 14q32.3 kinesin light chain 1 protein-coding KLC1 kinesin light chain 1 O KLC 1|kinesin 2 60/70kDa|medulloblastoma antigen MU-MB-2.50 20121230 -9606 3832 KIF11 - EG5|HKSP|KNSL1|MCLMR|TRIP5 HGNC:6388|MIM:148760|Ensembl:ENSG00000138160|HPRD:01023|Vega:OTTHUMG00000018761 10 10q24.1 kinesin family member 11 protein-coding KIF11 kinesin family member 11 O TR-interacting protein 5|TRIP-5|kinesin-like protein 1|kinesin-like protein KIF11|kinesin-like spindle protein HKSP|kinesin-related motor protein Eg5|thyroid receptor-interacting protein 5 20121230 -9606 3833 KIFC1 DAQB-126H3.5 HSET|KNSL2 HGNC:6389|MIM:603763|Ensembl:ENSG00000237649|Vega:OTTHUMG00000031209 6 6p21.3 kinesin family member C1 protein-coding KIFC1 kinesin family member C1 O kinesin-like 2|kinesin-like protein 2|kinesin-like protein KIFC1|kinesin-related protein HSET 20121230 -9606 3834 KIF25 RP11-164L23.3 KNSL3 HGNC:6390|MIM:603815|Ensembl:ENSG00000125337|HPRD:04818|Vega:OTTHUMG00000016035 6 6q27 kinesin family member 25 protein-coding KIF25 kinesin family member 25 O kinesin-like 3|kinesin-like protein 3|kinesin-like protein KIF25 20121230 -9606 3835 KIF22 - A-328A3.2|KID|KNSL4|OBP|OBP-1|OBP-2|SEMDJL2 HGNC:6391|MIM:603213|Ensembl:ENSG00000079616|HPRD:04445|Vega:OTTHUMG00000097771 16 16p11.2 kinesin family member 22 protein-coding KIF22 kinesin family member 22 O kinesin-like DNA-binding protein pseudogene|kinesin-like protein 4|kinesin-like protein KIF22|oriP binding protein|origin of plasmid DNA replication-binding protein 20121230 -9606 3836 KPNA1 - IPOA5|NPI-1|RCH2|SRP1 HGNC:6394|MIM:600686|Ensembl:ENSG00000114030|HPRD:02819|Vega:OTTHUMG00000159487 3 3q21 karyopherin alpha 1 (importin alpha 5) protein-coding KPNA1 karyopherin alpha 1 (importin alpha 5) O RAG cohort protein 2|SRP1-beta|importin alpha 5|importin subunit alpha-1|importin-alpha-S1|karyopherin subunit alpha-1|nucleoprotein interactor 1|recombination activating gene cohort 2 20121230 -9606 3837 KPNB1 - IMB1|IPO1|IPOB|Impnb|NTF97 HGNC:6400|MIM:602738|Ensembl:ENSG00000108424|HPRD:04114|Vega:OTTHUMG00000036957 17 17q21.32 karyopherin (importin) beta 1 protein-coding KPNB1 karyopherin (importin) beta 1 O PTAC97|importin 1|importin 90|importin beta-1 subunit|importin subunit beta-1|importin-90|karyopherin subunit beta-1|nuclear factor p97|pore targeting complex 97 kDa subunit 20121230 -9606 3838 KPNA2 - IPOA1|QIP2|RCH1|SRP1alpha HGNC:6395|MIM:600685|Ensembl:ENSG00000182481|HPRD:02818|Vega:OTTHUMG00000179784 17 17q24.2 karyopherin alpha 2 (RAG cohort 1, importin alpha 1) protein-coding KPNA2 karyopherin alpha 2 (RAG cohort 1, importin alpha 1) O RAG cohort 1|RAG cohort protein 1|SRP1-alpha|importin alpha 1|importin alpha 2|importin subunit alpha-2|importin-alpha-P1|karyopherin subunit alpha-2|pendulin 20121230 -9606 3839 KPNA3 RP11-432M24.3 IPOA4|SRP1|SRP1gamma|SRP4|hSRP1 HGNC:6396|MIM:601892|Ensembl:ENSG00000102753|HPRD:03536|Vega:OTTHUMG00000016922 13 13q14.3 karyopherin alpha 3 (importin alpha 4) protein-coding KPNA3 karyopherin alpha 3 (importin alpha 4) O SRP1-gamma|importin alpha 4|importin alpha Q2|importin alpha-3|importin subunit alpha-3|importin-alpha-Q2|karyopherin subunit alpha-3|qip2 20121230 -9606 3840 KPNA4 - IPOA3|QIP1|SRP3 HGNC:6397|MIM:602970|Ensembl:ENSG00000186432|HPRD:04275|Vega:OTTHUMG00000159033 3 3q25.33 karyopherin alpha 4 (importin alpha 3) protein-coding KPNA4 karyopherin alpha 4 (importin alpha 3) O importin alpha Q1|importin subunit alpha-4|karyopherin subunit alpha-4 20121230 -9606 3841 KPNA5 RP3-412I7.4 IPOA6|SRP6 HGNC:6398|MIM:604545|Ensembl:ENSG00000196911|HPRD:05179|Vega:OTTHUMG00000015448 6 6q22.1 karyopherin alpha 5 (importin alpha 6) protein-coding KPNA5 karyopherin alpha 5 (importin alpha 6) O importin alpha 6|importin subunit alpha-6|karyopherin subunit alpha-5 20121230 -9606 3842 TNPO1 - IPO2|KPNB2|MIP|MIP1|TRN HGNC:6401|MIM:602901|Ensembl:ENSG00000083312|HPRD:04210|Vega:OTTHUMG00000100967 5 5q13.2 transportin 1 protein-coding TNPO1 transportin 1 O M9 region interaction protein|importin 2|importin beta 2|importin beta-2|karyopherin (importin) beta 2|karyopherin beta-2|transportin-1 20121230 -9606 3843 IPO5 RP11-72J7.1 IMB3|KPNB3|Pse1|RANBP5|imp5 HGNC:6402|MIM:602008|Ensembl:ENSG00000065150|HPRD:03597|Vega:OTTHUMG00000017244 13 13q32.2 importin 5 protein-coding IPO5 importin 5 O RAN binding protein 5|Ran_GTP binding protein 5|importin beta-3 subunit|importin subunit beta-3|importin-5|karyopherin (importin) beta 3|karyopherin beta-3|ran-binding protein 5 20121230 -9606 3844 KRASP1 - KRAS1P|c-Kras1 HGNC:6406 6 6p12-p11 v-Ki-ras2 Kirsten rat sarcoma viral oncogene homolog pseudogene 1 pseudo KRASP1 v-Ki-ras2 Kirsten rat sarcoma viral oncogene homolog pseudogene 1 O - 20121230 -9606 3845 KRAS - C-K-RAS|K-RAS2A|K-RAS2B|K-RAS4A|K-RAS4B|KI-RAS|KRAS1|KRAS2|NS|NS3|RASK2 HGNC:6407|MIM:190070|Ensembl:ENSG00000133703|HPRD:01817|Vega:OTTHUMG00000171193 12 12p12.1 v-Ki-ras2 Kirsten rat sarcoma viral oncogene homolog protein-coding KRAS v-Ki-ras2 Kirsten rat sarcoma viral oncogene homolog O GTPase KRas|K-Ras 2|K-ras p21 protein|PR310 c-K-ras oncogene|c-Ki-ras|c-Kirsten-ras protein|cellular c-Ki-ras2 proto-oncogene|oncogene KRAS2|transforming protein p21|v-Ki-ras2 Kirsten rat sarcoma 2 viral oncogene homolog 20121230 -9606 3846 KRTAP5-9 - KRN1|KRTAP5-1|KRTAP5.9 HGNC:23604|MIM:148021|Ensembl:ENSG00000254997|HPRD:01008|Vega:OTTHUMG00000167263 11 11q13.5 keratin associated protein 5-9 protein-coding KRTAP5-9 keratin associated protein 5-9 O UHS KerA|UHS keratin A|keratin, cuticle, ultrahigh sulfur 1|keratin, cuticle, ultrahigh sulphur 1|keratin, ultra high-sulfur matrix protein A|keratin-associated protein 5-9|keratin-associated protein 5.9|ultrahigh sulfur keratin-associated protein 5.9 20121230 -9606 3848 KRT1 - CK1|EHK|EHK1|EPPK|K1|KRT1A|NEPPK HGNC:6412|MIM:139350|Ensembl:ENSG00000167768|HPRD:00763|Vega:OTTHUMG00000169749 12 12q13.13 keratin 1 protein-coding KRT1 keratin 1 O 67 kDa cytokeratin|CK-1|cytokeratin 1|cytokeratin-1|epidermolytic hyperkeratosis 1|hair alpha protein|keratin, type II cytoskeletal 1|type-II keratin Kb1 20121230 -9606 3849 KRT2 - CK-2e|K2e|KRT2A|KRT2E|KRTE HGNC:6439|MIM:600194|Ensembl:ENSG00000172867|HPRD:02560|Vega:OTTHUMG00000169748 12 12q13.13 keratin 2 protein-coding KRT2 keratin 2 O cytokeratin-2e|epithelial keratin-2e|keratin, type II cytoskeletal 2 epidermal|keratin-2 epidermis|keratin-2e|type-II keratin Kb2 20121230 -9606 3850 KRT3 - CK3|K3 HGNC:6440|MIM:148043|Ensembl:ENSG00000186442|HPRD:01013|Vega:OTTHUMG00000169799 12 12q13.13 keratin 3 protein-coding KRT3 keratin 3 O 65 kDa cytokeratin|CK-3|cytokeratin 3|cytokeratin-3|keratin, type II cytoskeletal 3|type-II keratin Kb3 20121230 -9606 3851 KRT4 - CK-4|CK4|CYK4|K4 HGNC:6441|MIM:123940|Ensembl:ENSG00000170477|HPRD:00478|Vega:OTTHUMG00000169800 12 12q13.13 keratin 4 protein-coding KRT4 keratin 4 O cytokeratin 4|keratin, type II cytoskeletal 4|type-II keratin Kb4 20121230 -9606 3852 KRT5 - CK5|DDD|EBS2|K5|KRT5A HGNC:6442|MIM:148040|Ensembl:ENSG00000186081|HPRD:01010|Vega:OTTHUMG00000169657 12 12q13.13 keratin 5 protein-coding KRT5 keratin 5 O 58 kda cytokeratin|CK-5|cytokeratin-5|epidermolysis bullosa simplex 2 Dowling-Meara/Kobner/Weber-Cockayne types|keratin 5 (epidermolysis bullosa simplex, Dowling-Meara/Kobner/Weber-Cockayne types)|keratin, type II cytoskeletal 5|type-II keratin Kb5 20121230 -9606 3853 KRT6A - CK6A|CK6C|CK6D|K6A|K6C|K6D|KRT6C|KRT6D HGNC:6443|MIM:148041|Ensembl:ENSG00000205420|HPRD:01011|HPRD:17246|Vega:OTTHUMG00000169597 12 12q13.13 keratin 6A protein-coding KRT6A keratin 6A O cytokeratin 6A|cytokeratin 6C|cytokeratin 6D|keratin, epidermal type II, K6A|keratin, type II cytoskeletal 6A|type-II keratin Kb6 20121230 -9606 3854 KRT6B - CK-6B|CK6B|K6B|KRTL1|PC2 HGNC:6444|MIM:148042|Ensembl:ENSG00000185479|HPRD:01012|Vega:OTTHUMG00000169593 12 12q13.13 keratin 6B protein-coding KRT6B keratin 6B O cytokeratin 6B|cytokeratin-6B|keratin, epidermal, type II, K6B|keratin, type II cytoskeletal 6B|keratin-6B|keratin-like 1 (a type II keratin sequence)|type-II keratin Kb10 20121230 -9606 3855 KRT7 - CK7|K2C7|K7|SCL HGNC:6445|MIM:148059|Ensembl:ENSG00000135480|HPRD:01014|Vega:OTTHUMG00000169580 12 12q13.13 keratin 7 protein-coding KRT7 keratin 7 O CK-7|cytokeratin 7|cytokeratin-7|keratin, 55K type II cytoskeletal|keratin, simple epithelial type I, K7|keratin, type II cytoskeletal 7|keratin-7|sarcolectin|type II mesothelial keratin K7|type-II keratin Kb7 20121230 -9606 3856 KRT8 - CARD2|CK-8|CK8|CYK8|K2C8|K8|KO HGNC:6446|MIM:148060|Ensembl:ENSG00000170421|HPRD:01015|Vega:OTTHUMG00000169881 12 12q13 keratin 8 protein-coding KRT8 keratin 8 O cytokeratin 8|cytokeratin-8|keratin, type II cytoskeletal 8|type-II keratin Kb8 20121230 -9606 3857 KRT9 - CK-9|EPPK|K9 HGNC:6447|MIM:607606|Ensembl:ENSG00000171403|HPRD:06351|Vega:OTTHUMG00000133599 17 17q21.1-q21.2 keratin 9 protein-coding KRT9 keratin 9 O cytokeratin 9|cytokeratin-9|keratin, type I cytoskeletal 9|keratin-9|type I cytoskeletal 9 20121230 -9606 3858 KRT10 - BCIE|BIE|CK10|EHK|K10|KPP HGNC:6413|MIM:148080|Ensembl:ENSG00000186395|HPRD:01021|Vega:OTTHUMG00000133368 17 17q21 keratin 10 protein-coding KRT10 keratin 10 O CK-10|cytokeratin 10|keratin, type I cytoskeletal 10|keratin-10 20121230 -9606 3859 KRT12 - K12 HGNC:6414|MIM:601687|Ensembl:ENSG00000187242|HPRD:03405|Vega:OTTHUMG00000133369 17 17q12 keratin 12 protein-coding KRT12 keratin 12 O CK-12|cytokeratin-12|keratin, type I cytoskeletal 12|keratin-12 20121230 -9606 3860 KRT13 - CK13|K13 HGNC:6415|MIM:148065|Ensembl:ENSG00000171401|HPRD:01016|Vega:OTTHUMG00000133434 17 17q12-q21.2 keratin 13 protein-coding KRT13 keratin 13 O CK-13|cytokeratin 13|cytokeratin-13|keratin, type I cytoskeletal 13|keratin-13 20121230 -9606 3861 KRT14 - CK14|EBS3|EBS4|K14|NFJ HGNC:6416|MIM:148066|Ensembl:ENSG00000186847|HPRD:01017|Vega:OTTHUMG00000133426 17 17q12-q21 keratin 14 protein-coding KRT14 keratin 14 O CK-14|cytokeratin 14|cytokeratin-14|keratin 14 (epidermolysis bullosa simplex, Dowling-Meara, Koebner)|keratin, type I cytoskeletal 14|keratin-14 20121230 -9606 3866 KRT15 - CK15|K15|K1CO HGNC:6421|MIM:148030|Ensembl:ENSG00000171346|HPRD:01009|Vega:OTTHUMG00000133435 17 17q21.2 keratin 15 protein-coding KRT15 keratin 15 O CK-15|cytokeratin 15|cytokeratin-15|keratin, type I cytoskeletal 15|keratin-15, basic|keratin-15, beta|type I cytoskeletal 15 20121230 -9606 3868 KRT16 - CK16|FNEPPK|K16|K1CP|KRT16A|NEPPK HGNC:6423|MIM:148067|Ensembl:ENSG00000186832|HPRD:01018|Vega:OTTHUMG00000133495 17 17q21.2 keratin 16 protein-coding KRT16 keratin 16 O CK-16|cytokeratin 16|cytokeratin-16|focal non-epidermolytic palmoplantar keratoderma|keratin, type I cytoskeletal 16|keratin-16 20121230 -9606 3872 KRT17 - K17|PC|PC2|PCHC1 HGNC:6427|MIM:148069|Ensembl:ENSG00000128422|HPRD:01019|Vega:OTTHUMG00000133505 17 17q21.2 keratin 17 protein-coding KRT17 keratin 17 O 39.1|CK-17|cytokeratin-17|keratin 17 epitope S1|keratin 17 epitope S2|keratin 17 epitope S4|keratin, type I cytoskeletal 17|keratin-17 20121230 -9606 3875 KRT18 PIG46 CYK18|K18 HGNC:6430|MIM:148070|Ensembl:ENSG00000111057|HPRD:01020|Vega:OTTHUMG00000169882 12 12q13 keratin 18 protein-coding KRT18 keratin 18 O CK-18|cell proliferation-inducing gene 46 protein|cell proliferation-inducing protein 46|cytokeratin 18|cytokeratin-18|keratin, type I cytoskeletal 18|keratin-18 20121230 -9606 3876 KRT18P11 - KRT18L1 HGNC:6431 X Xq21.31 keratin 18 pseudogene 11 pseudo KRT18P11 keratin 18 pseudogene 11 O - 20121230 -9606 3879 KRT18P1 - dJ25J6.3 HGNC:6434 6 6p21.2 keratin 18 pseudogene 1 pseudo KRT18P1 keratin 18 pseudogene 1 O - 20121230 -9606 3880 KRT19 - CK19|K19|K1CS HGNC:6436|MIM:148020|Ensembl:ENSG00000171345|HPRD:01007|Vega:OTTHUMG00000133422 17 17q21.2 keratin 19 protein-coding KRT19 keratin 19 O 40-kDa keratin intermediate filament|CK-19|cytokeratin 19|cytokeratin-19|keratin, type I cytoskeletal 19|keratin, type I, 40-kd|keratin-19 20121230 -9606 3881 KRT31 - HA1|Ha-1|KRTHA1|hHa1 HGNC:6448|MIM:601077|Ensembl:ENSG00000094796|HPRD:03047|Vega:OTTHUMG00000133423 17 17q12-q21 keratin 31 protein-coding KRT31 keratin 31 O K31|hair keratin, type I Ha1|hard keratin, type I, 1|keratin, hair, acidic,1|keratin, type I cuticular Ha1|keratin-31 20121230 -9606 3882 KRT32 - HA2|HKA2|KRTHA2|hHa2 HGNC:6449|MIM:602760|Ensembl:ENSG00000108759|HPRD:04134|Vega:OTTHUMG00000133430 17 17q21.2 keratin 32 protein-coding KRT32 keratin 32 O K32|hair keratin, type I Ha2|hard keratin, type I, 2|keratin, hair, acidic, 2|keratin, type I cuticular Ha2|keratin-32|type I cuticular hair keratin 20121230 -9606 3883 KRT33A - HA3I|Ha-3I|K33A|KRTHA3A|Krt1-3|hHa3-I HGNC:6450|MIM:602761|Ensembl:ENSG00000006059|HPRD:04135|Vega:OTTHUMG00000133432 17 17q12-q21 keratin 33A protein-coding KRT33A keratin 33A O hair keratin, type I Ha3-I|hard keratin, type I,3I|keratin, hair, acidic, 3A|keratin, type I cuticular Ha3-I 20121230 -9606 3884 KRT33B - HA3II|Ha-3II|K33B|KRTHA3A|KRTHA3B|hHa3-II HGNC:6451|MIM:602762|Ensembl:ENSG00000131738|HPRD:04136|Vega:OTTHUMG00000133429 17 17q21.2 keratin 33B protein-coding KRT33B keratin 33B O hair keratin, type I Ha3-II|hard keratin, type I, 3II|keratin, hair, acidic, 3B|keratin, type I cuticular Ha3-II|type I hair keratin 3B 20121230 -9606 3885 KRT34 - HA4|Ha-4|KRTHA4|hHa4 HGNC:6452|MIM:602763|Ensembl:ENSG00000131737|HPRD:04137|Vega:OTTHUMG00000133436 17 17q21.2 keratin 34 protein-coding KRT34 keratin 34 O K34|hair keratin, type I Ha4|hard keratin, type I, 4|keratin, hair, acidic, 4|keratin, type I cuticular Ha4|keratin-34 20121230 -9606 3886 KRT35 - HA5|Ha-5|KRTHA5|hHa5 HGNC:6453|MIM:602764|Ensembl:ENSG00000197079|HPRD:04138|Vega:OTTHUMG00000133425 17 17q21.2 keratin 35 protein-coding KRT35 keratin 35 O HHa5 hair keratin type I intermediate filament|K35|hair keratin, type I Ha5|hard keratin, type I, 5|keratin, hair, acidic, 5|keratin, type I cuticular Ha5|keratin-35 20121230 -9606 3887 KRT81 - HB1|Hb-1|KRTHB1|MLN137|ghHkb1|hHAKB2-1 HGNC:6458|MIM:602153|Ensembl:ENSG00000205426|HPRD:03691|Vega:OTTHUMG00000167574 12 12q13 keratin 81 protein-coding KRT81 keratin 81 O K81|MLN 137|ghHb1|hair keratin K2.9|hard keratin, type II, 1|keratin, hair, basic, 1|keratin, type II cuticular Hb1|keratin-81|metastatic lymph node 137 gene protein|type II hair keratin Hb1|type-II keratin Kb21 20121230 -9606 3888 KRT82 - HB2|Hb-2|KRTHB2 HGNC:6459|MIM:601078|Ensembl:ENSG00000161850|HPRD:03048|Vega:OTTHUMG00000169636 12 12q13 keratin 82 protein-coding KRT82 keratin 82 O K82|hard keratin, type II, 2|keratin, hair, basic, 2|keratin, type II cuticular Hb2|keratin-82|type II hair keratin Hb2|type-II keratin Kb22 20121230 -9606 3889 KRT83 - HB3|Hb-3|KRTHB3 HGNC:6460|MIM:602765|Ensembl:ENSG00000170523|HPRD:09097|Vega:OTTHUMG00000169632 12 12q13 keratin 83 protein-coding KRT83 keratin 83 O K83|hHb3|hair keratin K2.10|hard keratin, type II, 3|keratin, hair, basic, 3|keratin, type II cuticular Hb3|keratin-83|type II hair keratin Hb3|type-II keratin Kb23 20121230 -9606 3890 KRT84 - HB4|KRTHB4 HGNC:6461|MIM:602766|Ensembl:ENSG00000161849|HPRD:09098|Vega:OTTHUMG00000169634 12 12q13 keratin 84 protein-coding KRT84 keratin 84 O K84|hard keratin, type II, 4|keratin, hair, basic, 4|keratin, type II cuticular Hb4|keratin-84|type II hair keratin 4|type II hair keratin Hb4|type-II keratin Kb24 20121230 -9606 3891 KRT85 - ECTD4|HB5|Hb-5|KRTHB5|hHb5 HGNC:6462|MIM:602767|Ensembl:ENSG00000135443|HPRD:04139|Vega:OTTHUMG00000169633 12 12q13 keratin 85 protein-coding KRT85 keratin 85 O K85|hair keratin K2.12|hard keratin, type II, 5|keratin, hair, basic, 5|keratin, type II cuticular Hb5|keratin-85|type II hair keratin Hb5|type-II keratin Kb25 20121230 -9606 3892 KRT86 - HB6|Hb1|KRTHB1|KRTHB6|MNX|hHb6 HGNC:6463|MIM:601928|Ensembl:ENSG00000170442|Ensembl:ENSG00000258832|HPRD:03567|Vega:OTTHUMG00000169582 12 12q13 keratin 86 protein-coding KRT86 keratin 86 O K86|hair keratin K2.11|hard keratin, type II, 6|keratin protein HB6|keratin, hair, basic, 6 (monilethrix)|keratin, type II cuticular Hb6|keratin-86|type II hair keratin Hb6|type-II keratin Kb26 20121230 -9606 3895 KTN1 - CG1|KNT|MU-RMS-40.19 HGNC:6467|MIM:600381|Ensembl:ENSG00000126777|HPRD:02661|Vega:OTTHUMG00000140312 14 14q22.1 kinectin 1 (kinesin receptor) protein-coding KTN1 kinectin 1 (kinesin receptor) O CG-1 antigen|kinectin|kinesin receptor 20121230 -9606 3896 KWE - - HGNC:6468|MIM:148370 8 8p23-p22 keratolytic winter erythema (Oudtshoorn skin disease) unknown KWE keratolytic winter erythema (Oudtshoorn skin disease) O - 20120622 -9606 3897 L1CAM - CAML1|CD171|HSAS|HSAS1|MASA|MIC5|N-CAM-L1|N-CAML1|NCAM-L1|S10|SPG1 HGNC:6470|MIM:308840|Ensembl:ENSG00000198910|HPRD:02394|Vega:OTTHUMG00000024221 X Xq28 L1 cell adhesion molecule protein-coding L1CAM L1 cell adhesion molecule O antigen identified by monoclonal antibody R1|neural cell adhesion molecule L1 20121230 -9606 3898 LAD1 - LadA HGNC:6472|MIM:602314|Ensembl:ENSG00000159166|HPRD:03815|Vega:OTTHUMG00000035737 1 1q25.1-q32.3 ladinin 1 protein-coding LAD1 ladinin 1 O lad-1|ladinin-1|linear IgA bullous dermatosis antigen|linear IgA disease antigen homolog 20121230 -9606 3899 AFF3 - LAF4|MLLT2-like HGNC:6473|MIM:601464|Ensembl:ENSG00000144218|HPRD:03272|Vega:OTTHUMG00000153011 2 2q11.2-q12 AF4/FMR2 family, member 3 protein-coding AFF3 AF4/FMR2 family, member 3 O AF4/FMR2 family member 3|MLLT2-related protein|lymphoid nuclear protein 4|lymphoid nuclear protein related to AF4|protein LAF-4 20121230 -9606 3902 LAG3 - CD223 HGNC:6476|MIM:153337|Ensembl:ENSG00000089692|HPRD:01077|Vega:OTTHUMG00000169197 12 12p13.32 lymphocyte-activation gene 3 protein-coding LAG3 lymphocyte-activation gene 3 O lymphocyte activation gene 3 protein 20121230 -9606 3903 LAIR1 XXbac-BCX403H19.4 CD305|LAIR-1 HGNC:6477|MIM:602992|Ensembl:ENSG00000167613|HPRD:04292|Vega:OTTHUMG00000065545 19 19q13.4 leukocyte-associated immunoglobulin-like receptor 1 protein-coding LAIR1 leukocyte-associated immunoglobulin-like receptor 1 O hLAIR1|leukocyte-associated Ig-like receptor 1 20121230 -9606 3904 LAIR2 XXbac-BCX535A19.6 CD306 HGNC:6478|MIM:602993|Ensembl:ENSG00000167618|HPRD:04293|Vega:OTTHUMG00000065697 19 19q13.4 leukocyte-associated immunoglobulin-like receptor 2 protein-coding LAIR2 leukocyte-associated immunoglobulin-like receptor 2 O LAIR-2|leukocyte-associated Ig-like receptor 2|leukocyte-associated Ig-like receptor-2 20121230 -9606 3905 LAKLG - LAKL HGNC:6479|MIM:153435 6 - lymphokine-activated killer cell ligand unknown LAKLG lymphokine-activated killer cell ligand O - 20080828 -9606 3906 LALBA - - HGNC:6480|MIM:149750|Ensembl:ENSG00000167531|HPRD:01024|Vega:OTTHUMG00000170391 12 12q13 lactalbumin, alpha- protein-coding LALBA lactalbumin, alpha- O alpha-lactalbumin|lactose synthase B protein|lysozyme-like protein 7 20121230 -9606 3908 LAMA2 RP1-69D17.2 LAMM HGNC:6482|MIM:156225|Ensembl:ENSG00000196569|HPRD:01125|Vega:OTTHUMG00000015545 6 6q22-q23 laminin, alpha 2 protein-coding LAMA2 laminin, alpha 2 O laminin M chain|laminin subunit alpha-2|laminin-12 subunit alpha|laminin-2 subunit alpha|laminin-4 subunit alpha|merosin heavy chain 20121230 -9606 3909 LAMA3 - BM600|E170|LAMNA|LOCS|lama3a HGNC:6483|MIM:600805|Ensembl:ENSG00000053747|HPRD:02883|Vega:OTTHUMG00000131874 18 18q11.2 laminin, alpha 3 protein-coding LAMA3 laminin, alpha 3 O BM600 150kD subunit|epiligrin 170 kda subunit|epiligrin alpha 3 subunit|epiligrin subunit alpha|kalinin 165kD subunit|kalinin subunit alpha|laminin subunit alpha-3|laminin, alpha 3 (nicein (150kD), kalinin (165kD), BM600 (150kD), epilegrin)|laminin-5 alpha 3 chain|laminin-5 subunit alpha|laminin-6 subunit alpha|laminin-7 subunit alpha|nicein 150kD subunit|nicein subunit alpha 20121230 -9606 3910 LAMA4 RP1-142L7.4 LAMA3|LAMA4*-1 HGNC:6484|MIM:600133|Ensembl:ENSG00000112769|HPRD:02532|Vega:OTTHUMG00000015386 6 6q21 laminin, alpha 4 protein-coding LAMA4 laminin, alpha 4 O laminin alpha 4 chain|laminin subunit alpha-4 20121230 -9606 3911 LAMA5 RP11-157P1.6 - HGNC:6485|MIM:601033|Ensembl:ENSG00000130702|HPRD:03020|Vega:OTTHUMG00000032908 20 20q13.2-q13.3 laminin, alpha 5 protein-coding LAMA5 laminin, alpha 5 O laminin alpha-5 chain|laminin subunit alpha-5|laminin-10 subunit alpha|laminin-11 subunit alpha|laminin-15 subunit alpha 20121230 -9606 3912 LAMB1 - CLM HGNC:6486|MIM:150240|Ensembl:ENSG00000091136|HPRD:01029|Vega:OTTHUMG00000149966 7 7q22 laminin, beta 1 protein-coding LAMB1 laminin, beta 1 O laminin B1 chain|laminin subunit beta-1 20121230 -9606 3913 LAMB2 - LAMS|NPHS5 HGNC:6487|MIM:150325|Ensembl:ENSG00000172037|HPRD:01034|Vega:OTTHUMG00000156807 3 3p21 laminin, beta 2 (laminin S) protein-coding LAMB2 laminin, beta 2 (laminin S) O S-LAM beta|S-laminin subunit beta|laminin B1s chain|laminin S|laminin subunit beta-2 20121230 -9606 3914 LAMB3 RP1-272L16.3 BM600-125KDA|LAM5|LAMNB1 HGNC:6490|MIM:150310|Ensembl:ENSG00000196878|HPRD:01032|Vega:OTTHUMG00000036360 1 1q32 laminin, beta 3 protein-coding LAMB3 laminin, beta 3 O epiligrin subunit bata|kalinin B1 chain|kalinin subunit beta|kalinin-140kDa|laminin B1k chain|laminin S B3 chain|laminin subunit beta-3|laminin, beta 3 (nicein (125kD), kalinin (140kD), BM600 (125kD))|laminin-5 subunit beta|nicein subunit beta|nicein-125kDa 20121230 -9606 3915 LAMC1 RP11-181K3.1 LAMB2 HGNC:6492|MIM:150290|Ensembl:ENSG00000135862|HPRD:01030|Vega:OTTHUMG00000035418 1 1q31 laminin, gamma 1 (formerly LAMB2) protein-coding LAMC1 laminin, gamma 1 (formerly LAMB2) O S-LAM gamma|S-laminin subunit gamma|laminin B2 chain|laminin subunit gamma-1|laminin-10 subunit gamma|laminin-11 subunit gamma|laminin-2 subunit gamma|laminin-3 subunit gamma|laminin-4 subunit gamma|laminin-6 subunit gamma|laminin-7 subunit gamma|laminin-8 subunit gamma|laminin-9 subunit gamma 20121230 -9606 3916 LAMP1 - CD107a|LAMPA|LGP120 HGNC:6499|MIM:153330|Ensembl:ENSG00000185896|HPRD:01076|Vega:OTTHUMG00000017380 13 13q34 lysosomal-associated membrane protein 1 protein-coding LAMP1 lysosomal-associated membrane protein 1 O CD107 antigen-like family member A|LAMP-1|lysosome-associated membrane glycoprotein 1|lysosome-associated membrane protein 1 20121230 -9606 3918 LAMC2 - B2T|BM600|CSF|EBR2|EBR2A|LAMB2T|LAMNB2 HGNC:6493|MIM:150292|Ensembl:ENSG00000058085|HPRD:01031|Vega:OTTHUMG00000035520 1 1q25-q31 laminin, gamma 2 protein-coding LAMC2 laminin, gamma 2 O BM600-100kDa|CSF 140 kDa subunit|cell-scattering factor 140 kDa subunit|epiligrin subunit gamma|kalinin subunit gamma|ladsin 140 kDa subunit|laminin B2t chain|laminin subunit gamma-2|large adhesive scatter factor 140 kDa subunit|nicein subunit gamma 20121230 -9606 3920 LAMP2 - CD107b|LAMP-2|LAMPB|LGP110 HGNC:6501|MIM:309060|Ensembl:ENSG00000005893|HPRD:02396|Vega:OTTHUMG00000022301 X Xq24 lysosomal-associated membrane protein 2 protein-coding LAMP2 lysosomal-associated membrane protein 2 O CD107 antigen-like family member B|lysosome-associated membrane glycoprotein 2|lysosome-associated membrane protein 2 20121230 -9606 3921 RPSA - 37LRP|67LR|LAMBR|LAMR1|LBP|LBP/p40|LRP|LRP/LR|NEM/1CHD4|SA|lamR|p40 HGNC:6502|MIM:150370|Ensembl:ENSG00000168028|HPRD:01038|Vega:OTTHUMG00000131296 3 3p22.2 ribosomal protein SA protein-coding RPSA ribosomal protein SA O 37 kDa laminin receptor|37/67 kDa laminin receptor|40S ribosomal protein SA|67 kDa laminin receptor|67kD, ribosomal protein SA|colon carcinoma laminin-binding protein|laminin binding protein|laminin receptor 1 (67kD, ribosomal protein SA)|laminin-binding protein precursor p40|multidrug resistance-associated protein MGr1-Ag 20121230 -9606 3923 RPSAP13 - LAMR1P13|LAMRL3|LAMRP3|RPSA_20_1366 HGNC:6505 14 14q22.3 ribosomal protein SA pseudogene 13 pseudo RPSAP13 ribosomal protein SA pseudogene 13 O - 20121230 -9606 3924 RPSAP14 - LAMR1P14|LAMRL4|LAMRP4 HGNC:6506 X Xq13.2 ribosomal protein SA pseudogene 14 pseudo RPSAP14 ribosomal protein SA pseudogene 14 O - 20121230 -9606 3925 STMN1 RP1-125I3.5 C1orf215|LAP18|Lag|OP18|PP17|PP19|PR22|SMN HGNC:6510|MIM:151442|Ensembl:ENSG00000117632|HPRD:01047|Vega:OTTHUMG00000007389 1 1p36.11 stathmin 1 protein-coding STMN1 stathmin 1 O leukemia-associated phosphoprotein p18|metablastin|oncoprotein 18|phosphoprotein 19|phosphoprotein p19|prosolin|stathmin|stathmin 1/oncoprotein 18|transmembrane protein C1orf215 20121230 -9606 3927 LASP1 - Lasp-1|MLN50 HGNC:6513|MIM:602920|Ensembl:ENSG00000002834|HPRD:04229|Vega:OTTHUMG00000133182 17 17q11-q21.3 LIM and SH3 protein 1 protein-coding LASP1 LIM and SH3 protein 1 O LIM and SH3 domain protein 1|metastatic lymph node gene 50 protein 20121230 -9606 3929 LBP - BPIFD2 HGNC:6517|MIM:151990|Ensembl:ENSG00000129988|HPRD:07175|Vega:OTTHUMG00000032447 20 20q11.23 lipopolysaccharide binding protein protein-coding LBP lipopolysaccharide binding protein O BPI fold containing family D, member 2|LPS-binding protein|lipopolysaccharide-binding protein 20121230 -9606 3930 LBR PRO0650 DHCR14B|LMN2R|PHA HGNC:6518|MIM:600024|Ensembl:ENSG00000143815|HPRD:02488|Vega:OTTHUMG00000037520 1 1q42.1 lamin B receptor protein-coding LBR lamin B receptor O integral nuclear envelope inner membrane protein|lamin-B receptor 20121230 -9606 3931 LCAT - - HGNC:6522|MIM:606967|Ensembl:ENSG00000213398|HPRD:06098|Vega:OTTHUMG00000137551 16 16q22.1 lecithin-cholesterol acyltransferase protein-coding LCAT lecithin-cholesterol acyltransferase O phosphatidylcholine-sterol acyltransferase|phospholipid-cholesterol acyltransferase 20121230 -9606 3932 LCK RP4-675E8.4 LSK|YT16|p56lck|pp58lck HGNC:6524|MIM:153390|Ensembl:ENSG00000182866|HPRD:01080|Vega:OTTHUMG00000007463 1 1p34.3 lymphocyte-specific protein tyrosine kinase protein-coding LCK lymphocyte-specific protein tyrosine kinase O T-lymphocyte specific protein tyrosine kinase p56lck|leukocyte C-terminal Src kinase|lymphocyte cell-specific protein-tyrosine kinase|p56(LSTRA) protein-tyrosine kinase|proto-oncogene tyrosine-protein kinase LCK|t cell-specific protein-tyrosine kinase|tyrosine-protein kinase Lck 20121230 -9606 3933 LCN1 - PMFA|TLC|TP|VEGP HGNC:6525|MIM:151675|Ensembl:ENSG00000160349|HPRD:01059|Vega:OTTHUMG00000020908 9 9q34 lipocalin 1 protein-coding LCN1 lipocalin 1 O VEG protein|Von Ebner gland protein|lipocalin 1 (tear prealbumin)|lipocalin-1|protein migrating faster than albumin|tear prealbumin 20121230 -9606 3934 LCN2 RP11-395P17.6 24p3|MSFI|NGAL HGNC:6526|MIM:600181|Ensembl:ENSG00000148346|HPRD:02551|Vega:OTTHUMG00000020734 9 9q34 lipocalin 2 protein-coding LCN2 lipocalin 2 O 25 kDa alpha-2-microglobulin-related subunit of MMP-9|lipocalin-2|migration-stimulating factor inhibitor|neutrophil gelatinase-associated lipocalin|oncogene 24p3|p25|siderocalin LCN2 20121230 -9606 3935 LCO - - HGNC:6527|MIM:165320 2 2q14-q21 liver cancer oncogene protein-coding LCO liver cancer oncogene O - 20080828 -9606 3936 LCP1 RP11-139H14.1 CP64|L-PLASTIN|LC64P|LPL|PLS2 HGNC:6528|MIM:153430|Ensembl:ENSG00000136167|HPRD:01082|Vega:OTTHUMG00000016864 13 13q14.3 lymphocyte cytosolic protein 1 (L-plastin) protein-coding LCP1 lymphocyte cytosolic protein 1 (L-plastin) O L-plastin (Lymphocyte cytosolic protein 1) (LCP-1) (LC64P)|LCP-1|Lymphocyte cytosolic protein-1 (plasmin)|bA139H14.1 (lymphocyte cytosolic protein 1 (L-plastin))|plastin 2|plastin-2 20121230 -9606 3937 LCP2 - SLP-76|SLP76 HGNC:6529|MIM:601603|Ensembl:ENSG00000043462|HPRD:03362|Vega:OTTHUMG00000163121 5 5q35.1 lymphocyte cytosolic protein 2 (SH2 domain containing leukocyte protein of 76kDa) protein-coding LCP2 lymphocyte cytosolic protein 2 (SH2 domain containing leukocyte protein of 76kDa) O 76 kDa tyrosine phosphoprotein|SH2 domain-containing leukocyte protein of 76 kDa|SH2 domain-containing leukocyte protein of 76kD|SLP-76 tyrosine phosphoprotein|lymphocyte cytosolic protein 2 20121230 -9606 3938 LCT - LAC|LPH|LPH1 HGNC:6530|MIM:603202|Ensembl:ENSG00000115850|HPRD:04437|Vega:OTTHUMG00000131738 2 2q21 lactase protein-coding LCT lactase O lactase-glycosylceramidase|lactase-phlorizin hydrolase|lactase-phlorizin hydrolase-1 20121230 -9606 3939 LDHA PIG19 GSD11|LDH1|LDHM HGNC:6535|MIM:150000|Ensembl:ENSG00000134333|HPRD:01025|Vega:OTTHUMG00000167721 11 11p15.4 lactate dehydrogenase A protein-coding LDHA lactate dehydrogenase A O L-lactate dehydrogenase A chain|LDH muscle subunit|LDH-A|LDH-M|cell proliferation-inducing gene 19 protein|lactate dehydrogenase M|proliferation-inducing gene 19|renal carcinoma antigen NY-REN-59 20121230 -9606 3940 LDHAP1 - LDHAL1 HGNC:6536 4 4p16.2 lactate dehydrogenase A pseudogene 1 pseudo LDHAP1 lactate dehydrogenase A pseudogene 1 O - 20121230 -9606 3945 LDHB - LDH-B|LDH-H|LDHBD|TRG-5 HGNC:6541|MIM:150100|Ensembl:ENSG00000111716|HPRD:01026|Vega:OTTHUMG00000133760 12 12p12.2-p12.1 lactate dehydrogenase B protein-coding LDHB lactate dehydrogenase B O L-lactate dehydrogenase B chain|LDH heart subunit|lactate dehydrogenase H chain|renal carcinoma antigen NY-REN-46 20121230 -9606 3947 LDHBP2 - LDHBL2|LDHBP HGNC:6543 X Xq13.3 lactate dehydrogenase B pseudogene 2 pseudo LDHBP2 lactate dehydrogenase B pseudogene 2 O - 20121230 -9606 3948 LDHC - CT32|LDH3|LDHX HGNC:6544|MIM:150150|Ensembl:ENSG00000166796|HPRD:01027|Vega:OTTHUMG00000167722 11 11p15.1 lactate dehydrogenase C protein-coding LDHC lactate dehydrogenase C O L-lactate dehydrogenase C chain|LDH testis subunit|LDH-C|LDH-X|cancer/testis antigen 32|lactate dehydrogenase C4|lactate dehydrogenase c variant 1|lactate dehydrogenase c variant 3|lactate dehydrogenase c variant 4 20121230 -9606 3949 LDLR - FH|FHC|LDLCQ2 HGNC:6547|MIM:606945|Ensembl:ENSG00000130164|HPRD:06091|Vega:OTTHUMG00000171935 19 19p13.2 low density lipoprotein receptor protein-coding LDLR low density lipoprotein receptor O LDL receptor|low-density lipoprotein receptor|low-density lipoprotein receptor class A domain-containing protein 3 20121230 -9606 3950 LECT2 - chm-II|chm2 HGNC:6550|MIM:602882|Ensembl:ENSG00000145826|HPRD:04196|Vega:OTTHUMG00000129146 5 5q31.1 leukocyte cell-derived chemotaxin 2 protein-coding LECT2 leukocyte cell-derived chemotaxin 2 O chondromodulin-II|leukocyte cell-derived chemotaxin-2 20121230 -9606 3952 LEP - LEPD|OB|OBS HGNC:6553|MIM:164160|Ensembl:ENSG00000174697|HPRD:01249|Vega:OTTHUMG00000157564 7 7q31.3 leptin protein-coding LEP leptin O leptin (murine obesity homolog)|leptin (obesity homolog, mouse)|obese protein|obese, mouse, homolog of|obesity factor 20121230 -9606 3953 LEPR - CD295|LEP-R|LEPRD|OB-R|OBR HGNC:6554|MIM:601007|Ensembl:ENSG00000116678|HPRD:03001|Vega:OTTHUMG00000009115 1 1p31 leptin receptor protein-coding LEPR leptin receptor O OB receptor|huB219 20121230 -9606 3954 LETM1 - - HGNC:6556|MIM:604407|Ensembl:ENSG00000168924|HPRD:05101|Vega:OTTHUMG00000121149 4 4p16.3 leucine zipper-EF-hand containing transmembrane protein 1 protein-coding LETM1 leucine zipper-EF-hand containing transmembrane protein 1 O LETM1 and EF-hand domain-containing protein 1, mitochondrial|Mdm38 homolog|leucine zipper-EF-hand-containing transmembrane protein 1 20121230 -9606 3955 LFNG - SCDO3 HGNC:6560|MIM:602576|Ensembl:ENSG00000106003|Vega:OTTHUMG00000152043 7 7p22.2 LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding LFNG LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase O beta-1,3-N-acetylglucosaminyltransferase lunatic fringe 20121230 -9606 3956 LGALS1 - GAL1|GBP HGNC:6561|MIM:150570|Ensembl:ENSG00000100097|HPRD:01040|Vega:OTTHUMG00000150661 22 22q13.1 lectin, galactoside-binding, soluble, 1 protein-coding LGALS1 lectin, galactoside-binding, soluble, 1 O 14 kDa laminin-binding protein|14 kDa lectin|HBL|HLBP14|HPL|S-Lac lectin 1|beta-galactoside-binding lectin L-14-I|beta-galactoside-binding protein 14kDa|gal-1|galaptin|galectin 1|galectin-1|lactose-binding lectin 1|putative MAPK-activating protein PM12 20121230 -9606 3957 LGALS2 - HL14 HGNC:6562|MIM:150571|Ensembl:ENSG00000100079|HPRD:08859|Vega:OTTHUMG00000150590 22 22q13.1 lectin, galactoside-binding, soluble, 2 protein-coding LGALS2 lectin, galactoside-binding, soluble, 2 O S-Lac lectin 2|beta-galactoside-binding lectin L-14-II|gal-2|galectin 2|galectin-2|lactose-binding lectin 2 20121230 -9606 3958 LGALS3 - CBP35|GAL3|GALBP|GALIG|L31|LGALS2|MAC2 HGNC:6563|MIM:153619|Ensembl:ENSG00000131981|HPRD:01090|HPRD:17026|Vega:OTTHUMG00000171030 14 14q22.3 lectin, galactoside-binding, soluble, 3 protein-coding LGALS3 lectin, galactoside-binding, soluble, 3 O 35 kDa lectin|IgE-binding protein|MAC-2 antigen|carbohydrate-binding protein 35|galactose-specific lectin 3|galectin-3|laminin-binding protein|lectin L-29 20121230 -9606 3959 LGALS3BP - 90K|BTBD17B|MAC-2-BP|TANGO10B HGNC:6564|MIM:600626|Ensembl:ENSG00000108679|HPRD:02796|Vega:OTTHUMG00000177572 17 17q25 lectin, galactoside-binding, soluble, 3 binding protein protein-coding LGALS3BP lectin, galactoside-binding, soluble, 3 binding protein O L3 antigen|MAC2BP|Mac-2-binding protein|basement membrane autoantigen p105|galectin-3-binding protein|lectin galactoside-binding soluble 3-binding protein|mac-2 BP|serum protein 90K|transport and golgi organization 10 homolog B|tumor-associated antigen 90K 20121230 -9606 3960 LGALS4 - GAL4|L36LBP HGNC:6565|MIM:602518|Ensembl:ENSG00000171747|HPRD:03949 19 19q13.2 lectin, galactoside-binding, soluble, 4 protein-coding LGALS4 lectin, galactoside-binding, soluble, 4 O L-36 lactose-binding protein|antigen NY-CO-27|gal-4|galectin 4|galectin-4|lactose-binding lectin 4 20121230 -9606 3963 LGALS7 - GAL7|LGALS7A HGNC:6568|MIM:600615|Ensembl:ENSG00000205076|HPRD:09002 19 19q13.2 lectin, galactoside-binding, soluble, 7 protein-coding LGALS7 lectin, galactoside-binding, soluble, 7 O galectin 7|galectin-7 20121230 -9606 3964 LGALS8 RP11-385F5.1 Gal-8|PCTA-1|PCTA1|Po66-CBP HGNC:6569|MIM:606099|Ensembl:ENSG00000116977|HPRD:09356|Vega:OTTHUMG00000039953 1 1q43 lectin, galactoside-binding, soluble, 8 protein-coding LGALS8 lectin, galactoside-binding, soluble, 8 O Po66 carbohydrate binding protein|galectin 8|galectin-8|galectin-8g|po66 carbohydrate-binding protein|prostate carcinoma tumor antigen 1 20121230 -9606 3965 LGALS9 - HUAT|LGALS9A HGNC:6570|MIM:601879|Ensembl:ENSG00000168961|HPRD:03528|Vega:OTTHUMG00000179831 17 17q11.2 lectin, galactoside-binding, soluble, 9 protein-coding LGALS9 lectin, galactoside-binding, soluble, 9 O ecalectin|gal-9|galectin 9|galectin-9|tumor antigen HOM-HD-21|urate transporter/channel protein 20121230 -9606 3972 LHB - CGB4|LSH-B|hLHB HGNC:6584|MIM:152780|Ensembl:ENSG00000104826|HPRD:01072 19 19q13.32 luteinizing hormone beta polypeptide protein-coding LHB luteinizing hormone beta polypeptide O LSH-beta|interstitial cell stimulating hormone, beta chain|luteinizing hormone beta subunit|lutropin beta chain|lutropin subunit beta 20121230 -9606 3973 LHCGR - HHG|LCGR|LGR2|LH/CG-R|LH/CGR|LHR|LHRHR|LSH-R|ULG5 HGNC:6585|MIM:152790|Ensembl:ENSG00000138039|HPRD:01073|Vega:OTTHUMG00000129257 2 2p21 luteinizing hormone/choriogonadotropin receptor protein-coding LHCGR luteinizing hormone/choriogonadotropin receptor O hypergonadotropic hypogonadism|lutropin-choriogonadotropic hormone receptor|lutropin/choriogonadotropin receptor 20121230 -9606 3975 LHX1 - LIM-1|LIM1 HGNC:6593|MIM:601999|Ensembl:ENSG00000132130|HPRD:09067|Vega:OTTHUMG00000133068 17 17q12 LIM homeobox 1 protein-coding LHX1 LIM homeobox 1 O LIM homeobox protein 1|LIM/homeobox protein Lhx1|homeobox protein Lim-1 20121230 -9606 3976 LIF - CDF|DIA|HILDA|MLPLI HGNC:6596|MIM:159540|Ensembl:ENSG00000128342|HPRD:08869|Vega:OTTHUMG00000150910 22 22q12.2 leukemia inhibitory factor protein-coding LIF leukemia inhibitory factor O D factor|cholinergic differentiation factor|differentiation inhibitory activity|differentiation-inducing factor|differentiation-stimulating factor|hepatocyte-stimulating factor III|human interleukin in DA cells|melanoma-derived LPL inhibitor 20121230 -9606 3977 LIFR - CD118|LIF-R|SJS2|STWS|SWS HGNC:6597|MIM:151443|Ensembl:ENSG00000113594|HPRD:01048|Vega:OTTHUMG00000131138 5 5p13-p12 leukemia inhibitory factor receptor alpha protein-coding LIFR leukemia inhibitory factor receptor alpha O CD118 antigen|LIF receptor|leukemia inhibitory factor receptor 20121230 -9606 3978 LIG1 - - HGNC:6598|MIM:126391|Ensembl:ENSG00000105486|HPRD:00534 19 19q13.2-q13.3 ligase I, DNA, ATP-dependent protein-coding LIG1 ligase I, DNA, ATP-dependent O DNA ligase 1|polydeoxyribonucleotide synthase [ATP] 1 20121230 -9606 3980 LIG3 - LIG2 HGNC:6600|MIM:600940|Ensembl:ENSG00000005156|HPRD:02966|Vega:OTTHUMG00000128519 17 17q11.2-q12 ligase III, DNA, ATP-dependent protein-coding LIG3 ligase III, DNA, ATP-dependent O DNA ligase 3|ligase II, DNA, ATP-dependent|polydeoxyribonucleotide synthase [ATP] 3 20121230 -9606 3981 LIG4 - - HGNC:6601|MIM:601837|Ensembl:ENSG00000174405|HPRD:03500|Vega:OTTHUMG00000017328 13 13q33-q34 ligase IV, DNA, ATP-dependent protein-coding LIG4 ligase IV, DNA, ATP-dependent O DNA joinase|DNA ligase 4|DNA ligase IV|DNA repair enzyme|polydeoxyribonucleotide synthase [ATP] 4|polynucleotide ligase|sealase 20121230 -9606 3982 LIM2 - MP17|MP19 HGNC:6610|MIM:154045|Ensembl:ENSG00000105370|HPRD:01097 19 19q13.4 lens intrinsic membrane protein 2, 19kDa protein-coding LIM2 lens intrinsic membrane protein 2, 19kDa O MP18|MP20|lens fiber membrane intrinsic protein 20121230 -9606 3983 ABLIM1 RP11-317F20.1 ABLIM|LIMAB1|LIMATIN|abLIM-1 HGNC:78|MIM:602330|Ensembl:ENSG00000099204|HPRD:03819|Vega:OTTHUMG00000019088 10 10q25 actin binding LIM protein 1 protein-coding ABLIM1 actin binding LIM protein 1 O actin-binding LIM protein 1|actin-binding LIM protein family member 1|actin-binding double-zinc-finger protein 20121230 -9606 3984 LIMK1 - LIMK|LIMK-1 HGNC:6613|MIM:601329|Ensembl:ENSG00000106683|HPRD:03210|Vega:OTTHUMG00000023448 7 7q11.23 LIM domain kinase 1 protein-coding LIMK1 LIM domain kinase 1 O LIM motif-containing protein kinase 20121230 -9606 3985 LIMK2 - - HGNC:6614|MIM:601988|Ensembl:ENSG00000182541|HPRD:03585|Vega:OTTHUMG00000151251 22 22q12.2 LIM domain kinase 2 protein-coding LIMK2 LIM domain kinase 2 O - 20121230 -9606 3987 LIMS1 - PINCH|PINCH-1|PINCH1 HGNC:6616|MIM:602567|Ensembl:ENSG00000169756|HPRD:03978|Vega:OTTHUMG00000130983 2 2q12.3 LIM and senescent cell antigen-like domains 1 protein-coding LIMS1 LIM and senescent cell antigen-like domains 1 O LIM and senescent cell antigen-like-containing domain protein 1|particularly interesting new Cys-His protein 1|renal carcinoma antigen NY-REN-48 20121230 -9606 3988 LIPA RP11-341B24.1 CESD|LAL HGNC:6617|MIM:613497|Ensembl:ENSG00000107798|HPRD:02044|Vega:OTTHUMG00000018716 10 10q23.2-q23.3 lipase A, lysosomal acid, cholesterol esterase protein-coding LIPA lipase A, lysosomal acid, cholesterol esterase O acid cholesteryl ester hydrolase|cholesterol ester hydrolase|cholesteryl esterase|lysosomal acid lipase|lysosomal acid lipase/cholesteryl ester hydrolase|sterol esterase 20121230 -9606 3989 LIPB - - HGNC:6618|MIM:247980 16 - lipase B, lysosomal acid unknown LIPB lipase B, lysosomal acid O - 20080828 -9606 3990 LIPC - HDLCQ12|HL|HTGL|LIPH HGNC:6619|MIM:151670|Ensembl:ENSG00000166035|HPRD:01058|Vega:OTTHUMG00000132632 15 15q21-q23 lipase, hepatic protein-coding LIPC lipase, hepatic O hepatic lipase|hepatic triacylglycerol lipase|lipase member C 20121230 -9606 3991 LIPE - HSL|LHS HGNC:6621|MIM:151750|Ensembl:ENSG00000079435|HPRD:01062 19 19q13.2 lipase, hormone-sensitive protein-coding LIPE lipase, hormone-sensitive O hormone-sensitive lipase|hormone-sensitive lipase testicular isoform 20121230 -9606 3992 FADS1 - D5D|FADS6|FADSD5|LLCDL1|TU12 HGNC:3574|MIM:606148|Ensembl:ENSG00000149485|HPRD:06935|Vega:OTTHUMG00000157155 11 11q12.2-q13.1 fatty acid desaturase 1 protein-coding FADS1 fatty acid desaturase 1 O delta(5) desaturase|delta(5) fatty acid desaturase|delta-5 desaturase|delta-5 fatty acid desaturase|linoleoyl-CoA desaturase (delta-6-desaturase)-like 1 20121230 -9606 3993 LLGL2 - HGL|LGL2 HGNC:6629|Ensembl:ENSG00000073350|HPRD:10041|Vega:OTTHUMG00000179685 17 17q25.1 lethal giant larvae homolog 2 (Drosophila) protein-coding LLGL2 lethal giant larvae homolog 2 (Drosophila) O human giant larvae homolog|lethal(2) giant larvae protein homolog 2 20121230 -9606 3995 FADS3 - CYB5RP|LLCDL3 HGNC:3576|MIM:606150|Ensembl:ENSG00000221968|HPRD:07547|Vega:OTTHUMG00000167500 11 11q12-q13.1 fatty acid desaturase 3 protein-coding FADS3 fatty acid desaturase 3 O cytochrome b5-related protein|delta-9 fatty acid desaturase|delta-9-desaturase|linoleoyl-CoA desaturase (delta-9-desaturase)-like 3 20121230 -9606 3996 LLGL1 - DLG4|HUGL|HUGL-1|HUGL1|LLGL HGNC:6628|MIM:600966|Ensembl:ENSG00000131899|HPRD:02982|Vega:OTTHUMG00000059396 17 17p11.2 lethal giant larvae homolog 1 (Drosophila) protein-coding LLGL1 lethal giant larvae homolog 1 (Drosophila) O human homolog to the D-lgl gene protein|lethal(2) giant larvae protein homolog 1 20121230 -9606 3998 LMAN1 - ERGIC-53|ERGIC53|F5F8D|FMFD1|MCFD1|MR60|gp58 HGNC:6631|MIM:601567|Ensembl:ENSG00000074695|HPRD:03338|Vega:OTTHUMG00000132758 18 18q21.3-q22 lectin, mannose-binding, 1 protein-coding LMAN1 lectin, mannose-binding, 1 O ER-Golgi intermediate compartment 53 kDa protein|endoplasmic reticulum-golgi intermediate compartment protein 53|intracellular mannose specific lectin|intracellular mannose-specific lectin MR60|protein ERGIC-53 20121230 -9606 4000 LMNA RP11-54H19.1 CDCD1|CDDC|CMD1A|CMT2B1|EMD2|FPL|FPLD|FPLD2|HGPS|IDC|LDP1|LFP|LGMD1B|LMN1|LMNC|LMNL1|PRO1 HGNC:6636|MIM:150330|Ensembl:ENSG00000160789|HPRD:01035|Vega:OTTHUMG00000013961 1 1q22 lamin A/C protein-coding LMNA lamin A/C O 70 kDa lamin|lamin|lamin A/C-like 1|prelamin-A/C|renal carcinoma antigen NY-REN-32 20121230 -9606 4001 LMNB1 - ADLD|LMN|LMN2|LMNB HGNC:6637|MIM:150340|Ensembl:ENSG00000113368|HPRD:01036|Vega:OTTHUMG00000128969 5 5q23.2 lamin B1 protein-coding LMNB1 lamin B1 O lamin-B1 20121230 -9606 4004 LMO1 - RBTN1|RHOM1|TTG1 HGNC:6641|MIM:186921|Ensembl:ENSG00000166407|HPRD:01738|Vega:OTTHUMG00000165833 11 11p15 LIM domain only 1 (rhombotin 1) protein-coding LMO1 LIM domain only 1 (rhombotin 1) O LIM domain only protein 1|LMO-1|T-cell translocation gene 1|T-cell translocation protein 1|cysteine-rich protein TTG-1|rhombotin-1 20121230 -9606 4005 LMO2 - RBTN2|RBTNL1|RHOM2|TTG2 HGNC:6642|MIM:180385|Ensembl:ENSG00000135363|HPRD:01586|Vega:OTTHUMG00000157176 11 11p13 LIM domain only 2 (rhombotin-like 1) protein-coding LMO2 LIM domain only 2 (rhombotin-like 1) O LIM domain only protein 2|LMO-2|T-cell translocation gene 2|T-cell translocation protein 2|cysteine-rich protein TTG-2|rhombotin 2|rhombotin-2|rhombotin-like 1 20121230 -9606 4007 PRICKLE3 - LMO6 HGNC:6645|MIM:300111|Ensembl:ENSG00000012211|HPRD:02120|Vega:OTTHUMG00000024134 X Xp11.23 prickle homolog 3 (Drosophila) protein-coding PRICKLE3 prickle homolog 3 (Drosophila) O LIM domain only protein 6|LMO-6|prickle-like protein 3|triple LIM domain protein 6 20121230 -9606 4008 LMO7 RP11-332E3.2 FBX20|FBXO20|LOMP HGNC:6646|MIM:604362|Ensembl:ENSG00000136153|HPRD:05078|Vega:OTTHUMG00000017093 13 13q22.2 LIM domain 7 protein-coding LMO7 LIM domain 7 O F-box only protein 20|F-box protein Fbx20|LIM domain only 7 protein|LIM domain only protein 7|LMO-7|zinc-finger domain-containing protein 20121230 -9606 4009 LMX1A - LMX1|LMX1.1 HGNC:6653|MIM:600298|Ensembl:ENSG00000162761|HPRD:02623|Vega:OTTHUMG00000034575 1 1q24.1 LIM homeobox transcription factor 1, alpha protein-coding LMX1A LIM homeobox transcription factor 1, alpha O LIM homeobox transcription factor 1-alpha|LIM/homeobox protein 1.1 20121230 -9606 4010 LMX1B - LMX1.2|NPS1 HGNC:6654|MIM:602575|Ensembl:ENSG00000136944|HPRD:03986|Vega:OTTHUMG00000020692 9 9q33.3 LIM homeobox transcription factor 1, beta protein-coding LMX1B LIM homeobox transcription factor 1, beta O LIM homeobox transcription factor 1-beta|LIM/homeobox protein 1.2|LIM/homeobox protein LMX1B|LMX-1.2 20121230 -9606 4012 LNPEP - CAP|IRAP|P-LAP|PLAP HGNC:6656|MIM:151300|Ensembl:ENSG00000113441|HPRD:01041|HPRD:08255|Vega:OTTHUMG00000128719 5 5q15 leucyl/cystinyl aminopeptidase protein-coding LNPEP leucyl/cystinyl aminopeptidase O AT (4) receptor|angiotensin IV receptor|cystinyl aminopeptidase|insulin-regulated aminopeptidase|insulin-regulated membrane aminopeptidase|insulin-responsive aminopeptidase|leucyl-cystinyl aminopeptidase|otase|oxytocinase|placental leucine aminopeptidase|vasopressinase 20121230 -9606 4013 VWA5A - BCSC-1|BCSC1|LOH11CR2A HGNC:6658|MIM:602929|Ensembl:ENSG00000110002|HPRD:04238|Vega:OTTHUMG00000165971 11 11q24.1 von Willebrand factor A domain containing 5A protein-coding VWA5A von Willebrand factor A domain containing 5A O breast cancer suppressor candidate 1|loss of heterozygosity 11 chromosomal region 2 gene A protein|loss of heterozygosity, 11, chromosomal region 2, gene A|ortholog of mouse AW551984|von Willebrand factor A domain-containing protein 5A 20121230 -9606 4014 LOR - - HGNC:6663|MIM:152445|Ensembl:ENSG00000203782|HPRD:01070|Vega:OTTHUMG00000013938 1 1q21 loricrin protein-coding LOR loricrin O - 20121230 -9606 4015 LOX - - HGNC:6664|MIM:153455|Ensembl:ENSG00000113083|HPRD:01087|Vega:OTTHUMG00000128914 5 5q23.2 lysyl oxidase protein-coding LOX lysyl oxidase O protein-lysine 6-oxidase 20121230 -9606 4016 LOXL1 - LOL|LOXL HGNC:6665|MIM:153456|Ensembl:ENSG00000129038|HPRD:08861|Vega:OTTHUMG00000137595 15 15q22 lysyl oxidase-like 1 protein-coding LOXL1 lysyl oxidase-like 1 O lysyl oxidase homolog 1|lysyl oxidase-like protein 1 20121230 -9606 4017 LOXL2 - LOR2|WS9-14 HGNC:6666|MIM:606663|Ensembl:ENSG00000134013|HPRD:09446|Vega:OTTHUMG00000163797 8 8p21.3 lysyl oxidase-like 2 protein-coding LOXL2 lysyl oxidase-like 2 O lysyl oxidase homolog 2|lysyl oxidase related 2|lysyl oxidase-like protein 2|lysyl oxidase-related protein 2|lysyl oxidase-related protein WS9-14 20121230 -9606 4018 LPA - AK38|APOA|LP HGNC:6667|MIM:152200|Ensembl:ENSG00000198670|HPRD:01063|Vega:OTTHUMG00000015956 6 6q26 lipoprotein, Lp(a) protein-coding LPA lipoprotein, Lp(a) O antiangiogenic AK38 protein|apo(a)|apolipoprotein(a)|lp(a) 20121230 -9606 4019 LPAL1 - - HGNC:6668 6 6q26-q27 lipoprotein, Lp(a)-like 1 protein-coding LPAL1 lipoprotein, Lp(a)-like 1 O - 20080828 -9606 4023 LPL - HDLCQ11|LIPD HGNC:6677|MIM:609708|Ensembl:ENSG00000175445|HPRD:01999|Vega:OTTHUMG00000036645 8 8p22 lipoprotein lipase protein-coding LPL lipoprotein lipase O - 20121230 -9606 4025 LPO - SPO HGNC:6678|MIM:150205|Ensembl:ENSG00000167419|HPRD:11825|Vega:OTTHUMG00000178921 17 17q23.1 lactoperoxidase protein-coding LPO lactoperoxidase O salivary peroxidase 20121230 -9606 4026 LPP - - HGNC:6679|MIM:600700|Ensembl:ENSG00000145012|HPRD:02828|Vega:OTTHUMG00000156387 3 3q28 LIM domain containing preferred translocation partner in lipoma protein-coding LPP LIM domain containing preferred translocation partner in lipoma O LIM protein|lipoma-preferred partner 20121230 -9606 4029 L1RE1 - L1.2|LRE1 HGNC:6686|MIM:151626 22 22q11.1-q11.2 LINE1 retrotransposable element 1 other L1RE1 LINE1 retrotransposable element 1 O - 20121021 -9606 4030 L1RE2 - LRE2 HGNC:6687|MIM:151628 1 1q LINE1 retrotransposable element 2 other L1RE2 LINE1 retrotransposable element 2 O - 20120710 -9606 4033 LRMP - JAW1 HGNC:6690|MIM:602003|Ensembl:ENSG00000118308|HPRD:03593|Vega:OTTHUMG00000170192 12 12p12.1 lymphoid-restricted membrane protein protein-coding LRMP lymphoid-restricted membrane protein O protein Jaw1 20121230 -9606 4034 LRCH4 - LRN|LRRN1|LRRN4|PP14183 HGNC:6691|Ensembl:ENSG00000077454|HPRD:10062|Vega:OTTHUMG00000159544 7 7q22 leucine-rich repeats and calponin homology (CH) domain containing 4 protein-coding LRCH4 leucine-rich repeats and calponin homology (CH) domain containing 4 O leucine rich repeat neuronal 4|leucine-rich neuronal protein|leucine-rich repeat and calponin homology domain-containing protein 4|leucine-rich repeat neuronal protein 4 20121230 -9606 4035 LRP1 - A2MR|APOER|APR|CD91|IGFBP3R|LRP|TGFBR5 HGNC:6692|MIM:107770|Ensembl:ENSG00000123384|HPRD:00138|Vega:OTTHUMG00000044412 12 12q13-q14 low density lipoprotein receptor-related protein 1 protein-coding LRP1 low density lipoprotein receptor-related protein 1 O LRP-1|TbetaR-V/LRP-1/IGFBP-3 receptor|alpha-2-macroglobulin receptor|apolipoprotein E receptor|prolow-density lipoprotein receptor-related protein 1|type V tgf-beta receptor 20121230 -9606 4036 LRP2 - DBS|GP330 HGNC:6694|MIM:600073|Ensembl:ENSG00000081479|HPRD:02509|Vega:OTTHUMG00000132179 2 2q24-q31 low density lipoprotein receptor-related protein 2 protein-coding LRP2 low density lipoprotein receptor-related protein 2 O Heymann nephritis antigen homolog|LRP-2|calcium sensor protein|glycoprotein 330|low-density lipoprotein receptor-related protein 2|megalin 20121230 -9606 4037 LRP3 - - HGNC:6695|MIM:603159|Ensembl:ENSG00000130881|HPRD:04406|Vega:OTTHUMG00000180343 19 19q13.11 low density lipoprotein receptor-related protein 3 protein-coding LRP3 low density lipoprotein receptor-related protein 3 O 105 kDa low-density lipoprotein receptor-related protein|LRP-3|hLRp105|low-density lipoprotein receptor-related protein 3 20121230 -9606 4038 LRP4 - CLSS|LRP-4|LRP10|MEGF7|SOST2 HGNC:6696|MIM:604270|Ensembl:ENSG00000134569|HPRD:18517|Vega:OTTHUMG00000166700 11 11p11.2 low density lipoprotein receptor-related protein 4 protein-coding LRP4 low density lipoprotein receptor-related protein 4 O low-density lipoprotein receptor-related protein 4|multiple epidermal growth factor-like domains 7 20121230 -9606 4040 LRP6 - ADCAD2 HGNC:6698|MIM:603507|Ensembl:ENSG00000070018|HPRD:04617|Vega:OTTHUMG00000168540 12 12p13.2 low density lipoprotein receptor-related protein 6 protein-coding LRP6 low density lipoprotein receptor-related protein 6 O LRP-6|low-density lipoprotein receptor-related protein 6 20121230 -9606 4041 LRP5 - BMND1|EVR1|EVR4|HBM|LR3|LRP7|OPPG|OPS|OPTA1|VBCH2 HGNC:6697|MIM:603506|Ensembl:ENSG00000162337|HPRD:04616|Vega:OTTHUMG00000167570 11 11q13.4 low density lipoprotein receptor-related protein 5 protein-coding LRP5 low density lipoprotein receptor-related protein 5 O LRP-5|low density lipoprotein receptor-related protein 7|low-density lipoprotein receptor-related protein 5 20121230 -9606 4043 LRPAP1 RP11-529E10.3 A2MRAP|A2RAP|HBP44|MRAP|RAP HGNC:6701|MIM:104225|Ensembl:ENSG00000163956|HPRD:00082|Vega:OTTHUMG00000090299 4 4p16.3 low density lipoprotein receptor-related protein associated protein 1 protein-coding LRPAP1 low density lipoprotein receptor-related protein associated protein 1 O alpha-2-MRAP|alpha-2-macroglobulin receptor-associated protein|alpha-2-macroglobulin receptor-associated protein 1|lipoprotein receptor associated protein|low density lipoprotein receptor-related protein-associated protein 1|low density lipoprotein-related protein-associated protein 1 (alpha-2-macroglobulin receptor-associated protein 1) 20121230 -9606 4045 LSAMP - IGLON3|LAMP HGNC:6705|MIM:603241|Ensembl:ENSG00000185565|HPRD:09128|Vega:OTTHUMG00000159308 3 3q13.2-q21 limbic system-associated membrane protein protein-coding LSAMP limbic system-associated membrane protein O IgLON family member 3 20121230 -9606 4046 LSP1 - WP34|pp52 HGNC:6707|MIM:153432|Ensembl:ENSG00000130592|HPRD:01083|Vega:OTTHUMG00000012252 11 11p15.5 lymphocyte-specific protein 1 protein-coding LSP1 lymphocyte-specific protein 1 O 47 kDa actin binding protein|47 kDa actin-binding protein|52 kDa phosphoprotein|F-actin binding and cytoskeleton associated protein|leufactin (leukocyte F-actin binding protein)|leukocyte-specific protein 1|lymphocyte-specific antigen WP34 20121230 -9606 4047 LSS - OSC HGNC:6708|MIM:600909|Ensembl:ENSG00000160285|HPRD:02945|Vega:OTTHUMG00000090633 21 21q22.3 lanosterol synthase (2,3-oxidosqualene-lanosterol cyclase) protein-coding LSS lanosterol synthase (2,3-oxidosqualene-lanosterol cyclase) O 2,3-epoxysqualene--lanosterol cyclase|2,3-epoxysqualene-lanosterol cyclase|hOSC|lanosterol synthase|oxidosqualene--lanosterol cyclase 20121230 -9606 4048 LTA4H - - HGNC:6710|MIM:151570|Ensembl:ENSG00000111144|HPRD:01056|Vega:OTTHUMG00000170355 12 12q22 leukotriene A4 hydrolase protein-coding LTA4H leukotriene A4 hydrolase O LTA-4 hydrolase|leukotriene A-4 hydrolase 20121230 -9606 4049 LTA DAMA-25N12.13-004 LT|TNFB|TNFSF1 HGNC:6709|MIM:153440|Ensembl:ENSG00000226979|HPRD:01084|Vega:OTTHUMG00000031135 6 6p21.3 lymphotoxin alpha (TNF superfamily, member 1) protein-coding LTA lymphotoxin alpha (TNF superfamily, member 1) O LT-alpha|TNF-beta|lymphotoxin-alpha|tumor necrosis factor beta|tumor necrosis factor ligand superfamily member 1 20121230 -9606 4050 LTB DAAP-90L16.4 TNFC|TNFSF3|p33 HGNC:6711|MIM:600978|Ensembl:ENSG00000227507|HPRD:02987|Vega:OTTHUMG00000031136 6 6p21.3 lymphotoxin beta (TNF superfamily, member 3) protein-coding LTB lymphotoxin beta (TNF superfamily, member 3) O LT-beta|TNF-C|lymphotoxin-beta|tumor necrosis factor C|tumor necrosis factor ligand superfamily member 3 20121230 -9606 4051 CYP4F3 - CPF3|CYP4F|LTB4H HGNC:2646|MIM:601270|Ensembl:ENSG00000186529|HPRD:03169|Vega:OTTHUMG00000182374 19 19p13.2 cytochrome P450, family 4, subfamily F, polypeptide 3 protein-coding CYP4F3 cytochrome P450, family 4, subfamily F, polypeptide 3 O CYPIVF3|cytochrome P-450|cytochrome P450 4F3|cytochrome P450, subfamily IVF, polypeptide 3 (leukotriene B4 omega hydroxylase)|cytochrome P450-LTB-omega|leukotriene B4 omega hydroxylase|leukotriene-B(4) 20-monooxygenase 2|leukotriene-B(4) omega-hydroxylase 2|leukotriene-B4 20-monooxygenase 20121230 -9606 4052 LTBP1 - - HGNC:6714|MIM:150390|Ensembl:ENSG00000049323|HPRD:01039|Vega:OTTHUMG00000152118 2 2p22-p21 latent transforming growth factor beta binding protein 1 protein-coding LTBP1 latent transforming growth factor beta binding protein 1 O LTBP-1|TGF-beta1-BP-1|latent-transforming growth factor beta-binding protein 1|transforming growth factor beta-1-binding protein 1 20121230 -9606 4053 LTBP2 - C14orf141|GLC3D|LTBP3|MSPKA|MSTP031|WMS3 HGNC:6715|MIM:602091|Ensembl:ENSG00000119681|HPRD:03650|Vega:OTTHUMG00000171476 14 14q24 latent transforming growth factor beta binding protein 2 protein-coding LTBP2 latent transforming growth factor beta binding protein 2 O LTBP-2|latent-transforming growth factor beta-binding protein 2 20121230 -9606 4054 LTBP3 - LTBP-3|LTBP2|STHAG6|pp6425 HGNC:6716|MIM:602090|Ensembl:ENSG00000168056|HPRD:03649|Vega:OTTHUMG00000166575 11 11q13.1 latent transforming growth factor beta binding protein 3 protein-coding LTBP3 latent transforming growth factor beta binding protein 3 O latent TGF beta binding protein 3|latent-transforming growth factor beta-binding protein 3 20121230 -9606 4055 LTBR - CD18|D12S370|LT-BETA-R|TNF-R-III|TNFCR|TNFR-RP|TNFR2-RP|TNFR3|TNFRSF3 HGNC:6718|MIM:600979|Ensembl:ENSG00000111321|HPRD:02988|Vega:OTTHUMG00000168356 12 12p13 lymphotoxin beta receptor (TNFR superfamily, member 3) protein-coding LTBR lymphotoxin beta receptor (TNFR superfamily, member 3) O lymphotoxin B receptor|tumor necrosis factor C receptor|tumor necrosis factor receptor 2-related protein|tumor necrosis factor receptor superfamily member 3|tumor necrosis factor receptor type III 20121230 -9606 4056 LTC4S - - HGNC:6719|MIM:246530|Ensembl:ENSG00000213316|HPRD:02004|Vega:OTTHUMG00000150314 5 5q35 leukotriene C4 synthase protein-coding LTC4S leukotriene C4 synthase O LTC4 synthase 20121230 -9606 4057 LTF - GIG12|HLF2|LF HGNC:6720|MIM:150210|Ensembl:ENSG00000012223|HPRD:01028|Vega:OTTHUMG00000156325 3 3p21.31 lactotransferrin protein-coding LTF lactotransferrin O growth-inhibiting protein 12|neutrophil lactoferrin|talalactoferrin 20121230 -9606 4058 LTK - TYK1 HGNC:6721|MIM:151520|Ensembl:ENSG00000062524|HPRD:01052|Vega:OTTHUMG00000130339 15 15q15.1-q21.1 leukocyte receptor tyrosine kinase protein-coding LTK leukocyte receptor tyrosine kinase O leukocyte tyrosine kinase receptor|protein tyrosine kinase 1 20121230 -9606 4059 BCAM - AU|CD239|LU|MSK19 HGNC:6722|MIM:612773|Ensembl:ENSG00000187244|HPRD:00197|Vega:OTTHUMG00000180838 19 19q13.2 basal cell adhesion molecule (Lutheran blood group) protein-coding BCAM basal cell adhesion molecule (Lutheran blood group) O Auberger b antigen|B-CAM cell surface glycoprotein|B-cell adhesion molecule|F8/G253 antigen|antigen identified by monoclonal antibody F8|basal cell adhesion molecule|basal cell adhesion molecule (Lu and Au blood groups)|glycoprotein 95kDa|lutheran antigen|lutheran blood group glycoprotein 20121230 -9606 4060 LUM - LDC|SLRR2D HGNC:6724|MIM:600616|Ensembl:ENSG00000139329|HPRD:02793|Vega:OTTHUMG00000170074 12 12q21.3-q22 lumican protein-coding LUM lumican O KSPG lumican|keratan sulfate proteoglycan lumican|lumican proteoglycan 20121230 -9606 4061 LY6E - RIG-E|RIGE|SCA-2|SCA2|TSA-1 HGNC:6727|MIM:601384|Ensembl:ENSG00000160932|HPRD:03227|Vega:OTTHUMG00000164754 8 8q24.3 lymphocyte antigen 6 complex, locus E protein-coding LY6E lymphocyte antigen 6 complex, locus E O ly-6E|lymphocyte antigen 6E|retinoic acid induced gene E|retinoic acid-induced gene E protein|stem cell antigen 2|thymic shared antigen 1 20121230 -9606 4062 LY6H - NMLY6 HGNC:6728|MIM:603625|Ensembl:ENSG00000176956|HPRD:04691|Vega:OTTHUMG00000154890 8 8q24.3 lymphocyte antigen 6 complex, locus H protein-coding LY6H lymphocyte antigen 6 complex, locus H O ly-6H|lymphocyte antigen 6H 20121230 -9606 4063 LY9 RP11-312J18.1 CD229|SLAMF3|hly9|mLY9 HGNC:6730|MIM:600684|Ensembl:ENSG00000122224|HPRD:02817|Vega:OTTHUMG00000024007 1 1q23.3 lymphocyte antigen 9 protein-coding LY9 lymphocyte antigen 9 O T-lymphocyte surface antigen Ly-9|cell surface molecule Ly-9 20121230 -9606 4064 CD180 - LY64|Ly78|RP105 HGNC:6726|MIM:602226|Ensembl:ENSG00000134061|HPRD:03749|Vega:OTTHUMG00000131229 5 5q12 CD180 molecule protein-coding CD180 CD180 molecule O CD180 antigen|lymphocyte antigen 64|lymphocyte antigen-64, radioprotective, 105kDa|radioprotective 105 kDa protein 20121230 -9606 4065 LY75 - CD205|CLEC13B|DEC-205|GP200-MR6|LY-75 HGNC:6729|MIM:604524|Ensembl:ENSG00000054219|HPRD:05161|Vega:OTTHUMG00000132025 2 2q24 lymphocyte antigen 75 protein-coding LY75 lymphocyte antigen 75 O C-type lectin domain family 13 member B 20121230 -9606 4066 LYL1 - bHLHa18 HGNC:6734|MIM:151440|Ensembl:ENSG00000104903|HPRD:01046|Vega:OTTHUMG00000180736 19 19p13.2 lymphoblastic leukemia derived sequence 1 protein-coding LYL1 lymphoblastic leukemia derived sequence 1 O class A basic helix-loop-helix protein 18|protein lyl-1 20121230 -9606 4067 LYN - JTK8|p53Lyn|p56Lyn HGNC:6735|MIM:165120|Ensembl:ENSG00000254087|HPRD:01301|Vega:OTTHUMG00000044345 8 8q13 v-yes-1 Yamaguchi sarcoma viral related oncogene homolog protein-coding LYN v-yes-1 Yamaguchi sarcoma viral related oncogene homolog O lck/Yes-related novel protein tyrosine kinase|tyrosine-protein kinase Lyn 20121230 -9606 4068 SH2D1A RP5-1052M9.3 DSHP|EBVS|IMD5|LYP|MTCP1|SAP|SAP/SH2D1A|XLP|XLPD HGNC:10820|MIM:300490|Ensembl:ENSG00000183918|HPRD:02390|Vega:OTTHUMG00000022344 X Xq25 SH2 domain containing 1A protein-coding SH2D1A SH2 domain containing 1A O Duncan disease SH2-protein|SH2 domain-containing protein 1A|SLAM associated protein/SH2 domain protein 1A|SLAM-associated protein|T cell signal transduction molecule SAP|T-cell signal transduction molecule SAP|signaling lymphocyte activation molecule-associated protein|signaling lymphocytic activation molecule-associated protein 20121230 -9606 4069 LYZ - LZM HGNC:6740|MIM:153450|Ensembl:ENSG00000090382|HPRD:01085|Vega:OTTHUMG00000169342 12 12q15 lysozyme protein-coding LYZ lysozyme O 1,4-beta-N-acetylmuramidase C|lysozyme C|renal amyloidosis 20121230 -9606 4070 TACSTD2 - EGP-1|EGP1|GA733-1|GA7331|GP50|M1S1|TROP2 HGNC:11530|MIM:137290|Ensembl:ENSG00000184292|HPRD:00672|Vega:OTTHUMG00000010067 1 1p32 tumor-associated calcium signal transducer 2 protein-coding TACSTD2 tumor-associated calcium signal transducer 2 O 40kD glycoprotein, identified by monoclonal antibody GA733|cell surface glycoprotein TROP2|cell surface glycoprotein Trop-2|epithelial glycoprotein-1|gastrointestinal tumor-associated antigen GA7331|membrane component chromosome 1 surface marker 1|membrane component, chromosome 1, surface marker 1|pancreatic carcinoma marker protein GA733-1|pancreatic carcinoma marker protein GA7331 20121230 -9606 4071 TM4SF1 - H-L6|L6|M3S1|TAAL6 HGNC:11853|MIM:191155|Ensembl:ENSG00000169908|HPRD:01854|Vega:OTTHUMG00000159597 3 3q21-q25 transmembrane 4 L six family member 1 protein-coding TM4SF1 transmembrane 4 L six family member 1 O membrane component chromosome 3 surface marker 1|membrane component, chromosome 3, surface marker 1|transmembrane 4 L6 family member 1|transmembrane 4 superfamily member 1|tumor-associated antigen L6 20121230 -9606 4072 EPCAM - DIAR5|EGP-2|EGP314|EGP40|ESA|HNPCC8|KS1/4|KSA|M4S1|MIC18|MK-1|TACSTD1|TROP1 HGNC:11529|MIM:185535|Ensembl:ENSG00000119888|HPRD:01709|Vega:OTTHUMG00000128853 2 2p21 epithelial cell adhesion molecule protein-coding EPCAM epithelial cell adhesion molecule O adenocarcinoma-associated antigen|cell surface glycoprotein Trop-1|epithelial glycoprotein 314|human epithelial glycoprotein-2|major gastrointestinal tumor-associated protein GA733-2|membrane component, chromosome 4, surface marker (35kD glycoprotein)|tumor-associated calcium signal transducer 1 20121230 -9606 4074 M6PR - CD-MPR|MPR 46|MPR-46|MPR46|SMPR HGNC:6752|MIM:154540|Ensembl:ENSG00000003056|HPRD:01106|Vega:OTTHUMG00000168276 12 12p13 mannose-6-phosphate receptor (cation dependent) protein-coding M6PR mannose-6-phosphate receptor (cation dependent) O 46-kDa mannose 6-phosphate receptor|CD Man-6-P receptor|Mr 46,000 Man6PR|cation-dependent mannose-6-phosphate receptor|small mannose 6-phosphate receptor 20121230 -9606 4076 CAPRIN1 - GPIAP1|GPIP137|M11S1|RNG105|p137GPI HGNC:6743|MIM:601178|Ensembl:ENSG00000135387|HPRD:03108|Vega:OTTHUMG00000166248 11 11p13 cell cycle associated protein 1 protein-coding CAPRIN1 cell cycle associated protein 1 O GPI-anchored membrane protein 1|GPI-anchored protein p137|GPI-p137|RNA granule protein 105|activation/proliferation-associated protein 1|caprin 1|caprin-1|cell cycle-associated protein 1|cytoplasmic activation- and proliferation-associated protein 1|cytoplasmic activation/proliferation-associated protein-1|membrane component chromosome 11 surface marker 1|membrane component, chromosome 11, surface marker 1 20121230 -9606 4077 NBR1 MIG19 1A1-3B|M17S2 HGNC:6746|MIM:166945|Ensembl:ENSG00000188554|HPRD:01326|Vega:OTTHUMG00000180878 17 17q21.31 neighbor of BRCA1 gene 1 protein-coding NBR1 neighbor of BRCA1 gene 1 O cell migration-inducing gene 19 protein|membrane component chromosome 17 surface marker 2|membrane component, chromosome 17, surface marker 2 (ovarian carcinoma antigen CA125)|migration-inducing protein 19|neighbor of BRCA1 gene 1 protein|next to BRCA1 gene 1 protein|protein 1A1-3B 20121230 -9606 4080 MAA - LZMS|MCOPS1 HGNC:6755|MIM:309800 X - microphthalmia or anophthalmia and associated anomalies unknown MAA microphthalmia or anophthalmia and associated anomalies O - 20120622 -9606 4081 MAB21L1 Nbla00126 CAGR1 HGNC:6757|MIM:601280|Ensembl:ENSG00000180660|HPRD:03178|Vega:OTTHUMG00000016723 13 13q13 mab-21-like 1 (C. elegans) protein-coding MAB21L1 mab-21-like 1 (C. elegans) O mab-21-like protein 1|protein mab-21-like 1 20121230 -9606 4082 MARCKS - 80K-L|MACS|PKCSL|PRKCSL HGNC:6759|MIM:177061|Ensembl:ENSG00000155130|HPRD:07519|Vega:OTTHUMG00000015406 6 6q22.2 myristoylated alanine-rich protein kinase C substrate protein-coding MARCKS myristoylated alanine-rich protein kinase C substrate O myristoylated alanine-rich C-kinase substrate|myristoylated alanine-rich protein kinase C substrate (MARCKS, 80K-L)|phosphomyristin|protein kinase C substrate, 80 kDa protein, light chain 20121230 -9606 4083 MARCKSP1 - MACSL1 HGNC:6760 21 21q21.3 myristoylated alanine-rich protein kinase C substrate pseudogene 1 pseudo MARCKSP1 myristoylated alanine-rich protein kinase C substrate pseudogene 1 O - 20121230 -9606 4084 MXD1 - BHLHC58|MAD|MAD1 HGNC:6761|MIM:600021|Ensembl:ENSG00000059728|HPRD:02487|Vega:OTTHUMG00000129646 2 2p13-p12 MAX dimerization protein 1 protein-coding MXD1 MAX dimerization protein 1 O MAX-binding protein|antagonizer of myc transcriptional activity|max dimerization protein 1|max dimerizer 1 20121230 -9606 4085 MAD2L1 - HSMAD2|MAD2 HGNC:6763|MIM:601467|Ensembl:ENSG00000164109|HPRD:03274|Vega:OTTHUMG00000132967 4 4q27 MAD2 mitotic arrest deficient-like 1 (yeast) protein-coding MAD2L1 MAD2 mitotic arrest deficient-like 1 (yeast) O MAD2 (mitotic arrest deficient, yeast, homolog)-like 1|MAD2-like protein 1|mitotic arrest deficient 2-like protein 1|mitotic arrest deficient, yeast, homolog-like 1|mitotic spindle assembly checkpoint protein MAD2A 20121230 -9606 4086 SMAD1 - BSP-1|BSP1|JV4-1|JV41|MADH1|MADR1 HGNC:6767|MIM:601595|Ensembl:ENSG00000170365|HPRD:03356|Vega:OTTHUMG00000161592 4 4q31 SMAD family member 1 protein-coding SMAD1 SMAD family member 1 O MAD homolog 1|MAD, mothers against decapentaplegic homolog 1|Mad-related protein 1|SMAD, mothers against DPP homolog 1|TGF-beta signaling protein 1|mothers against DPP homolog 1|mothers against decapentaplegic homolog 1|transforming growth factor-beta signaling protein 1|transforming growth factor-beta-signaling protein 1 20121230 -9606 4087 SMAD2 - JV18|JV18-1|MADH2|MADR2|hMAD-2|hSMAD2 HGNC:6768|MIM:601366|Ensembl:ENSG00000175387|HPRD:03221|Vega:OTTHUMG00000132652 18 18q21.1 SMAD family member 2 protein-coding SMAD2 SMAD family member 2 O MAD homolog 2|SMAD, mothers against DPP homolog 2|Sma- and Mad-related protein 2|mother against DPP homolog 2|mothers against decapentaplegic homolog 2 20121230 -9606 4088 SMAD3 - HSPC193|HsT17436|JV15-2|LDS1C|LDS3|MADH3 HGNC:6769|MIM:603109|Ensembl:ENSG00000166949|HPRD:04380|HPRD:08533|Vega:OTTHUMG00000133230 15 15q22.33 SMAD family member 3 protein-coding SMAD3 SMAD family member 3 O MAD homolog 3|MAD, mothers against decapentaplegic homolog 3|SMA- and MAD-related protein 3|SMAD, mothers against DPP homolog 3|hMAD-3|hSMAD3|mad homolog JV15-2|mad protein homolog|mad3|mothers against DPP homolog 3|mothers against decapentaplegic homolog 3 20121230 -9606 4089 SMAD4 - DPC4|JIP|MADH4|MYHRS HGNC:6770|MIM:600993|Ensembl:ENSG00000141646|HPRD:02995|Vega:OTTHUMG00000132696 18 18q21.1 SMAD family member 4 protein-coding SMAD4 SMAD family member 4 O MAD homolog 4|SMAD, mothers against DPP homolog 4|deleted in pancreatic carcinoma locus 4|deletion target in pancreatic carcinoma 4|mothers against decapentaplegic homolog 4|mothers against decapentaplegic, Drosophila, homolog of, 4 20121230 -9606 4090 SMAD5 - DWFC|JV5-1|MADH5 HGNC:6771|MIM:603110|Ensembl:ENSG00000113658|HPRD:04381 5 5q31 SMAD family member 5 protein-coding SMAD5 SMAD family member 5 O MAD, mothers against decapentaplegic homolog 5|SMA- and MAD-related protein 5|SMAD, mothers against DPP homolog 5|mothers against decapentaplegic homolog 5|mothers against decapentaplegic, drosophila, homolog of, 5 20121230 -9606 4091 SMAD6 - AOVD2|HsT17432|MADH6|MADH7 HGNC:6772|MIM:602931|Ensembl:ENSG00000137834|HPRD:04240|Vega:OTTHUMG00000133218 15 15q21-q22 SMAD family member 6 protein-coding SMAD6 SMAD family member 6 O MAD homolog 6|Mothers against decapentaplegic, drosophila, homolog of, 6|SMAD 6|SMAD, mothers against DPP homolog 6|hSMAD6|mothers against DPP homolog 6|mothers against decapentaplegic homolog 6 20121230 -9606 4092 SMAD7 - CRCS3|MADH7|MADH8 HGNC:6773|MIM:602932|Ensembl:ENSG00000101665|HPRD:04241|Vega:OTTHUMG00000132655 18 18q21.1 SMAD family member 7 protein-coding SMAD7 SMAD family member 7 O MAD (mothers against decapentaplegic, Drosophila) homolog 7|MAD homolog 8|Mothers against decapentaplegic, drosophila, homolog of, 7|SMAD, mothers against DPP homolog 7|hSMAD7|mothers against DPP homolog 8|mothers against decapentaplegic homolog 7 20121230 -9606 4093 SMAD9 RP11-421P11.9 MADH6|MADH9|SMAD8|SMAD8A|SMAD8B HGNC:6774|MIM:603295|Ensembl:ENSG00000120693|Vega:OTTHUMG00000016740 13 13q12-q14 SMAD family member 9 protein-coding SMAD9 SMAD family member 9 O MAD homolog 9|Mothers against decapentaplegic, drosophila, homolog of, 9|SMAD, mothers against DPP homolog 9|mothers against decapentaplegic homolog 9 20121230 -9606 4094 MAF - CCA4|c-MAF HGNC:6776|MIM:177075|Ensembl:ENSG00000178573|HPRD:01518|Vega:OTTHUMG00000137621 16 16q22-q23 v-maf musculoaponeurotic fibrosarcoma oncogene homolog (avian) protein-coding MAF v-maf musculoaponeurotic fibrosarcoma oncogene homolog (avian) O Avian musculoaponeurotic fibrosarcoma (MAF) protooncogene|T lymphocyte c-maf long form|c-maf proto-oncogene|proto-oncogene c-Maf|transcription factor Maf 20121230 -9606 4095 MAFD1 - BPAD|MD1 HGNC:6777|MIM:125480 18 18p major affective disorder 1 unknown MAFD1 major affective disorder 1 O - 20120622 -9606 4096 MAFD2 - BPAD|MDI|MDX HGNC:6778|MIM:309200 X Xq27-q28 major affective disorder 2 unknown MAFD2 major affective disorder 2 O - 20120622 -9606 4097 MAFG - hMAF HGNC:6781|MIM:602020|Ensembl:ENSG00000197063|HPRD:03605|Vega:OTTHUMG00000177958 17 17q25.3 v-maf musculoaponeurotic fibrosarcoma oncogene homolog G (avian) protein-coding MAFG v-maf musculoaponeurotic fibrosarcoma oncogene homolog G (avian) O basic leucine zipper transcription factor MafG|transcription factor MafG 20121230 -9606 4099 MAG - GMA|S-MAG|SIGLEC-4A|SIGLEC4A HGNC:6783|MIM:159460|Ensembl:ENSG00000105695|HPRD:01160 19 19q13.1 myelin associated glycoprotein protein-coding MAG myelin associated glycoprotein O myelin-associated glycoprotein|sialic acid binding Ig-like lectin 4A|sialic acid-binding immunoglobulin-like lectin 4A 20121230 -9606 4100 MAGEA1 - CT1.1|MAGE1 HGNC:6796|MIM:300016|Ensembl:ENSG00000198681|HPRD:02059|Vega:OTTHUMG00000024192 X Xq28 melanoma antigen family A, 1 (directs expression of antigen MZ2-E) protein-coding MAGEA1 melanoma antigen family A, 1 (directs expression of antigen MZ2-E) O MAGE-1 antigen|antigen MZ2-E|cancer/testis antigen 1.1|cancer/testis antigen family 1, member 1|melanoma antigen MAGE-1|melanoma antigen family A 1|melanoma-associated antigen 1|melanoma-associated antigen MZ2-E 20121230 -9606 4101 MAGEA2 - CT1.2|MAGE2|MAGEA2A HGNC:6800|MIM:300173|Ensembl:ENSG00000184750|HPRD:02165 X Xq28 melanoma antigen family A, 2 protein-coding MAGEA2 melanoma antigen family A, 2 O MAGE-2 antigen|cancer/testis antigen 1.2|cancer/testis antigen family 1, member 2|melanoma antigen 2|melanoma-associated antigen 2 20121230 -9606 4102 MAGEA3 - CT1.3|HIP8|HYPD|MAGE3|MAGEA6 HGNC:6801|MIM:300174|Ensembl:ENSG00000221867|HPRD:02166|Vega:OTTHUMG00000022640 X Xq28 melanoma antigen family A, 3 protein-coding MAGEA3 melanoma antigen family A, 3 O MAGE-3 antigen|antigen MZ2-D|cancer/testis antigen 1.3|cancer/testis antigen family 1, member 3|melanoma-associated antigen 3 20121230 -9606 4103 MAGEA4 - CT1.4|MAGE-41|MAGE-X2|MAGE4|MAGE4A|MAGE4B HGNC:6802|MIM:300175|Ensembl:ENSG00000147381|HPRD:02167|Vega:OTTHUMG00000024174 X Xq28 melanoma antigen family A, 4 protein-coding MAGEA4 melanoma antigen family A, 4 O MAGE-4 antigen|MAGE-41 antigen|MAGE-X2 antigen|cancer/testis antigen 1.4|cancer/testis antigen family 1, member 4|melanoma-associated antigen 4 20121230 -9606 4104 MAGEA5 - CT1.5|MAGE5|MAGEA4 HGNC:6803|MIM:300340|Ensembl:ENSG00000242520|HPRD:02277|Vega:OTTHUMG00000160288 X Xq28 melanoma antigen family A, 5 protein-coding MAGEA5 melanoma antigen family A, 5 O MAGE-5 antigen|MAGE-5a antigen|MAGE-5b antigen|cancer/testis antigen 1.5|cancer/testis antigen family 1, member 5|melanoma-associated antigen 5 20121230 -9606 4105 MAGEA6 - CT1.6|MAGE-3b|MAGE3B|MAGE6 HGNC:6804|MIM:300176|Ensembl:ENSG00000197172|HPRD:02168|Vega:OTTHUMG00000022642 X Xq28 melanoma antigen family A, 6 protein-coding MAGEA6 melanoma antigen family A, 6 O MAGE-6 antigen|MAGE3B antigen|cancer/testis antigen 1.6|cancer/testis antigen family 1, member 6|melanoma-associated antigen 6 20121230 -9606 4106 MAGEA7P - MAGE7|MAGEA7 HGNC:6805 X Xq28 melanoma antigen family A, 7, pseudogene pseudo MAGEA7P melanoma antigen family A, 7, pseudogene O - 20121230 -9606 4107 MAGEA8 - CT1.8|MAGE8 HGNC:6806|MIM:300341|Ensembl:ENSG00000156009|HPRD:02278|Vega:OTTHUMG00000022635 X Xq28 melanoma antigen family A, 8 protein-coding MAGEA8 melanoma antigen family A, 8 O MAGE-8 antigen|cancer/testis antigen 1.8|cancer/testis antigen family 1, member 8|melanoma-associated antigen 8 20121230 -9606 4108 MAGEA9 - CT1.9|MAGE9 HGNC:6807|MIM:300342|Ensembl:ENSG00000166008|HPRD:02279|Vega:OTTHUMG00000164165 X Xq28 melanoma antigen family A, 9 protein-coding MAGEA9 melanoma antigen family A, 9 O MAGE-9 antigen|cancer/testis antigen 1.9|cancer/testis antigen family 1, member 9|melanoma-associated antigen 9 20121230 -9606 4109 MAGEA10 - CT1.10|MAGE10 HGNC:6797|MIM:300343|Ensembl:ENSG00000124260|HPRD:02280|Vega:OTTHUMG00000024180 X Xq28 melanoma antigen family A, 10 protein-coding MAGEA10 melanoma antigen family A, 10 O MAGE-10 antigen|cancer/testis antigen 1.10|cancer/testis antigen family 1, member 10|melanoma-associated antigen 10 20121230 -9606 4110 MAGEA11 - CT1.11|MAGE-11|MAGE11|MAGEA-11 HGNC:6798|MIM:300344|Ensembl:ENSG00000185247|HPRD:02281|Vega:OTTHUMG00000022633 X Xq28 melanoma antigen family A, 11 protein-coding MAGEA11 melanoma antigen family A, 11 O MAGE-11 antigen|cancer/testis antigen 1.11|cancer/testis antigen family 1, member 11|melanoma-associated antigen 11 20121230 -9606 4111 MAGEA12 - CT1.12|MAGE12 HGNC:6799|MIM:300177|Ensembl:ENSG00000213401|HPRD:02169|Vega:OTTHUMG00000022650 X Xq28 melanoma antigen family A, 12 protein-coding MAGEA12 melanoma antigen family A, 12 O MAGE-12 antigen|MAGE12F antigen|cancer/testis antigen 1.12|cancer/testis antigen family 1, member 12|melanoma-associated antigen 12 20121230 -9606 4112 MAGEB1 - CT3.1|DAM10|MAGE-Xp|MAGEL1 HGNC:6808|MIM:300097|Ensembl:ENSG00000214107|HPRD:02108|Vega:OTTHUMG00000021322 X Xp21.3 melanoma antigen family B, 1 protein-coding MAGEB1 melanoma antigen family B, 1 O DSS-AHC critical interval MAGE superfamily 10|DSS/AHC critical interval MAGE superfamily 10|MAGE-B1 antigen|MAGE-XP antigen|cancer/testis antigen 3.1|cancer/testis antigen family 3, member 1|melanoma-associated antigen B1 20121230 -9606 4113 MAGEB2 - CT3.2|DAM6|MAGE-XP-2 HGNC:6809|MIM:300098|Ensembl:ENSG00000099399|HPRD:02109|Vega:OTTHUMG00000021319 X Xp21.3 melanoma antigen family B, 2 protein-coding MAGEB2 melanoma antigen family B, 2 O DSS-AHC critical interval MAGE superfamily 6|DSS/AHC critical interval MAGE superfamily 6|MAGE XP-2 antigen|MAGE-B2 antigen|cancer/testis antigen 3.2|cancer/testis antigen family 3, member 2|melanoma-associated antigen B2 20121230 -9606 4114 MAGEB3 - CT3.5 HGNC:6810|MIM:300152|Ensembl:ENSG00000198798|HPRD:02149|Vega:OTTHUMG00000021320 X Xp21.3 melanoma antigen family B, 3 protein-coding MAGEB3 melanoma antigen family B, 3 O MAGE-B3 antigen|cancer/testis antigen family 3, member 5|melanoma-associated antigen B3 20121230 -9606 4115 MAGEB4 - CT3.6 HGNC:6811|MIM:300153|Ensembl:ENSG00000120289|HPRD:02150|Vega:OTTHUMG00000021321 X Xp21.3 melanoma antigen family B, 4 protein-coding MAGEB4 melanoma antigen family B, 4 O MAGE-B4 antigen|cancer/testis antigen family 3, member 6|melanoma-associated antigen B4 20121230 -9606 4116 MAGOH RP5-1024G6.4 MAGOH1|MAGOHA HGNC:6815|MIM:602603|Ensembl:ENSG00000162385|HPRD:04005|Vega:OTTHUMG00000008932 1 1p32.3 mago-nashi homolog, proliferation-associated (Drosophila) protein-coding MAGOH mago-nashi homolog, proliferation-associated (Drosophila) O protein mago nashi homolog 20121230 -9606 4117 MAK RP3-417M14.2 RP62|dJ417M14.2 HGNC:6816|MIM:154235|Ensembl:ENSG00000111837|HPRD:01101|Vega:OTTHUMG00000014247 6 6p24 male germ cell-associated kinase protein-coding MAK male germ cell-associated kinase O male germ cell-associated kinase retinal-enriched isoform|serine/threonine protein kinase MAK|serine/threonine-protein kinase MAK 20121230 -9606 4118 MAL - - HGNC:6817|MIM:188860|Ensembl:ENSG00000172005|HPRD:01789|Vega:OTTHUMG00000132011 2 2q11.1 mal, T-cell differentiation protein protein-coding MAL mal, T-cell differentiation protein O T-lymphocyte maturation-associated protein|myelin and lymphocyte protein 20121230 -9606 4121 MAN1A1 - HUMM3|HUMM9|MAN9 HGNC:6821|MIM:604344|Ensembl:ENSG00000111885|HPRD:05066|Vega:OTTHUMG00000015472 6 6q22 mannosidase, alpha, class 1A, member 1 protein-coding MAN1A1 mannosidase, alpha, class 1A, member 1 O Man9-mannosidase|alpha-1,2-mannosidase IA|man(9)-alpha-mannosidase|mannosyl-oligosaccharide 1,2-alpha-mannosidase IA|processing alpha-1,2-mannosidase IA 20121230 -9606 4122 MAN2A2 - MANA2X HGNC:6825|MIM:600988|Ensembl:ENSG00000196547|HPRD:02994|Vega:OTTHUMG00000172385 15 15q26.1 mannosidase, alpha, class 2A, member 2 protein-coding MAN2A2 mannosidase, alpha, class 2A, member 2 O MAN IIx|alpha-mannosidase 2x|alpha-mannosidase IIx|mannosidase, alpha type II-X|mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase|manosidase, alpha-, type II, isozyme X 20121230 -9606 4123 MAN2C1 - MAN6A8|MANA|MANA1 HGNC:6827|MIM:154580|Ensembl:ENSG00000140400|HPRD:01109|Vega:OTTHUMG00000172698 15 15q11-q13 mannosidase, alpha, class 2C, member 1 protein-coding MAN2C1 mannosidase, alpha, class 2C, member 1 O alpha mannosidase 6A8B|alpha-D-mannoside mannohydrolase|alpha-mannosidase 2C1|mannosidase, alpha 6A8|mannosidase, alpha A, cytoplasmic 20121230 -9606 4124 MAN2A1 - GOLIM7|MANA2|MANII HGNC:6824|MIM:154582|Ensembl:ENSG00000112893|HPRD:01110|Vega:OTTHUMG00000162834 5 5q21-q22 mannosidase, alpha, class 2A, member 1 protein-coding MAN2A1 mannosidase, alpha, class 2A, member 1 O AMan II|Golgi alpha-mannosidase II|alpha-mannosidase 2|golgi integral membrane protein 7|man II|mannosidase, alpha type II|mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase 20121230 -9606 4125 MAN2B1 - LAMAN|MANB HGNC:6826|MIM:609458|Ensembl:ENSG00000104774|HPRD:02007|Vega:OTTHUMG00000156397 19 19cen-q13.1 mannosidase, alpha, class 2B, member 1 protein-coding MAN2B1 mannosidase, alpha, class 2B, member 1 O lysosomal acid alpha-mannosidase|lysosomal alpha-mannosidase|mannosidase alpha-B|mannosidase, alpha B, lysosomal 20121230 -9606 4126 MANBA - MANB1 HGNC:6831|MIM:609489|Ensembl:ENSG00000109323|HPRD:02008|Vega:OTTHUMG00000131123 4 4q22-q25 mannosidase, beta A, lysosomal protein-coding MANBA mannosidase, beta A, lysosomal O beta-mannosidase|lysosomal beta A mannosidase|mannanase|mannase 20121230 -9606 4127 MANBB - - HGNC:6832 - - mannosidase, beta B, soluble protein-coding MANBB mannosidase, beta B, soluble O - 20080828 -9606 4128 MAOA RP1-201D17__B.2 MAO-A HGNC:6833|MIM:309850|Ensembl:ENSG00000189221|HPRD:02400|Vega:OTTHUMG00000021387 X Xp11.3 monoamine oxidase A protein-coding MAOA monoamine oxidase A O amine oxidase [flavin-containing] A|monoamine oxidase type A 20121230 -9606 4129 MAOB RP1-201D17__B.1 - HGNC:6834|MIM:309860|Ensembl:ENSG00000069535|HPRD:02401|Vega:OTTHUMG00000021388 X Xp11.23 monoamine oxidase B protein-coding MAOB monoamine oxidase B O MAO, brain|MAO, platelet|MAO-B|adrenalin oxidase|amine oxidase [flavin-containing] B|monoamine oxidase type B|tyramine oxidase 20121230 -9606 4130 MAP1A - MAP1L|MTAP1A HGNC:6835|MIM:600178|Ensembl:ENSG00000166963|HPRD:02549|Vega:OTTHUMG00000059756 15 15q15.3 microtubule-associated protein 1A protein-coding MAP1A microtubule-associated protein 1A O MAP-1A|proliferation-related protein p80 20121230 -9606 4131 MAP1B - FUTSCH|MAP5 HGNC:6836|MIM:157129|Ensembl:ENSG00000131711|HPRD:01139|Vega:OTTHUMG00000100952 5 5q13 microtubule-associated protein 1B protein-coding MAP1B microtubule-associated protein 1B O MAP-1B 20121230 -9606 4133 MAP2 - MAP2A|MAP2B|MAP2C HGNC:6839|MIM:157130|Ensembl:ENSG00000078018|HPRD:01140|Vega:OTTHUMG00000132962 2 2q34-q35 microtubule-associated protein 2 protein-coding MAP2 microtubule-associated protein 2 O MAP-2 20121230 -9606 4134 MAP4 - - HGNC:6862|MIM:157132|Ensembl:ENSG00000047849|HPRD:01141|Vega:OTTHUMG00000156828 3 3p21 microtubule-associated protein 4 protein-coding MAP4 microtubule-associated protein 4 O MAP-4 20121230 -9606 4135 MAP6 - MTAP6|N-STOP|STOP HGNC:6868|MIM:601783|Ensembl:ENSG00000171533|HPRD:15989|Vega:OTTHUMG00000165343 11 11q13.5 microtubule-associated protein 6 protein-coding MAP6 microtubule-associated protein 6 O MAP-6|stable tubule-only polypeptide 20121230 -9606 4137 MAPT - DDPAC|FTDP-17|MAPTL|MSTD|MTBT1|MTBT2|PPND|TAU HGNC:6893|MIM:157140|Ensembl:ENSG00000186868|HPRD:01142|Vega:OTTHUMG00000168833 17 17q21.1 microtubule-associated protein tau protein-coding MAPT microtubule-associated protein tau O G protein beta1/gamma2 subunit-interacting factor 1|PHF-tau|neurofibrillary tangle protein|paired helical filament-tau 20121230 -9606 4139 MARK1 - MARK|Par-1c|Par1c HGNC:6896|MIM:606511|Ensembl:ENSG00000116141|HPRD:07353|Vega:OTTHUMG00000037351 1 1q41 MAP/microtubule affinity-regulating kinase 1 protein-coding MARK1 MAP/microtubule affinity-regulating kinase 1 O PAR1 homolog c|serine/threonine-protein kinase MARK1 20121230 -9606 4140 MARK3 - CTAK1|KP78|PAR1A|Par-1a HGNC:6897|MIM:602678|Ensembl:ENSG00000075413|HPRD:04058|Vega:OTTHUMG00000171789 14 14q32.3 MAP/microtubule affinity-regulating kinase 3 protein-coding MARK3 MAP/microtubule affinity-regulating kinase 3 O C-TAK1|ELKL motif kinase 2|EMK-2|cdc25C-associated protein kinase 1|protein kinase STK10|ser/Thr protein kinase PAR-1|serine/threonine-protein kinase p78 20121230 -9606 4141 MARS - METRS|MRS|MTRNS HGNC:6898|MIM:156560|Ensembl:ENSG00000166986|HPRD:08864|Vega:OTTHUMG00000169996 12 12q13 methionyl-tRNA synthetase protein-coding MARS methionyl-tRNA synthetase O cytosolic methionyl-tRNA synthetase|methionine tRNA ligase 1, cytoplasmic|methionine--tRNA ligase, cytoplasmic 20121230 -9606 4142 MAS1 - MAS HGNC:6899|MIM:165180|Ensembl:ENSG00000130368|HPRD:01306|Vega:OTTHUMG00000015944 6 6q25.3-q26 MAS1 oncogene protein-coding MAS1 MAS1 oncogene O proto-oncogene Mas 20121230 -9606 4143 MAT1A RP11-36D19.2 MAT|MATA1|SAMS|SAMS1 HGNC:6903|MIM:610550|Ensembl:ENSG00000151224|HPRD:02013|Vega:OTTHUMG00000018613 10 10q22 methionine adenosyltransferase I, alpha protein-coding MAT1A methionine adenosyltransferase I, alpha O MAT 1|MAT-I/III|S-adenosylmethionine synthase isoform type-1|S-adenosylmethionine synthetase isoform type-1|adoMet synthase 1|adoMet synthetase 1|methionine adenosyltransferase 1|methionine adenosyltransferase I/III 20121230 -9606 4144 MAT2A - MATA2|MATII|SAMS2 HGNC:6904|MIM:601468|Ensembl:ENSG00000168906|HPRD:03275|Vega:OTTHUMG00000130174 2 2p11.2 methionine adenosyltransferase II, alpha protein-coding MAT2A methionine adenosyltransferase II, alpha O MAT 2|MAT-II|S-adenosylmethionine synthase isoform type-2|adoMet synthase 2|adoMet synthetase 2|methionine adenosyltransferase 2 20121230 -9606 4145 MATK - CHK|CTK|HHYLTK|HYL|HYLTK|Lsk HGNC:6906|MIM:600038|Ensembl:ENSG00000007264|HPRD:02496|Vega:OTTHUMG00000180916 19 19p13.3 megakaryocyte-associated tyrosine kinase protein-coding MATK megakaryocyte-associated tyrosine kinase O CSK homologous kinase|Csk-homologous kinase|Csk-type protein tyrosine kinase|HYL tyrosine kinase|hematopoietic consensus tyrosine-lacking kinase|hydroxyaryl-protein kinase|leukocyte carboxyl-terminal src kinase related|megakaryocyte-associated tyrosine-protein kinase|protein kinase HYL|tyrosine kinase MATK|tyrosine-protein kinase CTK|tyrosylprotein kinase 20121230 -9606 4146 MATN1 - CMP|CRTM HGNC:6907|MIM:115437|Ensembl:ENSG00000162510|HPRD:00276|Vega:OTTHUMG00000003705 1 1p35 matrilin 1, cartilage matrix protein protein-coding MATN1 matrilin 1, cartilage matrix protein O cartilage matrix protein 20121230 -9606 4147 MATN2 UNQ193/PRO219 - HGNC:6908|MIM:602108|Ensembl:ENSG00000132561|HPRD:03660|Vega:OTTHUMG00000164795 8 8q22 matrilin 2 protein-coding MATN2 matrilin 2 O matrilin-2 20121230 -9606 4148 MATN3 - DIPOA|EDM5|HOA|OADIP|OS2 HGNC:6909|MIM:602109|Ensembl:ENSG00000132031|HPRD:03661|Vega:OTTHUMG00000151788 2 2p24-p23 matrilin 3 protein-coding MATN3 matrilin 3 O matrilin-3 20121230 -9606 4149 MAX - bHLHd4 HGNC:6913|MIM:154950|Ensembl:ENSG00000125952|HPRD:01113|Vega:OTTHUMG00000142809 14 14q23 MYC associated factor X protein-coding MAX MYC associated factor X O class D basic helix-loop-helix protein 4|protein max 20121230 -9606 4150 MAZ - PUR1|Pur-1|SAF-1|SAF-2|SAF-3|ZF87|ZNF801|Zif87 HGNC:6914|MIM:600999|Ensembl:ENSG00000103495|HPRD:02999|Vega:OTTHUMG00000132119 16 16p11.2 MYC-associated zinc finger protein (purine-binding transcription factor) protein-coding MAZ MYC-associated zinc finger protein (purine-binding transcription factor) O MAZI|myc-associated zinc finger protein|purine-binding transcription factor|serum amyloid A activating factor 1|serum amyloid A activating factor 2|transcription factor Zif87|zinc finger protein 801|zinc-finger protein, 87 kilodaltons 20121230 -9606 4151 MB RP4-569D19.7 PVALB HGNC:6915|MIM:160000|Ensembl:ENSG00000198125|HPRD:01170|Vega:OTTHUMG00000150606 22 22q13.1 myoglobin protein-coding MB myoglobin O - 20121230 -9606 4152 MBD1 - CXXC3|PCM1|RFT HGNC:6916|MIM:156535|Ensembl:ENSG00000141644|HPRD:01133|Vega:OTTHUMG00000132669 18 18q21 methyl-CpG binding domain protein 1 protein-coding MBD1 methyl-CpG binding domain protein 1 O CXXC-type zinc finger protein 3|methyl-CpG binding domain protein 1 isoform PCM1|methyl-CpG-binding domain protein 1|protein containing methyl-CpG-binding domain 1|the regulator of fibroblast growth factor 2 (FGF-2) transcription 20121230 -9606 4153 MBL2 RP11-94H3.1 COLEC1|HSMBPC|MBL|MBL2D|MBP|MBP-C|MBP1 HGNC:6922|MIM:154545|Ensembl:ENSG00000165471|HPRD:01107|Vega:OTTHUMG00000150270 10 10q11.2 mannose-binding lectin (protein C) 2, soluble protein-coding MBL2 mannose-binding lectin (protein C) 2, soluble O collectin-1|mannan-binding lectin|mannose-binding lectin (protein C) 2, soluble (opsonic defect)|mannose-binding lectin 2, soluble (opsonic defect)|mannose-binding protein C 20121230 -9606 4154 MBNL1 - EXP|EXP35|EXP40|EXP42|MBNL HGNC:6923|MIM:606516|Ensembl:ENSG00000152601|HPRD:07355|Vega:OTTHUMG00000159163 3 3q25 muscleblind-like splicing regulator 1 protein-coding MBNL1 muscleblind-like splicing regulator 1 O muscleblind-like protein 1|triplet-expansion RNA-binding protein 20121230 -9606 4155 MBP - - HGNC:6925|MIM:159430|Ensembl:ENSG00000197971|HPRD:01158|Vega:OTTHUMG00000132874 18 18q23 myelin basic protein protein-coding MBP myelin basic protein O myelin A1 protein|myelin membrane encephalitogenic protein 20121230 -9606 4156 MBS1 - MBS HGNC:6926|MIM:157900 13 13q12.2 Moebius syndrome 1 unknown MBS1 Moebius syndrome 1 O - 20110714 -9606 4157 MC1R - CMM5|MSH-R|SHEP2 HGNC:6929|MIM:155555|Ensembl:ENSG00000258839|HPRD:01118|Vega:OTTHUMG00000171163 16 16q24.3 melanocortin 1 receptor (alpha melanocyte stimulating hormone receptor) protein-coding MC1R melanocortin 1 receptor (alpha melanocyte stimulating hormone receptor) O MC1-R|melanocyte-stimulating hormone receptor|melanotropin receptor 20121230 -9606 4158 MC2R - ACTHR HGNC:6930|MIM:607397|Ensembl:ENSG00000185231|HPRD:06304|Vega:OTTHUMG00000131721 18 18p11.2 melanocortin 2 receptor (adrenocorticotropic hormone) protein-coding MC2R melanocortin 2 receptor (adrenocorticotropic hormone) O ACTH receptor|MC2 receptor|adrenocorticotropic hormone receptor|adrenocorticotropin receptor|corticotropin receptor 20121230 -9606 4159 MC3R - BMIQ9|MC3|MC3-R|OB20|OQTL HGNC:6931|MIM:155540|Ensembl:ENSG00000124089|HPRD:01115|Vega:OTTHUMG00000032785 20 20q13.2-q13.3 melanocortin 3 receptor protein-coding MC3R melanocortin 3 receptor O melanocortin receptor 3|obesity quantitative trait locus 20121230 -9606 4160 MC4R - - HGNC:6932|MIM:155541|Ensembl:ENSG00000166603|HPRD:01116|Vega:OTTHUMG00000132766 18 18q22 melanocortin 4 receptor protein-coding MC4R melanocortin 4 receptor O MC4-R|melanocortin receptor 4 20121230 -9606 4161 MC5R - MC2 HGNC:6933|MIM:600042|Ensembl:ENSG00000176136|HPRD:08965|Vega:OTTHUMG00000131720 18 18p11.2 melanocortin 5 receptor protein-coding MC5R melanocortin 5 receptor O melanocortin receptor 5|melanocortin-5 receptor 20121230 -9606 4162 MCAM - CD146|MUC18 HGNC:6934|MIM:155735|Ensembl:ENSG00000076706|HPRD:01120|Vega:OTTHUMG00000166197 11 11q23.3 melanoma cell adhesion molecule protein-coding MCAM melanoma cell adhesion molecule O Gicerin|S-endo 1 endothelial-associated antigen|cell surface glycoprotein MUC18|cell surface glycoprotein P1H12|melanoma adhesion molecule|melanoma-associated antigen A32|melanoma-associated antigen MUC18 20121230 -9606 4163 MCC - MCC1 HGNC:6935|MIM:159350|Ensembl:ENSG00000171444|HPRD:01157|Vega:OTTHUMG00000128804 5 5q21 mutated in colorectal cancers protein-coding MCC mutated in colorectal cancers O colorectal mutant cancer protein 20121230 -9606 4166 CHST6 - MCDC1 HGNC:6938|MIM:605294|Ensembl:ENSG00000183196|HPRD:05597|Vega:OTTHUMG00000137612 16 16q22 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 6 protein-coding CHST6 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 6 O C-GlcNAc6ST|GST4-beta|N-acetylglucosamine 6-O-sulfotransferase 5|carbohydrate sulfotransferase 6|corneal N-acetylglucosamine 6-sulfotransferase|corneal N-acetylglucosamine-6-O-sulfotransferase|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 4-beta|glcNAc6ST-5|gn6st-5|hCGn6ST 20121230 -9606 4167 MCDR1 - CAPED|NCMD HGNC:6939|MIM:136550 6 6q14-q16.2 macular dystrophy, retinal, 1 (North Carolina type) unknown MCDR1 macular dystrophy, retinal, 1 (North Carolina type) O - 20120622 -9606 4168 MCF2 RP6-88D7.2 ARHGEF21|DBL HGNC:6940|MIM:311030|Ensembl:ENSG00000101977|HPRD:02406|Vega:OTTHUMG00000022537 X Xq27 MCF.2 cell line derived transforming sequence protein-coding MCF2 MCF.2 cell line derived transforming sequence O Oncogene MCF2 (oncogene DBL)|proto-oncogene DBL|proto-oncogene MCF-2 20121230 -9606 4169 MCKD1 - ADMCKD|ADMCKD1|MCD|MCKD HGNC:6941|MIM:174000 1 1q21 medullary cystic kidney disease 1 (autosomal dominant) unknown MCKD1 medullary cystic kidney disease 1 (autosomal dominant) O - 20120622 -9606 4170 MCL1 - BCL2L3|EAT|MCL1-ES|MCL1L|MCL1S|Mcl-1|TM|bcl2-L-3|mcl1/EAT HGNC:6943|MIM:159552|Ensembl:ENSG00000143384|HPRD:08870|Vega:OTTHUMG00000034867 1 1q21 myeloid cell leukemia sequence 1 (BCL2-related) protein-coding MCL1 myeloid cell leukemia sequence 1 (BCL2-related) O bcl-2-like protein 3|bcl-2-related protein EAT/mcl1|induced myeloid leukemia cell differentiation protein Mcl-1|myeloid cell leukemia ES 20121230 -9606 4171 MCM2 - BM28|CCNL1|CDCL1|D3S3194|MITOTIN|cdc19 HGNC:6944|MIM:116945|Ensembl:ENSG00000073111|HPRD:00303|Vega:OTTHUMG00000159637 3 3q21 minichromosome maintenance complex component 2 protein-coding MCM2 minichromosome maintenance complex component 2 O DNA replication licensing factor MCM2|MCM2 minichromosome maintenance deficient 2, mitotin|cell devision cycle-like 1|cyclin-like 1|minichromosome maintenance deficient 2 (mitotin)|minichromosome maintenance protein 2 homolog|nuclear protein BM28 20121230 -9606 4172 MCM3 RP1-108C2.3 HCC5|P1-MCM3|P1.h|RLFB HGNC:6945|MIM:602693|Ensembl:ENSG00000112118|HPRD:04072|Vega:OTTHUMG00000014844 6 6p12 minichromosome maintenance complex component 3 protein-coding MCM3 minichromosome maintenance complex component 3 O DNA polymerase alpha holoenzyme-associated protein P1|DNA replication factor MCM3|DNA replication licensing factor MCM3|MCM3 minichromosome maintenance deficient 3|RLF subunit beta|cervical cancer proto-oncogene 5|hRlf beta subunit|minichromosome maintenance deficient 3|p102|replication licensing factor, beta subunit 20121230 -9606 4173 MCM4 - CDC21|CDC54|NKCD|NKGCD|P1-CDC21|hCdc21 HGNC:6947|MIM:602638|Ensembl:ENSG00000104738|HPRD:09094|Vega:OTTHUMG00000164205 8 8q11.2 minichromosome maintenance complex component 4 protein-coding MCM4 minichromosome maintenance complex component 4 O CDC21 homolog|DNA replication licensing factor MCM4|homolog of S. pombe cell devision cycle 21|minichromosome maintenance deficient 4 20121230 -9606 4174 MCM5 RP5-824I19__A.1 CDC46|P1-CDC46 HGNC:6948|MIM:602696|Ensembl:ENSG00000100297|HPRD:04075|Vega:OTTHUMG00000150961 22 22q13.1 minichromosome maintenance complex component 5 protein-coding MCM5 minichromosome maintenance complex component 5 O CDC46 homolog|DNA replication licensing factor MCM5|MCM5 minichromosome maintenance deficient 5, cell division cycle 46|minichromosome maintenance deficient 5 (cell division cycle 46) 20121230 -9606 4175 MCM6 - MCG40308|Mis5|P105MCM HGNC:6949|MIM:601806|Ensembl:ENSG00000076003|HPRD:03485|Vega:OTTHUMG00000131739 2 2q21 minichromosome maintenance complex component 6 protein-coding MCM6 minichromosome maintenance complex component 6 O DNA replication licensing factor MCM6|MCM6 minichromosome maintenance deficient 6 (MIS5 homolog, S. pombe)|minichromosome maintenance deficient (mis5, S. pombe) 6 20121230 -9606 4176 MCM7 - CDC47|MCM2|P1.1-MCM3|P1CDC47|P85MCM|PNAS146 HGNC:6950|MIM:600592|Ensembl:ENSG00000166508|HPRD:01154|Vega:OTTHUMG00000154671 7 7q21.3-q22.1 minichromosome maintenance complex component 7 protein-coding MCM7 minichromosome maintenance complex component 7 O CDC47 homolog|DNA replication licensing factor MCM7|homolog of S. cerevisiae Cdc47|minichromosome maintenance deficient 7 20121230 -9606 4178 MCO - - HGNC:6952 - - microphthalmia (Los Angeles type) unknown MCO microphthalmia (Los Angeles type) O - 20121129 -9606 4179 CD46 - AHUS2|MCP|MIC10|TLX|TRA2.10 HGNC:6953|MIM:120920|Ensembl:ENSG00000117335|HPRD:00406|Vega:OTTHUMG00000036397 1 1q32 CD46 molecule, complement regulatory protein protein-coding CD46 CD46 molecule, complement regulatory protein O CD46 antigen, complement regulatory protein|antigen identified by monoclonal antibody TRA-2-10|complement membrane cofactor protein|measles virus receptor|membrane cofactor protein|membrane cofactor protein (CD46, trophoblast-lymphocyte cross-reactive antigen)|trophoblast leucocyte common antigen|trophoblast leukocyte common antigen|trophoblast-lymphocyte cross-reactive antigen 20121230 -9606 4182 CD46P1 - CD46P|MCPL|MCPL1 HGNC:6959 1 1q32 CD46 molecule, complement regulatory protein pseudogene 1 pseudo CD46P1 CD46 molecule, complement regulatory protein pseudogene 1 O - 20121230 -9606 4183 MCS - MRXS4 HGNC:6961|MIM:309605 X Xq13-q22 Miles-Carpenter X-linked mental retardation syndrome unknown MCS Miles-Carpenter X-linked mental retardation syndrome O - 20120622 -9606 4184 SMCP RP1-13P20.4 HSMCSGEN1|MCS|MCSP HGNC:6962|MIM:601148|Ensembl:ENSG00000163206|HPRD:03093|Vega:OTTHUMG00000012452 1 1q21.3 sperm mitochondria-associated cysteine-rich protein protein-coding SMCP sperm mitochondria-associated cysteine-rich protein O mitochondrial capsule selenoprotein|sperm mitochondrial-associated cysteine-rich protein 20121230 -9606 4185 ADAM11 - MDC HGNC:189|MIM:155120|Ensembl:ENSG00000073670|HPRD:01114|Vega:OTTHUMG00000179038 17 17q21.3 ADAM metallopeptidase domain 11 protein-coding ADAM11 ADAM metallopeptidase domain 11 O ADAM 11|disintegrin and metalloproteinase domain-containing protein 11 20121230 -9606 4188 MDFI RP4-696P19.1 I-MF|I-mfa HGNC:6967|MIM:604971|Ensembl:ENSG00000112559|HPRD:07280|Vega:OTTHUMG00000014681 6 6p21 MyoD family inhibitor protein-coding MDFI MyoD family inhibitor O inhibitor of MyoD family a|myoD family inhibitor|myogenic repressor I-mf 20121230 -9606 4189 DNAJB9 UNQ743/PRO1471 ERdj4|MDG-1|MDG1|MST049|MSTP049 HGNC:6968|MIM:602634|Ensembl:ENSG00000128590|HPRD:07047|Vega:OTTHUMG00000154866 7 7q31|14q24.2-q24.3 DnaJ (Hsp40) homolog, subfamily B, member 9 protein-coding DNAJB9 DnaJ (Hsp40) homolog, subfamily B, member 9 O dnaJ homolog subfamily B member 9|endoplasmic reticulum DnaJ homolog 4|microvascular endothelial differentiation gene 1 protein 20121230 -9606 4190 MDH1 - MDH-s|MDHA|MGC:1375|MOR2 HGNC:6970|MIM:154200|Ensembl:ENSG00000014641|HPRD:01100|Vega:OTTHUMG00000129512 2 2p13.3 malate dehydrogenase 1, NAD (soluble) protein-coding MDH1 malate dehydrogenase 1, NAD (soluble) O cytosolic malate dehydrogenase|diiodophenylpyruvate reductase|malate dehydrogenase, cytoplasmic|soluble malate dehydrogenase 20121230 -9606 4191 MDH2 - M-MDH|MDH|MGC:3559|MOR1 HGNC:6971|MIM:154100|Ensembl:ENSG00000146701|HPRD:01099|Vega:OTTHUMG00000023827 7 7cen-q22 malate dehydrogenase 2, NAD (mitochondrial) protein-coding MDH2 malate dehydrogenase 2, NAD (mitochondrial) O malate dehydrogenase, mitochondrial 20121230 -9606 4192 MDK - ARAP|MK|NEGF2 HGNC:6972|MIM:162096|Ensembl:ENSG00000110492|HPRD:01200|Vega:OTTHUMG00000150315 11 11p11.2 midkine (neurite growth-promoting factor 2) protein-coding MDK midkine (neurite growth-promoting factor 2) O amphiregulin-associated protein|midgestation and kidney protein|midkine|neurite outgrowth-promoting factor 2|retinoic acid inducible factor 20121230 -9606 4193 MDM2 - ACTFS|HDMX|hdm2 HGNC:6973|MIM:164785|Ensembl:ENSG00000135679|HPRD:01272|Vega:OTTHUMG00000142827 12 12q14.3-q15 Mdm2, p53 E3 ubiquitin protein ligase homolog (mouse) protein-coding MDM2 Mdm2, p53 E3 ubiquitin protein ligase homolog (mouse) O E3 ubiquitin-protein ligase Mdm2|HDM2 transcript variant MYO-1|HDM2 transcript variant MYO-18|HDM2 transcript variant MYO-20|HDM2 transcript variant MYO-24|HDM2 transcript variant MYO-25|HDM2 transcript variant MYO-26|HDM2 transcript variant MYO-32|HDM2 transcript variant MYO-4|MDM2 variant FB28|MDM2 variant FB30|Mdm2, transformed 3T3 cell double minute 2, p53 binding protein|double minute 2, human homolog of; p53-binding protein|oncoprotein Mdm2 20121230 -9606 4194 MDM4 RP11-430C7.1 HDMX|MDMX|MRP1 HGNC:6974|MIM:602704|Ensembl:ENSG00000198625|HPRD:04082|Vega:OTTHUMG00000035877 1 1q32 Mdm4 p53 binding protein homolog (mouse) protein-coding MDM4 Mdm4 p53 binding protein homolog (mouse) O MDM4-related protein 1|Mdm4, transformed 3T3 cell double minute 4, p53 binding protein|double minute 4, human homolog of; p53-binding protein|mdm2-like p53-binding protein|protein Mdm4|protein Mdmx 20121230 -9606 4195 MDRV - NIPA2 HGNC:6978|MIM:601846 19 19p13.3 muscular dystrophy, with rimmed vacuoles unknown MDRV muscular dystrophy, with rimmed vacuoles O - 20120622 -9606 4199 ME1 - HUMNDME|MES HGNC:6983|MIM:154250|Ensembl:ENSG00000065833|HPRD:01102|Vega:OTTHUMG00000015111 6 6q12 malic enzyme 1, NADP(+)-dependent, cytosolic protein-coding ME1 malic enzyme 1, NADP(+)-dependent, cytosolic O Malic enzyme, cytoplasmic|NADP-ME|NADP-dependent malic enzyme|malate dehydrogenase|malic enzyme 1, soluble|pyruvic-malic carboxylase 20121230 -9606 4200 ME2 - ODS1 HGNC:6984|MIM:154270|Ensembl:ENSG00000082212|HPRD:01103|Vega:OTTHUMG00000132694 18 18q21 malic enzyme 2, NAD(+)-dependent, mitochondrial protein-coding ME2 malic enzyme 2, NAD(+)-dependent, mitochondrial O NAD-ME|NAD-dependent malic enzyme, mitochondrial|malate dehydrogenase|pyruvic-malic carboxylase 20121230 -9606 4201 MEA1 - HYS|MEA HGNC:6986|MIM:143170|Ensembl:ENSG00000124733|HPRD:00885|Vega:OTTHUMG00000014717 6 6p21.3-p21.1 male-enhanced antigen 1 protein-coding MEA1 male-enhanced antigen 1 O MEA-1|Male-enhanced antigen (H-Y structural gene) 20121230 -9606 4204 MECP2 - AUTSX3|MRX16|MRX79|MRXS13|MRXSL|PPMX|RS|RTS|RTT HGNC:6990|MIM:300005|Ensembl:ENSG00000169057|HPRD:02050|Vega:OTTHUMG00000024229 X Xq28 methyl CpG binding protein 2 (Rett syndrome) protein-coding MECP2 methyl CpG binding protein 2 (Rett syndrome) O meCp-2 protein|methyl-CpG-binding protein 2 20121230 -9606 4205 MEF2A - ADCAD1|RSRFC4|RSRFC9|mef2 HGNC:6993|MIM:600660|Ensembl:ENSG00000068305|HPRD:02807|Vega:OTTHUMG00000171937 15 15q26 myocyte enhancer factor 2A protein-coding MEF2A myocyte enhancer factor 2A O MADS box transcription enhancer factor 2, polypeptide A (myocyte enhancer factor 2A)|myocyte-specific enhancer factor 2A|serum response factor-like protein 1 20121230 -9606 4206 MEF2AP1 RP11-215I23.3 MEF2AP HGNC:6994 1 1q24-q25 myocyte enhancer factor 2A pseudogene 1 pseudo MEF2AP1 myocyte enhancer factor 2A pseudogene 1 O - 20121230 -9606 4207 MEF2BNB-MEF2B - LOC729991-MEF2B|MEF2B HGNC:39979|Ensembl:ENSG00000064489|Ensembl:ENSG00000213999|HPRD:02808|Vega:OTTHUMG00000154572 19 19p13.11 MEF2BNB-MEF2B readthrough protein-coding MEF2BNB-MEF2B MEF2BNB-MEF2B readthrough O LOC729991-MEF2B readthrough|myocyte enhancer factor 2B 20121230 -9606 4208 MEF2C - C5DELq14.3|DEL5q14.3 HGNC:6996|MIM:600662|Ensembl:ENSG00000081189|HPRD:02809|Vega:OTTHUMG00000162634 5 5q14 myocyte enhancer factor 2C protein-coding MEF2C myocyte enhancer factor 2C O MADS box transcription enhancer factor 2, polypeptide C|myocyte-specific enhancer factor 2C 20121230 -9606 4209 MEF2D RP11-98G7.2 - HGNC:6997|MIM:600663|Ensembl:ENSG00000116604|HPRD:02810|Vega:OTTHUMG00000033095 1 1q12-q23 myocyte enhancer factor 2D protein-coding MEF2D myocyte enhancer factor 2D O MADS box transcription enhancer factor 2, polypeptide D|myocyte-specific enhancer factor 2D 20121230 -9606 4210 MEFV - FMF|MEF|TRIM20 HGNC:6998|MIM:608107|Ensembl:ENSG00000103313|HPRD:02012|Vega:OTTHUMG00000129324 16 16p13.3 Mediterranean fever protein-coding MEFV Mediterranean fever O marenostrin|pyrin 20121230 -9606 4211 MEIS1 - - HGNC:7000|MIM:601739|Ensembl:ENSG00000143995|HPRD:03442|Vega:OTTHUMG00000150714 2 2p14 Meis homeobox 1 protein-coding MEIS1 Meis homeobox 1 O Meis1, myeloid ecotropic viral integration site 1 homolog|WUGSC:H_NH0444B04.1|homeobox protein Meis1|leukemogenic homolog protein 20121230 -9606 4212 MEIS2 - HsT18361|MRG1 HGNC:7001|MIM:601740|Ensembl:ENSG00000134138|HPRD:03443|Vega:OTTHUMG00000129781 15 15q14 Meis homeobox 2 protein-coding MEIS2 Meis homeobox 2 O Meis homolog 2|Meis1, myeloid ecotropic viral integration site 1 homolog 2|Meis1-related gene 1|TALE homeobox protein Meis2|homeobox protein Meis2|meis1-related protein 1 20121230 -9606 4213 MEIS3P1 - MEIS3|MEIS4|MRG2 HGNC:7002 17 17p12 Meis homeobox 3 pseudogene 1 pseudo MEIS3P1 Meis homeobox 3 pseudogene 1 O - 20121230 -9606 4214 MAP3K1 - MAPKKK1|MEKK|MEKK 1|MEKK1|SRXY6 HGNC:6848|MIM:600982|Ensembl:ENSG00000095015|Vega:OTTHUMG00000059486 5 5q11.2 mitogen-activated protein kinase kinase kinase 1, E3 ubiquitin protein ligase protein-coding MAP3K1 mitogen-activated protein kinase kinase kinase 1, E3 ubiquitin protein ligase O MAP/ERK kinase kinase 1|MAPK/ERK kinase kinase 1|MEK kinase 1|mitogen-activated protein kinase kinase kinase 1 20121230 -9606 4215 MAP3K3 - MAPKKK3|MEKK3 HGNC:6855|MIM:602539|Ensembl:ENSG00000198909|HPRD:03965|Vega:OTTHUMG00000178905 17 17q23.3 mitogen-activated protein kinase kinase kinase 3 protein-coding MAP3K3 mitogen-activated protein kinase kinase kinase 3 O MAP/ERK kinase kinase 3|MAPK/ERK kinase kinase 3|MEK kinase 3|MEKK 3 20121230 -9606 4216 MAP3K4 RP3-473J16.4 MAPKKK4|MEKK4|MTK1|PRO0412 HGNC:6856|MIM:602425|Ensembl:ENSG00000085511|HPRD:03886|Vega:OTTHUMG00000015968 6 6q26 mitogen-activated protein kinase kinase kinase 4 protein-coding MAP3K4 mitogen-activated protein kinase kinase kinase 4 O MAP three kinase 1|MAP/ERK kinase kinase 4|MAPK/ERK kinase kinase 4|MEK kinase 4|MEKK 4|SSK2/SSK22 MAP kinase kinase kinase, yeast, homolog of|dJ473J16.1 (mitogen-activated protein kinase kinase kinase 4)|predicted protein of HQ0412 20121230 -9606 4217 MAP3K5 RP3-325F22.4 ASK1|MAPKKK5|MEKK5 HGNC:6857|MIM:602448|Ensembl:ENSG00000197442|HPRD:03904|Vega:OTTHUMG00000015647 6 6q22.33 mitogen-activated protein kinase kinase kinase 5 protein-coding MAP3K5 mitogen-activated protein kinase kinase kinase 5 O ASK-1|MAP/ERK kinase kinase 5|MAPK/ERK kinase kinase 5|MEK kinase 5|MEKK 5|apoptosis signal regulating kinase 1|apoptosis signal-regulating kinase 1 20121230 -9606 4218 RAB8A - MEL|RAB8 HGNC:7007|MIM:165040|Ensembl:ENSG00000167461|HPRD:01296|Vega:OTTHUMG00000182238 19 19p13.1 RAB8A, member RAS oncogene family protein-coding RAB8A RAB8A, member RAS oncogene family O mel transforming oncogene (RAB8 homolog)|mel transforming oncogene (derived from cell line NK14)|mel transforming oncogene (derived from cell line NK14)- RAB8 homolog|oncogene c-mel|ras-associated protein RAB8|ras-related protein Rab-8A 20121230 -9606 4221 MEN1 - MEAI|SCG2 HGNC:7010|MIM:613733|Ensembl:ENSG00000133895|HPRD:00564|Vega:OTTHUMG00000045366 11 11q13 multiple endocrine neoplasia I protein-coding MEN1 multiple endocrine neoplasia I O menin 20121230 -9606 4222 MEOX1 - MOX1 HGNC:7013|MIM:600147|Ensembl:ENSG00000005102|HPRD:02537|Vega:OTTHUMG00000170513 17 17q21 mesenchyme homeobox 1 protein-coding MEOX1 mesenchyme homeobox 1 O homeobox protein MOX-1 20121230 -9606 4223 MEOX2 - GAX|MOX2 HGNC:7014|MIM:600535|Ensembl:ENSG00000106511|HPRD:02760|Vega:OTTHUMG00000152390 7 7p22.1-p21.3 mesenchyme homeobox 2 protein-coding MEOX2 mesenchyme homeobox 2 O growth arrest-specific homeobox|homeobox protein MOX-2 20121230 -9606 4224 MEP1A - PPHA HGNC:7015|MIM:600388|Ensembl:ENSG00000112818|HPRD:02666|Vega:OTTHUMG00000014790 6 6p12-p11 meprin A, alpha (PABA peptide hydrolase) protein-coding MEP1A meprin A, alpha (PABA peptide hydrolase) O N-benzoyl-L-tyrosyl-P-amino-benzoic acid hydrolase subunit alpha|PABA peptide hydrolase|PPH alpha|bA268F1.1 (meprin A alpha (PABA peptide hydrolase))|endopeptidase-2|meprin A subunit alpha 20121230 -9606 4225 MEP1B - - HGNC:7020|MIM:600389|Ensembl:ENSG00000141434|HPRD:02667|Vega:OTTHUMG00000179708 18 18q12.2-q12.3 meprin A, beta protein-coding MEP1B meprin A, beta O N-benzoyl-L-tyrosyl-P-amino-benzoic acid hydrolase subunit beta|N-benzoyl-L-tyrosyl-p-amino-benzoic acid hydrolase beta subunit|PABA peptide hydrolase|PPH beta|endopeptidase-2|meprin A subunit beta|meprin B 20121230 -9606 4228 MER5 - - HGNC:7023 19 19q13.3 antigen identified by monoclonal antibody 2D8 protein-coding MER5 antigen identified by monoclonal antibody 2D8 O - 20080828 -9606 4232 MEST - PEG1 HGNC:7028|MIM:601029|Ensembl:ENSG00000106484|HPRD:06776|Vega:OTTHUMG00000156661 7 7q32 mesoderm specific transcript protein-coding MEST mesoderm specific transcript O mesoderm specific transcript homolog|mesoderm-specific transcript homolog protein|paternally-expressed gene 1 protein 20121230 -9606 4233 MET - AUTS9|HGFR|RCCP2|c-Met HGNC:7029|MIM:164860|Ensembl:ENSG00000105976|HPRD:01280|Vega:OTTHUMG00000023299 7 7q31 met proto-oncogene (hepatocyte growth factor receptor) protein-coding MET met proto-oncogene (hepatocyte growth factor receptor) O HGF receptor|HGF/SF receptor|SF receptor|hepatocyte growth factor receptor|met proto-oncogene tyrosine kinase|proto-oncogene c-Met|scatter factor receptor|tyrosine-protein kinase Met 20121230 -9606 4234 METTL1 - C12orf1|TRM8|TRMT8|YDL201w HGNC:7030|MIM:604466|Ensembl:ENSG00000037897|HPRD:06834|Vega:OTTHUMG00000150143 12 12q13 methyltransferase like 1 protein-coding METTL1 methyltransferase like 1 O D1075-like gene product|methyltransferase-like 1|methyltransferase-like protein 1|tRNA (guanine(46)-N(7))-methyltransferase|tRNA (guanine-N(7)-)-methyltransferase|tRNA(m7G46)-methyltransferase 20121230 -9606 4235 MF4 - - HGNC:7031|MIM:309630 X - metacarpal 4-5 fusion unknown MF4 metacarpal 4-5 fusion O - 20110215 -9606 4236 MFAP1 - - HGNC:7032|MIM:600215|Ensembl:ENSG00000140259|HPRD:02569|Vega:OTTHUMG00000060145 15 15q15-q21 microfibrillar-associated protein 1 protein-coding MFAP1 microfibrillar-associated protein 1 O - 20121230 -9606 4237 MFAP2 RP1-37C10.2 MAGP|MAGP-1|MAGP1 HGNC:7033|MIM:156790|Ensembl:ENSG00000117122|HPRD:01137|Vega:OTTHUMG00000002290 1 1p36.1-p35 microfibrillar-associated protein 2 protein-coding MFAP2 microfibrillar-associated protein 2 O microfibril-associated glycoprotein 1 20121230 -9606 4238 MFAP3 - - HGNC:7034|MIM:600491|Ensembl:ENSG00000037749|HPRD:02731|Vega:OTTHUMG00000130149 5 5q32-q33.2 microfibrillar-associated protein 3 protein-coding MFAP3 microfibrillar-associated protein 3 O microfibril-associated glycoprotein 3 20121230 -9606 4239 MFAP4 - - HGNC:7035|MIM:600596|Ensembl:ENSG00000166482|HPRD:02789|Vega:OTTHUMG00000059585 17 17p11.2 microfibrillar-associated protein 4 protein-coding MFAP4 microfibrillar-associated protein 4 O microfibril-associated glycoprotein 4 20121230 -9606 4240 MFGE8 - BA46|EDIL1|HMFG|HsT19888|MFG-E8|MFGM|OAcGD3S|SED1|SPAG10|hP47 HGNC:7036|MIM:602281|Ensembl:ENSG00000140545|HPRD:03789|Vega:OTTHUMG00000148682 15 15q25 milk fat globule-EGF factor 8 protein protein-coding MFGE8 milk fat globule-EGF factor 8 protein O O-acetyl disialoganglioside synthase|breast epithelial antigen BA46|lactadherin|medin|sperm associated antigen 10|sperm surface protein hP47 20121230 -9606 4241 MFI2 - CD228|MAP97|MTF1 HGNC:7037|MIM:155750|Ensembl:ENSG00000163975|HPRD:01122|Vega:OTTHUMG00000155518 3 3q28-q29 antigen p97 (melanoma associated) identified by monoclonal antibodies 133.2 and 96.5 protein-coding MFI2 antigen p97 (melanoma associated) identified by monoclonal antibodies 133.2 and 96.5 O melanoma-associated antigen p97|melanotransferrin|membrane-bound transferrin-like protein 20121230 -9606 4242 MFNG CTA-390B3.1 - HGNC:7038|MIM:602577|Ensembl:ENSG00000100060|HPRD:03988|Vega:OTTHUMG00000150560 22 22q12 MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding MFNG MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase O O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase|beta-1,3-N-acetylglucosaminyltransferase manic fringe 20121230 -9606 4245 MGAT1 - GLCNAC-TI|GLCT1|GLYT1|GNT-1|GNT-I|MGAT HGNC:7044|MIM:160995|Ensembl:ENSG00000131446|HPRD:01189|Vega:OTTHUMG00000130937 5 5q35 mannosyl (alpha-1,3-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase protein-coding MGAT1 mannosyl (alpha-1,3-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase O N-glycosyl-oligosaccharide-glycoprotein N-acetylglucosaminyltransferase I|alpha-1,3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase|glcNAc-T I 20121230 -9606 4246 SCGB2A1 - LPHC|MGB2|UGB3 HGNC:7051|MIM:604398|Ensembl:ENSG00000124939|HPRD:05096|Vega:OTTHUMG00000167506 11 11q13 secretoglobin, family 2A, member 1 protein-coding SCGB2A1 secretoglobin, family 2A, member 1 O lacryglobin|lipophilin C|lipophilin-C|mammaglobin 2|mammaglobin B|mammaglobin-2|mammaglobin-B 20121230 -9606 4247 MGAT2 - CDG2A|CDGS2|GLCNACTII|GNT-II|GNT2 HGNC:7045|MIM:602616|Ensembl:ENSG00000168282|HPRD:04013|Vega:OTTHUMG00000140271 14 14q21 mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase protein-coding MGAT2 mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase O Beta-1,2-N-acetylglucosaminyltransferase II|N-glycosyl-oligosaccharide-glycoprotein N-acetylglucosaminyltransferase II|UDP-N-acetylglucosamine:alpha-6-D-mannoside beta-1,2-N-acetylglucosaminyltransferase II|alpha-1,6-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase|glcNAc-T II|mannoside acetylglucosaminyltransferase 2 20121230 -9606 4248 MGAT3 RP5-1104E15.2 GNT-III|GNT3 HGNC:7046|MIM:604621|Ensembl:ENSG00000128268|HPRD:07058|Vega:OTTHUMG00000030185 22 22q13.1 mannosyl (beta-1,4-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase protein-coding MGAT3 mannosyl (beta-1,4-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase O GlcNAc-T III|N-acetylglucosaminyltransferase III|N-glycosyl-oligosaccharide-glycoprotein N-acetylglucosaminyltransferase III|beta-1,4-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase 20121230 -9606 4249 MGAT5 - GNT-V|GNT-VA HGNC:7049|MIM:601774|Ensembl:ENSG00000152127|HPRD:03467|Vega:OTTHUMG00000131681 2 2q21.3 mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase protein-coding MGAT5 mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase O N-acetylglucosaminyl-transferase V|alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase A|alpha-mannoside beta-1,6-N-acetylglucosaminyltransferase|glcNAc-T V|mannoside acetylglucosaminyltransferase 5 20121230 -9606 4250 SCGB2A2 - MGB1|UGB2 HGNC:7050|MIM:605562|Ensembl:ENSG00000110484|HPRD:05712|Vega:OTTHUMG00000167509 11 11q13 secretoglobin, family 2A, member 2 protein-coding SCGB2A2 secretoglobin, family 2A, member 2 O mammaglobin 1|mammaglobin A|mammaglobin-1|mammaglobin-A 20121230 -9606 4251 MGC1 - MGCN HGNC:7052|MIM:309300 X Xq12-q26 megalocornea 1 (X-linked) unknown MGC1 megalocornea 1 (X-linked) O - 20120622 -9606 4253 CTAGE5 - MEA6|MGEA|MGEA11|MGEA6 HGNC:7057|MIM:602132|Ensembl:ENSG00000150527|Ensembl:ENSG00000258941|HPRD:03680|Vega:OTTHUMG00000140258|Vega:OTTHUMG00000170752 14 14q13.3 CTAGE family, member 5 protein-coding CTAGE5 CTAGE family, member 5 O cutaneous T-cell lymphoma-associated antigen 5|meningioma expressed antigen 6 (coiled-coil proline-rich)|meningioma-expressed antigen 6/11|protein cTAGE-5 20121230 -9606 4254 KITLG - FPH2|KL-1|Kitl|MGF|SCF|SF|SHEP7 HGNC:6343|MIM:184745|Ensembl:ENSG00000049130|HPRD:01698|Vega:OTTHUMG00000169888 12 12q22 KIT ligand protein-coding KITLG KIT ligand O c-Kit ligand|familial progressive hyperpigmentation 2|kit ligand|mast cell growth factor|steel factor|stem cell factor 20121230 -9606 4255 MGMT RP11-109A6.1 - HGNC:7059|MIM:156569|Ensembl:ENSG00000170430|HPRD:01135|Vega:OTTHUMG00000019261 10 10q26 O-6-methylguanine-DNA methyltransferase protein-coding MGMT O-6-methylguanine-DNA methyltransferase O 6-O-methylguanine-DNA methyltransferase|O-6-methylguanine-DNA-alkyltransferase|O6-methylguanine-DNA methyltransferase|methylated-DNA--protein-cysteine methyltransferase|methylguanine-DNA methyltransferase 20121230 -9606 4256 MGP GIG36 MGLAP|NTI HGNC:7060|MIM:154870|Ensembl:ENSG00000111341|HPRD:01112|Vega:OTTHUMG00000168740 12 12p12.3 matrix Gla protein protein-coding MGP matrix Gla protein O cell growth-inhibiting gene 36 protein 20121230 -9606 4257 MGST1 - GST12|MGST|MGST-I HGNC:7061|MIM:138330|Ensembl:ENSG00000008394|HPRD:00705|Vega:OTTHUMG00000168816 12 12p12.3-p12.1 microsomal glutathione S-transferase 1 protein-coding MGST1 microsomal glutathione S-transferase 1 O glutathione S-transferase 12|microsomal GST-1|microsomal GST-I 20121230 -9606 4258 MGST2 - GST2|MGST-II HGNC:7063|MIM:601733|Ensembl:ENSG00000085871|HPRD:03436|Vega:OTTHUMG00000133382 4 4q28.3 microsomal glutathione S-transferase 2 protein-coding MGST2 microsomal glutathione S-transferase 2 O microsomal GST-2|microsomal GST-II 20121230 -9606 4259 MGST3 RP11-466F5.1 GST-III HGNC:7064|MIM:604564|Ensembl:ENSG00000143198|HPRD:05192|Vega:OTTHUMG00000034627 1 1q23 microsomal glutathione S-transferase 3 protein-coding MGST3 microsomal glutathione S-transferase 3 O microsomal GST-3|microsomal GST-III|microsomal glutathione S-transferase III 20121230 -9606 4261 CIITA - C2TA|CIITAIV|MHC2TA|NLRA HGNC:7067|MIM:600005|Ensembl:ENSG00000179583|HPRD:02475|Vega:OTTHUMG00000129753 16 16p13 class II, major histocompatibility complex, transactivator protein-coding CIITA class II, major histocompatibility complex, transactivator O MHC class II transactivator|MHC class II transactivator type III|NLR family, acid domain containing|nucleotide-binding oligomerization domain, leucine rich repeat and acid domain containing 20121230 -9606 4264 MHS2 - - HGNC:7071|MIM:154275 17 17q11.2-q24 malignant hyperthermia susceptibility 2 unknown MHS2 malignant hyperthermia susceptibility 2 O - 20120622 -9606 4265 MHS4 - - HGNC:7073|MIM:600467 3 3q13.1 malignant hyperthermia susceptibility 4 unknown MHS4 malignant hyperthermia susceptibility 4 O - 20120622 -9606 4266 MHS6 - - HGNC:7075|MIM:601888 5 5p malignant hyperthermia susceptibility 6 unknown MHS6 malignant hyperthermia susceptibility 6 O - 20120622 -9606 4267 CD99 - HBA71|MIC2|MIC2X|MIC2Y|MSK5X HGNC:7082|MIM:313470|MIM:450000|Ensembl:ENSG00000002586|HPRD:02434|HPRD:02465|Vega:OTTHUMG00000021073 X|Y Xp22.32 and Yp11.3 CD99 molecule protein-coding CD99 CD99 molecule O CD99 antigen|E2 antigen|MIC2 (monoclonal antibody 12E7)|T-cell surface glycoprotein E2|antigen identified by monoclonal 12E7, Y homolog|antigen identified by monoclonal antibodies 12E7, F21 and O13|surface antigen MIC2 20121230 -9606 4270 MIC7 - - HGNC:7088|MIM:108990 15 15q11-q22 antigen identified by monoclonal antibody 28.3.7 unknown MIC7 antigen identified by monoclonal antibody 28.3.7 O - 20080828 -9606 4273 MIC12 - - HGNC:7079|MIM:107254 15 15q11-q22 antigen identified by monoclonal antibody 30.2A8 unknown MIC12 antigen identified by monoclonal antibody 30.2A8 O - 20090625 -9606 4277 MICB DAAP-210H10.1 PERB11.2 HGNC:7091|MIM:602436|Ensembl:ENSG00000204516|HPRD:03894|Vega:OTTHUMG00000031074 6 6p21.3 MHC class I polypeptide-related sequence B protein-coding MICB MHC class I polypeptide-related sequence B O MHC class I chain-related protein B|MHC class I mic-B antigen|MHC class I-like molecule PERB11.2-IMX|MIC-B|stress inducible class I homolog 20121230 -9606 4279 MICD - PERB11.4 HGNC:7093 6 6p21.3 MHC class I polypeptide-related sequence D (pseudogene) pseudo MICD MHC class I polypeptide-related sequence D (pseudogene) O - 20121230 -9606 4280 MICE - PERB11.5|dJ377H14.7 HGNC:7094 6 6p21.3 MHC class I polypeptide-related sequence E (pseudogene) pseudo MICE MHC class I polypeptide-related sequence E (pseudogene) O - 20121230 -9606 4281 MID1 - BBBG1|FXY|GBBB1|MIDIN|OGS1|OS|OSX|RNF59|TRIM18|XPRF|ZNFXY HGNC:7095|MIM:300552|Ensembl:ENSG00000101871|HPRD:02047|Vega:OTTHUMG00000021127 X Xp22 midline 1 (Opitz/BBB syndrome) protein-coding MID1 midline 1 (Opitz/BBB syndrome) O RING finger protein 59|midline 1 RING finger protein|midline-1|putative transcription factor XPRF|tripartite motif protein TRIM18|tripartite motif-containing protein 18|zinc finger on X and Y, mouse, homolog of 20121230 -9606 4282 MIF - GIF|GLIF|MMIF HGNC:7097|MIM:153620|Ensembl:ENSG00000240972|HPRD:01091|Vega:OTTHUMG00000150773 22 22q11.23 macrophage migration inhibitory factor (glycosylation-inhibiting factor) protein-coding MIF macrophage migration inhibitory factor (glycosylation-inhibiting factor) O L-dopachrome isomerase|L-dopachrome tautomerase|macrophage migration inhibitory factor|phenylpyruvate tautomerase 20121230 -9606 4283 CXCL9 - CMK|Humig|MIG|SCYB9|crg-10 HGNC:7098|MIM:601704|Ensembl:ENSG00000138755|HPRD:03416|Vega:OTTHUMG00000160889 4 4q21 chemokine (C-X-C motif) ligand 9 protein-coding CXCL9 chemokine (C-X-C motif) ligand 9 O C-X-C motif chemokine 9|gamma-interferon-induced monokine|monokine induced by gamma interferon|monokine induced by interferon-gamma|small-inducible cytokine B9 20121230 -9606 4284 MIP - AQP0|LIM1|MIP26|MP26 HGNC:7103|MIM:154050|Ensembl:ENSG00000135517|HPRD:01098|Vega:OTTHUMG00000170571 12 12q13 major intrinsic protein of lens fiber protein-coding MIP major intrinsic protein of lens fiber O aquaporin 0|lens fiber major intrinsic protein 20121230 -9606 4285 MIPEP RP11-173N17.1 HMIP|MIP HGNC:7104|MIM:602241|Ensembl:ENSG00000027001|HPRD:03761|Vega:OTTHUMG00000016573 13 13q12 mitochondrial intermediate peptidase protein-coding MIPEP mitochondrial intermediate peptidase O - 20121230 -9606 4286 MITF - CMM8|MI|WS2|WS2A|bHLHe32 HGNC:7105|MIM:156845|Ensembl:ENSG00000187098|HPRD:01138|Vega:OTTHUMG00000149921 3 3p14.2-p14.1 microphthalmia-associated transcription factor protein-coding MITF microphthalmia-associated transcription factor O class E basic helix-loop-helix protein 32 20121230 -9606 4287 ATXN3 - AT3|ATX3|JOS|MJD|MJD1|SCA3 HGNC:7106|MIM:607047|Ensembl:ENSG00000066427|HPRD:06131|Vega:OTTHUMG00000162212 14 14q21 ataxin 3 protein-coding ATXN3 ataxin 3 O Machado-Joseph disease (spinocerebellar ataxia 3, olivopontocerebellar ataxia 3, autosomal dominant, ataxin 3)|Machado-Joseph disease protein 1|ataxin 3 variant h|ataxin 3 variant m|ataxin 3 variant ref|ataxin-3|josephin|olivopontocerebellar ataxia 3|spinocerebellar ataxia type 3 protein 20121230 -9606 4288 MKI67 RP11-380J17.2 KIA HGNC:7107|MIM:176741|Ensembl:ENSG00000148773|HPRD:08902|Vega:OTTHUMG00000019255 10 10q26.2 antigen identified by monoclonal antibody Ki-67 protein-coding MKI67 antigen identified by monoclonal antibody Ki-67 O antigen KI-67|proliferation-related Ki-67 antigen 20121230 -9606 4289 MKLN1 - TWA2 HGNC:7109|MIM:605623|Ensembl:ENSG00000128585|HPRD:16129|Vega:OTTHUMG00000154880 7 7q32 muskelin 1, intracellular mediator containing kelch motifs protein-coding MKLN1 muskelin 1, intracellular mediator containing kelch motifs O muskelin 20121230 -9606 4291 MLF1 - - HGNC:7125|MIM:601402|Ensembl:ENSG00000178053|HPRD:03239|Vega:OTTHUMG00000158775 3 3q25.1 myeloid leukemia factor 1 protein-coding MLF1 myeloid leukemia factor 1 O myelodysplasia-myeloid leukemia factor 1 20121230 -9606 4292 MLH1 - COCA2|FCC2|HNPCC|HNPCC2|hMLH1 HGNC:7127|MIM:120436|Ensembl:ENSG00000076242|HPRD:00390|Vega:OTTHUMG00000130797 3 3p21.3 mutL homolog 1, colon cancer, nonpolyposis type 2 (E. coli) protein-coding MLH1 mutL homolog 1, colon cancer, nonpolyposis type 2 (E. coli) O DNA mismatch repair protein Mlh1 20121230 -9606 4293 MAP3K9 - MEKK9|MLK1|PRKE1 HGNC:6861|MIM:600136|Ensembl:ENSG00000006432|HPRD:15965|Vega:OTTHUMG00000171249 14 14q24.2 mitogen-activated protein kinase kinase kinase 9 protein-coding MAP3K9 mitogen-activated protein kinase kinase kinase 9 O mixed lineage kinase 1 (tyr and ser/thr specificity) 20121230 -9606 4294 MAP3K10 - MEKK10|MLK2|MST HGNC:6849|MIM:600137|Ensembl:ENSG00000130758|HPRD:02533 19 19q13.2 mitogen-activated protein kinase kinase kinase 10 protein-coding MAP3K10 mitogen-activated protein kinase kinase kinase 10 O MKN28 derived nonreceptor_type serine/threonine kinase|MKN28 kinase|mixed lineage kinase 2|protein kinase MST 20121230 -9606 4295 MLN - - HGNC:7141|MIM:158270|Ensembl:ENSG00000096395|HPRD:15931|Vega:OTTHUMG00000014536 6 6p21.3 motilin protein-coding MLN motilin O prepromotilin|promotilin 20121230 -9606 4296 MAP3K11 - MEKK11|MLK-3|MLK3|PTK1|SPRK HGNC:6850|MIM:600050|Ensembl:ENSG00000173327|HPRD:02502|Vega:OTTHUMG00000166529 11 11q13.1-q13.3 mitogen-activated protein kinase kinase kinase 11 protein-coding MAP3K11 mitogen-activated protein kinase kinase kinase 11 O SH3 domain-containing proline-rich kinase|mixed lineage kinase 3|protein-tyrosine kinase PTK1|src-homology 3 domain-containing proline-rich kinase 20121230 -9606 4297 MLL hCG_1732268 ALL-1|CXXC7|HRX|HTRX1|KMT2A|MLL/GAS7|MLL1A|TET1-MLL|TRX1|WDSTS HGNC:7132|MIM:159555|Ensembl:ENSG00000118058|HPRD:01162|Vega:OTTHUMG00000166337 11 11q23 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila) protein-coding MLL myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila) O CDK6/MLL fusion protein|CXXC-type zinc finger protein 7|MLL-AF4 der(11) fusion protein|MLL/GAS7 fusion protein|MLL/GMPS fusion protein|histone-lysine N-methyltransferase MLL|lysine N-methyltransferase 2A|trithorax-like protein|zinc finger protein HRX 20121230 -9606 4298 MLLT1 - ENL|LTG19|YEATS1 HGNC:7134|MIM:159556|Ensembl:ENSG00000130382|HPRD:15933|Vega:OTTHUMG00000180757 19 19p13.3 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 1 protein-coding MLLT1 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 1 O ENL/MLL fusion|MLLT1/MLL fusion|YEATS domain-containing protein 1|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog); translocated to, 1|protein ENL 20121230 -9606 4299 AFF1 - AF4|MLLT2|PBM1 HGNC:7135|MIM:159557|Ensembl:ENSG00000172493|HPRD:08871|Vega:OTTHUMG00000130603 4 4q21 AF4/FMR2 family, member 1 protein-coding AFF1 AF4/FMR2 family, member 1 O AF4/FMR2 family member 1|ALL1-fused gene from chromosome 4 protein|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 2|pre-B-cell monocytic leukemia partner 1|protein AF-4|proto-oncogene AF4 20121230 -9606 4300 MLLT3 - AF9|YEATS3 HGNC:7136|MIM:159558|Ensembl:ENSG00000171843|HPRD:01163|Vega:OTTHUMG00000019650 9 9p22 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 3 protein-coding MLLT3 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 3 O ALL1-fused gene from chromosome 9 protein|YEATS domain-containing protein 3|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog); translocated to, 3|myeloid/lymphoid or mixed-lineage leukemia translocated to chromosome 3 protein|protein AF-9 20121230 -9606 4301 MLLT4 RP3-470B24.4 AF6|RP3-431P23.3 HGNC:7137|MIM:159559|Ensembl:ENSG00000130396|HPRD:01164|Vega:OTTHUMG00000016031 6 6q27 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 4 protein-coding MLLT4 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 4 O ALL1-fused gene from chromosome 6 protein|afadin|protein AF-6 20121230 -9606 4302 MLLT6 - AF17 HGNC:7138|MIM:600328|Ensembl:ENSG00000108292|HPRD:08978|Vega:OTTHUMG00000133122 17 17q21 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 6 protein-coding MLLT6 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 6 O ALL1-fused gene from chromosome 17 protein|Myeloid/lymphoid or mixed-lineage leukemia, translocated to, 6|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog); translocated to, 6|protein AF-17|trithorax homolog 20121230 -9606 4303 FOXO4 - AFX|AFX1|MLLT7 HGNC:7139|MIM:300033|Ensembl:ENSG00000184481|HPRD:02070|Vega:OTTHUMG00000021789 X Xq13.1 forkhead box O4 protein-coding FOXO4 forkhead box O4 O fork head domain transcription factor AFX1|forkhead box protein O4|myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 7 20121230 -9606 4306 NR3C2 - MCR|MLR|MR|NR3C2VIT HGNC:7979|MIM:600983|Ensembl:ENSG00000151623|HPRD:02991|Vega:OTTHUMG00000161455 4 4q31.1 nuclear receptor subfamily 3, group C, member 2 protein-coding NR3C2 nuclear receptor subfamily 3, group C, member 2 O aldosterone receptor|mineralocorticoid receptor|mineralocorticoid receptor 1|mineralocorticoid receptor delta 20121230 -9606 4308 TRPM1 - CSNB1C|LTRPC1|MLSN1 HGNC:7146|MIM:603576|Ensembl:ENSG00000134160|HPRD:04656|Vega:OTTHUMG00000129267 15 15q13.3 transient receptor potential cation channel, subfamily M, member 1 protein-coding TRPM1 transient receptor potential cation channel, subfamily M, member 1 O long transient receptor potential channel 1|melastatin-1|transient receptor potential cation channel subfamily M member 1|transient receptor potential melastatin family 20121230 -9606 4309 MLVI2 - - MIM:157960 5 5p14 Moloney murine leukemia virus (MoMuLV) integration site 2 homolog other - - - - 20100701 -9606 4311 MME - CALLA|CD10|NEP|SFE HGNC:7154|MIM:120520|Ensembl:ENSG00000196549|HPRD:00392|Vega:OTTHUMG00000158455 3 3q25.2 membrane metallo-endopeptidase protein-coding MME membrane metallo-endopeptidase O atriopeptidase|common acute lymphocytic leukemia antigen|enkephalinase|membrane metallo-endopeptidase (neutral endopeptidase, enkephalinase)|membrane metallo-endopeptidase (neutral endopeptidase, enkephalinase, CALLA, CD10)|membrane metallo-endopeptidase variant 1|membrane metallo-endopeptidase variant 2|neprilysin|neutral endopeptidase 24.11|skin fibroblast elastase 20121230 -9606 4312 MMP1 - CLG|CLGN HGNC:7155|MIM:120353|Ensembl:ENSG00000196611|HPRD:00384|Vega:OTTHUMG00000048192 11 11q22.3 matrix metallopeptidase 1 (interstitial collagenase) protein-coding MMP1 matrix metallopeptidase 1 (interstitial collagenase) O fibroblast collagenase|interstitial collagenase|matrix metalloprotease 1|matrix metalloproteinase 1 20121230 -9606 4313 MMP2 - CLG4|CLG4A|MMP-II|MONA|TBE-1 HGNC:7166|MIM:120360|Ensembl:ENSG00000087245|HPRD:00386|Vega:OTTHUMG00000133202 16 16q13-q21 matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase) protein-coding MMP2 matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase) O 72 kDa gelatinase|72 kDa type IV collagenase|MMP-2|collagenase type IV-A|gelatinase A|matrix metalloproteinase-2|matrix metalloproteinase-II|neutrophil gelatinase 20121230 -9606 4314 MMP3 - CHDS6|MMP-3|SL-1|STMY|STMY1|STR1 HGNC:7173|MIM:185250|Ensembl:ENSG00000149968|HPRD:01703|Vega:OTTHUMG00000048254 11 11q22.3 matrix metallopeptidase 3 (stromelysin 1, progelatinase) protein-coding MMP3 matrix metallopeptidase 3 (stromelysin 1, progelatinase) O matrix metalloproteinase 3 (stromelysin 1, progelatinase)|matrix metalloproteinase-3|proteoglycanase|stromelysin-1|transin-1 20121230 -9606 4316 MMP7 - MMP-7|MPSL1|PUMP-1 HGNC:7174|MIM:178990|Ensembl:ENSG00000137673|HPRD:01525|Vega:OTTHUMG00000048193 11 11q21-q22 matrix metallopeptidase 7 (matrilysin, uterine) protein-coding MMP7 matrix metallopeptidase 7 (matrilysin, uterine) O matrilysin|matrin|matrix metalloproteinase 7 (matrilysin, uterine)|matrix metalloproteinase-7|pump-1 protease|uterine matrilysin|uterine metalloproteinase 20121230 -9606 4317 MMP8 - CLG1|HNC|MMP-8|PMNL-CL HGNC:7175|MIM:120355|Ensembl:ENSG00000118113|HPRD:00385|Vega:OTTHUMG00000167587 11 11q22.3 matrix metallopeptidase 8 (neutrophil collagenase) protein-coding MMP8 matrix metallopeptidase 8 (neutrophil collagenase) O PMNL collagenase|matrix metalloproteinase 8 (neutrophil collagenase)|matrix metalloproteinase-8|neutrophil collagenase 20121230 -9606 4318 MMP9 - CLG4B|GELB|MANDP2|MMP-9 HGNC:7176|MIM:120361|Ensembl:ENSG00000100985|HPRD:00387|Vega:OTTHUMG00000033044 20 20q11.2-q13.1 matrix metallopeptidase 9 (gelatinase B, 92kDa gelatinase, 92kDa type IV collagenase) protein-coding MMP9 matrix metallopeptidase 9 (gelatinase B, 92kDa gelatinase, 92kDa type IV collagenase) O 92 kDa gelatinase|92 kDa type IV collagenase|macrophage gelatinase|matrix metalloproteinase 9 (gelatinase B, 92kDa gelatinase, 92kDa type IV collagenase)|matrix metalloproteinase-9|type V collagenase 20121230 -9606 4319 MMP10 - SL-2|STMY2 HGNC:7156|MIM:185260|Ensembl:ENSG00000166670|HPRD:01704|Vega:OTTHUMG00000168083 11 11q22.3 matrix metallopeptidase 10 (stromelysin 2) protein-coding MMP10 matrix metallopeptidase 10 (stromelysin 2) O MMP-10|matrix metalloprotease 10|matrix metalloproteinase 10 (stromelysin 2)|matrix metalloproteinase-10|stromelysin 2|stromelysin-2|transin 2|transin-2 20121230 -9606 4320 MMP11 - SL-3|ST3|STMY3 HGNC:7157|MIM:185261|Ensembl:ENSG00000099953|HPRD:01705|Vega:OTTHUMG00000150742 22 22q11.23 matrix metallopeptidase 11 (stromelysin 3) protein-coding MMP11 matrix metallopeptidase 11 (stromelysin 3) O MMP-11|stromelysin III|stromelysin-3 20121230 -9606 4321 MMP12 - HME|ME|MME|MMP-12 HGNC:7158|MIM:601046|HPRD:03027 11 11q22.3 matrix metallopeptidase 12 (macrophage elastase) protein-coding MMP12 matrix metallopeptidase 12 (macrophage elastase) O macrophage metalloelastase|matrix metalloproteinase 12 (macrophage elastase) 20121230 -9606 4322 MMP13 - CLG3|MANDP1 HGNC:7159|MIM:600108|Ensembl:ENSG00000137745|HPRD:02522|Vega:OTTHUMG00000165850 11 11q22.3 matrix metallopeptidase 13 (collagenase 3) protein-coding MMP13 matrix metallopeptidase 13 (collagenase 3) O MMP-13|collagenase 3|matrix metalloproteinase 13 (collagenase 3) 20121230 -9606 4323 MMP14 - 1|MMP-14|MMP-X1|MT-MMP|MT-MMP 1|MT1-MMP|MT1MMP|MTMMP1 HGNC:7160|MIM:600754|Ensembl:ENSG00000157227|HPRD:02856|Vega:OTTHUMG00000028704 14 14q11-q12 matrix metallopeptidase 14 (membrane-inserted) protein-coding MMP14 matrix metallopeptidase 14 (membrane-inserted) O matrix metalloproteinase 14 (membrane-inserted)|matrix metalloproteinase-14|membrane type 1 metalloprotease|membrane-type matrix metalloproteinase 1|membrane-type-1 matrix metalloproteinase 20121230 -9606 4324 MMP15 - MT2-MMP|MTMMP2|SMCP-2 HGNC:7161|MIM:602261|Ensembl:ENSG00000102996|HPRD:03775|Vega:OTTHUMG00000133466 16 16q13 matrix metallopeptidase 15 (membrane-inserted) protein-coding MMP15 matrix metallopeptidase 15 (membrane-inserted) O MMP-15|MT-MMP 2|MT2MMP|matrix metalloproteinase 15 (membrane-inserted)|matrix metalloproteinase-15|membrane-type matrix metalloproteinase 2|membrane-type-2 matrix metalloproteinase 20121230 -9606 4325 MMP16 - C8orf57|MMP-X2|MT-MMP2|MT-MMP3|MT3-MMP HGNC:7162|MIM:602262|Ensembl:ENSG00000156103|HPRD:03776|Vega:OTTHUMG00000163769 8 8q21.3 matrix metallopeptidase 16 (membrane-inserted) protein-coding MMP16 matrix metallopeptidase 16 (membrane-inserted) O MMP-16|MT-MMP 3|MT3MMP|MTMMP3|Putative transmembrane protein C8orf57|matrix metalloproteinase-16|membrane-type matrix metalloproteinase 3|membrane-type-3 matrix metalloproteinase 20121230 -9606 4326 MMP17 - MT4-MMP HGNC:7163|MIM:602285|Ensembl:ENSG00000198598|HPRD:03793|Vega:OTTHUMG00000168050 12 12q24.3 matrix metallopeptidase 17 (membrane-inserted) protein-coding MMP17 matrix metallopeptidase 17 (membrane-inserted) O MMP-17|MT-MMP 4|MT4MMP|MTMMP4|matrix metalloproteinase 17 (membrane-inserted)|matrix metalloproteinase-17|membrane-type matrix metalloproteinase 4|membrane-type-4 matrix metalloproteinase 20121230 -9606 4327 MMP19 - MMP18|RASI-1 HGNC:7165|MIM:601807|Ensembl:ENSG00000123342|HPRD:03486|Vega:OTTHUMG00000170216 12 12q14 matrix metallopeptidase 19 protein-coding MMP19 matrix metallopeptidase 19 O MMP-18|MMP-19|matrix metalloproteinase 18|matrix metalloproteinase 19|matrix metalloproteinase RASI|matrix metalloproteinase-18|matrix metalloproteinase-19 20121230 -9606 4329 ALDH6A1 - MMSADHA|MMSDH HGNC:7179|MIM:603178|Ensembl:ENSG00000119711|HPRD:04416|Vega:OTTHUMG00000171203 14 14q24.3 aldehyde dehydrogenase 6 family, member A1 protein-coding ALDH6A1 aldehyde dehydrogenase 6 family, member A1 O aldehyde dehydrogenase family 6 member A1|malonate-semialdehyde dehydrogenase|methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial|mitochondrial acylating methylmalonate-semialdehyde dehydrogenase 20121230 -9606 4330 MN1 CTA-437G10__B.1 MGCR|MGCR1|MGCR1-PEN|dJ353E16.2 HGNC:7180|MIM:156100|Ensembl:ENSG00000169184|HPRD:08862|Vega:OTTHUMG00000150975 22 22q12.1 meningioma (disrupted in balanced translocation) 1 protein-coding MN1 meningioma (disrupted in balanced translocation) 1 O meningioma (translocation balanced)|meningioma chromosome region 1|probable tumor suppressor protein MN1 20121230 -9606 4331 MNAT1 - CAP35|MAT1|RNF66|TFB3 HGNC:7181|MIM:602659|Ensembl:ENSG00000020426|HPRD:04042|Vega:OTTHUMG00000152340 14 14q23 menage a trois homolog 1, cyclin H assembly factor (Xenopus laevis) protein-coding MNAT1 menage a trois homolog 1, cyclin H assembly factor (Xenopus laevis) O CDK-activating kinase assembly factor MAT1|CDK7/cyclin-H assembly factor|RING finger protein 66|RING finger protein MAT1|cyclin G1 interacting protein|cyclin-G1-interacting protein|menage a trois 1 (CAK assembly factor) 20121230 -9606 4332 MNDA RP11-432E18.11-001 PYHIN3 HGNC:7183|MIM:159553|Ensembl:ENSG00000163563|HPRD:15932|Vega:OTTHUMG00000022776 1 1q22 myeloid cell nuclear differentiation antigen protein-coding MNDA myeloid cell nuclear differentiation antigen O - 20121230 -9606 4333 MNG1 - - HGNC:7184|MIM:138800 14 14q multinodular goitre 1 unknown MNG1 multinodular goitre 1 O - 20120622 -9606 4335 MNT - MAD6|MXD6|ROX|bHLHd3 HGNC:7188|MIM:603039|Ensembl:ENSG00000070444|HPRD:04331|Vega:OTTHUMG00000090603 17 17p13.3 MNT, MAX dimerization protein protein-coding MNT MNT, MAX dimerization protein O MAX binding protein|Max-interacting protein|class D basic helix-loop-helix protein 3|max-binding protein MNT|myc antagonist MNT 20121230 -9606 4336 MOBP - - HGNC:7189|MIM:600948|Ensembl:ENSG00000168314|HPRD:02973|Vega:OTTHUMG00000131347 3 3p22.1 myelin-associated oligodendrocyte basic protein protein-coding MOBP myelin-associated oligodendrocyte basic protein O - 20121230 -9606 4337 MOCS1 RP1-278E11.2 MIG11|MOCOD HGNC:7190|MIM:603707|Ensembl:ENSG00000124615|HPRD:04749|Vega:OTTHUMG00000014656 6 6p21.3 molybdenum cofactor synthesis 1 protein-coding MOCS1 molybdenum cofactor synthesis 1 O MOCS1A enzyme|cell migration-inducing gene 11 protein|migration-inducing gene 11 protein|molybdenum cofactor biosynthesis protein 1|molybdenum cofactor biosynthesis protein A|molybdenum cofactor synthesis-step 1 protein A-B 20121230 -9606 4338 MOCS2 - MCBPE|MOCO1|MOCO1-A|MOCO1-B|MOCS2A|MOCS2B|MPTS HGNC:7193|MIM:603708|Ensembl:ENSG00000164172|HPRD:04750|Vega:OTTHUMG00000096981 5 5q11 molybdenum cofactor synthesis 2 protein-coding MOCS2 molybdenum cofactor synthesis 2 O MPT synthase large subunit|molybdenum cofactor biosynthesis protein E|molybdenum cofactor synthesis protein 2 large subunit|molybdenum cofactor synthesis protein 2 small subunit|molybdenum cofactor synthesis protein 2A|molybdenum cofactor synthesis protein 2B|molybdopterin synthase catalytic subunit|molybdopterin synthase sulfur carrier subunit|molybdopterin-synthase large subunit|molybdopterin-synthase small subunit|sulfur carrier protein MOCS2A 20121230 -9606 4340 MOG DAQB-92E24.2 MOGIG2|NRCLP7 HGNC:7197|MIM:159465|Ensembl:ENSG00000204655|HPRD:11831|Vega:OTTHUMG00000031099 6 6p22.1 myelin oligodendrocyte glycoprotein protein-coding MOG myelin oligodendrocyte glycoprotein O MOG Ig-AluB|MOG alpha-5|myelin-oligodendrocyte glycoprotein 20121230 -9606 4342 MOS - MSV HGNC:7199|MIM:190060|Ensembl:ENSG00000172680|HPRD:01816|Vega:OTTHUMG00000164299 8 8q11 v-mos Moloney murine sarcoma viral oncogene homolog protein-coding MOS v-mos Moloney murine sarcoma viral oncogene homolog O c-mos|oncogene MOS, Moloney murine sarcoma virus|oocyte maturation factor mos|proto-oncogene c-Mos|proto-oncogene serine/threonine-protein kinase mos 20121230 -9606 4343 MOV10 RP11-426L16.2 fSAP113|gb110 HGNC:7200|MIM:610742|Ensembl:ENSG00000155363|HPRD:14732|Vega:OTTHUMG00000011906 1 1p13.2 Mov10, Moloney leukemia virus 10, homolog (mouse) protein-coding MOV10 Mov10, Moloney leukemia virus 10, homolog (mouse) O functional spliceosome-associated protein 113|moloney leukemia virus 10 protein|putative helicase MOV-10 20121230 -9606 4345 CD200 My033 MOX1|MOX2|MRC|OX-2 HGNC:7203|MIM:155970|Ensembl:ENSG00000091972|Vega:OTTHUMG00000159248 3 3q12-q13 CD200 molecule protein-coding CD200 CD200 molecule O CD200 antigen|MRC OX-2 antigen|OX-2 membrane glycoprotein|antigen identified by monoclonal antibody MRC OX-2 20121230 -9606 4350 MPG Z69720.1-002 AAG|ADPG|APNG|CRA36.1|MDG|Mid1|PIG11|PIG16|anpg HGNC:7211|MIM:156565|Ensembl:ENSG00000103152|HPRD:06766|Vega:OTTHUMG00000047887 16 16p13.3 N-methylpurine-DNA glycosylase protein-coding MPG N-methylpurine-DNA glycosylase O 3' end of the Mid1 gene, localized 68 kb upstream the humanzeta globin gene on 16p|3-alkyladenine DNA glycosylase|3-methyladenine DNA glycosidase|CRA36.1 (3-methyl-adenine DNA glycosylase)|DNA-3-methyladenine glycosylase|N-methylpurine-DNA glycosylase, MPG|proliferation-inducing protein 11|proliferation-inducing protein 16 20121230 -9606 4351 MPI - CDG1B|PMI|PMI1 HGNC:7216|MIM:154550|Ensembl:ENSG00000178802|HPRD:01108|Vega:OTTHUMG00000142826 15 15q22-qter mannose phosphate isomerase protein-coding MPI mannose phosphate isomerase O mannose-6- phosphate isomerase|mannose-6-phosphate isomerase|phosphohexomutase|phosphomannose isomerase 1 20121230 -9606 4352 MPL RP1-92O14.1 C-MPL|CD110|MPLV|THCYT2|TPOR HGNC:7217|MIM:159530|Ensembl:ENSG00000117400|HPRD:01161|Vega:OTTHUMG00000007429 1 1p34 myeloproliferative leukemia virus oncogene protein-coding MPL myeloproliferative leukemia virus oncogene O TPO-R|myeloproliferative leukemia protein|proto-oncogene c-Mpl|thrombopoietin receptor 20121230 -9606 4353 MPO - - HGNC:7218|MIM:606989|Ensembl:ENSG00000005381|HPRD:06102|Vega:OTTHUMG00000178922 17 17q23.1 myeloperoxidase protein-coding MPO myeloperoxidase O - 20121230 -9606 4354 MPP1 - AAG12|DXS552E|EMP55|MRG1|PEMP HGNC:7219|MIM:305360|Ensembl:ENSG00000130830|HPRD:02370|Vega:OTTHUMG00000024244 X Xq28 membrane protein, palmitoylated 1, 55kDa protein-coding MPP1 membrane protein, palmitoylated 1, 55kDa O 55 kDa erythrocyte membrane protein|aging-associated gene 12|erythrocyte membrane protein p55|migration-related gene 1|p55|palmitoylated erythrocyte membrane protein 20121230 -9606 4355 MPP2 - DLG2 HGNC:7220|MIM:600723|Ensembl:ENSG00000108852|HPRD:02837|Vega:OTTHUMG00000133840 17 17q12-q21 membrane protein, palmitoylated 2 (MAGUK p55 subfamily member 2) protein-coding MPP2 membrane protein, palmitoylated 2 (MAGUK p55 subfamily member 2) O MAGUK p55 subfamily member 2|discs large homolog 2|discs large, homolog 2 20121230 -9606 4356 MPP3 - DLG3 HGNC:7221|MIM:601114|Ensembl:ENSG00000161647|HPRD:03069|Vega:OTTHUMG00000133838 17 17q21.31 membrane protein, palmitoylated 3 (MAGUK p55 subfamily member 3) protein-coding MPP3 membrane protein, palmitoylated 3 (MAGUK p55 subfamily member 3) O MAGUK p55 subfamily member 3|discs large homolog 3|discs, large homolog 3|membrane protein palmitoylated 3 20121230 -9606 4357 MPST LL22NC01-146D10.4 MST|TST2 HGNC:7223|MIM:602496|Ensembl:ENSG00000128309|HPRD:11896|Vega:OTTHUMG00000150543 22 22q13.1 mercaptopyruvate sulfurtransferase protein-coding MPST mercaptopyruvate sulfurtransferase O 3-mercaptopyruvate sulfurtransferase|human liver rhodanese 20121230 -9606 4358 MPV17 - MTDPS6|SYM1 HGNC:7224|MIM:137960|Ensembl:ENSG00000115204|HPRD:08847|Vega:OTTHUMG00000097074 2 2p23.3 MpV17 mitochondrial inner membrane protein protein-coding MPV17 MpV17 mitochondrial inner membrane protein O Mpv17, human homolog of glomerulosclerosis and nephrotic syndrome|protein Mpv17 20121230 -9606 4359 MPZ - CHM|CMT1|CMT1B|CMT2I|CMT2J|CMT4E|CMTDI3|CMTDID|DSS|HMSNIB|MPP|P0 HGNC:7225|MIM:159440|Ensembl:ENSG00000158887|HPRD:01159|Vega:OTTHUMG00000034341 1 1q23.3 myelin protein zero protein-coding MPZ myelin protein zero O Charcot-Marie-Tooth neuropathy 1B|myelin peripheral protein|myelin protein P0 20121230 -9606 4360 MRC1 RP11-457D2.1 CD206|CLEC13D|CLEC13DL|MMR|MRC1L1|bA541I19.1 HGNC:7228|MIM:153618|Ensembl:ENSG00000120586|HPRD:01089|Vega:OTTHUMG00000017757 10 10p12.33 mannose receptor, C type 1 protein-coding MRC1 mannose receptor, C type 1 O C-type lectin domain family 13 member D|macrophage mannose receptor 1|macrophage mannose receptor 1-like protein 1|mannose receptor, C type 1-like 1 20121230 -9606 4361 MRE11A - ATLD|HNGS1|MRE11|MRE11B HGNC:7230|MIM:600814|Ensembl:ENSG00000020922|HPRD:02889|Vega:OTTHUMG00000167780 11 11q21 MRE11 meiotic recombination 11 homolog A (S. cerevisiae) protein-coding MRE11A MRE11 meiotic recombination 11 homolog A (S. cerevisiae) O AT-like disease|DNA recombination and repair protein|MRE11 homolog 1|MRE11 homolog A|double-strand break repair protein MRE11A|endo/exonuclease Mre11|meiotic recombination 11 homolog 1|meiotic recombination 11 homolog A 20121230 -9606 4362 MRE11B - hMRE11B HGNC:7231 3 3q25 MRE11 meiotic recombination 11 homolog B (S. cerevisiae) pseudo MRE11B MRE11 meiotic recombination 11 homolog B (S. cerevisiae) O - 20121230 -9606 4363 ABCC1 - ABC29|ABCC|GS-X|MRP|MRP1 HGNC:51|MIM:158343|Ensembl:ENSG00000103222|HPRD:01153|Vega:OTTHUMG00000048267 16 16p13.1 ATP-binding cassette, sub-family C (CFTR/MRP), member 1 protein-coding ABCC1 ATP-binding cassette, sub-family C (CFTR/MRP), member 1 O ATP-binding cassette transporter variant ABCC1delta-ex13|ATP-binding cassette transporter variant ABCC1delta-ex13&14|ATP-binding cassette transporter variant ABCC1delta-ex25|ATP-binding cassette transporter variant ABCC1delta-ex25&26|LTC4 transporter|leukotriene C(4) transporter|multidrug resistance-associated protein 1 20121230 -9606 4364 MRSD - CHRS HGNC:7236|MIM:309620 X Xq27-q28 mental retardation-skeletal dysplasia unknown MRSD mental retardation-skeletal dysplasia O - 20120622 -9606 4365 MRX1 - - HGNC:7238|MIM:309530 X Xp11-q13 mental retardation, X-linked 1 (non-dysmorphic) unknown MRX1 mental retardation, X-linked 1 (non-dysmorphic) O - 20120622 -9606 4366 MRX4 - - HGNC:7271 X Xq13 mental retardation, X-linked 4 unknown MRX4 mental retardation, X-linked 4 O - 20110215 -9606 4367 MRX2 - - HGNC:7249|MIM:300428 X Xp22.3-p22.2 mental retardation, X-linked 2 (non-dysmorphic) unknown MRX2 mental retardation, X-linked 2 (non-dysmorphic) O - 20120622 -9606 4368 MRX3 - - HGNC:7260 X Xq28 mental retardation, X-linked 3 unknown MRX3 mental retardation, X-linked 3 O - 20110215 -9606 4369 MRX5 - - HGNC:7282 X Xp mental retardation, X-linked 5 unknown MRX5 mental retardation, X-linked 5 O - 20110215 -9606 4370 MRX6 - - HGNC:7293 X Xq mental retardation, X-linked 6 (Okinawa type) unknown MRX6 mental retardation, X-linked 6 (Okinawa type) O - 20110215 -9606 4371 MRX7 - - HGNC:7304 X Xp11.23-q12 mental retardation, X-linked 7 unknown MRX7 mental retardation, X-linked 7 O - 20110702 -9606 4372 MRX8 - - HGNC:7311 X Xq21 mental retardation, X-linked 8 unknown MRX8 mental retardation, X-linked 8 O - 20110215 -9606 4375 MRX11 - - HGNC:7240 X - mental retardation, X-linked 11 unknown MRX11 mental retardation, X-linked 11 O - 20110215 -9606 4376 MRX12 - - HGNC:7241 X - mental retardation, X-linked 12 unknown MRX12 mental retardation, X-linked 12 O - 20110215 -9606 4377 MRX13 - - HGNC:7242 X - mental retardation, X-linked 13 unknown MRX13 mental retardation, X-linked 13 O - 20110215 -9606 4378 MRX14 - - HGNC:7243|MIM:300062 X Xp11.3-q13.3 mental retardation, X-linked 14 unknown MRX14 mental retardation, X-linked 14 O - 20120622 -9606 4379 MRX15 - - HGNC:7244 X Xp21.1-p11.22 mental retardation, X-linked 15 unknown MRX15 mental retardation, X-linked 15 O - 20110215 -9606 4381 MRX17 - - HGNC:7246 X - mental retardation, X-linked 17 unknown MRX17 mental retardation, X-linked 17 O - 20110215 -9606 4382 MRX18 - - HGNC:7247 X - mental retardation, X-linked 18 unknown MRX18 mental retardation, X-linked 18 O - 20110215 -9606 4384 MRX20 - - HGNC:7250|MIM:300047 X Xp11-q21 mental retardation, X-linked 20 unknown MRX20 mental retardation, X-linked 20 O - 20120622 -9606 4387 MRX23 - - HGNC:7253|MIM:300046 X Xq23-q24 mental retardation, X-linked 23 unknown MRX23 mental retardation, X-linked 23 O - 20120622 -9606 4388 MRX24 - - HGNC:7254 X Xp22.3-p22.2 mental retardation, X-linked 24 unknown MRX24 mental retardation, X-linked 24 O - 20110215 -9606 4389 MRX25 - - HGNC:7255 X Xq28 mental retardation, X-linked 25 unknown MRX25 mental retardation, X-linked 25 O - 20110215 -9606 4390 MRX26 - - HGNC:7256 X Xp11.4-q12 mental retardation, X-linked 26 unknown MRX26 mental retardation, X-linked 26 O - 20110215 -9606 4391 MRX27 - - HGNC:7257 X Xq24-q26 mental retardation, X-linked 27 unknown MRX27 mental retardation, X-linked 27 O - 20110215 -9606 4392 MRX28 - - HGNC:7258 X Xq28 mental retardation, X-linked 28 unknown MRX28 mental retardation, X-linked 28 O - 20110215 -9606 4395 MRX31 - - HGNC:7262 X Xp11.23-q13.3 mental retardation, X-linked 31 unknown MRX31 mental retardation, X-linked 31 O - 20110215 -9606 4397 MS - MS1 HGNC:7314|MIM:126200 - - multiple sclerosis unknown MS multiple sclerosis O - 20110714 -9606 4400 MRX35 - - HGNC:7266 X Xq22-q26 mental retardation, X-linked 35 unknown MRX35 mental retardation, X-linked 35 O - 20110215 -9606 4402 MRX37 - - HGNC:7268 X Xp22.32-p22.31 mental retardation, X-linked 37 unknown MRX37 mental retardation, X-linked 37 O - 20110702 -9606 4404 MRX39 - - HGNC:7270 X - mental retardation, X-linked 39 unknown MRX39 mental retardation, X-linked 39 O - 20110215 -9606 4405 MRX40 - - HGNC:7272 X Xq21.1 mental retardation, X-linked 40 unknown MRX40 mental retardation, X-linked 40 O - 20110215 -9606 4406 MRX42 - - HGNC:7274|MIM:300372 X - mental retardation, X-linked 42 unknown MRX42 mental retardation, X-linked 42 O - 20120622 -9606 4412 MRX49 - - HGNC:7281|MIM:300114 X Xp22.3-p22.2 mental retardation, X-linked 49 unknown MRX49 mental retardation, X-linked 49 O - 20120622 -9606 4413 MRX50 - - HGNC:7283|MIM:300115 X Xp11.3-p11.21 mental retardation, X-linked 50 unknown MRX50 mental retardation, X-linked 50 O - 20120622 -9606 4414 MRX51 - - HGNC:7284 X Xp11.3-p11.23 mental retardation, X-linked 51 unknown MRX51 mental retardation, X-linked 51 O - 20110215 -9606 4415 MRX52 - - HGNC:7285|MIM:300504 X Xp11.21-q21.33 mental retardation, X-linked 52 unknown MRX52 mental retardation, X-linked 52 O - 20120622 -9606 4416 MRX53 - - HGNC:7286|MIM:300324 X Xq22.2-q24 mental retardation, X-linked 53 unknown MRX53 mental retardation, X-linked 53 O - 20120622 -9606 4419 MRX56 - - HGNC:7289 X - mental retardation, X-linked 56 unknown MRX56 mental retardation, X-linked 56 O - 20110215 -9606 4420 MRX57 - - HGNC:7290 X - mental retardation, X-linked 57 unknown MRX57 mental retardation, X-linked 57 O - 20110215 -9606 4424 MRX61 - - HGNC:7295 X - mental retardation, X-linked 61 unknown MRX61 mental retardation, X-linked 61 O - 20110215 -9606 4425 MRX62 - - HGNC:7296 X - mental retardation, X-linked 62 unknown MRX62 mental retardation, X-linked 62 O - 20110215 -9606 4427 MRX64 - - HGNC:7298 X Xq28 mental retardation, X-linked 64 unknown MRX64 mental retardation, X-linked 64 O - 20110215 -9606 4428 MRX65 - - HGNC:7299 X Xp11.3-Xq21.33 mental retardation, X-linked 65 unknown MRX65 mental retardation, X-linked 65 O - 20110215 -9606 4429 MRXS7 - - HGNC:7313|MIM:300218 X Xp11.3-Xq22.1 mental retardation, X-linked, syndromic 7 unknown MRXS7 mental retardation, X-linked, syndromic 7 O - 20120622 -9606 4430 MYO1B - myr1 HGNC:7596|MIM:606537|Ensembl:ENSG00000128641|HPRD:08407|Vega:OTTHUMG00000132718 2 2q12-q34 myosin IB protein-coding MYO1B myosin IB O MMI-alpha|MMIa|MYH-1c|MYO1B variant protein|myosin I alpha|myosin-I alpha|myosin-Ib|unconventional myosin-Ib 20121230 -9606 4431 MSBP1 - - HGNC:7318 - - minisatellite binding protein 1 protein-coding MSBP1 minisatellite binding protein 1 O - 20120420 -9606 4432 MSBP2 - - HGNC:7319 - - minisatellite binding protein 2, 77kDa protein-coding MSBP2 minisatellite binding protein 2, 77kDa O - 20090811 -9606 4434 MSD - - HGNC:7322|MIM:311400 X - microcephaly with spastic diplegia (Paine syndrome) unknown MSD microcephaly with spastic diplegia (Paine syndrome) O - 20110215 -9606 4435 CITED1 - MSG1 HGNC:1986|MIM:300149|Ensembl:ENSG00000125931|HPRD:02146|Vega:OTTHUMG00000021812 X Xq13.1 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1 protein-coding CITED1 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1 O cbp/p300-interacting transactivator 1|melanocyte-specific gene 1|melanocyte-specific protein 1 20121230 -9606 4436 MSH2 - COCA1|FCC1|HNPCC|HNPCC1|LCFS2 HGNC:7325|MIM:609309|Ensembl:ENSG00000095002|HPRD:00389|Vega:OTTHUMG00000128861 2 2p21 mutS homolog 2, colon cancer, nonpolyposis type 1 (E. coli) protein-coding MSH2 mutS homolog 2, colon cancer, nonpolyposis type 1 (E. coli) O DNA mismatch repair protein Msh2|hMSH2 20121230 -9606 4437 MSH3 - DUP|MRP1 HGNC:7326|MIM:600887|Ensembl:ENSG00000113318|HPRD:02931|Vega:OTTHUMG00000162540 5 5q11-q12 mutS homolog 3 (E. coli) protein-coding MSH3 mutS homolog 3 (E. coli) O DNA mismatch repair protein Msh3|divergent upstream protein|hMSH3|mismatch repair protein 1 20121230 -9606 4438 MSH4 RP11-262K24.2 - HGNC:7327|MIM:602105|Ensembl:ENSG00000057468|HPRD:03658|Vega:OTTHUMG00000009788 1 1p31 mutS homolog 4 (E. coli) protein-coding MSH4 mutS homolog 4 (E. coli) O hMSH4|mutS protein homolog 4 20121230 -9606 4439 MSH5 DAAP-21F2.10-001 G7|MUTSH5|NG23 HGNC:7328|MIM:603382|Ensembl:ENSG00000204410|Ensembl:ENSG00000255152|HPRD:04544|Vega:OTTHUMG00000031139|Vega:OTTHUMG00000167551 6 6p21.3 mutS homolog 5 (E. coli) protein-coding MSH5 mutS homolog 5 (E. coli) O mutS protein homolog 5 20121230 -9606 4440 MSI1 - - HGNC:7330|MIM:603328|Ensembl:ENSG00000135097|HPRD:04509|Vega:OTTHUMG00000169344 12 12q24 musashi RNA-binding protein 1 protein-coding MSI1 musashi RNA-binding protein 1 O RNA-binding protein Musashi homolog 1|musashi-1|musashi1 20121230 -9606 4447 MSK9 - - HGNC:7369 3 3pter-p14 antigen identified by monoclonal antibody K15 protein-coding MSK9 antigen identified by monoclonal antibody K15 O - 20080828 -9606 4448 MSK10 - - HGNC:7332 3 3pter-p14 antigen identified by monoclonal antibody AJ425 protein-coding MSK10 antigen identified by monoclonal antibody AJ425 O - 20080828 -9606 4467 MSK32 - - HGNC:7356 3 3pter-p14 antigen identified by monoclonal antibody K66 protein-coding MSK32 antigen identified by monoclonal antibody K66 O - 20080828 -9606 4473 MSK38 - - HGNC:7362 20 - antigen identified by monoclonal antibody O5 protein-coding MSK38 antigen identified by monoclonal antibody O5 O - 20080828 -9606 4477 MSMB RP11-481A12.1 HPC13|IGBF|MSP|MSPB|PN44|PRPS|PSP|PSP-94|PSP57|PSP94 HGNC:7372|MIM:157145|Ensembl:ENSG00000138294|HPRD:01143|Vega:OTTHUMG00000018212 10 10q11.2 microseminoprotein, beta- protein-coding MSMB microseminoprotein, beta- O beta-microseminoprotein|immunoglobulin binding factor|prostate secreted seminal plasma protein|prostate secretory protein of 94 amino acids|seminal plasma beta-inhibin 20121230 -9606 4478 MSN - - HGNC:7373|MIM:309845|Ensembl:ENSG00000147065|HPRD:02399|Vega:OTTHUMG00000021723 X Xq11.1 moesin protein-coding MSN moesin O membrane-organizing extension spike protein 20121230 -9606 4479 MSNP1 - MSNL1 HGNC:7374 5 5p14.1 moesin pseudogene 1 pseudo MSNP1 moesin pseudogene 1 O - 20121230 -9606 4481 MSR1 - CD204|SCARA1|SR-A|SRA|phSR1|phSR2 HGNC:7376|MIM:153622|Ensembl:ENSG00000038945|HPRD:01092|Vega:OTTHUMG00000094809 8 8p22 macrophage scavenger receptor 1 protein-coding MSR1 macrophage scavenger receptor 1 O macrophage acetylated LDL receptor I and II|macrophage scavenger receptor type III|macrophage scavenger receptor types I and II|scavenger receptor class A member 1|scavenger receptor class A, member 1 20121230 -9606 4482 MSRA - PMSR HGNC:7377|MIM:601250|Ensembl:ENSG00000175806|HPRD:03152|Vega:OTTHUMG00000090517 8 8p23.1 methionine sulfoxide reductase A protein-coding MSRA methionine sulfoxide reductase A O cytosolic methionine-S-sulfoxide reductase|mitochondrial peptide methionine sulfoxide reductase|peptide Met(O) reductase|peptide met (O) reductase|peptide methionine sulfoxide reductase|peptide-methionine (S)-S-oxide reductase|protein-methionine-S-oxide reductase 20121230 -9606 4484 MSSE - ESS1 HGNC:7379|MIM:132800 9 9q22.32 multiple self-healing squamous epithelioma unknown MSSE multiple self-healing squamous epithelioma O - 20120622 -9606 4485 MST1 - D3F15S2|DNF15S2|HGFL|MSP|NF15S2 HGNC:7380|MIM:142408|Ensembl:ENSG00000173531|HPRD:00798|Vega:OTTHUMG00000155918 3 3p21 macrophage stimulating 1 (hepatocyte growth factor-like) protein-coding MST1 macrophage stimulating 1 (hepatocyte growth factor-like) O hepatocyte growth factor-like protein|hepatocyte growth factor-like protein homolog|macrophage-stimulating protein 20121230 -9606 4486 MST1R - CD136|CDw136|PTK8|RON HGNC:7381|MIM:600168|Ensembl:ENSG00000164078|HPRD:02545|Vega:OTTHUMG00000156709 3 3p21.3 macrophage stimulating 1 receptor (c-met-related tyrosine kinase) protein-coding MST1R macrophage stimulating 1 receptor (c-met-related tyrosine kinase) O MSP receptor|MST1R variant RON30|MST1R variant RON62|PTK8 protein tyrosine kinase 8|RON variant 21|RON variant E2E3|c-met-related tyrosine kinase|macrophage-stimulating protein receptor|p185-Ron|soluble RON variant 1|soluble RON variant 2|soluble RON variant 3|soluble RON variant 4 20121230 -9606 4487 MSX1 - ECTD3|HOX7|HYD1|STHAG1 HGNC:7391|MIM:142983|Ensembl:ENSG00000163132|HPRD:00866|Vega:OTTHUMG00000090335 4 4p16.2 msh homeobox 1 protein-coding MSX1 msh homeobox 1 O homeobox 7|homeobox protein Hox-7|homeobox protein MSX-1|msh homeo box 1|msh homeobox 1-like protein|msh homeobox homolog 1 20121230 -9606 4488 MSX2 - CRS2|FPP|HOX8|MSH|PFM|PFM1 HGNC:7392|MIM:123101|Ensembl:ENSG00000120149|HPRD:00421|Vega:OTTHUMG00000130556 5 5q35.2 msh homeobox 2 protein-coding MSX2 msh homeobox 2 O homeobox protein Hox-8|homeobox protein MSX-2|msh homeo box 2|msh homeobox homolog 2 20121230 -9606 4489 MT1A - MT1|MT1S|MTC HGNC:7393|MIM:156350|Ensembl:ENSG00000205362|HPRD:07035|Vega:OTTHUMG00000176919 16 16q13 metallothionein 1A protein-coding MT1A metallothionein 1A O MT-1A|MT-IA|metallothionein 1A (functional)|metallothionein 1S|metallothionein-1A|metallothionein-IA 20121230 -9606 4490 MT1B - MT1|MT1Q|MTP HGNC:7394|MIM:156349|Ensembl:ENSG00000169688|HPRD:11826|Vega:OTTHUMG00000133277 16 16q13 metallothionein 1B protein-coding MT1B metallothionein 1B O MT-1B|MT-IB|metallothionein 1B (functional)|metallothionein 1Q|metallothionein-1B|metallothionein-IB 20121230 -9606 4493 MT1E - MT1|MTD HGNC:7397|MIM:156351|Ensembl:ENSG00000169715|HPRD:01126|Vega:OTTHUMG00000133014 16 16q13 metallothionein 1E protein-coding MT1E metallothionein 1E O MT-1E|MT-IE|metallothionein 1E (functional)|metallothionein D|metallothionein-1E|metallothionein-IE 20121230 -9606 4494 MT1F PRO0376 MT1 HGNC:7398|MIM:156352|Ensembl:ENSG00000198417|HPRD:01127|Vega:OTTHUMG00000176838 16 16q13 metallothionein 1F protein-coding MT1F metallothionein 1F O MT-1F|MT-IF|metallothionein 1F (functional)|metallothionein-1F|metallothionein-IF 20121230 -9606 4495 MT1G - MT1|MT1K HGNC:7399|MIM:156353|Ensembl:ENSG00000125144|HPRD:11827|Vega:OTTHUMG00000133275 16 16q13 metallothionein 1G protein-coding MT1G metallothionein 1G O MT-1G|MT-1K|MT-IG|metallothionein 1K|metallothionein-1G|metallothionein-1K|metallothionein-IG 20121230 -9606 4496 MT1H - MT-0|MT-1H|MT-IH|MT1 HGNC:7400|MIM:156354|Ensembl:ENSG00000205358|HPRD:01128|Vega:OTTHUMG00000133283 16 16q13 metallothionein 1H protein-coding MT1H metallothionein 1H O metallothionein-0|metallothionein-1H|metallothionein-IH 20121230 -9606 4498 MT1JP - MT1|MT1J|MT1NP|MTB HGNC:7402|MIM:156356|HPRD:11758 16 16q13 metallothionein 1J, pseudogene pseudo MT1JP metallothionein 1J, pseudogene O - 20121230 -9606 4499 MT1M - MT-1M|MT-IM|MT1|MT1K HGNC:14296|MIM:156357|Ensembl:ENSG00000205364|HPRD:01129|Vega:OTTHUMG00000176938 16 16q13 metallothionein 1M protein-coding MT1M metallothionein 1M O metallothionein 1K|metallothionein 1Y|metallothionein-1M 20121230 -9606 4500 MT1L - MT1|MT1R|MTF HGNC:7404|MIM:156358 16 16q13 metallothionein 1L (gene/pseudogene) pseudo MT1L metallothionein 1L (gene/pseudogene) O - 20121230 -9606 4501 MT1X - MT-1l|MT1 HGNC:7405|MIM:156359|Ensembl:ENSG00000187193|HPRD:01130|Vega:OTTHUMG00000133280 16 16q13 metallothionein 1X protein-coding MT1X metallothionein 1X O MT-1X|MT-IX|metallothionein-1X|metallothionein-IX 20121230 -9606 4502 MT2A - MT2 HGNC:7406|MIM:156360|Ensembl:ENSG00000125148|HPRD:08863|Vega:OTTHUMG00000133281 16 16q13 metallothionein 2A protein-coding MT2A metallothionein 2A O MT-2|MT-II|metallothionein-2|metallothionein-2A|metallothionein-II 20121230 -9606 4503 MT2P1 - - HGNC:7407 4 4q13.2 metallothionein 2 pseudogene 1 pseudo MT2P1 metallothionein 2 pseudogene 1 O - 20121230 -9606 4504 MT3 - GIF|GIFB|GRIF|ZnMT3 HGNC:7408|MIM:139255|Ensembl:ENSG00000087250|HPRD:00752|Vega:OTTHUMG00000133282 16 16q13 metallothionein 3 protein-coding MT3 metallothionein 3 O MT-3|MT-III|growth inhibitory factor|metallothionein 3 (growth inhibitory factor (neurotrophic))|metallothionein-3|metallothionein-III 20121230 -9606 4507 MTAP - BDMF|DMSFH|DMSMFH|LGMBF|MSAP|c86fus HGNC:7413|MIM:156540|Ensembl:ENSG00000099810|HPRD:01134|Vega:OTTHUMG00000019690 9 9p21 methylthioadenosine phosphorylase protein-coding MTAP methylthioadenosine phosphorylase O 5'-methylthioadenosine phosphorylase|MTA phosphorylase|MTAPase|MeSAdo phosphorylase|S-methyl-5'-thioadenosine phosphorylase 20121230 -9606 4508 ATP6 - ATPase6|MTATP6 HGNC:7414|MIM:516060 MT - ATP synthase F0 subunit 6 protein-coding MT-ATP6 mitochondrially encoded ATP synthase 6 O - 20121222 -9606 4509 ATP8 - ATPase8|MTATP8 HGNC:7415|MIM:516070 MT - ATP synthase F0 subunit 8 protein-coding MT-ATP8 mitochondrially encoded ATP synthase 8 O - 20121222 -9606 4511 TRNC - MTTC HGNC:7477|MIM:590020 MT - tRNA tRNA MT-TC mitochondrially encoded tRNA cysteine O - 20121119 -9606 4512 COX1 - COI|MTCO1 HGNC:7419|MIM:516030 MT - cytochrome c oxidase subunit I protein-coding MT-COI mitochondrially encoded cytochrome c oxidase I O - 20121222 -9606 4513 COX2 - COII|MTCO2 HGNC:7421|MIM:516040 MT - cytochrome c oxidase subunit II protein-coding MT-CO2 mitochondrially encoded cytochrome c oxidase II O - 20121222 -9606 4514 COX3 - COIII|MTCO3 HGNC:7422|MIM:516050 MT - cytochrome c oxidase III protein-coding MT-CO3 mitochondrially encoded cytochrome c oxidase III O cytochrome c oxidase subunit III 20121222 -9606 4515 MTCP1 GS1-273L24.4 P13MTCP1|p8MTCP1 HGNC:7423|MIM:300116|Ensembl:ENSG00000214827|HPRD:02122|Vega:OTTHUMG00000156241 X Xq28 mature T-cell proliferation 1 protein-coding MTCP1 mature T-cell proliferation 1 O MTCP-1 type B1|mature T-cell proliferation 1 isoform p13|mature T-cell proliferation-1 type B1|protein p13 MTCP-1 20121230 -9606 4519 CYTB - MTCYB HGNC:7427|MIM:516020 MT - cytochrome b protein-coding MT-CYB mitochondrially encoded cytochrome b O - 20121222 -9606 4520 MTF1 - MTF-1|ZRF HGNC:7428|MIM:600172|Ensembl:ENSG00000188786|HPRD:02546|Vega:OTTHUMG00000004439 1 1p33 metal-regulatory transcription factor 1 protein-coding MTF1 metal-regulatory transcription factor 1 O MRE-binding transcription factor|MRE-binding transcription factor-1|metal regulatory transcription factor 1|metal-responsive transcription factor 1|transcription factor MTF-1|zinc regulatory factor 20121230 -9606 4521 NUDT1 - MTH1 HGNC:8048|MIM:600312|Ensembl:ENSG00000106268|HPRD:02634|Vega:OTTHUMG00000023072 7 7p22 nudix (nucleoside diphosphate linked moiety X)-type motif 1 protein-coding NUDT1 nudix (nucleoside diphosphate linked moiety X)-type motif 1 O 2-hydroxy-dATP diphosphatase|7,8-dihydro-8-oxoguanine triphosphatase|8-oxo-7,8-dihydrodeoxyguanosine triphosphatase|8-oxo-7,8-dihydroguanosine triphosphatase|8-oxo-dGTPase|mutT human homolog 1|nucleoside diphosphate-linked moiety X motif 1|nucleoside diphosphate-linked moiety X-type motif 1|nudix motif 1 20121230 -9606 4522 MTHFD1 - MTHFC|MTHFD HGNC:7432|MIM:172460|Ensembl:ENSG00000100714|HPRD:01403|Vega:OTTHUMG00000141309 14 14q24 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase protein-coding MTHFD1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase O 5,10-methylenetetrahydrofolate dehydrogenase, 5,10-methylenetetrahydrofolate cyclohydrolase, 10-formyltetrahydrofolate synthetase|C-1-tetrahydrofolate synthase, cytoplasmic|C1-THF synthase|cytoplasmic C-1-tetrahydrofolate synthase 20121230 -9606 4523 MTHFD1P1 - MTHFDL1|MTHFDP1 HGNC:7433 X Xp11.21 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1 pseudogene 1 pseudo MTHFD1P1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1 pseudogene 1 O - 20121230 -9606 4524 MTHFR RP11-56N19.4 - HGNC:7436|MIM:607093|Ensembl:ENSG00000177000|HPRD:06158|Vega:OTTHUMG00000002277 1 1p36.3 methylenetetrahydrofolate reductase (NAD(P)H) protein-coding MTHFR methylenetetrahydrofolate reductase (NAD(P)H) O 5,10-methylenetetrahydrofolate reductase (NADPH)|methylenetetrahydrofolate reductase 20121230 -9606 4528 MTIF2 - - HGNC:7441|MIM:603766|Ensembl:ENSG00000085760|HPRD:04792|Vega:OTTHUMG00000129338 2 2p16.1 mitochondrial translational initiation factor 2 protein-coding MTIF2 mitochondrial translational initiation factor 2 O IF-2(Mt)|IF-2mt|IF2(mt)|translation initiation factor IF-2, mitochondrial 20121230 -9606 4531 MTL3P - MTL3 HGNC:7444 18 18q22.1 metallothionein-like 3, pseudogene pseudo MTL3P metallothionein-like 3, pseudogene O - 20121230 -9606 4534 MTM1 - CNM|MTMX|XLMTM HGNC:7448|MIM:300415|Ensembl:ENSG00000171100|HPRD:02331|Vega:OTTHUMG00000024158 X Xq28 myotubularin 1 protein-coding MTM1 myotubularin 1 O myotubularin 20121230 -9606 4535 ND1 - MTND1 HGNC:7455|MIM:516000 MT - NADH dehydrogenase, subunit 1 (complex I) protein-coding MT-ND1 mitochondrially encoded NADH dehydrogenase 1 O NADH dehydrogenase subunit 1 20121222 -9606 4536 ND2 - MTND2 HGNC:7456|MIM:516001 MT - MTND2 protein-coding MT-ND2 mitochondrially encoded NADH dehydrogenase 2 O NADH dehydrogenase subunit 2 20121222 -9606 4537 ND3 - MTND3 HGNC:7458|MIM:516002 MT - NADH dehydrogenase, subunit 3 (complex I) protein-coding MT-ND3 mitochondrially encoded NADH dehydrogenase 3 O NADH dehydrogenase subunit 3 20121222 -9606 4538 ND4 - MTND4 HGNC:7459|MIM:516003 MT - NADH dehydrogenase, subunit 4 (complex I) protein-coding MT-ND4 mitochondrially encoded NADH dehydrogenase 4 O NADH dehydrogenase subunit 4 20121222 -9606 4539 ND4L - MTND4L HGNC:7460|MIM:516004 MT - NADH dehydrogenase, subunit 4L (complex I) protein-coding MT-ND4L mitochondrially encoded NADH 4L O NADH dehydrogenase subunit 4L 20121222 -9606 4540 ND5 - MTND5 HGNC:7461|MIM:516005 MT - NADH dehydrogenase, subunit 5 (complex I) protein-coding MT-ND5 mitochondrially encoded NADH dehydrogenase 5 O NADH dehydrogenase subunit 5 20121222 -9606 4541 ND6 - MTND6 HGNC:7462|MIM:516006 MT - NADH dehydrogenase, subunit 6 (complex I) protein-coding MT-ND6 mitochondrially encoded NADH dehydrogenase 6 O NADH dehydrogenase subunit 6 20121222 -9606 4542 MYO1F - - HGNC:7600|MIM:601480|Ensembl:ENSG00000142347|HPRD:03282 19 19p13.3-p13.2 myosin IF protein-coding MYO1F myosin IF O myosin-ID|myosin-Ie|unconventional myosin-If 20121230 -9606 4543 MTNR1A - MEL-1A-R|MT1 HGNC:7463|MIM:600665|Ensembl:ENSG00000168412|HPRD:02812|Vega:OTTHUMG00000160316 4 4q35.1 melatonin receptor 1A protein-coding MTNR1A melatonin receptor 1A O mel1a receptor|melatonin receptor type 1A 20121230 -9606 4544 MTNR1B - FGQTL2|MEL-1B-R|MT2 HGNC:7464|MIM:600804|Ensembl:ENSG00000134640|HPRD:02882|Vega:OTTHUMG00000167364 11 11q21-q22 melatonin receptor 1B protein-coding MTNR1B melatonin receptor 1B O mel1b receptor|melatonin receptor MEL1B|melatonin receptor type 1B 20121230 -9606 4547 MTTP - ABL|MTP HGNC:7467|MIM:157147|Ensembl:ENSG00000138823|HPRD:01144|Vega:OTTHUMG00000131023 4 4q24 microsomal triglyceride transfer protein protein-coding MTTP microsomal triglyceride transfer protein O microsomal triglyceride transfer protein (large polypeptide, 88kDa)|microsomal triglyceride transfer protein large subunit 20121230 -9606 4548 MTR - MS|cblG HGNC:7468|MIM:156570|Ensembl:ENSG00000116984|HPRD:01136|Vega:OTTHUMG00000040060 1 1q43 5-methyltetrahydrofolate-homocysteine methyltransferase protein-coding MTR 5-methyltetrahydrofolate-homocysteine methyltransferase O 5-methyltetrahydrofolate-homocysteine methyltransferase 1|cobalamin-dependent methionine synthase|methionine synthase|vitamin-B12 dependent methionine synthase 20121230 -9606 4549 RNR1 - MTRNR1 HGNC:7470|MIM:561000 MT - s-rRNA rRNA MT-RNR1 mitochondrially encoded 12S RNA O - 20121222 -9606 4550 RNR2 - MTRNR2 HGNC:7471|MIM:561010 MT - l-rRNA rRNA MT-RNR2 mitochondrially encoded 16S RNA O - 20121222 -9606 4552 MTRR - MSR|cblE HGNC:7473|MIM:602568|Ensembl:ENSG00000124275|HPRD:03979|Vega:OTTHUMG00000090477 5 5p15.31 5-methyltetrahydrofolate-homocysteine methyltransferase reductase protein-coding MTRR 5-methyltetrahydrofolate-homocysteine methyltransferase reductase O [methionine synthase]-cobalamin methyltransferase (cob(II)alamin reducing)|methionine synthase reductase|methionine synthase reductase, mitochondrial 20121230 -9606 4553 TRNA - MTTA HGNC:7475|MIM:590000 MT - tRNA tRNA MT-TA mitochondrially encoded tRNA alanine O - 20120919 -9606 4555 TRND - MTTD HGNC:7478|MIM:590015 MT - tRNA tRNA MT-TD mitochondrially encoded tRNA aspartic acid O - 20120919 -9606 4556 TRNE - MTTE HGNC:7479|MIM:590025 MT - tRNA tRNA MT-TE mitochondrially encoded tRNA glutamic acid O - 20120919 -9606 4558 TRNF - - HGNC:7481|MIM:590070 MT - tRNA tRNA MT-TF mitochondrially encoded tRNA phenylalanine O - 20121119 -9606 4563 TRNG - MTTG HGNC:7486|MIM:590035 MT - tRNA tRNA MT-TG mitochondrially encoded tRNA glycine O - 20120919 -9606 4564 TRNH - MTTH HGNC:7487|MIM:590040 MT - tRNA tRNA MT-TH mitochondrially encoded tRNA histidine O - 20120919 -9606 4565 TRNI - MTTI HGNC:7488|MIM:590045 MT - tRNA tRNA MT-TI mitochondrially encoded tRNA isoleucine O - 20121018 -9606 4566 TRNK - MTTK HGNC:7489|MIM:590060 MT - tRNA tRNA MT-TK mitochondrially encoded tRNA lysine O - 20121124 -9606 4567 TRNL1 - MTTL1 HGNC:7490|MIM:590050 MT - tRNA tRNA MT-TL1 mitochondrially encoded tRNA leucine 1 (UUA/G) O - 20121119 -9606 4568 TRNL2 - MTTL2 HGNC:7491|MIM:590055 MT - tRNA tRNA MT-L2 mitochondrially encoded tRNA leucine 2 (CUN) O - 20120919 -9606 4569 TRNM - MTTM HGNC:7492|MIM:590065 MT - tRNA tRNA MT-TM mitochondrially encoded tRNA methionine O - 20121018 -9606 4570 TRNN - MTTN HGNC:7493|MIM:590010 MT - tRNA tRNA MT-TN mitochondrially encoded tRNA asparagine O - 20120919 -9606 4571 TRNP - MTTP HGNC:7494|MIM:590075 MT - tRNA tRNA MT-TP mitochondrially encoded tRNA proline O - 20120919 -9606 4572 TRNQ - MTTQ HGNC:7495|MIM:590030 MT - tRNA tRNA MT-TQ mitochondrially encoded tRNA glutamine O - 20121119 -9606 4573 TRNR - MTTR HGNC:7496|MIM:590005 MT - tRNA tRNA MT-TR mitochondrially encoded tRNA arginine O - 20120919 -9606 4574 TRNS1 - MTTS1 HGNC:7497|MIM:590080 MT - tRNA tRNA MT-TS1 mitochondrially encoded tRNA serine 1 (UCN) O - 20121119 -9606 4575 TRNS2 - MTTS2 HGNC:7498|MIM:590085 MT - tRNA tRNA MT-TS2 mitochondrially encoded tRNA serine 2 (AGU/C) O - 20121119 -9606 4576 TRNT - MTTT HGNC:7499|MIM:590090 MT - tRNA tRNA MT-TT mitochondrially encoded tRNA threonine O - 20121119 -9606 4577 TRNV - MTTV HGNC:7500|MIM:590105 MT - tRNA tRNA MT-TV mitochondrially encoded tRNA valine O - 20121119 -9606 4578 TRNW - MTTW HGNC:7501|MIM:590095 MT - tRNA tRNA MT-TW mitochondrially encoded tRNA tryptophan O - 20121119 -9606 4579 TRNY - MTTY HGNC:7502|MIM:590100 MT - tRNA tRNA MT-TY mitochondrially encoded tRNA tyrosine O - 20120919 -9606 4580 MTX1 RP11-263K19.5 MTX|MTXN HGNC:7504|MIM:600605|Ensembl:ENSG00000173171|HPRD:11861|Vega:OTTHUMG00000035708 1 1q21 metaxin 1 protein-coding MTX1 metaxin 1 O metaxin-1|mitochondrial outer membrane import complex protein 1 20121230 -9606 4581 MTX1P1 - MTX1P|MTXP|psMTX HGNC:7505 1 1q22 metaxin 1 pseudogene 1 pseudo MTX1P1 metaxin 1 pseudogene 1 O - 20121230 -9606 4582 MUC1 RP11-263K19.2 CD227|EMA|H23AG|KL-6|MAM6|MUC-1|MUC-1/SEC|MUC-1/X|MUC1/ZD|PEM|PEMT|PUM HGNC:7508|MIM:158340|Ensembl:ENSG00000185499|HPRD:01152|Vega:OTTHUMG00000035681 1 1q21 mucin 1, cell surface associated protein-coding MUC1 mucin 1, cell surface associated O DF3 antigen|H23 antigen|breast carcinoma-associated antigen DF3|carcinoma-associated mucin|episialin|krebs von den Lungen-6|mucin 1, transmembrane|mucin-1|peanut-reactive urinary mucin|polymorphic epithelial mucin|tumor associated epithelial mucin|tumor-associated epithelial membrane antigen|tumor-associated mucin 20121230 -9606 4583 MUC2 - MLP|MUC-2|SMUC HGNC:7512|MIM:158370|Ensembl:ENSG00000198788|HPRD:11828|Vega:OTTHUMG00000156800 11 11p15.5 mucin 2, oligomeric mucus/gel-forming protein-coding MUC2 mucin 2, oligomeric mucus/gel-forming O intestinal mucin-2|mucin 2, intestinal/tracheal|mucin-2|mucin-like protein 20121230 -9606 4584 MUC3A - MUC-3A|MUC3 HGNC:7513|MIM:158371|Ensembl:ENSG00000169894|Vega:OTTHUMG00000157038 7 7q22 mucin 3A, cell surface associated protein-coding MUC3A mucin 3A, cell surface associated O mucin 3, intestinal|mucin 3A, intestinal|mucin-3A 20121230 -9606 4585 MUC4 - ASGP|HSA276359|MUC-4 HGNC:7514|MIM:158372|Ensembl:ENSG00000145113|HPRD:11829|Vega:OTTHUMG00000151827 3 3q29 mucin 4, cell surface associated protein-coding MUC4 mucin 4, cell surface associated O ascites sialoglycoprotein|mucin 4, tracheobronchial|mucin-4|pancreatic adenocarcinoma mucin|testis mucin|tracheobronchial mucin 20121230 -9606 4586 MUC5AC - MUC5|TBM|leB HGNC:7515|MIM:158373|Ensembl:ENSG00000215182|Vega:OTTHUMG00000154270 11 11p15.5 mucin 5AC, oligomeric mucus/gel-forming protein-coding MUC5AC mucin 5AC, oligomeric mucus/gel-forming O gastric mucin|lewis B blood group antigen|major airway glycoprotein|mucin 5, subtypes A and C, tracheobronchial/gastric|mucin 5AC, oligomeric mucus/gel-forming pseudogene|mucin-5 subtype AC, tracheobronchial|mucin-5AC|tracheobronchial mucin 20121230 -9606 4588 MUC6 - MUC-6 HGNC:7517|MIM:158374|Ensembl:ENSG00000184956|Vega:OTTHUMG00000165140 11 11p15.5 mucin 6, oligomeric mucus/gel-forming protein-coding MUC6 mucin 6, oligomeric mucus/gel-forming O gastric mucin-6|mucin 6, gastric|mucin-6 20121230 -9606 4589 MUC7 - MG2 HGNC:7518|MIM:158375|Ensembl:ENSG00000171195|HPRD:11759|Vega:OTTHUMG00000129916 4 4q13.3 mucin 7, secreted protein-coding MUC7 mucin 7, secreted O MUC-7|apo-MG2|mucin 7, salivary|mucin-7|salivary mucin-7 20121230 -9606 4591 TRIM37 - MUL|POB1|TEF3 HGNC:7523|MIM:605073|Ensembl:ENSG00000108395|HPRD:05463|Vega:OTTHUMG00000179360 17 17q23.2 tripartite motif containing 37 protein-coding TRIM37 tripartite motif containing 37 O E3 ubiquitin-protein ligase TRIM37|RING-B-box-coiled-coil protein|mulibrey nanism protein|tripartite motif-containing 37|tripartite motif-containing protein 37 20121230 -9606 4593 MUSK RP11-104M22.1 - HGNC:7525|MIM:601296|Ensembl:ENSG00000030304|HPRD:03190|Vega:OTTHUMG00000020485 9 9q31.3-q32 muscle, skeletal, receptor tyrosine kinase protein-coding MUSK muscle, skeletal, receptor tyrosine kinase O muscle, skeletal receptor tyrosine-protein kinase|muscle-specific kinase receptor|muscle-specific tyrosine-protein kinase receptor 20121230 -9606 4594 MUT - MCM HGNC:7526|MIM:609058|Ensembl:ENSG00000146085|HPRD:02014|Vega:OTTHUMG00000014814 6 6p12.3 methylmalonyl CoA mutase protein-coding MUT methylmalonyl CoA mutase O methylmalonyl Coenzyme A mutase|methylmalonyl-CoA isomerase|methylmalonyl-CoA mutase, mitochondrial 20121230 -9606 4595 MUTYH RP4-534D1.2 CYP2C|MYH HGNC:7527|MIM:604933|Ensembl:ENSG00000132781|HPRD:05380|Vega:OTTHUMG00000007682 1 1p34.1 mutY homolog (E. coli) protein-coding MUTYH mutY homolog (E. coli) O A/G-specific adenine DNA glycosylase 20121230 -9606 4597 MVD - FP17780|MPD HGNC:7529|MIM:603236|Ensembl:ENSG00000167508|HPRD:04454|Vega:OTTHUMG00000137865 16 16q24.3 mevalonate (diphospho) decarboxylase protein-coding MVD mevalonate (diphospho) decarboxylase O MDDase|diphosphomevalonate decarboxylase|mevalonate pyrophosphate decarboxylase|mevalonate pyrophosphate decarboxylase 20121230 -9606 4598 MVK - LRBP|MK|MVLK|POROK3 HGNC:7530|MIM:251170|Ensembl:ENSG00000110921|HPRD:02015|Vega:OTTHUMG00000169256 12 12q24 mevalonate kinase protein-coding MVK mevalonate kinase O LH receptor mRNA-binding protein|mevalonate kinase 1 20121230 -9606 4599 MX1 - IFI-78K|IFI78|MX|MxA HGNC:7532|MIM:147150|Ensembl:ENSG00000157601|HPRD:00919|Vega:OTTHUMG00000086755 21 21q22.3 myxovirus (influenza virus) resistance 1, interferon-inducible protein p78 (mouse) protein-coding MX1 myxovirus (influenza virus) resistance 1, interferon-inducible protein p78 (mouse) O interferon-induced GTP-binding protein Mx1|interferon-regulated resistance GTP-binding protein MxA|myxoma resistance protein 1 20121230 -9606 4600 MX2 - MXB HGNC:7533|MIM:147890|Ensembl:ENSG00000183486|HPRD:01001|Vega:OTTHUMG00000086753 21 21q22.3 myxovirus (influenza virus) resistance 2 (mouse) protein-coding MX2 myxovirus (influenza virus) resistance 2 (mouse) O interferon-induced GTP-binding protein Mx2|interferon-regulated resistance GTP-binding protein MXB|myxovirus resistance protein 2|p78-related protein|second interferon-induced protein p78 20121230 -9606 4601 MXI1 RP11-549L6.1 MAD2|MXD2|MXI|bHLHc11 HGNC:7534|MIM:600020|Ensembl:ENSG00000119950|HPRD:02486|Vega:OTTHUMG00000019033 10 10q24-q25 MAX interactor 1, dimerization protein protein-coding MXI1 MAX interactor 1, dimerization protein O MAX dimerization protein 2|Max-related transcription factor|class C basic helix-loop-helix protein 11|max-interacting protein 1 20121230 -9606 4602 MYB RP1-32B1.1 Cmyb|c-myb|c-myb_CDS|efg HGNC:7545|MIM:189990|Ensembl:ENSG00000118513|HPRD:01810|Vega:OTTHUMG00000015629 6 6q22-q23 v-myb myeloblastosis viral oncogene homolog (avian) protein-coding MYB v-myb myeloblastosis viral oncogene homolog (avian) O c-myb protein (140 AA)|c-myb10A_CDS|c-myb13A_CDS|c-myb14A_CDS|c-myb8B_CDS|proto-oncogene c-Myb|transcriptional activator Myb 20121230 -9606 4603 MYBL1 - A-MYB|AMYB HGNC:7547|MIM:159405|Ensembl:ENSG00000185697|Vega:OTTHUMG00000164559 8 8q22 v-myb myeloblastosis viral oncogene homolog (avian)-like 1 protein-coding MYBL1 v-myb myeloblastosis viral oncogene homolog (avian)-like 1 O myb-like protein 1|myb-related protein A|v-myb avian myeloblastosis viral oncogene homolog-like 1 20121230 -9606 4604 MYBPC1 - LCCS4|MYBPCC|MYBPCS HGNC:7549|MIM:160794|Ensembl:ENSG00000196091|HPRD:01185|Vega:OTTHUMG00000170274 12 12q23.2 myosin binding protein C, slow type protein-coding MYBPC1 myosin binding protein C, slow type O C-protein, skeletal muscle slow isoform|myosin-binding protein C, slow-type|skeletal muscle C-protein|slow MyBP-C 20121230 -9606 4605 MYBL2 - B-MYB|BMYB HGNC:7548|MIM:601415|Ensembl:ENSG00000101057|HPRD:03247|Vega:OTTHUMG00000033062 20 20q13.1 v-myb myeloblastosis viral oncogene homolog (avian)-like 2 protein-coding MYBL2 v-myb myeloblastosis viral oncogene homolog (avian)-like 2 O myb-like protein 2|myb-related protein B|v-myb avian myeloblastosis viral oncogene homolog-like 2 20121230 -9606 4606 MYBPC2 - MYBPC|MYBPCF HGNC:7550|MIM:160793|Ensembl:ENSG00000086967|HPRD:01184 19 19q13.33 myosin binding protein C, fast type protein-coding MYBPC2 myosin binding protein C, fast type O C-protein, skeletal muscle fast isoform|fast MyBP-C|fast-type muscle myosin-binding-protein C|myosin-binding protein C, fast-type 20121230 -9606 4607 MYBPC3 - CMH4|FHC|MYBP-C HGNC:7551|MIM:600958|Ensembl:ENSG00000134571|HPRD:02980|Vega:OTTHUMG00000166986 11 11p11.2 myosin binding protein C, cardiac protein-coding MYBPC3 myosin binding protein C, cardiac O C-protein, cardiac muscle isoform|myosin-binding protein C, cardiac-type 20121230 -9606 4608 MYBPH - - HGNC:7552|MIM:160795|Ensembl:ENSG00000133055|HPRD:01186|Vega:OTTHUMG00000042121 1 1q32.1 myosin binding protein H protein-coding MYBPH myosin binding protein H O H-protein|myBP-H|myosin-binding protein H 20121230 -9606 4609 MYC - MRTL|bHLHe39|c-Myc HGNC:7553|MIM:190080|Ensembl:ENSG00000136997|HPRD:01818|Vega:OTTHUMG00000128475 8 8q24.21 v-myc myelocytomatosis viral oncogene homolog (avian) protein-coding MYC v-myc myelocytomatosis viral oncogene homolog (avian) O avian myelocytomatosis viral oncogene homolog|class E basic helix-loop-helix protein 39|myc proto-oncogene protein|myc-related translation/localization regulatory factor|proto-oncogene c-Myc|transcription factor p64|v-myc avian myelocytomatosis viral oncogene homolog 20121230 -9606 4610 MYCL1 RP1-118J21.4 LMYC|MYCL|bHLHe38 HGNC:7555|MIM:164850|Ensembl:ENSG00000116990|HPRD:01279|Vega:OTTHUMG00000009243 1 1p34.2 v-myc myelocytomatosis viral oncogene homolog 1, lung carcinoma derived (avian) protein-coding MYCL1 v-myc myelocytomatosis viral oncogene homolog 1, lung carcinoma derived (avian) O class E basic helix-loop-helix protein 38|l-myc-1 proto-oncogene|myc-related gene from lung cancer|protein L-Myc-1 20121230 -9606 4611 MYCL2 - bHLHe38 HGNC:7556|MIM:310310|HPRD:02403 X Xq22-q23 v-myc myelocytomatosis viral oncogene homolog 2 (avian) pseudo MYCL2 v-myc myelocytomatosis viral oncogene homolog 2 (avian) O - 20121230 -9606 4612 MYCLK1 - - HGNC:7558|MIM:164865 7 7p15 v-myc myelocytomatosis viral oncogene homolog (avian)-like 1 protein-coding MYCLK1 v-myc myelocytomatosis viral oncogene homolog (avian)-like 1 O Avian myelocytomatosis viral (v-myc) oncogene homolog like 1|v-myc avian myelocytomatosis viral oncogene homolog-like 1 20080828 -9606 4613 MYCN - MODED|N-myc|NMYC|ODED|bHLHe37 HGNC:7559|MIM:164840|Ensembl:ENSG00000134323|HPRD:01278|Vega:OTTHUMG00000039579 2 2p24.3 v-myc myelocytomatosis viral related oncogene, neuroblastoma derived (avian) protein-coding MYCN v-myc myelocytomatosis viral related oncogene, neuroblastoma derived (avian) O N-myc proto-oncogene protein|class E basic helix-loop-helix protein 37|neuroblastoma MYC oncogene|neuroblastoma-derived v-myc avian myelocytomatosis viral related oncogene|oncogene NMYC|pp65/67|v-myc avian myelocytomatosis viral related oncogene, neuroblastoma derived 20121230 -9606 4615 MYD88 - MYD88D HGNC:7562|MIM:602170|Ensembl:ENSG00000172936|HPRD:03703|Vega:OTTHUMG00000131083 3 3p22 myeloid differentiation primary response 88 protein-coding MYD88 myeloid differentiation primary response 88 O myeloid differentiation primary response gene (88)|myeloid differentiation primary response protein MyD88 20121230 -9606 4616 GADD45B - GADD45BETA|MYD118 HGNC:4096|MIM:604948|Ensembl:ENSG00000099860|HPRD:05382|Vega:OTTHUMG00000180434 19 19p13.3 growth arrest and DNA-damage-inducible, beta protein-coding GADD45B growth arrest and DNA-damage-inducible, beta O growth arrest and DNA damage-inducible protein GADD45 beta|myeloid differentiation primary response protein MyD118|negative growth regulatory protein MyD118 20121230 -9606 4617 MYF5 - bHLHc2 HGNC:7565|MIM:159990|Ensembl:ENSG00000111049|HPRD:01168|Vega:OTTHUMG00000170166 12 12q21 myogenic factor 5 protein-coding MYF5 myogenic factor 5 O class C basic helix-loop-helix protein 2|myf-5 20121230 -9606 4618 MYF6 - CNM3|MRF4|bHLHc4|myf-6 HGNC:7566|MIM:159991|Ensembl:ENSG00000111046|HPRD:01169|Vega:OTTHUMG00000170165 12 12q21 myogenic factor 6 (herculin) protein-coding MYF6 myogenic factor 6 (herculin) O class C basic helix-loop-helix protein 4|muscle-specific regulatory factor 4|myogenic factor 6 20121230 -9606 4619 MYH1 - MYHSA1|MYHa|MyHC-2X/D|MyHC-2x HGNC:7567|MIM:160730|Ensembl:ENSG00000109061|HPRD:08872|Vega:OTTHUMG00000130362 17 17p13.1 myosin, heavy chain 1, skeletal muscle, adult protein-coding MYH1 myosin, heavy chain 1, skeletal muscle, adult O myHC-IIx/d|myosin heavy chain 1|myosin heavy chain 2x|myosin heavy chain IIx/d|myosin heavy chain, skeletal muscle, adult 1|myosin, heavy polypeptide 1, skeletal muscle, adult|myosin-1 20121230 -9606 4620 MYH2 - MYH2A|MYHSA2|MYHas8|MyHC-2A|MyHC-IIa HGNC:7572|MIM:160740|Ensembl:ENSG00000125414|HPRD:01173|Vega:OTTHUMG00000130363 17 17p13.1 myosin, heavy chain 2, skeletal muscle, adult protein-coding MYH2 myosin, heavy chain 2, skeletal muscle, adult O fast 2a myosin heavy chain|myosin heavy chain 2|myosin heavy chain 2a|myosin heavy chain IIa|myosin heavy chain, skeletal muscle, adult 2|myosin, heavy polypeptide 2, skeletal muscle, adult|myosin-2|type IIA myosin heavy chain 20121230 -9606 4621 MYH3 - HEMHC|MYHC-EMB|MYHSE1|SMHCE HGNC:7573|MIM:160720|Ensembl:ENSG00000109063|HPRD:01172|Vega:OTTHUMG00000130367 17 17p13.1 myosin, heavy chain 3, skeletal muscle, embryonic protein-coding MYH3 myosin, heavy chain 3, skeletal muscle, embryonic O myosin heavy chain, fast skeletal muscle, embryonic|myosin, heavy polypeptide 3, skeletal muscle, embryonic|myosin, skeletal, heavy chain, embryonic 1|myosin-3 20121230 -9606 4622 MYH4 - MYH2B|MyHC-2B|MyHC-IIb HGNC:7574|MIM:160742|Ensembl:ENSG00000264424|HPRD:08873|Vega:OTTHUMG00000130365 17 17p13.1 myosin, heavy chain 4, skeletal muscle protein-coding MYH4 myosin, heavy chain 4, skeletal muscle O myosin heavy chain 2b|myosin heavy chain 4|myosin heavy chain IIb|myosin heavy chain, skeletal muscle, fetal|myosin, heavy polypeptide 4, skeletal muscle|myosin-4 20121230 -9606 4624 MYH6 - ASD3|CMD1EE|CMH14|MYHC|MYHCA|SSS3|alpha-MHC HGNC:7576|MIM:160710|Ensembl:ENSG00000197616|HPRD:01171|Vega:OTTHUMG00000028753 14 14q12 myosin, heavy chain 6, cardiac muscle, alpha protein-coding MYH6 myosin, heavy chain 6, cardiac muscle, alpha O myHC-alpha|myosin heavy chain 6|myosin heavy chain, cardiac muscle alpha isoform|myosin, heavy polypeptide 6, cardiac muscle, alpha (cardiomyopathy, hypertrophic 1)|myosin-6 20121230 -9606 4625 MYH7 - CMD1S|CMH1|MPD1|MYHCB|SPMD|SPMM HGNC:7577|MIM:160760|Ensembl:ENSG00000092054|HPRD:01175|Vega:OTTHUMG00000028755 14 14q12 myosin, heavy chain 7, cardiac muscle, beta protein-coding MYH7 myosin, heavy chain 7, cardiac muscle, beta O beta-myosin heavy chain|myHC-beta|myhc-slow|myopathy, distal 1|myosin heavy chain (AA 1-96)|myosin heavy chain 7|myosin heavy chain slow isoform|myosin heavy chain, cardiac muscle beta isoform|myosin, heavy polypeptide 7, cardiac muscle, beta|myosin-7|rhabdomyosarcoma antigen MU-RMS-40.7A 20121230 -9606 4626 MYH8 - MyHC-peri|MyHC-pn|gtMHC-F HGNC:7578|MIM:160741|Ensembl:ENSG00000133020|HPRD:11760|Vega:OTTHUMG00000130361 17 17p13.1 myosin, heavy chain 8, skeletal muscle, perinatal protein-coding MYH8 myosin, heavy chain 8, skeletal muscle, perinatal O fetal-myosin heavy chain|myHC-perinatal|myosin heavy chain 8|myosin heavy chain, skeletal muscle, perinatal|myosin, heavy polypeptide 8, skeletal muscle, perinatal|myosin-8 20121230 -9606 4627 MYH9 RP1-68O2.1 BDPLT6|DFNA17|EPSTS|FTNS|MHA|NMHC-II-A|NMMHC-IIA|NMMHCA HGNC:7579|MIM:160775|Ensembl:ENSG00000100345|HPRD:01177|Vega:OTTHUMG00000030429 22 22q13.1 myosin, heavy chain 9, non-muscle protein-coding MYH9 myosin, heavy chain 9, non-muscle O cellular myosin heavy chain, type A|myosin heavy chain 9|myosin heavy chain, non-muscle IIa|myosin-9|non-muscle myosin heavy chain A|non-muscle myosin heavy chain IIa|non-muscle myosin heavy polypeptide 9|nonmuscle myosin heavy chain II-A 20121230 -9606 4628 MYH10 - NMMHC-IIB|NMMHCB HGNC:7568|MIM:160776|Ensembl:ENSG00000133026|HPRD:01178|Vega:OTTHUMG00000108195 17 17p13 myosin, heavy chain 10, non-muscle protein-coding MYH10 myosin, heavy chain 10, non-muscle O cellular myosin heavy chain, type B|myosin heavy chain, nonmuscle type B|myosin, heavy polypeptide 10, non-muscle|myosin-10|nonmuscle myosin II heavy chain-B|nonmuscle myosin heavy chain IIB 20121230 -9606 4629 MYH11 - AAT4|FAA4|SMHC|SMMHC HGNC:7569|MIM:160745|Ensembl:ENSG00000133392|HPRD:01174|Vega:OTTHUMG00000129935 16 16p13.11 myosin, heavy chain 11, smooth muscle protein-coding MYH11 myosin, heavy chain 11, smooth muscle O myosin heavy chain 11|myosin heavy chain, smooth muscle isoform|myosin, heavy polypeptide 11, smooth muscle|myosin-11 20121230 -9606 4630 MYHK - - HGNC:7580 - - myosin, heavy chain kinase protein-coding MYHK myosin, heavy chain kinase O myosin, heavy polypeptide kinase 20080828 -9606 4632 MYL1 - MLC1F|MLC3F HGNC:7582|MIM:160780|Ensembl:ENSG00000168530|HPRD:01180|Vega:OTTHUMG00000132992 2 2q33-q34 myosin, light chain 1, alkali; skeletal, fast protein-coding MYL1 myosin, light chain 1, alkali; skeletal, fast O A1 catalytic|A2 catalytic|MLC1/MLC3|MLC1F/MLC3F|myosin light chain 1/3, skeletal muscle isoform|myosin light chain A1/A2|myosin light chain alkali 1/2|myosin, light polypeptide 1, alkali; skeletal, fast 20121230 -9606 4633 MYL2 - CMH10|MLC2 HGNC:7583|MIM:160781|Ensembl:ENSG00000111245|HPRD:01181|Vega:OTTHUMG00000169535 12 12q24.11 myosin, light chain 2, regulatory, cardiac, slow protein-coding MYL2 myosin, light chain 2, regulatory, cardiac, slow O MLC-2|MLC-2v|RLC of myosin|cardiac ventricular myosin light chain 2|myosin light chain 2|myosin regulatory light chain 2, ventricular/cardiac muscle isoform|myosin, light polypeptide 2, regulatory, cardiac, slow|regulatory light chain of myosin|slow cardiac myosin regulatory light chain 2 20121230 -9606 4634 MYL3 - CMH8|MLC1SB|MLC1V|VLC1 HGNC:7584|MIM:160790|Ensembl:ENSG00000160808|HPRD:01183|Vega:OTTHUMG00000133516 3 3p21.3-p21.2 myosin, light chain 3, alkali; ventricular, skeletal, slow protein-coding MYL3 myosin, light chain 3, alkali; ventricular, skeletal, slow O CMLC1|cardiac myosin light chain 1|myosin light chain 1, slow-twitch muscle B/ventricular isoform|myosin light chain 3|myosin, light polypeptide 3, alkali; ventricular, skeletal, slow|ventricular/slow twitch myosin alkali light chain 20121230 -9606 4635 MYL4 PRO1957 ALC1|AMLC|GT1 HGNC:7585|MIM:160770|Ensembl:ENSG00000198336|HPRD:01176|Vega:OTTHUMG00000178232 17 17q21-qter myosin, light chain 4, alkali; atrial, embryonic protein-coding MYL4 myosin, light chain 4, alkali; atrial, embryonic O myosin light chain 1, embryonic muscle/atrial isoform|myosin light chain 4|myosin light chain alkali GT-1 isoform|myosin, atrial/fetal muscle, light chain|myosin, light polypeptide 4, alkali; atrial, embryonic 20121230 -9606 4636 MYL5 - - HGNC:7586|MIM:160782|Ensembl:ENSG00000215375|HPRD:01182|Vega:OTTHUMG00000159971 4 4p16.3 myosin, light chain 5, regulatory protein-coding MYL5 myosin, light chain 5, regulatory O MYLC2|myLC-2|myosin light chain 5|myosin regulatory light chain 5|myosin, light polypeptide 5, regulatory|superfast myosin regulatory light chain 2 20121230 -9606 4637 MYL6 - ESMLC|LC17|LC17-GI|LC17-NM|LC17A|LC17B|MLC-3|MLC1SM|MLC3NM|MLC3SM HGNC:7587|MIM:609931|Ensembl:ENSG00000092841|HPRD:17618|Vega:OTTHUMG00000170200 12 12q13.2 myosin, light chain 6, alkali, smooth muscle and non-muscle protein-coding MYL6 myosin, light chain 6, alkali, smooth muscle and non-muscle O 17 kDa myosin light chain|myosin light chain A3|myosin light chain alkali 3|myosin light polypeptide 6|myosin, light polypeptide 6, alkali, smooth muscle and non-muscle 20121230 -9606 4638 MYLK - AAT7|KRP|MLCK|MLCK1|MLCK108|MLCK210|MSTP083|MYLK1|smMLCK HGNC:7590|MIM:600922|Ensembl:ENSG00000065534|HPRD:02952|Vega:OTTHUMG00000141304 3 3q21 myosin light chain kinase protein-coding MYLK myosin light chain kinase O kinase-related protein|myosin light chain kinase, smooth muscle|myosin, light polypeptide kinase|smooth muscle myosin light chain kinase|telokin 20121230 -9606 4639 MYLL1 - - HGNC:7592 8 - myosin, light chain, cardiac muscle-like 1 protein-coding MYLL1 myosin, light chain, cardiac muscle-like 1 O myosin, light polypeptide, cardiac muscle-like 1 20080828 -9606 4640 MYO1A - BBMI|DFNA48|MIHC|MYHL HGNC:7595|MIM:601478|Ensembl:ENSG00000166866|HPRD:08371|Vega:OTTHUMG00000149899 12 12q13-q14 myosin IA protein-coding MYO1A myosin IA O brush border myosin I|myosin I heavy chain|myosin, heavy polypeptide-like (100kD)|unconventional myosin-Ia 20121230 -9606 4641 MYO1C - MMI-beta|MMIb|NMI|myr2 HGNC:7597|MIM:606538|Ensembl:ENSG00000197879|HPRD:09411|Vega:OTTHUMG00000090323 17 17p13.3 myosin IC protein-coding MYO1C myosin IC O myosin I beta|myosin-I beta|myosin-Ic|nuclear myosin I|unconventional myosin-Ic 20121230 -9606 4642 MYO1D - myr4 HGNC:7598|MIM:606539|Ensembl:ENSG00000176658|HPRD:07581|Vega:OTTHUMG00000179636 17 17q11-q12 myosin ID protein-coding MYO1D myosin ID O myosin-I gamma|myosin-Id|unconventional myosin-Id 20121230 -9606 4643 MYO1E - FSGS6|HuncM-IC|MYO1C HGNC:7599|MIM:601479|Ensembl:ENSG00000157483|HPRD:03281|Vega:OTTHUMG00000171944 15 15q21-q22 myosin IE protein-coding MYO1E myosin IE O MYO1E variant protein|myosin-IC|unconventional myosin 1E|unconventional myosin-Ie 20121230 -9606 4644 MYO5A - GS1|MYH12|MYO5|MYR12 HGNC:7602|MIM:160777|Ensembl:ENSG00000197535|HPRD:01179|Vega:OTTHUMG00000137383 15 15q21 myosin VA (heavy chain 12, myoxin) protein-coding MYO5A myosin VA (heavy chain 12, myoxin) O dilute myosin heavy chain, non-muscle|myosin V|myosin, heavy polypeptide kinase|myosin-12|myosin-Va|myoxin|unconventional myosin-Va 20121230 -9606 4645 MYO5B - - HGNC:7603|MIM:606540|Ensembl:ENSG00000167306|Vega:OTTHUMG00000179843 18 18q21 myosin VB protein-coding MYO5B myosin VB O MYO5B variant protein|myosin-Vb|unconventional myosin-Vb 20121230 -9606 4646 MYO6 RP3-472A9.1 DFNA22|DFNB37 HGNC:7605|MIM:600970|Ensembl:ENSG00000196586|HPRD:02985|Vega:OTTHUMG00000015061 6 6q13 myosin VI protein-coding MYO6 myosin VI O myosin-VI|unconventional myosin-6|unconventional myosin-VI 20121230 -9606 4647 MYO7A - DFNA11|DFNB2|MYOVIIA|MYU7A|NSRD2|USH1B HGNC:7606|MIM:276903|Ensembl:ENSG00000137474|HPRD:02043|Vega:OTTHUMG00000152822 11 11q13.5 myosin VIIA protein-coding MYO7A myosin VIIA O myosin VIIA (Usher syndrome 1B (autosomal recessive, severe))|unconventional myosin-VIIa 20121230 -9606 4648 MYO7B hCG_42606 - HGNC:7607|MIM:606541|Ensembl:ENSG00000169994|Vega:OTTHUMG00000153419 2 2q21.1 myosin VIIB protein-coding MYO7B myosin VIIB O myosin-VIIb|unconventional myosin-VIIb 20121230 -9606 4649 MYO9A - - HGNC:7608|MIM:604875|Ensembl:ENSG00000066933|HPRD:05341|Vega:OTTHUMG00000133440 15 15q22-q23 myosin IXA protein-coding MYO9A myosin IXA O myosin-IXa|unconventional myosin-9a|unconventional myosin-IXa 20121230 -9606 4650 MYO9B - CELIAC4|MYR5 HGNC:7609|MIM:602129|Ensembl:ENSG00000099331|HPRD:03677 19 19p13.1 myosin IXB protein-coding MYO9B myosin IXB O myosin-IXb|unconventional myosin IXb|unconventional myosin-9b|unconventional myosin-IXb 20121230 -9606 4651 MYO10 - - HGNC:7593|MIM:601481|Ensembl:ENSG00000145555|HPRD:03283|Vega:OTTHUMG00000161822 5 5p15.1-p14.3 myosin X protein-coding MYO10 myosin X O myosin-X|unconventional myosin-10|unconventional myosin-X|unconventionnal myosin-X 20121230 -9606 4653 MYOC - GLC1A|GPOA|JOAG|JOAG1|TIGR|myocilin HGNC:7610|MIM:601652|Ensembl:ENSG00000034971|HPRD:03387|Vega:OTTHUMG00000034789 1 1q23-q24 myocilin, trabecular meshwork inducible glucocorticoid response protein-coding MYOC myocilin, trabecular meshwork inducible glucocorticoid response O mutated trabecular meshwork-induced glucocorticoid response protein|myocilin 20121230 -9606 4654 MYOD1 - MYF3|MYOD|PUM|bHLHc1 HGNC:7611|MIM:159970|Ensembl:ENSG00000129152|HPRD:01166|Vega:OTTHUMG00000166358 11 11p15.4 myogenic differentiation 1 protein-coding MYOD1 myogenic differentiation 1 O class C basic helix-loop-helix protein 1|myf-3|myoblast determination protein 1|myogenic factor 3 20121230 -9606 4655 MYSA - - HGNC:7620 - - myasthenic (Lambert-Eaton) syndrome antigen A protein-coding MYSA myasthenic (Lambert-Eaton) syndrome antigen A O - 20080828 -9606 4656 MYOG - MYF4|bHLHc3|myf-4 HGNC:7612|MIM:159980|Ensembl:ENSG00000122180|HPRD:01167|Vega:OTTHUMG00000042127 1 1q31-q41 myogenin (myogenic factor 4) protein-coding MYOG myogenin (myogenic factor 4) O class C basic helix-loop-helix protein 3|myogenic factor 4|myogenin 20121230 -9606 4657 MYP1 - BED HGNC:7615|MIM:310460 X Xq28 myopia 1 (X-linked) unknown MYP1 myopia 1 (X-linked) O - 20120622 -9606 4658 MYP2 - - HGNC:7616|MIM:160700 18 18p11.31 myopia 2 (high grade, autosomal dominant) unknown MYP2 myopia 2 (high grade, autosomal dominant) O - 20120622 -9606 4659 PPP1R12A - M130|MBS|MYPT1 HGNC:7618|MIM:602021|Ensembl:ENSG00000058272|HPRD:03606|Vega:OTTHUMG00000170100 12 12q15-q21 protein phosphatase 1, regulatory subunit 12A protein-coding PPP1R12A protein phosphatase 1, regulatory subunit 12A O myosin binding subunit|myosin phosphatase, target subunit 1|myosin phosphatase-targeting subunit 1|protein phosphatase 1 regulatory subunit 12A|protein phosphatase 1, regulatory (inhibitor) subunit 12A|protein phosphatase myosin-binding subunit 20121230 -9606 4660 PPP1R12B - MYPT2|PP1bp55 HGNC:7619|MIM:603768|Ensembl:ENSG00000077157|HPRD:04794|Vega:OTTHUMG00000041393 1 1q32.1 protein phosphatase 1, regulatory subunit 12B protein-coding PPP1R12B protein phosphatase 1, regulatory subunit 12B O myosin phosphatase target subunit 2|myosin phosphatase, target subunit 2|myosin phosphatase-targeting subunit 2|protein phosphatase 1 regulatory subunit 12B|protein phosphatase 1, regulatory (inhibitor) subunit 12B 20121230 -9606 4661 MYT1 - C20orf36|MTF1|MYTI|PLPB1 HGNC:7622|MIM:600379|Ensembl:ENSG00000196132|HPRD:02659|Vega:OTTHUMG00000149988 20 20q13.33 myelin transcription factor 1 protein-coding MYT1 myelin transcription factor 1 O myelin transcription factor I|proteolipid protein binding protein|proteolipid protein-binding protein 20121230 -9606 4663 NA - NAC HGNC:7625 X - neuroacanthocytosis unknown NA neuroacanthocytosis O - 20121209 -9606 4664 NAB1 - - HGNC:7626|MIM:600800|Ensembl:ENSG00000138386|HPRD:02881|Vega:OTTHUMG00000132689 2 2q32.3-q33 NGFI-A binding protein 1 (EGR1 binding protein 1) protein-coding NAB1 NGFI-A binding protein 1 (EGR1 binding protein 1) O EGR-1-binding protein 1|EGR1 binding protein 1|NGFI-A-binding protein 1|transcriptional regulatory protein p54 20121230 -9606 4665 NAB2 - MADER HGNC:7627|MIM:602381|Ensembl:ENSG00000166886|HPRD:03854|Vega:OTTHUMG00000171192 12 12q13.3 NGFI-A binding protein 2 (EGR1 binding protein 2) protein-coding NAB2 NGFI-A binding protein 2 (EGR1 binding protein 2) O EGR-1-binding protein 2|EGR1 binding protein 2|NGFI-A-binding protein 2|melanoma-associated delayed early response protein 20121230 -9606 4666 NACA HSD48 NACA1 HGNC:7629|MIM:601234|Ensembl:ENSG00000196531|HPRD:03137|Vega:OTTHUMG00000170033 12 12q23-q24.1 nascent polypeptide-associated complex alpha subunit protein-coding NACA nascent polypeptide-associated complex alpha subunit O NAC-alpha|alpha-NAC|nascent polypeptide-associated complex subunit alpha|nascent-polypeptide-associated complex alpha polypeptide 20121230 -9606 4668 NAGA - D22S674|GALB HGNC:7631|MIM:104170|Ensembl:ENSG00000198951|HPRD:00076|Vega:OTTHUMG00000151276 22 22q11 N-acetylgalactosaminidase, alpha- protein-coding NAGA N-acetylgalactosaminidase, alpha- O Acetylgalactosaminidase, alpha-N- (alpha-galactosidase B)|alpha-N-acetylgalactosaminidase|alpha-galactosidase B 20121230 -9606 4669 NAGLU - MPS-IIIB|MPS3B|NAG|UFHSD HGNC:7632|MIM:609701|Ensembl:ENSG00000108784|HPRD:02017|Vega:OTTHUMG00000180240 17 17q21 N-acetylglucosaminidase, alpha protein-coding NAGLU N-acetylglucosaminidase, alpha O N-acetyl-alpha-glucosaminidase|alpha-N-acetylglucosaminidase 20121230 -9606 4670 HNRNPM - CEAR|HNRNPM4|HNRPM|HNRPM4|HTGR1|NAGR1|hnRNP M HGNC:5046|MIM:160994|Ensembl:ENSG00000099783|HPRD:01188 19 19p13.3-p13.2 heterogeneous nuclear ribonucleoprotein M protein-coding HNRNPM heterogeneous nuclear ribonucleoprotein M O CEA receptor|N-acetylglucosamine receptor 1|heterogenous nuclear ribonucleoprotein M4|hnRNA-binding protein M4 20121230 -9606 4671 NAIP - BIRC1|NLRB1|psiNAIP HGNC:7634|MIM:600355|Ensembl:ENSG00000249437|Vega:OTTHUMG00000163318 5 5q13.2 NLR family, apoptosis inhibitory protein protein-coding NAIP NLR family, apoptosis inhibitory protein O baculoviral IAP repeat-containing protein 1|neuronal apoptosis inhibitory protein|nucleotide-binding oligomerization domain, leucine rich repeat and BIR domain containing 1|psi neuronal apoptosis inhibitory protein 20121230 -9606 4672 NAMSD - CMT2D|CMTX4|NADMR HGNC:7635|MIM:310490 X Xq24-q26.1 neuropathy, axonal, motor-sensory with deafness and mental retardation (Cowchock syndrome) unknown NAMSD neuropathy, axonal, motor-sensory with deafness and mental retardation (Cowchock syndrome) O - 20120622 -9606 4673 NAP1L1 - NAP1|NAP1L|NRP HGNC:7637|MIM:164060|Ensembl:ENSG00000187109|HPRD:01248|Vega:OTTHUMG00000169786 12 12q21.2 nucleosome assembly protein 1-like 1 protein-coding NAP1L1 nucleosome assembly protein 1-like 1 O HSP22-like protein interacting protein|NAP-1 related protein|NAP-1-related protein|hNRP 20121230 -9606 4674 NAP1L2 - BPX HGNC:7638|MIM:300026|Ensembl:ENSG00000186462|HPRD:02066|Vega:OTTHUMG00000021827 X Xq13 nucleosome assembly protein 1-like 2 protein-coding NAP1L2 nucleosome assembly protein 1-like 2 O brain specific gene BPX|brain-specific protein, X-linked 20121230 -9606 4675 NAP1L3 RP1-32F7.3 MB20|NPL3 HGNC:7639|MIM:300117|Ensembl:ENSG00000186310|HPRD:02123|Vega:OTTHUMG00000021974 X Xq21.3-q22 nucleosome assembly protein 1-like 3 protein-coding NAP1L3 nucleosome assembly protein 1-like 3 O - 20121230 -9606 4676 NAP1L4 - NAP1L4b|NAP2|NAP2L|hNAP2 HGNC:7640|MIM:601651|Ensembl:ENSG00000205531|HPRD:11873|Vega:OTTHUMG00000011009 11 11p15.5 nucleosome assembly protein 1-like 4 protein-coding NAP1L4 nucleosome assembly protein 1-like 4 O NAP-2|nucleosome assembly protein 1-like 4b|nucleosome assembly protein 2 20121230 -9606 4677 NARS - ASNRS|NARS1 HGNC:7643|MIM:108410|Ensembl:ENSG00000134440|HPRD:00154|Vega:OTTHUMG00000180125 18 18q21.31 asparaginyl-tRNA synthetase protein-coding NARS asparaginyl-tRNA synthetase O asparagine tRNA ligase 1, cytoplasmic|asparagine--tRNA ligase, cytoplasmic|asparaginyl-tRNA synthetase, cytoplasmic 20121230 -9606 4678 NASP RP4-697E16.3 FLB7527|PRO1999 HGNC:7644|MIM:603185|Ensembl:ENSG00000132780|HPRD:04423|Vega:OTTHUMG00000007826 1 1p34.1 nuclear autoantigenic sperm protein (histone-binding) protein-coding NASP nuclear autoantigenic sperm protein (histone-binding) O histone H1-binding protein|nuclear autoantigenic sperm protein 20121230 -9606 4680 CEACAM6 - CD66c|CEAL|NCA HGNC:1818|MIM:163980|Ensembl:ENSG00000086548|HPRD:01233|Vega:OTTHUMG00000151064 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule 6 (non-specific cross reacting antigen) protein-coding CEACAM6 carcinoembryonic antigen-related cell adhesion molecule 6 (non-specific cross reacting antigen) O carcinoembryonic antigen-related cell adhesion molecule 6|non-specific crossreacting antigen|normal cross-reacting antigen 20121230 -9606 4681 NBL1 RP5-1056L3.4 D1S1733E|DAN|DAND1|NB|NO3 HGNC:7650|MIM:600613|Ensembl:ENSG00000158747|HPRD:09001|Vega:OTTHUMG00000002700 1 1p36.13 neuroblastoma, suppression of tumorigenicity 1 protein-coding NBL1 neuroblastoma, suppression of tumorigenicity 1 O DAN domain family member 1|differential screening-selected gene aberrant in neuroblastoma|neuroblastoma candidate region, suppression of tumorigenicity 1|neuroblastoma suppressor of tumorigenicity 1 20121230 -9606 4682 NUBP1 - NBP|NBP1 HGNC:8041|MIM:600280|Ensembl:ENSG00000103274|HPRD:02611|Vega:OTTHUMG00000129751 16 16p13.13 nucleotide binding protein 1 protein-coding NUBP1 nucleotide binding protein 1 O NBP 1|cytosolic Fe-S cluster assembly factor NUBP1|nucleotide binding protein (e.coli MinD like)|nucleotide binding protein 1 (E.coli MinD like)|nucleotide binding protein 1 (MinD homolog, E. coli)|nucleotide-binding protein 1 20121230 -9606 4683 NBN - AT-V1|AT-V2|ATV|NBS|NBS1|P95 HGNC:7652|MIM:602667|Ensembl:ENSG00000104320|HPRD:04050|Vega:OTTHUMG00000153546 8 8q21 nibrin protein-coding NBN nibrin O Nijmegen breakage syndrome 1 (nibrin)|cell cycle regulatory protein p95|p95 protein of the MRE11/RAD50 complex 20121230 -9606 4684 NCAM1 - CD56|MSK39|NCAM HGNC:7656|MIM:116930|Ensembl:ENSG00000149294|HPRD:00301|Vega:OTTHUMG00000167196 11 11q23.1 neural cell adhesion molecule 1 protein-coding NCAM1 neural cell adhesion molecule 1 O antigen recognized by monoclonal antibody 5.1H11|neural cell adhesion molecule, NCAM 20121230 -9606 4685 NCAM2 - NCAM21 HGNC:7657|MIM:602040|Ensembl:ENSG00000154654|HPRD:03619|Vega:OTTHUMG00000078121 21 21q21.1 neural cell adhesion molecule 2 protein-coding NCAM2 neural cell adhesion molecule 2 O N-CAM-2|NCAM-2 20121230 -9606 4686 NCBP1 RP11-546O6.1 CBP80|NCBP|Sto1 HGNC:7658|MIM:600469|Ensembl:ENSG00000136937|HPRD:02717|Vega:OTTHUMG00000020332 9 9q34.1 nuclear cap binding protein subunit 1, 80kDa protein-coding NCBP1 nuclear cap binding protein subunit 1, 80kDa O 80 kDa nuclear cap-binding protein|NCBP 80 kDa subunit|nuclear cap-binding protein subunit 1 20121230 -9606 4688 NCF2 RP1-127C7.5 NCF-2|NOXA2|P67-PHOX|P67PHOX HGNC:7661|MIM:608515|Ensembl:ENSG00000116701|HPRD:01991|Vega:OTTHUMG00000035329 1 1q25 neutrophil cytosolic factor 2 protein-coding NCF2 neutrophil cytosolic factor 2 O 67 kDa neutrophil oxidase factor|NADPH oxidase activator 2|chronic granulomatous disease, autosomal 2|neutrophil NADPH oxidase factor 2|neutrophil cytosol factor 2|neutrophil cytosolic factor 2 (65kD, chronic granulomatous disease, autosomal 2) 20121230 -9606 4689 NCF4 CTA-833B7.1 NCF|P40PHOX|SH3PXD4 HGNC:7662|MIM:601488|Ensembl:ENSG00000100365|HPRD:03289|Vega:OTTHUMG00000150548 22 22q13.1 neutrophil cytosolic factor 4, 40kDa protein-coding NCF4 neutrophil cytosolic factor 4, 40kDa O NCF-4|SH3 and PX domain-containing protein 4|neutrophil NADPH oxidase factor 4|neutrophil cytosol factor 4|p40-phox 20121230 -9606 4690 NCK1 - NCK|NCKalpha|nck-1 HGNC:7664|MIM:600508|Ensembl:ENSG00000158092|HPRD:02740|Vega:OTTHUMG00000159781 3 3q21 NCK adaptor protein 1 protein-coding NCK1 NCK adaptor protein 1 O NCK tyrosine kinase|SH2/SH3 adaptor protein NCK-alpha|cytoplasmic protein NCK1|melanoma NCK protein|non-catalytic region of tyrosine kinase 20121230 -9606 4691 NCL - C23 HGNC:7667|MIM:164035|Ensembl:ENSG00000115053|HPRD:01245|Vega:OTTHUMG00000153866 2 2q37.1 nucleolin protein-coding NCL nucleolin O - 20121230 -9606 4692 NDN - HsT16328|PWCR HGNC:7675|MIM:602117|Ensembl:ENSG00000182636|HPRD:03667|Vega:OTTHUMG00000129161 15 15q11.2-q12 necdin, melanoma antigen (MAGE) family member protein-coding NDN necdin, melanoma antigen (MAGE) family member O Prader-Willi syndrome chromosome region|necdin|necdin homolog 20121230 -9606 4693 NDP - EVR2|FEVR|ND HGNC:7678|MIM:300658|Ensembl:ENSG00000124479|HPRD:02404|Vega:OTTHUMG00000021391 X Xp11.4 Norrie disease (pseudoglioma) protein-coding NDP Norrie disease (pseudoglioma) O X-linked exudative vitreoretinopathy 2 protein|norrie disease protein|norrin 20121230 -9606 4694 NDUFA1 - CI-MWFE|MWFE|ZNF183 HGNC:7683|MIM:300078|Ensembl:ENSG00000125356|HPRD:02093|Vega:OTTHUMG00000022287 X Xq24 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 1, 7.5kDa protein-coding NDUFA1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 1, 7.5kDa O NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1|NADH oxidoreductase subunit MWFE|NADH-ubiquinone oxidoreductase MWFE subunit|NADH:ubiquinone oxidoreductase (complex 1)|complex I MWFE subunit|complex I-MWFE|type I dehydrogenase 20121230 -9606 4695 NDUFA2 - B8|CD14|CIB8 HGNC:7685|MIM:602137|Ensembl:ENSG00000131495|HPRD:11883|Vega:OTTHUMG00000129505 5 5q31.2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 2, 8kDa protein-coding NDUFA2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 2, 8kDa O NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 2|NADH-ubiquinone oxidoreductase subunit CI-B8|complex I B8 subunit 20121230 -9606 4696 NDUFA3 - B9|CI-B9 HGNC:7686|MIM:603832|Ensembl:ENSG00000170906|HPRD:04830|Vega:OTTHUMG00000064972 19 19q13.42 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 3, 9kDa protein-coding NDUFA3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 3, 9kDa O NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3|NADH-ubiquinone oxidoreductase B9 subunit|complex I B9 subunit|complex I-B9 20121230 -9606 4697 NDUFA4 - CI-9k|CI-MLRQ|MLRQ HGNC:7687|MIM:603833|Ensembl:ENSG00000189043|HPRD:04831|Vega:OTTHUMG00000023880 7 7p21.3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa protein-coding NDUFA4 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa O Complex I 9kDa subunit|NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 4|NADH-ubiquinone oxidoreductase MLRQ subunit|complex I-MLRQ 20121230 -9606 4698 NDUFA5 - B13|CI-13KD-B|CI-13kB|NUFM|UQOR13 HGNC:7688|MIM:601677|Ensembl:ENSG00000128609|HPRD:03398|Vega:OTTHUMG00000157348 7 7q31.33 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa protein-coding NDUFA5 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa O Complex I-13KD-B|NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 5|NADH-ubiquinone oxidoreductase 13 kDa-B subunit|complex I 13kDa subunit B|complex I subunit B13|type I dehydrogenase|ubiquinone reductase 20121230 -9606 4699 NDUFA5P1 - - HGNC:7689 11 11p15 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, pseudogene 1 pseudo NDUFA5P1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, pseudogene 1 O - 20121209 -9606 4700 NDUFA6 - B14|CI-B14|LYRM6|NADHB14 HGNC:7690|MIM:602138|Ensembl:ENSG00000184983|HPRD:11884|Vega:OTTHUMG00000151287 22 22q13.2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 6, 14kDa protein-coding NDUFA6 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 6, 14kDa O Complex I-B14|LYR motif-containing protein 6|NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6|NADH-ubiquinone oxidoreductase 1 alpha subcomplex, 6|NADH-ubiquinone oxidoreductase B14 subunit|complex I B14 subunit 20121230 -9606 4701 NDUFA7 - B14.5a HGNC:7691|MIM:602139|Ensembl:ENSG00000167774|HPRD:11885 19 19p13.2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 7, 14.5kDa protein-coding NDUFA7 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 7, 14.5kDa O CI-B14.5a|NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7|NADH-ubiquinone oxidoreductase subunit B14.5a|complex I B14.5a subunit 20121230 -9606 4702 NDUFA8 - CI-19KD|CI-PGIV|PGIV HGNC:7692|MIM:603359|Ensembl:ENSG00000119421|HPRD:04525|Vega:OTTHUMG00000020598 9 9q33.2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 8, 19kDa protein-coding NDUFA8 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 8, 19kDa O NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8|NADH-ubiquinone oxidoreductase 19 kDa subunit|NADH:ubiquinone oxidoreductase PGIV subunit|complex I PGIV subunit|complex I-19kD|complex I-PGIV 20121230 -9606 4703 NEB - NEB177D|NEM2 HGNC:7720|MIM:161650|Ensembl:ENSG00000183091|HPRD:01196|Vega:OTTHUMG00000153784 2 2q22 nebulin protein-coding NEB nebulin O nemaline myopathy type 2 20121230 -9606 4704 NDUFA9 - CC6|CI-39k|CI39k|NDUFS2L|SDR22E1 HGNC:7693|MIM:603834|Ensembl:ENSG00000139180|HPRD:04832|Vega:OTTHUMG00000168224 12 12p13.3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 9, 39kDa protein-coding NDUFA9 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 9, 39kDa O CI-39kD|NADH dehydrogenase (ubiquinone) Fe-S protein 2-like (NADH-coenzyme Q reductase)|NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial|NADH-ubiquinone oxidoreductase 39 kDa subunit|complex I 39kDa subunit|short chain dehydrogenase/reductase family 22E, member 1 20121230 -9606 4705 NDUFA10 - CI-42KD|CI-42k HGNC:7684|MIM:603835|Ensembl:ENSG00000130414|HPRD:11950|Vega:OTTHUMG00000133350 2 2q37.3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 10, 42kDa protein-coding NDUFA10 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 10, 42kDa O NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial|NADH-ubiquinone oxidoreductase 42 kDa subunit|complex I 42kDa subunit 20121230 -9606 4706 NDUFAB1 - ACP|FASN2A|SDAP HGNC:7694|MIM:603836|Ensembl:ENSG00000004779|HPRD:11951|Vega:OTTHUMG00000096985 16 16p12.2 NADH dehydrogenase (ubiquinone) 1, alpha/beta subcomplex, 1, 8kDa protein-coding NDUFAB1 NADH dehydrogenase (ubiquinone) 1, alpha/beta subcomplex, 1, 8kDa O CI-SDAP|NADH-ubiquinone oxidoreductase 9.6 kDa subunit|NADH:ubiquinone oxidoreductase SDAP subunit|acyl carrier protein, mitochondrial|complex I SDAP subunit|mitochondrial acyl carrier protein 20121230 -9606 4707 NDUFB1 - CI-MNLL|CI-SGDH|MNLL HGNC:7695|MIM:603837|Ensembl:ENSG00000183648|HPRD:11952|Vega:OTTHUMG00000171180 14 14q32.12 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 1, 7kDa protein-coding NDUFB1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 1, 7kDa O NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1|NADH-ubiquinone oxidoreductase MNLL subunit|complex I MNLL subunit|complex I-MNLL 20121230 -9606 4708 NDUFB2 - AGGG|CI-AGGG HGNC:7697|MIM:603838|Ensembl:ENSG00000090266|HPRD:11953|Vega:OTTHUMG00000157424 7 7q34 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 2, 8kDa protein-coding NDUFB2 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 2, 8kDa O NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 2, mitochondrial|NADH-ubiquinone oxidoreductase AGGG subunit|complex I AGGG subunit|complex I-AGGG 20121230 -9606 4709 NDUFB3 - B12|CI-B12 HGNC:7698|MIM:603839|Ensembl:ENSG00000119013|HPRD:11954|Vega:OTTHUMG00000132820 2 2q31.3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa protein-coding NDUFB3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa O NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3|NADH-ubiquinone oxidoreductase B12 subunit|complex I-B12 20121230 -9606 4710 NDUFB4 - B15|CI-B15 HGNC:7699|MIM:603840|Ensembl:ENSG00000065518|HPRD:11955|Vega:OTTHUMG00000159442 3 3q13.33 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 4, 15kDa protein-coding NDUFB4 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 4, 15kDa O NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4|NADH-ubiquinone oxidoreductase B15 subunit|complex I B15 subunit|complex I-B15 20121230 -9606 4711 NDUFB5 - CISGDH|SGDH HGNC:7700|MIM:603841|Ensembl:ENSG00000136521|HPRD:11956|Vega:OTTHUMG00000157480 3 3q26.33 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 5, 16kDa protein-coding NDUFB5 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 5, 16kDa O NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial|NADH-ubiquinone oxidoreductase SGDH subunit|complex I SGDH subunit|complex I-SGDH 20121230 -9606 4712 NDUFB6 RP11-205M20.6 B17|CI HGNC:7701|MIM:603322|Ensembl:ENSG00000165264|HPRD:04504|Vega:OTTHUMG00000019741 9 9p21.1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 6, 17kDa protein-coding NDUFB6 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 6, 17kDa O CI-B17|NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 6|NADH-ubiquinone oxidoreductase B17 subunit|NADH-ubiquinone oxidoreductase beta subunit, 6|complex I, mitochondrial respiratory chain, B17 subunit|complex I-B17 20121230 -9606 4713 NDUFB7 - B18|CI-B18 HGNC:7702|MIM:603842|Ensembl:ENSG00000099795|HPRD:11957 19 19p13.12 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 7, 18kDa protein-coding NDUFB7 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 7, 18kDa O NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7|NADH-ubiquinone oxidoreductase B18 subunit|cell adhesion protein SQM1|complex I B18 subunit|complex I-B18 20121230 -9606 4714 NDUFB8 RP11-411B6.5 ASHI|CI-ASHI HGNC:7703|MIM:602140|Ensembl:ENSG00000166136|HPRD:11886|Vega:OTTHUMG00000019346 10 10q24.31 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, 19kDa protein-coding NDUFB8 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, 19kDa O NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial|NADH-ubiquinone oxidoreductase ASHI subunit|NADH:ubiquinone oxidoreductase ASHI subunit|complex I ASHI subunit|complex I-ASHI 20121230 -9606 4715 NDUFB9 - B22|LYRM3|UQOR22 HGNC:7704|MIM:601445|Ensembl:ENSG00000147684|HPRD:03264|Vega:OTTHUMG00000165054 8 8q13.3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 9, 22kDa protein-coding NDUFB9 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 9, 22kDa O CI-B22|LYR motif-containing protein 3|NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9|NADH-ubiquinone oxidoreductase B22 subunit|complex I B22 subunit|complex I-B22 20121230 -9606 4716 NDUFB10 - PDSW HGNC:7696|MIM:603843|Ensembl:ENSG00000140990|HPRD:11958|Vega:OTTHUMG00000128709 16 16p13.3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 10, 22kDa protein-coding NDUFB10 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 10, 22kDa O CI-PDSW|NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10|NADH ubiquinone oxidoreductase PDSW subunit (RH 16p13.3)|NADH-ubiquinone oxidoreductase PDSW subunit|complex I PDSW subunit|complex I-PDSW 20121230 -9606 4717 NDUFC1 - KFYI HGNC:7705|MIM:603844|Ensembl:ENSG00000109390|HPRD:11959|Vega:OTTHUMG00000133387 4 4q31.1 NADH dehydrogenase (ubiquinone) 1, subcomplex unknown, 1, 6kDa protein-coding NDUFC1 NADH dehydrogenase (ubiquinone) 1, subcomplex unknown, 1, 6kDa O CI-KFYI|NADH dehydrogenase [ubiquinone] 1 subunit C1, mitochondrial|NADH-ubiquinone oxidoreductase KFYI subunit|complex I KFYI subunit|complex I-KFYI 20121230 -9606 4718 NDUFC2 HLC1 B14.5b|CI-B14.5b|HLC-1|NADHDH2 HGNC:7706|MIM:603845|Ensembl:ENSG00000151366|HPRD:11960|Vega:OTTHUMG00000166614 11 11q14.1 NADH dehydrogenase (ubiquinone) 1, subcomplex unknown, 2, 14.5kDa protein-coding NDUFC2 NADH dehydrogenase (ubiquinone) 1, subcomplex unknown, 2, 14.5kDa O NADH dehydrogenase [ubiquinone] 1 subunit C2|NADH-ubiquinone oxidoreductase subunit B14.5b|complex I subunit B14.5b|complex I-B14.5b|human lung cancer oncogene 1 protein 20121230 -9606 4719 NDUFS1 - CI-75Kd|CI-75k|PRO1304 HGNC:7707|MIM:157655|Ensembl:ENSG00000023228|HPRD:01145|Vega:OTTHUMG00000132892 2 2q33-q34 NADH dehydrogenase (ubiquinone) Fe-S protein 1, 75kDa (NADH-coenzyme Q reductase) protein-coding NDUFS1 NADH dehydrogenase (ubiquinone) Fe-S protein 1, 75kDa (NADH-coenzyme Q reductase) O NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial|complex I 75kDa subunit|complex I, mitochondrial respiratory chain, 75-kD subunit|mitochondrial NADH-ubiquinone oxidoreductase 75 kDa subunit 20121230 -9606 4720 NDUFS2 - CI-49 HGNC:7708|MIM:602985|Ensembl:ENSG00000158864|HPRD:04285|Vega:OTTHUMG00000034344 1 1q23 NADH dehydrogenase (ubiquinone) Fe-S protein 2, 49kDa (NADH-coenzyme Q reductase) protein-coding NDUFS2 NADH dehydrogenase (ubiquinone) Fe-S protein 2, 49kDa (NADH-coenzyme Q reductase) O CI-49kD|NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial|NADH-ubiquinone oxidoreductase 49 kDa subunit|NADH-ubiquinone oxidoreductase NDUFS2 subunit|complex 1, mitochondrial respiratory chain, 49-KD subunit|complex I 49kDa subunit|complex I-49kD 20121230 -9606 4722 NDUFS3 - CI-30 HGNC:7710|MIM:603846|Ensembl:ENSG00000213619|HPRD:10355|Vega:OTTHUMG00000166893 11 11p11.11 NADH dehydrogenase (ubiquinone) Fe-S protein 3, 30kDa (NADH-coenzyme Q reductase) protein-coding NDUFS3 NADH dehydrogenase (ubiquinone) Fe-S protein 3, 30kDa (NADH-coenzyme Q reductase) O CI-30kD|NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial|NADH dehydrogenase-ubiquinone 30 kDa subunit|NADH-ubiquinone oxidoreductase 30 kDa subunit|complex I 30kDa subunit|complex I-30kD 20121230 -9606 4723 NDUFV1 - CI-51K|CI51KD|UQOR1 HGNC:7716|MIM:161015|Ensembl:ENSG00000167792|HPRD:01191|Vega:OTTHUMG00000166215 11 11q13 NADH dehydrogenase (ubiquinone) flavoprotein 1, 51kDa protein-coding NDUFV1 NADH dehydrogenase (ubiquinone) flavoprotein 1, 51kDa O NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial|NADH-ubiquinone oxidoreductase 51 kDa subunit|complex I 51 kda subunit|complex I 51kDa subunit|complex I, mitochondrial respiratory chain|mitochondrial NADH dehydrogenase ubiquinone flavoprotein 1|mitochondrial NADH:ubiquinone oxidoreductase 51 kda subunit 20121230 -9606 4724 NDUFS4 - AQDQ|CI-18 HGNC:7711|MIM:602694|Ensembl:ENSG00000164258|HPRD:04073|Vega:OTTHUMG00000096987 5 5q11.1 NADH dehydrogenase (ubiquinone) Fe-S protein 4, 18kDa (NADH-coenzyme Q reductase) protein-coding NDUFS4 NADH dehydrogenase (ubiquinone) Fe-S protein 4, 18kDa (NADH-coenzyme Q reductase) O CI-18 kDa|CI-AQDQ|NADH dehydrogenase (ubiquinone) iron-sulfur protein 4|NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial|NADH-coenzyme Q reductase, 18-KD|NADH-ubiquinone oxidoreductase 18 kDa subunit|complex I 18kDa subunit|complex I-18 kDa|complex I-AQDQ|mitochondrial respiratory chain complex I (18-KD subunit) 20121230 -9606 4725 NDUFS5 RP11-781D11.3 CI-15k|CI15K HGNC:7712|MIM:603847|Ensembl:ENSG00000168653|HPRD:11961|Vega:OTTHUMG00000007497 1 1p34.2-p33 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) protein-coding NDUFS5 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) O CI-15 kDa|NADH dehydrogenase [ubiquinone] iron-sulfur protein 5|NADH:ubiquinone oxidoreductase 15 kDa IP subunit|complex I-15 kDa 20121230 -9606 4726 NDUFS6 - CI-13kA|CI-13kD-A|CI13KDA HGNC:7713|MIM:603848|Ensembl:ENSG00000145494|HPRD:10356|Vega:OTTHUMG00000090372 5 5p15.33 NADH dehydrogenase (ubiquinone) Fe-S protein 6, 13kDa (NADH-coenzyme Q reductase) protein-coding NDUFS6 NADH dehydrogenase (ubiquinone) Fe-S protein 6, 13kDa (NADH-coenzyme Q reductase) O NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial|NADH-ubiquinone oxidoreductase 13 kDa-A subunit|NADH:ubiquinone oxidoreductase NDUFS6 subunit|complex I 13kDa subunit A|complex I, mitochondrial respiratory chain, 13-kD subunit 20121230 -9606 4728 NDUFS8 - CI-23k|CI23KD|TYKY HGNC:7715|MIM:602141|Ensembl:ENSG00000110717|HPRD:03683|Vega:OTTHUMG00000167331 11 11q13 NADH dehydrogenase (ubiquinone) Fe-S protein 8, 23kDa (NADH-coenzyme Q reductase) protein-coding NDUFS8 NADH dehydrogenase (ubiquinone) Fe-S protein 8, 23kDa (NADH-coenzyme Q reductase) O NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial|NADH-ubiquinone oxidoreductase 23 kDa subunit|complex I 23kDa subunit|complex I-23kD 20121230 -9606 4729 NDUFV2 - CI-24k HGNC:7717|MIM:600532|Ensembl:ENSG00000178127|HPRD:02757|Vega:OTTHUMG00000131593 18 18p11.22 NADH dehydrogenase (ubiquinone) flavoprotein 2, 24kDa protein-coding NDUFV2 NADH dehydrogenase (ubiquinone) flavoprotein 2, 24kDa O NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial|NADH dehydrogenase ubiquinone flavoprotein 2, mitochondrial|NADH-ubiquinone oxidoreductase 24 kDa subunit|NADH-ubiquinone oxidoreductase flavoprotein 2|complex I 24kDa subunit|complex I, mitochondrial respitory chain, 24 kD subunit|nuclear-encoded mitochondrial NADH-ubiquinone reductase 24Kd subunit 20121230 -9606 4730 NDUFV2P1 - - HGNC:7718 19 19q13.3-q13.4 NADH dehydrogenase (ubiquinone) flavoprotein 2 pseudogene 1 pseudo NDUFV2P1 NADH dehydrogenase (ubiquinone) flavoprotein 2 pseudogene 1 O - 20121230 -9606 4731 NDUFV3 - CI-10k|CI-9KD HGNC:7719|MIM:602184|Ensembl:ENSG00000160194|HPRD:03716|Vega:OTTHUMG00000086823 21 21q22.3 NADH dehydrogenase (ubiquinone) flavoprotein 3, 10kDa protein-coding NDUFV3 NADH dehydrogenase (ubiquinone) flavoprotein 3, 10kDa O NADH dehydrogenase [ubiquinone] flavoprotein 3, mitochondrial|NADH-ubiquinone oxidoreductase 9 kD subunit|NADH-ubiquinone oxidoreductase 9 kDa subunit|NADH-ubiquinone oxidoreductase flavoprotein 3, 10kD|complex I 10kDa subunit|complex I, mitochondrial respiratory chain, 10-kD subunit|complex I-9kD|mitochondrial NADH oxidoreductase-like protein|renal carcinoma antigen NY-REN-4 20121230 -9606 4733 DRG1 - NEDD3 HGNC:3029|MIM:603952|Ensembl:ENSG00000185721|HPRD:16034|Vega:OTTHUMG00000030792 22 22q12.2 developmentally regulated GTP binding protein 1 protein-coding DRG1 developmentally regulated GTP binding protein 1 O DRG-1|NEDD-3|developmentally regulated GTP-binding protein 1|developmentally-regulated GTP-binding protein 1|neural precursor cell expressed developmentally down-regulated protein 3|neural precursor cell expressed, developmentally down-regulated 3 20121230 -9606 4734 NEDD4 PIG53 NEDD4-1|RPF1 HGNC:7727|MIM:602278|Ensembl:ENSG00000069869|HPRD:03786|Vega:OTTHUMG00000132015 15 15q neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase protein-coding NEDD4 neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase NEDD4|NEDD-4|cell proliferation-inducing gene 53 protein|neural precursor cell expressed developmentally down-regulated protein 4|receptor-potentiating factor 1 20121230 -9606 4735 SEPT2 - DIFF6|NEDD5|Pnutl3|hNedd5 HGNC:7729|MIM:601506|Ensembl:ENSG00000168385|HPRD:03297|Vega:OTTHUMG00000133394 2 2q37 septin 2 protein-coding SEPT2 septin 2 O NEDD-5|neural precursor cell expressed developmentally down-regulated protein 5|neural precursor cell expressed, developmentally down-regulated 5|septin-2 20121230 -9606 4736 RPL10A - Csa-19|L10A|NEDD6 HGNC:10299|Ensembl:ENSG00000198755|HPRD:10199|Vega:OTTHUMG00000014566 6 6p21.31 ribosomal protein L10a protein-coding RPL10A ribosomal protein L10a O 60S ribosomal protein L10a|NEDD-6|neural precursor cell expressed developmentally down-regulated protein 6 20121230 -9606 4738 NEDD8 - NEDD-8 HGNC:7732|MIM:603171|Ensembl:ENSG00000129559|HPRD:04412|Vega:OTTHUMG00000029325 14 14q12 neural precursor cell expressed, developmentally down-regulated 8 protein-coding NEDD8 neural precursor cell expressed, developmentally down-regulated 8 O neddylin|ubiquitin-like protein Nedd8 20121230 -9606 4739 NEDD9 RP1-49G10.1 CAS-L|CAS2|CASL|CASS2|HEF1 HGNC:7733|MIM:602265|Ensembl:ENSG00000111859|HPRD:11888|Vega:OTTHUMG00000014255 6 6p25-p24 neural precursor cell expressed, developmentally down-regulated 9 protein-coding NEDD9 neural precursor cell expressed, developmentally down-regulated 9 O Cas scaffolding protein family member 2|Crk-associated substrate related protein Cas-L|Enhancer of filamentation 1 p55|cas-like docking|enhancer of filamentation 1|neural precursor cell expressed developmentally down-regulated protein 9|p130Cas-related protein|renal carcinoma antigen NY-REN-12 20121230 -9606 4741 NEFM - NEF3|NF-M|NFM HGNC:7734|MIM:162250|Ensembl:ENSG00000104722|HPRD:01205|Vega:OTTHUMG00000131990 8 8p21 neurofilament, medium polypeptide protein-coding NEFM neurofilament, medium polypeptide O 160 kDa neurofilament protein|neurofilament 3|neurofilament medium polypeptide|neurofilament triplet M protein|neurofilament, medium polypeptide 150kDa|neurofilament-3 (150 kD medium) 20121230 -9606 4744 NEFH - NFH HGNC:7737|MIM:162230|Ensembl:ENSG00000100285|HPRD:01204|Vega:OTTHUMG00000151155 22 22q12.2 neurofilament, heavy polypeptide protein-coding NEFH neurofilament, heavy polypeptide O 200 kDa neurofilament protein|NF-H|neurofilament heavy polypeptide|neurofilament triplet H protein|neurofilament, heavy polypeptide 200kDa 20121230 -9606 4745 NELL1 - IDH3GL|NRP1 HGNC:7750|MIM:602319|Ensembl:ENSG00000165973|HPRD:09081|Vega:OTTHUMG00000166042 11 11p15.1 NEL-like 1 (chicken) protein-coding NELL1 NEL-like 1 (chicken) O NEL-like protein 1|NELL-1 protein short isoform|nel-related protein 1|neural epidermal growth factor-like 1|protein kinase C-binding protein NELL1 20121230 -9606 4747 NEFL - CMT1F|CMT2E|NF-L|NF68|NFL HGNC:7739|MIM:162280|HPRD:01206 8 8p21 neurofilament, light polypeptide protein-coding NEFL neurofilament, light polypeptide O light molecular weight neurofilament protein|neurofilament light polypeptide|neurofilament protein, light chain|neurofilament subunit NF-L|neurofilament triplet L protein|neurofilament, light polypeptide 68kDa 20121230 -9606 4748 NEFLL1 - - HGNC:7740 2 2p12-q11 neurofilament, light polypeptide-like 1 protein-coding NEFLL1 neurofilament, light polypeptide-like 1 O - 20080828 -9606 4750 NEK1 - NY-REN-55|SRPS2 HGNC:7744|MIM:604588|Ensembl:ENSG00000137601|HPRD:06847|Vega:OTTHUMG00000160963 4 4q33 NIMA-related kinase 1 protein-coding NEK1 NIMA-related kinase 1 O NIMA (never in mitosis gene a)-related kinase 1|never in mitosis A-related kinase 1|nimA-related protein kinase 1|protein-serine/threonine kinase|renal carcinoma antigen NY-REN-55|serine/threonine-protein kinase Nek1 20121230 -9606 4751 NEK2 - HsPK21|NEK2A|NLK1 HGNC:7745|MIM:604043|Ensembl:ENSG00000117650|HPRD:04953|Vega:OTTHUMG00000037121 1 1q32.2-q41 NIMA-related kinase 2 protein-coding NEK2 NIMA-related kinase 2 O NIMA (never in mitosis gene a)-related kinase 2|nimA-like protein kinase 1|nimA-related protein kinase 2|serine/threonine-protein kinase Nek2 20121230 -9606 4752 NEK3 RP11-248G5.5 HSPK36 HGNC:7746|MIM:604044|Ensembl:ENSG00000136098|HPRD:04954|Vega:OTTHUMG00000016958 13 13q14.13 NIMA-related kinase 3 protein-coding NEK3 NIMA-related kinase 3 O HSPK 36|NIMA (never in mitosis gene a)-related kinase 3|glycogen synthase A kinase|hydroxyalkyl-protein kinase|never in mitosis A-related kinase 3|nimA-related protein kinase 3|phosphorylase B kinase kinase|serine/threonine-protein kinase Nek3 20121230 -9606 4753 NELL2 - NRP2 HGNC:7751|MIM:602320|Ensembl:ENSG00000184613|HPRD:11891|Vega:OTTHUMG00000169464 12 12q12 NEL-like 2 (chicken) protein-coding NELL2 NEL-like 2 (chicken) O NEL-like protein 2|NEL-related protein 2|neural epidermal growth factor-like 2|protein kinase C-binding protein NELL2 20121230 -9606 4756 NEO1 - IGDCC2|NGN HGNC:7754|MIM:601907|Ensembl:ENSG00000067141|HPRD:03549|Vega:OTTHUMG00000133509 15 15q22.3-q23 neogenin 1 protein-coding NEO1 neogenin 1 O immunoglobulin superfamily DCC subclass member 2|neogenin|neogenin homolog 1 20121230 -9606 4758 NEU1 DAAP-222I20.1 NANH|NEU|SIAL1 HGNC:7758|MIM:608272|Ensembl:ENSG00000204386|HPRD:09751|Vega:OTTHUMG00000031284 6 6p21.3 sialidase 1 (lysosomal sialidase) protein-coding NEU1 sialidase 1 (lysosomal sialidase) O G9 sialidase|N-acetyl-alpha-neuraminidase 1|acetylneuraminyl hydrolase|exo-alpha-sialidase|lysosomal sialidase|sialidase-1 20121230 -9606 4759 NEU2 - SIAL2 HGNC:7759|MIM:605528|Ensembl:ENSG00000115488|HPRD:05702|Vega:OTTHUMG00000133274 2 2q37 sialidase 2 (cytosolic sialidase) protein-coding NEU2 sialidase 2 (cytosolic sialidase) O N-acetyl-alpha-neuraminidase 2|cytosolic sialidase|neuraminidase 2|sialidase-2 20121230 -9606 4760 NEUROD1 - BETA2|BHF-1|MODY6|NEUROD|bHLHa3 HGNC:7762|MIM:601724|Ensembl:ENSG00000162992|HPRD:03428|Vega:OTTHUMG00000132583 2 2q32 neuronal differentiation 1 protein-coding NEUROD1 neuronal differentiation 1 O basic helix-loop-helix transcription factor|beta-cell E-box transactivator 2|class A basic helix-loop-helix protein 3|neurogenic differentiation factor 1|neurogenic helix-loop-helix protein NEUROD 20121230 -9606 4761 NEUROD2 - NDRF|bHLHa1 HGNC:7763|MIM:601725|Ensembl:ENSG00000171532|HPRD:03429|Vega:OTTHUMG00000133211 17 17q12 neuronal differentiation 2 protein-coding NEUROD2 neuronal differentiation 2 O class A basic helix-loop-helix protein 1|neuroD-related factor|neurogenic basic-helix-loop-helix protein|neurogenic differentiation 2|neurogenic differentiation factor 2 20121230 -9606 4762 NEUROG1 - AKA|Math4C|NEUROD3|bHLHa6|ngn1 HGNC:7764|MIM:601726|Ensembl:ENSG00000181965|HPRD:03430|Vega:OTTHUMG00000129138 5 5q23-q31 neurogenin 1 protein-coding NEUROG1 neurogenin 1 O NGN-1|class A basic helix-loop-helix protein 6|neurogenic basic-helix-loop-helix protein|neurogenic differentiation 3|neurogenic differentiation factor 3|neurogenin-1 20121230 -9606 4763 NF1 - NFNS|VRNF|WSS HGNC:7765|MIM:613113|Ensembl:ENSG00000196712|HPRD:01203|Vega:OTTHUMG00000132871 17 17q11.2 neurofibromin 1 protein-coding NF1 neurofibromin 1 O neurofibromatosis-related protein NF-1|neurofibromin 20121230 -9606 4764 NF1P3 - NF1L1 HGNC:7766 21 21q11.2 neurofibromin 1 pseudogene 3 pseudo NF1P3 neurofibromin 1 pseudogene 3 O - 20121230 -9606 4768 NF1P5 - NF1L5 HGNC:7770 18 18p11.21 neurofibromin 1 pseudogene 5 pseudo NF1P5 neurofibromin 1 pseudogene 5 O - 20121230 -9606 4771 NF2 - ACN|BANF|SCH HGNC:7773|MIM:607379|Ensembl:ENSG00000186575|HPRD:06980|Vega:OTTHUMG00000030727 22 22q12.2 neurofibromin 2 (merlin) protein-coding NF2 neurofibromin 2 (merlin) O merlin|moesin-ezrin-radixin like|moesin-ezrin-radixin-like protein|moesin-ezrin-radizin-like protein|neurofibromin 2 (bilateral acoustic neuroma)|neurofibromin-2|schwannomerlin|schwannomin 20121230 -9606 4772 NFATC1 - NF-ATC|NFAT2|NFATc HGNC:7775|MIM:600489|Ensembl:ENSG00000131196|HPRD:02729|Vega:OTTHUMG00000132897 18 18q23 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 1 protein-coding NFATC1 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 1 O NF-ATc1|NFAT transcription complex cytosolic component|nuclear factor of activated T-cells, cytoplasmic 1 20121230 -9606 4773 NFATC2 RP5-1009H6.1 NFAT1|NFATP HGNC:7776|MIM:600490|Ensembl:ENSG00000101096|HPRD:02730|Vega:OTTHUMG00000032747 20 20q13.2 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2 protein-coding NFATC2 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2 O NF-ATc2|NFAT pre-existing subunit|NFAT transcription complex, preexisting component|T cell transcription factor NFAT1|T-cell transcription factor NFAT1|nuclear factor of activated T-cells, cytoplasmic 2|nuclear factor of activated T-cells, preexisting component|preexisting nuclear factor of activated T-cells 2 20121230 -9606 4774 NFIA RP5-902P15.1 CTF|NF-I/A|NF1-A|NFI-A|NFI-L HGNC:7784|MIM:600727|Ensembl:ENSG00000162599|HPRD:09007|Vega:OTTHUMG00000008618 1 1p31.3-p31.2 nuclear factor I/A protein-coding NFIA nuclear factor I/A O CCAAT-box-binding transcription factor|TGGCA-binding protein|nuclear factor 1 A-type 20121230 -9606 4775 NFATC3 - NFAT4|NFATX HGNC:7777|MIM:602698|Ensembl:ENSG00000072736|HPRD:04077|Vega:OTTHUMG00000137555 16 16q22.2 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 3 protein-coding NFATC3 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 3 O NF-ATc3|T cell transcription factor NFAT4|nuclear factor of activated T-cells c3 isoform IE-Xa|nuclear factor of activated T-cells, cytoplasmic 3 20121230 -9606 4776 NFATC4 - NF-ATc4|NFAT3 HGNC:7778|MIM:602699|Ensembl:ENSG00000100968|HPRD:09096|Vega:OTTHUMG00000029351 14 14q11.2 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 4 protein-coding NFATC4 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 4 O NF-AT3|T cell transcription factor NFAT3|T-cell transcription factor NFAT3|nuclear factor of activated T-cells, cytoplasmic 4 20121230 -9606 4778 NFE2 - NF-E2|p45 HGNC:7780|MIM:601490|Ensembl:ENSG00000123405|HPRD:09030|Vega:OTTHUMG00000169761 12 12q13 nuclear factor (erythroid-derived 2), 45kDa protein-coding NFE2 nuclear factor (erythroid-derived 2), 45kDa O leucine zipper protein NF-E2|nuclear factor, erythroid-derived 2 45 kDa subunit|p45 NF-E2|transcription factor NF-E2 45 kDa subunit 20121230 -9606 4779 NFE2L1 - LCR-F1|NRF1|TCF11 HGNC:7781|MIM:163260|Ensembl:ENSG00000082641|HPRD:01223|Vega:OTTHUMG00000178706 17 17q21.3 nuclear factor (erythroid-derived 2)-like 1 protein-coding NFE2L1 nuclear factor (erythroid-derived 2)-like 1 O NF-E2-related factor 1|NFE2-related factor 1|TCF-11|locus control region-factor 1|nuclear factor erythroid 2-related factor 1|nuclear factor, erythroid derived 2, like 1|transcription factor 11 (basic leucine zipper type)|transcription factor HBZ17|transcription factor LCR-F1 20121230 -9606 4780 NFE2L2 - NRF2 HGNC:7782|MIM:600492|Ensembl:ENSG00000116044|HPRD:02732|Vega:OTTHUMG00000133620 2 2q31 nuclear factor (erythroid-derived 2)-like 2 protein-coding NFE2L2 nuclear factor (erythroid-derived 2)-like 2 O HEBP1|NF-E2-related factor 2|NFE2-related factor 2|nuclear factor erythroid 2-related factor 2|nuclear factor erythroid-derived 2-like 2|nuclear factor, erythroid derived 2, like 2 20121230 -9606 4781 NFIB RP11-280O24.2 CTF|HMGIC/NFIB|NF-I/B|NF1-B|NFI-B|NFI-RED|NFIB2|NFIB3 HGNC:7785|MIM:600728|Ensembl:ENSG00000147862|HPRD:09008|Vega:OTTHUMG00000021027 9 9p24.1 nuclear factor I/B protein-coding NFIB nuclear factor I/B O CCAAT-box-binding transcription factor|TGGCA-binding protein|nuclear factor 1 B-type|nuclear factor 1/B 20121230 -9606 4782 NFIC - CTF|CTF5|NF-I|NFI HGNC:7786|MIM:600729|Ensembl:ENSG00000141905|Vega:OTTHUMG00000180731 19 19p13.3 nuclear factor I/C (CCAAT-binding transcription factor) protein-coding NFIC nuclear factor I/C (CCAAT-binding transcription factor) O CCAAT-box-binding transcription factor|NF-I/C|NF1-C|TGGCA-binding protein|nuclear factor 1 C-type 20121230 -9606 4783 NFIL3 - E4BP4|IL3BP1|NF-IL3A|NFIL3A HGNC:7787|MIM:605327|Ensembl:ENSG00000165030|HPRD:05619|Vega:OTTHUMG00000020209 9 9q22 nuclear factor, interleukin 3 regulated protein-coding NFIL3 nuclear factor, interleukin 3 regulated O E4 promoter-binding protein 4|interleukin-3 promoter transcriptional activator|interleukin-3-binding protein 1|nuclear factor interleukin 3 regulated protein|nuclear factor interleukin-3-regulated protein|transcriptional activator NF-IL3A 20121230 -9606 4784 NFIX - MRSHSS|NF1A|SOTOS2 HGNC:7788|MIM:164005|Ensembl:ENSG00000008441|HPRD:01234|Vega:OTTHUMG00000180726 19 19p13.3 nuclear factor I/X (CCAAT-binding transcription factor) protein-coding NFIX nuclear factor I/X (CCAAT-binding transcription factor) O CCAAT-box-binding transcription factor|CTF|NF-I/X|NF1-X|TGGCA-binding protein|nuclear factor 1 X-type|nuclear factor 1/X 20121230 -9606 4790 NFKB1 - EBP-1|KBF1|NF-kB1|NF-kappa-B|NF-kappaB|NFKB-p105|NFKB-p50|NFkappaB|p105|p50 HGNC:7794|MIM:164011|Ensembl:ENSG00000109320|HPRD:01238|Vega:OTTHUMG00000161080 4 4q24 nuclear factor of kappa light polypeptide gene enhancer in B-cells 1 protein-coding NFKB1 nuclear factor of kappa light polypeptide gene enhancer in B-cells 1 O DNA binding factor KBF1|DNA-binding factor KBF1|NF-kappabeta|nuclear factor NF-kappa-B p105 subunit|nuclear factor NF-kappa-B p50 subunit|nuclear factor kappa-B DNA binding subunit 20121230 -9606 4791 NFKB2 - H2TF1|LYT-10|LYT10|NF-kB2|p105|p52 HGNC:7795|MIM:164012|Ensembl:ENSG00000077150|HPRD:01239|Vega:OTTHUMG00000018962 10 10q24 nuclear factor of kappa light polypeptide gene enhancer in B-cells 2 (p49/p100) protein-coding NFKB2 nuclear factor of kappa light polypeptide gene enhancer in B-cells 2 (p49/p100) O DNA-binding factor KBF2|lymphocyte translocation chromosome 10 protein|nuclear factor NF-kappa-B p100 subunit|nuclear factor of kappa light chain gene enhancer in B-cells 2|oncogene Lyt-10 20121230 -9606 4792 NFKBIA - IKBA|MAD-3|NFKBI HGNC:7797|MIM:164008|Ensembl:ENSG00000100906|HPRD:01235|Vega:OTTHUMG00000140220 14 14q13 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, alpha protein-coding NFKBIA nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, alpha O I-kappa-B-alpha|IkappaBalpha|NF-kappa-B inhibitor alpha|ikB-alpha|major histocompatibility complex enhancer-binding protein MAD3|nuclear factor of kappa light chain gene enhancer in B-cells 20121230 -9606 4793 NFKBIB - IKBB|TRIP9 HGNC:7798|MIM:604495|Ensembl:ENSG00000104825|HPRD:07260|Vega:OTTHUMG00000177631 19 19q13.1 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, beta protein-coding NFKBIB nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, beta O I-kappa-B-beta|NF-kappa-B inhibitor beta|NF-kappa-BIB|TR-interacting protein 9|TRIP-9|ikB-B|ikB-beta|ikappaBbeta|thyroid receptor-interacting protein 9 20121230 -9606 4794 NFKBIE RP1-302G2.2 IKBE HGNC:7799|MIM:604548|Ensembl:ENSG00000146232|HPRD:05181|Vega:OTTHUMG00000014762 6 6p21.1 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, epsilon protein-coding NFKBIE nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, epsilon O I-kappa-B-epsilon|NF-kappa-B inhibitor epsilon|NF-kappa-BIE|ikB-E|ikB-epsilon|ikappaBepsilon 20121230 -9606 4795 NFKBIL1 DADB-70P7.2 IKBL|LST1|NFKBIL HGNC:7800|MIM:601022|Ensembl:ENSG00000204498|HPRD:07043|Vega:OTTHUMG00000031038 6 6p21.3 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor-like 1 protein-coding NFKBIL1 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor-like 1 O I-kappa-B-like protein|NF-kappa-B inhibitor-like protein 1|ikappaBL|inhibitor of kappa B-like protein 20121230 -9606 4796 TONSL - IKBR|NFKBIL2 HGNC:7801|MIM:604546|Ensembl:ENSG00000160949|HPRD:05180|Vega:OTTHUMG00000153122 8 8q24.3 tonsoku-like, DNA repair protein protein-coding TONSL tonsoku-like, DNA repair protein O I-kappa-B-related protein|NF-kappa-B inhibitor-like protein 2|ikappaBR|inhibitor of kappa B-related protein|nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor-like 2|tonsoku-like protein 20121230 -9606 4798 NFRKB - INO80G HGNC:7802|MIM:164013|Ensembl:ENSG00000170322|HPRD:01240|Vega:OTTHUMG00000165761 11 11q24-q25 nuclear factor related to kappaB binding protein protein-coding NFRKB nuclear factor related to kappaB binding protein O DNA-binding protein R kappa B|DNA-binding protein R kappa-B|INO80 complex subunit G|nuclear factor related to kappa-B-binding protein 20121230 -9606 4799 NFX1 - NFX2 HGNC:7803|MIM:603255|Ensembl:ENSG00000086102|HPRD:11936|Vega:OTTHUMG00000019772 9 9p13.3 nuclear transcription factor, X-box binding 1 protein-coding NFX1 nuclear transcription factor, X-box binding 1 O nuclear transcription factor, X box-binding protein 1|transcriptional repressor NF-X1 20121230 -9606 4800 NFYA - CBF-A|CBF-B|HAP2|NF-YA HGNC:7804|MIM:189903|Ensembl:ENSG00000001167|HPRD:01793|Vega:OTTHUMG00000014669 6 6p21.3 nuclear transcription factor Y, alpha protein-coding NFYA nuclear transcription factor Y, alpha O CAAT box DNA-binding protein subunit A|CAAT-box DNA binding protein subunit A|CCAAT-binding transcription factor subunit B|HAP2 CCAAT-binding protein|Transcription factor NF-Y, A subunit|nuclear transcription factor Y subunit A|nuclear transcription factor Y subunit alpha 20121230 -9606 4801 NFYB - CBF-A|CBF-B|HAP3|NF-YB HGNC:7805|MIM:189904|Ensembl:ENSG00000120837|HPRD:01794|Vega:OTTHUMG00000170176 12 12q22-q23 nuclear transcription factor Y, beta protein-coding NFYB nuclear transcription factor Y, beta O CAAT box DNA-binding protein subunit B|CCAAT-binding transcription factor subunit A|Transcription factor NF-Y, B subunit|nuclear transcription factor Y subunit B|nuclear transcription factor Y subunit beta 20121230 -9606 4802 NFYC RP5-1066H13.1 CBF-C|CBFC|H1TF2A|HAP5|HSM|NF-YC HGNC:7806|MIM:605344|Ensembl:ENSG00000066136|Vega:OTTHUMG00000007729 1 1p32 nuclear transcription factor Y, gamma protein-coding NFYC nuclear transcription factor Y, gamma O CAAT box DNA-binding protein subunit C|CCAAT binding factor subunit C|CCAAT transcription binding factor subunit gamma|histone H1 transcription factor large subunit 2A|nuclear transcription factor Y subunit C|nuclear transcription factor Y subunit gamma|transactivator HSM-1|transactivator HSM-1/2|transcription factor NF-Y, C subunit 20121230 -9606 4803 NGF - Beta-NGF|HSAN5|NGFB HGNC:7808|MIM:162030|Ensembl:ENSG00000134259|HPRD:08874|Vega:OTTHUMG00000011880 1 1p13.1 nerve growth factor (beta polypeptide) protein-coding NGF nerve growth factor (beta polypeptide) O beta-nerve growth factor|nerve growth factor, beta subunit 20121230 -9606 4804 NGFR - CD271|Gp80-LNGFR|TNFRSF16|p75(NTR)|p75NTR HGNC:7809|MIM:162010|Ensembl:ENSG00000064300|HPRD:01197|Vega:OTTHUMG00000161495 17 17q21-q22 nerve growth factor receptor protein-coding NGFR nerve growth factor receptor O NGF receptor|TNFR superfamily, member 16|low affinity nerve growth factor receptor|low affinity neurotrophin receptor p75NTR|low-affinity nerve growth factor receptor|p75 ICD|tumor necrosis factor receptor superfamily member 16 20121230 -9606 4805 NHCP1 - - HGNC:7811|MIM:118870 16 - non-histone chromosome protein 1 unknown NHCP1 non-histone chromosome protein 1 O - 20080828 -9606 4807 NHLH1 RP11-517F10.2 HEN1|NSCL|NSCL1|bHLHa35 HGNC:7817|MIM:162360|Ensembl:ENSG00000171786|HPRD:01212|Vega:OTTHUMG00000033121 1 1q22 nescient helix loop helix 1 protein-coding NHLH1 nescient helix loop helix 1 O HEN-1|NSCL-1|class A basic helix-loop-helix protein 35|helix-loop-helix protein 1 20121230 -9606 4808 NHLH2 RP11-485H8.1 HEN2|NSCL2|bHLHa34 HGNC:7818|MIM:162361|Ensembl:ENSG00000177551|HPRD:01213|Vega:OTTHUMG00000011969 1 1p12-p11 nescient helix loop helix 2 protein-coding NHLH2 nescient helix loop helix 2 O HEN-2|NSCL-2|class A basic helix-loop-helix protein 34|helix-loop-helix protein 2 20121230 -9606 4809 NHP2L1 CTA-216E10.8 15.5K|FA-1|FA1|NHPX|OTK27|SNRNP15-5|SNU13|SPAG12|SSFA1 HGNC:7819|MIM:601304|Ensembl:ENSG00000100138|HPRD:03197|Vega:OTTHUMG00000151189 22 22q13 NHP2 non-histone chromosome protein 2-like 1 (S. cerevisiae) protein-coding NHP2L1 NHP2 non-histone chromosome protein 2-like 1 (S. cerevisiae) O NHP2-like protein 1|U4/U6.U5 tri-snRNP 15.5 kDa protein|[U4/U6.U5] tri-snRNP 15.5 kD RNA binding protein|high mobility group-like nuclear protein 2 homolog 1|non-histone chromosome protein 2-like 1|small nuclear ribonucleoprotein 15.5kDa (U4/U6.U5)|sperm specific antigen 1 20121230 -9606 4810 NHS RP3-389A20.6 CXN|SCML1 HGNC:7820|MIM:300457|Ensembl:ENSG00000188158|HPRD:02351|Vega:OTTHUMG00000022799 X Xp22.13 Nance-Horan syndrome (congenital cataracts and dental anomalies) protein-coding NHS Nance-Horan syndrome (congenital cataracts and dental anomalies) O Nance-Horan syndrome protein|congenital cataracts and dental anomalies protein 20121230 -9606 4811 NID1 - NID HGNC:7821|MIM:131390|Ensembl:ENSG00000116962|HPRD:00574|Vega:OTTHUMG00000040071 1 1q43 nidogen 1 protein-coding NID1 nidogen 1 O NID-1|enactin|entactin|nidogen-1 20121230 -9606 4812 NIDDM1 - - HGNC:7822|MIM:601283 2 2q non-insulin-dependent diabetes mellitus (common, type 2) 1 unknown NIDDM1 non-insulin-dependent diabetes mellitus (common, type 2) 1 O - 20110215 -9606 4813 NIDDM2 - - HGNC:7823|MIM:601407 12 12q24.2 non-insulin-dependent diabetes mellitus (common, type 2) 2 unknown NIDDM2 non-insulin-dependent diabetes mellitus (common, type 2) 2 O - 20120622 -9606 4814 NINJ1 - NIN1|NINJURIN HGNC:7824|MIM:602062|Ensembl:ENSG00000131669|HPRD:03639|Vega:OTTHUMG00000020242 9 9q22 ninjurin 1 protein-coding NINJ1 ninjurin 1 O nerve injury-induced protein 1|nerve injury-induced protein-1|ninjurin-1 20121230 -9606 4815 NINJ2 - - HGNC:7825|MIM:607297|Ensembl:ENSG00000171840|HPRD:09530|Vega:OTTHUMG00000090311 12 12p13 ninjurin 2 protein-coding NINJ2 ninjurin 2 O nerve injury-induced protein 2|ninjurin-2 20121230 -9606 4817 NIT1 - - HGNC:7828|MIM:604618|Ensembl:ENSG00000158793|HPRD:07056|Vega:OTTHUMG00000031473 1 1q21-q22 nitrilase 1 protein-coding NIT1 nitrilase 1 O nitrilase homolog 1 20121230 -9606 4818 NKG7 - GIG1|GMP-17|p15-TIA-1 HGNC:7830|MIM:606008|Ensembl:ENSG00000105374|HPRD:16188 19 19q13.41 natural killer cell group 7 sequence protein-coding NKG7 natural killer cell group 7 sequence O G-CSF-induced gene 1 protein|GIG-1 protein|granule membrane protein of 17 kDa|natural killer cell protein 7|protein NKG7 20121230 -9606 4819 NKS1 - EC-1|EC1 HGNC:7832|MIM:272370 6 6p21.3 natural killer cell susceptibility 1 unknown NKS1 natural killer cell susceptibility 1 O - 20110215 -9606 4820 NKTR - p104 HGNC:7833|MIM:161565|Ensembl:ENSG00000114857|HPRD:01195|Vega:OTTHUMG00000133037 3 3p23-p21 natural killer-tumor recognition sequence protein-coding NKTR natural killer-tumor recognition sequence O NK-TR protein|NK-tumor recognition protein|natural killer triggering receptor|natural-killer cells cyclophilin-related protein 20121230 -9606 4821 NKX2-2 - NKX2.2|NKX2B HGNC:7835|MIM:604612|Ensembl:ENSG00000125820|HPRD:05213|Vega:OTTHUMG00000170524 20 20p11.22 NK2 homeobox 2 protein-coding NKX2-2 NK2 homeobox 2 O NK-2 homolog B|NK2 transcription factor related, locus 2|NK2 transcription factor-like protein B|homeobox protein NK-2 homolog B|homeobox protein Nkx-2.2 20121230 -9606 4824 NKX3-1 - BAPX2|NKX3|NKX3.1|NKX3A HGNC:7838|MIM:602041|Ensembl:ENSG00000167034|HPRD:03620|Vega:OTTHUMG00000097851 8 8p21.2 NK3 homeobox 1 protein-coding NKX3-1 NK3 homeobox 1 O NK homeobox, family 3, A|NK3 transcription factor homolog A|NK3 transcription factor related, locus 1|homeobox protein NK-3 homolog A|homeobox protein Nkx-3.1 20121230 -9606 4825 NKX6-1 - NKX6.1|NKX6A HGNC:7839|MIM:602563|Ensembl:ENSG00000163623|HPRD:09092|Vega:OTTHUMG00000130426 4 4q21.33 NK6 homeobox 1 protein-coding NKX6-1 NK6 homeobox 1 O NK homeo box, family 6, member A|NK homeobox, family 6, A|NK6 transcription factor homolog A|NK6 transcription factor related, locus 1|homeobox protein NK-6 homolog A|homeobox protein Nkx-6.1 20121230 -9606 4826 NNAT - Peg5 HGNC:7860|MIM:603106|Ensembl:ENSG00000053438|HPRD:04377|Vega:OTTHUMG00000032420 20 20q11.2-q12 neuronatin protein-coding NNAT neuronatin O - 20121230 -9606 4827 NM - GP130|NCR HGNC:7841|MIM:162820 7 7q22-qter neutrophil migration unknown NM neutrophil migration O - 20120722 -9606 4828 NMB - - HGNC:7842|MIM:162340|Ensembl:ENSG00000197696|HPRD:01210|Vega:OTTHUMG00000148666 15 15q22-qter neuromedin B protein-coding NMB neuromedin B O neuromedin-B 20121230 -9606 4829 NMBR - - HGNC:7843|MIM:162341|Ensembl:ENSG00000135577|HPRD:01211|Vega:OTTHUMG00000015704 6 6q21-qter neuromedin B receptor protein-coding NMBR neuromedin B receptor O NMB-R|epididymis tissue protein Li 185a|neuromedin-B receptor|neuromedin-B-preferring bombesin receptor 20121230 -9606 4830 NME1 - AWD|GAAD|NB|NBS|NDKA|NDPK-A|NDPKA|NM23|NM23-H1 HGNC:7849|MIM:156490|Ensembl:ENSG00000239672|HPRD:01131|Vega:OTTHUMG00000137474 17 17q21.3 NME/NM23 nucleoside diphosphate kinase 1 protein-coding NME1 NME/NM23 nucleoside diphosphate kinase 1 O NDP kinase A|granzyme A-activated DNase|metastasis inhibition factor nm23|non-metastatic cells 1, protein (NM23A) expressed in|nucleoside diphosphate kinase A|tumor metastatic process-associated protein 20121230 -9606 4831 NME2 - NDKB|NDPK-B|NDPKB|NM23-H2|NM23B|PUF HGNC:7850|MIM:156491|Ensembl:ENSG00000011052|Ensembl:ENSG00000243678|HPRD:01132|Vega:OTTHUMG00000154062 17 17q21.3 NME/NM23 nucleoside diphosphate kinase 2 protein-coding NME2 NME/NM23 nucleoside diphosphate kinase 2 O NDP kinase B|c-myc purine-binding transcription factor PUF|c-myc transcription factor|histidine protein kinase NDKB|non-metastatic cells 2, protein (NM23) expressed in|non-metastatic cells 2, protein (NM23B) expressed in|nucleoside diphosphate kinase B|nucleotide diphosphate kinase B 20121230 -9606 4832 NME3 - DR-nm23|NDPK-C|NDPKC|NM23-H3|NM23H3|c371H6.2 HGNC:7851|MIM:601817|Ensembl:ENSG00000103024|HPRD:03488|Vega:OTTHUMG00000128635 16 16q13.3 NME/NM23 nucleoside diphosphate kinase 3 protein-coding NME3 NME/NM23 nucleoside diphosphate kinase 3 O NDK 3|NDP kinase 3|NDP kinase C|non-metastatic cells 3, protein expressed in|nucleoside diphosphate kinase 3|nucleoside diphosphate kinase C 20121230 -9606 4833 NME4 Z97634.4-011 NDPK-D|NM23H4|nm23-H4 HGNC:7852|MIM:601818|Ensembl:ENSG00000103202|HPRD:03489|Vega:OTTHUMG00000047995 16 16p13.3 NME/NM23 nucleoside diphosphate kinase 4 protein-coding NME4 NME/NM23 nucleoside diphosphate kinase 4 O NDK|NDP kinase D|NDP kinase, mitochondrial|NDPKD|non-metastatic cells 4, protein expressed in|nucleoside diphosphate kinase D|nucleoside diphosphate kinase, mitochondrial 20121230 -9606 4835 NQO2 RP1-90J20.3 DHQV|DIA6|NMOR2|QR2 HGNC:7856|MIM:160998|Ensembl:ENSG00000124588|HPRD:01190|Vega:OTTHUMG00000014130 6 6p25.2 NAD(P)H dehydrogenase, quinone 2 protein-coding NQO2 NAD(P)H dehydrogenase, quinone 2 O NAD(P)H menadione oxidoreductase 2, dioxin-inducible|NAD(P)H menadione oxidoreductase-1, dioxin-inducible-2|NRH dehydrogenase [quinone] 2|NRH:quinone oxidoreductase 2|quinone reductase 2|ribosyldihydronicotinamide dehydrogenase|ribosyldihydronicotinamide dehydrogenase [quinone] 20121230 -9606 4836 NMT1 - NMT HGNC:7857|MIM:160993|Ensembl:ENSG00000136448|HPRD:01187|Vega:OTTHUMG00000180003 17 17q21.31 N-myristoyltransferase 1 protein-coding NMT1 N-myristoyltransferase 1 O NMT 1|alternative, short form NMT-S|glycylpeptide N-tetradecanoyltransferase 1|long form, NMT-L|myristoyl-CoA:protein N-myristoyltransferase 1|peptide N-myristoyltransferase 1|type I N-myristoyltransferase 20121230 -9606 4837 NNMT - - HGNC:7861|MIM:600008|Ensembl:ENSG00000166741|HPRD:02478|Vega:OTTHUMG00000168245 11 11q23.1 nicotinamide N-methyltransferase protein-coding NNMT nicotinamide N-methyltransferase O - 20121230 -9606 4838 NODAL - HTX5 HGNC:7865|MIM:601265|Ensembl:ENSG00000156574|HPRD:08370|Vega:OTTHUMG00000018408 10 10q22.1 nodal growth differentiation factor protein-coding NODAL nodal growth differentiation factor O nodal homolog 20121230 -9606 4839 NOP2 - NOL1|NOP120|NSUN1|p120 HGNC:7867|MIM:164031|Ensembl:ENSG00000111641|HPRD:01244|Vega:OTTHUMG00000169163 12 12p13 NOP2 nucleolar protein protein-coding NOP2 NOP2 nucleolar protein O NOL1/NOP2/Sun domain family, member 1|NOP2 nucleolar protein homolog|nucleolar protein 1, 120kDa|nucleolar protein 2 homolog|proliferating-cell nucleolar antigen p120|proliferation-associated nucleolar protein p120|putative ribosomal RNA methyltransferase NOP2 20121230 -9606 4841 NONO - NMT55|NRB54|P54|P54NRB HGNC:7871|MIM:300084|Ensembl:ENSG00000147140|HPRD:02098|Vega:OTTHUMG00000021798 X Xq13.1 non-POU domain containing, octamer-binding protein-coding NONO non-POU domain containing, octamer-binding O 54 kDa nuclear RNA- and DNA-binding protein|55 kDa nuclear protein|DNA-binding p52/p100 complex, 52 kDa subunit|non-POU domain-containing octamer (ATGCAAAT) binding protein|non-POU domain-containing octamer-binding protein|p54(nrb) 20121230 -9606 4842 NOS1 - IHPS1|N-NOS|NC-NOS|NOS|bNOS|nNOS HGNC:7872|MIM:163731|Ensembl:ENSG00000089250|HPRD:01226|Vega:OTTHUMG00000137376 12 12q24.2-q24.31 nitric oxide synthase 1 (neuronal) protein-coding NOS1 nitric oxide synthase 1 (neuronal) O NOS type I|constitutive NOS|neuronal NOS|nitric oxide synthase, brain|peptidyl-cysteine S-nitrosylase NOS1 20121230 -9606 4843 NOS2 - HEP-NOS|INOS|NOS|NOS2A HGNC:7873|MIM:163730|Ensembl:ENSG00000007171|HPRD:01225|Vega:OTTHUMG00000132445 17 17q11.2-q12 nitric oxide synthase 2, inducible protein-coding NOS2 nitric oxide synthase 2, inducible O NOS type II|NOS, type II|hepatocyte NOS|inducible NO synthase|inducible NOS|nitric oxide synthase 2A (inducible, hepatocytes)|nitric oxide synthase, inducible|nitric oxide synthase, macrophage|peptidyl-cysteine S-nitrosylase NOS2 20121230 -9606 4846 NOS3 - ECNOS|eNOS HGNC:7876|MIM:163729|Ensembl:ENSG00000164867|HPRD:01224|Vega:OTTHUMG00000158343 7 7q36 nitric oxide synthase 3 (endothelial cell) protein-coding NOS3 nitric oxide synthase 3 (endothelial cell) O EC-NOS|NOS type III|NOSIII|cNOS|constitutive NOS|endothelial NOS|nitric oxide synthase, endothelial 20121230 -9606 4848 CNOT2 HSPC131 CDC36|NOT2|NOT2H HGNC:7878|MIM:604909|Ensembl:ENSG00000111596|HPRD:05367|Vega:OTTHUMG00000169481 12 12q15 CCR4-NOT transcription complex, subunit 2 protein-coding CNOT2 CCR4-NOT transcription complex, subunit 2 O CCR4-NOT transcription complex subunit 2|CCR4-associated factor 2|negative regulator of transcription 2 20121230 -9606 4849 CNOT3 XXbac-BCX105G6.1 LENG2|NOT3|NOT3H HGNC:7879|MIM:604910|Ensembl:ENSG00000088038|HPRD:05368|Vega:OTTHUMG00000066468 19 19q13.4 CCR4-NOT transcription complex, subunit 3 protein-coding CNOT3 CCR4-NOT transcription complex, subunit 3 O CCR4-NOT transcription complex subunit 3|CCR4-associated factor 3|NOT3 (negative regulator of transcription 3, yeast) homolog|leukocyte receptor cluster member 2 20121230 -9606 4850 CNOT4 - CLONE243|NOT4|NOT4H HGNC:7880|MIM:604911|Ensembl:ENSG00000080802|HPRD:05369|Vega:OTTHUMG00000155568 7 7q22-qter CCR4-NOT transcription complex, subunit 4 protein-coding CNOT4 CCR4-NOT transcription complex, subunit 4 O CCR4-NOT transcription complex subunit 4|CCR4-associated factor 4|E3 ubiquitin-protein ligase CNOT4|NOT4 (negative regulator of transcription 4, yeast) homolog|potential transcriptional repressor NOT4Hp 20121230 -9606 4851 NOTCH1 - TAN1|hN1 HGNC:7881|MIM:190198|Ensembl:ENSG00000148400|HPRD:01827|Vega:OTTHUMG00000020935 9 9q34.3 notch 1 protein-coding NOTCH1 notch 1 O Notch homolog 1, translocation-associated|neurogenic locus notch homolog protein 1|translocation-associated notch protein TAN-1 20121230 -9606 4852 NPY - PYY4 HGNC:7955|MIM:162640|Ensembl:ENSG00000122585|HPRD:01214|Vega:OTTHUMG00000022973 7 7p15.1 neuropeptide Y protein-coding NPY neuropeptide Y O pro-neuropeptide Y 20121230 -9606 4853 NOTCH2 - AGS2|HJCYS|hN2 HGNC:7882|MIM:600275|Ensembl:ENSG00000134250|HPRD:02606|Vega:OTTHUMG00000012177 1 1p13-p11 notch 2 protein-coding NOTCH2 notch 2 O Notch homolog 2|neurogenic locus notch homolog protein 2 20121230 -9606 4854 NOTCH3 - CADASIL|CASIL HGNC:7883|MIM:600276|Ensembl:ENSG00000074181|HPRD:02607 19 19p13.2-p13.1 notch 3 protein-coding NOTCH3 notch 3 O Notch homolog 3|neurogenic locus notch homolog protein 3 20121230 -9606 4855 NOTCH4 DAQB-143M3.4 INT3|NOTCH3 HGNC:7884|MIM:164951|Ensembl:ENSG00000204301|HPRD:01290|Vega:OTTHUMG00000031044 6 6p21.3 notch 4 protein-coding NOTCH4 notch 4 O Notch homolog 4|neurogenic locus notch homolog protein 4 20121230 -9606 4856 NOV - CCN3|IBP-9|IGFBP-9|IGFBP9|NOVh HGNC:7885|MIM:164958|Ensembl:ENSG00000136999|HPRD:01291|Vega:OTTHUMG00000164984 8 8q24.1 nephroblastoma overexpressed protein-coding NOV nephroblastoma overexpressed O CCN family member 3|IGF-binding protein 9|insulin-like growth factor-binding protein 9|nephroblastoma-overexpressed gene protein homolog|protein NOV homolog 20121230 -9606 4857 NOVA1 - Nova-1 HGNC:7886|MIM:602157|Ensembl:ENSG00000139910|HPRD:03693|Vega:OTTHUMG00000029385 14 14q neuro-oncological ventral antigen 1 protein-coding NOVA1 neuro-oncological ventral antigen 1 O RNA-binding protein Nova-1|onconeural ventral antigen 1|paraneoplastic Ri antigen|ventral neuron-specific protein 1 20121230 -9606 4858 NOVA2 - ANOVA|NOVA3 HGNC:7887|MIM:601991|Ensembl:ENSG00000104967|HPRD:03588|Vega:OTTHUMG00000177499 19 19q13.3 neuro-oncological ventral antigen 2 protein-coding NOVA2 neuro-oncological ventral antigen 2 O RNA-binding protein Nova-2|astrocytic NOVA1-like RNA-binding protein|neuro-oncological ventral antigen 3 20121230 -9606 4860 PNP - NP|PRO1837|PUNP HGNC:7892|MIM:164050|Ensembl:ENSG00000198805|HPRD:01247|Vega:OTTHUMG00000029546 14 14q13.1 purine nucleoside phosphorylase protein-coding PNP purine nucleoside phosphorylase O inosine phosphorylase|inosine-guanosine phosphorylase|purine-nucleoside:orthophosphate ribosyltransferase 20121230 -9606 4861 NPAS1 - MOP5|PASD5|bHLHe11 HGNC:7894|MIM:603346|Ensembl:ENSG00000130751|HPRD:09136 19 19q13.2-q13.3 neuronal PAS domain protein 1 protein-coding NPAS1 neuronal PAS domain protein 1 O PAS domain-containing protein 5|basic-helix-loop-helix-PAS protein MOP5|class E basic helix-loop-helix protein 11|member of PAS protein 5|member of PAS superfamily 5|neuronal PAS domain-containing protein 1|neuronal PAS1 20121230 -9606 4862 NPAS2 - MOP4|PASD4|bHLHe9 HGNC:7895|MIM:603347|Ensembl:ENSG00000170485|HPRD:09137|Vega:OTTHUMG00000130675 2 2q11.2 neuronal PAS domain protein 2 protein-coding NPAS2 neuronal PAS domain protein 2 O PAS domain-containing protein 4|basic-helix-loop-helix-PAS protein MOP4|class E basic helix-loop-helix protein 9|member of PAS protein 4|member of PAS superfamily 4|neuronal PAS domain-containing protein 2|neuronal PAS2 20121230 -9606 4863 NPAT - E14|E14/NPAT|p220 HGNC:7896|MIM:601448|Ensembl:ENSG00000149308|HPRD:03266|Vega:OTTHUMG00000166385 11 11q22-q23 nuclear protein, ataxia-telangiectasia locus protein-coding NPAT nuclear protein, ataxia-telangiectasia locus O E14|nuclear protein of the ATM locus|nuclear protein of the ataxia telangiectasia mutated locus|protein NPAT 20121230 -9606 4864 NPC1 - NPC HGNC:7897|MIM:607623|Ensembl:ENSG00000141458|HPRD:09622|Vega:OTTHUMG00000131873 18 18q11.2 Niemann-Pick disease, type C1 protein-coding NPC1 Niemann-Pick disease, type C1 O Niemann-Pick C1 protein 20121230 -9606 4867 NPHP1 - JBTS4|NPH1|SLSN1 HGNC:7905|MIM:607100|Ensembl:ENSG00000144061|HPRD:02019|HPRD:09524|Vega:OTTHUMG00000131195 2 2q13 nephronophthisis 1 (juvenile) protein-coding NPHP1 nephronophthisis 1 (juvenile) O juvenile nephronophthisis 1 protein|nephrocystin 1|nephrocystin-1 20121230 -9606 4868 NPHS1 - CNF|NPHN|nephrin HGNC:7908|MIM:602716|Ensembl:ENSG00000161270|HPRD:04094|Vega:OTTHUMG00000180689 19 19q13.1 nephrosis 1, congenital, Finnish type (nephrin) protein-coding NPHS1 nephrosis 1, congenital, Finnish type (nephrin) O nephrin|renal glomerulus-specific cell adhesion receptor 20121230 -9606 4869 NPM1 - B23|NPM HGNC:7910|MIM:164040|Ensembl:ENSG00000181163|HPRD:01246|Vega:OTTHUMG00000130465 5 5q35.1 nucleophosmin (nucleolar phosphoprotein B23, numatrin) protein-coding NPM1 nucleophosmin (nucleolar phosphoprotein B23, numatrin) O nucleolar protein NO38|nucleophosmin|nucleophosmin/nucleoplasmin family, member 1 20121230 -9606 4870 NPM1P1 - NG1-1.6|NPMP1 HGNC:7911 18 18q12.3 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 1 pseudo NPM1P1 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 1 O - 20121230 -9606 4871 NPM1P2 - NG2-6|NPMP2 HGNC:7922 18 18q11.2 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 2 pseudo NPM1P2 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 2 O - 20121230 -9606 4872 NPM1P3 - NG2-6|NG3-3|NPM1P15|NPMP3 HGNC:7923 16 16p13.3 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 3 pseudo NPM1P3 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 3 O - 20121230 -9606 4874 NPM1P5 - NG5-4|NPMP5 HGNC:7925 15 15q26.1 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 5 pseudo NPM1P5 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 5 O - 20121230 -9606 4875 NPM1P6 - NG6-4|NPMP6 HGNC:7926 8 8q12.2 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 6 pseudo NPM1P6 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 6 O - 20121230 -9606 4877 NT3 - - HGNC:8020 - - 3'-nucleotidase protein-coding NT3 3'-nucleotidase O - 20121211 -9606 4878 NPPA - ANF|ANP|ATFB6|CDD-ANF|PND HGNC:7939|MIM:108780|Ensembl:ENSG00000175206|HPRD:00164|Vega:OTTHUMG00000002388 1 1p36.21 natriuretic peptide A protein-coding NPPA natriuretic peptide A O atriopeptin|cardionatrin|natriuretic peptide precursor A|natriuretic peptides A|prepronatriodilatin 20121230 -9606 4879 NPPB - BNP HGNC:7940|MIM:600295|Ensembl:ENSG00000120937|HPRD:08974|Vega:OTTHUMG00000002389 1 1p36.2 natriuretic peptide B protein-coding NPPB natriuretic peptide B O brain type natriuretic peptide|gamma-brain natriuretic peptide|natriuretic peptide precursor B|natriuretic peptides B|natriuretic protein 20121230 -9606 4880 NPPC - CNP|CNP2 HGNC:7941|MIM:600296|Ensembl:ENSG00000163273|HPRD:08975|Vega:OTTHUMG00000133232 2 2q24-qter natriuretic peptide C protein-coding NPPC natriuretic peptide C O C-type natriuretic peptide|natriuretic peptide precursor C 20121230 -9606 4881 NPR1 RP11-354A16.3 ANPRA|ANPa|GUC2A|GUCY2A|NPRA HGNC:7943|MIM:108960|Ensembl:ENSG00000169418|HPRD:00165|Vega:OTTHUMG00000037085 1 1q21-q22 natriuretic peptide receptor A/guanylate cyclase A (atrionatriuretic peptide receptor A) protein-coding NPR1 natriuretic peptide receptor A/guanylate cyclase A (atrionatriuretic peptide receptor A) O ANP-A|ANPR-A|GC-A|NPR-A|atrial natriuretic peptide receptor 1|atrial natriuretic peptide receptor type A|atrionatriuretic peptide receptor A|guanylate cyclase A|natriuretic peptide A type receptor|natriuretic peptide receptor A 20121230 -9606 4882 NPR2 - AMDM|ANPRB|ANPb|GUC2B|GUCY2B|NPRB|NPRBi HGNC:7944|MIM:108961|Ensembl:ENSG00000159899|HPRD:00166|Vega:OTTHUMG00000019871 9 9p21-p12 natriuretic peptide receptor B/guanylate cyclase B (atrionatriuretic peptide receptor B) protein-coding NPR2 natriuretic peptide receptor B/guanylate cyclase B (atrionatriuretic peptide receptor B) O ANP-B|ANPR-B|GC-B|NPR-B|atrial natriuretic peptide B-type receptor|atrial natriuretic peptide receptor 2|atrial natriuretic peptide receptor type B|guanylate cyclase B 20121230 -9606 4883 NPR3 hCG_1781939 ANP-C|ANPR-C|ANPRC|C5orf23|GUCY2B|NPR-C|NPRC HGNC:7945|MIM:108962|Ensembl:ENSG00000113389|HPRD:00167|Vega:OTTHUMG00000150316 5 5p14-p13 natriuretic peptide receptor C/guanylate cyclase C (atrionatriuretic peptide receptor C) protein-coding NPR3 natriuretic peptide receptor C/guanylate cyclase C (atrionatriuretic peptide receptor C) O atrial natriuretic peptide clearance receptor|atrial natriuretic peptide receptor 3|atrial natriuretic peptide receptor type C 20121230 -9606 4884 NPTX1 - NP1 HGNC:7952|MIM:602367|Ensembl:ENSG00000171246|HPRD:03843|Vega:OTTHUMG00000177607 17 17q25.3 neuronal pentraxin I protein-coding NPTX1 neuronal pentraxin I O NP-I|neuronal pentraxin-1 20121230 -9606 4885 NPTX2 - NARP|NP-II|NP2 HGNC:7953|MIM:600750|Ensembl:ENSG00000106236|HPRD:02853|Vega:OTTHUMG00000154369 7 7q21.3-q22.1 neuronal pentraxin II protein-coding NPTX2 neuronal pentraxin II O apexin|neuronal activity-regulated pentaxin|neuronal pentraxin-2 20121230 -9606 4886 NPY1R - NPY1-R|NPYR HGNC:7956|MIM:162641|Ensembl:ENSG00000164128|HPRD:01215|Vega:OTTHUMG00000161371 4 4q31.3-q32 neuropeptide Y receptor Y1 protein-coding NPY1R neuropeptide Y receptor Y1 O neuropeptide Y receptor type 1 20121230 -9606 4887 NPY2R - NPY2-R HGNC:7957|MIM:162642|Ensembl:ENSG00000185149|HPRD:01216|Vega:OTTHUMG00000161485 4 4q31 neuropeptide Y receptor Y2 protein-coding NPY2R neuropeptide Y receptor Y2 O NPY-Y2 receptor|Y2 receptor|neuropeptide Y receptor type 2 20121230 -9606 4888 NPY6R - NPY1RL|PP2|Y2B HGNC:7959|MIM:601770 5 5q31.2 neuropeptide Y receptor Y6 (pseudogene) pseudo NPY6R neuropeptide Y receptor Y6 (pseudogene) O - 20121230 -9606 4889 NPY5R - NPY5-R|NPYR5|NPYY5-R HGNC:7958|MIM:602001|Ensembl:ENSG00000164129|HPRD:03591|Vega:OTTHUMG00000161353 4 4q31-q32 neuropeptide Y receptor Y5 protein-coding NPY5R neuropeptide Y receptor Y5 O NPY-Y5 receptor|Y5 receptor|neuropeptide Y receptor type 5 20121230 -9606 4891 SLC11A2 OK/SW-cl.20 DCT1|DMT1|NRAMP2 HGNC:10908|MIM:600523|Ensembl:ENSG00000110911|HPRD:02750|Vega:OTTHUMG00000169493 12 12q13 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 2 protein-coding SLC11A2 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 2 O DMT-1|NRAMP 2|divalent cation transporter 1|natural resistance-associated macrophage protein 2 20121230 -9606 4892 NRAP RP11-190F19.1 N-RAP HGNC:7988|MIM:602873|Ensembl:ENSG00000197893|HPRD:04189|Vega:OTTHUMG00000019072 10 10q24-q26 nebulin-related anchoring protein protein-coding NRAP nebulin-related anchoring protein O nebulin-related-anchoring protein 20121230 -9606 4893 NRAS RP5-1000E10.2 ALPS4|N-ras|NRAS1|NS6 HGNC:7989|MIM:164790|Ensembl:ENSG00000213281|HPRD:01273|Vega:OTTHUMG00000012059 1 1p13.2 neuroblastoma RAS viral (v-ras) oncogene homolog protein-coding NRAS neuroblastoma RAS viral (v-ras) oncogene homolog O GTPase NRas|N-ras protein part 4|transforming protein N-Ras|v-ras neuroblastoma RAS viral oncogene homolog 20121230 -9606 4897 NRCAM - - HGNC:7994|MIM:601581|Ensembl:ENSG00000091129|HPRD:07207|Vega:OTTHUMG00000154973 7 7q31 neuronal cell adhesion molecule protein-coding NRCAM neuronal cell adhesion molecule O NgCAM-related cell adhesion molecule|neuronal surface protein Bravo 20121230 -9606 4898 NRD1 RP4-657D16.2 hNRD1|hNRD2 HGNC:7995|MIM:602651|Ensembl:ENSG00000078618|HPRD:04036|Vega:OTTHUMG00000008278 1 1p32.2-p32.1 nardilysin (N-arginine dibasic convertase) protein-coding NRD1 nardilysin (N-arginine dibasic convertase) O NRD convertase|NRD-C|nardilysin 20121230 -9606 4899 NRF1 - ALPHA-PAL HGNC:7996|MIM:600879|Ensembl:ENSG00000106459|HPRD:02930|Vega:OTTHUMG00000143736 7 7q32 nuclear respiratory factor 1 protein-coding NRF1 nuclear respiratory factor 1 O NRF-1|alpha palindromic-binding protein 20121230 -9606 4900 NRGN - RC3|hng HGNC:8000|MIM:602350|Ensembl:ENSG00000154146|HPRD:03828|Vega:OTTHUMG00000165928 11 11q24 neurogranin (protein kinase C substrate, RC3) protein-coding NRGN neurogranin (protein kinase C substrate, RC3) O calmodulin-binding protein|neurogranin|ng|protein kinase C substrate 20121230 -9606 4901 NRL - D14S46E|NRL-MAF|RP27 HGNC:8002|MIM:162080|Ensembl:ENSG00000129535|HPRD:08875|Vega:OTTHUMG00000028789 14 14q11.1-q11.2 neural retina leucine zipper protein-coding NRL neural retina leucine zipper O neural retina-specific leucine zipper protein|neural retinal-specific leucine zipper 20121230 -9606 4902 NRTN - NTN HGNC:8007|MIM:602018|Ensembl:ENSG00000171119|HPRD:03604|Vega:OTTHUMG00000180555 19 19p13.3 neurturin protein-coding NRTN neurturin O - 20121230 -9606 4904 YBX1 - BP-8|CSDA2|CSDB|DBPB|MDR-NF1|NSEP-1|NSEP1|YB-1|YB1 HGNC:8014|MIM:154030|Ensembl:ENSG00000065978|HPRD:01095|Vega:OTTHUMG00000007523 1 1p34 Y box binding protein 1 protein-coding YBX1 Y box binding protein 1 O CBF-A|CCAAT-binding transcription factor I subunit A|DNA-binding protein B|EFI-A|Y-box transcription factor|Y-box-binding protein 1|enhancer factor I subunit A|major histocompatibility complex, class II, Y box-binding protein I|nuclease sensitive element binding protein 1|nuclease-sensitive element-binding protein 1 20121230 -9606 4905 NSF - SKD2 HGNC:8016|MIM:601633|Ensembl:ENSG00000073969|HPRD:03380|Vega:OTTHUMG00000134315 17 17q21 N-ethylmaleimide-sensitive factor protein-coding NSF N-ethylmaleimide-sensitive factor O N-ethylmaleimide-sensitive factor-like protein|N-ethylmaleimide-sensitive fusion protein|NEM-sensitive fusion protein|vesicle-fusing ATPase|vesicular-fusion protein NSF 20121230 -9606 4906 NSX - - HGNC:8019|MIM:310465 X Xp22.3-p21.1 N syndrome (mental retardation, malformations, chromosome breakage) unknown NSX N syndrome (mental retardation, malformations, chromosome breakage) O - 20110215 -9606 4907 NT5E RP11-321N4.1 CD73|E5NT|NT|NT5|NTE|eN|eNT HGNC:8021|MIM:129190|Ensembl:ENSG00000135318|HPRD:00552|Vega:OTTHUMG00000015139 6 6q14-q21 5'-nucleotidase, ecto (CD73) protein-coding NT5E 5'-nucleotidase, ecto (CD73) O 5'-NT|5'-nucleotidase|Purine 5-Prime-Nucleotidase|ecto-5'-nucleotidase 20121230 -9606 4908 NTF3 - HDNF|NGF-2|NGF2|NT3 HGNC:8023|MIM:162660|Ensembl:ENSG00000185652|HPRD:01219|Vega:OTTHUMG00000168649 12 12p13 neurotrophin 3 protein-coding NTF3 neurotrophin 3 O NT-3|nerve growth factor 2|neurotrophic factor|neurotrophin-3 20121230 -9606 4909 NTF4 - GLC10|GLC1O|NT-4|NT-4/5|NT-5|NT4|NT5|NTF5 HGNC:8024|MIM:162662|Ensembl:ENSG00000167744|HPRD:01220 19 19q13.3 neurotrophin 4 protein-coding NTF4 neurotrophin 4 O neurotrophic factor 4|neurotrophic factor 5|neurotrophin 5 (neurotrophin 4/5)|neurotrophin-4|neurotrophin-5|neutrophic factor 4 20121230 -9606 4910 NTF6A - NTF5P|NTF6|PSI-NT4 HGNC:8025 19 19q13.3 neurotrophin 6 alpha (pseudogene) pseudo NTF6A neurotrophin 6 alpha (pseudogene) O - 20121230 -9606 4911 NTF6B - - HGNC:8026 19 19q13.3 neurotrophin 6 beta (pseudogene) pseudo NTF6B neurotrophin 6 beta (pseudogene) O - 20121230 -9606 4912 NTF6G - - HGNC:8027 19 19q13.3 neurotrophin 6 gamma (pseudogene) pseudo NTF6G neurotrophin 6 gamma (pseudogene) O - 20121230 -9606 4913 NTHL1 - NTH1|OCTS3 HGNC:8028|MIM:602656|Ensembl:ENSG00000065057|HPRD:04039|Vega:OTTHUMG00000128744 16 16p13.3 nth endonuclease III-like 1 (E. coli) protein-coding NTHL1 nth endonuclease III-like 1 (E. coli) O endonuclease III-like protein 1 20121230 -9606 4914 NTRK1 - MTC|TRK|TRK1|TRKA|Trk-A|p140-TrkA HGNC:8031|MIM:191315|Ensembl:ENSG00000198400|HPRD:01869|Vega:OTTHUMG00000041304 1 1q21-q22 neurotrophic tyrosine kinase, receptor, type 1 protein-coding NTRK1 neurotrophic tyrosine kinase, receptor, type 1 O Oncogene TRK|TRK1-transforming tyrosine kinase protein|gp140trk|high affinity nerve growth factor receptor|tropomyosin-related kinase A|tyrosine kinase receptor A 20121230 -9606 4915 NTRK2 RP11-263K15.1 GP145-TrkB|TRKB|trk-B HGNC:8032|MIM:600456|Ensembl:ENSG00000148053|HPRD:02712|Vega:OTTHUMG00000020120 9 9q22.1 neurotrophic tyrosine kinase, receptor, type 2 protein-coding NTRK2 neurotrophic tyrosine kinase, receptor, type 2 O BDNF-tropomyosine receptor kinase B|BDNF/NT-3 growth factors receptor|trkB tyrosine kinase|tropomyosin-related kinase B|tyrosine kinase receptor B 20121230 -9606 4916 NTRK3 - TRKC|gp145(trkC) HGNC:8033|MIM:191316|Ensembl:ENSG00000140538|HPRD:01870|Vega:OTTHUMG00000148677 15 15q25 neurotrophic tyrosine kinase, receptor, type 3 protein-coding NTRK3 neurotrophic tyrosine kinase, receptor, type 3 O ETS related protein-neurotrophic receptor tyrosine kinase fusion protein|ETV6-NTRK3 fusion|GP145-TrkC|NT-3 growth factor receptor|tyrosine kinase receptor C 20121230 -9606 4917 NTN3 - NTN2L HGNC:8030|MIM:602349|Ensembl:ENSG00000162068|HPRD:03827|Vega:OTTHUMG00000128867 16 16p13.3 netrin 3 protein-coding NTN3 netrin 3 O Netrin-2, chicken, homolog of, like|netrin-2-like protein|netrin-3 20121230 -9606 4919 ROR1 RP11-24J23.1 NTRKR1|dJ537F10.1 HGNC:10256|MIM:602336|Ensembl:ENSG00000185483|HPRD:03821|Vega:OTTHUMG00000009022 1 1p32-p31 receptor tyrosine kinase-like orphan receptor 1 protein-coding ROR1 receptor tyrosine kinase-like orphan receptor 1 O neurotrophic tyrosine kinase, receptor-related 1|tyrosine-protein kinase transmembrane receptor ROR1 20121230 -9606 4920 ROR2 RP11-8I8.2 BDB|BDB1|NTRKR2 HGNC:10257|MIM:602337|Ensembl:ENSG00000169071|HPRD:03822|Vega:OTTHUMG00000020211 9 9q22 receptor tyrosine kinase-like orphan receptor 2 protein-coding ROR2 receptor tyrosine kinase-like orphan receptor 2 O neurotrophic tyrosine kinase receptor-related 2|tyrosine-protein kinase transmembrane receptor ROR2 20121230 -9606 4921 DDR2 RP11-572K18.1 MIG20a|NTRKR3|TKT|TYRO10 HGNC:2731|MIM:191311|Ensembl:ENSG00000162733|HPRD:01868|Vega:OTTHUMG00000034423 1 1q23.3 discoidin domain receptor tyrosine kinase 2 protein-coding DDR2 discoidin domain receptor tyrosine kinase 2 O CD167 antigen-like family member B|cell migration-inducing protein 20|discoidin domain receptor 2|discoidin domain receptor family, member 2|discoidin domain-containing receptor 2|discoidin domain-containing receptor tyrosine kinase 2|hydroxyaryl-protein kinase|migration-inducing gene 16 protein|neurotrophic tyrosine kinase receptor related 3|neurotrophic tyrosine kinase, receptor-related 3|receptor protein-tyrosine kinase TKT|tyrosine-protein kinase TYRO10|tyrosylprotein kinase 20121230 -9606 4922 NTS - NMN-125|NN|NT|NT/N|NTS1 HGNC:8038|MIM:162650|Ensembl:ENSG00000133636|HPRD:08878|Vega:OTTHUMG00000169832 12 12q21 neurotensin protein-coding NTS neurotensin O neurotensin/neuromedin N 20121230 -9606 4923 NTSR1 - NTR HGNC:8039|MIM:162651|Ensembl:ENSG00000101188|HPRD:01218|Vega:OTTHUMG00000032932 20 20q13 neurotensin receptor 1 (high affinity) protein-coding NTSR1 neurotensin receptor 1 (high affinity) O NT-R-1|NTR1|NTRH|high-affinity levocabastine-insensitive neurotensin receptor|neurotensin receptor type 1 20121230 -9606 4924 NUCB1 - CALNUC|NUC HGNC:8043|MIM:601323|Ensembl:ENSG00000104805|HPRD:03205|Vega:OTTHUMG00000152514 19 19q13.33 nucleobindin 1 protein-coding NUCB1 nucleobindin 1 O nucleobindin-1 20121230 -9606 4925 NUCB2 - NEFA HGNC:8044|MIM:608020|Ensembl:ENSG00000070081|HPRD:09726|Vega:OTTHUMG00000166050 11 11p15.1 nucleobindin 2 protein-coding NUCB2 nucleobindin 2 O DNA-binding protein NEFA|gastric cancer antigen Zg4|nesfatin-1|nucleobindin-2|nucleobinding 2|prepronefastin 20121230 -9606 4926 NUMA1 - NUMA HGNC:8059|MIM:164009|Ensembl:ENSG00000137497|HPRD:01236|Vega:OTTHUMG00000167697 11 11q13 nuclear mitotic apparatus protein 1 protein-coding NUMA1 nuclear mitotic apparatus protein 1 O SP-H antigen|centrophilin stabilizes mitotic spindle in mitotic cells|structural nuclear protein 20121230 -9606 4927 NUP88 - - HGNC:8067|MIM:602552|Ensembl:ENSG00000108559|HPRD:03974|Vega:OTTHUMG00000099453 17 17p13.2 nucleoporin 88kDa protein-coding NUP88 nucleoporin 88kDa O 88 kDa nucleoporin|karyoporin|nuclear pore complex protein 88|nuclear pore complex protein Nup88|nucleoporin Nup88 20121230 -9606 4928 NUP98 - ADIR2|NUP196|NUP96 HGNC:8068|MIM:601021|Ensembl:ENSG00000110713|HPRD:03012|Vega:OTTHUMG00000011846 11 11p15.5 nucleoporin 98kDa protein-coding NUP98 nucleoporin 98kDa O GLFG-repeat containing nucleoporin|Nup98-Nup96|nuclear pore complex protein Nup98-Nup96 20121230 -9606 4929 NR4A2 - HZF-3|NOT|NURR1|RNR1|TINUR HGNC:7981|MIM:601828|Ensembl:ENSG00000153234|HPRD:03493|Vega:OTTHUMG00000131950 2 2q22-q23 nuclear receptor subfamily 4, group A, member 2 protein-coding NR4A2 nuclear receptor subfamily 4, group A, member 2 O NGFI-B/nur77 beta-type transcription factor homolog|T-cell nuclear receptor NOT|immediate-early response protein NOT|intermediate-early receptor protein|nuclear receptor related 1|nuclear receptor subfamily 4 group A member 2|nur related protein-1, human homolog of|orphan nuclear receptor NR4A2|orphan nuclear receptor NURR1|transcriptionally inducible nuclear receptor related 1|transcriptionally-inducible nuclear receptor 20121230 -9606 4931 NVL - - HGNC:8070|MIM:602426|Ensembl:ENSG00000143748|HPRD:03887|Vega:OTTHUMG00000037536 1 1q41-q42.2 nuclear VCP-like protein-coding NVL nuclear VCP-like O NVLp|nuclear valosin-containing protein-like 20121230 -9606 4933 NYS2 - NYSA HGNC:8080|MIM:164100 6 6p12 nystagmus 2, congenital autosomal dominant unknown NYS2 nystagmus 2, congenital autosomal dominant O - 20120622 -9606 4934 NYS3 - CN HGNC:8081|MIM:608345 7 7p11 nystagmus 3, congenital autosomal dominant unknown NYS3 nystagmus 3, congenital autosomal dominant O - 20120622 -9606 4935 GPR143 - NYS6|OA1 HGNC:20145|MIM:300808|Ensembl:ENSG00000101850|HPRD:02355|Vega:OTTHUMG00000021118 X Xp22.3 G protein-coupled receptor 143 protein-coding GPR143 G protein-coupled receptor 143 O G-protein coupled receptor 143|ocular albinism type 1 protein 20121230 -9606 4936 OA3 - OAR HGNC:8084 6 6q13-q15 ocular albinism 3 (autosomal recessive) unknown OA3 ocular albinism 3 (autosomal recessive) O - 20110215 -9606 4937 OAP - OA|OASF HGNC:8085 11 11q osteoarthrosis, precocious unknown OAP osteoarthrosis, precocious O - 20110215 -9606 4938 OAS1 - IFI-4|OIAS|OIASI HGNC:8086|MIM:164350|Ensembl:ENSG00000089127|HPRD:08879|Vega:OTTHUMG00000169792 12 12q24.2 2'-5'-oligoadenylate synthetase 1, 40/46kDa protein-coding OAS1 2'-5'-oligoadenylate synthetase 1, 40/46kDa O (2-5')oligo(A) synthase 1|(2-5')oligo(A) synthetase 1|2',5'-oligo A synthetase 1|2',5'-oligoadenylate synthetase 1, 40/46kDa|2'-5' oligoadenylate synthetase 1 p48 isoform|2'-5' oligoadenylate synthetase 1 p52 isoform|2'-5'-oligoadenylate synthase 1|2'-5'-oligoisoadenylate synthetase 1|2-5A synthase 1|2-5A synthetase 1|E18/E16|p46/p42 OAS 20121230 -9606 4939 OAS2 - - HGNC:8087|MIM:603350|Ensembl:ENSG00000111335|HPRD:04518|Vega:OTTHUMG00000169802 12 12q24.2 2'-5'-oligoadenylate synthetase 2, 69/71kDa protein-coding OAS2 2'-5'-oligoadenylate synthetase 2, 69/71kDa O (2'-5')oligo(A) synthetase 2|2'-5'-oligoadenylate synthase 2|2-5A synthase 2|p69 OAS / p71 OAS 20121230 -9606 4940 OAS3 P/OKcl.4 p100 HGNC:8088|MIM:603351|Ensembl:ENSG00000111331|HPRD:04519|Vega:OTTHUMG00000169795 12 12q24.2 2'-5'-oligoadenylate synthetase 3, 100kDa protein-coding OAS3 2'-5'-oligoadenylate synthetase 3, 100kDa O (2-5')oligo(A) synthase 3|(2-5')oligo(A) synthetase 3|2'-5'-oligoadenylate synthase 3|2'-5'oligoadenylate synthetase p100|2-5A synthase 3|2-5A synthetase 3|p100 OAS|p100OAS 20121230 -9606 4941 OASD - - HGNC:8089|MIM:300650 X Xp22.3 ocular albinism and sensorineural deafness unknown OASD ocular albinism and sensorineural deafness O - 20120622 -9606 4942 OAT - GACR|HOGA|OATASE|OKT HGNC:8091|MIM:613349|Ensembl:ENSG00000065154|HPRD:02021|Vega:OTTHUMG00000019213 10 10q26 ornithine aminotransferase protein-coding OAT ornithine aminotransferase O gyrate atrophy|ornithine aminotransferase, mitochondrial|ornithine delta-aminotransferase|ornithine-oxo-acid aminotransferase 20121230 -9606 4943 TBC1D25 - MG81|OATL1 HGNC:8092|MIM:311240|Ensembl:ENSG00000068354|HPRD:08948|Vega:OTTHUMG00000024123 X Xp11.23 TBC1 domain family, member 25 protein-coding TBC1D25 TBC1 domain family, member 25 O 5SN3 snoRNA|TBC1 domain family member 25|ornithine aminotransferase-like 1 20121230 -9606 4945 OATP1 - OATL3 HGNC:8094 10 10q26 ornithine aminotransferase pseudogene 1 pseudo OATP1 ornithine aminotransferase pseudogene 1 O - 20121230 -9606 4946 OAZ1 - AZI|OAZ HGNC:8095|MIM:601579|Ensembl:ENSG00000104904|HPRD:03346|Vega:OTTHUMG00000178459 19 19p13.3 ornithine decarboxylase antizyme 1 protein-coding OAZ1 ornithine decarboxylase antizyme 1 O ODC-Az|antizyme 1 20121230 -9606 4947 OAZ2 - AZ2 HGNC:8096|MIM:604152|Ensembl:ENSG00000180304|HPRD:11966|Vega:OTTHUMG00000172473 15 15q22.31 ornithine decarboxylase antizyme 2 protein-coding OAZ2 ornithine decarboxylase antizyme 2 O ODC-Az 2 20121230 -9606 4948 OCA2 - BEY|BEY1|BEY2|BOCA|D15S12|EYCL|EYCL2|EYCL3|HCL3|P|PED|SHEP1 HGNC:8101|MIM:611409|Ensembl:ENSG00000104044|HPRD:01945|Vega:OTTHUMG00000128871 15 15q oculocutaneous albinism II protein-coding OCA2 oculocutaneous albinism II O P protein|eye color 2 (central brown)|eye color 3 (brown)|hair color 3 (brown)|melanocyte-specific transporter protein|oculocutaneous albinism II (pink-eye dilution homolog, mouse)|pink-eyed dilution protein homolog|total brown iris pigmentation 20121230 -9606 4951 OCM2 - OCM HGNC:34396|Ensembl:ENSG00000135175|HPRD:01274|Vega:OTTHUMG00000154162 7 7q21.2 oncomodulin 2 protein-coding OCM2 oncomodulin 2 O OM|parvalbumin beta|putative oncomodulin-2 20121230 -9606 4952 OCRL RP3-454M7.1 INPP5F|LOCR|NPHL2|OCRL-1|OCRL1 HGNC:8108|MIM:300535|Ensembl:ENSG00000122126|HPRD:02395|Vega:OTTHUMG00000022706 X Xq25 oculocerebrorenal syndrome of Lowe protein-coding OCRL oculocerebrorenal syndrome of Lowe O Lowe oculocerebrorenal syndrome protein|inositol polyphosphate 5-phosphatase OCRL-1|phosphatidylinositol polyphosphate 5-phosphatase 20121230 -9606 4953 ODC1 - ODC HGNC:8109|MIM:165640|Ensembl:ENSG00000115758|HPRD:01324|Vega:OTTHUMG00000090450 2 2p25 ornithine decarboxylase 1 protein-coding ODC1 ornithine decarboxylase 1 O ornithine decarboxylase 20121230 -9606 4954 ODCP - ODC2 HGNC:8110 7 7q31-qter ornithine decarboxylase pseudogene pseudo ODCP ornithine decarboxylase pseudogene O - 20121230 -9606 4956 ODF1 - CT133|HSPB10|ODF|ODF2|ODF27|ODFP|ODFPG|ODFPGA|ODFPGB|RT7|SODF HGNC:8113|MIM:182878|Ensembl:ENSG00000155087|HPRD:01687|Vega:OTTHUMG00000164719 8 8q22.3 outer dense fiber of sperm tails 1 protein-coding ODF1 outer dense fiber of sperm tails 1 O cancer/testis antigen 133|outer dense fiber of sperm tails, 27-kD|outer dense fiber protein 1 20121230 -9606 4957 ODF2 RP11-187B3.1 CT134|ODF2/1|ODF2/2|ODF84 HGNC:8114|MIM:602015|Ensembl:ENSG00000136811|HPRD:03601|Vega:OTTHUMG00000020748 9 9q34.11 outer dense fiber of sperm tails 2 protein-coding ODF2 outer dense fiber of sperm tails 2 O cancer/testis antigen 134|cenexin 1|outer dense fiber of sperm tails, 84-kD|outer dense fiber protein 2|sperm tail structural protein 20121230 -9606 4958 OMD UNQ190/PRO216 OSAD|SLRR2C HGNC:8134|Ensembl:ENSG00000127083|HPRD:10128|Vega:OTTHUMG00000020225 9 9q22.31 osteomodulin protein-coding OMD osteomodulin O KSPG osteomodulin|keratan sulfate proteoglycan osteomodulin|osteoadherin proteoglycan 20121230 -9606 4961 OED - - HGNC:8118 X Xp21.3 Oregon eye disease unknown OED Oregon eye disease O - 20110215 -9606 4963 OFC1 - CL|OFC HGNC:8120|MIM:119530 6 6p24 orofacial cleft 1 unknown OFC1 orofacial cleft 1 O - 20121010 -9606 4964 OFC2 - - HGNC:8121|MIM:602966 2 2p14-p13 orofacial cleft 2 unknown OFC2 orofacial cleft 2 O - 20120622 -9606 4965 OFC3 - - HGNC:8122|MIM:600757 19 19q13 orofacial cleft 3 unknown OFC3 orofacial cleft 3 O - 20120622 -9606 4967 OGDH - AKGDH|E1k|OGDC HGNC:8124|MIM:613022|Ensembl:ENSG00000105953|HPRD:08938|Vega:OTTHUMG00000155304 7 7p14-p13 oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide) protein-coding OGDH oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide) O 2-oxoglutarate dehydrogenase complex component E1|2-oxoglutarate dehydrogenase, mitochondrial|OGDC-E1|oxoglutarate decarboxylase|oxoglutarate dehydrogenase (succinyl-transferring) 20121230 -9606 4968 OGG1 - HMMH|HOGG1|MUTM|OGH1 HGNC:8125|MIM:601982|Ensembl:ENSG00000114026|HPRD:03582|Vega:OTTHUMG00000097091 3 3p26.2 8-oxoguanine DNA glycosylase protein-coding OGG1 8-oxoguanine DNA glycosylase O 8-hydroxyguanine DNA glycosylase|AP lyase|DNA-apurinic or apyrimidinic site lyase|N-glycosylase/DNA lyase|OGG1 type 1f 20121230 -9606 4969 OGN - OG|OIF|SLRR3A HGNC:8126|MIM:602383|Ensembl:ENSG00000106809|HPRD:03856|Vega:OTTHUMG00000020224 9 9q22 osteoglycin protein-coding OGN osteoglycin O corneal keratan sulfate proteoglycan|mimecan|mimecan proteoglycan|osteoinductive factor 20121230 -9606 4973 OLR1 - CLEC8A|LOX1|LOXIN|SCARE1|SLOX1 HGNC:8133|MIM:602601|Ensembl:ENSG00000173391|HPRD:04003|Vega:OTTHUMG00000168527 12 12p13.2-p12.3 oxidized low density lipoprotein (lectin-like) receptor 1 protein-coding OLR1 oxidized low density lipoprotein (lectin-like) receptor 1 O C-type lectin domain family 8 member A|hLOX-1|lectin-type oxidized LDL receptor 1|ox LDL receptor 1|oxidized low-density lipoprotein receptor 1|oxidized low-density lipoprotein receptor 1, soluble form|scavenger receptor class E, member 1 20121230 -9606 4974 OMG - OMGP HGNC:8135|MIM:164345|Ensembl:ENSG00000126861|HPRD:01257|Vega:OTTHUMG00000132870 17 17q11.2 oligodendrocyte myelin glycoprotein protein-coding OMG oligodendrocyte myelin glycoprotein O oligodendrocyte-myelin glycoprotein 20121230 -9606 4975 OMP - - HGNC:8136|MIM:164340|Ensembl:ENSG00000254550|HPRD:01254|Vega:OTTHUMG00000165193 11 11q13.5 olfactory marker protein protein-coding OMP olfactory marker protein O olfactory neuronal-specific protein 20121230 -9606 4976 OPA1 - MGM1|NPG|NTG|largeG HGNC:8140|MIM:605290|Ensembl:ENSG00000198836|HPRD:05596|Vega:OTTHUMG00000149897 3 3q28-q29 optic atrophy 1 (autosomal dominant) protein-coding OPA1 optic atrophy 1 (autosomal dominant) O dynamin-like 120 kDa protein, mitochondrial|dynamin-like guanosine triphosphatase|mitochondrial dynamin-like 120 kDa protein|mitochondrial dynamin-like GTPase|optic atrophy protein 1 20121230 -9606 4977 OPA2 - - HGNC:8141|MIM:311050 X Xp11.4-p11.2 optic atrophy 2 (obscure) unknown OPA2 optic atrophy 2 (obscure) O - 20120622 -9606 4978 OPCML - IGLON1|OBCAM|OPCM HGNC:8143|MIM:600632|Ensembl:ENSG00000183715|HPRD:07198|Vega:OTTHUMG00000163658 11 11q25 opioid binding protein/cell adhesion molecule-like protein-coding OPCML opioid binding protein/cell adhesion molecule-like O IgLON family member 1|opioid binding protein/cell adhesion molecule-like preprotein|opioid-binding protein/cell adhesion molecule 20121230 -9606 4981 OPEM - - HGNC:8146|MIM:311000 X - ophthalmoplegia, external, with myopia unknown OPEM ophthalmoplegia, external, with myopia O - 20110215 -9606 4982 TNFRSF11B - OCIF|OPG|TR1 HGNC:11909|MIM:602643|Ensembl:ENSG00000164761|HPRD:04032|Vega:OTTHUMG00000164969 8 8q24 tumor necrosis factor receptor superfamily, member 11b protein-coding TNFRSF11B tumor necrosis factor receptor superfamily, member 11b O osteoclastogenesis inhibitory factor|osteoprotegerin|tumor necrosis factor receptor superfamily member 11B 20121230 -9606 4983 OPHN1 RP6-201G10.1 ARHGAP41|MRX60|OPN1 HGNC:8148|MIM:300127|Ensembl:ENSG00000079482|HPRD:02130|Vega:OTTHUMG00000021744 X Xq12 oligophrenin 1 protein-coding OPHN1 oligophrenin 1 O mental retardation, X-linked 60|oligophrenin-1|oligophrenin-1, Rho-GTPase activating protein 20121230 -9606 4985 OPRD1 - OPRD HGNC:8153|MIM:165195|Ensembl:ENSG00000116329|HPRD:01308|Vega:OTTHUMG00000003646 1 1p36.1-p34.3 opioid receptor, delta 1 protein-coding OPRD1 opioid receptor, delta 1 O D-OR-1|DOR-1|delta opioid receptor 1|delta-type opioid receptor 20121230 -9606 4986 OPRK1 - KOR|OPRK HGNC:8154|MIM:165196|Ensembl:ENSG00000082556|HPRD:01309|Vega:OTTHUMG00000164276 8 8q11.2 opioid receptor, kappa 1 protein-coding OPRK1 opioid receptor, kappa 1 O K-OR-1|KOR-1|Opiate receptor, kappa-1|kappa opioid receptor|kappa-type opioid receptor 20121230 -9606 4987 OPRL1 - KOR-3|NOCIR|OOR|ORL1 HGNC:8155|MIM:602548|Ensembl:ENSG00000125510|HPRD:03971|Vega:OTTHUMG00000033027 20 20q13.33 opiate receptor-like 1 protein-coding OPRL1 opiate receptor-like 1 O kappa-type 3 opioid receptor|kappa3-related opioid receptor|nociceptin receptor|orphanin FQ receptor 20121230 -9606 4988 OPRM1 - LMOR|M-OR-1|MOP|MOR|MOR1|OPRM HGNC:8156|MIM:600018|Ensembl:ENSG00000112038|HPRD:02484|Vega:OTTHUMG00000015870 6 6q24-q25 opioid receptor, mu 1 protein-coding OPRM1 opioid receptor, mu 1 O mu opiate receptor|mu opioid receptor hMOR-1a|mu-type opioid receptor 20121230 -9606 4990 SIX6 - MCOPCT2|OPTX2|Six9 HGNC:10892|MIM:606326|Ensembl:ENSG00000184302|HPRD:07557|Vega:OTTHUMG00000152339 14 14q23.1 SIX homeobox 6 protein-coding SIX6 SIX homeobox 6 O homeobox protein SIX6|homeodomain protein OPTX2|optic homeobox 2|sine oculis homeobox homolog 6 20121230 -9606 4991 OR1D2 - OLFR1|OR17-4 HGNC:8183|MIM:164342|Ensembl:ENSG00000184166|HPRD:01255|Vega:OTTHUMG00000090619 17 17p13.3 olfactory receptor, family 1, subfamily D, member 2 protein-coding OR1D2 olfactory receptor, family 1, subfamily D, member 2 O olfactory receptor 17-4|olfactory receptor 1D2|olfactory receptor OR17-6|olfactory receptor-like protein HGMP07E 20121230 -9606 4992 OR1F1 - OLFMF|OR16-36|OR16-37|OR16-88|OR16-89|OR16-90|OR1F10|OR1F13P|OR1F4|OR1F5|OR1F6|OR1F7|OR1F8|OR1F9|OR3-145|ORL1023 HGNC:8194|MIM:603232|Ensembl:ENSG00000168124|HPRD:09125|Vega:OTTHUMG00000133153 16 16p13.3 olfactory receptor, family 1, subfamily F, member 1 protein-coding OR1F1 olfactory receptor, family 1, subfamily F, member 1 O olfactory receptor 1F1|olfactory receptor, family 1, subfamily F, member 10|olfactory receptor, family 1, subfamily F, member 13 pseudogene|olfactory receptor, family 1, subfamily F, member 4|olfactory receptor, family 1, subfamily F, member 5|olfactory receptor, family 1, subfamily F, member 6|olfactory receptor, family 1, subfamily F, member 7|olfactory receptor, family 1, subfamily F, member 9 20121230 -9606 4993 OR2C1 - OLFmf3|OR2C2P HGNC:8242|Ensembl:ENSG00000168158|HPRD:10130|Vega:OTTHUMG00000090505 16 16p13.3 olfactory receptor, family 2, subfamily C, member 1 protein-coding OR2C1 olfactory receptor, family 2, subfamily C, member 1 O olfactory receptor 2C1|olfactory receptor 2C2|olfactory receptor OR16-1|olfactory receptor OR16-2|olfactory receptor, family 2, subfamily C, member 2 pseudogene 20121230 -9606 4994 OR3A1 - OLFRA03|OR17-40|OR17-82|OR40 HGNC:8282|Ensembl:ENSG00000180090|HPRD:10131|Vega:OTTHUMG00000090642 17 17p13.3 olfactory receptor, family 3, subfamily A, member 1 protein-coding OR3A1 olfactory receptor, family 3, subfamily A, member 1 O olfactory receptor 17-40|olfactory receptor 3A1|olfactory receptor OR17-15 20121230 -9606 4995 OR3A2 - OLFRA04|OR17-14|OR17-228|OR228 HGNC:8283|Ensembl:ENSG00000221882|HPRD:10132|Vega:OTTHUMG00000177667 17 17p13.3 olfactory receptor, family 3, subfamily A, member 2 protein-coding OR3A2 olfactory receptor, family 3, subfamily A, member 2 O olfactory receptor 17-228|olfactory receptor 3A2|olfactory receptor OR17-14 20121230 -9606 4998 ORC1 - HSORC1|ORC1L|PARC1 HGNC:8487|MIM:601902|Ensembl:ENSG00000085840|HPRD:03544|Vega:OTTHUMG00000008104 1 1p32 origin recognition complex, subunit 1 protein-coding ORC1 origin recognition complex, subunit 1 O origin recognition complex subunit 1|origin recognition complex, subunit 1 homolog|replication control protein 1 20121230 -9606 4999 ORC2 - ORC2L HGNC:8488|MIM:601182|Ensembl:ENSG00000115942|HPRD:03112|Vega:OTTHUMG00000132783 2 2q33 origin recognition complex, subunit 2 protein-coding ORC2 origin recognition complex, subunit 2 O origin recognition complex protein 2 homolog|origin recognition complex subunit 2|origin recognition complex, subunit 2 homolog 20121230 -9606 5000 ORC4 - ORC4L|ORC4P HGNC:8490|MIM:603056|Ensembl:ENSG00000115947|HPRD:09118|Vega:OTTHUMG00000131849 2 2q22-q23 origin recognition complex, subunit 4 protein-coding ORC4 origin recognition complex, subunit 4 O origin recognition complex subunit 4|origin recognition complex, subunit 4 homolog 20121230 -9606 5001 ORC5 - ORC5L|ORC5P|ORC5T HGNC:8491|MIM:602331|Ensembl:ENSG00000164815|HPRD:09086|Vega:OTTHUMG00000157275 7 7q22.1 origin recognition complex, subunit 5 protein-coding ORC5 origin recognition complex, subunit 5 O origin recognition complex subunit 5 20121230 -9606 5002 SLC22A18 - BWR1A|BWSCR1A|HET|IMPT1|ITM|ORCTL2|SLC22A1L|TSSC5|p45-BWR1A HGNC:10964|MIM:602631|Ensembl:ENSG00000110628|HPRD:04024|Vega:OTTHUMG00000010037 11 11p15.5 solute carrier family 22, member 18 protein-coding SLC22A18 solute carrier family 22, member 18 O Beckwith-Wiedemann syndrome chromosome region 1, candidate A|ORCTL-2|beckwith-Wiedemann syndrome chromosomal region 1 candidate gene A protein|efflux transporter-like protein|imprinted multi-membrane spanning polyspecific transporter-related protein 1|imprinted multi-membrane-spanning polyspecific transporter-related protein 1|organic cation transporter-like 2|organic cation transporter-like protein 2|p45 Beckwith-Wiedemann region 1A|p45-Beckwith-Wiedemann region 1 A|solute carrier family 22 member 18|tumor-suppressing STF cDNA 5 protein|tumor-suppressing subchromosomal transferable fragment candidate gene 5 protein 20121230 -9606 5003 SLC22A18AS - BWR1B|BWSCR1B|ORCTL2S|SLC22A1LS|p27-BWR1B HGNC:10965|MIM:603240|Ensembl:ENSG00000254827|HPRD:09127|Vega:OTTHUMG00000010038 11 11p15.5 solute carrier family 22 (organic cation transporter), member 18 antisense protein-coding SLC22A18AS solute carrier family 22 (organic cation transporter), member 18 antisense O Beckwith-Wiedemann region 1B|Beckwith-Wiedemann syndrome chromosome region 1, candidate b|beckwith-Wiedemann syndrome chromosomal region 1 candidate gene B protein|organic cation transporter-like 2 antisense|organic cation transporter-like protein 2 antisense protein|p27-Beckwith-Wiedemann region 1 B|solute carrier family 22 (organic cation transporter), member 1-like antisense|solute carrier family 22 member 1-like antisense protein|solute carrier family 22 member 18 antisense protein 20121230 -9606 5004 ORM1 RP11-82I1.3 AGP-A|AGP1|ORM HGNC:8498|MIM:138600|Ensembl:ENSG00000229314|HPRD:00724|Vega:OTTHUMG00000021012 9 9q31-q32 orosomucoid 1 protein-coding ORM1 orosomucoid 1 O AGP 1|OMD 1|alpha-1-acid glycoprotein 1|orosomucoid-1 20121230 -9606 5005 ORM2 RP11-82I1.2 AGP-B|AGP-B'|AGP2 HGNC:8499|MIM:138610|Ensembl:ENSG00000228278|HPRD:00725|Vega:OTTHUMG00000021014 9 9q32 orosomucoid 2 protein-coding ORM2 orosomucoid 2 O AGP 2|OMD 2|alpha-1-acid glycoprotein 2|alpha-1-acid glycoprotein, type 2|orosomucoid-2 20121230 -9606 5007 OSBP - OSBP1 HGNC:8503|MIM:167040|Ensembl:ENSG00000110048|HPRD:01327|Vega:OTTHUMG00000167422 11 11q12-q13 oxysterol binding protein protein-coding OSBP oxysterol binding protein O oxysterol-binding protein 1 20121230 -9606 5008 OSM - - HGNC:8506|MIM:165095|Ensembl:ENSG00000099985|HPRD:01300|Vega:OTTHUMG00000150913 22 22q12.2 oncostatin M protein-coding OSM oncostatin M O oncostatin-M 20121230 -9606 5009 OTC - OCTD HGNC:8512|MIM:300461|Ensembl:ENSG00000036473|HPRD:02408|HPRD:08947|Vega:OTTHUMG00000022727 X Xp21.1 ornithine carbamoyltransferase protein-coding OTC ornithine carbamoyltransferase O OTCase|ornithine carbamoyltransferase, mitochondrial|ornithine transcarbamylase 20121230 -9606 5010 CLDN11 - OSP|OTM HGNC:8514|MIM:601326|Ensembl:ENSG00000013297|HPRD:03207|Vega:OTTHUMG00000158940 3 3q26.2-q26.3 claudin 11 protein-coding CLDN11 claudin 11 O claudin-11|oligodendrocyte transmembrane protein|oligodendrocyte-specific protein 20121230 -9606 5012 OTSC1 - OTS HGNC:8519|MIM:166800 15 15q25-q26 otosclerosis 1 unknown OTSC1 otosclerosis 1 O - 20120622 -9606 5013 OTX1 - - HGNC:8521|MIM:600036|Ensembl:ENSG00000115507|HPRD:08964|Vega:OTTHUMG00000129454 2 2p13 orthodenticle homeobox 1 protein-coding OTX1 orthodenticle homeobox 1 O homeobox protein OTX1|orthodenticle homolog 1 20121230 -9606 5015 OTX2 - CPHD6|MCOPS5 HGNC:8522|MIM:600037|Ensembl:ENSG00000165588|HPRD:07190|Vega:OTTHUMG00000152338 14 14q22.3 orthodenticle homeobox 2 protein-coding OTX2 orthodenticle homeobox 2 O homeobox protein OTX2|orthodenticle homolog 2 20121230 -9606 5016 OVGP1 - CHIT5|EGP|MUC9|OGP HGNC:8524|MIM:603578|Ensembl:ENSG00000085465|HPRD:04658|Vega:OTTHUMG00000011746 1 1p13 oviductal glycoprotein 1, 120kDa protein-coding OVGP1 oviductal glycoprotein 1, 120kDa O estrogen-dependent oviduct protein|mucin 9|mucin-9|oviduct glycoprotein|oviduct-specific glycoprotein|oviductin 20121230 -9606 5017 OVOL1 - HOVO1 HGNC:8525|MIM:602313|Ensembl:ENSG00000172818|HPRD:09080|Vega:OTTHUMG00000166600 11 11q13 ovo-like 1(Drosophila) protein-coding OVOL1 ovo-like 1(Drosophila) O ovo homolog-like 1|putative transcription factor Ovo-like 1 20121230 -9606 5018 OXA1L - OXA1 HGNC:8526|MIM:601066|Ensembl:ENSG00000155463|HPRD:03043|Vega:OTTHUMG00000028691 14 14q11.2 oxidase (cytochrome c) assembly 1-like protein-coding OXA1L oxidase (cytochrome c) assembly 1-like O OXA1-like protein|OXA1Hs|hsa|mitochondrial inner membrane protein OXA1L|oxidase assembly 1-like protein 20121230 -9606 5019 OXCT1 - OXCT|SCOT HGNC:8527|MIM:601424|Ensembl:ENSG00000083720|HPRD:02001|Vega:OTTHUMG00000094783 5 5p13.1 3-oxoacid CoA transferase 1 protein-coding OXCT1 3-oxoacid CoA transferase 1 O 3-oxoacid CoA-transferase 1|3-oxoacid-CoA transferase 1|SCOT-s|somatic-type succinyl CoA:3-oxoacid CoA-transferase|somatic-type succinyl-CoA:3-oxoacid CoA-transferase|somatic-type succinyl-CoA:3-oxoacid-CoA-transferase|succinyl CoA:3-oxoacid CoA transferase|succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial|succinyl-CoA:3-ketoacid-CoA transferase|succinyl-CoA:3-ketoacid-coenzyme A transferase 1, mitochondrial 20121230 -9606 5020 OXT - OT|OT-NPI|OXT-NPI HGNC:8528|MIM:167050|Ensembl:ENSG00000101405|HPRD:08880|Vega:OTTHUMG00000031724 20 20p13 oxytocin/neurophysin I prepropeptide protein-coding OXT oxytocin/neurophysin I prepropeptide O neurophysin I|oxytocin, prepro- (neurophysin I)|oxytocin, prepropeptide|oxytocin-neurophysin 1|oxytocin-neurophysin I, preproprotein 20121230 -9606 5021 OXTR - OT-R HGNC:8529|MIM:167055|Ensembl:ENSG00000180914|HPRD:01328|Vega:OTTHUMG00000090537 3 3p25 oxytocin receptor protein-coding OXTR oxytocin receptor O - 20121230 -9606 5023 P2RX1 - P2X1 HGNC:8533|MIM:600845|Ensembl:ENSG00000108405|HPRD:07526|Vega:OTTHUMG00000177673 17 17p13.3 purinergic receptor P2X, ligand-gated ion channel, 1 protein-coding P2RX1 purinergic receptor P2X, ligand-gated ion channel, 1 O ATP receptor|P2X purinoceptor 1|P2X receptor, subunit 1|P2X1 receptor|purinergic receptor P2X1 20121230 -9606 5024 P2RX3 - P2X3 HGNC:8534|MIM:600843|Ensembl:ENSG00000109991|HPRD:09016|Vega:OTTHUMG00000167025 11 11q12 purinergic receptor P2X, ligand-gated ion channel, 3 protein-coding P2RX3 purinergic receptor P2X, ligand-gated ion channel, 3 O ATP receptor|P2X purinoceptor 3|P2X receptor, subunit 3|purinergic receptor P2X3|purinoceptor P2X3 20121230 -9606 5025 P2RX4 - P2X4|P2X4R HGNC:8535|MIM:600846|Ensembl:ENSG00000135124|HPRD:09017|Vega:OTTHUMG00000169155 12 12q24.32 purinergic receptor P2X, ligand-gated ion channel, 4 protein-coding P2RX4 purinergic receptor P2X, ligand-gated ion channel, 4 O ATP receptor|ATP-gated cation channel protein|P2X purinoceptor 4|P2X receptor, subunit 4|purinergic receptor P2X4|purinoceptor P2X4 20121230 -9606 5026 P2RX5 - LRH-1|P2X5|P2X5R HGNC:8536|MIM:602836|Ensembl:ENSG00000083454|Ensembl:ENSG00000257950|HPRD:09110|Vega:OTTHUMG00000090700|Vega:OTTHUMG00000169623 17 17p13.3 purinergic receptor P2X, ligand-gated ion channel, 5 protein-coding P2RX5 purinergic receptor P2X, ligand-gated ion channel, 5 O ATP receptor subunit|P2X purinoceptor 5|ionotropic ATP receptor P2X5|lymphoid-restricted histocompatibility antigen-1 20121230 -9606 5027 P2RX7 - P2X7 HGNC:8537|MIM:602566|Ensembl:ENSG00000089041|HPRD:03977|Vega:OTTHUMG00000169153 12 12q24 purinergic receptor P2X, ligand-gated ion channel, 7 protein-coding P2RX7 purinergic receptor P2X, ligand-gated ion channel, 7 O ATP receptor|P2X purinoceptor 7|P2X7 receptor|P2Z receptor|purinergic receptor P2X7 variant A 20121230 -9606 5028 P2RY1 - P2Y1 HGNC:8539|MIM:601167|Ensembl:ENSG00000169860|HPRD:03103|Vega:OTTHUMG00000159694 3 3q25.2 purinergic receptor P2Y, G-protein coupled, 1 protein-coding P2RY1 purinergic receptor P2Y, G-protein coupled, 1 O ATP receptor|P2 purinoceptor subtype Y1|P2Y purinoceptor 1|platelet ADP receptor 20121230 -9606 5029 P2RY2 - HP2U|P2RU1|P2U|P2U1|P2UR|P2Y2|P2Y2R HGNC:8541|MIM:600041|Ensembl:ENSG00000175591|HPRD:02499|Vega:OTTHUMG00000167966 11 11q13.5-q14.1 purinergic receptor P2Y, G-protein coupled, 2 protein-coding P2RY2 purinergic receptor P2Y, G-protein coupled, 2 O ATP receptor|P2U nucleotide receptor|P2U purinoceptor 1|P2Y purinoceptor 2|purinergic receptor P2Y2|purinoceptor P2Y2 20121230 -9606 5030 P2RY4 RP13-26D14.5 NRU|P2P|P2Y4|UNR HGNC:8542|MIM:300038|Ensembl:ENSG00000186912|HPRD:02075|Vega:OTTHUMG00000021769 X Xq13 pyrimidinergic receptor P2Y, G-protein coupled, 4 protein-coding P2RY4 pyrimidinergic receptor P2Y, G-protein coupled, 4 O P2Y purinoceptor 4|uridine nucleotide receptor 20121230 -9606 5031 P2RY6 PP2891 P2Y6 HGNC:8543|MIM:602451|Ensembl:ENSG00000171631|HPRD:03906|Vega:OTTHUMG00000167969 11 11q13.5 pyrimidinergic receptor P2Y, G-protein coupled, 6 protein-coding P2RY6 pyrimidinergic receptor P2Y, G-protein coupled, 6 O G-coupled nucleotide receptor|P2 purinoceptor|P2Y purinoceptor 6|P2Y6 receptor 20121230 -9606 5032 P2RY11 - P2Y11 HGNC:8540|MIM:602697|Ensembl:ENSG00000244165|HPRD:04076|Vega:OTTHUMG00000150166 19 19p13.2 purinergic receptor P2Y, G-protein coupled, 11 protein-coding P2RY11 purinergic receptor P2Y, G-protein coupled, 11 O P2Y purinoceptor 11|purinergic receptor P2Y11 20121230 -9606 5033 P4HA1 RP11-344N10.1 P4HA HGNC:8546|MIM:176710|Ensembl:ENSG00000122884|HPRD:08901|Vega:OTTHUMG00000018449 10 10q21.3-q23.1 prolyl 4-hydroxylase, alpha polypeptide I protein-coding P4HA1 prolyl 4-hydroxylase, alpha polypeptide I O C-P4Halpha(I)|collagen prolyl 4-hydroxylase alpha(I)|procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide I|procollagen-proline,2-oxoglutarate-4-dioxygenase subunit alpha-1|prolyl 4-hydroxylase subunit alpha-1 20121230 -9606 5034 P4HB - DSI|ERBA2L|GIT|P4Hbeta|PDI|PDIA1|PHDB|PO4DB|PO4HB|PROHB HGNC:8548|MIM:176790|Ensembl:ENSG00000185624|HPRD:07181|Vega:OTTHUMG00000150269 17 17q25 prolyl 4-hydroxylase, beta polypeptide protein-coding P4HB prolyl 4-hydroxylase, beta polypeptide O cellular thyroid hormone-binding protein|collagen prolyl 4-hydroxylase beta|glutathione-insulin transhydrogenase|p55|procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), beta polypeptide|prolyl 4-hydroxylase subunit beta|protein disulfide isomerase family A, member 1|protein disulfide isomerase-associated 1|protein disulfide isomerase/oxidoreductase|protein disulfide-isomerase|protocollagen hydroxylase|thyroid hormone-binding protein p55 20121230 -9606 5036 PA2G4 - EBP1|HG4-1|p38-2G4 HGNC:8550|MIM:602145|Ensembl:ENSG00000170515|HPRD:03685|Vega:OTTHUMG00000170173 12 12q13.2 proliferation-associated 2G4, 38kDa protein-coding PA2G4 proliferation-associated 2G4, 38kDa O ErbB-3 binding protein 1|ErbB3-binding protein Ebp1|cell cycle protein p38-2G4 homolog|erbB3-binding protein 1|proliferation-associated protein 2G4 20121230 -9606 5037 PEBP1 - HCNP|HCNPpp|PBP|PEBP|PEBP-1|RKIP HGNC:8630|MIM:604591|Ensembl:ENSG00000089220|HPRD:06850|Vega:OTTHUMG00000168860 12 12q24.23 phosphatidylethanolamine binding protein 1 protein-coding PEBP1 phosphatidylethanolamine binding protein 1 O Raf kinase inhibitory protein|hippocampal cholinergic neurostimulating peptide|neuropolypeptide h3|phosphatidylethanolamine-binding protein 1|prostatic binding protein|prostatic-binding protein|raf kinase inhibitor protein 20121230 -9606 5042 PABPC3 RP11-165I9.5 PABP3|PABPL3|tPABP HGNC:8556|MIM:604680|Ensembl:ENSG00000151846|HPRD:05248|Vega:OTTHUMG00000016601 13 13q12-q13 poly(A) binding protein, cytoplasmic 3 protein-coding PABPC3 poly(A) binding protein, cytoplasmic 3 O PABP-3|poly(A)-binding protein 3|poly(A)-binding protein-like 3|polyadenylate-binding protein 3|testis PABP|testis-specific poly(A)-binding protein (PABP)|testis-specific poly(A)-binding protein 3 20121230 -9606 5043 PABX - - HGNC:8566 X Xp22.32 pseudoautosomal boundary region, X-linked unknown PABX pseudoautosomal boundary region, X-linked O - 20110215 -9606 5044 PABY - - HGNC:8567 Y Yp11.3 pseudoautosomal boundary region, Y-linked unknown PABY pseudoautosomal boundary region, Y-linked O - 20110215 -9606 5045 FURIN - FUR|PACE|PCSK3|SPC1 HGNC:8568|MIM:136950|Ensembl:ENSG00000140564|HPRD:00653|Vega:OTTHUMG00000149831 15 15q26.1 furin (paired basic amino acid cleaving enzyme) protein-coding FURIN furin (paired basic amino acid cleaving enzyme) O FES upstream region|dibasic processing enzyme|dibasic-processing enzyme|furin|furin, membrane associated receptor protein|paired basic amino acid residue-cleaving enzyme|proprotein convertase subtilisin/kexin type 3 20121230 -9606 5046 PCSK6 - PACE4|SPC4 HGNC:8569|MIM:167405|Ensembl:ENSG00000140479|HPRD:01329|Vega:OTTHUMG00000172097 15 15q26.3 proprotein convertase subtilisin/kexin type 6 protein-coding PCSK6 proprotein convertase subtilisin/kexin type 6 O paired basic amino acid cleaving enzyme 4|paired basic amino acid cleaving system 4|subtilisin-like proprotein convertase 4|subtilisin/kexin-like protease PACE4 20121230 -9606 5047 PAEP RP11-98L5.3 GD|GdA|GdF|GdS|PAEG|PEP|PP14 HGNC:8573|MIM:173310|Ensembl:ENSG00000122133|HPRD:01411|Vega:OTTHUMG00000020914 9 9q34 progestagen-associated endometrial protein protein-coding PAEP progestagen-associated endometrial protein O PEG|PP14 protein (placental protein 14)|alpha uterine protein|glycodelin|glycodelin-A|glycodelin-F|glycodelin-S|placental protein 14|pregnancy-associated endometrial alpha-2 globulin|pregnancy-associated endometrial alpha-2-globulin|progestagen-associated endometrial protein (placental protein 14, pregnancy-associated endometrial a|progesterone-associated endometrial protein 20121230 -9606 5048 PAFAH1B1 - LIS1|LIS2|MDCR|MDS|PAFAH HGNC:8574|MIM:601545|Ensembl:ENSG00000007168|HPRD:03329|Vega:OTTHUMG00000177574 17 17p13.3 platelet-activating factor acetylhydrolase 1b, regulatory subunit 1 (45kDa) protein-coding PAFAH1B1 platelet-activating factor acetylhydrolase 1b, regulatory subunit 1 (45kDa) O LIS-1|PAF acetylhydrolase 45 kDa subunit|PAF-AH 45 kDa subunit|PAF-AH alpha|PAFAH alpha|lissencephaly 1 protein|lissencephaly-1 protein|platelet-activating factor acetylhydrolase IB subunit alpha|platelet-activating factor acetylhydrolase, isoform Ib, alpha subunit (45kD)|platelet-activating factor acetylhydrolase, isoform Ib, subunit 1 (45kDa) 20121230 -9606 5049 PAFAH1B2 - - HGNC:8575|MIM:602508|Ensembl:ENSG00000168092|HPRD:03940|Vega:OTTHUMG00000167064 11 11q23 platelet-activating factor acetylhydrolase 1b, catalytic subunit 2 (30kDa) protein-coding PAFAH1B2 platelet-activating factor acetylhydrolase 1b, catalytic subunit 2 (30kDa) O PAF acetylhydrolase 30 kDa subunit|PAF-AH 30 kDa subunit|PAF-AH subunit beta|PAF-AH1b alpha 2 subunit|PAFAH subunit beta|intracellular platelet-activating factor acetylhydrolase alpha 2 subunit|platelet-activating factor acetylhydrolase IB subunit beta|platelet-activating factor acetylhydrolase, isoform Ib, subunit 2 (30kDa) 20121230 -9606 5050 PAFAH1B3 - PAFAHG HGNC:8576|MIM:603074|Ensembl:ENSG00000079462|HPRD:04354 19 19q13.1 platelet-activating factor acetylhydrolase 1b, catalytic subunit 3 (29kDa) protein-coding PAFAH1B3 platelet-activating factor acetylhydrolase 1b, catalytic subunit 3 (29kDa) O PAF acetylhydrolase 29 kDa subunit|PAF-AH 29 kDa subunit|PAF-AH subunit gamma|PAF-AH1b alpha 1 subunit|PAFAH subunit gamma|platelet-activating factor acetylhydrolase IB subunit gamma|platelet-activating factor acetylhydrolase, isoform Ib, subunit 3 (29kDa) 20121230 -9606 5051 PAFAH2 RP11-111D20.1 HSD-PLA2 HGNC:8579|MIM:602344|Ensembl:ENSG00000158006|HPRD:03824|Vega:OTTHUMG00000007437 1 1p36 platelet-activating factor acetylhydrolase 2, 40kDa protein-coding PAFAH2 platelet-activating factor acetylhydrolase 2, 40kDa O SD-PLA2|platelet-activating factor acetylhydrolase 2, cytoplasmic|serine-dependent phospholipase A2 20121230 -9606 5052 PRDX1 RP11-291L19.4 MSP23|NKEF-A|NKEFA|PAG|PAGA|PAGB|PRX1|PRXI|TDPX2 HGNC:9352|MIM:176763|Ensembl:ENSG00000117450|HPRD:01458|Vega:OTTHUMG00000007738 1 1p34.1 peroxiredoxin 1 protein-coding PRDX1 peroxiredoxin 1 O natural killer cell-enhancing factor A|natural killer-enhancing factor A|peroxiredoxin-1|proliferation-associated gene A|proliferation-associated gene protein|thioredoxin peroxidase 2|thioredoxin-dependent peroxide reductase 2 20121230 -9606 5053 PAH - PH|PKU|PKU1 HGNC:8582|MIM:612349|Ensembl:ENSG00000171759|HPRD:08943|Vega:OTTHUMG00000169966 12 12q22-q24.2 phenylalanine hydroxylase protein-coding PAH phenylalanine hydroxylase O phe-4-monooxygenase|phenylalanine 4-monooxygenase|phenylalanine-4-hydroxylase 20121230 -9606 5054 SERPINE1 - PAI|PAI-1|PAI1|PLANH1 HGNC:8583|MIM:173360|Ensembl:ENSG00000106366|HPRD:01418|Vega:OTTHUMG00000157107 7 7q22.1 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1 protein-coding SERPINE1 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1 O endothelial plasminogen activator inhibitor|plasminogen activator inhibitor 1|serine (or cysteine) proteinase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1|serpin E1 20121230 -9606 5055 SERPINB2 - HsT1201|PAI|PAI-2|PAI2|PLANH2 HGNC:8584|MIM:173390|Ensembl:ENSG00000197632|HPRD:01420|Vega:OTTHUMG00000060592 18 18q21.3 serpin peptidase inhibitor, clade B (ovalbumin), member 2 protein-coding SERPINB2 serpin peptidase inhibitor, clade B (ovalbumin), member 2 O monocyte Arg-serpin|placental plasminogen activator inhibitor|plasminogen activator inhibitor 2|plasminogen activator inhibitor, type II (arginine-serpin)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 2|serpin B2|urokinase inhibitor 20121230 -9606 5058 PAK1 - PAKalpha HGNC:8590|MIM:602590|Ensembl:ENSG00000149269|HPRD:03995|Vega:OTTHUMG00000165138 11 11q13-q14 p21 protein (Cdc42/Rac)-activated kinase 1 protein-coding PAK1 p21 protein (Cdc42/Rac)-activated kinase 1 O STE20 homolog, yeast|alpha-PAK|p21/Cdc42/Rac1-activated kinase 1 (STE20 homolog, yeast)|p21/Cdc42/Rac1-activated kinase 1 (yeast Ste20-related)|p65-PAK|serine/threonine-protein kinase PAK 1 20121230 -9606 5062 PAK2 - PAK65|PAKgamma HGNC:8591|MIM:605022|Ensembl:ENSG00000180370|HPRD:05428|Vega:OTTHUMG00000155534 3 3q29 p21 protein (Cdc42/Rac)-activated kinase 2 protein-coding PAK2 p21 protein (Cdc42/Rac)-activated kinase 2 O PAK-2|S6/H4 kinase|gamma-PAK|p21 (CDKN1A)-activated kinase 2|p21-activated kinase 2|p58|serine/threonine-protein kinase PAK 2 20121230 -9606 5063 PAK3 RP5-914P14.3 CDKN1A|MRX30|MRX47|OPHN3|PAK3beta|bPAK|hPAK3 HGNC:8592|MIM:300142|Ensembl:ENSG00000077264|HPRD:02142|Vega:OTTHUMG00000022202 X Xq23 p21 protein (Cdc42/Rac)-activated kinase 3 protein-coding PAK3 p21 protein (Cdc42/Rac)-activated kinase 3 O PAK-3|beta-PAK|oligophrenin-3|p21 (CDKN1A)-activated kinase 3|p21-activated kinase 3|serine/threonine-protein kinase PAK 3 20121230 -9606 5064 PALM - - HGNC:8594|MIM:608134|Ensembl:ENSG00000099864|HPRD:09734|Vega:OTTHUMG00000181785 19 19p13.3 paralemmin protein-coding PALM paralemmin O paralemmin-1 20121230 -9606 5066 PAM - PAL|PHM HGNC:8596|MIM:170270|Ensembl:ENSG00000145730|HPRD:01361|Vega:OTTHUMG00000128729 5 5q14-q21 peptidylglycine alpha-amidating monooxygenase protein-coding PAM peptidylglycine alpha-amidating monooxygenase O pancreatic peptidylglycine alpha-amidating monooxygenase|peptidyl alpha-amidating enzyme|peptidyl-alpha-hydroxyglycine alpha-amidating lyase|peptidyl-glycine alpha-amidating monooxygenase|peptidylamidoglycolate lyase|peptidylglycine 2-hydroxylase|peptidylglycine alpha-hydroxylating monooxygenase 20121230 -9606 5067 CNTN3 - BIG-1|PANG|PCS HGNC:2173|MIM:601325|Ensembl:ENSG00000113805|Vega:OTTHUMG00000158813 3 3p12.3 contactin 3 (plasmacytoma associated) protein-coding CNTN3 contactin 3 (plasmacytoma associated) O brain-derived immunoglobulin superfamily protein 1|contactin-3|plasmacytoma-associated neuronal glycoprotein 20121230 -9606 5068 REG3A - HIP|INGAP|PAP|PAP-H|PAP1|PBCGF|REG-III|REG3 HGNC:8601|MIM:167805|Ensembl:ENSG00000172016|HPRD:01342|Vega:OTTHUMG00000130017 2 2p12 regenerating islet-derived 3 alpha protein-coding REG3A regenerating islet-derived 3 alpha O PAP homologous protein|REG-3-alpha|hepatocarcinoma-intestine-pancreas|human proislet peptide|pancreatic beta cell growth factor|pancreatitis-associated protein 1|proliferation-inducing protein 34|proliferation-inducing protein 42|reg III-alpha|regenerating islet-derived protein 3-alpha|regenerating islet-derived protein III-alpha 20121230 -9606 5069 PAPPA RP11-45A16.1 ASBABP2|DIPLA1|IGFBP-4ase|PAPA|PAPP-A|PAPPA1 HGNC:8602|MIM:176385|Ensembl:ENSG00000182752|HPRD:01448|Vega:OTTHUMG00000021045 9 9q33.2 pregnancy-associated plasma protein A, pappalysin 1 protein-coding PAPPA pregnancy-associated plasma protein A, pappalysin 1 O IGF-dependent IGFBP-4 protease|aspecific BCL2 ARE-binding protein 2|differentially placenta 1 expressed protein|insulin-like growth factor-dependent IGF binding protein-4 protease|insulin-like growth factor-dependent IGF-binding protein 4 protease|pappalysin-1|pregnacy-associated plasma protein A 20121230 -9606 5071 PARK2 KB-152G3.1 AR-JP|LPRS2|PDJ|PRKN HGNC:8607|MIM:602544|Ensembl:ENSG00000185345|HPRD:03967|Vega:OTTHUMG00000015970 6 6q25.2-q27 parkinson protein 2, E3 ubiquitin protein ligase (parkin) protein-coding PARK2 parkinson protein 2, E3 ubiquitin protein ligase (parkin) O E3 ubiquitin-protein ligase parkin|Parkinson disease (autosomal recessive, juvenile) 2, parkin|parkinson juvenile disease protein 2 20121230 -9606 5072 PARK3 - - HGNC:8608|MIM:602404 2 2p13 Parkinson disease 3 (autosomal dominant, Lewy body) unknown PARK3 Parkinson disease 3 (autosomal dominant, Lewy body) O - 20120622 -9606 5073 PARN - DAN HGNC:8609|MIM:604212|Ensembl:ENSG00000140694|HPRD:07250|Vega:OTTHUMG00000173199 16 16p13 poly(A)-specific ribonuclease protein-coding PARN poly(A)-specific ribonuclease O deadenylating nuclease|deadenylation nuclease|poly(A)-specific ribonuclease (deadenylation nuclease)|poly(A)-specific ribonuclease PARN|polyadenylate-specific ribonuclease 20121230 -9606 5074 PAWR - PAR4|Par-4 HGNC:8614|MIM:601936|Ensembl:ENSG00000177425|HPRD:09051|Vega:OTTHUMG00000170080 12 12q21 PRKC, apoptosis, WT1, regulator protein-coding PAWR PRKC, apoptosis, WT1, regulator O PRKC apoptosis WT1 regulator protein|WT1-interacting protein|prostate apoptosis response 4 protein|prostate apoptosis response protein 4|prostate apoptosis response protein PAR-4|transcriptional repressor PAR4 20121230 -9606 5075 PAX1 RP5-1065O2.3 HUP48 HGNC:8615|MIM:167411|Ensembl:ENSG00000125813|HPRD:01332|Vega:OTTHUMG00000032034 20 20p11.2 paired box 1 protein-coding PAX1 paired box 1 O paired box gene 1|paired box protein Pax-1|paired domain gene HuP48 20121230 -9606 5076 PAX2 RP11-179B2.1 - HGNC:8616|MIM:167409|Ensembl:ENSG00000075891|HPRD:01330|Vega:OTTHUMG00000018913 10 10q24 paired box 2 protein-coding PAX2 paired box 2 O paired box homeotic gene 2|paired box protein Pax-2 20121230 -9606 5077 PAX3 - CDHS|HUP2|WS1|WS3 HGNC:8617|MIM:606597|Ensembl:ENSG00000135903|HPRD:09421|Vega:OTTHUMG00000133157 2 2q35 paired box 3 protein-coding PAX3 paired box 3 O paired box homeotic gene 3|paired box protein Pax-3|paired domain gene 3|paired domain gene HuP2 20121230 -9606 5078 PAX4 - KPD|MODY9 HGNC:8618|MIM:167413|Ensembl:ENSG00000106331|HPRD:01333|Vega:OTTHUMG00000157562 7 7q32 paired box 4 protein-coding PAX4 paired box 4 O paired box gene 4|paired box protein Pax-4|paired domain gene 4 20121230 -9606 5079 PAX5 - BSAP HGNC:8619|MIM:167414|Ensembl:ENSG00000196092|HPRD:01334|Vega:OTTHUMG00000019907 9 9p13 paired box 5 protein-coding PAX5 paired box 5 O B cell specific activator protein|B-cell lineage specific activator|B-cell-specific transcription factor|paired box homeotic gene 5|paired box protein Pax-5|transcription factor PAX 5 20121230 -9606 5080 PAX6 - AN|AN2|D11S812E|MGDA|WAGR HGNC:8620|MIM:607108|Ensembl:ENSG00000007372|HPRD:06167|Vega:OTTHUMG00000041447 11 11p13 paired box 6 protein-coding PAX6 paired box 6 O aniridia type II protein|oculorhombin|paired box homeotic gene-6|paired box protein Pax-6 20121230 -9606 5081 PAX7 - HUP1|PAX7B|RMS2 HGNC:8621|MIM:167410|Ensembl:ENSG00000009709|HPRD:01331|Vega:OTTHUMG00000002433 1 1p36.13 paired box 7 protein-coding PAX7 paired box 7 O PAX7 transcriptional factor|paired box homeotic gene 7|paired box protein Pax-7|paired domain gene 7 20121230 -9606 5082 PDCL RP11-465F21.2 PhLP HGNC:8770|MIM:604421|Ensembl:ENSG00000136940|HPRD:05108|Vega:OTTHUMG00000020624 9 9q12-q13 phosducin-like protein-coding PDCL phosducin-like O phosducin-like protein 20121230 -9606 5083 PAX9 - STHAG3 HGNC:8623|MIM:167416|Ensembl:ENSG00000198807|HPRD:01336|Vega:OTTHUMG00000140251 14 14q13.3 paired box 9 protein-coding PAX9 paired box 9 O paired box protein Pax-9|paired domain gene 9 20121230 -9606 5084 PBG1 - - HGNC:8627 - - pancreatic beta cell glycoprotein 1 protein-coding PBG1 pancreatic beta cell glycoprotein 1 O - 20080828 -9606 5087 PBX1 - - HGNC:8632|MIM:176310|Ensembl:ENSG00000185630|HPRD:08889|Vega:OTTHUMG00000034307 1 1q23 pre-B-cell leukemia homeobox 1 protein-coding PBX1 pre-B-cell leukemia homeobox 1 O homeobox protein PBX1|homeobox protein PRL|pre-B-cell leukemia transcription factor 1 20121230 -9606 5088 PBX2P1 - PBX2|PBXP1 HGNC:8635 3 3q24 pre-B-cell leukemia homeobox 2 pseudogene 1 pseudo PBX2P1 pre-B-cell leukemia homeobox 2 pseudogene 1 O - 20121230 -9606 5089 PBX2 DAAP-218M18.5 G17|HOX12|PBX2MHC HGNC:8633|MIM:176311|Ensembl:ENSG00000204304|HPRD:08890|Vega:OTTHUMG00000031116 6 6p21.3 pre-B-cell leukemia homeobox 2 protein-coding PBX2 pre-B-cell leukemia homeobox 2 O homeobox 12|homeobox protein PBX2|pre-B-cell leukemia transcription factor 2 20121230 -9606 5090 PBX3 RP11-336P12.1 - HGNC:8634|MIM:176312|Ensembl:ENSG00000167081|HPRD:15938|Vega:OTTHUMG00000020684 9 9q33.3 pre-B-cell leukemia homeobox 3 protein-coding PBX3 pre-B-cell leukemia homeobox 3 O homeobox protein PBX3|pre-B-cell leukemia transcription factor 3 20121230 -9606 5091 PC - PCB HGNC:8636|MIM:608786|Ensembl:ENSG00000173599|HPRD:02032|Vega:OTTHUMG00000167099 11 11q13.4-q13.5 pyruvate carboxylase protein-coding PC pyruvate carboxylase O pyruvate carboxylase, mitochondrial|pyruvic carboxylase 20121230 -9606 5092 PCBD1 - DCOH|PCBD|PCD|PHS HGNC:8646|MIM:126090|Ensembl:ENSG00000166228|HPRD:00523|Vega:OTTHUMG00000018417 10 10q22 pterin-4 alpha-carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha protein-coding PCBD1 pterin-4 alpha-carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha O 4-alpha-hydroxy-tetrahydropterin dehydratase|6-pyruvoyl-tetrahydropterin synthase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1)|dimerization cofactor of HNF1|dimerizing cofactor for HNF1|phenylalanine hydroxylase-stimulating protein|pterin-4-alpha-carbinolamine dehydratase 20121230 -9606 5093 PCBP1 - HNRPE1|HNRPX|hnRNP-E1|hnRNP-X HGNC:8647|MIM:601209|Ensembl:ENSG00000169564|HPRD:03128|Vega:OTTHUMG00000129645 2 2p13-p12 poly(rC) binding protein 1 protein-coding PCBP1 poly(rC) binding protein 1 O alpha-CP1|heterogeneous nuclear ribonucleoprotein E1|heterogenous nuclear ribonucleoprotein E1|heterogenous nuclear ribonucleoprotein X|nucleic acid-binding protein SUB2.3|poly(rC)-binding protein 1 20121230 -9606 5094 PCBP2 - HNRPE2|hnRNP-E2 HGNC:8648|MIM:601210|Ensembl:ENSG00000197111|HPRD:03129|Vega:OTTHUMG00000169439 12 12q13.12-q13.13 poly(rC) binding protein 2 protein-coding PCBP2 poly(rC) binding protein 2 O alpha-CP2|heterogeneous nuclear ribonucleoprotein E2|heterogenous nuclear ribonucleoprotein E2|hnRNP E2|poly(rC)-binding protein 2 20121230 -9606 5095 PCCA RP11-151A6.1 - HGNC:8653|MIM:232000|Ensembl:ENSG00000175198|HPRD:01981|Vega:OTTHUMG00000017284 13 13q32 propionyl CoA carboxylase, alpha polypeptide protein-coding PCCA propionyl CoA carboxylase, alpha polypeptide O PCCase alpha subunit|pccA complementation group|propanoyl-CoA:carbon dioxide ligase alpha subunit|propionyl Coenzyme A carboxylase, alpha polypeptide|propionyl-CoA carboxylase alpha chain, mitochondrial 20121230 -9606 5096 PCCB - - HGNC:8654|MIM:232050|Ensembl:ENSG00000114054|HPRD:01982|Vega:OTTHUMG00000159792 3 3q21-q22 propionyl CoA carboxylase, beta polypeptide protein-coding PCCB propionyl CoA carboxylase, beta polypeptide O PCCase subunit beta|propanoyl-CoA:carbon dioxide ligase subunit beta|propionyl Coenzyme A carboxylase, beta polypeptide|propionyl-CoA carboxylase beta chain, mitochondrial 20121230 -9606 5097 PCDH1 - PC42|PCDH42 HGNC:8655|MIM:603626|Ensembl:ENSG00000156453|HPRD:04692|Vega:OTTHUMG00000129661 5 5q31.3 protocadherin 1 protein-coding PCDH1 protocadherin 1 O cadherin-like 1|cadherin-like protein 1|protocadherin 42|protocadherin-1|protocadherin-42 20121230 -9606 5098 PCDHGC3 - PC43|PCDH-GAMMA-C3|PCDH2 HGNC:8716|MIM:603627|Ensembl:ENSG00000240184|HPRD:04693|Vega:OTTHUMG00000129613 5 5q31 protocadherin gamma subfamily C, 3 protein-coding PCDHGC3 protocadherin gamma subfamily C, 3 O cadherin-like 2|protocadherin 2|protocadherin 43|protocadherin gamma-C3|protocadherin-2|protocadherin-43 20121230 -9606 5099 PCDH7 - BH-Pcdh|BHPCDH HGNC:8659|MIM:602988|Ensembl:ENSG00000169851|HPRD:04288|Vega:OTTHUMG00000160364 4 4p15 protocadherin 7 protein-coding PCDH7 protocadherin 7 O BH-protocadherin (brain-heart)|brain-heart protocadherin|protocadherin-7 20121230 -9606 5100 PCDH8 - ARCADLIN|PAPC HGNC:8660|MIM:603580|Ensembl:ENSG00000136099|HPRD:04660|Vega:OTTHUMG00000016979 13 13q21.1 protocadherin 8 protein-coding PCDH8 protocadherin 8 O protocadherin-8 20121230 -9606 5101 PCDH9 RP11-335P18.3 - HGNC:8661|MIM:603581|Ensembl:ENSG00000184226|HPRD:04661|Vega:OTTHUMG00000017040 13 13q21.32 protocadherin 9 protein-coding PCDH9 protocadherin 9 O cadherin superfamily protein VR4-11|protocadherin-9 20121230 -9606 5104 SERPINA5 - PAI-3|PAI3|PCI|PCI-B|PLANH3|PROCI HGNC:8723|MIM:601841|Ensembl:ENSG00000188488|HPRD:03503|Vega:OTTHUMG00000170860 14 14q32.1 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5 protein-coding SERPINA5 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5 O acrosomal serine protease inhibitor|plasma serine protease inhibitor|plasminogen activator inhibitor III|plasminogen activator inhibitor-3|protein C inhibitor|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5|serpin A5 20121230 -9606 5105 PCK1 - PEPCK-C|PEPCK1|PEPCKC HGNC:8724|MIM:614168|Ensembl:ENSG00000124253|HPRD:02028|Vega:OTTHUMG00000032825 20 20q13.31 phosphoenolpyruvate carboxykinase 1 (soluble) protein-coding PCK1 phosphoenolpyruvate carboxykinase 1 (soluble) O PEP carboxykinase|phosphoenolpyruvate carboxykinase, cytosolic|phosphoenolpyruvate carboxykinase, cytosolic [GTP]|phosphoenolpyruvate carboxylase|phosphopyruvate carboxylase 20121230 -9606 5106 PCK2 - PEPCK|PEPCK-M|PEPCK2 HGNC:8725|MIM:614095|Ensembl:ENSG00000100889|HPRD:02026|Vega:OTTHUMG00000028791 14 14q11.2 phosphoenolpyruvate carboxykinase 2 (mitochondrial) protein-coding PCK2 phosphoenolpyruvate carboxykinase 2 (mitochondrial) O PEP carboxykinase|phosphoenolpyruvate carboxykinase [GTP], mitochondrial|phosphoenolpyruvate carboxylase|phosphopyruvate carboxylase 20121230 -9606 5108 PCM1 - PTC4 HGNC:8727|MIM:600299|Ensembl:ENSG00000078674|HPRD:02624|Vega:OTTHUMG00000163699 8 8p22-p21.3 pericentriolar material 1 protein-coding PCM1 pericentriolar material 1 O PCM-1|hPCM-1|pericentriolar material 1 protein|pericentriolar material 1, PCM1 20121230 -9606 5110 PCMT1 - PIMT HGNC:8728|MIM:176851|Ensembl:ENSG00000120265|HPRD:08908|Vega:OTTHUMG00000015794 6 6q24-q25 protein-L-isoaspartate (D-aspartate) O-methyltransferase protein-coding PCMT1 protein-L-isoaspartate (D-aspartate) O-methyltransferase O L-isoaspartyl protein carboxyl methyltransferase|protein L-isoaspartyl/D-aspartyl methyltransferase|protein-L-isoaspartate(D-aspartate) O-methyltransferase|protein-beta-aspartate methyltransferase 20121230 -9606 5111 PCNA - - HGNC:8729|MIM:176740|Ensembl:ENSG00000132646|HPRD:01456|Vega:OTTHUMG00000031798 20 20pter-p12 proliferating cell nuclear antigen protein-coding PCNA proliferating cell nuclear antigen O DNA polymerase delta auxiliary protein|cyclin 20121230 -9606 5116 PCNT - KEN|MOPD2|PCN|PCNT2|PCNTB|PCTN2|SCKL4 HGNC:16068|MIM:605925|Ensembl:ENSG00000160299|HPRD:05804|Vega:OTTHUMG00000090665 21 21q22.3 pericentrin protein-coding PCNT pericentrin O kendrin|pericentrin B|pericentrin-2|pericentrin-380|pericentrin-B 20121230 -9606 5118 PCOLCE - PCPE|PCPE-1|PCPE1 HGNC:8738|MIM:600270|Ensembl:ENSG00000106333|HPRD:02603|Vega:OTTHUMG00000156675 7 7q22 procollagen C-endopeptidase enhancer protein-coding PCOLCE procollagen C-endopeptidase enhancer O procollagen C-endopeptidase enhancer 1|procollagen C-proteinase enhancer 1|procollagen COOH-terminal proteinase enhancer 1|procollagen, type 1, COOH-terminal proteinase enhancer|type 1 procollagen C-proteinase enhancer protein|type I procollagen COOH-terminal proteinase enhancer 20121230 -9606 5119 CHMP1A - CHMP1|PCH8|PCOLN3|PRSM1|VPS46-1|VPS46A HGNC:8740|MIM:164010|Ensembl:ENSG00000131165|HPRD:01237|Vega:OTTHUMG00000169521 16 16q24.3 charged multivesicular body protein 1A protein-coding CHMP1A charged multivesicular body protein 1A O charged multivesicular body protein 1/chromatin modifying protein 1|charged multivesicular body protein 1a|chromatin modifying protein 1A|procollagen (type III) N-endopeptidase|protease, metallo, 1, 33kD|vacuolar protein sorting-associated protein 46-1 20121230 -9606 5120 PCOS1 - PCO|PCO1 HGNC:8741|MIM:184700 19 19p13.2 polycystic ovary syndrome 1 unknown PCOS1 polycystic ovary syndrome 1 O - 20120715 -9606 5121 PCP4 - PEP-19 HGNC:8742|MIM:601629|Ensembl:ENSG00000183036|HPRD:03378|Vega:OTTHUMG00000086731 21 21q22.2 Purkinje cell protein 4 protein-coding PCP4 Purkinje cell protein 4 O brain specific polypeptide PEP19|brain-specific antigen PCP-4|brain-specific polypeptide PEP-19 20121230 -9606 5122 PCSK1 - BMIQ12|NEC1|PC1|PC3|SPC3 HGNC:8743|MIM:162150|Ensembl:ENSG00000175426|HPRD:01201|Vega:OTTHUMG00000122089 5 5q15-q21 proprotein convertase subtilisin/kexin type 1 protein-coding PCSK1 proprotein convertase subtilisin/kexin type 1 O NEC 1|neuroendocrine convertase 1|prohormone convertase 1|prohormone convertase 3 20121230 -9606 5125 PCSK5 RP11-422N19.4 PC5|PC6|PC6A|SPC6 HGNC:8747|MIM:600488|Ensembl:ENSG00000099139|HPRD:08985|Vega:OTTHUMG00000020039 9 9q21.3 proprotein convertase subtilisin/kexin type 5 protein-coding PCSK5 proprotein convertase subtilisin/kexin type 5 O hPC6|prohormone convertase 5|proprotein convertase 6|protease PC6|subtilisin/kexin-like protease PC5 20121230 -9606 5126 PCSK2 - NEC 2|NEC-2|NEC2|PC2|SPC2 HGNC:8744|MIM:162151|Ensembl:ENSG00000125851|HPRD:01202|Vega:OTTHUMG00000031941 20 20p11.2 proprotein convertase subtilisin/kexin type 2 protein-coding PCSK2 proprotein convertase subtilisin/kexin type 2 O KEX2-like endoprotease 2|neuroendocrine convertase 2|prohormone convertase 2 20121230 -9606 5127 CDK16 - PCTAIRE|PCTAIRE1|PCTGAIRE|PCTK1 HGNC:8749|MIM:311550|Ensembl:ENSG00000102225|HPRD:02409|Vega:OTTHUMG00000021438 X Xp11 cyclin-dependent kinase 16 protein-coding CDK16 cyclin-dependent kinase 16 O PCTAIRE-motif protein kinase 1|cell division protein kinase 16|serine/threonine-protein kinase PCTAIRE-1 20121230 -9606 5128 CDK17 - PCTAIRE2|PCTK2 HGNC:8750|MIM:603440|Ensembl:ENSG00000059758|HPRD:09141|Vega:OTTHUMG00000170375 12 12q23.1 cyclin-dependent kinase 17 protein-coding CDK17 cyclin-dependent kinase 17 O PCTAIRE-motif protein kinase 2|cell division protein kinase 17|protein kinase cdc2-related PCTAIRE-2|serine/threonine-protein kinase PCTAIRE-2 20121230 -9606 5129 CDK18 RP11-288G13.1 PCTAIRE|PCTAIRE3|PCTK3 HGNC:8751|MIM:169190|Ensembl:ENSG00000117266|HPRD:01354|Vega:OTTHUMG00000037203 1 1q31-q32 cyclin-dependent kinase 18 protein-coding CDK18 cyclin-dependent kinase 18 O PCTAIRE protein kinase 3|PCTAIRE-motif protein kinase 3|cell division protein kinase 18|serine/threonine-protein kinase PCTAIRE-3 20121230 -9606 5130 PCYT1A - CCTA|CT|CTA|CTPCT|PCYT1 HGNC:8754|MIM:123695|Ensembl:ENSG00000161217|HPRD:00438|Vega:OTTHUMG00000155670 3 3q29 phosphate cytidylyltransferase 1, choline, alpha protein-coding PCYT1A phosphate cytidylyltransferase 1, choline, alpha O CCT A|CCT-alpha|CT A|CTP:phosphocholine cytidylyltransferase A|choline-phosphate cytidylyltransferase A|phosphorylcholine transferase A 20121230 -9606 5131 PDB1 - PDB HGNC:8757|MIM:167250 6 6p21.3 Paget disease of bone 1 unknown PDB1 Paget disease of bone 1 O - 20110714 -9606 5132 PDC - MEKA|PHD|PhLOP|PhLP HGNC:8759|MIM:171490|Ensembl:ENSG00000116703|HPRD:01373|Vega:OTTHUMG00000035575 1 1q25.2 phosducin protein-coding PDC phosducin O 33 kDa phototransducing protein|G beta gamma binding protein|phosducin-like orphan protein 20121230 -9606 5133 PDCD1 - CD279|PD-1|PD1|SLEB2|hPD-1|hPD-l HGNC:8760|MIM:600244|Ensembl:ENSG00000188389|HPRD:02590|Vega:OTTHUMG00000151342 2 2q37.3 programmed cell death 1 protein-coding PDCD1 programmed cell death 1 O programmed cell death protein 1|protein PD-1 20121230 -9606 5134 PDCD2 RP1-191N21.2 RP8|ZMYND7 HGNC:8762|MIM:600866|Ensembl:ENSG00000071994|HPRD:02922|Vega:OTTHUMG00000016083 6 6q27 programmed cell death 2 protein-coding PDCD2 programmed cell death 2 O programmed cell death protein 2|zinc finger MYND domain-containing protein 7|zinc finger protein Rp-8 20121230 -9606 5136 PDE1A - CAM-PDE-1A|HCAM-1|HCAM1|HSPDE1A HGNC:8774|MIM:171890|Ensembl:ENSG00000115252|HPRD:01387|Vega:OTTHUMG00000132596 2 2q32.1 phosphodiesterase 1A, calmodulin-dependent protein-coding PDE1A phosphodiesterase 1A, calmodulin-dependent O 61 kDa Cam-PDE|calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase 1A|calcium/calmodulin-stimulated cyclic nucleotide phosphodiesterase|cam-PDE 1A 20121230 -9606 5137 PDE1C - Hcam3 HGNC:8776|MIM:602987|Ensembl:ENSG00000154678|HPRD:04287|Vega:OTTHUMG00000023836 7 7p14.3 phosphodiesterase 1C, calmodulin-dependent 70kDa protein-coding PDE1C phosphodiesterase 1C, calmodulin-dependent 70kDa O Human 3',5' cyclic nucleotide phosphodiesterase (HSPDE1C1A)|calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase 1C|cam-PDE 1C|hCam-3 20121230 -9606 5138 PDE2A - CGS-PDE|PDE2A1|PED2A4|cGSPDE HGNC:8777|MIM:602658|Ensembl:ENSG00000186642|HPRD:04041|Vega:OTTHUMG00000102045 11 11q13.4 phosphodiesterase 2A, cGMP-stimulated protein-coding PDE2A phosphodiesterase 2A, cGMP-stimulated O cGMP-dependent 3',5'-cyclic phosphodiesterase|cGMP-stimulated phosphodiesterase 1|cGMP-stimulated phosphodiesterase 4|cyclic GMP-stimulated phosphodiesterase 20121230 -9606 5139 PDE3A - CGI-PDE|CGI-PDE A|CGI-PDE-A HGNC:8778|MIM:123805|Ensembl:ENSG00000172572|HPRD:00441|Vega:OTTHUMG00000168962 12 12p12 phosphodiesterase 3A, cGMP-inhibited protein-coding PDE3A phosphodiesterase 3A, cGMP-inhibited O cAMP phosphodiesterase, myocardial cGMP-inhibited|cGMP-inhibited 3',5'-cyclic phosphodiesterase A|cyclic GMP-inhibited phosphodiesterase A 20121230 -9606 5140 PDE3B - HcGIP1|cGIPDE1 HGNC:8779|MIM:602047|Ensembl:ENSG00000152270|HPRD:03626|Vega:OTTHUMG00000165898 11 11p15.1 phosphodiesterase 3B, cGMP-inhibited protein-coding PDE3B phosphodiesterase 3B, cGMP-inhibited O CGI-PDE B|CGIP1|cGMP-inhibited 3',5'-cyclic phosphodiesterase B|cyclic GMP-inhibited phosphodiesterase B|cyclic nucleotide phosphodiesterase 20121230 -9606 5141 PDE4A - DPDE2|PDE4|PDE46 HGNC:8780|MIM:600126|Ensembl:ENSG00000065989|HPRD:02527|Vega:OTTHUMG00000180411 19 19p13.2 phosphodiesterase 4A, cAMP-specific protein-coding PDE4A phosphodiesterase 4A, cAMP-specific O cAMP-specific 3',5'-cyclic phosphodiesterase 4A|phosphodiesterase 4A, cAMP-specific (dunce|phosphodiesterase E2 dunce homolog, Drosophila|phosphodiesterase isozyme 4 20121230 -9606 5142 PDE4B RP5-876C12.1 DPDE4|PDE4B5|PDEIVB HGNC:8781|MIM:600127|Ensembl:ENSG00000184588|HPRD:02528|Vega:OTTHUMG00000009088 1 1p31 phosphodiesterase 4B, cAMP-specific protein-coding PDE4B phosphodiesterase 4B, cAMP-specific O PDE32|cAMP-specific 3',5'-cyclic phosphodiesterase 4B|cAMP-specific phosphodiesterase-4 B isoform|dunce-like phosphodiesterase E4|phosphodiesterase 4B, cAMP-specific (phosphodiesterase E4 dunce homolog, Drosophila) 20121230 -9606 5143 PDE4C - DPDE1 HGNC:8782|MIM:600128|Ensembl:ENSG00000105650|HPRD:02529 19 19p13.11 phosphodiesterase 4C, cAMP-specific protein-coding PDE4C phosphodiesterase 4C, cAMP-specific O PDE21|cAMP-specific 3',5'-cyclic phosphodiesterase 4C|phosphodiesterase 4C, cAMP-specific (phosphodiesterase E1 dunce homolog, Drosophila)|phosphodiesterase E1 dunce homolog 20121230 -9606 5144 PDE4D - ACRDYS2|DPDE3|HSPDE4D|PDE43|PDE4DN2|STRK1 HGNC:8783|MIM:600129|Ensembl:ENSG00000113448|HPRD:02530|Vega:OTTHUMG00000162218 5 5q12 phosphodiesterase 4D, cAMP-specific protein-coding PDE4D phosphodiesterase 4D, cAMP-specific O cAMP-specific 3',5'-cyclic phosphodiesterase 4D|cAMP-specific phosphodiesterase PDE4D6|phosphodiesterase 4D, cAMP-specific (phosphodiesterase E3 dunce homolog, Drosophila) 20121230 -9606 5145 PDE6A - CGPR-A|PDEA|RP43 HGNC:8785|MIM:180071|Ensembl:ENSG00000132915|HPRD:01570|Vega:OTTHUMG00000130047 5 5q31.2-q34 phosphodiesterase 6A, cGMP-specific, rod, alpha protein-coding PDE6A phosphodiesterase 6A, cGMP-specific, rod, alpha O GMP-PDE alpha|PDE V-B1|cGMP phosphodiesterase alpha subunit|rod cGMP-specific 3',5'-cyclic phosphodiesterase subunit alpha|rod photoreceptor cGMP phosphodiesterase alpha subunit 20121230 -9606 5146 PDE6C - COD4|PDEA2 HGNC:8787|MIM:600827|Ensembl:ENSG00000095464|HPRD:02898|Vega:OTTHUMG00000018775 10 10q24 phosphodiesterase 6C, cGMP-specific, cone, alpha prime protein-coding PDE6C phosphodiesterase 6C, cGMP-specific, cone, alpha prime O cGMP phosphodiesterase 6C|cone cGMP-specific 3',5'-cyclic phosphodiesterase subunit alpha' 20121230 -9606 5147 PDE6D - PDED HGNC:8788|MIM:602676|Ensembl:ENSG00000156973|HPRD:04056|Vega:OTTHUMG00000153785 2 2q35-q36 phosphodiesterase 6D, cGMP-specific, rod, delta protein-coding PDE6D phosphodiesterase 6D, cGMP-specific, rod, delta O GMP-PDE delta|protein p17|retinal rod rhodopsin-sensitive cGMP 3',5'-cyclic phosphodiesterase subunit delta 20121230 -9606 5148 PDE6G - PDEG|RP57 HGNC:8789|MIM:180073|Ensembl:ENSG00000185527|HPRD:08914|Vega:OTTHUMG00000178038 17 17q25 phosphodiesterase 6G, cGMP-specific, rod, gamma protein-coding PDE6G phosphodiesterase 6G, cGMP-specific, rod, gamma O GMP-PDE gamma|retinal rod rhodopsin-sensitive cGMP 3',5'-cyclic phosphodiesterase subunit gamma|rod cG-PDE G 20121230 -9606 5149 PDE6H - ACHM6|RCD3 HGNC:8790|MIM:601190|Ensembl:ENSG00000139053|HPRD:03116|Vega:OTTHUMG00000168743 12 12p13 phosphodiesterase 6H, cGMP-specific, cone, gamma protein-coding PDE6H phosphodiesterase 6H, cGMP-specific, cone, gamma O GMP-PDE gamma|retinal cone rhodopsin-sensitive cGMP 3',5'-cyclic phosphodiesterase subunit gamma 20121230 -9606 5150 PDE7A - HCP1|PDE7 HGNC:8791|MIM:171885|Ensembl:ENSG00000205268|HPRD:01386|Vega:OTTHUMG00000164469 8 8q13 phosphodiesterase 7A protein-coding PDE7A phosphodiesterase 7A O TM22|high affinity cAMP-specific 3',5'-cyclic phosphodiesterase 7A|phosphodiesterase isozyme 7 20121230 -9606 5151 PDE8A - HsT19550 HGNC:8793|MIM:602972|Ensembl:ENSG00000073417|HPRD:09114|Vega:OTTHUMG00000148670 15 15q25.3 phosphodiesterase 8A protein-coding PDE8A phosphodiesterase 8A O cAMP-specific cyclic nucleotide phosphodiesterase 8A|high affinity cAMP-specific and IBMX-insensitive 3',5'-cyclic phosphodiesterase 8A 20121230 -9606 5152 PDE9A - HSPDE9A2 HGNC:8795|MIM:602973|Ensembl:ENSG00000160191|HPRD:09115|Vega:OTTHUMG00000086825 21 21q22.3 phosphodiesterase 9A protein-coding PDE9A phosphodiesterase 9A O CGMP-specific 3',5'-cyclic phosphodiesterase type 9|high affinity cGMP-specific 3',5'-cyclic phosphodiesterase 9A|phosphodiesterase PDE9A21 20121230 -9606 5153 PDE1B - PDE1B1|PDES1B HGNC:8775|MIM:171891|Ensembl:ENSG00000123360|HPRD:01388|Vega:OTTHUMG00000169844 12 12q13 phosphodiesterase 1B, calmodulin-dependent protein-coding PDE1B phosphodiesterase 1B, calmodulin-dependent O 63 kDa Cam-PDE|calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase 1B|calcium/calmodulin-stimulated cyclic nucleotide phosphodiesterase|calmodulin-stimulated phosphodiesterase PDE1B1|cam-PDE 1B|presumed 63kDa form of the type 1 cyclic nucleotide phosphodiesterase family known as PDE1B 20121230 -9606 5154 PDGFA - PDGF-A|PDGF1 HGNC:8799|MIM:173430|Ensembl:ENSG00000197461|HPRD:01424|Vega:OTTHUMG00000151412 7 7p22 platelet-derived growth factor alpha polypeptide protein-coding PDGFA platelet-derived growth factor alpha polypeptide O PDGF A-chain|PDGF subunit A|PDGF-1|platelet-derived growth factor A chain|platelet-derived growth factor alpha chain|platelet-derived growth factor alpha isoform 2 preproprotein|platelet-derived growth factor subunit A 20121230 -9606 5155 PDGFB LL22NC03-10C3.2 PDGF2|SIS|SSV|c-sis HGNC:8800|MIM:190040|Ensembl:ENSG00000100311|HPRD:01815|Vega:OTTHUMG00000151029 22 22q13.1 platelet-derived growth factor beta polypeptide protein-coding PDGFB platelet-derived growth factor beta polypeptide O PDGF subunit B|PDGF, B chain|PDGF-2|Platelet-derived growth factor, beta polypeptide (oncogene SIS)|becaplermin|platelet-derived growth factor 2|platelet-derived growth factor B chain|platelet-derived growth factor beta polypeptide (simian sarcoma viral (v-sis) oncogene homolog)|platelet-derived growth factor subunit B|platelet-derived growth factor, B chain|proto-oncogene c-Sis 20121230 -9606 5156 PDGFRA - CD140A|PDGFR-2|PDGFR2|RHEPDGFRA HGNC:8803|MIM:173490|Ensembl:ENSG00000134853|HPRD:01429|Vega:OTTHUMG00000128699 4 4q12 platelet-derived growth factor receptor, alpha polypeptide protein-coding PDGFRA platelet-derived growth factor receptor, alpha polypeptide O CD140 antigen-like family member A|CD140a antigen|PDGF-R-alpha|PDGFR-alpha|PDGFRA/BCR fusion|alpha-type platelet-derived growth factor receptor|platelet-derived growth factor receptor 2|platelet-derived growth factor receptor alpha|rearranged-in-hypereosinophilia-platelet derived growth factor receptor alpha fusion protein 20121230 -9606 5157 PDGFRL - PDGRL|PRLTS HGNC:8805|MIM:604584|Ensembl:ENSG00000104213|HPRD:05206|Vega:OTTHUMG00000130818 8 8p22-p21.3 platelet-derived growth factor receptor-like protein-coding PDGFRL platelet-derived growth factor receptor-like O PDGF receptor beta-like tumor suppressor|PDGFR-like protein|platelet-derived growth factor receptor-like protein|platelet-derived growth factor-beta-like tumor suppressor 20121230 -9606 5158 PDE6B - CSNB3|CSNBAD2|PDEB|RP40|rd1 HGNC:8786|MIM:180072|Ensembl:ENSG00000133256|HPRD:01571|Vega:OTTHUMG00000159909 4 4p16.3 phosphodiesterase 6B, cGMP-specific, rod, beta protein-coding PDE6B phosphodiesterase 6B, cGMP-specific, rod, beta O GMP-PDE beta|rod cGMP-phosphodiesterase beta-subunit|rod cGMP-specific 3',5'-cyclic phosphodiesterase subunit beta 20121230 -9606 5159 PDGFRB - CD140B|JTK12|PDGFR|PDGFR-1|PDGFR1 HGNC:8804|MIM:173410|Ensembl:ENSG00000113721|HPRD:01423|Vega:OTTHUMG00000130053 5 5q33.1 platelet-derived growth factor receptor, beta polypeptide protein-coding PDGFRB platelet-derived growth factor receptor, beta polypeptide O CD140 antigen-like family member B|PDGF-R-beta|PDGFR-beta|beta-type platelet-derived growth factor receptor|platelet-derived growth factor receptor 1|platelet-derived growth factor receptor beta 20121230 -9606 5160 PDHA1 RP11-723P2.1 PDHA|PDHCE1A|PHE1A HGNC:8806|MIM:300502|Ensembl:ENSG00000131828|HPRD:02420|Vega:OTTHUMG00000021224 X Xp22.1 pyruvate dehydrogenase (lipoamide) alpha 1 protein-coding PDHA1 pyruvate dehydrogenase (lipoamide) alpha 1 O PDHE1-A type I|pyruvate dehydrogenase E1 component subunit alpha, somatic form, mitochondrial|pyruvate dehydrogenase complex, E1-alpha polypeptide 1 20121230 -9606 5161 PDHA2 hCG_1643458 PDHAL HGNC:8807|MIM:179061|Ensembl:ENSG00000163114|HPRD:01531|Vega:OTTHUMG00000130990 4 4q22-q23 pyruvate dehydrogenase (lipoamide) alpha 2 protein-coding PDHA2 pyruvate dehydrogenase (lipoamide) alpha 2 O PDHE1-A type II|pyruvate dehydrogenase E1 component subunit alpha, testis-specific form, mitochondrial|pyruvate dehydrogenase, E1-alpha polypeptide, testis specific 20121230 -9606 5162 PDHB - PDHBD|PDHE1-B|PHE1B HGNC:8808|MIM:179060|Ensembl:ENSG00000168291|HPRD:01530|Vega:OTTHUMG00000159157 3 3p21.1-p14.2 pyruvate dehydrogenase (lipoamide) beta protein-coding PDHB pyruvate dehydrogenase (lipoamide) beta O pyruvate dehydrogenase E1 component subunit beta, mitochondrial|pyruvate dehydrogenase, E1 beta polypeptide 20121230 -9606 5163 PDK1 - - HGNC:8809|MIM:602524|Ensembl:ENSG00000152256|HPRD:03954|Vega:OTTHUMG00000132285 2 2q31.1 pyruvate dehydrogenase kinase, isozyme 1 protein-coding PDK1 pyruvate dehydrogenase kinase, isozyme 1 O mitochondrial pyruvate dehydrogenase, lipoamide, kinase isoenzyme 1|pyruvate dehydrogenase kinase, isoenzyme 1 20121230 -9606 5164 PDK2 - PDHK2 HGNC:8810|MIM:602525|Ensembl:ENSG00000005882|HPRD:03955|Vega:OTTHUMG00000161948 17 17q21.33 pyruvate dehydrogenase kinase, isozyme 2 protein-coding PDK2 pyruvate dehydrogenase kinase, isozyme 2 O pyruvate dehydrogenase kinase, isoenzyme 2|pyruvate dehydrogenase, lipoamide, kinase isozyme 2, mitochondrial 20121230 -9606 5165 PDK3 - - HGNC:8811|MIM:602526|Ensembl:ENSG00000067992|HPRD:03956|Vega:OTTHUMG00000021269 X Xp22.11 pyruvate dehydrogenase kinase, isozyme 3 protein-coding PDK3 pyruvate dehydrogenase kinase, isozyme 3 O pyruvate dehydrogenase kinase, isoenzyme 3|pyruvate dehydrogenase, lipoamide, kinase isozyme 3, mitochondrial 20121230 -9606 5166 PDK4 - - HGNC:8812|MIM:602527|Ensembl:ENSG00000004799|HPRD:03957|Vega:OTTHUMG00000153977 7 7q21.3 pyruvate dehydrogenase kinase, isozyme 4 protein-coding PDK4 pyruvate dehydrogenase kinase, isozyme 4 O [Pyruvate dehydrogenase [lipoamide]] kinase isozyme 4, mitochondrial|pyruvate dehydrogenase kinase, isoenzyme 4|pyruvate dehydrogenase, lipoamide, kinase isozyme 4, mitochondrial 20121230 -9606 5167 ENPP1 - ARHR2|M6S1|NPP1|NPPS|PC-1|PCA1|PDNP1 HGNC:3356|MIM:173335|Ensembl:ENSG00000197594|HPRD:01415|Vega:OTTHUMG00000015572 6 6q22-q23 ectonucleotide pyrophosphatase/phosphodiesterase 1 protein-coding ENPP1 ectonucleotide pyrophosphatase/phosphodiesterase 1 O E-NPP 1|Ly-41 antigen|alkaline phosphodiesterase 1|ectonucleotide pyrophosphatase/phosphodiesterase family member 1|membrane component chromosome 6 surface marker 1|membrane component, chromosome 6, surface marker 1|phosphodiesterase I/nucleotide pyrophosphatase 1|plasma-cell membrane glycoprotein 1|plasma-cell membrane glycoprotein PC-1 20121230 -9606 5168 ENPP2 - ATX|ATX-X|AUTOTAXIN|LysoPLD|NPP2|PD-IALPHA|PDNP2 HGNC:3357|MIM:601060|Ensembl:ENSG00000136960|HPRD:03037|Vega:OTTHUMG00000164995 8 8q24.1 ectonucleotide pyrophosphatase/phosphodiesterase 2 protein-coding ENPP2 ectonucleotide pyrophosphatase/phosphodiesterase 2 O E-NPP 2|autotaxin-t|ectonucleotide pyrophosphatase/phosphodiesterase family member 2|extracellular lysophospholipase D|phosphodiesterase I/nucleotide pyrophosphatase 2|plasma lysophospholipase D 20121230 -9606 5169 ENPP3 RP5-988G15.3 B10|CD203c|NPP3|PD-IBETA|PDNP3 HGNC:3358|MIM:602182|Ensembl:ENSG00000154269|HPRD:03715|Vega:OTTHUMG00000016292 6 6q22 ectonucleotide pyrophosphatase/phosphodiesterase 3 protein-coding ENPP3 ectonucleotide pyrophosphatase/phosphodiesterase 3 O E-NPP 3|dJ1005H11.3 (phosphodiesterase I/nucleotide pyrophosphatase 3)|dJ914N13.3 (phosphodiesterase I/nucleotide pyrophosphatase 3)|ectonucleotide pyrophosphatase/phosphodiesterase family member 3|gp130RB13-6|phosphodiesterase I beta|phosphodiesterase I/nucleotide pyrophosphatase 3|phosphodiesterase-I beta 20121230 -9606 5170 PDPK1 - PDK1|PRO0461 HGNC:8816|MIM:605213|Ensembl:ENSG00000140992|HPRD:05556|Vega:OTTHUMG00000128874 16 16p13.3 3-phosphoinositide dependent protein kinase-1 protein-coding PDPK1 3-phosphoinositide dependent protein kinase-1 O 3-phosphoinositide-dependent protein kinase 1|PkB kinase like gene 1|PkB-like 1 20121230 -9606 5171 PDR - - HGNC:8817|MIM:301220 X Xp22-p21 pigment disorder, reticulate unknown PDR pigment disorder, reticulate O - 20120622 -9606 5172 SLC26A4 - DFNB4|EVA|PDS|TDH2B HGNC:8818|MIM:605646|Ensembl:ENSG00000091137|HPRD:05735|Vega:OTTHUMG00000154807 7 7q31 solute carrier family 26, member 4 protein-coding SLC26A4 solute carrier family 26, member 4 O pendrin|sodium-independent chloride/iodide transporter 20121230 -9606 5173 PDYN - ADCA|PENKB|SCA23 HGNC:8820|MIM:131340|Ensembl:ENSG00000101327|HPRD:08838|Vega:OTTHUMG00000031683 20 20p13 prodynorphin protein-coding PDYN prodynorphin O beta-neoendorphin-dynorphin|leu-enkephalin|leumorphin|neoendorphin-dynorphin-enkephalin prepropeptide|preprodynorphin|preproenkephalin B|proenkephalin-B|rimorphin 20121230 -9606 5174 PDZK1 - CAP70|CLAMP|NHERF-3|NHERF3|PDZD1 HGNC:8821|MIM:603831|Ensembl:ENSG00000174827|HPRD:04829|Vega:OTTHUMG00000013735 1 1q21 PDZ domain containing 1 protein-coding PDZK1 PDZ domain containing 1 O CFTR-associated protein of 70 kDa|Na(+)/H(+) exchange regulatory cofactor NHE-RF3|PDZ-containing kidney protein 1|na/Pi cotransporter C-terminal-associated protein 1|naPi-Cap1|sodium-hydrogen exchanger regulatory factor 3 20121230 -9606 5175 PECAM1 - CD31|CD31/EndoCAM|GPIIA'|PECA1|PECAM-1|endoCAM HGNC:8823|MIM:173445|HPRD:01425 17 17q23.3 platelet/endothelial cell adhesion molecule 1 protein-coding PECAM1 platelet/endothelial cell adhesion molecule 1 O CD31 antigen|platelet endothelial cell adhesion molecule 20121230 -9606 5176 SERPINF1 PIG35 EPC-1|OI12|OI6|PEDF HGNC:8824|MIM:172860|Ensembl:ENSG00000132386|HPRD:01408|Vega:OTTHUMG00000090571 17 17p13.3 serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 1 protein-coding SERPINF1 serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 1 O cell proliferation-inducing gene 35 protein|pigment epithelium-derived factor|serine (or cysteine) proteinase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 1|serpin F1 20121230 -9606 5177 PEE1 - PEE|PREG1 HGNC:8825|RGD:1298515|MIM:189800 2 2p13 preeclampsia/eclampsia 1 unknown PEE1 preeclampsia/eclampsia 1 O - 20120809 -9606 5178 PEG3 hCG_1685807 PW1|ZNF904|ZSCAN24 HGNC:8826|MIM:601483|Ensembl:ENSG00000198300|HPRD:03285 19 19q13.4 paternally expressed 3 protein-coding PEG3 paternally expressed 3 O Kruppel-type zinc finger protein|paternally-expressed gene 3 protein|zinc finger and SCAN domain-containing protein 24 20121230 -9606 5179 PENK - - HGNC:8831|MIM:131330|Ensembl:ENSG00000181195|HPRD:08837|Vega:OTTHUMG00000164409 8 8q23-q24 proenkephalin protein-coding PENK proenkephalin O enkephalin A|preproenkephalin|proenkephalin-A 20121230 -9606 5182 PEPB - - HGNC:8838|MIM:169900 12 12q21 peptidase B protein-coding PEPB peptidase B O - 20080828 -9606 5183 PEPC - - HGNC:8839|MIM:170000 1 1q25 peptidase C protein-coding PEPC peptidase C O - 20080828 -9606 5184 PEPD - PROLIDASE HGNC:8840|MIM:613230|Ensembl:ENSG00000124299|HPRD:01358|Vega:OTTHUMG00000180470 19 19q13.11 peptidase D protein-coding PEPD peptidase D O X-Pro dipeptidase|aminoacyl-L-proline hydrolase|imidodipeptidase|proline dipeptidase|xaa-Pro dipeptidase 20121230 -9606 5185 PEPE - - HGNC:8841|MIM:170200 17 17q23-qter peptidase E protein-coding PEPE peptidase E O - 20080828 -9606 5187 PER1 - PER|RIGUI|hPER HGNC:8845|MIM:602260|Ensembl:ENSG00000179094|HPRD:03774|Vega:OTTHUMG00000178317 17 17p13.1 period circadian clock 1 protein-coding PER1 period circadian clock 1 O Period, drosophila, homolog of|circadian clock protein PERIOD 1|circadian pacemaker protein RIGUI|hPER1|period circadian protein homolog 1|period homolog 1 20121230 -9606 5188 PET112 HSPC199 PET112L HGNC:8849|MIM:603645|Ensembl:ENSG00000059691|HPRD:04706|Vega:OTTHUMG00000161672 4 4q31.3 PET112 homolog (yeast) protein-coding PET112 PET112 homolog (yeast) O cytochrome oxidase assembly factor PET112 homolog|glu-ADT subunit B|glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 20121230 -9606 5189 PEX1 tcag7.1018 PBD1A|PBD1B|ZWS|ZWS1 HGNC:8850|MIM:602136|Ensembl:ENSG00000127980|HPRD:03682|Vega:OTTHUMG00000023926 7 7q21.2 peroxisomal biogenesis factor 1 protein-coding PEX1 peroxisomal biogenesis factor 1 O Zellweger syndrome|peroxin-1|peroxisome biogenesis disorder protein 1|peroxisome biogenesis factor 1 20121230 -9606 5190 PEX6 RP1-125M3.3 PAF-2|PAF2|PBD4A|PDB4B|PXAAA1 HGNC:8859|MIM:601498|Ensembl:ENSG00000124587|HPRD:03293|Vega:OTTHUMG00000014713 6 6p21.1 peroxisomal biogenesis factor 6 protein-coding PEX6 peroxisomal biogenesis factor 6 O peroxin-6|peroxisomal AAA-type ATPase 1|peroxisomal-type ATPase 1|peroxisome assembly factor 2|peroxisome biogenesis factor 6 20121230 -9606 5191 PEX7 RP11-55K22.6 PBD9B|PTS2R|RCDP1|RD HGNC:8860|MIM:601757|Ensembl:ENSG00000112357|HPRD:03454|Vega:OTTHUMG00000015650 6 6q23.3 peroxisomal biogenesis factor 7 protein-coding PEX7 peroxisomal biogenesis factor 7 O PTS2 receptor|peroxin-7|peroxisomal PTS2 receptor|peroxisomal targeting signal 2 receptor|peroxisome targeting signal 2 receptor 20121230 -9606 5192 PEX10 - NALD|PBD6A|PBD6B|RNF69 HGNC:8851|MIM:602859|Ensembl:ENSG00000157911|HPRD:04175|Vega:OTTHUMG00000001637 1 1p36.32 peroxisomal biogenesis factor 10 protein-coding PEX10 peroxisomal biogenesis factor 10 O RING finger protein 69|peroxin 10|peroxin-10|peroxisome assembly protein 10|peroxisome biogenesis factor 10 20121230 -9606 5193 PEX12 - PAF-3|PBD3A HGNC:8854|MIM:601758|Ensembl:ENSG00000108733|HPRD:03455|Vega:OTTHUMG00000132951 17 17q12 peroxisomal biogenesis factor 12 protein-coding PEX12 peroxisomal biogenesis factor 12 O peroxin 12|peroxin-12|peroxisome assembly factor 3|peroxisome assembly protein 12 20121230 -9606 5194 PEX13 - NALD|PBD11A|PBD11B|ZWS HGNC:8855|MIM:601789|Ensembl:ENSG00000162928|HPRD:03475|Vega:OTTHUMG00000129422 2 2p16.1 peroxisomal biogenesis factor 13 protein-coding PEX13 peroxisomal biogenesis factor 13 O peroxin-13|peroxisomal membrane protein PEX13|peroxisome biogenesis factor 13 20121230 -9606 5195 PEX14 - NAPP2|PBD13A|Pex14p|dJ734G22.2 HGNC:8856|MIM:601791|Ensembl:ENSG00000142655|HPRD:03477|Vega:OTTHUMG00000001908 1 1p36.22 peroxisomal biogenesis factor 14 protein-coding PEX14 peroxisomal biogenesis factor 14 O NF-E2 associated polypeptide 2|PTS1 receptor docking protein|PTS1 receptor-docking protein|peroxin-14|peroxisomal membrane anchor protein PEX14|peroxisomal membrane anchor protein Pex14p|peroxisomal membrane protein PEX14 20121230 -9606 5196 PF4 - CXCL4|PF-4|SCYB4 HGNC:8861|MIM:173460|Ensembl:ENSG00000163737|HPRD:01426|Vega:OTTHUMG00000130009 4 4q12-q21 platelet factor 4 protein-coding PF4 platelet factor 4 O C-X-C motif chemokine 4|chemokine (C-X-C motif) ligand 4|iroplact|oncostatin-A 20121230 -9606 5197 PF4V1 - CXCL4L1|CXCL4V1|PF4-ALT|PF4A|SCYB4V1 HGNC:8862|MIM:173461|Ensembl:ENSG00000109272|HPRD:01427|Vega:OTTHUMG00000130177 4 4q12-q21 platelet factor 4 variant 1 protein-coding PF4V1 platelet factor 4 variant 1 O C-X-C motif chemokine 4|PF4alt|PF4var1|platelet factor 4 variant|platelet factor 4, variant 1 (PF4-like) 20121230 -9606 5198 PFAS - FGAMS|FGARAT|PURL HGNC:8863|MIM:602133|Ensembl:ENSG00000178921|HPRD:09072|Vega:OTTHUMG00000108188 17 17p13.1 phosphoribosylformylglycinamidine synthase protein-coding PFAS phosphoribosylformylglycinamidine synthase O FGAM synthase|FGAR amidotransferase|formylglycinamide ribotide amidotransferase|formylglycinamide ribotide synthetase 20121230 -9606 5199 CFP - BFD|PFC|PFD|PROPERDIN HGNC:8864|MIM:300383|Ensembl:ENSG00000126759|HPRD:02308|Vega:OTTHUMG00000021451 X Xp11.4 complement factor properdin protein-coding CFP complement factor properdin O complement factor P|properdin|properdin P factor, complement 20121230 -9606 5201 PFDN1 - PDF|PFD1 HGNC:8866|MIM:604897|Ensembl:ENSG00000113068|HPRD:05357|Vega:OTTHUMG00000129249 5 5q31 prefoldin subunit 1 protein-coding PFDN1 prefoldin subunit 1 O prefoldin 1 20121230 -9606 5202 PFDN2 HSPC231 PFD2 HGNC:8867|MIM:613466|Ensembl:ENSG00000143256|HPRD:09658|Vega:OTTHUMG00000031481 1 1q23.3 prefoldin subunit 2 protein-coding PFDN2 prefoldin subunit 2 O prefoldin 2 20121230 -9606 5203 PFDN4 - C1|PFD4 HGNC:8868|MIM:604898|Ensembl:ENSG00000101132|HPRD:05358|Vega:OTTHUMG00000032775 20 20q13.2 prefoldin subunit 4 protein-coding PFDN4 prefoldin subunit 4 O prefoldin 4|protein C-1 20121230 -9606 5204 PFDN5 - MM-1|MM1|PFD5 HGNC:8869|MIM:604899|Ensembl:ENSG00000123349|Vega:OTTHUMG00000169675 12 12q12 prefoldin subunit 5 protein-coding PFDN5 prefoldin subunit 5 O c-myc binding protein|myc modulator-1 20121230 -9606 5205 ATP8B1 - ATPIC|BRIC|FIC1|ICP1|PFIC|PFIC1 HGNC:3706|MIM:602397|Ensembl:ENSG00000081923|HPRD:03867|Vega:OTTHUMG00000180255 18 18q21.31 ATPase, aminophospholipid transporter, class I, type 8B, member 1 protein-coding ATP8B1 ATPase, aminophospholipid transporter, class I, type 8B, member 1 O ATPase, class I, type 8B, member 1|E1-E2 ATPase|familial intrahepatic cholestasis type 1|phospholipid-transporting ATPase IC|probable phospholipid-transporting ATPase IC 20121230 -9606 5207 PFKFB1 - F6PK|HL2K|PFRX HGNC:8872|MIM:311790|Ensembl:ENSG00000158571|HPRD:02411|Vega:OTTHUMG00000021643 X Xp11.21 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 protein-coding PFKFB1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 O 6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase 1|6PF-2-K/Fru-2,6-P2ASE liver isozyme|6PF-2-K/Fru-2,6-P2ase 1|PFK/FBPase 1|fructose-6-phosphate,2-kinase:fructose-2,6-bisphosphatase 20121230 -9606 5208 PFKFB2 RP11-164O23.2 PFK-2/FBPase-2 HGNC:8873|MIM:171835|Ensembl:ENSG00000123836|HPRD:01383|Vega:OTTHUMG00000036033 1 1q31 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 protein-coding PFKFB2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 O 6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase 2|6PF-2-K/Fru-2,6-P2ASE heart-type isozyme|6PF-2-K/Fru-2,6-P2ase 2|PFK/FBPase 2|PFKFB, cardiac|fructose-2,6-bisphosphatase, cardiac isozyme 20121230 -9606 5209 PFKFB3 RP11-298K24.3 IPFK2|PFK2 HGNC:8874|MIM:605319|Ensembl:ENSG00000170525|HPRD:05612|Vega:OTTHUMG00000017621 10 10p15.1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 protein-coding PFKFB3 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 O 6-phosphofructo-2-kinase/ fructose-2,6-bisphosphatase|6-phosphofructo-2-kinase/fructose-2, 6-bisphosphatase|6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase 3|6PF-2-K/Fru-2,6-P2ase 3|6PF-2-K/Fru-2,6-P2ase brain/placenta-type isozyme|PFK/FBPase 3|fructose-6-phosphate,2-kinase/fructose-2, 6-bisphosphatase|iPFK-2|inducible 6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase|renal carcinoma antigen NY-REN-56 20121230 -9606 5210 PFKFB4 - - HGNC:8875|MIM:605320|Ensembl:ENSG00000114268|HPRD:05613|Vega:OTTHUMG00000133528 3 3p22-p21 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 protein-coding PFKFB4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 O 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase-4|6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase 4|6PF-2-K/Fru-2,6-P2ase 4|6PF-2-K/Fru-2,6-P2ase testis-type isozyme|PFK/FBPase 4|bifunctional enzyme with kinase and biphosphatase activities 20121230 -9606 5211 PFKL - PFK-B HGNC:8876|MIM:171860|Ensembl:ENSG00000141959|HPRD:01385|Vega:OTTHUMG00000086910 21 21q22.3 phosphofructokinase, liver protein-coding PFKL phosphofructokinase, liver O 6-phosphofructokinase, liver type|liver-type 1-phosphofructokinase|phosphofructo-1-kinase isozyme B|phosphofructokinase 1|phosphohexokinase 20121230 -9606 5212 VIT UNQ647/PRO1277 - HGNC:12697|Ensembl:ENSG00000205221|HPRD:18284|Vega:OTTHUMG00000152149 2 2p22.2 vitrin protein-coding VIT vitrin O - 20121230 -9606 5213 PFKM - GSD7|PFK-1|PFK1|PFKA|PFKX HGNC:8877|MIM:610681|Ensembl:ENSG00000152556|HPRD:01988|Vega:OTTHUMG00000169898 12 12q13.3 phosphofructokinase, muscle protein-coding PFKM phosphofructokinase, muscle O 6-phosphofructo-1-kinase|6-phosphofructokinase, muscle type|PFK-A|phosphofructo-1-kinase isozyme A|phosphofructokinase 1|phosphofructokinase, polypeptide X|phosphofructokinase-M|phosphohexokinase 20121230 -9606 5214 PFKP RP11-298E9.2 PFK-C|PFKF HGNC:8878|MIM:171840|Ensembl:ENSG00000067057|HPRD:01384|Vega:OTTHUMG00000017556 10 10p15.3-p15.2 phosphofructokinase, platelet protein-coding PFKP phosphofructokinase, platelet O 6-phosphofructokinase type C|6-phosphofructokinase, platelet type|Phosphofructokinase, platelet type|phosphofructo-1-kinase isozyme C|phosphofructokinase 1|phosphohexokinase 20121230 -9606 5216 PFN1 - ALS18 HGNC:8881|MIM:176610|Ensembl:ENSG00000108518|HPRD:01452|Vega:OTTHUMG00000099396 17 17p13.3 profilin 1 protein-coding PFN1 profilin 1 O epididymis tissue protein Li 184a|profilin I|profilin-1 20121230 -9606 5217 PFN2 - D3S1319E|PFL HGNC:8882|MIM:176590|Ensembl:ENSG00000070087|HPRD:01451|Vega:OTTHUMG00000159683 3 3q25.1 profilin 2 protein-coding PFN2 profilin 2 O profilin II|profilin-2 20121230 -9606 5218 CDK14 - PFTAIRE1|PFTK1 HGNC:8883|MIM:610679|Ensembl:ENSG00000058091|HPRD:15121|Vega:OTTHUMG00000023649 7 7q21-q22 cyclin-dependent kinase 14 protein-coding CDK14 cyclin-dependent kinase 14 O PFTAIRE protein kinase 1|cell division protein kinase 14|hPFTAIRE1|serine/threonine-protein kinase PFTAIRE-1 20121230 -9606 5222 PGA5 - PGA3|PGA4 HGNC:8887|MIM:169730|Ensembl:ENSG00000256713|HPRD:01356|Vega:OTTHUMG00000168075 11 11q13 pepsinogen 5, group I (pepsinogen A) protein-coding PGA5 pepsinogen 5, group I (pepsinogen A) O pepsin A|pepsin A-5|pepsinogen A5|pepsinogen-5 20121230 -9606 5223 PGAM1 RP11-452K12.8 PGAM-B|PGAMA HGNC:8888|MIM:172250|Ensembl:ENSG00000171314|HPRD:01392|Vega:OTTHUMG00000018846 10 10q25.3 phosphoglycerate mutase 1 (brain) protein-coding PGAM1 phosphoglycerate mutase 1 (brain) O BPG-dependent PGAM 1|phosphoglycerate mutase 1|phosphoglycerate mutase A, nonmuscle form|phosphoglycerate mutase isozyme B 20121230 -9606 5224 PGAM2 - GSD10|PGAM-M|PGAMM HGNC:8889|MIM:612931|Ensembl:ENSG00000164708|HPRD:02027|Vega:OTTHUMG00000155355 7 7p13-p12 phosphoglycerate mutase 2 (muscle) protein-coding PGAM2 phosphoglycerate mutase 2 (muscle) O BPG-dependent PGAM 2|muscle-specific phosphoglycerate mutase|phosphoglycerate mutase 2|phosphoglycerate mutase isozyme M 20121230 -9606 5225 PGC RP11-298J23.1 PEPC|PGII HGNC:8890|MIM:169740|Ensembl:ENSG00000096088|HPRD:01357|Vega:OTTHUMG00000014683 6 6p21.1 progastricsin (pepsinogen C) protein-coding PGC progastricsin (pepsinogen C) O gastricsin|pepsin C|pepsinogen C|pepsinogen group II|preprogastricsin 20121230 -9606 5226 PGD - 6PGD HGNC:8891|MIM:172200|Ensembl:ENSG00000142657|HPRD:01391|Vega:OTTHUMG00000001905 1 1p36.22 phosphogluconate dehydrogenase protein-coding PGD phosphogluconate dehydrogenase O 6-phosphogluconate dehydrogenase, decarboxylating 20121230 -9606 5228 PGF - D12S1900|PGFL|PLGF|PlGF-2|SHGC-10760 HGNC:8893|MIM:601121|Ensembl:ENSG00000119630|HPRD:03076|Vega:OTTHUMG00000171496 14 14q24.3 placental growth factor protein-coding PGF placental growth factor O placenta growth factor|placental growth factor, vascular endothelial growth factor-related protein 20121230 -9606 5229 PGGT1B - BGGI|GGTI HGNC:8895|MIM:602031|Ensembl:ENSG00000164219|HPRD:03612|Vega:OTTHUMG00000128893 5 5q22.3 protein geranylgeranyltransferase type I, beta subunit protein-coding PGGT1B protein geranylgeranyltransferase type I, beta subunit O GGTase-I-beta|geranylgeranyl transferase type I subunit beta|geranylgeranyl transferase type-1 subunit beta|geranylgeranyltransferase type I beta subunit|type I protein geranyl-geranyltransferase subunit beta 20121230 -9606 5230 PGK1 RP4-570L12.1 MIG10|PGKA HGNC:8896|MIM:311800|Ensembl:ENSG00000102144|HPRD:02412|Vega:OTTHUMG00000021888 X Xq13.3 phosphoglycerate kinase 1 protein-coding PGK1 phosphoglycerate kinase 1 O PRP 2|cell migration-inducing gene 10 protein|primer recognition protein 2 20121230 -9606 5231 PGK1P1 - - HGNC:8897 X Xq12 phosphoglycerate kinase 1, pseudogene 1 pseudo PGK1P1 phosphoglycerate kinase 1, pseudogene 1 O - 20121230 -9606 5232 PGK2 - PGKB|PGKPS|dJ417L20.2 HGNC:8898|MIM:172270|Ensembl:ENSG00000170950|HPRD:01393|Vega:OTTHUMG00000014824 6 6p12.3 phosphoglycerate kinase 2 protein-coding PGK2 phosphoglycerate kinase 2 O phosphoglycerate kinase autosomal pseudogene|phosphoglycerate kinase, testis specific 20121230 -9606 5233 PGK1P2 - PGK2 HGNC:8899 19 19p13.3 phosphoglycerate kinase 1, pseudogene 2 pseudo PGK1P2 phosphoglycerate kinase 1, pseudogene 2 O - 20121230 -9606 5236 PGM1 - CDG1T|GSD14 HGNC:8905|MIM:171900|Ensembl:ENSG00000079739|HPRD:01389|Vega:OTTHUMG00000008968 1 1p31 phosphoglucomutase 1 protein-coding PGM1 phosphoglucomutase 1 O PGM 1|glucose phosphomutase 1|phosphoglucomutase-1 20121230 -9606 5238 PGM3 - AGM1|PAGM|PGM 3 HGNC:8907|MIM:172100|Ensembl:ENSG00000013375|HPRD:01390|Vega:OTTHUMG00000015110 6 6q14.1-q15 phosphoglucomutase 3 protein-coding PGM3 phosphoglucomutase 3 O N-acetylglucosamine-phosphate mutase 1|acetylglucosamine phosphomutase|phosphoacetylglucosamine mutase 20121230 -9606 5239 PGM5 RP11-274B18.5 PGMRP HGNC:8908|MIM:600981|Ensembl:ENSG00000154330|HPRD:02990|Vega:OTTHUMG00000019966 9 9q13 phosphoglucomutase 5 protein-coding PGM5 phosphoglucomutase 5 O PGM-RP|aciculin|phosphoglucomutase-like protein 5|phosphoglucomutase-related protein 20121230 -9606 5241 PGR - NR3C3|PR HGNC:8910|MIM:607311|Ensembl:ENSG00000082175|HPRD:07077|Vega:OTTHUMG00000167531 11 11q22-q23 progesterone receptor protein-coding PGR progesterone receptor O nuclear receptor subfamily 3 group C member 3 20121230 -9606 5242 MRXS5 - PGS HGNC:8911|MIM:304340 X Xq25-q27 mental retardation, X-linked, syndromic 5 unknown MRXS5 mental retardation, X-linked, syndromic 5 O - 20120622 -9606 5243 ABCB1 - ABC20|CD243|CLCS|GP170|MDR1|P-GP|PGY1 HGNC:40|MIM:171050|Ensembl:ENSG00000085563|HPRD:01370|Vega:OTTHUMG00000023393 7 7q21.12 ATP-binding cassette, sub-family B (MDR/TAP), member 1 protein-coding ABCB1 ATP-binding cassette, sub-family B (MDR/TAP), member 1 O P-glycoprotein 1|colchicin sensitivity|doxorubicin resistance|multidrug resistance protein 1 20121230 -9606 5244 ABCB4 - ABC21|GBD1|ICP3|MDR2|MDR2/3|MDR3|PFIC-3|PGY3 HGNC:45|MIM:171060|Ensembl:ENSG00000005471|HPRD:01371|Vega:OTTHUMG00000023396 7 7q21.1 ATP-binding cassette, sub-family B (MDR/TAP), member 4 protein-coding ABCB4 ATP-binding cassette, sub-family B (MDR/TAP), member 4 O ATP-binding cassette sub-family B member 4|P glycoprotein 3/multiple drug resistance 3|P-glycoprotein 3|P-glycoprotein-3/multiple drug resistance-3|multidrug resistance protein 3|multiple drug resistance 3 20121230 -9606 5245 PHB - PHB1 HGNC:8912|MIM:176705|Ensembl:ENSG00000167085|HPRD:01454|Vega:OTTHUMG00000134271 17 17q21 prohibitin protein-coding PHB prohibitin O - 20121230 -9606 5246 PHBP1 - - HGNC:8913 6 6q25 prohibitin pseudogene 1 pseudo PHBP1 prohibitin pseudogene 1 O - 20121230 -9606 5250 SLC25A3 OK/SW-cl.48 PHC|PTP HGNC:10989|MIM:600370|Ensembl:ENSG00000075415|HPRD:02654|Vega:OTTHUMG00000170212 12 12q23 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 protein-coding SLC25A3 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 O mitochondrial phosphate carrier protein|phosphate carrier protein, mitochondrial|phosphate transport protein|solute carrier family 25 member 3 20121230 -9606 5251 PHEX - HPDR|HPDR1|HYP|HYP1|LXHR|PEX|XLH HGNC:8918|MIM:300550|Ensembl:ENSG00000102174|HPRD:02387|Vega:OTTHUMG00000021241 X Xp22.2-p22.1 phosphate regulating endopeptidase homolog, X-linked protein-coding PHEX phosphate regulating endopeptidase homolog, X-linked O X-linked hypophosphatemia protein|metalloendopeptidase homolog PEX|phosphate regulating gene with homologies to endopeptidases on the X chromosome (hypophosphatemia, vitamin D resistant rickets)|phosphate-regulating neutral endopeptidase|vitamin D-resistant hypophosphatemic rickets protein 20121230 -9606 5252 PHF1 DASS-97D12.4 MTF2L2|PCL1|PHF2 HGNC:8919|MIM:602881|Ensembl:ENSG00000112511|HPRD:04195|Vega:OTTHUMG00000031105 6 6p21.3 PHD finger protein 1 protein-coding PHF1 PHD finger protein 1 O hPCl1|polycomb-like protein 1 20121230 -9606 5253 PHF2 - CENP-35|GRC5|JHDM1E HGNC:8920|MIM:604351|Ensembl:ENSG00000197724|HPRD:05071|Vega:OTTHUMG00000020253 9 9q22.31 PHD finger protein 2 protein-coding PHF2 PHD finger protein 2 O centromere protein 35|jumonji C domain-containing histone demethylase 1E|lysine-specific demethylase PHF2 20121230 -9606 5255 PHKA1 - PHKA HGNC:8925|MIM:311870|Ensembl:ENSG00000067177|HPRD:02415|Vega:OTTHUMG00000022696 X Xq12-q13 phosphorylase kinase, alpha 1 (muscle) protein-coding PHKA1 phosphorylase kinase, alpha 1 (muscle) O phosphorylase b kinase regulatory subunit alpha skeletal muscle isoform|phosphorylase b kinase regulatory subunit alpha, skeletal muscle isoform|phosphorylase kinase alpha M subunit|phosphorylase kinase, alpha 1 (muscle), muscle glycogenosis 20121230 -9606 5256 PHKA2 RP3-499B10.2 GSD9A|PHK|PYK|PYKL|XLG|XLG2 HGNC:8926|MIM:300798|Ensembl:ENSG00000044446|HPRD:02380|Vega:OTTHUMG00000021222 X Xp22.2-p22.1 phosphorylase kinase, alpha 2 (liver) protein-coding PHKA2 phosphorylase kinase, alpha 2 (liver) O phosphorylase b kinase regulatory subunit alpha liver isoform|phosphorylase b kinase regulatory subunit alpha, liver isoform|phosphorylase kinase alpha L subunit|phosphorylase kinase alpha-subunit 20121230 -9606 5257 PHKB - - HGNC:8927|MIM:172490|Ensembl:ENSG00000102893|HPRD:01407|Vega:OTTHUMG00000133102 16 16q12-q13 phosphorylase kinase, beta protein-coding PHKB phosphorylase kinase, beta O phosphorylase b kinase regulatory subunit beta|phosphorylase kinase beta-subunit|phosphorylase kinase subunit beta 20121230 -9606 5258 PHKBP1 - - HGNC:8928 20 20p12.3-p12.2 phosphorylase kinase, beta pseudogene 1 pseudo PHKBP1 phosphorylase kinase, beta pseudogene 1 O - 20121230 -9606 5259 PHKBP2 - - HGNC:8929 14 14q13.3 phosphorylase kinase, beta pseudogene 2 pseudo PHKBP2 phosphorylase kinase, beta pseudogene 2 O - 20121230 -9606 5260 PHKG1 - PHKG HGNC:8930|MIM:172470|Ensembl:ENSG00000164776|HPRD:01404|Vega:OTTHUMG00000023869 7 7p11.2 phosphorylase kinase, gamma 1 (muscle) protein-coding PHKG1 phosphorylase kinase, gamma 1 (muscle) O phosphorylase b kinase gamma catalytic chain, skeletal muscle isoform|phosphorylase kinase gamma|phosphorylase kinase subunit gamma-1 20121230 -9606 5261 PHKG2 - GSD9C HGNC:8931|MIM:172471|Ensembl:ENSG00000156873|HPRD:01405|Vega:OTTHUMG00000132400 16 16p11.2 phosphorylase kinase, gamma 2 (testis) protein-coding PHKG2 phosphorylase kinase, gamma 2 (testis) O PHK-gamma-T|PSK-C3|Phosphorylase kinase, gamma 2 (testis/liver)|phosphorylase b kinase gamma catalytic chain, testis/liver isoform|phosphorylase kinase subunit gamma-2|serine/threonine-protein kinase PHKG2 20121230 -9606 5262 PHKG1P3 - PHKGL|PHKg1ps2 HGNC:8932 11 11p11.12 phosphorylase kinase, gamma 1 pseudogene 3 pseudo PHKG1P3 phosphorylase kinase, gamma 1 pseudogene 3 O - 20121230 -9606 5264 PHYH RP11-24J20.1 LN1|LNAP1|PAHX|PHYH1|RD HGNC:8940|MIM:602026|Ensembl:ENSG00000107537|HPRD:03609|Vega:OTTHUMG00000017693 10 10p13 phytanoyl-CoA 2-hydroxylase protein-coding PHYH phytanoyl-CoA 2-hydroxylase O phytanic acid oxidase|phytanoil-CoA alpha hydroxylase|phytanoyl-CoA 2 oxoglutarate dioxygenase|phytanoyl-CoA alpha-hydroxylase|phytanoyl-CoA dioxygenase, peroxisomal 20121230 -9606 5265 SERPINA1 PRO0684 A1A|A1AT|AAT|PI|PI1|PRO2275|alpha1AT HGNC:8941|MIM:107400|Ensembl:ENSG00000197249|HPRD:02463|Vega:OTTHUMG00000150355 14 14q32.1 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 1 protein-coding SERPINA1 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 1 O alpha-1 protease inhibitor|alpha-1-antiproteinase|alpha-1-antitrypsin|alpha-1-antitrypsin null|protease inhibitor 1 (anti-elastase), alpha-1-antitrypsin|serine (or cysteine) proteinase inhibitor, clade A, member 1|serpin A1 20121230 -9606 5266 PI3 - ESI|SKALP|WAP3|WFDC14|cementoin HGNC:8947|MIM:182257|Ensembl:ENSG00000124102|HPRD:15947|Vega:OTTHUMG00000032567 20 20q13.12 peptidase inhibitor 3, skin-derived protein-coding PI3 peptidase inhibitor 3, skin-derived O PI-3|WAP four-disulfide core domain 14|WAP four-disulfide core domain protein 14|elafin|elastase-specific inhibitor|pre-elafin|protease inhibitor 3, skin-derived (SKALP)|protease inhibitor WAP3|skin-derived antileukoproteinase|trappin-2 20121230 -9606 5267 SERPINA4 - KAL|KLST|KST|PI-4|PI4|kallistatin HGNC:8948|MIM:147935|Ensembl:ENSG00000100665|HPRD:01004|Vega:OTTHUMG00000170859 14 14q32.13 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 4 protein-coding SERPINA4 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 4 O kallikrein inhibitor|kallistatin|peptidase inhibitor 4|protease inhibitor 4 (kallistatin)|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 4|serpin A4 20121230 -9606 5268 SERPINB5 - PI5|maspin HGNC:8949|MIM:154790|Ensembl:ENSG00000206075|HPRD:01111|Vega:OTTHUMG00000141307 18 18q21.33 serpin peptidase inhibitor, clade B (ovalbumin), member 5 protein-coding SERPINB5 serpin peptidase inhibitor, clade B (ovalbumin), member 5 O PI-5|peptidase inhibitor 5|protease inhibitor 5 (maspin)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 5|serpin B5 20121230 -9606 5269 SERPINB6 RP1-90J20.6 CAP|DFNB91|MSTP057|PI-6|PI6|PTI|SPI3 HGNC:8950|MIM:173321|Ensembl:ENSG00000124570|HPRD:01413|Vega:OTTHUMG00000016170 6 6p25 serpin peptidase inhibitor, clade B (ovalbumin), member 6 protein-coding SERPINB6 serpin peptidase inhibitor, clade B (ovalbumin), member 6 O cytoplasmic antiproteinase|protease inhibitor 6 (placental thrombin inhibitor)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 6|serpin B6 20121230 -9606 5270 SERPINE2 - GDN|GDNPF|PI-7|PI7|PN-1|PN1|PNI HGNC:8951|MIM:177010|Ensembl:ENSG00000135919|HPRD:01510|Vega:OTTHUMG00000133163 2 2q36.1 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2 protein-coding SERPINE2 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2 O glia-derived nexin|glial-derived neurite promoting factor|peptidase inhibitor 7|protease nexin I|serpin E2 20121230 -9606 5271 SERPINB8 - CAP2|PI8 HGNC:8952|MIM:601697|Ensembl:ENSG00000166401|HPRD:03412|Vega:OTTHUMG00000060596 18 18q22.1 serpin peptidase inhibitor, clade B (ovalbumin), member 8 protein-coding SERPINB8 serpin peptidase inhibitor, clade B (ovalbumin), member 8 O PI-8|cytoplasmic antiproteinase 2|peptidase inhibitor 8|protease inhibitor 8 (ovalbumin type)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 8|serpin B8 20121230 -9606 5272 SERPINB9 - CAP-3|CAP3|PI-9|PI9 HGNC:8955|MIM:601799|Ensembl:ENSG00000170542|HPRD:03480|Vega:OTTHUMG00000014131 6 6p25 serpin peptidase inhibitor, clade B (ovalbumin), member 9 protein-coding SERPINB9 serpin peptidase inhibitor, clade B (ovalbumin), member 9 O cytoplasmic antiproteinase 3|peptidase inhibitor 9|protease inhibitor 9 (ovalbumin type)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 9|serpin B9|serpin peptidase inhibitor, clade B, member 9 20121230 -9606 5273 SERPINB10 - PI-10|PI10 HGNC:8942|MIM:602058|Ensembl:ENSG00000242550|HPRD:03635|Vega:OTTHUMG00000060594 18 18q21.3 serpin peptidase inhibitor, clade B (ovalbumin), member 10 protein-coding SERPINB10 serpin peptidase inhibitor, clade B (ovalbumin), member 10 O bomapin|peptidase inhibitor 10|protease inhibitor 10 (ovalbumin type, bomapin)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 10|serpin B10 20121230 -9606 5274 SERPINI1 - PI12|neuroserpin HGNC:8943|MIM:602445|Ensembl:ENSG00000163536|HPRD:03901|Vega:OTTHUMG00000158450 3 3q26.1 serpin peptidase inhibitor, clade I (neuroserpin), member 1 protein-coding SERPINI1 serpin peptidase inhibitor, clade I (neuroserpin), member 1 O PI-12|neuroserpin|peptidase inhibitor 12|serine (or cysteine) proteinase inhibitor, clade I (neuroserpin), member 1|serpin I1 20121230 -9606 5275 SERPINB13 - HSHUR7SEQ|HUR7|PI13|headpin HGNC:8944|MIM:604445|Ensembl:ENSG00000197641|HPRD:05118|Vega:OTTHUMG00000060406 18 18q21.33 serpin peptidase inhibitor, clade B (ovalbumin), member 13 protein-coding SERPINB13 serpin peptidase inhibitor, clade B (ovalbumin), member 13 O HURPIN|PI-13|UV-B repressed sequence, HUR 7|haCaT UV-repressible serpin|peptidase inhibitor 13|protease inhibitor 13 (hurpin, headpin)|proteinase inhibitor 13|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 13|serpin B13 20121230 -9606 5276 SERPINI2 - MEPI|PANCPIN|PI14|TSA2004 HGNC:8945|MIM:605587|Ensembl:ENSG00000114204|HPRD:05722|Vega:OTTHUMG00000158231 3 3q26.1 serpin peptidase inhibitor, clade I (pancpin), member 2 protein-coding SERPINI2 serpin peptidase inhibitor, clade I (pancpin), member 2 O PI-14|myoepithelium-derived serine protease inhibitor|pancreas-specific protein TSA2004|peptidase inhibitor 14|protease inhibitor 14|serine (or cysteine) proteinase inhibitor, clade I (neuroserpin), member 2|serine (or cysteine) proteinase inhibitor, clade I (pancpin), member 2|serpin I2 20121230 -9606 5277 PIGA - GPI3|MCAHS2|PIG-A HGNC:8957|MIM:311770|Ensembl:ENSG00000165195|HPRD:02410|Vega:OTTHUMG00000021174 X Xp22.1 phosphatidylinositol glycan anchor biosynthesis, class A protein-coding PIGA phosphatidylinositol glycan anchor biosynthesis, class A O GLCNAC-PI synthesis protein|GPI anchor biosynthesis|class A GlcNAc-inositol phospholipid assembly protein|phosphatidylinositol N-acetylglucosaminyltransferase subunit A|phosphatidylinositol-glycan biosynthesis, class A protein 20121230 -9606 5278 PIGAP1 - - HGNC:8958 12 12q21 phosphatidylinositol glycan anchor biosynthesis, class A, pseudogene 1 pseudo PIGAP1 phosphatidylinositol glycan anchor biosynthesis, class A, pseudogene 1 O - 20121230 -9606 5279 PIGC - GPI2 HGNC:8960|MIM:601730|Ensembl:ENSG00000135845|HPRD:03433|Vega:OTTHUMG00000034751 1 1q23-q25 phosphatidylinositol glycan anchor biosynthesis, class C protein-coding PIGC phosphatidylinositol glycan anchor biosynthesis, class C O PIG-C|phosphatidylinositol N-acetylglucosaminyltransferase subunit C|phosphatidylinositol-glycan biosynthesis class C protein|phosphatidylinositol-glycan biosynthesis, class C protein 20121230 -9606 5280 PIGCP1 - - HGNC:8961 11 11p13 phosphatidylinositol glycan anchor biosynthesis, class C, pseudogene 1 pseudo PIGCP1 phosphatidylinositol glycan anchor biosynthesis, class C, pseudogene 1 O - 20121230 -9606 5281 PIGF - - HGNC:8962|MIM:600153|Ensembl:ENSG00000151665|HPRD:02539|Vega:OTTHUMG00000128816 2 2p21-p16 phosphatidylinositol glycan anchor biosynthesis, class F protein-coding PIGF phosphatidylinositol glycan anchor biosynthesis, class F O GPI11 homolog|PIG-F|phosphatidylinositol-glycan biosynthesis class F protein 20121230 -9606 5282 PIGFP1 - - HGNC:8963 5 5q35 phosphatidylinositol glycan anchor biosynthesis, class F, pseudogene 1 pseudo PIGFP1 phosphatidylinositol glycan anchor biosynthesis, class F, pseudogene 1 O - 20121230 -9606 5283 PIGH - GPI-H HGNC:8964|MIM:600154|Ensembl:ENSG00000100564|HPRD:02540|Vega:OTTHUMG00000171806 14 14q24.1 phosphatidylinositol glycan anchor biosynthesis, class H protein-coding PIGH phosphatidylinositol glycan anchor biosynthesis, class H O PIG-H|phosphatidylinositol N-acetylglucosaminyltransferase subunit H|phosphatidylinositol glycan, class H|phosphatidylinositol-glycan biosynthesis class H protein|phosphatidylinositol-glycan biosynthesis, class H protein 20121230 -9606 5284 PIGR - - HGNC:8968|MIM:173880|Ensembl:ENSG00000162896|HPRD:01436|Vega:OTTHUMG00000036581 1 1q31-q41 polymeric immunoglobulin receptor protein-coding PIGR polymeric immunoglobulin receptor O hepatocellular carcinoma associated protein TB6|hepatocellular carcinoma-associated protein TB6|poly-Ig receptor 20121230 -9606 5285 PIH - - HGNC:8969 - - pregnancy-induced hypertension (pre-eclampsia, eclampsia, toxemia of pregnancy included) unknown PIH pregnancy-induced hypertension (pre-eclampsia, eclampsia, toxemia of pregnancy included) O - 20121206 -9606 5286 PIK3C2A - CPK|PI3-K-C2(ALPHA)|PI3-K-C2A HGNC:8971|MIM:603601|Ensembl:ENSG00000011405|HPRD:04672|Vega:OTTHUMG00000166036 11 11p15.5-p14 phosphatidylinositol-4-phosphate 3-kinase, catalytic subunit type 2 alpha protein-coding PIK3C2A phosphatidylinositol-4-phosphate 3-kinase, catalytic subunit type 2 alpha O C2-containing phosphatidylinositol kinase|PI3K-C2-alpha|PI3K-C2alpha|phosphatidylinositol 4-phosphate 3-kinase C2 domain-containing subunit alpha|phosphatidylinositol-4-phosphate 3-kinase C2 domain-containing subunit alpha|phosphoinositide 3-kinase-C2-alpha|phosphoinositide-3-kinase, class 2, alpha polypeptide|ptdIns-3-kinase C2 subunit alpha 20121230 -9606 5287 PIK3C2B RP11-739N20.5 C2-PI3K HGNC:8972|MIM:602838|Ensembl:ENSG00000133056|HPRD:04160|Vega:OTTHUMG00000036101 1 1q32 phosphatidylinositol-4-phosphate 3-kinase, catalytic subunit type 2 beta protein-coding PIK3C2B phosphatidylinositol-4-phosphate 3-kinase, catalytic subunit type 2 beta O PI3K-C2-beta|PI3K-C2beta|PTDINS-3-kinase C2 beta|phosphatidylinositol 3-kinase C2 domain-containing beta polypeptide|phosphatidylinositol 4-phosphate 3-kinase C2 domain-containing subunit beta|phosphatidylinositol-4-phosphate 3-kinase C2 domain-containing subunit beta|phosphoinositide 3-kinase-C2-beta|phosphoinositide-3-kinase, class 2, beta polypeptide|ptdIns-3-kinase C2 subunit beta 20121230 -9606 5288 PIK3C2G - PI3K-C2GAMMA HGNC:8973|MIM:609001|Ensembl:ENSG00000139144|HPRD:16416|Vega:OTTHUMG00000168841 12 12p12 phosphatidylinositol-4-phosphate 3-kinase, catalytic subunit type 2 gamma protein-coding PIK3C2G phosphatidylinositol-4-phosphate 3-kinase, catalytic subunit type 2 gamma O PI3K-C2-gamma|PTDINS-3-kinase C2 gamma|phosphatidylinositol 3-kinase C2 domain-containing gamma|phosphatidylinositol 4-phosphate 3-kinase C2 domain-containing subunit gamma|phosphatidylinositol-4-phosphate 3-kinase C2 domain-containing gamma polypeptide|phosphatidylinositol-4-phosphate 3-kinase C2 domain-containing subunit gamma|phosphoinositide 3-kinase-C2-gamma|phosphoinositide-3-kinase, class 2, gamma polypeptide|ptdIns-3-kinase C2 subunit gamma 20121230 -9606 5289 PIK3C3 - VPS34|hVps34 HGNC:8974|MIM:602609|Ensembl:ENSG00000078142|HPRD:04009|Vega:OTTHUMG00000132593 18 18q12.3 phosphatidylinositol 3-kinase, catalytic subunit type 3 protein-coding PIK3C3 phosphatidylinositol 3-kinase, catalytic subunit type 3 O PI3-kinase type 3|PI3K type 3|PtdIns-3-kinase type 3|phosphatidylinositol 3-kinase catalytic subunit type 3|phosphatidylinositol 3-kinase p100 subunit|phosphoinositide-3-kinase, class 3 20121230 -9606 5290 PIK3CA - CLOVE|MCAP|MCM|MCMTC|PI3K|p110-alpha HGNC:8975|MIM:171834|Ensembl:ENSG00000121879|HPRD:01382|Vega:OTTHUMG00000157311 3 3q26.3 phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit alpha protein-coding PIK3CA phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit alpha O PI3-kinase p110 subunit alpha|PI3K-alpha|phosphatidylinositol 3-kinase, catalytic, 110-KD, alpha|phosphatidylinositol 3-kinase, catalytic, alpha polypeptide|phosphatidylinositol 4,5-bisphosphate 3-kinase 110 kDa catalytic subunit alpha|phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit alpha isoform|phosphatidylinositol-4,5-bisphosphate 3-kinase 110 kDa catalytic subunit alpha|phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit, alpha isoform|phosphoinositide-3-kinase, catalytic, alpha polypeptide|ptdIns-3-kinase subunit p110-alpha|serine/threonine protein kinase PIK3CA 20121230 -9606 5291 PIK3CB - P110BETA|PI3K|PI3KBETA|PIK3C1 HGNC:8976|MIM:602925|Ensembl:ENSG00000051382|HPRD:04234|Vega:OTTHUMG00000159893 3 3q22.3 phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit beta protein-coding PIK3CB phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit beta O PI3-kinase p110 subunit beta|PI3-kinase subunit beta|PI3K-beta|PtdIns-3-kinase p110|phosphatidylinositol 4,5-bisphosphate 3-kinase 110 kDa catalytic subunit beta|phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit beta isoform|phosphatidylinositol-4,5-bisphosphate 3-kinase 110 kDa catalytic subunit beta|phosphoinositide-3-kinase, catalytic, beta polypeptide|ptdIns-3-kinase subunit beta|ptdIns-3-kinase subunit p110-beta 20121230 -9606 5292 PIM1 - PIM HGNC:8986|MIM:164960|Ensembl:ENSG00000137193|HPRD:01292|Vega:OTTHUMG00000016426 6 6p21.2 pim-1 oncogene protein-coding PIM1 pim-1 oncogene O Oncogene PIM1|pim-1 kinase 44 kDa isoform|pim-1 oncogene (proviral integration site 1)|proto-oncogene serine/threonine-protein kinase pim-1|serine/threonine-protein kinase pim-1 20121230 -9606 5293 PIK3CD RP11-558F24.3 P110DELTA|PI3K|p110D HGNC:8977|MIM:602839|Ensembl:ENSG00000171608|Vega:OTTHUMG00000001450 1 1p36.2 phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta protein-coding PIK3CD phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta O PI3-kinase p110 subunit delta|PI3Kdelta|phosphatidylinositol 4,5-bisphosphate 3-kinase 110 kDa catalytic subunit delta|phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit delta isoform|phosphatidylinositol-4,5-bisphosphate 3-kinase 110 kDa catalytic subunit delta|phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit delta isoform|phosphoinositide-3-kinase C|phosphoinositide-3-kinase, catalytic, delta polypeptide variant p37delta|ptdIns-3-kinase subunit p110-delta 20121230 -9606 5294 PIK3CG - PI3CG|PI3K|PI3Kgamma|PIK3 HGNC:8978|MIM:601232|Ensembl:ENSG00000105851|HPRD:03135|Vega:OTTHUMG00000157641 7 7q22.3 phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit gamma protein-coding PIK3CG phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit gamma O 1-phosphatidylinositol 3-kinase|PI3-kinase subunit gamma|PI3K-gamma|p110-gamma|p110gamma|p120-PI3K|phosphatidylinositol 3 kinase gamma, p110 gamma|phosphatidylinositol 3-kinase catalytic 110-kD gamma|phosphatidylinositol 3-kinase, catalytic, gamma polypeptide|phosphatidylinositol 4,5-bisphosphate 3-kinase 110 kDa catalytic subunit gamma|phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit gamma isoform|phosphatidylinositol-4,5-bisphosphate 3-kinase 110 kDa catalytic subunit gamma|phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit gamma isoform|phosphoinositide-3-kinase gamma catalytic subunit|phosphoinositide-3-kinase, catalytic, gamma polypeptide|ptdIns-3-kinase subunit gamma|ptdIns-3-kinase subunit p110-gamma|serine/threonine protein kinase PIK3CG 20121230 -9606 5295 PIK3R1 - GRB1|p85|p85-ALPHA HGNC:8979|MIM:171833|Ensembl:ENSG00000145675|HPRD:01381|Vega:OTTHUMG00000131251 5 5q13.1 phosphoinositide-3-kinase, regulatory subunit 1 (alpha) protein-coding PIK3R1 phosphoinositide-3-kinase, regulatory subunit 1 (alpha) O PI3-kinase subunit p85-alpha|PI3K regulatory subunit alpha|phosphatidylinositol 3-kinase 85 kDa regulatory subunit alpha|phosphatidylinositol 3-kinase regulatory subunit alpha|phosphatidylinositol 3-kinase, regulatory subunit, polypeptide 1 (p85 alpha)|phosphatidylinositol 3-kinase-associated p-85 alpha|phosphoinositide-3-kinase regulatory subunit|ptdIns-3-kinase regulatory subunit alpha 20121230 -9606 5296 PIK3R2 - MPPH|P85B|p85|p85-BETA HGNC:8980|MIM:603157|Ensembl:ENSG00000105647|HPRD:04404|Vega:OTTHUMG00000150640 19 19q13.2-q13.4 phosphoinositide-3-kinase, regulatory subunit 2 (beta) protein-coding PIK3R2 phosphoinositide-3-kinase, regulatory subunit 2 (beta) O PI3-kinase subunit p85-beta|PI3K regulatory subunit beta|phosphatidylinositol 3-kinase 85 kDa regulatory subunit beta|phosphatidylinositol 3-kinase regulatory subunit beta|phosphatidylinositol 3-kinase, regulatory subunit, polypeptide 2 (p85 beta)|ptdIns-3-kinase regulatory subunit p85-beta 20121230 -9606 5297 PI4KA - PI4K-ALPHA|PIK4CA|pi4K230 HGNC:8983|MIM:600286|Ensembl:ENSG00000241973|HPRD:08972|Vega:OTTHUMG00000167440 22 22q11.21 phosphatidylinositol 4-kinase, catalytic, alpha protein-coding PI4KA phosphatidylinositol 4-kinase, catalytic, alpha O PI4-kinase alpha|phosphatidylinositol 4-kinase 230|phosphatidylinositol 4-kinase alpha|phosphatidylinositol 4-kinase, type III, alpha|ptdIns-4-kinase alpha 20121230 -9606 5298 PI4KB RP11-126K1.4 NPIK|PI4K-BETA|PI4K92|PI4KBETA|PI4KIIIBETA|PIK4CB HGNC:8984|MIM:602758|Ensembl:ENSG00000143393|HPRD:11805|Vega:OTTHUMG00000012348 1 1q21 phosphatidylinositol 4-kinase, catalytic, beta protein-coding PI4KB phosphatidylinositol 4-kinase, catalytic, beta O PtdIns 4-kinase beta|phosphatidylinositol 4-kinase beta|phosphatidylinositol 4-kinase, wortmannin-sensitive|type III phosphatidylinositol 4-kinase beta 20121230 -9606 5300 PIN1 - DOD|UBL5 HGNC:8988|MIM:601052|Ensembl:ENSG00000127445|HPRD:03031|Vega:OTTHUMG00000180388 19 19p13 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 protein-coding PIN1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 O PPIase Pin1|peptidyl-prolyl cis-trans isomerase NIMA-interacting 1|protein (peptidyl-prolyl cis/trans isomerase) NIMA-interacting 1|rotamase Pin1 20121230 -9606 5301 PIN1P1 - PIN1L HGNC:8989|MIM:602051|HPRD:03630 1 1p31 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 pseudogene 1 pseudo PIN1P1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 pseudogene 1 O - 20121230 -9606 5303 PIN4 AL135749.5 EPVH|PAR14|PAR17 HGNC:8992|MIM:300252|Ensembl:ENSG00000102309|HPRD:02219|Vega:OTTHUMG00000021811 X Xq13 protein (peptidylprolyl cis/trans isomerase) NIMA-interacting, 4 (parvulin) protein-coding PIN4 protein (peptidylprolyl cis/trans isomerase) NIMA-interacting, 4 (parvulin) O PPIase PIN4|eukaryotic parvulin homolog|hEPVH|hPar14|hPar17|parvulin-14|parvulin-17|peptidyl-prolyl cis-trans isomerase NIMA-interacting 4|peptidyl-prolyl cis-trans isomerase Pin4|peptidyl-prolyl cis/trans isomerase EPVH|rotamase PIN4 20121230 -9606 5304 PIP - GCDFP-15|GCDFP15|GPIP4 HGNC:8993|MIM:176720|Ensembl:ENSG00000159763|HPRD:07179|Vega:OTTHUMG00000152635 7 7q34 prolactin-induced protein protein-coding PIP prolactin-induced protein O SABP|gross cystic disease fluid protein 15|prolactin-inducible protein|secretory actin-binding protein 20121230 -9606 5305 PIP4K2A RP11-301N24.1 PI5P4KA|PIP5K2A|PIP5KII-alpha|PIP5KIIA|PIPK HGNC:8997|MIM:603140|Ensembl:ENSG00000150867|HPRD:11931|Vega:OTTHUMG00000017810 10 10p12.2 phosphatidylinositol-5-phosphate 4-kinase, type II, alpha protein-coding PIP4K2A phosphatidylinositol-5-phosphate 4-kinase, type II, alpha O 1-phosphatidylinositol 5-phosphate 4-kinase 2-alpha|1-phosphatidylinositol-4-phosphate kinase|1-phosphatidylinositol-4-phosphate-5-kinase|1-phosphatidylinositol-5-phosphate 4-kinase 2-alpha|PI(5)P 4-kinase type II alpha|PIP4KII-alpha|PIP5KIII|PIP5KIIalpha|PtdIns(4)P-5-kinase B isoform|diphosphoinositide kinase 2-alpha|phosphatidylinositol 5-phosphate 4-kinase type II alpha|phosphatidylinositol 5-phosphate 4-kinase type-2 alpha|phosphatidylinositol-4-phosphate 5-kinase, type II, alpha|phosphatidylinositol-5-phosphate 4-kinase type-2 alpha|ptdIns(4)P-5-kinase C isoform|ptdIns(5)P-4-kinase isoform 2-alpha|type II phosphatidylinositol-4-phosphate 5-kinase 53 K isoform 20121230 -9606 5306 PITPNA - PI-TPalpha|PITPN|VIB1A HGNC:9001|MIM:600174|Ensembl:ENSG00000174238|HPRD:02548|Vega:OTTHUMG00000177779 17 17p13.3 phosphatidylinositol transfer protein, alpha protein-coding PITPNA phosphatidylinositol transfer protein, alpha O PI-TP-alpha|phosphatidylinositol transfer protein alpha isoform|ptdIns transfer protein alpha|ptdInsTP alpha 20121230 -9606 5307 PITX1 - BFT|CCF|LBNBG|POTX|PTX1 HGNC:9004|MIM:602149|Ensembl:ENSG00000069011|HPRD:03688|Vega:OTTHUMG00000149983 5 5q31.1 paired-like homeodomain 1 protein-coding PITX1 paired-like homeodomain 1 O hindlimb expressed homeobox protein backfoot|hindlimb-expressed homeobox protein backfoot|homeobox protein PITX1|paired-like homeodomain transcription factor 1|pituitary homeo box 1|pituitary homeobox 1|pituitary otx-related factor 20121230 -9606 5308 PITX2 - ARP1|Brx1|IDG2|IGDS|IGDS2|IHG2|IRID2|Otlx2|PTX2|RGS|RIEG|RIEG1|RS HGNC:9005|MIM:601542|Ensembl:ENSG00000164093|HPRD:03328|Vega:OTTHUMG00000132837 4 4q25 paired-like homeodomain 2 protein-coding PITX2 paired-like homeodomain 2 O ALL1-responsive protein ARP1|all1-responsive gene 1|homeobox protein PITX2|paired-like homeodomain transcription factor 2|pituitary homeobox 2|rieg bicoid-related homeobox transcription factor 1|solurshin 20121230 -9606 5309 PITX3 - CTPP4|PTX3 HGNC:9006|MIM:602669|Ensembl:ENSG00000107859|HPRD:04051|Vega:OTTHUMG00000018952 10 10q24.32 paired-like homeodomain 3 protein-coding PITX3 paired-like homeodomain 3 O homeobox protein PITX3|pituitary homeobox 3 20121230 -9606 5310 PKD1 - PBP|Pc-1|TRPP1 HGNC:9008|MIM:601313|Ensembl:ENSG00000008710|HPRD:03203|Vega:OTTHUMG00000155795 16 16p13.3 polycystic kidney disease 1 (autosomal dominant) protein-coding PKD1 polycystic kidney disease 1 (autosomal dominant) O autosomal dominant polycystic kidney disease 1 protein|polycystic kidney disease-associated protein|polycystin 1|polycystin-1|transient receptor potential cation channel, subfamily P, member 1 20121230 -9606 5311 PKD2 - APKD2|PC2|PKD4|Pc-2|TRPP2 HGNC:9009|MIM:173910|Ensembl:ENSG00000118762|HPRD:01437|Vega:OTTHUMG00000160982 4 4q22.1 polycystic kidney disease 2 (autosomal dominant) protein-coding PKD2 polycystic kidney disease 2 (autosomal dominant) O R48321|autosomal dominant polycystic kidney disease type II protein|polycystin-2|polycystwin|transient receptor potential cation channel, subfamily P, member 2 20121230 -9606 5312 PKD3 - - HGNC:9013|MIM:600666 2 2p polycystic kidney disease 3 (autosomal dominant) unknown PKD3 polycystic kidney disease 3 (autosomal dominant) O - 20110215 -9606 5313 PKLR - PK1|PKL|PKR|PKRL|RPK HGNC:9020|MIM:609712|Ensembl:ENSG00000143627|HPRD:11841|Vega:OTTHUMG00000035875 1 1q21 pyruvate kinase, liver and RBC protein-coding PKLR pyruvate kinase, liver and RBC O R-type/L-type pyruvate kinase|pyruvate kinase 1|pyruvate kinase isozyme R/L|pyruvate kinase isozymes R/L|pyruvate kinase type L|pyruvate kinase, liver and blood cell|red cell/liver pyruvate kinase 20121230 -9606 5314 PKHD1 - ARPKD|FCYT|TIGM1 HGNC:9016|MIM:606702|Ensembl:ENSG00000170927|HPRD:05987|Vega:OTTHUMG00000014841 6 6p12.2 polycystic kidney and hepatic disease 1 (autosomal recessive) protein-coding PKHD1 polycystic kidney and hepatic disease 1 (autosomal recessive) O TIG multiple domains 1|fibrocystin|polycystic kidney and hepatic disease 1 protein|polyductin|tigmin 20121230 -9606 5315 PKM - CTHBP|OIP3|PK3|PKM2|TCB|THBP1 HGNC:9021|MIM:179050|Ensembl:ENSG00000067225|HPRD:01529|Vega:OTTHUMG00000172709 15 15q22 pyruvate kinase, muscle protein-coding PKM pyruvate kinase, muscle O OIP-3|OPA-interacting protein 3|PK, muscle type|cytosolic thyroid hormone-binding protein|p58|pyruvate kinase 2/3|pyruvate kinase isozymes M1/M2|pyruvate kinase muscle isozyme|thyroid hormone-binding protein 1|thyroid hormone-binding protein, cytosolic|tumor M2-PK 20121230 -9606 5316 PKNOX1 - PREP1|pkonx1c HGNC:9022|MIM:602100|Ensembl:ENSG00000160199|HPRD:03653|Vega:OTTHUMG00000086833 21 21q22.3 PBX/knotted 1 homeobox 1 protein-coding PKNOX1 PBX/knotted 1 homeobox 1 O PBX/knotted homeobox 1|Pbx regulating protein-1|homeobox protein PKNOX1|homeobox protein PREP-1|human homeobox-containing protein 20121230 -9606 5317 PKP1 - B6P HGNC:9023|MIM:601975|Ensembl:ENSG00000081277|HPRD:03579|Vega:OTTHUMG00000035729 1 1q32 plakophilin 1 (ectodermal dysplasia/skin fragility syndrome) protein-coding PKP1 plakophilin 1 (ectodermal dysplasia/skin fragility syndrome) O band 6 protein|plakophilin-1 20121230 -9606 5318 PKP2 - ARVD9 HGNC:9024|MIM:602861|Ensembl:ENSG00000057294|HPRD:04177|Vega:OTTHUMG00000169500 12 12p11 plakophilin 2 protein-coding PKP2 plakophilin 2 O plakophilin-2 20121230 -9606 5319 PLA2G1B - PLA2|PLA2A|PPLA2 HGNC:9030|MIM:172410|Ensembl:ENSG00000170890|HPRD:01396|Vega:OTTHUMG00000169343 12 12q23-q24.1 phospholipase A2, group IB (pancreas) protein-coding PLA2G1B phospholipase A2, group IB (pancreas) O group IB phospholipase A2|phosphatidylcholine 2-acylhydrolase 1B|phospholipase A2 20121230 -9606 5320 PLA2G2A - MOM1|PLA2|PLA2B|PLA2L|PLA2S|PLAS1|sPLA2 HGNC:9031|MIM:172411|Ensembl:ENSG00000188257|HPRD:01397|Vega:OTTHUMG00000002699 1 1p35 phospholipase A2, group IIA (platelets, synovial fluid) protein-coding PLA2G2A phospholipase A2, group IIA (platelets, synovial fluid) O GIIC sPLA2|NPS-PLA2|group IIA phospholipase A2|non-pancreatic secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase 2A|phospholipase A2, membrane associated 20121230 -9606 5321 PLA2G4A - PLA2G4|cPLA2-alpha HGNC:9035|MIM:600522|Ensembl:ENSG00000116711|HPRD:08986|Vega:OTTHUMG00000035512 1 1q25 phospholipase A2, group IVA (cytosolic, calcium-dependent) protein-coding PLA2G4A phospholipase A2, group IVA (cytosolic, calcium-dependent) O cPLA2|calcium-dependent phospholipid-binding protein|cytosolic phospholipase A2|lysophospholipase|phosphatidylcholine 2-acylhydrolase|phospholipase A2 group IVA 20121230 -9606 5322 PLA2G5 - FRFB|GV-PLA2|PLA2-10|hVPLA(2) HGNC:9038|MIM:601192|Ensembl:ENSG00000127472|HPRD:03117|Vega:OTTHUMG00000002698 1 1p36-p34 phospholipase A2, group V protein-coding PLA2G5 phospholipase A2, group V O Ca2+-dependent phospholipase A2|calcium-dependent phospholipase A2|phosphatidylcholine 2-acylhydrolase 5 20121230 -9606 5324 PLAG1 - PSA|SGPA|ZNF912 HGNC:9045|MIM:603026|Ensembl:ENSG00000181690|HPRD:04321|Vega:OTTHUMG00000164310 8 8q12 pleiomorphic adenoma gene 1 protein-coding PLAG1 pleiomorphic adenoma gene 1 O COL1A2/PLAG1 fusion|zinc finger protein PLAG1 20121230 -9606 5325 PLAGL1 RP3-468K18.1 LOT1|ZAC|ZAC1 HGNC:9046|MIM:603044|Ensembl:ENSG00000118495|HPRD:16010|Vega:OTTHUMG00000015738 6 6q24-q25 pleiomorphic adenoma gene-like 1 protein-coding PLAGL1 pleiomorphic adenoma gene-like 1 O LOT-1|PLAG-like 1|ZAC tumor supressor|lost on transformation 1|pleiomorphic adenoma gene-like protein 1|pleiomorphic adenoma-like protein 1|tumor supressor ZAC|zinc finger protein PLAGL1 20121230 -9606 5326 PLAGL2 - ZNF900 HGNC:9047|MIM:604866|Ensembl:ENSG00000126003|HPRD:05333|Vega:OTTHUMG00000032210 20 20q11.21 pleiomorphic adenoma gene-like 2 protein-coding PLAGL2 pleiomorphic adenoma gene-like 2 O C2H2-type zinc finger protein|pleiomorphic adenoma-like protein 2|zinc finger protein PLAGL2 20121230 -9606 5327 PLAT - T-PA|TPA HGNC:9051|MIM:173370|Ensembl:ENSG00000104368|HPRD:01419|Vega:OTTHUMG00000164072 8 8p12 plasminogen activator, tissue protein-coding PLAT plasminogen activator, tissue O alteplase|plasminogen activator, tissue type|reteplase|t-plasminogen activator|tissue plasminogen activator (t-PA)|tissue-type plasminogen activator 20121230 -9606 5328 PLAU RP11-417O11.1 ATF|BDPLT5|QPD|UPA|URK|u-PA HGNC:9052|MIM:191840|Ensembl:ENSG00000122861|HPRD:01883|Vega:OTTHUMG00000018494 10 10q24 plasminogen activator, urokinase protein-coding PLAU plasminogen activator, urokinase O U-plasminogen activator|plasminogen activator, urinary|urokinase-type plasminogen activator 20121230 -9606 5329 PLAUR - CD87|U-PAR|UPAR|URKR HGNC:9053|MIM:173391|Ensembl:ENSG00000011422|HPRD:01421 19 19q13 plasminogen activator, urokinase receptor protein-coding PLAUR plasminogen activator, urokinase receptor O monocyte activation antigen Mo3|u-plasminogen activator receptor form 2|urokinase plasminogen activator surface receptor|urokinase-type plasminogen activator (uPA) receptor 20121230 -9606 5330 PLCB2 - - HGNC:9055|MIM:604114|Ensembl:ENSG00000137841|HPRD:04985|Vega:OTTHUMG00000172412 15 15q15 phospholipase C, beta 2 protein-coding PLCB2 phospholipase C, beta 2 O 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-2|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase beta-2|PLC-beta-2|phosphoinositide phospholipase C-beta-2|phospholipase C-beta-2 20121230 -9606 5331 PLCB3 - - HGNC:9056|MIM:600230|Ensembl:ENSG00000149782|HPRD:02577|Vega:OTTHUMG00000167816 11 11q13 phospholipase C, beta 3 (phosphatidylinositol-specific) protein-coding PLCB3 phospholipase C, beta 3 (phosphatidylinositol-specific) O 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-3|PLC beta 3|PLC-beta-3|phosphoinositide phospholipase C-beta-3 20121230 -9606 5332 PLCB4 RP4-811H13.1 ARCND2|PI-PLC HGNC:9059|MIM:600810|Ensembl:ENSG00000101333|HPRD:02885|Vega:OTTHUMG00000031853 20 20p12 phospholipase C, beta 4 protein-coding PLCB4 phospholipase C, beta 4 O 1-phosphatidyl-D-myo-inositol-4,5-bisphosphate|1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-4|PLC-beta-4|dJ1119D9.2 (Phopholipase C, beta 4 (1-Phosphatidylinositol-4,5-Bisphosphate Phosphodiesterase Beta 4))|inositoltrisphosphohydrolase|monophosphatidylinositol phosphodiesterase|phosphoinositidase C|phosphoinositide phospholipase C-beta-4|triphosphoinositide phosphodiesterase 20121230 -9606 5333 PLCD1 - NDNC3|PLC-III HGNC:9060|MIM:602142|Ensembl:ENSG00000187091|HPRD:09073|Vega:OTTHUMG00000130813 3 3p22-p21.3 phospholipase C, delta 1 protein-coding PLCD1 phospholipase C, delta 1 O 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase delta-1|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase delta-1|PLC-delta-1|phosphoinositide phospholipase C-delta-1|phospholipase C-III 20121230 -9606 5334 PLCL1 - PLCE|PLCL|PLDL1|PRIP HGNC:9063|MIM:600597|Ensembl:ENSG00000115896|HPRD:07041|Vega:OTTHUMG00000132750 2 2q33 phospholipase C-like 1 protein-coding PLCL1 phospholipase C-like 1 O PLC-L1|inactive phospholipase C-like protein 1|phospholipase C related, but catalytically inactive protein|phospholipase C, epsilon|phospholipase C-deleted in lung carcinoma|phospholipase C-related but catalytically inactive protein 20121230 -9606 5335 PLCG1 RP3-511B24.2 NCKAP3|PLC-II|PLC1|PLC148|PLCgamma1 HGNC:9065|MIM:172420|Ensembl:ENSG00000124181|HPRD:01398|Vega:OTTHUMG00000033082 20 20q12-q13.1 phospholipase C, gamma 1 protein-coding PLCG1 phospholipase C, gamma 1 O 1-phosphatidyl-D-myo-inositol-4,5-bisphosphate|1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase gamma-1|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase gamma 1|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase gamma-1|PLC-148|PLC-gamma-1|inositoltrisphosphohydrolase|monophosphatidylinositol phosphodiesterase|phosphatidylinositol phospholipase C|phosphoinositidase C|phosphoinositide phospholipase C|phosphoinositide phospholipase C-gamma-1|phospholipase C, gamma 1 (formerly subtype 148)|phospholipase C-148|phospholipase C-II|phospholipase C-gamma-1|triphosphoinositide phosphodiesterase 20121230 -9606 5336 PLCG2 - APLAID|FCAS3 HGNC:9066|MIM:600220|Ensembl:ENSG00000197943|HPRD:02570|Vega:OTTHUMG00000176532 16 16q24.1 phospholipase C, gamma 2 (phosphatidylinositol-specific) protein-coding PLCG2 phospholipase C, gamma 2 (phosphatidylinositol-specific) O 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase gamma-2|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase gamma-2|PLC-IV|PLC-gamma-2|phosphoinositide phospholipase C-gamma-2|phospholipase C-IV 20121230 -9606 5337 PLD1 - - HGNC:9067|MIM:602382|Ensembl:ENSG00000075651|HPRD:03855|Vega:OTTHUMG00000156947 3 3q26 phospholipase D1, phosphatidylcholine-specific protein-coding PLD1 phospholipase D1, phosphatidylcholine-specific O choline phosphatase 1|phosphatidylcholine-hydrolyzing phospholipase D1|phospholipase D1 20121230 -9606 5338 PLD2 - - HGNC:9068|MIM:602384|Ensembl:ENSG00000129219|HPRD:03857|Vega:OTTHUMG00000090779 17 17p13.1 phospholipase D2 protein-coding PLD2 phospholipase D2 O PLD1C|choline phosphatase 2|hPLD2|phosphatidylcholine-hydrolyzing phospholipase D2 20121230 -9606 5339 PLEC - EBS1|EBSO|HD1|LGMD2Q|PCN|PLEC1|PLEC1b|PLTN HGNC:9069|MIM:601282|Ensembl:ENSG00000178209|HPRD:03180|Vega:OTTHUMG00000165291 8 8q24 plectin protein-coding PLEC plectin O hemidesmosomal protein 1|plectin 1, intermediate filament binding protein 500kDa|plectin-1 20121230 -9606 5340 PLG RP1-81D8.1 - HGNC:9071|MIM:173350|Ensembl:ENSG00000122194|HPRD:01417|Vega:OTTHUMG00000015957 6 6q26 plasminogen protein-coding PLG plasminogen O plasmin 20121230 -9606 5341 PLEK - P47 HGNC:9070|MIM:173570|Ensembl:ENSG00000115956|HPRD:15935|Vega:OTTHUMG00000129562 2 2p13.3 pleckstrin protein-coding PLEK pleckstrin O platelet 47 kDa protein 20121230 -9606 5342 PLGLB2 - PLGP1 HGNC:9073|Ensembl:ENSG00000125551|HPRD:01416|Vega:OTTHUMG00000153273 2 2p11.2 plasminogen-like B2 protein-coding PLGLB2 plasminogen-like B2 O plasminogen pseudogene 1|plasminogen-like protein B|plasminogen-related protein B|type B plasminogen related 20121230 -9606 5343 PLGLB1 - PLGL|PLGP1|PRGB|PRP-B HGNC:9072|MIM:173340|Ensembl:ENSG00000183281|Vega:OTTHUMG00000154612 2 2p11.2 plasminogen-like B1 protein-coding PLGLB1 plasminogen-like B1 O plasminogen-like protein B|plasminogen-related protein B|type B plasminogen related 20121209 -9606 5345 SERPINF2 - A2AP|AAP|ALPHA-2-PI|API|PLI HGNC:9075|MIM:613168|Ensembl:ENSG00000167711|HPRD:02029|Vega:OTTHUMG00000090552 17 17p13 serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2 protein-coding SERPINF2 serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2 O alpha-2-AP|alpha-2-antiplasmin|alpha-2-plasmin inhibitor|serine (or cysteine) proteinase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2|serpin F2 20121230 -9606 5346 PLIN1 - FPLD4|PERI|PLIN HGNC:9076|MIM:170290|Ensembl:ENSG00000166819|HPRD:01364|Vega:OTTHUMG00000149813 15 15q26 perilipin 1 protein-coding PLIN1 perilipin 1 O lipid droplet-associated protein|perilipin-1 20121230 -9606 5347 PLK1 - PLK|STPK13 HGNC:9077|MIM:602098|Ensembl:ENSG00000166851|HPRD:03652|Vega:OTTHUMG00000096984 16 16p12.2 polo-like kinase 1 protein-coding PLK1 polo-like kinase 1 O PLK-1|cell cycle regulated protein kinase|polo (Drosophia)-like kinase|polo like kinase|serine/threonine-protein kinase 13|serine/threonine-protein kinase PLK1 20121230 -9606 5348 FXYD1 - PLM HGNC:4025|MIM:602359|Ensembl:ENSG00000266964|HPRD:03837|Vega:OTTHUMG00000182359 19 19q13.1 FXYD domain containing ion transport regulator 1 protein-coding FXYD1 FXYD domain containing ion transport regulator 1 O phospholemman 20121230 -9606 5349 FXYD3 - MAT8|PLML HGNC:4027|MIM:604996|Ensembl:ENSG00000089356|HPRD:05410 19 19q13.12 FXYD domain containing ion transport regulator 3 protein-coding FXYD3 FXYD domain containing ion transport regulator 3 O FXYD domain-containing ion transport regulator 3|chloride conductance inducer protein Mat-8|mammary tumor 8 kDa protein|phospholemman-like protein 20121230 -9606 5350 PLN RP3-509L4.2 CMD1P|CMH18|PLB HGNC:9080|MIM:172405|Ensembl:ENSG00000198523|HPRD:01395|Vega:OTTHUMG00000015462 6 6q22.1 phospholamban protein-coding PLN phospholamban O cardiac phospholamban 20121230 -9606 5351 PLOD1 RP5-1077B9.2 LH|LH1|LLH|PLOD HGNC:9081|MIM:153454|Ensembl:ENSG00000083444|HPRD:01086|Vega:OTTHUMG00000002393 1 1p36.22 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 1 protein-coding PLOD1 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 1 O lysine hydroxylase|lysyl hydroxlase 1|procollagen-lysine 1, 2-oxoglutarate 5-dioxygenase 1|procollagen-lysine,2-oxoglutarate 5-dioxygenase 1 20121230 -9606 5352 PLOD2 - LH2|TLH HGNC:9082|MIM:601865|Ensembl:ENSG00000152952|HPRD:03519|Vega:OTTHUMG00000159417 3 3q24 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 2 protein-coding PLOD2 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 2 O lysine hydroxylase 2|lysyl hydroxlase 2|lysyl hydroxylase 2|procollagen-lysine,2-oxoglutarate 5-dioxygenase 2|telopeptide lysyl hydroxylase 20121230 -9606 5354 PLP1 GHc-698D2.1 HLD1|MMPL|PLP|PLP/DM20|PMD|SPG2 HGNC:9086|MIM:300401|Ensembl:ENSG00000123560|HPRD:02321|Vega:OTTHUMG00000022111 X Xq22 proteolipid protein 1 protein-coding PLP1 proteolipid protein 1 O lipophilin|major myelin proteolipid protein|myelin proteolipid protein 20121230 -9606 5355 PLP2 - A4|A4LSB HGNC:9087|MIM:300112|Ensembl:ENSG00000102007|HPRD:02121|Vega:OTTHUMG00000021513 X Xp11.23 proteolipid protein 2 (colonic epithelium-enriched) protein-coding PLP2 proteolipid protein 2 (colonic epithelium-enriched) O A4 differentiation-dependent protein|differentiation-dependent protein A4|intestinal membrane A4 protein|proteolipid protein 2 20121230 -9606 5356 PLRG1 - Cwc1|PRL1|PRP46|PRPF46|TANGO4 HGNC:9089|MIM:605961|Ensembl:ENSG00000171566|HPRD:16181|Vega:OTTHUMG00000161411 4 4q31.2-q32.1 pleiotropic regulator 1 protein-coding PLRG1 pleiotropic regulator 1 O pleiotropic regulator 1 (PRL1 homolog, Arabidopsis)|transport and golgi organization 4 homolog 20121230 -9606 5357 PLS1 - - HGNC:9090|MIM:602734|Ensembl:ENSG00000120756|HPRD:04110|Vega:OTTHUMG00000159292 3 3q23 plastin 1 protein-coding PLS1 plastin 1 O I plastin|fimbrin|intestine specific plastin|intestine-specific plastin|plastin-1 20121230 -9606 5358 PLS3 - T-plastin HGNC:9091|MIM:300131|Ensembl:ENSG00000102024|HPRD:02133|Vega:OTTHUMG00000022237 X Xq23 plastin 3 protein-coding PLS3 plastin 3 O T fimbrin|T plastin|plastin-3 20121230 -9606 5359 PLSCR1 - MMTRA1B HGNC:9092|MIM:604170|Ensembl:ENSG00000188313|HPRD:08855|Vega:OTTHUMG00000159427 3 3q23 phospholipid scramblase 1 protein-coding PLSCR1 phospholipid scramblase 1 O PL scramblase 1|ca(2+)-dependent phospholipid scramblase 1|erythrocyte phospholipid scramblase 20121230 -9606 5360 PLTP - BPIFE|HDLCQ9 HGNC:9093|MIM:172425|Ensembl:ENSG00000100979|HPRD:01399|Vega:OTTHUMG00000033047 20 20q13.12 phospholipid transfer protein protein-coding PLTP phospholipid transfer protein O BPI fold containing family E|lipid transfer protein II 20121230 -9606 5361 PLXNA1 - NOV|NOVP|PLEXIN-A1|PLXN1 HGNC:9099|MIM:601055|Ensembl:ENSG00000114554|HPRD:11868|Vega:OTTHUMG00000044222 3 3q21.3 plexin A1 protein-coding PLXNA1 plexin A1 O plexin 1|plexin-A1|semaphorin receptor NOV 20121230 -9606 5362 PLXNA2 RP11-328D5.3 OCT|PLXN2 HGNC:9100|MIM:601054|Ensembl:ENSG00000076356|HPRD:03033|Vega:OTTHUMG00000036564 1 1q32.2 plexin A2 protein-coding PLXNA2 plexin A2 O plexin 2|plexin-A2|semaphorin receptor OCT|transmembrane protein OCT 20121230 -9606 5364 PLXNB1 - PLEXIN-B1|PLXN5|SEP HGNC:9103|MIM:601053|Ensembl:ENSG00000164050|HPRD:03032|Vega:OTTHUMG00000133527 3 3p21.31 plexin B1 protein-coding PLXNB1 plexin B1 O plexin 5|plexin-B1|semaphorin receptor SEP 20121230 -9606 5365 PLXNB3 - PLEXB3|PLEXR|PLXN6 HGNC:9105|MIM:300214|Ensembl:ENSG00000198753|HPRD:02198|Vega:OTTHUMG00000024217 X Xq28 plexin B3 protein-coding PLXNB3 plexin B3 O plexin 6|plexin-B3 20121230 -9606 5366 PMAIP1 - APR|NOXA HGNC:9108|MIM:604959|Ensembl:ENSG00000141682|HPRD:12002|Vega:OTTHUMG00000132765 18 18q21.32 phorbol-12-myristate-13-acetate-induced protein 1 protein-coding PMAIP1 phorbol-12-myristate-13-acetate-induced protein 1 O PMA-induced protein 1|adult T cell leukemia-derived PMA-responsive|immediate-early-response protein APR|protein Noxa 20121230 -9606 5367 PMCH - MCH HGNC:9109|MIM:176795|Ensembl:ENSG00000183395|HPRD:01459|Vega:OTTHUMG00000170479 12 12q23.2 pro-melanin-concentrating hormone protein-coding PMCH pro-melanin-concentrating hormone O pro-MCH 20121230 -9606 5368 PNOC - PPNOC HGNC:9163|MIM:601459|Ensembl:ENSG00000168081|HPRD:03268|Vega:OTTHUMG00000102125 8 8p21 prepronociceptin protein-coding PNOC prepronociceptin O nociceptin|nocistatin|propronociceptin 20121230 -9606 5369 PMCHL1 - - HGNC:9110|MIM:176793|HPRD:15940 5 5p14.3 pro-melanin-concentrating hormone-like 1, pseudogene pseudo PMCHL1 pro-melanin-concentrating hormone-like 1, pseudogene O - 20121230 -9606 5370 PMCHL2 - - HGNC:9111|MIM:176794|HPRD:15941 5 5q13 pro-melanin-concentrating hormone-like 2, pseudogene pseudo PMCHL2 pro-melanin-concentrating hormone-like 2, pseudogene O - 20121230 -9606 5371 PML - MYL|PP8675|RNF71|TRIM19 HGNC:9113|MIM:102578|Ensembl:ENSG00000140464|HPRD:00023|Vega:OTTHUMG00000137607 15 15q22 promyelocytic leukemia protein-coding PML promyelocytic leukemia O RING finger protein 71|probable transcription factor PML|promyelocytic leukemia protein|promyelocytic leukemia, inducer of|protein PML|tripartite motif protein TRIM19|tripartite motif-containing protein 19 20121230 -9606 5372 PMM1 - Sec53 HGNC:9114|MIM:601786|Ensembl:ENSG00000100417|HPRD:03473|Vega:OTTHUMG00000150972 22 22q13.2 phosphomannomutase 1 protein-coding PMM1 phosphomannomutase 1 O PMM 1|PMMH-22|brain glucose-1,6-bisphosphatase 20121230 -9606 5373 PMM2 - CDG1|CDG1a|CDGS|PMI|PMI1|PMM 2 HGNC:9115|MIM:601785|Ensembl:ENSG00000140650|HPRD:03472|Vega:OTTHUMG00000129697 16 16p13 phosphomannomutase 2 protein-coding PMM2 phosphomannomutase 2 O phosphomannose isomerase 1 20121230 -9606 5375 PMP2 - FABP8|M-FABP|MP2|P2 HGNC:9117|MIM:170715|Ensembl:ENSG00000147588|HPRD:01366|Vega:OTTHUMG00000164600 8 8q21.3-q22.1 peripheral myelin protein 2 protein-coding PMP2 peripheral myelin protein 2 O myelin P2 protein 20121230 -9606 5376 PMP22 - CMT1A|CMT1E|DSS|GAS-3|HMSNIA|HNPP|Sp110 HGNC:9118|MIM:601097|Ensembl:ENSG00000109099|HPRD:03059|Vega:OTTHUMG00000058960 17 17p12 peripheral myelin protein 22 protein-coding PMP22 peripheral myelin protein 22 O PMP-22|growth arrest-specific 3|growth arrest-specific protein 3 20121230 -9606 5378 PMS1 - HNPCC3|PMSL1|hPMS1 HGNC:9121|MIM:600258|Ensembl:ENSG00000064933|HPRD:02597|Vega:OTTHUMG00000132664 2 2q31.1 PMS1 postmeiotic segregation increased 1 (S. cerevisiae) protein-coding PMS1 PMS1 postmeiotic segregation increased 1 (S. cerevisiae) O DNA mismatch repair protein PMS1|PMS1 protein homolog 1|human homolog of yeast mutL|mismatch repair gene PMSL1|rhabdomyosarcoma antigen MU-RMS-40.10B|rhabdomyosarcoma antigen MU-RMS-40.10E 20121230 -9606 5379 PMS2P1 tcag7.1111 PMS2L1|PMS2L13|PMS2L6|PMS2L7|PMS2L8|PMS3|PMS8|PMSR1|PMSR2 HGNC:9123|MIM:605038 7 7q22.1 postmeiotic segregation increased 2 pseudogene 1 pseudo PMS2P1 postmeiotic segregation increased 2 pseudogene 1 O - 20121230 -9606 5380 PMS2L2 - PMS4 HGNC:9127|HPRD:17865 7 7q11.23 postmeiotic segregation increased 2-like 2 pseudogene pseudo PMS2L2 postmeiotic segregation increased 2-like 2 pseudogene O - 20121230 -9606 5382 PMS2P4 - PMS2L4|PMS6 HGNC:9129 7 7q11.22 postmeiotic segregation increased 2 pseudogene 4 pseudo PMS2P4 postmeiotic segregation increased 2 pseudogene 4 O - 20121230 -9606 5383 PMS2P5 - PMS2L5|PMS7 HGNC:9130|HPRD:17867 7 7q11.23 postmeiotic segregation increased 2 pseudogene 5 pseudo PMS2P5 postmeiotic segregation increased 2 pseudogene 5 O - 20121230 -9606 5387 PMS2P3 - PMS2L3|PMS2L9|PMS5|PMSR3 HGNC:9128|HPRD:17866 7 7q11.23 postmeiotic segregation increased 2 pseudogene 3 pseudo PMS2P3 postmeiotic segregation increased 2 pseudogene 3 O - 20121230 -9606 5391 PMS2P9 - PMS2L17|PMS2LP1|PMSR5 HGNC:9135 7 7q11 postmeiotic segregation increased 2 pseudogene 9 pseudo PMS2P9 postmeiotic segregation increased 2 pseudogene 9 O - 20121021 -9606 5393 EXOSC9 - PM/Scl-75|PMSCL1|RRP45|Rrp45p|p5|p6 HGNC:9137|MIM:606180|Ensembl:ENSG00000123737|HPRD:07315|Vega:OTTHUMG00000128783 4 4q27 exosome component 9 protein-coding EXOSC9 exosome component 9 O P75 polymyositis-scleroderma overlap syndrome associated autoantigen|P75 polymyositis-scleroderma overlap syndrome-associated autoantigen|PMSCL autoantigen, 75kD|autoantigen PM/Scl 1|exosome complex component RRP45|exosome complex exonuclease RRP45|polymyositis/scleroderma autoantigen 1, 75kDa 20121230 -9606 5394 EXOSC10 - PM-Scl|PM/Scl-100|PMSCL|PMSCL2|RRP6|Rrp6p|p2|p3|p4 HGNC:9138|MIM:605960|Ensembl:ENSG00000171824|HPRD:16180|Vega:OTTHUMG00000002123 1 1p36.22 exosome component 10 protein-coding EXOSC10 exosome component 10 O P100 polymyositis-scleroderma overlap syndrome-associated autoantigen|autoantigen PM-SCL|autoantigen PM/Scl 2|polymyositis/scleroderma autoantigen 100 kDa|polymyositis/scleroderma autoantigen 2 (100kD)|polymyositis/scleroderma autoantigen 2, 100kDa 20121230 -9606 5395 PMS2 - HNPCC4|PMS2CL|PMSL2 HGNC:9122|MIM:600259|Ensembl:ENSG00000122512|HPRD:02598|Vega:OTTHUMG00000023135 7 7p22.2 PMS2 postmeiotic segregation increased 2 (S. cerevisiae) protein-coding PMS2 PMS2 postmeiotic segregation increased 2 (S. cerevisiae) O DNA mismatch repair protein PMS2|H_DJ0042M02.9|PMS1 protein homolog 2|mismatch repair endonuclease PMS2 20121230 -9606 5396 PRRX1 - AGOTC|PHOX1|PMX1|PRX-1|PRX1 HGNC:9142|MIM:167420|Ensembl:ENSG00000116132|HPRD:01337|Vega:OTTHUMG00000035231 1 1q24 paired related homeobox 1 protein-coding PRRX1 paired related homeobox 1 O homeobox protein PHOX1|paired mesoderm homeo box 1|paired mesoderm homeobox 1 isoform pmx-1b|paired mesoderm homeobox protein 1|paired-related homeobox protein 1 20121230 -9606 5406 PNLIP RP11-33D13.1 PL|PNLIPD|PTL HGNC:9155|MIM:246600|Ensembl:ENSG00000175535|HPRD:02005|Vega:OTTHUMG00000019103 10 10q26.1 pancreatic lipase protein-coding PNLIP pancreatic lipase O pancreatic triacylglycerol lipase|triacylglycerol acylhydrolase 20121230 -9606 5407 PNLIPRP1 - PLRP1 HGNC:9156|MIM:604422|Ensembl:ENSG00000187021|HPRD:05109|Vega:OTTHUMG00000019109 10 10q25.3 pancreatic lipase-related protein 1 protein-coding PNLIPRP1 pancreatic lipase-related protein 1 O PL-RP1 20121230 -9606 5408 PNLIPRP2 - PLRP2 HGNC:9157|MIM:604423|Ensembl:ENSG00000165862|HPRD:05110|Vega:OTTHUMG00000019110 10 10q25.3 pancreatic lipase-related protein 2 protein-coding PNLIPRP2 pancreatic lipase-related protein 2 O PL-RP2|galactolipase 20121230 -9606 5409 PNMT - PENT|PNMTase HGNC:9160|MIM:171190|Ensembl:ENSG00000141744|HPRD:07176|Vega:OTTHUMG00000133209 17 17q phenylethanolamine N-methyltransferase protein-coding PNMT phenylethanolamine N-methyltransferase O noradrenaline N-methyltransferase|phenylethanolamine N-methylase 20121230 -9606 5411 PNN - DRS|DRSP|SDK3|memA HGNC:9162|MIM:603154|Ensembl:ENSG00000100941|HPRD:04401|Vega:OTTHUMG00000028821 14 14q21.1 pinin, desmosome associated protein protein-coding PNN pinin, desmosome associated protein O 140 kDa nuclear and cell adhesion-related phosphoprotein|SR-like protein|desmosome-associated protein|domain-rich serine protein|melanoma metastasis clone A protein|neutrophil protein|nuclear protein SDK3|pinin 20121230 -9606 5412 UBL3 - HCG-1|PNSC1 HGNC:12504|MIM:604711|Ensembl:ENSG00000122042|HPRD:05275|Vega:OTTHUMG00000016661 13 13q12-q13 ubiquitin-like 3 protein-coding UBL3 ubiquitin-like 3 O MUB|hsMUB|membrane-anchored ubiquitin-fold protein|protein HCG-1|ubiquitin-like protein 3 20121230 -9606 5413 SEPT5 - CDCREL|CDCREL-1|CDCREL1|H5|HCDCREL-1|PNUTL1 HGNC:9164|MIM:602724|Ensembl:ENSG00000184702|HPRD:04100|Vega:OTTHUMG00000150399 22 22q11.21 septin 5 protein-coding SEPT5 septin 5 O cell division control related protein 1|peanut-like 1|platelet glycoprotein Ib beta chain|septin-5 20121230 -9606 5414 SEPT4 hucep-7 ARTS|BRADEION|CE5B3|H5|MART|PNUTL2|SEP4|hCDCREL-2 HGNC:9165|MIM:603696|Ensembl:ENSG00000108387|HPRD:04738|Vega:OTTHUMG00000179243 17 17q22 septin 4 protein-coding SEPT4 septin 4 O CE5B3 beta|apoptosis-related protein in the TGF-beta signaling pathway|bradeion beta|brain protein H5|cell division control-related protein 2|cerebral protein 7|peanut-like protein 2|septin-4|septin-M 20121230 -9606 5420 PODXL - Gp200|PC|PCLP|PCLP-1 HGNC:9171|MIM:602632|Ensembl:ENSG00000128567|HPRD:04025|Vega:OTTHUMG00000154918 7 7q32-q33 podocalyxin-like protein-coding PODXL podocalyxin-like O GCTM-2 antigen|podocalyxin|podocalyxin-like protein 1 20121230 -9606 5422 POLA1 - POLA|p180 HGNC:9173|MIM:312040|Ensembl:ENSG00000101868|HPRD:02416|Vega:OTTHUMG00000021277 X Xp22.1-p21.3 polymerase (DNA directed), alpha 1, catalytic subunit protein-coding POLA1 polymerase (DNA directed), alpha 1, catalytic subunit O DNA polymerase alpha 1 catalytic subunit|DNA polymerase alpha catalytic subunit|DNA polymerase alpha catalytic subunit p180|DNA polymerase alpha p180 subunit|polymerase (DNA-directed), alpha (70kD) 20121230 -9606 5423 POLB - - HGNC:9174|MIM:174760|Ensembl:ENSG00000070501|HPRD:07517|Vega:OTTHUMG00000164093 8 8p11.2 polymerase (DNA directed), beta protein-coding POLB polymerase (DNA directed), beta O DNA pol beta|DNA polymerase beta|DNA polymerase beta subunit|mutant DNA polymerase beta 20121230 -9606 5424 POLD1 - CDC2|POLD HGNC:9175|MIM:174761|Ensembl:ENSG00000062822|HPRD:08882 19 19q13.3 polymerase (DNA directed), delta 1, catalytic subunit protein-coding POLD1 polymerase (DNA directed), delta 1, catalytic subunit O CDC2 homolog|DNA polymerase delta catalytic subunit|DNA polymerase subunit delta p125|polymerase (DNA directed), delta 1, catalytic subunit 125kDa 20121230 -9606 5425 POLD2 - - HGNC:9176|MIM:600815|Ensembl:ENSG00000106628|HPRD:15982|Vega:OTTHUMG00000022909 7 7p13 polymerase (DNA directed), delta 2, accessory subunit protein-coding POLD2 polymerase (DNA directed), delta 2, accessory subunit O DNA polymerase delta subunit 2|DNA polymerase delta subunit p50|Pol delta B subunit (p50)|polymerase (DNA directed), delta 2, regulatory subunit 50kDa 20121230 -9606 5426 POLE - POLE1 HGNC:9177|MIM:174762|Ensembl:ENSG00000177084|HPRD:07177|Vega:OTTHUMG00000168045 12 12q24.3 polymerase (DNA directed), epsilon, catalytic subunit protein-coding POLE polymerase (DNA directed), epsilon, catalytic subunit O DNA polymerase II subunit A|DNA polymerase epsilon catalytic subunit A 20121230 -9606 5427 POLE2 - DPE2 HGNC:9178|MIM:602670|Ensembl:ENSG00000100479|HPRD:16007|Vega:OTTHUMG00000170813 14 14q21-q22 polymerase (DNA directed), epsilon 2, accessory subunit protein-coding POLE2 polymerase (DNA directed), epsilon 2, accessory subunit O DNA polymerase II subunit 2|DNA polymerase epsilon subunit 2|DNA polymerase epsilon subunit B|polymerase (DNA directed), epsilon 2 (p59 subunit) 20121230 -9606 5428 POLG - MDP1|MIRAS|MTDPS4A|MTDPS4B|PEO|POLG1|POLGA|SANDO|SCAE HGNC:9179|MIM:174763|Ensembl:ENSG00000140521|HPRD:01438|Vega:OTTHUMG00000149646 15 15q25 polymerase (DNA directed), gamma protein-coding POLG polymerase (DNA directed), gamma O DNA polymerase subunit gamma-1|PolG, catalytic subunit|PolG-alpha|mitochondrial DNA polymerase catalytic subunit 20121230 -9606 5429 POLH RP11-22I24.1 RAD30|RAD30A|XP-V|XPV HGNC:9181|MIM:603968|Ensembl:ENSG00000170734|HPRD:04913|Vega:OTTHUMG00000014743 6 6p21.1 polymerase (DNA directed), eta protein-coding POLH polymerase (DNA directed), eta O DNA polymerase eta|RAD30 homolog A|xeroderma pigmentosum variant type protein 20121230 -9606 5430 POLR2A - POLR2|POLRA|RPB1|RPBh1|RPO2|RPOL2|RpIILS|hRPB220|hsRPB1 HGNC:9187|MIM:180660|Ensembl:ENSG00000181222|HPRD:08916|Vega:OTTHUMG00000177594 17 17p13.1 polymerase (RNA) II (DNA directed) polypeptide A, 220kDa protein-coding POLR2A polymerase (RNA) II (DNA directed) polypeptide A, 220kDa O DNA-directed RNA polymerase II largest subunit, RNA polymerase II 220 kd subunit|DNA-directed RNA polymerase II subunit A|DNA-directed RNA polymerase II subunit RPB1|DNA-directed RNA polymerase III largest subunit|RNA polymerase II subunit B1|RNA-directed RNA polymerase II subunit RPB1 20121230 -9606 5431 POLR2B - POL2RB|RPB2|hRPB140|hsRPB2 HGNC:9188|MIM:180661|Ensembl:ENSG00000047315|HPRD:15943|Vega:OTTHUMG00000128771 4 4q12 polymerase (RNA) II (DNA directed) polypeptide B, 140kDa protein-coding POLR2B polymerase (RNA) II (DNA directed) polypeptide B, 140kDa O DNA directed RNA polymerase II 140 kDa polypeptide, RNA polymerase II subunit 2, RNA polymerase II second largest subunit|DNA-directed RNA polymerase II 140 kDa polypeptide|DNA-directed RNA polymerase II subunit B|DNA-directed RNA polymerase II subunit RPB2|RNA polymerase II subunit 2|RNA polymerase II subunit B2 20121230 -9606 5432 POLR2C A-152E5.7 RPB3|RPB31|hRPB33|hsRPB3 HGNC:9189|MIM:180663|Ensembl:ENSG00000102978|HPRD:15945|Vega:OTTHUMG00000133464 16 16q13-q21 polymerase (RNA) II (DNA directed) polypeptide C, 33kDa protein-coding POLR2C polymerase (RNA) II (DNA directed) polypeptide C, 33kDa O DNA-directed RNA polymerase II 33 kDa polypeptide|DNA-directed RNA polymerase II subunit C|DNA-directed RNA polymerase II subunit RPB3|RNA polymerase II subunit 3|RNA polymerase II subunit B3|RPB33 20121230 -9606 5433 POLR2D - HSRBP4|HSRPB4|RBP4|RPB16 HGNC:9191|MIM:606017|Ensembl:ENSG00000144231|HPRD:16191|Vega:OTTHUMG00000131531 2 2q21 polymerase (RNA) II (DNA directed) polypeptide D protein-coding POLR2D polymerase (RNA) II (DNA directed) polypeptide D O DNA-directed RNA polymerase II 16 kDa polypeptide|DNA-directed RNA polymerase II subunit D|DNA-directed RNA polymerase II subunit RPB4|RNA polymerase II 16 kDa subunit|RNA polymerase II subunit B4|RNA polymerase II subunit hsRBP4 20121230 -9606 5434 POLR2E - RPABC1|RPB5|XAP4|hRPB25|hsRPB5 HGNC:9192|MIM:180664|Ensembl:ENSG00000099817|HPRD:15946|Vega:OTTHUMG00000181873 19 19p13.3 polymerase (RNA) II (DNA directed) polypeptide E, 25kDa protein-coding POLR2E polymerase (RNA) II (DNA directed) polypeptide E, 25kDa O DNA directed RNA polymerase II 23 kda polypeptide|DNA-directed RNA polymerase II 23 kDa polypeptide|DNA-directed RNA polymerase II subunit E|DNA-directed RNA polymerases I, II, and III subunit RPABC1|RNA polymerases I, II, and III subunit ABC1|RPB5 homolog 20121230 -9606 5435 POLR2F - HRBP14.4|POLRF|RPABC2|RPB14.4|RPB6 HGNC:9193|MIM:604414|Ensembl:ENSG00000100142|HPRD:05105|Vega:OTTHUMG00000151160 22 22q13.1 polymerase (RNA) II (DNA directed) polypeptide F protein-coding POLR2F polymerase (RNA) II (DNA directed) polypeptide F O DNA directed RNA polymerase II 14.4 kda polypeptide|DNA-directed RNA polymerase II subunit F|DNA-directed RNA polymerases I, II, and III 14.4 kDa polypeptide|DNA-directed RNA polymerases I, II, and III subunit RPABC2|RNA Polymerase II subunit 14.4 kD|RNA polymerases I, II, and III subunit ABC2|RPABC14.4|RPB6 homolog|RPC15 20121230 -9606 5436 POLR2G - RPB19|RPB7|hRPB19|hsRPB7 HGNC:9194|MIM:602013|Ensembl:ENSG00000168002|HPRD:15995|Vega:OTTHUMG00000167609 11 11q13.1 polymerase (RNA) II (DNA directed) polypeptide G protein-coding POLR2G polymerase (RNA) II (DNA directed) polypeptide G O DNA directed RNA polymerase II 19 kda polypeptide|DNA-directed RNA polymerase II 19 kDa polypeptide|DNA-directed RNA polymerase II subunit G|DNA-directed RNA polymerase II subunit RPB7|RNA polymerase II 19 kDa subunit|RNA polymerase II seventh subunit|RNA polymerase II subunit B7 20121230 -9606 5437 POLR2H - RPABC3|RPB17|RPB8|hsRPB8 HGNC:9195|MIM:606023|Ensembl:ENSG00000163882|HPRD:09082|Vega:OTTHUMG00000156746 3 3q28 polymerase (RNA) II (DNA directed) polypeptide H protein-coding POLR2H polymerase (RNA) II (DNA directed) polypeptide H O DNA-directed RNA polymerase II subunit H|DNA-directed RNA polymerases I, II, and III 17.1 kDa polypeptide|DNA-directed RNA polymerases I, II, and III subunit RPABC3|RNA polymerases I, II, and III subunit ABC3|RPB8 homolog|hRPB8 20121230 -9606 5438 POLR2I - RPB9|hRPB14.5 HGNC:9196|MIM:180662|Ensembl:ENSG00000105258|HPRD:15944|Vega:OTTHUMG00000181749 19 19q12 polymerase (RNA) II (DNA directed) polypeptide I, 14.5kDa protein-coding POLR2I polymerase (RNA) II (DNA directed) polypeptide I, 14.5kDa O DNA-directed RNA polymerase II 14.5 kDa polypeptide|DNA-directed RNA polymerase II subunit I|DNA-directed RNA polymerase II subunit RPB9|RNA polymerase II 14.5 kDa subunit|RNA polymerase II subunit B9|RPB14.5 20121230 -9606 5439 POLR2J - POLR2J1|RPB11|RPB11A|RPB11m|hRPB14 HGNC:9197|MIM:604150|Ensembl:ENSG00000005075|HPRD:16038|Vega:OTTHUMG00000150387 7 7q22.1 polymerase (RNA) II (DNA directed) polypeptide J, 13.3kDa protein-coding POLR2J polymerase (RNA) II (DNA directed) polypeptide J, 13.3kDa O DNA-directed RNA polymerase II subunit J-1|DNA-directed RNA polymerase II subunit RPB11-a|RNA polymerase II 13.3 kDa subunit|RNA polymerase II subunit B11-a 20121230 -9606 5440 POLR2K - ABC10-alpha|RPABC4|RPB10alpha|RPB12|RPB7.0|hRPB7.0|hsRPB10a HGNC:9198|MIM:606033|Ensembl:ENSG00000147669|HPRD:05826|Vega:OTTHUMG00000164705 8 8q22.2 polymerase (RNA) II (DNA directed) polypeptide K, 7.0kDa protein-coding POLR2K polymerase (RNA) II (DNA directed) polypeptide K, 7.0kDa O DNA directed RNA polymerases I, II, and III 7.0 kda polypeptide|DNA-directed RNA polymerase II subunit K|DNA-directed RNA polymerases I, II, and III subunit RPABC4|RNA polymerase II 7.0 kDa subunit|RNA polymerases I, II, and III subunit ABC4 20121230 -9606 5441 POLR2L - RBP10|RPABC5|RPB10|RPB10beta|RPB7.6|hRPB7.6 HGNC:9199|MIM:601189|Ensembl:ENSG00000177700|HPRD:01155|Vega:OTTHUMG00000133316 11 11p15 polymerase (RNA) II (DNA directed) polypeptide L, 7.6kDa protein-coding POLR2L polymerase (RNA) II (DNA directed) polypeptide L, 7.6kDa O DNA-directed RNA polymerase III subunit L|DNA-directed RNA polymerases I, II, and III subunit RPABC5|RNA polymerase II 7.6 kDa subunit|RNA polymerases I, II, and III subunit ABC5|RPB10 homolog 20121230 -9606 5442 POLRMT - APOLMT|MTRNAP|MTRPOL|h-mtRPOL HGNC:9200|MIM:601778|Ensembl:ENSG00000099821|HPRD:03468|Vega:OTTHUMG00000180611 19 19p13.3 polymerase (RNA) mitochondrial (DNA directed) protein-coding POLRMT polymerase (RNA) mitochondrial (DNA directed) O DNA-directed RNA polymerase, mitochondrial 20121230 -9606 5443 POMC - ACTH|CLIP|LPH|MSH|NPP|POC HGNC:9201|MIM:176830|Ensembl:ENSG00000115138|HPRD:01462|Vega:OTTHUMG00000094764 2 2p23.3 proopiomelanocortin protein-coding POMC proopiomelanocortin O adrenocorticotropic hormone|adrenocorticotropin|alpha-MSH|alpha-melanocyte-stimulating hormone|beta-LPH|beta-MSH|beta-endorphin|beta-melanocyte-stimulating hormone|corticotropin-like intermediary peptide|corticotropin-lipotropin|gamma-LPH|gamma-MSH|lipotropin beta|lipotropin gamma|melanotropin alpha|melanotropin beta|melanotropin gamma|met-enkephalin|opiomelanocortin prepropeptide|pro-ACTH-endorphin|pro-opiomelanocortin|proopiomelanocortin preproprotein 20121230 -9606 5444 PON1 - ESA|MVCD5|PON HGNC:9204|MIM:168820|Ensembl:ENSG00000005421|HPRD:01351|Vega:OTTHUMG00000153894 7 7q21.3 paraoxonase 1 protein-coding PON1 paraoxonase 1 O A-esterase 1|K-45|PON 1|aromatic esterase 1|arylesterase B-type|esterase A|paraoxonase B-type|serum aryldiakylphosphatase|serum aryldialkylphosphatase 1|serum paraoxonase/arylesterase 1 20121230 -9606 5445 PON2 - - HGNC:9205|MIM:602447|Ensembl:ENSG00000105854|HPRD:03903|Vega:OTTHUMG00000153948 7 7q21.3 paraoxonase 2 protein-coding PON2 paraoxonase 2 O A-esterase 2|PON 2|aromatic esterase 2|paraoxonase nirs|serum aryldialkylphosphatase 2|serum paraoxonase/arylesterase 2 20121230 -9606 5446 PON3 - - HGNC:9206|MIM:602720|Ensembl:ENSG00000105852|HPRD:04098|Vega:OTTHUMG00000153917 7 7q21.3 paraoxonase 3 protein-coding PON3 paraoxonase 3 O paraoxanase-3|serum paraoxonase/lactonase 3 20121230 -9606 5447 POR - CPR|CYPOR|P450R HGNC:9208|MIM:124015|Ensembl:ENSG00000127948|HPRD:00485|Vega:OTTHUMG00000130413 7 7q11.2 P450 (cytochrome) oxidoreductase protein-coding POR P450 (cytochrome) oxidoreductase O NADPH--cytochrome P450 reductase|NADPH-dependent cytochrome P450 reductase 20121230 -9606 5449 POU1F1 - CPHD1|GHF-1|PIT1|POU1F1a|Pit-1 HGNC:9210|MIM:173110|Ensembl:ENSG00000064835|HPRD:01409|Vega:OTTHUMG00000158992 3 3p11 POU class 1 homeobox 1 protein-coding POU1F1 POU class 1 homeobox 1 O POU domain, class 1, transcription factor 1|growth hormone factor 1|pituitary-specific positive transcription factor 1|pituitary-specific transcription factor 1 20121230 -9606 5450 POU2AF1 - BOB1|OBF-1|OBF1|OCAB HGNC:9211|MIM:601206|Ensembl:ENSG00000110777|HPRD:03126|Vega:OTTHUMG00000166659 11 11q23.1 POU class 2 associating factor 1 protein-coding POU2AF1 POU class 2 associating factor 1 O B-cell-specific coactivator OBF-1|BOB-1|OCA-B|OCT-binding factor 1|POU domain class 2-associating factor 1|POU domain, class 2, associating factor 1 20121230 -9606 5451 POU2F1 - OCT1|OTF1|oct-1B HGNC:9212|MIM:164175|Ensembl:ENSG00000143190|HPRD:01250|Vega:OTTHUMG00000034436 1 1q24.2 POU class 2 homeobox 1 protein-coding POU2F1 POU class 2 homeobox 1 O NF-A1|OTF-1|Octamer-binding transcription factor-1|POU domain, class 2, transcription factor 1|oct-1|octamer-binding protein 1|octamer-binding transcription factor 1 20121230 -9606 5452 POU2F2 - OCT2|OTF2|Oct-2 HGNC:9213|MIM:164176|Ensembl:ENSG00000028277|HPRD:01251|Vega:OTTHUMG00000165991 19 19q13.2 POU class 2 homeobox 2 protein-coding POU2F2 POU class 2 homeobox 2 O OTF-2|POU domain, class 2, transcription factor 2|homeobox protein|lymphoid-restricted immunoglobulin octamer-binding protein NF-A2|octamer-binding protein 2|octamer-binding transcription factor 2 20121230 -9606 5453 POU3F1 - OCT6|OTF6|SCIP HGNC:9214|MIM:602479|Ensembl:ENSG00000185668|HPRD:03921|Vega:OTTHUMG00000000485 1 1p34.1 POU class 3 homeobox 1 protein-coding POU3F1 POU class 3 homeobox 1 O OTF-6|POU domain transcription factor SCIP|POU domain, class 3, transcription factor 1|octamer-binding protein 6|octamer-binding transcription factor 6 20121230 -9606 5454 POU3F2 - BRN2|N-Oct3|OCT7|OTF-7|OTF7|POUF3|brn-2|oct-7 HGNC:9215|MIM:600494|Ensembl:ENSG00000184486|HPRD:02734|Vega:OTTHUMG00000015258 6 6q16 POU class 3 homeobox 2 protein-coding POU3F2 POU class 3 homeobox 2 O POU domain, class 3, transcription factor 2|brain-2|brain-specific homeobox/POU domain protein 2|nervous system-specific octamer-binding transcription factor N-Oct-3|octamer-binding protein 7|octamer-binding transcription factor 7 20121230 -9606 5455 POU3F3 - BRN1|OTF8 HGNC:9216|MIM:602480|Ensembl:ENSG00000198914|HPRD:03922|Vega:OTTHUMG00000153067 2 2q12.1 POU class 3 homeobox 3 protein-coding POU3F3 POU class 3 homeobox 3 O OTF-8|POU domain, class 3, transcription factor 3|brain-1|brain-specific homeobox/POU domain protein 1|brn-1|oct-8|octamer-binding protein 8|octamer-binding transcription factor 8 20121230 -9606 5456 POU3F4 - BRAIN-4|BRN-4|BRN4|DFN3|DFNX2|OCT-9|OTF-9|OTF9 HGNC:9217|MIM:300039|Ensembl:ENSG00000196767|HPRD:02076|Vega:OTTHUMG00000021919 X Xq21.1 POU class 3 homeobox 4 protein-coding POU3F4 POU class 3 homeobox 4 O POU domain, class 3, transcription factor 4|brain-specific homeobox/POU domain protein 4|octamer-binding transcription factor 9 20121230 -9606 5457 POU4F1 - BRN3A|Oct-T1|RDC-1|brn-3A HGNC:9218|MIM:601632|Ensembl:ENSG00000152192|HPRD:03379|Vega:OTTHUMG00000017119 13 13q31.1 POU class 4 homeobox 1 protein-coding POU4F1 POU class 4 homeobox 1 O POU domain, class 4, transcription factor 1|brain-3A|brain-specific homeobox/POU domain protein 3A|homeobox/POU domain protein RDC-1 20121230 -9606 5458 POU4F2 - BRN3.2|BRN3B|Brn-3b HGNC:9219|MIM:113725|Ensembl:ENSG00000151615|HPRD:00220|Vega:OTTHUMG00000162045 4 4q31.2 POU class 4 homeobox 2 protein-coding POU4F2 POU class 4 homeobox 2 O Brn3b POU domain transcription factor|POU domain class 4 transcription factor 2|POU domain protein|POU domain, class 4, transcription factor 2|brain-3B|brain-specific homeobox/POU domain protein 3B 20121230 -9606 5459 POU4F3 - BRN3C|DFNA15 HGNC:9220|MIM:602460|Ensembl:ENSG00000091010|HPRD:03911|Vega:OTTHUMG00000129684 5 5q32 POU class 4 homeobox 3 protein-coding POU4F3 POU class 4 homeobox 3 O POU domain, class 4, transcription factor 3|brain-3C|brain-specific homeobox/POU domain protein 3C|brn-3C 20121230 -9606 5460 POU5F1 DADB-104B20.2 OCT3|OCT4|OTF-3|OTF3|OTF4|Oct-3|Oct-4 HGNC:9221|MIM:164177|Ensembl:ENSG00000204531|HPRD:01252|Vega:OTTHUMG00000031206 6 6p21.31 POU class 5 homeobox 1 protein-coding POU5F1 POU class 5 homeobox 1 O POU domain transcription factor OCT4|POU domain, class 5, transcription factor 1|POU-type homeodomain-containing DNA-binding protein|octamer-binding protein 3|octamer-binding protein 4|octamer-binding transcription factor 3|octamer-binding transcription factor-3 20121230 -9606 5462 POU5F1B - OCT4-PG1|OTF3C|OTF3P1|POU5F1P1|POU5F1P4|POU5FLC20|POU5FLC8 HGNC:9223|Ensembl:ENSG00000212993 8 8q24.21 POU class 5 homeobox 1B protein-coding POU5F1B POU class 5 homeobox 1B O POU 5 domain protein|POU class 5 homeobox 1 pseudogene 1|POU domain transcription factor OCT4-pg1|POU domain transcription factor Oct-4|POU domain, class 5, transcription factor 1 pseudogene 1|octamer binding protein 3_like sequence|putative POU domain, class 5, transcription factor 1B 20121230 -9606 5463 POU6F1 - BRN5|MPOU|TCFB1 HGNC:9224|Ensembl:ENSG00000184271|HPRD:17883|Vega:OTTHUMG00000169622 12 12q13.13 POU class 6 homeobox 1 protein-coding POU6F1 POU class 6 homeobox 1 O POU domain, class 6, transcription factor 1|brain-5|brain-specific homeobox/POU domain protein 5|brn-5|mPOU homeobox protein 20121230 -9606 5464 PPA1 RP11-367H5.1 IOPPP|PP|PP1|SID6-8061 HGNC:9226|MIM:179030|Ensembl:ENSG00000180817|HPRD:01527|Vega:OTTHUMG00000018399 10 10q11.1-q24 pyrophosphatase (inorganic) 1 protein-coding PPA1 pyrophosphatase (inorganic) 1 O PPase|cytosolic inorganic pyrophosphatase|diphosphate phosphohydrolase|inorganic diphosphatase|inorganic pyrophosphatase|inorganic pyrophosphatase 1|pyrophosphatase 1|pyrophosphate phospho-hydrolase 20121230 -9606 5465 PPARA SC22CB-5E3.5 NR1C1|PPAR|PPARalpha|hPPAR HGNC:9232|MIM:170998|Ensembl:ENSG00000186951|HPRD:01369|Vega:OTTHUMG00000150443 22 22q13.31 peroxisome proliferator-activated receptor alpha protein-coding PPARA peroxisome proliferator-activated receptor alpha O PPAR-alpha|nuclear receptor subfamily 1 group C member 1|peroxisome proliferative activated receptor, alpha|peroxisome proliferator-activated nuclear receptor alpha variant 3 20121230 -9606 5467 PPARD - FAAR|NR1C2|NUC1|NUCI|NUCII|PPARB HGNC:9235|MIM:600409|Ensembl:ENSG00000112033|HPRD:02679|Vega:OTTHUMG00000014567 6 6p21.2 peroxisome proliferator-activated receptor delta protein-coding PPARD peroxisome proliferator-activated receptor delta O PPAR-beta|PPAR-delta|nuclear hormone receptor 1|nuclear receptor subfamily 1 group C member 2|peroxisome proliferator-activated nuclear receptor beta/delta variant 2|peroxisome proliferator-activated receptor beta 20121230 -9606 5468 PPARG - CIMT1|GLM1|NR1C3|PPARG1|PPARG2|PPARgamma HGNC:9236|MIM:601487|Ensembl:ENSG00000132170|HPRD:03288|Vega:OTTHUMG00000129764 3 3p25 peroxisome proliferator-activated receptor gamma protein-coding PPARG peroxisome proliferator-activated receptor gamma O PPAR gamma|PPAR-gamma|nuclear receptor subfamily 1 group C member 3|peroxisome proliferator-activated nuclear receptor gamma variant 1|peroxisome proliferator-activated receptor gamma 1 20121230 -9606 5469 MED1 - CRSP1|CRSP200|DRIP205|DRIP230|PBP|PPARBP|PPARGBP|RB18A|TRAP220|TRIP2 HGNC:9234|MIM:604311|Ensembl:ENSG00000125686|HPRD:05055|Vega:OTTHUMG00000133216 17 17q12 mediator complex subunit 1 protein-coding MED1 mediator complex subunit 1 O ARC205|PPAR binding protein|PPAR-binding protein|PPARG binding protein|TR-interacting protein 2|TRIP-2|activator-recruited cofactor 205 kDa component|mediator of RNA polymerase II transcription subunit 1|p53 regulatory protein RB18A|peroxisome proliferator-activated receptor-binding protein|thyroid hormone receptor-associated protein complex 220 kDa component|thyroid hormone receptor-associated protein complex component TRAP220|thyroid receptor interacting protein 2|thyroid receptor-interacting protein 2|vitamin D receptor-interacting protein 230 kD|vitamin D receptor-interacting protein complex component DRIP205 20121230 -9606 5470 PPEF2 - PPP7CB HGNC:9244|MIM:602256|Ensembl:ENSG00000156194|HPRD:03771|Vega:OTTHUMG00000160915 4 4q21.1 protein phosphatase, EF-hand calcium binding domain 2 protein-coding PPEF2 protein phosphatase, EF-hand calcium binding domain 2 O protein phosphatase 7, catalytic subunit, beta isozyme|protein phosphatase with EF hands 2|protein phosphatase, EF hand calcium-binding domain 2|serine/threonine-protein phosphatase with EF-hands 2 20121230 -9606 5471 PPAT - ATASE|GPAT|PRAT HGNC:9238|MIM:172450|Ensembl:ENSG00000128059|HPRD:01402|Vega:OTTHUMG00000128842 4 4q12 phosphoribosyl pyrophosphate amidotransferase protein-coding PPAT phosphoribosyl pyrophosphate amidotransferase O amidophosphoribosyltransferase|glutamine PRPP amidotransferase|glutamine phosphoribosylpyrophosphatate amidotransferase|glutamine phosphoribosylpyrophosphate amidotransferase 20121230 -9606 5473 PPBP - B-TG1|Beta-TG|CTAP-III|CTAP3|CTAPIII|CXCL7|LA-PF4|LDGF|MDGF|NAP-2|PBP|SCAR10|SCYB7|TC1|TC2|TGB|TGB1|THBGB|THBGB1 HGNC:9240|MIM:121010|Ensembl:ENSG00000163736|HPRD:07171|Vega:OTTHUMG00000130008 4 4q12-q13 pro-platelet basic protein (chemokine (C-X-C motif) ligand 7) protein-coding PPBP pro-platelet basic protein (chemokine (C-X-C motif) ligand 7) O C-X-C motif chemokine 7|CXC chemokine ligand 7|beta-thromboglobulin|connective tissue-activating peptide III|leukocyte-derived growth factor|low-affinity platelet factor IV|macrophage-derived growth factor|neutrophil-activating peptide 2|neutrophil-activating peptide-2|platelet basic protein|small inducible cytokine B7|small inducible cytokine subfamily B, member 7|small-inducible cytokine B7|thrombocidin 1|thrombocidin 2|thromboglobulin, beta-1 20121230 -9606 5475 PPEF1 RP3-499B10.1 PP7|PPEF|PPP7C|PPP7CA HGNC:9243|MIM:300109|Ensembl:ENSG00000086717|HPRD:02118|Vega:OTTHUMG00000021219 X Xp22 protein phosphatase, EF-hand calcium binding domain 1 protein-coding PPEF1 protein phosphatase, EF-hand calcium binding domain 1 O protein phosphatase 7, catalytic subunit, alpha isozyme|protein phosphatase with EF calcium-binding domain|protein phosphatase, serine/threonine type, with EF-hands|serine/threonine protein phosphatase 7|serine/threonine-protein phosphatase 7|serine/threonine-protein phosphatase with EF-hands 1 20121230 -9606 5476 CTSA RP3-337O18.1 GLB2|GSL|NGBE|PPCA|PPGB HGNC:9251|MIM:613111|Ensembl:ENSG00000064601|HPRD:02020|Vega:OTTHUMG00000033078 20 20q13.1 cathepsin A protein-coding CTSA cathepsin A O beta-galactosidase 2|beta-galactosidase protective protein|carboxypeptidase C|carboxypeptidase L|carboxypeptidase Y-like kininase|carboxypeptidase-L|deamidase|lysosomal carboxypeptidase A|lysosomal protective protein|protective protein cathepsin A|urinary kininase 20121230 -9606 5478 PPIA - CYPA|CYPH HGNC:9253|MIM:123840|Ensembl:ENSG00000196262|HPRD:00457|HPRD:17376|Vega:OTTHUMG00000023687 7 7p13 peptidylprolyl isomerase A (cyclophilin A) protein-coding PPIA peptidylprolyl isomerase A (cyclophilin A) O PPIase A|T cell cyclophilin|cyclophilin|cyclosporin A-binding protein|peptidyl-prolyl cis-trans isomerase A|rotamase A 20121230 -9606 5479 PPIB - CYP-S1|CYPB|OI9|SCYLP HGNC:9255|MIM:123841|Ensembl:ENSG00000166794|HPRD:00458|Vega:OTTHUMG00000133018 15 15q21-q22 peptidylprolyl isomerase B (cyclophilin B) protein-coding PPIB peptidylprolyl isomerase B (cyclophilin B) O PPIase B|S-cyclophilin|cyclophilin-like protein|peptidyl-prolyl cis-trans isomerase B|rotamase B 20121230 -9606 5480 PPIC - CYPC HGNC:9256|MIM:123842|Ensembl:ENSG00000168938|HPRD:00459|Vega:OTTHUMG00000128921 5 5q23.2 peptidylprolyl isomerase C (cyclophilin C) protein-coding PPIC peptidylprolyl isomerase C (cyclophilin C) O PPIase C|cyclophilin C|parvulin|peptidyl-prolyl cis-trans isomerase C|rotamase C 20121230 -9606 5481 PPID - CYP-40|CYPD HGNC:9257|MIM:601753|Ensembl:ENSG00000171497|HPRD:11875|Vega:OTTHUMG00000161927 4 4q31.3 peptidylprolyl isomerase D protein-coding PPID peptidylprolyl isomerase D O 40 kDa peptidyl-prolyl cis-trans isomerase D|PPIase D|cyclophilin 40|cyclophilin D|cyclophilin-40|cyclophilin-related protein|peptidyl-prolyl cis-trans isomerase D|rotamase D 20121230 -9606 5483 PPIAP11 - PPIP1 HGNC:9263 5 5q14.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene 11 pseudo PPIAP11 peptidylprolyl isomerase A (cyclophilin A) pseudogene 11 O - 20121230 -9606 5485 PPIAP13 - PPIP3 HGNC:9266 10 10q22.2 peptidylprolyl isomerase A (cyclophilin A) pseudogene 13 pseudo PPIAP13 peptidylprolyl isomerase A (cyclophilin A) pseudogene 13 O - 20121230 -9606 5486 PPIAP14 - PPIP4 HGNC:9267 18 18p11.31 peptidylprolyl isomerase A (cyclophilin A) pseudogene 14 pseudo PPIAP14 peptidylprolyl isomerase A (cyclophilin A) pseudogene 14 O - 20121230 -9606 5487 PPIAP15 - PPIP5 HGNC:9268 3 3q13.13 peptidylprolyl isomerase A (cyclophilin A) pseudogene 15 pseudo PPIAP15 peptidylprolyl isomerase A (cyclophilin A) pseudogene 15 O - 20121230 -9606 5488 PPIAP16 - PPIP6 HGNC:9269 3 3p14.3 peptidylprolyl isomerase A (cyclophilin A) pseudogene 16 pseudo PPIAP16 peptidylprolyl isomerase A (cyclophilin A) pseudogene 16 O - 20121230 -9606 5489 PPIAP7 - PPIP7 HGNC:9270 1 1p21.2 peptidylprolyl isomerase A (cyclophilin A) pseudogene 7 pseudo PPIAP7 peptidylprolyl isomerase A (cyclophilin A) pseudogene 7 O - 20121230 -9606 5491 PPIAP9 - PPIP9 HGNC:9272 6 6p21.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene 9 pseudo PPIAP9 peptidylprolyl isomerase A (cyclophilin A) pseudogene 9 O - 20121230 -9606 5493 PPL - - HGNC:9273|MIM:602871|Ensembl:ENSG00000118898|HPRD:04187|Vega:OTTHUMG00000129528 16 16p13.3 periplakin protein-coding PPL periplakin O 190 kDa paraneoplastic pemphigus antigen|195 kDa cornified envelope precursor protein 20121230 -9606 5494 PPM1A - PP2C-ALPHA|PP2CA|PP2Calpha HGNC:9275|MIM:606108|Ensembl:ENSG00000100614|HPRD:16199|Vega:OTTHUMG00000140333 14 14q23.1 protein phosphatase, Mg2+/Mn2+ dependent, 1A protein-coding PPM1A protein phosphatase, Mg2+/Mn2+ dependent, 1A O protein phosphatase 1A|protein phosphatase 1A (formerly 2C), magnesium-dependent, alpha isoform 20121230 -9606 5495 PPM1B - PP2C-beta-X|PP2CB|PP2CBETA|PPC2BETAX HGNC:9276|MIM:603770|Ensembl:ENSG00000138032|HPRD:04796|Vega:OTTHUMG00000128757 2 2p21 protein phosphatase, Mg2+/Mn2+ dependent, 1B protein-coding PPM1B protein phosphatase, Mg2+/Mn2+ dependent, 1B O PP2C-beta|protein phosphatase 1B|protein phosphatase 1B (formerly 2C), magnesium-dependent, beta isoform|protein phosphatase 2C isoform beta|protein phosphatase 2C-like protein 20121230 -9606 5496 PPM1G - PP2CG|PP2CGAMMA|PPP2CG HGNC:9278|MIM:605119|Ensembl:ENSG00000115241|HPRD:09237|Vega:OTTHUMG00000097788 2 2p23.3 protein phosphatase, Mg2+/Mn2+ dependent, 1G protein-coding PPM1G protein phosphatase, Mg2+/Mn2+ dependent, 1G O PP2C, gamma|PP2C-gamma|protein phosphatase 1C|protein phosphatase 1G|protein phosphatase 1G (formerly 2C), magnesium-dependent, gamma isoform|protein phosphatase 2, catalytic subunit, gamma isoform|protein phosphatase 2C gamma isoform|protein phosphatase 2C isoform gamma|protein phosphatase magnesium-dependent 1 gamma 20121230 -9606 5498 PPOX - PPO|V290M|VP HGNC:9280|MIM:600923|Ensembl:ENSG00000143224|HPRD:02953|Vega:OTTHUMG00000034342 1 1q22 protoporphyrinogen oxidase protein-coding PPOX protoporphyrinogen oxidase O - 20121230 -9606 5499 PPP1CA - PP-1A|PP1alpha|PPP1A HGNC:9281|MIM:176875|Ensembl:ENSG00000172531|HPRD:15942|Vega:OTTHUMG00000167671 11 11q13 protein phosphatase 1, catalytic subunit, alpha isozyme protein-coding PPP1CA protein phosphatase 1, catalytic subunit, alpha isozyme O protein phosphatase 1, catalytic subunit, alpha isoform|serine/threonine protein phosphatase PP1-alpha 1 catalytic subunit|serine/threonine-protein phosphatase PP1-alpha catalytic subunit 20121230 -9606 5500 PPP1CB - PP-1B|PP1beta|PPP1CD HGNC:9282|MIM:600590|Ensembl:ENSG00000213639|HPRD:11792|Vega:OTTHUMG00000152011 2 2p23 protein phosphatase 1, catalytic subunit, beta isozyme protein-coding PPP1CB protein phosphatase 1, catalytic subunit, beta isozyme O protein phosphatase 1, catalytic subunit, beta isoform|protein phosphatase 1, catalytic subunit, delta isoform|protein phosphatase 1-beta|protein phosphatase 1-delta|serine/threonine protein phosphatase PP1-beta catalytic subunit|serine/threonine-protein phosphatase PP1-beta catalytic subunit 20121230 -9606 5501 PPP1CC - PP-1G|PPP1G HGNC:9283|MIM:176914|Ensembl:ENSG00000186298|HPRD:08911|Vega:OTTHUMG00000169531 12 12q24.1-q24.2 protein phosphatase 1, catalytic subunit, gamma isozyme protein-coding PPP1CC protein phosphatase 1, catalytic subunit, gamma isozyme O protein phosphatase 1, catalytic subunit, gamma isoform|protein phosphatase 1C catalytic subunit|serine/threonine phosphatase 1 gamma|serine/threonine-protein phosphatase PP1-gamma catalytic subunit 20121230 -9606 5502 PPP1R1A - I1|IPP1 HGNC:9286|MIM:613246|Ensembl:ENSG00000135447|HPRD:17893|Vega:OTTHUMG00000169934 12 12q13.2 protein phosphatase 1, regulatory (inhibitor) subunit 1A protein-coding PPP1R1A protein phosphatase 1, regulatory (inhibitor) subunit 1A O I-1|IPP-1|inhibitor-1|protein phosphatase 1 regulatory subunit 1A|protein phosphatase inhibitor 1|protein phosphatase inhibitor-1 20121230 -9606 5504 PPP1R2 - IPP-2|IPP2 HGNC:9288|MIM:601792|Ensembl:ENSG00000184203|HPRD:03478|Vega:OTTHUMG00000155887 3 3q29 protein phosphatase 1, regulatory (inhibitor) subunit 2 protein-coding PPP1R2 protein phosphatase 1, regulatory (inhibitor) subunit 2 O phosphatase inhibitor 2|phosphoprotein phosphatase|protein phosphatase inhibitor 2 20121230 -9606 5506 PPP1R3A - GM|PP1G|PPP1R3 HGNC:9291|MIM:600917|Ensembl:ENSG00000154415|HPRD:02950|Vega:OTTHUMG00000156944 7 7q31.1 protein phosphatase 1, regulatory subunit 3A protein-coding PPP1R3A protein phosphatase 1, regulatory subunit 3A O RG1|glycogen and sarcoplasmic reticulum binding subunit, skeletal muscle|glycogen-associated regulatory subunit of protein phosphatase-1|protein phosphatase 1 glycogen- associated regulatory subunit|protein phosphatase 1 glycogen-associated regulatory subunit|protein phosphatase 1 regulatory subunit 3A|protein phosphatase 1 regulatory subunit GM|protein phosphatase 1, regulatory (inhibitor) subunit 3A|protein phosphatase type-1 glycogen targeting subunit|serine /threonine specific protein phosphatase|type-1 protein phosphatase skeletal muscle glycogen targeting subunit 20121230 -9606 5507 PPP1R3C - PPP1R5 HGNC:9293|MIM:602999|Ensembl:ENSG00000119938|HPRD:04298|Vega:OTTHUMG00000018745 10 10q23-q24 protein phosphatase 1, regulatory subunit 3C protein-coding PPP1R3C protein phosphatase 1, regulatory subunit 3C O PP1 subunit R5|PTG|Phosphatase 1, regulatory inhibitor subunit 5|protein phosphatase 1 regulatory subunit 3C|protein phosphatase 1 regulatory subunit 5|protein phosphatase 1, regulatory (inhibitor) subunit 3C|protein targeting to glycogen 20121230 -9606 5509 PPP1R3D - PPP1R6 HGNC:9294|MIM:603326|Ensembl:ENSG00000132825|HPRD:04507|Vega:OTTHUMG00000032876 20 20q13.3 protein phosphatase 1, regulatory subunit 3D protein-coding PPP1R3D protein phosphatase 1, regulatory subunit 3D O PP1 subunit R6|protein phosphatase 1 regulatory subunit 3D|protein phosphatase 1 regulatory subunit 6|protein phosphatase 1, regulatory (inhibitor) subunit 3D|protein phosphatase 1, regulatory subunit 6, spinophilin|protein phosphatase 1-binding subunit R6 20121230 -9606 5510 PPP1R7 - SDS22 HGNC:9295|MIM:602877|Ensembl:ENSG00000115685|HPRD:04192|Vega:OTTHUMG00000133390 2 2q37.3 protein phosphatase 1, regulatory subunit 7 protein-coding PPP1R7 protein phosphatase 1, regulatory subunit 7 O protein phosphatase 1 regulatory subunit 22|protein phosphatase 1 regulatory subunit 7|protein phosphatase 1, regulatory (inhibitor) subunit 7|protein phosphatase-1 regulatory subunit 7 alpha2|protein phosphatase-1 regulatory subunit 7 beta1|protein phosphatase-1 regulatory subunit 7 beta2 20121230 -9606 5511 PPP1R8 RP4-547C9.1 ARD-1|ARD1|NIPP-1|NIPP1|PRO2047 HGNC:9296|MIM:602636|Ensembl:ENSG00000117751|HPRD:04028|Vega:OTTHUMG00000003734 1 1p35.3 protein phosphatase 1, regulatory subunit 8 protein-coding PPP1R8 protein phosphatase 1, regulatory subunit 8 O RNase E|activator of RNA decay|nuclear inhibitor of protein phosphatase 1|nuclear inhibitor of protein phosphatase-1 alpha|nuclear subunit of PP-1|protein phosphatase 1 regulatory subunit 8|protein phosphatase 1, regulatory (inhibitor) subunit 8 20121230 -9606 5512 PPP1R8P1 - PPP1R8P HGNC:9297 1 1p33 protein phosphatase 1, regulatory subunit 8 pseudogene 1 pseudo PPP1R8P1 protein phosphatase 1, regulatory subunit 8 pseudogene 1 O - 20121230 -9606 5514 PPP1R10 DADB-129D20.4 CAT53|FB19|PNUTS|PP1R10|R111|p99 HGNC:9284|MIM:603771|Ensembl:ENSG00000204569|HPRD:04797|Vega:OTTHUMG00000031259 6 6p21.3 protein phosphatase 1, regulatory subunit 10 protein-coding PPP1R10 protein phosphatase 1, regulatory subunit 10 O HLA-C associated transcript 53|MHC class I region proline-rich protein CAT53|PP1-binding protein of 114 kDa|phosphatase 1 nuclear targeting subunit|protein phosphatase 1, regulatory (inhibitor) subunit 10|serine/threonine-protein phosphatase 1 regulatory subunit 10 20121230 -9606 5515 PPP2CA - PP2Ac|PP2CA|PP2Calpha|RP-C HGNC:9299|MIM:176915|Ensembl:ENSG00000113575|HPRD:08912|Vega:OTTHUMG00000129119 5 5q31.1 protein phosphatase 2, catalytic subunit, alpha isozyme protein-coding PPP2CA protein phosphatase 2, catalytic subunit, alpha isozyme O PP2A-alpha|protein phosphatase 2 (formerly 2A), catalytic subunit, alpha isoform|protein phosphatase 2A catalytic subunit, alpha isoform|replication protein C|serine/threonine protein phosphatase 2A, catalytic subunit, alpha isoform|serine/threonine-protein phosphatase 2A catalytic subunit alpha isoform 20121230 -9606 5516 PPP2CB - PP2Abeta|PP2CB HGNC:9300|MIM:176916|Ensembl:ENSG00000104695|HPRD:01487|Vega:OTTHUMG00000163949 8 8p12 protein phosphatase 2, catalytic subunit, beta isozyme protein-coding PPP2CB protein phosphatase 2, catalytic subunit, beta isozyme O PP2A-beta|protein phosphatase 2 (formerly 2A), catalytic subunit, beta isoform|protein phosphatase 2, catalytic subunit, beta isoform|protein phosphatase 2A catalytic subunit, beta isoform|protein phosphatase type 2A catalytic subunit|serine/threonine protein phosphatase 2A, catalytic subunit, beta isoform|serine/threonine-protein phosphatase 2A catalytic subunit beta isoform 20121230 -9606 5517 PPP2CBP1 - PPP2CBP HGNC:9301 16 16p11.2 protein phosphatase 2, catalytic subunit, beta isozyme pseudogene 1 pseudo PPP2CBP1 protein phosphatase 2, catalytic subunit, beta isozyme pseudogene 1 O - 20121230 -9606 5518 PPP2R1A - PP2A-Aalpha|PP2AAALPHA|PR65A HGNC:9302|MIM:605983|Ensembl:ENSG00000105568|HPRD:16184|Vega:OTTHUMG00000137367 19 19q13.41 protein phosphatase 2, regulatory subunit A, alpha protein-coding PPP2R1A protein phosphatase 2, regulatory subunit A, alpha O PP2A subunit A isoform PR65-alpha|PP2A subunit A isoform R1-alpha|medium tumor antigen-associated 61 KDA protein|protein phosphatase 2 (formerly 2A), regulatory subunit A (PR 65), alpha isoform|serine/threonine protein phosphatase 2A, 65 kDa regulatory subunit A, alpha isoform|serine/threonine-protein phosphatase 2A 65 kDa regulatory subunit A alpha isoform 20121230 -9606 5519 PPP2R1B - PP2A-Abeta|PR65B HGNC:9303|MIM:603113|Ensembl:ENSG00000137713|HPRD:04384|Vega:OTTHUMG00000166741 11 11q23.2 protein phosphatase 2, regulatory subunit A, beta protein-coding PPP2R1B protein phosphatase 2, regulatory subunit A, beta O PP2A, subunit A, PR65-beta isoform|PP2A, subunit A, R1-beta isoform|protein phosphatase 2 (formerly 2A), regulatory subunit A, beta isoform|protein phosphatase 2, structural/regulatory subunit A, beta|serine/threonine-protein phosphatase 2A 65 kDa regulatory subunit A beta isoform 20121230 -9606 5520 PPP2R2A - B55A|B55ALPHA|PR52A|PR55A HGNC:9304|MIM:604941|Ensembl:ENSG00000221914|HPRD:09223|Vega:OTTHUMG00000163850 8 8p21.2 protein phosphatase 2, regulatory subunit B, alpha protein-coding PPP2R2A protein phosphatase 2, regulatory subunit B, alpha O protein phosphatase 2 (formerly 2A), regulatory subunit B (PR52), alpha isoform|serine/threonine protein phosphatase 2A, 55 KDA regulatory subunit B, alpha isoform|serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B alpha isoform 20121230 -9606 5521 PPP2R2B - B55BETA|PP2AB55BETA|PP2ABBETA|PP2APR55B|PP2APR55BETA|PR2AB55BETA|PR2ABBETA|PR2APR55BETA|PR52B|PR55-BETA|PR55BETA|SCA12 HGNC:9305|MIM:604325|Ensembl:ENSG00000156475|HPRD:05059|Vega:OTTHUMG00000163381 5 5q32 protein phosphatase 2, regulatory subunit B, beta protein-coding PPP2R2B protein phosphatase 2, regulatory subunit B, beta O PP2A subunit B isoform B55-beta|PP2A subunit B isoform PR55-beta|PP2A subunit B isoform R2-beta|PP2A, subunit B, B-beta isoform|protein phosphatase 2 (formerly 2A), regulatory subunit B (PR 52), beta isoform|protein phosphatase 2 (formerly 2A), regulatory subunit B, beta isoform|serine/threonine protein phosphatase 2A, 55 kDa regulatory subunit B, beta isoform|serine/threonine protein phosphatase 2A, neuronal isoform|serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B beta isoform 20121230 -9606 5522 PPP2R2C - B55-GAMMA|IMYPNO|IMYPNO1|PR52|PR55G HGNC:9306|MIM:605997|Ensembl:ENSG00000074211|HPRD:09345|Vega:OTTHUMG00000090445 4 4p16.1 protein phosphatase 2, regulatory subunit B, gamma protein-coding PPP2R2C protein phosphatase 2, regulatory subunit B, gamma O PP2A, subunit B, B-gamma isoform|PP2A, subunit B, B55-gamma isoform|PP2A, subunit B, PR55-gamma isoform|PP2A, subunit B, R2-gamma isoform|gamma isoform of regulatory subunit B55, protein phosphatase 2|phosphoprotein phosphatase 2A BR gamma regulatory chain|protein phosphatase 2 (formerly 2A), regulatory subunit B (PR 52), gamma isoform|protein phosphatase 2A1 B gamma subunit|serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B gamma isoform 20121230 -9606 5523 PPP2R3A - PPP2R3|PR130|PR72 HGNC:9307|MIM:604944|Ensembl:ENSG00000073711|HPRD:09225|Vega:OTTHUMG00000159766 3 3q22.1 protein phosphatase 2, regulatory subunit B'', alpha protein-coding PPP2R3A protein phosphatase 2, regulatory subunit B'', alpha O PP2A subunit B isoforms B72/B130|PP2A, subunit B, R3 isoform|protein phosphatase 2 (formerly 2A), regulatory subunit B'' (PR 72), alpha isoform and (PR 130), beta isoform|serine/threonine-protein phosphatase 2A 72/130 kDa regulatory subunit B|serine/threonine-protein phosphatase 2A regulatory subunit B'' subunit alpha 20121230 -9606 5524 PPP2R4 RP11-247A12.4 PP2A|PR53|PTPA HGNC:9308|MIM:600756|Ensembl:ENSG00000119383|HPRD:02858|Vega:OTTHUMG00000020774 9 9q34 protein phosphatase 2A activator, regulatory subunit 4 protein-coding PPP2R4 protein phosphatase 2A activator, regulatory subunit 4 O PP2A phosphatase activator|PP2A subunit B' isoform PR53|phosphotyrosyl phosphatase activator|protein phosphatase 2A, regulatory subunit B' (PR 53)|serine/threonine-protein phosphatase 2A activator|serine/threonine-protein phosphatase 2A regulatory subunit B' 20121230 -9606 5525 PPP2R5A - B56A|PR61A HGNC:9309|MIM:601643|Ensembl:ENSG00000066027|HPRD:03384|Vega:OTTHUMG00000036750 1 1q32.2-q32.3 protein phosphatase 2, regulatory subunit B', alpha protein-coding PPP2R5A protein phosphatase 2, regulatory subunit B', alpha O PP2A B subunit isoform B'-alpha|PP2A B subunit isoform B56-alpha|PP2A B subunit isoform PR61-alpha|PP2A B subunit isoform R5-alpha|PP2A, B subunit, B' alpha isoform|PP2A, B subunit, B56 alpha isoform|PP2A, B subunit, PR61 alpha isoform|PP2A, B subunit, R5 alpha isoform|PR61alpha|protein phosphatase 2, regulatory subunit B (B56), alpha isoform|protein phosphatase 2, regulatory subunit B', alpha isoform|serine/threonine protein phosphatase 2A, 56 kDa regulatory subunit, alpha isoform|serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit alpha isoform 20121230 -9606 5526 PPP2R5B - B56B|PR61B HGNC:9310|MIM:601644|Ensembl:ENSG00000068971|HPRD:09038|Vega:OTTHUMG00000150043 11 11q12 protein phosphatase 2, regulatory subunit B', beta protein-coding PPP2R5B protein phosphatase 2, regulatory subunit B', beta O PP2A B subunit isoform B'-beta|PP2A B subunit isoform B56-beta|PP2A B subunit isoform PR61-beta|PP2A B subunit isoform R5-beta|protein phosphatase 2, regulatory subunit B', beta isoform|serine/threonine protein phosphatase 2A, 56 kDa regulatory subunit, beta isoform|serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit beta isoform 20121230 -9606 5527 PPP2R5C - B56G|PR61G HGNC:9311|MIM:601645|Ensembl:ENSG00000078304|HPRD:03385|Vega:OTTHUMG00000171597 14 14q32.31 protein phosphatase 2, regulatory subunit B', gamma protein-coding PPP2R5C protein phosphatase 2, regulatory subunit B', gamma O B' alpha regulatory subunit|PP2A B subunit isoform B'-gamma|PP2A B subunit isoform B56-gamma|PP2A B subunit isoform PR61-gamma|PP2A B subunit isoform R5-gamma|protein phosphatase 2, regulatory subunit B (B56), gamma isoform|protein phosphatase 2, regulatory subunit B', gamma isoform|renal carcinoma antigen NY-REN-29|serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit gamma isoform 20121230 -9606 5528 PPP2R5D - B56D HGNC:9312|MIM:601646|Ensembl:ENSG00000112640|HPRD:09039|Vega:OTTHUMG00000014716 6 6p21.1 protein phosphatase 2, regulatory subunit B', delta protein-coding PPP2R5D protein phosphatase 2, regulatory subunit B', delta O PP2A B subunit isoform B'-delta|PP2A B subunit isoform B56-delta|PP2A B subunit isoform PR61-delta|PP2A B subunit isoform R5-delta|PP2A, B subunit, B' delta isoform|PP2A, B subunit, B56 delta isoform|PP2A, B subunit, PR61 delta isoform|PP2A, B subunit, R5 delta isoform|Serine/threonine protein phosphatase 2A, 56 kDa regulatory subunit, delta isoform|protein phosphatase 2, regulatory subunit B (B56), delta isoform|protein phosphatase 2, regulatory subunit B', delta isoform|serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit delta isoform 20121230 -9606 5529 PPP2R5E - - HGNC:9313|MIM:601647|Ensembl:ENSG00000154001|HPRD:09040|Vega:OTTHUMG00000140341 14 14q23.1 protein phosphatase 2, regulatory subunit B', epsilon isoform protein-coding PPP2R5E protein phosphatase 2, regulatory subunit B', epsilon isoform O PP2A B subunit isoform B'-epsilon|PP2A B subunit isoform B56-epsilon|PP2A B subunit isoform PR61-epsilon|PP2A B subunit isoform R5-epsilon|PP2A, B subunit, B' epsilon|PP2A, B subunit, B56 epsilon|PP2A, B subunit, PR61 epsilon|PP2A, B subunit, R5 epsilon|epsilon isoform of regulatory subunit B56, protein phosphatase 2A|protein phosphatase 2, regulatory subunit B (B56), epsilon isoform|serine/threonine protein phosphatase 2A, 56 kDa regulatory subunit, epsilon|serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit epsilon isoform 20121230 -9606 5530 PPP3CA - CALN|CALNA|CALNA1|CCN1|CNA1|PPP2B HGNC:9314|MIM:114105|Ensembl:ENSG00000138814|HPRD:00234|Vega:OTTHUMG00000133839 4 4q24 protein phosphatase 3, catalytic subunit, alpha isozyme protein-coding PPP3CA protein phosphatase 3, catalytic subunit, alpha isozyme O CAM-PRP catalytic subunit|calcineurin A alpha|calmodulin-dependent calcineurin A subunit alpha isoform|protein phosphatase 2B, catalytic subunit, alpha isoform|protein phosphatase 3 (formerly 2B), catalytic subunit, alpha isoform|serine/threonine-protein phosphatase 2B catalytic subunit alpha isoform 20121230 -9606 5531 PPP4C - PP4|PP4C|PPH3|PPP4|PPX HGNC:9319|MIM:602035|Ensembl:ENSG00000149923|HPRD:03615|Vega:OTTHUMG00000132113 16 16p11.2 protein phosphatase 4, catalytic subunit protein-coding PPP4C protein phosphatase 4, catalytic subunit O PP-X|protein phosphatase 4 (formerly X), catalytic subunit|protein phosphatase X, catalytic subunit|serine/threonine-protein phosphatase 4 catalytic subunit 20121230 -9606 5532 PPP3CB RP11-345K20.1 CALNA2|CALNB|CNA2|PP2Bbeta HGNC:9315|MIM:114106|Ensembl:ENSG00000107758|HPRD:00235|Vega:OTTHUMG00000018472 10 10q22.2 protein phosphatase 3, catalytic subunit, beta isozyme protein-coding PPP3CB protein phosphatase 3, catalytic subunit, beta isozyme O CAM-PRP catalytic subunit|calcineurin A beta|calcineurin A2|calmodulin-dependent calcineurin A subunit beta isoform|protein phosphatase 2B, catalytic subunit, beta isoform|protein phosphatase 3 (formerly 2B), catalytic subunit, beta isoform|protein phosphatase from PCR fragment H32|serine/threonine-protein phosphatase 2B catalytic subunit beta isoform 20121230 -9606 5533 PPP3CC - CALNA3|CNA3|PP2Bgamma HGNC:9316|MIM:114107|Ensembl:ENSG00000120910|HPRD:00236|Vega:OTTHUMG00000163802 8 8p21.3 protein phosphatase 3, catalytic subunit, gamma isozyme protein-coding PPP3CC protein phosphatase 3, catalytic subunit, gamma isozyme O CAM-PRP catalytic subunit|calcineurin, testis-specific catalytic subunit|calmodulin-dependent calcineurin A subunit gamma isoform|protein phosphatase 2B, catalytic subunit, gamma isoform|protein phosphatase 3 (formerly 2B), catalytic subunit, gamma isoform|serine/threonine-protein phosphatase 2B catalytic subunit gamma isoform 20121230 -9606 5534 PPP3R1 - CALNB1|CNB|CNB1 HGNC:9317|MIM:601302|Ensembl:ENSG00000221823|HPRD:03195|Vega:OTTHUMG00000129561 2 2p15 protein phosphatase 3, regulatory subunit B, alpha protein-coding PPP3R1 protein phosphatase 3, regulatory subunit B, alpha O calcineurin B, type I (19kDa)|calcineurin subunit B type 1|protein phosphatase 2B regulatory subunit 1|protein phosphatase 2B regulatory subunit B alpha|protein phosphatase 3 (formerly 2B), regulatory subunit B (19kD), alpha isoform (calcineurin B, type I)|protein phosphatase 3 (formerly 2B), regulatory subunit B, 19kDa, alpha isoform (calcineurin B, type I)|protein phosphatase 3 (formerly 2B), regulatory subunit B, alpha isoform 20121230 -9606 5535 PPP3R2 RP11-102M4.2 PPP3RL HGNC:9318|MIM:613821|Ensembl:ENSG00000188386|HPRD:10164|Vega:OTTHUMG00000020386 9 9q31.1 protein phosphatase 3, regulatory subunit B, beta protein-coding PPP3R2 protein phosphatase 3, regulatory subunit B, beta O CBLP|CNBII|calcineurin B, type II (19kDa)|calcineurin B-like protein|calcineurin BII|calcineurin subunit B type 2|protein phosphatase 2B regulatory subunit 2|protein phosphatase 3 (formerly 2B), regulatory subunit B (19kD), beta isoform (calcineurin B, type II)|protein phosphatase 3 (formerly 2B), regulatory subunit B, 19kDa, beta isoform (calcineurin B, type II)|protein phosphatase 3 (formerly 2B), regulatory subunit B, beta isoform|protein phosphatase 3 regulatory subunit B beta isoform 20121230 -9606 5536 PPP5C - PP5|PPP5|PPT HGNC:9322|MIM:600658|Ensembl:ENSG00000011485|HPRD:02805|Vega:OTTHUMG00000134287 19 19q13.3 protein phosphatase 5, catalytic subunit protein-coding PPP5C protein phosphatase 5, catalytic subunit O PP-T|protein phosphatase T|serine/threonine-protein phosphatase 5 20121230 -9606 5537 PPP6C RP11-366O20.1 PP6|PP6C HGNC:9323|MIM:612725|Ensembl:ENSG00000119414|HPRD:02141|Vega:OTTHUMG00000020671 9 9q33.3 protein phosphatase 6, catalytic subunit protein-coding PPP6C protein phosphatase 6, catalytic subunit O serine/threonine protein phosphatase catalytic subunit|serine/threonine-protein phosphatase 6 catalytic subunit 20121230 -9606 5538 PPT1 RP11-115D7.2 CLN1|INCL|PPT HGNC:9325|MIM:600722|Ensembl:ENSG00000131238|HPRD:07203|Vega:OTTHUMG00000004495 1 1p32 palmitoyl-protein thioesterase 1 protein-coding PPT1 palmitoyl-protein thioesterase 1 O ceroid-palmitoyl-palmitoyl-protein thioesterase 1|palmitoyl-protein hydrolase 1 20121230 -9606 5539 PPY - PNP HGNC:9327|MIM:167780|Ensembl:ENSG00000108849|HPRD:01340|Vega:OTTHUMG00000181800 17 17q21 pancreatic polypeptide protein-coding PPY pancreatic polypeptide O PP|pancreatic polypeptide Y|pancreatic prohormone 20121230 -9606 5540 PPYR1 - NPY4-R|NPY4R|PP1|Y4 HGNC:9329|MIM:601790|Ensembl:ENSG00000204174|HPRD:03476 10 10q11.2 pancreatic polypeptide receptor 1 protein-coding PPYR1 pancreatic polypeptide receptor 1 O neuropeptide Y receptor type 4 20121230 -9606 5541 PR@ - SPC HGNC:9335 12 12p13.2 proline-rich protein gene cluster other PR@ proline-rich protein gene cluster O - 20080828 -9606 5542 PRB1 - PM|PMF|PMS|PRB1L|PRB1M HGNC:9337|MIM:180989|Ensembl:ENSG00000251655|HPRD:01623|Vega:OTTHUMG00000157263 12 12p13.2 proline-rich protein BstNI subfamily 1 protein-coding PRB1 proline-rich protein BstNI subfamily 1 O BstNI type basic salivary proline-rich protein 1|PRB1 large length copy|basic proline-rich protein|basic salivary proline-rich protein 1|parotid middle band protein|salivary proline-rich protein 1|salivary protein Pe 20121230 -9606 5544 PRB3 - G1|PRG HGNC:9339|MIM:168840|Ensembl:ENSG00000197870|HPRD:01352|Vega:OTTHUMG00000169065 12 12p13.2 proline-rich protein BstNI subfamily 3 protein-coding PRB3 proline-rich protein BstNI subfamily 3 O BstNI type basic salivary proline-rich protein 3|G1 parotid salivary glycoprotein|basic salivary proline-rich protein 3|parotid salivary glycoprotein G1|proline-rich protein G1 20121230 -9606 5545 PRB4 - Po HGNC:9340|MIM:180990|Ensembl:ENSG00000230657|HPRD:01624|Vega:OTTHUMG00000169116 12 12p13.2 proline-rich protein BstNI subfamily 4 protein-coding PRB4 proline-rich protein BstNI subfamily 4 O BstNI type basic salivary proline-rich protein 4|basic salivary proline-rich protein 4|parotid 'o' protein|parotid o protein|saliary protein Po|salivary proline-rich protein II-1|salivary proline-rich protein Po 20121230 -9606 5546 PRCC RP11-66D17.11-004 RCCP1|TPRC HGNC:9343|MIM:179755|Ensembl:ENSG00000143294|HPRD:01562|Vega:OTTHUMG00000041294 1 1q21.1 papillary renal cell carcinoma (translocation-associated) protein-coding PRCC papillary renal cell carcinoma (translocation-associated) O papillary renal cell carcinoma translocation-associated gene protein|proline-rich protein PRCC 20121230 -9606 5547 PRCP - HUMPCP|PCP HGNC:9344|MIM:176785|Ensembl:ENSG00000137509|HPRD:08352|Vega:OTTHUMG00000166899 11 11q14 prolylcarboxypeptidase (angiotensinase C) protein-coding PRCP prolylcarboxypeptidase (angiotensinase C) O angiotensinase C|lysosomal Pro-X carboxypeptidase|lysosomal carboxypeptidase C|proline carboxypeptidase|prolylcarboxypeptidase isoform 1 preproprotein 20121230 -9606 5548 PRD - - HGNC:9345|MIM:312550 X Xp11.3 primary retinal dysplasia unknown PRD primary retinal dysplasia O - 20121209 -9606 5549 PRELP RP11-91B9.1 MST161|MSTP161|SLRR2A HGNC:9357|MIM:601914|Ensembl:ENSG00000188783|HPRD:03556|Vega:OTTHUMG00000035911 1 1q32 proline/arginine-rich end leucine-rich repeat protein protein-coding PRELP proline/arginine-rich end leucine-rich repeat protein O 55 kDa leucine-rich repeat protein of articular cartilage|prolargin|prolargin proteoglycan|proline-arginine-rich end leucine-rich repeat protein 20121230 -9606 5550 PREP RP3-355L5.1 PE|PEP HGNC:9358|MIM:600400|Ensembl:ENSG00000085377|HPRD:02673|Vega:OTTHUMG00000015297 6 6q22 prolyl endopeptidase protein-coding PREP prolyl endopeptidase O dJ355L5.1 (prolyl endopeptidase)|post-proline cleaving enzyme|prolyl oligopeptidase 20121230 -9606 5551 PRF1 RP11-710A11.3 FLH2|HPLH2|P1|PFN1|PFP HGNC:9360|MIM:170280|Ensembl:ENSG00000180644|HPRD:01362|Vega:OTTHUMG00000018412 10 10q22 perforin 1 (pore forming protein) protein-coding PRF1 perforin 1 (pore forming protein) O cytolysin|lymphocyte pore forming protein|lymphocyte pore-forming protein|perforin-1 20121230 -9606 5552 SRGN - PPG|PRG|PRG1 HGNC:9361|MIM:177040|Ensembl:ENSG00000122862|HPRD:01513|Vega:OTTHUMG00000018369 10 10q22.1 serglycin protein-coding SRGN serglycin O hematopoetic proteoglycan core peptide|hematopoetic proteoglycan core protein|hematopoietic proteoglycan core protein|p.PG|platelet proteoglycan core protein|proteoglycan 1, secretory granule|proteoglycan protein core for mast cell secretory granule|secretory granule proteoglycan core peptide|secretory granule proteoglycan core protein|serglycin proteoglycan 20121230 -9606 5553 PRG2 - BMPG|MBP|MBP1 HGNC:9362|MIM:605601|Ensembl:ENSG00000186652|HPRD:09283|Vega:OTTHUMG00000167027 11 11q12 proteoglycan 2, bone marrow (natural killer cell activator, eosinophil granule major basic protein) protein-coding PRG2 proteoglycan 2, bone marrow (natural killer cell activator, eosinophil granule major basic protein) O bone marrow proteoglycan|bone-marrow proteoglycan|eosinophil granule major basic protein|eosinophil major basic protein|natural killer cell activator|proteoglycan 2 preproprotein 20121230 -9606 5554 PRH1 - PA HGNC:9366|MIM:168730|Ensembl:ENSG00000231887|HPRD:01349 12 12p13.2 proline-rich protein HaeIII subfamily 1 protein-coding PRH1 proline-rich protein HaeIII subfamily 1 O - 20121230 -9606 5555 PRH2 - PIF-S|PRH1|PRP-1/PRP-2|Pr|db-s|pa|pr1/Pr2 HGNC:9367|MIM:168790|Ensembl:ENSG00000134551|HPRD:01350|Vega:OTTHUMG00000168556 12 12p13.2 proline-rich protein HaeIII subfamily 2 protein-coding PRH2 proline-rich protein HaeIII subfamily 2 O acidic salivary proline-rich protein, HaeIII type, 2|parotid acidic protein|parotid double-band protein|parotid isoelectric focusing variant protein|parotid proline-rich protein 1/2|protein C|salivary acidic proline-rich phosphoprotein 1/2 20121230 -9606 5557 PRIM1 - p49 HGNC:9369|MIM:176635|Ensembl:ENSG00000198056|HPRD:08899|Vega:OTTHUMG00000170034 12 12q13 primase, DNA, polypeptide 1 (49kDa) protein-coding PRIM1 primase, DNA, polypeptide 1 (49kDa) O DNA primase 1|DNA primase 49 kDa subunit|DNA primase small subunit|DNA primase subunit 48|primase p49 subunit|primase polypeptide 1, 49kDa 20121230 -9606 5558 PRIM2 RP3-401D24.1 PRIM2A|p58 HGNC:9370|MIM:176636|HPRD:08900 6 6p12-p11.1 primase, DNA, polypeptide 2 (58kDa) protein-coding PRIM2 primase, DNA, polypeptide 2 (58kDa) O DNA primase 58 kDa subunit|DNA primase large subunit|DNA primase subunit p58|dJ422B11.1.1|primase polypeptide 2A, 58kDa 20121230 -9606 5562 PRKAA1 - AMPK|AMPKa1 HGNC:9376|MIM:602739|Ensembl:ENSG00000132356|HPRD:04115|Vega:OTTHUMG00000162269 5 5p12 protein kinase, AMP-activated, alpha 1 catalytic subunit protein-coding PRKAA1 protein kinase, AMP-activated, alpha 1 catalytic subunit O 5'-AMP-activated protein kinase catalytic subunit alpha-1|5'-AMP-activated protein kinase, catalytic alpha-1 chain|ACACA kinase|AMP -activate kinase alpha 1 subunit|AMP-activated protein kinase, catalytic, alpha-1|AMPK alpha 1|AMPK subunit alpha-1|HMGCR kinase|acetyl-CoA carboxylase kinase|hydroxymethylglutaryl-CoA reductase kinase|tau-protein kinase PRKAA1 20121230 -9606 5563 PRKAA2 - AMPK|AMPK2|AMPKa2|PRKAA HGNC:9377|MIM:600497|Ensembl:ENSG00000162409|HPRD:02735|Vega:OTTHUMG00000008282 1 1p31 protein kinase, AMP-activated, alpha 2 catalytic subunit protein-coding PRKAA2 protein kinase, AMP-activated, alpha 2 catalytic subunit O 5'-AMP-activated protein kinase catalytic subunit alpha-2|5'-AMP-activated protein kinase, catalytic alpha-2 chain|ACACA kinase|AMPK subunit alpha-2|AMPK-alpha-2 chain|HMGCR kinase|acetyl-CoA carboxylase kinase|hydroxymethylglutaryl-CoA reductase kinase 20121230 -9606 5564 PRKAB1 - AMPK|HAMPKb HGNC:9378|MIM:602740|Ensembl:ENSG00000111725|HPRD:04116|Vega:OTTHUMG00000168954 12 12q24.1-q24.3 protein kinase, AMP-activated, beta 1 non-catalytic subunit protein-coding PRKAB1 protein kinase, AMP-activated, beta 1 non-catalytic subunit O 5'-AMP-activated protein kinase beta-1 subunit|5'-AMP-activated protein kinase subunit beta-1|AMP-activated protein kinase beta subunit|AMPK beta -1 chain|AMPK beta 1|AMPK subunit beta-1|AMPKb|protein kinase, AMP-activated, noncatalytic, beta-1 20121230 -9606 5565 PRKAB2 - - HGNC:9379|MIM:602741|Ensembl:ENSG00000131791|HPRD:04117|Vega:OTTHUMG00000014032 1 1q21.1 protein kinase, AMP-activated, beta 2 non-catalytic subunit protein-coding PRKAB2 protein kinase, AMP-activated, beta 2 non-catalytic subunit O 5'-AMP-activated protein kinase subunit beta-2|5'-AMP-activated protein kinase, beta-2 subunit|AMPK beta 2|AMPK beta-2 chain|AMPK subunit beta-2 20121230 -9606 5566 PRKACA - PKACA HGNC:9380|MIM:601639|Ensembl:ENSG00000072062|HPRD:03382|Vega:OTTHUMG00000182051 19 19p13.1 protein kinase, cAMP-dependent, catalytic, alpha protein-coding PRKACA protein kinase, cAMP-dependent, catalytic, alpha O PKA C-alpha|cAMP-dependent protein kinase catalytic subunit alpha|protein kinase A catalytic subunit 20121230 -9606 5567 PRKACB RP11-82H13.1 PKACB HGNC:9381|MIM:176892|Ensembl:ENSG00000142875|HPRD:01482|Vega:OTTHUMG00000009975 1 1p31.1 protein kinase, cAMP-dependent, catalytic, beta protein-coding PRKACB protein kinase, cAMP-dependent, catalytic, beta O PKA C-beta|cAMP-dependent protein kinase catalytic beta subunit isoform 4ab|cAMP-dependent protein kinase catalytic subunit beta|protein kinase A catalytic subunit beta 20121230 -9606 5568 PRKACG - KAPG|PKACg HGNC:9382|MIM:176893|Ensembl:ENSG00000165059|HPRD:01483|Vega:OTTHUMG00000019974 9 9q13 protein kinase, cAMP-dependent, catalytic, gamma protein-coding PRKACG protein kinase, cAMP-dependent, catalytic, gamma O PKA C-gamma|cAMP-dependent protein kinase catalytic subunit gamma|serine(threonine) protein kinase 20121230 -9606 5569 PKIA - PRKACN1 HGNC:9017|MIM:606059|Ensembl:ENSG00000171033|HPRD:05828|Vega:OTTHUMG00000164618 8 8q21.12 protein kinase (cAMP-dependent, catalytic) inhibitor alpha protein-coding PKIA protein kinase (cAMP-dependent, catalytic) inhibitor alpha O PKI-alpha|cAMP-dependent protein kinase inhibitor alpha|cAMP-dependent protein kinase inhibitor, muscle/brain isoform 20121230 -9606 5570 PKIB RP11-95G17.1 PRKACN2 HGNC:9018|MIM:606914|Ensembl:ENSG00000135549|HPRD:06075|Vega:OTTHUMG00000015488 6 6q22.31 protein kinase (cAMP-dependent, catalytic) inhibitor beta protein-coding PKIB protein kinase (cAMP-dependent, catalytic) inhibitor beta O PKI-beta|cAMP-dependent protein kinase inhibitor 2|cAMP-dependent protein kinase inhibitor beta 20121230 -9606 5571 PRKAG1 - AMPKG HGNC:9385|MIM:602742|Ensembl:ENSG00000181929|HPRD:04118|Vega:OTTHUMG00000170406 12 12q12-q14 protein kinase, AMP-activated, gamma 1 non-catalytic subunit protein-coding PRKAG1 protein kinase, AMP-activated, gamma 1 non-catalytic subunit O 5'-AMP-activated protein kinase subunit gamma-1|5'-AMP-activated protein kinase, gamma-1 subunit|AMPK gamma-1 chain|AMPK gamma1 20121230 -9606 5573 PRKAR1A - ACRDYS1|ADOHR|CAR|CNC|CNC1|PKR1|PPNAD1|PRKAR1|TSE1 HGNC:9388|MIM:188830|Ensembl:ENSG00000108946|HPRD:01786|Vega:OTTHUMG00000180128 17 17q23-q24 protein kinase, cAMP-dependent, regulatory, type I, alpha protein-coding PRKAR1A protein kinase, cAMP-dependent, regulatory, type I, alpha O cAMP-dependent protein kinase regulatory subunit RIalpha|cAMP-dependent protein kinase type I-alpha regulatory chain|cAMP-dependent protein kinase type I-alpha regulatory subunit|protein kinase A type 1a regulatory subunit|tissue specific extinguisher 1|tissue-specific extinguisher 1 20121230 -9606 5574 PRKAR1AP - - HGNC:9389 1 1p22.1 protein kinase, cAMP-dependent, regulatory, type I, alpha pseudogene pseudo PRKAR1AP protein kinase, cAMP-dependent, regulatory, type I, alpha pseudogene O - 20121230 -9606 5575 PRKAR1B - PRKAR1 HGNC:9390|MIM:176911|Ensembl:ENSG00000188191|HPRD:01485|Vega:OTTHUMG00000151411 7 7p22 protein kinase, cAMP-dependent, regulatory, type I, beta protein-coding PRKAR1B protein kinase, cAMP-dependent, regulatory, type I, beta O cAMP-dependent protein kinase type I-beta regulatory subunit 20121230 -9606 5576 PRKAR2A - PKR2|PRKAR2 HGNC:9391|MIM:176910|Ensembl:ENSG00000114302|HPRD:01484|Vega:OTTHUMG00000133540 3 3p21.3-p21.2 protein kinase, cAMP-dependent, regulatory, type II, alpha protein-coding PRKAR2A protein kinase, cAMP-dependent, regulatory, type II, alpha O cAMP-dependent protein kinase regulatory subunit RII alpha|cAMP-dependent protein kinase type II-alpha regulatory subunit|protein kinase A, RII-alpha subunit 20121230 -9606 5577 PRKAR2B - PRKAR2|RII-BETA HGNC:9392|MIM:176912|Ensembl:ENSG00000005249|HPRD:01486|Vega:OTTHUMG00000137418 7 7q22 protein kinase, cAMP-dependent, regulatory, type II, beta protein-coding PRKAR2B protein kinase, cAMP-dependent, regulatory, type II, beta O H_RG363E19.2|WUGSC:H_RG363E19.2|cAMP-dependent protein kinase type II-beta regulatory chain|cAMP-dependent protein kinase type II-beta regulatory subunit 20121230 -9606 5578 PRKCA - AAG6|PKC-alpha|PKCA|PRKACA HGNC:9393|MIM:176960|Ensembl:ENSG00000154229|HPRD:01498|Vega:OTTHUMG00000179533 17 17q22-q23.2 protein kinase C, alpha protein-coding PRKCA protein kinase C, alpha O PKC-A|aging-associated gene 6|protein kinase C alpha type 20121230 -9606 5579 PRKCB - PKC-beta|PKCB|PRKCB1|PRKCB2 HGNC:9395|MIM:176970|Ensembl:ENSG00000166501|HPRD:01499|Vega:OTTHUMG00000131615 16 16p11.2 protein kinase C, beta protein-coding PRKCB protein kinase C, beta O PKC-B|protein kinase C beta type|protein kinase C, beta 1 polypeptide 20121230 -9606 5580 PRKCD - MAY1|PKCD|nPKC-delta HGNC:9399|MIM:176977|Ensembl:ENSG00000163932|HPRD:01501|Vega:OTTHUMG00000133659 3 3p21.31 protein kinase C, delta protein-coding PRKCD protein kinase C, delta O protein kinase C delta VIII|protein kinase C delta type|tyrosine-protein kinase PRKCD 20121230 -9606 5581 PRKCE - PKCE|nPKC-epsilon HGNC:9401|MIM:176975|Ensembl:ENSG00000171132|HPRD:01500|Vega:OTTHUMG00000128817 2 2p21 protein kinase C, epsilon protein-coding PRKCE protein kinase C, epsilon O protein kinase C epsilon type 20121230 -9606 5582 PRKCG - PKC-gamma|PKCC|PKCG|SCA14 HGNC:9402|MIM:176980|Ensembl:ENSG00000126583|HPRD:01502|Vega:OTTHUMG00000064846 19 19q13.4 protein kinase C, gamma protein-coding PRKCG protein kinase C, gamma O protein kinase C gamma type 20121230 -9606 5583 PRKCH - PKC-L|PKCL|PRKCL|nPKC-eta HGNC:9403|MIM:605437|Ensembl:ENSG00000027075|HPRD:05669|Vega:OTTHUMG00000152341 14 14q23.1 protein kinase C, eta protein-coding PRKCH protein kinase C, eta O protein kinase C eta type 20121230 -9606 5584 PRKCI - DXS1179E|PKCI|nPKC-iota HGNC:9404|MIM:600539|Ensembl:ENSG00000163558|HPRD:02105|Vega:OTTHUMG00000150214 3 3q26.3 protein kinase C, iota protein-coding PRKCI protein kinase C, iota O PRKC-lambda/iota|aPKC-lambda/iota|atypical protein kinase C-lambda/iota|protein kinase C iota type 20121230 -9606 5585 PKN1 - DBK|PAK-1|PAK1|PKN|PKN-ALPHA|PRK1|PRKCL1 HGNC:9405|MIM:601032|Ensembl:ENSG00000123143|HPRD:03019|Vega:OTTHUMG00000039611 19 19p13.12 protein kinase N1 protein-coding PKN1 protein kinase N1 O protease-activated kinase 1|protein kinase C-like 1|protein kinase C-like PKN|protein kinase C-related kinase 1|protein kinase PKN-alpha|protein-kinase C-related kinase 1|serine-threonine kinase N|serine-threonine protein kinase N|serine/threonine protein kinase N|serine/threonine-protein kinase N1 20121230 -9606 5586 PKN2 RP5-905H16.1 PAK2|PRK2|PRKCL2|PRO2042|Pak-2 HGNC:9406|MIM:602549|Ensembl:ENSG00000065243|HPRD:03972|Vega:OTTHUMG00000010074 1 1p22.2 protein kinase N2 protein-coding PKN2 protein kinase N2 O PKN gamma|cardiolipin-activated protein kinase Pak2|protein kinase C-like 2|protein-kinase C-related kinase 2|serine/threonine-protein kinase N2 20121230 -9606 5587 PRKD1 - PKC-MU|PKCM|PKD|PRKCM HGNC:9407|MIM:605435|Ensembl:ENSG00000184304|HPRD:05668|Vega:OTTHUMG00000140203 14 14q11 protein kinase D1 protein-coding PRKD1 protein kinase D1 O nPKC-D1|nPKC-mu|protein kinase C mu type|protein kinase C, mu|protein kinase D|serine/threonine-protein kinase D1 20121230 -9606 5588 PRKCQ RP11-563J2.1 PRKCT|nPKC-theta HGNC:9410|MIM:600448|Ensembl:ENSG00000065675|HPRD:02710|Vega:OTTHUMG00000017623 10 10p15 protein kinase C, theta protein-coding PRKCQ protein kinase C, theta O protein kinase C theta type 20121230 -9606 5589 PRKCSH - AGE-R2|G19P1|PCLD|PKCSH|PLD1 HGNC:9411|MIM:177060|Ensembl:ENSG00000130175|HPRD:03518|Vega:OTTHUMG00000182029 19 19p13.2 protein kinase C substrate 80K-H protein-coding PRKCSH protein kinase C substrate 80K-H O AGE-binding receptor 2|glucosidase 2 subunit beta|glucosidase II subunit beta|glucosidase II, beta subunit|hepatocystin|protein kinase C substrate 60.1 kDa protein heavy chain|protein kinase C substrate, 80 Kda protein 20121230 -9606 5590 PRKCZ RP11-181G12.1 PKC-ZETA|PKC2 HGNC:9412|MIM:176982|Ensembl:ENSG00000067606|HPRD:01504|Vega:OTTHUMG00000001238 1 1p36.33-p36.2 protein kinase C, zeta protein-coding PRKCZ protein kinase C, zeta O nPKC-zeta|protein kinase C zeta type 20121230 -9606 5591 PRKDC - DNA-PKcs|DNAPK|DNPK1|HYRC|HYRC1|XRCC7|p350 HGNC:9413|MIM:600899|Ensembl:ENSG00000253729|HPRD:02941 8 8q11 protein kinase, DNA-activated, catalytic polypeptide protein-coding PRKDC protein kinase, DNA-activated, catalytic polypeptide O DNA-PK catalytic subunit|DNA-dependent protein kinase catalytic subunit|hyper-radiosensitivity of murine scid mutation, complementing 1|p460 20121230 -9606 5592 PRKG1 RP11-346D6.1 1|PKG|PRKG1B|PRKGR1B|cGK|cGK 1|cGK1|cGKI|cGKI-BETA|cGKI-alpha HGNC:9414|MIM:176894|Ensembl:ENSG00000185532|HPRD:08910|Vega:OTTHUMG00000018248 10 10q11.2 protein kinase, cGMP-dependent, type I protein-coding PRKG1 protein kinase, cGMP-dependent, type I O cGMP-dependent protein kinase 1|protein kinase, cGMP-dependent, regulatory, type I, beta 20121230 -9606 5593 PRKG2 - PRKGR2|cGKII HGNC:9416|MIM:601591|Ensembl:ENSG00000138669|HPRD:09034|Vega:OTTHUMG00000130296 4 4q13.1-q21.1 protein kinase, cGMP-dependent, type II protein-coding PRKG2 protein kinase, cGMP-dependent, type II O cGK 2|cGK2|cGMP-dependent protein kinase 2|cGMP-dependent protein kinase II 20121230 -9606 5594 MAPK1 - ERK|ERK2|ERT1|MAPK2|P42MAPK|PRKM1|PRKM2|p38|p40|p41|p41mapk HGNC:6871|MIM:176948|Ensembl:ENSG00000100030|HPRD:01496|Vega:OTTHUMG00000030508 22 22q11.21 mitogen-activated protein kinase 1 protein-coding MAPK1 mitogen-activated protein kinase 1 O ERK-2|MAP kinase 1|MAP kinase 2|MAP kinase isoform p42|MAPK 2|extracellular signal-regulated kinase 2|mitogen-activated protein kinase 2|p42-MAPK|protein tyrosine kinase ERK2 20121230 -9606 5595 MAPK3 - ERK-1|ERK1|ERT2|HS44KDAP|HUMKER1A|P44ERK1|P44MAPK|PRKM3|p44-ERK1|p44-MAPK HGNC:6877|MIM:601795|Ensembl:ENSG00000102882|HPRD:03479|Vega:OTTHUMG00000132149 16 16p11.2 mitogen-activated protein kinase 3 protein-coding MAPK3 mitogen-activated protein kinase 3 O MAP kinase 1|MAP kinase 3|MAP kinase isoform p44|MAPK 1|extracellular signal-regulated kinase 1|extracellular signal-related kinase 1|insulin-stimulated MAP2 kinase|microtubule-associated protein 2 kinase|mitogen-activated protein kinase 1 20121230 -9606 5596 MAPK4 - ERK-4|ERK3|Erk4|MAPK 4|PRKM4|p63MAPK HGNC:6878|MIM:176949|Ensembl:ENSG00000141639|HPRD:01497|Vega:OTTHUMG00000179853 18 18q21.1 mitogen-activated protein kinase 4 protein-coding MAPK4 mitogen-activated protein kinase 4 O Erk3-related|MAP kinase 4|MAP kinase isoform p63|extracellular signal-regulated kinase 4|p63-MAPK 20121230 -9606 5597 MAPK6 - ERK3|HsT17250|PRKM6|p97MAPK HGNC:6879|MIM:602904|Ensembl:ENSG00000069956|HPRD:04213|Vega:OTTHUMG00000131891 15 15q21 mitogen-activated protein kinase 6 protein-coding MAPK6 mitogen-activated protein kinase 6 O ERK-3|MAP kinase 6|MAP kinase isoform p97|MAPK 6|extracellular signal-regulated kinase 3|extracellular signal-regulated kinase, p97|p97-MAPK|protein kinase, mitogen-activated 5|protein kinase, mitogen-activated 6 20121230 -9606 5598 MAPK7 - BMK1|ERK4|ERK5|PRKM7 HGNC:6880|MIM:602521|Ensembl:ENSG00000166484|HPRD:03952|Vega:OTTHUMG00000059587 17 17p11.2 mitogen-activated protein kinase 7 protein-coding MAPK7 mitogen-activated protein kinase 7 O BMK-1|BMK1 kinase|ERK-5|MAP kinase 7|MAPK 7|big MAP kinase 1|extracellular signal-regulated kinase 5|extracellular-signal-regulated kinase 5 20121230 -9606 5599 MAPK8 - JNK|JNK-46|JNK1|JNK1A2|JNK21B1/2|PRKM8|SAPK1|SAPK1c HGNC:6881|MIM:601158|Ensembl:ENSG00000107643|HPRD:03100|Vega:OTTHUMG00000018172 10 10q11.22 mitogen-activated protein kinase 8 protein-coding MAPK8 mitogen-activated protein kinase 8 O JUN N-terminal kinase|MAP kinase 8|c-Jun N-terminal kinase 1|mitogen-activated protein kinase 8 isoform JNK1 alpha1|mitogen-activated protein kinase 8 isoform JNK1 beta2|stress-activated protein kinase 1|stress-activated protein kinase 1c 20121230 -9606 5600 MAPK11 - P38B|P38BETA2|PRKM11|SAPK2|SAPK2B|p38-2|p38Beta HGNC:6873|MIM:602898|Ensembl:ENSG00000185386|HPRD:04208|Vega:OTTHUMG00000150226 22 22q13.33 mitogen-activated protein kinase 11 protein-coding MAPK11 mitogen-activated protein kinase 11 O MAP kinase 11|MAP kinase p38 beta|MAPK 11|mitogen-activated protein kinase p38 beta|mitogen-activated protein kinase p38-2|stress-activated protein kinase 2|stress-activated protein kinase 2b|stress-activated protein kinase-2|stress-activated protein kinase-2b 20121230 -9606 5601 MAPK9 - JNK-55|JNK2|JNK2A|JNK2ALPHA|JNK2B|JNK2BETA|PRKM9|SAPK|SAPK1a|p54a|p54aSAPK HGNC:6886|MIM:602896|Ensembl:ENSG00000050748|HPRD:04206|Vega:OTTHUMG00000130934 5 5q35 mitogen-activated protein kinase 9 protein-coding MAPK9 mitogen-activated protein kinase 9 O Jun kinase|MAP kinase 9|MAPK 9|c-Jun N-terminal kinase 2|c-Jun kinase 2|stress-activated protein kinase 1a|stress-activated protein kinase JNK2 20121230 -9606 5602 MAPK10 - JNK3|JNK3A|PRKM10|SAPK1b|p493F12|p54bSAPK HGNC:6872|MIM:602897|Ensembl:ENSG00000109339|HPRD:04207|Vega:OTTHUMG00000130604 4 4q22.1-q23 mitogen-activated protein kinase 10 protein-coding MAPK10 mitogen-activated protein kinase 10 O JNK3 alpha protein kinase|MAP kinase 10|MAP kinase p49 3F12|MAPK 10|c-Jun N-terminal kinase 3|stress activated protein kinase beta|stress-activated protein kinase 1b|stress-activated protein kinase JNK3 20121230 -9606 5603 MAPK13 RP1-179N16.4 MAPK 13|MAPK-13|PRKM13|SAPK4|p38delta HGNC:6875|MIM:602899|Ensembl:ENSG00000156711|HPRD:09113|Vega:OTTHUMG00000014587 6 6p21.31 mitogen-activated protein kinase 13 protein-coding MAPK13 mitogen-activated protein kinase 13 O MAP kinase 13|MAP kinase p38 delta|mitogen-activated protein kinase p38 delta|stress-activated protein kinase 4 20121230 -9606 5604 MAP2K1 - MAPKK1|MEK1|MKK1|PRKMK1 HGNC:6840|MIM:176872|Ensembl:ENSG00000169032|HPRD:01469|Vega:OTTHUMG00000133196 15 15q22.1-q22.33 mitogen-activated protein kinase kinase 1 protein-coding MAP2K1 mitogen-activated protein kinase kinase 1 O ERK activator kinase 1|MAP kinase kinase 1|MAPK/ERK kinase 1|MAPKK 1|MEK 1|dual specificity mitogen-activated protein kinase kinase 1|protein kinase, mitogen-activated, kinase 1 (MAP kinase kinase 1) 20121230 -9606 5605 MAP2K2 - MAPKK2|MEK2|MKK2|PRKMK2 HGNC:6842|MIM:601263|Ensembl:ENSG00000126934|HPRD:03164 19 19p13.3 mitogen-activated protein kinase kinase 2 protein-coding MAP2K2 mitogen-activated protein kinase kinase 2 O ERK activator kinase 2|MAP kinase kinase 2|MAPK/ERK kinase 2|dual specificity mitogen-activated protein kinase kinase 2|mitogen-activated protein kinase kinase 2, p45 20121230 -9606 5606 MAP2K3 - MAPKK3|MEK3|MKK3|PRKMK3|SAPKK-2|SAPKK2 HGNC:6843|MIM:602315|Ensembl:ENSG00000034152|HPRD:03816|Vega:OTTHUMG00000134322 17 17q11.2 mitogen-activated protein kinase kinase 3 protein-coding MAP2K3 mitogen-activated protein kinase kinase 3 O MAP kinase kinase 3|MAPK/ERK kinase 3|MAPKK 3|MEK 3|SAPK kinase 2|dual specificity mitogen-activated protein kinase kinase 3|stress-activated protein kinase kinase 2 20121230 -9606 5607 MAP2K5 - HsT17454|MAPKK5|MEK5|PRKMK5 HGNC:6845|MIM:602520|Ensembl:ENSG00000137764|HPRD:03951|Vega:OTTHUMG00000133264 15 15q23 mitogen-activated protein kinase kinase 5 protein-coding MAP2K5 mitogen-activated protein kinase kinase 5 O MAP kinase kinase 5|MAP kinase kinase MEK5b|MAPK/ERK kinase 5|MAPKK 5|MEK 5|dual specificity mitogen-activated protein kinase kinase 5 20121230 -9606 5608 MAP2K6 - MAPKK6|MEK6|MKK6|PRKMK6|SAPKK-3|SAPKK3 HGNC:6846|MIM:601254|Ensembl:ENSG00000108984|HPRD:03155|Vega:OTTHUMG00000180311 17 17q24.3 mitogen-activated protein kinase kinase 6 protein-coding MAP2K6 mitogen-activated protein kinase kinase 6 O MAPK/ERK kinase 6|MAPKK 6|MEK 6|SAPK kinase 3|dual specificity mitogen-activated protein kinase kinase 6|protein kinase, mitogen-activated, kinase 6 (MAP kinase kinase 6)|stress-activated protein kinase kinase 3 20121230 -9606 5609 MAP2K7 - Jnkk2|MAPKK7|MKK7|PRKMK7|SAPKK-4|SAPKK4 HGNC:6847|MIM:603014|Ensembl:ENSG00000076984|Vega:OTTHUMG00000137368 19 19p13.3-p13.2 mitogen-activated protein kinase kinase 7 protein-coding MAP2K7 mitogen-activated protein kinase kinase 7 O JNK-activating kinase 2|JNKK 2|MAP kinase kinase 7|MAPK/ERK kinase 7|MAPKK 7|MEK 7|SAPK kinase 4|c-Jun N-terminal kinase kinase 2|dual specificity mitogen-activated protein kinase kinase 7|stress-activated protein kinase kinase 4 20121230 -9606 5610 EIF2AK2 - EIF2AK1|PKR|PRKR HGNC:9437|MIM:176871|Ensembl:ENSG00000055332|HPRD:01468|Vega:OTTHUMG00000100962 2 2p22-p21 eukaryotic translation initiation factor 2-alpha kinase 2 protein-coding EIF2AK2 eukaryotic translation initiation factor 2-alpha kinase 2 O P1/eIF-2A protein kinase|double stranded RNA activated protein kinase|eIF-2A protein kinase 2|interferon-induced, double-stranded RNA-activated protein kinase|interferon-inducible elF2alpha kinase|p68 kinase|protein kinase, interferon-inducible double stranded RNA dependent|tyrosine-protein kinase EIF2AK2 20121230 -9606 5611 DNAJC3 - ERdj6|HP58|P58|P58IPK|PRKRI HGNC:9439|MIM:601184|Ensembl:ENSG00000102580|HPRD:03114|Vega:OTTHUMG00000017227 13 13q32.1 DnaJ (Hsp40) homolog, subfamily C, member 3 protein-coding DNAJC3 DnaJ (Hsp40) homolog, subfamily C, member 3 O dnaJ homolog subfamily C member 3|endoplasmic reticulum DnaJ protein 6|interferon-induced, double-stranded RNA-activated protein kinase inhibitor|protein kinase inhibitor of 58 kDa|protein kinase inhibitor p58|protein-kinase, interferon-inducible double stranded RNA dependent inhibitor 20121230 -9606 5612 PRKRIR - DAP4|P52rIPK|THAP0 HGNC:9440|MIM:607374|Ensembl:ENSG00000137492|HPRD:09567|Vega:OTTHUMG00000165280 11 11q13.5 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) protein-coding PRKRIR protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) O 52 kDa repressor of the inhibitor of the protein kinase|58 kDa interferon-induced protein kinase-interacting protein|THAP domain-containing protein 0|death-associated protein 4|inhibitor of protein kinase PKR|p58IPK-interacting protein 20121230 -9606 5613 PRKX - PKX1 HGNC:9441|MIM:300083|Ensembl:ENSG00000183943|HPRD:02097|Vega:OTTHUMG00000021087 X Xp22.3 protein kinase, X-linked protein-coding PRKX protein kinase, X-linked O cAMP-dependent protein kinase catalytic subunit PRKX|protein kinase PKX1|protein kinase X|protein kinase X-linked|serine/threonine-protein kinase PRKX 20121230 -9606 5615 PRKXP2 - - HGNC:9443 X Xq13.1 protein kinase, X-linked, pseudogene 2 pseudo PRKXP2 protein kinase, X-linked, pseudogene 2 O - 20121230 -9606 5616 PRKY - PRKXP3|PRKYP HGNC:9444|MIM:400008|HPRD:08949 Y Yp11.2 protein kinase, Y-linked, pseudogene pseudo PRKY protein kinase, Y-linked, pseudogene O - 20121230 -9606 5617 PRL RP3-404K8.1 - HGNC:9445|MIM:176760|Ensembl:ENSG00000172179|HPRD:07180|Vega:OTTHUMG00000016111 6 6p22.2-p21.3 prolactin protein-coding PRL prolactin O decidual prolactin 20121230 -9606 5618 PRLR - hPRLrI HGNC:9446|MIM:176761|Ensembl:ENSG00000113494|HPRD:01457|Vega:OTTHUMG00000090789 5 5p13.2 prolactin receptor protein-coding PRLR prolactin receptor O PRL-R|hPRL receptor|secreted prolactin binding protein 20121230 -9606 5619 PRM1 - CT94.1|P1 HGNC:9447|MIM:182880|Ensembl:ENSG00000175646|HPRD:01688|Vega:OTTHUMG00000090521 16 16p13.2 protamine 1 protein-coding PRM1 protamine 1 O cancer/testis antigen family 94, member 1|cysteine-rich protamine|sperm protamine P1|testis specific protamine 1 20121230 -9606 5620 PRM2 - CT94.2 HGNC:9448|MIM:182890|Ensembl:ENSG00000122304|HPRD:01691|Vega:OTTHUMG00000172317 16 16p13.2 protamine 2 protein-coding PRM2 protamine 2 O cancer/testis antigen family 94, member 2|protamine-2|sperm histone P2|sperm protamine P2 20121230 -9606 5621 PRNP RP5-1068H6.2 ASCR|AltPrP|CD230|CJD|GSS|KURU|PRIP|PrP|PrP27-30|PrP33-35C|PrPc|p27-30 HGNC:9449|MIM:176640|Ensembl:ENSG00000171867|HPRD:01453|Vega:OTTHUMG00000031786 20 20p13 prion protein protein-coding PRNP prion protein O CD230 antigen|major prion protein|prion-related protein 20121230 -9606 5623 PSPN - PSP HGNC:9579|MIM:602921|Ensembl:ENSG00000125650|HPRD:04230 19 19p13.3 persephin protein-coding PSPN persephin O - 20121230 -9606 5624 PROC - APC|PC|PROC1|THPH3|THPH4 HGNC:9451|MIM:612283|Ensembl:ENSG00000115718|HPRD:01466|Vega:OTTHUMG00000131528 2 2q13-q14 protein C (inactivator of coagulation factors Va and VIIIa) protein-coding PROC protein C (inactivator of coagulation factors Va and VIIIa) O anticoagulant protein C|autoprothrombin IIA|blood coagulation factor XIV|vitamin K-dependent protein C 20121230 -9606 5625 PRODH - HSPOX2|PIG6|POX|PRODH1|PRODH2|TP53I6 HGNC:9453|MIM:606810|Ensembl:ENSG00000100033|HPRD:08433|Vega:OTTHUMG00000150163 22 22q11.21 proline dehydrogenase (oxidase) 1 protein-coding PRODH proline dehydrogenase (oxidase) 1 O p53-induced gene 6 protein|proline dehydrogenase 1, mitochondrial|proline oxidase 2|proline oxidase, mitochondrial|tumor protein p53 inducible protein 6 20121230 -9606 5626 PROP1 - CPHD2|PROP-1 HGNC:9455|MIM:601538|Ensembl:ENSG00000175325|HPRD:03325|Vega:OTTHUMG00000130887 5 5q35.3 PROP paired-like homeobox 1 protein-coding PROP1 PROP paired-like homeobox 1 O homeobox protein prophet of Pit-1|pituitary-specific homeodomain factor|prophet of Pit1, paired-like homeodomain transcription factor 20121230 -9606 5627 PROS1 - PROS|PS21|PS22|PS23|PS24|PS25|PSA|THPH5|THPH6 HGNC:9456|MIM:176880|Ensembl:ENSG00000184500|HPRD:01473|Vega:OTTHUMG00000150354 3 3q11.2 protein S (alpha) protein-coding PROS1 protein S (alpha) O protein Sa|vitamin K-dependent plasma protein S|vitamin K-dependent protein S 20121230 -9606 5628 PROSP - PROS2 HGNC:9458 3 3p21-cen protein S pseudogene (beta) pseudo PROSP protein S pseudogene (beta) O - 20121230 -9606 5629 PROX1 - - HGNC:9459|MIM:601546|Ensembl:ENSG00000117707|HPRD:03330|Vega:OTTHUMG00000036946 1 1q41 prospero homeobox 1 protein-coding PROX1 prospero homeobox 1 O homeobox prospero-like protein PROX1|prospero homeobox protein 1|prospero-related homeobox 1 20121230 -9606 5630 PRPH - NEF4|PRPH1 HGNC:9461|MIM:170710|Ensembl:ENSG00000135406|HPRD:01365|Vega:OTTHUMG00000167140 12 12q12-q13 peripherin protein-coding PRPH peripherin O neurofilament 4 (57kD) 20121230 -9606 5631 PRPS1 RP11-540N4.1 ARTS|CMTX5|DFN2|DFNX1|PPRibP|PRS-I|PRSI HGNC:9462|MIM:304500|MIM:311850|Ensembl:ENSG00000147224|HPRD:02413|Vega:OTTHUMG00000022167 X Xq21.32-q24 phosphoribosyl pyrophosphate synthetase 1 protein-coding PRPS1 phosphoribosyl pyrophosphate synthetase 1 O dJ1070B1.2 (phosphoribosyl pyrophosphate synthetase 1)|deafness 2, perceptive, congenital|deafness, X-linked 2, perceptive, congenital|phosphoribosyl pyrophosphate synthase I|ribose-phosphate diphosphokinase 1|ribose-phosphate pyrophosphokinase 1 20121230 -9606 5634 PRPS2 - PRSII HGNC:9465|MIM:311860|Ensembl:ENSG00000101911|HPRD:02414|Vega:OTTHUMG00000021139 X Xp22.2 phosphoribosyl pyrophosphate synthetase 2 protein-coding PRPS2 phosphoribosyl pyrophosphate synthetase 2 O PPRibP synthetase|PRS-II|phosphoribosyl pyrophosphate synthase II|ribose-phosphate diphosphokinase 2|ribose-phosphate pyrophosphokinase 2 20121230 -9606 5635 PRPSAP1 - PAP39 HGNC:9466|MIM:601249|Ensembl:ENSG00000161542|HPRD:03151|Vega:OTTHUMG00000155969 17 17q24-q25 phosphoribosyl pyrophosphate synthetase-associated protein 1 protein-coding PRPSAP1 phosphoribosyl pyrophosphate synthetase-associated protein 1 O 39 kDa phosphoribosypyrophosphate synthase-associated protein|PRPP synthase-associated protein 1|phosphoribosyl pyrophosphate synthase-associated protein 1 20121230 -9606 5636 PRPSAP2 - PAP41 HGNC:9467|MIM:603762|Ensembl:ENSG00000141127|HPRD:04789|Vega:OTTHUMG00000059406 17 17p11.2-p12 phosphoribosyl pyrophosphate synthetase-associated protein 2 protein-coding PRPSAP2 phosphoribosyl pyrophosphate synthetase-associated protein 2 O 41 kDa phosphoribosypyrophosphate synthetase-associated protein|PRPP synthase-associated protein 2|phosphoribosyl pyrophosphate synthase-associated protein 2 20121230 -9606 5638 PRRG1 - PRGP1 HGNC:9469|MIM:604428|Ensembl:ENSG00000130962|HPRD:05113|Vega:OTTHUMG00000021360 X Xp21.1 proline rich Gla (G-carboxyglutamic acid) 1 protein-coding PRRG1 proline rich Gla (G-carboxyglutamic acid) 1 O proline-rich Gla (G-carboxyglutamic acid) polypeptide 1|transmembrane gamma-carboxyglutamic acid protein 1 20121230 -9606 5639 PRRG2 - PRGP2 HGNC:9470|MIM:604429|Ensembl:ENSG00000126460|HPRD:09189 19 19q13.33 proline rich Gla (G-carboxyglutamic acid) 2 protein-coding PRRG2 proline rich Gla (G-carboxyglutamic acid) 2 O proline-rich Gla (G-carboxglutamic acid) polypeptide 2|proline-rich Gla (G-carboxyglutamic acid) polypeptide 2|proline-rich Gla protein 2|proline-rich gamma-carboxyglutamic acid protein 2|transmembrane gamma-carboxyglutamic acid protein 2 20121230 -9606 5640 PRS - MRXS2 HGNC:9471|MIM:309610 X Xp21-p11 Prieto X-linked mental retardation syndrome unknown PRS Prieto X-linked mental retardation syndrome O - 20120622 -9606 5641 LGMN - AEP|LGMN1|PRSC1 HGNC:9472|MIM:602620|Ensembl:ENSG00000100600|HPRD:04017|Vega:OTTHUMG00000171199 14 14q32.1 legumain protein-coding LGMN legumain O asparaginyl endopeptidase|cysteine protease 1|protease, cysteine 1|protease, cysteine, 1 (legumain) 20121230 -9606 5643 PRSM2 - - HGNC:9474 - - protease, metallo, 2 protein-coding PRSM2 protease, metallo, 2 O - 20080828 -9606 5644 PRSS1 - TRP1|TRY1|TRY4|TRYP1 HGNC:9475|MIM:276000|Ensembl:ENSG00000204983|HPRD:02039|Vega:OTTHUMG00000158923 7 7q34 protease, serine, 1 (trypsin 1) protein-coding PRSS1 protease, serine, 1 (trypsin 1) O beta-trypsin|cationic trypsinogen|digestive zymogen|nonfunctional trypsin 1|trypsin-1|trypsinogen 1|trypsinogen A 20121230 -9606 5645 PRSS2 - TRY2|TRY8|TRYP2 HGNC:9483|MIM:601564|HPRD:03335 7 7q34 protease, serine, 2 (trypsin 2) protein-coding PRSS2 protease, serine, 2 (trypsin 2) O anionic trypsinogen|protease serine 2 preproprotein|protease, serine, 2, preproprotein|serine protease 2|trypsin 2|trypsin II|trypsin-2|trypsinogen 2 20121230 -9606 5646 PRSS3 RP11-176F3.3 MTG|PRSS4|T9|TRY3|TRY4 HGNC:9486|MIM:613578|Ensembl:ENSG00000010438|HPRD:06685|Vega:OTTHUMG00000019798 9 9p11.2 protease, serine, 3 protein-coding PRSS3 protease, serine, 3 O brain trypsinogen|mesotrypsin|mesotrypsinogen|pancreatic trypsinogen III|protease, serine, 4 (trypsin 4, brain)|trypsin III|trypsin IV|trypsin-3|trypsinogen 4|trypsinogen 5|trypsinogen IV 20121230 -9606 5648 MASP1 - 3MC1|CRARF|CRARF1|MAP1|MASP|MASP3|MAp44|PRSS5|RaRF HGNC:6901|MIM:600521|Ensembl:ENSG00000127241|HPRD:02749|Vega:OTTHUMG00000156461 3 3q27-q28 mannan-binding lectin serine peptidase 1 (C4/C2 activating component of Ra-reactive factor) protein-coding MASP1 mannan-binding lectin serine peptidase 1 (C4/C2 activating component of Ra-reactive factor) O Ra-reactive factor serine protease p100|complement factor MASP-3|complement-activating component of Ra-reactive factor|mannan-binding lectin serine protease 1|mannose-binding lectin-associated serine protease 1|mannose-binding protein-associated serine protease|serine protease 5 20121230 -9606 5649 RELN - LIS2|PRO1598|RL HGNC:9957|MIM:600514|Ensembl:ENSG00000189056|HPRD:02742|Vega:OTTHUMG00000157247 7 7q22 reelin protein-coding RELN reelin O - 20121230 -9606 5650 KLK7 - PRSS6|SCCE|hK7 HGNC:6368|MIM:604438|Ensembl:ENSG00000169035|HPRD:05115 19 19q13.41 kallikrein-related peptidase 7 protein-coding KLK7 kallikrein-related peptidase 7 O kallikrein 7 (chymotryptic, stratum corneum)|kallikrein-7|serine protease 6|signal protein|stratum corneum chymotryptic enzyme 20121230 -9606 5651 TMPRSS15 - ENTK|PRSS7 HGNC:9490|MIM:606635|Ensembl:ENSG00000154646|HPRD:05972|Vega:OTTHUMG00000074518 21 21q21.1 transmembrane protease, serine 15 protein-coding TMPRSS15 transmembrane protease, serine 15 O enterokinase|enteropeptidase|protease, serine, 7 (enterokinase)|serine protease 7 20121230 -9606 5652 PRSS8 - CAP1|PROSTASIN HGNC:9491|MIM:600823|Ensembl:ENSG00000052344|HPRD:02895|Vega:OTTHUMG00000176750 16 16p11.2 protease, serine, 8 protein-coding PRSS8 protease, serine, 8 O channel-activating protease 1|prostasin|serine protease 8 20121230 -9606 5653 KLK6 - Bssp|Klk7|PRSS18|PRSS9|SP59|hK6 HGNC:6367|MIM:602652|Ensembl:ENSG00000167755|HPRD:04037 19 19q13.3 kallikrein-related peptidase 6 protein-coding KLK6 kallikrein-related peptidase 6 O kallikrein-6|neurosin|protease M|serine protease 18|serine protease 9|zyme 20121230 -9606 5654 HTRA1 - ARMD7|CARASIL|HtrA|L56|ORF480|PRSS11 HGNC:9476|MIM:602194|Ensembl:ENSG00000166033|HPRD:03725|Vega:OTTHUMG00000019186 10 10q26.3 HtrA serine peptidase 1 protein-coding HTRA1 HtrA serine peptidase 1 O IGFBP5-protease|high-temperature requirement A serine peptidase 1|protease, serine, 11 (IGF binding)|serine protease HTRA1 20121230 -9606 5655 KLK10 - NES1|PRSSL1 HGNC:6358|MIM:602673|Ensembl:ENSG00000129451|HPRD:04054 19 19q13 kallikrein-related peptidase 10 protein-coding KLK10 kallikrein-related peptidase 10 O breast normal epithelial cell associated serine protease|kallikrein 10|kallikrein-10|normal epithelial cell-specific 1|protease serine-like 1|protease, serine-like, 1 20121230 -9606 5657 PRTN3 - ACPA|AGP7|C-ANCA|CANCA|MBN|MBT|NP-4|NP4|P29|PR-3|PR3 HGNC:9495|MIM:177020|Ensembl:ENSG00000196415|HPRD:01512|Vega:OTTHUMG00000181838 19 19p13.3 proteinase 3 protein-coding PRTN3 proteinase 3 O C-ANCA antigen|Wegener granulomatosis autoantigen|azurophil granule protein 7|leukocyte proteinase 3|myeloblastin|neutrophil proteinase 4|serine proteinase, neutrophil|wegener autoantigen 20121230 -9606 5660 PSAP - GLBA|SAP1 HGNC:9498|MIM:176801|Ensembl:ENSG00000197746|HPRD:01460|Vega:OTTHUMG00000018429 10 10q21-q22 prosaposin protein-coding PSAP prosaposin O proactivator polypeptide|sphingolipid activator protein-1 20121230 -9606 5661 PSBP1 - - HGNC:9499 - - prostatic steroid binding protein 1 protein-coding PSBP1 prostatic steroid binding protein 1 O prostatic steroid-binding protein 1 20080828 -9606 5662 PSD RP11-18I14.2 EFA6|EFA6A|PSD1|TYL HGNC:9507|MIM:602327|Ensembl:ENSG00000059915|HPRD:09085|Vega:OTTHUMG00000018954 10 10q24 pleckstrin and Sec7 domain containing protein-coding PSD pleckstrin and Sec7 domain containing O PH and SEC7 domain-containing protein 1|exchange factor for ARF6|pleckstrin homology and SEC7 domain-containing protein 1|pleckstrin-Sec7 domains-containing 20121230 -9606 5663 PSEN1 - AD3|FAD|PS-1|PS1|S182 HGNC:9508|MIM:104311|Ensembl:ENSG00000080815|HPRD:00087|Vega:OTTHUMG00000141279 14 14q24.3 presenilin 1 protein-coding PSEN1 presenilin 1 O presenilin-1 20121230 -9606 5664 PSEN2 - AD3L|AD4|CMD1V|PS2|STM2 HGNC:9509|MIM:600759|Ensembl:ENSG00000143801|HPRD:02860|Vega:OTTHUMG00000037563 1 1q31-q42 presenilin 2 (Alzheimer disease 4) protein-coding PSEN2 presenilin 2 (Alzheimer disease 4) O AD3LP|AD5|E5-1|PS-2|STM-2|presenilin-2 20121230 -9606 5669 PSG1 - B1G1|CD66f|DHFRP2|FL-NCA-1/2|PBG1|PS-beta-C/D|PS-beta-G-1|PSBG-1|PSBG1|PSG95|PSGGA|PSGIIA|SP1 HGNC:9514|MIM:176390|Ensembl:ENSG00000231924|HPRD:01449|Vega:OTTHUMG00000151123 19 19q13.2 pregnancy specific beta-1-glycoprotein 1 protein-coding PSG1 pregnancy specific beta-1-glycoprotein 1 O CD66 antigen-like family member F|fetal liver non-specific cross-reactive antigen 1/2|pregnancy-specific B-1 glycoprotein|pregnancy-specific beta-1 glycoprotein C/D|pregnancy-specific beta-1-glycoprotein 1|pregnancy-specific glycoprotein 1 20121230 -9606 5670 PSG2 - CEA|PSBG2|PSG1 HGNC:9519|MIM:176391|Ensembl:ENSG00000242221|HPRD:08891|Vega:OTTHUMG00000151547 19 19q13.1-q13.2 pregnancy specific beta-1-glycoprotein 2 protein-coding PSG2 pregnancy specific beta-1-glycoprotein 2 O PS-beta-E|PS-beta-G-2|PSBG-2|carcinoembryonic antigen SG8|pregnancy-specific beta-1 glycoprotein E|pregnancy-specific beta-1-glycoprotein 2|pregnancy-specific beta-1-glycoprotein 7|pregnancy-specific beta-1-glycoprotein-2|pregnancy-specific glycoprotein 2 20121230 -9606 5671 PSG3 - - HGNC:9520|MIM:176392|Ensembl:ENSG00000221826|HPRD:08892|Vega:OTTHUMG00000151120 19 19q13.2 pregnancy specific beta-1-glycoprotein 3 protein-coding PSG3 pregnancy specific beta-1-glycoprotein 3 O PS-beta-G-3|PSBG-3|carcinoembryonic antigen SG5|pregnancy-specific beta-1-glycoprotein 3|pregnancy-specific glycoprotein 3 20121230 -9606 5672 PSG4 - PSG9 HGNC:9521|MIM:176393|Ensembl:ENSG00000243137|HPRD:08893|Vega:OTTHUMG00000151544 19 19q13.2 pregnancy specific beta-1-glycoprotein 4 protein-coding PSG4 pregnancy specific beta-1-glycoprotein 4 O PS-beta-G-4|PS-beta-G-9|PSBG-4|PSBG-9|Pregnancy-specific beta-1-glycoprotein-4|pregnancy-specific beta-1-glycoprotein 4|pregnancy-specific beta-1-glycoprotein 9|pregnancy-specific glycoprotein 4|pregnancy-specific glycoprotein 9 20121230 -9606 5673 PSG5 - FL-NCA-3|PSG HGNC:9522|MIM:176394|Ensembl:ENSG00000204941|HPRD:08894|Vega:OTTHUMG00000151539 19 19q13.2 pregnancy specific beta-1-glycoprotein 5 protein-coding PSG5 pregnancy specific beta-1-glycoprotein 5 O PS-beta-G-5|PSBG-5|Pregnancy-specific beta-1-glycoprotein-5|fetal liver non-specific cross-reactive antigen 3|pregnancy-specific beta 1 glycoprotein|pregnancy-specific beta-1 glycoprotein|pregnancy-specific beta-1-glycoprotein 5|pregnancy-specific glycoprotein 5 20121230 -9606 5675 PSG6 - PSBG-10|PSBG-12|PSBG-6|PSG10|PSGGB HGNC:9523|MIM:176395|Ensembl:ENSG00000170848|HPRD:08895|Vega:OTTHUMG00000151127 19 19q13.2 pregnancy specific beta-1-glycoprotein 6 protein-coding PSG6 pregnancy specific beta-1-glycoprotein 6 O PS-beta-G-10|PS-beta-G-12|PS-beta-G-6|pregnancy-specific beta-1-glycoprotein 10|pregnancy-specific beta-1-glycoprotein 12|pregnancy-specific beta-1-glycoprotein 6 20121230 -9606 5676 PSG7 - PSBG-7|PSG1|PSGGA HGNC:9524|MIM:176396|Ensembl:ENSG00000221878|HPRD:08896|Vega:OTTHUMG00000151125 19 19q13.2 pregnancy specific beta-1-glycoprotein 7 (gene/pseudogene) protein-coding PSG7 pregnancy specific beta-1-glycoprotein 7 (gene/pseudogene) O PS-beta-G-7|pregnancy-specific glycoprotein 7|putative pregnancy-specific beta-1-glycoprotein 7 20121230 -9606 5678 PSG9 - PS34|PSBG-11|PSBG-9|PSG11|PSGII HGNC:9526|MIM:176398|Ensembl:ENSG00000183668|HPRD:08897|Vega:OTTHUMG00000151541 19 19q13.2 pregnancy specific beta-1-glycoprotein 9 protein-coding PSG9 pregnancy specific beta-1-glycoprotein 9 O PS-beta-B|PS-beta-G-11|PS-beta-G-9|pregnancy specific beta-1-glycoprotein 11|pregnancy-specific beta-1 glycoprotein B|pregnancy-specific beta-1-glycoprotein 9 20121230 -9606 5680 PSG11 - PSBG-11|PSBG-13|PSG13|PSG14 HGNC:9516|MIM:176401|Ensembl:ENSG00000243130|HPRD:08898|Vega:OTTHUMG00000151546 19 19q13.2 pregnancy specific beta-1-glycoprotein 11 protein-coding PSG11 pregnancy specific beta-1-glycoprotein 11 O PS-beta-G-11|PS-beta-G-13|pregnancy-specific beta-1-glycoprotein 11|pregnancy-specific beta-1-glycoprotein 13 20121230 -9606 5681 PSKH1 - - HGNC:9529|MIM:177015|Ensembl:ENSG00000159792|HPRD:01511|Vega:OTTHUMG00000137548 16 16q22.1 protein serine kinase H1 protein-coding PSKH1 protein serine kinase H1 O PSK-H1|serine/threonine-protein kinase H1 20121230 -9606 5682 PSMA1 - HC2|NU|PROS30 HGNC:9530|MIM:602854|Ensembl:ENSG00000129084|Ensembl:ENSG00000256206|HPRD:04170|Vega:OTTHUMG00000165825|Vega:OTTHUMG00000168126 11 11p15.1 proteasome (prosome, macropain) subunit, alpha type, 1 protein-coding PSMA1 proteasome (prosome, macropain) subunit, alpha type, 1 O 30 kDa prosomal protein|PROS-30|macropain subunit C2|macropain subunit nu|multicatalytic endopeptidase complex subunit C2|proteasome component C2|proteasome nu chain|proteasome subunit alpha type-1|proteasome subunit nu|proteasome subunit, alpha-type, 1|protein P30-33K 20121230 -9606 5683 PSMA2 - HC3|MU|PMSA2|PSC2 HGNC:9531|MIM:176842|Ensembl:ENSG00000106588|Ensembl:ENSG00000256646|HPRD:08907|Vega:OTTHUMG00000023916|Vega:OTTHUMG00000168259 7 7p13 proteasome (prosome, macropain) subunit, alpha type, 2 protein-coding PSMA2 proteasome (prosome, macropain) subunit, alpha type, 2 O macropain subunit C3|multicatalytic endopeptidase complex subunit C3|proteasome component C3|proteasome subunit HC3|proteasome subunit alpha type-2 20121230 -9606 5684 PSMA3 - HC8|PSC3 HGNC:9532|MIM:176843|Ensembl:ENSG00000100567|HPRD:01463|Vega:OTTHUMG00000140319 14 14q23 proteasome (prosome, macropain) subunit, alpha type, 3 protein-coding PSMA3 proteasome (prosome, macropain) subunit, alpha type, 3 O macropain subunit C8|multicatalytic endopeptidase complex subunit C8|proteasome component C8|proteasome subunit C8|proteasome subunit alpha type-3 20121230 -9606 5685 PSMA4 - HC9|HsT17706|PSC9 HGNC:9533|MIM:176846|Ensembl:ENSG00000041357|HPRD:10168|Vega:OTTHUMG00000143859 15 15q25.1 proteasome (prosome, macropain) subunit, alpha type, 4 protein-coding PSMA4 proteasome (prosome, macropain) subunit, alpha type, 4 O macropain subunit C9|multicatalytic endopeptidase complex subunit C9|proteasome component C9|proteasome subunit HC9|proteasome subunit L|proteasome subunit alpha type-4 20121230 -9606 5686 PSMA5 - PSC5|ZETA HGNC:9534|MIM:176844|Ensembl:ENSG00000143106|HPRD:01464|Vega:OTTHUMG00000012001 1 1p13 proteasome (prosome, macropain) subunit, alpha type, 5 protein-coding PSMA5 proteasome (prosome, macropain) subunit, alpha type, 5 O macropain subunit zeta|macropain zeta chain|multicatalytic endopeptidase complex zeta chain|proteasome alpha 5 subunit|proteasome component 5|proteasome subunit alpha type-5|proteasome subunit zeta|proteasome zeta chain 20121230 -9606 5687 PSMA6 - IOTA|PROS27|p27K HGNC:9535|MIM:602855|Ensembl:ENSG00000100902|HPRD:04171|Vega:OTTHUMG00000140221 14 14q13 proteasome (prosome, macropain) subunit, alpha type, 6 protein-coding PSMA6 proteasome (prosome, macropain) subunit, alpha type, 6 O 27 kDa prosomal protein|PROS-27|macropain iota chain|macropain subunit iota|multicatalytic endopeptidase complex iota chain|prosomal P27K protein|proteasome iota chain|proteasome subunit alpha type-6|proteasome subunit iota 20121230 -9606 5688 PSMA7 RP5-1005F21.4 C6|HSPC|RC6-1|XAPC7 HGNC:9536|MIM:606607|Ensembl:ENSG00000101182|HPRD:05967|Vega:OTTHUMG00000032895 20 20q13.33 proteasome (prosome, macropain) subunit, alpha type, 7 protein-coding PSMA7 proteasome (prosome, macropain) subunit, alpha type, 7 O proteasome subunit RC6-1|proteasome subunit XAPC7|proteasome subunit alpha 4|proteasome subunit alpha type-7 20121230 -9606 5689 PSMB1 - HC5|PMSB1|PSC5 HGNC:9537|MIM:602017|Ensembl:ENSG00000008018|HPRD:03603|Vega:OTTHUMG00000016087 6 6q27 proteasome (prosome, macropain) subunit, beta type, 1 protein-coding PSMB1 proteasome (prosome, macropain) subunit, beta type, 1 O macropain subunit C5|multicatalytic endopeptidase complex subunit C5|proteasome beta 1 subunit|proteasome component C5|proteasome gamma chain|proteasome subunit HC5|proteasome subunit beta type-1 20121230 -9606 5690 PSMB2 RP5-983H21.1 HC7-I HGNC:9539|MIM:602175|Ensembl:ENSG00000126067|HPRD:03708|Vega:OTTHUMG00000004169 1 1p34.2 proteasome (prosome, macropain) subunit, beta type, 2 protein-coding PSMB2 proteasome (prosome, macropain) subunit, beta type, 2 O macropain subunit C7-I|multicatalytic endopeptidase complex subunit C7-1|multicatalytic endopeptidase complex subunit C7-I|proteasome beta 2 subunit|proteasome component C7-I|proteasome subunit beta type-2|proteasome subunit, beta type, 2 20121230 -9606 5691 PSMB3 - HC10-II HGNC:9540|MIM:602176|Ensembl:ENSG00000108294|HPRD:03709|Vega:OTTHUMG00000133124 17 17q12 proteasome (prosome, macropain) subunit, beta type, 3 protein-coding PSMB3 proteasome (prosome, macropain) subunit, beta type, 3 O proteasome chain 13|proteasome component C10-II|proteasome subunit beta type-3|proteasome theta chain 20121230 -9606 5692 PSMB4 - HN3|HsN3|PROS-26|PROS26 HGNC:9541|MIM:602177|Ensembl:ENSG00000159377|HPRD:03710|Vega:OTTHUMG00000012494 1 1q21 proteasome (prosome, macropain) subunit, beta type, 4 protein-coding PSMB4 proteasome (prosome, macropain) subunit, beta type, 4 O 26 kDa prosomal protein|hsBPROS26|macropain beta chain|multicatalytic endopeptidase complex beta chain|proteasome beta chain|proteasome chain 3|proteasome subunit HsN3|proteasome subunit beta type-4|proteasome subunit, beta type, 4 20121230 -9606 5693 PSMB5 - LMPX|MB1|X HGNC:9542|MIM:600306|Ensembl:ENSG00000100804|HPRD:02629|Vega:OTTHUMG00000028713 14 14q11.2 proteasome (prosome, macropain) subunit, beta type, 5 protein-coding PSMB5 proteasome (prosome, macropain) subunit, beta type, 5 O PSX large multifunctional protease X|macropain epsilon chain|multicatalytic endopeptidase complex epsilon chain|proteasome beta 5 subunit|proteasome catalytic subunit 3|proteasome chain 6|proteasome epsilon chain|proteasome subunit MB1|proteasome subunit X|proteasome subunit beta type-5|proteasome subunit, beta type, 5 20121230 -9606 5694 PSMB6 - DELTA|LMPY|Y HGNC:9543|MIM:600307|Ensembl:ENSG00000142507|HPRD:02630|Vega:OTTHUMG00000090777 17 17p13 proteasome (prosome, macropain) subunit, beta type, 6 protein-coding PSMB6 proteasome (prosome, macropain) subunit, beta type, 6 O PSY large multifunctional protease Y|macropain delta chain|multicatalytic endopeptidase complex delta chain|proteasome catalytic subunit 1|proteasome delta chain|proteasome subunit Y|proteasome subunit beta type-6|proteasome subunit delta 20121230 -9606 5695 PSMB7 RP11-101K10.7 Z HGNC:9544|MIM:604030|Ensembl:ENSG00000136930|HPRD:04940|Vega:OTTHUMG00000021042 9 9q34.11-q34.12 proteasome (prosome, macropain) subunit, beta type, 7 protein-coding PSMB7 proteasome (prosome, macropain) subunit, beta type, 7 O macropain chain Z|multicatalytic endopeptidase complex chain Z|proteasome catalytic subunit 2|proteasome subunit Z|proteasome subunit alpha|proteasome subunit beta type-7 20121230 -9606 5696 PSMB8 DAAP-57C1.3 ALDD|D6S216|D6S216E|JMP|LMP7|NKJO|PSMB5i|RING10 HGNC:9545|MIM:177046|Ensembl:ENSG00000204264|HPRD:01515|Vega:OTTHUMG00000031285 6 6p21.3 proteasome (prosome, macropain) subunit, beta type, 8 (large multifunctional peptidase 7) protein-coding PSMB8 proteasome (prosome, macropain) subunit, beta type, 8 (large multifunctional peptidase 7) O low molecular mass protein 7|low molecular weight protein 7|macropain subunit C13|multicatalytic endopeptidase complex subunit C13|protease component C13|proteasome catalytic subunit 3i|proteasome component C13|proteasome subunit Y2|proteasome subunit beta 5i|proteasome subunit beta type-8|proteasome-related gene 7|really interesting new gene 10 protein 20121230 -9606 5697 PYY - PYY-I|PYY1 HGNC:9748|MIM:600781|Ensembl:ENSG00000131096|HPRD:02869|Vega:OTTHUMG00000181801 17 17q21.1 peptide YY protein-coding PYY peptide YY O peptide tyrosine tyrosine 20121230 -9606 5698 PSMB9 DADB-223G19.3 LMP2|PSMB6i|RING12|beta1i HGNC:9546|MIM:177045|Ensembl:ENSG00000240065|HPRD:01514|Vega:OTTHUMG00000031287 6 6p21.3 proteasome (prosome, macropain) subunit, beta type, 9 (large multifunctional peptidase 2) protein-coding PSMB9 proteasome (prosome, macropain) subunit, beta type, 9 (large multifunctional peptidase 2) O low molecular mass protein 2|macropain chain 7|multicatalytic endopeptidase complex chain 7|proteasome catalytic subunit 1i|proteasome chain 7|proteasome subunit beta 6i|proteasome subunit beta type-9|proteasome subunit beta-1i|proteasome-related gene 2|really interesting new gene 12 protein 20121230 -9606 5699 PSMB10 - LMP10|MECL1|beta2i HGNC:9538|MIM:176847|Ensembl:ENSG00000205220|HPRD:01465|Vega:OTTHUMG00000137553 16 16q22.1 proteasome (prosome, macropain) subunit, beta type, 10 protein-coding PSMB10 proteasome (prosome, macropain) subunit, beta type, 10 O low molecular mass protein 10|macropain subunit MECl-1|multicatalytic endopeptidase complex subunit MECl-1|proteasome MECl-1|proteasome catalytic subunit 2i|proteasome subunit MECL1|proteasome subunit beta 7i|proteasome subunit beta type-10|proteasome subunit beta-2i 20121230 -9606 5700 PSMC1 - P26S4|S4|p56 HGNC:9547|MIM:602706|Ensembl:ENSG00000100764|HPRD:04084|Vega:OTTHUMG00000171019 14 14q32.11 proteasome (prosome, macropain) 26S subunit, ATPase, 1 protein-coding PSMC1 proteasome (prosome, macropain) 26S subunit, ATPase, 1 O 26S protease regulatory subunit 4|26S proteasome AAA-ATPase subunit RPT2|proteasome 26S ATPase subunit 1|proteasome 26S subunit ATPase 1|proteasome 26S subunit, ATPase, 1 20121230 -9606 5701 PSMC2 - MSS1|Nbla10058|S7 HGNC:9548|MIM:154365|Ensembl:ENSG00000161057|HPRD:01105|Vega:OTTHUMG00000157206 7 7q22.1-q22.3 proteasome (prosome, macropain) 26S subunit, ATPase, 2 protein-coding PSMC2 proteasome (prosome, macropain) 26S subunit, ATPase, 2 O 26S protease regulatory subunit 7|26S proteasome AAA-ATPase subunit RPT1|mammalian suppressor of sgv-1 of yeast|protease 26S subunit 7|proteasome 26S subunit ATPase 2|proteasome 26S subunit, ATPase, 2|putative protein product of Nbla10058 20121230 -9606 5702 PSMC3 - TBP1 HGNC:9549|MIM:186852|Ensembl:ENSG00000165916|HPRD:01733|Vega:OTTHUMG00000167692 11 11p11.2 proteasome (prosome, macropain) 26S subunit, ATPase, 3 protein-coding PSMC3 proteasome (prosome, macropain) 26S subunit, ATPase, 3 O 26S protease regulatory subunit 6A|26S proteasome AAA-ATPase subunit RPT5|TBP-1|Tat-binding protein 1|human immunodeficiency virus tat transactivator binding protein-1|proteasome 26S subunit ATPase 3|proteasome subunit P50 20121230 -9606 5703 PSMC3P - - HGNC:9550 9 9p22.1 proteasome (prosome, macropain) 26S subunit, ATPase, 3 pseudogene pseudo PSMC3P proteasome (prosome, macropain) 26S subunit, ATPase, 3 pseudogene O - 20121230 -9606 5704 PSMC4 - MIP224|RPT3|S6|TBP-7|TBP7 HGNC:9551|MIM:602707|Ensembl:ENSG00000013275|HPRD:04085 19 19q13.11-q13.13 proteasome (prosome, macropain) 26S subunit, ATPase, 4 protein-coding PSMC4 proteasome (prosome, macropain) 26S subunit, ATPase, 4 O 26S protease regulatory subunit 6B|26S proteasome AAA-ATPase subunit RPT3|MB67-interacting protein|Tat-binding protein 7|protease 26S subunit 6 20121230 -9606 5705 PSMC5 - S8|SUG-1|SUG1|TBP10|TRIP1|p45|p45/SUG HGNC:9552|MIM:601681|Ensembl:ENSG00000087191|HPRD:03400|Vega:OTTHUMG00000179013 17 17q23.3 proteasome (prosome, macropain) 26S subunit, ATPase, 5 protein-coding PSMC5 proteasome (prosome, macropain) 26S subunit, ATPase, 5 O 26S protease regulatory subunit 8|26S proteasome AAA-ATPase subunit RPT6|MSUG1 protein|Tat-binding protein homolog 10|proteasome 26S ATPase subunit 5|proteasome 26S subunit ATPase 5|proteasome subunit p45|thyroid hormone receptor-interacting protein 1|thyroid receptor interactor 1 20121230 -9606 5706 PSMC6 - CADP44|P44|SUG2|p42 HGNC:9553|MIM:602708|Ensembl:ENSG00000100519|HPRD:04086|Vega:OTTHUMG00000152333 14 14q22.1 proteasome (prosome, macropain) 26S subunit, ATPase, 6 protein-coding PSMC6 proteasome (prosome, macropain) 26S subunit, ATPase, 6 O 26S protease regulatory subunit 10B|26S protease regulatory subunit S10B|26S proteasome AAA-ATPase subunit RPT4|conserved ATPase domain protein 44|proteasome 26S subunit ATPase 6|proteasome subunit p42 20121230 -9606 5707 PSMD1 - P112|Rpn2|S1 HGNC:9554|Ensembl:ENSG00000173692|HPRD:10169|Vega:OTTHUMG00000133223 2 2q37.1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 1 protein-coding PSMD1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 1 O 26S proteasome non-ATPase regulatory subunit 1|26S proteasome regulatory subunit RPN2|26S proteasome regulatory subunit S1|26S proteasome subunit p112 20121230 -9606 5708 PSMD2 - P97|Rpn1|S2|TRAP2 HGNC:9559|MIM:606223|Ensembl:ENSG00000175166|HPRD:05870|Vega:OTTHUMG00000156796 3 3q27.1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 2 protein-coding PSMD2 proteasome (prosome, macropain) 26S subunit, non-ATPase, 2 O 26S proteasome non-ATPase regulatory subunit 2|26S proteasome regulatory subunit RPN1|26S proteasome regulatory subunit S2|26S proteasome subunit p97|55.11 protein|TNFR-associated protein 2|protein 55.11|tumor necrosis factor receptor-associated protein 2|tumor necrosis factor type 1 receptor-associated protein 2 20121230 -9606 5709 PSMD3 - P58|RPN3|S3|TSTA2 HGNC:9560|Ensembl:ENSG00000108344|HPRD:10170|Vega:OTTHUMG00000133251 17 17q21.1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 3 protein-coding PSMD3 proteasome (prosome, macropain) 26S subunit, non-ATPase, 3 O 26S proteasome non-ATPase regulatory subunit 3|26S proteasome regulatory subunit RPN3|26S proteasome regulatory subunit S3|proteasome subunit p58|tissue specific transplantation antigen 2 20121230 -9606 5710 PSMD4 RP11-126K1.1 AF|AF-1|ASF|MCB1|Rpn10|S5A|pUB-R5 HGNC:9561|MIM:601648|Ensembl:ENSG00000159352|HPRD:03386|Vega:OTTHUMG00000012349 1 1q21.3 proteasome (prosome, macropain) 26S subunit, non-ATPase, 4 protein-coding PSMD4 proteasome (prosome, macropain) 26S subunit, non-ATPase, 4 O 26S proteasome non-ATPase regulatory subunit 4|26S proteasome regulatory subunit S5A|RPN10 homolog|S5a/antisecretory factor protein|angiocidin|antisecretory factor 1|multiubiquitin chain-binding protein 20121230 -9606 5711 PSMD5 RP11-27I1.5 S5B HGNC:9563|MIM:604452|Ensembl:ENSG00000095261|HPRD:05121|Vega:OTTHUMG00000020573 9 9q33.2 proteasome (prosome, macropain) 26S subunit, non-ATPase, 5 protein-coding PSMD5 proteasome (prosome, macropain) 26S subunit, non-ATPase, 5 O 26S protease subunit S5 basic|26S proteasome non-ATPase regulatory subunit 5|26S proteasome subunit S5B 20121230 -9606 5713 PSMD7 - MOV34|P40|Rpn8|S12 HGNC:9565|MIM:157970|Ensembl:ENSG00000103035|HPRD:01147|Vega:OTTHUMG00000137601 16 16q22.3 proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 protein-coding PSMD7 proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 O 26S proteasome non-ATPase regulatory subunit 7|26S proteasome regulatory subunit S12|26S proteasome regulatory subunit rpn8|Moloney leukemia virus-34 proviral integration|Mov34 homolog|proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 (Mov34 homolog)|proteasome subunit p40 20121230 -9606 5714 PSMD8 - HIP6|HYPF|Nin1p|Rpn12|S14|p31 HGNC:9566|Ensembl:ENSG00000099341|HPRD:10171|Vega:OTTHUMG00000150691 19 19q13.2 proteasome (prosome, macropain) 26S subunit, non-ATPase, 8 protein-coding PSMD8 proteasome (prosome, macropain) 26S subunit, non-ATPase, 8 O 26S proteasome non-ATPase regulatory subunit 8|26S proteasome regulatory subunit RPN12|26S proteasome regulatory subunit S14|26S proteasome regulatory subunit p31 20121230 -9606 5715 PSMD9 - Rpn4|p27 HGNC:9567|MIM:603146|Ensembl:ENSG00000110801|Ensembl:ENSG00000256950|HPRD:04394|Vega:OTTHUMG00000168945|Vega:OTTHUMG00000168946 12 12q24.31-q24.32 proteasome (prosome, macropain) 26S subunit, non-ATPase, 9 protein-coding PSMD9 proteasome (prosome, macropain) 26S subunit, non-ATPase, 9 O 26S proteasome non-ATPase regulatory subunit 9|26S proteasome regulatory subunit p27|homolog of rat Bridge 1|proteasome 26S non-ATPase regulatory subunit 9 20121230 -9606 5716 PSMD10 RP5-889N15.3 dJ889N15.2|p28|p28(GANK) HGNC:9555|MIM:603480|Ensembl:ENSG00000101843|HPRD:04594|Vega:OTTHUMG00000022177 X Xq22.3 proteasome (prosome, macropain) 26S subunit, non-ATPase, 10 protein-coding PSMD10 proteasome (prosome, macropain) 26S subunit, non-ATPase, 10 O 26S proteasome non-ATPase regulatory subunit 10|26S proteasome regulatory subunit p28|ankyrin repeat protein|gankyrin|hepatocellular carcinoma-associated protein p28-II 20121230 -9606 5717 PSMD11 - Rpn6|S9|p44.5 HGNC:9556|MIM:604449|Ensembl:ENSG00000108671|HPRD:05119|Vega:OTTHUMG00000132811 17 17q11.2 proteasome (prosome, macropain) 26S subunit, non-ATPase, 11 protein-coding PSMD11 proteasome (prosome, macropain) 26S subunit, non-ATPase, 11 O 26S proteasome non-ATPase regulatory subunit 11|26S proteasome regulatory subunit 9|26S proteasome regulatory subunit RPN6|26S proteasome regulatory subunit S9|26S proteasome regulatory subunit p44.5 20121230 -9606 5718 PSMD12 - Rpn5|p55 HGNC:9557|MIM:604450|Ensembl:ENSG00000197170|HPRD:05120|Vega:OTTHUMG00000140376 17 17q24.2 proteasome (prosome, macropain) 26S subunit, non-ATPase, 12 protein-coding PSMD12 proteasome (prosome, macropain) 26S subunit, non-ATPase, 12 O 26S proteasome non-ATPase regulatory subunit 12|26S proteasome regulatory subunit RPN5|26S proteasome regulatory subunit p55 20121230 -9606 5719 PSMD13 - HSPC027|Rpn9|S11|p40.5 HGNC:9558|MIM:603481|Ensembl:ENSG00000185627|HPRD:04595|Vega:OTTHUMG00000119072 11 11p15.5 proteasome (prosome, macropain) 26S subunit, non-ATPase, 13 protein-coding PSMD13 proteasome (prosome, macropain) 26S subunit, non-ATPase, 13 O 26S proteasome non-ATPase regulatory subunit 13|26S proteasome regulatory subunit RPN9|26S proteasome regulatory subunit S11|26S proteasome regulatory subunit p40.5|26S proteasome subunit p40.5 20121230 -9606 5720 PSME1 - IFI5111|PA28A|PA28alpha|REGalpha HGNC:9568|MIM:600654|Ensembl:ENSG00000092010|HPRD:02803|Vega:OTTHUMG00000028795 14 14q11.2 proteasome (prosome, macropain) activator subunit 1 (PA28 alpha) protein-coding PSME1 proteasome (prosome, macropain) activator subunit 1 (PA28 alpha) O 11S regulator complex alpha subunit|11S regulator complex subunit alpha|29-kD MCP activator subunit|IGUP I-5111|REG-alpha|activator of multicatalytic protease subunit 1|interferon gamma up-regulated I-5111 protein|interferon-gamma IEF SSP 5111|interferon-gamma-inducible protein 5111|proteasome activator 28 subunit alpha|proteasome activator complex subunit 1|proteasome activator subunit-1 20121230 -9606 5721 PSME2 - PA28B|PA28beta|REGbeta HGNC:9569|MIM:602161|Ensembl:ENSG00000100911|HPRD:03697|Vega:OTTHUMG00000028797 14 14q11.2 proteasome (prosome, macropain) activator subunit 2 (PA28 beta) protein-coding PSME2 proteasome (prosome, macropain) activator subunit 2 (PA28 beta) O 11S regulator complex beta subunit|11S regulator complex subunit beta|MCP activator, 31-kD subunit|REG-beta|activator of multicatalytic protease subunit 2|cell migration-inducing protein 22|proteasome activator 28 subunit beta|proteasome activator 28-beta|proteasome activator complex subunit 2|proteasome activator hPA28 subunit beta 20121230 -9606 5722 PSORS2 - PSS1 HGNC:9574|MIM:602723 17 17q psoriasis susceptibility 2 unknown PSORS2 psoriasis susceptibility 2 O - 20121018 -9606 5723 PSPH - PSP|PSPHD HGNC:9577|MIM:172480|Ensembl:ENSG00000146733|HPRD:01406|Vega:OTTHUMG00000023441 7 7p11.2 phosphoserine phosphatase protein-coding PSPH phosphoserine phosphatase O L-3-phosphoserine phosphatase|O-phosphoserine phosphohydrolase|PSPase 20121230 -9606 5724 PTAFR - PAFR HGNC:9582|MIM:173393|Ensembl:ENSG00000169403|HPRD:01422|Vega:OTTHUMG00000003953 1 1p35-p34.3 platelet-activating factor receptor protein-coding PTAFR platelet-activating factor receptor O PAF-R 20121230 -9606 5725 PTBP1 - HNRNP-I|HNRNPI|HNRPI|PTB|PTB-1|PTB-T|PTB2|PTB3|PTB4|pPTB HGNC:9583|MIM:600693|Ensembl:ENSG00000011304|HPRD:02823|Vega:OTTHUMG00000181789 19 19p13.3 polypyrimidine tract binding protein 1 protein-coding PTBP1 polypyrimidine tract binding protein 1 O 57 kDa RNA-binding protein PPTB-1|RNA-binding protein|heterogeneous nuclear ribonucleoprotein I|heterogeneous nuclear ribonucleoprotein polypeptide I|hnRNP I|polypyrimidine tract binding protein (heterogeneous nuclear ribonucleoprotein I)|polypyrimidine tract-binding protein 1 20121230 -9606 5726 TAS2R38 tcag7.360 PTC|T2R38|T2R61 HGNC:9584|MIM:607751|Ensembl:ENSG00000257138|HPRD:09672|Vega:OTTHUMG00000158374 7 7q34 taste receptor, type 2, member 38 protein-coding TAS2R38 taste receptor, type 2, member 38 O PTC bitter taste receptor|taste receptor type 2 member 38|taste receptor type 2 member 61 20121230 -9606 5727 PTCH1 RP11-435O5.3 BCNS|HPE7|NBCCS|PTC|PTC1|PTCH|PTCH11 HGNC:9585|MIM:601309|Ensembl:ENSG00000185920|HPRD:03200|Vega:OTTHUMG00000020280 9 9q22.3 patched 1 protein-coding PTCH1 patched 1 O PTCH protein +12b|PTCH protein +4'|PTCH protein -10|PTCH protein -3,4,5|patched homolog 1|protein patched homolog 1 20121230 -9606 5728 PTEN - 10q23del|BZS|DEC|GLM2|MHAM|MMAC1|PTEN1|TEP1 HGNC:9588|MIM:601728|Ensembl:ENSG00000171862|HPRD:03431|Vega:OTTHUMG00000018688 10 10q23.3 phosphatase and tensin homolog protein-coding PTEN phosphatase and tensin homolog O MMAC1 phosphatase and tensin homolog deleted on chromosome 10|mutated in multiple advanced cancers 1|phosphatase and tensin-like protein|phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN|phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 20121230 -9606 5729 PTGDR - AS1|ASRT1|DP|DP1|PTGDR1 HGNC:9591|MIM:604687|Ensembl:ENSG00000168229|HPRD:05254|Vega:OTTHUMG00000140299 14 14q22.1 prostaglandin D2 receptor (DP) protein-coding PTGDR prostaglandin D2 receptor (DP) O PGD receptor|PGD2 receptor|prostaglandin D2 receptor 20121230 -9606 5730 PTGDS RP11-229P13.6 L-PGDS|LPGDS|PDS|PGD2|PGDS|PGDS2 HGNC:9592|MIM:176803|Ensembl:ENSG00000107317|HPRD:08904|Vega:OTTHUMG00000020957 9 9q34.2-q34.3 prostaglandin D2 synthase 21kDa (brain) protein-coding PTGDS prostaglandin D2 synthase 21kDa (brain) O PGD2 synthase|beta-trace protein|cerebrin-28|glutathione-independent PGD synthase|glutathione-independent PGD synthetase|lipocalin-type prostaglandin D synthase|lipocalin-type prostaglandin-D synthase|prostaglandin D synthase|prostaglandin-D2 synthase|prostaglandin-H2 D-isomerase 20121230 -9606 5731 PTGER1 - EP1 HGNC:9593|MIM:176802|Ensembl:ENSG00000160951|HPRD:08903|Vega:OTTHUMG00000039610 19 19p13.1 prostaglandin E receptor 1 (subtype EP1), 42kDa protein-coding PTGER1 prostaglandin E receptor 1 (subtype EP1), 42kDa O PGE receptor EP1 subtype|PGE receptor, EP1 subtype|PGE2 receptor EP1 subtype|prostaglandin E receptor 1, subtype EP1|prostaglandin E2 receptor EP1 subtype|prostanoid EP1 receptor 20121230 -9606 5732 PTGER2 - EP2 HGNC:9594|MIM:176804|Ensembl:ENSG00000125384|HPRD:08905|Vega:OTTHUMG00000140300 14 14q22 prostaglandin E receptor 2 (subtype EP2), 53kDa protein-coding PTGER2 prostaglandin E receptor 2 (subtype EP2), 53kDa O PGE receptor EP2 subtype|PGE2 receptor EP2 subtype|prostaglandin E2 receptor EP2 subtype|prostanoid EP2 receptor 20121230 -9606 5733 PTGER3 RP5-952N6.2 EP3|EP3-I|EP3-II|EP3-III|EP3-IV|EP3e|PGE2-R HGNC:9595|MIM:176806|Ensembl:ENSG00000050628|HPRD:08906|Vega:OTTHUMG00000009399 1 1p31.2 prostaglandin E receptor 3 (subtype EP3) protein-coding PTGER3 prostaglandin E receptor 3 (subtype EP3) O PGE receptor, EP3 subtype|PGE2 receptor EP3 subtype|prostaglandin E receotor EP3 subtype 3 isoform|prostaglandin E2 receptor EP3 subtype|prostaglandin receptor (PGE-2)|prostanoid EP3 receptor 20121230 -9606 5734 PTGER4 - EP4|EP4R HGNC:9596|MIM:601586|Ensembl:ENSG00000171522|HPRD:03350|Vega:OTTHUMG00000094769 5 5p13.1 prostaglandin E receptor 4 (subtype EP4) protein-coding PTGER4 prostaglandin E receptor 4 (subtype EP4) O PGE receptor EP4 subtype|PGE receptor, EP4 subtype|PGE2 receptor EP4 subtype|prostaglandin E2 receptor EP4 subtype|prostanoid EP4 receptor 20121230 -9606 5735 PTGER4P1 - - HGNC:9597 9 - prostaglandin E receptor 4 (subtype EP4) pseudogene 1 pseudo PTGER4P1 prostaglandin E receptor 4 (subtype EP4) pseudogene 1 O - 20121230 -9606 5737 PTGFR RP5-944H6.1 FP HGNC:9600|MIM:600563|Ensembl:ENSG00000122420|HPRD:08988|Vega:OTTHUMG00000009644 1 1p31.1 prostaglandin F receptor (FP) protein-coding PTGFR prostaglandin F receptor (FP) O PGF receptor|PGF2 alpha receptor|PGF2-alpha receptor|prostaglandin F2 alpha receptor|prostaglandin F2-alpha receptor|prostaglandin receptor (2-alpha)|prostanoid FP receptor 20121230 -9606 5738 PTGFRN - CD315|CD9P-1|EWI-F|FPRP|SMAP-6 HGNC:9601|MIM:601204|Ensembl:ENSG00000134247|HPRD:03124|Vega:OTTHUMG00000012028 1 1p13.1 prostaglandin F2 receptor negative regulator protein-coding PTGFRN prostaglandin F2 receptor negative regulator O CD9 partner 1|glu-Trp-Ile EWI motif-containing protein F|prostaglandin F2-alpha receptor regulatory protein|prostaglandin F2-alpha receptor-associated protein 20121230 -9606 5739 PTGIR - IP|PRIPR HGNC:9602|MIM:600022|Ensembl:ENSG00000160013|HPRD:08959 19 19q13.3 prostaglandin I2 (prostacyclin) receptor (IP) protein-coding PTGIR prostaglandin I2 (prostacyclin) receptor (IP) O PGI receptor|PGI2 receptor|prostacyclin receptor|prostaglandin I2 receptor|prostanoid IP receptor 20121230 -9606 5740 PTGIS - CYP8|CYP8A1|PGIS|PTGI HGNC:9603|MIM:601699|Ensembl:ENSG00000124212|HPRD:09046|Vega:OTTHUMG00000033077 20 20q13.13 prostaglandin I2 (prostacyclin) synthase protein-coding PTGIS prostaglandin I2 (prostacyclin) synthase O cytochrome P450, family 8, subfamily A, polypeptide 1|prostacyclin synthase|prostaglandin I2 synthase 20121230 -9606 5741 PTH - PTH1 HGNC:9606|MIM:168450|Ensembl:ENSG00000152266|HPRD:01345|Vega:OTTHUMG00000165785 11 11p15.3-p15.1 parathyroid hormone protein-coding PTH parathyroid hormone O parathormone|parathyrin|parathyroid hormone 1 20121230 -9606 5742 PTGS1 RP11-542K23.6 COX1|COX3|PCOX1|PES-1|PGG/HS|PGHS-1|PGHS1|PHS1|PTGHS HGNC:9604|MIM:176805|Ensembl:ENSG00000095303|HPRD:07518|Vega:OTTHUMG00000020605 9 9q32-q33.3 prostaglandin-endoperoxide synthase 1 (prostaglandin G/H synthase and cyclooxygenase) protein-coding PTGS1 prostaglandin-endoperoxide synthase 1 (prostaglandin G/H synthase and cyclooxygenase) O PGH synthase 1|cyclooxygenase-1|prostaglandin G/H synthase 1|prostaglandin H2 synthase 1 20121230 -9606 5743 PTGS2 - COX-2|COX2|GRIPGHS|PGG/HS|PGHS-2|PHS-2|hCox-2 HGNC:9605|MIM:600262|Ensembl:ENSG00000073756|HPRD:02599|Vega:OTTHUMG00000035473 1 1q25.2-q25.3 prostaglandin-endoperoxide synthase 2 (prostaglandin G/H synthase and cyclooxygenase) protein-coding PTGS2 prostaglandin-endoperoxide synthase 2 (prostaglandin G/H synthase and cyclooxygenase) O PGH synthase 2|PHS II|cyclooxygenase 2b|prostaglandin G/H synthase 2|prostaglandin H2 synthase 2 20121230 -9606 5744 PTHLH - BDE2|HHM|PLP|PTHR|PTHRP HGNC:9607|MIM:168470|Ensembl:ENSG00000087494|HPRD:01348|Vega:OTTHUMG00000169221 12 12p12.1-p11.2 parathyroid hormone-like hormone protein-coding PTHLH parathyroid hormone-like hormone O PTH-rP|PTH-related protein|osteostatin|parathyroid hormone-like related protein|parathyroid hormone-related protein 20121230 -9606 5745 PTH1R - PFE|PTHR|PTHR1 HGNC:9608|MIM:168468|Ensembl:ENSG00000160801|HPRD:01347|Vega:OTTHUMG00000133515 3 3p22-p21.1 parathyroid hormone 1 receptor protein-coding PTH1R parathyroid hormone 1 receptor O PTH/PTHr receptor|PTH/PTHrP type I receptor|PTH1 receptor|parathyroid hormone receptor 1|parathyroid hormone/parathyroid hormone-related peptide receptor|parathyroid hormone/parathyroid hormone-related protein receptor|seven transmembrane helix receptor 20121230 -9606 5746 PTH2R - PTHR2 HGNC:9609|MIM:601469|Ensembl:ENSG00000144407|HPRD:03276|Vega:OTTHUMG00000132960 2 2q33 parathyroid hormone 2 receptor protein-coding PTH2R parathyroid hormone 2 receptor O PTH2 receptor|parathyroid hormone receptor 2 20121230 -9606 5747 PTK2 - FADK|FAK|FAK1|FRNK|PPP1R71|p125FAK|pp125FAK HGNC:9611|MIM:600758|Ensembl:ENSG00000169398|HPRD:02859|Vega:OTTHUMG00000067438 8 8q24.3 PTK2 protein tyrosine kinase 2 protein-coding PTK2 PTK2 protein tyrosine kinase 2 O FADK 1|FAK-related non-kinase polypeptide|focal adhesion kinase 1|focal adhesion kinase-related nonkinase|protein phosphatase 1 regulatory subunit 71|protein phosphatase 1, regulatory subunit 71 20121230 -9606 5753 PTK6 - BRK HGNC:9617|MIM:602004|Ensembl:ENSG00000101213|HPRD:03594|Vega:OTTHUMG00000033039 20 20q13.3 PTK6 protein tyrosine kinase 6 protein-coding PTK6 PTK6 protein tyrosine kinase 6 O breast tumor kinase|protein-tyrosine kinase 6|protein-tyrosine kinase BRK|tyrosine-protein kinase BRK 20121230 -9606 5754 PTK7 - CCK-4|CCK4 HGNC:9618|MIM:601890|Ensembl:ENSG00000112655|HPRD:03534|Vega:OTTHUMG00000014721 6 6p21.1-p12.2 PTK7 protein tyrosine kinase 7 protein-coding PTK7 PTK7 protein tyrosine kinase 7 O colon carcinoma kinase 4|inactive tyrosine-protein kinase 7|pseudo tyrosine kinase receptor 7|tyrosine-protein kinase-like 7 20121230 -9606 5756 TWF1 - A6|PTK9 HGNC:9620|MIM:610932|Ensembl:ENSG00000151239|HPRD:10174|Vega:OTTHUMG00000169426 12 12q12 twinfilin, actin-binding protein, homolog 1 (Drosophila) protein-coding TWF1 twinfilin, actin-binding protein, homolog 1 (Drosophila) O A6 protein tyrosine kinase|PTK9 protein tyrosine kinase 9|protein A6|protein tyrosine kinase 9|twinfilin-1 20121230 -9606 5757 PTMA - TMSA HGNC:9623|MIM:188390|Ensembl:ENSG00000187514|HPRD:01778|Vega:OTTHUMG00000153810 2 2q37.1 prothymosin, alpha protein-coding PTMA prothymosin, alpha O gene sequence 28|prothymosin alpha|prothymosin alpha protein 20121230 -9606 5758 PTMAP1 - - HGNC:9624 6 6p21.33 prothymosin, alpha pseudogene 1 (gene sequence 26) pseudo PTMAP1 prothymosin, alpha pseudogene 1 (gene sequence 26) O - 20121230 -9606 5759 PTMAP2 - - HGNC:9625 5 5q23.1 prothymosin, alpha pseudogene 2 (gene sequence 32) pseudo PTMAP2 prothymosin, alpha pseudogene 2 (gene sequence 32) O - 20121230 -9606 5760 PTMAP3 - - HGNC:9626 20 20p11.23 prothymosin, alpha pseudogene 3 (gene sequence 34) pseudo PTMAP3 prothymosin, alpha pseudogene 3 (gene sequence 34) O - 20121230 -9606 5761 PTMAP4 - PTMA HGNC:9627 12 12p13.31 prothymosin, alpha pseudogene 4 (gene sequence 112) pseudo PTMAP4 prothymosin, alpha pseudogene 4 (gene sequence 112) O - 20121230 -9606 5763 PTMS - ParaT HGNC:9629|MIM:168440|Ensembl:ENSG00000159335|HPRD:01344|Vega:OTTHUMG00000169196 12 12p13 parathymosin protein-coding PTMS parathymosin O - 20121230 -9606 5764 PTN - HARP|HBGF8|HBNF|NEGF1 HGNC:9630|MIM:162095|Ensembl:ENSG00000105894|HPRD:01199|Vega:OTTHUMG00000155709 7 7q33 pleiotrophin protein-coding PTN pleiotrophin O HB-GAM|HBBM|HBGF-8|HBNF-1|OSF-1|heparin affin regulatory protein|heparin binding growth factor 8|heparin-binding brain mitogen|heparin-binding growth factor 8|heparin-binding growth-associated molecule|heparin-binding neurite outgrowth-promoting factor 1|neurite growth-promoting factor 1|osteoblast-specific factor 1|pleiotrophin (heparin binding growth factor 8, neurite growth-promoting factor 1) 20121230 -9606 5765 PTOS1 - - HGNC:9631|MIM:178300 1 1p34.1-p32 ptosis, congenital 1 (autosomal dominant) unknown PTOS1 ptosis, congenital 1 (autosomal dominant) O - 20120622 -9606 5767 PTP4A2P1 - PTP4AP1|h-PRL-1 HGNC:9637 17 17q21 protein tyrosine phosphatase type IVA, member 2 pseudogene 1 pseudo PTP4A2P1 protein tyrosine phosphatase type IVA, member 2 pseudogene 1 O - 20121230 -9606 5768 QSOX1 RP11-502H18.3 Q6|QSCN6 HGNC:9756|MIM:603120|Ensembl:ENSG00000116260|HPRD:06785|HPRD:08043|Vega:OTTHUMG00000035256 1 1q24 quiescin Q6 sulfhydryl oxidase 1 protein-coding QSOX1 quiescin Q6 sulfhydryl oxidase 1 O hQSOX|sulfhydryl oxidase 1 20121230 -9606 5769 PTP4A2P2 - PTP4AP2 HGNC:9638 11 11q24-q25 protein tyrosine phosphatase type IVA, member 2 pseudogene 2 pseudo PTP4A2P2 protein tyrosine phosphatase type IVA, member 2 pseudogene 2 O - 20121230 -9606 5770 PTPN1 - PTP1B HGNC:9642|MIM:176885|Ensembl:ENSG00000196396|HPRD:01477|Vega:OTTHUMG00000032729 20 20q13.1-q13.2 protein tyrosine phosphatase, non-receptor type 1 protein-coding PTPN1 protein tyrosine phosphatase, non-receptor type 1 O protein tyrosine phosphatase 1B|protein tyrosine phosphatase, placental|protein-tyrosine phosphatase 1B|tyrosine-protein phosphatase non-receptor type 1 20121230 -9606 5771 PTPN2 - PTN2|PTPT|TC-PTP|TCELLPTP|TCPTP HGNC:9650|MIM:176887|Ensembl:ENSG00000175354|HPRD:06768|Vega:OTTHUMG00000131702 18 18p11.3-p11.2 protein tyrosine phosphatase, non-receptor type 2 protein-coding PTPN2 protein tyrosine phosphatase, non-receptor type 2 O T-cell protein tyrosine phosphatase|tyrosine-protein phosphatase non-receptor type 2 20121230 -9606 5774 PTPN3 RP11-18A3.3 PTP-H1|PTPH1 HGNC:9655|MIM:176877|Ensembl:ENSG00000070159|HPRD:06767|Vega:OTTHUMG00000020475 9 9q31 protein tyrosine phosphatase, non-receptor type 3 protein-coding PTPN3 protein tyrosine phosphatase, non-receptor type 3 O cytoskeletal-associated protein tyrosine phosphatase|protein-tyrosine phosphatase H1|tyrosine-protein phosphatase non-receptor type 3 20121230 -9606 5775 PTPN4 - MEG|PTPMEG|PTPMEG1 HGNC:9656|MIM:176878|Ensembl:ENSG00000088179|HPRD:01471|Vega:OTTHUMG00000131436 2 2q14.2 protein tyrosine phosphatase, non-receptor type 4 (megakaryocyte) protein-coding PTPN4 protein tyrosine phosphatase, non-receptor type 4 (megakaryocyte) O PTPase-MEG1|megakaryocyte phosphatase|megakaryocyte protein-tyrosine phosphatase|protein tyrosine phosphatase MEG1|protein-tyrosine phosphatase MEG1|tyrosine-protein phosphatase non-receptor type 4 20121230 -9606 5777 PTPN6 - HCP|HCPH|HPTP1C|PTP-1C|SH-PTP1|SHP-1|SHP-1L|SHP1 HGNC:9658|MIM:176883|Ensembl:ENSG00000111679|HPRD:01475|Vega:OTTHUMG00000168518 12 12p13 protein tyrosine phosphatase, non-receptor type 6 protein-coding PTPN6 protein tyrosine phosphatase, non-receptor type 6 O hematopoietic cell phosphatase|hematopoietic cell protein-tyrosine phosphatase|protein-tyrosine phosphatase 1C|protein-tyrosine phosphatase SHP-1|tyrosine-protein phosphatase non-receptor type 6 20121230 -9606 5778 PTPN7 RP11-294K24.3 BPTP-4|HEPTP|LC-PTP|LPTP|PTPNI HGNC:9659|MIM:176889|Ensembl:ENSG00000143851|HPRD:01480|Vega:OTTHUMG00000035931 1 1q32.1 protein tyrosine phosphatase, non-receptor type 7 protein-coding PTPN7 protein tyrosine phosphatase, non-receptor type 7 O dual specificity phosphatase 1|hematopoietic protein-tyrosine phosphatase|protein-tyrosine phosphatase LC-PTP|protein-tyrosine phosphatase, nonreceptor-type, stress induced|tyrosine-protein phosphatase non-receptor type 7 20121230 -9606 5780 PTPN9 - MEG2|PTPMEG2 HGNC:9661|MIM:600768|Ensembl:ENSG00000169410|HPRD:02864|Vega:OTTHUMG00000142838 15 15q24.2 protein tyrosine phosphatase, non-receptor type 9 protein-coding PTPN9 protein tyrosine phosphatase, non-receptor type 9 O PTPase MEG2|PTPase-MEG2|protein-tyrosine phosphatase MEG2|tyrosine-protein phosphatase non-receptor type 9 20121230 -9606 5781 PTPN11 - BPTP3|CFC|NS1|PTP-1D|PTP2C|SH-PTP2|SH-PTP3|SHP2 HGNC:9644|MIM:176876|Ensembl:ENSG00000179295|HPRD:01470|Vega:OTTHUMG00000134334 12 12q24 protein tyrosine phosphatase, non-receptor type 11 protein-coding PTPN11 protein tyrosine phosphatase, non-receptor type 11 O PTP-2C|protein-tyrosine phosphatase 1D|protein-tyrosine phosphatase 2C|tyrosine-protein phosphatase non-receptor type 11 20121230 -9606 5782 PTPN12 tcag7.1075 PTP-PEST|PTPG1 HGNC:9645|MIM:600079|Ensembl:ENSG00000127947|HPRD:02513|Vega:OTTHUMG00000023501 7 7q11.23 protein tyrosine phosphatase, non-receptor type 12 protein-coding PTPN12 protein tyrosine phosphatase, non-receptor type 12 O protein-tyrosine phosphatase G1|tyrosine-protein phosphatase non-receptor type 12 20121230 -9606 5783 PTPN13 - FAP-1|PNP1|PTP-BAS|PTP-BL|PTP1E|PTPL1|PTPLE|hPTP1E HGNC:9646|MIM:600267|Ensembl:ENSG00000163629|HPRD:02602|Vega:OTTHUMG00000160968 4 4q21.3 protein tyrosine phosphatase, non-receptor type 13 (APO-1/CD95 (Fas)-associated phosphatase) protein-coding PTPN13 protein tyrosine phosphatase, non-receptor type 13 (APO-1/CD95 (Fas)-associated phosphatase) O fas-associated protein-tyrosine phosphatase 1|hPTPE1|protein-tyrosine phosphatase 1E|protein-tyrosine phosphatase PTPL1|tyrosine-protein phosphatase non-receptor type 13 20121230 -9606 5784 PTPN14 RP11-176D17.1 PEZ|PTP36 HGNC:9647|MIM:603155|Ensembl:ENSG00000152104|HPRD:04402|Vega:OTTHUMG00000037039 1 1q32.2 protein tyrosine phosphatase, non-receptor type 14 protein-coding PTPN14 protein tyrosine phosphatase, non-receptor type 14 O cytoskeletal-associated protein tyrosine phosphatase|protein-tyrosine phosphatase pez|tyrosine-protein phosphatase non-receptor type 14 20121230 -9606 5786 PTPRA RP4-534B8.1 HEPTP|HLPR|HPTPA|HPTPalpha|LRP|PTPA|PTPRL2|R-PTP-alpha|RPTPA HGNC:9664|MIM:176884|Ensembl:ENSG00000132670|HPRD:01476|Vega:OTTHUMG00000031718 20 20p13 protein tyrosine phosphatase, receptor type, A protein-coding PTPRA protein tyrosine phosphatase, receptor type, A O Leukocyte common antigen-related peptide (protein tyrosine phosphate)|PTPLCA-related phosphatase|PTPase-alpha|protein tyrosine phosphatase, receptor type, alpha polypeptide|protein-tyrosine phosphatase alpha|receptor-type tyrosine-protein phosphatase alpha|tyrosine phosphatase alpha 20121230 -9606 5787 PTPRB - HPTP-BETA|HPTPB|PTPB|R-PTP-BETA|VEPTP HGNC:9665|MIM:176882|Ensembl:ENSG00000127329|HPRD:01474|Vega:OTTHUMG00000169499 12 12q15-q21 protein tyrosine phosphatase, receptor type, B protein-coding PTPRB protein tyrosine phosphatase, receptor type, B O VE-PTP|protein tyrosine phosphatase, receptor type, beta polypeptide|receptor-type tyrosine-protein phosphatase beta|vascular endothelial protein tyrosine phosphatase 20121230 -9606 5788 PTPRC RP11-553K8.4 B220|CD45|CD45R|GP180|L-CA|LCA|LY5|T200 HGNC:9666|MIM:151460|Ensembl:ENSG00000081237|HPRD:01050|Vega:OTTHUMG00000035702 1 1q31-q32 protein tyrosine phosphatase, receptor type, C protein-coding PTPRC protein tyrosine phosphatase, receptor type, C O CD45 antigen|T200 glycoprotein|T200 leukocyte common antigen|protein tyrosine phosphatase, receptor type, c polypeptide|receptor-type tyrosine-protein phosphatase C 20121230 -9606 5789 PTPRD - HPTP|HPTPD|HPTPDELTA|PTPD|RPTPDELTA HGNC:9668|MIM:601598|Ensembl:ENSG00000153707|HPRD:03358|Vega:OTTHUMG00000021005 9 9p23-p24.3 protein tyrosine phosphatase, receptor type, D protein-coding PTPRD protein tyrosine phosphatase, receptor type, D O R-PTP-delta|protein tyrosine phosphatase, receptor type, delta polypeptide|protein-tyrosine phosphatase delta|receptor-type tyrosine-protein phosphatase delta 20121230 -9606 5790 PTPRCAP - CD45-AP|LPAP HGNC:9667|MIM:601577|Ensembl:ENSG00000213402|HPRD:09032|Vega:OTTHUMG00000150325 11 11q13.3 protein tyrosine phosphatase, receptor type, C-associated protein protein-coding PTPRCAP protein tyrosine phosphatase, receptor type, C-associated protein O CD45 associated protein|CD45-associated protein|PTPRC-associated protein|lymphocyte phosphatase-associated phosphoprotein|protein tyrosine phosphatase receptor type C-associated protein|protein tyrosine phosphatase, receptor type, c polypeptide-associated protein 20121230 -9606 5791 PTPRE RP11-380J17.1 HPTPE|PTPE|R-PTP-EPSILON HGNC:9669|MIM:600926|Ensembl:ENSG00000132334|HPRD:02956|Vega:OTTHUMG00000019254 10 10q26 protein tyrosine phosphatase, receptor type, E protein-coding PTPRE protein tyrosine phosphatase, receptor type, E O protein tyrosine phosphatase, receptor type, epsilon polypeptide|receptor-type tyrosine-protein phosphatase epsilon 20121230 -9606 5792 PTPRF RP5-1029K14.1 LAR HGNC:9670|MIM:179590|Ensembl:ENSG00000142949|HPRD:01552|Vega:OTTHUMG00000007501 1 1p34 protein tyrosine phosphatase, receptor type, F protein-coding PTPRF protein tyrosine phosphatase, receptor type, F O LCA-homolog|leukocyte antigen-related (LAR) PTP receptor|leukocyte antigen-related tyrosine phosphatase|leukocyte common antigen related|protein tyrosine phosphatase, receptor type, F polypeptide|receptor-linked protein-tyrosine phosphatase LAR|receptor-type tyrosine-protein phosphatase F 20121230 -9606 5793 PTPRG - HPTPG|PTPG|R-PTP-GAMMA|RPTPG HGNC:9671|MIM:176886|Ensembl:ENSG00000144724|HPRD:01478|Vega:OTTHUMG00000158660 3 3p21-p14 protein tyrosine phosphatase, receptor type, G protein-coding PTPRG protein tyrosine phosphatase, receptor type, G O H_RG317H01.1|protein tyrosine phosphatase gamma|protein tyrosine phosphatase, receptor type, gamma polypeptide|protein-tyrosine phosphatase gamma|receptor type protein tyrosine phosphatase gamma|receptor tyrosine phosphatase gamma|receptor-type protein phosphatase gamma|receptor-type tyrosine-protein phosphatase gamma 20121230 -9606 5794 PTPRH - SAP1 HGNC:9672|MIM:602510|Ensembl:ENSG00000080031|HPRD:03942|Vega:OTTHUMG00000180701 19 19q13.4 protein tyrosine phosphatase, receptor type, H protein-coding PTPRH protein tyrosine phosphatase, receptor type, H O R-PTP-H|receptor-type tyrosine-protein phosphatase H|stomach cancer-associated protein tyrosine phosphatase 1|transmembrane-type protein-tyrosine phosphatase type H 20121230 -9606 5795 PTPRJ - CD148|DEP1|HPTPeta|R-PTP-ETA|SCC1 HGNC:9673|MIM:600925|Ensembl:ENSG00000149177|HPRD:02955|Vega:OTTHUMG00000166573 11 11p11.2 protein tyrosine phosphatase, receptor type, J protein-coding PTPRJ protein tyrosine phosphatase, receptor type, J O CD148 antigen|DEP-1|HPTP eta|R-PTP-J|density-enhanced phosphatase 1|human density enhanced phosphatase-1|protein tyrosine phosphatase, receptor type, J polypeptide|protein-tyrosine phosphatase eta|protein-tyrosine phosphatase receptor type J|receptor-type tyrosine-protein phosphatase eta|susceptibility to colon cancer 1, mouse, homolog of 20121230 -9606 5796 PTPRK RP3-480J14.1 R-PTP-kappa HGNC:9674|MIM:602545|Ensembl:ENSG00000152894|HPRD:03968|Vega:OTTHUMG00000015536 6 6q22.2-q22.3 protein tyrosine phosphatase, receptor type, K protein-coding PTPRK protein tyrosine phosphatase, receptor type, K O dJ480J14.2.1 (protein tyrosine phosphatase, receptor type, K (R-PTP-KAPPA, protein tyrosine phosphatase kappa , protein tyrosine phosphatase kappa|protein-tyrosine phosphatase kappa|protein-tyrosine phosphatase, receptor type, kappa|receptor-type tyrosine-protein phosphatase kappa 20121230 -9606 5797 PTPRM - PTPRL1|R-PTP-MU|RPTPM|RPTPU|hR-PTPu HGNC:9675|MIM:176888|Ensembl:ENSG00000173482|HPRD:01479|Vega:OTTHUMG00000131575 18 18p11.2 protein tyrosine phosphatase, receptor type, M protein-coding PTPRM protein tyrosine phosphatase, receptor type, M O protein tyrosine phosphatase mu|protein tyrosine phosphatase, receptor type, mu polypeptide|protein-tyrosine phosphatase mu|receptor-type tyrosine-protein phosphatase mu 20121230 -9606 5798 PTPRN - IA-2|IA-2/PTP|IA2|ICA512|R-PTP-N HGNC:9676|MIM:601773|Ensembl:ENSG00000054356|HPRD:03466|Vega:OTTHUMG00000133129 2 2q35-q36.1 protein tyrosine phosphatase, receptor type, N protein-coding PTPRN protein tyrosine phosphatase, receptor type, N O ICA 512|PTP IA-2|islet cell antigen 2|islet cell antigen 512|islet cell autoantigen 3|protein tyrosine phosphatase-like N|receptor-type tyrosine-protein phosphatase-like N 20121230 -9606 5799 PTPRN2 - IA-2beta|IAR|ICAAR|PTPRP|R-PTP-N2 HGNC:9677|MIM:601698|Ensembl:ENSG00000155093|HPRD:03413|Vega:OTTHUMG00000152646 7 7q36 protein tyrosine phosphatase, receptor type, N polypeptide 2 protein-coding PTPRN2 protein tyrosine phosphatase, receptor type, N polypeptide 2 O IAR/receptor-like protein-tyrosine phosphatase|islet cell autoantigen-related protein|phogrin|protein tyrosine phosphatase receptor pi|receptor-type tyrosine-protein phosphatase N2|tyrosine phosphatase IA-2 beta 20121230 -9606 5800 PTPRO - GLEPP1|NPHS6|PTP-OC|PTP-U2|PTPROT|PTPU2|R-PTP-O HGNC:9678|MIM:600579|Ensembl:ENSG00000151490|HPRD:02784|Vega:OTTHUMG00000168786 12 12p13.3-p13.2|12p13-p12 protein tyrosine phosphatase, receptor type, O protein-coding PTPRO protein tyrosine phosphatase, receptor type, O O PTP phi|PTPase U2|glomerular epithelial protein 1|osteoclastic transmembrane protein-tyrosine phosphatase|phosphotyrosine phosphatase U2|protein tyrosine phosphatase PTP-U2|receptor-type tyrosine-protein phosphatase O 20121230 -9606 5801 PTPRR - EC-PTP|PCPTP1|PTP-SL|PTPBR7|PTPRQ HGNC:9680|MIM:602853|Ensembl:ENSG00000153233|HPRD:04169|Vega:OTTHUMG00000169502 12 12q15 protein tyrosine phosphatase, receptor type, R protein-coding PTPRR protein tyrosine phosphatase, receptor type, R O Ch-1 PTPase|NC-PTPCOM1|R-PTP-R|ch-1PTPase|protein tyrosine phosphatase Cr1PTPase|protein-tyrosine phosphatase NC-PTPCOM1|protein-tyrosine phosphatase PCPTP1|receptor-type tyrosine-protein phosphatase R 20121230 -9606 5802 PTPRS - PTPSIGMA HGNC:9681|MIM:601576|Ensembl:ENSG00000105426|HPRD:03344|Vega:OTTHUMG00000180325 19 19p13.3 protein tyrosine phosphatase, receptor type, S protein-coding PTPRS protein tyrosine phosphatase, receptor type, S O R-PTP-S|R-PTP-sigma|protein tyrosine phosphatase PTPsigma|protein tyrosine phosphatase, receptor type, sigma|receptor-type tyrosine-protein phosphatase S|receptor-type tyrosine-protein phosphatase sigma 20121230 -9606 5803 PTPRZ1 - HPTPZ|HPTPzeta|PTP-ZETA|PTP18|PTPRZ|PTPZ|R-PTP-zeta-2|RPTPB|RPTPbeta|phosphacan HGNC:9685|MIM:176891|Ensembl:ENSG00000106278|HPRD:01481|Vega:OTTHUMG00000157057 7 7q31.3 protein tyrosine phosphatase, receptor-type, Z polypeptide 1 protein-coding PTPRZ1 protein tyrosine phosphatase, receptor-type, Z polypeptide 1 O protein tyrosine phosphatase, receptor-type, zeta polypeptide 1|protein-tyrosine phosphatase receptor type Z polypeptide 2|receptor-type tyrosine phosphatase beta/zeta|receptor-type tyrosine-protein phosphatase zeta 20121230 -9606 5804 PTPRZ2 - HTPZP2|PTPRZ HGNC:9686|MIM:604008 1 1p36.3 protein tyrosine phosphatase, receptor-type, Z polypeptide 2 protein-coding PTPRZ2 protein tyrosine phosphatase, receptor-type, Z polypeptide 2 O protein tyrosine phosphatase, receptor-type, zeta polypeptide 2 20121120 -9606 5805 PTS - PTPS HGNC:9689|MIM:612719|Ensembl:ENSG00000150787|HPRD:11840|Vega:OTTHUMG00000167167 11 11q22.3 6-pyruvoyltetrahydropterin synthase protein-coding PTS 6-pyruvoyltetrahydropterin synthase O 6-pyruvoyl tetrahydrobiopterin synthase|PTP synthase 20121230 -9606 5806 PTX3 - TNFAIP5|TSG-14 HGNC:9692|MIM:602492|Ensembl:ENSG00000163661|HPRD:03928|Vega:OTTHUMG00000158750 3 3q25 pentraxin 3, long protein-coding PTX3 pentraxin 3, long O TNF alpha-induced protein 5|pentaxin-related gene, rapidly induced by IL-1 beta, tumor necrosis factor, alpha-induced protein 5|pentaxin-related protein PTX3|pentraxin-3|pentraxin-related gene, rapidly induced by IL-1 beta|pentraxin-related protein PTX3|tumor necrosis factor alpha-induced protein 5|tumor necrosis factor, alpha-induced protein 5|tumor necrosis factor-inducible gene 14 protein|tumor necrosis factor-inducible protein TSG-14 20121230 -9606 5810 RAD1 - HRAD1|REC1 HGNC:9806|MIM:603153|Ensembl:ENSG00000113456|HPRD:04400|Vega:OTTHUMG00000090783 5 5p13.2 RAD1 homolog (S. pombe) protein-coding RAD1 RAD1 homolog (S. pombe) O DNA repair exonuclease REC1|DNA repair exonuclease rad1 homolog|cell cycle checkpoint protein Hrad1|cell cycle checkpoint protein RAD1|checkpoint control protein HRAD1|exonuclease homolog RAD1|rad1-like DNA damage checkpoint protein 20121230 -9606 5813 PURA hCG_45299 PUR-ALPHA|PUR1|PURALPHA HGNC:9701|MIM:600473|Ensembl:ENSG00000185129|HPRD:02721|Vega:OTTHUMG00000129242 5 5q31 purine-rich element binding protein A protein-coding PURA purine-rich element binding protein A O purine-rich single-stranded DNA-binding protein alpha|transcriptional activator protein Pur-alpha 20121230 -9606 5814 PURB - PURBETA HGNC:9702|MIM:608887|Ensembl:ENSG00000146676|HPRD:12325|Vega:OTTHUMG00000023578 7 7p13 purine-rich element binding protein B protein-coding PURB purine-rich element binding protein B O purine-rich element-binding protein B|transcriptional activator protein Pur-beta 20121230 -9606 5816 PVALB CITF22-126G10.2 D22S749 HGNC:9704|MIM:168890|Ensembl:ENSG00000100362|HPRD:01353|Vega:OTTHUMG00000150547 22 22q13.1 parvalbumin protein-coding PVALB parvalbumin O parvalbumin alpha 20121230 -9606 5817 PVR - CD155|HVED|NECL5|Necl-5|PVS|TAGE4 HGNC:9705|MIM:173850|Ensembl:ENSG00000073008|HPRD:01434|Vega:OTTHUMG00000151527 19 19q13.2 poliovirus receptor protein-coding PVR poliovirus receptor O nectin-like 5|nectin-like protein 5 20121230 -9606 5818 PVRL1 - CD111|CLPED1|ED4|HIgR|HVEC|OFC7|PRR|PRR1|PVRR|PVRR1|SK-12|nectin-1 HGNC:9706|MIM:600644|Ensembl:ENSG00000110400|HPRD:07200|Vega:OTTHUMG00000166177 11 11q23.3 poliovirus receptor-related 1 (herpesvirus entry mediator C) protein-coding PVRL1 poliovirus receptor-related 1 (herpesvirus entry mediator C) O ectodermal dysplasia 4 (Margarita Island type)|herpes virus entry mediator C|herpesvirus Ig-like receptor|nectin 1|poliovirus receptor-like 1|poliovirus receptor-related protein 1 20121230 -9606 5819 PVRL2 - CD112|HVEB|PRR2|PVRR2 HGNC:9707|MIM:600798|Ensembl:ENSG00000130202|HPRD:02879|Vega:OTTHUMG00000180839 19 19q13.2 poliovirus receptor-related 2 (herpesvirus entry mediator B) protein-coding PVRL2 poliovirus receptor-related 2 (herpesvirus entry mediator B) O herpesvirus entry protein B|nectin-2|poliovirus receptor-like 2|poliovirus receptor-related protein 2 20121230 -9606 5820 PVT1 - LINC00079|NCRNA00079 HGNC:9709|MIM:165140 8 8q24 Pvt1 oncogene (non-protein coding) miscRNA PVT1 Pvt1 oncogene (non-protein coding) O - 20121230 -9606 5822 PWP2 - EHOC-17|PWP2H|UTP1 HGNC:9711|MIM:601475|Ensembl:ENSG00000241945|HPRD:03279|Vega:OTTHUMG00000086893 21 21q22.3 PWP2 periodic tryptophan protein homolog (yeast) protein-coding PWP2 PWP2 periodic tryptophan protein homolog (yeast) O periodic tryptophan protein 2 homolog 20121230 -9606 5824 PEX19 OK/SW-cl.22 D1S2223E|HK33|PBD12A|PMP1|PMPI|PXF|PXMP1 HGNC:9713|MIM:600279|Ensembl:ENSG00000162735|HPRD:02610|Vega:OTTHUMG00000033112 1 1q23.2 peroxisomal biogenesis factor 19 protein-coding PEX19 peroxisomal biogenesis factor 19 O 33 kDa housekeeping protein|housekeeping gene, 33kD|peroxin-19|peroxisomal farnesylated protein 20121230 -9606 5825 ABCD3 - ABC43|PMP70|PXMP1|ZWS2 HGNC:67|MIM:170995|Ensembl:ENSG00000117528|HPRD:01368|Vega:OTTHUMG00000010717 1 1p21.3 ATP-binding cassette, sub-family D (ALD), member 3 protein-coding ABCD3 ATP-binding cassette, sub-family D (ALD), member 3 O 70 kDa peroxisomal membrane protein|ATP-binding cassette sub-family D member 3|Peroxisomal membrane protein-1 (70kD)|dJ824O18.1 (ATP-binding cassette, sub-family D (ALD), member 3 (PMP70, PXMP1))|peroxisomal membrane protein 1 (70kD, Zellweger syndrome) 20121230 -9606 5826 ABCD4 - ABC41|EST352188|MAHCJ|P70R|P79R|PMP69|PXMP1L HGNC:68|MIM:603214|Ensembl:ENSG00000119688|HPRD:04446|Vega:OTTHUMG00000171207 14 14q24.3 ATP-binding cassette, sub-family D (ALD), member 4 protein-coding ABCD4 ATP-binding cassette, sub-family D (ALD), member 4 O 69 kDa peroxisomal ABC-transporter|ATP-binding cassette sub-family D member 4|PMP70-related protein|PXMP1-L|peroxisomal membrane protein 69 20121230 -9606 5827 PXMP2 - PMP22 HGNC:9716|Ensembl:ENSG00000176894|HPRD:10176|Vega:OTTHUMG00000168019 12 12q24.33 peroxisomal membrane protein 2, 22kDa protein-coding PXMP2 peroxisomal membrane protein 2, 22kDa O 22 kDa peroxisomal membrane protein|peroxisomal membrane protein 2 20121230 -9606 5828 PEX2 - PAF1|PBD5A|PBD5B|PMP3|PMP35|PXMP3|RNF72|ZWS3 HGNC:9717|MIM:170993|Ensembl:ENSG00000164751|HPRD:01367|Vega:OTTHUMG00000164530 8 8q21.1 peroxisomal biogenesis factor 2 protein-coding PEX2 peroxisomal biogenesis factor 2 O 35 kDa peroxisomal membrane protein|RING finger protein 72|peroxisomal membrane protein 3, 35kDa|peroxisome assembly factor 1|peroxisome assembly factor-1|peroxisome biogenesis factor 2 20121230 -9606 5829 PXN hCG_1778014 - HGNC:9718|MIM:602505|Ensembl:ENSG00000089159|Vega:OTTHUMG00000169169 12 12q24.31 paxillin protein-coding PXN paxillin O - 20121230 -9606 5830 PEX5 - PBD2A|PBD2B|PTS1-BP|PTS1R|PXR1 HGNC:9719|MIM:600414|Ensembl:ENSG00000139197|HPRD:02684|Vega:OTTHUMG00000168175 12 12p13.31 peroxisomal biogenesis factor 5 protein-coding PEX5 peroxisomal biogenesis factor 5 O PTS1 receptor|peroxin-5|peroxisomal C-terminal targeting signal import receptor|peroxisomal targeting signal 1 (SKL type) receptor|peroxisomal targeting signal 1 receptor|peroxisomal targeting signal import receptor|peroxisomal targeting signal receptor 1|peroxisome receptor 1 20121230 -9606 5831 PYCR1 - ARCL2B|ARCL3B|P5C|P5CR|PIG45|PP222|PRO3|PYCR HGNC:9721|MIM:179035|Ensembl:ENSG00000183010|HPRD:01528|Vega:OTTHUMG00000178436 17 17q25.3 pyrroline-5-carboxylate reductase 1 protein-coding PYCR1 pyrroline-5-carboxylate reductase 1 O P5C reductase 1|P5CR 1|mitochondrial pyrroline-5-carboxylate reductase 1|proliferation-inducing protein 45|pyrroline-5-carboxylate reductase 1, mitochondrial 20121230 -9606 5832 ALDH18A1 - ARCL3A|GSAS|P5CS|PYCS HGNC:9722|MIM:138250|Ensembl:ENSG00000059573|HPRD:00696|Vega:OTTHUMG00000018815 10 10q24.3 aldehyde dehydrogenase 18 family, member A1 protein-coding ALDH18A1 aldehyde dehydrogenase 18 family, member A1 O aldehyde dehydrogenase family 18 member A1|delta-1-pyrroline-5-carboxylate synthase|delta-1-pyrroline-5-carboxylate synthetase|delta1-pyrroline-5-carboxlate synthetase|pyrroline-5-carboxylate synthetase (glutamate gamma-semialdehyde synthetase) 20121230 -9606 5833 PCYT2 - ET HGNC:8756|MIM:602679|Ensembl:ENSG00000185813|HPRD:04059|Vega:OTTHUMG00000177956 17 17q25.3 phosphate cytidylyltransferase 2, ethanolamine protein-coding PCYT2 phosphate cytidylyltransferase 2, ethanolamine O CTP:phosphoethanolamine cytidylyltransferase|ethanolamine-phosphate cytidylyltransferase|phosphorylethanolamine transferase 20121230 -9606 5834 PYGB RP5-965G21.1 GPBB HGNC:9723|MIM:138550|Ensembl:ENSG00000100994|HPRD:00720|Vega:OTTHUMG00000032117 20 20p11.2-p11.1 phosphorylase, glycogen; brain protein-coding PYGB phosphorylase, glycogen; brain O glycogen phosphorylase B|glycogen phosphorylase, brain form 20121230 -9606 5836 PYGL - GSD6 HGNC:9725|MIM:613741|Ensembl:ENSG00000100504|HPRD:01987|Vega:OTTHUMG00000166596 14 14q21-q22 phosphorylase, glycogen, liver protein-coding PYGL phosphorylase, glycogen, liver O glycogen phosphorylase, liver form 20121230 -9606 5837 PYGM - - HGNC:9726|MIM:608455|Ensembl:ENSG00000068976|HPRD:01986|Vega:OTTHUMG00000066835 11 11q12-q13.2 phosphorylase, glycogen, muscle protein-coding PYGM phosphorylase, glycogen, muscle O glycogen phosphorylase, muscle form|myophosphorylase 20121230 -9606 5858 PZP - CPAMD6 HGNC:9750|MIM:176420|Ensembl:ENSG00000126838|HPRD:07178|Vega:OTTHUMG00000154915 12 12p13-p12.2 pregnancy-zone protein protein-coding PZP pregnancy-zone protein O C3 and PZP-like alpha-2-macroglobulin domain-containing protein 6|pregnancy zone protein 20121230 -9606 5859 QARS - GLNRS|PRO2195 HGNC:9751|MIM:603727|Ensembl:ENSG00000172053|HPRD:07223|Vega:OTTHUMG00000156774 3 3p21.31 glutaminyl-tRNA synthetase protein-coding QARS glutaminyl-tRNA synthetase O glutamine tRNA ligase|glutamine--tRNA ligase|glutamine-tRNA synthetase 20121230 -9606 5860 QDPR - DHPR|PKU2|SDR33C1 HGNC:9752|MIM:612676|Ensembl:ENSG00000151552|HPRD:02025|Vega:OTTHUMG00000128537 4 4p15.31 quinoid dihydropteridine reductase protein-coding QDPR quinoid dihydropteridine reductase O 6,7-dihydropteridine reductase|HDHPR|dihydropteridine reductase|short chain dehydrogenase/reductase family 33C, member 1 20121230 -9606 5861 RAB1A - RAB1|YPT1 HGNC:9758|MIM:179508|Ensembl:ENSG00000138069|HPRD:01538|Vega:OTTHUMG00000152725 2 2p14 RAB1A, member RAS oncogene family protein-coding RAB1A RAB1A, member RAS oncogene family O GTP binding protein Rab1a|RAB1, member RAS oncogene family|Rab GTPase YPT1 homolog|YPT1-related protein|ras-related protein Rab-1A 20121230 -9606 5862 RAB2A - LHX|RAB2 HGNC:9763|MIM:179509|Ensembl:ENSG00000104388|HPRD:01539|Vega:OTTHUMG00000134298 8 8q12.1 RAB2A, member RAS oncogene family protein-coding RAB2A RAB2A, member RAS oncogene family O RAB2, member RAS oncogene family|ras-related protein Rab-2A|small GTP binding protein RAB2A 20121230 -9606 5863 RGL2 DADB-159G18.6 HKE1.5|KE1.5|RAB2L HGNC:9769|MIM:602306|Ensembl:ENSG00000237441|HPRD:03810|Vega:OTTHUMG00000031072 6 6p21.3 ral guanine nucleotide dissociation stimulator-like 2 protein-coding RGL2 ral guanine nucleotide dissociation stimulator-like 2 O GDS-related protein|ralGDS-like 2|ralGDS-like factor|ras-associated protein RAB2L 20121230 -9606 5864 RAB3A - - HGNC:9777|MIM:179490|Ensembl:ENSG00000105649|HPRD:01535|Vega:OTTHUMG00000137378 19 19p13.2 RAB3A, member RAS oncogene family protein-coding RAB3A RAB3A, member RAS oncogene family O RAS-associated protein RAB3A|ras-related protein Rab-3A 20121230 -9606 5865 RAB3B - - HGNC:9778|MIM:179510|Ensembl:ENSG00000169213|HPRD:01540|Vega:OTTHUMG00000008627 1 1p32-p31 RAB3B, member RAS oncogene family protein-coding RAB3B RAB3B, member RAS oncogene family O brain antigen RAB3B|ras-related protein Rab-3B 20121230 -9606 5866 RAB3IL1 - GRAB HGNC:9780|Ensembl:ENSG00000167994|HPRD:10181|Vega:OTTHUMG00000167524 11 11q12.2 RAB3A interacting protein (rabin3)-like 1 protein-coding RAB3IL1 RAB3A interacting protein (rabin3)-like 1 O guanine nucleotide exchange factor for Rab-3A|rab3A-interacting-like protein 1|rabin3-like 1 20121230 -9606 5867 RAB4A - HRES-1/RAB4|RAB4 HGNC:9781|MIM:179511|Ensembl:ENSG00000168118|HPRD:01541|Vega:OTTHUMG00000037627 1 1q42-q43 RAB4A, member RAS oncogene family protein-coding RAB4A RAB4A, member RAS oncogene family O ras-related protein Rab-4A 20121230 -9606 5868 RAB5A - RAB5 HGNC:9783|MIM:179512|Ensembl:ENSG00000144566|HPRD:01542|Vega:OTTHUMG00000129889 3 3p24-p22 RAB5A, member RAS oncogene family protein-coding RAB5A RAB5A, member RAS oncogene family O RAS-associated protein RAB5A|ras-related protein Rab-5A 20121230 -9606 5869 RAB5B - - HGNC:9784|MIM:179514|Ensembl:ENSG00000111540|HPRD:01544|Vega:OTTHUMG00000169682 12 12q13 RAB5B, member RAS oncogene family protein-coding RAB5B RAB5B, member RAS oncogene family O ras-related protein Rab-5B 20121230 -9606 5870 RAB6A - RAB6 HGNC:9786|MIM:179513|Ensembl:ENSG00000175582|HPRD:01543|Vega:OTTHUMG00000134308 11 11q13.3 RAB6A, member RAS oncogene family protein-coding RAB6A RAB6A, member RAS oncogene family O RAB6, member RAS oncogene family|Rab GTPase|ras-related protein Rab-6A 20121230 -9606 5871 MAP4K2 - BL44|GCK|RAB8IP HGNC:6864|MIM:603166|Ensembl:ENSG00000168067|HPRD:04408|Vega:OTTHUMG00000045328 11 11q13 mitogen-activated protein kinase kinase kinase kinase 2 protein-coding MAP4K2 mitogen-activated protein kinase kinase kinase kinase 2 O B lymphocyte serine/threonine protein kinase|MAPK/ERK kinase kinase kinase 2|MEK kinase kinase 2|MEKKK 2|Rab8 interacting protein|germinal centre kinase (GC kinase) 20121230 -9606 5872 RAB13 GIG4 - HGNC:9762|MIM:602672|Ensembl:ENSG00000143545|HPRD:04053|Vega:OTTHUMG00000036589 1 1q21.2 RAB13, member RAS oncogene family protein-coding RAB13 RAB13, member RAS oncogene family O RAS-associated protein RAB13|cell growth-inhibiting gene 4 protein|growth-inhibiting gene 4 protein|ras-related protein Rab-13 20121230 -9606 5873 RAB27A - GS2|HsT18676|RAB27|RAM HGNC:9766|MIM:603868|Ensembl:ENSG00000069974|HPRD:04845|Vega:OTTHUMG00000131959 15 15q15-q21.1 RAB27A, member RAS oncogene family protein-coding RAB27A RAB27A, member RAS oncogene family O GTP-binding protein Ram|rab-27|ras-related protein Rab-27A 20121230 -9606 5874 RAB27B - C25KG HGNC:9767|MIM:603869|Ensembl:ENSG00000041353|HPRD:04846|Vega:OTTHUMG00000132710 18 18q21.2 RAB27B, member RAS oncogene family protein-coding RAB27B RAB27B, member RAS oncogene family O ras-related protein Rab-27B 20121230 -9606 5875 RABGGTA - PTAR3 HGNC:9795|MIM:601905|Ensembl:ENSG00000100949|HPRD:03547|Vega:OTTHUMG00000171838 14 14q11.2 Rab geranylgeranyltransferase, alpha subunit protein-coding RABGGTA Rab geranylgeranyltransferase, alpha subunit O Rab GG transferase alpha|Rab GGTase alpha|geranylgeranyl transferase type II subunit alpha|geranylgeranyl transferase type-2 subunit alpha|protein prenyltransferase alpha subunit repeat containing 3|rab geranyl-geranyltransferase subunit alpha 20121230 -9606 5876 RABGGTB RP4-682C21.3 GGTB HGNC:9796|MIM:179080|Ensembl:ENSG00000137955|HPRD:01532|Vega:OTTHUMG00000009786 1 1p31 Rab geranylgeranyltransferase, beta subunit protein-coding RABGGTB Rab geranylgeranyltransferase, beta subunit O GGTase-II-beta|geranylgeranyl transferase type II subunit beta|geranylgeranyl transferase type-2 subunit beta|rab GG transferase beta|rab GGTase beta|rab geranyl-geranyltransferase subunit beta|rab geranylgeranyltransferase subunit beta|type II protein geranyl-geranyltransferase subunit beta 20121230 -9606 5877 RABIF - MSS4|RASGFR3|RASGRF3 HGNC:9797|MIM:603417|Ensembl:ENSG00000183155|HPRD:04566|Vega:OTTHUMG00000041400 1 1q32.1 RAB interacting factor protein-coding RABIF RAB interacting factor O Ras-specific guanine-releasing factor 3|guanine nucleotide exchange factor MSS4|mammalian suppressor of SEC4|rab-interacting factor 20121230 -9606 5878 RAB5C - L1880|RAB5CL|RAB5L|RABL HGNC:9785|MIM:604037|Ensembl:ENSG00000108774|HPRD:04947|Vega:OTTHUMG00000169703 17 17q21.2 RAB5C, member RAS oncogene family protein-coding RAB5C RAB5C, member RAS oncogene family O RAB5C, member of RAS oncogene family|ras-related protein Rab-5C 20121230 -9606 5879 RAC1 MIG5 Rac-1|TC-25|p21-Rac1 HGNC:9801|MIM:602048|Ensembl:ENSG00000136238|HPRD:03627|Vega:OTTHUMG00000023540 7 7p22 ras-related C3 botulinum toxin substrate 1 (rho family, small GTP binding protein Rac1) protein-coding RAC1 ras-related C3 botulinum toxin substrate 1 (rho family, small GTP binding protein Rac1) O cell migration-inducing gene 5 protein|ras-like protein TC25|ras-related C3 botulinum toxin substrate 1 20121230 -9606 5880 RAC2 - EN-7|Gx|HSPC022 HGNC:9802|MIM:602049|Ensembl:ENSG00000128340|HPRD:03628|Vega:OTTHUMG00000150540 22 22q13.1 ras-related C3 botulinum toxin substrate 2 (rho family, small GTP binding protein Rac2) protein-coding RAC2 ras-related C3 botulinum toxin substrate 2 (rho family, small GTP binding protein Rac2) O Ras-related C3 botulinum toxin substrate 3 (rho family, small GTP-binding protein Rac2)|p21-Rac2|ras-related C3 botulinum toxin substrate 2|rho family, small GTP binding protein Rac2|small G protein 20121230 -9606 5881 RAC3 - - HGNC:9803|MIM:602050|Ensembl:ENSG00000169750|HPRD:03629|Vega:OTTHUMG00000178455 17 17q25.3 ras-related C3 botulinum toxin substrate 3 (rho family, small GTP binding protein Rac3) protein-coding RAC3 ras-related C3 botulinum toxin substrate 3 (rho family, small GTP binding protein Rac3) O p21-Rac3|ras-related C3 botulinum toxin substrate 3|rho family, small GTP binding protein Rac3 20121230 -9606 5883 RAD9A - RAD9 HGNC:9827|MIM:603761|Ensembl:ENSG00000172613|HPRD:04788|Vega:OTTHUMG00000167670 11 11q13.1-q13.2 RAD9 homolog A (S. pombe) protein-coding RAD9A RAD9 homolog A (S. pombe) O DNA repair exonuclease rad9 homolog A|cell cycle checkpoint control protein RAD9A|hRAD9 20121230 -9606 5884 RAD17 - CCYC|HRAD17|R24L|RAD17SP|RAD24 HGNC:9807|MIM:603139|Ensembl:ENSG00000152942|HPRD:09124|Vega:OTTHUMG00000099357 5 5q13 RAD17 homolog (S. pombe) protein-coding RAD17 RAD17 homolog (S. pombe) O RAD1 homolog|RF-C activator 1 homolog|RF-C/activator 1 homolog|Rad17-like protein|cell cycle checkpoint protein (RAD17)|cell cycle checkpoint protein RAD17 20121230 -9606 5885 RAD21 - CDLS4|HR21|HRAD21|MCD1|NXP1|SCC1|hHR21 HGNC:9811|MIM:606462|Ensembl:ENSG00000164754|HPRD:05924|Vega:OTTHUMG00000164959 8 8q24 RAD21 homolog (S. pombe) protein-coding RAD21 RAD21 homolog (S. pombe) O NXP-1|SCC1 homolog|double-strand-break repair protein rad21 homolog|nuclear matrix protein 1|protein involved in DNA double-strand break repair 20121230 -9606 5886 RAD23A - HHR23A|HR23A HGNC:9812|MIM:600061|Ensembl:ENSG00000179262|HPRD:07191|Vega:OTTHUMG00000180723 19 19p13.2 RAD23 homolog A (S. cerevisiae) protein-coding RAD23A RAD23 homolog A (S. cerevisiae) O RAD23, yeast homolog, A|UV excision repair protein RAD23 homolog A 20121230 -9606 5887 RAD23B RP11-131A5.1 HHR23B|HR23B|P58 HGNC:9813|MIM:600062|Ensembl:ENSG00000119318|HPRD:06772|Vega:OTTHUMG00000020446 9 9q31.2 RAD23 homolog B (S. cerevisiae) protein-coding RAD23B RAD23 homolog B (S. cerevisiae) O RAD23, yeast homolog of, B|UV excision repair protein RAD23 homolog B|XP-C repair complementing complex 58 kDa|XP-C repair complementing protein|XP-C repair-complementing complex 58 kDa protein 20121230 -9606 5888 RAD51 - BRCC5|HRAD51|HsRad51|HsT16930|MRMV2|RAD51A|RECA HGNC:9817|MIM:179617|Ensembl:ENSG00000051180|HPRD:01557|Vega:OTTHUMG00000130067 15 15q15.1 RAD51 homolog (S. cerevisiae) protein-coding RAD51 RAD51 homolog (S. cerevisiae) O BRCA1/BRCA2-containing complex, subunit 5|DNA repair protein RAD51 homolog 1|RAD51 homolog (RecA homolog, E. coli)|RAD51 homolog A|RecA, E. coli, homolog of|RecA-like protein|recombination protein A 20121230 -9606 5889 RAD51C - BROVCA3|FANCO|RAD51L2 HGNC:9820|MIM:602774|Ensembl:ENSG00000108384|HPRD:04143|Vega:OTTHUMG00000141292 17 17q25.1 RAD51 homolog C (S. cerevisiae) protein-coding RAD51C RAD51 homolog C (S. cerevisiae) O DNA repair protein RAD51 homolog 3|R51H3|RAD51 homolog C|RAD51-like protein 2|yeast RAD51 homolog 3 20121230 -9606 5890 RAD51B - R51H2|RAD51L1|REC2 HGNC:9822|MIM:602948|Ensembl:ENSG00000182185|HPRD:04255|Vega:OTTHUMG00000157530 14 14q23-q24.2 RAD51 homolog B (S. cerevisiae) protein-coding RAD51B RAD51 homolog B (S. cerevisiae) O DNA repair protein RAD51 homolog 2|RecA-like protein|recombination repair protein 20121230 -9606 5891 MOK - RAGE|RAGE-1|RAGE1 HGNC:9833|MIM:605762|Ensembl:ENSG00000080823|HPRD:09310|Vega:OTTHUMG00000164896 14 14q32 MOK protein kinase protein-coding MOK MOK protein kinase O MAPK/MAK/MRK overlapping kinase|renal cell carcinoma antigen|renal tumor antigen 1 20121230 -9606 5892 RAD51D - BROVCA4|R51H3|RAD51L3|TRAD HGNC:9823|MIM:602954|Ensembl:ENSG00000185379|HPRD:04261|Vega:OTTHUMG00000132930 17 17q11 RAD51 homolog D (S. cerevisiae) protein-coding RAD51D RAD51 homolog D (S. cerevisiae) O DNA repair protein RAD51 homolog 4|RAD51-like protein 3|recombination repair protein 20121230 -9606 5893 RAD52 - - HGNC:9824|MIM:600392|Ensembl:ENSG00000002016|HPRD:11855|Vega:OTTHUMG00000090361 12 12p13-p12.2 RAD52 homolog (S. cerevisiae) protein-coding RAD52 RAD52 homolog (S. cerevisiae) O DNA repair protein RAD52 homolog|recombination protein RAD52|rhabdomyosarcoma antigen MU-RMS-40.23 20121230 -9606 5894 RAF1 - CRAF|NS5|Raf-1|c-Raf HGNC:9829|MIM:164760|Ensembl:ENSG00000132155|HPRD:01265|Vega:OTTHUMG00000129789 3 3p25 v-raf-1 murine leukemia viral oncogene homolog 1 protein-coding RAF1 v-raf-1 murine leukemia viral oncogene homolog 1 O Oncogene RAF1|RAF proto-oncogene serine/threonine-protein kinase|proto-oncogene c-RAF|raf proto-oncogene serine/threonine protein kinase 20121230 -9606 5896 RAG1 - RAG-1|RNF74 HGNC:9831|MIM:179615|Ensembl:ENSG00000166349|HPRD:01556|Vega:OTTHUMG00000166392 11 11p13 recombination activating gene 1 protein-coding RAG1 recombination activating gene 1 O RING finger protein 74|V(D)J recombination-activating protein 1|recombination activating protein 1 20121230 -9606 5897 RAG2 - RAG-2 HGNC:9832|MIM:179616|Ensembl:ENSG00000175097|HPRD:08913|Vega:OTTHUMG00000166393 11 11p13 recombination activating gene 2 protein-coding RAG2 recombination activating gene 2 O V(D)J recombination-activating protein 2 20121230 -9606 5898 RALA - RAL HGNC:9839|MIM:179550|Ensembl:ENSG00000006451|HPRD:01549|Vega:OTTHUMG00000128775 7 7p15-p13 v-ral simian leukemia viral oncogene homolog A (ras related) protein-coding RALA v-ral simian leukemia viral oncogene homolog A (ras related) O RAS-like protein A|Ras family small GTP binding protein RALA|ras-related protein Ral-A 20121230 -9606 5899 RALB - - HGNC:9840|MIM:179551|Ensembl:ENSG00000144118|HPRD:01550|Vega:OTTHUMG00000131435 2 2q14.2 v-ral simian leukemia viral oncogene homolog B (ras related; GTP binding protein) protein-coding RALB v-ral simian leukemia viral oncogene homolog B (ras related; GTP binding protein) O RAS-like protein B|ras-related protein Ral-B 20121230 -9606 5900 RALGDS RP11-326L24.1 RGDS|RGF|RalGEF HGNC:9842|MIM:601619|Ensembl:ENSG00000160271|HPRD:03371|Vega:OTTHUMG00000020858 9 9q34.3 ral guanine nucleotide dissociation stimulator protein-coding RALGDS ral guanine nucleotide dissociation stimulator O ral guanine nucleotide exchange factor 20121230 -9606 5901 RAN OK/SW-cl.81 ARA24|Gsp1|TC4 HGNC:9846|MIM:601179|Ensembl:ENSG00000132341|HPRD:03109|Vega:OTTHUMG00000134328 12 12q24.3 RAN, member RAS oncogene family protein-coding RAN RAN, member RAS oncogene family O GTP-binding nuclear protein Ran|GTPase Ran|OK/SW-cl.81|RanGTPase|androgen receptor-associated protein 24|guanosine triphosphatase Ran|member RAS oncogene family|ras-like protein TC4|ras-related nuclear protein 20121230 -9606 5902 RANBP1 - HTF9A HGNC:9847|MIM:601180|Ensembl:ENSG00000099901|HPRD:03110|Vega:OTTHUMG00000150490 22 22q11.21 RAN binding protein 1 protein-coding RANBP1 RAN binding protein 1 O ran-binding protein 1|ran-specific GTPase-activating protein 20121230 -9606 5903 RANBP2 - ANE1|IIAE3|NUP358|TRP1|TRP2 HGNC:9848|MIM:601181|Ensembl:ENSG00000153201|HPRD:03111|Vega:OTTHUMG00000130981 2 2q12.3 RAN binding protein 2 protein-coding RANBP2 RAN binding protein 2 O 358 kDa nucleoporin|E3 SUMO-protein ligase RanBP2|P270|nuclear pore complex protein Nup358|nucleoporin 358|nucleoporin Nup358|ran-binding protein 2|transformation-related protein 2 20121230 -9606 5905 RANGAP1 RP4-756G23.7 Fug1|SD HGNC:9854|MIM:602362|Ensembl:ENSG00000100401|HPRD:03839|Vega:OTTHUMG00000150940 22 22q13 Ran GTPase activating protein 1 protein-coding RANGAP1 Ran GTPase activating protein 1 O ran GTPase-activating protein 1|segregation distorter homolog|segregation distortion 20121230 -9606 5906 RAP1A - KREV-1|KREV1|RAP1|SMGP21 HGNC:9855|MIM:179520|Ensembl:ENSG00000116473|HPRD:01545|Vega:OTTHUMG00000011959 1 1p13.3 RAP1A, member of RAS oncogene family protein-coding RAP1A RAP1A, member of RAS oncogene family O C21KG|G-22K|GTP-binding protein smg p21A|RAS-related protein RAP1A|Ras-related protein Krev-1|ras-related protein Rap-1A 20121230 -9606 5907 RAP1AP - KREV1P|SMGP21A HGNC:9856 14 14q24.3 RAP1A, member of RAS oncogene family pseudogene pseudo RAP1AP RAP1A, member of RAS oncogene family pseudogene O - 20121230 -9606 5908 RAP1B OK/SW-cl.11 K-REV|RAL1B HGNC:9857|MIM:179530|Ensembl:ENSG00000127314|HPRD:01546|Vega:OTTHUMG00000133660 12 12q14 RAP1B, member of RAS oncogene family protein-coding RAP1B RAP1B, member of RAS oncogene family O GTP-binding protein smg p21B|RAS-related protein RAP1B|Ras family small GTP binding protein RAP1B|ras-related protein Rap-1b|small GTP binding protein 20121230 -9606 5909 RAP1GAP RP11-63N8.1 RAP1GA1|RAP1GAP1|RAP1GAPII|RAPGAP HGNC:9858|MIM:600278|Ensembl:ENSG00000076864|HPRD:02609|Vega:OTTHUMG00000007513 1 1p36.1-p35 RAP1 GTPase activating protein protein-coding RAP1GAP RAP1 GTPase activating protein O rap1 GTPase-activating protein 1 20121230 -9606 5910 RAP1GDS1 - GDS1|SmgGDS HGNC:9859|MIM:179502|Ensembl:ENSG00000138698|HPRD:11763|Vega:OTTHUMG00000160987 4 4q23-q25 RAP1, GTP-GDP dissociation stimulator 1 protein-coding RAP1GDS1 RAP1, GTP-GDP dissociation stimulator 1 O SMG GDS protein|SMG P21 stimulatory GDP/GTP exchange protein|exchange factor smgGDS|rap1 GTPase-GDP dissociation stimulator 1 20121230 -9606 5911 RAP2A RP11-128N14.2 K-REV|KREV|RAP2|RbBP-30 HGNC:9861|MIM:179540|Ensembl:ENSG00000125249|HPRD:01547|Vega:OTTHUMG00000017240 13 13q34 RAP2A, member of RAS oncogene family protein-coding RAP2A RAP2A, member of RAS oncogene family O RAP2, member of RAS oncogene family (K-rev)|ras-related protein Rap-2a 20121230 -9606 5912 RAP2B - - HGNC:9862|MIM:179541|Ensembl:ENSG00000181467|HPRD:01548|Vega:OTTHUMG00000159655 3 3q25.2 RAP2B, member of RAS oncogene family protein-coding RAP2B RAP2B, member of RAS oncogene family O Ras family small GTP binding protein RAP2B|ras-related protein Rap-2b|small GTP binding protein 20121230 -9606 5913 RAPSN - RAPSYN|RNF205 HGNC:9863|MIM:601592|Ensembl:ENSG00000165917|HPRD:03353|Vega:OTTHUMG00000166891 11 11p11.2 receptor-associated protein of the synapse protein-coding RAPSN receptor-associated protein of the synapse O 43 kDa receptor-associated protein of the synapse|43 kda postsynaptic protein|RING finger protein 205|acetylcholine receptor-associated 43 kda protein 20121230 -9606 5914 RARA - NR1B1|RAR HGNC:9864|MIM:180240|Ensembl:ENSG00000131759|HPRD:06769|Vega:OTTHUMG00000133328 17 17q21 retinoic acid receptor, alpha protein-coding RARA retinoic acid receptor, alpha O RAR-alpha|nuclear receptor subfamily 1 group B member 1|nucleophosmin-retinoic acid receptor alpha fusion protein NPM-RAR long form|retinoic acid nuclear receptor alpha variant 1|retinoic acid nuclear receptor alpha variant 2|retinoic acid receptor alpha|retinoic acid receptor, alpha polypeptide 20121230 -9606 5915 RARB - HAP|NR1B2|RRB2 HGNC:9865|MIM:180220|Ensembl:ENSG00000077092|HPRD:07183|Vega:OTTHUMG00000130480 3 3p24.2 retinoic acid receptor, beta protein-coding RARB retinoic acid receptor, beta O HBV-activated protein|RAR-beta|RAR-epsilon|hepatitis B virus activated protein|nuclear receptor subfamily 1 group B member 2|retinoic acid receptor beta|retinoic acid receptor beta 2|retinoic acid receptor beta 4|retinoic acid receptor beta 5|retinoic acid receptor beta variant 1|retinoic acid receptor beta variant 2|retinoic acid receptor, beta polypeptide 20121230 -9606 5916 RARG - NR1B3|RARC HGNC:9866|MIM:180190|Ensembl:ENSG00000172819|HPRD:01573|Vega:OTTHUMG00000048077 12 12q13 retinoic acid receptor, gamma protein-coding RARG retinoic acid receptor, gamma O RAR-gamma|nuclear receptor subfamily 1 group B member 3|retinoic acid nuclear receptor gamma variant 1|retinoic acid nuclear receptor gamma variant 2|retinoic acid receptor gamma 20121230 -9606 5917 RARS - ArgRS|DALRD1 HGNC:9870|MIM:107820|Ensembl:ENSG00000113643|HPRD:00142|Vega:OTTHUMG00000130411 5 5q35.1 arginyl-tRNA synthetase protein-coding RARS arginyl-tRNA synthetase O arginine tRNA ligase 1, cytoplasmic|arginine--tRNA ligase, cytoplasmic|arginyl-tRNA synthetase, cytoplasmic 20121230 -9606 5918 RARRES1 - TIG1 HGNC:9867|MIM:605090|Ensembl:ENSG00000118849|HPRD:05477|Vega:OTTHUMG00000158834 3 3q25.32 retinoic acid receptor responder (tazarotene induced) 1 protein-coding RARRES1 retinoic acid receptor responder (tazarotene induced) 1 O RAR-responsive protein TIG1|retinoic acid receptor responder protein 1|tazarotene-induced gene 1 protein 20121230 -9606 5919 RARRES2 - HP10433|TIG2 HGNC:9868|MIM:601973|Ensembl:ENSG00000106538|HPRD:03577|Vega:OTTHUMG00000158325 7 7q36.1 retinoic acid receptor responder (tazarotene induced) 2 protein-coding RARRES2 retinoic acid receptor responder (tazarotene induced) 2 O RAR-responsive protein TIG2|chemerin|retinoic acid receptor responder protein 2|tazarotene-induced gene 2 protein 20121230 -9606 5920 RARRES3 - HRASLS4|PLA1/2-3|RIG1|TIG3 HGNC:9869|MIM:605092|Ensembl:ENSG00000133321|HPRD:05479|Vega:OTTHUMG00000167850 11 11q23 retinoic acid receptor responder (tazarotene induced) 3 protein-coding RARRES3 retinoic acid receptor responder (tazarotene induced) 3 O RAR-responsive protein TIG3|retinoic acid receptor responder protein 3|retinoic acid-inducible gene 1|retinoid-inducible gene 1 protein|tazarotene-induced gene 3 protein 20121230 -9606 5921 RASA1 - CM-AVM|CMAVM|GAP|PKWS|RASA|RASGAP|p120GAP|p120RASGAP HGNC:9871|MIM:139150|Ensembl:ENSG00000145715|HPRD:00745|Vega:OTTHUMG00000162605 5 5q13.3 RAS p21 protein activator (GTPase activating protein) 1 protein-coding RASA1 RAS p21 protein activator (GTPase activating protein) 1 O ras GTPase-activating protein 1|triphosphatase-activating protein 20121230 -9606 5922 RASA2 - GAP1M HGNC:9872|MIM:601589|Ensembl:ENSG00000155903|Vega:OTTHUMG00000160221 3 3q22-q23 RAS p21 protein activator 2 protein-coding RASA2 RAS p21 protein activator 2 O GTPase-activating protein of RAS|ras GTPase-activating protein 2 20121230 -9606 5923 RASGRF1 - CDC25|CDC25L|GNRP|GRF1|GRF55|H-GRF55|PP13187|ras-GRF1 HGNC:9875|MIM:606600|Ensembl:ENSG00000058335|Vega:OTTHUMG00000144172 15 15q24.2 Ras protein-specific guanine nucleotide-releasing factor 1 protein-coding RASGRF1 Ras protein-specific guanine nucleotide-releasing factor 1 O Ras-specific guanine nucleotide-releasing factor, CDC25 homolog|Ras-specific nucleotide exchange factor CDC25|guanine nucleotide exchange factor|guanine nucleotide-releasing factor 1|guanine nucleotide-releasing factor, 55 kD|guanine nucleotide-releasing protein|ras-specific guanine nucleotide-releasing factor 1 20121230 -9606 5924 RASGRF2 - GRF2|RAS-GRF2 HGNC:9876|MIM:606614|Ensembl:ENSG00000113319|HPRD:07588|Vega:OTTHUMG00000119015 5 5q13 Ras protein-specific guanine nucleotide-releasing factor 2 protein-coding RASGRF2 Ras protein-specific guanine nucleotide-releasing factor 2 O ras guanine nucleotide exchange factor 2|ras-specific guanine nucleotide-releasing factor 2 20121230 -9606 5925 RB1 RP11-174I10.1 OSRC|RB|p105-Rb|pRb|pp110 HGNC:9884|MIM:614041|Ensembl:ENSG00000139687|HPRD:01574|Vega:OTTHUMG00000016900 13 13q14.2 retinoblastoma 1 protein-coding RB1 retinoblastoma 1 O retinoblastoma suspectibility protein|retinoblastoma-associated protein 20121230 -9606 5926 ARID4A - RBBP-1|RBBP1|RBP-1|RBP1 HGNC:9885|MIM:180201|Ensembl:ENSG00000032219|HPRD:01575|Vega:OTTHUMG00000140320 14 14q23.1 AT rich interactive domain 4A (RBP1-like) protein-coding ARID4A AT rich interactive domain 4A (RBP1-like) O ARID domain-containing protein 4A|AT-rich interactive domain-containing protein 4A|retinoblastoma binding protein 1|retinoblastoma-binding protein 1 20121230 -9606 5927 KDM5A - JARID1A|RBBP-2|RBBP2|RBP2 HGNC:9886|MIM:180202|Ensembl:ENSG00000073614|HPRD:08915|Vega:OTTHUMG00000168055 12 12p11 lysine (K)-specific demethylase 5A protein-coding KDM5A lysine (K)-specific demethylase 5A O Jumonji, AT rich interactive domain 1A (RBBP2-like)|Jumonji, AT rich interactive domain 1A (RBP2-like)|histone demethylase JARID1A|jumonji/ARID domain-containing protein 1A|lysine-specific demethylase 5A|retinoblastoma binding protein 2|retinoblastoma-binding protein 2 20121230 -9606 5928 RBBP4 - NURF55|RBAP48 HGNC:9887|MIM:602923|Ensembl:ENSG00000162521|HPRD:04232|Vega:OTTHUMG00000007998 1 1p35.1 retinoblastoma binding protein 4 protein-coding RBBP4 retinoblastoma binding protein 4 O CAF-1 subunit C|CAF-I 48 kDa subunit|CAF-I p48|MSI1 protein homolog|RBBP-4|chromatin assembly factor 1 subunit C|chromatin assembly factor I p48 subunit|chromatin assembly factor/CAF-1 p48 subunit|histone-binding protein RBBP4|nucleosome-remodeling factor subunit RBAP48|retinoblastoma-binding protein 4|retinoblastoma-binding protein p48 20121230 -9606 5929 RBBP5 - RBQ3|SWD1 HGNC:9888|MIM:600697|Ensembl:ENSG00000117222|HPRD:02826|Vega:OTTHUMG00000037104 1 1q32 retinoblastoma binding protein 5 protein-coding RBBP5 retinoblastoma binding protein 5 O RBBP-5|SWD1, Set1c WD40 repeat protein, homolog|retinoblastoma-binding protein 5|retinoblastoma-binding protein RBQ-3 20121230 -9606 5930 RBBP6 My038 MY038|P2P-R|PACT|RBQ-1|SNAMA HGNC:9889|MIM:600938|Ensembl:ENSG00000122257|HPRD:02964|Vega:OTTHUMG00000096991 16 16p12.2 retinoblastoma binding protein 6 protein-coding RBBP6 retinoblastoma binding protein 6 O E3 ubiquitin-protein ligase RBBP6|RB-binding Q-protein 1|p53-associated cellular protein of testis|proliferation potential-related protein|protein P2P-R|retinoblastoma-binding Q protein 1|retinoblastoma-binding protein 6 20121230 -9606 5931 RBBP7 RP11-716A19.5 RbAp46 HGNC:9890|MIM:300825|Ensembl:ENSG00000102054|HPRD:04231|Vega:OTTHUMG00000021198 X Xp22.2 retinoblastoma binding protein 7 protein-coding RBBP7 retinoblastoma binding protein 7 O G1/S transition control protein-binding protein RbAp46|RBBP-7|histone acetyltransferase type B subunit 2|histone-binding protein RBBP7|nucleosome-remodeling factor subunit RBAP46|retinoblastoma-binding protein 7|retinoblastoma-binding protein RbAp46|retinoblastoma-binding protein p46 20121230 -9606 5932 RBBP8 - COM1|CTIP|JWDS|RIM|SAE2|SCKL2 HGNC:9891|MIM:604124|Ensembl:ENSG00000101773|HPRD:04990|Vega:OTTHUMG00000131769 18 18q11.2 retinoblastoma binding protein 8 protein-coding RBBP8 retinoblastoma binding protein 8 O CTBP-interacting protein|DNA endonuclease RBBP8|RBBP-8|sporulation in the absence of SPO11 protein 2 homolog 20121230 -9606 5933 RBL1 RP11-382A12.1 CP107|PRB1|p107 HGNC:9893|MIM:116957|Ensembl:ENSG00000080839|HPRD:00312|Vega:OTTHUMG00000032406 20 20q11.2 retinoblastoma-like 1 (p107) protein-coding RBL1 retinoblastoma-like 1 (p107) O 107 kDa retinoblastoma-associated protein|cellular protein 107|retinoblastoma-like protein 1 20121230 -9606 5934 RBL2 - P130|Rb2 HGNC:9894|MIM:180203|Ensembl:ENSG00000103479|HPRD:01576|Vega:OTTHUMG00000133198 16 16q12.2 retinoblastoma-like 2 (p130) protein-coding RBL2 retinoblastoma-like 2 (p130) O 130 kDa retinoblastoma-associated protein|PRB2|RBR-2|retinoblastoma-like protein 2|retinoblastoma-related protein 2 20121230 -9606 5935 RBM3 - IS1-RNPL|RNPL HGNC:9900|MIM:300027|Ensembl:ENSG00000102317|HPRD:02067|Vega:OTTHUMG00000024121 X Xp11.2 RNA binding motif (RNP1, RRM) protein 3 protein-coding RBM3 RNA binding motif (RNP1, RRM) protein 3 O RNA-binding motif protein 3|putative RNA-binding protein 3 20121230 -9606 5936 RBM4 - LARK|RBM4A|ZCCHC21|ZCRB3A HGNC:9901|MIM:602571|Ensembl:ENSG00000173933|Ensembl:ENSG00000248643|HPRD:03982|Vega:OTTHUMG00000154171 11 11q13 RNA binding motif protein 4 protein-coding RBM4 RNA binding motif protein 4 O RNA-binding motif protein 4a|RNA-binding protein 4|lark homolog|transcriptional coactivator CoAZ|zinc finger CCHC-type and RNA binding motif 3A 20121230 -9606 5937 RBMS1 - C2orf12|HCC-4|MSSP|MSSP-1|MSSP-2|MSSP-3|SCR2|YC1 HGNC:9907|MIM:602310|Ensembl:ENSG00000153250|HPRD:03814|Vega:OTTHUMG00000132031 2 2q24.2 RNA binding motif, single stranded interacting protein 1 protein-coding RBMS1 RNA binding motif, single stranded interacting protein 1 O RNA-binding motif, single-stranded-interacting protein 1|c-myc gene single strand binding protein 2|cervical cancer oncogene 4|single-stranded DNA-binding protein MSSP-1|suppressor of CDC2 with RNA-binding motif 2|suppressor of cdc 2 (cdc13) with RNA binding motif 2 20121230 -9606 5938 RBMS1P1 - MSSP1|RBMS1P HGNC:9908 12 12q14.3 RNA binding motif, single stranded interacting protein 1 pseudogene 1 pseudo RBMS1P1 RNA binding motif, single stranded interacting protein 1 pseudogene 1 O - 20121230 -9606 5939 RBMS2 - SCR3 HGNC:9909|MIM:602387|Ensembl:ENSG00000076067|HPRD:03860|Vega:OTTHUMG00000170488 12 12q13.3 RNA binding motif, single stranded interacting protein 2 protein-coding RBMS2 RNA binding motif, single stranded interacting protein 2 O RNA-binding motif, single-stranded-interacting protein 2|suppressor of CDC2 with RNA-binding motif 3 20121230 -9606 5940 RBMY1A1 - RBM|RBM1|RBM2|RBMY|RBMY1C|YRRM1|YRRM2 HGNC:9912|MIM:400006|Ensembl:ENSG00000234414|HPRD:02450|Vega:OTTHUMG00000043592 Y Yq11.223 RNA binding motif protein, Y-linked, family 1, member A1 protein-coding RBMY1A1 RNA binding motif protein, Y-linked, family 1, member A1 O RNA binding motif protein, Y chromosome, family 1, member A1|RNA binding protein|RNA-binding motif protein 1|RNA-binding motif protein 2|RNA-binding motif protein, Y chromosome, family 1 member A1|RNA-binding motif protein, Y chromosome, family 1 member A1/C|y chromosome RNA recognition motif 1 20121230 -9606 5942 RBMY1C - - HGNC:9914 Y Yq11.23 RNA binding motif protein, Y-linked, family 1, member C protein-coding RBMY1C RNA binding motif protein, Y-linked, family 1, member C O RNA binding motif protein, Y chromosome, family 1, member C|RNA-binding motif protein, Y chromosome, family 1 member C 20120610 -9606 5944 RBMY1HP - RBMY1H|YRRM HGNC:9916 Y Yq11.223 RNA binding motif protein, Y-linked, family 1, member H, pseudogene pseudo RBMY1HP RNA binding motif protein, Y-linked, family 1, member H, pseudogene O - 20121209 -9606 5945 RBMY2AP - RBMY2A HGNC:9917 Y Yq11.23 RNA binding motif protein, Y-linked, family 2, member A pseudogene pseudo RBMY2AP RNA binding motif protein, Y-linked, family 2, member A pseudogene O - 20121209 -9606 5947 RBP1 - CRABP-I|CRBP|CRBP1|CRBPI|RBPC HGNC:9919|MIM:180260|Ensembl:ENSG00000114115|HPRD:07036|Vega:OTTHUMG00000155751 3 3q23 retinol binding protein 1, cellular protein-coding RBP1 retinol binding protein 1, cellular O CRBP-I|cellular retinol-binding protein I|retinol-binding protein 1|retinol-binding protein 1, cellular 20121230 -9606 5948 RBP2 - CRABP-II|CRBP2|CRBPII|RBPC2 HGNC:9920|MIM:180280|Ensembl:ENSG00000114113|HPRD:07184|Vega:OTTHUMG00000159956 3 3q23 retinol binding protein 2, cellular protein-coding RBP2 retinol binding protein 2, cellular O CRBP-II|cellular retinol-binding protein II|retinol-binding protein 2|retinol-binding protein 2, cellular 20121230 -9606 5949 RBP3 - D10S64|D10S65|D10S66|IRBP|RBPI HGNC:9921|MIM:180290|Ensembl:ENSG00000107618|HPRD:01581|Vega:OTTHUMG00000018147 10 10q11.2 retinol binding protein 3, interstitial protein-coding RBP3 retinol binding protein 3, interstitial O interphotoreceptor retinoid-binding protein|retinol-binding protein 3 20121230 -9606 5950 RBP4 PRO2222 - HGNC:9922|MIM:180250|Ensembl:ENSG00000138207|HPRD:01580|Vega:OTTHUMG00000018773 10 10q23-q24 retinol binding protein 4, plasma protein-coding RBP4 retinol binding protein 4, plasma O PRBP|RBP|plasma retinol-binding protein|retinol-binding protein 4|retinol-binding protein 4, interstitial 20121230 -9606 5953 RCD1 - - HGNC:9930|MIM:180020 6 6q25-q26 retinal cone dystrophy 1 unknown RCD1 retinal cone dystrophy 1 O - 20110215 -9606 5954 RCN1 - PIG20|RCAL|RCN HGNC:9934|MIM:602735|Ensembl:ENSG00000049449|HPRD:04111|Vega:OTTHUMG00000166227 11 11p13 reticulocalbin 1, EF-hand calcium binding domain protein-coding RCN1 reticulocalbin 1, EF-hand calcium binding domain O proliferation-inducing gene 20|reticulocalbin-1 20121230 -9606 5955 RCN2 - E6BP|ERC-55|ERC55|TCBP49 HGNC:9935|MIM:602584|Ensembl:ENSG00000117906|HPRD:03993|Vega:OTTHUMG00000143730 15 15q23 reticulocalbin 2, EF-hand calcium binding domain protein-coding RCN2 reticulocalbin 2, EF-hand calcium binding domain O E6-binding protein|calcium-binding protein ERC-55|reticulocalbin 2, EF-hand calcium binding domain (endoplasmic reticulum calcium-binding protein, 55kD)|reticulocalbin-2 20121230 -9606 5956 OPN1LW hCG_41347 CBBM|CBP|COD5|RCP|ROP HGNC:9936|MIM:300822|Ensembl:ENSG00000102076|HPRD:02366|Vega:OTTHUMG00000034295 X Xq28 opsin 1 (cone pigments), long-wave-sensitive protein-coding OPN1LW opsin 1 (cone pigments), long-wave-sensitive O cone dystrophy 5 (X-linked)|long-wave-sensitive opsin 1|red cone photoreceptor pigment|red-sensitive opsin 20121230 -9606 5957 RCVRN - RCV1 HGNC:9937|MIM:179618|Ensembl:ENSG00000109047|HPRD:01558|Vega:OTTHUMG00000130268 17 17p13.1 recoverin protein-coding RCVRN recoverin O cancer associated retinopathy antigen|cancer-associated retinopathy protein 20121230 -9606 5959 RDH5 - 9cRDH|HSD17B9|RDH1|SDR9C5 HGNC:9940|MIM:601617|Ensembl:ENSG00000135437|HPRD:03370|Vega:OTTHUMG00000170126 12 12q13-q14 retinol dehydrogenase 5 (11-cis/9-cis) protein-coding RDH5 retinol dehydrogenase 5 (11-cis/9-cis) O 11-cis RDH|11-cis RoDH|11-cis retinol dehydrogenase|9-cis retinol dehydrogenase|9-cis-retinol specific dehydrogenase|retinol dehydrogenase 1|retinol dehydrogenase 5 (11-cis and 9-cis)|short chain dehydrogenase/reductase family 9C, member 5 20121230 -9606 5961 PRPH2 - AOFMD|AVMD|CACD2|DS|PRPH|RDS|RP7|TSPAN22|rd2 HGNC:9942|MIM:179605|Ensembl:ENSG00000112619|HPRD:01553|Vega:OTTHUMG00000014701 6 6p21.2-p12.3 peripherin 2 (retinal degeneration, slow) protein-coding PRPH2 peripherin 2 (retinal degeneration, slow) O peripherin 2, homolog of mouse|peripherin, photoreceptor type|peripherin-2|retinal degeneration slow protein|retinal peripherin|tetraspanin-22|tspan-22 20121230 -9606 5962 RDX - DFNB24 HGNC:9944|MIM:179410|Ensembl:ENSG00000137710|HPRD:01534|Vega:OTTHUMG00000166574 11 11q23 radixin protein-coding RDX radixin O - 20121230 -9606 5964 RDXP2 - - HGNC:9946 X Xp22 radixin pseudogene 2 pseudo RDXP2 radixin pseudogene 2 O - 20121230 -9606 5965 RECQL - RECQL1|RecQ1 HGNC:9948|MIM:600537|Ensembl:ENSG00000004700|HPRD:02762|Vega:OTTHUMG00000169131 12 12p12 RecQ protein-like (DNA helicase Q1-like) protein-coding RECQL RecQ protein-like (DNA helicase Q1-like) O ATP-dependent DNA helicase Q1|DNA helicase, RecQ-like type 1|DNA-dependent ATPase Q1|recQ protein-like 1 20121230 -9606 5966 REL - C-Rel HGNC:9954|MIM:164910|Ensembl:ENSG00000162924|HPRD:01286|Vega:OTTHUMG00000129418 2 2p13-p12 v-rel reticuloendotheliosis viral oncogene homolog (avian) protein-coding REL v-rel reticuloendotheliosis viral oncogene homolog (avian) O C-Rel proto-oncogene protein|oncogene REL, avian reticuloendotheliosis|proto-oncogene c-Rel|v-rel avian reticuloendotheliosis viral oncogene homolog 20121230 -9606 5967 REG1A - ICRF|P19|PSP|PSPS|PSPS1|PTP|REG HGNC:9951|MIM:167770|Ensembl:ENSG00000115386|HPRD:01338|Vega:OTTHUMG00000130016 2 2p12 regenerating islet-derived 1 alpha protein-coding REG1A regenerating islet-derived 1 alpha O REG-1-alpha|islet cells regeneration factor|islet of langerhans regenerating protein|lithostathine 1 alpha|lithostathine-1-alpha|pancreatic stone protein, secretory|pancreatic thread protein|protein-X|regenerating islet-derived protein 1-alpha|regenerating protein I alpha 20121230 -9606 5968 REG1B - PSPS2|REGH|REGI-BETA|REGL HGNC:9952|MIM:167771|Ensembl:ENSG00000172023|HPRD:01339|Vega:OTTHUMG00000130019 2 2p12 regenerating islet-derived 1 beta protein-coding REG1B regenerating islet-derived 1 beta O PSP-2|REG-1-beta|lithostathine 1 beta|lithostathine-1-beta|pancreatic stone protein 2|regenerating islet-derived 1 beta (pancreatic stone protein, pancreatic thread protein)|regenerating islet-derived protein 1-beta|regenerating protein I beta|secretory pancreatic stone protein 2 20121230 -9606 5969 REG1P - REGL|RS HGNC:9953|HPRD:17965 2 2p12 regenerating islet-derived 1 pseudogene pseudo REG1P regenerating islet-derived 1 pseudogene O - 20121230 -9606 5970 RELA - NFKB3|p65 HGNC:9955|MIM:164014|Ensembl:ENSG00000173039|HPRD:01241|Vega:OTTHUMG00000166566 11 11q13 v-rel reticuloendotheliosis viral oncogene homolog A (avian) protein-coding RELA v-rel reticuloendotheliosis viral oncogene homolog A (avian) O NF-kappa-B p65delta3|nuclear factor NF-kappa-B p65 subunit|nuclear factor of kappa light polypeptide gene enhancer in B-cells 3|transcription factor p65 20121230 -9606 5971 RELB - I-REL|IREL|REL-B HGNC:9956|MIM:604758|Ensembl:ENSG00000104856|HPRD:06886|Vega:OTTHUMG00000162116 19 19q13.32 v-rel reticuloendotheliosis viral oncogene homolog B protein-coding RELB v-rel reticuloendotheliosis viral oncogene homolog B O transcription factor RelB|v-rel avian reticuloendotheliosis viral oncogene homolog B (nuclear factor of kappa light polypeptide gene enhancer in B-cells 3)|v-rel reticuloendotheliosis viral oncogene homolog B, nuclear factor of kappa light polypeptide gene enhancer in B-cells 3 20121230 -9606 5972 REN - HNFJ2 HGNC:9958|MIM:179820|Ensembl:ENSG00000143839|HPRD:01564|Vega:OTTHUMG00000036059 1 1q32 renin protein-coding REN renin O angiotensin-forming enzyme|angiotensinogenase|renin precursor, renal 20121230 -9606 5973 RENBP - RBP|RNBP HGNC:9959|MIM:312420|Ensembl:ENSG00000102032|HPRD:02423|Vega:OTTHUMG00000024224 X Xq28 renin binding protein protein-coding RENBP renin binding protein O AGE|GlcNAc 2-epimerase|N-acetyl-D-glucosamine 2-epimerase|N-acylglucosamine 2-epimerase 20121230 -9606 5975 RENS2 - MRXS9 HGNC:9961 X Xq12-q21.31 Renpenning syndrome 2 (Renpenning-like syndrome) unknown RENS2 Renpenning syndrome 2 (Renpenning-like syndrome) O - 20110702 -9606 5976 UPF1 - HUPF1|NORF1|RENT1|pNORF1|smg-2 HGNC:9962|MIM:601430|Ensembl:ENSG00000005007|HPRD:03254 19 19p13.2-p13.11 UPF1 regulator of nonsense transcripts homolog (yeast) protein-coding UPF1 UPF1 regulator of nonsense transcripts homolog (yeast) O ATP-dependent helicase RENT1|UP Frameshift 1|delta helicase|nonsense mRNA reducing factor 1|regulator of nonsense transcripts 1|smg-2 homolog, nonsense mediated mRNA decay factor|up-frameshift mutation 1 homolog|up-frameshift suppressor 1 homolog|yeast Upf1p homolog 20121230 -9606 5977 DPF2 - REQ|UBID4|ubi-d4 HGNC:9964|MIM:601671|Ensembl:ENSG00000133884|HPRD:03394|Vega:OTTHUMG00000165985 11 11q13 D4, zinc and double PHD fingers family 2 protein-coding DPF2 D4, zinc and double PHD fingers family 2 O BAF45D|BRG1-associated factor 45D|apoptosis response zinc finger protein|protein requiem|requiem, apoptosis response zinc finger|zinc finger protein ubi-d4 20121230 -9606 5978 REST - NRSF|XBR HGNC:9966|MIM:600571|Ensembl:ENSG00000084093|HPRD:08990|Vega:OTTHUMG00000128770 4 4q12 RE1-silencing transcription factor protein-coding REST RE1-silencing transcription factor O neural-restrictive silencer factor|neuron restrictive silencer factor|repressor binding to the X2 box 20121230 -9606 5979 RET - CDHF12|CDHR16|HSCR1|MEN2A|MEN2B|MTC1|PTC|RET-ELE1|RET51 HGNC:9967|MIM:164761|Ensembl:ENSG00000165731|HPRD:01266|Vega:OTTHUMG00000018024 10 10q11.2 ret proto-oncogene protein-coding RET ret proto-oncogene O RET transforming sequence|cadherin family member 12|cadherin-related family member 16|hydroxyaryl-protein kinase|proto-oncogene c-Ret|proto-oncogene tyrosine-protein kinase receptor Ret|receptor tyrosine kinase|ret proto-oncogene (multiple endocrine neoplasia and medullary thyroid carcinoma 1, Hirschsprung disease) 20121230 -9606 5980 REV3L RP5-1112D6.1 POLZ|REV3 HGNC:9968|MIM:602776|Ensembl:ENSG00000009413|HPRD:04145|Vega:OTTHUMG00000016318 6 6q21 REV3-like, polymerase (DNA directed), zeta, catalytic subunit protein-coding REV3L REV3-like, polymerase (DNA directed), zeta, catalytic subunit O DNA polymerase zeta catalytic subunit|Rev-3, yeast, homolog-like (polymerase, DNA, zeta)|hREV3 20121230 -9606 5981 RFC1 - A1|MHCBFB|PO-GA|RECC1|RFC|RFC140 HGNC:9969|MIM:102579|Ensembl:ENSG00000035928|HPRD:00024|Vega:OTTHUMG00000099363 4 4p14-p13 replication factor C (activator 1) 1, 145kDa protein-coding RFC1 replication factor C (activator 1) 1, 145kDa O A1 140 kDa subunit|DNA-binding protein PO-GA|MHC binding factor, beta|RF-C 140 kDa subunit|activator 1 140 kDa subunit|activator 1 large subunit|activator 1 subunit 1|replication factor C 140 kDa subunit|replication factor C large subunit|replication factor C subunit 1|replication factor C1 20121230 -9606 5982 RFC2 - A1|RFC40 HGNC:9970|MIM:600404|Ensembl:ENSG00000049541|HPRD:02675|Vega:OTTHUMG00000023239 7 7q11.23 replication factor C (activator 1) 2, 40kDa protein-coding RFC2 replication factor C (activator 1) 2, 40kDa O A1 40 kDa subunit|RF-C 40 kDa subunit|activator 1 40 kDa subunit|activator 1 subunit 2|replication factor C 2|replication factor C subunit 2 20121230 -9606 5983 RFC3 - RFC38 HGNC:9971|MIM:600405|Ensembl:ENSG00000133119|HPRD:02676|Vega:OTTHUMG00000016715 13 13q13.2 replication factor C (activator 1) 3, 38kDa protein-coding RFC3 replication factor C (activator 1) 3, 38kDa O A1 38 kDa subunit|RF-C 38 kDa subunit|RFC, 38 kD subunit|activator 1 38 kDa subunit|activator 1 subunit 3|replication factor C 38 kDa subunit|replication factor C subunit 3 20121230 -9606 5984 RFC4 - A1|RFC37 HGNC:9972|MIM:102577|Ensembl:ENSG00000163918|HPRD:00022|Vega:OTTHUMG00000156515 3 3q27 replication factor C (activator 1) 4, 37kDa protein-coding RFC4 replication factor C (activator 1) 4, 37kDa O A1 37 kDa subunit|RF-C 37 kDa subunit|RFC 37 kDa subunit|activator 1 37 kDa subunit|activator 1 subunit 4|replication factor C 37 kDa subunit|replication factor C subunit 4 20121230 -9606 5985 RFC5 - RFC36 HGNC:9973|MIM:600407|Ensembl:ENSG00000111445|HPRD:02677|Vega:OTTHUMG00000156438 12 12q24.23 replication factor C (activator 1) 5, 36.5kDa protein-coding RFC5 replication factor C (activator 1) 5, 36.5kDa O A1 36 kDa subunit|RF-C 36 kDa subunit|RFC, 36.5 kD subunit|replication factor C subunit 5|replication factor C, 36-kDa subunit 20121230 -9606 5986 RFNG - - HGNC:9974|MIM:602578|Ensembl:ENSG00000169733|HPRD:09093|Vega:OTTHUMG00000178512 17 17q25 RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase protein-coding RFNG RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase O O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase|beta-1,3-N-acetylglucosaminyltransferase radical fringe|radical fringe homolog 20121230 -9606 5987 TRIM27 DAAP-182E11.3 RFP|RNF76 HGNC:9975|MIM:602165|Ensembl:ENSG00000204713|HPRD:15996|Vega:OTTHUMG00000031215 6 6p22 tripartite motif containing 27 protein-coding TRIM27 tripartite motif containing 27 O RFP transforming protein|RING finger protein 76|ret finger protein|tripartite motif protein TRIM27|tripartite motif-containing 27|tripartite motif-containing protein 27|zinc finger protein RFP 20121230 -9606 5988 RFPL1 - RNF78 HGNC:9977|MIM:605968|Ensembl:ENSG00000128250|HPRD:16182|Vega:OTTHUMG00000150516 22 22q12.2 ret finger protein-like 1 protein-coding RFPL1 ret finger protein-like 1 O RING finger protein 78 20121230 -9606 5989 RFX1 - EFC|RFX HGNC:9982|MIM:600006|Ensembl:ENSG00000132005|HPRD:02476|Vega:OTTHUMG00000181979 19 19p13.1 regulatory factor X, 1 (influences HLA class II expression) protein-coding RFX1 regulatory factor X, 1 (influences HLA class II expression) O MHC class II regulatory factor RFX|MHC class II regulatory factor RFX1|enhancer factor C|regulatory factor X 1|trans-acting regulatory factor 1|transcription factor RFX1 20121230 -9606 5990 RFX2 - - HGNC:9983|MIM:142765|Ensembl:ENSG00000087903|HPRD:00824|Vega:OTTHUMG00000180711 19 19p13.3 regulatory factor X, 2 (influences HLA class II expression) protein-coding RFX2 regulatory factor X, 2 (influences HLA class II expression) O DNA binding protein RFX2|DNA-binding protein RFX2|HLA class II regulatory factor RFX2|regulatory factor X 2|trans-acting regulatory factor 2 20121230 -9606 5991 RFX3 RP11-32F11.1 bA32F11.1 HGNC:9984|MIM:601337|Ensembl:ENSG00000080298|HPRD:03215|Vega:OTTHUMG00000019456 9 9p24.2 regulatory factor X, 3 (influences HLA class II expression) protein-coding RFX3 regulatory factor X, 3 (influences HLA class II expression) O DNA binding protein RFX3|regulatory factor X 3|transcription factor RFX3 20121230 -9606 5992 RFX4 - NYD-SP10 HGNC:9985|MIM:603958|Ensembl:ENSG00000111783|HPRD:04905|Vega:OTTHUMG00000169173 12 12q24 regulatory factor X, 4 (influences HLA class II expression) protein-coding RFX4 regulatory factor X, 4 (influences HLA class II expression) O testis development protein NYD-SP10|transcription factor RFX4|winged-helix transcription factor RFX4 20121230 -9606 5993 RFX5 RP11-126K1.5 - HGNC:9986|MIM:601863|Ensembl:ENSG00000143390|HPRD:03517|Vega:OTTHUMG00000012495 1 1q21 regulatory factor X, 5 (influences HLA class II expression) protein-coding RFX5 regulatory factor X, 5 (influences HLA class II expression) O DNA-binding protein RFX5|regulatory factor X 5 20121230 -9606 5994 RFXAP - - HGNC:9988|MIM:601861|Ensembl:ENSG00000133111|HPRD:03515|Vega:OTTHUMG00000016738 13 13q14 regulatory factor X-associated protein protein-coding RFXAP regulatory factor X-associated protein O RFX DNA-binding complex 36 kDa subunit|RFX-associated protein 20121230 -9606 5995 RGR - RP44 HGNC:9990|MIM:600342|Ensembl:ENSG00000148604|HPRD:02642|Vega:OTTHUMG00000018636 10 10q23 retinal G protein coupled receptor protein-coding RGR retinal G protein coupled receptor O RGR-opsin|RPE retinal G-protein coupled receptor|RPE-retinal G protein-coupled receptor 20121230 -9606 5996 RGS1 - 1R20|BL34|IER1|IR20 HGNC:9991|MIM:600323|Ensembl:ENSG00000090104|HPRD:15968|Vega:OTTHUMG00000035598 1 1q31 regulator of G-protein signaling 1 protein-coding RGS1 regulator of G-protein signaling 1 O B-cell activation protein BL34|early response protein 1R20|immediate-early response 1, B-cell specific|regulator of G-protein signalling 1 20121230 -9606 5997 RGS2 GIG31 G0S8 HGNC:9998|MIM:600861|Ensembl:ENSG00000116741|HPRD:02917|Vega:OTTHUMG00000035600 1 1q31 regulator of G-protein signaling 2, 24kDa protein-coding RGS2 regulator of G-protein signaling 2, 24kDa O G0 to G1 switch regulatory 8, 24kD|G0/G1 switch regulatory protein 8|cell growth-inhibiting gene 31 protein|cell growth-inhibiting protein 31|regulator of G-protein signaling 2 20121230 -9606 5998 RGS3 RP11-168K11.4 C2PA|PDZ-RGS3|RGP3 HGNC:9999|MIM:602189|Ensembl:ENSG00000138835|HPRD:03720|Vega:OTTHUMG00000021048 9 9q32 regulator of G-protein signaling 3 protein-coding RGS3 regulator of G-protein signaling 3 O regulator of G-protein signalling 3 20121230 -9606 5999 RGS4 RP11-430G6.1 RGP4|SCZD9 HGNC:10000|MIM:602516|Ensembl:ENSG00000117152|HPRD:03947|Vega:OTTHUMG00000034417 1 1q23.3 regulator of G-protein signaling 4 protein-coding RGS4 regulator of G-protein signaling 4 O schizophrenia disorder 9 20121230 -9606 6000 RGS7 RP11-80B9.3 - HGNC:10003|MIM:602517|Ensembl:ENSG00000182901|HPRD:03948|Vega:OTTHUMG00000040107 1 1q43|1q23.1 regulator of G-protein signaling 7 protein-coding RGS7 regulator of G-protein signaling 7 O regulator of G-protein signaling RGS7|regulator of G-protein signalling 7 20121230 -9606 6001 RGS10 - - HGNC:9992|MIM:602856|Ensembl:ENSG00000148908|HPRD:04172|Vega:OTTHUMG00000019150 10 10q25 regulator of G-protein signaling 10 protein-coding RGS10 regulator of G-protein signaling 10 O regulator of G-protein signalling 10 20121230 -9606 6002 RGS12 RP11-529E10.1 - HGNC:9994|MIM:602512|Ensembl:ENSG00000159788|HPRD:03943|Vega:OTTHUMG00000090277 4 4p16.3 regulator of G-protein signaling 12 protein-coding RGS12 regulator of G-protein signaling 12 O regulator of G-protein signalling 12 20121230 -9606 6003 RGS13 RP11-92K2.1 - HGNC:9995|MIM:607190|Ensembl:ENSG00000127074|HPRD:06222|Vega:OTTHUMG00000035601 1 1q31.2 regulator of G-protein signaling 13 protein-coding RGS13 regulator of G-protein signaling 13 O regulator of G-protein signalling 13 20121230 -9606 6004 RGS16 - A28-RGS14|A28-RGS14P|RGS-R HGNC:9997|MIM:602514|Ensembl:ENSG00000143333|HPRD:03945|Vega:OTTHUMG00000035212 1 1q25-q31 regulator of G-protein signaling 16 protein-coding RGS16 regulator of G-protein signaling 16 O hRGS-r|regulator of G-protein signalling 16|retinal-specific RGS|retinally abundant regulator of G-protein signaling 20121230 -9606 6005 RHAG - CD241|RH2|RH50A|Rh50|Rh50GP|SLC42A1 HGNC:10006|MIM:180297|Ensembl:ENSG00000112077|HPRD:01582|Vega:OTTHUMG00000016377 6 6p12.3 Rh-associated glycoprotein protein-coding RHAG Rh-associated glycoprotein O Rhesus associated polypeptide, 50-KD|Rhesus blood group-associated glycoprotein|ammonium transporter Rh type A|erythrocyte membrane glycoprotein Rh50|erythrocyte plasma membrane 50 kDa glycoprotein|rh family type A glycoprotein|rh type A glycoprotein|rhesus blood group family type A glycoprotein|rhesus blood group-associated ammonia channel 20121230 -9606 6006 RHCE RP11-335G20.2 CD240CE|RH|RH30A|RHC|RHE|RHIXB|RHPI|Rh4|RhIVb(J)|RhVI|RhVIII HGNC:10008|MIM:111700|Ensembl:ENSG00000188672|HPRD:00200|Vega:OTTHUMG00000007650 1 1p36.11 Rh blood group, CcEe antigens protein-coding RHCE Rh blood group, CcEe antigens O RHCE blood group variant Crawford antigen Rh43|Rh blood group C antigen|Rh blood group Rhce antigen|Rh blood group antigen Evans|Rh polypeptide I|Rhesus blood group CE protein|Rhesus blood group E antigen|Rhesus blood group Rhce antigen|Rhesus system C and E polypeptides|blood group Rh(CE) polypeptide|blood group RhCcEe antigen|rh polypeptide 1|rhesus C/E antigens|rhesus blood group little e antigen|silenced Rh blood group CcEe antigen|truncated RHCE 20121230 -9606 6007 RHD RP11-335G20.5 CD240D|DIIIc|RH|RH30|RHCED|RHDVA(TT)|RHDel|RHPII|RHXIII|Rh4|RhDCw|RhII|RhK562-II|RhPI HGNC:10009|MIM:111680|Ensembl:ENSG00000187010|HPRD:00199|Vega:OTTHUMG00000003476 1 1p36.11 Rh blood group, D antigen protein-coding RHD Rh blood group, D antigen O D antigen (DCS)|RH polypeptide 2|Rh blood group antigen Evans|Rhesus blood group D antigen allele DIII type 7|Rhesus system D polypeptide|blood group Rh(D) polypeptide|rhesus D antigen 20121230 -9606 6008 RHEBP1 - RHEB|RHEB1 HGNC:10010 10 10q11 Ras-homolog enriched in brain pseudogene 1 pseudo RHEBP1 Ras-homolog enriched in brain pseudogene 1 O - 20121230 -9606 6009 RHEB - RHEB2 HGNC:10011|MIM:601293|Ensembl:ENSG00000106615|HPRD:03188|Vega:OTTHUMG00000157330 7 7q36 Ras homolog enriched in brain protein-coding RHEB Ras homolog enriched in brain O GTP-binding protein Rheb|Ras homolog enriched in brain 2 20121230 -9606 6010 RHO - CSNBAD1|OPN2|RP4 HGNC:10012|MIM:180380|Ensembl:ENSG00000163914|HPRD:01584|Vega:OTTHUMG00000159542 3 3q21-q24 rhodopsin protein-coding RHO rhodopsin O opsin 2, rod pigment|opsin-2 20121230 -9606 6011 GRK1 - GPRK1|RHOK|RK HGNC:10013|MIM:180381|Ensembl:ENSG00000185974|HPRD:01585 13 13q34 G protein-coupled receptor kinase 1 protein-coding GRK1 G protein-coupled receptor kinase 1 O rhodopsin kinase 20121230 -9606 6012 RIEG2 - ARS|RGS2 HGNC:10015|MIM:601499 13 13q14 Rieger syndrome 2 unknown RIEG2 Rieger syndrome 2 O - 20120622 -9606 6013 RLN1 - H1|RLXH1|bA12D24.3.1|bA12D24.3.2 HGNC:10026|MIM:179730|Ensembl:ENSG00000107018|HPRD:01560|Vega:OTTHUMG00000019495 9 9p24.1 relaxin 1 protein-coding RLN1 relaxin 1 O preprorelaxin H1|prorelaxin H1|relaxin H1 20121230 -9606 6014 RIT2 - RIBA|RIN|ROC2 HGNC:10017|MIM:609592|Ensembl:ENSG00000152214|HPRD:15253|Vega:OTTHUMG00000132611 18 18q12.3 Ras-like without CAAX 2 protein-coding RIT2 Ras-like without CAAX 2 O GTP-binding protein Rit2|GTP-binding protein Roc2|Ric-like, expressed in neurons|ras-like protein expressed in neurons|ras-like without CAAX protein 2 20121230 -9606 6015 RING1 DADB-100D22.6 RING1A|RNF1 HGNC:10018|MIM:602045|Ensembl:ENSG00000204227|HPRD:03624|Vega:OTTHUMG00000031278 6 6p21.3 ring finger protein 1 protein-coding RING1 ring finger protein 1 O E3 ubiquitin-protein ligase RING1|polycomb complex protein RING1|really interesting new gene 1 protein 20121230 -9606 6016 RIT1 RP11-101O6.4 RIBB|RIT|ROC1 HGNC:10023|MIM:609591|Ensembl:ENSG00000143622|HPRD:10195|Vega:OTTHUMG00000014104 1 1q22 Ras-like without CAAX 1 protein-coding RIT1 Ras-like without CAAX 1 O GTP-binding protein Rit1|GTP-binding protein Roc1|Ric-like, expressed in many tissues|ras-like protein expressed in many tissues|ras-like without CAAX protein 1 20121230 -9606 6017 RLBP1 - CRALBP HGNC:10024|MIM:180090|Ensembl:ENSG00000140522|HPRD:01572|Vega:OTTHUMG00000172884 15 15q26 retinaldehyde binding protein 1 protein-coding RLBP1 retinaldehyde binding protein 1 O cellular retinaldehyde-binding protein|cellular retinaldehyde-binding protein-1|retinaldehyde-binding protein 1 20121230 -9606 6018 RLF RP1-39G22.1 ZN-15L|ZNF292L HGNC:10025|MIM:180610|Ensembl:ENSG00000117000|HPRD:01614|Vega:OTTHUMG00000005763 1 1p32 rearranged L-myc fusion protein-coding RLF rearranged L-myc fusion O Zn-15 related|rearranged L-myc fusion gene protein|rearranged L-myc fusion sequence|zinc finger protein Rlf|zn-15-related protein 20121230 -9606 6019 RLN2 RP11-12D24.2 H2|RLXH2|bA12D24.1.1|bA12D24.1.2 HGNC:10027|MIM:179740|Ensembl:ENSG00000107014|HPRD:01561|Vega:OTTHUMG00000019496 9 9p24.1 relaxin 2 protein-coding RLN2 relaxin 2 O prorelaxin H2|relaxin H2|relaxin, ovarian, of pregnancy 20121230 -9606 6022 RMD1 - - HGNC:10030|MIM:600332 1 1q41 rippling muscle disease 1 unknown RMD1 rippling muscle disease 1 O - 20120622 -9606 6023 RMRP - CHH|NME1|RMRPR|RRP2 HGNC:10031|MIM:157660 9 9p21-p12 RNA component of mitochondrial RNA processing endoribonuclease miscRNA RMRP RNA component of mitochondrial RNA processing endoribonuclease O - 20121230 -9606 6025 RN5S1@ - RN5S HGNC:10034|MIM:180420 1 1q42.11-q42.13 RNA, 5S ribosomal 1q42 cluster other RN5S1@ RNA, 5S ribosomal 1q42 cluster O - 20121209 -9606 6029 RN7SL1 - 7L1a|7SL|RN7SL|RNSRP1 HGNC:10038|MIM:612177 14 14q21.3 RNA, 7SL, cytoplasmic 1 snRNA RN7SL1 RNA, 7SL, cytoplasmic 1 O - 20121230 -9606 6030 RN7SL4P - 7L28|RN7SLP1 HGNC:10039 3 3p25.1 RNA, 7SL, cytoplasmic 4, pseudogene pseudo RN7SL4P RNA, 7SL, cytoplasmic 4, pseudogene O - 20120720 -9606 6031 RN7SL5P - 7LEM1|RN7SLP2 HGNC:10040 9 9p23 RNA, 7SL, cytoplasmic 5, pseudogene pseudo RN7SL5P RNA, 7SL, cytoplasmic 5, pseudogene O - 20121230 -9606 6032 RN7SL6P - 7L7|RN7SLP3 HGNC:10041 22 22q11.22 RNA, 7SL, cytoplasmic 6, pseudogene pseudo RN7SL6P RNA, 7SL, cytoplasmic 6, pseudogene O - 20120720 -9606 6033 RN7SL7P - 7L23|RN7SLP4 HGNC:10042 7 7q21.2 RNA, 7SL, cytoplasmic 7, pseudogene pseudo RN7SL7P RNA, 7SL, cytoplasmic 7, pseudogene O - 20121230 -9606 6034 RN7SL8P - 7L63|RN7SLP5 HGNC:10043 7 7q22.3 RNA, 7SL, cytoplasmic 8, pseudogene pseudo RN7SL8P RNA, 7SL, cytoplasmic 8, pseudogene O - 20121230 -9606 6035 RNASE1 - RIB1|RNS1 HGNC:10044|MIM:180440|Ensembl:ENSG00000129538|HPRD:01591|Vega:OTTHUMG00000029603 14 14q11.2 ribonuclease, RNase A family, 1 (pancreatic) protein-coding RNASE1 ribonuclease, RNase A family, 1 (pancreatic) O HP-RNase|RIB-1|RNase 1|RNase A|RNase upI-1|ribonuclease 1|ribonuclease A|ribonuclease pancreatic 20121230 -9606 6036 RNASE2 - EDN|RNS2 HGNC:10045|MIM:131410|Ensembl:ENSG00000169385|HPRD:00577|Vega:OTTHUMG00000029607 14 14q24-q31 ribonuclease, RNase A family, 2 (liver, eosinophil-derived neurotoxin) protein-coding RNASE2 ribonuclease, RNase A family, 2 (liver, eosinophil-derived neurotoxin) O RNase 2|RNase UpI-2|eosinophil-derived neurotoxin|non-secretory ribonuclease|ribonuclease 2|ribonuclease US 20121230 -9606 6037 RNASE3 - ECP|RNS3 HGNC:10046|MIM:131398|Ensembl:ENSG00000169397|HPRD:00575|Vega:OTTHUMG00000029604 14 14q24-q31 ribonuclease, RNase A family, 3 protein-coding RNASE3 ribonuclease, RNase A family, 3 O RNase 3|cytotoxic ribonuclease|eosinophil cationic protein|ribonuclease 3 20121230 -9606 6038 RNASE4 - RNS4 HGNC:10047|MIM:601030|Ensembl:ENSG00000181784|Ensembl:ENSG00000258818|HPRD:03018|Vega:OTTHUMG00000171011 14 14q11 ribonuclease, RNase A family, 4 protein-coding RNASE4 ribonuclease, RNase A family, 4 O RNase 4|ribonuclease 4 20121230 -9606 6039 RNASE6 - RNS6|RNasek6 HGNC:10048|MIM:601981|Ensembl:ENSG00000169413|HPRD:03581|Vega:OTTHUMG00000029585 14 14q11.2 ribonuclease, RNase A family, k6 protein-coding RNASE6 ribonuclease, RNase A family, k6 O ribonuclease K6 20121230 -9606 6041 RNASEL RP11-20H6.1 PRCA1|RNS4 HGNC:10050|MIM:180435|Ensembl:ENSG00000135828|HPRD:01590|Vega:OTTHUMG00000035213 1 1q25 ribonuclease L (2',5'-oligoisoadenylate synthetase-dependent) protein-coding RNASEL ribonuclease L (2',5'-oligoisoadenylate synthetase-dependent) O 2',5'-oligoisoadenylate synthetase-dependent|2-5A-dependent RNase|2-5A-dependent ribonuclease|RNase L|interferon-induced 2-5A-dependent RNase|ribonuclease 4 20121230 -9606 6043 SNORA63 - E3|E3-2|RNE3|RNU107 HGNC:10106|MIM:180647 3 3q27 small nucleolar RNA, H/ACA box 63 snoRNA SNORA63 small nucleolar RNA, H/ACA box 63 O - 20121230 -9606 6044 SNORA62 - E2|E2-1|RNE2|RNU108 HGNC:10107|MIM:180646 3 3p22 small nucleolar RNA, H/ACA box 62 snoRNA SNORA62 small nucleolar RNA, H/ACA box 62 O - 20121230 -9606 6045 RNF2 GS1-120K12.1 BAP-1|BAP1|DING|HIPI3|RING1B|RING2 HGNC:10061|MIM:608985|Ensembl:ENSG00000121481|HPRD:07028|Vega:OTTHUMG00000035391 1 1q25.3 ring finger protein 2 protein-coding RNF2 ring finger protein 2 O E3 ubiquitin-protein ligase RING2|HIP2-interacting protein 3|RING finger protein 1B|RING finger protein BAP-1|huntingtin-interacting protein 2-interacting protein 3|protein DinG 20121230 -9606 6046 BRD2 DADB-17J1.3 D6S113E|FSH|FSRG1|NAT|RING3|RNF3 HGNC:1103|MIM:601540|Ensembl:ENSG00000204256|HPRD:03326|Vega:OTTHUMG00000031241 6 6p21.3 bromodomain containing 2 protein-coding BRD2 bromodomain containing 2 O O27.1.1|bromodomain-containing 2|bromodomain-containing protein 2|female sterile homeotic-related gene 1|really interesting new gene 3 protein 20121230 -9606 6047 RNF4 RES4-26 SLX5|SNURF HGNC:10067|MIM:602850|Ensembl:ENSG00000063978|HPRD:04167|Vega:OTTHUMG00000160516 4 4p16.3 ring finger protein 4 protein-coding RNF4 ring finger protein 4 O E3 ubiquitin ligase RNF4|E3 ubiquitin-protein ligase RNF4|small nuclear RING finger protein 20121230 -9606 6048 RNF5 DAAP-218M18.2 RING5|RMA1 HGNC:10068|MIM:602677|Ensembl:ENSG00000204308|HPRD:04057|Vega:OTTHUMG00000031093 6 6p21.3 ring finger protein 5, E3 ubiquitin protein ligase protein-coding RNF5 ring finger protein 5, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase RNF5|protein G16|ram1 homolog 20121230 -9606 6049 RNF6 RP11-380N8.5 - HGNC:10069|MIM:604242|Ensembl:ENSG00000127870|HPRD:05027|Vega:OTTHUMG00000016614 13 13q12.2 ring finger protein (C3H2C3 type) 6 protein-coding RNF6 ring finger protein (C3H2C3 type) 6 O E3 ubiquitin-protein ligase RNF6|RING-H2 protein RNF-6 20121230 -9606 6050 RNH1 - RAI|RNH HGNC:10074|MIM:173320|Ensembl:ENSG00000023191|HPRD:01412|Vega:OTTHUMG00000119086 11 11p15.5 ribonuclease/angiogenin inhibitor 1 protein-coding RNH1 ribonuclease/angiogenin inhibitor 1 O placental RNase inhibitor|placental ribonuclease inhibitor|ribonuclease inhibitor 20121230 -9606 6051 RNPEP - - HGNC:10078|MIM:602675|Ensembl:ENSG00000176393|HPRD:04055|Vega:OTTHUMG00000035866 1 1q32 arginyl aminopeptidase (aminopeptidase B) protein-coding RNPEP arginyl aminopeptidase (aminopeptidase B) O AP-B|aminopeptidase B|arginine aminopeptidase 20121230 -9606 6052 RNR1 - - HGNC:10082|MIM:180450 13 13p12 RNA, ribosomal 1 other RNR1 RNA, ribosomal 1 O - 20110814 -9606 6053 RNR2 - - HGNC:10083|MIM:180451 14 14p12 RNA, ribosomal 2 other RNR2 RNA, ribosomal 2 O - 20110814 -9606 6054 RNR3 - - HGNC:10084|MIM:180452 15 15p12 RNA, ribosomal 3 other RNR3 RNA, ribosomal 3 O - 20110814 -9606 6055 RNR4 - - HGNC:10085|MIM:180453 21 21p12 RNA, ribosomal 4 other RNR4 RNA, ribosomal 4 O - 20110814 -9606 6056 RNR5 - - HGNC:10086|MIM:180454 22 22p12 RNA, ribosomal 5 other RNR5 RNA, ribosomal 5 O - 20110814 -9606 6059 ABCE1 OK/SW-cl.40 ABC38|OABP|RLI|RNASEL1|RNASELI|RNS4I HGNC:69|MIM:601213|Ensembl:ENSG00000164163|HPRD:03132|Vega:OTTHUMG00000161478 4 4q31 ATP-binding cassette, sub-family E (OABP), member 1 protein-coding ABCE1 ATP-binding cassette, sub-family E (OABP), member 1 O 2'-5'-oligoadenylate-binding protein|ATP-binding cassette sub-family E member 1|RNase L inhibitor|huHP68|ribonuclease 4 inhibitor|ribonuclease L (2',5'-oligoisoadenylate synthetase-dependent) inhibitor 20121230 -9606 6060 RNU1-4 - HSD2|HSD5|HSD6|HSD7|RNU1|RNU1D2|RNU1E2|RNU1F1|RNU1G1|RNU1G2|U1B2|U1D2|U1E2|U1F HGNC:10128|MIM:180680 1 1p36.1 RNA, U1 small nuclear 4 snRNA RNU1-4 RNA, U1 small nuclear 4 O - 20121230 -9606 6063 RNU1-12P - RNU1P2|U1P2A HGNC:10134 1 1q21.2 RNA, U1 small nuclear 12, pseudogene pseudo RNU1-12P RNA, U1 small nuclear 12, pseudogene O - 20120720 -9606 6066 RNU2-1 - RNU2|U2 HGNC:10142|MIM:180690 17 17q12-q21 RNA, U2 small nuclear 1 snRNA RNU2-1 RNA, U2 small nuclear 1 O - 20121209 -9606 6068 RNU3P1 - U3 HGNC:10175 15 15q22.1 RNA, U3 small nucleolar pseudogene 1 pseudo RNU3P1 RNA, U3 small nucleolar pseudogene 1 O - 20121230 -9606 6069 RNU4-7P - RNU4P1|U4|U4/7 HGNC:10194 6 6q25.1 RNA, U4 small nuclear 7, pseudogene pseudo RNU4-7P RNA, U4 small nuclear 7, pseudogene O - 20121230 -9606 6070 RNU4-8P - RNU4P2|U4|U4/14 HGNC:10195 2 2q11.2 RNA, U4 small nuclear 8, pseudogene pseudo RNU4-8P RNA, U4 small nuclear 8, pseudogene O - 20121230 -9606 6071 RNU6V - 87U6|LH87 HGNC:10230 1 1p13 RNA, U6 small nuclear variant sequence with SNRPE pseudogene sequence pseudo RNU6V RNA, U6 small nuclear variant sequence with SNRPE pseudogene sequence O - 20121230 -9606 6072 RNU7-68P - HSU7.732A|RNU7P1|U7|U7.68 HGNC:10236 X Xq24 RNA, U7 small nuclear 68 pseudogene pseudo RNU7-68P RNA, U7 small nuclear 68 pseudogene O - 20120720 -9606 6073 RNU7-86P - HSU7.7/32B|RNU7P2|U7 HGNC:10237 X Xq24 RNA, U7 small nuclear 86 pseudogene pseudo RNU7-86P RNA, U7 small nuclear 86 pseudogene O - 20120720 -9606 6074 RNU7-24P - HSU7.24|HSU7.25|RNU7P3|U7|U7.24 HGNC:34120 16 16p12.1 RNA, U7 small nuclear 24 pseudogene pseudo RNU7-24P RNA, U7 small nuclear 24 pseudogene O - 20121021 -9606 6075 RNU7-55P - HSU7.36|HSU7.55|RNU7P4|U7|U7.55 HGNC:10239 8 8p23.1 RNA, U7 small nuclear 55 pseudogene pseudo RNU7-55P RNA, U7 small nuclear 55 pseudogene O - 20121021 -9606 6076 SNORD13P1 - RNU13P1|U13|U13.32A HGNC:10110 22 22q13.2 small nucleolar RNA, C/D box 13 pseudogene 1 pseudo SNORD13P1 small nucleolar RNA, C/D box 13 pseudogene 1 O - 20120720 -9606 6077 SNORD13P2 - RNU13P2|U13|U13.12A HGNC:10111 7 7p22.1 small nucleolar RNA, C/D box 13 pseudogene 2 pseudo SNORD13P2 small nucleolar RNA, C/D box 13 pseudogene 2 O - 20121230 -9606 6078 SNORD13P3 - RNU13P3|U13|U13.4B HGNC:10112 3 3p21.31 small nucleolar RNA, C/D box 13 pseudogene 3 pseudo SNORD13P3 small nucleolar RNA, C/D box 13 pseudogene 3 O - 20121230 -9606 6079 SNORD15A - RNU15A|SNORNA|U15A HGNC:10114|MIM:600455 11 11q13.4 small nucleolar RNA, C/D box 15A snoRNA SNORD15A small nucleolar RNA, C/D box 15A O - 20121230 -9606 6080 SNORA73A - E1|E1-7|E1b|RNE1|RNU17A|U17A HGNC:10115|MIM:180645 1 1p36.1 small nucleolar RNA, H/ACA box 73A snoRNA SNORA73A small nucleolar RNA, H/ACA box 73A O - 20121230 -9606 6081 SNORA73B - RNU17B|U17B HGNC:10116|MIM:603239 1 1p36.1 small nucleolar RNA, H/ACA box 73B snoRNA SNORA73B small nucleolar RNA, H/ACA box 73B O - 20121021 -9606 6082 SNORD20 - RNU20|U20 HGNC:10143|MIM:604012 2 2q37.1 small nucleolar RNA, C/D box 20 snoRNA SNORD20 small nucleolar RNA, C/D box 20 O - 20121230 -9606 6083 SNORD21 - RNU21|U21 HGNC:10144|MIM:603635 1 1p22.1 small nucleolar RNA, C/D box 21 snoRNA SNORD21 small nucleolar RNA, C/D box 21 O - 20121230 -9606 6084 RNY1 - HY1|Y1 HGNC:10242|MIM:601821 7 7q36 RNA, Ro-associated Y1 ncRNA RNY1 RNA, Ro-associated Y1 O - 20121230 -9606 6085 RNY3 - HY3|Y3 HGNC:10243|MIM:601822 7 7q36 RNA, Ro-associated Y3 ncRNA RNY3 RNA, Ro-associated Y3 O - 20121230 -9606 6086 RNY4 - HY4|Y4 HGNC:10244|MIM:601823 7 7q36 RNA, Ro-associated Y4 ncRNA RNY4 RNA, Ro-associated Y4 O - 20121230 -9606 6087 RNY4P1 - hY4.B8 HGNC:10245 9 9q21.13 RNA, Ro-associated Y4 pseudogene 1 pseudo RNY4P1 RNA, Ro-associated Y4 pseudogene 1 O - 20121230 -9606 6088 RNY4P2 - hY4.B7 HGNC:10246 17 17q21.31 RNA, Ro-associated Y4 pseudogene 2 pseudo RNY4P2 RNA, Ro-associated Y4 pseudogene 2 O - 20121230 -9606 6089 RNY4P3 - hY4.F2 HGNC:10247 16 16q12.1 RNA, Ro-associated Y4 pseudogene 3 pseudo RNY4P3 RNA, Ro-associated Y4 pseudogene 3 O - 20121230 -9606 6090 RNY5 - Y5 HGNC:10248|MIM:601824 7 7q36 RNA, Ro-associated Y5 ncRNA RNY5 RNA, Ro-associated Y5 O - 20121230 -9606 6091 ROBO1 - DUTT1|SAX3 HGNC:10249|MIM:602430|Ensembl:ENSG00000169855|HPRD:03890|Vega:OTTHUMG00000158843 3 3p12 roundabout, axon guidance receptor, homolog 1 (Drosophila) protein-coding ROBO1 roundabout, axon guidance receptor, homolog 1 (Drosophila) O deleted in U twenty twenty|roundabout homolog 1 20121230 -9606 6092 ROBO2 - SAX3 HGNC:10250|MIM:602431|Ensembl:ENSG00000185008|Vega:OTTHUMG00000158935 3 3p12.3 roundabout, axon guidance receptor, homolog 2 (Drosophila) protein-coding ROBO2 roundabout, axon guidance receptor, homolog 2 (Drosophila) O roundabout homolog 2 20121230 -9606 6093 ROCK1 - P160ROCK|ROCK-I HGNC:10251|MIM:601702|Ensembl:ENSG00000067900|HPRD:03414|Vega:OTTHUMG00000131723 18 18q11.1 Rho-associated, coiled-coil containing protein kinase 1 protein-coding ROCK1 Rho-associated, coiled-coil containing protein kinase 1 O Rho kinase|p160 ROCK-1|p160-ROCK|renal carcinoma antigen NY-REN-35|rho-associated protein kinase 1|rho-associated, coiled-coil-containing protein kinase 1|rho-associated, coiled-coil-containing protein kinase I 20121230 -9606 6094 ROM1 - ROM|ROSP1|RP7|TSPAN23 HGNC:10254|MIM:180721|Ensembl:ENSG00000149489|HPRD:01616|Vega:OTTHUMG00000167528 11 11q13 retinal outer segment membrane protein 1 protein-coding ROM1 retinal outer segment membrane protein 1 O rod outer segment membrane protein 1|tetraspanin-23|tspan-23 20121230 -9606 6095 RORA - NR1F1|ROR1|ROR2|ROR3|RZR-ALPHA|RZRA HGNC:10258|MIM:600825|Ensembl:ENSG00000069667|HPRD:02896|Vega:OTTHUMG00000132769 15 15q22.2 RAR-related orphan receptor A protein-coding RORA RAR-related orphan receptor A O ROR-alpha|nuclear receptor ROR-alpha|nuclear receptor RZR-alpha|nuclear receptor subfamily 1 group F member 1|retinoic acid receptor-related orphan receptor alpha|retinoid-related orphan receptor alpha|thyroid hormone nuclear receptor alpha variant 4|transcription factor RZR-alpha 20121230 -9606 6096 RORB - NR1F2|ROR-BETA|RZR-BETA|RZRB|bA133M9.1 HGNC:10259|MIM:601972|Ensembl:ENSG00000198963|HPRD:09062|Vega:OTTHUMG00000020026 9 9q22 RAR-related orphan receptor B protein-coding RORB RAR-related orphan receptor B O RAR-related orphan receptor beta|nuclear receptor ROR-beta|nuclear receptor RZR-beta|nuclear receptor subfamily 1 group F member 2|retinoic acid-binding receptor beta|retinoid-related orphan receptor beta|retinoid-related orphan receptor-beta 20121230 -9606 6097 RORC RP11-98D18.11-001 NR1F3|RORG|RZR-GAMMA|RZRG|TOR HGNC:10260|MIM:602943|Ensembl:ENSG00000143365|HPRD:04250|Vega:OTTHUMG00000013053 1 1q21 RAR-related orphan receptor C protein-coding RORC RAR-related orphan receptor C O RAR-related orphan nuclear receptor variant 2|nuclear receptor ROR-gamma|nuclear receptor RZR-gamma|nuclear receptor subfamily 1 group F member 3|retinoic acid-binding receptor gamma|retinoid-related orphan receptor gamma 20121230 -9606 6098 ROS1 RP1-179P9.1 MCF3|ROS|c-ros-1 HGNC:10261|MIM:165020|Ensembl:ENSG00000047936|HPRD:01295|Vega:OTTHUMG00000016188 6 6q22 c-ros oncogene 1 , receptor tyrosine kinase protein-coding ROS1 c-ros oncogene 1 , receptor tyrosine kinase O c-Ros receptor tyrosine kinase|proto-oncogene c-Ros|proto-oncogene c-Ros-1|proto-oncogene tyrosine-protein kinase ROS|receptor tyrosine kinase c-ros oncogene 1|transmembrane tyrosine-specific protein kinase|v-ros UR2 sarcoma virus oncogene homolog 1|v-ros avian UR2 sarcoma virus oncogene homolog 1 20121230 -9606 6100 RP9 - PAP-1 HGNC:10288|MIM:607331|Ensembl:ENSG00000164610|HPRD:08457|Vega:OTTHUMG00000152988 7 7p14.3 retinitis pigmentosa 9 (autosomal dominant) protein-coding RP9 retinitis pigmentosa 9 (autosomal dominant) O Pim-1 kinase associated protein|pim-1-associated protein|retinitis pigmentosa 9 protein 20121230 -9606 6101 RP1 - DCDC4A|ORP1 HGNC:10263|MIM:603937|Ensembl:ENSG00000104237|HPRD:04896|Vega:OTTHUMG00000164379 8 8q12.1 retinitis pigmentosa 1 (autosomal dominant) protein-coding RP1 retinitis pigmentosa 1 (autosomal dominant) O oxygen-regulated protein 1|retinitis pigmentosa 1 protein|retinitis pigmentosa RP1 protein 20121230 -9606 6102 RP2 - DELXp11.3|NM23-H10|NME10|TBCCD2|XRP2 HGNC:10274|MIM:300757|Ensembl:ENSG00000102218|HPRD:02424|Vega:OTTHUMG00000021430 X Xp11.3 retinitis pigmentosa 2 (X-linked recessive) protein-coding RP2 retinitis pigmentosa 2 (X-linked recessive) O protein XRP2 20121230 -9606 6103 RPGR - COD1|CORDX1|CRD|PCDX|RP15|RP3|XLRP3|orf15 HGNC:10295|MIM:312610|Ensembl:ENSG00000156313|HPRD:02425|Vega:OTTHUMG00000021361 X Xp21.1 retinitis pigmentosa GTPase regulator protein-coding RPGR retinitis pigmentosa GTPase regulator O X-linked retinitis pigmentosa GTPase regulator|retinitis pigmentosa 15|retinitis pigmentosa 3 GTPase regulator 20121230 -9606 6104 RP6 - - HGNC:10286|MIM:312612 X Xp21.3-p21.2 retinitis pigmentosa 6 (X-linked recessive) unknown RP6 retinitis pigmentosa 6 (X-linked recessive) O - 20110215 -9606 6114 RP22 - - HGNC:10276|MIM:602594 16 16p12.3-p12.1 retinitis pigmentosa 22 (autosomal recessive) unknown RP22 retinitis pigmentosa 22 (autosomal recessive) O - 20120622 -9606 6115 RP23 - - HGNC:10277|MIM:300424 X Xp22 retinitis pigmentosa 23 (X-linked recessive) unknown RP23 retinitis pigmentosa 23 (X-linked recessive) O - 20120622 -9606 6116 RP24 - - HGNC:10278|MIM:300155 X Xq26-q27 retinitis pigmentosa 24 (X-linked recessive) unknown RP24 retinitis pigmentosa 24 (X-linked recessive) O - 20120622 -9606 6117 RPA1 - HSSB|MST075|REPA1|RF-A|RP-A|RPA70 HGNC:10289|MIM:179835|Ensembl:ENSG00000132383|HPRD:01565|Vega:OTTHUMG00000090579 17 17p13.3 replication protein A1, 70kDa protein-coding RPA1 replication protein A1, 70kDa O MSTP075|RF-A protein 1|RP-A p70|replication factor A protein 1|replication protein A 70 kDa DNA-binding subunit|single-stranded DNA-binding protein 20121230 -9606 6118 RPA2 RP4-547C9.3 REPA2|RPA32 HGNC:10290|MIM:179836|Ensembl:ENSG00000117748|HPRD:01566|Vega:OTTHUMG00000003915 1 1p35 replication protein A2, 32kDa protein-coding RPA2 replication protein A2, 32kDa O RF-A protein 2|RP-A p32|RP-A p34|replication factor A protein 2|replication protein A 32 kDa subunit|replication protein A 34 kDa subunit 20121230 -9606 6119 RPA3 - REPA3 HGNC:10291|MIM:179837|Ensembl:ENSG00000106399|HPRD:01567|Vega:OTTHUMG00000023748 7 7p22 replication protein A3, 14kDa protein-coding RPA3 replication protein A3, 14kDa O RF-A protein 3|RP-A p14|replication factor A protein 3|replication protein A 14 kDa subunit 20121230 -9606 6120 RPE HUSSY-17 RPE2-1 HGNC:10293|MIM:180480|Ensembl:ENSG00000197713|HPRD:01608|Vega:OTTHUMG00000154690 2 2q32-q33.3 ribulose-5-phosphate-3-epimerase protein-coding RPE ribulose-5-phosphate-3-epimerase O ribulose-phosphate 3-epimerase 20121230 -9606 6121 RPE65 - LCA2|RP20|mRPE65|rd12|sRPE65 HGNC:10294|MIM:180069|Ensembl:ENSG00000116745|HPRD:01569|Vega:OTTHUMG00000009208 1 1p31 retinal pigment epithelium-specific protein 65kDa protein-coding RPE65 retinal pigment epithelium-specific protein 65kDa O RBP-binding membrane protein|all-trans-retinyl-palmitate hydrolase|p63|retinal pigment epithelium-specific 65 kDa protein|retinitis pigmentosa 20 (autosomal recessive)|retinoid isomerohydrolase|retinol isomerase 20121230 -9606 6122 RPL3 OK/SW-cl.32 ASC-1|L3|TARBP-B HGNC:10332|MIM:604163|Ensembl:ENSG00000100316|HPRD:16042|Vega:OTTHUMG00000151079 22 22q13 ribosomal protein L3 protein-coding RPL3 ribosomal protein L3 O 60S ribosomal protein L3|HIV-1 TAR RNA-binding protein B|hypothetical protein 20121230 -9606 6123 RPL3L - - HGNC:10351|Ensembl:ENSG00000140986|HPRD:17998|Vega:OTTHUMG00000128685 16 16p13.3 ribosomal protein L3-like protein-coding RPL3L ribosomal protein L3-like O 60S ribosomal protein L3-like 20121230 -9606 6124 RPL4 - L4 HGNC:10353|MIM:180479|Ensembl:ENSG00000174444|HPRD:01607|Vega:OTTHUMG00000133193 15 15q22 ribosomal protein L4 protein-coding RPL4 ribosomal protein L4 O 60S ribosomal protein L1|60S ribosomal protein L4 20121230 -9606 6125 RPL5 MSTP030 DBA6|L5 HGNC:10360|MIM:603634|Ensembl:ENSG00000122406|HPRD:04699|Vega:OTTHUMG00000010899 1 1p22.1 ribosomal protein L5 protein-coding RPL5 ribosomal protein L5 O 60S ribosomal protein L5 20121230 -9606 6126 RPL9P7 - RPL9L1|RPL9P1|RPL9_19_1768 HGNC:30335 X Xp22.1 ribosomal protein L9 pseudogene 7 pseudo RPL9P7 ribosomal protein L9 pseudogene 7 O - 20121230 -9606 6128 RPL6 - L6|SHUJUN-2|TAXREB107|TXREB1 HGNC:10362|MIM:603703|Ensembl:ENSG00000089009|HPRD:04745|Vega:OTTHUMG00000169685 12 12q24.1 ribosomal protein L6 protein-coding RPL6 ribosomal protein L6 O 60S ribosomal protein L6|DNA-binding protein TAXREB107|neoplasm-related protein C140|tax-responsive enhancer element-binding protein 107 20121230 -9606 6129 RPL7 - L7|humL7-1 HGNC:10363|MIM:604166|Ensembl:ENSG00000147604|HPRD:05004|Vega:OTTHUMG00000134312 8 8q21.11 ribosomal protein L7 protein-coding RPL7 ribosomal protein L7 O 60S ribosomal protein L7 20121230 -9606 6130 RPL7A RP11-244N20.10-004 L7A|SURF3|TRUP HGNC:10364|MIM:185640|Ensembl:ENSG00000148303|HPRD:01712|Vega:OTTHUMG00000020864 9 9q34 ribosomal protein L7a protein-coding RPL7A ribosomal protein L7a O 60S ribosomal protein L7a|PLA-X polypeptide|surfeit 3|surfeit locus protein 3|thyroid hormone receptor uncoupling protein 20121230 -9606 6132 RPL8 - L8 HGNC:10368|MIM:604177|Ensembl:ENSG00000161016|HPRD:16044|Vega:OTTHUMG00000165249 8 8q24.3 ribosomal protein L8 protein-coding RPL8 ribosomal protein L8 O 60S ribosomal protein L8 20121230 -9606 6133 RPL9 OK/SW-cl.103 L9|NPC-A-16 HGNC:10369|MIM:603686|Ensembl:ENSG00000163682|HPRD:04732|Vega:OTTHUMG00000099367 4 4p13 ribosomal protein L9 protein-coding RPL9 ribosomal protein L9 O 60S ribosomal protein L9 20121230 -9606 6134 RPL10 XX-FW83563B9.1 AUTSX5|DXS648|DXS648E|L10|NOV|QM HGNC:10298|MIM:312173|Ensembl:ENSG00000147403|HPRD:02421|Vega:OTTHUMG00000033189 X Xq28 ribosomal protein L10 protein-coding RPL10 ribosomal protein L10 O 60S ribosomal protein L10|Wilms tumor-related protein|laminin receptor homolog|tumor suppressor QM 20121230 -9606 6135 RPL11 RP11-223J15.3 DBA7|GIG34|L11 HGNC:10301|MIM:604175|Ensembl:ENSG00000142676|HPRD:10364|Vega:OTTHUMG00000002926 1 1p36.1-p35 ribosomal protein L11 protein-coding RPL11 ribosomal protein L11 O 60S ribosomal protein L11|CLL-associated antigen KW-12|cell growth-inhibiting protein 34 20121230 -9606 6136 RPL12 - L12 HGNC:10302|MIM:180475|Ensembl:ENSG00000197958|HPRD:01603|Vega:OTTHUMG00000020704 9 9q34 ribosomal protein L12 protein-coding RPL12 ribosomal protein L12 O 60S ribosomal protein L12 20121230 -9606 6137 RPL13 OK/SW-cl.46 BBC1|D16S444E|D16S44E|L13 HGNC:10303|MIM:113703|Ensembl:ENSG00000167526|HPRD:06428|Vega:OTTHUMG00000133770 16 16q24.3|17p11.2 ribosomal protein L13 protein-coding RPL13 ribosomal protein L13 O 60S ribosomal protein L13|OK/SW-cl.46|breast basic conserved protein 1 20121230 -9606 6138 RPL15 TCBAP0781 EC45|L15|RPL10|RPLY10|RPYL10 HGNC:10306|MIM:604174|Ensembl:ENSG00000174748|HPRD:16043|Vega:OTTHUMG00000130485 3 3p24.2 ribosomal protein L15 protein-coding RPL15 ribosomal protein L15 O 60S ribosomal protein L15 20121230 -9606 6139 RPL17 - L17|PD-1|RPL23 HGNC:10307|MIM:603661|Ensembl:ENSG00000215472|Ensembl:ENSG00000265681|HPRD:04715|Vega:OTTHUMG00000179680|Vega:OTTHUMG00000179689 18 18q21 ribosomal protein L17 protein-coding RPL17 ribosomal protein L17 O 60S ribosomal protein L17|60S ribosomal protein L23|gene encoding putative NFkB activating protein 20121230 -9606 6141 RPL18 - L18 HGNC:10310|MIM:604179|Ensembl:ENSG00000063177|HPRD:16046|Vega:OTTHUMG00000169760 19 19q13 ribosomal protein L18 protein-coding RPL18 ribosomal protein L18 O 60S ribosomal protein L18 20121230 -9606 6142 RPL18A - L18A HGNC:10311|MIM:604178|Ensembl:ENSG00000105640|HPRD:16045 19 19p13 ribosomal protein L18a protein-coding RPL18A ribosomal protein L18a O 60S ribosomal protein L18a|ribosomal protein L18a-like protein 20121230 -9606 6143 RPL19 - L19 HGNC:10312|MIM:180466|Ensembl:ENSG00000108298|HPRD:01594|Vega:OTTHUMG00000178979 17 17q12 ribosomal protein L19 protein-coding RPL19 ribosomal protein L19 O 60S ribosomal protein L19 20121230 -9606 6144 RPL21 RP11-428O18.5 L21 HGNC:10313|MIM:603636|Ensembl:ENSG00000122026|HPRD:04700|Vega:OTTHUMG00000016630 13 13q12.2 ribosomal protein L21 protein-coding RPL21 ribosomal protein L21 O 60S ribosomal protein L21 20121230 -9606 6145 RPL21P1 - RPL21P HGNC:10314 12 12q24.31 ribosomal protein L21 pseudogene 1 pseudo RPL21P1 ribosomal protein L21 pseudogene 1 O - 20121230 -9606 6146 RPL22 - EAP|HBP15|HBP15/L22|L22 HGNC:10315|MIM:180474|Ensembl:ENSG00000116251|HPRD:01602|Vega:OTTHUMG00000000953 1 1p36.31 ribosomal protein L22 protein-coding RPL22 ribosomal protein L22 O 60S ribosomal protein L22|EBER-associated protein|Epstein-Barr virus small RNA-associated protein|Epstein-Barr-encoded RNA-associated protein|heparin-binding protein 15|heparin-binding protein HBp15 20121230 -9606 6147 RPL23A - L23A|MDA20 HGNC:10317|MIM:602326|Ensembl:ENSG00000198242|HPRD:15998|Vega:OTTHUMG00000132684 17 17q11.2 ribosomal protein L23a protein-coding RPL23A ribosomal protein L23a O 60S ribosomal protein L23a|melanoma differentiation-associated gene 20 20121230 -9606 6148 RPL23AP1 - RPL23A_15_676|dJ377H14.8 HGNC:10318 6 6p21.3 ribosomal protein L23a pseudogene 1 pseudo RPL23AP1 ribosomal protein L23a pseudogene 1 O - 20121230 -9606 6150 MRPL23 - L23MRP|RPL23|RPL23L HGNC:10322|MIM:600789|Ensembl:ENSG00000214026|HPRD:02876|Vega:OTTHUMG00000012476 11 11p15.5 mitochondrial ribosomal protein L23 protein-coding MRPL23 mitochondrial ribosomal protein L23 O 39S ribosomal protein L23, mitochondrial|L23 mitochondrial-related protein|L23mt|MRP-L23|ribosomal protein related to L23 (mitochondrial) 20121230 -9606 6152 RPL24 - L24 HGNC:10325|MIM:604180|Ensembl:ENSG00000114391|HPRD:10365|Vega:OTTHUMG00000159146 3 3q12 ribosomal protein L24 protein-coding RPL24 ribosomal protein L24 O 60S ribosomal protein L24|60S ribosomal protein L30|ribosomal protein L30 20121230 -9606 6154 RPL26 - DBA11|L26 HGNC:10327|MIM:603704|Ensembl:ENSG00000161970|HPRD:04746|Vega:OTTHUMG00000108191 17 17p13 ribosomal protein L26 protein-coding RPL26 ribosomal protein L26 O 60S ribosomal protein L26 20121230 -9606 6155 RPL27 - L27 HGNC:10328|MIM:607526|Ensembl:ENSG00000131469|HPRD:09602|Vega:OTTHUMG00000180660 17 17q21 ribosomal protein L27 protein-coding RPL27 ribosomal protein L27 O 60S ribosomal protein L27 20121230 -9606 6156 RPL30 - L30 HGNC:10333|MIM:180467|Ensembl:ENSG00000156482|HPRD:01595|Vega:OTTHUMG00000164796 8 8q22 ribosomal protein L30 protein-coding RPL30 ribosomal protein L30 O 60S ribosomal protein L30 20121230 -9606 6157 RPL27A - L27A HGNC:10329|MIM:603637|Ensembl:ENSG00000166441|HPRD:04701|Vega:OTTHUMG00000165834 11 11p15 ribosomal protein L27a protein-coding RPL27A ribosomal protein L27a O 60S ribosomal protein L27a 20121230 -9606 6158 RPL28 - L28 HGNC:10330|MIM:603638|Ensembl:ENSG00000108107|HPRD:04702|Vega:OTTHUMG00000171991 19 19q13.4 ribosomal protein L28 protein-coding RPL28 ribosomal protein L28 O 60S ribosomal protein L28 20121230 -9606 6159 RPL29 - HIP|HUMRPL29|L29 HGNC:10331|MIM:601832|Ensembl:ENSG00000162244|HPRD:03495|Vega:OTTHUMG00000155262 3 3p21.3-p21.2 ribosomal protein L29 protein-coding RPL29 ribosomal protein L29 O 60S ribosomal protein L29|HP/HS-interacting protein|cell surface heparin-binding protein HIP|heparin/heparan sulfate-binding protein|heparin/heparan sulfate-interacting protein|ribosomal protein YL43 homologue 20121230 -9606 6160 RPL31 - L31 HGNC:10334|Ensembl:ENSG00000071082|HPRD:17994|Vega:OTTHUMG00000130687 2 2q11.2 ribosomal protein L31 protein-coding RPL31 ribosomal protein L31 O 60S ribosomal protein L31 20121230 -9606 6161 RPL32 PP9932 L32 HGNC:10336|Ensembl:ENSG00000144713|HPRD:17995|Vega:OTTHUMG00000129804 3 3p25-p24 ribosomal protein L32 protein-coding RPL32 ribosomal protein L32 O 60S ribosomal protein L32 20121230 -9606 6163 RPL32P1 - RPL32-L|RPL32P|RPL32_6_681 HGNC:10339 6 6p21.3 ribosomal protein L32 pseudogene 1 pseudo RPL32P1 ribosomal protein L32 pseudogene 1 O - 20121230 -9606 6164 RPL34 - L34 HGNC:10340|Ensembl:ENSG00000109475|HPRD:17996|Vega:OTTHUMG00000131839 4 4q25 ribosomal protein L34 protein-coding RPL34 ribosomal protein L34 O 60S ribosomal protein L34|leukemia-associated protein 20121230 -9606 6165 RPL35A GIG33 DBA5|L35A HGNC:10345|MIM:180468|Ensembl:ENSG00000182899|HPRD:01596|Vega:OTTHUMG00000155386 3 3q29 ribosomal protein L35a protein-coding RPL35A ribosomal protein L35a O 60S ribosomal protein L35a|cell growth-inhibiting gene 33 protein 20121230 -9606 6166 RPL36AL - RPL36A HGNC:10346|MIM:180469|Ensembl:ENSG00000165502|HPRD:01597|Vega:OTTHUMG00000152330 14 14q21 ribosomal protein L36a-like protein-coding RPL36AL ribosomal protein L36a-like O 60S ribosomal protein L36a-like|ribosomal protein HL44 20121230 -9606 6167 RPL37 - L37 HGNC:10347|MIM:604181|Ensembl:ENSG00000145592|HPRD:16047|Vega:OTTHUMG00000094774 5 5p13 ribosomal protein L37 protein-coding RPL37 ribosomal protein L37 O 60S ribosomal protein L37|60S ribosomal protein L37a|G1.16 20121230 -9606 6168 RPL37A - L37A HGNC:10348|MIM:613314|Ensembl:ENSG00000197756|HPRD:17997|Vega:OTTHUMG00000133052 2 2q35 ribosomal protein L37a protein-coding RPL37A ribosomal protein L37a O 60S ribosomal protein L37a 20121230 -9606 6169 RPL38 - L38 HGNC:10349|MIM:604182|Ensembl:ENSG00000172809|HPRD:16048|Vega:OTTHUMG00000166016 17 17q25.1 ribosomal protein L38 protein-coding RPL38 ribosomal protein L38 O 60S ribosomal protein L38 20121230 -9606 6170 RPL39 - L39 HGNC:10350|MIM:601904|Ensembl:ENSG00000198918|HPRD:03546|Vega:OTTHUMG00000022278 X Xq24 ribosomal protein L39 protein-coding RPL39 ribosomal protein L39 O 60S ribosomal protein L39 20121230 -9606 6171 RPL41 - L41 HGNC:10354|MIM:613315|Ensembl:ENSG00000229117|HPRD:17999|Vega:OTTHUMG00000170183 12 12q13 ribosomal protein L41 protein-coding RPL41 ribosomal protein L41 O 60S ribosomal protein L41|HG12 protein|homologue of yeast ribosomal protein YL41 20121230 -9606 6172 RPL41P5 - RPL41L HGNC:10355 12 12q22 ribosomal protein L41 pseudogene 5 pseudo RPL41P5 ribosomal protein L41 pseudogene 5 O - 20121230 -9606 6173 RPL36A RP1-164F3.1 L36A|L44L|MIG6|RPL44 HGNC:10359|Ensembl:ENSG00000241343|HPRD:06709|Vega:OTTHUMG00000022027 X Xq22.1 ribosomal protein L36a protein-coding RPL36A ribosomal protein L36a O 60S ribosomal protein L36a|60S ribosomal protein L44|L44-like ribosomal protein|cell growth-inhibiting gene 15 protein|cell migration-inducing gene 6 protein|dJ164F3.3 (ribosomal protein L44) 20121230 -9606 6174 RPL7P - RPL17P|RPL7_11_628 HGNC:10367 5 5q33.3 ribosomal protein L7 pseudogene pseudo RPL7P ribosomal protein L7 pseudogene O - 20121230 -9606 6175 RPLP0 - L10E|LP0|P0|PRLP0|RPP0 HGNC:10371|MIM:180510|Ensembl:ENSG00000089157|HPRD:01610|Vega:OTTHUMG00000169317 12 12q24.2 ribosomal protein, large, P0 protein-coding RPLP0 ribosomal protein, large, P0 O 60S acidic ribosomal protein P0|60S ribosomal protein L10E|acidic ribosomal phosphoprotein P0 20121230 -9606 6176 RPLP1 - LP1|P1|RPP1 HGNC:10372|MIM:180520|Ensembl:ENSG00000137818|HPRD:01611|Vega:OTTHUMG00000172087 15 15q22 ribosomal protein, large, P1 protein-coding RPLP1 ribosomal protein, large, P1 O 60S acidic ribosomal protein P1|acidic ribosomal phosphoprotein P1 20121230 -9606 6181 RPLP2 - D11S2243E|LP2|P2|RPP2 HGNC:10377|MIM:180530|Ensembl:ENSG00000177600|HPRD:01612|Vega:OTTHUMG00000133317 11 11p15.5 ribosomal protein, large, P2 protein-coding RPLP2 ribosomal protein, large, P2 O 60S acidic ribosomal protein P2|acidic ribosomal phosphoprotein P2|renal carcinoma antigen NY-REN-44 20121230 -9606 6182 MRPL12 - 5c5-2|L12mt|MRP-L31/34|MRPL7|MRPL7/L12|RPML12 HGNC:10378|MIM:602375|Ensembl:ENSG00000262814|HPRD:03849|Vega:OTTHUMG00000178171 17 17q25 mitochondrial ribosomal protein L12 protein-coding MRPL12 mitochondrial ribosomal protein L12 O 39S ribosomal protein L12, mitochondrial|MRP-L12 20121230 -9606 6183 MRPS12 - MPR-S12|MT-RPS12|RPMS12|RPS12|RPSM12 HGNC:10380|MIM:603021|Ensembl:ENSG00000128626|HPRD:04316 19 19q13.1-q13.2 mitochondrial ribosomal protein S12 protein-coding MRPS12 mitochondrial ribosomal protein S12 O 28S ribosomal protein S12, mitochondrial|MRP-S12|S12mt 20121230 -9606 6184 RPN1 - OST1|RBPH1 HGNC:10381|MIM:180470|Ensembl:ENSG00000163902|HPRD:01598|Vega:OTTHUMG00000159691 3 3q21.3 ribophorin I protein-coding RPN1 ribophorin I O RPN-I|dolichyl-diphosphooligosaccharide--protein glycosyltransferase 67 kDa subunit|dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1|dolichyl-diphosphooligosaccharide-protein glycosyltransferase 67 kDa subunit|oligosaccharyltransferase 1 homolog|ribophorin-1 20121230 -9606 6185 RPN2 RP3-343K2.2 RIBIIR|RPN-II|RPNII|SWP1 HGNC:10382|MIM:180490|Ensembl:ENSG00000118705|HPRD:01609|Vega:OTTHUMG00000032409 20 20q12-q13.1 ribophorin II protein-coding RPN2 ribophorin II O dolichyl-diphosphooligosaccharide--protein glycosyltransferase 63 kDa subunit|dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2|ribophorin-2 20121230 -9606 6187 RPS2 - LLREP3|S2 HGNC:10404|MIM:603624|Ensembl:ENSG00000140988|HPRD:04690|Vega:OTTHUMG00000128708 16 16p13.3 ribosomal protein S2 protein-coding RPS2 ribosomal protein S2 O 40S ribosomal protein S2|40S ribosomal protein S4|OK/KNS-cl.6|protein LLRep3 20121230 -9606 6188 RPS3 OK/SW-cl.26 S3 HGNC:10420|MIM:600454|Ensembl:ENSG00000149273|HPRD:10941|Vega:OTTHUMG00000165448 11 11q13.3-q13.5 ribosomal protein S3 protein-coding RPS3 ribosomal protein S3 O 40S ribosomal protein S3|IMR-90 ribosomal protein S3 20121230 -9606 6189 RPS3A - FTE1|MFTL|S3A HGNC:10421|MIM:180478|Ensembl:ENSG00000145425|HPRD:01606|Vega:OTTHUMG00000161445 4 4q31.2-q31.3 ribosomal protein S3A protein-coding RPS3A ribosomal protein S3A O 40S ribosomal protein S3a|fte-1|v-fos transformation effector protein 1 20121230 -9606 6191 RPS4X - CCG2|DXS306|RPS4|S4|SCAR|SCR10 HGNC:10424|MIM:312760|Ensembl:ENSG00000198034|HPRD:02427|Vega:OTTHUMG00000021813 X Xq13.1 ribosomal protein S4, X-linked protein-coding RPS4X ribosomal protein S4, X-linked O 40S ribosomal protein S4, X isoform|cell cycle gene 2|ribosomal protein S4X isoform|single copy abundant mRNA protein|single-copy abundant mRNA 20121230 -9606 6192 RPS4Y1 PRO2646 RPS4Y|S4 HGNC:10425|MIM:470000|HPRD:15963 Y Yp11.3 ribosomal protein S4, Y-linked 1 protein-coding RPS4Y1 ribosomal protein S4, Y-linked 1 O 40S ribosomal protein S4, Y|40S ribosomal protein S4, Y isoform 1|ribosomal protein S4Y 20121230 -9606 6193 RPS5 - S5 HGNC:10426|MIM:603630|Ensembl:ENSG00000083845|HPRD:04695 19 19q13.4 ribosomal protein S5 protein-coding RPS5 ribosomal protein S5 O 40S ribosomal protein S5 20121230 -9606 6194 RPS6 RP11-513M16.6 S6 HGNC:10429|MIM:180460|Ensembl:ENSG00000137154|HPRD:01592|Vega:OTTHUMG00000019642 9 9p21 ribosomal protein S6 protein-coding RPS6 ribosomal protein S6 O 40S ribosomal protein S6|phosphoprotein NP33 20121230 -9606 6195 RPS6KA1 RP11-492M19.2 HU-1|MAPKAPK1A|RSK|RSK1 HGNC:10430|MIM:601684|Ensembl:ENSG00000117676|HPRD:03402|Vega:OTTHUMG00000004003 1 1p ribosomal protein S6 kinase, 90kDa, polypeptide 1 protein-coding RPS6KA1 ribosomal protein S6 kinase, 90kDa, polypeptide 1 O 90 kDa ribosomal protein S6 kinase 1|MAP kinase-activated protein kinase 1a|MAPK-activated protein kinase 1a|MAPKAP kinase 1a|MAPKAPK-1a|RSK-1|S6K-alpha 1|S6K-alpha-1|dJ590P13.1 (ribosomal protein S6 kinase, 90kD, polypeptide 1)|p90-RSK 1|p90RSK1|p90S6K|ribosomal S6 kinase 1|ribosomal protein S6 kinase alpha 1|ribosomal protein S6 kinase alpha-1 20121230 -9606 6196 RPS6KA2 RP1-168L15.2 HU-2|MAPKAPK1C|RSK|RSK3|S6K-alpha|S6K-alpha2|p90-RSK3|pp90RSK3 HGNC:10431|MIM:601685|Ensembl:ENSG00000071242|HPRD:03403|Vega:OTTHUMG00000016007 6 6q27 ribosomal protein S6 kinase, 90kDa, polypeptide 2 protein-coding RPS6KA2 ribosomal protein S6 kinase, 90kDa, polypeptide 2 O 90 kDa ribosomal protein S6 kinase 2|MAP kinase-activated protein kinase 1c|MAPK-activated protein kinase 1c|MAPKAP kinase 1c|MAPKAPK-1c|RSK-3|S6K-alpha-2|p90-RSK 2|p90RSK2|ribosomal S6 kinase 3|ribosomal protein S6 kinase alpha 2|ribosomal protein S6 kinase alpha-2 20121230 -9606 6197 RPS6KA3 RP11-393H10.3 CLS|HU-3|ISPK-1|MAPKAPK1B|MRX19|RSK|RSK2|S6K-alpha3|p90-RSK2|pp90RSK2 HGNC:10432|MIM:300075|Ensembl:ENSG00000177189|HPRD:02092|Vega:OTTHUMG00000021231 X Xp22.2-p22.1 ribosomal protein S6 kinase, 90kDa, polypeptide 3 protein-coding RPS6KA3 ribosomal protein S6 kinase, 90kDa, polypeptide 3 O MAP kinase-activated protein kinase 1b|MAPK-activated protein kinase 1b|MAPKAP kinase 1b|MAPKAPK-1b|RSK-2|S6K-alpha-3|insulin-stimulated protein kinase 1|p90-RSK 3|ribosomal S6 kinase 2|ribosomal protein S6 kinase alpha-3 20121230 -9606 6198 RPS6KB1 - PS6K|S6K|S6K1|STK14A|p70(S6K)-alpha|p70-S6K|p70-alpha HGNC:10436|MIM:608938|Ensembl:ENSG00000108443|HPRD:10202|Vega:OTTHUMG00000150642 17 17q23.1 ribosomal protein S6 kinase, 70kDa, polypeptide 1 protein-coding RPS6KB1 ribosomal protein S6 kinase, 70kDa, polypeptide 1 O P70S6K1|S6K-beta-1|p70 S6KA|ribosomal protein S6 kinase beta-1|serine/threonine kinase 14 alpha|serine/threonine-protein kinase 14A 20121230 -9606 6199 RPS6KB2 - KLS|P70-beta|P70-beta-1|P70-beta-2|S6K-beta2|S6K2|SRK|STK14B|p70(S6K)-beta|p70S6Kb HGNC:10437|MIM:608939|Ensembl:ENSG00000175634|HPRD:10203|Vega:OTTHUMG00000167673 11 11q13.2 ribosomal protein S6 kinase, 70kDa, polypeptide 2 protein-coding RPS6KB2 ribosomal protein S6 kinase, 70kDa, polypeptide 2 O 70 kDa ribosomal protein S6 kinase 2|P70S6K2|S6 kinase-related kinase|S6K-beta|S6K-beta-2|p70 S6 kinase beta|p70 S6K-beta|p70 S6KB|p70 ribosomal S6 kinase beta|p70-S6K 2|ribosomal protein S6 kinase beta-2|serine/threonine-protein kinase 14 beta|serine/threonine-protein kinase 14B 20121230 -9606 6200 RPS6KB3 - 70kD HGNC:10438 - - ribosomal protein S6 kinase, 70kDa, polypeptide 3 protein-coding RPS6KB3 ribosomal protein S6 kinase, 70kDa, polypeptide 3 O polypeptide 3 20090811 -9606 6201 RPS7 - DBA8|S7 HGNC:10440|MIM:603658|Ensembl:ENSG00000171863|HPRD:04712|Vega:OTTHUMG00000090305 2 2p25 ribosomal protein S7 protein-coding RPS7 ribosomal protein S7 O 40S ribosomal protein S7 20121230 -9606 6202 RPS8 RP11-269F19.3 S8 HGNC:10441|MIM:600357|Ensembl:ENSG00000142937|HPRD:15969|Vega:OTTHUMG00000008494 1 1p34.1-p32 ribosomal protein S8 protein-coding RPS8 ribosomal protein S8 O 40S ribosomal protein S8|OK/SW-cl.83 20121230 -9606 6203 RPS9 XXbac-BCX105G6.6 S9 HGNC:10442|MIM:603631|Ensembl:ENSG00000170889|HPRD:04696|Vega:OTTHUMG00000066618 19 19q13.4 ribosomal protein S9 protein-coding RPS9 ribosomal protein S9 O 40S ribosomal protein S9 20121230 -9606 6204 RPS10 RP11-375E1__A.4 DBA9|S10 HGNC:10383|MIM:603632|Ensembl:ENSG00000124614|HPRD:04697|Vega:OTTHUMG00000014546 6 6p21.31 ribosomal protein S10 protein-coding RPS10 ribosomal protein S10 O 40S ribosomal protein S10 20121230 -9606 6205 RPS11 - S11 HGNC:10384|MIM:180471|Ensembl:ENSG00000142534|HPRD:01599 19 19q13.3 ribosomal protein S11 protein-coding RPS11 ribosomal protein S11 O 40S ribosomal protein S11 20121230 -9606 6206 RPS12 - S12 HGNC:10385|MIM:603660|Ensembl:ENSG00000112306|HPRD:04714|Vega:OTTHUMG00000015593 6 6q23.2 ribosomal protein S12 protein-coding RPS12 ribosomal protein S12 O 40S ribosomal protein S12 20121230 -9606 6207 RPS13 - S13 HGNC:10386|MIM:180476|Ensembl:ENSG00000110700|HPRD:01604|Vega:OTTHUMG00000165988 11 11p15 ribosomal protein S13 protein-coding RPS13 ribosomal protein S13 O 40S ribosomal protein S13 20121230 -9606 6208 RPS14 PRO2640 EMTB|S14 HGNC:10387|MIM:130620|Ensembl:ENSG00000164587|HPRD:00562|Vega:OTTHUMG00000130080 5 5q31-q33 ribosomal protein S14 protein-coding RPS14 ribosomal protein S14 O 40S ribosomal protein S14|emetine resistance 20121230 -9606 6209 RPS15 - RIG|S15 HGNC:10388|MIM:180535|Ensembl:ENSG00000115268|HPRD:01613|Vega:OTTHUMG00000140099 19 19p13.3 ribosomal protein S15 protein-coding RPS15 ribosomal protein S15 O 40S ribosomal protein S15|homolog of rat insulinoma|insulinoma protein 20121230 -9606 6210 RPS15A OK/SW-cl.82 S15a HGNC:10389|MIM:603674|Ensembl:ENSG00000134419|HPRD:04723|Vega:OTTHUMG00000131365 16 16p ribosomal protein S15a protein-coding RPS15A ribosomal protein S15a O 40S ribosomal protein S15a|up-regulated by HBV X protein 20121230 -9606 6217 RPS16 - S16 HGNC:10396|MIM:603675|Ensembl:ENSG00000105193|HPRD:04724 19 19q13.1 ribosomal protein S16 protein-coding RPS16 ribosomal protein S16 O 40S ribosomal protein S16 20121230 -9606 6218 RPS17 - DBA4|RPS17L|RPS17L1|RPS17L2|S17 HGNC:10397|MIM:180472|Ensembl:ENSG00000184779|HPRD:01600|Vega:OTTHUMG00000172543 15 15q ribosomal protein S17 protein-coding RPS17 ribosomal protein S17 O 40S ribosomal protein S17 20121222 -9606 6219 RPS17P2 - RPS17A|RPS17L1|RPS17_5_604 HGNC:10398 5 5q23.1 ribosomal protein S17 pseudogene 2 pseudo RPS17P2 ribosomal protein S17 pseudogene 2 O - 20121230 -9606 6222 RPS18 DADB-159G18.1 D6S218E|HKE3|KE-3|KE3|S18 HGNC:10401|MIM:180473|Ensembl:ENSG00000231500|HPRD:01601|Vega:OTTHUMG00000031053 6 6p21.3 ribosomal protein S18 protein-coding RPS18 ribosomal protein S18 O 40S ribosomal protein S18|rhabdomyosarcoma antigen MU-RMS-40.21 20121230 -9606 6223 RPS19 - DBA|DBA1|S19 HGNC:10402|MIM:603474|Ensembl:ENSG00000105372|HPRD:04591 19 19q13.2 ribosomal protein S19 protein-coding RPS19 ribosomal protein S19 O 40S ribosomal protein S19 20121230 -9606 6224 RPS20 - S20 HGNC:10405|MIM:603682|Ensembl:ENSG00000008988|HPRD:04728|Vega:OTTHUMG00000164297 8 8q12 ribosomal protein S20 protein-coding RPS20 ribosomal protein S20 O 40S ribosomal protein S20 20121230 -9606 6225 RPS20P3 - RPS20A|RPS20_8_599 HGNC:10406|MIM:180463 5 5q21.3 ribosomal protein S20 pseudogene 3 pseudo RPS20P3 ribosomal protein S20 pseudogene 3 O - 20121230 -9606 6226 RPS20P4 - RPS20B|RPS20_6_627 HGNC:10407|MIM:180464 5 5q33-qter ribosomal protein S20 pseudogene 4 pseudo RPS20P4 ribosomal protein S20 pseudogene 4 O - 20121230 -9606 6227 RPS21 RP5-908M14.8 S21 HGNC:10409|MIM:180477|Ensembl:ENSG00000171858|HPRD:01605|Vega:OTTHUMG00000032915 20 20q13.3 ribosomal protein S21 protein-coding RPS21 ribosomal protein S21 O 40S ribosomal protein S21|8.2 kDa differentiation factor 20121230 -9606 6228 RPS23 - S23 HGNC:10410|MIM:603683|Ensembl:ENSG00000186468|HPRD:04729|Vega:OTTHUMG00000162557 5 5q14.2 ribosomal protein S23 protein-coding RPS23 ribosomal protein S23 O 40S ribosomal protein S23|homolog of yeast ribosomal protein S28 20121230 -9606 6229 RPS24 RP11-6P10.1 DBA3|S24 HGNC:10411|MIM:602412|Ensembl:ENSG00000138326|HPRD:03877|Vega:OTTHUMG00000018549 10 10q22 ribosomal protein S24 protein-coding RPS24 ribosomal protein S24 O 40S ribosomal protein S24 20121230 -9606 6230 RPS25 - S25 HGNC:10413|MIM:180465|Ensembl:ENSG00000118181|HPRD:01593|Vega:OTTHUMG00000166350 11 11q23.3 ribosomal protein S25 protein-coding RPS25 ribosomal protein S25 O 40S ribosomal protein S25 20121230 -9606 6231 RPS26 RP11-151A6.3 DBA10|S26 HGNC:10414|MIM:603701|Ensembl:ENSG00000197728|HPRD:04743|Vega:OTTHUMG00000170139 12 12q13 ribosomal protein S26 protein-coding RPS26 ribosomal protein S26 O 40S ribosomal protein S26 20121230 -9606 6232 RPS27 RP11-422P24.3 MPS-1|MPS1|S27 HGNC:10416|MIM:603702|Ensembl:ENSG00000177954|HPRD:04744|Vega:OTTHUMG00000036591 1 1q21 ribosomal protein S27 protein-coding RPS27 ribosomal protein S27 O 40S ribosomal protein S27|metallopan-stimulin 1|metallopanstimulin 1 20121230 -9606 6233 RPS27A - CEP80|S27A|UBA80|UBC|UBCEP1|UBCEP80 HGNC:10417|MIM:191343|Ensembl:ENSG00000143947|HPRD:01878|Vega:OTTHUMG00000151919 2 2p16 ribosomal protein S27a protein-coding RPS27A ribosomal protein S27a O 40S ribosomal protein S27a|ubiquitin C|ubiquitin and ribosomal protein S27a|ubiquitin carboxyl extension protein 80|ubiquitin-40S ribosomal protein S27a|ubiquitin-CEP80 20121230 -9606 6234 RPS28 - S28 HGNC:10418|MIM:603685|Ensembl:ENSG00000233927|HPRD:04731 19 19p13.2 ribosomal protein S28 protein-coding RPS28 ribosomal protein S28 O 40S ribosomal protein S28 20121230 -9606 6235 RPS29 - S29 HGNC:10419|MIM:603633|Ensembl:ENSG00000213741|HPRD:04698|Vega:OTTHUMG00000140272 14 14q ribosomal protein S29 protein-coding RPS29 ribosomal protein S29 O 40S ribosomal protein S29 20121230 -9606 6236 RRAD - RAD|RAD1|REM3 HGNC:10446|MIM:179503|Ensembl:ENSG00000166592|HPRD:01536|Vega:OTTHUMG00000137511 16 16q22 Ras-related associated with diabetes protein-coding RRAD Ras-related associated with diabetes O GTP-binding protein RAD|RAS (RAD and GEM) like GTP binding 3|ras associated with diabetes 20121230 -9606 6237 RRAS - - HGNC:10447|MIM:165090|Ensembl:ENSG00000126458|HPRD:01299 19 19q13.3-qter related RAS viral (r-ras) oncogene homolog protein-coding RRAS related RAS viral (r-ras) oncogene homolog O Oncogene RRAS|p23|ras-related protein R-Ras 20121230 -9606 6238 RRBP1 RP11-462D18.3 ES/130|ES130|RRp|hES HGNC:10448|MIM:601418|Ensembl:ENSG00000125844|HPRD:11796|Vega:OTTHUMG00000031945 20 20p12 ribosome binding protein 1 protein-coding RRBP1 ribosome binding protein 1 O 180 kDa ribosome receptor homolog|ES/130-related protein|ribosome binding protein 1 homolog 180kDa (dog)|ribosome receptor protein|ribosome-binding protein 1 20121230 -9606 6239 RREB1 RP11-69L16.1 FINB|HNT|LZ321|RREB-1|Zep-1 HGNC:10449|MIM:602209|Ensembl:ENSG00000124782|HPRD:03733|Vega:OTTHUMG00000014201 6 6p25 ras responsive element binding protein 1 protein-coding RREB1 ras responsive element binding protein 1 O DNA-binding protein|finger protein in nuclear bodies|hindsight homolog|raf-responsive zinc finger protein LZ321|ras-responsive element-binding protein 1|zinc finger motif enhancer binding protein 1|zinc finger motif enhancer-binding protein 1|zinc finger motif-enhancer binding-protein 1 20121230 -9606 6240 RRM1 - R1|RIR1|RR1 HGNC:10451|MIM:180410|Ensembl:ENSG00000167325|HPRD:01588|Vega:OTTHUMG00000133361 11 11p15.5 ribonucleotide reductase M1 protein-coding RRM1 ribonucleotide reductase M1 O ribonucleoside-diphosphate reductase large subunit|ribonucleoside-diphosphate reductase subunit M1|ribonucleotide reductase M1 polypeptide|ribonucleotide reductase, R1 subunit|ribonucleotide reductase, large subunit 20121230 -9606 6241 RRM2 - R2|RR2|RR2M HGNC:10452|MIM:180390|Ensembl:ENSG00000171848|HPRD:01587|Vega:OTTHUMG00000090449 2 2p25-p24 ribonucleotide reductase M2 protein-coding RRM2 ribonucleotide reductase M2 O ribonucleoside-diphosphate reductase subunit M2|ribonucleotide reductase M2 polypeptide|ribonucleotide reductase small chain|ribonucleotide reductase small subunit 20121230 -9606 6242 RTKN - - HGNC:10466|MIM:602288|Ensembl:ENSG00000114993|HPRD:03795|Vega:OTTHUMG00000129955 2 2p13.1 rhotekin protein-coding RTKN rhotekin O - 20121230 -9606 6244 RRM2P2 - - HGNC:10454 1 1q23.3 ribonucleotide reductase M2 polypeptide pseudogene 2 pseudo RRM2P2 ribonucleotide reductase M2 polypeptide pseudogene 2 O - 20121230 -9606 6245 RRM2P3 - - HGNC:10455 X Xp11.4 ribonucleotide reductase M2 polypeptide pseudogene 3 pseudo RRM2P3 ribonucleotide reductase M2 polypeptide pseudogene 3 O - 20121230 -9606 6246 RRM2P4 - - HGNC:10456 X Xq27 ribonucleotide reductase M2 polypeptide pseudogene 4 pseudo RRM2P4 ribonucleotide reductase M2 polypeptide pseudogene 4 O - 20121230 -9606 6247 RS1 RP1-245G19.1 RS|XLRS1 HGNC:10457|MIM:300839|Ensembl:ENSG00000102104|HPRD:02426|Vega:OTTHUMG00000021216 X Xp22.13 retinoschisin 1 protein-coding RS1 retinoschisin 1 O X-linked juvenile retinoschisis protein|retinoschisin 20121230 -9606 6248 RSC1A1 - RS1 HGNC:10458|MIM:601966|Ensembl:ENSG00000215695|HPRD:15994|Vega:OTTHUMG00000067830 1 1p36.1 regulatory solute carrier protein, family 1, member 1 protein-coding RSC1A1 regulatory solute carrier protein, family 1, member 1 O regulatory solute carrier protein family 1 member 1|transporter regulator RS1 20121230 -9606 6249 CLIP1 - CLIP|CLIP-170|CLIP170|CYLN1|RSN HGNC:10461|MIM:179838|Ensembl:ENSG00000130779|HPRD:01568|Vega:OTTHUMG00000168922 12 12q24.3 CAP-GLY domain containing linker protein 1 protein-coding CLIP1 CAP-GLY domain containing linker protein 1 O CAP-Gly domain-containing linker protein 1|cytoplasmic linker protein 1|cytoplasmic linker protein 170 alpha-2|cytoplasmic linker protein CLIP-170|restin (Reed-Steinberg cell-expressed intermediate filament-associated protein) 20121230 -9606 6251 RSU1 - RSP-1 HGNC:10464|MIM:179555|Ensembl:ENSG00000148484|HPRD:01551|Vega:OTTHUMG00000017740 10 10p13 Ras suppressor protein 1 protein-coding RSU1 Ras suppressor protein 1 O ras suppressor protein 1|ras suppressor protein 1 variant 1|ras suppressor protein 1 variant 2|ras suppressor protein 1 variant 3|rsu-1 20121230 -9606 6252 RTN1 - NSP HGNC:10467|MIM:600865|Ensembl:ENSG00000139970|HPRD:02921|Vega:OTTHUMG00000028947 14 14q23.1 reticulon 1 protein-coding RTN1 reticulon 1 O neuroendocrine-specific protein|reticulon-1 20121230 -9606 6253 RTN2 - NSP2|NSPL1|NSPLI|SPG12 HGNC:10468|MIM:603183|Ensembl:ENSG00000125744|HPRD:04421|Vega:OTTHUMG00000182123 19 19q13.32 reticulon 2 protein-coding RTN2 reticulon 2 O NSP-like protein 1|NSP-like protein I|neuroendocrine-specific protein-like I|reticulon-2 20121230 -9606 6255 RVNP2 - - HGNC:10476 Y - retroviral sequences NP2 unknown RVNP2 retroviral sequences NP2 O - 20090228 -9606 6256 RXRA - NR2B1 HGNC:10477|MIM:180245|Ensembl:ENSG00000186350|HPRD:01577|Vega:OTTHUMG00000020887 9 9q34.3 retinoid X receptor, alpha protein-coding RXRA retinoid X receptor, alpha O nuclear receptor subfamily 2 group B member 1|retinoic acid receptor RXR-alpha|retinoid X nuclear receptor alpha 20121230 -9606 6257 RXRB DADB-100D22.1 DAUDI6|H-2RIIBP|NR2B2|RCoR-1 HGNC:10478|MIM:180246|Ensembl:ENSG00000204231|HPRD:01578|Vega:OTTHUMG00000031298 6 6p21.3 retinoid X receptor, beta protein-coding RXRB retinoid X receptor, beta O MHC class I promoter binding protein|nuclear receptor subfamily 2 group B member 2|retinoic acid receptor RXR-beta 20121230 -9606 6258 RXRG - NR2B3|RXRC HGNC:10479|MIM:180247|Ensembl:ENSG00000143171|HPRD:01579|Vega:OTTHUMG00000034626 1 1q22-q23 retinoid X receptor, gamma protein-coding RXRG retinoid X receptor, gamma O nuclear receptor subfamily 2 group B member 3|retinoic acid receptor RXR-gamma 20121230 -9606 6259 RYK - D3S3195|JTK5|JTK5A|RYK1 HGNC:10481|MIM:600524|Ensembl:ENSG00000163785|HPRD:02751|Vega:OTTHUMG00000159750 3 3q22 receptor-like tyrosine kinase protein-coding RYK receptor-like tyrosine kinase O JTK5A protein tyrosine kinase|hydroxyaryl-protein kinase|tyrosine-protein kinase RYK 20121230 -9606 6260 RYKP1 - JTK5|JTK5B|RYKL1|RYKP HGNC:10482 17 17p13.2 receptor-like tyrosine kinase pseudogene 1 pseudo RYKP1 receptor-like tyrosine kinase pseudogene 1 O - 20121230 -9606 6261 RYR1 - CCO|MHS|MHS1|RYDR|RYR|RYR-1|SKRR HGNC:10483|MIM:180901|Ensembl:ENSG00000196218|HPRD:01618 19 19q13.1 ryanodine receptor 1 (skeletal) protein-coding RYR1 ryanodine receptor 1 (skeletal) O central core disease of muscle|ryanodine receptor 1|ryanodine receptor type1|sarcoplasmic reticulum calcium release channel|skeletal muscle calcium release channel|skeletal muscle ryanodine receptor|type 1 ryanodine receptor|type 1-like ryanodine receptor 20121230 -9606 6262 RYR2 RP4-626J7.1 ARVC2|ARVD2|RYR-2|RyR|VTSIP HGNC:10484|MIM:180902|Ensembl:ENSG00000198626|HPRD:01619|Vega:OTTHUMG00000039543 1 1q43 ryanodine receptor 2 (cardiac) protein-coding RYR2 ryanodine receptor 2 (cardiac) O cardiac muscle ryanodine receptor-calcium release channel|cardiac-type ryanodine receptor|islet-type ryanodine receptor|kidney-type ryanodine receptor|ryanodine receptor 2|type 2 ryanodine receptor 20121230 -9606 6263 RYR3 - - HGNC:10485|MIM:180903|Ensembl:ENSG00000198838|HPRD:01620|Vega:OTTHUMG00000172253 15 15q14-q15 ryanodine receptor 3 protein-coding RYR3 ryanodine receptor 3 O RYR-3|brain ryanodine receptor-calcium release channel|brain-type ryanodine receptor|type 3 ryanodine receptor 20121230 -9606 6264 S7 - SA7-2 HGNC:10509 7 - surface antigen (chromosome 7) 2 protein-coding S7 surface antigen (chromosome 7) 2 O - 20110624 -9606 6267 S11 - - HGNC:10505 X Xq26-q28 surface antigen (X-linked) 2 protein-coding S11 surface antigen (X-linked) 2 O - 20080828 -9606 6268 S12 - - HGNC:10506 X - surface antigen (X-linked) 3 protein-coding S12 surface antigen (X-linked) 3 O - 20080828 -9606 6271 S100A1 RP1-178F15.1 S100|S100-alpha|S100A HGNC:10486|MIM:176940|Ensembl:ENSG00000160678|HPRD:01489|Vega:OTTHUMG00000037041 1 1q21 S100 calcium binding protein A1 protein-coding S100A1 S100 calcium binding protein A1 O S-100 protein alpha chain|S-100 protein subunit alpha|S100 alpha|S100 calcium-binding protein A1|S100 protein, alpha polypeptide|protein S100-A1 20121230 -9606 6272 SORT1 - Gp95|LDLCQ6|NT3 HGNC:11186|MIM:602458|Ensembl:ENSG00000134243|HPRD:03910|Vega:OTTHUMG00000011999 1 1p13.3|1p21.3-p13.1 sortilin 1 protein-coding SORT1 sortilin 1 O 100 kDa NT receptor|NTR3|glycoprotein 95|neurotensin receptor 3|sortilin 20121230 -9606 6273 S100A2 RP11-49N14.8 CAN19|S100L HGNC:10492|MIM:176993|Ensembl:ENSG00000196754|HPRD:01508|Vega:OTTHUMG00000035031 1 1q21 S100 calcium binding protein A2 protein-coding S100A2 S100 calcium binding protein A2 O S100 calcium-binding protein A2|protein S100-A2 20121230 -9606 6274 S100A3 - S100E HGNC:10493|MIM:176992|Ensembl:ENSG00000188015|HPRD:01507|Vega:OTTHUMG00000013550 1 1q21 S100 calcium binding protein A3 protein-coding S100A3 S100 calcium binding protein A3 O S100 calcium-binding protein A3|protein S100-A3 20121230 -9606 6275 S100A4 - 18A2|42A|CAPL|FSP1|MTS1|P9KA|PEL98 HGNC:10494|MIM:114210|Ensembl:ENSG00000196154|HPRD:15914|Vega:OTTHUMG00000013546 1 1q21 S100 calcium binding protein A4 protein-coding S100A4 S100 calcium binding protein A4 O S100 calcium-binding protein A4 (calcium protein, calvasculin, metastasin, murine placental homolog)|fibroblast-specific protein-1|leukemia multidrug resistance associated protein|malignant transformation suppression 1|placental calcium-binding protein|protein Mts1|protein S100-A4 20121230 -9606 6276 S100A5 - S100D HGNC:10495|MIM:176991|Ensembl:ENSG00000196420|HPRD:01506|Vega:OTTHUMG00000013547 1 1q21 S100 calcium binding protein A5 protein-coding S100A5 S100 calcium binding protein A5 O S100 calcium-binding protein A5|protein S100-A5 20121230 -9606 6277 S100A6 - 2A9|5B10|CABP|CACY|PRA HGNC:10496|MIM:114110|Ensembl:ENSG00000197956|HPRD:00237|Vega:OTTHUMG00000013549 1 1q21 S100 calcium binding protein A6 protein-coding S100A6 S100 calcium binding protein A6 O MLN 4|S100 calcium-binding protein A6 (calcyclin)|calcyclin|growth factor-inducible protein 2A9|prolactin receptor-associated protein|protein S100-A6 20121230 -9606 6278 S100A7 - PSOR1|S100A7c HGNC:10497|MIM:600353|Ensembl:ENSG00000143556|HPRD:02645|Vega:OTTHUMG00000013123 1 1q21 S100 calcium binding protein A7 protein-coding S100A7 S100 calcium binding protein A7 O S100 calcium-binding protein A7 (psoriasin 1)|protein S100-A7|psoriasin 1 20121230 -9606 6279 S100A8 - 60B8AG|CAGA|CFAG|CGLA|CP-10|L1Ag|MA387|MIF|MRP8|NIF|P8 HGNC:10498|MIM:123885|Ensembl:ENSG00000143546|HPRD:00471|Vega:OTTHUMG00000013124 1 1q21 S100 calcium binding protein A8 protein-coding S100A8 S100 calcium binding protein A8 O MRP-8|S100 calcium-binding protein A8 (calgranulin A)|calgranulin A|calgranulin-A|calprotectin L1L subunit|cystic fibrosis antigen|leukocyte L1 complex light chain|migration inhibitory factor-related protein 8|protein S100-A8|urinary stone protein band A 20121230 -9606 6280 S100A9 - 60B8AG|CAGB|CFAG|CGLB|L1AG|LIAG|MAC387|MIF|MRP14|NIF|P14 HGNC:10499|MIM:123886|Ensembl:ENSG00000163220|HPRD:00472|Vega:OTTHUMG00000013125 1 1q21 S100 calcium binding protein A9 protein-coding S100A9 S100 calcium binding protein A9 O MRP-14|S100 calcium-binding protein A9 (calgranulin B)|calgranulin B|calgranulin-B|calprotectin L1H subunit|leukocyte L1 complex heavy chain|migration inhibitory factor-related protein 14|protein S100-A9 20121230 -9606 6281 S100A10 - 42C|ANX2L|ANX2LG|CAL1L|CLP11|Ca[1]|GP11|P11|p10 HGNC:10487|MIM:114085|Ensembl:ENSG00000197747|HPRD:00232|Vega:OTTHUMG00000013068 1 1q21 S100 calcium binding protein A10 protein-coding S100A10 S100 calcium binding protein A10 O S100 calcium binding protein A10 (annexin II ligand, calpactin I, light polypeptide (p11))|S100 calcium-binding protein A10 (annexin II ligand, calpactin I, light polypeptide (p11))|annexin II ligand, calpactin I, light polypeptide|annexin II tetramer (AIIt) p11 subunit|calpactin I light chain|calpactin-1 light chain|cellular ligand of annexin II|protein S100-A10 20121230 -9606 6282 S100A11 - MLN70|S100C HGNC:10488|MIM:603114|Ensembl:ENSG00000163191|HPRD:04385|Vega:OTTHUMG00000013069 1 1q21 S100 calcium binding protein A11 protein-coding S100A11 S100 calcium binding protein A11 O MLN 70|S100 calcium-binding protein A11 (calgizzarin)|calgizzarin|metastatic lymph node gene 70 protein|protein S100-A11|protein S100-C 20121230 -9606 6283 S100A12 - CAAF1|CAGC|CGRP|ENRAGE|MRP-6|MRP6|p6 HGNC:10489|MIM:603112|Ensembl:ENSG00000163221|HPRD:04383|Vega:OTTHUMG00000013127 1 1q21 S100 calcium binding protein A12 protein-coding S100A12 S100 calcium binding protein A12 O EN-RAGE|S100 calcium-binding protein A12 (calgranulin C)|calcium-binding protein in amniotic fluid 1|calgranulin C|calgranulin-C|extracellular newly identified RAGE-binding protein|migration inhibitory factor-related protein 6|neutrophil S100 protein|protein S100-A12 20121230 -9606 6284 S100A13 - - HGNC:10490|MIM:601989|Ensembl:ENSG00000189171|HPRD:03586 1 1q21 S100 calcium binding protein A13 protein-coding S100A13 S100 calcium binding protein A13 O S100 calcium-binding protein A13|protein S100-A13 20121230 -9606 6285 S100B - NEF|S100|S100-B|S100beta HGNC:10500|MIM:176990|Ensembl:ENSG00000160307|HPRD:01505|Vega:OTTHUMG00000090715 21 21q22.3 S100 calcium binding protein B protein-coding S100B S100 calcium binding protein B O S-100 calcium-binding protein, beta chain|S-100 protein subunit beta|S100 calcium-binding protein, beta (neural)|protein S100-B 20121230 -9606 6286 S100P - MIG9 HGNC:10504|MIM:600614|Ensembl:ENSG00000163993|HPRD:02792|Vega:OTTHUMG00000090491 4 4p16 S100 calcium binding protein P protein-coding S100P S100 calcium binding protein P O S100 calcium-binding protein P|migration-inducing gene 9|protein S100-E|protein S100-P 20121230 -9606 6287 SAA@ - SAA|SAA4 HGNC:10512 11 11p serum amyloid A1 cluster other SAA@ serum amyloid A1 cluster O - 20110116 -9606 6288 SAA1 - PIG4|SAA|SAA2|TP53I4 HGNC:10513|MIM:104750|Ensembl:ENSG00000173432|HPRD:00097|Vega:OTTHUMG00000166147 11 11p15.1 serum amyloid A1 protein-coding SAA1 serum amyloid A1 O serum amyloid A protein|serum amyloid A-1 protein|tumor protein p53 inducible protein 4 20121230 -9606 6289 SAA2 - - HGNC:10514|MIM:104751|Ensembl:ENSG00000134339|HPRD:00098|Vega:OTTHUMG00000166484 11 11p15.1-p14 serum amyloid A2 protein-coding SAA2 serum amyloid A2 O serum amyloid A-2 protein 20121230 -9606 6290 SAA3P - SAA3 HGNC:10515 11 11p15.1-p14 serum amyloid A3 pseudogene pseudo SAA3P serum amyloid A3 pseudogene O - 20121230 -9606 6291 SAA4 - C-SAA|CSAA HGNC:10516|MIM:104752|Ensembl:ENSG00000148965|HPRD:00099|Vega:OTTHUMG00000166483 11 11p15.1-p14 serum amyloid A4, constitutive protein-coding SAA4 serum amyloid A4, constitutive O constitutively expressed serum amyloid A protein|serum amyloid A-4 protein 20121230 -9606 6293 VPS52 DADB-91M20.1 ARE1|RP5-1033B10|SAC2|SACM2L|dJ1033B10.5 HGNC:10518|MIM:603443|Ensembl:ENSG00000223501|HPRD:09142|Vega:OTTHUMG00000031276 6 6p21.3 vacuolar protein sorting 52 homolog (S. cerevisiae) protein-coding VPS52 vacuolar protein sorting 52 homolog (S. cerevisiae) O SAC2 suppressor of actin mutations 2-like protein|vacuolar protein sorting-associated protein 52 homolog 20121230 -9606 6294 SAFB - HAP|HET|SAF-B1|SAFB1 HGNC:10520|MIM:602895|Ensembl:ENSG00000160633|HPRD:04205|Vega:OTTHUMG00000180502 19 19p13.3-p13.2 scaffold attachment factor B protein-coding SAFB scaffold attachment factor B O HSP27 ERE-TATA-binding protein|HSP27 estrogen response element-TATA box-binding protein|Hsp27 ERE-TATA binding protein|SAB-B1|SAF-B|glutathione S-transferase fusion protein|heat-shock protein (HSP27) estrogen response element and TATA box-binding protein|scaffold attachment factor B1 20121230 -9606 6295 SAG - RP47|S-AG HGNC:10521|MIM:181031|Ensembl:ENSG00000130561|HPRD:01625|Vega:OTTHUMG00000153213 2 2q37.1 S-antigen; retina and pineal gland (arrestin) protein-coding SAG S-antigen; retina and pineal gland (arrestin) O 48 kDa protein|S-arrestin|arrestin 1|retinal S-antigen (48 KDa protein)|rod photoreceptor arrestin 20121230 -9606 6296 ACSM3 - SA|SAH HGNC:10522|MIM:145505|Ensembl:ENSG00000005187|HPRD:07033|Vega:OTTHUMG00000131552 16 16p13.11 acyl-CoA synthetase medium-chain family member 3 protein-coding ACSM3 acyl-CoA synthetase medium-chain family member 3 O SA (rat hypertension-associated) homolog|SA hypertension-associated homolog|acyl-coenzyme A synthetase ACSM3, mitochondrial|butyrate--CoA ligase 3|butyryl-coenzyme A synthetase 3|middle-chain acyl-CoA synthetase 3|protein SA homolog 20121230 -9606 6297 SALL2 - HSAL2|Sal-2|ZNF795|p150(Sal2) HGNC:10526|MIM:602219|Ensembl:ENSG00000165821|HPRD:03743|Vega:OTTHUMG00000168826 14 14q11.1-q12 sal-like 2 (Drosophila) protein-coding SALL2 sal-like 2 (Drosophila) O sal-like protein 2|zinc finger protein 795|zinc finger protein SALL2|zinc finger protein Spalt-2 20121230 -9606 6298 SAI1 - MTS1|TFS1 HGNC:10523|MIM:154280 1 1pter-p22.1 suppression of anchorage independence 1 unknown SAI1 suppression of anchorage independence 1 O - 20080828 -9606 6299 SALL1 - HSAL1|Sal-1|TBS|ZNF794 HGNC:10524|MIM:602218|Ensembl:ENSG00000103449|HPRD:03742|Vega:OTTHUMG00000133176 16 16q12.1 sal-like 1 (Drosophila) protein-coding SALL1 sal-like 1 (Drosophila) O sal-like protein 1|spalt-like transcription factor 1|zinc finger protein 794|zinc finger protein SALL1|zinc finger protein Spalt-1 20121230 -9606 6300 MAPK12 - ERK3|ERK6|P38GAMMA|PRKM12|SAPK-3|SAPK3 HGNC:6874|MIM:602399|Ensembl:ENSG00000188130|HPRD:03868|Vega:OTTHUMG00000030145 22 22q13.33 mitogen-activated protein kinase 12 protein-coding MAPK12 mitogen-activated protein kinase 12 O ERK-6|MAP kinase 12|MAP kinase p38 gamma|MAPK 12|extracellular signal-regulated kinase 6|mitogen-activated protein kinase 3|mitogen-activated protein kinase p38 gamma|stress-activated protein kinase 3 20121230 -9606 6301 SARS RP11-352P4.2 SERRS|SERS HGNC:10537|MIM:607529|Ensembl:ENSG00000031698|HPRD:09605|Vega:OTTHUMG00000011726 1 1p13.3 seryl-tRNA synthetase protein-coding SARS seryl-tRNA synthetase O Seryl-tRNA Ser/Sec synthetase|serine tRNA ligase 1, cytoplasmic|serine--tRNA ligase, cytoplasmic|seryl-tRNA synthetase, cytoplasmic|seryl-tRNA(Ser/Sec) synthetase 20121230 -9606 6302 TSPAN31 - SAS HGNC:10539|MIM:181035|Ensembl:ENSG00000135452|HPRD:01626|Vega:OTTHUMG00000170381 12 12q13.3 tetraspanin 31 protein-coding TSPAN31 tetraspanin 31 O sarcoma amplified sequence|sarcoma-amplified sequence|tetraspanin-31|transmembrane 4 protein|tspan-31 20121230 -9606 6303 SAT1 - DC21|KFSD|KFSDX|SAT|SSAT|SSAT-1 HGNC:10540|MIM:313020|Ensembl:ENSG00000130066|HPRD:02431|Vega:OTTHUMG00000021256 X Xp22.1 spermidine/spermine N1-acetyltransferase 1 protein-coding SAT1 spermidine/spermine N1-acetyltransferase 1 O diamine N-acetyltransferase 1|diamine acetyltransferase 1|polyamine N-acetyltransferase 1|putrescine acetyltransferase|spermidine/spermine N(1)-acetyltransferase 1|spermidine/spermine N1-acetyltransferase alpha 20121230 -9606 6304 SATB1 - - HGNC:10541|MIM:602075|Ensembl:ENSG00000182568|HPRD:03647|Vega:OTTHUMG00000129890 3 3p23 SATB homeobox 1 protein-coding SATB1 SATB homeobox 1 O DNA-binding protein SATB1|special AT-rich sequence binding protein 1 (binds to nuclear matrix/scaffold-associating DNA)|special AT-rich sequence-binding protein 1 20121230 -9606 6305 SBF1 C22:RP4-579N16.2 DENND7A|MTMR5 HGNC:10542|MIM:603560|Ensembl:ENSG00000100241|HPRD:06788|Vega:OTTHUMG00000150204 22 22q13.33 SET binding factor 1 protein-coding SBF1 SET binding factor 1 O DENN/MADD domain containing 7A|SET-binding factor 1|myotubularin related 5|myotubularin-related protein 5 20121230 -9606 6307 MSMO1 - DESP4|ERG25|SC4MOL HGNC:10545|MIM:607545|Ensembl:ENSG00000052802|HPRD:07396|Vega:OTTHUMG00000161126 4 4q32-q34 methylsterol monooxygenase 1 protein-coding MSMO1 methylsterol monooxygenase 1 O C-4 methyl sterol|C-4 methylsterol oxidase 20121230 -9606 6308 SC4MOP - DESP4P1 HGNC:10546 X Xp21.1 sterol-C4-methyl oxidase pseudogene pseudo SC4MOP sterol-C4-methyl oxidase pseudogene O - 20121230 -9606 6309 SC5DL - ERG3|S5DES|SC5D HGNC:10547|MIM:602286|Ensembl:ENSG00000109929|HPRD:09078|Vega:OTTHUMG00000166068 11 11q23.3 sterol-C5-desaturase (ERG3 delta-5-desaturase homolog, S. cerevisiae)-like protein-coding SC5DL sterol-C5-desaturase (ERG3 delta-5-desaturase homolog, S. cerevisiae)-like O 3beta-hydroxysteroid-delta5-desaturase|C-5 sterol desaturase|delta(7)-sterol 5-desaturase|fungal ERG3, delta-5-desaturase-like|lathosterol 5-desaturase|lathosterol dehydrogenase|lathosterol oxidase 20121230 -9606 6310 ATXN1 - ATX1|D6S504E|SCA1 HGNC:10548|MIM:601556|Ensembl:ENSG00000124788|HPRD:03333|Vega:OTTHUMG00000014303 6 6p23 ataxin 1 protein-coding ATXN1 ataxin 1 O ataxin-1|spinocerebellar ataxia type 1 protein 20121230 -9606 6311 ATXN2 - ASL13|ATX2|SCA2|TNRC13 HGNC:10555|MIM:601517|Ensembl:ENSG00000204842|HPRD:03307|Vega:OTTHUMG00000133475 12 12q24.1 ataxin 2 protein-coding ATXN2 ataxin 2 O ataxin-2|spinocerebellar ataxia type 2 protein|trinucleotide repeat containing 13|trinucleotide repeat-containing gene 13 protein 20121230 -9606 6314 ATXN7 - ADCAII|OPCA3|SCA7 HGNC:10560|MIM:607640|Ensembl:ENSG00000163635|HPRD:06365|Vega:OTTHUMG00000158763 3 3p21.1-p12 ataxin 7 protein-coding ATXN7 ataxin 7 O ataxin-7|spinocerebellar ataxia type 7 protein 20121230 -9606 6315 ATXN8OS - KLHL1AS|NCRNA00003|SCA8 HGNC:10561|MIM:603680 13 13q21 ATXN8 opposite strand (non-protein coding) miscRNA ATXN8OS ATXN8 opposite strand (non-protein coding) O - 20121230 -9606 6317 SERPINB3 - HsT1196|SCC|SCCA-1|SCCA-PD|SCCA1|T4-A HGNC:10569|MIM:600517|Ensembl:ENSG00000057149|HPRD:02745|Vega:OTTHUMG00000060403 18 18q21.3 serpin peptidase inhibitor, clade B (ovalbumin), member 3 protein-coding SERPINB3 serpin peptidase inhibitor, clade B (ovalbumin), member 3 O protein T4-A|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 3|serpin B3|squamous cell carcinoma antigen 1 20121230 -9606 6318 SERPINB4 - LEUPIN|PI11|SCCA-2|SCCA1|SCCA2 HGNC:10570|MIM:600518|Ensembl:ENSG00000206073|HPRD:02746|Vega:OTTHUMG00000060405 18 18q21.3 serpin peptidase inhibitor, clade B (ovalbumin), member 4 protein-coding SERPINB4 serpin peptidase inhibitor, clade B (ovalbumin), member 4 O PI-11|SCCA2/SCCA1 fusion protein|peptidase inhibitor 11|protease inhibitor (leucine-serpin)|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 4|serpin B4|squamous cell carcinoma antigen 1|squamous cell carcinoma antigen 2 20121230 -9606 6319 SCD PRO1933 FADS5|MSTP008|SCD1|SCDOS HGNC:10571|MIM:604031|Ensembl:ENSG00000099194|HPRD:04941|Vega:OTTHUMG00000018906 10 10q24.31 stearoyl-CoA desaturase (delta-9-desaturase) protein-coding SCD stearoyl-CoA desaturase (delta-9-desaturase) O acyl-CoA desaturase|delta(9)-desaturase|delta-9 desaturase|delta-9-desaturase|fatty acid desaturase|predicted protein of HQ0998|stearoyl-CoA desaturase opposite strand 20121230 -9606 6320 CLEC11A - CLECSF3|LSLCL|P47|SCGF HGNC:10576|MIM:604713|Ensembl:ENSG00000105472|HPRD:05277 19 19q13.3 C-type lectin domain family 11, member A protein-coding CLEC11A C-type lectin domain family 11, member A O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 3|C-type lectin domain family 11 member A|C-type lectin superfamily member 3|lymphocyte secreted C-type lectin|lymphocyte secreted long form of C-type lectin|stem cell growth factor|stem cell growth factor; lymphocyte secreted C-type lectin 20121230 -9606 6322 SCML1 RP3-389A20.1 - HGNC:10580|MIM:300227|Ensembl:ENSG00000047634|HPRD:02205|Vega:OTTHUMG00000021206 X Xp22 sex comb on midleg-like 1 (Drosophila) protein-coding SCML1 sex comb on midleg-like 1 (Drosophila) O sex comb on midleg-like protein 1 20121230 -9606 6323 SCN1A - EIEE6|FEB3|FEB3A|FHM3|GEFSP2|HBSCI|NAC1|Nav1.1|SCN1|SMEI HGNC:10585|MIM:182389|Ensembl:ENSG00000144285|HPRD:01669|Vega:OTTHUMG00000044173 2 2q24.3 sodium channel, voltage-gated, type I, alpha subunit protein-coding SCN1A sodium channel, voltage-gated, type I, alpha subunit O sodium channel protein type 1 subunit alpha|sodium channel protein type I subunit alpha|sodium channel protein, brain I alpha subunit|sodium channel voltage gated type 1 alpha subunit|sodium channel, voltage-gated, type I, alpha polypeptide|voltage-gated sodium channel subunit alpha Nav1.1 20121230 -9606 6324 SCN1B - GEFSP1 HGNC:10586|MIM:600235|Ensembl:ENSG00000105711|HPRD:02581 19 19q13.1 sodium channel, voltage-gated, type I, beta subunit protein-coding SCN1B sodium channel, voltage-gated, type I, beta subunit O sodium channel beta-1 subunit|sodium channel subunit beta-1 20121230 -9606 6326 SCN2A - BFIC3|BFIS3|BFNIS|EIEE11|HBA|HBSCI|HBSCII|NAC2|Na(v)1.2|Nav1.2|SCN2A1|SCN2A2 HGNC:10588|MIM:182390|Ensembl:ENSG00000136531|HPRD:03133|Vega:OTTHUMG00000044172 2 2q24.3 sodium channel, voltage-gated, type II, alpha subunit protein-coding SCN2A sodium channel, voltage-gated, type II, alpha subunit O HBSC II|sodium channel protein brain II subunit alpha|sodium channel protein type 2 subunit alpha|sodium channel protein type II subunit alpha|sodium channel protein, brain type 2 alpha subunit|sodium channel, voltage-gated, type II, alpha 1 polypeptide|sodium channel, voltage-gated, type II, alpha 2 polypeptide|voltage-gated sodium channel subtype II|voltage-gated sodium channel subunit alpha Nav1.2 20121230 -9606 6327 SCN2B UNQ326/PRO386 - HGNC:10589|MIM:601327|Ensembl:ENSG00000149575|HPRD:03208|Vega:OTTHUMG00000048248 11 11q23 sodium channel, voltage-gated, type II, beta subunit protein-coding SCN2B sodium channel, voltage-gated, type II, beta subunit O neuronal voltage-gated sodium channel beta 2 subunit|sodium channel beta 2 subunit|sodium channel subunit beta-2|sodium channel, voltage-gated, type II, beta polypeptide 20121230 -9606 6328 SCN3A - NAC3|Nav1.3 HGNC:10590|MIM:182391|Ensembl:ENSG00000153253|HPRD:01671|Vega:OTTHUMG00000044171 2 2q24 sodium channel, voltage-gated, type III, alpha subunit protein-coding SCN3A sodium channel, voltage-gated, type III, alpha subunit O brain III voltage-gated sodium channel|sodium channel protein brain III subunit alpha|sodium channel protein type 3 subunit alpha|sodium channel protein type III subunit alpha|sodium channel, voltage-gated, type III, alpha polypeptide|voltage-gated sodium channel subtype III|voltage-gated sodium channel subunit alpha Nav1.3 20121230 -9606 6329 SCN4A - HOKPP2|HYKPP|HYPP|NAC1A|Na(V)1.4|Nav1.4|SkM1 HGNC:10591|MIM:603967|Ensembl:ENSG00000007314|HPRD:04912|Vega:OTTHUMG00000179046 17 17q23.3 sodium channel, voltage-gated, type IV, alpha subunit protein-coding SCN4A sodium channel, voltage-gated, type IV, alpha subunit O skeletal muscle voltage-dependent sodium channel type IV alpha subunit|sodium channel protein skeletal muscle subunit alpha|sodium channel protein type 4 subunit alpha|sodium channel protein type IV subunit alpha|voltage-gated sodium channel subunit alpha Nav1.4 20121230 -9606 6330 SCN4B - LQT10|Navbeta4 HGNC:10592|MIM:608256|Ensembl:ENSG00000177098|HPRD:09749|Vega:OTTHUMG00000166994 11 11q23.3 sodium channel, voltage-gated, type IV, beta subunit protein-coding SCN4B sodium channel, voltage-gated, type IV, beta subunit O sodium channel subunit beta-4 20121230 -9606 6331 SCN5A - CDCD2|CMD1E|CMPD2|HB1|HB2|HBBD|HH1|ICCD|IVF|LQT3|Nav1.5|PFHB1|SSS1|VF1 HGNC:10593|MIM:600163|Ensembl:ENSG00000183873|HPRD:02543|Vega:OTTHUMG00000156166 3 3p21 sodium channel, voltage-gated, type V, alpha subunit protein-coding SCN5A sodium channel, voltage-gated, type V, alpha subunit O cardiac tetrodotoxin-insensitive voltage-dependent sodium channel alpha subunit|sodium channel protein cardiac muscle subunit alpha|sodium channel protein type 5 subunit alpha|voltage-gated sodium channel subunit alpha Nav1.5 20121230 -9606 6332 SCN7A - NaG|Nav2.1|Nav2.2|SCN6A HGNC:10594|MIM:182392|Ensembl:ENSG00000136546|HPRD:08355|Vega:OTTHUMG00000154078 2 2q21-q23 sodium channel, voltage-gated, type VII, alpha subunit protein-coding SCN7A sodium channel, voltage-gated, type VII, alpha subunit O putative voltage-gated sodium channel subunit alpha Nax|sodium channel protein cardiac and skeletal muscle subunit alpha|sodium channel protein type 7 subunit alpha|sodium channel protein type VII subunit alpha|sodium channel, voltage-gated, type VI, alpha polypeptide|voltage-dependent sodium channel alpha subunit 20121230 -9606 6334 SCN8A - CERIII|CIAT|EIEE13|MED|NaCh6|Nav1.6|PN4 HGNC:10596|MIM:600702|Ensembl:ENSG00000196876|HPRD:09006|Vega:OTTHUMG00000169490 12 12q13 sodium channel, voltage gated, type VIII, alpha subunit protein-coding SCN8A sodium channel, voltage gated, type VIII, alpha subunit O hNa6/Scn8a voltage-gated sodium channel|sodium channel protein type 8 subunit alpha|voltage-gated sodium channel subunit alpha Nav1.6 20121230 -9606 6335 SCN9A - ETHA|FEB3B|GEFSP7|NE-NA|NENA|Nav1.7|PN1|SFNP HGNC:10597|MIM:603415|Ensembl:ENSG00000169432|HPRD:04565|Vega:OTTHUMG00000154044 2 2q24 sodium channel, voltage-gated, type IX, alpha subunit protein-coding SCN9A sodium channel, voltage-gated, type IX, alpha subunit O hNE-Na|neuroendocrine sodium channel|peripheral sodium channel 1|sodium channel protein type 9 subunit alpha|sodium channel protein type IX subunit alpha|sodium channel, voltage-gated, type IX, alpha polypeptide|voltage-gated sodium channel alpha subunit Nav1.7|voltage-gated sodium channel subunit alpha Nav1.7 20121230 -9606 6336 SCN10A - Nav1.8|PN3|SNS|hPN3 HGNC:10582|MIM:604427|Ensembl:ENSG00000185313|HPRD:09188|Vega:OTTHUMG00000048245 3 3p22.2 sodium channel, voltage-gated, type X, alpha subunit protein-coding SCN10A sodium channel, voltage-gated, type X, alpha subunit O peripheral nerve sodium channel 3|sodium channel protein type 10 subunit alpha|sodium channel protein type X subunit alpha|sodium channel, voltage-gated, type X, alpha polypeptide|voltage-gated sodium channel subunit alpha Nav1.8 20121230 -9606 6337 SCNN1A - BESC2|ENaCa|ENaCalpha|SCNEA|SCNN1 HGNC:10599|MIM:600228|Ensembl:ENSG00000111319|HPRD:02575|Vega:OTTHUMG00000168268 12 12p13 sodium channel, non-voltage-gated 1 alpha subunit protein-coding SCNN1A sodium channel, non-voltage-gated 1 alpha subunit O alpha ENaC-2|alpha-ENaC|alpha-NaCH|amiloride-sensitive epithelial sodium channel alpha subunit|amiloride-sensitive sodium channel subunit alpha|amiloride-sensitive sodium channel subunit alpha 2|epithelial Na(+) channel subunit alpha|nasal epithelial sodium channel alpha subunit|nonvoltage-gated sodium channel 1 subunit alpha|sodium channel, nonvoltage-gated 1 alpha 20121230 -9606 6338 SCNN1B hCG_23853 BESC1|ENaCb|ENaCbeta|SCNEB HGNC:10600|MIM:600760|Ensembl:ENSG00000168447|HPRD:02861|Vega:OTTHUMG00000131608 16 16p12.2-p12.1 sodium channel, non-voltage-gated 1, beta subunit protein-coding SCNN1B sodium channel, non-voltage-gated 1, beta subunit O amiloride-sensitive sodium channel subunit beta|amiloride-sensitive sodium channel subunit beta 1|beta-ENaC|beta-NaCH|epithelial Na(+) channel subunit beta|epithelial sodium channel beta-2 subunit|epithelial sodium channel beta-3 subunit|nasal epithelial sodium channel beta subunit|nonvoltage-gated sodium channel 1 subunit beta|sodium channel, nonvoltage-gated 1, beta 20121230 -9606 6339 SCNN1D RP5-902P8.9 ENaCd|ENaCdelta|SCNED|dNaCh HGNC:10601|MIM:601328|Ensembl:ENSG00000162572|HPRD:03209|Vega:OTTHUMG00000002081 1 1p36.3-p36.2 sodium channel, non-voltage-gated 1, delta subunit protein-coding SCNN1D sodium channel, non-voltage-gated 1, delta subunit O amiloride-sensitive sodium channel subunit delta|delta-ENaC|delta-NaCH|epithelial Na(+) channel subunit delta|nonvoltage-gated sodium channel 1 subunit delta|sodium channel, nonvoltage-gated 1, delta|sodium channel, voltage-gated, type I, delta polypeptide 20121230 -9606 6340 SCNN1G - BESC3|ENaCg|ENaCgamma|PHA1|SCNEG HGNC:10602|MIM:600761|Ensembl:ENSG00000166828|HPRD:02862|Vega:OTTHUMG00000131609 16 16p12 sodium channel, non-voltage-gated 1, gamma subunit protein-coding SCNN1G sodium channel, non-voltage-gated 1, gamma subunit O ENaC gamma subunit|amiloride-sensitive epithelial sodium channel gamma subunit|amiloride-sensitive sodium channel gamma-subunit|amiloride-sensitive sodium channel subunit gamma|epithelial Na(+) channel subunit gamma|gamma-ENaC|gamma-NaCH|nonvoltage-gated sodium channel 1 subunit gamma|sodium channel, nonvoltage-gated 1, gamma 20121230 -9606 6341 SCO1 - SCOD1 HGNC:10603|MIM:603644|Ensembl:ENSG00000133028|HPRD:04705|Vega:OTTHUMG00000130364 17 17p13.1 SCO1 cytochrome c oxidase assembly protein protein-coding SCO1 SCO1 cytochrome c oxidase assembly protein O SCO cytochrome oxidase deficient homolog 1|protein SCO1 homolog, mitochondrial 20121230 -9606 6342 SCP2 - NLTP|NSL-TP|SCP-2|SCP-CHI|SCP-X|SCPX HGNC:10606|MIM:184755|Ensembl:ENSG00000116171|HPRD:01700|Vega:OTTHUMG00000008936 1 1p32 sterol carrier protein 2 protein-coding SCP2 sterol carrier protein 2 O non-specific lipid-transfer protein|propanoyl-CoA C-acyltransferase|sterol carrier protein X 20121230 -9606 6343 SCT - - HGNC:10607|MIM:182099|Ensembl:ENSG00000070031|HPRD:08354|Vega:OTTHUMG00000133313 11 11p15.5 secretin protein-coding SCT secretin O - 20121230 -9606 6344 SCTR - SR HGNC:10608|MIM:182098|Ensembl:ENSG00000080293|HPRD:01628|Vega:OTTHUMG00000131407 2 2q14.1 secretin receptor protein-coding SCTR secretin receptor O pancreatic secretin receptor 20121230 -9606 6345 SRL - - HGNC:11295|MIM:604992|Ensembl:ENSG00000185739|Vega:OTTHUMG00000177617 16 16p13.3 sarcalumenin protein-coding SRL sarcalumenin O - 20121230 -9606 6346 CCL1 - I-309|P500|SCYA1|SISe|TCA3 HGNC:10609|MIM:182281|Ensembl:ENSG00000108702|HPRD:01654|Vega:OTTHUMG00000132888 17 17q12 chemokine (C-C motif) ligand 1 protein-coding CCL1 chemokine (C-C motif) ligand 1 O C-C motif chemokine 1|T lymphocyte-secreted protein I-309|inflammatory cytokine I-309|small inducible cytokine A1 (I-309, homologous to mouse Tca-3)|small-inducible cytokine A1 20121230 -9606 6347 CCL2 - GDCF-2|HC11|HSMCR30|MCAF|MCP-1|MCP1|SCYA2|SMC-CF HGNC:10618|MIM:158105|Ensembl:ENSG00000108691|HPRD:01149|Vega:OTTHUMG00000132887 17 17q11.2-q12 chemokine (C-C motif) ligand 2 protein-coding CCL2 chemokine (C-C motif) ligand 2 O C-C motif chemokine 2|monocyte chemoattractant protein 1|monocyte chemoattractant protein-1|monocyte chemotactic and activating factor|monocyte chemotactic protein 1|monocyte secretory protein JE|small inducible cytokine A2 (monocyte chemotactic protein 1, homologous to mouse Sig-je)|small inducible cytokine subfamily A (Cys-Cys), member 2|small-inducible cytokine A2 20121230 -9606 6348 CCL3 - G0S19-1|LD78ALPHA|MIP-1-alpha|MIP1A|SCYA3 HGNC:10627|MIM:182283|Ensembl:ENSG00000006075|HPRD:01656|Vega:OTTHUMG00000133000 17 17q12 chemokine (C-C motif) ligand 3 protein-coding CCL3 chemokine (C-C motif) ligand 3 O C-C motif chemokine 3|G0/G1 switch regulatory protein 19-1|PAT 464.1|SIS-beta|macrophage inflammatory protein 1-alpha|small inducible cytokine A3 (homologous to mouse Mip-1a)|tonsillar lymphocyte LD78 alpha protein 20121230 -9606 6349 CCL3L1 - 464.2|D17S1718|G0S19-2|LD78|LD78BETA|MIP1AP|SCYA3L|SCYA3L1 HGNC:10628|MIM:601395|Ensembl:ENSG00000205021|HPRD:03234|Vega:OTTHUMG00000132996 17 17q21.1 chemokine (C-C motif) ligand 3-like 1 protein-coding CCL3L1 chemokine (C-C motif) ligand 3-like 1 O C-C motif chemokine 3-like 1|G0/G1 switch regulatory protein 19-2|LD78-beta(1-70)|PAT 464.2|small inducible cytokine A3-like 1|small-inducible cytokine A3-like 1|tonsillar lymphocyte LD78 beta protein 20121230 -9606 6351 CCL4 - ACT2|AT744.1|G-26|HC21|LAG-1|LAG1|MIP-1-beta|MIP1B|MIP1B1|SCYA2|SCYA4 HGNC:10630|MIM:182284|Ensembl:ENSG00000129277|HPRD:01657|Vega:OTTHUMG00000133004 17 17q12 chemokine (C-C motif) ligand 4 protein-coding CCL4 chemokine (C-C motif) ligand 4 O C-C motif chemokine 4|G-26 T-lymphocyte-secreted protein|MIP-1-beta(1-69)|PAT 744|SIS-gamma|T-cell activation protein 2|lymphocyte activation gene 1 protein|macrophage inflammatory protein 1-beta|secreted protein G-26|small inducible cytokine A4 (homologous to mouse Mip-1b) 20121230 -9606 6352 CCL5 - D17S136E|RANTES|SCYA5|SISd|TCP228 HGNC:10632|MIM:187011|Ensembl:ENSG00000161570|HPRD:01751|Vega:OTTHUMG00000132949 17 17q11.2-q12 chemokine (C-C motif) ligand 5 protein-coding CCL5 chemokine (C-C motif) ligand 5 O C-C motif chemokine 5|SIS-delta|T-cell specific protein p288|T-cell-specific protein RANTES|beta-chemokine RANTES|eoCP|eosinophil chemotactic cytokine|regulated upon activation, normally T-expressed, and presumably secreted|small inducible cytokine A5 (RANTES)|small inducible cytokine subfamily A (Cys-Cys), member 5|small-inducible cytokine A5|t cell-specific protein P228 20121230 -9606 6354 CCL7 - FIC|MARC|MCP-3|MCP3|NC28|SCYA6|SCYA7 HGNC:10634|MIM:158106|Ensembl:ENSG00000108688|HPRD:01150|Vega:OTTHUMG00000132889 17 17q11.2-q12 chemokine (C-C motif) ligand 7 protein-coding CCL7 chemokine (C-C motif) ligand 7 O C-C motif chemokine 7|monocyte chemoattractant protein 3|monocyte chemotactic protein 3|small inducible cytokine A7 (monocyte chemotactic protein 3)|small-inducible cytokine A7 20121230 -9606 6355 CCL8 - HC14|MCP-2|MCP2|SCYA10|SCYA8 HGNC:10635|MIM:602283|Ensembl:ENSG00000108700|HPRD:03791|Vega:OTTHUMG00000132883 17 17q11.2 chemokine (C-C motif) ligand 8 protein-coding CCL8 chemokine (C-C motif) ligand 8 O C-C motif chemokine 8|monocyte chemoattractant protein 2|monocyte chemotactic protein 2|small inducible cytokine subfamily A (Cys-Cys), member 8 (monocyte chemotactic protein 2)|small-inducible cytokine A8 20121230 -9606 6356 CCL11 - SCYA11 HGNC:10610|MIM:601156|Ensembl:ENSG00000172156|HPRD:03098|Vega:OTTHUMG00000132884 17 17q21.1-q21.2 chemokine (C-C motif) ligand 11 protein-coding CCL11 chemokine (C-C motif) ligand 11 O C-C motif chemokine 11|eosinophil chemotactic protein|eotaxin|eotaxin-1|small inducible cytokine subfamily A (Cys-Cys), member 11 (eotaxin)|small-inducible cytokine A11 20121230 -9606 6357 CCL13 - CKb10|MCP-4|NCC-1|NCC1|SCYA13|SCYL1 HGNC:10611|MIM:601391|Ensembl:ENSG00000181374|HPRD:03230|Vega:OTTHUMG00000132890 17 17q11.2 chemokine (C-C motif) ligand 13 protein-coding CCL13 chemokine (C-C motif) ligand 13 O C-C motif chemokine 13|CK-beta-10|monocyte chemoattractant protein 4|monocyte chemotactic protein 4|new CC chemokine 1|small inducible cytokine subfamily A (Cys-Cys), member 13|small-inducible cytokine A13 20121230 -9606 6358 CCL14 - CC-1|CC-3|CKB1|HCC-1|HCC-1(1-74)|HCC-1/HCC-3|HCC-3|MCIF|NCC-2|NCC2|SCYA14|SCYL2|SY14 HGNC:10612|MIM:601392|Ensembl:ENSG00000213494|HPRD:03231|Vega:OTTHUMG00000138999 17 17q11.2 chemokine (C-C motif) ligand 14 protein-coding CCL14 chemokine (C-C motif) ligand 14 O C-C motif chemokine 14|chemokine CC-1/CC-3|chemokine CC-3|hemofiltrate CC chemokine 1|new CC chemokine 2|small inducible cytokine subfamily A (Cys-Cys), member 14|small-inducible cytokine A14 20121230 -9606 6359 CCL15 - HCC-2|HMRP-2B|LKN-1|LKN1|MIP-1D|MIP-5|MRP-2B|NCC-3|NCC3|SCYA15|SCYL3|SY15 HGNC:10613|MIM:601393|Ensembl:ENSG00000267596|HPRD:03232|Vega:OTTHUMG00000133002 17 17q11.2 chemokine (C-C motif) ligand 15 protein-coding CCL15 chemokine (C-C motif) ligand 15 O C-C motif chemokine 15|MIP-1 delta|chemokine CC-2|leukotactin 1|macrophage inflammatory protein 5|new CC chemokine 3|small inducible cytokine subfamily A (Cys-Cys), member 15|small-inducible cytokine A15 20121230 -9606 6360 CCL16 - CKb12|HCC-4|ILINCK|LCC-1|LEC|LMC|Mtn-1|NCC-4|NCC4|SCYA16|SCYL4 HGNC:10614|MIM:601394|Ensembl:ENSG00000161573|HPRD:03233|Vega:OTTHUMG00000132999 17 17q11.2 chemokine (C-C motif) ligand 16 protein-coding CCL16 chemokine (C-C motif) ligand 16 O C-C motif chemokine 16|IL-10-inducible chemokine|chemokine CC-4|chemokine LEC|liver CC chemokine-1|liver-expressed chemokine|lymphocyte and monocyte chemoattractant|monotactin-1|new CC chemokine 4|small inducible cytokine subfamily A (Cys-Cys), member 16|small-inducible cytokine A16 20121230 -9606 6361 CCL17 - A-152E5.3|ABCD-2|SCYA17|TARC HGNC:10615|MIM:601520|Ensembl:ENSG00000102970|HPRD:03309|Vega:OTTHUMG00000133468 16 16q13 chemokine (C-C motif) ligand 17 protein-coding CCL17 chemokine (C-C motif) ligand 17 O C-C motif chemokine 17|CC chemokine TARC|T cell-directed CC chemokine|small inducible cytokine subfamily A (Cys-Cys), member 17|small-inducible cytokine A17|thymus and activation-regulated chemokine 20121230 -9606 6362 CCL18 - AMAC-1|AMAC1|CKb7|DC-CK1|DCCK1|MIP-4|PARC|SCYA18 HGNC:10616|MIM:603757|Ensembl:ENSG00000006074|HPRD:04784|Vega:OTTHUMG00000133001 17 17q11.2 chemokine (C-C motif) ligand 18 (pulmonary and activation-regulated) protein-coding CCL18 chemokine (C-C motif) ligand 18 (pulmonary and activation-regulated) O C-C motif chemokine 18|CC chemokine PARC|CC chemokine ligand 18|alternative macrophage activation-associated CC chemokine 1|chemokine (C-C), dendritic|dendritic cell chemokine 1|macrophage inflammatory protein 4|pulmonary and activation-regulated chemokine|small inducible cytokine A18|small inducible cytokine subfamily A (Cys-Cys), member 18, pulmonary and activation-regulated|small-inducible cytokine A18 20121230 -9606 6363 CCL19 RP11-195F19.11-003 CKb11|ELC|MIP-3b|MIP3B|SCYA19 HGNC:10617|MIM:602227|Ensembl:ENSG00000172724|HPRD:03750|Vega:OTTHUMG00000019833 9 9p13 chemokine (C-C motif) ligand 19 protein-coding CCL19 chemokine (C-C motif) ligand 19 O C-C motif chemokine 19|CC chemokine ligand 19|CK beta-11|EBI1 ligand chemokine|EBI1-ligand chemokine|MIP-3-beta|beta chemokine exodus-3|beta-chemokine exodus-3|epstein-Barr virus-induced molecule 1 ligand chemokine|exodus-3|macrophage inflammatory protein 3 beta|macrophage inflammatory protein 3-beta|small inducible cytokine subfamily A (Cys-Cys), member 19|small-inducible cytokine A19 20121230 -9606 6364 CCL20 - CKb4|LARC|MIP-3-alpha|MIP-3a|MIP3A|SCYA20|ST38 HGNC:10619|MIM:601960|Ensembl:ENSG00000115009|HPRD:03571|Vega:OTTHUMG00000133189 2 2q36.3 chemokine (C-C motif) ligand 20 protein-coding CCL20 chemokine (C-C motif) ligand 20 O C-C motif chemokine 20|CC chemokine LARC|beta chemokine exodus-1|liver and activation-regulated chemokine|macrophage inflammatory protein 3 alpha|small inducible cytokine subfamily A (Cys-Cys), member 20|small-inducible cytokine A20 20121230 -9606 6365 SCZD3 - - HGNC:10651|MIM:600511 6 6p24-p22 schizophrenia disorder 3 unknown SCZD3 schizophrenia disorder 3 O - 20120622 -9606 6366 CCL21 RP11-195F19.22-001 6Ckine|CKb9|ECL|SCYA21|SLC|TCA4 HGNC:10620|MIM:602737|Ensembl:ENSG00000137077|HPRD:04113|Vega:OTTHUMG00000019838 9 9p13 chemokine (C-C motif) ligand 21 protein-coding CCL21 chemokine (C-C motif) ligand 21 O C-C motif chemokine 21|Efficient Chemoattractant for Lymphocytes|beta chemokine exodus-2|beta-chemokine exodus-2|exodus-2|secondary lymphoid tissue chemokine|secondary lymphoid-tissue chemokine|small inducible cytokine subfamily A (Cys-Cys), member 21|small-inducible cytokine A21 20121230 -9606 6367 CCL22 A-152E5.1 ABCD-1|DC/B-CK|MDC|SCYA22|STCP-1 HGNC:10621|MIM:602957|Ensembl:ENSG00000102962|HPRD:04263|Vega:OTTHUMG00000133454 16 16q13 chemokine (C-C motif) ligand 22 protein-coding CCL22 chemokine (C-C motif) ligand 22 O C-C motif chemokine 22|CC chemokine STCP-1|MDC(1-69)|macrophage-derived chemokine|small inducible cytokine A22|small inducible cytokine subfamily A (Cys-Cys), member 22|small-inducible cytokine A22|stimulated T cell chemotactic protein 1|stimulated T-cell chemotactic protein 1 20121230 -9606 6368 CCL23 - CK-BETA-8|CKb8|Ckb-8|Ckb-8-1|MIP-3|MIP3|MPIF-1|SCYA23 HGNC:10622|MIM:602494|Ensembl:ENSG00000167236|HPRD:03930|Vega:OTTHUMG00000132997 17 17q12 chemokine (C-C motif) ligand 23 protein-coding CCL23 chemokine (C-C motif) ligand 23 O C-C motif chemokine 23|C6 beta-chemokine|hmrp-2a|macrophage inflammatory protein 3|myeloid progenitor inhibitory factor 1|small inducible cytokine subfamily A (Cys-Cys), member 23|small-inducible cytokine A23 20121230 -9606 6369 CCL24 - Ckb-6|MPIF-2|MPIF2|SCYA24 HGNC:10623|MIM:602495|Ensembl:ENSG00000106178|HPRD:03931|Vega:OTTHUMG00000156635 7 7q11.23 chemokine (C-C motif) ligand 24 protein-coding CCL24 chemokine (C-C motif) ligand 24 O C-C motif chemokine 24|CK-beta-6|eosinophil chemotactic protein 2|eotaxin-2|myeloid progenitor inhibitory factor 2|small inducible cytokine subfamily A (Cys-Cys), member 24|small-inducible cytokine A24 20121230 -9606 6370 CCL25 - Ckb15|SCYA25|TECK HGNC:10624|MIM:602565|Ensembl:ENSG00000131142|HPRD:03976|Vega:OTTHUMG00000141287 19 19p13.2 chemokine (C-C motif) ligand 25 protein-coding CCL25 chemokine (C-C motif) ligand 25 O C-C motif chemokine 25|Ck beta-15|TECKvar|chemokine TECK|small inducible cytokine subfamily A (Cys-Cys), member 25|small-inducible cytokine A25|thymus expressed chemokine|thymus-expressed chemokine 20121230 -9606 6372 CXCL6 - CKA-3|GCP-2|GCP2|SCYB6 HGNC:10643|MIM:138965|Ensembl:ENSG00000124875|HPRD:00735|Vega:OTTHUMG00000130010 4 4q13.3 chemokine (C-X-C motif) ligand 6 protein-coding CXCL6 chemokine (C-X-C motif) ligand 6 O C-X-C motif chemokine 6|Small inducible cytokine subfamily B (Cys-X-Cys), member b|chemokine (C-X-C motif) ligand 6 (granulocyte chemotactic protein 2)|chemokine alpha 3|granulocyte chemotactic protein 2|small inducible cytokine subfamily B (Cys-X-Cys), member 6 (granulocyte chemotactic protein 2)|small-inducible cytokine B6 20121230 -9606 6373 CXCL11 - H174|I-TAC|IP-9|IP9|SCYB11|SCYB9B|b-R1 HGNC:10638|MIM:604852|Ensembl:ENSG00000169248|HPRD:05329|Vega:OTTHUMG00000130101 4 4q21.2 chemokine (C-X-C motif) ligand 11 protein-coding CXCL11 chemokine (C-X-C motif) ligand 11 O C-X-C motif chemokine 11|beta-R1|interferon gamma-inducible protein 9|interferon-inducible T-cell alpha chemoattractant|small inducible cytokine B11|small inducible cytokine subfamily B (Cys-X-Cys), member 11|small inducible cytokine subfamily B (Cys-X-Cys), member 9B|small-inducible cytokine B11 20121230 -9606 6374 CXCL5 - ENA-78|SCYB5 HGNC:10642|MIM:600324|Ensembl:ENSG00000163735|HPRD:08976|Vega:OTTHUMG00000160871 4 4q13.3 chemokine (C-X-C motif) ligand 5 protein-coding CXCL5 chemokine (C-X-C motif) ligand 5 O C-X-C motif chemokine 5|ENA-78(1-78)|epithelial-derived neutrophil activating protein 78|epithelial-derived neutrophil-activating peptide 78|epithelial-derived neutrophil-activating protein 78|neutrophil-activating peptide ENA-78|neutrophil-activating protein 78|small inducible cytokine B5|small inducible cytokine subfamily B (Cys-X-Cys), member 5 (epithelial-derived neutrophil-activating peptide 78)|small-inducible cytokine B5 20121230 -9606 6375 XCL1 - ATAC|LPTN|LTN|SCM-1|SCM-1a|SCM1|SCM1A|SCYC1 HGNC:10645|MIM:600250|Ensembl:ENSG00000143184|HPRD:02595|Vega:OTTHUMG00000034548 1 1q23 chemokine (C motif) ligand 1 protein-coding XCL1 chemokine (C motif) ligand 1 O SCM-1-alpha|XC chemokine ligand 1|c motif chemokine 1|cytokine SCM-1|lymphotactin|lymphotaxin|single cysteine motif 1a|small inducible cytokine subfamily C, member 1 (lymphotactin)|small-inducible cytokine C1 20121230 -9606 6376 CX3CL1 A-152E5.2 ABCD-3|C3Xkine|CXC3|CXC3C|NTN|NTT|SCYD1|fractalkine|neurotactin HGNC:10647|MIM:601880|Ensembl:ENSG00000006210|HPRD:03529|Vega:OTTHUMG00000133469 16 16q13 chemokine (C-X3-C motif) ligand 1 protein-coding CX3CL1 chemokine (C-X3-C motif) ligand 1 O C-X3-C motif chemokine 1|CX3C membrane-anchored chemokine|fractalkine|small inducible cytokine subfamily D (Cys-X3-Cys), member 1 (fractalkine, neurotactin)|small inducible cytokine subfamily D (Cys-X3-Cys), member-1|small-inducible cytokine D1 20121230 -9606 6377 SCZD1 - - HGNC:10649|MIM:181510 5 5q11.2-q13.3 schizophrenia disorder 1 unknown SCZD1 schizophrenia disorder 1 O - 20120622 -9606 6378 SCZD2 - - HGNC:10650|MIM:603342 11 11q14-q21 schizophrenia disorder 2 unknown SCZD2 schizophrenia disorder 2 O - 20120622 -9606 6382 SDC1 - CD138|SDC|SYND1|syndecan HGNC:10658|MIM:186355|Ensembl:ENSG00000115884|HPRD:01718|Vega:OTTHUMG00000090751 2 2p24.1 syndecan 1 protein-coding SDC1 syndecan 1 O CD138 antigen|heparan sulfate proteoglycan fibroblast growth factor receptor|syndecan proteoglycan 1|syndecan-1 20121230 -9606 6383 SDC2 - CD362|HSPG|HSPG1|SYND2 HGNC:10659|MIM:142460|Ensembl:ENSG00000169439|HPRD:00803|Vega:OTTHUMG00000164689 8 8q22-q23 syndecan 2 protein-coding SDC2 syndecan 2 O cell surface-associated heparan sulfate proteoglycan 1|fibroglycan|heparan sulfate proteoglycan 1, cell surface-associated|heparan sulfate proteoglycan core protein|syndecan proteoglycan 2|syndecan-2 20121230 -9606 6385 SDC4 - SYND4 HGNC:10661|MIM:600017|Ensembl:ENSG00000124145|HPRD:08366|Vega:OTTHUMG00000033083 20 20q12 syndecan 4 protein-coding SDC4 syndecan 4 O amphiglycan|ryudocan amphiglycan|ryudocan core protein|syndecan 4 (amphiglycan, ryudocan)|syndecan proteoglycan 4|syndecan-4 20121230 -9606 6386 SDCBP - MDA-9|ST1|SYCL|TACIP18 HGNC:10662|MIM:602217|Ensembl:ENSG00000137575|HPRD:03741|Vega:OTTHUMG00000164303 8 8q12 syndecan binding protein (syntenin) protein-coding SDCBP syndecan binding protein (syntenin) O melanoma differentiation associated protein-9|melanoma differentiation-associated protein 9|pro-TGF-alpha cytoplasmic domain-interacting protein 18|scaffold protein Pbp1|syndecan-binding protein 1|syntenin-1 20121230 -9606 6387 CXCL12 - IRH|PBSF|SCYB12|SDF1|SDF1A|SDF1B|TLSF|TPAR1 HGNC:10672|MIM:600835|Ensembl:ENSG00000107562|HPRD:02904|Vega:OTTHUMG00000018054 10 10q11.1 chemokine (C-X-C motif) ligand 12 protein-coding CXCL12 chemokine (C-X-C motif) ligand 12 O intercrine reduced in hepatomas|pre-B cell growth-stimulating factor|stromal cell-derived factor 1 20121230 -9606 6388 SDF2 - - HGNC:10675|MIM:602934|Ensembl:ENSG00000132581|HPRD:04243|Vega:OTTHUMG00000132681 17 17q11.2 stromal cell-derived factor 2 protein-coding SDF2 stromal cell-derived factor 2 O SDF-2 20121230 -9606 6389 SDHA - CMD1GG|FP|PGL5|SDH1|SDH2|SDHF HGNC:10680|MIM:600857|Ensembl:ENSG00000073578|HPRD:02914|Vega:OTTHUMG00000090275 5 5p15 succinate dehydrogenase complex, subunit A, flavoprotein (Fp) protein-coding SDHA succinate dehydrogenase complex, subunit A, flavoprotein (Fp) O flavoprotein subunit of complex II|succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial|succinate dehydrogenase complex flavoprotein subunit 20121230 -9606 6390 SDHB - IP|PGL4|SDH|SDH1|SDH2|SDHIP HGNC:10681|MIM:185470|Ensembl:ENSG00000117118|HPRD:01707|Vega:OTTHUMG00000002289 1 1p36.1-p35 succinate dehydrogenase complex, subunit B, iron sulfur (Ip) protein-coding SDHB succinate dehydrogenase complex, subunit B, iron sulfur (Ip) O iron-sulfur subunit of complex II|succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 20121230 -9606 6391 SDHC - CYB560|CYBL|PGL3|QPS1|SDH3 HGNC:10682|MIM:602413|Ensembl:ENSG00000143252|HPRD:03878|Vega:OTTHUMG00000034468 1 1q23.3 succinate dehydrogenase complex, subunit C, integral membrane protein, 15kDa protein-coding SDHC succinate dehydrogenase complex, subunit C, integral membrane protein, 15kDa O QPs-1|cytochrome B large subunit of complex II|integral membrane protein CII-3|integral membrane protein CII-3b|succinate dehydrogenase cytochrome b560 subunit, mitochondrial|succinate-ubiquinone oxidoreductase cytochrome B large subunit 20121230 -9606 6392 SDHD - CBT1|PGL|PGL1|SDH4 HGNC:10683|MIM:602690|Ensembl:ENSG00000204370|HPRD:04069|Vega:OTTHUMG00000166997 11 11q23 succinate dehydrogenase complex, subunit D, integral membrane protein protein-coding SDHD succinate dehydrogenase complex, subunit D, integral membrane protein O CII-4|QPs3|cybS|succinate dehydrogenase [ubiquinone] cytochrome b small subunit, mitochondrial|succinate-ubiquinone oxidoreductase cytochrome b small subunit|succinate-ubiquinone reductase membrane anchor subunit 20121230 -9606 6393 SDU - - HGNC:10692 - - skeletal dysplasia (unspecified) unknown SDU skeletal dysplasia (unspecified) O - 20110215 -9606 6395 SEA - - HGNC:10695|MIM:165110 11 11q13 S13 erythroblastosis oncogene homolog (avian) protein-coding SEA S13 erythroblastosis oncogene homolog (avian) O Oncogene SEA (S13 avian erythroblastosis)|S13 avian erythroblastosis oncogene homolog 20080828 -9606 6396 SEC13 - D3S1231E|SEC13L1|SEC13R|npp-20 HGNC:10697|MIM:600152|Ensembl:ENSG00000157020|HPRD:02538|Vega:OTTHUMG00000128671 3 3p25-p24 SEC13 homolog (S. cerevisiae) protein-coding SEC13 SEC13 homolog (S. cerevisiae) O SEC13-like 1 isoform|SEC13-like protein 1|SEC13-related protein|protein SEC13 homolog 20121230 -9606 6397 SEC14L1 - PRELID4A|SEC14L HGNC:10698|MIM:601504|Ensembl:ENSG00000129657|HPRD:03295|Vega:OTTHUMG00000177311 17 17q25.2 SEC14-like 1 (S. cerevisiae) protein-coding SEC14L1 SEC14-like 1 (S. cerevisiae) O SEC14-like protein 1 20121230 -9606 6398 SECTM1 - K12 HGNC:10707|MIM:602602|Ensembl:ENSG00000141574|HPRD:04004|Vega:OTTHUMG00000178668 17 17q25 secreted and transmembrane 1 protein-coding SECTM1 secreted and transmembrane 1 O secreted and transmembrane protein 1|type 1a transmembrane protein 20121230 -9606 6399 TRAPPC2 - MIP2A|SEDL|SEDT|TRAPPC2P1|TRS20|ZNF547L|hYP38334 HGNC:23068|MIM:300202|Ensembl:ENSG00000196459|HPRD:02189|Vega:OTTHUMG00000021157 X Xp22 trafficking protein particle complex 2 protein-coding TRAPPC2 trafficking protein particle complex 2 O sedlin|trafficking protein particle complex subunit 2 20121230 -9606 6400 SEL1L UNQ128/PRO1063 PRO1063|SEL1-LIKE|SEL1L1 HGNC:10717|MIM:602329|Ensembl:ENSG00000071537|HPRD:07532|Vega:OTTHUMG00000171419 14 14q31 sel-1 suppressor of lin-12-like (C. elegans) protein-coding SEL1L sel-1 suppressor of lin-12-like (C. elegans) O Suppressor of lin 12 (sel-1), C. elegans, homolog of|protein sel-1 homolog 1|sel-1 suppressor of lin-12-like 1|suppressor of lin-12-like protein 1 20121230 -9606 6401 SELE RP1-117P20.2 CD62E|ELAM|ELAM1|ESEL|LECAM2 HGNC:10718|MIM:131210|Ensembl:ENSG00000007908|HPRD:00566|Vega:OTTHUMG00000034851 1 1q22-q25 selectin E protein-coding SELE selectin E O CD62 antigen-like family member E|E-selectin|ELAM-1|endothelial adhesion molecule 1|endothelial leukocyte adhesion molecule 1|leukocyte endothelial cell adhesion molecule 2|leukocyte-endothelial cell adhesion molecule 2 20121230 -9606 6402 SELL RP1-117P20.1 CD62L|LAM1|LECAM1|LEU8|LNHR|LSEL|LYAM1|PLNHR|TQ1 HGNC:10720|MIM:153240|Ensembl:ENSG00000188404|Vega:OTTHUMG00000034809 1 1q23-q25 selectin L protein-coding SELL selectin L O CD62 antigen-like family member L|L-selectin|gp90-MEL|leukocyte surface antigen Leu-8|leukocyte-endothelial cell adhesion molecule 1|lymph node homing receptor|lymphocyte adhesion molecule 1|pln homing receptor 20121230 -9606 6403 SELP RP1-86F14.2 CD62|CD62P|GMP140|GRMP|LECAM3|PADGEM|PSEL HGNC:10721|MIM:173610|Ensembl:ENSG00000174175|HPRD:01433|Vega:OTTHUMG00000034685 1 1q22-q25 selectin P (granule membrane protein 140kDa, antigen CD62) protein-coding SELP selectin P (granule membrane protein 140kDa, antigen CD62) O CD62 antigen-like family member P|GMP-140|P-selectin|granule membrane protein 140|granulocyte membrane protein|leukocyte-endothelial cell adhesion molecule 3|platelet activation dependent granule-external membrane protein|platelet alpha-granule membrane protein 20121230 -9606 6404 SELPLG - CD162|CLA|PSGL-1|PSGL1 HGNC:10722|MIM:600738|Ensembl:ENSG00000110876|HPRD:02845|Vega:OTTHUMG00000169411 12 12q24 selectin P ligand protein-coding SELPLG selectin P ligand O P-selectin glycoprotein ligand 1|cutaneous lymphocyte-associated associated antigen 20121230 -9606 6405 SEMA3F - SEMA-IV|SEMA4|SEMAK HGNC:10728|MIM:601124|Ensembl:ENSG00000001617|HPRD:03079|Vega:OTTHUMG00000156806 3 3p21.3 sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3F protein-coding SEMA3F sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3F O sema III/F|sema IV|sema domain, immunoglobulin domain (Ig), short basic domain, secreted, 3F|semaphorin III/F|semaphorin IV|semaphorin-3F 20121230 -9606 6406 SEMG1 - CT103|SEMG|SGI|dJ172H20.2 HGNC:10742|MIM:182140|Ensembl:ENSG00000124233|HPRD:01641|Vega:OTTHUMG00000032565 20 20q12-q13.2 semenogelin I protein-coding SEMG1 semenogelin I O cancer/testis antigen 103|semen coagulating protein|semenogelin-1 20121230 -9606 6407 SEMG2 - SGII HGNC:10743|MIM:182141|Ensembl:ENSG00000124157|HPRD:01642|Vega:OTTHUMG00000032566 20 20q12-q13.1 semenogelin II protein-coding SEMG2 semenogelin II O Semenogelin 2|semenogelin-2 20121230 -9606 6409 SEN2 - - HGNC:10745 1 1q42-q44 senescence (cellular)-related 2 unknown SEN2 senescence (cellular)-related 2 O - 20110215 -9606 6410 SEN3 - - HGNC:10746 X - senescence (cellular)-related 3 unknown SEN3 senescence (cellular)-related 3 O - 20110215 -9606 6411 SEN6 - - HGNC:10747 6 6q26-q27 senescence (cellular)-related 6 unknown SEN6 senescence (cellular)-related 6 O - 20110215 -9606 6412 SEN6A - - HGNC:10748 6 6q14-q21 senescence (cellular)-related 6A unknown SEN6A senescence (cellular)-related 6A O - 20120205 -9606 6413 SEN6B - - HGNC:10749 6 6q21-q22 senescence (cellular)-related 6B unknown SEN6B senescence (cellular)-related 6B O - 20110215 -9606 6414 SEPP1 - SELP|SeP HGNC:10751|MIM:601484|Ensembl:ENSG00000250722|HPRD:03286|Vega:OTTHUMG00000162140 5 5q31 selenoprotein P, plasma, 1 protein-coding SEPP1 selenoprotein P, plasma, 1 O selenoprotein P 20121230 -9606 6415 SEPW1 - selW HGNC:10752|MIM:603235|Ensembl:ENSG00000178980|HPRD:08377 19 19q13.3 selenoprotein W, 1 protein-coding SEPW1 selenoprotein W, 1 O selenoprotein W 20121230 -9606 6416 MAP2K4 - JNKK|JNKK1|MAPKK4|MEK4|MKK4|PRKMK4|SAPKK-1|SAPKK1|SEK1|SERK1 HGNC:6844|MIM:601335|Ensembl:ENSG00000065559|HPRD:03213|Vega:OTTHUMG00000178267 17 17p12 mitogen-activated protein kinase kinase 4 protein-coding MAP2K4 mitogen-activated protein kinase kinase 4 O JNK activating kinase 1|JNK-activated kinase 1|JNK-activating kinase 1|MAP kinase kinase 4|MAPK/ERK kinase 4|MAPKK 4|MEK 4|SAPK kinase 1|SAPK/ERK kinase 1|c-Jun N-terminal kinase kinase 1|dual specificity mitogen-activated protein kinase kinase 4|stress-activated protein kinase kinase 1 20121230 -9606 6418 SET RP11-216B9.3 2PP2A|I2PP2A|IGAAD|IPP2A2|PHAPII|TAF-I|TAF-IBETA HGNC:10760|MIM:600960|Ensembl:ENSG00000119335|HPRD:09023|Vega:OTTHUMG00000020755 9 9q34 SET nuclear oncogene protein-coding SET SET nuclear oncogene O HLA-DR-associated protein II|SET translocation (myeloid leukemia-associated)|Template-Activating Factor-I, chromatin remodelling factor|inhibitor of granzyme A-activated DNase|inhibitor-2 of protein phosphatase-2A|phosphatase 2A inhibitor I2PP2A|protein SET|protein phosphatase type 2A inhibitor 20121230 -9606 6419 SETMAR - METNASE HGNC:10762|MIM:609834|Ensembl:ENSG00000170364|HPRD:10225|Vega:OTTHUMG00000090265 3 3p26.1 SET domain and mariner transposase fusion gene protein-coding SETMAR SET domain and mariner transposase fusion gene O SET domain and mariner transposase fusion gene-containing protein|histone-lysine N-methyltransferase SETMAR|hsMar1 20121230 -9606 6420 SF - - MIM:111800 4 4q28-q31 Stoltzfus blood group unknown - - - - 20120622 -9606 6421 SFPQ - POMP100|PSF HGNC:10774|MIM:605199|Ensembl:ENSG00000116560|HPRD:07284|Vega:OTTHUMG00000004157 1 1p34.3 splicing factor proline/glutamine-rich protein-coding SFPQ splicing factor proline/glutamine-rich O 100 kDa DNA-pairing protein|DNA-binding p52/p100 complex, 100 kDa subunit|PTB-associated splicing factor|PTB-associated-splicing factor|hPOMp100|polypyrimidine tract binding protein associated|polypyrimidine tract-binding protein-associated splicing factor|polypyrimidine tract-binding protein-associated-splicing factor|splicing factor proline/glutamine rich (polypyrimidine tract binding protein associated)|splicing factor proline/glutamine rich (polypyrimidine tract-binding protein-associated)|splicing factor, proline- and glutamine-rich 20121230 -9606 6422 SFRP1 - FRP|FRP-1|FRP1|FrzA|SARP2 HGNC:10776|MIM:604156|Ensembl:ENSG00000104332|HPRD:09165|Vega:OTTHUMG00000164074 8 8p11.21 secreted frizzled-related protein 1 protein-coding SFRP1 secreted frizzled-related protein 1 O SARP-2|sFRP-1|secreted apoptosis-related protein 2 20121230 -9606 6423 SFRP2 FKSG12 FRP-2|SARP1|SDF-5 HGNC:10777|MIM:604157|Ensembl:ENSG00000145423|HPRD:16041|Vega:OTTHUMG00000161559 4 4q31.3 secreted frizzled-related protein 2 protein-coding SFRP2 secreted frizzled-related protein 2 O SARP-1|sFRP-2|secreted apoptosis related protein 1|secreted apoptosis-related protein 1 20121230 -9606 6424 SFRP4 - FRP-4|FRPHE|sFRP-4 HGNC:10778|MIM:606570|Ensembl:ENSG00000106483|HPRD:07357|Vega:OTTHUMG00000023026 7 7p14.1 secreted frizzled-related protein 4 protein-coding SFRP4 secreted frizzled-related protein 4 O frizzled protein, human endometrium|secreted frizzled-related protein 4; secreted frizzled-related protein 4 20121230 -9606 6425 SFRP5 - SARP3 HGNC:10779|MIM:604158|Ensembl:ENSG00000120057|HPRD:09166|Vega:OTTHUMG00000018866 10 10q24.1 secreted frizzled-related protein 5 protein-coding SFRP5 secreted frizzled-related protein 5 O FRP-1b|SARP-3|frizzled-related protein 1b|sFRP-5|secreted apoptosis related protein 3|secreted apoptosis-related protein 3 20121230 -9606 6426 SRSF1 OK/SW-cl.3 ASF|SF2|SF2p33|SFRS1|SRp30a HGNC:10780|MIM:600812|Ensembl:ENSG00000136450|HPRD:02887|Vega:OTTHUMG00000178781 17 17q22 serine/arginine-rich splicing factor 1 protein-coding SRSF1 serine/arginine-rich splicing factor 1 O ASF-1|SR splicing factor 1|alternative-splicing factor 1|pre-mRNA-splicing factor SF2, P33 subunit|splicing factor 2|splicing factor, arginine/serine-rich 1 20121230 -9606 6427 SRSF2 - PR264|SC-35|SC35|SFRS2|SFRS2A|SRp30b HGNC:10783|MIM:600813|Ensembl:ENSG00000161547|HPRD:02888|Vega:OTTHUMG00000177547 17 17q25.1 serine/arginine-rich splicing factor 2 protein-coding SRSF2 serine/arginine-rich splicing factor 2 O SR splicing factor 2|splicing component, 35 kDa|splicing factor SC35|splicing factor, arginine/serine-rich 2 20121230 -9606 6428 SRSF3 - SFRS3|SRp20 HGNC:10785|MIM:603364|Ensembl:ENSG00000112081|HPRD:04530|Vega:OTTHUMG00000014599 6 6p21 serine/arginine-rich splicing factor 3 protein-coding SRSF3 serine/arginine-rich splicing factor 3 O pre-mRNA-splicing factor SRP20|splicing factor, arginine/serine-rich 3|splicing factor, arginine/serine-rich, 20-kD 20121230 -9606 6429 SRSF4 - SFRS4|SRP75 HGNC:10786|MIM:601940|Ensembl:ENSG00000116350|HPRD:09052|Vega:OTTHUMG00000003663 1 1p35.3 serine/arginine-rich splicing factor 4 protein-coding SRSF4 serine/arginine-rich splicing factor 4 O SR splicing factor 4|SRP001LB|pre-mRNA-splicing factor SRP75|splicing factor, arginine/serine-rich 4 20121230 -9606 6430 SRSF5 - HRS|SFRS5|SRP40 HGNC:10787|MIM:600914|Ensembl:ENSG00000100650|Vega:OTTHUMG00000171235 14 14q24 serine/arginine-rich splicing factor 5 protein-coding SRSF5 serine/arginine-rich splicing factor 5 O SR splicing factor 5|delayed-early protein HRS|pre-mRNA-splicing factor SRP40|splicing factor, arginine/serine-rich 5 20121230 -9606 6431 SRSF6 - B52|SFRS6|SRP55 HGNC:10788|MIM:601944|Ensembl:ENSG00000124193|HPRD:09054|Vega:OTTHUMG00000032502 20 20q12-q13.1 serine/arginine-rich splicing factor 6 protein-coding SRSF6 serine/arginine-rich splicing factor 6 O SR splicing factor 6|pre-mRNA-splicing factor SRP55|splicing factor, arginine/serine-rich, 55 kDa 20121230 -9606 6432 SRSF7 - 9G8|AAG3|SFRS7 HGNC:10789|MIM:600572|Ensembl:ENSG00000115875|HPRD:08991|Vega:OTTHUMG00000102076 2 2p22.1 serine/arginine-rich splicing factor 7 protein-coding SRSF7 serine/arginine-rich splicing factor 7 O SR splicing factor 7|aging-associated protein 3|splicing factor 9G8|splicing factor, arginine/serine-rich 7, 35kDa 20121230 -9606 6433 SFSWAP - SFRS8|SWAP HGNC:10790|MIM:601945|Ensembl:ENSG00000061936|HPRD:09055|Vega:OTTHUMG00000168319 12 12q24.33 splicing factor, suppressor of white-apricot homolog (Drosophila) protein-coding SFSWAP splicing factor, suppressor of white-apricot homolog (Drosophila) O splicing factor, arginine/serine-rich 8 (suppressor-of-white-apricot homolog, Drosophila)|splicing factor, arginine/serine-rich 8 (suppressor-of-white-apricot, Drosophila homolog)|splicing factor, suppressor of white-apricot homolog|suppressor of white apricot protein homolog 20121230 -9606 6434 TRA2B - Htra2-beta|SFRS10|SRFS10|TRA2-BETA|TRAN2B HGNC:10781|MIM:602719|Ensembl:ENSG00000136527|HPRD:04097|Vega:OTTHUMG00000156641 3 3q26.2-q27 transformer 2 beta homolog (Drosophila) protein-coding TRA2B transformer 2 beta homolog (Drosophila) O TRA-2 beta|splicing factor, arginine/serine-rich 10 (transformer 2 homolog, Drosophila)|transformer-2 protein homolog B|transformer-2 protein homolog beta 20121230 -9606 6439 SFTPB - PSP-B|SFTB3|SFTP3|SMDP1|SP-B HGNC:10801|MIM:178640|Ensembl:ENSG00000168878|HPRD:01523|Vega:OTTHUMG00000130181 2 2p12-p11.2 surfactant protein B protein-coding SFTPB surfactant protein B O 18 kDa pulmonary-surfactant protein|6 kDa protein|pulmonary surfactant-associated protein B|pulmonary surfactant-associated proteolipid SPL(Phe) 20121230 -9606 6440 SFTPC - BRICD6|PSP-C|SFTP2|SMDP2|SP-C HGNC:10802|MIM:178620|Ensembl:ENSG00000168484|HPRD:01520|Vega:OTTHUMG00000163775 8 8p21 surfactant protein C protein-coding SFTPC surfactant protein C O BRICHOS domain containing 6|SP5|pulmonary surfactant apoprotein-2 SP-C|pulmonary surfactant-associated protein C|pulmonary surfactant-associated proteolipid SPL(Val) 20121230 -9606 6441 SFTPD - COLEC7|PSP-D|SFTP4|SP-D HGNC:10803|MIM:178635|Ensembl:ENSG00000133661|HPRD:01522|Vega:OTTHUMG00000018590 10 10q22.2-q23.1 surfactant protein D protein-coding SFTPD surfactant protein D O collectin 7|collectin-7|lung surfactant protein D|pulmonary surfactant apoprotein|pulmonary surfactant-associated protein D|surfactant, pulmonary-associated protein D|surfactant-associated protein, pulmonary 4 20121230 -9606 6442 SGCA - 50-DAG|A2|ADL|DAG2|DMDA2|LGMD2D|SCARMD1|adhalin HGNC:10805|MIM:600119|Ensembl:ENSG00000108823|HPRD:02525|Vega:OTTHUMG00000162024 17 17q21 sarcoglycan, alpha (50kDa dystrophin-associated glycoprotein) protein-coding SGCA sarcoglycan, alpha (50kDa dystrophin-associated glycoprotein) O 50 kDa dystrophin-associated glycoprotein|50DAG|50kD DAG|alpha-SG|alpha-sarcoglycan|dystroglycan-2 20121230 -9606 6443 SGCB - A3b|LGMD2E|SGC HGNC:10806|MIM:600900|Ensembl:ENSG00000163069|HPRD:02942|Vega:OTTHUMG00000128697 4 4q12 sarcoglycan, beta (43kDa dystrophin-associated glycoprotein) protein-coding SGCB sarcoglycan, beta (43kDa dystrophin-associated glycoprotein) O 43 kDa dystrophin-associated glycoprotein|43DAG|beta-SG|beta-sarcoglycan|beta-sarcoglycan(43kD dystrophin-associated glycoprotein)|limb girdle muscular dystrophy 2E (non-linked families) 20121230 -9606 6444 SGCD - 35DAG|CMD1L|DAGD|SG-delta|SGCDP|SGD HGNC:10807|MIM:601411|Ensembl:ENSG00000170624|HPRD:03246|Vega:OTTHUMG00000163445 5 5q33-q34 sarcoglycan, delta (35kDa dystrophin-associated glycoprotein) protein-coding SGCD sarcoglycan, delta (35kDa dystrophin-associated glycoprotein) O 35 kDa dystrophin-associated glycoprotein|delta-SG|delta-sarcoglycan|dystrophin associated glycoprotein, delta sarcoglycan|placental delta sarcoglycan 20121230 -9606 6445 SGCG RP11-40O20.1 A4|DAGA4|DMDA|DMDA1|LGMD2C|MAM|SCARMD2|SCG3|TYPE HGNC:10809|MIM:608896|Ensembl:ENSG00000102683|HPRD:07039|Vega:OTTHUMG00000016563 13 13q12 sarcoglycan, gamma (35kDa dystrophin-associated glycoprotein) protein-coding SGCG sarcoglycan, gamma (35kDa dystrophin-associated glycoprotein) O 35 kDa dystrophin-associated glycoprotein|35DAG|35kD dystrophin-associated glycoprotein|gamma sarcoglycan|gamma-SG|gamma-sarcoglycan 20121230 -9606 6446 SGK1 RP1-188K17.1 SGK HGNC:10810|MIM:602958|Ensembl:ENSG00000118515|HPRD:04264|Vega:OTTHUMG00000015613 6 6q23 serum/glucocorticoid regulated kinase 1 protein-coding SGK1 serum/glucocorticoid regulated kinase 1 O Sgk1 variant i3|serine/threonine protein kinase SGK|serine/threonine-protein kinase Sgk1|serum/glucocorticoid-regulated kinase 1 20121230 -9606 6447 SCG5 - 7B2|P7B2|SGNE1|SgV HGNC:10816|MIM:173120|Ensembl:ENSG00000166922|HPRD:01410|Vega:OTTHUMG00000159447 15 15q13-q14 secretogranin V (7B2 protein) protein-coding SCG5 secretogranin V (7B2 protein) O neuroendocrine protein 7B2|pituitary polypeptide|prohormone convertase chaperone|secretogranin-5|secretory granule endocrine protein I|secretory granule, neuroendocrine protein 1 (7B2 protein) 20121230 -9606 6448 SGSH - HSS|MPS3A|SFMD HGNC:10818|MIM:605270|Ensembl:ENSG00000181523|HPRD:05590|Vega:OTTHUMG00000177569 17 17q25.3 N-sulfoglucosamine sulfohydrolase protein-coding SGSH N-sulfoglucosamine sulfohydrolase O N-sulphoglucosamine sulphohydrolase|heparan sulfate sulfatase|mucopolysaccharidosis type IIIA|sulfoglucosamine sulfamidase|sulphamidase 20121230 -9606 6449 SGTA - SGT|alphaSGT|hSGT HGNC:10819|MIM:603419|Ensembl:ENSG00000104969|HPRD:04568|Vega:OTTHUMG00000180474 19 19p13 small glutamine-rich tetratricopeptide repeat (TPR)-containing, alpha protein-coding SGTA small glutamine-rich tetratricopeptide repeat (TPR)-containing, alpha O UBP|alpha-SGT|protein containing three tetratricopeptide repeats|small glutamine-rich tetratricopeptide repeat-containing protein alpha|vpu-binding protein 20121230 -9606 6450 SH3BGR - 21-GARP HGNC:10822|MIM:602230|Ensembl:ENSG00000185437|HPRD:03753|Vega:OTTHUMG00000074113 21 21q22.3 SH3 domain binding glutamic acid-rich protein protein-coding SH3BGR SH3 domain binding glutamic acid-rich protein O 21-glutamic acid-rich protein|SH3 domain-binding glutamic acid-rich protein|SH3-binding domain and glutamic acid-rich protein 20121230 -9606 6451 SH3BGRL - SH3BGR HGNC:10823|MIM:300190|Ensembl:ENSG00000131171|HPRD:02178|Vega:OTTHUMG00000021910 X Xq13.3 SH3 domain binding glutamic acid-rich protein like protein-coding SH3BGRL SH3 domain binding glutamic acid-rich protein like O SH3 domain-binding glutamic acid-rich-like protein|SH3-binding domain glutamic acid-rich protein like 20121230 -9606 6452 SH3BP2 RES4-23 3BP-2|3BP2|CRBM|CRPM HGNC:10825|MIM:602104|Ensembl:ENSG00000087266|HPRD:03657|Vega:OTTHUMG00000160801 4 4p16.3 SH3-domain binding protein 2 protein-coding SH3BP2 SH3-domain binding protein 2 O Abl-SH3 binding protein 2|SH3 domain-binding protein 2|TNFAIP3 interacting protein 2 20121230 -9606 6453 ITSN1 - ITSN|SH3D1A|SH3P17 HGNC:6183|MIM:602442|Ensembl:ENSG00000205726|HPRD:03898|Vega:OTTHUMG00000065284 21 21q22.1-q22.2 intersectin 1 (SH3 domain protein) protein-coding ITSN1 intersectin 1 (SH3 domain protein) O SH3 domain-containing protein 1A|Src homology 3 domain-containing protein|human intersectin-SH3 domain-containing protein SH3P17|intersectin 1 short form variant 3|intersectin 1 short form variant, 11|intersectin short variant 12|intersectin-1 20121230 -9606 6455 SH3GL1 - CNSA1|EEN|SH3D2B|SH3P8 HGNC:10830|MIM:601768|Ensembl:ENSG00000141985|HPRD:03462 19 19p13.3 SH3-domain GRB2-like 1 protein-coding SH3GL1 SH3-domain GRB2-like 1 O EEN fusion partner of MLL|SH3 domain protein 2B|SH3 domain-containing GRB2-like protein 1|SH3-containing Grb-2-like 1 protein|endophilin-2|endophilin-A2|extra 11-19 leukemia fusion|extra eleven-nineteen leukemia fusion gene protein 20121230 -9606 6456 SH3GL2 - CNSA2|EEN-B1|SH3D2A|SH3P4 HGNC:10831|MIM:604465|Ensembl:ENSG00000107295|HPRD:05125|Vega:OTTHUMG00000019601 9 9p22 SH3-domain GRB2-like 2 protein-coding SH3GL2 SH3-domain GRB2-like 2 O Endophilin A1 BAR domain|SH3 domain protein 2A|SH3 domain-containing GRB2-like protein 2|bA335L15.1 (SH3-domain GRB2-like 2)|endophilin-1|endophilin-A1 20121230 -9606 6457 SH3GL3 - CNSA3|EEN-2B-L3|EEN-B2|HsT19371|SH3D2C|SH3P13 HGNC:10832|MIM:603362|Ensembl:ENSG00000140600|HPRD:04528|Vega:OTTHUMG00000147361 15 15q24 SH3-domain GRB2-like 3 protein-coding SH3GL3 SH3-domain GRB2-like 3 O SH3 domain protein 2C|SH3 domain-containing GRB2-like protein 3|endophilin-3|endophilin-A3 20121230 -9606 6458 SH3GL1P1 - CNSA-P1|SH3GLP1 HGNC:10835 17 17q11.2 SH3-domain GRB2-like 1 pseudogene 1 pseudo SH3GL1P1 SH3-domain GRB2-like 1 pseudogene 1 O - 20121230 -9606 6459 SH3GL1P2 - CNSA-P2|SH3GLP2 HGNC:10836 17 17q11.2 SH3-domain GRB2-like 1 pseudogene 2 pseudo SH3GL1P2 SH3-domain GRB2-like 1 pseudogene 2 O - 20121230 -9606 6461 SHB RP11-3J10.3 RP11-3J10.8|bA3J10.2 HGNC:10838|MIM:600314|Ensembl:ENSG00000107338|HPRD:02635|Vega:OTTHUMG00000019936 9 9p13.2 Src homology 2 domain containing adaptor protein B protein-coding SHB Src homology 2 domain containing adaptor protein B O SH2 domain-containing adapter protein B|SHB (Src homology 2 domain containing) adaptor protein B|SHB adaptor protein (a Src homology 2 protein) 20121230 -9606 6462 SHBG - ABP|SBP|TEBG HGNC:10839|MIM:182205|Ensembl:ENSG00000129214|HPRD:01646|Vega:OTTHUMG00000108153 17 17p13-p12 sex hormone-binding globulin protein-coding SHBG sex hormone-binding globulin O sex steroid-binding protein|testis-specific androgen-binding protein|testosterone-binding beta-globulin|testosterone-estradiol-binding globulin|testosterone-estrogen-binding globulin 20121230 -9606 6463 SHFM2 - SHFD2|SHSF2 HGNC:10846|MIM:313350 X Xq26 split hand/foot malformation (ectrodactyly) type 2 unknown SHFM2 split hand/foot malformation (ectrodactyly) type 2 O - 20120622 -9606 6464 SHC1 RP11-307C12.1 SHC|SHCA HGNC:10840|MIM:600560|Ensembl:ENSG00000160691|HPRD:02780|Vega:OTTHUMG00000037295 1 1q21 SHC (Src homology 2 domain containing) transforming protein 1 protein-coding SHC1 SHC (Src homology 2 domain containing) transforming protein 1 O SH2 domain protein C1|SHC (Src homology 2 domain-containing) transforming protein 1|SHC-transforming protein 1|SHC-transforming protein 3|SHC-transforming protein A 20121230 -9606 6465 SHC1P1 - - HGNC:10841 X Xq11.1 SHC (Src homology 2 domain containing) transforming protein 1 pseudogene 1 pseudo SHC1P1 SHC (Src homology 2 domain containing) transforming protein 1 pseudogene 1 O - 20121230 -9606 6466 SHC1P2 - SHCL1 HGNC:10842|MIM:600739 17 17q21.31 SHC (Src homology 2 domain containing) transforming protein 1 pseudogene 2 pseudo SHC1P2 SHC (Src homology 2 domain containing) transforming protein 1 pseudogene 2 O - 20121230 -9606 6468 FBXW4 RP11-529I10.3 DAC|FBW4|FBWD4|SHFM3|SHSF3 HGNC:10847|MIM:608071|Ensembl:ENSG00000107829|HPRD:06994|Vega:OTTHUMG00000018938 10 10q24 F-box and WD repeat domain containing 4 protein-coding FBXW4 F-box and WD repeat domain containing 4 O F-box and WD-40 domain protein 4|F-box and WD-40 domain-containing protein 4|F-box/WD repeat protein 4|F-box/WD repeat-containing protein 4|dactylin 20121230 -9606 6469 SHH tcag7.582 HHG1|HLP3|HPE3|MCOPCB5|SMMCI|TPT|TPTPS HGNC:10848|MIM:600725|Ensembl:ENSG00000164690|HPRD:02838|Vega:OTTHUMG00000151349 7 7q36 sonic hedgehog protein-coding SHH sonic hedgehog O sonic hedgehog homolog|sonic hedgehog protein 20121230 -9606 6470 SHMT1 - CSHMT|SHMT HGNC:10850|MIM:182144|Ensembl:ENSG00000176974|HPRD:01643|Vega:OTTHUMG00000059094 17 17p11.2 serine hydroxymethyltransferase 1 (soluble) protein-coding SHMT1 serine hydroxymethyltransferase 1 (soluble) O 14 kDa protein|cytoplasmic serine hydroxymethyltransferase|glycine hydroxymethyltransferase|serine hydroxymethyltransferase, cytosolic|serine methylase 20121230 -9606 6471 SHMT1P1 - SHMT1P HGNC:10851 1 1p34 serine hydroxymethyltransferase 1 (soluble) pseudogene 1 pseudo SHMT1P1 serine hydroxymethyltransferase 1 (soluble) pseudogene 1 O - 20121230 -9606 6472 SHMT2 - GLYA|SHMT HGNC:10852|MIM:138450|Ensembl:ENSG00000182199|HPRD:00717|Vega:OTTHUMG00000171246 12 12q12-q14 serine hydroxymethyltransferase 2 (mitochondrial) protein-coding SHMT2 serine hydroxymethyltransferase 2 (mitochondrial) O GLY A+|glycine auxotroph A, human complement for hamster|glycine hydroxymethyltransferase|serine aldolase|serine hydroxymethylase|serine hydroxymethyltransferase, mitochondrial|serine methylase|threonine aldolase 20121230 -9606 6473 SHOX - GCFX|PHOG|SHOXY|SS HGNC:10853|MIM:312865|MIM:400020|Ensembl:ENSG00000185960|HPRD:02430|Vega:OTTHUMG00000021053 X|Y Xp22.33;Yp11.3 short stature homeobox protein-coding SHOX short stature homeobox O growth control factor, X-linked|pseudoautosomal homeobox-containing osteogenic protein|short stature homeobox protein|short stature homeobox-containing protein 20121230 -9606 6474 SHOX2 - OG12|OG12X|SHOT HGNC:10854|MIM:602504|Ensembl:ENSG00000168779|Ensembl:ENSG00000258518|Vega:OTTHUMG00000158755 3 3q25.32 short stature homeobox 2 protein-coding SHOX2 short stature homeobox 2 O SHOX homologous gene on chromosome 3|homeobox protein Og12X|paired-related homeobox protein SHOT|short stature homeobox protein 2 20121230 -9606 6476 SI - - HGNC:10856|MIM:609845|Ensembl:ENSG00000090402|HPRD:01962|Vega:OTTHUMG00000158065 3 3q25.2-q26.2 sucrase-isomaltase (alpha-glucosidase) protein-coding SI sucrase-isomaltase (alpha-glucosidase) O oligosaccharide alpha-1,6-glucosidase|sucrase-isomaltase, intestinal 20121230 -9606 6477 SIAH1 - SIAH1A HGNC:10857|MIM:602212|Ensembl:ENSG00000196470|HPRD:03736|Vega:OTTHUMG00000175417 16 16q12 siah E3 ubiquitin protein ligase 1 protein-coding SIAH1 siah E3 ubiquitin protein ligase 1 O E3 ubiquitin-protein ligase SIAH1|seven in absentia homolog 1|siah-1a 20121230 -9606 6478 SIAH2 - hSiah2 HGNC:10858|MIM:602213|Ensembl:ENSG00000181788|HPRD:03737|Vega:OTTHUMG00000159847 3 3q25 siah E3 ubiquitin protein ligase 2 protein-coding SIAH2 siah E3 ubiquitin protein ligase 2 O E3 ubiquitin-protein ligase SIAH2|seven in absentia homolog 2|siah-2 20121230 -9606 6480 ST6GAL1 - SIAT1|ST6GalI|ST6N HGNC:10860|MIM:109675|Ensembl:ENSG00000073849|HPRD:00184|Vega:OTTHUMG00000156500 3 3q27-q28 ST6 beta-galactosamide alpha-2,6-sialyltranferase 1 protein-coding ST6GAL1 ST6 beta-galactosamide alpha-2,6-sialyltranferase 1 O B-cell antigen CD75|CMP-N-acetylneuraminate beta-galactosamide alpha-2,6-sialyltransferase|CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,6-sialyltransferase 1|ST6Gal I|alpha 2,6-ST 1|beta-galactoside alpha-2,6-sialyltransferase 1|sialyltransferase 1 (beta-galactoside alpha-2,6-sialyltransferase) 20121230 -9606 6482 ST3GAL1 - Gal-NAc6S|SIAT4A|SIATFL|ST3GalA|ST3GalA.1|ST3GalIA|ST3GalIA,1|ST3O HGNC:10862|MIM:607187|Ensembl:ENSG00000008513|HPRD:06219|Vega:OTTHUMG00000164534 8 8q24.22 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 protein-coding ST3GAL1 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 O CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,3-sialyltransferase 1|Gal-beta-1,3-GalNAc-alpha-2,3-sialyltransferase|SIAT4-A|ST3GalI|alpha 2,3-ST 1|beta-galactoside alpha-2,3-sialyltransferase 1|sialyltransferase 4A (beta-galactosidase alpha-2,3-sialytransferase)|sialyltransferase 4A (beta-galactoside alpha-2,3-sialyltransferase)|sialyltransferase 4A (beta-galactoside alpha-2,3-sialytransferase) 20121230 -9606 6483 ST3GAL2 - Gal-NAc6S|SIAT4B|ST3GALII|ST3GalA.2 HGNC:10863|MIM:607188|Ensembl:ENSG00000157350|HPRD:06220|Vega:OTTHUMG00000137580 16 16q22.1 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 protein-coding ST3GAL2 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 O CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,3-sialyltransferase 2|Gal-beta-1,3-GalNAc-alpha-2,3-sialyltransferase|SIAT4-B|ST3Gal II|alpha 2,3-ST 2|beta-galactoside alpha-2,3-sialyltransferase 2|beta-galactoside alpha-2,3-sialytransferase|sialyltransferase 4B (beta-galactosidase alpha-2,3-sialytransferase) 20121230 -9606 6484 ST3GAL4 - CGS23|NANTA3|SAT3|SIAT4|SIAT4C|ST3GalIV|STZ HGNC:10864|MIM:104240|Ensembl:ENSG00000110080|HPRD:00084|Vega:OTTHUMG00000165830 11 11q24.2 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 protein-coding ST3GAL4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 O CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,3-sialyltransferase 4|SAT-3|SIAT4-C|ST-4|ST3GalA.2|alpha 2,3-ST 4|alpha 2,3-sialyltransferase IV|alpha-3-N-acetylneuraminyltransferase|beta-galactoside alpha-2,3-sialyltransferase 4|gal-NAc6S|gal-beta-1,4-GalNAc-alpha-2,3-sialyltransferase|sialyltransferase 4C (beta-galactosidase alpha-2,3-sialytransferase)|sialyltransferase 4C (beta-galactoside alpha-2,3-sialytransferase) 20121230 -9606 6487 ST3GAL3 - MRT12|SIAT6|ST3GALII|ST3GalIII|ST3N HGNC:10866|MIM:606494|Ensembl:ENSG00000126091|HPRD:05930|Vega:OTTHUMG00000007561 1 1p34.1 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 protein-coding ST3GAL3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 O CMP-N-acetylneuraminate-beta-1,4-galactoside alpha-2,3-sialyltransferase|Gal beta-1,3(4)GlcNAc alpha-2,3 sialyltransferase|ST3Gal III|alpha 2,3-ST 3|alpha 2,3-sialyltransferase III|alpha-2,3-sialyltransferase II|sialyltransferase 6 (N-acetyllacosaminide alpha 2,3-sialyltransferase) 20121230 -9606 6489 ST8SIA1 - GD3S|SIAT8|SIAT8-A|SIAT8A|ST8SiaI HGNC:10869|MIM:601123|Ensembl:ENSG00000111728|HPRD:03078|Vega:OTTHUMG00000169098 12 12p12.1-p11.2 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 protein-coding ST8SIA1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 O alpha-2,8-sialyltransferase 8A|alpha-N-acetylneuraminide alpha-2,8-sialyltransferase|disialoganglioside (GD3) synthase|ganglioside GD3 synthase|ganglioside GT3 synthase|ganglioside-specific alpha-2,8-polysialyltransferase|sialyltransferase 8 (alpha-N-acetylneuraminate: alpha-2,8-sialytransferase, GD3 synthase) A|sialyltransferase 8A (alpha-N-acetylneuraminate: alpha-2,8-sialyltransferase, GD3 synthase)|sialytransferase St8Sia I 20121230 -9606 6490 PMEL - D12S53E|ME20|ME20-M|ME20M|P1|P100|PMEL17|SI|SIL|SILV|gp100 HGNC:10880|MIM:155550|Ensembl:ENSG00000185664|HPRD:01117|Vega:OTTHUMG00000170573 12 12q13-q14 premelanosome protein protein-coding PMEL premelanosome protein O melanocyte protein PMEL|melanocyte protein Pmel 17|melanocyte protein mel 17|melanocytes lineage-specific antigen GP100|melanoma-associated ME20 antigen|melanosomal matrix protein17|silver locus protein homolog|silver, mouse, homolog of 20121230 -9606 6491 STIL RP1-18D14.8 MCPH7|SIL HGNC:10879|MIM:181590|Ensembl:ENSG00000123473|HPRD:01627|Vega:OTTHUMG00000007851 1 1p32 SCL/TAL1 interrupting locus protein-coding STIL SCL/TAL1 interrupting locus O SCL-interrupting locus protein|TAL-1-interrupting locus protein 20121230 -9606 6492 SIM1 - bHLHe14 HGNC:10882|MIM:603128|Ensembl:ENSG00000112246|HPRD:07049|Vega:OTTHUMG00000015275 6 6q16.3-q21 single-minded homolog 1 (Drosophila) protein-coding SIM1 single-minded homolog 1 (Drosophila) O class E basic helix-loop-helix protein 14|single-minded homolog 1 20121230 -9606 6493 SIM2 - HMC13F06|HMC29C01|SIM|bHLHe15 HGNC:10883|MIM:600892|Ensembl:ENSG00000159263|HPRD:02935|Vega:OTTHUMG00000086637 21 21q22.13 single-minded homolog 2 (Drosophila) protein-coding SIM2 single-minded homolog 2 (Drosophila) O class E basic helix-loop-helix protein 15|single-minded homolog 2|single-minded homolog 2, short isoform|transcription factor SIM2 20121230 -9606 6494 SIPA1 - SPA1 HGNC:10885|MIM:602180|Ensembl:ENSG00000213445|HPRD:03713|Vega:OTTHUMG00000166541 11 11q13 signal-induced proliferation-associated 1 protein-coding SIPA1 signal-induced proliferation-associated 1 O GTPase-activating protein Spa-1|p130 SPA-1|signal-induced proliferation-associated gene 1|signal-induced proliferation-associated protein 1|sipa-1 20121230 -9606 6495 SIX1 - BOS3|DFNA23|TIP39 HGNC:10887|MIM:601205|Ensembl:ENSG00000126778|HPRD:03125|Vega:OTTHUMG00000140334 14 14q23.1 SIX homeobox 1 protein-coding SIX1 SIX homeobox 1 O homeobox protein SIX1|sine oculis homeobox homolog 1 20121230 -9606 6496 SIX3 - HPE2 HGNC:10889|MIM:603714|Ensembl:ENSG00000138083|HPRD:04756|Vega:OTTHUMG00000152424 2 2p21 SIX homeobox 3 protein-coding SIX3 SIX homeobox 3 O homeobox protein SIX3|sine oculis homeobox homolog 3 20121230 -9606 6497 SKI - SGS|SKV HGNC:10896|MIM:164780|Ensembl:ENSG00000157933|HPRD:01271|Vega:OTTHUMG00000001407 1 1p36.33 v-ski sarcoma viral oncogene homolog (avian) protein-coding SKI v-ski sarcoma viral oncogene homolog (avian) O proto-oncogene c-Ski|ski oncogene|ski oncoprotein 20121230 -9606 6498 SKIL - SNO|SnoA|SnoI|SnoN HGNC:10897|MIM:165340|Ensembl:ENSG00000136603|HPRD:01319|Vega:OTTHUMG00000158831 3 3q26 SKI-like oncogene protein-coding SKIL SKI-like oncogene O ski-like protein|ski-related oncogene snoN 20121230 -9606 6499 SKIV2L DADB-112B14.3 170A|DDX13|HLP|SKI2|SKI2W|SKIV2|THES2 HGNC:10898|MIM:600478|Ensembl:ENSG00000204351|HPRD:02724|Vega:OTTHUMG00000031146 6 6p21 superkiller viralicidic activity 2-like (S. cerevisiae) protein-coding SKIV2L superkiller viralicidic activity 2-like (S. cerevisiae) O helicase SKI2W|helicase-like protein 20121230 -9606 6500 SKP1 - EMC19|OCP-II|OCP2|SKP1A|TCEB1L|p19A HGNC:10899|MIM:601434|Ensembl:ENSG00000113558|HPRD:03255|Vega:OTTHUMG00000129117 5 5q31 S-phase kinase-associated protein 1 protein-coding SKP1 S-phase kinase-associated protein 1 O OCP-2|RNA polymerase II elongation factor-like protein OCP2|SIII|cyclin A/CDK2-associated p19|cyclin A/CDK2-associated protein p19|cyclin-A/CDK2-associated protein p19|organ of Corti protein 2|organ of Corti protein II|p19skp1|transcription elongation factor B 20121230 -9606 6502 SKP2 - FBL1|FBXL1|FLB1|p45 HGNC:10901|MIM:601436|Ensembl:ENSG00000145604|HPRD:03256|Vega:OTTHUMG00000131106 5 5p13 S-phase kinase-associated protein 2, E3 ubiquitin protein ligase protein-coding SKP2 S-phase kinase-associated protein 2, E3 ubiquitin protein ligase O CDK2/cyclin A-associated protein p45|F-box/LRR-repeat protein 1|S-phase kinase-associated protein 2|S-phase kinase-associated protein 2 (p45)|p45skp2 20121230 -9606 6503 SLA - SLA1|SLAP HGNC:10902|MIM:601099|Ensembl:ENSG00000155926|HPRD:03060|Vega:OTTHUMG00000164439 8 8q24 Src-like-adaptor protein-coding SLA Src-like-adaptor O SLAP-1|hSLAP|src-like-adapter|src-like-adapter protein 1 20121230 -9606 6504 SLAMF1 RP11-528G1.4 CD150|CDw150|SLAM HGNC:10903|MIM:603492|Ensembl:ENSG00000117090|HPRD:04603|Vega:OTTHUMG00000024006 1 1q23.3 signaling lymphocytic activation molecule family member 1 protein-coding SLAMF1 signaling lymphocytic activation molecule family member 1 O IPO-3|signaling lymphocytic activation molecule 20121230 -9606 6505 SLC1A1 RP11-6J24.1 EAAC1|EAAT3 HGNC:10939|MIM:133550|Ensembl:ENSG00000106688|HPRD:00597|Vega:OTTHUMG00000019468 9 9p24 solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1 protein-coding SLC1A1 solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1 O excitatory amino acid carrier 1|excitatory amino acid transporter 3|neuronal and epithelial glutamate transporter|sodium-dependent glutamate/aspartate transporter 3|solute carrier family 1 member 1 20121230 -9606 6506 SLC1A2 - EAAT2|GLT-1 HGNC:10940|MIM:600300|Ensembl:ENSG00000110436|HPRD:02625|Vega:OTTHUMG00000044391 11 11p13-p12 solute carrier family 1 (glial high affinity glutamate transporter), member 2 protein-coding SLC1A2 solute carrier family 1 (glial high affinity glutamate transporter), member 2 O excitatory amino acid transporter 2|excitotoxic amino acid transporter 2|glutamate/aspartate transporter II|sodium-dependent glutamate/aspartate transporter 2 20121230 -9606 6507 SLC1A3 - EA6|EAAT1|GLAST|GLAST1 HGNC:10941|MIM:600111|Ensembl:ENSG00000079215|HPRD:02523|Vega:OTTHUMG00000090793 5 5p13 solute carrier family 1 (glial high affinity glutamate transporter), member 3 protein-coding SLC1A3 solute carrier family 1 (glial high affinity glutamate transporter), member 3 O GLAST-1|excitatory amino acid transporter 1|sodium-dependent glutamate/aspartate transporter 1|solute carrier family 1 member 3 20121230 -9606 6508 SLC4A3 - AE3|SLC2C HGNC:11029|MIM:106195|Ensembl:ENSG00000114923|HPRD:00109|Vega:OTTHUMG00000059238 2 2q36 solute carrier family 4, anion exchanger, member 3 protein-coding SLC4A3 solute carrier family 4, anion exchanger, member 3 O AE 3|Anion exchanger 3, neuronal|CAE3/BAE3|anion exchange protein 3|cardiac/brain band 3-like protein|neuronal band 3-like protein|solute carrier family 4 member 3 20121230 -9606 6509 SLC1A4 - ASCT1|SATT HGNC:10942|MIM:600229|Ensembl:ENSG00000115902|HPRD:02576|Vega:OTTHUMG00000129537 2 2p15-p13 solute carrier family 1 (glutamate/neutral amino acid transporter), member 4 protein-coding SLC1A4 solute carrier family 1 (glutamate/neutral amino acid transporter), member 4 O ASCT-1|alanine/serine/cysteine/threonine transporter 1|glutamate/neutral amino acid transporter|neutral amino acid transporter A|solute carrier family 1 member 4 20121230 -9606 6510 SLC1A5 - AAAT|ASCT2|ATBO|M7V1|M7VS1|R16|RDRC HGNC:10943|MIM:109190|Ensembl:ENSG00000105281|HPRD:00173 19 19q13.3 solute carrier family 1 (neutral amino acid transporter), member 5 protein-coding SLC1A5 solute carrier family 1 (neutral amino acid transporter), member 5 O ATB(0)|RD114 virus receptor|RD114/simian type D retrovirus receptor|baboon M7 virus receptor|neutral amino acid transporter B|neutral amino acid transporter B(0)|sodium-dependent neutral amino acid transporter type 2|solute carrier family 1 member 5 20121230 -9606 6511 SLC1A6 - EAAT4 HGNC:10944|MIM:600637|Ensembl:ENSG00000105143|HPRD:09005 19 19p13.12 solute carrier family 1 (high affinity aspartate/glutamate transporter), member 6 protein-coding SLC1A6 solute carrier family 1 (high affinity aspartate/glutamate transporter), member 6 O excitatory amino acid transporter 4|sodium-dependent glutamate/aspartate transporter|solute carrier family 1 member 6 20121230 -9606 6512 SLC1A7 RP11-334A14.7 AAAT|EAAT5 HGNC:10945|MIM:604471|Ensembl:ENSG00000162383|HPRD:09194|Vega:OTTHUMG00000008937 1 1p32.3 solute carrier family 1 (glutamate transporter), member 7 protein-coding SLC1A7 solute carrier family 1 (glutamate transporter), member 7 O excitatory amino acid transporter 5|excitatory amino acid transporter 5 (retinal glutamate transporter)|excitatory amino acid transporter 5a long|retinal glutamate transporter|solute carrier family 1 member 7 20121230 -9606 6513 SLC2A1 - DYT17|DYT18|DYT9|EIG12|GLUT|GLUT1|GLUT1DS|PED HGNC:11005|MIM:138140|Ensembl:ENSG00000117394|HPRD:00683|Vega:OTTHUMG00000007657 1 1p34.2 solute carrier family 2 (facilitated glucose transporter), member 1 protein-coding SLC2A1 solute carrier family 2 (facilitated glucose transporter), member 1 O GLUT-1|glucose transporter type 1, erythrocyte/brain|hepG2 glucose transporter|solute carrier family 2, facilitated glucose transporter member 1 20121230 -9606 6514 SLC2A2 - GLUT2 HGNC:11006|MIM:138160|Ensembl:ENSG00000163581|HPRD:00685|Vega:OTTHUMG00000158997 3 3q26.1-q26.2 solute carrier family 2 (facilitated glucose transporter), member 2 protein-coding SLC2A2 solute carrier family 2 (facilitated glucose transporter), member 2 O GLUT-2|glucose transporter type 2, liver|solute carrier family 2, facilitated glucose transporter member 2 20121230 -9606 6515 SLC2A3 - GLUT3 HGNC:11007|MIM:138170|Ensembl:ENSG00000059804|HPRD:00686|Vega:OTTHUMG00000133685 12 12p13.3 solute carrier family 2 (facilitated glucose transporter), member 3 protein-coding SLC2A3 solute carrier family 2 (facilitated glucose transporter), member 3 O GLUT-3|glucose transporter type 3, brain|solute carrier family 2, facilitated glucose transporter member 3 20121230 -9606 6517 SLC2A4 - GLUT4 HGNC:11009|MIM:138190|Ensembl:ENSG00000181856|HPRD:00688|Vega:OTTHUMG00000102181 17 17p13 solute carrier family 2 (facilitated glucose transporter), member 4 protein-coding SLC2A4 solute carrier family 2 (facilitated glucose transporter), member 4 O GLUT-4|glucose transporter type 4, insulin-responsive|insulin-responsive glucose transporter type 4|solute carrier family 2, facilitated glucose transporter member 4 20121230 -9606 6518 SLC2A5 RP5-963K15.1 GLUT-5|GLUT5 HGNC:11010|MIM:138230|Ensembl:ENSG00000142583|HPRD:00690|Vega:OTTHUMG00000001771 1 1p36.2 solute carrier family 2 (facilitated glucose/fructose transporter), member 5 protein-coding SLC2A5 solute carrier family 2 (facilitated glucose/fructose transporter), member 5 O glucose transporter type 5, small intestine|glucose transporter-like protein 5|solute carrier family 2, facilitated glucose transporter member 5 20121230 -9606 6519 SLC3A1 - ATR1|CSNU1|D2H|NBAT|RBAT HGNC:11025|MIM:104614|Ensembl:ENSG00000138079|HPRD:00090|Vega:OTTHUMG00000128759 2 2p16.3 solute carrier family 3 (cystine, dibasic and neutral amino acid transporters, activator of cystine, dibasic and neutral amino acid transport), member 1 protein-coding SLC3A1 solute carrier family 3 (cystine, dibasic and neutral amino acid transporters, activator of cystine, dibasic and neutral amino acid transport), member 1 O B(0,+)-type amino acid transport protein|SLC3A1 variant B|SLC3A1 variant C|SLC3A1 variant D|SLC3A1 variant E|SLC3A1 variant F|SLC3A1 variant G|amino acid transporter 1|neutral and basic amino acid transport protein rBAT|solute carrier family 3 (cystine, dibasic and neutral amino acid transporters), member 1 20121230 -9606 6520 SLC3A2 - 4F2|4F2HC|4T2HC|CD98|CD98HC|MDU1|NACAE HGNC:11026|MIM:158070|Ensembl:ENSG00000168003|HPRD:01148|Vega:OTTHUMG00000074091 11 11q13 solute carrier family 3 (activators of dibasic and neutral amino acid transport), member 2 protein-coding SLC3A2 solute carrier family 3 (activators of dibasic and neutral amino acid transport), member 2 O 4F2 cell-surface antigen heavy chain|CD98 heavy chain|antigen defined by monoclonal antibody 4F2, heavy chain|antigen identified by monoclonal antibodies 4F2, TRA1.10, TROP4, and T43|lymphocyte activation antigen 4F2 large subunit|monoclonal antibody 44D7 20121230 -9606 6521 SLC4A1 - AE1|BND3|CD233|DI|EMPB3|EPB3|FR|RTA1A|SW|WD|WD1|WR HGNC:11027|MIM:109270|Ensembl:ENSG00000004939|HPRD:00175|Vega:OTTHUMG00000156843 17 17q21.31 solute carrier family 4, anion exchanger, member 1 (erythrocyte membrane protein band 3, Diego blood group) protein-coding SLC4A1 solute carrier family 4, anion exchanger, member 1 (erythrocyte membrane protein band 3, Diego blood group) O Froese blood group|Swann blood group|Waldner blood group|Wright blood group|anion exchange protein 1|anion exchanger 1|anion exchanger-1|band 3 anion transport protein|erythrocyte membrane protein band 3|erythroid anion exchange protein|solute carrier family 4, anion exchanger, number 1 20121230 -9606 6522 SLC4A2 - AE2|BND3L|EPB3L1|HKB3|NBND3 HGNC:11028|MIM:109280|Ensembl:ENSG00000164889|HPRD:02728|Vega:OTTHUMG00000158443 7 7q36.1 solute carrier family 4, anion exchanger, member 2 (erythrocyte membrane protein band 3-like 1) protein-coding SLC4A2 solute carrier family 4, anion exchanger, member 2 (erythrocyte membrane protein band 3-like 1) O AE 2|anion exchange protein 2|anion exchanger 2 type a|anion exchanger 2 type b1|anion exchanger 2 type b2|non-erythroid band 3-like protein|solute carrier family 4 member 2 20121230 -9606 6523 SLC5A1 RP1-127L4.1 D22S675|NAGT|SGLT1 HGNC:11036|MIM:182380|Ensembl:ENSG00000100170|HPRD:01668|Vega:OTTHUMG00000030768 22 22q12.3 solute carrier family 5 (sodium/glucose cotransporter), member 1 protein-coding SLC5A1 solute carrier family 5 (sodium/glucose cotransporter), member 1 O Na+/glucose cotransporter 1|high affinity sodium-glucose cotransporter|sodium/glucose cotransporter 1 20121230 -9606 6524 SLC5A2 - SGLT2 HGNC:11037|MIM:182381|Ensembl:ENSG00000140675|HPRD:08919|Vega:OTTHUMG00000176620 16 16p11.2 solute carrier family 5 (sodium/glucose cotransporter), member 2 protein-coding SLC5A2 solute carrier family 5 (sodium/glucose cotransporter), member 2 O Na(+)/glucose cotransporter 2|low affinity sodium-glucose cotransporter|sodium/glucose cotransporter 2|solute carrier family 5 (sodium/glucose transporter), member 2|solute carrier family 5 member 2 20121230 -9606 6525 SMTN - - HGNC:11126|MIM:602127|Ensembl:ENSG00000183963|HPRD:03675|Vega:OTTHUMG00000151203 22 22q12.2 smoothelin protein-coding SMTN smoothelin O - 20121230 -9606 6526 SLC5A3 - SMIT|SMIT1|SMIT2 HGNC:11038|MIM:600444|Ensembl:ENSG00000198743|HPRD:02708|Vega:OTTHUMG00000065821 21 21q22.12 solute carrier family 5 (sodium/myo-inositol cotransporter), member 3 protein-coding SLC5A3 solute carrier family 5 (sodium/myo-inositol cotransporter), member 3 O BCW2 protein|Na(+)/myo-inositol cotransporter|human solute carrier family 5, member 3, Sodium/myo-inositol cotransporter|sodium/myo-inositol cotransporter|sodium/myo-inositol cotransporter 1|sodium/myo-inositol transporter 1|solute carrier family 5 (inositol transporter), member 3|solute carrier family 5 (inositol transporters), member 3|solute carrier family 5 member 3 20121230 -9606 6527 SLC5A4 - DJ90G24.4|SAAT1|SGLT3 HGNC:11039|Ensembl:ENSG00000100191|HPRD:10238|Vega:OTTHUMG00000150007 22 22q12.3 solute carrier family 5 (low affinity glucose cotransporter), member 4 protein-coding SLC5A4 solute carrier family 5 (low affinity glucose cotransporter), member 4 O Na(+)/glucose cotransporter 3|low affinity sodium glucose cotransporter|low affinity sodium-glucose cotransporter|sodium transporter|sodium/glucose cotransporter 3|solute carrier family 5 (neutral amino acid transporters, system A), member 4|solute carrier family 5 member 4 20121230 -9606 6528 SLC5A5 - NIS|TDH1 HGNC:11040|MIM:601843|Ensembl:ENSG00000105641|HPRD:03504 19 19p13.11 solute carrier family 5 (sodium iodide symporter), member 5 protein-coding SLC5A5 solute carrier family 5 (sodium iodide symporter), member 5 O Na(+)/I(-) cotransporter|Na(+)/I(-) symporter|sodium/iodide cotransporter 20121230 -9606 6529 SLC6A1 - GABATHG|GABATR|GAT1 HGNC:11042|MIM:137165|Ensembl:ENSG00000157103|HPRD:00664|Vega:OTTHUMG00000044208 3 3p25.3 solute carrier family 6 (neurotransmitter transporter, GABA), member 1 protein-coding SLC6A1 solute carrier family 6 (neurotransmitter transporter, GABA), member 1 O GAT-1|sodium- and chloride-dependent GABA transporter 1|solute carrier family 6 member 1 20121230 -9606 6530 SLC6A2 - NAT1|NET|NET1|SLC6A5 HGNC:11048|MIM:163970|Ensembl:ENSG00000103546|HPRD:01232|Vega:OTTHUMG00000133208 16 16q12.2 solute carrier family 6 (neurotransmitter transporter, noradrenalin), member 2 protein-coding SLC6A2 solute carrier family 6 (neurotransmitter transporter, noradrenalin), member 2 O neurotransmitter transporter|norepinephrine transporter|sodium-dependent noradrenaline transporter|solute carrier family 6 member 5 20121230 -9606 6531 SLC6A3 - DAT|DAT1 HGNC:11049|MIM:126455|Ensembl:ENSG00000142319|HPRD:00543|Vega:OTTHUMG00000131016 5 5p15.3 solute carrier family 6 (neurotransmitter transporter, dopamine), member 3 protein-coding SLC6A3 solute carrier family 6 (neurotransmitter transporter, dopamine), member 3 O DA transporter|sodium-dependent dopamine transporter|solute carrier family 6 member 3 20121230 -9606 6532 SLC6A4 - 5-HTT|5-HTTLPR|5HTT|HTT|OCD1|SERT|SERT1|hSERT HGNC:11050|MIM:182138|Ensembl:ENSG00000108576|HPRD:01640|Vega:OTTHUMG00000132751 17 17q11.2 solute carrier family 6 (neurotransmitter transporter, serotonin), member 4 protein-coding SLC6A4 solute carrier family 6 (neurotransmitter transporter, serotonin), member 4 O 5-hydroxytryptamine transporter|5HT transporter|Na+/Cl- dependent serotonin transporter|sodium-dependent serotonin transporter 20121230 -9606 6533 SLC6A6 - TAUT HGNC:11052|MIM:186854|Ensembl:ENSG00000131389|HPRD:01734|Vega:OTTHUMG00000155525 3 3p25.1 solute carrier family 6 (neurotransmitter transporter, taurine), member 6 protein-coding SLC6A6 solute carrier family 6 (neurotransmitter transporter, taurine), member 6 O sodium- and chloride-dependent taurine transporter|solute carrier family 6 member 6 20121230 -9606 6534 SLC6A7 - PROT HGNC:11054|MIM:606205|Ensembl:ENSG00000011083|HPRD:09371|Vega:OTTHUMG00000130046 5 5q32 solute carrier family 6 (neurotransmitter transporter, L-proline), member 7 protein-coding SLC6A7 solute carrier family 6 (neurotransmitter transporter, L-proline), member 7 O brain-specific L-proline transporter|sodium-dependent proline transporter|solute carrier family 6 member 7 20121230 -9606 6535 SLC6A8 - CRT|CRTR|CT1 HGNC:11055|MIM:300036|Ensembl:ENSG00000130821|HPRD:02073|Vega:OTTHUMG00000024208 X Xq28 solute carrier family 6 (neurotransmitter transporter, creatine), member 8 protein-coding SLC6A8 solute carrier family 6 (neurotransmitter transporter, creatine), member 8 O creatine transporter 1|creatine transporter SLC6A8|sodium- and chloride-dependent creatine transporter 1|solute carrier family 6 member 8 20121230 -9606 6536 SLC6A9 - GLYT1 HGNC:11056|MIM:601019|Ensembl:ENSG00000196517|HPRD:03010|Vega:OTTHUMG00000008294 1 1p33 solute carrier family 6 (neurotransmitter transporter, glycine), member 9 protein-coding SLC6A9 solute carrier family 6 (neurotransmitter transporter, glycine), member 9 O glyT-1|sodium- and chloride-dependent glycine transporter 1|solute carrier family 6 member 9 20121230 -9606 6538 SLC6A11 - GAT-3|GAT3|GAT4 HGNC:11044|MIM:607952|Ensembl:ENSG00000132164|HPRD:06406|Vega:OTTHUMG00000129718 3 3p25.3 solute carrier family 6 (neurotransmitter transporter, GABA), member 11 protein-coding SLC6A11 solute carrier family 6 (neurotransmitter transporter, GABA), member 11 O sodium- and chloride-dependent GABA transporter 3|solute carrier family 6 member 11 20121230 -9606 6539 SLC6A12 - BGT-1|BGT1|GAT2 HGNC:11045|MIM:603080|Ensembl:ENSG00000111181|HPRD:04358|Vega:OTTHUMG00000090309 12 12p13 solute carrier family 6 (neurotransmitter transporter, betaine/GABA), member 12 protein-coding SLC6A12 solute carrier family 6 (neurotransmitter transporter, betaine/GABA), member 12 O Na(+)/Cl(-) betaine/GABA transporter|gamma-aminobutyric acid transporter|sodium- and chloride-dependent betaine transporter 20121230 -9606 6540 SLC6A13 - GAT-2|GAT2 HGNC:11046|Ensembl:ENSG00000010379|HPRD:10239|Vega:OTTHUMG00000168053 12 12p13.3 solute carrier family 6 (neurotransmitter transporter, GABA), member 13 protein-coding SLC6A13 solute carrier family 6 (neurotransmitter transporter, GABA), member 13 O GABA transport protein|sodium- and chloride-dependent GABA transporter 2 20121230 -9606 6541 SLC7A1 RP11-274A8.1 ATRC1|CAT-1|ERR|HCAT1|REC1L HGNC:11057|MIM:104615|Ensembl:ENSG00000139514|HPRD:00091|Vega:OTTHUMG00000016658 13 13q12.3 solute carrier family 7 (cationic amino acid transporter, y+ system), member 1 protein-coding SLC7A1 solute carrier family 7 (cationic amino acid transporter, y+ system), member 1 O CAT1|amino acid transporter, cationic 1|ecotropic retroviral leukemia receptor homolog|ecotropic retroviral receptor|ecotropic retrovirus receptor homolog|high affinity cationic amino acid transporter 1|solute carrier family 7 member 1|system Y+ basic amino acid transporter 20121230 -9606 6542 SLC7A2 - ATRC2|CAT2|HCAT2 HGNC:11060|MIM:601872|Ensembl:ENSG00000003989|HPRD:03524|Vega:OTTHUMG00000130819 8 8p22 solute carrier family 7 (cationic amino acid transporter, y+ system), member 2 protein-coding SLC7A2 solute carrier family 7 (cationic amino acid transporter, y+ system), member 2 O low affinity cationic amino acid transporter 2 20121230 -9606 6543 SLC8A2 - NCX2 HGNC:11069|MIM:601901|Ensembl:ENSG00000118160|HPRD:15990 19 19q13.3 solute carrier family 8 (sodium/calcium exchanger), member 2 protein-coding SLC8A2 solute carrier family 8 (sodium/calcium exchanger), member 2 O Na(+)/Ca(2+)-exchange protein 2|Na+/Ca2+-exchanging protein Nac2|sodium-calcium exchanger 2|sodium/calcium exchanger 2|solute carrier family 8 (sodium-calcium exchanger), member 2|solute carrier family 8 member 2 20121230 -9606 6545 SLC7A4 - CAT-4|CAT4|HCAT3|VH HGNC:11062|MIM:603752|Ensembl:ENSG00000099960|HPRD:04780|Vega:OTTHUMG00000150896 22 22q11.21 solute carrier family 7 (orphan transporter), member 4 protein-coding SLC7A4 solute carrier family 7 (orphan transporter), member 4 O Ig heavy chain variable region|VH 3 family|cationic amino acid transporter 4|solute carrier family 7 (cationic amino acid transporter, y+ system), member 4|solute carrier family 7 member 4 20121230 -9606 6546 SLC8A1 - NCX1 HGNC:11068|MIM:182305|Ensembl:ENSG00000183023|HPRD:01659|Vega:OTTHUMG00000102183 2 2p23-p22 solute carrier family 8 (sodium/calcium exchanger), member 1 protein-coding SLC8A1 solute carrier family 8 (sodium/calcium exchanger), member 1 O Na(+)/Ca(2+)-exchange protein 1|Na+/Ca++ exchanger|Na+/Ca2+ exchanger|sodium/calcium exchanger 1 20121230 -9606 6547 SLC8A3 - NCX3 HGNC:11070|MIM:607991|Ensembl:ENSG00000100678|HPRD:09723|Vega:OTTHUMG00000152342 14 14q24.1 solute carrier family 8 (sodium/calcium exchanger), member 3 protein-coding SLC8A3 solute carrier family 8 (sodium/calcium exchanger), member 3 O Na(+)/Ca(2+)-exchange protein 3|Na+/Ca2+ exchanger 3|sodium/calcium exchanger 3|sodium/calcium exchanger SLC8A3|solute carrier family 8 (sodium-calcium exchanger), member 3 20121230 -9606 6548 SLC9A1 RP4-633N17.1 APNH|NHE-1|NHE1 HGNC:11071|MIM:107310|Ensembl:ENSG00000090020|HPRD:00123|Vega:OTTHUMG00000004271 1 1p36.1-p35 solute carrier family 9, subfamily A (NHE1, cation proton antiporter 1), member 1 protein-coding SLC9A1 solute carrier family 9, subfamily A (NHE1, cation proton antiporter 1), member 1 O Na(+)/H(+) exchanger 1|Na-Li countertransporter|sodium/hydrogen exchanger 1|solute carrier family 9 (sodium/hydrogen exchanger), isoform 1 (antiporter, Na+/H+, amiloride sensitive)|solute carrier family 9 (sodium/hydrogen exchanger), member 1 (antiporter, Na+/H+, amiloride sensitive) 20121230 -9606 6549 SLC9A2 - NHE2 HGNC:11072|MIM:600530|Ensembl:ENSG00000115616|HPRD:02756|Vega:OTTHUMG00000130778 2 2q11.2 solute carrier family 9, subfamily A (NHE2, cation proton antiporter 2), member 2 protein-coding SLC9A2 solute carrier family 9, subfamily A (NHE2, cation proton antiporter 2), member 2 O NHE-2|Na(+)/H(+) exchanger 2|sodium/hydrogen exchanger 2|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9 (sodium/hydrogen exchanger), member 2|solute carrier family 9 member 2 20121230 -9606 6550 SLC9A3 - NHE3 HGNC:11073|MIM:182307|Ensembl:ENSG00000066230|HPRD:01660|Vega:OTTHUMG00000090315 5 5p15.3 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 protein-coding SLC9A3 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 O NHE-3|Na(+)/H(+) exchanger 3|sodium/hydrogen exchanger 3|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9 (sodium/hydrogen exchanger), member 3|solute carrier family 9 member 3 20121230 -9606 6551 SLC9A3P1 RP11-56A21.3 NHE3P|SLC9A3P HGNC:11074 10 10q11.23 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 pseudogene 1 pseudo SLC9A3P1 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 pseudogene 1 O - 20121209 -9606 6553 SLC9A5 - NHE5 HGNC:11078|MIM:600477|Ensembl:ENSG00000135740|HPRD:02723|Vega:OTTHUMG00000172935 16 16q22.1 solute carrier family 9, subfamily A (NHE5, cation proton antiporter 5), member 5 protein-coding SLC9A5 solute carrier family 9, subfamily A (NHE5, cation proton antiporter 5), member 5 O NHE-5|Na(+)/H(+) exchanger 5|sodium/hydrogen exchanger 5|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9 (sodium/hydrogen exchanger), member 5|solute carrier family 9 member 5 20121230 -9606 6554 SLC10A1 GIG29 NTCP HGNC:10905|MIM:182396|Ensembl:ENSG00000100652|HPRD:01672|Vega:OTTHUMG00000171236 14 14q24.1 solute carrier family 10 (sodium/bile acid cotransporter family), member 1 protein-coding SLC10A1 solute carrier family 10 (sodium/bile acid cotransporter family), member 1 O Na(+)/bile acid cotransporter|Na(+)/taurocholate transport protein|Na/taurocholate cotransporting polypeptide|cell growth-inhibiting gene 29 protein|growth-inhibiting protein 29|sodium/bile acid cotransporter|sodium/taurocholate cotransporter|sodium/taurocholate cotransporting polypeptide|solute carrier family 10 member 1 20121230 -9606 6555 SLC10A2 - ASBT|IBAT|ISBT|NTCP2|PBAM HGNC:10906|MIM:601295|Ensembl:ENSG00000125255|HPRD:03189|Vega:OTTHUMG00000017313 13 13q33 solute carrier family 10 (sodium/bile acid cotransporter family), member 2 protein-coding SLC10A2 solute carrier family 10 (sodium/bile acid cotransporter family), member 2 O Na(+)-dependent ileal bile acid transporter|ileal apical sodium-dependent bile acid transporter|ileal sodium-dependent bile acid transporter|ileal sodium/bile acid cotransporter|sodium/taurocholate cotransporting polypeptide, ileal 20121230 -9606 6556 SLC11A1 - LSH|NRAMP|NRAMP1 HGNC:10907|MIM:600266|Ensembl:ENSG00000018280|HPRD:02601|Vega:OTTHUMG00000086747 2 2q35 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 1 protein-coding SLC11A1 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 1 O NRAMP 1|natural resistance-associated macrophage protein 1|solute carrier family 11 (sodium/phosphate symporters), member 1 20121230 -9606 6557 SLC12A1 - BSC1|NKCC2 HGNC:10910|MIM:600839|Ensembl:ENSG00000074803|HPRD:02908|Vega:OTTHUMG00000131495 15 15q15-q21.1 solute carrier family 12 (sodium/potassium/chloride transporters), member 1 protein-coding SLC12A1 solute carrier family 12 (sodium/potassium/chloride transporters), member 1 O NKCC2A variant A|Na-K-2Cl cotransporter|bumetanide-sensitive sodium-(potassium)-chloride cotransporter 2|kidney-specific Na-K-Cl symporter|solute carrier family 12 member 1 20121230 -9606 6558 SLC12A2 - BSC|BSC2|NKCC1 HGNC:10911|MIM:600840|Ensembl:ENSG00000064651|HPRD:06775|Vega:OTTHUMG00000128983 5 5q23.3 solute carrier family 12 (sodium/potassium/chloride transporters), member 2 protein-coding SLC12A2 solute carrier family 12 (sodium/potassium/chloride transporters), member 2 O basolateral Na-K-Cl symporter|bumetanide-sensitive sodium-(potassium)-chloride cotransporter 1|solute carrier family 12 member 2 20121230 -9606 6559 SLC12A3 - NCC|NCCT|TSC HGNC:10912|MIM:600968|Ensembl:ENSG00000070915|HPRD:02984|Vega:OTTHUMG00000133284 16 16q13 solute carrier family 12 (sodium/chloride transporters), member 3 protein-coding SLC12A3 solute carrier family 12 (sodium/chloride transporters), member 3 O Na-Cl cotransporter|Na-Cl symporter|NaCl electroneutral thiazide-sensitive cotransporter|solute carrier family 12 member 3|thiazide-sensitive Na-Cl cotransporter|thiazide-sensitive sodium-chloride cotransporter 20121230 -9606 6560 SLC12A4 - KCC1 HGNC:10913|MIM:604119|Ensembl:ENSG00000124067|HPRD:04987|Vega:OTTHUMG00000137535 16 16q22.1 solute carrier family 12 (potassium/chloride transporters), member 4 protein-coding SLC12A4 solute carrier family 12 (potassium/chloride transporters), member 4 O K-Cl cotransporter|electroneutral potassium-chloride cotransporter 1|erythroid K-Cl cotransporter 1|erythroid K:Cl cotransporter|hKCC1|potassium/chloride cotransporter 1|solute carrier family 12 member 4 20121230 -9606 6561 SLC13A1 - NAS1|NaSi-1 HGNC:10916|MIM:606193|Ensembl:ENSG00000081800|HPRD:08394|Vega:OTTHUMG00000157087 7 7q31.32 solute carrier family 13 (sodium/sulfate symporters), member 1 protein-coding SLC13A1 solute carrier family 13 (sodium/sulfate symporters), member 1 O Na(+)/sulfate cotransporter|hNaSi-1|renal sodium/sulfate cotransporter|solute carrier family 13 (sodium/sulphate symporters), member 1|solute carrier family 13 member 1 20121230 -9606 6563 SLC14A1 - HUT11|HsT1341|JK|RACH1|RACH2|UT-B1|UT1|UTE HGNC:10918|MIM:613868|Ensembl:ENSG00000141469|HPRD:00195|Vega:OTTHUMG00000132617 18 18q11-q12 solute carrier family 14 (urea transporter), member 1 (Kidd blood group) protein-coding SLC14A1 solute carrier family 14 (urea transporter), member 1 (Kidd blood group) O SLC14A1 JK|urea transporter 1|urea transporter JK glycoprotein|urea transporter, erythrocyte|urea transporter-B1 20121230 -9606 6564 SLC15A1 RP11-130L10.1 HPECT1|HPEPT1|PEPT1 HGNC:10920|MIM:600544|Ensembl:ENSG00000088386|HPRD:02768|Vega:OTTHUMG00000017255 13 13q32.3 solute carrier family 15 (oligopeptide transporter), member 1 protein-coding SLC15A1 solute carrier family 15 (oligopeptide transporter), member 1 O Caco-2 oligopeptide transporter|intestinal H+/peptide cotransporter|macrophage oligopeptide transporter PEPT1|oligopeptide transporter, small intestine isoform|peptide transporter 1|solute carrier family 15 member 1 20121230 -9606 6565 SLC15A2 - PEPT2 HGNC:10921|MIM:602339|Ensembl:ENSG00000163406|HPRD:09088|Vega:OTTHUMG00000159423 3 3q13.33 solute carrier family 15 (H+/peptide transporter), member 2 protein-coding SLC15A2 solute carrier family 15 (H+/peptide transporter), member 2 O kidney H(+)/peptide cotransporter|oligopeptide transporter, kidney isoform|peptide transporter 2|solute carrier family 15 member 2 20121230 -9606 6566 SLC16A1 RP4-580L15.1 HHF7|MCT|MCT1 HGNC:10922|MIM:600682|Ensembl:ENSG00000155380|HPRD:02816|Vega:OTTHUMG00000012129 1 1p12 solute carrier family 16, member 1 (monocarboxylic acid transporter 1) protein-coding SLC16A1 solute carrier family 16, member 1 (monocarboxylic acid transporter 1) O MCT 1|monocarboxylate transporter 1|solute carrier family 16 (monocarboxylic acid transporters), member 1|solute carrier family 16 member 1 20121230 -9606 6567 SLC16A2 RP11-449M9.1 AHDS|DXS128|DXS128E|MCT 7|MCT 8|MCT7|MCT8|MRX22|XPCT HGNC:10923|MIM:300095|Ensembl:ENSG00000147100|HPRD:02106|Vega:OTTHUMG00000021857 X Xq13.2 solute carrier family 16, member 2 (thyroid hormone transporter) protein-coding SLC16A2 solute carrier family 16, member 2 (thyroid hormone transporter) O X-linked PEST-containing transporter|monocarboxylate transporter 7|monocarboxylate transporter 8 20121230 -9606 6568 SLC17A1 - NAPI-1|NPT-1|NPT1 HGNC:10929|MIM:182308|Ensembl:ENSG00000124568|HPRD:01661|Vega:OTTHUMG00000016297 6 6p22.2 solute carrier family 17 (sodium phosphate), member 1 protein-coding SLC17A1 solute carrier family 17 (sodium phosphate), member 1 O Na(+)/PI cotransporter 1|na/Pi-4|renal Na(+)-dependent phosphate cotransporter 1|renal sodium-dependent phosphate transport protein 1|renal sodium-phosphate transport protein 1|sodium phosphate transporter|sodium-dependent phosphate transport protein 1|sodium/phosphate cotransporter 1|sodium/phosphate type I cotransporter|solute carrier family 17 (vesicular glutamate transporter), member 1|solute carrier family 17 member 1 20121230 -9606 6569 SLC34A1 - FRTS2|NAPI-3|NPHLOP1|NPT2|NPTIIa|SLC11|SLC17A2 HGNC:11019|MIM:182309|Ensembl:ENSG00000131183|HPRD:08918|Vega:OTTHUMG00000130857 5 5q35 solute carrier family 34 (sodium phosphate), member 1 protein-coding SLC34A1 solute carrier family 34 (sodium phosphate), member 1 O Na(+)-dependent phosphate cotransporter 2A|Na(+)/Pi cotransporter 2A|Na+-phosphate cotransporter type II|naPi-2a|renal sodium-dependent phosphate transporter|sodium-dependent phosphate transport protein 2A|sodium-phosphate transport protein 2A|sodium/phosphate co-transporter|sodium/phosphate cotransporter 2A|solute carrier family 17 (sodium phosphate), member 2|solute carrier family 34 member 1 20121230 -9606 6570 SLC18A1 - CGAT|VAT1|VMAT1 HGNC:10934|MIM:193002|Ensembl:ENSG00000036565|HPRD:01897|Vega:OTTHUMG00000097017 8 8p21.3 solute carrier family 18 (vesicular monoamine), member 1 protein-coding SLC18A1 solute carrier family 18 (vesicular monoamine), member 1 O chromaffin granule amine transporter|solute carrier family 18 member 1|vesicular amine transporter 1 20121230 -9606 6571 SLC18A2 - SVAT|SVMT|VAT2|VMAT2 HGNC:10935|MIM:193001|Ensembl:ENSG00000165646|HPRD:01896|Vega:OTTHUMG00000019121 10 10q25 solute carrier family 18 (vesicular monoamine), member 2 protein-coding SLC18A2 solute carrier family 18 (vesicular monoamine), member 2 O monoamine neurotransmitter transporter|monoamine transporter|solute carrier family 18 member 2|synaptic vesicular amine transporter|vesicle monoamine transporter type 2|vesicle monoamine/H+ antiporter|vesicular amine transporter 2 20121230 -9606 6572 SLC18A3 - VACHT HGNC:10936|MIM:600336|Ensembl:ENSG00000187714|HPRD:08979|Vega:OTTHUMG00000018196 10 10q11.2 solute carrier family 18 (vesicular acetylcholine), member 3 protein-coding SLC18A3 solute carrier family 18 (vesicular acetylcholine), member 3 O solute carrier family 18 member 3|solute carrier family 18, member 3|vesicular acetylcholine transporter 20121230 -9606 6573 SLC19A1 - CHMD|FOLT|IFC1|REFC|RFC1 HGNC:10937|MIM:600424|Ensembl:ENSG00000173638|HPRD:02691|Vega:OTTHUMG00000090397 21 21q22.3 solute carrier family 19 (folate transporter), member 1 protein-coding SLC19A1 solute carrier family 19 (folate transporter), member 1 O IFC-1|RFC|folate transporter 1|intestinal folate carrier 1|placental folate transporter|reduced folate carrier protein|solute carrier family 19 member 1 20121230 -9606 6574 SLC20A1 - GLVR1|Glvr-1|PIT1|PiT-1 HGNC:10946|MIM:137570|Ensembl:ENSG00000144136|HPRD:08846|Vega:OTTHUMG00000131317 2 2q13 solute carrier family 20 (phosphate transporter), member 1 protein-coding SLC20A1 solute carrier family 20 (phosphate transporter), member 1 O gibbon ape leukemia virus receptor 1|leukemia virus receptor 1 homolog|sodium-dependent phosphate transporter 1|solute carrier family 20 member 1 20121230 -9606 6575 SLC20A2 - GLVR-2|GLVR2|IBGC3|MLVAR|PIT-2|PIT2|RAM1 HGNC:10947|MIM:158378|Ensembl:ENSG00000168575|HPRD:08865|Vega:OTTHUMG00000164169 8 8p11.21 solute carrier family 20 (phosphate transporter), member 2 protein-coding SLC20A2 solute carrier family 20 (phosphate transporter), member 2 O gibbon ape leukemia virus receptor 2|murine leukemia virus, amphotropic, receptor for|sodium-dependent phosphate transporter 2 20121230 -9606 6576 SLC25A1 - CTP|SEA|SLC20A3 HGNC:10979|MIM:190315|Ensembl:ENSG00000100075|HPRD:01832|Vega:OTTHUMG00000150123 22 22q11.21 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 protein-coding SLC25A1 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 O citrate transport protein|solute carrier family 20 (mitochondrial citrate transporter), member 3|tricarboxylate carrier protein|tricarboxylate transport protein, mitochondrial 20121230 -9606 6578 SLCO2A1 - MATR1|OATP2A1|PGT|PHOAR2|SLC21A2 HGNC:10955|MIM:601460|Ensembl:ENSG00000174640|HPRD:03269|Vega:OTTHUMG00000159745 3 3q21 solute carrier organic anion transporter family, member 2A1 protein-coding SLCO2A1 solute carrier organic anion transporter family, member 2A1 O matrin F/G 1|prostaglandin transporter|solute carrier family 21 (prostaglandin transporter), member 2|solute carrier family 21 member 2|solute carrier organic anion transporter family member 2A1 20121230 -9606 6579 SLCO1A2 - OATP|OATP-A|OATP1A2|SLC21A3 HGNC:10956|MIM:602883|Ensembl:ENSG00000084453|HPRD:09112|Vega:OTTHUMG00000156259 12 12p12 solute carrier organic anion transporter family, member 1A2 protein-coding SLCO1A2 solute carrier organic anion transporter family, member 1A2 O OATP-1|organic anion transporting polypeptide A|organic anion-transporting polypeptide 1|sodium-independent organic anion transporter|solute carrier family 21 (organic anion transporter), member 3|solute carrier family 21 member 3|solute carrier organic anion transporter family member 1A2 20121230 -9606 6580 SLC22A1 - HOCT1|OCT1|oct1_cds HGNC:10963|MIM:602607|Ensembl:ENSG00000175003|HPRD:04007|Vega:OTTHUMG00000015947 6 6q25.3 solute carrier family 22 (organic cation transporter), member 1 protein-coding SLC22A1 solute carrier family 22 (organic cation transporter), member 1 O organic cation transporter 1|solute carrier family 22 member 1 20121230 -9606 6581 SLC22A3 RP11-72O9.3 EMT|EMTH|OCT3 HGNC:10967|MIM:604842|Ensembl:ENSG00000146477|HPRD:05328|Vega:OTTHUMG00000015953 6 6q25.3 solute carrier family 22 (extraneuronal monoamine transporter), member 3 protein-coding SLC22A3 solute carrier family 22 (extraneuronal monoamine transporter), member 3 O EMT organic cation transporter 3|extraneuronal monoamine transporter|organic cation transporter 3|solute carrier family 22 member 3 20121230 -9606 6582 SLC22A2 RP11-317M22.2 OCT2 HGNC:10966|MIM:602608|Ensembl:ENSG00000112499|HPRD:04008|Vega:OTTHUMG00000015950 6 6q25.3 solute carrier family 22 (organic cation transporter), member 2 protein-coding SLC22A2 solute carrier family 22 (organic cation transporter), member 2 O organic cation transporter 2|solute carrier family 22 member 2 20121230 -9606 6583 SLC22A4 - OCTN1 HGNC:10968|MIM:604190|Ensembl:ENSG00000197208|HPRD:09171|Vega:OTTHUMG00000059648 5 5q31.1 solute carrier family 22 (organic cation/ergothioneine transporter), member 4 protein-coding SLC22A4 solute carrier family 22 (organic cation/ergothioneine transporter), member 4 O ET transporter|ergothioneine transporter|integral membrane transport protein|organic cation/carnitine transporter 1|solute carrier family 22 member 4 20121230 -9606 6584 SLC22A5 - CDSP|OCTN2|OCTN2VT HGNC:10969|MIM:603377|Ensembl:ENSG00000197375|HPRD:04539|Vega:OTTHUMG00000059634 5 5q23.3 solute carrier family 22 (organic cation/carnitine transporter), member 5 protein-coding SLC22A5 solute carrier family 22 (organic cation/carnitine transporter), member 5 O high-affinity sodium dependent carnitine cotransporter|organic cation/carnitine transporter 2|solute carrier family 22 member 5 20121230 -9606 6585 SLIT1 RP11-175O19.2 MEGF4|SLIL1|SLIT-1|SLIT3 HGNC:11085|MIM:603742|Ensembl:ENSG00000187122|HPRD:04773|Vega:OTTHUMG00000018843 10 10q23.3-q24 slit homolog 1 (Drosophila) protein-coding SLIT1 slit homolog 1 (Drosophila) O multiple EGF-like domains protein 4|multiple epidermal growth factor-like domains protein 4|slit homolog 1 protein 20121230 -9606 6586 SLIT3 UNQ691/PRO1336 MEGF5|SLIL2|SLIT1|Slit-3|slit2 HGNC:11087|MIM:603745|Ensembl:ENSG00000184347|HPRD:04775|Vega:OTTHUMG00000130409 5 5q35 slit homolog 3 (Drosophila) protein-coding SLIT3 slit homolog 3 (Drosophila) O multiple EGF-like domains protein 5|multiple epidermal growth factor-like domains protein 5|slit homolog 3 protein 20121230 -9606 6588 SLN - - HGNC:11089|MIM:602203|Ensembl:ENSG00000170290|HPRD:03729 11 11q22-q23 sarcolipin protein-coding SLN sarcolipin O - 20121230 -9606 6590 SLPI - ALK1|ALP|BLPI|HUSI|HUSI-I|MPI|WAP4|WFDC4 HGNC:11092|MIM:107285|Ensembl:ENSG00000124107|HPRD:00121|Vega:OTTHUMG00000033075 20 20q12 secretory leukocyte peptidase inhibitor protein-coding SLPI secretory leukocyte peptidase inhibitor O HUSI-1|WAP four-disulfide core domain protein 4|antileukoproteinase|mucus proteinase inhibitor|protease inhibitor WAP4|secretory leukocyte protease inhibitor (antileukoproteinase)|seminal proteinase inhibitor 20121230 -9606 6591 SNAI2 - SLUG|SLUGH1|SNAIL2|WS2D HGNC:11094|MIM:602150|Ensembl:ENSG00000019549|HPRD:03689|Vega:OTTHUMG00000149912 8 8q11 snail homolog 2 (Drosophila) protein-coding SNAI2 snail homolog 2 (Drosophila) O neural crest transcription factor SLUG|protein snail homolog 2|slug (chicken homolog), zinc finger protein|zinc finger protein SNAI2 20121230 -9606 6594 SMARCA1 RP3-353H6.2 ISWI|NURF140|SNF2L|SNF2L1|SNF2LB|SNF2LT|SWI|SWI2 HGNC:11097|MIM:300012|Ensembl:ENSG00000102038|HPRD:02055|Vega:OTTHUMG00000022370 X Xq25 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 protein-coding SMARCA1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 O ATP-dependent helicase SMARCA1|SNF2-like 1|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin a1|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 1|global transcription activator homologous sequence|nucleosome-remodeling factor subunit SNF2L|probable global transcription activator SNF2L1|sucrose nonfermenting 2-like protein 1 20121230 -9606 6595 SMARCA2 - BAF190|BRM|NCBRS|SNF2|SNF2L2|SNF2LA|SWI2|Sth1p|hBRM|hSNF2a HGNC:11098|MIM:600014|Ensembl:ENSG00000080503|HPRD:02483|Vega:OTTHUMG00000019445 9 9p22.3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 protein-coding SMARCA2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 O ATP-dependent helicase SMARCA2|BAF190B|BRG1-associated factor 190B|SNF2-alpha|SNF2/SWI2-like protein 2|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin a2|global transcription activator homologous sequence|probable global transcription activator SNF2L2|protein brahma homolog|sucrose nonfermenting 2-like protein 2 20121230 -9606 6596 HLTF - HIP116|HIP116A|HLTF1|RNF80|SMARCA3|SNF2L3|ZBU1 HGNC:11099|MIM:603257|Ensembl:ENSG00000071794|HPRD:04461|Vega:OTTHUMG00000159534 3 3q25.1-q26.1 helicase-like transcription factor protein-coding HLTF helicase-like transcription factor O DNA-binding protein/plasminogen activator inhibitor 1 regulator|DNA-binding protein/plasminogen activator inhibitor-1 regulator|RING finger protein 80|SNF2-like 3|SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 3|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 3|sucrose nonfermenting protein 2-like 3|sucrose nonfermenting-like 3 20121230 -9606 6597 SMARCA4 - BAF190|BAF190A|BRG1|MRD16|RTPS2|SNF2|SNF2L4|SNF2LB|SWI2|hSNF2b HGNC:11100|MIM:603254|Ensembl:ENSG00000127616|HPRD:04459|Vega:OTTHUMG00000169272 19 19p13.2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 protein-coding SMARCA4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 O ATP-dependent helicase SMARCA4|BRG1-associated factor 190A|BRM/SWI2-related gene 1|SNF2-beta|SNF2-like 4|brahma protein-like 1|global transcription activator homologous sequence|homeotic gene regulator|mitotic growth and transcription activator|nuclear protein GRB1|protein BRG-1|protein brahma homolog 1|sucrose nonfermenting-like 4|transcription activator BRG1 20121230 -9606 6598 SMARCB1 - BAF47|INI1|MRD15|RDT|RTPS1|SNF5|SNF5L1|Sfh1p|Snr1|hSNFS HGNC:11103|MIM:601607|Ensembl:ENSG00000099956|HPRD:03364|Vega:OTTHUMG00000150737 22 22q11.23|22q11 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 protein-coding SMARCB1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 O BRG1-associated factor 47|SNF5 homolog|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily B member 1|hSNF5|integrase interactor 1 protein|malignant rhabdoid tumor suppressor|sucrose nonfermenting, yeast, homolog-like 1 20121230 -9606 6599 SMARCC1 - BAF155|CRACC1|Rsc8|SRG3|SWI3 HGNC:11104|MIM:601732|Ensembl:ENSG00000173473|HPRD:03435|Vega:OTTHUMG00000133519 3 3p21.31 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 1 protein-coding SMARCC1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 1 O BRG1-associated factor 155|SWI/SNF complex 155 kDa subunit|SWI/SNF complex subunit SMARCC1|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily C member 1|chromatin remodeling complex BAF155 subunit|mammalian chromatin remodeling complex BRG1-associated factor 155 20121230 -9606 6601 SMARCC2 - BAF170|CRACC2|Rsc8 HGNC:11105|MIM:601734|Ensembl:ENSG00000139613|HPRD:03437|Vega:OTTHUMG00000170288 12 12q13.2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 2 protein-coding SMARCC2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 2 O BRG1-associated factor 170|SWI/SNF complex 170 kDa subunit|SWI/SNF complex subunit SMARCC2|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily C member 2|SWI3-like protein|chromatin remodeling complex BAF170 subunit|mammalian chromatin remodeling complex BRG1-associated factor 170 20121230 -9606 6602 SMARCD1 - BAF60A|CRACD1|Rsc6p HGNC:11106|MIM:601735|Ensembl:ENSG00000066117|HPRD:03438|Vega:OTTHUMG00000150194 12 12q13-q14 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 protein-coding SMARCD1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 O 60 kDa BRG-1/Brm-associated factor subunit A|BRG1-associated factor 60A|SWI/SNF complex 60 kDa subunit A|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily D member 1|Swp73-like protein|chromatin remodeling complex BAF60A subunit|mammalian chromatin remodeling complex BRG1-associated factor 60A 20121230 -9606 6603 SMARCD2 PRO2451 BAF60B|CRACD2|Rsc6p HGNC:11107|MIM:601736|Ensembl:ENSG00000108604|HPRD:03439|Vega:OTTHUMG00000179045 17 17q23-q24 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 protein-coding SMARCD2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 O 60 kDa BRG-1/Brm-associated factor subunit B|BRG1-associated factor 60B|SWI/SNF complex 60 kDa subunit B|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily D member 2|Swp73-like protein|chromatin remodeling complex BAF60B subunit|mammalian chromatin remodeling complex BRG1-associated factor 60B 20121230 -9606 6604 SMARCD3 - BAF60C|CRACD3|Rsc6p HGNC:11108|MIM:601737|Ensembl:ENSG00000082014|HPRD:03440|Vega:OTTHUMG00000157431 7 7q35-q36 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 protein-coding SMARCD3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 O 60 kDa BRG-1/Brm-associated factor subunit C|BRG1-associated factor 60C|SWI/SNF complex 60 kDa subunit C|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily D member 3|Swp73-like protein|chromatin remodeling complex BAF60C subunit|mammalian chromatin remodeling complex BRG1-associated factor 60C 20121230 -9606 6605 SMARCE1 - BAF57 HGNC:11109|MIM:603111|Ensembl:ENSG00000073584|HPRD:04382|Vega:OTTHUMG00000133367 17 17q21.2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 protein-coding SMARCE1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 O BRG1-associated factor 57|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin e1|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily E member 1|chromatin remodeling complex BRG1-associated factor 57 20121230 -9606 6606 SMN1 - BCD541|GEMIN1|SMA|SMA1|SMA2|SMA3|SMA4|SMA@|SMN|SMNT|T-BCD541 HGNC:11117|MIM:600354|Ensembl:ENSG00000172062|HPRD:02646|Vega:OTTHUMG00000099361 5 5q13.2 survival of motor neuron 1, telomeric protein-coding SMN1 survival of motor neuron 1, telomeric O component of gems 1|gemin 1|gemin-1|survival motor neuron 1 protein|survival motor neuron protein 20121230 -9606 6607 SMN2 - BCD541|C-BCD541|GEMIN1|SMNC HGNC:11118|MIM:601627|Ensembl:ENSG00000205571|HPRD:09036|Vega:OTTHUMG00000099389 5 5q13.2 survival of motor neuron 2, centromeric protein-coding SMN2 survival of motor neuron 2, centromeric O component of gems 1|gemin-1|survival motor neuron protein 20121230 -9606 6608 SMO - FZD11|Gx|SMOH HGNC:11119|MIM:601500|Ensembl:ENSG00000128602|HPRD:03294|Vega:OTTHUMG00000158421 7 7q32.3 smoothened, frizzled family receptor protein-coding SMO smoothened, frizzled family receptor O frizzled family member 11|protein Gx|seven transmembrane helix receptor|smoothened homolog|smoothened, seven transmembrane spanning receptor 20121230 -9606 6609 SMPD1 - ASM|ASMASE|NPD HGNC:11120|MIM:607608|Ensembl:ENSG00000166311|HPRD:06353|Vega:OTTHUMG00000165453 11 11p15.4-p15.1 sphingomyelin phosphodiesterase 1, acid lysosomal protein-coding SMPD1 sphingomyelin phosphodiesterase 1, acid lysosomal O acid sphingomyelinase|sphingomyelin phosphodiesterase 20121230 -9606 6610 SMPD2 RP5-919F19.2 ISC1|NSMASE|NSMASE1 HGNC:11121|MIM:603498|Ensembl:ENSG00000135587|HPRD:04608|Vega:OTTHUMG00000015348 6 6q21 sphingomyelin phosphodiesterase 2, neutral membrane (neutral sphingomyelinase) protein-coding SMPD2 sphingomyelin phosphodiesterase 2, neutral membrane (neutral sphingomyelinase) O N-SMase|lyso-PAF-PLC|lyso-platelet-activating factor-phospholipase C|neutral sphingomyelinase|sphingomyelin phosphodiesterase 2 20121230 -9606 6611 SMS - MRSR|SPMSY|SRS|SpS HGNC:11123|MIM:300105|Ensembl:ENSG00000102172|HPRD:02115|Vega:OTTHUMG00000021239 X Xp22.1 spermine synthase protein-coding SMS spermine synthase O spermidine aminopropyltransferase 20121230 -9606 6612 SUMO3 - SMT3A|SMT3H1|SUMO-3|Smt3B HGNC:11124|MIM:602231|Ensembl:ENSG00000184900|HPRD:03754|Vega:OTTHUMG00000090256 21 21q22.3 SMT3 suppressor of mif two 3 homolog 3 (S. cerevisiae) protein-coding SUMO3 SMT3 suppressor of mif two 3 homolog 3 (S. cerevisiae) O SMT3 homolog 1|SMT3 suppressor of mif two 3 homolog 1|SUMO-2|small ubiquitin-related modifier 3|ubiquitin-like protein SMT3A|ubiquitin-like protein SMT3B 20121230 -9606 6613 SUMO2 - HSMT3|SMT3B|SMT3H2|SUMO3|Smt3A HGNC:11125|MIM:603042|Ensembl:ENSG00000188612|HPRD:04332|Vega:OTTHUMG00000179481 17 17q25.1 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) protein-coding SUMO2 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) O SMT3 homolog 2|sentrin 2|small ubiquitin-like modifier 2|small ubiquitin-related modifier 2|ubiquitin-like protein SMT3A|ubiquitin-like protein SMT3B 20121230 -9606 6614 SIGLEC1 - CD169|SIGLEC-1|SN|dJ1009E24.1 HGNC:11127|MIM:600751|Ensembl:ENSG00000088827|HPRD:02854|Vega:OTTHUMG00000031757 20 20p13 sialic acid binding Ig-like lectin 1, sialoadhesin protein-coding SIGLEC1 sialic acid binding Ig-like lectin 1, sialoadhesin O sialic acid-binding Ig-like lectin 1|sialic acid-binding immunoglobulin-like lectin 1|sialoadhesin 20121230 -9606 6615 SNAI1 - SLUGH2|SNA|SNAH|SNAIL|SNAIL1|dJ710H13.1 HGNC:11128|MIM:604238|Ensembl:ENSG00000124216|HPRD:05025|Vega:OTTHUMG00000033048 20 20q13.2 snail homolog 1 (Drosophila) protein-coding SNAI1 snail homolog 1 (Drosophila) O protein sna|protein snail homolog 1|snail 1 homolog|snail 1 zinc finger protein|snail 1, zinc finger protein|zinc finger protein SNAI1 20121230 -9606 6616 SNAP25 - RIC-4|RIC4|SEC9|SNAP|SNAP-25|bA416N4.2|dJ1068F16.2 HGNC:11132|MIM:600322|Ensembl:ENSG00000132639|HPRD:02637|Vega:OTTHUMG00000031863 20 20p12-p11.2 synaptosomal-associated protein, 25kDa protein-coding SNAP25 synaptosomal-associated protein, 25kDa O SUP|resistance to inhibitors of cholinesterase 4 homolog|super protein|synaptosomal-associated protein 25 20121230 -9606 6617 SNAPC1 - PTFgamma|SNAP43 HGNC:11134|MIM:600591|Ensembl:ENSG00000023608|HPRD:08998|Vega:OTTHUMG00000140343 14 14q22 small nuclear RNA activating complex, polypeptide 1, 43kDa protein-coding SNAPC1 small nuclear RNA activating complex, polypeptide 1, 43kDa O PSE-binding factor subunit gamma|PTF subunit gamma|SNAPc 43 kDa subunit|SNAPc subunit 1|proximal sequence element-binding transcription factor subunit gamma|small nuclear RNA-activating complex polypeptide 1|snRNA-activating protein complex 43 kDa subunit|snRNA-activating protein complex subunit 1 20121230 -9606 6618 SNAPC2 - PTFDELTA|SNAP45 HGNC:11135|MIM:605076|Ensembl:ENSG00000104976|HPRD:05464 19 19p13 small nuclear RNA activating complex, polypeptide 2, 45kDa protein-coding SNAPC2 small nuclear RNA activating complex, polypeptide 2, 45kDa O PSE-binding factor subunit delta|PTF subunit delta|SNAPC 45 kDa subunit|SNAPc subunit 2|proximal sequence element-binding transcription factor subunit delta|small nuclear RNA-activating complex polypeptide 2|snRNA-activating protein complex 45 kDa subunit|snRNA-activating protein complex subunit 2 20121230 -9606 6619 SNAPC3 RP11-307K19.1 PTFbeta|SNAP50 HGNC:11136|MIM:602348|Ensembl:ENSG00000164975|HPRD:03826|Vega:OTTHUMG00000019583 9 9p22.3 small nuclear RNA activating complex, polypeptide 3, 50kDa protein-coding SNAPC3 small nuclear RNA activating complex, polypeptide 3, 50kDa O PSE-binding factor subunit beta|PTF subunit beta|SNAPc 50 kDa subunit|SNAPc subunit 3|proximal sequence element-binding transcription factor subunit beta|small nuclear RNA-activating complex polypeptide 3|snRNA-activating protein complex 50 kDa subunit|snRNA-activating protein complex subunit 3 20121230 -9606 6620 SNCB - - HGNC:11140|MIM:602569|Ensembl:ENSG00000074317|HPRD:03980|Vega:OTTHUMG00000130661 5 5q35 synuclein, beta protein-coding SNCB synuclein, beta O beta-synuclein 20121230 -9606 6621 SNAPC4 - PTFalpha|SNAP190 HGNC:11137|MIM:602777|Ensembl:ENSG00000165684|HPRD:04146|Vega:OTTHUMG00000020929 9 9q34.3 small nuclear RNA activating complex, polypeptide 4, 190kDa protein-coding SNAPC4 small nuclear RNA activating complex, polypeptide 4, 190kDa O PSE-binding factor subunit alpha|PTF subunit alpha|SNAPc 190 kDa subunit|SNAPc subunit 4|proximal sequence element-binding transcription factor subunit alpha|snRNA-activating protein complex 190 kDa subunit|snRNA-activating protein complex subunit 4 20121230 -9606 6622 SNCA - NACP|PARK1|PARK4|PD1 HGNC:11138|MIM:163890|Ensembl:ENSG00000145335|HPRD:01227|Vega:OTTHUMG00000130948 4 4q21 synuclein, alpha (non A4 component of amyloid precursor) protein-coding SNCA synuclein, alpha (non A4 component of amyloid precursor) O alpha-synuclein|non A-beta component of AD amyloid|synuclein alpha-140 20121230 -9606 6623 SNCG - BCSG1|SR HGNC:11141|MIM:602998|Ensembl:ENSG00000173267|HPRD:04297|Vega:OTTHUMG00000018656 10 10q23.2-q23.3 synuclein, gamma (breast cancer-specific protein 1) protein-coding SNCG synuclein, gamma (breast cancer-specific protein 1) O breast cancer-specific gene 1 protein|gamma-synuclein|persyn|synoretin 20121230 -9606 6624 FSCN1 - FAN1|HSN|SNL|p55 HGNC:11148|MIM:602689|Ensembl:ENSG00000075618|HPRD:04068|Vega:OTTHUMG00000090599 7 7p22 fascin homolog 1, actin-bundling protein (Strongylocentrotus purpuratus) protein-coding FSCN1 fascin homolog 1, actin-bundling protein (Strongylocentrotus purpuratus) O 55 kDa actin-bundling protein|fascin|singed-like (fascin homolog, sea urchin) 20121230 -9606 6625 SNRNP70 - RNPU1Z|RPU1|SNRP70|Snp1|U1-70K|U170K|U1AP|U1RNP HGNC:11150|MIM:180740|Ensembl:ENSG00000104852|HPRD:01617 19 19q13.3 small nuclear ribonucleoprotein 70kDa (U1) protein-coding SNRNP70 small nuclear ribonucleoprotein 70kDa (U1) O U1 small nuclear ribonucleoprotein 70 kDa|U1 snRNP 70 kDa 20121230 -9606 6626 SNRPA - Mud1|U1-A|U1A HGNC:11151|MIM:182285|Ensembl:ENSG00000077312|HPRD:01658 19 19q13.1 small nuclear ribonucleoprotein polypeptide A protein-coding SNRPA small nuclear ribonucleoprotein polypeptide A O U1 small nuclear RNP-specific A|U1 small nuclear ribonucleoprotein A|U1 snRNP A|U1 snRNP-specific protein A 20121230 -9606 6627 SNRPA1 - Lea1 HGNC:11152|MIM:603521|Ensembl:ENSG00000131876|HPRD:04629|Vega:OTTHUMG00000149871 15 15q26.3 small nuclear ribonucleoprotein polypeptide A' protein-coding SNRPA1 small nuclear ribonucleoprotein polypeptide A' O U2 small nuclear ribonucleoprotein A'|U2 small nuclear ribonucleoprotein polypeptide A'|U2 snRNP A' 20121230 -9606 6628 SNRPB - COD|SNRPB1|Sm-B/B'|SmB/B'|SmB/SmB'|snRNP-B HGNC:11153|MIM:182282|Ensembl:ENSG00000125835|HPRD:01655|Vega:OTTHUMG00000031694 20 20p13 small nuclear ribonucleoprotein polypeptides B and B1 protein-coding SNRPB small nuclear ribonucleoprotein polypeptides B and B1 O B polypeptide of Sm protein|Sm protein B/B'|sm-B/Sm-B'|small nuclear ribonucleoprotein polypeptide B|small nuclear ribonucleoprotein polypeptides B and B'|small nuclear ribonucleoprotein-associated proteins B and B' 20121230 -9606 6629 SNRPB2 - Msl1 HGNC:11155|MIM:603520|Ensembl:ENSG00000125870|HPRD:04628|Vega:OTTHUMG00000031933 20 20p12.1 small nuclear ribonucleoprotein polypeptide B protein-coding SNRPB2 small nuclear ribonucleoprotein polypeptide B O U2 small nuclear ribonucleoprotein B''|U2 snRNP B''|small nuclear ribonucleoprotein polypeptide B2 20121230 -9606 6631 SNRPC RP3-375P9.1 U1C|Yhc1 HGNC:11157|MIM:603522|Ensembl:ENSG00000124562|HPRD:04630|Vega:OTTHUMG00000014555 6 6p21.31 small nuclear ribonucleoprotein polypeptide C protein-coding SNRPC small nuclear ribonucleoprotein polypeptide C O U1 small nuclear RNP specific C|U1 small nuclear ribonucleoprotein C|U1 snRNP C|U1 snRNP protein C 20121230 -9606 6632 SNRPD1 - HsT2456|SMD1|SNRPD|Sm-D1 HGNC:11158|MIM:601063|Ensembl:ENSG00000167088|HPRD:03040|Vega:OTTHUMG00000178934 18 18q11.2 small nuclear ribonucleoprotein D1 polypeptide 16kDa protein-coding SNRPD1 small nuclear ribonucleoprotein D1 polypeptide 16kDa O Sm-D autoantigen|small nuclear ribonucleoprotein D1 polypeptide 16kDa pseudogene|small nuclear ribonucleoprotein Sm D1|snRNP core protein D1 20121230 -9606 6633 SNRPD2 - SMD2|SNRPD1|Sm-D2 HGNC:11159|MIM:601061|Ensembl:ENSG00000125743|HPRD:03038|Vega:OTTHUMG00000182130 19 19q13.2 small nuclear ribonucleoprotein D2 polypeptide 16.5kDa protein-coding SNRPD2 small nuclear ribonucleoprotein D2 polypeptide 16.5kDa O small nuclear ribonucleoprotein Sm D2|snRNP core protein D2 20121230 -9606 6634 SNRPD3 - SMD3|Sm-D3 HGNC:11160|MIM:601062|Ensembl:ENSG00000100028|HPRD:03039|Vega:OTTHUMG00000150727 22 22q11.23 small nuclear ribonucleoprotein D3 polypeptide 18kDa protein-coding SNRPD3 small nuclear ribonucleoprotein D3 polypeptide 18kDa O small nuclear ribonucleoprotein Sm D3|small nuclear ribonucleoprotein polypeptide D3|snRNP core protein D3 20121230 -9606 6635 SNRPE - B-raf|SME|Sm-E HGNC:11161|MIM:128260|Ensembl:ENSG00000182004|HPRD:00548|Vega:OTTHUMG00000035985 1 1q32 small nuclear ribonucleoprotein polypeptide E protein-coding SNRPE small nuclear ribonucleoprotein polypeptide E O sm protein E|small nuclear ribonucleoprotein E|snRNP-E 20121230 -9606 6636 SNRPF - SMF|Sm-F|snRNP-F HGNC:11162|MIM:603541|Ensembl:ENSG00000139343|HPRD:04645|Vega:OTTHUMG00000170351 12 12q23.1 small nuclear ribonucleoprotein polypeptide F protein-coding SNRPF small nuclear ribonucleoprotein polypeptide F O sm protein F|small nuclear ribonucleoprotein F 20121230 -9606 6637 SNRPG - SMG|Sm-G HGNC:11163|MIM:603542|Ensembl:ENSG00000143977|HPRD:04646|Vega:OTTHUMG00000129670 2 2p13.3 small nuclear ribonucleoprotein polypeptide G protein-coding SNRPG small nuclear ribonucleoprotein polypeptide G O sm protein G|small nuclear ribonucleoprotein G|snRNP-G 20121230 -9606 6638 SNRPN - HCERN3|PWCR|RT-LI|SM-D|SMN|SNRNP-N|SNURF-SNRPN|sm-N HGNC:11164|MIM:182279|Ensembl:ENSG00000128739|HPRD:01653|Vega:OTTHUMG00000129180 15 15q11.2 small nuclear ribonucleoprotein polypeptide N protein-coding SNRPN small nuclear ribonucleoprotein polypeptide N O SM protein N|sm protein D|small nuclear ribonucleoprotein-associated protein N|tissue-specific splicing protein 20121230 -9606 6640 SNTA1 - LQT12|SNT1|TACIP1|dJ1187J4.5 HGNC:11167|MIM:601017|Ensembl:ENSG00000101400|HPRD:03009|Vega:OTTHUMG00000032259 20 20q11.2 syntrophin, alpha 1 protein-coding SNTA1 syntrophin, alpha 1 O 59 kDa dystrophin-associated protein A1 acidic component 1|acidic alpha 1 syntrophin|alpha-1-syntrophin|dystrophin-associated protein A1, 59kDa, acidic component|pro-TGF-alpha cytoplasmic domain-interacting protein 1|syntrophin, alpha 1 (dystrophin-associated protein A1, 59kDa, acidic component)|syntrophin-1 20121230 -9606 6641 SNTB1 - 59-DAP|A1B|BSYN2|DAPA1B|SNT2|SNT2B1|TIP-43 HGNC:11168|MIM:600026|Ensembl:ENSG00000172164|HPRD:02490|Vega:OTTHUMG00000165041 8 8q23-q24 syntrophin, beta 1 (dystrophin-associated protein A1, 59kDa, basic component 1) protein-coding SNTB1 syntrophin, beta 1 (dystrophin-associated protein A1, 59kDa, basic component 1) O 59 kDa dystrophin-associated protein A1 basic component 1|beta-1-syntrophin|dystrophin-associated protein A1, 59kD, basic component 1|syntrophin-2|tax interaction protein 43 20121230 -9606 6642 SNX1 - HsT17379|VPS5 HGNC:11172|MIM:601272|Ensembl:ENSG00000028528|HPRD:03171|Vega:OTTHUMG00000172436 15 15q22.31 sorting nexin 1 protein-coding SNX1 sorting nexin 1 O sorting nexin 1A|sorting nexin-1 20121230 -9606 6643 SNX2 TRG9 TRG-9 HGNC:11173|MIM:605929|Ensembl:ENSG00000205302|HPRD:09332|Vega:OTTHUMG00000163020 5 5q23 sorting nexin 2 protein-coding SNX2 sorting nexin 2 O sorting nexin-2|transformation-related gene 9 protein 20121230 -9606 6644 SRIP1 - SRIL HGNC:11293 4 4q12 sorcin pseudogene 1 pseudo SRIP1 sorcin pseudogene 1 O - 20121230 -9606 6645 SNTB2 - D16S2531E|EST25263|SNT2B2|SNT3|SNTL HGNC:11169|MIM:600027|Ensembl:ENSG00000168807|HPRD:02491|Vega:OTTHUMG00000137567 16 16q22.1 syntrophin, beta 2 (dystrophin-associated protein A1, 59kDa, basic component 2) protein-coding SNTB2 syntrophin, beta 2 (dystrophin-associated protein A1, 59kDa, basic component 2) O 59 kDa dystrophin-associated protein A1 basic component 2|beta-2-syntrophin|dystrophin-associated protein A1, 59kD, basic component 2|syntrophin-3 20121230 -9606 6646 SOAT1 RP11-215I23.1 ACACT|ACAT|ACAT-1|ACAT1|SOAT|STAT HGNC:11177|MIM:102642|Ensembl:ENSG00000057252|HPRD:00033|Vega:OTTHUMG00000035253 1 1q25 sterol O-acyltransferase 1 protein-coding SOAT1 sterol O-acyltransferase 1 O acyl-coenzyme A:cholesterol acyltransferase 1|sterol O-acyltransferase (acyl-Coenzyme A: cholesterol acyltransferase) 1 20121230 -9606 6647 SOD1 - ALS|ALS1|IPOA|SOD|hSod1|homodimer HGNC:11179|MIM:147450|Ensembl:ENSG00000142168|HPRD:00937|Vega:OTTHUMG00000084878 21 21q22.11 superoxide dismutase 1, soluble protein-coding SOD1 superoxide dismutase 1, soluble O Cu/Zn superoxide dismutase|SOD, soluble|indophenoloxidase A|superoxide dismutase [Cu-Zn]|superoxide dismutase, cystolic 20121230 -9606 6648 SOD2 RP1-56L9.2 IPOB|MNSOD|MVCD6 HGNC:11180|MIM:147460|Ensembl:ENSG00000112096|HPRD:00938|Vega:OTTHUMG00000015940 6 6q25.3 superoxide dismutase 2, mitochondrial protein-coding SOD2 superoxide dismutase 2, mitochondrial O Mn superoxide dismutase|indophenoloxidase B|manganese-containing superoxide dismutase|mangano-superoxide dismutase|superoxide dismutase [Mn], mitochondrial 20121230 -9606 6649 SOD3 - EC-SOD HGNC:11181|MIM:185490|Ensembl:ENSG00000109610|HPRD:01708|Vega:OTTHUMG00000128565 4 4p15.2 superoxide dismutase 3, extracellular protein-coding SOD3 superoxide dismutase 3, extracellular O extracellular superoxide dismutase [Cu-Zn] 20121230 -9606 6650 SOLH - CAPN15 HGNC:11182|MIM:603267|Ensembl:ENSG00000103326|HPRD:07220|Vega:OTTHUMG00000119059 16 16p13.3 small optic lobes homolog (Drosophila) protein-coding SOLH small optic lobes homolog (Drosophila) O calpain-15 20121230 -9606 6651 SON HSPC310 BASS1|C21orf50|DBP-5|NREBP|SON3 HGNC:11183|MIM:182465|Ensembl:ENSG00000159140|HPRD:01678|Vega:OTTHUMG00000065806 21 21q22.11 SON DNA binding protein protein-coding SON SON DNA binding protein O Bax antagonist selected in Saccharomyces 1|NRE-binding protein|negative regulatory element-binding protein|protein DBP-5|protein SON 20121230 -9606 6652 SORD - SORD1 HGNC:11184|MIM:182500|Ensembl:ENSG00000140263|HPRD:01679|Vega:OTTHUMG00000131265 15 15q15.3 sorbitol dehydrogenase protein-coding SORD sorbitol dehydrogenase O L-iditol 2-dehydrogenase 20121230 -9606 6653 SORL1 - C11orf32|LR11|LRP9|SORLA|SorLA-1|gp250 HGNC:11185|MIM:602005|Ensembl:ENSG00000137642|HPRD:03595|Vega:OTTHUMG00000166057 11 11q23.2-q24.2 sortilin-related receptor, L(DLR class) A repeats containing protein-coding SORL1 sortilin-related receptor, L(DLR class) A repeats containing O LDLR relative with 11 ligand-binding repeats|low-density lipoprotein receptor relative with 11 ligand-binding repeats|mosaic protein LR11|sortilin-related receptor|sortilin-related receptor, L(DLR class) A repeats-containing|sorting protein-related receptor containing LDLR class A repeats 20121230 -9606 6654 SOS1 - GF1|GGF1|GINGF|HGF|NS4 HGNC:11187|MIM:182530|Ensembl:ENSG00000115904|HPRD:01681|Vega:OTTHUMG00000102109 2 2p21 son of sevenless homolog 1 (Drosophila) protein-coding SOS1 son of sevenless homolog 1 (Drosophila) O SOS-1|gingival fibromatosis, hereditary, 1|guanine nucleotide exchange factor|son of sevenless homolog 1 20121230 -9606 6655 SOS2 - - HGNC:11188|MIM:601247|Ensembl:ENSG00000100485|HPRD:03149|Vega:OTTHUMG00000140292 14 14q21 son of sevenless homolog 2 (Drosophila) protein-coding SOS2 son of sevenless homolog 2 (Drosophila) O SOS-2|guanine nucleotide exchange factor|guanine nucleotide releasing factor|son of sevenless homolog 2 20121230 -9606 6656 SOX1 - - HGNC:11189|MIM:602148|Ensembl:ENSG00000182968|HPRD:03687|Vega:OTTHUMG00000017362 13 13q34 SRY (sex determining region Y)-box 1 protein-coding SOX1 SRY (sex determining region Y)-box 1 O SRY-related HMG-box gene 1|transcription factor SOX-1 20121230 -9606 6657 SOX2 - ANOP3|MCOPS3 HGNC:11195|MIM:184429|Ensembl:ENSG00000181449|HPRD:08921|Vega:OTTHUMG00000158222 3 3q26.3-q27 SRY (sex determining region Y)-box 2 protein-coding SOX2 SRY (sex determining region Y)-box 2 O SRY-related HMG-box gene 2|transcription factor SOX-2|transcription factor SOX2 20121230 -9606 6658 SOX3 - GHDX|MRGH|PHP|PHPX|SOXB HGNC:11199|MIM:313430|Ensembl:ENSG00000134595|HPRD:02432|Vega:OTTHUMG00000022544 X Xq27.1 SRY (sex determining region Y)-box 3 protein-coding SOX3 SRY (sex determining region Y)-box 3 O transcription factor SOX-3 20121230 -9606 6659 SOX4 - EVI16 HGNC:11200|MIM:184430|Ensembl:ENSG00000124766|HPRD:01695|Vega:OTTHUMG00000016101 6 6p22.3 SRY (sex determining region Y)-box 4 protein-coding SOX4 SRY (sex determining region Y)-box 4 O SRY-related HMG-box gene 4|ecotropic viral integration site 16|transcription factor SOX-4 20121230 -9606 6660 SOX5 - L-SOX5 HGNC:11201|MIM:604975|Ensembl:ENSG00000134532|HPRD:18086|Vega:OTTHUMG00000169026 12 12p12.1 SRY (sex determining region Y)-box 5 protein-coding SOX5 SRY (sex determining region Y)-box 5 O transcription factor SOX-5 20121230 -9606 6661 SOX5P - SOX29 HGNC:11202 8 8q21.2 SRY (sex determining region Y)-box 5 pseudogene pseudo SOX5P SRY (sex determining region Y)-box 5 pseudogene O - 20121230 -9606 6662 SOX9 - CMD1|CMPD1|SRA1 HGNC:11204|MIM:608160|Ensembl:ENSG00000125398|HPRD:06427|Vega:OTTHUMG00000166300 17 17q23 SRY (sex determining region Y)-box 9 protein-coding SOX9 SRY (sex determining region Y)-box 9 O SRY (sex-determining region Y)-box 9 protein|SRY-related HMG-box, gene 9|transcription factor SOX-9 20121230 -9606 6663 SOX10 RP5-1039K5.9 DOM|PCWH|WS2E|WS4|WS4C HGNC:11190|MIM:602229|Ensembl:ENSG00000100146|HPRD:03752|Vega:OTTHUMG00000149913 22 22q13.1 SRY (sex determining region Y)-box 10 protein-coding SOX10 SRY (sex determining region Y)-box 10 O SRY-related HMG-box gene 10|dominant megacolon, mouse, human homolog of|transcription factor SOX-10 20121230 -9606 6664 SOX11 - - HGNC:11191|MIM:600898|Ensembl:ENSG00000176887|HPRD:02940|Vega:OTTHUMG00000090333 2 2p25 SRY (sex determining region Y)-box 11 protein-coding SOX11 SRY (sex determining region Y)-box 11 O SRY (sex-determining region Y)-box 11|SRY-related HMG-box gene 11|transcription factor SOX-11 20121230 -9606 6665 SOX15 - SOX20|SOX26|SOX27 HGNC:11196|MIM:601297|Ensembl:ENSG00000129194|HPRD:03191|Vega:OTTHUMG00000178146 17 17p12.3 SRY (sex determining region Y)-box 15 protein-coding SOX15 SRY (sex determining region Y)-box 15 O SRY (sex determining region Y)-box 20|protein SOX-15 20121230 -9606 6666 SOX12 - SOX22 HGNC:11198|MIM:601947|Ensembl:ENSG00000177732|HPRD:09056|Vega:OTTHUMG00000031623 20 20p13 SRY (sex determining region Y)-box 12 protein-coding SOX12 SRY (sex determining region Y)-box 12 O SOX-22 protein|SRY (sex determining region Y)-box 22|SRY-related HMG-box gene 22|transcription factor SOX-12 20121230 -9606 6667 SP1 - - HGNC:11205|MIM:189906|Ensembl:ENSG00000185591|HPRD:01796|Vega:OTTHUMG00000170047 12 12q13.1 Sp1 transcription factor protein-coding SP1 Sp1 transcription factor O specificity protein 1|transcription factor Sp1 20121230 -9606 6668 SP2 - - HGNC:11207|MIM:601801|Ensembl:ENSG00000167182|HPRD:03481|Vega:OTTHUMG00000150196 17 17q21.32 Sp2 transcription factor protein-coding SP2 Sp2 transcription factor O transcription factor Sp2 20121230 -9606 6670 SP3 - SPR2 HGNC:11208|MIM:601804|Ensembl:ENSG00000172845|HPRD:03483|Vega:OTTHUMG00000132333 2 2q31 Sp3 transcription factor protein-coding SP3 Sp3 transcription factor O GC-binding transcription factor Sp3|specificity protein 3|transcription factor Sp3 20121230 -9606 6671 SP4 - HF1B|SPR-1 HGNC:11209|MIM:600540|Ensembl:ENSG00000105866|HPRD:02764|Vega:OTTHUMG00000094801 7 7p15.3 Sp4 transcription factor protein-coding SP4 Sp4 transcription factor O transcription factor Sp4 20121230 -9606 6672 SP100 - lysp100b HGNC:11206|MIM:604585|Ensembl:ENSG00000067066|HPRD:06844|Vega:OTTHUMG00000133203 2 2q37.1 SP100 nuclear antigen protein-coding SP100 SP100 nuclear antigen O SP100-HMG nuclear autoantigen|nuclear autoantigen Sp-100|nuclear dot-associated Sp100 protein|speckled 100 kDa 20121230 -9606 6674 SPAG1 - HSD-3.8|SP75|TPIS HGNC:11212|MIM:603395|Ensembl:ENSG00000104450|HPRD:04548|Vega:OTTHUMG00000164706 8 8q22.2 sperm associated antigen 1 protein-coding SPAG1 sperm associated antigen 1 O TPR-containing protein involved in spermatogenesis|infertility-related sperm protein Spag-1|sperm-associated antigen 1|tetratricopeptide repeat-containing protein 20121230 -9606 6675 UAP1 - AGX|AGX1|AGX2|SPAG2 HGNC:12457|MIM:602862|Ensembl:ENSG00000117143|HPRD:04178|Vega:OTTHUMG00000034419 1 1q23.3 UDP-N-acteylglucosamine pyrophosphorylase 1 protein-coding UAP1 UDP-N-acteylglucosamine pyrophosphorylase 1 O UDP-N-acetylhexosamine pyrophosphorylase|antigen X|sperm associated antigen 2|sperm-associated antigen 2 20121230 -9606 6676 SPAG4 RP1-309K20.4 CT127|SUN4 HGNC:11214|MIM:603038|Ensembl:ENSG00000061656|HPRD:04330|Vega:OTTHUMG00000032352 20 20q11.21 sperm associated antigen 4 protein-coding SPAG4 sperm associated antigen 4 O SUN domain-containing protein 4|Sad1 and UNC84 domain containing 4|acrosomal protein ACR55|cancer/testis antigen 127|outer dense fiber-associated protein SPAG4|sperm tail protein|sperm-associated antigen 4 protein 20121230 -9606 6677 SPAM1 - HYA1|HYAL1|HYAL3|HYAL5|PH-20|PH20|SPAG15 HGNC:11217|MIM:600930|Ensembl:ENSG00000106304|HPRD:02958|Vega:OTTHUMG00000157284 7 7q31.3 sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding) protein-coding SPAM1 sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding) O hyal-PH20|hyaluronidase PH-20|hyaluronoglucosaminidase PH-20|sperm surface protein PH-20 20121230 -9606 6678 SPARC - ON HGNC:11219|MIM:182120|Ensembl:ENSG00000113140|HPRD:01631|Vega:OTTHUMG00000130122 5 5q31.3-q32 secreted protein, acidic, cysteine-rich (osteonectin) protein-coding SPARC secreted protein, acidic, cysteine-rich (osteonectin) O BM-40|basement-membrane protein 40|cysteine-rich protein|osteonectin|secreted protein acidic and rich in cysteine 20121230 -9606 6682 SPG3B - - HGNC:11232 - - spastic paraplegia 3B unknown SPG3B spastic paraplegia 3B O - 20121208 -9606 6683 SPAST - ADPSP|FSP2|SPG4 HGNC:11233|MIM:604277|Ensembl:ENSG00000021574|HPRD:05044|Vega:OTTHUMG00000128455 2 2p24-p21 spastin protein-coding SPAST spastin O spastic paraplegia 4 (autosomal dominant; spastin)|spastic paraplegia 4 protein 20121230 -9606 6685 SPG5B - - HGNC:11235|MIM:600146 - - spastic paraplegia 5B (autosomal recessive) unknown SPG5B spastic paraplegia 5B (autosomal recessive) O - 20110215 -9606 6687 SPG7 - CAR|CMAR|PGN|SPG5C HGNC:11237|MIM:602783|Ensembl:ENSG00000197912|HPRD:04149|Vega:OTTHUMG00000138046 16 16q24.3 spastic paraplegia 7 (pure and complicated autosomal recessive) protein-coding SPG7 spastic paraplegia 7 (pure and complicated autosomal recessive) O cell adhesion regulator|cell matrix adhesion regulator|paraplegin|spastic paraplegia 7 protein 20121230 -9606 6688 SPI1 hCG_25181 OF|PU.1|SFPI1|SPI-1|SPI-A HGNC:11241|MIM:165170|Ensembl:ENSG00000066336|HPRD:01305|Vega:OTTHUMG00000150150 11 11p11.2 spleen focus forming virus (SFFV) proviral integration oncogene spi1 protein-coding SPI1 spleen focus forming virus (SFFV) proviral integration oncogene spi1 O 31 kDa transforming protein|31 kDa-transforming protein|SPI-1 proto-oncogene|hematopoietic transcription factor PU.1|transcription factor PU.1 20121230 -9606 6689 SPIB - SPI-B HGNC:11242|MIM:606802|Ensembl:ENSG00000142539 19 19q13.3-q13.4 Spi-B transcription factor (Spi-1/PU.1 related) protein-coding SPIB Spi-B transcription factor (Spi-1/PU.1 related) O transcription factor Spi-B 20121230 -9606 6690 SPINK1 - PCTT|PSTI|Spink3|TATI|TCP HGNC:11244|MIM:167790|Ensembl:ENSG00000164266|HPRD:01341|Vega:OTTHUMG00000129730 5 5q32 serine peptidase inhibitor, Kazal type 1 protein-coding SPINK1 serine peptidase inhibitor, Kazal type 1 O pancreatic secretory trypsin inhibitor|serine protease inhibitor Kazal-type 1|serine protease inhibitor, Kazal type 1|tumor-associated trypsin inhibitor 20121230 -9606 6691 SPINK2 - HUSI-II HGNC:11245|MIM:605753|Ensembl:ENSG00000128040|HPRD:10422|Vega:OTTHUMG00000128769 4 4q12 serine peptidase inhibitor, Kazal type 2 (acrosin-trypsin inhibitor) protein-coding SPINK2 serine peptidase inhibitor, Kazal type 2 (acrosin-trypsin inhibitor) O epididymis tissue protein Li 172|serine protease inhibitor Kazal-type 2 20121230 -9606 6692 SPINT1 UNQ223/PRO256 HAI|HAI1|MANSC2 HGNC:11246|MIM:605123|Ensembl:ENSG00000166145|HPRD:05494|Vega:OTTHUMG00000130068 15 15q15.1 serine peptidase inhibitor, Kunitz type 1 protein-coding SPINT1 serine peptidase inhibitor, Kunitz type 1 O HAI-1|hepatocyte growth factor activator inhibitor type 1|kunitz-type protease inhibitor 1|serine protease inhibitor, Kunitz type 1 20121230 -9606 6693 SPN - CD43|GALGP|GPL115|LSN HGNC:11249|MIM:182160|Ensembl:ENSG00000197471|HPRD:06770|Vega:OTTHUMG00000097765 16 16p11.2 sialophorin protein-coding SPN sialophorin O galactoglycoprotein|leukocyte sialoglycoprotein|leukosialin|sialophorin (gpL115, leukosialin, CD43) 20121230 -9606 6694 SPP2 - SPP-24|SPP24 HGNC:11256|MIM:602637|Ensembl:ENSG00000072080|HPRD:04029|Vega:OTTHUMG00000059208 2 2q37.1 secreted phosphoprotein 2, 24kDa protein-coding SPP2 secreted phosphoprotein 2, 24kDa O secreted phosphoprotein 24 20121230 -9606 6695 SPOCK1 - SPOCK|TESTICAN|TIC1 HGNC:11251|MIM:602264|Ensembl:ENSG00000152377|HPRD:11887|Vega:OTTHUMG00000129157 5 5q31.2 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 1 protein-coding SPOCK1 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 1 O testican-1 20121230 -9606 6696 SPP1 PSEC0156 BNSP|BSPI|ETA-1|OPN HGNC:11255|MIM:166490|Ensembl:ENSG00000118785|HPRD:01325|Vega:OTTHUMG00000130599 4 4q22.1 secreted phosphoprotein 1 protein-coding SPP1 secreted phosphoprotein 1 O SPP1/CALPHA1 fusion|early T-lymphocyte activation 1|nephropontin|osteopontin|osteopontin/immunoglobulin alpha 1 heavy chain constant region fusion protein|secreted phosphoprotein 1 (osteopontin, bone sialoprotein I, early T-lymphocyte activation 1)|urinary stone protein|uropontin 20121230 -9606 6697 SPR - SDR38C1 HGNC:11257|MIM:182125|Ensembl:ENSG00000116096|HPRD:01632|Vega:OTTHUMG00000129777 2 2p14-p12 sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase) protein-coding SPR sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase) O sepiapterin reductase|short chain dehydrogenase/reductase family 38C, member 1 20121230 -9606 6698 SPRR1A - SPRK HGNC:11259|MIM:182265|Ensembl:ENSG00000169474|HPRD:01647 1 1q21-q22 small proline-rich protein 1A protein-coding SPRR1A small proline-rich protein 1A O 19 kDa pancornulin|SPR-IA|cornifin A|cornifin-A|small proline-rich protein IA 20121230 -9606 6699 SPRR1B - CORNIFIN|GADD33|SPRR1 HGNC:11260|MIM:182266|Ensembl:ENSG00000169469|HPRD:01648|Vega:OTTHUMG00000013869 1 1q21-q22 small proline-rich protein 1B protein-coding SPRR1B small proline-rich protein 1B O 14.9 kDa pancornulin|SPR-IB|cornifin B|cornifin-B|small proline-rich protein IB 20121230 -9606 6700 SPRR2A - - HGNC:11261|MIM:182267|Ensembl:ENSG00000241794|HPRD:01649|Vega:OTTHUMG00000014395 1 1q21-q22 small proline-rich protein 2A protein-coding SPRR2A small proline-rich protein 2A O 2-1|SPR-2A 20121230 -9606 6701 SPRR2B - - HGNC:11262|MIM:182268|Ensembl:ENSG00000196805|Vega:OTTHUMG00000013863 1 1q21-q22 small proline-rich protein 2B protein-coding SPRR2B small proline-rich protein 2B O SPR-2B 20121230 -9606 6702 SPRR2C - - HGNC:11263|MIM:182269|HPRD:01651 1 1q21-q22 small proline-rich protein 2C (pseudogene) pseudo SPRR2C small proline-rich protein 2C (pseudogene) O small proline-rich protein 2C 20121230 -9606 6703 SPRR2D - - HGNC:11264|Ensembl:ENSG00000163216|HPRD:01650|Vega:OTTHUMG00000014396 1 1q21-q22 small proline-rich protein 2D protein-coding SPRR2D small proline-rich protein 2D O SPR-2D|SPR-II|small proline-rich protein II 20121230 -9606 6704 SPRR2E - - HGNC:11265|Ensembl:ENSG00000203785|Vega:OTTHUMG00000014397 1 1q21-q22 small proline-rich protein 2E protein-coding SPRR2E small proline-rich protein 2E O SPR-2E|SPR-II|small proline-rich protein II 20121230 -9606 6705 SPRR2F - - HGNC:11266|Ensembl:ENSG00000244094|HPRD:18699|Vega:OTTHUMG00000014398 1 1q21-q22 small proline-rich protein 2F protein-coding SPRR2F small proline-rich protein 2F O SPR-2F 20121230 -9606 6706 SPRR2G - - HGNC:11267|Ensembl:ENSG00000159516|HPRD:18500|Vega:OTTHUMG00000014399 1 1q21-q22 small proline-rich protein 2G protein-coding SPRR2G small proline-rich protein 2G O SPR-2G 20121230 -9606 6707 SPRR3 - - HGNC:11268|MIM:182271|Ensembl:ENSG00000163209|HPRD:01652|Vega:OTTHUMG00000013872 1 1q21-q22 small proline-rich protein 3 protein-coding SPRR3 small proline-rich protein 3 O 22 kDa pancornulin|cornifin beta|esophagin 20121230 -9606 6708 SPTA1 - EL2|HPP|HS3|SPH3|SPTA HGNC:11272|MIM:182860|Ensembl:ENSG00000163554|HPRD:01685|Vega:OTTHUMG00000019636 1 1q21 spectrin, alpha, erythrocytic 1 (elliptocytosis 2) protein-coding SPTA1 spectrin, alpha, erythrocytic 1 (elliptocytosis 2) O alpha-I spectrin|erythroid alpha-spectrin|spectrin alpha chain, erythrocyte|spectrin alpha chain, erythrocytic 1 20121230 -9606 6709 SPTAN1 - EIEE5|NEAS|SPTA2 HGNC:11273|MIM:182810|Ensembl:ENSG00000197694|HPRD:01684|Vega:OTTHUMG00000020754 9 9q34.11 spectrin, alpha, non-erythrocytic 1 protein-coding SPTAN1 spectrin, alpha, non-erythrocytic 1 O alpha-II spectrin|alpha-fodrin|fodrin alpha chain|spectrin alpha chain, non-erythrocytic 1|spectrin, non-erythroid alpha chain|spectrin, non-erythroid alpha subunit 20121230 -9606 6710 SPTB - EL3|HS2|HSPTB1|SPH2 HGNC:11274|MIM:182870|Ensembl:ENSG00000070182|HPRD:01686|Vega:OTTHUMG00000171550 14 14q23-q24.2 spectrin, beta, erythrocytic protein-coding SPTB spectrin, beta, erythrocytic O beta-I spectrin|membrane cytoskeletal protein|spectrin beta chain, erythrocyte|spectrin beta chain, erythrocytic 20121230 -9606 6711 SPTBN1 - ELF|SPTB2|betaSpII HGNC:11275|MIM:182790|Ensembl:ENSG00000115306|HPRD:01683|Vega:OTTHUMG00000133746 2 2p21 spectrin, beta, non-erythrocytic 1 protein-coding SPTBN1 spectrin, beta, non-erythrocytic 1 O beta-G spectrin|beta-II spectrin|beta-fodrin|beta-spectrin 2|beta-spectrin II|embryonic liver beta-fodrin|fodrin beta chain|spectrin beta chain, brain 1|spectrin beta chain, non-erythrocytic 1|spectrin, non-erythroid beta chain 1 20121230 -9606 6712 SPTBN2 - GTRAP41|SCA5 HGNC:11276|MIM:604985|Ensembl:ENSG00000173898|HPRD:05404|Vega:OTTHUMG00000167262 11 11q13 spectrin, beta, non-erythrocytic 2 protein-coding SPTBN2 spectrin, beta, non-erythrocytic 2 O beta-III spectrin|glutamate transporter EAAT4-associated protein 41|spectrin beta chain, brain 2|spectrin beta chain, non-erythrocytic 2|spectrin, non-erythroid beta chain 2|spinocerebellar ataxia 5 protein 20121230 -9606 6713 SQLE - - HGNC:11279|MIM:602019|Ensembl:ENSG00000104549|HPRD:11802|Vega:OTTHUMG00000164990 8 8q24.1 squalene epoxidase protein-coding SQLE squalene epoxidase O SE|squalene monooxygenase 20121230 -9606 6714 SRC RP5-823N20.1 ASV|SRC1|c-SRC|p60-Src HGNC:11283|MIM:190090|Ensembl:ENSG00000197122|HPRD:01819|Vega:OTTHUMG00000032417 20 20q12-q13 v-src sarcoma (Schmidt-Ruppin A-2) viral oncogene homolog (avian) protein-coding SRC v-src sarcoma (Schmidt-Ruppin A-2) viral oncogene homolog (avian) O proto-oncogene c-Src|proto-oncogene tyrosine-protein kinase Src|protooncogene SRC, Rous sarcoma|tyrosine kinase pp60c-src|tyrosine-protein kinase SRC-1 20121230 -9606 6715 SRD5A1 - S5AR 1 HGNC:11284|MIM:184753|Ensembl:ENSG00000145545|HPRD:01699|Vega:OTTHUMG00000090456 5 5p15 steroid-5-alpha-reductase, alpha polypeptide 1 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 1) protein-coding SRD5A1 steroid-5-alpha-reductase, alpha polypeptide 1 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 1) O 3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 1|3-oxo-5-alpha-steroid 4-dehydrogenase 1|5-alpha reductase|SR type 1|steroid 5-alpha-reductase 1|steroid 5-alpha-reductase type I 20121230 -9606 6716 SRD5A2 - - HGNC:11285|MIM:607306|HPRD:07390 2 2p23 steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2) protein-coding SRD5A2 steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2) O 3-oxo-5-alpha-steroid 4-dehydrogenase 2|5 alpha-SR2|S5AR 2|SR type 2|steroid 5-alpha-reductase 2|type II 5-alpha reductase 20121230 -9606 6717 SRI - CP-22|CP22|SCN|V19 HGNC:11292|MIM:182520|Ensembl:ENSG00000075142|HPRD:01680|Vega:OTTHUMG00000157267 7 7q21.1 sorcin protein-coding SRI sorcin O 22 kDa protein|H_RG167B05.1|calcium binding protein amplified in mutlidrug-resistant cells 20121230 -9606 6718 AKR1D1 - 3o5bred|CBAS2|SRD5B1 HGNC:388|MIM:604741|Ensembl:ENSG00000122787|HPRD:07263|Vega:OTTHUMG00000155787 7 7q32-q33 aldo-keto reductase family 1, member D1 protein-coding AKR1D1 aldo-keto reductase family 1, member D1 O 3-oxo-5-beta-steroid 4-dehydrogenase|delta 4-3-ketosteroid-5-beta-reductase|delta(4)-3-ketosteroid 5-beta-reductase|delta(4)-3-oxosteroid 5-beta-reductase|steroid-5-beta-reductase, beta polypeptide 1 (3-oxo-5 beta-steroid delta 4-dehydrogenase beta 1) 20121230 -9606 6719 SRD5A1P1 - SRD5AP1 HGNC:11286 X Xq24-qter steroid-5-alpha-reductase, alpha polypeptide 1 pseudogene 1 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha pseudogene) pseudo SRD5A1P1 steroid-5-alpha-reductase, alpha polypeptide 1 pseudogene 1 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha pseudogene) O - 20121230 -9606 6720 SREBF1 - SREBP-1c|SREBP1|bHLHd1 HGNC:11289|MIM:184756|Ensembl:ENSG00000072310|HPRD:01701|Vega:OTTHUMG00000059313 17 17p11.2 sterol regulatory element binding transcription factor 1 protein-coding SREBF1 sterol regulatory element binding transcription factor 1 O SREBP-1|class D basic helix-loop-helix protein 1|sterol regulatory element-binding protein 1 20121230 -9606 6721 SREBF2 CTA-250D10.14-005 SREBP2|bHLHd2 HGNC:11290|MIM:600481|Ensembl:ENSG00000198911|HPRD:02726|Vega:OTTHUMG00000151261 22 22q13 sterol regulatory element binding transcription factor 2 protein-coding SREBF2 sterol regulatory element binding transcription factor 2 O SREBP-2|class D basic helix-loop-helix protein 2|sterol regulatory element-binding protein 2|sterol regulatory element-binding transcription factor 2 20121230 -9606 6722 SRF - MCM1 HGNC:11291|MIM:600589|Ensembl:ENSG00000112658|HPRD:02788|Vega:OTTHUMG00000014722 6 6p21.1 serum response factor (c-fos serum response element-binding transcription factor) protein-coding SRF serum response factor (c-fos serum response element-binding transcription factor) O serum response factor 20121230 -9606 6723 SRM - PAPT|SPDSY|SPS1|SRML1 HGNC:11296|MIM:182891|Ensembl:ENSG00000116649|HPRD:01692|Vega:OTTHUMG00000002119 1 1p36-p22 spermidine synthase protein-coding SRM spermidine synthase O putrescine aminopropyltransferase|spermidine synthase-1 20121230 -9606 6725 SRMS - C20orf148|SRM|dJ697K14.1 HGNC:11298|Ensembl:ENSG00000125508|HPRD:10250|Vega:OTTHUMG00000032977 20 - src-related kinase lacking C-terminal regulatory tyrosine and N-terminal myristylation sites protein-coding SRMS src-related kinase lacking C-terminal regulatory tyrosine and N-terminal myristylation sites O tyrosine-protein kinase Srms 20121230 -9606 6726 SRP9 - ALURBP HGNC:11304|MIM:600707|Ensembl:ENSG00000143742|HPRD:02830|Vega:OTTHUMG00000037738 1 1q42.12 signal recognition particle 9kDa protein-coding SRP9 signal recognition particle 9kDa O signal recognition particle 9 kDa protein 20121230 -9606 6727 SRP14 - ALURBP HGNC:11299|MIM:600708|Ensembl:ENSG00000140319|HPRD:02831|Vega:OTTHUMG00000172391 15 15q22 signal recognition particle 14kDa (homologous Alu RNA binding protein) protein-coding SRP14 signal recognition particle 14kDa (homologous Alu RNA binding protein) O 18 kDa Alu RNA-binding protein|signal recognition particle 14 kDa protein 20121230 -9606 6728 SRP19 - - HGNC:11300|MIM:182175|Ensembl:ENSG00000153037|HPRD:01644|Vega:OTTHUMG00000128805 5 5q21-q22 signal recognition particle 19kDa protein-coding SRP19 signal recognition particle 19kDa O signal recognition particle 19 kDa protein 20121230 -9606 6729 SRP54 - - HGNC:11301|MIM:604857|Ensembl:ENSG00000100883|HPRD:05330|Vega:OTTHUMG00000140214 14 14q13.2 signal recognition particle 54kDa protein-coding SRP54 signal recognition particle 54kDa O signal recognition particle 54 kDa protein 20121230 -9606 6730 SRP68 - - HGNC:11302|MIM:604858|Ensembl:ENSG00000167881|HPRD:05331|Vega:OTTHUMG00000180054 17 17q25.1 signal recognition particle 68kDa protein-coding SRP68 signal recognition particle 68kDa O signal recognition particle 68 kDa protein 20121230 -9606 6731 SRP72 - BMFF HGNC:11303|MIM:602122|Ensembl:ENSG00000174780|HPRD:03671|Vega:OTTHUMG00000128843 4 4q11 signal recognition particle 72kDa protein-coding SRP72 signal recognition particle 72kDa O signal recognition particle 72 kDa protein 20121230 -9606 6732 SRPK1 RP3-422H11.1 SFRSK1 HGNC:11305|MIM:601939|Ensembl:ENSG00000096063|HPRD:15992|Vega:OTTHUMG00000014583 6 6p21.31 SRSF protein kinase 1 protein-coding SRPK1 SRSF protein kinase 1 O SFRS protein kinase 1|SR-protein-specific kinase 1|serine/arginine-rich splicing factor kinase 1|serine/threonine-protein kinase SRPK1 20121230 -9606 6733 SRPK2 - SFRSK2 HGNC:11306|MIM:602980|Ensembl:ENSG00000135250|HPRD:04280|Vega:OTTHUMG00000157405 7 7q22-q31.1 SRSF protein kinase 2 protein-coding SRPK2 SRSF protein kinase 2 O H_RG152G17.1a|H_RG152G17.1b|SFRS protein kinase 2|SR protein kinase 2|SR-protein-specific kinase 2|WUGSC:H_RG152G17.1a|serine kinase SRPK2|serine/arginine-rich protein-specific kinase 2|serine/arginine-rich splicing factor kinase 2|serine/threonine-protein kinase SRPK2 20121230 -9606 6734 SRPR - DP|Sralpha HGNC:11307|MIM:182180|Ensembl:ENSG00000182934|HPRD:01645|Vega:OTTHUMG00000165826 11 11q24.2 signal recognition particle receptor (docking protein) protein-coding SRPR signal recognition particle receptor (docking protein) O DP-alpha|SR-alpha|SRP-alpha|docking protein alpha|signal recognition particle receptor subunit alpha 20121230 -9606 6736 SRY - SRXX1|SRXY1|TDF|TDY HGNC:11311|MIM:480000|HPRD:08364 Y Yp11.3 sex determining region Y protein-coding SRY sex determining region Y O essential protein for sex determination in human males|sex determining region protein|sex-determining region Y protein|sex-determining region on Y|testis-determining factor 20121230 -9606 6737 TRIM21 - RNF81|RO52|SSA|SSA1 HGNC:11312|MIM:109092|Ensembl:ENSG00000132109|HPRD:00170|Vega:OTTHUMG00000165701 11 11p15.5 tripartite motif containing 21 protein-coding TRIM21 tripartite motif containing 21 O 52 kDa Ro protein|52 kDa ribonucleoprotein autoantigen Ro/SS-A|E3 ubiquitin-protein ligase TRIM21|RING finger protein 81|SS-A|Sicca syndrome antigen A|Sjogren syndrome antigen A1 (52kDa, ribonucleoprotein autoantigen SS-A/Ro)|ro(SS-A)|sjoegren syndrome type A antigen|tripartite motif-containing 21|tripartite motif-containing protein 21 20121230 -9606 6738 TROVE2 RP11-101E13.3 RO60|RORNP|SSA2 HGNC:11313|MIM:600063|Ensembl:ENSG00000116747|HPRD:15964|Vega:OTTHUMG00000035675 1 1q31 TROVE domain family, member 2 protein-coding TROVE2 TROVE domain family, member 2 O 60 kDa SS-A/Ro ribonucleoprotein|60 kDa ribonucleoprotein Ro|Sjogren syndrome antigen A2 (60kD, ribonucleoprotein autoantigen SS-A/Ro)|gastric cancer multi-drug resistance protein|sjoegren syndrome type A antigen 20121230 -9606 6739 SSAV1 - GLV MIM:182090 18 18q12.3 simian sarcoma-associated virus 1/gibbon ape leukemia virus-related endogenous retroviral element 1 unknown - - - - 20100624 -9606 6741 SSB - LARP3|La HGNC:11316|MIM:109090|Ensembl:ENSG00000138385|HPRD:00168|Vega:OTTHUMG00000132212 2 2q31.1 Sjogren syndrome antigen B (autoantigen La) protein-coding SSB Sjogren syndrome antigen B (autoantigen La) O La ribonucleoprotein domain family, member 3|SS-B|SS-B/La protein|autoantigen La|la autoantigen|lupus La antigen|lupus La protein|sjoegren syndrome type B antigen 20121230 -9606 6742 SSBP1 - Mt-SSB|SOSS-B1|SSBP|mtSSB HGNC:11317|MIM:600439|Ensembl:ENSG00000106028|HPRD:02703|Vega:OTTHUMG00000157572 7 7q34 single-stranded DNA binding protein 1, mitochondrial protein-coding SSBP1 single-stranded DNA binding protein 1, mitochondrial O PWP1-interacting protein 17|single-stranded DNA-binding protein, mitochondrial 20121230 -9606 6744 SSFA2 - CS-1|CS1|KRAP|SPAG13 HGNC:11319|MIM:118990|Ensembl:ENSG00000138434|HPRD:00353|Vega:OTTHUMG00000132584 2 2q31.3 sperm specific antigen 2 protein-coding SSFA2 sperm specific antigen 2 O KRAS-induced actin-interacting protein|cleavage signal-1 protein|ki-ras-induced actin-interacting protein|sperm associated antigen 13|sperm-specific antigen 2 20121230 -9606 6745 SSR1 PSEC0262 TRAPA HGNC:11323|MIM:600868|Ensembl:ENSG00000124783|HPRD:02924|Vega:OTTHUMG00000014202 6 6p24.3 signal sequence receptor, alpha protein-coding SSR1 signal sequence receptor, alpha O SSR alpha subunit|SSR-alpha|TRAP alpha|TRAP-alpha|signal sequence receptor subunit alpha|translocon-associated protein alpha subunit|translocon-associated protein subunit alpha 20121230 -9606 6746 SSR2 HSD25 TLAP|TRAP-BETA|TRAPB HGNC:11324|MIM:600867|Ensembl:ENSG00000163479|HPRD:02923|Vega:OTTHUMG00000017456 1 1q21-q23 signal sequence receptor, beta (translocon-associated protein beta) protein-coding SSR2 signal sequence receptor, beta (translocon-associated protein beta) O SSR-beta|signal sequence receptor subunit beta|translocon-associated protein beta|translocon-associated protein subunit beta 20121230 -9606 6747 SSR3 - TRAPG HGNC:11325|MIM:606213|Ensembl:ENSG00000114850|HPRD:16206|Vega:OTTHUMG00000158632 3 3q25.31 signal sequence receptor, gamma (translocon-associated protein gamma) protein-coding SSR3 signal sequence receptor, gamma (translocon-associated protein gamma) O SSR gamma|SSR-gamma|TRAP-complex gamma subunit|TRAP-gamma|signal sequence receptor subunit gamma|translocon-associated protein gamma subunit|translocon-associated protein subunit gamma 20121230 -9606 6748 SSR4 - TRAPD HGNC:11326|MIM:300090|Ensembl:ENSG00000180879|HPRD:02101|Vega:OTTHUMG00000024212 X Xq28 signal sequence receptor, delta protein-coding SSR4 signal sequence receptor, delta O SSR-delta|TRAP-delta|signal sequence receptor subunit delta|translocon-associated protein delta|translocon-associated protein subunit delta 20121230 -9606 6749 SSRP1 - FACT|FACT80|T160 HGNC:11327|MIM:604328|Ensembl:ENSG00000149136|HPRD:05061|Vega:OTTHUMG00000167024 11 11q12 structure specific recognition protein 1 protein-coding SSRP1 structure specific recognition protein 1 O FACT 80 kDa subunit|FACT complex subunit SSRP1|FACTp80|chromatin-specific transcription elongation factor 80 kDa subunit|cisplatin-DNA SSRP|facilitates chromatin remodeling 80 kDa subunit|facilitates chromatin transcription complex 80 kDa subunit|facilitates chromatin transcription complex subunit SSRP1|hSSRP1|high mobility group box|recombination signal sequence recognition protein 1|structure-specific recognition protein 1 20121230 -9606 6750 SST - SMST HGNC:11329|MIM:182450|Ensembl:ENSG00000157005|HPRD:08920|Vega:OTTHUMG00000156462 3 3q28 somatostatin protein-coding SST somatostatin O growth hormone release-inhibiting factor|somatostatin-14|somatostatin-28 20121230 -9606 6751 SSTR1 - SRIF-2|SS-1-R|SS1-R|SS1R HGNC:11330|MIM:182451|Ensembl:ENSG00000139874|HPRD:01673|Vega:OTTHUMG00000140249 14 14q13 somatostatin receptor 1 protein-coding SSTR1 somatostatin receptor 1 O somatostatin receptor type 1 20121230 -9606 6752 SSTR2 - - HGNC:11331|MIM:182452|Ensembl:ENSG00000180616|HPRD:01674|Vega:OTTHUMG00000178343 17 17q24 somatostatin receptor 2 protein-coding SSTR2 somatostatin receptor 2 O SRIF-1|SS2R|somatostatin receptor type 2 20121230 -9606 6753 SSTR3 - - HGNC:11332|MIM:182453|Ensembl:ENSG00000183473|HPRD:01675|Vega:OTTHUMG00000150537 22 22q13.1 somatostatin receptor 3 protein-coding SSTR3 somatostatin receptor 3 O SS-3-R|SS3-R|SS3R|SSR-28|somatostatin receptor type 3 20121230 -9606 6754 SSTR4 - SS-4-R|SS4-R|SS4R HGNC:11333|MIM:182454|Ensembl:ENSG00000132671|HPRD:01676|Vega:OTTHUMG00000032054 20 20p11.2 somatostatin receptor 4 protein-coding SSTR4 somatostatin receptor 4 O G-protein coupled receptor|somatostatin receptor type 4 20121230 -9606 6755 SSTR5 - SS-5-R HGNC:11334|MIM:182455|Ensembl:ENSG00000162009|HPRD:01677|Vega:OTTHUMG00000047842 16 16p13.3 somatostatin receptor 5 protein-coding SSTR5 somatostatin receptor 5 O somatostatin receptor subtype 5|somatostatin receptor type 5 20121230 -9606 6756 SSX1 RP11-552E4.1 CT5.1|SSRC HGNC:11335|MIM:312820|Ensembl:ENSG00000126752|HPRD:02428|Vega:OTTHUMG00000021488 X Xp11.23 synovial sarcoma, X breakpoint 1 protein-coding SSX1 synovial sarcoma, X breakpoint 1 O cancer/testis antigen 5.1|cancer/testis antigen family 5, member 1|protein SSX1|sarcoma, synovial, X-chromosome-related 1 20121230 -9606 6757 SSX2 RP11-552J9.2 CT5.2a|HD21|HOM-MEL-40|SSX HGNC:11336|MIM:300192|Ensembl:ENSG00000241476|HPRD:02180|Vega:OTTHUMG00000022697 X Xp11.22 synovial sarcoma, X breakpoint 2 protein-coding SSX2 synovial sarcoma, X breakpoint 2 O CT5.2|cancer/testis antigen 5.2|cancer/testis antigen family 5, member 2a|protein SSX2|sarcoma, synovial, X-chromosome-related 2|synovial sarcoma, X breakpoint 2B|tumor antigen HOM-MEL-40 20121230 -9606 6758 SSX5 RP11-38O23.8 - HGNC:11339|MIM:300327|Ensembl:ENSG00000165583|HPRD:02267|Vega:OTTHUMG00000021471 X Xp11.23 synovial sarcoma, X breakpoint 5 protein-coding SSX5 synovial sarcoma, X breakpoint 5 O protein SSX5 20121230 -9606 6759 SSX4 RP11-344N17.14-001 CT5.4 HGNC:11338|MIM:300326|Ensembl:ENSG00000204645|HPRD:02266|Vega:OTTHUMG00000022698 X Xp11.23 synovial sarcoma, X breakpoint 4 protein-coding SSX4 synovial sarcoma, X breakpoint 4 O cancer/testis antigen 5.4|protein SSX4 20121230 -9606 6760 SS18 - SSXT|SYT HGNC:11340|MIM:600192|Ensembl:ENSG00000141380|HPRD:02559|Vega:OTTHUMG00000179425 18 18q11.2 synovial sarcoma translocation, chromosome 18 protein-coding SS18 synovial sarcoma translocation, chromosome 18 O protein SSXT|synovial sarcoma translocated to X chromosome protein|synovial sarcoma, translocated to X chromosome 20121230 -9606 6761 ST2 - - HGNC:11347|MIM:185440 11 11p14.3-p12 suppression of tumorigenicity 2 other ST2 suppression of tumorigenicity 2 O - 20120909 -9606 6762 ST3 - CCTS|TSHL HGNC:11348|MIM:191181 11 11q13-q23 suppression of tumorigenicity 3 unknown ST3 suppression of tumorigenicity 3 O - 20121209 -9606 6764 ST5 - DENND2B|HTS1|p126 HGNC:11350|MIM:140750|Ensembl:ENSG00000166444|HPRD:00780|Vega:OTTHUMG00000165835 11 11p15 suppression of tumorigenicity 5 protein-coding ST5 suppression of tumorigenicity 5 O DENN/MADD domain containing 2B|heLa tumor suppression 1|suppression of tumorigenicity 5 protein 20121230 -9606 6765 ST8 - OVC|OVCS HGNC:11352|MIM:167000 6 6q25-q27 suppression of tumorigenicity 8 (ovarian) unknown ST8 suppression of tumorigenicity 8 (ovarian) O - 20120622 -9606 6767 ST13 RP3-408N23.5 AAG2|FAM10A1|FAM10A4|HIP|HOP|HSPABP|HSPABP1|P48|PRO0786|SNC6 HGNC:11343|MIM:606796|Ensembl:ENSG00000100380|HPRD:08426|Vega:OTTHUMG00000151201 22 22q13.2 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) protein-coding ST13 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) O Hsp70-interacting protein|aging-associated protein 2|heat shock 70kD protein binding protein|hsc70-interacting protein|progesterone receptor-associated p48 protein|putative tumor suppressor ST13|renal carcinoma antigen NY-REN-33|suppression of tumorigenicity 13 protein 20121230 -9606 6768 ST14 - HAI|MT-SP1|MTSP1|PRSS14|SNC19|TADG15|TMPRSS14 HGNC:11344|MIM:606797|Ensembl:ENSG00000149418|HPRD:06005|Vega:OTTHUMG00000165768 11 11q24-q25 suppression of tumorigenicity 14 (colon carcinoma) protein-coding ST14 suppression of tumorigenicity 14 (colon carcinoma) O membrane-type serine protease 1|prostamin|serine protease 14|serine protease TADG-15|suppression of tumorigenicity 14 (colon carcinoma, matriptase, epithin)|suppressor of tumorigenicity 14 protein|tumor associated differentially expressed gene 15 protein|tumor-associated differentially-expressed gene 15 protein 20121230 -9606 6769 STAC - STAC1 HGNC:11353|MIM:602317|Ensembl:ENSG00000144681|HPRD:11890|Vega:OTTHUMG00000130798 3 3p22.3 SH3 and cysteine rich domain protein-coding STAC SH3 and cysteine rich domain O SH3 and cysteine-rich domain-containing protein|SRC homology 3 and cysteine-rich domain-containing protein|src homology three (SH3) and cysteine rich domain 20121230 -9606 6770 STAR - STARD1 HGNC:11359|MIM:600617|Ensembl:ENSG00000147465|HPRD:02794|Vega:OTTHUMG00000164058 8 8p11.2 steroidogenic acute regulatory protein protein-coding STAR steroidogenic acute regulatory protein O START domain containing 1|START domain-containing protein 1|StAR-related lipid transfer (START) domain containing 1|cholesterol trafficker|mitochondrial steroid acute regulatory protein|steroid acute regulatory protein|steroidogenic acute regulator|steroidogenic acute regulatory protein, mitochondrial 20121230 -9606 6771 STARP1 - STARD1P1 HGNC:11360 13 13q21.32 steroidogenic acute regulatory protein pseudogene 1 pseudo STARP1 steroidogenic acute regulatory protein pseudogene 1 O - 20121230 -9606 6772 STAT1 - CANDF7|ISGF-3|STAT91 HGNC:11362|MIM:600555|Ensembl:ENSG00000115415|HPRD:02777|Vega:OTTHUMG00000132699 2 2q32.2 signal transducer and activator of transcription 1, 91kDa protein-coding STAT1 signal transducer and activator of transcription 1, 91kDa O signal transducer and activator of transcription 1-alpha/beta|signal transducer and activator of transcription-1|transcription factor ISGF-3 components p91/p84 20121230 -9606 6773 STAT2 - ISGF-3|P113|STAT113 HGNC:11363|MIM:600556|Ensembl:ENSG00000170581|HPRD:02778|Vega:OTTHUMG00000170760 12 12q13.3 signal transducer and activator of transcription 2, 113kDa protein-coding STAT2 signal transducer and activator of transcription 2, 113kDa O interferon alpha induced transcriptional activator|signal transducer and activator of transcription 2 20121230 -9606 6774 STAT3 - APRF|HIES HGNC:11364|MIM:102582|Ensembl:ENSG00000168610|HPRD:00026|Vega:OTTHUMG00000150645 17 17q21.31 signal transducer and activator of transcription 3 (acute-phase response factor) protein-coding STAT3 signal transducer and activator of transcription 3 (acute-phase response factor) O DNA-binding protein APRF|acute-phase response factor|signal transducer and activator of transcription 3 20121230 -9606 6775 STAT4 - SLEB11 HGNC:11365|MIM:600558|Ensembl:ENSG00000138378|HPRD:02779|Vega:OTTHUMG00000132700 2 2q32.2-q32.3 signal transducer and activator of transcription 4 protein-coding STAT4 signal transducer and activator of transcription 4 O - 20121230 -9606 6776 STAT5A - MGF|STAT5 HGNC:11366|MIM:601511|Ensembl:ENSG00000126561|HPRD:03301|Vega:OTTHUMG00000150725 17 17q11.2 signal transducer and activator of transcription 5A protein-coding STAT5A signal transducer and activator of transcription 5A O - 20121230 -9606 6777 STAT5B - STAT5 HGNC:11367|MIM:604260|Ensembl:ENSG00000173757|HPRD:05037|Vega:OTTHUMG00000150724 17 17q11.2 signal transducer and activator of transcription 5B protein-coding STAT5B signal transducer and activator of transcription 5B O transcription factor STAT5B 20121230 -9606 6778 STAT6 - D12S1644|IL-4-STAT|STAT6B|STAT6C HGNC:11368|MIM:601512|Ensembl:ENSG00000166888|HPRD:03302|Vega:OTTHUMG00000171194 12 12q13 signal transducer and activator of transcription 6, interleukin-4 induced protein-coding STAT6 signal transducer and activator of transcription 6, interleukin-4 induced O STAT, interleukin4-induced|signal transducer and activator of transcription 6|transcription factor IL-4 STAT 20121230 -9606 6779 STATH - STR HGNC:11369|MIM:184470|Ensembl:ENSG00000126549|HPRD:01696|Vega:OTTHUMG00000129394 4 4q13.3 statherin protein-coding STATH statherin O - 20121230 -9606 6780 STAU1 RP3-470L14.2 STAU HGNC:11370|MIM:601716|Ensembl:ENSG00000124214|HPRD:03422|Vega:OTTHUMG00000032691 20 20q13.1 staufen, RNA binding protein, homolog 1 (Drosophila) protein-coding STAU1 staufen, RNA binding protein, homolog 1 (Drosophila) O double-stranded RNA-binding protein Staufen homolog 1 20121230 -9606 6781 STC1 - STC HGNC:11373|MIM:601185|Ensembl:ENSG00000159167|HPRD:03115|Vega:OTTHUMG00000097853 8 8p21-p11.2 stanniocalcin 1 protein-coding STC1 stanniocalcin 1 O stanniocalcin-1 20121230 -9606 6782 HSPA13 - STCH HGNC:11375|MIM:601100|Ensembl:ENSG00000155304|HPRD:03061|Vega:OTTHUMG00000074261 21 21q11 heat shock protein 70kDa family, member 13 protein-coding HSPA13 heat shock protein 70kDa family, member 13 O heat shock 70 kDa protein 13|microsomal stress 70 protein ATPase core|microsomal stress-70 protein ATPase core|stress 70 protein chaperone, microsome-associated, 60kD|stress 70 protein chaperone, microsome-associated, 60kDa|stress-70 protein chaperone microsome-associated 60 kDa protein 20121230 -9606 6783 SULT1E1 - EST|EST-1|ST1E1|STE HGNC:11377|MIM:600043|Ensembl:ENSG00000109193|HPRD:08966|Vega:OTTHUMG00000129403 4 4q13.1 sulfotransferase family 1E, estrogen-preferring, member 1 protein-coding SULT1E1 sulfotransferase family 1E, estrogen-preferring, member 1 O estrogen sulfotransferase|estrone sulfotransferase|sulfotransferase 1E1|sulfotransferase, estrogen-preferring 20121230 -9606 6785 ELOVL4 - ADMD|CT118|ISQMR|STGD2|STGD3 HGNC:14415|MIM:605512|Ensembl:ENSG00000118402|HPRD:05697|Vega:OTTHUMG00000015087 6 6q14 ELOVL fatty acid elongase 4 protein-coding ELOVL4 ELOVL fatty acid elongase 4 O 3-keto acyl-CoA synthase ELOVL4|ELOVL FA elongase 4|Stargardt disease 3 (autosomal dominant)|cancer/testis antigen 118|elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 4|elongation of very long chain fatty acids protein 4 20121230 -9606 6786 STIM1 - D11S4896E|GOK|STIM1L HGNC:11386|MIM:605921|Ensembl:ENSG00000167323|HPRD:05803|Vega:OTTHUMG00000133360 11 11p15.5 stromal interaction molecule 1 protein-coding STIM1 stromal interaction molecule 1 O - 20121230 -9606 6787 NEK4 - NRK2|STK2|pp12301 HGNC:11399|MIM:601959|Ensembl:ENSG00000114904|HPRD:11880|Vega:OTTHUMG00000158836 3 3p21.1 NIMA-related kinase 4 protein-coding NEK4 NIMA-related kinase 4 O NIMA (never in mitosis gene a)-related kinase 4|never in mitosis A-related kinase 4|nimA-related protein kinase 4|serine/threonine kinase 2|serine/threonine protein kinase-2|serine/threonine-protein kinase 2|serine/threonine-protein kinase NRK2|serine/threonine-protein kinase Nek4 20121230 -9606 6788 STK3 - KRS1|MST2 HGNC:11406|MIM:605030|Ensembl:ENSG00000104375|HPRD:05433|Vega:OTTHUMG00000164651 8 8q22.2 serine/threonine kinase 3 protein-coding STK3 serine/threonine kinase 3 O MST-2|STE20-like kinase MST2|mammalian STE20-like protein kinase 2|serine/threonine kinase 3 (STE20 homolog, yeast)|serine/threonine kinase 3 (Ste20, yeast homolog)|serine/threonine-protein kinase 3|serine/threonine-protein kinase Krs-1 20121230 -9606 6789 STK4 - KRS2|MST1|TIIAC|YSK3 HGNC:11408|MIM:604965|Ensembl:ENSG00000101109|HPRD:05395|Vega:OTTHUMG00000033059 20 20q11.2-q13.2 serine/threonine kinase 4 protein-coding STK4 serine/threonine kinase 4 O MST-1|STE20-like kinase MST1|dJ211D12.2 (serine/threonine kinase 4 (MST1, KRS2))|kinase responsive to stress 2|mammalian STE20-like protein kinase 1|mammalian sterile 20-like 1|serine/threonine-protein kinase 4|serine/threonine-protein kinase Krs-2 20121230 -9606 6790 AURKA RP5-1167H4.6 AIK|ARK1|AURA|AURORA2|BTAK|PPP1R47|STK15|STK6|STK7 HGNC:11393|MIM:603072|Ensembl:ENSG00000087586|HPRD:04066|HPRD:04352|Vega:OTTHUMG00000032796 20 20q13 aurora kinase A protein-coding AURKA aurora kinase A O ARK-1|Aurora-A kinase|IPL1-related kinase|aurora 2|aurora-related kinase 1|aurora/IPL1-like kinase|aurora/IPL1-related kinase 1|breast tumor-amplified kinase|breast-tumor-amplified kinase|hARK1|protein phosphatase 1, regulatory subunit 47|serine/threonine kinase 6|serine/threonine protein kinase 15|serine/threonine-protein kinase 15|serine/threonine-protein kinase 6|serine/threonine-protein kinase aurora-A 20121230 -9606 6791 AURKAPS1 - AurAps1|STK6P HGNC:18611 1 1q41 aurora kinase A pseudogene 1 pseudo AURKAPS1 aurora kinase A pseudogene 1 O - 20121230 -9606 6792 CDKL5 RP1-245G19.3 EIEE2|ISSX|STK9 HGNC:11411|MIM:300203|Ensembl:ENSG00000008086|HPRD:02190|Vega:OTTHUMG00000021214 X Xp22 cyclin-dependent kinase-like 5 protein-coding CDKL5 cyclin-dependent kinase-like 5 O cyclin dependent kinase 5 transcript|serine/threonine kinase 9|serine/threonine-protein kinase 9 20121230 -9606 6793 STK10 - LOK|PRO2729 HGNC:11388|MIM:603919|Ensembl:ENSG00000072786|HPRD:06796|Vega:OTTHUMG00000163265 5 5q35.1 serine/threonine kinase 10 protein-coding STK10 serine/threonine kinase 10 O lymphocyte-oriented kinase|serine/threonine-protein kinase 10 20121230 -9606 6794 STK11 - LKB1|PJS|hLKB1 HGNC:11389|MIM:602216|Ensembl:ENSG00000118046|HPRD:03740|Vega:OTTHUMG00000180118 19 19p13.3 serine/threonine kinase 11 protein-coding STK11 serine/threonine kinase 11 O liver kinase B1|polarization-related protein LKB1|renal carcinoma antigen NY-REN-19|serine/threonine-protein kinase 11|serine/threonine-protein kinase LKB1|serine/threonine-protein kinase STK11 20121230 -9606 6795 AURKC - AIE2|AIK3|ARK3|AurC|SPGF5|STK13|aurora-C HGNC:11391|MIM:603495|Ensembl:ENSG00000105146|HPRD:04605 19 19q13.43 aurora kinase C protein-coding AURKC aurora kinase C O ARK-3|aurora 3|aurora-related kinase 3|aurora/IPL1-related kinase 3|aurora/IPL1/EG2 protein 2|serine/threonine kinase 13 (aurora/IPL1-like)|serine/threonine-protein kinase 13|serine/threonine-protein kinase aurora-C 20121230 -9606 6799 SULT1A2 - HAST4|P-PST|ST1A2|STP2|TSPST2 HGNC:11454|MIM:601292|Ensembl:ENSG00000197165|HPRD:03187|Vega:OTTHUMG00000048082 16 16p12.1 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 2 protein-coding SULT1A2 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 2 O P-PST 2|aryl sulfotransferase 2|arylamine sulfotransferase|phenol sulfotransferase 2|phenol-preferring phenol sulfotransferase2|phenol-sulfating phenol sulfotransferase 2|phenolic-metabolizing (P) form of PST|sulfotransferase 1A2|thermostable phenol sulfotransferase 20121230 -9606 6801 STRN - SG2NA HGNC:11424|MIM:614765|Ensembl:ENSG00000115808|HPRD:18124|Vega:OTTHUMG00000100959 2 2p22.2 striatin, calmodulin binding protein protein-coding STRN striatin, calmodulin binding protein O striatin|striatin, calmodulin-binding protein 20121230 -9606 6803 STSP1 - STS-Y|STSP HGNC:11426 Y Yq11 steroid sulfatase (microsomal) pseudogene 1 pseudo STSP1 steroid sulfatase (microsomal) pseudogene 1 O - 20121230 -9606 6804 STX1A - HPC-1|P35-1|STX1|SYN1A HGNC:11433|MIM:186590|Ensembl:ENSG00000106089|HPRD:01721|Vega:OTTHUMG00000137422 7 7q11.23 syntaxin 1A (brain) protein-coding STX1A syntaxin 1A (brain) O neuron-specific antigen HPC-1|syntaxin-1A 20121230 -9606 6809 STX3 - STX3A HGNC:11438|MIM:600876|Ensembl:ENSG00000166900|HPRD:15985|Vega:OTTHUMG00000167353 11 11q12.1 syntaxin 3 protein-coding STX3 syntaxin 3 O syntaxin 3A|syntaxin-3 20121230 -9606 6810 STX4 - STX4A|p35-2 HGNC:11439|MIM:186591|Ensembl:ENSG00000103496|HPRD:01722|Vega:OTTHUMG00000132404 16 16p11.2 syntaxin 4 protein-coding STX4 syntaxin 4 O renal carcinoma antigen NY-REN-31|syntaxin 4A (placental)|syntaxin-4 20121230 -9606 6811 STX5 - SED5|STX5A HGNC:11440|MIM:603189|Ensembl:ENSG00000162236|HPRD:04426|Vega:OTTHUMG00000143864 11 11q12.3 syntaxin 5 protein-coding STX5 syntaxin 5 O syntaxin 5A|syntaxin-5 20121230 -9606 6812 STXBP1 RP11-56D16.3 MUNC18-1|NSEC1|P67|RBSEC1|UNC18 HGNC:11444|MIM:602926|Ensembl:ENSG00000136854|HPRD:04235|Vega:OTTHUMG00000020713 9 9q34.1 syntaxin binding protein 1 protein-coding STXBP1 syntaxin binding protein 1 O N-Sec1|neuronal SEC1|protein unc-18 homolog 1|protein unc-18 homolog A|syntaxin-binding protein 1|unc-18A|unc18-1 20121230 -9606 6813 STXBP2 - FHL5|Hunc18b|MUNC18-2|UNC18-2|UNC18B|pp10122 HGNC:11445|MIM:601717|Ensembl:ENSG00000076944|HPRD:03423 19 19p13.3-p13.2 syntaxin binding protein 2 protein-coding STXBP2 syntaxin binding protein 2 O protein unc-18 homolog 2|protein unc-18 homolog B|syntaxin-binding protein 2|unc-18B 20121230 -9606 6814 STXBP3 - MUNC18-3|MUNC18C|PSP|UNC-18C HGNC:11446|MIM:608339|Ensembl:ENSG00000116266|HPRD:10517|Vega:OTTHUMG00000011122 1 1p13.3 syntaxin binding protein 3 protein-coding STXBP3 syntaxin binding protein 3 O platelet Sec1 protein|protein unc-18 homolog 3|protein unc-18 homolog C|syntaxin 4 binding protein|syntaxin-binding protein 3|unc18-3 20121230 -9606 6815 STYX - - HGNC:11447|Ensembl:ENSG00000198252|HPRD:10258|Vega:OTTHUMG00000140306 14 - serine/threonine/tyrosine interacting protein protein-coding STYX serine/threonine/tyrosine interacting protein O protein tyrosine phosphatase-like protein|serine/threonine/tyrosine-interacting protein 20121230 -9606 6817 SULT1A1 OK/SW-cl.88 HAST1/HAST2|P-PST|PST|ST1A1|ST1A3|STP|STP1|TSPST1 HGNC:11453|MIM:171150|Ensembl:ENSG00000196502|HPRD:01372|Vega:OTTHUMG00000131765 16 16p12.1 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 1 protein-coding SULT1A1 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 1 O P-PST 1|aryl sulfotransferase 1|phenol-sulfating phenol sulfotransferase 1|sulfotransferase 1A1|thermostable phenol sulfotransferase1|ts-PST 20121230 -9606 6818 SULT1A3 - HAST|HAST3|M-PST|ST1A3/ST1A4|ST1A5|STM|TL-PST HGNC:11455|MIM:600641|Ensembl:ENSG00000261052|HPRD:07199|Vega:OTTHUMG00000048083 16 16p11.2 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 3 protein-coding SULT1A3 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 3 O aryl sulfotransferase 1A3/1A4|catecholamine-sulfating phenol sulfotransferase|dopamine-specific sulfotransferase|monoamine-sulfating phenosulfotransferase|phenol sulfotransferase 1A5|placental estrogen sulfotransferase|sulfokinase|sulfotransferase 1A3/1A4|thermolabile (monoamine, M form) phenol sulfotransferase 20121230 -9606 6819 SULT1C2 - ST1C1|ST1C2|SULT1C1|humSULTC2 HGNC:11456|MIM:602385|Ensembl:ENSG00000198203|HPRD:03858|Vega:OTTHUMG00000153215 2 2q12.3 sulfotransferase family, cytosolic, 1C, member 2 protein-coding SULT1C2 sulfotransferase family, cytosolic, 1C, member 2 O SULT1C#1|sulfotransferase 1C1|sulfotransferase 1C2|sulfotransferase family, cytosolic, 1C, member 1 20121230 -9606 6820 SULT2B1 - HSST2 HGNC:11459|MIM:604125|Ensembl:ENSG00000088002|HPRD:04991 19 19q13.3 sulfotransferase family, cytosolic, 2B, member 1 protein-coding SULT2B1 sulfotransferase family, cytosolic, 2B, member 1 O ST2B1|alcohol sulfotransferase|hydroxysteroid sulfotransferase 2|sulfotransferase 2B1|sulfotransferase family cytosolic 2B member 1 20121230 -9606 6821 SUOX - - HGNC:11460|MIM:606887|Ensembl:ENSG00000139531|HPRD:06055|Vega:OTTHUMG00000128503 12 12q13.2 sulfite oxidase protein-coding SUOX sulfite oxidase O sulfite oxidase, mitochondrial 20121230 -9606 6822 SULT2A1 - DHEA-ST|DHEAS|HST|ST2|ST2A1|ST2A3|STD|hSTa HGNC:11458|MIM:125263|Ensembl:ENSG00000105398|HPRD:00502|Vega:OTTHUMG00000162469 19 19q13.3 sulfotransferase family, cytosolic, 2A, dehydroepiandrosterone (DHEA)-preferring, member 1 protein-coding SULT2A1 sulfotransferase family, cytosolic, 2A, dehydroepiandrosterone (DHEA)-preferring, member 1 O alcohol/hydroxysteroid sulfotransferase|bile salt sulfotransferase|bile-salt sulfotranasferase 2A1 20121230 -9606 6824 ETF1P1 - HCGVII|SUP45L2 HGNC:3478 6 6p21.3 eukaryotic translation termination factor 1 pseudogene 1 pseudo ETF1P1 eukaryotic translation termination factor 1 pseudogene 1 O - 20121230 -9606 6825 ETF1P2 - SUP45L3 HGNC:3479 7 7q36.1 eukaryotic translation termination factor 1 pseudogene 2 pseudo ETF1P2 eukaryotic translation termination factor 1 pseudogene 2 O - 20121230 -9606 6827 SUPT4H1 - SPT4|SPT4H|SUPT4H HGNC:11467|MIM:603555|Ensembl:ENSG00000213246|HPRD:16026|Vega:OTTHUMG00000178926 17 17q21-q23 suppressor of Ty 4 homolog 1 (S. cerevisiae) protein-coding SUPT4H1 suppressor of Ty 4 homolog 1 (S. cerevisiae) O DRB sensitivity-inducing factor 14 kDa subunit|DSIF p14|small hSpt4 subunit|transcription elongation factor SPT4 20121230 -9606 6829 SUPT5H - SPT5|SPT5H|Tat-CT1 HGNC:11469|MIM:602102|Ensembl:ENSG00000196235|HPRD:03655 19 19q13 suppressor of Ty 5 homolog (S. cerevisiae) protein-coding SUPT5H suppressor of Ty 5 homolog (S. cerevisiae) O DRB sensitivity-inducing factor 160 kDa subunit|DRB sensitivity-inducing factor large subunit|DSIF large subunit|DSIF p160|Tat-cotransactivator 1 protein|hSPT5|transcription elongation factor SPT5 20121230 -9606 6830 SUPT6H - SPT6|SPT6H|emb-5 HGNC:11470|MIM:601333|Ensembl:ENSG00000109111|HPRD:03211|Vega:OTTHUMG00000179449 17 17q11.2 suppressor of Ty 6 homolog (S. cerevisiae) protein-coding SUPT6H suppressor of Ty 6 homolog (S. cerevisiae) O hSPT6|tat-CT2 protein|tat-cotransactivator 2 protein|transcription elongation factor SPT6 20121230 -9606 6832 SUPV3L1 RP11-227H15.2 SUV3 HGNC:11471|MIM:605122|Ensembl:ENSG00000156502|HPRD:05493|Vega:OTTHUMG00000018375 10 10q22.1 suppressor of var1, 3-like 1 (S. cerevisiae) protein-coding SUPV3L1 suppressor of var1, 3-like 1 (S. cerevisiae) O ATP-dependent RNA helicase SUPV3L1, mitochondrial|SUV3-like protein 1|suppressor of var1 3-like protein 1|suppressor of var1, 3-like 1(SUV3) 20121230 -9606 6833 ABCC8 - ABC36|HHF1|HI|HRINS|MRP8|PHHI|SUR|SUR1|SUR1delta2|TNDM2 HGNC:59|MIM:600509|Ensembl:ENSG00000006071|HPRD:02741|Vega:OTTHUMG00000166316 11 11p15.1 ATP-binding cassette, sub-family C (CFTR/MRP), member 8 protein-coding ABCC8 ATP-binding cassette, sub-family C (CFTR/MRP), member 8 O ATP-binding cassette sub-family C member 8|ATP-binding cassette transporter sub-family C member 8|sulfonylurea receptor (hyperinsulinemia)|sulfonylurea receptor 1 20121230 -9606 6834 SURF1 - - HGNC:11474|MIM:185620|Ensembl:ENSG00000148290|HPRD:01711|Vega:OTTHUMG00000020866 9 9q34.2 surfeit 1 protein-coding SURF1 surfeit 1 O surfeit locus protein 1 20121230 -9606 6835 SURF2 - SURF-2 HGNC:11475|MIM:185630|Ensembl:ENSG00000148291|HPRD:15948|Vega:OTTHUMG00000020867 9 9q34.2 surfeit 2 protein-coding SURF2 surfeit 2 O surfeit locus protein 2 20121230 -9606 6836 SURF4 RP11-244N20.4 ERV29 HGNC:11476|MIM:185660|Ensembl:ENSG00000148248|HPRD:01715|Vega:OTTHUMG00000020868 9 9q34.2 surfeit 4 protein-coding SURF4 surfeit 4 O surface 4 integral membrane protein|surfeit locus protein 4 20121230 -9606 6837 MED22 RP11-244N20.9 MED24|SURF5|surf-5 HGNC:11477|MIM:185641|Ensembl:ENSG00000148297|HPRD:01713|Vega:OTTHUMG00000020869 9 9q34.2 mediator complex subunit 22 protein-coding MED22 mediator complex subunit 22 O mediator of RNA polymerase II transcription subunit 22|surfeit 5|surfeit locus protein 5 20121230 -9606 6838 SURF6 - RRP14 HGNC:11478|MIM:185642|Ensembl:ENSG00000148296|HPRD:01714|Vega:OTTHUMG00000020871 9 9q34.2 surfeit 6 protein-coding SURF6 surfeit 6 O surfeit locus protein 6 20121230 -9606 6839 SUV39H1 - KMT1A|MG44|SUV39H HGNC:11479|MIM:300254|Ensembl:ENSG00000101945|HPRD:02221|Vega:OTTHUMG00000022701 X Xp11.23 suppressor of variegation 3-9 homolog 1 (Drosophila) protein-coding SUV39H1 suppressor of variegation 3-9 homolog 1 (Drosophila) O H3-K9-HMTase 1|Su(var)3-9 homolog 1|histone H3-K9 methyltransferase 1|histone-lysine N-methyltransferase SUV39H1|histone-lysine N-methyltransferase, H3 lysine-9 specific 1|lysine N-methyltransferase 1A|position-effect variegation 3-9 homolog 20121230 -9606 6840 SVIL RP11-534G20.1 - HGNC:11480|MIM:604126|Ensembl:ENSG00000197321|HPRD:04992|Vega:OTTHUMG00000017882 10 10p11.2 supervillin protein-coding SVIL supervillin O archvillin|membrane-associated F-actin binding protein p205|p205/p250 20121230 -9606 6843 VAMP1 - SYB1|VAMP-1 HGNC:12642|MIM:185880|Ensembl:ENSG00000139190|HPRD:01716|Vega:OTTHUMG00000168269 12 12p vesicle-associated membrane protein 1 (synaptobrevin 1) protein-coding VAMP1 vesicle-associated membrane protein 1 (synaptobrevin 1) O synaptobrevin 1|synaptobrevin-1|vesicle-associated membrane protein 1 20121230 -9606 6844 VAMP2 - SYB2|VAMP-2 HGNC:12643|MIM:185881|Ensembl:ENSG00000220205|Ensembl:ENSG00000263620|HPRD:01717|Vega:OTTHUMG00000150254|Vega:OTTHUMG00000178326 17 17p13.1 vesicle-associated membrane protein 2 (synaptobrevin 2) protein-coding VAMP2 vesicle-associated membrane protein 2 (synaptobrevin 2) O synaptobrevin 2|synaptobrevin-2|vesicle associated membrane protein 2|vesicle-associated membrane protein 2 20121230 -9606 6845 VAMP7 - SYBL1|TI-VAMP|TIVAMP|VAMP-7 HGNC:11486|MIM:300053|Ensembl:ENSG00000124333|HPRD:02084|Vega:OTTHUMG00000022679 X|Y Xq28 and Yq12 vesicle-associated membrane protein 7 protein-coding VAMP7 vesicle-associated membrane protein 7 O synaptobrevin-like 1|synaptobrevin-like protein 1|tetanus neurotoxin-insensitive VAMP|tetanus-insensitive VAMP 20121230 -9606 6846 XCL2 hCG_1729916 SCM-1b|SCM1B|SCYC2 HGNC:10646|MIM:604828|Ensembl:ENSG00000143185|HPRD:05317|Vega:OTTHUMG00000034549 1 1q24.2 chemokine (C motif) ligand 2 protein-coding XCL2 chemokine (C motif) ligand 2 O XC chemokine ligand 2|c motif chemokine 2|cytokine SCM-1 beta|small inducible cytokine subfamily C, member 2 20121230 -9606 6847 SYCP1 RP11-109G4.1 CT8|HOM-TES-14|SCP1 HGNC:11487|MIM:602162|Ensembl:ENSG00000198765|HPRD:03698|Vega:OTTHUMG00000012057 1 1p13-p12 synaptonemal complex protein 1 protein-coding SYCP1 synaptonemal complex protein 1 O SCP-1|cancer/testis antigen 8 20121230 -9606 6850 SYK - p72-Syk HGNC:11491|MIM:600085|Ensembl:ENSG00000165025|HPRD:02514|Vega:OTTHUMG00000020200 9 9q22 spleen tyrosine kinase protein-coding SYK spleen tyrosine kinase O tyrosine-protein kinase SYK 20121230 -9606 6852 SYM2 - - HGNC:11493 - - symphalangism 2 (distal) unknown SYM2 symphalangism 2 (distal) O - 20121208 -9606 6853 SYN1 RP1-230G1.2 SYN1a|SYN1b|SYNI HGNC:11494|MIM:313440|Ensembl:ENSG00000008056|HPRD:02433|Vega:OTTHUMG00000021454 X Xp11.23 synapsin I protein-coding SYN1 synapsin I O brain protein 4.1|synapsin-1 20121230 -9606 6854 SYN2 - SYNII|SYNIIa|SYNIIb HGNC:11495|MIM:600755|Ensembl:ENSG00000157152|HPRD:02857|Vega:OTTHUMG00000155335 3 3p25 synapsin II protein-coding SYN2 synapsin II O synapsin-2 20121230 -9606 6855 SYP - MRXSYP HGNC:11506|MIM:313475|Ensembl:ENSG00000102003|HPRD:02435|Vega:OTTHUMG00000034557 X Xp11.23-p11.22 synaptophysin protein-coding SYP synaptophysin O major synaptic vesicle protein P38 20121230 -9606 6856 SYPL1 - H-SP1|SYPL HGNC:11507|Ensembl:ENSG00000008282|HPRD:15459|Vega:OTTHUMG00000157587 7 7q22.3 synaptophysin-like 1 protein-coding SYPL1 synaptophysin-like 1 O pantophysin|synaptophysin-like protein 1 20121230 -9606 6857 SYT1 - P65|SVP65|SYT HGNC:11509|MIM:185605|Ensembl:ENSG00000067715|HPRD:01710|Vega:OTTHUMG00000134326 12 12cen-q21 synaptotagmin I protein-coding SYT1 synaptotagmin I O synaptotagmin 1|synaptotagmin-1|sytI 20121230 -9606 6860 SYT4 - HsT1192 HGNC:11512|MIM:600103|Ensembl:ENSG00000132872|HPRD:02519|Vega:OTTHUMG00000132610 18 18q12.3 synaptotagmin IV protein-coding SYT4 synaptotagmin IV O synaptotagmin 4|synaptotagmin-4|sytIV 20121230 -9606 6861 SYT5 - - HGNC:11513|MIM:600782|Ensembl:ENSG00000129990|HPRD:02870|Vega:OTTHUMG00000180669 19 19q|11p synaptotagmin V protein-coding SYT5 synaptotagmin V O synaptotagmin 5|synaptotagmin-5|sytV 20121230 -9606 6862 T RP11-459F1.1 TFT HGNC:11515|MIM:601397|Ensembl:ENSG00000164458|HPRD:03236|Vega:OTTHUMG00000015991 6 6q27 T, brachyury homolog (mouse) protein-coding T T, brachyury homolog (mouse) O T brachyury homolog|brachyury protein|protein T 20121230 -9606 6863 TAC1 - Hs.2563|NK2|NKNA|NPK|TAC2 HGNC:11517|MIM:162320|Ensembl:ENSG00000006128|HPRD:08876|Vega:OTTHUMG00000154069 7 7q21-q22 tachykinin, precursor 1 protein-coding TAC1 tachykinin, precursor 1 O PPT|neurokinin 1|neurokinin 2|neurokinin A|neurokinin alpha|neuromedin L|neuropeptide K|neuropeptide gamma|protachykinin-1|substance K|substance P|tachykinin 2|tachykinin, precursor 1 (substance K, substance P, neurokinin 1, neurokinin 2, neuromedin L, neurokinin alpha, neuropeptide K, neuropeptide gamma) 20121230 -9606 6865 TACR2 - NK2R|NKNAR|SKR|TAC2R HGNC:11527|MIM:162321|Ensembl:ENSG00000075073|HPRD:01207|Vega:OTTHUMG00000018377 10 10q22.1 tachykinin receptor 2 protein-coding TACR2 tachykinin receptor 2 O NK-2 receptor|NK-2R|neurokinin 2 receptor|neurokinin A receptor|seven transmembrane helix receptor|substance K receptor|substance-K receptor 20121230 -9606 6866 TAC3 UNQ585/PRO1155 HH10|NKB|NKNB|PRO1155|ZNEUROK1 HGNC:11521|MIM:162330|Ensembl:ENSG00000166863|HPRD:08877|Vega:OTTHUMG00000156958 12 12q13-q21 tachykinin 3 protein-coding TAC3 tachykinin 3 O gamma tachykinin 3|neuromedin K|preprotachykinin B|tachykinin-3 20121230 -9606 6867 TACC1 - Ga55 HGNC:11522|MIM:605301|Ensembl:ENSG00000147526|HPRD:10391|Vega:OTTHUMG00000164018 8 8p11.22 transforming, acidic coiled-coil containing protein 1 protein-coding TACC1 transforming, acidic coiled-coil containing protein 1 O gastric cancer antigen Ga55|taxin-1|transforming acidic coiled-coil-containing protein 1 20121230 -9606 6868 ADAM17 - ADAM18|CD156B|CSVP|NISBD|TACE HGNC:195|MIM:603639|Ensembl:ENSG00000151694|HPRD:04703|Vega:OTTHUMG00000090425 2 2p25 ADAM metallopeptidase domain 17 protein-coding ADAM17 ADAM metallopeptidase domain 17 O ADAM metallopeptidase domain 18|TNF-alpha convertase|TNF-alpha converting enzyme|disintegrin and metalloproteinase domain-containing protein 17|snake venom-like protease|tumor necrosis factor, alpha, converting enzyme 20121230 -9606 6869 TACR1 - NK1R|NKIR|SPR|TAC1R HGNC:11526|MIM:162323|Ensembl:ENSG00000115353|HPRD:01208|Vega:OTTHUMG00000129973 2 2p12 tachykinin receptor 1 protein-coding TACR1 tachykinin receptor 1 O NK-1 receptor|NK-1R|substance-P receptor|tachykinin receptor 1 (substance P receptor; neurokinin-1 receptor) 20121230 -9606 6870 TACR3 - HH11|NK-3R|NK3R|NKR|TAC3RL HGNC:11528|MIM:162332|Ensembl:ENSG00000169836|HPRD:01209|Vega:OTTHUMG00000131124 4 4q25 tachykinin receptor 3 protein-coding TACR3 tachykinin receptor 3 O NK-3 receptor|neurokinin B receptor|neurokinin beta receptor|neuromedin-K receptor 20121230 -9606 6871 TADA2A KL04P ADA2|ADA2A|TADA2L|hADA2 HGNC:11531|MIM:602276|Ensembl:ENSG00000108264|HPRD:03784|Vega:OTTHUMG00000133060 17 17q12-q21 transcriptional adaptor 2A protein-coding TADA2A transcriptional adaptor 2A O ADA2-like protein|transcriptional adapter 2-alpha|transcriptional adaptor 2 alpha 20121230 -9606 6872 TAF1 - BA2R|CCG1|CCGS|DYT3|DYT3/TAF1|KAT4|N-TAF1|NSCL2|OF|P250|TAF2A|TAFII250|XDP HGNC:11535|MIM:313650|Ensembl:ENSG00000147133|HPRD:02436|Vega:OTTHUMG00000022723 X Xq13.1 TAF1 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 250kDa protein-coding TAF1 TAF1 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 250kDa O TAF(II)250|TAFII-250|TBP-associated factor 250 kDa|cell cycle gene 1 protein|cell cycle, G1 phase defect|complementation of cell cycle block, G1-to-S|transcription factor TFIID p250 polypeptide|transcription initiation factor TFIID 250 kDa subunit|transcription initiation factor TFIID subunit 1 20121230 -9606 6873 TAF2 - CIF150|TAF2B|TAFII150 HGNC:11536|MIM:604912|Ensembl:ENSG00000064313|HPRD:07060|Vega:OTTHUMG00000165009 8 8q24.12 TAF2 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 150kDa protein-coding TAF2 TAF2 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 150kDa O 150 kDa cofactor of initiator function|RNA polymerase II TBP-associated factor subunit B|TAF(II)150|TAFII-150|TATA box binding protein (TBP)-associated factor, RNA polymerase II, B, 150kD|TBP-associated factor 150 kDa|cofactor of initiator function, 150kD subunit|transcription initiation factor TFIID 150 kDa subunit|transcription initiation factor TFIID subunit 2 20121230 -9606 6874 TAF4 RP5-1107C24.1 TAF2C|TAF2C1|TAF4A|TAFII130|TAFII135 HGNC:11537|MIM:601796|Ensembl:ENSG00000130699|HPRD:11797|Vega:OTTHUMG00000032893 20 20q13.33 TAF4 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 135kDa protein-coding TAF4 TAF4 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 135kDa O RNA polymerase II TBP-associated factor subunit C|TAF(II)130|TAF(II)135|TAF4A RNA polymerase II, TATA box binding protein (TBP)-associated factor, 135 kD|TAFII-130|TAFII-135|TATA box binding protein (TBP)-associated factor, RNA polymerase II, C1, 130kD|TBP-associated factor 4|transcription initiation factor TFIID 130 kDa subunit|transcription initiation factor TFIID 135 kD subunit|transcription initiation factor TFIID 135 kDa subunit|transcription initiation factor TFIID subunit 4 20121230 -9606 6875 TAF4B - TAF2C2|TAFII105 HGNC:11538|MIM:601689|Ensembl:ENSG00000141384|Vega:OTTHUMG00000179429 18 18q11.2 TAF4b RNA polymerase II, TATA box binding protein (TBP)-associated factor, 105kDa protein-coding TAF4B TAF4b RNA polymerase II, TATA box binding protein (TBP)-associated factor, 105kDa O TAF(II)105|TAFII-105|TATA box binding protein (TBP)-associated factor 4B|TATA box binding protein (TBP)-associated factor, RNA polymerase II, C2, 105kD|transcription initiation factor TFIID 105 kD subunit|transcription initiation factor TFIID 105 kDa subunit|transcription initiation factor TFIID subunit 4B 20121230 -9606 6876 TAGLN - SM22|SMCC|TAGLN1|WS3-10 HGNC:11553|MIM:600818|Ensembl:ENSG00000149591|HPRD:02891|Vega:OTTHUMG00000167067 11 11q23.2 transgelin protein-coding TAGLN transgelin O 22 kDa actin-binding protein|SM22-alpha|smooth muscle protein 22-alpha|transgelin variant 2 20121230 -9606 6877 TAF5 - TAF2D|TAFII100 HGNC:11539|MIM:601787|Ensembl:ENSG00000148835|HPRD:11876|Vega:OTTHUMG00000018985 10 10q24-q25.2 TAF5 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 100kDa protein-coding TAF5 TAF5 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 100kDa O TAF(II)100|TAFII-100|TATA box binding protein (TBP)-associated factor 2D|TATA box binding protein (TBP)-associated factor, RNA polymerase II, D, 100kD|transcription initiation factor TFIID 100 kD subunit|transcription initiation factor TFIID 100 kDa subunit|transcription initiation factor TFIID subunit 5 20121230 -9606 6878 TAF6 - MGC:8964|TAF(II)70|TAF(II)80|TAF2E|TAFII-70|TAFII-80|TAFII70|TAFII80|TAFII85 HGNC:11540|MIM:602955|Ensembl:ENSG00000106290|HPRD:11807|Vega:OTTHUMG00000154771 7 7q22.1 TAF6 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 80kDa protein-coding TAF6 TAF6 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 80kDa O RNA polymerase II TBP-associated factor subunit E|TATA box binding protein (TBP)-associated factor, RNA polymerase II, E, 70/85kD|transcription initiation factor TFIID 70 kDa subunit|transcription initiation factor TFIID subunit 6 20121230 -9606 6879 TAF7 - TAF2F|TAFII55 HGNC:11541|MIM:600573|Ensembl:ENSG00000178913|HPRD:07196|Vega:OTTHUMG00000129628 5 5q31 TAF7 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 55kDa protein-coding TAF7 TAF7 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 55kDa O RNA polymerase II TBP-associated factor subunit F|TAF(II)55|TAFII-55|TATA box binding protein (TBP)-associated factor, RNA polymerase II, F, 55kD|TBP-associated factor F|transcription factor IID subunit TAFII55|transcription initiation factor TFIID 55 kDa subunit|transcription initiation factor TFIID subunit 7|transcription initiation factor TFIID, 55 kDa subunit 20121230 -9606 6880 TAF9 AD-004 AK6|CGI-137|CINAP|CIP|MGC:1603|MGC:3647|MGC:5067|TAF2G|TAFII31|TAFII32|TAFIID32|hCINAP HGNC:11542|MIM:600822|Ensembl:ENSG00000085231|HPRD:15983|Vega:OTTHUMG00000099359 5 5q11.2-q13.1 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa protein-coding TAF9 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa O ATP-AMP transphosphorylase 6|RNA polymerase II TBP-associated factor subunit G|STAF31/32|TAFII-31|TAFII-32|adenylate kinase 6|adenylate kinase isoenzyme 6|adrenal gland protein AD-004|coilin interacting protein|coilin-interacting nuclear ATPase protein|transcription initiation factor TFIID 31 kD subunit|transcription initiation factor TFIID 31 kDa subunit|transcription initiation factor TFIID 32 kDa subunit|transcription initiation factor TFIID subunit 9 20121230 -9606 6881 TAF10 - TAF2A|TAF2H|TAFII30 HGNC:11543|MIM:600475|Ensembl:ENSG00000166337|HPRD:15972|Vega:OTTHUMG00000133402 11 11p15.3 TAF10 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 30kDa protein-coding TAF10 TAF10 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 30kDa O STAF28|TAF(II)30|TAFII-30|TATA box binding protein (TBP)-associated factor, RNA polymerase II, H, 30kD|transcription initiation factor TFIID 30 kD subunit|transcription initiation factor TFIID 30 kDa subunit|transcription initiation factor TFIID subunit 10 20121230 -9606 6882 TAF11 PRO2134 MGC:15243|TAF2I|TAFII28 HGNC:11544|MIM:600772|Ensembl:ENSG00000064995|HPRD:15980|Vega:OTTHUMG00000014556 6 6p21.31 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa protein-coding TAF11 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa O TAF(II)28|TAFII-28|TATA box binding protein (TBP)-associated factor, RNA polymerase II, I, 28kD|TFIID subunit p30-beta|transcription initiation factor TFIID 28 kD subunit|transcription initiation factor TFIID 28 kDa subunit|transcription initiation factor TFIID subunit 11 20121230 -9606 6883 TAF12 - TAF2J|TAFII20 HGNC:11545|MIM:600773|Ensembl:ENSG00000120656|HPRD:15981|Vega:OTTHUMG00000003655 1 1p35.3 TAF12 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 20kDa protein-coding TAF12 TAF12 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 20kDa O TAFII-20/TAFII-15|TAFII20/TAFII15|TATA box binding protein (TBP)-associated factor, RNA polymerase II, J, 20kD|transcription initiation factor TFIID 20/15 kDa subunits|transcription initiation factor TFIID subunit 12 20121230 -9606 6884 TAF13 - TAF(II)18|TAF2K|TAFII-18|TAFII18 HGNC:11546|MIM:600774|Ensembl:ENSG00000197780|Vega:OTTHUMG00000042363 1 1p13.3 TAF13 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 18kDa protein-coding TAF13 TAF13 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 18kDa O TATA box binding protein (TBP)-associated factor, RNA polymerase II, K, 18kD|transcription initiation factor TFIID 18 kD subunit|transcription initiation factor TFIID 18 kDa subunit|transcription initiation factor TFIID subunit 13 20121230 -9606 6885 MAP3K7 RP1-154G14.1 MEKK7|TAK1|TGF1a HGNC:6859|MIM:602614|Ensembl:ENSG00000135341|HPRD:04011|Vega:OTTHUMG00000015217 6 6q15 mitogen-activated protein kinase kinase kinase 7 protein-coding MAP3K7 mitogen-activated protein kinase kinase kinase 7 O TGF-beta activated kinase 1|TGF-beta-activated kinase 1|transforming growth factor-beta-activated kinase 1 20121230 -9606 6886 TAL1 - SCL|TCL5|bHLHa17|tal-1 HGNC:11556|MIM:187040|Ensembl:ENSG00000162367|HPRD:01753|Vega:OTTHUMG00000007847 1 1p32 T-cell acute lymphocytic leukemia 1 protein-coding TAL1 T-cell acute lymphocytic leukemia 1 O T-cell acute lymphocytic leukemia protein 1|T-cell leukemia/lymphoma protein 5|class A basic helix-loop-helix protein 17|stem cell protein|tal-1 product 20121230 -9606 6887 TAL2 - - HGNC:11557|MIM:186855|Ensembl:ENSG00000186051|HPRD:01735|Vega:OTTHUMG00000020424 9 9q32 T-cell acute lymphocytic leukemia 2 protein-coding TAL2 T-cell acute lymphocytic leukemia 2 O T-cell acute lymphocytic leukemia protein 2|TAL-2|class A basic helix-loop-helix protein 19 20121230 -9606 6888 TALDO1 - TAL|TAL-H|TALDOR|TALH HGNC:11559|MIM:602063|Ensembl:ENSG00000177156|HPRD:03640|Vega:OTTHUMG00000133318 11 11p15.5-p15.4 transaldolase 1 protein-coding TALDO1 transaldolase 1 O dihydroxyacetone transferase|glycerone transferase|transaldolase 20121230 -9606 6889 TALDO1P1 - TAL-H|TALDO|TALDOP1 HGNC:11560 1 1p32.3 transaldolase 1 pseudogene 1 pseudo TALDO1P1 transaldolase 1 pseudogene 1 O - 20121230 -9606 6890 TAP1 DAAP-57C1.5 ABC17|ABCB2|APT1|D6S114E|PSF-1|PSF1|RING4|TAP1*0102N|TAP1N HGNC:43|MIM:170260|Ensembl:ENSG00000168394|HPRD:01359|Vega:OTTHUMG00000031067 6 6p21.3 transporter 1, ATP-binding cassette, sub-family B (MDR/TAP) protein-coding TAP1 transporter 1, ATP-binding cassette, sub-family B (MDR/TAP) O ABC transporter, MHC 1|ATP-binding cassette sub-family B member 2|ATP-binding cassette, sub-family B (MDR/TAP), member 2|antigen peptide transporter 1|peptide supply factor 1|peptide transporter PSF1|peptide transporter TAP1|peptide transporter involved in antigen processing 1|really interesting new gene 4 protein|transporter associated with antigen processing|transporter, ATP-binding cassette, major histocompatibility complex, 1 20121230 -9606 6891 TAP2 DAAP-57C1.2 ABC18|ABCB3|APT2|D6S217E|PSF-2|PSF2|RING11 HGNC:44|MIM:170261|Ensembl:ENSG00000204267|Ensembl:ENSG00000250264|HPRD:01360|Vega:OTTHUMG00000031068|Vega:OTTHUMG00000160697 6 6p21.3 transporter 2, ATP-binding cassette, sub-family B (MDR/TAP) protein-coding TAP2 transporter 2, ATP-binding cassette, sub-family B (MDR/TAP) O ABC transporter, MHC 2|ATP-binding cassette, sub-family B (MDR/TAP), member 3|antigen peptide transporter 2|peptide supply factor 2|peptide transporter PSF2|peptide transporter involved in antigen processing 2|really interesting new gene 11 protein|transporter 2, ABC (ATP binding cassette) 20121230 -9606 6892 TAPBP DADB-159G18.7 NGS17|TAPA|TPN|TPSN HGNC:11566|MIM:601962|Ensembl:ENSG00000231925|HPRD:09061|Vega:OTTHUMG00000031090 6 6p21.3 TAP binding protein (tapasin) protein-coding TAPBP TAP binding protein (tapasin) O NGS-17|TAP-associated protein|TAP-binding protein|tapasin 20121230 -9606 6893 TAPVR1 - APVR|TAPVR HGNC:11567|MIM:106700 4 4p13-q11 total anomalous pulmonary venous return 1 unknown TAPVR1 total anomalous pulmonary venous return 1 O - 20120622 -9606 6894 TARBP1 RP5-827C21.5 TRM3|TRP-185|TRP185 HGNC:11568|MIM:605052|Ensembl:ENSG00000059588|HPRD:05445|Vega:OTTHUMG00000037947 1 1q42.3 TAR (HIV-1) RNA binding protein 1 protein-coding TARBP1 TAR (HIV-1) RNA binding protein 1 O TAR (HIV) RNA binding protein 1|TAR (HIV) RNA-binding protein 1|TAR RNA loop binding protein|TAR RNA-binding protein 1|TAR RNA-binding protein of 185 kDa|probable methyltransferase TARBP1|tRNA methyltransferase 3 homolog 20121230 -9606 6895 TARBP2 - LOQS|TRBP|TRBP1|TRBP2 HGNC:11569|MIM:605053|Ensembl:ENSG00000139546|HPRD:05446|Vega:OTTHUMG00000169855 12 12q12-q13 TAR (HIV-1) RNA binding protein 2 protein-coding TARBP2 TAR (HIV-1) RNA binding protein 2 O RISC-loading complex subunit TARBP2|TAR (HIV) RNA binding protein 2|TAR (HIV) RNA-binding protein 2|TAR (HIV) RNA-binding protein TRBP1|TAR RNA binding protein 2|TAR RNA-binding protein 2|trans-activation responsive RNA-binding protein|trans-activation-responsive RNA-binding protein 20121230 -9606 6896 TARBP2P - TRBP HGNC:11570 8 8q22.3 TAR (HIV-1) RNA binding protein 2 pseudogene pseudo TARBP2P TAR (HIV-1) RNA binding protein 2 pseudogene O - 20121230 -9606 6897 TARS - ThrRS HGNC:11572|MIM:187790|Ensembl:ENSG00000113407|HPRD:01762|Vega:OTTHUMG00000090683 5 5p13.2 threonyl-tRNA synthetase protein-coding TARS threonyl-tRNA synthetase O threonine tRNA ligase 1, cytoplasmic|threonine--tRNA ligase, cytoplasmic|threonyl-tRNA synthetase, cytoplasmic 20121230 -9606 6898 TAT - - HGNC:11573|MIM:613018|Ensembl:ENSG00000198650|HPRD:11776|Vega:OTTHUMG00000137590 16 16q22.1 tyrosine aminotransferase protein-coding TAT tyrosine aminotransferase O L-tyrosine:2-oxoglutarate aminotransferase|tyrosine aminotransferase, cytosolic 20121230 -9606 6899 TBX1 - CAFS|CTHM|DGCR|DGS|DORV|TBX1C|TGA|VCFS HGNC:11592|MIM:602054|Ensembl:ENSG00000184058|HPRD:09069|Vega:OTTHUMG00000150421 22 22q11.21 T-box 1 protein-coding TBX1 T-box 1 O T-box 1 transcription factor C|T-box transcription factor TBX1|Testis-specific T-box protein|brachyury 20121230 -9606 6900 CNTN2 - AXT|TAG-1|TAX|TAX1 HGNC:2172|MIM:190197|Ensembl:ENSG00000184144|HPRD:01826|Vega:OTTHUMG00000037105 1 1q32.1 contactin 2 (axonal) protein-coding CNTN2 contactin 2 (axonal) O TAX-1|axonal glycoprotein TAG-1|axonin-1 cell adhesion molecule|contactin 2 (transiently expressed)|contactin-2|transient axonal glycoprotein 1|transiently-expressed axonal glycoprotein 20121230 -9606 6901 TAZ XX-FW83563B9.3 BTHS|CMD3A|EFE|EFE2|G4.5|LVNCX|Taz1 HGNC:11577|MIM:300394|Ensembl:ENSG00000102125|HPRD:02316|Vega:OTTHUMG00000033190 X Xq28 tafazzin protein-coding TAZ tafazzin O protein G4.5 20121230 -9606 6902 TBCA - - HGNC:11579|MIM:610058|Ensembl:ENSG00000171530|HPRD:18166|Vega:OTTHUMG00000102173 5 5q14.1 tubulin folding cofactor A protein-coding TBCA tubulin folding cofactor A O CFA|TCP1-chaperonin cofactor A|chaperonin cofactor A|tubulin-folding cofactor A|tubulin-specific chaperone A 20121230 -9606 6903 TBCC - CFC HGNC:11580|MIM:602971|Ensembl:ENSG00000124659|HPRD:04276|Vega:OTTHUMG00000014704 6 6p21.1 tubulin folding cofactor C protein-coding TBCC tubulin folding cofactor C O tubulin-folding cofactor C|tubulin-specific chaperone C 20121230 -9606 6904 TBCD PP1096 SSD-1|tfcD HGNC:11581|MIM:604649|Ensembl:ENSG00000141556|HPRD:05227|Vega:OTTHUMG00000177878 17 17q25.3 tubulin folding cofactor D protein-coding TBCD tubulin folding cofactor D O beta-tubulin cofactor D|tubulin-folding cofactor D|tubulin-specific chaperone D 20121230 -9606 6905 TBCE - HRD|KCS|KCS1|pac2 HGNC:11582|MIM:604934|Ensembl:ENSG00000116957|HPRD:05381|Vega:OTTHUMG00000039987 1 1q42.3 tubulin folding cofactor E protein-coding TBCE tubulin folding cofactor E O Kenny-Caffey syndrome|tubulin-folding cofactor E|tubulin-specific chaperone E 20121230 -9606 6906 SERPINA7 RP1-82J11.2 TBG HGNC:11583|MIM:314200|Ensembl:ENSG00000123561|HPRD:02438|Vega:OTTHUMG00000022144 X Xq22.2 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 7 protein-coding SERPINA7 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 7 O T4-binding globulin|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 7|serpin A7|thyroxin-binding globulin|thyroxine-binding globulin 20121230 -9606 6907 TBL1X - EBI|SMAP55|TBL1 HGNC:11585|MIM:300196|Ensembl:ENSG00000101849|HPRD:02183|Vega:OTTHUMG00000021117 X Xp22.3 transducin (beta)-like 1X-linked protein-coding TBL1X transducin (beta)-like 1X-linked O F-box-like/WD repeat-containing protein TBL1X|transducin beta-like protein 1X|transducin-beta-like protein 1, X-linked 20121230 -9606 6908 TBP RP1-191N21.3 GTF2D|GTF2D1|HDL4|SCA17|TFIID HGNC:11588|MIM:600075|Ensembl:ENSG00000112592|HPRD:02511|Vega:OTTHUMG00000016084 6 6q27 TATA box binding protein protein-coding TBP TATA box binding protein O TATA sequence-binding protein|TATA-box binding protein N-terminal domain|TATA-box factor|TATA-box-binding protein|transcription initiation factor TFIID TBP subunit 20121230 -9606 6909 TBX2 - - HGNC:11597|MIM:600747|Ensembl:ENSG00000121068|HPRD:02850|Vega:OTTHUMG00000156986 17 17q23.2 T-box 2 protein-coding TBX2 T-box 2 O T-box protein 2|T-box transcription factor TBX2 20121230 -9606 6910 TBX5 - HOS HGNC:11604|MIM:601620|Ensembl:ENSG00000089225|HPRD:03372|Vega:OTTHUMG00000166191 12 12q24.1 T-box 5 protein-coding TBX5 T-box 5 O T-box protein 5|T-box transcription factor TBX5 20121230 -9606 6911 TBX6 - - HGNC:11605|MIM:602427|Ensembl:ENSG00000149922|HPRD:03888|Vega:OTTHUMG00000132115 16 16p11.2 T-box 6 protein-coding TBX6 T-box 6 O T-box protein 6|T-box transcription factor TBX6 20121230 -9606 6913 TBX15 RP4-794L19.1 TBX14 HGNC:11594|MIM:604127|Ensembl:ENSG00000092607|HPRD:16035|Vega:OTTHUMG00000012263 1 1p11.1 T-box 15 protein-coding TBX15 T-box 15 O T-box 14|T-box protein 14|T-box protein 15|T-box transcription factor TBX14|T-box transcription factor TBX15 20121230 -9606 6914 TBXA1R - - HGNC:11607 - - thromboxane A1 receptor protein-coding TBXA1R thromboxane A1 receptor O - 20080828 -9606 6915 TBXA2R - BDPLT13|TXA2-R HGNC:11608|MIM:188070|Ensembl:ENSG00000006638|HPRD:01768|Vega:OTTHUMG00000180806 19 19p13.3 thromboxane A2 receptor protein-coding TBXA2R thromboxane A2 receptor O prostanoid TP receptor 20121230 -9606 6916 TBXAS1 - BDPLT14|CYP5|CYP5A1|GHOSAL|THAS|TS|TXAS|TXS HGNC:11609|MIM:274180|Ensembl:ENSG00000059377|HPRD:02035|Vega:OTTHUMG00000157302 7 7q34-q35 thromboxane A synthase 1 (platelet) protein-coding TBXAS1 thromboxane A synthase 1 (platelet) O TXA synthase|cytochrome P450 5A1|cytochrome P450, family 5, subfamily A, polypeptide 1|platelet, cytochrome P450, subfamily V|thromboxane A synthase 1 (platelet, cytochrome P450, family 5, subfamily A)|thromboxane-A synthase 20121230 -9606 6917 TCEA1 - GTF2S|SII|TCEA|TF2S|TFIIS HGNC:11612|MIM:601425|Ensembl:ENSG00000187735|HPRD:03252|Vega:OTTHUMG00000164262 8 8q11.2 transcription elongation factor A (SII), 1 protein-coding TCEA1 transcription elongation factor A (SII), 1 O transcription elongation factor A protein 1|transcription elongation factor S-II protein 1|transcription elongation factor TFIIS.o 20121230 -9606 6918 TCEA1P1 - GTF2SP|TCEA1P HGNC:11613 9 9q22.33 transcription elongation factor A (SII), 1 pseudogene 1 pseudo TCEA1P1 transcription elongation factor A (SII), 1 pseudogene 1 O - 20121230 -9606 6919 TCEA2 RP11-299N6.2 TFIIS HGNC:11614|MIM:604784|Ensembl:ENSG00000171703|HPRD:16069|Vega:OTTHUMG00000033026 20 20q13.33 transcription elongation factor A (SII), 2 protein-coding TCEA2 transcription elongation factor A (SII), 2 O testis-specific S-II|transcription elongation factor A protein 2|transcription elongation factor S-II protein 2|transcription elongation factor TFIIS.1|transcription elongation factor TFIIS.l 20121230 -9606 6920 TCEA3 - TFIIS|TFIIS.H HGNC:11615|MIM:604128|Ensembl:ENSG00000204219|HPRD:16036|Vega:OTTHUMG00000003233 1 1p36.12 transcription elongation factor A (SII), 3 protein-coding TCEA3 transcription elongation factor A (SII), 3 O rhabdomyosarcoma antigen MU-RMS-40.22|transcription elongation factor A protein 3|transcription elongation factor S-II protein 3|transcription elongation factor TFIIS.h 20121230 -9606 6921 TCEB1 - SIII|eloC HGNC:11617|MIM:600788|Ensembl:ENSG00000154582|HPRD:02875|Vega:OTTHUMG00000164501 8 8q21.11 transcription elongation factor B (SIII), polypeptide 1 (15kDa, elongin C) protein-coding TCEB1 transcription elongation factor B (SIII), polypeptide 1 (15kDa, elongin C) O RNA polymerase II transcription factor SIII subunit C|SIII p15|elongin 15 kDa subunit|elongin-C|transcription elongation factor B polypeptide 1|transcription elongation factor B, polypeptide 1 20121230 -9606 6922 SKP1P1 - EMC19|OCP2|TCEB1L|TCEB1P|TCEB1P1 HGNC:33696 7 7q11.21 S-phase kinase-associated protein 1 pseudogene 1 pseudo SKP1P1 S-phase kinase-associated protein 1 pseudogene 1 O - 20121230 -9606 6923 TCEB2 - ELOB|SIII HGNC:11619|MIM:600787|Ensembl:ENSG00000103363|HPRD:02874|Vega:OTTHUMG00000154125 16 16p12.3 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) protein-coding TCEB2 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) O RNA polymerase II transcription factor SIII p18 subunit|RNA polymerase II transcription factor SIII subunit B|SIII p18|elongin 18 kDa subunit|elongin, 18-kD subunit|elongin-B|transcription elongation factor B polypeptide 2 20121230 -9606 6924 TCEB3 MSTP059 EloA|SIII|SIII p110|TCEB3A HGNC:11620|MIM:600786|Ensembl:ENSG00000011007|HPRD:02873|Vega:OTTHUMG00000002957 1 1p36.1 transcription elongation factor B (SIII), polypeptide 3 (110kDa, elongin A) protein-coding TCEB3 transcription elongation factor B (SIII), polypeptide 3 (110kDa, elongin A) O RNA polymerase II transcription factor SIII subunit A1|elongin 110 kDa subunit|elongin-A|transcription elongation factor B alpha subunit|transcription elongation factor B polypeptide 3 20121230 -9606 6925 TCF4 - E2-2|ITF-2|ITF2|PTHS|SEF-2|SEF2|SEF2-1|SEF2-1A|SEF2-1B|TCF-4|bHLHb19 HGNC:11634|MIM:602272|Ensembl:ENSG00000196628|HPRD:03780|Vega:OTTHUMG00000132713 18 18q21.1 transcription factor 4 protein-coding TCF4 transcription factor 4 O SL3-3 enhancer factor 2|class B basic helix-loop-helix protein 19|immunoglobulin transcription factor 2 20121230 -9606 6926 TBX3 - TBX3-ISO|UMS|XHL HGNC:11602|MIM:601621|Ensembl:ENSG00000135111|HPRD:03373|Vega:OTTHUMG00000169586 12 12q24.1 T-box 3 protein-coding TBX3 T-box 3 O T-box protein 3|T-box transcription factor TBX3|bladder cancer related protein XHL 20121230 -9606 6927 HNF1A - HNF-1A|HNF1|IDDM20|LFB1|MODY3|TCF-1|TCF1 HGNC:11621|MIM:142410|Ensembl:ENSG00000135100|HPRD:00800|Vega:OTTHUMG00000151015 12 12q24.2 HNF1 homeobox A protein-coding HNF1A HNF1 homeobox A O HNF-1-alpha|albumin proximal factor|hepatic nuclear factor 1|hepatocyte nuclear factor 1-alpha|interferon production regulator factor|liver-specific transcription factor LF-B1|transcription factor 1, hepatic 20121230 -9606 6928 HNF1B - FJHN|HNF-1B|HNF1beta|HNF2|HPC11|LF-B3|LFB3|MODY5|TCF-2|TCF2|VHNF1 HGNC:11630|MIM:189907|Ensembl:ENSG00000108753|HPRD:08926|Vega:OTTHUMG00000133123 17 17q12 HNF1 homeobox B protein-coding HNF1B HNF1 homeobox B O HNF-1-beta|HNF1 beta A|hepatocyte nuclear factor 1-beta|homeoprotein LFB3|transcription factor 2, hepatic 20121230 -9606 6929 TCF3 - E2A|E47|ITF1|TCF-3|VDIR|bHLHb21 HGNC:11633|MIM:147141|Ensembl:ENSG00000071564|HPRD:00918|Vega:OTTHUMG00000180031 19 19p13.3 transcription factor 3 (E2A immunoglobulin enhancer binding factors E12/E47) protein-coding TCF3 transcription factor 3 (E2A immunoglobulin enhancer binding factors E12/E47) O VDR interacting repressor|class B basic helix-loop-helix protein 21|helix-loop-helix protein HE47|immunoglobulin transcription factor 1|kappa-E2-binding factor|negative vitamin D response element-binding protein|transcription factor E2-alpha|transcription factor ITF-1|vitamin D receptor-interacting repressor 20121230 -9606 6932 TCF7 - TCF-1 HGNC:11639|MIM:189908|Ensembl:ENSG00000081059|HPRD:01797|Vega:OTTHUMG00000129124 5 5q31.1 transcription factor 7 (T-cell specific, HMG-box) protein-coding TCF7 transcription factor 7 (T-cell specific, HMG-box) O T-cell-specific transcription factor 1|transcription factor 7 20121230 -9606 6934 TCF7L2 RP11-357H24.1 TCF-4|TCF4 HGNC:11641|MIM:602228|Ensembl:ENSG00000148737|HPRD:03751|Vega:OTTHUMG00000019070 10 10q25.3 transcription factor 7-like 2 (T-cell specific, HMG-box) protein-coding TCF7L2 transcription factor 7-like 2 (T-cell specific, HMG-box) O HMG box transcription factor 4|T-cell factor 4|T-cell factor-4 variant A|T-cell factor-4 variant B|T-cell factor-4 variant C|T-cell factor-4 variant D|T-cell factor-4 variant E|T-cell factor-4 variant F|T-cell factor-4 variant G|T-cell factor-4 variant H|T-cell factor-4 variant I|T-cell factor-4 variant J|T-cell factor-4 variant K|T-cell factor-4 variant L|T-cell factor-4 variant M|T-cell factor-4 variant X2|T-cell-specific transcription factor 4|hTCF-4|transcription factor 7-like 2 20121230 -9606 6935 ZEB1 RP11-472N13.4 AREB6|BZP|DELTAEF1|FECD6|NIL2A|PPCD3|TCF8|ZFHEP|ZFHX1A HGNC:11642|MIM:189909|Ensembl:ENSG00000148516|HPRD:01798|Vega:OTTHUMG00000017907 10 10p11.2 zinc finger E-box binding homeobox 1 protein-coding ZEB1 zinc finger E-box binding homeobox 1 O delta-crystallin enhancer binding factor 1|negative regulator of IL2|posterior polymorphous corneal dystrophy 3|transcription factor 8 (represses interleukin 2 expression)|zinc finger E-box-binding homeobox 1|zinc finger homeodomain enhancer-binding protein 20121230 -9606 6936 GCFC2 - C2orf3|DNABF|GCF|TCF9 HGNC:1317|MIM:189901|Ensembl:ENSG00000005436|HPRD:01791|Vega:OTTHUMG00000129989 2 2p12 GC-rich sequence DNA-binding factor 2 protein-coding GCFC2 GC-rich sequence DNA-binding factor 2 O GC binding factor|GC bindng factor|TCF-9|transcription factor 9 (binds GC-rich sequences) 20121230 -9606 6938 TCF12 - HEB|HTF4|HsT17266|bHLHb20 HGNC:11623|MIM:600480|Ensembl:ENSG00000140262|HPRD:02725|Vega:OTTHUMG00000132047 15 15q21 transcription factor 12 protein-coding TCF12 transcription factor 12 O DNA-binding protein HTF4|E-box-binding protein|TCF-12|class B basic helix-loop-helix protein 20|helix-loop-helix transcription factor 4|transcription factor HTF-4 20121230 -9606 6939 TCF15 - EC2|PARAXIS|bHLHa40 HGNC:11627|MIM:601010|Ensembl:ENSG00000125878|HPRD:03003|Vega:OTTHUMG00000031640 20 20p13 transcription factor 15 (basic helix-loop-helix) protein-coding TCF15 transcription factor 15 (basic helix-loop-helix) O TCF-15|basic helix-loop-helix transcription factor 15|class A basic helix-loop-helix protein 40|protein bHLH-EC2|transcription factor 15 20121230 -9606 6940 ZNF354A - EZNF|HKL1|KID-1|KID1|TCF17 HGNC:11628|MIM:602444|Ensembl:ENSG00000169131|HPRD:03900|Vega:OTTHUMG00000130895 5 5q35.3 zinc finger protein 354A protein-coding ZNF354A zinc finger protein 354A O TCF-17|transcription factor 17|zinc finger protein eZNF 20121230 -9606 6941 TCF19 DAMA-213L4.5 SC1|SC1-1 HGNC:11629|MIM:600912|Ensembl:ENSG00000137310|HPRD:15986|Vega:OTTHUMG00000031274 6 6p21.3 transcription factor 19 protein-coding TCF19 transcription factor 19 O SC1(TCF19)-6|SC1(TCF19)-7|SCI(TCF19)-4|TCF-19|transcription factor SC1 20121230 -9606 6942 TCF20 RP4-669P10.13-001 AR1|SPBP HGNC:11631|MIM:603107|Ensembl:ENSG00000100207|HPRD:04378|Vega:OTTHUMG00000150920 22 22q13.3|22q13.3 transcription factor 20 (AR1) protein-coding TCF20 transcription factor 20 (AR1) O SPRE-binding protein|TCF-20|nuclear factor SPBP|stromelysin-1 PDGF-responsive element-binding protein|stromelysin-1 platelet-derived growth factor-responsive element binding protein|transcription factor 20 20121230 -9606 6943 TCF21 - POD1|bHLHa23 HGNC:11632|MIM:603306|Ensembl:ENSG00000118526|HPRD:04493|Vega:OTTHUMG00000015608 6 6q23-q24 transcription factor 21 protein-coding TCF21 transcription factor 21 O capsulin|class A basic helix-loop-helix protein 23|epicardin|pod-1|podocyte-expressed 1 20121230 -9606 6944 VPS72 RP11-68I18.8 CFL1|Swc2|TCFL1|YL-1|YL1 HGNC:11644|MIM:600607|Ensembl:ENSG00000163159|HPRD:02791|Vega:OTTHUMG00000012345 1 1q21 vacuolar protein sorting 72 homolog (S. cerevisiae) protein-coding VPS72 vacuolar protein sorting 72 homolog (S. cerevisiae) O transcription factor-like 1|transformation suppressor gene YL-1|vacuolar protein sorting-associated protein 72 homolog 20121230 -9606 6945 MLX - MAD7|MXD7|TCFL4|bHLHd13 HGNC:11645|MIM:602976|Ensembl:ENSG00000108788|HPRD:04278|Vega:OTTHUMG00000180246 17 17q21.1 MLX, MAX dimerization protein protein-coding MLX MLX, MAX dimerization protein O BigMax protein|MAX-like bHLHZIP protein|class D basic helix-loop-helix protein 13|max-like protein X|transcription factor-like protein 4 20121230 -9606 6946 TCL4 - - HGNC:11650|MIM:186860 2 2q34 T-cell leukemia/lymphoma 4 unknown TCL4 T-cell leukemia/lymphoma 4 O - 20120622 -9606 6947 TCN1 - TC-1|TC1|TCI HGNC:11652|MIM:189905|Ensembl:ENSG00000134827|HPRD:01795|Vega:OTTHUMG00000167400 11 11q11-q12 transcobalamin I (vitamin B12 binding protein, R binder family) protein-coding TCN1 transcobalamin I (vitamin B12 binding protein, R binder family) O haptocorin|haptocorrin|transcobalamin-1 20121230 -9606 6948 TCN2 - D22S676|D22S750|II|TC|TC II|TC-2|TC2|TCII HGNC:11653|MIM:613441|Ensembl:ENSG00000185339|HPRD:02037|Vega:OTTHUMG00000151095 22 22q12.2 transcobalamin II protein-coding TCN2 transcobalamin II O macrocytic anemia|transcobalamin II; macrocytic anemia|transcobalamin-2|vitamin B12-binding protein 2 20121230 -9606 6949 TCOF1 - MFD1|TCS1|treacle HGNC:11654|MIM:606847|Ensembl:ENSG00000070814|HPRD:06026|Vega:OTTHUMG00000130081 5 5q32 Treacher Collins-Franceschetti syndrome 1 protein-coding TCOF1 Treacher Collins-Franceschetti syndrome 1 O Treacher Collins syndrome protein|nucleolar trafficking phosphoprotein|treacle protein 20121230 -9606 6950 TCP1 - CCT-alpha|CCT1|CCTa|D6S230E|TCP-1-alpha HGNC:11655|MIM:186980|Ensembl:ENSG00000120438|HPRD:01748|Vega:OTTHUMG00000015937 6 6q25.3-q26 t-complex 1 protein-coding TCP1 t-complex 1 O T-complex protein 1 subunit alpha|T-complex protein 1, alpha subunit|tailless complex polypeptide 1 20121230 -9606 6952 TCP1P2 - CCT1-2P|TCP1L2 HGNC:11660 5 5p13.1 t-complex 1 pseudogene 2 pseudo TCP1P2 t-complex 1 pseudogene 2 O - 20121230 -9606 6953 TCP10 RP3-366N23.2 TCP10A HGNC:11656|MIM:187020|Ensembl:ENSG00000203690|HPRD:01752|Vega:OTTHUMG00000016026 6 6q27 t-complex 10 protein-coding TCP10 t-complex 10 O T-complex protein 10A homolog|t-complex 10 (a murine tcp homolog)|t-complex 10 homolog 20121230 -9606 6954 TCP11 RP11-174N3.3 D6S230E|FPPR HGNC:11658|MIM:186982|Ensembl:ENSG00000124678|HPRD:01749|Vega:OTTHUMG00000014560 6 6p21.31 t-complex 11, testis-specific protein-coding TCP11 t-complex 11, testis-specific O T-complex protein 11 homolog|fertilization-promoting peptide receptor|t-complex 11 (a murine tcp homolog)|t-complex 11 homolog 20121230 -9606 6955 TRA@ - TCRA|TCRD|TRA HGNC:12027|MIM:186880 14 14q11.2 T cell receptor alpha locus protein-coding TRA@ T cell receptor alpha locus O T-cell antigen receptor, alpha polypeptide|T-cell receptor, alpha (V,D,J,C) 20121230 -9606 6956 TRAV6 - TCRAV5S1|TCRAV6S1 HGNC:12144|IMGT/GENE-DB:TRAV6 14 14q11 T cell receptor alpha variable 6 other TRAV6 T cell receptor alpha variable 6 O - 20121230 -9606 6957 TRB@ - TCRB|TRB HGNC:12155|MIM:186930 7 7q34 T cell receptor beta locus protein-coding TRB@ T cell receptor beta locus O T-cell antigen receptor, beta polypeptide, T-cell receptor, beta cluster|T-cell receptor, beta cluster 20121230 -9606 6958 TRBV29OR9-2 - TCRBV29S2|TCRBV4O|TCRBV4S2O|TRBV29/OR9-2 HGNC:12211|IMGT/GENE-DB:TRBV29/OR9-2 9 9p21 T cell receptor beta variable 29/OR9-2 (non-functional) pseudo TRBV29OR9-2 T cell receptor beta variable 29/OR9-2 (non-functional) O - 20121230 -9606 6959 TRBV21OR9-2 RP11-255A11.16-001 TCRBV10O|TCRBV10S2O|TCRBV21S2 HGNC:12199|IMGT/GENE-DB:TRBV21/OR9-2 9 9p21 T cell receptor beta variable 21/OR9-2 (pseudogene) pseudo TRBV21OR9-2 T cell receptor beta variable 21/OR9-2 (pseudogene) O - 20121230 -9606 6960 TRBV25OR9-2 - TCRBV11O|TCRBV11S2O|TCRBV25S2 HGNC:12206|IMGT/GENE-DB:TRBV25/OR9-2 9 9p21 T cell receptor beta variable 25/OR9-2 (pseudogene) pseudo TRBV25OR9-2 T cell receptor beta variable 25/OR9-2 (pseudogene) O - 20121230 -9606 6961 TRBV24OR9-2 - TCRBV15O|TCRBV15S2O|TCRBV24S2 HGNC:12204|IMGT/GENE-DB:TRBV24/OR9-2 9 9p21 T cell receptor beta variable 24/OR9-2 (pseudogene) pseudo TRBV24OR9-2 T cell receptor beta variable 24/OR9-2 (pseudogene) O - 20121230 -9606 6962 TRBV20OR9-2 - TCRBV20S2|TCRBV2O|TCRBV2S2O HGNC:12197|IMGT/GENE-DB:TRBV20/OR9-2 9 9p21 T cell receptor beta variable 20/OR9-2 (non-functional) pseudo TRBV20OR9-2 T cell receptor beta variable 20/OR9-2 (non-functional) O - 20121230 -9606 6964 TRD@ - TCRD|TCRDV1|TRD HGNC:12252|MIM:186810 14 14q11.2 T cell receptor delta locus protein-coding TRD@ T cell receptor delta locus O T-cell antigen receptor, delta polypeptide|T-cell receptor, delta (V,D,J,C) 20121230 -9606 6965 TRG@ - TCRG|TRG HGNC:12271|MIM:186970 7 7p14 T cell receptor gamma locus protein-coding TRG@ T cell receptor gamma locus O T-cell antigen receptor, gamma polypeptide|T-cell rearranging gene, gamma|T-cell receptor, gamma cluster 20121230 -9606 6966 TRGC1 - C1|TCRGC1 HGNC:12275|IMGT/GENE-DB:TRGC1 7 7p14 T cell receptor gamma constant 1 other TRGC1 T cell receptor gamma constant 1 O - 20121230 -9606 6967 TRGC2 - TCRGC2|TRGC2(2X)|TRGC2(3X) HGNC:12276|IMGT/GENE-DB:TRGC2 7 7p14 T cell receptor gamma constant 2 other TRGC2 T cell receptor gamma constant 2 O - 20121230 -9606 6968 TRGJ1 - J1|TCRGJ1 HGNC:12277|IMGT/GENE-DB:TRGJ1 7 7p14 T cell receptor gamma joining 1 other TRGJ1 T cell receptor gamma joining 1 O - 20121230 -9606 6969 TRGJ2 - J2|TCRGJ2 HGNC:12278|IMGT/GENE-DB:TRGJ2 7 7p14 T cell receptor gamma joining 2 other TRGJ2 T cell receptor gamma joining 2 O - 20121230 -9606 6970 TRGJP - JP|TCRGJP HGNC:12279|IMGT/GENE-DB:TRGJP 7 7p14 T cell receptor gamma joining P other TRGJP T cell receptor gamma joining P O - 20121230 -9606 6971 TRGJP1 - JP1|TCRGJP1 HGNC:12280|IMGT/GENE-DB:TRGJP1 7 7p14 T cell receptor gamma joining P1 other TRGJP1 T cell receptor gamma joining P1 O - 20121230 -9606 6972 TRGJP2 - JP2|TCRGJP2 HGNC:12281|IMGT/GENE-DB:TRGJP2 7 7p14 T cell receptor gamma joining P2 other TRGJP2 T cell receptor gamma joining P2 O - 20121230 -9606 6973 TRGV1 - TCRGV1|V1S1P HGNC:12284|IMGT/GENE-DB:TRGV1 7 7p14 T cell receptor gamma variable 1 (non-functional) pseudo TRGV1 T cell receptor gamma variable 1 (non-functional) O - 20121230 -9606 6974 TRGV2 - TCRGV2|VIS2 HGNC:12287|IMGT/GENE-DB:TRGV2 7 7p14 T cell receptor gamma variable 2 other TRGV2 T cell receptor gamma variable 2 O - 20121230 -9606 6975 TECTB - - HGNC:11721|MIM:602653|Ensembl:ENSG00000119913|HPRD:16005|Vega:OTTHUMG00000019056 10 10q25-q26 tectorin beta protein-coding TECTB tectorin beta O beta-tectorin 20121230 -9606 6976 TRGV3 - TCRGV3|V1S3 HGNC:12288|IMGT/GENE-DB:TRGV3 7 7p14 T cell receptor gamma variable 3 other TRGV3 T cell receptor gamma variable 3 O - 20121230 -9606 6977 TRGV4 - TCRGV4|V1S4 HGNC:12289|IMGT/GENE-DB:TRGV4 7 7p14 T cell receptor gamma variable 4 other TRGV4 T cell receptor gamma variable 4 O - 20121230 -9606 6978 TRGV5 - TCRGV5|V1S5 HGNC:12290|IMGT/GENE-DB:TRGV5 7 7p14 T cell receptor gamma variable 5 other TRGV5 T cell receptor gamma variable 5 O - 20121230 -9606 6979 TRGV5P - TCRGV5P|V1S5P HGNC:12291|IMGT/GENE-DB:TRGV5P 7 7p14 T cell receptor gamma variable 5P (pseudogene) pseudo TRGV5P T cell receptor gamma variable 5P (pseudogene) O - 20121230 -9606 6980 TRGV6 - TCRGV5P|TCRGV6|V1S5P|V1S6P HGNC:12292|IMGT/GENE-DB:TRGV6 7 7p14 T cell receptor gamma variable 6 (pseudogene) pseudo TRGV6 T cell receptor gamma variable 6 (pseudogene) O - 20121230 -9606 6981 TRGV7 - TCRGV7|V1S7P HGNC:12293|IMGT/GENE-DB:TRGV7 7 7p14 T cell receptor gamma variable 7 (pseudogene) pseudo TRGV7 T cell receptor gamma variable 7 (pseudogene) O - 20121230 -9606 6982 TRGV8 - TCRGV8|V1S8 HGNC:12294|IMGT/GENE-DB:TRGV8 7 7p14 T cell receptor gamma variable 8 other TRGV8 T cell receptor gamma variable 8 O - 20121230 -9606 6983 TRGV9 tcag7.888 TCRGV9|TRGC1|V2 HGNC:12295|IMGT/GENE-DB:TRGV9 7 7p14 T cell receptor gamma variable 9 other TRGV9 T cell receptor gamma variable 9 O - 20121230 -9606 6984 TRGV10 - TCRGV10|V3P HGNC:12285|IMGT/GENE-DB:TRGV10 7 7p14 T cell receptor gamma variable 10 (non-functional) pseudo TRGV10 T cell receptor gamma variable 10 (non-functional) O - 20121230 -9606 6985 TRGV11 - TCRGV11|V4P HGNC:12286|IMGT/GENE-DB:TRGV11 7 7p14 T cell receptor gamma variable 11 (non-functional) pseudo TRGV11 T cell receptor gamma variable 11 (non-functional) O - 20121230 -9606 6986 TRGVA - TCRGVA|V5P HGNC:12296|IMGT/GENE-DB:TRGVA 7 7p14 T cell receptor gamma variable A (pseudogene) pseudo TRGVA T cell receptor gamma variable A (pseudogene) O - 20121230 -9606 6987 TRGVB - TCRGVB|V6P HGNC:12297|IMGT/GENE-DB:TRGVB 7 7p14 T cell receptor gamma variable B (pseudogene) pseudo TRGVB T cell receptor gamma variable B (pseudogene) O - 20121230 -9606 6988 TCTA - - HGNC:11692|MIM:600690|Ensembl:ENSG00000145022|HPRD:15977|Vega:OTTHUMG00000156846 3 3p21 T-cell leukemia translocation altered protein-coding TCTA T-cell leukemia translocation altered O T-cell leukemia translocation-altered gene protein|T-cell leukemia translocation-associated gene protein 20121230 -9606 6990 DYNLT3 - RP3|TCTE1L|TCTEX1L HGNC:11694|MIM:300302|Ensembl:ENSG00000165169|HPRD:02249|Vega:OTTHUMG00000033172 X Xp21 dynein, light chain, Tctex-type 3 protein-coding DYNLT3 dynein, light chain, Tctex-type 3 O dynein light chain Tctex-type 3|protein 91/23 20121230 -9606 6991 TCTE3 - TCTEX1D3 HGNC:11695|MIM:186977|Ensembl:ENSG00000184786|HPRD:01747|Vega:OTTHUMG00000016068 6 6q27 t-complex-associated-testis-expressed 3 protein-coding TCTE3 t-complex-associated-testis-expressed 3 O T-complex testis-specific protein 3|T-complex-associated testis-expressed protein 3|Tctex1 domain containing 3|tcte-3|tctex1 domain-containing protein 3 20121230 -9606 6992 PPP1R11 DAAP-65D20.5 HCG-V|HCGV|IPP3|TCTE5|TCTEX5 HGNC:9285|MIM:606670|Ensembl:ENSG00000204619|HPRD:09449|Vega:OTTHUMG00000031260 6 6p21.3 protein phosphatase 1, regulatory (inhibitor) subunit 11 protein-coding PPP1R11 protein phosphatase 1, regulatory (inhibitor) subunit 11 O HCG V|hemochromatosis candidate gene V protein|inhibitor-3|protein phosphatase 1 regulatory subunit 11|protein phosphatase inhibitor 3|t-complex-associated-testis-expressed 5 20121230 -9606 6993 DYNLT1 RP11-114M11.1 CW-1|TCTEL1|tctex-1 HGNC:11697|MIM:601554|Ensembl:ENSG00000146425|HPRD:15987|Vega:OTTHUMG00000015918 6 6q25.2-q25.3 dynein, light chain, Tctex-type 1 protein-coding DYNLT1 dynein, light chain, Tctex-type 1 O T-complex testis-specific protein 1 homolog|dynein light chain Tctex-type 1|t-complex-associated-testis-expressed 1-like 1 20121230 -9606 6994 TDD - - HGNC:11698|MIM:309150 X - testicular 17,20-desmolase deficiency unknown TDD testicular 17,20-desmolase deficiency O - 20110215 -9606 6996 TDG - - HGNC:11700|MIM:601423|Ensembl:ENSG00000139372|HPRD:03251|Vega:OTTHUMG00000168418 12 12q24.1 thymine-DNA glycosylase protein-coding TDG thymine-DNA glycosylase O G/T mismatch-specific thymine DNA glycosylase 20121230 -9606 6997 TDGF1 - CR|CRGF|CRIPTO HGNC:11701|MIM:187395|Ensembl:ENSG00000241186|HPRD:01757|Vega:OTTHUMG00000133482 3 3p21.31 teratocarcinoma-derived growth factor 1 protein-coding TDGF1 teratocarcinoma-derived growth factor 1 O cripto-1 growth factor|epidermal growth factor-like cripto protein CR1 20121230 -9606 6998 TDGF1P3 - CR-3|CRIPTO|CRIPTO-3|CRIPTO3|TDGF1|TDGF2|TDGF3 HGNC:11703 X Xq22.3 teratocarcinoma-derived growth factor 1 pseudogene 3 pseudo TDGF1P3 teratocarcinoma-derived growth factor 1 pseudogene 3 O - 20121230 -9606 6999 TDO2 - TDO|TO|TPH2|TRPO HGNC:11708|MIM:191070|Ensembl:ENSG00000151790|HPRD:01847|Vega:OTTHUMG00000161838 4 4q31-q32 tryptophan 2,3-dioxygenase protein-coding TDO2 tryptophan 2,3-dioxygenase O tryptamin 2,3-dioxygenase|tryptophan oxygenase|tryptophan pyrrolase|tryptophanase 20121230 -9606 7001 PRDX2 - NKEFB|PRP|PRX2|PRXII|PTX1|TDPX1|TPX1|TSA HGNC:9353|MIM:600538|Ensembl:ENSG00000167815|HPRD:02763|Vega:OTTHUMG00000134285 19 19p13.2 peroxiredoxin 2 protein-coding PRDX2 peroxiredoxin 2 O NKEF-B|natural killer cell-enhancing factor B|peroxiredoxin-2|thiol-specific antioxidant 1|thiol-specific antioxidant protein|thioredoxin peroxidase 1|thioredoxin-dependent peroxide reductase 1|torin 20121230 -9606 7002 TDPX2 - PAGB HGNC:11711 9 9p22 thioredoxin-dependent peroxide reductase 2 pseudo TDPX2 thioredoxin-dependent peroxide reductase 2 O - 20121230 -9606 7003 TEAD1 - AA|NTEF-1|REF1|TCF-13|TCF13|TEAD-1|TEF-1 HGNC:11714|MIM:189967|Ensembl:ENSG00000187079|HPRD:01802|Vega:OTTHUMG00000165878 11 11p15.2 TEA domain family member 1 (SV40 transcriptional enhancer factor) protein-coding TEAD1 TEA domain family member 1 (SV40 transcriptional enhancer factor) O protein GT-IIC|transcription factor 13|transcriptional enhancer factor 1|transcriptional enhancer factor TEF-1 20121230 -9606 7004 TEAD4 - EFTR-2|RTEF1|TCF13L1|TEF-3|TEF3|TEFR-1|hRTEF-1B HGNC:11717|MIM:601714|Ensembl:ENSG00000197905|HPRD:03421|Vega:OTTHUMG00000168153 12 12p13.3-p13.2 TEA domain family member 4 protein-coding TEAD4 TEA domain family member 4 O related transcription enhancer factor 1B|transcription factor 13-like 1|transcription factor RTEF-1|transcriptional enhancer factor 1-related|transcriptional enhancer factor 3|transcriptional enhancer factor TEF-3 20121230 -9606 7005 TEAD3 RP1-109F14.4 DTEF-1|ETFR-1|TEAD-3|TEAD5|TEF-5|TEF5 HGNC:11716|MIM:603170|Ensembl:ENSG00000007866|HPRD:04411|Vega:OTTHUMG00000014571 6 6p21.2 TEA domain family member 3 protein-coding TEAD3 TEA domain family member 3 O TEA domain family member 5|transcriptional enhancer factor 5|transcriptional enhancer factor TEF-5|transcriptional enhancer factor TEF-5 (DTEF-1) 20121230 -9606 7006 TEC - PSCTK4 HGNC:11719|MIM:600583|Ensembl:ENSG00000135605|HPRD:02786|Vega:OTTHUMG00000128623 4 4p12 tec protein tyrosine kinase protein-coding TEC tec protein tyrosine kinase O tyrosine-protein kinase Tec 20121230 -9606 7007 TECTA - DFNA12|DFNA8|DFNB21 HGNC:11720|MIM:602574|Ensembl:ENSG00000109927|HPRD:03985|Vega:OTTHUMG00000149908 11 11q22-q24 tectorin alpha protein-coding TECTA tectorin alpha O alpha-tectorin 20121230 -9606 7008 TEF CTA-223H9.6 - HGNC:11722|MIM:188595|Ensembl:ENSG00000167074|HPRD:01783|Vega:OTTHUMG00000150968 22 22q13.2 thyrotrophic embryonic factor protein-coding TEF thyrotrophic embryonic factor O thyrotroph embryonic factor 20121230 -9606 7009 TMBIM6 - BAXI1|BI-1|TEGT HGNC:11723|MIM:600748|Ensembl:ENSG00000139644|HPRD:02851|Vega:OTTHUMG00000169652 12 12q12-q13 transmembrane BAX inhibitor motif containing 6 protein-coding TMBIM6 transmembrane BAX inhibitor motif containing 6 O bax inhibitor 1|testis enhanced gene transcript|testis-enhanced gene transcript protein|transmembrane BAX inhibitor motif-containing protein 6 20121230 -9606 7010 TEK - CD202B|TIE-2|TIE2|VMCM|VMCM1 HGNC:11724|MIM:600221|Ensembl:ENSG00000120156|HPRD:02571|Vega:OTTHUMG00000019712 9 9p21 TEK tyrosine kinase, endothelial protein-coding TEK TEK tyrosine kinase, endothelial O angiopoietin-1 receptor|endothelial tyrosine kinase|hTIE2|p140 TEK|soluble TIE2 variant 1|soluble TIE2 variant 2|tunica interna endothelial cell kinase|tyrosine kinase with Ig and EGF homology domains-2|tyrosine-protein kinase receptor TEK|tyrosine-protein kinase receptor TIE-2 20121230 -9606 7011 TEP1 - TLP1|TP1|TROVE1|VAULT2|p240 HGNC:11726|MIM:601686|Ensembl:ENSG00000129566|HPRD:03404|Vega:OTTHUMG00000029515 14 14q11.2 telomerase-associated protein 1 protein-coding TEP1 telomerase-associated protein 1 O TROVE domain family, member 1|p80 telomerase homolog|telomerase protein 1|telomerase protein component 1 20121230 -9606 7012 TERC - DKCA1|PFBMFT2|SCARNA19|TR|TRC3|hTR HGNC:11727|MIM:602322 3 3q26 telomerase RNA component miscRNA TERC telomerase RNA component O - 20121230 -9606 7013 TERF1 - PIN2|TRBF1|TRF|TRF1|hTRF1-AS|t-TRF1 HGNC:11728|MIM:600951|Ensembl:ENSG00000147601|HPRD:02975|Vega:OTTHUMG00000164522 8 8q21.11 telomeric repeat binding factor (NIMA-interacting) 1 protein-coding TERF1 telomeric repeat binding factor (NIMA-interacting) 1 O NIMA-interacting protein 2|TTAGGG repeat-binding factor 1|telomeric protein Pin2/TRF1|telomeric repeat-binding factor 1 20121230 -9606 7014 TERF2 - TRBF2|TRF2 HGNC:11729|MIM:602027|Ensembl:ENSG00000132604|HPRD:03610|Vega:OTTHUMG00000137566 16 16q22.1 telomeric repeat binding factor 2 protein-coding TERF2 telomeric repeat binding factor 2 O TTAGGG repeat-binding factor 2|telomeric DNA-binding protein|telomeric repeat binding protein 2|telomeric repeat-binding factor 2 20121230 -9606 7015 TERT - DKCA2|DKCB4|EST2|PFBMFT1|TCS1|TP2|TRT|hEST2|hTRT HGNC:11730|MIM:187270|Ensembl:ENSG00000164362|HPRD:01754|Vega:OTTHUMG00000090357 5 5p15.33 telomerase reverse transcriptase protein-coding TERT telomerase reverse transcriptase O telomerase catalytic subunit|telomerase-associated protein 2 20121230 -9606 7016 TESK1 - - HGNC:11731|MIM:601782|Ensembl:ENSG00000107140|HPRD:03470|Vega:OTTHUMG00000019863 9 9p13 testis-specific kinase 1 protein-coding TESK1 testis-specific kinase 1 O dual specificity testis-specific protein kinase 1|testicular protein kinase 1 20121230 -9606 7018 TF PRO1400 PRO1557|PRO2086|TFQTL1 HGNC:11740|MIM:190000|Ensembl:ENSG00000091513|HPRD:01811|Vega:OTTHUMG00000150356 3 3q22.1 transferrin protein-coding TF transferrin O beta-1 metal-binding globulin|serotransferrin|siderophilin 20121230 -9606 7019 TFAM - MTTF1|MTTFA|TCF6|TCF6L1|TCF6L2|TCF6L3 HGNC:11741|MIM:600438|Ensembl:ENSG00000108064|HPRD:02702|Vega:OTTHUMG00000018270 10 10q21 transcription factor A, mitochondrial protein-coding TFAM transcription factor A, mitochondrial O mitochondrial transcription factor 1|mitochondrial transcription factor A|transcription factor 6|transcription factor 6-like 1|transcription factor 6-like 2 (mitochondrial transcription factor)|transcription factor 6-like 3 20121230 -9606 7020 TFAP2A RP1-290I10.1 AP-2|AP-2alpha|AP2TF|BOFS|TFAP2 HGNC:11742|MIM:107580|Ensembl:ENSG00000137203|HPRD:00128|Vega:OTTHUMG00000014235 6 6p24 transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha) protein-coding TFAP2A transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha) O AP-2 transcription factor|AP2-alpha|activating enhancer-binding protein 2-alpha|activator protein 2|transcription factor AP-2-alpha 20121230 -9606 7021 TFAP2B RP4-753D5.1 AP-2B|AP2-B HGNC:11743|MIM:601601|Ensembl:ENSG00000008196|HPRD:03360|Vega:OTTHUMG00000014836 6 6p12 transcription factor AP-2 beta (activating enhancer binding protein 2 beta) protein-coding TFAP2B transcription factor AP-2 beta (activating enhancer binding protein 2 beta) O AP2-beta|activating enhancer binding protein 2 beta|activating enhancer-binding protein 2-beta|transcription factor AP-2-beta 20121230 -9606 7022 TFAP2C RP4-539E24.1 AP2-GAMMA|ERF1|TFAP2G|hAP-2g HGNC:11744|MIM:601602|Ensembl:ENSG00000087510|HPRD:03361|Vega:OTTHUMG00000032805 20 20q13.2 transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma) protein-coding TFAP2C transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma) O activating enhancer-binding protein 2 gamma|estrogen receptor factor 1|transcription factor AP-2 gamma|transcription factor AP-2 gamma (activating enhancer-binding protein 2 gamma)|transcription factor ERF-1 20121230 -9606 7023 TFAP4 - AP-4|bHLHc41 HGNC:11745|MIM:600743|Ensembl:ENSG00000090447|HPRD:11795|Vega:OTTHUMG00000129435 16 16p13 transcription factor AP-4 (activating enhancer binding protein 4) protein-coding TFAP4 transcription factor AP-4 (activating enhancer binding protein 4) O activating enhancer-binding protein 4|class C basic helix-loop-helix protein 41|transcription factor AP-4|transcription factor AP-4 (activating enhancer-binding protein 4) 20121230 -9606 7024 TFCP2 - LBP1C|LSF|LSF1D|SEF|TFCP2C HGNC:11748|MIM:189889|Ensembl:ENSG00000135457|HPRD:01790|Vega:OTTHUMG00000169621 12 12q13 transcription factor CP2 protein-coding TFCP2 transcription factor CP2 O SAA3 enhancer factor|alpha-globin transcription factor CP2 20121230 -9606 7025 NR2F1 - COUP-TFI|EAR-3|EAR3|ERBAL3|NR2F2|SVP44|TCFCOUP1|TFCOUP1 HGNC:7975|MIM:132890|Ensembl:ENSG00000175745|HPRD:00584|Vega:OTTHUMG00000119079 5 5q14 nuclear receptor subfamily 2, group F, member 1 protein-coding NR2F1 nuclear receptor subfamily 2, group F, member 1 O COUP transcription factor 1|COUP transcription factor I|COUP-TF I|COUP-TF1|V-erbA-related protein 3|chicken ovalbumin upstream promoter-transcription factor I|transcription factor COUP 1 (chicken ovalbumin upstream promoter 1, v-erb-a homolog-like 3) 20121230 -9606 7026 NR2F2 - ARP1|COUPTFB|COUPTFII|NF-E3|NR2F1|SVP40|TFCOUP2 HGNC:7976|MIM:107773|Ensembl:ENSG00000185551|HPRD:00139|Vega:OTTHUMG00000149848 15 15q26 nuclear receptor subfamily 2, group F, member 2 protein-coding NR2F2 nuclear receptor subfamily 2, group F, member 2 O ADP-ribosylation factor related protein 1|COUP transcription factor 2|COUP transcription factor II|apolipoprotein A-I regulatory protein 1|apolipoprotein AI regulatory protein 1|chicken ovalbumin upstream promoter transcription factor 2|chicken ovalbumin upstream promoter-transcription factor I|chicken ovalbumin upstream promoter-transcription factor II variant 1|chicken ovalbumin upstream promoter-transcription factor II variant 2|chicken ovalbumin upstream promoter-transcription factor II variant 3 20121230 -9606 7027 TFDP1 RP11-230F18.1 DP1|DRTF1|Dp-1 HGNC:11749|MIM:189902|Ensembl:ENSG00000198176|HPRD:01792|Vega:OTTHUMG00000017388 13 13q34 transcription factor Dp-1 protein-coding TFDP1 transcription factor Dp-1 O DRTF1-polypeptide 1|E2F dimerization partner 1|E2F-related transcription factor 20121230 -9606 7029 TFDP2 - DP2 HGNC:11751|MIM:602160|Ensembl:ENSG00000114126|HPRD:03696|Vega:OTTHUMG00000164975 3 3q23 transcription factor Dp-2 (E2F dimerization partner 2) protein-coding TFDP2 transcription factor Dp-2 (E2F dimerization partner 2) O transcription factor Dp-2 20121230 -9606 7030 TFE3 - RCCP2|RCCX1|TFEA|bHLHe33 HGNC:11752|MIM:314310|Ensembl:ENSG00000068323|HPRD:02439|Vega:OTTHUMG00000022690 X Xp11.22 transcription factor binding to IGHM enhancer 3 protein-coding TFE3 transcription factor binding to IGHM enhancer 3 O Transcription factor for IgH enhancer|class E basic helix-loop-helix protein 33|transcription factor E family, member A|transcription factor E3 20121230 -9606 7031 TFF1 - BCEI|D21S21|HP1.A|HPS2|pNR-2|pS2 HGNC:11755|MIM:113710|Ensembl:ENSG00000160182|HPRD:00219|Vega:OTTHUMG00000086799 21 21q22.3 trefoil factor 1 protein-coding TFF1 trefoil factor 1 O breast cancer estrogen-inducible protein|breast cancer estrogen-inducible sequence|gastrointestinal trefoil protein pS2|polypeptide P1.A|protein pS2 20121230 -9606 7032 TFF2 - SML1|SP HGNC:11756|MIM:182590|Ensembl:ENSG00000160181|HPRD:01682|Vega:OTTHUMG00000086797 21 21q22.3 trefoil factor 2 protein-coding TFF2 trefoil factor 2 O spasmolysin|spasmolytic polypeptide|spasmolytic protein 1 20121230 -9606 7033 TFF3 - ITF|P1B|TFI HGNC:11757|MIM:600633|Ensembl:ENSG00000160180|HPRD:02797|Vega:OTTHUMG00000086798 21 21q22.3 trefoil factor 3 (intestinal) protein-coding TFF3 trefoil factor 3 (intestinal) O polypeptide P1.B|trefoil factor 3 20121230 -9606 7035 TFPI - EPI|LACI|TFI|TFPI1 HGNC:11760|MIM:152310|Ensembl:ENSG00000003436|HPRD:01064|Vega:OTTHUMG00000132634 2 2q32 tissue factor pathway inhibitor (lipoprotein-associated coagulation inhibitor) protein-coding TFPI tissue factor pathway inhibitor (lipoprotein-associated coagulation inhibitor) O anti-convertin|extrinsic pathway inhibitor|tissue factor pathway inhibitor 20121230 -9606 7036 TFR2 - HFE3|TFRC2 HGNC:11762|MIM:604720|Ensembl:ENSG00000106327|HPRD:05282|Vega:OTTHUMG00000159598 7 7q22 transferrin receptor 2 protein-coding TFR2 transferrin receptor 2 O transferrin receptor protein 2 20121230 -9606 7037 TFRC - CD71|T9|TFR|TFR1|TR|TRFR|p90 HGNC:11763|MIM:190010|Ensembl:ENSG00000072274|HPRD:01812|Vega:OTTHUMG00000155714 3 3q29 transferrin receptor (p90, CD71) protein-coding TFRC transferrin receptor (p90, CD71) O transferrin receptor protein 1 20121230 -9606 7038 TG - AITD3|TGN HGNC:11764|MIM:188450|Ensembl:ENSG00000042832|HPRD:01782|Vega:OTTHUMG00000164649 8 8q24 thyroglobulin protein-coding TG thyroglobulin O - 20121230 -9606 7039 TGFA - TFGA HGNC:11765|MIM:190170|Ensembl:ENSG00000163235|HPRD:07522|Vega:OTTHUMG00000129669 2 2p13 transforming growth factor, alpha protein-coding TGFA transforming growth factor, alpha O TGF-alpha|protransforming growth factor alpha 20121230 -9606 7040 TGFB1 - CED|DPD1|LAP|TGFB|TGFbeta HGNC:11766|MIM:190180|Ensembl:ENSG00000105329|HPRD:01821 19 19q13.1 transforming growth factor, beta 1 protein-coding TGFB1 transforming growth factor, beta 1 O TGF-beta 1 protein|TGF-beta-1|latency-associated peptide|transforming growth factor beta-1 20121230 -9606 7041 TGFB1I1 - ARA55|HIC-5|HIC5|TSC-5 HGNC:11767|MIM:602353|Ensembl:ENSG00000140682|HPRD:03831|Vega:OTTHUMG00000132467 16 16p11.2 transforming growth factor beta 1 induced transcript 1 protein-coding TGFB1I1 transforming growth factor beta 1 induced transcript 1 O androgen receptor coactivator 55 kDa protein|androgen receptor coactivator ARA55|androgen receptor-associated protein of 55 kDa|hydrogen peroxide-inducible clone 5 protein|transforming growth factor beta-1-induced transcript 1 protein 20121230 -9606 7042 TGFB2 - LDS4|TGF-beta2 HGNC:11768|MIM:190220|Ensembl:ENSG00000092969|HPRD:01828|Vega:OTTHUMG00000039521 1 1q41 transforming growth factor, beta 2 protein-coding TGFB2 transforming growth factor, beta 2 O BSC-1 cell growth inhibitor|G-TSF|cetermin|glioblastoma-derived T-cell suppressor factor|polyergin|transforming growth factor beta-2 20121230 -9606 7043 TGFB3 - ARVD|TGF-beta3 HGNC:11769|MIM:190230|Ensembl:ENSG00000119699|HPRD:01829|Vega:OTTHUMG00000171489 14 14q24 transforming growth factor, beta 3 protein-coding TGFB3 transforming growth factor, beta 3 O TGF-beta-3|transforming growth factor beta-3 20121230 -9606 7044 LEFTY2 PSEC0024 EBAF|LEFTA|LEFTYA|TGFB4 HGNC:3122|MIM:601877|Ensembl:ENSG00000143768|HPRD:03526|Vega:OTTHUMG00000037441 1 1q42.1 left-right determination factor 2 protein-coding LEFTY2 left-right determination factor 2 O TGF-beta-4|endometrial bleeding-associated factor|left-right determination factor A|protein lefty-2|protein lefty-A|transforming growth factor beta-4 20121230 -9606 7045 TGFBI - BIGH3|CDB1|CDG2|CDGG1|CSD|CSD1|CSD2|CSD3|EBMD|LCD1 HGNC:11771|MIM:601692|Ensembl:ENSG00000120708|HPRD:03409|Vega:OTTHUMG00000163213 5 5q31 transforming growth factor, beta-induced, 68kDa protein-coding TGFBI transforming growth factor, beta-induced, 68kDa O RGD-CAP|RGD-containing collagen-associated protein|beta ig-h3|kerato-epithelin|transforming growth factor-beta-induced protein ig-h3 20121230 -9606 7046 TGFBR1 RP11-96L7.1 AAT5|ACVRLK4|ALK-5|ALK5|LDS1A|LDS2A|MSSE|SKR4|TGFR-1 HGNC:11772|MIM:190181|Ensembl:ENSG00000106799|HPRD:01822|Vega:OTTHUMG00000020353 9 9q22 transforming growth factor, beta receptor 1 protein-coding TGFBR1 transforming growth factor, beta receptor 1 O TGF-beta receptor type I|TGF-beta receptor type-1|TGF-beta type I receptor|activin A receptor type II-like kinase, 53kD|activin A receptor type II-like kinase, 53kDa|activin A receptor type II-like protein kinase of 53kD|activin receptor-like kinase 5|serine/threonine-protein kinase receptor R4|tbetaR-I|transforming growth factor beta receptor I|transforming growth factor, beta receptor I (activin A receptor type II-like kinase, 53kD)|transforming growth factor-beta receptor type I 20121230 -9606 7047 TGM4 - TGP|hTGP HGNC:11780|MIM:600585|Ensembl:ENSG00000163810|HPRD:08997|Vega:OTTHUMG00000133096 3 3p22-p21.33 transglutaminase 4 (prostate) protein-coding TGM4 transglutaminase 4 (prostate) O TG(P)|TGase P|TGase-4|fibrinoligase|prostate transglutaminase|prostate-specific transglutaminase|protein-glutamine gamma-glutamyltransferase 4|transglutaminase P|transglutaminase-4 20121230 -9606 7048 TGFBR2 - AAT3|FAA3|LDS1B|LDS2B|MFS2|RIIC|TAAD2|TGFR-2|TGFbeta-RII HGNC:11773|MIM:190182|Ensembl:ENSG00000163513|HPRD:01823|Vega:OTTHUMG00000130569 3 3p22 transforming growth factor, beta receptor II (70/80kDa) protein-coding TGFBR2 transforming growth factor, beta receptor II (70/80kDa) O TGF-beta receptor type IIB|TGF-beta receptor type-2|TGF-beta type II receptor|tbetaR-II|transforming growth factor beta receptor type IIC|transforming growth factor, beta receptor II (70/80kDa) isoform 1|transforming growth factor, beta receptor II (70/80kDa) isoform 2 20121230 -9606 7049 TGFBR3 - BGCAN|betaglycan HGNC:11774|MIM:600742|Ensembl:ENSG00000069702|HPRD:02846|Vega:OTTHUMG00000010097 1 1p33-p32 transforming growth factor, beta receptor III protein-coding TGFBR3 transforming growth factor, beta receptor III O TGF-beta receptor type 3|TGF-beta receptor type III|TGFR-3|betaglycan proteoglycan|transforming growth factor beta receptor type 3 20121230 -9606 7050 TGIF1 - HPE4|TGIF HGNC:11776|MIM:602630|Ensembl:ENSG00000177426|HPRD:04023|Vega:OTTHUMG00000131511 18 18p11.3 TGFB-induced factor homeobox 1 protein-coding TGIF1 TGFB-induced factor homeobox 1 O 5'-TG-3' interacting factor|5'-TG-3'-interacting factor 1|TALE homeobox TG-interacting factor|homeobox protein TGIF|homeobox protein TGIF1|transforming growth factor-beta-induced factor 20121230 -9606 7051 TGM1 - ICR2|KTG|LI|LI1|TGASE|TGK HGNC:11777|MIM:190195|Ensembl:ENSG00000092295|HPRD:01824|Vega:OTTHUMG00000029329 14 14q11.2 transglutaminase 1 (K polypeptide epidermal type I, protein-glutamine-gamma-glutamyltransferase) protein-coding TGM1 transglutaminase 1 (K polypeptide epidermal type I, protein-glutamine-gamma-glutamyltransferase) O TG(K)|TGase K|TGase-1|epidermal TGase|protein-glutamine gamma-glutamyltransferase K|transglutaminase 1 isoform|transglutaminase K|transglutaminase, keratinocyte|transglutaminase-1 20121230 -9606 7052 TGM2 RP5-1054A22.2 G-ALPHA-h|GNAH|TG2|TGC HGNC:11778|MIM:190196|Ensembl:ENSG00000198959|HPRD:01825|Vega:OTTHUMG00000032437 20 20q12 transglutaminase 2 (C polypeptide, protein-glutamine-gamma-glutamyltransferase) protein-coding TGM2 transglutaminase 2 (C polypeptide, protein-glutamine-gamma-glutamyltransferase) O C polypeptide|TG(C)|TGase C|TGase H|TGase-2|TGase-H|protein-glutamine gamma-glutamyltransferase 2|protein-glutamine-gamma-glutamyltransferase|tissue transglutaminase|transglutaminase C|transglutaminase H|transglutaminase-2 20121230 -9606 7053 TGM3 - TGE HGNC:11779|MIM:600238|Ensembl:ENSG00000125780|HPRD:02584|Vega:OTTHUMG00000031690 20 20q11.2 transglutaminase 3 (E polypeptide, protein-glutamine-gamma-glutamyltransferase) protein-coding TGM3 transglutaminase 3 (E polypeptide, protein-glutamine-gamma-glutamyltransferase) O TG(E)|TGase E|TGase-3|protein-glutamine gamma-glutamyltransferase E|transglutaminase E|transglutaminase-3 20121230 -9606 7054 TH - DYT14|DYT5b|TYH HGNC:11782|MIM:191290|Ensembl:ENSG00000180176|HPRD:01865|Vega:OTTHUMG00000009559 11 11p15.5 tyrosine hydroxylase protein-coding TH tyrosine hydroxylase O dystonia 14|tyrosine 3-hydroxylase|tyrosine 3-monooxygenase 20121230 -9606 7055 THAS - TAS HGNC:11783|MIM:313850 X - thoracoabdominal syndrome unknown THAS thoracoabdominal syndrome O - 20120622 -9606 7056 THBD - AHUS6|BDCA3|CD141|THPH12|THRM|TM HGNC:11784|MIM:188040|Ensembl:ENSG00000178726|HPRD:01764|Vega:OTTHUMG00000032053 20 20p11.2 thrombomodulin protein-coding THBD thrombomodulin O CD141 antigen|fetomodulin 20121230 -9606 7057 THBS1 - THBS|THBS-1|TSP|TSP-1|TSP1 HGNC:11785|MIM:188060|Ensembl:ENSG00000137801|HPRD:01765|Vega:OTTHUMG00000133665 15 15q15 thrombospondin 1 protein-coding THBS1 thrombospondin 1 O thrombospondin-1|thrombospondin-1p180 20121230 -9606 7058 THBS2 XXyac-YX65C7_A.1 TSP2 HGNC:11786|MIM:188061|Ensembl:ENSG00000186340|HPRD:01766|Vega:OTTHUMG00000045408 6 6q27 thrombospondin 2 protein-coding THBS2 thrombospondin 2 O thrombospondin-2 20121230 -9606 7059 THBS3 - TSP3 HGNC:11787|MIM:188062|Ensembl:ENSG00000169231|HPRD:01767|Vega:OTTHUMG00000035710 1 1q21 thrombospondin 3 protein-coding THBS3 thrombospondin 3 O thrombospondin-3 20121230 -9606 7060 THBS4 - TSP4 HGNC:11788|MIM:600715|Ensembl:ENSG00000113296|HPRD:02836|Vega:OTTHUMG00000108173 5 5q13 thrombospondin 4 protein-coding THBS4 thrombospondin 4 O thrombospondin-4 20121230 -9606 7062 TCHH RP11-107M16.3 THH|THL|TRHY HGNC:11791|MIM:190370|Ensembl:ENSG00000159450|Vega:OTTHUMG00000013066 1 1q21.3 trichohyalin protein-coding TCHH trichohyalin O - 20121230 -9606 7063 THM - - HGNC:11792|MIM:274230 - - thymoma unknown THM thymoma O - 20110215 -9606 7064 THOP1 - EP24.15|MEPD_HUMAN|MP78|TOP HGNC:11793|MIM:601117|Ensembl:ENSG00000172009|HPRD:03072|Vega:OTTHUMG00000180492 19 19p13.3 thimet oligopeptidase 1 protein-coding THOP1 thimet oligopeptidase 1 O endopeptidase 24.15|thimet oligopeptidase 20121230 -9606 7066 THPO - MGDF|MKCSF|ML|MPLLG|THCYT1|TPO HGNC:11795|MIM:600044|Ensembl:ENSG00000090534|HPRD:02500|Vega:OTTHUMG00000156745 3 3q27 thrombopoietin protein-coding THPO thrombopoietin O MPL ligand|c-mpl ligand|megakaryocyte colony-stimulating factor|megakaryocyte growth and development factor|megakaryocyte stimulating factor|myeloproliferative leukemia virus oncogene ligand|thrombopoietin nirs variant 1 20121230 -9606 7067 THRA - AR7|CHNG6|EAR7|ERB-T-1|ERBA|ERBA1|NR1A1|THRA1|THRA2|c-ERBA-1 HGNC:11796|MIM:190120|Ensembl:ENSG00000126351|HPRD:07185|Vega:OTTHUMG00000133332 17 17q11.2 thyroid hormone receptor, alpha protein-coding THRA thyroid hormone receptor, alpha O EAR-7|ERBA-related 7|V-erbA-related protein 7|c-erbA-alpha|nuclear receptor subfamily 1 group A member 1|thyroid hormone receptor alpha|thyroid hormone receptor, alpha (erythroblastic leukemia viral (v-erb-a) oncogene homolog, avian)|thyroid normone nuclear receptor alpha variant 1|triiodothyronine receptor 20121230 -9606 7068 THRB - C-ERBA-2|C-ERBA-BETA|ERBA2|GRTH|NR1A2|PRTH|THR1|THRB1|THRB2 HGNC:11799|MIM:190160|Ensembl:ENSG00000151090|HPRD:07521|Vega:OTTHUMG00000130478 3 3p24.2 thyroid hormone receptor, beta protein-coding THRB thyroid hormone receptor, beta O nuclear receptor subfamily 1 group A member 2|oncogene ERBA2|thyroid hormone nuclear receptor beta variant 1|thyroid hormone receptor beta|thyroid hormone receptor, beta (erythroblastic leukemia viral (v-erb-a) oncogene homolog 2, avian) 20121230 -9606 7069 THRSP - LPGP1|Lpgp|S14|SPOT14|THRP HGNC:11800|MIM:601926|Ensembl:ENSG00000151365|HPRD:03566|Vega:OTTHUMG00000166632 11 11q14.1 thyroid hormone responsive protein-coding THRSP thyroid hormone responsive O SPOT14 homolog|lipogenic protein 1|spot 14 protein|thyroid hormone responsive (SPOT14 homolog, rat)|thyroid hormone responsive SPOT14|thyroid hormone-inducible hepatic protein 20121230 -9606 7070 THY1 - CD90 HGNC:11801|MIM:188230|Ensembl:ENSG00000154096|HPRD:01769|HPRD:11283|Vega:OTTHUMG00000166202 11 11q23.3 Thy-1 cell surface antigen protein-coding THY1 Thy-1 cell surface antigen O CDw90|Thy-1 T-cell antigen|thy-1 antigen|thy-1 membrane glycoprotein 20121230 -9606 7071 KLF10 - EGRA|TIEG|TIEG1 HGNC:11810|MIM:601878|Ensembl:ENSG00000155090|HPRD:03527|Vega:OTTHUMG00000164735 8 8q22.2 Kruppel-like factor 10 protein-coding KLF10 Kruppel-like factor 10 O EGR-alpha|Krueppel-like factor 10|TGFB inducible early growth response|TGFB-inducible early growth response protein 1|TIEG-1|transforming growth factor-beta-inducible early growth response protein 1 20121230 -9606 7072 TIA1 - TIA-1 HGNC:11802|MIM:603518|Ensembl:ENSG00000116001|HPRD:04626|Vega:OTTHUMG00000129644 2 2p13 TIA1 cytotoxic granule-associated RNA binding protein protein-coding TIA1 TIA1 cytotoxic granule-associated RNA binding protein O T-cell-restricted intracellular antigen-1|nucleolysin TIA-1 isoform p40|p40-TIA-1 (containing p15-TIA-1) 20121230 -9606 7073 TIAL1 - TCBP|TIAR HGNC:11804|MIM:603413|Ensembl:ENSG00000151923|HPRD:04563|Vega:OTTHUMG00000019156 10 10q TIA1 cytotoxic granule-associated RNA binding protein-like 1 protein-coding TIAL1 TIA1 cytotoxic granule-associated RNA binding protein-like 1 O T-cluster binding protein|TIA-1-related nucleolysin|aging-associated gene 7 protein|nucleolysin TIAR 20121230 -9606 7074 TIAM1 - - HGNC:11805|MIM:600687|Ensembl:ENSG00000156299|HPRD:02820|Vega:OTTHUMG00000084869 21 21q22.11 T-cell lymphoma invasion and metastasis 1 protein-coding TIAM1 T-cell lymphoma invasion and metastasis 1 O T-lymphoma invasion and metastasis-inducing protein 1|TIAM-1|human T-lymphoma invasion and metastasis inducing TIAM1 protein 20121230 -9606 7075 TIE1 RP11-282K6.6 JTK14|TIE HGNC:11809|MIM:600222|Ensembl:ENSG00000066056|HPRD:02572|Vega:OTTHUMG00000007282 1 1p34-p33 tyrosine kinase with immunoglobulin-like and EGF-like domains 1 protein-coding TIE1 tyrosine kinase with immunoglobulin-like and EGF-like domains 1 O tyrosine kinase with immunoglobulin and epidermal growth factor homology domains 1|tyrosine-protein kinase receptor Tie-1 20121230 -9606 7076 TIMP1 RP1-230G1.3 CLGI|EPA|EPO|HCI|TIMP HGNC:11820|MIM:305370|Ensembl:ENSG00000102265|HPRD:02371|Vega:OTTHUMG00000021447 X Xp11.3-p11.23 TIMP metallopeptidase inhibitor 1 protein-coding TIMP1 TIMP metallopeptidase inhibitor 1 O TIMP-1|collagenase inhibitor|erythroid potentiating activity|erythroid-potentiating activity|fibroblast collagenase inhibitor|metalloproteinase inhibitor 1|tissue inhibitor of metalloproteinases 1 20121230 -9606 7077 TIMP2 - CSC-21K HGNC:11821|MIM:188825|Ensembl:ENSG00000035862|HPRD:01784|Vega:OTTHUMG00000154517 17 17q25 TIMP metallopeptidase inhibitor 2 protein-coding TIMP2 TIMP metallopeptidase inhibitor 2 O TIMP-2|metalloproteinase inhibitor 2|tissue inhibitor of metalloproteinase 2|tissue inhibitor of metalloproteinases 2 20121230 -9606 7078 TIMP3 RP1-309I22.1 HSMRK222|K222|K222TA2|SFD HGNC:11822|MIM:188826|Ensembl:ENSG00000100234|HPRD:01785|Vega:OTTHUMG00000030784 22 22q12.3 TIMP metallopeptidase inhibitor 3 protein-coding TIMP3 TIMP metallopeptidase inhibitor 3 O MIG-5 protein|TIMP-3|metalloproteinase inhibitor 3|protein MIG-5|tissue inhibitor of metalloproteinases 3 20121230 -9606 7079 TIMP4 - - HGNC:11823|MIM:601915|Ensembl:ENSG00000157150|HPRD:03557|Vega:OTTHUMG00000129763 3 3p25 TIMP metallopeptidase inhibitor 4 protein-coding TIMP4 TIMP metallopeptidase inhibitor 4 O TIMP-4|metalloproteinase inhibitor 4|tissue inhibitor of metalloproteinase 4|tissue inhibitor of metalloproteinases 4 20121230 -9606 7080 NKX2-1 - BCH|BHC|NK-2|NKX2.1|NKX2A|TEBP|TITF1|TTF-1|TTF1 HGNC:11825|MIM:600635|Ensembl:ENSG00000136352|HPRD:02798|Vega:OTTHUMG00000140225 14 14q13 NK2 homeobox 1 protein-coding NKX2-1 NK2 homeobox 1 O NK-2 homolog A|homeobox protein NK-2 homolog A|homeobox protein Nkx-2.1|thyroid nuclear factor 1|thyroid transcription factor 1 20121230 -9606 7082 TJP1 - ZO-1 HGNC:11827|MIM:601009|Ensembl:ENSG00000104067|HPRD:03002|Vega:OTTHUMG00000137397 15 15q13 tight junction protein 1 protein-coding TJP1 tight junction protein 1 O tight junction protein ZO-1|zona occludens 1|zona occludens protein 1|zonula occludens 1 protein|zonula occludens protein 1 20121230 -9606 7083 TK1 - TK2 HGNC:11830|MIM:188300|Ensembl:ENSG00000167900|HPRD:01771|Vega:OTTHUMG00000150674 17 17q23.2-q25.3 thymidine kinase 1, soluble protein-coding TK1 thymidine kinase 1, soluble O thymidine kinase 1 soluble isoform|thymidine kinase, cytosolic|thymidine kinase-1 20121230 -9606 7084 TK2 - MTDPS2|MTTK HGNC:11831|MIM:188250|Ensembl:ENSG00000166548|HPRD:01770|Vega:OTTHUMG00000137499 16 16q22-q23.1 thymidine kinase 2, mitochondrial protein-coding TK2 thymidine kinase 2, mitochondrial O mt-TK 20121230 -9606 7085 TKCR - TKC HGNC:11833|MIM:314300 X Xq28 torticollis, keloids, cryptorchidism and renal dysplasia unknown TKCR torticollis, keloids, cryptorchidism and renal dysplasia O - 20120622 -9606 7086 TKT - TK|TKT1 HGNC:11834|MIM:606781|Ensembl:ENSG00000163931|HPRD:06001|Vega:OTTHUMG00000158192 3 3p14.3 transketolase protein-coding TKT transketolase O - 20121230 -9606 7087 ICAM5 - TLCN|TLN HGNC:5348|MIM:601852|Ensembl:ENSG00000105376|HPRD:03509|Vega:OTTHUMG00000180406 19 19p13.2 intercellular adhesion molecule 5, telencephalin protein-coding ICAM5 intercellular adhesion molecule 5, telencephalin O ICAM-5|intercellular adhesion molecule 5|telencephalin 20121230 -9606 7088 TLE1 RP11-203D19.1 ESG|ESG1|GRG1 HGNC:11837|MIM:600189|Ensembl:ENSG00000196781|HPRD:02557|Vega:OTTHUMG00000021008 9 9q21.32 transducin-like enhancer of split 1 (E(sp1) homolog, Drosophila) protein-coding TLE1 transducin-like enhancer of split 1 (E(sp1) homolog, Drosophila) O e(Sp1) homolog|enhancer of split groucho 1|enhancer of split groucho-like protein 1|transducin-like enhancer of split 1, homolog of Drosophila E(sp1)|transducin-like enhancer protein 1 20121230 -9606 7089 TLE2 - ESG|ESG2|GRG2 HGNC:11838|MIM:601041|Ensembl:ENSG00000065717|HPRD:03025|Vega:OTTHUMG00000180613 19 19p13.3 transducin-like enhancer of split 2 (E(sp1) homolog, Drosophila) protein-coding TLE2 transducin-like enhancer of split 2 (E(sp1) homolog, Drosophila) O enhancer of split groucho 2|enhancer of split groucho-like protein 2|transducin-like enhancer of split 2, homolog of Drosophila E(sp1)|transducin-like enhancer protein 2 20121230 -9606 7090 TLE3 - ESG|ESG3|GRG3|HsT18976 HGNC:11839|MIM:600190|Ensembl:ENSG00000140332|HPRD:02558|Vega:OTTHUMG00000172121 15 15q22 transducin-like enhancer of split 3 (E(sp1) homolog, Drosophila) protein-coding TLE3 transducin-like enhancer of split 3 (E(sp1) homolog, Drosophila) O enhancer of split groucho 3|enhancer of split groucho-like protein 3|transducin-like enhancer of split 3, homolog of Drosophila E(sp1)|transducin-like enhancer protein 3 20121230 -9606 7091 TLE4 RP11-79D8.3 BCE-1|BCE1|E(spI)|ESG|ESG4|GRG4 HGNC:11840|MIM:605132|Ensembl:ENSG00000106829|Vega:OTTHUMG00000020072 9 9q21.31 transducin-like enhancer of split 4 (E(sp1) homolog, Drosophila) protein-coding TLE4 transducin-like enhancer of split 4 (E(sp1) homolog, Drosophila) O B lymphocyte gene 1|Protein BCE-1|enhancer of split groucho 4|transducin-like enhancer of split 4, homolog of Drosophila E(sp1)|transducin-like enhancer protein 4 20121230 -9606 7092 TLL1 - ASD6|TLL HGNC:11843|MIM:606742|Ensembl:ENSG00000038295|HPRD:07074|Vega:OTTHUMG00000161112 4 4q32-q33 tolloid-like 1 protein-coding TLL1 tolloid-like 1 O tolloid-like protein 1 20121230 -9606 7093 TLL2 - - HGNC:11844|MIM:606743|Ensembl:ENSG00000095587|HPRD:05993|Vega:OTTHUMG00000018833 10 10q23-q24 tolloid-like 2 protein-coding TLL2 tolloid-like 2 O tolloid-like protein 2 20121230 -9606 7094 TLN1 RP11-112J3.1 ILWEQ|TLN HGNC:11845|MIM:186745|Ensembl:ENSG00000137076|HPRD:01726|Vega:OTTHUMG00000019874 9 9p13 talin 1 protein-coding TLN1 talin 1 O talin-1 20121230 -9606 7095 SEC62 - Dtrp1|HTP1|TLOC1|TP-1 HGNC:11846|MIM:602173|Ensembl:ENSG00000008952|HPRD:03706|Vega:OTTHUMG00000158753 3 3q26.2 SEC62 homolog (S. cerevisiae) protein-coding SEC62 SEC62 homolog (S. cerevisiae) O hTP-1|membrane protein SEC62, S.cerevisiae, homolog of|translocation protein 1|translocation protein SEC62 20121230 -9606 7096 TLR1 - CD281|TIL|TIL. LPRS5|rsc786 HGNC:11847|MIM:601194|Ensembl:ENSG00000174125|HPRD:03119|Vega:OTTHUMG00000160413 4 4p14 toll-like receptor 1 protein-coding TLR1 toll-like receptor 1 O toll/interleukin-1 receptor-like protein 20121230 -9606 7097 TLR2 - CD282|TIL4 HGNC:11848|MIM:603028|HPRD:04323 4 4q32 toll-like receptor 2 protein-coding TLR2 toll-like receptor 2 O toll/interleukin 1 receptor-like 4|toll/interleukin-1 receptor-like protein 4 20121230 -9606 7098 TLR3 - CD283|IIAE2 HGNC:11849|MIM:603029|Ensembl:ENSG00000164342|HPRD:04324|Vega:OTTHUMG00000160345 4 4q35 toll-like receptor 3 protein-coding TLR3 toll-like receptor 3 O - 20121230 -9606 7099 TLR4 - ARMD10|CD284|TLR-4|TOLL HGNC:11850|MIM:603030|Ensembl:ENSG00000136869|HPRD:04325|Vega:OTTHUMG00000021046 9 9q33.1 toll-like receptor 4 protein-coding TLR4 toll-like receptor 4 O hToll|homolog of Drosophila toll 20121230 -9606 7100 TLR5 RP11-239E10.1 SLEB1|TIL3 HGNC:11851|MIM:603031|Ensembl:ENSG00000187554|HPRD:04326|Vega:OTTHUMG00000037937 1 1q41-q42 toll-like receptor 5 protein-coding TLR5 toll-like receptor 5 O toll/interleukin-1 receptor-like protein 3 20121230 -9606 7101 NR2E1 RP3-429G5.1 TLL|TLX|XTLL HGNC:7973|MIM:603849|Ensembl:ENSG00000112333|HPRD:07230|Vega:OTTHUMG00000015319 6 6q21 nuclear receptor subfamily 2, group E, member 1 protein-coding NR2E1 nuclear receptor subfamily 2, group E, member 1 O hTll|nuclear receptor TLX|nuclear receptor subfamily 2 group E member 1|protein tailless homolog|tailes-related receptor|tailless homolog 20121230 -9606 7102 TSPAN7 - A15|CCG-B7|CD231|DXS1692E|MRX58|MXS1|TALLA-1|TM4SF2|TM4SF2b HGNC:11854|MIM:300096|Ensembl:ENSG00000156298|Ensembl:ENSG00000250349|HPRD:02107|Vega:OTTHUMG00000024090|Vega:OTTHUMG00000161009 X Xp11.4 tetraspanin 7 protein-coding TSPAN7 tetraspanin 7 O CD231 antigen|T-cell acute lymphoblastic leukemia associated antigen 1|T-cell acute lymphoblastic leukemia-associated antigen 1|cell surface glycoprotein A15|membrane component chromosome X surface marker 1|membrane component, X chromosome, surface marker 1|tetraspanin protein|tetraspanin-7|transmembrane 4 superfamily 2b|transmembrane 4 superfamily member 2|transmembrane protein A15|tspan-7 20121230 -9606 7103 TSPAN8 - CO-029|TM4SF3 HGNC:11855|MIM:600769|Ensembl:ENSG00000127324|HPRD:02865|Vega:OTTHUMG00000169542 12 12q14.1-q21.1 tetraspanin 8 protein-coding TSPAN8 tetraspanin 8 O tetraspanin-8|transmembrane 4 superfamily member 3|tspan-8|tumor-associated antigen CO-029 20121230 -9606 7104 TM4SF4 - ILTMP|il-TMP HGNC:11856|MIM:606567|Ensembl:ENSG00000169903|HPRD:07585|Vega:OTTHUMG00000159619 3 3q25 transmembrane 4 L six family member 4 protein-coding TM4SF4 transmembrane 4 L six family member 4 O intestinal and liver (il) tetraspan membrane protein|intestine and liver tetraspan membrane protein|transmembrane 4 L6 family member 4|transmembrane 4 superfamily member 4 20121230 -9606 7105 TSPAN6 UNQ767/PRO1560 T245|TM4SF6|TSPAN-6 HGNC:11858|MIM:300191|Ensembl:ENSG00000000003|HPRD:02179|Vega:OTTHUMG00000022002 X Xq22 tetraspanin 6 protein-coding TSPAN6 tetraspanin 6 O A15 homolog|putative NF-kappa-B-activating protein 321|tetraspan TM4SF|tetraspanin TM4-D|tetraspanin-6|transmembrane 4 superfamily member 6 20121230 -9606 7106 TSPAN4 - NAG-2|NAG2|TETRASPAN|TM4SF7|TSPAN-4 HGNC:11859|MIM:602644|Ensembl:ENSG00000214063|HPRD:04033|Vega:OTTHUMG00000133305 11 11p15.5 tetraspanin 4 protein-coding TSPAN4 tetraspanin 4 O novel antigen 2|tetraspan TM4SF|tetraspanin-4|transmembrane 4 superfamily member 7 20121230 -9606 7107 GPR137B RP5-985L19.1 TM7SF1 HGNC:11862|MIM:604658|Ensembl:ENSG00000077585|HPRD:06878|Vega:OTTHUMG00000037994 1 1q42-q43 G protein-coupled receptor 137B protein-coding GPR137B G protein-coupled receptor 137B O integral membrane protein GPR137B|transmembrane 7 superfamily member 1 (upregulated in kidney)|transmembrane 7 superfamily member 1 protein 20121230 -9606 7108 TM7SF2 - ANG1|DHCR14A|NET47 HGNC:11863|MIM:603414|Ensembl:ENSG00000149809|HPRD:04564|Vega:OTTHUMG00000165603 11 11q13 transmembrane 7 superfamily member 2 protein-coding TM7SF2 transmembrane 7 superfamily member 2 O C-14 sterol reductase|another new gene 1 protein|delta(14)-sterol reductase|delta-14-SR|putative sterol reductase SR-1|sterol C14-reductase 20121230 -9606 7109 TRAPPC10 - EHOC-1|EHOC1|GT334|TMEM1|TRS130|TRS30 HGNC:11868|MIM:602103|Ensembl:ENSG00000160218|HPRD:03656|Vega:OTTHUMG00000086894 21 21q22.3 trafficking protein particle complex 10 protein-coding TRAPPC10 trafficking protein particle complex 10 O TRAPP 130 kDa subunit|TRAPP subunit TMEM1|epilepsy holoprosencephaly candidate 1 protein|epilepsy holoprosencephaly candidate-1 protein|trafficking protein particle complex subunit 10|trafficking protein particle complex subunit 130|trafficking protein particle complex subunit TMEM1|transmembrane protein 1|transport protein particle subunit TMEM1 20121230 -9606 7110 TMF1 - ARA160|TMF HGNC:11870|MIM:601126|Ensembl:ENSG00000144747|HPRD:03081|Vega:OTTHUMG00000158771 3 3p21-p12 TATA element modulatory factor 1 protein-coding TMF1 TATA element modulatory factor 1 O TATA element modulatory factor|androgen receptor coactivator 160 kDa protein|androgen receptor-associated protein of 160 kDa 20121230 -9606 7111 TMOD1 RP11-244N9.1 D9S57E|ETMOD|TMOD HGNC:11871|MIM:190930|Ensembl:ENSG00000136842|HPRD:01838|Vega:OTTHUMG00000020325 9 9q22.3 tropomodulin 1 protein-coding TMOD1 tropomodulin 1 O E-Tmod|e-tropomodulin|erythrocyte tropomodulin|tropomodulin-1 20121230 -9606 7112 TMPO - CMD1T|LAP2|LEMD4|PRO0868|TP HGNC:11875|MIM:188380|Ensembl:ENSG00000120802|HPRD:01777|Vega:OTTHUMG00000170210 12 12q22 thymopoietin protein-coding TMPO thymopoietin O LEM domain containing 4|TP alpha|TP beta/gamma|lamina-associated polypeptide 2|thymopoietin-related peptide isoform alpha|thymopoietin-related peptide isoforms beta/gamma 20121230 -9606 7113 TMPRSS2 - PP9284|PRSS10 HGNC:11876|MIM:602060|Ensembl:ENSG00000184012|HPRD:03637|Vega:OTTHUMG00000086762 21 21q22.3 transmembrane protease, serine 2 protein-coding TMPRSS2 transmembrane protease, serine 2 O epitheliasin|serine protease 10|transmembrane protease serine 2 20121230 -9606 7114 TMSB4X - FX|PTMB4|TB4X|TMSB4 HGNC:11881|MIM:300159|Ensembl:ENSG00000205542|HPRD:02153|Vega:OTTHUMG00000021144 X Xq21.3-q22 thymosin beta 4, X-linked protein-coding TMSB4X thymosin beta 4, X-linked O prothymosin beta-4|t beta-4|thymosin beta-4|thymosin, beta 4, X chromosome 20121230 -9606 7115 TMSB4XP1 - TMSL1 HGNC:11883|HPRD:10271 1 1p34.2 thymosin beta 4, X-linked pseudogene 1 pseudo TMSB4XP1 thymosin beta 4, X-linked pseudogene 1 O - 20121230 -9606 7116 TMSB4XP2 - TMSL2 HGNC:11884|HPRD:10272 2 2p25.3 thymosin beta 4, X-linked pseudogene 2 pseudo TMSB4XP2 thymosin beta 4, X-linked pseudogene 2 O - 20121230 -9606 7117 TMSB4XP8 - TMSL3 HGNC:11885|HPRD:10273 4 4q22.1 thymosin beta 4, X-linked pseudogene 8 pseudo TMSB4XP8 thymosin beta 4, X-linked pseudogene 8 O - 20121230 -9606 7118 TMSB4XP4 - TMSL4 HGNC:11886|HPRD:10274 9 9q34.11 thymosin beta 4, X-linked pseudogene 4 pseudo TMSB4XP4 thymosin beta 4, X-linked pseudogene 4 O - 20121230 -9606 7119 TMSB4XP5 - TMSL5 HGNC:11887 11 11q12.3 thymosin beta 4, X-linked pseudogene 5 pseudo TMSB4XP5 thymosin beta 4, X-linked pseudogene 5 O - 20121230 -9606 7120 TMSB4XP6 - TMSB4L|TMSL6 HGNC:11888|HPRD:10275 20 20q13.13 thymosin beta 4, X-linked pseudogene 6 pseudo TMSB4XP6 thymosin beta 4, X-linked pseudogene 6 O - 20121230 -9606 7121 TMSB4XP7 - TMSL7 HGNC:11889 X Xq23 thymosin beta 4, X-linked pseudogene 7 pseudo TMSB4XP7 thymosin beta 4, X-linked pseudogene 7 O - 20121230 -9606 7122 CLDN5 - AWAL|BEC1|CPETRL1|TMVCF HGNC:2047|MIM:602101|Ensembl:ENSG00000184113|HPRD:03654|Vega:OTTHUMG00000150441 22 22q11.21 claudin 5 protein-coding CLDN5 claudin 5 O TMDVCF|claudin-5|transmembrane protein deleted in VCFS|transmembrane protein deleted in velocardiofacial syndrome 20121230 -9606 7123 CLEC3B - TN|TNA HGNC:11891|MIM:187520|Ensembl:ENSG00000163815|HPRD:01759|Vega:OTTHUMG00000133087 3 3p22-p21.3 C-type lectin domain family 3, member B protein-coding CLEC3B C-type lectin domain family 3, member B O plasminogen kringle 4-binding protein|tetranectin|tetranectin (plasminogen binding protein)|tetranectin (plasminogen-binding protein) 20121230 -9606 7124 TNF DADB-70P7.1 DIF|TNF-alpha|TNFA|TNFSF2 HGNC:11892|MIM:191160|Ensembl:ENSG00000232810|HPRD:01855|Vega:OTTHUMG00000031194 6 6p21.3 tumor necrosis factor protein-coding TNF tumor necrosis factor O APC1 protein|TNF, macrophage-derived|TNF, monocyte-derived|TNF-a|cachectin|tumor necrosis factor ligand superfamily member 2|tumor necrosis factor-alpha 20121230 -9606 7125 TNNC2 - - HGNC:11944|MIM:191039|Ensembl:ENSG00000101470|HPRD:08929|Vega:OTTHUMG00000032623 20 20q12-q13.11 troponin C type 2 (fast) protein-coding TNNC2 troponin C type 2 (fast) O troponin C, skeletal muscle|troponin C2, fast 20121230 -9606 7126 TNFAIP1 - B12|B61|EDP1|hBACURD2 HGNC:11894|MIM:191161|Ensembl:ENSG00000109079|HPRD:01856|Vega:OTTHUMG00000132501 17 17q22-q23 tumor necrosis factor, alpha-induced protein 1 (endothelial) protein-coding TNFAIP1 tumor necrosis factor, alpha-induced protein 1 (endothelial) O BTB/POZ domain-containing adapter for CUL3-mediated RhoA degradation protein 2|BTB/POZ domain-containing protein TNFAIP1 20121230 -9606 7127 TNFAIP2 - B94|EXOC3L3 HGNC:11895|MIM:603300|Ensembl:ENSG00000185215|HPRD:04487|Vega:OTTHUMG00000171890 14 14q32 tumor necrosis factor, alpha-induced protein 2 protein-coding TNFAIP2 tumor necrosis factor, alpha-induced protein 2 O TNF alpha-induced protein 2|exocyst complex component 3-like 3|primary response gene B94 protein|tumor necrosis factor alpha-induced protein 2 20121230 -9606 7128 TNFAIP3 RP11-356I2.3 A20|OTUD7C|TNFA1P2 HGNC:11896|MIM:191163|Ensembl:ENSG00000118503|HPRD:01857|Vega:OTTHUMG00000015664 6 6q23 tumor necrosis factor, alpha-induced protein 3 protein-coding TNFAIP3 tumor necrosis factor, alpha-induced protein 3 O OTU domain-containing protein 7C|TNF alpha-induced protein 3|putative DNA-binding protein A20|tumor necrosis factor alpha-induced protein 3|tumor necrosis factor inducible protein A20|zinc finger protein A20 20121230 -9606 7130 TNFAIP6 - TSG-6|TSG6 HGNC:11898|MIM:600410|Ensembl:ENSG00000123610|HPRD:02680|Vega:OTTHUMG00000131884 2 2q23.3 tumor necrosis factor, alpha-induced protein 6 protein-coding TNFAIP6 tumor necrosis factor, alpha-induced protein 6 O TNF alpha-induced protein 6|TNF-stimulated gene 6 protein|hyaluronate-binding protein|tumor necrosis factor alpha-inducible protein 6|tumor necrosis factor-inducible gene 6 protein|tumor necrosis factor-stimulated gene-6 protein 20121230 -9606 7132 TNFRSF1A - CD120a|FPF|MS5|TBP1|TNF-R|TNF-R-I|TNF-R55|TNFAR|TNFR1|TNFR1-d2|TNFR55|TNFR60|p55|p55-R|p60 HGNC:11916|MIM:191190|Ensembl:ENSG00000067182|HPRD:01861|Vega:OTTHUMG00000168267 12 12p13.2 tumor necrosis factor receptor superfamily, member 1A protein-coding TNFRSF1A tumor necrosis factor receptor superfamily, member 1A O TNF-R1|TNF-RI|TNFR-I|tumor necrosis factor binding protein 1|tumor necrosis factor receptor 1A isoform beta|tumor necrosis factor receptor superfamily member 1A|tumor necrosis factor receptor type 1|tumor necrosis factor-alpha receptor 20121230 -9606 7133 TNFRSF1B - CD120b|TBPII|TNF-R-II|TNF-R75|TNFBR|TNFR1B|TNFR2|TNFR80|p75|p75TNFR HGNC:11917|MIM:191191|Ensembl:ENSG00000028137|HPRD:01862|Vega:OTTHUMG00000001829 1 1p36.22 tumor necrosis factor receptor superfamily, member 1B protein-coding TNFRSF1B tumor necrosis factor receptor superfamily, member 1B O TNF-R2|TNF-RII|p75 TNF receptor|p80 TNF-alpha receptor|soluble TNFR1B variant 1|tumor necrosis factor beta receptor|tumor necrosis factor binding protein 2|tumor necrosis factor receptor 2|tumor necrosis factor receptor superfamily member 1B|tumor necrosis factor receptor type II 20121230 -9606 7134 TNNC1 - CMD1Z|CMH13|TN-C|TNC|TNNC HGNC:11943|MIM:191040|Ensembl:ENSG00000114854|HPRD:08930|Vega:OTTHUMG00000158572 3 3p21.1 troponin C type 1 (slow) protein-coding TNNC1 troponin C type 1 (slow) O cardiac troponin C|slow twitch skeletal/cardiac muscle troponin C|troponin C, slow skeletal and cardiac muscles|troponin C1, slow 20121230 -9606 7135 TNNI1 - SSTNI|TNN1 HGNC:11945|MIM:191042|Ensembl:ENSG00000159173|HPRD:01842|Vega:OTTHUMG00000035736 1 1q31.3 troponin I type 1 (skeletal, slow) protein-coding TNNI1 troponin I type 1 (skeletal, slow) O troponin I, slow skeletal muscle|troponin I, slow-twitch isoform 20121230 -9606 7136 TNNI2 - AMCD2B|DA2B|FSSV|fsTnI HGNC:11946|MIM:191043|Ensembl:ENSG00000130598|HPRD:01843|Vega:OTTHUMG00000012253 11 11p15.5 troponin I type 2 (skeletal, fast) protein-coding TNNI2 troponin I type 2 (skeletal, fast) O fast-twitch skeletal muscle troponin I|troponin I fast twitch 2|troponin I, fast skeletal muscle|troponin I, fast-twitch isoform|troponin I, fast-twitch skeletal muscle isoform|troponin I, skeletal, fast 20121230 -9606 7137 TNNI3 - CMD1FF|CMD2A|CMH7|RCM1|TNNC1|cTnI HGNC:11947|MIM:191044|Ensembl:ENSG00000129991|HPRD:11769|Vega:OTTHUMG00000180589 19 19q13.4 troponin I type 3 (cardiac) protein-coding TNNI3 troponin I type 3 (cardiac) O troponin I, cardiac muscle 20121230 -9606 7138 TNNT1 - ANM|NEM5|STNT|TNT|TNTS HGNC:11948|MIM:191041|Ensembl:ENSG00000105048|HPRD:01841|Vega:OTTHUMG00000180542 19 19q13.4 troponin T type 1 (skeletal, slow) protein-coding TNNT1 troponin T type 1 (skeletal, slow) O nemaline myopathy type 5|slow skeletal muscle troponin T|troponin T, slow skeletal muscle|troponin-T1, skeletal, slow 20121230 -9606 7139 TNNT2 - CMH2|CMPD2|LVNC6|RCM3|TnTC|cTnT HGNC:11949|MIM:191045|Ensembl:ENSG00000118194|HPRD:01844|Vega:OTTHUMG00000035733 1 1q32 troponin T type 2 (cardiac) protein-coding TNNT2 troponin T type 2 (cardiac) O cardiac muscle troponin T|cardiomyopathy, dilated 1D (autosomal dominant)|cardiomyopathy, hypertrophic 2|troponin T, cardiac muscle|troponin T2, cardiac 20121230 -9606 7140 TNNT3 - TNTF HGNC:11950|MIM:600692|Ensembl:ENSG00000130595|HPRD:02822|Vega:OTTHUMG00000012475 11 11p15.5 troponin T type 3 (skeletal, fast) protein-coding TNNT3 troponin T type 3 (skeletal, fast) O beta TnTF|beta-TnTF|fTnT|fast skeletal muscle troponin T|troponin T, fast skeletal muscle|troponin-T3, skeletal, fast 20121230 -9606 7141 TNP1 - TP1 HGNC:11951|MIM:190231|Ensembl:ENSG00000118245|HPRD:01830|Vega:OTTHUMG00000133057 2 2q35-q36 transition protein 1 (during histone to protamine replacement) protein-coding TNP1 transition protein 1 (during histone to protamine replacement) O STP-1|TP-1|spermatid nuclear transition protein 1 20121230 -9606 7142 TNP2 - TP2 HGNC:11952|MIM:190232|Ensembl:ENSG00000178279|HPRD:01831|Vega:OTTHUMG00000172315 16 16p13.13 transition protein 2 (during histone to protamine replacement) protein-coding TNP2 transition protein 2 (during histone to protamine replacement) O TP-2|nuclear transition protein 2 20121230 -9606 7143 TNR RP3-518E13.1 TN-R HGNC:11953|MIM:601995|Ensembl:ENSG00000116147|HPRD:03589|Vega:OTTHUMG00000034876 1 1q24 tenascin R protein-coding TNR tenascin R O janusin|restrictin|tenascin R (restrictin, janusin)|tenascin-R 20121230 -9606 7144 TNR1 - - HGNC:11954 X - Turner syndrome 1 unknown TNR1 Turner syndrome 1 O - 20110215 -9606 7145 TNS1 MSTP091 MST091|MST122|MST127|MSTP122|MSTP127|MXRA6|TNS HGNC:11973|MIM:600076|Ensembl:ENSG00000079308|HPRD:02512|Vega:OTTHUMG00000133056 2 2q35-q36 tensin 1 protein-coding TNS1 tensin 1 O Matrix-remodelling-associated protein 6|matrix-remodelling associated 6|tensin-1 20121230 -9606 7146 TNXA - D6S103E|HXBL|TNX|XA HGNC:11975 6 6p21.3 tenascin XA (pseudogene) pseudo TNXA tenascin XA (pseudogene) O - 20121230 -9606 7148 TNXB DAAP-193O6.1 EDS3|HXBL|TENX|TN-X|TNX|TNXB1|TNXB2|TNXBS|XB|XBS HGNC:11976|MIM:600985|Ensembl:ENSG00000168477|HPRD:02993|Vega:OTTHUMG00000031088 6 6p21.3 tenascin XB protein-coding TNXB tenascin XB O growth-inhibiting protein 45|hexabrachion-like protein|tenascin XB1|tenascin XB2|tenascin-X 20121230 -9606 7149 TOC - TEC|TOCG HGNC:11981|MIM:148500 17 - tylosis with oesophageal cancer unknown TOC tylosis with oesophageal cancer O - 20121220 -9606 7150 TOP1 RP3-511B24.1 TOPI HGNC:11986|MIM:126420|Ensembl:ENSG00000198900|HPRD:00535|Vega:OTTHUMG00000033057 20 20q12-q13.1 topoisomerase (DNA) I protein-coding TOP1 topoisomerase (DNA) I O DNA topoisomerase 1|type I DNA topoisomerase 20121230 -9606 7151 TOP1P1 - - HGNC:11987 1 1q23-q24 topoisomerase (DNA) I pseudogene 1 pseudo TOP1P1 topoisomerase (DNA) I pseudogene 1 O - 20121230 -9606 7152 TOP1P2 - - HGNC:11988 22 22q11.23 topoisomerase (DNA) I pseudogene 2 pseudo TOP1P2 topoisomerase (DNA) I pseudogene 2 O - 20121230 -9606 7153 TOP2A - TOP2|TP2A HGNC:11989|MIM:126430|Ensembl:ENSG00000131747|HPRD:00536|Vega:OTTHUMG00000155008 17 17q21-q22 topoisomerase (DNA) II alpha 170kDa protein-coding TOP2A topoisomerase (DNA) II alpha 170kDa O DNA gyrase|DNA topoisomerase (ATP-hydrolyzing)|DNA topoisomerase 2-alpha|DNA topoisomerase II, 170 kD|DNA topoisomerase II, alpha isozyme 20121230 -9606 7154 TRNAA1 - TRAN HGNC:12098|MIM:601431 6 6p22.1 transfer RNA alanine 1 (anticodon UGC) tRNA TRNAA1 transfer RNA alanine 1 (anticodon UGC) O - 20121230 -9606 7155 TOP2B - TOPIIB|top2beta HGNC:11990|MIM:126431|Ensembl:ENSG00000077097|HPRD:00537|Vega:OTTHUMG00000155596 3 3p24 topoisomerase (DNA) II beta 180kDa protein-coding TOP2B topoisomerase (DNA) II beta 180kDa O DNA topoisomerase 2-beta|DNA topoisomerase II beta|DNA topoisomerase II, 180 kD|DNA topoisomerase II, beta isozyme|U937 associated antigen|antigen MLAA-44|topo II beta|topoisomerase II beta|topoisomerase IIb 20121230 -9606 7156 TOP3A - TOP3 HGNC:11992|MIM:601243|Ensembl:ENSG00000177302|HPRD:03145|Vega:OTTHUMG00000059391 17 17p12-p11.2 topoisomerase (DNA) III alpha protein-coding TOP3A topoisomerase (DNA) III alpha O DNA topoisomerase 3-alpha|DNA topoisomerase III alpha|topo III-alpha 20121230 -9606 7157 TP53 - BCC7|LFS1|P53|TRP53 HGNC:11998|MIM:191170|Ensembl:ENSG00000141510|HPRD:01859|Vega:OTTHUMG00000162125 17 17p13.1 tumor protein p53 protein-coding TP53 tumor protein p53 O antigen NY-CO-13|cellular tumor antigen p53|p53 tumor suppressor|phosphoprotein p53|transformation-related protein 53 20121230 -9606 7158 TP53BP1 - 53BP1|p202 HGNC:11999|MIM:605230|Ensembl:ENSG00000067369|HPRD:05569|Vega:OTTHUMG00000059757 15 15q15-q21 tumor protein p53 binding protein 1 protein-coding TP53BP1 tumor protein p53 binding protein 1 O p53-binding protein 1|p53BP1|tumor protein 53-binding protein, 1|tumor protein p53-binding protein, 1|tumor suppressor p53-binding protein 1 20121230 -9606 7159 TP53BP2 - 53BP2|ASPP2|BBP|P53BP2|PPP1R13A HGNC:12000|MIM:602143|Ensembl:ENSG00000143514|HPRD:11803|Vega:OTTHUMG00000037379 1 1q41 tumor protein p53 binding protein, 2 protein-coding TP53BP2 tumor protein p53 binding protein, 2 O BCL2-binding protein|apoptosis-stimulating of p53 protein 2|apoptosis-stimulating protein of p53, 2|renal carcinoma antigen NY-REN-51|tumor suppressor p53-binding protein 2 20121230 -9606 7161 TP73 - P73 HGNC:12003|MIM:601990|Ensembl:ENSG00000078900|HPRD:03587|Vega:OTTHUMG00000000610 1 1p36.3 tumor protein p73 protein-coding TP73 tumor protein p73 O p53-like transcription factor|p53-related protein 20121230 -9606 7162 TPBG - 5T4|5T4AG|M6P1 HGNC:12004|MIM:190920|Ensembl:ENSG00000146242|HPRD:01837 6 6q14-q15 trophoblast glycoprotein protein-coding TPBG trophoblast glycoprotein O 5T4 oncofetal antigen|5T4 oncofetal trophoblast glycoprotein|5T4 oncotrophoblast glycoprotein 20121230 -9606 7163 TPD52 - D52|N8L|PC-1|PrLZ|hD52 HGNC:12005|MIM:604068|Ensembl:ENSG00000076554|HPRD:04963|Vega:OTTHUMG00000164565 8 8q21 tumor protein D52 protein-coding TPD52 tumor protein D52 O prostate and colon associated protein|prostate leucine zipper|protein N8 20121230 -9606 7164 TPD52L1 - D53|hD53 HGNC:12006|MIM:604069|Ensembl:ENSG00000111907|HPRD:07236|Vega:OTTHUMG00000015505 6 6q22-q23 tumor protein D52-like 1 protein-coding TPD52L1 tumor protein D52-like 1 O tumor protein D53 20121230 -9606 7165 TPD52L2 RP4-591C20.2 D54 HGNC:12007|MIM:603747|Ensembl:ENSG00000101150|HPRD:11947|Vega:OTTHUMG00000033009 20 20q13.2-q13.3 tumor protein D52-like 2 protein-coding TPD52L2 tumor protein D52-like 2 O HCCR-binding protein 2|tumor protein D54 20121230 -9606 7166 TPH1 - TPRH|TRPH HGNC:12008|MIM:191060|Ensembl:ENSG00000129167|HPRD:01846|Vega:OTTHUMG00000166421 11 11p15.3-p14 tryptophan hydroxylase 1 protein-coding TPH1 tryptophan hydroxylase 1 O L-tryptophan hydroxylase|indoleacetic acid-5-hydroxylase|tryptophan 5-hydroxylase 1|tryptophan 5-monooxygenase 1|tryptophan hydroxylase (tryptophan 5-monooxygenase) 20121230 -9606 7167 TPI1 - TIM|TPI HGNC:12009|MIM:190450|Ensembl:ENSG00000111669|HPRD:01833|Vega:OTTHUMG00000133767 12 12p13 triosephosphate isomerase 1 protein-coding TPI1 triosephosphate isomerase 1 O triose-phosphate isomerase|triosephosphate isomerase 20121230 -9606 7168 TPM1 - C15orf13|CMD1Y|CMH3|HTM-alpha|TMSA HGNC:12010|MIM:191010|Ensembl:ENSG00000140416|HPRD:01839|Vega:OTTHUMG00000132803 15 15q22.1 tropomyosin 1 (alpha) protein-coding TPM1 tropomyosin 1 (alpha) O alpha-tropomyosin|cardiomyopathy, hypertrophic 3|sarcomeric tropomyosin kappa|tropomyosin 1 (alpha) isoform 1|tropomyosin 1 (alpha) isoform 2|tropomyosin 1 (alpha) isoform 3|tropomyosin 1 (alpha) isoform 4|tropomyosin 1 (alpha) isoform 5|tropomyosin 1 (alpha) isoform 6|tropomyosin 1 (alpha) isoform 7|tropomyosin alpha-1 chain 20121230 -9606 7169 TPM2 RP11-112J3.4 AMCD1|DA1|DA2B|NEM4|TMSB HGNC:12011|MIM:190990|Ensembl:ENSG00000198467|HPRD:11768|Vega:OTTHUMG00000019878 9 9p13 tropomyosin 2 (beta) protein-coding TPM2 tropomyosin 2 (beta) O nemaline myopathy type 4|tropomyosin beta chain|tropomyosin-2 20121230 -9606 7170 TPM3 RP11-205M9.1 CFTD|NEM1|OK/SW-cl.5|TM-5|TM3|TM30|TM30nm|TM5|TPMsk3|TRK|hTM5|hscp30 HGNC:12012|MIM:191030|Ensembl:ENSG00000143549|HPRD:01840|Vega:OTTHUMG00000035853 1 1q21.2 tropomyosin 3 protein-coding TPM3 tropomyosin 3 O cytoskeletal tropomyosin TM30|heat-stable cytoskeletal protein 30 kDa|tropomyosin alpha-3 chain|tropomyosin gamma|tropomyosin-5 20121230 -9606 7171 TPM4 - - HGNC:12013|MIM:600317|Ensembl:ENSG00000167460|HPRD:11734|Vega:OTTHUMG00000182134 19 19p13.1 tropomyosin 4 protein-coding TPM4 tropomyosin 4 O TM30p1|tropomyosin alpha-4 chain|tropomyosin-4 20121230 -9606 7172 TPMT - - HGNC:12014|MIM:187680|Ensembl:ENSG00000137364|HPRD:01760|Vega:OTTHUMG00000014317 6 6p22.3 thiopurine S-methyltransferase protein-coding TPMT thiopurine S-methyltransferase O S-adenosyl-L-methionine:thiopurine S-methyltransferase 20121230 -9606 7173 TPO - MSA|TDH2A|TPX HGNC:12015|MIM:606765|Ensembl:ENSG00000115705|HPRD:06000|Vega:OTTHUMG00000090271 2 2p25 thyroid peroxidase protein-coding TPO thyroid peroxidase O thyroid microsomal antigen|thyroperoxidase 20121230 -9606 7174 TPP2 RP11-29B2.2 TPP-2 HGNC:12016|MIM:190470|Ensembl:ENSG00000134900|HPRD:01834|Vega:OTTHUMG00000017305 13 13q32-q33 tripeptidyl peptidase II protein-coding TPP2 tripeptidyl peptidase II O TPP-II|tripeptidyl aminopeptidase|tripeptidyl-peptidase 2|tripeptidyl-peptidase II 20121230 -9606 7175 TPR - - HGNC:12017|MIM:189940|Ensembl:ENSG00000047410|HPRD:08927|Vega:OTTHUMG00000035580 1 1q25 translocated promoter region, nuclear basket protein protein-coding TPR translocated promoter region, nuclear basket protein O nuclear pore complex-associated protein TPR|nucleoprotein TPR|translocated promoter region (to activated MET oncogene)|tumor potentiating region 20121230 -9606 7177 TPSAB1 - TPS1|TPS2|TPSB1 HGNC:12019|MIM:191080|Ensembl:ENSG00000172236|HPRD:01848|HPRD:01849|Vega:OTTHUMG00000090467 16 16p13.3 tryptase alpha/beta 1 protein-coding TPSAB1 tryptase alpha/beta 1 O mast cell alpha II tryptase|mast cell beta I tryptase|tryptase I|tryptase alpha II|tryptase alpha-1|tryptase alpha/beta-1|tryptase beta 1|tryptase beta I|tryptase beta-1|tryptase-1|tryptase-I|tryptase-III 20121230 -9606 7178 TPT1 RP11-290D2.1 HRF|TCTP|p02 HGNC:12022|MIM:600763|Ensembl:ENSG00000133112|HPRD:15979|Vega:OTTHUMG00000016845 13 13q14 tumor protein, translationally-controlled 1 protein-coding TPT1 tumor protein, translationally-controlled 1 O fortilin|histamine-releasing factor|p23|translationally-controlled tumor protein 20121230 -9606 7179 TPTE - CT44|PTEN2 HGNC:12023|MIM:604336|Ensembl:ENSG00000166157|HPRD:05064|Vega:OTTHUMG00000074127 21 21p11 transmembrane phosphatase with tensin homology protein-coding TPTE transmembrane phosphatase with tensin homology O PTEN-related tyrosine phosphatase|cancer/testis antigen 44|putative tyrosine-protein phosphatase TPTE|tensin, putative protein-tyrosine phosphatase|tumor antigen BJ-HCC-5 20121230 -9606 7180 CRISP2 - CRISP-2|CT36|GAPDL5|TPX1|TSP1 HGNC:12024|MIM:187430|Ensembl:ENSG00000124490|HPRD:01758|Vega:OTTHUMG00000014822 6 6p12.3 cysteine-rich secretory protein 2 protein-coding CRISP2 cysteine-rich secretory protein 2 O cancer/testis antigen 36|glyceraldehyde-3-phosphate dehydrogenase-like 5|testis specific protein 1 (probe H4-1 p3-1)|testis-specific protein TPX-1 20121230 -9606 7181 NR2C1 - TR2 HGNC:7971|MIM:601529|Ensembl:ENSG00000120798|HPRD:03318|Vega:OTTHUMG00000170131 12 12q22 nuclear receptor subfamily 2, group C, member 1 protein-coding NR2C1 nuclear receptor subfamily 2, group C, member 1 O TR2 nuclear hormone receptor|nuclear receptor subfamily 2 group C member 1|nuclear receptor subfamily 2, group C isoform|orphan nuclear receptor TR2 20121230 -9606 7182 NR2C2 - TAK1|TR2R1|TR4|hTAK1 HGNC:7972|MIM:601426|Ensembl:ENSG00000177463|HPRD:03253|Vega:OTTHUMG00000129839 3 3p25 nuclear receptor subfamily 2, group C, member 2 protein-coding NR2C2 nuclear receptor subfamily 2, group C, member 2 O Nuclear hormone receptor TR4|TR4 nuclear hormone receptor|nuclear receptor subfamily 2 group C member 2|orphan nuclear receptor TAK1|orphan nuclear receptor TR4|testicular nuclear receptor 4|testicular receptor 4 20121230 -9606 7183 TRNAC1 - TRC HGNC:12250 17 17q12 transfer RNA cysteine 1 (anticodon GCA) tRNA TRNAC1 transfer RNA cysteine 1 (anticodon GCA) O - 20110927 -9606 7184 HSP90B1 - ECGP|GP96|GRP94|TRA1 HGNC:12028|MIM:191175|Ensembl:ENSG00000166598|HPRD:01860|Vega:OTTHUMG00000170118 12 12q24.2-q24.3 heat shock protein 90kDa beta (Grp94), member 1 protein-coding HSP90B1 heat shock protein 90kDa beta (Grp94), member 1 O 94 kDa glucose-regulated protein|endoplasmin|endothelial cell (HBMEC) glycoprotein|heat shock protein 90 kDa beta member 1|stress-inducible tumor rejection antigen gp96|tumor rejection antigen (gp96) 1|tumor rejection antigen 1 20121230 -9606 7185 TRAF1 - EBI6|MGC:10353 HGNC:12031|MIM:601711|Ensembl:ENSG00000056558|HPRD:03418|Vega:OTTHUMG00000020578 9 9q33-q34 TNF receptor-associated factor 1 protein-coding TRAF1 TNF receptor-associated factor 1 O Epstein-Bar virus-induced protein 6 20121230 -9606 7186 TRAF2 - MGC:45012|TRAP|TRAP3 HGNC:12032|MIM:601895|Ensembl:ENSG00000127191|HPRD:03538|Vega:OTTHUMG00000020952 9 9q34 TNF receptor-associated factor 2 protein-coding TRAF2 TNF receptor-associated factor 2 O E3 ubiquitin-protein ligase TRAF2|tumor necrosis factor type 2 receptor associated protein 3|tumor necrosis factor type 2 receptor-associated protein 3 20121230 -9606 7187 TRAF3 - CAP-1|CAP1|CD40bp|CRAF1|IIAE5|LAP1 HGNC:12033|MIM:601896|Ensembl:ENSG00000131323|HPRD:03539|Vega:OTTHUMG00000171902 14 14q32.32 TNF receptor-associated factor 3 protein-coding TRAF3 TNF receptor-associated factor 3 O CD40 associated protein 1|CD40 binding protein|CD40 receptor associated factor 1|LMP1-associated protein 1 20121230 -9606 7188 TRAF5 RP11-318L16.2 MGC:39780|RNF84 HGNC:12035|MIM:602356|Ensembl:ENSG00000082512|HPRD:03834|Vega:OTTHUMG00000036997 1 1q32 TNF receptor-associated factor 5 protein-coding TRAF5 TNF receptor-associated factor 5 O RING finger protein 84 20121230 -9606 7189 TRAF6 - MGC:3310|RNF85 HGNC:12036|MIM:602355|Ensembl:ENSG00000175104|HPRD:03833|Vega:OTTHUMG00000166391 11 11p12 TNF receptor-associated factor 6, E3 ubiquitin protein ligase protein-coding TRAF6 TNF receptor-associated factor 6, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase TRAF6|RING finger protein 85|TNF receptor-associated factor 6|interleukin-1 signal transducer 20121230 -9606 7190 HSP90B2P - GRP94P1|GRP94b|HSP|HSPCP2|TRA1P1|TRAP1 HGNC:12099 15 15q26.3 heat shock protein 90kDa beta (Grp94), member 2, pseudogene pseudo HSP90B2P heat shock protein 90kDa beta (Grp94), member 2, pseudogene O - 20121230 -9606 7192 TRNAD1 - TRD HGNC:12251 1 1q23.3 transfer RNA aspartic acid 1 (anticodon GUC) tRNA TRNAD1 transfer RNA aspartic acid 1 (anticodon GUC) O - 20081007 -9606 7193 TRNAE1 - TRE|TRNE HGNC:12265|MIM:180640 1 1p36 transfer RNA glutamic acid 1 (anticodon UUC) tRNA TRNAE1 transfer RNA glutamic acid 1 (anticodon UUC) O - 20121230 -9606 7195 TRNAG1 - TRG1 MIM:189911 1 1pter-p34 tRNA glycine1 (anticodon CCC) tRNA - - - - 20121230 -9606 7196 TRNAG2 - TRG2 HGNC:12273|MIM:610407 17 17p13.1 transfer RNA glycine 2 (anticodon GCC) tRNA TRNAG2 transfer RNA glycine 2 (anticodon GCC) O - 20121230 -9606 7197 TRNAG3 - TRG3 HGNC:12274 19 19p13.3 transfer RNA glycine 3 (anticodon UCC) tRNA TRNAG3 transfer RNA glycine 3 (anticodon UCC) O - 20121230 -9606 7198 TRNAG5 - TRG5|TRGL1 HGNC:12282 16 16q22.1 transfer RNA glycine 5 (anticodon GCC) tRNA TRNAG5 transfer RNA glycine 5 (anticodon GCC) O - 20121230 -9606 7200 TRH - - HGNC:12298|MIM:613879|Ensembl:ENSG00000170893|HPRD:08944|Vega:OTTHUMG00000159634 3 3q13.3-q21 thyrotropin-releasing hormone protein-coding TRH thyrotropin-releasing hormone O prothyroliberin 20121230 -9606 7201 TRHR - TRH-R HGNC:12299|MIM:188545|Ensembl:ENSG00000174417|HPRD:11767|Vega:OTTHUMG00000164910 8 8q23 thyrotropin-releasing hormone receptor protein-coding TRHR thyrotropin-releasing hormone receptor O thyroliberin receptor 20121230 -9606 7202 TRNAI1 - TRI HGNC:12300 6 6p22.1 transfer RNA isoleucine 1 (anticodon AAU) tRNA TRNAI1 transfer RNA isoleucine 1 (anticodon AAU) O - 20121230 -9606 7203 CCT3 RP11-443G18.6 CCT-gamma|CCTG|PIG48|TCP-1-gamma|TRIC5 HGNC:1616|MIM:600114|Ensembl:ENSG00000163468|HPRD:08969|Vega:OTTHUMG00000024061 1 1q23 chaperonin containing TCP1, subunit 3 (gamma) protein-coding CCT3 chaperonin containing TCP1, subunit 3 (gamma) O T-complex protein 1 subunit gamma|T-complex protein 1, gamma subunit|TCP1 (t-complex-1) ring complex, polypeptide 5|hTRiC5 20121230 -9606 7204 TRIO - ARHGEF23|tgat HGNC:12303|MIM:601893|Ensembl:ENSG00000038382|HPRD:03537|Vega:OTTHUMG00000131057 5 5p15.2 trio Rho guanine nucleotide exchange factor protein-coding TRIO trio Rho guanine nucleotide exchange factor O PTPRF-interacting protein|triple functional domain (PTPRF interacting)|triple functional domain protein 20121230 -9606 7205 TRIP6 tcag7.1300 OIP-1|OIP1|TRIP-6|TRIP6i2|ZRP-1 HGNC:12311|MIM:602933|Ensembl:ENSG00000087077|HPRD:04242|Vega:OTTHUMG00000157029 7 7q22 thyroid hormone receptor interactor 6 protein-coding TRIP6 thyroid hormone receptor interactor 6 O OPA-interacting protein 1|TR-interacting protein 6|thyroid hormone receptor interacting protein 6|thyroid receptor-interacting protein 6|zyxin related protein 1 20121230 -9606 7206 TRNAK1 - TRK1 HGNC:12314|MIM:189918 17 17p13.1 transfer RNA lysine 1 (anticodon UUU) tRNA TRNAK1 transfer RNA lysine 1 (anticodon UUU) O - 20121230 -9606 7207 TRNAL1 - TRL1|TRNP1 HGNC:12315|MIM:189932 14 14q11.2 transfer RNA leucine 1 (anticodon AAG) tRNA TRNAL1 transfer RNA leucine 1 (anticodon AAG) O - 20121230 -9606 7208 TRNAL2 - TRL2 HGNC:12316|MIM:189920 17 17p13.1 transfer RNA leucine 2 (anticodon UAG) tRNA TRNAL2 transfer RNA leucine 2 (anticodon UAG) O - 20121230 -9606 7209 TRNAL47P - TRLP1 HGNC:12317 6 6p22.1 transfer RNA leucine 47 (anticodon AAG) pseudogene pseudo TRNAL47P transfer RNA leucine 47 (anticodon AAG) pseudogene O - 20121230 -9606 7210 TRNAM1 - RNTMI1|RNTMI2|RNTMT1|TRM1|TRM2|TRMI2|TRNAMI2 HGNC:12318|MIM:180621 6 6p22.1 transfer RNA methionine 1 (anticodon CAU) tRNA TRNAM1 transfer RNA methionine 1 (anticodon CAU) O - 20121230 -9606 7211 TRMEP1 - - HGNC:12321 6 6p22.1 tRNA methionine elongator pseudogene 1 pseudo TRMEP1 tRNA methionine elongator pseudogene 1 O - 20121230 -9606 7212 TRNAM2 - RNTMI|RNTMI2|TRM1|TRMI1|TRNAMI1|TRNAMI2 HGNC:12322|MIM:180620 6 6p22.1 transfer RNA methionine 2 (anticodon CAU) tRNA TRNAM2 transfer RNA methionine 2 (anticodon CAU) O - 20121230 -9606 7214 TRNAN1 - RNN|TRN|TRN1 HGNC:12324|MIM:189880 1 1p36.1 transfer RNA asparagine 1 (anticodon GUU) tRNA TRNAN1 transfer RNA asparagine 1 (anticodon GUU) O - 20121230 -9606 7216 TRO RP6-14C6.1 MAGE-d3|MAGED3 HGNC:12326|MIM:300132|Ensembl:ENSG00000067445|HPRD:02134|Vega:OTTHUMG00000021640 X Xp11.22-p11.21 trophinin protein-coding TRO trophinin O MAGE superfamily protein|MAGE-D3 antigen|magphinin|melanoma antigen, family D, 3 20121230 -9606 7217 TRNAP1 - TRNP1|TRP1 HGNC:12330|MIM:189930 14 14q11.1 transfer RNA proline 1 (anticodon AGG) tRNA TRNAP1 transfer RNA proline 1 (anticodon AGG) O - 20121230 -9606 7218 TRNAP2 - TRNP1|TRP2 HGNC:12331|MIM:189931 14 14q11.2 transfer RNA proline 2 (anticodon AGG) tRNA TRNAP2 transfer RNA proline 2 (anticodon AGG) O - 20121230 -9606 7219 TRNAP3 - TRP3 HGNC:12332|MIM:189912 5 5q35.3 transfer RNA proline 3 (anticodon UGG) tRNA TRNAP3 transfer RNA proline 3 (anticodon UGG) O - 20121230 -9606 7220 TRPC1 - HTRP-1|TRP1 HGNC:12333|MIM:602343|Ensembl:ENSG00000144935|HPRD:11894|Vega:OTTHUMG00000159301 3 3q23 transient receptor potential cation channel, subfamily C, member 1 protein-coding TRPC1 transient receptor potential cation channel, subfamily C, member 1 O TRP-1|short transient receptor potential channel 1|transient receptor potential canonical 1|transient receptor protein 1 20121230 -9606 7221 TRPC2 - - HGNC:12334 11 11p15.4-p15.3 transient receptor potential cation channel, subfamily C, member 2, pseudogene pseudo TRPC2 transient receptor potential cation channel, subfamily C, member 2, pseudogene O - 20121230 -9606 7222 TRPC3 - TRP3 HGNC:12335|MIM:602345|Ensembl:ENSG00000138741|HPRD:15999|Vega:OTTHUMG00000133069 4 4q27 transient receptor potential cation channel, subfamily C, member 3 protein-coding TRPC3 transient receptor potential cation channel, subfamily C, member 3 O hTrp-3|short transient receptor potential channel 3|transient receptor protein 3 20121230 -9606 7223 TRPC4 RP11-10M8.1 HTRP-4|HTRP4|TRP4 HGNC:12336|MIM:603651|Ensembl:ENSG00000133107|HPRD:09154|Vega:OTTHUMG00000016752 13 13q13.3 transient receptor potential cation channel, subfamily C, member 4 protein-coding TRPC4 transient receptor potential cation channel, subfamily C, member 4 O short transient receptor potential channel 4|trp-related protein 4 20121230 -9606 7224 TRPC5 RP1-68D15.2 TRP5 HGNC:12337|MIM:300334|Ensembl:ENSG00000072315|HPRD:02273|Vega:OTTHUMG00000022212 X Xq23 transient receptor potential cation channel, subfamily C, member 5 protein-coding TRPC5 transient receptor potential cation channel, subfamily C, member 5 O TRP-5|hTRP5|short transient receptor potential channel 5|transient receptor potential channel 5|transient receptor protein 5 20121230 -9606 7225 TRPC6 - FSGS2|TRP6 HGNC:12338|MIM:603652|Ensembl:ENSG00000137672|HPRD:04710|Vega:OTTHUMG00000167483 11 11q22.1 transient receptor potential cation channel, subfamily C, member 6 protein-coding TRPC6 transient receptor potential cation channel, subfamily C, member 6 O TRP-6|short transient receptor potential channel 6|transient receptor protein 6 20121230 -9606 7226 TRPM2 - EREG1|KNP3|LTRPC2|NUDT9H|NUDT9L1|TRPC7 HGNC:12339|MIM:603749|Ensembl:ENSG00000142185|HPRD:04777|Vega:OTTHUMG00000040840 21 21q22.3 transient receptor potential cation channel, subfamily M, member 2 protein-coding TRPM2 transient receptor potential cation channel, subfamily M, member 2 O LTrpC-2|estrogen-responsive element-associated gene 1 protein|long transient receptor potential channel 2|transient receptor potential cation channel subfamily M member 2|transient receptor potential channel 7 20121230 -9606 7227 TRPS1 - GC79|LGCR HGNC:12340|MIM:604386|Ensembl:ENSG00000104447|HPRD:05091|Vega:OTTHUMG00000142829 8 8q24.12 trichorhinophalangeal syndrome I protein-coding TRPS1 trichorhinophalangeal syndrome I O tricho-rhino-phalangeal syndrome type I protein|zinc finger protein GC79|zinc finger transcription factor Trps1 20121230 -9606 7228 TRNAQ1 - TRQ1 HGNC:12341|MIM:189919 17 17p13.1 transfer RNA glutamine 1 (anticodon CUG) tRNA TRNAQ1 transfer RNA glutamine 1 (anticodon CUG) O - 20121230 -9606 7229 TRNAQ2 - TRQ2 HGNC:12342|MIM:189923 17 17q21.32 transfer RNA glutamine 2 (anticodon UUG) tRNA TRNAQ2 transfer RNA glutamine 2 (anticodon UUG) O - 20121230 -9606 7230 TRNAR1 - TRR1 HGNC:12343|MIM:610406 17 17p13.1 transfer RNA arginine 1 (anticodon UCU) tRNA TRNAR1 transfer RNA arginine 1 (anticodon UCU) O - 20121230 -9606 7231 TRNAR2 - TRR2 HGNC:12344 6 6p21.3 transfer RNA arginine 2 (anticodon ACG) tRNA TRNAR2 transfer RNA arginine 2 (anticodon ACG) O - 20121230 -9606 7232 TRNAR3 - TRR3 HGNC:12345|MIM:601432 6 6p22.1 transfer RNA arginine 3 (anticodon UCG) tRNA TRNAR3 transfer RNA arginine 3 (anticodon UCG) O - 20121230 -9606 7233 TRNAR4 - TRR4 HGNC:12346 17 17q24.2 transfer RNA arginine 4 (anticodon CCG) tRNA TRNAR4 transfer RNA arginine 4 (anticodon CCG) O - 20121230 -9606 7234 TRNAU1 - TRSP|tRNA(Sec) HGNC:12348|MIM:165060 19 19q13.2-q13.3 transfer RNA selenocysteine 1 (anticodon UCA) tRNA TRNAU1 transfer RNA selenocysteine 1 (anticodon UCA) O - 20121230 -9606 7235 TRNAU2 - TRSP2|TRSPP1 HGNC:12349 22 22q11 transfer RNA selenocysteine 2 (anticodon UCA) tRNA TRNAU2 transfer RNA selenocysteine 2 (anticodon UCA) O - 20121230 -9606 7236 TRNAT1 - TRT1 HGNC:12350|MIM:189913 5 5q35.3 transfer RNA threonine 1 (anticodon UGU) tRNA TRNAT1 transfer RNA threonine 1 (anticodon UGU) O - 20121230 -9606 7237 TRNAT2 - TRT2 HGNC:12351|MIM:189933 14 14q11.2 transfer RNA threonine 2 (anticodon UGU) tRNA TRNAT2 transfer RNA threonine 2 (anticodon UGU) O - 20121230 -9606 7238 TRNAT3 - TRT3 HGNC:12352 17 17q24.1 transfer RNA threonine 3 (anticodon AGU) tRNA TRNAT3 transfer RNA threonine 3 (anticodon AGU) O - 20080915 -9606 7239 TRNAV1 - TRV|TRV1 HGNC:12353|MIM:189921 5 5q35.3 transfer RNA valine 1 (anticodon AAC) tRNA TRNAV1 transfer RNA valine 1 (anticodon AAC) O - 20121230 -9606 7240 TRNAV2 - TRV2 HGNC:12354|MIM:612995 5 5q35.3 transfer RNA valine 2 (anticodon CAC) tRNA TRNAV2 transfer RNA valine 2 (anticodon CAC) O - 20121230 -9606 7241 TRNAV3 - TRV3 HGNC:12355 5 - transfer RNA valine 3 (anticodon AAC) tRNA TRNAV3 transfer RNA valine 3 (anticodon AAC) O - 20121230 -9606 7246 TRNAW1 - TRW HGNC:12360 11 11p11.2 transfer RNA tryptophan 1 (anticodon CCA) tRNA TRNAW1 transfer RNA tryptophan 1 (anticodon CCA) O - 20080915 -9606 7247 TSN - BCLF-1|C3PO|RCHF1|REHF-1|TBRBP|TRSLN HGNC:12379|MIM:600575|Ensembl:ENSG00000211460|HPRD:08993|Vega:OTTHUMG00000153334 2 2q21.1 translin protein-coding TSN translin O component 3 of promoter of RISC|recombination hotspot associated factor|recombination hotspot-binding protein|testis brain-RNA binding protein 20121230 -9606 7248 TSC1 - LAM|TSC HGNC:12362|MIM:605284|Ensembl:ENSG00000165699|HPRD:05594|Vega:OTTHUMG00000020844 9 9q34 tuberous sclerosis 1 protein-coding TSC1 tuberous sclerosis 1 O hamartin|tuberous sclerosis 1 protein|tumor suppressor 20121230 -9606 7249 TSC2 - LAM|TSC4 HGNC:12363|MIM:191092|Ensembl:ENSG00000103197|HPRD:01850|Vega:OTTHUMG00000128745 16 16p13.3 tuberous sclerosis 2 protein-coding TSC2 tuberous sclerosis 2 O tuberin|tuberous sclerosis 2 protein 20121230 -9606 7251 TSG101 - TSG10|VPS23 HGNC:15971|MIM:601387|Ensembl:ENSG00000074319|HPRD:03229|Vega:OTTHUMG00000167725 11 11p15 tumor susceptibility gene 101 protein-coding TSG101 tumor susceptibility gene 101 O ESCRT-I complex subunit TSG101|tumor susceptibility gene 101 protein|tumor susceptibility protein 20121230 -9606 7252 TSHB - TSH-B|TSH-BETA HGNC:12372|MIM:188540|Ensembl:ENSG00000134200|HPRD:11766 1 1p13 thyroid stimulating hormone, beta protein-coding TSHB thyroid stimulating hormone, beta O thyroid-stimulating hormone subunit beta|thyrotropin beta chain|thyrotropin beta subunit|thyrotropin subunit beta 20121230 -9606 7253 TSHR - CHNG1|LGR3|hTSHR-I HGNC:12373|MIM:603372|Ensembl:ENSG00000165409|HPRD:04537|Vega:OTTHUMG00000171429 14 14q31 thyroid stimulating hormone receptor protein-coding TSHR thyroid stimulating hormone receptor O seven transmembrane helix receptor|thyrotropin receptor|thyrotropin receptor-I, hTSHR-I 20121230 -9606 7254 TSHRL1 - - HGNC:12374 1 1q thyroid stimulating hormone receptor-like 1 protein-coding TSHRL1 thyroid stimulating hormone receptor-like 1 O - 20080828 -9606 7255 TSHRL2 - - HGNC:12375 8 - thyroid stimulating hormone receptor-like 2 protein-coding TSHRL2 thyroid stimulating hormone receptor-like 2 O - 20080828 -9606 7256 TSHRL3 - - HGNC:12376 10 - thyroid stimulating hormone receptor-like 3 protein-coding TSHRL3 thyroid stimulating hormone receptor-like 3 O - 20080828 -9606 7257 TSNAX RP11-17H4.1 TRAX HGNC:12380|MIM:602964|Ensembl:ENSG00000116918|HPRD:04270|Vega:OTTHUMG00000039486 1 1q42.1 translin-associated factor X protein-coding TSNAX translin-associated factor X O translin-associated protein X|translin-like protein 20121230 -9606 7258 TSPY1 - CT78|DYS14|TSPY|pJA923 HGNC:12381|MIM:480100|Ensembl:ENSG00000258992|HPRD:11852|Vega:OTTHUMG00000171452 Y Yp11.2 testis specific protein, Y-linked 1 protein-coding TSPY1 testis specific protein, Y-linked 1 O cancer/testis antigen 78|testis-specific Y-encoded protein 1 20121212 -9606 7259 TSPYL1 - TSPYL HGNC:12382|MIM:604714|Ensembl:ENSG00000189241|Vega:OTTHUMG00000015427 6 6q22.1 TSPY-like 1 protein-coding TSPYL1 TSPY-like 1 O TSPY-like protein 1|testis-specific Y-encoded-like protein 1|testis-specific-like protein, Y encoded 20121230 -9606 7260 TSSC1 - - HGNC:12383|MIM:608998|Ensembl:ENSG00000032389|HPRD:10287|Vega:OTTHUMG00000090329 2 2p25.3 tumor suppressing subtransferable candidate 1 protein-coding TSSC1 tumor suppressing subtransferable candidate 1 O protein TSSC1|tumor-suppressing STF cDNA 1 protein|tumor-suppressing subchromosomal transferable fragment candidate gene 1 protein 20121230 -9606 7261 TSSC2 - - HGNC:12384|MIM:608999 11 11p15.4 tumor suppressing subtransferable candidate 2 pseudogene pseudo TSSC2 tumor suppressing subtransferable candidate 2 pseudogene O - 20121021 -9606 7262 PHLDA2 - BRW1C|BWR1C|HLDA2|IPL|TSSC3 HGNC:12385|MIM:602131|Ensembl:ENSG00000181649|HPRD:03679|Vega:OTTHUMG00000010926 11 11p15.4 pleckstrin homology-like domain, family A, member 2 protein-coding PHLDA2 pleckstrin homology-like domain, family A, member 2 O beckwith-Wiedemann syndrome chromosomal region 1 candidate gene C protein|imprinted in placenta and liver protein|p17-BWR1C|p17-Beckwith-Wiedemann region 1 C|p17-Beckwith-Wiedemann region 1C|pleckstrin homology-like domain family A member 2|tumor suppressing subchromosomal transferable fragment cDNA 3|tumor suppressing subtransferable candidate 3|tumor-suppressing STF cDNA 3 protein|tumor-suppressing subchromosomal transferable fragment candidate gene 3 protein|tumor-supressing STF cDNA 3 20121230 -9606 7263 TST LL22NC01-146D10.3 RDS HGNC:12388|MIM:180370|Ensembl:ENSG00000128311|HPRD:01583|Vega:OTTHUMG00000150533 22 22q13.1 thiosulfate sulfurtransferase (rhodanese) protein-coding TST thiosulfate sulfurtransferase (rhodanese) O thiosulfate sulfurtransferase 20121230 -9606 7264 TSTA3 - FX|P35B|SDR4E1 HGNC:12390|MIM:137020|Ensembl:ENSG00000104522|HPRD:00654|Vega:OTTHUMG00000165159 8 8q24.3 tissue specific transplantation antigen P35B protein-coding TSTA3 tissue specific transplantation antigen P35B O 3-5 epimerase/4-reductase|GDP-4-keto-6-deoxy-D-mannose epimerase-reductase|GDP-4-keto-6-deoxy-D-mannose-3,5-epimerase-4-reductase|GDP-L-fucose synthase|red cell NADP(H)-binding protein|short chain dehydrogenase/reductase family 4E, member 1|tissue specific transplantation antigen 3 20121230 -9606 7265 TTC1 - TPR1 HGNC:12391|MIM:601963|Ensembl:ENSG00000113312|HPRD:11881|Vega:OTTHUMG00000130326 5 5q33.3 tetratricopeptide repeat domain 1 protein-coding TTC1 tetratricopeptide repeat domain 1 O TPR repeat protein 1|tetratricopeptide repeat protein 1 20121230 -9606 7266 DNAJC7 - DJ11|DJC7|TPR2|TTC2 HGNC:12392|MIM:601964|Ensembl:ENSG00000168259|Vega:OTTHUMG00000180862 17 17q11.2 DnaJ (Hsp40) homolog, subfamily C, member 7 protein-coding DNAJC7 DnaJ (Hsp40) homolog, subfamily C, member 7 O TPR repeat protein 2|dnaJ homolog subfamily C member 7|tetratricopeptide repeat domain 2|tetratricopeptide repeat protein 2 20121230 -9606 7267 TTC3 - DCRR1|RNF105|TPRDIII HGNC:12393|MIM:602259|Ensembl:ENSG00000182670|HPRD:03773|Vega:OTTHUMG00000086654 21 21q22.2 tetratricopeptide repeat domain 3 protein-coding TTC3 tetratricopeptide repeat domain 3 O E3 ubiquitin-protein ligase TTC3|RING finger protein 105|TPR repeat protein 3|TPR repeat protein D|tetratricopeptide repeat protein 3 20121230 -9606 7268 TTC4 RP5-1043G4.2 - HGNC:12394|MIM:606753|Ensembl:ENSG00000243725|HPRD:08417|Vega:OTTHUMG00000009914 1 1p32.3 tetratricopeptide repeat domain 4 protein-coding TTC4 tetratricopeptide repeat domain 4 O TPR repeat protein 4|tetratricopeptide repeat protein 4 20121230 -9606 7270 TTF1 - TTF-1|TTF-I HGNC:12397|MIM:600777|Ensembl:ENSG00000125482|HPRD:02866|Vega:OTTHUMG00000020836 9 9q34.13 transcription termination factor, RNA polymerase I protein-coding TTF1 transcription termination factor, RNA polymerase I O transcription termination factor 1 20121230 -9606 7271 TTIM1 - - HGNC:12400|MIM:147830 7 7p12-cen T-cell tumor invasion and metastasis 1 unknown TTIM1 T-cell tumor invasion and metastasis 1 O - 20080828 -9606 7272 TTK RP3-357D13.2 CT96|ESK|MPS1|MPS1L1|PYT HGNC:12401|MIM:604092|Ensembl:ENSG00000112742|HPRD:04973|Vega:OTTHUMG00000015088 6 6q13-q21 TTK protein kinase protein-coding TTK TTK protein kinase O cancer/testis antigen 96|dual specificity protein kinase TTK|monopolar spindle 1-like 1|phosphotyrosine picked threonine kinase|phosphotyrosine picked threonine-protein kinase 20121230 -9606 7273 TTN - CMD1G|CMH9|CMPD4|EOMFC|HMERF|LGMD2J|MYLK5|TMD HGNC:12403|MIM:188840|Ensembl:ENSG00000155657|HPRD:01787|Vega:OTTHUMG00000154448 2 2q31 titin protein-coding TTN titin O connectin|rhabdomyosarcoma antigen MU-RMS-40.14 20121230 -9606 7274 TTPA - ATTP|AVED|TTP1|alphaTTP HGNC:12404|MIM:600415|Ensembl:ENSG00000137561|HPRD:02685|Vega:OTTHUMG00000164367 8 8q12.3 tocopherol (alpha) transfer protein protein-coding TTPA tocopherol (alpha) transfer protein O alpha-TTP|alpha-tocopherol transfer protein|tocopherol (alpha) transfer protein (ataxia (Friedreich-like) with vitamin E deficiency) 20121230 -9606 7275 TUB - rd5 HGNC:12406|MIM:601197|Ensembl:ENSG00000166402|HPRD:03121|Vega:OTTHUMG00000165690 11 11p15.5 tubby homolog (mouse) protein-coding TUB tubby homolog (mouse) O tubby homologue|tubby protein homolog 20121230 -9606 7276 TTR - CTS|CTS1|HsT2651|PALB|TBPA HGNC:12405|MIM:176300|Ensembl:ENSG00000118271|HPRD:01447|Vega:OTTHUMG00000131984 18 18q12.1 transthyretin protein-coding TTR transthyretin O ATTR|carpal tunnel syndrome 1|prealbumin, amyloidosis type I|thyroxine-binding prealbumin 20121230 -9606 7277 TUBA4A - H2-ALPHA|TUBA1 HGNC:12407|MIM:191110|Ensembl:ENSG00000127824|HPRD:01851|Vega:OTTHUMG00000133126 2 2q35 tubulin, alpha 4a protein-coding TUBA4A tubulin, alpha 4a O tubulin H2-alpha|tubulin alpha-1 chain|tubulin alpha-4A chain|tubulin, alpha 1 (testis specific) 20121230 -9606 7278 TUBA3C - TUBA2|bA408E5.3 HGNC:12408|MIM:602528|HPRD:03958 13 13q11 tubulin, alpha 3c protein-coding TUBA3C tubulin, alpha 3c O alpha-tubulin 2|alpha-tubulin 3C/D|tubulin alpha-2 chain|tubulin alpha-3C/D chain|tubulin, alpha 2 20121230 -9606 7280 TUBB2A - TUBB|TUBB2|dJ40E16.7 HGNC:12412|Ensembl:ENSG00000137267|HPRD:01852|Vega:OTTHUMG00000014135 6 6p25 tubulin, beta 2A class IIa protein-coding TUBB2A tubulin, beta 2A class IIa O class IIa beta-tubulin|tubulin beta-2A chain|tubulin, beta polypeptide 2 20121230 -9606 7283 TUBG1 - GCP-1|TUBG|TUBGCP1 HGNC:12417|MIM:191135|Ensembl:ENSG00000131462|HPRD:01853|Vega:OTTHUMG00000180277 17 17q21 tubulin, gamma 1 protein-coding TUBG1 tubulin, gamma 1 O gamma-1-tubulin|gamma-tubulin complex component 1|tubulin gamma-1 chain|tubulin, gamma polypeptide 20121230 -9606 7284 TUFM - COXPD4|EF-TuMT|EFTU|P43 HGNC:12420|MIM:602389|Ensembl:ENSG00000178952|HPRD:03861|Vega:OTTHUMG00000097039 16 16p11.2 Tu translation elongation factor, mitochondrial protein-coding TUFM Tu translation elongation factor, mitochondrial O EF-Tu|elongation factor Tu, mitochondrial 20121230 -9606 7286 TUFT1 RP11-74C1.1 - HGNC:12422|MIM:600087|Ensembl:ENSG00000143367|HPRD:02516|Vega:OTTHUMG00000012536 1 1q21 tuftelin 1 protein-coding TUFT1 tuftelin 1 O tuftelin 20121230 -9606 7287 TULP1 RP3-340B19.1 LCA15|RP14|TUBL1 HGNC:12423|MIM:602280|Ensembl:ENSG00000112041|HPRD:03788|Vega:OTTHUMG00000014575 6 6p21.3 tubby like protein 1 protein-coding TULP1 tubby like protein 1 O tubby-related protein 1 20121230 -9606 7288 TULP2 - CT65|TUBL2 HGNC:12424|MIM:602309|Ensembl:ENSG00000104804|HPRD:03813|Vega:OTTHUMG00000164406 19 19q13.1 tubby like protein 2 protein-coding TULP2 tubby like protein 2 O cancer testis antigen 65|cancer/testis antigen 65|tubby-like protein 2|tubby-related protein 2 20121230 -9606 7289 TULP3 - TUBL3 HGNC:12425|MIM:604730|Ensembl:ENSG00000078246|HPRD:05292|Vega:OTTHUMG00000168152 12 12p13.3 tubby like protein 3 protein-coding TULP3 tubby like protein 3 O tubby-like protein 3|tubby-related protein 3 20121230 -9606 7290 HIRA - DGCR1|TUP1|TUPLE1 HGNC:4916|MIM:600237|Ensembl:ENSG00000100084|HPRD:02583|Vega:OTTHUMG00000150134 22 22q11.21 HIR histone cell cycle regulation defective homolog A (S. cerevisiae) protein-coding HIRA HIR histone cell cycle regulation defective homolog A (S. cerevisiae) O DiGeorge critical region gene 1|TUP1-like enhancer of split protein 1|protein HIRA 20121230 -9606 7291 TWIST1 - ACS3|BPES2|BPES3|CRS1|SCS|TWIST|bHLHa38 HGNC:12428|MIM:601622|Ensembl:ENSG00000122691|HPRD:03374|Vega:OTTHUMG00000090821 7 7p21.2 twist basic helix-loop-helix transcription factor 1 protein-coding TWIST1 twist basic helix-loop-helix transcription factor 1 O B-HLH DNA binding protein|H-twist|TWIST homolog of drosophila|class A basic helix-loop-helix protein 38|twist homolog 1|twist-related protein 1 20121230 -9606 7292 TNFSF4 - CD134L|CD252|GP34|OX-40L|OX4OL|TXGP1 HGNC:11934|MIM:603594|Ensembl:ENSG00000117586|HPRD:04668|Vega:OTTHUMG00000034838 1 1q25 tumor necrosis factor (ligand) superfamily, member 4 protein-coding TNFSF4 tumor necrosis factor (ligand) superfamily, member 4 O CD134 ligand|OX40 antigen ligand|OX40L|TAX transcriptionally-activated glycoprotein 1|glycoprotein Gp34|tax-transcriptionally activated glycoprotein 1 (34kD)|tumor necrosis factor ligand superfamily member 4 20121230 -9606 7293 TNFRSF4 RP5-902P8.3 ACT35|CD134|OX40|TXGP1L HGNC:11918|MIM:600315|Ensembl:ENSG00000186827|HPRD:02636|Vega:OTTHUMG00000001415 1 1p36 tumor necrosis factor receptor superfamily, member 4 protein-coding TNFRSF4 tumor necrosis factor receptor superfamily, member 4 O ACT35 antigen|ATC35 antigen|CD134 antigen|OX40 antigen|OX40 cell surface antigen|OX40 homologue|OX40L receptor|TAX transcriptionally-activated glycoprotein 1 receptor|lymphoid activation antigene ACT35|tax-transcriptionally activated glycoprotein 1 receptor|tumor necrosis factor receptor superfamily member 4 20121230 -9606 7294 TXK - BTKL|PSCTK5|PTK4|RLK|TKL HGNC:12434|MIM:600058|Ensembl:ENSG00000074966|HPRD:02505|Vega:OTTHUMG00000102065 4 4p12 TXK tyrosine kinase protein-coding TXK TXK tyrosine kinase O PTK4 protein tyrosine kinase 4|protein-tyrosine kinase 4|resting lymphocyte kinase|tyrosine kinase|tyrosine-protein kinase TXK 20121230 -9606 7295 TXN RP11-427L11.1 TRDX|TRX|TRX1 HGNC:12435|MIM:187700|Ensembl:ENSG00000136810|HPRD:01761|Vega:OTTHUMG00000020480 9 9q31 thioredoxin protein-coding TXN thioredoxin O ADF|ATL-derived factor|SASP|TXN delta 3|surface-associated sulphydryl protein|thioredoxin delta 3 20121230 -9606 7296 TXNRD1 - GRIM-12|TR|TR1|TRXR1|TXNR HGNC:12437|MIM:601112|Ensembl:ENSG00000198431|HPRD:03068|Vega:OTTHUMG00000166481 12 12q23-q24.1 thioredoxin reductase 1 protein-coding TXNRD1 thioredoxin reductase 1 O KM-102-derived reductase-like factor|gene associated with retinoic and IFN-induced mortality 12 protein|gene associated with retinoic and interferon-induced mortality 12 protein|oxidoreductase|thioredoxin reductase 1, cytoplasmic|thioredoxin reductase GRIM-12|thioredoxin reductase TR1 20121230 -9606 7297 TYK2 - JTK1 HGNC:12440|MIM:176941|Ensembl:ENSG00000105397|HPRD:01490|Vega:OTTHUMG00000166373 19 19p13.2 tyrosine kinase 2 protein-coding TYK2 tyrosine kinase 2 O non-receptor tyrosine-protein kinase TYK2 20121230 -9606 7298 TYMS OK/SW-cl.29 HST422|TMS|TS HGNC:12441|MIM:188350|Ensembl:ENSG00000176890|HPRD:01774|Vega:OTTHUMG00000131473 18 18p11.32 thymidylate synthetase protein-coding TYMS thymidylate synthetase O TSase|thymidylate synthase 20121230 -9606 7299 TYR - CMM8|OCA1A|OCAIA|SHEP3 HGNC:12442|MIM:606933|Ensembl:ENSG00000077498|HPRD:06086|Vega:OTTHUMG00000167294 11 11q14-q21 tyrosinase protein-coding TYR tyrosinase O LB24-AB|SK29-AB|monophenol monooxygenase|oculocutaneous albinism IA|tumor rejection antigen AB 20121230 -9606 7300 TYRL - - HGNC:12443|MIM:191270 11 11p11.2 tyrosinase-like (pseudogene) pseudo TYRL tyrosinase-like (pseudogene) O - 20121230 -9606 7301 TYRO3 - BYK|Dtk|RSE|Sky|Tif HGNC:12446|MIM:600341|Ensembl:ENSG00000092445|HPRD:02641|Vega:OTTHUMG00000130341 15 15q15 TYRO3 protein tyrosine kinase protein-coding TYRO3 TYRO3 protein tyrosine kinase O tyrosine-protein kinase DTK|tyrosine-protein kinase RSE|tyrosine-protein kinase SKY|tyrosine-protein kinase byk|tyrosine-protein kinase receptor TYRO3 20121230 -9606 7302 TYRO3P - - HGNC:12447 15 15q24.2 TYRO3P protein tyrosine kinase pseudogene pseudo TYRO3P TYRO3P protein tyrosine kinase pseudogene O - 20121230 -9606 7303 TYS - HRZ HGNC:12452|MIM:181600 4 4q28-q31 sclerotylosis unknown TYS sclerotylosis O - 20120622 -9606 7305 TYROBP - DAP12|KARAP|PLOSL HGNC:12449|MIM:604142|Ensembl:ENSG00000011600|HPRD:04996|Vega:OTTHUMG00000181739 19 19q13.1 TYRO protein tyrosine kinase binding protein protein-coding TYROBP TYRO protein tyrosine kinase binding protein O DNAX-activation protein 12|KAR-associated protein|TYRO protein tyrosine kinase-binding protein|killer activating receptor associated protein|killer-activating receptor-associated protein 20121230 -9606 7306 TYRP1 RP11-3L8.1 CAS2|CATB|GP75|OCA3|SHEP11|TRP|TYRP|b-PROTEIN HGNC:12450|MIM:115501|Ensembl:ENSG00000107165|HPRD:00283|Vega:OTTHUMG00000021034 9 9p23 tyrosinase-related protein 1 protein-coding TYRP1 tyrosinase-related protein 1 O 5,6-dihydroxyindole-2-carboxylic acid oxidase|DHICA oxidase|TRP-1|TRP1|catalase B|glycoprotein 75|melanoma antigen gp75 20121230 -9606 7307 U2AF1 - FP793|RN|RNU2AF1|U2AF35|U2AFBP HGNC:12453|MIM:191317|Ensembl:ENSG00000160201|HPRD:01871|Vega:OTTHUMG00000086836 21 21q22.3 U2 small nuclear RNA auxiliary factor 1 protein-coding U2AF1 U2 small nuclear RNA auxiliary factor 1 O U2 small nuclear RNA auxillary factor 1|U2 small nuclear ribonucleoprotein auxillary factor, 35-KD subunit|U2 snRNP auxiliary factor small subunit|U2(RNU2) small nuclear RNA auxiliary factor binding protein|splicing factor U2AF 35 kDa subunit|splicing factor U2AF 35kDa subunit 20121230 -9606 7310 ZRSR1 - U2AF1-RS1|U2AF1L1|U2AF1P|U2AF1RS1|U2AFBPL HGNC:12456|MIM:601079|HPRD:03049 5 5q22.2 zinc finger (CCCH type), RNA-binding motif and serine/arginine rich 1 pseudo ZRSR1 zinc finger (CCCH type), RNA-binding motif and serine/arginine rich 1 O - 20121230 -9606 7311 UBA52 - CEP52|HUBCEP52|L40|RPL40 HGNC:12458|MIM:191321|Ensembl:ENSG00000221983|HPRD:08931 19 19p13.1-p12 ubiquitin A-52 residue ribosomal protein fusion product 1 protein-coding UBA52 ubiquitin A-52 residue ribosomal protein fusion product 1 O 60S ribosomal protein L40|ubiquitin carboxyl extension protein 52|ubiquitin-52 amino acid fusion protein|ubiquitin-60S ribosomal protein L40|ubiquitin-CEP52 20121230 -9606 7312 UBA52P1 - RPL40_1_796 HGNC:12459 7 7p15.2 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 1 pseudo UBA52P1 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 1 O - 20121230 -9606 7313 UBA52P2 - RPL40_4_1339 HGNC:12460 14 14q11.2 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 2 pseudo UBA52P2 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 2 O - 20121230 -9606 7314 UBB - RPS27A|UBA52|UBC HGNC:12463|MIM:191339|Ensembl:ENSG00000170315|HPRD:06771|Vega:OTTHUMG00000058987 17 17p12-p11.2 ubiquitin B protein-coding UBB ubiquitin B O polyubiquitin B|polyubiquitin-B 20121230 -9606 7315 UBBP1 - - HGNC:12464 2 2q14.3 ubiquitin B pseudogene 1 pseudo UBBP1 ubiquitin B pseudogene 1 O - 20121230 -9606 7316 UBC - HMG20 HGNC:12468|MIM:191340|Ensembl:ENSG00000150991|HPRD:07038|Vega:OTTHUMG00000044421 12 12q24.3 ubiquitin C protein-coding UBC ubiquitin C O polyubiquitin-C 20121230 -9606 7317 UBA1 CTD-2522E6.1 A1S9|A1S9T|A1ST|AMCX1|GXP1|POC20|SMAX2|UBA1A|UBE1|UBE1X HGNC:12469|MIM:314370|Ensembl:ENSG00000130985|HPRD:02440|Vega:OTTHUMG00000021436 X Xp11.23 ubiquitin-like modifier activating enzyme 1 protein-coding UBA1 ubiquitin-like modifier activating enzyme 1 O A1S9T and BN75 temperature sensitivity complementing|POC20 centriolar protein homolog|UBA1, ubiquitin-activating enzyme E1 homolog A|ubiquitin-like modifier-activating enzyme 1 20121230 -9606 7318 UBA7 - D8|UBA1B|UBE1L|UBE2 HGNC:12471|MIM:191325|Ensembl:ENSG00000182179|HPRD:01873|Vega:OTTHUMG00000158267 3 3p21 ubiquitin-like modifier activating enzyme 7 protein-coding UBA7 ubiquitin-like modifier activating enzyme 7 O UBA1, ubiquitin-activating enzyme E1 homolog B|UBA7, ubiquitin-activating enzyme E1|ubiquitin-activating enzyme 7|ubiquitin-activating enzyme E1 homolog|ubiquitin-activating enzyme E1-related protein|ubiquitin-activating enzyme-2|ubiquitin-like modifier-activating enzyme 7 20121230 -9606 7319 UBE2A - HHR6A|MRXS30|MRXSN|RAD6A|UBC2 HGNC:12472|MIM:312180|Ensembl:ENSG00000077721|HPRD:02422|Vega:OTTHUMG00000022275 X Xq24 ubiquitin-conjugating enzyme E2A protein-coding UBE2A ubiquitin-conjugating enzyme E2A O HR6A|RAD6 homolog A|ubiquitin carrier protein A|ubiquitin-conjugating enzyme E2 A|ubiquitin-conjugating enzyme E2A (RAD6 homolog)|ubiquitin-protein ligase A 20121230 -9606 7320 UBE2B - E2-17kDa|HHR6B|HR6B|RAD6B|UBC2 HGNC:12473|MIM:179095|Ensembl:ENSG00000119048|HPRD:01533|Vega:OTTHUMG00000129120 5 5q31.1 ubiquitin-conjugating enzyme E2B protein-coding UBE2B ubiquitin-conjugating enzyme E2B O E2 protein|RAD6 homolog B|ubiquitin carrier protein B|ubiquitin-conjugating enzyme E2 B|ubiquitin-conjugating enzyme E2-17 kDa|ubiquitin-conjugating enzyme E2B (RAD6 homolog)|ubiquitin-protein ligase B 20121230 -9606 7321 UBE2D1 - E2(17)KB1|SFT|UBC4/5|UBCH5|UBCH5A HGNC:12474|MIM:602961|Ensembl:ENSG00000072401|HPRD:04267|Vega:OTTHUMG00000018269 10 10q21.1 ubiquitin-conjugating enzyme E2D 1 protein-coding UBE2D1 ubiquitin-conjugating enzyme E2D 1 O UBC4/5 homolog|stimulator of Fe transport|ubiquitin carrier protein D1|ubiquitin-conjugating enzyme E2 D1|ubiquitin-conjugating enzyme E2(17)KB 1|ubiquitin-conjugating enzyme E2-17 kDa 1|ubiquitin-conjugating enzyme E2D 1 (UBC4/5 homolog, yeast)|ubiquitin-protein ligase D1 20121230 -9606 7322 UBE2D2 - E2(17)KB2|PUBC1|UBC4|UBC4/5|UBCH5B HGNC:12475|MIM:602962|Ensembl:ENSG00000131508|HPRD:04268|Vega:OTTHUMG00000163282 5 5q31.2 ubiquitin-conjugating enzyme E2D 2 protein-coding UBE2D2 ubiquitin-conjugating enzyme E2D 2 O ubiquitin carrier protein D2|ubiquitin-conjugating enzyme E2 D2|ubiquitin-conjugating enzyme E2(17)KB 2|ubiquitin-conjugating enzyme E2-17 kDa 2|ubiquitin-conjugating enzyme E2D 2 (UBC4/5 homolog, yeast)|ubiquitin-conjugating enzyme E2D 2 (homologous to yeast UBC4/5)|ubiquitin-protein ligase D2 20121230 -9606 7323 UBE2D3 - E2(17)KB3|UBC4/5|UBCH5C HGNC:12476|MIM:602963|Ensembl:ENSG00000109332|HPRD:04269|Vega:OTTHUMG00000131119 4 4q24 ubiquitin-conjugating enzyme E2D 3 protein-coding UBE2D3 ubiquitin-conjugating enzyme E2D 3 O E2(17)KB 3|ubiquitin carrier protein D3|ubiquitin-conjugating enzyme E2 D3|ubiquitin-conjugating enzyme E2(17)KB 3|ubiquitin-conjugating enzyme E2-17 kDa 3|ubiquitin-conjugating enzyme E2D 3 (UBC4/5 homolog, yeast)|ubiquitin-conjugating enzyme E2D 3 (homologous to yeast UBC4/5)|ubiquitin-protein ligase D3 20121230 -9606 7324 UBE2E1 - UBCH6 HGNC:12477|MIM:602916|Ensembl:ENSG00000170142|HPRD:04225|Vega:OTTHUMG00000130483 3 3p24.2 ubiquitin-conjugating enzyme E2E 1 protein-coding UBE2E1 ubiquitin-conjugating enzyme E2E 1 O ubiquitin carrier protein E1|ubiquitin-conjugating enzyme E2 E1|ubiquitin-conjugating enzyme E2E 1 (UBC4/5 homolog, yeast)|ubiquitin-conjugating enzyme E2E 1 (homologous to yeast UBC4/5)|ubiquitin-protein ligase E1 20121230 -9606 7325 UBE2E2 - UBCH8 HGNC:12478|MIM:602163|Ensembl:ENSG00000182247|HPRD:06779|Vega:OTTHUMG00000130482 3 3p24.2 ubiquitin-conjugating enzyme E2E 2 protein-coding UBE2E2 ubiquitin-conjugating enzyme E2E 2 O ubiquitin carrier protein E2|ubiquitin-conjugating enzyme E2 E2|ubiquitin-conjugating enzyme E2E 2 (UBC4/5 homolog, yeast)|ubiquitin-conjugating enzyme E2E 2 (homologous to yeast UBC4/5)|ubiquitin-protein ligase E2 20121230 -9606 7326 UBE2G1 - E217K|UBC7|UBE2G HGNC:12482|MIM:601569|Ensembl:ENSG00000132388|HPRD:03340|Vega:OTTHUMG00000177826 17 17p13.2 ubiquitin-conjugating enzyme E2G 1 protein-coding UBE2G1 ubiquitin-conjugating enzyme E2G 1 O ubiquitin carrier protein G1|ubiquitin-conjugating enzyme E2 G1|ubiquitin-conjugating enzyme E2G 1 (UBC7 homolog, C. elegans)|ubiquitin-conjugating enzyme E2G 1 (UBC7 homolog, yeast)|ubiquitin-conjugating enzyme E2G 1 (homologous to C. elegans UBC7)|ubiquitin-protein ligase G1 20121230 -9606 7327 UBE2G2 - UBC7 HGNC:12483|MIM:603124|Ensembl:ENSG00000184787|HPRD:04387|Vega:OTTHUMG00000089179 21 21q22.3 ubiquitin-conjugating enzyme E2G 2 protein-coding UBE2G2 ubiquitin-conjugating enzyme E2G 2 O ubiquitin carrier protein G2|ubiquitin conjugating enzyme 7|ubiquitin conjugating enzyme G2|ubiquitin-conjugating enzyme E2 G2|ubiquitin-conjugating enzyme E2G 2 (UBC7 homolog, yeast)|ubiquitin-conjugating enzyme E2G 2 (homologous to yeast UBC7)|ubiquitin-protein ligase G2 20121230 -9606 7328 UBE2H - E2-20K|GID3|UBC8|UBCH|UBCH2 HGNC:12484|MIM:601082|Ensembl:ENSG00000186591|HPRD:03052|Vega:OTTHUMG00000157650 7 7q32 ubiquitin-conjugating enzyme E2H protein-coding UBE2H ubiquitin-conjugating enzyme E2H O GID complex subunit 3, UBC8 homolog|ubiquitin carrier protein H|ubiquitin-conjugating enzyme E2 H|ubiquitin-conjugating enzyme E2-20K|ubiquitin-conjugating enzyme E2H (UBC8 homolog, yeast)|ubiquitin-conjugating enzyme E2H (homologous to yeast UBC8)|ubiquitin-protein ligase H 20121230 -9606 7329 UBE2I LA16c-358B7.1 C358B7.1|P18|UBC9 HGNC:12485|MIM:601661|Ensembl:ENSG00000103275|HPRD:09045|Vega:OTTHUMG00000047845 16 16p13.3 ubiquitin-conjugating enzyme E2I protein-coding UBE2I ubiquitin-conjugating enzyme E2I O SUMO-1-protein ligase|SUMO-conjugating enzyme UBC9|SUMO-protein ligase|ubiquitin carrier protein 9|ubiquitin carrier protein I|ubiquitin conjugating enzyme 9|ubiquitin-conjugating enzyme E2I (UBC9 homolog, yeast)|ubiquitin-conjugating enzyme E2I (homologous to yeast UBC9)|ubiquitin-conjugating enzyme UbcE2A|ubiquitin-like protein SUMO-1 conjugating enzyme|ubiquitin-protein ligase E2I|ubiquitin-protein ligase I 20121230 -9606 7332 UBE2L3 - E2-F1|L-UBC|UBCH7|UbcM4 HGNC:12488|MIM:603721|Ensembl:ENSG00000185651|HPRD:04762|Vega:OTTHUMG00000150823 22 22q11.21 ubiquitin-conjugating enzyme E2L 3 protein-coding UBE2L3 ubiquitin-conjugating enzyme E2L 3 O ubiquitin carrier protein L3|ubiquitin-conjugating enzyme E2 L3|ubiquitin-conjugating enzyme E2-F1|ubiquitin-conjugating enzyme UBCH7|ubiquitin-protein ligase L3 20121230 -9606 7333 UBE2L4 - - HGNC:12489 19 19q13.2 ubiquitin-conjugating enzyme E2L 4 pseudo UBE2L4 ubiquitin-conjugating enzyme E2L 4 O - 20121230 -9606 7334 UBE2N - UBC13|UbcH-ben|UbcH13 HGNC:12492|MIM:603679|Ensembl:ENSG00000177889|HPRD:04725|Vega:OTTHUMG00000170156 12 12q22 ubiquitin-conjugating enzyme E2N protein-coding UBE2N ubiquitin-conjugating enzyme E2N O bendless-like ubiquitin conjugating enzyme|bendless-like ubiquitin-conjugating enzyme|ubiquitin carrier protein N|ubiquitin-conjugating enzyme E2 N|ubiquitin-conjugating enzyme E2N (UBC13 homolog, yeast)|ubiquitin-conjugating enzyme E2N (homologous to yeast UBC13)|ubiquitin-protein ligase N|yeast UBC13 homolog 20121230 -9606 7335 UBE2V1 P/OKcl.19 CIR1|CROC-1|CROC1|UBE2V|UEV-1|UEV1|UEV1A HGNC:12494|MIM:602995|Ensembl:ENSG00000244687|Vega:OTTHUMG00000152626 20 20q13.2 ubiquitin-conjugating enzyme E2 variant 1 protein-coding UBE2V1 ubiquitin-conjugating enzyme E2 variant 1 O DNA-binding protein|TRAF6-regulated IKK activator 1 beta Uev1A 20121230 -9606 7336 UBE2V2 - DDVIT1|DDVit-1|EDAF-1|EDPF-1|EDPF1|MMS2|UEV-2|UEV2 HGNC:12495|MIM:603001|Ensembl:ENSG00000169139|HPRD:04300|Vega:OTTHUMG00000164206 8 8q11.21 ubiquitin-conjugating enzyme E2 variant 2 protein-coding UBE2V2 ubiquitin-conjugating enzyme E2 variant 2 O 1 alpha,25-dihydroxyvitamin D3-inducible|DDVit 1|MMS2 homolog|enterocyte differentiation promoting factor|enterocyte differentiation-associated factor 1|enterocyte differentiation-associated factor EDAF-1|enterocyte differentiation-promoting factor 1|methyl methanesulfonate sensitive 2, S. cerevisiae, homolog of|vitamin D3-inducible protein 20121230 -9606 7337 UBE3A - ANCR|AS|E6-AP|EPVE6AP|HPVE6A HGNC:12496|MIM:601623|Ensembl:ENSG00000114062|HPRD:03375|Vega:OTTHUMG00000171548 15 15q11.2 ubiquitin protein ligase E3A protein-coding UBE3A ubiquitin protein ligase E3A O CTCL tumor antigen se37-2|E6AP ubiquitin-protein ligase|human papilloma virus E6-associated protein|human papillomavirus E6-associated protein|oncogenic protein-associated protein E6-AP|renal carcinoma antigen NY-REN-54|ubiquitin-protein ligase E3A 20121230 -9606 7338 UBE3AP1 - - HGNC:12497 2 2q11.1 ubiquitin protein ligase E3A pseudogene 1 pseudo UBE3AP1 ubiquitin protein ligase E3A pseudogene 1 O - 20121230 -9606 7339 UBE3AP2 - - HGNC:12498 21 21q21.3 ubiquitin protein ligase E3A pseudogene 2 pseudo UBE3AP2 ubiquitin protein ligase E3A pseudogene 2 O - 20121230 -9606 7341 SUMO1 OK/SW-cl.43 DAP1|GMP1|OFC10|PIC1|SENP2|SMT3|SMT3C|SMT3H3|UBL1 HGNC:12502|MIM:601912|Ensembl:ENSG00000116030|HPRD:03554|Vega:OTTHUMG00000132839 2 2q33 SMT3 suppressor of mif two 3 homolog 1 (S. cerevisiae) protein-coding SUMO1 SMT3 suppressor of mif two 3 homolog 1 (S. cerevisiae) O GAP modifying protein 1|SMT3 homolog 3|sentrin|small ubiquitin-related modifier 1|ubiquitin-homology domain protein PIC1|ubiquitin-like protein SMT3C|ubiquitin-like protein UBL1 20121230 -9606 7342 UBP1 - LBP-1B|LBP-1a|LBP1A|LBP1B HGNC:12507|MIM:609784|Ensembl:ENSG00000153560|HPRD:10291|Vega:OTTHUMG00000130749 3 3p22.3 upstream binding protein 1 (LBP-1a) protein-coding UBP1 upstream binding protein 1 (LBP-1a) O transcription factor LBP-1|upstream-binding protein 1 20121230 -9606 7343 UBTF - NOR-90|UBF|UBF-1|UBF1 HGNC:12511|MIM:600673|Ensembl:ENSG00000108312|HPRD:02814|Vega:OTTHUMG00000167585 17 17q21.31 upstream binding transcription factor, RNA polymerase I protein-coding UBTF upstream binding transcription factor, RNA polymerase I O 90-kDa nucleolus organizer region autoantigen|autoantigen NOR-90|nucleolar transcription factor 1 20121230 -9606 7345 UCHL1 - PARK5|PGP 9.5|PGP9.5|PGP95|Uch-L1 HGNC:12513|MIM:191342|Ensembl:ENSG00000154277|HPRD:01877|Vega:OTTHUMG00000099377 4 4p14 ubiquitin carboxyl-terminal esterase L1 (ubiquitin thiolesterase) protein-coding UCHL1 ubiquitin carboxyl-terminal esterase L1 (ubiquitin thiolesterase) O neuron cytoplasmic protein 9.5|ubiquitin C-terminal hydrolase|ubiquitin carboxyl-terminal hydrolase isozyme L1|ubiquitin thioesterase L1 20121230 -9606 7347 UCHL3 RP11-173B14.3 UCH-L3 HGNC:12515|MIM:603090|Ensembl:ENSG00000118939|HPRD:04367|Vega:OTTHUMG00000017090 13 13q22.2 ubiquitin carboxyl-terminal esterase L3 (ubiquitin thiolesterase) protein-coding UCHL3 ubiquitin carboxyl-terminal esterase L3 (ubiquitin thiolesterase) O ubiquitin carboxyl-terminal hydrolase isozyme L3|ubiquitin thioesterase L3|ubiquitin thiolesterase 20121230 -9606 7348 UPK1B - TSPAN20|UPIB|UPK1 HGNC:12578|MIM:602380|Ensembl:ENSG00000114638|HPRD:03853|Vega:OTTHUMG00000159354 3 3q13.32 uroplakin 1B protein-coding UPK1B uroplakin 1B O UP1b|tetraspan|tetraspanin-20|tspan-20|uroplakin Ib|uroplakin-1b 20121230 -9606 7349 UCN - UI|UROC HGNC:12516|MIM:600945|Ensembl:ENSG00000163794|HPRD:02970|Vega:OTTHUMG00000097068 2 2p23-p21 urocortin protein-coding UCN urocortin O urocortin, preproprotein 20121230 -9606 7350 UCP1 - SLC25A7|UCP HGNC:12517|MIM:113730|Ensembl:ENSG00000109424|HPRD:00221|Vega:OTTHUMG00000133415 4 4q28-q31 uncoupling protein 1 (mitochondrial, proton carrier) protein-coding UCP1 uncoupling protein 1 (mitochondrial, proton carrier) O mitochondrial brown fat uncoupling protein 1|solute carrier family 25 member 7|thermogenin 20121230 -9606 7351 UCP2 - BMIQ4|SLC25A8|UCPH HGNC:12518|MIM:601693|Ensembl:ENSG00000175567|HPRD:03410|Vega:OTTHUMG00000168095 11 11q13 uncoupling protein 2 (mitochondrial, proton carrier) protein-coding UCP2 uncoupling protein 2 (mitochondrial, proton carrier) O UCP 2|mitochondrial uncoupling protein 2|solute carrier family 25 member 8 20121230 -9606 7352 UCP3 - SLC25A9 HGNC:12519|MIM:602044|Ensembl:ENSG00000175564|HPRD:03623|Vega:OTTHUMG00000168109 11 11q13.4 uncoupling protein 3 (mitochondrial, proton carrier) protein-coding UCP3 uncoupling protein 3 (mitochondrial, proton carrier) O UCP 3|Uncoupling protein-3|mitochondrial uncoupling protein 3|solute carrier family 25 member 9 20121230 -9606 7353 UFD1L - UFD1 HGNC:12520|MIM:601754|Ensembl:ENSG00000070010|HPRD:06778|Vega:OTTHUMG00000150130 22 22q11.21 ubiquitin fusion degradation 1 like (yeast) protein-coding UFD1L ubiquitin fusion degradation 1 like (yeast) O UB fusion protein 1|ubiquitin fusion degradation protein 1 homolog 20121230 -9606 7355 SLC35A2 - UGALT|UGAT|UGT|UGT1|UGT2|UGTL HGNC:11022|MIM:314375|Ensembl:ENSG00000102100|HPRD:02441|Vega:OTTHUMG00000024129 X Xp11.23-p11.22 solute carrier family 35 (UDP-galactose transporter), member A2 protein-coding SLC35A2 solute carrier family 35 (UDP-galactose transporter), member A2 O UDP-Gal-Tr|UDP-galactose translocator|UDP-galactose transporter|solute carrier family 35 (UDP-galactose transporter), member 2|solute carrier family 35 member A2 20121230 -9606 7356 SCGB1A1 - CC10|CC16|CCPBP|CCSP|UGB|UP-1|UP1 HGNC:12523|MIM:192020|Ensembl:ENSG00000149021|HPRD:01884|Vega:OTTHUMG00000167526 11 11q12.3 secretoglobin, family 1A, member 1 (uteroglobin) protein-coding SCGB1A1 secretoglobin, family 1A, member 1 (uteroglobin) O blastokinin|clara cell phospholipid-binding protein|clara cells 10 kDa secretory protein|urinary protein 1|urine protein 1|uteroglobin 20121230 -9606 7357 UGCG - GCS|GLCT1 HGNC:12524|MIM:602874|Ensembl:ENSG00000148154|HPRD:04190|Vega:OTTHUMG00000020498 9 9q31 UDP-glucose ceramide glucosyltransferase protein-coding UGCG UDP-glucose ceramide glucosyltransferase O GLCT-1|UDP-glucose:N-acylsphingosine D-glucosyltransferase|ceramide glucosyltransferase|glucosylceramide synthase 20121230 -9606 7358 UGDH - GDH|UDP-GlcDH|UDPGDH|UGD HGNC:12525|MIM:603370|Ensembl:ENSG00000109814|HPRD:04535|Vega:OTTHUMG00000099371 4 4p15.1 UDP-glucose 6-dehydrogenase protein-coding UGDH UDP-glucose 6-dehydrogenase O UDP-Glc dehydrogenase|UDP-glucose dehydrogenase|uridine diphospho-glucose dehydrogenase 20121230 -9606 7360 UGP2 - UDPG|UDPGP|UDPGP2|UGP1|UGPP1|UGPP2|pHC379 HGNC:12527|MIM:191760|Ensembl:ENSG00000169764|HPRD:08934|Vega:OTTHUMG00000129513 2 2p14-p13 UDP-glucose pyrophosphorylase 2 protein-coding UGP2 UDP-glucose pyrophosphorylase 2 O UDP-glucose diphosphorylase|UDP-glucose pyrophosphorylase 1|UGPase 2|UTP--glucose-1-phosphate uridylyltransferase|UTP--glucose-1-phosphate uridylyltransferase 2|UTP-glucose-1-phosphate uridyltransferase|Uridyl diphosphate glucose pyrophosphorylase-1|uridyl diphosphate glucose pyrophosphorylase 2 20121230 -9606 7361 UGT1A - GNT1|UGT|UGT1|UGT1A@ HGNC:12529 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A complex locus other UGT1A UDP glucuronosyltransferase 1 family, polypeptide A complex locus O - 20121230 -9606 7363 UGT2B4 - HLUG25|UDPGT2B4|UDPGTH1|UGT2B11 HGNC:12553|MIM:600067|Ensembl:ENSG00000156096|HPRD:02507|Vega:OTTHUMG00000058891 4 4q13 UDP glucuronosyltransferase 2 family, polypeptide B4 protein-coding UGT2B4 UDP glucuronosyltransferase 2 family, polypeptide B4 O UDP glucuronosyltransferase 2B4|UDP-glucuronosyltransferase 2B4|UDP-glucuronyltransferase, family 2, beta-4|UDPGT 2B4|UDPGTh-1|hyodeoxycholic acid|hyodeoxycholic acid-specific UDPGT 20121230 -9606 7364 UGT2B7 - UDPGT 2B9|UDPGT2B7|UDPGTH2|UGT2B9 HGNC:12554|MIM:600068|Ensembl:ENSG00000171234|HPRD:02508|Vega:OTTHUMG00000129404 4 4q13 UDP glucuronosyltransferase 2 family, polypeptide B7 protein-coding UGT2B7 UDP glucuronosyltransferase 2 family, polypeptide B7 O 3,4-catechol estrogen specific|3,4-catechol estrogen-specific UDPGT|UDP glucuronosyltransferase 2B7|UDP-glucuronosyltransferase 2B7|UDP-glucuronosyltransferase 2B9|UDP-glucuronyltransferase, family 2, beta-7|UDPGT 2B7|UDPGTh-2 20121230 -9606 7365 UGT2B10 - UDPGT2B10 HGNC:12544|MIM:600070|Ensembl:ENSG00000109181|HPRD:07193|Vega:OTTHUMG00000161505 4 4q13.2 UDP glucuronosyltransferase 2 family, polypeptide B10 protein-coding UGT2B10 UDP glucuronosyltransferase 2 family, polypeptide B10 O UDP glucuronosyltransferase 2B10|UDP-glucuronosyltransferase 2B10|UDPGT 2B10 20121230 -9606 7366 UGT2B15 - HLUG4|UDPGT 2B8|UDPGT2B15|UDPGTH3|UGT2B8 HGNC:12546|MIM:600069|Ensembl:ENSG00000196620|HPRD:07192|Vega:OTTHUMG00000161507 4 4q13 UDP glucuronosyltransferase 2 family, polypeptide B15 protein-coding UGT2B15 UDP glucuronosyltransferase 2 family, polypeptide B15 O UDP glycosyltransferase 2B15|UDP-glucuronosyltransferase 2B15|UDP-glucuronosyltransferase 2B8|UDP-glucuronosyltransferase UGT2B15|UDP-glucuronyltransferase, family 2, beta-15|UDPGT 2B15|UDPGTh-3 20121230 -9606 7367 UGT2B17 - UDPGT2B17 HGNC:12547|MIM:601903|Ensembl:ENSG00000197888|HPRD:03545|Vega:OTTHUMG00000129305 4 4q13 UDP glucuronosyltransferase 2 family, polypeptide B17 protein-coding UGT2B17 UDP glucuronosyltransferase 2 family, polypeptide B17 O C19-steroid-specific UDP-glucuronosyltransferase|C19-steroid-specific UDPGT|UDP glycosyltransferase 2 family, member B17|UDP-glucuronosyltransferase 2B17|UDP-glucuronyltransferase, family 2, beta-17 20121230 -9606 7368 UGT8 - CGT|UGT4 HGNC:12555|MIM:601291|Ensembl:ENSG00000174607|HPRD:03186|Vega:OTTHUMG00000132915 4 4q26 UDP glycosyltransferase 8 protein-coding UGT8 UDP glycosyltransferase 8 O 2-hydroxyacylsphingosine 1-beta-galactosyltransferase|UDP-galactose ceramide galactosyltransferase|UDP-galactose-ceramide galactosyltransferase|ceramide UDP-galactosyltransferase|cerebroside synthase|uridine diphosphate glycosyltransferase 8 20121230 -9606 7369 UMOD - ADMCKD2|FJHN|HNFJ|HNFJ1|MCKD2|THGP|THP HGNC:12559|MIM:191845|Ensembl:ENSG00000169344|HPRD:11771|Vega:OTTHUMG00000131488 16 16p12.3 uromodulin protein-coding UMOD uromodulin O Tamm-Horsfall glycoprotein|tamm-Horsfall urinary glycoprotein|uromodulin (uromucoid, Tamm-Horsfall glycoprotein)|uromucoid 20121230 -9606 7371 UCK2 - TSA903|UK|UMPK HGNC:12562|MIM:609329|Ensembl:ENSG00000143179|HPRD:01882|Vega:OTTHUMG00000040117 1 1q23 uridine-cytidine kinase 2 protein-coding UCK2 uridine-cytidine kinase 2 O cytidine monophosphokinase 2|testis-specific protein TSA903|uridine kinase|uridine monophosphate kinase|uridine monophosphokinase 2 20121230 -9606 7372 UMPS OK/SW-cl.21 OPRT HGNC:12563|MIM:613891|Ensembl:ENSG00000114491|HPRD:02022|Vega:OTTHUMG00000159431 3 3q13 uridine monophosphate synthetase protein-coding UMPS uridine monophosphate synthetase O OMPdecase|OPRTase|UMP synthase|orotate phosphoribosyltransferase|orotidine 5'-phosphate decarboxylase|uridine 5'-monophosphate synthase 20121230 -9606 7373 COL14A1 - UND HGNC:2191|MIM:120324|Ensembl:ENSG00000187955|HPRD:00379|Vega:OTTHUMG00000149877 8 8q23 collagen, type XIV, alpha 1 protein-coding COL14A1 collagen, type XIV, alpha 1 O collagen alpha-1(XIV) chain|undulin (fibronectin-tenascin-related) 20121230 -9606 7374 UNG - DGU|HIGM4|HIGM5|UDG|UNG1|UNG15|UNG2 HGNC:12572|MIM:191525|Ensembl:ENSG00000076248|HPRD:01881|Vega:OTTHUMG00000169247 12 12q23-q24.1 uracil-DNA glycosylase protein-coding UNG uracil-DNA glycosylase O uracil-DNA glycosylase 1, uracil-DNA glycosylase 2 20121230 -9606 7375 USP4 - UNP|Unph HGNC:12627|MIM:603486|Ensembl:ENSG00000114316|HPRD:04598|Vega:OTTHUMG00000156825 3 3p21.3 ubiquitin specific peptidase 4 (proto-oncogene) protein-coding USP4 ubiquitin specific peptidase 4 (proto-oncogene) O deubiquitinating enzyme 4|ubiquitin carboxyl-terminal esterase 4|ubiquitin carboxyl-terminal hydrolase 4|ubiquitin specific protease 4 (proto-oncogene)|ubiquitin thioesterase 4|ubiquitin thiolesterase 4|ubiquitin-specific processing protease 4|ubiquitous nuclear protein homolog 20121230 -9606 7376 NR1H2 - LXR-b|LXRB|NER|NER-I|RIP15|UNR HGNC:7965|MIM:600380|Ensembl:ENSG00000131408|HPRD:02660 19 19q13.3 nuclear receptor subfamily 1, group H, member 2 protein-coding NR1H2 nuclear receptor subfamily 1, group H, member 2 O LX receptor beta|liver X nuclear receptor beta|nuclear orphan receptor LXR-beta|nuclear receptor NER|oxysterols receptor LXR-beta|steroid hormone-nuclear receptor NER|ubiquitously-expressed nuclear receptor 20121230 -9606 7378 UPP1 - UDRPASE|UP|UPASE|UPP HGNC:12576|MIM:191730|Ensembl:ENSG00000183696|HPRD:08932|Vega:OTTHUMG00000129253 7 7p12.3 uridine phosphorylase 1 protein-coding UPP1 uridine phosphorylase 1 O UPase 1|urdPase 1 20121230 -9606 7379 UPK2 - UP2|UPII HGNC:12579|MIM:611558|Ensembl:ENSG00000110375|HPRD:10295|Vega:OTTHUMG00000166346 11 11q23 uroplakin 2 protein-coding UPK2 uroplakin 2 O uroplakin II|uroplakin-2 20121230 -9606 7380 UPK3A CTA-268H5.10-002 UP3A|UPIII|UPIIIA|UPK3 HGNC:12580|MIM:611559|Ensembl:ENSG00000100373|HPRD:15625|Vega:OTTHUMG00000151339 22 22q13.31 uroplakin 3A protein-coding UPK3A uroplakin 3A O uroplakin III|uroplakin-3a 20121230 -9606 7381 UQCRB - QCR7|QP-C|QPC|UQBC|UQBP|UQCR6|UQPC HGNC:12582|MIM:191330|Ensembl:ENSG00000156467|HPRD:11770|Vega:OTTHUMG00000164711 8 8q22 ubiquinol-cytochrome c reductase binding protein protein-coding UQCRB ubiquinol-cytochrome c reductase binding protein O complex III subunit 7|complex III subunit VII|cytochrome b-c1 complex subunit 7|mitochondrial ubiquinone-binding protein|ubiquinol-cytochrome c reductase complex 14 kDa protein|ubiquinol-cytochrome c reductase, complex III subunit VI 20121230 -9606 7384 UQCRC1 - D3S3191|QCR1|UQCR1 HGNC:12585|MIM:191328|Ensembl:ENSG00000010256|HPRD:01875|Vega:OTTHUMG00000133539 3 3p21.3 ubiquinol-cytochrome c reductase core protein I protein-coding UQCRC1 ubiquinol-cytochrome c reductase core protein I O complex III subunit 1|core protein I|cytochrome b-c1 complex subunit 1, mitochondrial|ubiquinol-cytochrome-c reductase complex core protein 1 20121230 -9606 7385 UQCRC2 - QCR2|UQCR2 HGNC:12586|MIM:191329|Ensembl:ENSG00000140740|HPRD:01876|Vega:OTTHUMG00000131585 16 16p12 ubiquinol-cytochrome c reductase core protein II protein-coding UQCRC2 ubiquinol-cytochrome c reductase core protein II O complex III subunit 2|core protein II|cytochrome b-c1 complex subunit 2, mitochondrial|ubiquinol-cytochrome-c reductase complex core protein 2 20121230 -9606 7386 UQCRFS1 - RIP1|RIS1|RISP|UQCR5 HGNC:12587|MIM:191327|Ensembl:ENSG00000169021|HPRD:01874|Vega:OTTHUMG00000181997 19 19q12 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 protein-coding UQCRFS1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 O Rieske iron-sulfur protein|complex III subunit 5|cytochrome b-c1 complex subunit 5|cytochrome b-c1 complex subunit Rieske, mitochondrial|ubiquinol-cytochrome c reductase iron-sulfur subunit 20121230 -9606 7388 UQCRH - QCR6|UQCR8 HGNC:12590|MIM:613844|Ensembl:ENSG00000173660|HPRD:15629|Vega:OTTHUMG00000007813 1 1p34.1 ubiquinol-cytochrome c reductase hinge protein protein-coding UQCRH ubiquinol-cytochrome c reductase hinge protein O complex III subunit 6|complex III subunit VIII|cytochrome b-c1 complex subunit 6, mitochondrial|cytochrome c1 non-heme 11 kDa protein|mitochondrial hinge protein|ubiquinol-cytochrome c reductase complex 11 kDa protein|ubiquinol-cytochrome c reductase, complex III subunit VIII 20121230 -9606 7389 UROD RP11-69J16.2 PCT|UPD HGNC:12591|MIM:613521|Ensembl:ENSG00000126088|HPRD:01441|Vega:OTTHUMG00000008949 1 1p34 uroporphyrinogen decarboxylase protein-coding UROD uroporphyrinogen decarboxylase O uroporphyrinogen III decarboxylase 20121230 -9606 7390 UROS RP11-124H7.1 UROIIIS HGNC:12592|MIM:606938|Ensembl:ENSG00000188690|HPRD:06087|Vega:OTTHUMG00000019236 10 10q25.2-q26.3 uroporphyrinogen III synthase protein-coding UROS uroporphyrinogen III synthase O hydroxymethylbilane hydrolyase|uroporphyrinogen-III cosynthase|uroporphyrinogen-III synthase 20121230 -9606 7391 USF1 RP11-544M22.5 FCHL|FCHL1|HYPLIP1|MLTF|MLTFI|UEF|bHLHb11 HGNC:12593|MIM:191523|Ensembl:ENSG00000158773|HPRD:01880|Vega:OTTHUMG00000031472 1 1q22-q23 upstream transcription factor 1 protein-coding USF1 upstream transcription factor 1 O class B basic helix-loop-helix protein 11|major late transcription factor 1|upstream stimulatory factor 1 20121230 -9606 7392 USF2 - FIP|bHLHb12 HGNC:12594|MIM:600390|Ensembl:ENSG00000105698|HPRD:02668 19 19q13 upstream transcription factor 2, c-fos interacting protein-coding USF2 upstream transcription factor 2, c-fos interacting O FOS-interacting protein|c-fos interacting protein|class B basic helix-loop-helix protein 12|major late transcription factor 2|upstream stimulatory factor 2 20121230 -9606 7393 USH1A - USH1 HGNC:12595|MIM:276900 14 14q32 Usher syndrome 1A (autosomal recessive, severe) unknown USH1A Usher syndrome 1A (autosomal recessive, severe) O - 20110805 -9606 7396 USH1E - - HGNC:12599|MIM:602097 21 21q21 Usher syndrome 1E (autosomal recessive, severe) unknown USH1E Usher syndrome 1E (autosomal recessive, severe) O - 20120622 -9606 7398 USP1 - UBP HGNC:12607|MIM:603478|Ensembl:ENSG00000162607|HPRD:04593|Vega:OTTHUMG00000008972 1 1p31.3 ubiquitin specific peptidase 1 protein-coding USP1 ubiquitin specific peptidase 1 O deubiquitinating enzyme 1|hUBP|ubiquitin carboxyl terminal hydrolase 1|ubiquitin carboxyl-terminal hydrolase 1|ubiquitin specific processing protease 1|ubiquitin specific protease 1|ubiquitin thioesterase 1|ubiquitin thiolesterase 1|ubiquitin-specific-processing protease 1 20121230 -9606 7399 USH2A - RP39|US2|USH2|dJ1111A8.1 HGNC:12601|MIM:608400|Ensembl:ENSG00000042781|HPRD:02042|HPRD:09759|Vega:OTTHUMG00000037079 1 1q41 Usher syndrome 2A (autosomal recessive, mild) protein-coding USH2A Usher syndrome 2A (autosomal recessive, mild) O usher syndrome type IIa protein|usher syndrome type-2A protein|usherin 20121230 -9606 7401 CLRN1 - RP61|USH3|USH3A HGNC:12605|MIM:606397|Ensembl:ENSG00000163646|HPRD:05905|Vega:OTTHUMG00000140368 3 3q25 clarin 1 protein-coding CLRN1 clarin 1 O Usher syndrome type-3 protein|clarin-1 20121230 -9606 7402 UTRN RP11-352E13.1 DMDL|DRP|DRP1 HGNC:12635|MIM:128240|Ensembl:ENSG00000152818|HPRD:00547|Vega:OTTHUMG00000015746 6 6q24 utrophin protein-coding UTRN utrophin O DRP-1|dystrophin-related protein 1 20121230 -9606 7403 KDM6A RP13-886N14.3 KABUK2|UTX|bA386N14.2 HGNC:12637|MIM:300128|Ensembl:ENSG00000147050|HPRD:02131|Vega:OTTHUMG00000021402 X Xp11.2 lysine (K)-specific demethylase 6A protein-coding KDM6A lysine (K)-specific demethylase 6A O bA386N14.2 (ubiquitously transcribed X chromosome tetratricopeptide repeat protein (UTX))|histone demethylase UTX|lysine-specific demethylase 6A|ubiquitously transcribed TPR protein on the X chromosome|ubiquitously transcribed X chromosome tetratricopeptide repeat protein|ubiquitously transcribed tetratricopeptide repeat protein X-linked|ubiquitously-transcribed TPR gene on the X chromosome|ubiquitously-transcribed TPR protein on the X chromosome|ubiquitously-transcribed X chromosome tetratricopeptide repeat protein 20121230 -9606 7404 UTY - UTY1 HGNC:12638|MIM:400009|Ensembl:ENSG00000183878|HPRD:02451|Vega:OTTHUMG00000036319 Y Yq11 ubiquitously transcribed tetratricopeptide repeat containing, Y-linked protein-coding UTY ubiquitously transcribed tetratricopeptide repeat containing, Y-linked O histone demethylase UTY|ubiquitous TPR motif protein UTY|ubiquitously transcribed TPR gene on Y chromosome|ubiquitously transcribed tetratricopeptide repeat gene, Y chromosome|ubiquitously transcribed tetratricopeptide repeat gene, Y-linked|ubiquitously-transcribed TPR protein on the Y chromosome|ubiquitously-transcribed Y chromosome tetratricopeptide repeat protein 20121230 -9606 7405 UVRAG - DHTX|VPS38|p63 HGNC:12640|MIM:602493|Ensembl:ENSG00000198382|HPRD:03929|Vega:OTTHUMG00000165319 11 11q13.5 UV radiation resistance associated protein-coding UVRAG UV radiation resistance associated O UV radiation resistance-associated gene protein|beclin 1 binding protein|disrupted in heterotaxy 20121230 -9606 7407 VARS DAAP-21F2.2 G7A|VARS1|VARS2 HGNC:12651|MIM:192150|Ensembl:ENSG00000204394|HPRD:10362|Vega:OTTHUMG00000031286 6 6p21.3 valyl-tRNA synthetase protein-coding VARS valyl-tRNA synthetase O protein G7a|valRS|valine tRNA ligase 1, cytoplasmic|valine--tRNA ligase|valyl-tRNA synthetase 2 20121230 -9606 7408 VASP - - HGNC:12652|MIM:601703|Ensembl:ENSG00000125753|HPRD:03415|Vega:OTTHUMG00000182124 19 19q13.32 vasodilator-stimulated phosphoprotein protein-coding VASP vasodilator-stimulated phosphoprotein O - 20121230 -9606 7409 VAV1 - VAV HGNC:12657|MIM:164875|Ensembl:ENSG00000141968|HPRD:01284 19 19p13.2 vav 1 guanine nucleotide exchange factor protein-coding VAV1 vav 1 guanine nucleotide exchange factor O proto-oncogene vav|vav 1 oncogene 20121230 -9606 7410 VAV2 - VAV-2 HGNC:12658|MIM:600428|Ensembl:ENSG00000160293|HPRD:02694|Vega:OTTHUMG00000020882 9 9q34.1 vav 2 guanine nucleotide exchange factor protein-coding VAV2 vav 2 guanine nucleotide exchange factor O guanine nucleotide exchange factor VAV2|vav 2 oncogene 20121230 -9606 7411 VBP1 RP13-228J13.4 PFD3|PFDN3|VBP-1 HGNC:12662|MIM:300133|Ensembl:ENSG00000155959|HPRD:02135|Vega:OTTHUMG00000022666 X Xq28 von Hippel-Lindau binding protein 1 protein-coding VBP1 von Hippel-Lindau binding protein 1 O HIBBJ46|VHL binding protein-1|VHL-binding protein 1|prefoldin 3|prefoldin subunit 3|von Hippel-Lindau-binding protein 1 20121230 -9606 7412 VCAM1 - CD106|INCAM-100 HGNC:12663|MIM:192225|Ensembl:ENSG00000162692|HPRD:01888|Vega:OTTHUMG00000010982 1 1p32-p31 vascular cell adhesion molecule 1 protein-coding VCAM1 vascular cell adhesion molecule 1 O CD106 antigen|vascular cell adhesion protein 1 20121230 -9606 7413 VCF - CATCH22 HGNC:12664 22 22q11.21-q11.23 velocardiofacial syndrome unknown VCF velocardiofacial syndrome O - 20110714 -9606 7414 VCL RP11-178G16.3 CMD1W|CMH15|MVCL HGNC:12665|MIM:193065|Ensembl:ENSG00000035403|HPRD:01900|Vega:OTTHUMG00000018498 10 10q22.2 vinculin protein-coding VCL vinculin O metavinculin 20121230 -9606 7415 VCP - ALS14|IBMPFD|TERA|p97 HGNC:12666|MIM:601023|Ensembl:ENSG00000165280|HPRD:03013|Vega:OTTHUMG00000019855 9 9p13.3 valosin containing protein protein-coding VCP valosin containing protein O 15S Mg(2+)-ATPase p97 subunit|TER ATPase|transitional endoplasmic reticulum ATPase|valosin-containing protein|yeast Cdc48p homolog 20121230 -9606 7416 VDAC1 - PORIN|VDAC-1 HGNC:12669|MIM:604492|Ensembl:ENSG00000213585|HPRD:05137|Vega:OTTHUMG00000129118 5 5q31 voltage-dependent anion channel 1 protein-coding VDAC1 voltage-dependent anion channel 1 O outer mitochondrial membrane protein porin 1|plasmalemmal porin|porin 31HL|porin 31HM|voltage-dependent anion-selective channel protein 1 20121230 -9606 7417 VDAC2 RP11-375G3.1 POR HGNC:12672|MIM:193245|Ensembl:ENSG00000165637|HPRD:01904|Vega:OTTHUMG00000018517 10 10q22 voltage-dependent anion channel 2 protein-coding VDAC2 voltage-dependent anion channel 2 O outer mitochondrial membrane protein porin 2|voltage-dependent anion-selective channel protein 2 20121230 -9606 7418 VDAC1P4 - VDAC4|VDAC4P HGNC:12675|MIM:610030 1 1q24-q25 voltage-dependent anion channel 1 pseudogene 4 pseudo VDAC1P4 voltage-dependent anion channel 1 pseudogene 4 O - 20121230 -9606 7419 VDAC3 - HD-VDAC3|VDAC-3 HGNC:12674|MIM:610029|Ensembl:ENSG00000078668|HPRD:06750|Vega:OTTHUMG00000164168 8 8p11.2 voltage-dependent anion channel 3 protein-coding VDAC3 voltage-dependent anion channel 3 O outer mitochondrial membrane protein porin 3|voltage-dependent anion-selective channel protein 3 20121230 -9606 7420 VDI - DIPI HGNC:12678|MIM:125260 16 - vesicular stomatitis virus defective interfering particle suppression unknown VDI vesicular stomatitis virus defective interfering particle suppression O - 20110215 -9606 7421 VDR - NR1I1 HGNC:12679|MIM:601769|Ensembl:ENSG00000111424|HPRD:03463|Vega:OTTHUMG00000169890 12 12q13.11 vitamin D (1,25- dihydroxyvitamin D3) receptor protein-coding VDR vitamin D (1,25- dihydroxyvitamin D3) receptor O 1,25-dihydroxyvitamin D3 receptor|nuclear receptor subfamily 1 group I member 1|vitamin D nuclear receptor variant 1|vitamin D3 receptor 20121230 -9606 7422 VEGFA RP1-261G23.1 MVCD1|VEGF|VPF HGNC:12680|MIM:192240|Ensembl:ENSG00000112715|HPRD:01889|Vega:OTTHUMG00000014745 6 6p12 vascular endothelial growth factor A protein-coding VEGFA vascular endothelial growth factor A O vascular permeability factor 20121230 -9606 7423 VEGFB - VEGFL|VRF HGNC:12681|MIM:601398|Ensembl:ENSG00000173511|HPRD:03237|Vega:OTTHUMG00000167813 11 11q13 vascular endothelial growth factor B protein-coding VEGFB vascular endothelial growth factor B O VEGF-related factor 20121230 -9606 7424 VEGFC - Flt4-L|VRP HGNC:12682|MIM:601528|Ensembl:ENSG00000150630|HPRD:03317|Vega:OTTHUMG00000160734 4 4q34.3 vascular endothelial growth factor C protein-coding VEGFC vascular endothelial growth factor C O FLT4 ligand DHM|VEGF-C|vascular endothelial growth factor-related protein 20121230 -9606 7425 VGF - - HGNC:12684|MIM:602186|Ensembl:ENSG00000128564|HPRD:03717|Vega:OTTHUMG00000157109 7 7q22.1 VGF nerve growth factor inducible protein-coding VGF VGF nerve growth factor inducible O neuro-endocrine specific protein VGF|neurosecretory protein VGF 20121230 -9606 7428 VHL - HRCA1|RCA1|VHL1|pVHL HGNC:12687|MIM:608537|Ensembl:ENSG00000134086|HPRD:01905|Vega:OTTHUMG00000128668 3 3p25.3 von Hippel-Lindau tumor suppressor, E3 ubiquitin protein ligase protein-coding VHL von Hippel-Lindau tumor suppressor, E3 ubiquitin protein ligase O elongin binding protein|protein G7|von Hippel-Lindau disease tumor suppressor 20121230 -9606 7429 VIL1 - D2S1471|VIL HGNC:12690|MIM:193040|Ensembl:ENSG00000127831|HPRD:01898|Vega:OTTHUMG00000133112 2 2q35 villin 1 protein-coding VIL1 villin 1 O villin-1 20121230 -9606 7430 EZR - CVIL|CVL|VIL2 HGNC:12691|MIM:123900|Ensembl:ENSG00000092820|HPRD:00475|Vega:OTTHUMG00000015917 6 6q25.3 ezrin protein-coding EZR ezrin O cytovillin 2|p81|villin 2 (ezrin)|villin-2 20121230 -9606 7431 VIM RP11-124N14.1 - HGNC:12692|MIM:193060|Ensembl:ENSG00000026025|HPRD:01899|Vega:OTTHUMG00000017744 10 10p13 vimentin protein-coding VIM vimentin O - 20121230 -9606 7432 VIP RP4-546K19.1 PHM27 HGNC:12693|MIM:192320|Ensembl:ENSG00000146469|HPRD:15950|Vega:OTTHUMG00000015851 6 6q25 vasoactive intestinal peptide protein-coding VIP vasoactive intestinal peptide O VIP peptides 20121230 -9606 7433 VIPR1 - HVR1|II|PACAP-R-2|PACAP-R2|RDC1|V1RG|VAPC1|VIP-R-1|VIPR|VIRG|VPAC1|VPAC1R|VPCAP1R HGNC:12694|MIM:192321|Ensembl:ENSG00000114812|HPRD:01890|Vega:OTTHUMG00000131792 3 3p22 vasoactive intestinal peptide receptor 1 protein-coding VIPR1 vasoactive intestinal peptide receptor 1 O PACAP type II receptor|VIP and PACAP receptor 1|VIP receptor, type I|pituitary adenylate cyclase activating polypeptide receptor, type II|vasoactive intestinal polypeptide receptor 1 20121230 -9606 7434 VIPR2 tcag7.561 C16DUPq36.3|DUP7q36.3|PACAP-R-3|PACAP-R3|VIP-R-2|VPAC2|VPAC2R|VPCAP2R HGNC:12695|MIM:601970|Ensembl:ENSG00000106018|HPRD:03576|Vega:OTTHUMG00000151446 7 7q36.3 vasoactive intestinal peptide receptor 2 protein-coding VIPR2 vasoactive intestinal peptide receptor 2 O PACAP type III receptor|VIP and PACAP receptor 2|helodermin-preferring VIP receptor|pituitary adenylate cyclase-activating polypeptide type III receptor|vasoactive intestinal polypeptide receptor 2 20121230 -9606 7435 VIS1 - HIS1 HGNC:12696|MIM:164755 2 2q14-q21 viral integration site 1 other VIS1 viral integration site 1 O - 20080828 -9606 7436 VLDLR RP11-320E16.1 CARMQ1|CHRMQ1|VLDLRCH HGNC:12698|MIM:192977|Ensembl:ENSG00000147852|HPRD:01895|Vega:OTTHUMG00000019447 9 9p24 very low density lipoprotein receptor protein-coding VLDLR very low density lipoprotein receptor O VLDL receptor|VLDL-R|very low-density lipoprotein receptor 20121230 -9606 7438 VMD1 - - HGNC:12702|MIM:153840 - - vitelliform macular dystrophy, atypical unknown VMD1 vitelliform macular dystrophy, atypical O - 20120622 -9606 7439 BEST1 - ARB|BEST|BMD|RP50|TU15B|VMD2 HGNC:12703|MIM:607854|Ensembl:ENSG00000167995|HPRD:01094|Vega:OTTHUMG00000167469 11 11q13 bestrophin 1 protein-coding BEST1 bestrophin 1 O Best disease|Best1V1Delta2|bestrophin-1|vitelliform macular dystrophy protein 2 20121230 -9606 7441 VPREB1 - IGI|IGVPB|VPREB HGNC:12709|MIM:605141|Ensembl:ENSG00000169575|HPRD:05505|IMGT/GENE-DB:VPREB1|Vega:OTTHUMG00000151042 22 22q11.22 pre-B lymphocyte 1 protein-coding VPREB1 pre-B lymphocyte 1 O CD179 antigen-like family member A|CD179a|immunoglobulin iota chain|v(pre)B protein 20121230 -9606 7442 TRPV1 - VR1 HGNC:12716|MIM:602076|Ensembl:ENSG00000196689|Ensembl:ENSG00000262304|HPRD:03648|Vega:OTTHUMG00000177649|Vega:OTTHUMG00000177650 17 17p13.2 transient receptor potential cation channel, subfamily V, member 1 protein-coding TRPV1 transient receptor potential cation channel, subfamily V, member 1 O OTRPC1|capsaicin receptor|osm-9-like TRP channel 1|transient receptor potential cation channel subfamily V member 1|transient receptor potential vanilloid 1a|transient receptor potential vanilloid 1b|vanilloid receptor subtype 1 20121230 -9606 7443 VRK1 - PCH1|PCH1A HGNC:12718|MIM:602168|Ensembl:ENSG00000100749|HPRD:03701|Vega:OTTHUMG00000171459 14 14q32 vaccinia related kinase 1 protein-coding VRK1 vaccinia related kinase 1 O serine/threonine-protein kinase VRK1|vaccinia virus B1R-related kinase 1|vaccinia-related kinase 1 20121230 -9606 7444 VRK2 - - HGNC:12719|MIM:602169|Ensembl:ENSG00000028116|HPRD:03702|Vega:OTTHUMG00000129348 2 2p16.1 vaccinia related kinase 2 protein-coding VRK2 vaccinia related kinase 2 O serine/threonine-protein kinase VRK2|vaccinia virus B1R-related kinase 2 20121230 -9606 7445 VRNI - ADNIV HGNC:12720|MIM:193235 11 11q13 vitreoretinopathy, neovascular inflammatory unknown VRNI vitreoretinopathy, neovascular inflammatory O - 20120622 -9606 7446 AVSD1 - AVCD|AVCD1|AVSD|VSD1 HGNC:12721|MIM:606215 1 1p31-p21 atrioventricular septal defect 1 unknown AVSD1 atrioventricular septal defect 1 O - 20120622 -9606 7447 VSNL1 - HLP3|HPCAL3|HUVISL1|VILIP|VILIP-1 HGNC:12722|MIM:600817|Ensembl:ENSG00000163032|HPRD:02890|Vega:OTTHUMG00000090645 2 2p24.3 visinin-like 1 protein-coding VSNL1 visinin-like 1 O VLP-1|hippocalcin-like protein 3|visinin-like protein 1 20121230 -9606 7448 VTN - V75|VN|VNT HGNC:12724|MIM:193190|Ensembl:ENSG00000255604|HPRD:01902|Vega:OTTHUMG00000132500 17 17q11 vitronectin protein-coding VTN vitronectin O S-protein|complement S-protein|epibolin|serum spreading factor|serum-spreading factor|somatomedin B 20121230 -9606 7450 VWF - F8VWF|VWD HGNC:12726|MIM:613160|Ensembl:ENSG00000110799|HPRD:01906|Vega:OTTHUMG00000168265 12 12p13.3 von Willebrand factor protein-coding VWF von Willebrand factor O coagulation factor VIII VWF 20121230 -9606 7451 VWFP1 - F8VWFL|F8VWFP|VWFP HGNC:12727 22 22q11.1 von Willebrand factor pseudogene 1 pseudo VWFP1 von Willebrand factor pseudogene 1 O - 20121230 -9606 7453 WARS - GAMMA-2|IFI53|IFP53 HGNC:12729|MIM:191050|Ensembl:ENSG00000140105|HPRD:01845|Vega:OTTHUMG00000171572 14 14q32.31 tryptophanyl-tRNA synthetase protein-coding WARS tryptophanyl-tRNA synthetase O hWRS|interferon-induced protein 53|trpRS|tryptophan tRNA ligase 1, cytoplasmic|tryptophan--tRNA ligase, cytoplasmic 20121230 -9606 7454 WAS - IMD2|SCNX|THC|THC1|WASP HGNC:12731|MIM:300392|Ensembl:ENSG00000015285|HPRD:02314|Vega:OTTHUMG00000034483 X Xp11.4-p11.21 Wiskott-Aldrich syndrome protein-coding WAS Wiskott-Aldrich syndrome O eczema-thrombocytopenia|thrombocytopenia 1 (X-linked)|wiskott-Aldrich syndrome protein 20121230 -9606 7455 ZAN - - HGNC:12857|MIM:602372|Ensembl:ENSG00000146839|HPRD:03846|Vega:OTTHUMG00000157037 7 7q22 zonadhesin protein-coding ZAN zonadhesin O - 20121230 -9606 7456 WIPF1 - PRPL-2|WASPIP|WIP HGNC:12736|MIM:602357|Ensembl:ENSG00000115935|HPRD:03835|Vega:OTTHUMG00000132334 2 2q31.1 WAS/WASL interacting protein family, member 1 protein-coding WIPF1 WAS/WASL interacting protein family, member 1 O WAS/WASL-interacting protein family member 1|WASP-interacting protein|Wiskott-Aldrich syndrome protein interacting protein|protein PRPL-2 20121230 -9606 7457 WBS2 - WBS|WS HGNC:12740 4 4q33-q35.1 Williams-Beuren syndrome type 2 unknown WBS2 Williams-Beuren syndrome type 2 O - 20110714 -9606 7458 EIF4H - WBSCR1|WSCR1|eIF-4H HGNC:12741|MIM:603431|Ensembl:ENSG00000106682|HPRD:11940|Vega:OTTHUMG00000023025 7 7q11.23 eukaryotic translation initiation factor 4H protein-coding EIF4H eukaryotic translation initiation factor 4H O Williams-Beuren syndrome chromosome region 1 20121230 -9606 7459 WBSCR2 - WSCR2 HGNC:12746 7 7q11.23 Williams-Beuren syndrome chromosome region 2 other WBSCR2 Williams-Beuren syndrome chromosome region 2 O - 20080828 -9606 7461 CLIP2 - CLIP|CLIP-115|CYLN2|WBSCR3|WBSCR4|WSCR3|WSCR4 HGNC:2586|MIM:603432|Ensembl:ENSG00000106665|HPRD:09140|Vega:OTTHUMG00000022980 7 7q11.23 CAP-GLY domain containing linker protein 2 protein-coding CLIP2 CAP-GLY domain containing linker protein 2 O CAP-Gly domain-containing linker protein 2|Williams-Beuren syndrome chromosome region 3|Williams-Beuren syndrome chromosome region 4|cytoplasmic linker 2|cytoplasmic linker protein 115|cytoplasmic linker protein 2|williams-Beuren syndrome chromosomal region 3 protein|williams-Beuren syndrome chromosomal region 4 protein 20121230 -9606 7462 LAT2 HSPC046 LAB|NTAL|WBSCR15|WBSCR5|WSCR5 HGNC:12749|MIM:605719|Ensembl:ENSG00000086730|HPRD:09304|Vega:OTTHUMG00000130151 7 7q11.23 linker for activation of T cells family, member 2 protein-coding LAT2 linker for activation of T cells family, member 2 O Williams-Beuren syndrome chromosomal region 15 protein|Williams-Beuren syndrome chromosomal region 5 protein|linker for activation of B-cells|linker for activation of T cells, transmembrane adaptor 2|linker for activation of T-cells family member 2|membrane-associated adapter molecule|non-T-cell activation linker 20121230 -9606 7464 CORO2A - CLIPINB|IR10|WDR2 HGNC:2255|MIM:602159|Ensembl:ENSG00000106789|HPRD:03695|Vega:OTTHUMG00000020340 9 9q22.3 coronin, actin binding protein, 2A protein-coding CORO2A coronin, actin binding protein, 2A O WD protein IR10|WD repeat-containing protein 2|WD-repeat protein 2|coronin 2A|coronin, actin-binding protein, 2A|coronin-2A|coronin-like protein B 20121230 -9606 7465 WEE1 - WEE1A|WEE1hu HGNC:12761|MIM:193525|Ensembl:ENSG00000166483|HPRD:01907|Vega:OTTHUMG00000165863 11 11p15.3-p15.1 WEE1 homolog (S. pombe) protein-coding WEE1 WEE1 homolog (S. pombe) O WEE1+ homolog|wee1-like protein kinase|wee1A kinase 20121230 -9606 7466 WFS1 - WFRS|WFS|WFSL HGNC:12762|MIM:606201|Ensembl:ENSG00000109501|HPRD:05864|Vega:OTTHUMG00000090431 4 4p16.1 Wolfram syndrome 1 (wolframin) protein-coding WFS1 Wolfram syndrome 1 (wolframin) O wolframin 20121230 -9606 7467 WHCR - PRDS HGNC:12764|MIM:194190 4 4p16 Wolf-Hirschhorn syndrome chromosome region other WHCR Wolf-Hirschhorn syndrome chromosome region O - 20121220 -9606 7468 WHSC1 RP11-262P20.3 MMSET|NSD2|REIIBP|TRX5|WHS HGNC:12766|MIM:602952|Ensembl:ENSG00000109685|HPRD:04259|Vega:OTTHUMG00000121147 4 4p16.3 Wolf-Hirschhorn syndrome candidate 1 protein-coding WHSC1 Wolf-Hirschhorn syndrome candidate 1 O IL5 promoter REII region-binding protein|histone-lysine N-methyltransferase NSD2|multiple myeloma SET domain containing protein type III|nuclear SET domain-containing protein 2|probable histone-lysine N-methyltransferase NSD2|trithorax/ash1-related protein 5 20121230 -9606 7469 WHSC2 P/OKcl.15 NELF-A|NELFA HGNC:12768|MIM:606026|Ensembl:ENSG00000185049|HPRD:12080|Vega:OTTHUMG00000089967 4 4p16.3 Wolf-Hirschhorn syndrome candidate 2 protein-coding WHSC2 Wolf-Hirschhorn syndrome candidate 2 O negative elongation factor A|wolf-Hirschhorn syndrome candidate 2 protein 20121230 -9606 7471 WNT1 - INT1 HGNC:12774|MIM:164820|Ensembl:ENSG00000125084|HPRD:01276|Vega:OTTHUMG00000170403 12 12q13 wingless-type MMTV integration site family, member 1 protein-coding WNT1 wingless-type MMTV integration site family, member 1 O proto-oncogene Int-1 homolog|proto-oncogene Wnt-1|wingless-type MMTV integration site family, member 1 (oncogene INT1) 20121230 -9606 7472 WNT2 - INT1L1|IRP HGNC:12780|MIM:147870|Ensembl:ENSG00000105989|HPRD:00999|Vega:OTTHUMG00000023428 7 7q31.2 wingless-type MMTV integration site family member 2 protein-coding WNT2 wingless-type MMTV integration site family member 2 O Int-1-related protein|int-1-like protein 1|protein Wnt-2|secreted growth factor 20121230 -9606 7473 WNT3 - INT4 HGNC:12782|MIM:165330|Ensembl:ENSG00000108379|HPRD:01318|Vega:OTTHUMG00000178076 17 17q21 wingless-type MMTV integration site family, member 3 protein-coding WNT3 wingless-type MMTV integration site family, member 3 O WNT-3 proto-oncogene protein|proto-oncogene Int-4 homolog|proto-oncogene Wnt-3 20121230 -9606 7474 WNT5A - hWNT5A HGNC:12784|MIM:164975|Ensembl:ENSG00000114251|HPRD:01293|Vega:OTTHUMG00000158361 3 3p21-p14 wingless-type MMTV integration site family, member 5A protein-coding WNT5A wingless-type MMTV integration site family, member 5A O WNT-5A protein|protein Wnt-5a 20121230 -9606 7475 WNT6 - - HGNC:12785|MIM:604663|Ensembl:ENSG00000115596|HPRD:05233|Vega:OTTHUMG00000133082 2 2q35 wingless-type MMTV integration site family, member 6 protein-coding WNT6 wingless-type MMTV integration site family, member 6 O protein Wnt-6 20121230 -9606 7476 WNT7A - - HGNC:12786|MIM:601570|Ensembl:ENSG00000154764|HPRD:03341|Vega:OTTHUMG00000129803 3 3p25 wingless-type MMTV integration site family, member 7A protein-coding WNT7A wingless-type MMTV integration site family, member 7A O protein Wnt-7a|proto-oncogene Wnt7a protein 20121230 -9606 7477 WNT7B RP11-435J19.1 - HGNC:12787|MIM:601967|Ensembl:ENSG00000188064|HPRD:03573|Vega:OTTHUMG00000154636 22 22q13 wingless-type MMTV integration site family, member 7B protein-coding WNT7B wingless-type MMTV integration site family, member 7B O protein Wnt-7b 20121230 -9606 7478 WNT8A - WNT8D HGNC:12788|MIM:606360|Ensembl:ENSG00000061492|HPRD:05898|Vega:OTTHUMG00000129196 5 5q31 wingless-type MMTV integration site family, member 8A protein-coding WNT8A wingless-type MMTV integration site family, member 8A O WNT8d|protein Wnt-8a|protein Wnt-8d 20121230 -9606 7479 WNT8B - - HGNC:12789|MIM:601396|Ensembl:ENSG00000075290|HPRD:03235|Vega:OTTHUMG00000018912 10 10q24 wingless-type MMTV integration site family, member 8B protein-coding WNT8B wingless-type MMTV integration site family, member 8B O protein Wnt-8b 20121230 -9606 7480 WNT10B - SHFM6|WNT-12 HGNC:12775|MIM:601906|Ensembl:ENSG00000169884|HPRD:03548|Vega:OTTHUMG00000150734 12 12q13 wingless-type MMTV integration site family, member 10B protein-coding WNT10B wingless-type MMTV integration site family, member 10B O WNT-10B protein|protein Wnt-10b 20121230 -9606 7481 WNT11 - HWNT11 HGNC:12776|MIM:603699|Ensembl:ENSG00000085741|HPRD:04741|Vega:OTTHUMG00000165264 11 11q13.5 wingless-type MMTV integration site family, member 11 protein-coding WNT11 wingless-type MMTV integration site family, member 11 O protein Wnt-11 20121230 -9606 7482 WNT2B - WNT13|XWNT2 HGNC:12781|MIM:601968|Ensembl:ENSG00000134245|HPRD:03574|Vega:OTTHUMG00000011157 1 1p13 wingless-type MMTV integration site family, member 2B protein-coding WNT2B wingless-type MMTV integration site family, member 2B O XWNT2, Xenopus, homolog of|protein Wnt-2b|wingless-type MMTV integration site family, member 13 20121230 -9606 7483 WNT9A - WNT14 HGNC:12778|MIM:602863|Ensembl:ENSG00000143816|HPRD:04179|Vega:OTTHUMG00000037592 1 1q42 wingless-type MMTV integration site family, member 9A protein-coding WNT9A wingless-type MMTV integration site family, member 9A O protein Wnt-9a|wingless-type MMTV integration site family, member 14 20121230 -9606 7484 WNT9B UNQ6973/PRO21956 WNT14B|WNT15 HGNC:12779|MIM:602864|Ensembl:ENSG00000158955|HPRD:04180|Vega:OTTHUMG00000178077 17 17q21 wingless-type MMTV integration site family, member 9B protein-coding WNT9B wingless-type MMTV integration site family, member 9B O protein Wnt-14b|protein Wnt-9b|wingless-type MMTV integration site family, member 15 20121230 -9606 7485 WRB - CHD5 HGNC:12790|MIM:602915|Ensembl:ENSG00000182093|HPRD:04224|Vega:OTTHUMG00000066250 21 21q22.3 tryptophan rich basic protein protein-coding WRB tryptophan rich basic protein O congenital heart disease 5 protein|tail-anchored protein insertion receptor WRB|tryptophan-rich basic protein|tryptophan-rich protein 20121230 -9606 7486 WRN - RECQ3|RECQL2|RECQL3 HGNC:12791|MIM:604611|Ensembl:ENSG00000165392|HPRD:05212|Vega:OTTHUMG00000163894 8 8p12 Werner syndrome, RecQ helicase-like protein-coding WRN Werner syndrome, RecQ helicase-like O DNA helicase, RecQ-like type 3|Werner syndrome ATP-dependent helicase|exonuclease WRN|recQ protein-like 2 20121230 -9606 7488 WS2B - - HGNC:12794|MIM:600193 1 1p21-p13.3 Waardenburg syndrome, type 2B unknown WS2B Waardenburg syndrome, type 2B O - 20120622 -9606 7489 WSN - BGMR HGNC:12795|MIM:311510 X Xq27.3-qter Waisman syndrome unknown WSN Waisman syndrome O - 20120622 -9606 7490 WT1 - AWT1|EWS-WT1|GUD|NPHS4|WAGR|WIT-2|WT33 HGNC:12796|MIM:607102|Ensembl:ENSG00000184937|HPRD:06163|Vega:OTTHUMG00000039556 11 11p13 Wilms tumor 1 protein-coding WT1 Wilms tumor 1 O Wilms tumor protein|amino-terminal domain of EWS|last three zinc fingers of the DNA-binding domain of WT1 20121230 -9606 7491 WT2 - ADCR|MTACR1 HGNC:12797|MIM:194071 11 11p15.5 Wilms tumor 2 unknown WT2 Wilms tumor 2 O - 20120913 -9606 7492 WTS - MRXS6 HGNC:12798|MIM:309585 X Xp11.3-q21 Wilson-Turner X-linked mental retardation syndrome unknown WTS Wilson-Turner X-linked mental retardation syndrome O - 20120622 -9606 7493 WWS - - HGNC:12800|MIM:314580 X Xq11-q22 Wieacker-Wolff syndrome unknown WWS Wieacker-Wolff syndrome O - 20120622 -9606 7494 XBP1 - TREB5|XBP-1|XBP2 HGNC:12801|MIM:194355|Ensembl:ENSG00000100219|HPRD:01908|Vega:OTTHUMG00000151094 22 22q12.1|22q12 X-box binding protein 1 protein-coding XBP1 X-box binding protein 1 O X-box-binding protein 1|tax-responsive element-binding protein 5 20121230 -9606 7495 XBP1P1 - XBP|XBP1|XBPP1 HGNC:12802 5 5q22.2 X-box binding protein 1 pseudogene 1 pseudo XBP1P1 X-box binding protein 1 pseudogene 1 O - 20121230 -9606 7497 XCE - XCA|XITE HGNC:12804|MIM:300074 X Xq13 X chromosome controlling element other XCE X chromosome controlling element O - 20110324 -9606 7498 XDH - XO|XOR HGNC:12805|MIM:607633|Ensembl:ENSG00000158125|HPRD:06363|Vega:OTTHUMG00000099385 2 2p23.1 xanthine dehydrogenase protein-coding XDH xanthine dehydrogenase O xanthene dehydrogenase|xanthine dehydrogenase/oxidase|xanthine oxidase|xanthine oxidoreductase 20121230 -9606 7499 XG - PBDX HGNC:12806|MIM:300879|Ensembl:ENSG00000124343|HPRD:02443|Vega:OTTHUMG00000021075 X Xp22.33 Xg blood group protein-coding XG Xg blood group O XG glycoprotein|Xg blood group (pseudoautosomal boundary-divided on the X chromosome)|glycoprotein Xg 20121230 -9606 7500 XGPY - XGPY1 HGNC:12807 Y Yq11.21 Xg pseudogene, Y-linked pseudo XGPY Xg pseudogene, Y-linked O - 20121230 -9606 7501 XGR - YG HGNC:12808|MIM:314705|MIM:489500 X|Y Xp22.32 and Yp11 XG and CD99 regulator other XGR XG and CD99 regulator O - 20110702 -9606 7502 XIC - SXI1|XCE|XIST HGNC:12809 X Xq12-q13 X chromosome inactivation center other XIC X chromosome inactivation center O - 20080828 -9606 7503 XIST - DXS1089|DXS399E|LINC00001|NCRNA00001|SXI1|swd66 HGNC:12810|MIM:314670 X Xq13.2 X (inactive)-specific transcript (non-protein coding) miscRNA XIST X (inactive)-specific transcript (non-protein coding) O - 20121230 -9606 7504 XK - KX|MCLDS|X1k|XKR1 HGNC:12811|MIM:314850|Ensembl:ENSG00000047597|HPRD:02444|Vega:OTTHUMG00000033171 X Xp21.1 X-linked Kx blood group (McLeod syndrome) protein-coding XK X-linked Kx blood group (McLeod syndrome) O Kell blood group precursor (McLeod phenotype)|Kx antigen|XK, Kell blood group complex subunit (McLeod syndrome)|XK-related protein 1|kell complex 37 kDa component|membrane transport protein XK 20121230 -9606 7506 XM - - HGNC:12813|MIM:314900 X Xq28 Xm(a) antigen unknown XM Xm(a) antigen O - 20110215 -9606 7507 XPA - XP1|XPAC HGNC:12814|MIM:611153|Ensembl:ENSG00000136936|HPRD:02045|Vega:OTTHUMG00000020330 9 9q22.3 xeroderma pigmentosum, complementation group A protein-coding XPA xeroderma pigmentosum, complementation group A O DNA repair protein complementing XP-A cells|excision repair-controlling|xeroderma pigmentosum group A-complementing protein 20121230 -9606 7508 XPC - RAD4|XP3|XPCC HGNC:12816|MIM:613208|Ensembl:ENSG00000154767|HPRD:02046|Vega:OTTHUMG00000155526 3 3p25 xeroderma pigmentosum, complementation group C protein-coding XPC xeroderma pigmentosum, complementation group C O DNA repair protein complementing XP-C cells|mutant xeroderma pigmentosum group C|p125 20121230 -9606 7511 XPNPEP1 RP11-451M19.1 APP1|SAMP|XPNPEP|XPNPEPL|XPNPEPL1 HGNC:12822|MIM:602443|Ensembl:ENSG00000108039|HPRD:03899|Vega:OTTHUMG00000019029 10 10q25.3 X-prolyl aminopeptidase (aminopeptidase P) 1, soluble protein-coding XPNPEP1 X-prolyl aminopeptidase (aminopeptidase P) 1, soluble O X-Pro aminopeptidase 1|X-prolyl aminopeptidase 1, soluble|aminoacylproline aminopeptidase|aminopeptidase P, cytosolic|cytosolic aminopeptidase P|soluble aminopeptidase P|xaa-Pro aminopeptidase 1 20121230 -9606 7512 XPNPEP2 RP4-753P9.2 APP2 HGNC:12823|MIM:300145|Ensembl:ENSG00000122121|HPRD:02144|Vega:OTTHUMG00000022373 X Xq25 X-prolyl aminopeptidase (aminopeptidase P) 2, membrane-bound protein-coding XPNPEP2 X-prolyl aminopeptidase (aminopeptidase P) 2, membrane-bound O X-Pro aminopeptidase 2|aminoacylproline aminopeptidase|mAmP|membrane-bound APP|membrane-bound AmP|membrane-bound aminopeptidase P|xaa-Pro aminopeptidase 2 20121230 -9606 7514 XPO1 - CRM1|emb|exp1 HGNC:12825|MIM:602559|Ensembl:ENSG00000082898|HPRD:03975|Vega:OTTHUMG00000152316 2 2p15 exportin 1 (CRM1 homolog, yeast) protein-coding XPO1 exportin 1 (CRM1 homolog, yeast) O CRM1, yeast, homolog|chromosome region maintenance 1 protein homolog|exportin 1 (CRM1, yeast, homolog)|exportin-1|exportin-1 (required for chromosome region maintenance) 20121230 -9606 7515 XRCC1 - RCC HGNC:12828|MIM:194360|Ensembl:ENSG00000073050|HPRD:01909 19 19q13.2 X-ray repair complementing defective repair in Chinese hamster cells 1 protein-coding XRCC1 X-ray repair complementing defective repair in Chinese hamster cells 1 O DNA repair protein XRCC1|X-ray repair cross-complementing protein 1|X-ray-repair, complementing defective, repair in Chinese hamster 20121230 -9606 7516 XRCC2 - - HGNC:12829|MIM:600375|Ensembl:ENSG00000196584|HPRD:02656|Vega:OTTHUMG00000151470 7 7q36.1 X-ray repair complementing defective repair in Chinese hamster cells 2 protein-coding XRCC2 X-ray repair complementing defective repair in Chinese hamster cells 2 O DNA repair protein XRCC2|X-ray repair cross-complementing protein 2|X-ray repair, complementing defective, repair in Chinese hamster 20121230 -9606 7517 XRCC3 - CMM6 HGNC:12830|MIM:600675|Ensembl:ENSG00000126215|HPRD:07201|Vega:OTTHUMG00000169228 14 14q32.3 X-ray repair complementing defective repair in Chinese hamster cells 3 protein-coding XRCC3 X-ray repair complementing defective repair in Chinese hamster cells 3 O DNA repair protein XRCC3|X-ray repair cross-complementing protein 3 20121230 -9606 7518 XRCC4 - - HGNC:12831|MIM:194363|Ensembl:ENSG00000152422|HPRD:15951|Vega:OTTHUMG00000131319 5 5q14.2 X-ray repair complementing defective repair in Chinese hamster cells 4 protein-coding XRCC4 X-ray repair complementing defective repair in Chinese hamster cells 4 O DNA repair protein XRCC4|X-ray repair cross-complementing protein 4|X-ray repair, complementing defective, repair in Chinese hamster 20121230 -9606 7520 XRCC5 - KARP-1|KARP1|KU80|KUB2|Ku86|NFIV HGNC:12833|MIM:194364|Ensembl:ENSG00000079246|HPRD:08935|Vega:OTTHUMG00000133059 2 2q35 X-ray repair complementing defective repair in Chinese hamster cells 5 (double-strand-break rejoining) protein-coding XRCC5 X-ray repair complementing defective repair in Chinese hamster cells 5 (double-strand-break rejoining) O 86 kDa subunit of Ku antigen|ATP-dependent DNA helicase 2 subunit 2|ATP-dependent DNA helicase II 80 kDa subunit|CTC box-binding factor 85 kDa subunit|CTC85|CTCBF|DNA repair protein XRCC5|Ku autoantigen, 80kDa|Ku86 autoantigen related protein 1|TLAA|X-ray repair cross-complementing protein 5|lupus Ku autoantigen protein p86|nuclear factor IV|thyroid-lupus autoantigen 20121230 -9606 7521 XRCC8 - - HGNC:12834 - - X-ray repair complementing defective repair in Chinese hamster cells 8 protein-coding XRCC8 X-ray repair complementing defective repair in Chinese hamster cells 8 O - 20080828 -9606 7523 XS - LUXS HGNC:12837|MIM:309050 X Xp21.2-q21.1 X-linked suppressor of LU antigens unknown XS X-linked suppressor of LU antigens O - 20110814 -9606 7524 XWNPEP - - HGNC:12838 - - X-tryptophanyl aminopeptidase protein-coding XWNPEP X-tryptophanyl aminopeptidase O X-tryptophanyl aminopeptidase (aminopeptidase W)|aminopeptidase W 20120713 -9606 7525 YES1 - HsT441|P61-YES|Yes|c-yes HGNC:12841|MIM:164880|Ensembl:ENSG00000176105|HPRD:01285|Vega:OTTHUMG00000131472 18 18p11.31-p11.21 v-yes-1 Yamaguchi sarcoma viral oncogene homolog 1 protein-coding YES1 v-yes-1 Yamaguchi sarcoma viral oncogene homolog 1 O Yamaguchi sarcoma oncogene|cellular yes-1 protein|proto-oncogene c-Yes|proto-oncogene tyrosine-protein kinase YES|tyrosine-protein kinase Yes 20121230 -9606 7526 YESP - D22S670|SYR|YES2 HGNC:12842 22 22q12.1 v-yes-1 Yamaguchi sarcoma viral oncogene homolog pseudogene pseudo YESP v-yes-1 Yamaguchi sarcoma viral oncogene homolog pseudogene O - 20121230 -9606 7528 YY1 - DELTA|INO80S|NF-E1|UCRBP|YIN-YANG-1 HGNC:12856|MIM:600013|Ensembl:ENSG00000100811|HPRD:02482|Vega:OTTHUMG00000150479 14 14q YY1 transcription factor protein-coding YY1 YY1 transcription factor O INO80 complex subunit S|YY-1|Yin and Yang 1 protein|delta transcription factor|transcriptional repressor protein YY1 20121230 -9606 7529 YWHAB RP1-148E22.1 GW128|HS1|KCIP-1|YWHAA HGNC:12849|MIM:601289|Ensembl:ENSG00000166913|HPRD:03184|Vega:OTTHUMG00000032549 20 20q13.1 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, beta polypeptide protein-coding YWHAB tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, beta polypeptide O 14-3-3 alpha|14-3-3 protein beta/alpha|brain protein 14-3-3, beta isoform|protein 1054|protein kinase C inhibitor protein 1|protein kinase C inhibitor protein-1|tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, alpha polypeptide 20121230 -9606 7531 YWHAE - 14-3-3E|KCIP-1|MDCR|MDS HGNC:12851|MIM:605066|Ensembl:ENSG00000108953|HPRD:05457|Vega:OTTHUMG00000134316 17 17p13.3 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide protein-coding YWHAE tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide O 14-3-3 epsilon|14-3-3 protein epsilon|mitochondrial import stimulation factor L subunit|protein kinase C inhibitor protein-1|tyrosine 3/tryptophan 5 -monooxygenase activation protein, epsilon polypeptide 20121230 -9606 7532 YWHAG - 14-3-3GAMMA HGNC:12852|MIM:605356|Ensembl:ENSG00000170027|HPRD:05639|Vega:OTTHUMG00000022862 7 7q11.23 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, gamma polypeptide protein-coding YWHAG tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, gamma polypeptide O 14-3-3 gamma|14-3-3 protein gamma|KCIP-1|protein kinase C inhibitor protein 1 20121230 -9606 7533 YWHAH LL22NC03-44A4.1 YWHA1 HGNC:12853|MIM:113508|Ensembl:ENSG00000128245|HPRD:00215|Vega:OTTHUMG00000030833 22 22q12.3 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, eta polypeptide protein-coding YWHAH tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, eta polypeptide O 14-3-3 eta|14-3-3 protein eta 20121230 -9606 7534 YWHAZ - 14-3-3-zeta|KCIP-1|YWHAD HGNC:12855|MIM:601288|Ensembl:ENSG00000164924|HPRD:03183|Vega:OTTHUMG00000134291 8 8q23.1 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta polypeptide protein-coding YWHAZ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta polypeptide O 14-3-3 delta|14-3-3 protein zeta/delta|14-3-3 protein/cytosolic phospholipase A2|14-3-3 zeta|phospholipase A2|protein kinase C inhibitor protein 1|protein kinase C inhibitor protein-1|tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, delta polypeptide|tyrosine 3/tryptophan 5 -monooxygenase activation protein, zeta polypeptide 20121230 -9606 7535 ZAP70 - SRK|STCD|STD|TZK|ZAP-70 HGNC:12858|MIM:176947|Ensembl:ENSG00000115085|HPRD:01495|Vega:OTTHUMG00000153060 2 2q12 zeta-chain (TCR) associated protein kinase 70kDa protein-coding ZAP70 zeta-chain (TCR) associated protein kinase 70kDa O 70 kDa zeta-associated protein|70 kDa zeta-chain associated protein|syk-related tyrosine kinase|tyrosine-protein kinase ZAP-70|zeta-chain associated protein kinase, 70kD 20121230 -9606 7536 SF1 - BBP|D11S636|MBBP|ZFM1|ZNF162 HGNC:12950|MIM:601516|Ensembl:ENSG00000168066|HPRD:03306|Vega:OTTHUMG00000066833 11 11q13 splicing factor 1 protein-coding SF1 splicing factor 1 O mammalian branch point-binding protein|transcription factor ZFM1|zinc finger gene in MEN1 locus|zinc finger protein 162 20121230 -9606 7538 ZFP36 - G0S24|GOS24|NUP475|RNF162A|TIS11|TTP|zfp-36 HGNC:12862|MIM:190700|Ensembl:ENSG00000128016|HPRD:01835 19 19q13.1 ZFP36 ring finger protein protein-coding ZFP36 ZFP36 ring finger protein O G0/G1 switch regulatory protein 24|growth factor-inducible nuclear protein NUP475|tristetraprolin|tristetraproline|zinc finger protein 36 homolog|zinc finger protein 36, C3H type, homolog|zinc finger protein, C3H type, 36 homolog 20121230 -9606 7539 ZFP37 - ZNF906 HGNC:12863|MIM:602951|Ensembl:ENSG00000136866|HPRD:04258|Vega:OTTHUMG00000021019 9 9q32 ZFP37 zinc finger protein protein-coding ZFP37 ZFP37 zinc finger protein O Zinc finger protein-37, mouse, homolog of|zfp-37|zinc finger protein 37 homolog|zinc finger protein homologous to Zfp37 in mouse 20121230 -9606 7541 ZFP161 - ZBTB14|ZF5|ZFP-161|ZFP-5|ZNF478 HGNC:12860|MIM:602126|Ensembl:ENSG00000198081|HPRD:03674|Vega:OTTHUMG00000131563 18 18pter-p11.21 ZFP161 zinc finger protein protein-coding ZFP161 ZFP161 zinc finger protein O zinc finger and BTB domain-containing protein 14|zinc finger protein 161 homolog|zinc finger protein 478|zinc finger protein 5 homolog|zinc finger protein homologous to Zfp161 in mouse 20121230 -9606 7542 ZFPL1 - D11S750|MCG4 HGNC:12868|Ensembl:ENSG00000162300|HPRD:15729|Vega:OTTHUMG00000165597 11 11q13 zinc finger protein-like 1 protein-coding ZFPL1 zinc finger protein-like 1 O zinc finger protein MCG4|zinc-finger protein in MEN1 region 20121230 -9606 7543 ZFX - ZNF926 HGNC:12869|MIM:314980|Ensembl:ENSG00000005889|HPRD:02445|Vega:OTTHUMG00000021264 X Xp21.3 zinc finger protein, X-linked protein-coding ZFX zinc finger protein, X-linked O X-linked zinc finger protein|zinc finger X-chromosomal protein 20121230 -9606 7544 ZFY - ZNF911 HGNC:12870|MIM:490000|Ensembl:ENSG00000067646|HPRD:02466|Vega:OTTHUMG00000036159 Y Yp11.3 zinc finger protein, Y-linked protein-coding ZFY zinc finger protein, Y-linked O zinc finger Y-chromosomal protein 20121230 -9606 7545 ZIC1 - ZIC|ZNF201 HGNC:12872|MIM:600470|Ensembl:ENSG00000152977|HPRD:02718|Vega:OTTHUMG00000159456 3 3q24 Zic family member 1 protein-coding ZIC1 Zic family member 1 O Zic family member 1 (odd-paired homolog, Drosophila)|Zinc finger protein of the cerebellum 1|zinc finger protein 201|zinc finger protein ZIC 1 20121230 -9606 7546 ZIC2 - HPE5 HGNC:12873|MIM:603073|Ensembl:ENSG00000043355|HPRD:04353|Vega:OTTHUMG00000017279 13 13q32 Zic family member 2 protein-coding ZIC2 Zic family member 2 O Zic family member 2 (odd-paired homolog, Drosophila)|Zinc finger protein of the cerebellum 2|zinc finger protein ZIC 2 20121230 -9606 7547 ZIC3 RP1-137H15.3 HTX|HTX1|VACTERLX|ZNF203 HGNC:12874|MIM:300265|Ensembl:ENSG00000156925|HPRD:02225|Vega:OTTHUMG00000022525 X Xq26.2 Zic family member 3 protein-coding ZIC3 Zic family member 3 O Zic family member 3 (odd-paired homolog, Drosophila)|heterotaxy 1|zinc finger protein 203|zinc finger protein ZIC 3|zinc finger protein of the cerebellum 3 20121230 -9606 7549 ZNF2 - A1-5|ZNF661|Zfp661 HGNC:12991|MIM:194500|Ensembl:ENSG00000163067|HPRD:11834|Vega:OTTHUMG00000155150 2 2q11.2 zinc finger protein 2 protein-coding ZNF2 zinc finger protein 2 O zinc finger protein 2.2|zinc finger protein 661 20121230 -9606 7551 ZNF3 - A8-51|HF.12|KOX25|PP838|Zfp113 HGNC:13089|MIM:194510|Ensembl:ENSG00000166526|HPRD:01911|Vega:OTTHUMG00000154596 7 7q22.1 zinc finger protein 3 protein-coding ZNF3 zinc finger protein 3 O C2-H2 type zinc finger protein|HZF3.1|zinc finger protein HF.12|zinc finger protein HZF3.1|zinc finger protein KOX25 20121230 -9606 7552 ZNF711 - CMPX1|MRX97|ZNF4|ZNF5|ZNF6|Zfp711|dJ75N13.1 HGNC:13128|MIM:314990|Ensembl:ENSG00000147180|HPRD:02446|Vega:OTTHUMG00000021933 X Xq21.1 zinc finger protein 711 protein-coding ZNF711 zinc finger protein 711 O dJ75N13.1 (znf6-like)|zinc finger protein 6 (CMPX1) 20121230 -9606 7553 ZNF7 - HF.16|KOX4|zf30 HGNC:13139|MIM:194531|Ensembl:ENSG00000147789|HPRD:01918|Vega:OTTHUMG00000165200 8 8q24 zinc finger protein 7 protein-coding ZNF7 zinc finger protein 7 O C2-H2 type zinc finger protein|Zinc finger protein-7 (KOX4)|zinc finger protein 7 (KOX 4, clone HF.16)|zinc finger protein HF.16|zinc finger protein KOX4|zinc finger protein zfp30 20121230 -9606 7554 ZNF8 - HF.18|Zfp128 HGNC:13154|MIM:194532|Ensembl:ENSG00000083842|HPRD:01919|Vega:OTTHUMG00000182073 19 19q13.43 zinc finger protein 8 protein-coding ZNF8 zinc finger protein 8 O zinc finger protein 272|zinc finger protein 8 (clone HF.18)|zinc finger protein HF.18 20121230 -9606 7555 CNBP - CNBP1|DM2|PROMM|RNF163|ZCCHC22|ZNF9 HGNC:13164|MIM:116955|Ensembl:ENSG00000169714|HPRD:00311|Vega:OTTHUMG00000159943 3 3q21 CCHC-type zinc finger, nucleic acid binding protein protein-coding CNBP CCHC-type zinc finger, nucleic acid binding protein O cellular nucleic acid binding protein|cellular nucleic acid-binding protein|erythroid differentiation-related|sterol regulatory element-binding protein|zinc finger protein 273|zinc finger protein 9 (a cellular retroviral nucleic acid binding protein) 20121230 -9606 7556 ZNF10 - KOX1 HGNC:12879|MIM:194538|Ensembl:ENSG00000256223|HPRD:01923|Vega:OTTHUMG00000167944 12 12q24.33 zinc finger protein 10 protein-coding ZNF10 zinc finger protein 10 O zinc finger protein 10 (KOX 1)|zinc finger protein KOX1 20121230 -9606 7559 ZNF12 - GIOT-3|HZF11|KOX3|ZNF325 HGNC:12902|MIM:194536|Ensembl:ENSG00000164631|HPRD:11835|HPRD:15773|Vega:OTTHUMG00000151910 7 7p22.1 zinc finger protein 12 protein-coding ZNF12 zinc finger protein 12 O gonadotropin inducible transcription repressor 3|gonadotropin-inducible ovary transcription repressor 3|zinc finger protein 11|zinc finger protein 325|zinc finger protein KOX3 20121230 -9606 7561 ZNF14 - GIOT-4|KOX6 HGNC:12924|MIM:194556|Ensembl:ENSG00000105708|HPRD:01933|Vega:OTTHUMG00000182362 19 19p13.11 zinc finger protein 14 protein-coding ZNF14 zinc finger protein 14 O gonadotropin inducible transcription repressor-4|gonadotropin-inducible ovary transcription repressor 4|zinc finger protein 14 (KOX 6)|zinc finger protein KOX6 20121230 -9606 7562 ZNF708 - KOX8|ZNF15|ZNF15L1 HGNC:12945|Ensembl:ENSG00000182141|HPRD:18322 19 19p12 zinc finger protein 708 protein-coding ZNF708 zinc finger protein 708 O zinc finger protein 15|zinc finger protein 15-like 1 (KOX 8)|zinc finger protein KOX8 20121230 -9606 7564 ZNF16 - HZF1|KOX9 HGNC:12947|MIM:601262|Ensembl:ENSG00000170631|HPRD:03163|Vega:OTTHUMG00000165253 8 8q24 zinc finger protein 16 protein-coding ZNF16 zinc finger protein 16 O zinc finger protein KOX9|zinc finger protein Kruppel type 9 20121230 -9606 7565 ZNF17 - HPF3|KOX10 HGNC:12958|Ensembl:ENSG00000186272|HPRD:18323 19 19q13.4 zinc finger protein 17 protein-coding ZNF17 zinc finger protein 17 O zinc finger protein 17 (HPF3, KOX 10)|zinc finger protein HPF3|zinc finger protein KOX10 20121230 -9606 7566 ZNF18 - HDSG1|KOX11|ZKSCAN6|ZNF535|Zfp535 HGNC:12969|MIM:194524|Ensembl:ENSG00000154957|HPRD:01913|Vega:OTTHUMG00000178307 17 17p11.2 zinc finger protein 18 protein-coding ZNF18 zinc finger protein 18 O heart development-specific gene 1 protein|heart development-specific protein|zinc finger protein 18 (KOX 11)|zinc finger protein 535|zinc finger protein KOX11|zinc finger protein with KRAB and SCAN domains 6 20121230 -9606 7567 ZNF19 - KOX12 HGNC:12981|MIM:194525|Ensembl:ENSG00000157429|HPRD:01914|Vega:OTTHUMG00000137593 16 16q22 zinc finger protein 19 protein-coding ZNF19 zinc finger protein 19 O zinc finger protein 19 (KOX 12)|zinc finger protein KOX12 20121230 -9606 7568 ZNF20 - KOX13 HGNC:12992|MIM:194557|Ensembl:ENSG00000132010|Vega:OTTHUMG00000156409 19 19p13.2 zinc finger protein 20 protein-coding ZNF20 zinc finger protein 20 O zinc finger protein KOX13 20121230 -9606 7569 ZNF182 RP1-54B20.4 HHZ150|KOX14|ZNF21|Zfp182 HGNC:13001|MIM:314993|Ensembl:ENSG00000147118|HPRD:11781|Vega:OTTHUMG00000021460 X Xp11.23 zinc finger protein 182 protein-coding ZNF182 zinc finger protein 182 O zinc finger protein 21 (KOX 14)|zinc finger protein KOX14 20121230 -9606 7570 ZNF22 RP11-285G1.13-001 HKR-T1|KOX15|ZNF422|Zfp422 HGNC:13012|MIM:194529|Ensembl:ENSG00000165512|HPRD:01917|Vega:OTTHUMG00000018064 10 10q11 zinc finger protein 22 protein-coding ZNF22 zinc finger protein 22 O krox-26 protein|zinc finger protein 22 (KOX 15)|zinc finger protein KOX15|zinc finger protein Krox-26 20121230 -9606 7571 ZNF23 - KOX16|ZNF359|ZNF612|Zfp612 HGNC:13023|MIM:194527|Ensembl:ENSG00000167377|HPRD:01915|Vega:OTTHUMG00000176797 16 16q22 zinc finger protein 23 protein-coding ZNF23 zinc finger protein 23 O kruppel-like zinc finger factor X31|zinc finger protein 23 (KOX 16)|zinc finger protein 32|zinc finger protein 359|zinc finger protein 612|zinc finger protein KOX16 20121230 -9606 7572 ZNF24 - KOX17|RSG-A|ZNF191|ZSCAN3|Zfp191 HGNC:13032|MIM:194534|Ensembl:ENSG00000172466|HPRD:01921|Vega:OTTHUMG00000132565 18 18q12 zinc finger protein 24 protein-coding ZNF24 zinc finger protein 24 O lacks zinc finger domain|retinoic acid suppression protein A|zinc finger and SCAN domain-containing protein 3|zinc finger protein 191|zinc finger protein 24 (KOX 17)|zinc finger protein KOX17 20121230 -9606 7574 ZNF26 - KOX20 HGNC:13053|MIM:194537|Ensembl:ENSG00000198393|HPRD:01922|Vega:OTTHUMG00000167936 12 12q24.33 zinc finger protein 26 protein-coding ZNF26 zinc finger protein 26 O zinc finger protein KOX20 20121230 -9606 7576 ZNF28 - KOX24 HGNC:13073|Ensembl:ENSG00000198538|HPRD:18507|Vega:OTTHUMG00000154564 19 19q13.41 zinc finger protein 28 protein-coding ZNF28 zinc finger protein 28 O zinc finger protein KOX24 20121230 -9606 7577 ZNF29P - KOX26|ZNF29 HGNC:13080|MIM:194535 17 17p12 zinc finger protein 29, pseudogene pseudo ZNF29P zinc finger protein 29, pseudogene O - 20121230 -9606 7579 ZSCAN20 RP4-580O19.1 KOX29|ZFP-31|ZNF31|ZNF360 HGNC:13093|MIM:611315|Ensembl:ENSG00000121903|HPRD:15769|Vega:OTTHUMG00000004173 1 1p34.3 zinc finger and SCAN domain containing 20 protein-coding ZSCAN20 zinc finger and SCAN domain containing 20 O zinc finger and SCAN domain-containing protein 20|zinc finger protein 31|zinc finger protein 360|zinc finger protein KOX29 20121230 -9606 7580 ZNF32 - KOX30 HGNC:13095|MIM:194539|Ensembl:ENSG00000169740|HPRD:01924|Vega:OTTHUMG00000018043 10 10q22-q25 zinc finger protein 32 protein-coding ZNF32 zinc finger protein 32 O C2H2-546|zinc finger protein 32 (KOX 30)|zinc finger protein KOX30 20121230 -9606 7581 ZNF33A - KOX2|KOX31|KOX5|NF11A|ZNF11|ZNF11A|ZNF33|ZZAPK HGNC:13096|MIM:194521|Ensembl:ENSG00000189180|HPRD:11710|Vega:OTTHUMG00000017983 10 10p11.2 zinc finger protein 33A protein-coding ZNF33A zinc finger protein 33A O brain my041 protein|zinc finger and ZAK-associated protein with KRAB domain|zinc finger protein 11A|zinc finger protein 33a (KOX 31)|zinc finger protein KOX31 20121230 -9606 7582 ZNF33B - KOX2|KOX31|ZNF11B HGNC:13097|MIM:194522|Ensembl:ENSG00000196693|HPRD:01912|Vega:OTTHUMG00000018014 10 10q11.2 zinc finger protein 33B protein-coding ZNF33B zinc finger protein 33B O zinc finger protein 11b (KOX 2)|zinc finger protein 33b (KOX 31)|zinc finger protein KOX2 20121230 -9606 7584 ZNF35 - HF.10|HF10|Zfp105 HGNC:13099|MIM:194533|Ensembl:ENSG00000169981|HPRD:01920|Vega:OTTHUMG00000133091 3 3p21.32 zinc finger protein 35 protein-coding ZNF35 zinc finger protein 35 O zinc finger protein 35 (clone HF.10)|zinc finger protein HF.10 20121230 -9606 7586 ZKSCAN1 - 9130423L19Rik|KOX18|PHZ-37|ZNF139|ZNF36 HGNC:13101|MIM:601260|Ensembl:ENSG00000106261|HPRD:03161|Vega:OTTHUMG00000156534 7 7q22 zinc finger with KRAB and SCAN domains 1 protein-coding ZKSCAN1 zinc finger with KRAB and SCAN domains 1 O zinc finger protein 139|zinc finger protein 36 (KOX 18)|zinc finger protein KOX18|zinc finger protein with KRAB and SCAN domains 1 20121230 -9606 7587 ZNF37A - KOX21|ZNF37 HGNC:13102|Ensembl:ENSG00000075407|HPRD:18508|Vega:OTTHUMG00000017990 10 10p11.2 zinc finger protein 37A protein-coding ZNF37A zinc finger protein 37A O zinc finger protein 37a (KOX 21)|zinc finger protein KOX21 20121230 -9606 7589 ZSCAN21 - NY-REN-21|ZNF38|Zipro1 HGNC:13104|MIM:601261|Ensembl:ENSG00000166529|HPRD:03162|Vega:OTTHUMG00000154583 7 7q22.1 zinc finger and SCAN domain containing 21 protein-coding ZSCAN21 zinc finger and SCAN domain containing 21 O renal carcinoma antigen NY-REN-21|zfp-38|zinc finger and SCAN domain-containing protein 21|zinc finger protein 38 (KOX 25)|zinc finger protein 38 homolog|zinc finger protein NY-REN-21 antigen 20121230 -9606 7592 ZNF41 RP13-479F17.4 MRX89 HGNC:13107|MIM:314995|Ensembl:ENSG00000147124|HPRD:02447|Vega:OTTHUMG00000021448 X Xp11.23 zinc finger protein 41 protein-coding ZNF41 zinc finger protein 41 O - 20121230 -9606 7593 MZF1 - MZF-1|MZF1B|ZFP98|ZNF42|ZSCAN6 HGNC:13108|MIM:194550|Ensembl:ENSG00000099326|HPRD:01930 19 19q13.4 myeloid zinc finger 1 protein-coding MZF1 myeloid zinc finger 1 O zinc finger and SCAN domain-containing protein 6|zinc finger protein 42 (myeloid-specific retinoic acid-responsive) 20121230 -9606 7594 ZNF43 - HTF6|KOX27|ZNF39L1 HGNC:13109|MIM:603972|Ensembl:ENSG00000198521|HPRD:04917|Vega:OTTHUMG00000128543 19 19p13.1-p12 zinc finger protein 43 protein-coding ZNF43 zinc finger protein 43 O zinc finger protein 39-like 1 (KOX 27)|zinc finger protein HTF6|zinc finger protein KOX27 20121230 -9606 7596 ZNF45 - KOX5|ZNF13 HGNC:13111|MIM:194554|Ensembl:ENSG00000124459|HPRD:03469|Vega:OTTHUMG00000182189 19 19q13.2 zinc finger protein 45 protein-coding ZNF45 zinc finger protein 45 O BRC1744|zinc finger protein 13|zinc finger protein 45 (a Kruppel-associated box (KRAB) domain polypeptide)|zinc finger protein KOX5 20121230 -9606 7597 ZBTB25 - C14orf51|KUP|ZNF46 HGNC:13112|MIM:194541|Ensembl:ENSG00000089775|HPRD:01926|Vega:OTTHUMG00000141310 14 14q23-q24 zinc finger and BTB domain containing 25 protein-coding ZBTB25 zinc finger and BTB domain containing 25 O zinc finger and BTB domain-containing protein 25|zinc finger protein 46|zinc finger protein KUP 20121230 -9606 7608 ZNF56 - ZNF742 HGNC:13124 19 19p13.1 zinc finger protein 56 pseudo ZNF56 zinc finger protein 56 O - 20121230 -9606 7617 ZNF66P - ZNF66 HGNC:13135|HPRD:15890 19 19p12 zinc finger protein 66, pseudogene pseudo ZNF66P zinc finger protein 66, pseudogene O - 20121230 -9606 7618 ZNF726P1 - ZNF67|ZNF67P HGNC:13136 19 19p13.1 zinc finger protein 726 pseudogene 1 pseudo ZNF726P1 zinc finger protein 726 pseudogene 1 O - 20121230 -9606 7620 ZNF69 - Cos5 HGNC:13138|MIM:194543|Ensembl:ENSG00000198429|HPRD:11836|Vega:OTTHUMG00000156526 19 19p13.2 zinc finger protein 69 protein-coding ZNF69 zinc finger protein 69 O hZNF3 20121230 -9606 7621 ZNF70 - Cos17 HGNC:13140|MIM:194544|Ensembl:ENSG00000187792|HPRD:11837|Vega:OTTHUMG00000150739 22 22q11.23 zinc finger protein 70 protein-coding ZNF70 zinc finger protein 70 O zinc finger protein N27C7-1 20121230 -9606 7624 ZNF73 - Cos12|ZNF186|hZNF2 HGNC:13143|MIM:194547 22 22p zinc finger protein 73 protein-coding ZNF73 zinc finger protein 73 O zinc finger protein 186 20121211 -9606 7625 ZNF74 - COS52|ZFP520|ZNF520|hZNF7 HGNC:13144|MIM:194548|Ensembl:ENSG00000185252|HPRD:01928|Vega:OTTHUMG00000150687 22 22q11.21 zinc finger protein 74 protein-coding ZNF74 zinc finger protein 74 O zinc finger protein 520 20121230 -9606 7626 ZNF75D RP13-210D15.7 D8C6|ZNF75|ZNF82 HGNC:13145|MIM:314997|Ensembl:ENSG00000186376|HPRD:02448|Vega:OTTHUMG00000022482 X Xq26.3 zinc finger protein 75D protein-coding ZNF75D zinc finger protein 75D O zinc finger protein 75|zinc finger protein 82 20121230 -9606 7627 ZNF75A - - HGNC:13146|MIM:601473|Ensembl:ENSG00000162086|HPRD:03278|Vega:OTTHUMG00000129356 16 16p13.3 zinc finger protein 75a protein-coding ZNF75A zinc finger protein 75a O zinc finger protein 75A 20121230 -9606 7628 ZNF75BP - ZNF75B HGNC:13147 12 12q13 zinc finger protein 75B, pseudogene pseudo ZNF75BP zinc finger protein 75B, pseudogene O - 20121230 -9606 7629 ZNF76 RP3-329A5.7 D6S229E|ZNF523|Zfp523 HGNC:13149|MIM:194549|Ensembl:ENSG00000065029|HPRD:01929|Vega:OTTHUMG00000014564 6 6p21.31 zinc finger protein 76 protein-coding ZNF76 zinc finger protein 76 O zinc finger protein 523|zinc finger protein 76 (expressed in testis) 20121230 -9606 7633 ZNF79 - pT7 HGNC:13153|MIM:194552|Ensembl:ENSG00000196152|HPRD:01931|HPRD:01934|Vega:OTTHUMG00000020703 9 9q34 zinc finger protein 79 protein-coding ZNF79 zinc finger protein 79 O ZNFpT7 20121230 -9606 7634 ZNF80 - pT17 HGNC:13155|MIM:194553|Ensembl:ENSG00000174255|HPRD:01932|Vega:OTTHUMG00000159332 3 3q13.3 zinc finger protein 80 protein-coding ZNF80 zinc finger protein 80 O ZNFPT17 20121230 -9606 7637 ZNF84 - HPF2 HGNC:13159|Ensembl:ENSG00000198040|HPRD:15891|Vega:OTTHUMG00000167939 12 12q24.33 zinc finger protein 84 protein-coding ZNF84 zinc finger protein 84 O zinc finger protein HPF2 20121230 -9606 7638 ZNF221 - - HGNC:13014|Ensembl:ENSG00000159905|HPRD:10323|Vega:OTTHUMG00000182214 19 19q13.2 zinc finger protein 221 protein-coding ZNF221 zinc finger protein 221 O - 20121230 -9606 7639 ZNF85 - HPF4|HTF1 HGNC:13160|MIM:603899|Ensembl:ENSG00000105750|HPRD:04875 19 19p12 zinc finger protein 85 protein-coding ZNF85 zinc finger protein 85 O zinc finger protein 85 (HPF4, HTF1) 20121230 -9606 7643 ZNF90 hCG_2040651 HTF9 HGNC:13165|MIM:603973|Ensembl:ENSG00000213988|Vega:OTTHUMG00000158057 19 19p12 zinc finger protein 90 protein-coding ZNF90 zinc finger protein 90 O zinc finger protein HTF9 20121230 -9606 7644 ZNF91 - HPF7|HTF10 HGNC:13166|MIM:603971|Ensembl:ENSG00000167232|HPRD:04916 19 19p12 zinc finger protein 91 protein-coding ZNF91 zinc finger protein 91 O zinc finger protein 91 (HPF7, HTF10)|zinc finger protein HPF7|zinc finger protein HTF10 20121230 -9606 7652 ZNF99 - C19orf9|F8281 HGNC:13175|MIM:603981 19 19p12 zinc finger protein 99 protein-coding ZNF99 zinc finger protein 99 O zinc finger protein ENSP00000375192 20121230 -9606 7661 ZNF90P1 - ZNF108|ZNF108P HGNC:12888 3 3q13 zinc finger protein 90 pseudogene 1 pseudo ZNF90P1 zinc finger protein 90 pseudogene 1 O - 20121230 -9606 7673 ZNF222 - - HGNC:13015|Ensembl:ENSG00000159885|HPRD:15748|Vega:OTTHUMG00000182309 19 19q13.2 zinc finger protein 222 protein-coding ZNF222 zinc finger protein 222 O - 20121230 -9606 7675 ZNF121 - D19S204|ZHC32|ZNF20 HGNC:12904|MIM:194628|Ensembl:ENSG00000197961|HPRD:15952|Vega:OTTHUMG00000180134 19 19p zinc finger protein 121 protein-coding ZNF121 zinc finger protein 121 O zinc finger protein 121 (clone ZHC32)|zinc finger protein 20 20121230 -9606 7678 ZNF124 RP11-488L18.2 HZF-16|HZF16|ZK7 HGNC:12907|MIM:194631|Ensembl:ENSG00000196418|HPRD:01936|Vega:OTTHUMG00000041112 1 1q44 zinc finger protein 124 protein-coding ZNF124 zinc finger protein 124 O zinc finger protein HZF-16 20121230 -9606 7681 MKRN3 - D15S9|RNF63|ZFP127|ZNF127 HGNC:7114|MIM:603856|Ensembl:ENSG00000179455|HPRD:04836|Vega:OTTHUMG00000129160 15 15q11-q13 makorin ring finger protein 3 protein-coding MKRN3 makorin ring finger protein 3 O RING finger protein 63|probable E3 ubiquitin-protein ligase makorin-3|zinc finger protein 127 20121230 -9606 7682 MKRN4P - MKRN4|MKRNP5|RNF64|ZNF-Xp|ZNF127-Xp|ZNF127L1 HGNC:7115|HPRD:06661 X Xp21.1 makorin ring finger protein 4, pseudogene pseudo MKRN4P makorin ring finger protein 4, pseudogene O - 20121230 -9606 7683 MKRN5P - MKRNP1|ZNF-Xq|ZNF127L2 HGNC:7117 X Xq13 makorin ring finger protein 5, pseudogene pseudo MKRN5P makorin ring finger protein 5, pseudogene O - 20121230 -9606 7686 MKRN7P - MKRNP3|ZNF127L5|dJ981L23.2 HGNC:7119 20 20q13.12 makorin ring finger protein 7, pseudogene pseudo MKRN7P makorin ring finger protein 7, pseudogene O - 20121230 -9606 7690 ZNF131 - pHZ-10 HGNC:12915|MIM:604073|Ensembl:ENSG00000172262|Vega:OTTHUMG00000162223 5 5p12 zinc finger protein 131 protein-coding ZNF131 zinc finger protein 131 O zinc finger protein 131 (clone pHZ-10) 20121230 -9606 7691 ZNF132 - pHZ-12 HGNC:12916|MIM:604074|Ensembl:ENSG00000131849|HPRD:07240 19 19q13.4 zinc finger protein 132 protein-coding ZNF132 zinc finger protein 132 O - 20121230 -9606 7692 ZNF133 RP4-568F9.5 ZNF150|pHZ-13|pHZ-66 HGNC:12917|MIM:604075|Ensembl:ENSG00000125846|HPRD:04964|Vega:OTTHUMG00000031965 20 20p11.23 zinc finger protein 133 protein-coding ZNF133 zinc finger protein 133 O zinc finger protein 133 (clone pHZ-13)|zinc finger protein 150 (pHZ-66) 20121230 -9606 7693 ZNF134 - pHZ-15 HGNC:12918|MIM:604076|Ensembl:ENSG00000213762|HPRD:07241 19 19q13.4 zinc finger protein 134 protein-coding ZNF134 zinc finger protein 134 O zinc finger protein 134 (clone pHZ-15) 20121230 -9606 7694 ZNF135 - ZNF61|ZNF78L1|pHZ-17|pT3 HGNC:12919|MIM:604077|Ensembl:ENSG00000176293|HPRD:07242|Vega:OTTHUMG00000160719 19 19q13.4 zinc finger protein 135 protein-coding ZNF135 zinc finger protein 135 O zinc finger protein 135 (clone pHZ-17)|zinc finger protein 61|zinc finger protein 78-like 1 (pT3) 20121230 -9606 7695 ZNF136 - pHZ-20 HGNC:12920|MIM:604078|Ensembl:ENSG00000196646|HPRD:04965|Vega:OTTHUMG00000156429 19 19p13.2 zinc finger protein 136 protein-coding ZNF136 zinc finger protein 136 O - 20121230 -9606 7696 ZNF137P - ZNF137|pHZ-30 HGNC:12921|MIM:604079|HPRD:07243 19 19q13.4 zinc finger protein 137, pseudogene pseudo ZNF137P zinc finger protein 137, pseudogene O - 20121230 -9606 7697 ZNF138 - pHZ-32 HGNC:12922|MIM:604080|Ensembl:ENSG00000197008|HPRD:07244|Vega:OTTHUMG00000156603 7 7q11.21 zinc finger protein 138 protein-coding ZNF138 zinc finger protein 138 O zinc finger protein 138 (clone pHZ-32) 20121230 -9606 7699 ZNF140 - pHZ-39 HGNC:12925|MIM:604082|Ensembl:ENSG00000196387|HPRD:04966|Vega:OTTHUMG00000167942 12 12q24.33 zinc finger protein 140 protein-coding ZNF140 zinc finger protein 140 O - 20121230 -9606 7700 ZNF141 - D4S90|pHZ-44 HGNC:12926|MIM:194648|Ensembl:ENSG00000131127|HPRD:01937|Vega:OTTHUMG00000159852 4 4p16.3 zinc finger protein 141 protein-coding ZNF141 zinc finger protein 141 O zinc finger protein 141 (clone pHZ-44) 20121230 -9606 7701 ZNF142 - pHZ-49 HGNC:12927|MIM:604083|Ensembl:ENSG00000115568|HPRD:04967|Vega:OTTHUMG00000154736 2 2q35 zinc finger protein 142 protein-coding ZNF142 zinc finger protein 142 O HA4654|zinc finger protein 142 (clone pHZ-49) 20121230 -9606 7702 ZNF143 - SBF|STAF|pHZ-1 HGNC:12928|MIM:603433|Ensembl:ENSG00000166478|HPRD:04578|Vega:OTTHUMG00000149922 11 11p15.4 zinc finger protein 143 protein-coding ZNF143 zinc finger protein 143 O SPH-binding factor|hStaf|selenocysteine tRNA gene transcription-activating factor|transcriptional activator Staf 20121230 -9606 7703 PCGF2 - MEL-18|RNF110|ZNF144 HGNC:12929|MIM:600346|Ensembl:ENSG00000056661|HPRD:10621|Vega:OTTHUMG00000178505 17 17q12 polycomb group ring finger 2 protein-coding PCGF2 polycomb group ring finger 2 O DNA-binding protein Mel-18|polycomb group RING finger protein 2|ring finger protein 110|zinc finger protein 144 20121230 -9606 7704 ZBTB16 - PLZF|ZNF145 HGNC:12930|MIM:176797|Ensembl:ENSG00000109906|HPRD:11762|Vega:OTTHUMG00000168243 11 11q23.1 zinc finger and BTB domain containing 16 protein-coding ZBTB16 zinc finger and BTB domain containing 16 O zinc finger and BTB domain-containing protein 16|zinc finger protein 145 (Kruppel-like, expressed in promyelocytic leukemia)|zinc finger protein PLZF 20121230 -9606 7705 ZNF146 - OZF HGNC:12931|MIM:601505|Ensembl:ENSG00000167635|HPRD:03296|Vega:OTTHUMG00000180511 19 19q13.1 zinc finger protein 146 protein-coding ZNF146 zinc finger protein 146 O only zinc finger protein|zinc finger protein OZF 20121230 -9606 7706 TRIM25 - EFP|RNF147|Z147|ZNF147 HGNC:12932|MIM:600453|Ensembl:ENSG00000121060|HPRD:02711|Vega:OTTHUMG00000178124 17 17q23.2 tripartite motif containing 25 protein-coding TRIM25 tripartite motif containing 25 O E3 ubiquitin/ISG15 ligase TRIM25|RING finger protein 147|estrogen-responsive finger protein|tripartite motif protein TRIM25|tripartite motif-containing 25|tripartite motif-containing protein 25|ubiquitin/ISG15-conjugating enzyme TRIM25|zinc finger protein 147 (estrogen-responsive finger protein)|zinc finger protein-147 20121230 -9606 7707 ZNF148 - BERF-1|BFCOL1|HT-BETA|ZBP-89|ZFP148|pHZ-52 HGNC:12933|MIM:601897|Ensembl:ENSG00000163848|HPRD:03540|Vega:OTTHUMG00000159448 3 3q21 zinc finger protein 148 protein-coding ZNF148 zinc finger protein 148 O CACCC box-binding protein|CLL-associated antigen KW-10|transcription factor ZBP-89|zinc finger DNA-binding protein 89 20121230 -9606 7709 ZBTB17 RP1-134O19.2 MIZ-1|ZNF151|ZNF60|pHZ-67 HGNC:12936|MIM:604084|Ensembl:ENSG00000116809|HPRD:04968|Vega:OTTHUMG00000009377 1 1p36.13 zinc finger and BTB domain containing 17 protein-coding ZBTB17 zinc finger and BTB domain containing 17 O Myc-interacting Zn finger protein-1|myc-interacting zinc finger protein 1|zinc finger and BTB domain-containing protein 17|zinc finger protein 151 (pHZ-67)|zinc finger protein 60 20121230 -9606 7710 ZNF154 - pHZ-92 HGNC:12939|MIM:604085|Ensembl:ENSG00000179909|HPRD:07245 19 19q13.4 zinc finger protein 154 protein-coding ZNF154 zinc finger protein 154 O - 20121230 -9606 7711 ZNF155 - pHZ-96 HGNC:12940|MIM:604086|Ensembl:ENSG00000204920|HPRD:04969|Vega:OTTHUMG00000182215 19 19q13.2-q13.32 zinc finger protein 155 protein-coding ZNF155 zinc finger protein 155 O KRAB A domain 20121230 -9606 7712 ZNF157 RP13-479F17.3 HZF22 HGNC:12942|MIM:300024|Ensembl:ENSG00000147117|HPRD:02064|Vega:OTTHUMG00000021443 X Xp11.2 zinc finger protein 157 protein-coding ZNF157 zinc finger protein 157 O zinc finger protein 22|zinc finger protein HZF22 20121230 -9606 7716 VEZF1 - DB1|ZNF161 HGNC:12949|MIM:606747|Ensembl:ENSG00000136451|HPRD:08416|Vega:OTTHUMG00000178777 17 17q22 vascular endothelial zinc finger 1 protein-coding VEZF1 vascular endothelial zinc finger 1 O putative transcription factor DB1|zinc finger protein 161 20121230 -9606 7718 ZNF165 - CT53|LD65|ZSCAN7 HGNC:12953|MIM:600834|Ensembl:ENSG00000197279|HPRD:02903|Vega:OTTHUMG00000014505 6 6p21.3 zinc finger protein 165 protein-coding ZNF165 zinc finger protein 165 O cancer/testis antigen 53|zinc finger and SCAN domain-containing protein 7 20121230 -9606 7726 TRIM26 DAAP-200B17.5 AFP|RNF95|ZNF173 HGNC:12962|MIM:600830|Ensembl:ENSG00000234127|HPRD:02901|Vega:OTTHUMG00000031041 6 6p21.3 tripartite motif containing 26 protein-coding TRIM26 tripartite motif containing 26 O RING finger protein 95|acid finger protein|tripartite motif-containing 26|tripartite motif-containing protein 26|widely expressed acid zinc finger protein|zinc finger protein 173 20121230 -9606 7727 ZNF174 - ZSCAN8 HGNC:12963|MIM:603900|Ensembl:ENSG00000103343|HPRD:04876|Vega:OTTHUMG00000129358 16 16p13.3 zinc finger protein 174 protein-coding ZNF174 zinc finger protein 174 O AW-1|zinc finger and SCAN domain-containing protein 8 20121230 -9606 7728 ZNF175 - OTK18 HGNC:12964|MIM:601139|Ensembl:ENSG00000105497|HPRD:03088|Vega:OTTHUMG00000167771 19 19q13.4 zinc finger protein 175 protein-coding ZNF175 zinc finger protein 175 O zinc finger protein OTK18 20121230 -9606 7730 ZNF177 - PIGX HGNC:12966|MIM:601276|Ensembl:ENSG00000188629|HPRD:03175|Vega:OTTHUMG00000179943 19 19p13.2 zinc finger protein 177 protein-coding ZNF177 zinc finger protein 177 O - 20121230 -9606 7732 RNF112 - BFP|ZNF179 HGNC:12968|MIM:601237|Ensembl:ENSG00000128482|HPRD:03140|Vega:OTTHUMG00000059601 17 17p11.2 ring finger protein 112 protein-coding RNF112 ring finger protein 112 O RING finger protein 112|brain finger protein|zinc finger protein 179 20121230 -9606 7733 ZNF180 - HHZ168 HGNC:12970|MIM:606740|Ensembl:ENSG00000167384|HPRD:08414|Vega:OTTHUMG00000180495 19 19q13.2 zinc finger protein 180 protein-coding ZNF180 zinc finger protein 180 O - 20121230 -9606 7737 RNF113A - Cwc24|RNF113|ZNF183 HGNC:12974|Ensembl:ENSG00000125352|HPRD:06760|Vega:OTTHUMG00000022283 X Xq25-q26 ring finger protein 113A protein-coding RNF113A ring finger protein 113A O RING finger protein 113A|zinc finger protein 183 (RING finger, C3HC4 type) 20121230 -9606 7738 ZNF184 - - HGNC:12975|MIM:602277|Ensembl:ENSG00000096654|HPRD:03785|Vega:OTTHUMG00000014478 6 6p21.3 zinc finger protein 184 protein-coding ZNF184 zinc finger protein 184 O zinc finger protein 184 (Kruppel-like) 20121230 -9606 7739 ZNF185 - - HGNC:12976|MIM:300381|Ensembl:ENSG00000147394|HPRD:02306|Vega:OTTHUMG00000024187 X Xq28 zinc finger protein 185 (LIM domain) protein-coding ZNF185 zinc finger protein 185 (LIM domain) O P1-A|zinc finger protein 185 20121230 -9606 7741 ZNF187 - SRE-ZBP|ZSCAN26 HGNC:12978|HPRD:15746 6 6p21.31 zinc finger protein 187 protein-coding ZNF187 zinc finger protein 187 O zinc finger and SCAN domain-containing protein 26 20121230 -9606 7743 ZNF189 RP11-490D19.9 - HGNC:12980|MIM:603132|Ensembl:ENSG00000136870|HPRD:11930|Vega:OTTHUMG00000020383 9 9q22-q31 zinc finger protein 189 protein-coding ZNF189 zinc finger protein 189 O - 20121230 -9606 7745 ZNF192 - LD5-1|ZKSCAN8 HGNC:12983|MIM:602240|Ensembl:ENSG00000198315|HPRD:03760|Vega:OTTHUMG00000014510 6 6p21.3 zinc finger protein 192 protein-coding ZNF192 zinc finger protein 192 O zinc finger protein with KRAB and SCAN domains 8 20121230 -9606 7746 ZNF193 PIG12 PRD51|ZSCAN9 HGNC:12984|MIM:602246|Ensembl:ENSG00000137185|HPRD:03766|Vega:OTTHUMG00000014515 6 6p21.3 zinc finger protein 193 protein-coding ZNF193 zinc finger protein 193 O cell proliferation-inducing gene 12 protein|cell proliferation-inducing protein 12|zinc finger and SCAN domain-containing protein 9 20121230 -9606 7748 ZNF195 - HRF1|ZNFP104 HGNC:12986|MIM:602187|Ensembl:ENSG00000005801|HPRD:03718|Vega:OTTHUMG00000011694 11 11p15.5 zinc finger protein 195 protein-coding ZNF195 zinc finger protein 195 O hypoxia-regulated factor-1|krueppel family zinc finger protein (znfp104) 20121230 -9606 7750 ZMYM2 RP11-264J4.7 FIM|MYM|RAMP|SCLL|ZNF198 HGNC:12989|MIM:602221|Ensembl:ENSG00000121741|HPRD:03745|Vega:OTTHUMG00000016507 13 13q11-q12 zinc finger, MYM-type 2 protein-coding ZMYM2 zinc finger, MYM-type 2 O fused in myeloproliferative disorders protein|rearranged in an atypical myeloproliferative disorder|zinc finger MYM-type protein 2|zinc finger protein 198 20121230 -9606 7752 ZNF200 - - HGNC:12993|MIM:603231|Ensembl:ENSG00000010539|HPRD:04452|Vega:OTTHUMG00000129317 16 16p13.3 zinc finger protein 200 protein-coding ZNF200 zinc finger protein 200 O - 20121230 -9606 7753 ZNF202 - ZKSCAN10 HGNC:12994|MIM:603430|Ensembl:ENSG00000166261|HPRD:04577|Vega:OTTHUMG00000166008 11 11q23.3 zinc finger protein 202 protein-coding ZNF202 zinc finger protein 202 O zinc finger protein with KRAB and SCAN domains 10 20121230 -9606 7754 ZNF204P - ZNF184-Lp|ZNF204|ZNF315P|b24o18.1 HGNC:12995|MIM:603282 6 6p21.3 zinc finger protein 204, pseudogene pseudo ZNF204P zinc finger protein 204, pseudogene O - 20121230 -9606 7755 ZNF205 - RhitH|ZNF210|Zfp13 HGNC:12996|MIM:603436|Ensembl:ENSG00000122386|HPRD:04580|Vega:OTTHUMG00000148676 16 16p13.3 zinc finger protein 205 protein-coding ZNF205 zinc finger protein 205 O transcriptional repressor RhitH|zinc finger protein 210 20121230 -9606 7756 ZNF207 - - HGNC:12998|MIM:603428|Ensembl:ENSG00000010244|HPRD:04576|Vega:OTTHUMG00000132810 17 17q11.2 zinc finger protein 207 protein-coding ZNF207 zinc finger protein 207 O - 20121230 -9606 7757 ZNF208 - PMIDP|ZNF95 HGNC:12999|MIM:603977|Ensembl:ENSG00000160321|HPRD:05998 19 19p12 zinc finger protein 208 protein-coding ZNF208 zinc finger protein 208 O zinc finger protein 95 20121230 -9606 7760 ZNF213 - CR53|ZKSCAN21 HGNC:13005|MIM:608387|Ensembl:ENSG00000085644|HPRD:12224|Vega:OTTHUMG00000177519 16 16p13.3 zinc finger protein 213 protein-coding ZNF213 zinc finger protein 213 O putative transcription factor CR53|zinc finger protein with KRAB and SCAN domains 21 20121230 -9606 7761 ZNF214 - BAZ-1|BAZ1 HGNC:13006|MIM:605015|Ensembl:ENSG00000149050|HPRD:05424|Vega:OTTHUMG00000165618 11 11p15.4 zinc finger protein 214 protein-coding ZNF214 zinc finger protein 214 O BAZ 1|BWSCR2-associated zinc finger protein 1 20121230 -9606 7762 ZNF215 - BAZ-2|BAZ2|ZKSCAN11 HGNC:13007|MIM:605016|Ensembl:ENSG00000149054|HPRD:05425|Vega:OTTHUMG00000165507 11 11p15.4 zinc finger protein 215 protein-coding ZNF215 zinc finger protein 215 O BAZ 2|BWSCR2-associated zinc finger protein 2|zinc finger protein with KRAB and SCAN domains 11 20121230 -9606 7763 ZFAND5 RP11-63P12.8 ZA20D2|ZFAND5A|ZNF216 HGNC:13008|MIM:604761|Ensembl:ENSG00000107372|HPRD:05302|Vega:OTTHUMG00000020008 9 9q13-q21 zinc finger, AN1-type domain 5 protein-coding ZFAND5 zinc finger, AN1-type domain 5 O AN1-type zinc finger protein 5|zinc finger A20 domain-containing protein 2|zinc finger protein 216|zinc finger, A20 domain containing 2 20121230 -9606 7764 ZNF217 RP4-724E16.3 ZABC1 HGNC:13009|MIM:602967|Ensembl:ENSG00000171940|HPRD:04272|Vega:OTTHUMG00000032764 20 20q13.2 zinc finger protein 217 protein-coding ZNF217 zinc finger protein 217 O - 20121230 -9606 7766 ZNF223 - - HGNC:13016|Ensembl:ENSG00000178386|HPRD:15749|Vega:OTTHUMG00000182311 19 19q13.2 zinc finger protein 223 protein-coding ZNF223 zinc finger protein 223 O Homo sapiens zinc finger protein 223|KRAB A domain|Zinc finger protein ZNF223 20121230 -9606 7767 ZNF224 - BMZF-2|BMZF2|KOX22|ZNF255|ZNF27 HGNC:13017|MIM:194555|Ensembl:ENSG00000267680|HPRD:06094|Vega:OTTHUMG00000182313 19 19q13.2 zinc finger protein 224 protein-coding ZNF224 zinc finger protein 224 O bone marrow zinc finger 2|zinc finger 2, bone marrow|zinc finger protein 233|zinc finger protein 255|zinc finger protein 27 (KOX 22)|zinc finger protein KOX22|zinc finger protein ZNF255 20121230 -9606 7768 ZNF225 - - HGNC:13018|Ensembl:ENSG00000256294|HPRD:15750|Vega:OTTHUMG00000182336 19 19q13.2 zinc finger protein 225 protein-coding ZNF225 zinc finger protein 225 O C2-H2 type zinc finger protein 20121230 -9606 7769 ZNF226 - - HGNC:13019|Ensembl:ENSG00000167380|HPRD:15751|Vega:OTTHUMG00000182351 19 19q13.2 zinc finger protein 226 protein-coding ZNF226 zinc finger protein 226 O Kruppel-associated box protein 20121230 -9606 7770 ZNF227 - - HGNC:13020|Ensembl:ENSG00000131115|HPRD:15752|Vega:OTTHUMG00000182352 19 - zinc finger protein 227 protein-coding ZNF227 zinc finger protein 227 O - 20121230 -9606 7771 ZFP112 - ZNF228 HGNC:13021|Ensembl:ENSG00000062370|HPRD:15753|Vega:OTTHUMG00000182357 19 19q13.2 zinc finger protein 112 homolog (mouse) protein-coding ZFP112 zinc finger protein 112 homolog (mouse) O zfp-112|zinc finger protein 112 homolog|zinc finger protein 228 20121230 -9606 7772 ZNF229 - - HGNC:13022|Ensembl:ENSG00000167383|HPRD:18324|Vega:OTTHUMG00000182377 19 19q13.31 zinc finger protein 229 protein-coding ZNF229 zinc finger protein 229 O - 20121230 -9606 7773 ZNF230 - FDZF2 HGNC:13024|Ensembl:ENSG00000159882|HPRD:15754|Vega:OTTHUMG00000182307 19 19q13.31 zinc finger protein 230 protein-coding ZNF230 zinc finger protein 230 O zinc finger protein FDZF2 20121230 -9606 7775 ZNF232 - ZSCAN11 HGNC:13026|Ensembl:ENSG00000167840|HPRD:15755|Vega:OTTHUMG00000099450 17 17p13.2 zinc finger protein 232 protein-coding ZNF232 zinc finger protein 232 O zinc finger and SCAN domain-containing protein 11 20121230 -9606 7776 ZNF236 - ZNF236A|ZNF236B HGNC:13028|MIM:604760|Ensembl:ENSG00000130856|HPRD:05301|Vega:OTTHUMG00000179331 18 18q22-q23 zinc finger protein 236 protein-coding ZNF236 zinc finger protein 236 O regulated by glucose 20121230 -9606 7779 SLC30A1 - ZNT1|ZRC1 HGNC:11012|MIM:609521|Ensembl:ENSG00000170385|HPRD:15366|Vega:OTTHUMG00000036995 1 1q32.3 solute carrier family 30 (zinc transporter), member 1 protein-coding SLC30A1 solute carrier family 30 (zinc transporter), member 1 O solute carrier family 30 member 1|zinc transporter 1|znT-1 20121230 -9606 7780 SLC30A2 RP11-96L14.2 PP12488|ZNT2|ZnT-2 HGNC:11013|MIM:609617|Ensembl:ENSG00000158014|HPRD:18057|Vega:OTTHUMG00000007508 1 1p35.3 solute carrier family 30 (zinc transporter), member 2 protein-coding SLC30A2 solute carrier family 30 (zinc transporter), member 2 O solute carrier family 30 member 2|zinc transporter 2 20121230 -9606 7781 SLC30A3 - ZNT3 HGNC:11014|MIM:602878|Ensembl:ENSG00000115194|HPRD:11924|Vega:OTTHUMG00000128409 2 2p23.3 solute carrier family 30 (zinc transporter), member 3 protein-coding SLC30A3 solute carrier family 30 (zinc transporter), member 3 O solute carrier family 30 member 3|zinc transporter 3|zinc transporter ZnT-3|znT-3 20121230 -9606 7782 SLC30A4 - ZNT4 HGNC:11015|MIM:602095|Ensembl:ENSG00000104154|HPRD:03651|Vega:OTTHUMG00000131439 15 15q21.1|15q21.1 solute carrier family 30 (zinc transporter), member 4 protein-coding SLC30A4 solute carrier family 30 (zinc transporter), member 4 O solute carrier family 30 member 4|zinc transporter 4|znT-4 20121230 -9606 7783 ZP2 - ZPA|Zp-2 HGNC:13188|MIM:182888|Ensembl:ENSG00000103310|HPRD:01689|Vega:OTTHUMG00000090681 16 16p12 zona pellucida glycoprotein 2 (sperm receptor) protein-coding ZP2 zona pellucida glycoprotein 2 (sperm receptor) O zona pellucida glycoprotein ZP2|zona pellucida protein A|zona pellucida sperm-binding protein 2 20121230 -9606 7784 ZP3 - ZP3A|ZP3B|ZPC|Zp-3 HGNC:13189|MIM:182889|Ensembl:ENSG00000188372|HPRD:01690|Vega:OTTHUMG00000130575 7 7q11.23 zona pellucida glycoprotein 3 (sperm receptor) protein-coding ZP3 zona pellucida glycoprotein 3 (sperm receptor) O ZP3A/ZP3B|sperm receptor|zona pellucida glycoprotein 3A (sperm receptor)|zona pellucida glycoprotein 3B|zona pellucida glycoprotein ZP3|zona pellucida protein C|zona pellucida sperm-binding protein 3 20121230 -9606 7786 MAP3K12 - DLK|MEKK12|MUK|ZPK|ZPKP1 HGNC:6851|MIM:600447|Ensembl:ENSG00000139625|HPRD:02709|Vega:OTTHUMG00000169854 12 12q13 mitogen-activated protein kinase kinase kinase 12 protein-coding MAP3K12 mitogen-activated protein kinase kinase kinase 12 O MAPK-upstream kinase|dual leucine zipper bearing kinase|dual leucine zipper kinase DLK|leucine zipper protein kinase|mixed lineage kinase|protein kinase MUK 20121230 -9606 7789 ZXDA - ZNF896 HGNC:13198|MIM:300235|Ensembl:ENSG00000198205|HPRD:02210|Vega:OTTHUMG00000021688 X Xp11.1 zinc finger, X-linked, duplicated A protein-coding ZXDA zinc finger, X-linked, duplicated A O zinc finger X-linked protein ZXDA|zinc finger protein 896 20121230 -9606 7791 ZYX - ESP-2|HED-2 HGNC:13200|MIM:602002|Ensembl:ENSG00000159840|HPRD:03592|Vega:OTTHUMG00000023822 7 7q32 zyxin protein-coding ZYX zyxin O zyxin-2 20121230 -9606 7792 CCV - - HGNC:1624|MIM:115665 1 1p36 cataract, congenital, Volkmann type unknown CCV cataract, congenital, Volkmann type O - 20120622 -9606 7795 MEMO1 - - MIM:601201 1 1p36.1-p35 Methylation modifier for class I HLA unknown - - - - 20121209 -9606 7798 LUZP1 RP1-184J9.3 LUZP HGNC:14985|MIM:601422|Ensembl:ENSG00000169641|HPRD:03250|Vega:OTTHUMG00000003227 1 1p36 leucine zipper protein 1 protein-coding LUZP1 leucine zipper protein 1 O - 20121230 -9606 7799 PRDM2 RP5-1177E19.1 HUMHOXY1|KMT8|MTB-ZF|RIZ|RIZ1|RIZ2 HGNC:9347|MIM:601196|Ensembl:ENSG00000116731|HPRD:03120|Vega:OTTHUMG00000007917 1 1p36.21 PR domain containing 2, with ZNF domain protein-coding PRDM2 PR domain containing 2, with ZNF domain O GATA-3 binding protein G3B|GATA-3-binding protein G3B|MTE-binding protein|PR domain zinc finger protein 2|PR domain-containing protein 2|lysine N-methyltransferase 8|retinoblastoma protein-binding zinc finger protein|retinoblastoma protein-interacting zinc finger protein|zinc finger protein RIZ|zinc-finger DNA-binding protein 20121230 -9606 7802 DNALI1 - P28|dJ423B22.5|hp28 HGNC:14353|MIM:602135|Ensembl:ENSG00000163879|HPRD:03681|Vega:OTTHUMG00000004222 1 1p35.1 dynein, axonemal, light intermediate chain 1 protein-coding DNALI1 dynein, axonemal, light intermediate chain 1 O axonemal dynein light intermediate polypeptide 1|dJ423B22.5 (axonemal dynein light chain (hp28))|dynein, axonemal, light intermediate polypeptide 1|inner dynein arm light chain, axonemal|inner dynein arm, homolog of clamydomonas 20121230 -9606 7803 PTP4A1 RP5-1148A21.2 HH72|PRL-1|PRL1|PTP(CAAX1)|PTPCAAX1 HGNC:9634|MIM:601585|Ensembl:ENSG00000112245|HPRD:03349|Vega:OTTHUMG00000014949 6 6q12 protein tyrosine phosphatase type IVA, member 1 protein-coding PTP4A1 protein tyrosine phosphatase type IVA, member 1 O PTP(CAAXI)|Protein tyrosine phosphatase IVA1|protein tyrosine phosphatase type IVA 1|protein tyrosine phosphatase type IVA protein 1|protein-tyrosine phosphatase 4a1|protein-tyrosine phosphatase of regenerating liver 1 20121230 -9606 7804 LRP8 - APOER2|HSZ75190|LRP-8|MCI1 HGNC:6700|MIM:602600|Ensembl:ENSG00000157193|HPRD:04002|Vega:OTTHUMG00000008924 1 1p34 low density lipoprotein receptor-related protein 8, apolipoprotein e receptor protein-coding LRP8 low density lipoprotein receptor-related protein 8, apolipoprotein e receptor O ApoE receptor 2|low-density lipoprotein receptor-related protein 8 20121230 -9606 7805 LAPTM5 RP5-1166H10.3 CLAST6 HGNC:29612|MIM:601476|Ensembl:ENSG00000162511|HPRD:03280|Vega:OTTHUMG00000003707 1 1p34 lysosomal protein transmembrane 5 protein-coding LAPTM5 lysosomal protein transmembrane 5 O CD40-ligand-activated specific transcripts|human retinoic acid-inducible E3 protein|lysosomal associated multispanning membrane protein 5|lysosomal multispanning membrane protein 5|lysosomal-associated multitransmembrane protein 5|lysosomal-associated transmembrane protein 5|retinoic acid-inducible E3 protein 20121230 -9606 7808 AIR - - MIM:601676 1 1p31 Acute insulin response (2) unknown - - - - 20120622 -9606 7809 BSND GS1-118I5.1 BART|DFNB73 HGNC:16512|MIM:606412|Ensembl:ENSG00000162399|HPRD:05914|Vega:OTTHUMG00000008112 1 1p32.1 Bartter syndrome, infantile, with sensorineural deafness (Barttin) protein-coding BSND Bartter syndrome, infantile, with sensorineural deafness (Barttin) O barttin|deafness, autosomal recessive 73 20121230 -9606 7812 CSDE1 - D1S155E|RP5-1000E10.3|UNR HGNC:29905|MIM:191510|Ensembl:ENSG00000009307|HPRD:15949|Vega:OTTHUMG00000012060 1 1p22 cold shock domain containing E1, RNA-binding protein-coding CSDE1 cold shock domain containing E1, RNA-binding O N-ras upstream gene protein|NRAS-related|cold shock domain-containing protein E1|upstream of NRAS 20121230 -9606 7813 EVI5 - NB4S HGNC:3501|MIM:602942|Ensembl:ENSG00000067208|HPRD:04249|Vega:OTTHUMG00000010895 1 1p22.1 ecotropic viral integration site 5 protein-coding EVI5 ecotropic viral integration site 5 O EVI-5|dJ846D11.1 (ecotropic viral integration site 5)|ecotropic viral integration site 5 protein homolog|neuroblastoma stage 4S gene protein 20121230 -9606 7818 DAP3 - DAP-3|MRP-S29|MRPS29|bMRP-10 HGNC:2673|MIM:602074|Ensembl:ENSG00000132676|HPRD:03646|Vega:OTTHUMG00000035439 1 1q22 death associated protein 3 protein-coding DAP3 death associated protein 3 O 28S ribosomal protein S29, mitochondrial|S29mt|death-associated protein 3|ionizing radiation resistance conferring protein|mitochondrial 28S ribosomal protein S29 20121230 -9606 7824 D1S111 - D1S61|MS336 MIM:157560 1 1q23 Minisatellite 33.6 unknown - - - - 20100404 -9606 7827 NPHS2 - PDCN|SRN1 HGNC:13394|MIM:604766|Ensembl:ENSG00000116218|HPRD:05303|Vega:OTTHUMG00000035252 1 1q25.2 nephrosis 2, idiopathic, steroid-resistant (podocin) protein-coding NPHS2 nephrosis 2, idiopathic, steroid-resistant (podocin) O podocin 20121230 -9606 7830 PHA2A - PHA2 MIM:145260 1 1q31-q42 Pseudohypoaldosteronism type II (gene A) unknown - - - - 20120906 -9606 7832 BTG2 - PC3|TIS21 HGNC:1131|MIM:601597|Ensembl:ENSG00000159388|HPRD:03357|Vega:OTTHUMG00000035834 1 1q32 BTG family, member 2 protein-coding BTG2 BTG family, member 2 O B-cell translocation gene 2|NGF-inducible anti-proliferative protein PC3|nerve growth factor-inducible anti-proliferative|pheochromacytoma cell-3|protein BTG2 20121230 -9606 7833 SLEB1 - SLE1 HGNC:11080|MIM:601744 1 1q41-q42 systemic lupus erythematosus susceptibility 1 unknown SLEB1 systemic lupus erythematosus susceptibility 1 O - 20120622 -9606 7834 PCAP - HPC2|HPC8 HGNC:8645|MIM:602759 1 1q42.2-q43 predisposing for prostate cancer unknown PCAP predisposing for prostate cancer O - 20121209 -9606 7837 PXDN - D2S448|D2S448E|MG50|PRG2|PXN|VPO HGNC:14966|MIM:605158|Ensembl:ENSG00000130508|Vega:OTTHUMG00000059697 2 2p25 peroxidasin homolog (Drosophila) protein-coding PXDN peroxidasin homolog (Drosophila) O melanoma-associated antigen MG50|p53-responsive gene 2 protein|peroxidasin homolog|vascular peroxidase 1 20121230 -9606 7839 LSL - - MIM:601694 2 2p21 Leptin, serum levels of unknown - - - - 20121007 -9606 7840 ALMS1 - ALSS HGNC:428|MIM:606844|Ensembl:ENSG00000116127|HPRD:06023|Vega:OTTHUMG00000152812 2 2p13 Alstrom syndrome 1 protein-coding ALMS1 Alstrom syndrome 1 O Alstrom syndrome protein 1 20121230 -9606 7841 MOGS - CDG2B|CWH41|DER7|GCS1 HGNC:24862|MIM:601336|Ensembl:ENSG00000115275|HPRD:03214|Vega:OTTHUMG00000152886 2 2p13.1 mannosyl-oligosaccharide glucosidase protein-coding MOGS mannosyl-oligosaccharide glucosidase O glucosidase I|processing A-glucosidase I 20121230 -9606 7842 IGKJ@ - IGKJ HGNC:5718|MIM:146970 2 2p12 immunoglobulin kappa joining cluster other IGKJ@ immunoglobulin kappa joining cluster O - 20120208 -9606 7844 RNF103 - HKF-1|KF-1|KF1|ZFP-103|ZFP103 HGNC:12859|MIM:602507|Ensembl:ENSG00000239305|HPRD:03939|Vega:OTTHUMG00000153197 2 2p11.2 ring finger protein 103 protein-coding RNF103 ring finger protein 103 O E3 ubiquitin-protein ligase RNF103|zinc finger protein 103 homolog|zinc finger protein expressed in cerebellum 20121230 -9606 7845 PAFAH1B1P1 - LIS2|PAFAH1P1 HGNC:8577 2 2p11.2 platelet-activating factor acetylhydrolase 1b, regulatory subunit 1 pseudogene 1 pseudo PAFAH1B1P1 platelet-activating factor acetylhydrolase 1b, regulatory subunit 1 pseudogene 1 O - 20121230 -9606 7846 TUBA1A - B-ALPHA-1|LIS3|TUBA3 HGNC:20766|MIM:602529|Ensembl:ENSG00000167552|HPRD:03959|Vega:OTTHUMG00000169511 12 12q13.12 tubulin, alpha 1a protein-coding TUBA1A tubulin, alpha 1a O hum-a-tub1|hum-a-tub2|tubulin B-alpha-1|tubulin alpha-1A chain|tubulin alpha-3 chain|tubulin, alpha, brain-specific 20121230 -9606 7849 PAX8 - - HGNC:8622|MIM:167415|Ensembl:ENSG00000125618|HPRD:01335|Vega:OTTHUMG00000128529 2 2q13 paired box 8 protein-coding PAX8 paired box 8 O paired box protein Pax-8|paired domain gene 8 20121230 -9606 7850 IL1R2 - CD121b|CDw121b|IL-1R-2|IL-1RT-2|IL-1RT2|IL1RB HGNC:5994|MIM:147811|Ensembl:ENSG00000115590|HPRD:00995|Vega:OTTHUMG00000130695 2 2q12 interleukin 1 receptor, type II protein-coding IL1R2 interleukin 1 receptor, type II O CD121 antigen-like family member B|IL-1 type II receptor|IL-1R-beta|antigen CDw121b|interleukin-1 receptor beta|interleukin-1 receptor type 2|interleukin-1 receptor type II|type II interleukin-1 receptor, beta 20121230 -9606 7851 MALL - BENE HGNC:6818|MIM:602022|Ensembl:ENSG00000144063|HPRD:15997|Vega:OTTHUMG00000131196 2 2q13 mal, T-cell differentiation protein-like protein-coding MALL mal, T-cell differentiation protein-like O MAL-like protein 20121230 -9606 7852 CXCR4 - CD184|D2S201E|FB22|HM89|HSY3RR|LAP3|LCR1|LESTR|NPY3R|NPYR|NPYRL|NPYY3R|WHIM HGNC:2561|MIM:162643|Ensembl:ENSG00000121966|HPRD:01217|Vega:OTTHUMG00000153583 2 2q21 chemokine (C-X-C motif) receptor 4 protein-coding CXCR4 chemokine (C-X-C motif) receptor 4 O C-X-C chemokine receptor type 4|CD184 antigen|CXC-R4|CXCR-4|SDF-1 receptor|fusin|leukocyte-derived seven transmembrane domain receptor|leukocyte-derived seven-transmembrane-domain receptor|lipopolysaccharide-associated protein 3|neuropeptide Y receptor Y3|seven transmembrane helix receptor|seven-transmembrane-segment receptor, spleen|stromal cell-derived factor 1 receptor 20121230 -9606 7855 FZD5 - C2orf31|HFZ5 HGNC:4043|MIM:601723|Ensembl:ENSG00000163251|HPRD:03427|Vega:OTTHUMG00000154790 2 2q33.3 frizzled family receptor 5 protein-coding FZD5 frizzled family receptor 5 O Wnt receptor|frizzled 5, seven transmembrane spanning receptor|frizzled-5|fz-5|fzE5|seven-transmembrane receptor frizzled-5 20121230 -9606 7857 SCG2 - CHGC|EM66|SN|SgII HGNC:10575|MIM:118930|Ensembl:ENSG00000171951|HPRD:06762|Vega:OTTHUMG00000133166 2 2q35-q36 secretogranin II protein-coding SCG2 secretogranin II O chromogranin-C|secretogranin-2|secretoneurin 20121230 -9606 7862 BRPF1 - BR140 HGNC:14255|MIM:602410|Ensembl:ENSG00000156983|HPRD:03875|Vega:OTTHUMG00000097033 3 3p26-p25 bromodomain and PHD finger containing, 1 protein-coding BRPF1 bromodomain and PHD finger containing, 1 O bromodomain and PHD finger-containing protein 1|bromodomain-containing protein, 140kD|peregrin 20121230 -9606 7864 SCLC1 - SCCL|SCLC MIM:182280 3 3p23-p21 small cell cancer of the lung unknown - - - - 20120622 -9606 7866 IFRD2 - IFNRP|SKMc15|SM15 HGNC:5457|MIM:602725|Ensembl:ENSG00000214706|HPRD:04101|Vega:OTTHUMG00000156935 3 3p21.3 interferon-related developmental regulator 2 protein-coding IFRD2 interferon-related developmental regulator 2 O interferon-related protein 20121230 -9606 7867 MAPKAPK3 - 3PK|MAPKAP-K3|MAPKAP3|MAPKAPK-3|MK-3 HGNC:6888|MIM:602130|Ensembl:ENSG00000114738|HPRD:03678|Vega:OTTHUMG00000156850 3 3p21.3 mitogen-activated protein kinase-activated protein kinase 3 protein-coding MAPKAPK3 mitogen-activated protein kinase-activated protein kinase 3 O MAP kinase-activated protein kinase 3|MAPK-activated protein kinase 3|MAPKAP kinase 3|chromosome 3p kinase 20121230 -9606 7869 SEMA3B - LUCA-1|SEMA5|SEMAA|SemA|semaV HGNC:10724|MIM:601281|HPRD:03179 3 3p21.3 sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3B protein-coding SEMA3B sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3B O sema A(V)|sema V|semaphorin A|semaphorin-3B|semaphorin-V 20121230 -9606 7870 TRR - - MIM:601994 3 3p21.3 transfer RNA arginine tRNA - - - - 20121209 -9606 7871 SLMAP UNQ1847/PRO3577 SLAP HGNC:16643|MIM:602701|Ensembl:ENSG00000163681|HPRD:04079|Vega:OTTHUMG00000133764 3 3p21.2-p14.3 sarcolemma associated protein protein-coding SLMAP sarcolemma associated protein O Sarcolemmal-associated protein|sarcolemmal membrane-associated protein 20121230 -9606 7873 MANF - ARMET|ARP HGNC:15461|MIM:601916|Ensembl:ENSG00000145050|HPRD:03558|Vega:OTTHUMG00000156897 3 3p21.1 mesencephalic astrocyte-derived neurotrophic factor protein-coding MANF mesencephalic astrocyte-derived neurotrophic factor O arginine-rich, mutated in early stage tumors 20121230 -9606 7874 USP7 - HAUSP|TEF1 HGNC:12630|MIM:602519|Ensembl:ENSG00000187555|HPRD:03950|Vega:OTTHUMG00000176903 16 16p13.3 ubiquitin specific peptidase 7 (herpes virus-associated) protein-coding USP7 ubiquitin specific peptidase 7 (herpes virus-associated) O Herpes virus-associated ubiquitin-specific protease|deubiquitinating enzyme 7|herpesvirus-associated ubiquitin-specific protease|ubiquitin carboxyl-terminal hydrolase 7|ubiquitin specific protease 7 (herpes virus-associated)|ubiquitin thioesterase 7|ubiquitin-specific-processing protease 7 20121230 -9606 7879 RAB7A - PRO2706|RAB7 HGNC:9788|MIM:602298|Ensembl:ENSG00000075785|HPRD:03805|Vega:OTTHUMG00000159812 3 3q21.3 RAB7A, member RAS oncogene family protein-coding RAB7A RAB7A, member RAS oncogene family O RAB7, member RAS oncogene family|Ras-associated protein RAB7|ras-related protein Rab-7a 20121230 -9606 7880 MBS2 - HCFP1 HGNC:6927|MIM:601471 3 3q21-q22 Moebius syndrome 2 unknown MBS2 Moebius syndrome 2 O - 20121212 -9606 7881 KCNAB1 - AKR6A3|KCNA1B|KV-BETA-1|Kvb1.3|hKvBeta3|hKvb3 HGNC:6228|MIM:601141|Ensembl:ENSG00000169282|HPRD:03089|Vega:OTTHUMG00000158552 3 3q26.1 potassium voltage-gated channel, shaker-related subfamily, beta member 1 protein-coding KCNAB1 potassium voltage-gated channel, shaker-related subfamily, beta member 1 O K(+) channel subunit beta-1|potassium channel beta 3 chain|potassium channel beta3 subunit|potassium channel shaker chain beta 1a|potassium voltage-gated channel beta subunit|voltage-gated potassium channel beta-1 subunit|voltage-gated potassium channel subunit beta-1 20121230 -9606 7884 SLBP - HBP HGNC:10904|MIM:602422|Ensembl:ENSG00000163950|HPRD:03884|Vega:OTTHUMG00000089349 4 4p16.3 stem-loop binding protein protein-coding SLBP stem-loop binding protein O hairpin binding protein, histone|histone RNA hairpin-binding protein|histone binding protein|histone stem-loop binding protein|histone stem-loop-binding protein|stem-loop (histone) binding protein 20121230 -9606 7885 CRSA - CRS3 MIM:600593 4 4p16 Craniosynostosis, Adelaide type unknown - - - - 20120622 -9606 7889 PSORS3 - - HGNC:9575|MIM:601454 4 4q psoriasis susceptibility 3 unknown PSORS3 psoriasis susceptibility 3 O - 20120622 -9606 7892 FECB - - MIM:134720 4 4q21-q25 Fecundity gene, Boorla, of sheep, homolog of unknown - - - - 20110215 -9606 7895 LAG5 - - MIM:151450 4 - Leukocyte antigen group 5 unknown - - - - 20120622 -9606 7896 TS13 - - MIM:187320 4 - Temperature sensitivity complementation, ts13 unknown - - - - 20110215 -9606 7897 ZNF4 - - - 5 - zinc finger protein-4 unknown - - - - 20100404 -9606 7900 ZNF5 - - - 5 - zinc finger protein-5 unknown - - - - 20100404 -9606 7903 ST8SIA4 - PST|PST1|SIAT8D|ST8SIA-IV HGNC:10871|MIM:602547|Ensembl:ENSG00000113532|HPRD:03970|Vega:OTTHUMG00000128727 5 5q21 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 protein-coding ST8SIA4 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 O CMP-N-acetylneuraminate-poly-alpha-2,8-sialyl transferase|CMP-N-acetylneuraminate-poly-alpha-2,8-sialyltransferase|SIAT8-D|ST8SiaIV|alpha-2,8-sialyltransferase 8D|polysialyltransferase-1|sialyltransferase 8 (alpha-2, 8-polysialytransferase) D|sialyltransferase 8D|sialytransferase St8Sia IV 20121230 -9606 7905 REEP5 - C5orf18|D5S346|DP1|TB2|YOP1 HGNC:30077|MIM:125265|Ensembl:ENSG00000129625|HPRD:15918|Vega:OTTHUMG00000128807 5 5q22-q23 receptor accessory protein 5 protein-coding REEP5 receptor accessory protein 5 O deleted in polyposis 1|polyposis coli region hypothetical protein DP1|polyposis locus protein 1|receptor expression enhancing protein 5|receptor expression-enhancing protein 5 20121230 -9606 7908 EOS - - MIM:131400 5 5q31-q33 eosinophilia, familial unknown - - - - 20121209 -9606 7909 HEMC - HCI MIM:602089 - - hemangioma, capillary, hereditary unknown - - - - 20120622 -9606 7910 PFBI - - MIM:248310 5 5q31-q33 Plasmodium falciparum blood infection levels unknown - - - - 20120622 -9606 7911 SM1 - - MIM:181460 5 5q31-q33 Schistosoma mansoni, susceptibility/resistance to unknown - - - - 20120622 -9606 7913 DEK - D6S231E HGNC:2768|MIM:125264|Ensembl:ENSG00000124795|HPRD:00503|Vega:OTTHUMG00000014319 6 6p22.3 DEK oncogene protein-coding DEK DEK oncogene O DEK oncogene (DNA binding)|protein DEK 20121230 -9606 7915 ALDH5A1 - SSADH|SSDH HGNC:408|MIM:610045|Ensembl:ENSG00000112294|HPRD:08361|Vega:OTTHUMG00000014356 6 6p22 aldehyde dehydrogenase 5 family, member A1 protein-coding ALDH5A1 aldehyde dehydrogenase 5 family, member A1 O NAD(+)-dependent succinic semialdehyde dehydrogenase|aldehyde dehydrogenase family 5 member A1|mitochondrial succinate semialdehyde dehydrogenase|succinate-semialdehyde dehydrogenase, mitochondrial 20121230 -9606 7916 PRRC2A DADB-70P7.5 BAT2|D6S51|D6S51E|G2 HGNC:13918|MIM:142580|Ensembl:ENSG00000204469|HPRD:00807|Vega:OTTHUMG00000031168 6 6p21.3 proline-rich coiled-coil 2A protein-coding PRRC2A proline-rich coiled-coil 2A O HLA-B associated transcript 2|HLA-B-associated transcript 2|large proline-rich protein BAT2|proline-rich and coiled-coil-containing protein 2A|protein G2|protein PRRC2A 20121230 -9606 7917 BAG6 DADB-70P7.10-021 BAG-6|BAT3|D6S52E|G3 HGNC:13919|MIM:142590|Ensembl:ENSG00000204463|HPRD:00808|Vega:OTTHUMG00000031171 6 6p21.3 BCL2-associated athanogene 6 protein-coding BAG6 BCL2-associated athanogene 6 O BAG family molecular chaperone regulator 6|HLA-B associated transcript 3|HLA-B associated transcript-3|HLA-B-associated transcript 3|large proline-rich protein BAG6|large proline-rich protein BAT3|protein G3|protein Scythe|scythe 20121230 -9606 7918 GPANK1 DAMA-236L13.5 ANKRD59|BAT4|D6S54E|G5|GPATCH10 HGNC:13920|MIM:142610|Ensembl:ENSG00000204438|HPRD:00810|Vega:OTTHUMG00000031174 6 6p21.3 G patch domain and ankyrin repeats 1 protein-coding GPANK1 G patch domain and ankyrin repeats 1 O G patch domain and ankyrin repeat-containing protein 1|G patch domain and ankyrin repeats-containing protein 1|G patch domain containing 10|HLA-B-associated transcript 4|ankyrin repeat domain-containing protein 59|g patch domain-containing protein 10|protein BAT4|protein G5 20121230 -9606 7919 DDX39B DAAP-97M17.4 BAT1|D6S81E|UAP56 HGNC:13917|MIM:142560|Ensembl:ENSG00000198563|HPRD:00805|Vega:OTTHUMG00000031165 6 6p21.3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39B protein-coding DDX39B DEAD (Asp-Glu-Ala-Asp) box polypeptide 39B O 56 kDa U2AF65-associated protein|ATP-dependent RNA helicase p47|HLA-B-associated transcript 1 protein|nuclear RNA helicase (DEAD family)|spliceosome RNA helicase BAT1|spliceosome RNA helicase DDX39B 20121230 -9606 7920 ABHD16A DAQB-195H10.5 BAT5|D6S82E|NG26|PP199 HGNC:13921|MIM:142620|Ensembl:ENSG00000204427|HPRD:15929|Vega:OTTHUMG00000031177 6 6p21.3 abhydrolase domain containing 16A protein-coding ABHD16A abhydrolase domain containing 16A O HLA-B associated transcript 5|abhydrolase domain-containing protein 16A|protein G5 20121230 -9606 7921 D6S207E - HLA-HA2 MIM:600642 6 6p21.3 Minor histocompatibility antigen HA-2 other - - - - 20100404 -9606 7922 SLC39A7 DADB-100D22.3 D6S115E|D6S2244E|H2-KE4|HKE4|KE4|RING5|ZIP7 HGNC:4927|MIM:601416|Ensembl:ENSG00000112473|HPRD:09028|Vega:OTTHUMG00000031238 6 6p21.3 solute carrier family 39 (zinc transporter), member 7 protein-coding SLC39A7 solute carrier family 39 (zinc transporter), member 7 O HLA class II region expressed gene KE4|Ke4 gene, mouse, human homolog of|histidine-rich membrane protein Ke4|really interesting new gene 5 protein|solute carrier family 39 member 7|zinc transporter SLC39A7 20121230 -9606 7923 HSD17B8 DADB-100D22.4 D6S2245E|FABG|FABGL|H2-KE6|HKE6|KE6|RING2|SDR30C1|dJ1033B10.9 HGNC:3554|MIM:601417|Ensembl:ENSG00000204228|HPRD:03248|Vega:OTTHUMG00000031117 6 6p21.3 hydroxysteroid (17-beta) dehydrogenase 8 protein-coding HSD17B8 hydroxysteroid (17-beta) dehydrogenase 8 O 17-beta-HSD 8|17-beta-hydroxysteroid dehydrogenase 8|3-oxoacyl-[acyl-carrier-protein] reductase|estradiol 17-beta-dehydrogenase 8|estrogen 17-oxidoreductase|ke-6|protein Ke6|really interesting new gene 2 protein|short chain dehydrogenase/reductase family 30C, member 1|testosterone 17-beta-dehydrogenase 8 20121230 -9606 7925 IGLP1 - - HGNC:5873|MIM:147080 6 6p21.3 immune response to synthetic polypeptides 1 other IGLP1 immune response to synthetic polypeptides 1 O - 20080913 -9606 7926 IGLP2 - - HGNC:5874|MIM:147090 6 6p21.3 immune response to synthetic polypeptides 2 other IGLP2 immune response to synthetic polypeptides 2 O - 20080913 -9606 7927 IGAT - - MIM:146820 6 6p21.3 Immune response to synthetic polypeptide--IRGAT unknown - - - - 20120906 -9606 7928 ISCW - ISSCW MIM:146850 6 6p21.3 Immune suppression to streptococcal antigen unknown - - - - 20120906 -9606 7932 OR2H2 DADB-225M10.1 FAT11|OLFR2|OLFR42B|OR2H3|dJ271M21.2|hs6M1-12 HGNC:8253|MIM:600578|Ensembl:ENSG00000204657|HPRD:08367|Vega:OTTHUMG00000031052 6 6p21.3 olfactory receptor, family 2, subfamily H, member 2 protein-coding OR2H2 olfactory receptor, family 2, subfamily H, member 2 O Olfactory receptor 2|olfactory receptor 2H2|olfactory receptor 2H3|olfactory receptor OR6-36|olfactory receptor, family 2, subfamily H, member 3|olfactory receptor-like protein FAT11 20121230 -9606 7933 OPLL - - MIM:602475 - - ossification of posterior longitudinal ligament of spine unknown - - - - 20110215 -9606 7936 RDBP DADB-122G4.4 D6S45|NELF-E|RD|RDP HGNC:13974|MIM:154040|Ensembl:ENSG00000204356|HPRD:01096|Vega:OTTHUMG00000031046 6 6p21.3 RD RNA binding protein protein-coding RDBP RD RNA binding protein O RD RNA-binding protein|RNA-binding protein RD|major histocompatibility complex gene RD|negative elongation factor E|negative elongation factor polypeptide E|nuclear protein 20121230 -9606 7937 RWS - - MIM:179450 6 6p21.3 Ragweed sensitivity unknown - - - - 20110215 -9606 7938 CP20 - LCP20 MIM:153380 6 6p21.3-p21.2 Lymphocyte cytosolic protein, molecular weight 20kD unknown - - - - 20100404 -9606 7939 LAP - - MIM:150270 6 6p21.3-p21.2 Laryngeal adductor paralysis unknown - - - - 20110215 -9606 7940 LST1 DAAP-90L16.2 B144|D6S49E|LST-1 HGNC:14189|MIM:109170|Ensembl:ENSG00000204482|HPRD:00172|Vega:OTTHUMG00000031264 6 6p21.3 leukocyte specific transcript 1 protein-coding LST1 leukocyte specific transcript 1 O leukocyte-specific transcript 1 protein|lymphocyte antigen 117 20121230 -9606 7941 PLA2G7 - LDL-PLA2|LP-PLA2|PAFAD|PAFAH HGNC:9040|MIM:601690|Ensembl:ENSG00000146070|HPRD:03407|Vega:OTTHUMG00000014789 6 6p21.2-p12 phospholipase A2, group VII (platelet-activating factor acetylhydrolase, plasma) protein-coding PLA2G7 phospholipase A2, group VII (platelet-activating factor acetylhydrolase, plasma) O 1-alkyl-2-acetylglycerophosphocholine esterase|2-acetyl-1-alkylglycerophosphocholine esterase|LDL-PLA(2)|LDL-associated phospholipase A2|PAF 2-acylhydrolase|PAF acetylhydrolase|gVIIA-PLA2|group-VIIA phospholipase A2|lipoprotein-associated phospholipase A2|platelet-activating factor acetylhydrolase 20121230 -9606 7942 TFEB RP4-696P19.3 ALPHATFEB|BHLHE35|TCFEB HGNC:11753|MIM:600744|Ensembl:ENSG00000112561|HPRD:02847|Vega:OTTHUMG00000014684 6 6p21 transcription factor EB protein-coding TFEB transcription factor EB O T-cell transcription factor EB|class E basic helix-loop-helix protein 35 20121230 -9606 7944 CSCI - - MIM:122550 6 6p Corticosterone side-chain isomerase unknown - - - - 20100404 -9606 7945 PUJO - - MIM:143400 6 6p pelviureteric junction obstruction unknown - - - - 20120622 -9606 7948 PBCRA1 - CRAPB|PBCRA HGNC:8625|MIM:600790 6 6q14-q16.2 progressive bifocal chorioretinal atrophy 1 unknown PBCRA1 progressive bifocal chorioretinal atrophy 1 O - 20120622 -9606 7951 BKMA1 - - MIM:109780 6 6q21 Banded krait minor satellite DNA-1 unknown - - - - 20100404 -9606 7952 TNDM - DMTN|TNDM1 MIM:601410 6 - diabetes mellitus, transient neonatal other - - - - 20120622 -9606 7954 HPFH - FCP MIM:142470 6 6q22.3-q23.1 hereditary persistence of fetal hemoglobin, heterocellular unknown - - - - 20120622 -9606 7955 STL - - MIM:602532 6 6q22.33 six-twelve leukemia miscRNA - - - - 20121230 -9606 7956 NTT - - MIM:602154 6 6q23-q24 Noncoding transcript in T cells protein-coding - - - - 20100404 -9606 7957 EPM2A RP1-28C20.2 EPM2|MELF HGNC:3413|MIM:607566|Ensembl:ENSG00000112425|HPRD:06345|Vega:OTTHUMG00000015747 6 6q24 epilepsy, progressive myoclonus type 2A, Lafora disease (laforin) protein-coding EPM2A epilepsy, progressive myoclonus type 2A, Lafora disease (laforin) O LAFPTPase|epilepsy, progressive myoclonus type 2, Lafora disease (laforin)|lafora PTPase|laforin 20121230 -9606 7959 FEA - - MIM:137010 6 - F9 embryonic antigen other - - - - 20100404 -9606 7960 MRBC - - MIM:158050 6 - Monkey RBC receptor other - - - - 20100404 -9606 7962 PBCA - - MIM:600089 6 - Pancreatic beta cell, agenesis of unknown - - - - 20110215 -9606 7963 TS546 - - MIM:187330 6 - Temperature sensitivity complementation, cell cycle specific unknown - - - - 20110215 -9606 7965 AIMP2 PRO0992 JTV-1|JTV1|P38 HGNC:20609|MIM:600859|Ensembl:ENSG00000106305|HPRD:02915|Vega:OTTHUMG00000122077 7 7p22 aminoacyl tRNA synthetase complex-interacting multifunctional protein 2 protein-coding AIMP2 aminoacyl tRNA synthetase complex-interacting multifunctional protein 2 O ARS-interacting multi-functional protein 2|aminoacyl tRNA synthase complex-interacting multifunctional protein 2|multisynthase complex auxiliary component p38|multisynthetase complex auxiliary component p38|protein JTV-1 20121230 -9606 7971 GHS - - MIM:141400 - - Goldenhar syndrome unknown - - - - 20110215 -9606 7974 HRX - - MIM:145290 7 7q Hyperreflexia unknown - - - - 20110215 -9606 7975 MAFK - NFE2U|P18 HGNC:6782|MIM:600197|Ensembl:ENSG00000198517|HPRD:02561|Vega:OTTHUMG00000151453 7 7p22.3 v-maf musculoaponeurotic fibrosarcoma oncogene homolog K (avian) protein-coding MAFK v-maf musculoaponeurotic fibrosarcoma oncogene homolog K (avian) O basic-leucine zipper transcription factor MafK|erythroid transcription factor NF-E2 p18 subunit|nuclear factor erythroid-2, ubiquitous (p18)|transcription factor MafK|v-maf avian musculoaponeurotic fibrosarcoma oncogene family, protein K 20121230 -9606 7976 FZD3 - Fz-3 HGNC:4041|MIM:606143|Ensembl:ENSG00000104290|HPRD:05849|Vega:OTTHUMG00000102145 8 8p21 frizzled family receptor 3 protein-coding FZD3 frizzled family receptor 3 O frizzled 3, seven transmembrane spanning receptor|frizzled homolog 3|frizzled-3 20121230 -9606 7977 MHS3 - - MIM:154276 7 7q21-q22 Malignant hyperthermia susceptibility 3 unknown - - - - 20120622 -9606 7978 MTERF - - HGNC:21463|MIM:602318|Ensembl:ENSG00000127989|HPRD:08373|Vega:OTTHUMG00000156057 7 7q21-q22 mitochondrial transcription termination factor protein-coding MTERF mitochondrial transcription termination factor O mitochondrial transcription termination factor 1|transcription termination factor, mitochondrial 20121230 -9606 7979 SHFM1 - DSS1|ECD|SEM1|SHFD1|SHSF1|Shfdg1 HGNC:10845|MIM:183600|Ensembl:ENSG00000127922|HPRD:03182|Vega:OTTHUMG00000150680 7 7q21.3 split hand/foot malformation (ectrodactyly) type 1 protein-coding SHFM1 split hand/foot malformation (ectrodactyly) type 1 O 26S proteasome complex subunit DSS1|deleted in split hand/split foot protein 1|deleted in split-hand/split-foot 1|split hand/foot deleted protein 1|split hand/foot malformation type 1 protein 20121230 -9606 7980 TFPI2 - PP5|REF1|TFPI-2 HGNC:11761|MIM:600033|Ensembl:ENSG00000105825|HPRD:08962|Vega:OTTHUMG00000022963 7 7q22 tissue factor pathway inhibitor 2 protein-coding TFPI2 tissue factor pathway inhibitor 2 O placental protein 5|retinal pigment epithelium cell factor 1 20121230 -9606 7982 ST7 - ETS7q|FAM4A|FAM4A1|HELG|RAY1|SEN4|TSG7 HGNC:11351|MIM:600833|Ensembl:ENSG00000004866|HPRD:09015|Vega:OTTHUMG00000023888 7 7q31.2 suppression of tumorigenicity 7 protein-coding ST7 suppression of tumorigenicity 7 O family with sequence similarity 4, subfamily A, member 1|suppression of tumorigenicity 7 (breast)|suppressor of tumorigenicity 7 protein 20121230 -9606 7984 ARHGEF5 - GEF5|P60|TIM|TIM1 HGNC:13209|MIM:600888|Ensembl:ENSG00000050327|HPRD:02932|Vega:OTTHUMG00000158004 7 7q35 Rho guanine nucleotide exchange factor (GEF) 5 protein-coding ARHGEF5 Rho guanine nucleotide exchange factor (GEF) 5 O ephexin-3|guanine nucleotide regulatory protein TIM|oncogene TIM|p60 TIM|rho guanine nucleotide exchange factor 5|transforming immortalized mammary oncogene 20121230 -9606 7986 GPDS1 - PDS1 HGNC:4457|MIM:600510 7 7q35-q36 glaucoma-related pigment dispersion syndrome 1 unknown GPDS1 glaucoma-related pigment dispersion syndrome 1 O - 20120622 -9606 7988 ZNF212 - C2H2-150|ZNF182|ZNFC150 HGNC:13004|MIM:602386|Ensembl:ENSG00000170260|HPRD:03859|Vega:OTTHUMG00000158968 7 7q36.1 zinc finger protein 212 protein-coding ZNF212 zinc finger protein 212 O Zinc finger protein C2H2-150 20121230 -9606 7990 CRS1C - - - 8 - Cryptidin-related sequence-1C unknown - - - - 20100404 -9606 7991 TUSC3 - D8S1992|M33|MRT22|MRT7|N33|OST3A HGNC:30242|MIM:601385|Ensembl:ENSG00000104723|HPRD:03228|Vega:OTTHUMG00000094803 8 8p22 tumor suppressor candidate 3 protein-coding TUSC3 tumor suppressor candidate 3 O Putative prostate cancer tumor suppressor|magnesium uptake/transporter TUSC3|oligosaccharyltransferase 3 homolog A 20121230 -9606 7993 UBXN8 - D8S2298E|REP8|UBXD6 HGNC:30307|MIM:602155|HPRD:03692 8 8p12-p11.2 UBX domain protein 8 protein-coding UBXN8 UBX domain protein 8 O Reproduction/chromosome 8|UBX domain containing 6|UBX domain-containing protein 6|UBX domain-containing protein 8|rep-8 protein|reproduction 8 protein 20121230 -9606 7994 KAT6A - MOZ|MYST3|RUNXBP2|ZNF220 HGNC:13013|MIM:601408|Ensembl:ENSG00000083168|HPRD:03244|Vega:OTTHUMG00000150453 8 8p11 K(lysine) acetyltransferase 6A protein-coding KAT6A K(lysine) acetyltransferase 6A O MOZ, YBF2/SAS3, SAS2 and TIP60 protein 3|MYST histone acetyltransferase (monocytic leukemia) 3|MYST-3|Monocytic leukemia zinc finger protein|histone acetyltransferase KAT6A|histone acetyltransferase MYST3|runt-related transcription factor binding protein 2|runt-related transcription factor-binding protein 2|zinc finger protein 220 20121230 -9606 8000 PSCA UNQ206/PRO232 PRO232 HGNC:9500|MIM:602470|Ensembl:ENSG00000167653|HPRD:03919|Vega:OTTHUMG00000162077 8 8q24.2 prostate stem cell antigen protein-coding PSCA prostate stem cell antigen O - 20121230 -9606 8001 GLRA3 - - HGNC:4328|MIM:600421|Ensembl:ENSG00000145451|HPRD:02688|Vega:OTTHUMG00000149816 4 4q34.1 glycine receptor, alpha 3 protein-coding GLRA3 glycine receptor, alpha 3 O glycine receptor alpha 3 subunit|glycine receptor subunit alpha-3|glycine receptor, alpha-3 polypeptide|ligand gated ion channel 20121230 -9606 8009 LALL - - MIM:247640 9 9p22-p21 Lymphomatous acute lymphoblastic leukemia unknown - - - - 20120622 -9606 8011 MROS - MRS HGNC:14595|MIM:155900 9 9p11 Melkersson-Rosenthal syndrome unknown MROS Melkersson-Rosenthal syndrome O - 20110215 -9606 8013 NR4A3 RP11-60I3.3 CHN|CSMF|MINOR|NOR1|TEC HGNC:7982|MIM:600542|Ensembl:ENSG00000119508|HPRD:02766|Vega:OTTHUMG00000021030 9 9q22 nuclear receptor subfamily 4, group A, member 3 protein-coding NR4A3 nuclear receptor subfamily 4, group A, member 3 O chondrosarcoma, extraskeletal myxoid, fused to EWS|mitogen-induced nuclear orphan receptor|neuron-derived orphan receptor 1|nuclear hormone receptor NOR-1|nuclear receptor subfamily 4 group A member 3|translocated in extraskeletal chondrosarcoma 20121230 -9606 8019 BRD3 RP11-374P20.3 ORFX|RING3L HGNC:1104|MIM:601541|Ensembl:ENSG00000169925|HPRD:03327|Vega:OTTHUMG00000021004 9 9q34 bromodomain containing 3 protein-coding BRD3 bromodomain containing 3 O RING3-like protein|bromodomain-containing 3|bromodomain-containing protein 3 20121230 -9606 8021 NUP214 RP11-544A12.7 CAIN|CAN|D9S46E|N214 HGNC:8064|MIM:114350|Ensembl:ENSG00000126883|HPRD:00258|Vega:OTTHUMG00000020816 9 9q34.1 nucleoporin 214kDa protein-coding NUP214 nucleoporin 214kDa O 214 kDa nucleoporin|CAN protein, putative oncogene|nuclear pore complex protein Nup214|nucleoporin 214kD (CAIN)|nucleoporin Nup214|p250 20121230 -9606 8022 LHX3 - CPHD3|LIM3|M2-LHX3 HGNC:6595|MIM:600577|Ensembl:ENSG00000107187|HPRD:02783|Vega:OTTHUMG00000020924 9 9q34.3 LIM homeobox 3 protein-coding LHX3 LIM homeobox 3 O LIM homeobox protein 3|LIM/homeobox protein Lhx3|LIM/homeodomain protein LHX3 20121230 -9606 8023 H142T - - MIM:187290 9 - Temperature sensitivity complementation, H142 unknown - - - - 20120906 -9606 8024 RDPA - - MIM:600964 10 10pter-p11.2 refsum disease, adult, with increased pipecolicacidemia unknown - - - - 20120622 -9606 8026 DGS2 - DGCR2 MIM:601362 10 10p14-p13 DiGeorge syndrome/velocardiofacial syndrome complex 2 unknown - - - - 20120719 -9606 8027 STAM - STAM-1|STAM1 HGNC:11357|MIM:601899|Ensembl:ENSG00000136738|HPRD:03542|Vega:OTTHUMG00000017749 10 10p14-p13 signal transducing adaptor molecule (SH3 domain and ITAM motif) 1 protein-coding STAM signal transducing adaptor molecule (SH3 domain and ITAM motif) 1 O HSE1 homolog|signal transducing adapter molecule 1 20121230 -9606 8028 MLLT10 RP11-399C16.2 AF10 HGNC:16063|MIM:602409|Ensembl:ENSG00000078403|HPRD:03874|Vega:OTTHUMG00000017799 10 10p12 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10 protein-coding MLLT10 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10 O ALL1-fused gene from chromosome 10 protein|protein AF-10|type I AF10 protein|type III AF10 protein|type IV AF10 protein 20121230 -9606 8029 CUBN RP11-416D8.1 IFCR|MGA1|gp280 HGNC:2548|MIM:602997|Ensembl:ENSG00000107611|HPRD:04296|Vega:OTTHUMG00000017741 10 10p12.31 cubilin (intrinsic factor-cobalamin receptor) protein-coding CUBN cubilin (intrinsic factor-cobalamin receptor) O 460 kDa receptor|cubilin|cubilin precursor variant 1|cubilin precursor variant 2|intestinal intrinsic factor receptor|intrinsic factor-vitamin B12 receptor 20121230 -9606 8030 CCDC6 - D10S170|H4|PTC|TPC|TST1 HGNC:18782|MIM:601985|Ensembl:ENSG00000108091|HPRD:09064|Vega:OTTHUMG00000018284 10 10q21 coiled-coil domain containing 6 protein-coding CCDC6 coiled-coil domain containing 6 O coiled-coil domain-containing protein 6|papillary thyroid carcinoma-encoded protein 20121230 -9606 8031 NCOA4 RP11-481A12.4 ARA70|ELE1|PTC3|RFG HGNC:7671|MIM:601984|Ensembl:ENSG00000138293|HPRD:03584|Vega:OTTHUMG00000018217 10 10q11.2 nuclear receptor coactivator 4 protein-coding NCOA4 nuclear receptor coactivator 4 O 70 kDa AR-activator|70 kDa androgen receptor coactivator|NCoA-4|RET-activating gene ELE1|androgen receptor-associated protein of 70 kDa|ret fused 20121230 -9606 8034 SLC25A16 RP11-524O24.4 D10S105E|GDA|GDC|HGT.1|ML7|hML7 HGNC:10986|MIM:139080|Ensembl:ENSG00000122912|HPRD:00740|Vega:OTTHUMG00000018354 10 10q21.3 solute carrier family 25 (mitochondrial carrier; Graves disease autoantigen), member 16 protein-coding SLC25A16 solute carrier family 25 (mitochondrial carrier; Graves disease autoantigen), member 16 O graves disease autoantigen|graves disease carrier protein|mitochondrial solute carrier protein homolog|solute carrier family 25 member 16 20121230 -9606 8036 SHOC2 RP11-348N5.2 SIAA0862|SOC2|SUR8 HGNC:15454|MIM:602775|Ensembl:ENSG00000108061|HPRD:04144|Vega:OTTHUMG00000019047 10 10q25 soc-2 suppressor of clear homolog (C. elegans) protein-coding SHOC2 soc-2 suppressor of clear homolog (C. elegans) O leucine-rich repeat protein SHOC-2 20121230 -9606 8038 ADAM12 RP11-295J3.5 MCMP|MCMPMltna|MLTN|MLTNA HGNC:190|MIM:602714|Ensembl:ENSG00000148848|HPRD:04092|Vega:OTTHUMG00000019243 10 10q26.3 ADAM metallopeptidase domain 12 protein-coding ADAM12 ADAM metallopeptidase domain 12 O disintegrin and metalloproteinase domain-containing protein 12|meltrin-alpha 20121230 -9606 8039 PROA - - MIM:176770 - - Proline(-) auxotroph, complementation of unknown - - - - 20120906 -9606 8041 TP250 - - MIM:186710 11 11pter-p11.2 T-cell activation antigen p250 unknown - - - - 20100404 -9606 8045 RASSF7 - C11orf13|HRAS1|HRC1 HGNC:1166|MIM:143023|Ensembl:ENSG00000099849|HPRD:00878|Vega:OTTHUMG00000132004 11 11p15.5 Ras association (RalGDS/AF-6) domain family (N-terminal) member 7 protein-coding RASSF7 Ras association (RalGDS/AF-6) domain family (N-terminal) member 7 O HRAS1-related cluster protein 1|HRAS1-related cluster-1|Ras association (RalGDS/AF-6) domain family 7|ras association domain-containing protein 7 20121230 -9606 8048 CSRP3 - CLP|CMD1M|CMH12|CRP3|LMO4|MLP HGNC:2472|MIM:600824|Ensembl:ENSG00000129170|HPRD:07525|Vega:OTTHUMG00000166100 11 11p15.1 cysteine and glycine-rich protein 3 (cardiac LIM protein) protein-coding CSRP3 cysteine and glycine-rich protein 3 (cardiac LIM protein) O LIM domain only 4|cardiac LIM domain protein|cysteine and glycine-rich protein 3|muscle LIM protein 20121230 -9606 8050 PDHX - DLDBP|E3BP|OPDX|PDX1|proX HGNC:21350|MIM:608769|Ensembl:ENSG00000110435|HPRD:02002|Vega:OTTHUMG00000166491 11 11p13 pyruvate dehydrogenase complex, component X protein-coding PDHX pyruvate dehydrogenase complex, component X O dihydrolipoamide dehydrogenase-binding protein of pyruvate dehydrogenase complex|lipoyl-containing pyruvate dehydrogenase complex component X|pyruvate dehydrogenase complex, E3-binding protein subunit|pyruvate dehydrogenase complex, lipoyl-containing component X|pyruvate dehydrogenase protein X component, mitochondrial 20121230 -9606 8056 ECB2 - FBP MIM:263400 11 11q23 erythrocytosis, autosomal recessive benign 2 unknown - - - - 20110714 -9606 8060 FNL2 - - MIM:135610 11 11q12.1-q13.5 Fibronectin-like-2 unknown - - - - 20100404 -9606 8061 FOSL1 - FRA|FRA1|fra-1 HGNC:13718|MIM:136515|Ensembl:ENSG00000175592|HPRD:00643|Vega:OTTHUMG00000166715 11 11q13 FOS-like antigen 1 protein-coding FOSL1 FOS-like antigen 1 O FOS-like antigen-1|fos-related antigen 1 20121230 -9606 8065 CUL5 - VACM-1|VACM1 HGNC:2556|MIM:601741|Ensembl:ENSG00000166266|HPRD:03444|Vega:OTTHUMG00000166369 11 11q22.3 cullin 5 protein-coding CUL5 cullin 5 O CUL-5|Cullin-5 (vasopressin-activated calcium-mobilizing receptor-1)|Vasopressin-activated calcium-mobilizing receptor-1|cullin-5|vasopressin-activated calcium-mobilizing receptor 1 20121230 -9606 8066 ANC - - MIM:105580 11 11q22-qter Anal canal carcinoma unknown - - - - 20110215 -9606 8068 BRCATA - - MIM:600048 11 11q23 Breast cancer, 11;22 translocation associated unknown - - - - 20120622 -9606 8073 PTP4A2 BM-008 HH13|HH7-2|HU-PP-1|OV-1|PRL-2|PRL2|PTP4A|PTPCAAX2|ptp-IV1a|ptp-IV1b HGNC:9635|MIM:601584|Ensembl:ENSG00000184007|HPRD:03348 1 1p35 protein tyrosine phosphatase type IVA, member 2 protein-coding PTP4A2 protein tyrosine phosphatase type IVA, member 2 O PTP(CAAXII)|phosphatase of regenerating liver 2|protein tyrosine phosphatase IVA|protein tyrosine phosphatase IVA2|protein tyrosine phosphatase type IVA 2|protein-tyrosine phosphatase 4a2|protein-tyrosine phosphatase of regenerating liver 2 20121230 -9606 8074 FGF23 UNQ3027/PRO9828 ADHR|HPDR2|HYPF|PHPTC HGNC:3680|MIM:605380|Ensembl:ENSG00000118972|HPRD:05648|Vega:OTTHUMG00000168241 12 12p13.3 fibroblast growth factor 23 protein-coding FGF23 fibroblast growth factor 23 O FGF-23|phosphatonin|tumor-derived hypophosphatemia inducing factor|tumor-derived hypophosphatemia-inducing factor 20121230 -9606 8075 PCS - - MIM:168710 12 12p13.2 Parotid proline-rich salivary protein Pc unknown - - - - 20100404 -9606 8076 MFAP5 - MAGP2|MP25 HGNC:29673|MIM:601103|Ensembl:ENSG00000197614|HPRD:03063|Vega:OTTHUMG00000168703 12 12p13.1-p12.3 microfibrillar associated protein 5 protein-coding MFAP5 microfibrillar associated protein 5 O MAGP-2|MFAP-5|microfibril-associated glycoprotein 2|microfibril-associated glycoprotein-2|microfibrillar-associated protein 5 20121230 -9606 8078 USP5 - ISOT HGNC:12628|MIM:601447|Ensembl:ENSG00000111667|HPRD:03265|Vega:OTTHUMG00000169233 12 12p13 ubiquitin specific peptidase 5 (isopeptidase T) protein-coding USP5 ubiquitin specific peptidase 5 (isopeptidase T) O deubiquitinating enzyme 5|isopeptidase T|ubiquitin carboxyl-terminal hydrolase 5|ubiquitin isopeptidase T|ubiquitin specific protease 5 (isopeptidase T)|ubiquitin thioesterase 5|ubiquitin thiolesterase 5|ubiquitin-specific protease-5 (ubiquitin isopeptidase T)|ubiquitin-specific-processing protease 5 20121230 -9606 8079 MLF2 - NTN4 HGNC:7126|MIM:601401|Ensembl:ENSG00000089693|HPRD:03238|Vega:OTTHUMG00000168717 12 12p13 myeloid leukemia factor 2 protein-coding MLF2 myeloid leukemia factor 2 O myelodysplasia-myeloid leukemia factor 2 20121230 -9606 8080 HTNB - - MIM:112410 12 12p12.2-p11.2 hypertension with brachydactyly unknown - - - - 20120622 -9606 8081 AD5 - - HGNC:185|MIM:602096 12 12p11.23-q13.12 Alzheimer disease 5 unknown AD5 Alzheimer disease 5 O - 20120622 -9606 8082 SSPN - DAGA5|KRAG|NSPN|SPN1|SPN2 HGNC:11322|MIM:601599|Ensembl:ENSG00000123096|HPRD:03359|Vega:OTTHUMG00000169167 12 12p11.2 sarcospan protein-coding SSPN sarcospan O K-ras oncogene-associated protein|Kras oncogene-associated|kirsten-ras-associated protein|microspan|nanospan|sarcospan (Kras oncogene-associated gene) 20121230 -9606 8083 KAR - - MIM:107920 12 12p Aromatic alpha-keto acid reductase unknown - - - - 20100404 -9606 8084 PPKB - - MIM:600231 12 12q11-q13 palmoplantar keratoderma, Bothnia type unknown - - - - 20120622 -9606 8085 MLL2 - AAD10|ALR|CAGL114|KABUK1|KMS|KMT2D|MLL4|TNRC21 HGNC:7133|MIM:602113|Ensembl:ENSG00000167548|HPRD:03664|Vega:OTTHUMG00000166524 12 12q13.12 myeloid/lymphoid or mixed-lineage leukemia 2 protein-coding MLL2 myeloid/lymphoid or mixed-lineage leukemia 2 O ALL1-related protein|Kabuki make-up syndrome|Kabuki mental retardation syndrome|histone-lysine N-methyltransferase MLL2|lysine N-methyltransferase 2D|trinucleotide repeat containing 21 20121230 -9606 8086 AAAS GL003 AAA|AAASb|ADRACALA|ADRACALIN|ALADIN HGNC:13666|MIM:605378|Ensembl:ENSG00000094914|HPRD:05646|Vega:OTTHUMG00000169729 12 12q13 achalasia, adrenocortical insufficiency, alacrimia protein-coding AAAS achalasia, adrenocortical insufficiency, alacrimia O Allgrove, triple-A|aladin 20121230 -9606 8087 FXR1 - FXR1P HGNC:4023|MIM:600819|Ensembl:ENSG00000114416|HPRD:02892|Vega:OTTHUMG00000158138 3 3q28 fragile X mental retardation, autosomal homolog 1 protein-coding FXR1 fragile X mental retardation, autosomal homolog 1 O fragile X mental retardation syndrome-related protein 1|hFXR1p 20121230 -9606 8089 YEATS4 - 4930573H17Rik|B230215M10Rik|GAS41|NUBI-1|YAF9 HGNC:24859|MIM:602116|Ensembl:ENSG00000127337|HPRD:03666|Vega:OTTHUMG00000169358 12 12q13-q15 YEATS domain containing 4 protein-coding YEATS4 YEATS domain containing 4 O NuMA binding protein 1|YEATS domain-containing protein 4|glioma-amplified sequence 41|glioma-amplified sequence-41|nuBI1|nuMA-binding protein 1 20121230 -9606 8090 SPPM - SPMD MIM:181430 12 - scapuloperoneal syndrome, myopathic type unknown - - - - 20120622 -9606 8091 HMGA2 - BABL|HMGI-C|HMGIC|LIPO|STQTL9 HGNC:5009|MIM:600698|Ensembl:ENSG00000149948|HPRD:02827|Vega:OTTHUMG00000168936 12 12q15 high mobility group AT-hook 2 protein-coding HMGA2 high mobility group AT-hook 2 O High-mobility group protein HMGI-C|high mobility group AT-hook protein 2|high mobility group protein HMGI-C|high-mobility group (nonhistone chromosomal) protein isoform I-C 20121230 -9606 8092 ALX1 - CART1|FND3 HGNC:1494|MIM:601527|Ensembl:ENSG00000180318|HPRD:03316|Vega:OTTHUMG00000169820 12 12q21.31 ALX homeobox 1 protein-coding ALX1 ALX homeobox 1 O ALX homeobox protein 1|CART-1|cartilage paired-class homeoprotein 1 20121230 -9606 8093 MGCT - - MIM:273300 12 12q22 male germ cell tumor unknown - - - - 20120622 -9606 8094 SMAL - - MIM:600175 - - spinal muscular atrophy, congenital nonprogressive, of lower limbs unknown - - - - 20121123 -9606 8099 CDK2AP1 - DOC1|DORC1|ST19|doc-1|p12DOC-1 HGNC:14002|MIM:602198|Ensembl:ENSG00000111328|HPRD:03726|Vega:OTTHUMG00000168854 12 12q24.31 cyclin-dependent kinase 2 associated protein 1 protein-coding CDK2AP1 cyclin-dependent kinase 2 associated protein 1 O CDK2-associated protein 1|Deleted in oral cancer-1|cyclin-dependent kinase 2-associated protein 1|deleted in oral cancer 1|putative oral cancer suppressor 20121230 -9606 8100 IFT88 RP11-172H24.2 D13S1056E|DAF19|TG737|TTC10|hTg737 HGNC:20606|MIM:600595|Ensembl:ENSG00000032742|HPRD:09000|Vega:OTTHUMG00000016517 13 13q12.1 intraflagellar transport 88 homolog (Chlamydomonas) protein-coding IFT88 intraflagellar transport 88 homolog (Chlamydomonas) O TPR repeat protein 10|intraflagellar transport protein 88 homolog|polaris homolog|probe hTg737 (polycystic kidney disease, autosomal recessive)|recessive polycystic kidney disease protein Tg737 homolog|tetratricopeptide repeat domain 10|tetratricopeptide repeat protein 10 20121230 -9606 8101 D13S25 - DBM MIM:109543 13 13q14 Disrupted in B-cell neoplasia unknown - - - - 20120622 -9606 8102 XRS - - MIM:194370 13 13q14 X-ray sensitivity unknown - - - - 20110215 -9606 8103 PAPA2 - - MIM:602085 13 13q21-q32 postaxial polydactyly, type A2 unknown - - - - 20120622 -9606 8104 MCOR - - MIM:156600 13 13q31-q32 microcoria, congenital unknown - - - - 20120622 -9606 8105 BRCD1 - BCDS1 MIM:114450 - - cancer, familial, with in vitro radioresistance unknown - - - - 20120622 -9606 8106 PABPN1 - OPMD|PAB2|PABII|PABP-2|PABP2 HGNC:8565|MIM:602279|Ensembl:ENSG00000100836|HPRD:03787|Vega:OTTHUMG00000028739 14 14q11.2 poly(A) binding protein, nuclear 1 protein-coding PABPN1 poly(A) binding protein, nuclear 1 O poly(A) binding protein 2|poly(A) binding protein II|polyadenylate-binding protein 2 20121230 -9606 8110 DPF3 - CERD4 HGNC:17427|MIM:601672|Ensembl:ENSG00000205683|HPRD:03395|Vega:OTTHUMG00000171364 14 14q24.2 D4, zinc and double PHD fingers, family 3 protein-coding DPF3 D4, zinc and double PHD fingers, family 3 O 2810403B03Rik|BAF45C|BRG1-associated factor 45C|cer-d4 homolog|zinc finger protein DPF3|zinc finger protein cer-d4 20121230 -9606 8111 GPR68 - GPR12A|OGR1 HGNC:4519|MIM:601404|Ensembl:ENSG00000119714|HPRD:03241|Vega:OTTHUMG00000167590 14 14q31 G protein-coupled receptor 68 protein-coding GPR68 G protein-coupled receptor 68 O G-protein coupled receptor 68|ovarian cancer G protein-coupled receptor, 1|ovarian cancer G-protein coupled receptor 1|sphingosylphosphorylcholine receptor 20121230 -9606 8113 MCOP - MCOP1 MIM:251600 14 14q32 microphthalmia, autosomal recessive unknown - - - - 20120622 -9606 8114 IV - SIV HGNC:6185|MIM:270100 14 14q32 inversus situs, viscerum unknown IV inversus situs, viscerum O - 20110714 -9606 8115 TCL1A - TCL1 HGNC:11648|MIM:186960|Ensembl:ENSG00000100721|HPRD:01744|Vega:OTTHUMG00000171390 14 14q32.1 T-cell leukemia/lymphoma 1A protein-coding TCL1A T-cell leukemia/lymphoma 1A O T-cell leukemia/lymphoma protein 1A|T-cell lymphoma-1|oncogene TCL-1|oncogene TCL1|protein p14 TCL1 20121230 -9606 8118 LCH - - MIM:151020 14 - Lentil agglutinin-binding unknown - - - - 20100404 -9606 8120 AP3B2 - NAPTB HGNC:567|MIM:602166|Ensembl:ENSG00000103723|HPRD:03699|Vega:OTTHUMG00000168009 15 15q adaptor-related protein complex 3, beta 2 subunit protein-coding AP3B2 adaptor-related protein complex 3, beta 2 subunit O AP-3 complex subunit beta-2|Neuronal adaptin-like protein, beta-subunit|adapter-related protein complex 3 subunit beta-2|adaptor protein complex AP-3 subunit beta-2|beta-3B-adaptin|clathrin assembly protein complex 3 beta-2 large chain|neuron-specific vesicle coat protein beta-NAP 20121230 -9606 8123 PAR5 - D15S226E MIM:600162 15 15q11-q13 Prader-Willi/Angelman syndrome-5 miscRNA - - - - 20121230 -9606 8125 ANP32A - C15orf1|HPPCn|I1PP2A|LANP|MAPM|PHAP1|PHAPI|PP32 HGNC:13233|MIM:600832|Ensembl:ENSG00000140350|HPRD:09014|Vega:OTTHUMG00000154502 15 15q23 acidic (leucine-rich) nuclear phosphoprotein 32 family, member A protein-coding ANP32A acidic (leucine-rich) nuclear phosphoprotein 32 family, member A O acidic leucine-rich nuclear phosphoprotein 32 family member A|acidic nuclear phosphoprotein pp32|cerebellar leucine rich acidic nuclear protein|hepatopoietin Cn|inhibitor-1 of protein phosphatase-2A|leucine-rich acidic nuclear protein|mapmodulin|potent heat-stable protein phosphatase 2A inhibitor I1PP2A|putative HLA-DR-associated protein I|putative human HLA class II associated protein I 20121230 -9606 8126 MRST - - MIM:602685 15 15q24 Mental retardation, severe, with spasticity and tapetoretinal unknown - - - - 20120622 -9606 8128 ST8SIA2 UNQ3057 HsT19690|SIAT8B|ST8SIA-II|STX HGNC:10870|MIM:602546|Ensembl:ENSG00000140557|HPRD:03969|Vega:OTTHUMG00000149843 15 15q26 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 2 protein-coding ST8SIA2 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 2 O SIAT8-B|ST8SiaII|alpha-2,8-sialyltransferase 8B|alpha-2,8-sialyltransferase 8B 1|sialyltransferase 8 (alpha-2, 8-sialytransferase) B|sialyltransferase 8B|sialyltransferase X|sialytransferase St8Sia II 20121230 -9606 8129 HBHR - ATR1 MIM:141750 16 16pter-p13.3 alpha-thalassemia/mental retardation syndrome, type 1 unknown - - - - 20120622 -9606 8130 CATM - MCOPCT1 MIM:156850 16 16p13.3 cataract, congenital, with microphthalmia unknown - - - - 20120622 -9606 8131 NPRL3 Z69666.1-003 C16orf35|CGTHBA|HS-40|MARE|NPR3|RMD11 HGNC:14124|MIM:600928|Ensembl:ENSG00000103148|HPRD:11866 16 16p13.3 nitrogen permease regulator-like 3 (S. cerevisiae) protein-coding NPRL3 nitrogen permease regulator-like 3 (S. cerevisiae) O -14 gene protein|alpha-globin regulatory element-containing gene protein|conserved gene telomeric to alpha globin cluster|nitrogen permease regulator 3-like protein 20121230 -9606 8132 PKDTS - - MIM:600273 16 16p13.3 polycystic kidney disease, infantile severe, with tuberous sclerosis unknown - - - - 20120622 -9606 8136 WT3 - - MIM:194090 16 16q Wilms tumor-3 unknown - - - - 20120622 -9606 8137 HYD2 - - HGNC:13822|MIM:602639 16 16q12.1 hypodontia, autosomal recessive (2) unknown HYD2 hypodontia, autosomal recessive (2) O - 20120622 -9606 8139 GAN - GAN1|KLHL16 HGNC:4137|MIM:605379|Ensembl:ENSG00000127688|HPRD:05647|Vega:OTTHUMG00000137627 16 16q24.1 gigaxonin protein-coding GAN gigaxonin O kelch-like protein 16 20121230 -9606 8140 SLC7A5 - 4F2LC|CD98|D16S469E|E16|LAT1|MPE16|hLAT1 HGNC:11063|MIM:600182|Ensembl:ENSG00000103257|HPRD:02552|Vega:OTTHUMG00000137658 16 16q24.3 solute carrier family 7 (amino acid transporter light chain, L system), member 5 protein-coding SLC7A5 solute carrier family 7 (amino acid transporter light chain, L system), member 5 O 4F2 LC|4F2 light chain|CD98 light chain|L-type amino acid transporter 1|integral membrane protein E16|large neutral amino acids transporter 1|large neutral amino acids transporter small subunit 1|sodium-independent neutral amino acid transporter LAT1|solute carrier family 7 (cationic amino acid transporter, y+ system), member 5|solute carrier family 7 member 5|y+ system cationic amino acid transporter 20121230 -9606 8142 BCPR - - MIM:113721 17 17p13.3 Breast cancer-related regulator of TP53 unknown - - - - 20120622 -9606 8144 FIMG1 - CMS1A1|FIM1|FIMG|MGI MIM:605809 17 17p13 myasthenia gravis, familial infantile, 1 unknown - - - - 20120622 -9606 8148 TAF15 - Npl3|RBP56|TAF2N|TAFII68 HGNC:11547|MIM:601574|Ensembl:ENSG00000172660|HPRD:09031|Vega:OTTHUMG00000179973 17 17q11.1-q11.2 TAF15 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 68kDa protein-coding TAF15 TAF15 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 68kDa O RBP56/CSMF fusion|TATA box binding protein (TBP)-associated factor, RNA polymerase II, N, 68kD (RNA-binding protein 56)|TATA box-binding protein-associated factor 2N (RNA-binding protein 56)|TATA-binding protein-associated factor 2N|TBP-associated factor 15 20121230 -9606 8151 WT4 - FWT1 MIM:601363 17 17q12-q21 Wilms tumor-4 unknown - - - - 20120622 -9606 8153 RND2 - ARHN|RHO7|RhoN HGNC:18315|MIM:601555|Ensembl:ENSG00000108830|HPRD:03332|Vega:OTTHUMG00000180817 17 17q21 Rho family GTPase 2 protein-coding RND2 Rho family GTPase 2 O GTP-binding protein Rho7|ras homolog gene family, member N|rho-related GTP-binding protein Rho7|rho-related GTP-binding protein RhoN 20121230 -9606 8156 GPSC - - MIM:221820 17 17q21-q22 gliosis, familial progressive subcortical unknown - - - - 20120622 -9606 8160 MVWF - - - 17 - Modifier of von Willebrand factor unknown - - - - 20100404 -9606 8161 COIL - CLN80|p80-coilin HGNC:2184|MIM:600272|Ensembl:ENSG00000121058|HPRD:02605|Vega:OTTHUMG00000178126 17 17q22 coilin protein-coding COIL coilin O coilin p80|p80 20121230 -9606 8163 CDR3 - - MIM:602197 17 17q25 Cerebellar degeneration-related autoantigen-3 other - - - - 20100404 -9606 8165 AKAP1 - AKAP|AKAP121|AKAP149|AKAP84|D-AKAP1|PPP1R43|PRKA1|SAKAP84 HGNC:367|MIM:602449|Ensembl:ENSG00000121057|HPRD:03905|Vega:OTTHUMG00000140369 17 17q22 A kinase (PRKA) anchor protein 1 protein-coding AKAP1 A kinase (PRKA) anchor protein 1 O A-kinase anchor protein 1, mitochondrial|A-kinase anchor protein 149 kDa|AKAP 149|D-AKAP-1|dual-specificity A-kinase anchoring protein 1|protein kinase A anchoring protein 1|protein kinase A1|protein phosphatase 1, regulatory subunit 43|spermatid A-kinase anchor protein 84 20121230 -9606 8168 TW - - - 18 - Twirler mouse mutation, human homolog of unknown - - - - 20110215 -9606 8170 SLC14A2 - HUT2|UT-A2|UT2|UTA|UTR|hUT-A6 HGNC:10919|MIM:601611|Ensembl:ENSG00000132874|HPRD:03366|Vega:OTTHUMG00000132616 18 18q12.1-q21.1 solute carrier family 14 (urea transporter), member 2 protein-coding SLC14A2 solute carrier family 14 (urea transporter), member 2 O solute carrier family 14 member 2|urea transporter 2|urea transporter, kidney|urea transporter-2 20121230 -9606 8173 CNSN - - MIM:212200 18 18q21.3 Carnosinemia (carnosinase) unknown - - - - 20120622 -9606 8174 MADCAM1 - MACAM1 HGNC:6765|MIM:102670|Ensembl:ENSG00000099866|HPRD:00035|Vega:OTTHUMG00000180548 19 19p13.3 mucosal vascular addressin cell adhesion molecule 1 protein-coding MADCAM1 mucosal vascular addressin cell adhesion molecule 1 O MAdCAM-1|hMAdCAM-1|mucosal addressin cell adhesion molecule 1|mucosal addressin cell adhesion molecule-1 20121230 -9606 8175 SF3A2 - PRP11|PRPF11|SAP62|SF3a66 HGNC:10766|MIM:600796|Ensembl:ENSG00000104897|HPRD:02877|Vega:OTTHUMG00000180414 19 19p13.3 splicing factor 3a, subunit 2, 66kDa protein-coding SF3A2 splicing factor 3a, subunit 2, 66kDa O SAP 62|pre-mRNA splicing factor SF3A, subunit 2|spliceosome associated protein 62|spliceosome-associated protein 62|splicing factor 3A subunit 2 20121230 -9606 8177 LPSA - D19S381E MIM:164953 19 19p13.2-q13.3 Oncogene liposarcoma (DNA segment, single copy, expressed, probes unknown - - - - 20120622 -9606 8178 ELL - C19orf17|ELL1|MEN|PPP1R68 HGNC:23114|MIM:600284|Ensembl:ENSG00000105656|HPRD:02615 19 19p13.1 elongation factor RNA polymerase II protein-coding ELL elongation factor RNA polymerase II O ELL gene (11-19 lysine-rich leukemia gene)|RNA polymerase II elongation factor ELL|eleven-nineteen lysine-rich leukemia protein|protein phosphatase 1, regulatory subunit 68 20121230 -9606 8181 BFIC - BFIC1 MIM:601764 19 19q benign familial infantile convulsions unknown - - - - 20120622 -9606 8184 HBN1 - HB1|PFHB1|PFHB1B MIM:604559 - - Progressive familial heart block, type I, locus 1 unknown - - - - 20120622 -9606 8187 ZNF239 - HOK-2|MOK2 HGNC:13031|MIM:601069|Ensembl:ENSG00000196793|HPRD:03044|Vega:OTTHUMG00000018033 10 10q11.22-q11.23 zinc finger protein 239 protein-coding ZNF239 zinc finger protein 239 O zinc finger protein (C2H2) homologous to mouse MOK-2|zinc finger protein HOK-2|zinc finger protein MOK-2 20121230 -9606 8188 NGFG - - MIM:162040 19 19q13.3 Nerve growth factor, gamma subunit unknown - - - - 20110215 -9606 8189 SYMPK hCG_20812 SPK|SYM HGNC:22935|MIM:602388|Ensembl:ENSG00000125755|HPRD:09090|Vega:OTTHUMG00000150151 19 19q13.3 symplekin protein-coding SYMPK symplekin O - 20121230 -9606 8190 MIA - CD-RAP HGNC:7076|MIM:601340|Ensembl:ENSG00000261857|HPRD:03216 19 19q13.2 melanoma inhibitory activity protein-coding MIA melanoma inhibitory activity O melanoma-derived growth regulatory protein 20121230 -9606 8192 CLPP - - HGNC:2084|MIM:601119|Ensembl:ENSG00000125656|HPRD:03074 19 19p13.3 ClpP caseinolytic peptidase, ATP-dependent, proteolytic subunit homolog (E. coli) protein-coding CLPP ClpP caseinolytic peptidase, ATP-dependent, proteolytic subunit homolog (E. coli) O ATP-dependent protease ClpAP, proteolytic subunit, human|ClpP caseinolytic peptidase ATP-dependent, proteolytic subunit|ClpP caseinolytic protease, ATP-dependent, proteolytic subunit homolog|endopeptidase Clp|putative ATP-dependent Clp protease proteolytic subunit, mitochondrial 20121230 -9606 8193 DPF1 - BAF45b|NEUD4|neuro-d4 HGNC:20225|MIM:601670|Ensembl:ENSG00000011332|HPRD:03393|Vega:OTTHUMG00000157164 19 19q13.2 D4, zinc and double PHD fingers family 1 protein-coding DPF1 D4, zinc and double PHD fingers family 1 O BRG1-associated factor 45B|neuro-d4 homolog|zinc finger protein neuro-d4 20121230 -9606 8195 MKKS - BBS6|HMCS|KMS|MKS HGNC:7108|MIM:604896|Ensembl:ENSG00000125863|HPRD:05356|Vega:OTTHUMG00000031868 20 20p12 McKusick-Kaufman syndrome protein-coding MKKS McKusick-Kaufman syndrome O McKusick-Kaufman/Bardet-Biedl syndromes putative chaperonin|bardet-Biedl syndrome 6 protein 20121230 -9606 8197 CHED1 - CHED|CHED2 HGNC:1923|MIM:121700 20 20p11.2-q11.2 corneal endothelial dystrophy 1 (autosomal dominant) unknown CHED1 corneal endothelial dystrophy 1 (autosomal dominant) O - 20120622 -9606 8200 GDF5 - BMP14|CDMP1|LAP4|OS5|SYNS2 HGNC:4220|MIM:601146|Ensembl:ENSG00000125965|HPRD:03092|Vega:OTTHUMG00000032341 20 20q11.2 growth differentiation factor 5 protein-coding GDF5 growth differentiation factor 5 O CDMP-1|GDF-5|cartilage-derived morphogenetic protein-1|growth/differentiation factor 5|radotermin 20121230 -9606 8201 MLRG - MTS MIM:601308 20 20q11.2-q12 Myeloid leukemia-related gene (myeloid tumor suppressor) unknown - - - - 20110215 -9606 8202 NCOA3 RP5-1049G16.3 ACTR|AIB-1|AIB1|CAGH16|CTG26|KAT13B|RAC3|SRC-3|SRC3|TNRC14|TNRC16|TRAM-1|bHLHe42|pCIP HGNC:7670|MIM:601937|Ensembl:ENSG00000124151|HPRD:03570|Vega:OTTHUMG00000033061 20 20q12 nuclear receptor coactivator 3 protein-coding NCOA3 nuclear receptor coactivator 3 O CBP-interacting protein|amplified in breast cancer 1 protein|class E basic helix-loop-helix protein 42|receptor-associated coactivator 3|steroid receptor coactivator protein 3|thyroid hormone receptor activator molecule 1 20121230 -9606 8204 NRIP1 - RIP140 HGNC:8001|MIM:602490|Ensembl:ENSG00000180530|HPRD:03927|Vega:OTTHUMG00000074323 21 21q11.2 nuclear receptor interacting protein 1 protein-coding NRIP1 nuclear receptor interacting protein 1 O nuclear factor RIP140|nuclear receptor-interacting protein 1|receptor interacting protein 140|receptor-interacting protein 140 20121230 -9606 8205 TAM - MST MIM:159595 21 21q11.2 Myeloproliferative syndrome, transient (transient abnormal unknown - - - - 20120622 -9606 8208 CHAF1B - CAF-1|CAF-IP60|CAF1|CAF1A|CAF1P60|MPHOSPH7|MPP7 HGNC:1911|MIM:601245|Ensembl:ENSG00000159259|HPRD:03147|Vega:OTTHUMG00000086606 21 21q22.13 chromatin assembly factor 1, subunit B (p60) protein-coding CHAF1B chromatin assembly factor 1, subunit B (p60) O CAF-1 subunit B|CAF-I 60 kDa subunit|CAF-I p60|M-phase phosphoprotein 7|chromatin assembly factor 1 subunit B|chromatin assembly factor I p60 subunit|human chromatin assembly factor-I p60 subunit 20121230 -9606 8209 C21orf33 - ES1|GT335|HES1|KNPH|KNPI HGNC:1273|MIM:601659|Ensembl:ENSG00000160221|HPRD:09044|Vega:OTTHUMG00000086916 21 21q22.3 chromosome 21 open reading frame 33 protein-coding C21orf33 chromosome 21 open reading frame 33 O ES1 protein homolog, mitochondrial|Keio novel protein I|human HES1 protein, homolog to E.coli and zebrafish ES1 protein 20121230 -9606 8212 AABT - - MIM:109660 21 - Beta-amino acids, renal transport of unknown - - - - 20110215 -9606 8213 BAS - - MIM:109670 21 - Beta-adrenergic stimulation, response to unknown - - - - 20110215 -9606 8214 DGCR6 - - HGNC:2846|MIM:601279|Ensembl:ENSG00000183628|HPRD:03177|Vega:OTTHUMG00000150162 22 22q11.21|22q11 DiGeorge syndrome critical region gene 6 protein-coding DGCR6 DiGeorge syndrome critical region gene 6 O DiGeorge syndrome critical region protein 6|protein DGCR6 20121230 -9606 8215 DVL1L1 - DSH|DVL|DVL-22|DVL1|DVL4 HGNC:3085|MIM:601225 22 22q11.21|22q11 dishevelled, dsh homolog 1 (Drosophila)-like 1 pseudo DVL1L1 dishevelled, dsh homolog 1 (Drosophila)-like 1 O - 20121230 -9606 8216 LZTR1 - LZTR-1 HGNC:6742|MIM:600574|Ensembl:ENSG00000099949|HPRD:08992|Vega:OTTHUMG00000150878 22 22q11.21|22q11.1-q11.2 leucine-zipper-like transcription regulator 1 protein-coding LZTR1 leucine-zipper-like transcription regulator 1 O leucine-zipper-like regulator-1|leucine-zipper-like transcriptional regulator 1 20121230 -9606 8217 IGLJ@ - IGLJ HGNC:5862|MIM:147230 22 22q11.2 immunoglobulin lambda joining cluster other IGLJ@ immunoglobulin lambda joining cluster O - 20120208 -9606 8218 CLTCL1 - CHC22|CLH22|CLTCL|CLTD HGNC:2093|MIM:601273|Ensembl:ENSG00000070371|HPRD:03172|Vega:OTTHUMG00000150109 22 22q11.21 clathrin, heavy chain-like 1 protein-coding CLTCL1 clathrin, heavy chain-like 1 O CLH-22|Clathrin, heavy polypeptide D|clathrin heavy chain 2|clathrin heavy chain on chromosome 22|clathrin, heavy polypeptide-like 1 20121230 -9606 8220 DGCR14 - DGCR13|DGS-H|DGS-I|DGSH|DGSI|ES2|Es2el HGNC:16817|MIM:601755|Ensembl:ENSG00000100056|HPRD:03452|HPRD:18586|Vega:OTTHUMG00000150119 22 22q11.21|22q11.2 DiGeorge syndrome critical region gene 14 protein-coding DGCR14 DiGeorge syndrome critical region gene 14 O DiGeorge syndrome critical region gene 13|DiGeorge syndrome critical region gene DGSI|DiGeorge syndrome gene H|DiGeorge syndrome gene I|Protein DGCR13|diGeorge syndrome critical region 13|diGeorge syndrome critical region 14|diGeorge syndrome protein H|protein DGCR14 20121230 -9606 8221 OGS2 - BBBG2|GBBB2 MIM:145410 22 22q11.2 Opitz G syndrome, type II unknown - - - - 20120622 -9606 8224 SYN3 LL22NC03-28H9.1 - HGNC:11496|MIM:602705|Ensembl:ENSG00000185666|HPRD:04083|Vega:OTTHUMG00000031004 22 22q12.3 synapsin III protein-coding SYN3 synapsin III O cN28H9.2 (synapsin III)|synapsin-3 20121230 -9606 8225 GTPBP6 LL0XNC01-136G2.2 PGPL HGNC:30189|MIM:300124|Ensembl:ENSG00000178605|HPRD:02128|Vega:OTTHUMG00000022694 X|Y Xp22.33; Yp11.32 GTP binding protein 6 (putative) protein-coding GTPBP6 GTP binding protein 6 (putative) O putative GTP-binding protein 6 20121230 -9606 8226 HDHD1 - DXF68S1E|FAM16AX|GS1|HDHD1A HGNC:16818|MIM:306480|Ensembl:ENSG00000130021|HPRD:02383|Vega:OTTHUMG00000021101 X Xp22.32 haloacid dehalogenase-like hydrolase domain containing 1 protein-coding HDHD1 haloacid dehalogenase-like hydrolase domain containing 1 O 5'-PsiMPase|family with sequence similarity 16, member A, X-linked|haloacid dehalogenase-like hydrolase domain containing 1A|haloacid dehalogenase-like hydrolase domain-containing protein 1|haloacid dehalogenase-like hydrolase domain-containing protein 1A|pseudouridine-5'-monophosphatase 20121230 -9606 8227 AKAP17A RP13-297E16.1 721P|AKAP-17A|CCDC133|CXYorf3|DXYS155E|PRKA17A|SFRS17A|XE7|XE7Y HGNC:18783|MIM:312095|MIM:465000|Ensembl:ENSG00000197976|HPRD:02419|Vega:OTTHUMG00000021063 X|Y Xp22.33 and Yp11.32 A kinase (PRKA) anchor protein 17A protein-coding AKAP17A A kinase (PRKA) anchor protein 17A O A-kinase anchor protein 17A|B-lymphocyte surface antigen|protein kinase A-anchoring protein 17A|pseudoautosomal gene XE7|splicing factor, arginine/serine-rich 17A 20121230 -9606 8228 PNPLA4 - DXS1283E|GS2|iPLA2eta HGNC:24887|MIM:300102|Ensembl:ENSG00000006757|HPRD:02112|Vega:OTTHUMG00000021103 X Xp22.3 patatin-like phospholipase domain containing 4 protein-coding PNPLA4 patatin-like phospholipase domain containing 4 O IPLA2 eta|calcium independent phospholipases A2 eta|patatin-like phospholipase domain-containing protein 4 20121230 -9606 8231 CND - - MIM:304730 X Xq24-qter Corneal dermoids unknown - - - - 20120622 -9606 8233 ZRSR2 - U2AF1-RS2|U2AF1L2|U2AF1RS2|URP HGNC:23019|MIM:300028|Ensembl:ENSG00000169249|HPRD:02068|Vega:OTTHUMG00000021184 X Xp22.1 zinc finger (CCCH type), RNA-binding motif and serine/arginine rich 2 protein-coding ZRSR2 zinc finger (CCCH type), RNA-binding motif and serine/arginine rich 2 O CCCH type zinc finger, RNA-binding motif and serine/arginine rich protein 2|U2 small nuclear ribonucleoprotein auxiliary factor 35 kDa subunit-related protein 2|U2 small nuclear ribonucleoprotein auxiliary factor, small subunit 2|U2(RNU2) small nuclear RNA auxiliary factor 1-like 2|U2AF35-related protein|renal carcinoma antigen NY-REN-20 20121230 -9606 8237 USP11 RP4-659F15.2 UHX1 HGNC:12609|MIM:300050|Ensembl:ENSG00000102226|HPRD:02081|Vega:OTTHUMG00000021437 X Xp11.23 ubiquitin specific peptidase 11 protein-coding USP11 ubiquitin specific peptidase 11 O deubiquitinating enzyme 11|ubiquitin carboxyl-terminal hydrolase 11|ubiquitin carboxyl-terminal hydrolase, X-linked|ubiquitin thioesterase 11|ubiquitin thiolesterase 11|ubiquitin-specific processing protease 11|ubiquitin-specific-processing protease 11 20121230 -9606 8239 USP9X - DFFRX|FAF|FAM HGNC:12632|MIM:300072|Ensembl:ENSG00000124486|HPRD:02091|Vega:OTTHUMG00000021367 X Xp11.4 ubiquitin specific peptidase 9, X-linked protein-coding USP9X ubiquitin specific peptidase 9, X-linked O Drosophila fat facets related, X-linked|deubiquitinating enzyme FAF-X|fat facets in mammals|fat facets protein related, X-linked|fat facets protein-related, X-linked|hFAM|probable ubiquitin carboxyl-terminal hydrolase FAF-X|ubiquitin specific protease 9, X chromosome (fat facets-like Drosophila)|ubiquitin thioesterase FAF-X|ubiquitin thiolesterase FAF-X|ubiquitin-specific processing protease FAF-X|ubiquitin-specific protease 9, X chromosome|ubiquitin-specific-processing protease FAF-X 20121230 -9606 8241 RBM10 CTD-2522E6.5 DXS8237E|GPATC9|GPATCH9|S1-1|TARPS|ZRANB5 HGNC:9896|MIM:300080|Ensembl:ENSG00000182872|HPRD:02095|Vega:OTTHUMG00000021432 X Xp11.23 RNA binding motif protein 10 protein-coding RBM10 RNA binding motif protein 10 O RNA-binding protein 10|RNA-binding protein S1-1|g patch domain-containing protein 9 20121230 -9606 8242 KDM5C RP11-258C19.2 DXS1272E|JARID1C|MRXJ|MRXSCJ|MRXSJ|SMCX|XE169 HGNC:11114|MIM:314690|Ensembl:ENSG00000126012|HPRD:02442|Vega:OTTHUMG00000021606 X Xp11.22-p11.21 lysine (K)-specific demethylase 5C protein-coding KDM5C lysine (K)-specific demethylase 5C O JmjC domain-containing protein SMCX|Jumonji, AT rich interactive domain 1C (RBP2-like)|Jumonji/ARID domain-containing protein 1C|Smcx homolog, X chromosome|Smcy homolog, X-linked|histone demethylase JARID1C|lysine-specific demethylase 5C|protein SmcX|selected cDNA on X 20121230 -9606 8243 SMC1A RP6-29D12.1 CDLS2|DXS423E|SB1.8|SMC1|SMC1L1|SMC1alpha|SMCB HGNC:11111|MIM:300040|Ensembl:ENSG00000072501|HPRD:02077|Vega:OTTHUMG00000021614 X Xp11.22-p11.21 structural maintenance of chromosomes 1A protein-coding SMC1A structural maintenance of chromosomes 1A O SMC protein 1A|SMC-1-alpha|SMC-1A|SMC1 (structural maintenance of chromosomes 1, yeast)-like 1|SMC1 structural maintenance of chromosomes 1-like 1|segregation of mitotic chromosomes 1|structural maintenance of chromosomes protein 1A 20121230 -9606 8245 IDDMX - - MIM:300136 X Xp11 Diabetes mellitus, insulin-dependent, X-linked, susceptibility to unknown - - - - 20120622 -9606 8246 MRXS12 - - MIM:309545 X Xp11 Mental retardation, X-linked, syndromic 12 unknown - - - - 20110215 -9606 8248 DXS435E - A11 MIM:300010 X Xq A-11 gene unknown - - - - 20100404 -9606 8249 MGR2 - MFTS MIM:300125 X Xq Migraine, familial typical, susceptibility to unknown - - - - 20120622 -9606 8251 HNRNPDP - AUF1B|AUF1P|HNRPDP HGNC:5038 X Xq11.1 heterogeneous nuclear ribonucleoprotein D (AU-rich element RNA binding protein 1, 37kDa) pseudogene pseudo HNRNPDP heterogeneous nuclear ribonucleoprotein D (AU-rich element RNA binding protein 1, 37kDa) pseudogene O - 20121230 -9606 8255 BZX - BDCS MIM:301845 X Xq24-q27 Bazex syndrome unknown - - - - 20120622 -9606 8258 GUST - - MIM:309555 X Xq26 Gustavson mental retardation syndrome (with microcephaly, optic unknown - - - - 20120622 -9606 8259 INDX - - MIM:300076 X Xq26-qter Immunoneurologic syndrome X-linked, of Wood, Black, and Norbury unknown - - - - 20120622 -9606 8260 NAA10 - ARD1|ARD1A|DXS707|NATD|TE2 HGNC:18704|MIM:300013|Ensembl:ENSG00000102030|HPRD:02056|Vega:OTTHUMG00000024225 X Xq28 N(alpha)-acetyltransferase 10, NatA catalytic subunit protein-coding NAA10 N(alpha)-acetyltransferase 10, NatA catalytic subunit O ARD1 homolog A, N-acetyltransferase|N-acetyltransferase ARD1, human homolog of|N-alpha-acetyltransferase 10|N-alpha-acetyltransferase 10, NatA catalytic subunit|N-terminal acetyltransferase complex ARD1 subunit homolog A 20121230 -9606 8263 F8A1 - DXS522E|F8A|HAP40 HGNC:3547|MIM:305423|Ensembl:ENSG00000197932|HPRD:02374|Vega:OTTHUMG00000013500 X Xq28 coagulation factor VIII-associated 1 protein-coding F8A1 coagulation factor VIII-associated 1 O coagulation factor VIII-associated (intronic transcript) 1|cpG island protein|factor VIII associated protein|factor VIII intron 22 protein|huntingtin-associated protein 40 20121223 -9606 8266 UBL4A XX-FW89031B12.1 DX254E|DXS254E|G6PD|GDX|GET5|MDY2|TMA24|UBL4 HGNC:12505|MIM:312070|Ensembl:ENSG00000102178|HPRD:02417|Vega:OTTHUMG00000013370 X Xq28 ubiquitin-like 4A protein-coding UBL4A ubiquitin-like 4A O ubiquitin-like 4|ubiquitin-like protein 4A|ubiquitin-like protein GDX 20121230 -9606 8268 IPOX - CIIP|CIIPX MIM:300048 - - Intestinal pseudoobstruction, neuronal, primary idiopathic unknown - - - - 20120622 -9606 8269 TMEM187 - CXorf12|DXS9878E|ITBA1 HGNC:13705|MIM:300059|Ensembl:ENSG00000177854|HPRD:02086|Vega:OTTHUMG00000024220 X Xq28 transmembrane protein 187 protein-coding TMEM187 transmembrane protein 187 O - 20121230 -9606 8270 LAGE3 XX-FW81657B9.4 CVG5|DXS9879E|DXS9951E|ESO3|ITBA2 HGNC:26058|MIM:300060|Ensembl:ENSG00000196976|HPRD:02087|Vega:OTTHUMG00000033294 X Xq28 L antigen family, member 3 protein-coding LAGE3 L antigen family, member 3 O L antigen family member 3|protein ESO-3 20121230 -9606 8273 SLC10A3 XX-FW89031B12.2 DXS253E|P3 HGNC:22979|MIM:312090|Ensembl:ENSG00000126903|HPRD:02418|Vega:OTTHUMG00000013369 X Xq28 solute carrier family 10 (sodium/bile acid cotransporter family), member 3 protein-coding SLC10A3 solute carrier family 10 (sodium/bile acid cotransporter family), member 3 O P3 protein|Protein P3|solute carrier family 10 member 3 20121230 -9606 8277 TKTL1 LL0XNC01-14B7.1 TKR|TKT2 HGNC:11835|MIM:300044|Ensembl:ENSG00000007350|HPRD:02080|Vega:OTTHUMG00000022707 X Xq28 transketolase-like 1 protein-coding TKTL1 transketolase-like 1 O TK 2|transketolase-2|transketolase-like protein 1|transketolase-related protein 20121230 -9606 8284 KDM5D - HY|HYA|JARID1D|SMCY HGNC:11115|MIM:426000|Ensembl:ENSG00000012817|HPRD:02464|Vega:OTTHUMG00000036508 Y Yq11 lysine (K)-specific demethylase 5D protein-coding KDM5D lysine (K)-specific demethylase 5D O H-Y|Jumonji, AT rich interactive domain 1D (RBP2-like)|SMC homolog, Y chromosome|Smcy homolog, Y-linked|histocompatibility Y antigen|histone demethylase JARID1D|jumonji/ARID domain-containing protein 1D|lysine-specific demethylase 5D|protein SmcY|selected mouse cDNA on Y, human homolog of 20121230 -9606 8287 USP9Y - DFFRY|SPGFY2 HGNC:12633|MIM:400005|Ensembl:ENSG00000114374|HPRD:02449|Vega:OTTHUMG00000036469 Y Yq11.2 ubiquitin specific peptidase 9, Y-linked protein-coding USP9Y ubiquitin specific peptidase 9, Y-linked O deubiquitinating enzyme FAF-Y|fat facets protein-related, Y-linked|probable ubiquitin carboxyl-terminal hydrolase FAF-Y|ubiquitin specific peptidase 9, Y-linked (fat facets-like, Drosophila)|ubiquitin thioesterase FAF-Y|ubiquitin thiolesterase FAF-Y|ubiquitin-specific processing protease FAF-Y|ubiquitin-specific protease 9, Y chromosome|ubiquitin-specific-processing protease FAF-Y 20121230 -9606 8288 EPX - EPO|EPP|EPX-PEN HGNC:3423|MIM:131399|Ensembl:ENSG00000121053|HPRD:00576|Vega:OTTHUMG00000178802 17 17q23.1 eosinophil peroxidase protein-coding EPX eosinophil peroxidase O - 20121230 -9606 8289 ARID1A RP1-50O24.1 B120|BAF250|BAF250a|BM029|C1orf4|ELD|MRD14|OSA1|P270|SMARCF1|hELD|hOSA1 HGNC:11110|MIM:603024|Ensembl:ENSG00000117713|HPRD:04319|Vega:OTTHUMG00000004004 1 1p35.3 AT rich interactive domain 1A (SWI-like) protein-coding ARID1A AT rich interactive domain 1A (SWI-like) O ARID domain-containing protein 1A|AT-rich interactive domain-containing protein 1A|BRG1-associated factor 250a|OSA1 nuclear protein|SWI-like protein|SWI/SNF complex protein p270|SWI/SNF-related, matrix-associated, actin-dependent regulator of chromatin subfamily F member 1|brain protein 120|chromatin remodeling factor p250|osa homolog 1 20121230 -9606 8290 HIST3H3 - H3.4|H3/g|H3FT|H3t HGNC:4778|MIM:602820|Ensembl:ENSG00000168148|HPRD:04156|Vega:OTTHUMG00000040044 1 1q42 histone cluster 3, H3 protein-coding HIST3H3 histone cluster 3, H3 O H3 histone family, member T|H3/t|histone 3, H3|histone H3.1t 20121230 -9606 8291 DYSF - FER1L1|LGMD2B|MMD1 HGNC:3097|MIM:603009|Ensembl:ENSG00000135636|HPRD:04307|Vega:OTTHUMG00000129757 2 2p13.3 dysferlin, limb girdle muscular dystrophy 2B (autosomal recessive) protein-coding DYSF dysferlin, limb girdle muscular dystrophy 2B (autosomal recessive) O dysferlin|dystrophy-associated fer-1-like 1|dystrophy-associated fer-1-like protein|fer-1-like protein 1 20121230 -9606 8292 COLQ - EAD HGNC:2226|MIM:603033|Ensembl:ENSG00000206561|HPRD:04328|Vega:OTTHUMG00000156233 3 3p25 collagen-like tail subunit (single strand of homotrimer) of asymmetric acetylcholinesterase protein-coding COLQ collagen-like tail subunit (single strand of homotrimer) of asymmetric acetylcholinesterase O AChE Q subunit|acetylcholinesterase collagenic tail peptide|acetylcholinesterase-associated collagen|collagenic tail of endplate acetylcholinesterase|single strand of homotrimeric collagen-like tail subunit of asymmetric acetylcholinesterase 20121230 -9606 8293 SERF1A - 4F5|FAM2A|H4F5|SERF1|SMAM1 HGNC:10755|MIM:603011|Ensembl:ENSG00000172058|HPRD:04308|Vega:OTTHUMG00000162419 5 5q13 small EDRK-rich factor 1A (telomeric) protein-coding SERF1A small EDRK-rich factor 1A (telomeric) O SMA modifier 1|protein 4F5|small EDRK-rich factor 1|spinal muscular atrophy-related gene H4F5 20121230 -9606 8294 HIST1H4I - H4/m|H4FM|H4M HGNC:4793|MIM:602833|Ensembl:ENSG00000198339|HPRD:09109|Vega:OTTHUMG00000014471 6 6p21.33 histone cluster 1, H4i protein-coding HIST1H4I histone cluster 1, H4i O H4 histone family, member M|Histone 4 family, member M|histone 1, H4i|histone H4|histone family member 20121230 -9606 8295 TRRAP - PAF350/400|PAF400|STAF40|TR-AP|Tra1 HGNC:12347|MIM:603015|Ensembl:ENSG00000196367|HPRD:04310|Vega:OTTHUMG00000150403 7 7q21.2-q22.1 transformation/transcription domain-associated protein protein-coding TRRAP transformation/transcription domain-associated protein O 350/400 kDa PCAF-associated factor|tra1 homolog 20121230 -9606 8301 PICALM - CALM|CLTH|LAP HGNC:15514|MIM:603025|Ensembl:ENSG00000073921|HPRD:04320|Vega:OTTHUMG00000166981 11 11q14 phosphatidylinositol binding clathrin assembly protein protein-coding PICALM phosphatidylinositol binding clathrin assembly protein O clathrin assembly lymphoid myeloid leukemia protein|phosphatidylinositol-binding clathrin assembly protein 20121230 -9606 8302 KLRC4 - NKG2-F|NKG2F HGNC:6377|MIM:602893|Ensembl:ENSG00000183542|HPRD:16008|Vega:OTTHUMG00000168575 12 12p13.2-p12.3 killer cell lectin-like receptor subfamily C, member 4 protein-coding KLRC4 killer cell lectin-like receptor subfamily C, member 4 O NK cell receptor F|NKG2-F type II integral membrane protein|NKG2-F-activating NK receptor|natual killer cell group 2-F 20121230 -9606 8303 SNN - - HGNC:11149|MIM:603032|Ensembl:ENSG00000184602|HPRD:04327|Vega:OTTHUMG00000090535 16 16p13 stannin protein-coding SNN stannin O AG8_1 20121230 -9606 8309 ACOX2 - BCOX|BRCACOX|BRCOX|THCCox HGNC:120|MIM:601641|Ensembl:ENSG00000168306|HPRD:09037|Vega:OTTHUMG00000159154 3 3p14.3 acyl-CoA oxidase 2, branched chain protein-coding ACOX2 acyl-CoA oxidase 2, branched chain O 3-alpha,7-alpha,12-alpha-trihydroxy-5-beta-cholestanoyl-CoA 24-hydroxylase|3-alpha,7-alpha,12-alpha-trihydroxy-5-beta-cholestanoyl-CoA oxidase|THCA-CoA oxidase|acyl-Coenzyme A oxidase 2, branched chain|peroxisomal acyl-coenzyme A oxidase 2|peroxisomal branched chain acyl-CoA oxidase|trihydroxycoprostanoyl-CoA oxidase 20121230 -9606 8310 ACOX3 - - HGNC:121|MIM:603402|Ensembl:ENSG00000087008|HPRD:04552|Vega:OTTHUMG00000090509 4 4p15.3 acyl-CoA oxidase 3, pristanoyl protein-coding ACOX3 acyl-CoA oxidase 3, pristanoyl O BRCACox|acyl-Coenzyme A oxidase 3, pristanoyl|branched-chain acyl-CoA oxidase|peroxisomal acyl-coenzyme A oxidase 3|pristanoyl-CoA oxidase 20121230 -9606 8312 AXIN1 LA16c-314G4.3 AXIN|PPP1R49 HGNC:903|MIM:603816|Ensembl:ENSG00000103126|HPRD:04819|Vega:OTTHUMG00000064930 16 16p13.3 axin 1 protein-coding AXIN1 axin 1 O axin-1|axis inhibition protein 1|axis inhibitor 1|fused, mouse, homolog of|protein phosphatase 1, regulatory subunit 49 20121230 -9606 8313 AXIN2 - AXIL HGNC:904|MIM:604025|Ensembl:ENSG00000168646|HPRD:04935|Vega:OTTHUMG00000179353 17 17q23-q24 axin 2 protein-coding AXIN2 axin 2 O axin-2|axin-like protein|axis inhibition protein 2|conductin 20121230 -9606 8314 BAP1 hucep-6 HUCEP-13|TPDS|UCHL2 HGNC:950|MIM:603089|Ensembl:ENSG00000163930|HPRD:04366|Vega:OTTHUMG00000158392 3 3p21.31-p21.2 BRCA1 associated protein-1 (ubiquitin carboxy-terminal hydrolase) protein-coding BAP1 BRCA1 associated protein-1 (ubiquitin carboxy-terminal hydrolase) O cerebral protein 6|cerebral protein-13|ubiquitin carboxyl-terminal hydrolase BAP1 20121230 -9606 8315 BRAP - BRAP2|IMP|RNF52 HGNC:1099|MIM:604986|Ensembl:ENSG00000089234|Vega:OTTHUMG00000169600 12 12q24 BRCA1 associated protein protein-coding BRAP BRCA1 associated protein O BRCA1-associated protein|RING finger protein 52|galectin-2-binding protein|impedes mitogenic signal propagation|renal carcinoma antigen NY-REN-63 20121230 -9606 8317 CDC7 - CDC7L1|HsCDC7|Hsk1|huCDC7 HGNC:1745|MIM:603311|Ensembl:ENSG00000097046|HPRD:10345|Vega:OTTHUMG00000047810 1 1p22 cell division cycle 7 homolog (S. cerevisiae) protein-coding CDC7 cell division cycle 7 homolog (S. cerevisiae) O CDC7 (cell division cycle 7, S. cerevisiae, homolog)-like 1|CDC7-related kinase|cell division cycle 7-like protein 1|cell division cycle 7-related protein kinase 20121230 -9606 8318 CDC45 UNQ374/PRO710 CDC45L|CDC45L2|PORC-PI-1 HGNC:1739|MIM:603465|Ensembl:ENSG00000093009|HPRD:09145|Vega:OTTHUMG00000150386 22 22q11.21 cell division cycle 45 homolog (S. cerevisiae) protein-coding CDC45 cell division cycle 45 homolog (S. cerevisiae) O CDC45 cell division cycle 45 homolog|CDC45-related protein|cell division control protein 45 homolog|cell division cycle 45-like 2|human CDC45 20121230 -9606 8320 EOMES - TBR2 HGNC:3372|MIM:604615|Ensembl:ENSG00000163508|HPRD:07054|Vega:OTTHUMG00000130570 3 3p24.1 eomesodermin protein-coding EOMES eomesodermin O T-box brain protein 2|T-box brain2|T-brain-2|TBR-2|eomesodermin homolog|t box, brain, 2 20121230 -9606 8321 FZD1 - - HGNC:4038|MIM:603408|Ensembl:ENSG00000157240|HPRD:04558|Vega:OTTHUMG00000023046 7 7q21 frizzled family receptor 1 protein-coding FZD1 frizzled family receptor 1 O Wnt receptor|frizzled 1, seven transmembrane spanning receptor|frizzled homolog 1|frizzled, Drosophila, homolog of, 1|frizzled-1|fz-1|fzE1|hFz1 20121230 -9606 8322 FZD4 - CD344|EVR1|FEVR|FZD4S|Fz-4|Fz4|FzE4|GPCR|hFz4 HGNC:4042|MIM:604579|Ensembl:ENSG00000174804|HPRD:05203|Vega:OTTHUMG00000167231 11 11q14.2 frizzled family receptor 4 protein-coding FZD4 frizzled family receptor 4 O WNT receptor frizzled-4|frizzled 4, seven transmembrane spanning receptor|frizzled homolog 4|frizzled-4 20121230 -9606 8323 FZD6 - FZ-6|FZ6|HFZ6|NDNC10 HGNC:4044|MIM:603409|Ensembl:ENSG00000164930|HPRD:04559|Vega:OTTHUMG00000164840 8 8q22.3-q23.1 frizzled family receptor 6 protein-coding FZD6 frizzled family receptor 6 O frizzled 6, seven transmembrane spanning receptor|frizzled homolog 6|frizzled-6|seven transmembrane helix receptor 20121230 -9606 8324 FZD7 - FzE3 HGNC:4045|MIM:603410|Ensembl:ENSG00000155760|HPRD:04560|Vega:OTTHUMG00000132841 2 2q33 frizzled family receptor 7 protein-coding FZD7 frizzled family receptor 7 O Frizzled, drosophila, homolog of, 7|frizzled 7, seven transmembrane spanning receptor|frizzled homolog 7|frizzled-7|fz-7|hFz7 20121230 -9606 8325 FZD8 - FZ-8|hFZ8 HGNC:4046|MIM:606146|Ensembl:ENSG00000177283|HPRD:05852|Vega:OTTHUMG00000017956 10 10p11.21 frizzled family receptor 8 protein-coding FZD8 frizzled family receptor 8 O frizzled 8, seven transmembrane spanning receptor|frizzled homolog 8|frizzled-8 20121230 -9606 8326 FZD9 - CD349|FZD3 HGNC:4047|MIM:601766|Ensembl:ENSG00000188763|HPRD:03460|Vega:OTTHUMG00000023051 7 7q11.23 frizzled family receptor 9 protein-coding FZD9 frizzled family receptor 9 O frizzled 9, seven transmembrane spanning receptor|frizzled homolog 9|frizzled-9|fz-9|fzE6|hFz9 20121230 -9606 8327 GABPAP - E4TF1|E4TF1B|GABPB1 HGNC:4072 7 7q11.2 GA binding protein transcription factor, alpha subunit pseudogene pseudo GABPAP GA binding protein transcription factor, alpha subunit pseudogene O - 20121230 -9606 8328 GFI1B RP11-415H23.1 - HGNC:4238|MIM:604383|Ensembl:ENSG00000165702|HPRD:05088|Vega:OTTHUMG00000020848 9 9q34.13 growth factor independent 1B transcription repressor protein-coding GFI1B growth factor independent 1B transcription repressor O growth factor independent 1B (potential regulator of CDKN1A, translocated in CML)|growth factor independent protein 1B|potential regulator of CDKN1A translocated in CML|zinc finger protein Gfi-1b 20121230 -9606 8329 HIST1H2AI - H2A/c|H2AFC HGNC:4725|MIM:602787|Ensembl:ENSG00000196747|HPRD:04153|Vega:OTTHUMG00000014484 6 6p22.1 histone cluster 1, H2ai protein-coding HIST1H2AI histone cluster 1, H2ai O H2A histone family, member C|H2A.1|histone 1, H2ai|histone H2A type 1 20121230 -9606 8330 HIST1H2AK - H2A/d|H2AFD HGNC:4726|MIM:602788|Ensembl:ENSG00000184348|HPRD:09100|Vega:OTTHUMG00000016382 6 6p22.1 histone cluster 1, H2ak protein-coding HIST1H2AK histone cluster 1, H2ak O H2A histone family, member D|H2A.1|histone 1, H2ak|histone H2A type 1|histone H2A type 1-J 20121230 -9606 8331 HIST1H2AJ - H2A/E|H2AFE|dJ160A22.4 HGNC:4727|MIM:602791|Ensembl:ENSG00000182611|HPRD:09102|Vega:OTTHUMG00000014486 6 6p22.1 histone cluster 1, H2aj protein-coding HIST1H2AJ histone cluster 1, H2aj O H2A histone family, member E|histone 1, H2aj 20121230 -9606 8332 HIST1H2AL - H2A.i|H2A/i|H2AFI|dJ193B12.9 HGNC:4730|MIM:602793|Ensembl:ENSG00000198374|HPRD:09103|Vega:OTTHUMG00000014492 6 6p22.1 histone cluster 1, H2al protein-coding HIST1H2AL histone cluster 1, H2al O H2A histone family, member I|H2A.1|histone 1, H2al|histone H2A type 1 20121230 -9606 8333 HIST1H2APS4 - H2A/k|H2AFK|H2AFKP|dJ34B20.2|pH2A/k HGNC:4732 6 6p21.3 histone cluster 1, H2a, pseudogene 4 pseudo HIST1H2APS4 histone cluster 1, H2a, pseudogene 4 O - 20121230 -9606 8334 HIST1H2AC - H2A/l|H2AFL|dJ221C16.4 HGNC:4733|MIM:602794|Ensembl:ENSG00000180573|HPRD:09104|Vega:OTTHUMG00000014428 6 6p22.1 histone cluster 1, H2ac protein-coding HIST1H2AC histone cluster 1, H2ac O H2A histone family, member L|histone 1, H2ac|histone H2A type 1-C|histone H2A/l|histone H2AC 20121230 -9606 8335 HIST1H2AB - H2A/m|H2AFM HGNC:4734|MIM:602795|Ensembl:ENSG00000137259|HPRD:09105|Vega:OTTHUMG00000014420 6 6p22.1 histone cluster 1, H2ab protein-coding HIST1H2AB histone cluster 1, H2ab O H2A histone family, member M|histone 1, H2ab|histone H2A type 1-B/E|histone H2A/m 20121230 -9606 8336 HIST1H2AM - H2A.1|H2A/n|H2AFN|dJ193B12.1 HGNC:4735|MIM:602796|Ensembl:ENSG00000233224|HPRD:09106|Vega:OTTHUMG00000014494 6 6p22.1 histone cluster 1, H2am protein-coding HIST1H2AM histone cluster 1, H2am O H2A histone family, member N|histone 1, H2am|histone H2A type 1 20121230 -9606 8337 HIST2H2AA3 - H2A|H2A.2|H2A/O|H2A/q|H2AFO|H2a-615|HIST2H2AA HGNC:4736|MIM:142720|Ensembl:ENSG00000183558|HPRD:08851|Vega:OTTHUMG00000012191 1 1q21.2 histone cluster 2, H2aa3 protein-coding HIST2H2AA3 histone cluster 2, H2aa3 O H2A histone family, member O|histone 2, H2aa3|histone H2A type 2-A 20121230 -9606 8338 HIST2H2AC - H2A|H2A-GL101|H2A/q|H2AFQ HGNC:4738|MIM:602797|Ensembl:ENSG00000184260|HPRD:09107|Vega:OTTHUMG00000035825 1 1q21.2 histone cluster 2, H2ac protein-coding HIST2H2AC histone cluster 2, H2ac O H2A histone family, member Q|histone 2, H2ac|histone H2A type 2-C|histone H2A-GL101|histone H2A/q|histone IIa 20121230 -9606 8339 HIST1H2BG - H2B.1A|H2B/a|H2BFA|dJ221C16.8 HGNC:4746|MIM:602798|Ensembl:ENSG00000187990|HPRD:11897|Vega:OTTHUMG00000014446 6 6p21.3 histone cluster 1, H2bg protein-coding HIST1H2BG histone cluster 1, H2bg O H2B histone family, member A|histone 1, H2bg|histone H2B type 1-C/E/F/G/I|histone H2B.1 A|histone H2B.a 20121230 -9606 8340 HIST1H2BL - H2B/c|H2BFC|dJ97D16.4 HGNC:4748|MIM:602800|Ensembl:ENSG00000185130|HPRD:11898|Vega:OTTHUMG00000014485 6 6p22.1 histone cluster 1, H2bl protein-coding HIST1H2BL histone cluster 1, H2bl O H2B histone family, member C|histone 1, H2bl|histone H2B type 1-L|histone H2B.c 20121230 -9606 8341 HIST1H2BN RP1-193B12.10-001 H2B/d|H2BFD HGNC:4749|MIM:602801|Ensembl:ENSG00000233822|HPRD:11899|Vega:OTTHUMG00000016397 6 6p22.1 histone cluster 1, H2bn protein-coding HIST1H2BN histone cluster 1, H2bn O H2B histone family, member D|histone 1, H2bn|histone H2B type 1-N|histone H2B.d 20121230 -9606 8342 HIST1H2BM - H2B/e|H2BFE|dJ160A22.3 HGNC:4750|MIM:602802|Ensembl:ENSG00000196374|HPRD:04154|Vega:OTTHUMG00000014489 6 6p22.1 histone cluster 1, H2bm protein-coding HIST1H2BM histone cluster 1, H2bm O H2B histone family, member E|histone 1, H2bm|histone H2B type 1-M|histone H2B.e 20121230 -9606 8343 HIST1H2BF - H2B/g|H2BFG HGNC:4752|MIM:602804|Ensembl:ENSG00000197846|HPRD:11900|Vega:OTTHUMG00000014445 6 6p22.1 histone cluster 1, H2bf protein-coding HIST1H2BF histone cluster 1, H2bf O H2B histone family, member G|histone 1, H2bf|histone H2B type 1-C/E/F/G/I|histone H2B.1 A|histone H2B.g 20121230 -9606 8344 HIST1H2BE - H2B.h|H2B/h|H2BFH|dJ221C16.8 HGNC:4753|MIM:602805|Ensembl:ENSG00000197697|HPRD:11901|Vega:OTTHUMG00000014427 6 6p22.1 histone cluster 1, H2be protein-coding HIST1H2BE histone cluster 1, H2be O H2B histone family, member H|histone 1, H2be|histone H2B type 1-C/E/F/G/I|histone H2B.1 A|histone H2B.h 20121230 -9606 8345 HIST1H2BH - H2B/j|H2BFJ HGNC:4755|MIM:602806|Ensembl:ENSG00000197459|HPRD:11902|Vega:OTTHUMG00000014447 6 6p21.3 histone cluster 1, H2bh protein-coding HIST1H2BH histone cluster 1, H2bh O H2B histone family, member J|histone 1, H2bh|histone H2B type 1-H|histone H2B.j 20121230 -9606 8346 HIST1H2BI - H2B/k|H2BFK HGNC:4756|MIM:602807|Ensembl:ENSG00000168242|HPRD:11903|Vega:OTTHUMG00000014448 6 6p22.1 histone cluster 1, H2bi protein-coding HIST1H2BI histone cluster 1, H2bi O H2B histone family, member K|histone 1, H2bi|histone H2B type 1-C/E/F/G/I|histone H2B.1 A|histone H2B.k 20121230 -9606 8347 HIST1H2BC - H2B.1|H2B/l|H2BFL|dJ221C16.3 HGNC:4757|MIM:602847|Ensembl:ENSG00000180596|HPRD:13656|Vega:OTTHUMG00000014425 6 6p22.1 histone cluster 1, H2bc protein-coding HIST1H2BC histone cluster 1, H2bc O H2B histone family, member L|histone 1, H2bc|histone H2B type 1-C/E/F/G/I|histone H2B.1 A|histone H2B.l 20121230 -9606 8348 HIST1H2BO - H2B.2|H2B/n|H2BFN|dJ193B12.2 HGNC:4758|MIM:602808|Ensembl:ENSG00000196331|HPRD:11904|Vega:OTTHUMG00000014493 6 6p22.1 histone cluster 1, H2bo protein-coding HIST1H2BO histone cluster 1, H2bo O H2B histone family, member N|histone 1, H2bo|histone H2B type 1-O|histone H2B.2|histone H2B.n 20121230 -9606 8349 HIST2H2BE - GL105|H2B|H2B.1|H2BFQ|H2BGL105|H2BQ HGNC:4760|MIM:601831|Ensembl:ENSG00000184678|HPRD:03494|Vega:OTTHUMG00000012095 1 1q21.2 histone cluster 2, H2be protein-coding HIST2H2BE histone cluster 2, H2be O H2B histone family, member Q|histone 2, H2be|histone H2B type 2-E|histone H2B-GL105|histone H2B.q 20121230 -9606 8350 HIST1H3A - H3/A|H3FA HGNC:4766|MIM:602810|Ensembl:ENSG00000198366|HPRD:04155|Vega:OTTHUMG00000014418 6 6p22.1 histone cluster 1, H3a protein-coding HIST1H3A histone cluster 1, H3a O H3 histone family, member A|histone 1, H3a|histone H3.1|histone H3/a 20121230 -9606 8351 HIST1H3D - H3/b|H3FB HGNC:4767|MIM:602811|Ensembl:ENSG00000197409|HPRD:11905 6 6p22.1 histone cluster 1, H3d protein-coding HIST1H3D histone cluster 1, H3d O H3 histone family, member B|histone 1, H3d|histone H3.1|histone H3/b 20121230 -9606 8352 HIST1H3C - H3.1|H3/c|H3FC HGNC:4768|MIM:602812|Ensembl:ENSG00000196532|HPRD:11906|Vega:OTTHUMG00000014416 6 6p22.1 histone cluster 1, H3c protein-coding HIST1H3C histone cluster 1, H3c O H3 histone family, member C|histone 1, H3c|histone H3.1|histone H3/c 20121230 -9606 8353 HIST1H3E RP1-34B20.8 H3.1|H3/d|H3FD HGNC:4769|MIM:602813|Ensembl:ENSG00000196966|HPRD:11907|Vega:OTTHUMG00000014434 6 6p22.1 histone cluster 1, H3e protein-coding HIST1H3E histone cluster 1, H3e O H3 histone family, member D|histone 1, H3e|histone H3.1|histone H3/d 20121230 -9606 8354 HIST1H3I RP1-193B12.1 H3.f|H3/f|H3FF HGNC:4771|MIM:602814|Ensembl:ENSG00000182572|HPRD:11908|Vega:OTTHUMG00000016184 6 6p22.1 histone cluster 1, H3i protein-coding HIST1H3I histone cluster 1, H3i O H3 histone family, member F|histone 1, H3i|histone H3.1|histone H3/f 20121230 -9606 8355 HIST1H3G - H3/h|H3FH HGNC:4772|MIM:602815|Ensembl:ENSG00000256018|HPRD:11909|Vega:OTTHUMG00000014436 6 6p22.1 histone cluster 1, H3g protein-coding HIST1H3G histone cluster 1, H3g O H3 histone family, member H|histone 1, H3g|histone H3.1|histone H3/h 20121230 -9606 8356 HIST1H3J - H3/j|H3FJ HGNC:4774|MIM:602817|Ensembl:ENSG00000197153|HPRD:11911|Vega:OTTHUMG00000016185 6 6p22.1 histone cluster 1, H3j protein-coding HIST1H3J histone cluster 1, H3j O H3 histone family, member J|histone 1, H3j|histone H3.1|histone H3/j 20121230 -9606 8357 HIST1H3H - H3/k|H3F1K|H3FK HGNC:4775|MIM:602818|Ensembl:ENSG00000203813|HPRD:11912|Vega:OTTHUMG00000014483 6 6p22.1 histone cluster 1, H3h protein-coding HIST1H3H histone cluster 1, H3h O H3 histone family, member K|histone 1, H3h|histone H3.1|histone H3/k 20121230 -9606 8358 HIST1H3B - H3/l|H3FL HGNC:4776|MIM:602819|Ensembl:ENSG00000124693|HPRD:11913|Vega:OTTHUMG00000014415 6 6p22.1 histone cluster 1, H3b protein-coding HIST1H3B histone cluster 1, H3b O H3 histone family, member L|histone 1, H3b|histone H3.1|histone H3/l 20121230 -9606 8359 HIST1H4A - H4FA HGNC:4781|MIM:602822|Ensembl:ENSG00000196176|HPRD:04157|Vega:OTTHUMG00000014419 6 6p22.1 histone cluster 1, H4a protein-coding HIST1H4A histone cluster 1, H4a O H4 histone family, member A|histone 1, H4a|histone H4 20121230 -9606 8360 HIST1H4D - H4/b|H4FB|dJ221C16.9 HGNC:4782|MIM:602823|Ensembl:ENSG00000188987|HPRD:11914|Vega:OTTHUMG00000014423 6 6p22.1 histone cluster 1, H4d protein-coding HIST1H4D histone cluster 1, H4d O H4 histone family, member B|histone 1, H4d|histone H4 20121230 -9606 8361 HIST1H4F - H4|H4/c|H4FC HGNC:4783|MIM:602824|Ensembl:ENSG00000198327|HPRD:11915|Vega:OTTHUMG00000014443 6 6p22.1 histone cluster 1, H4f protein-coding HIST1H4F histone cluster 1, H4f O H4 histone family, member C|histone 1, H4f|histone H4 20121230 -9606 8362 HIST1H4K RP1-160A22.2 H4/d|H4F2iii|H4FD|dJ160A22.1 HGNC:4784|MIM:602825|Ensembl:ENSG00000197914|HPRD:11916|Vega:OTTHUMG00000014488 6 6p22.1 histone cluster 1, H4k protein-coding HIST1H4K histone cluster 1, H4k O H4 histone family, member D|histone 1, H4k|histone H4 20121230 -9606 8363 HIST1H4J RP1-160A22.4 H4/e|H4F2iv|H4FE|dJ160A22.2 HGNC:4785|MIM:602826|Ensembl:ENSG00000197238|HPRD:11917|Vega:OTTHUMG00000014487 6 6p22.1 histone cluster 1, H4j protein-coding HIST1H4J histone cluster 1, H4j O H4 histone family, member E|histone 1, H4j|histone H4 20121230 -9606 8364 HIST1H4C - H4/g|H4FG|dJ221C16.1 HGNC:4787|MIM:602827|Ensembl:ENSG00000197061|HPRD:11918|Vega:OTTHUMG00000014429 6 6p22.1 histone cluster 1, H4c protein-coding HIST1H4C histone cluster 1, H4c O H4 histone family, member G|histone 1, H4c|histone H4 20121230 -9606 8365 HIST1H4H - H4/h|H4FH HGNC:4788|MIM:602828|Ensembl:ENSG00000158406|HPRD:11919|Vega:OTTHUMG00000014454 6 6p22.1 histone cluster 1, H4h protein-coding HIST1H4H histone cluster 1, H4h O H4 histone family, member H|histone 1, H4h|histone H4 20121230 -9606 8366 HIST1H4B - H4/I|H4FI HGNC:4789|MIM:602829|Ensembl:ENSG00000124529|HPRD:11920|Vega:OTTHUMG00000014417 6 6p22.1 histone cluster 1, H4b protein-coding HIST1H4B histone cluster 1, H4b O H4 histone family, member I|histone 1, H4b|histone H4 20121230 -9606 8367 HIST1H4E - H4/j|H4FJ HGNC:4790|MIM:602830|Ensembl:ENSG00000198518|HPRD:11921|Vega:OTTHUMG00000014441 6 6p22.1 histone cluster 1, H4e protein-coding HIST1H4E histone cluster 1, H4e O H4 histone family, member J|histone 1, H4e|histone H4 20121230 -9606 8368 HIST1H4L - H4.k|H4/k|H4FK HGNC:4791|MIM:602831|Ensembl:ENSG00000198558|HPRD:11922|Vega:OTTHUMG00000016211 6 6p22.1 histone cluster 1, H4l protein-coding HIST1H4L histone cluster 1, H4l O H4 histone family, member K|histone 1, H4l|histone H4 20121230 -9606 8369 HIST1H4G - H4/l|H4FL HGNC:4792|MIM:602832|Ensembl:ENSG00000124578|HPRD:11806|Vega:OTTHUMG00000014444 6 6p22.1 histone cluster 1, H4g protein-coding HIST1H4G histone cluster 1, H4g O H4 histone family, member L|histone 1, H4g|histone H4-like protein type G 20121230 -9606 8370 HIST2H4A - FO108|H4|H4/n|H4F2|H4FN|HIST2H4 HGNC:4794|MIM:142750|HPRD:11821 1 1q21.2 histone cluster 2, H4a protein-coding HIST2H4A histone cluster 2, H4a O H4 histone family, member N|H4 histone, family 2|histone 2, H4a|histone H4|histone IV, family 2 20121230 -9606 8372 HYAL3 - HYAL-3|LUCA-3|LUCA3 HGNC:5322|MIM:604038|Ensembl:ENSG00000186792|Vega:OTTHUMG00000156936 3 3p21.3 hyaluronoglucosaminidase 3 protein-coding HYAL3 hyaluronoglucosaminidase 3 O hyaluronidase-3|lung carcinoma protein 3 20121230 -9606 8373 IFIT1P1 - G13P1|IFI56P|IFIT1P|II56P HGNC:5408 13 13q13.1 interferon-induced protein with tetratricopeptide repeats 1 pseudogene 1 pseudo IFIT1P1 interferon-induced protein with tetratricopeptide repeats 1 pseudogene 1 O - 20121230 -9606 8377 LOH1CR1 - - HGNC:6661 1 - loss of heterozygosity, 1, chromosomal region 1 other LOH1CR1 loss of heterozygosity, 1, chromosomal region 1 O - 20080828 -9606 8378 LOH19CR1 - DBA HGNC:6660 19 19q13 loss of heterozygosity, 19, chromosomal region 1 other LOH19CR1 loss of heterozygosity, 19, chromosomal region 1 O - 20100721 -9606 8379 MAD1L1 - MAD1|PIG9|TP53I9|TXBP181 HGNC:6762|MIM:602686|Ensembl:ENSG00000002822|HPRD:04065|Vega:OTTHUMG00000151493 7 7p22 MAD1 mitotic arrest deficient-like 1 (yeast) protein-coding MAD1L1 MAD1 mitotic arrest deficient-like 1 (yeast) O MAD1-like protein 1|mitotic arrest deficient 1-like protein 1|mitotic checkpoint MAD1 protein homolog|mitotic spindle assembly checkpoint protein MAD1|mitotic-arrest deficient 1, yeast, homolog-like 1|tax-binding protein 181|tumor protein p53 inducible protein 9 20121230 -9606 8382 NME5 - NM23-H5|NM23H5|RSPH23 HGNC:7853|MIM:603575|Ensembl:ENSG00000112981|HPRD:04655|Vega:OTTHUMG00000129207 5 5q31 NME/NM23 family member 5 protein-coding NME5 NME/NM23 family member 5 O IPIA-beta|NDK-H 5|NDP kinase homolog 5|inhibitor of p53-induced apoptosis-beta|non-metastatic cells 5, protein expressed in (nucleoside-diphosphate kinase)|nucleoside diphosphate kinase homolog 5|radial spoke 23 homolog|testis-specific nm23 homolog 20121230 -9606 8383 OR1A1 - OR17-7 HGNC:8179|Ensembl:ENSG00000172146|HPRD:17681|Vega:OTTHUMG00000090637 17 17p13.3 olfactory receptor, family 1, subfamily A, member 1 protein-coding OR1A1 olfactory receptor, family 1, subfamily A, member 1 O olfactory receptor 17-7|olfactory receptor 1A1|olfactory receptor OR17-11 20121230 -9606 8384 OR1D3P - OR11-13|OR11-22|OR17-23|OR1D6P|OR1D7P HGNC:8184 17 17p13.3 olfactory receptor, family 1, subfamily D, member 3 pseudogene pseudo OR1D3P olfactory receptor, family 1, subfamily D, member 3 pseudogene O - 20121230 -9606 8386 OR1D5 - C17orf2|OR17-2|OR17-30|OR17-31 HGNC:8186|Ensembl:ENSG00000262628|HPRD:17684|Vega:OTTHUMG00000177676 17 17p13.3 olfactory receptor, family 1, subfamily D, member 5 protein-coding OR1D5 olfactory receptor, family 1, subfamily D, member 5 O olfactory receptor 17-31|olfactory receptor 1D5|olfactory receptor OR17-2 20121230 -9606 8387 OR1E1 - HGM071|OR13-66|OR17-2|OR17-32|OR1E5|OR1E6|OR1E8P|OR1E9P|OST547 HGNC:8189|Ensembl:ENSG00000180016|HPRD:17685|Vega:OTTHUMG00000090643 17 17p13.3 olfactory receptor, family 1, subfamily E, member 1 protein-coding OR1E1 olfactory receptor, family 1, subfamily E, member 1 O OR5-85|olfactory receptor 13-66|olfactory receptor 17-2/17-32|olfactory receptor 1E1|olfactory receptor 1E5|olfactory receptor 1E6|olfactory receptor 5-85|olfactory receptor OR17-18|olfactory receptor OR17-4|olfactory receptor, family 1, subfamily E, member 5|olfactory receptor, family 1, subfamily E, member 6|olfactory receptor, family 1, subfamily E, member 8 pseudogene|olfactory receptor, family 1, subfamily E, member 9 pseudogene|olfactory receptor-like protein HGMP07I 20121230 -9606 8388 OR1E2 - OR17-135|OR17-93|OR1E4|OR1E7|OST529 HGNC:8190|Ensembl:ENSG00000127780|HPRD:17686|Vega:OTTHUMG00000090651 17 17p13.3 olfactory receptor, family 1, subfamily E, member 2 protein-coding OR1E2 olfactory receptor, family 1, subfamily E, member 2 O OR17-136|olfactory receptor 17-93/17-135/17-136|olfactory receptor 1E2|olfactory receptor 1E4|olfactory receptor OR17-17|olfactory receptor OR17-3|olfactory receptor, family 1, subfamily E, member 4|olfactory receptor, family 1, subfamily E, member 7 20121230 -9606 8389 OR1E3 - OR17-210|OR1E3P HGNC:8191 17 17p13.3 olfactory receptor, family 1, subfamily E, member 3 (gene/pseudogene) pseudo OR1E3 olfactory receptor, family 1, subfamily E, member 3 (gene/pseudogene) O - 20121230 -9606 8390 OR1G1 - OR17-130|OR17-209|OR1G2 HGNC:8204|Ensembl:ENSG00000183024|HPRD:17687|Vega:OTTHUMG00000090618 17 17p13.3 olfactory receptor, family 1, subfamily G, member 1 protein-coding OR1G1 olfactory receptor, family 1, subfamily G, member 1 O olfactory receptor 17-209|olfactory receptor 1G1|olfactory receptor 1G2|olfactory receptor OR17-8|olfactory receptor, family 1, subfamily G, member 2 20121230 -9606 8391 OR1P1 - OR17-208|OR1P1P HGNC:8222 17 17p13.3 olfactory receptor, family 1, subfamily P, member 1 (gene/pseudogene) pseudo OR1P1 olfactory receptor, family 1, subfamily P, member 1 (gene/pseudogene) O - 20121230 -9606 8392 OR3A3 - OR17-137|OR17-16|OR17-201|OR3A6|OR3A7|OR3A8P HGNC:8284|Ensembl:ENSG00000159961|HPRD:11413|Vega:OTTHUMG00000090649 17 17p13.3 olfactory receptor, family 3, subfamily A, member 3 protein-coding OR3A3 olfactory receptor, family 3, subfamily A, member 3 O olfactory receptor 17-201|olfactory receptor 3A3|olfactory receptor 3A6|olfactory receptor 3A7|olfactory receptor 3A8|olfactory receptor OR17-22|olfactory receptor, family 3, subfamily A, member 6|olfactory receptor, family 3, subfamily A, member 7|olfactory receptor, family 3, subfamily A, member 8 pseudogene 20121230 -9606 8394 PIP5K1A RP11-68I18.9 - HGNC:8994|MIM:603275|Ensembl:ENSG00000143398|Vega:OTTHUMG00000012351 1 1q21.3 phosphatidylinositol-4-phosphate 5-kinase, type I, alpha protein-coding PIP5K1A phosphatidylinositol-4-phosphate 5-kinase, type I, alpha O 68 kDa type I phosphatidylinositol 4-phosphate 5-kinase alpha|68 kDa type I phosphatidylinositol-4-phosphate 5-kinase alpha|PIP5K1-alpha|PIP5KIalpha|phosphatidylinositol 4-phosphate 5-kinase type I alpha|phosphatidylinositol 4-phosphate 5-kinase type-1 alpha|phosphatidylinositol-4-phosphate 5-kinase type-1 alpha|ptdIns(4)P-5-kinase 1 alpha 20121230 -9606 8395 PIP5K1B - MSS4|STM7 HGNC:8995|MIM:602745|Ensembl:ENSG00000107242|HPRD:04121|Vega:OTTHUMG00000019976 9 9q13 phosphatidylinositol-4-phosphate 5-kinase, type I, beta protein-coding PIP5K1B phosphatidylinositol-4-phosphate 5-kinase, type I, beta O PIP5K1-beta|PIP5KIbeta|phosphatidylinositol 4-phosphate 5-kinase type I beta|phosphatidylinositol 4-phosphate 5-kinase type-1 beta|phosphatidylinositol-4-phosphate 5-kinase type-1 beta|protein STM-7|ptdIns(4)P-5-kinase 1 beta|type I phosphatidylinositol 4-phosphate 5-kinase beta|type I phosphatidylinositol-4-phosphate 5-kinase beta 20121230 -9606 8396 PIP4K2B - PI5P4KB|PIP5K2B|PIP5KIIB|PIP5KIIbeta HGNC:8998|MIM:603261|Ensembl:ENSG00000141720|HPRD:04463|Vega:OTTHUMG00000133119 17 17q12 phosphatidylinositol-5-phosphate 4-kinase, type II, beta protein-coding PIP4K2B phosphatidylinositol-5-phosphate 4-kinase, type II, beta O 1-phosphatidylinositol 5-phosphate 4-kinase 2-beta|1-phosphatidylinositol-4-phosphate kinase|1-phosphatidylinositol-5-phosphate 4-kinase 2-beta|PI(5)P 4-kinase type II beta|PIP4KII-beta|PTDINS(4)P-5-kinase|diphosphoinositide kinase 2-beta|phosphatidylinositol 5-phosphate 4-kinase type II beta|phosphatidylinositol 5-phosphate 4-kinase type-2 beta|phosphatidylinositol-4-phosphate 5-kinase, type II, beta|phosphatidylinositol-5-phosphate 4-kinase type-2 beta|ptdIns(5)P-4-kinase isoform 2-beta 20121230 -9606 8398 PLA2G6 CTA-228A9.2 CaI-PLA2|GVI|INAD1|IPLA2-VIA|NBIA2|NBIA2A|NBIA2B|PARK14|PLA2|PNPLA9|iPLA2|iPLA2beta HGNC:9039|MIM:603604|Ensembl:ENSG00000184381|HPRD:04675|Vega:OTTHUMG00000151246 22 22q13.1 phospholipase A2, group VI (cytosolic, calcium-independent) protein-coding PLA2G6 phospholipase A2, group VI (cytosolic, calcium-independent) O 85 kDa calcium-independent phospholipase A2|85/88 kDa calcium-independent phospholipase A2|GVI PLA2|calcium-independent phospholipase A2|cytosolic, calcium-independent phospholipase A2|group VI phospholipase A2|iPLA2-beta|intracellular membrane-associated calcium-independent phospholipase A2 beta|neurodegeneration with brain iron accumulation 2|patatin-like phospholipase domain containing 9|patatin-like phospholipase domain-containing protein 9 20121230 -9606 8399 PLA2G10 - GXPLA2|GXSPLA2|SPLA2 HGNC:9029|MIM:603603|Ensembl:ENSG00000069764|HPRD:04674|Vega:OTTHUMG00000048069 16 16p13.1-p12 phospholipase A2, group X protein-coding PLA2G10 phospholipase A2, group X O GX sPLA2|group 10 secretory phospholipase A2|group X secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase 10|sPLA2-X 20121230 -9606 8400 SCZD6 - - HGNC:10654|MIM:603013 8 8p21 schizophrenia disorder 6 unknown SCZD6 schizophrenia disorder 6 O - 20121018 -9606 8401 SCZD7 - - HGNC:10655|MIM:603176 13 13q32 schizophrenia disorder 7 unknown SCZD7 schizophrenia disorder 7 O - 20120622 -9606 8402 SLC25A11 - OGC|SLC20A4 HGNC:10981|MIM:604165|Ensembl:ENSG00000108528|HPRD:05003|Vega:OTTHUMG00000099395 17 17p13.3 solute carrier family 25 (mitochondrial carrier; oxoglutarate carrier), member 11 protein-coding SLC25A11 solute carrier family 25 (mitochondrial carrier; oxoglutarate carrier), member 11 O OGCP|mitochondrial 2-oxoglutarate/malate carrier protein|solute carrier family 20 (oxoglutarate carrier), member 4|solute carrier family 25 member 11 20121230 -9606 8403 SOX14 - SOX28 HGNC:11193|MIM:604747|Ensembl:ENSG00000168875|HPRD:16067|Vega:OTTHUMG00000159757 3 3q22-q23 SRY (sex determining region Y)-box 14 protein-coding SOX14 SRY (sex determining region Y)-box 14 O HMG box transcription factor SOX-14|SRY-box 14|transcription factor SOX-14 20121230 -9606 8404 SPARCL1 - PIG33|SC1 HGNC:11220|MIM:606041|Ensembl:ENSG00000152583|HPRD:06919|Vega:OTTHUMG00000130605 4 4q22.1 SPARC-like 1 (hevin) protein-coding SPARCL1 SPARC-like 1 (hevin) O MAST 9|SPARC-like 1 (mast9, hevin)|SPARC-like protein 1|hevin|high endothelial venule protein|mast9|proliferation-inducing protein 33 20121230 -9606 8405 SPOP - TEF2 HGNC:11254|MIM:602650|Ensembl:ENSG00000121067|HPRD:16004|Vega:OTTHUMG00000161496 17 17q21.33 speckle-type POZ protein protein-coding SPOP speckle-type POZ protein O HIB homolog 1|roadkill homolog 1 20121230 -9606 8406 SRPX - DRS|ETX1|SRPX1 HGNC:11309|MIM:300187|Ensembl:ENSG00000101955|HPRD:02175|Vega:OTTHUMG00000021362 X Xp21.1 sushi-repeat containing protein, X-linked protein-coding SRPX sushi-repeat containing protein, X-linked O sushi repeat-containing protein SRPX|sushi-repeat-containing protein, X chromosome|sushi-repeat-containing protein, X-linked 20121230 -9606 8407 TAGLN2 RP11-48O20.1 HA1756 HGNC:11554|MIM:604634|Ensembl:ENSG00000158710|HPRD:06864|Vega:OTTHUMG00000022793 1 1q21-q25 transgelin 2 protein-coding TAGLN2 transgelin 2 O SM22-alpha homolog|epididymis tissue protein Li 7e|transgelin-2 20121230 -9606 8408 ULK1 - ATG1|ATG1A|UNC51|Unc51.1|hATG1 HGNC:12558|MIM:603168|Ensembl:ENSG00000177169|HPRD:11933|Vega:OTTHUMG00000168052 12 12q24.3 unc-51-like kinase 1 (C. elegans) protein-coding ULK1 unc-51-like kinase 1 (C. elegans) O ATG1 autophagy related 1 homolog|autophagy-related protein 1 homolog|serine/threonine-protein kinase ULK1 20121230 -9606 8409 UXT RP1-212G6.2 ART-27|STAP1 HGNC:12641|MIM:300234|Ensembl:ENSG00000126756|HPRD:02209|Vega:OTTHUMG00000021453 X Xp11.23-p11.22 ubiquitously-expressed, prefoldin-like chaperone protein-coding UXT ubiquitously-expressed, prefoldin-like chaperone O SKP2-associated alpha PFD 1|androgen receptor trapped clone 27 protein|protein UXT|ubiquitously expressed transcript protein 20121230 -9606 8410 RPS9P1 - RPS9P|RPS9_2_1730 HGNC:10443 21 21q22.2 ribosomal protein S9 pseudogene 1 pseudo RPS9P1 ribosomal protein S9 pseudogene 1 O - 20121230 -9606 8411 EEA1 - MST105|MSTP105|ZFYVE2 HGNC:3185|MIM:605070|Ensembl:ENSG00000102189|HPRD:05460|Vega:OTTHUMG00000170110 12 12q22 early endosome antigen 1 protein-coding EEA1 early endosome antigen 1 O early endosome antigen 1, 162kD|early endosome-associated protein|endosome-associated protein p162|zinc finger FYVE domain-containing protein 2 20121230 -9606 8412 BCAR3 RP5-1033H22.1 NSP2|SH2D3B HGNC:973|MIM:604704|Ensembl:ENSG00000137936|HPRD:05268|Vega:OTTHUMG00000010301 1 1p22.1 breast cancer anti-estrogen resistance 3 protein-coding BCAR3 breast cancer anti-estrogen resistance 3 O SH2 domain-containing protein 3B|breast cancer anti-estrogen resistance protein 3|breast cancer antiestrogen resistance 3 protein|dJ1033H22.2 (breast cancer anti-estrogen resistance 3)|novel SH2-containing protein 2 20121230 -9606 8416 ANXA9 - ANX31 HGNC:547|MIM:603319|Ensembl:ENSG00000143412|Vega:OTTHUMG00000035063 1 1q21 annexin A9 protein-coding ANXA9 annexin A9 O annexin 31|annexin XXXI|annexin-31|annexin-9|pemphaxin 20121230 -9606 8417 STX7 RP11-560I21.1 - HGNC:11442|MIM:603217|Ensembl:ENSG00000079950|HPRD:04449|Vega:OTTHUMG00000015577 6 6q23.1 syntaxin 7 protein-coding STX7 syntaxin 7 O syntaxin-7 20121230 -9606 8418 CMAHP RP3-425P12.3 CMAH|CSAH HGNC:2098|MIM:603209 6 6p21.32 cytidine monophospho-N-acetylneuraminic acid hydroxylase, pseudogene pseudo CMAHP cytidine monophospho-N-acetylneuraminic acid hydroxylase, pseudogene O - 20121230 -9606 8419 BFSP2 - CP47|CP49|LIFL-L|PHAKOSIN HGNC:1041|MIM:603212|Ensembl:ENSG00000170819|HPRD:04444|Vega:OTTHUMG00000159719 3 3q22.1 beaded filament structural protein 2, phakinin protein-coding BFSP2 beaded filament structural protein 2, phakinin O 49 kDa cytoskeletal protein|beaded filament protein CP49|bfps2, Cytoskeletal protein, 49-kD|lens fiber cell beaded filament protein CP 47|lens fiber cell beaded filament protein CP 49|lens intermediate filament-like light|phakinin 20121230 -9606 8420 SNHG3 - NCRNA00014|RNU17C|RNU17D|U17HG|U17HG-A|U17HG-AB HGNC:10118|MIM:603238|Ensembl:ENSG00000242125|Vega:OTTHUMG00000003657 1 1p36.1 small nucleolar RNA host gene 3 (non-protein coding) miscRNA SNHG3 small nucleolar RNA host gene 3 (non-protein coding) O - 20121230 -9606 8422 MEHMO - - HGNC:6999|MIM:300148 X Xp22.13-p21.1 mental retardation, epileptic seizures, hypogonadism and -genitalism, microcephaly and obesity syndrome unknown MEHMO mental retardation, epileptic seizures, hypogonadism and -genitalism, microcephaly and obesity syndrome O - 20120622 -9606 8424 BBOX1 - BBH|BBOX|G-BBH|gamma-BBH HGNC:964|MIM:603312|Ensembl:ENSG00000129151|HPRD:04498|Vega:OTTHUMG00000166121 11 11p14.2 butyrobetaine (gamma), 2-oxoglutarate dioxygenase (gamma-butyrobetaine hydroxylase) 1 protein-coding BBOX1 butyrobetaine (gamma), 2-oxoglutarate dioxygenase (gamma-butyrobetaine hydroxylase) 1 O gamma-butyrobetaine dioxygenase|gamma-butyrobetaine hydroxylase|gamma-butyrobetaine,2-oxoglutarate dioxygenase 1 20121230 -9606 8425 LTBP4 - LTBP-4|LTBP4L|LTBP4S HGNC:6717|MIM:604710|Ensembl:ENSG00000090006|HPRD:05274 19 19q13.1-q13.2 latent transforming growth factor beta binding protein 4 protein-coding LTBP4 latent transforming growth factor beta binding protein 4 O latent transforming growth factor-beta binding protein 4L|latent-transforming growth factor beta-binding protein 4 20121230 -9606 8427 ZNF282 - HUB1 HGNC:13076|MIM:603397|Ensembl:ENSG00000170265|HPRD:04549|Vega:OTTHUMG00000158974 7 7q36.1 zinc finger protein 282 protein-coding ZNF282 zinc finger protein 282 O HTLV-I U5 repressive element-binding protein 1|HTLV-I U5RE-binding protein 1|HUB-1 20121230 -9606 8428 STK24 RP11-111L24.5 MST3|MST3B|STE20|STK3 HGNC:11403|MIM:604984|Ensembl:ENSG00000102572|HPRD:10385|Vega:OTTHUMG00000017250 13 13q31.2-q32.3 serine/threonine kinase 24 protein-coding STK24 serine/threonine kinase 24 O STE20-like kinase 3|STE20-like kinase MST3|mammalian STE20-like protein kinase 3|serine/threonine kinase 24 (STE20 homolog, yeast)|serine/threonine-protein kinase 24|sterile 20-like kinase 3 20121230 -9606 8431 NR0B2 - SHP|SHP1 HGNC:7961|MIM:604630|Ensembl:ENSG00000131910|HPRD:05219|Vega:OTTHUMG00000004231 1 1p36.1 nuclear receptor subfamily 0, group B, member 2 protein-coding NR0B2 nuclear receptor subfamily 0, group B, member 2 O nuclear receptor SHP|nuclear receptor subfamily 0 group B member 2|orphan nuclear receptor SHP|small heterodimer partner 20121230 -9606 8433 UTF1 - - HGNC:12634|MIM:604130|Ensembl:ENSG00000171794|HPRD:11964|Vega:OTTHUMG00000019302 10 10q26 undifferentiated embryonic cell transcription factor 1 protein-coding UTF1 undifferentiated embryonic cell transcription factor 1 O - 20121230 -9606 8434 RECK - ST15 HGNC:11345|MIM:605227|Ensembl:ENSG00000122707|HPRD:05567|Vega:OTTHUMG00000019898 9 9p13.3 reversion-inducing-cysteine-rich protein with kazal motifs protein-coding RECK reversion-inducing-cysteine-rich protein with kazal motifs O membrane-anchored glycoprotein (metastasis and invasion)|reversion-inducing cysteine-rich protein with Kazal motifs|suppression of tumorigenicity 15 (reversion-inducing-cysteine-rich protein with kazal motifs)|suppression of tumorigenicity 5 (reversion-inducing-cysteine-rich protein with kazal motifs)|suppressor of tumorigenicity 15 protein 20121230 -9606 8435 SOAT2 - ACACT2|ACAT2|ARGP2 HGNC:11178|MIM:601311|Ensembl:ENSG00000167780|HPRD:03202|Vega:OTTHUMG00000169774 12 12q13.13 sterol O-acyltransferase 2 protein-coding SOAT2 sterol O-acyltransferase 2 O ACAT-2|acyl Co-A: cholesterol acyltransferase 2|acyl coenzyme A:cholesterol acyltransferase 2|acyl-CoA:cholesterol acyltransferase 2|acyl-coenzyme A:cholesterol acyltransferase 2|cholesterol acyltransferase 2 20121230 -9606 8436 SDPR - CAVIN2|PS-p68|SDR|cavin-2 HGNC:10690|MIM:606728|Ensembl:ENSG00000168497|HPRD:09470|Vega:OTTHUMG00000154309 2 2q32-q33 serum deprivation response protein-coding SDPR serum deprivation response O phosphatidylserine binding protein|phosphatidylserine-binding protein|serum deprivation-response protein 20121230 -9606 8437 RASAL1 - RASAL HGNC:9873|MIM:604118|Ensembl:ENSG00000111344|HPRD:04986|Vega:OTTHUMG00000169705 12 12q23-q24 RAS protein activator like 1 (GAP1 like) protein-coding RASAL1 RAS protein activator like 1 (GAP1 like) O GAP1 like protein|rasGAP-activating-like protein 1 20121230 -9606 8438 RAD54L - HR54|RAD54A|hHR54|hRAD54 HGNC:9826|MIM:603615|Ensembl:ENSG00000085999|HPRD:04683|Vega:OTTHUMG00000007772 1 1p32 RAD54-like (S. cerevisiae) protein-coding RAD54L RAD54-like (S. cerevisiae) O DNA repair and recombination protein RAD54-like|RAD54 homolog 20121230 -9606 8439 NSMAF - FAN HGNC:8017|MIM:603043|Ensembl:ENSG00000035681|HPRD:09117|Vega:OTTHUMG00000164352 8 8q12-q13 neutral sphingomyelinase (N-SMase) activation associated factor protein-coding NSMAF neutral sphingomyelinase (N-SMase) activation associated factor O factor associated with N-SMase activation|factor associated with neutral sphingomyelinase activation|protein FAN 20121230 -9606 8440 NCK2 - GRB4|NCKbeta HGNC:7665|MIM:604930|Ensembl:ENSG00000071051|HPRD:05378|Vega:OTTHUMG00000153116 2 2q12 NCK adaptor protein 2 protein-coding NCK2 NCK adaptor protein 2 O SH2/SH3 adaptor protein NCK-beta|cytoplasmic protein NCK2|growth factor receptor-bound protein 4|noncatalytic region of tyrosine kinase, beta 20121230 -9606 8443 GNPAT RP5-876B10.1 DAP-AT|DAPAT|DHAPAT HGNC:4416|MIM:602744|Ensembl:ENSG00000116906|HPRD:04120|Vega:OTTHUMG00000038024 1 1q42 glyceronephosphate O-acyltransferase protein-coding GNPAT glyceronephosphate O-acyltransferase O DHAP-AT|acyl-CoA:dihydroxyacetonephosphateacyltransferase|dihydroxyacetone phosphate acyltransferase|glycerone-phosphate O-acyltransferase 20121230 -9606 8444 DYRK3 RP11-343H5.2 DYRK5|RED|REDK|hYAK3-2 HGNC:3094|MIM:603497|Ensembl:ENSG00000143479|HPRD:04607|Vega:OTTHUMG00000036339 1 1q32.1 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 3 protein-coding DYRK3 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 3 O dual specificity tyrosine-phosphorylation-regulated kinase 3|dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 5|protein kinase Dyrk3|regulatory erythroid kinase 20121230 -9606 8445 DYRK2 - - HGNC:3093|MIM:603496|Ensembl:ENSG00000127334|HPRD:04606|Vega:OTTHUMG00000169089 12 12q15 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 2 protein-coding DYRK2 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 2 O dual specificity tyrosine-phosphorylation-regulated kinase 2 20121230 -9606 8446 DUSP11 - PIR1 HGNC:3066|MIM:603092|Ensembl:ENSG00000144048|HPRD:04368|Vega:OTTHUMG00000129816 2 2p13.1 dual specificity phosphatase 11 (RNA/RNP complex 1-interacting) protein-coding DUSP11 dual specificity phosphatase 11 (RNA/RNP complex 1-interacting) O RNA/RNP complex-1-interacting phosphatase|RNA/RNP complex-interacting phosphatase|dual specificity protein phosphatase 11|phosphatase that interacts with RNA/RNP complex 1|serine/threonine specific protein phosphatase 20121230 -9606 8447 DOC2B - DOC2BL HGNC:2986|MIM:604568|HPRD:05196 17 17p13.3 double C2-like domains, beta protein-coding DOC2B double C2-like domains, beta O doc2-beta|double C2-like domain-containing protein beta 20121230 -9606 8448 DOC2A - Doc2 HGNC:2985|MIM:604567|Ensembl:ENSG00000149927|HPRD:05195|Vega:OTTHUMG00000132109 16 16p11.2 double C2-like domains, alpha protein-coding DOC2A double C2-like domains, alpha O doc2-alpha|double C2-like domain-containing protein alpha 20121230 -9606 8449 DHX16 DADB-129D20.3 DBP2|DDX16|PRO2014|PRP8|PRPF2|Prp2 HGNC:2739|MIM:603405|Ensembl:ENSG00000204560|HPRD:04555|Vega:OTTHUMG00000031060 6 6p21.3 DEAH (Asp-Glu-Ala-His) box polypeptide 16 protein-coding DHX16 DEAH (Asp-Glu-Ala-His) box polypeptide 16 O ATP-dependent RNA helicase #3|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 16|DEAD/H box 16|DEAH-box protein 16|RNA helicase|putative pre-mRNA-splicing factor ATP-dependent RNA helicase DHX16 20121230 -9606 8450 CUL4B - MRXHF2|MRXS15|MRXSC|SFM2 HGNC:2555|MIM:300304|Ensembl:ENSG00000158290|HPRD:02251|Vega:OTTHUMG00000022302 X Xq23 cullin 4B protein-coding CUL4B cullin 4B O CUL-4B|cullin-4B 20121230 -9606 8451 CUL4A RP11-391H12.1 - HGNC:2554|MIM:603137|Ensembl:ENSG00000139842|HPRD:07218|Vega:OTTHUMG00000017384 13 13q34 cullin 4A protein-coding CUL4A cullin 4A O CUL-4A|cullin-4A 20121230 -9606 8452 CUL3 - CUL-3|PHA2E HGNC:2553|MIM:603136|Ensembl:ENSG00000036257|HPRD:09123|Vega:OTTHUMG00000133167 2 2q36.2 cullin 3 protein-coding CUL3 cullin 3 O cullin-3 20121230 -9606 8453 CUL2 RP11-297A16.3 - HGNC:2552|MIM:603135|Ensembl:ENSG00000108094|HPRD:06786|Vega:OTTHUMG00000017950 10 10p11.21 cullin 2 protein-coding CUL2 cullin 2 O CUL-2|cullin-2 20121230 -9606 8454 CUL1 - - HGNC:2551|MIM:603134|Ensembl:ENSG00000055130|HPRD:04389|Vega:OTTHUMG00000152776 7 7q36.1 cullin 1 protein-coding CUL1 cullin 1 O CUL-1|cullin-1 20121230 -9606 8455 ATRN - DPPT-L|MGCA HGNC:885|MIM:603130|Ensembl:ENSG00000088812|HPRD:04388|Vega:OTTHUMG00000031746 20 20p13 attractin protein-coding ATRN attractin O attractin-2|mahogany homolog|mahogany protein 20121230 -9606 8456 FOXN1 - FKHL20|RONU|WHN HGNC:12765|MIM:600838|Ensembl:ENSG00000109101|HPRD:02907|Vega:OTTHUMG00000132603 17 17q11-q12 forkhead box N1 protein-coding FOXN1 forkhead box N1 O Rowett nude|forkhead box protein N1|winged helix nude|winged-helix nude|winged-helix transcription factor nude 20121230 -9606 8458 TTF2 - HuF2 HGNC:12398|MIM:604718|Ensembl:ENSG00000116830|HPRD:05280|Vega:OTTHUMG00000012030 1 1p22 transcription termination factor, RNA polymerase II protein-coding TTF2 transcription termination factor, RNA polymerase II O F2|RNA polymerase II termination factor|human factor 2|lodestar homolog|lodestar protein|transcription release factor 2|transcription termination factor 2 20121230 -9606 8459 TPST2 CTA-445C9.10-003 TANGO13B HGNC:12021|MIM:603126|Ensembl:ENSG00000128294|HPRD:07217|Vega:OTTHUMG00000150987 22 22q12.1 tyrosylprotein sulfotransferase 2 protein-coding TPST2 tyrosylprotein sulfotransferase 2 O TPST-2|protein-tyrosine sulfotransferase 2|transport and golgi organization 13 homolog B|tyrosylprotein phosphotransferase 2|tyrosylprotein sulfotransferase-2 20121230 -9606 8460 TPST1 - TANGO13A HGNC:12020|MIM:603125|Ensembl:ENSG00000169902|HPRD:07216|Vega:OTTHUMG00000023871 7 7q11.21 tyrosylprotein sulfotransferase 1 protein-coding TPST1 tyrosylprotein sulfotransferase 1 O TPST-1|protein-tyrosine sulfotransferase 1|transport and golgi organization 13 homolog A|tyrosylprotein sulfotransferase-1 20121230 -9606 8462 KLF11 - FKLF|FKLF1|MODY7|TIEG2|Tieg3 HGNC:11811|MIM:603301|Ensembl:ENSG00000172059|HPRD:04488|Vega:OTTHUMG00000119004 2 2p25 Kruppel-like factor 11 protein-coding KLF11 Kruppel-like factor 11 O Krueppel-like factor 11|TGFB-inducible early growth response protein 2|TIEG-2|transforming growth factor-beta-inducible early growth response protein 2 20121230 -9606 8463 TEAD2 - ETF|TEAD-2|TEF-4|TEF4 HGNC:11715|MIM:601729|Ensembl:ENSG00000074219 19 19q13.3 TEA domain family member 2 protein-coding TEAD2 TEA domain family member 2 O transcriptional enhancer factor TEF-4 20121230 -9606 8464 SUPT3H RP11-169I2.1 SPT3|SPT3L HGNC:11466|MIM:602947|Ensembl:ENSG00000196284|HPRD:04254|Vega:OTTHUMG00000014773 6 6p21.1-p21.3 suppressor of Ty 3 homolog (S. cerevisiae) protein-coding SUPT3H suppressor of Ty 3 homolog (S. cerevisiae) O SPT3-like protein|transcription initiation protein SPT3 homolog 20121230 -9606 8466 ST11 - PETS1 HGNC:11341|MIM:602011 3 3p25 suppression of tumorigenicity 11 (pancreas) unknown ST11 suppression of tumorigenicity 11 (pancreas) O - 20080828 -9606 8467 SMARCA5 - ISWI|SNF2H|WCRF135|hISWI|hSNF2H HGNC:11101|MIM:603375|Ensembl:ENSG00000153147|HPRD:04538|Vega:OTTHUMG00000161474 4 4q31.1-q31.2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 protein-coding SMARCA5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 O SWI/SNF-related matrix-associated actin-dependent regulator of chromatin A5|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 5|sucrose nonfermenting protein 2 homolog|sucrose nonfermenting-like 5 20121230 -9606 8468 FKBP6 - FKBP36|PPIase HGNC:3722|MIM:604839|Ensembl:ENSG00000077800|HPRD:05326|Vega:OTTHUMG00000150520 7 7q11.23 FK506 binding protein 6, 36kDa protein-coding FKBP6 FK506 binding protein 6, 36kDa O 36 kDa FK506-binding protein|36 kDa FKBP|FK506-binding protein 6|FKBP-36|PPIase FKBP6|immunophilin FKBP36|peptidyl-prolyl cis-trans isomerase FKBP6|rotamase 20121230 -9606 8470 SORBS2 - ARGBP2|PRO0618 HGNC:24098|Ensembl:ENSG00000154556|HPRD:12473|Vega:OTTHUMG00000157215 4 4q35.1 sorbin and SH3 domain containing 2 protein-coding SORBS2 sorbin and SH3 domain containing 2 O Arg binding protein 2|Arg/Abl-interacting protein 2|sorbin and SH3 domain-containing protein 2 20121230 -9606 8471 IRS4 - IRS-4|PY160 HGNC:6128|MIM:603510|Ensembl:ENSG00000133124|HPRD:04620|Vega:OTTHUMG00000022181 X Xq22.3 insulin receptor substrate 4 protein-coding IRS4 insulin receptor substrate 4 O 160 kDa phosphotyrosine protein|phosphoprotein of 160 kDa|pp160 20121230 -9606 8473 OGT - HRNT1|O-GLCNAC HGNC:8127|MIM:300255|Ensembl:ENSG00000147162|HPRD:02222|Vega:OTTHUMG00000033316 X Xq13 O-linked N-acetylglucosamine (GlcNAc) transferase protein-coding OGT O-linked N-acetylglucosamine (GlcNAc) transferase O O-GlcNAc transferase p110 subunit|O-GlcNAc transferase subunit p110|O-linked N-acetylglucosamine (GlcNAc) transferase (UDP-N-acetylglucosamine:polypeptide-N-acetylglucosaminyl transferase)|O-linked N-acetylglucosamine transferase 110 kDa subunit|UDP-N-acetylglucosamine--peptide N-acetylglucosaminyltransferase 110 kDa subunit|UDP-N-acetylglucosamine:polypeptide-N-acetylglucosaminyl transferase|uridinediphospho-N-acetylglucosamine:polypeptide beta-N-acetylglucosaminyl transferase 20121230 -9606 8476 CDC42BPA RP5-1087E8.4 MRCK|MRCKA|PK428 HGNC:1737|MIM:603412|Ensembl:ENSG00000143776|HPRD:04562|Vega:OTTHUMG00000037618 1 1q42.11 CDC42 binding protein kinase alpha (DMPK-like) protein-coding CDC42BPA CDC42 binding protein kinase alpha (DMPK-like) O CDC42 binidng protein kinase beta|CDC42-binding protein kinase alpha (DMPK-like)|DMPK-like alpha|MRCK alpha|myotonic dystrophy kinase-related CDC42-binding kinase alpha|myotonic dystrophy kinase-related CDC42-binding protein kinase alpha|myotonic dystrophy protein kinase-like alpha|ser-thr protein kinase PK428|ser-thr protein kinase related to the myotonic dystrophy protein kinase|serine/threonine-protein kinase MRCK alpha 20121230 -9606 8477 GPR65 - TDAG8|hTDAG8 HGNC:4517|MIM:604620|Ensembl:ENSG00000140030|HPRD:07057|Vega:OTTHUMG00000028648 14 14q31-q32.1 G protein-coupled receptor 65 protein-coding GPR65 G protein-coupled receptor 65 O G-protein coupled receptor 65|T-cell death-associated gene 8 protein|psychosine receptor 20121230 -9606 8479 HIRIP3 - - HGNC:4917|MIM:603365|Ensembl:ENSG00000149929|HPRD:04531|Vega:OTTHUMG00000132118 16 16p11.2 HIRA interacting protein 3 protein-coding HIRIP3 HIRA interacting protein 3 O HIRA-interacting protein 3 20121230 -9606 8480 RAE1 RP4-800J21.2 MIG14|MRNP41|Mnrp41|dJ481F12.3|dJ800J21.1 HGNC:9828|MIM:603343|Ensembl:ENSG00000101146|HPRD:11939|Vega:OTTHUMG00000032819 20 20q13.31 RAE1 RNA export 1 homolog (S. pombe) protein-coding RAE1 RAE1 RNA export 1 homolog (S. pombe) O homolog of yeast Rae1 (Bharathi) mRNA-associated protein of 41 kDa (Kraemer)|mRNA export factor|mRNA export protein|mRNA-associated protein MRNP 41|mRNA-binding protein, 41-kD|migration-inducing gene 14|rae1 protein homolog 20121230 -9606 8481 OFD1 - 71-7A|CXorf5|JBTS10|SGBS2 HGNC:2567|MIM:300170|Ensembl:ENSG00000046651|HPRD:02162|Vega:OTTHUMG00000021159 X Xp22 oral-facial-digital syndrome 1 protein-coding OFD1 oral-facial-digital syndrome 1 O oral-facial-digital syndrome 1 protein|protein 71-7A 20121230 -9606 8482 SEMA7A - CD108|CDw108|H-SEMA-K1|H-Sema-L|JMH|SEMAK1|SEMAL HGNC:10741|MIM:607961|Ensembl:ENSG00000138623|HPRD:07081|Vega:OTTHUMG00000139000 15 15q22.3-q23 semaphorin 7A, GPI membrane anchor (John Milton Hagen blood group) protein-coding SEMA7A semaphorin 7A, GPI membrane anchor (John Milton Hagen blood group) O JMH blood group antigen|John Milton Hagen blood group H-Sema K1|john-Milton-Hargen human blood group Ag|sema K1|sema L|sema domain, immunoglobulin domain (Ig), and GPI membrane anchor, (semaphorin) 7A (JMH blood group)|sema domain, immunoglobulin domain (Ig), and GPI membrane anchor, 7A|semaphorin K1|semaphorin L|semaphorin-7A|semaphorin-K1|semaphorin-L 20121230 -9606 8483 CILP UNQ602/PRO1188 CILP-1|HsT18872 HGNC:1980|MIM:603489|Ensembl:ENSG00000138615|HPRD:11942|Vega:OTTHUMG00000133140 15 15q22 cartilage intermediate layer protein, nucleotide pyrophosphohydrolase protein-coding CILP cartilage intermediate layer protein, nucleotide pyrophosphohydrolase O cartilage intermediate layer protein 1|cartilage intermediate layer protein 1 C1|cartilage intermediate layer protein 1 C2|cartilage intermediate-layer protein 20121230 -9606 8484 GALR3 - - HGNC:4134|MIM:603692|Ensembl:ENSG00000128310|HPRD:04736|Vega:OTTHUMG00000150658 22 22q13.1 galanin receptor 3 protein-coding GALR3 galanin receptor 3 O GAL3-R|GALR-3|galanin receptor type 3|galanin receptor, family member 3 20121230 -9606 8487 GEMIN2 - SIP1|SIP1-delta HGNC:10884|MIM:602595|Ensembl:ENSG00000092208|HPRD:03999|Vega:OTTHUMG00000028816 14 14q13 gem (nuclear organelle) associated protein 2 protein-coding GEMIN2 gem (nuclear organelle) associated protein 2 O SMN interacting protein 1-delta|component of gems 2|gem-associated protein 2|gemin-2|survival of motor neuron protein interacting protein 1 20121230 -9606 8488 RPL3P1 - RPL3P|RPL3_8_1731 HGNC:10352 21 21q22.2 ribosomal protein L3 pseudogene 1 pseudo RPL3P1 ribosomal protein L3 pseudogene 1 O - 20121230 -9606 8489 RPL23AP3 - RPL23A_37_1729 HGNC:10320 21 21q22.2 ribosomal protein L23a pseudogene 3 pseudo RPL23AP3 ribosomal protein L23a pseudogene 3 O - 20121230 -9606 8490 RGS5 RP11-430G6.2 MST092|MST106|MST129|MSTP032|MSTP092|MSTP106|MSTP129 HGNC:10001|MIM:603276|Ensembl:ENSG00000143248|HPRD:04471|Vega:OTTHUMG00000034441 1 1q23.1 regulator of G-protein signaling 5 protein-coding RGS5 regulator of G-protein signaling 5 O - 20121230 -9606 8491 MAP4K3 - GLK|MAPKKKK3|MEKKK 3|MEKKK3|RAB8IPL1 HGNC:6865|MIM:604921|Ensembl:ENSG00000011566|HPRD:05373|Vega:OTTHUMG00000102127 2 2p22.1 mitogen-activated protein kinase kinase kinase kinase 3 protein-coding MAP4K3 mitogen-activated protein kinase kinase kinase kinase 3 O MAPK/ERK kinase kinase kinase 3|MEK kinase kinase 3|germinal center kinase-like kinase|germinal center kinase-related protein kinase 20121230 -9606 8492 PRSS12 - BSSP-3|BSSP3|MRT1 HGNC:9477|MIM:606709|Ensembl:ENSG00000164099|HPRD:05989|Vega:OTTHUMG00000161166 4 4q28.1 protease, serine, 12 (neurotrypsin, motopsin) protein-coding PRSS12 protease, serine, 12 (neurotrypsin, motopsin) O brain-specific serine protease 3|leydin|neurotrypsin 20121230 -9606 8493 PPM1D - PP2C-DELTA|WIP1 HGNC:9277|MIM:605100|Ensembl:ENSG00000170836|HPRD:05482|Vega:OTTHUMG00000180052 17 17q23.2 protein phosphatase, Mg2+/Mn2+ dependent, 1D protein-coding PPM1D protein phosphatase, Mg2+/Mn2+ dependent, 1D O protein phosphatase 1D|protein phosphatase 1D magnesium-dependent, delta isoform|protein phosphatase 2C delta isoform|protein phosphatase Wip1|protein phosphatase magnesium-dependent 1 delta|wild-type p53-induced phosphatase 1 20121230 -9606 8495 PPFIBP2 - Cclp1 HGNC:9250|MIM:603142|Ensembl:ENSG00000166387|HPRD:04391|Vega:OTTHUMG00000165617 11 11p15.4 PTPRF interacting protein, binding protein 2 (liprin beta 2) protein-coding PPFIBP2 PTPRF interacting protein, binding protein 2 (liprin beta 2) O liprin-beta-2|protein tyrosine phosphatase receptor type f polypeptide-interacting protein-binding protein 2 20121230 -9606 8496 PPFIBP1 - L2|SGT2|hSGT2|hSgt2p HGNC:9249|MIM:603141|Ensembl:ENSG00000110841|HPRD:04390|Vega:OTTHUMG00000169207 12 12p12.1 PTPRF interacting protein, binding protein 1 (liprin beta 1) protein-coding PPFIBP1 PTPRF interacting protein, binding protein 1 (liprin beta 1) O PTPRF-interacting protein-binding protein 1|liprin related protein|liprin-beta 1|liprin-beta-1|protein tyrosine phosphatase receptor type f polypeptide-interacting protein-binding protein 1|protein-tyrosine phosphatase receptor-type f polypeptide-interacting protein-binding protein 1 20121230 -9606 8497 PPFIA4 - - HGNC:9248|MIM:603145|Ensembl:ENSG00000143847|HPRD:16012|Vega:OTTHUMG00000042123 1 1q32.1 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 4 protein-coding PPFIA4 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 4 O Liprin-alpha4|PTPRF-interacting protein alpha-4|liprin alpha4|liprin-alpha-4|protein tyrosine phosphatase receptor type f polypeptide-interacting protein alpha-4 20121230 -9606 8498 RANBP3 - - HGNC:9850|MIM:603327|Ensembl:ENSG00000031823|HPRD:04508|Vega:OTTHUMG00000180636 19 19p13.3 RAN binding protein 3 protein-coding RANBP3 RAN binding protein 3 O RAN-binding protein-3|ran-binding protein 3 20121230 -9606 8499 PPFIA2 - - HGNC:9246|MIM:603143|Ensembl:ENSG00000139220|HPRD:04392|Vega:OTTHUMG00000170181 12 12q21.31 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 2 protein-coding PPFIA2 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 2 O PTPRF-interacting protein alpha-2|liprin-alpha 2|liprin-alpha-2|protein tyrosine phosphatase receptor type f polypeptide-interacting protein alpha-2 20121230 -9606 8500 PPFIA1 - LIP.1|LIP1|LIPRIN HGNC:9245|MIM:611054|Ensembl:ENSG00000131626|HPRD:11451|Vega:OTTHUMG00000167266 11 11q13.3 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 1 protein-coding PPFIA1 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 1 O LAR-interacting protein 1|LIP-1|Liprin-alpha1|PTPRF-interacting protein alpha-1|liprin-alpha-1|protein tyrosine phosphatase receptor type f polypeptide-interacting protein alpha-1 20121230 -9606 8501 SLC43A1 - LAT3|PB39|POV1|R00504 HGNC:9225|MIM:603733|Ensembl:ENSG00000149150|HPRD:07227|Vega:OTTHUMG00000167030 11 11q12.1 solute carrier family 43, member 1 protein-coding SLC43A1 solute carrier family 43, member 1 O L-type amino acid transporter 3|large neutral amino acids transporter small subunit 3|prostate cancer overexpressed gene 1 protein 20121230 -9606 8502 PKP4 - p0071 HGNC:9026|MIM:604276|Ensembl:ENSG00000144283|HPRD:05043|Vega:OTTHUMG00000153969 2 2q24.1 plakophilin 4 protein-coding PKP4 plakophilin 4 O catenin 4|plakophilin-4 20121230 -9606 8503 PIK3R3 RP4-533D7.2 p55|p55-GAMMA HGNC:8981|MIM:606076|Ensembl:ENSG00000117461|HPRD:05831|Vega:OTTHUMG00000008096 1 1p34.1 phosphoinositide-3-kinase, regulatory subunit 3 (gamma) protein-coding PIK3R3 phosphoinositide-3-kinase, regulatory subunit 3 (gamma) O 100% homology to SWISS-PROT Q92569|PI3-kinase regulatory subunit gamma|PI3-kinase subunit p55-gamma|PI3K regulatory subunit gamma|p55PIK|phosphatidylinositol 3-kinase 55 kDa regulatory subunit gamma|phosphatidylinositol 3-kinase regulatory subunit gamma|phosphatidylinositol 3-kinase, regulatory subunit, polypeptide 3 (p55, gamma)|phosphoinositide-3-kinase, regulatory subunit 3 (p55, gamma)|phosphoinositide-3-kinase, regulatory subunit, polypeptide 3 (p55, gamma)|ptdIns-3-kinase regulatory subunit gamma|ptdIns-3-kinase regulatory subunit p55-gamma 20121230 -9606 8504 PEX3 RP1-20N2.3 PBD10A|TRG18 HGNC:8858|MIM:603164|Ensembl:ENSG00000034693|HPRD:04407|Vega:OTTHUMG00000015730 6 6q24.2 peroxisomal biogenesis factor 3 protein-coding PEX3 peroxisomal biogenesis factor 3 O peroxin-3|peroxisomal assembly protein PEX3|transformation-related protein 18 20121230 -9606 8505 PARG RP11-507K13.2 PARG99 HGNC:8605|MIM:603501|Ensembl:ENSG00000227345|HPRD:04611|Vega:OTTHUMG00000018201 10 10q11.23 poly (ADP-ribose) glycohydrolase protein-coding PARG poly (ADP-ribose) glycohydrolase O mitochondrial poly(ADP-ribose) glycohydrolase|poly(ADP-ribose) glycohydrolase|poly(ADP-ribose) glycohydrolase 60 kDa isoform 20121230 -9606 8506 CNTNAP1 - CASPR|CNTNAP|NRXN4|P190 HGNC:8011|MIM:602346|Ensembl:ENSG00000108797|HPRD:03825|Vega:OTTHUMG00000180643 17 17q21 contactin associated protein 1 protein-coding CNTNAP1 contactin associated protein 1 O caspr1|contactin-associated protein 1|neurexin 4|neurexin IV|neurexin-4 20121230 -9606 8507 ENC1 - CCL28|ENC-1|KLHL35|KLHL37|NRPB|PIG10|TP53I10 HGNC:3345|MIM:605173|Ensembl:ENSG00000171617|HPRD:05529|Vega:OTTHUMG00000102059 5 5q13 ectodermal-neural cortex 1 (with BTB-like domain) protein-coding ENC1 ectodermal-neural cortex 1 (with BTB-like domain) O ectoderm-neural cortex protein 1|kelch-like 35|kelch-like protein 37|nuclear matrix protein NRP/B|nuclear restricted protein, BTB domain-like (brain)|p53-induced gene 10 protein|tumor protein p53 inducible protein 10 20121230 -9606 8508 NIPSNAP1 - - HGNC:7827|MIM:603249|Ensembl:ENSG00000184117|HPRD:10342|Vega:OTTHUMG00000151294 22 22q12.2 nipsnap homolog 1 (C. elegans) protein-coding NIPSNAP1 nipsnap homolog 1 (C. elegans) O 4-nitrophenylphosphatase domain and non-neuronal SNAP25-like 1|protein NipSnap homolog 1 20121230 -9606 8509 NDST2 - HSST2|NST2 HGNC:7681|MIM:603268|Ensembl:ENSG00000166507|HPRD:04465|Vega:OTTHUMG00000018489 10 10q22 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 2 protein-coding NDST2 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 2 O N-HSST 2|N-heparan sulfate sulfotransferase 2|NDST-2|bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 2|glucosaminyl N-deacetylase/N-sulfotransferase 2 20121230 -9606 8510 MMP23B RP11-345P4.2 MIFR|MIFR-1|MMP22|MMP23A HGNC:7171|MIM:603321|Ensembl:ENSG00000189409|HPRD:04503|Vega:OTTHUMG00000074713 1 1p36.3 matrix metallopeptidase 23B protein-coding MMP23B matrix metallopeptidase 23B O MMP-21|MMP-22|MMP-23|femalysin|matrix metalloproteinase 22|matrix metalloproteinase 23B|matrix metalloproteinase in the female reproductive tract|matrix metalloproteinase-21|matrix metalloproteinase-22|matrix metalloproteinase-23 20121230 -9606 8511 MMP23A RP1-283E3.1 MIFR|MIFR-1|MMP21 HGNC:7170|MIM:603320|HPRD:04502 1 1p36.33 matrix metallopeptidase 23A (pseudogene) pseudo MMP23A matrix metallopeptidase 23A (pseudogene) O - 20121230 -9606 8512 MBL1P - COLEC3P|MBL1P1 HGNC:6921 10 10q22.3 mannose-binding lectin (protein A) 1, pseudogene pseudo MBL1P mannose-binding lectin (protein A) 1, pseudogene O - 20121230 -9606 8513 LIPF RP11-186O14.1 GL|HGL|HLAL HGNC:6622|MIM:601980|Ensembl:ENSG00000182333|HPRD:09063|Vega:OTTHUMG00000018695 10 10q23.31 lipase, gastric protein-coding LIPF lipase, gastric O gastric lipase|gastric triacylglycerol lipase 20121230 -9606 8514 KCNAB2 RP1-233K16.1 AKR6A5|HKvbeta2|HKvbeta2.1|HKvbeta2.2|KCNA2B|KV-BETA-2 HGNC:6229|MIM:601142|Ensembl:ENSG00000069424|HPRD:03090|Vega:OTTHUMG00000000795 1 1p36.3 potassium voltage-gated channel, shaker-related subfamily, beta member 2 protein-coding KCNAB2 potassium voltage-gated channel, shaker-related subfamily, beta member 2 O K(+) channel subunit beta-2|K+ channel beta-2 subunit|potassium channel shaker chain beta 2|voltage-gated potassium channel subunit beta-2 20121230 -9606 8515 ITGA10 UNQ468/PRO827 PRO827 HGNC:6135|MIM:604042|Ensembl:ENSG00000143127|HPRD:04952|Vega:OTTHUMG00000013751 1 1q21 integrin, alpha 10 protein-coding ITGA10 integrin, alpha 10 O integrin alpha-10 20121230 -9606 8516 ITGA8 - - HGNC:6144|MIM:604063|Ensembl:ENSG00000077943|HPRD:10361|Vega:OTTHUMG00000017733 10 10p13 integrin, alpha 8 protein-coding ITGA8 integrin, alpha 8 O integrin alpha-8 20121230 -9606 8517 IKBKG - AMCBX1|FIP-3|FIP3|Fip3p|IKK-gamma|IP|IP1|IP2|IPD2|NEMO HGNC:5961|MIM:300248|Ensembl:ENSG00000073009|HPRD:02217|Vega:OTTHUMG00000024234 X Xq28 inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase gamma protein-coding IKBKG inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase gamma O I-kappa-B kinase subunit gamma|IKKAP1|IKKG|IkB kinase gamma subunit|NF-kappa-B essential modifier|NF-kappa-B essential modulator|NFkappaB essential modulator|ikB kinase subunit gamma|ikB kinase-associated protein 1|incontinentia pigmenti|inhibitor of nuclear factor kappa-B kinase subunit gamma 20121230 -9606 8518 IKBKAP RP11-3J11.4 DYS|ELP1|FD|IKAP|IKI3|TOT1 HGNC:5959|MIM:603722|Ensembl:ENSG00000070061|HPRD:04763|Vega:OTTHUMG00000020465 9 9q31 inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein protein-coding IKBKAP inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein O IKK complex-associated protein|elongator acetyltransferase complex subunit 1|elongator complex protein 1|ikappaB kinase complex-associated protein|p150 20121230 -9606 8519 IFITM1 - 9-27|CD225|DSPA2a|IFI17|LEU13 HGNC:5412|MIM:604456|Ensembl:ENSG00000185885|HPRD:05122|Vega:OTTHUMG00000165359 11 11p15.5 interferon induced transmembrane protein 1 protein-coding IFITM1 interferon induced transmembrane protein 1 O dispanin subfamily A member 2a|interferon-induced protein 17|interferon-induced transmembrane protein 1|interferon-inducible protein 9-27|leu-13 antigen 20121230 -9606 8520 HAT1 - KAT1 HGNC:4821|MIM:603053|Ensembl:ENSG00000128708|HPRD:04339|Vega:OTTHUMG00000132282 2 2q31.2-q33.1 histone acetyltransferase 1 protein-coding HAT1 histone acetyltransferase 1 O histone acetyltransferase type B catalytic subunit 20121230 -9606 8521 GCM1 - GCMA|hGCMa HGNC:4197|MIM:603715|Ensembl:ENSG00000137270|HPRD:04757|Vega:OTTHUMG00000014871 6 6p12.1 glial cells missing homolog 1 (Drosophila) protein-coding GCM1 glial cells missing homolog 1 (Drosophila) O GCM motif protein 1|chorion-specific transcription factor GCMa 20121230 -9606 8522 GAS7 - MLL/GAS7 HGNC:4169|MIM:603127|Ensembl:ENSG00000007237|HPRD:16011|Vega:OTTHUMG00000177945 17 17p13.1 growth arrest-specific 7 protein-coding GAS7 growth arrest-specific 7 O MLL/GAS7 fusion protein|growth arrest-specific protein 7 20121230 -9606 8525 DGKZ - DAGK5|DAGK6|DGK-ZETA|hDGKzeta HGNC:2857|MIM:601441|Ensembl:ENSG00000149091|HPRD:03260|Vega:OTTHUMG00000166437 11 11p11.2 diacylglycerol kinase, zeta protein-coding DGKZ diacylglycerol kinase, zeta O DAG kinase zeta|diacylglycerol kinase zeta|diacylglycerol kinase, zeta 104kDa|diglyceride kinase zeta 20121230 -9606 8526 DGKE - DAGK5|DAGK6|DGK HGNC:2852|MIM:601440|Ensembl:ENSG00000153933|HPRD:03259|Vega:OTTHUMG00000178121 17 17q22 diacylglycerol kinase, epsilon 64kDa protein-coding DGKE diacylglycerol kinase, epsilon 64kDa O DAG kinase epsilon|DGK-epsilon|diacylglycerol kinase epsilon|diglyceride kinase epsilon 20121230 -9606 8527 DGKD - DGKdelta|dgkd-2 HGNC:2851|MIM:601826|Ensembl:ENSG00000077044|HPRD:03492|Vega:OTTHUMG00000133290 2 2q37.1 diacylglycerol kinase, delta 130kDa protein-coding DGKD diacylglycerol kinase, delta 130kDa O DAG kinase delta|DGK-delta|diacylglycerol kinase delta|diglyceride kinase delta 20121230 -9606 8528 DDO RP1-261K5.2 DASOX|DDO-1|DDO-2 HGNC:2727|MIM:124450|Ensembl:ENSG00000203797|HPRD:00498|Vega:OTTHUMG00000015360 6 6q21 D-aspartate oxidase protein-coding DDO D-aspartate oxidase O D-aspartate oxidase, DDO|aspartic oxidase 20121230 -9606 8529 CYP4F2 - CPF2 HGNC:2645|MIM:604426|Ensembl:ENSG00000186115|HPRD:05112|Vega:OTTHUMG00000182289 19 19p13.12 cytochrome P450, family 4, subfamily F, polypeptide 2 protein-coding CYP4F2 cytochrome P450, family 4, subfamily F, polypeptide 2 O CYPIVF2|cytochrome P450 4F2|cytochrome P450, subfamily IVF, polypeptide 2|cytochrome P450-LTB-omega|leukotriene B4 omega-hydroxylase|leukotriene-B(4) 20-monooxygenase 1|leukotriene-B(4) omega-hydroxylase 1|leukotriene-B4 20-monooxygenase 20121230 -9606 8530 CST7 - CMAP HGNC:2479|MIM:603253|Ensembl:ENSG00000077984|HPRD:04458|Vega:OTTHUMG00000032108 20 20p11.21 cystatin F (leukocystatin) protein-coding CST7 cystatin F (leukocystatin) O cystatin-7|cystatin-F|cystatin-like metastasis-associated protein|leukocystatin 20121230 -9606 8531 CSDA - CSDA1|DBPA|ZONAB HGNC:2428|MIM:603437|Ensembl:ENSG00000060138|HPRD:10347|Vega:OTTHUMG00000168409 12 12p13.1 cold shock domain protein A protein-coding CSDA cold shock domain protein A O DNA-binding protein A|ZO-1-associated nucleic acid-binding protein|cold shock domain-containing protein A|cold-shock domain containing A1|cold-shock domain protein A|single-strand DNA-binding protein NF-GMB 20121230 -9606 8532 CPZ - - HGNC:2333|MIM:603105|Ensembl:ENSG00000109625|HPRD:04376|Vega:OTTHUMG00000090513 4 4p16.1 carboxypeptidase Z protein-coding CPZ carboxypeptidase Z O metallocarboxypeptidase Z 20121230 -9606 8533 COPS3 - CSN3|SGN3 HGNC:2239|MIM:604665|Ensembl:ENSG00000141030|HPRD:07262|Vega:OTTHUMG00000059281 17 17p11.2 COP9 constitutive photomorphogenic homolog subunit 3 (Arabidopsis) protein-coding COPS3 COP9 constitutive photomorphogenic homolog subunit 3 (Arabidopsis) O COP9 complex subunit 3|COP9 signalosome complex subunit 3|JAB1-containing signalosome subunit 3|signalosome subunit 3 20121230 -9606 8534 CHST1 - C6ST|GST-1|KS6ST|KSGal6ST|KSST HGNC:1969|MIM:603797|Ensembl:ENSG00000175264|HPRD:07051|Vega:OTTHUMG00000166513 11 11p11.2 carbohydrate (keratan sulfate Gal-6) sulfotransferase 1 protein-coding CHST1 carbohydrate (keratan sulfate Gal-6) sulfotransferase 1 O carbohydrate (chondroitin 6/keratan) sulfotransferase 1|carbohydrate sulfotransferase 1|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 1 20121230 -9606 8535 CBX4 - NBP16|PC2 HGNC:1554|MIM:603079|Ensembl:ENSG00000141582|HPRD:04357|Vega:OTTHUMG00000150415 17 17q25.3 chromobox homolog 4 protein-coding CBX4 chromobox homolog 4 O E3 SUMO-protein ligase CBX4|NS5ATP1-binding protein 16|Pc class 2 homolog|chromobox homolog 4 (Pc class homolog, Drosophila)|chromobox protein homolog 4|polycomb 2 homolog 20121230 -9606 8536 CAMK1 - CAMKI HGNC:1459|MIM:604998|Ensembl:ENSG00000134072|HPRD:05412|Vega:OTTHUMG00000128419 3 3p25.3 calcium/calmodulin-dependent protein kinase I protein-coding CAMK1 calcium/calmodulin-dependent protein kinase I O caM kinase I alpha|caM-KI|caMKI-alpha|calcium/calmodulin-dependent protein kinase type 1 20121230 -9606 8537 BCAS1 - AIBC1|NABC1 HGNC:974|MIM:602968|Ensembl:ENSG00000064787|HPRD:04273|Vega:OTTHUMG00000032772 20 20q13.2 breast carcinoma amplified sequence 1 protein-coding BCAS1 breast carcinoma amplified sequence 1 O amplified and overexpressed in breast cancer|breast carcinoma-amplified sequence 1|novel amplified in breast cancer 1 20121230 -9606 8538 BARX2 - - HGNC:956|MIM:604823|Ensembl:ENSG00000043039|HPRD:16074|Vega:OTTHUMG00000165776 11 11q25 BARX homeobox 2 protein-coding BARX2 BARX homeobox 2 O BarH-like homeobox 2|homeobox protein BarH-like 2 20121230 -9606 8539 API5 MIG8 AAC-11|AAC11 HGNC:594|MIM:609774|Ensembl:ENSG00000166181|HPRD:16500|Vega:OTTHUMG00000166395 11 11p11.2 apoptosis inhibitor 5 protein-coding API5 apoptosis inhibitor 5 O FIF|antiapoptosis clone 11 protein|cell migration-inducing gene 8 protein|fibroblast growth factor 2-interacting factor 2|migration-inducing protein MIG8 20121230 -9606 8540 AGPS AAG5 ADAP-S|ADAS|ADHAPS|ADPS|ALDHPSY HGNC:327|MIM:603051|Ensembl:ENSG00000018510|HPRD:04337|Vega:OTTHUMG00000132530 2 2q31.2 alkylglycerone phosphate synthase protein-coding AGPS alkylglycerone phosphate synthase O aging-associated gene 5 protein|aging-associated protein 5|alkyl-DHAP synthase|alkyldihydroxyacetonephosphate synthase, peroxisomal|alkylglycerone-phosphate synthase 20121230 -9606 8541 PPFIA3 - LPNA3 HGNC:9247|MIM:603144|Ensembl:ENSG00000177380|HPRD:04393 19 19q13.33 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 3 protein-coding PPFIA3 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 3 O PTPRF-interacting protein alpha-3|liprin|liprin-alpha 3|liprin-alpha-3|protein tyrosine phosphatase receptor type f polypeptide-interacting protein alpha-3|protein tyrosine phosphatase, receptor type, f polypeptide, alpha 3 20121230 -9606 8542 APOL1 RP1-68O2.2 APO-L|APOL|APOL-I|FSGS4 HGNC:618|MIM:603743|Ensembl:ENSG00000100342|HPRD:04774|Vega:OTTHUMG00000030427 22 22q13.1 apolipoprotein L, 1 protein-coding APOL1 apolipoprotein L, 1 O apolipoprotein L1 20121230 -9606 8543 LMO4 - - HGNC:6644|MIM:603129|Ensembl:ENSG00000143013|HPRD:09122|Vega:OTTHUMG00000010248 1 1p22.3 LIM domain only 4 protein-coding LMO4 LIM domain only 4 O LIM domain only protein 4|LIM domain transcription factor LMO4|LMO-4|breast tumor autoantigen 20121230 -9606 8544 PIR - - HGNC:30048|MIM:603329|Ensembl:ENSG00000087842|HPRD:04510|Vega:OTTHUMG00000021176 X Xp22.2 pirin (iron-binding nuclear protein) protein-coding PIR pirin (iron-binding nuclear protein) O pirin|probable quercetin 2,3-dioxygenase PIR|probable quercetinase 20121230 -9606 8545 CGGBP1 - CGGBP|p20-CGGBP HGNC:1888|MIM:603363|Ensembl:ENSG00000163320|HPRD:04529|Vega:OTTHUMG00000159009 3 3p12-p11.1 CGG triplet repeat binding protein 1 protein-coding CGGBP1 CGG triplet repeat binding protein 1 O 20 kDa CGG-binding protein|CGG triplet repeat-binding protein 1|CGG-binding protein 1|p20-CGG binding protein|p20-CGGBP DNA-binding protein 20121230 -9606 8546 AP3B1 - ADTB3|ADTB3A|HPS|HPS2|PE HGNC:566|MIM:603401|Ensembl:ENSG00000132842|HPRD:04551|Vega:OTTHUMG00000106919 5 5q14.1 adaptor-related protein complex 3, beta 1 subunit protein-coding AP3B1 adaptor-related protein complex 3, beta 1 subunit O AP-3 complex beta-3A subunit|AP-3 complex subunit beta-1|adaptor protein complex AP-3 subunit beta-1|beta-3A-adaptin|beta3A-adaptin|clathrin assembly protein complex 3 beta-1 large chain 20121230 -9606 8547 FCN3 RP11-4K3__A.8 FCNH|HAKA1 HGNC:3625|MIM:604973|Ensembl:ENSG00000142748|HPRD:05399|Vega:OTTHUMG00000005722 1 1p36.11 ficolin (collagen/fibrinogen domain containing) 3 (Hakata antigen) protein-coding FCN3 ficolin (collagen/fibrinogen domain containing) 3 (Hakata antigen) O H-ficolin|collagen/fibrinogen domain-containing lectin 3 p35|collagen/fibrinogen domain-containing protein 3|ficolin 3|ficolin-3 20121230 -9606 8548 BLZF1 RP1-206D15.1 GOLGIN-45|JEM-1|JEM-1s|JEM1 HGNC:1065|MIM:608692|Ensembl:ENSG00000117475|HPRD:16367|Vega:OTTHUMG00000035453 1 1q24 basic leucine zipper nuclear factor 1 protein-coding BLZF1 basic leucine zipper nuclear factor 1 O Golgin-45|JEM-1short protein|cytoplasmic protein|p45 basic leucine-zipper nuclear factor 20121230 -9606 8549 LGR5 - FEX|GPR49|GPR67|GRP49|HG38 HGNC:4504|MIM:606667|Ensembl:ENSG00000139292|HPRD:05979|Vega:OTTHUMG00000169543 12 12q22-q23 leucine-rich repeat containing G protein-coupled receptor 5 protein-coding LGR5 leucine-rich repeat containing G protein-coupled receptor 5 O G-protein coupled receptor 49|G-protein coupled receptor 67|G-protein coupled receptor HG38|leucine-rich repeat-containing G protein-coupled receptor 5|leucine-rich repeat-containing G-protein coupled receptor 5|orphan G protein-coupled receptor HG38 20121230 -9606 8550 MAPKAPK5 - MAPKAP-K5|MK-5|MK5|PRAK HGNC:6889|MIM:606723|Ensembl:ENSG00000089022|HPRD:09467|Vega:OTTHUMG00000169605 12 12q24.13 mitogen-activated protein kinase-activated protein kinase 5 protein-coding MAPKAPK5 mitogen-activated protein kinase-activated protein kinase 5 O MAP kinase-activated protein kinase 5|MAPK-activated protein kinase 5|MAPKAP kinase 5|MAPKAPK-5|p38-regulated/activated protein kinase 20121230 -9606 8551 INE2 - NCRNA00011 HGNC:6061|MIM:300165 X Xp22.2 inactivation escape 2 (non-protein coding) miscRNA INE2 inactivation escape 2 (non-protein coding) O - 20121230 -9606 8552 INE1 CTD-2522E6.6 NCRNA00010 HGNC:6060|MIM:300164|HPRD:02158 X Xp11.4-p11.3 inactivation escape 1 (non-protein coding) miscRNA INE1 inactivation escape 1 (non-protein coding) O - 20121230 -9606 8553 BHLHE40 - BHLHB2|DEC1|HLHB2|SHARP-2|STRA13|Stra14 HGNC:1046|MIM:604256|Ensembl:ENSG00000134107|HPRD:16050|Vega:OTTHUMG00000119035 3 3p26 basic helix-loop-helix family, member e40 protein-coding BHLHE40 basic helix-loop-helix family, member e40 O basic helix-loop-helix domain containing, class B, 2|class B basic helix-loop-helix protein 2|class E basic helix-loop-helix protein 40|differentially expressed in chondrocytes 1|differentially expressed in chondrocytes protein 1|differentiated embryo chondrocyte expressed gene 1|enhancer-of-split and hairy-related protein 2|stimulated by retinoic acid gene 13 protein 20121230 -9606 8554 PIAS1 - DDXBP1|GBP|GU/RH-II|ZMIZ3 HGNC:2752|MIM:603566|Ensembl:ENSG00000033800|HPRD:16029|Vega:OTTHUMG00000172645 15 15q protein inhibitor of activated STAT, 1 protein-coding PIAS1 protein inhibitor of activated STAT, 1 O AR interacting protein|DEAD/H (Asp-Glu-Ala-Asp/His) box binding protein 1|DEAD/H box-binding protein 1|E3 SUMO-protein ligase PIAS1|RNA helicase II-binding protein|gu-binding protein|protein inhibitor of activated STAT protein 1|protein inhibitor of activated STAT-1|zinc finger, MIZ-type containing 3 20121230 -9606 8555 CDC14B RP11-172F4.1 CDC14B3|Cdc14B1|Cdc14B2|hCDC14B HGNC:1719|MIM:603505|Ensembl:ENSG00000081377|HPRD:04615|Vega:OTTHUMG00000020300 9 9q22.3 CDC14 cell division cycle 14 homolog B (S. cerevisiae) protein-coding CDC14B CDC14 cell division cycle 14 homolog B (S. cerevisiae) O dual specificity protein phosphatase CDC14B 20121230 -9606 8556 CDC14A - cdc14|hCDC14 HGNC:1718|MIM:603504|Ensembl:ENSG00000079335|HPRD:04614|Vega:OTTHUMG00000010987 1 1p21 CDC14 cell division cycle 14 homolog A (S. cerevisiae) protein-coding CDC14A CDC14 cell division cycle 14 homolog A (S. cerevisiae) O CDC10 (cell division cycle 10, S. cerevisiae, homolog)|dual specificity protein phosphatase CDC14A 20121230 -9606 8557 TCAP - CMD1N|LGMD2G|T-cap|TELE|telethonin HGNC:11610|MIM:604488|Ensembl:ENSG00000173991|HPRD:05133|Vega:OTTHUMG00000133215 17 17q12 titin-cap protein-coding TCAP titin-cap O 19 kDa sarcomeric protein|limb girdle muscular dystrophy 2G (autosomal recessive)|telethonin|titin cap protein 20121230 -9606 8558 CDK10 - PISSLRE HGNC:1770|MIM:603464|Ensembl:ENSG00000185324|Vega:OTTHUMG00000138049 16 16q24 cyclin-dependent kinase 10 protein-coding CDK10 cyclin-dependent kinase 10 O CDC2-related protein kinase|cell division protein kinase 10|cyclin-dependent kinase (CDC2-like) 10|cyclin-dependent kinase related protein|serine/threonine protein kinase PISSLRE|serine/threonine-protein kinase PISSLRE 20121230 -9606 8559 PRPF18 RP11-295P9.7 PRP18|hPrp18 HGNC:17351|MIM:604993|Ensembl:ENSG00000165630|HPRD:05407|Vega:OTTHUMG00000017702 10 10p13 PRP18 pre-mRNA processing factor 18 homolog (S. cerevisiae) protein-coding PRPF18 PRP18 pre-mRNA processing factor 18 homolog (S. cerevisiae) O PRP18 homolog|PRP18 pre-mRNA processing factor 18 homolog(PRPF18)|pre-mRNA-splicing factor 18 20121230 -9606 8560 DEGS1 MIG15 DEGS|DEGS-1|DES1|Des-1|FADS7|MLD HGNC:13709|Ensembl:ENSG00000143753|HPRD:13133|Vega:OTTHUMG00000037496 1 1q42.11 delta(4)-desaturase, sphingolipid 1 protein-coding DEGS1 delta(4)-desaturase, sphingolipid 1 O cell migration-inducing gene 15 protein|degenerative spermatocyte homolog 1, lipid desaturase|degenerative spermatocyte homolog, lipid desaturase|dihydroceramide desaturase|membrane fatty acid (lipid) desaturase|membrane lipid desaturase|migration-inducing gene 15 protein|sphingolipid delta 4 desaturase|sphingolipid delta(4)-desaturase 1|sphingolipid delta(4)-desaturase DES1 20121230 -9606 8562 DENR H14 DRP|DRP1|SMAP-3 HGNC:2769|MIM:604550|Ensembl:ENSG00000139726|HPRD:05182|Vega:OTTHUMG00000168844 12 12q24.31 density-regulated protein protein-coding DENR density-regulated protein O smooth muscle cell associated protein-3|smooth muscle cell-associated protein 3 20121230 -9606 8563 THOC5 - C22orf19|Fmip|PK1.3|fSAP79 HGNC:19074|MIM:612733|Ensembl:ENSG00000100296|HPRD:16650|Vega:OTTHUMG00000151291 22 22q12.2 THO complex 5 protein-coding THOC5 THO complex 5 O Fms-interacting protein|NF2/meningioma region protein pK1.3|PP39.2|THO complex subunit 5 homolog|functional spliceosome-associated protein 79|hTREX90|placental protein 39.2 20121230 -9606 8564 KMO RP1-317G22.1 dJ317G22.1 HGNC:6381|MIM:603538|Ensembl:ENSG00000117009|HPRD:04642|Vega:OTTHUMG00000039635 1 1q42-q44 kynurenine 3-monooxygenase (kynurenine 3-hydroxylase) protein-coding KMO kynurenine 3-monooxygenase (kynurenine 3-hydroxylase) O kynurenine 3-hydroxylase|kynurenine 3-monooxygenase 20121230 -9606 8565 YARS - CMTDIC|TYRRS|YRS|YTS HGNC:12840|MIM:603623|Ensembl:ENSG00000134684|HPRD:09153|Vega:OTTHUMG00000003933 1 1p35.1 tyrosyl-tRNA synthetase protein-coding YARS tyrosyl-tRNA synthetase O tyrosine tRNA ligase 1, cytoplasmic|tyrosine--tRNA ligase, cytoplasmic|tyrosyl--tRNA ligase|tyrosyl-tRNA synthetase, cytoplasmic 20121230 -9606 8566 PDXK PRED79 C21orf124|C21orf97|PKH|PNK HGNC:8819|MIM:179020|Ensembl:ENSG00000160209|HPRD:01526|Vega:OTTHUMG00000086870 21 21q22.3 pyridoxal (pyridoxine, vitamin B6) kinase protein-coding PDXK pyridoxal (pyridoxine, vitamin B6) kinase O pyridoxal kinase|pyridoxamine kinase|pyridoxine kinase|vitamin B6 kinase 20121230 -9606 8567 MADD - DENN|IG20|RAB3GEP HGNC:6766|MIM:603584|Ensembl:ENSG00000110514|HPRD:04664|Vega:OTTHUMG00000150350 11 11p11.2 MAP-kinase activating death domain protein-coding MADD MAP-kinase activating death domain O MAP kinase-activating death domain protein|Rab3 GDP/GTP exchange factor|differentially expressed in normal and neoplastic cells|insulinoma glucagonoma clone 20 20121230 -9606 8568 RRP1 - D21S2056E|NNP-1|NOP52|RRP1A HGNC:18785|MIM:610653|Ensembl:ENSG00000160214|HPRD:10857|Vega:OTTHUMG00000086884 21 21q22.3 ribosomal RNA processing 1 homolog (S. cerevisiae) protein-coding RRP1 ribosomal RNA processing 1 homolog (S. cerevisiae) O Nnp1 homolog, nucleolar protein|RRP1-like protein|novel nuclear protein 1|nucleolar protein Nop52|protein NNP-1|ribosomal RNA processing protein 1 homolog A 20121230 -9606 8569 MKNK1 RP11-49P4.3 MNK1 HGNC:7110|MIM:606724|Ensembl:ENSG00000079277|HPRD:09468|Vega:OTTHUMG00000007983 1 1p33 MAP kinase interacting serine/threonine kinase 1 protein-coding MKNK1 MAP kinase interacting serine/threonine kinase 1 O MAP kinase signal-integrating kinase 1|MAP kinase-interacting serine/threonine-protein kinase 1|MAPK signal-integrating kinase 1 20121230 -9606 8570 KHSRP - FBP2|FUBP2|KSRP HGNC:6316|MIM:603445|Ensembl:ENSG00000088247|HPRD:10350 19 19p13.3 KH-type splicing regulatory protein protein-coding KHSRP KH-type splicing regulatory protein O FUSE binding protein 2|FUSE-binding protein 2|KH type-splicing regulatory protein|far upstream element-binding protein 2|p75 20121230 -9606 8572 PDLIM4 - RIL HGNC:16501|MIM:603422|Ensembl:ENSG00000131435|HPRD:04571|Vega:OTTHUMG00000059645 5 5q31.1 PDZ and LIM domain 4 protein-coding PDLIM4 PDZ and LIM domain 4 O LIM domain protein|LIM protein RIL|PDZ and LIM domain protein 4|enigma homolog|reversion-induced LIM protein 20121230 -9606 8573 CASK RP11-540L11.1 CAGH39|CAMGUK|CMG|FGS4|LIN2|MICPCH|MRXSNA|TNRC8 HGNC:1497|MIM:300172|Ensembl:ENSG00000147044|HPRD:02164|Vega:OTTHUMG00000021378 X Xp11.4 calcium/calmodulin-dependent serine protein kinase (MAGUK family) protein-coding CASK calcium/calmodulin-dependent serine protein kinase (MAGUK family) O calcium/calmodulin-dependent serine protein kinase membrane-associated guanylate kinase|hCASK|peripheral plasma membrane protein CASK|protein lin-2 homolog|trinucleotide repeat containing 8 20121230 -9606 8574 AKR7A2 - AFAR|AFAR1|AFB1-AR1|AKR7 HGNC:389|MIM:603418|Ensembl:ENSG00000053371|HPRD:04567|Vega:OTTHUMG00000002522 1 1p36.13 aldo-keto reductase family 7, member A2 (aflatoxin aldehyde reductase) protein-coding AKR7A2 aldo-keto reductase family 7, member A2 (aflatoxin aldehyde reductase) O AFB1 aldehyde reductase 1|AFB1-AR 1|SSA reductase|aflatoxin B1 aldehyde reductase member 2|aflatoxin beta1 aldehyde reductase|aldoketoreductase 7|succinic semialdehyde reductase 20121230 -9606 8575 PRKRA HSD14 DYT16|PACT|RAX HGNC:9438|MIM:603424|Ensembl:ENSG00000180228|HPRD:04573|Vega:OTTHUMG00000132576 2 2q31.2 protein kinase, interferon-inducible double stranded RNA dependent activator protein-coding PRKRA protein kinase, interferon-inducible double stranded RNA dependent activator O PKR-associated protein X|PKR-associating protein X|interferon-inducible double stranded RNA-dependent protein kinase activator A|protein activator of the interferon-induced protein kinase|protein kinase, interferon-inducible double stranded RNA-dependent activator 20121230 -9606 8576 STK16 - KRCT|MPSK|PKL12|TSF1 HGNC:11394|MIM:604719|Ensembl:ENSG00000115661|HPRD:05281|Vega:OTTHUMG00000154520 2 2q35 serine/threonine kinase 16 protein-coding STK16 serine/threonine kinase 16 O TGF-beta-stimulated factor 1|TSF-1|hPSK|myristoylated and palmitoylated serine/threonine-protein kinase|protein kinase PKL12|protein kinase expressed in day 12 fetal liver|serine/threonine-protein kinase 16|tyrosine-protein kinase STK16 20121230 -9606 8577 TMEFF1 - C9orf2|CT120.1|H7365|TR-1 HGNC:11866|MIM:603421|Ensembl:ENSG00000241697|HPRD:04570|Vega:OTTHUMG00000020367 9 9q31 transmembrane protein with EGF-like and two follistatin-like domains 1 protein-coding TMEFF1 transmembrane protein with EGF-like and two follistatin-like domains 1 O cancer/testis antigen family 120, member 1|tomoregulin-1|transmembrane protein with EGF-like and one follistatin-like domain 20121230 -9606 8578 SCARF1 - SREC|SREC-I|SREC1 HGNC:16820|MIM:607873|Ensembl:ENSG00000074660|HPRD:06386|Vega:OTTHUMG00000090555 17 17p13.3 scavenger receptor class F, member 1 protein-coding SCARF1 scavenger receptor class F, member 1 O acetyl LDL receptor|endothelial cells scavenger receptor|scavenger receptor class F member 1|scavenger receptor expressed by endothelial cells 1 20121230 -9606 8580 OR8C1P - OR11-175|OR8C3P|OR8C4P|OR912-106|OR912-45 HGNC:8478 11 11q24.2 olfactory receptor, family 8, subfamily C, member 1 pseudogene pseudo OR8C1P olfactory receptor, family 8, subfamily C, member 1 pseudogene O - 20121230 -9606 8581 LY6D - E48|Ly-6D HGNC:13348|MIM:606204|Ensembl:ENSG00000167656|HPRD:09370|Vega:OTTHUMG00000164693 8 8q24 lymphocyte antigen 6 complex, locus D protein-coding LY6D lymphocyte antigen 6 complex, locus D O e48 antigen|lymphocyte antigen 6D 20121230 -9606 8582 OR8B1P - OR11-561|OR8B11P HGNC:8470 11 11q24.2 olfactory receptor, family 8, subfamily B, member 1 pseudogene pseudo OR8B1P olfactory receptor, family 8, subfamily B, member 1 pseudogene O - 20121230 -9606 8583 OR7E41P - OR11-20|OR7E50P|OR7E95P|OR7F6P|OR8-126|hg84 HGNC:8415 11 11p15.2 olfactory receptor, family 7, subfamily E, member 41 pseudogene pseudo OR7E41P olfactory receptor, family 7, subfamily E, member 41 pseudogene O - 20121230 -9606 8585 OR7E4P - OR11-11a|OR7E9P|OR7F4P|OST289 HGNC:8424 11 11q13 olfactory receptor, family 7, subfamily E, member 4 pseudogene pseudo OR7E4P olfactory receptor, family 7, subfamily E, member 4 pseudogene O - 20121230 -9606 8586 OR7E87P - OR11-261|OR11-9|OR7E3P|OR7F3P HGNC:14709 11 11q13 olfactory receptor, family 7, subfamily E, member 87 pseudogene pseudo OR7E87P olfactory receptor, family 7, subfamily E, member 87 pseudogene O - 20121230 -9606 8587 OR7E2P - OR11-6|OR7E143P|OR7E51P|OR7E52P|OR7F2P|OST245|hg94 HGNC:8402 11 11q14.2 olfactory receptor, family 7, subfamily E, member 2 pseudogene pseudo OR7E2P olfactory receptor, family 7, subfamily E, member 2 pseudogene O - 20121230 -9606 8588 OR7E15P - OR11-392|OR7E42P|OR7E80P|OST001 HGNC:8386 8 8p23.1 olfactory receptor, family 7, subfamily E, member 15 pseudogene pseudo OR7E15P olfactory receptor, family 7, subfamily E, member 15 pseudogene O - 20121230 -9606 8590 OR6A2 - I7|OR11-55|OR6A1|OR6A2P HGNC:15301|MIM:608495|Ensembl:ENSG00000184933|HPRD:09771|Vega:OTTHUMG00000165736 11 11p15 olfactory receptor, family 6, subfamily A, member 2 protein-coding OR6A2 olfactory receptor, family 6, subfamily A, member 2 O hI7 olfactory receptor|hP2 olfactory receptor|olfactory receptor 11-55|olfactory receptor 6A1|olfactory receptor 6A2|olfactory receptor OR11-83|olfactory receptor, family 6, subfamily A, member 1|olfactory receptor, family 6, subfamily A, member 2 pseudogene|seven transmembrane helix receptor 20121230 -9606 8591 OR5G1P - OR11-104|OR5G2P|OR93|OR93HUM HGNC:8344 11 11q12.1 olfactory receptor, family 5, subfamily G, member 1 pseudogene pseudo OR5G1P olfactory receptor, family 5, subfamily G, member 1 pseudogene O - 20121230 -9606 8594 OR5D3P - OR11-8b|OR11-8c|OR5D3|OR5D4 HGNC:8336 11 11q12 olfactory receptor, family 5, subfamily D, member 3 pseudogene pseudo OR5D3P olfactory receptor, family 5, subfamily D, member 3 pseudogene O - 20121230 -9606 8595 OR5D2P - OR11-7a|OR18-17|OR18-42|OR18-43|OR18-44|OR18-79|OR5D10P|OR5D11|OR5D11P|OR5D12|OR5D12P|OR5D1P|OR5D5P|OR5D6P|OR5D7P|OR5D8P|OR5D9P|OR8-125|OR8-127|OR912-47|OR912-91|OR912-94|R5D9P HGNC:8335 11 11q12 olfactory receptor, family 5, subfamily D, member 2 pseudogene pseudo OR5D2P olfactory receptor, family 5, subfamily D, member 2 pseudogene O - 20121230 -9606 8596 OR4A1P - OR11-30|OR4A20P HGNC:8289 11 11p11.12 olfactory receptor, family 4, subfamily A, member 1 pseudogene pseudo OR4A1P olfactory receptor, family 4, subfamily A, member 1 pseudogene O - 20121230 -9606 8600 TNFSF11 RP11-86N24.2 CD254|ODF|OPGL|OPTB2|RANKL|TRANCE|hRANKL2|sOdf HGNC:11926|MIM:602642|Ensembl:ENSG00000120659|HPRD:04031|Vega:OTTHUMG00000016807 13 13q14 tumor necrosis factor (ligand) superfamily, member 11 protein-coding TNFSF11 tumor necrosis factor (ligand) superfamily, member 11 O TNF-related activation-induced cytokine|osteoclast differentiation factor|osteoprotegerin ligand|receptor activator of nuclear factor kappa B ligand|receptor activator of nuclear factor kappa-B ligand|tumor necrosis factor ligand superfamily member 11 20121230 -9606 8601 RGS20 - RGSZ1|ZGAP1 HGNC:14600|MIM:607193|Ensembl:ENSG00000147509|HPRD:06225|Vega:OTTHUMG00000164750 8 8q11.23 regulator of G-protein signaling 20 protein-coding RGS20 regulator of G-protein signaling 20 O g(z)GAP|gz-GAP|gz-selective GTPase-activating protein|regulator of G-protein signaling 20 variant 2|regulator of G-protein signaling Z1|regulator of G-protein signalling 20|regulator of Gz-selective protein signaling 1 20121230 -9606 8602 NOP14 RES4-25 C4orf9|NOL14|RES425|UTP2 HGNC:16821|MIM:611526|Ensembl:ENSG00000087269|HPRD:12827|Vega:OTTHUMG00000159911 4 4p16.3 NOP14 nucleolar protein protein-coding NOP14 NOP14 nucleolar protein O NOP14 homolog|NOP14 nucleolar protein homolog|nucleolar complex protein 14|nucleolar protein 14|nucleolar protein 14 homolog|probable nucleolar complex protein 14 20121230 -9606 8603 FAM193A RES4-22 C4orf8 HGNC:16822|Ensembl:ENSG00000125386|HPRD:09850|Vega:OTTHUMG00000160512 4 4p16.3 family with sequence similarity 193, member A protein-coding FAM193A family with sequence similarity 193, member A O protein FAM193A 20121230 -9606 8604 SLC25A12 - AGC1|ARALAR HGNC:10982|MIM:603667|Ensembl:ENSG00000115840|HPRD:04719|Vega:OTTHUMG00000134290 2 2q24 solute carrier family 25 (aspartate/glutamate carrier), member 12 protein-coding SLC25A12 solute carrier family 25 (aspartate/glutamate carrier), member 12 O araceli hiperlarga|calcium binding mitochondrial carrier superfamily member Aralar1|calcium-binding mitochondrial carrier protein Aralar1|mitochondrial aspartate glutamate carrier 1|solute carrier family 25 (mitochondrial carrier, Aralar), member 12 20121230 -9606 8605 PLA2G4C - CPLA2-gamma HGNC:9037|MIM:603602|Ensembl:ENSG00000105499|HPRD:04673 19 19q13.3 phospholipase A2, group IVC (cytosolic, calcium-independent) protein-coding PLA2G4C phospholipase A2, group IVC (cytosolic, calcium-independent) O cytosolic phospholipase A2 gamma|phospholipase A2 group IVC 20121230 -9606 8607 RUVBL1 - ECP54|INO80H|NMP238|PONTIN|Pontin52|RVB1|TIH1|TIP49|TIP49A HGNC:10474|MIM:603449|Ensembl:ENSG00000175792|HPRD:09143|Vega:OTTHUMG00000159658 3 3q21 RuvB-like 1 (E. coli) protein-coding RUVBL1 RuvB-like 1 (E. coli) O 49 kDa TATA box-binding protein-interacting protein|49 kDa TBP-interacting protein|54 kDa erythrocyte cytosolic protein|ECP-54|INO80 complex subunit H|NMP 238|RuvB (E coli homolog)-like 1|TAP54-alpha|TATA binding protein interacting protein 49 kDa|TIP60-associated protein 54-alpha|nuclear matrix protein 238|pontin 52|ruvB-like 1 20121230 -9606 8608 RDH16 - RODH-4|SDR9C8 HGNC:29674|Ensembl:ENSG00000139547|HPRD:10208|Vega:OTTHUMG00000170895 12 12q13.3 retinol dehydrogenase 16 (all-trans) protein-coding RDH16 retinol dehydrogenase 16 (all-trans) O microsomal NAD(+)-dependent retinol dehydrogenase 4|microsomal NAD+-dependent retinol dehydrogenase 4|retinol dehydrogenase 16|retinol dehydrogenase 16 (all-trans and 13-cis)|short chain dehydrogenase/reductase family 9C, member 8|sterol/retinol dehydrogenase 20121230 -9606 8609 KLF7 - UKLF HGNC:6350|MIM:604865|Ensembl:ENSG00000118263|HPRD:07279|Vega:OTTHUMG00000132935 2 2q32 Kruppel-like factor 7 (ubiquitous) protein-coding KLF7 Kruppel-like factor 7 (ubiquitous) O Krueppel-like factor 7|ubiquitous Kruppel-like transcription factor 20121230 -9606 8611 PPAP2A - LLP1a|LPP1|PAP-2a|PAP2|PAP2a2|PAP2alpha2|PAPalpha1 HGNC:9228|MIM:607124|Ensembl:ENSG00000067113|HPRD:06178|Vega:OTTHUMG00000162240 5 5q11 phosphatidic acid phosphatase type 2A protein-coding PPAP2A phosphatidic acid phosphatase type 2A O PAP2-alpha|PAP2a|lipid phosphate phosphohydrolase 1|lipid phosphate phosphohydrolase 1a|phosphatidate phosphohydrolase type 2a|phosphatidic acid phosphatase 2a|phosphatidic acid phosphohydrolase type 2a|type 2 phosphatidic acid phosphohydrolase|type-2 phosphatidic acid phosphatase alpha 20121230 -9606 8612 PPAP2C - LPP2|PAP-2c|PAP2-g HGNC:9230|MIM:607126|Ensembl:ENSG00000141934|HPRD:06180|Vega:OTTHUMG00000180530 19 19p13 phosphatidic acid phosphatase type 2C protein-coding PPAP2C phosphatidic acid phosphatase type 2C O PAP2-gamma|PAP2c|lipid phosphate phosphohydrolase 2|phosphatidate phosphohydrolase type 2c|phosphatidic acid phosphatase 2c|phosphatidic acid phosphohydrolase type 2c|type-2 phosphatidic acid phosphatase-gamma 20121230 -9606 8613 PPAP2B - Dri42|LPP3|PAP2B|VCIP HGNC:9229|MIM:607125|Ensembl:ENSG00000162407|HPRD:06179|Vega:OTTHUMG00000008160 1 1p32.2 phosphatidic acid phosphatase type 2B protein-coding PPAP2B phosphatidic acid phosphatase type 2B O PAP2 beta|lipid phosphate phosphohydrolase 3|phosphatidate phosphohydrolase type 2b|type-2 phosphatidic acid phosphatase-beta|vascular endothelial growth factor and type I collagen inducible 20121230 -9606 8614 STC2 - STC-2|STCRP HGNC:11374|MIM:603665|Ensembl:ENSG00000113739|HPRD:04717|Vega:OTTHUMG00000130542 5 5q35.1 stanniocalcin 2 protein-coding STC2 stanniocalcin 2 O STC-related protein|stanniocalcin-2|stanniocalcin-related protein 20121230 -9606 8615 USO1 - P115|TAP|VDP HGNC:30904|MIM:603344|Ensembl:ENSG00000138768|HPRD:09135|Vega:OTTHUMG00000160952 4 4q21.1 USO1 vesicle transport factor protein-coding USO1 USO1 vesicle transport factor O USO1 homolog, vesicle docking protein|USO1 vesicle docking protein homolog|general vesicular transport factor p115|protein USO1 homolog|transcytosis associated protein|vesicle docking protein p115|vesicle-docking protein 20121230 -9606 8618 CADPS - CADPS1|CAPS|CAPS1 HGNC:1426|MIM:604667|Ensembl:ENSG00000163618|HPRD:05236|Vega:OTTHUMG00000158651 3 3p14.2 Ca++-dependent secretion activator protein-coding CADPS Ca++-dependent secretion activator O CAPS-1|Ca2+-dependent activator protein for secretion|Ca2+-dependent secretion activator|Ca2+-regulated cytoskeletal protein|calcium-dependent activator protein for secretion 1|calcium-dependent secretion activator 1 20121230 -9606 8620 NPFF - FMRFAL HGNC:7901|MIM:604643|Ensembl:ENSG00000139574|HPRD:06869|Vega:OTTHUMG00000169856 12 12q13.13 neuropeptide FF-amide peptide precursor protein-coding NPFF neuropeptide FF-amide peptide precursor O FMRFamide-related peptides 20121230 -9606 8621 CDK13 - CDC2L|CDC2L5|CHED|hCDK13 HGNC:1733|MIM:603309|Ensembl:ENSG00000065883|HPRD:04496|Vega:OTTHUMG00000023726 7 7p13 cyclin-dependent kinase 13 protein-coding CDK13 cyclin-dependent kinase 13 O CDC2-related protein kinase 5|cell division cycle 2-like protein kinase 5|cell division protein kinase 13|cholinesterase-related cell division controller 20121230 -9606 8622 PDE8B PIG22 ADSD|PPNAD3 HGNC:8794|MIM:603390|Ensembl:ENSG00000113231|HPRD:04546|Vega:OTTHUMG00000102170 5 5q13.3 phosphodiesterase 8B protein-coding PDE8B phosphodiesterase 8B O 3',5' cyclic nucleotide phosphodiesterase 8B|cell proliferation-inducing gene 22 protein|high affinity cAMP-specific and IBMX-insensitive 3',5'-cyclic phosphodiesterase 8B|hsPDE8B 20121230 -9606 8623 ASMTL RP11-261P4.3 ASMTLX|ASMTLY|ASTML HGNC:751|MIM:300162|MIM:400011|Ensembl:ENSG00000169093|HPRD:02156|Vega:OTTHUMG00000021057 X|Y Xp22.3; Yp11.3 acetylserotonin O-methyltransferase-like protein-coding ASMTL acetylserotonin O-methyltransferase-like O N-acetylserotonin O-methyltransferase-like protein|acetylserotonin N-methyltransferase-like 20121230 -9606 8624 PSMG1 - C21LRP|DSCR2|LRPC21|PAC-1|PAC1 HGNC:3043|MIM:605296|Ensembl:ENSG00000183527|HPRD:05598|Vega:OTTHUMG00000066034 21 21q22.3 proteasome (prosome, macropain) assembly chaperone 1 protein-coding PSMG1 proteasome (prosome, macropain) assembly chaperone 1 O Down syndrome critical region gene 2|Down syndrome critical region protein 2|chromosome 21 leucine-rich protein|leucine rich protein C21-LRP|proteasome assembling chaperone 1|proteasome assembly chaperone 1 20121230 -9606 8625 RFXANK - ANKRA1|BLS|F14150_1|RFX-B HGNC:9987|MIM:603200|Ensembl:ENSG00000064490|HPRD:04435|Vega:OTTHUMG00000169224 19 19p12 regulatory factor X-associated ankyrin-containing protein protein-coding RFXANK regulatory factor X-associated ankyrin-containing protein O DNA-binding protein RFXANK|RFX-Bdelta4|ankyrin repeat family A protein 1|ankyrin repeat-containing regulatory factor X-associated protein|regulatory factor X subunit B 20121230 -9606 8626 TP63 - AIS|B(p51A)|B(p51B)|EEC3|KET|LMS|NBP|OFC8|RHS|SHFM4|TP53CP|TP53L|TP73L|p40|p51|p53CP|p63|p73H|p73L HGNC:15979|MIM:603273|Ensembl:ENSG00000073282|HPRD:04469|Vega:OTTHUMG00000156313 3 3q28 tumor protein p63 protein-coding TP63 tumor protein p63 O CUSP|amplified in squamous cell carcinoma|chronic ulcerative stomatitis protein|keratinocyte transcription factor KET|transformation-related protein 63|tumor protein 63|tumor protein p53-competing protein|tumor protein p63 deltaN isoform delta 20121230 -9606 8629 JRK - JH8 HGNC:6199|MIM:603210|HPRD:04442 8 8q24.3 jerky homolog (mouse) protein-coding JRK jerky homolog (mouse) O jerky protein homolog 20121230 -9606 8630 HSD17B6 - HSE|RODH|SDR9C6 HGNC:23316|MIM:606623|Ensembl:ENSG00000025423|HPRD:09431|Vega:OTTHUMG00000170854 12 12q13 hydroxysteroid (17-beta) dehydrogenase 6 homolog (mouse) protein-coding HSD17B6 hydroxysteroid (17-beta) dehydrogenase 6 homolog (mouse) O 17-beta-HSD 6|17-beta-HSD6|17-beta-hydroxysteroid dehydrogenase type 6|3(alpha->beta)-hydroxysteroid epimerase|3(alpha->beta)-hydroxysteroid epimerasel|3-alpha->beta-HSE|3-alpha->beta-hydroxysteroid epimerase|3-hydroxysteroid epimerase|NAD+ -dependent 3 alpha-hydroxysteroid dehydrogenase 3-hydroxysteroid epimerase|oxidative 3-alpha hydroxysteroid dehydrogenase|oxidative 3-alpha-hydroxysteroid-dehydrogenase|oxidoreductase|retinol dehydrogenase|short chain dehydrogenase/reductase family 9C, member 6 20121230 -9606 8631 SKAP1 - SCAP1|SKAP55 HGNC:15605|MIM:604969|Ensembl:ENSG00000141293|HPRD:05396|Vega:OTTHUMG00000178823 17 17q21.32 src kinase associated phosphoprotein 1 protein-coding SKAP1 src kinase associated phosphoprotein 1 O SKAP-55|pp55|src family associated phosphoprotein 1|src family-associated phosphoprotein 1|src kinase-associated phosphoprotein 1|src kinase-associated phosphoprotein of 55 kDa 20121230 -9606 8632 DNAH17 hCG_1813078 DNAHL1|DNEL2 HGNC:2946|MIM:610063|Ensembl:ENSG00000187775|HPRD:16830|Vega:OTTHUMG00000150216 17 17q25.3 dynein, axonemal, heavy chain 17 protein-coding DNAH17 dynein, axonemal, heavy chain 17 O axonemal beta dynein heavy chain 17|axonemal dynein heavy chain|axonemal dynein heavy chain-like protein 1|ciliary dynein heavy chain 17|ciliary dynein heavy chain-like protein 1|dynein heavy chain 17, axonemal|dynein light chain 2, axonemal|dynein, axonemal, heavy chain like 1|dynein, axonemal, heavy like 1|dynein, axonemal, heavy polypeptide 17 20121230 -9606 8633 UNC5C - UNC5H3 HGNC:12569|MIM:603610|Ensembl:ENSG00000182168|HPRD:04678|Vega:OTTHUMG00000130989 4 4q21-q23 unc-5 homolog C (C. elegans) protein-coding UNC5C unc-5 homolog C (C. elegans) O netrin receptor UNC5C|protein unc-5 homolog 3|protein unc-5 homolog C|unc-5 homolog 3|unc5 (C.elegans homolog) c 20121230 -9606 8634 RTCA - RPC|RTC1|RTCD1 HGNC:17981|MIM:611286|Ensembl:ENSG00000137996|HPRD:15280|Vega:OTTHUMG00000010920 1 1p21.2 RNA 3'-terminal phosphate cyclase protein-coding RTCA RNA 3'-terminal phosphate cyclase O RNA terminal phosphate cyclase domain 1|RNA terminal phosphate cyclase domain-containing protein 1|RTC domain-containing protein 1 20121230 -9606 8635 RNASET2 RP11-514O12.3 RNASE6PL|bA514O12.3 HGNC:21686|MIM:612944|Ensembl:ENSG00000026297|Ensembl:ENSG00000249141|HPRD:10197|Vega:OTTHUMG00000016009|Vega:OTTHUMG00000160910 6 6q27 ribonuclease T2 protein-coding RNASET2 ribonuclease T2 O ribonuclease 6 20121230 -9606 8636 SSNA1 - N14|NA-14|NA14 HGNC:11321|MIM:610882|Ensembl:ENSG00000176101|HPRD:10251|Vega:OTTHUMG00000020982 9 9q34.3 Sjogren syndrome nuclear autoantigen 1 protein-coding SSNA1 Sjogren syndrome nuclear autoantigen 1 O Sjoegren syndrome nuclear autoantigen 1|Sjogren's syndrome nuclear autoantigen 1|nuclear autoantigen of 14 kDa 20121230 -9606 8637 EIF4EBP3 - 4E-BP3|4EBP3 HGNC:3290|MIM:603483|Ensembl:ENSG00000243056|HPRD:09149|Vega:OTTHUMG00000129498 5 5q31.3 eukaryotic translation initiation factor 4E binding protein 3 protein-coding EIF4EBP3 eukaryotic translation initiation factor 4E binding protein 3 O eIF4E-binding protein 3|eukaryotic initiation factor 4E-binding protein 3|eukaryotic translation initiation factor 4E-binding protein 3 20121230 -9606 8638 OASL - OASLd|TRIP-14|TRIP14|p59 OASL|p59-OASL|p59OASL HGNC:8090|MIM:603281|Ensembl:ENSG00000135114|HPRD:04473|Vega:OTTHUMG00000154981 12 12q24.2 2'-5'-oligoadenylate synthetase-like protein-coding OASL 2'-5'-oligoadenylate synthetase-like O 2'-5'-OAS-RP|2'-5'-OAS-related protein|2'-5'-oligoadenylate synthase-like protein|59 kDa 2'-5'-oligoadenylate synthase-like protein|59 kDa 2'-5'-oligoadenylate synthetase-like protein|TR-interacting protein 14|thyroid receptor-interacting protein 14 20121230 -9606 8639 AOC3 - HPAO|SSAO|VAP-1|VAP1 HGNC:550|MIM:603735|Ensembl:ENSG00000131471|HPRD:04770|Vega:OTTHUMG00000180656 17 17q21 amine oxidase, copper containing 3 (vascular adhesion protein 1) protein-coding AOC3 amine oxidase, copper containing 3 (vascular adhesion protein 1) O copper amine oxidase|membrane primary amine oxidase|semicarbazide-sensitive amine oxidase|vascular adhesion protein 1 20121230 -9606 8641 PCDHGB4 - CDH20|FIB2|PCDH-GAMMA-B4 HGNC:8711|MIM:603058|Ensembl:ENSG00000253953|HPRD:07215|Vega:OTTHUMG00000163686 5 5q31 protocadherin gamma subfamily B, 4 protein-coding PCDHGB4 protocadherin gamma subfamily B, 4 O cadherin 20|cadherin-20|fibroblast cadherin FIB2|fibroblast cadherin-2|protocadherin gamma-B4 20121230 -9606 8642 DCHS1 - CDH25|CDHR6|FIB1|PCDH16 HGNC:13681|MIM:603057|Ensembl:ENSG00000166341|HPRD:04341|Vega:OTTHUMG00000133398 11 11p15.4 dachsous 1 (Drosophila) protein-coding DCHS1 dachsous 1 (Drosophila) O cadherin-19|cadherin-25|cadherin-related family member 6|fibroblast cadherin 1|fibroblast cadherin FIB1|fibroblast cadherin-1|protein dachsous homolog 1|protocadherin 16|protocadherin-16 20121230 -9606 8643 PTCH2 RP11-269F19.8 PTC2 HGNC:9586|MIM:603673|Ensembl:ENSG00000117425|HPRD:04722|Vega:OTTHUMG00000008490 1 1p34.1 patched 2 protein-coding PTCH2 patched 2 O patched homolog 2|protein patched homolog 2 20121230 -9606 8644 AKR1C3 - DD3|DDX|HA1753|HAKRB|HAKRe|HSD17B5|PGFS|hluPGFS HGNC:386|MIM:603966|Ensembl:ENSG00000196139|HPRD:04911|Vega:OTTHUMG00000017585 10 10p15-p14 aldo-keto reductase family 1, member C3 protein-coding AKR1C3 aldo-keto reductase family 1, member C3 O 3-alpha hydroxysteroid dehydrogenase, type II|3-alpha-HSD type II, brain|aldo-keto reductase family 1 member C3|aldo-keto reductase family 1, member C3 (3-alpha hydroxysteroid dehydrogenase, type II)|chlordecone reductase homolog HAKRb|dihydrodiol dehydrogenase 3|dihydrodiol dehydrogenase X|indanol dehydrogenase|prostaglandin F synthase|testosterone 17-beta-dehydrogenase 5|trans-1,2-dihydrobenzene-1,2-diol dehydrogenase|type IIb 3-alpha hydroxysteroid dehydrogenase 20121230 -9606 8645 KCNK5 - K2p5.1|TASK-2|TASK2 HGNC:6280|MIM:603493|Ensembl:ENSG00000164626|HPRD:04604|Vega:OTTHUMG00000014642 6 6p21 potassium channel, subfamily K, member 5 protein-coding KCNK5 potassium channel, subfamily K, member 5 O K2P5.1 potassium channel|TWIK-related acid-sensitive K(+) channel 2|TWIK-related acid-sensitive K+ channel 2|acid-sensitive potassium channel protein TASK-2|potassium channel subfamily K member 5|potassium channel, subfamily K, member 1 (TASK-2) 20121230 -9606 8646 CHRD UNQ217/PRO243 - HGNC:1949|MIM:603475|Ensembl:ENSG00000090539|HPRD:04592|Vega:OTTHUMG00000141267 3 3q27 chordin protein-coding CHRD chordin O - 20121230 -9606 8647 ABCB11 - ABC16|BRIC2|BSEP|PFIC-2|PFIC2|PGY4|SPGP HGNC:42|MIM:603201|Ensembl:ENSG00000073734|HPRD:04436|Vega:OTTHUMG00000154039 2 2q24 ATP-binding cassette, sub-family B (MDR/TAP), member 11 protein-coding ABCB11 ATP-binding cassette, sub-family B (MDR/TAP), member 11 O ABC member 16, MDR/TAP subfamily|ATP-binding cassette sub-family B member 11|bile salt export pump|progressive familial intrahepatic cholestasis 2|sister p-glycoprotein 20121230 -9606 8648 NCOA1 - F-SRC-1|KAT13A|RIP160|SRC1|bHLHe42|bHLHe74 HGNC:7668|MIM:602691|Ensembl:ENSG00000084676|HPRD:04070|Vega:OTTHUMG00000125523 2 2p23 nuclear receptor coactivator 1 protein-coding NCOA1 nuclear receptor coactivator 1 O Hin-2 protein|PAX3/NCOA1 fusion protein|class E basic helix-loop-helix protein 74|renal carcinoma antigen NY-REN-52|steroid receptor coactivator-1 20121230 -9606 8649 LAMTOR3 PRO2783 MAP2K1IP1|MAPBP|MAPKSP1|MP1|PRO0633|Ragulator3 HGNC:15606|MIM:603296|Ensembl:ENSG00000109270|HPRD:04485|Vega:OTTHUMG00000131050 4 4q23 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 protein-coding LAMTOR3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 O MAPK scaffold protein 1|MEK binding partner 1|late endosomal/lysosomal adaptor and MAPK and MTOR activator 3|mitogen-activated protein kinase kinase 1 interacting protein 1|mitogen-activated protein kinase scaffold protein 1|ragulator complex protein LAMTOR3 20121230 -9606 8650 NUMB - C14orf41|S171|c14_5527 HGNC:8060|MIM:603728|Ensembl:ENSG00000133961|HPRD:04767|Vega:OTTHUMG00000171436 14 14q24.3 numb homolog (Drosophila) protein-coding NUMB numb homolog (Drosophila) O h-Numb|protein numb homolog 20121230 -9606 8651 SOCS1 - CIS1|CISH1|JAB|SOCS-1|SSI-1|SSI1|TIP3 HGNC:19383|MIM:603597|Ensembl:ENSG00000185338|HPRD:04669|Vega:OTTHUMG00000129792 16 16p13.13 suppressor of cytokine signaling 1 protein-coding SOCS1 suppressor of cytokine signaling 1 O JAK binding protein|JAK-binding protein|STAT induced SH3 protein 1|STAT-induced STAT inhibitor 1|TIP-3|Tec-interacting protein 3|cytokine-inducible SH2 protein 1 20121230 -9606 8653 DDX3Y - DBY HGNC:2699|MIM:400010|Ensembl:ENSG00000067048|HPRD:02452|Vega:OTTHUMG00000036324 Y Yq11 DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked protein-coding DDX3Y DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked O ATP-dependent RNA helicase DDX3Y|DEAD box protein 3, Y-chromosomal|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide, Y chromosome 20121230 -9606 8654 PDE5A - CGB-PDE|CN5A|PDE5 HGNC:8784|MIM:603310|Ensembl:ENSG00000138735|HPRD:04497|Vega:OTTHUMG00000132971 4 4q27 phosphodiesterase 5A, cGMP-specific protein-coding PDE5A phosphodiesterase 5A, cGMP-specific O cGMP-binding cGMP-specific 3',5'-cyclic nucleotide phosphodiesterase|cGMP-specific 3',5'-cyclic phosphodiesterase|cGMP-specific phosphodiesterase PDE5A2|cGMP-specific phosphodiesterase type 5A|phosphodiesterase isozyme 5 20121230 -9606 8655 DYNLL1 - DLC1|DLC8|DNCL1|DNCLC1|LC8|LC8a|PIN|hdlc1 HGNC:15476|MIM:601562|Ensembl:ENSG00000088986|HPRD:03334|Vega:OTTHUMG00000169368 12 12q24.23 dynein, light chain, LC8-type 1 protein-coding DYNLL1 dynein, light chain, LC8-type 1 O 8 kDa dynein light chain|cytoplasmic dynein light polypeptide|dynein light chain 1, cytoplasmic|dynein, cytoplasmic, light polypeptide 1|protein inhibitor of neuronal nitric oxide synthase 20121230 -9606 8658 TNKS - ARTD5|PARP-5a|PARP5A|PARPL|TIN1|TINF1|TNKS1|pART5 HGNC:11941|MIM:603303|Ensembl:ENSG00000173273|HPRD:04490|Vega:OTTHUMG00000090481 8 8p23.1 tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase protein-coding TNKS tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase O ADP-ribosyltransferase diphtheria toxin-like 5|TANK1|TNKS-1|TRF1-interacting ankyrin-related ADP-ribose polymerase|poly [ADP-ribose] polymerase 5A|tankyrase I|tankyrase-1 20121230 -9606 8659 ALDH4A1 RP11-128M10.1 ALDH4|P5CD|P5CDh HGNC:406|MIM:606811|Ensembl:ENSG00000159423|HPRD:06009|Vega:OTTHUMG00000002443 1 1p36 aldehyde dehydrogenase 4 family, member A1 protein-coding ALDH4A1 aldehyde dehydrogenase 4 family, member A1 O P5C dehydrogenase|aldehyde dehydrogenase family 4 member A1|delta-1-pyrroline-5-carboxylate dehydrogenase, mitochondrial|mitochondrial delta-1-pyrroline 5-carboxylate dehydrogenase 20121230 -9606 8660 IRS2 - IRS-2 HGNC:6126|MIM:600797|Ensembl:ENSG00000185950|HPRD:02878|Vega:OTTHUMG00000017338 13 13q34 insulin receptor substrate 2 protein-coding IRS2 insulin receptor substrate 2 O - 20121230 -9606 8661 EIF3A - EIF3|EIF3S10|P167|TIF32|eIF3-p170|eIF3-theta|p180|p185 HGNC:3271|MIM:602039|Ensembl:ENSG00000107581|HPRD:03618|Vega:OTTHUMG00000019144 10 10q26 eukaryotic translation initiation factor 3, subunit A protein-coding EIF3A eukaryotic translation initiation factor 3, subunit A O EIF3, p180 subunit|centrosomin homolog|cytoplasmic protein p167|eIF-3-theta|eIF3 p167|eIF3 p180|eIF3 p185|eukaryotic translation initiation factor 3 subunit 10|eukaryotic translation initiation factor 3 subunit A|eukaryotic translation initiation factor 3, subunit 10 (theta, 150/170kD)|eukaryotic translation initiation factor 3, subunit 10 (theta, 170kD)|eukaryotic translation initiation factor 3, subunit 10 theta, 150/170kDa|eukaryotic translation initiation factor 3, subunit 10, 170kD 20121230 -9606 8662 EIF3B - EIF3-ETA|EIF3-P110|EIF3-P116|EIF3S9|PRT1 HGNC:3280|MIM:603917|Ensembl:ENSG00000106263|HPRD:06795|Vega:OTTHUMG00000022839 7 7p22.3 eukaryotic translation initiation factor 3, subunit B protein-coding EIF3B eukaryotic translation initiation factor 3, subunit B O eIF-3-eta|eIF3 p110|eIF3 p116|eukaryotic translation initiation factor 3 subunit 9|eukaryotic translation initiation factor 3 subunit B|eukaryotic translation initiation factor 3, subunit 9 (eta, 116kD)|eukaryotic translation initiation factor 3, subunit 9 eta, 116kDa|hPrt1|prt1 homolog 20121230 -9606 8663 EIF3C - EIF3CL|EIF3S8|eIF3-p110 HGNC:3279|MIM:603916|Ensembl:ENSG00000184110|HPRD:04889|Vega:OTTHUMG00000099443 16 16p11.2 eukaryotic translation initiation factor 3, subunit C protein-coding EIF3C eukaryotic translation initiation factor 3, subunit C O cell migration-inducing protein 17|eIF3 p110|eukaryotic translation initiation factor 3 subunit 8|eukaryotic translation initiation factor 3 subunit C|eukaryotic translation initiation factor 3, subunit 8 (110kD)|eukaryotic translation initiation factor 3, subunit 8, 110kDa 20121230 -9606 8664 EIF3D RP5-1119A7.12-003 EIF3S7|eIF3-p66|eIF3-zeta HGNC:3278|MIM:603915|Ensembl:ENSG00000100353|HPRD:04888|Vega:OTTHUMG00000150599 22 22q13.1 eukaryotic translation initiation factor 3, subunit D protein-coding EIF3D eukaryotic translation initiation factor 3, subunit D O eIF-3-zeta|eIF3 p66|eukaryotic translation initiation factor 3 subunit 7|eukaryotic translation initiation factor 3 subunit D|eukaryotic translation initiation factor 3, subunit 7 zeta, 66/67kDa|translation initiation factor eIF3 p66 subunit 20121230 -9606 8665 EIF3F - EIF3S5|eIF3-p47 HGNC:3275|MIM:603914|Ensembl:ENSG00000175390|HPRD:04887|Vega:OTTHUMG00000165675 11 11p15.4 eukaryotic translation initiation factor 3, subunit F protein-coding EIF3F eukaryotic translation initiation factor 3, subunit F O deubiquitinating enzyme eIF3f|eIF-3-epsilon|eIF3-epsilon|eukaryotic translation initiation factor 3 subunit F|eukaryotic translation initiation factor 3, subunit 5 (epsilon, 47kD)|eukaryotic translation initiation factor 3, subunit 5 epsilon, 47kDa 20121230 -9606 8666 EIF3G - EIF3-P42|EIF3S4|eIF3-delta|eIF3-p44 HGNC:3274|MIM:603913|Ensembl:ENSG00000130811|HPRD:04886|Vega:OTTHUMG00000180396 19 19p13.2 eukaryotic translation initiation factor 3, subunit G protein-coding EIF3G eukaryotic translation initiation factor 3, subunit G O eIF-3 RNA-binding subunit|eIF-3-delta|eIF3 p42|eIF3 p44|eukaryotic translation initiation factor 3 RNA-binding subunit|eukaryotic translation initiation factor 3 subunit 4|eukaryotic translation initiation factor 3 subunit G|eukaryotic translation initiation factor 3 subunit p42|eukaryotic translation initiation factor 3, subunit 4 (delta, 44kD)|eukaryotic translation initiation factor 3, subunit 4 delta, 44kDa 20121230 -9606 8667 EIF3H - EIF3S3|eIF3-gamma|eIF3-p40 HGNC:3273|MIM:603912|Ensembl:ENSG00000147677|HPRD:04885|Vega:OTTHUMG00000164919 8 8q24.11 eukaryotic translation initiation factor 3, subunit H protein-coding EIF3H eukaryotic translation initiation factor 3, subunit H O eIF-3-gamma|eIF3 p40 subunit|eukaryotic translation initiation factor 3 subunit 3|eukaryotic translation initiation factor 3 subunit H|eukaryotic translation initiation factor 3, subunit 2 (beta, 36kD)|eukaryotic translation initiation factor 3, subunit 3 (gamma, 40kD)|eukaryotic translation initiation factor 3, subunit 3 gamma, 40kDa 20121230 -9606 8668 EIF3I RP4-675E8.1 EIF3S2|PRO2242|TRIP-1|TRIP1|eIF3-beta|eIF3-p36 HGNC:3272|MIM:603911|Ensembl:ENSG00000084623|HPRD:04884|Vega:OTTHUMG00000007364 1 1p34.1 eukaryotic translation initiation factor 3, subunit I protein-coding EIF3I eukaryotic translation initiation factor 3, subunit I O TGF-beta receptor-interacting protein 1|TGFbeta receptor-interacting protein 1|eIF-3-beta|eIF3 p36|eukaryotic translation initiation factor 3 subunit 2|eukaryotic translation initiation factor 3 subunit I|eukaryotic translation initiation factor 3, subunit 2 (beta, 36kD)|eukaryotic translation initiation factor 3, subunit 2 beta, 36kDa|predicted protein of HQ2242 20121230 -9606 8669 EIF3J PRO0391 EIF3S1|eIF3-alpha|eIF3-p35 HGNC:3270|MIM:603910|Ensembl:ENSG00000104131|HPRD:04883|Vega:OTTHUMG00000131158 15 15q21.1 eukaryotic translation initiation factor 3, subunit J protein-coding EIF3J eukaryotic translation initiation factor 3, subunit J O eIF-3-alpha|eIF3 p35|eukaryotic translation initiation factor 3 subunit 1|eukaryotic translation initiation factor 3 subunit J|eukaryotic translation initiation factor 3, subunit 1 (alpha, 35kD)|eukaryotic translation initiation factor 3, subunit 1 alpha, 35kDa 20121230 -9606 8671 SLC4A4 - HNBC1|KNBC|NBC1|NBC2|SLC4A5|hhNMC|pNBC HGNC:11030|MIM:603345|Ensembl:ENSG00000080493|HPRD:04516|Vega:OTTHUMG00000129907 4 4q21 solute carrier family 4, sodium bicarbonate cotransporter, member 4 protein-coding SLC4A4 solute carrier family 4, sodium bicarbonate cotransporter, member 4 O Na(+)/HCO3(-) cotransporter|electrogenic sodium bicarbonate cotransporter 1|kNBC1|sodium bicarbonate cotransporter 1 (sodium bicarbonate cotransporter, kidney; sodium bicarbonate cotransporter, pancreas)|solute carrier family 4, sodium bicarbonate cotransporter, member 4, brain type|solute carrier family 4, sodium bicarbonate cotransporter, member 5 20121230 -9606 8672 EIF4G3 RP11-190H11.1 eIF-4G 3|eIF4G 3|eIF4GII HGNC:3298|MIM:603929|Ensembl:ENSG00000075151|HPRD:06802|Vega:OTTHUMG00000002624 1 1p36.12 eukaryotic translation initiation factor 4 gamma, 3 protein-coding EIF4G3 eukaryotic translation initiation factor 4 gamma, 3 O eIF-4-gamma 3|eIF-4-gamma II|eukaryotic translation initiation factor 4 gamma 3 20121230 -9606 8673 VAMP8 - EDB|VAMP-8 HGNC:12647|MIM:603177|Ensembl:ENSG00000118640|HPRD:04415|Vega:OTTHUMG00000130180 2 2p12-p11.2 vesicle-associated membrane protein 8 protein-coding VAMP8 vesicle-associated membrane protein 8 O vesicle-associated membrane protein 8 (endobrevin) 20121230 -9606 8674 VAMP4 RP4-560B9.3 VAMP-4|VAMP24 HGNC:12645|MIM:606909|Ensembl:ENSG00000117533|HPRD:06070|Vega:OTTHUMG00000034788 1 1q24-q25 vesicle-associated membrane protein 4 protein-coding VAMP4 vesicle-associated membrane protein 4 O - 20121230 -9606 8675 STX16 RP11-261P9.3 SYN16 HGNC:11431|MIM:603666|Ensembl:ENSG00000124222|HPRD:04718|Vega:OTTHUMG00000033084 20 20q13.32 syntaxin 16 protein-coding STX16 syntaxin 16 O syntaxin-16 20121230 -9606 8676 STX11 - FHL4|HLH4|HPLH4 HGNC:11429|MIM:605014|Ensembl:ENSG00000135604|HPRD:09231|Vega:OTTHUMG00000015739 6 6q24.2 syntaxin 11 protein-coding STX11 syntaxin 11 O syntaxin-11 20121230 -9606 8677 STX10 - SYN10|hsyn10 HGNC:11428|MIM:603765|Ensembl:ENSG00000104915|HPRD:04791|Vega:OTTHUMG00000180759 19 19p13.2 syntaxin 10 protein-coding STX10 syntaxin 10 O syntaxin-10 20121230 -9606 8678 BECN1 - ATG6|VPS30|beclin1 HGNC:1034|MIM:604378|Ensembl:ENSG00000126581|HPRD:05087|Vega:OTTHUMG00000180653 17 17q21 beclin 1, autophagy related protein-coding BECN1 beclin 1, autophagy related O ATG6 autophagy related 6 homolog|beclin 1 (coiled-coil, moesin-like BCL2 interacting protein)|beclin 1 (coiled-coil, moesin-like BCL2-interacting protein)|beclin-1|coiled-coil myosin-like BCL2-interacting protein 20121230 -9606 8681 JMJD7-PLA2G4B - HsT16992|cPLA2-beta HGNC:34449|Ensembl:ENSG00000168970|HPRD:07306|Vega:OTTHUMG00000044442 15 15q11.2-q21.3 JMJD7-PLA2G4B readthrough protein-coding JMJD7-PLA2G4B JMJD7-PLA2G4B readthrough O JMJD7-PLA2G4B protein|jumonji domain containing 7-phospholipase A2, group IVB (cytosolic) read-through 20121230 -9606 8682 PEA15 RP11-536C5.8 HMAT1|HUMMAT1H|MAT1|MAT1H|PEA-15|PED HGNC:8822|MIM:603434|Ensembl:ENSG00000162734|HPRD:04579|Vega:OTTHUMG00000031605 1 1q21.1 phosphoprotein enriched in astrocytes 15 protein-coding PEA15 phosphoprotein enriched in astrocytes 15 O 15 kDa phosphoprotein enriched in astrocytes|Phosphoprotein enriched in astrocytes, 15kD|astrocytic phosphoprotein PEA-15|homolog of mouse MAT-1 oncogene|phosphoprotein enriched in diabetes 20121230 -9606 8683 SRSF9 - SFRS9|SRp30c HGNC:10791|MIM:601943|Ensembl:ENSG00000111786|HPRD:09053|Vega:OTTHUMG00000047790 12 12q24.31 serine/arginine-rich splicing factor 9 protein-coding SRSF9 serine/arginine-rich splicing factor 9 O SR splicing factor 9|pre-mRNA-splicing factor SRp30C|splicing factor, arginine/serine-rich 9 20121230 -9606 8685 MARCO - SCARA2 HGNC:6895|MIM:604870|Ensembl:ENSG00000019169|HPRD:05337|Vega:OTTHUMG00000131400 2 2q14.2 macrophage receptor with collagenous structure protein-coding MARCO macrophage receptor with collagenous structure O macrophage receptor MARCO|scavenger receptor class A member 2|scavenger receptor class A, member 2 20121230 -9606 8686 KRT41P - KRTHAP1 HGNC:6457 17 17q12-q21 keratin 41 pseudogene pseudo KRT41P keratin 41 pseudogene O - 20121230 -9606 8687 KRT38 - HA8|KRTHA8|hHa8 HGNC:6456|MIM:604542|Ensembl:ENSG00000171360|HPRD:05176|Vega:OTTHUMG00000133439 17 17q12-q21 keratin 38 protein-coding KRT38 keratin 38 O K38|hair keratin, type I Ha8|keratin, hair, acidic, 8|keratin, type I cuticular Ha8|keratin-38 20121230 -9606 8688 KRT37 - HA7|K37|KRTHA7 HGNC:6455|MIM:604541|Ensembl:ENSG00000108417|HPRD:05175|Vega:OTTHUMG00000133606 17 17q12-q21 keratin 37 protein-coding KRT37 keratin 37 O hair keratin, type I Ha7|keratin, hair, acidic, 7|keratin, type I cuticular Ha7|keratin-37 20121230 -9606 8689 KRT36 - HA6|KRTHA6|hHa6 HGNC:6454|MIM:604540|Ensembl:ENSG00000126337|HPRD:05174|Vega:OTTHUMG00000133431 17 17q12-q21 keratin 36 protein-coding KRT36 keratin 36 O K36|hair keratin, type I Ha6|keratin, hair, acidic, 6|keratin, type I cuticular Ha6|keratin-36 20121230 -9606 8690 JRKL - HHMJG HGNC:6200|MIM:603211|Ensembl:ENSG00000183340|HPRD:04443|Vega:OTTHUMG00000154950 11 11q21 jerky homolog-like (mouse) protein-coding JRKL jerky homolog-like (mouse) O human homolog of mouse jerky gene protein|jerky protein homolog-like 20121230 -9606 8691 IDDM17 - - HGNC:5371|MIM:603266 10 10q25 insulin-dependent diabetes mellitus 17 unknown IDDM17 insulin-dependent diabetes mellitus 17 O - 20120622 -9606 8692 HYAL2 - LUCA2 HGNC:5321|MIM:603551|Ensembl:ENSG00000068001|HPRD:04649|Vega:OTTHUMG00000156876 3 3p21.3 hyaluronoglucosaminidase 2 protein-coding HYAL2 hyaluronoglucosaminidase 2 O PH-20 homolog|PH20 homolog|hyal-2|hyaluronidase 2|hyaluronidase-2|hyaluronoglucosaminidase-2|lung carcinoma protein 2|lysosomal hyaluronidase 20121230 -9606 8693 GALNT4 - GALNAC-T4|GALNACT4 HGNC:4126|MIM:603565|Ensembl:ENSG00000257594|HPRD:09152|Vega:OTTHUMG00000166292 12 12q21.33 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 4 (GalNAc-T4) protein-coding GALNT4 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 4 (GalNAc-T4) O UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 4|polypeptide GalNAc transferase 4|polypeptide N-acetylgalactosaminyltransferase 4|pp-GaNTase 4|protein-UDP acetylgalactosaminyltransferase 4 20121230 -9606 8694 DGAT1 hCG_24006 ARAT|ARGP1|DGAT HGNC:2843|MIM:604900|Ensembl:ENSG00000185000|HPRD:05360|Vega:OTTHUMG00000165135 8 8q24.3 diacylglycerol O-acyltransferase 1 protein-coding DGAT1 diacylglycerol O-acyltransferase 1 O ACAT related gene product 1|ACAT-related gene product 1|acyl coenzyme A:cholesterol acyltransferase related gene 1|acyl-CoA retinol O-fatty-acyltransferase|diacylglycerol O-acyltransferase homolog 1|diglyceride acyltransferase|retinol O-fatty-acyltransferase 20121230 -9606 8697 CDC23 - ANAPC8|APC8|CUT23 HGNC:1724|MIM:603462|Ensembl:ENSG00000094880|HPRD:07221|Vega:OTTHUMG00000129198 5 5q31 cell division cycle 23 homolog (S. cerevisiae) protein-coding CDC23 cell division cycle 23 homolog (S. cerevisiae) O anaphase promoting complex subunit 8|anaphase-promoting complex subunit 8|cell division cycle protein 23 homolog|cyclosome subunit 8 20121230 -9606 8698 S1PR4 - EDG6|LPC1|S1P4|SLP4 HGNC:3170|MIM:603751|Ensembl:ENSG00000125910|HPRD:04779|Vega:OTTHUMG00000180672 19 19p13.3 sphingosine-1-phosphate receptor 4 protein-coding S1PR4 sphingosine-1-phosphate receptor 4 O S1P receptor 4|S1P receptor Edg-6|endothelial differentiation G-protein coupled receptor 6|endothelial differentiation, G protein coupled receptor 6|endothelial differentiation, G-protein-coupled receptor 6|endothelial differentiation, lysophosphatidic acid G-protein-coupled receptor, 6|sphingosine 1-phosphate receptor 4|sphingosine 1-phosphate receptor Edg-6 20121230 -9606 8701 DNAH11 - CILD7|DNAHBL|DNAHC11|DNHBL|DPL11 HGNC:2942|MIM:603339|Ensembl:ENSG00000105877|HPRD:09134 7 7p21 dynein, axonemal, heavy chain 11 protein-coding DNAH11 dynein, axonemal, heavy chain 11 O axonemal beta dynein heavy chain 11|axonemal dynein heavy chain 11|ciliary dynein heavy chain 11|dynein heavy chain 11, axonemal|dynein, axonemal, heavy polypeptide 11|dynein, ciliary, heavy chain 11 20121230 -9606 8702 B4GALT4 UNQ552/PRO1109 B4Gal-T4|beta4Gal-T4 HGNC:927|MIM:604015|Ensembl:ENSG00000121578|HPRD:04930|Vega:OTTHUMG00000159358 3 3q13.3 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 4 protein-coding B4GALT4 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 4 O UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 4|UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase 4|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 4|beta-1,4-GalTase 4|beta-1,4-galactosyltransferase 4|beta-N-acetylglucosaminyl-glycolipid beta-1,4-galactosyltransferase 4 20121230 -9606 8703 B4GALT3 - beta4Gal-T3 HGNC:926|MIM:604014|Ensembl:ENSG00000158850|HPRD:04929|Vega:OTTHUMG00000034348 1 1q21-q23 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 3 protein-coding B4GALT3 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 3 O UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 3|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 3|b4Gal-T3|beta-1,4-GalTase 3|beta-1,4-galactosyltransferase 3|beta-N-acetylglucosaminyl-glycolipid beta-1,4-galactosyltransferase 3 20121230 -9606 8704 B4GALT2 - B4Gal-T2|B4Gal-T3|beta4Gal-T2 HGNC:925|MIM:604013|Ensembl:ENSG00000117411|HPRD:04928|Vega:OTTHUMG00000008296 1 1p34-p33 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 2 protein-coding B4GALT2 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 2 O UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 2|UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase 2|UDP-Gal:betaGlcNAc beta 1,4-galactosyltransferase, polypeptide 2|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 2|beta-1,4-GalTase 2|beta-1,4-galactosyltransferase 2|beta-4-GalT2|beta-N-acetylglucosaminyl-glycolipid beta-1,4-galactosyltransferase 2 20121230 -9606 8705 B3GALT4 DADB-159G18.4 BETA3GALT4|GALT2|GALT4 HGNC:919|MIM:603095|Ensembl:ENSG00000235863|HPRD:04370|Vega:OTTHUMG00000031100 6 6p21.3 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 4 protein-coding B3GALT4 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 4 O UDP-galactose:beta-N-acetyl-galactosamine-beta-1,3-galactosyltransferase|b3Gal-T4|beta-1,3-GalTase 4|beta-1,3-galactosyltransferase 4|beta-3-galactosyltransferase 4|gal-T2|ganglioside galactosyltransferase 20121230 -9606 8706 B3GALNT1 UNQ531/PRO1074 B3GALT3|GLCT3|GLOB|Gb4Cer|P|P1|beta3Gal-T3|galT3 HGNC:918|MIM:603094|Ensembl:ENSG00000169255|HPRD:09119|Vega:OTTHUMG00000159064 3 3q25 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) protein-coding B3GALNT1 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) O P antigen synthase|P blood group globoside|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 3 (Globoside blood group)|UDP-GalNAc:beta-1,3-N-acetylgalactosaminyltransferase 1|UDP-GalNAc:betaGlcNAc beta-1,3-galactosaminyltransferase, polypeptide 1 (Globoside blood group)|UDP-N-acetylgalactosamine:globotriaosylceramide beta-1,3-N-acetylgalactosaminyltransferase|b3Gal-T3|beta-1,3-GalNAc-T1|beta-1,3-GalTase 3|beta-1,3-galactosyltransferase 3|beta-3-Gx-T3|beta3GalT3|brainiac1|galactosylgalactosylglucosylceramide beta-D-acetyl-galactosaminyltransferase|globoside synthase|globotriaosylceramide 3-beta-N-acetylgalactosaminyltransferase 20121230 -9606 8707 B3GALT2 - BETA3GALT2|GLCT2|beta3Gal-T2 HGNC:917|MIM:603018|Ensembl:ENSG00000162630|HPRD:04313|Vega:OTTHUMG00000035687 1 1q31 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 2 protein-coding B3GALT2 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 2 O UDP-galactose:2-acetamido-2-deoxy-D-glucose 3beta-galactosyltransferase 2|beta-1,3-GalTase 2|beta-1,3-galactosyltransferase 2|beta-3-galt2 20121230 -9606 8708 B3GALT1 - beta3Gal-T1 HGNC:916|MIM:603093|Ensembl:ENSG00000172318|HPRD:04369 2 2q24.3 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 1 protein-coding B3GALT1 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 1 O UDP-galactose:beta-N-acetyl-glucosamine-beta-1,3-galactosyltransferase 1|beta-1,3-GalTase 1|beta-1,3-galactosyltransferase 1|beta-3-galt1|beta3GalT1 20121230 -9606 8710 SERPINB7 - MEGSIN|TP55 HGNC:13902|MIM:603357|Ensembl:ENSG00000166396|HPRD:04524|Vega:OTTHUMG00000060591 18 18q21.33 serpin peptidase inhibitor, clade B (ovalbumin), member 7 protein-coding SERPINB7 serpin peptidase inhibitor, clade B (ovalbumin), member 7 O mesangium predominant gene, megsin|serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 7|serpin B7 20121230 -9606 8711 TNK1 - - HGNC:11940|MIM:608076|Ensembl:ENSG00000174292|HPRD:09730|Vega:OTTHUMG00000178174 17 17p13.1 tyrosine kinase, non-receptor, 1 protein-coding TNK1 tyrosine kinase, non-receptor, 1 O CD38 negative kinase 1|non-receptor tyrosine-protein kinase TNK1 20121230 -9606 8712 PAGE1 - AL5|CT16.3|GAGE-9|GAGEB1|PAGE-1 HGNC:4107|MIM:300288|Ensembl:ENSG00000068985|HPRD:02240|Vega:OTTHUMG00000033224 X Xp11.23 P antigen family, member 1 (prostate associated) protein-coding PAGE1 P antigen family, member 1 (prostate associated) O G antigen 9|G antigen family B member 1|G antigen, family B, 1 (prostate associated)|prostate associated gene 1|prostate-associated gene 1 protein 20121230 -9606 8714 ABCC3 - ABC31|EST90757|MLP2|MOAT-D|MRP3|cMOAT2 HGNC:54|MIM:604323|Ensembl:ENSG00000108846|HPRD:06826|Vega:OTTHUMG00000162245 17 17q22 ATP-binding cassette, sub-family C (CFTR/MRP), member 3 protein-coding ABCC3 ATP-binding cassette, sub-family C (CFTR/MRP), member 3 O ATP-binding cassette sub-family C member 3|canalicular multispecific organic anion transporter 2|canicular multispecific organic anion transporter|multi-specific organic anion transporter D|multidrug resistance associated protein|multidrug resistance-associated protein 3 20121230 -9606 8715 NOL4 HRIHFB2255 CT125|NOLP HGNC:7870|MIM:603577|Ensembl:ENSG00000101746|HPRD:04657|Vega:OTTHUMG00000132291 18 18q12 nucleolar protein 4 protein-coding NOL4 nucleolar protein 4 O cancer/testis antigen 125|nucleolar localized protein 20121230 -9606 8717 TRADD - Hs.89862 HGNC:12030|MIM:603500|Ensembl:ENSG00000102871|HPRD:04610|Vega:OTTHUMG00000137519 16 16q22 TNFRSF1A-associated via death domain protein-coding TRADD TNFRSF1A-associated via death domain O TNFR1-associated death domain protein|tumor necrosis factor receptor type 1 associated death domain protein|tumor necrosis factor receptor type 1-associated DEATH domain protein|tumor necrosis factor receptor-1-associated protein 20121230 -9606 8718 TNFRSF25 RP4-650H14.2 APO-3|DDR3|DR3|LARD|TNFRSF12|TR3|TRAMP|WSL-1|WSL-LR HGNC:11910|MIM:603366|Ensembl:ENSG00000215788|HPRD:04532|Vega:OTTHUMG00000000831 1 1p36.2 tumor necrosis factor receptor superfamily, member 25 protein-coding TNFRSF25 tumor necrosis factor receptor superfamily, member 25 O apoptosis inducing receptor|apoptosis-inducing receptor AIR|apoptosis-mediating receptor DR3|apoptosis-mediating receptor TRAMP|death domain receptor 3 soluble form|death receptor beta|lymphocyte-associated receptor of death|protein WSL-1|tumor necrosis factor receptor superfamily member 25|tumor necrosis factor receptor superfamily, member 12 (translocating chain-association membrane protein) 20121230 -9606 8720 MBTPS1 - PCSK8|S1P|SKI-1 HGNC:15456|MIM:603355|Ensembl:ENSG00000140943|HPRD:04522|Vega:OTTHUMG00000137639 16 16q24 membrane-bound transcription factor peptidase, site 1 protein-coding MBTPS1 membrane-bound transcription factor peptidase, site 1 O endopeptidase S1P|membrane-bound transcription factor site-1 protease|site-1 protease|subtilisin/kexin isozyme-1 20121230 -9606 8721 EDF1 RP11-216L13.1 EDF-1|MBF1 HGNC:3164|MIM:605107|Ensembl:ENSG00000107223|HPRD:09235|Vega:OTTHUMG00000020948 9 9q34.3 endothelial differentiation-related factor 1 protein-coding EDF1 endothelial differentiation-related factor 1 O multiprotein bridging factor 1 20121230 -9606 8722 CTSF - CATSF|CLN13 HGNC:2531|MIM:603539|Ensembl:ENSG00000174080|HPRD:04643|Vega:OTTHUMG00000167090 11 11q13 cathepsin F protein-coding CTSF cathepsin F O - 20121230 -9606 8723 SNX4 - ATG24B HGNC:11175|MIM:605931|Ensembl:ENSG00000114520|HPRD:09334|Vega:OTTHUMG00000159575 3 3q21.2 sorting nexin 4 protein-coding SNX4 sorting nexin 4 O sorting nexin-4 20121230 -9606 8724 SNX3 RP3-429G5.4 Grd19|MCOPS8|SDP3 HGNC:11174|MIM:605930|Ensembl:ENSG00000112335|HPRD:09333|Vega:OTTHUMG00000015323 6 6q21 sorting nexin 3 protein-coding SNX3 sorting nexin 3 O sorting nexin 3A|sorting nexin-3 20121230 -9606 8725 URI1 - C19orf2|NNX3|PPP1R19|RMP|URI HGNC:13236|MIM:603494|Ensembl:ENSG00000105176|HPRD:11943|Vega:OTTHUMG00000177923 19 19q12 URI1, prefoldin-like chaperone protein-coding URI1 URI1, prefoldin-like chaperone O RNA polymerase II subunit 5-mediating protein|RPB5-mediating protein|protein phosphatase 1 regulatory subunit 19|protein phosphatase 1, regulatory subunit 19|unconventional prefoldin RPB5 interactor 1 20121230 -9606 8726 EED - HEED|WAIT1 HGNC:3188|MIM:605984|Ensembl:ENSG00000074266|HPRD:09343|Vega:OTTHUMG00000167209 11 11q14.2-q22.3 embryonic ectoderm development protein-coding EED embryonic ectoderm development O WD protein associating with integrin cytoplasmic tails 1|polycomb protein EED 20121230 -9606 8727 CTNNAL1 RP11-115J22.1 CLLP|alpha-CATU HGNC:2512|MIM:604785|Ensembl:ENSG00000119326|HPRD:09210|Vega:OTTHUMG00000020466 9 9q31.2 catenin (cadherin-associated protein), alpha-like 1 protein-coding CTNNAL1 catenin (cadherin-associated protein), alpha-like 1 O ACRP|alpha-catenin-related protein|alpha-catulin|alpha2-catulin|catenin alpha-like protein 1 20121230 -9606 8728 ADAM19 FKSG34 MADDAM|MLTNB HGNC:197|MIM:603640|Ensembl:ENSG00000135074|HPRD:04704|Vega:OTTHUMG00000130242 5 5q33.3 ADAM metallopeptidase domain 19 protein-coding ADAM19 ADAM metallopeptidase domain 19 O ADAM 19|a disintegrin and metalloproteinase domain 19 (meltrin beta)|disintegrin and metalloproteinase domain-containing protein 19|meltrin beta|meltrin-beta|metalloprotease and disintegrin dendritic antigen marker 20121230 -9606 8729 GBF1 - ARF1GEF HGNC:4181|MIM:603698|Ensembl:ENSG00000107862|HPRD:04740|Vega:OTTHUMG00000018955 10 10q24 golgi brefeldin A resistant guanine nucleotide exchange factor 1 protein-coding GBF1 golgi brefeldin A resistant guanine nucleotide exchange factor 1 O BFA-resistant GEF 1|Golgi-specific brefeldin A-resistance guanine nucleotide exchange factor 1 20121230 -9606 8731 RNMT - MET|RG7MT1|hCMT1c HGNC:10075|MIM:603514|Ensembl:ENSG00000101654|HPRD:04622|Vega:OTTHUMG00000131718 18 18p11.21 RNA (guanine-7-) methyltransferase protein-coding RNMT RNA (guanine-7-) methyltransferase O hCMT1|hMet|hcm1p|mRNA (guanine-7-)methyltransferase|mRNA (guanine-N(7)-)-methyltransferase|mRNA cap guanine-N7 methyltransferase|mRNA cap methyltransferase 20121230 -9606 8732 RNGTT RP3-488C13.1 CAP1A|HCE|HCE1|hCAP HGNC:10073|MIM:603512|Ensembl:ENSG00000111880|HPRD:04621|Vega:OTTHUMG00000015190 6 6q16 RNA guanylyltransferase and 5'-phosphatase protein-coding RNGTT RNA guanylyltransferase and 5'-phosphatase O HCAP1|mRNA-capping enzyme 20121230 -9606 8733 GPAA1 - GAA1|hGAA1 HGNC:4446|MIM:603048|Ensembl:ENSG00000197858|HPRD:04334|Vega:OTTHUMG00000165438 8 8q24.3 glycosylphosphatidylinositol anchor attachment 1 protein-coding GPAA1 glycosylphosphatidylinositol anchor attachment 1 O GAA1 protein homolog|GPAA1P anchor attachment protein 1 homolog|GPI anchor attachment protein 1|GPI transamidase subunit|anchor attachment protein 1 (Gaa1p, yeast) homolog|glycophosphatidylinositol anchor attachment 1|glycosylphosphatidylinositol anchor attachment 1 protein|glycosylphosphatidylinositol anchor attachment protein 1 homolog 20121230 -9606 8735 MYH13 - MyHC-eo HGNC:7571|MIM:603487|Ensembl:ENSG00000006788|HPRD:04599|Vega:OTTHUMG00000177987 17 17p13 myosin, heavy chain 13, skeletal muscle protein-coding MYH13 myosin, heavy chain 13, skeletal muscle O extraocular muscle myosin heavy chain|extraocular myosin heavy chain|myosin heavy chain 13|myosin heavy chain, skeletal muscle, extraocular|myosin, heavy polypeptide 13, skeletal muscle|myosin-13 20121230 -9606 8736 MYOM1 - SKELEMIN HGNC:7613|MIM:603508|Ensembl:ENSG00000101605|HPRD:04618|Vega:OTTHUMG00000178209 18 18p11.31 myomesin 1 protein-coding MYOM1 myomesin 1 O 190 kDa connectin-associated protein|190 kDa titin-associated protein|EH-myomesin|myomesin (M-protein) 1 (190kD)|myomesin 1 (skelemin) 185kDa|myomesin 1, 185kDa|myomesin family member 1|myomesin-1 20121230 -9606 8737 RIPK1 - RIP|RIP1 HGNC:10019|MIM:603453|Ensembl:ENSG00000137275|HPRD:04583|Vega:OTTHUMG00000014134 6 6p25.2 receptor (TNFRSF)-interacting serine-threonine kinase 1 protein-coding RIPK1 receptor (TNFRSF)-interacting serine-threonine kinase 1 O RIP-1|cell death protein RIP|receptor interacting protein|receptor-interacting protein 1|receptor-interacting serine/threonine-protein kinase 1|serine/threonine-protein kinase RIP 20121230 -9606 8738 CRADD - MRT34|RAIDD HGNC:2340|MIM:603454|Ensembl:ENSG00000169372|HPRD:04584|Vega:OTTHUMG00000170322 12 12q21.33-q23.1 CASP2 and RIPK1 domain containing adaptor with death domain protein-coding CRADD CASP2 and RIPK1 domain containing adaptor with death domain O RIP-associated ICH1/CED3-homologous protein with death domain|RIP-associated protein with a death domain|caspase and RIP adaptor with death domain|death adaptor molecule RAIDD|death domain-containing protein CRADD 20121230 -9606 8739 HRK - DP5|HARAKIRI HGNC:5185|MIM:603447|Ensembl:ENSG00000135116|HPRD:04581|Vega:OTTHUMG00000169328 12 12q24.22 harakiri, BCL2 interacting protein (contains only BH3 domain) protein-coding HRK harakiri, BCL2 interacting protein (contains only BH3 domain) O BCL2-interacting protein|BH3-interacting domain-containing protein 3|activator of apoptosis Hrk|activator of apoptosis harakiri|death protein 5|neuronal death protein DP5 20121230 -9606 8740 TNFSF14 UNQ391/PRO726 CD258|HVEML|LIGHT|LTg|TR2 HGNC:11930|MIM:604520|Ensembl:ENSG00000125735|HPRD:05157 19 19p13.3 tumor necrosis factor (ligand) superfamily, member 14 protein-coding TNFSF14 tumor necrosis factor (ligand) superfamily, member 14 O delta transmembrane LIGHT|herpes virus entry mediator ligand|herpesvirus entry mediator A|herpesvirus entry mediator ligand|herpesvirus entry mediator-ligand|ligand for herpesvirus entry mediator|tumor necrosis factor ligand superfamily member 14|tumor necrosis factor receptor-like 2|tumor necrosis factor superfamily member LIGHT 20121230 -9606 8741 TNFSF13 UNQ383/PRO715 APRIL|CD256|TALL-2|TALL2|TRDL-1|ZTNF2 HGNC:11928|MIM:604472|Ensembl:ENSG00000161955|Vega:OTTHUMG00000108145 17 17p13.1 tumor necrosis factor (ligand) superfamily, member 13 protein-coding TNFSF13 tumor necrosis factor (ligand) superfamily, member 13 O TNF- and APOL-related leukocyte expressed ligand 2|a proliferation-inducing ligand|tumor necrosis factor ligand superfamily member 13|tumor necrosis factor-like protein ZTNF2|tumor necrosis factor-related death ligand-1 20121230 -9606 8742 TNFSF12 UNQ181/PRO207 APO3L|DR3LG|TWEAK HGNC:11927|MIM:602695|Ensembl:ENSG00000239697|HPRD:04074|Vega:OTTHUMG00000108148 17 17p13 tumor necrosis factor (ligand) superfamily, member 12 protein-coding TNFSF12 tumor necrosis factor (ligand) superfamily, member 12 O APO3 ligand|APO3/DR3 ligand|TNF-related WEAK inducer of apoptosis|tumor necrosis factor ligand superfamily member 12 20121230 -9606 8743 TNFSF10 - APO2L|Apo-2L|CD253|TL2|TRAIL HGNC:11925|MIM:603598|Ensembl:ENSG00000121858|HPRD:04670|Vega:OTTHUMG00000156917 3 3q26 tumor necrosis factor (ligand) superfamily, member 10 protein-coding TNFSF10 tumor necrosis factor (ligand) superfamily, member 10 O Apo-2 ligand|TNF-related apoptosis inducing ligand TRAIL|chemokine tumor necrosis factor ligand superfamily member 10|tumor necrosis factor (ligand) family, member 10|tumor necrosis factor apoptosis-inducing ligand splice variant delta|tumor necrosis factor ligand superfamily member 10 20121230 -9606 8744 TNFSF9 - 4-1BB-L|CD137L HGNC:11939|MIM:606182|Ensembl:ENSG00000125657|HPRD:05861 19 19p13.3 tumor necrosis factor (ligand) superfamily, member 9 protein-coding TNFSF9 tumor necrosis factor (ligand) superfamily, member 9 O 4-1BB ligand|4-1BBL|homolog of mouse 4-1BB-L|receptor 4-1BB ligand|tumor necrosis factor ligand superfamily member 9 20121230 -9606 8745 ADAM23 - MDC3 HGNC:202|MIM:603710|Ensembl:ENSG00000114948|HPRD:04752|Vega:OTTHUMG00000132919 2 2q33 ADAM metallopeptidase domain 23 protein-coding ADAM23 ADAM metallopeptidase domain 23 O MDC-3|disintegrin and metalloproteinase domain-containing protein 23|metalloproteinase-like, disintegrin-like, and cysteine-rich protein 3 20121230 -9606 8747 ADAM21 - ADAM 21|ADAM31 HGNC:200|MIM:603713|HPRD:04755 14 14q24.1 ADAM metallopeptidase domain 21 protein-coding ADAM21 ADAM metallopeptidase domain 21 O ADAM metallopeptidase domain 21, preproprotein|a disintegrin and metalloproteinase domain 21|disintegrin and metalloproteinase domain-containing protein 21 20121230 -9606 8748 ADAM20 - - HGNC:199|MIM:603712|Ensembl:ENSG00000134007|HPRD:04754|Vega:OTTHUMG00000167548 14 14q24.1 ADAM metallopeptidase domain 20 protein-coding ADAM20 ADAM metallopeptidase domain 20 O ADAM 20|a disintegrin and metalloproteinase domain 20|disintegrin and metalloproteinase domain-containing protein 20 20121230 -9606 8749 ADAM18 UNQ858/PRO1867 ADAM27|tMDCIII HGNC:196|Ensembl:ENSG00000168619|HPRD:07469|Vega:OTTHUMG00000164040 8 8p11.22 ADAM metallopeptidase domain 18 protein-coding ADAM18 ADAM metallopeptidase domain 18 O ADAM 18|a disintegrin and metalloproteinase domain 18|disintegrin and metalloproteinase domain-containing protein 18|tMDC III|transmembrane metalloproteinase-like, disintegrin-like, and cysteine-rich protein III 20121230 -9606 8751 ADAM15 RP11-540D14.1 MDC15 HGNC:193|MIM:605548|Ensembl:ENSG00000143537|HPRD:05674|Vega:OTTHUMG00000013898 1 1q21.3 ADAM metallopeptidase domain 15 protein-coding ADAM15 ADAM metallopeptidase domain 15 O MDC-15|a disintegrin and metalloproteinase domain 15 (metargidin)|disintegrin and metalloproteinase domain-containing protein 15|metalloprotease RGD disintegrin protein|metalloproteinase-like, disintegrin-like, and cysteine-rich protein 15 20121230 -9606 8754 ADAM9 - CORD9|MCMP|MDC9|Mltng HGNC:216|MIM:602713|Ensembl:ENSG00000168615|HPRD:04091|Vega:OTTHUMG00000159783 8 8p11.22 ADAM metallopeptidase domain 9 protein-coding ADAM9 ADAM metallopeptidase domain 9 O ADAM metallopeptidase domain 9 (meltrin gamma)|cellular disintegrin-related protein|cone rod dystrophy 9|disintegrin and metalloproteinase domain-containing protein 9|metalloprotease/disintegrin/cysteine-rich protein 9|myeloma cell metalloproteinase 20121230 -9606 8755 ADAM6 - C14orf96|tMDCIV HGNC:213 14 14q32.33 ADAM metallopeptidase domain 6, pseudogene pseudo ADAM6 ADAM metallopeptidase domain 6, pseudogene O - 20121230 -9606 8756 ADAM7 - ADAM 7|ADAM-7|EAPI|GP-83|GP83 HGNC:214|MIM:607310|Ensembl:ENSG00000069206|HPRD:07391|Vega:OTTHUMG00000097859 8 8p21.2 ADAM metallopeptidase domain 7 protein-coding ADAM7 ADAM metallopeptidase domain 7 O a disintegrin and metalloproteinase domain 7|disintegrin and metalloproteinase domain-containing protein 7|epididymal apical protein I|sperm maturation-related glycoprotein GP-83 20121230 -9606 8759 ADAM1A - ADAM1|ADAM1P|FTNAP|Ftna|PH-30a HGNC:187 12 12q24.13 ADAM metallopeptidase domain 1A, pseudogene pseudo ADAM1A ADAM metallopeptidase domain 1A, pseudogene O - 20121230 -9606 8760 CDS2 RP4-680N4.2 - HGNC:1801|MIM:603549|Ensembl:ENSG00000101290|HPRD:09150|Vega:OTTHUMG00000031801 20 20p13 CDP-diacylglycerol synthase (phosphatidate cytidylyltransferase) 2 protein-coding CDS2 CDP-diacylglycerol synthase (phosphatidate cytidylyltransferase) 2 O CDP-DAG synthase 2|CDP-DG synthase 2|CDP-DG synthetase 2|CDP-diacylglycerol synthase 2|CDP-diglyceride diphosphorylase 2|CDP-diglyceride pyrophosphorylase 2|CDP-diglyceride synthase 2|CDP-diglyceride synthetase 2|CDS 2|CTP:phosphatidate cytidylyltransferase 2|phosphatidate cytidylyltransferase 2 20121230 -9606 8761 PABPC4 - APP-1|APP1|PABP4|iPABP HGNC:8557|MIM:603407|Ensembl:ENSG00000090621|HPRD:04557|Vega:OTTHUMG00000009097 1 1p34.2 poly(A) binding protein, cytoplasmic 4 (inducible form) protein-coding PABPC4 poly(A) binding protein, cytoplasmic 4 (inducible form) O PABP-4|activated-platelet protein 1|inducible poly(A)-binding protein|poly(A)-binding protein 4|polyadenylate-binding protein 4 20121230 -9606 8763 CD164 RP11-425D10.9 MGC-24|MUC-24|endolyn HGNC:1632|MIM:603356|Ensembl:ENSG00000135535|HPRD:04523|Vega:OTTHUMG00000015339 6 6q21 CD164 molecule, sialomucin protein-coding CD164 CD164 molecule, sialomucin O CD164 antigen, sialomucin|MGC-24v|multi-glycosylated core protein 24|sialomucin core protein 24 20121230 -9606 8764 TNFRSF14 RP3-395M20.6 ATAR|CD270|HVEA|HVEM|LIGHTR|TR2 HGNC:11912|MIM:602746|Ensembl:ENSG00000157873|HPRD:04122|Vega:OTTHUMG00000000792 1 1p36.32 tumor necrosis factor receptor superfamily, member 14 protein-coding TNFRSF14 tumor necrosis factor receptor superfamily, member 14 O CD40-like protein|herpes virus entry mediator A|herpesvirus entry mediator A|tumor necrosis factor receptor superfamily member 14|tumor necrosis factor receptor superfamily, member 14 (herpesvirus entry mediator)|tumor necrosis factor receptor-like 2|tumor necrosis factor receptor-like gene2 20121230 -9606 8766 RAB11A - YL8 HGNC:9760|MIM:605570|Ensembl:ENSG00000103769|HPRD:05715|Vega:OTTHUMG00000133162 15 15q22.31 RAB11A, member RAS oncogene family protein-coding RAB11A RAB11A, member RAS oncogene family O RAB 11A, member oncogene family|rab-11|ras-related protein Rab-11A 20121230 -9606 8767 RIPK2 WUGSC:H_RG437L15.1 CARD3|CARDIAK|CCK|GIG30|RICK|RIP2 HGNC:10020|MIM:603455|Ensembl:ENSG00000104312|HPRD:04585|Vega:OTTHUMG00000163809 8 8q21 receptor-interacting serine-threonine kinase 2 protein-coding RIPK2 receptor-interacting serine-threonine kinase 2 O CARD-carrying kinase|CARD-containing IL-1 beta ICE-kinase|CARD-containing interleukin-1 beta-converting enzyme (ICE)-associated kinase|RIP-2|growth-inhibiting gene 30|receptor-interacting protein (RIP)-like interacting caspase-like apoptosis regulatory protein (CLARP) kinase|receptor-interacting protein 2|receptor-interacting serine/threonine-protein kinase 2|tyrosine-protein kinase RIPK2 20121230 -9606 8771 TNFRSF6B hCG_2044836 DCR3|DJ583P15.1.1|M68|M68E|TR6 HGNC:11921|MIM:603361|Ensembl:ENSG00000243509|HPRD:04527|Vega:OTTHUMG00000143724 20 20q13.3 tumor necrosis factor receptor superfamily, member 6b, decoy protein-coding TNFRSF6B tumor necrosis factor receptor superfamily, member 6b, decoy O decoy receptor 3|decoy receptor for Fas ligand|tumor necrosis factor receptor superfamily member 6B 20121230 -9606 8772 FADD GIG3 MORT1 HGNC:3573|MIM:602457|Ensembl:ENSG00000168040|HPRD:03909|Vega:OTTHUMG00000167264 11 11q13.3 Fas (TNFRSF6)-associated via death domain protein-coding FADD Fas (TNFRSF6)-associated via death domain O Fas-associating death domain-containing protein|Fas-associating protein with death domain|growth-inhibiting gene 3 protein|mediator of receptor induced toxicity|mediator of receptor-induced toxicity|protein FADD 20121230 -9606 8773 SNAP23 - HsT17016|SNAP-23|SNAP23A|SNAP23B HGNC:11131|MIM:602534|Ensembl:ENSG00000092531|HPRD:03962|Vega:OTTHUMG00000130625 15 15q14 synaptosomal-associated protein, 23kDa protein-coding SNAP23 synaptosomal-associated protein, 23kDa O synaptosomal-associated protein 23|vesicle-membrane fusion protein SNAP-23 20121230 -9606 8774 NAPG - GAMMASNAP HGNC:7642|MIM:603216|Ensembl:ENSG00000134265|HPRD:04448|Vega:OTTHUMG00000179119 18 18p11.22 N-ethylmaleimide-sensitive factor attachment protein, gamma protein-coding NAPG N-ethylmaleimide-sensitive factor attachment protein, gamma O SNAP-gamma|gamma SNAP|gamma-soluble NSF attachment protein|soluble NSF attachment protein 20121230 -9606 8775 NAPA - SNAPA HGNC:7641|MIM:603215|Ensembl:ENSG00000105402|HPRD:04447 19 19q13.33 N-ethylmaleimide-sensitive factor attachment protein, alpha protein-coding NAPA N-ethylmaleimide-sensitive factor attachment protein, alpha O alpha-SNAP|alpha-soluble NSF attachment protein 20121230 -9606 8776 MTMR1 - - HGNC:7449|MIM:300171|Ensembl:ENSG00000063601|HPRD:02163|Vega:OTTHUMG00000024159 X Xq28 myotubularin related protein 1 protein-coding MTMR1 myotubularin related protein 1 O myotubularin-related protein 1 20121230 -9606 8777 MPDZ RP11-382H24.1 MUPP1 HGNC:7208|MIM:603785|Ensembl:ENSG00000107186|HPRD:09155|Vega:OTTHUMG00000021031 9 9p23 multiple PDZ domain protein protein-coding MPDZ multiple PDZ domain protein O multi-PDZ domain protein 1 20121230 -9606 8778 SIGLEC5 - CD170|CD33L2|OB-BP2|OBBP2|SIGLEC-5 HGNC:10874|MIM:604200|Ensembl:ENSG00000105501|HPRD:05011|Vega:OTTHUMG00000165510 19 19q13.3 sialic acid binding Ig-like lectin 5 protein-coding SIGLEC5 sialic acid binding Ig-like lectin 5 O CD33 antigen-like 2|OB-binding protein 2|obesity-binding protein 2|sialic acid-binding Ig-like lectin 5|sialic acid-binding immunoglobulin-like lectin 5 20121230 -9606 8780 RIOK3 - SUDD HGNC:11451|MIM:603579|Ensembl:ENSG00000101782|HPRD:04659|Vega:OTTHUMG00000131813 18 18q11.2 RIO kinase 3 protein-coding RIOK3 RIO kinase 3 O homolog of the Aspergillus nidulans sudD gene product|serine/threonine-protein kinase RIO3|sudD (suppressor of bimD6, Aspergillus nidulans) homolog|sudD homolog|sudD suppressor of Aspergillus nidulans bimD6 homolog|sudD suppressor of bimD6 homolog 20121230 -9606 8781 PSPHP1 - CO9|PSPHL HGNC:9578|MIM:604239 7 7q11.2 phosphoserine phosphatase pseudogene 1 pseudo PSPHP1 phosphoserine phosphatase pseudogene 1 O - 20121230 -9606 8782 MYP3 - - HGNC:7617|MIM:603221 12 12q21-q23 myopia 3 (high grade, autosomal dominant) unknown MYP3 myopia 3 (high grade, autosomal dominant) O - 20120622 -9606 8784 TNFRSF18 RP5-902P8.2 AITR|CD357|GITR|GITR-D HGNC:11914|MIM:603905|Ensembl:ENSG00000186891|HPRD:04879|Vega:OTTHUMG00000001414 1 1p36.3 tumor necrosis factor receptor superfamily, member 18 protein-coding TNFRSF18 tumor necrosis factor receptor superfamily, member 18 O TNF receptor superfamily activation-inducible protein|activation-inducible TNFR family receptor|glucocorticoid-induced TNFR-related protein|tumor necrosis factor receptor superfamily member 18 20121230 -9606 8785 MATN4 - HE6WCR54 HGNC:6910|MIM:603897|Ensembl:ENSG00000124159|HPRD:04873|Vega:OTTHUMG00000033043 20 20q13.1-q13.2 matrilin 4 protein-coding MATN4 matrilin 4 O matrilin-4 20121230 -9606 8786 RGS11 AC004754.2 RS11 HGNC:9993|MIM:603895|Ensembl:ENSG00000076344|HPRD:04872|Vega:OTTHUMG00000064893 16 16p13.3 regulator of G-protein signaling 11 protein-coding RGS11 regulator of G-protein signaling 11 O regulator of G-protein signalling 11 20121230 -9606 8787 RGS9 - PERRS|RGS9L HGNC:10004|MIM:604067|Ensembl:ENSG00000108370|HPRD:04962|Vega:OTTHUMG00000179349 17 17q24 regulator of G-protein signaling 9 protein-coding RGS9 regulator of G-protein signaling 9 O regulator of G-protein signalling 9 20121230 -9606 8788 DLK1 - DLK|Delta1|FA1|PREF1|Pref-1|ZOG|pG2 HGNC:2907|MIM:176290|Ensembl:ENSG00000185559|HPRD:01446|Vega:OTTHUMG00000171600 14 14q32 delta-like 1 homolog (Drosophila) protein-coding DLK1 delta-like 1 homolog (Drosophila) O DLK-1|fetal antigen 1|preadipocyte factor 1|protein delta homolog 1|secredeltin 20121230 -9606 8789 FBP2 - - HGNC:3607|MIM:603027|Ensembl:ENSG00000130957|HPRD:04322|Vega:OTTHUMG00000020269 9 9q22.3 fructose-1,6-bisphosphatase 2 protein-coding FBP2 fructose-1,6-bisphosphatase 2 O D-fructose-1,6-bisphosphate 1-phosphohydrolase 2|FBPase 2|fructose-1,6-bisphosphatase isozyme 2|hexosediphosphatase|muscle fructose-bisphosphatase 20121230 -9606 8790 FPGT - GFPP HGNC:3825|MIM:603609|Ensembl:ENSG00000254685|HPRD:06790|Vega:OTTHUMG00000009571 1 1p31.1 fucose-1-phosphate guanylyltransferase protein-coding FPGT fucose-1-phosphate guanylyltransferase O GDP-L-fucose diphosphorylase|GDP-beta-L-fucose pyrophosphorylase|fucose-1-phosphate guanyltransferase 20121230 -9606 8792 TNFRSF11A - CD265|FEO|LOH18CR1|ODFR|OFE|OPTB7|OSTS|PDB2|RANK|TRANCER HGNC:11908|MIM:603499|Ensembl:ENSG00000141655|HPRD:04609|Vega:OTTHUMG00000132779 18 18q22.1 tumor necrosis factor receptor superfamily, member 11a, NFKB activator protein-coding TNFRSF11A tumor necrosis factor receptor superfamily, member 11a, NFKB activator O loss of heterozygosity, 18, chromosomal region 1|osteoclast differentiation factor receptor|receptor activator of NF-KB|receptor activator of nuclear factor-kappa B|tumor necrosis factor receptor superfamily member 11A 20121230 -9606 8793 TNFRSF10D UNQ251/PRO288 CD264|DCR2|TRAIL-R4|TRAILR4|TRUNDD HGNC:11907|MIM:603614|Ensembl:ENSG00000173530|HPRD:04682|Vega:OTTHUMG00000097845 8 8p21 tumor necrosis factor receptor superfamily, member 10d, decoy with truncated death domain protein-coding TNFRSF10D tumor necrosis factor receptor superfamily, member 10d, decoy with truncated death domain O TNF receptor-related receptor for TRAIL|TNF-related apoptosis-inducing ligand receptor 4|TRAIL receptor 4|TRAIL receptor with a truncated death domain|decoy receptor 2|tumor necrosis factor receptor superfamily member 10D 20121230 -9606 8794 TNFRSF10C UNQ321/PRO366 CD263|DCR1|DCR1-TNFR|LIT|TRAIL-R3|TRAILR3|TRID HGNC:11906|MIM:603613|Ensembl:ENSG00000173535|HPRD:04681|Vega:OTTHUMG00000097844 8 8p22-p21 tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain protein-coding TNFRSF10C tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain O TNF-related apoptosis-inducing ligand receptor 3|antagonist decoy receptor for TRAIL/Apo-2L|cytotoxic TRAIL receptor-3|decoy TRAIL receptor without death domain|decoy receptor 1|lymphocyte inhibitor of TRAIL|tumor necrosis factor receptor superfamily member 10C 20121230 -9606 8795 TNFRSF10B UNQ160/PRO186 CD262|DR5|KILLER|KILLER/DR5|TRAIL-R2|TRAILR2|TRICK2|TRICK2A|TRICK2B|TRICKB|ZTNFR9 HGNC:11905|MIM:603612|Ensembl:ENSG00000120889|HPRD:04680|Vega:OTTHUMG00000097826 8 8p22-p21 tumor necrosis factor receptor superfamily, member 10b protein-coding TNFRSF10B tumor necrosis factor receptor superfamily, member 10b O Fas-like protein|TNF-related apoptosis-inducing ligand receptor 2|apoptosis inducing protein TRICK2A/2B|apoptosis inducing receptor TRAIL-R2|cytotoxic TRAIL receptor-2|death domain containing receptor for TRAIL/Apo-2L|death receptor 5|p53-regulated DNA damage-inducible cell death receptor(killer)|tumor necrosis factor receptor superfamily member 10B|tumor necrosis factor receptor-like protein ZTNFR9 20121230 -9606 8796 SCEL - - HGNC:10573|MIM:604112|Ensembl:ENSG00000136155|HPRD:09161|Vega:OTTHUMG00000017107 13 13q22 sciellin protein-coding SCEL sciellin O - 20121230 -9606 8797 TNFRSF10A - APO2|CD261|DR4|TRAILR-1|TRAILR1 HGNC:11904|MIM:603611|Ensembl:ENSG00000104689|HPRD:04679|Vega:OTTHUMG00000097843 8 8p21 tumor necrosis factor receptor superfamily, member 10a protein-coding TNFRSF10A tumor necrosis factor receptor superfamily, member 10a O TNF-related apoptosis-inducing ligand receptor 1|TRAIL receptor 1|TRAIL-R1|cytotoxic TRAIL receptor|death receptor 4|tumor necrosis factor receptor superfamily member 10A|tumor necrosis factor receptor superfamily member 10a variant 2 20121230 -9606 8798 DYRK4 - - HGNC:3095|MIM:609181|Ensembl:ENSG00000010219|HPRD:10926|Vega:OTTHUMG00000168204 12 12p13.32 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 4 protein-coding DYRK4 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 4 O dual specificity tyrosine-phosphorylation-regulated kinase 4 20121230 -9606 8799 PEX11B - PEX11-BETA|PEX14B HGNC:8853|MIM:603867|Ensembl:ENSG00000131779|HPRD:04844|Vega:OTTHUMG00000013756 1 1q21.1 peroxisomal biogenesis factor 11 beta protein-coding PEX11B peroxisomal biogenesis factor 11 beta O peroxin-11B|peroxisomal biogenesis factor 11B|peroxisomal membrane protein 11B|protein PEX11 homolog beta 20121230 -9606 8800 PEX11A - PEX11-ALPHA|PMP28|hsPEX11p HGNC:8852|MIM:603866|Ensembl:ENSG00000166821|HPRD:04843|Vega:OTTHUMG00000149809 15 15q26.1 peroxisomal biogenesis factor 11 alpha protein-coding PEX11A peroxisomal biogenesis factor 11 alpha O 28 kDa peroxisomal integral membrane protein|peroxin-11A|peroxisomal biogenesis factor 11A|peroxisomal membrane protein 11A|protein PEX11 homolog alpha 20121230 -9606 8801 SUCLG2 - GBETA HGNC:11450|MIM:603922|Ensembl:ENSG00000172340|HPRD:06799|Vega:OTTHUMG00000158740 3 3p14.1 succinate-CoA ligase, GDP-forming, beta subunit protein-coding SUCLG2 succinate-CoA ligase, GDP-forming, beta subunit O GTP-specific succinyl-CoA synthetase beta subunit|GTP-specific succinyl-CoA synthetase subunit beta|SCS-betaG|succinyl-CoA ligase [GDP-forming] subunit beta, mitochondrial|succinyl-CoA ligase, GDP-forming, beta chain, mitochondrial|succinyl-CoA synthetase beta-G chain|succinyl-CoA synthetase, beta-G chain 20121230 -9606 8802 SUCLG1 - GALPHA|MTDPS9|SUCLA1 HGNC:11449|MIM:611224|Ensembl:ENSG00000163541|HPRD:18128|Vega:OTTHUMG00000130023 2 2p11.2 succinate-CoA ligase, alpha subunit protein-coding SUCLG1 succinate-CoA ligase, alpha subunit O SCS-alpha|succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|succinyl-CoA ligase [GDP-forming] subunit alpha, mitochondrial|succinyl-CoA synthetase subunit alpha 20121230 -9606 8803 SUCLA2 RP11-528D24.2 A-BETA|MTDPS5|SCS-betaA HGNC:11448|MIM:603921|Ensembl:ENSG00000136143|HPRD:06798|Vega:OTTHUMG00000016889 13 13q12.2-q13.3 succinate-CoA ligase, ADP-forming, beta subunit protein-coding SUCLA2 succinate-CoA ligase, ADP-forming, beta subunit O ATP-specific succinyl-CoA synthetase subunit beta|ATP-specific succinyl-CoA synthetase, beta subunit|mitochondrial succinyl-CoA ligase [ADP-forming] subunit beta|renal carcinoma antigen NY-REN-39|succinyl-CoA ligase [ADP-forming] subunit beta, mitochondrial|succinyl-CoA synthetase beta-A chain 20121230 -9606 8804 CREG1 UNQ727/PRO1409 CREG HGNC:2351|Ensembl:ENSG00000143162|HPRD:09897|Vega:OTTHUMG00000034682 1 1q24 cellular repressor of E1A-stimulated genes 1 protein-coding CREG1 cellular repressor of E1A-stimulated genes 1 O protein CREG1 20121230 -9606 8805 TRIM24 - PTC6|RNF82|TF1A|TIF1|TIF1A|TIF1ALPHA|hTIF1 HGNC:11812|MIM:603406|Ensembl:ENSG00000122779|HPRD:04556|Vega:OTTHUMG00000155820 7 7q32-q34 tripartite motif containing 24 protein-coding TRIM24 tripartite motif containing 24 O E3 ubiquitin-protein ligase TRIM24|RING finger protein 82|TIF1-alpha|transcription intermediary factor 1-alpha|transcriptional intermediary factor 1|tripartite motif-containing 24 20121230 -9606 8806 SCZD8 - - HGNC:10656|MIM:603206 18 18p schizophrenia disorder 8 unknown SCZD8 schizophrenia disorder 8 O - 20120622 -9606 8807 IL18RAP - ACPL|CD218b|CDw218b|IL18RB HGNC:5989|MIM:604509|Ensembl:ENSG00000115607|HPRD:05147|Vega:OTTHUMG00000130777 2 2q12 interleukin 18 receptor accessory protein protein-coding IL18RAP interleukin 18 receptor accessory protein O CD218 antigen-like family member B|IL-18 receptor accessory protein|IL-18 receptor beta|IL-18R-beta|IL-18RAcP|IL-18Rbeta|IL-1R-7|IL-1R7|IL-1RAcPL|interleukin-1 receptor 7|interleukin-18 receptor accessory protein|interleukin-18 receptor beta 20121230 -9606 8808 IL1RL2 - IL-1Rrp2|IL-36R|IL1R-rp2|IL1RRP2 HGNC:5999|MIM:604512|Ensembl:ENSG00000115598|HPRD:05150|Vega:OTTHUMG00000130776 2 2q12 interleukin 1 receptor-like 2 protein-coding IL1RL2 interleukin 1 receptor-like 2 O IL-1 receptor-related protein 2|interleukin-1 receptor-like 2|interleukin-1 receptor-related protein 2 20121230 -9606 8809 IL18R1 - CD218a|CDw218a|IL-1Rrp|IL18RA|IL1RRP HGNC:5988|MIM:604494|Ensembl:ENSG00000115604|HPRD:05138|Vega:OTTHUMG00000130780 2 2q12 interleukin 18 receptor 1 protein-coding IL18R1 interleukin 18 receptor 1 O CD218 antigen-like family member A|IL-18R-1|IL-18R1|IL1 receptor-related protein|IL1R-rp|cytokine receptor|interleukin-18 receptor 1 20121230 -9606 8811 GALR2 - GALNR2 HGNC:4133|MIM:603691|Ensembl:ENSG00000182687|HPRD:04735|Vega:OTTHUMG00000167479 17 17q25.3 galanin receptor 2 protein-coding GALR2 galanin receptor 2 O GAL2-R|GALR-2|galanin receptor type 2 20121230 -9606 8812 CCNK - CPR4 HGNC:1596|MIM:603544|Ensembl:ENSG00000090061|Vega:OTTHUMG00000171495 14 14q32 cyclin K protein-coding CCNK cyclin K O cyclin-K 20121230 -9606 8813 DPM1 RP5-914P20.2 CDGIE|MPDS HGNC:3005|MIM:603503|Ensembl:ENSG00000000419|HPRD:04613|Vega:OTTHUMG00000032742 20 20q13.13 dolichyl-phosphate mannosyltransferase polypeptide 1, catalytic subunit protein-coding DPM1 dolichyl-phosphate mannosyltransferase polypeptide 1, catalytic subunit O DPM synthase|MPD synthase|dolichol monophosphate mannose synthase|dolichol-phosphate mannose synthase|dolichol-phosphate mannosyltransferase|dolichyl-phosphate beta-D-mannosyltransferase|mannose-P-dolichol synthase 20121230 -9606 8814 CDKL1 - KKIALRE|P42 HGNC:1781|MIM:603441|Ensembl:ENSG00000100490|HPRD:10348|Vega:OTTHUMG00000140290 14 14q21.3 cyclin-dependent kinase-like 1 (CDC2-related kinase) protein-coding CDKL1 cyclin-dependent kinase-like 1 (CDC2-related kinase) O CDC2-related kinase 1|cyclin-dependent kinase-like 1|protein kinase p42 KKIALRE|serine/threonine protein kinase KKIALRE|serine/threonine-protein kinase KKIALRE 20121230 -9606 8815 BANF1 - BAF|BCRP1|D14S1460|NGPS HGNC:17397|MIM:603811|Ensembl:ENSG00000175334|HPRD:04817|Vega:OTTHUMG00000166749 11 11q13.1 barrier to autointegration factor 1 protein-coding BANF1 barrier to autointegration factor 1 O barrier-to-autointegration factor|breakpoint cluster region protein 1 20121230 -9606 8816 DCAF5 - BCRG2|BCRP2|D14S1461E|WDR22 HGNC:20224|MIM:603812|Ensembl:ENSG00000139990|HPRD:16032|Vega:OTTHUMG00000171699 14 14q23-q24.1 DDB1 and CUL4 associated factor 5 protein-coding DCAF5 DDB1 and CUL4 associated factor 5 O Breakpoint cluster region protein, uterine leiomyoma, 2|DDB1- and CUL4-associated factor 5|WD repeat domain 22|WD repeat-containing protein 22|breakpoint cluster region protein 2 20121230 -9606 8817 FGF18 UNQ420/PRO856 FGF-18|ZFGF5 HGNC:3674|MIM:603726|Ensembl:ENSG00000156427|HPRD:04766|Vega:OTTHUMG00000130464 5 5q34 fibroblast growth factor 18 protein-coding FGF18 fibroblast growth factor 18 O - 20121230 -9606 8818 DPM2 RP11-203J24.2 - HGNC:3006|MIM:603564|Ensembl:ENSG00000136908|HPRD:16028|Vega:OTTHUMG00000020725 9 9q34.13 dolichyl-phosphate mannosyltransferase polypeptide 2, regulatory subunit protein-coding DPM2 dolichyl-phosphate mannosyltransferase polypeptide 2, regulatory subunit O dolichol phosphate-mannose biosynthesis regulatory protein|dolichol phosphate-mannose synthase 2 20121230 -9606 8819 SAP30 - - HGNC:10532|MIM:603378|Ensembl:ENSG00000164105|HPRD:04540|Vega:OTTHUMG00000160798 4 4q34.1 Sin3A-associated protein, 30kDa protein-coding SAP30 Sin3A-associated protein, 30kDa O 30 kDa Sin3-associated polypeptide|Sin3 corepressor complex subunit SAP30|Sin3-associated polypeptide, 30kDa|histone deacetylase complex subunit SAP30|sin3-associated polypeptide p30|sin3-associated polypeptide, 30 kDa 20121230 -9606 8820 HESX1 - ANF|CPHD5|RPX HGNC:4877|MIM:601802|Ensembl:ENSG00000163666|HPRD:03482|Vega:OTTHUMG00000158597 3 3p14.3 HESX homeobox 1 protein-coding HESX1 HESX homeobox 1 O Rathke pouch homeobox|hAnf|homeobox expressed in ES cells 1|homeobox protein ANF|homeobox, ES cell expressed 1 20121230 -9606 8821 INPP4B - - HGNC:6075|MIM:607494|Ensembl:ENSG00000109452|HPRD:06322|Vega:OTTHUMG00000161341 4 4q31.21 inositol polyphosphate-4-phosphatase, type II, 105kDa protein-coding INPP4B inositol polyphosphate-4-phosphatase, type II, 105kDa O inositol polyphosphate 4-phosphatase II; 4-phosphatase II|inositol polyphosphate 4-phosphatase type II|type II inositol 3,4-bisphosphate 4-phosphatase|type II inositol-3,4-bisphosphate 4-phosphatase 20121230 -9606 8822 FGF17 UNQ161/PRO187 FGF-13 HGNC:3673|MIM:603725|Ensembl:ENSG00000158815|HPRD:04765|Vega:OTTHUMG00000097051 8 8p21 fibroblast growth factor 17 protein-coding FGF17 fibroblast growth factor 17 O FGF-17 20121230 -9606 8823 FGF16 XX-FW80732C2.1 FGF-16 HGNC:3672|MIM:300827|Ensembl:ENSG00000196468|HPRD:04764|Vega:OTTHUMG00000013133 X Xq13 fibroblast growth factor 16 protein-coding FGF16 fibroblast growth factor 16 O - 20121230 -9606 8824 CES2 - CE-2|CES2A1|PCE-2|iCE HGNC:1864|MIM:605278|Ensembl:ENSG00000172831|HPRD:07062|Vega:OTTHUMG00000137517 16 16q22.1 carboxylesterase 2 protein-coding CES2 carboxylesterase 2 O carboxylesterase 2 (intestine, liver)|cocaine esterase|hCE-2|intestinal carboxylesterase; liver carboxylesterase-2|methylumbelliferyl-acetate deacetylase 2 20121230 -9606 8825 LIN7A - LIN-7A|LIN7|MALS-1|TIP-33|VELI1 HGNC:17787|MIM:603380|Ensembl:ENSG00000111052|HPRD:04542|Vega:OTTHUMG00000170168 12 12q21 lin-7 homolog A (C. elegans) protein-coding LIN7A lin-7 homolog A (C. elegans) O hLin-7|mammalian LIN-7 1|mammalian lin-seven protein 1|protein lin-7 homolog A|tax interaction protein 33|veli-1|vertebrate LIN7 homolog 1|vertebrate lin-7 homolog 1 20121230 -9606 8826 IQGAP1 - HUMORFA01|SAR1|p195 HGNC:6110|MIM:603379|Ensembl:ENSG00000140575|HPRD:04541|Vega:OTTHUMG00000149832 15 15q26.1 IQ motif containing GTPase activating protein 1 protein-coding IQGAP1 IQ motif containing GTPase activating protein 1 O RasGAP-like with IQ motifs|ras GTPase-activating-like protein IQGAP1 20121230 -9606 8828 NRP2 - NP2|NPN2|PRO2714|VEGF165R2 HGNC:8005|MIM:602070|Ensembl:ENSG00000118257|HPRD:03643|Vega:OTTHUMG00000132893 2 2q33.3 neuropilin 2 protein-coding NRP2 neuropilin 2 O neuropilin-2|neuropilin-2a(17)|neuropilin-2a(22)|neuropilin-2b(0)|receptor for VEGF165 and semaphorins class3|vascular endothelial cell growth factor 165 receptor 2 20121230 -9606 8829 NRP1 RP11-342D11.1 BDCA4|CD304|NP1|NRP|VEGF165R HGNC:8004|MIM:602069|Ensembl:ENSG00000099250|HPRD:03642|Vega:OTTHUMG00000019343 10 10p12 neuropilin 1 protein-coding NRP1 neuropilin 1 O neuropilin-1|transmembrane receptor|vascular endothelial cell growth factor 165 receptor 20121230 -9606 8830 PTLAH - FPAH HGNC:9622|MIM:168860 17 17q patella aplasia-hypoplasia unknown PTLAH patella aplasia-hypoplasia O - 20120622 -9606 8831 SYNGAP1 DASS-97D12.6 MRD5|RASA1|RASA5|SYNGAP HGNC:11497|MIM:603384|Ensembl:ENSG00000197283|HPRD:16018|Vega:OTTHUMG00000031096 6 6p21.3 synaptic Ras GTPase activating protein 1 protein-coding SYNGAP1 synaptic Ras GTPase activating protein 1 O neuronal RasGAP|ras GTPase-activating protein SynGAP|synaptic Ras GTPase activating protein 1 homolog|synaptic Ras GTPase activating protein, 135kDa|synaptic Ras GTPase-activating protein 1 20121230 -9606 8832 CD84 - LY9B|SLAMF5|hCD84|mCD84 HGNC:1704|MIM:604513|Ensembl:ENSG00000066294|HPRD:05151|Vega:OTTHUMG00000022788 1 1q24 CD84 molecule protein-coding CD84 CD84 molecule O CD84 antigen (leukocyte antigen)|SLAM family member 5|cell surface antigen MAX.3|hly9-beta|leucocyte differentiation antigen CD84|leukocyte antigen CD84|leukocyte differentiation antigen CD84|signaling lymphocytic activation molecule 5 20121230 -9606 8833 GMPS - - HGNC:4378|MIM:600358|Ensembl:ENSG00000163655|HPRD:10927|Vega:OTTHUMG00000158551 3 3q24 guanine monphosphate synthetase protein-coding GMPS guanine monphosphate synthetase O GMP synthase|GMP synthase [glutamine-hydrolyzing]|GMP synthetase|MLL/GMPS fusion protein|glutamine amidotransferase|guanosine 5'-monophosphate synthase 20121230 -9606 8834 TMEM11 - C17orf35|PM1|PMI HGNC:16823|Ensembl:ENSG00000178307|HPRD:12680|Vega:OTTHUMG00000178971 17 17p11.2 transmembrane protein 11 protein-coding TMEM11 transmembrane protein 11 O putative receptor protein|transmembrane protein 11, mitochondrial 20121230 -9606 8835 SOCS2 - CIS2|Cish2|SOCS-2|SSI-2|SSI2|STATI2 HGNC:19382|MIM:605117|Ensembl:ENSG00000120833|HPRD:05490|Vega:OTTHUMG00000170160 12 12q suppressor of cytokine signaling 2 protein-coding SOCS2 suppressor of cytokine signaling 2 O CIS-2|STAT induced STAT inhibitor-2|STAT-induced STAT inhibitor 2|STAT-induced STAT inhibitor-2|cytokine-inducible SH2 protein 2|suppressor of cytokine signaling-2 20121230 -9606 8836 GGH - GH HGNC:4248|MIM:601509|Ensembl:ENSG00000137563|HPRD:03299|Vega:OTTHUMG00000164365 8 8q12.3 gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase) protein-coding GGH gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase) O gamma-Glu-X carboxypeptidase|gamma-glutamyl hydrolase 20121230 -9606 8837 CFLAR - CASH|CASP8AP1|CLARP|Casper|FLAME|FLAME-1|FLAME1|FLIP|I-FLICE|MRIT|c-FLIP|c-FLIPL|c-FLIPR|c-FLIPS HGNC:1876|MIM:603599|Ensembl:ENSG00000003402|HPRD:04671|Vega:OTTHUMG00000132819 2 2q33-q34 CASP8 and FADD-like apoptosis regulator protein-coding CFLAR CASP8 and FADD-like apoptosis regulator O FADD-like anti-apoptotic molecule|FADD-like antiapoptotic molecule 1|MACH-related inducer of toxicity|caspase homolog|caspase-eight-related protein|caspase-like apoptosis regulatory protein|caspase-related inducer of apoptosis|cellular FLICE-like inhibitory protein|inhibitor of FLICE|usurpin beta 20121230 -9606 8838 WISP3 RP1-142L7.3 CCN6|LIBC|PPAC|PPD HGNC:12771|MIM:603400|Ensembl:ENSG00000112761|HPRD:04550|Vega:OTTHUMG00000015385 6 6q21 WNT1 inducible signaling pathway protein 3 protein-coding WISP3 WNT1 inducible signaling pathway protein 3 O CCN family member 6|WISP-3|WNT1-inducible-signaling pathway protein 3 20121230 -9606 8839 WISP2 RP11-445H22.2 CCN5|CT58|CTGF-L HGNC:12770|MIM:603399|Ensembl:ENSG00000064205|HPRD:16020|Vega:OTTHUMG00000033071 20 20q13.12 WNT1 inducible signaling pathway protein 2 protein-coding WISP2 WNT1 inducible signaling pathway protein 2 O CCN family member 5|WISP-2|WNT1-inducible-signaling pathway protein 2|connective tissue growth factor-like protein|connective tissue growth factor-related protein 58|wnt-1 signaling pathway protein 2 20121230 -9606 8840 WISP1 - CCN4|WISP1c|WISP1i|WISP1tc HGNC:12769|MIM:603398|Ensembl:ENSG00000104415|HPRD:16019|Vega:OTTHUMG00000164440 8 8q24.22 WNT1 inducible signaling pathway protein 1 protein-coding WISP1 WNT1 inducible signaling pathway protein 1 O CCN family member 4|WNT1 induced secreted protein 1|WNT1-inducible-signaling pathway protein 1|Wnt-1 inducible signaling pathway protein 1 20121230 -9606 8841 HDAC3 - HD3|RPD3|RPD3-2 HGNC:4854|MIM:605166|Ensembl:ENSG00000171720|HPRD:08950|Vega:OTTHUMG00000129629 5 5q31 histone deacetylase 3 protein-coding HDAC3 histone deacetylase 3 O SMAP45 20121230 -9606 8842 PROM1 MSTP061 AC133|CD133|CORD12|MCDR2|PROML1|RP41|STGD4 HGNC:9454|MIM:604365|Ensembl:ENSG00000007062|HPRD:05079|Vega:OTTHUMG00000160180 4 4p15.32 prominin 1 protein-coding PROM1 prominin 1 O antigen AC133|hProminin|hematopoietic stem cell antigen|prominin-1|prominin-like protein 1 20121230 -9606 8843 HCAR3 - GPR109B|HCA3|HM74|PUMAG|Puma-g HGNC:16824|MIM:606039|Ensembl:ENSG00000255398|HPRD:06917|Vega:OTTHUMG00000166034 12 12q24.31 hydroxycarboxylic acid receptor 3 protein-coding HCAR3 hydroxycarboxylic acid receptor 3 O G protein-coupled receptor 109B|G-protein coupled receptor 109B|G-protein coupled receptor HM74|G-protein coupled receptor HM74B|GTP-binding protein|hydroxy-carboxylic acid receptor 3|niacin receptor 2|nicotinic acid receptor 2|putative chemokine receptor 20121230 -9606 8844 KSR1 - KSR|RSU2 HGNC:6465|MIM:601132|Ensembl:ENSG00000141068|Vega:OTTHUMG00000132051 17 17q11.2 kinase suppressor of ras 1 protein-coding KSR1 kinase suppressor of ras 1 O kinase suppressor of Ras 1 20121230 -9606 8846 ALKBH1 - ABH|ABH1|ALKBH|alkB|hABH HGNC:17911|MIM:605345|Ensembl:ENSG00000100601|Vega:OTTHUMG00000171542 14 14q24.3 alkB, alkylation repair homolog 1 (E. coli) protein-coding ALKBH1 alkB, alkylation repair homolog 1 (E. coli) O DNA lyase ABH1|DNA oxidative demethylase ALKBH1|alkylated DNA repair protein alkB homolog 1|alkylation repair, alkB homolog|alpha-ketoglutarate-dependent dioxygenase ABH1 20121230 -9606 8847 DLEU2 RP4-534K7.3 1B4|BCMSUN|DLB2|LEU2|LINC00022|MIR15AHG|NCRNA00022|RFP2OS|TRIM13OS HGNC:13748|MIM:605766|HPRD:16151 13 13q14.3 deleted in lymphocytic leukemia 2 (non-protein coding) miscRNA DLEU2 deleted in lymphocytic leukemia 2 (non-protein coding) O - 20121230 -9606 8848 TSC22D1 RP11-269C23.2 Ptg-2|TGFB1I4|TSC22 HGNC:16826|MIM:607715|Ensembl:ENSG00000102804|HPRD:07414|Vega:OTTHUMG00000016838 13 13q14 TSC22 domain family, member 1 protein-coding TSC22D1 TSC22 domain family, member 1 O TGFB-stimulated clone 22 homolog|TGFbeta-stimulated clone 22|TSC22 domain family protein 1|cerebral protein 2|regulatory protein TSC-22|transcriptional regulator TSC-22|transforming growth factor beta-1-induced transcript 4 protein|transforming growth factor beta-stimulated protein TSC-22 20121230 -9606 8850 KAT2B - CAF|P|P/CAF|PCAF HGNC:8638|MIM:602303|Ensembl:ENSG00000114166|HPRD:06780|Vega:OTTHUMG00000130481 3 3p24 K(lysine) acetyltransferase 2B protein-coding KAT2B K(lysine) acetyltransferase 2B O CREBBP-associated factor|histone acetylase PCAF|histone acetyltransferase KAT2B|histone acetyltransferase PCAF|lysine acetyltransferase 2B|p300/CBP-associated factor 20121230 -9606 8851 CDK5R1 - CDK5P35|CDK5R|NCK5A|p23|p25|p35|p35nck5a HGNC:1775|MIM:603460|Ensembl:ENSG00000176749|HPRD:04586|Vega:OTTHUMG00000132814 17 17q11.2 cyclin-dependent kinase 5, regulatory subunit 1 (p35) protein-coding CDK5R1 cyclin-dependent kinase 5, regulatory subunit 1 (p35) O CDK5 activator 1|TPKII regulatory subunit|cyclin-dependent kinase 5 activator 1|cyclin-dependent kinase 5 regulatory subunit 1|neuronal CDK5 activator|regulatory partner for CDK5 kinase|tau protein kinase II 23kDa subunit 20121230 -9606 8852 AKAP4 RP13-377G1__B.1 AKAP 82|AKAP-4|AKAP82|CT99|FSC1|HI|PRKA4|hAKAP82|p82 HGNC:374|MIM:300185|Ensembl:ENSG00000147081|HPRD:02173|Vega:OTTHUMG00000021517 X Xp11.2 A kinase (PRKA) anchor protein 4 protein-coding AKAP4 A kinase (PRKA) anchor protein 4 O A-kinase anchor protein 4|A-kinase anchor protein 82 kDa|cancer/testis antigen 99|major sperm fibrous sheath protein|protein kinase A anchoring protein 4|protein kinase A-anchoring protein 4|testis-specific gene HI 20121230 -9606 8853 ASAP2 - AMAP2|CENTB3|DDEF2|PAG3|PAP|Pap-alpha|SHAG1 HGNC:2721|MIM:603817|Ensembl:ENSG00000151693|HPRD:04820|Vega:OTTHUMG00000117485 2 2p25|2p24 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 protein-coding ASAP2 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 O PYK2 C terminus-associated protein|arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 2|centaurin, beta 3|development and differentiation enhancing factor 2|development and differentiation-enhancing factor 2|paxillin-associated protein with ARF GAP activity 3|pyk2 C-terminus-associated protein 20121230 -9606 8854 ALDH1A2 - RALDH(II)|RALDH2|RALDH2-T HGNC:15472|MIM:603687|Ensembl:ENSG00000128918|HPRD:04733|Vega:OTTHUMG00000132624 15 15q21.3 aldehyde dehydrogenase 1 family, member A2 protein-coding ALDH1A2 aldehyde dehydrogenase 1 family, member A2 O RALDH 2|retinal dehydrogenase 2|retinaldehyde-specific dehydrogenase type 2 20121230 -9606 8856 NR1I2 - BXR|ONR1|PAR|PAR1|PAR2|PARq|PRR|PXR|SAR|SXR HGNC:7968|MIM:603065|Ensembl:ENSG00000144852|HPRD:04346|Vega:OTTHUMG00000159400 3 3q12-q13.3 nuclear receptor subfamily 1, group I, member 2 protein-coding NR1I2 nuclear receptor subfamily 1, group I, member 2 O nuclear receptor subfamily 1 group I member 2|orphan nuclear receptor PAR1|orphan nuclear receptor PXR|pregnane X nuclear receptor variant 2|pregnane X receptor|steroid and xenobiotic receptor 20121230 -9606 8857 FCGBP - FC(GAMMA)BP HGNC:13572|Ensembl:ENSG00000090920|HPRD:10956 19 19q13.1 Fc fragment of IgG binding protein protein-coding FCGBP Fc fragment of IgG binding protein O Human Fc gamma BP|IgG Fc binding protein|IgGFc-binding protein|fcgamma-binding protein antigen|fcgammaBP 20121230 -9606 8858 PROZ - PZ HGNC:9460|MIM:176895|Ensembl:ENSG00000126231|HPRD:07182|Vega:OTTHUMG00000017376 13 13q34 protein Z, vitamin K-dependent plasma glycoprotein protein-coding PROZ protein Z, vitamin K-dependent plasma glycoprotein O vitamin K-dependent protein Z 20121230 -9606 8859 STK19 DADB-112B14.2 D6S60|D6S60E|G11|HLA-RP1|RP1 HGNC:11398|MIM:604977|Ensembl:ENSG00000204344|HPRD:07281|Vega:OTTHUMG00000166424 6 6p21.3 serine/threonine kinase 19 protein-coding STK19 serine/threonine kinase 19 O MHC class III HLA-RP1|nuclear serine/threonine protein kinase|serine/threonine-protein kinase 19 20121230 -9606 8861 LDB1 - CLIM2|NLI HGNC:6532|MIM:603451|Ensembl:ENSG00000198728|HPRD:09144|Vega:OTTHUMG00000018950 10 10q24-q25 LIM domain binding 1 protein-coding LDB1 LIM domain binding 1 O CLIM-2|LDB-1|LIM domain-binding factor CLIM2|LIM domain-binding factor-1|LIM domain-binding protein 1|carboxy terminal LIM domain protein 2|carboxyl-terminal LIM domain-binding protein 2|hLdb1|nuclear LIM interactor 20121230 -9606 8862 APLN UNQ471 APEL|XNPEP2 HGNC:16665|MIM:300297|Ensembl:ENSG00000171388|HPRD:02246 X Xq25 apelin protein-coding APLN apelin O AGTRL1 ligand|APJ endogenous ligand 20121230 -9606 8863 PER3 RP3-467L1.3 GIG13 HGNC:8847|MIM:603427|Ensembl:ENSG00000049246|HPRD:09138|Vega:OTTHUMG00000001216 1 1p36.23 period circadian clock 3 protein-coding PER3 period circadian clock 3 O cell growth-inhibiting gene 13 protein|circadian clock protein PERIOD 3|growth-inhibiting protein 13|hPER3|period 3|period circadian protein 3|period circadian protein homolog 3|period homolog 3 20121230 -9606 8864 PER2 - FASPS HGNC:8846|MIM:603426|Ensembl:ENSG00000132326|HPRD:04575|Vega:OTTHUMG00000152884 2 2q37.3 period circadian clock 2 protein-coding PER2 period circadian clock 2 O circadian clock protein PERIOD 2|hPER2|period 2|period circadian protein 2|period circadian protein homolog 2|period homolog 2 20121230 -9606 8867 SYNJ1 - INPP5G HGNC:11503|MIM:604297|Ensembl:ENSG00000159082|HPRD:09182|Vega:OTTHUMG00000064926 21 21q22.2 synaptojanin 1 protein-coding SYNJ1 synaptojanin 1 O inositol 5'-phosphatase (synaptojanin 1)|synaptic inositol 1,4,5-trisphosphate 5-phosphatase 1|synaptic inositol-1,4,5-trisphosphate 5-phosphatase 1|synaptojanin-1|synaptojanin-1, polyphosphoinositide phosphatase 20121230 -9606 8869 ST3GAL5 UNQ2510/PRO5998 SATI|SIAT9|SIATGM3S|ST3GalV HGNC:10872|MIM:604402|Ensembl:ENSG00000115525|HPRD:05098|Vega:OTTHUMG00000130171 2 2p11.2 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 protein-coding ST3GAL5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 O CMP-NeuAc:lactosylceramide alpha-2,3-sialyltransferase|GM3 synthase|ST3Gal V|alpha 2,3-sialyltransferase V|ganglioside GM3 synthase|lactosylceramide alpha-2,3-sialyltransferase|sialyltransferase 9 (CMP-NeuAc:lactosylceramide alpha-2,3-sialyltransferase; GM3 synthase) 20121230 -9606 8870 IER3 DADB-118P11.5 DIF-2|DIF2|GLY96|IEX-1|IEX-1L|IEX1|PRG1 HGNC:5392|MIM:602996|Ensembl:ENSG00000137331|HPRD:04295|Vega:OTTHUMG00000031265 6 6p21.3 immediate early response 3 protein-coding IER3 immediate early response 3 O PACAP-responsive gene 1 protein|anti-death protein|differentiation-dependent gene 2 protein|expressed in pancreatic carcinoma|gly96, mouse, homolog of|immediate early protein GLY96|immediate early response 3 protein|immediately early gene X-1|protein DIF-2|radiation-inducible immediate-early gene IEX-1 20121230 -9606 8871 SYNJ2 RP11-266C7.2 INPP5H HGNC:11504|MIM:609410|Ensembl:ENSG00000078269|HPRD:10259|Vega:OTTHUMG00000015904 6 6q25.3 synaptojanin 2 protein-coding SYNJ2 synaptojanin 2 O inositol phosphate 5'-phosphatase 2|synaptic inositol 1,4,5-trisphosphate 5-phosphatase 2|synaptic inositol-1,4,5-trisphosphate 5-phosphatase 2|synaptojanin-2 20121230 -9606 8872 CDC123 RP11-186N15.4 C10orf7|D123 HGNC:16827|Ensembl:ENSG00000151465|HPRD:12586|Vega:OTTHUMG00000017680 10 10p13 cell division cycle 123 homolog (S. cerevisiae) protein-coding CDC123 cell division cycle 123 homolog (S. cerevisiae) O HT-1080|PZ32|cell division cycle protein 123 homolog 20121230 -9606 8874 ARHGEF7 RP11-494P5.1 BETA-PIX|COOL-1|COOL1|Nbla10314|P50|P50BP|P85|P85COOL1|P85SPR|PAK3|PIXB HGNC:15607|MIM:605477|Ensembl:ENSG00000102606|HPRD:05688|Vega:OTTHUMG00000017357 13 13q34 Rho guanine nucleotide exchange factor (GEF) 7 protein-coding ARHGEF7 Rho guanine nucleotide exchange factor (GEF) 7 O PAK-interacting exchange factor beta|SH3 domain-containing proline-rich protein|guanine nucleotide exchange factor 7|rho guanine nucleotide exchange factor 7 20121230 -9606 8875 VNN2 - FOAP-4|GPI-80 HGNC:12706|MIM:603571|Ensembl:ENSG00000112303|HPRD:04652|Vega:OTTHUMG00000015588 6 6q23-q24 vanin 2 protein-coding VNN2 vanin 2 O Vannin 2|glycosylphosphatidyl inositol-anchored protein GPI-80|pantetheinase|vanin-2|vascular non-inflammatory molecule 2 20121230 -9606 8876 VNN1 - HDLCQ8|Tiff66 HGNC:12705|MIM:603570|Ensembl:ENSG00000112299|HPRD:04651|Vega:OTTHUMG00000015587 6 6q23-q24 vanin 1 protein-coding VNN1 vanin 1 O pantetheinase|pantetheine hydrolase|vanin-1|vannin 1|vascular non-inflammatory molecule 1 20121230 -9606 8877 SPHK1 - SPHK HGNC:11240|MIM:603730|Ensembl:ENSG00000176170|HPRD:04768|Vega:OTTHUMG00000180177 17 17q25.2 sphingosine kinase 1 protein-coding SPHK1 sphingosine kinase 1 O SK 1|SPK 1 20121230 -9606 8878 SQSTM1 - A170|OSIL|PDB3|ZIP3|p60|p62|p62B HGNC:11280|MIM:601530|Ensembl:ENSG00000161011|HPRD:03319|Vega:OTTHUMG00000150643 5 5q35 sequestosome 1 protein-coding SQSTM1 sequestosome 1 O EBI3-associated protein of 60 kDa|EBI3-associated protein p60|EBIAP|oxidative stress induced like|phosphotyrosine independent ligand for the Lck SH2 domain p62|phosphotyrosine-independent ligand for the Lck SH2 domain of 62 kDa|sequestosome-1|ubiquitin-binding protein p62 20121230 -9606 8879 SGPL1 - S1PL|SPL HGNC:10817|MIM:603729|Ensembl:ENSG00000166224|HPRD:07224|Vega:OTTHUMG00000018421 10 10q21 sphingosine-1-phosphate lyase 1 protein-coding SGPL1 sphingosine-1-phosphate lyase 1 O SP-lyase 1|SPL 1|hSPL|sphingosine-1-phosphate aldolase 20121230 -9606 8880 FUBP1 - FBP|FUBP HGNC:4004|MIM:603444|Ensembl:ENSG00000162613|HPRD:10349|Vega:OTTHUMG00000040799 1 1p31.1 far upstream element (FUSE) binding protein 1 protein-coding FUBP1 far upstream element (FUSE) binding protein 1 O DNA helicase V|FUSE-binding protein 1|far upstream element binding protein|far upstream element-binding protein 1|hDH V 20121230 -9606 8881 CDC16 RP11-569D9.4 ANAPC6|APC6|CUT9 HGNC:1720|MIM:603461|Ensembl:ENSG00000130177|HPRD:04587|Vega:OTTHUMG00000017402 13 13q34 cell division cycle 16 homolog (S. cerevisiae) protein-coding CDC16 cell division cycle 16 homolog (S. cerevisiae) O CDC16Hs|anaphase-promoting complex subunit 6|anaphase-promoting complex, subunit 6|cell division cycle protein 16 homolog|cyclosome subunit 6 20121230 -9606 8882 ZNF259 - ZPR1 HGNC:13051|MIM:603901|Ensembl:ENSG00000109917|HPRD:04877|Vega:OTTHUMG00000046114 11 11q23.3 zinc finger protein 259 protein-coding ZNF259 zinc finger protein 259 O zinc finger protein ZPR1 20121230 -9606 8883 NAE1 HPP1 A-116A10.1|APPBP1|ula-1 HGNC:621|MIM:603385|Ensembl:ENSG00000159593|HPRD:04545|Vega:OTTHUMG00000137513 16 16q22 NEDD8 activating enzyme E1 subunit 1 protein-coding NAE1 NEDD8 activating enzyme E1 subunit 1 O APP-BP1|NEDD8-activating enzyme E1 regulatory subunit|NEDD8-activating enzyme E1 subunit|amyloid beta precursor protein binding protein 1, 59kDa|amyloid beta precursor protein-binding protein 1, 59 kDa|amyloid beta precursor protein-binding protein 1, 59kD|amyloid protein-binding protein 1|proto-oncogene protein 1|protooncogene protein 1 20121230 -9606 8884 SLC5A6 - SMVT HGNC:11041|MIM:604024|Ensembl:ENSG00000138074|HPRD:04934|Vega:OTTHUMG00000097075 2 2p23 solute carrier family 5 (sodium-dependent vitamin transporter), member 6 protein-coding SLC5A6 solute carrier family 5 (sodium-dependent vitamin transporter), member 6 O Na(+)-dependent multivitamin transporter|Na+-dependent multivitamin transporter|sodium-dependent multivitamin transporter|solute carrier family 5 member 6 20121230 -9606 8886 DDX18 - MrDb HGNC:2741|MIM:606355|Ensembl:ENSG00000088205|HPRD:05894|Vega:OTTHUMG00000058521 2 2q14.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 protein-coding DDX18 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 O ATP-dependent RNA helicase DDX18|DEAD box protein 18|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 18 (Myc-regulated)|Myc-regulated DEAD box protein 20121230 -9606 8887 TAX1BP1 PRO0105 CALCOCO3|T6BP|TXBP151 HGNC:11575|MIM:605326|Ensembl:ENSG00000106052|HPRD:05618|Vega:OTTHUMG00000023377 7 7p15 Tax1 (human T-cell leukemia virus type I) binding protein 1 protein-coding TAX1BP1 Tax1 (human T-cell leukemia virus type I) binding protein 1 O TRAF6-binding protein|tax1-binding protein 1 20121230 -9606 8888 MCM3AP - GANP|MAP80|SAC3 HGNC:6946|MIM:603294|Ensembl:ENSG00000160294|HPRD:04483|Vega:OTTHUMG00000090630 21 21q22.3 minichromosome maintenance complex component 3 associated protein protein-coding MCM3AP minichromosome maintenance complex component 3 associated protein O 80 kDa MCM3-associated protein|MCM3 import protein|MCM3 minichromosome maintenance deficient 3 associated protein|germinal center-associated nuclear protein|germinal-centre associated nuclear protein|minichromosome maintenance deficient 3-associated protein 20121230 -9606 8890 EIF2B4 - EIF-2B|EIF2B|EIF2Bdelta HGNC:3260|MIM:606687|Ensembl:ENSG00000115211|HPRD:09459|Vega:OTTHUMG00000151927 2 2p23.3 eukaryotic translation initiation factor 2B, subunit 4 delta, 67kDa protein-coding EIF2B4 eukaryotic translation initiation factor 2B, subunit 4 delta, 67kDa O eIF-2B GDP-GTP exchange factor subunit delta|eukaryotic translation initiation factor 2B subunit 4 delta|translation initiation factor eIF-2B subunit delta|translation initiation factor eIF-2b delta subunit 20121230 -9606 8891 EIF2B3 RP5-882O7.2 EIF-2B|EIF2Bgamma HGNC:3259|MIM:606273|Ensembl:ENSG00000070785|HPRD:09379|Vega:OTTHUMG00000008585 1 1p34.1 eukaryotic translation initiation factor 2B, subunit 3 gamma, 58kDa protein-coding EIF2B3 eukaryotic translation initiation factor 2B, subunit 3 gamma, 58kDa O eIF-2B GDP-GTP exchange factor subunit gamma|translation initiation factor eIF-2B subunit gamma 20121230 -9606 8892 EIF2B2 - EIF-2Bbeta|EIF2B HGNC:3258|MIM:606454|Ensembl:ENSG00000119718|HPRD:05923|Vega:OTTHUMG00000171764 14 14q24.3 eukaryotic translation initiation factor 2B, subunit 2 beta, 39kDa protein-coding EIF2B2 eukaryotic translation initiation factor 2B, subunit 2 beta, 39kDa O S20I15|S20III15|eIF-2B GDP-GTP exchange factor subunit beta|translation initiation factor eIF-2B subunit beta 20121230 -9606 8893 EIF2B5 - CACH|CLE|EIF-2B|EIF2Bepsilon|LVWM HGNC:3261|MIM:603945|Ensembl:ENSG00000145191|HPRD:04898|Vega:OTTHUMG00000156840 3 3q27.1 eukaryotic translation initiation factor 2B, subunit 5 epsilon, 82kDa protein-coding EIF2B5 eukaryotic translation initiation factor 2B, subunit 5 epsilon, 82kDa O eIF-2B GDP-GTP exchange factor subunit epsilon|translation initiation factor eIF-2B subunit epsilon 20121230 -9606 8894 EIF2S2 - EIF2|EIF2B|EIF2beta|PPP1R67|eIF-2-beta HGNC:3266|MIM:603908|Ensembl:ENSG00000125977|HPRD:04882|Vega:OTTHUMG00000032287 20 20q11.2 eukaryotic translation initiation factor 2, subunit 2 beta, 38kDa protein-coding EIF2S2 eukaryotic translation initiation factor 2, subunit 2 beta, 38kDa O eukaryotic translation initiation factor 2 subunit 2|eukaryotic translation initiation factor 2 subunit beta|protein phosphatase 1, regulatory subunit 67 20121230 -9606 8895 CPNE3 - CPN3|PRO1071 HGNC:2316|MIM:604207|Ensembl:ENSG00000085719|HPRD:05016|Vega:OTTHUMG00000163725 8 8q21.3 copine III protein-coding CPNE3 copine III O copine-3 20121230 -9606 8896 BUD31 - Cwc14|EDG-2|EDG2|G10|YCR063W|fSAP17 HGNC:29629|MIM:603477|Ensembl:ENSG00000106245|HPRD:10351|Vega:OTTHUMG00000154602 7 7q22.1 BUD31 homolog (S. cerevisiae) protein-coding BUD31 BUD31 homolog (S. cerevisiae) O G10 maternal transcript homolog|functional spliceosome-associated protein 17|maternal G10 transcript|protein BUD31 homolog|protein EDG-2|protein G10 homolog 20121230 -9606 8897 MTMR3 hCG_2011013 FYVE-DSP1|ZFYVE10 HGNC:7451|MIM:603558|Ensembl:ENSG00000100330|HPRD:09151|Vega:OTTHUMG00000151278 22 22q12.2 myotubularin related protein 3 protein-coding MTMR3 myotubularin related protein 3 O FYVE (Fab1 YGLO23 Vsp27 EEA1 domain) dual-specificity protein phosphatase|FYVE domain-containing dual specificity protein phosphatase 1|myotubularin-related protein 3|zinc finger FYVE domain-containing protein 10|zinc finger, FYVE domain containing 10 20121230 -9606 8898 MTMR2 - CMT4B|CMT4B1 HGNC:7450|MIM:603557|Ensembl:ENSG00000087053|HPRD:04650|Vega:OTTHUMG00000153837 11 11q22 myotubularin related protein 2 protein-coding MTMR2 myotubularin related protein 2 O myotubularin-related protein 2 20121230 -9606 8899 PRPF4B RP5-1013A10.2 PR4H|PRP4|PRP4H|PRP4K|dJ1013A10.1 HGNC:17346|MIM:602338|Ensembl:ENSG00000112739|HPRD:09087|Vega:OTTHUMG00000014157 6 6p25.2 PRP4 pre-mRNA processing factor 4 homolog B (yeast) protein-coding PRPF4B PRP4 pre-mRNA processing factor 4 homolog B (yeast) O PRP4 kinase|PRP4 pre-mRNA-processing factor 4 homolog|dJ1013A10.1 (PRP4 protein kinase homolog)|protein-serine/threonine kinase|serine/threonine-protein kinase PRP4 homolog 20121230 -9606 8900 CCNA1 - - HGNC:1577|MIM:604036|Ensembl:ENSG00000133101|HPRD:04946|Vega:OTTHUMG00000016733 13 13q12.3-q13 cyclin A1 protein-coding CCNA1 cyclin A1 O cyclin-A1 20121230 -9606 8904 CPNE1 RP1-309K20.2 COPN1|CPN1 HGNC:2314|MIM:604205|Ensembl:ENSG00000214078|HPRD:05014|Vega:OTTHUMG00000032356 20 20q11.22 copine I protein-coding CPNE1 copine I O copine-1 20121230 -9606 8905 AP1S2 DC22 MGC:1902|MRX59|MRXS21|MRXSF|SIGMA1B HGNC:560|MIM:300629|Ensembl:ENSG00000182287|HPRD:04636|Vega:OTTHUMG00000021186 X Xp22.2 adaptor-related protein complex 1, sigma 2 subunit protein-coding AP1S2 adaptor-related protein complex 1, sigma 2 subunit O AP-1 complex subunit sigma-2|adapter-related protein complex 1 sigma-1B subunit|adaptor protein complex AP-1 sigma-1B subunit|clathrin adaptor complex AP1 sigma 1B subunit|clathrin assembly protein complex 1 sigma-1B small chain|golgi adaptor HA1/AP1 adaptin sigma 1B subunit|golgi adaptor HA1/AP1 adaptin sigma-1B subunit|sigma 1B subunit of AP-1 clathrin|sigma-adaptin 1B|sigma1B-adaptin 20121230 -9606 8906 AP1G2 - G2AD HGNC:556|MIM:603534|Ensembl:ENSG00000213983|HPRD:04638|Vega:OTTHUMG00000028760 14 14q11.2 adaptor-related protein complex 1, gamma 2 subunit protein-coding AP1G2 adaptor-related protein complex 1, gamma 2 subunit O AP-1 complex subunit gamma-like 2|clathrin-associated/assembly/adaptor protein, large, gamma-2|gamma2-adaptin 20121230 -9606 8907 AP1M1 - AP47|CLAPM2|CLTNM|MU-1A HGNC:13667|MIM:603535|Ensembl:ENSG00000072958|HPRD:04639|Vega:OTTHUMG00000182323 19 19p13.12 adaptor-related protein complex 1, mu 1 subunit protein-coding AP1M1 adaptor-related protein complex 1, mu 1 subunit O AP-1 complex subunit mu-1|AP-mu chain family member mu1A|HA1 47 kDa subunit|adaptor protein complex AP-1 mu-1 subunit|adaptor-related protein complex 1 mu-1 subunit|clathrin adaptor protein AP47|clathrin assembly protein complex 1 medium chain 1|clathrin assembly protein complex 1, medium chain|clathrin assembly protein complex AP1, mu subunit|clathrin coat assembly protein AP47|clathrin coat-associated protein AP47|golgi adaptor AP-1 47 kDa protein|golgi adaptor HA1/AP1 adaptin mu-1 subunit|mu-adaptin 1|mu1A-adaptin 20121230 -9606 8908 GYG2 - GN-2|GN2 HGNC:4700|MIM:300198|Ensembl:ENSG00000056998|HPRD:02185|Vega:OTTHUMG00000021079 X Xp22.3 glycogenin 2 protein-coding GYG2 glycogenin 2 O glycogenin-2 20121230 -9606 8909 ENDOU - P11|PP11|PRSS26 HGNC:14369|MIM:606720|Ensembl:ENSG00000111405|HPRD:12110|Vega:OTTHUMG00000169670 12 12q13.1 endonuclease, polyU-specific protein-coding ENDOU endonuclease, polyU-specific O 22 serine protease|26 serine protease|placental protein 11|poly(U)-specific endoribonuclease|protein endoU|uridylate-specific endoribonuclease 20121230 -9606 8910 SGCE UNQ433/PRO840 DYT11|ESG HGNC:10808|MIM:604149|Ensembl:ENSG00000127990|HPRD:04999|Vega:OTTHUMG00000022828 7 7q21.3 sarcoglycan, epsilon protein-coding SGCE sarcoglycan, epsilon O dystonia 11, myoclonic|epsilon-SG|epsilon-sarcoglycan 20121230 -9606 8911 CACNA1I RP1-172B20.4 Cav3.3|ca(v)3.3 HGNC:1396|MIM:608230|Ensembl:ENSG00000100346|HPRD:10500|Vega:OTTHUMG00000151096 22 22q13.1 calcium channel, voltage-dependent, T type, alpha 1I subunit protein-coding CACNA1I calcium channel, voltage-dependent, T type, alpha 1I subunit O calcium channel, voltage-dependent, alpha 1I subunit|voltage-dependent T-type calcium channel subunit alpha-1I|voltage-gated calcium channel subunit alpha Cav3.3 20121230 -9606 8912 CACNA1H - CACNA1HB|Cav3.2|ECA6|EIG6 HGNC:1395|MIM:607904|Ensembl:ENSG00000196557|HPRD:07442|Vega:OTTHUMG00000172992 16 16p13.3 calcium channel, voltage-dependent, T type, alpha 1H subunit protein-coding CACNA1H calcium channel, voltage-dependent, T type, alpha 1H subunit O calcium channel, voltage-dependent, T type, alpha 1Hb subunit|low-voltage-activated calcium channel alpha1 3.2 subunit|low-voltage-activated calcium channel alpha13.2 subunit|voltage dependent t-type calcium channel alpha-1H subunit|voltage-dependent T-type calcium channel subunit alpha-1H|voltage-gated calcium channel alpha subunit Cav3.2|voltage-gated calcium channel alpha subunit CavT.2|voltage-gated calcium channel subunit alpha Cav3.2 20121230 -9606 8913 CACNA1G - Ca(V)T.1|Cav3.1|NBR13 HGNC:1394|MIM:604065|Ensembl:ENSG00000006283|HPRD:04961|Vega:OTTHUMG00000162180 17 17q22 calcium channel, voltage-dependent, T type, alpha 1G subunit protein-coding CACNA1G calcium channel, voltage-dependent, T type, alpha 1G subunit O cav3.1c|voltage-dependent T-type calcium channel subunit alpha-1G|voltage-dependent calcium channel alpha 1G subunit|voltage-gated calcium channel subunit alpha Cav3.1 20121230 -9606 8914 TIMELESS - TIM|TIM1|hTIM HGNC:11813|MIM:603887|Ensembl:ENSG00000111602|HPRD:04864|Vega:OTTHUMG00000170600 12 12q13.3 timeless circadian clock protein-coding TIMELESS timeless circadian clock O Tof1 homolog|protein timeless homolog|timeless circadian clock 1|timeless homolog 20121230 -9606 8915 BCL10 RP11-234D19.2 CARMEN|CIPER|CLAP|c-E10|mE10 HGNC:989|MIM:603517|Ensembl:ENSG00000142867|HPRD:04625|Vega:OTTHUMG00000009965 1 1p22 B-cell CLL/lymphoma 10 protein-coding BCL10 B-cell CLL/lymphoma 10 O B-cell lymphoma/leukemia 10|CARD containing molecule enhancing NF-kB|CARD-containing apoptotic signaling protein|CARD-containing molecule enhancing NF-kappa-B|CARD-containing proapoptotic protein|CED-3/ICH-1 prodomain homologous E10-like regulator|cCARMEN|caspase-recruiting domain-containing protein|cellular homolog of vCARMEN|cellular-E10|hCLAP|mammalian CARD-containing adapter molecule E10 20121230 -9606 8916 HERC3 - - HGNC:4876|MIM:605200|Ensembl:ENSG00000138641|HPRD:16093|Vega:OTTHUMG00000150436 4 4q21 HECT and RLD domain containing E3 ubiquitin protein ligase 3 protein-coding HERC3 HECT and RLD domain containing E3 ubiquitin protein ligase 3 O HECT domain and RCC1-like domain-containing protein 3|hect domain and RLD 3|probable E3 ubiquitin-protein ligase HERC3 20121230 -9606 8917 HERC2P1 - D15F37S2 HGNC:4869 15 15q13 hect domain and RLD 2 pseudogene 1 pseudo HERC2P1 hect domain and RLD 2 pseudogene 1 O - 20121230 -9606 8918 HERC2P6 - - HGNC:4874 15 15q11.2 hect domain and RLD 2 pseudogene 6 pseudo HERC2P6 hect domain and RLD 2 pseudogene 6 O - 20121230 -9606 8924 HERC2 - D15F37S1|SHEP1|jdf2|p528 HGNC:4868|MIM:605837|Ensembl:ENSG00000128731|HPRD:06905|Vega:OTTHUMG00000129251 15 15q13 HECT and RLD domain containing E3 ubiquitin protein ligase 2 protein-coding HERC2 HECT and RLD domain containing E3 ubiquitin protein ligase 2 O E3 ubiquitin-protein ligase HERC2|hect domain and RCC1-like domain-containing protein 2|hect domain and RLD 2|probable E3 ubiquitin-protein ligase HERC2 20121230 -9606 8925 HERC1 - p532|p619 HGNC:4867|MIM:605109|Ensembl:ENSG00000103657|HPRD:06894|Vega:OTTHUMG00000172433 15 15q22 HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 protein-coding HERC1 HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 O HECT domain and RCC1-like domain-containing protein 1|guanine nucleotide exchange factor p532|hect (homologous to the E6-AP (UBE3A) carboxyl terminus) domain and RCC1 (CHC1)-like domain (RLD) 1|probable E3 ubiquitin-protein ligase HERC1 20121230 -9606 8926 SNURF - - HGNC:11171|Ensembl:ENSG00000214265|HPRD:18083|Vega:OTTHUMG00000129181 15 15q12 SNRPN upstream reading frame protein-coding SNURF SNRPN upstream reading frame O SNRPN upstream reading frame protein 20121230 -9606 8927 BSN - ZNF231 HGNC:1117|MIM:604020|Ensembl:ENSG00000164061|HPRD:04933|Vega:OTTHUMG00000133750 3 3p21.31 bassoon (presynaptic cytomatrix protein) protein-coding BSN bassoon (presynaptic cytomatrix protein) O neuronal double zinc finger protein|protein bassoon|zinc finger protein 231 20121230 -9606 8928 FOXH1 - FAST-1|FAST1 HGNC:3814|MIM:603621|Ensembl:ENSG00000160973|HPRD:04689|Vega:OTTHUMG00000165172 8 8q24.3 forkhead box H1 protein-coding FOXH1 forkhead box H1 O TGF-beta/activin signal transducer|fast-2|forkhead activin signal transducer 2|forkhead activin signal transducer-1|forkhead box protein H1|hFAST-1 20121230 -9606 8929 PHOX2B - NBLST2|NBPhox|PMX2B HGNC:9143|MIM:603851|Ensembl:ENSG00000109132|HPRD:09157|Vega:OTTHUMG00000099379 4 4p12 paired-like homeobox 2b protein-coding PHOX2B paired-like homeobox 2b O PHOX2B homeodomain protein|neuroblastoma Phox|neuroblastoma paired-type homeobox protein|paired mesoderm homeobox 2b|paired mesoderm homeobox protein 2B 20121230 -9606 8930 MBD4 - MED1 HGNC:6919|MIM:603574|Ensembl:ENSG00000129071|HPRD:04654|Vega:OTTHUMG00000159463 3 3q21.3 methyl-CpG binding domain protein 4 protein-coding MBD4 methyl-CpG binding domain protein 4 O 3,N(4)-ethenocytosine glycosylase|G/5-fluorouracil mismatch glycosylase with biphasic kinetics|G/T mismatch glycosylase|G/U mismatch glycosylase|methyl-CpG-binding domain protein 4|methyl-CpG-binding endonuclease 1|methyl-CpG-binding protein MBD4|mismatch-specific DNA N-glycosylase|putative methyl-CpG binding protein 20121230 -9606 8932 MBD2 - DMTase|NY-CO-41 HGNC:6917|MIM:603547|Ensembl:ENSG00000134046|HPRD:04647|Vega:OTTHUMG00000132705 18 18q21 methyl-CpG binding domain protein 2 protein-coding MBD2 methyl-CpG binding domain protein 2 O demethylase|methyl-CpG-binding domain protein 2 20121230 -9606 8933 FAM127A - CXX1|MAR8C|MART8C|Mar8|Mart8 HGNC:2569|MIM:300213|Ensembl:ENSG00000134590|HPRD:02197|Vega:OTTHUMG00000022465 X Xq26 family with sequence similarity 127, member A protein-coding FAM127A family with sequence similarity 127, member A O CAAX box 1|mammalian retrotransposon derived protein 8C|protein FAM127A 20121230 -9606 8934 RAB7L1 - RAB7L HGNC:9789|MIM:603949|Ensembl:ENSG00000117280|HPRD:11962|Vega:OTTHUMG00000035998 1 1q32 RAB7, member RAS oncogene family-like 1 protein-coding RAB7L1 RAB7, member RAS oncogene family-like 1 O rab-7-like protein 1|ras-related protein Rab-7L1 20121230 -9606 8935 SKAP2 - PRAP|RA70|SAPS|SCAP2|SKAP-HOM|SKAP55R HGNC:15687|MIM:605215|Ensembl:ENSG00000005020|HPRD:05558|Vega:OTTHUMG00000023495 7 7p15.2 src kinase associated phosphoprotein 2 protein-coding SKAP2 src kinase associated phosphoprotein 2 O Fyn-associated phosphoprotein SKAP55 homologue|Pyk2/RAFTK-associated protein|SKAP-55HOM|SKAP55 homolog|retinoic acid-induced protein 70|src family associated phosphoprotein 2|src family-associated phosphoprotein 2|src kinase-associated phosphoprotein 2|src kinase-associated phosphoprotein 55-related protein|src kinase-associated phosphoprotein of 55-related protein|src-associated adapter protein with PH and SH3 domains|src-associated adaptor protein 20121230 -9606 8936 WASF1 RP11-181P4.1 SCAR1|WAVE|WAVE1 HGNC:12732|MIM:605035|Ensembl:ENSG00000112290|HPRD:05434|Vega:OTTHUMG00000015357 6 6q21 WAS protein family, member 1 protein-coding WASF1 WAS protein family, member 1 O WASP family protein member 1|homology of dictyostelium scar 1|protein WAVE-1|verprolin homology domain-containing protein 1|wiskott-Aldrich syndrome protein family member 1 20121230 -9606 8938 BAIAP3 AL031709.1 BAP3 HGNC:948|MIM:604009|Ensembl:ENSG00000007516|HPRD:04925|Vega:OTTHUMG00000047833 16 16p13.3 BAI1-associated protein 3 protein-coding BAIAP3 BAI1-associated protein 3 O BAI-associated protein 3 20121230 -9606 8939 FUBP3 RP11-57C19.3 FBP3 HGNC:4005|MIM:603536|Ensembl:ENSG00000107164|Vega:OTTHUMG00000020809 9 9q34.11 far upstream element (FUSE) binding protein 3 protein-coding FUBP3 far upstream element (FUSE) binding protein 3 O FUSE-binding protein 3|far upstream element-binding protein 3 20121230 -9606 8940 TOP3B - - HGNC:11993|MIM:603582|Ensembl:ENSG00000100038|HPRD:04662|Vega:OTTHUMG00000167438 22 22q11.22 topoisomerase (DNA) III beta protein-coding TOP3B topoisomerase (DNA) III beta O DNA topoisomerase 3-beta-1|DNA topoisomerase III beta-1|topoisomerase III beta 20121230 -9606 8941 CDK5R2 - NCK5AI|P39|p39nck5ai HGNC:1776|MIM:603764|Ensembl:ENSG00000171450|HPRD:04790|Vega:OTTHUMG00000133083 2 2q35 cyclin-dependent kinase 5, regulatory subunit 2 (p39) protein-coding CDK5R2 cyclin-dependent kinase 5, regulatory subunit 2 (p39) O CDK5 activator 2|cyclin-dependent kinase 5 activator 2|cyclin-dependent kinase 5 activator isoform p39i|cyclin-dependent kinase 5 regulatory subunit 2|neuronal CDK5 activator isoform|p39I 20121230 -9606 8942 KYNU - - HGNC:6469|MIM:605197|Ensembl:ENSG00000115919|HPRD:08940|Vega:OTTHUMG00000131829 2 2q22.2 kynureninase protein-coding KYNU kynureninase O kynureninase (L-kynurenine hydrolase) 20121230 -9606 8943 AP3D1 PRO0039 ADTD|hBLVR HGNC:568|MIM:607246|Ensembl:ENSG00000065000|HPRD:06260|Vega:OTTHUMG00000180354 19 19p13.3 adaptor-related protein complex 3, delta 1 subunit protein-coding AP3D1 adaptor-related protein complex 3, delta 1 subunit O AP-3 complex delta subunit, partial CDS|AP-3 complex subunit delta|AP-3 complex subunit delta-1|adapter-related protein complex 3 subunit delta-1|adaptin, delta|delta adaptin|delta-adaptin, partial CDS|subunit of putative vesicle coat adaptor complex AP-3 20121230 -9606 8944 SNORD73A - RNU73|RNU73A|U73|U73a HGNC:10235|MIM:603568 4 4q31.3 small nucleolar RNA, C/D box 73A snoRNA SNORD73A small nucleolar RNA, C/D box 73A O - 20121230 -9606 8945 BTRC RP11-529I10.2 BETA-TRCP|FBW1A|FBXW1|FBXW1A|FWD1|bTrCP|bTrCP1|betaTrCP HGNC:1144|MIM:603482|Ensembl:ENSG00000166167|HPRD:04596|Vega:OTTHUMG00000018932 10 10q24.32 beta-transducin repeat containing E3 ubiquitin protein ligase protein-coding BTRC beta-transducin repeat containing E3 ubiquitin protein ligase O E3RSIkappaB|F-box and WD repeats protein beta-TrCP|F-box and WD-repeat protein 1B|F-box/WD repeat-containing protein 1A|beta-TrCP1|epididymis tissue protein Li 2a|pIkappaBalpha-E3 receptor subunit 20121230 -9606 8968 HIST1H3F - H3/i|H3FI HGNC:4773|MIM:602816|Ensembl:ENSG00000256316|HPRD:11910|Vega:OTTHUMG00000014435 6 6p22.2 histone cluster 1, H3f protein-coding HIST1H3F histone cluster 1, H3f O H3 histone family, member I|histone 1, H3f|histone H3.1|histone H3/i 20121230 -9606 8969 HIST1H2AG - H2A.1b|H2A/p|H2AFP|pH2A/f HGNC:4737|Ensembl:ENSG00000196787|HPRD:13654|Vega:OTTHUMG00000014469 6 6p22.1 histone cluster 1, H2ag protein-coding HIST1H2AG histone cluster 1, H2ag O H2A histone family, member P|H2A.1|histone 1, H2ag|histone H2A type 1|histone H2A/p 20121230 -9606 8970 HIST1H2BJ - H2B/r|H2BFR HGNC:4761|Ensembl:ENSG00000124635|HPRD:13657|Vega:OTTHUMG00000014470 6 6p22.1 histone cluster 1, H2bj protein-coding HIST1H2BJ histone cluster 1, H2bj O H2B histone family, member R|histone 1, H2bj|histone H2B type 1-J|histone H2B.1|histone H2B.r 20121230 -9606 8971 H1FX - H1X HGNC:4722|MIM:602785|Ensembl:ENSG00000184897|HPRD:04151|Vega:OTTHUMG00000159450 3 3q21.3 H1 histone family, member X protein-coding H1FX H1 histone family, member X O histone H1x 20121230 -9606 8972 MGAM - MG|MGA HGNC:7043|MIM:154360|Ensembl:ENSG00000257335|HPRD:01104|Vega:OTTHUMG00000158395 7 7q34 maltase-glucoamylase (alpha-glucosidase) protein-coding MGAM maltase-glucoamylase (alpha-glucosidase) O alpha-glucosidase|brush border hydrolase|maltase-glucoamylase, intestinal 20121230 -9606 8973 CHRNA6 - CHNRA6 HGNC:15963|MIM:606888|Ensembl:ENSG00000147434|HPRD:06056|Vega:OTTHUMG00000165275 8 8p11.21 cholinergic receptor, nicotinic, alpha 6 (neuronal) protein-coding CHRNA6 cholinergic receptor, nicotinic, alpha 6 (neuronal) O acetylcholine receptor, nicotinic, alpha 6 (neuronal)|cholinergic receptor, nicotinic, alpha polypeptide 6|neuronal acetylcholine receptor subunit alpha-6 20121230 -9606 8974 P4HA2 UNQ290/PRO330 - HGNC:8547|MIM:600608|Ensembl:ENSG00000072682|HPRD:11862|Vega:OTTHUMG00000059647 5 5q31 prolyl 4-hydroxylase, alpha polypeptide II protein-coding P4HA2 prolyl 4-hydroxylase, alpha polypeptide II O 4-PH alpha 2|4-PH alpha-2|C-P4Halpha(II)|collagen prolyl 4-hydroxylase alpha(II)|procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide II|procollagen-proline,2-oxoglutarate-4-dioxygenase subunit alpha-2|prolyl 4-hydroxylase subunit alpha-2 20121230 -9606 8975 USP13 - ISOT3|IsoT-3 HGNC:12611|MIM:603591|Ensembl:ENSG00000058056|HPRD:04666|Vega:OTTHUMG00000157783 3 3q26.2-q26.3 ubiquitin specific peptidase 13 (isopeptidase T-3) protein-coding USP13 ubiquitin specific peptidase 13 (isopeptidase T-3) O deubiquitinating enzyme 13|isopeptidase T-3|ubiquitin carboxyl-terminal hydrolase 13|ubiquitin specific protease 13 (isopeptidase T-3)|ubiquitin thioesterase 13|ubiquitin thiolesterase 13|ubiquitin-specific-processing protease 13 20121230 -9606 8976 WASL - N-WASP|NWASP HGNC:12735|MIM:605056|Ensembl:ENSG00000106299|HPRD:05448|Vega:OTTHUMG00000157346 7 7q31.3 Wiskott-Aldrich syndrome-like protein-coding WASL Wiskott-Aldrich syndrome-like O Wiskott-Aldrich syndrome gene-like|neural Wiskott-Aldrich syndrome protein 20121230 -9606 8985 PLOD3 - LH3 HGNC:9083|MIM:603066|Ensembl:ENSG00000106397|HPRD:04347|Vega:OTTHUMG00000157111 7 7q22 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 3 protein-coding PLOD3 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 3 O lysine hydroxylase 3|lysyl hydroxlase 3|lysyl hydroxylase 3|procollagen-lysine,2-oxoglutarate 5-dioxygenase 3 20121230 -9606 8986 RPS6KA4 - MSK2|RSK-B HGNC:10433|MIM:603606|Ensembl:ENSG00000162302|HPRD:04677|Vega:OTTHUMG00000046094 11 11q11-q13 ribosomal protein S6 kinase, 90kDa, polypeptide 4 protein-coding RPS6KA4 ribosomal protein S6 kinase, 90kDa, polypeptide 4 O 90 kDa ribosomal protein S6 kinase 4|RSKB|S6K-alpha-4|mitogen- and stress-activated protein kinase 2|nuclear mitogen- and stress-activated protein kinase 2|ribosomal protein S6 kinase alpha 4|ribosomal protein S6 kinase alpha-4|ribosomal protein kinase B 20121230 -9606 8987 STBD1 GENX-3414 GENEX3414 HGNC:24854|MIM:607406|Ensembl:ENSG00000118804|HPRD:08460|Vega:OTTHUMG00000130109 4 4q21.1 starch binding domain 1 protein-coding STBD1 starch binding domain 1 O genethonin 1|starch-binding domain-containing protein 1 20121230 -9606 8988 HSPB3 - DHMN2C|HMN2C|HSPL27 HGNC:5248|MIM:604624|Ensembl:ENSG00000169271|HPRD:06861|Vega:OTTHUMG00000096995 5 5q11.2 heat shock 27kDa protein 3 protein-coding HSPB3 heat shock 27kDa protein 3 O HSP 17|heat shock 17 kDa protein|heat shock protein beta-3|protein 3 20121230 -9606 8989 TRPA1 - ANKTM1 HGNC:497|MIM:604775|Ensembl:ENSG00000104321|HPRD:09208|Vega:OTTHUMG00000164516 8 8q13 transient receptor potential cation channel, subfamily A, member 1 protein-coding TRPA1 transient receptor potential cation channel, subfamily A, member 1 O ankyrin-like with transmembrane domains 1|ankyrin-like with transmembrane domains protein 1|transformation-sensitive protein p120|transient receptor potential cation channel subfamily A member 1 20121230 -9606 8991 SELENBP1 RP11-126K1.7 LPSB|SBP56|SP56|hSBP HGNC:10719|MIM:604188|Ensembl:ENSG00000143416|HPRD:05007|Vega:OTTHUMG00000012498 1 1q21.3 selenium binding protein 1 protein-coding SELENBP1 selenium binding protein 1 O 56 kDa selenium-binding protein|selenium-binding protein 1 20121230 -9606 8992 ATP6V0E1 - ATP6H|ATP6V0E|M9.2|Vma21|Vma21p HGNC:863|MIM:603931|Ensembl:ENSG00000113732|HPRD:04894|Vega:OTTHUMG00000130518 5 5q35.1 ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 protein-coding ATP6V0E1 ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 O H(+)-transporting two-sector ATPase, subunit H|V-ATPase 9.2 kDa membrane accessory protein|V-ATPase H subunit|V-ATPase M9.2 subunit|V-ATPase subunit e 1|V-type proton ATPase subunit e 1|vacuolar ATP synthase subunit H|vacuolar proton pump H subunit|vacuolar proton pump subunit e 1|vacuolar proton-ATPase subunit M9.2 20121230 -9606 8993 PGLYRP1 SBBI68 PGLYRP|PGRP|PGRP-S|PGRPS|TAG7|TNFSF3L HGNC:8904|MIM:604963|Ensembl:ENSG00000008438|HPRD:05393 19 19q13.2-q13.3 peptidoglycan recognition protein 1 protein-coding PGLYRP1 peptidoglycan recognition protein 1 O TNF superfamily, member 3 (LTB)-like (peptidoglycan recognition protein) 20121230 -9606 8994 LIMD1 - - HGNC:6612|MIM:604543|Ensembl:ENSG00000144791|HPRD:05177|Vega:OTTHUMG00000133453 3 3p21.3 LIM domains containing 1 protein-coding LIMD1 LIM domains containing 1 O LIM domain-containing protein 1 20121230 -9606 8995 TNFSF18 RP1-15D23.1 AITRL|GITRL|TL6|hGITRL HGNC:11932|MIM:603898|Ensembl:ENSG00000120337|HPRD:04874|Vega:OTTHUMG00000034835 1 1q23 tumor necrosis factor (ligand) superfamily, member 18 protein-coding TNFSF18 tumor necrosis factor (ligand) superfamily, member 18 O AITR ligand|GITR ligand|activation-inducible TNF-related ligand|glucocorticoid-induced TNF-related ligand|glucocorticoid-induced TNFR-related protein ligand|tumor necrosis factor ligand superfamily member 18 20121230 -9606 8996 NOL3 - ARC|FCM|MYP|NOP|NOP30 HGNC:7869|MIM:605235|Ensembl:ENSG00000140939|HPRD:05572|Vega:OTTHUMG00000173316 16 16q22.1 nucleolar protein 3 (apoptosis repressor with CARD domain) protein-coding NOL3 nucleolar protein 3 (apoptosis repressor with CARD domain) O muscle-enriched cytoplasmic protein|nucleolar protein 3|nucleolar protein of 30 kDa 20121230 -9606 8997 KALRN hCG_2022551 ARHGEF24|CHD5|CHDS5|DUET|DUO|HAPIP|TRAD HGNC:4814|MIM:604605|Ensembl:ENSG00000160145|HPRD:06859|HPRD:12169|Vega:OTTHUMG00000125545 3 3q21.2 kalirin, RhoGEF kinase protein-coding KALRN kalirin, RhoGEF kinase O huntingtin-associated protein interacting protein (duo)|kalirin|serine/threonine kinase with Dbl- and pleckstrin homology domains|serine/threonine-protein kinase with Dbl- and pleckstrin homology domain 20121230 -9606 8999 CDKL2 - KKIAMRE|P56 HGNC:1782|MIM:603442|Ensembl:ENSG00000138769|HPRD:16021|Vega:OTTHUMG00000130103 4 4q21.1 cyclin-dependent kinase-like 2 (CDC2-related kinase) protein-coding CDKL2 cyclin-dependent kinase-like 2 (CDC2-related kinase) O CDC2-related kinase|cyclin-dependent kinase-like 2|p56 KKIAMRE protein kinase|protein kinase p56 KKIAMRE|serine/threonine protein kinase KKIAMRE|serine/threonine-protein kinase KKIAMRE 20121230 -9606 9001 HAP1 - HAP2|HIP5|HLP|hHLP1 HGNC:4812|MIM:600947|Ensembl:ENSG00000173805|HPRD:02972|Vega:OTTHUMG00000133498 17 17q21.2-q21.3 huntingtin-associated protein 1 protein-coding HAP1 huntingtin-associated protein 1 O HAP-1|huntingtin-associated protein 2|neuroan 1 20121230 -9606 9002 F2RL3 - PAR4 HGNC:3540|MIM:602779|Ensembl:ENSG00000127533|HPRD:04148 19 19p12 coagulation factor II (thrombin) receptor-like 3 protein-coding F2RL3 coagulation factor II (thrombin) receptor-like 3 O PAR-4|protease-activated receptor-4|proteinase-activated receptor 4|thrombin receptor-like 3 20121230 -9606 9013 TAF1C - MGC:39976|SL1|TAFI110|TAFI95 HGNC:11534|MIM:604905|Ensembl:ENSG00000103168|HPRD:05364|Vega:OTTHUMG00000176665 16 16q24 TATA box binding protein (TBP)-associated factor, RNA polymerase I, C, 110kDa protein-coding TAF1C TATA box binding protein (TBP)-associated factor, RNA polymerase I, C, 110kDa O RNA polymerase I-specific TBP-associated factor 110 kDa|SL1, 110kD subunit|TATA box-binding protein-associated factor 1C|TATA box-binding protein-associated factor RNA polymerase I subunit C|TBP-associated factor 1C|transcription factor SL1|transcription initiation factor SL1/TIF-IB subunit C 20121230 -9606 9014 TAF1B - MGC:9349|RAF1B|RAFI63|SL1|TAFI63 HGNC:11533|MIM:604904|Ensembl:ENSG00000115750|HPRD:05363|Vega:OTTHUMG00000151673 2 2p25 TATA box binding protein (TBP)-associated factor, RNA polymerase I, B, 63kDa protein-coding TAF1B TATA box binding protein (TBP)-associated factor, RNA polymerase I, B, 63kDa O RNA polymerase I-specific TBP-associated factor 63 kDa|SL1, 63kD subunit|TATA box-binding protein-associated factor 1B|TATA box-binding protein-associated factor RNA polymerase I subunit B|TBP-associated factor 1B|transcription initiation factor SL1/TIF-IB subunit B 20121230 -9606 9015 TAF1A RP11-378J18.2 MGC:17061|RAFI48|SL1|TAFI48 HGNC:11532|MIM:604903|Ensembl:ENSG00000143498|HPRD:05362|Vega:OTTHUMG00000037544 1 1q42 TATA box binding protein (TBP)-associated factor, RNA polymerase I, A, 48kDa protein-coding TAF1A TATA box binding protein (TBP)-associated factor, RNA polymerase I, A, 48kDa O RNA polymerase I-specific TBP-associated factor 48 kDa|SL1, 48kD subunit|TATA box-binding protein-associated factor 1A|TATA box-binding protein-associated factor RNA polymerase I subunit A|TBP-associated factor 1A|transcription factor SL1|transcription initiation factor SL1/TIF-IB subunit A 20121230 -9606 9016 SLC25A14 RP1-20I3.5 BMCP1|UCP5 HGNC:10984|MIM:300242|Ensembl:ENSG00000102078|HPRD:02214|Vega:OTTHUMG00000022394 X Xq24 solute carrier family 25 (mitochondrial carrier, brain), member 14 protein-coding SLC25A14 solute carrier family 25 (mitochondrial carrier, brain), member 14 O brain mitochondrial carrier protein 1|mitochondrial uncoupling protein 5|solute carrier family 25 member 14 20121230 -9606 9019 MPZL1 RP1-313L4.1 MPZL1b|PZR|PZR1b|PZRa|PZRb HGNC:7226|MIM:604376|Ensembl:ENSG00000197965|HPRD:05086|Vega:OTTHUMG00000034571 1 1q24.2 myelin protein zero-like 1 protein-coding MPZL1 myelin protein zero-like 1 O immunoglobulin family transmembrane protein|myelin protein zero-like protein 1|protein zero related|protein zero-related 20121230 -9606 9020 MAP3K14 - FTDCR1B|HS|HSNIK|NIK HGNC:6853|MIM:604655|HPRD:05230 17 17q21 mitogen-activated protein kinase kinase kinase 14 protein-coding MAP3K14 mitogen-activated protein kinase kinase kinase 14 O NF-kappa-beta-inducing kinase|serine/threonine protein-kinase|serine/threonine-protein kinase NIK 20121230 -9606 9021 SOCS3 - ATOD4|CIS3|Cish3|SOCS-3|SSI-3|SSI3 HGNC:19391|MIM:604176|Ensembl:ENSG00000184557|HPRD:05006|Vega:OTTHUMG00000177513 17 17q25.3 suppressor of cytokine signaling 3 protein-coding SOCS3 suppressor of cytokine signaling 3 O CIS-3|STAT-induced STAT inhibitor 3|cytokine-induced SH2 protein 3|cytokine-inducible SH2 protein 3 20121230 -9606 9022 CLIC3 RP11-229P13.3 - HGNC:2064|MIM:606533|Ensembl:ENSG00000169583|HPRD:05941|Vega:OTTHUMG00000020954 9 9q34.3 chloride intracellular channel 3 protein-coding CLIC3 chloride intracellular channel 3 O chloride intracellular channel protein 3 20121230 -9606 9023 CH25H - C25H HGNC:1907|MIM:604551|Ensembl:ENSG00000138135|HPRD:05183|Vega:OTTHUMG00000018705 10 10q23 cholesterol 25-hydroxylase protein-coding CH25H cholesterol 25-hydroxylase O cholesterol 25-monooxygenase|h25OH 20121230 -9606 9024 BRSK2 HUSSY-12 C11orf7|PEN11B|SAD1|STK29 HGNC:11405|MIM:609236|Ensembl:ENSG00000174672|Vega:OTTHUMG00000167089 11 11p15.5 BR serine/threonine kinase 2 protein-coding BRSK2 BR serine/threonine kinase 2 O BR serine/threonine-protein kinase 2|brain-selective kinase 2|brain-specific serine/threonine-protein kinase 2|protein kinase SAD1B|serine/threonine-protein kinase 29|serine/threonine-protein kinase BRSK2|serine/threonine-protein kinase SAD-A 20121230 -9606 9025 RNF8 - hRNF8 HGNC:10071|MIM:611685|Ensembl:ENSG00000112130|HPRD:11521|Vega:OTTHUMG00000014620 6 6p21.3 ring finger protein 8, E3 ubiquitin protein ligase protein-coding RNF8 ring finger protein 8, E3 ubiquitin protein ligase O C3HC4-type zinc finger protein|E3 ubiquitin-protein ligase RNF8|UBC13/UEV-interacting ring finger protein|ring finger protein (C3HC4 type) 8 20121230 -9606 9026 HIP1R - HIP12|HIP3|ILWEQ HGNC:18415|MIM:605613|Ensembl:ENSG00000130787|HPRD:10412|Vega:OTTHUMG00000168765 12 12q24 huntingtin interacting protein 1 related protein-coding HIP1R huntingtin interacting protein 1 related O HIP-12|HIP1-related protein|huntingtin interacting protein 12|huntingtin-interacting protein 1-related protein|huntingtin-interacting protein 12 20121230 -9606 9027 NAT8 - ATase2|CML1|GLA|Hcml1|TSC501|TSC510 HGNC:18069|MIM:606716|Ensembl:ENSG00000144035|HPRD:08413|Vega:OTTHUMG00000129818 2 2p13.2 N-acetyltransferase 8 (GCN5-related, putative) protein-coding NAT8 N-acetyltransferase 8 (GCN5-related, putative) O N-acetyltransferase 8 (camello like)|camello-like protein 1|kidney- and liver-specific gene product|probable N-acetyltransferase 8 20121230 -9606 9028 RHBDL1 LA16c-313D11.5 RHBDL|RRP HGNC:10007|MIM:603264|Ensembl:ENSG00000103269|HPRD:07050|Vega:OTTHUMG00000121141 16 16p13.3 rhomboid, veinlet-like 1 (Drosophila) protein-coding RHBDL1 rhomboid, veinlet-like 1 (Drosophila) O rhomboid, drosophila, homolog of|rhomboid-like protein 1|rhomboid-related protein 1 20121230 -9606 9030 ERDA1 - - HGNC:3442|MIM:603279 17 17q21.3 expanded repeat domain, CAG/CTG 1 other ERDA1 expanded repeat domain, CAG/CTG 1 O - 20080828 -9606 9031 BAZ1B - WBSCR10|WBSCR9|WSTF HGNC:961|MIM:605681|Ensembl:ENSG00000009954|HPRD:10416|Vega:OTTHUMG00000023847 7 7q11.23 bromodomain adjacent to zinc finger domain, 1B protein-coding BAZ1B bromodomain adjacent to zinc finger domain, 1B O hWALp2|transcription factor WSTF|tyrosine-protein kinase BAZ1B|williams syndrome transcription factor|williams-Beuren syndrome chromosomal region 10 protein|williams-Beuren syndrome chromosomal region 9 protein 20121230 -9606 9032 TM4SF5 - - HGNC:11857|MIM:604657|Ensembl:ENSG00000142484|HPRD:06877|Vega:OTTHUMG00000090776 17 17p13.3 transmembrane 4 L six family member 5 protein-coding TM4SF5 transmembrane 4 L six family member 5 O tetraspan transmembrane protein L6H|transmembrane 4 L6 family member 5|transmembrane 4 superfamily member 5 20121230 -9606 9033 PKD2L1 - PCL|PKD2L|PKDL|TRPP3 HGNC:9011|MIM:604532|Ensembl:ENSG00000107593|HPRD:16063|Vega:OTTHUMG00000018910 10 10q24 polycystic kidney disease 2-like 1 protein-coding PKD2L1 polycystic kidney disease 2-like 1 O polycystic kidney disease 2-like 1 protein|polycystin-2 homolog|polycystin-2L1|polycystin-L|polycystin-L1|transient receptor potential cation channel, subfamily P, member 3 20121230 -9606 9034 CCRL2 - CKRX|CRAM|CRAM-A|CRAM-B|HCR HGNC:1612|MIM:608379|Ensembl:ENSG00000121797|HPRD:16327|Vega:OTTHUMG00000156318 3 3p21 chemokine (C-C motif) receptor-like 2 protein-coding CCRL2 chemokine (C-C motif) receptor-like 2 O C-C chemokine receptor-like 2|chemokine receptor CCR11|chemokine receptor X|putative MCP-1 chemokine receptor 20121230 -9606 9037 SEMA5A - SEMAF|semF HGNC:10736|MIM:609297|Ensembl:ENSG00000112902|HPRD:10219|Vega:OTTHUMG00000090501 5 5p15.2 sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5A protein-coding SEMA5A sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5A O sema F|semaphorin F|semaphorin-5A|semaphorin-F 20121230 -9606 9038 TAAR5 - PNR|RP11-295F4.5 HGNC:30236|MIM:607405|Ensembl:ENSG00000135569|HPRD:08459|Vega:OTTHUMG00000015581 6 6q23 trace amine associated receptor 5 protein-coding TAAR5 trace amine associated receptor 5 O putative neurotransmitter receptor|taR-5|trace amine receptor 5|trace amine-associated receptor 5 20121230 -9606 9039 UBA3 - UBE1C|hUBA3 HGNC:12470|MIM:603172|Ensembl:ENSG00000144744|HPRD:04413|Vega:OTTHUMG00000154325 3 3p24.3-p13 ubiquitin-like modifier activating enzyme 3 protein-coding UBA3 ubiquitin-like modifier activating enzyme 3 O NEDD8-activating enzyme E1 catalytic subunit|NEDD8-activating enzyme E1C|Nedd8-activating enzyme hUba3|UBA3, ubiquitin-activating enzyme E1 homolog|ubiquitin-activating enzyme 3|ubiquitin-activating enzyme E1C (UBA3 homolog, yeast)|ubiquitin-activating enzyme E1C (homologous to yeast UBA3)|ubiquitin-like modifier-activating enzyme 3 20121230 -9606 9040 UBE2M - UBC-RS2|UBC12|hUbc12 HGNC:12491|MIM:603173|Ensembl:ENSG00000130725|HPRD:04414 19 19q13.43 ubiquitin-conjugating enzyme E2M protein-coding UBE2M ubiquitin-conjugating enzyme E2M O NEDD8 carrier protein|NEDD8 protein ligase|NEDD8-conjugating enzyme Ubc12|ubiquitin carrier protein M|ubiquitin-conjugating enzyme E2M (UBC12 homolog, yeast)|ubiquitin-protein ligase M|yeast UBC12 homolog 20121230 -9606 9043 SPAG9 HLC6 CT89|HLC-6|HLC4|JIP-4|JIP4|JLP|PHET|PIG6 HGNC:14524|MIM:605430|Ensembl:ENSG00000008294|HPRD:10398|Vega:OTTHUMG00000162316 17 17q21.33 sperm associated antigen 9 protein-coding SPAG9 sperm associated antigen 9 O C-Jun-amino-terminal kinase-interacting protein 4|JNK interacting protein|JNK/SAPK-associated protein|Max-binding protein|c-Jun NH2-terminal kinase-associated leucine zipper protein|cancer/testis antigen 89|human lung cancer oncogene 6 protein|lung cancer oncogene 4|mitogen-activated protein kinase 8-interacting protein 4|proliferation-inducing gene 6|protein highly expressed in testis|sperm surface protein|sunday driver 1 20121230 -9606 9044 BTAF1 - MOT1|TAF(II)170|TAF172|TAFII170 HGNC:17307|MIM:605191|Ensembl:ENSG00000095564|HPRD:05546|Vega:OTTHUMG00000018752 10 10q22-q23 BTAF1 RNA polymerase II, B-TFIID transcription factor-associated, 170kDa (Mot1 homolog, S. cerevisiae) protein-coding BTAF1 BTAF1 RNA polymerase II, B-TFIID transcription factor-associated, 170kDa (Mot1 homolog, S. cerevisiae) O ATP-dependent helicase BTAF1|B-TFIID transcription factor-associated 170 kDa subunit|TATA-binding protein-associated factor 172|TBP-associated factor 172 20121230 -9606 9045 RPL14 - CAG-ISL-7|CTG-B33|L14|RL14|hRL14 HGNC:10305|Ensembl:ENSG00000188846|HPRD:10617|Vega:OTTHUMG00000156046 3 3p22-p21.2 ribosomal protein L14 protein-coding RPL14 ribosomal protein L14 O 60S ribosomal protein L14 20121230 -9606 9046 DOK2 - p56DOK|p56dok-2 HGNC:2991|MIM:604997|Ensembl:ENSG00000147443|HPRD:05411|Vega:OTTHUMG00000131075 8 8p21.3 docking protein 2, 56kDa protein-coding DOK2 docking protein 2, 56kDa O docking protein 2|downstream of tyrosine kinase 2|p56(dok-2) 20121230 -9606 9047 SH2D2A RP11-66D17.12-002 F2771|SCAP|TSAD|VRAP HGNC:10821|MIM:604514|Ensembl:ENSG00000027869|HPRD:05152|Vega:OTTHUMG00000041305 1 1q21 SH2 domain containing 2A protein-coding SH2D2A SH2 domain containing 2A O SH2 domain protein 2A|SH2 domain-containing protein 2A|T cell specific adapter protein TSAd|T lymphocyte specific adaptor protein|VEGF receptor-associated protein 20121230 -9606 9048 ARTN - ENOVIN|EVN|NBN HGNC:727|MIM:603886|Ensembl:ENSG00000117407|HPRD:04863|Vega:OTTHUMG00000007705 1 1p33-p32 artemin protein-coding ARTN artemin O neublastin|neurotrophic factor 20121230 -9606 9049 AIP - ARA9|FKBP16|FKBP37|SMTPHN|XAP-2|XAP2 HGNC:358|MIM:605555|Ensembl:ENSG00000110711|HPRD:10408|Vega:OTTHUMG00000167674 11 11q13.3 aryl hydrocarbon receptor interacting protein protein-coding AIP aryl hydrocarbon receptor interacting protein O AH receptor-interacting protein|HBV X-associated protein 2|immunophilin homolog ARA9 20121230 -9606 9050 PSTPIP2 - MAYP HGNC:9581|Ensembl:ENSG00000152229|HPRD:06687|Vega:OTTHUMG00000152674 18 18q12 proline-serine-threonine phosphatase interacting protein 2 protein-coding PSTPIP2 proline-serine-threonine phosphatase interacting protein 2 O PEST phosphatase-interacting protein 2|proline-serine-threonine phosphatase-interacting protein 2 20121230 -9606 9051 PSTPIP1 - CD2BP1|CD2BP1L|CD2BP1S|H-PIP|PAPAS|PSTPIP HGNC:9580|MIM:606347|Ensembl:ENSG00000140368|HPRD:05891|Vega:OTTHUMG00000172594 15 15q24-q25.1 proline-serine-threonine phosphatase interacting protein 1 protein-coding PSTPIP1 proline-serine-threonine phosphatase interacting protein 1 O CD2 antigen-binding protein 1|CD2 cytoplasmic tail-binding protein|CD2-binding protein 1|PEST phosphatase-interacting protein 1|proline-serine-threonine phosphatase-interacting protein 1 20121230 -9606 9052 GPRC5A - GPCR5A|RAI3|RAIG1 HGNC:9836|MIM:604138|Ensembl:ENSG00000013588|HPRD:16037|Vega:OTTHUMG00000168710 12 12p13-p12.3 G protein-coupled receptor, family C, group 5, member A protein-coding GPRC5A G protein-coupled receptor, family C, group 5, member A O G-protein coupled receptor family C group 5 member A|RAIG-1|orphan G-protein-coupling receptor PEIG-1|retinoic acid induced 3|retinoic acid responsive|retinoic acid-induced gene 1 protein|retinoic acid-induced protein 3 20121230 -9606 9053 MAP7 - E-MAP-115|EMAP115 HGNC:6869|MIM:604108|Ensembl:ENSG00000135525|HPRD:04982|Vega:OTTHUMG00000015646 6 6q23.3 microtubule-associated protein 7 protein-coding MAP7 microtubule-associated protein 7 O MAP-7|dJ325F22.2 (microtubule-associated protein 7 (EMAP115, E-MAP-115))|ensconsin|epithelial microtubule-associated protein of 115 kDa 20121230 -9606 9054 NFS1 HUSSY-08 IscS|NIFS HGNC:15910|MIM:603485|Ensembl:ENSG00000244005|HPRD:04597|Vega:OTTHUMG00000032361 20 20q11.22 NFS1 nitrogen fixation 1 homolog (S. cerevisiae) protein-coding NFS1 NFS1 nitrogen fixation 1 homolog (S. cerevisiae) O cysteine desulfurase, mitochondrial|nitrogen fixation 1 (S. cerevisiae, homolog)|nitrogen-fixing bacteria S-like protein 20121230 -9606 9055 PRC1 - ASE1 HGNC:9341|MIM:603484|Ensembl:ENSG00000198901|HPRD:17899|Vega:OTTHUMG00000171685 15 15q26.1 protein regulator of cytokinesis 1 protein-coding PRC1 protein regulator of cytokinesis 1 O anaphase spindle elongation 1 homolog|protein regulating cytokinesis 1 20121230 -9606 9056 SLC7A7 - LAT3|LPI|MOP-2|Y+LAT1|y+LAT-1 HGNC:11065|MIM:603593|Ensembl:ENSG00000155465|HPRD:04667|Vega:OTTHUMG00000028692 14 14q11.2 solute carrier family 7 (amino acid transporter light chain, y+L system), member 7 protein-coding SLC7A7 solute carrier family 7 (amino acid transporter light chain, y+L system), member 7 O Y+L amino acid transporter 1|monocyte amino acid permease 2|solute carrier family 7 (cationic amino acid transporter, y+ system), member 7|y(+)L-type amino acid transporter 1 20121230 -9606 9057 SLC7A6 - LAT-2|LAT3|y+LAT-2 HGNC:11064|MIM:605641|Ensembl:ENSG00000103064|HPRD:12031|Vega:OTTHUMG00000176544 16 16q22.1 solute carrier family 7 (amino acid transporter light chain, y+L system), member 6 protein-coding SLC7A6 solute carrier family 7 (amino acid transporter light chain, y+L system), member 6 O Y+L amino acid transporter 2|amino acid permease|cationic amino acid transporter, y+ system|solute carrier family 7 (cationic amino acid transporter, y+ system), member 6|solute carrier family 7 member 6|y(+)L-type amino acid transporter 2|y+LAT2 20121230 -9606 9058 SLC13A2 - NADC1|NaCT|NaDC-1|SDCT1 HGNC:10917|MIM:604148|Ensembl:ENSG00000007216|HPRD:09164|Vega:OTTHUMG00000132523 17 17p13.2 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 2 protein-coding SLC13A2 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 2 O Na(+)-coupled citrate transporter|Na(+)/dicarboxylate cotransporter 1|renal sodium/dicarboxylate cotransporter|solute carrier family 13 member 2 20121230 -9606 9060 PAPSS2 RP11-77F13.2 ATPSK2|SK2 HGNC:8604|MIM:603005|Ensembl:ENSG00000198682|HPRD:04303|Vega:OTTHUMG00000018683 10 10q24 3'-phosphoadenosine 5'-phosphosulfate synthase 2 protein-coding PAPSS2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 O 3-prime-phosphoadenosine 5-prime-phosphosulfate synthase 2|ATP sulfurylase/APS kinase 2|ATP sulfurylase/adenosine 5'-phosphosulfate kinase|PAPS synthase 2|PAPS synthetase 2|PAPSS 2|SK 2|bifunctional 3'-phosphoadenosine 5'-phosphosulfate synthase 2|bifunctional 3'-phosphoadenosine 5'-phosphosulfate synthethase 2 20121230 -9606 9061 PAPSS1 - ATPSK1|PAPSS|SK1 HGNC:8603|MIM:603262|Ensembl:ENSG00000138801|HPRD:09132|Vega:OTTHUMG00000131210 4 4q24 3'-phosphoadenosine 5'-phosphosulfate synthase 1 protein-coding PAPSS1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 O 3-prime-phosphoadenosine 5-prime-phosphosulfate synthase 1|PAPS synthase 1|PAPSS 1|SK 1|bifunctional 3'-phosphoadenosine 5'-phosphosulfate synthase 1|sulfurylase kinase 1 20121230 -9606 9063 PIAS2 - ARIP3|DIP|MIZ|MIZ1|PIASX|PIASX-ALPHA|PIASX-BETA|SIZ2|ZMIZ4 HGNC:17311|MIM:603567|Ensembl:ENSG00000078043|HPRD:06944|Vega:OTTHUMG00000179301 18 18q21.1 protein inhibitor of activated STAT, 2 protein-coding PIAS2 protein inhibitor of activated STAT, 2 O DAB2-interacting protein|E3 SUMO-protein ligase PIAS2|androgen receptor-interacting protein 3|msx-interacting zinc finger protein|protein inhibitor of activated STAT X|zinc finger, MIZ-type containing 4 20121230 -9606 9064 MAP3K6 RP11-4K3__A.7 ASK2|MAPKKK6|MEKK6 HGNC:6858|MIM:604468|Ensembl:ENSG00000142733|HPRD:05126|Vega:OTTHUMG00000004631 1 1p36.11 mitogen-activated protein kinase kinase kinase 6 protein-coding MAP3K6 mitogen-activated protein kinase kinase kinase 6 O apoptosis signal regulating kinase 2|apoptosis signal-regulating kinase 2 20121230 -9606 9066 SYT7 - IPCA-7|IPCA7|PCANAP7|SYT-VII|SYTVII HGNC:11514|MIM:604146|Ensembl:ENSG00000011347|HPRD:11965|Vega:OTTHUMG00000168199 11 11q12-q13.1 synaptotagmin VII protein-coding SYT7 synaptotagmin VII O prostate cancer-associated protein 7|synaptotagmin-7 20121230 -9606 9068 ANGPTL1 PSEC0154 ANG3|ANGPT3|ARP1|AngY|UNQ162|dJ595C2.2 HGNC:489|MIM:603874|Ensembl:ENSG00000116194|HPRD:04851|Vega:OTTHUMG00000035075 1 1q25.2 angiopoietin-like 1 protein-coding ANGPTL1 angiopoietin-like 1 O ANG-3|angioarrestin|angiopoietin 3|angiopoietin Y1|angiopoietin-3|angiopoietin-like protein 1|angiopoietin-related protein 1|dJ595C2.2 (angiopoietin Y1) 20121230 -9606 9069 CLDN12 - - HGNC:2034|MIM:611232|Ensembl:ENSG00000157224|HPRD:13064|Vega:OTTHUMG00000156612 7 7q21 claudin 12 protein-coding CLDN12 claudin 12 O claudin-12 20121230 -9606 9070 ASH2L - ASH2|ASH2L1|ASH2L2|Bre2 HGNC:744|MIM:604782|Ensembl:ENSG00000129691|HPRD:05309|Vega:OTTHUMG00000164016 8 8p11.2 ash2 (absent, small, or homeotic)-like (Drosophila) protein-coding ASH2L ash2 (absent, small, or homeotic)-like (Drosophila) O ASH2-like protein|set1/Ash2 histone methyltransferase complex subunit ASH2 20121230 -9606 9071 CLDN10 RP11-23E3.4 CPETRL3|OSP-L HGNC:2033|Ensembl:ENSG00000134873|HPRD:13063|Vega:OTTHUMG00000017217 13 13q31-q34 claudin 10 protein-coding CLDN10 claudin 10 O OSP-like protein|claudin-10 20121230 -9606 9073 CLDN8 UNQ779/PRO1573 - HGNC:2050|MIM:611231|Ensembl:ENSG00000156284|HPRD:10835|Vega:OTTHUMG00000081872 21 21q22.11 claudin 8 protein-coding CLDN8 claudin 8 O claudin-8 20121230 -9606 9074 CLDN6 UNQ757/PRO1488 - HGNC:2048|Ensembl:ENSG00000184697|HPRD:13070 16 16p13.3 claudin 6 protein-coding CLDN6 claudin 6 O claudin-6|skullin 20121230 -9606 9075 CLDN2 RP1-75H8.2 - HGNC:2041|MIM:300520|Ensembl:ENSG00000165376|HPRD:06471|Vega:OTTHUMG00000022154 X Xq22.3-q23 claudin 2 protein-coding CLDN2 claudin 2 O SP82|claudin-2 20121230 -9606 9076 CLDN1 UNQ481/PRO944 CLD1|ILVASC|SEMP1 HGNC:2032|MIM:603718|Ensembl:ENSG00000163347|HPRD:04760|Vega:OTTHUMG00000156214 3 3q28-q29 claudin 1 protein-coding CLDN1 claudin 1 O claudin-1|senescence-associated epithelial membrane protein 1 20121230 -9606 9077 DIRAS3 - ARHI|NOEY2 HGNC:687|MIM:605193|Ensembl:ENSG00000162595|HPRD:05547 1 1p31 DIRAS family, GTP-binding RAS-like 3 protein-coding DIRAS3 DIRAS family, GTP-binding RAS-like 3 O GTP-binding protein Di-Ras3|distinct subgroup of the Ras family member 3|ras homolog gene family, member I|rho-related GTP-binding protein RhoI 20121230 -9606 9079 LDB2 - CLIM1|LDB1 HGNC:6533|MIM:603450|Ensembl:ENSG00000169744|HPRD:16022|Vega:OTTHUMG00000048212 4 4p16 LIM domain binding 2 protein-coding LDB2 LIM domain binding 2 O CLIM-1|LDB-2|LIM binding domain 2|LIM domain-binding factor CLIM1|LIM domain-binding factor-2|LIM domain-binding protein 2|carboxyl-terminal LIM domain-binding protein 1 20121230 -9606 9080 CLDN9 - - HGNC:2051|Ensembl:ENSG00000213937|HPRD:13071|Vega:OTTHUMG00000129000 16 16p13.3 claudin 9 protein-coding CLDN9 claudin 9 O claudin-9 20121230 -9606 9081 PRY - PRY1|PTPN13LY HGNC:14024|MIM:400019|Ensembl:ENSG00000169789|HPRD:02460|Vega:OTTHUMG00000043845 Y Yq11.223 PTPN13-like, Y-linked protein-coding PRY PTPN13-like, Y-linked O PTPN13-like protein, Y-linked|testis-specific PTP-BL-related protein on Y 20121230 -9606 9082 XKRY - XKRY1 HGNC:18571|MIM:400015|HPRD:02456 Y Yq11.222 XK, Kell blood group complex subunit-related, Y-linked protein-coding XKRY XK, Kell blood group complex subunit-related, Y-linked O Testis-specific XK-related protein on Y|X Kell blood group precursor-related, Y-linked|testis-specific XK-related protein, Y-linked 2 20121230 -9606 9083 BPY2 - BPY2A|VCY2|VCY2A HGNC:13508|MIM:400013|Ensembl:ENSG00000183753|HPRD:02454|Vega:OTTHUMG00000058899 Y Yq11 basic charge, Y-linked, 2 protein-coding BPY2 basic charge, Y-linked, 2 O basic protein on Y chromosome 2|testis-specific basic protein Y 2|testis-specific basic protein on Y, 2|variable charge, Y-linked, 2|variably charged protein Y 2 20121230 -9606 9084 VCY - BPY1|VCY1|VCY1A HGNC:12668|MIM:400012|Ensembl:ENSG00000129864|HPRD:02453|Vega:OTTHUMG00000036401 Y Yq11.221 variable charge, Y-linked protein-coding VCY variable charge, Y-linked O basic charge, Y-linked 1|basic protein on Y chromosome, 1|testis-specific basic protein Y 1|testis-specific basic protein on Y, 1|variable charge, Y chromosome|variably charged protein Y 20121220 -9606 9085 CDY1 - CDY|CDY1A HGNC:1809|MIM:400016|Ensembl:ENSG00000172288|HPRD:02457|Vega:OTTHUMG00000045274 Y Yq11.23 chromodomain protein, Y-linked, 1 protein-coding CDY1 chromodomain protein, Y-linked, 1 O chromodomain protein, Y chromosome, 1|testis-specific chromodomain protein Y 1|testis-specific chromodomain protein on Y 20121220 -9606 9086 EIF1AY - - HGNC:3252|MIM:400014|Ensembl:ENSG00000198692|HPRD:02455|Vega:OTTHUMG00000036544 Y Yq11.223 eukaryotic translation initiation factor 1A, Y-linked protein-coding EIF1AY eukaryotic translation initiation factor 1A, Y-linked O eIF-1A Y isoform|eIF-4C|eukaryotic translation initiation factor 1A, Y chromosome|eukaryotic translation initiation factor 1A, Y-chromosomal|eukaryotic translation initiation factor 4C 20121230 -9606 9087 TMSB4Y - TB4Y HGNC:11882|MIM:400017|Ensembl:ENSG00000154620|HPRD:02458|Vega:OTTHUMG00000036366 Y Yq11.221 thymosin beta 4, Y-linked protein-coding TMSB4Y thymosin beta 4, Y-linked O thymosin beta-4, Y isoform|thymosin beta-4, Y-chromosomal|thymosin, beta 4, Y chromosome 20121230 -9606 9088 PKMYT1 - MYT1 HGNC:29650|MIM:602474|Ensembl:ENSG00000127564|HPRD:03920|Vega:OTTHUMG00000128975 16 16p13.3 protein kinase, membrane associated tyrosine/threonine 1 protein-coding PKMYT1 protein kinase, membrane associated tyrosine/threonine 1 O membrane-associated tyrosine- and threonine-specific cdc2-inhibitory kinase|myt1 kinase 20121230 -9606 9091 PIGQ - GPI1|c407A10.1 HGNC:14135|MIM:605754|Ensembl:ENSG00000007541|HPRD:09307|Vega:OTTHUMG00000168047 16 16p13.3 phosphatidylinositol glycan anchor biosynthesis, class Q protein-coding PIGQ phosphatidylinositol glycan anchor biosynthesis, class Q O N-acetylglucosaminyl transferase component Gpi1|N-acetylglucosamyl transferase component GPI1|PIG-Q|c407A10.1 (GPI1 (N-acetylglucosaminyl transferase component))|phosphatidylinositol N-acetylglucosaminyltransferase subunit Q|phosphatidylinositol glycan, class Q|phosphatidylinositol-glycan biosynthesis class Q protein 20121230 -9606 9092 SART1 - Ara1|HOMS1|SART1259|SNRNP110|Snu66 HGNC:10538|MIM:605941|Ensembl:ENSG00000175467|HPRD:10440|Vega:OTTHUMG00000166771 11 11q13.1 squamous cell carcinoma antigen recognized by T cells protein-coding SART1 squamous cell carcinoma antigen recognized by T cells O IgE autoantigen|SART-1|SART1(259) protein|SART1(800) protein|SNU66 homolog|U4/U6.U5 tri-snRNP-associated 110 kDa protein|U4/U6.U5 tri-snRNP-associated protein 1|hSART-1|hSnu66|small nuclear ribonucleoprotein 110kDa (U4/U6.U5)|squamous cell carcinoma antigen recognised by T cells|squamous cell carcinoma antigen recognized by T cells 1|squamous cell carcinoma antigen recognized by T-cells 1 20121230 -9606 9093 DNAJA3 - HCA57|TID1|hTID-1 HGNC:11808|MIM:608382|Ensembl:ENSG00000103423|HPRD:09758|Vega:OTTHUMG00000129470 16 16p13.3 DnaJ (Hsp40) homolog, subfamily A, member 3 protein-coding DNAJA3 DnaJ (Hsp40) homolog, subfamily A, member 3 O dnaJ homolog subfamily A member 3, mitochondrial|dnaJ protein Tid-1|hepatocellular carcinoma-associated antigen 57|tumorous imaginal discs protein Tid56 homolog 20121230 -9606 9094 UNC119 - HRG4|POC7|POC7A HGNC:12565|MIM:604011|Ensembl:ENSG00000109103|HPRD:04927|Vega:OTTHUMG00000132606 17 17q11.2 unc-119 homolog (C. elegans) protein-coding UNC119 unc-119 homolog (C. elegans) O POC7 centriolar protein homolog A|protein unc-119 homolog A|retinal protein 4 20121230 -9606 9095 TBX19 RP4-747L4.2 TBS19|TPIT|dJ747L4.1 HGNC:11596|MIM:604614|Ensembl:ENSG00000143178|HPRD:05214|Vega:OTTHUMG00000034648 1 1q24.2 T-box 19 protein-coding TBX19 T-box 19 O T-box factor, pituitary|T-box protein 19|T-box transcription factor TBX19|TBS 19 20121230 -9606 9096 TBX18 - - HGNC:11595|MIM:604613|Ensembl:ENSG00000112837|Vega:OTTHUMG00000015129 6 6q14-q15 T-box 18 protein-coding TBX18 T-box 18 O T-box protein 18|T-box transcription factor TBX18 20121230 -9606 9097 USP14 - TGT HGNC:12612|MIM:607274|Ensembl:ENSG00000101557|HPRD:06279|Vega:OTTHUMG00000178040 18 18p11.32 ubiquitin specific peptidase 14 (tRNA-guanine transglycosylase) protein-coding USP14 ubiquitin specific peptidase 14 (tRNA-guanine transglycosylase) O deubiquitinating enzyme 14|tRNA-guanine transglycosylase, 60-kD subunit|ubiquitin carboxyl-terminal hydrolase 14|ubiquitin specific protease 14 (tRNA-guanine transglycosylase)|ubiquitin thioesterase 14|ubiquitin thiolesterase 14|ubiquitin-specific processing protease 14|ubiquitin-specific-processing protease 14 20121230 -9606 9098 USP6 - HRP1|TRE17|TRE2|Tre-2|USP6-short HGNC:12629|MIM:604334|Ensembl:ENSG00000129204|HPRD:06827|Vega:OTTHUMG00000099449 17 17p13 ubiquitin specific peptidase 6 (Tre-2 oncogene) protein-coding USP6 ubiquitin specific peptidase 6 (Tre-2 oncogene) O TBC1D3 and USP32 fusion|deubiquitinating enzyme 6|hyperpolymorphic gene 1|proto-oncogene TRE-2|tre-2 oncogene|ubiquitin carboxyl-terminal hydrolase 6|ubiquitin specific peptidase 6-|ubiquitin specific protease 6 (Tre-2 oncogene)|ubiquitin thioesterase 6|ubiquitin thiolesterase 6|ubiquitin-specific protease USP6|ubiquitin-specific-processing protease 6 20121230 -9606 9099 USP2 - UBP41|USP9 HGNC:12618|MIM:604725|Ensembl:ENSG00000036672|HPRD:05287|Vega:OTTHUMG00000166200 11 11q23.3 ubiquitin specific peptidase 2 protein-coding USP2 ubiquitin specific peptidase 2 O 41 kDa ubiquitin-specific protease|deubiquitinating enzyme 2|ubiquitin carboxyl-terminal hydrolase 2|ubiquitin specific protease 12|ubiquitin specific protease 9|ubiquitin thioesterase 2|ubiquitin-specific-processing protease 2 20121230 -9606 9100 USP10 - UBPO HGNC:12608|MIM:609818|Ensembl:ENSG00000103194|HPRD:07029|Vega:OTTHUMG00000176770 16 16q24.1 ubiquitin specific peptidase 10 protein-coding USP10 ubiquitin specific peptidase 10 O deubiquitinating enzyme 10|ubiquitin carboxyl-terminal hydrolase 10|ubiquitin specific protease 10|ubiquitin thioesterase 10|ubiquitin thiolesterase 10|ubiquitin-specific-processing protease 10 20121230 -9606 9101 USP8 - HumORF8|UBPY HGNC:12631|MIM:603158|Ensembl:ENSG00000138592|HPRD:04405|Vega:OTTHUMG00000131645 15 15q21.2 ubiquitin specific peptidase 8 protein-coding USP8 ubiquitin specific peptidase 8 O deubiquitinating enzyme 8|hUBPy|ubiquitin carboxyl-terminal hydrolase 8|ubiquitin isopeptidase Y|ubiquitin specific protease 8|ubiquitin thioesterase 8|ubiquitin thiolesterase 8|ubiquitin-specific-processing protease 8 20121230 -9606 9103 FCGR2C - CD32|CD32C|CDW32|FCG2|FCRIIC|IGFR2 HGNC:15626|MIM:612169|HPRD:13318 1 1q23.3 Fc fragment of IgG, low affinity IIc, receptor for (CD32) (gene/pseudogene) protein-coding FCGR2C Fc fragment of IgG, low affinity IIc, receptor for (CD32) (gene/pseudogene) O Fc gamma receptor IIC|IgG Fc receptor II-c|fc-gamma-RIIc|immunoglobulin G Fc receptor II-c|low affinity immunoglobulin gamma Fc region receptor II-c 20121230 -9606 9104 RGN CTD-2522E6.2 GNL|RC|SMP30 HGNC:9989|MIM:300212|Ensembl:ENSG00000130988|HPRD:02196|Vega:OTTHUMG00000021435 X Xp11.3 regucalcin (senescence marker protein-30) protein-coding RGN regucalcin (senescence marker protein-30) O SMP-30|gluconolactonase|regucalcin|senescence marker protein 30|senescence marker protein-30 20121230 -9606 9107 MTMR6 RP11-271M24.1 - HGNC:7453|MIM:603561|Ensembl:ENSG00000139505|HPRD:11946|Vega:OTTHUMG00000016606 13 13q12 myotubularin related protein 6 protein-coding MTMR6 myotubularin related protein 6 O myotubularin-related protein 6 20121230 -9606 9108 MTMR7 - - HGNC:7454|MIM:603562|Ensembl:ENSG00000003987|HPRD:16027|Vega:OTTHUMG00000163771 8 8p22 myotubularin related protein 7 protein-coding MTMR7 myotubularin related protein 7 O myotubularin-related protein 7 20121230 -9606 9110 MTMR4 - FYVE-DSP2|ZFYVE11 HGNC:7452|MIM:603559|Ensembl:ENSG00000108389|HPRD:11945|Vega:OTTHUMG00000179079 17 17q22-q23 myotubularin related protein 4 protein-coding MTMR4 myotubularin related protein 4 O FYVE domain-containing dual specificity protein phosphatase 2|myotubularin-related protein 4|zinc finger FYVE domain-containing protein 11|zinc finger, FYVE domain containing 11 20121230 -9606 9111 NMI - - HGNC:7854|MIM:603525|Ensembl:ENSG00000123609|HPRD:04632|Vega:OTTHUMG00000131867 2 2q23 N-myc (and STAT) interactor protein-coding NMI N-myc (and STAT) interactor O N-myc interactor|N-myc-interactor 20121230 -9606 9112 MTA1 - - HGNC:7410|MIM:603526|Ensembl:ENSG00000182979|HPRD:04633|Vega:OTTHUMG00000150362 14 14q32.3 metastasis associated 1 protein-coding MTA1 metastasis associated 1 O metastasis associated gene 1 protein|metastasis-associated protein MTA1 20121230 -9606 9113 LATS1 - WARTS|wts HGNC:6514|MIM:603473|Ensembl:ENSG00000131023|HPRD:09147|Vega:OTTHUMG00000016437 6 6q25.1 LATS, large tumor suppressor, homolog 1 (Drosophila) protein-coding LATS1 LATS, large tumor suppressor, homolog 1 (Drosophila) O LATS (large tumor suppressor, Drosophila) homolog 1|WARTS protein kinase|h-warts|large tumor suppressor homolog 1|serine/threonine-protein kinase LATS1 20121230 -9606 9114 ATP6V0D1 - ATP6D|ATP6DV|P39|VATX|VMA6|VPATPD HGNC:13724|MIM:607028|Ensembl:ENSG00000159720|HPRD:06121|Vega:OTTHUMG00000137515 16 16q22.1 ATPase, H+ transporting, lysosomal 38kDa, V0 subunit d1 protein-coding ATP6V0D1 ATPase, H+ transporting, lysosomal 38kDa, V0 subunit d1 O 32 kDa accessory protein|ATPase, H+ transporting, lysosomal (vacuolar proton pump), member D|H(+)-transporting two-sector ATPase, subunit D|V-ATPase 40 KDa accessory protein|V-ATPase AC39 subunit|V-ATPase subunit d 1|V-ATPase, subunit D|V-type proton ATPase subunit d 1|vacuolar proton pump subunit d 1 20121230 -9606 9117 SEC22C UNQ459/PRO784 SEC22L3 HGNC:16828|MIM:604028|Ensembl:ENSG00000093183|HPRD:04938|Vega:OTTHUMG00000131797 3 3p22.1 SEC22 vesicle trafficking protein homolog C (S. cerevisiae) protein-coding SEC22C SEC22 vesicle trafficking protein homolog C (S. cerevisiae) O SEC22 vesicle trafficking protein-like 3|secretion deficient 22C|vesicle-trafficking protein SEC22c 20121230 -9606 9118 INA - NEF5|NF-66|TXBP-1 HGNC:6057|MIM:605338|Ensembl:ENSG00000148798|HPRD:05628|Vega:OTTHUMG00000018986 10 10q24.33 internexin neuronal intermediate filament protein, alpha protein-coding INA internexin neuronal intermediate filament protein, alpha O 66 kDa neurofilament protein|alpha-Inx|alpha-internexin|neurofilament 5 (66kD)|neurofilament-66, tax-binding protein 20121230 -9606 9119 KRT75 - K6HF|KB18|PFB HGNC:24431|MIM:609025|Ensembl:ENSG00000170454|HPRD:11057|Vega:OTTHUMG00000169592 12 12q13 keratin 75 protein-coding KRT75 keratin 75 O CK-75|K75|cytokeratin type II|cytokeratin-75|hK6hf|keratin, type II cytoskeletal 75|keratin-6 hair follicle|keratin-75|type II keratin-18|type II keratin-K6hf|type-II keratin Kb18 20121230 -9606 9120 SLC16A6 - MCT6|MCT7 HGNC:10927|MIM:603880|Ensembl:ENSG00000108932|HPRD:04857|Vega:OTTHUMG00000179812 17 17q24.2 solute carrier family 16, member 6 (monocarboxylic acid transporter 7) protein-coding SLC16A6 solute carrier family 16, member 6 (monocarboxylic acid transporter 7) O breast cancer protein BCY5|monocarboxylate transporter 6|monocarboxylate transporter 7 20121230 -9606 9121 SLC16A5 - MCT5|MCT6 HGNC:10926|MIM:603879|Ensembl:ENSG00000170190|HPRD:04856|Vega:OTTHUMG00000179277 17 17q25.1 solute carrier family 16, member 5 (monocarboxylic acid transporter 6) protein-coding SLC16A5 solute carrier family 16, member 5 (monocarboxylic acid transporter 6) O monocarboxylate transporter 5|monocarboxylate transporter 6|solute carrier family 16 (monocarboxylic acid transporters), member 5 20121230 -9606 9122 SLC16A4 RP5-1074L1.3 MCT4|MCT5 HGNC:10925|MIM:603878|Ensembl:ENSG00000168679|HPRD:04855|Vega:OTTHUMG00000011285 1 1p13.3 solute carrier family 16, member 4 (monocarboxylic acid transporter 5) protein-coding SLC16A4 solute carrier family 16, member 4 (monocarboxylic acid transporter 5) O MCT 4|MCT 5|monocarboxylate transporter 4|monocarboxylate transporter 5|solute carrier family 16 (monocarboxylic acid transporters), member 4|solute carrier family 16 member 4 20121230 -9606 9123 SLC16A3 - MCT 3|MCT 4|MCT-3|MCT-4|MCT3|MCT4 HGNC:10924|MIM:603877|Ensembl:ENSG00000141526|HPRD:04854|Vega:OTTHUMG00000178832 17 17q25 solute carrier family 16, member 3 (monocarboxylic acid transporter 4) protein-coding SLC16A3 solute carrier family 16, member 3 (monocarboxylic acid transporter 4) O monocarboxylate transporter 3|monocarboxylate transporter 4|solute carrier family 16 (monocarboxylic acid transporters), member 3 20121230 -9606 9124 PDLIM1 - CLIM1|CLP-36|CLP36|hCLIM1 HGNC:2067|MIM:605900|Ensembl:ENSG00000107438|HPRD:09326|Vega:OTTHUMG00000018810 10 10q23.1 PDZ and LIM domain 1 protein-coding PDLIM1 PDZ and LIM domain 1 O LIM domain protein CLP-36|PDZ and LIM domain protein 1|carboxyl terminal LIM domain protein 1|elfin 20121230 -9606 9125 RQCD1 - CNOT9|CT129|RCD-1|RCD1 HGNC:10445|MIM:612054|Ensembl:ENSG00000144580|HPRD:08828|Vega:OTTHUMG00000154750 2 2q35 RCD1 required for cell differentiation1 homolog (S. pombe) protein-coding RQCD1 RCD1 required for cell differentiation1 homolog (S. pombe) O CCR4-NOT transcription complex subunit 9|cancer/testis antigen 129|cell differentiation protein RCD1 homolog|protein involved in sexual development 20121230 -9606 9126 SMC3 - BAM|BMH|CDLS3|CSPG6|HCAP|SMC3L1 HGNC:2468|MIM:606062|Ensembl:ENSG00000108055|HPRD:05829|Vega:OTTHUMG00000019042 10 10q25 structural maintenance of chromosomes 3 protein-coding SMC3 structural maintenance of chromosomes 3 O SMC protein 3|SMC-3|basement membrane-associated chondroitin proteoglycan|chondroitin sulfate proteoglycan 6 (bamacan)|chromosome-associated polypeptide|structural maintenance of chromosomes protein 3 20121230 -9606 9127 P2RX6 - P2RXL1|P2X6|P2XM HGNC:8538|MIM:608077|Ensembl:ENSG00000099957|HPRD:08490|Vega:OTTHUMG00000150689 22 22q11.21 purinergic receptor P2X, ligand-gated ion channel, 6 protein-coding P2RX6 purinergic receptor P2X, ligand-gated ion channel, 6 O ATP receptor|P2X purinoceptor 6|purinergic receptor P2X-like 1, orphan receptor|purinoceptor P2X6|purinoreceptor P2X6|skeletal muscle-expressed P2X 20121230 -9606 9128 PRPF4 RP11-110L1.4 HPRP4|HPRP4P|PRP4|Prp4p HGNC:17349|MIM:607795|Ensembl:ENSG00000136875|HPRD:08479|Vega:OTTHUMG00000020517 9 9q31-q33 PRP4 pre-mRNA processing factor 4 homolog (yeast) protein-coding PRPF4 PRP4 pre-mRNA processing factor 4 homolog (yeast) O PRP4 homolog|PRP4/STK/WD splicing factor|U4/U6 small nuclear ribonucleoprotein Prp4|U4/U6 snRNP 60 kDa protein|WD splicing factor Prp4 20121230 -9606 9129 PRPF3 - HPRP3|HPRP3P|PRP3|Prp3p|RP18 HGNC:17348|MIM:607301|Ensembl:ENSG00000117360|HPRD:07389|Vega:OTTHUMG00000012807 1 1q21.1 PRP3 pre-mRNA processing factor 3 homolog (S. cerevisiae) protein-coding PRPF3 PRP3 pre-mRNA processing factor 3 homolog (S. cerevisiae) O U4/U6 small nuclear ribonucleoprotein Prp3|U4/U6 snRNP 90 kDa protein|U4/U6-associated RNA splicing factor|pre-mRNA-splicing factor 3 20121230 -9606 9130 FAM50A XX-FW81657B9.2 9F|DXS9928E|HXC-26|HXC26|XAP5 HGNC:18786|MIM:300453|Ensembl:ENSG00000071859|HPRD:02349|Vega:OTTHUMG00000033292 X Xq28 family with sequence similarity 50, member A protein-coding FAM50A family with sequence similarity 50, member A O protein FAM50A|protein XAP-5 20121230 -9606 9131 AIFM1 RP3-438D16.2 AIF|COXPD6|PDCD8 HGNC:8768|MIM:300169|Ensembl:ENSG00000156709|HPRD:02161|Vega:OTTHUMG00000022392 X Xq26.1 apoptosis-inducing factor, mitochondrion-associated, 1 protein-coding AIFM1 apoptosis-inducing factor, mitochondrion-associated, 1 O apoptosis-inducing factor 1, mitochondrial|programmed cell death 8 (apoptosis-inducing factor)|striatal apoptosis-inducing factor 20121230 -9606 9132 KCNQ4 - DFNA2|DFNA2A|KV7.4 HGNC:6298|MIM:603537|Ensembl:ENSG00000117013|HPRD:04641|Vega:OTTHUMG00000007730 1 1p34 potassium voltage-gated channel, KQT-like subfamily, member 4 protein-coding KCNQ4 potassium voltage-gated channel, KQT-like subfamily, member 4 O potassium channel KQT-like 4|potassium channel subunit alpha KvLQT4|potassium voltage-gated channel subfamily KQT member 4 20121230 -9606 9133 CCNB2 - HsT17299 HGNC:1580|MIM:602755|Ensembl:ENSG00000157456|HPRD:04131|Vega:OTTHUMG00000132715 15 15q22.2 cyclin B2 protein-coding CCNB2 cyclin B2 O G2/mitotic-specific cyclin-B2 20121230 -9606 9134 CCNE2 - CYCE2 HGNC:1590|MIM:603775|Ensembl:ENSG00000175305|HPRD:04801|Vega:OTTHUMG00000164696 8 8q22.1 cyclin E2 protein-coding CCNE2 cyclin E2 O G1/S-specific cyclin-E2 20121230 -9606 9135 RABEP1 - RAB5EP|RABPT5 HGNC:17677|MIM:603616|Ensembl:ENSG00000029725|HPRD:04684|Vega:OTTHUMG00000177870 17 17p13.2 rabaptin, RAB GTPase binding effector protein 1 protein-coding RABEP1 rabaptin, RAB GTPase binding effector protein 1 O neurocrescin|rab GTPase-binding effector protein 1|rabaptin-4|rabaptin-5|rabaptin-5alpha|renal carcinoma antigen NY-REN-17 20121230 -9606 9136 RRP9 - RNU3IP2|U3-55K HGNC:16829|Ensembl:ENSG00000114767|HPRD:08827|Vega:OTTHUMG00000156930 3 3p21.2 ribosomal RNA processing 9, small subunit (SSU) processome component, homolog (yeast) protein-coding RRP9 ribosomal RNA processing 9, small subunit (SSU) processome component, homolog (yeast) O RNA, U3 small nucleolar interacting protein 2|RRP9 homolog|RRP9, small subunit (SSU) processome component, homolog|U3 small nucleolar RNA-interacting protein 2|U3 small nucleolar ribonucleoprotein-associated 55 kDa protein|U3 snoRNP-associated 55-kDa protein 20121230 -9606 9138 ARHGEF1 - GEF1|LBCL2|LSC|P115-RHOGEF|SUB1.5 HGNC:681|MIM:601855|Ensembl:ENSG00000076928|HPRD:03511 19 19q13.13 Rho guanine nucleotide exchange factor (GEF) 1 protein-coding ARHGEF1 Rho guanine nucleotide exchange factor (GEF) 1 O 115 kDa guanine nucleotide exchange factor|115-kD protein|Lsc homolog|p115RhoGEF|rho guanine nucleotide exchange factor 1 20121230 -9606 9139 CBFA2T2 RP5-1137F22.1 EHT|MTGR1|ZMYND3|p85 HGNC:1536|MIM:603672|Ensembl:ENSG00000078699|HPRD:04721|Vega:OTTHUMG00000032261 20 20q11 core-binding factor, runt domain, alpha subunit 2; translocated to, 2 protein-coding CBFA2T2 core-binding factor, runt domain, alpha subunit 2; translocated to, 2 O ETO homolog on chromosome 20|ETO homologous on chromosome 20|MTG8-like protein|MTG8-related protein 1|myeloid translocation gene-related protein 1|myeloid translocation-related protein 1|protein CBFA2T2 20121230 -9606 9140 ATG12 - APG12|APG12L|FBR93|HAPG12 HGNC:588|MIM:609608|Ensembl:ENSG00000145782|HPRD:08496|Vega:OTTHUMG00000128889 5 5q21-q22 autophagy related 12 protein-coding ATG12 autophagy related 12 O ATG12 autophagy related 12 homolog|Apg12 (autophagy, yeast) homolog|autophagy-related protein 12|ubiquitin-like protein ATG12 20121230 -9606 9141 PDCD5 - TFAR19 HGNC:8764|MIM:604583|Ensembl:ENSG00000105185|HPRD:06843|Vega:OTTHUMG00000180224 19 19q13.11 programmed cell death 5 protein-coding PDCD5 programmed cell death 5 O TF-1 cell apoptosis-related protein 19|TF1 cell apoptosis-related gene 19|TFAR19 novel apoptosis-related|programmed cell death protein 5 20121230 -9606 9142 TMEM257 - CXorf1 HGNC:2562|MIM:300565|Ensembl:ENSG00000221870|HPRD:06477|Vega:OTTHUMG00000159605 X Xq27.3 transmembrane protein 257 protein-coding TMEM257 transmembrane protein 257 O uncharacterized protein CXorf1 20121230 -9606 9143 SYNGR3 - - HGNC:11501|MIM:603927|Ensembl:ENSG00000127561|HPRD:06801|Vega:OTTHUMG00000128711 16 16p13 synaptogyrin 3 protein-coding SYNGR3 synaptogyrin 3 O synaptogyrin-3 20121230 -9606 9144 SYNGR2 UNQ352/PRO615 - HGNC:11499|MIM:603926|Ensembl:ENSG00000108639|HPRD:04891|Vega:OTTHUMG00000177457 17 17q25.3 synaptogyrin 2 protein-coding SYNGR2 synaptogyrin 2 O cellugyrin|synaptogyrin-2 20121230 -9606 9145 SYNGR1 RP3-333H23.3 - HGNC:11498|MIM:603925|Ensembl:ENSG00000100321|HPRD:06800|Vega:OTTHUMG00000030978 22 22q13.1 synaptogyrin 1 protein-coding SYNGR1 synaptogyrin 1 O synaptogyrin-1 20121230 -9606 9146 HGS - HRS HGNC:4897|MIM:604375|Ensembl:ENSG00000185359|HPRD:05085|Vega:OTTHUMG00000178109 17 17q25 hepatocyte growth factor-regulated tyrosine kinase substrate protein-coding HGS hepatocyte growth factor-regulated tyrosine kinase substrate O human growth factor-regulated tyrosine kinase substrate|protein pp110 20121230 -9606 9147 NEMF - NY-CO-1|SDCCAG1 HGNC:10663|MIM:608378|Ensembl:ENSG00000165525|HPRD:08494|Vega:OTTHUMG00000170857 14 14q22 nuclear export mediator factor protein-coding NEMF nuclear export mediator factor O antigen NY-CO-1|nuclear export mediator factor NEMF|serologically defined colon cancer antigen 1 20121230 -9606 9148 NEURL - NEURL1|RNF67|bA416N2.1|neu|neu-1 HGNC:7761|MIM:603804|Ensembl:ENSG00000107954|HPRD:04815|Vega:OTTHUMG00000018995 10 10q25.1 neuralized homolog (Drosophila) protein-coding NEURL neuralized homolog (Drosophila) O RING finger protein 67|h-neuralized 1|neuralized-like protein 1A 20121230 -9606 9149 DYRK1B - MIRK HGNC:3092|MIM:604556|Ensembl:ENSG00000105204|HPRD:05188 19 19q13.2 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 1B protein-coding DYRK1B dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 1B O dual specificity tyrosine-phosphorylation-regulated kinase 1B|minibrain-related kinase|mirk protein kinase 20121230 -9606 9150 CTDP1 - CCFDN|FCP1 HGNC:2498|MIM:604927|Ensembl:ENSG00000060069|HPRD:05377|Vega:OTTHUMG00000132920 18 18q23 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1 protein-coding CTDP1 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1 O CTD of POLR2A, phosphatase of, subunit 1|RNA polymerase II subunit A C-terminal domain phosphatase|TFIIF-associating CTD phosphatase 1|serine phosphatase FCP1a|transcription factor IIF-associating CTD phosphatase 1 20121230 -9606 9151 HHC3 - FBH3|FBHOk HGNC:4900|MIM:600740 19 19q13 hypocalciuric hypercalcemia 3 (Oklahoma type) unknown HHC3 hypocalciuric hypercalcemia 3 (Oklahoma type) O - 20120622 -9606 9152 SLC6A5 - GLYT-2|GLYT2|HKPX3|NET1 HGNC:11051|MIM:604159|Ensembl:ENSG00000165970|HPRD:08378|Vega:OTTHUMG00000166024 11 11p15.1 solute carrier family 6 (neurotransmitter transporter, glycine), member 5 protein-coding SLC6A5 solute carrier family 6 (neurotransmitter transporter, glycine), member 5 O sodium- and chloride-dependent glycine transporter 2 20121230 -9606 9153 SLC28A2 - CNT2|HCNT2|HsT17153|SPNT1 HGNC:11002|MIM:606208|Ensembl:ENSG00000137860|HPRD:07069|Vega:OTTHUMG00000131426 15 15q15 solute carrier family 28 (sodium-coupled nucleoside transporter), member 2 protein-coding SLC28A2 solute carrier family 28 (sodium-coupled nucleoside transporter), member 2 O CNT 2|Na(+)/nucleoside cotransporter 2|SPNT|concentrative nucleoside transporter 2|sodium-coupled nucleoside transporter 2|sodium/nucleoside cotransporter 2|sodium/purine nucleoside co-transporter|solute carrier family 28 member 2 20121230 -9606 9154 SLC28A1 - CNT1|HCNT1 HGNC:11001|MIM:606207|Ensembl:ENSG00000156222|HPRD:07068|Vega:OTTHUMG00000148668 15 15q25.3 solute carrier family 28 (sodium-coupled nucleoside transporter), member 1 protein-coding SLC28A1 solute carrier family 28 (sodium-coupled nucleoside transporter), member 1 O CNT 1|Na(+)/nucleoside cotransporter 1|concentrative nucleoside transporter 1|sodium-coupled nucleoside transporter 1|sodium/nucleoside cotransporter 1|solute carrier family 28 member 1 20121230 -9606 9156 EXO1 RP11-553N16.2 HEX1|hExoI HGNC:3511|MIM:606063|Ensembl:ENSG00000174371|HPRD:06932|Vega:OTTHUMG00000039965 1 1q42-q43 exonuclease 1 protein-coding EXO1 exonuclease 1 O hExo1|rad2 nuclease family member, homolog of S. cerevisiae exonuclease 1 20121230 -9606 9158 FIBP - FGFIBP|FIBP-1 HGNC:3705|MIM:608296|Ensembl:ENSG00000172500|HPRD:08492|Vega:OTTHUMG00000166846 11 11q13.1 fibroblast growth factor (acidic) intracellular binding protein protein-coding FIBP fibroblast growth factor (acidic) intracellular binding protein O FGF-1 intracellular-binding protein|aFGF intracellular-binding protein|acidic fibroblast growth factor intracellular-binding protein 20121230 -9606 9159 PCSK7 - LPC|PC7|PC8|SPC7 HGNC:8748|MIM:604872|Ensembl:ENSG00000160613|HPRD:05339|Vega:OTTHUMG00000165640 11 11q23-q24 proprotein convertase subtilisin/kexin type 7 protein-coding PCSK7 proprotein convertase subtilisin/kexin type 7 O hPC8|lymphoma proprotein convertase|prohormone convertase 7|prohormone convertase PC7|proprotein convertase 7|proprotein convertase 8|proprotein convertase PC7|subtilisin/kexin-like protease PC7 20121230 -9606 9162 DGKI - DGK-IOTA HGNC:2855|MIM:604072|Ensembl:ENSG00000157680|HPRD:07238|Vega:OTTHUMG00000155697 7 7q32.3-q33 diacylglycerol kinase, iota protein-coding DGKI diacylglycerol kinase, iota O DAG kinase iota|diacylglycerol kinase iota|diglyceride kinase iota 20121230 -9606 9163 AMLCR2 - AMLCR HGNC:466|MIM:602439 16 16q22 acute myeloid leukemia chromosome region 2 other AMLCR2 acute myeloid leukemia chromosome region 2 O - 20121220 -9606 9166 EBAG9 - EB9|PDAF|RCAS1 HGNC:3123|MIM:605772|Ensembl:ENSG00000147654|HPRD:05775|Vega:OTTHUMG00000165346 8 8q23 estrogen receptor binding site associated, antigen, 9 protein-coding EBAG9 estrogen receptor binding site associated, antigen, 9 O cancer associated surface antigen|cancer-associated surface antigen RCAS1|estrogen receptor-binding fragment-associated gene 9 protein|receptor-binding cancer antigen expressed on SiSo cells 20121230 -9606 9167 COX7A2L - COX7AR|COX7RP|EB1|SIG81 HGNC:2289|MIM:605771|Ensembl:ENSG00000115944|HPRD:05774|Vega:OTTHUMG00000128605 2 2p21 cytochrome c oxidase subunit VIIa polypeptide 2 like protein-coding COX7A2L cytochrome c oxidase subunit VIIa polypeptide 2 like O COX7a-related protein|cytochrome c oxidase subunit 7A-related protein, mitochondrial|cytochrome c oxidase subunit VII-related protein|cytochrome c oxidase subunit VIIa-related protein|estrogen receptor binding CpG island 20121230 -9606 9168 TMSB10 - MIG12|TB10 HGNC:11879|MIM:188399|Ensembl:ENSG00000034510|HPRD:01779|Vega:OTTHUMG00000130027 2 2p11.2 thymosin beta 10 protein-coding TMSB10 thymosin beta 10 O migration-inducing gene 12|migration-inducing protein 12|thymosin beta-10 20121230 -9606 9169 SCAF11 - CASP11|SFRS2IP|SIP1|SRRP129|SRSF2IP HGNC:10784|MIM:603668|Ensembl:ENSG00000139218|HPRD:04720|Vega:OTTHUMG00000149930 12 12q12 SR-related CTD-associated factor 11 protein-coding SCAF11 SR-related CTD-associated factor 11 O CTD-associated SR protein 11|SC35-interacting protein 1|SFRS2-interacting protein|SR-related and CTD-associated factor 11|SRSF2-interacting protein|protein SCAF11|renal carcinoma antigen NY-REN-40|serine/arginine-rich splicing factor 2, interacting protein|serine/arginine-rich splicing factor 2-interacting protein|splicing factor, arginine/serine-rich 2, interacting protein|splicing factor, arginine/serine-rich 2-interacting protein|splicing regulatory protein 129 20121230 -9606 9170 LPAR2 - EDG-4|EDG4|LPA-2|LPA2 HGNC:3168|MIM:605110|Ensembl:ENSG00000064547|Vega:OTTHUMG00000182328 19 19p12 lysophosphatidic acid receptor 2 protein-coding LPAR2 lysophosphatidic acid receptor 2 O G protein-coupled receptor|LPA receptor 2|LPA receptor EDG4|endothelial differentiation, lysophosphatidic acid G-protein-coupled receptor, 4|lysophosphatidic acid receptor EDG4|lysophosphatidic acid receptor Edg-4 20121230 -9606 9172 MYOM2 - TTNAP HGNC:7614|MIM:603509|Ensembl:ENSG00000036448|HPRD:04619|Vega:OTTHUMG00000129175 8 8p23.3 myomesin 2 protein-coding MYOM2 myomesin 2 O 165 kDa connectin-associated protein|165 kDa titin-associated protein|M-band protein|M-protein|myomesin (M-protein) 2, 165kDa|myomesin family member 2|myomesin-2|titin-associated protein, 165 kD 20121230 -9606 9173 IL1RL1 - DER4|FIT-1|IL33R|ST2|ST2L|ST2V|T1 HGNC:5998|MIM:601203|Ensembl:ENSG00000115602|HPRD:03123|Vega:OTTHUMG00000130782 2 2q12 interleukin 1 receptor-like 1 protein-coding IL1RL1 interleukin 1 receptor-like 1 O growth stimulation-expressed|homolog of mouse growth stimulation-expressed|interleukin 1 receptor-related protein|interleukin-1 receptor-like 1 20121230 -9606 9175 MAP3K13 - LZK|MEKK13|MLK HGNC:6852|MIM:604915|Ensembl:ENSG00000073803|HPRD:05372|Vega:OTTHUMG00000156673 3 3q27 mitogen-activated protein kinase kinase kinase 13 protein-coding MAP3K13 mitogen-activated protein kinase kinase kinase 13 O leucine zipper-bearing kinase|mixed lineage kinase 20121230 -9606 9177 HTR3B - 5-HT3B HGNC:5298|MIM:604654|Ensembl:ENSG00000149305|HPRD:06875|Vega:OTTHUMG00000168210 11 11q23.1 5-hydroxytryptamine (serotonin) receptor 3B, ionotropic protein-coding HTR3B 5-hydroxytryptamine (serotonin) receptor 3B, ionotropic O 5-HT3-B|5-hydroxytryptamine 3 receptor B subunit|5-hydroxytryptamine receptor 3B|serotonin-gated ion channel subunit 20121230 -9606 9179 AP4M1 - CPSQ3|MU-4|MU-ARP2|SPG50 HGNC:574|MIM:602296|Ensembl:ENSG00000221838|HPRD:03803|Vega:OTTHUMG00000154722 7 7q22.1 adaptor-related protein complex 4, mu 1 subunit protein-coding AP4M1 adaptor-related protein complex 4, mu 1 subunit O AP-4 complex subunit mu-1|adapter-related protein complex 4 mu-1 subunit|adaptor-related protein complex AP-4 mu4 subunit|mu subunit of AP-4|mu-adaptin-related protein 2|mu-adaptin-related protein-2|mu4|mu4-adaptin 20121230 -9606 9180 OSMR - OSMRB|PLCA1 HGNC:8507|MIM:601743|Ensembl:ENSG00000145623|HPRD:03446|Vega:OTTHUMG00000090811 5 5p13.1 oncostatin M receptor protein-coding OSMR oncostatin M receptor O IL-31 receptor subunit beta|IL-31R subunit beta|IL-31R-beta|IL-31RB|interleukin-31 receptor subunit beta|oncostatin-M specific receptor beta subunit|oncostatin-M-specific receptor subunit beta 20121230 -9606 9181 ARHGEF2 RP11-336K24.3 GEF|GEF-H1|GEFH1|LFP40|P40 HGNC:682|MIM:607560|Ensembl:ENSG00000116584|HPRD:10458|Vega:OTTHUMG00000017464 1 1q21-q22 Rho/Rac guanine nucleotide exchange factor (GEF) 2 protein-coding ARHGEF2 Rho/Rac guanine nucleotide exchange factor (GEF) 2 O Rho/Rac guanine nucleotide exchange factor 2|guanine nucleotide exchange factor H1|microtubule-regulated Rho-GEF|proliferating cell nucleolar antigen p40|rho guanine nucleotide exchange factor 2 20121230 -9606 9182 RASSF9 - P-CIP1|PAMCI|PCIP1 HGNC:15739|MIM:610383|Ensembl:ENSG00000198774|HPRD:08826|Vega:OTTHUMG00000169831 12 12q21.31 Ras association (RalGDS/AF-6) domain family (N-terminal) member 9 protein-coding RASSF9 Ras association (RalGDS/AF-6) domain family (N-terminal) member 9 O PAM COOH-terminal interactor protein 1|peptidylglycine alpha-amidating monooxygenase COOH-terminal interactor protein-1|ras association domain-containing protein 9 20121230 -9606 9183 ZW10 - HZW10|KNTC1AP HGNC:13194|MIM:603954|Ensembl:ENSG00000086827|HPRD:04902|Vega:OTTHUMG00000168190 11 11q23.2 zw10 kinetochore protein protein-coding ZW10 zw10 kinetochore protein O ZW10 homolog, centromere/kinetochore protein|ZW10, kinetochore associated, homolog|centromere/kinetochore protein zw10 homolog|zeste white 10 homolog 20121230 -9606 9184 BUB3 - BUB3L|hBUB3 HGNC:1151|MIM:603719|Ensembl:ENSG00000154473|HPRD:04761|Vega:OTTHUMG00000019197 10 10q26 budding uninhibited by benzimidazoles 3 homolog (yeast) protein-coding BUB3 budding uninhibited by benzimidazoles 3 homolog (yeast) O BUB3 budding uninhibited by benzimidazoles 3 homolog|budding uninhibited by benomyl|mitotic checkpoint component|mitotic checkpoint protein BUB3 20121230 -9606 9185 REPS2 RP11-2K15.3 POB1 HGNC:9963|MIM:300317|Ensembl:ENSG00000169891|HPRD:02262|Vega:OTTHUMG00000021199 X Xp22.2 RALBP1 associated Eps domain containing 2 protein-coding REPS2 RALBP1 associated Eps domain containing 2 O RALBP1-interacting protein 2|partner of Ral-binding protein 1|partner of RalBP1|ralBP1-associated Eps domain-containing protein 2 20121230 -9606 9186 LGMD1D - - HGNC:6576|MIM:603511 7 7q limb girdle muscular dystrophy 1D (autosomal dominant) unknown LGMD1D limb girdle muscular dystrophy 1D (autosomal dominant) O - 20120622 -9606 9187 SLC24A1 - CSNB1D|HsT17412|NCKX|NCKX1|RODX HGNC:10975|MIM:603617|Ensembl:ENSG00000074621|HPRD:04685|Vega:OTTHUMG00000167960 15 15q22 solute carrier family 24 (sodium/potassium/calcium exchanger), member 1 protein-coding SLC24A1 solute carrier family 24 (sodium/potassium/calcium exchanger), member 1 O Na(+)/K(+)/Ca(2+)-exchange protein 1|retinal rod Na+/Ca+/K+ exchanger|sodium/potassium/calcium exchanger 1 20121230 -9606 9188 DDX21 - GUA|GURDB|RH-II/GU|RH-II/GuA HGNC:2744|MIM:606357|Ensembl:ENSG00000165732|HPRD:05895|Vega:OTTHUMG00000018366 10 10q21 DEAD (Asp-Glu-Ala-Asp) box helicase 21 protein-coding DDX21 DEAD (Asp-Glu-Ala-Asp) box helicase 21 O DEAD (Asp-Glu-Ala-Asp) box polypeptide 21|DEAD box protein 21|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 21|Gu protein|RH II/Gu|RNA helicase II/Gu alpha|gu-alpha|nucleolar RNA helicase 2|nucleolar RNA helicase Gu|nucleolar RNA helicase II 20121230 -9606 9189 ZBED1 - ALTE|DREF|TRAMP|hDREF HGNC:447|MIM:300178|Ensembl:ENSG00000214717|HPRD:02170|Vega:OTTHUMG00000021069 X|Y Xp22.33;Yp11 zinc finger, BED-type containing 1 protein-coding ZBED1 zinc finger, BED-type containing 1 O Ac-like transposable element|BED-type zinc finger domain-containing protein 1|DNA replication-related element binding factor|dREF homolog|zinc finger BED domain-containing protein 1 20121230 -9606 9191 DEDD KE05 CASP8IP1|DEDD1|DEFT|FLDED1 HGNC:2755|MIM:606841|Ensembl:ENSG00000158796|HPRD:06022|Vega:OTTHUMG00000033104 1 1q23.3 death effector domain containing protein-coding DEDD death effector domain containing O DEDPro1|FLDED-1|death effector domain-containing protein|death effector domain-containing testicular molecule 20121230 -9606 9193 SPG9 - - HGNC:11239|MIM:601162 10 10q23.3-q24.2 spastic paraplegia 9 (autosomal dominant) unknown SPG9 spastic paraplegia 9 (autosomal dominant) O - 20120622 -9606 9194 SLC16A7 - MCT2 HGNC:10928|MIM:603654|Ensembl:ENSG00000118596|HPRD:06791|Vega:OTTHUMG00000169923 12 12q13 solute carrier family 16, member 7 (monocarboxylic acid transporter 2) protein-coding SLC16A7 solute carrier family 16, member 7 (monocarboxylic acid transporter 2) O monocarboxylate transporter 2 20121230 -9606 9196 KCNAB3 - AKR6A9|KCNA3.1B|KCNA3B|KV-BETA-3 HGNC:6230|MIM:604111|Ensembl:ENSG00000170049|HPRD:04983|Vega:OTTHUMG00000108170 17 17p13.1 potassium voltage-gated channel, shaker-related subfamily, beta member 3 protein-coding KCNAB3 potassium voltage-gated channel, shaker-related subfamily, beta member 3 O K(+) channel subunit beta-3|potassium channel, voltage-dependent, beta-3 subunit|voltage-gated potassium channel subunit beta-3 20121230 -9606 9197 SLC33A1 - ACATN|AT-1|AT1|CCHLND|SPG42 HGNC:95|MIM:603690|Ensembl:ENSG00000169359|HPRD:04734|Vega:OTTHUMG00000158481 3 3q25.31 solute carrier family 33 (acetyl-CoA transporter), member 1 protein-coding SLC33A1 solute carrier family 33 (acetyl-CoA transporter), member 1 O acetyl-coenzyme A transporter 1 20121230 -9606 9198 PTPLC - - HGNC:9641 - - protein tyrosine phosphatase-like (proline instead of catalytic arginine), member c protein-coding PTPLC protein tyrosine phosphatase-like (proline instead of catalytic arginine), member c O - 20080828 -9606 9200 PTPLA - CAP|HACD1 HGNC:9639|MIM:610467|Ensembl:ENSG00000165996|HPRD:10175|Vega:OTTHUMG00000017750 10 10p14-p13 protein tyrosine phosphatase-like (proline instead of catalytic arginine), member A protein-coding PTPLA protein tyrosine phosphatase-like (proline instead of catalytic arginine), member A O 3-hydroxyacyl-CoA dehydratase 1|cementum attachment protein|protein-tyrosine phosphatase-like member A|very-long-chain (3R)-3-hydroxyacyl-[acyl-carrier protein] dehydratase 1 20121230 -9606 9201 DCLK1 RP11-113P14.1 CL1|CLICK1|DCAMKL1|DCDC3A|DCLK HGNC:2700|MIM:604742|Ensembl:ENSG00000133083|HPRD:09202|Vega:OTTHUMG00000016729 13 13q13 doublecortin-like kinase 1 protein-coding DCLK1 doublecortin-like kinase 1 O doublecortin and CaM kinase-like 1|doublecortin domain-containing protein 3A|doublecortin-like and CAM kinase-like 1|serine/threonine-protein kinase DCLK1 20121230 -9606 9202 ZMYM4 RP11-181E22.3 CDIR|MYM|ZNF198L3|ZNF262 HGNC:13055|MIM:613568|Ensembl:ENSG00000146463|HPRD:10326|Vega:OTTHUMG00000004241 1 1p32-p34 zinc finger, MYM-type 4 protein-coding ZMYM4 zinc finger, MYM-type 4 O cell death inhibiting RNA|zinc finger MYM-type protein 4|zinc finger protein 262 20121230 -9606 9203 ZMYM3 - DXS6673E|MYM|XFIM|ZNF198L2|ZNF261 HGNC:13054|MIM:300061|Ensembl:ENSG00000147130|HPRD:02088|Vega:OTTHUMG00000021799 X Xq13.1 zinc finger, MYM-type 3 protein-coding ZMYM3 zinc finger, MYM-type 3 O zinc finger MYM-type protein 3|zinc finger protein 261 20121230 -9606 9204 ZMYM6 RP11-244H3.3 Buster2|MYM|ZNF198L4|ZNF258 HGNC:13050|MIM:613567|Ensembl:ENSG00000163867|HPRD:10325|HPRD:17494|Vega:OTTHUMG00000004163 1 1p34.2 zinc finger, MYM-type 6 protein-coding ZMYM6 zinc finger, MYM-type 6 O zinc finger MYM-type protein 6|zinc finger protein 258|zinc finger, MYM-type containing 6 20121230 -9606 9205 ZMYM5 RP11-523H24.6 HSPC050|MYM|ZNF198L1|ZNF237 HGNC:13029|Ensembl:ENSG00000132950|Vega:OTTHUMG00000016504 13 13q12 zinc finger, MYM-type 5 protein-coding ZMYM5 zinc finger, MYM-type 5 O zinc finger MYM-type protein 5|zinc finger protein 198-like 1|zinc finger protein 237 20121230 -9606 9206 RAD17P2 - HRAD17P2 HGNC:9809 13 13q14.2 RAD17 homolog (S. pombe) pseudogene 2 pseudo RAD17P2 RAD17 homolog (S. pombe) pseudogene 2 O - 20121230 -9606 9207 RAD17P1 - HRAD17P1 HGNC:9808 7 7p21 RAD17 homolog (S. pombe) pseudogene 1 pseudo RAD17P1 RAD17 homolog (S. pombe) pseudogene 1 O - 20121230 -9606 9208 LRRFIP1 - FLAP-1|FLAP1|FLIIAP1|GCF-2|GCF2|HUFI-1|TRIP HGNC:6702|MIM:603256|Ensembl:ENSG00000124831|HPRD:04460|Vega:OTTHUMG00000133339 2 2q37.3 leucine rich repeat (in FLII) interacting protein 1 protein-coding LRRFIP1 leucine rich repeat (in FLII) interacting protein 1 O GC-binding factor 2|LRR FLII-interacting protein 1|NEDD8-conjugating enzyme|TAR RNA-interacting protein|leucine-rich repeat flightless-interacting protein 1 20121230 -9606 9209 LRRFIP2 - HUFI-2 HGNC:6703|MIM:614043|Ensembl:ENSG00000093167|HPRD:10061|Vega:OTTHUMG00000130796 3 3p22.2 leucine rich repeat (in FLII) interacting protein 2 protein-coding LRRFIP2 leucine rich repeat (in FLII) interacting protein 2 O LRR FLII-interacting protein 2|leucine-rich repeat flightless-interacting protein 2 20121230 -9606 9210 BMP15 - GDF9B|ODG2|POF4 HGNC:1068|MIM:300247|Ensembl:ENSG00000130385|HPRD:02216|Vega:OTTHUMG00000021525 X Xp11.2 bone morphogenetic protein 15 protein-coding BMP15 bone morphogenetic protein 15 O BMP-15|GDF-9B|growth/differentiation factor 9B 20121230 -9606 9211 LGI1 UNQ775/PRO1569 ADLTE|ADPAEF|ADPEAF|EPITEMPIN|EPT|ETL1|IB1099 HGNC:6572|MIM:604619|Ensembl:ENSG00000108231|HPRD:05216|Vega:OTTHUMG00000018777 10 10q24 leucine-rich, glioma inactivated 1 protein-coding LGI1 leucine-rich, glioma inactivated 1 O epitempin-1|leucine-rich glioma-inactivated protein 1 20121230 -9606 9212 AURKB - AIK2|AIM-1|AIM1|ARK2|AurB|IPL1|PPP1R48|STK12|STK5|aurkb-sv1|aurkb-sv2 HGNC:11390|MIM:604970|Ensembl:ENSG00000178999|HPRD:05397|Vega:OTTHUMG00000108189 17 17p13.1 aurora kinase B protein-coding AURKB aurora kinase B O ARK-2|STK-1|aurora 1|aurora kinase B-Sv1|aurora kinase B-Sv2|aurora- and Ipl1-like midbody-associated protein 1|aurora-1|aurora-B|aurora-related kinase 2|aurora/IPL1-related kinase 2|protein phosphatase 1, regulatory subunit 48|serine/threonine kinase 12|serine/threonine-protein kinase 12|serine/threonine-protein kinase 5|serine/threonine-protein kinase aurora-B 20121230 -9606 9213 XPR1 RP11-46A10.1 SYG1|X3 HGNC:12827|MIM:605237|Ensembl:ENSG00000143324|HPRD:05574|Vega:OTTHUMG00000035116 1 1q25.1 xenotropic and polytropic retrovirus receptor 1 protein-coding XPR1 xenotropic and polytropic retrovirus receptor 1 O X-receptor|protein SYG1 homolog|xenotropic and polytropic murine leukemia virus receptor X3 20121230 -9606 9214 FAIM3 - FCMR|TOSO HGNC:14315|MIM:606015|Ensembl:ENSG00000162894|HPRD:09349|Vega:OTTHUMG00000036457 1 1q32.1 Fas apoptotic inhibitory molecule 3 protein-coding FAIM3 Fas apoptotic inhibitory molecule 3 O Fc mu receptor|IgM Fc receptor|fas apoptotic inhibitory molecule 3|immunoglobulin mu Fc receptor|regulator of Fas-induced apoptosis Toso 20121230 -9606 9215 LARGE CTA-282F2.1 MDC1D|MDDGA6|MDDGB6 HGNC:6511|MIM:603590|Ensembl:ENSG00000133424|HPRD:04665|Vega:OTTHUMG00000150914 22 22q12.3 like-glycosyltransferase protein-coding LARGE like-glycosyltransferase O acetylglucosaminyltransferase-like 1A|acetylglucosaminyltransferase-like protein|glycosyltransferase-like protein LARGE1|like-acetylglucosaminyltransferase 20121230 -9606 9217 VAPB RP5-1018E9.1 ALS8|VAMP-B|VAP-B HGNC:12649|MIM:605704|Ensembl:ENSG00000124164|HPRD:09300|Vega:OTTHUMG00000032840 20 20q13.33 VAMP (vesicle-associated membrane protein)-associated protein B and C protein-coding VAPB VAMP (vesicle-associated membrane protein)-associated protein B and C O VAMP-associated 33 kDa protein|vesicle-associated membrane protein-associated protein B/C 20121230 -9606 9218 VAPA - VAP-33|VAP-A|VAP33|hVAP-33 HGNC:12648|MIM:605703|Ensembl:ENSG00000101558|HPRD:09299|Vega:OTTHUMG00000131603 18 18p11.22 VAMP (vesicle-associated membrane protein)-associated protein A, 33kDa protein-coding VAPA VAMP (vesicle-associated membrane protein)-associated protein A, 33kDa O 33 kDa VAMP-associated protein|VAMP-A|VAMP-associated protein A|vesicle-associated membrane protein-associated protein A 20121230 -9606 9219 MTA2 - MTA1L1|PID HGNC:7411|MIM:603947|Ensembl:ENSG00000149480|HPRD:07233|Vega:OTTHUMG00000167684 11 11q12-q13.1 metastasis associated 1 family, member 2 protein-coding MTA2 metastasis associated 1 family, member 2 O MTA1-L1 protein|metastasis -associated gene 1-like 1|metastasis associated gene family, member 2|metastasis-associated 1-like 1|metastasis-associated protein 2|metastasis-associated protein MTA2|p53 target protein in deacetylase complex 20121230 -9606 9220 TIAF1 - MAJN|SPR210 HGNC:11803|MIM:609517|Ensembl:ENSG00000221995|HPRD:10268|Vega:OTTHUMG00000163268 17 17q11.2 TGFB1-induced anti-apoptotic factor 1 protein-coding TIAF1 TGFB1-induced anti-apoptotic factor 1 O 12 kDa TGF-beta-1-induced antiapoptotic factor|TGF-beta-1-induced antiapoptotic factor 1|molecule associated with Jak-3 N-terminal 20121230 -9606 9221 NOLC1 - NOPP130|NOPP140|NS5ATP13|P130 HGNC:15608|MIM:602394|Ensembl:ENSG00000166197|Vega:OTTHUMG00000018944 10 10q24.32 nucleolar and coiled-body phosphoprotein 1 protein-coding NOLC1 nucleolar and coiled-body phosphoprotein 1 O 140 kDa nucleolar phosphoprotein|HCV NS5A trans-regulated protein 13|HCV NS5A-transactivated protein 13|hepatitis C virus NS5A-transactivated protein 13|nucleolar 130 kDa protein|nucleolar and coiled-body phosphprotein 1|nucleolar phosphoprotein p130|nucleolar protein p130 20121230 -9606 9223 MAGI1 - AIP-3|AIP3|BAIAP1|BAP-1|BAP1|MAGI-1|TNRC19|WWP3 HGNC:946|MIM:602625|Ensembl:ENSG00000151276|HPRD:04020|Vega:OTTHUMG00000157554 3 3p14.1 membrane associated guanylate kinase, WW and PDZ domain containing 1 protein-coding MAGI1 membrane associated guanylate kinase, WW and PDZ domain containing 1 O BAI1-associated protein 1|WW domain-containing protein 3|atrophin-1-interacting protein 3|membrane-associated guanylate kinase inverted 1|membrane-associated guanylate kinase, WW and PDZ domain-containing protein 1|trinucleotide repeat-containing gene 19 protein 20121230 -9606 9227 LRAT - LCA14 HGNC:6685|MIM:604863|Ensembl:ENSG00000121207|HPRD:05332|Vega:OTTHUMG00000161418 4 4q32.1 lecithin retinol acyltransferase (phosphatidylcholine--retinol O-acyltransferase) protein-coding LRAT lecithin retinol acyltransferase (phosphatidylcholine--retinol O-acyltransferase) O lecithin retinol acyltransferase 20121230 -9606 9228 DLGAP2 - DAP2|SAPAP2 HGNC:2906|MIM:605438|Ensembl:ENSG00000198010|HPRD:09258|Vega:OTTHUMG00000163599 8 8p23 discs, large (Drosophila) homolog-associated protein 2 protein-coding DLGAP2 discs, large (Drosophila) homolog-associated protein 2 O PSD-95/SAP90-binding protein 2|SAP90/PSD-95-associated protein 2|disks large-associated protein 2 20121230 -9606 9229 DLGAP1 - DAP-1|DAP-1-ALPHA|DAP-1-BETA|GKAP|SAPAP1|hGKAP HGNC:2905|MIM:605445|Ensembl:ENSG00000170579|HPRD:09260|Vega:OTTHUMG00000131537 18 18p11.31 discs, large (Drosophila) homolog-associated protein 1 protein-coding DLGAP1 discs, large (Drosophila) homolog-associated protein 1 O PSD-95/SAP90 binding protein 1|SAP90/PSD-95-associated protein 1|disks large-associated protein 1|guanylate kinase-associated protein 20121230 -9606 9230 RAB11B - H-YPT3 HGNC:9761|MIM:604198|Ensembl:ENSG00000185236|HPRD:05009 19 19p13.2 RAB11B, member RAS oncogene family protein-coding RAB11B RAB11B, member RAS oncogene family O GTP-binding protein YPT3|RAB11B, member of RAS oncogene family|ras-related protein Rab-11B 20121230 -9606 9231 DLG5 RP13-39P12.4 LP-DLG|P-DLG5|PDLG HGNC:2904|MIM:604090|Ensembl:ENSG00000151208|HPRD:04972|Vega:OTTHUMG00000018548 10 10q23 discs, large homolog 5 (Drosophila) protein-coding DLG5 discs, large homolog 5 (Drosophila) O discs large protein LP-DLG|discs large protein P-dlg|disks large homolog 5|large type of P-DLG|placenta and prostate DLG 20121230 -9606 9232 PTTG1 - EAP1|HPTTG|PTTG|TUTR1 HGNC:9690|MIM:604147|Ensembl:ENSG00000164611|HPRD:04998|Vega:OTTHUMG00000130328 5 5q35.1 pituitary tumor-transforming 1 protein-coding PTTG1 pituitary tumor-transforming 1 O ESP1-associated protein 1|pituitary tumor-transforming gene 1 protein|securin|tumor-transforming protein 1 20121230 -9606 9235 IL32 - IL-32alpha|IL-32beta|IL-32delta|IL-32gamma|NK4|TAIF|TAIFa|TAIFb|TAIFc|TAIFd HGNC:16830|MIM:606001|Ensembl:ENSG00000008517|HPRD:09346|Vega:OTTHUMG00000167498 16 16p13.3 interleukin 32 protein-coding IL32 interleukin 32 O interleukin-32|interleukin-32 eta|interleukin-32 small|interleukin-32 theta|natural killer cell transcript 4|natural killer cells protein 4|tumor necrosis factor alpha-inducing factor 20121230 -9606 9236 CCPG1 - CPR8 HGNC:24227|MIM:611326|Ensembl:ENSG00000260916|HPRD:09895|Vega:OTTHUMG00000172678 15 15q21.1 cell cycle progression 1 protein-coding CCPG1 cell cycle progression 1 O cell cycle progression protein 1|cell cycle progression restoration protein 8 20121230 -9606 9238 TBRG4 - CPR2|FASTKD4 HGNC:17443|MIM:611325|Ensembl:ENSG00000136270|HPRD:10263|Vega:OTTHUMG00000129247 7 7p13 transforming growth factor beta regulator 4 protein-coding TBRG4 transforming growth factor beta regulator 4 O FAST kinase domain-containing protein 4|FAST kinase domains 4|H_TD2522F11.8|cell cycle progression protein 2|cell cycle progression restoration protein 2|protein TBRG4 20121230 -9606 9240 PNMA1 - MA1 HGNC:9158|MIM:604010|Ensembl:ENSG00000176903|HPRD:04926|Vega:OTTHUMG00000169183 14 14q24.3 paraneoplastic Ma antigen 1 protein-coding PNMA1 paraneoplastic Ma antigen 1 O 37 kDa neuronal protein|neuron- and testis-specific protein 1|paraneoplastic antigen Ma1|paraneoplastic neuronal antigen MA1 20121230 -9606 9241 NOG - SYM1|SYNS1 HGNC:7866|MIM:602991|Ensembl:ENSG00000183691|HPRD:04291|Vega:OTTHUMG00000151770 17 17q22 noggin protein-coding NOG noggin O symphalangism 1 (proximal) 20121230 -9606 9242 MSC - ABF-1|ABF1|MYOR|bHLHa22 HGNC:7321|MIM:603628|Ensembl:ENSG00000178860|HPRD:04694|Vega:OTTHUMG00000164489 8 8q21 musculin protein-coding MSC musculin O activated B-cell factor 1, homolog of mouse musculin|activated B-cell factor-1|class A basic helix-loop-helix protein 22 20121230 -9606 9244 CRLF1 UNQ288/PRO327 CISS|CISS1|CLF|CLF-1|NR6|zcytor5 HGNC:2364|MIM:604237|Ensembl:ENSG00000006016|HPRD:09177 19 19p12 cytokine receptor-like factor 1 protein-coding CRLF1 cytokine receptor-like factor 1 O class I cytokine receptor|cytokine type 1 receptor CRLP-1|cytokine-like factor 1 20121230 -9606 9245 GCNT3 - C2/4GnT|C24GNT|C2GNT2|C2GNTM|GNTM HGNC:4205|MIM:606836|Ensembl:ENSG00000140297|HPRD:06018|Vega:OTTHUMG00000132726 15 15q21.3 glucosaminyl (N-acetyl) transferase 3, mucin type protein-coding GCNT3 glucosaminyl (N-acetyl) transferase 3, mucin type O C2GnT-mucin type|beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase 3|beta1,6-N-acetylglucosaminyltransferase-M|beta1,6GlcNAc-transferase|core 2/core 4 beta-1,6-N-acetylglucosaminyltransferase|hC2GnT-M|mucus-type core 2 beta-1,6-N-acetylglucosaminyltransferase 20121230 -9606 9246 UBE2L6 - RIG-B|UBCH8 HGNC:12490|MIM:603890|Ensembl:ENSG00000156587|HPRD:04867|Vega:OTTHUMG00000167047 11 11q12 ubiquitin-conjugating enzyme E2L 6 protein-coding UBE2L6 ubiquitin-conjugating enzyme E2L 6 O retinoic acid induced gene B protein|retinoic acid-induced gene B protein|ubiquitin carrier protein L6|ubiquitin-protein ligase L6|ubiquitin/ISG15-conjugating enzyme E2 L6 20121230 -9606 9247 GCM2 RP3-417M14.3 GCMB|hGCMb HGNC:4198|MIM:603716|Ensembl:ENSG00000124827|HPRD:04758|Vega:OTTHUMG00000014249 6 6p23 glial cells missing homolog 2 (Drosophila) protein-coding GCM2 glial cells missing homolog 2 (Drosophila) O GCM motif protein 2|chorion-specific transcription factor GCMb|glial cells missing 2|glial cells missing homolog b|glide/gcm protein homolog 20121230 -9606 9248 GPR50 - H9|Mel1c HGNC:4506|MIM:300207|Ensembl:ENSG00000102195|HPRD:02194|Vega:OTTHUMG00000024166 X Xq28 G protein-coupled receptor 50 protein-coding GPR50 G protein-coupled receptor 50 O melatonin-related receptor 20121230 -9606 9249 DHRS3 RP11-514N2.1 DD83.1|RDH17|Rsdr1|SDR1|SDR16C1|retSDR1 HGNC:17693|MIM:612830|Ensembl:ENSG00000162496|HPRD:09915|Vega:OTTHUMG00000001885 1 1p36.1 dehydrogenase/reductase (SDR family) member 3 protein-coding DHRS3 dehydrogenase/reductase (SDR family) member 3 O retinal short-chain dehydrogenase/reductase 1|short chain dehydrogenase/reductase family 16C, member 1|short-chain dehydrogenase/reductase 1|short-chain dehydrogenase/reductase 3 20121230 -9606 9252 RPS6KA5 - MSK1|MSPK1|RLPK HGNC:10434|MIM:603607|Ensembl:ENSG00000100784|HPRD:06789|Vega:OTTHUMG00000171055 14 14q31-q32.1 ribosomal protein S6 kinase, 90kDa, polypeptide 5 protein-coding RPS6KA5 ribosomal protein S6 kinase, 90kDa, polypeptide 5 O 90 kDa ribosomal protein S6 kinase 5|RSK-like protein kinase|RSKL|S6K-alpha-5|nuclear mitogen- and stress-activated protein kinase 1|ribosomal protein S6 kinase alpha-5 20121230 -9606 9253 NUMBL - CAG3A|CTG3a|NBL|NUMB-R|NUMBLIKE|NUMBR|TNRC23 HGNC:8061|MIM:604018|Ensembl:ENSG00000105245|HPRD:04931 19 19q13.13-q13.2 numb homolog (Drosophila)-like protein-coding NUMBL numb homolog (Drosophila)-like O numb homolog-like|numb-like protein|numb-related protein 20121230 -9606 9254 CACNA2D2 - CACNA2D|LUAC11.1 HGNC:1400|MIM:607082|Ensembl:ENSG00000007402|HPRD:06154|Vega:OTTHUMG00000156887 3 3p21.3 calcium channel, voltage-dependent, alpha 2/delta subunit 2 protein-coding CACNA2D2 calcium channel, voltage-dependent, alpha 2/delta subunit 2 O alpha 2 delta calcium channel subunit|gene 26|voltage-dependent calcium channel subunit alpha-2/delta-2|voltage-gated calcium channel subunit alpha-2/delta-2 20121230 -9606 9255 AIMP1 - EMAP2|EMAPII|HLD3|SCYE1|p43 HGNC:10648|MIM:603605|Ensembl:ENSG00000164022|HPRD:04676|Vega:OTTHUMG00000131217 4 4q24 aminoacyl tRNA synthetase complex-interacting multifunctional protein 1 protein-coding AIMP1 aminoacyl tRNA synthetase complex-interacting multifunctional protein 1 O ARS-interacting multifunctional protein 1|aminoacyl tRNA synthase complex-interacting multifunctional protein 1|endothelial monocyte-activating polypeptide 2|endothelial-monocyte activating polypeptide II|multisynthase complex auxiliary component p43|multisynthetase complex auxiliary component p43|small inducible cytokine subfamily E, member 1 (endothelial monocyte-activating) 20121230 -9606 9256 BZRAP1 - PBR-IP|PRAX-1|PRAX1|RIM-BP1|RIMBP1 HGNC:16831|MIM:610764|Ensembl:ENSG00000005379|HPRD:09832|Vega:OTTHUMG00000178923 17 17q22-q23 benzodiazapine receptor (peripheral) associated protein 1 protein-coding BZRAP1 benzodiazapine receptor (peripheral) associated protein 1 O RIMS-binding protein 1|peripheral benzodiazepine receptor-interacting protein|peripheral-type benzodiazepine receptor-associated protein 1 20121230 -9606 9258 MFHAS1 - LRRC65|MASL1 HGNC:16982|MIM:605352|Ensembl:ENSG00000147324|HPRD:12010|Vega:OTTHUMG00000163676 8 8p23.1 malignant fibrous histiocytoma amplified sequence 1 protein-coding MFHAS1 malignant fibrous histiocytoma amplified sequence 1 O MFH-amplified sequences with leucine-rich tandem repeats 1|leucine rich repeat containing 65|malignant fibrous histiocytoma-amplified sequence 1|malignant fibrous histiocytoma-amplified sequence with leucine-rich tandem repeats 1 20121230 -9606 9260 PDLIM7 - LMP1|LMP3 HGNC:22958|MIM:605903|Ensembl:ENSG00000196923|HPRD:10436|Vega:OTTHUMG00000130853 5 5q35.3 PDZ and LIM domain 7 (enigma) protein-coding PDLIM7 PDZ and LIM domain 7 (enigma) O 1110003B01Rik|LIM domain protein|LMP|Lim mineralization protein 3|PDZ and LIM domain protein 7|protein enigma 20121230 -9606 9261 MAPKAPK2 - MAPKAP-K2|MK-2|MK2 HGNC:6887|MIM:602006|Ensembl:ENSG00000162889|HPRD:11882|Vega:OTTHUMG00000036342 1 1q32 mitogen-activated protein kinase-activated protein kinase 2 protein-coding MAPKAPK2 mitogen-activated protein kinase-activated protein kinase 2 O MAP kinase-activated protein kinase 2|MAPK-activated protein kinase 2|MAPKAP kinase 2 20121230 -9606 9262 STK17B - DRAK2 HGNC:11396|MIM:604727|Ensembl:ENSG00000081320|HPRD:05289|Vega:OTTHUMG00000132735 2 2q32.3 serine/threonine kinase 17b protein-coding STK17B serine/threonine kinase 17b O DAP kinase-related apoptosis-inducing protein kinase 2|death-associated protein kinase-related 2|serine/threonine-protein kinase 17B 20121230 -9606 9263 STK17A - DRAK1 HGNC:11395|MIM:604726|Ensembl:ENSG00000164543|HPRD:05288|Vega:OTTHUMG00000022825 7 7p13 serine/threonine kinase 17a protein-coding STK17A serine/threonine kinase 17a O DAP kinase-related apoptosis-inducing protein kinase 1|death-associated protein kinase-related 1|serine/threonine kinase 17a (apoptosis-inducing)|serine/threonine-protein kinase 17A 20121230 -9606 9265 CYTH3 tcag7.847 ARNO3|GRP1|PSCD3 HGNC:9504|MIM:605081|Ensembl:ENSG00000008256|HPRD:05469|Vega:OTTHUMG00000023440 7 7p22.1 cytohesin 3 protein-coding CYTH3 cytohesin 3 O ARF nucleotide-binding site opener 3|PH, SEC7 and coiled-coil domain-containing protein 3|cytohesin-3|general receptor of phosphoinositides 1|pleckstrin homology, Sec7 and coiled-coil domains 3 20121230 -9606 9266 CYTH2 - ARNO|CTS18|CTS18.1|PSCD2|PSCD2L|SEC7L|Sec7p-L|Sec7p-like HGNC:9502|MIM:602488|Ensembl:ENSG00000105443|HPRD:03925|Vega:OTTHUMG00000150245 19 19q13.33 cytohesin 2 protein-coding CYTH2 cytohesin 2 O ARF exchange factor|ARF nucleotide-binding site opener|PH, SEC7 and coiled-coil domain-containing protein 2|cytohesin-2|pleckstrin homology, Sec7 and coiled-coil domains 2 (cytohesin-2)|pleckstrin homology, Sec7 and coiled/coil domains 2 (cytohesin-2) 20121230 -9606 9267 CYTH1 - B2-1|CYTOHESIN-1|D17S811E|PSCD1|SEC7 HGNC:9501|MIM:182115|Ensembl:ENSG00000108669|HPRD:01630|Vega:OTTHUMG00000150253 17 17q25 cytohesin 1 protein-coding CYTH1 cytohesin 1 O PH, SEC7 and coiled-coil domain-containing protein 1|SEC7 homolog B2-1|cytoadhesin 1|cytohesin-1|homolog of secretory protein SEC7|pleckstrin homology, Sec7 and coiled-coil domains 1 20121230 -9606 9270 ITGB1BP1 - ICAP-1A|ICAP-1B|ICAP-1alpha|ICAP1|ICAP1A|ICAP1B HGNC:23927|MIM:607153|Ensembl:ENSG00000119185|HPRD:06194|Vega:OTTHUMG00000090414 2 2p25.2 integrin beta 1 binding protein 1 protein-coding ITGB1BP1 integrin beta 1 binding protein 1 O ICAP-1|bodenin|integrin beta-1-binding protein 1|integrin cytoplasmic domain-associated protein 1|integrin cytoplasmic domain-associated protein 1-alpha|integrin cytoplasmic domain-associated protein 1-beta 20121230 -9606 9271 PIWIL1 - HIWI|MIWI|PIWI HGNC:9007|MIM:605571|Ensembl:ENSG00000125207|HPRD:10409|Vega:OTTHUMG00000168382 12 12q24.33 piwi-like 1 (Drosophila) protein-coding PIWIL1 piwi-like 1 (Drosophila) O piwi homolog|piwi-like protein 1 20121230 -9606 9274 BCL7C - - HGNC:1006|MIM:605847|Ensembl:ENSG00000099385|HPRD:05787|Vega:OTTHUMG00000177719 16 16p11 B-cell CLL/lymphoma 7C protein-coding BCL7C B-cell CLL/lymphoma 7C O B-cell CLL/lymphoma 7 protein family member C 20121230 -9606 9275 BCL7B - - HGNC:1005|MIM:605846|Ensembl:ENSG00000106635|HPRD:05786|Vega:OTTHUMG00000023412 7 7q11.23 B-cell CLL/lymphoma 7B protein-coding BCL7B B-cell CLL/lymphoma 7B O B-cell CLL/lymphoma 7 protein family member B 20121230 -9606 9276 COPB2 - beta'-COP HGNC:2232|MIM:606990|Ensembl:ENSG00000184432|HPRD:06103|Vega:OTTHUMG00000159959 3 3q23 coatomer protein complex, subunit beta 2 (beta prime) protein-coding COPB2 coatomer protein complex, subunit beta 2 (beta prime) O beta'-coat protein|betaprime-COP|coatomer binding complex, beta prime subunit|coatomer subunit beta'|p102 20121230 -9606 9277 WDR46 DADB-159G18.3 BING4|C6orf11|FP221|UTP7 HGNC:13923|MIM:611440|Ensembl:ENSG00000227057|HPRD:12839|Vega:OTTHUMG00000031192 6 6p21.3 WD repeat domain 46 protein-coding WDR46 WD repeat domain 46 O WD repeat-containing protein 46|WD repeat-containing protein BING4 20121230 -9606 9278 ZBTB22 DADB-159G18.8 BING1|ZBTB22A|ZNF297|ZNF297A|fru|fruitless HGNC:13085|MIM:611439|Ensembl:ENSG00000236104|HPRD:15761|Vega:OTTHUMG00000031110 6 6p21.3 zinc finger and BTB domain containing 22 protein-coding ZBTB22 zinc finger and BTB domain containing 22 O zinc finger and BTB domain-containing protein 22|zinc finger and BTB domain-containing protein 22A|zinc finger protein 297 20121230 -9606 9282 MED14 - CRSP150|CRSP2|CSRP|CXorf4|DRIP150|EXLM1|RGR1|TRAP170 HGNC:2370|MIM:300182|Ensembl:ENSG00000180182|HPRD:02172|Vega:OTTHUMG00000024107 X Xp11.4 mediator complex subunit 14 protein-coding MED14 mediator complex subunit 14 O ARC150|CRSP complex subunit 2|RGR1 homolog|activator-recruited cofactor 150 kDa component|cofactor required for Sp1 transcriptional activation, subunit 2 (150kD)|hRGR1|human homolog of yeast RGR1|mediator of RNA polymerase II transcription subunit 14|thyroid hormone receptor-associated protein complex 170 kDa component|thyroid hormone receptor-associated protein complex component TRAP170|transcriptional co-activator CRSP150|vitamin D receptor-interacting protein complex component DRIP150|vitamin D3 receptor-interacting protein complex 150 kDa component 20121230 -9606 9283 GPR37L1 - ET(B)R-LP-2|ETBR-LP-2 HGNC:14923|Ensembl:ENSG00000170075|HPRD:13603|Vega:OTTHUMG00000035924 1 1q32.1 G protein-coupled receptor 37 like 1 protein-coding GPR37L1 G protein-coupled receptor 37 like 1 O G-protein coupled receptor 37 like 1|G-protein coupled receptor 37-like 1|endothelin B receptor-like protein 2|endothelin type b receptor-like protein 2 20121230 -9606 9284 NPIP - morpheus HGNC:7909|MIM:606406|Ensembl:ENSG00000183426|HPRD:12101|Vega:OTTHUMG00000090663 16 16p13.11 nuclear pore complex interacting protein protein-coding NPIP nuclear pore complex interacting protein O nuclear pore complex-interacting protein 20121230 -9606 9287 TAAR2 - GPR58 HGNC:4514|MIM:604849|Ensembl:ENSG00000146378|HPRD:06887|Vega:OTTHUMG00000015585 6 6q24 trace amine associated receptor 2 protein-coding TAAR2 trace amine associated receptor 2 O G protein-coupled receptor 58|G-protein coupled receptor 58|taR-2|trace amine receptor 2|trace amine-associated receptor 2 20121230 -9606 9288 TAAR3 - GPR57|GPR58|TAAR2 HGNC:4513 6 6q23-q24 trace amine associated receptor 3 (gene/pseudogene) pseudo TAAR3 trace amine associated receptor 3 (gene/pseudogene) O - 20121230 -9606 9289 GPR56 UNQ540/PRO1083 BFPP|TM7LN4|TM7XN1 HGNC:4512|MIM:604110|Ensembl:ENSG00000205336|HPRD:06824|Vega:OTTHUMG00000176742 16 16q13 G protein-coupled receptor 56 protein-coding GPR56 G protein-coupled receptor 56 O 7-transmembrane protein with no EGF-like N-terminal domains-1|G-protein coupled receptor 56 20121230 -9606 9290 GPR55 - - HGNC:4511|MIM:604107|Ensembl:ENSG00000135898|HPRD:07248|Vega:OTTHUMG00000133224 2 2q37 G protein-coupled receptor 55 protein-coding GPR55 G protein-coupled receptor 55 O G-protein coupled receptor 55 20121230 -9606 9292 GPR53P - PsiGPR53|dJ271M21.8 HGNC:4509 6 6p21 G protein-coupled receptor 53, pseudogene pseudo GPR53P G protein-coupled receptor 53, pseudogene O - 20121230 -9606 9293 GPR52 - - HGNC:4508|MIM:604106|Ensembl:ENSG00000203737|HPRD:07247|Vega:OTTHUMG00000034901 1 1q24 G protein-coupled receptor 52 protein-coding GPR52 G protein-coupled receptor 52 O probable G-protein coupled receptor 52 20121230 -9606 9294 S1PR2 - AGR16|EDG-5|EDG5|Gpcr13|H218|LPB2|S1P2 HGNC:3169|MIM:605111|Ensembl:ENSG00000267534|HPRD:05488|Vega:OTTHUMG00000180399 19 19p13.2 sphingosine-1-phosphate receptor 2 protein-coding S1PR2 sphingosine-1-phosphate receptor 2 O S1P receptor 2|S1P receptor EDG5|S1P receptor Edg-5|endothelial differentiation G-protein coupled receptor 5|endothelial differentiation, sphingolipid G-protein-coupled receptor, 5|sphingosine 1-phosphate receptor 2|sphingosine 1-phosphate receptor Edg-5 20121230 -9606 9295 SRSF11 RP4-677H15.3 NET2|SFRS11|dJ677H15.2|p54 HGNC:10782|MIM:602010|Ensembl:ENSG00000116754|HPRD:03599|Vega:OTTHUMG00000009342 1 1p31 serine/arginine-rich splicing factor 11 protein-coding SRSF11 serine/arginine-rich splicing factor 11 O SR splicing factor 11|arginine-rich 54 kDa nuclear protein|splicing factor p54|splicing factor, arginine/serine-rich 11 20121230 -9606 9296 ATP6V1F - ATP6S14|VATF|Vma7 HGNC:16832|MIM:607160|Ensembl:ENSG00000128524|HPRD:06198|Vega:OTTHUMG00000158365 7 7q32 ATPase, H+ transporting, lysosomal 14kDa, V1 subunit F protein-coding ATP6V1F ATPase, H+ transporting, lysosomal 14kDa, V1 subunit F O ATPase, vacuolar, 14 kD|H(+)-transporting two-sector ATPase, 14kD subunit|V-ATPase 14 kDa subunit|V-ATPase F subunit|V-ATPase subunit F|V-type proton ATPase subunit F|adenosinetriphosphatase 14k chain|vacuolar ATP synthase subunit F|vacuolar proton pump F subunit|vacuolar proton pump subunit F 20121230 -9606 9297 SNORD29 - RNU29|U29 HGNC:10151|MIM:603228 11 11q13 small nucleolar RNA, C/D box 29 snoRNA SNORD29 small nucleolar RNA, C/D box 29 O - 20121230 -9606 9298 SNORD31 - RNU31|U31 HGNC:10158|MIM:603230 11 11q13 small nucleolar RNA, C/D box 31 snoRNA SNORD31 small nucleolar RNA, C/D box 31 O - 20121230 -9606 9299 SNORD30 - RNU30|U30 HGNC:10157|MIM:603229 11 11q13 small nucleolar RNA, C/D box 30 snoRNA SNORD30 small nucleolar RNA, C/D box 30 O - 20121230 -9606 9300 SNORD28 - RNU28|U28 HGNC:10150|MIM:603227 11 11q13 small nucleolar RNA, C/D box 28 snoRNA SNORD28 small nucleolar RNA, C/D box 28 O - 20121230 -9606 9301 SNORD27 - RNU27|U27 HGNC:10149|MIM:603226 11 11q13 small nucleolar RNA, C/D box 27 snoRNA SNORD27 small nucleolar RNA, C/D box 27 O - 20121230 -9606 9302 SNORD26 - RNU26|U26 HGNC:10148|MIM:603225 11 11q13 small nucleolar RNA, C/D box 26 snoRNA SNORD26 small nucleolar RNA, C/D box 26 O - 20121230 -9606 9303 SNORD25 - RNU25|U25 HGNC:10147|MIM:603224 11 11q13 small nucleolar RNA, C/D box 25 snoRNA SNORD25 small nucleolar RNA, C/D box 25 O - 20121230 -9606 9304 SNORD22 - RNU22|U22 HGNC:10145|MIM:603223 11 11q13 small nucleolar RNA, C/D box 22 snoRNA SNORD22 small nucleolar RNA, C/D box 22 O - 20121230 -9606 9306 SOCS6 - CIS-4|CIS4|HSPC060|SOCS-4|SOCS-6|SOCS4|SSI4|STAI4|STATI4 HGNC:16833|MIM:605118|Ensembl:ENSG00000170677|HPRD:05491|Vega:OTTHUMG00000132816 18 18q22.2 suppressor of cytokine signaling 6 protein-coding SOCS6 suppressor of cytokine signaling 6 O STAT induced STAT inhibitor-4|cytokine-inducible SH2 protein 4|suppressor of cytokine signaling 4 20121230 -9606 9308 CD83 - BL11|HB15 HGNC:1703|MIM:604534|Ensembl:ENSG00000112149|HPRD:05170|Vega:OTTHUMG00000014283 6 6p23 CD83 molecule protein-coding CD83 CD83 molecule O B-cell activation protein|CD83 antigen|CD83 antigen (activated B lymphocytes, immunoglobulin superfamily)|cell surface protein HB15|cell-surface glycoprotein|hCD83 20121230 -9606 9310 ZNF235 - ANF270|HZF6|ZFP93|ZNF270 HGNC:12866|MIM:604749|Ensembl:ENSG00000159917|HPRD:05299|Vega:OTTHUMG00000182353 19 19q13.2 zinc finger protein 235 protein-coding ZNF235 zinc finger protein 235 O zfp-93|zinc finger protein 270|zinc finger protein 6|zinc finger protein 93 homolog|zinc finger protein HZF6|zinc finger protein homologous to Zfp93 in mouse|zinc finger protein homologous to mouse Zfp93 20121230 -9606 9311 ASIC3 - ACCN3|DRASIC|SLNAC1|TNaC1 HGNC:101|MIM:611741|Ensembl:ENSG00000213199|HPRD:10626|Vega:OTTHUMG00000158685 7 7q35 acid-sensing (proton-gated) ion channel 3 protein-coding ASIC3 acid-sensing (proton-gated) ion channel 3 O acid-sensing ion channel 3|amiloride-sensitive cation channel 3, testis|modulatory subunit of ASIC2a|neuronal amiloride-sensitive cation channel 3|proton-gated cation channel subunit|testis sodium channel 1 20121230 -9606 9312 KCNB2 - KV2.2 HGNC:6232|MIM:607738|Ensembl:ENSG00000182674|HPRD:09666|Vega:OTTHUMG00000164498 8 8q13.2 potassium voltage-gated channel, Shab-related subfamily, member 2 protein-coding KCNB2 potassium voltage-gated channel, Shab-related subfamily, member 2 O delayed rectifier potassium channel protein|potassium channel Kv2.2|potassium voltage-gated channel subfamily B member 2|voltage-gated potassium channel subunit Kv2.2 20121230 -9606 9313 MMP20 - AI2A2|MMP-20 HGNC:7167|MIM:604629|Ensembl:ENSG00000137674|HPRD:05218|Vega:OTTHUMG00000168081 11 11q22.3 matrix metallopeptidase 20 protein-coding MMP20 matrix metallopeptidase 20 O enamel metalloproteinase|matrix metalloproteinase 20 (enamelysin)|matrix metalloproteinase-20 20121230 -9606 9314 KLF4 RP11-150J11.1 EZF|GKLF HGNC:6348|MIM:602253|Ensembl:ENSG00000136826|Vega:OTTHUMG00000020449 9 9q31 Kruppel-like factor 4 (gut) protein-coding KLF4 Kruppel-like factor 4 (gut) O Krueppel-like factor 4|endothelial Kruppel-like zinc finger protein|epithelial zinc finger protein EZF|gut-enriched krueppel-like factor 20121230 -9606 9315 NREP - C5orf13|D4S114|P311|PRO1873|PTZ17|SEZ17 HGNC:16834|MIM:607332|Ensembl:ENSG00000134986|HPRD:09545|Vega:OTTHUMG00000128795 5 5q22.1 neuronal regeneration related protein protein-coding NREP neuronal regeneration related protein O neuronal protein 3.1|neuronal regeneration related protein homolog|neuronal regeneration-related protein|protein p311 20121230 -9606 9317 PTER - HPHRP|RPR-1 HGNC:9590|MIM:604446|Ensembl:ENSG00000165983|HPRD:16061|Vega:OTTHUMG00000017737 10 10p12 phosphotriesterase related protein-coding PTER phosphotriesterase related O parathion hydrolase-related protein|phosphotriesterase-related protein|resiniferatoxin-binding, phosphotriesterase-related 20121230 -9606 9318 COPS2 - ALIEN|CSN2|SGN2|TRIP15 HGNC:30747|MIM:604508|Ensembl:ENSG00000166200|HPRD:05146|Vega:OTTHUMG00000172324 15 15q21.2 COP9 constitutive photomorphogenic homolog subunit 2 (Arabidopsis) protein-coding COPS2 COP9 constitutive photomorphogenic homolog subunit 2 (Arabidopsis) O COP9 signalosome complex subunit 2|JAB1-containing signalosome subunit 2|TR-interacting protein 15|TRIP-15|alien homolog|signalosome subunit 2|thyroid receptor interacting protein 15|thyroid receptor-interacting protein 15 20121230 -9606 9319 TRIP13 - 16E1BP HGNC:12307|MIM:604507|Ensembl:ENSG00000071539|HPRD:05145|Vega:OTTHUMG00000090349 5 5p15.33 thyroid hormone receptor interactor 13 protein-coding TRIP13 thyroid hormone receptor interactor 13 O 16E1-BP|HPV16 E1 protein binding protein|HPV16 E1 protein-binding protein|TR-interacting protein 13|TRIP-13|human papillomavirus type 16 E1 protein-binding protein|pachytene checkpoint protein 2 homolog|thyroid receptor interacting protein 13|thyroid receptor-interacting protein 13 20121230 -9606 9320 TRIP12 - ULF HGNC:12306|MIM:604506|Ensembl:ENSG00000153827|HPRD:05144|Vega:OTTHUMG00000153623 2 2q36.3 thyroid hormone receptor interactor 12 protein-coding TRIP12 thyroid hormone receptor interactor 12 O E3 ubiquitin-protein ligase TRIP12|E3 ubiquitin-protein ligase for Arf|TR-interacting protein 12|TRIP-12|probable E3 ubiquitin-protein ligase TRIP12|thyroid receptor interacting protein 12|thyroid receptor-interacting protein 12 20121230 -9606 9321 TRIP11 - ACG1A|CEV14|GMAP-210|TRIP-11|TRIP230 HGNC:12305|MIM:604505|Ensembl:ENSG00000100815|HPRD:05143|Vega:OTTHUMG00000171128 14 14q31-q32 thyroid hormone receptor interactor 11 protein-coding TRIP11 thyroid hormone receptor interactor 11 O Golgi-microtubule-associated protein of 210 kDa|TR-interacting protein 11|clonal evolution-related gene on chromosome 14 protein|golgi-associated microtubule-binding protein 210|thyroid receptor-interacting protein 11 20121230 -9606 9322 TRIP10 - CIP4|HSTP|STOT|STP HGNC:12304|MIM:604504|Ensembl:ENSG00000125733|HPRD:05142 19 19p13.3 thyroid hormone receptor interactor 10 protein-coding TRIP10 thyroid hormone receptor interactor 10 O TR-interacting protein 10|TRIP-10|cdc42-interacting protein 4|protein Felic|salt tolerant protein|salt tolerator|thyroid receptor interacting protein 10|thyroid receptor-interacting protein 10 20121230 -9606 9324 HMGN3 PNAS-24 PNAS-25|TRIP7 HGNC:12312|MIM:604502|Ensembl:ENSG00000118418|HPRD:16062|Vega:OTTHUMG00000015073 6 6q14.1 high mobility group nucleosomal binding domain 3 protein-coding HMGN3 high mobility group nucleosomal binding domain 3 O TR-interacting protein 7|high mobility group nucleosome-binding domain-containing protein 3|thyroid hormone receptor interacting protein 7 20121230 -9606 9325 TRIP4 - ASC-1|ASC1|HsT17391 HGNC:12310|MIM:604501|Ensembl:ENSG00000103671|HPRD:05140|Vega:OTTHUMG00000133033 15 15q22.31 thyroid hormone receptor interactor 4 protein-coding TRIP4 thyroid hormone receptor interactor 4 O TR-interacting protein 4|TRIP-4|activating signal cointegrator 1|thyroid receptor interacting protein 4|thyroid receptor-interacting protein 4 20121230 -9606 9326 ZNHIT3 - TRIP3 HGNC:12309|MIM:604500|Ensembl:ENSG00000108278|HPRD:05139|Vega:OTTHUMG00000133065 17 17q12 zinc finger, HIT-type containing 3 protein-coding ZNHIT3 zinc finger, HIT-type containing 3 O HNF-4a coactivator|TR-interacting protein 3|TRIP-3|thyroid hormone receptor interactor 3|thyroid receptor interacting protein 3|thyroid receptor-interacting protein 3|zinc finger HIT domain-containing protein 3|zinc finger, HIT domain containing 3|zinc finger, HIT type 3 20121230 -9606 9328 GTF3C5 RP11-326L24.5 TFIIIC63|TFIIICepsilon|TFiiiC2-63 HGNC:4668|MIM:604890|Ensembl:ENSG00000148308|HPRD:16077|Vega:OTTHUMG00000020856 9 9q34 general transcription factor IIIC, polypeptide 5, 63kDa protein-coding GTF3C5 general transcription factor IIIC, polypeptide 5, 63kDa O TF3C-epsilon|TFIIIC 63 kDa subunit|general transcription factor 3C polypeptide 5|transcription factor IIIC 63 kDa subunit|transcription factor IIIC subunit epsilon|transcription factor IIIC, 63 kD 20121230 -9606 9329 GTF3C4 - KAT12|TFIII90|TFIIIC290|TFIIIC90|TFIIICDELTA HGNC:4667|MIM:604892|Ensembl:ENSG00000125484|HPRD:11998|Vega:OTTHUMG00000020842 9 9q34.13 general transcription factor IIIC, polypeptide 4, 90kDa protein-coding GTF3C4 general transcription factor IIIC, polypeptide 4, 90kDa O TF3C-delta|TFIIIC 90 kDa subunit|general transcription factor 3C 4|general transcription factor 3C polypeptide 4|transcription factor IIIC 90 kDa subunit|transcription factor IIIC subunit delta 20121230 -9606 9330 GTF3C3 - TFIIIC102|TFIIICgamma|TFiiiC2-102 HGNC:4666|MIM:604888|Ensembl:ENSG00000119041|HPRD:11997|Vega:OTTHUMG00000154633 2 2q33.1 general transcription factor IIIC, polypeptide 3, 102kDa protein-coding GTF3C3 general transcription factor IIIC, polypeptide 3, 102kDa O TF3C-gamma|TFIIIC 102 kDa subunit|general transcription factor 3C polypeptide 3|transcription factor IIIC subunit gamma 20121230 -9606 9331 B4GALT6 - B4Gal-T6|beta4Gal-T6 HGNC:929|MIM:604017|Ensembl:ENSG00000118276|HPRD:06808|Vega:OTTHUMG00000131980 18 18q11 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 6 protein-coding B4GALT6 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 6 O UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 6|UDP-Gal:glucosylceramide beta-1,4-galactosyltransferase|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 6|beta-1,4-GalTase 6|beta-1,4-galactosyltransferase 6|beta4GalT-VI 20121230 -9606 9332 CD163 - M130|MM130 HGNC:1631|MIM:605545|Ensembl:ENSG00000177575|HPRD:05708|Vega:OTTHUMG00000168353 12 12p13.3 CD163 molecule protein-coding CD163 CD163 molecule O hemoglobin scavenger receptor|macrophage-associated antigen|scavenger receptor cysteine-rich type 1 protein M130 20121230 -9606 9333 TGM5 - TGASE5|TGASEX|TGM6|TGMX|TGX HGNC:11781|MIM:603805|Ensembl:ENSG00000104055|HPRD:11949|Vega:OTTHUMG00000176488 15 15q15.2 transglutaminase 5 protein-coding TGM5 transglutaminase 5 O TG(X)|TGase X|TGase-5|protein-glutamine gamma-glutamyltransferase 5|transglutaminase V|transglutaminase X|transglutaminase-5 20121230 -9606 9334 B4GALT5 RP5-1063B2.1 B4Gal-T5|BETA4-GALT-IV|beta4Gal-T5|beta4GalT-V|gt-V HGNC:928|MIM:604016|Ensembl:ENSG00000158470|HPRD:06807|Vega:OTTHUMG00000033086 20 20q13.1-q13.2 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 5 protein-coding B4GALT5 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 5 O UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 5|UDP-Gal:betaGlcNAc beta 1,4-galactosyltransferase, polypeptide 5|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 5|beta-1,4-GalT II|beta-1,4-GalT IV|beta-1,4-GalTase 5|beta-1,4-galactosyltransferase 5|beta-1.4-galactosyltransferase V|beta4-GalT IV 20121230 -9606 9337 CNOT8 - CAF1|CALIF|POP2|hCAF1 HGNC:9207|MIM:603731|Ensembl:ENSG00000155508|HPRD:07225|Vega:OTTHUMG00000130192 5 5q31-q33 CCR4-NOT transcription complex, subunit 8 protein-coding CNOT8 CCR4-NOT transcription complex, subunit 8 O CAF1-like protein|CAF2|CALIFp|CCR4-NOT transcription complex subunit 8|CCR4-associated factor 8|PGK promoter directed over production 20121230 -9606 9338 TCEAL1 - SIIR|p21|pp21 HGNC:11616|MIM:300237|Ensembl:ENSG00000172465|HPRD:02211|Vega:OTTHUMG00000022699 X Xq22.1 transcription elongation factor A (SII)-like 1 protein-coding TCEAL1 transcription elongation factor A (SII)-like 1 O TCEA-like protein 1|nuclear phosphoprotein p21/SIIR|transcription elongation factor A protein-like 1|transcription elongation factor S-II protein-like 1 20121230 -9606 9340 GLP2R - - HGNC:4325|MIM:603659|Ensembl:ENSG00000065325|HPRD:04713|Vega:OTTHUMG00000130269 17 17p13.3 glucagon-like peptide 2 receptor protein-coding GLP2R glucagon-like peptide 2 receptor O GLP-2 receptor|GLP-2-R|GLP-2R 20121230 -9606 9341 VAMP3 - CEB HGNC:12644|MIM:603657|Ensembl:ENSG00000049245|HPRD:04711|Vega:OTTHUMG00000001225 1 1p36.23 vesicle-associated membrane protein 3 protein-coding VAMP3 vesicle-associated membrane protein 3 O VAMP-3|cellubrevin|synaptobrevin-3 20121230 -9606 9342 SNAP29 - CEDNIK|SNAP-29 HGNC:11133|MIM:604202|Ensembl:ENSG00000099940|HPRD:11968|Vega:OTTHUMG00000150765 22 22q11.21 synaptosomal-associated protein, 29kDa protein-coding SNAP29 synaptosomal-associated protein, 29kDa O soluble 29 kDa NSF attachment protein|synaptosomal-associated protein 29|vesicle-membrane fusion protein SNAP-29 20121230 -9606 9343 EFTUD2 - MFDM|Snrp116|Snu114|U5-116KD HGNC:30858|MIM:603892|Ensembl:ENSG00000108883|HPRD:04869|Vega:OTTHUMG00000179865 17 17q21.31 elongation factor Tu GTP binding domain containing 2 protein-coding EFTUD2 elongation factor Tu GTP binding domain containing 2 O 116 kDa U5 small nuclear ribonucleoprotein component|SNU114 homolog|U5 snRNP-specific protein, 116 kDa|elongation factor Tu GTP-binding domain-containing protein 2|hSNU114 20121230 -9606 9344 TAOK2 UNQ2971/PRO7431 MAP3K17|PSK|PSK1|PSK1-BETA|TAO1|TAO2 HGNC:16835|MIM:613199|Ensembl:ENSG00000149930|HPRD:18147|Vega:OTTHUMG00000132111 16 16p11.2 TAO kinase 2 protein-coding TAOK2 TAO kinase 2 O PSK-1|hKFC-C|kinase from chicken homolog C|prostate derived STE20-like kinase PSK|prostate-derived STE20-like kinase 1|prostate-derived sterile 20-like kinase 1|serine/threonine-protein kinase TAO2|thousand and one amino acid protein kinase 2 20121230 -9606 9348 NDST3 UNQ2544 HSST3 HGNC:7682|MIM:603950|Ensembl:ENSG00000164100|Vega:OTTHUMG00000132959 4 4q26 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 3 protein-coding NDST3 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 3 O GlcNAc N-deacetylase/ N-sulfotransferase 3|N-HSST 3|N-heparan sulfate sulfotransferase 3|NDST-3|bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 3|glucosaminyl N-deacetylase/N-sulfotransferase 3|hNDST-3 20121230 -9606 9349 RPL23 - L23|rpL17 HGNC:10316|MIM:603662|Ensembl:ENSG00000125691|HPRD:04716|Vega:OTTHUMG00000133118 17 17q ribosomal protein L23 protein-coding RPL23 ribosomal protein L23 O 60S ribosomal protein L17|60S ribosomal protein L23|ribosomal protein L17 20121230 -9606 9350 CER1 - DAND4 HGNC:1862|MIM:603777|Ensembl:ENSG00000147869|HPRD:04802|Vega:OTTHUMG00000021022 9 9p23-p22 cerberus 1, cysteine knot superfamily, homolog (Xenopus laevis) protein-coding CER1 cerberus 1, cysteine knot superfamily, homolog (Xenopus laevis) O DAN domain family member 4|cerberus|cerberus-related 1|cerberus-related protein 20121230 -9606 9351 SLC9A3R2 - E3KARP|NHE3RF2|NHERF-2|NHERF2|OCTS2|SIP-1|SIP1|TKA-1 HGNC:11076|MIM:606553|Ensembl:ENSG00000065054|HPRD:05946|Vega:OTTHUMG00000176956 16 16p13.3 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 regulator 2 protein-coding SLC9A3R2 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 regulator 2 O NHE3 kinase A regulatory protein E3KARP|NHE3 regulatory factor 2|Na(+)/H(+) exchange regulatory cofactor NHE-RF2|SRY-interacting protein 1|sodium/hydrogen exchanger 3 kinase A regulatory protein|solute carrier family 9 (sodium/hydrogen exchanger), isoform 3 regulator 2|solute carrier family 9 (sodium/hydrogen exchanger), isoform 3 regulatory factor 2|solute carrier family 9 (sodium/hydrogen exchanger), member 3 regulator 2|solute carrier family 9 isoform A3 regulatory factor 2|tyrosine kinase activator protein 1 20121230 -9606 9352 TXNL1 - TRP32|TXL-1|TXNL|Txl HGNC:12436|MIM:603049|Ensembl:ENSG00000091164|HPRD:04335|Vega:OTTHUMG00000132722 18 18q21.31 thioredoxin-like 1 protein-coding TXNL1 thioredoxin-like 1 O 32 kDa thioredoxin-related protein|thioredoxin-like protein 1|thioredoxin-related 32 kDa protein|thioredoxin-related protein 1 20121230 -9606 9353 SLIT2 - SLIL3|Slit-2 HGNC:11086|MIM:603746|Ensembl:ENSG00000145147|HPRD:04776|Vega:OTTHUMG00000128551 4 4p15.2 slit homolog 2 (Drosophila) protein-coding SLIT2 slit homolog 2 (Drosophila) O slit homolog 2 protein 20121230 -9606 9354 UBE4A - E4|UBOX2|UFD2 HGNC:12499|MIM:603753|Ensembl:ENSG00000110344|HPRD:06793|Vega:OTTHUMG00000168100 11 11q23.3 ubiquitination factor E4A protein-coding UBE4A ubiquitination factor E4A O ubiquitin conjugation factor E4 A|ubiquitination factor E4A (UFD2 homolog, yeast) 20121230 -9606 9355 LHX2 - LH2|hLhx2 HGNC:6594|MIM:603759|Ensembl:ENSG00000106689|HPRD:04786|Vega:OTTHUMG00000020647 9 9q33.3 LIM homeobox 2 protein-coding LHX2 LIM homeobox 2 O LIM HOX gene 2|LIM homeobox protein 2|LIM/homeobox protein Lhx2|homeobox protein LH-2 20121230 -9606 9356 SLC22A6 - HOAT1|OAT1|PAHT|ROAT1 HGNC:10970|MIM:607582|Ensembl:ENSG00000197901|HPRD:12125|Vega:OTTHUMG00000167767 11 11q12.3 solute carrier family 22 (organic anion transporter), member 6 protein-coding SLC22A6 solute carrier family 22 (organic anion transporter), member 6 O PAH transporter|hPAHT|hROAT1|organic anion transporter 1|para-aminohippurate transporter|renal organic anion transporter 1|solute carrier family 22 member 6 20121230 -9606 9358 ITGBL1 - OSCP|TIED HGNC:6164|MIM:604234|Ensembl:ENSG00000198542|HPRD:07253|Vega:OTTHUMG00000017296 13 13q33 integrin, beta-like 1 (with EGF-like repeat domains) protein-coding ITGBL1 integrin, beta-like 1 (with EGF-like repeat domains) O integrin beta-like protein 1|osteoblast-specific cysteine-rich protein|ten integrin EGF-like repeat domain-containing protein 20121230 -9606 9360 PPIG - CARS-Cyp|CYP|SCAF10|SRCyp HGNC:14650|MIM:606093|Ensembl:ENSG00000138398|HPRD:12083|Vega:OTTHUMG00000132206 2 2q31.1 peptidylprolyl isomerase G (cyclophilin G) protein-coding PPIG peptidylprolyl isomerase G (cyclophilin G) O CARS-cyclophilin|CASP10|Clk-associating RS-cyclophilin|PPIase G|SR-cyclophilin|SR-cyp|SR-related CTD-associated factor 10|cyclophilin G|peptidyl-prolyl cis-trans isomerase G|peptidyl-prolyl isomerase G (cyclophilin G)|rotamase G 20121230 -9606 9361 LONP1 - LON|LONP|LonHS|PIM1|PRSS15|hLON HGNC:9479|MIM:605490|Ensembl:ENSG00000196365|HPRD:05689|Vega:OTTHUMG00000180504 19 19p13.2 lon peptidase 1, mitochondrial protein-coding LONP1 lon peptidase 1, mitochondrial O Lon protease-like protein|hLON ATP-dependent protease|lon protease homolog, mitochondrial|mitochondrial ATP-dependent protease Lon|mitochondrial lon peptidase 1|mitochondrial lon protease-like protein|protease, serine, 15|serine protease 15 20121230 -9606 9362 CPNE6 - N-COPINE HGNC:2319|MIM:605688|Ensembl:ENSG00000100884|HPRD:05748|Vega:OTTHUMG00000028781 14 14q11.2 copine VI (neuronal) protein-coding CPNE6 copine VI (neuronal) O copine-6|neuronal copine|neuronal-copine 20121230 -9606 9363 RAB33A RP3-438D16.1 RabS10 HGNC:9773|MIM:300333|Ensembl:ENSG00000134594|HPRD:02272|Vega:OTTHUMG00000022391 X Xq26.1 RAB33A, member RAS oncogene family protein-coding RAB33A RAB33A, member RAS oncogene family O Small GTP-binding protein S10|ras-related protein Rab-33A 20121230 -9606 9364 RAB28 - - HGNC:9768|MIM:612994|Ensembl:ENSG00000157869|HPRD:06699|Vega:OTTHUMG00000090543 4 4p15.33 RAB28, member RAS oncogene family protein-coding RAB28 RAB28, member RAS oncogene family O ras-related protein Rab-28 20121230 -9606 9365 KL - - HGNC:6344|MIM:604824|Ensembl:ENSG00000133116|HPRD:05316|Vega:OTTHUMG00000017408 13 13q12 klotho protein-coding KL klotho O - 20121230 -9606 9366 RAB9BP1 - RAB9P1 HGNC:9793 5 5q21.2 RAB9B, member RAS oncogene family pseudogene 1 pseudo RAB9BP1 RAB9B, member RAS oncogene family pseudogene 1 O - 20121230 -9606 9367 RAB9A - RAB9 HGNC:9792|MIM:300284|Ensembl:ENSG00000123595|HPRD:02236|Vega:OTTHUMG00000021156 X Xp22.2 RAB9A, member RAS oncogene family protein-coding RAB9A RAB9A, member RAS oncogene family O RAB9, member RAS oncogene family|ras-related protein Rab-9A 20121230 -9606 9368 SLC9A3R1 - EBP50|NHERF|NHERF-1|NHERF1|NPHLOP2 HGNC:11075|MIM:604990|Ensembl:ENSG00000109062|HPRD:05406|Vega:OTTHUMG00000178863 17 17q25.1 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 regulator 1 protein-coding SLC9A3R1 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 regulator 1 O Na(+)/H(+) exchange regulatory cofactor NHE-RF1|Na+/H+ exchange regulatory co-factor|ezrin-radixin-moesin binding phosphoprotein-50|ezrin-radixin-moesin-binding phosphoprotein 50|regulatory cofactor of Na(+)/H(+) exchanger|solute carrier family 9 (sodium/hydrogen exchanger), isoform 3 regulatory factor 1|solute carrier family 9 isoform A3 regulatory factor 1 20121230 -9606 9369 NRXN3 - C14orf60 HGNC:8010|MIM:600567|Ensembl:ENSG00000021645|HPRD:08989|Vega:OTTHUMG00000171502 14 14q31 neurexin 3 protein-coding NRXN3 neurexin 3 O neurexin III 20121230 -9606 9370 ADIPOQ - ACDC|ACRP30|ADIPQTL1|ADPN|APM-1|APM1|GBP28 HGNC:13633|MIM:605441|Ensembl:ENSG00000181092|HPRD:05671|Vega:OTTHUMG00000156521 3 3q27 adiponectin, C1Q and collagen domain containing protein-coding ADIPOQ adiponectin, C1Q and collagen domain containing O 30 kDa adipocyte complement-related protein|adipocyte complement-related 30 kDa protein|adiponectin|adipose most abundant gene transcript 1 protein|adipose specific collagen-like factor|gelatin-binding protein 28 20121230 -9606 9371 KIF3B - FLA8|HH0048|KLP-11 HGNC:6320|MIM:603754|Ensembl:ENSG00000101350|HPRD:04781|Vega:OTTHUMG00000032214 20 20q11.21 kinesin family member 3B protein-coding KIF3B kinesin family member 3B O kinesin-like protein KIF3B|microtubule plus end-directed kinesin motor 3B 20121230 -9606 9372 ZFYVE9 - MADHIP|NSP|SARA|SMADIP HGNC:6775|MIM:603755|Ensembl:ENSG00000157077|HPRD:04782|Vega:OTTHUMG00000008061 1 1p32.3 zinc finger, FYVE domain containing 9 protein-coding ZFYVE9 zinc finger, FYVE domain containing 9 O MAD homolog interacting protein|MAD, mothers against decapentaplegic homolog interacting protein, receptor activation anchor|MADH-interacting protein|hSARA|mothers against decapentaplegic homolog interacting protein|mothers against decapentaplegic homolog-interacting protein|novel serine protease|receptor activation anchor|smad anchor for receptor activation|zinc finger FYVE domain-containing protein 9 20121230 -9606 9373 PLAA - DOA1|PLA2P|PLAP HGNC:9043|MIM:603873|Ensembl:ENSG00000137055|HPRD:04850|Vega:OTTHUMG00000019708 9 9p21 phospholipase A2-activating protein protein-coding PLAA phospholipase A2-activating protein O DOA1 homolog|phospholipase A-2-activating protein|phospholipase A2 activating protein 20121230 -9606 9374 PPT2 DAAP-218M18.9 C6orf8|G14|PPT-2 HGNC:9326|MIM:603298|Ensembl:ENSG00000221988|Ensembl:ENSG00000258388|HPRD:04486|Vega:OTTHUMG00000031257 6 6p21.3 palmitoyl-protein thioesterase 2 protein-coding PPT2 palmitoyl-protein thioesterase 2 O S-thioesterase G14|VE-statin2|lysosomal thioesterase PPT2|palmitoyl-protein hydrolase 2 20121230 -9606 9375 TM9SF2 - P76 HGNC:11865|MIM:604678|Ensembl:ENSG00000125304|HPRD:09198|Vega:OTTHUMG00000017272 13 13q32.3 transmembrane 9 superfamily member 2 protein-coding TM9SF2 transmembrane 9 superfamily member 2 O 76 kDa membrane protein|transmembrane protein 9 superfamily member 2 20121230 -9606 9376 SLC22A8 - OAT3 HGNC:10972|MIM:607581|Ensembl:ENSG00000149452|Vega:OTTHUMG00000167768 11 11q11 solute carrier family 22 (organic anion transporter), member 8 protein-coding SLC22A8 solute carrier family 22 (organic anion transporter), member 8 O hOAT3|organic anion transporter 3|solute carrier family 22 member 8 20121230 -9606 9377 COX5A - COX|COX-VA|VA HGNC:2267|MIM:603773|Ensembl:ENSG00000178741|HPRD:04799|Vega:OTTHUMG00000142825 15 15q24.1 cytochrome c oxidase subunit Va protein-coding COX5A cytochrome c oxidase subunit Va O cytochrome c oxidase polypeptide Va|cytochrome c oxidase polypeptide, mitochondrial|cytochrome c oxidase subunit 5A, mitochondrial|mitochondrial cytochrome c oxidase subunit Va 20121230 -9606 9378 NRXN1 - Hs.22998|PTHSL2|SCZD17 HGNC:8008|MIM:600565|Ensembl:ENSG00000179915|HPRD:11858|Vega:OTTHUMG00000129263 2 2p16.3 neurexin 1 protein-coding NRXN1 neurexin 1 O neurexin I|neurexin-1-beta 20121230 -9606 9379 NRXN2 - - HGNC:8009|MIM:600566|Ensembl:ENSG00000110076|HPRD:11859|Vega:OTTHUMG00000045214 11 11q13 neurexin 2 protein-coding NRXN2 neurexin 2 O neurexin II|neurexin-2-beta 20121230 -9606 9380 GRHPR RP11-397D12.2 GLXR|GLYD|PH2 HGNC:4570|MIM:604296|Ensembl:ENSG00000137106|HPRD:05052|Vega:OTTHUMG00000019914 9 9q12 glyoxylate reductase/hydroxypyruvate reductase protein-coding GRHPR glyoxylate reductase/hydroxypyruvate reductase O glycerate-2-dehydrogenase 20121230 -9606 9381 OTOF - AUNB1|DFNB6|DFNB9|FER1L2|NSRD9 HGNC:8515|MIM:603681|Ensembl:ENSG00000115155|HPRD:04727|Vega:OTTHUMG00000096977 2 2p23.1 otoferlin protein-coding OTOF otoferlin O fer-1-like protein 2|otoferlin transcript variant 46-48 20121230 -9606 9382 COG1 - CDG2G|LDLB HGNC:6545|MIM:606973|Ensembl:ENSG00000166685|HPRD:07371|Vega:OTTHUMG00000178344 17 17q25.1 component of oligomeric golgi complex 1 protein-coding COG1 component of oligomeric golgi complex 1 O COG complex subunit 1|conserved oligomeric Golgi complex protein 1|conserved oligomeric Golgi complex subunit 1|low density lipoprotein receptor defect B complementing 20121230 -9606 9383 TSIX - LINC00013|NCRNA00013|XIST-AS|XIST-AS1|XISTAS HGNC:12377|MIM:300181 X Xq13.2 TSIX transcript, XIST antisense RNA miscRNA TSIX TSIX transcript, XIST antisense RNA O - 20121230 -9606 9384 COX6CP1 - - HGNC:2286 16 16p12 cytochrome c oxidase subunit VIc pseudogene 1 pseudo COX6CP1 cytochrome c oxidase subunit VIc pseudogene 1 O - 20121230 -9606 9385 COX5AP1 - - HGNC:2268 14 14q22 cytochrome c oxidase subunit Va pseudogene 1 pseudo COX5AP1 cytochrome c oxidase subunit Va pseudogene 1 O - 20121230 -9606 9386 COX7CP1 - - HGNC:2293 13 13q14-q21 cytochrome c oxidase subunit VIIc pseudogene 1 pseudo COX7CP1 cytochrome c oxidase subunit VIIc pseudogene 1 O - 20121230 -9606 9388 LIPG UNQ387/PRO719 EDL|EL|PRO719 HGNC:6623|MIM:603684|Ensembl:ENSG00000101670|HPRD:04730|Vega:OTTHUMG00000179658 18 18q21.1 lipase, endothelial protein-coding LIPG lipase, endothelial O endothelial cell-derived lipase|endothelial lipase|lipoprotein lipase H 20121230 -9606 9389 SLC22A14 - OCTL2|OCTL4|ORCTL4 HGNC:8495|MIM:604048|Ensembl:ENSG00000144671|HPRD:06811|Vega:OTTHUMG00000131082 3 3p21.3 solute carrier family 22, member 14 protein-coding SLC22A14 solute carrier family 22, member 14 O ORCTL-4|organic cation transporter-like 4|organic cationic transporter-like 4|solute carrier family 22 (organic cation transporter), member 14|solute carrier family 22 member 14 20121230 -9606 9390 SLC22A13 - OAT10|OCTL1|OCTL3|ORCTL-3|ORCTL3 HGNC:8494|MIM:604047|Ensembl:ENSG00000172940|HPRD:06810|Vega:OTTHUMG00000131086 3 3p21.3 solute carrier family 22 (organic anion transporter), member 13 protein-coding SLC22A13 solute carrier family 22 (organic anion transporter), member 13 O organic cation transporter-like 3|organic cationic transporter-like 3|organic-cation transporter like 3|solute carrier family 22 member 13|solute carrier family 22, member 13 20121230 -9606 9391 CIAO1 - CIA1|WDR39 HGNC:14280|MIM:604333|Ensembl:ENSG00000144021|HPRD:16057|Vega:OTTHUMG00000130452 2 2q11.2 cytosolic iron-sulfur protein assembly 1 protein-coding CIAO1 cytosolic iron-sulfur protein assembly 1 O WD repeat domain 39|WD repeat-containing protein 39|WD40 protein Ciao1|cytosolic iron-sulfur protein assembly 1 homolog|probable cytosolic iron-sulfur protein assembly protein CIAO1 20121230 -9606 9392 TGFBRAP1 - TRAP-1|TRAP1 HGNC:16836|MIM:606237|Ensembl:ENSG00000135966|HPRD:06948|Vega:OTTHUMG00000130809 2 2q12.1 transforming growth factor, beta receptor associated protein 1 protein-coding TGFBRAP1 transforming growth factor, beta receptor associated protein 1 O TGF beta receptor associated protein -1|TGF-beta receptor-associated protein 1|transforming growth factor-beta receptor-associated protein 1 20121230 -9606 9394 HS6ST1 - HH15|HS6ST HGNC:5201|MIM:604846|Ensembl:ENSG00000136720|HPRD:07274|Vega:OTTHUMG00000153542 2 2q21 heparan sulfate 6-O-sulfotransferase 1 protein-coding HS6ST1 heparan sulfate 6-O-sulfotransferase 1 O HS6ST-1|heparan-sulfate 6-O-sulfotransferase 1|heparan-sulfate 6-sulfotransferase 20121230 -9606 9397 NMT2 RP11-455B2.2 - HGNC:7858|MIM:603801|Ensembl:ENSG00000152465|HPRD:11948|Vega:OTTHUMG00000017723 10 10p13 N-myristoyltransferase 2 protein-coding NMT2 N-myristoyltransferase 2 O NMT 2|glycylpeptide N-tetradecanoyltransferase 2|myristoyl-CoA:protein N-myristoyltransferase 2|peptide N-myristoyltransferase 2|type II N-myristoyltransferase 20121230 -9606 9398 CD101 RP11-27K13.2 IGSF2|V7 HGNC:5949|MIM:604516|Ensembl:ENSG00000134256|HPRD:05154|Vega:OTTHUMG00000012029 1 1p13 CD101 molecule protein-coding CD101 CD101 molecule O EWI-101|cell surface glycoprotein V7|glu-Trp-Ile EWI motif-containing protein 101|immunoglobulin superfamily member 2|immunoglobulin superfamily, member 2|leukocyte surface protein 20121230 -9606 9399 STOML1 MSTP019 SLP-1|STORP|hUNC-24 HGNC:14560|MIM:608326|Ensembl:ENSG00000067221|HPRD:16314|Vega:OTTHUMG00000137608 15 15q24-q25 stomatin (EPB72)-like 1 protein-coding STOML1 stomatin (EPB72)-like 1 O EPB72-like protein 1|protein unc-24 homolog|stomatin (EBP72)-like 1|stomatin-like protein 1|stomatin-related protein 20121230 -9606 9400 RECQL5 - RECQ5 HGNC:9950|MIM:603781|Ensembl:ENSG00000108469|HPRD:04806|Vega:OTTHUMG00000179795 17 17q25 RecQ protein-like 5 protein-coding RECQL5 RecQ protein-like 5 O ATP-dependent DNA helicase Q5|DNA helicase, RecQ-like type 5 20121230 -9606 9401 RECQL4 - RECQ4 HGNC:9949|MIM:603780|HPRD:04805 8 8q24.3 RecQ protein-like 4 protein-coding RECQL4 RecQ protein-like 4 O ATP-dependent DNA helicase Q4|DNA helicase, RecQ-like type 4|DNA helicase, RecQ-like, type 4 20121230 -9606 9402 GRAP2 RP3-370M22.1 GADS|GRAP-2|GRB2L|GRBLG|GRID|GRPL|GrbX|Grf40|Mona|P38 HGNC:4563|MIM:604518|Ensembl:ENSG00000100351|HPRD:05156|Vega:OTTHUMG00000151097 22 22q13.2 GRB2-related adaptor protein 2 protein-coding GRAP2 GRB2-related adaptor protein 2 O GRB-2-like protein|GRB2-related adapter protein 2|GRB2-related protein with insert domain|SH3-SH2-SH3 adapter Mona|SH3-SH2-SH3 adaptor molecule|adapter protein GRID|grf-40|grf40 adapter protein|growth factor receptor-binding protein|growth factor receptor-bound protein 2-related adaptor protein 2|hematopoietic cell-associated adapter protein GrpL|hematopoietic cell-associated adaptor protein GRPL 20121230 -9606 9403 SEP15 - - MIM:606254|Ensembl:ENSG00000183291|HPRD:09376|Vega:OTTHUMG00000008520 1 1p31 15 kDa selenoprotein protein-coding - - - - 20121230 -9606 9404 LPXN - LDPL HGNC:14061|MIM:605390|Ensembl:ENSG00000110031|HPRD:05651|Vega:OTTHUMG00000167466 11 11q12.1 leupaxin protein-coding LPXN leupaxin O - 20121230 -9606 9406 ZRANB2 - ZIS|ZIS1|ZIS2|ZNF265 HGNC:13058|MIM:604347|Ensembl:ENSG00000132485|HPRD:09185|Vega:OTTHUMG00000009660 1 1p31 zinc finger, RAN-binding domain containing 2 protein-coding ZRANB2 zinc finger, RAN-binding domain containing 2 O zinc finger Ran-binding domain-containing protein 2|zinc finger protein 265|zinc finger, splicing|zinc-finger protein 265|zinc-finger, splicing 20121230 -9606 9407 TMPRSS11D - HAT HGNC:24059|MIM:605369|Ensembl:ENSG00000153802|HPRD:05642|Vega:OTTHUMG00000129300 4 4q13.2 transmembrane protease, serine 11D protein-coding TMPRSS11D transmembrane protease, serine 11D O airway trypsin like protease|airway trypsin-like protease|transmembrane protease serine 11D 20121230 -9606 9409 PEX16 - PBD8A|PBD8B HGNC:8857|MIM:603360|Ensembl:ENSG00000121680|HPRD:04526|Vega:OTTHUMG00000167005 11 11p11.2 peroxisomal biogenesis factor 16 protein-coding PEX16 peroxisomal biogenesis factor 16 O peroxin 16|peroxin-16|peroxisomal membrane protein PEX16|peroxisome biogenesis factor 16 20121230 -9606 9410 SNRNP40 - 40K|HPRP8BP|PRP8BP|PRPF8BP|RP11-490K7.3|SPF38|WDR57 HGNC:30857|MIM:607797|Ensembl:ENSG00000060688|HPRD:08481|Vega:OTTHUMG00000003790 1 1p35.2 small nuclear ribonucleoprotein 40kDa (U5) protein-coding SNRNP40 small nuclear ribonucleoprotein 40kDa (U5) O 38 kDa-splicing factor|Prp8-binding protein|U5 small nuclear ribonucleoprotein 40 kDa protein|U5 snRNP 40 kDa protein|U5 snRNP-specific 40 kDa protein (hPrp8-binding)|U5-40K|U5-40kD protein|WD repeat domain 57 (U5 snRNP specific)|WD repeat-containing protein 57 20121230 -9606 9411 ARHGAP29 - PARG1|RP11-255E17.1 HGNC:30207|MIM:610496|Ensembl:ENSG00000137962|HPRD:06674|Vega:OTTHUMG00000010643 1 1p22.1 Rho GTPase activating protein 29 protein-coding ARHGAP29 Rho GTPase activating protein 29 O PTPL1-associated RhoGAP 1 (PARG1)|PTPL1-associated RhoGAP protein 1|rho GTPase-activating protein 29|rho-type GTPase-activating protein 29 20121230 -9606 9412 MED21 - SRB7|SURB7|hSrb7 HGNC:11473|MIM:603800|Ensembl:ENSG00000152944|HPRD:09156|Vega:OTTHUMG00000169276 12 12p11.23 mediator complex subunit 21 protein-coding MED21 mediator complex subunit 21 O RNA polymerase II holoenzyme component SRB7|RNAPII complex component SRB7|SRB7 suppressor of RNA polymerase B homolog|mediator of RNA polymerase II transcription subunit 21 20121230 -9606 9413 FAM189A2 - C9orf61|RP11-548B3.1|X123 HGNC:24820|MIM:607710|Ensembl:ENSG00000135063|HPRD:16255|Vega:OTTHUMG00000019979 9 9q21.11 family with sequence similarity 189, member A2 protein-coding FAM189A2 family with sequence similarity 189, member A2 O Friedreich ataxia region gene X123|protein FAM189A2 20121230 -9606 9414 TJP2 RP11-16N10.1 C9DUPq21.11|DFNA51|DUP9q21.11|X104|ZO2 HGNC:11828|MIM:607709|Ensembl:ENSG00000119139|HPRD:06369|Vega:OTTHUMG00000019978 9 9q13-q21 tight junction protein 2 protein-coding TJP2 tight junction protein 2 O Friedreich ataxia region gene X104 (tight junction protein ZO-2)|tight junction protein ZO-2|zona occludens 2|zonula occludens protein 2 20121230 -9606 9415 FADS2 - D6D|DES6|FADSD6|LLCDL2|SLL0262|TU13 HGNC:3575|MIM:606149|Ensembl:ENSG00000134824|HPRD:05854|Vega:OTTHUMG00000163794 11 11q12.2 fatty acid desaturase 2 protein-coding FADS2 fatty acid desaturase 2 O delta(6) desaturase|delta(6) fatty acid desaturase|delta-6 desaturase|delta-6 fatty acid desaturase|delta-6-desaturase|linoleoyl-CoA desaturase (delta-6-desaturase)-like 2 20121230 -9606 9416 DDX23 - PRPF28|U5-100K|U5-100KD|prp28 HGNC:17347|MIM:612172|Ensembl:ENSG00000174243|HPRD:09908|Vega:OTTHUMG00000170399 12 12q13.12 DEAD (Asp-Glu-Ala-Asp) box polypeptide 23 protein-coding DDX23 DEAD (Asp-Glu-Ala-Asp) box polypeptide 23 O 100 kDa U5 snRNP-specific protein|DEAD box protein 23|PRP28 homolog, yeast|PRP28p homolog|U5 snRNP 100 kD protein|probable ATP-dependent RNA helicase DDX23 20121230 -9606 9419 CRIPT HSPC139 - HGNC:14312|MIM:604594|Ensembl:ENSG00000119878|HPRD:05208|Vega:OTTHUMG00000128815 2 2p21 cysteine-rich PDZ-binding protein protein-coding CRIPT cysteine-rich PDZ-binding protein O cysteine-rich interactor of PDZ three|cysteine-rich interactor of PDZ3|postsynaptic protein CRIPT 20121230 -9606 9420 CYP7B1 - CBAS3|CP7B|SPG5A HGNC:2652|MIM:603711|Ensembl:ENSG00000172817|HPRD:04753|Vega:OTTHUMG00000164387 8 8q21.3 cytochrome P450, family 7, subfamily B, polypeptide 1 protein-coding CYP7B1 cytochrome P450, family 7, subfamily B, polypeptide 1 O 25-hydroxycholesterol 7-alpha-hydroxylase|cytochrome P450 7B1|cytochrome P450, subfamily VIIB (oxysterol 7 alpha-hydroxylase), polypeptide 1|oxysterol 7-alpha-hydroxylase|oxysterol 7alpha-hydroxylase 20121230 -9606 9421 HAND1 - Hxt|Thing1|bHLHa27|eHand HGNC:4807|MIM:602406|Ensembl:ENSG00000113196|HPRD:03871|Vega:OTTHUMG00000130193 5 5q33 heart and neural crest derivatives expressed 1 protein-coding HAND1 heart and neural crest derivatives expressed 1 O class A basic helix-loop-helix protein 27|extraembryonic tissues, heart, autonomic nervous system and neural crest derivatives-expressed protein 1|heart- and neural crest derivatives-expressed protein 1 20121230 -9606 9422 ZNF264 - - HGNC:13057|MIM:604668|Ensembl:ENSG00000083844|HPRD:05237 19 19q13.4 zinc finger protein 264 protein-coding ZNF264 zinc finger protein 264 O - 20121230 -9606 9423 NTN1 - NTN1L HGNC:8029|MIM:601614|Ensembl:ENSG00000065320|HPRD:03368|Vega:OTTHUMG00000130257 17 17p13-p12 netrin 1 protein-coding NTN1 netrin 1 O epididymis tissue protein Li 131P|netrin 1, mouse, homolog of|netrin-1 20121230 -9606 9424 KCNK6 - K2p6.1|KCNK8|TOSS|TWIK-2|TWIK2 HGNC:6281|MIM:603939|Ensembl:ENSG00000099337|HPRD:06803|Vega:OTTHUMG00000182325 19 19q13.1 potassium channel, subfamily K, member 6 protein-coding KCNK6 potassium channel, subfamily K, member 6 O K2P6.1 potassium channel|TWIK-originated similarity sequence|TWIK-originated sodium similarity sequence|inward rectifying potassium channel protein TWIK-2|potassium channel subfamily K member 6 20121230 -9606 9425 CDYL - CDYL1 HGNC:1811|MIM:603778|Ensembl:ENSG00000153046|HPRD:04803|Vega:OTTHUMG00000014170 6 6p25.1 chromodomain protein, Y-like protein-coding CDYL chromodomain protein, Y-like O CDY-like, autosomal|chromodomain Y-like protein|testis-specific chromodomain Y-like protein 20121230 -9606 9426 CDY2A - CDY|CDY2 HGNC:1810|MIM:400018|Ensembl:ENSG00000182415|HPRD:02459|Vega:OTTHUMG00000041657 Y Yq11.221 chromodomain protein, Y-linked, 2A protein-coding CDY2A chromodomain protein, Y-linked, 2A O Y chromosome chromodomain protein 2A|chromodomain protein, Y chromosome, 2|testis-specific chromodomain protein Y 2 20121230 -9606 9427 ECEL1 UNQ2431/PRO4991 DINE|ECEX|XCE HGNC:3147|MIM:605896|Ensembl:ENSG00000171551|HPRD:07066|Vega:OTTHUMG00000133262 2 2q37.1 endothelin converting enzyme-like 1 protein-coding ECEL1 endothelin converting enzyme-like 1 O X converting enzyme|damage induced neuronal endopeptidase|endothelin-converting enzyme-like 1 20121230 -9606 9429 ABCG2 - ABC15|ABCP|BCRP|BCRP1|BMDP|CD338|CDw338|EST157481|GOUT1|MRX|MXR|MXR1|UAQTL1 HGNC:74|MIM:603756|Ensembl:ENSG00000118777|HPRD:04783|Vega:OTTHUMG00000130601 4 4q22 ATP-binding cassette, sub-family G (WHITE), member 2 protein-coding ABCG2 ATP-binding cassette, sub-family G (WHITE), member 2 O ABC transporter|ATP-binding cassette sub-family G member 2|ATP-binding cassette transporter G2|breast cancer resistance protein|mitoxantrone resistance-associated protein|multi drug resistance efflux transport ATP-binding cassette sub-family G (WHITE) member 2|placenta specific MDR protein|placenta-specific ATP-binding cassette transporter 20121230 -9606 9430 MYLKP1 - MYLKP HGNC:7591 3 3p13 myosin light chain kinase pseudogene 1 pseudo MYLKP1 myosin light chain kinase pseudogene 1 O - 20121230 -9606 9431 OR7E22P - OR3.6|OR6DG HGNC:8394 3 3p13 olfactory receptor, family 7, subfamily E, member 22 pseudogene pseudo OR7E22P olfactory receptor, family 7, subfamily E, member 22 pseudogene O - 20121230 -9606 9432 OR7E21P - OR4DG|OR7E127P|OR7E141P|OR7E142P|OR7E49P|OST035 HGNC:8393 3 3q21.1 olfactory receptor, family 7, subfamily E, member 21 pseudogene pseudo OR7E21P olfactory receptor, family 7, subfamily E, member 21 pseudogene O - 20121230 -9606 9435 CHST2 - C6ST|GST-2|GST2|Gn6ST-1|glcNAc6ST-1 HGNC:1970|MIM:603798|Ensembl:ENSG00000175040|HPRD:04814|Vega:OTTHUMG00000159351 3 3q24 carbohydrate (N-acetylglucosamine-6-O) sulfotransferase 2 protein-coding CHST2 carbohydrate (N-acetylglucosamine-6-O) sulfotransferase 2 O N-acetylglucosamine 6-O-sulfotransferase 1|carbohydrate (chondroitin 6/keratan) sulfotransferase 2|carbohydrate sulfotransferase 2|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 2 20121230 -9606 9436 NCR2 RP1-149M18.2 CD336|LY95|NK-p44|NKP44|dJ149M18.1 HGNC:6732|MIM:604531|Ensembl:ENSG00000096264|HPRD:05168|Vega:OTTHUMG00000014678 6 6p21.1 natural cytotoxicity triggering receptor 2 protein-coding NCR2 natural cytotoxicity triggering receptor 2 O NK cell activating receptor (NKp44)|NK cell-activating receptor|lymphocyte antigen 95 (activating NK-receptor; NK-p44)|lymphocyte antigen 95 homolog (activating NK-receptor; NK-p44)|natural killer cell p44-related protein 20121230 -9606 9437 NCR1 XXbac-BCX195L8.10-004 CD335|LY94|NK-p46|NKP46 HGNC:6731|MIM:604530|Ensembl:ENSG00000189430|HPRD:05167 19 19q13.42 natural cytotoxicity triggering receptor 1 protein-coding NCR1 natural cytotoxicity triggering receptor 1 O NK cell-activating receptor|lymphocyte antigen 94 homolog (activating NK-receptor; NK-p46)|natural killer cell p46-related protein 20121230 -9606 9439 MED23 RP5-914N13.2 ARC130|CRSP130|CRSP133|CRSP3|DRIP130|MRT18|SUR-2|SUR2 HGNC:2372|MIM:605042|Ensembl:ENSG00000112282|HPRD:05436|Vega:OTTHUMG00000015565 6 6q22.33-q24.1 mediator complex subunit 23 protein-coding MED23 mediator complex subunit 23 O 130 kDa transcriptional co-activator|133 kDa transcriptional co-activator|activator-recruited cofactor 130 kDa component|cofactor required for Sp1 transcriptional activation subunit 3|mediator of RNA polymerase II transcription subunit 23|vitamin D3 receptor interacting protein 20121230 -9606 9440 MED17 - CRSP6|CRSP77|DRIP80|TRAP80 HGNC:2375|MIM:603810|Ensembl:ENSG00000042429|HPRD:04816|Vega:OTTHUMG00000167497 11 11q14 mediator complex subunit 17 protein-coding MED17 mediator complex subunit 17 O ARC77|CRSP complex subunit 6|activator-recruited cofactor 77 kDa component|cofactor required for Sp1 transcriptional activation, subunit 6, 77kDa|mediator of RNA polymerase II transcription subunit 17|thyroid hormone receptor-associated protein complex 80 kDa component|transcriptional coactivator CRSP77|vitamin D3 receptor-interacting protein complex 80 kDa component 20121230 -9606 9441 MED26 - CRSP7|CRSP70 HGNC:2376|MIM:605043|Ensembl:ENSG00000105085|HPRD:05437 19 19p13.11 mediator complex subunit 26 protein-coding MED26 mediator complex subunit 26 O ARC70|CRSP complex subunit 7|activator-recruited cofactor 70 kDa component|cofactor required for Sp1 transcriptional activation subunit 7|cofactor required for Sp1 transcriptional activation, subunit 7 (70kD)|cofactor required for Sp1 transcriptional activation, subunit 7, 70kDa|mediator of RNA polymerase II transcription subunit 26|transcriptional coactivator CRSP70 20121230 -9606 9442 MED27 RP11-323H21.4 CRAP34|CRSP34|CRSP8|TRAP37 HGNC:2377|MIM:605044|Ensembl:ENSG00000160563|HPRD:05438|Vega:OTTHUMG00000020833 9 9q34.13 mediator complex subunit 27 protein-coding MED27 mediator complex subunit 27 O CRSP complex subunit 8|cofactor required for Sp1 transcriptional activation, subunit 8, 34kDa|mediator of RNA polymerase II transcription subunit 27|p37 TRAP/SMCC/PC2 subunit|transcriptional coactivator CRSP34 20121230 -9606 9443 MED7 - ARC34|CRSP33|CRSP9 HGNC:2378|MIM:605045|Ensembl:ENSG00000155868|HPRD:05439|Vega:OTTHUMG00000130243 5 5q33.3 mediator complex subunit 7 protein-coding MED7 mediator complex subunit 7 O CRSP complex subunit 9|RNA polymerase transcriptional regulation mediator subunit 7 homolog|activator-recruited cofactor 34 kDa component|cofactor required for Sp1 transcriptional activation subunit 9|cofactor required for Sp1 transcriptional activation, subunit 9 (33kD)|cofactor required for Sp1 transcriptional activation, subunit 9, 33kDa|mediator of RNA polymerase II transcription subunit 7|transcriptional coactivator CRSP33 20121230 -9606 9444 QKI - Hqk|QK|QK1|QK3|hqkI HGNC:21100|MIM:609590|Ensembl:ENSG00000112531|HPRD:06691|Vega:OTTHUMG00000015977 6 6q26 QKI, KH domain containing, RNA binding protein-coding QKI QKI, KH domain containing, RNA binding O RNA binding protein HQK|homolog of mouse quaking QKI (KH domain RNA binding protein)|protein quaking|quaking homolog, KH domain RNA binding 20121230 -9606 9445 ITM2B RP11-196P14.1 ABRI|BRI|BRI2|BRICD2B|E25B|E3-16|FBD|imBRI2 HGNC:6174|MIM:603904|Ensembl:ENSG00000136156|HPRD:04878|Vega:OTTHUMG00000016894 13 13q14.3 integral membrane protein 2B protein-coding ITM2B integral membrane protein 2B O ABri/ADan amyloid peptide|BRICHOS domain containing 2B|immature BRI2|transmembrane protein BRI 20121230 -9606 9446 GSTO1 RP11-99N20.1 GSTO 1-1|GSTTLp28|P28|SPG-R HGNC:13312|MIM:605482|Ensembl:ENSG00000148834|HPRD:10401|Vega:OTTHUMG00000019001 10 10q25.1 glutathione S-transferase omega 1 protein-coding GSTO1 glutathione S-transferase omega 1 O GSTO-1|MMA(V) reductase|S-(Phenacyl)glutathione reductase|glutathione S-transferase omega 1-1|glutathione S-transferase omega-1|glutathione-S-transferase like|glutathione-dependent dehydroascorbate reductase|monomethylarsonic acid reductase 20121230 -9606 9447 AIM2 RP11-520H16.3 PYHIN4 HGNC:357|MIM:604578|Ensembl:ENSG00000163568|HPRD:05202|Vega:OTTHUMG00000037183 1 1q22 absent in melanoma 2 protein-coding AIM2 absent in melanoma 2 O interferon-inducible protein AIM2 20121230 -9606 9448 MAP4K4 - FLH21957|HGK|MEKKK4|NIK HGNC:6866|MIM:604666|Ensembl:ENSG00000071054|HPRD:05235|Vega:OTTHUMG00000155394 2 2q11.2-q12 mitogen-activated protein kinase kinase kinase kinase 4 protein-coding MAP4K4 mitogen-activated protein kinase kinase kinase kinase 4 O HPK/GCK-like kinase HGK|MAPK/ERK kinase kinase kinase 4|MEK kinase kinase 4|Ste20 group protein kinase HGK|hepatocyte progenitor kinase-like/germinal center kinase-like kinase|nck-interacting kinase 20121230 -9606 9450 LY86 RP1-80N2.1 MD-1|MMD-1|dJ80N2.1 HGNC:16837|MIM:605241|Ensembl:ENSG00000112799|HPRD:05578|Vega:OTTHUMG00000014190 6 6p25.1 lymphocyte antigen 86 protein-coding LY86 lymphocyte antigen 86 O MD-1, RP105-associated|ly-86|protein MD-1 20121230 -9606 9451 EIF2AK3 - PEK|PERK|WRS HGNC:3255|MIM:604032|Ensembl:ENSG00000172071|HPRD:04942|Vega:OTTHUMG00000155046 2 2p12 eukaryotic translation initiation factor 2-alpha kinase 3 protein-coding EIF2AK3 eukaryotic translation initiation factor 2-alpha kinase 3 O PRKR-like endoplasmic reticulum kinase|eukaryotic translation initiation factor 2 alpha kinase 3|hsPEK|pancreatic EIF2-alpha kinase 20121230 -9606 9452 ITM2A RP4-696H22.1 BRICD2A|E25A HGNC:6173|MIM:300222|Ensembl:ENSG00000078596|HPRD:02200|Vega:OTTHUMG00000021900 X Xq13.3-Xq21.2 integral membrane protein 2A protein-coding ITM2A integral membrane protein 2A O BRICHOS domain containing 2A 20121230 -9606 9453 GGPS1 - GGPPS|GGPPS1 HGNC:4249|MIM:606982|Ensembl:ENSG00000152904|HPRD:06099|Vega:OTTHUMG00000037963 1 1q43 geranylgeranyl diphosphate synthase 1 protein-coding GGPS1 geranylgeranyl diphosphate synthase 1 O (2E,6E)-farnesyl diphosphate synthase|GGPP synthase|GGPPSase|dimethylallyltranstransferase|farnesyl diphosphate synthase|farnesyltranstransferase|geranylgeranyl pyrophosphate synthase|geranyltranstransferase 20121230 -9606 9454 HOMER3 - HOMER-3|VESL3 HGNC:17514|MIM:604800|Ensembl:ENSG00000051128|HPRD:07270 19 19p13.11 homer homolog 3 (Drosophila) protein-coding HOMER3 homer homolog 3 (Drosophila) O Homer, neuronal immediate early gene, 3|homer protein homolog 3 20121230 -9606 9455 HOMER2 - ACPD|CPD|HOMER-2|VESL-2 HGNC:17513|MIM:604799|Ensembl:ENSG00000103942|HPRD:07269|Vega:OTTHUMG00000172462 15 15q24.3 homer homolog 2 (Drosophila) protein-coding HOMER2 homer homolog 2 (Drosophila) O cupidin|homer homolog 3|homer protein homolog 2|homer, neuronal immediate early gene, 2 20121230 -9606 9456 HOMER1 - HOMER|HOMER1A|HOMER1B|HOMER1C|SYN47|Ves-1 HGNC:17512|MIM:604798|Ensembl:ENSG00000152413|HPRD:09211|Vega:OTTHUMG00000134278 5 5q14.2 homer homolog 1 (Drosophila) protein-coding HOMER1 homer homolog 1 (Drosophila) O homer protein homolog 1|homer, neuronal immediate early gene, 1|homer-1 20121230 -9606 9457 FHL5 - ACT|RP3-393D12.2|dJ393D12.2 HGNC:17371|MIM:605126|Ensembl:ENSG00000112214|HPRD:05497|Vega:OTTHUMG00000015239 6 6q16.1-q16.3 four and a half LIM domains 5 protein-coding FHL5 four and a half LIM domains 5 O 1700027G07Rik|FHL-5|LIM protein ACT|activator of CREM in testis|activator of cAMP-responsive element modulator (CREM) in testis|activator of cAMP-responsive element modulator in testis|four and a half LIM domains protein 5 20121230 -9606 9459 ARHGEF6 RP3-527F8.4 COOL2|Cool-2|MRX46|PIXA|alpha-PIX|alphaPIX HGNC:685|MIM:300267|Ensembl:ENSG00000129675|HPRD:02226|Vega:OTTHUMG00000022518 X Xq26.3 Rac/Cdc42 guanine nucleotide exchange factor (GEF) 6 protein-coding ARHGEF6 Rac/Cdc42 guanine nucleotide exchange factor (GEF) 6 O PAK-interacting exchange factor alpha|PAK-interacting exchange factor, alpha|Rac/Cdc42 guanine exchange factor (GEF) 6|rac/Cdc42 guanine nucleotide exchange factor 6|rho guanine nucleotide exchange factor 6 20121230 -9606 9462 RASAL2 RP4-593C16.1 NGAP HGNC:9874|MIM:606136|Ensembl:ENSG00000075391|HPRD:05845|Vega:OTTHUMG00000035022 1 1q24 RAS protein activator like 2 protein-coding RASAL2 RAS protein activator like 2 O RAS protein activator-like 2|Ras protein activator like 1|ras GTPase-activating protein nGAP 20121230 -9606 9463 PICK1 RP5-1039K5.11-004 PICK|PRKCABP HGNC:9394|MIM:605926|Ensembl:ENSG00000100151|HPRD:16176|Vega:OTTHUMG00000151159 22 22q13.1 protein interacting with PRKCA 1 protein-coding PICK1 protein interacting with PRKCA 1 O PRKCA-binding protein|protein interacting with C kinase 1|protein kinase C-alpha-binding protein 20121230 -9606 9464 HAND2 - DHAND2|Hed|Thing2|bHLHa26|dHand HGNC:4808|MIM:602407|Ensembl:ENSG00000164107|HPRD:03872|Vega:OTTHUMG00000160775 4 4q33 heart and neural crest derivatives expressed 2 protein-coding HAND2 heart and neural crest derivatives expressed 2 O basic helix-loop-helix transcription factor HAND2|class A basic helix-loop-helix protein 26|deciduum, heart, autonomic nervous system and neural crest derivatives-expressed protein 2|heart- and neural crest derivatives-expressed protein 2 20121230 -9606 9465 AKAP7 - AKAP15|AKAP18 HGNC:377|MIM:604693|Ensembl:ENSG00000118507|HPRD:16065|Vega:OTTHUMG00000015563 6 6q23 A kinase (PRKA) anchor protein 7 protein-coding AKAP7 A kinase (PRKA) anchor protein 7 O A-kinase anchor protein 18 kDa|A-kinase anchor protein 7 isoform gamma|A-kinase anchor protein 7 isoforms alpha and beta|A-kinase anchor protein 9 kDa|AKAP 18|AKAP-7 isoform gamma|AKAP-7 isoforms alpha and beta|PRKA7 isoform gamma|PRKA7 isoforms alpha/beta 20121230 -9606 9466 IL27RA UNQ296/PRO336 CRL1|IL-27RA|IL27R|TCCR|WSX1|zcytor1 HGNC:17290|MIM:605350|Ensembl:ENSG00000104998|HPRD:09247|Vega:OTTHUMG00000181990 19 19p13.11 interleukin 27 receptor, alpha protein-coding IL27RA interleukin 27 receptor, alpha O IL-27 receptor subunit alpha|IL-27R subunit alpha|IL-27R-alpha|T-cell cytokine receptor type 1|class I cytokine receptor|cytokine receptor-like 1|interleukin-27 receptor subunit alpha|type I T-cell cytokine receptor 20121230 -9606 9467 SH3BP5 - SAB|SH3BP-5 HGNC:10827|MIM:605612|Ensembl:ENSG00000131370|HPRD:12030|Vega:OTTHUMG00000129859 3 3p24.3 SH3-domain binding protein 5 (BTK-associated) protein-coding SH3BP5 SH3-domain binding protein 5 (BTK-associated) O SH3 domain-binding protein 5|SH3 domain-binding protein that preferentially associates with BTK 20121230 -9606 9468 PCYT1B - CCTB|CTB HGNC:8755|MIM:604926|Ensembl:ENSG00000102230|HPRD:05376|Vega:OTTHUMG00000021270 X Xp22.11 phosphate cytidylyltransferase 1, choline, beta protein-coding PCYT1B phosphate cytidylyltransferase 1, choline, beta O CCT B|CCT-beta|CT B|CTP:phosphocholine cytidylyltransferase b|choline-phosphate cytidylyltransferase B|phosphorylcholine transferase B 20121230 -9606 9469 CHST3 - C6ST|C6ST1|HSD HGNC:1971|MIM:603799|Ensembl:ENSG00000122863|HPRD:07052|Vega:OTTHUMG00000018431 10 10q22.1 carbohydrate (chondroitin 6) sulfotransferase 3 protein-coding CHST3 carbohydrate (chondroitin 6) sulfotransferase 3 O C6ST-1|GST-0|carbohydrate sulfotransferase 3|chondroitin 6-O-sulfotransferase 1|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 0 20121230 -9606 9470 EIF4E2 - 4E-LP|4EHP|EIF4EL3|IF4e HGNC:3293|MIM:605895|Ensembl:ENSG00000135930|HPRD:05798|Vega:OTTHUMG00000133256 2 2q37.1 eukaryotic translation initiation factor 4E family member 2 protein-coding EIF4E2 eukaryotic translation initiation factor 4E family member 2 O eIF-4E type 2|eIF4E type 2|eIF4E-like cap-binding protein|eIF4E-like protein 4E-LP|eukaryotic translation initiation factor 4E homologous protein|eukaryotic translation initiation factor 4E member 2|eukaryotic translation initiation factor 4E type 2|eukaryotic translation initiation factor 4E-like 3|mRNA cap-binding protein 4EHP|mRNA cap-binding protein type 3 20121230 -9606 9472 AKAP6 - ADAP100|ADAP6|AKAP100|PRKA6|mAKAP HGNC:376|MIM:604691|Ensembl:ENSG00000151320|HPRD:05257|Vega:OTTHUMG00000140207 14 14q12 A kinase (PRKA) anchor protein 6 protein-coding AKAP6 A kinase (PRKA) anchor protein 6 O A-kinase anchor protein 100 kDa|A-kinase anchor protein 6|AKAP 100|AKAP-6|protein kinase A anchoring protein 6|protein kinase A-anchoring protein 6 20121230 -9606 9473 THEMIS2 RP4-547C9.2 C1orf38|ICB-1 HGNC:16839|Ensembl:ENSG00000130775|HPRD:12728|Vega:OTTHUMG00000003735 1 1p35.3 thymocyte selection associated family member 2 protein-coding THEMIS2 thymocyte selection associated family member 2 O basement membrane-induced|induced by contact to basement membrane 1 protein|protein ICB-1|protein THEMIS2|thymocyte-expressed molecule involved in selection protein 2 20121230 -9606 9474 ATG5 - APG5|APG5-LIKE|APG5L|ASP|hAPG5 HGNC:589|MIM:604261|Ensembl:ENSG00000057663|HPRD:16051|Vega:OTTHUMG00000016193 6 6q21 autophagy related 5 protein-coding ATG5 autophagy related 5 O ATG5 autophagy related 5 homolog|apoptosis specific protein|apoptosis-specific protein|autophagy protein 5 20121230 -9606 9475 ROCK2 - ROCK-II HGNC:10252|MIM:604002|Ensembl:ENSG00000134318|HPRD:04922|Vega:OTTHUMG00000149916 2 2p24 Rho-associated, coiled-coil containing protein kinase 2 protein-coding ROCK2 Rho-associated, coiled-coil containing protein kinase 2 O p164 ROCK-2|rho-associated protein kinase 2|rho-associated, coiled-coil-containing protein kinase II 20121230 -9606 9476 NAPSA - KAP|Kdap|NAP1|NAPA|SNAPA HGNC:13395|MIM:605631|Ensembl:ENSG00000131400|HPRD:07064 19 19q13.33 napsin A aspartic peptidase protein-coding NAPSA napsin A aspartic peptidase O ASP4|TA01/TA02|asp 4|aspartyl protease 4|kidney-derived aspartic protease-like protein|napsin-1|napsin-A|pronapsin A 20121230 -9606 9477 MED20 RP5-973N23.1 PRO0213|TRFP HGNC:16840|MIM:612915|Ensembl:ENSG00000124641|HPRD:15638|Vega:OTTHUMG00000014689 6 6p21.1 mediator complex subunit 20 protein-coding MED20 mediator complex subunit 20 O TRF-proximal protein homolog|Trf (TATA binding protein-related factor)-proximal homolog|hTRFP|mediator complex subunit 20mediator complex subunit 20mediator complex subunit 20Trf (TATA binding protein-related factor)-proximal homolog|mediator of RNA polymerase II transcription subunit 20 20121230 -9606 9478 CABP1 - CALBRAIN|HCALB_BR HGNC:1384|MIM:605563|Ensembl:ENSG00000157782|Vega:OTTHUMG00000156794 12 12q24.31 calcium binding protein 1 protein-coding CABP1 calcium binding protein 1 O calcium binding protein 5|calcium-binding protein 1|caldendrin 20121230 -9606 9479 MAPK8IP1 - IB1|JIP-1|JIP1|PRKM8IP HGNC:6882|MIM:604641|Ensembl:ENSG00000121653|HPRD:05223|Vega:OTTHUMG00000134324 11 11p11.2 mitogen-activated protein kinase 8 interacting protein 1 protein-coding MAPK8IP1 mitogen-activated protein kinase 8 interacting protein 1 O C-Jun-amino-terminal kinase-interacting protein 1|IB-1|JNK MAP kinase scaffold protein 1|JNK-interacting protein 1|PRKM8 interacting protein|islet-brain 1 20121230 -9606 9480 ONECUT2 - OC-2|OC2 HGNC:8139|MIM:604894|Ensembl:ENSG00000119547|HPRD:05354|Vega:OTTHUMG00000159776 18 18q21.31 one cut homeobox 2 protein-coding ONECUT2 one cut homeobox 2 O HNF-6-beta|ONECUT-2 homeodomain transcription factor|hepatocyte nuclear factor 6-beta|one cut domain family member 2|one cut domain, family member 2|onecut 2|transcription factor ONECUT-2 20121230 -9606 9481 SLC25A27 RP11-446F17.2 UCP4 HGNC:21065|MIM:613725|Ensembl:ENSG00000153291|HPRD:15358|Vega:OTTHUMG00000014786 6 6p12.3 solute carrier family 25, member 27 protein-coding SLC25A27 solute carrier family 25, member 27 O UCP 4|mitochondrial uncoupling protein 4|uncoupling protein 4 20121230 -9606 9482 STX8 - CARB HGNC:11443|MIM:604203|Ensembl:ENSG00000170310|HPRD:05012|Vega:OTTHUMG00000177844 17 17p12 syntaxin 8 protein-coding STX8 syntaxin 8 O CIP-1-associated regulator of cyclin B|syntaxin-8 20121230 -9606 9486 CHST10 - HNK-1ST|HNK1ST HGNC:19650|MIM:606376|Ensembl:ENSG00000115526|HPRD:07332|Vega:OTTHUMG00000130669 2 2q11.2 carbohydrate sulfotransferase 10 protein-coding CHST10 carbohydrate sulfotransferase 10 O HNK-1 sulfotransferase|huHNK-1ST 20121230 -9606 9487 PIGL - CHIME HGNC:8966|MIM:605947|Ensembl:ENSG00000108474|HPRD:12071|Vega:OTTHUMG00000059346 17 17p12-p11.2 phosphatidylinositol glycan anchor biosynthesis, class L protein-coding PIGL phosphatidylinositol glycan anchor biosynthesis, class L O N-acetylglucosaminyl-phosphatidylinositol de-N-acetylase|N-acetylglucosaminylphosphatidylinositol deacetylase|PIG-L|phosphatidylinositol glycan, class L|phosphatidylinositol-glycan biosynthesis class L protein 20121230 -9606 9488 PIGB - GPI-MT-III|PIG-B HGNC:8959|MIM:604122|Ensembl:ENSG00000069943|HPRD:04988|Vega:OTTHUMG00000172654 15 15q21.3 phosphatidylinositol glycan anchor biosynthesis, class B protein-coding PIGB phosphatidylinositol glycan anchor biosynthesis, class B O GPI mannosyltransferase 3|GPI mannosyltransferase III|phosphatidylinositol glycan, class B|phosphatidylinositol-glycan biosynthesis class B protein 20121230 -9606 9489 PGS1 - - HGNC:30029|MIM:614942|Ensembl:ENSG00000087157|HPRD:17841|Vega:OTTHUMG00000177514 17 17q25.3 phosphatidylglycerophosphate synthase 1 protein-coding PGS1 phosphatidylglycerophosphate synthase 1 O CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase, mitochondrial|PGP synthase 1 20121230 -9606 9491 PSMF1 RP4-545L17.1 PI31 HGNC:9571|Ensembl:ENSG00000125818|HPRD:17919|Vega:OTTHUMG00000031656 20 20p13 proteasome (prosome, macropain) inhibitor subunit 1 (PI31) protein-coding PSMF1 proteasome (prosome, macropain) inhibitor subunit 1 (PI31) O hPI31|proteasome inhibitor PI31 subunit|proteasome inhibitor hP131 subunit 20121230 -9606 9493 KIF23 - CHO1|KNSL5|MKLP-1|MKLP1 HGNC:6392|MIM:605064|Ensembl:ENSG00000137807|HPRD:05455|Vega:OTTHUMG00000172062 15 15q23 kinesin family member 23 protein-coding KIF23 kinesin family member 23 O kinesin-like 5 (mitotic kinesin-like protein 1)|kinesin-like protein 5|kinesin-like protein KIF23|mitotic kinesin-like 1|mitotic kinesin-like protein 1 20121230 -9606 9495 AKAP5 - AKAP75|AKAP79|H21 HGNC:375|MIM:604688|Ensembl:ENSG00000179841|HPRD:05255|Vega:OTTHUMG00000029634 14 14q23.3 A kinase (PRKA) anchor protein 5 protein-coding AKAP5 A kinase (PRKA) anchor protein 5 O A-kinase anchor protein 5|A-kinase anchor protein 79 kDa|A-kinase anchor protein, 79kDa|A-kinase anchoring protein 75/79|AKAP 79|AKAP-5|cAMP-dependent protein kinase regulatory subunit II high affinity binding protein|cAMP-dependent protein kinase regulatory subunit II high affinity-binding protein 20121230 -9606 9496 TBX4 - SPS HGNC:11603|MIM:601719|Ensembl:ENSG00000121075|HPRD:03424|Vega:OTTHUMG00000180078 17 17q21-q22 T-box 4 protein-coding TBX4 T-box 4 O T-box protein 4|T-box transcription factor TBX4 20121230 -9606 9497 SLC4A7 - NBC2|NBC3|NBCN1|SBC2|SLC4A6 HGNC:11033|MIM:603353|Ensembl:ENSG00000033867|HPRD:04521|Vega:OTTHUMG00000155679 3 3p22 solute carrier family 4, sodium bicarbonate cotransporter, member 7 protein-coding SLC4A7 solute carrier family 4, sodium bicarbonate cotransporter, member 7 O bicarbonate transporter|sodium bicarbonate cotransporter 2|sodium bicarbonate cotransporter 2b|sodium bicarbonate cotransporter 3|solute carrier family 4 member 7 20121230 -9606 9498 SLC4A8 - NBC3|NDCBE HGNC:11034|MIM:605024|Ensembl:ENSG00000050438|HPRD:05430|Vega:OTTHUMG00000169489 12 12q13.13 solute carrier family 4, sodium bicarbonate cotransporter, member 8 protein-coding SLC4A8 solute carrier family 4, sodium bicarbonate cotransporter, member 8 O electroneutral Na(+)-driven Cl-HCO3 exchanger|electroneutral sodium bicarbonate exchanger 1|k-NBC3 20121230 -9606 9499 MYOT - LGMD1|LGMD1A|TTID HGNC:12399|MIM:604103|Ensembl:ENSG00000120729|HPRD:04981|Vega:OTTHUMG00000129154 5 5q31 myotilin protein-coding MYOT myotilin O 57 kDa cytoskeletal protein|myofibrillar titin-like Ig domains protein|titin immunoglobulin domain protein (myotilin) 20121230 -9606 9500 MAGED1 PRO2292 DLXIN-1|NRAGE HGNC:6813|MIM:300224|Ensembl:ENSG00000179222|HPRD:02202|Vega:OTTHUMG00000021540 X Xp11.23 melanoma antigen family D, 1 protein-coding MAGED1 melanoma antigen family D, 1 O MAGE tumor antigen CCF|MAGE-D1 antigen|melanoma-associated antigen D1|neurotrophin receptor-interacting MAGE homolog 20121230 -9606 9501 RPH3AL - NOC2 HGNC:10296|MIM:604881|Ensembl:ENSG00000181031|HPRD:05345|Vega:OTTHUMG00000090273 17 17p13.3 rabphilin 3A-like (without C2 domains) protein-coding RPH3AL rabphilin 3A-like (without C2 domains) O no C2 domains protein|rab effector Noc2 20121230 -9606 9502 XAGE2 - CT12.2|GAGED3|XAGE-2 HGNC:4112|MIM:300416|Ensembl:ENSG00000155622|HPRD:02332|Vega:OTTHUMG00000021549 X Xp11.22 X antigen family, member 2 protein-coding XAGE2 X antigen family, member 2 O G antigen family D member 3|G antigen, family D, 3|cancer/testis antigen 12.2|cancer/testis antigen family 12, member 2|protein XAGE-2 20121230 -9606 9503 XAGE1D - CT12.1|CT12.1D|CTP9 HGNC:21508|MIM:300289|Ensembl:ENSG00000204376|HPRD:02241|Vega:OTTHUMG00000021568 X Xp11.22 X antigen family, member 1D protein-coding XAGE1D X antigen family, member 1D O G antigen family D member 2|cancer/testis antigen 12.1|cancer/testis antigen family 12, member 1d|cancer/testis associated protein|protein XAGE-1 20121230 -9606 9506 PAGE4 JM27 CT16.7|GAGE-9|GAGEC1|JM-27|PAGE-1|PAGE-4 HGNC:4108|MIM:300287|Ensembl:ENSG00000101951|HPRD:02239|Vega:OTTHUMG00000024155 X Xp11.23 P antigen family, member 4 (prostate associated) protein-coding PAGE4 P antigen family, member 4 (prostate associated) O G antigen family C member 1|G antigen, family C, 1|prostate-associated gene 4 protein|prostate-associated gene protein 4 20121230 -9606 9507 ADAMTS4 UNQ769/PRO1563 ADAMTS-2|ADAMTS-4|ADMP-1 HGNC:220|MIM:603876|Ensembl:ENSG00000158859|HPRD:04853|Vega:OTTHUMG00000034349 1 1q21-q23 ADAM metallopeptidase with thrombospondin type 1 motif, 4 protein-coding ADAMTS4 ADAM metallopeptidase with thrombospondin type 1 motif, 4 O A disintegrin and metalloproteinase with thrombospondin motifs 4|ADAM-TS 4|ADAM-TS4|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 4|aggrecanase-1 20121230 -9606 9508 ADAMTS3 - ADAMTS-4 HGNC:219|MIM:605011|Ensembl:ENSG00000156140|HPRD:06893|Vega:OTTHUMG00000129912 4 4q13.3 ADAM metallopeptidase with thrombospondin type 1 motif, 3 protein-coding ADAMTS3 ADAM metallopeptidase with thrombospondin type 1 motif, 3 O A disintegrin and metalloproteinase with thrombospondin motifs 3|ADAM-TS 3|ADAM-TS3|ADAMTS-3|PC II-NP|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 3|procollagen II N-proteinase|procollagen II amino propeptide-processing enzyme|zinc metalloendopeptidase 20121230 -9606 9509 ADAMTS2 - ADAM-TS2|ADAMTS-2|ADAMTS-3|NPI|PC I-NP|PCI-NP|PCINP|PCPNI|PNPI HGNC:218|MIM:604539|Ensembl:ENSG00000087116|HPRD:05173|Vega:OTTHUMG00000130915 5 5qter ADAM metallopeptidase with thrombospondin type 1 motif, 2 protein-coding ADAMTS2 ADAM metallopeptidase with thrombospondin type 1 motif, 2 O A disintegrin and metalloproteinase with thrombospondin motifs 2|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 2|procollagen I N-proteinase|procollagen I/II amino propeptide-processing enzyme|procollagen N-endopeptidase 20121230 -9606 9510 ADAMTS1 - C3-C5|METH1 HGNC:217|MIM:605174|Ensembl:ENSG00000154734|HPRD:05530|Vega:OTTHUMG00000078688 21 21q21.2 ADAM metallopeptidase with thrombospondin type 1 motif, 1 protein-coding ADAMTS1 ADAM metallopeptidase with thrombospondin type 1 motif, 1 O A disintegrin and metalloproteinase with thrombospondin motifs 1|ADAM-TS 1|ADAM-TS1|ADAMTS-1|METH-1|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 1|human metalloproteinase with thrombospondin type 1 motifs 20121230 -9606 9512 PMPCB - Beta-MPP|MPP11|MPPB|MPPP52|P-52 HGNC:9119|MIM:603131|Ensembl:ENSG00000105819|HPRD:07539|Vega:OTTHUMG00000157205 7 7q22.1 peptidase (mitochondrial processing) beta protein-coding PMPCB peptidase (mitochondrial processing) beta O mitochondrial processing peptidase beta subunit|mitochondrial-processing peptidase subunit beta 20121230 -9606 9513 FXR2 - FMR1L2|FXR2P HGNC:4024|MIM:605339|Ensembl:ENSG00000129245|HPRD:05629|Vega:OTTHUMG00000178237 17 17p13.1 fragile X mental retardation, autosomal homolog 2 protein-coding FXR2 fragile X mental retardation, autosomal homolog 2 O fragile X mental retardation syndrome-related protein 2|fragile X-mental retardation 1-like 2 20121230 -9606 9514 GAL3ST1 - CST HGNC:24240|MIM:602300|Ensembl:ENSG00000128242|HPRD:03806|Vega:OTTHUMG00000151200 22 22q12.2 galactose-3-O-sulfotransferase 1 protein-coding GAL3ST1 galactose-3-O-sulfotransferase 1 O 3'-phosphoadenosine-5'-phosphosulfate:GalCer sulfotransferase|3'-phosphoadenylylsulfate:galactosylceramide 3'-sulfotransferase|GalCer sulfotransferase|cerebroside (3'-phosphoadenylylsulfate:galactosylceramide 3') sulfotransferase|cerebroside sulfotransferase|galactosylceramide sulfotransferase 20121230 -9606 9515 STXBP5L - LLGL4 HGNC:30757|MIM:609381|Ensembl:ENSG00000145087|Vega:OTTHUMG00000159426 3 3q13.33 syntaxin binding protein 5-like protein-coding STXBP5L syntaxin binding protein 5-like O lethal(2) giant larvae protein homolog 4|syntaxin-binding protein 5-like|tomosyn-2|tomosyn-like 20121230 -9606 9516 LITAF - PIG7|SIMPLE|TP53I7 HGNC:16841|MIM:603795|Ensembl:ENSG00000189067|HPRD:10354|Vega:OTTHUMG00000177415 16 16p13.13 lipopolysaccharide-induced TNF factor protein-coding LITAF lipopolysaccharide-induced TNF factor O LPS-induced TNF-alpha factor|lipopolysaccharide-induced TNF-alpha factor|lipopolysaccharide-induced tumor necrosis factor-alpha factor|p53-induced gene 7 protein|small integral membrane protein of lysosome/late endosome|tumor protein p53 inducible protein 7 20121230 -9606 9517 SPTLC2 - HSN1C|LCB2|LCB2A|NSAN1C|SPT2|hLCB2a HGNC:11278|MIM:605713|Ensembl:ENSG00000100596|HPRD:05755|Vega:OTTHUMG00000171540 14 14q24.3 serine palmitoyltransferase, long chain base subunit 2 protein-coding SPTLC2 serine palmitoyltransferase, long chain base subunit 2 O LCB 2|SPT 2|long chain base biosynthesis protein 2a|serine palmitoyltransferase 2|serine palmitoyltransferase, subunit II|serine-palmitoyl-CoA transferase 2 20121230 -9606 9518 GDF15 - GDF-15|MIC-1|MIC1|NAG-1|PDF|PLAB|PTGFB HGNC:30142|MIM:605312|Ensembl:ENSG00000130513|HPRD:05608 19 19p13.11 growth differentiation factor 15 protein-coding GDF15 growth differentiation factor 15 O NRG-1|NSAID (nonsteroidal anti-inflammatory drug)-activated protein 1|NSAID-activated gene 1 protein|NSAID-regulated gene 1 protein|PTGF-beta|growth/differentiation factor 15|macrophage inhibitory cytokine 1|placental TGF-beta|placental bone morphogenetic protein|prostate differentiation factor 20121230 -9606 9519 TBPL1 RP1-73H22.1 MGC:8389|MGC:9620|STUD|TLF|TLP|TRF2 HGNC:11589|MIM:605521|Ensembl:ENSG00000028839|HPRD:09272|Vega:OTTHUMG00000015609 6 6q22.1-q22.3 TBP-like 1 protein-coding TBPL1 TBP-like 1 O 21-kDA TBP-like protein|TATA box-binding protein-like protein 1|TATA box-binding protein-related factor 2|TBP-related factor 2|TBP-related protein|second TBP of unique DNA protein 20121230 -9606 9520 NPEPPS - AAP-S|MP100|PSA HGNC:7900|MIM:606793|Ensembl:ENSG00000141279|HPRD:07366|Vega:OTTHUMG00000165471 17 17q21 aminopeptidase puromycin sensitive protein-coding NPEPPS aminopeptidase puromycin sensitive O cytosol alanyl aminopeptidase|metalloproteinase MP100|puromycin-sensitive aminopeptidase 20121230 -9606 9521 EEF1E1 RP3-511E16.1 AIMP3|P18 HGNC:3212|MIM:609206|Ensembl:ENSG00000124802|HPRD:10931|Vega:OTTHUMG00000014221 6 6p24.3 eukaryotic translation elongation factor 1 epsilon 1 protein-coding EEF1E1 eukaryotic translation elongation factor 1 epsilon 1 O ARS-interacting multifunctional protein 3|aminoacyl tRNA synthetase complex-interacting multifunctional protein 3|eukaryotic translation elongation factor 1 epsilon-1|multisynthase complex auxiliary component p18|p18 component of aminoacyl-tRNA synthetase complex 20121230 -9606 9522 SCAMP1 - SCAMP|SCAMP37 HGNC:10563|MIM:606911|HPRD:06072 5 5q14.1 secretory carrier membrane protein 1 protein-coding SCAMP1 secretory carrier membrane protein 1 O secretory carrier-associated membrane protein 1 20121230 -9606 9524 TECR - GPSN2|MRT14|SC2|TER HGNC:4551|MIM:610057|Ensembl:ENSG00000099797|HPRD:17076 19 19p13.12 trans-2,3-enoyl-CoA reductase protein-coding TECR trans-2,3-enoyl-CoA reductase O glycoprotein, synaptic 2|synaptic glycoprotein SC2 20121230 -9606 9525 VPS4B MIG1 SKD1|SKD1B|VPS4-2 HGNC:10895|MIM:609983|Ensembl:ENSG00000119541|HPRD:15653|Vega:OTTHUMG00000132790 18 18q21.33 vacuolar protein sorting 4 homolog B (S. cerevisiae) protein-coding VPS4B vacuolar protein sorting 4 homolog B (S. cerevisiae) O cell migration-inducing 1|cell migration-inducing gene 1 protein|suppressor of K(+) transport growth defect 1|suppressor of K+ transport defect 1|vacuolar protein sorting 4B|vacuolar protein sorting-associated protein 4B 20121230 -9606 9526 MPDU1 - CDGIF|HBEBP2BPA|Lec35|My008|PP3958|PQLC5|SL15 HGNC:7207|MIM:604041|Ensembl:ENSG00000129255|HPRD:04951|Vega:OTTHUMG00000108147 17 17p13.1-p12 mannose-P-dolichol utilization defect 1 protein-coding MPDU1 mannose-P-dolichol utilization defect 1 O HBeAg-binding protein 2 binding protein A|mannose-P-dolichol utilization defect 1 protein|suppressor of Lec15 and Lec35 glycosylation mutation homolog 20121230 -9606 9527 GOSR1 - GOLIM2|GOS-28|GOS28|GOS28/P28|GS28|P28 HGNC:4430|MIM:604026|Ensembl:ENSG00000108587|Vega:OTTHUMG00000132796 17 17q11 golgi SNAP receptor complex member 1 protein-coding GOSR1 golgi SNAP receptor complex member 1 O 28 kDa Golgi SNARE protein|28 kDa cis-Golgi SNARE p28|Golgi SNAP receptor complex member 1|Golgi SNARE 28 kDa|cis-golgi SNARE|golgi integral membrane protein 2 20121230 -9606 9528 TMEM59 RP4-758J24.2 C1orf8|HSPC001 HGNC:1239|Ensembl:ENSG00000116209|HPRD:12731|Vega:OTTHUMG00000008437 1 1p32.3 transmembrane protein 59 protein-coding TMEM59 transmembrane protein 59 O liver membrane-bound protein 20121230 -9606 9529 BAG5 - BAG-5 HGNC:941|MIM:603885|Ensembl:ENSG00000166170|HPRD:04862|Vega:OTTHUMG00000171763 14 14q32.33 BCL2-associated athanogene 5 protein-coding BAG5 BCL2-associated athanogene 5 O BAG family molecular chaperone regulator 5|BAG-family molecular chaperone regulator-5|bcl-2-associated athanogene 5 20121230 -9606 9530 BAG4 - BAG-4|SODD HGNC:940|MIM:603884|Ensembl:ENSG00000156735|HPRD:04861|Vega:OTTHUMG00000164064 8 8p11.23 BCL2-associated athanogene 4 protein-coding BAG4 BCL2-associated athanogene 4 O BAG family molecular chaperone regulator 4|BAG-family molecular chaperone regulator-4|bcl-2-associated athanogene 4|silencer of death domains 20121230 -9606 9531 BAG3 - BAG-3|BIS|CAIR-1 HGNC:939|MIM:603883|Ensembl:ENSG00000151929|HPRD:04860|Vega:OTTHUMG00000019155 10 10q25.2-q26.2 BCL2-associated athanogene 3 protein-coding BAG3 BCL2-associated athanogene 3 O BAG family molecular chaperone regulator 3|BAG-family molecular chaperone regulator-3|BCL2-binding athanogene 3|bcl-2-associated athanogene 3|bcl-2-binding protein Bis|docking protein CAIR-1 20121230 -9606 9532 BAG2 RP3-496N17.2 BAG-2|dJ417I1.2 HGNC:938|MIM:603882|Ensembl:ENSG00000112208|HPRD:04859|Vega:OTTHUMG00000014919 6 6p12.1-p11.2 BCL2-associated athanogene 2 protein-coding BAG2 BCL2-associated athanogene 2 O BAG family molecular chaperone regulator 2|BAG-family molecular chaperone regulator-2|bcl-2-associated athanogene 2|dJ417I1.2 (BAG-family molecular chaperone regulator 2) 20121230 -9606 9533 POLR1C RP3-337H4.4 RPA39|RPA40|RPA5|RPAC1|TCS3 HGNC:20194|MIM:610060|Ensembl:ENSG00000171453|HPRD:09661|Vega:OTTHUMG00000014739 6 6p21.1 polymerase (RNA) I polypeptide C, 30kDa protein-coding POLR1C polymerase (RNA) I polypeptide C, 30kDa O AC40|DNA-directed RNA polymerase I subunit C|DNA-directed RNA polymerases I and III 40 kDa polypeptide|DNA-directed RNA polymerases I and III subunit RPAC1|RNA polymerases I and III subunit AC1|RPC40 20121230 -9606 9534 ZNF254 - BMZF-5|HD-ZNF1|ZNF539|ZNF91L HGNC:13047|MIM:604768|Ensembl:ENSG00000213096|HPRD:05304|HPRD:15826 19 19p12 zinc finger protein 254 protein-coding ZNF254 zinc finger protein 254 O bone marrow zinc finger 5|hematopoietic cell-derived zinc finger protein 1|hematopoietic-derived zinc finger protein|zinc finger protein 539 20121230 -9606 9535 GMFG - GMF-GAMMA HGNC:4374|MIM:604104|Ensembl:ENSG00000130755|HPRD:06821 19 19q13.2 glia maturation factor, gamma protein-coding GMFG glia maturation factor, gamma O glia maturation factor gamma 20121230 -9606 9536 PTGES - MGST-IV|MGST1-L1|MGST1L1|MPGES|PGES|PIG12|PP102|PP1294|TP53I12|mPGES-1 HGNC:9599|MIM:605172|Ensembl:ENSG00000148344|HPRD:05528|Vega:OTTHUMG00000020791 9 9q34.3 prostaglandin E synthase protein-coding PTGES prostaglandin E synthase O MGST1-like 1|glutathione S-transferase 1-like 1|microsomal glutathione S-transferase 1-like 1|microsomal prostaglandin E synthase 1|microsomal prostaglandin E synthase-1|p53-induced apoptosis protein 12|p53-induced gene 12 protein|tumor protein p53 inducible protein 12 20121230 -9606 9537 TP53I11 - PIG11 HGNC:16842|Ensembl:ENSG00000175274|HPRD:15545|Vega:OTTHUMG00000165714 11 11p11.2 tumor protein p53 inducible protein 11 protein-coding TP53I11 tumor protein p53 inducible protein 11 O p53-induced gene 11 protein|tumor protein p53-inducible protein 11 20121230 -9606 9538 EI24 - EPG4|PIG8|TP53I8 HGNC:13276|MIM:605170|Ensembl:ENSG00000149547|HPRD:05526|Vega:OTTHUMG00000165851 11 11q24 etoposide induced 2.4 protein-coding EI24 etoposide induced 2.4 O ectopic P-granules autophagy protein 4 homolog|etoposide induced 2.4 mRNA|etoposide-induced protein 2.4 homolog|p53-induced gene 8 protein|tumor protein p53 inducible protein 8 20121230 -9606 9540 TP53I3 - PIG3 HGNC:19373|MIM:605171|Ensembl:ENSG00000115129|HPRD:05527|Vega:OTTHUMG00000090817 2 2p23.3 tumor protein p53 inducible protein 3 protein-coding TP53I3 tumor protein p53 inducible protein 3 O p53-induced gene 3 protein|quinone oxidoreductase PIG3|quinone oxidoreductase homolog 20121230 -9606 9541 CIR1 - CIR HGNC:24217|MIM:605228|Ensembl:ENSG00000138433|HPRD:05568|Vega:OTTHUMG00000132338 2 2q31.1 corepressor interacting with RBPJ, 1 protein-coding CIR1 corepressor interacting with RBPJ, 1 O CBF1 interacting corepressor|CBF1-interacting corepressor|corepressor interacting with RBPJ 1|recepin 20121230 -9606 9542 NRG2 - DON1|HRG2|NTAK HGNC:7998|MIM:603818|Ensembl:ENSG00000158458|HPRD:04821|Vega:OTTHUMG00000129241 5 5q23-q33 neuregulin 2 protein-coding NRG2 neuregulin 2 O divergent of neuregulin-1|neural- and thymus-derived activator for ErbB kinases|pro-NRG2|pro-neuregulin-2, membrane-bound isoform 20121230 -9606 9543 IGDCC3 - HsT18880|PUNC HGNC:9700|MIM:604184|Ensembl:ENSG00000174498|HPRD:09169|Vega:OTTHUMG00000133137 15 15q22.3-q23 immunoglobulin superfamily, DCC subclass, member 3 protein-coding IGDCC3 immunoglobulin superfamily, DCC subclass, member 3 O immunoglobulin superfamily DCC subclass member 3|putative neuronal cell adhesion molecule 20121230 -9606 9545 RAB3D - D2-2|GOV|RAB16|RAD3D HGNC:9779|MIM:604350|Ensembl:ENSG00000105514|HPRD:05070|Vega:OTTHUMG00000180835 19 19p13.2 RAB3D, member RAS oncogene family protein-coding RAB3D RAB3D, member RAS oncogene family O Rab3D upregulated with myeloid differentiation|glioblastoma overexpressed|ras-related protein Rab-3D 20121230 -9606 9546 APBA3 - MGC:15815|X11L2|mint3 HGNC:580|MIM:604262|Ensembl:ENSG00000011132|HPRD:05038|Vega:OTTHUMG00000180915 19 19p13.3 amyloid beta (A4) precursor protein-binding, family A, member 3 protein-coding APBA3 amyloid beta (A4) precursor protein-binding, family A, member 3 O X11-like 2 protein|adapter protein X11gamma|amyloid beta (A4) precursor protein-binding, family A, member 3 (X11-like 2)|amyloid beta A4 precursor protein-binding family A member 3|mint-3|neuron-specific X11L2 protein|neuronal munc18-1-interacting protein 3|phosphotyrosine-binding/-interacting domain (PTB)-bearing protein 20121230 -9606 9547 CXCL14 UNQ240/PRO273 BMAC|BRAK|KEC|KS1|MIP-2g|MIP2G|NJAC|SCYB14 HGNC:10640|MIM:604186|Ensembl:ENSG00000145824|HPRD:16049|Vega:OTTHUMG00000129139 5 5q31 chemokine (C-X-C motif) ligand 14 protein-coding CXCL14 chemokine (C-X-C motif) ligand 14 O C-X-C motif chemokine 14|CXC chemokine in breast and kidney|MIP-2 gamma|bolekine|breast and kidney|chemokine BRAK|small inducible cytokine subfamily B (Cys-X-Cys), member 14 (BRAK)|small-inducible cytokine B14|tumor-suppressing chemokine 20121230 -9606 9550 ATP6V1G1 RP11-402G3.1 ATP6G|ATP6G1|ATP6GL|ATP6J|Vma10 HGNC:864|MIM:607296|Ensembl:ENSG00000136888|HPRD:06294|Vega:OTTHUMG00000021023 9 9q32 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 protein-coding ATP6V1G1 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 O ATPase, H+ transporting, lysosomal (vacuolar proton pump), member J|V-ATPase 13 kDa subunit 1|V-ATPase subunit G 1|V-type proton ATPase subunit G 1|vacuolar ATP synthase subunit M16|vacuolar H(+)-ATPase subunit G 1|vacuolar proton pump subunit G 1|vacuolar proton pump subunit M16 20121230 -9606 9551 ATP5J2 - ATP5JL HGNC:848|Ensembl:ENSG00000241468|HPRD:16520|Vega:OTTHUMG00000154609 7 7q22.1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 protein-coding ATP5J2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 O ATP synthase f chain, mitochondrial|ATP synthase subunit f, mitochondrial|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit f|F1F0-type ATPase subunit f|F1Fo-ATP synthase complex Fo membrane domain f subunit|F1Fo-ATPase synthase f subunit 20121230 -9606 9552 SPAG7 - ACRP|FSA-1 HGNC:11216|MIM:610056|Ensembl:ENSG00000091640|HPRD:10247|Vega:OTTHUMG00000177733 17 17p13.2 sperm associated antigen 7 protein-coding SPAG7 sperm associated antigen 7 O sperm-associated antigen 7 20121230 -9606 9553 MRPL33 - C2orf1|L33mt|MRP-L33|RPL33L HGNC:14487|MIM:610059|Ensembl:ENSG00000243147|HPRD:14753|Vega:OTTHUMG00000097795 2 2p21 mitochondrial ribosomal protein L33 protein-coding MRPL33 mitochondrial ribosomal protein L33 O 39S ribosomal protein L33, mitochondrial 20121230 -9606 9554 SEC22B - ERS-24|SEC22L1 HGNC:10700|MIM:604029|HPRD:04939 1 1q21.1 SEC22 vesicle trafficking protein homolog B (S. cerevisiae) (gene/pseudogene) protein-coding SEC22B SEC22 vesicle trafficking protein homolog B (S. cerevisiae) (gene/pseudogene) O ER-Golgi SNARE of 24 kDa|SEC22 vesicle trafficking protein-like 1|SEC22 vesicle-trafficking protein homolog B|vesicle-trafficking protein SEC22b 20121230 -9606 9555 H2AFY - H2A.y|H2A/y|H2AF12M|H2AFJ|MACROH2A1.1|mH2A1|macroH2A1.2 HGNC:4740|MIM:610054|Ensembl:ENSG00000113648|HPRD:13624|Vega:OTTHUMG00000129141 5 5q31.1 H2A histone family, member Y protein-coding H2AFY H2A histone family, member Y O core histone macro-H2A.1|histone H2A.y|histone macroH2A1|histone macroH2A1.1|histone macroH2A1.2|medulloblastoma antigen MU-MB-50.205 20121230 -9606 9556 C14orf2 PRO1574 MP68|PLPM HGNC:1188|MIM:604573|Ensembl:ENSG00000156411|HPRD:05199|Vega:OTTHUMG00000171601 14 14q32.33 chromosome 14 open reading frame 2 protein-coding C14orf2 chromosome 14 open reading frame 2 O 6.8 kDa mitochondrial proteolipid 20121230 -9606 9557 CHD1L - ALC1|CHDL HGNC:1916|MIM:613039|Ensembl:ENSG00000131778|HPRD:09880|Vega:OTTHUMG00000150271 1 1q12 chromodomain helicase DNA binding protein 1-like protein-coding CHD1L chromodomain helicase DNA binding protein 1-like O amplified in liver cancer 1|amplified in liver cancer protein 1|chromodomain-helicase-DNA-binding protein 1-like 20121230 -9606 9559 VPS26A - HB58|Hbeta58|PEP8A|VPS26 HGNC:12711|MIM:605506|Ensembl:ENSG00000122958|HPRD:08385|Vega:OTTHUMG00000018376 10 10q21.1 vacuolar protein sorting 26 homolog A (S. pombe) protein-coding VPS26A vacuolar protein sorting 26 homolog A (S. pombe) O vacuolar protein sorting-associated protein 26A|vesicle protein sorting 26A 20121230 -9606 9560 CCL4L1 - AT744.2|CCL4L|LAG-1|LAG1|SCYA4L HGNC:10631|MIM:603782|Ensembl:ENSG00000205020|HPRD:16030|Vega:OTTHUMG00000180296 17 17q12 chemokine (C-C motif) ligand 4-like 1 protein-coding CCL4L1 chemokine (C-C motif) ligand 4-like 1 O C-C motif chemokine 4-like|MIP-1-beta|lymphocyte activation gene 1 protein|macrophage inflammatory protein 1-beta|macrophage inflammatory protein-1b2|monocyte adherence-induced protein 5-alpha 20121230 -9606 9562 MINPP1 RP11-57C13.1 HIPER1|MINPP2|MIPP HGNC:7102|MIM:605391|Ensembl:ENSG00000107789|HPRD:05652|Vega:OTTHUMG00000018678 10 10q23 multiple inositol-polyphosphate phosphatase 1 protein-coding MINPP1 multiple inositol-polyphosphate phosphatase 1 O 2,3-BPG phosphatase|2,3-bisphosphoglycerate 3-phosphatase|inositol (1,3,4,5)-tetrakisphosphate 3-phosphatase|ins(1,3,4,5)P(4) 3-phosphatase|multiple inositol polyphosphate histidine phosphatase, 1|multiple inositol polyphosphate phosphatase 1|multiple inositol polyphosphate phosphatase 2 20121230 -9606 9563 H6PD RP3-510D11.3 CORTRD1|G6PDH|GDH HGNC:4795|MIM:138090|Ensembl:ENSG00000049239|HPRD:00681|Vega:OTTHUMG00000001768 1 1p36 hexose-6-phosphate dehydrogenase (glucose 1-dehydrogenase) protein-coding H6PD hexose-6-phosphate dehydrogenase (glucose 1-dehydrogenase) O 6-phosphogluconolactonase|G6PD, H form|GDH/6PGL endoplasmic bifunctional protein|glucose 1- dehydrogenase|glucose dehydrogenase|glucose dehyrogenase|glucose-6-phosphate dehydrogenase, salivary 20121230 -9606 9564 BCAR1 hCG_1980470 CAS|CAS1|CASS1|CRKAS|P130Cas HGNC:971|MIM:602941|Ensembl:ENSG00000050820|HPRD:04248|Vega:OTTHUMG00000137604 16 16q23.1 breast cancer anti-estrogen resistance 1 protein-coding BCAR1 breast cancer anti-estrogen resistance 1 O Cas scaffolding protein family member 1|Crk-associated substrate p130Cas|breast cancer anti-estrogen resistance protein 1 20121230 -9606 9566 HPCX - - HGNC:5146|MIM:300147 X Xq27-q28 hereditary prostate cancer, X-linked unknown HPCX hereditary prostate cancer, X-linked O - 20120622 -9606 9567 GTPBP1 RP3-508I15.1 GP-1|GP1|HSPC018 HGNC:4669|MIM:602245|Ensembl:ENSG00000100226|HPRD:03765|Vega:OTTHUMG00000151002 22 22q13.1 GTP binding protein 1 protein-coding GTPBP1 GTP binding protein 1 O G-protein 1|GTP-binding protein 1 20121230 -9606 9568 GABBR2 - GABABR2|GPR51|GPRC3B|HG20|HRIHFB2099 HGNC:4507|MIM:607340|Ensembl:ENSG00000136928|HPRD:09552|Vega:OTTHUMG00000020345 9 9q22.1-q22.3 gamma-aminobutyric acid (GABA) B receptor, 2 protein-coding GABBR2 gamma-aminobutyric acid (GABA) B receptor, 2 O G protein-coupled receptor 51|G-protein coupled receptor 51|GABA-B receptor 2|GABA-B receptor, R2 subunit|GABA-B-R2|GABA-BR2|gamma-aminobutyric acid B receptor 2|gamma-aminobutyric acid type B receptor subunit 2|gb2 20121230 -9606 9569 GTF2IRD1 - BEN|CREAM1|GTF3|MUSTRD1|RBAP2|WBS|WBSCR11|WBSCR12|hMusTRD1alpha1 HGNC:4661|MIM:604318|Ensembl:ENSG00000006704|HPRD:08379|Vega:OTTHUMG00000023782 7 7q11.23 GTF2I repeat domain containing 1 protein-coding GTF2IRD1 GTF2I repeat domain containing 1 O USE B1-binding protein|Williams-Beuren syndrome chromosome region 11|binding factor for early enhancer|general transcription factor 3|general transcription factor II-I repeat domain-containing protein 1|general transcription factor III|muscle TFII-I repeat domain-containing protein 1 alpha 1|slow-muscle-fiber enhancer-binding protein|williams-Beuren syndrome chromosomal region 12 protein 20121230 -9606 9570 GOSR2 - Bos1|EPM6|GS27 HGNC:4431|MIM:604027|Ensembl:ENSG00000108433|HPRD:04937|Vega:OTTHUMG00000178080 17 17q21 golgi SNAP receptor complex member 2 protein-coding GOSR2 golgi SNAP receptor complex member 2 O 27 kDa Golgi SNARE protein|Golgi SNAP receptor complex member 2|membrin 20121230 -9606 9572 NR1D1 - EAR1|THRA1|THRAL|ear-1|hRev HGNC:7962|MIM:602408|Ensembl:ENSG00000126368|HPRD:03873|Vega:OTTHUMG00000133327 17 17q11.2 nuclear receptor subfamily 1, group D, member 1 protein-coding NR1D1 nuclear receptor subfamily 1, group D, member 1 O Rev-ErbAalpha|V-erbA-related protein 1|nuclear receptor Rev-ErbA-alpha|nuclear receptor subfamily 1 group D member 1|rev-erbA-alpha 20121230 -9606 9573 GDF3 UNQ222/PRO248 KFS3|MCOP7|MCOPCB6 HGNC:4218|MIM:606522|Ensembl:ENSG00000184344|HPRD:05938|Vega:OTTHUMG00000168433 12 12p13.1 growth differentiation factor 3 protein-coding GDF3 growth differentiation factor 3 O GDF-3|growth/differentiation factor 3 20121230 -9606 9575 CLOCK - KAT13D|bHLHe8 HGNC:2082|MIM:601851|Ensembl:ENSG00000134852|HPRD:03508|Vega:OTTHUMG00000102141 4 4q12 clock circadian regulator protein-coding CLOCK clock circadian regulator O circadian locomoter output cycles kaput protein|circadian locomoter output cycles protein kaput|class E basic helix-loop-helix protein 8|clock homolog 20121230 -9606 9576 SPAG6 RP11-301N24.4 Repro-SA-1|pf16 HGNC:11215|MIM:605730|Ensembl:ENSG00000077327|HPRD:09305|Vega:OTTHUMG00000017808 10 10p12.2 sperm associated antigen 6 protein-coding SPAG6 sperm associated antigen 6 O axoneme central apparatus protein|protein PF16 homolog|sperm flagellar protein|sperm-associated antigen 6 20121230 -9606 9577 BRE - BRCC4|BRCC45 HGNC:1106|MIM:610497|Ensembl:ENSG00000158019|HPRD:08498|Vega:OTTHUMG00000097831 2 2p23.2 brain and reproductive organ-expressed (TNFRSF1A modulator) protein-coding BRE brain and reproductive organ-expressed (TNFRSF1A modulator) O BRCA1-A complex subunit BRE|BRCA1/BRCA2-containing complex subunit 45|BRCA1/BRCA2-containing complex, subunit 4|brain and reproductive organ-expressed protein 20121230 -9606 9578 CDC42BPB - MRCKB HGNC:1738|MIM:614062|Ensembl:ENSG00000198752|HPRD:08516|Vega:OTTHUMG00000171898 14 14q32.3 CDC42 binding protein kinase beta (DMPK-like) protein-coding CDC42BPB CDC42 binding protein kinase beta (DMPK-like) O CDC42-binding protein kinase beta (DMPK-like)|CDC42BP-beta|DMPK-like beta|MRCK beta|myotonic dystrophy kinase-related CDC42-binding kinase beta|myotonic dystrophy protein kinase-like beta|serine/threonine-protein kinase MRCK beta 20121230 -9606 9580 SOX13 RP11-74C13.1 ICA12|Sox-13 HGNC:11192|MIM:604748|Ensembl:ENSG00000143842|Vega:OTTHUMG00000036050 1 1q32 SRY (sex determining region Y)-box 13 protein-coding SOX13 SRY (sex determining region Y)-box 13 O SRY-box 13|SRY-related HMG-box gene 13|islet cell antibody 12|islet cell antigen 12|transcription factor SOX-13|type 1 diabetes autoantigen ICA12 20121230 -9606 9581 PREPL - - HGNC:30228|MIM:609557|Ensembl:ENSG00000138078|HPRD:17189|Vega:OTTHUMG00000152791 2 2p21 prolyl endopeptidase-like protein-coding PREPL prolyl endopeptidase-like O putative prolyl oligopeptidase 20121230 -9606 9582 APOBEC3B CTA-150C2.15-003 APOBEC1L|ARCD3|ARP4|DJ742C19.2|PHRBNL|bK150C2.2 HGNC:17352|MIM:607110|Ensembl:ENSG00000179750|HPRD:06169|Vega:OTTHUMG00000151085 22 22q13.1-q13.2 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3B protein-coding APOBEC3B apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3B O cytidine deaminase|phorbolin 2|phorbolin 3|phorbolin-1-related protein|phorbolin-2/3|probable DNA dC->dU-editing enzyme APOBEC-3B 20121230 -9606 9583 ENTPD4 - LALP70|LAP70|LYSAL1|NTPDase-4|UDPase HGNC:14573|MIM:607577|Ensembl:ENSG00000197217|HPRD:09618|Vega:OTTHUMG00000097852 8 8p21.3 ectonucleoside triphosphate diphosphohydrolase 4 protein-coding ENTPD4 ectonucleoside triphosphate diphosphohydrolase 4 O golgi luminal UDPase|guanosine-diphosphatase like protein|lysosomal apyrase-like 1|lysosomal apyrase-like protein of 70 kDa|uridine-diphosphatase 20121230 -9606 9584 RBM39 RP11-353C18.2 CAPER|CAPERalpha|FSAP59|HCC1|RNPC2 HGNC:15923|MIM:604739|Ensembl:ENSG00000131051|HPRD:09201|Vega:OTTHUMG00000032358 20 20q11.22 RNA binding motif protein 39 protein-coding RBM39 RNA binding motif protein 39 O RNA-binding protein 39|RNA-binding region (RNP1, RRM) containing 2|coactivator of activating protein-1 and estrogen receptors|functional spliceosome-associated protein 59|hepatocellular carcinoma protein 1|splicing factor HCC1 20121230 -9606 9585 KIF20B - CT90|KRMP1|MPHOSPH1|MPP-1|MPP1 HGNC:7212|MIM:605498|Ensembl:ENSG00000138182|HPRD:09268|Vega:OTTHUMG00000018725 10 10q23.31 kinesin family member 20B protein-coding KIF20B kinesin family member 20B O M-phase phosphoprotein 1|cancer/testis antigen 90|kinesin-like protein KIF20B|kinesin-related motor interacting with PIN1|mitotic kinesin-like protein 20121230 -9606 9586 CREB5 - CRE-BPA HGNC:16844|Ensembl:ENSG00000146592|HPRD:09896|Vega:OTTHUMG00000097081 7 7p15.1 cAMP responsive element binding protein 5 protein-coding CREB5 cAMP responsive element binding protein 5 O CREB-5|H_GS165L15.1|cAMP response element binding protein CRE-Bpa|cAMP response element-binding protein CRE-BPa|cAMP responsive element binding protein 5 isoform alpha|cAMP-responsive element-binding protein 5|cyclic AMP-responsive element-binding protein 5 20121230 -9606 9587 MAD2L1BP - CMT2|RP1-261G23.6 HGNC:21059|Ensembl:ENSG00000124688|HPRD:10065|Vega:OTTHUMG00000014747 6 6p21.1 MAD2L1 binding protein protein-coding MAD2L1BP MAD2L1 binding protein O MAD2L1-binding protein|caught by MAD2 protein 20121230 -9606 9588 PRDX6 - 1-Cys|AOP2|NSGPx|PRX|aiPLA2|p29 HGNC:16753|MIM:602316|Ensembl:ENSG00000117592|HPRD:03817|Vega:OTTHUMG00000034804 1 1q25.1 peroxiredoxin 6 protein-coding PRDX6 peroxiredoxin 6 O 1-Cys PRX|1-Cys peroxiredoxin|24 kDa protein|acidic calcium-independent phospholipase A2|antioxidant protein 2|liver 2D page spot 40|non-selenium glutathione peroxidase|peroxiredoxin-6|red blood cells page spot 12 20121230 -9606 9589 WTAP RP1-56L9.4 - HGNC:16846|MIM:605442|Ensembl:ENSG00000146457|HPRD:09259|Vega:OTTHUMG00000015933 6 6q25-q27 Wilms tumor 1 associated protein protein-coding WTAP Wilms tumor 1 associated protein O PNAS-132|WT1-associated protein|Wilms' tumour 1-associating protein|female-lethal(2)D homolog|hFL(2)D|pre-mRNA-splicing regulator WTAP|putative pre-mRNA splicing regulator female-lethal(2D)|wilms tumor 1-associating protein 20121230 -9606 9590 AKAP12 - AKAP250|SSeCKS HGNC:370|MIM:604698|Ensembl:ENSG00000131016|HPRD:05263|Vega:OTTHUMG00000015833 6 6q24-q25 A kinase (PRKA) anchor protein 12 protein-coding AKAP12 A kinase (PRKA) anchor protein 12 O A-kinase anchor protein 12|A-kinase anchor protein, 250kDa|AKAP 250|Src-Suppressed C Kinase Substrate|kinase scaffold protein gravin|myasthenia gravis autoantigen gravin 20121230 -9606 9592 IER2 - ETR101 HGNC:28871|Ensembl:ENSG00000160888|HPRD:09997|Vega:OTTHUMG00000180790 19 19p13.2 immediate early response 2 protein-coding IER2 immediate early response 2 O immediate early response gene 2 protein 20121230 -9606 9595 CYTIP - B3-1|CASP|CYBR|CYTHIP|HE|PSCDBP HGNC:9506|MIM:604448|Ensembl:ENSG00000115165|HPRD:09192|Vega:OTTHUMG00000154551 2 2q11.2 cytohesin 1 interacting protein protein-coding CYTIP cytohesin 1 interacting protein O cbp HE|cytohesin binder and regulator|cytohesin binding protein HE|cytohesin-1 interacting protein|cytohesin-associated scaffolding protein|cytohesin-binding protein HE|cytohesin-interacting protein|pleckstrin homology Sec7 and coiled-coil domains-binding protein|pleckstrin homology, Sec7 and coiled-coil domains, binding protein|pleckstrin homology, Sec7 and coiled/coil domains, binding protein 20121230 -9606 9596 OR1R1P - OR17-01|OR17-1|OR1R2P|OR1R3P|OR20A1P HGNC:8226 17 17p13.3 olfactory receptor, family 1, subfamily R, member 1 pseudogene pseudo OR1R1P olfactory receptor, family 1, subfamily R, member 1 pseudogene O - 20121230 -9606 9597 SMAD5-AS1 - DAMS|SMAD5AS|SMAD5OS HGNC:30586|HPRD:09904 5 5q31.1 SMAD5 antisense RNA 1 miscRNA SMAD5-AS1 SMAD5 antisense RNA 1 O - 20121230 -9606 9600 PITPNM1 - DRES9|NIR2|PITPNM|RDGB|RDGB1|RDGBA|RDGBA1|Rd9 HGNC:9003|MIM:608794|Ensembl:ENSG00000110697|HPRD:07497|Vega:OTTHUMG00000167675 11 11q13 phosphatidylinositol transfer protein, membrane-associated 1 protein-coding PITPNM1 phosphatidylinositol transfer protein, membrane-associated 1 O NIR-2|PITPnm 1|PYK2 N-terminal domain-interacting receptor 2|drosophila retinal degeneration B homolog|membrane-associated phosphatidylinositol transfer protein 1|retinal degeneration B alpha 1 20121230 -9606 9601 PDIA4 - ERP70|ERP72|ERp-72 HGNC:30167|Ensembl:ENSG00000155660|HPRD:06501|Vega:OTTHUMG00000150248 7 7q35 protein disulfide isomerase family A, member 4 protein-coding PDIA4 protein disulfide isomerase family A, member 4 O ER protein 70|ER protein 72|endoplasmic reticulum resident protein 70|endoplasmic reticulum resident protein 72|protein disulfide isomerase related protein (calcium-binding protein, intestinal-related)|protein disulfide isomerase-associated 4|protein disulfide-isomerase A4 20121230 -9606 9603 NFE2L3 - NRF3 HGNC:7783|MIM:604135|Ensembl:ENSG00000050344|HPRD:09162|Vega:OTTHUMG00000023882 7 7p15.2 nuclear factor (erythroid-derived 2)-like 3 protein-coding NFE2L3 nuclear factor (erythroid-derived 2)-like 3 O NF-E2-related factor 3|NFE2-related factor 3|nuclear factor erythroid 2-related factor 3|nuclear factor, erythroid derived 2, like 3|nuclear factor-erythroid 2 p45-related factor 3|nuclear factor-erythroid 2-related factor 3 20121230 -9606 9604 RNF14 HRIHFB2038 ARA54|HFB30|TRIAD2 HGNC:10058|MIM:605675|Ensembl:ENSG00000013561|HPRD:05745|Vega:OTTHUMG00000129660 5 5q23.3-q31.1 ring finger protein 14 protein-coding RNF14 ring finger protein 14 O E3 ubiquitin-protein ligase RNF14|androgen receptor associated protein 54|androgen receptor-associated protein 54 20121230 -9606 9605 VPS9D1 - ATP-BL|C16orf7 HGNC:13526|Ensembl:ENSG00000075399|HPRD:08508|Vega:OTTHUMG00000173219 16 16q24 VPS9 domain containing 1 protein-coding VPS9D1 VPS9 domain containing 1 O uncharacterized protein C16orf7 20121230 -9606 9607 CARTPT - CART HGNC:24323|MIM:602606|Ensembl:ENSG00000164326|HPRD:04006|Vega:OTTHUMG00000131261 5 5q13.2 CART prepropeptide protein-coding CARTPT CART prepropeptide O cocaine and amphetamine regulated transcript|cocaine- and amphetamine-regulated transcript protein 20121230 -9606 9609 RAB36 - - HGNC:9775|MIM:605662|Ensembl:ENSG00000100228|HPRD:05743|Vega:OTTHUMG00000150601 22 22q11.22 RAB36, member RAS oncogene family protein-coding RAB36 RAB36, member RAS oncogene family O ras-related protein Rab-36|small GTP-binding protein Rab36 20121230 -9606 9610 RIN1 - - HGNC:18749|MIM:605965|Ensembl:ENSG00000174791|HPRD:05813|Vega:OTTHUMG00000167085 11 11q13.2 Ras and Rab interactor 1 protein-coding RIN1 Ras and Rab interactor 1 O ras and Rab interactor 1|ras inhibitor 1|ras inhibitor JC99|ras inhibitor RIN1|ras interaction/interference protein 1 20121230 -9606 9611 NCOR1 - N-CoR|N-CoR1|TRAC1|hN-CoR HGNC:7672|MIM:600849|Ensembl:ENSG00000141027|HPRD:02911|Vega:OTTHUMG00000059309 17 17p11.2 nuclear receptor corepressor 1 protein-coding NCOR1 nuclear receptor corepressor 1 O nuclear receptor co-repressor 1|thyroid hormone- and retinoic acid receptor-associated corepressor 1 20121230 -9606 9612 NCOR2 - CTG26|N-CoR2|SMAP270|SMRT|SMRTE|SMRTE-tau|TNRC14|TRAC|TRAC-1|TRAC1 HGNC:7673|MIM:600848|Ensembl:ENSG00000196498|HPRD:02910|Vega:OTTHUMG00000150455 12 12q24 nuclear receptor corepressor 2 protein-coding NCOR2 nuclear receptor corepressor 2 O CTG repeat protein 26|T3 receptor-associating factor|silencing mediator for retinoid and thyroid hormone receptors|thyroid-, retinoic-acid-receptor-associated corepressor 20121230 -9606 9615 GDA RP11-63P12.1 CYPIN|GUANASE|NEDASIN HGNC:4212|MIM:139260|Ensembl:ENSG00000119125|HPRD:08849|Vega:OTTHUMG00000020005 9 9q21.13 guanine deaminase protein-coding GDA guanine deaminase O GAH|cytoplasmic PSD95 interactor|guanine aminase|guanine aminohydrolase|p51-nedasin 20121230 -9606 9616 RNF7 - CKBBP1|ROC2|SAG HGNC:10070|MIM:603863|Ensembl:ENSG00000114125|HPRD:04840|Vega:OTTHUMG00000141305 3 3q22-q24 ring finger protein 7 protein-coding RNF7 ring finger protein 7 O CKII beta-binding protein 1|RING-box protein 2|rbx2|regulator of cullins 2|sensitive to apoptosis gene protein|sensitive to apoptosis, zinc RING finger protein SAG, regulator of cullins 2|zinc RING finger protein SAG 20121230 -9606 9617 MTRF1 RP11-74J13.3 MRF1|MTTRF1|RF1 HGNC:7469|MIM:604601|Ensembl:ENSG00000120662|HPRD:06855|Vega:OTTHUMG00000016790 13 13q14.1-q14.3 mitochondrial translational release factor 1 protein-coding MTRF1 mitochondrial translational release factor 1 O MRF-1|mitochontrial peptide chain release factor 1|mtRF-1|peptide chain release factor 1, mitochondrial 20121230 -9606 9618 TRAF4 - CART1|MLN62|RNF83 HGNC:12034|MIM:602464|Ensembl:ENSG00000076604|HPRD:03915|Vega:OTTHUMG00000132677 17 17q11-q12 TNF receptor-associated factor 4 protein-coding TRAF4 TNF receptor-associated factor 4 O MLN 62|RING finger protein 83|cysteine-rich domain associated with RING and Traf domains protein 1|cysteine-rich domain associated with ring and TRAF domain|malignant 62|metastatic lymph node gene 62 protein|tumor necrosis receptor-associated factor 4A 20121230 -9606 9619 ABCG1 - ABC8|WHITE1 HGNC:73|MIM:603076|Ensembl:ENSG00000160179|HPRD:04355|Vega:OTTHUMG00000086791 21 21q22.3 ATP-binding cassette, sub-family G (WHITE), member 1 protein-coding ABCG1 ATP-binding cassette, sub-family G (WHITE), member 1 O ABC transporter 8|ATP-binding cassette sub-family G member 1|ATP-binding cassette transporter 8|ATP-binding cassette transporter member 1 of subfamily G|homolog of Drosophila white|white protein homolog (ATP-binding cassette transporter 8) 20121230 -9606 9620 CELSR1 RP5-1163J1.5 CDHF9|FMI2|HFMI2|ME2 HGNC:1850|MIM:604523|Ensembl:ENSG00000075275|HPRD:05160|Vega:OTTHUMG00000150423 22 22q13.3 cadherin, EGF LAG seven-pass G-type receptor 1 (flamingo homolog, Drosophila) protein-coding CELSR1 cadherin, EGF LAG seven-pass G-type receptor 1 (flamingo homolog, Drosophila) O cadherin EGF LAG seven-pass G-type receptor 1|cadherin family member 9|flamingo homolog 2|protocadherin flamingo 2 20121230 -9606 9622 KLK4 - AI2A1|ARM1|EMSP|EMSP1|KLK-L1|PRSS17|PSTS|kallikrein HGNC:6365|MIM:603767|Ensembl:ENSG00000167749|HPRD:04793 19 19q13.41 kallikrein-related peptidase 4 protein-coding KLK4 kallikrein-related peptidase 4 O androgen-regulated message 1|enamel matrix serine protease 1|enamel matrix serine proteinase 1|kallikrein-4|kallikrein-like protein 1|prostase|serine protease 17 20121230 -9606 9623 TCL1B - SYN-1|TML1 HGNC:11649|MIM:603769|Ensembl:ENSG00000213231|HPRD:04795|Vega:OTTHUMG00000028912 14 14q32.1 T-cell leukemia/lymphoma 1B protein-coding TCL1B T-cell leukemia/lymphoma 1B O T-cell leukemia/lymphoma protein 1B|T-cell lymphoma/leukemia 1B|TCL1/ MTCP1-like 1|oncogene TCL-1B|syncytiotrophoblast-specific protein 20121230 -9606 9625 AATK - AATYK|AATYK1|LMR1|LMTK1|p35BP HGNC:21|MIM:605276|Ensembl:ENSG00000181409|HPRD:05591|Vega:OTTHUMG00000132717 17 17q25.3 apoptosis-associated tyrosine kinase protein-coding AATK apoptosis-associated tyrosine kinase O CDK5-binding protein|brain apoptosis-associated tyrosine kinase|lemur tyrosine kinase 1|p35-binding protein|serine/threonine-protein kinase LMTK1 20121230 -9606 9626 GUCA1C - GCAP3 HGNC:4680|MIM:605128|Ensembl:ENSG00000138472|HPRD:05499|Vega:OTTHUMG00000159204 3 3q13.1 guanylate cyclase activator 1C protein-coding GUCA1C guanylate cyclase activator 1C O GCAP 3|guanylyl cyclase-activating protein 3 20121230 -9606 9627 SNCAIP - SYPH1|Sph1 HGNC:11139|MIM:603779|Ensembl:ENSG00000064692|HPRD:04804|Vega:OTTHUMG00000128915 5 5q23.2 synuclein, alpha interacting protein protein-coding SNCAIP synuclein, alpha interacting protein O alpha-synuclein-interacting protein|synphilin-1 20121230 -9606 9628 RGS6 - GAP HGNC:10002|MIM:603894|Ensembl:ENSG00000182732|Vega:OTTHUMG00000171340 14 14q24.3 regulator of G-protein signaling 6 protein-coding RGS6 regulator of G-protein signaling 6 O GTPase activating protein|H_DJ1108A12.1|S914|WUGSC:H_DJ0283M22.1|WUGSC:H_DJ1108A12.1|regulator of G-protein signalling 6 20121230 -9606 9629 CLCA3P - CLCA3 HGNC:2017|MIM:604337|HPRD:05065 1 1p31-p22 chloride channel accessory 3, pseudogene pseudo CLCA3P chloride channel accessory 3, pseudogene O - 20121230 -9606 9630 GNA14 - - HGNC:4382|MIM:604397|Ensembl:ENSG00000156049|HPRD:05095|Vega:OTTHUMG00000020058 9 9q21 guanine nucleotide binding protein (G protein), alpha 14 protein-coding GNA14 guanine nucleotide binding protein (G protein), alpha 14 O G-protein subunit alpha-14|g alpha-14|guanine nucleotide-binding protein 14|guanine nucleotide-binding protein subunit alpha-14 20121230 -9606 9631 NUP155 - N155 HGNC:8063|MIM:606694|Ensembl:ENSG00000113569|HPRD:05984|Vega:OTTHUMG00000090803 5 5p13.1 nucleoporin 155kDa protein-coding NUP155 nucleoporin 155kDa O 155 kDa nucleoporin|nuclear pore complex protein Nup155|nucleoporin Nup155 20121230 -9606 9632 SEC24C - - HGNC:10705|MIM:607185|Ensembl:ENSG00000176986|HPRD:06217|Vega:OTTHUMG00000018476 10 10q22.2 SEC24 family, member C (S. cerevisiae) protein-coding SEC24C SEC24 family, member C (S. cerevisiae) O SEC24 related gene family, member C|SEC24-related protein C|protein transport protein Sec24C 20121230 -9606 9633 MTL5 - CXCDC2|MTLT|TESMIN HGNC:7446|MIM:604374|Ensembl:ENSG00000132749|HPRD:09186|Vega:OTTHUMG00000167891 11 11q13.2-q13.3 metallothionein-like 5, testis-specific (tesmin) protein-coding MTL5 metallothionein-like 5, testis-specific (tesmin) O CXC domain containing 2|tesmin|testis-specific metallothionein-like protein 20121230 -9606 9635 CLCA2 - CACC|CACC3|CLCRG2|CaCC-3 HGNC:2016|MIM:604003|Ensembl:ENSG00000137975|HPRD:04923|Vega:OTTHUMG00000010256 1 1p22.3 chloride channel accessory 2 protein-coding CLCA2 chloride channel accessory 2 O CLCA family member 2, chloride channel regulator|calcium-activated chloride channel family member 2|calcium-activated chloride channel protein 3|calcium-activated chloride channel regulator 2|calcium-activated chloride channel-2|chloride channel regulator 2|chloride channel, calcium activated, family member 2|hCLCA2|hCaCC-3 20121230 -9606 9636 ISG15 - G1P2|IFI15|IP17|UCRP|hUCRP HGNC:4053|MIM:147571|Ensembl:ENSG00000187608|HPRD:00958|Vega:OTTHUMG00000040777 1 1p36.33 ISG15 ubiquitin-like modifier protein-coding ISG15 ISG15 ubiquitin-like modifier O interferon, alpha-inducible protein (clone IFI-15K)|interferon-induced 17-kDa/15-kDa protein|interferon-stimulated protein, 15 kDa|ubiquitin cross-reactive protein|ubiquitin-like protein ISG15 20121230 -9606 9637 FEZ2 - HUM3CL HGNC:3660|MIM:604826|Ensembl:ENSG00000171055|HPRD:09213|Vega:OTTHUMG00000152148 2 2p21 fasciculation and elongation protein zeta 2 (zygin II) protein-coding FEZ2 fasciculation and elongation protein zeta 2 (zygin II) O fasciculation and elongation protein zeta-2|pre-T/NK cell associated protein (3Cl)|zygin 2|zygin II|zygin-2 20121230 -9606 9638 FEZ1 - - HGNC:3659|MIM:604825|Ensembl:ENSG00000149557|HPRD:09212|Vega:OTTHUMG00000165886 11 11q24.2 fasciculation and elongation protein zeta 1 (zygin I) protein-coding FEZ1 fasciculation and elongation protein zeta 1 (zygin I) O fasciculation and elongation protein zeta-1|zygin I|zygin-1 20121230 -9606 9639 ARHGEF10 - GEF10 HGNC:14103|MIM:608136|Ensembl:ENSG00000104728|HPRD:09735|Vega:OTTHUMG00000163626 8 8p23 Rho guanine nucleotide exchange factor (GEF) 10 protein-coding ARHGEF10 Rho guanine nucleotide exchange factor (GEF) 10 O rho guanine nucleotide exchange factor 10 20121230 -9606 9640 ZNF592 - CAMOS|SCAR5 HGNC:28986|MIM:613624|Ensembl:ENSG00000166716|HPRD:10339|Vega:OTTHUMG00000172490 15 15q25.3 zinc finger protein 592 protein-coding ZNF592 zinc finger protein 592 O - 20121230 -9606 9641 IKBKE RP11-534L20.1 IKK-E|IKK-i|IKKE|IKKI HGNC:14552|MIM:605048|Ensembl:ENSG00000143466|HPRD:05442|Vega:OTTHUMG00000036346 1 1q32.1 inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase epsilon protein-coding IKBKE inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase epsilon O I-kappa-B kinase epsilon|IKK-epsilon|IKK-related kinase epsilon|inducible I kappa-B kinase|inducible IkappaB kinase|inhibitor of nuclear factor kappa-B kinase subunit epsilon 20121230 -9606 9643 MORF4L2 RP5-1055C14.2 MORFL2|MRGX HGNC:16849|MIM:300409|Ensembl:ENSG00000123562|HPRD:02326|Vega:OTTHUMG00000022104 X Xq22 mortality factor 4 like 2 protein-coding MORF4L2 mortality factor 4 like 2 O MORF-related gene X protein|MSL3-2 protein|mortality factor 4-like protein 2|protein MSL3-2|transcription factor-like protein MRGX 20121230 -9606 9644 SH3PXD2A - FISH|SH3MD1|TKS5 HGNC:23664|Ensembl:ENSG00000107957|HPRD:10228|Vega:OTTHUMG00000018997 10 10q24.33 SH3 and PX domains 2A protein-coding SH3PXD2A SH3 and PX domains 2A O SH3 and PX domain-containing protein 2A|SH3 multiple domains 1|adapter protein TKS5|adaptor protein TKS5|five SH3 domain-containing protein|tyrosine kinase substrate with five SH3 domains 20121230 -9606 9645 MICAL2 - MICAL-2|MICAL2PV1|MICAL2PV2 HGNC:24693|MIM:608881|Ensembl:ENSG00000133816|HPRD:10085|Vega:OTTHUMG00000165744 11 11p15.3 microtubule associated monoxygenase, calponin and LIM domain containing 2 protein-coding MICAL2 microtubule associated monoxygenase, calponin and LIM domain containing 2 O flavoprotein oxidoreductase MICAL2|molecule interacting with CasL protein 2|protein MICAL-2|protein-methionine sulfoxide oxidase MICAL2 20121230 -9606 9646 CTR9 - SH2BP1|TSBP|p150|p150TSP HGNC:16850|MIM:609366|Ensembl:ENSG00000198730|HPRD:06717|Vega:OTTHUMG00000165789 11 11p15.3 Ctr9, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) protein-coding CTR9 Ctr9, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) O RNA polymerase-associated protein CTR9 homolog|SH2 domain binding protein 1 (tetratricopeptide repeat containing)|SH2 domain-binding protein 1|TPR-containing, SH2-binding phosphoprotein 20121230 -9606 9647 PPM1F - CAMKP|CaMKPase|FEM-2|POPX2|hFEM-2 HGNC:19388|Ensembl:ENSG00000100034|HPRD:10163|Vega:OTTHUMG00000150835 22 22q11.22 protein phosphatase, Mg2+/Mn2+ dependent, 1F protein-coding PPM1F protein phosphatase, Mg2+/Mn2+ dependent, 1F O Ca(2+)/calmodulin-dependent protein kinase phosphatase|CaM-kinase phosphatase|PP2C phosphatase|partner of PIX 2|protein fem-2 homolog|protein phosphatase 1F|protein phosphatase 1F (PP2C domain containing) 20121230 -9606 9648 GCC2 - GCC185|RANBP2L4|REN53 HGNC:23218|MIM:612711|Ensembl:ENSG00000135968|HPRD:11001|Vega:OTTHUMG00000153214 2 2q12.3 GRIP and coiled-coil domain containing 2 protein-coding GCC2 GRIP and coiled-coil domain containing 2 O 185 kDa Golgi coiled-coil protein|CLL-associated antigen KW-11|CTCL tumor antigen se1-1|GCC protein, 185-kD|GRIP and coiled-coil domain-containing protein 2|Golgi coiled-coil protein GCC185|Ran-binding protein 2-like 4|renal carcinoma antigen NY-REN-53 20121230 -9606 9649 RALGPS1 RP13-225O21.1 RALGEF2|RALGPS1A HGNC:16851|MIM:614444|Ensembl:ENSG00000136828|HPRD:11479|Vega:OTTHUMG00000020696 9 9q33.3 Ral GEF with PH domain and SH3 binding motif 1 protein-coding RALGPS1 Ral GEF with PH domain and SH3 binding motif 1 O Ral guanine nucleotide exchange factor RalGPS1A|RalGEF 2|ral GEF with PH domain and SH3-binding motif 1|ral guanine nucleotide exchange factor 2|ralA exchange factor RalGPS1|ras-specific guanine nucleotide-releasing factor RalGPS1 20121230 -9606 9650 MTFR1 - CHPPR|FAM54A2 HGNC:29510|Ensembl:ENSG00000066855|HPRD:12389|Vega:OTTHUMG00000164468 8 8q13.1 mitochondrial fission regulator 1 protein-coding MTFR1 mitochondrial fission regulator 1 O chondrocyte protein with a poly-proline region 20121230 -9606 9651 PLCH2 RP3-395M20.1 PLC-eta2|PLCL4|PLCeta2 HGNC:29037|MIM:612836|Ensembl:ENSG00000149527|Vega:OTTHUMG00000000719 1 1p36.32 phospholipase C, eta 2 protein-coding PLCH2 phospholipase C, eta 2 O 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase eta-2|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase eta-2|PLC-L4|phosphoinositide phospholipase C-eta-2|phosphoinositide phospholipase C-like 4|phospholipase C-eta-2|phospholipase C-eta2|phospholipase C-like 4|phospholipase C-like protein 4 20121230 -9606 9652 TTC37 - KIAA0372|Ski3 HGNC:23639|MIM:614589|Ensembl:ENSG00000198677|HPRD:11079|Vega:OTTHUMG00000121165 5 5q15 tetratricopeptide repeat domain 37 protein-coding TTC37 tetratricopeptide repeat domain 37 O SKI3 homolog|TPR repeat protein 37|tetratricopeptide repeat protein 37|thespin|tricho-hepatic-enteric syndrome protein 20121230 -9606 9653 HS2ST1 - dJ604K5.2 HGNC:5193|MIM:604844|Ensembl:ENSG00000153936|HPRD:09215|Vega:OTTHUMG00000010255 1 1p22.3 heparan sulfate 2-O-sulfotransferase 1 protein-coding HS2ST1 heparan sulfate 2-O-sulfotransferase 1 O 2-O-sulfotransferase|2OST 20121230 -9606 9654 TTLL4 - - HGNC:28976|Ensembl:ENSG00000135912|HPRD:15586|Vega:OTTHUMG00000133081 2 2p24.3-p24.1 tubulin tyrosine ligase-like family, member 4 protein-coding TTLL4 tubulin tyrosine ligase-like family, member 4 O tubulin polyglutamylase TTLL4|tubulin--tyrosine ligase-like protein 4 20121230 -9606 9655 SOCS5 - CIS6|CISH6|Cish5|SOCS-5 HGNC:16852|MIM:607094|Ensembl:ENSG00000171150|HPRD:06159|Vega:OTTHUMG00000128852 2 2p21 suppressor of cytokine signaling 5 protein-coding SOCS5 suppressor of cytokine signaling 5 O CIS-6|cytokine-inducible SH2 protein 6|cytokine-inducible SH2-containing protein 5 20121230 -9606 9656 MDC1 DAAP-285E11.7 NFBD1 HGNC:21163|MIM:607593|Ensembl:ENSG00000137337|HPRD:16252|Vega:OTTHUMG00000031075 6 6p21.3 mediator of DNA-damage checkpoint 1 protein-coding MDC1 mediator of DNA-damage checkpoint 1 O homologue to Drosophila photoreceptor protein calphotin|mediator of DNA damage checkpoint 1|mediator of DNA damage checkpoint protein 1|nuclear factor with BRCT domains 1 20121230 -9606 9657 IQCB1 OK/SW-cl.85 NPHP5|PIQ|SLSN5 HGNC:28949|MIM:609237|Ensembl:ENSG00000173226|HPRD:11049|Vega:OTTHUMG00000128677 3 3q13.33|3q21.1 IQ motif containing B1 protein-coding IQCB1 IQ motif containing B1 O IQ calmodulin-binding motif containing 1|IQ calmodulin-binding motif-containing protein 1|nephrocystin 5|p53 and DNA damage-regulated IQ motif protein 20121230 -9606 9658 ZNF516 - HsT287 HGNC:28990|Ensembl:ENSG00000101493 18 18q23 zinc finger protein 516 protein-coding ZNF516 zinc finger protein 516 O - 20121230 -9606 9659 PDE4DIP RP4-791M13.2 CMYA2|MMGL HGNC:15580|MIM:608117|Ensembl:ENSG00000178104|HPRD:10482|Vega:OTTHUMG00000013846 1 1q12 phosphodiesterase 4D interacting protein protein-coding PDE4DIP phosphodiesterase 4D interacting protein O cardiomyopathy-associated protein 2|myomegalin|phosphodiesterase 4D-interacting protein 20121230 -9606 9662 CEP135 - CEP4|KIAA0635|MCPH8 HGNC:29086|MIM:611423|Ensembl:ENSG00000174799|HPRD:09954|HPRD:11097|Vega:OTTHUMG00000160748 4 4q12 centrosomal protein 135kDa protein-coding CEP135 centrosomal protein 135kDa O centrosomal protein 4|centrosomal protein of 135 kDa|centrosome protein cep135 20121230 -9606 9663 LPIN2 - - HGNC:14450|MIM:605519|Ensembl:ENSG00000101577|HPRD:16114|Vega:OTTHUMG00000131508 18 18p11.31 lipin 2 protein-coding LPIN2 lipin 2 O lipin-2|phosphatidate phosphatase LPIN2 20121230 -9606 9665 KIAA0430 - LKAP|MARF1|PPP1R34 HGNC:29562|MIM:614593|Ensembl:ENSG00000166783|HPRD:13992|Vega:OTTHUMG00000129884 16 16p13.11 KIAA0430 protein-coding KIAA0430 KIAA0430 O limkain b1|limkain-b1|meiosis arrest female protein 1|protein phosphatase 1, regulatory subunit 34 20121230 -9606 9666 DZIP3 - PPP1R66|UURF2|hRUL138 HGNC:30938|MIM:608672|Ensembl:ENSG00000198919|HPRD:10562|Vega:OTTHUMG00000159232 3 3q13.13 DAZ interacting protein 3, zinc finger protein-coding DZIP3 DAZ interacting protein 3, zinc finger O DAZ-interacting protein 3|E3 ubiquitin-protein ligase DZIP3|RNA-binding ubiquitin ligase of 138 kDa|UURF2 ubiquitin ligase|human RNA-binding ubiquitin ligase of 138 kDa|protein phosphatase 1, regulatory subunit 66|zinc finger DAZ interacting protein 3 20121230 -9606 9667 SAFB2 - - HGNC:21605|MIM:608066|Ensembl:ENSG00000130254|HPRD:06424|Vega:OTTHUMG00000180374 19 19p13.3 scaffold attachment factor B2 protein-coding SAFB2 scaffold attachment factor B2 O SAF-B2 20121230 -9606 9668 ZNF432 - - HGNC:20810|Ensembl:ENSG00000256087|HPRD:11716 19 19q13.41 zinc finger protein 432 protein-coding ZNF432 zinc finger protein 432 O - 20121230 -9606 9669 EIF5B - IF2 HGNC:30793|MIM:606086|Ensembl:ENSG00000158417|HPRD:07304|Vega:OTTHUMG00000153242 2 2q11.2 eukaryotic translation initiation factor 5B protein-coding EIF5B eukaryotic translation initiation factor 5B O eIF-5B|translation initiation factor IF-2|translation initiation factor IF2 20121230 -9606 9670 IPO13 RP11-7O11.4 IMP13|KAP13|LGL2|RANBP13 HGNC:16853|MIM:610411|Ensembl:ENSG00000117408|HPRD:13742|Vega:OTTHUMG00000008297 1 1p34.1 importin 13 protein-coding IPO13 importin 13 O Ran binding protein 13|importin-13|karyopherin 13|karyopherin-13|late gestation lung 2|ran-binding protein 13 20121230 -9606 9671 WSCD2 - - HGNC:29117|Ensembl:ENSG00000075035|HPRD:17196|Vega:OTTHUMG00000169579 12 12q23.3 WSC domain containing 2 protein-coding WSCD2 WSC domain containing 2 O WSC domain-containing protein 2 20121230 -9606 9672 SDC3 - SDCN|SYND3 HGNC:10660|MIM:186357|Ensembl:ENSG00000162512|HPRD:01719|Vega:OTTHUMG00000043646 1 1pter-p22.3 syndecan 3 protein-coding SDC3 syndecan 3 O N-syndecan|syndecan neural type|syndecan proteoglycan 3|syndecan-3 20121230 -9606 9673 SLC25A44 - RP11-54H19.3 HGNC:29036|MIM:610824|Ensembl:ENSG00000160785|HPRD:17190|Vega:OTTHUMG00000014816 1 1q22 solute carrier family 25, member 44 protein-coding SLC25A44 solute carrier family 25, member 44 O solute carrier family 25 member 44 20121230 -9606 9674 KIAA0040 - - HGNC:28950|Ensembl:ENSG00000235750|HPRD:13776|Vega:OTTHUMG00000034880 1 1q24-q25 KIAA0040 protein-coding KIAA0040 KIAA0040 O uncharacterized protein KIAA0040 20121230 -9606 9675 TTI1 - KIAA0406|smg-10 HGNC:29029|MIM:614425|Ensembl:ENSG00000101407|HPRD:13799|Vega:OTTHUMG00000032433 20 20q11.23 TELO2 interacting protein 1 protein-coding TTI1 TELO2 interacting protein 1 O TEL2-interacting protein 1 homolog|TELO2-interacting protein 1 homolog|Tel two interacting protein 1|Tel2 interacting protein 1 homolog|smg-10 homolog, nonsense mediated mRNA decay factor 20121230 -9606 9677 PPIP5K1 - HISPPD2A|IP6K|IPS1|VIP1|hsVIP1 HGNC:29023|MIM:610979|Ensembl:ENSG00000168781|HPRD:13798|Vega:OTTHUMG00000059758 15 15q15.3 diphosphoinositol pentakisphosphate kinase 1 protein-coding PPIP5K1 diphosphoinositol pentakisphosphate kinase 1 O IP6 kinase|VIP1 homolog|histidine acid phosphatase domain containing 2A|histidine acid phosphatase domain-containing protein 2A|inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1|inositol pyrophosphate synthase 1|insP6 and PP-IP5 kinase 1 20121230 -9606 9678 PHF14 - - HGNC:22203|Ensembl:ENSG00000106443|HPRD:17845|Vega:OTTHUMG00000150463 7 7p21.3 PHD finger protein 14 protein-coding PHF14 PHD finger protein 14 O - 20121230 -9606 9679 FAM53B - KIAA0140|RP11-12J10.2|bA12J10.2 HGNC:28968|Ensembl:ENSG00000189319|HPRD:13314|Vega:OTTHUMG00000019215 10 10q26.13 family with sequence similarity 53, member B protein-coding FAM53B family with sequence similarity 53, member B O protein FAM53B 20121230 -9606 9681 DEPDC5 LL22NC03-113A11.1 DEP.5 HGNC:18423|MIM:614191|Ensembl:ENSG00000100150|HPRD:16795|Vega:OTTHUMG00000030926 22 22q12.3 DEP domain containing 5 protein-coding DEPDC5 DEP domain containing 5 O DEP domain-containing protein 5 20121230 -9606 9682 KDM4A - JHDM3A|JMJD2|JMJD2A HGNC:22978|MIM:609764|Ensembl:ENSG00000066135|HPRD:17168|Vega:OTTHUMG00000007560 1 1p34.1 lysine (K)-specific demethylase 4A protein-coding KDM4A lysine (K)-specific demethylase 4A O jmjC domain-containing histone demethylation protein 3A|jumonji C domain-containing histone demethylase 3A|jumonji domain containing 2|jumonji domain containing 2A|jumonji domain-containing protein 2A|lysine-specific demethylase 4A 20121230 -9606 9683 N4BP1 - - HGNC:29850|Ensembl:ENSG00000102921|HPRD:08109|HPRD:14800|Vega:OTTHUMG00000175421 16 16q12.1 NEDD4 binding protein 1 protein-coding N4BP1 NEDD4 binding protein 1 O NEDD4-binding protein 1 20121230 -9606 9684 LRRC14 - LRRC14A HGNC:20419|Ensembl:ENSG00000160959|HPRD:14312|Vega:OTTHUMG00000165179 8 8q24.3 leucine rich repeat containing 14 protein-coding LRRC14 leucine rich repeat containing 14 O leucine-rich repeat-containing protein 14 20121230 -9606 9685 CLINT1 - CLINT|ENTH|EPN4|EPNR HGNC:23186|MIM:607265|Ensembl:ENSG00000113282|HPRD:06273|Vega:OTTHUMG00000163527 5 5q33.3 clathrin interactor 1 protein-coding CLINT1 clathrin interactor 1 O clathrin interacting protein localized in the trans-Golgi region|enthoprotin|epsin 4|epsin-related protein|epsinR 20121230 -9606 9686 VGLL4 - VGL-4 HGNC:28966|Ensembl:ENSG00000144560|HPRD:11672|Vega:OTTHUMG00000129739 3 3p25.3 vestigial like 4 (Drosophila) protein-coding VGLL4 vestigial like 4 (Drosophila) O Vestigial-like 4|transcription cofactor vestigial-like protein 4 20121230 -9606 9687 GREB1 - - HGNC:24885|MIM:611736|Ensembl:ENSG00000196208|HPRD:13611|Vega:OTTHUMG00000141276 2 2p25.1 growth regulation by estrogen in breast cancer 1 protein-coding GREB1 growth regulation by estrogen in breast cancer 1 O gene regulated by estrogen in breast cancer|gene regulated in breast cancer 1 protein|protein GREB1 20121230 -9606 9688 NUP93 - NIC96 HGNC:28958|MIM:614351|Ensembl:ENSG00000102900|HPRD:14854|Vega:OTTHUMG00000133278 16 16q13 nucleoporin 93kDa protein-coding NUP93 nucleoporin 93kDa O 93 kDa nucleoporin|nuclear pore complex protein Nup93|nucleoporin Nup93 20121230 -9606 9689 BZW1 - BZAP45|Nbla10236 HGNC:18380|Ensembl:ENSG00000082153|HPRD:16570|Vega:OTTHUMG00000154560 2 2q33 basic leucine zipper and W2 domains 1 protein-coding BZW1 basic leucine zipper and W2 domains 1 O basic leucine zipper and W2 domain-containing protein 1|basic leucine-zipper protein BZAP45|putative protein product of Nbla10236 20121230 -9606 9690 UBE3C tcag7.998 HECTH2 HGNC:16803|MIM:614454|Ensembl:ENSG00000009335|HPRD:15604|Vega:OTTHUMG00000157239 7 7q36.3 ubiquitin protein ligase E3C protein-coding UBE3C ubiquitin protein ligase E3C O ubiquitin-protein isopeptide ligase (E3)|ubiquitin-protein ligase E3C 20121230 -9606 9692 KIAA0391 - MRPP3 HGNC:19958|MIM:609947|Ensembl:ENSG00000100890|HPRD:18711|Vega:OTTHUMG00000170997 14 14q13.2 KIAA0391 protein-coding KIAA0391 KIAA0391 O mitochondrial RNase P protein 3|mitochondrial RNase P subunit 3|mitochondrial ribonuclease P protein 3 20121230 -9606 9693 RAPGEF2 - CNrasGEF|NRAPGEP|PDZ-GEF1|PDZGEF1|RA-GEF|Rap-GEP|nRap GEP HGNC:16854|MIM:609530|Ensembl:ENSG00000109756|Vega:OTTHUMG00000161451 4 4q32.1 Rap guanine nucleotide exchange factor (GEF) 2 protein-coding RAPGEF2 Rap guanine nucleotide exchange factor (GEF) 2 O PDZ domain containing guanine nucleotide exchange factor (GEF) 1|PDZ domain-containing guanine nucleotide exchange factor 1|RA(Ras/Rap1A-associating)-GEF|neural RAP guanine nucleotide exchange protein|rap guanine nucleotide exchange factor 2 20121230 -9606 9694 EMC2 - KIAA0103|TTC35 HGNC:28963|MIM:607722|Ensembl:ENSG00000104412|HPRD:09657|Vega:OTTHUMG00000164873 8 8q23.1 ER membrane protein complex subunit 2 protein-coding EMC2 ER membrane protein complex subunit 2 O TPR repeat protein 35|tetratricopeptide repeat domain 35|tetratricopeptide repeat protein 35 20121230 -9606 9695 EDEM1 - EDEM HGNC:18967|MIM:607673|Ensembl:ENSG00000134109|HPRD:09644|Vega:OTTHUMG00000154896 3 3p26.1 ER degradation enhancer, mannosidase alpha-like 1 protein-coding EDEM1 ER degradation enhancer, mannosidase alpha-like 1 O ER degradation-enhancing alpha-mannosidase-like 1 20121230 -9606 9696 CROCC - ROLT HGNC:21299|Ensembl:ENSG00000058453|HPRD:16758|Vega:OTTHUMG00000002200 1 1p36.13 ciliary rootlet coiled-coil, rootletin protein-coding CROCC ciliary rootlet coiled-coil, rootletin O Tax1-binding protein 2|ciliary rootlet coiled-coil protein|rootletin|rootletin, ciliary rootlet protein 20121230 -9606 9697 TRAM2 - - HGNC:16855|MIM:608485|Ensembl:ENSG00000065308|HPRD:16338|Vega:OTTHUMG00000014850 6 6p21.1-p12 translocation associated membrane protein 2 protein-coding TRAM2 translocation associated membrane protein 2 O TRAM-like protein|translocating chain-associated membrane protein 2 20121230 -9606 9698 PUM1 RP1-65J11.4 HSPUM|PUMH|PUMH1|PUML1 HGNC:14957|MIM:607204|Ensembl:ENSG00000134644|HPRD:06230|Vega:OTTHUMG00000003795 1 1p35.2 pumilio homolog 1 (Drosophila) protein-coding PUM1 pumilio homolog 1 (Drosophila) O pumilio homolog 1|pumilio-1 20121230 -9606 9699 RIMS2 - OBOE|RAB3IP3|RIM2 HGNC:17283|MIM:606630|Ensembl:ENSG00000176406|HPRD:09436|Vega:OTTHUMG00000162097 8 8q22.3 regulating synaptic membrane exocytosis 2 protein-coding RIMS2 regulating synaptic membrane exocytosis 2 O RAB3 interacting protein 3|RIM 2|non-small cell lung cancer RimL3a protein|non-small cell lung cancer RimL3c protein|nuclear protein|rab-3-interacting molecule 2|rab-3-interacting protein 3|rab3-interacting molecule 2|regulating synaptic membrane exocytosis protein 2 20121230 -9606 9700 ESPL1 - ESP1|SEPA HGNC:16856|MIM:604143|Ensembl:ENSG00000135476|HPRD:06825|Vega:OTTHUMG00000169674 12 12q extra spindle pole bodies homolog 1 (S. cerevisiae) protein-coding ESPL1 extra spindle pole bodies homolog 1 (S. cerevisiae) O caspase-like protein ESPL1|extra spindle poles like 1|extra spindle poles-like 1 protein|separin 20121230 -9606 9701 PPP6R2 RP4-579N16.5 KIAA0685|PP6R2|SAP190|SAPS2 HGNC:19253|MIM:610877|Ensembl:ENSG00000100239|HPRD:11102|Vega:OTTHUMG00000150199 22 22q13.33 protein phosphatase 6, regulatory subunit 2 protein-coding PPP6R2 protein phosphatase 6, regulatory subunit 2 O SAPS domain family, member 2|serine/threonine-protein phosphatase 6 regulatory subunit 2 20121230 -9606 9702 CEP57 - MVA2|PIG8|TSP57 HGNC:30794|MIM:607951|Ensembl:ENSG00000166037|HPRD:16261|Vega:OTTHUMG00000167740 11 11q21 centrosomal protein 57kDa protein-coding CEP57 centrosomal protein 57kDa O FGF2-interacting protein|centrosomal protein of 57 kDa|proliferation-inducing protein 8|testis-specific protein 57|translokin 20121230 -9606 9703 KIAA0100 - BCOX|BCOX1|CT101 HGNC:28960|MIM:610664|Ensembl:ENSG00000007202|HPRD:11064|Vega:OTTHUMG00000166587 17 17q11.2 KIAA0100 protein-coding KIAA0100 KIAA0100 O U937-associated antigen|UPF0378 protein KIAA0100|antigen MLAA-22|breast cancer overexpressed gene 1|breast cancer-overexpressed gene 1 protein|cancer/testis antigen 101 20121230 -9606 9704 DHX34 - DDX34|HRH1 HGNC:16719|Ensembl:ENSG00000134815|HPRD:13144|Vega:OTTHUMG00000149959 19 19q13.3 DEAH (Asp-Glu-Ala-His) box polypeptide 34 protein-coding DHX34 DEAH (Asp-Glu-Ala-His) box polypeptide 34 O DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 34|DEAH box protein 34|probable ATP-dependent RNA helicase DHX34|probable ATP-dependent helicase DHX34 20121230 -9606 9705 ST18 - ZNF387 HGNC:18695|Ensembl:ENSG00000147488|HPRD:18110|Vega:OTTHUMG00000164233 8 8q11.23 suppression of tumorigenicity 18 (breast carcinoma) (zinc finger protein) protein-coding ST18 suppression of tumorigenicity 18 (breast carcinoma) (zinc finger protein) O suppression of tumorigenicity 18 protein|zinc finger protein 387 20121230 -9606 9706 ULK2 - ATG1B|Unc51.2 HGNC:13480|MIM:608650|Ensembl:ENSG00000083290|HPRD:10556|Vega:OTTHUMG00000059511 17 17p11.2 unc-51-like kinase 2 (C. elegans) protein-coding ULK2 unc-51-like kinase 2 (C. elegans) O serine/threonine-protein kinase ULK2 20121230 -9606 9708 PCDHGA8 - PCDH-GAMMA-A8 HGNC:8706|MIM:606295|Ensembl:ENSG00000253767|HPRD:09385|Vega:OTTHUMG00000164053 5 5q31 protocadherin gamma subfamily A, 8 protein-coding PCDHGA8 protocadherin gamma subfamily A, 8 O protocadherin gamma-A8 20121230 -9606 9709 HERPUD1 - HERP|Mif1|SUP HGNC:13744|MIM:608070|Ensembl:ENSG00000051108|HPRD:07456|Vega:OTTHUMG00000133276 16 16q13 homocysteine-inducible, endoplasmic reticulum stress-inducible, ubiquitin-like domain member 1 protein-coding HERPUD1 homocysteine-inducible, endoplasmic reticulum stress-inducible, ubiquitin-like domain member 1 O MMS-inducible|homocysteine-inducible endoplasmic reticulum stress-inducible ubiquitin-like domain member 1 protein|homocysteine-responsive endoplasmic reticulum-resident ubiquitin-like domain member 1 protein|methyl methanesulfonate (MMF)-inducible fragment protein 1 20121230 -9606 9710 KIAA0355 - - HGNC:29016|Ensembl:ENSG00000166398|HPRD:11077|Vega:OTTHUMG00000180505 19 19q13.11 KIAA0355 protein-coding KIAA0355 KIAA0355 O uncharacterized protein KIAA0355 20121230 -9606 9711 KIAA0226 hCG_22771 RUBICON HGNC:28991|MIM:613516|Ensembl:ENSG00000145016|Vega:OTTHUMG00000155452 3 3q29 KIAA0226 protein-coding KIAA0226 KIAA0226 O RUN domain and cysteine-rich domain containing, Beclin 1-interacting protein|RUN domain protein as Beclin 1-interacting and cysteine-rich containing|baron|beclin-1 associated RUN domain containing protein|run domain Beclin-1 interacting and cystein-rich containing protein|rundataxin 20121230 -9606 9712 USP6NL RP11-89C21.1 RNTRE|TRE2NL HGNC:16858|MIM:605405|Ensembl:ENSG00000148429|Vega:OTTHUMG00000017672 10 10p13 USP6 N-terminal like protein-coding USP6NL USP6 N-terminal like O RN-tre|USP6 N-terminal-like protein|related to the N terminus of tre|related to the N-terminus of tre 20121230 -9606 9715 FAM131B - - HGNC:22202|Ensembl:ENSG00000159784|HPRD:13816|Vega:OTTHUMG00000152697 7 7q34 family with sequence similarity 131, member B protein-coding FAM131B family with sequence similarity 131, member B O protein FAM131B 20121230 -9606 9716 AQR - IBP160|fSAP164 HGNC:29513|MIM:610548|Ensembl:ENSG00000021776|HPRD:12468|Vega:OTTHUMG00000172257 15 15q14 aquarius homolog (mouse) protein-coding AQR aquarius homolog (mouse) O functional spliceosome-associated protein 164|intron-binding protein aquarius|intron-binding protein of 160 kDa 20121230 -9606 9717 SEC14L5 - PRELID4B HGNC:29032|Ensembl:ENSG00000103184|Vega:OTTHUMG00000176942 16 16p13.3 SEC14-like 5 (S. cerevisiae) protein-coding SEC14L5 SEC14-like 5 (S. cerevisiae) O SEC14-like protein 5 20121230 -9606 9718 ECE2 hCG_2022032 - HGNC:13275|MIM:610145|Ensembl:ENSG00000145194|HPRD:09931|Vega:OTTHUMG00000150551 3 3q27.1|. endothelin converting enzyme 2 protein-coding ECE2 endothelin converting enzyme 2 O ECE-2|endothelin-converting enzyme 2 20121230 -9606 9719 ADAMTSL2 XX-FW80267E6.1 GPHYSD1 HGNC:14631|MIM:612277|Ensembl:ENSG00000197859|HPRD:11096|Vega:OTTHUMG00000131706 9 9q34.2 ADAMTS-like 2 protein-coding ADAMTSL2 ADAMTS-like 2 O ADAMTS-like protein 2|ADAMTSL-2 20121230 -9606 9720 CCDC144A - - HGNC:29072|Ensembl:ENSG00000170160|Ensembl:ENSG00000266302|Vega:OTTHUMG00000059178|Vega:OTTHUMG00000179236 17 17p11.2 coiled-coil domain containing 144A protein-coding CCDC144A coiled-coil domain containing 144A O coiled-coil domain-containing protein 144A 20121230 -9606 9721 GPRIN2 - GRIN2|KIAA0514 HGNC:23730|MIM:611240|HPRD:13804 10 10q11.22 G protein regulated inducer of neurite outgrowth 2 protein-coding GPRIN2 G protein regulated inducer of neurite outgrowth 2 O G protein-regulated inducer of neurite outgrowth 2 20121230 -9606 9722 NOS1AP - 6330408P19Rik|CAPON HGNC:16859|MIM:605551|Ensembl:ENSG00000198929|HPRD:12023|Vega:OTTHUMG00000024049 1 1q23.3 nitric oxide synthase 1 (neuronal) adaptor protein protein-coding NOS1AP nitric oxide synthase 1 (neuronal) adaptor protein O C-terminal PDZ domain ligand of neuronal nitric oxide synthase (CAPON)|C-terminal PDZ ligand of neuronal nitric oxide synthase protein|carboxyl-terminal PDZ ligand of neuronal nitric oxide synthase protein|ligand of neuronal nitric oxide synthase with carboxyl-terminal PDZ domain|nitric oxide synthase 1 adaptor protein 20121230 -9606 9723 SEMA3E - M-SEMAH|M-SemaK|SEMAH|coll-5 HGNC:10727|MIM:608166|Ensembl:ENSG00000170381|HPRD:11545|Vega:OTTHUMG00000154693 7 7q21.11 sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3E protein-coding SEMA3E sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3E O semaphorin-3E 20121230 -9606 9724 UTP14C - 2700066J21Rik|KIAA0266|UTP14B HGNC:20321|MIM:608969|Ensembl:ENSG00000253797|HPRD:12346|Vega:OTTHUMG00000164353 13 13q14.2 UTP14, U3 small nucleolar ribonucleoprotein, homolog C (yeast) protein-coding UTP14C UTP14, U3 small nucleolar ribonucleoprotein, homolog C (yeast) O U3 small nucleolar RNA-associated protein 14 homolog C 20121230 -9606 9725 TMEM63A RP4-559A3.1 KIAA0792 HGNC:29118|Ensembl:ENSG00000196187|HPRD:13817|Vega:OTTHUMG00000037442 1 1q42.12 transmembrane protein 63A protein-coding TMEM63A transmembrane protein 63A O - 20121230 -9606 9726 ZNF646 - - HGNC:29004|Ensembl:ENSG00000167395|HPRD:15886|Vega:OTTHUMG00000047355 16 16p11.2 zinc finger protein 646 protein-coding ZNF646 zinc finger protein 646 O - 20121230 -9606 9727 RAB11FIP3 - CART1|Rab11-FIP3 HGNC:17224|MIM:608738|Ensembl:ENSG00000090565|HPRD:18521|Vega:OTTHUMG00000047843 16 16p13.3 RAB11 family interacting protein 3 (class II) protein-coding RAB11FIP3 RAB11 family interacting protein 3 (class II) O EF hands-containing Rab-interacting protein|FIP3-Rab11|MU-MB-17.148|PAC196A12.1|arfophilin-1|cytoplasmic adaptor for RAR and TR|eferin|rab11 family-interacting protein 3|rab11-family interacting protein 3 20121230 -9606 9728 SECISBP2L - SLAN HGNC:28997|Ensembl:ENSG00000138593|HPRD:17181|Vega:OTTHUMG00000172194 15 15q21.1 SECIS binding protein 2-like protein-coding SECISBP2L SECIS binding protein 2-like O SECIS-binding protein 2-like|selenocysteine insertion sequence-binding protein 2-like 20121230 -9606 9729 KIAA0408 - RP3-403A15.2 HGNC:21636|Ensembl:ENSG00000189367|HPRD:17187|Vega:OTTHUMG00000166439 6 6q22.33 KIAA0408 protein-coding KIAA0408 KIAA0408 O uncharacterized protein KIAA0408 20121230 -9606 9730 VPRBP - DCAF1 HGNC:30911|Ensembl:ENSG00000145041|HPRD:11674|Vega:OTTHUMG00000156895 3 3p21.2 Vpr (HIV-1) binding protein protein-coding VPRBP Vpr (HIV-1) binding protein O DDB1 and CUL4 associated factor 1|DDB1- and CUL4-associated factor 1|HIV-1 Vpr-binding protein|Vpr-binding protein|protein VPRBP|vpr-interacting protein 20121230 -9606 9731 CEP104 RP1-286D6.4 GlyBP|KIAA0562 HGNC:24866|Ensembl:ENSG00000116198|HPRD:11091|Vega:OTTHUMG00000003507 1 1p36.32 centrosomal protein 104kDa protein-coding CEP104 centrosomal protein 104kDa O centrosomal protein of 104 kDa 20121230 -9606 9732 DOCK4 WUGSC:H_GS034D21.1 - HGNC:19192|MIM:607679|Ensembl:ENSG00000128512|HPRD:07407|Vega:OTTHUMG00000155077 7 7q31.1 dedicator of cytokinesis 4 protein-coding DOCK4 dedicator of cytokinesis 4 O dedicator of cytokinesis protein 4 20121230 -9606 9733 SART3 - DSAP1|P100|RP11-13G14|TIP110|p110|p110(nrb) HGNC:16860|MIM:611684|Ensembl:ENSG00000075856|HPRD:11532|Vega:OTTHUMG00000169449 12 12q24.1 squamous cell carcinoma antigen recognized by T cells 3 protein-coding SART3 squamous cell carcinoma antigen recognized by T cells 3 O SART-3|hSART-3|squamous cell carcinoma antigen recognized by T-cells 3|tat-interacting protein of 110 kDa 20121230 -9606 9734 HDAC9 - HD7|HD7b|HD9|HDAC|HDAC7|HDAC7B|HDAC9B|HDAC9FL|HDRP|MITR HGNC:14065|MIM:606543|Ensembl:ENSG00000048052|HPRD:05944|Vega:OTTHUMG00000152487 7 7p21.1 histone deacetylase 9 protein-coding HDAC9 histone deacetylase 9 O MEF-2 interacting transcription repressor (MITR) protein|histone deacetylase 4/5-related protein|histone deacetylase 7B 20121230 -9606 9735 KNTC1 - ROD HGNC:17255|MIM:607363|Ensembl:ENSG00000184445|HPRD:09561|Vega:OTTHUMG00000168861 12 12q24.31 kinetochore associated 1 protein-coding KNTC1 kinetochore associated 1 O Rough Deal homolog, centromere/kinetochore protein|kinetochore-associated protein 1 20121230 -9606 9736 USP34 - - HGNC:20066|Ensembl:ENSG00000115464|HPRD:11665|Vega:OTTHUMG00000152265 2 2p15 ubiquitin specific peptidase 34 protein-coding USP34 ubiquitin specific peptidase 34 O deubiquitinating enzyme 34|ubiquitin carboxyl-terminal hydrolase 34|ubiquitin specific protease 34|ubiquitin thioesterase 34|ubiquitin thiolesterase 34|ubiquitin-specific-processing protease 34 20121230 -9606 9737 GPRASP1 RP4-769N13.1 GASP|GASP-1|GASP1 HGNC:24834|MIM:300417|Ensembl:ENSG00000198932|HPRD:02333|Vega:OTTHUMG00000022061 X Xq22.1 G protein-coupled receptor associated sorting protein 1 protein-coding GPRASP1 G protein-coupled receptor associated sorting protein 1 O G-protein coupled receptor-associated sorting protein 1 20121230 -9606 9738 CCP110 - CP110|Cep110 HGNC:24342|MIM:609544|Ensembl:ENSG00000103540|HPRD:10848|Vega:OTTHUMG00000131459 16 16p12.3 centriolar coiled coil protein 110kDa protein-coding CCP110 centriolar coiled coil protein 110kDa O centriolar coiled-coil protein of 110 kDa|centrosomal protein CP110|centrosomal protein of 110 kDa 20121230 -9606 9739 SETD1A - KMT2F|Set1|Set1A HGNC:29010|MIM:611052|Ensembl:ENSG00000099381|HPRD:13795|Vega:OTTHUMG00000150474 16 16p11.2 SET domain containing 1A protein-coding SETD1A SET domain containing 1A O SET domain-containing protein 1A|hSET1A|histone-lysine N-methyltransferase SETD1A|lysine N-methyltransferase 2F|set1/Ash2 histone methyltransferase complex subunit SET1 20121230 -9606 9741 LAPTM4A UNQ1846/PRO3574 HUMORF13|LAPTM4|MBNT|Mtrp HGNC:6924|Ensembl:ENSG00000068697|HPRD:13959|Vega:OTTHUMG00000090750 2 2p24.1 lysosomal protein transmembrane 4 alpha protein-coding LAPTM4A lysosomal protein transmembrane 4 alpha O golgi 4-transmembrane-spanning transporter MTP|lysosomal-associated protein transmembrane 4 alpha|lysosomal-associated transmembrane protein 4A|membrane nucleoside transporter 20121230 -9606 9742 IFT140 LA16c-313F4.1 MZSDS|WDTC2|c305C8.4|c380F5.1|gs114 HGNC:29077|MIM:614620|Ensembl:ENSG00000187535|HPRD:11093|Vega:OTTHUMG00000128585 16 16p13.3 intraflagellar transport 140 homolog (Chlamydomonas) protein-coding IFT140 intraflagellar transport 140 homolog (Chlamydomonas) O WD and tetratricopeptide repeats protein 2|intraflagellar transport protein 140 homolog 20121230 -9606 9743 ARHGAP32 - GC-GAP|GRIT|PX-RICS|RICS|p200RhoGAP|p250GAP HGNC:17399|MIM:608541|Ensembl:ENSG00000134909|HPRD:12257|Vega:OTTHUMG00000165774 11 11q24.3 Rho GTPase activating protein 32 protein-coding ARHGAP32 Rho GTPase activating protein 32 O GAB-associated CDC42|GAB-associated Cdc42/Rac GTPase-activating protein|GTPase regulator interacting with TrkA|GTPase-activating protein for Cdc42 and Rac1|RhoGAP involved in the -catenin-N-cadherin and NMDA receptor signaling|brain-specific Rho GTP-ase-activating protein|brain-specific Rho GTPase-activating protein|rac GTPase activating protein|rho GTPase-activating protein 32|rho-type GTPase-activating protein 32|rho/Cdc42/Rac GTPase-activating protein RICS|rhoGAP involved in the beta-catenin-N-cadherin and NMDA receptor signaling 20121230 -9606 9744 ACAP1 - CENTB1 HGNC:16467|MIM:607763|Ensembl:ENSG00000072818|HPRD:08474|Vega:OTTHUMG00000102199 17 17p13.1 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 protein-coding ACAP1 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 O Arf GAP with coiled coil, ANK repeat and PH domains 1|arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 1|centaurin, beta 1|centaurin-beta-1|cnt-b1 20121230 -9606 9745 ZNF536 - - HGNC:29025|Ensembl:ENSG00000198597|HPRD:15825|Vega:OTTHUMG00000182112 19 19q12 zinc finger protein 536 protein-coding ZNF536 zinc finger protein 536 O - 20121230 -9606 9746 CLSTN3 - CDHR14|CSTN3|alcbeta HGNC:18371|MIM:611324|Ensembl:ENSG00000139182|HPRD:16725|Vega:OTTHUMG00000168167 12 12p13.31 calsyntenin 3 protein-coding CLSTN3 calsyntenin 3 O alc-beta|alcadein beta|alcadein-beta|cadherin-related family member 14|calsyntenin-3 20121230 -9606 9747 FAM115A - - HGNC:22201|Ensembl:ENSG00000198420|HPRD:13813|Vega:OTTHUMG00000157773 7 7q35 family with sequence similarity 115, member A protein-coding FAM115A family with sequence similarity 115, member A O protein FAM115A 20121230 -9606 9748 SLK - LOSK|STK2|bA16H23.1|se20-9 HGNC:11088|Ensembl:ENSG00000065613|HPRD:11585|Vega:OTTHUMG00000018999 10 10q24.33 STE20-like kinase protein-coding SLK STE20-like kinase O CTCL tumor antigen se20-9|Long Ste20-like Kinase|SNF1 (sucrose nonfermenting, yeast, homolog)-like kinase, SNF1 sucrose nonfermenting like kinase|SNF1 sucrose nonfermenting like kinase|STE20-like serine/threonine-protein kinase|STE20-related kinase|STE20-related serine/threonine-protein kinase|Ste20-related serine/threonine kinase|hSLK|serine/threonine-protein kinase 2 20121230 -9606 9749 PHACTR2 RP3-468K18.3 C6orf56 HGNC:20956|MIM:608724|Ensembl:ENSG00000112419|HPRD:16378|Vega:OTTHUMG00000015732 6 6q24.2 phosphatase and actin regulator 2 protein-coding PHACTR2 phosphatase and actin regulator 2 O - 20121230 -9606 9750 FAM65B - C6orf32|DIFF40|DIFF48|MYONAP|PL48 HGNC:13872|MIM:611410|Ensembl:ENSG00000111913|HPRD:12881|Vega:OTTHUMG00000014375 6 6p22.3-p21.32 family with sequence similarity 65, member B protein-coding FAM65B family with sequence similarity 65, member B O myogenesis-related and NCAM-associated protein homolog|protein FAM65B 20121230 -9606 9751 SNPH - bA314N13.5 HGNC:15931|MIM:604942|Ensembl:ENSG00000101298|HPRD:16081|Vega:OTTHUMG00000031662 20 20p13 syntaphilin protein-coding SNPH syntaphilin O - 20121230 -9606 9752 PCDHA9 - PCDH-ALPHA9 HGNC:8675|MIM:606315|Ensembl:ENSG00000204961|HPRD:07327|Vega:OTTHUMG00000163373 5 5q31 protocadherin alpha 9 protein-coding PCDHA9 protocadherin alpha 9 O KIAA0345-like 5|PCDH-alpha-9|protocadherin alpha-9 20121230 -9606 9753 ZSCAN12 - ZFP96|ZNF29K1|ZNF305|ZNF96|dJ29K1.2 HGNC:13172|MIM:603978|Ensembl:ENSG00000158691|HPRD:15767|Vega:OTTHUMG00000014522 6 6p21 zinc finger and SCAN domain containing 12 protein-coding ZSCAN12 zinc finger and SCAN domain containing 12 O zinc finger and SCAN domain-containing protein 12|zinc finger protein 305|zinc finger protein 96 20121230 -9606 9754 STARD8 - ARHGAP38|DLC3|STARTGAP3 HGNC:19161|MIM:300689|Ensembl:ENSG00000130052|HPRD:06730|Vega:OTTHUMG00000021748 X Xq13.1 StAR-related lipid transfer (START) domain containing 8 protein-coding STARD8 StAR-related lipid transfer (START) domain containing 8 O START domain containing 8|deleted in liver cancer 3 protein|stAR-related lipid transfer protein 8 20121230 -9606 9755 TBKBP1 - ProSAPiP2|SINTBAD HGNC:30140|MIM:608476|Ensembl:ENSG00000198933|HPRD:12239|Vega:OTTHUMG00000178286 17 17q21.32 TBK1 binding protein 1 protein-coding TBKBP1 TBK1 binding protein 1 O TANK-binding kinase 1-binding protein 1|TBK1-binding protein 1 20121230 -9606 9757 MLL4 - HRX2|KMT2B|MLL2|TRX2|WBP7 MIM:606834|Ensembl:ENSG00000105663|HPRD:06017|Vega:OTTHUMG00000048119 19 19q13.1 myeloid/lymphoid or mixed-lineage leukemia 4 protein-coding - - - KMT2D|WBP-7|WW domain binding protein 7|WW domain-binding protein 7|histone-lysine N-methyltransferase MLL4|lysine N-methyltransferase 2B|lysine N-methyltransferase 2D|mixed lineage leukemia gene homolog 2|myeloid/lymphoid or mixed-lineage leukemia protein 4|trithorax homolog 2|trithorax homologue 2 20121230 -9606 9758 FRMPD4 - PDZD10|PDZK10 HGNC:29007|MIM:300838|Ensembl:ENSG00000169933|HPRD:10011|Vega:OTTHUMG00000021138 X Xp22.2 FERM and PDZ domain containing 4 protein-coding FRMPD4 FERM and PDZ domain containing 4 O FERM and PDZ domain-containing protein 4|PDZ domain containing 10|PDZ domain-containing protein 10|PSD-95-interacting FERM and PDZ domain protein|PSD-95-interacting regulator of spine morphogenesis|Preso 20121230 -9606 9759 HDAC4 - AHO3|BDMR|HA6116|HD4|HDAC-4|HDAC-A|HDACA HGNC:14063|MIM:605314|Ensembl:ENSG00000068024|HPRD:05610|Vega:OTTHUMG00000133344 2 2q37.3 histone deacetylase 4 protein-coding HDAC4 histone deacetylase 4 O histone deacetylase A 20121230 -9606 9760 TOX - TOX1 HGNC:18988|MIM:606863|Ensembl:ENSG00000198846|HPRD:12113|Vega:OTTHUMG00000164331 8 8q12.1 thymocyte selection-associated high mobility group box protein-coding TOX thymocyte selection-associated high mobility group box O thymocyte selection-associated high mobility group box protein TOX|thymus high mobility group box protein TOX 20121230 -9606 9761 MLEC - KIAA0152 HGNC:28973|MIM:613802|Ensembl:ENSG00000110917|HPRD:13781|Vega:OTTHUMG00000169187 12 12q24.31 malectin protein-coding MLEC malectin O - 20121230 -9606 9762 PROSAPIP1 RP5-1187M17.10-001 LZTS3|RP5-1187M17.10 MIM:610484|Ensembl:ENSG00000088899|HPRD:11461|Vega:OTTHUMG00000031735 20 20p13 ProSAPiP1 protein protein-coding - - - ProSAP/Shank-interacting protein 1|proSAP-interacting protein 1|proline rich synapse associated protein interacting protein 1 20121230 -9606 9764 KIAA0513 - - HGNC:29058|MIM:611675|Ensembl:ENSG00000135709|HPRD:17192|Vega:OTTHUMG00000176597 16 16q24.1 KIAA0513 protein-coding KIAA0513 KIAA0513 O uncharacterized protein KIAA0513 20121230 -9606 9765 ZFYVE16 - ENDOFIN|PPP1R69 HGNC:20756|MIM:608880|Ensembl:ENSG00000039319|HPRD:10319|Vega:OTTHUMG00000108178 5 5q14 zinc finger, FYVE domain containing 16 protein-coding ZFYVE16 zinc finger, FYVE domain containing 16 O endosome-associated FYVE domain protein|endosome-associated FYVE-domain protein|protein phosphatase 1, regulatory subunit 69|zinc finger FYVE domain-containing protein 16 20121230 -9606 9766 KIAA0247 - - HGNC:19956|Ensembl:ENSG00000100647|HPRD:10010|Vega:OTTHUMG00000171234 14 14q24.1 KIAA0247 protein-coding KIAA0247 KIAA0247 O uncharacterized protein KIAA0247 20121230 -9606 9767 PHF16 - JADE3 HGNC:22982|MIM:300618|Ensembl:ENSG00000102221|HPRD:06675|Vega:OTTHUMG00000021431 X Xp11.23 PHD finger protein 16 protein-coding PHF16 PHD finger protein 16 O protein Jade-3 20121230 -9606 9768 KIAA0101 L5 NS5ATP9|OEATC|OEATC-1|OEATC1|PAF|p15(PAF)|p15/PAF|p15PAF HGNC:28961|MIM:610696|Ensembl:ENSG00000166803|HPRD:13778|Vega:OTTHUMG00000133017 15 15q22.31 KIAA0101 protein-coding KIAA0101 KIAA0101 O HCV NS5A-transactivated protein 9|PCNA-associated factor|hepatitis C virus NS5A-transactivated protein 9|overexpressed in anaplastic thyroid carcinoma 1 20121230 -9606 9770 RASSF2 RP4-599I11.1 CENP-34|RASFADIN HGNC:9883|MIM:609492|Ensembl:ENSG00000101265|HPRD:15218|Vega:OTTHUMG00000031790 20 20p13 Ras association (RalGDS/AF-6) domain family member 2 protein-coding RASSF2 Ras association (RalGDS/AF-6) domain family member 2 O Ras association (RalGDS/AF-6) domain family 2|centromere protein 34|ras association domain-containing protein 2 20121230 -9606 9771 RAPGEF5 tcag7.1034 GFR|MR-GEF|REPAC HGNC:16862|MIM:609527|Ensembl:ENSG00000136237|HPRD:15208|Vega:OTTHUMG00000152525 7 7p15.3 Rap guanine nucleotide exchange factor (GEF) 5 protein-coding RAPGEF5 Rap guanine nucleotide exchange factor (GEF) 5 O M-Ras-regulated GEF|M-Ras-regulated Rap GEF|guanine nucleotide exchange factor for Rap1|rap guanine nucleotide exchange factor 5|related to Epac 20121230 -9606 9772 KIAA0195 - TMEM94 HGNC:28983|Ensembl:ENSG00000177728|HPRD:11068|Vega:OTTHUMG00000179611 17 17q25.1 KIAA0195 protein-coding KIAA0195 KIAA0195 O transmembrane protein 94|uncharacterized protein KIAA0195 20121230 -9606 9774 BCLAF1 - BTF|bK211L9.1 HGNC:16863|MIM:612588|Ensembl:ENSG00000029363|HPRD:16544|Vega:OTTHUMG00000033323 6 6q22-q23 BCL2-associated transcription factor 1 protein-coding BCLAF1 BCL2-associated transcription factor 1 O bcl-2-associated transcription factor 1 20121230 -9606 9775 EIF4A3 - DDX48|NMP265|NUK34|eIF4AIII HGNC:18683|MIM:608546|Ensembl:ENSG00000141543|HPRD:06482|Vega:OTTHUMG00000177538 17 17q25.3 eukaryotic translation initiation factor 4A3 protein-coding EIF4A3 eukaryotic translation initiation factor 4A3 O ATP-dependent RNA helicase DDX48|ATP-dependent RNA helicase eIF4A-3|DEAD (Asp-Glu-Ala-Asp) box polypeptide 48|DEAD box protein 48|NMP 265|eIF-4A-III|eIF4A-III|eukaryotic initiation factor 4A-III|eukaryotic initiation factor 4A-like NUK-34|eukaryotic translation initiation factor 4A|hNMP 265|nuclear matrix protein 265 20121230 -9606 9776 ATG13 - KIAA0652 HGNC:29091|Ensembl:ENSG00000175224|HPRD:13809|Vega:OTTHUMG00000166538 11 11p11.2 autophagy related 13 protein-coding ATG13 autophagy related 13 O ATG13 autophagy related 13 homolog|autophagy-related protein 13 20121230 -9606 9777 TM9SF4 RP5-836N17.2 dJ836N17.2 HGNC:30797|Ensembl:ENSG00000101337|HPRD:15514|Vega:OTTHUMG00000032206 20 20q11.21 transmembrane 9 superfamily protein member 4 protein-coding TM9SF4 transmembrane 9 superfamily protein member 4 O transmembrane 9 superfamily member 4 20121230 -9606 9778 KIAA0232 - - HGNC:28992|Ensembl:ENSG00000170871|HPRD:11070|Vega:OTTHUMG00000160072 4 4p16.1 KIAA0232 protein-coding KIAA0232 KIAA0232 O uncharacterized protein KIAA0232 20121230 -9606 9779 TBC1D5 - - HGNC:19166|Ensembl:ENSG00000131374|HPRD:10262|Vega:OTTHUMG00000155488 3 3p24.3 TBC1 domain family, member 5 protein-coding TBC1D5 TBC1 domain family, member 5 O TBC1 domain family member 5 20121230 -9606 9780 PIEZO1 - FAM38A|Mib HGNC:28993|MIM:611184|Ensembl:ENSG00000103335|HPRD:10945|Vega:OTTHUMG00000156776 16 16q24.3 piezo-type mechanosensitive ion channel component 1 protein-coding PIEZO1 piezo-type mechanosensitive ion channel component 1 O family with sequence similarity 38, member A|membrane protein induced by beta-amyloid treatment|protein PIEZO1 20121230 -9606 9781 RNF144A - RNF144|UBCE7IP4 HGNC:20457|Ensembl:ENSG00000151692|HPRD:11510|Vega:OTTHUMG00000090353 2 2p25.2 ring finger protein 144A protein-coding RNF144A ring finger protein 144A O UbcM4-interacting protein 4|probable E3 ubiquitin-protein ligase RNF144A|ubiquitin conjugating enzyme 7 interacting protein 4|ubiquitin-conjugating enzyme 7-interacting protein 4 20121230 -9606 9782 MATR3 - MPD2|VCPDM HGNC:6912|MIM:164015|Ensembl:ENSG00000015479|HPRD:05270|Vega:OTTHUMG00000129229 5 5q31.2 matrin 3 protein-coding MATR3 matrin 3 O matrin-3|vocal cord and pharyngeal weakness with distal myopathy 20121230 -9606 9783 RIMS3 RP4-739H11.2 NIM3|RIM3 HGNC:21292|MIM:611600|Ensembl:ENSG00000117016|HPRD:17976|Vega:OTTHUMG00000007453 1 1pter-p22.2 regulating synaptic membrane exocytosis 3 protein-coding RIMS3 regulating synaptic membrane exocytosis 3 O RIM 3|RIM3 gamma|Rab-3 interacting molecule 3|rab-3-interacting molecule 3|regulating synaptic membrane exocytosis protein 3 20121230 -9606 9784 SNX17 - - HGNC:14979|MIM:605963|Ensembl:ENSG00000115234|HPRD:05812|Vega:OTTHUMG00000097781 2 2p23-p22 sorting nexin 17 protein-coding SNX17 sorting nexin 17 O sorting nexin-17 20121230 -9606 9785 DHX38 - DDX38|PRP16|PRPF16 HGNC:17211|MIM:605584|Ensembl:ENSG00000140829|HPRD:05720|Vega:OTTHUMG00000137596 16 16q22 DEAH (Asp-Glu-Ala-His) box polypeptide 38 protein-coding DHX38 DEAH (Asp-Glu-Ala-His) box polypeptide 38 O ATP-dependent RNA helicase DHX38|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 38|DEAH box protein 38|PRP16 homolog of S.cerevisiae|pre-mRNA splicing factor ATP-dependent RNA helicase PRP16|pre-mRNA-splicing factor ATP-dependent RNA helicase PRP16 20121230 -9606 9786 KIAA0586 - Talpid3 HGNC:19960|MIM:610178|Ensembl:ENSG00000100578|HPRD:11092|Vega:OTTHUMG00000171141 14 14q23.1 KIAA0586 protein-coding KIAA0586 KIAA0586 O ortholog of chicken talpid{3}|uncharacterized protein KIAA0586 20121230 -9606 9787 DLGAP5 - DLG7|HURP HGNC:16864|Ensembl:ENSG00000126787|HPRD:06490|Vega:OTTHUMG00000140310 14 14q22.3 discs, large (Drosophila) homolog-associated protein 5 protein-coding DLGAP5 discs, large (Drosophila) homolog-associated protein 5 O DAP-5|discs large homolog 7|discs, large homolog 7|disks large-associated protein 5|disks large-associated protein DLG7|hepatoma up-regulated protein 20121230 -9606 9788 MTSS1 - MIM|MIMA|MIMB HGNC:20443|MIM:608486|Ensembl:ENSG00000170873|HPRD:12243|Vega:OTTHUMG00000048189 8 8p22 metastasis suppressor 1 protein-coding MTSS1 metastasis suppressor 1 O metastasis suppressor YGL-1|metastasis suppressor protein 1|missing in metastasis protein 20121230 -9606 9789 SPCS2 - - HGNC:28962|Ensembl:ENSG00000118363|HPRD:15435|Vega:OTTHUMG00000165517 11 11q13.4 signal peptidase complex subunit 2 homolog (S. cerevisiae) protein-coding SPCS2 signal peptidase complex subunit 2 homolog (S. cerevisiae) O SPase 25 kDa subunit|microsomal signal peptidase 25 kDa subunit|signal peptidase 25kDa subunit|signal peptidase complex subunit 2 20121230 -9606 9790 BMS1 AL022344.1 BMS1L HGNC:23505|MIM:611448|Ensembl:ENSG00000165733|HPRD:10689|Vega:OTTHUMG00000018020 10 10q11.21 BMS1 homolog, ribosome assembly protein (yeast) protein-coding BMS1 BMS1 homolog, ribosome assembly protein (yeast) O BMS1-like, ribosome assembly protein|ribosome assembly protein BMS1 homolog|ribosome biogenesis protein BMS1 homolog 20121230 -9606 9791 PTDSS1 - PSS1|PSSA HGNC:9587|MIM:612792|Ensembl:ENSG00000156471|HPRD:17926|Vega:OTTHUMG00000164687 8 8q22 phosphatidylserine synthase 1 protein-coding PTDSS1 phosphatidylserine synthase 1 O PSS-1|ptdSer synthase 1|serine-exchange enzyme I 20121230 -9606 9792 SERTAD2 - Sei-2|TRIP-Br2 HGNC:30784|Ensembl:ENSG00000179833|HPRD:18040|Vega:OTTHUMG00000152678 2 2p14 SERTA domain containing 2 protein-coding SERTAD2 SERTA domain containing 2 O SERTA domain-containing protein 2|transcriptional regulator interacting with the PHD-bromodomain 2|transcriptional regulator interacting with the PHS-bromodomain 2 20121230 -9606 9793 CKAP5 - CHTOG|MSPS|TOG|TOGp|ch-TOG HGNC:28959|MIM:611142|Ensembl:ENSG00000175216|HPRD:10830|Vega:OTTHUMG00000166599 11 11p11.2 cytoskeleton associated protein 5 protein-coding CKAP5 cytoskeleton associated protein 5 O colonic and hepatic tumor over-expressed gene protein|colonic and hepatic tumor overexpressed gene protein|cytoskeleton-associated protein 5 20121230 -9606 9794 MAML1 - Mam-1|Mam1 HGNC:13632|MIM:605424|Ensembl:ENSG00000161021|HPRD:05665|Vega:OTTHUMG00000163237 5 5q35 mastermind-like 1 (Drosophila) protein-coding MAML1 mastermind-like 1 (Drosophila) O mastermind homolog|mastermind-like protein 1 20121230 -9606 9796 PHYHIP - DYRK1AP3|PAHX-AP|PAHXAP1 HGNC:16865|MIM:608511|Ensembl:ENSG00000168490|HPRD:16345|Vega:OTTHUMG00000163776 8 8p21.3 phytanoyl-CoA 2-hydroxylase interacting protein protein-coding PHYHIP phytanoyl-CoA 2-hydroxylase interacting protein O DYRK1A interacting protein 3|PAHX-AP1|phytanoyl-CoA alpha-hydroxylase associated protein|phytanoyl-CoA hydroxylase interacting protein|phytanoyl-CoA hydroxylase-associated protein 1|phytanoyl-CoA hydroxylase-interacting protein 20121230 -9606 9797 TATDN2 - - HGNC:28988|Ensembl:ENSG00000157014|HPRD:18712|Vega:OTTHUMG00000155361 3 3p25.3 TatD DNase domain containing 2 protein-coding TATDN2 TatD DNase domain containing 2 O putative deoxyribonuclease TATDN2 20121230 -9606 9798 IST1 - OLC1 HGNC:28977|Ensembl:ENSG00000182149|HPRD:13784|Vega:OTTHUMG00000137597 16 16q22.2 increased sodium tolerance 1 homolog (yeast) protein-coding IST1 increased sodium tolerance 1 homolog (yeast) O IST1 homolog|overexpressed in lung cancer 1|putative MAPK-activating protein PM28 20121230 -9606 9801 MRPL19 - L19mt|MRP-L15|MRP-L19|MRPL15|RLX1|RPML15 HGNC:14052|MIM:611832|Ensembl:ENSG00000115364|HPRD:11370|Vega:OTTHUMG00000129990 2 2p11.1-q11.2 mitochondrial ribosomal protein L19 protein-coding MRPL19 mitochondrial ribosomal protein L19 O 39S ribosomal protein L15, mitochondrial|39S ribosomal protein L19, mitochondrial|L15mt 20121230 -9606 9802 DAZAP2 - PRTB HGNC:2684|MIM:607431|Ensembl:ENSG00000183283|HPRD:08463|Vega:OTTHUMG00000169649 12 12q12 DAZ associated protein 2 protein-coding DAZAP2 DAZ associated protein 2 O DAZ-associated protein 2|deleted in azoospermia associated protein 2|deleted in azoospermia-associated protein 2|proline-rich transcript in brain|proline-rich transcript, brain-expressed protein 20121230 -9606 9804 TOMM20 RP4-597N16.2 MAS20|MOM19|TOM20 HGNC:20947|MIM:601848|Ensembl:ENSG00000173726|HPRD:03507|Vega:OTTHUMG00000039619 1 1q42 translocase of outer mitochondrial membrane 20 homolog (yeast) protein-coding TOMM20 translocase of outer mitochondrial membrane 20 homolog (yeast) O mitochondrial 20 kDa outer membrane protein|mitochondrial import receptor subunit TOM20 homolog|outer mitochondrial membrane receptor Tom20|translocase of outer mitochondrial membrane 20 homolog type II 20121230 -9606 9805 SCRN1 - SES1 HGNC:22192|MIM:614965|Ensembl:ENSG00000136193|HPRD:15304|Vega:OTTHUMG00000097093 7 7p14.3-p14.1 secernin 1 protein-coding SCRN1 secernin 1 O secernin-1 20121230 -9606 9806 SPOCK2 UNQ269/PRO306 testican-2 HGNC:13564|MIM:607988|Ensembl:ENSG00000107742|HPRD:12146|Vega:OTTHUMG00000018430 10 10pter-q25.3 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 2 protein-coding SPOCK2 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 2 O SPARC/osteonectin, CWCV, and Kazal-like domains proteoglycan 2|testican-2 20121230 -9606 9807 IP6K1 - IHPK1|PiUS HGNC:18360|MIM:606991|Ensembl:ENSG00000176095|HPRD:07379|Vega:OTTHUMG00000158197 3 3p21.31 inositol hexakisphosphate kinase 1 protein-coding IP6K1 inositol hexakisphosphate kinase 1 O ATP:1D-myo-inositol-hexakisphosphate phosphotransferase|Pi uptake stimulator|inositol hexaphosphate kinase 1|insP6 kinase 1 20121230 -9606 9808 KIAA0087 hCG_38390 - HGNC:22191 7 7p15.2 KIAA0087 miscRNA KIAA0087 KIAA0087 O - 20121230 -9606 9810 RNF40 - BRE1B|RBP95|STARING HGNC:16867|MIM:607700|Ensembl:ENSG00000103549|HPRD:07411|Vega:OTTHUMG00000132394 16 16p11.2-p11.1 ring finger protein 40, E3 ubiquitin protein ligase protein-coding RNF40 ring finger protein 40, E3 ubiquitin protein ligase O 95 kDa retinoblastoma protein binding protein|95 kDa retinoblastoma-associated protein|BRE1 E3 ubiquitin ligase homolog B|BRE1-B|E3 ubiquitin-protein ligase BRE1B|Rb-associated protein 20121230 -9606 9811 CTIF - Gm672|KIAA0427 HGNC:23925|MIM:613178|Ensembl:ENSG00000134030|HPRD:11083|Vega:OTTHUMG00000132656 18 18q21.1 CBP80/20-dependent translation initiation factor protein-coding CTIF CBP80/20-dependent translation initiation factor O - 20121230 -9606 9812 KIAA0141 - DELE HGNC:28969|Ensembl:ENSG00000081791|HPRD:13780|Vega:OTTHUMG00000129662 5 5q31.3 KIAA0141 protein-coding KIAA0141 KIAA0141 O death ligand signal enhancer 20121230 -9606 9813 EFCAB14 - KIAA0494|RP11-8J9.3 HGNC:29051|Ensembl:ENSG00000159658|HPRD:17191|Vega:OTTHUMG00000007992 1 1p33 EF-hand calcium binding domain 14 protein-coding EFCAB14 EF-hand calcium binding domain 14 O EF-hand domain-containing protein KIAA0494 20121230 -9606 9814 SFI1 RP5-858B16.1 PISD|hSfi1p HGNC:29064|MIM:612765|Ensembl:ENSG00000198089|HPRD:11550|Vega:OTTHUMG00000030249 22 22q12.2 Sfi1 homolog, spindle assembly associated (yeast) protein-coding SFI1 Sfi1 homolog, spindle assembly associated (yeast) O homolog of yeast Sfi1|protein SFI1 homolog 20121230 -9606 9815 GIT2 - CAT-2|CAT2 HGNC:4273|MIM:608564|Ensembl:ENSG00000139436|HPRD:09779|Vega:OTTHUMG00000169313 12 12q24.1 G protein-coupled receptor kinase interacting ArfGAP 2 protein-coding GIT2 G protein-coupled receptor kinase interacting ArfGAP 2 O ARF GAP GIT2|ARF GTPase-activating protein GIT2|G protein-coupled receptor kinase-interactor 2|GRK-interacting protein 2|cool-associated, tyrosine phosphorylated protein 2|cool-interacting tyrosine-phosphorylated protein 2 20121230 -9606 9816 URB2 RP11-108F13.1 KIAA0133|NET10|NPA2 HGNC:28967|Ensembl:ENSG00000135763|HPRD:17178|Vega:OTTHUMG00000039464 1 1q42.13 URB2 ribosome biogenesis 2 homolog (S. cerevisiae) protein-coding URB2 URB2 ribosome biogenesis 2 homolog (S. cerevisiae) O nucleolar preribosomal-associated protein 1|unhealthy ribosome biogenesis protein 2 homolog 20121230 -9606 9817 KEAP1 - INrf2|KLHL19 HGNC:23177|MIM:606016|Ensembl:ENSG00000079999|HPRD:12079|Vega:OTTHUMG00000180579 19 19p13.2 kelch-like ECH-associated protein 1 protein-coding KEAP1 kelch-like ECH-associated protein 1 O cytosolic inhibitor of Nrf2|kelch-like protein 19 20121230 -9606 9818 NUPL1 RP11-206I15.1 PRO2463 HGNC:20261|MIM:607615|Ensembl:ENSG00000139496|HPRD:06355|Vega:OTTHUMG00000016608 13 13q12.13 nucleoporin like 1 protein-coding NUPL1 nucleoporin like 1 O nucleoporin p58/p45|nucleoporin-like protein 1 20121230 -9606 9819 TSC22D2 - TILZ4a|TILZ4b|TILZ4c HGNC:29095|Ensembl:ENSG00000196428|HPRD:11101|Vega:OTTHUMG00000159744 3 3q25.1 TSC22 domain family, member 2 protein-coding TSC22D2 TSC22 domain family, member 2 O TSC22 domain family 2|TSC22 domain family protein 2|TSC22-related-inducible leucine zipper protein 4 20121230 -9606 9820 CUL7 - KIAA0076|dJ20C7.5 HGNC:21024|MIM:609577|Ensembl:ENSG00000044090|HPRD:09901|Vega:OTTHUMG00000014718 6 6p21.1 cullin 7 protein-coding CUL7 cullin 7 O CUL-7|cullin-7 20121230 -9606 9821 RB1CC1 - CC1|FIP200 HGNC:15574|MIM:606837|Ensembl:ENSG00000023287|HPRD:06019|Vega:OTTHUMG00000164268 8 8q11 RB1-inducible coiled-coil 1 protein-coding RB1CC1 RB1-inducible coiled-coil 1 O 200 kDa FAK family kinase-interacting protein|FAK family kinase-interacting protein of 200 kDa|RB1-inducible coiled-coil protein 1 20121230 -9606 9823 ARMCX2 GHc-602D8.1 ALEX2 HGNC:16869|MIM:300363|Ensembl:ENSG00000184867|HPRD:02293|Vega:OTTHUMG00000022038 X Xq21.33-q22.2 armadillo repeat containing, X-linked 2 protein-coding ARMCX2 armadillo repeat containing, X-linked 2 O ARM protein lost in epithelial cancers on chromosome X 2|arm protein lost in epithelial cancers, X chromosome, 2|armadillo repeat protein ALEX2|armadillo repeat-containing X-linked protein 2 20121230 -9606 9824 ARHGAP11A - - HGNC:15783|MIM:610589|Ensembl:ENSG00000198826|HPRD:10656|Vega:OTTHUMG00000129289 15 15q13.2 Rho GTPase activating protein 11A protein-coding ARHGAP11A Rho GTPase activating protein 11A O GAP (1-12)|rho GTPase-activating protein 11A|rho-type GTPase-activating protein 11A 20121230 -9606 9825 SPATA2 - PD1|tamo HGNC:14681|MIM:607662|Ensembl:ENSG00000158480|HPRD:09636|Vega:OTTHUMG00000032704 20 20q13.13 spermatogenesis associated 2 protein-coding SPATA2 spermatogenesis associated 2 O spermatogenesis associated PD1|spermatogenesis-associated protein 2|spermatogenesis-associated protein PD1 20121230 -9606 9826 ARHGEF11 RP11-356J7.2 GTRAP48|PDZ-RHOGEF HGNC:14580|MIM:605708|Ensembl:ENSG00000132694|HPRD:09302|Vega:OTTHUMG00000041292 1 1q21 Rho guanine nucleotide exchange factor (GEF) 11 protein-coding ARHGEF11 Rho guanine nucleotide exchange factor (GEF) 11 O Rho guanine exchange factor (GEF) 11|RhoA-specific guanine nucleotide exchange factor|RhoGEF glutamate transport modulator|glutamate transporter EAAT4-associated protein 48|rho guanine nucleotide exchange factor 11 20121230 -9606 9827 RGP1 - KIAA0258 HGNC:21965|Ensembl:ENSG00000107185|Vega:OTTHUMG00000019873 9 9pter-p22.1 RGP1 retrograde golgi transport homolog (S. cerevisiae) protein-coding RGP1 RGP1 retrograde golgi transport homolog (S. cerevisiae) O retrograde Golgi transport protein RGP1 homolog 20121230 -9606 9828 ARHGEF17 - P164RHOGEF|TEM4|p164-RhoGEF HGNC:21726|Ensembl:ENSG00000110237|HPRD:10658|Vega:OTTHUMG00000167971 11 11q13.4 Rho guanine nucleotide exchange factor (GEF) 17 protein-coding ARHGEF17 Rho guanine nucleotide exchange factor (GEF) 17 O 164 kDa Rho-specific guanine-nucleotide exchange factor|Rho-specific guanine-nucleotide exchange factor 164 kDa|rho guanine nucleotide exchange factor 17|tumor endothelial marker 4 20121230 -9606 9829 DNAJC6 - DJC6 HGNC:15469|MIM:608375|Ensembl:ENSG00000116675|HPRD:16326|Vega:OTTHUMG00000009066 1 1p31.3 DnaJ (Hsp40) homolog, subfamily C, member 6 protein-coding DNAJC6 DnaJ (Hsp40) homolog, subfamily C, member 6 O DnaJ (Hsp40) homolog, subfamily B, member 6|auxilin|dnaJ homolog subfamily C member 6|putative tyrosine-protein phosphatase auxilin 20121230 -9606 9830 TRIM14 - - HGNC:16283|MIM:606556|Ensembl:ENSG00000106785|HPRD:05948|Vega:OTTHUMG00000020339 9 9q22.33 tripartite motif containing 14 protein-coding TRIM14 tripartite motif containing 14 O tripartite motif protein TRIM14|tripartite motif-containing 14|tripartite motif-containing protein 14 20121230 -9606 9831 ZNF623 - - HGNC:29084|Ensembl:ENSG00000183309|HPRD:18358|Vega:OTTHUMG00000165186 8 8q24.3 zinc finger protein 623 protein-coding ZNF623 zinc finger protein 623 O - 20121230 -9606 9832 JAKMIP2 - JAMIP2|NECC1 HGNC:29067|MIM:611197|Ensembl:ENSG00000176049|HPRD:11090|Vega:OTTHUMG00000129731 5 5q32 janus kinase and microtubule interacting protein 2 protein-coding JAKMIP2 janus kinase and microtubule interacting protein 2 O CTCL tumor antigen HD-CL-04|Jak and microtubule interacting protein 2|janus kinase and microtubule-interacting protein 2|neuroendocrine long coiled-coil protein 1 20121230 -9606 9833 MELK RP11-8N6.1 HPK38 HGNC:16870|MIM:607025|Ensembl:ENSG00000165304|HPRD:06119|Vega:OTTHUMG00000019906 9 9p13.2 maternal embryonic leucine zipper kinase protein-coding MELK maternal embryonic leucine zipper kinase O pEg3 kinase|protein kinase Eg3|protein kinase PK38|tyrosine-protein kinase MELK 20121230 -9606 9834 KIAA0125 HSPC053 C14orf110|FAM30A HGNC:19955|HPRD:13779 14 14q32.33 KIAA0125 miscRNA KIAA0125 KIAA0125 O - 20121230 -9606 9836 LCMT2 - PPM2|TYW4 HGNC:17558|MIM:611246|Ensembl:ENSG00000168806|HPRD:17267|Vega:OTTHUMG00000130705 15 15q15.3 leucine carboxyl methyltransferase 2 protein-coding LCMT2 leucine carboxyl methyltransferase 2 O p21WAF1/CIP1 promoter-interacting protein|tRNA-Wybutosine-synthesizing protein 4|tRNA-yW synthesizing protein 4 20121230 -9606 9837 GINS1 RP4-691N24.2 PSF1 HGNC:28980|MIM:610608|Ensembl:ENSG00000101003|HPRD:11067|Vega:OTTHUMG00000032124 20 20p11.21 GINS complex subunit 1 (Psf1 homolog) protein-coding GINS1 GINS complex subunit 1 (Psf1 homolog) O DNA replication complex GINS protein PSF1|partner of sld five-1 20121230 -9606 9839 ZEB2 HRIHFB2411 HSPC082|SIP-1|SIP1|SMADIP1|ZFHX1B HGNC:14881|MIM:605802|Ensembl:ENSG00000169554|HPRD:05780|Vega:OTTHUMG00000131834 2 2q22.3 zinc finger E-box binding homeobox 2 protein-coding ZEB2 zinc finger E-box binding homeobox 2 O SMAD interacting protein 1|Smad-interacting protein 1|zinc finger E-box-binding homeobox 2|zinc finger homeobox 1b 20121230 -9606 9840 TESPA1 HSPC257 KIAA0748 HGNC:29109|Ensembl:ENSG00000135426|Vega:OTTHUMG00000165407 12 12q13.2 thymocyte expressed, positive selection associated 1 protein-coding TESPA1 thymocyte expressed, positive selection associated 1 O protein TESPA1|thymocyte-expressed positive selection-associated protein 1 20121230 -9606 9841 ZBTB24 - BIF1|ICF2|PATZ2|ZNF450 HGNC:21143|MIM:614064|Ensembl:ENSG00000112365|HPRD:18315|Vega:OTTHUMG00000015349 6 6q21 zinc finger and BTB domain containing 24 protein-coding ZBTB24 zinc finger and BTB domain containing 24 O POZ (BTB) and AT hook containing zinc finger 2|zinc finger and BTB domain-containing protein 24|zinc finger protein 450 20121230 -9606 9842 PLEKHM1 - AP162|B2|OPTB6 HGNC:29017|MIM:611466|Ensembl:ENSG00000225190|HPRD:11439|Vega:OTTHUMG00000179074 17 17q21.31 pleckstrin homology domain containing, family M (with RUN domain) member 1 protein-coding PLEKHM1 pleckstrin homology domain containing, family M (with RUN domain) member 1 O 162 kDa adapter protein|PH domain-containing family M member 1|pleckstrin homology domain-containing family M member 1 20121230 -9606 9843 HEPH RP13-238N7.1 CPL HGNC:4866|MIM:300167|Ensembl:ENSG00000089472|HPRD:02159|Vega:OTTHUMG00000021732 X Xq11-q12 hephaestin protein-coding HEPH hephaestin O - 20121230 -9606 9844 ELMO1 - CED-12|CED12|ELMO-1 HGNC:16286|MIM:606420|Ensembl:ENSG00000155849|HPRD:12102|Vega:OTTHUMG00000023701 7 7p14.1 engulfment and cell motility 1 protein-coding ELMO1 engulfment and cell motility 1 O ced-12 homolog 1|engulfment and cell motility protein 1 20121230 -9606 9846 GAB2 - - HGNC:14458|MIM:606203|Ensembl:ENSG00000033327|HPRD:05866|Vega:OTTHUMG00000166673 11 11q14.1 GRB2-associated binding protein 2 protein-coding GAB2 GRB2-associated binding protein 2 O GRB2-associated-binding protein 2|Grb2-associated binder 2|growth factor receptor bound protein 2-associated protein 2|pp100 20121230 -9606 9847 C2CD5 - CDP138|KIAA0528 HGNC:29062|Ensembl:ENSG00000111731|HPRD:11087|Vega:OTTHUMG00000169100 12 12p12.1 C2 calcium-dependent domain containing 5 protein-coding C2CD5 C2 calcium-dependent domain containing 5 O 138 kDa C2 domain-containing phosphoprotein|uncharacterized protein KIAA0528 20121230 -9606 9848 MFAP3L HSD39 NYD-sp9 HGNC:29083|Ensembl:ENSG00000198948|HPRD:14391|Vega:OTTHUMG00000160942 4 4q32.3 microfibrillar-associated protein 3-like protein-coding MFAP3L microfibrillar-associated protein 3-like O testis development protein NYD-SP9 20121230 -9606 9849 ZNF518A - ZNF518 HGNC:29009|HPRD:18349 10 10q24.1 zinc finger protein 518A protein-coding ZNF518A zinc finger protein 518A O zinc finger protein 518 20121230 -9606 9851 KIAA0753 - - HGNC:29110|Ensembl:ENSG00000198920|HPRD:11106|Vega:OTTHUMG00000177928 17 17p13.1 KIAA0753 protein-coding KIAA0753 KIAA0753 O uncharacterized protein KIAA0753 20121230 -9606 9852 EPM2AIP1 My007 - HGNC:19735|MIM:607911|Ensembl:ENSG00000178567|HPRD:07445 3 3p22.1 EPM2A (laforin) interacting protein 1 protein-coding EPM2AIP1 EPM2A (laforin) interacting protein 1 O EPM2A interacting protein 1|EPM2A-interacting protein 1|laforin-interacting protein 20121230 -9606 9853 RUSC2 - Iporin HGNC:23625|MIM:611053|Ensembl:ENSG00000198853|HPRD:18009|Vega:OTTHUMG00000019861 9 9p13.3 RUN and SH3 domain containing 2 protein-coding RUSC2 RUN and SH3 domain containing 2 O RUN and SH3 domain-containing protein 2|interacting protein of Rab1|iporin 20121230 -9606 9854 C2CD2L DLNB23 TMEM24 HGNC:29000|Ensembl:ENSG00000172375|HPRD:15533|Vega:OTTHUMG00000166167 11 11q23.3 C2CD2-like protein-coding C2CD2L C2CD2-like O C2 domain-containing protein 2-like|transmembrane protein 24 20121230 -9606 9855 FARP2 - FIR|FRG|PLEKHC3 HGNC:16460|Ensembl:ENSG00000006607|HPRD:16885|Vega:OTTHUMG00000151574 2 2q37.3 FERM, RhoGEF and pleckstrin domain protein 2 protein-coding FARP2 FERM, RhoGEF and pleckstrin domain protein 2 O FERM domain including RhoGEF|FERM, RhoGEF and pleckstrin domain-containing protein 2|FGD1-related Cdc42-GEF|PH domain-containing family C member 3|pleckstrin homology domain-containing family C member 3 20121230 -9606 9856 KIAA0319 - DYLX2|DYX2 HGNC:21580|MIM:609269|Ensembl:ENSG00000137261|HPRD:18713|Vega:OTTHUMG00000014358 6 6p22.3-p22.2 KIAA0319 protein-coding KIAA0319 KIAA0319 O dyslexia susceptibility 2|dyslexia-associated protein KIAA0319 20121230 -9606 9857 CEP350 RP11-502H18.1 CAP350|GM133 HGNC:24238|Ensembl:ENSG00000135837|HPRD:09870|Vega:OTTHUMG00000035269 1 1q25.2 centrosomal protein 350kDa protein-coding CEP350 centrosomal protein 350kDa O centrosome-associated protein 350 20121230 -9606 9858 PPP1R26 RP11-426A6.6 KIAA0649 HGNC:29089|MIM:614056|Ensembl:ENSG00000196422|HPRD:11099|Vega:OTTHUMG00000020904 9 9q34.3 protein phosphatase 1, regulatory subunit 26 protein-coding PPP1R26 protein phosphatase 1, regulatory subunit 26 O 1A6/DRIM (down-regulated in metastasis) interacting protein|DRIM/UTP20 interacting protein|protein phosphatase 1 regulatory subunit 26 20121230 -9606 9859 CEP170 - FAM68A|KAB|KIAA0470 HGNC:28920|MIM:613023|Ensembl:ENSG00000143702|HPRD:17172|Vega:OTTHUMG00000039862 1 1q44 centrosomal protein 170kDa protein-coding CEP170 centrosomal protein 170kDa O KARP-1-binding protein|XRCC5 binding protein|centrosomal protein of 170 kDa 20121230 -9606 9860 LRIG2 - LIG-2|LIG2 HGNC:20889|MIM:608869|Ensembl:ENSG00000198799|HPRD:12321|Vega:OTTHUMG00000012133 1 1p13.1 leucine-rich repeats and immunoglobulin-like domains 2 protein-coding LRIG2 leucine-rich repeats and immunoglobulin-like domains 2 O leucine-rich repeats and immunoglobulin-like domains protein 2 20121230 -9606 9861 PSMD6 - Rpn7|S10|SGA-113M|p42A|p44S10 HGNC:9564|Ensembl:ENSG00000163636|HPRD:18370|Vega:OTTHUMG00000158765 3 3p14.1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 6 protein-coding PSMD6 proteasome (prosome, macropain) 26S subunit, non-ATPase, 6 O 26S proteasome non-ATPase regulatory subunit 6|breast cancer-associated protein SGA-113M|phosphonoformate immuno-associated protein 4|proteasome regulatory particle subunit p44S10 20121230 -9606 9862 MED24 - ARC100|CRSP100|CRSP4|DRIP100|THRAP4|TRAP100 HGNC:22963|MIM:607000|Ensembl:ENSG00000008838|HPRD:06107|Vega:OTTHUMG00000133329 17 17q21.1 mediator complex subunit 24 protein-coding MED24 mediator complex subunit 24 O CRSP complex subunit 4|activator-recruited cofactor 100 kDa component|cofactor required for Sp1 transcriptional activation subunit 4|cofactor required for Sp1 transcriptional activation, subunit 4, 100kDa|mediator of RNA polymerase II transcription subunit 24|mediator of RNA polymerase II transcription, subunit 24 homolog|thyroid hormone receptor associated protein 4|thyroid hormone receptor-associated protein 4|thyroid hormone receptor-associated protein complex 100 kDa component|vitamin D3 receptor-interacting protein complex 100 kDa component|vitamin D3 receptor-interacting protein complex component DRIP100 20121230 -9606 9863 MAGI2 - ACVRIP1|AIP-1|AIP1|ARIP1|MAGI-2|SSCAM HGNC:18957|MIM:606382|Ensembl:ENSG00000187391|HPRD:16212|Vega:OTTHUMG00000130697 7 7q21 membrane associated guanylate kinase, WW and PDZ domain containing 2 protein-coding MAGI2 membrane associated guanylate kinase, WW and PDZ domain containing 2 O activin receptor interacting protein 1|atrophin-1-interacting protein 1|atrophin-1-interacting protein A|membrane-associated guanylate kinase inverted 2|membrane-associated guanylate kinase, WW and PDZ domain-containing protein 2 20121230 -9606 9865 TRIL - - HGNC:22200|MIM:613356 7 7p14.3 TLR4 interactor with leucine-rich repeats protein-coding TRIL TLR4 interactor with leucine-rich repeats O TLR4 interactor with leucine rich repeats 20121230 -9606 9866 TRIM66 - C11orf29|TIF1D|TIF1DELTA HGNC:29005|MIM:612000|Ensembl:ENSG00000166436|Vega:OTTHUMG00000150481 11 11p15.4 tripartite motif containing 66 protein-coding TRIM66 tripartite motif containing 66 O transcriptional intermediary factor 1 delta|tripartite motif-containing 66|tripartite motif-containing protein 66 20121230 -9606 9867 PJA2 - Neurodap1|RNF131 HGNC:17481|Ensembl:ENSG00000198961|HPRD:11436|Vega:OTTHUMG00000128750 5 5q21.3 praja ring finger 2, E3 ubiquitin protein ligase protein-coding PJA2 praja ring finger 2, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase Praja-2|praja 2, RING-H2 motif containing|praja2|ring finger protein 131 20121230 -9606 9868 TOMM70A - - HGNC:11985|MIM:606081|Ensembl:ENSG00000154174|HPRD:16194|Vega:OTTHUMG00000159065 3 3q12.2 translocase of outer mitochondrial membrane 70 homolog A (S. cerevisiae) protein-coding TOMM70A translocase of outer mitochondrial membrane 70 homolog A (S. cerevisiae) O mitochondrial import receptor subunit TOM70|mitochondrial precursor proteins import receptor|translocase of outer membrane 70 kDa subunit 20121230 -9606 9869 SETDB1 RP11-316M1.1 ESET|H3-K9-HMTase4|KG1T|KMT1E HGNC:10761|MIM:604396|Ensembl:ENSG00000143379|HPRD:06828|Vega:OTTHUMG00000035003 1 1q21 SET domain, bifurcated 1 protein-coding SETDB1 SET domain, bifurcated 1 O ERG-associated protein with SET domain|ERG-associated protein with a SET domain, ESET|H3-K9-HMTase 4|histone H3-K9 methyltransferase 4|histone-lysine N-methyltransferase SETDB1|histone-lysine N-methyltransferase, H3lysine-9 specific 4|lysine N-methyltransferase 1E 20121230 -9606 9870 KIAA0317 - - HGNC:20363|Ensembl:ENSG00000119682|HPRD:13794|Vega:OTTHUMG00000154499 14 14q24.3 KIAA0317 protein-coding KIAA0317 KIAA0317 O protein KIAA0317 20121230 -9606 9871 SEC24D - - HGNC:10706|MIM:607186|Ensembl:ENSG00000150961|HPRD:06218|Vega:OTTHUMG00000132957 4 4q26 SEC24 family, member D (S. cerevisiae) protein-coding SEC24D SEC24 family, member D (S. cerevisiae) O SEC24 related gene family, member D|SEC24-related protein D|protein transport protein Sec24D 20121230 -9606 9873 FCHSD2 - NWK|SH3MD3 HGNC:29114|Ensembl:ENSG00000137478|HPRD:13321|Vega:OTTHUMG00000153082 11 11q13.4 FCH and double SH3 domains 2 protein-coding FCHSD2 FCH and double SH3 domains 2 O FCH and double SH3 domains protein 2|SH3 multiple domains 3|SH3 multiple domains protein 3|carom|nervous wreck homolog 20121230 -9606 9874 TLK1 - PKU-beta HGNC:11841|MIM:608438|Ensembl:ENSG00000198586|Vega:OTTHUMG00000132243 2 2q31.1 tousled-like kinase 1 protein-coding TLK1 tousled-like kinase 1 O SNARE protein kinase SNAK|serine threonine protein kinase|serine/threonine-protein kinase tousled-like 1 20121230 -9606 9875 URB1 - C21orf108|NPA1 HGNC:17344|MIM:608865|Ensembl:ENSG00000142207|Vega:OTTHUMG00000064919 21 21q22.11 URB1 ribosome biogenesis 1 homolog (S. cerevisiae) protein-coding URB1 URB1 ribosome biogenesis 1 homolog (S. cerevisiae) O nucleolar pre-ribosomal-associated protein 1|nucleolar preribosomal-associated protein 1|nucleolar protein 254 kDa 20121230 -9606 9877 ZC3H11A - ZC3HDC11A HGNC:29093|MIM:613513|Ensembl:ENSG00000058673|HPRD:11100|Vega:OTTHUMG00000035909 1 1q32.1 zinc finger CCCH-type containing 11A protein-coding ZC3H11A zinc finger CCCH-type containing 11A O zinc finger CCCH domain-containing protein 11A|zinc finger CCCH-type domain containing 11A 20121230 -9606 9878 TOX4 - C14orf92|KIAA0737|LCP1|MIG7 HGNC:20161|MIM:614032|Ensembl:ENSG00000092203|HPRD:12661|Vega:OTTHUMG00000150278 14 14q11.2 TOX high mobility group box family member 4 protein-coding TOX4 TOX high mobility group box family member 4 O epidermal Langerhans cell protein LCP1|migration-inducing protein 7 20121230 -9606 9879 DDX46 - PRPF5|Prp5 HGNC:18681|Ensembl:ENSG00000145833|HPRD:10862|Vega:OTTHUMG00000163072 5 5q31.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 46 protein-coding DDX46 DEAD (Asp-Glu-Ala-Asp) box polypeptide 46 O DEAD box protein 46|PRP5 homolog|Prp5-like DEAD-box protein|RNA helicase|probable ATP-dependent RNA helicase DDX46 20121230 -9606 9880 ZBTB39 - ZNF922 HGNC:29014|Ensembl:ENSG00000166860|HPRD:13796|Vega:OTTHUMG00000171007 12 12q13.3 zinc finger and BTB domain containing 39 protein-coding ZBTB39 zinc finger and BTB domain containing 39 O zinc finger and BTB domain-containing protein 39 20121230 -9606 9881 TRANK1 - LBA1 HGNC:29011|Ensembl:ENSG00000168016 3 3p22.2 tetratricopeptide repeat and ankyrin repeat containing 1 protein-coding TRANK1 tetratricopeptide repeat and ankyrin repeat containing 1 O TPR and ankyrin repeat-containing protein 1|lupus brain antigen 1 homolog 20121230 -9606 9882 TBC1D4 RP11-159J2.3 AS160 HGNC:19165|MIM:612465|Ensembl:ENSG00000136111|HPRD:18164|Vega:OTTHUMG00000017088 13 13q22.2 TBC1 domain family, member 4 protein-coding TBC1D4 TBC1 domain family, member 4 O Acrg embryonic lethality minimal region ortholog|TBC (Tre-2, BUB2, CDC16) domain-containing protein|TBC1 domain family member 4|akt substrate of 160 kDa 20121230 -9606 9883 POM121 - P145|POM121A HGNC:19702|Ensembl:ENSG00000196313|HPRD:11448|Vega:OTTHUMG00000023527 7 7q11.23 POM121 transmembrane nucleoporin protein-coding POM121 POM121 transmembrane nucleoporin O POM121 membrane glycoprotein|nuclear envelope pore membrane protein POM 121|nuclear envelope pore membrane protein POM 121A|nuclear pore membrane protein 121 kDa|nucleoporin Nup121|pore membrane protein of 121 kDa 20121230 -9606 9884 LRRC37A - - HGNC:29069|Ensembl:ENSG00000176681|HPRD:14303|Vega:OTTHUMG00000149841 17 17q21.31 leucine rich repeat containing 37A protein-coding LRRC37A leucine rich repeat containing 37A O leucine-rich repeat-containing protein 37A 20121230 -9606 9885 OSBPL2 RP11-157P1.2 ORP-2|ORP2 HGNC:15761|MIM:606731|Ensembl:ENSG00000130703|HPRD:09473|Vega:OTTHUMG00000032909 20 20q13.3 oxysterol binding protein-like 2 protein-coding OSBPL2 oxysterol binding protein-like 2 O OSBP-related protein 2|oxysterol-binding protein-like 2|oxysterol-binding protein-related protein 2 20121230 -9606 9886 RHOBTB1 - - HGNC:18738|MIM:607351|Ensembl:ENSG00000072422|HPRD:06299|Vega:OTTHUMG00000018292 10 10q21.2 Rho-related BTB domain containing 1 protein-coding RHOBTB1 Rho-related BTB domain containing 1 O rho-related BTB domain-containing protein 1 20121230 -9606 9887 SMG7 RP1-127C7.1 C1orf16|EST1C|SGA56M HGNC:16792|MIM:610964|Ensembl:ENSG00000116698|HPRD:10723|Vega:OTTHUMG00000035221 1 1q25 smg-7 homolog, nonsense mediated mRNA decay factor (C. elegans) protein-coding SMG7 smg-7 homolog, nonsense mediated mRNA decay factor (C. elegans) O EST1 telomerase component homolog C|EST1-like protein C|breast cancer-associated antigen SGA-56M|ever shorter telomeres 1C|protein SMG7 20121230 -9606 9889 ZBED4 - - HGNC:20721|MIM:612552|Ensembl:ENSG00000100426|HPRD:11692|Vega:OTTHUMG00000150291 22 22q13.33 zinc finger, BED-type containing 4 protein-coding ZBED4 zinc finger, BED-type containing 4 O zinc finger BED domain-containing protein 4|zinc finger, BED domain containing 4 20121230 -9606 9890 LPPR4 - LPR4|PHP1|PRG-1|PRG1|RP4-788L13.1 MIM:607813|Ensembl:ENSG00000117600|HPRD:07425|Vega:OTTHUMG00000010763 1 1p21.2 lipid phosphate phosphatase-related protein type 4 protein-coding - - - brain-specific phosphatidic acid phosphatase-like protein 1|plasticity related gene 1|plasticity-related gene 1 protein 20121230 -9606 9891 NUAK1 - ARK5 HGNC:14311|MIM:608130|Ensembl:ENSG00000074590|HPRD:12171|Vega:OTTHUMG00000169763 12 12q23.3 NUAK family, SNF1-like kinase, 1 protein-coding NUAK1 NUAK family, SNF1-like kinase, 1 O AMP-activated protein kinase family member 5|AMPK-related protein kinase 5|NUAK family SNF1-like kinase 1|omphalocele kinase 1 20121230 -9606 9892 SNAP91 RP1-120N9.1 AP180|CALM HGNC:14986|MIM:607923|Ensembl:ENSG00000065609|HPRD:06391|Vega:OTTHUMG00000015114 6 6q14.2 synaptosomal-associated protein, 91kDa protein-coding SNAP91 synaptosomal-associated protein, 91kDa O 91 kDa synaptosomal-associated protein|assembly protein, 180kDa|clathrin coat assembly protein AP180|clathrin coat-associated protein AP180|phosphoprotein F1-20|synaptosomal-associated protein, 91kDa homolog 20121230 -9606 9894 TELO2 - CLK2|TEL2 HGNC:29099|MIM:611140|Ensembl:ENSG00000100726|HPRD:10016|Vega:OTTHUMG00000044471 16 16p13.3 TEL2, telomere maintenance 2, homolog (S. cerevisiae) protein-coding TELO2 TEL2, telomere maintenance 2, homolog (S. cerevisiae) O protein clk-2 homolog|telomere length regulation protein TEL2 homolog 20121230 -9606 9895 TECPR2 - KIAA0329 HGNC:19957|MIM:615000|Ensembl:ENSG00000196663|HPRD:17184|Vega:OTTHUMG00000171776 14 14q32.31 tectonin beta-propeller repeat containing 2 protein-coding TECPR2 tectonin beta-propeller repeat containing 2 O tectonin beta-propeller repeat-containing protein 2 20121230 -9606 9896 FIG4 RP1-249I4.1 ALS11|CMT4J|KIAA0274|SAC3|dJ249I4.1 HGNC:16873|MIM:609390|Ensembl:ENSG00000112367|HPRD:11073|Vega:OTTHUMG00000015352 6 6q21 FIG4 homolog, SAC1 lipid phosphatase domain containing (S. cerevisiae) protein-coding FIG4 FIG4 homolog, SAC1 lipid phosphatase domain containing (S. cerevisiae) O FIG4 homolog, SAC domain containing lipid phosphatase|FIG4 homolog, SAC1 domain containing lipid phosphatase|SAC domain-containing protein 3|Sac domain-containing inositol phosphatase 3|phosphatidylinositol 3,5-bisphosphate 5-phosphatase|polyphosphoinositide phosphatase 20121230 -9606 9897 KIAA0196 - SPG8 HGNC:28984|MIM:610657|Ensembl:ENSG00000164961|HPRD:13786|Vega:OTTHUMG00000164991 8 8q24.13 KIAA0196 protein-coding KIAA0196 KIAA0196 O WASH complex subunit strumpellin|strumpellin 20121230 -9606 9898 UBAP2L RP11-205M9.4 NICE-4 HGNC:29877|Ensembl:ENSG00000143569|HPRD:06665|Vega:OTTHUMG00000035983 1 1q21.3 ubiquitin associated protein 2-like protein-coding UBAP2L ubiquitin associated protein 2-like O protein NICE-4|ubiquitin-associated protein 2-like 20121230 -9606 9899 SV2B - HsT19680 HGNC:16874|MIM:185861|Ensembl:ENSG00000185518|HPRD:11765|Vega:OTTHUMG00000149833 15 15q26.1 synaptic vesicle glycoprotein 2B protein-coding SV2B synaptic vesicle glycoprotein 2B O synaptic vesicle protein 2B homolog 20121230 -9606 9900 SV2A PSEC0174 SV2 HGNC:20566|MIM:185860|Ensembl:ENSG00000159164|HPRD:08922|Vega:OTTHUMG00000012209 1 1q21.2 synaptic vesicle glycoprotein 2A protein-coding SV2A synaptic vesicle glycoprotein 2A O - 20121230 -9606 9901 SRGAP3 - ARHGAP14|MEGAP|SRGAP2|WRP HGNC:19744|MIM:606525|Ensembl:ENSG00000196220|HPRD:12108|Vega:OTTHUMG00000090589 3 3p25.3 SLIT-ROBO Rho GTPase activating protein 3 protein-coding SRGAP3 SLIT-ROBO Rho GTPase activating protein 3 O SLIT-ROBO Rho GTPase activating protein 2|SLIT-ROBO Rho GTPase-activating protein 3|WAVE-associated Rac GTPase activating protein|mental disorder-associated GAP|rho GTPase-activating protein 14 20121230 -9606 9902 MRC2 - CD280|CLEC13E|ENDO180|UPARAP HGNC:16875|MIM:612264|Ensembl:ENSG00000011028|HPRD:10094|Vega:OTTHUMG00000179178 17 17q23.2 mannose receptor, C type 2 protein-coding MRC2 mannose receptor, C type 2 O C-type lectin domain family 13 member E|C-type mannose receptor 2|UPAR-associated protein|endocytic receptor (macrophage mannose receptor family)|endocytic receptor 180|macrophage mannose receptor 2|urokinase-type plasminogen activator receptor-associated protein 20121230 -9606 9903 KLHL21 - - HGNC:29041|Ensembl:ENSG00000162413|HPRD:17239|Vega:OTTHUMG00000001437 1 1p36.31 kelch-like 21 (Drosophila) protein-coding KLHL21 kelch-like 21 (Drosophila) O kelch-like protein 21 20121230 -9606 9904 RBM19 - - HGNC:29098|Ensembl:ENSG00000122965|HPRD:15225|Vega:OTTHUMG00000169646 12 12q24.21 RNA binding motif protein 19 protein-coding RBM19 RNA binding motif protein 19 O RNA-binding motif protein 19|probable RNA-binding protein 19 20121230 -9606 9905 SGSM2 - RUTBC1 HGNC:29026|MIM:611418|Ensembl:ENSG00000141258|HPRD:15284|Vega:OTTHUMG00000177637 17 17p13.3 small G protein signaling modulator 2 protein-coding SGSM2 small G protein signaling modulator 2 O RUN and TBC1 domain containing 1|RUN and TBC1 domain-containing protein 1|small G protein signaling modulator 2 protein 20121230 -9606 9906 SLC35E2 RP1-283E3.5 - HGNC:20863|Ensembl:ENSG00000215790|HPRD:15374|Vega:OTTHUMG00000000823 1 1p36.33 solute carrier family 35, member E2 protein-coding SLC35E2 solute carrier family 35, member E2 O solute carrier family 35 member E2 20121230 -9606 9907 AP5Z1 tcag7.1310 KIAA0415|SPG48|zeta HGNC:22197|MIM:613653|Ensembl:ENSG00000242802|Vega:OTTHUMG00000151754 7 7p22.2 adaptor-related protein complex 5, zeta 1 subunit protein-coding AP5Z1 adaptor-related protein complex 5, zeta 1 subunit O AP-5 complex subunit zeta-1|adapter-related protein complex 5 zeta subunit|zeta5 20121230 -9606 9908 G3BP2 - - HGNC:30291|Ensembl:ENSG00000138757|HPRD:06570|Vega:OTTHUMG00000130097 4 4q21.1 GTPase activating protein (SH3 domain) binding protein 2 protein-coding G3BP2 GTPase activating protein (SH3 domain) binding protein 2 O G3BP-2|GAP SH3 domain-binding protein 2|Ras-GTPase activating protein SH3 domain-binding protein 2|ras GTPase-activating protein-binding protein 2 20121230 -9606 9909 DENND4B hCG_18235 KIAA0476 HGNC:29044|Ensembl:ENSG00000198837|Vega:OTTHUMG00000037157 1 1q21 DENN/MADD domain containing 4B protein-coding DENND4B DENN/MADD domain containing 4B O DENN domain-containing protein 4B 20121230 -9606 9910 RABGAP1L RP1-102G20.1 HHL|TBC1D18 HGNC:24663|MIM:609238|Ensembl:ENSG00000152061|HPRD:16464|Vega:OTTHUMG00000034899 1 1q24 RAB GTPase activating protein 1-like protein-coding RABGAP1L RAB GTPase activating protein 1-like O TBC1 domain family, member 18|expressed in hematopoietic cells, heart, liver (HLL)|rab GTPase-activating protein 1-like 20121230 -9606 9911 TMCC2 UNQ6409 HUCEP11 HGNC:24239|Ensembl:ENSG00000133069|HPRD:11040|Vega:OTTHUMG00000037195 1 1q32.1 transmembrane and coiled-coil domain family 2 protein-coding TMCC2 transmembrane and coiled-coil domain family 2 O cerebral protein 11|transmembrane and coiled-coil domains 2|transmembrane and coiled-coil domains protein 2 20121230 -9606 9912 ARHGAP44 - NPC-A-10|RICH2 HGNC:29096|Ensembl:ENSG00000006740|HPRD:13810|Vega:OTTHUMG00000058765 17 17p12 Rho GTPase activating protein 44 protein-coding ARHGAP44 Rho GTPase activating protein 44 O RICH-2|Rho-type GTPase-activating protein RICH2|RhoGAP interacting with CIP4 homologs protein 2|rho GTPase-activating protein 44|rho GTPase-activating protein RICH2 20121230 -9606 9913 SUPT7L - SPT7L|STAF65|STAF65(gamma)|STAF65G|SUPT7H HGNC:30632|MIM:612762|Ensembl:ENSG00000119760|HPRD:18115|Vega:OTTHUMG00000151947 2 2p23.3 suppressor of Ty 7 (S. cerevisiae)-like protein-coding SUPT7L suppressor of Ty 7 (S. cerevisiae)-like O SPTF-associated factor 65 gamma|STAF65gamma|STAGA complex 65 gamma subunit|STAGA complex 65 subunit gamma|adenocarcinoma antigen ART1|suppressor of Ty 7-like 20121230 -9606 9914 ATP2C2 - SPCA2 HGNC:29103|MIM:613082|Ensembl:ENSG00000064270|HPRD:13812|Vega:OTTHUMG00000176737 16 16q24.1 ATPase, Ca++ transporting, type 2C, member 2 protein-coding ATP2C2 ATPase, Ca++ transporting, type 2C, member 2 O ATPase 2C2|calcium-transporting ATPase type 2C member 2|secretory pathway Ca(2+)-ATPase 2|secretory pathway calcium ATPase 2 20121230 -9606 9915 ARNT2 - bHLHe1 HGNC:16876|MIM:606036|Ensembl:ENSG00000172379|Vega:OTTHUMG00000165478 15 15q24 aryl-hydrocarbon receptor nuclear translocator 2 protein-coding ARNT2 aryl-hydrocarbon receptor nuclear translocator 2 O ARNT protein 2|aryl hydrocarbon receptor nuclear translocator 2|class E basic helix-loop-helix protein 1 20121230 -9606 9917 FAM20B RP11-177A2.1 gxk1 HGNC:23017|MIM:611063|Ensembl:ENSG00000116199|HPRD:13297|Vega:OTTHUMG00000035073 1 1q25 family with sequence similarity 20, member B protein-coding FAM20B family with sequence similarity 20, member B O glycosaminoglycan xylosylkinase|xylose kinase 20121230 -9606 9918 NCAPD2 - CAP-D2|CNAP1|hCAP-D2 HGNC:24305|Ensembl:ENSG00000010292|HPRD:06472|Vega:OTTHUMG00000168513 12 12p13.3 non-SMC condensin I complex, subunit D2 protein-coding NCAPD2 non-SMC condensin I complex, subunit D2 O XCAP-D2 homolog|chromosome condensation related SMC associated protein 1|chromosome condensation-related SMC-associated protein 1|chromosome-associated protein D2|condensin complex subunit 1 20121230 -9606 9919 SEC16A RP11-413M3.10-002 KIAA0310|RP11-413M3.10|SEC16L|p250 HGNC:29006|MIM:612854|Ensembl:ENSG00000148396|Vega:OTTHUMG00000020932 9 9q34.3 SEC16 homolog A (S. cerevisiae) protein-coding SEC16A SEC16 homolog A (S. cerevisiae) O protein SEC16 homolog A|protein transport protein Sec16A 20121230 -9606 9920 KBTBD11 - KLHDC7C HGNC:29104|Ensembl:ENSG00000176595|HPRD:17195|Vega:OTTHUMG00000163629 8 8p23.3 kelch repeat and BTB (POZ) domain containing 11 protein-coding KBTBD11 kelch repeat and BTB (POZ) domain containing 11 O chronic myelogenous leukemia-associated protein|kelch domain-containing protein 7B|kelch repeat and BTB domain-containing protein 11 20121230 -9606 9921 RNF10 - RIE2 HGNC:10055|Ensembl:ENSG00000022840|HPRD:11496|Vega:OTTHUMG00000168999 12 12q24.31 ring finger protein 10 protein-coding RNF10 ring finger protein 10 O RING finger protein 10 20121230 -9606 9922 IQSEC1 - ARF-GEP100|ARFGEP100|BRAG2|GEP100 HGNC:29112|MIM:610166|Ensembl:ENSG00000144711|HPRD:11052|Vega:OTTHUMG00000155398 3 3p25.2 IQ motif and Sec7 domain 1 protein-coding IQSEC1 IQ motif and Sec7 domain 1 O ADP-ribosylation factors guanine nucleotide-exchange protein 100|ADP-ribosylation factors guanine nucleotide-exchange protein 2|IQ motif and SEC7 domain-containing protein 1|brefeldin A-resistant ARF-GEF2|brefeldin-resistant Arf-GEF 2 protein 20121230 -9606 9923 ZBTB40 - ZNF923 HGNC:29045|MIM:612106|Ensembl:ENSG00000184677|HPRD:11086|Vega:OTTHUMG00000002897 1 1p36 zinc finger and BTB domain containing 40 protein-coding ZBTB40 zinc finger and BTB domain containing 40 O zinc finger and BTB domain-containing protein 40 20121230 -9606 9924 PAN2 - USP52 HGNC:20074|Ensembl:ENSG00000135473|HPRD:15640|Vega:OTTHUMG00000170412 12 12q13.2 PAN2 poly(A) specific ribonuclease subunit homolog (S. cerevisiae) protein-coding PAN2 PAN2 poly(A) specific ribonuclease subunit homolog (S. cerevisiae) O PAB-dependent poly(A)-specific ribonuclease subunit 2|PABP-dependent poly(A) nuclease 2|PAN2 polyA specific ribonuclease subunit|inactive ubiquitin carboxyl-terminal hydrolase 52|ubiquitin specific peptidase 52|ubiquitin specific protease 52 20121230 -9606 9925 ZBTB5 RP11-397D12.5 - HGNC:23836|Ensembl:ENSG00000168795|HPRD:08829|Vega:OTTHUMG00000019918 9 9p13.2 zinc finger and BTB domain containing 5 protein-coding ZBTB5 zinc finger and BTB domain containing 5 O zinc finger and BTB domain-containing protein 5 20121230 -9606 9926 LPGAT1 - FAM34A|FAM34A1|NET8 HGNC:28985|MIM:610473|Ensembl:ENSG00000123684|HPRD:14304|Vega:OTTHUMG00000037120 1 1q32 lysophosphatidylglycerol acyltransferase 1 protein-coding LPGAT1 lysophosphatidylglycerol acyltransferase 1 O acyl-CoA:lysophosphatidylglycerol acyltransferase 1|family with sequence similarity 34, member A 20121230 -9606 9927 MFN2 RP5-1077B9.3 CMT2A|CMT2A2|CPRP1|HSG|MARF HGNC:16877|MIM:608507|Ensembl:ENSG00000116688|HPRD:08495|Vega:OTTHUMG00000002392 1 1p36.22 mitofusin 2 protein-coding MFN2 mitofusin 2 O hyperplasia suppressor|mitochondrial assembly regulatory factor|mitofusin-2|transmembrane GTPase MFN2 20121230 -9606 9928 KIF14 - - HGNC:19181|MIM:611279|Ensembl:ENSG00000118193|HPRD:06605|Vega:OTTHUMG00000035723 1 1q32.1 kinesin family member 14 protein-coding KIF14 kinesin family member 14 O kinesin-like protein KIF14 20121230 -9606 9929 JOSD1 RP3-508I15.17-002 dJ508I15.2 HGNC:28953|Ensembl:ENSG00000100221|HPRD:08823|Vega:OTTHUMG00000151030 22 22q13.1 Josephin domain containing 1 protein-coding JOSD1 Josephin domain containing 1 O Josephin-1|josephin domain-containing 1 20121230 -9606 9931 HELZ - DHRC|DRHC|HUMORF5 HGNC:16878|MIM:606699|Ensembl:ENSG00000198265|HPRD:10452|Vega:OTTHUMG00000179555 17 17q24.2 helicase with zinc finger protein-coding HELZ helicase with zinc finger O down-regulated in human cancers protein|helicase with zinc finger domain|probable helicase with zinc finger domain 20121230 -9606 9933 KIAA0020 RP11-526D20.2 HA-8|HLA-HA8|PEN|PUF6|XTP5|hPUF-A HGNC:29676|MIM:609960|Ensembl:ENSG00000080608|HPRD:08822|Vega:OTTHUMG00000019450 9 9p24.2 KIAA0020 protein-coding KIAA0020 KIAA0020 O HBV X-transactivated gene 5 protein|HBV XAg-transactivated protein 5|minor histocompatibility antigen HA-8|penguin homolog|protein 5 transactivated by hepatitis B virus X antigen (HBxAg)|pumilio domain-containing protein KIAA0020 20121230 -9606 9934 P2RY14 - GPR105|P2Y14 HGNC:16442|MIM:610116|Ensembl:ENSG00000174944|HPRD:08820|Vega:OTTHUMG00000159859 3 3q24-q25.1 purinergic receptor P2Y, G-protein coupled, 14 protein-coding P2RY14 purinergic receptor P2Y, G-protein coupled, 14 O G protein coupled receptor for UDP-glucose|G protein-coupled receptor 105|G-protein coupled receptor 105|P2Y purinoceptor 14|P2Y(14) receptor|P2Y14 receptor|UDP-glucose receptor 20121230 -9606 9935 MAFB - KRML|MCTO HGNC:6408|MIM:608968|Ensembl:ENSG00000204103|HPRD:07129|Vega:OTTHUMG00000033052 20 20q11.2-q13.1 v-maf musculoaponeurotic fibrosarcoma oncogene homolog B (avian) protein-coding MAFB v-maf musculoaponeurotic fibrosarcoma oncogene homolog B (avian) O Kreisler maf-related leucine zipper homolog|MAFB/Kreisler basic region/leucine zipper transcription factor|transcription factor MafB 20121230 -9606 9936 CD302 - BIMLEC|CLEC13A|DCL-1|DCL1 HGNC:30843|MIM:612246|Ensembl:ENSG00000241399|HPRD:09906|Vega:OTTHUMG00000154080 2 2q24.2 CD302 molecule protein-coding CD302 CD302 molecule O C-type lectin domain family 13, member A|CD302 antigen|DEC205-associated C-type lectin 1|type I transmembrane C-type lectin receptor DCL-1 20121230 -9606 9937 DCLRE1A - PSO2|SNM1|SNM1A HGNC:17660|MIM:609682|Ensembl:ENSG00000198924|HPRD:08519|Vega:OTTHUMG00000019077 10 10q25.1 DNA cross-link repair 1A protein-coding DCLRE1A DNA cross-link repair 1A O DNA cross-link repair 1A protein|DNA-crosslink repair gene SNM1|SNM1 homolog A 20121230 -9606 9938 ARHGAP25 - KAIA0053 HGNC:28951|MIM:610587|Ensembl:ENSG00000163219|HPRD:09805|Vega:OTTHUMG00000152621 2 2p13.3 Rho GTPase activating protein 25 protein-coding ARHGAP25 Rho GTPase activating protein 25 O rho GTPase-activating protein 25|rho-type GTPase-activating protein 25 20121230 -9606 9939 RBM8A HSPC114 BOV-1A|BOV-1B|BOV-1C|C1DELq21.1|DEL1q21.1|MDS014|RBM8|RBM8B|TAR|Y14|ZNRP|ZRNP1 HGNC:9905|MIM:605313|Ensembl:ENSG00000131795|HPRD:05609|Vega:OTTHUMG00000013736 1 1q21.1 RNA binding motif protein 8A protein-coding RBM8A RNA binding motif protein 8A O BOV-1|RNA binding motif protein 8B|RNA-binding motif protein 8A|RNA-binding protein 8A|RNA-binding protein Y14|binder of OVCA1-1|ribonucleoprotein RBM8|ribonucleoprotein RBM8A 20121230 -9606 9940 DLEC1 - DLC1|F56 HGNC:2899|MIM:604050|Ensembl:ENSG00000008226|HPRD:07234|Vega:OTTHUMG00000131085 3 3p21.3 deleted in lung and esophageal cancer 1 protein-coding DLEC1 deleted in lung and esophageal cancer 1 O DLC-1|deleted in lung and esophageal cancer 1 transcript varient 2|deleted in lung and esophageal cancer protein 1 20121230 -9606 9941 EXOG - ENDOGL1|ENDOGL2|ENGL|ENGL-a|ENGL-b|ENGLA|ENGLB HGNC:3347|MIM:604051|Ensembl:ENSG00000157036|HPRD:06813|Vega:OTTHUMG00000131295 3 3p21.3 endo/exonuclease (5'-3'), endonuclease G-like protein-coding EXOG endo/exonuclease (5'-3'), endonuclease G-like O endo G-like 1|endonuclease G-like 1|endonuclease G-like 2|nuclease EXOG, mitochondrial 20121230 -9606 9942 XYLB - - HGNC:12839|MIM:604049|Ensembl:ENSG00000093217|HPRD:06812|Vega:OTTHUMG00000131294 3 3p22-p21.3 xylulokinase homolog (H. influenzae) protein-coding XYLB xylulokinase homolog (H. influenzae) O xylulose kinase 20121230 -9606 9943 OXSR1 - OSR1 HGNC:8508|MIM:604046|Ensembl:ENSG00000172939|HPRD:06809|Vega:OTTHUMG00000131084 3 3p22.2 oxidative-stress responsive 1 protein-coding OXSR1 oxidative-stress responsive 1 O oxidative stress-responsive 1 protein|serine/threonine-protein kinase OSR1 20121230 -9606 9945 GFPT2 - GFAT2 HGNC:4242|MIM:603865|Ensembl:ENSG00000131459|HPRD:04842|Vega:OTTHUMG00000163442 5 5q34-q35 glutamine-fructose-6-phosphate transaminase 2 protein-coding GFPT2 glutamine-fructose-6-phosphate transaminase 2 O D-fructose-6-phosphate amidotransferase 2|GFAT 2|glucosamine--fructose-6-phosphate aminotransferase [isomerizing] 2|glutamine--fructose-6-phosphate aminotransferase [isomerizing] 2|glutamine: fructose-6-phosphate aminotransferase 2|glutamine:fructose 6 phosphate amidotransferase 2|glutamine:fructose-6-phosphate amidotransferase 2|hexosephosphate aminotransferase 2 20121230 -9606 9946 CRYZL1 - 4P11|QOH-1 HGNC:2420|MIM:603920|Ensembl:ENSG00000205758|HPRD:06797|Vega:OTTHUMG00000065954 21 21q21.3 crystallin, zeta (quinone reductase)-like 1 protein-coding CRYZL1 crystallin, zeta (quinone reductase)-like 1 O protein 4P11|quinone oxidoreductase homolog 1|quinone oxidoreductase-like protein 1|quinone reductase-like 1|zeta-crystallin homolog 20121230 -9606 9947 MAGEC1 RP6-232G24.1 CT7|CT7.1 HGNC:6812|MIM:300223|Ensembl:ENSG00000155495|HPRD:02201|Vega:OTTHUMG00000022569 X Xq26 melanoma antigen family C, 1 protein-coding MAGEC1 melanoma antigen family C, 1 O MAGE-C1 antigen|cancer/testis antigen 7.1|cancer/testis antigen family 7, member 1|melanoma-associated antigen C1 20121230 -9606 9948 WDR1 - AIP1|NORI-1 HGNC:12754|MIM:604734|Ensembl:ENSG00000071127|HPRD:09199|Vega:OTTHUMG00000160253 4 4p16.1 WD repeat domain 1 protein-coding WDR1 WD repeat domain 1 O WD repeat-containing protein 1|actin-interacting protein 1 20121230 -9606 9949 AMMECR1 RP13-360B22.1 AMMERC1 HGNC:467|MIM:300195|Ensembl:ENSG00000101935|HPRD:02182|Vega:OTTHUMG00000022197 X Xq22.3 Alport syndrome, mental retardation, midface hypoplasia and elliptocytosis chromosomal region gene 1 protein-coding AMMECR1 Alport syndrome, mental retardation, midface hypoplasia and elliptocytosis chromosomal region gene 1 O AMME syndrome candidate gene 1 protein 20121230 -9606 9950 GOLGA5 PIG31 GOLIM5|RFG5|ret-II HGNC:4428|MIM:606918|Ensembl:ENSG00000066455|HPRD:06079|Vega:OTTHUMG00000171217 14 14q32.12 golgin A5 protein-coding GOLGA5 golgin A5 O Golgin subfamily A member 5|RET-fused gene 5 protein|cell proliferation-inducing gene 31 protein|golgi autoantigen, golgin subfamily a, 5|golgi integral membrane protein 5|golgin-84 20121230 -9606 9951 HS3ST4 - 3-OST-4|30ST4|3OST4|h3-OST-4 HGNC:5200|MIM:604059|Ensembl:ENSG00000182601|HPRD:04960|Vega:OTTHUMG00000059978 16 16p11.2 heparan sulfate (glucosamine) 3-O-sulfotransferase 4 protein-coding HS3ST4 heparan sulfate (glucosamine) 3-O-sulfotransferase 4 O heparan sulfate 3-O-sulfotransferase 4|heparan sulfate 3-O-sulfotransferase-4|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 4|heparan sulfate glucosamine 3-O-sulfotransferase 4 20121230 -9606 9953 HS3ST3B1 - 30ST3B1|3OST3B1 HGNC:5198|MIM:604058|Ensembl:ENSG00000125430|HPRD:04959|Vega:OTTHUMG00000058810 17 17p12 heparan sulfate (glucosamine) 3-O-sulfotransferase 3B1 protein-coding HS3ST3B1 heparan sulfate (glucosamine) 3-O-sulfotransferase 3B1 O 3-OST-3B|h3-OST-3B|heparan sulfate 3-O-sulfotransferase 3B1|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 3B1|heparan sulfate glucosamine 3-O-sulfotransferase 3B1 20121230 -9606 9955 HS3ST3A1 UNQ2551/PRO6180 30ST3A1|3OST3A1 HGNC:5196|MIM:604057|Ensembl:ENSG00000153976|HPRD:04958|Vega:OTTHUMG00000058768 17 17p12 heparan sulfate (glucosamine) 3-O-sulfotransferase 3A1 protein-coding HS3ST3A1 heparan sulfate (glucosamine) 3-O-sulfotransferase 3A1 O 3-OST-3A|h3-OST-3A|heparan sulfate 3-O-sulfotransferase 3A1|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 3A1|heparan sulfate glucosamine 3-O-sulfotransferase 3A1|heparin-glucosamine 3-O-sulfotransferase 20121230 -9606 9956 HS3ST2 UNQ2442/PRO5004 30ST2|3OST2 HGNC:5195|MIM:604056|Ensembl:ENSG00000122254|HPRD:04957|Vega:OTTHUMG00000094785 16 16p12 heparan sulfate (glucosamine) 3-O-sulfotransferase 2 protein-coding HS3ST2 heparan sulfate (glucosamine) 3-O-sulfotransferase 2 O 3-OST-2|h3-OST-2|heparan sulfate 3-O-sulfotransferase 2|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 2|heparan sulfate glucosamine 3-O-sulfotransferase 2|heparin-glucosamine 3-O-sulfotransferase 20121230 -9606 9957 HS3ST1 - 3OST|3OST1 HGNC:5194|MIM:603244|Ensembl:ENSG00000002587|HPRD:04455|Vega:OTTHUMG00000090547 4 4p16 heparan sulfate (glucosamine) 3-O-sulfotransferase 1 protein-coding HS3ST1 heparan sulfate (glucosamine) 3-O-sulfotransferase 1 O 3-OST-1|h3-OST-1|heparan sulfate 3-O-sulfotransferase 1|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 1|heparan sulfate glucosamine 3-O-sulfotransferase 1|heparin-glucosamine 3-O-sulfotransferase 20121230 -9606 9958 USP15 - UNPH-2|UNPH4 HGNC:12613|MIM:604731|Ensembl:ENSG00000135655|HPRD:05293|Vega:OTTHUMG00000170186 12 12q14 ubiquitin specific peptidase 15 protein-coding USP15 ubiquitin specific peptidase 15 O deubiquitinating enzyme 15|ubiquitin carboxyl-terminal hydrolase 15|ubiquitin thioesterase 15|ubiquitin thiolesterase 15|ubiquitin-specific-processing protease 15 20121230 -9606 9959 USP12P1 - UBH1|USP12 HGNC:12610|MIM:603091 5 5q33-q34 ubiquitin specific peptidase 12 pseudogene 1 pseudo USP12P1 ubiquitin specific peptidase 12 pseudogene 1 O - 20121230 -9606 9960 USP3 - SIH003|UBP HGNC:12626|MIM:604728|Ensembl:ENSG00000140455|HPRD:05290|Vega:OTTHUMG00000172309 15 15q22.3 ubiquitin specific peptidase 3 protein-coding USP3 ubiquitin specific peptidase 3 O deubiquitinating enzyme 3|ubiquitin carboxyl-terminal hydrolase 3|ubiquitin thioesterase 3|ubiquitin thiolesterase 3|ubiquitin-specific-processing protease 3 20121230 -9606 9961 MVP - LRP|VAULT1 HGNC:7531|MIM:605088|Ensembl:ENSG00000013364|HPRD:05475|Vega:OTTHUMG00000048227 16 16p11.2 major vault protein protein-coding MVP major vault protein O lung resistance-related protein 20121230 -9606 9962 SLC23A2 RP1-237C24.1 NBTL1|SLC23A1|SVCT2|YSPL2 HGNC:10973|MIM:603791|Ensembl:ENSG00000089057|HPRD:04811|Vega:OTTHUMG00000031793 20 20p13 solute carrier family 23 (nucleobase transporters), member 2 protein-coding SLC23A2 solute carrier family 23 (nucleobase transporters), member 2 O Na(+)/L-ascorbic acid transporter 2|hSVCT2|nucleobase transporter-like 1 protein|sodium-dependent vitamin C transporter-2|solute carrier family 23 (nucleobase transporters), member 1|solute carrier family 23 member 2|yolk sac permease-like molecule 2 20121230 -9606 9963 SLC23A1 - SLC23A2|SVCT1|YSPL3 HGNC:10974|MIM:603790|Ensembl:ENSG00000170482|HPRD:04810|Vega:OTTHUMG00000129228 5 5q31.2 solute carrier family 23 (nucleobase transporters), member 1 protein-coding SLC23A1 solute carrier family 23 (nucleobase transporters), member 1 O Na(+)/L-ascorbic acid transporter 1|hSVCT1|sodium-dependent vitamin C transporter 1|sodium-dependent vitamin C transporter-1|solute carrier family 23 (nucleobase transporters), member 2|solute carrier family 23 member 1|yolk sac permease-like molecule 3 20121230 -9606 9964 MYCL3 - - HGNC:7557 X Xq27.2 v-myc myelocytomatosis viral oncogene homolog 3 (avian) (pseudogene) pseudo MYCL3 v-myc myelocytomatosis viral oncogene homolog 3 (avian) (pseudogene) O - 20121230 -9606 9965 FGF19 UNQ334/PRO533 - HGNC:3675|MIM:603891|Ensembl:ENSG00000162344|HPRD:04868|Vega:OTTHUMG00000167886 11 11q13.1 fibroblast growth factor 19 protein-coding FGF19 fibroblast growth factor 19 O FGF-19 20121230 -9606 9966 TNFSF15 - TL1|TL1A|VEGI|VEGI192A HGNC:11931|MIM:604052|Ensembl:ENSG00000181634|HPRD:04956|Vega:OTTHUMG00000021011 9 9q32 tumor necrosis factor (ligand) superfamily, member 15 protein-coding TNFSF15 tumor necrosis factor (ligand) superfamily, member 15 O TNF ligand-related molecule 1|TNF superfamily ligand TL1A|tumor necrosis factor ligand superfamily member 15|vascular endothelial cell growth inhibitor|vascular endothelial growth inhibitor-192A 20121230 -9606 9967 THRAP3 - TRAP150 HGNC:22964|MIM:603809|Ensembl:ENSG00000054118|HPRD:07543|Vega:OTTHUMG00000007866 1 1p34.3 thyroid hormone receptor associated protein 3 protein-coding THRAP3 thyroid hormone receptor associated protein 3 O thyroid hormone receptor-associated protein 3|thyroid hormone receptor-associated protein complex 150 kDa component|thyroid hormone receptor-associated protein, 150 kDa subunit 20121230 -9606 9968 MED12 - ARC240|CAGH45|FGS1|HOPA|MED12S|OKS|OPA1|TNRC11|TRAP230 HGNC:11957|MIM:300188|Ensembl:ENSG00000184634|HPRD:02176|Vega:OTTHUMG00000021788 X Xq13 mediator complex subunit 12 protein-coding MED12 mediator complex subunit 12 O CAG repeat protein 45|OPA-containing protein|activator-recruited cofactor 240 kDa component|human opposite paired|mediator of RNA polymerase II transcription subunit 12|mediator of RNA polymerase II transcription, subunit 12 homolog|putative mediator subunit 12|thyroid hormone receptor-associated protein complex 230 kDa component|thyroid hormone receptor-associated protein, 230 kDa subunit|trinucleotide repeat containing 11 (THR-associated protein, 230 kDa subunit)|trinucleotide repeat-containing gene 11 protein 20121230 -9606 9969 MED13 - ARC250|DRIP250|HSPC221|THRAP1|TRAP240 HGNC:22474|MIM:603808|Ensembl:ENSG00000108510|HPRD:07229|Vega:OTTHUMG00000179251 17 17q22-q23 mediator complex subunit 13 protein-coding MED13 mediator complex subunit 13 O activator-recruited cofactor 250 kDa component|mediator of RNA polymerase II transcription subunit 13|mediator of RNA polymerase II transcription, subunit 13 homolog|thyroid hormone receptor associated protein 1|thyroid hormone receptor-associated protein 1|thyroid hormone receptor-associated protein complex 240 kDa component|thyroid hormone receptor-associated protein complex component TRAP240|thyroid hormone receptor-associated protein, 240 kDa subunit|vitamin D3 receptor-interacting protein complex component DRIP250 20121230 -9606 9970 NR1I3 - CAR|CAR1|MB67 HGNC:7969|MIM:603881|Ensembl:ENSG00000143257|HPRD:04858|Vega:OTTHUMG00000034347 1 1q23.3 nuclear receptor subfamily 1, group I, member 3 protein-coding NR1I3 nuclear receptor subfamily 1, group I, member 3 O constitutive activator of retinoid response|constitutive active receptor|constitutive active response|constitutive androstane nuclear receptor variant 2|constitutive androstane nuclear receptor variant 3|constitutive androstane nuclear receptor variant 4|constitutive androstane nuclear receptor variant 5|constitutive androstane receptor|nuclear receptor subfamily 1 group I member 3|orphan nuclear hormone receptor|orphan nuclear receptor MB67 20121230 -9606 9971 NR1H4 - BAR|FXR|HRR-1|HRR1|RIP14 HGNC:7967|MIM:603826|Ensembl:ENSG00000012504|HPRD:04827|Vega:OTTHUMG00000170359 12 12q23.1 nuclear receptor subfamily 1, group H, member 4 protein-coding NR1H4 nuclear receptor subfamily 1, group H, member 4 O RXR-interacting protein 14|bile acid receptor|farnesoid X nuclear receptor|farnesoid X-activated receptor|farnesol receptor HRR-1|retinoid X receptor-interacting protein 14 20121230 -9606 9972 NUP153 - HNUP153|N153 HGNC:8062|MIM:603948|Ensembl:ENSG00000124789|HPRD:04899|Vega:OTTHUMG00000014312 6 6p22.3 nucleoporin 153kDa protein-coding NUP153 nucleoporin 153kDa O 153 kDa nucleoporin|nuclear pore complex protein Nup153|nuclear pore complex protein hnup153|nucleoporin Nup153 20121230 -9606 9973 CCS - - HGNC:1613|MIM:603864|Ensembl:ENSG00000173992|HPRD:04841|Vega:OTTHUMG00000167238 11 11q13 copper chaperone for superoxide dismutase protein-coding CCS copper chaperone for superoxide dismutase O superoxide dismutase copper chaperone 20121230 -9606 9975 NR1D2 - BD73|EAR-1R|RVR HGNC:7963|MIM:602304|Ensembl:ENSG00000174738|HPRD:03809|Vega:OTTHUMG00000155659 3 3p24.2 nuclear receptor subfamily 1, group D, member 2 protein-coding NR1D2 nuclear receptor subfamily 1, group D, member 2 O V-erbA-related protein 1-related|nuclear receptor Rev-ErbA beta variant 1|nuclear receptor Rev-ErbA beta variant 2|nuclear receptor subfamily 1 group D member 2|orphan nuclear hormone receptor BD73|rev-erb-beta|rev-erba-alpha-related receptor 20121230 -9606 9976 CLEC2B - AICL|CLECSF2|HP10085|IFNRG1 HGNC:2053|MIM:603242|Ensembl:ENSG00000110852|HPRD:09129|Vega:OTTHUMG00000168483 12 12p13-p12 C-type lectin domain family 2, member B protein-coding CLEC2B C-type lectin domain family 2, member B O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 2 (activation-induced)|C-type lectin domain family 2 member B|C-type lectin superfamily member 2|IFN-alpha-2b-inducing-related protein 1|IFN-alpha2b-inducing related protein 1|activation-induced C-type lectin 20121230 -9606 9978 RBX1 RP11-554C12.1 BA554C12.1|RNF75|ROC1 HGNC:9928|MIM:603814|Ensembl:ENSG00000100387|HPRD:06794|Vega:OTTHUMG00000151298 22 22q13.2 ring-box 1, E3 ubiquitin protein ligase protein-coding RBX1 ring-box 1, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase RBX1|RING box protein 1|RING finger protein 75|RING-box protein 1|ZYP protein|regulator of cullins 1 20121230 -9606 9980 DOPEY2 - 21orf5|C21orf5 HGNC:1291|MIM:604803|Ensembl:ENSG00000142197|HPRD:07271|Vega:OTTHUMG00000086619 21 21q22.2 dopey family member 2 protein-coding DOPEY2 dopey family member 2 O homolog of yeast DOP1|protein dopey-2 20121230 -9606 9982 FGFBP1 - FGF-BP|FGF-BP1|FGFBP|FGFBP-1|HBP17 HGNC:19695|MIM:607737|Ensembl:ENSG00000137440|HPRD:06371|Vega:OTTHUMG00000097745 4 4p15.32 fibroblast growth factor binding protein 1 protein-coding FGFBP1 fibroblast growth factor binding protein 1 O 17 kDa HBGF-binding protein|17 kDa heparin-binding growth factor-binding protein|FGF-binding protein 1|fibroblast growth factor-binding protein 1|heparin-binding growth factor binding protein 20121230 -9606 9984 THOC1 - HPR1|P84|P84N5 HGNC:19070|MIM:606930|Ensembl:ENSG00000079134|HPRD:09498|Vega:OTTHUMG00000178051 18 18p11.32 THO complex 1 protein-coding THOC1 THO complex 1 O THO complex subunit 1|hTREX84|nuclear matrix protein p84|tho1 20121230 -9606 9985 REC8 - HR21spB|REC8L1|Rec8p HGNC:16879|MIM:608193|Ensembl:ENSG00000100918|HPRD:09739|Vega:OTTHUMG00000171916 14 14q11.2-q12 REC8 homolog (yeast) protein-coding REC8 REC8 homolog (yeast) O REC8-like 1|cohesin Rec8p|cohesion rec8p|human homolog of rad21, S. pombe|meiotic recombination and sister chromatid cohesion phosphoprotein of the rad21p family|meiotic recombination protein REC8 homolog|meiotic recombination protein REC8-like 1|recombination and sister chromatid cohesion protein homolog 20121230 -9606 9986 RCE1 - FACE2|RCE1A|RCE1B HGNC:13721|MIM:605385|Ensembl:ENSG00000173653|HPRD:07289|Vega:OTTHUMG00000167098 11 11q13 RCE1 homolog, prenyl protein protease (S. cerevisiae) protein-coding RCE1 RCE1 homolog, prenyl protein protease (S. cerevisiae) O CAAX prenyl protease 2|RCE1 homolog, prenyl protein peptidase|farnesylated protein-converting enzyme 2|farnesylated proteins-converting enzyme 2|prenyl protein-specific endoprotease 2 20121230 -9606 9987 HNRPDL - HNRNP|JKTBP|JKTBP2|laAUF1 HGNC:5037|MIM:607137|Ensembl:ENSG00000152795|HPRD:06185|Vega:OTTHUMG00000130299 4 4q21.22 heterogeneous nuclear ribonucleoprotein D-like protein-coding HNRPDL heterogeneous nuclear ribonucleoprotein D-like O A+U-rich element RNA binding factor|AU-rich element RNA-binding factor|JKT41-binding protein|hnRNP D-like|hnRNP DL|protein laAUF1 20121230 -9606 9988 DMTF1 - DMP1|DMTF|hDMP1 HGNC:14603|MIM:608491|Ensembl:ENSG00000135164|HPRD:09770|Vega:OTTHUMG00000154135 7 7q21 cyclin D binding myb-like transcription factor 1 protein-coding DMTF1 cyclin D binding myb-like transcription factor 1 O cyclin D-binding Myb-like protein|cyclin-D-binding Myb-like transcription factor 1|cyclin-D-interacting Myb-like protein 1|hDMTF1 20121230 -9606 9989 PPP4R1 - MEG1|PP4(Rmeg)|PP4R1 HGNC:9320|MIM:604908|Ensembl:ENSG00000154845|Vega:OTTHUMG00000137466 18 18p11.22 protein phosphatase 4, regulatory subunit 1 protein-coding PPP4R1 protein phosphatase 4, regulatory subunit 1 O serine/threonine phosphatase 4|serine/threonine-protein phosphatase 4 regulatory subunit 1 20121230 -9606 9990 SLC12A6 - ACCPN|KCC3|KCC3A|KCC3B HGNC:10914|MIM:604878|Ensembl:ENSG00000140199|HPRD:09220|Vega:OTTHUMG00000129441 15 15q13 solute carrier family 12 (potassium/chloride transporters), member 6 protein-coding SLC12A6 solute carrier family 12 (potassium/chloride transporters), member 6 O K-Cl cotransporter 3|electroneutral potassium-chloride cotransporter 3|potassium chloride cotransporter 3|potassium chloride cotransporter KCC3a-S3|potassium-chloride transporter-3a|potassium-chloride transporter-3b|solute carrier family 12 member 6 20121230 -9606 9991 PTBP3 RP11-165N19.1 ROD1 HGNC:10253|MIM:607527|Ensembl:ENSG00000119314|HPRD:09603|Vega:OTTHUMG00000020503 9 9q32 polypyrimidine tract binding protein 3 protein-coding PTBP3 polypyrimidine tract binding protein 3 O ROD1 regulator of differentiation 1|fission yeast differentiation regulator|polypyrimidine tract-binding protein 3|regulator of differentiation 1 20121230 -9606 9992 KCNE2 - ATFB4|LQT5|LQT6|MIRP1 HGNC:6242|MIM:603796|Ensembl:ENSG00000159197|HPRD:04813|Vega:OTTHUMG00000086189 21 21q22.12 potassium voltage-gated channel, Isk-related family, member 2 protein-coding KCNE2 potassium voltage-gated channel, Isk-related family, member 2 O cardiac voltage-gated potassium channel accessory subunit 2|minK-related peptide 1|minK-related peptide-1|minimum potassium ion channel-related peptide 1|potassium channel subunit beta MiRP1|potassium channel subunit, MiRP1|potassium voltage-gated channel subfamily E member 2|voltage-gated K+ channel subunit MIRP1 20121230 -9606 9993 DGCR2 - DGS-C|IDD|LAN|SEZ-12 HGNC:2845|MIM:600594|Ensembl:ENSG00000070413|HPRD:08999|Vega:OTTHUMG00000150141 22 22q11.21 DiGeorge syndrome critical region gene 2 protein-coding DGCR2 DiGeorge syndrome critical region gene 2 O DiGeorge syndrome critical region protein 2|integral membrane protein DGCR2/IDD|integral membrane protein deleted in DiGeorge syndrome 20121230 -9606 9994 CASP8AP2 RP11-63K6.3 CED-4|FLASH|RIP25 HGNC:1510|MIM:606880|HPRD:06048 6 6q15 caspase 8 associated protein 2 protein-coding CASP8AP2 caspase 8 associated protein 2 O CASP8 associated protein 2|CASP8-associated protein 2|FLASH homolog RIP25|FLICE associated huge|FLICE-associated huge protein|human FLASH 20121230 -9606 9995 ELK2BP - ELK2.2|ELK2P2 HGNC:3324 14 14q32.33 ELK2B, member of ETS oncogene family, pseudogene pseudo ELK2BP ELK2B, member of ETS oncogene family, pseudogene O - 20121230 -9606 9997 SCO2 - SCO1L HGNC:10604|MIM:604272|Ensembl:ENSG00000130489|HPRD:05042|Vega:OTTHUMG00000150251 22 22q13.33 SCO2 cytochrome c oxidase assembly protein protein-coding SCO2 SCO2 cytochrome c oxidase assembly protein O SCO cytochrome oxidase deficient homolog 2|cytochrome oxidase deficient homolog 2|protein SCO2 homolog, mitochondrial 20121230 -9606 10000 AKT3 - MPPH|PKB-GAMMA|PKBG|PRKBG|RAC-PK-gamma|RAC-gamma|STK-2 HGNC:393|MIM:611223|Ensembl:ENSG00000117020|HPRD:06441|Vega:OTTHUMG00000039994 1 1q44 v-akt murine thymoma viral oncogene homolog 3 (protein kinase B, gamma) protein-coding AKT3 v-akt murine thymoma viral oncogene homolog 3 (protein kinase B, gamma) O PKB gamma|RAC-gamma serine/threonine protein kinase|RAC-gamma serine/threonine-protein kinase 20121230 -9606 10001 MED6 - NY-REN-28 HGNC:19970|MIM:602984|Ensembl:ENSG00000133997|HPRD:04284|Vega:OTTHUMG00000171252 14 14q24.2 mediator complex subunit 6 protein-coding MED6 mediator complex subunit 6 O ARC33|activator-recruited cofactor 33 kDa component|hMed6|mediator of RNA polymerase II transcription subunit 6|mediator of RNA polymerase II transcription, subunit 6 homolog|renal carcinoma antigen NY-REN-28 20121230 -9606 10002 NR2E3 - ESCS|PNR|RNR|RP37|rd7 HGNC:7974|MIM:604485|HPRD:05132 15 15q22.32 nuclear receptor subfamily 2, group E, member 3 protein-coding NR2E3 nuclear receptor subfamily 2, group E, member 3 O photoreceptor cell-specific nuclear receptor variant 1|photoreceptor-specific nuclear receptor|retina-specific nuclear receptor 20121230 -9606 10003 NAALAD2 - GCPIII|GPCIII|NAADALASE2|NAALADASE2 HGNC:14526|MIM:611636|Ensembl:ENSG00000077616|HPRD:07494|Vega:OTTHUMG00000166368 11 11q14.3-q21 N-acetylated alpha-linked acidic dipeptidase 2 protein-coding NAALAD2 N-acetylated alpha-linked acidic dipeptidase 2 O N-acetylated alpha-linked acidic dipeptidase II|N-acetylated-alpha-linked acidic dipeptidase 2|N-acetylated-alpha-linked acidic dipeptidase II|NAALADase II|glutamate carboxypeptidase III 20121230 -9606 10004 NAALADL1 - I100|NAALADASEL HGNC:23536|MIM:602640|Ensembl:ENSG00000168060|HPRD:07212|Vega:OTTHUMG00000165595 11 11q12 N-acetylated alpha-linked acidic dipeptidase-like 1 protein-coding NAALADL1 N-acetylated alpha-linked acidic dipeptidase-like 1 O 100 kDa ileum brush border membrane protein|N-acetylated-alpha-linked acidic dipeptidase-like protein|NAALADase L|ileal dipeptidylpeptidase|ileal peptidase I100 20121230 -9606 10005 ACOT8 RP3-337O18.2 HNAACTE|PTE-1|PTE-2|PTE1|PTE2|hACTE-III|hTE HGNC:15919|MIM:608123|Ensembl:ENSG00000101473|HPRD:06998|Vega:OTTHUMG00000033045 20 20q13.12 acyl-CoA thioesterase 8 protein-coding ACOT8 acyl-CoA thioesterase 8 O HIV-Nef associated acyl-CoA thioesterase|acyl-coenzyme A thioesterase 8|choloyl-CoA hydrolase|choloyl-coenzyme A thioesterase|long-chain fatty-acyl-CoA hydrolase|palmitoyl-CoA hydrolase|peroxisomal acyl-CoA thioesterase 1|peroxisomal acyl-coenzyme A thioester hydrolase 1|peroxisomal long-chain acyl-CoA thioesterase 1|thioesterase II|thioesterase III 20121230 -9606 10006 ABI1 RP13-16H11.4 ABI-1|ABLBP4|E3B1|NAP1BP|SSH3BP|SSH3BP1 HGNC:11320|MIM:603050|Ensembl:ENSG00000136754|HPRD:04336|Vega:OTTHUMG00000017848 10 10p11.2 abl-interactor 1 protein-coding ABI1 abl-interactor 1 O Abelson interactor 1|Abl-interactor protein 1 long|abl interactor 1|abl-binding protein 4|eps8 SH3 domain-binding protein|interactor protein AblBP4|nap1 binding protein|spectrin SH3 domain-binding protein 1 20121230 -9606 10007 GNPDA1 - GNP1|GNPDA|GNPI|GPI|HLN HGNC:4417|MIM:601798|Ensembl:ENSG00000113552|HPRD:09048|Vega:OTTHUMG00000129657 5 5q21 glucosamine-6-phosphate deaminase 1 protein-coding GNPDA1 glucosamine-6-phosphate deaminase 1 O GNPDA 1|glcN6P deaminase 1|glucosamine-6-phosphate isomerase 1|oscillin 20121230 -9606 10008 KCNE3 - HOKPP|HYPP|MiRP2 HGNC:6243|MIM:604433|Ensembl:ENSG00000175538|HPRD:07256|Vega:OTTHUMG00000165641 11 11q13.4 potassium voltage-gated channel, Isk-related family, member 3 protein-coding KCNE3 potassium voltage-gated channel, Isk-related family, member 3 O cardiac voltage-gated potassium channel accessory subunit|minK-related peptide 2|minimum potassium ion channel-related peptide 2|potassium channel subunit beta MiRP2|potassium voltage-gated channel subfamily E member 3|voltage-gated K+ channel subunit MIRP2 20121230 -9606 10009 ZBTB33 - ZNF-kaiso|ZNF348 HGNC:16682|MIM:300329|Ensembl:ENSG00000177485|HPRD:02269|Vega:OTTHUMG00000171159 X Xq23 zinc finger and BTB domain containing 33 protein-coding ZBTB33 zinc finger and BTB domain containing 33 O WUGSC:H_DJ525N14.1|kaiso transcription factor|transcriptional regulator Kaiso|zinc finger and BTB domain-containing protein 33 20121230 -9606 10010 TANK - I-TRAF|TRAF2 HGNC:11562|MIM:603893|Ensembl:ENSG00000136560|HPRD:04870|Vega:OTTHUMG00000132037 2 2q24-q31 TRAF family member-associated NFKB activator protein-coding TANK TRAF family member-associated NFKB activator O TRAF family member-associated NF-kappa-B activator|TRAF-interacting protein 20121230 -9606 10011 SRA1 PP7684 SRA|SRAP|STRAA1|pp7684 HGNC:11281|MIM:603819|Ensembl:ENSG00000213523|HPRD:18716|Vega:OTTHUMG00000163569 5 5q31.3 steroid receptor RNA activator 1 protein-coding SRA1 steroid receptor RNA activator 1 O steroid receptor RNA activator 1 (complexes with NCOA1)|steroid receptor RNA activator protein|steroid receptor coactivator 20121230 -9606 10013 HDAC6 JM21 HD6 HGNC:14064|MIM:300272|Ensembl:ENSG00000094631|HPRD:02228|Vega:OTTHUMG00000034496 X Xp11.23 histone deacetylase 6 protein-coding HDAC6 histone deacetylase 6 O - 20121230 -9606 10014 HDAC5 - HD5|NY-CO-9 HGNC:14068|MIM:605315|Ensembl:ENSG00000108840|HPRD:09246|Vega:OTTHUMG00000181806 17 17q21 histone deacetylase 5 protein-coding HDAC5 histone deacetylase 5 O antigen NY-CO-9 20121230 -9606 10015 PDCD6IP - AIP1|ALIX|DRIP4|HP95 HGNC:8766|MIM:608074|Ensembl:ENSG00000170248|HPRD:06425|Vega:OTTHUMG00000130751 3 3p22.3 programmed cell death 6 interacting protein protein-coding PDCD6IP programmed cell death 6 interacting protein O ALG-2 interacting protein 1|PDCD6-interacting protein|apoptosis-linked gene 2-interacting protein X|dopamine receptor interacting protein 4|programmed cell death 6-interacting protein 20121230 -9606 10016 PDCD6 - ALG-2|PEF1B HGNC:8765|MIM:601057|Ensembl:ENSG00000249915|HPRD:03035|Vega:OTTHUMG00000090283 5 5p15.33 programmed cell death 6 protein-coding PDCD6 programmed cell death 6 O apoptosis-linked gene 2 protein|probable calcium-binding protein ALG-2|programmed cell death protein 6 20121230 -9606 10017 BCL2L10 - BCL-B|Boo|Diva HGNC:993|MIM:606910|Ensembl:ENSG00000137875|HPRD:06071|Vega:OTTHUMG00000131893 15 15q21 BCL2-like 10 (apoptosis facilitator) protein-coding BCL2L10 BCL2-like 10 (apoptosis facilitator) O anti-apoptotic protein NrH|apoptosis regulator Bcl-B|bcl-2-like protein 10|bcl2-L-10 20121230 -9606 10018 BCL2L11 - BAM|BIM|BOD HGNC:994|MIM:603827|Ensembl:ENSG00000153094|HPRD:04828|Vega:OTTHUMG00000131256 2 2q13 BCL2-like 11 (apoptosis facilitator) protein-coding BCL2L11 BCL2-like 11 (apoptosis facilitator) O bcl-2 interacting mediator of cell death|bcl-2 interacting protein Bim|bcl-2-like protein 11|bcl-2-related ovarian death agonist|bcl2-L-11 20121230 -9606 10019 SH2B3 - IDDM20|LNK HGNC:29605|MIM:605093|Ensembl:ENSG00000111252|HPRD:05480|Vega:OTTHUMG00000169550 12 12q24 SH2B adaptor protein 3 protein-coding SH2B3 SH2B adaptor protein 3 O SH2B adapter protein 3|lymphocyte-specific adapter protein Lnk|signal transduction protein Lnk 20121230 -9606 10020 GNE - DMRV|GLCNE|IBM2|NM|Uae1 HGNC:23657|MIM:603824|Ensembl:ENSG00000159921|HPRD:04825|Vega:OTTHUMG00000019899 9 9p13.3 glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase protein-coding GNE glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase O N-acylmannosamine kinase|UDP-GlcNAc-2-epimerase/ManAc kinase|UDP-N-acetylglucosamine 2-epimerase/N-acetylmannosamine kinase|UDP-N-acetylglucosamine-2-epimerase/N-acetylmannosamine kinase|bifunctional UDP-N-acetylglucosamine 2-epimerase/N-acetylmannosamine kinase 20121230 -9606 10021 HCN4 - SSS2 HGNC:16882|MIM:605206|Ensembl:ENSG00000138622|HPRD:09240|Vega:OTTHUMG00000137563 15 15q24.1 hyperpolarization activated cyclic nucleotide-gated potassium channel 4 protein-coding HCN4 hyperpolarization activated cyclic nucleotide-gated potassium channel 4 O hyperpolarization activated cyclic nucleotide-gated cation channel 4|potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 4 20121230 -9606 10022 INSL5 UNQ156/PRO182 PRO182|UNQ156 HGNC:6088|MIM:606413|Ensembl:ENSG00000172410|HPRD:08400|Vega:OTTHUMG00000009164 1 1p31.3 insulin-like 5 protein-coding INSL5 insulin-like 5 O insulin-like peptide 5|insulin-like peptide INSL5 20121230 -9606 10023 FRAT1 RP11-452K12.1 - HGNC:3944|MIM:602503|Ensembl:ENSG00000165879|HPRD:03935|Vega:OTTHUMG00000018848 10 10q24.1 frequently rearranged in advanced T-cell lymphomas protein-coding FRAT1 frequently rearranged in advanced T-cell lymphomas O FRAT-1|frequently rearranged in advanced T-cell lymphomas 1|proto-oncogene FRAT1 20121230 -9606 10024 TROAP - TASTIN HGNC:12327|MIM:603872|Ensembl:ENSG00000135451|HPRD:04849|Vega:OTTHUMG00000169486 12 12q13.12 trophinin associated protein protein-coding TROAP trophinin associated protein O tastin|trophinin assisting protein|trophinin-assisting protein (tastin)|trophinin-associated protein 20121230 -9606 10025 MED16 - DRIP92|THRAP5|TRAP95 HGNC:17556|MIM:604062|Ensembl:ENSG00000175221|HPRD:06816|Vega:OTTHUMG00000181841 19 19p13.3 mediator complex subunit 16 protein-coding MED16 mediator complex subunit 16 O mediator of RNA polymerase II transcription subunit 16|thyroid hormone receptor-associated protein 5|thyroid hormone receptor-associated protein complex 95 kDa component|thyroid hormone receptor-associated protein, 95-kD subunit|vitamin D3 receptor-interacting protein complex 92 kDa component 20121230 -9606 10026 PIGK RP4-564M11.1 GPI8 HGNC:8965|MIM:605087|Ensembl:ENSG00000142892|HPRD:05474|Vega:OTTHUMG00000009686 1 1p31.1 phosphatidylinositol glycan anchor biosynthesis, class K protein-coding PIGK phosphatidylinositol glycan anchor biosynthesis, class K O GPI transamidase subunit|GPI-anchor transamidase|GPI8 homolog|PIG-K|phosphatidylinositol glycan, class K|phosphatidylinositol-glycan biosynthesis class K protein 20121230 -9606 10029 CASKP1 - CASKP HGNC:1498 Y Yq11 calcium/calmodulin-dependent serine protein kinase (MAGUK family) pseudogene 1 pseudo CASKP1 calcium/calmodulin-dependent serine protein kinase (MAGUK family) pseudogene 1 O - 20121230 -9606 10031 SHROOM2P1 - APXLP HGNC:631 Y Yq11.21 shroom family member 2 pseudogene 1 pseudo SHROOM2P1 shroom family member 2 pseudogene 1 O - 20121230 -9606 10033 ARSEP1 - ARSEP HGNC:720 Y Yq11.21 arylsulfatase E pseudogene 1 pseudo ARSEP1 arylsulfatase E pseudogene 1 O - 20121230 -9606 10034 ARSDP1 - ARSDP|ARSDY1 HGNC:718 Y Yq11.21 arylsulfatase D pseudogene 1 pseudo ARSDP1 arylsulfatase D pseudogene 1 O - 20121230 -9606 10036 CHAF1A - CAF-1|CAF1|CAF1B|CAF1P150|P150 HGNC:1910|MIM:601246|Ensembl:ENSG00000167670|HPRD:03148|Vega:OTTHUMG00000181922 19 19p13.3 chromatin assembly factor 1, subunit A (p150) protein-coding CHAF1A chromatin assembly factor 1, subunit A (p150) O CAF-1 subunit A|CAF-I 150 kDa subunit|CAF-I p150|chromatin assembly factor 1 subunit A|chromatin assembly factor I (150 kDa)|chromatin assembly factor I p150 subunit|hp150 20121230 -9606 10038 PARP2 - ADPRT2|ADPRTL2|ADPRTL3|ARTD2|PARP-2|pADPRT-2 HGNC:272|MIM:607725|Ensembl:ENSG00000129484|Vega:OTTHUMG00000166106 14 14q11.2-q12 poly (ADP-ribose) polymerase 2 protein-coding PARP2 poly (ADP-ribose) polymerase 2 O ADP-ribosyltransferase (NAD+; poly(ADP-ribose) polymerase)-like 2|ADP-ribosyltransferase diphtheria toxin-like 2|ADPRT-2|NAD(+) ADP-ribosyltransferase 2|hPARP-2|poly (ADP-ribose) polymerase family, member 2|poly (ADP-ribosyl) transferase-like 2|poly [ADP-ribose] polymerase 2|poly(ADP-ribose) synthetase|poly[ADP-ribose] synthase 2|poly[ADP-ribose] synthetase 2 20121230 -9606 10039 PARP3 - ADPRT3|ADPRTL2|ADPRTL3|ARTD3|IRT1|PADPRT-3 HGNC:273|MIM:607726|Ensembl:ENSG00000041880|HPRD:06370|Vega:OTTHUMG00000156931 3 3p21.31-p21.1 poly (ADP-ribose) polymerase family, member 3 protein-coding PARP3 poly (ADP-ribose) polymerase family, member 3 O ADP-ribosyltransferase (NAD+; poly (ADP-ribose) polymerase)-like 2|ADP-ribosyltransferase (NAD+; poly (ADP-ribose) polymerase)-like 3|ADP-ribosyltransferase diphtheria toxin-like 3|ADPRT-3|NAD(+) ADP-ribosyltransferase 3|NAD+ ADP-ribosyltransferase 3|poly [ADP-ribose] polymerase 3|poly(ADP-ribose) synthetase-3|poly[ADP-ribose] synthase 3|poly[ADP-ribose] synthetase 3 20121230 -9606 10040 TOM1L1 - OK/KNS-CL.3|SRCASM HGNC:11983|MIM:604701|Ensembl:ENSG00000141198|HPRD:05266|Vega:OTTHUMG00000177816 17 17q23.2 target of myb1 (chicken)-like 1 protein-coding TOM1L1 target of myb1 (chicken)-like 1 O Src activating and signaling molecule|TOM1-like protein 1|src-activating and signaling molecule protein|target of Myb-like protein 1|target of myb 1-like 1|target of myb1-like 1 20121230 -9606 10042 HMGXB4 RP3-510H16.1 HMG2L1|HMGBCG|THC211630 HGNC:5003|MIM:604702|Ensembl:ENSG00000100281|HPRD:05267|Vega:OTTHUMG00000150439 22 22q13.1 HMG box domain containing 4 protein-coding HMGXB4 HMG box domain containing 4 O HMG box-containing protein 4|HMG domain-containing protein 4|high mobility group protein 2-like 1|high-mobility group protein 2-like 1 20121230 -9606 10043 TOM1 CTA-286B10.4 - HGNC:11982|MIM:604700|Ensembl:ENSG00000100284|HPRD:05265|Vega:OTTHUMG00000150958 22 22q13.1 target of myb1 (chicken) protein-coding TOM1 target of myb1 (chicken) O target of Myb protein 1|target of myb 1 20121230 -9606 10044 SH2D3C RP11-56D16.1 CHAT|NSP3|PRO34088 HGNC:16884|MIM:604722|Ensembl:ENSG00000095370|HPRD:05284|Vega:OTTHUMG00000020717 9 9q34.11 SH2 domain containing 3C protein-coding SH2D3C SH2 domain containing 3C O SH2 domain-containing protein 3C|novel SH2-containing protein 3 20121230 -9606 10045 SH2D3A UNQ175/PRO201 NSP1 HGNC:16885|MIM:604721|Ensembl:ENSG00000125731|HPRD:05283 19 19p13.3 SH2 domain containing 3A protein-coding SH2D3A SH2 domain containing 3A O SH2 domain-containing 3A|SH2 domain-containing protein 3A|novel SH2-containing protein 1 20121230 -9606 10046 MAMLD1 - CG1|CXorf6|F18|HYSP2 HGNC:2568|MIM:300120|Ensembl:ENSG00000013619|HPRD:02126|Vega:OTTHUMG00000024157 X Xq28 mastermind-like domain containing 1 protein-coding MAMLD1 mastermind-like domain containing 1 O mastermind-like domain-containing protein 1 20121230 -9606 10047 CST8 RP3-333B15.3 CRES|CTES5 HGNC:2480|MIM:608683|Ensembl:ENSG00000125815|HPRD:16366|Vega:OTTHUMG00000032071 20 20p11.21 cystatin 8 (cystatin-related epididymal specific) protein-coding CST8 cystatin 8 (cystatin-related epididymal specific) O cystatin-8|cystatin-related epididymal spermatogenic protein|cystatin-related epididymal-specific 20121230 -9606 10048 RANBP9 - BPM-L|BPM90|RANBPM|RanBP7 HGNC:13727|MIM:603854|Ensembl:ENSG00000010017|HPRD:04835|Vega:OTTHUMG00000015642 6 6p23 RAN binding protein 9 protein-coding RANBP9 RAN binding protein 9 O Ran Binding Protein in the Microtubule organizing center|novel centrosomal protein RanBPM|ran binding protein, centrosomal|ran-binding protein 9|ran-binding protein M 20121230 -9606 10049 DNAJB6 tcag7.555 DJ4|DnaJ|HHDJ1|HSJ-2|HSJ2|LGMD1E|MRJ|MSJ-1 HGNC:14888|MIM:611332|Ensembl:ENSG00000105993|HPRD:07107|Vega:OTTHUMG00000157242 7 7q36.3 DnaJ (Hsp40) homolog, subfamily B, member 6 protein-coding DNAJB6 DnaJ (Hsp40) homolog, subfamily B, member 6 O DnaJ-like 2 protein|dnaJ homolog subfamily B member 6|heat shock protein J2 20121230 -9606 10050 SLC17A4 - KAIA2138 HGNC:10932|MIM:604216|Ensembl:ENSG00000146039|HPRD:05022|Vega:OTTHUMG00000014410 6 6p22.2 solute carrier family 17 (sodium phosphate), member 4 protein-coding SLC17A4 solute carrier family 17 (sodium phosphate), member 4 O Na/PO4 cotransporter|putative small intestine sodium-dependent phosphate transport protein|solute carrier family 17 member 4 20121230 -9606 10051 SMC4 - CAP-C|CAPC|SMC-4|SMC4L1|hCAP-C HGNC:14013|MIM:605575|Ensembl:ENSG00000113810|HPRD:09276|Vega:OTTHUMG00000159006 3 3q26.1 structural maintenance of chromosomes 4 protein-coding SMC4 structural maintenance of chromosomes 4 O SMC protein 4|SMC4 structural maintenance of chromosomes 4-like 1|XCAP-C homolog|chromosome-associated polypeptide C|structural maintenance of chromosomes protein 4 20121230 -9606 10052 GJC1 - CX45|GJA7 HGNC:4280|MIM:608655|Ensembl:ENSG00000182963|HPRD:08819|Vega:OTTHUMG00000179861 17 17q21.31 gap junction protein, gamma 1, 45kDa protein-coding GJC1 gap junction protein, gamma 1, 45kDa O connexin 45|connexin-45|gap junction alpha-7 protein|gap junction gamma-1 protein 20121230 -9606 10053 AP1M2 - AP1-mu2|HSMU1B|MU-1B|MU1B|mu2 HGNC:558|MIM:607309|Ensembl:ENSG00000129354|HPRD:06296|Vega:OTTHUMG00000180584 19 19p13.2 adaptor-related protein complex 1, mu 2 subunit protein-coding AP1M2 adaptor-related protein complex 1, mu 2 subunit O AP-1 complex subunit mu-2|AP-mu chain family member mu1B|HA1 47 kDa subunit 2|adaptor protein complex AP-1 mu-2 subunit|adaptor-related protein complex 1 mu-2 subunit|clathrin assembly protein complex 1 medium chain 2|clathrin coat assembly protein AP47 2|clathrin coat associated protein AP47 2|clathrin-associated adaptor medium chain mu2|golgi adaptor AP-1 47 kDa protein|golgi adaptor HA1/AP1 adaptin mu-2 subunit|mu-adaptin 2|mu1B-adaptin 20121230 -9606 10054 UBA2 HRIHFB2115 ARX|SAE2 HGNC:30661|MIM:613295|Ensembl:ENSG00000126261|HPRD:11658|Vega:OTTHUMG00000182090 19 19q12 ubiquitin-like modifier activating enzyme 2 protein-coding UBA2 ubiquitin-like modifier activating enzyme 2 O SUMO-1 activating enzyme subunit 2|SUMO-activating enzyme subunit 2|SUMO1 activating enzyme subunit 2|UBA2, ubiquitin-activating enzyme E1 homolog|anthracycline-associated resistance ARX|ubiquitin-like 1-activating enzyme E1B 20121230 -9606 10055 SAE1 - AOS1|HSPC140|SUA1|UBLE1A HGNC:30660|MIM:613294|Ensembl:ENSG00000142230|HPRD:18010 19 19q13.32 SUMO1 activating enzyme subunit 1 protein-coding SAE1 SUMO1 activating enzyme subunit 1 O SUMO-1 activating enzyme E1 N subunit|SUMO-1 activating enzyme subunit 1|SUMO-activating enzyme subunit 1|activator of SUMO1|sentrin/SUMO-activating protein AOS1|ubiquitin-like 1-activating enzyme E1A|ubiquitin-like protein SUMO-1 activating enzyme 20121230 -9606 10056 FARSB HSPC173 FARSLB|FRSB|PheHB|PheRS HGNC:17800|MIM:609690|Ensembl:ENSG00000116120|HPRD:09947|Vega:OTTHUMG00000133155 2 2q36.1 phenylalanyl-tRNA synthetase, beta subunit protein-coding FARSB phenylalanyl-tRNA synthetase, beta subunit O phenylalanine tRNA ligase 1, beta, cytoplasmic|phenylalanine--tRNA ligase beta chain|phenylalanine--tRNA ligase beta subunit|phenylalanine-tRNA ligase beta chain|phenylalanine-tRNA synthetase-like, beta subunit|phenylalanyl-tRNA synthetase beta chain|phenylalanyl-tRNA synthetase beta-subunit|phenylalanyl-tRNA synthetase-like, beta subunit 20121230 -9606 10057 ABCC5 - ABC33|EST277145|MOAT-C|MOATC|MRP5|SMRP|pABC11 HGNC:56|MIM:605251|Ensembl:ENSG00000114770|HPRD:06898|Vega:OTTHUMG00000156871 3 3q27 ATP-binding cassette, sub-family C (CFTR/MRP), member 5 protein-coding ABCC5 ATP-binding cassette, sub-family C (CFTR/MRP), member 5 O ATP-binding cassette sub-family C member 5|canalicular multispecific organic anion transporter C|multi-specific organic anion transporter C|multidrug resistance-associated protein 5 20121230 -9606 10058 ABCB6 - ABC|ABC14|LAN|MCOPCB7|MTABC3|PRP|umat HGNC:47|MIM:605452|Ensembl:ENSG00000115657|HPRD:09261|Vega:OTTHUMG00000133131 2 2q36 ATP-binding cassette, sub-family B (MDR/TAP), member 6 protein-coding ABCB6 ATP-binding cassette, sub-family B (MDR/TAP), member 6 O ATP-binding cassette half-transporter|ATP-binding cassette sub-family B member 6, mitochondrial|P-glycoprotein-related protein|mitochondrial ABC transporter 3|mt-ABC transporter 3|ubiquitously-expressed mammalian ABC half transporter 20121230 -9606 10059 DNM1L - DLP1|DRP1|DVLP|DYMPLE|DYNIV-11|EMPF|HDYNIV|VPS1 HGNC:2973|MIM:603850|Ensembl:ENSG00000087470|HPRD:04833|Vega:OTTHUMG00000169451 12 12p11.21 dynamin 1-like protein-coding DNM1L dynamin 1-like O Dnm1p/Vps1p-like protein|dynamin family member proline-rich carboxyl-terminal domain less|dynamin-1-like protein|dynamin-like protein 4|dynamin-like protein IV|dynamin-related protein 1 20121230 -9606 10060 ABCC9 - ABC37|ATFB12|CANTU|CMD1O|SUR2 HGNC:60|MIM:601439|Ensembl:ENSG00000069431|HPRD:03258|Vega:OTTHUMG00000169094 12 12p12.1 ATP-binding cassette, sub-family C (CFTR/MRP), member 9 protein-coding ABCC9 ATP-binding cassette, sub-family C (CFTR/MRP), member 9 O ATP-binding cassette sub-family C member 9|ATP-binding cassette transporter sub-family C member 9|sulfonylurea receptor 2 20121230 -9606 10061 ABCF2 HUSSY-18 ABC28|EST133090|HUSSY18|M-ABC1 HGNC:71|MIM:612510|Ensembl:ENSG00000033050|HPRD:12403|Vega:OTTHUMG00000154570 7 7q36 ATP-binding cassette, sub-family F (GCN20), member 2 protein-coding ABCF2 ATP-binding cassette, sub-family F (GCN20), member 2 O ABC-type transport protein|ATP-binding cassette sub-family F member 2|Iron inhibited ABC transporter 2|iron-inhibited ABC transporter 2 20121230 -9606 10062 NR1H3 - LXR-a|LXRA|RLD-1 HGNC:7966|MIM:602423|Ensembl:ENSG00000025434|HPRD:07211|Vega:OTTHUMG00000150628 11 11p11.2 nuclear receptor subfamily 1, group H, member 3 protein-coding NR1H3 nuclear receptor subfamily 1, group H, member 3 O liver X nuclear receptor alpha variant 1|oxysterols receptor LXR-alpha 20121230 -9606 10063 COX17 - - HGNC:2264|MIM:604813|Ensembl:ENSG00000138495|HPRD:05314|Vega:OTTHUMG00000159433 3 3q13.33 cytochrome c oxidase assembly homolog 17 (yeast) protein-coding COX17 cytochrome c oxidase assembly homolog 17 (yeast) O COX17 cytochrome c oxidase assembly homolog|cytochrome c oxidase copper chaperone|human homolog of yeast mitochondrial copper recruitment 20121230 -9606 10064 VDAC1P2 - VDAC1LP HGNC:12670 X Xp11.2 voltage-dependent anion channel 1 pseudogene 2 pseudo VDAC1P2 voltage-dependent anion channel 1 pseudogene 2 O - 20121230 -9606 10066 SCAMP2 - - HGNC:10564|MIM:606912|Ensembl:ENSG00000140497|HPRD:06073|Vega:OTTHUMG00000142817 15 15q23-q25 secretory carrier membrane protein 2 protein-coding SCAMP2 secretory carrier membrane protein 2 O secretory carrier-associated membrane protein 2 20121230 -9606 10067 SCAMP3 - C1orf3 HGNC:10565|MIM:606913|Ensembl:ENSG00000116521|HPRD:06074|Vega:OTTHUMG00000035874 1 1q21 secretory carrier membrane protein 3 protein-coding SCAMP3 secretory carrier membrane protein 3 O propin 1|secretory carrier-associated membrane protein 3 20121230 -9606 10068 IL18BP - IL18BPa HGNC:5987|MIM:604113|Ensembl:ENSG00000137496|HPRD:04984|Vega:OTTHUMG00000133713 11 11q13 interleukin 18 binding protein protein-coding IL18BP interleukin 18 binding protein O IL-18BP|MC51L-53L-54L homolog gene product|interleukin-18-binding protein|tadekinig-alfa 20121230 -9606 10069 RWDD2B GL011 C21orf6 HGNC:1302|Ensembl:ENSG00000156253|HPRD:10757|Vega:OTTHUMG00000078805 21 21q22.11 RWD domain containing 2B protein-coding RWDD2B RWD domain containing 2B O RWD domain-containing protein 2B 20121230 -9606 10071 MUC12 - MUC-11|MUC-12|MUC11 HGNC:7510|MIM:604609|Ensembl:ENSG00000205277|Vega:OTTHUMG00000157042 7 7q22 mucin 12, cell surface associated protein-coding MUC12 mucin 12, cell surface associated O mucin 11|mucin-11|mucin-12 20121230 -9606 10072 DPP3 hCG_2016942 DPPIII HGNC:3008|MIM:606818|Ensembl:ENSG00000254986|HPRD:06012|Vega:OTTHUMG00000167143 11 11q12-q13.1 dipeptidyl-peptidase 3 protein-coding DPP3 dipeptidyl-peptidase 3 O DPP III|dipeptidyl aminopeptidase III|dipeptidyl arylamidase III|dipeptidyl peptidase 3|dipeptidyl peptidase III 20121230 -9606 10073 SNUPN - KPNBL|RNUT1|Snurportin1 HGNC:14245|MIM:607902|Ensembl:ENSG00000169371|HPRD:07441|Vega:OTTHUMG00000142833 15 15q24.2 snurportin 1 protein-coding SNUPN snurportin 1 O RNA U transporter 1|RNA, U transporter 1|snurportin-1 20121230 -9606 10075 HUWE1 RP3-339A18.4 ARF-BP1|HECTH9|HSPC272|Ib772|LASU1|MULE|URE-B1|UREB1 HGNC:30892|MIM:300697|Ensembl:ENSG00000086758|HPRD:06608|Vega:OTTHUMG00000021617 X Xp11.22 HECT, UBA and WWE domain containing 1, E3 ubiquitin protein ligase protein-coding HUWE1 HECT, UBA and WWE domain containing 1, E3 ubiquitin protein ligase O ARF-binding protein 1|BJ-HCC-24 tumor antigen|E3 ubiquitin-protein ligase HUWE1|HECT domain protein LASU1|Mcl-1 ubiquitin ligase E3|URE-binding protein 1|homologous to E6AP carboxyl terminus homologous protein 9|large structure of UREB1|upstream regulatory element-binding protein 1 20121230 -9606 10076 PTPRU - FMI|PCP-2|PTP|PTP-J|PTP-PI|PTP-RO|PTPPSI|PTPRO|PTPU2|R-PTP-PSI|R-PTP-U|hPTP-J HGNC:9683|MIM:602454|Ensembl:ENSG00000060656|HPRD:03908|Vega:OTTHUMG00000003699 1 1p35.3 protein tyrosine phosphatase, receptor type, U protein-coding PTPRU protein tyrosine phosphatase, receptor type, U O PTP pi|Receptor protein tyrosine phosphatase hPTP-J|pancreatic carcinoma phosphatase 2|pi R-PTP-Psi|protein tyrosine phosphatase J|protein tyrosine phosphatase receptor omicron|protein-tyrosine phosphatase J|protein-tyrosine phosphatase pi|protein-tyrosine phosphatase receptor omicron|receptor-type protein-tyrosine phosphatase psi|receptor-type tyrosine-protein phosphatase U 20121230 -9606 10077 TSPAN32 - ART1|PHEMX|PHMX|TSSC6 HGNC:13410|MIM:603853|Ensembl:ENSG00000064201|HPRD:04834|Vega:OTTHUMG00000009762 11 11p15.5 tetraspanin 32 protein-coding TSPAN32 tetraspanin 32 O pan-hematopoietic expression protein|protein Phemx|tetraspanin-32|tspan-32|tumor-suppressing STF cDNA 6|tumor-suppressing subchromosomal transferable fragment cDNA 6|tumor-suppressing subtransferable candidate 6 20121230 -9606 10078 TSSC4 - - HGNC:12386|MIM:603852|Ensembl:ENSG00000184281|HPRD:10357|Vega:OTTHUMG00000009895 11 11p15.5 tumor suppressing subtransferable candidate 4 protein-coding TSSC4 tumor suppressing subtransferable candidate 4 O protein TSSC4|tumor-suppressing STF cDNA 4 protein|tumor-suppressing subchromosomal transferable fragment candidate gene 4 protein 20121230 -9606 10079 ATP9A - ATPIIA HGNC:13540|MIM:609126|Ensembl:ENSG00000054793|HPRD:18541|Vega:OTTHUMG00000032751 20 20q13.2 ATPase, class II, type 9A protein-coding ATP9A ATPase, class II, type 9A O ATPase type IV, phospholipid-transporting (P-type),(putative)|phospholipid-transporting ATPase IIA|probable phospholipid-transporting ATPase IIA 20121230 -9606 10081 PDCD7 - ES18|HES18 HGNC:8767|MIM:608138|Ensembl:ENSG00000090470|HPRD:09736|Vega:OTTHUMG00000133117 15 15q22.31 programmed cell death 7 protein-coding PDCD7 programmed cell death 7 O U11/U12 snRNP 59K|apoptosis-related protein ES18|programmed cell death protein 7 20121230 -9606 10082 GPC6 UNQ369/PRO705 OMIMD1 HGNC:4454|MIM:604404|Ensembl:ENSG00000183098|HPRD:05099|Vega:OTTHUMG00000017205 13 13q32 glypican 6 protein-coding GPC6 glypican 6 O glypican proteoglycan 6|glypican-6 20121230 -9606 10083 USH1C - AIE-75|DFNB18|DFNB18A|NY-CO-37|NY-CO-38|PDZ-45|PDZ-73|PDZ-73/NY-CO-38|PDZ73|ush1cpst HGNC:12597|MIM:605242|Ensembl:ENSG00000006611|HPRD:09241|Vega:OTTHUMG00000166323 11 11p14.3 Usher syndrome 1C (autosomal recessive, severe) protein-coding USH1C Usher syndrome 1C (autosomal recessive, severe) O antigen NY-CO-38/NY-CO-37|autoimmune enteropathy-related antigen AIE-75|harmonin|renal carcinoma antigen NY-REN-3|usher syndrome type-1C protein 20121230 -9606 10084 PQBP1 JM26 MRX55|MRXS3|MRXS8|NPW38|RENS1|SHS HGNC:9330|MIM:300463|Ensembl:ENSG00000102103|HPRD:02354|Vega:OTTHUMG00000024128 X Xp11.23 polyglutamine binding protein 1 protein-coding PQBP1 polyglutamine binding protein 1 O 38 kDa nuclear protein containing a WW domain|nuclear protein containing WW domain 38 kD|polyglutamine tract-binding protein 1|polyglutamine-binding protein 1 20121230 -9606 10085 EDIL3 - DEL1 HGNC:3173|MIM:606018|Ensembl:ENSG00000164176|HPRD:09350|Vega:OTTHUMG00000119047 5 5q14 EGF-like repeats and discoidin I-like domains 3 protein-coding EDIL3 EGF-like repeats and discoidin I-like domains 3 O EGF-like repeat and discoidin I-like domain-containing protein 3|developmental endothelial locus-1|developmentally-regulated endothelial cell locus 1 protein|integrin-binding protein DEL1 20121230 -9606 10086 HHLA1 - PLA2L HGNC:4904|MIM:604109|Ensembl:ENSG00000132297|HPRD:06823|Vega:OTTHUMG00000140390 8 8q24 HERV-H LTR-associating 1 protein-coding HHLA1 HERV-H LTR-associating 1 O HERV-H LTR-associating protein 1 20121230 -9606 10087 COL4A3BP - CERT|CERTL|GPBP|STARD11 HGNC:2205|MIM:604677|Ensembl:ENSG00000113163|HPRD:05246|Vega:OTTHUMG00000102068 5 5q13.3 collagen, type IV, alpha 3 (Goodpasture antigen) binding protein protein-coding COL4A3BP collagen, type IV, alpha 3 (Goodpasture antigen) binding protein O StAR-related lipid transfer (START) domain containing 11|ceramide transfer protein|ceramide transporter|collagen type IV alpha-3-binding protein|hCERT|lipid-transfer protein CERTL 20121230 -9606 10089 KCNK7 - K2p7.1|TWIK3 HGNC:6282|MIM:603940|Ensembl:ENSG00000173338|HPRD:06804|Vega:OTTHUMG00000166528 11 11q13 potassium channel, subfamily K, member 7 protein-coding KCNK7 potassium channel, subfamily K, member 7 O potassium channel subfamily K member 7|two pore domain K+ channel 20121230 -9606 10090 UST - 2OST HGNC:17223|MIM:610752|Ensembl:ENSG00000111962|HPRD:10298|Vega:OTTHUMG00000016135 6 6q25.1 uronyl-2-sulfotransferase protein-coding UST uronyl-2-sulfotransferase O dermatan/chondroitin sulfate 2-sulfotransferase|uronyl 2-sulfotransferase 20121230 -9606 10092 ARPC5 RP1-127C7.3 ARC16|dJ127C7.3|p16-Arc HGNC:708|MIM:604227|Ensembl:ENSG00000162704|HPRD:11969|Vega:OTTHUMG00000035326 1 1q25.3 actin related protein 2/3 complex, subunit 5, 16kDa protein-coding ARPC5 actin related protein 2/3 complex, subunit 5, 16kDa O Arp2/3 protein complex subunit p16|actin-related protein 2/3 complex subunit 5|arp2/3 complex 16 kDa subunit 20121230 -9606 10093 ARPC4 - ARC20|P20-ARC HGNC:707|MIM:604226|Ensembl:ENSG00000241553|HPRD:10368|Vega:OTTHUMG00000133768 3 3p25.3 actin related protein 2/3 complex, subunit 4, 20kDa protein-coding ARPC4 actin related protein 2/3 complex, subunit 4, 20kDa O actin-related protein 2/3 complex subunit 4|arp2/3 complex 20 kDa subunit|arp2/3 protein complex subunit p20 20121230 -9606 10094 ARPC3 - ARC21|p21-Arc HGNC:706|MIM:604225|Ensembl:ENSG00000111229|HPRD:09175|Vega:OTTHUMG00000134333 12 12q24.11 actin related protein 2/3 complex, subunit 3, 21kDa protein-coding ARPC3 actin related protein 2/3 complex, subunit 3, 21kDa O ARP2/3 protein complex subunit p21|actin-related protein 2/3 complex subunit 3|arp2/3 complex 21 kDa subunit 20121230 -9606 10095 ARPC1B - ARC41|p40-ARC|p41-ARC HGNC:704|MIM:604223|Ensembl:ENSG00000130429|HPRD:10366|Vega:OTTHUMG00000154552 7 7q22.1 actin related protein 2/3 complex, subunit 1B, 41kDa protein-coding ARPC1B actin related protein 2/3 complex, subunit 1B, 41kDa O ARP2/3 protein complex subunit p41|actin-related protein 2/3 complex subunit 1B|arp2/3 complex 41 kDa subunit 20121230 -9606 10096 ACTR3 - ARP3 HGNC:170|MIM:604222|Ensembl:ENSG00000115091|HPRD:05024|Vega:OTTHUMG00000153497 2 2q14.1 ARP3 actin-related protein 3 homolog (yeast) protein-coding ACTR3 ARP3 actin-related protein 3 homolog (yeast) O actin-like protein 3|actin-related protein 3 20121230 -9606 10097 ACTR2 - ARP2 HGNC:169|MIM:604221|Ensembl:ENSG00000138071|HPRD:05023|Vega:OTTHUMG00000129540 2 2p14 ARP2 actin-related protein 2 homolog (yeast) protein-coding ACTR2 ARP2 actin-related protein 2 homolog (yeast) O actin-like protein 2|actin-related protein 2 20121230 -9606 10098 TSPAN5 - NET-4|NET4|TM4SF9|TSPAN-5 HGNC:17753|MIM:613136|Ensembl:ENSG00000168785|HPRD:15513|Vega:OTTHUMG00000131008 4 4q23 tetraspanin 5 protein-coding TSPAN5 tetraspanin 5 O tetraspan 5|tetraspan NET-4|tetraspan TM4SF|tetraspanin-5|transmembrane 4 superfamily member 9|transmembrane 4 superfamily, member 8 20121230 -9606 10099 TSPAN3 - TM4-A|TM4SF8|TSPAN-3 HGNC:17752|MIM:613134|Ensembl:ENSG00000140391|HPRD:15512|Vega:OTTHUMG00000143728 15 15q24.3 tetraspanin 3 protein-coding TSPAN3 tetraspanin 3 O tetraspan 3|tetraspan TM4SF|tetraspanin TM4-A|tetraspanin-3|transmembrane 4 superfamily member 8 20121230 -9606 10100 TSPAN2 RP4-666F24.2 NET3|TSN2|TSPAN-2 HGNC:20659|MIM:613133|Ensembl:ENSG00000134198|HPRD:18233|Vega:OTTHUMG00000011878 1 1p13.2 tetraspanin 2 protein-coding TSPAN2 tetraspanin 2 O new EST tetraspan 3|tetraspan 2|tetraspan NET-3|tetraspan TM4SF|tetraspanin 2 isoform|tetraspanin-2 20121230 -9606 10101 NUBP2 - CFD1|NUBP1 HGNC:8042|MIM:610779|Ensembl:ENSG00000095906|HPRD:14846|Vega:OTTHUMG00000128639 16 16p13.3 nucleotide binding protein 2 protein-coding NUBP2 nucleotide binding protein 2 O C447E6.1 (nucleotide binding protein 1 (E.coli MinD like) )|NBP 2|cytosolic Fe-S cluster assembly factor NUBP2|homolog of yeast cytosolic Fe-S cluster deficient 1|nucleotide binding protein 2 (E.coli MinD like)|nucleotide binding protein 2 (MinD homolog, E. coli)|nucleotide-binding protein 2 20121230 -9606 10102 TSFM - EFTS|EFTSMT HGNC:12367|MIM:604723|Ensembl:ENSG00000123297|HPRD:05285|Vega:OTTHUMG00000153042 12 12q14.1 Ts translation elongation factor, mitochondrial protein-coding TSFM Ts translation elongation factor, mitochondrial O elongation factor Ts, mitochondrial|mitochondrial elongation factor Ts 20121230 -9606 10103 TSPAN1 - NET1|TM4C|TM4SF HGNC:20657|MIM:613170|Ensembl:ENSG00000117472|HPRD:18232|Vega:OTTHUMG00000007602 1 1p34.1 tetraspanin 1 protein-coding TSPAN1 tetraspanin 1 O tetraspan 1|tetraspanin-1 20121230 -9606 10105 PPIF RP11-342M3.4 CYP3|Cyp-D HGNC:9259|MIM:604486|Ensembl:ENSG00000108179|HPRD:06839|Vega:OTTHUMG00000018562 10 10q22-q23 peptidylprolyl isomerase F protein-coding PPIF peptidylprolyl isomerase F O PPIase F|cyclophilin 3|cyclophilin D|cyclophilin F|peptidyl-prolyl cis-trans isomerase F, mitochondrial|peptidyl-prolyl cis-trans isomerase, mitochondrial|rotamase F 20121230 -9606 10106 CTDSP2 - OS4|PSR2|SCP2 HGNC:17077|MIM:608711|Ensembl:ENSG00000175215|HPRD:12281|Vega:OTTHUMG00000170483 12 12q14.1 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 2 protein-coding CTDSP2 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 2 O NLI-interacting factor 2|carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 2|conserved gene amplified in osteosarcoma|nuclear LIM interactor-interacting factor 2|protein OS-4|small C-terminal domain phosphatase 2|small CTD phosphatase 2 20121230 -9606 10107 TRIM10 DAAP-200B17.4 HERF1|RFB30|RNF9 HGNC:10072|MIM:605701|Ensembl:ENSG00000204613|HPRD:05752|Vega:OTTHUMG00000031295 6 6p21.3 tripartite motif containing 10 protein-coding TRIM10 tripartite motif containing 10 O B30-RING finger protein|Zn-finger protein|hematopoietic RING finger 1|ring finger protein 9|tripartite motif protein 10|tripartite motif-containing 10|tripartite motif-containing protein 10 20121230 -9606 10108 MKRN3-AS1 - FNZ127|MKRN3-AS|MKRN3AS|NCRNA00009|ZNF127AS HGNC:12910|MIM:603857 15 15q11-q13 MKRN3 antisense RNA 1 miscRNA MKRN3-AS1 MKRN3 antisense RNA 1 O - 20121220 -9606 10109 ARPC2 PRO2446 ARC34|PNAS-139|p34-Arc HGNC:705|MIM:604224|Ensembl:ENSG00000163466|HPRD:10367|Vega:OTTHUMG00000133618 2 2q36.1 actin related protein 2/3 complex, subunit 2, 34kDa protein-coding ARPC2 actin related protein 2/3 complex, subunit 2, 34kDa O ARP2/3 protein complex subunit 34|actin-related protein 2/3 complex subunit 2|arp2/3 complex 34 kDa subunit 20121230 -9606 10110 SGK2 RP1-138B7.2 H-SGK2|dJ138B7.2 HGNC:13900|MIM:607589|Ensembl:ENSG00000101049|HPRD:06348|Vega:OTTHUMG00000033054 20 20q13.2 serum/glucocorticoid regulated kinase 2 protein-coding SGK2 serum/glucocorticoid regulated kinase 2 O serine/threonine-protein kinase Sgk2 20121230 -9606 10111 RAD50 - NBSLD|RAD502|hRad50 HGNC:9816|MIM:604040|Ensembl:ENSG00000113522|HPRD:04950|Vega:OTTHUMG00000059613 5 5q31 RAD50 homolog (S. cerevisiae) protein-coding RAD50 RAD50 homolog (S. cerevisiae) O DNA repair protein RAD50 20121230 -9606 10112 KIF20A - MKLP2|RAB6KIFL HGNC:9787|MIM:605664|Ensembl:ENSG00000112984|HPRD:09292|Vega:OTTHUMG00000129195 5 5q31 kinesin family member 20A protein-coding KIF20A kinesin family member 20A O GG10_2|RAB6 interacting, kinesin-like (rabkinesin6)|kinesin-like protein KIF20A|mitotic kinesin-like protein 2|rab6-interacting kinesin-like protein|rabkinesin-6 20121230 -9606 10113 PREB - SEC12 HGNC:9356|MIM:606395|Ensembl:ENSG00000138073|HPRD:16216|Vega:OTTHUMG00000097076 2 2p23.3 prolactin regulatory element binding protein-coding PREB prolactin regulatory element binding O mammalian guanine nucleotide exchange factor mSec12|prolactin regulatory binding-element protein|prolactin regulatory element-binding protein 20121230 -9606 10114 HIPK3 RP1-8L15.1 DYRK6|FIST3|PKY|YAK1 HGNC:4915|MIM:604424|Ensembl:ENSG00000110422|HPRD:05111|Vega:OTTHUMG00000132269 11 11p13 homeodomain interacting protein kinase 3 protein-coding HIPK3 homeodomain interacting protein kinase 3 O ANPK|FIST|androgen receptor-interacting nuclear protein kinase|fas-interacting serine/threonine-protein kinase|homeodomain-interacting protein kinase 3|homolog of protein kinase YAK1 20121230 -9606 10116 FEM1B - F1A-ALPHA|FIAA HGNC:3649|MIM:613539|Ensembl:ENSG00000169018|HPRD:16889|Vega:OTTHUMG00000133285 15 15q22 fem-1 homolog b (C. elegans) protein-coding FEM1B fem-1 homolog b (C. elegans) O FEM-1-like death receptor binding protein|FEM1-beta|fem-1-like death receptor-binding protein alpha|fem-1-like in apoptotic pathway protein alpha|protein fem-1 homolog B 20121230 -9606 10117 ENAM - ADAI|AI1C|AIH2 HGNC:3344|MIM:606585|Ensembl:ENSG00000132464|HPRD:05960|Vega:OTTHUMG00000129914 4 4q13.3 enamelin protein-coding ENAM enamelin O amelogenesis imperfecta 2, hypocalcification (autosomal dominant) 20121230 -9606 10118 EMWX - - HGNC:3339|MIM:300211 X Xp22.3 episodic muscle weakness, X-linked unknown EMWX episodic muscle weakness, X-linked O - 20120622 -9606 10120 ACTR1B - ARP1B|CTRN2|PC3 HGNC:168|MIM:605144|Ensembl:ENSG00000115073|HPRD:05508|Vega:OTTHUMG00000130549 2 2q11.1-q11.2 ARP1 actin-related protein 1 homolog B, centractin beta (yeast) protein-coding ACTR1B ARP1 actin-related protein 1 homolog B, centractin beta (yeast) O actin-related protein 1B|beta-centractin|centractin beta 20121230 -9606 10121 ACTR1A - ARP1|CTRN1 HGNC:167|MIM:605143|Ensembl:ENSG00000138107|HPRD:05507|Vega:OTTHUMG00000018956 10 10q24.32 ARP1 actin-related protein 1 homolog A, centractin alpha (yeast) protein-coding ACTR1A ARP1 actin-related protein 1 homolog A, centractin alpha (yeast) O actin-RPV|alpha-centractin|centractin|centrosome-associated actin homolog 20121230 -9606 10123 ARL4C - ARL7|LAK HGNC:698|MIM:604787|Ensembl:ENSG00000188042|HPRD:11988|Vega:OTTHUMG00000133291 2 2q37.1 ADP-ribosylation factor-like 4C protein-coding ARL4C ADP-ribosylation factor-like 4C O ADP ribosylation factor-like protein 7|ADP-ribosylation factor-like 7|ADP-ribosylation factor-like protein 4C|ADP-ribosylation factor-like protein 7|ADP-ribosylation factor-like protein LAK 20121230 -9606 10124 ARL4A - ARL4 HGNC:695|MIM:604786|Ensembl:ENSG00000122644|HPRD:11987|Vega:OTTHUMG00000023374 7 7p21.3 ADP-ribosylation factor-like 4A protein-coding ARL4A ADP-ribosylation factor-like 4A O ADP-ribosylation factor-like 4|ADP-ribosylation factor-like protein 4A 20121230 -9606 10125 RASGRP1 - CALDAG-GEFI|CALDAG-GEFII|RASGRP|V|hRasGRP1 HGNC:9878|MIM:603962|Ensembl:ENSG00000172575|HPRD:04909|Vega:OTTHUMG00000172379 15 15q14 RAS guanyl releasing protein 1 (calcium and DAG-regulated) protein-coding RASGRP1 RAS guanyl releasing protein 1 (calcium and DAG-regulated) O RAS guanyl nucleotide-releasing protein 1|RAS guanyl-releasing protein 1|calcium and DAG-regulated guanine nucleotide exchange factor II|guanine nucleotide exchange factor, calcium- and DAG-regulated, Rap1A|ras activator RasGRP 20121230 -9606 10126 DNAL4 RP3-327J16.7 PIG27 HGNC:2955|MIM:610565|Ensembl:ENSG00000100246|HPRD:13239|Vega:OTTHUMG00000151025 22 22q13.1 dynein, axonemal, light chain 4 protein-coding DNAL4 dynein, axonemal, light chain 4 O dynein light chain 4, axonemal|dynein light chain, outer arm 4|dynein, axonemal, light 4|dynein, axonemal, light polypeptide 4|proliferation-inducing gene 27|proliferation-inducing protein 27 20121230 -9606 10127 ZNF263 - FPM315|ZKSCAN12 HGNC:13056|MIM:604191|Ensembl:ENSG00000006194|HPRD:05008|Vega:OTTHUMG00000129323 16 16p13.3 zinc finger protein 263 protein-coding ZNF263 zinc finger protein 263 O zinc finger protein FPM315|zinc finger protein with KRAB and SCAN domains 12 20121230 -9606 10128 LRPPRC - CLONE-23970|GP130|LRP130|LSFC HGNC:15714|MIM:607544|Ensembl:ENSG00000138095|HPRD:06343|Vega:OTTHUMG00000152782 2 2p21 leucine-rich pentatricopeptide repeat containing protein-coding LRPPRC leucine-rich pentatricopeptide repeat containing O 130 kDa leucine-rich protein|LRP 130|leucine-rich PPR motif-containing protein, mitochondrial|leucine-rich PPR-motif containing|mitochondrial leucine-rich PPR motif-containing protein 20121230 -9606 10129 FRY RP11-37E23.6 13CDNA73|214K23.2|C13orf14|CG003|bA207N4.2|bA37E23.1 HGNC:20367|MIM:614818|Ensembl:ENSG00000073910|HPRD:10821|Vega:OTTHUMG00000016696 13 13q13.1 furry homolog (Drosophila) protein-coding FRY furry homolog (Drosophila) O WUGSC:H_2G3A.1|protein furry homolog 20121230 -9606 10130 PDIA6 - ERP5|P5|TXNDC7 HGNC:30168|MIM:611099|Ensembl:ENSG00000143870|HPRD:07504|Vega:OTTHUMG00000090479 2 2p25.1 protein disulfide isomerase family A, member 6 protein-coding PDIA6 protein disulfide isomerase family A, member 6 O ER protein 5|endoplasmic reticulum protein 5|protein disulfide isomerase P5|protein disulfide isomerase-associated 6|protein disulfide isomerase-related protein|protein disulfide-isomerase A6|thioredoxin domain containing 7 (protein disulfide isomerase)|thioredoxin domain-containing protein 7 20121230 -9606 10131 TRAP1 - HSP75|HSP90L HGNC:16264|MIM:606219|Ensembl:ENSG00000126602|HPRD:05868|Vega:OTTHUMG00000129427 16 16p13.3 TNF receptor-associated protein 1 protein-coding TRAP1 TNF receptor-associated protein 1 O HSP 75|TNFR-associated protein 1|TRAP-1|heat shock protein 75 kDa, mitochondrial|tumor necrosis factor type 1 receptor associated protein|tumor necrosis factor type 1 receptor-associated protein 20121230 -9606 10133 OPTN RP11-730A19.1 ALS12|FIP2|GLC1E|HIP7|HYPL|NRP|TFIIIA-INTP HGNC:17142|MIM:602432|Ensembl:ENSG00000123240|HPRD:03891|Vega:OTTHUMG00000017690 10 10p13 optineurin protein-coding OPTN optineurin O E3-14.7K-interacting protein|FIP-2|HIP-7|Huntingtin interacting protein L|huntingtin yeast partner L|huntingtin-interacting protein 7|huntingtin-interacting protein L|nemo-related protein|optic neuropathy-inducing protein|transcription factor IIIA-interacting protein|transcrption factor IIIA-interacting protein|tumor necrosis factor alpha-inducible cellular protein containing leucine zipper domains 20121230 -9606 10134 BCAP31 - 6C6-AG|BAP31|CDM|DXS1357E HGNC:16695|MIM:300398|Ensembl:ENSG00000185825|HPRD:02319|Vega:OTTHUMG00000024218 X Xq28 B-cell receptor-associated protein 31 protein-coding BCAP31 B-cell receptor-associated protein 31 O 6C6-AG tumor-associated antigen|BCR-associated protein Bap31|p28 Bap31 20121230 -9606 10135 NAMPT - 1110035O14Rik|PBEF|PBEF1|VF|VISFATIN HGNC:30092|MIM:608764|Ensembl:ENSG00000105835|HPRD:09938|Vega:OTTHUMG00000140388 7 7q22.3 nicotinamide phosphoribosyltransferase protein-coding NAMPT nicotinamide phosphoribosyltransferase O NAmPRTase|pre-B cell-enhancing factor|pre-B-cell colony enhancing factor 1|pre-B-cell colony-enhancing factor 1 20121230 -9606 10136 CELA3A RP11-26H16.2 ELA3|ELA3A HGNC:15944|Ensembl:ENSG00000142789|HPRD:06497|Vega:OTTHUMG00000002755 1 1p36.12 chymotrypsin-like elastase family, member 3A protein-coding CELA3A chymotrypsin-like elastase family, member 3A O chymotrypsin-like elastase family member 3A|elastase 1|elastase 3A, pancreatic|elastase IIIA|elastase-3A|protease E 20121230 -9606 10137 RBM12 RP1-309K20.5 HRIHFB2091|SWAN HGNC:9898|MIM:607179|Ensembl:ENSG00000244462|HPRD:06212|Vega:OTTHUMG00000032350 20 20q11.21 RNA binding motif protein 12 protein-coding RBM12 RNA binding motif protein 12 O RNA-binding motif protein 12|RNA-binding protein 12|SH3/WW domain anchor protein in the nucleus 20121230 -9606 10138 YAF2 - - HGNC:17363|MIM:607534|Ensembl:ENSG00000015153|HPRD:09606|Vega:OTTHUMG00000169380 12 12q12 YY1 associated factor 2 protein-coding YAF2 YY1 associated factor 2 O YY1-associated factor 2 20121230 -9606 10139 ARFRP1 RP4-583P15.1 ARL18|ARP|Arp1 HGNC:662|MIM:604699|Ensembl:ENSG00000101246|HPRD:05264|Vega:OTTHUMG00000032993 20 20q13.3 ADP-ribosylation factor related protein 1 protein-coding ARFRP1 ADP-ribosylation factor related protein 1 O ADP-ribosylation factor-related protein 1|ARF-related protein 1|SCG10 like-protein|helicase-like protein NHL 20121230 -9606 10140 TOB1 - APRO6|PIG49|TOB|TROB|TROB1 HGNC:11979|MIM:605523|Ensembl:ENSG00000141232|HPRD:09273|Vega:OTTHUMG00000162277 17 17q21 transducer of ERBB2, 1 protein-coding TOB1 transducer of ERBB2, 1 O proliferation-inducing gene 49|protein Tob1|transducer of erbB-2 1 20121230 -9606 10141 C4orf6 - aC1 HGNC:13716|Ensembl:ENSG00000082929|HPRD:12826|Vega:OTTHUMG00000125492 4 4p16.2 chromosome 4 open reading frame 6 protein-coding C4orf6 chromosome 4 open reading frame 6 O expressed in neuroblastoma|uncharacterized protein C4orf6 20121230 -9606 10142 AKAP9 - AKAP-9|AKAP350|AKAP450|CG-NAP|HYPERION|LQT11|MU-RMS-40.16A|PPP1R45|PRKA9|YOTIAO HGNC:379|MIM:604001|Ensembl:ENSG00000127914|HPRD:04921|Vega:OTTHUMG00000131127 7 7q21-q22 A kinase (PRKA) anchor protein (yotiao) 9 protein-coding AKAP9 A kinase (PRKA) anchor protein (yotiao) 9 O A-kinase anchor protein 350 kDa|A-kinase anchor protein 450 kDa|A-kinase anchor protein 9|AKAP 120-like protein|AKAP9-BRAF fusion protein|centrosome- and Golgi-localized PKN-associated protein|kinase N-associated protein|protein hyperion|protein kinase A anchoring protein 9|protein phosphatase 1, regulatory subunit 45|protein yotiao 20121230 -9606 10143 CLEC3A UNQ700/PRO1345 CLECSF1 HGNC:2052|MIM:613588|Ensembl:ENSG00000166509|HPRD:13072|Vega:OTTHUMG00000137620 16 16q23 C-type lectin domain family 3, member A protein-coding CLEC3A C-type lectin domain family 3, member A O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 1 (cartilage-derived)|C-type lectin domain family 3 member A 20121230 -9606 10144 FAM13A - ARHGAP48|FAM13A1 HGNC:19367|MIM:613299|Ensembl:ENSG00000138640|HPRD:10944|Vega:OTTHUMG00000161006 4 4q22.1 family with sequence similarity 13, member A protein-coding FAM13A family with sequence similarity 13, member A O FAM13A1_v2 protein|family with sequence similarity 13, member A1|protein FAM13A 20121230 -9606 10146 G3BP1 - G3BP|HDH-VIII HGNC:30292|MIM:608431|Ensembl:ENSG00000145907|HPRD:06569|Vega:OTTHUMG00000130123 5 5q33.1 GTPase activating protein (SH3 domain) binding protein 1 protein-coding G3BP1 GTPase activating protein (SH3 domain) binding protein 1 O ATP-dependent DNA helicase VIII|G3BP-1|GAP SH3 domain-binding protein 1|GAP binding protein|Ras-GTPase-activating protein SH3-domain-binding protein|RasGAP-associated endoribonuclease G3BP|ras GTPase-activating protein-binding protein 1 20121230 -9606 10147 SUGP2 - SFRS14 HGNC:18641|MIM:607993|Ensembl:ENSG00000064607|HPRD:10469 19 19p12 SURP and G patch domain containing 2 protein-coding SUGP2 SURP and G patch domain containing 2 O SURP and G-patch domain-containing protein 2|arginine/serine-rich 14 splicing factor|arginine/serine-rich-splicing factor 14|putative splicing factor, arginine/serine-rich 14|splicing factor, arginine/serine-rich 14 20121230 -9606 10148 EBI3 - IL-27B|IL27B HGNC:3129|MIM:605816|Ensembl:ENSG00000105246|HPRD:12051 19 19p13.3 Epstein-Barr virus induced 3 protein-coding EBI3 Epstein-Barr virus induced 3 O EBV-induced gene 3 protein|Epstein-Barr virus induced gene 3|IL-27 subunit beta|IL27 subunit|IL35 subunit|cytokine receptor|epstein-Barr virus-induced gene 3 protein|interleukin-27 subunit beta 20121230 -9606 10149 GPR64 CTD-2245E12.1 EDDM6|HE6|TM7LN2 HGNC:4516|MIM:300572|Ensembl:ENSG00000173698|HPRD:04040|Vega:OTTHUMG00000021223 X Xp22.13 G protein-coupled receptor 64 protein-coding GPR64 G protein-coupled receptor 64 O G protein-coupled receptor, epididymis-specific (seven transmembrane family)|G-protein coupled receptor 64|epididymal protein 6|human epididymis-specific protein 6 20121230 -9606 10150 MBNL2 RP11-128N14.1 MBLL|MBLL39|PRO2032 HGNC:16746|MIM:607327|Ensembl:ENSG00000139793|HPRD:09543|Vega:OTTHUMG00000017239 13 13q32.1 muscleblind-like splicing regulator 2 protein-coding MBNL2 muscleblind-like splicing regulator 2 O muscleblind-like 2|muscleblind-like protein 1|muscleblind-like protein 2|muscleblind-like protein-like 39 20121230 -9606 10151 HNRNPA3P1 - D10S102|FBRNP|HNRPA3|HNRPA3P1 HGNC:13729|HPRD:05644 10 10q11.21 heterogeneous nuclear ribonucleoprotein A3 pseudogene 1 pseudo HNRNPA3P1 heterogeneous nuclear ribonucleoprotein A3 pseudogene 1 O - 20121230 -9606 10152 ABI2 - ABI-2|ABI2B|AIP-1|AblBP3|SSH3BP2|argBPIA|argBPIB HGNC:24011|MIM:606442|Ensembl:ENSG00000138443|Vega:OTTHUMG00000132879 2 2q33 abl-interactor 2 protein-coding ABI2 abl-interactor 2 O abelson interactor 2|abl binding protein 3|abl interactor 2|abl-binding protein 3|abl-interacting protein 1 (SH3-containing protein)|abl-interactor protein 2b|arg protein tyrosine kinase-binding protein|arg-binding protein 1|argBP1 20121230 -9606 10153 CEBPZ - CBF|CBF2|HSP-CBF|NOC1 HGNC:24218|MIM:612828|Ensembl:ENSG00000115816|HPRD:09875|Vega:OTTHUMG00000100960 2 2p22.2 CCAAT/enhancer binding protein (C/EBP), zeta protein-coding CEBPZ CCAAT/enhancer binding protein (C/EBP), zeta O CCAAT-binding factor|CCAAT-box-binding transcription factor|CCAAT/enhancer binding protein zeta|CCAAT/enhancer-binding protein zeta 20121230 -9606 10154 PLXNC1 - CD232|PLXN-C1|VESPR HGNC:9106|MIM:604259|Ensembl:ENSG00000136040|HPRD:05036|Vega:OTTHUMG00000170235 12 12q23.3 plexin C1 protein-coding PLXNC1 plexin C1 O plexin (semaphorin receptor)|plexin-C1|receptor for viral semaphorin protein|receptor for virally-encoded semaphorin|virus-encoded semaphorin protein receptor 20121230 -9606 10155 TRIM28 - KAP1|RNF96|TF1B|TIF1B HGNC:16384|MIM:601742|Ensembl:ENSG00000130726|HPRD:03445 19 19q13.4 tripartite motif containing 28 protein-coding TRIM28 tripartite motif containing 28 O E3 SUMO-protein ligase TRIM28|KAP-1|KRAB-associated protein 1|KRAB-interacting protein 1|KRIP-1|RING finger protein 96|TIF1-beta|nuclear corepressor KAP-1|transcription intermediary factor 1-beta|transcriptional intermediary factor 1-beta|tripartite motif-containing 28|tripartite motif-containing protein 28 20121230 -9606 10156 RASA4 - CAPRI|GAPL HGNC:23181|MIM:607943|Ensembl:ENSG00000105808|HPRD:12135|Vega:OTTHUMG00000150383 7 7q22 RAS p21 protein activator 4 protein-coding RASA4 RAS p21 protein activator 4 O Ca2+-promoted Ras inactivator|calcium-promoted Ras inactivator|ras GTPase-activating protein 4|rasGAP-activating-like protein 2 20121230 -9606 10157 AASS - LKR/SDH|LKRSDH|LORSDH HGNC:17366|MIM:605113|Ensembl:ENSG00000008311|HPRD:05489|Vega:OTTHUMG00000157058 7 7q31.3 aminoadipate-semialdehyde synthase protein-coding AASS aminoadipate-semialdehyde synthase O alpha-aminoadipate semialdehyde synthase|alpha-aminoadipic semialdehyde synthase, mitochondrial|aminoadipic semialdehyde synthase|lysine-2-oxoglutarate reductase|lysine-ketoglutarate reductase /saccharopine dehydrogenase 20121230 -9606 10158 PDZK1IP1 - DD96|MAP17|RP1-18D14.5|SPAP HGNC:16887|MIM:607178|Ensembl:ENSG00000162366|HPRD:06211|Vega:OTTHUMG00000007852 1 1p33 PDZK1 interacting protein 1 protein-coding PDZK1IP1 PDZK1 interacting protein 1 O 17 kDa membrane-associated protein|PDZK1-interacting protein 1|epithelial protein up-regulated in carcinoma, membrane associated protein 17|membrane-associated protein 17 20121230 -9606 10159 ATP6AP2 HT028 APT6M8-9|ATP6IP2|ATP6M8-9|ELDF10|M8-9|MRXE|MSTP009|XMRE HGNC:18305|MIM:300556|Ensembl:ENSG00000182220|HPRD:06454|Vega:OTTHUMG00000024103 X Xp11.4 ATPase, H+ transporting, lysosomal accessory protein 2 protein-coding ATP6AP2 ATPase, H+ transporting, lysosomal accessory protein 2 O ATPase H(+)-transporting lysosomal-interacting protein 2|ATPase, H+ transporting, lysosomal (vacuolar proton pump) membrane sector associated protein M8-9|ATPase, H+ transporting, lysosomal interacting protein 2|ER-localized type I transmembrane adaptor|N14F|V-ATPase M8.9 subunit|embryonic liver differentiation factor 10|renin receptor|renin/prorenin receptor|vacuolar ATP synthase membrane sector-associated protein M8-9|vacuolar proton ATP synthase membrane sector associated protein M8-9 20121230 -9606 10160 FARP1 RP11-111L24.1 CDEP|PLEKHC2|PPP1R75 HGNC:3591|MIM:602654|Ensembl:ENSG00000152767|Vega:OTTHUMG00000017248 13 13q32.2 FERM, RhoGEF (ARHGEF) and pleckstrin domain protein 1 (chondrocyte-derived) protein-coding FARP1 FERM, RhoGEF (ARHGEF) and pleckstrin domain protein 1 (chondrocyte-derived) O FERM, RhoGEF and pleckstrin domain-containing protein 1|PH domain-containing family C member 2|chondrocyte-derived ezrin-like protein|pleckstrin homology domain-containing family C member 2|protein phosphatase 1, regulatory subunit 75 20121230 -9606 10161 LPAR6 - ARWH1|LAH3|P2RY5|P2Y5 HGNC:15520|MIM:609239|Ensembl:ENSG00000139679|HPRD:16465|Vega:OTTHUMG00000016895 13 13q14 lysophosphatidic acid receptor 6 protein-coding LPAR6 lysophosphatidic acid receptor 6 O G-protein coupled purinergic receptor P2Y5|LPA receptor 6|LPA-6|P2Y purinoceptor 5|RB intron encoded G-protein coupled receptor|oleoyl-L-alpha-lysophosphatidic acid receptor|purinergic receptor 5|purinergic receptor P2Y G protein-coupled protein 5|purinergic receptor P2Y, G-protein coupled, 5 20121230 -9606 10162 LPCAT3 - C3F|LPCAT|LPLAT 5|LPSAT|MBOAT5|OACT5|nessy HGNC:30244|MIM:611950|Ensembl:ENSG00000111684|HPRD:12816|Vega:OTTHUMG00000168970 12 12p13 lysophosphatidylcholine acyltransferase 3 protein-coding LPCAT3 lysophosphatidylcholine acyltransferase 3 O 1-acylglycerophosphocholine O-acyltransferase|1-acylglycerophosphoserine O-acyltransferase|O-acyltransferase (membrane bound) domain containing 5|O-acyltransferase domain-containing protein 5|lyso-PC acyltransferase 3|lyso-PS acyltransferase|lysophosphatidylserine acyltransferase|lysophospholipid acyltransferase 5|membrane bound O-acyltransferase domain containing 5|membrane-bound O-acyltransferase domain-containing protein 5|putative protein similar to nessy 20121230 -9606 10163 WASF2 - IMD2|SCAR2|WASF4|WAVE2|dJ393P12.2 HGNC:12733|MIM:605875|Ensembl:ENSG00000158195|HPRD:05796|Vega:OTTHUMG00000003393 1 1p36.11 WAS protein family, member 2 protein-coding WASF2 WAS protein family, member 2 O WASP family Verprolin-homologous protein 2|WASP family protein member 2|WASP family protein member 4|protein WAVE-2|putative Wiskott-Aldrich syndrome protein family member 4|suppressor of cyclic-AMP receptor (WASP-family)|verprolin homology domain-containing protein 2|wiskott-Aldrich syndrome protein family member 2 20121230 -9606 10164 CHST4 - GST3|GlcNAc6ST2|HECGLCNAC6ST|LSST HGNC:1972|Ensembl:ENSG00000140835|HPRD:07477|Vega:OTTHUMG00000137592 16 16q22.2 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 4 protein-coding CHST4 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 4 O GST-3|HEC-GlcNAc6ST|L-selectin ligand sulfotransferase|N-acetylglucosamine 6-O-sulfotransferase 2|carbohydrate sulfotransferase 4|galactose/N-acetylglucosamine/N-acetylgalactosamine 6-O-sulfotransferase 3|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 3|glcNAc6ST-2|gn6st-2|high endothelial cells N-acetylglucosamine 6-O-sulfotransferase 20121230 -9606 10165 SLC25A13 - ARALAR2|CITRIN|CTLN2 HGNC:10983|MIM:603859|Ensembl:ENSG00000004864|HPRD:04837|Vega:OTTHUMG00000023074 7 7q21.3 solute carrier family 25 (aspartate/glutamate carrier), member 13 protein-coding SLC25A13 solute carrier family 25 (aspartate/glutamate carrier), member 13 O calcium-binding mitochondrial carrier protein Aralar2|mitochondrial aspartate glutamate carrier 2|solute carrier family 25, member 13 (citrin) 20121230 -9606 10166 SLC25A15 RP11-346L13.4 D13S327|HHH|ORC1|ORNT1 HGNC:10985|MIM:603861|Ensembl:ENSG00000102743|HPRD:04838|Vega:OTTHUMG00000016776 13 13q14 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 protein-coding SLC25A15 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 O mitochondrial ornithine transporter 1|ornithine transporter 1|solute carrier family 25 member 15 20121230 -9606 10167 CFM1 - - HGNC:1881|MIM:603855 19 19q13.2-q13.4 cystic fibrosis modifier 1 protein-coding CFM1 cystic fibrosis modifier 1 O - 20120622 -9606 10168 ZNF197 - D3S1363E|P18|VHLaK|ZKSCAN9|ZNF166|ZNF20 HGNC:12988|Ensembl:ENSG00000186448|HPRD:10322|Vega:OTTHUMG00000133089 3 3p21 zinc finger protein 197 protein-coding ZNF197 zinc finger protein 197 O VHL-associated KRAB-A domain-containing protein|pVHL-associated KRAB domain-containing protein|zinc finger protein 166|zinc finger protein 20|zinc finger protein with KRAB and SCAN domains 9 20121230 -9606 10169 SERF2 - 4F5REL|FAM2C|H4F5REL|HsT17089 HGNC:10757|MIM:605054|Ensembl:ENSG00000140264|HPRD:05447|Vega:OTTHUMG00000059935 15 15q15.3 small EDRK-rich factor 2 protein-coding SERF2 small EDRK-rich factor 2 O gastric cancer-related protein VRG107|protein 4F5-related 20121230 -9606 10170 DHRS9 UNQ835/PRO1773 3ALPHA-HSD|RDH-TBE|RDH15|RDHL|RDHTBE|RETSDR8|SDR9C4 HGNC:16888|MIM:612131|Ensembl:ENSG00000073737|HPRD:09916|Vega:OTTHUMG00000132180 2 2q31.1 dehydrogenase/reductase (SDR family) member 9 protein-coding DHRS9 dehydrogenase/reductase (SDR family) member 9 O 3-alpha hydroxysteroid dehydrogenase|3-alpha-HSD|NADP-dependent retinol dehydrogenase/reductase|RDH-E2|dehydrogenase/reductase SDR family member 9|retinol dehydrogenase homolog|short chain dehydrogenase/reductase family 9C, member 4|short-chain dehydrogenase/reductase retSDR8|tracheobronchial epithelial cell-specific retinol dehydrogenase 20121230 -9606 10171 RCL1 RP11-125K10.1 RNAC|RPCL1 HGNC:17687|MIM:611405|Ensembl:ENSG00000120158|HPRD:10189|Vega:OTTHUMG00000019474 9 9p24.1-p23 RNA terminal phosphate cyclase-like 1 protein-coding RCL1 RNA terminal phosphate cyclase-like 1 O 2310040A02Rik|RNA 3'-terminal phosphate cyclase-like protein|RNA cyclase homolog 20121230 -9606 10172 ZNF256 - BMZF-3|BMZF3 HGNC:13049|MIM:606956|Ensembl:ENSG00000152454|HPRD:06095 19 19q13.43 zinc finger protein 256 protein-coding ZNF256 zinc finger protein 256 O bone marrow zinc finger 3 20121230 -9606 10174 SORBS3 - SCAM-1|SCAM1|SH3D4 HGNC:30907|MIM:610795|Ensembl:ENSG00000120896|HPRD:11535|Vega:OTTHUMG00000131728 8 8p21.3 sorbin and SH3 domain containing 3 protein-coding SORBS3 sorbin and SH3 domain containing 3 O sorbin and SH3 domain-containing protein 3|vinexin|vinexin beta (SH3-containing adaptor molecule-1) 20121230 -9606 10175 CNIH UNQ155/PRO181 CNIH1|CNIL|TGAM77 HGNC:19431|MIM:611287|Ensembl:ENSG00000100528|HPRD:16730|Vega:OTTHUMG00000152335 14 14q22.2 cornichon homolog (Drosophila) protein-coding CNIH cornichon homolog (Drosophila) O T-cell growth-associated molecule 77|protein cornichon homolog 20121230 -9606 10178 TENM1 RP5-1052M9.2 ODZ1|ODZ3|TEN-M1|TNM|TNM1 HGNC:8117|MIM:300588|Ensembl:ENSG00000009694|HPRD:06669|Vega:OTTHUMG00000022721 X Xq25 teneurin transmembrane protein 1 protein-coding TENM1 teneurin transmembrane protein 1 O odz (odd Oz/ten-m, Drosophila) homolog 3|odz, odd Oz/ten-m homolog 1|odz, odd Oz/ten-m homolog 1(Drosophila)|protein Odd Oz/ten-m homolog 1|ten-1|tenascin M1|tenascin-M1|teneurin 1|teneurin-1 20121230 -9606 10179 RBM7 - - HGNC:9904|MIM:612413|Ensembl:ENSG00000076053|HPRD:11488|Vega:OTTHUMG00000168270 11 11q23.1-q23.2 RNA binding motif protein 7 protein-coding RBM7 RNA binding motif protein 7 O RNA-binding motif protein 7|RNA-binding protein 7 20121230 -9606 10180 RBM6 - 3G2|DEF-3|DEF3|HLC-11|NY-LU-12|g16 HGNC:9903|MIM:606886|Ensembl:ENSG00000004534|HPRD:06054|Vega:OTTHUMG00000156736 3 3p21.3 RNA binding motif protein 6 protein-coding RBM6 RNA binding motif protein 6 O RNA-binding motif protein 6|RNA-binding protein 6|RNA-binding protein DEF-3|lung cancer antigen NY-LU-12|lung cancer protooncogene 11 20121230 -9606 10181 RBM5 H37 G15|LUCA15|RMB5 HGNC:9902|MIM:606884|Ensembl:ENSG00000003756|HPRD:06052|Vega:OTTHUMG00000156785 3 3p21.3 RNA binding motif protein 5 protein-coding RBM5 RNA binding motif protein 5 O RNA-binding protein 5|putative tumor suppressor LUCA15|renal carcinoma antigen NY-REN-9 20121230 -9606 10184 LHFPL2 - - HGNC:6588|MIM:609718|Ensembl:ENSG00000145685|HPRD:17272 5 5q14.1 lipoma HMGIC fusion partner-like 2 protein-coding LHFPL2 lipoma HMGIC fusion partner-like 2 O LHFP-like protein 2|lipoma HMGIC fusion partner-like 2 protein 20121230 -9606 10186 LHFP - - HGNC:6586|MIM:606710|Ensembl:ENSG00000183722|HPRD:09464|Vega:OTTHUMG00000016767 13 13q12 lipoma HMGIC fusion partner protein-coding LHFP lipoma HMGIC fusion partner O - 20121230 -9606 10187 VDAC1P5 - VDAC3|VDAC5P HGNC:12676 12 12q13.2 voltage-dependent anion channel 1 pseudogene 5 pseudo VDAC1P5 voltage-dependent anion channel 1 pseudogene 5 O - 20121230 -9606 10188 TNK2 - ACK|ACK-1|ACK1|p21cdc42Hs HGNC:19297|MIM:606994|Ensembl:ENSG00000061938|HPRD:06104|Vega:OTTHUMG00000155737 3 3q29 tyrosine kinase, non-receptor, 2 protein-coding TNK2 tyrosine kinase, non-receptor, 2 O activated CDC42 kinase 1|activated Cdc42-associated kinase 1|activated p21cdc42Hs kinase|tyrosine kinase non-receptor protein 2 20121230 -9606 10189 ALYREF - ALY|ALY/REF|BEF|REF|THOC4 HGNC:19071|MIM:604171|Ensembl:ENSG00000183684|HPRD:09168|Vega:OTTHUMG00000160470 17 17q25.3 Aly/REF export factor protein-coding ALYREF Aly/REF export factor O THO complex 4|THO complex subunit 4|ally of AML-1 and LEF-1|bZIP enhancing factor|bZIP-enhancing factor BEF|tho4|transcriptional coactivator Aly/REF 20121230 -9606 10190 TXNDC9 - APACD|PHLP3 HGNC:24110|MIM:612564|Ensembl:ENSG00000115514|HPRD:15592|Vega:OTTHUMG00000130641 2 2q11.2 thioredoxin domain containing 9 protein-coding TXNDC9 thioredoxin domain containing 9 O ATP binding protein associated with cell differentiation|ATP-binding protein associated with cell differentiation|protein 1-4|thioredoxin domain-containing protein 9 20121230 -9606 10193 RNF41 SBBI03 FLRF|NRDP1 HGNC:18401|Ensembl:ENSG00000181852|HPRD:11520|Vega:OTTHUMG00000170328 12 12q13.13 ring finger protein 41 protein-coding RNF41 ring finger protein 41 O E3 ubiquitin-protein ligase NRDP1|fetal liver ring finger|neuregulin receptor degradation protein-1 20121230 -9606 10194 TSHZ1 - CAA|NY-CO-33|SDCCAG33|TSH1 HGNC:10669|MIM:614427|Ensembl:ENSG00000179981|HPRD:15308|Vega:OTTHUMG00000132859 18 18q22.3 teashirt zinc finger homeobox 1 protein-coding TSHZ1 teashirt zinc finger homeobox 1 O antigen NY-CO-33|serologically defined colon cancer antigen 33|teashirt homolog 1 20121230 -9606 10195 ALG3 - CDG1D|CDGS4|D16Ertd36e|NOT56L|Not56 HGNC:23056|MIM:608750|Ensembl:ENSG00000214160|HPRD:03067|Vega:OTTHUMG00000156823 3 3q27.1 asparagine-linked glycosylation 3, alpha-1,3- mannosyltransferase homolog (S. cerevisiae) protein-coding ALG3 asparagine-linked glycosylation 3, alpha-1,3- mannosyltransferase homolog (S. cerevisiae) O Not56-like protein|asparagine-linked glycosylation 3 homolog (S. cerevisiae, alpha-1,3-mannosyltransferase)|asparagine-linked glycosylation 3 homolog (yeast, alpha-1,3-mannosyltransferase)|asparagine-linked glycosylation protein 3 homolog|carbohydrate deficient glycoprotein syndrome type IV|dol-P-Man dependent alpha(1-3)-mannosyltransferase|dol-P-Man-dependent alpha(1-3)-mannosyltransferase|dol-P-Man:Man(5)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase|dolichyl-P-Man:Man(5)GlcNAc(2)-PP-dolichyl mannosyltransferase|dolichyl-phosphate-mannose--glycolipid alpha-mannosyltransferase 20121230 -9606 10196 PRMT3 - HRMT1L3 HGNC:30163|MIM:603190|Ensembl:ENSG00000185238|HPRD:11934|Vega:OTTHUMG00000166022 11 11p15.1 protein arginine methyltransferase 3 protein-coding PRMT3 protein arginine methyltransferase 3 O HMT1 hnRNP methyltransferase-like 3|heterogeneous nuclear ribonucleoprotein methyltransferase-like 3|heterogeneous nuclear ribonucleoprotein methyltransferase-like protein 3|protein arginine N-methyltransferase 3 20121230 -9606 10197 PSME3 - Ki|PA28-gamma|PA28G|PA28gamma|REG-GAMMA HGNC:9570|MIM:605129|Ensembl:ENSG00000131467|HPRD:05500|Vega:OTTHUMG00000180654 17 17q21 proteasome (prosome, macropain) activator subunit 3 (PA28 gamma; Ki) protein-coding PSME3 proteasome (prosome, macropain) activator subunit 3 (PA28 gamma; Ki) O 11S regulator complex gamma subunit|11S regulator complex subunit gamma|Ki antigen|Ki nuclear autoantigen|PA28 gamma variant 5|activator of multicatalytic protease subunit 3|proteasome activator 28 subunit gamma|proteasome activator 28-gamma|proteasome activator complex subunit 3 20121230 -9606 10198 MPHOSPH9 - MPP-9|MPP9 HGNC:7215|MIM:605501|Ensembl:ENSG00000051825|HPRD:12022|Vega:OTTHUMG00000168849 12 12q24.31 M-phase phosphoprotein 9 protein-coding MPHOSPH9 M-phase phosphoprotein 9 O - 20121230 -9606 10199 MPHOSPH10 - CT90|MPP10|MPP10P HGNC:7213|MIM:605503|Ensembl:ENSG00000124383|HPRD:10404|Vega:OTTHUMG00000129715 2 2p13.3 M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) protein-coding MPHOSPH10 M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) O U3 small nucleolar ribonucleoprotein protein MPP10|m phase phosphoprotein 10 20121230 -9606 10200 MPHOSPH6 - MPP|MPP-6|MPP6 HGNC:7214|MIM:605500|Ensembl:ENSG00000135698|HPRD:16111|Vega:OTTHUMG00000137632 16 16q23.3 M-phase phosphoprotein 6 protein-coding MPHOSPH6 M-phase phosphoprotein 6 O - 20121230 -9606 10201 NME6 - IPIA-ALPHA|NDK 6|NM23-H6 HGNC:20567|MIM:608294|Ensembl:ENSG00000172113|HPRD:09219|Vega:OTTHUMG00000133531 3 3p21 NME/NM23 nucleoside diphosphate kinase 6 protein-coding NME6 NME/NM23 nucleoside diphosphate kinase 6 O NDP kinase 6|inhibitor of p53-induced apoptosis-alpha|non-metastatic cells 6, protein expressed in (nucleoside-diphosphate kinase)|nucleoside diphosphate kinase 6 20121230 -9606 10202 DHRS2 - HEP27|SDR25C1 HGNC:18349|Ensembl:ENSG00000100867|HPRD:07483|Vega:OTTHUMG00000028771 14 14q11.2 dehydrogenase/reductase (SDR family) member 2 protein-coding DHRS2 dehydrogenase/reductase (SDR family) member 2 O dehydrogenase/reductase SDR family member 2|dehydrogenase/reductase member 2|dicarbonyl reductase HEP27|protein D|short chain dehydrogenase/reductase family 25C, member 1|short-chain alcohol dehydrogenase family member 20121230 -9606 10203 CALCRL - CGRPR|CRLR HGNC:16709|MIM:114190|Ensembl:ENSG00000064989|HPRD:11809|Vega:OTTHUMG00000132636 2 2q32.1 calcitonin receptor-like protein-coding CALCRL calcitonin receptor-like O CGRP type 1 receptor|calcitonin gene-related peptide type 1 receptor|calcitonin receptor-like receptor 20121230 -9606 10204 NUTF2 - NTF2|PP15 HGNC:13722|MIM:605813|Ensembl:ENSG00000102898|HPRD:12050|Vega:OTTHUMG00000137540 16 16q22.1 nuclear transport factor 2 protein-coding NUTF2 nuclear transport factor 2 O NTF-2|placental protein 15 20121230 -9606 10205 MPZL2 UNQ606/PRO1192 EVA|EVA1 HGNC:3496|MIM:604873|Ensembl:ENSG00000149573|HPRD:05340|Vega:OTTHUMG00000166967 11 11q24 myelin protein zero-like 2 protein-coding MPZL2 myelin protein zero-like 2 O epithelial V-like antigen 1|myelin protein zero-like protein 2 20121230 -9606 10206 TRIM13 - CAR|DLEU5|LEU5|RFP2|RNF77 HGNC:9976|MIM:605661|Ensembl:ENSG00000204977|HPRD:10414|Vega:OTTHUMG00000016926 13 13q14 tripartite motif containing 13 protein-coding TRIM13 tripartite motif containing 13 O B-cell chronic lymphocytic leukemia tumor suppressor Leu5|CLL-associated RING finger|E3 ubiquitin-protein ligase TRIM13|RING finger protein 77|leukemia-associated protein 5|putative tumor suppressor RFP2|ret finger protein 2|tripartite motif protein 13|tripartite motif-containing 13|tripartite motif-containing protein 13 20121230 -9606 10207 INADL RP4-537K17.1 Cipp|InaD-like|PATJ|hINADL HGNC:28881|MIM:603199|Ensembl:ENSG00000132849|HPRD:04434|Vega:OTTHUMG00000008560 1 1p31.3 InaD-like (Drosophila) protein-coding INADL InaD-like (Drosophila) O PALS1-associated tight junction protein|PDZ domain protein|channel-interacting PDZ domain protein|inaD-like protein|inactivation no after-potential D-like protein|protein associated to tight junctions 20121230 -9606 10208 USPL1 - C13orf22|D13S106E|RP11-121O19.1|bA121O19.1 HGNC:20294|Ensembl:ENSG00000132952|HPRD:09833|Vega:OTTHUMG00000016675 13 13q12-q14 ubiquitin specific peptidase like 1 protein-coding USPL1 ubiquitin specific peptidase like 1 O SUMO-specific isopeptidase USPL1|highly charged protein|ubiquitin-specific peptidase-like protein 1 20121230 -9606 10209 EIF1 - A121|EIF-1|EIF1A|ISO1|SUI1 HGNC:3249|Ensembl:ENSG00000173812|HPRD:15449|Vega:OTTHUMG00000133492 17 17q21.2 eukaryotic translation initiation factor 1 protein-coding EIF1 eukaryotic translation initiation factor 1 O protein translation factor SUI1 homolog|sui1iso1 20121230 -9606 10210 TOPORS RP11-205M20.5 LUN|P53BP3|RP31|TP53BPL HGNC:21653|MIM:609507|Ensembl:ENSG00000197579|HPRD:11642|Vega:OTTHUMG00000019743 9 9p21 topoisomerase I binding, arginine/serine-rich, E3 ubiquitin protein ligase protein-coding TOPORS topoisomerase I binding, arginine/serine-rich, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase Topors|SUMO1-protein E3 ligase Topors|topoisomerase I-binding RING finger protein|tumor suppressor p53-binding protein 3 20121230 -9606 10211 FLOT1 DADB-118P11.2 - HGNC:3757|MIM:606998|Ensembl:ENSG00000137312|HPRD:06105|Vega:OTTHUMG00000031151 6 6p21.3 flotillin 1 protein-coding FLOT1 flotillin 1 O flotillin-1|integral membrane component of caveolae 20121230 -9606 10212 DDX39A - BAT1|BAT1L|DDX39|DDXL|URH49 HGNC:17821|Ensembl:ENSG00000123136|HPRD:10861|Vega:OTTHUMG00000182181 19 19p13.12 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39A protein-coding DDX39A DEAD (Asp-Glu-Ala-Asp) box polypeptide 39A O ATP-dependent RNA helicase DDX39A|DEAD (Asp-Glu-Ala-Asp) box polypeptide 39 transcript|DEAD box protein 39|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 39|UAP56-related helicase, 49 kDa|nuclear RNA helicase URH49|nuclear RNA helicase, DECD variant of DEAD box family 20121230 -9606 10213 PSMD14 - PAD1|POH1|RPN11 HGNC:16889|MIM:607173|Ensembl:ENSG00000115233|HPRD:06208|Vega:OTTHUMG00000153882 2 2q24.2 proteasome (prosome, macropain) 26S subunit, non-ATPase, 14 protein-coding PSMD14 proteasome (prosome, macropain) 26S subunit, non-ATPase, 14 O 26S proteasome non-ATPase regulatory subunit 14|26S proteasome regulatory subunit rpn11|26S proteasome-associated PAD1 homolog 1 20121230 -9606 10214 SSX3 RP11-344N17.4 CT5.3 HGNC:11337|MIM:300325|Ensembl:ENSG00000165584|HPRD:02265|Vega:OTTHUMG00000021489 X Xp11.23 synovial sarcoma, X breakpoint 3 protein-coding SSX3 synovial sarcoma, X breakpoint 3 O cancer/testis antigen 5.3|protein SSX3 20121230 -9606 10215 OLIG2 - BHLHB1|OLIGO2|PRKCBP2|RACK17|bHLHe19 HGNC:9398|MIM:606386|Ensembl:ENSG00000205927|HPRD:07334|Vega:OTTHUMG00000065032 21 21q22.11 oligodendrocyte lineage transcription factor 2 protein-coding OLIG2 oligodendrocyte lineage transcription factor 2 O basic domain, helix-loop-helix protein, class B, 1|class B basic helix-loop-helix protein 1|class E basic helix-loop-helix protein 19|human protein kinase C-binding protein RACK17|oligodendrocyte transcription factor 2|oligodendrocyte-specific bHLH transcription factor 2|protein kinase C-binding protein 2 20121230 -9606 10216 PRG4 GS1-174L6.2 CACP|HAPO|JCAP|MSF|SZP|bG174L6.2 HGNC:9364|MIM:604283|Ensembl:ENSG00000116690|HPRD:05047|Vega:OTTHUMG00000035574 1 1q25-q31 proteoglycan 4 protein-coding PRG4 proteoglycan 4 O articular superficial zone protein|bG174L6.2 (MSF: megakaryocyte stimulating factor )|lubricin|megakaryocyte stimulating factor|megakaryocyte-stimulating factor|superficial zone proteoglycan 20121230 -9606 10217 CTDSPL - C3orf8|HYA22|PSR1|RBSP3|SCP3 HGNC:16890|MIM:608592|Ensembl:ENSG00000144677|Vega:OTTHUMG00000155942 3 3p21.3 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase-like protein-coding CTDSPL CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase-like O CTD small phosphatase-like protein|CTDSP-like|NIF-like protein|NLI-interacting factor 1|RB protein serine phosphatase from chromosome 3|carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 3|nuclear LIM interactor-interacting factor 1|small C-terminal domain phosphatase 3|small CTD phosphatase 3 20121230 -9606 10218 ANGPTL7 UNQ313/PRO356 AngX|CDT6|RP4-647M16.2|dJ647M16.1 HGNC:24078|Ensembl:ENSG00000171819|HPRD:10818|Vega:OTTHUMG00000002002 1 1p36 angiopoietin-like 7 protein-coding ANGPTL7 angiopoietin-like 7 O angiopoietin-like factor (CDT6)|angiopoietin-like protein 7|angiopoietin-related protein 7|cornea-derived transcript 6 protein 20121230 -9606 10219 KLRG1 - 2F1|CLEC15A|MAFA|MAFA-2F1|MAFA-L|MAFA-LIKE HGNC:6380|MIM:604874|Ensembl:ENSG00000139187|HPRD:16076|Vega:OTTHUMG00000168277 12 12p13.31 killer cell lectin-like receptor subfamily G, member 1 protein-coding KLRG1 killer cell lectin-like receptor subfamily G, member 1 O C-type lectin domain family 15 member A|C-type lectin domain family 15, member A|ITIM-containing receptor MAFA-L|MAFA-like receptor|killer cell lectin-like receptor subfamily G member 1|mast cell function-associated antigen (ITIM-containing) 20121230 -9606 10220 GDF11 - BMP-11|BMP11 HGNC:4216|MIM:603936|Ensembl:ENSG00000135414|HPRD:04895|Vega:OTTHUMG00000170188 12 12q13.2 growth differentiation factor 11 protein-coding GDF11 growth differentiation factor 11 O GDF-11|bone morphogenetic protein 11|growth/differentiation factor 11 20121230 -9606 10221 TRIB1 - C8FW|GIG2|SKIP1|TRB1 HGNC:16891|MIM:609461|Ensembl:ENSG00000173334|HPRD:09863|Vega:OTTHUMG00000165007 8 8q24.13 tribbles homolog 1 (Drosophila) protein-coding TRIB1 tribbles homolog 1 (Drosophila) O G-protein-coupled receptor induced protein|G-protein-coupled receptor-induced gene 2 protein|G-protein-coupled receptor-induced protein 2|GIG-2|TRB-1|phosphoprotein regulated by mitogenic pathways|tribbles homolog 1|tribbles-like protein 1 20121230 -9606 10223 GPA33 RP11-102C16.2 A33 HGNC:4445|MIM:602171|Ensembl:ENSG00000143167|HPRD:03704|Vega:OTTHUMG00000034435 1 1q24.1 glycoprotein A33 (transmembrane) protein-coding GPA33 glycoprotein A33 (transmembrane) O cell surface A33 antigen|transmembrane glycoprotein A33 20121230 -9606 10224 ZNF443 - ZK1 HGNC:20878|MIM:606697|Ensembl:ENSG00000180855|HPRD:09460|Vega:OTTHUMG00000156404 19 19p13.2 zinc finger protein 443 protein-coding ZNF443 zinc finger protein 443 O Kruppel-type zinc finger (C2H2)|krueppel-type zinc finger protein ZK1 20121230 -9606 10225 CD96 - TACTILE HGNC:16892|MIM:606037|Ensembl:ENSG00000153283|HPRD:06916|Vega:OTTHUMG00000159275 3 3q13.13-q13.2 CD96 molecule protein-coding CD96 CD96 molecule O CD96 antigen|T cell activation, increased late expression|T-cell surface protein tactile|cell surface antigen CD96|t cell-activated increased late expression protein 20121230 -9606 10226 PLIN3 - M6PRBP1|PP17|TIP47 HGNC:16893|MIM:602702|Ensembl:ENSG00000105355|HPRD:04080|Vega:OTTHUMG00000180249 19 19p13.3 perilipin 3 protein-coding PLIN3 perilipin 3 O 47 kDa MPR-binding protein|cargo selection protein TIP47|mannose-6-phosphate receptor-binding protein 1|perilipin-3|placental protein 17|tail-interacting protein, 47 kD 20121230 -9606 10227 MFSD10 RP11-520M5.2 TETRAN|TETTRAN HGNC:16894|MIM:610977|Ensembl:ENSG00000109736|HPRD:10265|Vega:OTTHUMG00000122081 4 4p16.3 major facilitator superfamily domain containing 10 protein-coding MFSD10 major facilitator superfamily domain containing 10 O major facilitator superfamily domain-containing protein 10|tetracycline transporter-like protein 20121230 -9606 10228 STX6 - - HGNC:11441|MIM:603944|Ensembl:ENSG00000135823|HPRD:07231|Vega:OTTHUMG00000035179 1 1q25.3 syntaxin 6 protein-coding STX6 syntaxin 6 O syntaxin-6 20121230 -9606 10229 COQ7 - CAT5|CLK-1|CLK1 HGNC:2244|MIM:601683|Ensembl:ENSG00000167186|HPRD:03401|Vega:OTTHUMG00000131455 16 16p12.3 coenzyme Q7 homolog, ubiquinone (yeast) protein-coding COQ7 coenzyme Q7 homolog, ubiquinone (yeast) O COQ7 coenzyme Q, 7 homolog ubiquinone|coenzyme Q biosynthesis protein 7 homolog|placental protein KG-20|timing protein clk-1 homolog|ubiquinone biosynthesis protein COQ7 homolog 20121230 -9606 10230 NBR2 - NCRNA00192 HGNC:20691|HPRD:10115 17 17q21 neighbor of BRCA1 gene 2 (non-protein coding) miscRNA NBR2 neighbor of BRCA1 gene 2 (non-protein coding) O - 20121230 -9606 10231 RCAN2 RP11-38F19.1 CSP2|DSCR1L1|MCIP2|RCN2|ZAKI-4|ZAKI4 HGNC:3041|MIM:604876|Ensembl:ENSG00000172348|HPRD:05342|Vega:OTTHUMG00000014782 6 6p12.3 regulator of calcineurin 2 protein-coding RCAN2 regulator of calcineurin 2 O Down syndrome candidate region 1-like 1|Down syndrome critical region gene 1-like 1|calcipressin-2|myocyte-enriched calcineurin-interacting protein 2|thyroid hormone-responsive (skin fibroblasts)|thyroid hormone-responsive protein ZAKI-4 20121230 -9606 10232 MSLN - MPF|SMRP HGNC:7371|MIM:601051|Ensembl:ENSG00000102854|HPRD:03030|Vega:OTTHUMG00000047992 16 16p13.3 mesothelin protein-coding MSLN mesothelin O CAK1 antigen|megakaryocyte potentiating factor|pre-pro-megakaryocyte-potentiating factor|soluble MPF mesothelin related protein 20121230 -9606 10233 LRRC23 - LRPB7 HGNC:19138|Ensembl:ENSG00000010626|HPRD:09818|Vega:OTTHUMG00000156668 12 12p13 leucine rich repeat containing 23 protein-coding LRRC23 leucine rich repeat containing 23 O leucine-rich protein B7|leucine-rich repeat-containing protein 23 20121230 -9606 10234 LRRC17 UNQ3076/PRO9909 P37NB HGNC:16895|Ensembl:ENSG00000128606|HPRD:10059|Vega:OTTHUMG00000157210 7 7q22.1 leucine rich repeat containing 17 protein-coding LRRC17 leucine rich repeat containing 17 O 37 kDa leucine-rich repeat (LRR) protein|leucine-rich repeat-containing protein 17 20121230 -9606 10235 RASGRP2 - CALDAG-GEFI|CDC25L HGNC:9879|MIM:605577|Ensembl:ENSG00000068831|HPRD:09278|Vega:OTTHUMG00000045420 11 11q13 RAS guanyl releasing protein 2 (calcium and DAG-regulated) protein-coding RASGRP2 RAS guanyl releasing protein 2 (calcium and DAG-regulated) O F25B3.3 kinase-like protein|RAS guanyl nucleotide-releasing protein 2|RAS guanyl-releasing protein 2|calcium and DAG-regulated guanine nucleotide exchange factor I|calcium and diacylglycerol-regulated guanine nucleotide exchange factor I|cdc25-like protein|guanine exchange factor MCG7|hCDC25L 20121230 -9606 10236 HNRNPR - HNRPR|hnRNP R|hnRNP-R HGNC:5047|MIM:607201|Ensembl:ENSG00000125944|HPRD:06228|Vega:OTTHUMG00000003224 1 1p36.12 heterogeneous nuclear ribonucleoprotein R protein-coding HNRNPR heterogeneous nuclear ribonucleoprotein R O - 20121230 -9606 10237 SLC35B1 - UGTREL1 HGNC:20798|MIM:610790|Ensembl:ENSG00000121073|HPRD:10237|Vega:OTTHUMG00000161638 17 17q21.33 solute carrier family 35, member B1 protein-coding SLC35B1 solute carrier family 35, member B1 O UDP-galactose transporter related|UDP-galactose transporter-related protein 1|hUGTrel1|solute carrier family 35 member B1 20121230 -9606 10238 DCAF7 - AN11|HAN11|SWAN-1|WDR68 HGNC:30915|MIM:605973|Ensembl:ENSG00000136485|HPRD:09340 17 17q23.3 DDB1 and CUL4 associated factor 7 protein-coding DCAF7 DDB1 and CUL4 associated factor 7 O DDB1- and CUL4-associated factor 7|WD repeat domain 68|WD repeat-containing protein 68|WD repeat-containing protein An11 homolog|WD-repeat protein|human anthocyanin|seven-WD-repeat protein of the AN11 family-1 20121230 -9606 10239 AP3S2 - AP3S3|sigma3b HGNC:571|MIM:602416|Ensembl:ENSG00000157823|Ensembl:ENSG00000250021|HPRD:03880|Vega:OTTHUMG00000149811|Vega:OTTHUMG00000162161 15 15q26.1 adaptor-related protein complex 3, sigma 2 subunit protein-coding AP3S2 adaptor-related protein complex 3, sigma 2 subunit O AP-3 complex subunit sigma-2|AP-3 complex subunit sigma-3B|adaptor complex sigma3B|clathrin-associated/assembly/adaptor protein, small 4, 22-kD|sigma-3B-adaptin|sigma-adaptin 3b 20121230 -9606 10240 MRPS31 - IMOGN38|MRP-S31|S31mt HGNC:16632|MIM:611992|Ensembl:ENSG00000102738|HPRD:10098|Vega:OTTHUMG00000016777 13 13q14.11 mitochondrial ribosomal protein S31 protein-coding MRPS31 mitochondrial ribosomal protein S31 O 28S ribosomal protein S31, mitochondrial|imogen 38 20121230 -9606 10241 CALCOCO2 - NDP52 HGNC:29912|MIM:604587|Ensembl:ENSG00000136436|HPRD:06846|Vega:OTTHUMG00000160505 17 17q21.32 calcium binding and coiled-coil domain 2 protein-coding CALCOCO2 calcium binding and coiled-coil domain 2 O antigen nuclear dot 52 kDa protein|calcium-binding and coiled-coil domain-containing protein 2|nuclear domain 10 protein 52|nuclear domain 10 protein NDP52|nuclear dot protein 52 20121230 -9606 10242 KCNMB2 hCG_1646471 - HGNC:6286|MIM:605214|Ensembl:ENSG00000197584|HPRD:05557|Vega:OTTHUMG00000157264 3 3q26.32 potassium large conductance calcium-activated channel, subfamily M, beta member 2 protein-coding KCNMB2 potassium large conductance calcium-activated channel, subfamily M, beta member 2 O BK channel subunit beta-2|BKbeta2|MaxiK channel beta 2 subunit|calcium-activated potassium channel subunit beta-2|calcium-activated potassium channel, subfamily M subunit beta-2|charybdotoxin receptor subunit beta-2|hCG1646471|hbeta2|hbeta3|k(VCA)beta-2|large conductance calcium-activated potassium channel beta 2 subunit|large-conductance Ca2+-activated K+ channel beta2 subunit|maxi K channel subunit beta-2|slo-beta-2 20121230 -9606 10243 GPHN - GEPH|GPH|GPHRYN|HKPX1 HGNC:15465|MIM:603930|Ensembl:ENSG00000171723|HPRD:04893|Vega:OTTHUMG00000029785 14 14q23.3 gephyrin protein-coding GPHN gephyrin O - 20121230 -9606 10244 RABEPK RP11-65N13.1 RAB9P40|bA65N13.1|p40 HGNC:16896|MIM:605962|Ensembl:ENSG00000136933|HPRD:09337|Vega:OTTHUMG00000020674 9 9q33.3 Rab9 effector protein with kelch motifs protein-coding RABEPK Rab9 effector protein with kelch motifs O 40 kDa Rab9 effector protein|Rab9 effector p40|rab9 effector protein with kelch motifs 20121230 -9606 10245 TIMM17B JM3 DXS9822|TIM17B HGNC:17310|MIM:300249|Ensembl:ENSG00000126768|HPRD:02218|Vega:OTTHUMG00000034498 X Xp11.23 translocase of inner mitochondrial membrane 17 homolog B (yeast) protein-coding TIMM17B translocase of inner mitochondrial membrane 17 homolog B (yeast) O inner mitochondrial membrane preprotein translocase|mitochondrial import inner membrane translocase subunit Tim17-B 20121230 -9606 10246 SLC17A2 - NPT3 HGNC:10930|MIM:611049|Ensembl:ENSG00000112337|HPRD:10232|Vega:OTTHUMG00000014413 6 6p21.3 solute carrier family 17 (sodium phosphate), member 2 protein-coding SLC17A2 solute carrier family 17 (sodium phosphate), member 2 O Na(+)/PI cotransporter 3|sodium phosphate transporter 3|sodium-dependent phosphate transport protein 3|sodium/phosphate cotransporter 3|solute carrier family 17 (vesicular glutamate transporter), member 2|solute carrier family 17 member 2 20121230 -9606 10247 HRSP12 - P14.5|PSP|UK114 HGNC:16897|MIM:602487|Ensembl:ENSG00000132541|HPRD:03924|Vega:OTTHUMG00000164670 8 8q22 heat-responsive protein 12 protein-coding HRSP12 heat-responsive protein 12 O 14.5 kDa translational inhibitor protein|UK114 antigen homolog|perchloric acid-soluble protein|ribonuclease UK114|translational inhibitor p14.5|translational inhibitor protein p14.5 20121230 -9606 10248 POP7 tcag7.985 0610037N12Rik|RPP2|RPP20 HGNC:19949|MIM:606113|Ensembl:ENSG00000172336|HPRD:09357|Vega:OTTHUMG00000044311 7 7q22 processing of precursor 7, ribonuclease P/MRP subunit (S. cerevisiae) protein-coding POP7 processing of precursor 7, ribonuclease P/MRP subunit (S. cerevisiae) O POP7 (processing of precursor, S. cerevisiae) homolog|RNaseP protein p20|hPOP7|processing of precursor 7, ribonuclease P subunit|ribonuclease P protein subunit p20|ribonucleases P/MRP protein subunit POP7 homolog 20121230 -9606 10249 GLYAT - ACGNAT|CAT|GAT HGNC:13734|MIM:607424|Ensembl:ENSG00000149124|HPRD:07603|Vega:OTTHUMG00000167429 11 11q12.1 glycine-N-acyltransferase protein-coding GLYAT glycine-N-acyltransferase O AAc|HRP-1(CLP)|acyl-CoA:glycine N-acyltransferase|aralkyl acyl-CoA N-acyltransferase|aralkyl acyl-CoA:amino acid N-acyltransferase|aralkyl-CoA N-acyltransferase|benzoyl-coenzyme A:glycine N-acyltransferase|glycine N-acyltransferase|glycine N-benzoyltransferase 20121230 -9606 10250 SRRM1 - 160-KD|POP101|SRM160 HGNC:16638|MIM:605975|Ensembl:ENSG00000133226|HPRD:10441|Vega:OTTHUMG00000003320 1 1p36.11 serine/arginine repetitive matrix 1 protein-coding SRRM1 serine/arginine repetitive matrix 1 O SR-related nuclear matrix protein of 160 kDa|Ser/Arg-related nuclear matrix protein|serine/arginine repetitive matrix protein 1 20121230 -9606 10251 SPRY3 - HSPRY3|spry-3 HGNC:11271|MIM:300531|Ensembl:ENSG00000168939|HPRD:03917|Vega:OTTHUMG00000022675 X|Y Xq28 and Yq12 sprouty homolog 3 (Drosophila) protein-coding SPRY3 sprouty homolog 3 (Drosophila) O antagonist of FGF signaling|protein sprouty homolog 3 20121230 -9606 10252 SPRY1 - hSPRY1 HGNC:11269|MIM:602465|Ensembl:ENSG00000164056|HPRD:06782|Vega:OTTHUMG00000133071 4 4q28.1 sprouty homolog 1, antagonist of FGF signaling (Drosophila) protein-coding SPRY1 sprouty homolog 1, antagonist of FGF signaling (Drosophila) O protein sprouty homolog 1|sprouty, Drosophila, homolog of, 1 (antagonist of FGF signaling)|spry-1 20121230 -9606 10253 SPRY2 - hSPRY2 HGNC:11270|MIM:602466|Ensembl:ENSG00000136158|HPRD:03916|Vega:OTTHUMG00000017140 13 13q31.1 sprouty homolog 2 (Drosophila) protein-coding SPRY2 sprouty homolog 2 (Drosophila) O protein sprouty homolog 2|sprouty 2|spry-2 20121230 -9606 10254 STAM2 - Hbp|STAM2A|STAM2B HGNC:11358|MIM:606244|Ensembl:ENSG00000115145|HPRD:05876|Vega:OTTHUMG00000131885 2 2q23.3 signal transducing adaptor molecule (SH3 domain and ITAM motif) 2 protein-coding STAM2 signal transducing adaptor molecule (SH3 domain and ITAM motif) 2 O HSE1 homolog|Hrs-binding protein|STAM-2|STAM-like protein containing SH3 and ITAM domains 2|signal transducing adapter molecule 2 20121230 -9606 10255 HCG9 DASS-101N5.10-001 HCGIX|HCGIX4 HGNC:21243|HPRD:17092 6 6p21.3 HLA complex group 9 (non-protein coding) miscRNA HCG9 HLA complex group 9 (non-protein coding) O - 20121230 -9606 10256 CNKSR1 - CNK|CNK1|KSR HGNC:19700|MIM:603272|Ensembl:ENSG00000142675|Vega:OTTHUMG00000007541 1 1p36.11 connector enhancer of kinase suppressor of Ras 1 protein-coding CNKSR1 connector enhancer of kinase suppressor of Ras 1 O CNK homolog protein 1|connector enhancer of KSR 1|connector enhancer of kinase suppressor of ras 1|hCNK1 20121230 -9606 10257 ABCC4 RP11-74A12.1 EST170205|MOAT-B|MOATB|MRP4 HGNC:55|MIM:605250|Ensembl:ENSG00000125257|HPRD:05583|Vega:OTTHUMG00000017216 13 13q32 ATP-binding cassette, sub-family C (CFTR/MRP), member 4 protein-coding ABCC4 ATP-binding cassette, sub-family C (CFTR/MRP), member 4 O ATP-binding cassette sub-family C member 4|MRP/cMOAT-related ABC transporter|bA464I2.1 (ATP-binding cassette, sub-family C (CFTR/MRP), member 4)|canalicular multispecific organic anion transporter (ABC superfamily)|multi-specific organic anion transporter B|multidrug resistance-associated protein 4|multispecific organic anion transporter B 20121230 -9606 10260 DENND4A - IRLB|MYCPBP HGNC:24321|MIM:600382|Ensembl:ENSG00000174485|HPRD:02662|Vega:OTTHUMG00000172635 15 15q22.31 DENN/MADD domain containing 4A protein-coding DENND4A DENN/MADD domain containing 4A O C-myc promoter-binding protein|DENN domain-containing protein 4A|c-myc promoter binding protein 20121230 -9606 10261 IGSF6 - DORA HGNC:5953|MIM:606222|Ensembl:ENSG00000140749|HPRD:06938|Vega:OTTHUMG00000090709 16 16p12.2 immunoglobulin superfamily, member 6 protein-coding IGSF6 immunoglobulin superfamily, member 6 O down-regulated by activation (immunoglobulin superfamily)|immunoglobulin superfamily member 6 20121230 -9606 10262 SF3B4 RP11-196G18.20-002 AFD1|Hsh49|SAP49|SF3b49 HGNC:10771|MIM:605593|Ensembl:ENSG00000143368|HPRD:12028|Vega:OTTHUMG00000012208 1 1q21.2 splicing factor 3b, subunit 4, 49kDa protein-coding SF3B4 splicing factor 3b, subunit 4, 49kDa O SAP 49|SF3b50|pre-mRNA-splicing factor SF3b 49 kDa subunit|spliceosomal protein|spliceosome-associated protein (U2 snRNP)|spliceosome-associated protein 49|splicing factor 3B subunit 4 20121230 -9606 10263 CDK2AP2 - DOC-1R|p14 HGNC:30833|Ensembl:ENSG00000167797|HPRD:13242|Vega:OTTHUMG00000167676 11 11q13 cyclin-dependent kinase 2 associated protein 2 protein-coding CDK2AP2 cyclin-dependent kinase 2 associated protein 2 O CDK2-associated protein 2|DOC-1-related protein|cyclin-dependent kinase 2-associated protein 2|tumor suppressor deleted in oral cancer related 1 20121230 -9606 10265 IRX5 - HMMS|IRX-2a|IRXB2 HGNC:14361|MIM:606195|Ensembl:ENSG00000176842|HPRD:08395|Vega:OTTHUMG00000133201 16 16q12.2 iroquois homeobox 5 protein-coding IRX5 iroquois homeobox 5 O homeodomain protein IRX-2A|homeodomain protein IRXB2|iroquois-class homeodomain protein IRX-5 20121230 -9606 10266 RAMP2 - - HGNC:9844|MIM:605154|Ensembl:ENSG00000131477|HPRD:05516|Vega:OTTHUMG00000180648 17 17q12-q21.1 receptor (G protein-coupled) activity modifying protein 2 protein-coding RAMP2 receptor (G protein-coupled) activity modifying protein 2 O CRLR activity-modifying protein 2|calcitonin receptor-like receptor activity modifying protein 2|calcitonin-receptor-like receptor activity-modifying protein 2|receptor (calcitonin) activity modifying protein 2|receptor activity modifying protein 2|receptor activity-modifying protein 2|receptor-activity-modifying protein 2 20121230 -9606 10267 RAMP1 - - HGNC:9843|MIM:605153|Ensembl:ENSG00000132329|HPRD:05515|Vega:OTTHUMG00000133337 2 2q36-q37.1 receptor (G protein-coupled) activity modifying protein 1 protein-coding RAMP1 receptor (G protein-coupled) activity modifying protein 1 O CRLR activity-modifying protein 1|calcitonin receptor-like receptor activity modifying protein 1|calcitonin-receptor-like receptor activity-modifying protein 1|receptor (calcitonin) activity modifying protein 1|receptor activity modifying protein 1|receptor activity-modifying protein 1 20121230 -9606 10268 RAMP3 - - HGNC:9845|MIM:605155|Ensembl:ENSG00000122679|HPRD:05517|Vega:OTTHUMG00000023729 7 7p13-p12 receptor (G protein-coupled) activity modifying protein 3 protein-coding RAMP3 receptor (G protein-coupled) activity modifying protein 3 O CRLR activity-modifying protein 3|calcitonin receptor-like receptor activity modifying protein 3|calcitonin-receptor-like receptor activity-modifying protein 3|receptor (calcitonin) activity modifying protein 3|receptor activity modifying protein 3|receptor activity-modifying protein 3|receptor-activity-modifying protein 3 20121230 -9606 10269 ZMPSTE24 - FACE-1|FACE1|HGPS|PRO1|STE24|Ste24p HGNC:12877|MIM:606480|Ensembl:ENSG00000084073|HPRD:07349|Vega:OTTHUMG00000005762 1 1p34 zinc metallopeptidase STE24 protein-coding ZMPSTE24 zinc metallopeptidase STE24 O CAAX prenyl protease 1 homolog|farnesylated proteins-converting enzyme 1|prenyl protein-specific endoprotease 1|zinc metallopeptidase STE24 homolog|zinc metalloproteinase Ste24 homolog 20121230 -9606 10270 AKAP8 - AKAP 95|AKAP-8|AKAP-95|AKAP95 HGNC:378|MIM:604692|Ensembl:ENSG00000105127|HPRD:05258 19 19p13.1 A kinase (PRKA) anchor protein 8 protein-coding AKAP8 A kinase (PRKA) anchor protein 8 O A-kinase anchor protein 8|A-kinase anchor protein, 95kDa 20121230 -9606 10272 FSTL3 UNQ674/PRO1308 FLRG|FSRP HGNC:3973|MIM:605343|Ensembl:ENSG00000070404|HPRD:05632|Vega:OTTHUMG00000180593 19 19p13 follistatin-like 3 (secreted glycoprotein) protein-coding FSTL3 follistatin-like 3 (secreted glycoprotein) O follistatin-like protein 3|follistatin-related gene protein|follistatin-related protein 3 20121230 -9606 10273 STUB1 LA16c-313D11.6 CHIP|HSPABP2|NY-CO-7|SDCCAG7|UBOX1 HGNC:11427|MIM:607207|Ensembl:ENSG00000103266|HPRD:06232|Vega:OTTHUMG00000121140 16 16p13.3 STIP1 homology and U-box containing protein 1, E3 ubiquitin protein ligase protein-coding STUB1 STIP1 homology and U-box containing protein 1, E3 ubiquitin protein ligase O CLL-associated antigen KW-8|E3 ubiquitin-protein ligase CHIP|STIP1 homology and U box-containing protein 1|antigen NY-CO-7|carboxy terminus of Hsp70-interacting protein|heat shock protein A binding protein 2 (c-terminal)|serologically defined colon cancer antigen 7 20121230 -9606 10274 STAG1 - SA1|SCC3A HGNC:11354|MIM:604358|Ensembl:ENSG00000118007|HPRD:05076|Vega:OTTHUMG00000159798 3 3q22.3 stromal antigen 1 protein-coding STAG1 stromal antigen 1 O SCC3 homolog 1|cohesin subunit SA-1|nuclear protein stromal antigen 1 20121230 -9606 10276 NET1 RP11-116G8.1 ARHGEF8|NET1A HGNC:14592|MIM:606450|Ensembl:ENSG00000173848|HPRD:07342|Vega:OTTHUMG00000017596 10 10p15 neuroepithelial cell transforming 1 protein-coding NET1 neuroepithelial cell transforming 1 O Rho guanine nucleotide exchange factor (GEF) 8|guanine nucleotide regulatory protein (oncogene)|neuroepithelial cell-transforming gene 1 protein|neuroepithelioma transforming gene 1|p65 Net1 proto-oncogene protein|small GTP-binding protein regulator 20121230 -9606 10277 UBE4B - E4|HDNB1|UBOX3|UFD2|UFD2A HGNC:12500|MIM:613565|Ensembl:ENSG00000130939|HPRD:11659|Vega:OTTHUMG00000001797 1 1p36.3 ubiquitination factor E4B protein-coding UBE4B ubiquitination factor E4B O UFD2A-III/UBE4B-III splice isoform|homologous to yeast UFD2|homozygously deleted in neuroblastoma 1|homozygously deleted in neuroblastoma-1|ubiquitin conjugation factor E4 B|ubiquitin fusion degradation protein 2|ubiquitin-fusion degradation protein 2|ubiquitination factor E4B (UFD2 homolog, yeast)|ubiquitination factor E4B (homologous to yeast UFD2) 20121230 -9606 10278 EFS - CAS3|CASS3|EFS1|EFS2|HEFS|SIN HGNC:16898|MIM:609906|Ensembl:ENSG00000100842|HPRD:09932|Vega:OTTHUMG00000028741 14 14q11.2-q12 embryonal Fyn-associated substrate protein-coding EFS embryonal Fyn-associated substrate O Cas scaffolding protein family member 3|signal transduction protein (SH3 containing) 20121230 -9606 10279 PRSS16 XXbac-BPG24O18.5 TSSP HGNC:9480|MIM:607169|Ensembl:ENSG00000112812|HPRD:06205|Vega:OTTHUMG00000016167 6 6p21 protease, serine, 16 (thymus) protein-coding PRSS16 protease, serine, 16 (thymus) O serine protease 16|thymus specific serine peptidase|thymus-specific serine protease 20121230 -9606 10280 SIGMAR1 RP11-443P11.3 ALS16|OPRS1|SR-BP1|SRBP HGNC:8157|MIM:601978|Ensembl:ENSG00000147955|HPRD:03580|Vega:OTTHUMG00000019829 9 9p13.3 sigma non-opioid intracellular receptor 1 protein-coding SIGMAR1 sigma non-opioid intracellular receptor 1 O SIG-1R|SR-BP|SR31747 binding protein 1|aging-associated gene 8 protein|hSigmaR1|sigma 1-type opioid receptor|sigma1R 20121230 -9606 10281 DSCR4 - DCRB|DSCRB HGNC:3045|MIM:604829|Ensembl:ENSG00000184029|HPRD:05318|Vega:OTTHUMG00000086673 21 21q22.2 Down syndrome critical region gene 4 protein-coding DSCR4 Down syndrome critical region gene 4 O Down syndrome critical region protein 4|Down syndrome critical region protein B 20121230 -9606 10282 BET1 - HBET1 HGNC:14562|MIM:605456|Ensembl:ENSG00000105829|HPRD:16107|Vega:OTTHUMG00000023487 7 7q21.1-q22 blocked early in transport 1 homolog (S. cerevisiae) protein-coding BET1 blocked early in transport 1 homolog (S. cerevisiae) O BET1 homolog|Bet1p homolog|Golgi vesicular membrane trafficking protein p18|golgi vesicular membrane-trafficking protein p18 20121230 -9606 10283 CWC27 UNQ438/PRO871 NY-CO-10|SDCCAG10 HGNC:10664|Ensembl:ENSG00000153015|HPRD:11541|Vega:OTTHUMG00000074069 5 5q12.3 CWC27 spliceosome-associated protein homolog (S. cerevisiae) protein-coding CWC27 CWC27 spliceosome-associated protein homolog (S. cerevisiae) O PPIase CWC27|PPIase SDCCAG10|antigen NY-CO-10|peptidyl-prolyl cis-trans isomerase CWC27 homolog|peptidyl-prolyl cis-trans isomerase SDCCAG10|serologically defined colon cancer antigen 10 20121230 -9606 10284 SAP18 GIG38 2HOR0202|SAP18P HGNC:10530|MIM:602949|Ensembl:ENSG00000150459|HPRD:04256|Vega:OTTHUMG00000016535 13 13q12.11 Sin3A-associated protein, 18kDa protein-coding SAP18 Sin3A-associated protein, 18kDa O 18 kDa Sin3-associated polypeptide|cell growth inhibiting protein 38|cell growth-inhibiting gene 38 protein|cell growth-inhibiting protein 38|histone deacetlyase complex subunit SAP18|histone deacetylase complex subunit SAP18|sin3-associated polypeptide p18|sin3-associated polypeptide, 18 kDa|sin3-associated polypeptide, p18 20121230 -9606 10285 SMNDC1 - SMNR|SPF30 HGNC:16900|MIM:603519|Ensembl:ENSG00000119953|HPRD:04627|Vega:OTTHUMG00000019036 10 10q23 survival motor neuron domain containing 1 protein-coding SMNDC1 survival motor neuron domain containing 1 O 30 kDa splicing factor SMNrp|SMN-related protein|splicing factor 30, survival of motor neuron-related|survival motor neuron domain-containing protein 1|survival of motor neuron-related-splicing factor 30 20121230 -9606 10286 BCAS2 - DAM1|SPF27|Snt309 HGNC:975|MIM:605783|Ensembl:ENSG00000116752|HPRD:05777|Vega:OTTHUMG00000011898 1 1p13.2 breast carcinoma amplified sequence 2 protein-coding BCAS2 breast carcinoma amplified sequence 2 O DNA amplified in mammary carcinoma 1 protein|breast carcinoma-amplified sequence 2|pre-mRNA-splicing factor SPF27|spliceosome associated protein, amplified in breast cancer|spliceosome-associated protein SPF 27 20121230 -9606 10287 RGS19 - GAIP|RGSGAIP HGNC:13735|MIM:605071|Ensembl:ENSG00000171700|HPRD:05461|Vega:OTTHUMG00000033024 20 20q13.33 regulator of G-protein signaling 19 protein-coding RGS19 regulator of G-protein signaling 19 O G alpha interacting protein|G protein signalling regulator 19|G-alpha-interacting protein|guanine nucleotide binding protein alpha inhibiting activity polypeptide 3 interacting protein|regulator of G-protein signalling 19 20121230 -9606 10288 LILRB2 XXbac-BCX105G6.12-005 CD85D|ILT4|LILRA6|LIR-2|LIR2|MIR-10|MIR10 HGNC:6606|MIM:604815|Ensembl:ENSG00000131042|HPRD:11994|Vega:OTTHUMG00000064896 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 2 protein-coding LILRB2 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 2 O CD85 antigen-like family member D|ILT-4|Ig-like transcript 4|eukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6|immunoglobulin-like transcript 4|leukocyte immunoglobulin-like receptor 2|leukocyte immunoglobulin-like receptor subfamily B member 2|leukocyte immunoglobulin-like receptor subfamily B member 2 soluble isoform|monocyte/macrophage immunoglobulin-like receptor 10 20121230 -9606 10289 EIF1B - GC20 HGNC:30792|Ensembl:ENSG00000114784|HPRD:17032|Vega:OTTHUMG00000131388 3 3p22.1 eukaryotic translation initiation factor 1B protein-coding EIF1B eukaryotic translation initiation factor 1B O eukaryotic translation initiation factor 1b|protein translation factor SUI1 homolog GC20|translation factor sui1 homolog 20121230 -9606 10290 SPEG - APEG-1|APEG1|BPEG|SPEGalpha|SPEGbeta HGNC:16901|Ensembl:ENSG00000072195|HPRD:10653|Vega:OTTHUMG00000058925 2 2q35 SPEG complex locus protein-coding SPEG SPEG complex locus O aortic preferentially expressed gene 1|aortic preferentially expressed protein 1|nuclear protein, marker for differentiated aortic smooth muscle and down-regulated with vascular injury|striated muscle preferentially expressed protein kinase 20121230 -9606 10291 SF3A1 - PRP21|PRPF21|SAP114|SF3A120 HGNC:10765|MIM:605595|Ensembl:ENSG00000099995|HPRD:06903|Vega:OTTHUMG00000151005 22 22q12.2 splicing factor 3a, subunit 1, 120kDa protein-coding SF3A1 splicing factor 3a, subunit 1, 120kDa O SAP 114|pre-mRNA processing 21|pre-mRNA splicing factor SF3a (120 kDa subunit)|spliceosome-associated protein 114|splicing factor 3 subunit 1|splicing factor 3A subunit 1 20121230 -9606 10293 TRAIP - RNF206|TRIP HGNC:30764|MIM:605958|Ensembl:ENSG00000183763|HPRD:05811|Vega:OTTHUMG00000158269 3 3p21.31 TRAF interacting protein protein-coding TRAIP TRAF interacting protein O TRAF-interacting protein|ring finger protein 206 20121230 -9606 10294 DNAJA2 - CPR3|DJ3|DJA2|DNAJ|DNJ3|HIRIP4|PRO3015|RDJ2 HGNC:14884|MIM:611322|Ensembl:ENSG00000069345|HPRD:07105|Vega:OTTHUMG00000133104 16 16q12.1 DnaJ (Hsp40) homolog, subfamily A, member 2 protein-coding DNAJA2 DnaJ (Hsp40) homolog, subfamily A, member 2 O HIRA interacting protein 4|HIRA-interacting protein 4|cell cycle progression 3 protein|cell cycle progression restoration gene 3 protein|dnaJ homolog subfamily A member 2|renal carcinoma antigen NY-REN-14 20121230 -9606 10295 BCKDK - BCKDKD|BDK HGNC:16902|MIM:614901|Ensembl:ENSG00000103507|HPRD:12523|Vega:OTTHUMG00000047356 16 16p11.2 branched chain ketoacid dehydrogenase kinase protein-coding BCKDK branched chain ketoacid dehydrogenase kinase O BCKD-kinase|BCKDHKIN|[3-methyl-2-oxobutanoate dehydrogenase [lipoamide]] kinase, mitochondrial|branched chain alpha-ketoacid dehydrogenase kinase 20121230 -9606 10296 MAEA HLC10 EMLP|EMP|GID9|HLC-10|PIG5 HGNC:13731|MIM:606801|Ensembl:ENSG00000090316|HPRD:08427|Vega:OTTHUMG00000160169 4 4p16.3 macrophage erythroblast attacher protein-coding MAEA macrophage erythroblast attacher O GID complex subunit 9, FYV10 homolog|cell proliferation-inducing gene 5 protein|erythroblast macrophage protein|human lung cancer oncogene 10 protein|lung cancer-related protein 10|proliferation-inducing gene 5 20121230 -9606 10297 APC2 - APCL HGNC:24036|MIM:612034|Ensembl:ENSG00000115266|HPRD:09802|Vega:OTTHUMG00000180059 19 19p13.3 adenomatosis polyposis coli 2 protein-coding APC2 adenomatosis polyposis coli 2 O adenomatous polyposis coli like|adenomatous polyposis coli protein 2 20121230 -9606 10298 PAK4 - - HGNC:16059|MIM:605451|Ensembl:ENSG00000130669|HPRD:05675 19 19q13.2 p21 protein (Cdc42/Rac)-activated kinase 4 protein-coding PAK4 p21 protein (Cdc42/Rac)-activated kinase 4 O PAK-4|p21(CDKN1A)-activated kinase 4|p21-activated kinase 4|protein kinase related to S. cerevisiae STE20, effector for Cdc42Hs|serine/threonine-protein kinase PAK 4 20121230 -9606 10299 MARCH6 - DOA10|MARCH-VI|RNF176|TEB4 HGNC:30550|MIM:613297|Ensembl:ENSG00000145495|HPRD:11095|Vega:OTTHUMG00000162027 5 5p15.2 membrane-associated ring finger (C3HC4) 6, E3 ubiquitin protein ligase protein-coding MARCH6 membrane-associated ring finger (C3HC4) 6, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase MARCH6|RING finger protein 176|doa10 homolog|membrane-associated RING finger protein 6|membrane-associated RING-CH finger protein 6|membrane-associated RING-CH protein VI 20121230 -9606 10300 KATNB1 - KAT HGNC:6217|MIM:602703|Ensembl:ENSG00000140854|HPRD:04081|Vega:OTTHUMG00000133467 16 16q21 katanin p80 (WD repeat containing) subunit B 1 protein-coding KATNB1 katanin p80 (WD repeat containing) subunit B 1 O katanin (80 kDa)|katanin p80 (WD40-containing) subunit B 1|katanin p80 WD40-containing subunit B1|katanin p80 subunit B1|p80 katanin 20121230 -9606 10301 DLEU1 RP11-175B12.1 BCMS|DLB1|DLEU2|LEU1|LEU2|LINC00021|NCRNA00021|XTP6 HGNC:13747|MIM:605765|HPRD:16150 13 13q14.3 deleted in lymphocytic leukemia 1 (non-protein coding) miscRNA DLEU1 deleted in lymphocytic leukemia 1 (non-protein coding) O - 20121230 -9606 10302 SNAPC5 - SNAP19 HGNC:15484|MIM:605979|Ensembl:ENSG00000174446|HPRD:16183|Vega:OTTHUMG00000133195 15 15q22.31 small nuclear RNA activating complex, polypeptide 5, 19kDa protein-coding SNAPC5 small nuclear RNA activating complex, polypeptide 5, 19kDa O SNAPc 19 kDa subunit|SNAPc subunit 5|small nuclear RNA-activating complex polypeptide 5|snRNA-activating protein complex 19 kDa subunit|snRNA-activating protein complex subunit 5 20121230 -9606 10305 MMDK - MDK MIM:156232 2 2q24-q32 Mesomelic dysplasia, Kantaputra type unknown - - - - 20120622 -9606 10306 CTPP - ARCC2|CPP|CTPA|CTPP1|ECK MIM:116600 1 1pter-p36.1 Cataract, posterior polar unknown - - - - 20120622 -9606 10307 APBB3 - FE65L2|SRA HGNC:20708|MIM:602711|Ensembl:ENSG00000113108|HPRD:04089|Vega:OTTHUMG00000129504 5 5q31 amyloid beta (A4) precursor protein-binding, family B, member 3 protein-coding APBB3 amyloid beta (A4) precursor protein-binding, family B, member 3 O FE65-like protein 2|amyloid beta A4 precursor protein-binding family B member 3|amyloid precursor interacting protein|protein Fe65-like 2 20121230 -9606 10308 ZNF267 - HZF2 HGNC:13060|MIM:604752|Ensembl:ENSG00000185947|HPRD:06883|Vega:OTTHUMG00000176535 16 16p11.2 zinc finger protein 267 protein-coding ZNF267 zinc finger protein 267 O zinc finger (C2H2)|zinc finger protein 2|zinc finger protein HZF2 20121230 -9606 10309 CCNO - CCNU|UDG2 HGNC:18576|MIM:607752|Ensembl:ENSG00000152669|HPRD:06375|Vega:OTTHUMG00000162598 5 5q11.2 cyclin O protein-coding CCNO cyclin O O cyclin U|cyclin domain containing|cyclin-O 20121230 -9606 10311 DSCR3 - DCRA|DSCRA HGNC:3044|MIM:605298|Ensembl:ENSG00000157538|HPRD:10390|Vega:OTTHUMG00000086659 21 21q22.2 Down syndrome critical region gene 3 protein-coding DSCR3 Down syndrome critical region gene 3 O Down syndrome critical region protein 3|Down syndrome critical region protein A 20121230 -9606 10312 TCIRG1 - ATP6N1C|ATP6V0A3|Atp6i|OC-116kDa|OC116|OPTB1|Stv1|TIRC7|Vph1|a3 HGNC:11647|MIM:604592|Ensembl:ENSG00000110719|HPRD:05207|Vega:OTTHUMG00000167358 11 11q13.2 T-cell, immune regulator 1, ATPase, H+ transporting, lysosomal V0 subunit A3 protein-coding TCIRG1 T-cell, immune regulator 1, ATPase, H+ transporting, lysosomal V0 subunit A3 O ATPase, H+ transporting, 116kD|OC-116 kDa|T-cell immune response cDNA 7|T-cell, immune regulator 1, ATPase, H+ transporting, lysosomal V0 protein a|V-ATPase 116-kDa|V-type proton ATPase 116 kDa subunit a|V-type proton ATPase 116 kDa subunit a isoform 3|osteoclastic proton pump 116 kDa subunit|specific 116-kDa vacuolar proton pump subunit|vacuolar proton translocating ATPase 116 kDa subunit A 20121230 -9606 10313 RTN3 - ASYIP|HAP|NSPL2|NSPLII|RTN3-A1 HGNC:10469|MIM:604249|Ensembl:ENSG00000133318|HPRD:18516|Vega:OTTHUMG00000168056 11 11q13 reticulon 3 protein-coding RTN3 reticulon 3 O ASY interacting protein|NSP-like protein 2|NSP-like protein II|homolog of ASY protein|neuroendocrine-specific protein-like 2|neuroendocrine-specific protein-like II|reticulon-3 20121230 -9606 10314 LANCL1 - GPR69A|p40 HGNC:6508|MIM:604155|Ensembl:ENSG00000115365|HPRD:16040|Vega:OTTHUMG00000132991 2 2q33-q35 LanC lantibiotic synthetase component C-like 1 (bacterial) protein-coding LANCL1 LanC lantibiotic synthetase component C-like 1 (bacterial) O 40 kDa erythrocyte membrane protein|G protein-coupled receptor 69A|LanC (bacterial lantibiotic synthetase component C)-like 1|LanC (bacterial lantibiotic synthetase component)|lanC-like protein 1 20121230 -9606 10316 NMUR1 - (FM-3)|FM-3|FM3|GPC-R|GPR66|NMU1R HGNC:4518|MIM:604153|Ensembl:ENSG00000171596|HPRD:16039|Vega:OTTHUMG00000133225 2 2q37.1 neuromedin U receptor 1 protein-coding NMUR1 neuromedin U receptor 1 O G protein-coupled receptor 66|G-protein coupled receptor 66|G-protein coupled receptor FM-3|NMU-R1|neuromedin-U receptor 1 20121230 -9606 10317 B3GALT5 - B3GalT-V|B3GalTx|B3T5|GLCT5|beta3Gal-T5 HGNC:920|MIM:604066|Ensembl:ENSG00000183778|HPRD:06818|Vega:OTTHUMG00000086725 21 21q22.3 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 5 protein-coding B3GALT5 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 5 O GlcNAc-beta-1,3-galactosyltransferase 5|UDP-Gal:beta-GlcNAc beta-1,3-galactosyltransferase 5|UDP-galactose:beta-N-acetylglucosamine beta-1,3-galactosyltransferase 5|b3Gal-T5|beta-1,3-GalTase 5|beta-1,3-galactosyltransferase 5|beta-3-Gx-T5|beta3GalT5|homolog of C. elegans Bt toxin resistance gene bre-5 20121230 -9606 10318 TNIP1 - ABIN-1|NAF1|VAN|nip40-1 HGNC:16903|MIM:607714|Ensembl:ENSG00000145901|HPRD:09216|Vega:OTTHUMG00000163722 5 5q32-q33.1 TNFAIP3 interacting protein 1 protein-coding TNIP1 TNFAIP3 interacting protein 1 O A20-binding inhibitor of NF-kappa-B activation 1|HIV-1 Nef-interacting protein|Nef-associated factor 1 SNP|TNFAIP3-interacting protein 1|virion-associated nuclear shuttling protein 20121230 -9606 10319 LAMC3 RP11-143H20.1 OCCM HGNC:6494|MIM:604349|Ensembl:ENSG00000050555|HPRD:05069|Vega:OTTHUMG00000020819 9 9q31-q34 laminin, gamma 3 protein-coding LAMC3 laminin, gamma 3 O laminin subunit gamma-3|laminin-12 subunit gamma|laminin-14 subunit gamma|laminin-15 subunit gamma 20121230 -9606 10320 IKZF1 tcag7.1178 Hs.54452|IK1|IKAROS|LYF1|PRO0758|ZNFN1A1|hIk-1 HGNC:13176|MIM:603023|Ensembl:ENSG00000185811|HPRD:04318|Vega:OTTHUMG00000155907 7 7p13-p11.1 IKAROS family zinc finger 1 (Ikaros) protein-coding IKZF1 IKAROS family zinc finger 1 (Ikaros) O CLL-associated antigen KW-6|DNA-binding protein Ikaros|Ikaros (zinc finger protein)|ikaros family zinc finger protein 1|lymphoid transcription factor LyF-1|zinc finger protein, subfamily 1A, 1 (Ikaros) 20121230 -9606 10321 CRISP3 - Aeg2|CRISP-3|CRS3|SGP28|dJ442L6.3 HGNC:16904|Ensembl:ENSG00000096006|HPRD:11788|Vega:OTTHUMG00000014823 6 6p12.3 cysteine-rich secretory protein 3 protein-coding CRISP3 cysteine-rich secretory protein 3 O cysteine-rich secretory protein-3|specific granule protein (28 kDa)|specific granule protein of 28 kDa 20121230 -9606 10322 SMYD5 - NN8-4AG|RAI15|RRG1|ZMYND23 HGNC:16258|Ensembl:ENSG00000135632|HPRD:18080|Vega:OTTHUMG00000150482 2 2p13.2 SMYD family member 5 protein-coding SMYD5 SMYD family member 5 O SET and MYND domain-containing protein 5|retinoic acid induced 15|retinoic acid responsive|retinoic acid-induced protein 15 20121230 -9606 10324 KBTBD10 - SARCOSIN HGNC:16905|MIM:607701|Ensembl:ENSG00000239474|HPRD:07610|Vega:OTTHUMG00000132205 2 2q31.1 kelch repeat and BTB (POZ) domain containing 10 protein-coding KBTBD10 kelch repeat and BTB (POZ) domain containing 10 O kel-like protein 23|kelch repeat and BTB domain-containing protein 10|kelch-related protein 1|sarcomeric muscle protein 20121230 -9606 10325 RRAGB RP11-465E19.1 RAGB|bA465E19.1 HGNC:19901|MIM:300725|Ensembl:ENSG00000083750|HPRD:06710|Vega:OTTHUMG00000021662 X Xp11.21 Ras-related GTP binding B protein-coding RRAGB Ras-related GTP binding B O GTP-binding protein ragB|rag B|ras-related GTP-binding protein B 20121230 -9606 10326 SIRPB1 RP4-576H24.1 CD172b|SIRP-BETA-1 HGNC:15928|MIM:603889|Ensembl:ENSG00000101307|HPRD:04866|Vega:OTTHUMG00000031676 20 20p13 signal-regulatory protein beta 1 protein-coding SIRPB1 signal-regulatory protein beta 1 O CD172 antigen-like family member B|signal-regulatory protein beta-1 20121230 -9606 10327 AKR1A1 RP4-697E16.2 ALDR1|ALR|ARM|DD3 HGNC:380|MIM:103830|Ensembl:ENSG00000117448|HPRD:00069|Vega:OTTHUMG00000007740 1 1p33-p32 aldo-keto reductase family 1, member A1 (aldehyde reductase) protein-coding AKR1A1 aldo-keto reductase family 1, member A1 (aldehyde reductase) O alcohol dehydrogenase|alcohol dehydrogenase [NADP(+)]|aldehyde reductase|aldo-keto reductase family 1 member A1|dihydrodiol dehydrogenase 3 20121230 -9606 10328 EMC8 - C16orf2|C16orf4|COX4NB|FAM158B|NOC4 HGNC:7864|MIM:604886|Ensembl:ENSG00000131148|HPRD:05350|Vega:OTTHUMG00000137647 16 16q24 ER membrane protein complex subunit 8 protein-coding EMC8 ER membrane protein complex subunit 8 O COX4 neighbor|family with sequence similarity 158, member B|neighbor of COX4 20121230 -9606 10329 TMEM5 - HP10481 HGNC:13530|MIM:605862|Ensembl:ENSG00000118600|HPRD:12057|Vega:OTTHUMG00000168730 12 12q14.2 transmembrane protein 5 protein-coding TMEM5 transmembrane protein 5 O putative type II membrane protein 20121230 -9606 10330 CNPY2 UNQ1943/PRO4426 HP10390|MSAP|TMEM4|ZSIG9 HGNC:13529|MIM:605861|Ensembl:ENSG00000257727|HPRD:12056|Vega:OTTHUMG00000170330 12 12q15 canopy 2 homolog (zebrafish) protein-coding CNPY2 canopy 2 homolog (zebrafish) O MIR-interacting saposin-like protein|protein canopy homolog 2|putative secreted protein Zsig9|transmembrane protein 4 20121230 -9606 10331 B3GNT3 UNQ637/PRO1266 B3GAL-T8|B3GN-T3|B3GNT-3|HP10328|TMEM3|beta3Gn-T3 HGNC:13528|MIM:605863|Ensembl:ENSG00000179913|HPRD:10431 19 19p13.1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 protein-coding B3GNT3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 O UDP-Gal:beta-GlcNAc beta-1,3-galactosyltransferase 8|UDP-galactose:beta-N-acetylglucosamine beta-1,3-galactosyltransferase 8|beta-1,3-GalTase 8|beta-1,3-Gn-T3|beta-1,3-N-acetylglucosaminyltransferase bGnT-3|beta-3-Gx-T8|beta3GalT8|core 1 extending beta-1,3-N-acetylglucosaminyltransferase|core1-beta3GlcNAcT|putative type II membrane protein|transmembrane protein 3 20121230 -9606 10332 CLEC4M - CD209L|CD299|DC-SIGN2|DC-SIGNR|DCSIGNR|HP10347|L-SIGN|LSIGN HGNC:13523|MIM:605872|Ensembl:ENSG00000104938|HPRD:12060 19 19p13 C-type lectin domain family 4, member M protein-coding CLEC4M C-type lectin domain family 4, member M O C-type lectin domain family 4 member M|CD209 antigen-like protein 1|CD299 antigen|DC-SIGN-related protein|dendritic cell-specific ICAM-3-grabbing non-integrin 2|liver/lymph node-specific ICAM-3 grabbing non-integrin|liver/lymph node-specific ICAM-3-grabbing non-integrin|mannose binding C-type lectin DC-SIGNR 20121230 -9606 10333 TLR6 - CD286 HGNC:16711|MIM:605403|Ensembl:ENSG00000174130|HPRD:05656|Vega:OTTHUMG00000128579 4 4p14 toll-like receptor 6 protein-coding TLR6 toll-like receptor 6 O - 20121230 -9606 10335 MRVI1 - IRAG|JAW1L HGNC:7237|MIM:604673|Ensembl:ENSG00000072952|HPRD:05242|Vega:OTTHUMG00000165773 11 11p15 murine retrovirus integration site 1 homolog protein-coding MRVI1 murine retrovirus integration site 1 homolog O IP3R-associated cGMP kinase substrate|JAW1-related protein MRVI1|inositol 1,4,5-triphosphate receptor-associated cGMP kinase substrate|inositol 1,4,5-trisphosphate receptor-associated cGMP kinase substrate|protein MRVI1 20121230 -9606 10336 PCGF3 - DONG1|RNF3|RNF3A HGNC:10066|Ensembl:ENSG00000185619|HPRD:11515|Vega:OTTHUMG00000119000 4 4p16.3 polycomb group ring finger 3 protein-coding PCGF3 polycomb group ring finger 3 O RING finger protein 3A|polycomb group RING finger protein 3|ring finger protein 3 20121230 -9606 10337 HIST1H4PS1 - H4FFP|dJ97D16.3|pH4/f HGNC:4786 6 6p22.1 histone cluster 1, H4, pseudogene 1 pseudo HIST1H4PS1 histone cluster 1, H4, pseudogene 1 O - 20121230 -9606 10338 HIST1H1PS2 - H3FEP|pH3/e HGNC:4770 6 6p21.3 histone cluster 1, H1, pseudogene 2 pseudo HIST1H1PS2 histone cluster 1, H1, pseudogene 2 O - 20121230 -9606 10340 HIST1H2BPS2 - H2BFIP|pH2B.i|pH2B/i HGNC:4754 6 6p22.1 histone cluster 1, H2b, pseudogene 2 pseudo HIST1H2BPS2 histone cluster 1, H2b, pseudogene 2 O - 20121230 -9606 10341 HIST1H2APS5 - H2AFFP|pH2A/f HGNC:4728 6 6p21.3 histone cluster 1, H2a, pseudogene 5 pseudo HIST1H2APS5 histone cluster 1, H2a, pseudogene 5 O - 20121230 -9606 10342 TFG - HMSNP|TF6|TRKT3 HGNC:11758|MIM:602498|Ensembl:ENSG00000114354|HPRD:03932|Vega:OTTHUMG00000159085 3 3q12.2 TRK-fused gene protein-coding TFG TRK-fused gene O TRK-fused gene protein|TRKT3 oncogene|protein TFG 20121230 -9606 10343 PKDREJ - - HGNC:9015|MIM:604670|Ensembl:ENSG00000130943|HPRD:05239|Vega:OTTHUMG00000150493 22 22q13.31 polycystic kidney disease (polycystin) and REJ homolog (sperm receptor for egg jelly homolog, sea urchin) protein-coding PKDREJ polycystic kidney disease (polycystin) and REJ homolog (sperm receptor for egg jelly homolog, sea urchin) O PKD and REJ homolog|polycystic kidney disease and receptor for egg jelly-related protein 20121230 -9606 10344 CCL26 UNQ216/PRO242 IMAC|MIP-4a|MIP-4alpha|SCYA26|TSC-1 HGNC:10625|MIM:604697|Ensembl:ENSG00000006606|HPRD:05262|Vega:OTTHUMG00000130403 7 7q11.23 chemokine (C-C motif) ligand 26 protein-coding CCL26 chemokine (C-C motif) ligand 26 O C-C motif chemokine 26|CC chemokine IMAC|MIP-4-alpha|chemokine N1|eotaxin-3|macrophage inflammatory protein 4-alpha|small inducible cytokine A26|small inducible cytokine subfamily A (Cys-Cys), member 26|small-inducible cytokine A26|thymic stroma chemokine-1 20121230 -9606 10345 TRDN RP11-167I10.1 TDN|TRISK HGNC:12261|MIM:603283|Ensembl:ENSG00000186439|HPRD:04474|Vega:OTTHUMG00000015497 6 6q22.31 triadin protein-coding TRDN triadin O - 20121230 -9606 10346 TRIM22 - GPSTAF50|RNF94|STAF50 HGNC:16379|MIM:606559|Ensembl:ENSG00000132274|HPRD:05951|Vega:OTTHUMG00000066904 11 11p15 tripartite motif containing 22 protein-coding TRIM22 tripartite motif containing 22 O 50 kDa-stimulated trans-acting factor|E3 ubiquitin-protein ligase TRIM22|RING finger protein 94|staf-50|stimulated trans-acting factor (50 kDa)|tripartite binding motif 22|tripartite motif protein TRIM22|tripartite motif-containing 22|tripartite motif-containing protein 22 20121230 -9606 10347 ABCA7 - ABCA-SSN|ABCX HGNC:37|MIM:605414|Ensembl:ENSG00000064687|HPRD:09255|Vega:OTTHUMG00000167547 19 19p13.3 ATP-binding cassette, sub-family A (ABC1), member 7 protein-coding ABCA7 ATP-binding cassette, sub-family A (ABC1), member 7 O ATP-binding cassette sub-family A member 7|autoantigen SS-N|macrophage ABC transporter 20121230 -9606 10349 ABCA10 - EST698739 HGNC:30|MIM:612508|Ensembl:ENSG00000154263|HPRD:12400|Vega:OTTHUMG00000164716 17 17q24 ATP-binding cassette, sub-family A (ABC1), member 10 protein-coding ABCA10 ATP-binding cassette, sub-family A (ABC1), member 10 O ATP-binding cassette A10|ATP-binding cassette sub-family A member 10 20121230 -9606 10350 ABCA9 - EST640918 HGNC:39|MIM:612507|Ensembl:ENSG00000154258|HPRD:12401|Vega:OTTHUMG00000140371 17 17q24.2 ATP-binding cassette, sub-family A (ABC1), member 9 protein-coding ABCA9 ATP-binding cassette, sub-family A (ABC1), member 9 O ATP-binding cassette A9|ATP-binding cassette sub-family A member 9 20121230 -9606 10351 ABCA8 - - HGNC:38|MIM:612505|Ensembl:ENSG00000141338|HPRD:09790|Vega:OTTHUMG00000180192 17 17q24 ATP-binding cassette, sub-family A (ABC1), member 8 protein-coding ABCA8 ATP-binding cassette, sub-family A (ABC1), member 8 O ATP-binding cassette sub-family A member 8 20121230 -9606 10352 WARS2 - TrpRS HGNC:12730|MIM:604733|Ensembl:ENSG00000116874|HPRD:05295|Vega:OTTHUMG00000012335 1 1p12 tryptophanyl tRNA synthetase 2, mitochondrial protein-coding WARS2 tryptophanyl tRNA synthetase 2, mitochondrial O (Mt)TrpRS|tryptophan tRNA ligase 2, mitochondrial|tryptophan--tRNA ligase, mitochondrial|tryptophan-tRNA ligase|tryptophanyl-tRNA synthetase, mitochondrial 20121230 -9606 10354 HMGB1P5 - HMG-1|HMG1L5|HMGB1L15|HMGB1L5|HMGB1P2 HGNC:4997 3 3p24 high mobility group box 1 pseudogene 5 pseudo HMGB1P5 high mobility group box 1 pseudogene 5 O - 20121230 -9606 10355 HMGB1P4 - HMG1L4|HMG1L4P|HMGB1L4 HGNC:4996 2 2q32 high mobility group box 1 pseudogene 4 pseudo HMGB1P4 high mobility group box 1 pseudogene 4 O - 20121230 -9606 10356 HMGB1P3 - HMG1L3|HMGB1L3 HGNC:4995 2 2q35 high mobility group box 1 pseudogene 3 pseudo HMGB1P3 high mobility group box 1 pseudogene 3 O - 20121230 -9606 10357 HMGB1P1 - HMG1L1|HMG1L7|HMGB1L1|dJ579F20.1 HGNC:4993|HPRD:17109 20 20q13.32 high mobility group box 1 pseudogene 1 pseudo HMGB1P1 high mobility group box 1 pseudogene 1 O - 20121230 -9606 10360 NPM3 - PORMIN|TMEM123 HGNC:7931|MIM:606456|Ensembl:ENSG00000107833|HPRD:07346|Vega:OTTHUMG00000018942 10 10q24.31 nucleophosmin/nucleoplasmin 3 protein-coding NPM3 nucleophosmin/nucleoplasmin 3 O nucleophosmin/nucleoplasmin family, member 3|nucleoplasmin-3 20121230 -9606 10361 NPM2 - - HGNC:7930|MIM:608073|Ensembl:ENSG00000158806|HPRD:12160|Vega:OTTHUMG00000131129 8 8p21.3 nucleophosmin/nucleoplasmin 2 protein-coding NPM2 nucleophosmin/nucleoplasmin 2 O nucleoplasmin-2 20121230 -9606 10362 HMG20B - BRAF25|BRAF35|HMGX2|HMGXB2|PP7706|SMARCE1r|SOXL|pp8857 HGNC:5002|MIM:605535|Ensembl:ENSG00000064961|HPRD:05703|Vega:OTTHUMG00000150437 19 19p13.3 high mobility group 20B protein-coding HMG20B high mobility group 20B O BRCA2-associated factor 35|HMG box domain containing 2|HMG box-containing protein 20B|HMG domain-containing protein 2|HMG domain-containing protein HMGX2|SMARCE1-related protein|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily E member 1-related|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily E, member 1-related|Sox-like transcriptional factor|high-mobility group 20B|structural DNA-binding protein BRAF35 20121230 -9606 10363 HMG20A - HMGX1|HMGXB1 HGNC:5001|MIM:605534|Ensembl:ENSG00000140382|HPRD:16116|Vega:OTTHUMG00000143729 15 15q24 high mobility group 20A protein-coding HMG20A high mobility group 20A O HMG box domain containing 1|HMG box-containing protein 20A|HMG domain-containing protein 1|HMG domain-containing protein HMGX1|high mobility group protein 20A|high-mobility group 20A 20121230 -9606 10365 KLF2 - LKLF HGNC:6347|MIM:602016|Ensembl:ENSG00000127528|HPRD:03602|Vega:OTTHUMG00000182330 19 19p13.11 Kruppel-like factor 2 (lung) protein-coding KLF2 Kruppel-like factor 2 (lung) O Krueppel-like factor 2|Kruppel-like factor LKLF|lung Kruppel-like zinc finger transcription factor|lung krueppel-like factor 20121230 -9606 10367 MICU1 - CALC|CBARA1|EFHA3 HGNC:1530|MIM:605084|Ensembl:ENSG00000107745|HPRD:05471|Vega:OTTHUMG00000018437 10 10q22.1 mitochondrial calcium uptake 1 protein-coding MICU1 mitochondrial calcium uptake 1 O ara CALC|atopy related autoantigen|atopy-related autoantigen CALC|calcium uptake protein 1, mitochondrial|calcium-binding atopy-related autoantigen 1 20121230 -9606 10368 CACNG3 - - HGNC:1407|MIM:606403|Ensembl:ENSG00000006116|HPRD:05910|Vega:OTTHUMG00000131651 16 16p12.1 calcium channel, voltage-dependent, gamma subunit 3 protein-coding CACNG3 calcium channel, voltage-dependent, gamma subunit 3 O TARP gamma-3|neuronal voltage-gated calcium channel gamma-3 subunit|transmembrane AMPAR regulatory protein gamma-3|voltage-dependent calcium channel gamma-3 subunit|voltage-gated calcium channel gamma subunit 20121230 -9606 10369 CACNG2 - MRD10 HGNC:1406|MIM:602911|Ensembl:ENSG00000166862|HPRD:04220|Vega:OTTHUMG00000030612 22 22q13.1 calcium channel, voltage-dependent, gamma subunit 2 protein-coding CACNG2 calcium channel, voltage-dependent, gamma subunit 2 O TARP gamma-2|neuronal voltage-gated calcium channel gamma-2 subunit|stargazin|transmembrane AMPAR regulatory protein gamma-2|voltage-dependent calcium channel gamma-2 subunit 20121230 -9606 10370 CITED2 - ASD8|MRG-1|MRG1|P35SRJ|VSD2 HGNC:1987|MIM:602937|Ensembl:ENSG00000164442|HPRD:04245|Vega:OTTHUMG00000015691 6 6q23.3 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 2 protein-coding CITED2 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 2 O MSG-related protein 1|MSG1-related gene 1|cbp/p300-interacting transactivator 2|melanocyte-specific gene 1-related gene 1 20121230 -9606 10371 SEMA3A - COLL1|Hsema-I|Hsema-III|SEMA1|SEMAD|SEMAIII|SEMAL|SemD|coll-1 HGNC:10723|MIM:603961|Ensembl:ENSG00000075213|HPRD:04908|Vega:OTTHUMG00000023443 7 7p12.1 sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3A protein-coding SEMA3A sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3A O collapsin 1|semaphorin D|semaphorin III|semaphorin L|semaphorin-3A 20121230 -9606 10376 TUBA1B - K-ALPHA-1 HGNC:18809|MIM:602530|Ensembl:ENSG00000123416|HPRD:03960|Vega:OTTHUMG00000170410 12 12q13.12 tubulin, alpha 1b protein-coding TUBA1B tubulin, alpha 1b O alpha tubulin|alpha-tubulin ubiquitous|tubulin K-alpha-1|tubulin alpha-1B chain|tubulin alpha-ubiquitous chain|tubulin, alpha, ubiquitous 20121230 -9606 10379 IRF9 - IRF-9|ISGF3|ISGF3G|p48 HGNC:6131|MIM:147574|Ensembl:ENSG00000213928|HPRD:00960|Vega:OTTHUMG00000028799 14 14q11.2 interferon regulatory factor 9 protein-coding IRF9 interferon regulatory factor 9 O IFN-alpha-responsive transcription factor subunit|ISGF-3 gamma|ISGF3 p48 subunit|interferon-stimulated gene factor 3 gamma|interferon-stimulated transcription factor 3, gamma (48kD)|interferon-stimulated transcription factor 3, gamma 48kDa|transcriptional regulator ISGF3 subunit gamma 20121230 -9606 10380 BPNT1 - PIP HGNC:1096|MIM:604053|Ensembl:ENSG00000162813|HPRD:06814|Vega:OTTHUMG00000037435 1 1q41 3'(2'), 5'-bisphosphate nucleotidase 1 protein-coding BPNT1 3'(2'), 5'-bisphosphate nucleotidase 1 O 3'(2'),5'-bisphosphate nucleotidase 1|BPntase|PAP-inositol 1,4-phosphatase|PAP-inositol-1,4-phosphatase|bisphosphate 3'-nucleotidase 1 20121230 -9606 10381 TUBB3 - CDCBM|CFEOM3A|TUBB4|beta-4 HGNC:20772|MIM:602661|Ensembl:ENSG00000258947|HPRD:04044|Vega:OTTHUMG00000138985 16 16q24.3 tubulin, beta 3 class III protein-coding TUBB3 tubulin, beta 3 class III O class III beta-tubulin|tubulin beta-3 chain|tubulin beta-4 chain|tubulin beta-III 20121230 -9606 10382 TUBB4A - TUBB4|TUBB5|beta-5 HGNC:20774|MIM:602662|Ensembl:ENSG00000104833|HPRD:04045 19 19p13.3 tubulin, beta 4A class IVa protein-coding TUBB4A tubulin, beta 4A class IVa O class IVa beta-tubulin|tubulin 5 beta|tubulin beta-4 chain|tubulin beta-4A chain|tubulin, beta 4 class IVa|tubulin, beta, 5 20121230 -9606 10383 TUBB4B RP13-122B23.2 Beta2|TUBB2|TUBB2C HGNC:20771|MIM:602660|Ensembl:ENSG00000188229|HPRD:04043|Vega:OTTHUMG00000131783 9 9q34 tubulin, beta 4B class IVb protein-coding TUBB4B tubulin, beta 4B class IVb O class IVb beta tubulin|class IVb beta-tubulin|tubulin beta-2 chain|tubulin beta-2C chain|tubulin beta-4B chain|tubulin, beta 2C|tubulin, beta, 2 20121230 -9606 10384 BTN3A3 - BTF3 HGNC:1140|MIM:613595|Ensembl:ENSG00000111801|HPRD:12548|Vega:OTTHUMG00000014451 6 6p21.3 butyrophilin, subfamily 3, member A3 protein-coding BTN3A3 butyrophilin, subfamily 3, member A3 O butyrophilin 3|butyrophilin subfamily 3 member A3 20121230 -9606 10385 BTN2A2 - BT2.2|BTF2 HGNC:1137|MIM:613591|Ensembl:ENSG00000124508|HPRD:12545|Vega:OTTHUMG00000014452 6 6p22.1 butyrophilin, subfamily 2, member A2 protein-coding BTN2A2 butyrophilin, subfamily 2, member A2 O butyrophilin 2|butyrophilin subfamily 2 member A2 20121230 -9606 10386 MHW1 - - MIM:603663 4 4p Mental health wellness 1 unknown - - - - 20120622 -9606 10388 SYCP2 RP5-884F15.1 SCP2 HGNC:11490|MIM:604105|Ensembl:ENSG00000196074|HPRD:06822|Vega:OTTHUMG00000032872 20 20q13.33 synaptonemal complex protein 2 protein-coding SYCP2 synaptonemal complex protein 2 O SCP-2|hsSCP2|synaptonemal complex lateral element protein 20121230 -9606 10389 SCML2 RP5-1129A6.3 - HGNC:10581|MIM:300208|Ensembl:ENSG00000102098|HPRD:02195|Vega:OTTHUMG00000021212 X Xp22 sex comb on midleg-like 2 (Drosophila) protein-coding SCML2 sex comb on midleg-like 2 (Drosophila) O sex comb on midleg-like protein 2 20121230 -9606 10390 CEPT1 PRO1101 - HGNC:24289|Ensembl:ENSG00000134255|HPRD:13024|Vega:OTTHUMG00000012357 1 1p13.3 choline/ethanolamine phosphotransferase 1 protein-coding CEPT1 choline/ethanolamine phosphotransferase 1 O choline/ethanolaminephosphotransferase|choline/ethanolaminephosphotransferase 1|hCEPT1 20121230 -9606 10391 CORO2B - CLIPINC HGNC:2256|MIM:605002|Ensembl:ENSG00000103647|HPRD:05416|Vega:OTTHUMG00000133288 15 15q23 coronin, actin binding protein, 2B protein-coding CORO2B coronin, actin binding protein, 2B O clipin C|coronin-2B|coronin-like protein C 20121230 -9606 10392 NOD1 - CARD4|CLR7.1|NLRC1 HGNC:16390|MIM:605980|Ensembl:ENSG00000106100|HPRD:05815|Vega:OTTHUMG00000023923 7 7p15-p14 nucleotide-binding oligomerization domain containing 1 protein-coding NOD1 nucleotide-binding oligomerization domain containing 1 O NLR family, CARD domain containing 1|caspase recruitment domain family, member 4|caspase recruitment domain-containing protein 4|nucleotide-binding oligomerization domain, leucine rich repeat and CARD domain containing 1|nucleotide-binding oligomerization domain-containing protein 1 20121230 -9606 10393 ANAPC10 - APC10|DOC1 HGNC:24077|MIM:613745|Ensembl:ENSG00000164162|HPRD:16488|Vega:OTTHUMG00000161477 4 4q31 anaphase promoting complex subunit 10 protein-coding ANAPC10 anaphase promoting complex subunit 10 O anaphase-promoting complex subunit 10|cyclosome subunit 10 20121230 -9606 10394 PRG3 UNQ486/PRO1002 MBP2|MBPH HGNC:9363|MIM:606814|Ensembl:ENSG00000156575|HPRD:08434|Vega:OTTHUMG00000167026 11 11q12 proteoglycan 3 protein-coding PRG3 proteoglycan 3 O eosinophil major basic protein homolog|prepro-MBPH|prepro-major basic protein homolog 20121230 -9606 10395 DLC1 - ARHGAP7|HP|STARD12|p122-RhoGAP HGNC:2897|MIM:604258|Ensembl:ENSG00000164741|HPRD:05035|Vega:OTTHUMG00000090825 8 8p22 deleted in liver cancer 1 protein-coding DLC1 deleted in liver cancer 1 O Rho-GTPase-activating protein 7|START domain-containing protein 12|StAR-related lipid transfer (START) domain containing 12|deleted in liver cancer 1 protein|deleted in liver cancer 1 variant 2|rho GTPase-activating protein 7|rho-type GTPase-activating protein 7 20121230 -9606 10396 ATP8A1 - ATPASEII|ATPIA|ATPP2 HGNC:13531|MIM:609542|Ensembl:ENSG00000124406|HPRD:16527|Vega:OTTHUMG00000099403 4 4p13 ATPase, aminophospholipid transporter (APLT), class I, type 8A, member 1 protein-coding ATP8A1 ATPase, aminophospholipid transporter (APLT), class I, type 8A, member 1 O ATPase II|ATPase class I type 8A member 1|aminophospholipid translocase|chromaffin granule ATPase II|probable phospholipid-transporting ATPase IA 20121230 -9606 10397 NDRG1 - CAP43|CMT4D|DRG-1|DRG1|GC4|HMSNL|NDR1|NMSL|PROXY1|RIT42|RTP|TARG1|TDD5 HGNC:7679|MIM:605262|Ensembl:ENSG00000104419|HPRD:05586|Vega:OTTHUMG00000164441 8 8q24.3 N-myc downstream regulated 1 protein-coding NDRG1 N-myc downstream regulated 1 O N-myc downstream-regulated gene 1 protein|differentiation-related gene 1 protein|nickel-specific induction protein Cap43|protein NDRG1|protein regulated by oxygen-1|reducing agents and tunicamycin-responsive protein 20121230 -9606 10398 MYL9 RP5-977B1.9 LC20|MLC-2C|MLC2|MRLC1|MYRL2 HGNC:15754|MIM:609905|Ensembl:ENSG00000101335|HPRD:17619|Vega:OTTHUMG00000032387 20 20q11.23 myosin, light chain 9, regulatory protein-coding MYL9 myosin, light chain 9, regulatory O 20 kDa myosin light chain|myosin RLC|myosin regulatory light chain 1|myosin regulatory light chain 2, smooth muscle isoform|myosin regulatory light chain 9|myosin regulatory light chain MRLC1|myosin regulatory light polypeptide 9|myosin, light polypeptide 9, regulatory 20121230 -9606 10399 GNB2L1 HLC7 Gnb2-rs1|H12.3|HLC-7|PIG21|RACK1 HGNC:4399|MIM:176981|Ensembl:ENSG00000204628|HPRD:01503|Vega:OTTHUMG00000163380 5 5q35.3 guanine nucleotide binding protein (G protein), beta polypeptide 2-like 1 protein-coding GNB2L1 guanine nucleotide binding protein (G protein), beta polypeptide 2-like 1 O cell proliferation-inducing gene 21 protein|guanine nucleotide-binding protein subunit beta-2-like 1|guanine nucleotide-binding protein subunit beta-like protein 12.3|human lung cancer oncogene 7 protein|lung cancer oncogene 7|proliferation-inducing gene 21|protein homologous to chicken B complex protein, guanine nucleotide binding|receptor for activated C kinase 1|receptor of activated protein kinase C 1 20121230 -9606 10400 PEMT - PEAMT|PEMPT|PEMT2|PNMT HGNC:8830|MIM:602391|Ensembl:ENSG00000133027|HPRD:03862|Vega:OTTHUMG00000059290 17 17p11.2 phosphatidylethanolamine N-methyltransferase protein-coding PEMT phosphatidylethanolamine N-methyltransferase O - 20121230 -9606 10401 PIAS3 - ZMIZ5 HGNC:16861|MIM:605987|Ensembl:ENSG00000131788|HPRD:09068|Vega:OTTHUMG00000013750 1 1q21 protein inhibitor of activated STAT, 3 protein-coding PIAS3 protein inhibitor of activated STAT, 3 O E3 SUMO-protein ligase PIAS3|protein inhibitor of activated STAT protein 3|zinc finger, MIZ-type containing 5 20121230 -9606 10402 ST3GAL6 - SIAT10|ST3GALVI HGNC:18080|MIM:607156|Ensembl:ENSG00000064225|HPRD:06195|Vega:OTTHUMG00000159047 3 3q12.1 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 protein-coding ST3GAL6 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 O CMP-NeuAc:beta-galactoside alpha-2,3-sialyltransferase VI|alpha2,3-sialyltransferase ST3Gal VI|sialyltransferase 10 (alpha-2,3-sialyltransferase VI)|type 2 lactosamine alpha-2,3-sialyltransferase 20121230 -9606 10403 NDC80 - HEC|HEC1|HsHec1|KNTC2|TID3|hsNDC80 HGNC:16909|MIM:607272|Ensembl:ENSG00000080986|HPRD:06277|Vega:OTTHUMG00000131483 18 18p11.32 NDC80 kinetochore complex component homolog (S. cerevisiae) protein-coding NDC80 NDC80 kinetochore complex component homolog (S. cerevisiae) O NDC80 homolog, kinetochore complex component|highly expressed in cancer protein|highly expressed in cancer, rich in leucine heptad repeats|kinetochore associated 2|kinetochore protein Hec1|kinetochore protein NDC80 homolog|kinetochore-associated protein 2|retinoblastoma-associated protein HEC 20121230 -9606 10404 CPQ - LDP|PGCP HGNC:16910|Ensembl:ENSG00000104324|HPRD:07140|Vega:OTTHUMG00000164690 8 8q22.2 carboxypeptidase Q protein-coding CPQ carboxypeptidase Q O Ser-Met dipeptidase|aminopeptidase|lysosomal dipeptidase|plasma glutamate carboxypeptidase 20121230 -9606 10406 WFDC2 RP3-461P17.2 EDDM4|HE4|WAP5|dJ461P17.6 HGNC:15939|Ensembl:ENSG00000101443|HPRD:11684|Vega:OTTHUMG00000032594 20 20q13.12 WAP four-disulfide core domain 2 protein-coding WFDC2 WAP four-disulfide core domain 2 O WAP domain containing protein HE4-V4|WAP four-disulfide core domain protein 2|epididymal protein 4|epididymal secretory protein E4|epididymis-specific, whey-acidic protein type, four-disulfide core|major epididymis-specific protein E4|putative protease inhibitor WAP5 20121230 -9606 10407 SPAG11B - EDDM2B|EP2|EP2C|EP2D|HE2|HE2C|SPAG11 HGNC:14534|MIM:606560|Ensembl:ENSG00000164871|HPRD:07583|Vega:OTTHUMG00000129219 8 8p23.1 sperm associated antigen 11B protein-coding SPAG11B sperm associated antigen 11B O epididymal protein 2B|human epididymis-specific protein 2|sperm antigen HE2|sperm-associated antigen 11B 20121230 -9606 10408 MYCNOS - MYCN-AS1|NCYM|NYCM HGNC:16911|MIM:605374 2 2p24.1 MYCN opposite strand/antisense RNA miscRNA MYCNOS MYCN opposite strand/antisense RNA O - 20121230 -9606 10409 BASP1 - CAP-23|CAP23|NAP-22|NAP22 HGNC:957|MIM:605940|Ensembl:ENSG00000176788|HPRD:08389|Vega:OTTHUMG00000131061 5 5p15.1 brain abundant, membrane attached signal protein 1 protein-coding BASP1 brain abundant, membrane attached signal protein 1 O 22 kDa neuronal tissue-enriched acidic protein|brain acid soluble protein 1|brain acid-soluble protein 1|neuronal axonal membrane protein NAP-22|neuronal tissue-enriched acidic protein 20121230 -9606 10410 IFITM3 - 1-8U|DSPA2b|IP15 HGNC:5414|MIM:605579|Ensembl:ENSG00000142089|HPRD:05719|Vega:OTTHUMG00000165542 11 11p15.5 interferon induced transmembrane protein 3 protein-coding IFITM3 interferon induced transmembrane protein 3 O dispanin subfamily A member 2b|interferon-induced transmembrane protein 3|interferon-inducible protein 1-8U 20121230 -9606 10411 RAPGEF3 - CAMP-GEFI|EPAC|EPAC1|HSU79275|bcm910 HGNC:16629|MIM:606057|Ensembl:ENSG00000079337|HPRD:06928|Vega:OTTHUMG00000133667 12 12q13.1 Rap guanine nucleotide exchange factor (GEF) 3 protein-coding RAPGEF3 Rap guanine nucleotide exchange factor (GEF) 3 O 9330170P05Rik|EPAC 1|Rap1 guanine-nucleotide-exchange factor directly activated by cAMP|cAMP-regulated guanine nucleotide exchange factor I|exchange factor directly activated by cAMP 1|exchange protein directly activated by cAMP 1|rap guanine nucleotide exchange factor 3 20121230 -9606 10412 NSA2 HUSSY-29 CDK105|HCL-G1|HCLG1|HUSSY29|TINP1 HGNC:30728|MIM:612497|Ensembl:ENSG00000164346|HPRD:18191|Vega:OTTHUMG00000131273 5 5q13.3 NSA2 ribosome biogenesis homolog (S. cerevisiae) protein-coding NSA2 NSA2 ribosome biogenesis homolog (S. cerevisiae) O TGF beta-inducible nuclear protein 1|TGF-beta inducible nuclear protein|TGF-beta-inducible nuclear protein 1|hairy cell leukemia protein 1|ribosome biogenesis protein NSA2 homolog 20121230 -9606 10413 YAP1 - YAP|YAP2|YAP65|YKI HGNC:16262|MIM:606608|Ensembl:ENSG00000137693|HPRD:09424|Vega:OTTHUMG00000167322 11 11q13 Yes-associated protein 1 protein-coding YAP1 Yes-associated protein 1 O 65 kDa Yes-associated protein|yes-associated protein 2|yes-associated protein beta|yes-associated protein delta|yorkie homolog 20121230 -9606 10415 SNAI1P1 - SNAI1L|SNAI1L1|SNAI1P HGNC:11129 2 2q33-q37 snail homolog 1 (Drosophila) pseudogene 1 pseudo SNAI1P1 snail homolog 1 (Drosophila) pseudogene 1 O - 20121230 -9606 10417 SPON2 UNQ435/PRO866 DIL-1|DIL1|M-SPONDIN|MINDIN HGNC:11253|MIM:605918|Ensembl:ENSG00000159674|HPRD:16174|Vega:OTTHUMG00000089002 4 4p16.3 spondin 2, extracellular matrix protein protein-coding SPON2 spondin 2, extracellular matrix protein O differentially expressed in cancerous and non-cancerous lung cells 1|spondin-2 20121230 -9606 10418 SPON1 - f-spondin HGNC:11252|MIM:604989|HPRD:16087 11 11p15.2 spondin 1, extracellular matrix protein protein-coding SPON1 spondin 1, extracellular matrix protein O VSGP/F-spondin|spondin 1, (f-spondin) extracellular matrix protein|spondin-1|vascular smooth muscle cell growth-promoting factor 20121230 -9606 10419 PRMT5 - HRMT1L5|IBP72|JBP1|SKB1|SKB1Hs HGNC:10894|MIM:604045|Ensembl:ENSG00000100462|HPRD:04955|Vega:OTTHUMG00000028709 14 14q11.2 protein arginine methyltransferase 5 protein-coding PRMT5 protein arginine methyltransferase 5 O 72 kDa ICln-binding protein|HMT1 hnRNP methyltransferase-like 5|SKB1 homolog|histone-arginine N-methyltransferase PRMT5|jak-binding protein 1|protein arginine N-methyltransferase 5|shk1 kinase-binding protein 1 homolog 20121230 -9606 10420 TESK2 - - HGNC:11732|MIM:604746|Ensembl:ENSG00000070759|Vega:OTTHUMG00000007680 1 1p32 testis-specific kinase 2 protein-coding TESK2 testis-specific kinase 2 O dual specificity testis-specific protein kinase 2|testicular protein kinase 2 20121230 -9606 10421 CD2BP2 - FWP010|LIN1|PPP1R59|Snu40|U5-52K HGNC:1656|MIM:604470|Ensembl:ENSG00000169217|HPRD:05127|Vega:OTTHUMG00000132397 16 16p11.2 CD2 (cytoplasmic tail) binding protein 2 protein-coding CD2BP2 CD2 (cytoplasmic tail) binding protein 2 O CD2 antigen (cytoplasmic tail) binding protein 2|CD2 antigen cytoplasmic tail-binding protein 2|CD2 cytoplasmic domain-binding protein 2|U5 snRNP 52K protein|protein phosphatase 1, regulatory subunit 59 20121230 -9606 10422 UBAC1 - GBDR1|RP11-432J22.3|UBADC1 HGNC:30221|MIM:608129|Ensembl:ENSG00000130560|HPRD:12170|Vega:OTTHUMG00000020920 9 9q34.3 UBA domain containing 1 protein-coding UBAC1 UBA domain containing 1 O E3 ubiquitin-protein ligase subunit KPC2|UBA domain-containing protein 1|glialblastoma cell differentiation-related protein 1|kip1 ubiquitination-promoting complex protein 2|putative glialblastoma cell differentiation-related protein|ubiquitin associated domain containing 1|ubiquitin-associated domain-containing protein 1 20121230 -9606 10423 CDIPT - PIS|PIS1 HGNC:1769|MIM:605893|Ensembl:ENSG00000103502|HPRD:12063|Vega:OTTHUMG00000177144 16 16p11.2 CDP-diacylglycerol--inositol 3-phosphatidyltransferase protein-coding CDIPT CDP-diacylglycerol--inositol 3-phosphatidyltransferase O PI synthase|PtdIns synthase|phosphatidylinositol synthase 20121230 -9606 10424 PGRMC2 - DG6|PMBP HGNC:16089|MIM:607735|Ensembl:ENSG00000164040|HPRD:09665|Vega:OTTHUMG00000133342 4 4q26 progesterone receptor membrane component 2 protein-coding PGRMC2 progesterone receptor membrane component 2 O membrane-associated progesterone receptor component 2|progesterone membrane binding protein|steroid receptor protein DG6 20121230 -9606 10425 ARIH2 HT005 ARI2|TRIAD1 HGNC:690|MIM:605615|Ensembl:ENSG00000177479|HPRD:09286|Vega:OTTHUMG00000133547 3 3p21 ariadne homolog 2 (Drosophila) protein-coding ARIH2 ariadne homolog 2 (Drosophila) O ARI-2|E3 ubiquitin-protein ligase ARIH2|all-trans retinoic acid inducible RING finger|protein ariadne-2 homolog 20121230 -9606 10426 TUBGCP3 RP11-480K16.2 GCP3|SPBC98|Spc98p HGNC:18598|Ensembl:ENSG00000126216|HPRD:10289|Vega:OTTHUMG00000017367 13 13q34 tubulin, gamma complex associated protein 3 protein-coding TUBGCP3 tubulin, gamma complex associated protein 3 O GCP-3|gamma-ring complex protein 104 kDa|gamma-tubulin complex component 3|h104p|hGCP3|hGrip104|hSpc98|spindle pole body protein Spc98 homolog 20121230 -9606 10427 SEC24B - SEC24 HGNC:10704|MIM:607184|Ensembl:ENSG00000138802|HPRD:06216|Vega:OTTHUMG00000161372 4 4q25 SEC24 family, member B (S. cerevisiae) protein-coding SEC24B SEC24 family, member B (S. cerevisiae) O SEC24 related gene family, member B|Sec24-related protein B|protein transport protein Sec24B|secretory protein 24 20121230 -9606 10428 CFDP1 - BCNT|BUCENTAUR|CENP-29|CP27|SWC5|Yeti|p97 HGNC:1873|MIM:608108|Ensembl:ENSG00000153774|HPRD:16282|Vega:OTTHUMG00000137615 16 16q22.2-q22.3 craniofacial development protein 1 protein-coding CFDP1 craniofacial development protein 1 O centromere protein 29|phosphoprotein (Bucentaur) 20121230 -9606 10430 TMEM147 - NIFIE14 HGNC:30414|MIM:613585|Ensembl:ENSG00000105677|HPRD:17633|Vega:OTTHUMG00000048105 19 19q13.1 transmembrane protein 147 protein-coding TMEM147 transmembrane protein 147 O protein NIFIE 14|seven transmembrane domain protein 20121230 -9606 10432 RBM14 - COAA|PSP2|SIP|SYTIP1|TMEM137 HGNC:14219|MIM:612409|Ensembl:ENSG00000239306|HPRD:11485|Vega:OTTHUMG00000140380 11 11q13.2 RNA binding motif protein 14 protein-coding RBM14 RNA binding motif protein 14 O RNA-binding protein 14|RRM-containing coactivator activator/modulator|SYT-interacting protein|paraspeckle protein 2|synaptotagmin-interacting protein|transmembrane protein 137 20121230 -9606 10434 LYPLA1 - APT-1|LPL1|LYSOPLA|hAPT1 HGNC:6737|MIM:605599|Ensembl:ENSG00000120992|HPRD:07063|Vega:OTTHUMG00000164313 8 8q11.23 lysophospholipase I protein-coding LYPLA1 lysophospholipase I O LPL-I|acyl-protein thioesterase 1|acyl-protein thioesterase-1|lysoPLA I|lysophospholipase 1|lysophospholipid-specific lysophospholipase 20121230 -9606 10435 CDC42EP2 - BORG1|CEP2 HGNC:16263|MIM:606132|Ensembl:ENSG00000149798|HPRD:09363|Vega:OTTHUMG00000165958 11 11q13 CDC42 effector protein (Rho GTPase binding) 2 protein-coding CDC42EP2 CDC42 effector protein (Rho GTPase binding) 2 O CRIB-containing BOGR1 protein|binder of Rho GTPases 1|cdc42 effector protein 2 20121230 -9606 10436 EMG1 - C2F|Grcc2f|NEP1 HGNC:16912|MIM:611531|HPRD:12803 12 12p13.3 EMG1 nucleolar protein homolog (S. cerevisiae) protein-coding EMG1 EMG1 nucleolar protein homolog (S. cerevisiae) O 18S rRNA (pseudouridine-N1-)-methyltransferase NEP1|18S rRNA Psi1248 methyltransferase|essential for mitotic growth 1|ribosomal RNA small subunit methyltransferase NEP1|ribosome biogenesis protein NEP1 20121230 -9606 10437 IFI30 - GILT|IFI-30|IP30 HGNC:5398|MIM:604664|Ensembl:ENSG00000216490|HPRD:05234 19 19p13.1 interferon, gamma-inducible protein 30 protein-coding IFI30 interferon, gamma-inducible protein 30 O gamma-interferon-inducible lysosomal thiol reductase|gamma-interferon-inducible protein IP-30|interferon gamma-inducible protein 30 preproprotein|legumaturain 20121230 -9606 10438 C1D - LRP1|SUN-CoR|SUNCOR|hC1D HGNC:29911|MIM:606997|Ensembl:ENSG00000197223|HPRD:07382|Vega:OTTHUMG00000129564 2 2p13-p12 C1D nuclear receptor corepressor protein-coding C1D C1D nuclear receptor corepressor O C1D DNA-binding protein|C1D nuclear receptor co-repressor|nuclear DNA-binding protein|nuclear nucleic acid-binding protein C1D|small unique nuclear receptor co-repressor|small unique nuclear receptor corepressor 20121230 -9606 10439 OLFM1 RP11-399H11.1 AMY|NOE1|NOELIN1|OlfA HGNC:17187|MIM:605366|Ensembl:ENSG00000130558|HPRD:09249|Vega:OTTHUMG00000020897 9 9q34.3 olfactomedin 1 protein-coding OLFM1 olfactomedin 1 O neuroblastoma protein|neuronal olfactomedin-related ER localized protein|noelin|olfactomedin related ER localized protein|olfactomedin-1|pancortin 1 20121230 -9606 10440 TIMM17A - TIM17|TIM17A HGNC:17315|MIM:605057|Ensembl:ENSG00000134375|HPRD:05449|Vega:OTTHUMG00000035806 1 1q32.1 translocase of inner mitochondrial membrane 17 homolog A (yeast) protein-coding TIMM17A translocase of inner mitochondrial membrane 17 homolog A (yeast) O inner membrane preprotein translocase Tim17a|mitochondrial import inner membrane translocase subunit Tim17-A|mitochondrial inner membrane translocase|preprotein translocase 20121230 -9606 10443 N4BP2L2 RP11-298P3.3 92M18.3|CG005|PFAAP5 HGNC:26916|Ensembl:ENSG00000244754|HPRD:15119|Vega:OTTHUMG00000016700 13 13q13.1 NEDD4 binding protein 2-like 2 protein-coding N4BP2L2 NEDD4 binding protein 2-like 2 O 92M18.3 (novel protein)|CG016|NEDD4-binding protein 2-like 2|phosphonoformate immuno-associated protein 5|protein from BCRA2 region 20121230 -9606 10444 ZER1 - C9orf60|ZYG|ZYG11BL HGNC:30960|Ensembl:ENSG00000160445|HPRD:10802|Vega:OTTHUMG00000020759 9 9q34.11 zyg-11 related, cell cycle regulator protein-coding ZER1 zyg-11 related, cell cycle regulator O ZYG homolog|protein zer-1 homolog|zer-1 homolog|zyg-11 homolog B-like protein 20121230 -9606 10445 MCRS1 - ICP22BP|INO80Q|MCRS2|MSP58|P78 HGNC:6960|MIM:609504|Ensembl:ENSG00000187778|HPRD:11298|Vega:OTTHUMG00000169620 12 12q13.12 microspherule protein 1 protein-coding MCRS1 microspherule protein 1 O 58 kDa microspherule protein|INO80 complex subunit J|INO80 complex subunit Q|cell cycle-regulated factor (78 kDa)|cell cycle-regulated factor p78 20121230 -9606 10446 LRRN2 UNQ256/PRO293 FIGLER7|GAC1|LRANK1|LRRN5 HGNC:16914|MIM:605492|Ensembl:ENSG00000170382|HPRD:16109|Vega:OTTHUMG00000035989 1 1q32.1 leucine rich repeat neuronal 2 protein-coding LRRN2 leucine rich repeat neuronal 2 O fibronectin type III, immunoglobulin and leucine rich repeat domain 7|glioma amplified on chromosome 1 protein|leucine rich and ankyrin repeats 1|leucine rich repeat neuronal 5|leucine-rich repeat neuronal protein 2|leucine-rich repeat neuronal protein 5 20121230 -9606 10447 FAM3C GS3786 ILEI HGNC:18664|MIM:608618|Ensembl:ENSG00000196937|HPRD:12270|Vega:OTTHUMG00000156979 7 7q31 family with sequence similarity 3, member C protein-coding FAM3C family with sequence similarity 3, member C O interleukin-like EMT inducer|predicted osteoblast protein|protein FAM3C 20121230 -9606 10449 ACAA2 - DSAEC HGNC:83|MIM:604770|Ensembl:ENSG00000167315|HPRD:10380|Vega:OTTHUMG00000132667 18 18q21.1 acetyl-CoA acyltransferase 2 protein-coding ACAA2 acetyl-CoA acyltransferase 2 O 3-ketoacyl-CoA thiolase, mitochondrial|T1|acetyl-Coenzyme A acyltransferase 2|beta ketothiolase|beta-ketothiolase|mitochondrial 3-oxoacyl-CoA thiolase|mitochondrial 3-oxoacyl-Coenzyme A thiolase 20121230 -9606 10450 PPIE RP1-118J21.1 CYP-33|CYP33 HGNC:9258|MIM:602435|Ensembl:ENSG00000084072|HPRD:03893|Vega:OTTHUMG00000009248 1 1p32 peptidylprolyl isomerase E (cyclophilin E) protein-coding PPIE peptidylprolyl isomerase E (cyclophilin E) O PPIase E|cyclophilin-33|peptidyl-prolyl cis-trans isomerase E|rotamase E 20121230 -9606 10451 VAV3 - - HGNC:12659|MIM:605541|Ensembl:ENSG00000134215|HPRD:05706|Vega:OTTHUMG00000010995 1 1p13.3 vav 3 guanine nucleotide exchange factor protein-coding VAV3 vav 3 guanine nucleotide exchange factor O VAV-3|guanine nucleotide exchange factor VAV3|vav 3 oncogene 20121230 -9606 10452 TOMM40 - C19orf1|D19S1177E|PER-EC1|PEREC1|TOM40 HGNC:18001|MIM:608061|Ensembl:ENSG00000130204|HPRD:16274|Vega:OTTHUMG00000180842 19 19q13 translocase of outer mitochondrial membrane 40 homolog (yeast) protein-coding TOMM40 translocase of outer mitochondrial membrane 40 homolog (yeast) O mitochondrial import receptor subunit TOM40 homolog|mitochondrial outer membrane protein|p38.5|protein Haymaker|translocase of outer membrane 40 kDa subunit homolog 20121230 -9606 10454 TAB1 RP3-407F17.2 3'-Tab1|MAP3K7IP1 HGNC:18157|MIM:602615|Ensembl:ENSG00000100324|HPRD:04012|Vega:OTTHUMG00000151102 22 22q13.1 TGF-beta activated kinase 1/MAP3K7 binding protein 1 protein-coding TAB1 TGF-beta activated kinase 1/MAP3K7 binding protein 1 O TAK1-binding protein 1|TGF-beta-activated kinase 1 and MAP3K7-binding protein 1|mitogen-activated protein kinase kinase kinase 7-interacting protein 1|transforming growth factor beta-activated kinase-binding protein 1 20121230 -9606 10455 ECI2 RP5-1013A10.1 ACBD2|DRS-1|DRS1|HCA88|PECI|dJ1013A10.3 HGNC:14601|MIM:608024|Ensembl:ENSG00000198721|HPRD:16269|Vega:OTTHUMG00000014158 6 6p24.3 enoyl-CoA delta isomerase 2 protein-coding ECI2 enoyl-CoA delta isomerase 2 O D3,D2-enoyl-CoA isomerase|DBI-related protein 1|acyl-Coenzyme A binding domain containing 2|delta(3),delta(2)-enoyl-CoA isomerase|diazepam-binding inhibitor-related protein 1|dodecenoyl-CoA isomerase|enoyl-CoA delta isomerase 2, mitochondrial|hepatocellular carcinoma-associated antigen 88|peroxisomal 3,2-trans-enoyl-CoA isomerase|peroxisomal D3,D2-enoyl-CoA isomerase|renal carcinoma antigen NY-REN-1 20121230 -9606 10456 HAX1 RP11-137P24.1 HCLSBP1|HS1BP1|SCN3 HGNC:16915|MIM:605998|Ensembl:ENSG00000143575|HPRD:12075|Vega:OTTHUMG00000035978 1 1q21.3 HCLS1 associated protein X-1 protein-coding HAX1 HCLS1 associated protein X-1 O HAX-1|HCLS1 (and PKD2) associated protein|HCLS1-associated protein X-1|HS1 binding protein|HS1-associating protein X-1|HS1-binding protein 1|HSP1BP-1 20121230 -9606 10457 GPNMB UNQ1725/PRO9925 HGFIN|NMB HGNC:4462|MIM:604368|Ensembl:ENSG00000136235|HPRD:05081|Vega:OTTHUMG00000022811 7 7p15 glycoprotein (transmembrane) nmb protein-coding GPNMB glycoprotein (transmembrane) nmb O glycoprotein NMB|glycoprotein nmb-like protein|osteoactivin|transmembrane glycoprotein HGFIN|transmembrane glycoprotein NMB 20121230 -9606 10458 BAIAP2 - BAP2|FLAF3|IRSP53 HGNC:947|MIM:605475|Ensembl:ENSG00000175866|HPRD:05686|Vega:OTTHUMG00000177698 17 17q25 BAI1-associated protein 2 protein-coding BAIAP2 BAI1-associated protein 2 O IRS-58|IRSp53/58|brain-specific angiogenesis inhibitor 1-associated protein 2|fas ligand-associated factor 3|insulin receptor substrate p53/p58|insulin receptor substrate protein of 53 kDa 20121230 -9606 10459 MAD2L2 RP3-330O12.4 MAD2B|POLZ2|REV7 HGNC:6764|MIM:604094|Ensembl:ENSG00000116670|HPRD:07246|Vega:OTTHUMG00000002231 1 1p36 MAD2 mitotic arrest deficient-like 2 (yeast) protein-coding MAD2L2 MAD2 mitotic arrest deficient-like 2 (yeast) O MAD2 (mitotic arrest deficient, yeast, homolog)-like 2|MAD2-like protein 2|REV7 homolog|hREV7|mitotic arrest deficient 2-like protein 2|mitotic arrest deficient homolog-like 2|mitotic spindle assembly checkpoint protein MAD2B|polymerase (DNA-directed), zeta 2, accessory subunit 20121230 -9606 10460 TACC3 - ERIC-1|ERIC1 HGNC:11524|MIM:605303|Ensembl:ENSG00000013810|HPRD:05601|Vega:OTTHUMG00000089535 4 4p16.3 transforming, acidic coiled-coil containing protein 3 protein-coding TACC3 transforming, acidic coiled-coil containing protein 3 O transforming acidic coiled-coil-containing protein 3 20121230 -9606 10461 MERTK - MER|RP38|c-mer HGNC:7027|MIM:604705|Ensembl:ENSG00000153208|HPRD:05269|Vega:OTTHUMG00000131278 2 2q14.1 c-mer proto-oncogene tyrosine kinase protein-coding MERTK c-mer proto-oncogene tyrosine kinase O MER receptor tyrosine kinase|STK kinase|proto-oncogene c-Mer|receptor tyrosine kinase MerTK|tyrosine-protein kinase Mer 20121230 -9606 10462 CLEC10A - CD301|CLECSF13|CLECSF14|HML|HML2|MGL HGNC:16916|MIM:605999|Ensembl:ENSG00000132514|HPRD:12076|Vega:OTTHUMG00000177939 17 17p13.1 C-type lectin domain family 10, member A protein-coding CLEC10A C-type lectin domain family 10, member A O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 13 (macrophage-derived)|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 14 (macrophage-derived)|C-type lectin domain family 10 member A|macrophage lectin 2 (calcium dependent) 20121230 -9606 10463 SLC30A9 - C4orf1|GAC63|HUEL|ZNT9 HGNC:1329|MIM:604604|Ensembl:ENSG00000014824|HPRD:06858|Vega:OTTHUMG00000099387 4 4p13 solute carrier family 30 (zinc transporter), member 9 protein-coding SLC30A9 solute carrier family 30 (zinc transporter), member 9 O GRIP1-dependent nuclear receptor coactivator|expressed in human embryonic lung|human embryonic lung protein|solute carrier family 30 member 9|zinc transporter 9|znT-9 20121230 -9606 10464 PIBF1 - C13orf24|CEP90|PIBF|RP11-505F3.1 HGNC:23352|MIM:607532|Ensembl:ENSG00000083535|HPRD:06337|Vega:OTTHUMG00000017071 13 13q22.1 progesterone immunomodulatory binding factor 1 protein-coding PIBF1 progesterone immunomodulatory binding factor 1 O progesterone-induced blocking factor 1|progesterone-induced-blocking factor 1 20121230 -9606 10465 PPIH - CYP-20|CYPH|SnuCyp-20|USA-CYP HGNC:14651|MIM:606095|Ensembl:ENSG00000171960|HPRD:12084|Vega:OTTHUMG00000007520 1 1p34.1 peptidylprolyl isomerase H (cyclophilin H) protein-coding PPIH peptidylprolyl isomerase H (cyclophilin H) O PPIase h|U-snRNP-associated cyclophilin SnuCyp-20|U-snRNP-associated cyclophilin SunCyp-20|USA-CyP SnuCyp-20|cyclophilin H|peptidyl-prolyl cis-trans isomerase H|rotamase H|small nuclear ribonucleoprotein particle-specific cyclophilin H 20121230 -9606 10466 COG5 - CDG2I|GOLTC1|GTC90 HGNC:14857|MIM:606821|Ensembl:ENSG00000164597|HPRD:08436|Vega:OTTHUMG00000023895 7 7q31 component of oligomeric golgi complex 5 protein-coding COG5 component of oligomeric golgi complex 5 O 13S golgi transport complex 1 90 kDa subunit|COG complex subunit 5|conserved oligomeric Golgi complex protein 5|conserved oligomeric Golgi complex subunit 5 20121230 -9606 10467 ZNHIT1 - CG1I|ZNFN4A1 HGNC:21688|Ensembl:ENSG00000106400|HPRD:15892|Vega:OTTHUMG00000157113 7 7q22.1 zinc finger, HIT-type containing 1 protein-coding ZNHIT1 zinc finger, HIT-type containing 1 O H_DJ0747G18.14|cyclin-G1-binding protein 1|p18 Hamlet|p18Hamlet|putative cyclin G1 interacting protein|zinc finger HIT domain-containing protein 1|zinc finger protein subfamily 4A member 1|zinc finger protein, subfamily 4A (HIT domain containing), member 1|zinc finger, HIT domain containing 1|zinc finger, HIT type 1 20121230 -9606 10468 FST - FS HGNC:3971|MIM:136470|Ensembl:ENSG00000134363|HPRD:00641|Vega:OTTHUMG00000131183 5 5q11.2 follistatin protein-coding FST follistatin O activin-binding protein|follistatin isoform FST317 20121230 -9606 10469 TIMM44 - TIM44 HGNC:17316|MIM:605058|Ensembl:ENSG00000104980|HPRD:05450 19 19p13.3-p13.2 translocase of inner mitochondrial membrane 44 homolog (yeast) protein-coding TIMM44 translocase of inner mitochondrial membrane 44 homolog (yeast) O mitochondrial import inner membrane translocase subunit TIM44|mitochondrial inner membrane translocase 20121230 -9606 10470 D6S2723E - BING5 - 6 6p21.3 DNA segment on chromosome 6 (unique, pseudogene) 2723 expressed sequence unknown - - - - 20120720 -9606 10471 PFDN6 DADB-159G18.5 H2-KE2|HKE2|KE-2|PFD6 HGNC:4926|MIM:605660|Ensembl:ENSG00000204220|HPRD:16135|Vega:OTTHUMG00000031247 6 6p21.3 prefoldin subunit 6 protein-coding PFDN6 prefoldin subunit 6 O HLA class II region expressed gene KE2|KE2 protein 20121230 -9606 10472 ZNF238 - C2H2-171|RP58|TAZ-1|ZBTB18 HGNC:13030|MIM:608433|Ensembl:ENSG00000179456|HPRD:12231|Vega:OTTHUMG00000040013 1 1q44-qter zinc finger protein 238 protein-coding ZNF238 zinc finger protein 238 O 58 kDa repressor protein|transcriptional repressor RP58|translin-associated zinc finger protein 1|zinc finger and BTB domain-containing protein 18|zinc finger protein C2H2-171 20121230 -9606 10473 HMGN4 - HMG17L3|NHC HGNC:4989|Ensembl:ENSG00000182952|HPRD:17111|Vega:OTTHUMG00000014458 6 6p21.3 high mobility group nucleosomal binding domain 4 protein-coding HMGN4 high mobility group nucleosomal binding domain 4 O high mobility group nucleosome-binding domain-containing protein 4|high mobility group protein N4|high-mobility group (nonhistone chromosomal) protein 17-like 3|high-mobility group protein 17-like 3|non-histone chromosomal protein HMG-17-like 3 20121230 -9606 10474 TADA3 - ADA3|NGG1|TADA3L|hADA3 HGNC:19422|MIM:602945|Ensembl:ENSG00000171148|HPRD:04252|Vega:OTTHUMG00000128440 3 3p25.3 transcriptional adaptor 3 protein-coding TADA3 transcriptional adaptor 3 O ADA3 homolog|ADA3-like protein|STAF54|transcriptional adapter 3 20121230 -9606 10475 TRIM38 - RNF15|RORET HGNC:10059|Ensembl:ENSG00000112343|HPRD:15555|Vega:OTTHUMG00000014414 6 6p21.3 tripartite motif containing 38 protein-coding TRIM38 tripartite motif containing 38 O Ro/SSA ribonucleoprotein homolog|ring finger protein 15|tripartite motif-containing protein 38|zinc finger protein RoRet 20121230 -9606 10476 ATP5H My032 ATPQ HGNC:845|Ensembl:ENSG00000167863|HPRD:16519|Vega:OTTHUMG00000179219 17 17q25 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit d protein-coding ATP5H ATP synthase, H+ transporting, mitochondrial Fo complex, subunit d O ATP synthase D chain, mitochondrial|ATP synthase subunit d, mitochondrial|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit d|ATP synthase, H+ transporting, mitochondrial F1F0, subunit d|ATPase subunit d|My032 protein 20121230 -9606 10477 UBE2E3 - UBCH9|UbcM2 HGNC:12479|MIM:604151|Ensembl:ENSG00000170035|HPRD:05000 2 2q32.1 ubiquitin-conjugating enzyme E2E 3 protein-coding UBE2E3 ubiquitin-conjugating enzyme E2E 3 O ubiquitin carrier protein E3|ubiquitin-conjugating enzyme E2 E3|ubiquitin-conjugating enzyme E2-23 kDa|ubiquitin-conjugating enzyme E2E 3 (UBC4/5 homolog, yeast)|ubiquitin-conjugating enzyme E2E 3 (homologous to yeast UBC4/5)|ubiquitin-protein ligase E3 20121230 -9606 10478 SLC25A17 RP3-362J20.2 PMP34 HGNC:10987|MIM:606795|Ensembl:ENSG00000100372|HPRD:08425|Vega:OTTHUMG00000151139 22 22q13.2 solute carrier family 25 (mitochondrial carrier; peroxisomal membrane protein, 34kDa), member 17 protein-coding SLC25A17 solute carrier family 25 (mitochondrial carrier; peroxisomal membrane protein, 34kDa), member 17 O 34 kDa peroxisomal membrane protein|peroxisomal membrane protein (34kD)|peroxisomal membrane protein PMP34|solute carrier family 25 member 17 20121230 -9606 10479 SLC9A6 RP11-274K13.1 MRSA|NHE6 HGNC:11079|MIM:300231|Ensembl:ENSG00000198689|HPRD:02208|Vega:OTTHUMG00000022498 X Xq26.3 solute carrier family 9, subfamily A (NHE6, cation proton antiporter 6), member 6 protein-coding SLC9A6 solute carrier family 9, subfamily A (NHE6, cation proton antiporter 6), member 6 O Na(+)/H(+) exchanger 6|sodium/hydrogen exchanger 6|solute carrier family 9 (sodium/hydrogen exchanger), member 6 20121230 -9606 10480 EIF3M GA17 B5|PCID1|TANGO7|hfl-B5 HGNC:24460|MIM:609641|Ensembl:ENSG00000149100|HPRD:09969|Vega:OTTHUMG00000166258 11 11p13 eukaryotic translation initiation factor 3, subunit M protein-coding EIF3M eukaryotic translation initiation factor 3, subunit M O B5 receptor|PCI domain containing 1 (herpesvirus entry mediator)|PCI domain-containing protein 1|dendritic cell protein|eukaryotic translation initiation factor 3 subunit M|fetal lung protein B5|transport and golgi organization 7 homolog 20121230 -9606 10481 HOXB13 - PSGD HGNC:5112|MIM:604607|Ensembl:ENSG00000159184|HPRD:05210|Vega:OTTHUMG00000159900 17 17q21.2 homeobox B13 protein-coding HOXB13 homeobox B13 O homeo box B13|homeobox protein Hox-B13 20121230 -9606 10482 NXF1 - MEX67|TAP HGNC:8071|MIM:602647|Ensembl:ENSG00000162231|HPRD:04035|Vega:OTTHUMG00000167612 11 11q12-q13 nuclear RNA export factor 1 protein-coding NXF1 nuclear RNA export factor 1 O mRNA export factor TAP|tip associating protein|tip-associated protein|tip-associating protein 20121230 -9606 10483 SEC23B RP11-379J5.1 CDA-II|CDAII|CDAN2|HEMPAS HGNC:10702|MIM:610512|Ensembl:ENSG00000101310|HPRD:11543|Vega:OTTHUMG00000031976 20 20p11.23 Sec23 homolog B (S. cerevisiae) protein-coding SEC23B Sec23 homolog B (S. cerevisiae) O SEC23-like protein B|SEC23-related protein B|protein transport protein Sec23B|transport protein SEC23B 20121230 -9606 10484 SEC23A - CLSD HGNC:10701|MIM:610511|Ensembl:ENSG00000100934|HPRD:06714|Vega:OTTHUMG00000028812 14 14q21.1 Sec23 homolog A (S. cerevisiae) protein-coding SEC23A Sec23 homolog A (S. cerevisiae) O SEC23-related protein A|protein transport protein Sec23A 20121230 -9606 10485 C1orf61 RP11-139I14.3 CROC4 HGNC:30780|Ensembl:ENSG00000125462|HPRD:09899|Vega:OTTHUMG00000031022 1 1q22 chromosome 1 open reading frame 61 protein-coding C1orf61 chromosome 1 open reading frame 61 O contingent replication of cDNA 4|contingent replication of cDNA-4|protein CROC-4|transcriptional activator of the c fos promoter|transcriptional activator of the c-fos promoter 20121230 -9606 10486 CAP2 RP11-14H3.2 - HGNC:20039|Ensembl:ENSG00000112186|HPRD:10808|Vega:OTTHUMG00000014311 6 6p22.3 CAP, adenylate cyclase-associated protein, 2 (yeast) protein-coding CAP2 CAP, adenylate cyclase-associated protein, 2 (yeast) O 2810452G09Rik|CAP 2|adenylyl cyclase-associated protein 2 20121230 -9606 10487 CAP1 RP11-115D7.1 CAP|CAP1-PEN HGNC:20040|Ensembl:ENSG00000131236|HPRD:09869|Vega:OTTHUMG00000004493 1 1p34.2 CAP, adenylate cyclase-associated protein 1 (yeast) protein-coding CAP1 CAP, adenylate cyclase-associated protein 1 (yeast) O CAP 1|adenylyl cyclase-associated protein 1 20121230 -9606 10488 CREB3 - LUMAN|LZIP HGNC:2347|MIM:606443|Ensembl:ENSG00000107175|Vega:OTTHUMG00000019872 9 9p13.3 cAMP responsive element binding protein 3 protein-coding CREB3 cAMP responsive element binding protein 3 O CREB-3|basic leucine zipper protein|cAMP-responsive element-binding protein 3|cyclic AMP response element (CRE)-binding protein/activating transcription factor 1|cyclic AMP-responsive element-binding protein 3|leucin zipper proitein|transcription factor LZIP-alpha 20121230 -9606 10489 LRRC41 PP7759 MUF1|RP4-636H5.2 HGNC:16917|Ensembl:ENSG00000132128|HPRD:10102|Vega:OTTHUMG00000007810 1 1p34.1 leucine rich repeat containing 41 protein-coding LRRC41 leucine rich repeat containing 41 O MUF1 protein (MUF1)|elongin BC-interacting leucine-rich repeat protein|leucine-rich repeat-containing protein 41|protein Muf1 20121230 -9606 10490 VTI1B - VTI1|VTI1-LIKE|VTI1L|VTI2|v-SNARE|vti1-rp1 HGNC:17793|MIM:603207|Ensembl:ENSG00000100568|HPRD:04440|Vega:OTTHUMG00000171251 14 14q24.1 vesicle transport through interaction with t-SNAREs 1B protein-coding VTI1B vesicle transport through interaction with t-SNAREs 1B O vesicle transport through interaction with t-SNAREs homolog 1B|vesicle transport v-SNARE protein Vti1-like 1|vesicle-associated soluble NSF attachment protein receptor 20121230 -9606 10491 CRTAP - CASP|LEPREL3|OI7 HGNC:2379|MIM:605497|Ensembl:ENSG00000170275|HPRD:16110|Vega:OTTHUMG00000130746 3 3p22.3 cartilage associated protein protein-coding CRTAP cartilage associated protein O cartilage-associated protein|leprecan-like 3 20121230 -9606 10492 SYNCRIP RP1-3J17.2 GRY-RBP|GRYRBP|HNRPQ1|NSAP1|PP68|hnRNP-Q HGNC:16918|Ensembl:ENSG00000135316|HPRD:06734|Vega:OTTHUMG00000015141 6 6q14-q15 synaptotagmin binding, cytoplasmic RNA interacting protein protein-coding SYNCRIP synaptotagmin binding, cytoplasmic RNA interacting protein O NS1-associated protein 1|glycine- and tyrosine-rich RNA-binding protein|heterogeneous nuclear ribonucleoprotein Q 20121230 -9606 10493 VAT1 - VATI HGNC:16919|MIM:604631|Ensembl:ENSG00000108828|HPRD:05220|Vega:OTTHUMG00000180816 17 17q21 vesicle amine transport protein 1 homolog (T. californica) protein-coding VAT1 vesicle amine transport protein 1 homolog (T. californica) O membrane protein of cholinergic synaptic vesicles|synaptic vesicle membrane protein VAT-1 homolog 20121230 -9606 10494 STK25 - SOK1|YSK1 HGNC:11404|MIM:602255|Ensembl:ENSG00000115694|HPRD:03770|Vega:OTTHUMG00000133408 2 2q37.3 serine/threonine kinase 25 protein-coding STK25 serine/threonine kinase 25 O Ste20, yeast homolog|serine/threonine-protein kinase 25|ste20-like kinase|ste20/oxidant stress response kinase 1|sterile 20/oxidant stress-response kinase 1 20121230 -9606 10495 ENOX2 RP5-875H3.1 APK1|COVA1|tNOX HGNC:2259|MIM:300282|Ensembl:ENSG00000165675|HPRD:02234|Vega:OTTHUMG00000022401 X Xq25 ecto-NOX disulfide-thiol exchanger 2 protein-coding ENOX2 ecto-NOX disulfide-thiol exchanger 2 O APK1 antigen|cytosolic ovarian carcinoma antigen 1|tumor-associated hydroquinone oxidase 20121230 -9606 10497 UNC13B - MUNC13|UNC13|Unc13h2 HGNC:12566|MIM:605836|Ensembl:ENSG00000198722|HPRD:05785|Vega:OTTHUMG00000019856 9 9p13.3 unc-13 homolog B (C. elegans) protein-coding UNC13B unc-13 homolog B (C. elegans) O homolog of rat Munc13 (diacylglycerol-binding)|munc13-2|protein unc-13 homolog B 20121230 -9606 10498 CARM1 - PRMT4 HGNC:23393|MIM:603934|Ensembl:ENSG00000142453|HPRD:09158|Vega:OTTHUMG00000180699 19 19p13.2 coactivator-associated arginine methyltransferase 1 protein-coding CARM1 coactivator-associated arginine methyltransferase 1 O histone-arginine methyltransferase CARM1|protein arginine N-methyltransferase 4 20121230 -9606 10499 NCOA2 - GRIP1|KAT13C|NCoA-2|SRC2|TIF2|bHLHe75 HGNC:7669|MIM:601993|Ensembl:ENSG00000140396|HPRD:09066|Vega:OTTHUMG00000164671 8 8q13.3 nuclear receptor coactivator 2 protein-coding NCOA2 nuclear receptor coactivator 2 O class E basic helix-loop-helix protein 75|glucocorticoid receptor-interacting protein-1|hTIF2|transcriptional intermediary factor 2 20121230 -9606 10500 SEMA6C RP11-68I18.3 SEMAY|m-SemaY|m-SemaY2 HGNC:10740|MIM:609294|Ensembl:ENSG00000143434|HPRD:10220|Vega:OTTHUMG00000012261 1 1q21.2 sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6C protein-coding SEMA6C sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6C O sema Y|semaphorin-6C|semaphorin-Y 20121230 -9606 10501 SEMA6B UNQ1907/PRO4353 SEM-SEMA-Y|SEMA-VIB|SEMAN|semaZ HGNC:10739|MIM:608873|Ensembl:ENSG00000167680|HPRD:12322|Vega:OTTHUMG00000182011 19 19p13.3 sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6B protein-coding SEMA6B sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6B O semaphorin VIB|semaphorin Z|semaphorin-6B|semaphorin-6Ba 20121230 -9606 10505 SEMA4F - M-SEMA|PRO2353|S4F|SEMAM|SEMAW|m-Sema-M HGNC:10734|MIM:603706|Ensembl:ENSG00000135622|HPRD:04748|Vega:OTTHUMG00000129952 2 2p13.1 sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4F protein-coding SEMA4F sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4F O semaphorin M|semaphorin-4F|semaphorin-M|semaphorin-W 20121230 -9606 10507 SEMA4D XXyac-YM68G7.1 C9orf164|CD100|M-sema-G|SEMAJ|coll-4 HGNC:10732|MIM:601866|Ensembl:ENSG00000187764|HPRD:03520|Vega:OTTHUMG00000020185 9 9q22.2 sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4D protein-coding SEMA4D sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4D O A8|BB18|GR3|sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, 4D|semaphorin-4D 20121230 -9606 10509 SEMA4B UNQ749/PRO1480 SEMAC|SemC HGNC:10730|Ensembl:ENSG00000185033|HPRD:10217|Vega:OTTHUMG00000172096 15 15q25 sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4B protein-coding SEMA4B sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4B O sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, 4B|semaphorin-4B 20121230 -9606 10512 SEMA3C - SEMAE|SemE HGNC:10725|MIM:602645|Ensembl:ENSG00000075223|HPRD:04034|Vega:OTTHUMG00000023447 7 7q21-q31 sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C protein-coding SEMA3C sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C O sema E|semaphorin E|semaphorin-3C|semaphorin-E 20121230 -9606 10513 APPBP2 - HS.84084|PAT1 HGNC:622|MIM:605324|Ensembl:ENSG00000062725|HPRD:05616|Vega:OTTHUMG00000180048 17 17q23.2 amyloid beta precursor protein (cytoplasmic tail) binding protein 2 protein-coding APPBP2 amyloid beta precursor protein (cytoplasmic tail) binding protein 2 O APP-BP2|amyloid beta precursor protein-binding protein 2|amyloid protein-binding protein 2|protein interacting with APP tail 1 20121230 -9606 10514 MYBBP1A - P160|PAP2 HGNC:7546|MIM:604885|Ensembl:ENSG00000132382|HPRD:05349|Vega:OTTHUMG00000090747 17 17p13.3 MYB binding protein (P160) 1a protein-coding MYBBP1A MYB binding protein (P160) 1a O myb-binding protein 1A|p53-activated protein-2 20121230 -9606 10516 FBLN5 UNQ184/PRO210 ADCL2|ARCL1A|ARMD3|DANCE|EVEC|FIBL-5|UP50 HGNC:3602|MIM:604580|Ensembl:ENSG00000140092|HPRD:05204|Vega:OTTHUMG00000171122 14 14q32.1 fibulin 5 protein-coding FBLN5 fibulin 5 O developmental arteries and neural crest EGF-like protein|fibulin-5|urine p50 protein 20121230 -9606 10517 FBXW10 - Fbw10|HREP|SM25H2|SM2SH2 HGNC:1211|MIM:611679|Ensembl:ENSG00000171931|HPRD:06851|Vega:OTTHUMG00000059048 17 17p12 F-box and WD repeat domain containing 10 protein-coding FBXW10 F-box and WD repeat domain containing 10 O F-box and WD-40 domain protein 10|F-box/WD repeat-containing protein 10|ubiquitin ligase specificity factor 20121230 -9606 10518 CIB2 - DFNB48|KIP2|USH1J HGNC:24579|MIM:605564|Ensembl:ENSG00000136425|HPRD:05713|Vega:OTTHUMG00000143731 15 15q24 calcium and integrin binding family member 2 protein-coding CIB2 calcium and integrin binding family member 2 O 2810434I23Rik|DNA-dependent protein kinase catalytic subunit-interacting protein 2|KIP 2|Usher syndrome 1J (autosomal recessive)|calcium and integrin-binding family member 2 20121230 -9606 10519 CIB1 - CIB|KIP|KIP1|SIP2-28 HGNC:16920|MIM:602293|Ensembl:ENSG00000185043|HPRD:03800|Vega:OTTHUMG00000149808 15 15q25.3-q26 calcium and integrin binding 1 (calmyrin) protein-coding CIB1 calcium and integrin binding 1 (calmyrin) O CIBP|DNA-PKcs-interacting protein|DNA-dependent protein kinase interacting protein|SNK-interacting protein 2-28|Snk interacting protein 2-28|calcium and integrin binding protein 1|calcium and integrin binding, protein kinase interacting protein|calcium and integrin-binding protein 1|calcium- and integrin-binding protein|calmyrin|kinase-interacting protein 20121230 -9606 10520 ZNF211 - C2H2-25|CH2H2-25|ZNF-25|ZNFC25 HGNC:13003|MIM:601856|Ensembl:ENSG00000121417|HPRD:03512|Vega:OTTHUMG00000168012 19 19q13.4 zinc finger protein 211 protein-coding ZNF211 zinc finger protein 211 O zinc finger protein C2H2-25 20121230 -9606 10521 DDX17 RP3-434P1.1 P72|RH70 HGNC:2740|MIM:608469|Ensembl:ENSG00000100201|HPRD:10532|Vega:OTTHUMG00000151136 22 22q13.1 DEAD (Asp-Glu-Ala-Asp) box helicase 17 protein-coding DDX17 DEAD (Asp-Glu-Ala-Asp) box helicase 17 O DEAD (Asp-Glu-Ala-Asp) box polypeptide 17|DEAD box protein p72|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 17 (72kD)|RNA-dependent helicase p72|probable ATP-dependent RNA helicase DDX17 20121230 -9606 10522 DEAF1 - NUDR|SPN|ZMYND5 HGNC:14677|MIM:602635|Ensembl:ENSG00000177030|HPRD:04027|Vega:OTTHUMG00000165363 11 11p15.5 deformed epidermal autoregulatory factor 1 (Drosophila) protein-coding DEAF1 deformed epidermal autoregulatory factor 1 (Drosophila) O deformed epidermal autoregulatory factor 1 homolog|nuclear DEAF-1-related transcriptional regulator|suppressin|zinc finger MYND domain-containing protein 5 20121230 -9606 10523 CHERP - DAN16|SCAF6|SRA1 HGNC:16930|Ensembl:ENSG00000085872|Vega:OTTHUMG00000169304 19 19p13.1 calcium homeostasis endoplasmic reticulum protein protein-coding CHERP calcium homeostasis endoplasmic reticulum protein O ERPROT 213-21|ERPROT213-21|SR-related CTD associated factor 6|SR-related CTD-associated factor 6|protein with polyglutamine repeat 20121230 -9606 10524 KAT5 - ESA1|HTATIP|HTATIP1|PLIP|TIP|TIP60|cPLA2 HGNC:5275|MIM:601409|Ensembl:ENSG00000172977|HPRD:03245|Vega:OTTHUMG00000166617 11 11q13 K(lysine) acetyltransferase 5 protein-coding KAT5 K(lysine) acetyltransferase 5 O 60 kDa Tat-interactive protein|HIV-1 Tat interactive protein, 60kDa|K-acetyltransferase 5|Tat interacting protein, 60kDa|cPLA(2)-interacting protein|cPLA2 interacting protein|histone acetyltransferase HTATIP|histone acetyltransferase KAT5 20121230 -9606 10525 HYOU1 - GRP-170|Grp170|HSP12A|ORP-150|ORP150 HGNC:16931|MIM:601746|Ensembl:ENSG00000149428|HPRD:03448|Vega:OTTHUMG00000166354 11 11q23.1-q23.3 hypoxia up-regulated 1 protein-coding HYOU1 hypoxia up-regulated 1 O 150 kDa oxygen-regulated protein|170 kDa glucose-regulated protein|glucose-regulated protein 170|hypoxia up-regulated protein 1|oxygen regulated protein (150kD) 20121230 -9606 10526 IPO8 - RANBP8 HGNC:9853|MIM:605600|Ensembl:ENSG00000133704|HPRD:09282|Vega:OTTHUMG00000169172 12 12p11.21 importin 8 protein-coding IPO8 importin 8 O RAN binding protein 8|imp8|importin-8|ran-binding protein 8 20121230 -9606 10527 IPO7 - Imp7|RANBP7 HGNC:9852|MIM:605586|Ensembl:ENSG00000205339|HPRD:09280|Vega:OTTHUMG00000165753 11 11p15.4 importin 7 protein-coding IPO7 importin 7 O RAN-binding protein 7|importin-7 20121230 -9606 10528 NOP56 RP4-686C3.1 NOL5A|SCA36 HGNC:15911|MIM:614154|Ensembl:ENSG00000101361|HPRD:10119|Vega:OTTHUMG00000031703 20 20p13 NOP56 ribonucleoprotein protein-coding NOP56 NOP56 ribonucleoprotein O NOP56 ribonucleoprotein homolog|nucleolar protein 56|nucleolar protein 5A (56kDa with KKE/D repeat) 20121230 -9606 10529 NEBL RP11-56H7.1 LASP2|LNEBL HGNC:16932|MIM:605491|Ensembl:ENSG00000078114|HPRD:10403|Vega:OTTHUMG00000017788 10 10p12 nebulette protein-coding NEBL nebulette O LIM-nebulette|actin-binding Z-disk protein 20121230 -9606 10531 PITRM1 RP11-298E9.1 MP1|PreP HGNC:17663|Ensembl:ENSG00000107959|HPRD:07142|Vega:OTTHUMG00000017557 10 10p15.2 pitrilysin metallopeptidase 1 protein-coding PITRM1 pitrilysin metallopeptidase 1 O PreP peptidasome|metalloprotease 1 (pitrilysin family)|pitrilysin metalloproteinase 1|presequence protease, mitochondrial 20121230 -9606 10533 ATG7 - APG7-LIKE|APG7L|GSA7 HGNC:16935|MIM:608760|Ensembl:ENSG00000197548|HPRD:12293|Vega:OTTHUMG00000129740 3 3p25.3 autophagy related 7 protein-coding ATG7 autophagy related 7 O ATG12-activating enzyme E1 ATG7|ATG7 autophagy related 7 homolog|autophagy-related protein 7|hAGP7|ubiquitin activating enzyme E1-like protein|ubiquitin-activating enzyme E1-like protein|ubiquitin-like modifier-activating enzyme ATG7 20121230 -9606 10534 SSSCA1 - p27 HGNC:11328|MIM:606044|Ensembl:ENSG00000173465|HPRD:06921|Vega:OTTHUMG00000166388 11 11q13.1 Sjogren syndrome/scleroderma autoantigen 1 protein-coding SSSCA1 Sjogren syndrome/scleroderma autoantigen 1 O Sjoegren syndrome/scleroderma autoantigen 1|Sjogren's syndrome/scleroderma autoantigen 1|autoantigen p27|centromeric autoantigen (27kD) 20121230 -9606 10535 RNASEH2A - AGS4|JUNB|RNASEHI|RNHIA|RNHL HGNC:18518|MIM:606034|Ensembl:ENSG00000104889|HPRD:06914|Vega:OTTHUMG00000180481 19 19p13.2 ribonuclease H2, subunit A protein-coding RNASEH2A ribonuclease H2, subunit A O RNase H(35)|RNase H2 subunit A|RNase HI large subunit|aicardi-Goutieres syndrome 4 protein|ribonuclease H2 subunit A|ribonuclease H2, large subunit|ribonuclease HI large subunit|ribonuclease HI subunit A|ribonuclease HI, large subunit 20121230 -9606 10536 LEPREL2 - GRCB|HSU47926|P3H3 HGNC:19318|MIM:610342|Ensembl:ENSG00000110811|HPRD:10039|Vega:OTTHUMG00000168516 12 12q13 leprecan-like 2 protein-coding LEPREL2 leprecan-like 2 O B protein|gene rich cluster, B|leprecan-like 2 protein|leprecan-like protein 2|prolyl 3-hydroxylase 3|protein B 20121230 -9606 10537 UBD DADB-115L1.4 FAT10|GABBR1|UBD-3 HGNC:18795|MIM:606050|Ensembl:ENSG00000213886|HPRD:09354|Vega:OTTHUMG00000031289 6 6p21.3 ubiquitin D protein-coding UBD ubiquitin D O diubiquitin|ubiquitin-like protein FAT10 20121230 -9606 10538 BATF - B-ATF|BATF1|SFA-2|SFA2 HGNC:958|MIM:612476|Ensembl:ENSG00000156127|HPRD:09820|Vega:OTTHUMG00000171486 14 14q24.3 basic leucine zipper transcription factor, ATF-like protein-coding BATF basic leucine zipper transcription factor, ATF-like O B-cell-activating transcription factor|SF-HT-activated gene 2 protein|activating transcription factor B|basic leucine zipper transcriptional factor ATF-like 20121230 -9606 10539 GLRX3 HUSSY-22 GLRX4|GRX3|GRX4|PICOT|TXNL2|TXNL3 HGNC:15987|MIM:612754|Ensembl:ENSG00000108010|HPRD:10153|Vega:OTTHUMG00000019267 10 10q26 glutaredoxin 3 protein-coding GLRX3 glutaredoxin 3 O PKC-interacting cousin of thioredoxin|PKC-theta-interacting protein|PKCq-interacting protein|glutaredoxin 4|glutaredoxin-3|thioredoxin-like protein 2 20121230 -9606 10540 DCTN2 - DCTN50|DYNAMITIN|RBP50 HGNC:2712|MIM:607376|Ensembl:ENSG00000175203|HPRD:09568|Vega:OTTHUMG00000170124 12 12q13.3 dynactin 2 (p50) protein-coding DCTN2 dynactin 2 (p50) O 50 kD dynein-associated polypeptide|50 kDa dynein-associated polypeptide|dynactin complex 50 kD subunit|dynactin complex 50 kDa subunit|dynactin subunit 2|p50 dynamitin 20121230 -9606 10541 ANP32B RP11-535C21.1 APRIL|PHAPI2|SSP29 HGNC:16677|Ensembl:ENSG00000136938|HPRD:09803|Vega:OTTHUMG00000020338 9 9q22.32 acidic (leucine-rich) nuclear phosphoprotein 32 family, member B protein-coding ANP32B acidic (leucine-rich) nuclear phosphoprotein 32 family, member B O acidic leucine-rich nuclear phosphoprotein 32 family member B|acidic protein rich in leucines|putative HLA-DR-associated protein I-2|silver-stainable protein SSP29 20121230 -9606 10542 LAMTOR5 - HBXIP|XIP HGNC:17955|MIM:608521|Ensembl:ENSG00000134248|HPRD:09773|Vega:OTTHUMG00000011568 1 1p13.3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 5 protein-coding LAMTOR5 late endosomal/lysosomal adaptor, MAPK and MTOR activator 5 O HBV X-interacting protein|HBx-interacting protein|hepatitis B virus x interacting protein|hepatitis B virus x-interacting protein (9.6kD)|late endosomal/lysosomal adaptor and MAPK and MTOR activator 5|ragulator complex protein LAMTOR5 20121230 -9606 10544 PROCR - CCCA|CCD41|CD201|EPCR HGNC:9452|MIM:600646|Ensembl:ENSG00000101000|HPRD:02801|Vega:OTTHUMG00000032323 20 20q11.2 protein C receptor, endothelial protein-coding PROCR protein C receptor, endothelial O APC receptor|CD201 antigen|activated protein C receptor|cell cycle, centrosome-associated protein|centrocyclin|endothelial cell protein C receptor|endothelial protein C receptor 20121230 -9606 10547 PSORS4 - - HGNC:17275|MIM:603935 1 1q21 psoriasis susceptibility 4 unknown PSORS4 psoriasis susceptibility 4 O - 20120826 -9606 10548 TM9SF1 - HMP70|MP70 HGNC:11864|Ensembl:ENSG00000100926|HPRD:09987|Vega:OTTHUMG00000029322 14 14q11.2 transmembrane 9 superfamily member 1 protein-coding TM9SF1 transmembrane 9 superfamily member 1 O MP70 protein family member|multispanning membrane protein (70kD)|transmembrane protein 9 superfamily member 1 20121230 -9606 10549 PRDX4 - AOE37-2|PRX-4 HGNC:17169|MIM:606506|Ensembl:ENSG00000123131|HPRD:05935|Vega:OTTHUMG00000021253 X Xp22.11 peroxiredoxin 4 protein-coding PRDX4 peroxiredoxin 4 O antioxidant enzyme AOE372|peroxiredoxin IV|peroxiredoxin-4|prx-IV|thioredoxin peroxidase (antioxidant enzyme)|thioredoxin peroxidase AO372|thioredoxin-dependent peroxide reductase A0372 20121230 -9606 10550 ARL6IP5 HSPC127 DERP11|GTRAP3-18|JWA|PRAF3|addicsin|hp22|jmx HGNC:16937|MIM:605709|Ensembl:ENSG00000144746|HPRD:09303|Vega:OTTHUMG00000158773 3 3p14 ADP-ribosylation-like factor 6 interacting protein 5 protein-coding ARL6IP5 ADP-ribosylation-like factor 6 interacting protein 5 O ADP-ribosylation factor-like protein 6-interacting protein 5|ARL-6-interacting protein 5|JM5|PRA1 domain family 3|PRA1 family protein 3|aip-5|cytoskeleton related vitamin A responsive protein|cytoskeleton-related vitamin A-responsive protein|dermal papilla derived protein 11|dermal papilla-derived protein 11|glutamate transporter EAAC1-interacting protein|glutamate transporter EEAC1-associated protein|prenylated Rab acceptor protein 2|protein JWa|putative MAPK activating protein PM27|putative MAPK-activating protein PM27 20121230 -9606 10551 AGR2 UNQ515/PRO1030 AG2|GOB-4|HAG-2|PDIA17|XAG-2 HGNC:328|MIM:606358|Ensembl:ENSG00000106541|HPRD:05896|Vega:OTTHUMG00000023446 7 7p21.3 anterior gradient 2 homolog (Xenopus laevis) protein-coding AGR2 anterior gradient 2 homolog (Xenopus laevis) O AG-2|HPC8|anterior gradient homolog 2|anterior gradient protein 2 homolog|protein disulfide isomerase family A, member 17|secreted cement gland homolog|secreted cement gland protein XAG-2 homolog 20121230 -9606 10552 ARPC1A - Arc40|SOP2Hs|SOP2L HGNC:703|MIM:604220|Ensembl:ENSG00000241685|HPRD:07252|Vega:OTTHUMG00000154553 7 7q22.1 actin related protein 2/3 complex, subunit 1A, 41kDa protein-coding ARPC1A actin related protein 2/3 complex, subunit 1A, 41kDa O SOP2-like protein|actin binding protein (Schizosaccharomyces pombe sop2-like)|actin-related protein 2/3 complex subunit 1A 20121230 -9606 10553 HTATIP2 - CC3|SDR44U1|TIP30 HGNC:16637|MIM:605628|Ensembl:ENSG00000109854|HPRD:09288|Vega:OTTHUMG00000166015 11 11p15.1 HIV-1 Tat interactive protein 2, 30kDa protein-coding HTATIP2 HIV-1 Tat interactive protein 2, 30kDa O 30 kDa HIV-1 TAT-interacting protein|HIV-1 TAT-interactive protein 2|Tat-interacting protein (30kD)|oxidoreductase HTATIP2|short chain dehydrogenase/reductase family 44U, member 1 20121230 -9606 10554 AGPAT1 DAAP-218M18.8 1-AGPAT1|G15|LPAAT-alpha|LPAATA HGNC:324|MIM:603099|Ensembl:ENSG00000204310|HPRD:04372|Vega:OTTHUMG00000031210 6 6p21.3 1-acylglycerol-3-phosphate O-acyltransferase 1 (lysophosphatidic acid acyltransferase, alpha) protein-coding AGPAT1 1-acylglycerol-3-phosphate O-acyltransferase 1 (lysophosphatidic acid acyltransferase, alpha) O 1-AGP acyltransferase 1|1-AGPAT 1|1-acyl-sn-glycerol-3-phosphate acyltransferase alpha|1-acylglycerol-3-phosphate O-acyltransferase 1 (acetoacetly Coenzyme A thiolase)|lysophosphatidic acid acyltransferase alpha|lysophospholipid acyltransferase 20121230 -9606 10555 AGPAT2 - 1-AGPAT2|BSCL|BSCL1|LPAAB|LPAAT-beta HGNC:325|MIM:603100|Ensembl:ENSG00000169692|HPRD:04373|Vega:OTTHUMG00000020936 9 9q34.3 1-acylglycerol-3-phosphate O-acyltransferase 2 (lysophosphatidic acid acyltransferase, beta) protein-coding AGPAT2 1-acylglycerol-3-phosphate O-acyltransferase 2 (lysophosphatidic acid acyltransferase, beta) O 1-AGP acyltransferase 2|1-AGPAT 2|1-acyl-sn-glycerol-3-phosphate acyltransferase beta|1-acylglycerol-3-phosphate O-acyltransferase 2 (lysophosphatidic acid acyltransferase-beta)|lysophosphatidic acid acyltransferase beta|lysophosphatidic acid acyltransferase-beta 20121230 -9606 10556 RPP30 RP11-320F15.1 TSG15 HGNC:17688|MIM:606115|Ensembl:ENSG00000148688|HPRD:09359|Vega:OTTHUMG00000018733 10 10q23.31 ribonuclease P/MRP 30kDa subunit protein-coding RPP30 ribonuclease P/MRP 30kDa subunit O RNase P subunit 2|RNaseP protein p30|ribonuclease P protein subunit p30 20121230 -9606 10557 RPP38 RP11-455B2.5 - HGNC:30329|MIM:606116|Ensembl:ENSG00000152464|HPRD:09360|Vega:OTTHUMG00000017728 10 10p13 ribonuclease P/MRP 38kDa subunit protein-coding RPP38 ribonuclease P/MRP 38kDa subunit O RNaseP protein p38|ribonuclease P protein subunit p38 20121230 -9606 10558 SPTLC1 RP11-118F2.1 HSAN|HSAN1|HSN1|LBC1|LCB1|SPT1|SPTI|hLCB1 HGNC:11277|MIM:605712|Ensembl:ENSG00000090054|HPRD:05754|Vega:OTTHUMG00000021047 9 9q22.2 serine palmitoyltransferase, long chain base subunit 1 protein-coding SPTLC1 serine palmitoyltransferase, long chain base subunit 1 O LCB 1|SPT 1|long chain base biosynthesis protein 1|serine C-palmitoyltransferase|serine palmitoyltransferase 1|serine-palmitoyl-CoA transferase 1 20121230 -9606 10559 SLC35A1 - CDG2F|CMPST|CST|hCST HGNC:11021|MIM:605634|Ensembl:ENSG00000164414|HPRD:09290|Vega:OTTHUMG00000015177 6 6q15 solute carrier family 35 (CMP-sialic acid transporter), member A1 protein-coding SLC35A1 solute carrier family 35 (CMP-sialic acid transporter), member A1 O CMP-SA-Tr|CMP-Sia-Tr|CMP-sialic acid transporter|mutated CMP-sialic acid transporter A1|solute carrier family 35 (CMP-sialic acid transporter), member 1|solute carrier family 35 (UDP-galactose transporter), member 1|solute carrier family 35 member A1 20121230 -9606 10560 SLC19A2 RP1-206D15.4 TC1|THMD1|THT1|THTR1|TRMA HGNC:10938|MIM:603941|Ensembl:ENSG00000117479|HPRD:04897|Vega:OTTHUMG00000035452 1 1q23.3 solute carrier family 19 (thiamine transporter), member 2 protein-coding SLC19A2 solute carrier family 19 (thiamine transporter), member 2 O high affinity thiamine transporter|reduced folate carrier protein (RFC) like|solute carrier family 19 member 2|thTr-1|thiamine transporter 1 20121230 -9606 10561 IFI44 - MTAP44|p44 HGNC:16938|MIM:610468|Ensembl:ENSG00000137965|HPRD:09998|Vega:OTTHUMG00000009723 1 1p31.1 interferon-induced protein 44 protein-coding IFI44 interferon-induced protein 44 O interferon-induced, hepatitis C-associated microtubular aggregate protein (44kD)|microtubule-associated protein 44 20121230 -9606 10562 OLFM4 UNQ362/PRO698 GC1|GW112|OLM4|OlfD|UNQ362|bA209J19.1|hGC-1|hOLfD HGNC:17190|MIM:614061|Ensembl:ENSG00000102837|HPRD:06580|Vega:OTTHUMG00000016981 13 13q14.3 olfactomedin 4 protein-coding OLFM4 olfactomedin 4 O G-CSF-stimulated clone 1 protein|antiapoptotic protein GW112|olfactomedin-4 20121230 -9606 10563 CXCL13 - ANGIE|ANGIE2|BCA-1|BCA1|BLC|BLR1L|SCYB13 HGNC:10639|MIM:605149|Ensembl:ENSG00000156234|HPRD:05513|Vega:OTTHUMG00000130201 4 4q21 chemokine (C-X-C motif) ligand 13 protein-coding CXCL13 chemokine (C-X-C motif) ligand 13 O B-cell chemoattractant|B-cell-attracting chemokine 1|B-cell-homing chemokine (ligand for Burkitt's lymphoma receptor-1)|B-lymphocyte chemoattractant|C-X-C motif chemokine 13|CXC chemokine BLC|b cell-attracting chemokine 1|b lymphocyte chemoattractant|chemokine (C-X-C motif) ligand 13 (B-cell chemoattractant)|small inducible cytokine B subfamily (Cys-X-Cys motif), member 13 (B-cell chemoattractant)|small-inducible cytokine B13 20121230 -9606 10564 ARFGEF2 - BIG2|PVNH2|dJ1164I10.1 HGNC:15853|MIM:605371|Ensembl:ENSG00000124198|HPRD:09250|Vega:OTTHUMG00000032687 20 20q13.13 ADP-ribosylation factor guanine nucleotide-exchange factor 2 (brefeldin A-inhibited) protein-coding ARFGEF2 ADP-ribosylation factor guanine nucleotide-exchange factor 2 (brefeldin A-inhibited) O brefeldin A-inhibited GEP 2|brefeldin A-inhibited guanine nucleotide-exchange protein 2 20121230 -9606 10565 ARFGEF1 - ARFGEP1|BIG1|P200 HGNC:15772|MIM:604141|Ensembl:ENSG00000066777|HPRD:09163|Vega:OTTHUMG00000164626 8 8q13 ADP-ribosylation factor guanine nucleotide-exchange factor 1 (brefeldin A-inhibited) protein-coding ARFGEF1 ADP-ribosylation factor guanine nucleotide-exchange factor 1 (brefeldin A-inhibited) O brefeldin A-inhibited guanine nucleotide-exchange protein 1|p200 ARF guanine nucleotide exchange factor 20121230 -9606 10566 AKAP3 - AKAP110|CT82|FSP95|PRKA3|SOB1 HGNC:373|MIM:604689|Ensembl:ENSG00000111254|HPRD:05256|Vega:OTTHUMG00000168226 12 12p13.3 A kinase (PRKA) anchor protein 3 protein-coding AKAP3 A kinase (PRKA) anchor protein 3 O A-kinase anchor protein 110 kDa|A-kinase anchor protein 3|A-kinase anchor protein, 110kDa|AKAP 110|AKAP-3|Fibrous Sheath Protein of 95 kDa|cancer/testis antigen 82|fibrous sheath protein, 95kDa|fibrousheathin 1|fibrousheathin I|fibrousheathin-1|protein kinase A anchoring protein 3|protein kinase A-anchoring protein 3|sperm oocyte-binding protein 1 20121230 -9606 10567 RABAC1 - PRA1|PRAF1|YIP3 HGNC:9794|MIM:604925|Ensembl:ENSG00000105404|HPRD:05375 19 19q13.2 Rab acceptor 1 (prenylated) protein-coding RABAC1 Rab acceptor 1 (prenylated) O PRA1 domain family 1|PRA1 family protein 1|prenylated Rab acceptor 1|prenylated Rab acceptor protein 1 20121230 -9606 10568 SLC34A2 - NAPI-3B|NAPI-IIb|NPTIIb HGNC:11020|MIM:604217|Ensembl:ENSG00000157765|HPRD:07251|Vega:OTTHUMG00000097757 4 4p15.2 solute carrier family 34 (sodium phosphate), member 2 protein-coding SLC34A2 solute carrier family 34 (sodium phosphate), member 2 O sodium-dependent phosphate transport protein 2B|sodium/phosphate cotransporter 2B|type II sodium-dependent phosphate transporter 3b 20121230 -9606 10569 SLU7 - 9G8|hSlu7 HGNC:16939|MIM:605974|Ensembl:ENSG00000164609|HPRD:12074|Vega:OTTHUMG00000130324 5 5q33.3 SLU7 splicing factor homolog (S. cerevisiae) protein-coding SLU7 SLU7 splicing factor homolog (S. cerevisiae) O pre-mRNA-splicing factor SLU7|splicing factor|step II splicing factor SLU7|zinc knuckle motif containing 20121230 -9606 10570 DPYSL4 RP11-140A10.4 CRMP3|DRP-4|ULIP4 HGNC:3016|MIM:608407|Ensembl:ENSG00000151640|HPRD:07463|Vega:OTTHUMG00000019283 10 10q26 dihydropyrimidinase-like 4 protein-coding DPYSL4 dihydropyrimidinase-like 4 O CRMP-3|ULIP-4|UNC33-like phosphoprotein 4|collapsin response mediator protein 3|dihydropyrimidinase-related protein 4 20121230 -9606 10572 SIVA1 - CD27BP|SIVA|Siva-1|Siva-2 HGNC:17712|MIM:605567|Ensembl:ENSG00000184990|HPRD:16124|Vega:OTTHUMG00000170819 14 14q32.33 SIVA1, apoptosis-inducing factor protein-coding SIVA1 SIVA1, apoptosis-inducing factor O CD27-binding (Siva) protein|apoptosis regulatory protein Siva 20121230 -9606 10573 MRPL28 Z97634.1-001 MAAT1|p15 HGNC:14484|MIM:604853|Ensembl:ENSG00000086504|Vega:OTTHUMG00000047994 16 16p13.3 mitochondrial ribosomal protein L28 protein-coding MRPL28 mitochondrial ribosomal protein L28 O 39S ribosomal protein L28, mitochondrial|L28mt|MRP-L28|melanoma antigen p15|melanoma-associated antigen recognised by cytotoxic T lymphocytes|melanoma-associated antigen recognized by T lymphocytes|melanoma-associated antigen recognized by T-lymphocytes 20121230 -9606 10574 CCT7 - CCTETA|CCTH|NIP7-1|TCP1ETA HGNC:1622|MIM:605140|Ensembl:ENSG00000135624|HPRD:06896|Vega:OTTHUMG00000152765 2 2p13.2 chaperonin containing TCP1, subunit 7 (eta) protein-coding CCT7 chaperonin containing TCP1, subunit 7 (eta) O CCT-eta|HIV-1 Nef interacting protein|HIV-1 Nef-interacting protein|T-complex protein 1 subunit eta|TCP-1-eta|chaperonin containing t-complex polypeptide 1, eta subunit 20121230 -9606 10575 CCT4 - CCT-DELTA|Cctd|SRB HGNC:1617|MIM:605142|Ensembl:ENSG00000115484|HPRD:05506|Vega:OTTHUMG00000152166 2 2p15 chaperonin containing TCP1, subunit 4 (delta) protein-coding CCT4 chaperonin containing TCP1, subunit 4 (delta) O T-complex protein 1 subunit delta|TCP-1-delta|chaperonin containing t-complex polypeptide 1, delta subunit|stimulator of TAR RNA-binding 20121230 -9606 10576 CCT2 - 99D8.1|CCT-beta|CCTB|PRO1633|TCP-1-beta HGNC:1615|MIM:605139|Ensembl:ENSG00000166226|HPRD:06895|Vega:OTTHUMG00000169383 12 12q15 chaperonin containing TCP1, subunit 2 (beta) protein-coding CCT2 chaperonin containing TCP1, subunit 2 (beta) O T-complex protein 1 subunit beta|T-complex protein 1, beta subunit|chaperonin containing t-complex polypeptide 1, beta subunit|chaperonin containing t-complex polypeptide 1, subunit 2 20121230 -9606 10577 NPC2 - EDDM1|HE1 HGNC:14537|MIM:601015|Ensembl:ENSG00000119655|HPRD:03008|Vega:OTTHUMG00000171212 14 14q24.3 Niemann-Pick disease, type C2 protein-coding NPC2 Niemann-Pick disease, type C2 O epididymal protein 1|epididymal secretory protein E1|human epididymis-specific protein 1|niemann-Pick disease type C2 protein|tissue-specific secretory protein 20121230 -9606 10578 GNLY - 519|D2S69E|LAG-2|LAG2|NKG5|TLA519 HGNC:4414|MIM:188855|Ensembl:ENSG00000115523|HPRD:01788|Vega:OTTHUMG00000130179 2 2p11.2 granulysin protein-coding GNLY granulysin O T-cell activation protein 519|T-lymphocyte activation gene 519|lymphocyte-activation gene 2|lymphokine LAG-2 20121230 -9606 10579 TACC2 RP11-296H2.1 AZU-1|ECTACC HGNC:11523|MIM:605302|Ensembl:ENSG00000138162|HPRD:05600|Vega:OTTHUMG00000019181 10 10q26 transforming, acidic coiled-coil containing protein 2 protein-coding TACC2 transforming, acidic coiled-coil containing protein 2 O anti zuai-1|transforming acidic coiled-coil-containing protein 2 20121230 -9606 10580 SORBS1 RP11-476E15.1 CAP|FLAF2|R85FL|SH3D5|SH3P12|SORB1 HGNC:14565|MIM:605264|Ensembl:ENSG00000095637|HPRD:05587|Vega:OTTHUMG00000018812 10 10q23.33 sorbin and SH3 domain containing 1 protein-coding SORBS1 sorbin and SH3 domain containing 1 O Fas-ligand associated factor 2|SH3 domain protein 5|SH3-domain protein 5 (ponsin)|c-Cbl associated protein|c-Cbl-associated protein|ponsin|sorbin and SH3 domain-containing protein 1 20121230 -9606 10581 IFITM2 - 1-8D|DSPA2c HGNC:5413|MIM:605578|Ensembl:ENSG00000185201|HPRD:05718|Vega:OTTHUMG00000165357 11 11p15.5 interferon induced transmembrane protein 2 protein-coding IFITM2 interferon induced transmembrane protein 2 O dispanin subfamily A member 2c|interferon-induced transmembrane protein 2|interferon-inducible protein 1-8D 20121230 -9606 10584 COLEC10 UNQ366/PRO702 CLL1 HGNC:2220|MIM:607620|Ensembl:ENSG00000184374|HPRD:07403|Vega:OTTHUMG00000164971 8 8q23-q24.1 collectin sub-family member 10 (C-type lectin) protein-coding COLEC10 collectin sub-family member 10 (C-type lectin) O CL-34|collectin 34|collectin liver 1|collectin liver protein 1|collectin-10|collectin-34 20121230 -9606 10585 POMT1 RP11-334J6.2 LGMD2K|MDDGA1|MDDGB1|MDDGC1|RT HGNC:9202|MIM:607423|Ensembl:ENSG00000130714|HPRD:06305|Vega:OTTHUMG00000020826 9 9q34.1 protein-O-mannosyltransferase 1 protein-coding POMT1 protein-O-mannosyltransferase 1 O dolichyl-phosphate-mannose--protein mannosyltransferase 1|protein O-mannosyl-transferase 1 20121230 -9606 10586 MAB21L2 - - HGNC:6758|MIM:604357|Ensembl:ENSG00000181541|HPRD:05075|Vega:OTTHUMG00000161442 4 4q31 mab-21-like 2 (C. elegans) protein-coding MAB21L2 mab-21-like 2 (C. elegans) O protein mab-21-like 2 20121230 -9606 10587 TXNRD2 - SELZ|TR|TR-BETA|TR3|TRXR2 HGNC:18155|MIM:606448|Ensembl:ENSG00000184470|HPRD:05921|HPRD:18519|Vega:OTTHUMG00000149975 22 22q11.21 thioredoxin reductase 2 protein-coding TXNRD2 thioredoxin reductase 2 O selenoprotein Z|thioredoxin reductase 2, mitochondrial|thioredoxin reductase 3|thioredoxin reductase TR3|thioredoxin reductase beta 20121230 -9606 10588 MTHFS - HsT19268 HGNC:7437|MIM:604197|Ensembl:ENSG00000136371|HPRD:09174|Vega:OTTHUMG00000144174 15 15q25.1 5,10-methenyltetrahydrofolate synthetase (5-formyltetrahydrofolate cyclo-ligase) protein-coding MTHFS 5,10-methenyltetrahydrofolate synthetase (5-formyltetrahydrofolate cyclo-ligase) O 5-formyltetrahydrofolate cyclo-ligase|methenyl-THF synthetase 20121230 -9606 10589 DRAP1 - NC2-alpha HGNC:3019|MIM:602289|Ensembl:ENSG00000175550|HPRD:03796|Vega:OTTHUMG00000166723 11 11q13.3 DR1-associated protein 1 (negative cofactor 2 alpha) protein-coding DRAP1 DR1-associated protein 1 (negative cofactor 2 alpha) O dr1-associated corepressor|negative co-factor 2-alpha|negative cofactor 2 alpha 20121230 -9606 10590 SCGN - CALBL|DJ501N12.8|SECRET|SEGN|setagin HGNC:16941|MIM:609202|Ensembl:ENSG00000079689|HPRD:10211|Vega:OTTHUMG00000014409 6 6p22.3-p22.1 secretagogin, EF-hand calcium binding protein protein-coding SCGN secretagogin, EF-hand calcium binding protein O secretagogin 20121230 -9606 10591 DNPH1 - C6orf108|RCL|RP3-330M21.3|dJ330M21.3 HGNC:21218|Ensembl:ENSG00000112667|HPRD:06707|Vega:OTTHUMG00000014724 6 6p21.1 2'-deoxynucleoside 5'-phosphate N-hydrolase 1 protein-coding DNPH1 2'-deoxynucleoside 5'-phosphate N-hydrolase 1 O c-Myc-responsive protein Rcl|deoxyribonucleoside 5'-monophosphate N-glycosidase|putative c-Myc-responsive 20121230 -9606 10592 SMC2 PRO0324 CAP-E|CAPE|SMC-2|SMC2L1 HGNC:14011|MIM:605576|Ensembl:ENSG00000136824|HPRD:09277|Vega:OTTHUMG00000020401 9 9q31.1 structural maintenance of chromosomes 2 protein-coding SMC2 structural maintenance of chromosomes 2 O SMC protein 2|SMC2 (structural maintenance of chromosomes 2, yeast)-like 1|XCAP-E homolog|chromosome-associated protein E|structural maintenance of chromosomes (SMC) family member, chromosome-associated protein E|structural maintenance of chromosomes protein 2 20121230 -9606 10594 PRPF8 - HPRP8|PRP8|PRPC8|RP13 HGNC:17340|MIM:607300|Ensembl:ENSG00000174231|HPRD:06295|Vega:OTTHUMG00000090553 17 17p13.3 PRP8 pre-mRNA processing factor 8 homolog (S. cerevisiae) protein-coding PRPF8 PRP8 pre-mRNA processing factor 8 homolog (S. cerevisiae) O 220 kDa U5 snRNP-specific protein|PRP8 homolog|U5 snRNP-specific protein (220 kD), ortholog of S. cerevisiae Prp8p|apoptosis-regulated protein 1|apoptosis-regulated protein 2|p220|pre-mRNA-processing-splicing factor 8|precursor mRNA processing protein|splicing factor Prp8 20121230 -9606 10595 ERN2 - IRE1-BETA|IRE1b HGNC:16942|MIM:604034|Ensembl:ENSG00000134398|HPRD:04944|Vega:OTTHUMG00000177020 16 16p12.2 endoplasmic reticulum to nucleus signaling 2 protein-coding ERN2 endoplasmic reticulum to nucleus signaling 2 O ER to nucleus signalling 2|IRE1 beta|IRE1, S. cerevisiae, homolog of|endoplasmic reticulum to nucleus signalling 2|endoplasmic reticulum-to-nucleus signaling 2|hIRE2p|inositol-requiring 1 beta|inositol-requiring protein 2|serine/threonine-protein kinase/endoribonuclease IRE2 20121230 -9606 10597 TRAPPC2P1 - MIP-2A|SEDLP|SEDLP1 HGNC:10710 19 19q13.4 trafficking protein particle complex 2 pseudogene 1 pseudo TRAPPC2P1 trafficking protein particle complex 2 pseudogene 1 O - 20121230 -9606 10598 AHSA1 HSPC322 AHA1|C14orf3|p38 HGNC:1189|MIM:608466|Ensembl:ENSG00000100591|HPRD:09768|Vega:OTTHUMG00000171539 14 14q24 AHA1, activator of heat shock 90kDa protein ATPase homolog 1 (yeast) protein-coding AHSA1 AHA1, activator of heat shock 90kDa protein ATPase homolog 1 (yeast) O activator of 90 kDa heat shock protein ATPase homolog 1 20121230 -9606 10599 SLCO1B1 - HBLRR|LST-1|LST1|OATP-C|OATP1B1|OATP2|OATPC|SLC21A6 HGNC:10959|MIM:604843|Ensembl:ENSG00000134538|HPRD:09214|Vega:OTTHUMG00000169047 12 12p solute carrier organic anion transporter family, member 1B1 protein-coding SLCO1B1 solute carrier organic anion transporter family, member 1B1 O OATP-2|liver-specific organic anion transporter 1|sodium-independent organic anion-transporting polypeptide 2|solute carrier family 21 (organic anion transporter), member 6|solute carrier family 21 member 6|solute carrier organic anion transporter family member 1B1 20121230 -9606 10600 USP16 MSTP039 UBP-M HGNC:12614|MIM:604735|Ensembl:ENSG00000156256|HPRD:06881|Vega:OTTHUMG00000078802 21 21q22.11 ubiquitin specific peptidase 16 protein-coding USP16 ubiquitin specific peptidase 16 O deubiquitinating enzyme 16|ubiquitin carboxyl-terminal hydrolase 16|ubiquitin specific protease 16|ubiquitin thioesterase 16|ubiquitin thiolesterase 16|ubiquitin-processing protease UBP-M|ubiquitin-specific processing protease 16|ubiquitin-specific-processing protease 16 20121230 -9606 10602 CDC42EP3 - BORG2|CEP3|UB1 HGNC:16943|MIM:606133|Ensembl:ENSG00000163171|HPRD:09364|Vega:OTTHUMG00000100971 2 2p21 CDC42 effector protein (Rho GTPase binding) 3 protein-coding CDC42EP3 CDC42 effector protein (Rho GTPase binding) 3 O CRIB-containing BORG2 protein|MSE55-related Cdc42-binding protein|MSE55-related protein|binder of Rho GTPases 2|cdc42 effector protein 3 20121230 -9606 10603 SH2B2 - APS HGNC:17381|MIM:605300|HPRD:16097 7 7q22 SH2B adaptor protein 2 protein-coding SH2B2 SH2B adaptor protein 2 O SH2 and PH domain-containing adapter protein APS|SH2B adapter protein 2|adapter protein with pleckstrin homology and Src homology 2 domains|adaptor protein with pleckstrin homology and src homology 2 domains 20121230 -9606 10605 PAIP1 - - HGNC:16945|MIM:605184|Ensembl:ENSG00000172239|HPRD:05539|Vega:OTTHUMG00000096960 5 5p12 poly(A) binding protein interacting protein 1 protein-coding PAIP1 poly(A) binding protein interacting protein 1 O PABC1-interacting protein 1|PABP-interacting protein 1|PAIP-1|poly(A)-binding protein-interacting protein 1|polyadenylate binding protein-interacting protein 1|polyadenylate-binding protein-interacting protein 1 20121230 -9606 10606 PAICS - ADE2|ADE2H1|AIRC|PAIS HGNC:8587|MIM:172439|Ensembl:ENSG00000128050|HPRD:01401|Vega:OTTHUMG00000160957 4 4q12 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase protein-coding PAICS phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase O AIR carboxylase|SAICAR synthetase|multifunctional protein ADE2|multifunctional protein ADE2H1 20121230 -9606 10607 TBL3 - SAZD|UTP13 HGNC:11587|MIM:605915|Ensembl:ENSG00000183751|HPRD:09327|Vega:OTTHUMG00000128710 16 16p13.3 transducin (beta)-like 3 protein-coding TBL3 transducin (beta)-like 3 O WD repeat-containing protein SAZD|WD-repeat protein SAZD|transducin beta-like protein 3 20121230 -9606 10608 MXD4 RP11-478C1.1 MAD4|MST149|MSTP149|bHLHc12 HGNC:13906|Ensembl:ENSG00000123933|HPRD:10103|Vega:OTTHUMG00000090243 4 4p16.3 MAX dimerization protein 4 protein-coding MXD4 MAX dimerization protein 4 O Mad4 homolog|class C basic helix-loop-helix protein 12|max dimerization protein 4|max dimerizer 4|max-associated protein 4|max-interacting transcriptional repressor MAD4 20121230 -9606 10609 LEPREL4 - NO55|NOL55|SC65 HGNC:16946|Ensembl:ENSG00000141696|HPRD:10126|Vega:OTTHUMG00000133501 17 17q21.2 leprecan-like 4 protein-coding LEPREL4 leprecan-like 4 O leprecan-like protein 4|nucleolar autoantigen (55kD)|nucleolar autoantigen No55|nucleolar autoantigen, 55kDa|synaptonemal complex protein SC65 20121230 -9606 10610 ST6GALNAC2 - SAITL1|SIAT7|SIAT7B|SIATL1|ST6GalNAII|STHM HGNC:10867|MIM:610137|Ensembl:ENSG00000070731|HPRD:10231|Vega:OTTHUMG00000180301 17 17q25.1 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 protein-coding ST6GALNAC2 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 O (alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl galactosaminide B|(alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialyltransferase|SIAT7-B|ST6GalNAc II|ST6GalNAcII|alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2|galNAc alpha-2,6-sialyltransferase II|sialyltransferase 7 ((alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl galactosaminide B|sialyltransferase 7 ((alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialyltransferase) B|sialyltransferase 7B|sialyltransferase-like 1 20121230 -9606 10611 PDLIM5 L9 ENH|ENH1|LIM HGNC:17468|MIM:605904|Ensembl:ENSG00000163110|HPRD:05799|Vega:OTTHUMG00000130973 4 4q22 PDZ and LIM domain 5 protein-coding PDLIM5 PDZ and LIM domain 5 O PDZ and LIM domain protein 5|enigma homolog|enigma-like LIM domain protein|enigma-like PDZ and LIM domains protein 20121230 -9606 10612 TRIM3 - BERP|HAC1|RNF22|RNF97 HGNC:10064|MIM:605493|Ensembl:ENSG00000110171|Vega:OTTHUMG00000133405 11 11p15.5 tripartite motif containing 3 protein-coding TRIM3 tripartite motif containing 3 O RING finger protein 97|brain expressed ring finger|brain-expressed RING finger protein|ring finger protein 22|tripartite motif protein TRIM3|tripartite motif-containing 3|tripartite motif-containing protein 3 20121230 -9606 10613 ERLIN1 RP11-316M21.1 C10orf69|Erlin-1|KE04|KEO4|SPFH1 HGNC:16947|MIM:611604|Ensembl:ENSG00000107566|HPRD:08502|Vega:OTTHUMG00000018900 10 10q21-q22 ER lipid raft associated 1 protein-coding ERLIN1 ER lipid raft associated 1 O Band_7 23-211 Keo4 (Interim) similar to C.elegans protein C42C1.9|SPFH domain family, member 1|SPFH domain-containing protein 1|endoplasmic reticulum lipid raft-associated protein 1|erlin-1|stomatin-prohibitin-flotillin-HflC/K domain-containing protein 1 20121230 -9606 10614 HEXIM1 - CLP1|EDG1|HIS1|MAQ1 HGNC:24953|MIM:607328|Ensembl:ENSG00000186834|HPRD:09544|Vega:OTTHUMG00000180112 17 17q21.31 hexamethylene bis-acetamide inducible 1 protein-coding HEXIM1 hexamethylene bis-acetamide inducible 1 O HMBA-inducible|cardiac lineage protein 1|estrogen down-regulated gene 1 protein|hexamethylene bis-acetamide-inducible protein 1|hexamethylene bisacetamide-inducible protein|hexamethylene-bis-acetamide-inducible transcript 1|hexamthylene bis-acetamide inducible 1|menage a quatre 1|menage a quatre protein 1|protein HEXIM1 20121230 -9606 10615 SPAG5 - DEEPEST|MAP126|hMAP126 HGNC:13452|Ensembl:ENSG00000076382|HPRD:10246|Vega:OTTHUMG00000166586 17 17q11.2 sperm associated antigen 5 protein-coding SPAG5 sperm associated antigen 5 O astrin|mitotic spindle associated protein p126|mitotic spindle coiled-coil related protein|mitotic spindle-associated protein p126|sperm-associated antigen 5 20121230 -9606 10616 RBCK1 RP5-852M4.4 C20orf18|HOIL-1|HOIL1|RBCK2|RNF54|UBCE7IP3|XAP3|XAP4|ZRANB4 HGNC:15864|MIM:610924|Ensembl:ENSG00000125826|HPRD:16643|Vega:OTTHUMG00000031634 20 20p13 RanBP-type and C3HC4-type zinc finger containing 1 protein-coding RBCK1 RanBP-type and C3HC4-type zinc finger containing 1 O HBV associated factor 4|HBV-associated factor 4|RBCC protein interacting with PKC1|RING finger protein 54|heme-oxidized IRP2 ubiquitin ligase 1|hepatitis B virus X-associated protein 4|ranBP-type and C3HC4-type zinc finger-containing protein 1|ubiquitin conjugating enzyme 7 interacting protein 3|ubiquitin-conjugating enzyme 7-interacting protein 3 20121230 -9606 10617 STAMBP - AMSH HGNC:16950|MIM:606247|Ensembl:ENSG00000124356|HPRD:05877|Vega:OTTHUMG00000129817 2 2p13.1 STAM binding protein protein-coding STAMBP STAM binding protein O STAM-binding protein|associated molecule with the SH3 domain of STAM|endosome-associated ubiquitin isopeptidase 20121230 -9606 10618 TGOLN2 - TGN38|TGN46|TGN48|TGN51|TTGN2 HGNC:15450|MIM:603062|Ensembl:ENSG00000152291|HPRD:04343|Vega:OTTHUMG00000153017 2 2p11.2 trans-golgi network protein 2 protein-coding TGOLN2 trans-golgi network protein 2 O TGN38 homolog|trans-Golgi network integral membrane protein 2|trans-Golgi network protein (46, 48, 51kD isoforms)|trans-Golgi network protein TGN51 20121230 -9606 10620 ARID3B - BDP|DRIL2 HGNC:14350|MIM:612457|Ensembl:ENSG00000179361|HPRD:09806|Vega:OTTHUMG00000141321 15 15q24 AT rich interactive domain 3B (BRIGHT-like) protein-coding ARID3B AT rich interactive domain 3B (BRIGHT-like) O ARID domain-containing protein 3B|AT rich interactive domain 3B (BRIGHT- like)|AT-rich interactive domain-containing protein 3B|bright and dead ringer protein|bright-like protein 20121230 -9606 10621 POLR3F - RPC39|RPC6 HGNC:15763|Ensembl:ENSG00000132664|HPRD:15156|Vega:OTTHUMG00000031971 20 20p11.23 polymerase (RNA) III (DNA directed) polypeptide F, 39 kDa protein-coding POLR3F polymerase (RNA) III (DNA directed) polypeptide F, 39 kDa O DNA-directed RNA polymerase III 39 kDa polypeptide|DNA-directed RNA polymerase III subunit F|DNA-directed RNA polymerase III subunit RPC6|DNA-directed RNA polymerases III 39 kDa polypeptide|RNA polymerase III 39 kDa subunit|RNA polymerase III C39 subunit|RNA polymerase III subunit C6 20121230 -9606 10622 POLR3G - RPC32|RPC7 HGNC:30075|Ensembl:ENSG00000113356|HPRD:17881|Vega:OTTHUMG00000162809 5 5q14.3 polymerase (RNA) III (DNA directed) polypeptide G (32kD) protein-coding POLR3G polymerase (RNA) III (DNA directed) polypeptide G (32kD) O DNA-directed RNA polymerase III 32 kDa polypeptide|DNA-directed RNA polymerase III subunit G|DNA-directed RNA polymerase III subunit RPC7|RNA polymerase III 32 kDa subunit|RNA polymerase III subunit C7 20121230 -9606 10623 POLR3C - RPC3|RPC62 HGNC:30076|Ensembl:ENSG00000186141|HPRD:17880|Vega:OTTHUMG00000013753 1 1q21.1 polymerase (RNA) III (DNA directed) polypeptide C (62kD) protein-coding POLR3C polymerase (RNA) III (DNA directed) polypeptide C (62kD) O DNA-directed III 62 kDa polypeptide|DNA-directed RNA polymerase III subunit C|DNA-directed RNA polymerase III subunit RPC3|RNA polymerase III 62 kDa subunit|RNA polymerase III subunit C3 20121230 -9606 10625 IVNS1ABP RP4-635A23.5 FLARA3|HSPC068|KLHL39|ND1|NS-1|NS1-BP|NS1BP HGNC:16951|MIM:609209|Ensembl:ENSG00000116679|HPRD:10004|Vega:OTTHUMG00000035384 1 1q25.1-q31.1 influenza virus NS1A binding protein protein-coding IVNS1ABP influenza virus NS1A binding protein O NCX downstream gene 1|NS1-binding protein|aryl hydrocarbon receptor-associated 3|aryl hydrocarbon receptor-associated protein 3|influenza virus NS1A-binding protein 20121230 -9606 10626 TRIM16 - EBBP HGNC:17241|MIM:609505|Ensembl:ENSG00000221926|HPRD:15552|Vega:OTTHUMG00000059067 17 17p11.2 tripartite motif containing 16 protein-coding TRIM16 tripartite motif containing 16 O estrogen-responsive B box protein|tripartite motif-containing 16|tripartite motif-containing protein 16 20121230 -9606 10627 MYL12A - MLCB|MRCL3|MRLC3|MYL2B HGNC:16701|Ensembl:ENSG00000101608|HPRD:14735|Vega:OTTHUMG00000131509 18 18p11.31 myosin, light chain 12A, regulatory, non-sarcomeric protein-coding MYL12A myosin, light chain 12A, regulatory, non-sarcomeric O MLC-2B|myosin RLC|myosin regulatory light chain 12A|myosin regulatory light chain 2, nonsarcomeric|myosin regulatory light chain 3|myosin regulatory light chain MRCL3|myosin regulatory light chain MRLC3|myosin, light polypeptide, regulatory, non-sarcomeric (20kD) 20121230 -9606 10628 TXNIP RP11-315I20.4 EST01027|HHCPA78|THIF|VDUP1 HGNC:16952|MIM:606599|Ensembl:ENSG00000117289|HPRD:05964|Vega:OTTHUMG00000013755 1 1q21.1 thioredoxin interacting protein protein-coding TXNIP thioredoxin interacting protein O thioredoxin binding protein 2|thioredoxin-binding protein 2|thioredoxin-interacting protein|upregulated by 1,25-dihydroxyvitamin D-3|vitamin D3 up-regulated protein 1 20121230 -9606 10629 TAF6L - PAF65A HGNC:17305|MIM:602946|Ensembl:ENSG00000162227|HPRD:04253|Vega:OTTHUMG00000167610 11 11q12.3 TAF6-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa protein-coding TAF6L TAF6-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa O PAF65-alpha|PCAF-associated factor 65 alpha|PCAF-associated factor 65-alpha|TAF6-like RNA polymerase II p300/CBP-associated factor-associated factor 65 kDa subunit 6L|p300/CBP-associated factor (PCAF)-associated factor 65 20121230 -9606 10630 PDPN CTA-520D8.1 AGGRUS|GP36|GP40|Gp38|HT1A-1|OTS8|PA2.26|T1A|T1A-2 HGNC:29602|MIM:608863|Ensembl:ENSG00000162493|HPRD:16398|Vega:OTTHUMG00000007912 1 1p36.21 podoplanin protein-coding PDPN podoplanin O PA2.26 antigen|T1-alpha|glycoprotein 36|glycoprotein, 36-KD|hT1alpha-1|hT1alpha-2|lung type I cell membrane associated glycoprotein|lung type-I cell membrane-associated glycoprotein (T1A-2) 20121230 -9606 10631 POSTN - OSF-2|OSF2|PDLPOSTN|PN|RP11-412K4.1|periostin HGNC:16953|MIM:608777|Ensembl:ENSG00000133110|HPRD:12295|Vega:OTTHUMG00000016751 13 13q13.3 periostin, osteoblast specific factor protein-coding POSTN periostin, osteoblast specific factor O osteoblast specific factor 2 (fasciclin I-like)|osteoblast-specific factor 2|periodontal ligament-specific periostin|periostin|periostin isoform thy2|periostin isoform thy4|periostin isoform thy6|periostin isoform thy8 20121230 -9606 10632 ATP5L - ATP5JG HGNC:14247|Ensembl:ENSG00000167283|HPRD:09815|Vega:OTTHUMG00000166336 11 11q23.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit G protein-coding ATP5L ATP synthase, H+ transporting, mitochondrial Fo complex, subunit G O ATP synthase g chain, mitochondrial|ATP synthase subunit g, mitochondrial|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit G|ATP synthase, H+ transporting, mitochondrial F1F0, subunit g|ATPase subunit G|F1F0-type ATP synthase subunit g|F1Fo-ATP synthase complex Fo membrane domain g subunit 20121230 -9606 10633 RASL10A - RRP22 HGNC:16954|MIM:602220|Ensembl:ENSG00000100276|HPRD:03744|Vega:OTTHUMG00000151106 22 22q12.2 RAS-like, family 10, member A protein-coding RASL10A RAS-like, family 10, member A O ras-like protein RRP22|ras-like protein family member 10A|ras-related protein on chromosome 22 20121230 -9606 10634 GAS2L1 - GAR22 HGNC:16955|MIM:602128|Ensembl:ENSG00000185340|HPRD:03676|Vega:OTTHUMG00000151108 22 22q12.2 growth arrest-specific 2 like 1 protein-coding GAS2L1 growth arrest-specific 2 like 1 O GAS2-like protein 1|GAS2-related protein on chromosome 22|growth arrest-specific protein 2-like 1 20121230 -9606 10635 RAD51AP1 - PIR51 HGNC:16956|MIM:603070|Ensembl:ENSG00000111247|Vega:OTTHUMG00000168125 12 12p13.2-p13.1 RAD51 associated protein 1 protein-coding RAD51AP1 RAD51 associated protein 1 O RAD51-associated protein 1|RAD51-interacting protein 20121230 -9606 10636 RGS14 - - HGNC:9996|MIM:602513|Ensembl:ENSG00000169220|HPRD:03944|Vega:OTTHUMG00000163324 5 5q35.3 regulator of G-protein signaling 14 protein-coding RGS14 regulator of G-protein signaling 14 O regulator of G-protein signalling 14 20121230 -9606 10637 LEFTY1 UNQ278/PRO317 LEFTB|LEFTYB HGNC:6552|MIM:603037|Ensembl:ENSG00000243709|HPRD:09116|Vega:OTTHUMG00000037443 1 1q42.1 left-right determination factor 1 protein-coding LEFTY1 left-right determination factor 1 O left-right determination factor B|left-right determination, factor B|protein lefty-1|protein lefty-B 20121230 -9606 10638 SPHAR - RP4-803J11.4 HGNC:16957|Ensembl:ENSG00000213029|HPRD:11597|Vega:OTTHUMG00000058947 1 1q42.13 S-phase response (cyclin related) protein-coding SPHAR S-phase response (cyclin related) O S-phase response (cyclin-related)|S-phase response protein|protein SPHAR 20121230 -9606 10639 HHCM - hhc(M) HPRD:17101 8 8q24.3 Mahlavu hepatocellular carcinoma other - - - - 20120511 -9606 10640 EXOC5 - HSEC10|PRO1912|SEC10|SEC10L1|SEC10P HGNC:10696|MIM:604469|Ensembl:ENSG00000070367|HPRD:07258|Vega:OTTHUMG00000171309 14 14q22.3 exocyst complex component 5 protein-coding EXOC5 exocyst complex component 5 O SEC10-like 1|exocyst complex component Sec10 20121230 -9606 10641 NPRL2 - NPR2|NPR2L|TUSC4 HGNC:24969|MIM:607072|Ensembl:ENSG00000114388|HPRD:06147|Vega:OTTHUMG00000156864 3 3p21.3 nitrogen permease regulator-like 2 (S. cerevisiae) protein-coding NPRL2 nitrogen permease regulator-like 2 (S. cerevisiae) O 2810446G01Rik|G21 protein|NPR2-like protein|gene 21 protein|homologous to yeast nitrogen permease (candidate tumor suppressor)|nitrogen permease regulator 2-like protein|tumor suppressor candidate 4 20121230 -9606 10642 IGF2BP1 - CRD-BP|CRDBP|IMP-1|IMP1|VICKZ1|ZBP1 HGNC:28866|MIM:608288|Ensembl:ENSG00000159217|HPRD:09752|Vega:OTTHUMG00000161173 17 17q21.32 insulin-like growth factor 2 mRNA binding protein 1 protein-coding IGF2BP1 insulin-like growth factor 2 mRNA binding protein 1 O IGF-II mRNA-binding protein 1|IGF2 mRNA-binding protein 1|VICKZ family member 1|ZBP-1|coding region determinant-binding protein|insulin-like growth factor 2 mRNA-binding protein 1|zipcode-binding protein 1 20121230 -9606 10643 IGF2BP3 - CT98|IMP-3|IMP3|KOC1|VICKZ3 HGNC:28868|MIM:608259|Ensembl:ENSG00000136231|HPRD:16306|Vega:OTTHUMG00000128445 7 7p11 insulin-like growth factor 2 mRNA binding protein 3 protein-coding IGF2BP3 insulin-like growth factor 2 mRNA binding protein 3 O IGF II mRNA binding protein 3|IGF-II mRNA-binding protein 3|IGF2 mRNA-binding protein 3|KH domain containing protein overexpressed in cancer|KH domain-containing protein overexpressed in cancer|VICKZ family member 3|cancer/testis antigen 98|hKOC|insulin-like growth factor 2 mRNA-binding protein 3 20121230 -9606 10644 IGF2BP2 - IMP-2|IMP2|VICKZ2|p62 HGNC:28867|MIM:608289|Ensembl:ENSG00000073792|HPRD:10507|Vega:OTTHUMG00000074025 3 3q27.2 insulin-like growth factor 2 mRNA binding protein 2 protein-coding IGF2BP2 insulin-like growth factor 2 mRNA binding protein 2 O IGF-II mRNA-binding protein 2|IGF2 mRNA-binding protein 2|VICKZ family member 2|hepatocellular carcinoma autoantigen p62|insulin-like growth factor 2 mRNA-binding protein 2 20121230 -9606 10645 CAMKK2 - CAMKK|CAMKKB HGNC:1470|MIM:615002|Ensembl:ENSG00000110931|HPRD:06467|Vega:OTTHUMG00000169156 12 12q24.2 calcium/calmodulin-dependent protein kinase kinase 2, beta protein-coding CAMKK2 calcium/calmodulin-dependent protein kinase kinase 2, beta O CAMKK beta protein|caM-KK 2|caM-KK beta|caM-kinase kinase 2|caM-kinase kinase beta|calcium/calmodulin-dependent protein kinase beta|calcium/calmodulin-dependent protein kinase kinase 2 20121230 -9606 10647 SCGB1D2 - LIPB|LPHB HGNC:18396|Ensembl:ENSG00000124935|HPRD:18026|Vega:OTTHUMG00000167508 11 11q13 secretoglobin, family 1D, member 2 protein-coding SCGB1D2 secretoglobin, family 1D, member 2 O lipophilin-B|prostatein-like lipophilin B|secretoglobin family 1D member 2 20121230 -9606 10648 SCGB1D1 - LIPA|LPHA HGNC:18395|Ensembl:ENSG00000168515|HPRD:18025|Vega:OTTHUMG00000167505 11 11q13 secretoglobin, family 1D, member 1 protein-coding SCGB1D1 secretoglobin, family 1D, member 1 O lipophilin A (uteroglobin family member)|lipophilin-A|prostatein-like lipophilin A|secretoglobin family 1D member 1 20121230 -9606 10650 SLMO1 - C18orf43|HFL-EDDG1|PRELID3A HGNC:24639|Ensembl:ENSG00000141391|HPRD:09981|Vega:OTTHUMG00000131694 18 18p11.21 slowmo homolog 1 (Drosophila) protein-coding SLMO1 slowmo homolog 1 (Drosophila) O erythroid differentiation and denucleation factor 1|protein slowmo homolog 1 20121230 -9606 10651 MTX2 - - HGNC:7506|MIM:608555|Ensembl:ENSG00000128654|HPRD:09777|Vega:OTTHUMG00000132514 2 2q31.1 metaxin 2 protein-coding MTX2 metaxin 2 O metaxin-2|mitochondrial outer membrane import complex protein 2 20121230 -9606 10652 YKT6 - - HGNC:16959|MIM:606209|Ensembl:ENSG00000106636|HPRD:16205|Vega:OTTHUMG00000129089 7 7p15.1 YKT6 v-SNARE homolog (S. cerevisiae) protein-coding YKT6 YKT6 v-SNARE homolog (S. cerevisiae) O R-SNARE|SNARE protein Ykt6|YKT6 v-SNARE protein|YKT6, S. cerevisiae, homolog of|synaptobrevin homolog YKT6 20121230 -9606 10653 SPINT2 - DIAR3|HAI-2|HAI2|Kop|PB HGNC:11247|MIM:605124|Ensembl:ENSG00000167642|HPRD:05495|Vega:OTTHUMG00000181891 19 19q13.1 serine peptidase inhibitor, Kunitz type, 2 protein-coding SPINT2 serine peptidase inhibitor, Kunitz type, 2 O hepatocyte growth factor activator inhibitor type 2|kunitz-type protease inhibitor 2|placental bikunin|serine protease inhibitor, Kunitz type, 2 20121230 -9606 10654 PMVK RP11-307C12.5 HUMPMKI|PMK|PMKA|PMKASE HGNC:9141|MIM:607622|Ensembl:ENSG00000163344|HPRD:07404|Vega:OTTHUMG00000037415 1 1q22 phosphomevalonate kinase protein-coding PMVK phosphomevalonate kinase O hPMK 20121230 -9606 10655 DMRT2 - - HGNC:2935|MIM:604935|Ensembl:ENSG00000173253|HPRD:16079|Vega:OTTHUMG00000019437 9 9p24.3 doublesex and mab-3 related transcription factor 2 protein-coding DMRT2 doublesex and mab-3 related transcription factor 2 O DSXL-2|doublesex- and mab-3-related transcription factor 2|doublesex-like 2 protein|terra-like protein 20121230 -9606 10656 KHDRBS3 - Etle|SALP|SLM-2|SLM2|T-STAR|TSTAR|etoile HGNC:18117|MIM:610421|Ensembl:ENSG00000131773|HPRD:10007|Vega:OTTHUMG00000164164 8 8q24.2 KH domain containing, RNA binding, signal transduction associated 3 protein-coding KHDRBS3 KH domain containing, RNA binding, signal transduction associated 3 O KH domain-containing, RNA-binding, signal transduction-associated protein 3|RNA-binding protein T-Star|Sam68-like phosphotyrosine protein, T-STAR|sam68-like mammalian protein 2 20121230 -9606 10657 KHDRBS1 - Sam68|p62|p68 HGNC:18116|MIM:602489|Ensembl:ENSG00000121774|HPRD:03926|Vega:OTTHUMG00000003921 1 1p32 KH domain containing, RNA binding, signal transduction associated 1 protein-coding KHDRBS1 KH domain containing, RNA binding, signal transduction associated 1 O GAP-associated tyrosine phosphoprotein p62 (Sam68)|KH domain-containing, RNA-binding, signal transduction-associated protein 1|p21 Ras GTPase-activating protein-associated p62|src-associated in mitosis 68 kDa protein 20121230 -9606 10658 CELF1 - BRUNOL2|CUG-BP|CUGBP|CUGBP1|EDEN-BP|NAB50|NAPOR|hNab50 HGNC:2549|MIM:601074|Ensembl:ENSG00000149187|HPRD:03046|Vega:OTTHUMG00000166526 11 11p11 CUGBP, Elav-like family member 1 protein-coding CELF1 CUGBP, Elav-like family member 1 O 50 kDa nuclear polyadenylated RNA-binding protein|CELF-1|CUG RNA-binding protein|CUG triplet repeat RNA-binding protein 1|CUG triplet repeat, RNA binding protein 1|CUG triplet repeat, RNA-binding protein 1|CUG-BP- and ETR-3-like factor 1|CUG-BP1|CUGBP Elav-like family member 1|EDEN-BP homolog|RNA-binding protein BRUNOL-2|bruno-like 2|bruno-like protein 2|deadenylation factor CUG-BP|embryo deadenylation element binding protein|embryo deadenylation element-binding protein homolog|nuclear polyadenylated RNA-binding protein, 50-kD 20121230 -9606 10659 CELF2 RP11-544P1.2 BRUNOL3|CUGBP2|ETR-3|ETR3|NAPOR HGNC:2550|MIM:602538|Ensembl:ENSG00000048740|HPRD:03964|Vega:OTTHUMG00000017668 10 10p13 CUGBP, Elav-like family member 2 protein-coding CELF2 CUGBP, Elav-like family member 2 O CELF-2|CUG triplet repeat RNA-binding protein 2|CUG triplet repeat, RNA binding protein 2|CUG-BP- and ETR-3-like factor 2|CUG-BP2|CUGBP Elav-like family member 2|ELAV-type RNA-binding protein 3|RNA-binding protein BRUNOL-3|bruno-like protein 3|hNAPOR|neuroblastoma apoptosis-related RNA-binding protein 20121230 -9606 10660 LBX1 RP11-324L3.2 HPX-6|HPX6|LBX1H|homeobox HGNC:16960|MIM:604255|Ensembl:ENSG00000138136|HPRD:09178|Vega:OTTHUMG00000018927 10 10q24 ladybird homeobox 1 protein-coding LBX1 ladybird homeobox 1 O lady bird-like homeobox|ladybird homeobox homolog 1|ladybird homeobox protein homolog 1|transcription factor LBX1|transcription factor similar to D. melanogaster homeodomain protein lady bird late 20121230 -9606 10661 KLF1 - EKLF|HBFQTL6|INLU HGNC:6345|MIM:600599|Ensembl:ENSG00000105610|HPRD:07197|Vega:OTTHUMG00000180536 19 19p13.2 Kruppel-like factor 1 (erythroid) protein-coding KLF1 Kruppel-like factor 1 (erythroid) O Krueppel-like factor 1|erythroid Kruppel-like factor|erythroid krueppel-like transcription factor|erythroid-specific transcription factor EKLF|monoclonal antibody A3D8 20121230 -9606 10663 CXCR6 - BONZO|CD186|STRL33|TYMSTR HGNC:16647|MIM:605163|Ensembl:ENSG00000172215|HPRD:05520|Vega:OTTHUMG00000133448 3 3p21 chemokine (C-X-C motif) receptor 6 protein-coding CXCR6 chemokine (C-X-C motif) receptor 6 O C-X-C chemokine receptor type 6|CDw186|CXC-R6|CXCR-6|G protein-coupled receptor|G-protein coupled receptor STRL33|G-protein coupled receptor bonzo 20121230 -9606 10664 CTCF - - HGNC:13723|MIM:604167|Ensembl:ENSG00000102974|HPRD:05005|Vega:OTTHUMG00000137539 16 16q21-q22.3 CCCTC-binding factor (zinc finger protein) protein-coding CTCF CCCTC-binding factor (zinc finger protein) O 11 zinc finger transcriptional repressor|11-zinc finger protein|CTCFL paralog|transcriptional repressor CTCF 20121230 -9606 10665 C6orf10 DAAP-279L6.1 TSBP HGNC:13922|Ensembl:ENSG00000204296|HPRD:09851|Vega:OTTHUMG00000031107 6 6p21.3 chromosome 6 open reading frame 10 protein-coding C6orf10 chromosome 6 open reading frame 10 O testis specific basic protein|uncharacterized protein C6orf10 20121230 -9606 10666 CD226 - DNAM-1|DNAM1|PTA1|TLiSA1 HGNC:16961|MIM:605397|Ensembl:ENSG00000150637|HPRD:09252|Vega:OTTHUMG00000132809 18 18q22.3 CD226 molecule protein-coding CD226 CD226 molecule O CD226 antigen|DNAX accessory molecule 1|DNAX accessory molecule-1|T lineage-specific activation antigen 1 antigen|adhesion glycoprotein|platelet and T cell activation antigen 1 20121230 -9606 10667 FARS2 RP1-236A3.1 COXPD14|FARS1|HSPC320|PheRS|dJ520B18.2 HGNC:21062|MIM:611592|Ensembl:ENSG00000145982|HPRD:09946|Vega:OTTHUMG00000014178 6 6p25.1 phenylalanyl-tRNA synthetase 2, mitochondrial protein-coding FARS2 phenylalanyl-tRNA synthetase 2, mitochondrial O dJ236A3.1 (phenylalanine-tRNA synthetase)|dJ520B18.2 (FARS1 (phenylalanine-tRNA synthetase))|phenylalanine tRNA ligase 2, mitochondrial|phenylalanine translase|phenylalanine--tRNA ligase, mitochondrial|phenylalanine-tRNA synthetase 1 (mitochondrial)|phenylalanine-tRNA synthetase 2 (mitochondrial) 20121230 -9606 10668 CGRRF1 - CGR19|RNF197 HGNC:15528|MIM:606138|Ensembl:ENSG00000100532|HPRD:09366|Vega:OTTHUMG00000140308 14 14q22.2 cell growth regulator with ring finger domain 1 protein-coding CGRRF1 cell growth regulator with ring finger domain 1 O RING finger protein 197|cell growth regulator with RING finger domain protein 1|cell growth regulatory gene 19 protein 20121230 -9606 10669 CGREF1 - CGR11 HGNC:16962|MIM:606137|Ensembl:ENSG00000138028|HPRD:09365|Vega:OTTHUMG00000152009 2 2p23.3 cell growth regulator with EF-hand domain 1 protein-coding CGREF1 cell growth regulator with EF-hand domain 1 O cell growth regulator with EF hand domain 1|cell growth regulator with EF hand domain protein 1|cell growth regulatory gene 11 protein|hydrophobestin 20121230 -9606 10670 RRAGA - FIP-1|FIP1|RAGA HGNC:16963|MIM:612194|Ensembl:ENSG00000155876|HPRD:10205|Vega:OTTHUMG00000019621 9 9p22.1 Ras-related GTP binding A protein-coding RRAGA Ras-related GTP binding A O adenovirus E3 14.7 kDa-interacting protein 1|adenovirus E3-14.7K interacting protein 1|rag A|ras-related GTP-binding protein A 20121230 -9606 10671 DCTN6 - WS-3|WS3|p27 HGNC:16964|MIM:612963|Ensembl:ENSG00000104671|HPRD:09907|Vega:OTTHUMG00000163828 8 8p12-p11 dynactin 6 protein-coding DCTN6 dynactin 6 O dynactin subunit 6|dynactin subunit p27|novel RGD-containing protein|protein WS-3 20121230 -9606 10672 GNA13 - G13 HGNC:4381|MIM:604406|Ensembl:ENSG00000120063|HPRD:05100|Vega:OTTHUMG00000179316 17 17q24.3 guanine nucleotide binding protein (G protein), alpha 13 protein-coding GNA13 guanine nucleotide binding protein (G protein), alpha 13 O G-protein subunit alpha-13|g alpha-13|guanine nucleotide-binding protein subunit alpha-13 20121230 -9606 10673 TNFSF13B RP11-153I24.1 BAFF|BLYS|CD257|DTL|TALL-1|TALL1|THANK|TNFSF20|ZTNF4 HGNC:11929|MIM:603969|Ensembl:ENSG00000102524|HPRD:04914|Vega:OTTHUMG00000017329 13 13q32-q34 tumor necrosis factor (ligand) superfamily, member 13b protein-coding TNFSF13B tumor necrosis factor (ligand) superfamily, member 13b O ApoL related ligand TALL-1|B-cell-activating factor|B-lymphocyte stimulator|Delta4 BAFF|TNF and ApoL-related leukocyte expressed ligand 1|TNF homolog that activates apoptosis|delta BAFF|dendritic cell-derived TNF-like molecule|tumor necrosis factor (ligand) superfamily, member 20|tumor necrosis factor ligand superfamily member 13B|tumor necrosis factor-like protein ZTNF4 20121230 -9606 10674 DURS1 - DUS HGNC:3063|MIM:126800 8 8q13 Duane retraction syndrome 1 unknown DURS1 Duane retraction syndrome 1 O - 20120622 -9606 10675 CSPG5 - NGC HGNC:2467|MIM:606775|Ensembl:ENSG00000114646|Vega:OTTHUMG00000133518 3 3p21.3 chondroitin sulfate proteoglycan 5 (neuroglycan C) protein-coding CSPG5 chondroitin sulfate proteoglycan 5 (neuroglycan C) O acidic leucine-rich EGF-like domain-containing brain protein|chondroitin sulfate proteoglycan 5 20121230 -9606 10677 AVIL - ADVIL|DOC6|p92 HGNC:14188|MIM:613397|Ensembl:ENSG00000135407|HPRD:09816|Vega:OTTHUMG00000170461 12 12q14.1 advillin protein-coding AVIL advillin O - 20121230 -9606 10678 B3GNT2 - B3GN-T2|B3GNT|B3GNT-2|B3GNT1|BETA3GNT|BGNT2|BGnT-2 HGNC:15629|MIM:605581|Ensembl:ENSG00000170340|HPRD:09279|Vega:OTTHUMG00000129444 2 2p15 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 protein-coding B3GNT2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 O UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 1|beta-1,3-Gn-T1|beta-1,3-Gn-T2|beta-1,3-N-acetylglucosaminyltransferase bGnT-1|beta-1,3-N-acetylglucosaminyltransferase bGnT-2|beta3Gn-T1|beta3Gn-T2 20121230 -9606 10681 GNB5 - GB5 HGNC:4401|MIM:604447|Ensembl:ENSG00000069966|HPRD:09191|Vega:OTTHUMG00000131892 15 15q21.2 guanine nucleotide binding protein (G protein), beta 5 protein-coding GNB5 guanine nucleotide binding protein (G protein), beta 5 O G protein, beta subunit 5L|G protein, beta-5 subunit|gbeta5|guanine nucleotide-binding protein subunit beta-5|guanine nucleotide-binding protein, beta subunit 5L|transducin beta chain 5 20121230 -9606 10682 EBP - CDPX2|CHO2|CPX|CPXD HGNC:3133|MIM:300205|Ensembl:ENSG00000147155|HPRD:02192|Vega:OTTHUMG00000034482 X Xp11.23-p11.22 emopamil binding protein (sterol isomerase) protein-coding EBP emopamil binding protein (sterol isomerase) O 3-beta-hydroxysteroid-Delta(8),Delta(7)-isomerase|3-beta-hydroxysteroid-delta-8,delta-7-isomerase|Chondrodysplasia punctata-2, X-linked dominant (Happle syndrome)|D8-D7 sterol isomerase|cholestenol Delta-isomerase|delta(8)-Delta(7) sterol isomerase|emopamil-binding protein (sterol isomerase)|sterol 8-isomerase 20121230 -9606 10683 DLL3 - SCDO1 HGNC:2909|MIM:602768|Ensembl:ENSG00000090932|HPRD:04140 19 19q13 delta-like 3 (Drosophila) protein-coding DLL3 delta-like 3 (Drosophila) O delta-like protein 3|delta3|drosophila Delta homolog 3 20121230 -9606 10686 CLDN16 - HOMG3|PCLN1 HGNC:2037|MIM:603959|Ensembl:ENSG00000113946|HPRD:04906|Vega:OTTHUMG00000156215 3 3q28 claudin 16 protein-coding CLDN16 claudin 16 O PCLN-1|claudin-16|hypomagnesemia 3, with hypercalciuria and nephrocalcinosis|paracellin-1 20121230 -9606 10687 PNMA2 - MA2|MM2|RGAG2 HGNC:9159|MIM:603970|Ensembl:ENSG00000240694|Vega:OTTHUMG00000163816 8 8p21.2 paraneoplastic Ma antigen 2 protein-coding PNMA2 paraneoplastic Ma antigen 2 O 40 kDa neuronal protein|onconeuronal antigen MA2|paraneoplastic antigen Ma2|paraneoplastic neuronal antigen MM2|retrotransposon gag domain containing 2 20121230 -9606 10688 CRSP5 - CRSP85 HGNC:2374 - - cofactor required for Sp1 transcriptional activation, subunit 5, 85kDa protein-coding CRSP5 cofactor required for Sp1 transcriptional activation, subunit 5, 85kDa O - 20121209 -9606 10690 FUT9 - Fuc-TIX HGNC:4020|MIM:606865|Ensembl:ENSG00000172461|HPRD:06036|Vega:OTTHUMG00000015236 6 6q16 fucosyltransferase 9 (alpha (1,3) fucosyltransferase) protein-coding FUT9 fucosyltransferase 9 (alpha (1,3) fucosyltransferase) O alpha-(1,3)-fucosyltransferase|fucT-IX|fucosyltransferase IX|galactoside 3-L-fucosyltransferase 20121230 -9606 10691 GMEB1 - P96PIF|PIF96 HGNC:4370|MIM:604409|Ensembl:ENSG00000162419|HPRD:16059|Vega:OTTHUMG00000003647 1 1p35.3 glucocorticoid modulatory element binding protein 1 protein-coding GMEB1 glucocorticoid modulatory element binding protein 1 O DNA-binding protein p96PIF|GMEB-1|PIF p96|glucocorticoid modulatory element-binding protein 1|parvovirus initiation factor p96 20121230 -9606 10692 RRH - - HGNC:10450|MIM:605224|Ensembl:ENSG00000180245|HPRD:05565|Vega:OTTHUMG00000132045 4 4q25 retinal pigment epithelium-derived rhodopsin homolog protein-coding RRH retinal pigment epithelium-derived rhodopsin homolog O peropsin|visual pigment-like receptor peropsin 20121230 -9606 10693 CCT6B - CCT-zeta-2|CCTZ-2|Cctz2|TCP-1-zeta-2|TSA303 HGNC:1621|MIM:610730|Ensembl:ENSG00000132141|HPRD:09873|Vega:OTTHUMG00000179770 17 17q12 chaperonin containing TCP1, subunit 6B (zeta 2) protein-coding CCT6B chaperonin containing TCP1, subunit 6B (zeta 2) O T-complex protein 1 subunit zeta-2|T-complex protein 1, zeta-2 subunit|testis-specific Tcp20|testis-specific protein TSA303 20121230 -9606 10694 CCT8 - C21orf112|Cctq|D21S246|PRED71 HGNC:1623|Ensembl:ENSG00000156261|HPRD:10816|Vega:OTTHUMG00000044595 21 21q22.11 chaperonin containing TCP1, subunit 8 (theta) protein-coding CCT8 chaperonin containing TCP1, subunit 8 (theta) O CCT-theta|T-complex protein 1 subunit theta|T-complex protein 1, theta subunit|TCP-1-theta|renal carcinoma antigen NY-REN-15 20121230 -9606 10695 CNPY3 HSPC084 CAG4A|ERDA5|PRAT4A|TNRC5 HGNC:11968|MIM:610774|Ensembl:ENSG00000137161|HPRD:06745|Vega:OTTHUMG00000014708 6 6pter-p12.1 canopy 3 homolog (zebrafish) protein-coding CNPY3 canopy 3 homolog (zebrafish) O CAG repeat containing|CTG repeat protein 4a|expanded repeat domain, CAG/CTG 5|expanded repeat-domain protein CAG/CTG 5|protein associated with TLR4|protein associated with Toll-like receptor 4A|protein canopy homolog 3|trinucleotide repeat containing 5|trinucleotide repeat-containing gene 5 protein 20121230 -9606 10699 CORIN - ATC2|CRN|Lrp4|PEE5|TMPRSS10 HGNC:19012|MIM:605236|Ensembl:ENSG00000145244|HPRD:05573|Vega:OTTHUMG00000099441 4 4p13-p12 corin, serine peptidase protein-coding CORIN corin, serine peptidase O atrial natriuretic peptide-converting enzyme|heart-specific serine proteinase ATC2|pro-ANP-convertase|pro-ANP-converting enzyme|transmembrane protease serine 10 20121230 -9606 10712 FAM189B - C1orf2|COTE1 HGNC:1233|Ensembl:ENSG00000160767|HPRD:08511|Vega:OTTHUMG00000035844 1 1q21 family with sequence similarity 189, member B protein-coding FAM189B family with sequence similarity 189, member B O protein FAM189B 20121230 -9606 10713 USP39 CGI-21 65K|HSPC332|SAD1|SNRNP65 HGNC:20071|MIM:611594|Ensembl:ENSG00000168883|HPRD:07165|Vega:OTTHUMG00000153090 2 2p11.2 ubiquitin specific peptidase 39 protein-coding USP39 ubiquitin specific peptidase 39 O SAD1 homolog|SnRNP assembly defective 1 homolog|U4/U6.U5 tri-snRNP-associated 65 kDa protein|U4/U6.U5 tri-snRNP-associated protein 2|inactive ubiquitin-specific peptidase 39|small nuclear ribonucleoprotein 65kDa (U4/U6.U5)|ubiquitin specific protease 39 20121230 -9606 10714 POLD3 - P66|P68 HGNC:20932|MIM:611415|Ensembl:ENSG00000077514|HPRD:11446|Vega:OTTHUMG00000165621 11 11q14 polymerase (DNA-directed), delta 3, accessory subunit protein-coding POLD3 polymerase (DNA-directed), delta 3, accessory subunit O DNA polymerase delta subunit 3|DNA polymerase delta subunit p66|Pol delta C subunit (p66) 20121230 -9606 10715 CERS1 - LAG1|LASS1|UOG1 HGNC:14253|MIM:606919|Ensembl:ENSG00000223802|HPRD:12114 19 19p12 ceramide synthase 1 protein-coding CERS1 ceramide synthase 1 O longevity assurance (LAG1, S. cerevisiae) homolog 1|longevity assurance gene 1 protein homolog 1|protein UOG-1|upstream of GDF1 20121230 -9606 10716 TBR1 - TBR-1|TES-56 HGNC:11590|MIM:604616|Ensembl:ENSG00000136535|HPRD:07055|Vega:OTTHUMG00000153888 2 2q24 T-box, brain, 1 protein-coding TBR1 T-box, brain, 1 O T-box brain protein 1|T-brain-1 20121230 -9606 10717 AP4B1 RP5-1073O3.4 BETA-4|CPSQ5|SPG47 HGNC:572|MIM:607245|Ensembl:ENSG00000134262|HPRD:06259|Vega:OTTHUMG00000011943 1 1p13.2 adaptor-related protein complex 4, beta 1 subunit protein-coding AP4B1 adaptor-related protein complex 4, beta 1 subunit O AP-4 complex subunit beta-1|beta 4 subunit of AP-4|beta4-adaptin|spastic paraplegia 47 20121230 -9606 10718 NRG3 - HRG3|pro-NRG3 HGNC:7999|MIM:605533|Ensembl:ENSG00000185737|HPRD:16115|Vega:OTTHUMG00000018626 10 10q22-q23 neuregulin 3 protein-coding NRG3 neuregulin 3 O neuregulin 3 variant 1|neuregulin 3 variant 10|neuregulin 3 variant 11|neuregulin 3 variant 12|neuregulin 3 variant 13|neuregulin 3 variant 14|neuregulin 3 variant 3|neuregulin 3 variant 4|neuregulin 3 variant 5|neuregulin 3 variant 6|neuregulin 3 variant 7|neuregulin 3 variant 8|neuregulin 3 variant 9|neuregulin-3-like polypeptide|pro-neuregulin-3, membrane-bound isoform 20121230 -9606 10720 UGT2B11 - - HGNC:12545|MIM:603064|Ensembl:ENSG00000213759|HPRD:04345|Vega:OTTHUMG00000129395 4 4q13.2 UDP glucuronosyltransferase 2 family, polypeptide B11 protein-coding UGT2B11 UDP glucuronosyltransferase 2 family, polypeptide B11 O UDP glycosyltransferase 2 family protein|UDP glycosyltransferase 2 family, polypeptide B11|UDP-glucuronosyltransferase 2B11|UDPGT 2B11 20121230 -9606 10721 POLQ - POLH|PRO0327 HGNC:9186|MIM:604419|Ensembl:ENSG00000051341|HPRD:10375|Vega:OTTHUMG00000159396 3 3q13.33 polymerase (DNA directed), theta protein-coding POLQ polymerase (DNA directed), theta O DNA polymerase eta|DNA polymerase theta 20121230 -9606 10723 SLC12A7 - KCC4 HGNC:10915|MIM:604879|Ensembl:ENSG00000113504|HPRD:09221|Vega:OTTHUMG00000161931 5 5p15 solute carrier family 12 (potassium/chloride transporters), member 7 protein-coding SLC12A7 solute carrier family 12 (potassium/chloride transporters), member 7 O K-Cl cotransporter 4|electroneutral potassium-chloride cotransporter 4|potassium/chloride transporter KCC4|solute carrier family 12 member 7 20121230 -9606 10724 MGEA5 - MEA5|NCOAT|OGA HGNC:7056|MIM:604039|Ensembl:ENSG00000198408|HPRD:04949|Vega:OTTHUMG00000018939 10 10q24.1-q24.3 meningioma expressed antigen 5 (hyaluronidase) protein-coding MGEA5 meningioma expressed antigen 5 (hyaluronidase) O O-GlcNAcase|bifunctional protein NCOAT|hyaluronidase in meningioma|meningioma-expressed antigen 5|nuclear cytoplasmic O-GlcNAcase and acetyltransferase 20121230 -9606 10725 NFAT5 - NF-AT5|NFATL1|NFATZ|OREBP|TONEBP HGNC:7774|MIM:604708|Ensembl:ENSG00000102908|HPRD:05272|Vega:OTTHUMG00000137572 16 16q22.1 nuclear factor of activated T-cells 5, tonicity-responsive protein-coding NFAT5 nuclear factor of activated T-cells 5, tonicity-responsive O NFAT-like protein 1|T-cell transcription factor NFAT5|TonE-binding protein|glutamine rich protein H65|nuclear factor of activated T-cells 5|osmotic response element-binding protein|tonicity-responsive enhancer-binding protein 20121230 -9606 10726 NUDC - HNUDC|MNUDC|NPD011 HGNC:8045|MIM:610325|Ensembl:ENSG00000090273|HPRD:10122|Vega:OTTHUMG00000004226 1 1p35-p34 nuclear distribution C homolog (A. nidulans) protein-coding NUDC nuclear distribution C homolog (A. nidulans) O nuclear distribution gene C homolog|nuclear distribution protein C homolog|nuclear migration protein nudC 20121230 -9606 10728 PTGES3 - P23|TEBP|cPGES HGNC:16049|MIM:607061|Ensembl:ENSG00000110958|HPRD:06138|Vega:OTTHUMG00000170217 12 12q13.3|12 prostaglandin E synthase 3 (cytosolic) protein-coding PTGES3 prostaglandin E synthase 3 (cytosolic) O Hsp90 co-chaperone|cytosolic prostaglandin E synthase|cytosolic prostaglandin E2 synthase|progesterone receptor complex p23|prostaglandin E synthase 3|telomerase-binding protein p23|unactive progesterone receptor, 23 kD 20121230 -9606 10730 YME1L1 RP11-145E8.2 FTSH|MEG4|PAMP|YME1L HGNC:12843|MIM:607472|Ensembl:ENSG00000136758|HPRD:06981|Vega:OTTHUMG00000017853 10 10p14 YME1-like 1 (S. cerevisiae) protein-coding YME1L1 YME1-like 1 (S. cerevisiae) O ATP-dependent metalloprotease FtsH1 homolog|ATP-dependent metalloprotease YME1L1|ATP-dependent zinc metalloprotease YME1L1|YME1-like protein 1|meg-4|presenilin-associated metalloprotease 20121230 -9606 10732 TCFL5 - CHA|E2BP-1|Figlb|bHLHe82 HGNC:11646|MIM:604745|Ensembl:ENSG00000101190|HPRD:05297|Vega:OTTHUMG00000032939 20 20q13.3-qter transcription factor-like 5 (basic helix-loop-helix) protein-coding TCFL5 transcription factor-like 5 (basic helix-loop-helix) O HPV-16 E2 binding protein 1|HPV-16 E2-binding protein 1|cha transcription factor|transcription factor-like 5 protein 20121230 -9606 10733 PLK4 - SAK|STK18 HGNC:11397|MIM:605031|Ensembl:ENSG00000142731|HPRD:10387|Vega:OTTHUMG00000133301 4 4q28 polo-like kinase 4 protein-coding PLK4 polo-like kinase 4 O PLK-4|Snk akin kinase|serine/threonine kinase 18|serine/threonine protein kinase SAK|serine/threonine-protein kinase 18|serine/threonine-protein kinase PLK4|serine/threonine-protein kinase Sak 20121230 -9606 10734 STAG3 - - HGNC:11356|MIM:608489|Ensembl:ENSG00000066923|HPRD:10253|Vega:OTTHUMG00000155183 7 7q22.1 stromal antigen 3 protein-coding STAG3 stromal antigen 3 O SCC3 homolog 3|cohesin subunit SA-3|stromalin 3|stromalin-3 20121230 -9606 10735 STAG2 RP11-517O1.1 SA-2|SA2|SCC3B|bA517O1.1 HGNC:11355|MIM:300826|Ensembl:ENSG00000101972|HPRD:05077|Vega:OTTHUMG00000022725 X Xq25 stromal antigen 2 protein-coding STAG2 stromal antigen 2 O SCC3 homolog 2|cohesin subunit SA-2 20121230 -9606 10736 SIX2 - - HGNC:10888|MIM:604994|Ensembl:ENSG00000170577|HPRD:05408|Vega:OTTHUMG00000152421 2 2p21 SIX homeobox 2 protein-coding SIX2 SIX homeobox 2 O homeobox protein SIX2|sine oculis homeobox homolog 2 20121230 -9606 10737 RFPL3-AS1 RP1-149A16.4 NCRNA00005|RFPL3-AS|RFPL3ANT|RFPL3AS|RFPL3S|dJ149A16.3 HGNC:9981|MIM:605971 22 22q12.3 RFPL3 antisense RNA 1 miscRNA RFPL3-AS1 RFPL3 antisense RNA 1 O - 20121230 -9606 10738 RFPL3 RP1-149A16.1 - HGNC:9980|MIM:605970|Ensembl:ENSG00000128276|HPRD:09339|Vega:OTTHUMG00000030290 22 22q12.3 ret finger protein-like 3 protein-coding RFPL3 ret finger protein-like 3 O - 20121230 -9606 10739 RFPL2 - RNF79 HGNC:9979|MIM:605969|Ensembl:ENSG00000128253|HPRD:09338|Vega:OTTHUMG00000030374 22 22q12.3 ret finger protein-like 2 protein-coding RFPL2 ret finger protein-like 2 O RING finger protein 79 20121230 -9606 10740 RFPL1-AS1 - NCRNA00006|RFPL1-AS|RFPL1AS|RFPL1S HGNC:9978|MIM:605972 22 22q12 RFPL1 antisense RNA 1 miscRNA RFPL1-AS1 RFPL1 antisense RNA 1 O - 20121230 -9606 10741 RBBP9 - BOG|RBBP10 HGNC:9892|MIM:602908|Ensembl:ENSG00000089050|HPRD:04217|Vega:OTTHUMG00000031972 20 20p11.2 retinoblastoma binding protein 9 protein-coding RBBP9 retinoblastoma binding protein 9 O B5T overexpressed gene protein|B5T-overexpressed gene protein|RBBP-10|RBBP-9|putative hydrolase RBBP9|retinoblastoma-binding protein 10|retinoblastoma-binding protein 9|retinoma-binding protein 9 20121230 -9606 10742 RAI2 RP3-389A20.3 - HGNC:9835|MIM:300217|Ensembl:ENSG00000131831|HPRD:02199|Vega:OTTHUMG00000021209 X Xp22 retinoic acid induced 2 protein-coding RAI2 retinoic acid induced 2 O retinoic acid-induced protein 2 20121230 -9606 10743 RAI1 - SMCR|SMS HGNC:9834|MIM:607642|Ensembl:ENSG00000108557|HPRD:07406|Vega:OTTHUMG00000059314 17 17p11.2 retinoic acid induced 1 protein-coding RAI1 retinoic acid induced 1 O Smith-Magenis syndrome chromosome region|retinoic acid-induced protein 1 20121230 -9606 10744 PTTG2 - - HGNC:9691|MIM:604231|Ensembl:ENSG00000250254|HPRD:09176|Vega:OTTHUMG00000160424 4 4p12 pituitary tumor-transforming 2 protein-coding PTTG2 pituitary tumor-transforming 2 O pituitary tumor-transforming gene 2 protein|securin-2 20121230 -9606 10745 PHTF1 RP4-730K3.2 PHTF HGNC:8939|MIM:604950|Ensembl:ENSG00000116793|HPRD:09227|Vega:OTTHUMG00000011800 1 1p13 putative homeodomain transcription factor 1 protein-coding PHTF1 putative homeodomain transcription factor 1 O - 20121230 -9606 10746 MAP3K2 - MEKK2|MEKK2B HGNC:6854|MIM:609487|Ensembl:ENSG00000169967|HPRD:10068|Vega:OTTHUMG00000153397 2 2q14.3 mitogen-activated protein kinase kinase kinase 2 protein-coding MAP3K2 mitogen-activated protein kinase kinase kinase 2 O MAP/ERK kinase kinase 2|MAPK/ERK kinase kinase 2|MEK kinase 2|MEKK 2 20121230 -9606 10747 MASP2 - MAP19|MASP-2|MASP1P1|sMAP HGNC:6902|MIM:605102|Ensembl:ENSG00000009724|HPRD:05484|Vega:OTTHUMG00000002121 1 1p36.3-p36.2 mannan-binding lectin serine peptidase 2 protein-coding MASP2 mannan-binding lectin serine peptidase 2 O MBL-associated plasma protein of 19 kD|MBL-associated serine protease 2|mannan-binding lectin serine peptidase 1 pseudogene 1|mannan-binding lectin serine protease 1 pseudogene 1|mannan-binding lectin serine protease 2|mannose-binding protein-associated serine protease 2|small MBL-associated protein 20121230 -9606 10748 KLRAP1 - KLRA#|KLRA1|LY49L|Ly-49L|Ly49 HGNC:6372|MIM:604274|HPRD:09180 12 12p13.2 killer cell lectin-like receptor subfamily A pseudogene 1 pseudo KLRAP1 killer cell lectin-like receptor subfamily A pseudogene 1 O - 20121230 -9606 10749 KIF1C - LTXS1 HGNC:6317|MIM:603060|Ensembl:ENSG00000129250|HPRD:04342|Vega:OTTHUMG00000099451 17 17p13.2 kinesin family member 1C protein-coding KIF1C kinesin family member 1C O kinesin-like protein KIF1C 20121230 -9606 10750 GRAP - - HGNC:4562|MIM:604330|Ensembl:ENSG00000154016|HPRD:05062|Vega:OTTHUMG00000059436 17 17p11.2 GRB2-related adaptor protein protein-coding GRAP GRB2-related adaptor protein O GRB2-related adapter protein|growth factor receptor-bound protein 2-related adaptor protein 20121230 -9606 10751 OFD1P18Y - 71-7A2|CYorf1|OFD1P18|OFD1PY18 HGNC:2589 Y Yq11.22 OFD1 pseudogene 18, Y-linked pseudo OFD1P18Y OFD1 pseudogene 18, Y-linked O - 20121209 -9606 10752 CHL1 - CALL|L1CAM2 HGNC:1939|MIM:607416|Ensembl:ENSG00000134121|HPRD:07598|Vega:OTTHUMG00000090601 3 3p26.1 cell adhesion molecule with homology to L1CAM (close homolog of L1) protein-coding CHL1 cell adhesion molecule with homology to L1CAM (close homolog of L1) O L1 cell adhesion molecule 2|cell adhesion molecule with homology to L1CAM (close homologue of L1)|close homolog of L1|neural cell adhesion molecule L1-like protein 20121230 -9606 10753 CAPN9 - GC36|nCL-4 HGNC:1486|MIM:606401|Ensembl:ENSG00000135773|HPRD:05909|Vega:OTTHUMG00000037779 1 1q42.11-q42.3 calpain 9 protein-coding CAPN9 calpain 9 O calpain-9|digestive tract-specific calpain|new calpain 4|novel calpain large subunit-4 20121230 -9606 10755 GIPC1 - C19orf3|GIPC|GLUT1CBP|Hs.6454|IIP-1|NIP|RGS19IP1|SEMCAP|SYNECTIIN|SYNECTIN|TIP-2 HGNC:1226|MIM:605072|Ensembl:ENSG00000123159|HPRD:05462|Vega:OTTHUMG00000182248 19 19p13.1 GIPC PDZ domain containing family, member 1 protein-coding GIPC1 GIPC PDZ domain containing family, member 1 O GAIP C-terminus-interacting protein|GLUT1 C-terminal binding protein|IGF-1 receptor interacting protein 1|PDZ domain-containing protein GIPC1|RGS-GAIP-interacting protein|RGS19-interacting protein 1|regulator of G-protein signalling 19 interacting protein 1|tax interaction protein 2 20121230 -9606 10758 TRAF3IP2 RP3-487J7.3 ACT1|C6orf2|C6orf4|C6orf5|C6orf6|CIKS|PSORS13 HGNC:1343|MIM:607043|Ensembl:ENSG00000056972|HPRD:06129|Vega:OTTHUMG00000015379 6 6q21 TRAF3 interacting protein 2 protein-coding TRAF3IP2 TRAF3 interacting protein 2 O NFkB-activating protein ACT1|adapter protein CIKS|connection to IKK and SAPK/JNK|nuclear factor NF-kappa-B activator 1 20121230 -9606 10761 PLAC1 - CT92 HGNC:9044|MIM:300296|Ensembl:ENSG00000170965|HPRD:02245|Vega:OTTHUMG00000022457 X Xq26 placenta-specific 1 protein-coding PLAC1 placenta-specific 1 O cancer/testis antigen 92|placenta-specific protein 1 20121230 -9606 10762 NUP50 CTA-268H5.7 NPAP60|NPAP60L HGNC:8065|MIM:604646|Ensembl:ENSG00000093000|HPRD:05226|Vega:OTTHUMG00000151265 22 22q13.31 nucleoporin 50kDa protein-coding NUP50 nucleoporin 50kDa O 50 kDa nucleoporin|nuclear pore complex protein Nup50|nuclear pore-associated protein 60L|nucleoporin Nup50 20121230 -9606 10763 NES Nbla00170 - HGNC:7756|MIM:600915|Ensembl:ENSG00000132688|HPRD:09020|Vega:OTTHUMG00000034299 1 1q23.1 nestin protein-coding NES nestin O - 20121230 -9606 10765 KDM5B - CT31|JARID1B|PLU-1|PLU1|PUT1|RBBP2H1A HGNC:18039|MIM:605393|Ensembl:ENSG00000117139|HPRD:09251|Vega:OTTHUMG00000041401 1 1q32.1 lysine (K)-specific demethylase 5B protein-coding KDM5B lysine (K)-specific demethylase 5B O RBP2-H1|cancer/testis antigen 31|histone demethylase JARID1B|jumonji, AT rich interactive domain 1B|jumonji/ARID domain-containing protein 1B|lysine-specific demethylase 5B|putative DNA/chromatin binding motif|retinoblastoma-binding protein 2 homolog 1|retinoblastoma-binding protein 2, homolog 1A 20121230 -9606 10766 TOB2 CTA-223H9.7 TOB4|TOBL|TROB2 HGNC:11980|MIM:607396|Ensembl:ENSG00000183864|HPRD:09583|Vega:OTTHUMG00000150970 22 22q13.2 transducer of ERBB2, 2 protein-coding TOB2 transducer of ERBB2, 2 O protein Tob2|protein Tob4|transducer of erbB-2 2 20121230 -9606 10767 HBS1L RP11-349J5.1 EF-1a|ERFS|HBS1|HSPC276 HGNC:4834|MIM:612450|Ensembl:ENSG00000112339|HPRD:06582|Vega:OTTHUMG00000015626 6 6q23.3 HBS1-like (S. cerevisiae) protein-coding HBS1L HBS1-like (S. cerevisiae) O ERF3-similar protein|HBS1-like protein|Hsp70 subfamily B suppressor 1-like protein 20121230 -9606 10768 AHCYL1 - DCAL|IRBIT|PRO0233|XPVKONA HGNC:344|MIM:607826|Ensembl:ENSG00000168710|HPRD:07613|Vega:OTTHUMG00000011652 1 1p13.2 adenosylhomocysteinase-like 1 protein-coding AHCYL1 adenosylhomocysteinase-like 1 O DC-expressed AHCY-like molecule|S-adenosyl homocysteine hydrolase homolog|S-adenosyl-L-homocysteine hydrolase 2|S-adenosylhomocysteine hydrolase-like protein 1|adoHcyase 2|dendritic cell expressed AHCY-like protein|inositol 1,4,5-trisphosphate receptor-binding protein|putative adenosylhomocysteinase 2 20121230 -9606 10769 PLK2 - SNK|hPlk2|hSNK HGNC:19699|MIM:607023|Ensembl:ENSG00000145632|HPRD:06118|Vega:OTTHUMG00000097047 5 5q12.1-q13.2 polo-like kinase 2 protein-coding PLK2 polo-like kinase 2 O PLK-2|serine/threonine-protein kinase PLK2|serine/threonine-protein kinase SNK|serum-inducible kinase 20121230 -9606 10771 ZMYND11 RP11-486H9.1 BRAM1|BS69 HGNC:16966|MIM:608668|Ensembl:ENSG00000015171|Ensembl:ENSG00000259741|HPRD:09830|Vega:OTTHUMG00000017526 10 10p14 zinc finger, MYND-type containing 11 protein-coding ZMYND11 zinc finger, MYND-type containing 11 O adenovirus 5 E1A-binding protein|bone morphogenetic protein receptor-associated molecule 1|zinc finger MYND domain-containing protein 11 20121230 -9606 10772 SRSF10 RP11-4M23.6 FUSIP1|FUSIP2|NSSR|SFRS13|SFRS13A|SRp38|SRrp40|TASR|TASR1|TASR2 HGNC:16713|MIM:605221|Ensembl:ENSG00000188529|HPRD:05562|Vega:OTTHUMG00000013893 1 1p36.11 serine/arginine-rich splicing factor 10 protein-coding SRSF10 serine/arginine-rich splicing factor 10 O 40 kDa SR-repressor protein|FUS interacting protein (serine-arginine rich) 1|FUS-interacting protein (serine-arginine rich) 2|FUS-interacting serine-arginine-rich protein 1|SR splicing factor 10|TLS-associated SR protein|TLS-associated protein TASR|TLS-associated protein with SR repeats|TLS-associated protein with Ser-Arg repeats|TLS-associated serine-arginine protein 1|TLS-associated serine-arginine protein 2|neural-salient SR protein|serine-arginine repressor protein (40 kDa)|splicing factor SRp38|splicing factor, arginine/serine-rich 13|splicing factor, arginine/serine-rich 13A 20121230 -9606 10773 ZBTB6 - ZID|ZNF482 HGNC:16764|MIM:605976|Ensembl:ENSG00000186130|HPRD:09341|Vega:OTTHUMG00000020628 9 9q33.2 zinc finger and BTB domain containing 6 protein-coding ZBTB6 zinc finger and BTB domain containing 6 O zinc finger and BTB domain-containing protein 6|zinc finger protein 482|zinc finger protein with interaction domain 20121230 -9606 10774 DHS - - MIM:194380 16 16q23-q24 dehydrated hereditary stomatocytosis unknown - - - - 20120622 -9606 10775 POP4 - RPP29 HGNC:30081|MIM:606114|Ensembl:ENSG00000105171|HPRD:09358|Vega:OTTHUMG00000182020 19 19q12 processing of precursor 4, ribonuclease P/MRP subunit (S. cerevisiae) protein-coding POP4 processing of precursor 4, ribonuclease P/MRP subunit (S. cerevisiae) O hPOP4|ribonuclease P protein subunit p29 20121230 -9606 10776 ARPP19 - ARPP-16|ARPP-19|ARPP16|ENSAL HGNC:16967|MIM:605487|Ensembl:ENSG00000128989|HPRD:09264|Vega:OTTHUMG00000172677 15 15q21.2 cAMP-regulated phosphoprotein, 19kDa protein-coding ARPP19 cAMP-regulated phosphoprotein, 19kDa O cAMP-regulated phosphoprotein 19|cyclic AMP phosphoprotein, 19 kD 20121230 -9606 10777 ARPP21 - ARPP-21|R3HDM3|RCS|TARPP HGNC:16968|MIM:605488|Ensembl:ENSG00000172995|HPRD:09265|Vega:OTTHUMG00000130795 3 3p22.3 cAMP-regulated phosphoprotein, 21kDa protein-coding ARPP21 cAMP-regulated phosphoprotein, 21kDa O R3H domain containing 3|cAMP-regulated phosphoprotein 21|cyclic AMP-regulated phosphoprotein, 21 kD|thymocyte cAMP-regulated phosphoprotein 20121230 -9606 10778 ZNF271 - HZF7|ZNFEB HGNC:13065|MIM:604754|HPRD:06884 18 18q12 zinc finger protein 271 pseudo ZNF271 zinc finger protein 271 O - 20121230 -9606 10780 ZNF234 - HZF4|ZNF269 HGNC:13027|MIM:604750|Ensembl:ENSG00000263002|HPRD:09206|Vega:OTTHUMG00000182337 19 19q13.31 zinc finger protein 234 protein-coding ZNF234 zinc finger protein 234 O C2-H2 type zinc finger protein|Homo sapiens zinc finger 234|zinc finger protein 234, partial sequence|zinc finger protein 269|zinc finger protein 4|zinc finger protein HZF4 20121230 -9606 10781 ZNF266 - HZF1 HGNC:13059|MIM:604751|Ensembl:ENSG00000174652|HPRD:06882|Vega:OTTHUMG00000179945 19 19p13.2 zinc finger protein 266 protein-coding ZNF266 zinc finger protein 266 O zinc finger protein 1|zinc finger protein HZF1 20121230 -9606 10782 ZNF274 SP2114 HFB101|ZF2|ZKSCAN19 HGNC:13068|MIM:605467|Ensembl:ENSG00000171606|HPRD:05682 19 19qter zinc finger protein 274 protein-coding ZNF274 zinc finger protein 274 O KRAB zinc finger protein HFB101|neurotrophin receptor-interacting factor homolog|zinc finger protein HFB101|zinc finger protein with KRAB and SCAN domains 19|zinc finger protein zfp2 20121230 -9606 10783 NEK6 RP11-101K10.6 SID6-1512 HGNC:7749|MIM:604884|Ensembl:ENSG00000119408|HPRD:05348|Vega:OTTHUMG00000020650 9 9q33.3-q34.11 NIMA-related kinase 6 protein-coding NEK6 NIMA-related kinase 6 O NIMA (never in mitosis gene a)-related kinase 6|never in mitosis A-related kinase 6|nimA-related protein kinase 6|protein kinase SID6-1512|putative serine-threonine protein kinase|serine/threonine-protein kinase Nek6 20121230 -9606 10785 WDR4 - TRM82|TRMT82 HGNC:12756|MIM:605924|Ensembl:ENSG00000160193|HPRD:09330|Vega:OTTHUMG00000086826 21 21q22.3 WD repeat domain 4 protein-coding WDR4 WD repeat domain 4 O TRM82 tRNA methyltransferase 82 homolog|WD repeat-containing protein 4|tRNA (guanine-N(7)-)-methyltransferase subunit WDR4 20121230 -9606 10786 SLC17A3 RP1-139G21.3 NPT4 HGNC:10931|MIM:611034|Ensembl:ENSG00000124564|HPRD:10233|Vega:OTTHUMG00000014412 6 6p21.3 solute carrier family 17 (sodium phosphate), member 3 protein-coding SLC17A3 solute carrier family 17 (sodium phosphate), member 3 O Na(+)/PI cotransporter 4|sodium-dependent phosphate transport protein 4|sodium/phosphate cotransporter 4 20121230 -9606 10787 NCKAP1 - HEM2|NAP1|NAP125 HGNC:7666|MIM:604891|Ensembl:ENSG00000061676|HPRD:05353|Vega:OTTHUMG00000132623 2 2q32 NCK-associated protein 1 protein-coding NCKAP1 NCK-associated protein 1 O NAP 1|membrane-associated protein HEM-2|nck-associated protein 1|p125Nap1 20121230 -9606 10788 IQGAP2 - - HGNC:6111|MIM:605401|Ensembl:ENSG00000145703|HPRD:09253|Vega:OTTHUMG00000162432 5 5q13.3 IQ motif containing GTPase activating protein 2 protein-coding IQGAP2 IQ motif containing GTPase activating protein 2 O ras GTPase-activating-like protein IQGAP2 20121230 -9606 10789 NUDCP2 - - HGNC:8047 2 2q31 nuclear distribution gene C homolog (A. nidulans) pseudogene 2 pseudo NUDCP2 nuclear distribution gene C homolog (A. nidulans) pseudogene 2 O - 20121230 -9606 10790 NUDCP1 - - HGNC:8046 2 2q23.3 nuclear distribution gene C homolog (A. nidulans) pseudogene 1 pseudo NUDCP1 nuclear distribution gene C homolog (A. nidulans) pseudogene 1 O - 20121230 -9606 10791 VAMP5 HSPC191 - HGNC:12646|MIM:607029|Ensembl:ENSG00000168899|HPRD:09513|Vega:OTTHUMG00000130169 2 2p11.2 vesicle-associated membrane protein 5 protein-coding VAMP5 vesicle-associated membrane protein 5 O VAMP-5|myobrevin 20121230 -9606 10793 ZNF273 - HZF9 HGNC:13067|MIM:604756|Ensembl:ENSG00000198039|HPRD:07264|HPRD:14424|Vega:OTTHUMG00000149837 7 7q11.21 zinc finger protein 273 protein-coding ZNF273 zinc finger protein 273 O zinc finger protein 9|zinc finger protein HZF9 20121230 -9606 10794 ZNF460 - HZF8|ZNF272 HGNC:21628|MIM:604755|Ensembl:ENSG00000197714|HPRD:06885 19 19q13.4 zinc finger protein 460 protein-coding ZNF460 zinc finger protein 460 O zinc finger protein 272|zinc finger protein HZF8 20121230 -9606 10795 ZNF268 - HZF3 HGNC:13061|MIM:604753|Ensembl:ENSG00000090612|HPRD:05300|Vega:OTTHUMG00000167946 12 12q24.33 zinc finger protein 268 protein-coding ZNF268 zinc finger protein 268 O zinc finger protein 3|zinc finger protein HZF3 20121230 -9606 10797 MTHFD2 - NMDMC HGNC:7434|MIM:604887|Ensembl:ENSG00000065911|HPRD:05351|Vega:OTTHUMG00000129814 2 2p13.1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase protein-coding MTHFD2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase O NAD-dependent methylene tetrahydrofolate dehydrogenase cyclohydrolase|bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial 20121230 -9606 10798 OR5I1 - HSOlf1|OLF1 HGNC:8347|MIM:608496|Ensembl:ENSG00000167825|HPRD:09772|Vega:OTTHUMG00000166821 11 11q11 olfactory receptor, family 5, subfamily I, member 1 protein-coding OR5I1 olfactory receptor, family 5, subfamily I, member 1 O olfactory receptor 5I1|olfactory receptor OR11-159|olfactory receptor-like protein OLF1 20121230 -9606 10799 RPP40 RP11-428J1.3 RNASEP1|bA428J1.3 HGNC:20992|MIM:606117|Ensembl:ENSG00000124787|HPRD:09361|Vega:OTTHUMG00000014168 6 6p25.1 ribonuclease P/MRP 40kDa subunit protein-coding RPP40 ribonuclease P/MRP 40kDa subunit O RNase P subunit 1|RNaseP protein p40|ribonuclease P (40 kD)|ribonuclease P 40kDa subunit|ribonuclease P protein subunit p40|ribonuclease P, 40kD subunit|ribonuclease P1 20121230 -9606 10800 CYSLTR1 - CYSLT1|CYSLT1R|CYSLTR|HG55|HMTMF81 HGNC:17451|MIM:300201|Ensembl:ENSG00000173198|HPRD:02188|Vega:OTTHUMG00000021889 X Xq13.2-q21.1 cysteinyl leukotriene receptor 1 protein-coding CYSLTR1 cysteinyl leukotriene receptor 1 O G-protein coupled receptor HG55|LTD4 receptor|cysteinyl leukotriene D4 receptor 20121230 -9606 10801 SEPT9 - AF17q25|MSF|MSF1|NAPB|PNUTL4|SINT1|SeptD1 HGNC:7323|MIM:604061|Ensembl:ENSG00000184640|HPRD:10360|Vega:OTTHUMG00000177327 17 17q25 septin 9 protein-coding SEPT9 septin 9 O MLL septin-like fusion protein MSF-A|Ov/Br septin|ovarian/breast septin|septin D1|septin-9 20121230 -9606 10802 SEC24A - - HGNC:10703|MIM:607183|Ensembl:ENSG00000113615|Vega:OTTHUMG00000163064 5 5q31.1 SEC24 family, member A (S. cerevisiae) protein-coding SEC24A SEC24 family, member A (S. cerevisiae) O SEC24 related gene family, member A|SEC24-related protein A|protein transport protein Sec24A 20121230 -9606 10803 CCR9 - CC-CKR-9|CDw199|GPR-9-6|GPR28 HGNC:1610|MIM:604738|Ensembl:ENSG00000173585|HPRD:09200|Vega:OTTHUMG00000133450 3 3p21.3 chemokine (C-C motif) receptor 9 protein-coding CCR9 chemokine (C-C motif) receptor 9 O C-C chemokine receptor type 9|G protein-coupled receptor 28 20121230 -9606 10804 GJB6 - CX30|DFNA3|DFNA3B|DFNB1B|ECTD2|ED2|EDH|HED|HED2 HGNC:4288|MIM:604418|Ensembl:ENSG00000121742|HPRD:05107|Vega:OTTHUMG00000016515 13 13q12 gap junction protein, beta 6, 30kDa protein-coding GJB6 gap junction protein, beta 6, 30kDa O connexin 30|connexin-30|ectodermal dysplasia 2, hidrotic (Clouston syndrome)|gap junction beta-6 protein|gap junction protein, beta 6 (connexin 30) 20121230 -9606 10806 SDCCAG8 HSPC085 BBS16|CCCAP|CCCAP SLSN7|NPHP10|NY-CO-8|SLSN7|hCCCAP HGNC:10671|MIM:613524|Ensembl:ENSG00000054282|HPRD:10215|Vega:OTTHUMG00000039996 1 1q43 serologically defined colon cancer antigen 8 protein-coding SDCCAG8 serologically defined colon cancer antigen 8 O antigen NY-CO-8|centrosomal colon cancer autoantigen protein 20121230 -9606 10807 SDCCAG3 RP11-413M3.3 NY-CO-3 HGNC:10667|Ensembl:ENSG00000165689|HPRD:15307|Vega:OTTHUMG00000020928 9 9q34.3 serologically defined colon cancer antigen 3 protein-coding SDCCAG3 serologically defined colon cancer antigen 3 O antigen NY-CO-3 20121230 -9606 10808 HSPH1 RP11-173P16.1 HSP105|HSP105A|HSP105B|NY-CO-25 HGNC:16969|MIM:610703|Ensembl:ENSG00000120694|HPRD:09990|Vega:OTTHUMG00000016685 13 13q12.3 heat shock 105kDa/110kDa protein 1 protein-coding HSPH1 heat shock 105kDa/110kDa protein 1 O antigen NY-CO-25|heat shock 105kD alpha|heat shock 105kD beta|heat shock 105kDa protein 1|heat shock 110 kDa protein|heat shock protein 105 kDa 20121230 -9606 10809 STARD10 CGI-52 NY-CO-28|PCTP2|SDCCAG28 HGNC:10666|Ensembl:ENSG00000214530|HPRD:18116|Vega:OTTHUMG00000167954 11 11q13 StAR-related lipid transfer (START) domain containing 10 protein-coding STARD10 StAR-related lipid transfer (START) domain containing 10 O PCTP-L|PCTP-like protein|START domain containing 10|START domain-containing protein 10|antigen NY-CO-28|serologically defined colon cancer antigen 28|stAR-related lipid transfer protein 10 20121230 -9606 10810 WASF3 RP11-496O3.2 Brush-1|SCAR3|WAVE3 HGNC:12734|MIM:605068|Ensembl:ENSG00000132970|HPRD:05458|Vega:OTTHUMG00000016621 13 13q12 WAS protein family, member 3 protein-coding WASF3 WAS protein family, member 3 O WASP family Verprolin-homologous protein 3|WASP family protein member 3|protein WAVE-3|verprolin homology domain-containing protein 3|wiskott-Aldrich syndrome protein family member 3 20121230 -9606 10811 NOXA1 - NY-CO-31|SDCCAG31|p51NOX HGNC:10668|MIM:611255|Ensembl:ENSG00000188747|HPRD:17644|Vega:OTTHUMG00000131781 9 9q34.3 NADPH oxidase activator 1 protein-coding NOXA1 NADPH oxidase activator 1 O NCF2-like protein|Nox activator 1|antigen NY-CO-31|inhibitory NADPH oxidase activator 1|p51-nox|p67phox-like factor|serologically defined colon cancer antigen 31 20121230 -9606 10813 UTP14A RP4-537K23.16-001 NYCO16|SDCCAG16|dJ537K23.3 HGNC:10665|MIM:300508|Ensembl:ENSG00000156697|HPRD:06712|Vega:OTTHUMG00000022378 X Xq26.1 UTP14, U3 small nucleolar ribonucleoprotein, homolog A (yeast) protein-coding UTP14A UTP14, U3 small nucleolar ribonucleoprotein, homolog A (yeast) O U3 small nucleolar RNA-associated protein 14 homolog A|antigen NY-CO-16|serologically defined colon cancer antigen 16 20121230 -9606 10814 CPLX2 - 921-L|CPX-2|CPX2|Hfb1 HGNC:2310|MIM:605033|Ensembl:ENSG00000145920|HPRD:09234|Vega:OTTHUMG00000130665 5 5q35.2 complexin 2 protein-coding CPLX2 complexin 2 O CPX II|complexin II|complexin-2|synaphin 1|synaphin-1 20121230 -9606 10815 CPLX1 - CPX-I|CPX1 HGNC:2309|MIM:605032|Ensembl:ENSG00000168993|HPRD:09233|Vega:OTTHUMG00000160005 4 4p16.3 complexin 1 protein-coding CPLX1 complexin 1 O CPX I|complexin I|complexin-1|synaphin 2|synaphin-2 20121230 -9606 10816 SPINT3 - HKIB9 HGNC:11248|MIM:613941|Ensembl:ENSG00000101446|Vega:OTTHUMG00000032585 20 20q12-q13.1 serine peptidase inhibitor, Kunitz type, 3 protein-coding SPINT3 serine peptidase inhibitor, Kunitz type, 3 O kunitz-type protease inhibitor 3|serine protease inhibitor Kunitz type 3|serine protease inhibitor, Kunitz type, 3 20121230 -9606 10817 FRS3 RP11-298J23.2 FRS2B|FRS2beta|SNT-2|SNT2 HGNC:16970|MIM:607744|Ensembl:ENSG00000137218|HPRD:06373|Vega:OTTHUMG00000014686 6 6p21.1 fibroblast growth factor receptor substrate 3 protein-coding FRS3 fibroblast growth factor receptor substrate 3 O FGFR substrate 3|FGFR-signaling adaptor SNT2|FRS2-beta|suc1-associated neurotrophic factor target 2 (FGFR signalling adaptor) 20121230 -9606 10818 FRS2 - FRS2A|FRS2alpha|SNT|SNT-1|SNT1 HGNC:16971|MIM:607743|Ensembl:ENSG00000166225|HPRD:06372|Vega:OTTHUMG00000169373 12 12q15 fibroblast growth factor receptor substrate 2 protein-coding FRS2 fibroblast growth factor receptor substrate 2 O FGFR signalling adaptor|FGFR substrate 2|FGFR-signaling adaptor SNT|suc1-associated neurotrophic factor target 1 20121230 -9606 10819 OR7E14P - OR11-5|OR7E151P HGNC:8385 11 11p15.1 olfactory receptor, family 7, subfamily E, member 14 pseudogene pseudo OR7E14P olfactory receptor, family 7, subfamily E, member 14 pseudogene O - 20121230 -9606 10820 OR7E13P - OR11-4|OR7E44P|OST022|PJCG2 HGNC:8384 11 11q13-q14.3 olfactory receptor, family 7, subfamily E, member 13 pseudogene pseudo OR7E13P olfactory receptor, family 7, subfamily E, member 13 pseudogene O - 20121230 -9606 10821 OR7E12P - HG1058|OR11-3|OR7E58P|OR7E79P|OR7E81P|OST021 HGNC:8383 11 11p15 olfactory receptor, family 7, subfamily E, member 12 pseudogene pseudo OR7E12P olfactory receptor, family 7, subfamily E, member 12 pseudogene O - 20121230 -9606 10822 OR7E11P - OR11-2|OR7E144P HGNC:8382 11 11q13.2 olfactory receptor, family 7, subfamily E, member 11 pseudogene pseudo OR7E11P olfactory receptor, family 7, subfamily E, member 11 pseudogene O - 20121230 -9606 10823 OR7E10P - OR11-1 HGNC:8381 8 8p23.1 olfactory receptor, family 7, subfamily E, member 10 pseudogene pseudo OR7E10P olfactory receptor, family 7, subfamily E, member 10 pseudogene O - 20121230 -9606 10824 EPAG - - MIM:300347 X Xq21.33 early lymphoid activation protein unknown - - - - 20120511 -9606 10825 NEU3 - SIAL3 HGNC:7760|MIM:604617|Ensembl:ENSG00000162139|HPRD:05215|Vega:OTTHUMG00000165518 11 11q13.5 sialidase 3 (membrane sialidase) protein-coding NEU3 sialidase 3 (membrane sialidase) O N-acetyl-alpha-neuraminidase 3|ganglioside sialidase|membrane sialidase|neuraminidase 3|sialidase-3 20121230 -9606 10826 C5orf4 - - HGNC:1334|Ensembl:ENSG00000170271|HPRD:12832|Vega:OTTHUMG00000164141 5 5q31-q32 chromosome 5 open reading frame 4 protein-coding C5orf4 chromosome 5 open reading frame 4 O uncharacterized protein C5orf4 20121230 -9606 10827 FAM114A2 - 133K02|C5orf3 HGNC:1333|Ensembl:ENSG00000055147|HPRD:12831|Vega:OTTHUMG00000130147 5 5q31-q33 family with sequence similarity 114, member A2 protein-coding FAM114A2 family with sequence similarity 114, member A2 O protein FAM114A2 20121230 -9606 10828 NPM1P19 - - HGNC:7921 20 20q12 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 19 pseudo NPM1P19 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 19 O - 20121230 -9606 10829 NPM1P18 - - HGNC:7920 7 7p14.2 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 18 pseudo NPM1P18 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 18 O - 20121230 -9606 10830 NPM1P17 - - HGNC:7919 3 3q22.3 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 17 pseudo NPM1P17 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 17 O - 20121230 -9606 10831 NPM1P7 - NG7-6|NPM1P16|NPMP7 HGNC:7927 12 12p13.31 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 7 pseudo NPM1P7 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 7 O - 20121230 -9606 10833 NPM1P14 - - HGNC:7916 7 7q31.1 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 14 pseudo NPM1P14 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 14 O - 20121230 -9606 10834 NPM1P13 - - HGNC:7915 7 7p21.3 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 13 pseudo NPM1P13 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 13 O - 20121230 -9606 10835 NPM1P12 - - HGNC:7914 7 7q35 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 12 pseudo NPM1P12 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 12 O - 20121230 -9606 10836 NPM1P11 - - HGNC:7913 7 7p21.3 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 11 pseudo NPM1P11 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 11 O - 20121230 -9606 10837 NPM1P10 - - HGNC:7912 6 6q16.3 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 10 pseudo NPM1P10 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 10 O - 20121230 -9606 10838 ZNF275 - - HGNC:13069|Ensembl:ENSG00000063587|Vega:OTTHUMG00000067450 X Xq28 zinc finger protein 275 protein-coding ZNF275 zinc finger protein 275 O - 20121230 -9606 10840 ALDH1L1 - 10-FTHFDH|10-fTHF|FDH|FTHFD HGNC:3978|MIM:600249|Ensembl:ENSG00000144908|HPRD:02594|Vega:OTTHUMG00000125551 3 3q21.3 aldehyde dehydrogenase 1 family, member L1 protein-coding ALDH1L1 aldehyde dehydrogenase 1 family, member L1 O 10-formyltetrahydrofolate dehydrogenase|cytosolic 10-formyltetrahydrofolate dehydrogenase 20121230 -9606 10841 FTCD - LCHC1 HGNC:3974|MIM:606806|Ensembl:ENSG00000160282|HPRD:08430|Vega:OTTHUMG00000090488 21 21q22.3 formiminotransferase cyclodeaminase protein-coding FTCD formiminotransferase cyclodeaminase O formimidoyltransferase cyclodeaminase|formimidoyltransferase-cyclodeaminase|formiminotransferase-cyclodeaminase 20121230 -9606 10842 PPP1R17 - C7orf16|GSBS HGNC:16973|MIM:604088|Ensembl:ENSG00000106341|HPRD:06820|Vega:OTTHUMG00000128629 7 7p15 protein phosphatase 1, regulatory subunit 17 protein-coding PPP1R17 protein phosphatase 1, regulatory subunit 17 O G-substrate|protein phosphatase 1 regulatory subunit 17 20121230 -9606 10844 TUBGCP2 - GCP-2|GCP2|Grip103|SPBC97|Spc97p|h103p|hGCP2|hSpc97 HGNC:18599|Ensembl:ENSG00000130640|HPRD:18245|Vega:OTTHUMG00000019319 10 10q26.3 tubulin, gamma complex associated protein 2 protein-coding TUBGCP2 tubulin, gamma complex associated protein 2 O gamma-ring complex protein 103 kDa|gamma-tubulin complex component 2|hGrip103|spindle pole body protein Spc97 homolog 20121230 -9606 10845 CLPX - - HGNC:2088|Ensembl:ENSG00000166855|HPRD:07478|Vega:OTTHUMG00000133139 15 15q22.31 ClpX caseinolytic peptidase X homolog (E. coli) protein-coding CLPX ClpX caseinolytic peptidase X homolog (E. coli) O ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial|ClpX caseinolytic protease X homolog|energy-dependent regulator of proteolysis 20121230 -9606 10846 PDE10A - HSPDE10A HGNC:8772|MIM:610652|Ensembl:ENSG00000112541|HPRD:17828|Vega:OTTHUMG00000015986 6 6q26 phosphodiesterase 10A protein-coding PDE10A phosphodiesterase 10A O cAMP and cAMP-inhibited cGMP 3',5'-cyclic phosphodiesterase 10A|dJ416F21.1 (phosphodiesterase 10A)|phosphodiesterase 10A1 (PDE10A1) 20121230 -9606 10847 SRCAP - DOMO1|EAF1|FLHS|SWR1 HGNC:16974|MIM:611421|Ensembl:ENSG00000080603|HPRD:18103|Vega:OTTHUMG00000132393 16 16p11.2 Snf2-related CREBBP activator protein protein-coding SRCAP Snf2-related CREBBP activator protein O Snf2-related CBP activator protein|Swi2/Snf2-related ATPase homolog, domino homolog 1|domino homolog 2|helicase SRCAP 20121230 -9606 10848 PPP1R13L - IASPP|NKIP1|RAI|RAI4 HGNC:18838|MIM:607463|Ensembl:ENSG00000104881|HPRD:09195|Vega:OTTHUMG00000181784 19 19q13.32 protein phosphatase 1, regulatory subunit 13 like protein-coding PPP1R13L protein phosphatase 1, regulatory subunit 13 like O NFkB interacting protein 1|NFkB-interacting protein 1|PPP1R13B-like protein|inhibitor of ASPP protein|inhibitor of apoptosis stimulating protein of p53|protein iASPP|protein phosphatase 1, regulatory (inhibitor) subunit 13 like|relA-associated inhibitor|retinoic acid induced 4 20121230 -9606 10849 CD3EAP - ASE-1|ASE1|CAST|PAF49 HGNC:24219|MIM:107325|Ensembl:ENSG00000117877|HPRD:00125|Vega:OTTHUMG00000182120 19 19q13.3 CD3e molecule, epsilon associated protein protein-coding CD3EAP CD3e molecule, epsilon associated protein O A34.5|CD3 epsilon associated protein|CD3-epsilon-associated protein|CD3E-associated protein|CD3e antigen, epsilon polypeptide associated protein|DNA-directed RNA polymerase I subunit RPA34|RNA polymerase I-associated factor PAF49|antisense to ERCC 1|antisense to ERCC-1 protein 20121230 -9606 10850 CCL27 RP11-195F19.28-001 ALP|CTACK|CTAK|ESKINE|ILC|PESKY|SCYA27 HGNC:10626|MIM:604833|Ensembl:ENSG00000213927|HPRD:05321|Vega:OTTHUMG00000019834 9 9p13 chemokine (C-C motif) ligand 27 protein-coding CCL27 chemokine (C-C motif) ligand 27 O C-C motif chemokine 27|CC chemokine ILC|IL-11 R-alpha-locus chemokine|IL-11 Ralpha-locus chemokine|cutaneous T-cell attracting chemokine|cutaneous T-cell-attracting chemokine|skinkine|small inducible cytokine subfamily A (Cys-Cys), member 27|small-inducible cytokine A27 20121230 -9606 10855 HPSE - HPA|HPA1|HPR1|HPSE1|HSE1 HGNC:5164|MIM:604724|Ensembl:ENSG00000173083|HPRD:05286|Vega:OTTHUMG00000130425 4 4q21.3 heparanase protein-coding HPSE heparanase O endo-glucoronidase|heparanase-1 20121230 -9606 10856 RUVBL2 CGI-46 ECP51|INO80J|REPTIN|RVB2|TIH2|TIP48|TIP49B HGNC:10475|MIM:604788|Ensembl:ENSG00000183207|HPRD:16070 19 19q13.3 RuvB-like 2 (E. coli) protein-coding RUVBL2 RuvB-like 2 (E. coli) O 48 kDa TATA box-binding protein-interacting protein|48 kDa TBP-interacting protein|51 kDa erythrocyte cytosolic protein|ECP-51|INO80 complex subunit J|RuvB (E coli homolog)-like 2|TAP54-beta|TIP60-associated protein 54-beta|erythrocyte cytosolic protein, 51-KD|repressing pontin 52|reptin52 protein|ruvB-like 2 20121230 -9606 10857 PGRMC1 - HPR6.6|MPR HGNC:16090|MIM:300435|Ensembl:ENSG00000101856|HPRD:02338|Vega:OTTHUMG00000022268 X Xq22-q24 progesterone receptor membrane component 1 protein-coding PGRMC1 progesterone receptor membrane component 1 O membrane-associated progesterone receptor component 1|progesterone binding protein 20121230 -9606 10858 CYP46A1 - CP46|CYP46 HGNC:2641|MIM:604087|Ensembl:ENSG00000036530|HPRD:04970|Vega:OTTHUMG00000171510 14 14q32.1 cytochrome P450, family 46, subfamily A, polypeptide 1 protein-coding CYP46A1 cytochrome P450, family 46, subfamily A, polypeptide 1 O CH24H|cholesterol 24-hydroxylase|cytochrome P450 46A1|cytochrome P450, subfamily 46 (cholesterol 24-hydroxylase) 20121230 -9606 10859 LILRB1 XXbac-BCX85G21.4 CD85|CD85J|ILT-2|ILT2|LIR-1|LIR1|MIR-7|MIR7 HGNC:6605|MIM:604811|Ensembl:ENSG00000104972|HPRD:07273|Vega:OTTHUMG00000065695 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 1 protein-coding LILRB1 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 1 O CD85 antigen-like family member J|Ig-like transcript 2|immunoglobulin-like transcript 2|leukocyte Ig-like receptor-1|leukocyte immunoglobulin-like receptor subfamily B member 1|leukocyte immunoglobulin-like receptor subfamily B member 1 soluble isoform|monocyte/macrophage immunoglobulin-like receptor 7 20121230 -9606 10861 SLC26A1 - EDM4|SAT-1|SAT1 HGNC:10993|MIM:610130|Ensembl:ENSG00000145217|HPRD:15361|Vega:OTTHUMG00000160003 4 4p16.3 solute carrier family 26 (sulfate transporter), member 1 protein-coding SLC26A1 solute carrier family 26 (sulfate transporter), member 1 O sulfate anion tranporter AT1|sulfate anion transporter 1|sulfate/anion transporter SAT-1 protein 20121230 -9606 10863 ADAM28 - ADAM 28|ADAM23|MDC-L|MDC-Lm|MDC-Ls|MDCL|eMDC II|eMDCII HGNC:206|MIM:606188|Ensembl:ENSG00000042980|HPRD:08391|Vega:OTTHUMG00000163780 8 8p21.2 ADAM metallopeptidase domain 28 protein-coding ADAM28 ADAM metallopeptidase domain 28 O disintegrin and metalloproteinase domain-containing protein 28|epididymial metalloproteinase-like, disintegrin-like, and cysteine-rich protein II|metalloproteinase-like, disintegrin-like, and cysteine-rich protein-L 20121230 -9606 10864 SLC22A7 RP11-480N24.7 NLT|OAT2 HGNC:10971|MIM:604995|Ensembl:ENSG00000137204|HPRD:05409|Vega:OTTHUMG00000014726 6 6p21.1 solute carrier family 22 (organic anion transporter), member 7 protein-coding SLC22A7 solute carrier family 22 (organic anion transporter), member 7 O hOAT2|liver-specific transporter|novel liver transporter|organic anion transporter 2|solute carrier family 22 member 7 20121230 -9606 10865 ARID5A UNQ5814 MRF-1|MRF1|RP11-363D14 HGNC:17361|MIM:611583|Ensembl:ENSG00000196843|HPRD:12481|Vega:OTTHUMG00000155229 2 2q11.2 AT rich interactive domain 5A (MRF1-like) protein-coding ARID5A AT rich interactive domain 5A (MRF1-like) O ARID domain-containing protein 5A|AT-rich interactive domain-containing protein 5A|RFVG5814|modulator recognition factor 1|modulator recognition factor I 20121230 -9606 10866 HCP5 - 6S2650E|D6S2650E|P5-1 HGNC:21659|MIM:604676|HPRD:05245 6 6p21.3 HLA complex P5 (non-protein coding) miscRNA HCP5 HLA complex P5 (non-protein coding) O - 20121230 -9606 10867 TSPAN9 - NET-5|NET5|PP1057 HGNC:21640|MIM:613137|Ensembl:ENSG00000011105|HPRD:14823|Vega:OTTHUMG00000150333 12 12p13.33-p13.32 tetraspanin 9 protein-coding TSPAN9 tetraspanin 9 O new EST tetraspan 5|tetraspan NET-5|tetraspanin-9|transmembrane 4 superfamily member tetraspan NET-5|tspan-9 20121230 -9606 10868 USP20 - LSFR3A|VDU2 HGNC:12619|Ensembl:ENSG00000136878|HPRD:07505|Vega:OTTHUMG00000020793 9 9q34.11 ubiquitin specific peptidase 20 protein-coding USP20 ubiquitin specific peptidase 20 O VHL-interacting deubiquitinating enzyme 2|deubiquitinating enzyme 20|hVDU2|pVHL-interacting deubiquitinating enzyme 2|ubiquitin carboxyl-terminal hydrolase 20|ubiquitin specific protease 20|ubiquitin thioesterase 20|ubiquitin thiolesterase 20|ubiquitin-specific-processing protease 20 20121230 -9606 10869 USP19 - ZMYND9 HGNC:12617|MIM:614471|Ensembl:ENSG00000172046|HPRD:18278|Vega:OTTHUMG00000133611 3 3p21.31 ubiquitin specific peptidase 19 protein-coding USP19 ubiquitin specific peptidase 19 O deubiquitinating enzyme 19|ubiquitin carboxyl-terminal hydrolase 19|ubiquitin specific protease 19|ubiquitin thioesterase 19|ubiquitin thiolesterase 19|ubiquitin-specific-processing protease 19|zinc finger MYND domain-containing protein 9 20121230 -9606 10870 HCST UNQ587/PRO1157 DAP10|KAP10|PIK3AP HGNC:16977|MIM:604089|Ensembl:ENSG00000126264|HPRD:04971|Vega:OTTHUMG00000048132 19 19q13.1 hematopoietic cell signal transducer protein-coding HCST hematopoietic cell signal transducer O DNAX-activation protein 10|kinase assoc pro of ~10kDa|kinase assoc protein|membrane protein DAP10|phosphoinositide-3-kinase adaptor protein|transmembrane adapter protein KAP10 20121230 -9606 10871 CD300C - CLM-6|CMRF-35|CMRF-35A|CMRF35|CMRF35-A1|CMRF35A|CMRF35A1|IGSF16|LIR HGNC:19320|MIM:606786|Ensembl:ENSG00000167850|HPRD:09491|Vega:OTTHUMG00000067608 17 17q25.1 CD300c molecule protein-coding CD300C CD300c molecule O CD300 antigen-like family member C|CD300c antigen|CMRF35 antigen|CMRF35 leukocyte immunoglobulin-like receptor|CMRF35-like molecule 6|CMRF35A leukocyte immunoglobulin-like receptor|immunoglobulin superfamily member 16 20121230 -9606 10873 ME3 - NADP-ME HGNC:6985|MIM:604626|Ensembl:ENSG00000151376|HPRD:06862|Vega:OTTHUMG00000167217 11 11cen-q22.3 malic enzyme 3, NADP(+)-dependent, mitochondrial protein-coding ME3 malic enzyme 3, NADP(+)-dependent, mitochondrial O NADP-dependent malic enzyme, mitochondrial|malate dehydrogenase|malic enzyme, NADP+-dependent, mitochondrial|mitochondrial NADP(+)-dependent malic enzyme 3|pyruvic-malic carboxylase 20121230 -9606 10874 NMU - - HGNC:7859|MIM:605103|Ensembl:ENSG00000109255|HPRD:05485|Vega:OTTHUMG00000102161 4 4q12 neuromedin U protein-coding NMU neuromedin U O neuromedin-U 20121230 -9606 10875 FGL2 - T49|pT49 HGNC:3696|MIM:605351|Ensembl:ENSG00000127951|HPRD:16098|Vega:OTTHUMG00000130681 7 7q11.23 fibrinogen-like 2 protein-coding FGL2 fibrinogen-like 2 O fibrinogen-like protein 2|fibroleukin 20121230 -9606 10876 EDDM3A - EP3A|FAM12A|HE3-ALPHA|HE3A|HE3ALPHA HGNC:16978|MIM:611580|Ensembl:ENSG00000181562|HPRD:13289|Vega:OTTHUMG00000029581 14 14q11.2 epididymal protein 3A protein-coding EDDM3A epididymal protein 3A O epididymal secretory protein E3 alpha|epididymal secretory protein E3-alpha|epididymis-specific 3 alpha|family with sequence similarity 12, member A|human epididymis-specific 3 alpha|human epididymis-specific protein 3-alpha 20121230 -9606 10877 CFHR4 RP4-608O15.2 CFHL4|FHR-4|FHR4 HGNC:16979|MIM:605337|Ensembl:ENSG00000134365|HPRD:05627|Vega:OTTHUMG00000036647 1 1q32 complement factor H-related 4 protein-coding CFHR4 complement factor H-related 4 O complement factor H-related protein 4 20121230 -9606 10878 CFHR3 - CFHL3|DOWN16|FHR-3|FHR3|HLF4 HGNC:16980|MIM:605336|Ensembl:ENSG00000116785|HPRD:05626|Vega:OTTHUMG00000035929 1 1q32 complement factor H-related 3 protein-coding CFHR3 complement factor H-related 3 O H factor-like 4|H factor-like protein 3|complement factor H-related protein 3 20121230 -9606 10879 SMR3B - P-B|PBII|PRL3|PROL3|SMR1B HGNC:17326|MIM:611593|Ensembl:ENSG00000171201|HPRD:18078|Vega:OTTHUMG00000129396 4 4q13.3 submaxillary gland androgen regulated protein 3B protein-coding SMR3B submaxillary gland androgen regulated protein 3B O proline rich 3|proline-rich peptide P-B|proline-rich protein 3|salivary proline-rich protein|submaxillary gland androgen regulated protein 3 homolog B|submaxillary gland androgen-regulated protein 3B 20121230 -9606 10880 ACTL7B RP11-3J11.2 Tact1 HGNC:162|MIM:604304|Ensembl:ENSG00000148156|HPRD:11977|Vega:OTTHUMG00000020462 9 9q31 actin-like 7B protein-coding ACTL7B actin-like 7B O actin-like 7-beta|actin-like protein 7B|actin-like-7-beta 20121230 -9606 10881 ACTL7A RP11-3J11.3 - HGNC:161|MIM:604303|Ensembl:ENSG00000187003|HPRD:11976|Vega:OTTHUMG00000020461 9 9q31 actin-like 7A protein-coding ACTL7A actin-like 7A O actin-like 7-alpha|actin-like protein 7A|actin-like-7-alpha 20121230 -9606 10882 C1QL1 - C1QRF|C1QTNF14|CRF HGNC:24182|MIM:611586|Ensembl:ENSG00000131094|HPRD:12712|Vega:OTTHUMG00000162944 17 17q21 complement component 1, q subcomponent-like 1 protein-coding C1QL1 complement component 1, q subcomponent-like 1 O C1q-related factor 20121230 -9606 10884 MRPS30 BM-047 MRP-S30|PAP|PDCD9|S30mt HGNC:8769|MIM:611991|Ensembl:ENSG00000112996|HPRD:17597|Vega:OTTHUMG00000096967 5 5q11 mitochondrial ribosomal protein S30 protein-coding MRPS30 mitochondrial ribosomal protein S30 O 28S ribosomal protein S30, mitochondrial|programmed cell death 9 20121230 -9606 10885 WDR3 RP4-776P7.1 DIP2|UTP12 HGNC:12755|MIM:604737|Ensembl:ENSG00000065183|HPRD:16066|Vega:OTTHUMG00000012197 1 1p12 WD repeat domain 3 protein-coding WDR3 WD repeat domain 3 O WD repeat-containing protein 3|dJ776P7.2 (WD repeat domain 3) 20121230 -9606 10886 NPFFR2 - GPR74|HLWAR77|NPFF2|NPGPR HGNC:4525|MIM:607449|Ensembl:ENSG00000056291|HPRD:16244|Vega:OTTHUMG00000129918 4 4q21 neuropeptide FF receptor 2 protein-coding NPFFR2 neuropeptide FF receptor 2 O G protein-coupled receptor 74|G-protein coupled receptor 74|G-protein coupled receptor HLWAR77|neuropeptide FF 2|neuropeptide G-protein coupled receptor 20121230 -9606 10887 PROKR1 - GPR73|GPR73a|PKR1|ZAQ HGNC:4524|MIM:607122|Ensembl:ENSG00000169618|HPRD:08452 2 2p13.1 prokineticin receptor 1 protein-coding PROKR1 prokineticin receptor 1 O G protein-coupled receptor 73|G protein-coupled receptor ZAQ|G-protein coupled receptor 73|G-protein coupled receptor ZAQ|PK-R1 20121230 -9606 10888 GPR83 - GIR|GPR72 HGNC:4523|MIM:605569|Ensembl:ENSG00000123901|HPRD:16125|Vega:OTTHUMG00000167779 11 11q21 G protein-coupled receptor 83 protein-coding GPR83 G protein-coupled receptor 83 O G protein-coupled receptor 72|G-protein coupled receptor 72|glucocorticoid induced receptor|probable G-protein coupled receptor 83 20121230 -9606 10890 RAB10 - - HGNC:9759|MIM:612672|Ensembl:ENSG00000084733|HPRD:06692|Vega:OTTHUMG00000094796 2 2p23.3 RAB10, member RAS oncogene family protein-coding RAB10 RAB10, member RAS oncogene family O GTP-binding protein RAB10|ras-related GTP-binding protein|ras-related protein Rab-10 20121230 -9606 10891 PPARGC1A - LEM6|PGC-1(alpha)|PGC-1v|PGC1|PGC1A|PPARGC1 HGNC:9237|MIM:604517|Ensembl:ENSG00000109819|HPRD:05155|Vega:OTTHUMG00000097747 4 4p15.1 peroxisome proliferator-activated receptor gamma, coactivator 1 alpha protein-coding PPARGC1A peroxisome proliferator-activated receptor gamma, coactivator 1 alpha O L-PGC-1alpha|PGC-1-alpha|PPAR gamma coactivator variant form|PPARGC-1-alpha|ligand effect modulator-6|peroxisome proliferator-activated receptor gamma coactivator 1 alpha transcript variant B4|peroxisome proliferator-activated receptor gamma coactivator 1 alpha transcript variant B4-3ext|peroxisome proliferator-activated receptor gamma coactivator 1 alpha transcript variant B4-8a|peroxisome proliferator-activated receptor gamma coactivator 1 alpha transcript variant B5|peroxisome proliferator-activated receptor gamma coactivator 1 alpha transcript variant B5-NT|peroxisome proliferator-activated receptor gamma coactivator 1-alpha 20121230 -9606 10892 MALT1 - MLT|MLT1 HGNC:6819|MIM:604860|Ensembl:ENSG00000172175|HPRD:06892|Vega:OTTHUMG00000132761 18 18q21 mucosa associated lymphoid tissue lymphoma translocation gene 1 protein-coding MALT1 mucosa associated lymphoid tissue lymphoma translocation gene 1 O MALT associated translocation|MALT lymphoma-associated translocation|MALT-lymphoma associated translocation|caspase-like protein|mucosa-associated lymphoid tissue lymphoma translocation protein 1|paracaspase 20121230 -9606 10893 MMP24 RP4-614O4.10-001 MMP-24|MMP25|MT-MMP 5|MT-MMP5|MT5-MMP|MT5MMP|MTMMP5 HGNC:7172|MIM:604871|Ensembl:ENSG00000125966|HPRD:05338|Vega:OTTHUMG00000032330 20 20q11.2 matrix metallopeptidase 24 (membrane-inserted) protein-coding MMP24 matrix metallopeptidase 24 (membrane-inserted) O matrix metalloproteinase 24 (membrane-inserted)|matrix metalloproteinase-24|membrane-type 5 matrix metalloproteinase|membrane-type matrix metalloproteinase 5|membrane-type-5 matrix metalloproteinase 20121230 -9606 10894 LYVE1 UNQ230/PRO263 CRSBP-1|HAR|LYVE-1|XLKD1 HGNC:14687|MIM:605702|Ensembl:ENSG00000133800|HPRD:05753|Vega:OTTHUMG00000165713 11 11p15 lymphatic vessel endothelial hyaluronan receptor 1 protein-coding LYVE1 lymphatic vessel endothelial hyaluronan receptor 1 O cell surface retention sequence binding protein-1|cell surface retention sequence-binding protein 1|extracellular link domain containing 1|extracellular link domain-containing 1|extracellular link domain-containing protein 1|hyaluronic acid receptor|lymphatic vessel endothelial hyaluronic acid receptor 1 20121230 -9606 10895 PPBPP2 - PPBPL2|SPBPBP HGNC:16981|MIM:611591 4 4q13.3 pro-platelet basic protein pseudogene 2 pseudo PPBPP2 pro-platelet basic protein pseudogene 2 O - 20121230 -9606 10896 OCLM - TISR HGNC:8103|MIM:604301|Ensembl:ENSG00000262180|HPRD:16054|Vega:OTTHUMG00000177601 1 1q25 oculomedin protein-coding OCLM oculomedin O trabecular meshwork inducible stretch response protein 20121230 -9606 10897 YIF1A - 54TM|FinGER7|YIF1|YIF1P HGNC:16688|MIM:611484|Ensembl:ENSG00000174851|HPRD:06755|Vega:OTTHUMG00000102079 11 11q13 Yip1 interacting factor homolog A (S. cerevisiae) protein-coding YIF1A Yip1 interacting factor homolog A (S. cerevisiae) O 54TMp|YIP1-interacting factor homolog A|Yip1p-interacting factor|protein YIF1A|putative Rab5-interacting protein|putative transmembrane protein 54TMp 20121230 -9606 10898 CPSF4 - CPSF30|NAR|NEB1 HGNC:2327|MIM:603052|Ensembl:ENSG00000160917|HPRD:04338|Vega:OTTHUMG00000154599 7 7q22.1 cleavage and polyadenylation specific factor 4, 30kDa protein-coding CPSF4 cleavage and polyadenylation specific factor 4, 30kDa O CPSF 30 kDa subunit|NS1 effector domain-binding protein 1|cleavage and polyadenylation specificity factor 30 kDa subunit|cleavage and polyadenylation specificity factor subunit 4|cleavage-polyadenylation specificity factor, 30kD|neb-1|no arches homolog|no arches-like zinc finger protein 20121230 -9606 10899 JTB RP11-422P24.4 HJTB|HSPC222|PAR|hJT HGNC:6201|MIM:604671|Ensembl:ENSG00000143543|HPRD:05240|Vega:OTTHUMG00000036590 1 1q21 jumping translocation breakpoint protein-coding JTB jumping translocation breakpoint O jumping translocation breakpoint protein|prostate androgen-regulated protein|protein JTB 20121230 -9606 10900 RUNDC3A - RAP2IP|RPIP-8|RPIP8 HGNC:16984|MIM:605448|Ensembl:ENSG00000108309|HPRD:16106|Vega:OTTHUMG00000169259 17 17q21.31 RUN domain containing 3A protein-coding RUNDC3A RUN domain containing 3A O RUN domain-containing protein 3A|RaP2 interacting protein 8|rap2-interacting protein 8 20121230 -9606 10901 DHRS4 UNQ851/PRO1800 CR|NRDR|PHCR|PSCD|SCAD-SRL|SDR-SRL|SDR25C1|SDR25C2 HGNC:16985|MIM:611596|Ensembl:ENSG00000157326|HPRD:07484|Vega:OTTHUMG00000028777 14 14q11.2 dehydrogenase/reductase (SDR family) member 4 protein-coding DHRS4 dehydrogenase/reductase (SDR family) member 4 O NADP-dependent retinol dehydrogenase|NADPH-dependent carbonyl reductase/NADP-retinol dehydrogenase|NADPH-dependent retinol dehydrogenase/reductase|dehydrogenase/reductase (SDR family) member 4 like 2A|dehydrogenase/reductase SDR family member 4|peroxisomal short-chain alcohol dehydrogenase|short chain dehydrogenase/reductase family 25C, member 1|short chain dehydrogenase/reductase family 25C, member 2|short-chain dehydrogenase/reductase family member 4 20121230 -9606 10902 BRD8 - SMAP|SMAP2|p120 HGNC:19874|MIM:602848|Ensembl:ENSG00000112983|HPRD:04166|Vega:OTTHUMG00000129204 5 5q31 bromodomain containing 8 protein-coding BRD8 bromodomain containing 8 O bromodomain-containing protein 8|skeletal muscle abundant protein 2|thyroid hormone receptor coactivating protein of 120 kDa|trCP120 20121230 -9606 10903 MTMR11 - CRA|RP11-212K13.1 HGNC:24307|Ensembl:ENSG00000014914|HPRD:16748|Vega:OTTHUMG00000012207 1 1q12-q21 myotubularin related protein 11 protein-coding MTMR11 myotubularin related protein 11 O cisplatin resistance associated|cisplatin resistance-associated protein|hCRA|myotubularin-related protein 11 20121230 -9606 10904 BLCAP RP11-425M5.2 BC10 HGNC:1055|MIM:613110|Ensembl:ENSG00000166619|HPRD:16552|Vega:OTTHUMG00000032419 20 20q11.23 bladder cancer associated protein protein-coding BLCAP bladder cancer associated protein O bladder cancer 10 kDa protein|bladder cancer related protein (10kD)|bladder cancer-associated protein 20121230 -9606 10905 MAN1A2 RP4-675C20.1 MAN1B HGNC:6822|MIM:604345|Ensembl:ENSG00000198162|HPRD:05067|Vega:OTTHUMG00000012149 1 1p13 mannosidase, alpha, class 1A, member 2 protein-coding MAN1A2 mannosidase, alpha, class 1A, member 2 O alpha-1,2-mannosidase IB|alpha1,2-mannosidase|mannosyl-oligosaccharide 1,2-alpha-mannosidase IB|processing alpha-1,2-mannosidase IB 20121230 -9606 10906 TRAFD1 - FLN29 HGNC:24808|MIM:613197|Ensembl:ENSG00000135148|HPRD:10994|Vega:OTTHUMG00000169640 12 12q TRAF-type zinc finger domain containing 1 protein-coding TRAFD1 TRAF-type zinc finger domain containing 1 O FLN29 gene product|TRAF-type zinc finger domain-containing protein 1 20121230 -9606 10907 TXNL4A - DIB1|DIM1|HsT161|TXNL4|U5-15kD HGNC:30551|MIM:611595|Ensembl:ENSG00000141759|HPRD:18252|Vega:OTTHUMG00000180376 18 18q23 thioredoxin-like 4A protein-coding TXNL4A thioredoxin-like 4A O DIM1 protein homolog|spliceosomal U5 snRNP-specific 15 kDa protein|thioredoxin-like 4|thioredoxin-like U5 snRNP protein U5-15kD|thioredoxin-like protein 4A 20121230 -9606 10908 PNPLA6 - NTE|NTEMND|SPG39|iPLA2delta|sws HGNC:16268|MIM:603197|Ensembl:ENSG00000032444|HPRD:04432 19 19p13.2 patatin-like phospholipase domain containing 6 protein-coding PNPLA6 patatin-like phospholipase domain containing 6 O neuropathy target esterase|patatin-like phospholipase domain-containing protein 6 20121230 -9606 10910 SUGT1 RP11-93H24.2 SGT1 HGNC:16987|MIM:604098|Ensembl:ENSG00000165416|Vega:OTTHUMG00000016977 13 13q14.3 SGT1, suppressor of G2 allele of SKP1 (S. cerevisiae) protein-coding SUGT1 SGT1, suppressor of G2 allele of SKP1 (S. cerevisiae) O SGT1B protein|putative 40-6-3 protein|suppressor of G2 allele of SKP1 homolog|suppressor of G2 allele of SKP1, S. cerevisiae, homolog of 20121230 -9606 10911 UTS2 UNQ525/PRO1068 PRO1068|U-II|UCN2|UII HGNC:12636|MIM:604097|Ensembl:ENSG00000049247|HPRD:04976|Vega:OTTHUMG00000001218 1 1p36 urotensin 2 protein-coding UTS2 urotensin 2 O urotensin II|urotensin-2 20121230 -9606 10912 GADD45G RP11-260L6.1 CR6|DDIT2|GADD45gamma|GRP17 HGNC:4097|MIM:604949|Ensembl:ENSG00000130222|HPRD:05383|Vega:OTTHUMG00000020187 9 9q22.1-q22.2 growth arrest and DNA-damage-inducible, gamma protein-coding GADD45G growth arrest and DNA-damage-inducible, gamma O DDIT-2|DNA damage-inducible transcript 2 protein|GADD45-gamma|cytokine-responsive protein CR6|gadd-related protein, 17 kD|growth arrest and DNA damage-inducible protein GADD45 gamma 20121230 -9606 10913 EDAR - DL|ECTD10A|ECTD10B|ED1R|ED3|ED5|EDA-A1R|EDA1R|EDA3|HRM1 HGNC:2895|MIM:604095|Ensembl:ENSG00000135960|HPRD:04974|Vega:OTTHUMG00000130982 2 2q13 ectodysplasin A receptor protein-coding EDAR ectodysplasin A receptor O EDA-A1 receptor|anhidrotic ectodysplasin receptor 1|downless homolog|downless, mouse, homolog of|ectodermal dysplasia receptor|ectodysplasin 1, anhidrotic receptor|ectodysplasin-A receptor|tumor necrosis factor receptor superfamily member EDAR 20121230 -9606 10914 PAPOLA - PAP HGNC:14981|MIM:605553|Ensembl:ENSG00000090060|HPRD:10407|Vega:OTTHUMG00000171441 14 14q32.31 poly(A) polymerase alpha protein-coding PAPOLA poly(A) polymerase alpha O PAP-alpha|polynucleotide adenylyltransferase alpha 20121230 -9606 10915 TCERG1 - CA150|TAF2S|Urn1 HGNC:15630|MIM:605409|Ensembl:ENSG00000113649|HPRD:10393|Vega:OTTHUMG00000129683 5 5q31 transcription elongation regulator 1 protein-coding TCERG1 transcription elongation regulator 1 O TATA box binding protein (TBP)-associated factor, RNA polymerase II, S, 150kD|TATA box-binding protein-associated factor 2S|co-activator of 150 kDa|transcription factor CA150 20121230 -9606 10916 MAGED2 RP1-14O9.1 11B6|BCG1|HCA10|JCL-1|MAGE-D2|MAGED HGNC:16353|MIM:300470|Ensembl:ENSG00000102316|HPRD:06630|Vega:OTTHUMG00000021638 X Xp11.2 melanoma antigen family D, 2 protein-coding MAGED2 melanoma antigen family D, 2 O BCG-1|MAGE-D2 antigen|breast cancer associated gene 1|breast cancer-associated gene 1 protein|hepatocellular carcinoma associated protein|hepatocellular carcinoma-associated protein HCA10|hepatocellular carcinoma-associated protein JCL-1|melanoma-associated antigen D2 20121230 -9606 10917 BTNL3 UNQ744/PRO1472 BTNLR HGNC:1143|MIM:606192|Ensembl:ENSG00000168903|HPRD:08393|Vega:OTTHUMG00000162091 5 5q35.3 butyrophilin-like 3 protein-coding BTNL3 butyrophilin-like 3 O butyrophilin-like protein 3|butyrophilin-like receptor 20121230 -9606 10919 EHMT2 DAAP-66K18.3 BAT8|C6orf30|G9A|GAT8|KMT1C|NG36 HGNC:14129|MIM:604599|Ensembl:ENSG00000204371|HPRD:06854|Vega:OTTHUMG00000031180 6 6p21.31 euchromatic histone-lysine N-methyltransferase 2 protein-coding EHMT2 euchromatic histone-lysine N-methyltransferase 2 O G9A histone methyltransferase|H3-K9-HMTase 3|HLA-B associated transcript 8|HLA-B-associated transcript 8|ankyrin repeat-containing protein|histone H3-K9 methyltransferase 3|histone-lysine N-methyltransferase EHMT2|histone-lysine N-methyltransferase, H3 lysine-9 specific 3|lysine N-methyltransferase 1C|protein G9a 20121230 -9606 10920 COPS8 - COP9|CSN8|SGN8 HGNC:24335|Ensembl:ENSG00000198612|HPRD:16737|Vega:OTTHUMG00000133297 2 2q37.3 COP9 constitutive photomorphogenic homolog subunit 8 (Arabidopsis) protein-coding COPS8 COP9 constitutive photomorphogenic homolog subunit 8 (Arabidopsis) O COP9 homolog|COP9 signalosome complex subunit 8|JAB1-containing signalosome subunit 8|hCOP9|signalosome subunit 8 20121230 -9606 10921 RNPS1 - E5.1 HGNC:10080|MIM:606447|Ensembl:ENSG00000205937|HPRD:07341|Vega:OTTHUMG00000128828 16 16p13.3 RNA binding protein S1, serine-rich domain protein-coding RNPS1 RNA binding protein S1, serine-rich domain O RNA-binding protein S1, serine-rich domain|RNA-binding protein with serine-rich domain 1|SR protein|SR-related protein LDC2 20121230 -9606 10922 FASTK - FAST HGNC:24676|MIM:606965|Ensembl:ENSG00000164896|HPRD:07368|Vega:OTTHUMG00000158694 7 7q35 Fas-activated serine/threonine kinase protein-coding FASTK Fas-activated serine/threonine kinase O FAST kinase|fas-activated serine/threonine kinase 20121230 -9606 10923 SUB1 - P15|PC4|p14 HGNC:19985|MIM:600503|Ensembl:ENSG00000113387|HPRD:02737|Vega:OTTHUMG00000131071 5 5p13.3 SUB1 homolog (S. cerevisiae) protein-coding SUB1 SUB1 homolog (S. cerevisiae) O activated RNA polymerase II transcription cofactor 4|activated RNA polymerase II transcriptional coactivator p15|positive cofactor 4 20121230 -9606 10924 SMPDL3A - ASM3A|ASML3a|yR36GH4.1 HGNC:17389|MIM:610728|Ensembl:ENSG00000172594|HPRD:10244|Vega:OTTHUMG00000015490 6 6q22.31 sphingomyelin phosphodiesterase, acid-like 3A protein-coding SMPDL3A sphingomyelin phosphodiesterase, acid-like 3A O 0610010C24Rik|ASM-like phosphodiesterase 3a|acid sphingomyelinase-like phosphodiesterase 3a 20121230 -9606 10926 DBF4 - ASK|CHIF|DBF4A|ZDBF1 HGNC:17364|MIM:604281|Ensembl:ENSG00000006634|HPRD:10371|Vega:OTTHUMG00000131034 7 7q21.3 DBF4 homolog (S. cerevisiae) protein-coding DBF4 DBF4 homolog (S. cerevisiae) O DBF4-type zinc finger-containing protein 1|activator of S phase kinase|chiffon homolog A|protein DBF4 homolog A|zinc finger, DBF-type containing 1 20121230 -9606 10927 SPIN1 - SPIN HGNC:11243|MIM:609936|Ensembl:ENSG00000106723|HPRD:18096|Vega:OTTHUMG00000020168 9 9q22.1 spindlin 1 protein-coding SPIN1 spindlin 1 O ovarian cancer-related protein|spindlin-1 20121230 -9606 10928 RALBP1 - RIP1|RLIP1|RLIP76 HGNC:9841|MIM:605801|Ensembl:ENSG00000017797|HPRD:09013|Vega:OTTHUMG00000131596 18 18p11.3 ralA binding protein 1 protein-coding RALBP1 ralA binding protein 1 O 76 kDa Ral-interacting protein|DNP-SG ATPase|dinitrophenyl S-glutathione ATPase|ral-interacting protein 1|ralA-binding protein 1 20121230 -9606 10929 SRSF8 - SFRS2B|SRP46 HGNC:16988|MIM:603269|HPRD:04466 11 11q22 serine/arginine-rich splicing factor 8 protein-coding SRSF8 serine/arginine-rich splicing factor 8 O SR splicing factor 8|pre-mRNA-splicing factor SRP46|splicing factor SRp46|splicing factor, arginine/serine-rich 2B|splicing factor, arginine/serine-rich, 46kD 20121230 -9606 10930 APOBEC2 - ARCD1|ARP1 HGNC:605|MIM:604797|Ensembl:ENSG00000124701|HPRD:07268|Vega:OTTHUMG00000014670 6 6p21 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 2 protein-coding APOBEC2 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 2 O apolipoprotein B mRNA editing enzyme, catalytic polypeptide 2|probable C->U-editing enzyme APOBEC-2 20121230 -9606 10933 MORF4L1 FWP006 Eaf3|HsT17725|MEAF3|MORFRG15|MRG15|S863-6 HGNC:16989|MIM:607303|Ensembl:ENSG00000185787|HPRD:09532|Vega:OTTHUMG00000143865 15 15q24 mortality factor 4 like 1 protein-coding MORF4L1 mortality factor 4 like 1 O Esa1p-associated factor 3 homolog|MORF-related gene 15 protein|MORF-related gene on chromosome 15|mortality factor 4-like protein 1|protein MSL3-1|transcription factor-like protein MRG15 20121230 -9606 10934 MORF4 - CSR|CSRB|SEN|SEN1 HGNC:15773|MIM:116960|HPRD:15916 4 4q34.1 mortality factor 4 pseudo MORF4 mortality factor 4 O - 20121230 -9606 10935 PRDX3 - AOP-1|AOP1|HBC189|MER5|PRO1748|SP-22|prx-III HGNC:9354|MIM:604769|Ensembl:ENSG00000165672|HPRD:05305|Vega:OTTHUMG00000019146 10 10q25-q26 peroxiredoxin 3 protein-coding PRDX3 peroxiredoxin 3 O antioxidant protein 1|peroxiredoxin III|peroxiredoxin-3|protein MER5 homolog|thioredoxin-dependent peroxide reductase, mitochondrial 20121230 -9606 10936 GPR75 - GPRchr2|WI31133 HGNC:4526|MIM:606704|Ensembl:ENSG00000119737|HPRD:09462|Vega:OTTHUMG00000129280 2 2p16 G protein-coupled receptor 75 protein-coding GPR75 G protein-coupled receptor 75 O probable G-protein coupled receptor 75 20121230 -9606 10938 EHD1 CDABP0131 H-PAST|HPAST1|PAST|PAST1 HGNC:3242|MIM:605888|Ensembl:ENSG00000110047|HPRD:09325|Vega:OTTHUMG00000066832 11 11q13 EH-domain containing 1 protein-coding EHD1 EH-domain containing 1 O EH domain-containing protein 1|PAST homolog 1|testilin 20121230 -9606 10939 AFG3L2 - SCA28|SPAX5 HGNC:315|MIM:604581|Ensembl:ENSG00000141385|HPRD:05205|Vega:OTTHUMG00000131695 18 18p11 AFG3 ATPase family member 3-like 2 (S. cerevisiae) protein-coding AFG3L2 AFG3 ATPase family member 3-like 2 (S. cerevisiae) O AFG3 ATPase family gene 3-like 2|AFG3-like protein 2|ATPase family gene 3, yeast|paraplegin-like protein 20121230 -9606 10940 POP1 - - HGNC:30129|MIM:602486|Ensembl:ENSG00000104356|HPRD:03923|Vega:OTTHUMG00000164635 8 8q22.1 processing of precursor 1, ribonuclease P/MRP subunit (S. cerevisiae) protein-coding POP1 processing of precursor 1, ribonuclease P/MRP subunit (S. cerevisiae) O hPOP1|processing of precursors 1|ribonucleases P/MRP protein subunit POP1 20121230 -9606 10941 UGT2A1 - - HGNC:12542|MIM:604716|Ensembl:ENSG00000173610|HPRD:05279|Vega:OTTHUMG00000129398 4 4q13 UDP glucuronosyltransferase 2 family, polypeptide A1, complex locus protein-coding UGT2A1 UDP glucuronosyltransferase 2 family, polypeptide A1, complex locus O UDP glycosyltransferase 2 family, polypeptide A1|UDP-glucuronosyltransferase 2A1|UDPGT 2A1 20121230 -9606 10942 PRSS21 UNQ266/PRO303 ESP-1|ESP1|TEST1|TESTISIN HGNC:9485|MIM:608159|Ensembl:ENSG00000007038|HPRD:07082|Vega:OTTHUMG00000128931 16 16p13.3 protease, serine, 21 (testisin) protein-coding PRSS21 protease, serine, 21 (testisin) O eosinophil serine protease 1|serine protease from eosinophils|testisin 20121230 -9606 10943 MSL3 - MSL3L1 HGNC:7370|MIM:300609|Ensembl:ENSG00000005302|HPRD:05344|Vega:OTTHUMG00000021132 X Xp22.3 male-specific lethal 3 homolog (Drosophila) protein-coding MSL3 male-specific lethal 3 homolog (Drosophila) O MSL3-like 1|male-specific lethal 3 homolog|male-specific lethal-3 protein-like 1 20121230 -9606 10944 C11orf58 - IMAGE145052|SMAP HGNC:16990|Ensembl:ENSG00000110696|HPRD:18069|Vega:OTTHUMG00000165910 11 11p15.1 chromosome 11 open reading frame 58 protein-coding C11orf58 chromosome 11 open reading frame 58 O small acidic protein 20121230 -9606 10945 KDELR1 - ERD2|ERD2.1|HDEL|PM23 HGNC:6304|MIM:131235|Ensembl:ENSG00000105438|HPRD:00569 19 19q13.3 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 1 protein-coding KDELR1 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 1 O ER lumen protein retaining receptor 1|KDEL endoplasmic reticulum protein retention receptor 1|KDEL receptor 1|putative MAPK-activating protein PM23 20121230 -9606 10946 SF3A3 - PRP9|PRPF9|SAP61|SF3a60 HGNC:10767|MIM:605596|Ensembl:ENSG00000183431|HPRD:10411|Vega:OTTHUMG00000004438 1 1p34.3 splicing factor 3a, subunit 3, 60kDa protein-coding SF3A3 splicing factor 3a, subunit 3, 60kDa O SAP 61|pre-mRNA splicing factor SF3a (60kD)|spliceosome associated protein 61|spliceosome-associated protein 61|splicing factor 3A subunit 3 20121230 -9606 10947 AP3M2 - AP47B|CLA20|P47B HGNC:570|MIM:610469|Ensembl:ENSG00000070718|HPRD:09801|Vega:OTTHUMG00000164060 8 8p11.2 adaptor-related protein complex 3, mu 2 subunit protein-coding AP3M2 adaptor-related protein complex 3, mu 2 subunit O AP-3 complex subunit mu-2|HA1 47 kDa subunit homolog 2|HA1 47kDA subunit homolog 2|adapter-related protein complex 3 mu-2 subunit|clathrin assembly protein assembly protein complex 1 medium chain homolog 2|clathrin coat assembly protein AP47 homolog 2|clathrin coat-associated protein AP47 homolog 2|clathrin-associated protein AP47 homolog 2|golgi adaptor AP-1 47 kDA protein homolog 2|mu3B-adaptin 20121230 -9606 10948 STARD3 - CAB1|MLN64|es64 HGNC:17579|MIM:607048|Ensembl:ENSG00000131748|HPRD:06132|Vega:OTTHUMG00000133213 17 17q11-q12 StAR-related lipid transfer (START) domain containing 3 protein-coding STARD3 StAR-related lipid transfer (START) domain containing 3 O MLN 64|START domain-containing protein 3|metastatic lymph node gene 64 protein|metastatic lymph node protein 64|stAR-related lipid transfer protein 3|steroidogenic acute regulatory protein related 20121230 -9606 10949 HNRNPA0 - HNRPA0 HGNC:5030|MIM:609409|Ensembl:ENSG00000177733|HPRD:17112|Vega:OTTHUMG00000129156 5 5q31 heterogeneous nuclear ribonucleoprotein A0 protein-coding HNRNPA0 heterogeneous nuclear ribonucleoprotein A0 O hnRNA binding protein|hnRNP A0 20121230 -9606 10950 BTG3 - ANA|TOB5|TOB55|TOFA HGNC:1132|MIM:605674|Ensembl:ENSG00000154640|HPRD:10415|Vega:OTTHUMG00000074501 21 21q21.1 BTG family, member 3 protein-coding BTG3 BTG family, member 3 O B-cell translocation gene 3|abundant in neuroepithelium area protein|protein BTG3|protein Tob5 20121230 -9606 10951 CBX1 - CBX|HP1-BETA|HP1Hs-beta|HP1Hsbeta|M31|MOD1|p25beta HGNC:1551|MIM:604511|Ensembl:ENSG00000108468|HPRD:05149|Vega:OTTHUMG00000150417 17 17q21.32 chromobox homolog 1 protein-coding CBX1 chromobox homolog 1 O HP1 beta homolog|chromobox homolog 1 (HP1 beta homolog Drosophila )|chromobox protein homolog 1|heterochromatin protein 1 homolog beta|heterochromatin protein 1-beta|heterochromatin protein p25 beta|modifier 1 protein 20121230 -9606 10952 SEC61B - - HGNC:16993|MIM:609214|Ensembl:ENSG00000106803|HPRD:06715|Vega:OTTHUMG00000020354 9 9q22.32-q31.3 Sec61 beta subunit protein-coding SEC61B Sec61 beta subunit O Sec61 complex, beta subunit|protein translocation complex beta|protein transport protein SEC61 beta subunit|protein transport protein Sec61 subunit beta 20121230 -9606 10953 TOMM34 - HTOM34P|TOM34|URCC3 HGNC:15746|Ensembl:ENSG00000025772|HPRD:11641|Vega:OTTHUMG00000032552 20 - translocase of outer mitochondrial membrane 34 protein-coding TOMM34 translocase of outer mitochondrial membrane 34 O hTom34|mitochondrial import receptor subunit TOM34|outer mitochondrial membrane translocase (34kD)|translocase of outer membrane 34 kDa subunit 20121230 -9606 10954 PDIA5 - PDIR HGNC:24811|Ensembl:ENSG00000065485|HPRD:08334|Vega:OTTHUMG00000159558 3 3q21.1 protein disulfide isomerase family A, member 5 protein-coding PDIA5 protein disulfide isomerase family A, member 5 O protein disulfide isomerase-associated 5|protein disulfide isomerase-related protein|protein disulfide-isomerase A5 20121230 -9606 10955 SERINC3 RP1-179M20.2 AIGP1|DIFF33|SBBI99|TDE|TDE1|TMS-1 HGNC:11699|MIM:607165|Ensembl:ENSG00000132824|HPRD:06201|Vega:OTTHUMG00000033087 20 20q13.12 serine incorporator 3 protein-coding SERINC3 serine incorporator 3 O placental transmembrane protein (mouse testicular tumor differentially expressed)|transmembrane protein SBBI99|tumor differentially expressed 1|tumor differentially expressed protein 1|tumour differentially expressed 1 20121230 -9606 10956 OS9 - ERLEC2|OS-9 HGNC:16994|MIM:609677|Ensembl:ENSG00000135506|HPRD:17804|Vega:OTTHUMG00000170284 12 12q13 osteosarcoma amplified 9, endoplasmic reticulum lectin protein-coding OS9 osteosarcoma amplified 9, endoplasmic reticulum lectin O amplified in osteosarcoma 9|endoplasmic reticulum lectin 2|erlectin 2|osteosarcoma amplified 9, endoplasmic reticulum associated protein|protein OS-9 20121230 -9606 10957 PNRC1 RP11-63L7.5 B4-2|PNAS-145|PROL2|PRR2 HGNC:17278|MIM:606714|Ensembl:ENSG00000146278|HPRD:08412|Vega:OTTHUMG00000015191 6 6q15 proline-rich nuclear receptor coactivator 1 protein-coding PNRC1 proline-rich nuclear receptor coactivator 1 O proline rich 2 protein|proline-rich polypeptide 2|proline-rich protein 2|proline-rich protein with nuclear targeting signal|protein B4-2 20121230 -9606 10959 TMED2 - P24A|RNP24|p24 HGNC:16996|Ensembl:ENSG00000086598|HPRD:17984|Vega:OTTHUMG00000168694 12 12q24.31 transmembrane emp24 domain trafficking protein 2 protein-coding TMED2 transmembrane emp24 domain trafficking protein 2 O coated vesicle membrane protein|membrane protein p24A|p24 family protein beta-1|p24beta1|transmembrane emp24 domain-containing protein 2 20121230 -9606 10960 LMAN2 - C5orf8|GP36B|VIP36 HGNC:16986|MIM:609551|Ensembl:ENSG00000169223|HPRD:17285|Vega:OTTHUMG00000130860 5 5q35.3 lectin, mannose-binding 2 protein-coding LMAN2 lectin, mannose-binding 2 O glycoprotein GP36b|vesicular integral protein of 36 kDa|vesicular integral-membrane protein 36|vesicular integral-membrane protein VIP36 20121230 -9606 10961 ERP29 - C12orf8|ERp28|ERp31|PDI-DB|PDIA9 HGNC:13799|MIM:602287|Ensembl:ENSG00000089248|HPRD:03794|Vega:OTTHUMG00000169637 12 12q24.13 endoplasmic reticulum protein 29 protein-coding ERP29 endoplasmic reticulum protein 29 O endoplasmic reticulum lumenal protein ERp28|endoplasmic reticulum resident protein 28|endoplasmic reticulum resident protein 29|endoplasmic reticulum resident protein 31|protein disulfide isomerase family A, member 9 20121230 -9606 10962 MLLT11 - AF1Q|RP11-316M1.10 HGNC:16997|MIM:604684|Ensembl:ENSG00000213190|HPRD:05251|Vega:OTTHUMG00000035160 1 1q21 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 11 protein-coding MLLT11 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 11 O ALL1 fused gene from chromosome 1q|ALL1-fused gene from chromosome 1q|protein AF1q 20121230 -9606 10963 STIP1 - HOP|IEF-SSP-3521|P60|STI1|STI1L HGNC:11387|MIM:605063|Ensembl:ENSG00000168439|HPRD:05454|Vega:OTTHUMG00000167789 11 11q13 stress-induced-phosphoprotein 1 protein-coding STIP1 stress-induced-phosphoprotein 1 O Hsp70/Hsp90-organizing protein|NY-REN-11 antigen|hsc70/Hsp90-organizing protein|renal carcinoma antigen NY-REN-11|transformation-sensitive protein IEF SSP 3521 20121230 -9606 10964 IFI44L GS3686 C1orf29 HGNC:17817|MIM:613975|Ensembl:ENSG00000137959|HPRD:13728|Vega:OTTHUMG00000009724 1 1p31.1 interferon-induced protein 44-like protein-coding IFI44L interferon-induced protein 44-like O - 20121230 -9606 10965 ACOT2 - CTE-IA|CTE1A|MTE1|PTE2|PTE2A|ZAP128 HGNC:18431|MIM:609972|Ensembl:ENSG00000119673|HPRD:10173|Vega:OTTHUMG00000171608 14 14q24.3 acyl-CoA thioesterase 2 protein-coding ACOT2 acyl-CoA thioesterase 2 O acyl-coenzyme A thioester hydrolase 2a|acyl-coenzyme A thioesterase 2, mitochondrial|long-chain acyl-CoA thioesterase 2|mitochondrial acyl-CoA thioesterase 1|peroxisomal long-chain acyl-coA thioesterase 2 20121230 -9606 10966 RAB40B - RAR|SEC4L HGNC:18284|Ensembl:ENSG00000141542|HPRD:11472|Vega:OTTHUMG00000177806 17 17q25.3 RAB40B, member RAS oncogene family protein-coding RAB40B RAB40B, member RAS oncogene family O GTP-binding protein homologous to Saccharomyces cerevisiae SEC4|SOCS box-containing protein RAR|protein Rar|ras-related protein Rab-40B 20121230 -9606 10969 EBNA1BP2 RP5-1034F7.2 EBP2|NOBP|P40 HGNC:15531|MIM:614443|Ensembl:ENSG00000117395|HPRD:16849|Vega:OTTHUMG00000007284 1 1p35-p33 EBNA1 binding protein 2 protein-coding EBNA1BP2 EBNA1 binding protein 2 O EBNA1-binding protein 2|nuclear FGF3 binding protein|nucleolar protein p40|nucleolar protein p40; homolog of yeast EBNA1-binding protein|probable rRNA-processing protein EBP2 20121230 -9606 10970 CKAP4 - CLIMP-63|ERGIC-63|p63 HGNC:16991|Ensembl:ENSG00000136026|HPRD:16717|Vega:OTTHUMG00000170085 12 12q23.3 cytoskeleton-associated protein 4 protein-coding CKAP4 cytoskeleton-associated protein 4 O 63 kDa membrane protein|63-kDa cytoskeleton-linking membrane protein|transmembrane protein (63kD), endoplasmic reticulum/Golgi intermediate compartment|type-II transmembrane protein p63 20121230 -9606 10971 YWHAQ - 14-3-3|1C5|HS1 HGNC:12854|MIM:609009|Ensembl:ENSG00000134308|HPRD:00886|Vega:OTTHUMG00000013848 2 2p25.1 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, theta polypeptide protein-coding YWHAQ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, theta polypeptide O 14-3-3 protein T-cell|14-3-3 protein tau|14-3-3 protein theta|protein tau 20121230 -9606 10972 TMED10 - P24(DELTA)|S31I125|S31III125|TMP21|Tmp-21-I|p23 HGNC:16998|MIM:605406|Ensembl:ENSG00000170348|HPRD:12013|Vega:OTTHUMG00000171771 14 14q24.3 transmembrane emp24-like trafficking protein 10 (yeast) protein-coding TMED10 transmembrane emp24-like trafficking protein 10 (yeast) O 21 kDa transmembrane trafficking protein|21 kDa transmembrane-trafficking protein|p24 family protein delta-1|p24delta|p24delta1|transmembrane emp24 domain-containing protein 10|transmembrane protein Tmp21 20121230 -9606 10973 ASCC3 RP1-121G13.4 ASC1p200|DJ467N11.1|HELIC1|RNAH|dJ121G13.4|p200 HGNC:18697|MIM:614217|Ensembl:ENSG00000112249|HPRD:09980|HPRD:16805|Vega:OTTHUMG00000015279 6 6q16 activating signal cointegrator 1 complex subunit 3 protein-coding ASCC3 activating signal cointegrator 1 complex subunit 3 O ASC-1 complex subunit P200|B630009I04Rik|RNA helicase family|helicase, ATP binding 1|trip4 complex subunit p200 20121230 -9606 10974 C10orf116 RP11-96C23.4 APM2|apM-2 HGNC:24043|Ensembl:ENSG00000148671|HPRD:16575|Vega:OTTHUMG00000018668 10 10q23.2 chromosome 10 open reading frame 116 protein-coding C10orf116 chromosome 10 open reading frame 116 O adipose most abundant gene transcript 2 protein|adipose specific 2 20121230 -9606 10975 UQCR11 - 0710008D09Rik|QCR10|UQCR HGNC:30862|MIM:609711|Ensembl:ENSG00000127540|Ensembl:ENSG00000267059|HPRD:15628|Vega:OTTHUMG00000180084 19 19p13.3 ubiquinol-cytochrome c reductase, complex III subunit XI protein-coding UQCR11 ubiquinol-cytochrome c reductase, complex III subunit XI O complex III subunit 10|complex III subunit XI|cytochrome b-c1 complex subunit 10|ubiquinol cytochrome c reductase, 6.4kDa subunit|ubiquinol-cytochrome c reductase complex 6.4 kDa protein|ubiquinol-cytochrome c reductase, 6.4kDa subunit 20121230 -9606 10978 CLP1 - HEAB|hClp1 HGNC:16999|MIM:608757|Ensembl:ENSG00000172409|HPRD:16382|Vega:OTTHUMG00000167146 11 11q12 cleavage and polyadenylation factor I subunit 1 protein-coding CLP1 cleavage and polyadenylation factor I subunit 1 O ATP/GTP-binding protein|CLP1, cleavage and polyadenylation factor I subunit, homolog|homolog of yeast CFIA subunit Clp1p|polynucleotide kinase Clp1|polyribonucleotide 5'-hydroxyl-kinase Clp1|pre-mRNA cleavage complex II protein Clp1 20121230 -9606 10979 FERMT2 - KIND2|MIG2|PLEKHC1|UNC112|UNC112B|mig-2 HGNC:15767|MIM:607746|Ensembl:ENSG00000073712|HPRD:06374|Vega:OTTHUMG00000140309 14 14q22.1 fermitin family member 2 protein-coding FERMT2 fermitin family member 2 O PH domain-containing family C member 1|fermitin family homolog 2|kindlin 2|kindlin-2|mitogen inducible gene 2 protein|mitogen-inducible gene 2 protein|pleckstrin homology domain containing, family C (with FERM domain) member 1|pleckstrin homology domain containing, family C member 1|pleckstrin homology domain-containing family C member 1 20121230 -9606 10980 COPS6 - CSN6|MOV34-34KD HGNC:21749|MIM:614729|Ensembl:ENSG00000168090|HPRD:16735|Vega:OTTHUMG00000154632 7 7q22.1 COP9 constitutive photomorphogenic homolog subunit 6 (Arabidopsis) protein-coding COPS6 COP9 constitutive photomorphogenic homolog subunit 6 (Arabidopsis) O COP9 signalosome complex subunit 6|COP9 subunit 6 (MOV34 homolog, 34 kD)|H_NH0506M12.12|JAB1-containing signalosome subunit 6|MOV34 homolog, 34 kD|SGN6|hVIP|signalosome subunit 6|vpr-interacting protein 20121230 -9606 10981 RAB32 - - HGNC:9772|MIM:612906|Ensembl:ENSG00000118508|HPRD:06700|Vega:OTTHUMG00000015755 6 6q24.3 RAB32, member RAS oncogene family protein-coding RAB32 RAB32, member RAS oncogene family O ras-related protein Rab-32 20121230 -9606 10982 MAPRE2 - EB1|EB2|RP1 HGNC:6891|MIM:605789|Ensembl:ENSG00000166974|HPRD:16157|Vega:OTTHUMG00000132551 18 18q12.1 microtubule-associated protein, RP/EB family, member 2 protein-coding MAPRE2 microtubule-associated protein, RP/EB family, member 2 O APC-binding protein EB1|APC-binding protein EB2|T-cell activation protein, EB1 family|end-binding protein 2|microtubule-associated protein RP/EB family member 2 20121230 -9606 10983 CCNI - CYC1|CYI HGNC:1595|Ensembl:ENSG00000118816|HPRD:16690|Vega:OTTHUMG00000130106 4 4q21.1 cyclin I protein-coding CCNI cyclin I O cyclin ITI|cyclin-I 20121230 -9606 10984 KCNQ1OT1 - KCNQ1-AS2|KCNQ10T1|KvDMR1|KvLQT1-AS|LIT1|NCRNA00012 HGNC:6295|MIM:604115 11 11p15 KCNQ1 opposite strand/antisense transcript 1 (non-protein coding) miscRNA KCNQ1OT1 KCNQ1 opposite strand/antisense transcript 1 (non-protein coding) O - 20121230 -9606 10985 GCN1L1 - GCN1|GCN1L|PRIC295 HGNC:4199|MIM:605614|Ensembl:ENSG00000089154|HPRD:16127|Vega:OTTHUMG00000169338 12 12q24.2 GCN1 general control of amino-acid synthesis 1-like 1 (yeast) protein-coding GCN1L1 GCN1 general control of amino-acid synthesis 1-like 1 (yeast) O GCN1 (general control of amino-acid synthesis 1, yeast)-like 1|GCN1-like protein 1|hsGCN1|peroxisome proliferator activated receptor interacting complex protein|translational activator GCN1 20121230 -9606 10986 IGAD1 - - HGNC:5459|MIM:137100 6 6p21.3 immunoglobulin A (IgA) deficiency susceptibility 1 unknown IGAD1 immunoglobulin A (IgA) deficiency susceptibility 1 O - 20120622 -9606 10987 COPS5 - CSN5|JAB1|MOV-34|SGN5 HGNC:2240|MIM:604850|Ensembl:ENSG00000121022|HPRD:06888|Vega:OTTHUMG00000164563 8 8q13.1 COP9 constitutive photomorphogenic homolog subunit 5 (Arabidopsis) protein-coding COPS5 COP9 constitutive photomorphogenic homolog subunit 5 (Arabidopsis) O 38 kDa Mov34 homolog|COP9 signalosome complex subunit 5|jun activation domain-binding protein 1|signalosome subunit 5 20121230 -9606 10988 METAP2 - MAP2|MNPEP|p67|p67eIF2 HGNC:16672|MIM:601870|Ensembl:ENSG00000111142|HPRD:03522|Vega:OTTHUMG00000170280 12 12q22 methionyl aminopeptidase 2 protein-coding METAP2 methionyl aminopeptidase 2 O MAP 2|eIF-2-associated p67 homolog|initiation factor 2-associated 67 kDa glycoprotein|metAP 2|methionine aminopeptidase 2|peptidase M 2 20121230 -9606 10989 IMMT PIG4 HMP|MINOS2|P87|P87/89|P89|PIG52 HGNC:6047|MIM:600378|Ensembl:ENSG00000132305|HPRD:02658|Vega:OTTHUMG00000153170 2 2p11.2|2 inner membrane protein, mitochondrial protein-coding IMMT inner membrane protein, mitochondrial O cell proliferation-inducing gene 4/52 protein|cell proliferation-inducing protein 52|mitochondrial inner membrane organizing system 2|mitochondrial inner membrane protein|mitofilin|motor protein|proliferation-inducing gene 4 20121230 -9606 10990 LILRB5 XXbac-BCX105G6.10-005 CD85C|LIR-8|LIR8 HGNC:6609|MIM:604814|Ensembl:ENSG00000105609|HPRD:11993|Vega:OTTHUMG00000066636 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 5 protein-coding LILRB5 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 5 O CD85 antigen-like family member C|leukocyte immunoglobulin-like receptor 8|leukocyte immunoglobulin-like receptor subfamily B member 5 20121230 -9606 10991 SLC38A3 - G17|NAT1|SN1 HGNC:18044|MIM:604437|HPRD:11980 3 3p21.3 solute carrier family 38, member 3 protein-coding SLC38A3 solute carrier family 38, member 3 O N-system amino acid transporter 1|Na(+)-coupled neutral amino acid transporter 3|sodium-coupled neutral amino acid transporter 3|system N amino acid transporter 1|system N1 Na+ and H+-coupled glutamine transporter 20121230 -9606 10992 SF3B2 - Cus1|SAP145|SF3B145|SF3b1|SF3b150 HGNC:10769|MIM:605591|Ensembl:ENSG00000087365|HPRD:10410|Vega:OTTHUMG00000166751 11 11q13.1 splicing factor 3b, subunit 2, 145kDa protein-coding SF3B2 splicing factor 3b, subunit 2, 145kDa O SAP 145|pre-mRNA splicing factor SF3b 145 kDa subunit|pre-mRNA-splicing factor SF3b 145 kDa subunit|spliceosome associated protein 145|spliceosome-associated protein 145|splicing factor 3B subunit 2 20121230 -9606 10993 SDS - SDH HGNC:10691|MIM:182128|Ensembl:ENSG00000135094|HPRD:01633|Vega:OTTHUMG00000169554 12 12q24.13 serine dehydratase protein-coding SDS serine dehydratase O L-serine ammonia-lyase|L-serine deaminase|L-serine dehydratase|L-serine dehydratase/L-threonine deaminase|L-threonine dehydratase|TDH 20121230 -9606 10994 ILVBL - 209L8|AHAS|ILV2H HGNC:6041|MIM:605770|Ensembl:ENSG00000105135|HPRD:16152|Vega:OTTHUMG00000165630 19 19p13.1 ilvB (bacterial acetolactate synthase)-like protein-coding ILVBL ilvB (bacterial acetolactate synthase)-like O acetolactate synthase homolog|acetolactate synthase-like protein|ilvB-like protein 20121230 -9606 10998 SLC27A5 - ACSB|ACSVL6|BACS|BAL|FACVL3|FATP-5|FATP5|VLACSR|VLCS-H2|VLCSH2 HGNC:10999|MIM:603314|Ensembl:ENSG00000083807|HPRD:04499 19 19q13.43 solute carrier family 27 (fatty acid transporter), member 5 protein-coding SLC27A5 solute carrier family 27 (fatty acid transporter), member 5 O BA-CoA ligase|VLACS-related|bile acid-CoA ligase|bile acyl-CoA synthetase|cholate--CoA ligase|fatty acid transport protein 5|fatty-acid-Coenzyme A ligase, very long-chain 3|solute carrier family 27 member 5|very long-chain acyl-CoA synthetase homolog 2|very long-chain acyl-CoA synthetase-related protein 20121230 -9606 10999 SLC27A4 RP11-339B21.7 ACSVL4|FATP4|IPS HGNC:10998|MIM:604194|Ensembl:ENSG00000167114|HPRD:09172|Vega:OTTHUMG00000020746 9 9q34.11 solute carrier family 27 (fatty acid transporter), member 4 protein-coding SLC27A4 solute carrier family 27 (fatty acid transporter), member 4 O long-chain fatty acid transport protein 4 20121230 -9606 11000 SLC27A3 PSEC0067 ACSVL3|FATP3|VLCS-3 HGNC:10997|MIM:604193|Ensembl:ENSG00000143554|HPRD:11967|Vega:OTTHUMG00000037155 1 1q21.3 solute carrier family 27 (fatty acid transporter), member 3 protein-coding SLC27A3 solute carrier family 27 (fatty acid transporter), member 3 O FATP-3|fatty acid transport protein 3|long-chain fatty acid transport protein 3|solute carrier family 27 member 3|very long-chain acyl-CoA synthetase homolog 3 20121230 -9606 11001 SLC27A2 - ACSVL1|FACVL1|FATP2|HsT17226|VLACS|VLCS|hFACVL1 HGNC:10996|MIM:603247|Ensembl:ENSG00000140284|HPRD:11935|Vega:OTTHUMG00000131643 15 15q21.2 solute carrier family 27 (fatty acid transporter), member 2 protein-coding SLC27A2 solute carrier family 27 (fatty acid transporter), member 2 O FATP-2|THCA-CoA ligase|fatty acid transport protein 2|fatty-acid-coenzyme A ligase, very long-chain 1|long-chain-fatty-acid--CoA ligase|solute carrier family 27 member 2|very long-chain acyl-CoA synthetase|very long-chain fatty-acid-coenzyme A ligase 1|very long-chain-fatty-acid-CoA ligase|very-long-chain acyl-CoA synthetase 20121230 -9606 11004 KIF2C RP11-269F19.1 KNSL6|MCAK HGNC:6393|MIM:604538|Ensembl:ENSG00000142945|HPRD:05172|Vega:OTTHUMG00000008416 1 1p34.1 kinesin family member 2C protein-coding KIF2C kinesin family member 2C O kinesin-like 6|kinesin-like protein 6|kinesin-like protein KIF2C|mitotic centromere-associated kinesin 20121230 -9606 11005 SPINK5 - LEKTI|LETKI|NETS|NS|VAKTI HGNC:15464|MIM:605010|Ensembl:ENSG00000133710|HPRD:05423|Vega:OTTHUMG00000134305 5 5q32 serine peptidase inhibitor, Kazal type 5 protein-coding SPINK5 serine peptidase inhibitor, Kazal type 5 O lympho-epithelial Kazal-type-related inhibitor|lymphoepithelial Kazal-type-related inhibitor|serine protease inhibitor Kazal-type 5|serine protease inhibitor, Kazal type 5 20121230 -9606 11006 LILRB4 XXbac-BCX360G3.3 CD85K|HM18|ILT3|LILRB5|LIR-5|LIR5 HGNC:6608|MIM:604821|Ensembl:ENSG00000186818|HPRD:11996|Vega:OTTHUMG00000065879 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 4 protein-coding LILRB4 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 4 O CD85 antigen-like family member K|ILT-3|immunoglobulin-like transcript 3|leukocyte immunoglobulin-like receptor 5|leukocyte immunoglobulin-like receptor subfamily B member 4|leukocyte immunoglobulin-like receptor subfamily B member 4 soluble isoform|leukocyte immunoglobulin-like receptor, subfamily B, member 4|monocyte inhibitory receptor HM18 20121230 -9606 11007 CCDC85B - DIPA HGNC:24926|MIM:605360|Ensembl:ENSG00000175602|HPRD:16101|Vega:OTTHUMG00000166722 11 11q12.1 coiled-coil domain containing 85B protein-coding CCDC85B coiled-coil domain containing 85B O coiled-coil domain-containing protein 85B|delta-interacting protein A|hepatitis delta antigen interacting protein A|hepatitis delta antigen-interacting protein A 20121230 -9606 11009 IL24 - C49A|FISP|IL10B|MDA7|MOB5|ST16 HGNC:11346|MIM:604136|Ensembl:ENSG00000162892|HPRD:04995|Vega:OTTHUMG00000036459 1 1q32 interleukin 24 protein-coding IL24 interleukin 24 O IL-4-induced secreted protein|interleukin-24|melanocyte-associated Mda-7|melanoma differentiation-associated gene 7 protein|suppression of tumorigenicity 16 (melanoma differentiation) 20121230 -9606 11010 GLIPR1 - CRISP7|GLIPR|RTVP1 HGNC:17001|MIM:602692|Ensembl:ENSG00000139278|HPRD:04071|Vega:OTTHUMG00000169757 12 12q21.2 GLI pathogenesis-related 1 protein-coding GLIPR1 GLI pathogenesis-related 1 O GLI pathogenesis-related 1 (glioma)|gliPR 1|glioma pathogenesis-related protein 1|protein RTVP-1|related to testis-specific, vespid, and pathogenesis proteins 1|testes-specific vespid and pathogenesis protein 1 20121230 -9606 11011 TLK2 - HsHPK|PKU-ALPHA HGNC:11842|MIM:608439|Ensembl:ENSG00000146872|HPRD:10527|Vega:OTTHUMG00000179176 17 17q23 tousled-like kinase 2 protein-coding TLK2 tousled-like kinase 2 O serine/threonine kinase|serine/threonine-protein kinase tousled-like 2 20121230 -9606 11012 KLK11 UNQ649/PRO1279 PRSS20|TLSP HGNC:6359|MIM:604434|Ensembl:ENSG00000167757|HPRD:05114 19 19q13.33 kallikrein-related peptidase 11 protein-coding KLK11 kallikrein-related peptidase 11 O hK11|hippostasin|kallikrein 11|kallikrein-11|serine protease 20|trypsin-like protease 20121230 -9606 11013 TMSB15A - TMSB15|TMSB15B|TMSL8|TMSNB|Tb15|TbNB HGNC:30744|MIM:601587|Ensembl:ENSG00000158164|HPRD:06744|Vega:OTTHUMG00000022054 X Xq21.33-q22.3 thymosin beta 15a protein-coding TMSB15A thymosin beta 15a O NB thymosin beta|Thymosin beta-15B|thymosin beta-15A|thymosin, beta, identified in neuroblastoma cells|thymosin-like 8|thymosin-like protein 8 20121230 -9606 11014 KDELR2 tcag7.840 ELP-1|ERD2.2 HGNC:6305|MIM:609024|Ensembl:ENSG00000136240|HPRD:06598|Vega:OTTHUMG00000023103 7 7p22.1 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 2 protein-coding KDELR2 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 2 O (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 2|ER lumen protein retaining receptor 2|ERD-2-like protein|ERD2-like protein 1|KDEL endoplasmic reticulum protein retention receptor 2|KDEL receptor 2 20121230 -9606 11015 KDELR3 RP3-434P1.3 ERD2L3 HGNC:6306|Ensembl:ENSG00000100196|HPRD:17177|Vega:OTTHUMG00000153520 22 22q13.1 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 3 protein-coding KDELR3 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 3 O ER lumen protein retaining receptor 3|KDEL endoplasmic reticulum protein retention receptor 3|KDEL receptor 3 20121230 -9606 11016 ATF7 - ATFA HGNC:792|MIM:606371|Ensembl:ENSG00000170653|Ensembl:ENSG00000267281|HPRD:06968|Vega:OTTHUMG00000169776|Vega:OTTHUMG00000182349 12 12q13 activating transcription factor 7 protein-coding ATF7 activating transcription factor 7 O cyclic AMP-dependent transcription factor ATF-7|transcription factor ATF-A 20121230 -9606 11017 SNRNP27 - 27K|RY1 HGNC:30240|Ensembl:ENSG00000124380|HPRD:15288|Vega:OTTHUMG00000152689 2 2p13.3 small nuclear ribonucleoprotein 27kDa (U4/U6.U5) protein-coding SNRNP27 small nuclear ribonucleoprotein 27kDa (U4/U6.U5) O U4/U6.U5 small nuclear ribonucleoprotein 27 kDa protein|U4/U6.U5 tri-snRNP-associated 27 kDa protein|U4/U6.U5 tri-snRNP-associated protein 3|U4/U6.U5-27K|putative nucleic acid binding protein RY-1 20121230 -9606 11018 TMED1 - IL1RL1LG|Il1rl1l|ST2L|Tp24 HGNC:17291|MIM:605395|Ensembl:ENSG00000099203|HPRD:05653|Vega:OTTHUMG00000180696 19 19p13.2 transmembrane emp24 protein transport domain containing 1 protein-coding TMED1 transmembrane emp24 protein transport domain containing 1 O IL1RL1-binding protein|T1/ST2 receptor binding protein|interleukin 1 receptor-like 1 ligand|interleukin-1 receptor-like 1 ligand|p24 family protein gamma-1|p24gamma1|putative T1/ST2 receptor-binding protein|transmembrane emp24 domain containing 1|transmembrane emp24 domain-containing protein 1 20121230 -9606 11019 LIAS HUSSY-01 LAS|LIP1|LS|PDHLD HGNC:16429|MIM:607031|Ensembl:ENSG00000121897|HPRD:09514|Vega:OTTHUMG00000099369 4 4p14 lipoic acid synthetase protein-coding LIAS lipoic acid synthetase O lip-syn|lipoate synthase|lipoyl synthase, mitochondrial 20121230 -9606 11020 IFT27 LL22NC01-132D12.2 RABL4|RAYL HGNC:18626|Ensembl:ENSG00000100360|Vega:OTTHUMG00000150544 22 22q13.1 intraflagellar transport 27 homolog (Chlamydomonas) protein-coding IFT27 intraflagellar transport 27 homolog (Chlamydomonas) O RAB, member of RAS oncogene family-like 4|intraflagellar transport protein 27 homolog|rab-like protein 4 20121230 -9606 11021 RAB35 - H-ray|RAB1C|RAY HGNC:9774|MIM:604199|Ensembl:ENSG00000111737|HPRD:05010|Vega:OTTHUMG00000169159 12 12q24.31 RAB35, member RAS oncogene family protein-coding RAB35 RAB35, member RAS oncogene family O GTP-binding protein RAY|ras-related protein Rab-35|ras-related protein rab-1c (GTP-binding protein ray) 20121230 -9606 11022 TDRKH RP11-98D18.8 TDRD2 HGNC:11713|MIM:609501|Ensembl:ENSG00000182134|HPRD:15485|Vega:OTTHUMG00000013062 1 1q21 tudor and KH domain containing protein-coding TDRKH tudor and KH domain containing O putative RNA binding protein|tudor and KH domain containing protein|tudor and KH domain-containing protein|tudor domain containing 2|tudor domain-containing protein 2 20121230 -9606 11023 VAX1 RP11-501J20.1 MCOPS11 HGNC:12660|MIM:604294|Ensembl:ENSG00000148704|HPRD:16052|Vega:OTTHUMG00000019117 10 10q26.1 ventral anterior homeobox 1 protein-coding VAX1 ventral anterior homeobox 1 O - 20121230 -9606 11024 LILRA1 XXbac-BCX85G21.3 CD85I|LIR-6|LIR6 HGNC:6602|MIM:604810|Ensembl:ENSG00000104974|HPRD:07272|Vega:OTTHUMG00000065701 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 1 protein-coding LILRA1 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 1 O CD85 antigen-like family member I|leukocyte immunoglobulin-like receptor 6|leukocyte immunoglobulin-like receptor subfamily A member 1|leukocyte immunoglobulin-like receptor subfamily A member 1 soluble isoform 20121230 -9606 11025 LILRB3 XXbac-BCX105G6.7 CD85A|HL9|ILT-5|ILT5|LILRA6|LIR-3|LIR3|PIRB HGNC:6607|MIM:604820|Ensembl:ENSG00000204577|HPRD:11995|Vega:OTTHUMG00000066626 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 3 protein-coding LILRB3 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 3 O CD85 antigen-like family member A|immunoglobulin-like transcript 5|leukocyte immunoglobulin-like receptor 3|leukocyte immunoglobulin-like receptor subfamily B member 3|leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6|monocyte inhibitory receptor HL9 20121230 -9606 11026 LILRA3 XXbac-BCX403H19.1 CD85E|HM31|HM43|ILT6|LIR-4|LIR4|e3 HGNC:6604|MIM:604818|Ensembl:ENSG00000170866|HPRD:10382|Vega:OTTHUMG00000065358 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily A (without TM domain), member 3 protein-coding LILRA3 leukocyte immunoglobulin-like receptor, subfamily A (without TM domain), member 3 O CD85 antigen-like family member E|ILT-6|immunoglobulin-like transcript 6|leucocyte immunoglobulin-like receptor|leukocyte immunoglobulin-like receptor 4|leukocyte immunoglobulin-like receptor A3|leukocyte immunoglobulin-like receptor subfamily A member 3|monocyte inhibitory receptor HM43/HM31 20121230 -9606 11027 LILRA2 XXbac-BCX85G21.2 CD85H|ILT1|LIR-7|LIR7 HGNC:6603|MIM:604812|Ensembl:ENSG00000239998|HPRD:11992|Vega:OTTHUMG00000065703 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 2 protein-coding LILRA2 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 2 O CD85 antigen-like family member H|ILT-1|immunoglobulin-like transcript 1|leukocyte immunoglobulin-like receptor 7|leukocyte immunoglobulin-like receptor subfamily A member 2|leukocyte immunoglobulin-like receptor subfamily A member 2 soluble 20121230 -9606 11029 SERPINB8P1 - PI8L1|SERPINB11|SERPINBP1 HGNC:8953 6 6p25 serpin peptidase inhibitor, clade B8 (ovalbumin) pseudogene 1 pseudo SERPINB8P1 serpin peptidase inhibitor, clade B8 (ovalbumin) pseudogene 1 O - 20121230 -9606 11030 RBPMS - HERMES HGNC:19097|MIM:601558|Ensembl:ENSG00000157110|HPRD:11870|Vega:OTTHUMG00000163845 8 8p12 RNA binding protein with multiple splicing protein-coding RBPMS RNA binding protein with multiple splicing O RBP-MS|RNA-binding protein with multiple splicing|heart and RRM expressed sequence 20121230 -9606 11031 RAB31 - Rab22B HGNC:9771|MIM:605694|Ensembl:ENSG00000168461|HPRD:05751|Vega:OTTHUMG00000178513 18 18p11.3 RAB31, member RAS oncogene family protein-coding RAB31 RAB31, member RAS oncogene family O ras-related protein Rab-22B|ras-related protein Rab-31 20121230 -9606 11033 ADAP1 - CENTA1|GCS1L|p42IP4 HGNC:16486|MIM:608114|Ensembl:ENSG00000105963|HPRD:09733|Vega:OTTHUMG00000023380 7 7p22.3 ArfGAP with dual PH domains 1 protein-coding ADAP1 ArfGAP with dual PH domains 1 O arf-GAP with dual PH domain-containing protein 1|centaurin, alpha 1|centaurin-alpha|centaurin-alpha-1|cnt-a1|putative MAPK-activating protein PM25 20121230 -9606 11034 DSTN - ACTDP|ADF|bA462D18.2 HGNC:15750|MIM:609114|Ensembl:ENSG00000125868|HPRD:16446|Vega:OTTHUMG00000031947 20 20p12.1 destrin (actin depolymerizing factor) protein-coding DSTN destrin (actin depolymerizing factor) O actin-depolymerizing factor|bA462D18.2 (destrin (actin depolymerizing factor ADF) (ACTDP))|destrin 20121230 -9606 11035 RIPK3 - RIP3 HGNC:10021|MIM:605817|Ensembl:ENSG00000129465|HPRD:09315|Vega:OTTHUMG00000029349 14 14q11.2 receptor-interacting serine-threonine kinase 3 protein-coding RIPK3 receptor-interacting serine-threonine kinase 3 O RIP-3|RIP-like protein kinase 3|receptor interacting protein 3|receptor-interacting protein 3|receptor-interacting serine/threonine-protein kinase 3 20121230 -9606 11036 GTF2A1L - ALF HGNC:30727|MIM:605358|Ensembl:ENSG00000242441|HPRD:05640|Vega:OTTHUMG00000152038 2 2p16.3 general transcription factor IIA, 1-like protein-coding GTF2A1L general transcription factor IIA, 1-like O GTF2A1-like factor|TFIIA large subunit isoform ALF|TFIIA-alpha and beta-like factor|TFIIA-alpha/beta-like factor|general transcription factor II A, 1-like factor 20121230 -9606 11037 STON1 - SALF|SBLF|STN1|STNB1 HGNC:17003|MIM:605357|Ensembl:ENSG00000243244|HPRD:16100|Vega:OTTHUMG00000129169 2 2p16.3 stonin 1 protein-coding STON1 stonin 1 O stoned B homolog 1|stoned B-like factor|stoned-b1|stonin-1 20121230 -9606 11039 SMA4 - SMA3|b55C20.2 HPRD:15404 5 5q13.2 glucuronidase, beta pseudogene pseudo - - - - 20121230 -9606 11040 PIM2 - - HGNC:8987|MIM:300295|Ensembl:ENSG00000102096|HPRD:02244|Vega:OTTHUMG00000024132 X Xp11.23 pim-2 oncogene protein-coding PIM2 pim-2 oncogene O pim-2h|proto-oncogene Pim-2 (serine threonine kinase)|serine/threonine protein kinase pim-2|serine/threonine-protein kinase pim-2 20121230 -9606 11041 B3GNT1 - B3GN-T1|B3GNT6|BETA3GNTI|iGAT|iGNT HGNC:15685|MIM:605517|Ensembl:ENSG00000174684|HPRD:09270|Vega:OTTHUMG00000167082 11 11q13.2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 1 protein-coding B3GNT1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 1 O N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase|UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6|beta-1,3-N-acetylglucosaminyltransferase bGnT-6|i-beta-1,3-N-acetylglucosaminyltransferase|poly-N-acetyllactosamine extension enzyme 20121230 -9606 11042 SMA5 - - HPRD:18067 5 5q13 glucuronidase, beta pseudogene pseudo - - - - 20121209 -9606 11043 MID2 RP6-191P20.2 FXY2|RNF60|TRIM1 HGNC:7096|MIM:300204|Ensembl:ENSG00000080561|HPRD:02191|Vega:OTTHUMG00000022171 X Xq22.3 midline 2 protein-coding MID2 midline 2 O RING finger protein 60|midin 2|midin-2|midline defect 2|midline-2|probable E3 ubiquitin-protein ligase MID2|tripartite motif protein 1|tripartite motif-containing protein 1 20121230 -9606 11044 PAPD7 - LAK-1|LAK1|POLK|POLS|TRF4|TRF4-1|TRF41|TUTASE5 HGNC:16705|MIM:605198|Ensembl:ENSG00000112941|HPRD:09239|Vega:OTTHUMG00000090457 5 5p15 PAP associated domain containing 7 protein-coding PAPD7 PAP associated domain containing 7 O DNA polymerase kappa|DNA polymerase sigma|PAP-associated domain-containing protein 7|TUTase 5|polymerase (DNA directed) sigma|polymerase (DNA-directed) sigma|terminal uridylyltransferase 5|topoisomerase-related function protein 4-1 20121230 -9606 11045 UPK1A - TSPAN21|UP1A|UPIA|UPKA HGNC:12577|MIM:611557|Ensembl:ENSG00000105668|HPRD:15624|Vega:OTTHUMG00000048115 19 19q13.13 uroplakin 1A protein-coding UPK1A uroplakin 1A O tetraspanin-21|tspan-21|uroplakin Ia|uroplakin-1a 20121230 -9606 11046 SLC35D2 RP11-240L7.2 HFRC1|SQV7L|UGTrel8|hfrc HGNC:20799|MIM:609182|Ensembl:ENSG00000130958|HPRD:16456|Vega:OTTHUMG00000020293 9 9q22.32 solute carrier family 35, member D2 protein-coding SLC35D2 solute carrier family 35, member D2 O SQV7-like protein|UDP-N-acetylglucosamine transporter|UDP-N-acetylglucosamine/UDP-glucose/GDP-mannose transporter|UDP-galactose transporter-related protein 8|fringe connection|homolog of Fringe connection protein 1 20121230 -9606 11047 ADRM1 - ARM1|GP110|Rpn13 HGNC:15759|MIM:610650|Ensembl:ENSG00000130706|HPRD:06440|Vega:OTTHUMG00000032904 20 20q13.33 adhesion regulating molecule 1 protein-coding ADRM1 adhesion regulating molecule 1 O 110 kDa cell membrane glycoprotein|ARM-1|M(r) 110,000 surface antigen|adhesion-regulating molecule 1|hRpn13|proteasomal ubiquitin receptor ADRM1|proteasome regulatory particle non-ATPase 13|regulatory particle non-ATPase 13|rpn13 homolog 20121230 -9606 11049 NUS1P3 - YDD19 HGNC:30934 13 13q12 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) pseudogene 3 pseudo NUS1P3 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) pseudogene 3 O - 20121230 -9606 11051 NUDT21 - CFIM25|CPSF5 HGNC:13870|MIM:604978|Ensembl:ENSG00000167005|HPRD:05400|Vega:OTTHUMG00000133240 16 16q12.2 nudix (nucleoside diphosphate linked moiety X)-type motif 21 protein-coding NUDT21 nudix (nucleoside diphosphate linked moiety X)-type motif 21 O CPSF 25 kDa subunit|cleavage and polyadenylation specific factor 5, 25 kD subunit|cleavage and polyadenylation specific factor 5, 25 kDa|cleavage and polyadenylation specificity factor 25 kDa subunit|cleavage and polyadenylation specificity factor subunit 5|nucleoside diphosphate-linked moiety X motif 21|nudix motif 21|pre-mRNA cleavage factor Im (25kD)|pre-mRNA cleavage factor Im 25 kDa subunit|pre-mRNA cleavage factor Im, 25kD subunit 20121230 -9606 11052 CPSF6 - CFIM|CFIM68|HPBRII-4|HPBRII-7 HGNC:13871|MIM:604979|Ensembl:ENSG00000111605|Vega:OTTHUMG00000169340 12 12q15 cleavage and polyadenylation specific factor 6, 68kDa protein-coding CPSF6 cleavage and polyadenylation specific factor 6, 68kDa O CPSF 68 kDa subunit|cleavage and polyadenylation specificity factor 68 kDa subunit|cleavage and polyadenylation specificity factor subunit 6|pre-mRNA cleavage factor I, 68kD subunit|pre-mRNA cleavage factor Im (68kD)|pre-mRNA cleavage factor Im 68 kDa subunit|protein HPBRII-4/7 20121230 -9606 11054 OGFR RP5-885L7.2 - HGNC:15768|MIM:606459|Ensembl:ENSG00000060491|HPRD:08404|Vega:OTTHUMG00000032937 20 20q13.3 opioid growth factor receptor protein-coding OGFR opioid growth factor receptor O 7-60 protein|protein 7-60|zeta-type opioid receptor 20121230 -9606 11055 ZPBP - ZPBP1 HGNC:15662|MIM:608498|Ensembl:ENSG00000042813|HPRD:18364|Vega:OTTHUMG00000023528 7 7p14.3 zona pellucida binding protein protein-coding ZPBP zona pellucida binding protein O zona pellucida binding protein 1|zona pellucida-binding protein 1 20121230 -9606 11056 DDX52 HUSSY-19 HUSSY19|ROK1 HGNC:20038|MIM:612500|Ensembl:ENSG00000141141|HPRD:09911|Vega:OTTHUMG00000133121 17 17q21.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 52 protein-coding DDX52 DEAD (Asp-Glu-Ala-Asp) box polypeptide 52 O DEAD box protein 52|probable ATP-dependent RNA helicase DDX52 20121230 -9606 11057 ABHD2 - HS1-2|LABH2|PHPS1-2 HGNC:18717|MIM:612196|Ensembl:ENSG00000140526|HPRD:09791|Vega:OTTHUMG00000148684 15 15q26.1 abhydrolase domain containing 2 protein-coding ABHD2 abhydrolase domain containing 2 O abhydrolase domain-containing protein 2|alpha/beta hydrolase domain containing protein 2|lung alpha/beta hydrolase 2|protein PHPS1-2 20121230 -9606 11059 WWP1 - AIP5|Tiul1|hSDRP1 HGNC:17004|MIM:602307|Ensembl:ENSG00000123124|HPRD:03811|Vega:OTTHUMG00000163690 8 8q21 WW domain containing E3 ubiquitin protein ligase 1 protein-coding WWP1 WW domain containing E3 ubiquitin protein ligase 1 O NEDD4-like E3 ubiquitin-protein ligase WWP1|Nedd-4-like ubiquitin-protein ligase|TGIF-interacting ubiquitin ligase 1|WW domain-containing protein 1|atrophin-1 interacting protein 5|atrophin-1-interacting protein 5 20121230 -9606 11060 WWP2 - AIP2|WWp2-like HGNC:16804|MIM:602308|Ensembl:ENSG00000198373|HPRD:03812|Vega:OTTHUMG00000137573 16 16q22.1 WW domain containing E3 ubiquitin protein ligase 2 protein-coding WWP2 WW domain containing E3 ubiquitin protein ligase 2 O NEDD4-like E3 ubiquitin-protein ligase WWP2|atrophin-1 interacting protein 2 20121230 -9606 11061 LECT1 RP11-93H24.1 BRICD3|CHM-I|CHM1|MYETS1 HGNC:17005|MIM:605147|Ensembl:ENSG00000136110|HPRD:05511|Vega:OTTHUMG00000016980 13 13q14.3 leukocyte cell derived chemotaxin 1 protein-coding LECT1 leukocyte cell derived chemotaxin 1 O BRICHOS domain containing 3|chondromodulin I|chondromodulin-1|chondromodulin-I|leukocyte cell-derived chemotaxin 1|multiple myeloma tumor suppressor 1 20121230 -9606 11062 DUS4L - DUS4|PP35 HGNC:21517|Ensembl:ENSG00000105865|HPRD:17886|Vega:OTTHUMG00000154763 7 7q22-q31 dihydrouridine synthase 4-like (S. cerevisiae) protein-coding DUS4L dihydrouridine synthase 4-like (S. cerevisiae) O protein similar to E.coli yhdg and R. capsulatus nifR3|tRNA-dihydrouridine(20a/20b) synthase [NAD(P)+]-like 20121230 -9606 11063 SOX30 - - HGNC:30635|MIM:606698|Ensembl:ENSG00000039600|HPRD:09461|Vega:OTTHUMG00000130247 5 5q33 SRY (sex determining region Y)-box 30 protein-coding SOX30 SRY (sex determining region Y)-box 30 O Sox30 protein type II|transcription factor SOX-30 20121230 -9606 11064 CNTRL RP11-165P4.1 CEP1|CEP110|FAN|bA165P4.1 HGNC:1858|MIM:605496|Ensembl:ENSG00000119397|HPRD:05691|Vega:OTTHUMG00000020581 9 9q33.2 centriolin protein-coding CNTRL centriolin O 110 kDa centrosomal protein|bA165P4.1 (ortholog of mouse Ma2a8)|bA165P4.2 (centrosomal protein 1)|centriole associated protein|centrosomal protein 110kDa|centrosomal protein of 110 kDa 20121230 -9606 11065 UBE2C RP3-447F3.1 UBCH10|dJ447F3.2 HGNC:15937|MIM:605574|Ensembl:ENSG00000175063|HPRD:05717|Vega:OTTHUMG00000033038 20 20q13.12 ubiquitin-conjugating enzyme E2C protein-coding UBE2C ubiquitin-conjugating enzyme E2C O cyclin-selective ubiquitin carrier protein|mitotic-specific ubiquitin-conjugating enzyme|ubiquitin carrier protein C|ubiquitin carrier protein E2-C|ubiquitin-conjugating enzyme E2 C|ubiquitin-protein ligase C 20121230 -9606 11066 SNRNP35 - HM-1|U1SNRNPBP HGNC:30852|Ensembl:ENSG00000184209|HPRD:15595|Vega:OTTHUMG00000167584 12 12q24.31 small nuclear ribonucleoprotein 35kDa (U11/U12) protein-coding SNRNP35 small nuclear ribonucleoprotein 35kDa (U11/U12) O U1 snRNP binding protein homolog|U1 snRNP-binding protein homolog|U1-snRNP binding protein homolog|U11/U12 small nuclear ribonucleoprotein 35 kDa protein|U11/U12 snRNP 35 kDa protein|U11/U12 snRNP 35K|U11/U12-35K|protein HM-1 20121230 -9606 11067 C10orf10 - DEPP|FIG HGNC:23355|MIM:611309|Ensembl:ENSG00000165507|HPRD:12558|Vega:OTTHUMG00000018063 10 10q11.21 chromosome 10 open reading frame 10 protein-coding C10orf10 chromosome 10 open reading frame 10 O decidual protein induced by progesterone|fasting induced|fasting-induced gene protein|fasting-induced protein|protein DEPP 20121230 -9606 11068 CYB561D2 LUCA12.2 101F6|TSP10 HGNC:30253|MIM:607068|Ensembl:ENSG00000114395|HPRD:06143|Vega:OTTHUMG00000156813 3 3p21.3 cytochrome b-561 domain containing 2 protein-coding CYB561D2 cytochrome b-561 domain containing 2 O cytochrome b561 domain-containing protein 2|putative tumor suppressor 101F6|putative tumor suppressor protein 101F6 20121230 -9606 11069 RAPGEF4 - CAMP-GEFII|CGEF2|EPAC2|Nbla00496 HGNC:16626|MIM:606058|Ensembl:ENSG00000091428|HPRD:06929|Vega:OTTHUMG00000133677 2 2q31-q32 Rap guanine nucleotide exchange factor (GEF) 4 protein-coding RAPGEF4 Rap guanine nucleotide exchange factor (GEF) 4 O EPAC 2|RAP guanine-nucleotide-exchange factor (GEF) 4|cAMP-regulated guanine nucleotide exchange factor II|exchange factor directly activated by cAMP 2|exchange protein directly activated by cAMP 2|putative protein product of Nbla00496|rap guanine nucleotide exchange factor 4 20121230 -9606 11070 TMEM115 LUCA11.2 PL6 HGNC:30055|MIM:607069|Ensembl:ENSG00000126062|HPRD:06144|Vega:OTTHUMG00000044212 3 3p21.3 transmembrane protein 115 protein-coding TMEM115 transmembrane protein 115 O PP6|placental protein 6 20121230 -9606 11072 DUSP14 - MKP-L|MKP6 HGNC:17007|MIM:606618|Ensembl:ENSG00000161326|HPRD:09427|Vega:OTTHUMG00000133061 17 17q12 dual specificity phosphatase 14 protein-coding DUSP14 dual specificity phosphatase 14 O MAP kinase phosphatase 6|MKP-1 like protein tyrosine phosphatase|MKP-1-like protein tyrosine phosphatase|MKP-6|dual specificity protein phosphatase 14|mitogen-activated protein kinase phosphatase 6 20121230 -9606 11073 TOPBP1 - TOP2BP1 HGNC:17008|MIM:607760|Ensembl:ENSG00000163781|HPRD:09678|Vega:OTTHUMG00000159773 3 3q22.1 topoisomerase (DNA) II binding protein 1 protein-coding TOPBP1 topoisomerase (DNA) II binding protein 1 O DNA topoisomerase 2-binding protein 1|DNA topoisomerase II-beta-binding protein 1|DNA topoisomerase II-binding protein 1 20121230 -9606 11074 TRIM31 DAAP-112O13.2 C6orf13|HCG1|HCGI|RNF HGNC:16289|MIM:609316|Ensembl:ENSG00000204616|HPRD:10281|Vega:OTTHUMG00000031064 6 6p21.3 tripartite motif containing 31 protein-coding TRIM31 tripartite motif containing 31 O E3 ubiquitin-protein ligase TRIM31|ring finger protein|tripartite motif-containing 31 gamma|tripartite motif-containing protein 31 20121230 -9606 11075 STMN2 - SCG10|SCGN10 HGNC:10577|MIM:600621|Ensembl:ENSG00000104435|HPRD:09003|Vega:OTTHUMG00000164610 8 8q21.13 stathmin-like 2 protein-coding STMN2 stathmin-like 2 O neuron-specific growth-associated protein|neuronal growth-associated protein (silencer element)|stathmin-2|superior cervical ganglia, neural specific 10|superior cervical ganglion-10 protein 20121230 -9606 11076 TPPP - TPPP/p25|TPPP1|p24|p25|p25alpha HGNC:24164|MIM:608773|Ensembl:ENSG00000171368|HPRD:18522|Vega:OTTHUMG00000131011 5 5p15.3 tubulin polymerization promoting protein protein-coding TPPP tubulin polymerization promoting protein O 25 kDa brain-specific protein|brain specific protein p25 alpha|glycogen synthase kinase 3 (GSK3) inhibitor p24|p25-alpha|tubulin polymerization-promoting protein 20121230 -9606 11077 HSF2BP - - HGNC:5226|MIM:604554|Ensembl:ENSG00000160207|HPRD:05186|Vega:OTTHUMG00000086863 21 21q22.3 heat shock transcription factor 2 binding protein protein-coding HSF2BP heat shock transcription factor 2 binding protein O heat shock factor 2-binding protein 20121230 -9606 11078 TRIOBP HRIHFB2122 DFNB28|TARA|dJ37E16.4 HGNC:17009|MIM:609761|Ensembl:ENSG00000100106|HPRD:11028|Vega:OTTHUMG00000150657 22 22q13.1 TRIO and F-actin binding protein protein-coding TRIOBP TRIO and F-actin binding protein O TRIO and F-actin-binding protein|protein Tara|tara-like protein|trio-associated repeat on actin 20121230 -9606 11079 RER1 RP4-740C4.2 - HGNC:30309|Ensembl:ENSG00000157916|HPRD:17967|Vega:OTTHUMG00000001403 1 1p36 RER1 retention in endoplasmic reticulum 1 homolog (S. cerevisiae) protein-coding RER1 RER1 retention in endoplasmic reticulum 1 homolog (S. cerevisiae) O protein RER1 20121230 -9606 11080 DNAJB4 - DNAJW|DjB4|HLJ1 HGNC:14886|MIM:611327|Ensembl:ENSG00000162616|HPRD:07486|Vega:OTTHUMG00000040905 1 1p31.1 DnaJ (Hsp40) homolog, subfamily B, member 4 protein-coding DNAJB4 DnaJ (Hsp40) homolog, subfamily B, member 4 O DnaJ-like heat shock protein 40|HSP40 homolog|dnaJ homolog subfamily B member 4|heat shock 40 kDa protein 1 homolog|heat shock protein 40 homolog|human liver DnaJ-like protein 20121230 -9606 11081 KERA - CNA2|SLRR2B HGNC:6309|MIM:603288|Ensembl:ENSG00000139330|HPRD:04477|Vega:OTTHUMG00000170073 12 12q22 keratocan protein-coding KERA keratocan O KTN|keratan sulfate proteoglycan keratocan 20121230 -9606 11082 ESM1 - endocan HGNC:3466|MIM:601521|Ensembl:ENSG00000164283|HPRD:03310|Vega:OTTHUMG00000097010 5 5q11.2 endothelial cell-specific molecule 1 protein-coding ESM1 endothelial cell-specific molecule 1 O ESM-1 20121230 -9606 11083 DIDO1 RP5-885L7.1 BYE1|C20orf158|DATF-1|DATF1|DIDO2|DIDO3|DIO-1|DIO1|dJ885L7.8 HGNC:2680|MIM:604140|Ensembl:ENSG00000101191|HPRD:10363|HPRD:12752|Vega:OTTHUMG00000032945 20 20q13.33 death inducer-obliterator 1 protein-coding DIDO1 death inducer-obliterator 1 O death-associated transcription factor 1|death-inducer obliterator 1 20121230 -9606 11085 ADAM30 UNQ2509/PRO5997 svph4 HGNC:208|MIM:604779|Ensembl:ENSG00000134249|HPRD:05307|Vega:OTTHUMG00000012176 1 1p12 ADAM metallopeptidase domain 30 protein-coding ADAM30 ADAM metallopeptidase domain 30 O a disintegrin and metalloproteinase domain 30|disintegrin and metalloproteinase domain-containing protein 30 20121230 -9606 11086 ADAM29 - CT73|svph1 HGNC:207|MIM:604778|Ensembl:ENSG00000168594|HPRD:05306|Vega:OTTHUMG00000160764 4 4q34 ADAM metallopeptidase domain 29 protein-coding ADAM29 ADAM metallopeptidase domain 29 O a disintegrin and metalloproteinase domain 29|cancer/testis antigen 73|disintegrin and metalloproteinase domain-containing protein 29 20121230 -9606 11091 WDR5 - BIG-3|SWD3 HGNC:12757|MIM:609012|Ensembl:ENSG00000196363|HPRD:10614|Vega:OTTHUMG00000131707 9 9q34 WD repeat domain 5 protein-coding WDR5 WD repeat domain 5 O BMP2-induced 3-kb gene protein|SWD3, Set1c WD40 repeat protein, homolog|WD repeat-containing protein 5|WD-repeat protein 5 20121230 -9606 11092 C9orf9 - - HGNC:1367|Ensembl:ENSG00000165698|HPRD:12986|Vega:OTTHUMG00000020847 9 9q34 chromosome 9 open reading frame 9 protein-coding C9orf9 chromosome 9 open reading frame 9 O Rsb66 homolog|uncharacterized protein C9orf9 20121230 -9606 11093 ADAMTS13 UNQ6102/PRO20085 13|ADAM-TS|ADAM-TS13|ADAMTS-13|C9orf8|TTP|VWFCP|vWF-CP HGNC:1366|MIM:604134|Ensembl:ENSG00000160323|HPRD:04994|Vega:OTTHUMG00000020876 9 9q34 ADAM metallopeptidase with thrombospondin type 1 motif, 13 protein-coding ADAMTS13 ADAM metallopeptidase with thrombospondin type 1 motif, 13 O A disintegrin and metalloproteinase with thrombospondin motifs 13|ADAM-TS 13|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 13|vWF-cleaving protease|von Willebrand factor-cleaving protease 20121230 -9606 11094 CACFD1 RP13-100B2.5 C9orf7|D9S2135|FLOWER HGNC:1365|MIM:613104|Ensembl:ENSG00000160325|HPRD:12974|Vega:OTTHUMG00000020875 9 9q34 calcium channel flower domain containing 1 protein-coding CACFD1 calcium channel flower domain containing 1 O calcium channel flower domain-containing protein 1|calcium channel flower homolog 20121230 -9606 11095 ADAMTS8 - ADAM-TS8|METH2 HGNC:224|MIM:605175|Ensembl:ENSG00000134917|HPRD:05531|Vega:OTTHUMG00000165656 11 11q25 ADAM metallopeptidase with thrombospondin type 1 motif, 8 protein-coding ADAMTS8 ADAM metallopeptidase with thrombospondin type 1 motif, 8 O A disintegrin and metalloproteinase with thrombospondin motifs 8|ADAM-TS 8|ADAMTS-8|METH-2|METH-8|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 8 20121230 -9606 11096 ADAMTS5 - ADAM-TS 11|ADAM-TS 5|ADAM-TS5|ADAMTS-11|ADAMTS-5|ADAMTS11|ADMP-2 HGNC:221|MIM:605007|Ensembl:ENSG00000154736|HPRD:05420|Vega:OTTHUMG00000078686 21 21q21.3 ADAM metallopeptidase with thrombospondin type 1 motif, 5 protein-coding ADAMTS5 ADAM metallopeptidase with thrombospondin type 1 motif, 5 O A disintegrin and metalloproteinase with thrombospondin motifs 5|a disintegrin and metalloproteinase with thrombospondin motifs 11|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 5 (aggrecanase-2)|aggrecanase-2 20121230 -9606 11097 NUPL2 - CG1|NLP-1|NLP_1|hCG1 HGNC:17010|Ensembl:ENSG00000136243|HPRD:14855|Vega:OTTHUMG00000096955 7 7p15 nucleoporin like 2 protein-coding NUPL2 nucleoporin like 2 O H_RG271G13.9|NUP42 homolog|nucleoporin hCG1|nucleoporin-like protein 1|nucleoporin-like protein 2 20121230 -9606 11098 PRSS23 UNQ270/PRO307 SIG13|SPUVE|ZSIG13 HGNC:14370|Ensembl:ENSG00000150687|HPRD:07149|Vega:OTTHUMG00000167226 11 11q14.1 protease, serine, 23 protein-coding PRSS23 protease, serine, 23 O putative secreted protein Zsig13|serine protease 23|serine protease, umbilical endothelium 20121230 -9606 11099 PTPN21 - PTPD1|PTPRL10 HGNC:9651|MIM:603271|Ensembl:ENSG00000070778|HPRD:04468|Vega:OTTHUMG00000170766 14 14q31.3 protein tyrosine phosphatase, non-receptor type 21 protein-coding PTPN21 protein tyrosine phosphatase, non-receptor type 21 O dJ1175B15.2 (protein tyrosine phosphatase, non-receptor type 21)|protein tyrosine phosphatase D1|protein-tyrosine phosphatase D1|tyrosine-protein phosphatase non-receptor type 21 20121230 -9606 11100 HNRNPUL1 - E1B-AP5|E1BAP5|HNRPUL1 HGNC:17011|MIM:605800|Ensembl:ENSG00000105323|HPRD:10428 19 19q13.2 heterogeneous nuclear ribonucleoprotein U-like 1 protein-coding HNRNPUL1 heterogeneous nuclear ribonucleoprotein U-like 1 O E1B 55kDa associated protein 5|E1B-55 kDa-associated protein 5|E1B-55kDa-associated protein 5|adenovirus early region 1B-associated protein 5|heterogeneous nuclear ribonucleoprotein U-like protein 1 20121230 -9606 11101 ATE1 RP11-78A18.1 - HGNC:782|MIM:607103|Ensembl:ENSG00000107669|HPRD:06979|Vega:OTTHUMG00000019178 10 10q26.13 arginyltransferase 1 protein-coding ATE1 arginyltransferase 1 O R-transferase 1|arginine-tRNA--protein transferase 1|arginyl-tRNA--protein transferase 1|arginyl-tRNA-protein transferase 20121230 -9606 11102 RPP14 - P14 HGNC:30327|MIM:606112|Ensembl:ENSG00000163684|HPRD:18001|Vega:OTTHUMG00000159152 3 3p14.3 ribonuclease P/MRP 14kDa subunit protein-coding RPP14 ribonuclease P/MRP 14kDa subunit O ribonuclease P protein subunit p14 20121230 -9606 11103 KRR1 - HRB2|RIP-1 HGNC:5176|MIM:612817|Ensembl:ENSG00000111615|HPRD:11027|Vega:OTTHUMG00000169759 12 12q21.2 KRR1, small subunit (SSU) processome component, homolog (yeast) protein-coding KRR1 KRR1, small subunit (SSU) processome component, homolog (yeast) O HIV-1 Rev binding protein 2|HIV-1 Rev-binding protein 2|KRR-R motif-containing protein 1|KRR1 small subunit processome component homolog|Rev interacting protein|rev-interacting protein 1 20121230 -9606 11104 KATNA1 - - HGNC:6216|MIM:606696|Ensembl:ENSG00000186625|HPRD:05986|Vega:OTTHUMG00000015787 6 6q25.1 katanin p60 (ATPase containing) subunit A 1 protein-coding KATNA1 katanin p60 (ATPase containing) subunit A 1 O katanin p60 (ATPase-containing) subunit A 1|katanin p60 ATPase-containing subunit A1|katanin p60 subunit A1|p60 katanin 20121230 -9606 11105 PRDM7 - PFM4|ZNF910 HGNC:9351|MIM:609759|Ensembl:ENSG00000126856|HPRD:17903|Vega:OTTHUMG00000138990 16 16q24.3 PR domain containing 7 protein-coding PRDM7 PR domain containing 7 O PR domain zinc finger protein 7|PR domain-containing protein 7|PR-domain family protein 4|probable histone-lysine N-methyltransferase PRDM7 20121230 -9606 11107 PRDM5 - BCS2|PFM2 HGNC:9349|MIM:614161|Ensembl:ENSG00000138738|HPRD:17902|Vega:OTTHUMG00000132970 4 4q25-q26 PR domain containing 5 protein-coding PRDM5 PR domain containing 5 O PR domain zinc finger protein 5 20121230 -9606 11108 PRDM4 - PFM1 HGNC:9348|MIM:605780|Ensembl:ENSG00000110851|HPRD:10425|Vega:OTTHUMG00000169914 12 12q23-q24.1 PR domain containing 4 protein-coding PRDM4 PR domain containing 4 O PR domain zinc finger protein 4|PR domain-containing protein 4|PR-domain zinc-finger protein PFM1 20121230 -9606 11112 HIBADH - NS5ATP1 HGNC:4907|MIM:608475|Ensembl:ENSG00000106049|HPRD:12238|Vega:OTTHUMG00000097035 7 7p15.2 3-hydroxyisobutyrate dehydrogenase protein-coding HIBADH 3-hydroxyisobutyrate dehydrogenase O 3'-hydroxyisobutyrate dehydrogenase|3-hydroxyisobutyrate dehydrogenase, mitochondrial 20121230 -9606 11113 CIT - CRIK|STK21 HGNC:1985|MIM:605629|Ensembl:ENSG00000122966|HPRD:09289|Vega:OTTHUMG00000134325 12 12q24 citron (rho-interacting, serine/threonine kinase 21) protein-coding CIT citron (rho-interacting, serine/threonine kinase 21) O citron Rho-interacting kinase|serine/threonine-protein kinase 21 20121230 -9606 11116 FGFR1OP - FOP HGNC:17012|MIM:605392|Ensembl:ENSG00000213066|HPRD:10392|Vega:OTTHUMG00000016011 6 6q27 FGFR1 oncogene partner protein-coding FGFR1OP FGFR1 oncogene partner O fibroblast growth factor receptor 1 oncogene partner 20121230 -9606 11117 EMILIN1 - EMI|EMILIN|gp115 HGNC:19880|MIM:130660|Ensembl:ENSG00000138080|HPRD:00563|Vega:OTTHUMG00000097069 2 2p23.3-p23.2 elastin microfibril interfacer 1 protein-coding EMILIN1 elastin microfibril interfacer 1 O EMILIN-1|elastin microfibril interface located protein|elastin microfibril interface-located protein 1 20121230 -9606 11118 BTN3A2 - BT3.2|BT3.3|BTF4 HGNC:1139|MIM:613594|Ensembl:ENSG00000186470|HPRD:12547|Vega:OTTHUMG00000014450 6 6p22.1 butyrophilin, subfamily 3, member A2 protein-coding BTN3A2 butyrophilin, subfamily 3, member A2 O butyrophilin protein|butyrophilin subfamily 3 member A2 20121230 -9606 11119 BTN3A1 RP1-45P21.1 BT3.1|BTF5|CD277 HGNC:1138|MIM:613593|Ensembl:ENSG00000026950|HPRD:10693|Vega:OTTHUMG00000014449 6 6p22.1 butyrophilin, subfamily 3, member A1 protein-coding BTN3A1 butyrophilin, subfamily 3, member A1 O butyrophilin subfamily 3 member A1|dJ45P21.3 (butyrophilin, subfamily 3, member A1) 20121230 -9606 11120 BTN2A1 CTA-14H9.1 BK14H9.1|BT2.1|BTF1|DJ3E1.1 HGNC:1136|MIM:613590|Ensembl:ENSG00000112763|HPRD:12544|Vega:OTTHUMG00000014457 6 6p22.1 butyrophilin, subfamily 2, member A1 protein-coding BTN2A1 butyrophilin, subfamily 2, member A1 O butyrophilin BTF1|butyrophilin subfamily 2 member A1 20121230 -9606 11122 PTPRT RP5-1121H13.2 RPTPrho HGNC:9682|MIM:608712|Ensembl:ENSG00000196090|HPRD:06690|Vega:OTTHUMG00000033040 20 20q12-q13 protein tyrosine phosphatase, receptor type, T protein-coding PTPRT protein tyrosine phosphatase, receptor type, T O R-PTP-T|RPTP-rho|receptor protein tyrosine phosphatase|receptor-type tyrosine-protein phosphatase T|receptor-type tyrosine-protein phosphatase rho 20121230 -9606 11123 RCAN3 RP4-594I10.1 DSCR1L2|MCIP3|RCN3|hRCN3 HGNC:3042|MIM:605860|Ensembl:ENSG00000117602|HPRD:05792|Vega:OTTHUMG00000003298 1 1p35.3-p33 RCAN family member 3 protein-coding RCAN3 RCAN family member 3 O Down syndrome candidate region 1-like 2|Down syndrome critical region gene 1-like 2|calcipressin-3|down syndrome candidate region 1-like protein 2|myocyte-enriched calcineurin-interacting protein 3|regulator of calcineurin 3 isoform 1b,2 20121230 -9606 11124 FAF1 CGI-03 HFAF1s|UBXD12|UBXN3A|hFAF1 HGNC:3578|MIM:604460|Ensembl:ENSG00000185104|HPRD:05124|Vega:OTTHUMG00000007930 1 1p33 Fas (TNFRSF6) associated factor 1 protein-coding FAF1 Fas (TNFRSF6) associated factor 1 O FAS-associated factor 1|TNFRSF6-associated factor 1|UBX domain protein 3A|UBX domain-containing protein 12|UBX domain-containing protein 3A 20121230 -9606 11126 CD160 RP11-373C9.1 BY55|NK1|NK28 HGNC:17013|MIM:604463|Ensembl:ENSG00000117281|HPRD:06833|Vega:OTTHUMG00000013749 1 1q21.1 CD160 molecule protein-coding CD160 CD160 molecule O CD160 antigen|CD160 transmembrane isoform|CD160-delta Ig|natural killer cell receptor BY55|natural killer cell receptor, immunoglobulin superfamily member 20121230 -9606 11127 KIF3A - FLA10|KLP-20 HGNC:6319|MIM:604683|Ensembl:ENSG00000131437|HPRD:05250|Vega:OTTHUMG00000059725 5 5q31 kinesin family member 3A protein-coding KIF3A kinesin family member 3A O kinesin family protein 3A|kinesin-like protein KIF3A|microtubule plus end-directed kinesin motor 3A 20121230 -9606 11128 POLR3A - ADDH|HLD7|RPC1|RPC155|hRPC155 HGNC:30074|MIM:614258|Ensembl:ENSG00000148606|HPRD:17879|Vega:OTTHUMG00000018550 10 10q22-q23 polymerase (RNA) III (DNA directed) polypeptide A, 155kDa protein-coding POLR3A polymerase (RNA) III (DNA directed) polypeptide A, 155kDa O DNA-directed RNA polymerase III largest subunit|DNA-directed RNA polymerase III subunit A|DNA-directed RNA polymerase III subunit RPC1|RNA polymerase III 155 kDa subunit|RNA polymerase III subunit C1|RNA polymerase III subunit C160|RNA polymerase III subunit RPC155-D 20121230 -9606 11129 CLASRP UNQ2428/PRO4988 CLASP|SFRS16|SWAP2 HGNC:17731|Ensembl:ENSG00000104859|HPRD:11552|Vega:OTTHUMG00000150189 19 19q13.3 CLK4-associating serine/arginine rich protein protein-coding CLASRP CLK4-associating serine/arginine rich protein O Clk4 associating SR-related protein|splicing factor, arginine/serine-rich 16 (suppressor-of-white-apricot homolog, Drosophila)|suppressor of white apricot homolog 2|suppressor of white-apricot homolog 2 20121230 -9606 11130 ZWINT - HZwint-1|KNTC2AP|ZWINT1 HGNC:13195|MIM:609177|Ensembl:ENSG00000122952|HPRD:18366|Vega:OTTHUMG00000018261 10 10q21-q22 ZW10 interactor protein-coding ZWINT ZW10 interactor O ZW10-interacting protein 1|human ZW10 interacting protein-1|zwint-1 20121230 -9606 11131 CAPN11 - calpain11 HGNC:1478|MIM:604822|Ensembl:ENSG00000137225|HPRD:05315|Vega:OTTHUMG00000014758 6 6p12 calpain 11 protein-coding CAPN11 calpain 11 O CANP 11|calcium-activated neutral proteinase 11|calpain-11 20121230 -9606 11132 CAPN10 - CANP10|NIDDM1 HGNC:1477|MIM:605286|Ensembl:ENSG00000142330|HPRD:05595|Vega:OTTHUMG00000133358 2 2q37.3 calpain 10 protein-coding CAPN10 calpain 10 O calcium-activated neutral proteinase 10|calpain-10|calpain-like protease CAPN10 20121230 -9606 11133 KPTN - 2E4 HGNC:6404|Ensembl:ENSG00000118162|HPRD:17241 19 19q13.32 kaptin (actin binding protein) protein-coding KPTN kaptin (actin binding protein) O actin-associated protein 2E4|kaptin|kaptin (actin-binding protein) 20121230 -9606 11135 CDC42EP1 RP5-1177I5.4 BORG5|CEP1|MSE55 HGNC:17014|MIM:606084|Ensembl:ENSG00000128283|HPRD:07303|Vega:OTTHUMG00000150591 22 22q13.1 CDC42 effector protein (Rho GTPase binding) 1 protein-coding CDC42EP1 CDC42 effector protein (Rho GTPase binding) 1 O 55 kDa bone marrow stromal/endothelial cell protein|binder of Rho GTPases 5|cdc42 effector protein 1|serum constituent protein|serum protein MSE55 20121230 -9606 11136 SLC7A9 - BAT1|CSNU3 HGNC:11067|MIM:604144|Ensembl:ENSG00000021488|HPRD:04997|Vega:OTTHUMG00000180287 19 19q13.1 solute carrier family 7 (glycoprotein-associated amino acid transporter light chain, bo,+ system), member 9 protein-coding SLC7A9 solute carrier family 7 (glycoprotein-associated amino acid transporter light chain, bo,+ system), member 9 O B(0,+)-type amino acid transporter 1|b(0,+)AT|glycoprotein-associated amino acid transporter b0,+AT1|solute carrier family 7 (cationic amino acid transporter, y+ system), member 9 20121230 -9606 11137 PWP1 - IEF-SSP-9502 HGNC:17015|Ensembl:ENSG00000136045|HPRD:11464|Vega:OTTHUMG00000169913 12 12q23.3 PWP1 homolog (S. cerevisiae) protein-coding PWP1 PWP1 homolog (S. cerevisiae) O keratinocyte protein IEF SSP 9502|nuclear phosphoprotein similar to S. cerevisiae PWP1|periodic tryptophan protein 1 homolog 20121230 -9606 11138 TBC1D8 - AD3|HBLP1|TBC1D8A|VRP HGNC:17791|Ensembl:ENSG00000204634|HPRD:06752|Vega:OTTHUMG00000153040 2 2q11.2 TBC1 domain family, member 8 (with GRAM domain) protein-coding TBC1D8 TBC1 domain family, member 8 (with GRAM domain) O AD 3|BUB2-like protein 1|TBC1 domain family member 8|TBC1 domain family, member 8A|vascular Rab-GAP/TBC-containing protein 20121230 -9606 11140 CDC37 - P50CDC37 HGNC:1735|MIM:605065|Ensembl:ENSG00000105401|HPRD:05456|Vega:OTTHUMG00000180578 19 19p13.2 cell division cycle 37 homolog (S. cerevisiae) protein-coding CDC37 cell division cycle 37 homolog (S. cerevisiae) O CDC37 (cell division cycle 37, S. cerevisiae, homolog)|CDC37 cell division cycle 37 homolog|hsp90 chaperone protein kinase-targeting subunit|hsp90 co-chaperone Cdc37 20121230 -9606 11141 IL1RAPL1 - IL1R8|IL1RAPL|MRX10|MRX21|MRX34|OPHN4|TIGIRR-2 HGNC:5996|MIM:300206|Ensembl:ENSG00000169306|HPRD:02193|Vega:OTTHUMG00000021317 X Xp22.1-p21.3 interleukin 1 receptor accessory protein-like 1 protein-coding IL1RAPL1 interleukin 1 receptor accessory protein-like 1 O IL-1-RAPL-1|IL-1RAPL-1|IL1RAPL-1|X-linked interleukin-1 receptor accessory protein-like 1|interleukin 1 receptor-8|interleukin-1 receptor accessory protein-like 1|mental retardation, X-linked 10|oligophrenin-4|three immunoglobulin domain-containing IL-1 receptor-related 2 20121230 -9606 11142 PKIG - - HGNC:9019|MIM:604932|Ensembl:ENSG00000168734|HPRD:05379|Vega:OTTHUMG00000033065 20 20q12-q13.1 protein kinase (cAMP-dependent, catalytic) inhibitor gamma protein-coding PKIG protein kinase (cAMP-dependent, catalytic) inhibitor gamma O PKI-gamma|cAMP-dependent protein kinase inhibitor gamma 20121230 -9606 11143 KAT7 - HBO1|HBOA|MYST2 HGNC:17016|MIM:609880|Ensembl:ENSG00000136504|HPRD:07135|Vega:OTTHUMG00000161770 17 17q21.32 K(lysine) acetyltransferase 7 protein-coding KAT7 K(lysine) acetyltransferase 7 O MOZ, YBF2/SAS3, SAS2 and TIP60 protein 2|MYST histone acetyltransferase 2|MYST-2|histone acetyltransferase KAT7|histone acetyltransferase MYST2|histone acetyltransferase binding to ORC1|lysine acetyltransferase 7 20121230 -9606 11144 DMC1 RP1-199H16.4 DMC1H|HsLim15|LIM15|dJ199H16.1 HGNC:2927|MIM:602721|Ensembl:ENSG00000100206|HPRD:04099|Vega:OTTHUMG00000151088 22 22q13.1 DMC1 dosage suppressor of mck1 homolog, meiosis-specific homologous recombination (yeast) protein-coding DMC1 DMC1 dosage suppressor of mck1 homolog, meiosis-specific homologous recombination (yeast) O DMC1 homologue|disrupted meiotic cDNA1, yeast, homolog of|meiotic recombination protein DMC1/LIM15 homolog 20121230 -9606 11145 PLA2G16 - AdPLA|H-REV107-1|HRASLS3|HREV107|HREV107-1|HREV107-3|HRSL3 HGNC:17825|MIM:613867|Ensembl:ENSG00000176485|HPRD:13671|Vega:OTTHUMG00000167852 11 11q12.3 phospholipase A2, group XVI protein-coding PLA2G16 phospholipase A2, group XVI O Ca-independent phospholipase A1/2|H-rev 107 protein homolog|HRAS-like suppressor 1|HRAS-like suppressor 3|adipose-specific PLA2|adipose-specific phospholipase A2|group XVI phospholipase A1/A2|group XVI phospholipase A2|renal carcinoma antigen NY-REN-65 20121230 -9606 11146 GLMN - FAP|FAP48|FAP68|FKBPAP|GLML|GVM|VMGLOM HGNC:14373|MIM:601749|Ensembl:ENSG00000174842|HPRD:03451|Vega:OTTHUMG00000010283 1 1p22.1 glomulin, FKBP associated protein protein-coding GLMN glomulin, FKBP associated protein O FK506-binding protein-associated protein|FKBP-associated protein|glomulin 20121230 -9606 11147 HHLA3 RP11-180O5.1 - HGNC:4906|MIM:604372|Ensembl:ENSG00000197568|HPRD:05083|Vega:OTTHUMG00000009346 1 1p31.1 HERV-H LTR-associating 3 protein-coding HHLA3 HERV-H LTR-associating 3 O HERV-H LTR-associating protein 3|human endogenous retrovirus-H long terminal repeat-associating 3|human endogenous retrovirus-H long terminal repeat-associating protein 3 20121230 -9606 11148 HHLA2 - B7H7 HGNC:4905|MIM:604371|Ensembl:ENSG00000114455|HPRD:05082|Vega:OTTHUMG00000159224 3 3q13.13 HERV-H LTR-associating 2 protein-coding HHLA2 HERV-H LTR-associating 2 O HERV-H LTR-associating protein 2|human endogenous retrovirus-H long terminal repeat-associating protein 2 20121230 -9606 11149 BVES RP3-522O2.1 HBVES|POP1|POPDC1 HGNC:1152|MIM:604577|Ensembl:ENSG00000112276|HPRD:06842|Vega:OTTHUMG00000015291 6 6q21 blood vessel epicardial substance protein-coding BVES blood vessel epicardial substance O popeye domain containing 1|popeye domain-containing protein 1|popeye protein 1 20121230 -9606 11151 CORO1A - CLABP|CLIPINA|HCORO1|TACO|p57 HGNC:2252|MIM:605000|Ensembl:ENSG00000102879|HPRD:05414|Vega:OTTHUMG00000132148 16 16p11.2 coronin, actin binding protein, 1A protein-coding CORO1A coronin, actin binding protein, 1A O clipin-A|coronin-1|coronin-1A|coronin-like protein A|coronin-like protein p57|tryptophan aspartate-containing coat protein 20121230 -9606 11152 WDR45 JM5 NBIA4|WDRX1|WIPI-4|WIPI4 HGNC:28912|MIM:300526|Ensembl:ENSG00000196998|HPRD:06597|Vega:OTTHUMG00000034500 X Xp11.23 WD repeat domain 45 protein-coding WDR45 WD repeat domain 45 O WD repeat domain phosphoinositide-interacting protein 4|WD repeat domain, X-linked 1|WD repeat-containing protein 45|WD45 repeat protein interacting with phosphoinositides 4|neurodegeneration with brain iron accumulation 4 20121230 -9606 11153 FICD UNQ3041/PRO9857 HIP13|HYPE|UNQ3041 HGNC:18416|Ensembl:ENSG00000198855|HPRD:13723|Vega:OTTHUMG00000169569 12 12q24.1 FIC domain containing protein-coding FICD FIC domain containing O AMPylator FICD|FIC domain-containing protein|HIP-13|Huntingtin interacting protein E|adenosine monophosphate-protein transferase FICD|fic S-phase protein cell division homolog|huntingtin interacting protein 13|huntingtin interactor protein E|huntingtin yeast partner E|huntingtin-interacting protein 13|huntingtin-interacting protein E 20121230 -9606 11154 AP4S1 - AP47B|CLA20|CLAPS4|CPSQ6|SPG52 HGNC:575|MIM:607243|Ensembl:ENSG00000100478|HPRD:06257|Vega:OTTHUMG00000140202 14 14q12 adaptor-related protein complex 4, sigma 1 subunit protein-coding AP4S1 adaptor-related protein complex 4, sigma 1 subunit O AP-4 adapter complex subunit sigma-1|AP-4 complex subunit sigma-1|clathrin-associated/assembly/adaptor protein, sigma 4|sigma-4-adaptin 20121230 -9606 11155 LDB3 - CMD1C|CYPHER|LDB3Z1|LDB3Z4|LVNC3|ORACLE|PDLIM6|ZASP HGNC:15710|MIM:605906|Ensembl:ENSG00000122367|HPRD:16172|Vega:OTTHUMG00000018655 10 10q22.3-q23.2 LIM domain binding 3 protein-coding LDB3 LIM domain binding 3 O LIM domain-binding protein 3|PDZ and LIM domain 6|Z-band alternatively spliced PDZ-motif protein|protein cypher 20121230 -9606 11156 PTP4A3 - PRL-3|PRL-R|PRL3 HGNC:9636|MIM:606449|Ensembl:ENSG00000184489|HPRD:05922|Vega:OTTHUMG00000164490 8 8q24.3 protein tyrosine phosphatase type IVA, member 3 protein-coding PTP4A3 protein tyrosine phosphatase type IVA, member 3 O potentially prenylated protein tyrosine phosphatase|protein tyrosine phosphatase type IVA 3|protein-tyrosine phosphatase 4a3|protein-tyrosine phosphatase of regenerating liver 3 20121230 -9606 11157 LSM6 - YDR378C HGNC:17017|MIM:607286|Ensembl:ENSG00000164167|HPRD:06286|Vega:OTTHUMG00000161440 4 4q31.22 LSM6 homolog, U6 small nuclear RNA associated (S. cerevisiae) protein-coding LSM6 LSM6 homolog, U6 small nuclear RNA associated (S. cerevisiae) O Sm protein F|U6 snRNA-associated Sm-like protein LSm6 20121230 -9606 11158 RABL2B - - HGNC:9800|MIM:605413|Ensembl:ENSG00000079974|HPRD:10395|Vega:OTTHUMG00000150156 22 22q13.33 RAB, member of RAS oncogene family-like 2B protein-coding RABL2B RAB, member of RAS oncogene family-like 2B O rab-like protein 2B 20121230 -9606 11159 RABL2A RP11-395L14.2 - HGNC:9799|MIM:605412|Ensembl:ENSG00000144134|HPRD:10394|Vega:OTTHUMG00000047828 2 2q13 RAB, member of RAS oncogene family-like 2A protein-coding RABL2A RAB, member of RAS oncogene family-like 2A O rab-like protein 2A 20121230 -9606 11160 ERLIN2 UNQ2441 C8orf2|Erlin-2|NET32|SPFH2|SPG18 HGNC:1356|MIM:611605|Ensembl:ENSG00000147475|HPRD:15437|Vega:OTTHUMG00000164005 8 8p11.2 ER lipid raft associated 2 protein-coding ERLIN2 ER lipid raft associated 2 O SPFH domain family, member 2|endoplasmic reticulum lipid raft-associated protein 2|erlin-2|stomatin-prohibitin-flotillin-HflC/K domain-containing protein 2 20121230 -9606 11161 C14orf1 AD-011 ERG28|NET51 HGNC:1187|MIM:604576|Ensembl:ENSG00000133935|HPRD:05201|Vega:OTTHUMG00000171488 14 14q24.3 chromosome 14 open reading frame 1 protein-coding C14orf1 chromosome 14 open reading frame 1 O probable ergosterol biosynthetic protein 28 20121230 -9606 11162 NUDT6 - ASFGF2|FGF-AS|FGF2AS|GFG-1|GFG1 HGNC:8053|MIM:606261|Ensembl:ENSG00000170917|HPRD:05880|Vega:OTTHUMG00000039507 4 4q26 nudix (nucleoside diphosphate linked moiety X)-type motif 6 protein-coding NUDT6 nudix (nucleoside diphosphate linked moiety X)-type motif 6 O antisense basic fibroblast growth factor|nucleoside diphosphate-linked moiety X motif 6 20121230 -9606 11163 NUDT4 HDCMB47P DIPP2|DIPP2alpha|DIPP2beta HGNC:8051|MIM:609229|Ensembl:ENSG00000173598|HPRD:14850|Vega:OTTHUMG00000170155 12 12q21 nudix (nucleoside diphosphate linked moiety X)-type motif 4 protein-coding NUDT4 nudix (nucleoside diphosphate linked moiety X)-type motif 4 O DIPP-2|diadenosine 5',5'''-P1,P6-hexaphosphate hydrolase 2|diphosphoinositol polyphosphate phosphohydrolase 2|diphosphoinositol polyphosphate phosphohydrolase type 2 20121230 -9606 11164 NUDT5 HSPC115 YSA1|YSA1H|hYSAH1 HGNC:8052|MIM:609230|Ensembl:ENSG00000165609|HPRD:14851|Vega:OTTHUMG00000017682 10 10p14 nudix (nucleoside diphosphate linked moiety X)-type motif 5 protein-coding NUDT5 nudix (nucleoside diphosphate linked moiety X)-type motif 5 O 8-oxo-dGDP phosphatase|ADP-sugar pyrophosphatase|nucleoside diphosphate linked moiety X-type motif 5|nucleoside diphosphate-linked moiety X motif 5|nudix motif 5 20121230 -9606 11165 NUDT3 - DIPP|DIPP-1|DIPP1 HGNC:8050|MIM:609228|Ensembl:ENSG00000112664|HPRD:14849|Vega:OTTHUMG00000014545 6 6p21.2 nudix (nucleoside diphosphate linked moiety X)-type motif 3 protein-coding NUDT3 nudix (nucleoside diphosphate linked moiety X)-type motif 3 O diadenosine 5',5'''-P1,P6-hexaphosphate hydrolase 1|diphosphoinositol polyphosphate phosphohydrolase 1|nucleoside diphosphate-linked moiety X motif 3|nudix motif 3 20121230 -9606 11166 SOX21 - SOX25 HGNC:11197|MIM:604974|Ensembl:ENSG00000125285|HPRD:16083|Vega:OTTHUMG00000017209 13 13q31-q32 SRY (sex determining region Y)-box 21 protein-coding SOX21 SRY (sex determining region Y)-box 21 O SOX-A|SRY-box 21|transcription factor SOX-21 20121230 -9606 11167 FSTL1 - FRP|FSL1 HGNC:3972|MIM:605547|Ensembl:ENSG00000163430|HPRD:16120|Vega:OTTHUMG00000159440 3 3q13.33 follistatin-like 1 protein-coding FSTL1 follistatin-like 1 O follistatin-like protein 1|follistatin-related protein 1 20121230 -9606 11168 PSIP1 - DFS70|LEDGF|PAIP|PSIP2|p52|p75 HGNC:9527|MIM:603620|Ensembl:ENSG00000164985|HPRD:04688|Vega:OTTHUMG00000021021 9 9p22.3 PC4 and SFRS1 interacting protein 1 protein-coding PSIP1 PC4 and SFRS1 interacting protein 1 O CLL-associated antigen KW-7|DFS 70|PC4 and SFRS1-interacting protein|dense fine speckles 70 kDa protein|lens epithelium-derived growth factor|transcriptional coactivator p52/p75|transcriptional coactivator p75/p52 20121230 -9606 11169 WDHD1 - AND-1|CHTF4|CTF4 HGNC:23170|MIM:608126|Ensembl:ENSG00000198554|HPRD:10483|Vega:OTTHUMG00000140304 14 14q22.2 WD repeat and HMG-box DNA binding protein 1 protein-coding WDHD1 WD repeat and HMG-box DNA binding protein 1 O Acidic nucleoplasmic DNA-binding protein 1|CTF4, chromosome transmission fidelity factor 4 homolog|WD repeat and HMG-box DNA-binding protein 1 20121230 -9606 11170 FAM107A - DRR1|TU3A HGNC:30827|MIM:608295|Ensembl:ENSG00000168309|HPRD:09753|Vega:OTTHUMG00000159159 3 3p21.1 family with sequence similarity 107, member A protein-coding FAM107A family with sequence similarity 107, member A O down-regulated in renal cell carcinoma 1|family with sequence similarity 107 member A transcript|protein FAM107A 20121230 -9606 11171 STRAP - MAWD|PT-WD|UNRIP HGNC:30796|MIM:605986|Ensembl:ENSG00000023734|HPRD:05816|Vega:OTTHUMG00000168791 12 12p12.3 serine/threonine kinase receptor associated protein protein-coding STRAP serine/threonine kinase receptor associated protein O MAP activator with WD repeats|WD-40 repeat protein PT-WD|serine-threonine kinase receptor-associated protein|unr-interacting protein 20121230 -9606 11172 INSL6 - RIF1 HGNC:6089|MIM:606414|Ensembl:ENSG00000120210|HPRD:08401|Vega:OTTHUMG00000019489 9 9p24 insulin-like 6 protein-coding INSL6 insulin-like 6 O insulin-like peptide 5|insulin-like peptide 6|insulin-like peptide INSL6|relaxin/insulin-like factor 1 20121230 -9606 11173 ADAMTS7 - ADAM-TS 7|ADAM-TS7|ADAMTS-7 HGNC:223|MIM:605009|Ensembl:ENSG00000136378|HPRD:05422|Vega:OTTHUMG00000172907 15 15q24.2 ADAM metallopeptidase with thrombospondin type 1 motif, 7 protein-coding ADAMTS7 ADAM metallopeptidase with thrombospondin type 1 motif, 7 O A disintegrin and metalloproteinase with thrombospondin motifs 7|COMPase|a disintegrin and metalloprotease with thrombospondin motifs-7 preproprotein|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 7 20121230 -9606 11174 ADAMTS6 - ADAM-TS 6|ADAM-TS6|ADAMTS-6 HGNC:222|MIM:605008|Ensembl:ENSG00000049192|HPRD:05421|Vega:OTTHUMG00000074079 5 5q12 ADAM metallopeptidase with thrombospondin type 1 motif, 6 protein-coding ADAMTS6 ADAM metallopeptidase with thrombospondin type 1 motif, 6 O A disintegrin and metalloproteinase with thrombospondin motifs 6|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 6 20121230 -9606 11176 BAZ2A - TIP5|WALp3 HGNC:962|MIM:605682|Ensembl:ENSG00000076108|HPRD:10417|Vega:OTTHUMG00000170332 12 12q13.3 bromodomain adjacent to zinc finger domain, 2A protein-coding BAZ2A bromodomain adjacent to zinc finger domain, 2A O TTF-I interacting peptide 5|TTF-I-interacting protein 5|bromodomain adjacent to zinc finger domain protein 2A|hWALp3|transcription termination factor I-interacting protein 5 20121230 -9606 11177 BAZ1A HSPC317 ACF1|WALp1|WCRF180|hACF1 HGNC:960|MIM:605680|Ensembl:ENSG00000198604|Vega:OTTHUMG00000140216 14 14q13.2 bromodomain adjacent to zinc finger domain, 1A protein-coding BAZ1A bromodomain adjacent to zinc finger domain, 1A O ATP-dependent chromatin remodeling protein|ATP-dependent chromatin-remodeling protein|ATP-utilizing chromatin assembly and remodeling factor 1|CHRAC subunit ACF1|bromodomain adjacent to zinc finger domain protein 1A|hWALp1|williams syndrome transcription factor-related chromatin-remodeling factor 180 20121230 -9606 11178 LZTS1 - F37|FEZ1 HGNC:13861|MIM:606551|Ensembl:ENSG00000061337|HPRD:05945|Vega:OTTHUMG00000097027 8 8p22 leucine zipper, putative tumor suppressor 1 protein-coding LZTS1 leucine zipper, putative tumor suppressor 1 O F37/Esophageal cancer-related gene-coding leucine-zipper motif|leucine zipper putative tumor suppressor 1 20121230 -9606 11179 ZNF277 - NRIF4|ZNF277P HGNC:13070|MIM:605465|Ensembl:ENSG00000198839|HPRD:05680|Vega:OTTHUMG00000150209 7 7q31.1 zinc finger protein 277 protein-coding ZNF277 zinc finger protein 277 O nuclear receptor-interacting factor 4|zinc finger protein (C2H2 type) 277|zinc finger protein 277 pseudogene 20121230 -9606 11180 WDR6 - - HGNC:12758|MIM:606031|Ensembl:ENSG00000178252|HPRD:06912|Vega:OTTHUMG00000133546 3 3p21.31 WD repeat domain 6 protein-coding WDR6 WD repeat domain 6 O WD repeat-containing protein 6 20121230 -9606 11181 TREH - TRE|TREA HGNC:12266|MIM:275360|Ensembl:ENSG00000118094|HPRD:02038|Vega:OTTHUMG00000166409 11 11q23.3 trehalase (brush-border membrane glycoprotein) protein-coding TREH trehalase (brush-border membrane glycoprotein) O alpha,alpha-trehalose glucohydrolase|trehalase 20121230 -9606 11182 SLC2A6 RP13-100B2.6 GLUT6|GLUT9|HSA011372 HGNC:11011|MIM:606813|Ensembl:ENSG00000160326|HPRD:06010|Vega:OTTHUMG00000020874 9 9q34 solute carrier family 2 (facilitated glucose transporter), member 6 protein-coding SLC2A6 solute carrier family 2 (facilitated glucose transporter), member 6 O GLUT-6|GLUT-9|glucose transporter type 6|glucose transporter type 9|solute carrier family 2, facilitated glucose transporter member 6 20121230 -9606 11183 MAP4K5 - GCKR|KHS|KHS1|MAPKKKK5 HGNC:6867|MIM:604923|Ensembl:ENSG00000012983|HPRD:05374|Vega:OTTHUMG00000170888 14 14q11.2-q21 mitogen-activated protein kinase kinase kinase kinase 5 protein-coding MAP4K5 mitogen-activated protein kinase kinase kinase kinase 5 O MAPK/ERK kinase kinase kinase 5|MEK kinase kinase 5|MEKKK 5|germinal center kinase-related|kinase homologous to SPS1/STE20 20121230 -9606 11184 MAP4K1 - HPK1 HGNC:6863|MIM:601983|Ensembl:ENSG00000104814|HPRD:03583|Vega:OTTHUMG00000180863 19 19q13.1-q13.4 mitogen-activated protein kinase kinase kinase kinase 1 protein-coding MAP4K1 mitogen-activated protein kinase kinase kinase kinase 1 O MAPK/ERK kinase kinase kinase 1|MEK kinase kinase 1|MEKKK 1|hematopoietic progenitor kinase 1 20121230 -9606 11185 INMT - TEMT HGNC:6069|MIM:604854|Ensembl:ENSG00000241644|HPRD:06890|Vega:OTTHUMG00000167163 7 7p14.3 indolethylamine N-methyltransferase protein-coding INMT indolethylamine N-methyltransferase O amine N-methyltransferase|aromatic alkylamine N-methyltransferase|arylamine N-methyltransferase|indolamine N-methyltransferase|nicotine N-methyltransferase|thioether S-methyltransferase 20121230 -9606 11186 RASSF1 - 123F2|NORE2A|RASSF1A|RDA32|REH3P21 HGNC:9882|MIM:605082|Ensembl:ENSG00000068028|HPRD:05470|Vega:OTTHUMG00000149958 3 3p21.3 Ras association (RalGDS/AF-6) domain family member 1 protein-coding RASSF1 Ras association (RalGDS/AF-6) domain family member 1 O WUGSC:H_LUCA12.5|cardiac-specific ras association domain family 1 protein|pancreas-specific ras association domain family 1 protein|ras association domain-containing protein 1|tumor suppressor protein RDA32 20121230 -9606 11187 PKP3 - - HGNC:9025|MIM:605561|Ensembl:ENSG00000184363|HPRD:05711|Vega:OTTHUMG00000119068 11 11p15 plakophilin 3 protein-coding PKP3 plakophilin 3 O plakophilin 3b|plakophilin-3 20121230 -9606 11188 NISCH - I-1|IRAS HGNC:18006|Ensembl:ENSG00000010322|HPRD:11391|Vega:OTTHUMG00000158571 3 3p21.1 nischarin protein-coding NISCH nischarin O I-1 receptor candidate protein|I1R candidate protein|IR1|hIRAS|imidazoline receptor 1|imidazoline receptor antisera selected|imidazoline receptor antisera-selected protein|imidazoline receptor candidate|imidazoline-1 receptor candidate protein 20121230 -9606 11189 CELF3 RP11-98D18.4 BRUNOL1|CAGH4|ERDA4|TNRC4 HGNC:11967|MIM:612678|Ensembl:ENSG00000159409|HPRD:18210|Vega:OTTHUMG00000013064 1 1q21 CUGBP, Elav-like family member 3 protein-coding CELF3 CUGBP, Elav-like family member 3 O CAG repeat domain|CAG repeat protein 4|CELF-3|CUG-BP and ETR-3 like factor 3|CUG-BP- and ETR-3-like factor 3|CUGBP Elav-like family member 3|ELAV-type RNA-binding protein 1|ETR-1|RNA-binding protein BRUNOL-1|bruno-like protein 1|expanded repeat domain protein CAG/CTG 4|expanded repeat domain, CAG/CTG 4|trinucleotide repeat containing 4|trinucleotide repeat-containing gene 4 protein 20121230 -9606 11190 CEP250 RP3-477O4.2 C-NAP1|CEP2|CNAP1 HGNC:1859|MIM:609689|Ensembl:ENSG00000126001|HPRD:09877|Vega:OTTHUMG00000032343 20 20q11.22 centrosomal protein 250kDa protein-coding CEP250 centrosomal protein 250kDa O 250 kDa centrosomal protein|centrosomal Nek2-associated protein 1|centrosomal protein, 250-KD|centrosome associated protein|centrosome-associated protein CEP250 20121230 -9606 11191 PTENP1 - PTEN-rs|PTEN2|PTH2|psiPTEN HGNC:9589|MIM:613531 9 9p21 phosphatase and tensin homolog pseudogene 1 pseudo PTENP1 phosphatase and tensin homolog pseudogene 1 O - 20121230 -9606 11192 DYX3 - - HGNC:3110|MIM:604254 2 2p16-p15 dyslexia susceptibility 3 unknown DYX3 dyslexia susceptibility 3 O - 20120622 -9606 11193 WBP4 - FBP21 HGNC:12739|MIM:604981|Ensembl:ENSG00000120688|HPRD:16086|Vega:OTTHUMG00000016784 13 13q14.11 WW domain binding protein 4 protein-coding WBP4 WW domain binding protein 4 O WBP-4|WW domain-binding protein 4|WW domain-containing binding protein 4|WW domain-containing-binding protein 4|domain-containing binding protein 4|formin binding protein 21|formin-binding protein 21 20121230 -9606 11194 ABCB8 - EST328128|M-ABC1|MABC1 HGNC:49|MIM:605464|Ensembl:ENSG00000197150|HPRD:10400|Vega:OTTHUMG00000158686 7 7q36 ATP-binding cassette, sub-family B (MDR/TAP), member 8 protein-coding ABCB8 ATP-binding cassette, sub-family B (MDR/TAP), member 8 O ATP-binding cassette sub-family B member 8, mitochondrial|mitochondrial ABC protein|mitochondrial ATP-binding cassette 1 20121230 -9606 11196 SEC23IP MSTP053 P125|P125A HGNC:17018|Ensembl:ENSG00000107651|HPRD:07152|Vega:OTTHUMG00000019161 10 10q25-q26 SEC23 interacting protein protein-coding SEC23IP SEC23 interacting protein O SEC23-interacting protein 20121230 -9606 11197 WIF1 UNQ191/PRO217 WIF-1 HGNC:18081|MIM:605186|Ensembl:ENSG00000156076|HPRD:05541|Vega:OTTHUMG00000168832 12 12q14.3 WNT inhibitory factor 1 protein-coding WIF1 WNT inhibitory factor 1 O wnt inhibitory factor 1 20121230 -9606 11198 SUPT16H - CDC68|FACTP140|SPT16/CDC68 HGNC:11465|MIM:605012|Ensembl:ENSG00000092201|HPRD:16088|Vega:OTTHUMG00000029685 14 14q11.2 suppressor of Ty 16 homolog (S. cerevisiae) protein-coding SUPT16H suppressor of Ty 16 homolog (S. cerevisiae) O FACT 140 kDa subunit|FACT complex subunit SPT16|chromatin-specific transcription elongation factor 140 kDa subunit|facilitates chromatin remodeling 140 kDa subunit|facilitates chromatin transcription complex subunit SPT16|hSPT16 20121230 -9606 11199 ANXA10 - ANX14 HGNC:534|MIM:608008|Ensembl:ENSG00000109511|HPRD:09724|Vega:OTTHUMG00000161275 4 4q33 annexin A10 protein-coding ANXA10 annexin A10 O annexin 14|annexin-10|annexin-14 20121230 -9606 11200 CHEK2 RP11-436C9.1 CDS1|CHK2|HuCds1|LFS2|PP1425|RAD53|hCds1 HGNC:16627|MIM:604373|Ensembl:ENSG00000183765|HPRD:05084|Vega:OTTHUMG00000151023 22 22q12.1 checkpoint kinase 2 protein-coding CHEK2 checkpoint kinase 2 O CHK2 checkpoint homolog|cds1 homolog|checkpoint-like protein CHK2|serine/threonine-protein kinase Chk2 20121230 -9606 11201 POLI - RAD30B|RAD3OB HGNC:9182|MIM:605252|Ensembl:ENSG00000101751|HPRD:16094|Vega:OTTHUMG00000132704 18 18q21.1 polymerase (DNA directed) iota protein-coding POLI polymerase (DNA directed) iota O DNA polymerase iota|RAD30 homolog B|eta2|polymerase (DNA-directed), iota 20121230 -9606 11202 KLK8 UNQ283/PRO322 HNP|NP|NRPN|PRSS19|TADG14 HGNC:6369|MIM:605644|Ensembl:ENSG00000129455|HPRD:05733 19 19q13 kallikrein-related peptidase 8 protein-coding KLK8 kallikrein-related peptidase 8 O KLK8 protein type 1|KLK8 protein type 2|hK8|kallikrein-8|neuropsin type 1|neuropsin type 2|ovasin|serine protease 19|serine protease TADG-14|tumor-associated differentially expressed gene 14 protein 20121230 -9606 11209 MST1P2 - MSPL-1|MSPL-2|MSPL-3|MSPL1|MSPL2|MSPL3|MSTP1|MSTP2|MSTP3 HGNC:7383 1 1p36.2 macrophage stimulating 1 (hepatocyte growth factor-like) pseudogene 2 pseudo MST1P2 macrophage stimulating 1 (hepatocyte growth factor-like) pseudogene 2 O - 20121230 -9606 11211 FZD10 - CD350|FZ-10|Fz10|FzE7|hFz10 HGNC:4039|MIM:606147|Ensembl:ENSG00000111432|HPRD:05853|Vega:OTTHUMG00000168380 12 12q24.33 frizzled family receptor 10 protein-coding FZD10 frizzled family receptor 10 O frizzled 10, seven transmembrane spanning receptor|frizzled homolog 10|frizzled-10 20121230 -9606 11212 PROSC - - HGNC:9457|MIM:604436|Ensembl:ENSG00000147471|HPRD:16060|Vega:OTTHUMG00000164024 8 8p11.2 proline synthetase co-transcribed homolog (bacterial) protein-coding PROSC proline synthetase co-transcribed homolog (bacterial) O proline synthase co-transcribed bacterial homolog protein|proline synthetase co-transcribed (bacterial homolog)|proline synthetase co-transcribed bacterial homolog protein 20121230 -9606 11213 IRAK3 - ASRT5|IRAKM HGNC:17020|MIM:604459|Ensembl:ENSG00000090376|HPRD:05123|Vega:OTTHUMG00000169002 12 12q14.3 interleukin-1 receptor-associated kinase 3 protein-coding IRAK3 interleukin-1 receptor-associated kinase 3 O IL-1 receptor-associated kinase M 20121230 -9606 11214 AKAP13 - AKAP-13|AKAP-Lbc|ARHGEF13|BRX|HA-3|Ht31|LBC|PRKA13|PROTO-LB|PROTO-LBC|c-lbc|p47 HGNC:371|MIM:604686|Ensembl:ENSG00000170776|HPRD:05253|Vega:OTTHUMG00000172205 15 15q24-q25 A kinase (PRKA) anchor protein 13 protein-coding AKAP13 A kinase (PRKA) anchor protein 13 O A-kinase anchor protein 13|A-kinase anchoring protein|LBC oncogene|breast cancer nuclear receptor-binding auxiliary protein|guanine nucleotide exchange factor Lbc|human thyroid-anchoring protein 31|lymphoid blast crisis oncogene|non-oncogenic Rho GTPase-specific GTP exchange factor|protein kinase A-anchoring protein 13 20121230 -9606 11215 AKAP11 - AKAP-11|AKAP220|PPP1R44|PRKA11 HGNC:369|MIM:604696|Ensembl:ENSG00000023516|HPRD:05261|Vega:OTTHUMG00000016805 13 13q14.11 A kinase (PRKA) anchor protein 11 protein-coding AKAP11 A kinase (PRKA) anchor protein 11 O A-kinase anchor protein 11|A-kinase anchor protein 220 kDa|A-kinase anchoring protein, 220kDa|a kinase anchor protein 220 kDa|protein kinase A anchoring protein 11|protein kinase A-anchoring protein 11|protein phosphatase 1, regulatory subunit 44 20121230 -9606 11216 AKAP10 - AKAP-10|D-AKAP-2|D-AKAP2|PRKA10 HGNC:368|MIM:604694|Ensembl:ENSG00000108599|HPRD:05259|Vega:OTTHUMG00000059515 17 17p11.1 A kinase (PRKA) anchor protein 10 protein-coding AKAP10 A kinase (PRKA) anchor protein 10 O A-kinase anchor protein 10, mitochondrial|dual specificity A kinase-anchoring protein 2|mitochondrial A kinase PPKA anchor protein 10|protein kinase A anchoring protein 10 20121230 -9606 11217 AKAP2 RP11-470J20.3 AKAP-2|AKAPKL|PRKA2 HGNC:372|MIM:604582|Ensembl:ENSG00000241978|Vega:OTTHUMG00000156811 9 9q31.3 A kinase (PRKA) anchor protein 2 protein-coding AKAP2 A kinase (PRKA) anchor protein 2 O A-kinase anchor protein 2|protein kinase A anchoring protein 2|protein kinase A2 20121230 -9606 11218 DDX20 - DP103|GEMIN3 HGNC:2743|MIM:606168|Ensembl:ENSG00000064703|HPRD:05859|Vega:OTTHUMG00000011956 1 1p21.1-p13.2 DEAD (Asp-Glu-Ala-Asp) box polypeptide 20 protein-coding DDX20 DEAD (Asp-Glu-Ala-Asp) box polypeptide 20 O DEAD box protein 20|DEAD box protein DP 103|DEAD-box protein DP103|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 20, 103kD|SMN-interacting protein|component of gems 3|gemin-3|probable ATP-dependent RNA helicase DDX20 20121230 -9606 11219 TREX2 - - HGNC:12270|MIM:300370|Ensembl:ENSG00000183479|HPRD:02299 X Xq28 three prime repair exonuclease 2 protein-coding TREX2 three prime repair exonuclease 2 O 3'-5' exonuclease TREX2 long form 20121230 -9606 11221 DUSP10 - MKP-5|MKP5 HGNC:3065|MIM:608867|Ensembl:ENSG00000143507|HPRD:12320|Vega:OTTHUMG00000037269 1 1q41 dual specificity phosphatase 10 protein-coding DUSP10 dual specificity phosphatase 10 O dual specificity phosphatase MKP-5|dual specificity protein phosphatase 10|map kinase phosphatase 5|mitogen-activated protein kinase phosphatase 5|serine/threonine specific protein phosphatase 20121230 -9606 11222 MRPL3 - COXPD9|MRL3|RPML3 HGNC:10379|MIM:607118|Ensembl:ENSG00000114686|HPRD:06175|Vega:OTTHUMG00000159607 3 3q21-q23 mitochondrial ribosomal protein L3 protein-coding MRPL3 mitochondrial ribosomal protein L3 O 39S ribosomal protein L3, mitochondrial|L3mt|MRP-L3|mitochondrial 60S ribosomal protein L3 20121230 -9606 11223 MST1L - BRF-1|D1F15S1A|MSPL-7|MSPL7|MST1P9|MSTP7|MSTP9 HGNC:7390 1 1p36.13 macrophage stimulating 1-like protein-coding MST1L macrophage stimulating 1-like O brain rescue factor 1|brain-rescue-factor-1|macrophage stimulating 1 (hepatocyte growth factor-like) pseudogene 9|macrophage stimulating, pseudogene 7|macrophage stimulating, pseudogene 9|putative macrophage-stimulating protein MSTP9 20121230 -9606 11224 RPL35 RP11-175D17.6 L35 HGNC:10344|Ensembl:ENSG00000136942|HPRD:10200|Vega:OTTHUMG00000020659 9 9q34.1 ribosomal protein L35 protein-coding RPL35 ribosomal protein L35 O 60S ribosomal protein L35 20121230 -9606 11226 GALNT6 - GALNAC-T6|GalNAcT6 HGNC:4128|MIM:605148|Ensembl:ENSG00000139629|HPRD:05512 12 12q13 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 6 (GalNAc-T6) protein-coding GALNT6 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 6 (GalNAc-T6) O GalNAc transferase 6|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 6|UDP-N-acetyl-alpha-D-galactosamine: polypeptide N-acetylgalactosaminyltransferase 6|polypeptide GalNAc transferase 6|polypeptide N-acetylgalactosaminyltransferase 6|pp-GaNTase 6|protein-UDP acetylgalactosaminyltransferase 6 20121230 -9606 11227 GALNT5 - GALNAC-T5 HGNC:4127|Ensembl:ENSG00000136542|HPRD:09970|Vega:OTTHUMG00000131965 2 2q24.1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 5 (GalNAc-T5) protein-coding GALNT5 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 5 (GalNAc-T5) O UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 5|polypeptide GalNAc transferase 5|polypeptide N-acetylgalactosaminyltransferase 5|pp-GaNTase 5|protein-UDP acetylgalactosaminyltransferase 5 20121230 -9606 11228 RASSF8 - C12orf2|HOJ1 HGNC:13232|MIM:608231|Ensembl:ENSG00000123094|HPRD:07084|Vega:OTTHUMG00000169087 12 12p12.3 Ras association (RalGDS/AF-6) domain family (N-terminal) member 8 protein-coding RASSF8 Ras association (RalGDS/AF-6) domain family (N-terminal) member 8 O carcinoma-associated protein HOJ-1|ras association domain-containing protein 8 20121230 -9606 11230 PRAF2 JM4 - HGNC:28911|MIM:300840|Ensembl:ENSG00000243279|HPRD:06596|Vega:OTTHUMG00000034499 X Xp11.23 PRA1 domain family, member 2 protein-coding PRAF2 PRA1 domain family, member 2 O Jena-Muenchen 4|PRA1 domain family 2|PRA1 family protein 2 20121230 -9606 11231 SEC63 RP1-191J18.4 DNAJC23|ERdj2|PRO2507|SEC63L HGNC:21082|MIM:608648|Ensembl:ENSG00000025796|HPRD:09783|Vega:OTTHUMG00000015316 6 6q21 SEC63 homolog (S. cerevisiae) protein-coding SEC63 SEC63 homolog (S. cerevisiae) O translocation protein SEC63 homolog 20121230 -9606 11232 POLG2 - HP55|MTPOLB|PEOA4|POLB|POLG-BETA|POLGB HGNC:9180|MIM:604983|Ensembl:ENSG00000256525|HPRD:09228|Vega:OTTHUMG00000178899 17 17q polymerase (DNA directed), gamma 2, accessory subunit protein-coding POLG2 polymerase (DNA directed), gamma 2, accessory subunit O DNA polymerase gamma accessory 55 kDa subunit|DNA polymerase subunit gamma-2, mitochondrial|mitochondrial DNA polymerase accessory subunit|mitochondrial DNA polymerase subunit gamma-2|mitochondrial DNA polymerase, accessory subunit|p55 20121230 -9606 11234 HPS5 - AIBP63 HGNC:17022|MIM:607521|Ensembl:ENSG00000110756|HPRD:07395|Vega:OTTHUMG00000166612 11 11p14 Hermansky-Pudlak syndrome 5 protein-coding HPS5 Hermansky-Pudlak syndrome 5 O Hermansky-Pudlak syndrome 5 protein|alpha integrin binding protein 63|alpha-integrin-binding protein 63|ruby-eye protein 2 homolog 20121230 -9606 11235 PDCD10 - CCM3|TFAR15 HGNC:8761|MIM:609118|Ensembl:ENSG00000114209|HPRD:10141|Vega:OTTHUMG00000158415 3 3q26.1 programmed cell death 10 protein-coding PDCD10 programmed cell death 10 O TF-1 cell apoptosis-related protein 15|apoptosis-related protein 15|cerebral cavernous malformations 3 protein|programmed cell death protein 10 20121230 -9606 11236 RNF139 - HRCA1|RCA1|TRC8 HGNC:17023|MIM:603046|Ensembl:ENSG00000170881|HPRD:04333|Vega:OTTHUMG00000165072 8 8q24 ring finger protein 139 protein-coding RNF139 ring finger protein 139 O E3 ubiquitin-protein ligase RNF139|multiple membrane spanning receptor TRC8|patched related protein translocated in renal cancer|translocation in renal carcinoma on chromosome 8 protein 20121230 -9606 11237 RNF24 - G1L HGNC:13779|MIM:612489|Ensembl:ENSG00000101236|HPRD:10198|Vega:OTTHUMG00000031770 20 20p13 ring finger protein 24 protein-coding RNF24 ring finger protein 24 O RING finger protein 24|goliath-like protein (C3HC4 type) 20121230 -9606 11238 CA5B - CA-VB HGNC:1378|MIM:300230|Ensembl:ENSG00000169239|HPRD:02207|Vega:OTTHUMG00000021183 X Xp21.1 carbonic anhydrase VB, mitochondrial protein-coding CA5B carbonic anhydrase VB, mitochondrial O carbonate dehydratase VB|carbonic anhydrase 5B, mitochondrial|carbonic dehydratase 20121230 -9606 11240 PADI2 RP1-37C10.6 PAD-H19|PAD2|PDI2 HGNC:18341|MIM:607935|Ensembl:ENSG00000117115|HPRD:06396|Vega:OTTHUMG00000002295 1 1p36.13 peptidyl arginine deiminase, type II protein-coding PADI2 peptidyl arginine deiminase, type II O peptidlyarginine deiminase type II|peptidylarginine deiminase II|protein arginine deiminase|protein-arginine deiminase type II|protein-arginine deiminase type-2 20121230 -9606 11243 PMF1 RP11-54H19.4 - HGNC:9112|MIM:609176|Ensembl:ENSG00000160783|HPRD:11441|Vega:OTTHUMG00000014817|Vega:OTTHUMG00000177123 1 1q12 polyamine-modulated factor 1 protein-coding PMF1 polyamine-modulated factor 1 O Est1p-like protein B (EST1B) 20121230 -9606 11244 ZHX1 - - HGNC:12871|MIM:604764|Ensembl:ENSG00000165156|HPRD:10379|Vega:OTTHUMG00000165088 8 8q24.13 zinc fingers and homeoboxes 1 protein-coding ZHX1 zinc fingers and homeoboxes 1 O zinc finger and homeodomain protein 1|zinc fingers and homeobox 1|zinc fingers and homeoboxes protein 1 20121230 -9606 11245 GPR176 - HB-954 HGNC:32370|MIM:612183|Ensembl:ENSG00000166073|HPRD:13597|Vega:OTTHUMG00000129873 15 15q14-q15.1 G protein-coupled receptor 176 protein-coding GPR176 G protein-coupled receptor 176 O probable G-protein coupled receptor 176 20121230 -9606 11247 NXPH4 UNQ1928/PRO4403 NPH4 HGNC:8078|MIM:604637|Ensembl:ENSG00000182379|HPRD:06866|Vega:OTTHUMG00000171241 12 12q13.3 neurexophilin 4 protein-coding NXPH4 neurexophilin 4 O neurexophilin-4 20121230 -9606 11248 NXPH3 UNQ687/PRO1327 NPH3 HGNC:8077|MIM:604636|Ensembl:ENSG00000182575|HPRD:06865|Vega:OTTHUMG00000161491 17 17q21.33 neurexophilin 3 protein-coding NXPH3 neurexophilin 3 O neurexophilin-3 20121230 -9606 11249 NXPH2 - NPH2 HGNC:8076|MIM:604635|Ensembl:ENSG00000144227|HPRD:11983|Vega:OTTHUMG00000153636 2 2q22.1 neurexophilin 2 protein-coding NXPH2 neurexophilin 2 O neurexophilin-2 20121230 -9606 11250 GPR45 - PSP24|PSP24(ALPHA)|PSP24A HGNC:4503|MIM:604838|Ensembl:ENSG00000135973|HPRD:05325|Vega:OTTHUMG00000130805 2 2q11.1-q12 G protein-coupled receptor 45 protein-coding GPR45 G protein-coupled receptor 45 O PSP24-1|PSP24-alpha|high-affinity lysophosphatidic acid receptor|probable G-protein coupled receptor 45 20121230 -9606 11251 PTGDR2 - CD294|CRTH2|DL1R|DP2|GPR44 HGNC:4502|MIM:604837|Ensembl:ENSG00000183134|HPRD:16075|Vega:OTTHUMG00000167796 11 11q12-q13.3 prostaglandin D2 receptor 2 protein-coding PTGDR2 prostaglandin D2 receptor 2 O G protein-coupled receptor 44|G-protein coupled receptor 44|chemoattractant receptor homologous molecule expressed on T helper type 2 cells|chemoattractant receptor-homologous molecule expressed on TH2 cells|putative G-protein coupled receptor 44 20121230 -9606 11252 PACSIN2 AL049758.1 SDPII HGNC:8571|MIM:604960|Ensembl:ENSG00000100266|HPRD:05390|Vega:OTTHUMG00000150701 22 22q13.2-q13.33 protein kinase C and casein kinase substrate in neurons 2 protein-coding PACSIN2 protein kinase C and casein kinase substrate in neurons 2 O cytoplasmic phosphoprotein PACSIN2|protein kinase C and casein kinase substrate in neurons protein 2|syndapin II 20121230 -9606 11253 MAN1B1 RP11-350O14.2 ERMAN1|MANA-ER|MRT15 HGNC:6823|MIM:604346|Ensembl:ENSG00000177239|HPRD:05068|Vega:OTTHUMG00000020978 9 9q34 mannosidase, alpha, class 1B, member 1 protein-coding MAN1B1 mannosidase, alpha, class 1B, member 1 O ER alpha 1,2-mannosidase|Man9GlcNAc2-specific processing alpha-mannosidase|endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase|endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase 1 20121230 -9606 11254 SLC6A14 RP3-452H17.1 BMIQ11 HGNC:11047|MIM:300444|Ensembl:ENSG00000087916|HPRD:02344|Vega:OTTHUMG00000022245 X Xq23 solute carrier family 6 (amino acid transporter), member 14 protein-coding SLC6A14 solute carrier family 6 (amino acid transporter), member 14 O amino acid transporter ATB0+|amino acid transporter B0+|sodium- and chloride-dependent neutral and basic amino acid transporter B(0+)|solute carrier family 6 (neurotransmitter transporter), member 14|solute carrier family 6 member 14 20121230 -9606 11255 HRH3 - GPCR97|HH3R HGNC:5184|MIM:604525|Ensembl:ENSG00000101180|Vega:OTTHUMG00000032899 20 20q13.33 histamine receptor H3 protein-coding HRH3 histamine receptor H3 O G protein-coupled receptor 97|G-protein coupled receptor 97|H3R|histamine H3 receptor 20121230 -9606 11257 TP53TG1 - LINC00096|NCRNA00096|P53TG1|P53TG1-D|TP53AP1 HGNC:17026|HPRD:10276 7 7q21.1 TP53 target 1 (non-protein coding) miscRNA TP53TG1 TP53 target 1 (non-protein coding) O - 20121230 -9606 11258 DCTN3 RP11-296L22.3 DCTN-22|DCTN22 HGNC:2713|MIM:607387|Ensembl:ENSG00000137100|HPRD:06303|Vega:OTTHUMG00000019830 9 9p13 dynactin 3 (p22) protein-coding DCTN3 dynactin 3 (p22) O dynactin 3|dynactin complex subunit 22 kDa subunit|dynactin light chain|dynactin subunit 3|p22 20121230 -9606 11259 FILIP1L - DOC-1|DOC1|GIP130|GIP130a|GIP130b|GIP130c|GIP90 HGNC:24589|MIM:612993|Ensembl:ENSG00000168386|HPRD:16832|Vega:OTTHUMG00000159055 3 3q12.1 filamin A interacting protein 1-like protein-coding FILIP1L filamin A interacting protein 1-like O 130 kDa GPBP-interacting protein|90 kDa GPBP-interacting protein|GPBP-interacting protein 90|GPBP-interacting protein of 130 kDa|downregulated in ovarian cancer 1 81 kDa isoform|filamin A-interacting protein 1-like|protein down-regulated in ovarian cancer 1 20121230 -9606 11260 XPOT - XPO3 HGNC:12826|MIM:603180|Ensembl:ENSG00000184575|HPRD:04418|Vega:OTTHUMG00000168794 12 12q14.2 exportin, tRNA protein-coding XPOT exportin, tRNA O exportin(tRNA)|exportin, tRNA (nuclear export receptor for tRNAs)|exportin-T|tRNA exportin 20121230 -9606 11261 CHP1 - CHP|SLC9A1BP|Sid470p|p22|p24 HGNC:17433|MIM:606988|Ensembl:ENSG00000187446|HPRD:06101|Vega:OTTHUMG00000130233 15 15q13.3 calcineurin-like EF hand protein 1 protein-coding CHP1 calcineurin-like EF hand protein 1 O EF-hand calcium-binding domain-containing protein p22|SLC9A1 binding protein|calcineurin B homolog|calcineurin B homologous protein 1|calcineurin B-like protein|calcineurin homologous protein|calcium binding protein P22|calcium-binding protein CHP|calcium-binding protein p22 20121230 -9606 11262 SP140 - LYSP100|LYSP100-A|LYSP100-B HGNC:17133|MIM:608602|Ensembl:ENSG00000079263|HPRD:09780|Vega:OTTHUMG00000153670 2 2q37.1 SP140 nuclear body protein protein-coding SP140 SP140 nuclear body protein O lymphoid-restricted homolog of Sp100|lymphoid-specific SP100 homolog|nuclear autoantigen Sp-140|nuclear body protein SP140|speckled 140 kDa 20121230 -9606 11264 PXMP4 RP4-553F4.4 PMP24 HGNC:15920|Ensembl:ENSG00000101417|HPRD:10177|Vega:OTTHUMG00000032273 20 20q11.22 peroxisomal membrane protein 4, 24kDa protein-coding PXMP4 peroxisomal membrane protein 4, 24kDa O 24 kDa peroxisomal intrinsic membrane protein|peroxisomal membrane protein 4 20121230 -9606 11266 DUSP12 - DUSP1|YVH1 HGNC:3067|MIM:604835|Ensembl:ENSG00000081721|HPRD:05323|Vega:OTTHUMG00000034540 1 1q21-q22 dual specificity phosphatase 12 protein-coding DUSP12 dual specificity phosphatase 12 O YVH1 protein-tyrosine phosphatase ortholog|dual specificity protein phosphatase 12|dual specificity tyrosine phosphatase YVH1|serine/threonine specific protein phosphatase 20121230 -9606 11267 SNF8 - Dot3|EAP30|VPS22 HGNC:17028|MIM:610904|Ensembl:ENSG00000159210|HPRD:16847|Vega:OTTHUMG00000160569 17 17q21.32 SNF8, ESCRT-II complex subunit, homolog (S. cerevisiae) protein-coding SNF8 SNF8, ESCRT-II complex subunit, homolog (S. cerevisiae) O EAP30 subunit of ELL complex|ELL-associated protein of 30 kDa|ESCRT-II complex subunit VPS22|hVps22|vacuolar-sorting protein SNF8 20121230 -9606 11269 DDX19B - DBP5|DDX19|RNAh HGNC:2742|MIM:605812|Ensembl:ENSG00000157349|HPRD:05781|Vega:OTTHUMG00000137577 16 16q22.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 19B protein-coding DDX19B DEAD (Asp-Glu-Ala-Asp) box polypeptide 19B O ATP-dependent RNA helicase DDX19|ATP-dependent RNA helicase DDX19B|DEAD (Asp-Glu-Ala-As) box polypeptide 19B|DEAD box RNA helicase DEAD5|DEAD box protein 19B|DEAD-box RNA helicase DEAD5|DEAD-box protein 5|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 19 (Dbp5, yeast, homolog)|yeast Dbp5 homolog 20121230 -9606 11270 NRM DAAP-285E11.8 NRM29 HGNC:8003|Ensembl:ENSG00000137404|HPRD:10120|Vega:OTTHUMG00000031223 6 6p21.33 nurim (nuclear envelope membrane protein) protein-coding NRM nurim (nuclear envelope membrane protein) O nuclear rim protein|nurim 20121230 -9606 11272 PRR4 - LPRP|PROL4 HGNC:18020|MIM:605359|Ensembl:ENSG00000111215|HPRD:09248|Vega:OTTHUMG00000168522 12 12p13 proline rich 4 (lacrimal) protein-coding PRR4 proline rich 4 (lacrimal) O lacrimal proline-rich protein|nasopharyngeal carcinoma-associated proline-rich protein 4|proline-rich polypeptide 4|proline-rich protein 4 20121230 -9606 11273 ATXN2L - A2D|A2LG|A2LP|A2RP HGNC:31326|MIM:607931|Ensembl:ENSG00000168488|HPRD:06394|Vega:OTTHUMG00000097038 16 16p11 ataxin 2-like protein-coding ATXN2L ataxin 2-like O ataxin 2 related protein|ataxin-2 domain protein|ataxin-2-like protein|ataxin-2-related protein 20121230 -9606 11274 USP18 - ISG43|UBP43 HGNC:12616|MIM:607057|Ensembl:ENSG00000184979|HPRD:06136|Vega:OTTHUMG00000150104 22 22q11.21 ubiquitin specific peptidase 18 protein-coding USP18 ubiquitin specific peptidase 18 O 43 kDa ISG15-specific protease|ISG15-specific-processing protease|hUBP43|ubiquitin specific protease 18|ubl carboxyl-terminal hydrolase 18|ubl thioesterase 18|ubl thiolesterase 18 20121230 -9606 11275 KLHL2 - ABP-KELCH|MAV|MAYVEN HGNC:6353|MIM:605774|Ensembl:ENSG00000109466|HPRD:09311|Vega:OTTHUMG00000161294 4 4q21.2 kelch-like 2, Mayven (Drosophila) protein-coding KLHL2 kelch-like 2, Mayven (Drosophila) O actin-binding protein Mayven|kelch|kelch-like protein 2 20121230 -9606 11276 SYNRG - AP1GBP1|SYNG HGNC:557|MIM:607291|Ensembl:ENSG00000006114|HPRD:06291|Vega:OTTHUMG00000133125 17 17q12 synergin, gamma protein-coding SYNRG synergin, gamma O AP1 gamma subunit binding protein 1|AP1 subunit gamma-binding protein 1|adaptor-related protein complex 1 gamma subunit-binding protein 1|gamma-synergin|synergin gamma 20121230 -9606 11277 TREX1 - AGS1|CRV|DRN3|HERNS HGNC:12269|MIM:606609|Ensembl:ENSG00000213689|HPRD:09423|Vega:OTTHUMG00000156205 3 3p21.31 three prime repair exonuclease 1 protein-coding TREX1 three prime repair exonuclease 1 O 3' repair exonuclease 1|3'-5' exonuclease TREX1|DNase III|deoxyribonuclease III 20121230 -9606 11278 KLF12 HSPC122 AP-2rep|AP2REP HGNC:6346|MIM:607531|Ensembl:ENSG00000118922|HPRD:06336|Vega:OTTHUMG00000017078 13 13q22 Kruppel-like factor 12 protein-coding KLF12 Kruppel-like factor 12 O AP-2 repressor|AP-2rep transcription factor|KLF12 zinc finger transcriptional repressor|Krueppel-like factor 12|transcriptional repressor AP-2rep 20121230 -9606 11279 KLF8 RP13-1021K9.1 BKLF3|ZNF741 HGNC:6351|MIM:300286|Ensembl:ENSG00000102349|HPRD:02238|Vega:OTTHUMG00000021666 X Xp11.21 Kruppel-like factor 8 protein-coding KLF8 Kruppel-like factor 8 O Krueppel-like factor 8|basic krueppel-like factor 3|basic kruppel-like factor 3|zinc finger protein 741 20121230 -9606 11280 SCN11A - NAV1.9|NaN|SCN12A|SNS-2 HGNC:10583|MIM:604385|Ensembl:ENSG00000168356|HPRD:05090|Vega:OTTHUMG00000048246 3 3p22.2 sodium channel, voltage-gated, type XI, alpha subunit protein-coding SCN11A sodium channel, voltage-gated, type XI, alpha subunit O PN5|hNaN|peripheral nerve sodium channel 5|sensory neuron sodium channel 2|sodium channel protein type 11 subunit alpha|sodium channel protein type XI subunit alpha|sodium channel, voltage-gated, type XI, alpha polypeptide|sodium channel, voltage-gated, type XII, alpha polypeptide|voltage-gated sodium channel Nav1.9|voltage-gated sodium channel subunit alpha Nav1.9 20121230 -9606 11281 POU6F2 - RPF-1|WT5|WTSL HGNC:21694|MIM:609062|Ensembl:ENSG00000106536|HPRD:10162|Vega:OTTHUMG00000150803 7 7p14.1 POU class 6 homeobox 2 protein-coding POU6F2 POU class 6 homeobox 2 O POU domain, class 6, transcription factor 2|Wilms tumor suppressor locus|retina-derived POU domain factor 1|retina-derived POU-domain factor-1 20121230 -9606 11282 MGAT4B UNQ906/PRO1927 GNT-IV|GNT-IVB HGNC:7048|MIM:604561|Ensembl:ENSG00000161013|HPRD:05190|Vega:OTTHUMG00000130912 5 5q35 mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme B protein-coding MGAT4B mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme B O N-acetylglucosaminyltransferase IVb|N-glycosyl-oligosaccharide-glycoprotein N-acetylglucosaminyltransferase IVb|UDP-N-acetylglucosamine: alpha-1,3-D-mannoside beta-1,4-N-acetylglucosaminyltransferase IV|UDP-N-acetylglucosamine: alpha-1,3-D-mannoside beta-1,4-N-acetylglucosaminyltransferase IVb|alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase B|alpha-1,3-mannosyl-glycoprotein beta-1,4-N-acetylglucosaminyltransferase|aminyltransferase|glcNAc-T IVb|mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isoenzyme B 20121230 -9606 11283 CYP4F8 - CPF8|CYPIVF8 HGNC:2648|MIM:611545|HPRD:08518 19 19p13.1 cytochrome P450, family 4, subfamily F, polypeptide 8 protein-coding CYP4F8 cytochrome P450, family 4, subfamily F, polypeptide 8 O cytochrome P450 4F8|cytochrome P450, subfamily IVF, polypeptide 8|flavoprotein-linked monooxygenase|microsomal monooxygenase 20121230 -9606 11284 PNKP - EIEE10|MCSZ|PNK HGNC:9154|MIM:605610|Ensembl:ENSG00000039650|HPRD:09284 19 19q13.3-q13.4 polynucleotide kinase 3'-phosphatase protein-coding PNKP polynucleotide kinase 3'-phosphatase O DNA 5'-kinase/3'-phosphatase|Homo sapiens polynucleotide kinase 3'-phosphatase (PNKP)|bifunctional polynucleotide phosphatase/kinase 20121230 -9606 11285 B4GALT7 UNQ748/PRO1478 XGALT1|XGPT1 HGNC:930|MIM:604327|Ensembl:ENSG00000027847|HPRD:05060|Vega:OTTHUMG00000130851 5 5q35.2-q35.3 xylosylprotein beta 1,4-galactosyltransferase, polypeptide 7 protein-coding B4GALT7 xylosylprotein beta 1,4-galactosyltransferase, polypeptide 7 O UDP-Gal:beta-GlcNAc beta-1,4-galactosyltransferase 7|UDP-galactose:beta-N-acetylglucosamine beta-1,4-galactosyltransferase 7|beta-1,4-GalTase 7|beta-1,4-galactosyltransferase 7|beta-1,4-galactosyltransferase VII|beta4Gal-T7|beta4GalT-VII|galactosyltransferase I|proteoglycan UDP-galactose:beta-xylose beta1,4-galactosyltransferase I 20121230 -9606 11309 SLCO2B1 - OATP-B|OATP2B1|OATPB|SLC21A9 HGNC:10962|MIM:604988|Ensembl:ENSG00000137491|HPRD:07061|Vega:OTTHUMG00000165420 11 11q13 solute carrier organic anion transporter family, member 2B1 protein-coding SLCO2B1 solute carrier organic anion transporter family, member 2B1 O OATP-RP2|organic anion transporter B|organic anion transporter polypeptide-related protein 2|solute carrier family 21 (organic anion transporter), member 9|solute carrier organic anion transporter family member 2B1 20121230 -9606 11311 VPS45 RP11-458I7.2 H1|H1VPS45|VPS45A|VPS45B|VPS54A|VSP45|VSP45A HGNC:14579|MIM:610035|Ensembl:ENSG00000136631|HPRD:10301|Vega:OTTHUMG00000012511 1 1q21.2 vacuolar protein sorting 45 homolog (S. cerevisiae) protein-coding VPS45 vacuolar protein sorting 45 homolog (S. cerevisiae) O hlVps45|leucocyte vacuolar protein sorting 45|vacuolar protein sorting 45A|vacuolar protein sorting-associated protein 45 20121230 -9606 11313 LYPLA2 RP5-886K2.5 APT-2|DJ886K2.4 HGNC:6738|Ensembl:ENSG00000011009|HPRD:07127|Vega:OTTHUMG00000002961 1 1p36.11 lysophospholipase II protein-coding LYPLA2 lysophospholipase II O LPL-II|acyl-protein thioesterase 2|lysoPLA II 20121230 -9606 11314 CD300A - CLM-8|CMRF-35-H9|CMRF-35H|CMRF35-H|CMRF35-H9|CMRF35H|CMRF35H9|IGSF12|IRC1|IRC1/IRC2|IRC2|IRp60 HGNC:19319|MIM:606790|Ensembl:ENSG00000167851|HPRD:09492|Vega:OTTHUMG00000067612 17 17q25.1 CD300a molecule protein-coding CD300A CD300a molecule O CD300 antigen-like family member A|CD300a antigen|CMRF35-like molecule 8|CMRF35H leukocyte immunoglobulin-like receptor|NK inhibitory receptor|immunoglobulin superfamily member 12|inhibitory receptor protein 60|leukocyte membrane antigen 20121230 -9606 11315 PARK7 CTA-215D11.1 DJ-1|DJ1 HGNC:16369|MIM:602533|Ensembl:ENSG00000116288|HPRD:03961|Vega:OTTHUMG00000001210 1 1p36.23 parkinson protein 7 protein-coding PARK7 parkinson protein 7 O Parkinson disease (autosomal recessive, early onset) 7|oncogene DJ1|protein DJ-1 20121230 -9606 11316 COPE - epsilon-COP HGNC:2234|MIM:606942|Ensembl:ENSG00000105669|HPRD:06089 19 19p13.11 coatomer protein complex, subunit epsilon protein-coding COPE coatomer protein complex, subunit epsilon O coatomer epsilon subunit|coatomer subunit epsilon|epsilon coat protein|epsilon-coat protein 20121230 -9606 11317 RBPJL RP3-453C12.2 RBP-L|RBPSUHL|SUH|SUHL HGNC:13761|Ensembl:ENSG00000124232|HPRD:10187|Vega:OTTHUMG00000033055 20 20q12-q13.1 recombination signal binding protein for immunoglobulin kappa J region-like protein-coding RBPJL recombination signal binding protein for immunoglobulin kappa J region-like O recombining binding protein suppressor of hairless-like protein|transcription factor RBP-L 20121230 -9606 11318 GPR182 - 7TMR|ADMR|AM-R|AMR|G10D|gamrh|hrhAMR HGNC:13708|MIM:605307|Ensembl:ENSG00000166856|HPRD:05605|Vega:OTTHUMG00000171005 12 12q13.3 G protein-coupled receptor 182 protein-coding GPR182 G protein-coupled receptor 182 O G-protein coupled receptor 182|adrenomedullin receptor 20121230 -9606 11319 ECD - GCR2|HSGT1 HGNC:17029|Ensembl:ENSG00000122882|HPRD:11032|Vega:OTTHUMG00000018451 10 10q22.3 ecdysoneless homolog (Drosophila) protein-coding ECD ecdysoneless homolog (Drosophila) O protein SGT1|protein ecdysoneless homolog|suppressor of GCR2|suppressor of S. cerevisiae gcr2 20121230 -9606 11320 MGAT4A - GNT-IV|GNT-IVA|GnT-4a HGNC:7047|MIM:604623|Ensembl:ENSG00000071073|HPRD:06860|Vega:OTTHUMG00000130563 2 2q12 mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A protein-coding MGAT4A mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A O N-acetylglucosaminyltransferase IVa|N-glycosyl-oligosaccharide-glycoprotein N-acetylglucosaminyltransferase IVa|UDP-GlcNAc:a-1,3-D-mannoside b-1,4-acetylglucosaminyltransferase IV|UDP-N-acetylglucosamine: alpha-1,3-D-mannoside beta-1,4-N-acetylglucosaminyltransferase IVa|UDP-N-acetylglucosamine:alpha1,3-d-mannoside beta1,4-N-acetylglucosaminyltransferase|alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase A|alpha-1,3-mannosyl-glycoprotein beta-1,4-N-acetylglucosaminyltransferase|glcNAc-T IVa|mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isoenzyme A 20121230 -9606 11321 GPN1 HUSSY-23 ATPBD1A|MBDIN|NTPBP|RPAP4|XAB1 HGNC:17030|MIM:611479|Ensembl:ENSG00000198522|HPRD:10308|Vega:OTTHUMG00000097784 2 2p23.3 GPN-loop GTPase 1 protein-coding GPN1 GPN-loop GTPase 1 O ATP(GTP)-binding protein|MBD2-interacting protein|RNA polymerase II associated protein 4|XPA binding protein 1, GTPase 20121230 -9606 11322 TMC6 - EV1|EVER1|EVIN1|LAK-4P HGNC:18021|MIM:605828|Ensembl:ENSG00000141524|HPRD:08386|Vega:OTTHUMG00000177466 17 17q25.3 transmembrane channel-like 6 protein-coding TMC6 transmembrane channel-like 6 O epidermodysplasia verruciformis 1|epidermodysplasia verruciformis protein 1|expressed in activated T/LAK lymphocytes|protein LAK-4|transmembrane channel-like protein 6 20121230 -9606 11325 DDX42 - RHELP|RNAHP|SF3b125 HGNC:18676|MIM:613369|Ensembl:ENSG00000198231|HPRD:09909|Vega:OTTHUMG00000179011 17 17q23.3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 42 protein-coding DDX42 DEAD (Asp-Glu-Ala-Asp) box polypeptide 42 O ATP-dependent RNA helicase DDX42|DEAD box protein 42|RNA helicase-like protein|RNA helicase-related protein|SF3b DEAD box protein|SF3b125 DEAD-box protein|splicing factor 3B-associated 125 kDa protein 20121230 -9606 11326 VSIG4 RP6-159A1.1 CRIg|Z39IG HGNC:17032|MIM:300353|Ensembl:ENSG00000155659|HPRD:02286|Vega:OTTHUMG00000021727 X Xq12-q13.3 V-set and immunoglobulin domain containing 4 protein-coding VSIG4 V-set and immunoglobulin domain containing 4 O Ig superfamily protein|V-set and immunoglobulin domain-containing protein 4|complement receptor of the immunoglobulin superfamily|protein Z39Ig 20121230 -9606 11328 FKBP9 tcag7.1121 FKBP60|FKBP63|PPIase HGNC:3725|Ensembl:ENSG00000122642|HPRD:06510|Vega:OTTHUMG00000097847 7 7p11.1 FK506 binding protein 9, 63 kDa protein-coding FKBP9 FK506 binding protein 9, 63 kDa O 63 kDa FK506-binding protein|63 kDa FKBP|FK506-binding protein 9|FKBP-63|FKBP-9|PPIase FKBP9|peptidyl-prolyl cis-trans isomerase FKBP9|rotamase 20121230 -9606 11329 STK38 - NDR|NDR1 HGNC:17847|MIM:606964|Ensembl:ENSG00000112079|HPRD:09511|Vega:OTTHUMG00000014598 6 6p21 serine/threonine kinase 38 protein-coding STK38 serine/threonine kinase 38 O NDR1 protein kinase|Ndr Ser/Thr kinase-like protein|nuclear Dbf2-related 1|nuclear Dbf2-related kinase 1|serine threonine protein kinase|serine/threonine-protein kinase 38 20121230 -9606 11330 CTRC - CLCR|ELA4 HGNC:2523|MIM:601405|Ensembl:ENSG00000162438|HPRD:03242|Vega:OTTHUMG00000002255 1 1p36.21 chymotrypsin C (caldecrin) protein-coding CTRC chymotrypsin C (caldecrin) O caldecrin|chymotrypsin-C|elastase 4|elastase IV|serum calcium decreasing factor 20121230 -9606 11331 PHB2 - BAP|BCAP37|Bap37|PNAS-141|REA|p22 HGNC:30306|MIM:610704|Ensembl:ENSG00000215021|HPRD:17843|Vega:OTTHUMG00000168519 12 12p13 prohibitin 2 protein-coding PHB2 prohibitin 2 O B-cell associated protein|B-cell receptor-associated protein BAP37|D-prohibitin|prohibitin-2|repressor of estrogen receptor activity 20121230 -9606 11332 ACOT7 RP1-120G22.10-004 ACH1|ACT|BACH|CTE-II|LACH|LACH1|RP1-120G22.10|hBACH HGNC:24157|MIM:602587|Ensembl:ENSG00000097021|HPRD:12517|Vega:OTTHUMG00000001295 1 1p36 acyl-CoA thioesterase 7 protein-coding ACOT7 acyl-CoA thioesterase 7 O CTE-IIa|acyl-CoA thioesterase 2|acyl-CoA thioesterase, long chain|brain acyl CoA hydrolase|brain acyl-CoA hydrolase|cytosolic acyl coenzyme A thioester hydrolase|long chain acyl-CoA thioester hydrolase 20121230 -9606 11333 PDAP1 - HASPP28|PAP|PAP1 HGNC:14634|MIM:607075|Ensembl:ENSG00000106244|HPRD:06149|Vega:OTTHUMG00000154629 7 7q22.1 PDGFA associated protein 1 protein-coding PDAP1 PDGFA associated protein 1 O 28 kDa heat- and acid-stable phosphoprotein|PDGF-associated protein 20121230 -9606 11334 TUSC2 - C3orf11|FUS1|PAP|PDAP2 HGNC:17034|MIM:607052|Ensembl:ENSG00000114383|HPRD:06134|Vega:OTTHUMG00000156877 3 3p21.3 tumor suppressor candidate 2 protein-coding TUSC2 tumor suppressor candidate 2 O PDGFA associated protein 2|PDGFA-associated protein 2|fus-1 protein|fusion 1 protein 20121230 -9606 11335 CBX3 - HECH|HP1-GAMMA|HP1Hs-gamma HGNC:1553|MIM:604477|Ensembl:ENSG00000122565|HPRD:05130|Vega:OTTHUMG00000022911 7 7p15.2 chromobox homolog 3 protein-coding CBX3 chromobox homolog 3 O HP1 gamma homolog|chromobox homolog 3 (HP1 gamma homolog, Drosophila)|chromobox protein homolog 3|heterochromatin protein 1 homolog gamma|heterochromatin protein HP1 gamma|heterochromatin-like protein 1|modifier 2 protein 20121230 -9606 11336 EXOC3 - SEC6|SEC6L1|Sec6p HGNC:30378|MIM:608186|Ensembl:ENSG00000180104|HPRD:09738|Vega:OTTHUMG00000162205 5 5p15.33 exocyst complex component 3 protein-coding EXOC3 exocyst complex component 3 O SEC6-like 1|Sec 6 homolog|exocyst complex component Sec6 20121230 -9606 11337 GABARAP HT004 ATG8A|GABARAP-a|MM46 HGNC:4067|MIM:605125|Ensembl:ENSG00000170296|HPRD:05496|Vega:OTTHUMG00000102156 17 17p13.1 GABA(A) receptor-associated protein protein-coding GABARAP GABA(A) receptor-associated protein O gamma-aminobutyric acid receptor-associated protein 20121230 -9606 11338 U2AF2 - U2AF65 HGNC:23156|MIM:191318|Ensembl:ENSG00000063244|HPRD:01872|Vega:OTTHUMG00000180908 19 19q13.42 U2 small nuclear RNA auxiliary factor 2 protein-coding U2AF2 U2 small nuclear RNA auxiliary factor 2 O U2 (RNU2) small nuclear RNA auxiliary factor 2|U2 auxiliary factor 65 kDa subunit|U2 small nuclear ribonucleoprotein auxiliary factor (65kD)|U2 snRNP auxiliary factor large subunit|hU2AF65|splicing factor U2AF 65 kDa subunit 20121230 -9606 11339 OIP5 - 5730547N13Rik|CT86|LINT-25|MIS18B|MIS18beta|hMIS18beta HGNC:20300|MIM:606020|Ensembl:ENSG00000104147|HPRD:09352|Vega:OTTHUMG00000130251 15 15q15.1 Opa interacting protein 5 protein-coding OIP5 Opa interacting protein 5 O LAP2alpha interactor-25|MIS18 kinetochore protein homolog B|OIP-5|cancer/testis antigen 86|opa-interacting protein 5|protein Mis18-beta 20121230 -9606 11340 EXOSC8 - CIP3|EAP2|OIP2|RP11-421P11.3|RRP43|Rrp43p|bA421P11.3|p9 HGNC:17035|MIM:606019|Ensembl:ENSG00000120699|HPRD:09351|Vega:OTTHUMG00000016742 13 13q13.1 exosome component 8 protein-coding EXOSC8 exosome component 8 O CBP-interacting protein 3|OIP-2|Opa interacting protein 2|exosome complex component RRP43|exosome complex exonuclease RRP43|opa-interacting protein 2|ribosomal RNA-processing protein 43 20121230 -9606 11341 SCRG1 UNQ390/PRO725 SCRG-1 HGNC:17036|MIM:603163|Ensembl:ENSG00000164106|HPRD:11932|Vega:OTTHUMG00000161249 4 4q34.1 stimulator of chondrogenesis 1 protein-coding SCRG1 stimulator of chondrogenesis 1 O scrapie responsive gene 1|scrapie responsive protein 1|scrapie-responsive gene 1 protein|scrapie-responsive protein 1 20121230 -9606 11342 RNF13 - RZF HGNC:10057|MIM:609247|Ensembl:ENSG00000082996|HPRD:11503|Vega:OTTHUMG00000150338 3 3q25.1 ring finger protein 13 protein-coding RNF13 ring finger protein 13 O E3 ubiquitin-protein ligase RNF13|RING zinc finger protein 20121230 -9606 11343 MGLL - HU-K5|HUK5|MAGL|MGL HGNC:17038|MIM:609699|Ensembl:ENSG00000074416|HPRD:17574|Vega:OTTHUMG00000159641 3 3q21.3 monoglyceride lipase protein-coding MGLL monoglyceride lipase O lysophospholipase homolog|monoacylglycerol lipase 20121230 -9606 11344 TWF2 MSTP011 A6RP|A6r|PTK9L HGNC:9621|MIM:607433|Ensembl:ENSG00000247596|HPRD:08464|Vega:OTTHUMG00000158105 3 3p21.1 twinfilin, actin-binding protein, homolog 2 (Drosophila) protein-coding TWF2 twinfilin, actin-binding protein, homolog 2 (Drosophila) O A6-related protein|PTK9L protein tyrosine kinase 9-like (A6-related protein)|protein tyrosine kinase 9-like (A6-related protein)|twinfilin-1-like protein|twinfilin-2 20121230 -9606 11345 GABARAPL2 - ATG8|ATG8C|GATE-16|GATE16|GEF-2|GEF2 HGNC:13291|MIM:607452|Ensembl:ENSG00000034713|HPRD:16246|Vega:OTTHUMG00000137613 16 16q22.1 GABA(A) receptor-associated protein-like 2 protein-coding GABARAPL2 GABA(A) receptor-associated protein-like 2 O MAP1 light chain 3 related protein|MAP1 light chain 3-related protein|gamma-aminobutyric acid receptor-associated protein-like 2|ganglioside expression factor 2|general protein transport factor p16|golgi-associated ATPase enhancer of 16 kDa 20121230 -9606 11346 SYNPO - - HGNC:30672|MIM:608155|Ensembl:ENSG00000171992|HPRD:12179|Vega:OTTHUMG00000130078 5 5q33.1 synaptopodin protein-coding SYNPO synaptopodin O - 20121230 -9606 22794 CASC3 - BTZ|MLN51 HGNC:17040|MIM:606504|Ensembl:ENSG00000108349|HPRD:16225|Vega:OTTHUMG00000133323 17 17q21.1 cancer susceptibility candidate 3 protein-coding CASC3 cancer susceptibility candidate 3 O MLN 51|barentsz|cancer susceptibility candidate gene 3 protein|metastatic lymph node 51|metastatic lymph node gene 51 protein|protein CASC3|protein barentsz 20121230 -9606 22795 NID2 - NID-2 HGNC:13389|MIM:605399|Ensembl:ENSG00000087303|HPRD:05654|Vega:OTTHUMG00000140298 14 14q22.1 nidogen 2 (osteonidogen) protein-coding NID2 nidogen 2 (osteonidogen) O nidogen-2|osteonidogen 20121230 -9606 22796 COG2 RP11-543E8.3 LDLC HGNC:6546|MIM:606974|Ensembl:ENSG00000135775|HPRD:07372|Vega:OTTHUMG00000037753 1 1q42.2 component of oligomeric golgi complex 2 protein-coding COG2 component of oligomeric golgi complex 2 O COG complex subunit 2|brefeldin A-sensitive, peripheral Golgi protein|conserved oligomeric Golgi complex protein 2|conserved oligomeric Golgi complex subunit 2|low density lipoprotein receptor defect C complementing|low density lipoprotein receptor defect C-complementing protein 20121230 -9606 22797 TFEC - TCFEC|TFE-C|TFEC-L|TFECL|bHLHe34|hTFEC-L HGNC:11754|MIM:604732|Ensembl:ENSG00000105967|HPRD:05294|Vega:OTTHUMG00000023518 7 7q31.2 transcription factor EC protein-coding TFEC transcription factor EC O class E basic helix-loop-helix protein 34 20121230 -9606 22798 LAMB4 - - HGNC:6491|Ensembl:ENSG00000091128|HPRD:11224|Vega:OTTHUMG00000154874 7 7q31 laminin, beta 4 protein-coding LAMB4 laminin, beta 4 O laminin beta-1-related protein|laminin subunit beta-4 20121230 -9606 22800 RRAS2 - TC21 HGNC:17271|MIM:600098|Ensembl:ENSG00000133818|HPRD:02518|Vega:OTTHUMG00000165756 11 11p15.2 related RAS viral (r-ras) oncogene homolog 2 protein-coding RRAS2 related RAS viral (r-ras) oncogene homolog 2 O ras-like protein TC21|ras-related protein R-Ras2|teratocarcinoma oncogene 20121230 -9606 22801 ITGA11 MSTP018 HsT18964 HGNC:6136|MIM:604789|Ensembl:ENSG00000137809|HPRD:05310|Vega:OTTHUMG00000172657 15 15q23 integrin, alpha 11 protein-coding ITGA11 integrin, alpha 11 O integrin alpha-11 20121230 -9606 22802 CLCA4 UNQ562/PRO1124 CaCC|CaCC2 HGNC:2018|Ensembl:ENSG00000016602|HPRD:16719|Vega:OTTHUMG00000010260 1 1p31-p22 chloride channel accessory 4 protein-coding CLCA4 chloride channel accessory 4 O caCC-2|calcium-activated chloride channel family member 4|calcium-activated chloride channel protein 2|calcium-activated chloride channel regulator 4|chloride channel regulator 4|chloride channel, calcium activated, family member 4|hCLCA4|hCaCC-2 20121230 -9606 22803 XRN2 RP11-227D2.1 - HGNC:12836|MIM:608851|Ensembl:ENSG00000088930|HPRD:10309|Vega:OTTHUMG00000032025 20 20p11.2-p11.1 5'-3' exoribonuclease 2 protein-coding XRN2 5'-3' exoribonuclease 2 O DHP protein|Dhm1-like protein (mouse homolog) 20121230 -9606 22806 IKZF3 - AIO|AIOLOS|ZNFN1A3 HGNC:13178|MIM:606221|Ensembl:ENSG00000161405|HPRD:05869|Vega:OTTHUMG00000133250 17 17q21 IKAROS family zinc finger 3 (Aiolos) protein-coding IKZF3 IKAROS family zinc finger 3 (Aiolos) O zinc finger protein Aiolos|zinc finger protein, subfamily 1A, 3 (Aiolos) 20121230 -9606 22807 IKZF2 - ANF1A2|HELIOS|ZNF1A2|ZNFN1A2 HGNC:13177|MIM:606234|Ensembl:ENSG00000030419|HPRD:05872|Vega:OTTHUMG00000133005 2 2q34 IKAROS family zinc finger 2 (Helios) protein-coding IKZF2 IKAROS family zinc finger 2 (Helios) O ikaros family zinc finger protein 2|zinc finger DNA binding protein Helios|zinc finger protein Helios|zinc finger protein, subfamily 1A, 2 (Helios) 20121230 -9606 22808 MRAS - M-RAs|R-RAS3|RRAS3 HGNC:7227|MIM:608435|Ensembl:ENSG00000158186|HPRD:06662|Vega:OTTHUMG00000159888 3 3q22.3 muscle RAS oncogene homolog protein-coding MRAS muscle RAS oncogene homolog O muscle and microspikes RAS|ras-related protein M-Ras|ras-related protein R-Ras3 20121230 -9606 22809 ATF5 - ATFX|HMFN0395 HGNC:790|MIM:606398|Ensembl:ENSG00000169136|HPRD:05906 19 19q13.3 activating transcription factor 5 protein-coding ATF5 activating transcription factor 5 O cAMP-dependent transcription factor ATF-5|cyclic AMP-dependent transcription factor ATF-5|transcription factor ATFx 20121230 -9606 22811 MBS3 - HCFP2 HGNC:6928|MIM:604185 10 10q21.3-q22.1 Moebius syndrome 3 unknown MBS3 Moebius syndrome 3 O - 20120622 -9606 22813 TDGF1P6 - CR-6|CRIPTO-6|TDGF6 HGNC:11706 3 3q22 teratocarcinoma-derived growth factor 1 pseudogene 6 pseudo TDGF1P6 teratocarcinoma-derived growth factor 1 pseudogene 6 O - 20121230 -9606 22814 TDGF1P5 - CR-5|CRIPTO-5|TDGF5 HGNC:11705 8 8q11.23 teratocarcinoma-derived growth factor 1 pseudogene 5 pseudo TDGF1P5 teratocarcinoma-derived growth factor 1 pseudogene 5 O - 20121230 -9606 22815 TDGF1P4 - CR-4|CRIPTO-4|TDGF4 HGNC:11704 6 6p25 teratocarcinoma-derived growth factor 1 pseudogene 4 pseudo TDGF1P4 teratocarcinoma-derived growth factor 1 pseudogene 4 O - 20121230 -9606 22816 TDGF1P2 hCG_1644233 CR-2|CRIPTO-2|TDGF2 HGNC:11702 2 2q36.3 teratocarcinoma-derived growth factor 1 pseudogene 2 pseudo TDGF1P2 teratocarcinoma-derived growth factor 1 pseudogene 2 O - 20121230 -9606 22817 NR1I4 - CAR2 HGNC:7970 - - nuclear receptor subfamily 1, group I, member 4 protein-coding NR1I4 nuclear receptor subfamily 1, group I, member 4 O - 20080828 -9606 22818 COPZ1 CGI-120 COPZ|HSPC181|zeta-COP|zeta1-COP HGNC:2243|Ensembl:ENSG00000111481|HPRD:16738|Vega:OTTHUMG00000169762 12 12q13.2-q13.3 coatomer protein complex, subunit zeta 1 protein-coding COPZ1 coatomer protein complex, subunit zeta 1 O coatomer subunit zeta-1|zeta-1 COP|zeta-1-coat protein 20121230 -9606 22820 COPG1 - COPG HGNC:2236|Ensembl:ENSG00000181789|HPRD:09887|Vega:OTTHUMG00000159451 3 3q21.3 coatomer protein complex, subunit gamma 1 protein-coding COPG1 coatomer protein complex, subunit gamma 1 O coat protein gamma-cop|coatomer subunit gamma|coatomer subunit gamma-1|gamma-1-COP|gamma-1-coat protein|gamma-COP|gamma-coat protein 20121230 -9606 22821 RASA3 RP11-245B11.3 GAP1IP4BP|GAPIII HGNC:20331|MIM:605182|Ensembl:ENSG00000185989|HPRD:05537|Vega:OTTHUMG00000017399 13 13q34 RAS p21 protein activator 3 protein-coding RASA3 RAS p21 protein activator 3 O GAP1(IP4BP)|GTPase activating protein III|Ins(1,3,4,5)P4-binding protein|inositol 1,3,4,5-tetrakisphosphate-binding protein|ins P4-binding protein|ras GTPase-activating protein 3 20121230 -9606 22822 PHLDA1 - DT1P1B11|PHRIP|TDAG51 HGNC:8933|MIM:605335|Ensembl:ENSG00000139289|HPRD:05625|Vega:OTTHUMG00000169783 12 12q15 pleckstrin homology-like domain, family A, member 1 protein-coding PHLDA1 pleckstrin homology-like domain, family A, member 1 O PQ-rich protein|PQR protein|T-cell death-associated gene 51 protein|apoptosis-associated nuclear protein|pleckstrin homology-like domain family A member 1|proline- and glutamine-rich protein|proline- and histidine-rich protein|proline-histidine rich protein 20121230 -9606 22823 MTF2 - M96|PCL2|RP5-976O13.1|dJ976O13.2 HGNC:29535|MIM:609882|Ensembl:ENSG00000143033|HPRD:14342|Vega:OTTHUMG00000010161 1 1p22.1 metal response element binding transcription factor 2 protein-coding MTF2 metal response element binding transcription factor 2 O hPCl2|metal regulatory transcription factor 2|metal response element-binding transcription factor 2|metal-response element DNA-binding protein M96|metal-response element-binding transcription factor 2|polycomb-like 2|polycomb-like protein 2|putative DNA binding protein 20121230 -9606 22824 HSPA4L - APG-1|HSPH3|Osp94 HGNC:17041|Ensembl:ENSG00000164070|HPRD:07137|Vega:OTTHUMG00000133302 4 4q28 heat shock 70kDa protein 4-like protein-coding HSPA4L heat shock 70kDa protein 4-like O heat shock 70 kDa protein 4-like protein|heat shock 70 kDa protein 4L|heat shock 70-related protein APG-1|heat shock protein (hsp110 family)|osmotic stress protein 94 20121230 -9606 22826 DNAJC8 HSPC315 HSPC331|SPF31 HGNC:15470|Ensembl:ENSG00000126698|HPRD:13236|Vega:OTTHUMG00000003538 1 1p35.3 DnaJ (Hsp40) homolog, subfamily C, member 8 protein-coding DNAJC8 DnaJ (Hsp40) homolog, subfamily C, member 8 O dnaJ homolog subfamily C member 8|splicing protein spf31 20121230 -9606 22827 PUF60 - FIR|RoBPI|SIAHBP1 HGNC:17042|MIM:604819|Ensembl:ENSG00000179950|HPRD:18051|Vega:OTTHUMG00000165155 8 8q24.3 poly-U binding splicing factor 60KDa protein-coding PUF60 poly-U binding splicing factor 60KDa O FBP interacting repressor|FUSE-binding protein-interacting repressor|Ro ribonucleoprotein-binding protein 1|Siah binding protein 1|poly(U)-binding-splicing factor PUF60|pyrimidine tract binding splicing factor 20121230 -9606 22828 SCAF8 - RBM16 HGNC:20959|Ensembl:ENSG00000213079|HPRD:11487|Vega:OTTHUMG00000015877 6 6q25.1-q25.3 SR-related CTD-associated factor 8 protein-coding SCAF8 SR-related CTD-associated factor 8 O CDC5L complex-associated protein 7|RNA binding motif protein 16|RNA-binding motif protein 16|RNA-binding protein 16|SR-like CTD-associated factor 8|SR-related and CTD-associated factor 8|protein SCAF8|putative RNA-binding protein 16 20121230 -9606 22829 NLGN4Y - - HGNC:15529|MIM:400028|Ensembl:ENSG00000165246|HPRD:11849|Vega:OTTHUMG00000036618 Y Yq11.221 neuroligin 4, Y-linked protein-coding NLGN4Y neuroligin 4, Y-linked O neuroligin-4, Y-linked 20121230 -9606 22832 KIAA1009 RP1-76K10.1 C6orf84|QN1 HGNC:21107|MIM:610201|Ensembl:ENSG00000135315|HPRD:10796|Vega:OTTHUMG00000015123 6 6q14.3 KIAA1009 protein-coding KIAA1009 KIAA1009 O protein QN1 homolog 20121230 -9606 22833 KIAA0894 RP11-476E15.3 - - 10 10q23.33 KIAA0894 protein unknown - - - - 20120710 -9606 22834 ZNF652 - - HGNC:29147|MIM:613907|Ensembl:ENSG00000198740|HPRD:18362|Vega:OTTHUMG00000161322 17 17q21.32 zinc finger protein 652 protein-coding ZNF652 zinc finger protein 652 O - 20121230 -9606 22835 ZFP30 - ZNF745 HGNC:29555|Ensembl:ENSG00000120784|HPRD:17201|Vega:OTTHUMG00000048177 19 19q13.12 ZFP30 zinc finger protein protein-coding ZFP30 ZFP30 zinc finger protein O zfp-30|zinc finger protein 30 homolog|zinc finger protein 745 20121230 -9606 22836 RHOBTB3 - - HGNC:18757|MIM:607353|Ensembl:ENSG00000164292|HPRD:09557|Vega:OTTHUMG00000121171 5 5q15 Rho-related BTB domain containing 3 protein-coding RHOBTB3 Rho-related BTB domain containing 3 O rho-related BTB domain-containing protein 3 20121230 -9606 22837 COBLL1 - COBLR1 HGNC:23571|MIM:610318|Ensembl:ENSG00000082438|HPRD:10844|Vega:OTTHUMG00000074019 2 2q24.3 cordon-bleu WH2 repeat protein-like 1 protein-coding COBLL1 cordon-bleu WH2 repeat protein-like 1 O COBL-like 1|cordon-bleu protein-like 1 20121230 -9606 22838 RNF44 - - HGNC:19180|Ensembl:ENSG00000146083|HPRD:15265|Vega:OTTHUMG00000130664 5 5q35.2 ring finger protein 44 protein-coding RNF44 ring finger protein 44 O RING finger protein 44 20121230 -9606 22839 DLGAP4 - DAP4|DLP4|RP5-977B1.6|SAPAP4 HGNC:24476|Ensembl:ENSG00000080845|HPRD:16826|Vega:OTTHUMG00000032390 20 20q11.23 discs, large (Drosophila) homolog-associated protein 4 protein-coding DLGAP4 discs, large (Drosophila) homolog-associated protein 4 O DAP-4|PSD-95/SAP90-binding protein 4|SAP90/PSD-95-associated protein 4|SAPAP-4|disks large associated protein 4|disks large-associated protein 4 20121230 -9606 22841 RAB11FIP2 - Rab11-FIP2|nRip11 HGNC:29152|MIM:608599|Ensembl:ENSG00000107560|HPRD:10548|Vega:OTTHUMG00000019128 10 10q26.11 RAB11 family interacting protein 2 (class I) protein-coding RAB11FIP2 RAB11 family interacting protein 2 (class I) O RAB11-FIP2 long isoform|rab11 family-interacting protein 2 20121230 -9606 22843 PPM1E - CaMKP-N|POPX1|PP2CH|caMKN HGNC:19322|Ensembl:ENSG00000175175|HPRD:17888|Vega:OTTHUMG00000179248 17 17q22 protein phosphatase, Mg2+/Mn2+ dependent, 1E protein-coding PPM1E protein phosphatase, Mg2+/Mn2+ dependent, 1E O ca(2+)/calmodulin-dependent protein kinase phosphatase N|caMKP-nucleus|nuclear calmodulin-dependent protein kinase phosphatase|partner of PIX 1|partner of PIX-alpha|partner of PIXA|protein phosphatase 1E|protein phosphatase 1E (PP2C domain containing) 20121230 -9606 22844 FRMPD1 RP11-263I4.1 FRMD2 HGNC:29159|Ensembl:ENSG00000070601|HPRD:17018|Vega:OTTHUMG00000019927 9 9p13.2 FERM and PDZ domain containing 1 protein-coding FRMPD1 FERM and PDZ domain containing 1 O FERM and PDZ domain-containing protein 1|FERM domain-containing protein 2 20121230 -9606 22845 DOLK UNQ2422/PRO4980 CDG1M|DK|DK1|SEC59|TMEM15 HGNC:23406|MIM:610746|Ensembl:ENSG00000175283|HPRD:15525|Vega:OTTHUMG00000020765 9 9q34.11 dolichol kinase protein-coding DOLK dolichol kinase O SEC59 homolog|dolichol kinase 1|transmembrane protein 15 20121230 -9606 22846 VASH1 - KIAA1036 HGNC:19964|MIM:609011|Ensembl:ENSG00000071246|HPRD:12353|Vega:OTTHUMG00000171493 14 14q24.3 vasohibin 1 protein-coding VASH1 vasohibin 1 O vasohibin-1 20121230 -9606 22847 ZNF507 - - HGNC:23783|Ensembl:ENSG00000168813|HPRD:11722|Vega:OTTHUMG00000180220 19 19q13.11 zinc finger protein 507 protein-coding ZNF507 zinc finger protein 507 O - 20121230 -9606 22848 AAK1 - - HGNC:19679|Ensembl:ENSG00000115977|HPRD:10620|Vega:OTTHUMG00000129648 2 2p14 AP2 associated kinase 1 protein-coding AAK1 AP2 associated kinase 1 O AP2-associated protein kinase 1|adaptor-associated kinase 1 20121230 -9606 22849 CPEB3 RP11-430L14.3 - HGNC:21746|MIM:610606|Ensembl:ENSG00000107864|HPRD:16745|Vega:OTTHUMG00000018756 10 10q23.32 cytoplasmic polyadenylation element binding protein 3 protein-coding CPEB3 cytoplasmic polyadenylation element binding protein 3 O CPE-BP3|CPE-binding protein 3|cytoplasmic polyadenylation element-binding protein 3|hCPEB-3 20121230 -9606 22850 ADNP2 - ZNF508 HGNC:23803|Ensembl:ENSG00000101544|HPRD:13822|Vega:OTTHUMG00000172535 18 18q23 ADNP homeobox 2 protein-coding ADNP2 ADNP homeobox 2 O ADNP homeobox protein 2|zinc finger protein 508 20121230 -9606 22852 ANKRD26 - THC2|bA145E8.1 HGNC:29186|MIM:610855|Ensembl:ENSG00000107890|HPRD:16491|Vega:OTTHUMG00000017851 10 10p12.1 ankyrin repeat domain 26 protein-coding ANKRD26 ankyrin repeat domain 26 O ankyrin repeat domain-containing protein 26 20121230 -9606 22853 LMTK2 - AATYK2|BREK|KPI-2|KPI2|LMR2|cprk HGNC:17880|MIM:610989|Ensembl:ENSG00000164715|HPRD:13994|Vega:OTTHUMG00000154256 7 7q21.3 lemur tyrosine kinase 2 protein-coding LMTK2 lemur tyrosine kinase 2 O CDK5/p35-regulated kinase|apoptosis-associated tyrosine kinase 2|brain-enriched kinase|cyclin-dependent kinase 5/p35-regulated kinase|hBREK|kinase phosphatase inhibitor 2|kinase/phosphatase/inhibitor 2|serine/threonine-protein kinase KPI-2|serine/threonine-protein kinase LMTK2 20121230 -9606 22854 NTNG1 UNQ571/PRO1133 Lmnt1 HGNC:23319|MIM:608818|Ensembl:ENSG00000162631|HPRD:16389|Vega:OTTHUMG00000010965 1 1p13.3 netrin G1 protein-coding NTNG1 netrin G1 O YLSR571|axon guidance molecule|laminet 1|laminet-1|netrin G1f|netrin-G1 20121230 -9606 22856 CHSY1 UNQ756/PRO1487 CHSY|CSS1|ChSy-1|TPBS HGNC:17198|MIM:608183|Ensembl:ENSG00000131873|HPRD:10493|Vega:OTTHUMG00000149873 15 15q26.3 chondroitin sulfate synthase 1 protein-coding CHSY1 chondroitin sulfate synthase 1 O N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase 1|N-acetylgalactosaminyltransferase II|carbohydrate synthase 1|chondroitin glucuronyltransferase 1|chondroitin glucuronyltransferase II|chondroitin synthase 1|glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase 1 20121230 -9606 22858 ICK - ECO|LCK2|MRK HGNC:21219|MIM:612325|Ensembl:ENSG00000112144|HPRD:09996|Vega:OTTHUMG00000014870 6 6p12.1 intestinal cell (MAK-like) kinase protein-coding ICK intestinal cell (MAK-like) kinase O MAK-related kinase|hICK|laryngeal cancer kinase 2|serine/threonine protein kinase|serine/threonine-protein kinase ICK 20121230 -9606 22859 LPHN1 - CIRL1|CL1|LEC2 HGNC:20973|Ensembl:ENSG00000072071|HPRD:14305|Vega:OTTHUMG00000182138 19 19p13.2 latrophilin 1 protein-coding LPHN1 latrophilin 1 O CIRL-1|calcium-independent alpha-latrotoxin receptor 1|latrophilin-1|lectomedin-2 20121230 -9606 22861 NLRP1 - CARD7|CLR17.1|DEFCAP|DEFCAP-L/S|NAC|NALP1|PP1044|SLEV1|VAMAS1 HGNC:14374|MIM:606636|Ensembl:ENSG00000091592|HPRD:07364|Vega:OTTHUMG00000132419 17 17p13.2 NLR family, pyrin domain containing 1 protein-coding NLRP1 NLR family, pyrin domain containing 1 O NACHT, LRR and PYD containing protein 1|NACHT, LRR and PYD domains-containing protein 1|NACHT, leucine rich repeat and PYD (pyrin domain) containing 1|NACHT, leucine rich repeat and PYD containing 1|caspase recruitment domain protein 7|caspase recruitment domain-containing protein 7|death effector filament-forming Ced-4-like apoptosis protein|nucleotide-binding domain and caspase recruitment domain|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 1 20121230 -9606 22862 FNDC3A RP11-203I16.5 FNDC3|HUGO|bA203I16.1|bA203I16.5 HGNC:20296|Ensembl:ENSG00000102531|HPRD:13548|Vega:OTTHUMG00000016911 13 13q14.2 fibronectin type III domain containing 3A protein-coding FNDC3A fibronectin type III domain containing 3A O fibronectin type-III domain-containing protein 3A|human gene expressed in odontoblasts 20121230 -9606 22863 ATG14 - ATG14L|BARKOR|KIAA0831 HGNC:19962|MIM:613515|Ensembl:ENSG00000126775|HPRD:13820|Vega:OTTHUMG00000172129 14 14q22.3 autophagy related 14 protein-coding ATG14 autophagy related 14 O ATG14 autophagy related 14 homolog|Beclin 1-Interacting protein|autophagy-related protein 14-like protein|beclin 1-associated autophagy-related key regulator 20121230 -9606 22864 R3HDM2 - PR01365 HGNC:29167|Ensembl:ENSG00000179912|HPRD:13827|Vega:OTTHUMG00000171568 12 12q13.3 R3H domain containing 2 protein-coding R3HDM2 R3H domain containing 2 O R3H domain-containing protein 2 20121230 -9606 22865 SLITRK3 - - HGNC:23501|MIM:609679|Ensembl:ENSG00000121871|HPRD:18064|Vega:OTTHUMG00000158072 3 3q26.1 SLIT and NTRK-like family, member 3 protein-coding SLITRK3 SLIT and NTRK-like family, member 3 O SLIT and NTRK-like protein 3|slit and trk like gene 3 20121230 -9606 22866 CNKSR2 RP11-450P7.2 CNK2|KSR2|MAGUIN HGNC:19701|MIM:300724|Ensembl:ENSG00000149970|HPRD:06473|Vega:OTTHUMG00000021233 X Xp22.12 connector enhancer of kinase suppressor of Ras 2 protein-coding CNKSR2 connector enhancer of kinase suppressor of Ras 2 O CNK homolog protein 2|connector enhancer of KSR 2|connector enhancer of KSR2|connector enhancer of kinase suppressor of ras 2|membrane-associated guanylate kinase-interacting protein 20121230 -9606 22868 FASTKD2 - KIAA0971 HGNC:29160|MIM:612322|Ensembl:ENSG00000118246|HPRD:13825|Vega:OTTHUMG00000132917 2 2q33.3 FAST kinase domains 2 protein-coding FASTKD2 FAST kinase domains 2 O FAST kinase domain-containing protein 2 20121230 -9606 22869 ZNF510 RP11-535M15.3 - HGNC:29161|Ensembl:ENSG00000081386|HPRD:18348|Vega:OTTHUMG00000020303 9 9q22.33 zinc finger protein 510 protein-coding ZNF510 zinc finger protein 510 O - 20121230 -9606 22870 PPP6R1 - KIAA1115|PP6R1|SAP190|SAPS1 HGNC:29195|MIM:610875|Ensembl:ENSG00000105063|HPRD:17207|Vega:OTTHUMG00000180704 19 19q13.42 protein phosphatase 6, regulatory subunit 1 protein-coding PPP6R1 protein phosphatase 6, regulatory subunit 1 O SAPS domain family, member 1|serine/threonine-protein phosphatase 6 regulatory subunit 1 20121230 -9606 22871 NLGN1 - NL1 HGNC:14291|MIM:600568|Ensembl:ENSG00000169760|HPRD:07195|Vega:OTTHUMG00000157005 3 3q26.31 neuroligin 1 protein-coding NLGN1 neuroligin 1 O neuroligin-1 20121230 -9606 22872 SEC31A HSPC275 ABP125|ABP130|HSPC334|SEC31L1 HGNC:17052|MIM:610257|Ensembl:ENSG00000138674|HPRD:15314|Vega:OTTHUMG00000130297 4 4q21.22 SEC31 homolog A (S. cerevisiae) protein-coding SEC31A SEC31 homolog A (S. cerevisiae) O SEC31-like protein 1|SEC31-related protein A|protein transport protein Sec31A|web1-like protein|yeast Sec31p homolog 20121230 -9606 22873 DZIP1 RP11-23E3.3 DZIP|DZIPt1 HGNC:20908|MIM:608671|Ensembl:ENSG00000134874|HPRD:16363|Vega:OTTHUMG00000017224 13 13q32.1 DAZ interacting protein 1 protein-coding DZIP1 DAZ interacting protein 1 O DAZ interacting protein testis1|DAZ-interacting protein 1/2|zinc finger DAZ interacting protein 1|zinc finger protein DZIP1|zinc-finger protein DZIPt1 20121230 -9606 22874 PLEKHA6 RP11-203F10.4 PEPP-3|PEPP3 HGNC:17053|MIM:607771|Ensembl:ENSG00000143850|HPRD:09685|Vega:OTTHUMG00000036057 1 1q32.1 pleckstrin homology domain containing, family A member 6 protein-coding PLEKHA6 pleckstrin homology domain containing, family A member 6 O PH domain-containing family A member 6|phosphoinositol 3-phosphate-binding protein 3|phosphoinositol 3-phosphate-binding protein-3|pleckstrin homology domain-containing family A member 6 20121230 -9606 22875 ENPP4 - NPP4 HGNC:3359|Ensembl:ENSG00000001561|HPRD:16862|Vega:OTTHUMG00000014779 6 6p21.1 ectonucleotide pyrophosphatase/phosphodiesterase 4 (putative) protein-coding ENPP4 ectonucleotide pyrophosphatase/phosphodiesterase 4 (putative) O E-NPP 4|NPP-4|ectonucleotide pyrophosphatase/phosphodiesterase 4 (putative function)|ectonucleotide pyrophosphatase/phosphodiesterase family member 4 20121230 -9606 22876 INPP5F MSTP007 MSTPO47|SAC2|hSAC2 HGNC:17054|MIM:609389|Ensembl:ENSG00000198825|HPRD:11048|Vega:OTTHUMG00000019158 10 10q26.11 inositol polyphosphate-5-phosphatase F protein-coding INPP5F inositol polyphosphate-5-phosphatase F O Sac domain-containing inositol phosphatase 2|phosphatidylinositide phosphatase SAC2|sac domain-containing phosphoinositide 5-phosphatase 2 20121230 -9606 22877 MLXIP - MIR|MONDOA|bHLHe36 HGNC:17055|MIM:608090|Ensembl:ENSG00000175727|HPRD:10478|Vega:OTTHUMG00000168953 12 12q24.31 MLX interacting protein protein-coding MLXIP MLX interacting protein O MLX-interacting protein|Mlx interactor|MondoA|class E basic helix-loop-helix protein 36|transcriptional activator MondoA 20121230 -9606 22878 TRAPPC8 - GSG1|HsT2706|KIAA1012|TRS85 HGNC:29169|MIM:614136|Ensembl:ENSG00000153339|HPRD:10019|Vega:OTTHUMG00000132267 18 18q12.1 trafficking protein particle complex 8 protein-coding TRAPPC8 trafficking protein particle complex 8 O general sporulation gene 1 homolog|protein TRS85 homolog|trafficking protein particle complex subunit 8 20121230 -9606 22879 MON1B - HSRG1|SAND2|SRG1 HGNC:25020|MIM:608954|Ensembl:ENSG00000103111|HPRD:12342|Vega:OTTHUMG00000137618 16 16q23.1 MON1 homolog B (yeast) protein-coding MON1B MON1 homolog B (yeast) O HSV-1 stimulation-related gene 1 protein|HSV-I stimulating-related protein|vacuolar fusion protein MON1 homolog B 20121230 -9606 22880 MORC2 - ZCW3|ZCWCC1 HGNC:23573|Ensembl:ENSG00000133422|HPRD:11699|Vega:OTTHUMG00000151193 22 22q12.2 MORC family CW-type zinc finger 2 protein-coding MORC2 MORC family CW-type zinc finger 2 O MORC family CW-type zinc finger protein 2|zinc finger CW-type coiled-coil domain protein 1|zinc finger, CW type with coiled-coil domain 1|zinc finger, CW-type with coiled-coil domain 1 20121230 -9606 22881 ANKRD6 RP1-122O8.2 - HGNC:17280|MIM:610583|Ensembl:ENSG00000135299|HPRD:09798|Vega:OTTHUMG00000015202 6 6q14.2-q16.1 ankyrin repeat domain 6 protein-coding ANKRD6 ankyrin repeat domain 6 O ankyrin repeat domain-containing protein 6|diversin 20121230 -9606 22882 ZHX2 - AFR1|RAF HGNC:18513|MIM:609185|Ensembl:ENSG00000178764|HPRD:16458|Vega:OTTHUMG00000165077 8 8q24.13 zinc fingers and homeoboxes 2 protein-coding ZHX2 zinc fingers and homeoboxes 2 O AFP regulator 1|alpha-fetoprotein regulator 1|regulator of AFP|transcription factor ZHX2|zinc finger and homeodomain protein 2|zinc fingers and homeoboxes protein 2|zinc-fingers and homeoboxes 2 20121230 -9606 22883 CLSTN1 RP11-558F24.5 ALC-ALPHA|CDHR12|CSTN1|PIK3CD|XB31alpha|alcalpha1|alcalpha2 HGNC:17447|MIM:611321|Ensembl:ENSG00000171603|HPRD:10837|Vega:OTTHUMG00000001451 1 1p36.22 calsyntenin 1 protein-coding CLSTN1 calsyntenin 1 O alcadein alpha 1|alcadein-alpha|alzheimer-related cadherin-like protein|cadherin-related family member 12|calsyntenin-1|non-classical cadherin XB31alpha|non-classical cadherin XB31alpha1 20121230 -9606 22884 WDR37 - RP11-529L18.2 HGNC:31406|Ensembl:ENSG00000047056|HPRD:15668|Vega:OTTHUMG00000017540 10 10p15.3 WD repeat domain 37 protein-coding WDR37 WD repeat domain 37 O WD repeat-containing protein 37 20121230 -9606 22885 ABLIM3 HMFN1661 - HGNC:29132|MIM:611305|Ensembl:ENSG00000173210|HPRD:12411|Vega:OTTHUMG00000129932 5 5q32 actin binding LIM protein family, member 3 protein-coding ABLIM3 actin binding LIM protein family, member 3 O abLIM-3|actin-binding LIM protein 3|actin-binding LIM protein family member 3 20121230 -9606 22887 FOXJ3 - - HGNC:29178|Ensembl:ENSG00000198815|HPRD:13549|Vega:OTTHUMG00000007026 1 1p34.2 forkhead box J3 protein-coding FOXJ3 forkhead box J3 O forkhead box protein J3 20121230 -9606 22888 UBOX5 RP5-1187M17.9 RNF37|UBCE7IP5|UIP5 HGNC:17777|Ensembl:ENSG00000185019|HPRD:15605|Vega:OTTHUMG00000031731 20 20p13 U-box domain containing 5 protein-coding UBOX5 U-box domain containing 5 O RING finger protein 37|U-box domain-containing protein 5|ubiquitin conjugating enzyme 7 interacting protein 5|ubiquitin-conjugating enzyme 7-interacting protein 5 20121230 -9606 22889 KIAA0907 - BLOM7|RP11-336K24.1 HGNC:29145|Ensembl:ENSG00000132680|HPRD:17198|Vega:OTTHUMG00000014103 1 1q22 KIAA0907 protein-coding KIAA0907 KIAA0907 O UPF0469 protein KIAA0907 20121230 -9606 22890 ZBTB1 - ZNF909 HGNC:20259|Ensembl:ENSG00000126804|HPRD:15688|Vega:OTTHUMG00000171147 14 14q23.3 zinc finger and BTB domain containing 1 protein-coding ZBTB1 zinc finger and BTB domain containing 1 O zinc finger and BTB domain-containing protein 1 20121230 -9606 22891 ZNF365 - Su48|UAN|ZNF365D HGNC:18194|MIM:607818|Ensembl:ENSG00000138311|HPRD:06380|Vega:OTTHUMG00000018302 10 10q21.2 zinc finger protein 365 protein-coding ZNF365 zinc finger protein 365 O protein ZNF365|protein su48|talanin 20121230 -9606 22893 BAHD1 - - HGNC:29153|MIM:613880|Ensembl:ENSG00000140320|HPRD:12518|Vega:OTTHUMG00000129982 15 15q15.1 bromo adjacent homology domain containing 1 protein-coding BAHD1 bromo adjacent homology domain containing 1 O BAH domain-containing protein 1|bromo adjacent homology domain-containing 1 protein 20121230 -9606 22894 DIS3 - EXOSC11|KIAA1008|RP11-342J4.3|RRP44|bA555G22.1|dis3p HGNC:20604|MIM:607533|Ensembl:ENSG00000083520|HPRD:06338|Vega:OTTHUMG00000017070 13 13q22.1 DIS3 mitotic control homolog (S. cerevisiae) protein-coding DIS3 DIS3 mitotic control homolog (S. cerevisiae) O 2810028N01Rik|exosome complex exonuclease RRP44|exosome component 11|mitotic control protein dis3 homolog|protein DIS3 homolog|ribosomal RNA-processing protein 44 20121230 -9606 22895 RPH3A - - HGNC:17056|MIM:612159|Ensembl:ENSG00000089169|HPRD:15273|Vega:OTTHUMG00000169713 12 12q24.13 rabphilin 3A homolog (mouse) protein-coding RPH3A rabphilin 3A homolog (mouse) O exophilin-1|rabphilin-3A 20121230 -9606 22897 CEP164 - NPHP15 HGNC:29182|MIM:614848|Ensembl:ENSG00000110274|HPRD:10854|Vega:OTTHUMG00000167070 11 11q23.3 centrosomal protein 164kDa protein-coding CEP164 centrosomal protein 164kDa O centrosomal protein of 164 kDa 20121230 -9606 22898 DENND3 - - HGNC:29134|Ensembl:ENSG00000105339|HPRD:11114|Vega:OTTHUMG00000164775 8 8q24.3 DENN/MADD domain containing 3 protein-coding DENND3 DENN/MADD domain containing 3 O DENN domain-containing protein 3 20121230 -9606 22899 ARHGEF15 - ARGEF15|E5|Ephexin5|Vsm-RhoGEF HGNC:15590|MIM:608504|Ensembl:ENSG00000198844|HPRD:10535|Vega:OTTHUMG00000108187 17 17p13.1 Rho guanine nucleotide exchange factor (GEF) 15 protein-coding ARHGEF15 Rho guanine nucleotide exchange factor (GEF) 15 O Rho GEF 15|Rho guanine exchange factor (GEF) 15|ephexin-5|rho guanine nucleotide exchange factor 15 20121230 -9606 22900 CARD8 - CARDINAL|DACAR|DAKAR|NDPP|NDPP1|TUCAN HGNC:17057|MIM:609051|Ensembl:ENSG00000105483|HPRD:16425|Vega:OTTHUMG00000165047 19 19q13.33 caspase recruitment domain family, member 8 protein-coding CARD8 caspase recruitment domain family, member 8 O CARD inhibitor of NF-kappaB-activating ligands|apoptotic protein NDPP1|caspase recruitment domain-containing protein 8|tumor up-regulated CARD-containing antagonist of CASP9|tumor up-regulated CARD-containing antagonist of caspase nine 20121230 -9606 22901 ARSG UNQ839/PRO1777 - HGNC:24102|MIM:610008|Ensembl:ENSG00000141337|HPRD:13826|Vega:OTTHUMG00000179810 17 17q24.2 arylsulfatase G protein-coding ARSG arylsulfatase G O ASG 20121230 -9606 22902 RUFY3 - RIPX|SINGAR1 HGNC:30285|MIM:611194|Ensembl:ENSG00000018189|HPRD:15251|Vega:OTTHUMG00000129910 4 4q13.3 RUN and FYVE domain containing 3 protein-coding RUFY3 RUN and FYVE domain containing 3 O protein RUFY3|rap2 interacting protein x|rap2-interacting protein x|singar|single axon-regulated protein|single axon-related 1 20121230 -9606 22903 BTBD3 RP4-742J24.3 dJ742J24.1 HGNC:15854|Ensembl:ENSG00000132640|HPRD:12538|Vega:OTTHUMG00000031889 20 20p12.2 BTB (POZ) domain containing 3 protein-coding BTBD3 BTB (POZ) domain containing 3 O BTB/POZ domain-containing protein 3 20121230 -9606 22904 SBNO2 - KIAA0963|SNO|STNO HGNC:29158|Ensembl:ENSG00000064932|HPRD:17203|Vega:OTTHUMG00000181875 19 19p13.3 strawberry notch homolog 2 (Drosophila) protein-coding SBNO2 strawberry notch homolog 2 (Drosophila) O protein strawberry notch homolog 2 20121230 -9606 22905 EPN2 - EHB21 HGNC:18639|MIM:607263|Ensembl:ENSG00000072134|HPRD:06271|Vega:OTTHUMG00000178447 17 17p11.2 epsin 2 protein-coding EPN2 epsin 2 O EPS-15-interacting protein 2|Eps15 binding protein|epsin-2 20121230 -9606 22906 TRAK1 - MILT1|OIP106 HGNC:29947|MIM:608112|Ensembl:ENSG00000182606|HPRD:09732|Vega:OTTHUMG00000131795 3 3p22.1 trafficking protein, kinesin binding 1 protein-coding TRAK1 trafficking protein, kinesin binding 1 O 106 kDa O-GlcNAc transferase-interacting protein|O-linked N-acetylglucosamine transferase interacting protein 106|OGT(O-Glc-NAc transferase)-interacting protein 106 KDa|milton homolog 1|trafficking kinesin-binding protein 1 20121230 -9606 22907 DHX30 - DDX30|RETCOR HGNC:16716|Ensembl:ENSG00000132153|HPRD:13142|Vega:OTTHUMG00000133522 3 3p21.31 DEAH (Asp-Glu-Ala-His) box polypeptide 30 protein-coding DHX30 DEAH (Asp-Glu-Ala-His) box polypeptide 30 O ATP-dependent RNA helicase DHX30|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 30|DEAH box protein 30|putative ATP-dependent RNA helicase DHX30|retina co-repressor 20121230 -9606 22908 SACM1L - SAC1 HGNC:17059|MIM:606569|Ensembl:ENSG00000211456|HPRD:07587|Vega:OTTHUMG00000156653 3 3p21.3 SAC1 suppressor of actin mutations 1-like (yeast) protein-coding SACM1L SAC1 suppressor of actin mutations 1-like (yeast) O phosphatidylinositide phosphatase SAC1|suppressor of actin 1|suppressor of actin mutations 1-like protein 20121230 -9606 22909 FAN1 - KIAA1018|KMIN|MTMR15 HGNC:29170|MIM:613534|Ensembl:ENSG00000198690|HPRD:17205|Vega:OTTHUMG00000175661 15 15q13.2-q13.3 FANCD2/FANCI-associated nuclease 1 protein-coding FAN1 FANCD2/FANCI-associated nuclease 1 O coiled-coil domain-containing protein MTMR15|fanconi anemia associated nuclease 1|fanconi-associated nuclease 1|myotubularin-related protein 15 20121230 -9606 22911 WDR47 - - HGNC:29141|Ensembl:ENSG00000085433|HPRD:15670|Vega:OTTHUMG00000011734 1 1p13.3 WD repeat domain 47 protein-coding WDR47 WD repeat domain 47 O WD repeat-containing protein 47|nemitin|neuronal enriched MAP interacting protein 20121230 -9606 22913 RALY RP1-64K7.1 HNRPCL2|P542 HGNC:15921|MIM:614663|Ensembl:ENSG00000125970|HPRD:11480|Vega:OTTHUMG00000032283 20 20q11.21-q11.23 RNA binding protein, autoantigenic (hnRNP-associated with lethal yellow homolog (mouse)) protein-coding RALY RNA binding protein, autoantigenic (hnRNP-associated with lethal yellow homolog (mouse)) O RNA-binding protein (autoantigenic)|RNA-binding protein (autoantigenic, hnRNP-associated with lethal yellow)|RNA-binding protein Raly|autoantigen p542|heterogeneous nuclear ribonucleoprotein C-like 2|hnRNP associated with lethal yellow protein homolog|hnRNP core protein C-like 2 20121230 -9606 22914 KLRK1 - CD314|D12S2489E|KLR|NKG2-D|NKG2D HGNC:18788|MIM:611817|Ensembl:ENSG00000213809|HPRD:17240|Vega:OTTHUMG00000168574 12 12p13.2-p12.3 killer cell lectin-like receptor subfamily K, member 1 protein-coding KLRK1 killer cell lectin-like receptor subfamily K, member 1 O NK cell receptor D|NKG2-D type II integral membrane protein|NKG2-D-activating NK receptor 20121230 -9606 22915 MMRN1 - ECM|EMILIN4|GPIa*|MMRN HGNC:7178|MIM:601456|Ensembl:ENSG00000138722|HPRD:03267|Vega:OTTHUMG00000130947 4 4q22 multimerin 1 protein-coding MMRN1 multimerin 1 O EMILIN-4|elastin microfibril interface located protein 4|elastin microfibril interfacer 4|endothelial cell multimerin|glycoprotein Ia*|multimerin-1 20121230 -9606 22916 NCBP2 PIG55 CBC2|CBP20|NIP1 HGNC:7659|MIM:605133|Ensembl:ENSG00000114503|HPRD:05503|Vega:OTTHUMG00000155520 3 3q29 nuclear cap binding protein subunit 2, 20kDa protein-coding NCBP2 nuclear cap binding protein subunit 2, 20kDa O 20 kDa nuclear cap-binding protein|NCBP 20 kDa subunit|NCBP interacting protein 1|NCBP-interacting protein 1|cell proliferation-inducing gene 55 protein|nuclear cap-binding protein subunit 2 20121230 -9606 22917 ZP1 - - HGNC:13187|MIM:195000|Ensembl:ENSG00000149506|HPRD:15953|Vega:OTTHUMG00000167797 11 11q12.2 zona pellucida glycoprotein 1 (sperm receptor) protein-coding ZP1 zona pellucida glycoprotein 1 (sperm receptor) O zona pellucida protein 1|zona pellucida sperm-binding protein 1|zp-1 20121230 -9606 22918 CD93 - C1QR1|C1qR(P)|C1qRP|CDw93|ECSM3|MXRA4|dJ737E23.1 HGNC:15855|MIM:120577|Ensembl:ENSG00000125810|HPRD:00396|Vega:OTTHUMG00000032058 20 20p11.21 CD93 molecule protein-coding CD93 CD93 molecule O C1q receptor 1|C1q/MBL/SPA receptor|C1qR|CD93 antigen|complement component 1 q subcomponent receptor 1|complement component 1, q subcomponent, receptor 1|complement component C1q receptor|matrix-remodeling-associated protein 4|matrix-remodelling associated 4 20121230 -9606 22919 MAPRE1 - EB1 HGNC:6890|MIM:603108|Ensembl:ENSG00000101367|HPRD:04379|Vega:OTTHUMG00000032228 20 20q11.1-q11.23 microtubule-associated protein, RP/EB family, member 1 protein-coding MAPRE1 microtubule-associated protein, RP/EB family, member 1 O APC-binding protein EB1|adenomatous polyposis coli-binding protein EB1|end-binding protein 1|microtubule-associated protein RP/EB family member 1 20121230 -9606 22920 KIFAP3 RP1-190I16.1 FLA3|KAP-1|KAP-3|KAP3|SMAP|Smg-GDS|dJ190I16.1 HGNC:17060|MIM:601836|Ensembl:ENSG00000075945|HPRD:03499|Vega:OTTHUMG00000035947 1 1q24.2 kinesin-associated protein 3 protein-coding KIFAP3 kinesin-associated protein 3 O small G protein GDP dissociation stimulator|smg GDS-associated protein 20121230 -9606 22921 MSRB2 CGI-131 CBS-1|CBS1|MSRB|PILB HGNC:17061|MIM:613782|Ensembl:ENSG00000148450|HPRD:17606|Vega:OTTHUMG00000017812 10 10p12 methionine sulfoxide reductase B2 protein-coding MSRB2 methionine sulfoxide reductase B2 O methionine-R-sulfoxide reductase B2, mitochondrial|pilin-like transcription factor 20121230 -9606 22924 MAPRE3 - EB3|EBF3|EBF3-S|RP3 HGNC:6892|MIM:605788|Ensembl:ENSG00000084764|HPRD:16156|Vega:OTTHUMG00000097067 2 2p23.3-p23.1 microtubule-associated protein, RP/EB family, member 3 protein-coding MAPRE3 microtubule-associated protein, RP/EB family, member 3 O APC binding protein|EB1 protein family member 3|end-binding protein 3|microtubule-associated protein RP/EB family member 3 20121230 -9606 22925 PLA2R1 - CLEC13C|PLA2-R|PLA2G1R|PLA2IR|PLA2R HGNC:9042|MIM:604939|Ensembl:ENSG00000153246|HPRD:09222|Vega:OTTHUMG00000154087 2 2q23-q24 phospholipase A2 receptor 1, 180kDa protein-coding PLA2R1 phospholipase A2 receptor 1, 180kDa O 180 kDa secretory phospholipase A2 receptor|C-type lectin domain family 13 member C|M-type receptor|secretory phospholipase A2 receptor 20121230 -9606 22926 ATF6 - ATF6A HGNC:791|MIM:605537|Ensembl:ENSG00000118217|HPRD:16118|Vega:OTTHUMG00000023961 1 1q22-q23 activating transcription factor 6 protein-coding ATF6 activating transcription factor 6 O cAMP-dependent transcription factor ATF-6 alpha|cyclic AMP-dependent transcription factor ATF-6 alpha 20121230 -9606 22927 HABP4 RP11-172F4.4 IHABP4|Ki-1/57|SERBP1L HGNC:17062|Ensembl:ENSG00000130956|HPRD:13628|Vega:OTTHUMG00000020298 9 9q22.3-q31 hyaluronan binding protein 4 protein-coding HABP4 hyaluronan binding protein 4 O IHABP-4|chromodomain helicase DNA binding protein 3 interacting protein|intracellular antigen detected by monoclonal antibody Ki-1|intracellular hyaluronan-binding protein 4|ki-1/57 intracellular antigen 20121230 -9606 22928 SEPHS2 - SPS2|SPS2b HGNC:19686|MIM:606218|Ensembl:ENSG00000179918|HPRD:12096|Vega:OTTHUMG00000176988 16 16p11.2 selenophosphate synthetase 2 protein-coding SEPHS2 selenophosphate synthetase 2 O selenide, water dikinase 2|selenium donor protein 2|selenophosphate synthase 2 20121230 -9606 22929 SEPHS1 RP11-24J20.2 SELD|SPS|SPS1 HGNC:19685|MIM:600902|Ensembl:ENSG00000086475|HPRD:02944|Vega:OTTHUMG00000017696 10 10p14 selenophosphate synthetase 1 protein-coding SEPHS1 selenophosphate synthetase 1 O selenide, water dikinase 1|selenium donor protein 1|selenophosphate synthase 1|selenophosphate synthetase 1 +E9|selenophosphate synthetase 1 +E9a|selenophosphate synthetase 1 delta E2|selenophosphate synthetase 1 delta E8|selenophosphate synthetase 1 major 20121230 -9606 22930 RAB3GAP1 - P130|RAB3GAP|RAB3GAP130|WARBM1 HGNC:17063|MIM:602536|Ensembl:ENSG00000115839|HPRD:16002|Vega:OTTHUMG00000154889 2 2q21.3 RAB3 GTPase activating protein subunit 1 (catalytic) protein-coding RAB3GAP1 RAB3 GTPase activating protein subunit 1 (catalytic) O RAB3 GTPase-activating protein 130 kDa subunit|rab3 GTPase-activating protein catalytic subunit|rab3-GAP p130 20121230 -9606 22931 RAB18 RP11-148B2.1 RAB18LI1|WARBM3 HGNC:14244|MIM:602207|Ensembl:ENSG00000099246|HPRD:03731|Vega:OTTHUMG00000017861 10 10p12.1 RAB18, member RAS oncogene family protein-coding RAB18 RAB18, member RAS oncogene family O RAB18 small GTPase|ras-related protein Rab-18 20121230 -9606 22932 POMZP3 - POM-ZP3|POM121 HGNC:9203|MIM:600587|Ensembl:ENSG00000146707|HPRD:15974|Vega:OTTHUMG00000023514 7 7q11.23 POM121 and ZP3 fusion protein-coding POMZP3 POM121 and ZP3 fusion O POM (POM121 homolog, rat) and ZP3 fusion|POM (POM121 rat homolog) and ZP3 fusion|POM-ZP3 fusion protein|POM121 and ZP3 fusion protein|POM121/ZP3 fusion protein 20121230 -9606 22933 SIRT2 - SIR2|SIR2L|SIR2L2 HGNC:10886|MIM:604480|Ensembl:ENSG00000068903|HPRD:10377|Vega:OTTHUMG00000150480 19 19q13 sirtuin 2 protein-coding SIRT2 sirtuin 2 O NAD-dependent deacetylase sirtuin-2|NAD-dependent protein deacetylase sirtuin-2|SIR2-like protein 2|regulatory protein SIR2 homolog 2|silent information regulator 2|sir2-related protein type 2|sirtuin type 2 20121230 -9606 22934 RPIA - RPI HGNC:10297|MIM:180430|Ensembl:ENSG00000153574|HPRD:01589|Vega:OTTHUMG00000130333 2 2p11.2 ribose 5-phosphate isomerase A protein-coding RPIA ribose 5-phosphate isomerase A O phosphoriboisomerase|ribose 5-phosphate epimerase|ribose-5-phosphate isomerase 20121230 -9606 22936 ELL2 - - HGNC:17064|MIM:601874|Ensembl:ENSG00000118985|HPRD:11798|Vega:OTTHUMG00000122085 5 5q15 elongation factor, RNA polymerase II, 2 protein-coding ELL2 elongation factor, RNA polymerase II, 2 O ELL-related RNA polymerase II, elongation factor|RNA polymerase II elongation factor ELL2 20121230 -9606 22937 SCAP PSEC0227 - HGNC:30634|MIM:601510|Ensembl:ENSG00000114650|HPRD:03300|Vega:OTTHUMG00000125539 3 3p21.31 SREBF chaperone protein-coding SCAP SREBF chaperone O SREBP cleavage-activating protein|sterol regulatory element binding protein cleavage-activating protein|sterol regulatory element-binding protein cleavage-activating protein 20121230 -9606 22938 SNW1 - Bx42|NCOA-62|PRPF45|Prp45|SKIIP|SKIP HGNC:16696|MIM:603055|Ensembl:ENSG00000100603|HPRD:04340|Vega:OTTHUMG00000171527 14 14q24.3 SNW domain containing 1 protein-coding SNW1 SNW domain containing 1 O SKI interacting protein|SKI-interacting protein|SNW domain-containing protein 1|homolog of Drosophila BX42|nuclear protein SkiP|nuclear receptor coactivator NCoA-62|nuclear receptor coactivator, 62-kD 20121230 -9606 22941 SHANK2 - AUTS17|CORTBP1|CTTNBP1|ProSAP1|SHANK|SPANK-3 HGNC:14295|MIM:603290|Ensembl:ENSG00000162105|HPRD:04479|Vega:OTTHUMG00000154615 11 11q13.2 SH3 and multiple ankyrin repeat domains 2 protein-coding SHANK2 SH3 and multiple ankyrin repeat domains 2 O GKAP/SAPAP interacting protein|SH3 and multiple ankyrin repeat domains protein 2|cortactin SH3 domain-binding protein|cortactin-binding protein 1|proline-rich synapse associated protein 1|proline-rich synapse-associated protein 1 20121230 -9606 22943 DKK1 UNQ492/PRO1008 DKK-1|SK HGNC:2891|MIM:605189|Ensembl:ENSG00000107984|HPRD:05544|Vega:OTTHUMG00000018247 10 10q11.2 dickkopf 1 homolog (Xenopus laevis) protein-coding DKK1 dickkopf 1 homolog (Xenopus laevis) O dickkopf related protein-1|dickkopf-1 like|dickkopf-like protein 1|dickkopf-related protein 1|hDkk-1 20121230 -9606 22944 KIN - BTCD|KIN17 HGNC:6327|MIM:601720|Ensembl:ENSG00000151657|HPRD:03425|Vega:OTTHUMG00000017634 10 10p15-p14 KIN, antigenic determinant of recA protein homolog (mouse) protein-coding KIN KIN, antigenic determinant of recA protein homolog (mouse) O DNA/RNA-binding protein KIN17|binding to curved DNA 20121230 -9606 22945 GPAA1P1 - - HGNC:4447 2 2q13 glycosylphosphatidylinositol anchor attachment 1 pseudogene 1 pseudo GPAA1P1 glycosylphosphatidylinositol anchor attachment 1 pseudogene 1 O - 20121209 -9606 22947 DUX4 - DUX10 HGNC:3082|MIM:606009|Ensembl:ENSG00000258389|HPRD:16189|Vega:OTTHUMG00000161317 4 4q35 double homeobox 4 protein-coding DUX4 double homeobox 4 O double homeobox protein 10|double homeobox protein 4|double homeobox protein 4/10|double homeobox protein DUX10 20121230 -9606 22948 CCT5 - CCT-epsilon|CCTE|TCP-1-epsilon HGNC:1618|MIM:610150|Ensembl:ENSG00000150753|HPRD:06468|Vega:OTTHUMG00000131042 5 5p15.2 chaperonin containing TCP1, subunit 5 (epsilon) protein-coding CCT5 chaperonin containing TCP1, subunit 5 (epsilon) O T-complex protein 1 subunit epsilon|T-complex protein 1, epsilon subunit 20121230 -9606 22949 PTGR1 RP11-16L21.1 LTB4DH|PGR1|ZADH3 HGNC:18429|MIM:601274|Ensembl:ENSG00000106853|HPRD:03173|Vega:OTTHUMG00000020493 9 9q31.3 prostaglandin reductase 1 protein-coding PTGR1 prostaglandin reductase 1 O 15-oxoprostaglandin 13-reductase|NADP-dependent leukotriene B4 12-hydroxydehydrogenase|PRG-1|leukotriene B4 12-hydroxydehydrogenase|zinc binding alcohol dehydrogenase domain containing 3 20121230 -9606 22950 SLC4A1AP HLC3 - HGNC:13813|MIM:602655|Ensembl:ENSG00000163798|HPRD:04038|Vega:OTTHUMG00000151944 2 2p23.3 solute carrier family 4 (anion exchanger), member 1, adaptor protein protein-coding SLC4A1AP solute carrier family 4 (anion exchanger), member 1, adaptor protein O HLC-3|human lung cancer oncogene 3 protein|kanadaptin|kidney anion exchanger adapter protein|kidney anion exchanger adaptor protein|lung cancer oncogene 3|solute carrier family 4 (anion exchanger), member 1, adapter protein|solute carrier family 4 anion exchanger member 1 adapter protein 20121230 -9606 22952 CYP2G1P - CYP2G1|CYP2G2P|CYP2GP1 HGNC:2633|MIM:601133 19 19q13.2 cytochrome P450, family 2, subfamily G, polypeptide 1 pseudogene pseudo CYP2G1P cytochrome P450, family 2, subfamily G, polypeptide 1 pseudogene O - 20121230 -9606 22953 P2RX2 - P2X2 HGNC:15459|MIM:600844|Ensembl:ENSG00000187848|HPRD:15984|Vega:OTTHUMG00000168018 12 12q24.33 purinergic receptor P2X, ligand-gated ion channel, 2 protein-coding P2RX2 purinergic receptor P2X, ligand-gated ion channel, 2 O ATP receptor|P2X Receptor, subunit 2|P2X purinoceptor 2 20121230 -9606 22954 TRIM32 RP11-67K19.1 BBS11|HT2A|LGMD2H|TATIP HGNC:16380|MIM:602290|Ensembl:ENSG00000119401|HPRD:03797|Vega:OTTHUMG00000021026 9 9q33.1 tripartite motif containing 32 protein-coding TRIM32 tripartite motif containing 32 O 72 kDa Tat-interacting protein|E3 ubiquitin-protein ligase TRIM32|TAT-interactive protein, 72-KD|tripartite motif-containing 32|tripartite motif-containing protein 32|zinc finger protein HT2A|zinc-finger protein HT2A 20121230 -9606 22955 SCMH1 - Scml3 HGNC:19003|Ensembl:ENSG00000010803|HPRD:11540|Vega:OTTHUMG00000005720 1 1p34 sex comb on midleg homolog 1 (Drosophila) protein-coding SCMH1 sex comb on midleg homolog 1 (Drosophila) O polycomb protein SCMH1 20121230 -9606 22969 RPL41P3 - - HGNC:10358 22 22q13.1 ribosomal protein L41 pseudogene 3 pseudo RPL41P3 ribosomal protein L41 pseudogene 3 O - 20121230 -9606 22970 RPL41P2 - - HGNC:10357 15 15q11-q13 ribosomal protein L41 pseudogene 2 pseudo RPL41P2 ribosomal protein L41 pseudogene 2 O - 20121230 -9606 22971 RPL41P1 - RPL41L2|dJ1065O2.1 HGNC:10356 20 20p11.23-p11.21 ribosomal protein L41 pseudogene 1 pseudo RPL41P1 ribosomal protein L41 pseudogene 1 O - 20121230 -9606 22973 LAMB2P1 - LAMB2L HGNC:6488 3 3p21.3-p21.2 laminin, beta 2 pseudogene 1 pseudo LAMB2P1 laminin, beta 2 pseudogene 1 O - 20121230 -9606 22974 TPX2 RP11-243J16.10-002 C20orf1|C20orf2|DIL-2|DIL2|FLS353|GD:C20orf1|HCA519|HCTP4|REPP86|p100 HGNC:1249|MIM:605917|Ensembl:ENSG00000088325|HPRD:05802|Vega:OTTHUMG00000032190 20 20q11.2 TPX2, microtubule-associated, homolog (Xenopus laevis) protein-coding TPX2 TPX2, microtubule-associated, homolog (Xenopus laevis) O TPX2, microtubule-associated protein homolog|differentially expressed in cancerous and non-cancerous lung cells 2|differentially expressed in lung cells|hepatocellular carcinoma-associated antigen 519|preferentially expressed in colorectal cancer|protein fls353|restricted expression proliferation associated protein 100|restricted expression proliferation-associated protein 100|targeting protein for Xklp2 20121230 -9606 22976 PAXIP1 CAGF28 CAGF29|PACIP1|PAXIP1L|PTIP|TNRC2 HGNC:8624|MIM:608254|Ensembl:ENSG00000157212|HPRD:08491|Vega:OTTHUMG00000151322 7 7q36 PAX interacting (with transcription-activation domain) protein 1 protein-coding PAXIP1 PAX interacting (with transcription-activation domain) protein 1 O PAX transcription activation domain interacting protein 1 like|PAX-interacting protein 1|protein encoded by CAG trinucleotide repeats 20121230 -9606 22977 AKR7A3 - AFAR2 HGNC:390|MIM:608477|Ensembl:ENSG00000162482|HPRD:07089|Vega:OTTHUMG00000002523 1 1p36.13 aldo-keto reductase family 7, member A3 (aflatoxin aldehyde reductase) protein-coding AKR7A3 aldo-keto reductase family 7, member A3 (aflatoxin aldehyde reductase) O AFB1 aldehyde reductase 2|AFB1-AR 2|aflatoxin B1 aldehyde reductase 2|aflatoxin B1 aldehyde reductase member 3 20121230 -9606 22978 NT5C2 RP11-30H12.3 GMP|NT5B|PNT5|cN-II HGNC:8022|MIM:600417|Ensembl:ENSG00000076685|HPRD:02686|Vega:OTTHUMG00000018981 10 10q24.32 5'-nucleotidase, cytosolic II protein-coding NT5C2 5'-nucleotidase, cytosolic II O 5'-nucleotidase (purine), cytosolic type B|IMP-specific 5'-NT|cytosolic 5'-nucleotidase II|cytosolic purine 5'-nucleotidase|purine 5' nucleotidase 20121230 -9606 22979 EFR3B - KIAA0953 HGNC:29155|Ensembl:ENSG00000084710|Vega:OTTHUMG00000151988 2 2p23.3 EFR3 homolog B (S. cerevisiae) protein-coding EFR3B EFR3 homolog B (S. cerevisiae) O protein EFR3 homolog B 20121230 -9606 22980 TCF25 FKSG26 Hulp1|NULP1|PRO2620|hKIAA1049 HGNC:29181|MIM:612326|Ensembl:ENSG00000141002|HPRD:13830|Vega:OTTHUMG00000138986 16 16q24.3 transcription factor 25 (basic helix-loop-helix) protein-coding TCF25 transcription factor 25 (basic helix-loop-helix) O NULP1|TCF-25|nuclear localized protein 1|transcription factor 25 20121230 -9606 22981 NINL RP4-691N24.1 NLP|dJ691N24.1 HGNC:29163|MIM:609580|Ensembl:ENSG00000101004|HPRD:11120|Vega:OTTHUMG00000032127 20 20p11.22-p11.1 ninein-like protein-coding NINL ninein-like O ninein-like protein 20121230 -9606 22982 DIP2C RP11-486H9.2 KIAA0934 HGNC:29150|MIM:611380|Ensembl:ENSG00000151240|HPRD:17200|Vega:OTTHUMG00000017532 10 10p15.3 DIP2 disco-interacting protein 2 homolog C (Drosophila) protein-coding DIP2C DIP2 disco-interacting protein 2 homolog C (Drosophila) O DIP2 homolog C|disco-interacting protein 2 homolog C 20121230 -9606 22983 MAST1 - SAST|SAST170 HGNC:19034|MIM:612256|Ensembl:ENSG00000105613|HPRD:17469|Vega:OTTHUMG00000180514 19 19p13.2 microtubule associated serine/threonine kinase 1 protein-coding MAST1 microtubule associated serine/threonine kinase 1 O microtubule-associated serine/threonine-protein kinase 1|syntrophin associated serine/threonine kinase|syntrophin-associated serine/threonine-protein kinase 20121230 -9606 22984 PDCD11 - ALG-4|ALG4|NFBP|RRP5 HGNC:13408|MIM:612333|Ensembl:ENSG00000148843|HPRD:18752|Vega:OTTHUMG00000018988 10 10q24.33 programmed cell death 11 protein-coding PDCD11 programmed cell death 11 O NF-kappa-B-binding protein|apoptosis-linked gene 4|programmed cell death protein 11|protein RRP5 homolog 20121230 -9606 22985 ACIN1 - ACINUS|ACN|fSAP152 HGNC:17066|MIM:604562|Ensembl:ENSG00000100813|HPRD:05191|Vega:OTTHUMG00000028716 14 14q11.2 apoptotic chromatin condensation inducer 1 protein-coding ACIN1 apoptotic chromatin condensation inducer 1 O apoptotic chromatin condensation inducer in the nucleus|functional spliceosome-associated protein 152 20121230 -9606 22986 SORCS3 RP11-107L7.1 SORCS HGNC:16699|MIM:606285|Ensembl:ENSG00000156395|HPRD:12100|Vega:OTTHUMG00000019011 10 10q23-q25 sortilin-related VPS10 domain containing receptor 3 protein-coding SORCS3 sortilin-related VPS10 domain containing receptor 3 O 6330404A12Rik|VPS10 domain receptor protein SORCS 3 (SORCS3)|VPS10 domain-containing receptor SorCS3 20121230 -9606 22987 SV2C - - HGNC:30670|MIM:610291|Ensembl:ENSG00000122012|HPRD:18753|Vega:OTTHUMG00000162384 5 5q13.3 synaptic vesicle glycoprotein 2C protein-coding SV2C synaptic vesicle glycoprotein 2C O synaptic vesicle protein 2C 20121230 -9606 22989 MYH15 - - HGNC:31073|MIM:609929|Ensembl:ENSG00000144821|Vega:OTTHUMG00000159226 3 3q13.13 myosin, heavy chain 15 protein-coding MYH15 myosin, heavy chain 15 O myosin, heavy polypeptide 15|myosin-15 20121230 -9606 22990 PCNX - PCNXL1 HGNC:19740|Ensembl:ENSG00000100731|HPRD:10139|Vega:OTTHUMG00000171242 14 14q24.2 pecanex homolog (Drosophila) protein-coding PCNX pecanex homolog (Drosophila) O pecanex-like 1|pecanex-like protein 1 20121230 -9606 22992 KDM2A - CXXC8|FBL11|FBL7|FBXL11|JHDM1A|LILINA HGNC:13606|MIM:605657|Ensembl:ENSG00000173120|HPRD:05741|Vega:OTTHUMG00000167103 11 11q13.2 lysine (K)-specific demethylase 2A protein-coding KDM2A lysine (K)-specific demethylase 2A O CXXC-type zinc finger protein 8|F-box and leucine-rich repeat protein 11|F-box/LRR-repeat protein 11|[Histone-H3]-lysine-36 demethylase 1A|jmjC domain-containing histone demethylation protein 1A|jumonji C domain-containing histone demethylase 1A|lysine-specific demethylase 2A 20121230 -9606 22993 HMGXB3 - HMGX3|SMF HGNC:28982|Ensembl:ENSG00000113716|Vega:OTTHUMG00000163493 5 5q32 HMG box domain containing 3 protein-coding HMGXB3 HMG box domain containing 3 O HMG domain-containing protein 3 20121230 -9606 22994 AZI1 - AZ1|Cep131|ZA1 HGNC:29511|MIM:613479|Ensembl:ENSG00000141577|HPRD:16532|Vega:OTTHUMG00000132728 17 17q25.3 5-azacytidine induced 1 protein-coding AZI1 5-azacytidine induced 1 O 5-azacytidine-induced protein 1|centrosomal protein 131 kDa|centrosomal protein of 131 kDa|pre-acrosome localization protein 1 20121230 -9606 22995 CEP152 - MCPH4|MCPH9|SCKL5 HGNC:29298|MIM:613529|Ensembl:ENSG00000103995|HPRD:16778|Vega:OTTHUMG00000172219 15 15q21.1 centrosomal protein 152kDa protein-coding CEP152 centrosomal protein 152kDa O asterless|centrosomal protein of 152 kDa|microcephaly, primary autosomal recessive 4 20121230 -9606 22996 TTC39A - C1orf34|DEME-6 HGNC:18657|Ensembl:ENSG00000085831|Vega:OTTHUMG00000008193 1 1p32.3 tetratricopeptide repeat domain 39A protein-coding TTC39A tetratricopeptide repeat domain 39A O TPR repeat protein 39A|differentially expressed in MCF7 with estradiol protein 6|tetratricopeptide repeat protein 39A 20121230 -9606 22997 IGSF9B UNQ1946 - HGNC:32326|MIM:613773|Ensembl:ENSG00000080854|Vega:OTTHUMG00000167124 11 11q25 immunoglobulin superfamily, member 9B protein-coding IGSF9B immunoglobulin superfamily, member 9B O immunoglobulin superfamily member 9B|protein turtle homolog B 20121230 -9606 22998 LIMCH1 - LIMCH1A|LMO7B HGNC:29191|Ensembl:ENSG00000064042|HPRD:11125|Vega:OTTHUMG00000160575 4 4p13 LIM and calponin homology domains 1 protein-coding LIMCH1 LIM and calponin homology domains 1 O LIM and calponin homology domains-containing protein 1 20121230 -9606 22999 RIMS1 RP5-1046G13.1 CORD7|RAB3IP2|RIM|RIM1 HGNC:17282|MIM:606629|Ensembl:ENSG00000079841|HPRD:09435|Vega:OTTHUMG00000015009 6 6q12-q13 regulating synaptic membrane exocytosis 1 protein-coding RIMS1 regulating synaptic membrane exocytosis 1 O RAB3-interacting protein 2|rab-3-interacting protein 2|rab3-interacting molecule 1|regulating synaptic membrane exocytosis protein 1 20121230 -9606 23001 WDFY3 - ALFY|ZFYVE25 HGNC:20751|Ensembl:ENSG00000163625|HPRD:10304|Vega:OTTHUMG00000130424 4 4q21.23 WD repeat and FYVE domain containing 3 protein-coding WDFY3 WD repeat and FYVE domain containing 3 O WD repeat and FYVE domain-containing protein 3|autophagy-linked FYVE protein 20121230 -9606 23002 DAAM1 - - HGNC:18142|MIM:606626|Ensembl:ENSG00000100592|HPRD:09433|Vega:OTTHUMG00000140326 14 14q23.1 dishevelled associated activator of morphogenesis 1 protein-coding DAAM1 dishevelled associated activator of morphogenesis 1 O disheveled-associated activator of morphogenesis 1 20121230 -9606 23005 MAPKBP1 - JNKBP-1 HGNC:29536|Ensembl:ENSG00000137802|HPRD:17465|Vega:OTTHUMG00000160227 15 15q15.1 mitogen-activated protein kinase binding protein 1 protein-coding MAPKBP1 mitogen-activated protein kinase binding protein 1 O JNK-binding protein 1|mitogen activated protein kinase binding protein 1|mitogen-activated protein kinase-binding protein 1 20121230 -9606 23007 PLCH1 - PLCL3 HGNC:29185|MIM:612835|Ensembl:ENSG00000114805|HPRD:11438|Vega:OTTHUMG00000158477 3 3q25.31 phospholipase C, eta 1 protein-coding PLCH1 phospholipase C, eta 1 O 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase eta-1|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase eta-1|PLC eta 1|PLC-L3|PLC-eta-1|phosphoinositide phospholipase C-eta-1|phospholipase C-eta-1|phospholipase C-eta1a|phospholipase C-eta1b|phospholipase C-like 3|phospholipase C-like protein 3 20121230 -9606 23008 KLHDC10 - slim HGNC:22194|Ensembl:ENSG00000128607|HPRD:17182|Vega:OTTHUMG00000157654 7 7q32.2 kelch domain containing 10 protein-coding KLHDC10 kelch domain containing 10 O PNAS-119|kelch domain-containing protein 10|scruin like at the midline homolog 20121230 -9606 23011 RAB21 - - HGNC:18263|MIM:612398|Ensembl:ENSG00000080371|HPRD:06695|Vega:OTTHUMG00000169572 12 12q21.1 RAB21, member RAS oncogene family protein-coding RAB21 RAB21, member RAS oncogene family O ras-related protein Rab-21 20121230 -9606 23012 STK38L - NDR2 HGNC:17848|Ensembl:ENSG00000211455|HPRD:10256|Vega:OTTHUMG00000169284 12 12p11.23 serine/threonine kinase 38 like protein-coding STK38L serine/threonine kinase 38 like O NDR2 protein kinase|nuclear Dbf2-related 2|nuclear Dbf2-related kinase 2|serine/threonine-protein kinase 38-like 20121230 -9606 23013 SPEN RP1-134O19.1 HIAA0929|MINT|RBM15C|SHARP HGNC:17575|MIM:613484|Ensembl:ENSG00000065526|HPRD:10230|Vega:OTTHUMG00000009376 1 1p36 spen homolog, transcriptional regulator (Drosophila) protein-coding SPEN spen homolog, transcriptional regulator (Drosophila) O Msx2 interacting nuclear target (MINT) homolog|SMART/HDAC1 associated repressor protein|SMART/HDAC1-associated repressor protein|msx2-interacting protein|nuclear receptor transcription cofactor 20121230 -9606 23014 FBXO21 - FBX21 HGNC:13592|MIM:609095|Ensembl:ENSG00000135108|HPRD:09948|Vega:OTTHUMG00000169495 12 12q24.22 F-box protein 21 protein-coding FBXO21 F-box protein 21 O F-box only protein 21 20121230 -9606 23015 GOLGA8A - GM88 HGNC:31972|Ensembl:ENSG00000175265|HPRD:09974|Vega:OTTHUMG00000129447 15 15q11.2 golgin A8 family, member A protein-coding GOLGA8A golgin A8 family, member A O 88 kDa Golgi matrix protein|88-kDa golgi protein|GM88 autoantigen|Golgin subfamily A member 8A|golgi autoantigen, golgin subfamily a, 8A|golgin-67 20121230 -9606 23016 EXOSC7 - EAP1|RRP42|Rrp42p|hRrp42p|p8 HGNC:28112|MIM:606488|Ensembl:ENSG00000075914|HPRD:09401|Vega:OTTHUMG00000133095 3 3p21.31 exosome component 7 protein-coding EXOSC7 exosome component 7 O exosome complex component RRP42|exosome complex exonuclease RRP42|ribosomal RNA-processing protein 42 20121230 -9606 23017 FAIM2 - LFG|LFG2|NGP35|NMP35|TMBIM2 HGNC:17067|MIM:604306|Ensembl:ENSG00000135472|HPRD:09184|Vega:OTTHUMG00000169808 12 12q13 Fas apoptotic inhibitory molecule 2 protein-coding FAIM2 Fas apoptotic inhibitory molecule 2 O neural membrane protein 35|protein lifeguard 2|transmembrane BAX inhibitor motif-containing protein 2 20121230 -9606 23019 CNOT1 AD-005 CDC39|NOT1|NOT1H HGNC:7877|MIM:604917|Ensembl:ENSG00000125107|HPRD:11999|Vega:OTTHUMG00000133487 16 16q21 CCR4-NOT transcription complex, subunit 1 protein-coding CNOT1 CCR4-NOT transcription complex, subunit 1 O CCR4-NOT transcription complex subunit 1|CCR4-associated factor 1|NOT1 (negative regulator of transcription 1, yeast) homolog|adrenal gland protein AD-005|negative regulator of transcription subunit 1 homolog 20121230 -9606 23020 SNRNP200 - ASCC3L1|BRR2|HELIC2|RP33|U5-200KD HGNC:30859|MIM:601664|Ensembl:ENSG00000144028|HPRD:03391|Vega:OTTHUMG00000130455 2 2q11.2 small nuclear ribonucleoprotein 200kDa (U5) protein-coding SNRNP200 small nuclear ribonucleoprotein 200kDa (U5) O BRR2 homolog|U5 small nuclear ribonucleoprotein 200 kDa helicase|U5 snRNP-specific 200 kDa protein|activating signal cointegrator 1 complex subunit 3-like 1 20121230 -9606 23022 PALLD CGI-151 CGI151|MYN|PNCA1|SIH002 HGNC:17068|MIM:608092|Ensembl:ENSG00000129116|HPRD:09731|Vega:OTTHUMG00000161097 4 4q32.3 palladin, cytoskeletal associated protein protein-coding PALLD palladin, cytoskeletal associated protein O myoneurin|palladin|sarcoma antigen NY-SAR-77 20121230 -9606 23023 TMCC1 - - HGNC:29116|Ensembl:ENSG00000172765|HPRD:15518|Vega:OTTHUMG00000159579 3 3q22.1 transmembrane and coiled-coil domain family 1 protein-coding TMCC1 transmembrane and coiled-coil domain family 1 O transmembrane and coiled-coil domains protein 1 20121230 -9606 23024 PDZRN3 - LNX3|SEMACAP3 HGNC:17704|MIM:609729|Ensembl:ENSG00000121440|HPRD:15115|Vega:OTTHUMG00000158865 3 3p13 PDZ domain containing ring finger 3 protein-coding PDZRN3 PDZ domain containing ring finger 3 O E3 ubiquitin-protein ligase PDZRN3|PDZ domain-containing RING finger protein 3|ligand of Numb protein X 3|likely ortholog of mouse semaF cytoplasmic domain associated protein 3|semaphorin cytoplasmic domain-associated protein 3 20121230 -9606 23025 UNC13A - Munc13-1 HGNC:23150|MIM:609894|Ensembl:ENSG00000130477|Vega:OTTHUMG00000163877 19 19p13.11 unc-13 homolog A (C. elegans) protein-coding UNC13A unc-13 homolog A (C. elegans) O protein unc-13 homolog A 20121230 -9606 23026 MYO16 RP11-54H7.1 MYR8|Myo16b|NYAP3 HGNC:29822|Ensembl:ENSG00000041515|HPRD:14795|Vega:OTTHUMG00000017333 13 13q33.3 myosin XVI protein-coding MYO16 myosin XVI O MYO16 variant protein|myosin heavy chain Myr 8|myosin-XVI|neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adapter 3|neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adaptor 3|unconventional myosin-16|unconventional myosin-XVI 20121230 -9606 23028 KDM1A RP1-184J9.1 AOF2|BHC110|KDM1|LSD1 HGNC:29079|MIM:609132|Ensembl:ENSG00000004487|HPRD:09800|Vega:OTTHUMG00000003220 1 1p36.12 lysine (K)-specific demethylase 1A protein-coding KDM1A lysine (K)-specific demethylase 1A O BRAF35-HDAC complex protein BHC110|FAD-binding protein BRAF35-HDAC complex, 110 kDa subunit|amine oxidase (flavin containing) domain 2|flavin-containing amine oxidase domain-containing protein 2|lysine (K)-specific demethylase 1|lysine-specific histone demethylase 1|lysine-specific histone demethylase 1A 20121230 -9606 23029 RBM34 RP11-739C15.1 - HGNC:28965|Ensembl:ENSG00000188739|HPRD:11065|Vega:OTTHUMG00000039620 1 1q42.3 RNA binding motif protein 34 protein-coding RBM34 RNA binding motif protein 34 O RNA-binding motif protein 34|RNA-binding protein 34 20121230 -9606 23030 KDM4B - JMJD2B HGNC:29136|MIM:609765|Ensembl:ENSG00000127663|HPRD:11056|Vega:OTTHUMG00000180281 19 19p13.3 lysine (K)-specific demethylase 4B protein-coding KDM4B lysine (K)-specific demethylase 4B O jmjC domain-containing histone demethylation protein 3B|jumonji domain containing 2B|jumonji domain-containing protein 2B|lysine-specific demethylase 4B 20121230 -9606 23031 MAST3 - - HGNC:19036|MIM:612258|Ensembl:ENSG00000099308 19 19p13.11 microtubule associated serine/threonine kinase 3 protein-coding MAST3 microtubule associated serine/threonine kinase 3 O microtubule-associated serine/threonine-protein kinase 3 20121230 -9606 23032 USP33 - VDU1 HGNC:20059|Ensembl:ENSG00000077254|HPRD:10297|Vega:OTTHUMG00000009651 1 1p31.1 ubiquitin specific peptidase 33 protein-coding USP33 ubiquitin specific peptidase 33 O VHL-interacting deubiquitinating enzyme 1|deubiquitinating enzyme 33|pVHL-interacting deubiquitinating enzyme 1|ubiquitin carboxyl-terminal hydrolase 33|ubiquitin thioesterase 33|ubiquitin thiolesterase 33|ubiquitin-specific-processing protease 33 20121230 -9606 23033 DOPEY1 RP1-202D23.2 KIAA1117|dJ202D23.2 HGNC:21194|Ensembl:ENSG00000083097|HPRD:10022|Vega:OTTHUMG00000016365 6 6q15 dopey family member 1 protein-coding DOPEY1 dopey family member 1 O homolog of yeast DOP1|protein dopey-1 20121230 -9606 23034 SAMD4A - SAMD4|SMAUG|SMAUG1|SMG|SMGA HGNC:23023|MIM:610747|Ensembl:ENSG00000020577|Ensembl:ENSG00000262355|HPRD:10209|Vega:OTTHUMG00000170999 14 14q22.2 sterile alpha motif domain containing 4A protein-coding SAMD4A sterile alpha motif domain containing 4A O SAM domain-containing protein 4A|protein Smaug homolog 1 20121230 -9606 23035 PHLPP2 - PHLPPL HGNC:29149|MIM:611066|Ensembl:ENSG00000040199|HPRD:11118|Vega:OTTHUMG00000176867 16 16q22.2 PH domain and leucine rich repeat protein phosphatase 2 protein-coding PHLPP2 PH domain and leucine rich repeat protein phosphatase 2 O PH domain leucine-rich repeat-containing protein phosphatase 2 20121230 -9606 23036 ZNF292 - Nbla00365|ZFP292|ZN-16|Zn-15|bA393I2.3 HGNC:18410|Ensembl:ENSG00000188994|Vega:OTTHUMG00000015164 6 6q14.3 zinc finger protein 292 protein-coding ZNF292 zinc finger protein 292 O 16 zinc-finger domain protein|putative protein product of Nbla00365 20121230 -9606 23037 PDZD2 - AIPC|PAPIN|PDZK3|PIN1 HGNC:18486|MIM:610697|Ensembl:ENSG00000133401|HPRD:10142|Vega:OTTHUMG00000161981 5 5p13.3 PDZ domain containing 2 protein-coding PDZD2 PDZ domain containing 2 O PDZ domain containing 3|PDZ domain-containing protein 2|PDZ domain-containing protein 3|activated in prostate cancer protein 20121230 -9606 23038 WDTC1 RP11-4K3__A.1 ADP|DCAF9 HGNC:29175|Ensembl:ENSG00000142784|HPRD:10307|Vega:OTTHUMG00000004273 1 1p36.11 WD and tetratricopeptide repeats 1 protein-coding WDTC1 WD and tetratricopeptide repeats 1 O DDB1 and CUL4 associated factor 9|WD and tetratricopeptide repeats protein 1|adipose homolog 20121230 -9606 23039 XPO7 - EXP7|RANBP16 HGNC:14108|MIM:606140|Ensembl:ENSG00000130227|HPRD:05846|Vega:OTTHUMG00000163789 8 8p21 exportin 7 protein-coding XPO7 exportin 7 O RAN binding protein 16|exportin-7 20121230 -9606 23040 MYT1L - NZF1 HGNC:7623|MIM:613084|Ensembl:ENSG00000186487|HPRD:14797|Vega:OTTHUMG00000151407 2 2p25.3 myelin transcription factor 1-like protein-coding MYT1L myelin transcription factor 1-like O myT1-L|myelin transcription factor 1-like protein|neural zinc finger transcription factor 1 20121230 -9606 23041 MON2 - - HGNC:29177|Ensembl:ENSG00000061987|HPRD:11123|Vega:OTTHUMG00000169992 12 12q14.1 MON2 homolog (S. cerevisiae) protein-coding MON2 MON2 homolog (S. cerevisiae) O protein MON2 homolog 20121230 -9606 23042 PDXDC1 - LP8165 HGNC:28995|MIM:614244|Ensembl:ENSG00000179889|HPRD:13789|Vega:OTTHUMG00000166304 16 16p13.11 pyridoxal-dependent decarboxylase domain containing 1 protein-coding PDXDC1 pyridoxal-dependent decarboxylase domain containing 1 O pyridoxal-dependent decarboxylase domain-containing protein 1 20121230 -9606 23043 TNIK - - HGNC:30765|MIM:610005|Ensembl:ENSG00000154310|HPRD:18206|Vega:OTTHUMG00000159036 3 3q26.31 TRAF2 and NCK interacting kinase protein-coding TNIK TRAF2 and NCK interacting kinase O TRAF2 and NCK-interacting protein kinase 20121230 -9606 23046 KIF21B - - HGNC:29442|MIM:608322|Ensembl:ENSG00000116852|Vega:OTTHUMG00000035787 1 1q32.1 kinesin family member 21B protein-coding KIF21B kinesin family member 21B O kinesin-like protein KIF21B 20121230 -9606 23047 PDS5B RP1-267P19.1 APRIN|AS3|CG008 HGNC:20418|MIM:605333|Ensembl:ENSG00000083642|HPRD:05624|Vega:OTTHUMG00000016704 13 13q12.3 PDS5, regulator of cohesion maintenance, homolog B (S. cerevisiae) protein-coding PDS5B PDS5, regulator of cohesion maintenance, homolog B (S. cerevisiae) O androgen induced inhibitor of proliferation|androgen-induced proliferation inhibitor|androgen-induced prostate proliferative shutoff-associated protein AS3|androgen-induced shutoff 3|sister chromatid cohesion protein PDS5 homolog B 20121230 -9606 23048 FNBP1 - FBP17 HGNC:17069|MIM:606191|Ensembl:ENSG00000187239|HPRD:10446|Vega:OTTHUMG00000020800 9 9q34 formin binding protein 1 protein-coding FNBP1 formin binding protein 1 O formin-binding protein 1|formin-binding protein 17 20121230 -9606 23049 SMG1 - 61E3.4|ATX|LIP HGNC:30045|MIM:607032|Ensembl:ENSG00000157106|HPRD:06123|Vega:OTTHUMG00000166900 16 16p12.3 smg-1 homolog, phosphatidylinositol 3-kinase-related kinase (C. elegans) protein-coding SMG1 smg-1 homolog, phosphatidylinositol 3-kinase-related kinase (C. elegans) O PI-3-kinase-related kinase SMG-1|SMG1 homolog, phosphatidylinositol 3-kinase-related kinase|lambda-interacting protein|lambda/iota protein kinase C-interacting protein|phosphatidylinositol 3-kinase-related kinase|phosphatidylinositol 3-kinase-related protein kinase|serine/threonine-protein kinase SMG1 20121230 -9606 23051 ZHX3 RP3-511B24.3 TIX1 HGNC:15935|MIM:609598|Ensembl:ENSG00000174306|HPRD:10320 20 20q12 zinc fingers and homeoboxes 3 protein-coding ZHX3 zinc fingers and homeoboxes 3 O triple homeobox 1|triple homeobox protein 1|zinc finger and homeodomain protein 3|zinc fingers and homeoboxes protein 3 20121230 -9606 23052 ENDOD1 - - HGNC:29129|Ensembl:ENSG00000149218|Vega:OTTHUMG00000167835 11 11q21 endonuclease domain containing 1 protein-coding ENDOD1 endonuclease domain containing 1 O endonuclease domain-containing 1 protein 20121230 -9606 23053 ZSWIM8 - KIAA0913 HGNC:23528|Ensembl:ENSG00000214655|HPRD:17199|HPRD:17316|Vega:OTTHUMG00000018486 10 10q22.2 zinc finger, SWIM-type containing 8 protein-coding ZSWIM8 zinc finger, SWIM-type containing 8 O 4832404P21Rik|zinc finger SWIM domain-containing protein KIAA0913 20121230 -9606 23054 NCOA6 RP5-1181N3.2 AIB3|ASC2|NRC|PRIP|RAP250|TRBP HGNC:15936|MIM:605299|Ensembl:ENSG00000198646|HPRD:05599|Vega:OTTHUMG00000032311 20 20q11 nuclear receptor coactivator 6 protein-coding NCOA6 nuclear receptor coactivator 6 O NRC RAP250|PPAR-interacting protein|activating signal cointegrator 2|activating signal cointegrator-2|amplified in breast cancer protein 3|amplified in breast cancer-3 protein|cancer-amplified transcriptional coactivator ASC-2|nuclear receptor coactivator RAP250|nuclear receptor-activating protein, 250 kDa|peroxisome proliferator-activated receptor interacting protein|peroxisome proliferator-activated receptor-interacting protein|thyroid hormone receptor binding protein|thyroid hormone receptor-binding protein 20121230 -9606 23057 NMNAT2 RP11-181K3.3 C1orf15|PNAT2 HGNC:16789|MIM:608701|Ensembl:ENSG00000157064|HPRD:09786|Vega:OTTHUMG00000035519 1 1q25 nicotinamide nucleotide adenylyltransferase 2 protein-coding NMNAT2 nicotinamide nucleotide adenylyltransferase 2 O NMN adenylyltransferase 2|NaMN adenylyltransferase 2|nicotinamide mononucleotide adenylyltransferase 2|nicotinate-nucleotide adenylyltransferase 2|pyridine nucleotide adenylyltransferase 2 20121230 -9606 23059 CLUAP1 - FAP22 HGNC:19009|Ensembl:ENSG00000103351|HPRD:10013|Vega:OTTHUMG00000177581 16 16p13.3 clusterin associated protein 1 protein-coding CLUAP1 clusterin associated protein 1 O clusterin-associated protein 1|flagellar associated protein 22, qilin-like protein, homolog 20121230 -9606 23060 ZNF609 - - HGNC:29003|Ensembl:ENSG00000180357|HPRD:18754|Vega:OTTHUMG00000172370 15 15q22.31 zinc finger protein 609 protein-coding ZNF609 zinc finger protein 609 O - 20121230 -9606 23061 TBC1D9B - - HGNC:29097|Ensembl:ENSG00000197226|HPRD:10015|Vega:OTTHUMG00000130911 5 5q35.3 TBC1 domain family, member 9B (with GRAM domain) protein-coding TBC1D9B TBC1 domain family, member 9B (with GRAM domain) O TBC1 domain family member 9B 20121230 -9606 23062 GGA2 - VEAR HGNC:16064|MIM:606005|Ensembl:ENSG00000103365|HPRD:09347|Vega:OTTHUMG00000096957 16 16p12 golgi-associated, gamma adaptin ear containing, ARF binding protein 2 protein-coding GGA2 golgi-associated, gamma adaptin ear containing, ARF binding protein 2 O ADP-ribosylation factor-binding protein GGA2|VHS domain and ear domain of gamma-adaptin|VHS domain and ear domain-containing protein|gamma-adaptin-related protein 2|golgi associated, gamma adaptin ear containing, ARF binding protein 2|golgi-localized, gamma ear-containing, ARF-binding protein 2 20121230 -9606 23063 WAPAL RP11-396M20.1 FOE|KIAA0261|WAPL HGNC:23293|MIM:610754|Ensembl:ENSG00000062650|HPRD:11072|Vega:OTTHUMG00000018651 10 10q23.2 wings apart-like homolog (Drosophila) protein-coding WAPAL wings apart-like homolog (Drosophila) O friend of EBNA2 (Epstein-Barr virus nuclear protein 2)|friend of EBNA2 protein|wings apart-like protein homolog 20121230 -9606 23064 SETX RP11-203M2.2 ALS4|AOA2|SCAR1|bA479K20.2 HGNC:445|MIM:608465|Ensembl:ENSG00000107290|HPRD:07622|Vega:OTTHUMG00000020834 9 9q34.13 senataxin protein-coding SETX senataxin O SEN1 homolog|amyotrophic lateral sclerosis 4 protein|probable helicase senataxin 20121230 -9606 23065 EMC1 PSEC0263 KIAA0090|RP1-43E13.1 HGNC:28957|Ensembl:ENSG00000127463|HPRD:08306|Vega:OTTHUMG00000002497 1 1p36.13 ER membrane protein complex subunit 1 protein-coding EMC1 ER membrane protein complex subunit 1 O - 20121230 -9606 23066 CAND2 - TIP120B|Tp120b HGNC:30689|MIM:610403|Ensembl:ENSG00000144712|Vega:OTTHUMG00000155397 3 3p25.2 cullin-associated and neddylation-dissociated 2 (putative) protein-coding CAND2 cullin-associated and neddylation-dissociated 2 (putative) O TBP interacting protein|TBP-interacting protein 120B|TBP-interacting protein of 120 kDa B|cullin-associated NEDD8-dissociated protein 2|cullin-associated and neddylation-dissociated protein 2|epididymis tissue protein Li 169|p120 CAND2 20121230 -9606 23067 SETD1B - KMT2G|Set1B HGNC:29187|MIM:611055|Ensembl:ENSG00000139718|Vega:OTTHUMG00000169080 12 12q24.31 SET domain containing 1B protein-coding SETD1B SET domain containing 1B O SET domain-containing protein 1B|hSET1B|histone-lysine N-methyltransferase SETD1B|lysine N-methyltransferase 2G 20121230 -9606 23070 FTSJD2 RP1-153P14.6 KIAA0082|MTr1|hMTr1 HGNC:21077|Ensembl:ENSG00000137200|HPRD:08305|Vega:OTTHUMG00000014624 6 6p21.2 FtsJ methyltransferase domain containing 2 protein-coding FTSJD2 FtsJ methyltransferase domain containing 2 O ISG95|S-adenosyl-L-methionine-dependent methyltransferase FTSJD2|cap-specific mRNA (nucleoside-2'-O-)-methyltransferase 1|cap1 2'O-ribose methyltransferase 1|ftsJ methyltransferase domain-containing protein 2|interferon-stimulated gene 95 kDa protein 20121230 -9606 23071 ERP44 UNQ532/PRO1075 PDIA10|TXNDC4 HGNC:18311|MIM:609170|Ensembl:ENSG00000023318|HPRD:10290|Vega:OTTHUMG00000020363 9 9q31.1 endoplasmic reticulum protein 44 protein-coding ERP44 endoplasmic reticulum protein 44 O ER protein 44|endoplasmic reticulum resident protein 44|endoplasmic reticulum resident protein 44 kDa|protein disulfide isomerase family A, member 10|thioredoxin domain containing 4 (endoplasmic reticulum)|thioredoxin domain-containing protein 4 20121230 -9606 23072 HECW1 - NEDL1 HGNC:22195|MIM:610384|Ensembl:ENSG00000002746|HPRD:11385|Vega:OTTHUMG00000128917 7 7p13 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 protein-coding HECW1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 O E3 ubiquitin-protein ligase HECW1|HECT type E3 ubiquitin ligase|HECT, C2 and WW domain-containing protein 1|NEDD4-like E3 ubiquitin-protein ligase 1|NEDD4-like ubiquitin-protein ligase 1 20121230 -9606 23074 UHRF1BP1L - SHIP164 HGNC:29102|Ensembl:ENSG00000111647|HPRD:13811|Vega:OTTHUMG00000170195 12 12q23.1 UHRF1 binding protein 1-like protein-coding UHRF1BP1L UHRF1 binding protein 1-like O UHRF1 (ICBP90) binding protein 1-like|UHRF1-binding protein 1-like|syntaxin 6Habc-interacting protein of 164 kDa 20121230 -9606 23075 SWAP70 HSPC321 SWAP-70 HGNC:17070|MIM:604762|Ensembl:ENSG00000133789|HPRD:10378|Vega:OTTHUMG00000165865 11 11p15 SWAP switching B-cell complex 70kDa subunit protein-coding SWAP70 SWAP switching B-cell complex 70kDa subunit O switch-associated protein 70 20121230 -9606 23076 RRP1B - KIAA0179|NNP1L|Nnp1|RRP1 HGNC:23818|MIM:610654|Ensembl:ENSG00000160208|HPRD:10009|Vega:OTTHUMG00000086872 21 21q22.3 ribosomal RNA processing 1 homolog B (S. cerevisiae) protein-coding RRP1B ribosomal RNA processing 1 homolog B (S. cerevisiae) O RRP1-like protein B|ribosomal RNA processing protein 1 homolog B 20121230 -9606 23077 MYCBP2 AC001226.5 PAM HGNC:23386|MIM:610392|Ensembl:ENSG00000005810|HPRD:10104|Vega:OTTHUMG00000017105 13 13q22 MYC binding protein 2, E3 ubiquitin protein ligase protein-coding MYCBP2 MYC binding protein 2, E3 ubiquitin protein ligase O myc-binding protein 2|pam/highwire/rpm-1 protein|probable E3 ubiquitin-protein ligase MYCBP2|protein associated with Myc 20121230 -9606 23078 VWA8 RP11-125A7.3 KIAA0564 HGNC:29071|Ensembl:ENSG00000102763|HPRD:17194|Vega:OTTHUMG00000016799 13 13q14.11 von Willebrand factor A domain containing 8 protein-coding VWA8 von Willebrand factor A domain containing 8 O von Willebrand factor A domain-containing protein 8 20121230 -9606 23080 AVL9 - KIAA0241 HGNC:28994|MIM:612927|Ensembl:ENSG00000105778|HPRD:13788|Vega:OTTHUMG00000152929 7 7p14.3 AVL9 homolog (S. cerevisiase) protein-coding AVL9 AVL9 homolog (S. cerevisiase) O late secretory pathway protein AVL9 homolog 20121230 -9606 23081 KDM4C RP11-169L18.1 GASC1|JHDM3C|JMJD2C|bA146B14.1 HGNC:17071|MIM:605469|Ensembl:ENSG00000107077|HPRD:12016|Vega:OTTHUMG00000019536 9 9p24.1 lysine (K)-specific demethylase 4C protein-coding KDM4C lysine (K)-specific demethylase 4C O GASC-1 protein|JmjC domain-containing histone demethylation protein 3C|gene amplified in squamous cell carcinoma 1 protein|jumonji domain containing 2C|jumonji domain-containing protein 2C|lysine-specific demethylase 4C 20121230 -9606 23082 PPRC1 - PRC|RP11-302K17.6 HGNC:30025|Ensembl:ENSG00000148840|HPRD:15173|Vega:OTTHUMG00000018948 10 10q24.32 peroxisome proliferator-activated receptor gamma, coactivator-related 1 protein-coding PPRC1 peroxisome proliferator-activated receptor gamma, coactivator-related 1 O PGC-1 related co-activator|PGC-1-related coactivator|peroxisome proliferative activated receptor, gamma, coactivator-related 1|peroxisome proliferator-activated receptor gamma coactivator-related protein 1 20121230 -9606 23085 ERC1 - Cast2|ELKS|RAB6IP2 HGNC:17072|MIM:607127|Ensembl:ENSG00000082805|HPRD:06181|Vega:OTTHUMG00000130138 12 12p13.3 ELKS/RAB6-interacting/CAST family member 1 protein-coding ERC1 ELKS/RAB6-interacting/CAST family member 1 O ELKS/Rab6-interacting/CAST family member 1|RAB6 interacting protein 2|Rab6-interacting protein 2 20121230 -9606 23086 EXPH5 - SLAC2-B|SLAC2B HGNC:30578|MIM:612878|Ensembl:ENSG00000110723|HPRD:08341|Vega:OTTHUMG00000166536 11 11q22.3 exophilin 5 protein-coding EXPH5 exophilin 5 O exophilin-5|slp homolog lacking C2 domains b|synaptotagmin-like homologue lacking C2 domains b|synaptotagmin-like protein homolog lacking C2 domains b 20121230 -9606 23087 TRIM35 - HLS5|MAIR HGNC:16285|Ensembl:ENSG00000104228|HPRD:15553|Vega:OTTHUMG00000102047 8 8p21.2 tripartite motif containing 35 protein-coding TRIM35 tripartite motif containing 35 O hemopoietic lineage switch protein 5|tripartite motif-containing 35|tripartite motif-containing protein 35 20121230 -9606 23089 PEG10 - EDR|HB-1|MEF3L|Mar2|Mart2|RGAG3 HGNC:14005|MIM:609810|Ensembl:ENSG00000242265|Vega:OTTHUMG00000155578 7 7q21 paternally expressed 10 protein-coding PEG10 paternally expressed 10 O MEF3 like 1|MEF3-like protein 1|embryonal carcinoma differentiation regulated|embryonal carcinoma differentiation-regulated protein|mammalian retrotransposon-derived protein 2|myelin expression factor 3-like protein 1|paternally expressed gene 10 protein|retrotransposon gag domain containing 3|retrotransposon gag domain-containing protein 3|retrotransposon-derived gag-like polyprotein|retrotransposon-derived protein PEG10|ty3/Gypsy-like protein 20121230 -9606 23090 ZNF423 - Ebfaz|JBTS19|NPHP14|OAZ|Roaz|ZFP423|Zfp104 HGNC:16762|MIM:604557|Ensembl:ENSG00000102935|HPRD:05189|Vega:OTTHUMG00000173491 16 16q12 zinc finger protein 423 protein-coding ZNF423 zinc finger protein 423 O OLF-1/EBF associated zinc finger|Smad- and Olf-interacting zinc finger protein|early B-cell factor associated zinc finger protein|hOAZ|olf1/EBF-associated zinc finger protein 20121230 -9606 23091 ZC3H13 RP11-71J12.1 KIAA0853 HGNC:20368|Ensembl:ENSG00000123200|HPRD:08307|Vega:OTTHUMG00000016863 13 13q14.13 zinc finger CCCH-type containing 13 protein-coding ZC3H13 zinc finger CCCH-type containing 13 O zinc finger CCCH domain-containing protein 13 20121230 -9606 23092 ARHGAP26 - GRAF|GRAF1|OPHN1L|OPHN1L1 HGNC:17073|MIM:605370|Ensembl:ENSG00000145819|HPRD:05643|Vega:OTTHUMG00000059705 5 5q31 Rho GTPase activating protein 26 protein-coding ARHGAP26 Rho GTPase activating protein 26 O GTPase regulator associated with focal adhesion kinase pp125(FAK)|oligophrenin-1-like protein|rho GTPase-activating protein 26 20121230 -9606 23093 TTLL5 - KIAA0998|STAMP HGNC:19963|MIM:612268|Ensembl:ENSG00000119685|HPRD:08309|Vega:OTTHUMG00000171611 14 14q24.3 tubulin tyrosine ligase-like family, member 5 protein-coding TTLL5 tubulin tyrosine ligase-like family, member 5 O SRC1 and TIF2 associated binding protein|SRC1 and TIF2-associated modulatory protein|tubulin polyglutamylase TTLL5 20121230 -9606 23094 SIPA1L3 - SPAL3 HGNC:23801|Ensembl:ENSG00000105738|HPRD:18755|Vega:OTTHUMG00000073727 19 19q13.13 signal-induced proliferation-associated 1 like 3 protein-coding SIPA1L3 signal-induced proliferation-associated 1 like 3 O SIPA1-like protein 3|SPA-1-like 3|SPA-1-like protein 3|signal-induced proliferation-associated 1-like protein 3 20121230 -9606 23095 KIF1B RP4-736L20.1 CMT2|CMT2A|CMT2A1|HMSNII|KLP|NBLST1 HGNC:16636|MIM:605995|Ensembl:ENSG00000054523|HPRD:05818|Vega:OTTHUMG00000001817 1 1p36.2 kinesin family member 1B protein-coding KIF1B kinesin family member 1B O kinesin superfamily protein KIF1B|kinesin-like protein KIF1B 20121230 -9606 23096 IQSEC2 RP11-258C19.1 BRAG1|MRX1 HGNC:29059|MIM:300522|Ensembl:ENSG00000124313|HPRD:10012|Vega:OTTHUMG00000021608 X Xp11.22 IQ motif and Sec7 domain 2 protein-coding IQSEC2 IQ motif and Sec7 domain 2 O IQ motif and SEC7 domain-containing protein 2|brefeldin A resistant Arf-guanine nucleotide exchange factor 1|brefeldin A resistant Arf-guanine nucleotide exchange factor 1b|brefeldin A resistant Arf-guanine nucleotide exchange factor 1c 20121230 -9606 23097 CDK19 RP11-346C16.5 CDC2L6|CDK11|bA346C16.3 HGNC:19338|MIM:614720|Ensembl:ENSG00000155111|HPRD:07627|Vega:OTTHUMG00000015365 6 6q21 cyclin-dependent kinase 19 protein-coding CDK19 cyclin-dependent kinase 19 O CDC2-related protein kinase 6|CDK8-like cyclin-dependent kinase|cell division cycle 2-like 6 (CDK8-like)|cell division cycle 2-like protein kinase 6|cell division protein kinase 19|cyclin dependent kinase 19 variant 2|cyclin-dependent kinase (CDC2-like) 11|cyclin-dependent kinase 11|death-preventing kinase 20121230 -9606 23098 SARM1 - SAMD2|SARM HGNC:17074|MIM:607732|Ensembl:ENSG00000004139|Vega:OTTHUMG00000132499 17 17q11 sterile alpha and TIR motif containing 1 protein-coding SARM1 sterile alpha and TIR motif containing 1 O SAM domain-containing protein 2|sterile alpha and Armadillo repeat protein|sterile alpha and HEAT/Armadillo motif protein, ortholog of Drosophila|sterile alpha and TIR motif-containing protein 1|sterile alpha motif domain-containing protein 2|tir-1 homolog 20121230 -9606 23099 ZBTB43 RP11-489N22.2 ZBTB22B|ZNF-X|ZNF297B HGNC:17908|Ensembl:ENSG00000169155|HPRD:08346|Vega:OTTHUMG00000020693 9 9q33.3 zinc finger and BTB domain containing 43 protein-coding ZBTB43 zinc finger and BTB domain containing 43 O zinc finger and BTB domain-containing protein 22B|zinc finger and BTB domain-containing protein 43|zinc finger protein 297B 20121230 -9606 23101 MCF2L2 - ARHGEF22 HGNC:30319|Ensembl:ENSG00000053524|HPRD:08308|Vega:OTTHUMG00000158388 3 3q27.1 MCF.2 cell line derived transforming sequence-like 2 protein-coding MCF2L2 MCF.2 cell line derived transforming sequence-like 2 O MCF2-transforming sequence-like protein 2|dbs-related Rho family guanine nucleotide exchange factor|probable guanine nucleotide exchange factor MCF2L2 20121230 -9606 23102 TBC1D2B - - HGNC:29183|Ensembl:ENSG00000167202|HPRD:08310|Vega:OTTHUMG00000152885 15 15q24.3-q25.1 TBC1 domain family, member 2B protein-coding TBC1D2B TBC1 domain family, member 2B O TBC1 domain family member 2B 20121230 -9606 23105 FSTL4 - - HGNC:21389|Ensembl:ENSG00000053108|HPRD:17022|Vega:OTTHUMG00000162729 5 5q31.1 follistatin-like 4 protein-coding FSTL4 follistatin-like 4 O follistatin-like protein 4|follistatin-related protein 4 20121230 -9606 23107 MRPS27 - MRP-S27|S27mt HGNC:14512|MIM:611989|Ensembl:ENSG00000113048|HPRD:17596|Vega:OTTHUMG00000100951 5 5q13.2 mitochondrial ribosomal protein S27 protein-coding MRPS27 mitochondrial ribosomal protein S27 O 28S ribosomal protein S27, mitochondrial|mitochondrial 28S ribosomal protein S27 20121230 -9606 23108 RAP1GAP2 - GARNL4|RAP1GA3 HGNC:29176|Ensembl:ENSG00000132359|HPRD:17028|Vega:OTTHUMG00000177642 17 17p13.3 RAP1 GTPase activating protein 2 protein-coding RAP1GAP2 RAP1 GTPase activating protein 2 O GTPase activating RANGAP domain-like 4|GTPase activating Rap/RanGAP domain-like 4|GTPase-activating Rap/Ran-GAP domain-like protein 4|rap1 GTPase-activating protein 2 20121230 -9606 23109 DDN - - HGNC:24458|MIM:610588|Ensembl:ENSG00000181418|HPRD:10294|Vega:OTTHUMG00000156183 12 12q13.12 dendrin protein-coding DDN dendrin O - 20121230 -9606 23111 SPG20 - SPARTIN|TAHCCP1 HGNC:18514|MIM:607111|Ensembl:ENSG00000133104|HPRD:06170|Vega:OTTHUMG00000016730 13 13q13.3 spastic paraplegia 20 (Troyer syndrome) protein-coding SPG20 spastic paraplegia 20 (Troyer syndrome) O spartin|trans-activated by hepatitis C virus core protein 1 20121230 -9606 23112 TNRC6B RP5-1042K10.7 - HGNC:29190|MIM:610740|Ensembl:ENSG00000100354|Vega:OTTHUMG00000151114 22 22q13.1 trinucleotide repeat containing 6B protein-coding TNRC6B trinucleotide repeat containing 6B O trinucleotide repeat-containing gene 6B protein 20121230 -9606 23113 CUL9 - H7AP1|PARC|RP3-330M21.2 HGNC:15982|MIM:607489|Ensembl:ENSG00000112659|HPRD:06317|Vega:OTTHUMG00000014723 6 6p21.1 cullin 9 protein-coding CUL9 cullin 9 O CUL-9|UbcH7-associated protein 1|cullin-9|p53-associated parkin-like cytoplasmic protein|parkin-like cytoplasmic p53 binding protein 20121230 -9606 23114 NFASC RP11-494K3.1 NF|NRCAML HGNC:29866|MIM:609145|Ensembl:ENSG00000163531|HPRD:12372|Vega:OTTHUMG00000151697 1 1q32.1 neurofascin protein-coding NFASC neurofascin O neurofascin homolog 20121230 -9606 23116 FAM179B - KIAA0423 HGNC:19959|Ensembl:ENSG00000198718|HPRD:11082|Vega:OTTHUMG00000140264 14 14q21.2 family with sequence similarity 179, member B protein-coding FAM179B family with sequence similarity 179, member B O protein FAM179B 20121230 -9606 23117 NPIPL3 - KIAA0220L HGNC:28989|Ensembl:ENSG00000169246|Vega:OTTHUMG00000163506 16 16p12.2 nuclear pore complex interacting protein-like 3 protein-coding NPIPL3 nuclear pore complex interacting protein-like 3 O KIAA0220-like protein|PI-3-kinase-related kinase SMG-1 isoform 1 homolog|nuclear pore complex-interacting protein-like 3|protein pps22-1 20121230 -9606 23118 TAB2 - CHTD2|MAP3K7IP2 HGNC:17075|MIM:605101|Ensembl:ENSG00000055208|HPRD:05483|Vega:OTTHUMG00000015783 6 6q25.1 TGF-beta activated kinase 1/MAP3K7 binding protein 2 protein-coding TAB2 TGF-beta activated kinase 1/MAP3K7 binding protein 2 O TAB-2|TAK1-binding protein 2|TGF-beta-activated kinase 1 and MAP3K7-binding protein 2|TGF-beta-activated kinase 1-binding protein 2|mitogen-activated protein kinase kinase kinase 7-interacting protein 2 20121230 -9606 23119 HIC2 - HRG22|ZBTB30|ZNF907 HGNC:18595|MIM:607712|Ensembl:ENSG00000169635|HPRD:07412|Vega:OTTHUMG00000150781 22 22q11.21 hypermethylated in cancer 2 protein-coding HIC2 hypermethylated in cancer 2 O HIC1-related gene on chromosome 22 protein|hic-2|hic-3|hypermethylated in cancer 2 protein|zinc finger and BTB domain-containing protein 30 20121230 -9606 23120 ATP10B - ATPVB HGNC:13543|Ensembl:ENSG00000118322|HPRD:08637|Vega:OTTHUMG00000163551 5 5q34 ATPase, class V, type 10B protein-coding ATP10B ATPase, class V, type 10B O probable phospholipid-transporting ATPase VB 20121230 -9606 23122 CLASP2 - - HGNC:17078|MIM:605853|Ensembl:ENSG00000163539|HPRD:12054|Vega:OTTHUMG00000156489 3 3p22.3 cytoplasmic linker associated protein 2 protein-coding CLASP2 cytoplasmic linker associated protein 2 O CLIP-associating protein 2|cytoplasmic linker-associated protein 2|multiple asters (Mast)-like homolog 2|protein Orbit homolog 2 20121230 -9606 23125 CAMTA2 - - HGNC:18807|MIM:611508|Ensembl:ENSG00000108509|HPRD:13002|Vega:OTTHUMG00000099417 17 17p13.2 calmodulin binding transcription activator 2 protein-coding CAMTA2 calmodulin binding transcription activator 2 O calmodulin-binding transcription activator 2 20121230 -9606 23126 POGZ RP11-806J18.2 SUHW5|ZNF280E|ZNF635|ZNF635m HGNC:18801|MIM:614787|Ensembl:ENSG00000143442|HPRD:11445|Vega:OTTHUMG00000012499 1 1q21.3 pogo transposable element with ZNF domain protein-coding POGZ pogo transposable element with ZNF domain O putative protein product of Nbla00003|suppressor of hairy wing homolog 5|zinc finger protein 280E|zinc finger protein 635 20121230 -9606 23127 GLT25D2 RP11-498P10.2 C1orf17 HGNC:16790|Ensembl:ENSG00000198756|HPRD:13583|Vega:OTTHUMG00000035460 1 1q25 glycosyltransferase 25 domain containing 2 protein-coding GLT25D2 glycosyltransferase 25 domain containing 2 O glycosyltransferase 25 family member 2|hydroxylysine galactosyltransferase 2|procollagen galactosyltransferase 2 20121230 -9606 23129 PLXND1 - PLEXD1 HGNC:9107|MIM:604282|Ensembl:ENSG00000004399|HPRD:05046|Vega:OTTHUMG00000159547 3 3q22.1 plexin D1 protein-coding PLXND1 plexin D1 O plexin-D1 20121230 -9606 23130 ATG2A - - HGNC:29028|Ensembl:ENSG00000110046|HPRD:17186|Vega:OTTHUMG00000066831 11 11q13.1 autophagy related 2A protein-coding ATG2A autophagy related 2A O ATG2 autophagy related 2 homolog A|autophagy-related protein 2 homolog A 20121230 -9606 23131 GPATCH8 - GPATC8|KIAA0553 HGNC:29066|MIM:614396|Ensembl:ENSG00000186566|HPRD:11089|Vega:OTTHUMG00000181818 17 17q21.31 G patch domain containing 8 protein-coding GPATCH8 G patch domain containing 8 O G patch domain-containing protein 8 20121230 -9606 23132 RAD54L2 - ARIP4|HSPC325|SRISNF2L HGNC:29123|Ensembl:ENSG00000164080|HPRD:10018|Vega:OTTHUMG00000152936 3 3p21.2 RAD54-like 2 (S. cerevisiae) protein-coding RAD54L2 RAD54-like 2 (S. cerevisiae) O RAD54-like protein 2|androgen receptor-interacting protein 4|helicase ARIP4 20121230 -9606 23133 PHF8 RP13-444K19.2 JHDM1F|MRXSSD|ZNF422 HGNC:20672|MIM:300560|Ensembl:ENSG00000172943|HPRD:06599|Vega:OTTHUMG00000021622 X Xp11.22 PHD finger protein 8 protein-coding PHF8 PHD finger protein 8 O histone lysine demethylase PHF8|jumonji C domain-containing histone demethylase 1F 20121230 -9606 23135 KDM6B - JMJD3 HGNC:29012|MIM:611577|Ensembl:ENSG00000132510|Vega:OTTHUMG00000178021 17 17p13.1 lysine (K)-specific demethylase 6B protein-coding KDM6B lysine (K)-specific demethylase 6B O jmjC domain-containing protein 3|jumonji domain containing 3, histone lysine demethylase|jumonji domain-containing protein 3|lysine demethylase 6B|lysine-specific demethylase 6B 20121230 -9606 23136 EPB41L3 - 4.1B|DAL-1|DAL1 HGNC:3380|MIM:605331|Ensembl:ENSG00000082397|HPRD:05622|Vega:OTTHUMG00000131562 18 18p11.32 erythrocyte membrane protein band 4.1-like 3 protein-coding EPB41L3 erythrocyte membrane protein band 4.1-like 3 O band 4.1-like protein 3|differentially expressed in adenocarcinoma of the lung protein 1 20121230 -9606 23137 SMC5 - SMC5L1 HGNC:20465|MIM:609386|Ensembl:ENSG00000198887|HPRD:10241|Vega:OTTHUMG00000019992 9 9q21.12 structural maintenance of chromosomes 5 protein-coding SMC5 structural maintenance of chromosomes 5 O SMC protein 5|SMC-5|SMC5 structural maintenance of chromosomes 5-like 1|hSMC5|structural maintenance of chromosomes protein 5 20121230 -9606 23138 N4BP3 - LZTS4 HGNC:29852|Ensembl:ENSG00000145911|Vega:OTTHUMG00000163456 5 5q35.3 NEDD4 binding protein 3 protein-coding N4BP3 NEDD4 binding protein 3 O NEDD4-binding protein 3 20121230 -9606 23139 MAST2 RP4-533D7.1 MAST205|MTSSK HGNC:19035|MIM:612257|Ensembl:ENSG00000086015|HPRD:11294|Vega:OTTHUMG00000008007 1 1p34.1 microtubule associated serine/threonine kinase 2 protein-coding MAST2 microtubule associated serine/threonine kinase 2 O microtubule associated testis specific serine/threonine protein kinase|microtubule-associated serine/threonine-protein kinase 2 20121230 -9606 23140 ZZEF1 - ZZZ4 HGNC:29027|Ensembl:ENSG00000074755|HPRD:15906|Vega:OTTHUMG00000090741 17 17p13.2 zinc finger, ZZ-type with EF-hand domain 1 protein-coding ZZEF1 zinc finger, ZZ-type with EF-hand domain 1 O zinc finger ZZ-type and EF-hand domain-containing protein 1|zinc finger, ZZ-type with EF hand domain 1 20121230 -9606 23141 ANKLE2 - KIAA0692|LEMD7|Lem4 HGNC:29101|Ensembl:ENSG00000176915|Vega:OTTHUMG00000168046 12 12q24.33 ankyrin repeat and LEM domain containing 2 protein-coding ANKLE2 ankyrin repeat and LEM domain containing 2 O LEM domain containing 7|LEM domain-containing protein 4|ankyrin repeat and LEM domain-containing protein 2 20121230 -9606 23142 DCUN1D4 - - HGNC:28998|MIM:612977|Ensembl:ENSG00000109184|HPRD:13791|Vega:OTTHUMG00000128700 4 4q12 DCN1, defective in cullin neddylation 1, domain containing 4 (S. cerevisiae) protein-coding DCUN1D4 DCN1, defective in cullin neddylation 1, domain containing 4 (S. cerevisiae) O DCN1-like protein 4|DCUN1 domain-containing protein 4|defective in cullin neddylation protein 1-like protein 4 20121230 -9606 23143 LRCH1 RP11-147L20.3 CHDC1|NP81 HGNC:20309|MIM:610368|Ensembl:ENSG00000136141|HPRD:14307|Vega:OTTHUMG00000016877 13 13q14.11 leucine-rich repeats and calponin homology (CH) domain containing 1 protein-coding LRCH1 leucine-rich repeats and calponin homology (CH) domain containing 1 O leucine-rich repeat and calponin homology domain-containing protein 1|neuronal protein 81 20121230 -9606 23144 ZC3H3 - ZC3HDC3 HGNC:28972|Ensembl:ENSG00000014164|HPRD:15697|Vega:OTTHUMG00000165127 8 8q24.3 zinc finger CCCH-type containing 3 protein-coding ZC3H3 zinc finger CCCH-type containing 3 O zinc finger CCCH domain-containing protein 3|zinc finger CCCH type domain containing 3|zinc finger CCCH-type domain containing 3 20121230 -9606 23145 SSPO - SCO-spondin HGNC:21998 7 7q36.1 SCO-spondin homolog (Bos taurus) protein-coding SSPO SCO-spondin homolog (Bos taurus) O SCO-spondin 20121230 -9606 23148 NACAD - - HGNC:22196|Ensembl:ENSG00000136274|Vega:OTTHUMG00000159170 7 7p13 NAC alpha domain containing protein-coding NACAD NAC alpha domain containing O NAC-alpha domain-containing protein 1 20121230 -9606 23149 FCHO1 - - HGNC:29002|MIM:613437|Ensembl:ENSG00000130475|HPRD:16887 19 19p13.11 FCH domain only 1 protein-coding FCHO1 FCH domain only 1 O FCH domain only protein 1 20121230 -9606 23150 FRMD4B - 6030440G05Rik|GRSP1 HGNC:24886|Ensembl:ENSG00000114541|Vega:OTTHUMG00000158772 3 3p14.1 FERM domain containing 4B protein-coding FRMD4B FERM domain containing 4B O FERM domain-containing protein 4B|GRP1-binding protein GRSP1 20121230 -9606 23151 GRAMD4 RP6-59H18.4 DIP|dA59H18.1|dJ439F8.1 HGNC:29113|MIM:613691|Ensembl:ENSG00000075240|HPRD:11107|Vega:OTTHUMG00000150402 22 22q13.31 GRAM domain containing 4 protein-coding GRAMD4 GRAM domain containing 4 O GRAM domain-containing protein 4|death-inducing protein|death-inducing-protein 20121230 -9606 23152 CIC - - HGNC:14214|MIM:612082|Ensembl:ENSG00000079432|HPRD:10831|Vega:OTTHUMG00000177694 19 19q13.2 capicua homolog (Drosophila) protein-coding CIC capicua homolog (Drosophila) O protein capicua homolog 20121230 -9606 23154 NCDN - - HGNC:17597|MIM:608458|Ensembl:ENSG00000020129|HPRD:10530|Vega:OTTHUMG00000059204 1 1p34.3 neurochondrin protein-coding NCDN neurochondrin O - 20121230 -9606 23155 CLCC1 RP11-475E11.6 MCLC HGNC:29675|Ensembl:ENSG00000121940|HPRD:17471|Vega:OTTHUMG00000011732 1 1p13.3 chloride channel CLIC-like 1 protein-coding CLCC1 chloride channel CLIC-like 1 O Mid-1-related chloride channel 1|Mid1-related chloride channel|chloride channel CLIC-like protein 1|mid-1-related chloride channel protein 1 20121230 -9606 23157 SEPT6 RP5-876A24.2 SEP2|SEPT2 HGNC:15848|MIM:300683|Ensembl:ENSG00000125354|HPRD:06716|Vega:OTTHUMG00000022280 X Xq24 septin 6 protein-coding SEPT6 septin 6 O septin 2|septin-6 20121230 -9606 23158 TBC1D9 - MDR1 HGNC:21710|Ensembl:ENSG00000109436|HPRD:11115|Vega:OTTHUMG00000161405 4 4q31.21 TBC1 domain family, member 9 (with GRAM domain) protein-coding TBC1D9 TBC1 domain family, member 9 (with GRAM domain) O TBC1 domain family member 9|TBC1 domain family member 9A 20121230 -9606 23160 WDR43 - NET12|UTP5 HGNC:28945|Ensembl:ENSG00000163811|Vega:OTTHUMG00000152015 2 2p23.2 WD repeat domain 43 protein-coding WDR43 WD repeat domain 43 O UTP5, small subunit (SSU) processome component, homolog|WD repeat-containing protein 43 20121230 -9606 23161 SNX13 - RGS-PX1 HGNC:21335|MIM:606589|Ensembl:ENSG00000071189|HPRD:09418|Vega:OTTHUMG00000152730 7 7p21.1 sorting nexin 13 protein-coding SNX13 sorting nexin 13 O rgs domain- and phox domain-containing protein|sorting nexin-13 20121230 -9606 23162 MAPK8IP3 AC012180.8 JIP3|JSAP1|SYD2|syd HGNC:6884|MIM:605431|Ensembl:ENSG00000138834|HPRD:12014|Vega:OTTHUMG00000128637 16 16p13.3 mitogen-activated protein kinase 8 interacting protein 3 protein-coding MAPK8IP3 mitogen-activated protein kinase 8 interacting protein 3 O C-Jun-amino-terminal kinase-interacting protein 3|C-jun-amino-terminal kinase interacting protein 3|JIP-3|JNK MAP kinase scaffold protein 3|JNK-interacting protein 3|JNK/SAPK-associated protein-1|JNK/stress-activated protein kinase-associated protein 1|homolog of Drosophila Sunday driver 2|mitogen-activated protein kinase 8-interacting protein 3 20121230 -9606 23163 GGA3 - - HGNC:17079|MIM:606006|Ensembl:ENSG00000125447|HPRD:10443|Vega:OTTHUMG00000179483 17 17q25.1 golgi-associated, gamma adaptin ear containing, ARF binding protein 3 protein-coding GGA3 golgi-associated, gamma adaptin ear containing, ARF binding protein 3 O ADP-ribosylation factor-binding protein GGA3|Golgi-localized, gamma ear-containing, ARF-binding protein 3|golgi associated, gamma adaptin ear containing, ARF binding protein 3 20121230 -9606 23164 MPRIP - M-RIP|MRIP|RHOIP3|RIP3|p116Rip HGNC:30321|MIM:612935|Ensembl:ENSG00000133030|HPRD:17591|Vega:OTTHUMG00000059276 17 17p11.2 myosin phosphatase Rho interacting protein protein-coding MPRIP myosin phosphatase Rho interacting protein O Rho interacting protein 3|myosin phosphatase Rho-interacting protein 20121230 -9606 23165 NUP205 - C7orf14 HGNC:18658|MIM:614352|Ensembl:ENSG00000155561|HPRD:17653|Vega:OTTHUMG00000155497 7 7q33 nucleoporin 205kDa protein-coding NUP205 nucleoporin 205kDa O 205 kDa nucleoporin|nuclear pore complex protein Nup205|nucleoporin Nup205 20121230 -9606 23166 STAB1 - CLEVER-1|FEEL-1|FELE-1|FEX1|STAB-1 HGNC:18628|MIM:608560|Ensembl:ENSG00000010327|HPRD:09778|Vega:OTTHUMG00000158574 3 3p21.1 stabilin 1 protein-coding STAB1 stabilin 1 O MS-1 antigen|common lymphatic endothelial and vascular endothelial receptor-1|fasciclin egf-like, laminin-type egf-like, and link domain-containing scavenger receptor-1|fasciclin, EGF-like, laminin-type EGF-like and link domain-containing scavenger receptor 1|stabilin-1 20121230 -9606 23167 EFR3A - - HGNC:28970|MIM:611798|Ensembl:ENSG00000132294|HPRD:17179|Vega:OTTHUMG00000150552 8 8q24.22 EFR3 homolog A (S. cerevisiae) protein-coding EFR3A EFR3 homolog A (S. cerevisiae) O protein EFR3 homolog A 20121230 -9606 23168 RTF1 - GTL7|KIAA0252 HGNC:28996|MIM:611633|Ensembl:ENSG00000137815|HPRD:11071|Vega:OTTHUMG00000133744 15 15q15.1 Rtf1, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) protein-coding RTF1 Rtf1, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) O RNA polymerase-associated protein RTF1 homolog|ortholog of mouse gene trap locus 7 20121230 -9606 23169 SLC35D1 - UGTREL7 HGNC:20800|MIM:610804|Ensembl:ENSG00000116704|HPRD:15372|Vega:OTTHUMG00000009360 1 1p32-p31 solute carrier family 35 (UDP-glucuronic acid/UDP-N-acetylgalactosamine dual transporter), member D1 protein-coding SLC35D1 solute carrier family 35 (UDP-glucuronic acid/UDP-N-acetylgalactosamine dual transporter), member D1 O UDP-GlcA/UDP-GalNAc transporter|UDP-galactose transporter-related 7|UDP-galactose transporter-related protein 7|UDP-glucuronic acid/UDP-N-acetylgalactosamine transporter|solute carrier family 35 member D1 20121230 -9606 23170 TTLL12 - dJ526I14.2 HGNC:28974|Ensembl:ENSG00000100304|HPRD:13782|Vega:OTTHUMG00000150682 22 22q13.31 tubulin tyrosine ligase-like family, member 12 protein-coding TTLL12 tubulin tyrosine ligase-like family, member 12 O tubulin--tyrosine ligase-like protein 12 20121230 -9606 23171 GPD1L - GPD1-L HGNC:28956|MIM:611778|Ensembl:ENSG00000152642|HPRD:10008|Vega:OTTHUMG00000155846 3 3p22.3 glycerol-3-phosphate dehydrogenase 1-like protein-coding GPD1L glycerol-3-phosphate dehydrogenase 1-like O glycerol-3-phosphate dehydrogenase 1-like protein 20121230 -9606 23172 FAM175B - ABRO1|KIAA0157 HGNC:28975|MIM:611144|Ensembl:ENSG00000165660|HPRD:13783|Vega:OTTHUMG00000019218 10 10q26.13 family with sequence similarity 175, member B protein-coding FAM175B family with sequence similarity 175, member B O BRISC complex subunit Abro1|abraxas brother 1|abraxas brother protein 1 20121230 -9606 23173 METAP1 - MAP1A|MetAP1A HGNC:15789|MIM:610151|Ensembl:ENSG00000164024|HPRD:10071|Vega:OTTHUMG00000161231 4 4q23 methionyl aminopeptidase 1 protein-coding METAP1 methionyl aminopeptidase 1 O MAP 1|metAP 1|methionine aminopeptidase 1|peptidase M 1 20121230 -9606 23174 ZCCHC14 - BDG-29|BDG29 HGNC:24134|Ensembl:ENSG00000140948|HPRD:18316|Vega:OTTHUMG00000137655 16 16q24.2 zinc finger, CCHC domain containing 14 protein-coding ZCCHC14 zinc finger, CCHC domain containing 14 O zinc finger CCHC domain-containing protein 14 20121230 -9606 23175 LPIN1 - PAP1 HGNC:13345|MIM:605518|Ensembl:ENSG00000134324|HPRD:09271|Vega:OTTHUMG00000119082 2 2p25.1 lipin 1 protein-coding LPIN1 lipin 1 O lipin-1|phosphatidate phosphatase LPIN1 20121230 -9606 23176 SEPT8 - SEP2 HGNC:16511|MIM:608418|Ensembl:ENSG00000164402|Vega:OTTHUMG00000059735 5 5q31 septin 8 protein-coding SEPT8 septin 8 O septin-8 20121230 -9606 23177 CEP68 - KIAA0582 HGNC:29076|Ensembl:ENSG00000011523|HPRD:13808|Vega:OTTHUMG00000129538 2 2p14 centrosomal protein 68kDa protein-coding CEP68 centrosomal protein 68kDa O centrosomal protein of 68 kDa 20121230 -9606 23178 PASK - PASKIN|STK37 HGNC:17270|MIM:607505|Ensembl:ENSG00000115687|HPRD:06328|Vega:OTTHUMG00000133392 2 2q37.3 PAS domain containing serine/threonine kinase protein-coding PASK PAS domain containing serine/threonine kinase O PAS domain-containing serine/threonine-protein kinase|per-arnt-sim (PAS) domain kinase 20121230 -9606 23179 RGL1 RP11-498P10.1 RGL HGNC:30281|MIM:605667|Ensembl:ENSG00000143344|HPRD:12032|Vega:OTTHUMG00000035328 1 1q25.3 ral guanine nucleotide dissociation stimulator-like 1 protein-coding RGL1 ral guanine nucleotide dissociation stimulator-like 1 O ralGDS-like 1 20121230 -9606 23180 RFTN1 MIG2 PIB10|PIG9|RAFTLIN HGNC:30278|Ensembl:ENSG00000131378|HPRD:17950|Vega:OTTHUMG00000156973 3 3p24.3 raftlin, lipid raft linker 1 protein-coding RFTN1 raftlin, lipid raft linker 1 O cell migration-inducing gene 2 protein|proliferation-inducing protein 10|proliferation-inducing protein 9|raft-linking protein|raftlin 20121230 -9606 23181 DIP2A - C21orf106|DIP2 HGNC:17217|MIM:607711|Ensembl:ENSG00000160305|HPRD:07611|Vega:OTTHUMG00000090717 21 21q22.3 DIP2 disco-interacting protein 2 homolog A (Drosophila) protein-coding DIP2A DIP2 disco-interacting protein 2 homolog A (Drosophila) O DIP2 homolog A|disco-interacting protein 2 homolog A|disco-interacting protein 2A 20121230 -9606 23184 MESDC2 UNQ1911/PRO4369 BOCA|MESD HGNC:13520|MIM:607783|Ensembl:ENSG00000117899|HPRD:12129|Vega:OTTHUMG00000172288 15 15q13 mesoderm development candidate 2 protein-coding MESDC2 mesoderm development candidate 2 O LDLR chaperone MESD|mesoderm development protein|renal carcinoma antigen NY-REN-61 20121230 -9606 23185 LARP4B RP11-164C1.3 KIAA0217|LARP5 HGNC:28987|HPRD:13787 10 10p15.3 La ribonucleoprotein domain family, member 4B protein-coding LARP4B La ribonucleoprotein domain family, member 4B O La ribonucleoprotein domain family, member 5|la-related protein 4B|la-related protein 5 20121230 -9606 23186 RCOR1 - COREST|RCOR HGNC:17441|MIM:607675|Ensembl:ENSG00000089902|HPRD:09645|Vega:OTTHUMG00000171778 14 14q32.31 REST corepressor 1 protein-coding RCOR1 REST corepressor 1 O - 20121230 -9606 23187 PHLDB1 DLNB07 LL5A HGNC:23697|MIM:612834|Ensembl:ENSG00000019144|HPRD:15128|Vega:OTTHUMG00000166341 11 11q23.3 pleckstrin homology-like domain, family B, member 1 protein-coding PHLDB1 pleckstrin homology-like domain, family B, member 1 O LL5alpha|pleckstrin homology-like domain family B member 1|protein LL5-alpha 20121230 -9606 23189 KANK1 RP11-130C19.4 ANKRD15|CPSQ2|KANK HGNC:19309|MIM:607704|Ensembl:ENSG00000107104|HPRD:09651|Vega:OTTHUMG00000019434 9 9p24.3 KN motif and ankyrin repeat domains 1 protein-coding KANK1 KN motif and ankyrin repeat domains 1 O KN motif and ankyrin repeat domain-containing protein 1|ankyrin repeat domain-containing protein 15|kidney ankyrin repeat-containing protein 20121230 -9606 23190 UBXN4 - UBXD2|UBXDC1|erasin HGNC:14860|MIM:611216|Ensembl:ENSG00000144224|HPRD:18254|Vega:OTTHUMG00000153577 2 2q21.3 UBX domain protein 4 protein-coding UBXN4 UBX domain protein 4 O UBX domain containing 2|UBX domain-containing 1|UBX domain-containing protein 2|UBX domain-containing protein 4 20121230 -9606 23191 CYFIP1 - P140SRA-1|SHYC|SRA1 HGNC:13759|MIM:606322|Ensembl:ENSG00000068793|HPRD:05890|Vega:OTTHUMG00000129100 15 15q11 cytoplasmic FMR1 interacting protein 1 protein-coding CYFIP1 cytoplasmic FMR1 interacting protein 1 O cytoplasmic FMR1-interacting protein 1|cytoplasmic FMRP interacting protein 1|selective hybridizing clone|specifically Rac1-associated protein 1|sra-1 20121230 -9606 23192 ATG4B - APG4B|AUTL1 HGNC:20790|MIM:611338|Ensembl:ENSG00000168397|HPRD:16499|Vega:OTTHUMG00000151514 2 2q37.3 autophagy related 4B, cysteine peptidase protein-coding ATG4B autophagy related 4B, cysteine peptidase O APG4 autophagy 4 homolog B|ATG4 autophagy related 4 homolog B|AUT-like 1 cysteine endopeptidase|autophagin-1|autophagy-related cysteine endopeptidase 1|autophagy-related protein 4 homolog B|cysteine protease ATG4B|hAPG4B 20121230 -9606 23193 GANAB - G2AN|GLUII HGNC:4138|MIM:104160|Ensembl:ENSG00000089597|HPRD:03516|Vega:OTTHUMG00000167696 11 11q12.3 glucosidase, alpha; neutral AB protein-coding GANAB glucosidase, alpha; neutral AB O alpha glucosidase II alpha subunit|alpha-glucosidase 2|glucosidase II subunit alpha|neutral alpha-glucosidase AB 20121230 -9606 23194 FBXL7 - FBL6|FBL7 HGNC:13604|MIM:605656|Ensembl:ENSG00000183580|HPRD:05740|Vega:OTTHUMG00000161798 5 5p15.1 F-box and leucine-rich repeat protein 7 protein-coding FBXL7 F-box and leucine-rich repeat protein 7 O F-box protein FBL6/FBL7|F-box protein Fbl7|F-box/LRR-repeat protein 7 20121230 -9606 23195 MDN1 RP1-122O8.1 - HGNC:18302|Ensembl:ENSG00000112159|HPRD:10069|Vega:OTTHUMG00000015213 6 6q15 MDN1, midasin homolog (yeast) protein-coding MDN1 MDN1, midasin homolog (yeast) O MIDAS-containing protein|midasin 20121230 -9606 23196 FAM120A - C9orf10|DNAPTP1|DNAPTP5|OSSA HGNC:13247|MIM:612265|Ensembl:ENSG00000048828|HPRD:12928|Vega:OTTHUMG00000020252 9 9q22.31 family with sequence similarity 120A protein-coding FAM120A family with sequence similarity 120A O DNA polymerase-transactivated protein 1|DNA polymerase-transactivated protein 5|constitutive coactivator of PPAR-gamma-like protein 1|oxidative stress-associated Src activator 20121230 -9606 23197 FAF2 - ETEA|UBXD8|UBXN3B HGNC:24666|Ensembl:ENSG00000113194|HPRD:16870|Vega:OTTHUMG00000163228 5 5q35.2 Fas associated factor family member 2 protein-coding FAF2 Fas associated factor family member 2 O FAS-associated factor 2|UBX domain containing 8|UBX domain protein 3B|UBX domain-containing protein 3B|UBX domain-containing protein 8|expressed in T-cells and eosinophils in atopic dermatitis 20121230 -9606 23198 PSME4 - PA200 HGNC:20635|MIM:607705|Ensembl:ENSG00000068878|HPRD:09652|Vega:OTTHUMG00000151852 2 2p16.2 proteasome (prosome, macropain) activator subunit 4 protein-coding PSME4 proteasome (prosome, macropain) activator subunit 4 O proteasome activator 200 kDa|proteasome activator PA200|proteasome activator complex subunit 4 20121230 -9606 23199 GSE1 - KIAA0182 HGNC:28979|Ensembl:ENSG00000131149|HPRD:11066|Vega:OTTHUMG00000137650 16 16q24.1 Gse1 coiled-coil protein protein-coding GSE1 Gse1 coiled-coil protein O Gse1 coiled-coil protein homolog|genetic suppressor element 1 20121230 -9606 23200 ATP11B - ATPIF|ATPIR HGNC:13553|MIM:605869|Ensembl:ENSG00000058063|HPRD:10432|Vega:OTTHUMG00000158295 3 3q27 ATPase, class VI, type 11B protein-coding ATP11B ATPase, class VI, type 11B O ATPase IR|probable phospholipid-transporting ATPase IF 20121230 -9606 23201 FAM168A - KIAA0280|TCRP1 HGNC:28999|Ensembl:ENSG00000054965|Vega:OTTHUMG00000167995 11 11q13.4 family with sequence similarity 168, member A protein-coding FAM168A family with sequence similarity 168, member A O protein FAM168A|tongue cancer chemotherapy resistance-associated protein 1 20121230 -9606 23203 PMPCA RP11-413M3.1 Alpha-MPP|INPP5E HGNC:18667|MIM:613036|Ensembl:ENSG00000165688|HPRD:07500|Vega:OTTHUMG00000020926 9 9q34.3 peptidase (mitochondrial processing) alpha protein-coding PMPCA peptidase (mitochondrial processing) alpha O P-55|inositol polyphosphate-5-phosphatase, 72 kD|mitochondrial matrix processing protease, alpha subunit|mitochondrial-processing peptidase subunit alpha 20121230 -9606 23204 ARL6IP1 - AIP1|ARL6IP|ARMER HGNC:697|MIM:607669|Ensembl:ENSG00000170540|Ensembl:ENSG00000260342|HPRD:09641|Vega:OTTHUMG00000131367|Vega:OTTHUMG00000177194 16 16p12-p11.2 ADP-ribosylation factor-like 6 interacting protein 1 protein-coding ARL6IP1 ADP-ribosylation factor-like 6 interacting protein 1 O ADP-ribosylation factor-like protein 6-interacting protein 1|ARL-6-interacting protein 1|aip-1|apoptotic regulator in the membrane of the endoplasmic reticulum 20121230 -9606 23205 ACSBG1 - BG|BG1|BGM|GR-LACS|LPD HGNC:29567|MIM:614362|Ensembl:ENSG00000103740|HPRD:16549|Vega:OTTHUMG00000143734 15 15q23-q24 acyl-CoA synthetase bubblegum family member 1 protein-coding ACSBG1 acyl-CoA synthetase bubblegum family member 1 O bubblegum|lipidosin|long-chain-fatty-acid--CoA ligase ACSBG1|very long-chain acyl-CoA synthetase 20121230 -9606 23207 PLEKHM2 - RP11-169K16.1|SKIP HGNC:29131|MIM:609613|Ensembl:ENSG00000116786|Vega:OTTHUMG00000003062 1 1p36.21 pleckstrin homology domain containing, family M (with RUN domain) member 2 protein-coding PLEKHM2 pleckstrin homology domain containing, family M (with RUN domain) member 2 O PH domain-containing family M member 2|SifA (Salmonella-induced filaments A) and kinesin-interacting protein|novel RUN and PH domain-containing protein|pleckstrin homology domain-containing family M member 2|salmonella-induced filaments A and kinesin-interacting protein|sifA and kinesin-interacting protein 20121230 -9606 23208 SYT11 - SYT12|sytXI HGNC:19239|MIM:608741|Ensembl:ENSG00000132718|HPRD:12289|Vega:OTTHUMG00000014105 1 1q21.2 synaptotagmin XI protein-coding SYT11 synaptotagmin XI O synaptotagmin 12|synaptotagmin-11 20121230 -9606 23209 MLC1 RP3-355C18.4 LVM|MLC|VL HGNC:17082|MIM:605908|Ensembl:ENSG00000100427|HPRD:05800|Vega:OTTHUMG00000150236 22 22q13.33 megalencephalic leukoencephalopathy with subcortical cysts 1 protein-coding MLC1 megalencephalic leukoencephalopathy with subcortical cysts 1 O membrane protein MLC1 20121230 -9606 23210 JMJD6 - PSR|PTDSR|PTDSR1 HGNC:19355|MIM:604914|Ensembl:ENSG00000070495|HPRD:05371|Vega:OTTHUMG00000169267 17 17q25 jumonji domain containing 6 protein-coding JMJD6 jumonji domain containing 6 O bifunctional arginine demethylase and lysyl-hydroxylase JMJD6|histone arginine demethylase JMJD6|jmjC domain-containing protein 6|jumonji domain-containing protein 6|lysyl-hydroxylase JMJD6|peptide-lysine 5-dioxygenase JMJD6|phosphatidylserine receptor 20121230 -9606 23211 ZC3H4 - C19orf7 HGNC:17808|Ensembl:ENSG00000130749 19 19q13.32 zinc finger CCCH-type containing 4 protein-coding ZC3H4 zinc finger CCCH-type containing 4 O zinc finger CCCH domain-containing protein 4 20121230 -9606 23212 RRS1 - - HGNC:17083|Ensembl:ENSG00000179041|HPRD:15277|Vega:OTTHUMG00000164765 8 8q13.1 RRS1 ribosome biogenesis regulator homolog (S. cerevisiae) protein-coding RRS1 RRS1 ribosome biogenesis regulator homolog (S. cerevisiae) O homolog of yeast ribosome biogenesis regulator|homolog of yeast ribosome biogenesis regulatory protein RRS1|ribosome biogenesis regulatory protein RRS1 homolog|ribosome biogenesis regulatory protein homolog 20121230 -9606 23213 SULF1 - HSULF-1|SULF-1 HGNC:20391|MIM:610012|Ensembl:ENSG00000137573|HPRD:15450|Vega:OTTHUMG00000164466 8 8q13.1 sulfatase 1 protein-coding SULF1 sulfatase 1 O extracellular sulfatase Sulf-1|sulfatase FP 20121230 -9606 23214 XPO6 - EXP6|RANBP20 HGNC:19733|MIM:608411|Ensembl:ENSG00000169180|HPRD:10525|Vega:OTTHUMG00000176782 16 16p11.2 exportin 6 protein-coding XPO6 exportin 6 O exportin-6|ran-binding protein 20 20121230 -9606 23215 PRRC2C - BAT2-iso|BAT2D1|BAT2L2|XTP2 HGNC:24903|Ensembl:ENSG00000117523|HPRD:16539|Vega:OTTHUMG00000034665 1 1q23.3 proline-rich coiled-coil 2C protein-coding PRRC2C proline-rich coiled-coil 2C O BAT2 domain containing 1|BAT2 domain-containing protein 1|HBV X-transactivated gene 2 protein|HBV XAg-transactivated protein 2|HBxAg transactivated protein 2|HLA-B associated transcript 2-like 2|HLA-B-associated transcript 2-like 2|proline-rich and coiled-coil-containing protein 2C|protein BAT2-like 2|protein PRRC2C 20121230 -9606 23216 TBC1D1 - TBC|TBC1 HGNC:11578|MIM:609850|Ensembl:ENSG00000065882|HPRD:18161|Vega:OTTHUMG00000150302 4 4p14 TBC1 (tre-2/USP6, BUB2, cdc16) domain family, member 1 protein-coding TBC1D1 TBC1 (tre-2/USP6, BUB2, cdc16) domain family, member 1 O TBC1 domain family member 1 20121230 -9606 23217 ZFR2 - KIAA1086 HGNC:29189|Ensembl:ENSG00000105278|Vega:OTTHUMG00000180918 19 19p13.3 zinc finger RNA binding protein 2 protein-coding ZFR2 zinc finger RNA binding protein 2 O zinc finger RNA-binding protein 2 20121230 -9606 23218 NBEAL2 UNQ253/PRO290 BDPLT4|GPS HGNC:31928|MIM:614169|Ensembl:ENSG00000160796|Vega:OTTHUMG00000156497 3 3p21.31 neurobeachin-like 2 protein-coding NBEAL2 neurobeachin-like 2 O neurobeachin-like protein 2 20121230 -9606 23219 FBXO28 - CENP-30|Fbx28 HGNC:29046|MIM:609100|Ensembl:ENSG00000143756|HPRD:12367|Vega:OTTHUMG00000037495 1 1q42.11 F-box protein 28 protein-coding FBXO28 F-box protein 28 O F-box only protein 28|centromere protein 30 20121230 -9606 23220 DTX4 - RNF155 HGNC:29151|Ensembl:ENSG00000110042|Vega:OTTHUMG00000167336 11 11q12.1 deltex homolog 4 (Drosophila) protein-coding DTX4 deltex homolog 4 (Drosophila) O E3 ubiquitin-protein ligase DTX4|RING finger protein 155|deltex 4 homolog|deltex4|protein deltex-4 20121230 -9606 23221 RHOBTB2 - DBC2 HGNC:18756|MIM:607352|Ensembl:ENSG00000008853|HPRD:06300|Vega:OTTHUMG00000097827 8 8p21.3 Rho-related BTB domain containing 2 protein-coding RHOBTB2 Rho-related BTB domain containing 2 O deleted in breast cancer 2 gene protein|p83|rho-related BTB domain-containing protein 2 20121230 -9606 23223 RRP12 RP11-452K12.13-007 KIAA0690 HGNC:29100|Ensembl:ENSG00000052749|HPRD:11103|Vega:OTTHUMG00000018855 10 10q24.1 ribosomal RNA processing 12 homolog (S. cerevisiae) protein-coding RRP12 ribosomal RNA processing 12 homolog (S. cerevisiae) O RRP12-like protein 20121230 -9606 23224 SYNE2 - EDMD5|NUA|NUANCE|Nesp2|Nesprin-2|SYNE-2|TROPH HGNC:17084|MIM:608442|Ensembl:ENSG00000054654|HPRD:09763|Vega:OTTHUMG00000140349 14 14q23.2 spectrin repeat containing, nuclear envelope 2 protein-coding SYNE2 spectrin repeat containing, nuclear envelope 2 O nesprin 2|nesprin-2|nuclear envelope spectrin repeat protein 2|nuclear envelope spectrin repeat-2|nucleus and actin connecting element protein|polytrophin|synaptic nuclear envelope protein 2|synaptic nuclei expressed gene 2 20121230 -9606 23225 NUP210 PSEC0245 GP210|POM210 HGNC:30052|MIM:607703|Ensembl:ENSG00000132182|HPRD:06368|Vega:OTTHUMG00000157268 3 3p25.1 nucleoporin 210kDa protein-coding NUP210 nucleoporin 210kDa O nuclear envelope pore membrane protein POM 210|nuclear pore membrane glycoprotein 210|nuclear pore protein gp210|nucleoporin Nup210|pore membrane protein of 210 kDa 20121230 -9606 23228 PLCL2 - PLCE2 HGNC:9064|MIM:614276|Ensembl:ENSG00000154822|HPRD:07147|Vega:OTTHUMG00000155467 3 3p24.3 phospholipase C-like 2 protein-coding PLCL2 phospholipase C-like 2 O PLC-L(2)|PLC-L2|PLC-epsilon-2|inactive phospholipase C-like protein 2|phospholipase C, epsilon 2|phospholipase C-L2|phospholipase C-epsilon-2 20121230 -9606 23229 ARHGEF9 RP11-357C3.4 COLLYBISTIN|EIEE8|HPEM-2|PEM-2|PEM2 HGNC:14561|MIM:300429|Ensembl:ENSG00000131089|HPRD:02337|Vega:OTTHUMG00000021700 X Xq11.1 Cdc42 guanine nucleotide exchange factor (GEF) 9 protein-coding ARHGEF9 Cdc42 guanine nucleotide exchange factor (GEF) 9 O PEM-2 homolog|hPEM-2 collybistin|rac/Cdc42 guanine nucleotide exchange factor 9|rho guanine nucleotide exchange factor 9 20121230 -9606 23230 VPS13A RP11-498N2.1 CHAC|CHOREIN HGNC:1908|MIM:605978|Ensembl:ENSG00000197969|HPRD:05814|Vega:OTTHUMG00000020055 9 9q21 vacuolar protein sorting 13 homolog A (S. cerevisiae) protein-coding VPS13A vacuolar protein sorting 13 homolog A (S. cerevisiae) O chorea-acanthocytosis protein|vacuolar protein sorting 13A|vacuolar protein sorting-associated protein 13A 20121230 -9606 23231 SEL1L3 - Sel-1L3 HGNC:29108|Ensembl:ENSG00000091490|HPRD:11105|Vega:OTTHUMG00000160331 4 4p15.2 sel-1 suppressor of lin-12-like 3 (C. elegans) protein-coding SEL1L3 sel-1 suppressor of lin-12-like 3 (C. elegans) O protein sel-1 homolog 3|suppressor of lin-12-like protein 3 20121230 -9606 23232 TBC1D12 - - HGNC:29082|Ensembl:ENSG00000108239|Vega:OTTHUMG00000018794 10 10q23.33 TBC1 domain family, member 12 protein-coding TBC1D12 TBC1 domain family, member 12 O TBC1 domain family member 12 20121230 -9606 23233 EXOC6B - SEC15B|SEC15L2 HGNC:17085|MIM:607880|Ensembl:ENSG00000144036|Vega:OTTHUMG00000152723 2 2p13.2 exocyst complex component 6B protein-coding EXOC6B exocyst complex component 6B O SEC15 homolog B|SEC15-like 2|SEC15-like protein 2|WUGSC:H_NH0343N14.1|exocyst complex component Sec15B 20121230 -9606 23234 DNAJC9 - HDJC9|JDD1|SB73 HGNC:19123|MIM:611206|Ensembl:ENSG00000213551|HPRD:13237|Vega:OTTHUMG00000018461 10 10q22.2 DnaJ (Hsp40) homolog, subfamily C, member 9 protein-coding DNAJC9 DnaJ (Hsp40) homolog, subfamily C, member 9 O DnaJ protein SB73|dnaJ homolog subfamily C member 9 20121230 -9606 23235 SIK2 - LOH11CR1I|QIK|SNF1LK2 HGNC:21680|MIM:608973|Ensembl:ENSG00000170145|HPRD:12348|Vega:OTTHUMG00000150644 11 11q23.1 salt-inducible kinase 2 protein-coding SIK2 salt-inducible kinase 2 O SIK-2|SNF1-like kinase 2|qin-induced kinase|salt-inducible protein kinase 2|salt-inducible serine/threonine kinase 2|serine/threonine-protein kinase SIK2|serine/threonine-protein kinase SNF1-like kinase 2 20121230 -9606 23236 PLCB1 RP4-654A7.1 EIEE12|PI-PLC|PLC-154|PLC-I|PLC154|PLCB1A|PLCB1B HGNC:15917|MIM:607120|Ensembl:ENSG00000182621|HPRD:06177|Vega:OTTHUMG00000031849 20 20p12 phospholipase C, beta 1 (phosphoinositide-specific) protein-coding PLCB1 phospholipase C, beta 1 (phosphoinositide-specific) O 1-phosphatidyl-D-myo-inositol-4,5-bisphosphate|1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-1|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase beta 1|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase beta-1|PLC-beta-1|inositoltrisphosphohydrolase|monophosphatidylinositol phosphodiesterase|phosphoinositidase C|phosphoinositide phospholipase C-beta-1|phospholipase C-I|phospholipase C-beta-1|triphosphoinositide phosphodiesterase 20121230 -9606 23237 ARC - Arg3.1 HGNC:648|MIM:612461|Ensembl:ENSG00000198576|HPRD:12469|Vega:OTTHUMG00000134310 8 8q24.3 activity-regulated cytoskeleton-associated protein protein-coding ARC activity-regulated cytoskeleton-associated protein O ARC/ARG3.1|activity-regulated gene 3.1 protein homolog 20121230 -9606 23239 PHLPP1 - PHLPP|PLEKHE1|SCOP HGNC:20610|MIM:609396|Ensembl:ENSG00000081913|HPRD:15145|Vega:OTTHUMG00000150629 18 18q21.33 PH domain and leucine rich repeat protein phosphatase 1 protein-coding PHLPP1 PH domain and leucine rich repeat protein phosphatase 1 O PH domain leucine-rich repeat-containing protein phosphatase 1|PH domain-containing family E member 1|SCN circadian oscillatory protein|pleckstrin homology domain containing, family E (with leucine rich repeats) member 1|suprachiasmatic nucleus circadian oscillatory protein 20121230 -9606 23240 KIAA0922 - TMEM131L HGNC:29146|Ensembl:ENSG00000121210|HPRD:13823|Vega:OTTHUMG00000153244 4 4q31.3 KIAA0922 protein-coding KIAA0922 KIAA0922 O transmembrane protein 131-like 20121230 -9606 23241 PACS2 - PACS-2|PACS1L HGNC:23794|MIM:610423|Ensembl:ENSG00000179364|HPRD:17816|Vega:OTTHUMG00000170450 14 14q32.33 phosphofurin acidic cluster sorting protein 2 protein-coding PACS2 phosphofurin acidic cluster sorting protein 2 O PACS1-like protein 20121230 -9606 23242 COBL - - HGNC:22199|MIM:610317|Ensembl:ENSG00000106078|HPRD:10843|Vega:OTTHUMG00000155999 7 7p12.1 cordon-bleu WH2 repeat protein protein-coding COBL cordon-bleu WH2 repeat protein O cordon-bleu homolog|protein cordon-bleu 20121230 -9606 23243 ANKRD28 - PITK|PPP1R65 HGNC:29024|MIM:611122|Ensembl:ENSG00000206560|HPRD:10651|Vega:OTTHUMG00000155379 3 3p25.1 ankyrin repeat domain 28 protein-coding ANKRD28 ankyrin repeat domain 28 O PP6-ARS-A|ankyrin repeat domain-containing protein 28|phosphatase interactor targeting K protein|phosphatase interactor targeting protein hnRNP K|protein phosphatase 1, regulatory subunit 65|protein phosphatase 6 ankyrin repeat subunit A|serine/threonine-protein phosphatase 6 regulatory ankyrin repeat subunit A|serine/threonine-protein phosphatase 6 regulatory subunit ARS-A 20121230 -9606 23244 PDS5A PIG54 SCC-112|SCC112 HGNC:29088|MIM:613200|Ensembl:ENSG00000121892|HPRD:11537|Vega:OTTHUMG00000160582 4 4p14 PDS5, regulator of cohesion maintenance, homolog A (S. cerevisiae) protein-coding PDS5A PDS5, regulator of cohesion maintenance, homolog A (S. cerevisiae) O cell proliferation-inducing gene 54 protein|sister chromatid cohesion protein 112|sister chromatid cohesion protein PDS5 homolog A 20121230 -9606 23245 ASTN2 RP11-45A16.2 bA67K19.1 HGNC:17021|MIM:612856|Ensembl:ENSG00000148219|HPRD:12498|Vega:OTTHUMG00000021013 9 9q33.1 astrotactin 2 protein-coding ASTN2 astrotactin 2 O astrotactin-2|bA264C15.1 20121230 -9606 23246 BOP1 - - HGNC:15519|MIM:610596|Ensembl:ENSG00000170727|HPRD:16558|Vega:OTTHUMG00000165111 8 8q24.3 block of proliferation 1 protein-coding BOP1 block of proliferation 1 O block of proliferation 1 protein|ribosome biogenesis protein BOP1 20121230 -9606 23247 KIAA0556 - - HGNC:29068|Ensembl:ENSG00000047578|HPRD:13806|Vega:OTTHUMG00000176780 16 16p12.1 KIAA0556 protein-coding KIAA0556 KIAA0556 O uncharacterized protein KIAA0556 20121230 -9606 23248 RPRD2 HSPC099 KIAA0460 HGNC:29039|MIM:614695|Ensembl:ENSG00000163125|Vega:OTTHUMG00000012808 1 1q21.3 regulation of nuclear pre-mRNA domain containing 2 protein-coding RPRD2 regulation of nuclear pre-mRNA domain containing 2 O regulation of nuclear pre-mRNA domain-containing protein 2 20121230 -9606 23250 ATP11A RP11-120K24.1 ATPIH|ATPIS HGNC:13552|MIM:605868|Ensembl:ENSG00000068650|HPRD:12059|Vega:OTTHUMG00000017371 13 13q34 ATPase, class VI, type 11A protein-coding ATP11A ATPase, class VI, type 11A O phospholipid-translocating ATPase|potential phospholipid-transporting ATPase IH|probable phospholipid-transporting ATPase IH 20121230 -9606 23251 KIAA1024 - - HGNC:29172|Ensembl:ENSG00000169330|HPRD:17206|Vega:OTTHUMG00000172073 15 15q25.1 KIAA1024 protein-coding KIAA1024 KIAA1024 O UPF0258 protein KIAA1024 20121230 -9606 23252 OTUD3 RP11-91K11.3 DUBA4|RP11-460G22.1 HGNC:29038|MIM:611758|Ensembl:ENSG00000169914|Vega:OTTHUMG00000002696 1 1p36.13 OTU domain containing 3 protein-coding OTUD3 OTU domain containing 3 O OTU domain-containing protein 3 20121230 -9606 23253 ANKRD12 - ANCO-2|ANCO1|GAC-1|Nbla00144 HGNC:29135|MIM:610616|Ensembl:ENSG00000101745|HPRD:12457|Vega:OTTHUMG00000131595 18 18p11.22 ankyrin repeat domain 12 protein-coding ANKRD12 ankyrin repeat domain 12 O ankyrin repeat domain-containing protein 12|ankyrin repeat-containing cofactor 2 20121230 -9606 23254 KAZN RP1-21O18.1 KAZ HGNC:29173|Ensembl:ENSG00000189337|HPRD:11122|Vega:OTTHUMG00000002042 1 1p36.21 kazrin, periplakin interacting protein protein-coding KAZN kazrin, periplakin interacting protein O kazrin 20121230 -9606 23255 SOGA2 - CCDC165|KIAA0802 HGNC:29121|Ensembl:ENSG00000168502|HPRD:11110|Vega:OTTHUMG00000131594 18 18p11.22 SOGA family member 2 protein-coding SOGA2 SOGA family member 2 O coiled-coil domain containing 165|coiled-coil domain-containing protein 165|protein SOGA2 20121230 -9606 23256 SCFD1 FKSG23 C14orf163|RA410|SLY1|SLY1P|STXBP1L2 HGNC:20726|Ensembl:ENSG00000092108|HPRD:10210|Vega:OTTHUMG00000029420 14 14q12 sec1 family domain containing 1 protein-coding SCFD1 sec1 family domain containing 1 O SLY1 homolog|sec1 family domain-containing protein 1|syntaxin-binding protein 1-like 2|vesicle transport-related protein 20121230 -9606 23258 DENND5A - RAB6IP1 HGNC:19344|Ensembl:ENSG00000184014|HPRD:11475|Vega:OTTHUMG00000165716 11 11p15.4 DENN/MADD domain containing 5A protein-coding DENND5A DENN/MADD domain containing 5A O DENN domain-containing protein 5A|RAB6 interacting protein 1|rab6-interacting protein 1 20121230 -9606 23259 DDHD2 - SAMWD1|SPG54 HGNC:29106|MIM:615003|Ensembl:ENSG00000085788|HPRD:16788|Vega:OTTHUMG00000164095 8 8p11.23 DDHD domain containing 2 protein-coding DDHD2 DDHD domain containing 2 O DDHD domain-containing protein 2|PA-PLA1 like|SAM, WWE and DDHD domain containing 1|SAM, WWE and DDHD domain-containing protein 1|phospholipase DDHD2|sec23p-interacting protein p125-like phosphatidic acid-preferring phospholipase A1 20121230 -9606 23261 CAMTA1 RP3-467L1.1 CANPMR HGNC:18806|MIM:611501|Ensembl:ENSG00000171735|HPRD:16681|Vega:OTTHUMG00000001212 1 1p36.31-p36.23 calmodulin binding transcription activator 1 protein-coding CAMTA1 calmodulin binding transcription activator 1 O calmodulin-binding transcription activator 1 20121230 -9606 23262 PPIP5K2 - HISPPD1|IP7K2|VIP2 HGNC:29035|MIM:611648|Ensembl:ENSG00000145725|HPRD:13802|Vega:OTTHUMG00000162812 5 5q21.1 diphosphoinositol pentakisphosphate kinase 2 protein-coding PPIP5K2 diphosphoinositol pentakisphosphate kinase 2 O VIP1 homolog 2|histidine acid phosphatase domain containing 1|histidine acid phosphatase domain-containing protein 1|hsVIP2|inositol heptaphosphate kinase 2|inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2|insP6 and PP-IP5 kinase 2 20121230 -9606 23263 MCF2L RP11-98F14.2 ARHGEF14|DBS|OST HGNC:14576|MIM:609499|Ensembl:ENSG00000126217|HPRD:14371|Vega:OTTHUMG00000017377 13 13q34 MCF.2 cell line derived transforming sequence-like protein-coding MCF2L MCF.2 cell line derived transforming sequence-like O DBL's big sister|MCF2 transforming sequence-like protein|guanine nucleotide exchange factor DBS 20121230 -9606 23264 ZC3H7B - RoXaN HGNC:30869|Ensembl:ENSG00000100403|HPRD:06711|Vega:OTTHUMG00000150969 22 22q13.2 zinc finger CCCH-type containing 7B protein-coding ZC3H7B zinc finger CCCH-type containing 7B O Rotavirus 'X' associated non-structural protein|rotavirus 'X'-associated non-structural protein|rotavirus X protein associated with NSP3|ubiquitous tetratricopeptide containing protein RoXaN|zinc finger CCCH domain-containing protein 7B 20121230 -9606 23265 EXOC7 - 2-5-3p|EX070|EXO70|EXOC1|Exo70p|YJL085W HGNC:23214|MIM:608163|Ensembl:ENSG00000182473|HPRD:16292|Vega:OTTHUMG00000150720 17 17q25.1 exocyst complex component 7 protein-coding EXOC7 exocyst complex component 7 O exocyst complex component Exo70 20121230 -9606 23266 LPHN2 - CIRL2|CL2|LEC1|LPHH1 HGNC:18582|MIM:607018|Ensembl:ENSG00000117114|HPRD:06116|Vega:OTTHUMG00000009844 1 1p31.1 latrophilin 2 protein-coding LPHN2 latrophilin 2 O CIRL-2|calcium-independent alpha-latrotoxin receptor 2|latrophilin 1|latrophilin homolog 1|latrophilin homolog 2 (cow)|latrophilin-2|lectomedin-1 20121230 -9606 23268 DNMBP RP11-114F7.3 ARHGEF36|TUBA HGNC:30373|MIM:611282|Ensembl:ENSG00000107554|HPRD:10918|Vega:OTTHUMG00000018897 10 10q24.2 dynamin binding protein protein-coding DNMBP dynamin binding protein O dynamin-binding protein|scaffold protein TUBA 20121230 -9606 23269 MGA - MAD5|MXD5 HGNC:14010|Ensembl:ENSG00000174197|Vega:OTTHUMG00000172719 15 15q14 MGA, MAX dimerization protein protein-coding MGA MGA, MAX dimerization protein O MAX dimerization protein 5|MAX gene associated|MAX gene-associated protein 20121230 -9606 23270 TSPYL4 RP3-486I3.2 dJ486I3.2 HGNC:21559|Ensembl:ENSG00000187189|HPRD:18236|Vega:OTTHUMG00000015429 6 6q22.1 TSPY-like 4 protein-coding TSPYL4 TSPY-like 4 O TSPY-like protein 4|testis-specific Y-encoded-like protein 4 20121230 -9606 23271 CAMSAP2 RP11-93N17.1 CAMSAP1L1 HGNC:29188|MIM:613775|Ensembl:ENSG00000118200|HPRD:11124|Vega:OTTHUMG00000035740 1 1q32.1 calmodulin regulated spectrin-associated protein family, member 2 protein-coding CAMSAP2 calmodulin regulated spectrin-associated protein family, member 2 O calmodulin regulated spectrin-associated protein 1-like 1|calmodulin-regulated spectrin-associated protein 1-like protein 1|calmodulin-regulated spectrin-associated protein 2 20121230 -9606 23272 FAM208A - C3orf63|RAP140|se89-1 HGNC:30314|Ensembl:ENSG00000163946|HPRD:10183|Vega:OTTHUMG00000158827 3 3p14.3 family with sequence similarity 208, member A protein-coding FAM208A family with sequence similarity 208, member A O CTCL tumor antigen se89-1|protein FAM208A|retinoblastoma-associated protein 140|retinoblastoma-associated protein RAP140 20121230 -9606 23274 CLEC16A - Gop-1|KIAA0350 HGNC:29013|MIM:611303|Ensembl:ENSG00000038532|HPRD:17185|Vega:OTTHUMG00000152915 16 16p13.13 C-type lectin domain family 16, member A protein-coding CLEC16A C-type lectin domain family 16, member A O protein CLEC16A 20121230 -9606 23275 POFUT2 - C21orf80|FUT13 HGNC:14683|MIM:610249|Ensembl:ENSG00000186866|HPRD:09846|Vega:OTTHUMG00000084874 21 21q22.3 protein O-fucosyltransferase 2 protein-coding POFUT2 protein O-fucosyltransferase 2 O GDP-fucose protein O-fucosyltransferase 2|O-FucT-2|peptide-O-fucosyltransferase 2 20121230 -9606 23276 KLHL18 OK/SW-cl.74 - HGNC:29120|Ensembl:ENSG00000114648|HPRD:10017|Vega:OTTHUMG00000156522 3 3p21.31 kelch-like 18 (Drosophila) protein-coding KLHL18 kelch-like 18 (Drosophila) O kelch-like protein 18 20121230 -9606 23277 CLUH - CLU1|KIAA0664 HGNC:29094|Ensembl:ENSG00000132361|HPRD:10014|Vega:OTTHUMG00000177575 17 17p13.3 clustered mitochondria (cluA/CLU1) homolog protein-coding CLUH clustered mitochondria (cluA/CLU1) homolog O clustered mitochondria protein homolog 20121230 -9606 23279 NUP160 - - HGNC:18017|MIM:607614|Ensembl:ENSG00000030066|HPRD:16254|Vega:OTTHUMG00000166534 11 11p11.2 nucleoporin 160kDa protein-coding NUP160 nucleoporin 160kDa O 160 kDa nucleoporin|nuclear pore complex protein Nup160|nucleoporin Nup160 20121230 -9606 23281 MTUS2 RP11-274A8.2 CAZIP|KIAA0774|TIP150 HGNC:20595|Ensembl:ENSG00000132938|HPRD:11108|Vega:OTTHUMG00000016657 13 13q12.3 microtubule associated tumor suppressor candidate 2 protein-coding MTUS2 microtubule associated tumor suppressor candidate 2 O +TIP of 150 kDa|cardiac zipper protein|microtubule plus-end tracking protein TIP150|microtubule-associated tumor suppressor candidate 2|tracking protein of 150 kDa 20121230 -9606 23283 CSTF2T - CstF-64T HGNC:17086|MIM:611968|Ensembl:ENSG00000177613|HPRD:09900|Vega:OTTHUMG00000018246 10 10q11 cleavage stimulation factor, 3' pre-RNA, subunit 2, 64kDa, tau variant protein-coding CSTF2T cleavage stimulation factor, 3' pre-RNA, subunit 2, 64kDa, tau variant O CF-1 64 kDa subunit tau|CSTF 64 kDa subunit tau|cleavage stimulation factor 64 kDa subunit tau|cleavage stimulation factor subunit 2 tau|cleavage stimulation factor subunit 2 tau variant|tauCstF-64 20121230 -9606 23284 LPHN3 - CIRL3|LEC3 HGNC:20974|Ensembl:ENSG00000150471|HPRD:10055|Vega:OTTHUMG00000160690 4 4q13.1 latrophilin 3 protein-coding LPHN3 latrophilin 3 O CIRL-3|calcium-independent alpha-latrotoxin receptor 3|latrophilin homolog 3 (cow)|latrophilin-3|lectomedin 3 20121230 -9606 23285 KIAA1107 - - HGNC:29192|Ensembl:ENSG00000069712|Vega:OTTHUMG00000010292 1 1p22.1 KIAA1107 protein-coding KIAA1107 KIAA1107 O uncharacterized protein KIAA1107 20121230 -9606 23286 WWC1 - HBEBP3|HBEBP36|KIBRA HGNC:29435|MIM:610533|Ensembl:ENSG00000113645|HPRD:10033|Vega:OTTHUMG00000130408 5 5q34 WW and C2 domain containing 1 protein-coding WWC1 WW and C2 domain containing 1 O HBeAg-binding protein 3|WW, C2 and coiled-coil domain containing 1|kidney and brain protein|protein KIBRA|protein WWC1 20121230 -9606 23287 AGTPBP1 RP11-30C23.1 CCP1|NNA1 HGNC:17258|MIM:606830|Ensembl:ENSG00000135049|HPRD:08442|Vega:OTTHUMG00000020124 9 9q21.33 ATP/GTP binding protein 1 protein-coding AGTPBP1 ATP/GTP binding protein 1 O ATP/GTP-binding protein 1|carboxypeptidase-tubulin|cytosolic carboxypeptidase 1|nervous system nuclear protein induced by axotomy protein 1 homolog|soluble carboxypeptidase|tubulinyl-Tyr carboxypeptidase|tyrosine carboxypeptidase 20121230 -9606 23288 IQCE - 1700028P05Rik HGNC:29171|Ensembl:ENSG00000106012|HPRD:11050|Vega:OTTHUMG00000152047 7 7p22.3 IQ motif containing E protein-coding IQCE IQ motif containing E O IQ domain-containing protein E 20121230 -9606 23291 FBXW11 - BTRC2|BTRCP2|FBW1B|FBXW1B|Fbw11|Hos HGNC:13607|MIM:605651|Ensembl:ENSG00000072803|HPRD:07294|Vega:OTTHUMG00000163267 5 5q35.1 F-box and WD repeat domain containing 11 protein-coding FBXW11 F-box and WD repeat domain containing 11 O F-box and WD repeats protein beta-TrCP2|F-box and WD-40 domain protein 11|F-box and WD-40 domain protein 1B|F-box protein Fbw1b|F-box/WD repeat-containing protein 11|F-box/WD repeat-containing protein 1B|beta-transducin repeat-containing protein 2|homologous to Slimb protein 20121230 -9606 23293 SMG6 - C17orf31|EST1A|SMG-6|hSMG5/7a HGNC:17809|MIM:610963|Ensembl:ENSG00000070366|HPRD:06502|Vega:OTTHUMG00000177578 17 17p13.3 smg-6 homolog, nonsense mediated mRNA decay factor (C. elegans) protein-coding SMG6 smg-6 homolog, nonsense mediated mRNA decay factor (C. elegans) O EST1 telomerase component homolog A|EST1-like protein A|ever shorter telomeres 1A|telomerase subunit EST1A|telomerase-binding protein EST1A 20121230 -9606 23294 ANKS1A - ANKS1 HGNC:20961|MIM:608994|Ensembl:ENSG00000064999|HPRD:10610|Vega:OTTHUMG00000014559 6 6p21.31 ankyrin repeat and sterile alpha motif domain containing 1A protein-coding ANKS1A ankyrin repeat and sterile alpha motif domain containing 1A O Odin|ankyrin repeat and SAM domain containing 1|ankyrin repeat and SAM domain-containing protein 1A 20121230 -9606 23295 MGRN1 - RNF156 HGNC:20254|MIM:607559|Ensembl:ENSG00000102858|HPRD:07397|Vega:OTTHUMG00000176436 16 16p13.3 mahogunin ring finger 1, E3 ubiquitin protein ligase protein-coding MGRN1 mahogunin ring finger 1, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase MGRN1|RING finger protein 156|mahogunin RING finger protein 1|mahogunin, ring finger 1|probable E3 ubiquitin-protein ligase MGRN1 20121230 -9606 23299 BICD2 RP11-476B13.3 bA526D8.1 HGNC:17208|MIM:609797|Ensembl:ENSG00000185963|HPRD:09826|Vega:OTTHUMG00000021036 9 9q22.31 bicaudal D homolog 2 (Drosophila) protein-coding BICD2 bicaudal D homolog 2 (Drosophila) O bic-D 2|coiled-coil protein BICD2|cytoskeleton-like bicaudal D protein homolog 2|homolog of Drosophila bicaudal D|protein bicaudal D homolog 2 20121230 -9606 23300 ATMIN - ASCIZ|ZNF822 HGNC:29034|MIM:614693|Ensembl:ENSG00000166454|HPRD:17188|Vega:OTTHUMG00000176469 16 16q23.2 ATM interactor protein-coding ATMIN ATM interactor O ATM INteracting protein|ATM/ATR-Substrate Chk2-Interacting Zn++-finger protein|ATM/ATR-substrate CHEK2-interacting zinc finger protein|ATM/ATR-substrate CHK2-interacting zinc finger protein|zinc finger protein 822 20121230 -9606 23301 EHBP1 - HPC12|NACSIN HGNC:29144|MIM:609922|Ensembl:ENSG00000115504|HPRD:10109|Vega:OTTHUMG00000129453 2 2p15 EH domain binding protein 1 protein-coding EHBP1 EH domain binding protein 1 O EH domain-binding protein 1|NPF calponin-like protein 20121230 -9606 23302 WSCD1 - - HGNC:29060|Ensembl:ENSG00000179314|HPRD:17193|Vega:OTTHUMG00000177794 17 17p13.2 WSC domain containing 1 protein-coding WSCD1 WSC domain containing 1 O WSC domain-containing protein 1 20121230 -9606 23303 KIF13B - GAKIN HGNC:14405|MIM:607350|Ensembl:ENSG00000197892|HPRD:09556|Vega:OTTHUMG00000164032 8 8p12 kinesin family member 13B protein-coding KIF13B kinesin family member 13B O guanylate kinase associated kinesin|kinesin 13B|kinesin-like protein GAKIN|kinesin-like protein KIF13B 20121230 -9606 23304 UBR2 - C6orf133|RP3-392M17.3|bA49A4.1|dJ242G1.1|dJ392M17.3 HGNC:21289|MIM:609134|Ensembl:ENSG00000024048|HPRD:09853|Vega:OTTHUMG00000014703 6 6p21.1 ubiquitin protein ligase E3 component n-recognin 2 protein-coding UBR2 ubiquitin protein ligase E3 component n-recognin 2 O E3 ubiquitin-protein ligase UBR2|ubiquitin-protein ligase E3-alpha-2|ubiquitin-protein ligase E3-alpha-II 20121230 -9606 23305 ACSL6 - ACS2|FACL6|LACS 6|LACS2|LACS5 HGNC:16496|MIM:604443|Ensembl:ENSG00000164398|HPRD:09190|Vega:OTTHUMG00000150692 5 5q31 acyl-CoA synthetase long-chain family member 6 protein-coding ACSL6 acyl-CoA synthetase long-chain family member 6 O fatty-acid-Coenzyme A ligase, long-chain 6|long fatty acyl-CoA synthetase 2|long-chain-fatty-acid--CoA ligase 6 20121230 -9606 23306 TMEM194A - TMEM194 HGNC:29001|Ensembl:ENSG00000166881|HPRD:13793|Vega:OTTHUMG00000171021 12 12q13.3 transmembrane protein 194A protein-coding TMEM194A transmembrane protein 194A O transmembrane protein 194 20121230 -9606 23307 FKBP15 - FKBP133|KIAA0674|PPP1R76 HGNC:23397|Ensembl:ENSG00000119321|Vega:OTTHUMG00000020518 9 9q32 FK506 binding protein 15, 133kDa protein-coding FKBP15 FK506 binding protein 15, 133kDa O 133 kDa FK506-binding protein|133 kDa FKBP|FK506-binding protein 133kDa|FK506-binding protein 15|FKBP-133|FKBP-15|WAFL|protein phosphatase 1, regulatory subunit 76 20121230 -9606 23308 ICOSLG - B7-H2|B7H2|B7RP-1|B7RP1|CD275|GL50|ICOS-L|ICOSL|LICOS HGNC:17087|MIM:605717|Ensembl:ENSG00000160223|HPRD:05757|Vega:OTTHUMG00000086920 21 21q22.3 inducible T-cell co-stimulator ligand protein-coding ICOSLG inducible T-cell co-stimulator ligand O B7 homolog 2|B7 homologue 2|B7-like protein Gl50|B7-related protein 1|ICOS ligand|transmembrane protein B7-H2 ICOS ligand 20121230 -9606 23309 SIN3B - - HGNC:19354|MIM:607777|Ensembl:ENSG00000127511|HPRD:09691 19 19p13.11 SIN3 transcription regulator homolog B (yeast) protein-coding SIN3B SIN3 transcription regulator homolog B (yeast) O SIN3 homolog B, transcription regulator|SIN3 homolog B, transcriptional regulator|histone deacetylase complex subunit Sin3b|paired amphipathic helix protein Sin3b|transcriptional corepressor Sin3b 20121230 -9606 23310 NCAPD3 - CAP-D3|hCAP-D3|hHCP-6|hcp-6 HGNC:28952|MIM:609276|Ensembl:ENSG00000151503|HPRD:11062|Vega:OTTHUMG00000167172 11 11q25 non-SMC condensin II complex, subunit D3 protein-coding NCAPD3 non-SMC condensin II complex, subunit D3 O condensin-2 complex subunit D3 20121230 -9606 23312 DMXL2 - RC3 HGNC:2938|MIM:612186|Ensembl:ENSG00000104093|HPRD:10188|Vega:OTTHUMG00000131749 15 15q21.2 Dmx-like 2 protein-coding DMXL2 Dmx-like 2 O dmX-like protein 2|rabconnectin-3 20121230 -9606 23313 KIAA0930 CTA-268H5.8 C22orf9 HGNC:1314|Ensembl:ENSG00000100364|HPRD:12802|Vega:OTTHUMG00000151263 22 22q13.31 KIAA0930 protein-coding KIAA0930 KIAA0930 O uncharacterized protein KIAA0930 20121230 -9606 23314 SATB2 - - HGNC:21637|MIM:608148|Ensembl:ENSG00000119042|HPRD:12178|Vega:OTTHUMG00000132767 2 2q33 SATB homeobox 2 protein-coding SATB2 SATB homeobox 2 O DNA-binding protein SATB2|SATB family member 2|special AT-rich sequence-binding protein 2 20121230 -9606 23315 SLC9A8 RP5-963K23.3 NHE-8|NHE8 HGNC:20728|MIM:612730|Ensembl:ENSG00000197818|HPRD:18062|Vega:OTTHUMG00000032710 20 20q13.13 solute carrier family 9, subfamily A (NHE8, cation proton antiporter 8), member 8 protein-coding SLC9A8 solute carrier family 9, subfamily A (NHE8, cation proton antiporter 8), member 8 O Na(+)/H(+) exchanger 8|sodium/hydrogen exchanger 8|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9 (sodium/hydrogen exchanger), member 8 20121230 -9606 23316 CUX2 - CDP2|CUTL2 HGNC:19347|MIM:610648|Ensembl:ENSG00000111249|HPRD:10851|Vega:OTTHUMG00000169546 12 12q24.12 cut-like homeobox 2 protein-coding CUX2 cut-like homeobox 2 O homeobox protein cut-like 2|homeobox protein cux-2 20121230 -9606 23317 DNAJC13 - RME8 HGNC:30343|MIM:614334|Ensembl:ENSG00000138246|HPRD:10915|Vega:OTTHUMG00000159674 3 3q22.1 DnaJ (Hsp40) homolog, subfamily C, member 13 protein-coding DNAJC13 DnaJ (Hsp40) homolog, subfamily C, member 13 O DnaJ domain-containing protein RME-8|RME-8|dnaJ homolog subfamily C member 13|required for receptor-mediated endocytosis 8 20121230 -9606 23318 ZCCHC11 - PAPD3|TUT4 HGNC:28981|MIM:613692|Ensembl:ENSG00000134744|HPRD:15700|Vega:OTTHUMG00000008200 1 1p32.3 zinc finger, CCHC domain containing 11 protein-coding ZCCHC11 zinc finger, CCHC domain containing 11 O PAP associated domain containing 3|TUTase 4|terminal uridylyltransferase 4|zinc finger CCHC domain-containing protein 11 20121230 -9606 23321 TRIM2 - RNF86 HGNC:15974|MIM:614141|Ensembl:ENSG00000109654|HPRD:10279|Vega:OTTHUMG00000155991 4 4q31.3 tripartite motif containing 2 protein-coding TRIM2 tripartite motif containing 2 O E3 ubiquitin-protein ligase TRIM2|RING finger protein 86|tripartite motif protein 2|tripartite motif protein TRIM2|tripartite motif-containing 2|tripartite motif-containing protein 2 20121230 -9606 23322 RPGRIP1L - CORS3|FTM|JBTS7|MKS5|NPHP8 HGNC:29168|MIM:610937|Ensembl:ENSG00000103494|HPRD:17204|Vega:OTTHUMG00000173125 16 16q12.2 RPGRIP1-like protein-coding RPGRIP1L RPGRIP1-like O RPGR-interacting protein 1-like protein|fantom homolog|nephrocystin-8|protein fantom 20121230 -9606 23324 MAN2B2 - - HGNC:29623|Ensembl:ENSG00000013288|HPRD:14355|Vega:OTTHUMG00000160073 4 4p16.1 mannosidase, alpha, class 2B, member 2 protein-coding MAN2B2 mannosidase, alpha, class 2B, member 2 O core-specific lysosomal alpha-1,6-Mannosidase|epididymis-specific alpha-mannosidase 20121230 -9606 23325 KIAA1033 - SWIP HGNC:29174|Ensembl:ENSG00000136051|HPRD:13829|Vega:OTTHUMG00000169838 12 12q24.11 KIAA1033 protein-coding KIAA1033 KIAA1033 O WASH complex subunit 7|strumpellin and WASH-interacting protein 20121230 -9606 23326 USP22 - USP3L HGNC:12621|MIM:612116|Ensembl:ENSG00000124422|Vega:OTTHUMG00000133621 17 17p11.2 ubiquitin specific peptidase 22 protein-coding USP22 ubiquitin specific peptidase 22 O deubiquitinating enzyme 22|ubiquitin carboxyl-terminal hydrolase 22|ubiquitin specific protease 22|ubiquitin thioesterase 22|ubiquitin thiolesterase 22|ubiquitin-specific processing protease 22|ubiquitin-specific-processing protease 22 20121230 -9606 23327 NEDD4L - NEDD4-2|NEDD4.2|RSP5|hNEDD4-2 HGNC:7728|MIM:606384|Ensembl:ENSG00000049759|HPRD:05903|Vega:OTTHUMG00000179875 18 18q21 neural precursor cell expressed, developmentally down-regulated 4-like, E3 ubiquitin protein ligase protein-coding NEDD4L neural precursor cell expressed, developmentally down-regulated 4-like, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase NEDD4-like|ubiquitin-protein ligase Rsp5 20121230 -9606 23328 SASH1 RP3-323M4.1 SH3D6A|dJ323M4|dJ323M4.1 HGNC:19182|MIM:607955|Ensembl:ENSG00000111961|HPRD:06408|Vega:OTTHUMG00000015773 6 6q24.3 SAM and SH3 domain containing 1 protein-coding SASH1 SAM and SH3 domain containing 1 O 2500002E12Rik|SAM and SH3 domain-containing protein 1|proline-glutamate repeat-containing protein 20121230 -9606 23329 TBC1D30 - - HGNC:29164|Ensembl:ENSG00000111490|Vega:OTTHUMG00000168824 12 12q14.3 TBC1 domain family, member 30 protein-coding TBC1D30 TBC1 domain family, member 30 O TBC1 domain family member 30 20121230 -9606 23331 TTC28 RP3-477H23.1 TPRBK HGNC:29179|Ensembl:ENSG00000100154|HPRD:10020|Vega:OTTHUMG00000151006 22 22q12.1 tetratricopeptide repeat domain 28 protein-coding TTC28 tetratricopeptide repeat domain 28 O TPR repeat protein 28|TPR-containing big gene cloned at Keio|tetratricopeptide repeat protein 28 20121230 -9606 23332 CLASP1 - MAST1 HGNC:17088|MIM:605852|Ensembl:ENSG00000074054|HPRD:09322|Vega:OTTHUMG00000153331 2 2q14.2-q14.3 cytoplasmic linker associated protein 1 protein-coding CLASP1 cytoplasmic linker associated protein 1 O CLIP-associating protein 1|cytoplasmic linker-associated protein 1|multiple asters 1|multiple asters homolog 1|protein Orbit homolog 1 20121230 -9606 23333 DPY19L1 hCG_1645499 - HGNC:22205|MIM:613892|Ensembl:ENSG00000173852|Vega:OTTHUMG00000154888 7 7p14.3-p14.2 dpy-19-like 1 (C. elegans) protein-coding DPY19L1 dpy-19-like 1 (C. elegans) O DPY-19-like protein 1|protein dpy-19 homolog 1 20121230 -9606 23334 SZT2 RP11-506B15.1 C1orf84|KIAA0467|RP11-506B15.3|SZT2A|SZT2B HGNC:29040|Ensembl:ENSG00000198198|HPRD:11085|Vega:OTTHUMG00000007423 1 1p34.2 seizure threshold 2 homolog (mouse) protein-coding SZT2 seizure threshold 2 homolog (mouse) O protein SZT2|seizure threshold 2 protein homolog 20121230 -9606 23335 WDR7 - TRAG HGNC:13490|MIM:613473|Ensembl:ENSG00000091157|HPRD:10306|Vega:OTTHUMG00000132721 18 18q21.31 WD repeat domain 7 protein-coding WDR7 WD repeat domain 7 O TGF-beta resistance associated|TGF-beta resistance-associated protein TRAG|WD repeat-containing protein 7|rabconnectin-3 beta 20121230 -9606 23336 SYNM - DMN|SYN HGNC:24466|MIM:606087|Ensembl:ENSG00000182253|HPRD:07305|Vega:OTTHUMG00000171887 15 15q26.3 synemin, intermediate filament protein protein-coding SYNM synemin, intermediate filament protein O desmuslin|synemin|synemin alpha|synemin beta 20121230 -9606 23338 PHF15 - JADE2 HGNC:22984|MIM:610515|Ensembl:ENSG00000043143|HPRD:15124|Vega:OTTHUMG00000129122 5 5q31.1 PHD finger protein 15 protein-coding PHF15 PHD finger protein 15 O protein Jade-2 20121230 -9606 23339 VPS39 - TLP|VAM6|hVam6p HGNC:20593|MIM:612188|Ensembl:ENSG00000166887|HPRD:10300|Vega:OTTHUMG00000130467 15 15q15.1 vacuolar protein sorting 39 homolog (S. cerevisiae) protein-coding VPS39 vacuolar protein sorting 39 homolog (S. cerevisiae) O TRAP1-like protein|vam6/Vps39-like protein 20121230 -9606 23341 DNAJC16 RP4-680D5.1 - HGNC:29157|Ensembl:ENSG00000116138|HPRD:17202|Vega:OTTHUMG00000002358 1 1p36.1 DnaJ (Hsp40) homolog, subfamily C, member 16 protein-coding DNAJC16 DnaJ (Hsp40) homolog, subfamily C, member 16 O dnaJ homolog subfamily C member 16|novel DnaJ domain-containing protein 20121230 -9606 23344 ESYT1 - FAM62A|MBC2 HGNC:29534|Ensembl:ENSG00000139641|HPRD:14367|Vega:OTTHUMG00000170197 12 12q13.2 extended synaptotagmin-like protein 1 protein-coding ESYT1 extended synaptotagmin-like protein 1 O extended synaptotagmin-1|family with sequence similarity 62 (C2 domain containing), member A|membrane-bound C2 domain-containing protein 20121230 -9606 23345 SYNE1 RP1-130E4.2 8B|ARCA1|C6orf98|CPG2|EDMD4|MYNE1|Nesp1|SCAR8|dJ45H2.2 HGNC:17089|MIM:608441|Ensembl:ENSG00000131018|HPRD:09762|Vega:OTTHUMG00000015841 6 6q25 spectrin repeat containing, nuclear envelope 1 protein-coding SYNE1 spectrin repeat containing, nuclear envelope 1 O enaptin|myocyte nuclear envelope protein 1|nesprin 1|nesprin-1|nuclear envelope spectrin repeat-1|synaptic nuclear envelope protein 1|synaptic nuclei expressed gene 1 20121230 -9606 23347 SMCHD1 - - HGNC:29090|MIM:614982|Ensembl:ENSG00000101596|Vega:OTTHUMG00000178235 18 18p11.32 structural maintenance of chromosomes flexible hinge domain containing 1 protein-coding SMCHD1 structural maintenance of chromosomes flexible hinge domain containing 1 O structural maintenance of chromosomes flexible hinge domain-containing protein 1 20121230 -9606 23348 DOCK9 RP11-155N3.2 ZIZ1|ZIZIMIN1 HGNC:14132|MIM:607325|Ensembl:ENSG00000088387|HPRD:09542|Vega:OTTHUMG00000017260 13 13q32.3 dedicator of cytokinesis 9 protein-coding DOCK9 dedicator of cytokinesis 9 O cdc42 guanine nucleotide exchange factor zizimin-1|dedicator of cytokinesis protein 9 20121230 -9606 23349 KIAA1045 - RP11-392A14.4 HGNC:29180|Ensembl:ENSG00000122733|Vega:OTTHUMG00000019844 9 9p13.3 KIAA1045 protein-coding KIAA1045 KIAA1045 O protein KIAA1045 20121230 -9606 23350 U2SURP - SR140|fSAPa HGNC:30855|Ensembl:ENSG00000163714|Vega:OTTHUMG00000159323 3 3q23 U2 snRNP-associated SURP domain containing protein-coding U2SURP U2 snRNP-associated SURP domain containing O 140 kDa Ser/Arg-rich domain protein|Ser/Arg-rich domain protein, 140 kDa|U2 associated SR140 protein|U2 snRNP-associated SURP motif-containing protein|U2-associated SR140 protein|U2-associated protein SR140|functional spliceosome-associated protein a 20121230 -9606 23351 KHNYN - KIAA0323 HGNC:20166|Ensembl:ENSG00000100441|HPRD:11076|Vega:OTTHUMG00000171312 14 14q12 KH and NYN domain containing protein-coding KHNYN KH and NYN domain containing O KH and NYN domain-containing protein|protein KHNYN 20121230 -9606 23352 UBR4 RP5-1126H10.1 RBAF600|ZUBR1|p600 HGNC:30313|MIM:609890|Ensembl:ENSG00000127481|HPRD:10184|Vega:OTTHUMG00000002498 1 1p36.13 ubiquitin protein ligase E3 component n-recognin 4 protein-coding UBR4 ubiquitin protein ligase E3 component n-recognin 4 O E3 ubiquitin-protein ligase UBR4|N-recognin-4|retinoblastoma-associated factor 600-like protein|retinoblastoma-associated factor of 600 kDa|zinc finger UBR1-type protein 1 20121230 -9606 23353 SUN1 - UNC84A HGNC:18587|MIM:607723|Ensembl:ENSG00000164828|HPRD:16257|Vega:OTTHUMG00000151426 7 7p22.3 Sad1 and UNC84 domain containing 1 protein-coding SUN1 Sad1 and UNC84 domain containing 1 O SUN domain-containing protein 1|Sad1 unc-84 domain protein 1|protein unc-84 homolog A|sad1/unc-84 protein-like 1|unc-84 homolog A 20121230 -9606 23354 HAUS5 - KIAA0841|dgt5 HGNC:29130|MIM:613432|Ensembl:ENSG00000249115|Vega:OTTHUMG00000048110 19 19q13.12 HAUS augmin-like complex, subunit 5 protein-coding HAUS5 HAUS augmin-like complex, subunit 5 O HAUS augmin-like complex subunit 5 20121230 -9606 23355 VPS8 - KIAA0804 HGNC:29122|Ensembl:ENSG00000156931|HPRD:11111|Vega:OTTHUMG00000156707 3 3q27.2 vacuolar protein sorting 8 homolog (S. cerevisiae) protein-coding VPS8 vacuolar protein sorting 8 homolog (S. cerevisiae) O vacuolar protein sorting-associated protein 8 homolog 20121230 -9606 23357 ANGEL1 - KIAA0759 HGNC:19961|Ensembl:ENSG00000013523|HPRD:13815|Vega:OTTHUMG00000171494 14 14q24.3 angel homolog 1 (Drosophila) protein-coding ANGEL1 angel homolog 1 (Drosophila) O protein angel homolog 1 20121230 -9606 23358 USP24 hCG_33036 - HGNC:12623|MIM:610569|Ensembl:ENSG00000162402|Vega:OTTHUMG00000008135 1 1p32.3 ubiquitin specific peptidase 24 protein-coding USP24 ubiquitin specific peptidase 24 O deubiquitinating enzyme 24|ubiquitin carboxyl-terminal hydrolase 24|ubiquitin specific protease 24|ubiquitin thioesterase 24|ubiquitin thiolesterase 24|ubiquitin-specific processing protease 24|ubiquitin-specific-processing protease 24 20121230 -9606 23359 FAM189A1 - TMEM228 HGNC:29075|Ensembl:ENSG00000104059|Vega:OTTHUMG00000172185 15 15q13.1 family with sequence similarity 189, member A1 protein-coding FAM189A1 family with sequence similarity 189, member A1 O protein FAM189A1|transmembrane protein 228 20121230 -9606 23360 FNBP4 - FBP30 HGNC:19752|Ensembl:ENSG00000109920|HPRD:10996|Vega:OTTHUMG00000166533 11 11p11.2 formin binding protein 4 protein-coding FNBP4 formin binding protein 4 O formin-binding protein 30|formin-binding protein 4 20121230 -9606 23361 ZNF629 - ZNF|ZNF65 HGNC:29008|Ensembl:ENSG00000102870|Vega:OTTHUMG00000176905 16 16p11.2 zinc finger protein 629 protein-coding ZNF629 zinc finger protein 629 O DNA-binding protein|zinc finger protein 65 20121230 -9606 23362 PSD3 - EFA6R|HCA67 HGNC:19093|MIM:614440|Ensembl:ENSG00000156011|HPRD:11462|Vega:OTTHUMG00000163711 8 8p21.3 pleckstrin and Sec7 domain containing 3 protein-coding PSD3 pleckstrin and Sec7 domain containing 3 O ADP-ribosylation factor guanine nucleotide factor 6|PH and SEC7 domain-containing protein 3|epididymis tissue protein Li 20mP|exchange factor for ADP-ribosylation factor guanine nucleotide factor 6|hepatocellular carcinoma-associated antigen 67|pleckstrin homology and SEC7 domain-containing protein 3 20121230 -9606 23363 OBSL1 - - HGNC:29092|MIM:610991|Ensembl:ENSG00000124006|Vega:OTTHUMG00000059157 2 2q35 obscurin-like 1 protein-coding OBSL1 obscurin-like 1 O obscurin-like protein 1 20121230 -9606 23365 ARHGEF12 - LARG|PRO2792 HGNC:14193|MIM:604763|Ensembl:ENSG00000196914|HPRD:09207|Vega:OTTHUMG00000166143 11 11q23.3 Rho guanine nucleotide exchange factor (GEF) 12 protein-coding ARHGEF12 Rho guanine nucleotide exchange factor (GEF) 12 O leukemia-associated RhoGEF|leukemia-associated rho guanine nucleotide exchange factor|rho guanine nucleotide exchange factor 12 20121230 -9606 23366 KIAA0895 - - HGNC:22206|Ensembl:ENSG00000164542|HPRD:17197|Vega:OTTHUMG00000154939 7 7p14.2 KIAA0895 protein-coding KIAA0895 KIAA0895 O uncharacterized protein KIAA0895 20121230 -9606 23367 LARP1 - LARP HGNC:29531|MIM:612059|Ensembl:ENSG00000155506|HPRD:11225|Vega:OTTHUMG00000130191 5 5q33.2 La ribonucleoprotein domain family, member 1 protein-coding LARP1 La ribonucleoprotein domain family, member 1 O la-related protein 1 20121230 -9606 23368 PPP1R13B - ASPP1|p53BP2-like|p85 HGNC:14950|MIM:606455|Ensembl:ENSG00000088808|HPRD:07345|Vega:OTTHUMG00000171647 14 14q32.33 protein phosphatase 1, regulatory subunit 13B protein-coding PPP1R13B protein phosphatase 1, regulatory subunit 13B O apoptosis-stimulating of p53 protein 1|apoptosis-stimulating protein of p53, 1|protein phosphatase 1 regulatory subunit 13B|protein phosphatase 1, regulatory (inhibitor) subunit 13B 20121230 -9606 23369 PUM2 - PUMH2|PUML2 HGNC:14958|MIM:607205|Ensembl:ENSG00000055917|HPRD:09527|Vega:OTTHUMG00000122098 2 2p22-p21 pumilio homolog 2 (Drosophila) protein-coding PUM2 pumilio homolog 2 (Drosophila) O pumilio homolog 2|pumilio-2 20121230 -9606 23370 ARHGEF18 - P114-RhoGEF HGNC:17090|Ensembl:ENSG00000104880|HPRD:12479 19 19p13.3 Rho/Rac guanine nucleotide exchange factor (GEF) 18 protein-coding ARHGEF18 Rho/Rac guanine nucleotide exchange factor (GEF) 18 O 114 kDa Rho-specific guanine nucleotide exchange factor|P114-RHO-GEF|Rho-specific guanine nucleotide exchange factor p114|Rho/Rac guanine nucleotide exchange factor 18|SA-RhoGEF|p114RhoGEF|rho guanine nucleotide exchange factor 18|septin-associated RhoGEF 20121230 -9606 23371 TENC1 - C1-TEN|C1TEN|TNS2 HGNC:19737|MIM:607717|Ensembl:ENSG00000111077|HPRD:16256|Vega:OTTHUMG00000169730 12 12q13.13 tensin like C1 domain containing phosphatase (tensin 2) protein-coding TENC1 tensin like C1 domain containing phosphatase (tensin 2) O C1 domain-containing phosphatase and tensin homolog|tensin 2|tensin like C1 domain-containing phosphatase|tensin-2|tensin-like C1 domain-containing phosphatase 20121230 -9606 23373 CRTC1 - MECT1|TORC-1|TORC1|WAMTP1 HGNC:16062|MIM:607536|Ensembl:ENSG00000105662|HPRD:06339 19 19p13.11 CREB regulated transcription coactivator 1 protein-coding CRTC1 CREB regulated transcription coactivator 1 O CREB-regulated transcription coactivator 1|mucoepidermoid carcinoma translocated protein 1|transducer of regulated cAMP response element-binding protein (CREB) 1 20121230 -9606 23376 UFL1 - KIAA0776|Maxer|NLBP|RCAD|RP3-393D12.1 HGNC:23039|MIM:613372|Ensembl:ENSG00000014123|HPRD:11109|Vega:OTTHUMG00000015238 6 6q16.1 UFM1-specific ligase 1 protein-coding UFL1 UFM1-specific ligase 1 O E3 UFM1-protein ligase 1|LZAP-binding protein|Regulator of CDK5RAP3 and DDRGK1|novel LZAP-binding protein 20121230 -9606 23378 RRP8 hucep-1 KIAA0409 HGNC:29030|Ensembl:ENSG00000132275|HPRD:13800|Vega:OTTHUMG00000165503 11 11p15.4 ribosomal RNA processing 8, methyltransferase, homolog (yeast) protein-coding RRP8 ribosomal RNA processing 8, methyltransferase, homolog (yeast) O RRP8 methyltransferase homolog|cerebral protein 1|nucleomethylin|ribosomal RNA-processing protein 8 20121230 -9606 23379 KIAA0947 - - HGNC:29154|Ensembl:ENSG00000164151|Vega:OTTHUMG00000161639 5 5p15.32 KIAA0947 protein-coding KIAA0947 KIAA0947 O uncharacterized protein KIAA0947 20121230 -9606 23380 SRGAP2 RP11-421E17.2 ARHGAP34|FNBP2|SRGAP2A|SRGAP3 HGNC:19751|MIM:606524|Ensembl:ENSG00000163486|HPRD:18520|Vega:OTTHUMG00000036347 1 1q32.1 SLIT-ROBO Rho GTPase activating protein 2 protein-coding SRGAP2 SLIT-ROBO Rho GTPase activating protein 2 O SLIT-ROBO Rho GTPase-activating protein 2|formin binding protein 2|formin-binding protein 2|rho GTPase-activating protein 34 20121230 -9606 23381 SMG5 RP11-54H19.7 EST1B|LPTS-RP1|LPTSRP1|SMG-5 HGNC:24644|MIM:610962|Ensembl:ENSG00000198952|HPRD:16869|Vega:OTTHUMG00000017491 1 1q21.2 smg-5 homolog, nonsense mediated mRNA decay factor (C. elegans) protein-coding SMG5 smg-5 homolog, nonsense mediated mRNA decay factor (C. elegans) O EST1 telomerase component homolog B|EST1-like protein B|Est1p-like protein B|LPTS interacting protein|LPTS-interacting protein|ever shorter telomeres 1B|hSMG-5|protein SMG5 20121230 -9606 23382 AHCYL2 - ADOHCYASE3 HGNC:22204|Ensembl:ENSG00000158467|HPRD:11113|Vega:OTTHUMG00000157677 7 7q32.1 adenosylhomocysteinase-like 2 protein-coding AHCYL2 adenosylhomocysteinase-like 2 O S-adenosyl-L-homocysteine hydrolase 3|S-adenosylhomocysteine hydrolase-like 2|putative adenosylhomocysteinase 3 20121230 -9606 23383 MAU2 - KIAA0892|MAU2L|SCC4|mau-2 HGNC:29140|MIM:614560|Ensembl:ENSG00000129933|HPRD:11117|Vega:OTTHUMG00000150188 19 19p13.11 MAU2 chromatid cohesion factor homolog (C. elegans) protein-coding MAU2 MAU2 chromatid cohesion factor homolog (C. elegans) O MAU2 chromatid cohesion factor homolog|cohesin loading complex subunit SCC4 homolog|protein MAU-2|sister chromatid cohesion 4 20121230 -9606 23384 SPECC1L - CYTSA|OBLFC1 HGNC:29022|MIM:614140|Ensembl:ENSG00000100014|HPRD:11080|Vega:OTTHUMG00000171450 22 22q11.23 sperm antigen with calponin homology and coiled-coil domains 1-like protein-coding SPECC1L sperm antigen with calponin homology and coiled-coil domains 1-like O SPECC1-like protein|cytokinesis and spindle organization A|cytospin-A|renal carcinoma antigen NY-REN-22 20121230 -9606 23385 NCSTN RP11-517F10.1 APH2 HGNC:17091|MIM:605254|Ensembl:ENSG00000162736|HPRD:05584|Vega:OTTHUMG00000033110 1 1q22-q23 nicastrin protein-coding NCSTN nicastrin O ATAG1874|anterior pharynx-defective 2 20121230 -9606 23386 NUDCD3 hCG_18301 NudCL HGNC:22208|MIM:610296|Ensembl:ENSG00000015676|HPRD:13831|Vega:OTTHUMG00000129174 7 7p13-p12 NudC domain containing 3 protein-coding NUDCD3 NudC domain containing 3 O NudC-like protein|nudC domain-containing protein 3 20121230 -9606 23387 SIK3 L19 QSK|SIK-3 HGNC:29165|MIM:614776|Ensembl:ENSG00000160584|HPRD:11121|Vega:OTTHUMG00000066628 11 11q23.3 SIK family kinase 3 protein-coding SIK3 SIK family kinase 3 O salt-inducible kinase 3|serine/threonine-protein kinase QSK|serine/threonine-protein kinase SIK3 20121230 -9606 23389 MED13L - PROSIT240|THRAP2|TRAP240L HGNC:22962|MIM:608771|Ensembl:ENSG00000123066|HPRD:10579|Vega:OTTHUMG00000169404 12 12q24.21 mediator complex subunit 13-like protein-coding MED13L mediator complex subunit 13-like O mediator of RNA polymerase II transcription subunit 13-like|thyroid hormone receptor-associated protein 2|thyroid hormone receptor-associated protein complex 240 kDa component-like 20121230 -9606 23390 ZDHHC17 HSPC294 HIP14|HIP3|HYPH HGNC:18412|MIM:607799|Ensembl:ENSG00000186908|HPRD:09697|Vega:OTTHUMG00000169917 12 12q21.2 zinc finger, DHHC-type containing 17 protein-coding ZDHHC17 zinc finger, DHHC-type containing 17 O DHHC-17|HIP-14|HIP-3|Huntingtin interacting protein H|huntingtin interacting protein 14|huntingtin interacting protein 3|huntingtin yeast partner H|huntingtin-interacting protein 14|huntingtin-interacting protein 3|huntingtin-interacting protein H|palmitoyltransferase ZDHHC17|putative MAPK-activating protein PM11|putative NF-kappa-B-activating protein 205|zinc finger DHHC domain-containing protein 17|zinc finger, DHHC domain containing 17 20121230 -9606 23392 KIAA0368 RP11-386D8.2 ECM29 HGNC:29020|Ensembl:ENSG00000136813|Vega:OTTHUMG00000020489 9 9q31.3 KIAA0368 protein-coding KIAA0368 KIAA0368 O ECM29 homolog, proteasome accessory protein|homolog of yeast Ecm29|proteasome-associated protein ECM29 homolog 20121230 -9606 23394 ADNP - ADNP1 HGNC:15766|MIM:611386|Ensembl:ENSG00000101126|HPRD:09793|Vega:OTTHUMG00000032737 20 20q13.13 activity-dependent neuroprotector homeobox protein-coding ADNP activity-dependent neuroprotector homeobox O ADNP homeobox 1|activity-dependent neuroprotective protein|activity-dependent neuroprotector homeobox protein 20121230 -9606 23395 LARS2 - LEURS HGNC:17095|MIM:604544|Ensembl:ENSG00000011376|HPRD:05178|Vega:OTTHUMG00000133177 3 3p21.3 leucyl-tRNA synthetase 2, mitochondrial protein-coding LARS2 leucyl-tRNA synthetase 2, mitochondrial O leucine tRNA ligase 2, mitochondrial|leucine tRNA ligase 2, mitocondrial|leucine translase|probable leucine--tRNA ligase, mitochondrial|probable leucyl-tRNA synthetase, mitochondrial 20121230 -9606 23396 PIP5K1C - LCCS3|PIP5K-GAMMA|PIP5Kgamma|PIPKIg_v4 HGNC:8996|MIM:606102|Ensembl:ENSG00000186111|HPRD:05834|Vega:OTTHUMG00000180870 19 19p13.3 phosphatidylinositol-4-phosphate 5-kinase, type I, gamma protein-coding PIP5K1C phosphatidylinositol-4-phosphate 5-kinase, type I, gamma O Human homolog of mouse phosphatidylinositol-4-phosphate 5-kinase I-gamma|PIP5K1-gamma|diphosphoinositide kinase|phosphatidylinositol 4-phosphate 5-kinase type I gamma|phosphatidylinositol 4-phosphate 5-kinase type-1 gamma|phosphatidylinositol-4-phosphate 5-kinase type-1 gamma|ptdIns(4)P-5-kinase 1 gamma|type I PIP kinase 20121230 -9606 23397 NCAPH - BRRN1|CAP-H|HCAP-H HGNC:1112|MIM:602332|Ensembl:ENSG00000121152|HPRD:03820|Vega:OTTHUMG00000130451 2 2q11.2 non-SMC condensin I complex, subunit H protein-coding NCAPH non-SMC condensin I complex, subunit H O XCAP-H homolog|barren homolog 1|barren homolog protein 1|chromosome-associated protein H|condensin complex subunit 2 20121230 -9606 23398 PPWD1 - - HGNC:28954|Ensembl:ENSG00000113593|HPRD:11063|Vega:OTTHUMG00000131226 5 5q12.3 peptidylprolyl isomerase domain and WD repeat containing 1 protein-coding PPWD1 peptidylprolyl isomerase domain and WD repeat containing 1 O peptidylprolyl isomerase domain and WD repeat-containing protein 1|spliceosome-associated cyclophilin 20121230 -9606 23399 CTDNEP1 - DULLARD|HSA011916|NET56 HGNC:19085|MIM:610684|Ensembl:ENSG00000175826|HPRD:16845|Vega:OTTHUMG00000102180 17 17p13 CTD nuclear envelope phosphatase 1 protein-coding CTDNEP1 CTD nuclear envelope phosphatase 1 O C-terminal domain nuclear envelope phosphatase 1|dullard homolog|serine/threonine-protein phosphatase dullard 20121230 -9606 23400 ATP13A2 RP1-37C10.4 CLN12|HSA9947|KRPPD|PARK9 HGNC:30213|MIM:610513|Ensembl:ENSG00000159363|HPRD:13677|Vega:OTTHUMG00000002293 1 1p36 ATPase type 13A2 protein-coding ATP13A2 ATPase type 13A2 O probable cation-transporting ATPase 13A2|putative ATPase 20121230 -9606 23401 FRAT2 RP11-452K12.2 - HGNC:16048|MIM:605006|Ensembl:ENSG00000181274|HPRD:05419|Vega:OTTHUMG00000018850 10 10q24.1 frequently rearranged in advanced T-cell lymphomas 2 protein-coding FRAT2 frequently rearranged in advanced T-cell lymphomas 2 O FRAT-2|GSK-3 binding protein FRAT2|GSK-3-binding protein FRAT2 20121230 -9606 23403 FBXO46 - 20D7-FC4|FBXO34L|Fbx46 HGNC:25069|MIM:609117|Ensembl:ENSG00000177051|Vega:OTTHUMG00000182132 19 19q13.3 F-box protein 46 protein-coding FBXO46 F-box protein 46 O F-box only protein 46 20121230 -9606 23404 EXOSC2 RP11-57C19.4 RRP4|Rrp4p|hRrp4p|p7 HGNC:17097|MIM:602238|Ensembl:ENSG00000130713|HPRD:03758|Vega:OTTHUMG00000020811 9 9q34 exosome component 2 protein-coding EXOSC2 exosome component 2 O exosome complex component RRP4|exosome complex exonuclease RRP4|homolog of yeast RRP4 (ribosomal RNA processing 4), 3' 5' exoribonuclease (RRP4)|homolog of yeast RRP4 (ribosomal RNA processing 4), 3'-5'-exoribonuclease|ribosomal RNA-processing protein 4 20121230 -9606 23405 DICER1 - DCR1|Dicer|HERNA|MNG1 HGNC:17098|MIM:606241|Ensembl:ENSG00000100697|HPRD:05875|Vega:OTTHUMG00000166134 14 14q32.13 dicer 1, ribonuclease type III protein-coding DICER1 dicer 1, ribonuclease type III O Dicer1, Dcr-1 homolog|K12H4.8-LIKE|dicer 1, double-stranded RNA-specific endoribonuclease|endoribonuclease Dicer|helicase MOI|helicase with RNAse motif|helicase-moi 20121230 -9606 23406 COTL1 - CLP HGNC:18304|MIM:606748|Ensembl:ENSG00000103187|HPRD:09482|Vega:OTTHUMG00000137634 16 16q24.1 coactosin-like 1 (Dictyostelium) protein-coding COTL1 coactosin-like 1 (Dictyostelium) O coactosin-like protein 20121230 -9606 23408 SIRT5 - SIR2L5 HGNC:14933|MIM:604483|Ensembl:ENSG00000124523|HPRD:06838|Vega:OTTHUMG00000014278 6 6p23 sirtuin 5 protein-coding SIRT5 sirtuin 5 O NAD-dependent deacetylase sirtuin-5|NAD-dependent lysine demalonylase and desuccinylase sirtuin-5, mitochondrial|NAD-dependent protein deacylase sirtuin-5, mitochondrial|SIR2-like protein 5|regulatory protein SIR2 homolog 5|silent mating type information regulation 2, S.cerevisiae, homolog 5|sir2-like 5|sirtuin type 5 20121230 -9606 23409 SIRT4 - SIR2L4 HGNC:14932|MIM:604482|Ensembl:ENSG00000089163|HPRD:06837|Vega:OTTHUMG00000169028 12 12q sirtuin 4 protein-coding SIRT4 sirtuin 4 O NAD-dependent ADP-ribosyltransferase sirtuin-4|NAD-dependent protein deacetylase sirtuin-4|SIR2-like protein 4|regulatory protein SIR2 homolog 4|sir2-like 4|sirtuin type 4 20121230 -9606 23410 SIRT3 - SIR2L3 HGNC:14931|MIM:604481|Ensembl:ENSG00000142082|HPRD:06836|Vega:OTTHUMG00000119074 11 11p15.5 sirtuin 3 protein-coding SIRT3 sirtuin 3 O NAD-dependent deacetylase sirtuin-3, mitochondrial|NAD-dependent protein deacetylase sirtuin-3, mitochondrial|SIR2-like protein 3|mitochondrial nicotinamide adenine dinucleotide-dependent deacetylase|regulatory protein SIR2 homolog 3|silent mating type information regulation 2, S.cerevisiae, homolog 3|sir2-like 3|sirtuin type 3 20121230 -9606 23411 SIRT1 RP11-57G10.3 SIR2L1 HGNC:14929|MIM:604479|Ensembl:ENSG00000096717|HPRD:08381|Vega:OTTHUMG00000018340 10 10q21.3 sirtuin 1 protein-coding SIRT1 sirtuin 1 O NAD-dependent deacetylase sirtuin-1|NAD-dependent protein deacetylase sirtuin-1|SIR2-like protein 1|SIR2alpha|hSIR2|hSIRT1|regulatory protein SIR2 homolog 1|sir2-like 1|sirtuin type 1 20121230 -9606 23412 COMMD3 RP11-573G6.3 BUP|C10orf8 HGNC:23332|Ensembl:ENSG00000148444|HPRD:13082|Vega:OTTHUMG00000017806 10 10p12.2 COMM domain containing 3 protein-coding COMMD3 COMM domain containing 3 O COMM domain-containing protein 3|protein Bup 20121230 -9606 23413 NCS1 - FLUP|FREQ HGNC:3953|MIM:603315|Ensembl:ENSG00000107130|HPRD:04500|Vega:OTTHUMG00000020801 9 9q34 neuronal calcium sensor 1 protein-coding NCS1 neuronal calcium sensor 1 O frequenin homolog|frequenin-like protein|frequenin-like ubiquitous protein 20121230 -9606 23414 ZFPM2 - DIH3|FOG2|ZNF89B|hFOG-2 HGNC:16700|MIM:603693|Ensembl:ENSG00000169946|HPRD:04737|Vega:OTTHUMG00000164818 8 8q23 zinc finger protein, FOG family member 2 protein-coding ZFPM2 zinc finger protein, FOG family member 2 O FOG-2|Friend of GATA2|friend of GATA 2|friend of GATA protein 2|transcription factor GATA4, modulator of|zinc finger protein 89B|zinc finger protein ZFPM2|zinc finger protein, multitype 2 20121230 -9606 23415 KCNH4 - BEC2|ELK1|Kv12.3 HGNC:6253|MIM:604528|Ensembl:ENSG00000089558|HPRD:05165|Vega:OTTHUMG00000180106 17 17q21.2 potassium voltage-gated channel, subfamily H (eag-related), member 4 protein-coding KCNH4 potassium voltage-gated channel, subfamily H (eag-related), member 4 O ELK channel 1|brain-specific eag-like channel 2|ether-a-go-go K(+) channel family member|ether-a-go-go-like potassium channel 1|potassium voltage-gated channel subfamily H member 4|voltage-gated potassium channel subunit Kv12.3 20121230 -9606 23416 KCNH3 - BEC1|ELK2|Kv12.2 HGNC:6252|MIM:604527|Ensembl:ENSG00000135519|HPRD:05164|Vega:OTTHUMG00000169517 12 12q13 potassium voltage-gated channel, subfamily H (eag-related), member 3 protein-coding KCNH3 potassium voltage-gated channel, subfamily H (eag-related), member 3 O ELK channel 2|brain-specific eag-like channel 1|ether-a-go-go K(+) channel family member|ether-a-go-go-like potassium channel 2|potassium voltage-gated channel subfamily H member 3|voltage-gated potassium channel subunit Kv12.2 20121230 -9606 23417 MLYCD - MCD HGNC:7150|MIM:606761|Ensembl:ENSG00000103150|HPRD:05999|Vega:OTTHUMG00000176654 16 16q24 malonyl-CoA decarboxylase protein-coding MLYCD malonyl-CoA decarboxylase O malonyl coenzyme A decarboxylase|malonyl-CoA decarboxylase, mitochondrial 20121230 -9606 23418 CRB1 RP11-53I24.1 LCA8|RP12 HGNC:2343|MIM:604210|Ensembl:ENSG00000134376|HPRD:05019|Vega:OTTHUMG00000035663 1 1q31-q32.1 crumbs homolog 1 (Drosophila) protein-coding CRB1 crumbs homolog 1 (Drosophila) O crumbs homolog 1 20121230 -9606 23420 NOMO1 - Nomo|PM5 HGNC:30060|MIM:609157|Ensembl:ENSG00000103512|HPRD:11398|Vega:OTTHUMG00000090541 16 16p13.11 NODAL modulator 1 protein-coding NOMO1 NODAL modulator 1 O nodal modulator 1|nodal modulator 3|pM5 protein 3|pM5 protein, telomeric copy 20121230 -9606 23421 ITGB3BP - CENP-R|CENPR|HSU37139|NRIF3|TAP20 HGNC:6157|MIM:605494|Ensembl:ENSG00000142856|HPRD:09267|Vega:OTTHUMG00000013364 1 1p31.3 integrin beta 3 binding protein (beta3-endonexin) protein-coding ITGB3BP integrin beta 3 binding protein (beta3-endonexin) O beta 3 endonexin|beta-3-endonexin|centromere protein R|integrin beta-3-binding protein|nuclear receptor-interacting factor 3 20121230 -9606 23423 TMED3 UNQ5357/PRO1078 C15orf22|P24B|p26 HGNC:28889|Ensembl:ENSG00000166557|HPRD:18200|Vega:OTTHUMG00000144170 15 15q24-q25 transmembrane emp24 protein transport domain containing 3 protein-coding TMED3 transmembrane emp24 protein transport domain containing 3 O integral type I protein|membrane protein p24B|p24 family protein gamma-4|p24gamma4|transmembrane emp24 domain containing 3|transmembrane emp24 domain-containing protein 3 20121230 -9606 23424 TDRD7 - CATC4|PCTAIRE2BP|RP11-508D10.1|TRAP HGNC:30831|MIM:611258|Ensembl:ENSG00000196116|HPRD:11626|Vega:OTTHUMG00000020326 9 9q22.33 tudor domain containing 7 protein-coding TDRD7 tudor domain containing 7 O PCTAIRE2-binding protein|tudor domain-containing protein 7|tudor repeat associator with PCTAIRE 2 20121230 -9606 23426 GRIP1 - GRIP HGNC:18708|MIM:604597|Ensembl:ENSG00000155974|Vega:OTTHUMG00000169019 12 12q14.3 glutamate receptor interacting protein 1 protein-coding GRIP1 glutamate receptor interacting protein 1 O glutamate receptor-interacting protein 1 20121230 -9606 23428 SLC7A8 - LAT2|LPI-PC1 HGNC:11066|MIM:604235|Ensembl:ENSG00000092068|HPRD:11971|Vega:OTTHUMG00000028720 14 14q11.2 solute carrier family 7 (amino acid transporter light chain, L system), member 8 protein-coding SLC7A8 solute carrier family 7 (amino acid transporter light chain, L system), member 8 O L-type amino acid transporter 2|integral membrane protein E16H|large neutral amino acids transporter small subunit 2|solute carrier family 7 (amino acid transporter, L-type), member 8|solute carrier family 7 (cationic amino acid transporter, y+ system), member 8 20121230 -9606 23429 RYBP - AAP1|DEDAF|YEAF1 HGNC:10480|MIM:607535|Ensembl:ENSG00000163602|HPRD:09607|Vega:OTTHUMG00000159190 3 3p13 RING1 and YY1 binding protein protein-coding RYBP RING1 and YY1 binding protein O APAP-1|DED-associated factor|RING1 and YY1-binding protein|YY1 and E4TF1 associated factor 1|YY1 and E4TF1-associated factor 1|apoptin-associating protein 1|death effector domain-associated factor|ring1 interactor RYBP 20121230 -9606 23430 TPSD1 - MCP7-LIKE|MCP7L1|MMCP-7L HGNC:14118|MIM:609272|Ensembl:ENSG00000095917|HPRD:08345|Vega:OTTHUMG00000128511 16 16p13.3 tryptase delta 1 protein-coding TPSD1 tryptase delta 1 O delta-tryptase|hmMCP-3-like tryptase III|mMCP-7-like delta II tryptase|mMCP-7-like-1|mMCP-7-like-2|mast cell tryptase|tryptase delta|tryptase-3 20121230 -9606 23431 AP4E1 - CPSQ4|SPG51 HGNC:573|MIM:607244|Ensembl:ENSG00000081014|HPRD:06258|Vega:OTTHUMG00000172458 15 15q21.2 adaptor-related protein complex 4, epsilon 1 subunit protein-coding AP4E1 adaptor-related protein complex 4, epsilon 1 subunit O AP-4 complex subunit epsilon-1|adaptor-related protein complex AP-4 epsilon|epsilon-adaptin 20121230 -9606 23432 GPR161 - RE2 HGNC:23694|MIM:612250|Ensembl:ENSG00000143147|HPRD:17070|Vega:OTTHUMG00000034651 1 1q24.2 G protein-coupled receptor 161 protein-coding GPR161 G protein-coupled receptor 161 O G-protein coupled receptor 161|G-protein coupled receptor RE2 20121230 -9606 23433 RHOQ - ARHQ|RASL7A|TC10|TC10A HGNC:17736|MIM:605857|Ensembl:ENSG00000119729|HPRD:05791|Vega:OTTHUMG00000150653 2 2p21 ras homolog family member Q protein-coding RHOQ ras homolog family member Q O RAS-like, family 7, member A|ras homolog gene family, member Q|ras-like protein TC10|ras-like protein family member 7A|rho-related GTP-binding protein RhoQ 20121230 -9606 23434 C3orf27 - GR6 HGNC:17099|Ensembl:ENSG00000198685|HPRD:13607|Vega:OTTHUMG00000159688 3 3q21 chromosome 3 open reading frame 27 protein-coding C3orf27 chromosome 3 open reading frame 27 O protein GR6|putative GR6 protein 20121230 -9606 23435 TARDBP RP4-635E18.2 ALS10|TDP-43 HGNC:11571|MIM:605078|Ensembl:ENSG00000120948|HPRD:05466|Vega:OTTHUMG00000002120 1 1p36.22 TAR DNA binding protein protein-coding TARDBP TAR DNA binding protein O TAR DNA-binding protein 43|TAR DNA-binding protein-43 20121230 -9606 23436 CELA3B RP11-26H16.3 CBPP|E1|EL-1|ELA3B HGNC:15945|Ensembl:ENSG00000219073|HPRD:06498|Vega:OTTHUMG00000002758 1 1p36.12 chymotrypsin-like elastase family, member 3B protein-coding CELA3B chymotrypsin-like elastase family, member 3B O cholesterol-binding pancreatic protease|chymotrypsin-like elastase family member 3B|elastase 1|elastase 3B, pancreatic|elastase IIIB|elastase-3B|fecal elastase 1|pancreatic elastase 1|pancreatic endopeptidase E|protease E|proteinase E 20121230 -9606 23437 TRNAS2 - TRNS|TRS2|tRNA-SER HGNC:16293|MIM:189910 6 6p21.3 transfer RNA serine 2 (anticodon AGA) tRNA TRNAS2 transfer RNA serine 2 (anticodon AGA) O - 20121230 -9606 23438 HARS2 - HARSL|HARSR|HO3|PRLTS2 HGNC:4817|MIM:600783|Ensembl:ENSG00000112855|HPRD:02871|Vega:OTTHUMG00000129500 5 5q31.3 histidyl-tRNA synthetase 2, mitochondrial protein-coding HARS2 histidyl-tRNA synthetase 2, mitochondrial O HARS-related|hisRS|histidine tRNA ligase 2, mitochondrial (putative)|histidine translase|histidine-tRNA ligase homolog|histidyl-tRNA synthetase 2, mitochondrial (putative)|probable histidine--tRNA ligase, mitochondrial|probable histidyl-tRNA synthetase, mitochondrial 20121230 -9606 23439 ATP1B4 - - HGNC:808|Ensembl:ENSG00000101892|HPRD:06453|Vega:OTTHUMG00000022299 X Xq24 ATPase, Na+/K+ transporting, beta 4 polypeptide protein-coding ATP1B4 ATPase, Na+/K+ transporting, beta 4 polypeptide O Na,K-ATPase beta m-subunit|X,K-ATPase beta-m subunit|protein ATP1B4|x/potassium-transporting ATPase subunit beta-m 20121230 -9606 23440 OTP - - HGNC:8518|MIM:604529|Ensembl:ENSG00000171540|HPRD:05166|Vega:OTTHUMG00000102171 5 5q13.3 orthopedia homeobox protein-coding OTP orthopedia homeobox O homeobox protein orthopedia|orthopedia homolog 20121230 -9606 23443 SLC35A3 - - HGNC:11023|MIM:605632|Ensembl:ENSG00000117620|HPRD:10413|Vega:OTTHUMG00000010805 1 1p21 solute carrier family 35 (UDP-N-acetylglucosamine (UDP-GlcNAc) transporter), member A3 protein-coding SLC35A3 solute carrier family 35 (UDP-N-acetylglucosamine (UDP-GlcNAc) transporter), member A3 O UDP-N-acetylglucosamine transporter|golgi UDP-GlcNAc transporter|solute carrier family 35 (UDP-N-acetylglucosamine (UDP-GlcNAc) transporter), member 3|solute carrier family 35 member A3 20121230 -9606 23444 CDW12 - p90-120 - - - CDw12 antigen protein-coding - - - - 20100404 -9606 23446 SLC44A1 - CD92|CDW92|CHTL1|CTL1|RP11-287A8.1 HGNC:18798|MIM:606105|Ensembl:ENSG00000070214|HPRD:16197|Vega:OTTHUMG00000020421 9 9q31.2 solute carrier family 44, member 1 protein-coding SLC44A1 solute carrier family 44, member 1 O CDW92 antigen|choline transporter-like protein 1 20121230 -9606 23447 CDW93 - - - - - CDw93 antigen protein-coding - - - - 20100404 -9606 23448 CD139 - - - - - CD139 antigen protein-coding - - - - 20100404 -9606 23449 CD165 - - - - - CD165 antigen protein-coding - - - - 20100404 -9606 23450 SF3B3 - RSE1|SAP130|SF3b130|STAF130 HGNC:10770|MIM:605592|Ensembl:ENSG00000189091|HPRD:12027|Vega:OTTHUMG00000137582 16 16q22.1 splicing factor 3b, subunit 3, 130kDa protein-coding SF3B3 splicing factor 3b, subunit 3, 130kDa O SAP 130|pre-mRNA splicing factor SF3b, 130 kDa subunit|pre-mRNA-splicing factor SF3b 130 kDa subunit|spliceosome-associated protein 130|splicing factor 3B subunit 3 20121230 -9606 23451 SF3B1 - Hsh155|MDS|PRP10|PRPF10|SAP155|SF3b155 HGNC:10768|MIM:605590|Ensembl:ENSG00000115524|HPRD:09281|Vega:OTTHUMG00000154447 2 2q33.1 splicing factor 3b, subunit 1, 155kDa protein-coding SF3B1 splicing factor 3b, subunit 1, 155kDa O SAP 155|pre-mRNA processing 10|pre-mRNA splicing factor SF3b, 155 kDa subunit|spliceosome-associated protein 155|splicing factor 3B subunit 1 20121230 -9606 23452 ANGPTL2 RP11-1M19.1 ARP2|HARP HGNC:490|MIM:605001|Ensembl:ENSG00000136859|HPRD:05415|Vega:OTTHUMG00000020695 9 9q34 angiopoietin-like 2 protein-coding ANGPTL2 angiopoietin-like 2 O angiopoietin-like protein 2|angiopoietin-related protein 2 20121230 -9606 23456 ABCB10 - EST20237|M-ABC2|MTABC2 HGNC:41|MIM:605454|Ensembl:ENSG00000135776|HPRD:09263|Vega:OTTHUMG00000039471 1 1q42.13 ATP-binding cassette, sub-family B (MDR/TAP), member 10 protein-coding ABCB10 ATP-binding cassette, sub-family B (MDR/TAP), member 10 O ABC transporter 10 protein|ATP-binding cassette sub-family B member 10, mitochondrial|ATP-binding cassette transporter 10|mitochondrial ATP-binding cassette 2 20121230 -9606 23457 ABCB9 - EST122234|TAPL HGNC:50|MIM:605453|Ensembl:ENSG00000150967|HPRD:09262|Vega:OTTHUMG00000168769 12 12q24 ATP-binding cassette, sub-family B (MDR/TAP), member 9 protein-coding ABCB9 ATP-binding cassette, sub-family B (MDR/TAP), member 9 O ABC transporter 9 protein|ATP-binding cassette sub-family B member 9|TAP-like protein 20121230 -9606 23459 CMD1H - - HGNC:2108|MIM:604288 2 2q14-q22 cardiomyopathy, dilated 1H (autosomal dominant) unknown CMD1H cardiomyopathy, dilated 1H (autosomal dominant) O - 20120622 -9606 23460 ABCA6 - EST155051 HGNC:36|MIM:612504|Ensembl:ENSG00000154262|HPRD:10622|Vega:OTTHUMG00000180258 17 17q24.3 ATP-binding cassette, sub-family A (ABC1), member 6 protein-coding ABCA6 ATP-binding cassette, sub-family A (ABC1), member 6 O ABC transporter ABCA6|ATP-binding cassette A6|ATP-binding cassette sub-family A member 6 20121230 -9606 23461 ABCA5 - ABC13|EST90625 HGNC:35|MIM:612503|Ensembl:ENSG00000154265|HPRD:09789|Vega:OTTHUMG00000180303 17 17q24.3 ATP-binding cassette, sub-family A (ABC1), member 5 protein-coding ABCA5 ATP-binding cassette, sub-family A (ABC1), member 5 O ATP-binding cassette A5|ATP-binding cassette sub-family A member 5 20121230 -9606 23462 HEY1 - BHLHb31|CHF2|HERP2|HESR1|HRT-1|OAF1 HGNC:4880|MIM:602953|Ensembl:ENSG00000164683|HPRD:04260|Vega:OTTHUMG00000164641 8 8q21 hairy/enhancer-of-split related with YRPW motif 1 protein-coding HEY1 hairy/enhancer-of-split related with YRPW motif 1 O HES-related repressor protein 1|HES-related repressor protein 2|basic helix-loop-helix protein OAF1|cardiovascular helix-loop-helix factor 2|class B basic helix-loop-helix protein 31|hHRT1|hairy and enhancer of split-related protein 1|hairy-related transcription factor 1|hairy/enhancer-of-split related with YRPW motif protein 1 20121230 -9606 23463 ICMT RP1-120G22.4 HSTE14|MST098|MSTP098|PCCMT|PCMT|PPMT HGNC:5350|MIM:605851|Ensembl:ENSG00000116237|HPRD:09321|Vega:OTTHUMG00000001254 1 1p36.21 isoprenylcysteine carboxyl methyltransferase protein-coding ICMT isoprenylcysteine carboxyl methyltransferase O prenylated protein carboxyl methyltransferase|prenylcysteine carboxyl methyltransferase|protein-S isoprenylcysteine O-methyltransferase|protein-S-isoprenylcysteine O-methyltransferase 20121230 -9606 23464 GCAT - KBL HGNC:4188|MIM:607422|Ensembl:ENSG00000100116|HPRD:07602|Vega:OTTHUMG00000150664 22 22q13.1 glycine C-acetyltransferase protein-coding GCAT glycine C-acetyltransferase O 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial|2-amino-3-ketobutyrate-CoA ligase|AKB ligase|aminoacetone synthase|glycine acetyltransferase 20121230 -9606 23466 CBX6 RP3-327J16.5 - HGNC:1556|Ensembl:ENSG00000183741|HPRD:13005|Vega:OTTHUMG00000150456 22 22q13.1 chromobox homolog 6 protein-coding CBX6 chromobox homolog 6 O chromobox protein homolog 6 20121230 -9606 23467 NPTXR - NPR HGNC:7954|MIM:609474|Ensembl:ENSG00000221890|HPRD:14837|Vega:OTTHUMG00000150458 22 22q13.1 neuronal pentraxin receptor protein-coding NPTXR neuronal pentraxin receptor O - 20121230 -9606 23468 CBX5 - HP1|HP1A HGNC:1555|MIM:604478|Ensembl:ENSG00000094916|HPRD:05131|Vega:OTTHUMG00000169700 12 12q13.13 chromobox homolog 5 protein-coding CBX5 chromobox homolog 5 O HP1 alpha homolog|HP1-ALPHA|HP1Hs alpha|antigen p25|chromobox homolog 5 (HP1 alpha homolog, Drosophila)|chromobox protein homolog 5|heterochromatin protein 1 homolog alpha|heterochromatin protein 1-alpha 20121230 -9606 23469 PHF3 RP1-22I17.3 - HGNC:8921|MIM:607789|Ensembl:ENSG00000118482|HPRD:08477|Vega:OTTHUMG00000014952 6 6q12 PHD finger protein 3 protein-coding PHF3 PHD finger protein 3 O - 20121230 -9606 23471 TRAM1 - PNAS8|TRAM|TRAMP HGNC:20568|MIM:605190|Ensembl:ENSG00000067167|HPRD:05545|Vega:OTTHUMG00000164428 8 8q13.3 translocation associated membrane protein 1 protein-coding TRAM1 translocation associated membrane protein 1 O translocating chain-associated membrane protein 1|translocating chain-associating membrane protein|translocation-associating membrane protein 1 20121230 -9606 23473 CAPN7 - CALPAIN7|PALBH HGNC:1484|MIM:606400|Ensembl:ENSG00000131375|HPRD:05908|Vega:OTTHUMG00000129863 3 3p24 calpain 7 protein-coding CAPN7 calpain 7 O calpain like protease|calpain-7|homolog of Aspergillus Nidulans PALB|palB homolog 20121230 -9606 23474 ETHE1 - HSCO|YF13H12 HGNC:23287|MIM:608451|Ensembl:ENSG00000105755|HPRD:09764 19 19q13.31 ethylmalonic encephalopathy 1 protein-coding ETHE1 ethylmalonic encephalopathy 1 O ethylmalonic encephalopathy protein 1|hepatoma subtracted clone one protein|protein ETHE1, mitochondrial 20121230 -9606 23475 QPRT - QPRTase HGNC:9755|MIM:606248|Ensembl:ENSG00000103485|HPRD:06950|Vega:OTTHUMG00000097770 16 16p11.2 quinolinate phosphoribosyltransferase protein-coding QPRT quinolinate phosphoribosyltransferase O QAPRTase|nicotinate-nucleotide pyrophosphorylase (carboxylating)|nicotinate-nucleotide pyrophosphorylase [carboxylating] 20121230 -9606 23476 BRD4 - CAP|HUNK1|HUNKI|MCAP HGNC:13575|MIM:608749|Ensembl:ENSG00000141867|HPRD:10574 19 19p13.1 bromodomain containing 4 protein-coding BRD4 bromodomain containing 4 O bromodomain-containing 4|bromodomain-containing protein 4|chromosome-associated protein 20121230 -9606 23478 SEC11A - 1810012E07Rik|SEC11L1|SPC18|SPCS4A|sid2895 HGNC:17718|Ensembl:ENSG00000140612|HPRD:07503|Vega:OTTHUMG00000172489 15 15q25.3 SEC11 homolog A (S. cerevisiae) protein-coding SEC11A SEC11 homolog A (S. cerevisiae) O SEC11-like protein 1|SPase 18 kDa subunit|endopeptidase SP18|microsomal signal peptidase 18 kDa subunit|signal peptidase complex (18kD)|signal peptidase complex catalytic subunit SEC11A 20121230 -9606 23479 ISCU - 2310020H20Rik|HML|ISU2|NIFU|NIFUN|hnifU HGNC:29882|MIM:611911|Ensembl:ENSG00000136003|HPRD:14828|Vega:OTTHUMG00000168420 12 12q24.1 iron-sulfur cluster scaffold homolog (E. coli) protein-coding ISCU iron-sulfur cluster scaffold homolog (E. coli) O IscU iron-sulfur cluster scaffold homolog|NifU-like N-terminal domain containing|iron-sulfur cluster assembly enzyme ISCU, mitochondrial|nifU-like N-terminal domain-containing protein|nifU-like protein 20121230 -9606 23480 SEC61G - SSS1 HGNC:18277|MIM:609215|Ensembl:ENSG00000132432|HPRD:15318|Vega:OTTHUMG00000023430 7 7p11.2 Sec61 gamma subunit protein-coding SEC61G Sec61 gamma subunit O protein transport protein SEC61 gamma subunit|protein transport protein Sec61 subunit gamma 20121230 -9606 23481 PES1 - PES HGNC:8848|MIM:605819|Ensembl:ENSG00000100029|HPRD:05783|Vega:OTTHUMG00000151077 22 22q12.1 pescadillo ribosomal biogenesis factor 1 protein-coding PES1 pescadillo ribosomal biogenesis factor 1 O pescadillo homolog|pescadillo homolog 1, containing BRCT domain 20121230 -9606 23483 TGDS RP11-124B17.2 SDR2E1|TDPGD HGNC:20324|Ensembl:ENSG00000088451|HPRD:15494|Vega:OTTHUMG00000046308 13 13q32.1 TDP-glucose 4,6-dehydratase protein-coding TGDS TDP-glucose 4,6-dehydratase O dTDP-D-glucose 4,6-dehydratase|growth-inhibiting protein 21|short chain dehydrogenase/reductase family 2E, member 1 20121230 -9606 23484 LEPROTL1 My047 HSPC112|Vps55|my047 HGNC:6555|MIM:607338|Ensembl:ENSG00000104660|HPRD:09551|Vega:OTTHUMG00000163820 8 8p21 leptin receptor overlapping transcript-like 1 protein-coding LEPROTL1 leptin receptor overlapping transcript-like 1 O - 20121230 -9606 23491 CES3 UNQ869/PRO1887 ES31 HGNC:1865|MIM:605279|Ensembl:ENSG00000172828|HPRD:07014|Vega:OTTHUMG00000137525 16 16q22.1 carboxylesterase 3 protein-coding CES3 carboxylesterase 3 O carboxylesterase 3 (brain)|esterase 31|liver carboxylesterase 31 homolog 20121230 -9606 23492 CBX7 RP4-742C19.7 - HGNC:1557|MIM:608457|Ensembl:ENSG00000100307|HPRD:12234|Vega:OTTHUMG00000150418 22 22q13.1 chromobox homolog 7 protein-coding CBX7 chromobox homolog 7 O chromobox protein homolog 7 20121230 -9606 23493 HEY2 RP1-293L8.3 CHF1|GRIDLOCK|GRL|HERP1|HESR2|HRT2|bHLHb32 HGNC:4881|MIM:604674|Ensembl:ENSG00000135547|HPRD:05243|Vega:OTTHUMG00000015512 6 6q21 hairy/enhancer-of-split related with YRPW motif 2 protein-coding HEY2 hairy/enhancer-of-split related with YRPW motif 2 O HES-related repressor protein 1|HES-related repressor protein 2|HESR-2|HRT-2|cardiovascular basic helix-loop-helix factor 1|cardiovascular helix-loop-helix factor 1|class B basic helix-loop-helix protein 32|hCHF1|hHRT2|hairy and enhancer of split-related protein 2|hairy-related transcription factor 2|hairy/enhancer-of-split related with YRPW motif protein 2|protein gridlock homolog 20121230 -9606 23495 TNFRSF13B - CD267|CVID|CVID2|TACI|TNFRSF14B HGNC:18153|MIM:604907|Ensembl:ENSG00000240505|HPRD:05365|Vega:OTTHUMG00000059262 17 17p11.2 tumor necrosis factor receptor superfamily, member 13B protein-coding TNFRSF13B tumor necrosis factor receptor superfamily, member 13B O transmembrane activator and CAML interactor|tumor necrosis factor receptor 13B|tumor necrosis factor receptor superfamily member 13B 20121230 -9606 23498 HAAO - 3-HAO|HAO HGNC:4796|MIM:604521|Ensembl:ENSG00000162882|HPRD:05158|Vega:OTTHUMG00000152348 2 2p21 3-hydroxyanthranilate 3,4-dioxygenase protein-coding HAAO 3-hydroxyanthranilate 3,4-dioxygenase O 3-hydroxyanthranilate oxygenase|3-hydroxyanthranilic acid dioxygenase|HAD 20121230 -9606 23499 MACF1 - ABP620|ACF7|MACF|OFC4 HGNC:13664|MIM:608271|Ensembl:ENSG00000127603|HPRD:09750|Vega:OTTHUMG00000007754 1 1p32-p31 microtubule-actin crosslinking factor 1 protein-coding MACF1 microtubule-actin crosslinking factor 1 O 620 kDa actin binding protein|actin cross-linking family protein 7|macrophin 1|microtubule-actin cross-linking factor 1|trabeculin-alpha 20121230 -9606 23500 DAAM2 RP1-278E11.1 dJ90A20A.1 HGNC:18143|MIM:606627|Ensembl:ENSG00000146122|HPRD:09434|Vega:OTTHUMG00000014653 6 6p21.2 dishevelled associated activator of morphogenesis 2 protein-coding DAAM2 dishevelled associated activator of morphogenesis 2 O disheveled-associated activator of morphogenesis 2|dishevelled-associated activator of morphogenesis 2 20121230 -9606 23503 ZFYVE26 - FYVE-CENT|SPG15 HGNC:20761|MIM:612012|Ensembl:ENSG00000072121|HPRD:15734|Vega:OTTHUMG00000171274 14 14q24.1 zinc finger, FYVE domain containing 26 protein-coding ZFYVE26 zinc finger, FYVE domain containing 26 O FYVE domain-containing centrosomal protein|spastizin|zinc finger FYVE domain-containing protein 26 20121230 -9606 23504 RIMBP2 - RBP2|RIM-BP2 HGNC:30339|MIM:611602|Ensembl:ENSG00000060709|HPRD:17183|Vega:OTTHUMG00000168385 12 12q24.33 RIMS binding protein 2 protein-coding RIMBP2 RIMS binding protein 2 O RIM binding protein 2|RIMS-binding protein 2 20121230 -9606 23505 TMEM131 - CC28|PRO1048|RW1|YR-23 HGNC:30366|Ensembl:ENSG00000075568|Vega:OTTHUMG00000153061 2 2q11.2 transmembrane protein 131 protein-coding TMEM131 transmembrane protein 131 O 2610524E03Rik 20121230 -9606 23506 GLTSCR1L - KIAA0240 HGNC:21111|Ensembl:ENSG00000112624|HPRD:17180|Vega:OTTHUMG00000014706 6 6p21.1 GLTSCR1-like protein-coding GLTSCR1L GLTSCR1-like O uncharacterized protein KIAA0240 20121230 -9606 23507 LRRC8B UNQ6413/PRO21207 TA-LRRP|TALRRP HGNC:30692|MIM:612888|Ensembl:ENSG00000197147|HPRD:18145|Vega:OTTHUMG00000010129 1 1p22.2 leucine rich repeat containing 8 family, member B protein-coding LRRC8B leucine rich repeat containing 8 family, member B O T cell activation leucine repeat rich protein|T-cell activation leucine repeat-rich protein|leucine-rich repeat-containing protein 8B 20121230 -9606 23508 TTC9 - TTC9A HGNC:20267|MIM:610488|Ensembl:ENSG00000133985|Vega:OTTHUMG00000172133 14 14q24.2 tetratricopeptide repeat domain 9 protein-coding TTC9 tetratricopeptide repeat domain 9 O TPR repeat protein 9A|tetratricopeptide repeat protein 9A 20121230 -9606 23509 POFUT1 - FUT12|O-FUT|O-Fuc-T|O-FucT-1 HGNC:14988|MIM:607491|Ensembl:ENSG00000101346|HPRD:06319|Vega:OTTHUMG00000133268 20 20q11 protein O-fucosyltransferase 1 protein-coding POFUT1 protein O-fucosyltransferase 1 O GDP-fucose protein O-fucosyltransferase 1|o-fucosyltransferase protein|peptide-O-fucosyltransferase 1 20121230 -9606 23510 KCTD2 - - HGNC:21294|MIM:613422|Ensembl:ENSG00000180901|HPRD:17176|Vega:OTTHUMG00000179276 17 17q25.1 potassium channel tetramerisation domain containing 2 protein-coding KCTD2 potassium channel tetramerisation domain containing 2 O BTB/POZ domain-containing protein KCTD2|potassium channel tetramerization domain-containing protein 2 20121230 -9606 23511 NUP188 RP11-167N5.2 KIAA0169 HGNC:17859|Ensembl:ENSG00000095319|HPRD:18582|Vega:OTTHUMG00000020768 9 9q34.11 nucleoporin 188kDa protein-coding NUP188 nucleoporin 188kDa O hNup188|nucleoporin NUP188 homolog 20121230 -9606 23512 SUZ12 - CHET9|JJAZ1 HGNC:17101|MIM:606245|Ensembl:ENSG00000178691|HPRD:06949|Vega:OTTHUMG00000132813 17 17q11.2 suppressor of zeste 12 homolog (Drosophila) protein-coding SUZ12 suppressor of zeste 12 homolog (Drosophila) O chET 9 protein|chromatin precipitated E2F target 9 protein|joined to JAZF1 protein|polycomb protein SUZ12|suppressor of zeste 12 protein homolog 20121230 -9606 23513 SCRIB - CRIB1|SCRB1|SCRIB1|Vartul HGNC:30377|MIM:607733|Ensembl:ENSG00000180900|HPRD:06984|Vega:OTTHUMG00000165154 8 8q24.3 scribbled homolog (Drosophila) protein-coding SCRIB scribbled homolog (Drosophila) O protein scribble homolog 20121230 -9606 23514 KIAA0146 - - HGNC:28971|Ensembl:ENSG00000164808|Vega:OTTHUMG00000164176 8 8q11.21 KIAA0146 protein-coding KIAA0146 KIAA0146 O uncharacterized protein KIAA0146 20121230 -9606 23515 MORC3 - NXP2|ZCW5|ZCWCC3 HGNC:23572|MIM:610078|Ensembl:ENSG00000159256|HPRD:10316|Vega:OTTHUMG00000086620 21 21q22.13 MORC family CW-type zinc finger 3 protein-coding MORC3 MORC family CW-type zinc finger 3 O MORC family CW-type zinc finger protein 3|nuclear matrix protein NXP2|zinc finger CW-type coiled-coil domain protein 3|zinc finger, CW type with coiled-coil domain 3|zinc finger, CW-type with coiled-coil domain 3 20121230 -9606 23516 SLC39A14 - LZT-Hs4|NET34|ZIP14|cig19 HGNC:20858|MIM:608736|Ensembl:ENSG00000104635|HPRD:12288|Vega:OTTHUMG00000097791 8 8p21.3 solute carrier family 39 (zinc transporter), member 14 protein-coding SLC39A14 solute carrier family 39 (zinc transporter), member 14 O LIV-1 subfamily of ZIP zinc transporter 4|ZIP-14|Zrt-, Irt-like protein 14|solute carrier family 39 (metal ion transporter), member 14|solute carrier family 39 member 14|zinc transporter ZIP14|zrt- and Irt-like protein 14 20121230 -9606 23517 SKIV2L2 - Dob1|KIAA0052|Mtr4|fSAP118 HGNC:18734|Ensembl:ENSG00000039123|HPRD:13777|Vega:OTTHUMG00000097019 5 5q11.2 superkiller viralicidic activity 2-like 2 (S. cerevisiae) protein-coding SKIV2L2 superkiller viralicidic activity 2-like 2 (S. cerevisiae) O ATP-dependent helicase SKIV2L2|functional spliceosome-associated protein 118|superkiller viralicidic activity 2-like 2 20121230 -9606 23518 R3HDM1 - R3HDM HGNC:9757|Ensembl:ENSG00000048991|HPRD:10180|Vega:OTTHUMG00000131740 2 2q21.3 R3H domain containing 1 protein-coding R3HDM1 R3H domain containing 1 O R3H domain (binds single-stranded nucleic acids) containing|R3H domain-containing protein 1 20121230 -9606 23519 ANP32D - PP32R2 HGNC:16676|MIM:606878|Ensembl:ENSG00000139223|HPRD:06046|Vega:OTTHUMG00000162681 12 12q13.11 acidic (leucine-rich) nuclear phosphoprotein 32 family, member D protein-coding ANP32D acidic (leucine-rich) nuclear phosphoprotein 32 family, member D O acidic leucine-rich nuclear phosphoprotein 32 family member D|acidic nuclear phosphoprotein 32D|phosphoprotein 32-related protein 2|pp32 related 2|tumorigenic protein pp32r2 20121230 -9606 23520 ANP32C - PP32R1 HGNC:16675|MIM:606877|HPRD:06045 4 4q32.3 acidic (leucine-rich) nuclear phosphoprotein 32 family, member C protein-coding ANP32C acidic (leucine-rich) nuclear phosphoprotein 32 family, member C O acidic leucine-rich nuclear phosphoprotein 32 family member C|phosphoprotein 32-related protein 1|pp32 related 1|tumorigenic protein pp32r1 20121230 -9606 23521 RPL13A - L13A|TSTA1 HGNC:10304|Ensembl:ENSG00000142541|HPRD:11775|Vega:OTTHUMG00000134289 19 19q13.3 ribosomal protein L13a protein-coding RPL13A ribosomal protein L13a O 23 kDa highly basic protein|60S ribosomal protein L13a|tissue specific transplantation antigen 1 20121230 -9606 23522 KAT6B - GTPTS|MORF|MOZ2|MYST4|qkf|querkopf HGNC:17582|MIM:605880|Ensembl:ENSG00000156650|HPRD:07065|Vega:OTTHUMG00000018509 10 10q22.2 K(lysine) acetyltransferase 6B protein-coding KAT6B K(lysine) acetyltransferase 6B O MOZ, YBF2/SAS3, SAS2 and TIP60 protein 4|MOZ-related factor|MYST histone acetyltransferase (monocytic leukemia) 4|MYST-4|histone acetyltransferase KAT6B|histone acetyltransferase MORF|histone acetyltransferase MOZ2|histone acetyltransferase MYST4|monocytic leukemia zinc finger protein-related factor 20121230 -9606 23523 CABIN1 - CAIN|PPP3IN HGNC:24187|MIM:604251|Ensembl:ENSG00000099991|HPRD:10369|Vega:OTTHUMG00000150797 22 22q11.23 calcineurin binding protein 1 protein-coding CABIN1 calcineurin binding protein 1 O calcineurin binding protein cabin 1|calcineurin inhibitor|calcineurin-binding protein cabin-1 20121230 -9606 23524 SRRM2 HSPC075 300-KD|CWF21|Cwc21|SRL300|SRm300 HGNC:16639|MIM:606032|Ensembl:ENSG00000167978|HPRD:06913|Vega:OTTHUMG00000177358 16 16p13.3 serine/arginine repetitive matrix 2 protein-coding SRRM2 serine/arginine repetitive matrix 2 O 300 kDa nuclear matrix antigen|RNA binding protein|SR-related nuclear matrix protein of 300 kDa|ser/Arg-related nuclear matrix protein of 300 kDa|serine/arginine repetitive matrix protein 2|serine/arginine-rich splicing factor-related nuclear matrix protein of 300 kDa|splicing coactivator subunit SRm300|tax-responsive enhancer element-binding protein 803|taxREB803 20121230 -9606 23526 HMHA1 - ARHGAP45|HA-1|HLA-HA1 HGNC:17102|MIM:601155|Ensembl:ENSG00000180448|HPRD:03097|Vega:OTTHUMG00000181871 19 19p13.3 histocompatibility (minor) HA-1 protein-coding HMHA1 histocompatibility (minor) HA-1 O minor histocompatibility antigen HA-1|minor histocompatibility protein HA-1 20121230 -9606 23527 ACAP2 - CENTB2|CNT-B2 HGNC:16469|MIM:607766|Ensembl:ENSG00000114331|HPRD:09681|Vega:OTTHUMG00000155885 3 3q29 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 protein-coding ACAP2 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 O Arf GAP with coiled coil, ANK repeat and PH domains 2|arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 2|centaurin, beta 2|centaurin-beta-2 20121230 -9606 23528 ZNF281 - ZBP-99|ZNP-99 HGNC:13075|Ensembl:ENSG00000162702|HPRD:11702|Vega:OTTHUMG00000035724 1 1q32.1 zinc finger protein 281 protein-coding ZNF281 zinc finger protein 281 O GC-box-binding zinc finger protein 1|ZNP-99 transcription factor|transcription factor ZBP-99|zinc finger DNA-binding protein 99 20121230 -9606 23529 CLCF1 - BSF-3|BSF3|CISS2|CLC|NNT-1|NNT1|NR6 HGNC:17412|MIM:607672|Ensembl:ENSG00000175505|HPRD:09643|Vega:OTTHUMG00000167669 11 11q13.3 cardiotrophin-like cytokine factor 1 protein-coding CLCF1 cardiotrophin-like cytokine factor 1 O B-cell stimulating factor 3|B-cell stimulatory factor 3|B-cell-stimulating factor 3|CRLF1 associated cytokine-like factor 1|neurotrophin-1/B-cell stimulating factor-3|novel neurotrophin-1 20121230 -9606 23530 NNT hCG_17428 GCCD4 HGNC:7863|MIM:607878|Ensembl:ENSG00000112992|HPRD:09715|Vega:OTTHUMG00000096961 5 5p12 nicotinamide nucleotide transhydrogenase protein-coding NNT nicotinamide nucleotide transhydrogenase O NAD(P) transhydrogenase, mitochondrial|pyridine nucleotide transhydrogenase 20121230 -9606 23531 MMD - MMA|MMD1|PAQR11 HGNC:7153|MIM:604467|Ensembl:ENSG00000108960|HPRD:06835|Vega:OTTHUMG00000177845 17 17q monocyte to macrophage differentiation-associated protein-coding MMD monocyte to macrophage differentiation-associated O macrophage maturation-associated|monocyte to macrophage differentiation protein|progestin and adipoQ receptor family member 11|progestin and adipoQ receptor family member XI 20121230 -9606 23532 PRAME - CT130|MAPE|OIP-4|OIP4 HGNC:9336|MIM:606021|Ensembl:ENSG00000185686|HPRD:05820|Vega:OTTHUMG00000151172 22 22q11.22 preferentially expressed antigen in melanoma protein-coding PRAME preferentially expressed antigen in melanoma O Opa-interacting protein OIP4|cancer/testis antigen 130|melanoma antigen preferentially expressed in tumors|opa-interacting protein 4|preferentially expressed antigen of melanoma 20121230 -9606 23533 PIK3R5 - F730038I15Rik|FOAP-2|P101-PI3K|p101 HGNC:30035|MIM:611317|Ensembl:ENSG00000141506|HPRD:11433|Vega:OTTHUMG00000108197 17 17p13.1 phosphoinositide-3-kinase, regulatory subunit 5 protein-coding PIK3R5 phosphoinositide-3-kinase, regulatory subunit 5 O PI3-kinase p101 subunit|phosphatidylinositol 4,5-bisphosphate 3-kinase regulatory subunit|phosphatidylinositol-4,5-bisphosphate 3-kinase regulatory subunit|phosphoinositide 3-kinase regulatory subunit 5|protein FOAP-2|ptdIns-3-kinase p101 20121230 -9606 23534 TNPO3 - IPO12|MTR10A|TRN-SR|TRN-SR2|TRNSR HGNC:17103|MIM:610032|Ensembl:ENSG00000064419|HPRD:18209|Vega:OTTHUMG00000158409 7 7q32.1 transportin 3 protein-coding TNPO3 transportin 3 O imp12|importin 12|transportin-3|transportin-SR 20121230 -9606 23536 ADAT1 - HADAT1 HGNC:228|MIM:604230|Ensembl:ENSG00000065457|HPRD:11970|Vega:OTTHUMG00000137611 16 16q23.1 adenosine deaminase, tRNA-specific 1 protein-coding ADAT1 adenosine deaminase, tRNA-specific 1 O adenosine deaminase acting on tRNA|tRNA-specific adenosine deaminase 1|tRNA-specific adenosine-37 deaminase 20121230 -9606 23538 OR52A1 - HPFH1OR HGNC:8318|Ensembl:ENSG00000182070|HPRD:17742 11 11p15.5 olfactory receptor, family 52, subfamily A, member 1 protein-coding OR52A1 olfactory receptor, family 52, subfamily A, member 1 O odorant receptor HOR3'beta4|olfactory receptor 52A1|olfactory receptor OR11-319 20121230 -9606 23539 SLC16A8 RP5-1039K5.14-003 MCT3|REMP HGNC:16270|MIM:610409|Ensembl:ENSG00000100156|HPRD:11568|Vega:OTTHUMG00000151196 22 22q12.3-q13.2 solute carrier family 16, member 8 (monocarboxylic acid transporter 3) protein-coding SLC16A8 solute carrier family 16, member 8 (monocarboxylic acid transporter 3) O MCT 3|monocarboxylate transporter 3|solute carrier 16 (monocarboxylic acid transporters), member 8|solute carrier family 16 member 8 20121230 -9606 23540 TRNAS3 - TRS3 HGNC:16294|MIM:606172 6 6p22.1 transfer RNA serine 3 (anticodon UGA) tRNA TRNAS3 transfer RNA serine 3 (anticodon UGA) O - 20121230 -9606 23541 SEC14L2 - C22orf6|SPF|TAP|TAP1 HGNC:10699|MIM:607558|Ensembl:ENSG00000100003|HPRD:06344|Vega:OTTHUMG00000151024 22 22q12.2 SEC14-like 2 (S. cerevisiae) protein-coding SEC14L2 SEC14-like 2 (S. cerevisiae) O SEC14-like protein 2|alpha-tocopherol-associated protein|squalene transfer protein|supernatant protein factor|tocopherol-associated protein 20121230 -9606 23542 MAPK8IP2 - IB2|JIP2|PRKM8IPL HGNC:6883|MIM:607755|Ensembl:ENSG00000008735|HPRD:09674|Vega:OTTHUMG00000150181 22 22q13.33 mitogen-activated protein kinase 8 interacting protein 2 protein-coding MAPK8IP2 mitogen-activated protein kinase 8 interacting protein 2 O C-Jun-amino-terminal kinase-interacting protein 2|IB-2|JNK MAP kinase scaffold protein 2|JNK MAP kinase scaffold protein JIP2|JNK-interacting protein 2|homologous to mouse JIP-1|islet-brain 2 20121230 -9606 23543 RBFOX2 RP1-41P2.9 FOX2|Fox-2|HNRBP2|HRNBP2|RBM9|RTA|dJ106I20.3|fxh HGNC:9906|MIM:612149|Ensembl:ENSG00000100320|HPRD:15231|Vega:OTTHUMG00000150585 22 22q13.1 RNA binding protein, fox-1 homolog (C. elegans) 2 protein-coding RBFOX2 RNA binding protein, fox-1 homolog (C. elegans) 2 O RNA binding protein fox-1 homolog 2|RNA-binding motif protein 9|fox-1 homolog B|fox-1 homologue|hexaribonucleotide-binding protein 2|repressor of tamoxifen transcriptional activity 20121230 -9606 23544 SEZ6L RP3-341O5.1 - HGNC:10763|MIM:607021|Ensembl:ENSG00000100095|HPRD:08449|Vega:OTTHUMG00000150870 22 22q12.1 seizure related 6 homolog (mouse)-like protein-coding SEZ6L seizure related 6 homolog (mouse)-like O seizure 6-like protein|seizure related gene 6-like 20121230 -9606 23545 ATP6V0A2 - A2|ARCL|ARCL2A|ATP6A2|ATP6N1D|J6B7|RTF|STV1|TJ6|TJ6M|TJ6S|VPH1|WSS HGNC:18481|MIM:611716|Ensembl:ENSG00000185344|HPRD:16521|Vega:OTTHUMG00000168723 12 12q24.31 ATPase, H+ transporting, lysosomal V0 subunit a2 protein-coding ATP6V0A2 ATPase, H+ transporting, lysosomal V0 subunit a2 O A2V-ATPase|V-type proton ATPase 116 kDa subunit a isoform 2|lysosomal H(+)-transporting ATPase V0 subunit a2|regeneration and tolerance factor|v-ATPase 116 kDa|v-type proton ATPase 116 kDa subunit a|vacuolar proton translocating ATPase 116 kDa subunit a 20121230 -9606 23546 SYNGR4 - - HGNC:11502|MIM:608373|Ensembl:ENSG00000105467|HPRD:10520 19 19q13.3 synaptogyrin 4 protein-coding SYNGR4 synaptogyrin 4 O synaptogyrin-4 20121230 -9606 23547 LILRA4 XXbac-BCX403H19.3 CD85g|ILT7 HGNC:15503|MIM:607517|Ensembl:ENSG00000239961|HPRD:09596|Vega:OTTHUMG00000065355 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 4 protein-coding LILRA4 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 4 O CD85 antigen-like family member G|ILT-7|immunoglobulin-like transcript 7|leukocyte immunoglobulin-like receptor subfamily A member 4|leukocyte immunoglobulin-like receptor, subfamily A (without TM domain), member 4 20121230 -9606 23548 TTC33 - OSRF HGNC:29959|Ensembl:ENSG00000113638|HPRD:17807|Vega:OTTHUMG00000131142 5 5p13.1 tetratricopeptide repeat domain 33 protein-coding TTC33 tetratricopeptide repeat domain 33 O TPR repeat protein 33|osmosis responsive factor|osmosis-responsive factor|tetratricopeptide repeat protein 33 20121230 -9606 23549 DNPEP - ASPEP|DAP HGNC:2981|MIM:611367|Ensembl:ENSG00000123992|HPRD:09924|Vega:OTTHUMG00000058919 2 2q35 aspartyl aminopeptidase protein-coding DNPEP aspartyl aminopeptidase O - 20121230 -9606 23550 PSD4 - EFA6B|TIC HGNC:19096|MIM:614442|Ensembl:ENSG00000125637|HPRD:15191|Vega:OTTHUMG00000153339 2 2q13 pleckstrin and Sec7 domain containing 4 protein-coding PSD4 pleckstrin and Sec7 domain containing 4 O ADP-ribosylation factor guanine nucleotide-exchange factor 6|PH and SEC7 domain-containing protein 4|SEC7 homolog|exchange factor for ADP-ribosylation factor guanine nucleotide factor 6 B|exchange factor for ADP-ribosylation factor guanine nucleotide factor 6B|exchange factor for ARF6 B|pleckstrin homology and SEC7 domain-containing protein 4|telomeric of interleukin-1 cluster protein 20121230 -9606 23551 RASD2 - MGC:4834|Rhes|TEM2 HGNC:18229|MIM:612842|Ensembl:ENSG00000100302|HPRD:15210|Vega:OTTHUMG00000150607 22 22q13.1 RASD family, member 2 protein-coding RASD2 RASD family, member 2 O GTP-binding protein Rhes|Ras homolog enriched in striatum|tumor endothelial marker 2 20121230 -9606 23552 CDK20 RP11-350E12.2 CCRK|CDCH|P42|PNQALRE HGNC:21420|MIM:610076|Ensembl:ENSG00000156345|HPRD:13010|Vega:OTTHUMG00000020161 9 9q22.1 cyclin-dependent kinase 20 protein-coding CDK20 cyclin-dependent kinase 20 O CAK-kinase p42|CDK-activating kinase p42|cell cycle-related kinase|cell division protein kinase 20|cyclin-dependent protein kinase H|cyclin-kinase-activating kinase p42 20121230 -9606 23553 HYAL4 - CSHY HGNC:5323|MIM:604510|Ensembl:ENSG00000106302|HPRD:05148|Vega:OTTHUMG00000157349 7 7q31.3 hyaluronoglucosaminidase 4 protein-coding HYAL4 hyaluronoglucosaminidase 4 O chondroitin sulfate endo-beta-N-acetylgalactosaminidase|chondroitin sulfate hydrolase|hyal-4|hyaluronidase 4|hyaluronidase-4|hyaluronoglucosaminidase-4 20121230 -9606 23554 TSPAN12 UNQ774/PRO1568 EVR5|NET-2|NET2|TM4SF12 HGNC:21641|MIM:613138|Ensembl:ENSG00000106025|HPRD:15509|Vega:OTTHUMG00000156980 7 7q31.31 tetraspanin 12 protein-coding TSPAN12 tetraspanin 12 O tetraspan NET-2|tetraspanin-12|transmembrane 4 superfamily member 12|tspan-12 20121230 -9606 23555 TSPAN15 UNQ677/PRO1311 2700063A19Rik|NET-7|NET7|TM4SF15 HGNC:23298|MIM:613140|Ensembl:ENSG00000099282|HPRD:15511|Vega:OTTHUMG00000018381 10 10q22.1 tetraspanin 15 protein-coding TSPAN15 tetraspanin 15 O tetraspan NET-7|tetraspanin-15|transmembrane 4 superfamily member 15|transmembrane 4 superfamily member tetraspan NET-7|tspan-15 20121230 -9606 23556 PIGN - MCAHS|MCAHS1|MCD4|MDC4|PIG-N HGNC:8967|MIM:606097|Ensembl:ENSG00000197563|HPRD:12085|Vega:OTTHUMG00000180098 18 18q21.33 phosphatidylinositol glycan anchor biosynthesis, class N protein-coding PIGN phosphatidylinositol glycan anchor biosynthesis, class N O GPI ethanolamine phosphate transferase 1|MCD4 homolog|phosphatidylinositol-glycan biosynthesis class N protein 20121230 -9606 23557 SNAPIN - BLOC1S7|SNAPAP HGNC:17145|MIM:607007|Ensembl:ENSG00000143553|HPRD:06111|Vega:OTTHUMG00000037086 1 1q21.3 SNAP-associated protein protein-coding SNAPIN SNAP-associated protein O BLOC-1 subunit 7|SNAP-25-binding protein|SNARE associated protein snapin|SNARE-associated protein Snapin|biogenesis of lysosomal organelles complex-1, subunit 7|biogenesis of lysosome-related organelles complex 1 subunit 7|synaptosomal-associated protein 25-binding protein 20121230 -9606 23558 WBP2 - WBP-2 HGNC:12738|MIM:606962|Ensembl:ENSG00000132471|HPRD:06097|Vega:OTTHUMG00000179896 17 17q25 WW domain binding protein 2 protein-coding WBP2 WW domain binding protein 2 O WW domain-binding protein 2 20121230 -9606 23559 WBP1 - WBP-1 HGNC:12737|MIM:606961|Ensembl:ENSG00000239779|HPRD:09510|Vega:OTTHUMG00000129958 2 2p12 WW domain binding protein 1 protein-coding WBP1 WW domain binding protein 1 O WW domain-binding protein 1 20121230 -9606 23560 GTPBP4 RP11-38M7.5 CRFG|NGB|NOG1 HGNC:21535|Ensembl:ENSG00000107937|HPRD:09976 10 10p15-p14 GTP binding protein 4 protein-coding GTPBP4 GTP binding protein 4 O G protein-binding protein CRFG|GTP-binding protein NGB|chronic renal failure gene protein|nucleolar GTP-binding protein 1 20121230 -9606 23562 CLDN14 UNQ777/PRO1571 DFNB29 HGNC:2035|MIM:605608|Ensembl:ENSG00000159261|HPRD:05727|Vega:OTTHUMG00000086638 21 21q22.3 claudin 14 protein-coding CLDN14 claudin 14 O claudin-14 20121230 -9606 23563 CHST5 - I-GlcNAc-6-ST|I-GlcNAc6ST|glcNAc6ST-3|gn6st-3|hIGn6ST HGNC:1973|MIM:604817|Ensembl:ENSG00000135702|HPRD:07059|Vega:OTTHUMG00000137610 16 16q22.3 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 5 protein-coding CHST5 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 5 O GST4-alpha|N-acetylglucosamine 6-O-sulfotransferase 3|carbohydrate sulfotransferase 5|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 4-alpha|intestinal GlcNAc-6-sulfotransferase 20121230 -9606 23564 DDAH2 DADB-110M10.5 DDAH|DDAHII|G6a|NG30 HGNC:2716|MIM:604744|Ensembl:ENSG00000213722|HPRD:09204|Vega:OTTHUMG00000031212 6 6p21.3 dimethylarginine dimethylaminohydrolase 2 protein-coding DDAH2 dimethylarginine dimethylaminohydrolase 2 O DDAH-2|N(G),N(G)-dimethylarginine dimethylaminohydrolase 2|NG-dimethylarginine dimethylamino hydrolase homolog|S-phase protein|alternative name: NG30, G6a|dimethylargininase-2|dimethylarginine dimethylaminohydrolase II|protein G6a 20121230 -9606 23566 LPAR3 - EDG7|Edg-7|GPCR|HOFNH30|LP-A3|LPA3|RP4-678I3 HGNC:14298|MIM:605106|Ensembl:ENSG00000171517|HPRD:05486 1 1p22.3 lysophosphatidic acid receptor 3 protein-coding LPAR3 lysophosphatidic acid receptor 3 O LPA receptor 3|LPA receptor EDG7|LPA-3|calcium-mobilizing lysophosphatidic acid receptor LP-A3|endothelial cell differentiation gene 7|endothelial differentiation, lysophosphatidic acid G-protein-coupled receptor, 7|lysophosphatidic acid receptor Edg-7 20121230 -9606 23567 ZNF346 - JAZ|Zfp346 HGNC:16403|MIM:605308|Ensembl:ENSG00000113761|HPRD:05606|Vega:OTTHUMG00000130848 5 5q35.2 zinc finger protein 346 protein-coding ZNF346 zinc finger protein 346 O double-stranded RNA-binding zinc finger protein JAZ|just another zinc finger protein 20121230 -9606 23568 ARL2BP - BART|BART1 HGNC:17146|Ensembl:ENSG00000102931|HPRD:09808|Vega:OTTHUMG00000133459 16 16q13 ADP-ribosylation factor-like 2 binding protein protein-coding ARL2BP ADP-ribosylation factor-like 2 binding protein O ADP-ribosylation factor-like protein 2-binding protein|ARF-like 2-binding protein|Arf-like 2 binding protein BART1|binder of ARF2 protein 1|binder of Arl Two|binder of Arl2 20121230 -9606 23569 PADI4 - PAD|PAD4|PADI5|PDI4|PDI5 HGNC:18368|MIM:605347|Ensembl:ENSG00000159339|HPRD:05635|Vega:OTTHUMG00000002371 1 1p36.13 peptidyl arginine deiminase, type IV protein-coding PADI4 peptidyl arginine deiminase, type IV O HL-60 PAD|PADI-H protein|peptidyl arginine deiminase, type V|protein-arginine deiminase type IV|protein-arginine deiminase type-4 20121230 -9606 23572 PRG4 - - MIM:605160 17 - p53-responsive gene 4 other - - - - 20101208 -9606 23574 PRG1 - - MIM:605157 19 19q13.2 p53-responsive gene 1 miscRNA - - - - 20121230 -9606 23576 DDAH1 RP4-621F18.1 DDAH HGNC:2715|MIM:604743|Ensembl:ENSG00000153904|HPRD:09203|Vega:OTTHUMG00000010578 1 1p22 dimethylarginine dimethylaminohydrolase 1 protein-coding DDAH1 dimethylarginine dimethylaminohydrolase 1 O DDAH-1|DDAHI|N(G),N(G)-dimethylarginine dimethylaminohydrolase 1|NG, NG-dimethylarginine dimethylaminohydrolase|dimethylargininase-1 20121230 -9606 23580 CDC42EP4 - BORG4|CEP4|KAIA1777 HGNC:17147|MIM:605468|Ensembl:ENSG00000179604|HPRD:08383|Vega:OTTHUMG00000178419 17 17q24-q25 CDC42 effector protein (Rho GTPase binding) 4 protein-coding CDC42EP4 CDC42 effector protein (Rho GTPase binding) 4 O binder of Rho GTPases 4|cdc42 effector protein 4 20121230 -9606 23581 CASP14 - - HGNC:1502|MIM:605848|Ensembl:ENSG00000105141|HPRD:05788 19 19p13.1 caspase 14, apoptosis-related cysteine peptidase protein-coding CASP14 caspase 14, apoptosis-related cysteine peptidase O CASP-14|apoptosis-related cysteine protease|caspase 14, apoptosis-related cysteine protease|caspase-14 20121230 -9606 23582 CCNDBP1 - DIP1|GCIP|HHM HGNC:1587|MIM:607089|Ensembl:ENSG00000166946|HPRD:06156|Vega:OTTHUMG00000130703 15 15q14-q15 cyclin D-type binding-protein 1 protein-coding CCNDBP1 cyclin D-type binding-protein 1 O D-type cyclin-interacting protein 1|cyclin-D1-binding protein 1|grap2 and cyclin-D-interacting protein|human homolog of Maid 20121230 -9606 23583 SMUG1 - FDG|HMUDG|UNG3 HGNC:17148|MIM:607753|Ensembl:ENSG00000123415|HPRD:06376|Vega:OTTHUMG00000160068 12 12q13.11-q13.3 single-strand-selective monofunctional uracil-DNA glycosylase 1 protein-coding SMUG1 single-strand-selective monofunctional uracil-DNA glycosylase 1 O single-strand selective monofunctional uracil DNA glycosylase 20121230 -9606 23584 VSIG2 UNQ2770/PRO7154 2210413P10Rik|CTH|CTXL HGNC:17149|MIM:606011|Ensembl:ENSG00000019102|HPRD:08390|Vega:OTTHUMG00000150357 11 11q24 V-set and immunoglobulin domain containing 2 protein-coding VSIG2 V-set and immunoglobulin domain containing 2 O CT-like protein|V-set and immunoglobulin domain-containing protein 2|cortical thymocyte receptor (X. laevis CTX) like|cortical thymocyte-like protein 20121230 -9606 23585 TMEM50A RP11-335G20.3 IFNRC|SMP1 HGNC:30590|MIM:605348|Ensembl:ENSG00000183726|HPRD:05636|Vega:OTTHUMG00000007651 1 1p36.11 transmembrane protein 50A protein-coding TMEM50A transmembrane protein 50A O cervical cancer oncogene 9|small membrane protein 1 20121230 -9606 23586 DDX58 RP11-334P12.2 RIG-I|RIGI|RLR-1 HGNC:19102|MIM:609631|Ensembl:ENSG00000107201|HPRD:13131|Vega:OTTHUMG00000019746 9 9p12 DEAD (Asp-Glu-Ala-Asp) box polypeptide 58 protein-coding DDX58 DEAD (Asp-Glu-Ala-Asp) box polypeptide 58 O DEAD box protein 58|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide|RIG-1|RIG-I-like receptor 1|RNA helicase RIG-I|probable ATP-dependent RNA helicase DDX58|retinoic acid inducible gene I|retinoic acid-inducible gene 1 protein|retinoic acid-inducible gene I protein 20121230 -9606 23587 ELP5 HSPC002 C17orf81|DERP6|MST071|MSTP071 HGNC:30617|Ensembl:ENSG00000170291|HPRD:08520|Vega:OTTHUMG00000177974 17 17p13.1 elongator acetyltransferase complex subunit 5 protein-coding ELP5 elongator acetyltransferase complex subunit 5 O S-phase 2 protein|dermal papilla derived protein 6|dermal papilla-derived protein 6|elongator complex protein 5 20121230 -9606 23588 KLHDC2 - HCLP-1|LCP HGNC:20231|MIM:611280|Ensembl:ENSG00000165516|HPRD:08824|Vega:OTTHUMG00000140288 14 14q21.3 kelch domain containing 2 protein-coding KLHDC2 kelch domain containing 2 O hepatocellular carcinoma-associated antigen 33|host cell factor homolog LCP|host cell factor-like protein 1|kelch domain-containing protein 2 20121230 -9606 23589 CARHSP1 - CRHSP-24|CSDC1 HGNC:17150|Ensembl:ENSG00000153048|HPRD:08515|Vega:OTTHUMG00000129695 16 16p13.2 calcium regulated heat stable protein 1, 24kDa protein-coding CARHSP1 calcium regulated heat stable protein 1, 24kDa O calcium-regulated heat stable protein 1|calcium-regulated heat-stable protein (24kD)|calcium-regulated heat-stable protein of 24 kDa 20121230 -9606 23590 PDSS1 - COQ1|COQ10D2|DPS|RP13-16H11.3|SPS|TPRT|TPT|TPT 1|hDPS1 HGNC:17759|MIM:607429|Ensembl:ENSG00000148459|HPRD:09591|Vega:OTTHUMG00000017844 10 10p12.1 prenyl (decaprenyl) diphosphate synthase, subunit 1 protein-coding PDSS1 prenyl (decaprenyl) diphosphate synthase, subunit 1 O all-trans-decaprenyl-diphosphate synthase subunit 1|coenzyme Q1 homolog|decaprenyl pyrophosphate synthase subunit 1|decaprenyl-diphosphate synthase subunit 1|polyprenyl pyrophosphate synthetase|subunit 1 of decaprenyl diphosphate synthase|trans-prenyltransferase (TPT)|trans-prenyltransferase 1 20121230 -9606 23591 FAM215A - APR-2|C17orf88|LINC00530 HGNC:17505|HPRD:08497 17 17q21.31 family with sequence similarity 215, member A (non-protein coding) miscRNA FAM215A family with sequence similarity 215, member A (non-protein coding) O - 20121230 -9606 23592 LEMD3 - MAN1 HGNC:28887|MIM:607844|Ensembl:ENSG00000174106|HPRD:09704|Vega:OTTHUMG00000168840 12 12q14 LEM domain containing 3 protein-coding LEMD3 LEM domain containing 3 O LEM domain-containing protein 3|inner nuclear membrane protein Man1|integral inner nuclear membrane protein 20121230 -9606 23593 HEBP2 RP3-422G23.1 C6ORF34B|C6orf34|PP23|SOUL HGNC:15716|MIM:605825|Ensembl:ENSG00000051620|HPRD:09316|Vega:OTTHUMG00000015671 6 6q24 heme binding protein 2 protein-coding HEBP2 heme binding protein 2 O heme-binding protein 2|placental protein 23 20121230 -9606 23594 ORC6 - ORC6L HGNC:17151|MIM:607213|Ensembl:ENSG00000091651|HPRD:06237|Vega:OTTHUMG00000132539 16 16q12 origin recognition complex, subunit 6 protein-coding ORC6 origin recognition complex, subunit 6 O origin recognition complex subunit 6 20121230 -9606 23595 ORC3 RP3-486L4.1 LAT|LATHEO|ORC3L HGNC:8489|MIM:604972|Ensembl:ENSG00000135336|HPRD:05398|Vega:OTTHUMG00000015179 6 6q14.3-q16.1 origin recognition complex, subunit 3 protein-coding ORC3 origin recognition complex, subunit 3 O homolog of latheo, Drosophila|origin recognition complex subunit 3|origin recognition complex subunit Latheo|origin recognition complex, subunit 3 honolog 20121230 -9606 23596 OPN3 - ECPN HGNC:14007|MIM:606695|Ensembl:ENSG00000054277|HPRD:05985|Vega:OTTHUMG00000039691 1 1q43 opsin 3 protein-coding OPN3 opsin 3 O encephalopsin|opsin 3 (encephalopsin, panopsin)|opsin-3 20121230 -9606 23597 ACOT9 CGI-16 ACATE2|MT-ACT48|MTACT48 HGNC:17152|MIM:300862|Ensembl:ENSG00000123130|HPRD:06438|Vega:OTTHUMG00000021257 X Xp22.11 acyl-CoA thioesterase 9 protein-coding ACOT9 acyl-CoA thioesterase 9 O acyl-CoA thioester hydrolase 9|acyl-Coenzyme A thioesterase 2, mitochondrial|acyl-coenzyme A thioesterase 9, mitochondrial|mitochondrial Acyl-CoA Thioesterase 20121230 -9606 23598 PATZ1 - MAZR|PATZ|RIAZ|ZBTB19|ZNF278|ZSG|dJ400N23 HGNC:13071|MIM:605165|Ensembl:ENSG00000100105|HPRD:05522|Vega:OTTHUMG00000151254 22 22q12.2 POZ (BTB) and AT hook containing zinc finger 1 protein-coding PATZ1 POZ (BTB) and AT hook containing zinc finger 1 O BTB-POZ domain zinc finger transcription factor|BTB/POZ domain zinc finger transcription factor|MAZ-related factor|POZ-, AT hook-, and zinc finger-containing protein 1|POZ-AT hook-zinc finger protein|protein kinase A RI subunit alpha-associated protein|zinc finger and BTB domain-containing protein 19|zinc finger protein 278|zinc finger sarcoma gene protein 20121230 -9606 23600 AMACR - AMACRD|CBAS4|RACE|RM HGNC:451|MIM:604489|Ensembl:ENSG00000242110|HPRD:05134|Vega:OTTHUMG00000090734 5 5p13 alpha-methylacyl-CoA racemase protein-coding AMACR alpha-methylacyl-CoA racemase O 2-methylacyl-CoA racemase 20121230 -9606 23601 CLEC5A - CLECSF5|MDL-1|MDL1 HGNC:2054|MIM:604987|Ensembl:ENSG00000258227|HPRD:09229|Vega:OTTHUMG00000157173 7 7q33 C-type lectin domain family 5, member A protein-coding CLEC5A C-type lectin domain family 5, member A O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 5|C-type lectin domain family 5 member A|C-type lectin superfamily member 5|myeloid DAP12-associating lectin 1|myeloid DAP12-associating lectin-1 20121230 -9606 23603 CORO1C - HCRNN4 HGNC:2254|MIM:605269|Ensembl:ENSG00000110880|HPRD:09244|Vega:OTTHUMG00000169381 12 12q24.1 coronin, actin binding protein, 1C protein-coding CORO1C coronin, actin binding protein, 1C O coronin 1C|coronin, actin-binding protein, 1C|coronin-1C|coronin-3 20121230 -9606 23604 DAPK2 - DRP-1|DRP1 HGNC:2675|Ensembl:ENSG00000035664|HPRD:09905|Vega:OTTHUMG00000132947 15 15q22.31 death-associated protein kinase 2 protein-coding DAPK2 death-associated protein kinase 2 O DAP kinase 2|DAP-kinase-related protein 1 beta isoform 20121230 -9606 23605 HMGN2P9 - HMG17L1|HMGN2L9|dJ388M5|dJ388M5.2 HGNC:4987 22 22q13.2 high mobility group nucleosomal binding domain 2 pseudogene 9 pseudo HMGN2P9 high mobility group nucleosomal binding domain 2 pseudogene 9 O - 20121230 -9606 23606 HMGN2P10 - HMG17L2|HMGN2L10|bK216E10 HGNC:4988 22 22q13.2-q13.31 high mobility group nucleosomal binding domain 2 pseudogene10 pseudo HMGN2P10 high mobility group nucleosomal binding domain 2 pseudogene10 O - 20121230 -9606 23607 CD2AP - CMS HGNC:14258|MIM:604241|Ensembl:ENSG00000198087|HPRD:05026|Vega:OTTHUMG00000014799 6 6p12 CD2-associated protein protein-coding CD2AP CD2-associated protein O Cas ligand with multiple Src homology 3 (SH3) domains|adapter protein CMS|cas ligand with multiple SH3 domains 20121230 -9606 23608 MKRN1 - RNF61 HGNC:7112|MIM:607754|Ensembl:ENSG00000133606|HPRD:09673|Vega:OTTHUMG00000157412 7 7q34 makorin ring finger protein 1 protein-coding MKRN1 makorin ring finger protein 1 O E3 ubiquitin-protein ligase makorin-1|RING finger protein 61 20121230 -9606 23609 MKRN2 HSPC070 RNF62 HGNC:7113|MIM:608426|Ensembl:ENSG00000075975|HPRD:09761|Vega:OTTHUMG00000155371 3 3p25 makorin ring finger protein 2 protein-coding MKRN2 makorin ring finger protein 2 O RING finger protein 62|makorin RING zinc-finger protein 2|probable E3 ubiquitin-protein ligase makorin-2 20121230 -9606 23610 MKRN6P - MKRNP2 HGNC:7118 6 6p21.2 makorin ring finger protein 6, pseudogene pseudo MKRN6P makorin ring finger protein 6, pseudogene O - 20121230 -9606 23612 PHLDA3 - TIH1 HGNC:8934|MIM:607054|Ensembl:ENSG00000174307|HPRD:09519|Vega:OTTHUMG00000035767 1 1q31 pleckstrin homology-like domain, family A, member 3 protein-coding PHLDA3 pleckstrin homology-like domain, family A, member 3 O TDAG51/Ipl homolog 1|pleckstrin homology-like domain family A member 3|pleckstrin homology-like domain, family A, member 2 20121230 -9606 23613 ZMYND8 RP5-890O15.1 PRKCBP1|PRO2893|RACK7 HGNC:9397|Ensembl:ENSG00000101040|HPRD:10166|Vega:OTTHUMG00000032667 20 20q13.12 zinc finger, MYND-type containing 8 protein-coding ZMYND8 zinc finger, MYND-type containing 8 O CTCL tumor antigen se14-3|CTCL-associated antigen se14-3|cutaneous T-cell lymphoma associated antigen se14-3|cutaneous T-cell lymphoma-associated antigen se14-3|predicted protein of HQ2893|protein kinase C binding protein 1|protein kinase C-binding protein 1|zinc finger MYND domain containing protein 8|zinc finger MYND domain-containing protein 8 20121230 -9606 23614 PPY2 - - HGNC:9328|MIM:606638|HPRD:09437 17 17q11 pancreatic polypeptide 2 pseudo PPY2 pancreatic polypeptide 2 O - 20121230 -9606 23615 PYY2 - - HGNC:9749|MIM:606637|HPRD:07589 17 17q11 peptide YY, 2 (pseudogene) pseudo PYY2 peptide YY, 2 (pseudogene) O - 20121230 -9606 23616 SH3BP1 - ARHGAP43 HGNC:10824|Ensembl:ENSG00000100092|HPRD:10227|Vega:OTTHUMG00000030996 22 22q13.1 SH3-domain binding protein 1 protein-coding SH3BP1 SH3-domain binding protein 1 O 3BP-1|SH3 domain binding protein 1|SH3 domain-binding protein 1 20121230 -9606 23617 TSSK2 - DGS-G|SPOGA2|STK22B|TSK2 HGNC:11401|MIM:610710|Ensembl:ENSG00000206203|HPRD:10255|Vega:OTTHUMG00000150118 22 22q11.21 testis-specific serine kinase 2 protein-coding TSSK2 testis-specific serine kinase 2 O TSK-2|TSSK-2|diGeorge syndrome protein G|serine/threonine kinase 22B (spermiogenesis associated)|serine/threonine-protein kinase 22B|spermiogenesis associated 2|testis specific serine threonine kinase 2|testis-specific kinase 2|testis-specific serine/threonine-protein kinase 2 20121230 -9606 23619 ZIM2 - ZNF656 HGNC:12875|Ensembl:ENSG00000198300|HPRD:10321 19 19q13.4 zinc finger, imprinted 2 protein-coding ZIM2 zinc finger, imprinted 2 O zinc finger imprinted 2|zinc finger protein 656 20121230 -9606 23620 NTSR2 - NTR2 HGNC:8040|MIM:605538|Ensembl:ENSG00000169006|HPRD:05704|Vega:OTTHUMG00000119083 2 2p25.1 neurotensin receptor 2 protein-coding NTSR2 neurotensin receptor 2 O NT-R-2|levocabastine-sensitive neurotensin receptor|neurotensin receptor type 2|neurotensin receptor, type 2 20121230 -9606 23621 BACE1 - ASP2|BACE|HSPC104 HGNC:933|MIM:604252|Ensembl:ENSG00000186318|Ensembl:ENSG00000265969|HPRD:07255|Vega:OTTHUMG00000160636 11 11q23.2-q23.3 beta-site APP-cleaving enzyme 1 protein-coding BACE1 beta-site APP-cleaving enzyme 1 O APP beta-secretase|asp 2|aspartyl protease 2|beta-secretase 1|beta-secretase 1 precursor variant 1|beta-site APP cleaving enzyme 1|beta-site amyloid beta A4 precursor protein-cleaving enzyme|memapsin-2|membrane-associated aspartic protease 2|transmembrane aspartic proteinase Asp2 20121230 -9606 23623 RUSC1 RP11-21N7.4 NESCA HGNC:17153|Ensembl:ENSG00000160753|HPRD:10206|Vega:OTTHUMG00000013910 1 1q21-q22 RUN and SH3 domain containing 1 protein-coding RUSC1 RUN and SH3 domain containing 1 O RUN and SH3 domain-containing protein 1|new molecule containing SH3 at the carboxy-terminus 20121230 -9606 23624 CBLC - CBL-3|CBL-SL|RNF57 HGNC:15961|MIM:608453|Ensembl:ENSG00000142273|HPRD:09765|Vega:OTTHUMG00000150715 19 19q13.2 Cbl proto-oncogene, E3 ubiquitin protein ligase C protein-coding CBLC Cbl proto-oncogene, E3 ubiquitin protein ligase C O Cas-Br-M (murine) ecotropic retroviral transforming sequence c|Cas-Br-M (murine) ectropic retroviral transforming sequence c|RING finger protein 57|SH3-binding protein CBL-3|SH3-binding protein CBL-C|signal transduction protein CBL-C 20121230 -9606 23625 FAM89B - MTVR1 HGNC:16708|Ensembl:ENSG00000176973|HPRD:10100|Vega:OTTHUMG00000166499 11 11q13 family with sequence similarity 89, member B protein-coding FAM89B family with sequence similarity 89, member B O mammary tumor virus receptor homolog 1|protein FAM89B 20121230 -9606 23626 SPO11 RP3-481F12.5 CT35 HGNC:11250|MIM:605114|Ensembl:ENSG00000054796|HPRD:09236|Vega:OTTHUMG00000032817 20 20q13.31 SPO11 meiotic protein covalently bound to DSB homolog (S. cerevisiae) protein-coding SPO11 SPO11 meiotic protein covalently bound to DSB homolog (S. cerevisiae) O cancer/testis antigen 35|meiotic recombination protein SPO11 20121230 -9606 23627 PRND UNQ1830/PRO3443 DOPPEL|DPL|PrPLP|dJ1068H6.4 HGNC:15748|MIM:604263|Ensembl:ENSG00000171864|HPRD:05039|Vega:OTTHUMG00000031789 20 20pter-p12 prion protein 2 (dublet) protein-coding PRND prion protein 2 (dublet) O prion gene complex, downstream|prion-like protein doppel 20121230 -9606 23629 BRD7P3 - BP75 HGNC:24171 6 6q22.31 bromodomain containing 7 pseudogene 3 pseudo BRD7P3 bromodomain containing 7 pseudogene 3 O - 20121230 -9606 23630 KCNE1L RP1-136J15.2 KCNE5 HGNC:6241|MIM:300328|Ensembl:ENSG00000176076|HPRD:02268|Vega:OTTHUMG00000022189 X Xq22.3 KCNE1-like protein-coding KCNE1L KCNE1-like O AMME syndrome candidate gene 2 protein|AMMECR2 protein|cardiac voltage-gated potassium channel accessory subunit 5|potassium voltage-gated channel subfamily E member 1-like protein|potassium voltage-gated channel, Isk-related family, member 1-like 20121230 -9606 23632 CA14 UNQ690/PRO1335 CAXiV HGNC:1372|MIM:604832|Ensembl:ENSG00000118298|HPRD:05320|Vega:OTTHUMG00000012549 1 1q21 carbonic anhydrase XIV protein-coding CA14 carbonic anhydrase XIV O CA-XIV|carbonate dehydratase XIV|carbonic anhydrase 14|carbonic dehydratase 20121230 -9606 23633 KPNA6 RP4-622L5.1 IPOA7|KPNA7 HGNC:6399|MIM:610563|Ensembl:ENSG00000025800|HPRD:09465|Vega:OTTHUMG00000004333 1 1p35.1 karyopherin alpha 6 (importin alpha 7) protein-coding KPNA6 karyopherin alpha 6 (importin alpha 7) O importin alpha 7 subunit|importin subunit alpha-7|importin-alpha-S2|karyopherin subunit alpha-6 20121230 -9606 23635 SSBP2 - HSPC116|SOSS-B2 HGNC:15831|MIM:607389|Ensembl:ENSG00000145687|HPRD:09577|Vega:OTTHUMG00000119039 5 5q14.1 single-stranded DNA binding protein 2 protein-coding SSBP2 single-stranded DNA binding protein 2 O sequence-specific single-stranded-DNA-binding protein 2|single-stranded DNA-binding protein 2 20121230 -9606 23636 NUP62 - IBSN|SNDI|p62 HGNC:8066|MIM:605815|Ensembl:ENSG00000213024|HPRD:05782 19 19q13.33 nucleoporin 62kDa protein-coding NUP62 nucleoporin 62kDa O 62 kDa nucleoporin|nuclear pore glycoprotein p62|nucleoporin Nup62 20121230 -9606 23637 RABGAP1 HSPC094 GAPCENA|RP11-123N4.2|TBC1D11 HGNC:17155|Ensembl:ENSG00000011454|HPRD:06575|Vega:OTTHUMG00000020633 9 9q34.11 RAB GTPase activating protein 1 protein-coding RABGAP1 RAB GTPase activating protein 1 O GAP and centrosome-associated protein|Rab6 GTPase activating protein, GAPCenA|TBC1 domain family, member 11|rab GTPase-activating protein 1|rab6 GTPase activating protein (GAP and centrosome-associated)|rab6 GTPase-activating protein GAPCenA 20121230 -9606 23639 LRRC6 - CILD19|LRTP|TSLRP HGNC:16725|MIM:614930|Ensembl:ENSG00000129295|HPRD:10286|Vega:OTTHUMG00000164646 8 8q24.22 leucine rich repeat containing 6 protein-coding LRRC6 leucine rich repeat containing 6 O protein TILB homolog|testis-specific leucine-rich repeat protein 20121230 -9606 23640 HSPBP1 PP1845 FES1 HGNC:24989|MIM:612939|Ensembl:ENSG00000133265|HPRD:09991|Vega:OTTHUMG00000180705 19 19q13.42 HSPA (heat shock 70kDa) binding protein, cytoplasmic cochaperone 1 protein-coding HSPBP1 HSPA (heat shock 70kDa) binding protein, cytoplasmic cochaperone 1 O Hsp70 binding protein 1|heat shock protein-binding protein 1|hsp70 interacting protein|hsp70-binding protein 1|hsp70-binding protein 2|hsp70-interacting protein 1|hsp70-interacting protein 2|hspBP2 20121230 -9606 23641 LDOC1 - BCUR1|Mar7|Mart7 HGNC:6548|MIM:300402|Ensembl:ENSG00000182195|HPRD:02322|Vega:OTTHUMG00000022558 X Xq27 leucine zipper, down-regulated in cancer 1 protein-coding LDOC1 leucine zipper, down-regulated in cancer 1 O breast cancer, up-regulated 1|leucine zipper protein down-regulated in cancer cells|protein LDOC1 20121230 -9606 23642 SNHG1 - LINC00057|NCRNA00057|U22HG|UHG HGNC:32688|MIM:603222 11 11q12.3 small nucleolar RNA host gene 1 (non-protein coding) miscRNA SNHG1 small nucleolar RNA host gene 1 (non-protein coding) O - 20121230 -9606 23643 LY96 - ESOP-1|MD-2|MD2|ly-96 HGNC:17156|MIM:605243|Ensembl:ENSG00000154589|HPRD:05579|Vega:OTTHUMG00000164504 8 8q21.11 lymphocyte antigen 96 protein-coding LY96 lymphocyte antigen 96 O myeloid differentiation protein-2|protein MD-2 20121230 -9606 23644 EDC4 - GE1|Ge-1|HEDL5|HEDLS|RCD-8|RCD8 HGNC:17157|MIM:606030|Ensembl:ENSG00000038358|HPRD:06911|Vega:OTTHUMG00000137543 16 16q22.1 enhancer of mRNA decapping 4 protein-coding EDC4 enhancer of mRNA decapping 4 O autoantigen Ge-1|autoantigen RCD-8|enhancer of mRNA-decapping protein 4|human enhancer of decapping large subunit 20121230 -9606 23645 PPP1R15A - GADD34 HGNC:14375|MIM:611048|Ensembl:ENSG00000087074|HPRD:06572 19 19q13.2 protein phosphatase 1, regulatory subunit 15A protein-coding PPP1R15A protein phosphatase 1, regulatory subunit 15A O growth arrest and DNA damage-inducible protein GADD34|growth arrest and DNA-damage-inducible 34|myeloid differentiation primary response protein MyD116 homolog|protein phosphatase 1 regulatory subunit 15A|protein phosphatase 1, regulatory (inhibitor) subunit 15A 20121230 -9606 23646 PLD3 - HU-K4|HUK4 HGNC:17158|Ensembl:ENSG00000105223|HPRD:07148|Vega:OTTHUMG00000152736 19 19q13.2 phospholipase D family, member 3 protein-coding PLD3 phospholipase D family, member 3 O PLD 3|choline phosphatase 3|hindIII K4L homolog|phosphatidylcholine-hydrolyzing phospholipase D3|phospholipase D3 20121230 -9606 23647 ARFIP2 - POR1 HGNC:17160|MIM:601638|Ensembl:ENSG00000132254|HPRD:07209|Vega:OTTHUMG00000133406 11 11p15 ADP-ribosylation factor interacting protein 2 protein-coding ARFIP2 ADP-ribosylation factor interacting protein 2 O arfaptin-2|partner of RAC1 (arfaptin 2) 20121230 -9606 23648 SSBP3 RP5-997D24.2 CSDP|SSDP|SSDP1 HGNC:15674|MIM:607390|Ensembl:ENSG00000157216|HPRD:09578|Vega:OTTHUMG00000008264 1 1p32.3 single stranded DNA binding protein 3 protein-coding SSBP3 single stranded DNA binding protein 3 O sequence-specific single-stranded-DNA-binding protein|single-stranded DNA-binding protein 3 20121230 -9606 23649 POLA2 - - HGNC:30073|Ensembl:ENSG00000014138|HPRD:10160|Vega:OTTHUMG00000165951 11 11q13.1 polymerase (DNA directed), alpha 2, accessory subunit protein-coding POLA2 polymerase (DNA directed), alpha 2, accessory subunit O DNA polymerase alpha 70 kDa subunit|DNA polymerase alpha subunit B|polymerase (DNA directed), alpha 2 (70kD subunit)|polymerase (DNA-directed), alpha (70kD) 20121230 -9606 23650 TRIM29 - ATDC HGNC:17274|MIM:610658|Ensembl:ENSG00000137699|HPRD:10280|Vega:OTTHUMG00000140377 11 11q23.3 tripartite motif containing 29 protein-coding TRIM29 tripartite motif containing 29 O ataxia telangiectasia group D-associated protein|ataxia-telangiectasia group D-associated protein|tripartite motif protein TRIM29|tripartite motif-containing 29|tripartite motif-containing protein 29 20121230 -9606 23654 PLXNB2 RP3-402G11.19-002 MM1|Nbla00445|PLEXB2|dJ402G11.3 HGNC:9104|MIM:604293|Ensembl:ENSG00000196576|HPRD:05050|Vega:OTTHUMG00000150219 22 22q13.33 plexin B2 protein-coding PLXNB2 plexin B2 O plexin-B2 20121230 -9606 23657 SLC7A11 - CCBR1|xCT HGNC:11059|MIM:607933|Ensembl:ENSG00000151012|HPRD:09720|Vega:OTTHUMG00000133396 4 4q28-q32 solute carrier family 7 (anionic amino acid transporter light chain, xc- system), member 11 protein-coding SLC7A11 solute carrier family 7 (anionic amino acid transporter light chain, xc- system), member 11 O amino acid transport system xc-|calcium channel blocker resistance protein CCBR1|cystine/glutamate transporter|solute carrier family 7 member 11|solute carrier family 7, (cationic amino acid transporter, y+ system) member 11 20121230 -9606 23658 LSM5 - YER146W HGNC:17162|MIM:607285|Ensembl:ENSG00000106355|HPRD:06285|Vega:OTTHUMG00000022913 7 7p14.3 LSM5 homolog, U6 small nuclear RNA associated (S. cerevisiae) protein-coding LSM5 LSM5 homolog, U6 small nuclear RNA associated (S. cerevisiae) O U6 snRNA-associated Sm-like protein LSm5 20121230 -9606 23659 PLA2G15 UNQ341/PRO540 ACS|GXVPLA2|LLPL|LPLA2|LYPLA3 HGNC:17163|MIM:609362|Ensembl:ENSG00000103066|HPRD:07128|Vega:OTTHUMG00000137554 16 16q22.1 phospholipase A2, group XV protein-coding PLA2G15 phospholipase A2, group XV O 1-O-acylceramide synthase|LCAT-like lysophospholipase|group XV phospholipase A2|lysophospholipase 3 (lysosomal phospholipase A2)|lysosomal phospholipase A2 20121230 -9606 23660 ZKSCAN5 - ZFP95|ZNF914 HGNC:12867|MIM:611272|Ensembl:ENSG00000196652|HPRD:10318|Vega:OTTHUMG00000156749 7 7q22 zinc finger with KRAB and SCAN domains 5 protein-coding ZKSCAN5 zinc finger with KRAB and SCAN domains 5 O zfp-95|zinc finger protein 95 homolog|zinc finger protein homologous to Zfp95 in mouse|zinc finger protein with KRAB and SCAN domains 5 20121230 -9606 23662 USH3B - - HGNC:12606 - - Usher syndrome 3B unknown USH3B Usher syndrome 3B O - 20110215 -9606 23666 UBBP4 - - HGNC:12467 17 17p11.2 ubiquitin B pseudogene 4 pseudo UBBP4 ubiquitin B pseudogene 4 O - 20121230 -9606 23667 UBBP3 - - HGNC:12466 2 2q22.3 ubiquitin B pseudogene 3 pseudo UBBP3 ubiquitin B pseudogene 3 O - 20121230 -9606 23668 UBBP2 - - HGNC:12465 1 1q32 ubiquitin B pseudogene 2 pseudo UBBP2 ubiquitin B pseudogene 2 O - 20121230 -9606 23670 TMEM2 RP11-52I12.1 - HGNC:11869|MIM:605835|Ensembl:ENSG00000135048|HPRD:09317|Vega:OTTHUMG00000020000 9 9q21.13 transmembrane protein 2 protein-coding TMEM2 transmembrane protein 2 O - 20121230 -9606 23671 TMEFF2 UNQ178/PRO204 CT120.2|HPP1|TENB2|TPEF|TR HGNC:11867|MIM:605734|Ensembl:ENSG00000144339|HPRD:05760|Vega:OTTHUMG00000132723 2 2q32.3 transmembrane protein with EGF-like and two follistatin-like domains 2 protein-coding TMEFF2 transmembrane protein with EGF-like and two follistatin-like domains 2 O TR-2|cancer/testis antigen family 120, member 2|hyperplastic polyposis protein 1|tomoregulin|tomoregulin-2|transmembrane protein TENB2 20121230 -9606 23673 STX12 RP3-426I6.4 STX13|STX14 HGNC:11430|MIM:606892|Ensembl:ENSG00000117758|HPRD:06059|Vega:OTTHUMG00000003730 1 1p35.3 syntaxin 12 protein-coding STX12 syntaxin 12 O syntaxin-12 20121230 -9606 23676 SMPX - DFNX4 HGNC:11122|MIM:300226|Ensembl:ENSG00000091482|HPRD:02204|Vega:OTTHUMG00000021235 X Xp22.1 small muscle protein, X-linked protein-coding SMPX small muscle protein, X-linked O small muscular protein|stretch-responsive skeletal muscle protein 20121230 -9606 23677 SH3BP4 - BOG25|TTP HGNC:10826|MIM:605611|Ensembl:ENSG00000130147|HPRD:09285|Vega:OTTHUMG00000133292 2 2q37.1-q37.2 SH3-domain binding protein 4 protein-coding SH3BP4 SH3-domain binding protein 4 O EH-binding protein 10|SH3 domain-binding protein 4|transferrin receptor trafficking protein|transferrin receptor-trafficking protein 20121230 -9606 23678 SGK3 - CISK|SGK2|SGKL HGNC:10812|MIM:607591|Ensembl:ENSG00000104205|HPRD:06349|Vega:OTTHUMG00000164561 8 8q12 serum/glucocorticoid regulated kinase family, member 3 protein-coding SGK3 serum/glucocorticoid regulated kinase family, member 3 O cytokine-independent survival kinase|serine/threonine-protein kinase Sgk3 20121230 -9606 23679 SEPW1P - - HGNC:10753 1 1p35.2 selenoprotein W, 1 pseudogene pseudo SEPW1P selenoprotein W, 1 pseudogene O - 20121230 -9606 23682 RAB38 - NY-MEL-1|rrGTPbp HGNC:9776|MIM:606281|Ensembl:ENSG00000123892|HPRD:05889|Vega:OTTHUMG00000167288 11 11q14 RAB38, member RAS oncogene family protein-coding RAB38 RAB38, member RAS oncogene family O Rab-related GTP-binding protein|melanoma antigen NY-MEL-1|ras-related protein Rab-38 20121230 -9606 23683 PRKD3 - EPK2|PKC-NU|PKD3|PRKCN|nPKC-NU HGNC:9408|MIM:607077|Ensembl:ENSG00000115825|HPRD:06151|Vega:OTTHUMG00000100961 2 2p21 protein kinase D3 protein-coding PRKD3 protein kinase D3 O protein kinase C nu type|protein kinase C, nu|protein kinase EPK2|protein-serine/threonine kinase|serine/threonine-protein kinase D3 20121230 -9606 23685 PQBP4 - - HGNC:9333 - - polyglutamine binding protein 4 protein-coding PQBP4 polyglutamine binding protein 4 O - 20080828 -9606 23691 NNO1 - - HGNC:7862|MIM:600165 11 11p13 nanophthalmos 1 unknown NNO1 nanophthalmos 1 O - 20120622 -9606 23693 MRX74 - - HGNC:7308 X - mental retardation, X-linked 74 unknown MRX74 mental retardation, X-linked 74 O - 20110215 -9606 23694 MRX73 - - HGNC:7307|MIM:300355 X Xp22.2 mental retardation, X-linked 73 unknown MRX73 mental retardation, X-linked 73 O - 20110215 -9606 23695 MRX72 - - HGNC:7306|MIM:300271 X Xq28 mental retardation, X-linked 72 unknown MRX72 mental retardation, X-linked 72 O - 20120622 -9606 23696 MRX70 - - HGNC:7305 X Xq23-q25 mental retardation, X-linked 70 unknown MRX70 mental retardation, X-linked 70 O - 20110215 -9606 23697 MRX69 - - HGNC:7303 X Xp11.21-q22.1 mental retardation, X-linked 69 unknown MRX69 mental retardation, X-linked 69 O - 20110215 -9606 23699 MRX67 - - HGNC:7301 X - mental retardation, X-linked 67 unknown MRX67 mental retardation, X-linked 67 O - 20110215 -9606 23700 MRX66 - - HGNC:7300 X - mental retardation, X-linked 66 unknown MRX66 mental retardation, X-linked 66 O - 20110215 -9606 23704 KCNE4 - MIRP3 HGNC:6244|MIM:607775|Ensembl:ENSG00000152049|HPRD:09689|Vega:OTTHUMG00000133161 2 2q36.1 potassium voltage-gated channel, Isk-related family, member 4 protein-coding KCNE4 potassium voltage-gated channel, Isk-related family, member 4 O MINK-related peptide 3|cardiac voltage-gated potassium channel accessory subunit 4|minimum potassium ion channel-related peptide 3|potassium channel subunit beta MiRP3|potassium voltage-gated channel subfamily E member 4 20121230 -9606 23705 CADM1 - BL2|IGSF4|IGSF4A|NECL2|Necl-2|RA175|ST17|SYNCAM|TSLC1|sTSLC-1|sgIGSF|synCAM1 HGNC:5951|MIM:605686|Ensembl:ENSG00000182985|HPRD:05746|Vega:OTTHUMG00000168202 11 11q23.2 cell adhesion molecule 1 protein-coding CADM1 cell adhesion molecule 1 O TSLC-1|TSLC1/Nectin-like 2/IGSF4|immunoglobulin superfamily member 4|immunoglobulin superfamily, member 4|immunoglobulin superfamily, member 4D variant 2|nectin-like 2|nectin-like protein 2|spermatogenic immunoglobulin superfamily|synaptic cell adhesion molecule|truncated CADM1 protein|tumor suppressor in lung cancer 1 20121230 -9606 23706 IBGC1 - BGCI|IBGC HGNC:5336|MIM:213600 14 14q idiopathic basal ganglia calcification 1 unknown IBGC1 idiopathic basal ganglia calcification 1 O - 20120622 -9606 23708 GSPT2 - ERF3B|GST2 HGNC:4622|MIM:300418|Ensembl:ENSG00000189369|HPRD:02334|Vega:OTTHUMG00000021538 X Xp11.22 G1 to S phase transition 2 protein-coding GSPT2 G1 to S phase transition 2 O eukaryotic peptide chain release factor GTP-binding subunit ERF3B|eukaryotic peptide chain release factor subunit 3b 20121230 -9606 23710 GABARAPL1 - APG8-LIKE|APG8L|ATG8|ATG8B|ATG8L|GEC1 HGNC:4068|MIM:607420|Ensembl:ENSG00000139112|HPRD:07601|Vega:OTTHUMG00000168411 12 12p13.2 GABA(A) receptor-associated protein like 1 protein-coding GABARAPL1 GABA(A) receptor-associated protein like 1 O GABA(A) receptor-associated protein-like 1|GABARAPL1-a|GEC-1|early estrogen-regulated protein|gamma-aminobutyric acid receptor-associated protein-like 1|glandular epithelial cell protein 1 20121230 -9606 23713 DFNB27 - - HGNC:2833|MIM:605818 2 2q24 deafness, autosomal recessive 27 unknown DFNB27 deafness, autosomal recessive 27 O - 20120622 -9606 23714 DFNB26 - - HGNC:2832|MIM:605428 4 4q31 deafness, autosomal recessive 26 unknown DFNB26 deafness, autosomal recessive 26 O - 20120622 -9606 23719 DFNA30 - - HGNC:2802|MIM:606451 15 15q25-q26 deafness, autosomal dominant 30 unknown DFNA30 deafness, autosomal dominant 30 O - 20120622 -9606 23720 DFNA29 - - HGNC:2800 - - deafness, autosomal dominant 29 unknown DFNA29 deafness, autosomal dominant 29 O - 20110215 -9606 23722 DFNA27 - - HGNC:2798|MIM:612431 4 4q12-q13.1 deafness, autosomal dominant 27 unknown DFNA27 deafness, autosomal dominant 27 O - 20120622 -9606 23723 DFNA24 - - HGNC:2796|MIM:606282 4 4q35-qter deafness, autosomal dominant 24 unknown DFNA24 deafness, autosomal dominant 24 O - 20120622 -9606 23727 CFM2 - - HGNC:1882 - - cystic fibrosis modifier 2 unknown CFM2 cystic fibrosis modifier 2 O - 20110215 -9606 23729 SHPK - CARKL|SHK HGNC:1492|MIM:605060|Ensembl:ENSG00000197417|HPRD:05451|Vega:OTTHUMG00000090694 17 17p13 sedoheptulokinase protein-coding SHPK sedoheptulokinase O carbohydrate kinase-like protein 20121230 -9606 23731 TMEM245 RP11-115J22.3 C9orf5|CG-2|CG2 HGNC:1363|Ensembl:ENSG00000106771|HPRD:09866|Vega:OTTHUMG00000020469 9 9q31 transmembrane protein 245 protein-coding TMEM245 transmembrane protein 245 O protein CG-2|transmembrane protein C9orf5 20121230 -9606 23732 FRRS1L - C9orf4|CG-6|CG6 HGNC:1362|MIM:604574|Ensembl:ENSG00000136805|HPRD:18583|Vega:OTTHUMG00000020468 9 9q31 ferric-chelate reductase 1-like protein-coding FRRS1L ferric-chelate reductase 1-like O DOMON domain-containing protein FRRS1L|brain protein CG-6|ferric-chelate reductase 1-like protein 20121230 -9606 23738 OFD1P17 - 71-7A3|71-7A5|C5orf1|OFD1P1 HGNC:1332 5 5p13 OFD1 pseudogene 17 pseudo OFD1P17 OFD1 pseudogene 17 O - 20121230 -9606 23739 C3CER1 - CER1 HGNC:1320 3 3p22-p21.2 chromosome 3 common eliminated region 1 other C3CER1 chromosome 3 common eliminated region 1 O - 20121201 -9606 23741 EID1 PNAS-22 C15orf3|CRI1|EID-1|IRO45620|PTD014|RBP21 HGNC:1191|MIM:605894|Ensembl:ENSG00000255302|HPRD:06907|Vega:OTTHUMG00000165911 15 15q21.1 EP300 interacting inhibitor of differentiation 1 protein-coding EID1 EP300 interacting inhibitor of differentiation 1 O 21 kDa pRb-associated protein|CREBBP/EP300 inhibitor 1|CREBBP/EP300 inhibitory protein 1|E1A-like inhibitor of differentiation 1|EP300-interacting inhibitor of differentiation 1|NB4 apoptosis related protein|Rb- and p300-binding protein EID-1|retinoblastoma protein-associated protein 20121230 -9606 23742 NPAP1 - C15orf2 HGNC:1190|MIM:610922|Ensembl:ENSG00000185823|HPRD:08506|Vega:OTTHUMG00000129179 15 15q11-q13 nuclear pore associated protein 1 protein-coding NPAP1 nuclear pore associated protein 1 O nuclear pore-associated protein 1|protein C15orf2 20121230 -9606 23743 BHMT2 - - HGNC:1048|MIM:605932|Ensembl:ENSG00000132840|HPRD:12069|Vega:OTTHUMG00000108158 5 5q13 betaine--homocysteine S-methyltransferase 2 protein-coding BHMT2 betaine--homocysteine S-methyltransferase 2 O S-methylmethionine--homocysteine S-methyltransferase BHMT2|SMM-hcy methyltransferase|betaine-homocysteine methyltransferase 2 20121230 -9606 23744 ATP5EP1 - - HGNC:839 4 4q25 ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit pseudogene 1 pseudo ATP5EP1 ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit pseudogene 1 O - 20121230 -9606 23746 AIPL1 - AIPL2|LCA4 HGNC:359|MIM:604392|Ensembl:ENSG00000129221|HPRD:05092|Vega:OTTHUMG00000102043 17 17p13.1 aryl hydrocarbon receptor interacting protein-like 1 protein-coding AIPL1 aryl hydrocarbon receptor interacting protein-like 1 O aryl-hydrocarbon-interacting protein-like 1 20121230 -9606 23749 YME1L1P1 - YME1L2 HGNC:12844 22 22q11.1 YME1-like 1 (S. cerevisiae) pseudogene 1 pseudo YME1L1P1 YME1-like 1 (S. cerevisiae) pseudogene 1 O - 20121230 -9606 23751 TOP3BP1 - TOP3B2 HGNC:11994 22 22q11.22 topoisomerase (DNA) III beta pseudogene 1 pseudo TOP3BP1 topoisomerase (DNA) III beta pseudogene 1 O - 20121230 -9606 23752 TSSK1A - SPOGA1|STK22A|TSSK1|TSSK1b|TSSK7P HGNC:11400 22 22q11.21 testis-specific serine kinase 1A pseudogene pseudo TSSK1A testis-specific serine kinase 1A pseudogene O - 20121230 -9606 23753 SDF2L1 UNQ1941/PRO4424 - HGNC:10676|MIM:607551|Ensembl:ENSG00000128228|HPRD:09614|Vega:OTTHUMG00000150820 22 22q11.21 stromal cell-derived factor 2-like 1 protein-coding SDF2L1 stromal cell-derived factor 2-like 1 O OTTHUMT00000075032|PWP1-interacting protein 8|SDF2-like 1|SDF2-like protein 1|dihydropyrimidinase-like 2|stromal cell-derived factor 2-like protein 1 20121230 -9606 23754 RPL32P5 - RPL32L2|RPL32_23_1737 HGNC:10338 22 22q11.1 ribosomal protein L32 pseudogene 5 pseudo RPL32P5 ribosomal protein L32 pseudogene 5 O - 20121230 -9606 23755 SIRPAP1 - PTPNS1L HGNC:9663 22 22q12.2 signal-regulatory protein alpha pseudogene 1 pseudo SIRPAP1 signal-regulatory protein alpha pseudogene 1 O - 20121230 -9606 23756 RPS24P1 - RPS24P HGNC:10412 Y Yq11.21 ribosomal protein S24 pseudogene 1 pseudo RPS24P1 ribosomal protein S24 pseudogene 1 O - 20121230 -9606 23757 ARSFP1 - ARSFP HGNC:722 Y Yq11.21 arylsulfatase F pseudogene 1 pseudo ARSFP1 arylsulfatase F pseudogene 1 O - 20121230 -9606 23758 SFPQP1 - SFPQP HGNC:10775 Y Yq11.1 splicing factor proline/glutamine-rich (polypyrimidine tract binding protein associated) pseudogene 1 pseudo SFPQP1 splicing factor proline/glutamine-rich (polypyrimidine tract binding protein associated) pseudogene 1 O - 20121230 -9606 23759 PPIL2 - CYC4|CYP60|Cyp-60|hCyP-60 HGNC:9261|MIM:607588|Ensembl:ENSG00000100023|HPRD:08472|Vega:OTTHUMG00000030174 22 22q11.21 peptidylprolyl isomerase (cyclophilin)-like 2 protein-coding PPIL2 peptidylprolyl isomerase (cyclophilin)-like 2 O PPIase|cyclophilin, 60kDa|cyclophilin-60|cyclophilin-like protein CyP-60|peptidyl-prolyl cis-trans isomerase-like 2|peptidylprolyl cis-trans isomerase|rotamase PPIL2 20121230 -9606 23760 PITPNB RP3-353E16.2 PI-TP-beta|PtdInsTP|VIB1B HGNC:9002|MIM:606876|Ensembl:ENSG00000180957|HPRD:06044|Vega:OTTHUMG00000150976 22 22q12.1 phosphatidylinositol transfer protein, beta protein-coding PITPNB phosphatidylinositol transfer protein, beta O PtdIns transfer protein beta|phosphatidylinositol transfer protein beta isoform|phosphotidylinositol transfer protein, beta|ptdInsTP beta 20121230 -9606 23761 PISD RP5-858B16.2 DJ858B16|PSD|PSDC|PSSC|dJ858B16.2 HGNC:8999|MIM:612770|Ensembl:ENSG00000241878|HPRD:17854|Vega:OTTHUMG00000030252 22 22q12.2 phosphatidylserine decarboxylase protein-coding PISD phosphatidylserine decarboxylase O phosphatidylserine decarboxylase proenzyme 20121230 -9606 23762 OSBP2 RP3-430N8.7 ORP-4|ORP4|OSBPL1|OSBPL4 HGNC:8504|MIM:606729|Ensembl:ENSG00000184792|HPRD:09471|Vega:OTTHUMG00000151153 22 22q12.2 oxysterol binding protein 2 protein-coding OSBP2 oxysterol binding protein 2 O OSBP-related protein 4|oxysterol binding protein-like 1|oxysterol binding protein-related protein 4|oxysterol-binding protein 2|oxysterol-binding protein-related protein 4 20121230 -9606 23764 MAFF CTA-447C4.1 U-MAF|hMafF HGNC:6780|MIM:604877|Ensembl:ENSG00000185022|HPRD:05343|Vega:OTTHUMG00000151163 22 22q13.1 v-maf musculoaponeurotic fibrosarcoma oncogene homolog F (avian) protein-coding MAFF v-maf musculoaponeurotic fibrosarcoma oncogene homolog F (avian) O transcription factor MafF|v-maf avian musculoaponeurotic fibrosarcoma oncogene family protein F 20121230 -9606 23765 IL17RA - CANDF5|CD217|CDw217|IL-17RA|IL17R|hIL-17R HGNC:5985|MIM:605461|Ensembl:ENSG00000177663|HPRD:10399|Vega:OTTHUMG00000150026 22 22q11.1 interleukin 17 receptor A protein-coding IL17RA interleukin 17 receptor A O IL-17 receptor A|interleukin-17 receptor A 20121230 -9606 23766 GABARAPL3 - ATG8D HGNC:4069 15 15q26.1 GABA(A) receptors associated protein like 3, pseudogene pseudo GABARAPL3 GABA(A) receptors associated protein like 3, pseudogene O - 20121230 -9606 23767 FLRT3 UNQ856/PRO1865 - HGNC:3762|MIM:604808|Ensembl:ENSG00000125848|HPRD:05313|Vega:OTTHUMG00000031914 20 20p11 fibronectin leucine rich transmembrane protein 3 protein-coding FLRT3 fibronectin leucine rich transmembrane protein 3 O fibronectin-like domain-containing leucine-rich transmembrane protein 3|leucine-rich repeat transmembrane protein FLRT3 20121230 -9606 23768 FLRT2 UNQ232/PRO265 - HGNC:3761|MIM:604807|Ensembl:ENSG00000185070|HPRD:05312|Vega:OTTHUMG00000171372 14 14q24-q32 fibronectin leucine rich transmembrane protein 2 protein-coding FLRT2 fibronectin leucine rich transmembrane protein 2 O fibronectin-like domain-containing leucine-rich transmembrane protein 2|leucine-rich repeat transmembrane protein FLRT2 20121230 -9606 23769 FLRT1 UNQ752/PRO1483 - HGNC:3760|MIM:604806|Ensembl:ENSG00000126500|HPRD:05311|Vega:OTTHUMG00000167788 11 11q12-q13 fibronectin leucine rich transmembrane protein 1 protein-coding FLRT1 fibronectin leucine rich transmembrane protein 1 O fibronectin-like domain-containing leucine-rich transmembrane protein 1|leucine-rich repeat transmembrane protein FLRT1 20121230 -9606 23770 FKBP8 - FKBP38|FKBPr38 HGNC:3724|MIM:604840|Ensembl:ENSG00000105701|HPRD:05327 19 19p12 FK506 binding protein 8, 38kDa protein-coding FKBP8 FK506 binding protein 8, 38kDa O 38 kDa FK506-binding protein|38 kDa FKBP|FK506-binding protein 8 (38kD)|FKBP-38|FKBP-8|PPIase FKBP8|hFKBP38|peptidyl-prolyl cis-trans isomerase FKBP8|rotamase 20121230 -9606 23771 DIANPH - - HGNC:2875|MIM:603933 18 18q22.3-q23 diabetic nephropathy unknown DIANPH diabetic nephropathy O - 20110215 -9606 23772 CSF2RBP1 - CSF2RB2|fF45C1.2 HGNC:2437 22 22q13.1 colony stimulating factor 2 receptor, beta, low-affinity (granulocyte-macrophage) pseudogene 1 pseudo CSF2RBP1 colony stimulating factor 2 receptor, beta, low-affinity (granulocyte-macrophage) pseudogene 1 O - 20121230 -9606 23774 BRD1 RP3-522J7.4 BRL|BRPF1|BRPF2 HGNC:1102|MIM:604589|Ensembl:ENSG00000100425|HPRD:06848|Vega:OTTHUMG00000150288 22 22q13.33 bromodomain containing 1 protein-coding BRD1 bromodomain containing 1 O BR140-like protein|bromodomain and PHD finger-containing protein 2|bromodomain-containing protein 1 20121230 -9606 23779 ARHGAP8 - BPGAP1|PP610 HGNC:677|MIM:609405|Ensembl:ENSG00000241484|HPRD:06448|Vega:OTTHUMG00000030234 22 22q13.31 Rho GTPase activating protein 8 protein-coding ARHGAP8 Rho GTPase activating protein 8 O BCH domain-containing Cdc42GAP-like protein|BNIP-2 and Cdc42GAP homology domain-containing, proline-rich and Cdc42GAP-like protein subtype-1|rho GTPase-activating protein 8|rho-type GTPase-activating protein 8 20121230 -9606 23780 APOL2 - APOL-II|APOL3 HGNC:619|MIM:607252|Ensembl:ENSG00000128335|HPRD:06263|Vega:OTTHUMG00000150634 22 22q12 apolipoprotein L, 2 protein-coding APOL2 apolipoprotein L, 2 O apolipoprotein L-II|apolipoprotein L2 20121230 -9606 23781 AP1B1P2 - ADTB1L2|dJ127L4.3 HGNC:298 22 22q12.3 adaptor-related protein complex 1, beta 1 subunit pseudogene 2 pseudo AP1B1P2 adaptor-related protein complex 1, beta 1 subunit pseudogene 2 O - 20121230 -9606 23782 AP1B1P1 - ADTB1L1|dJ127L4.2 HGNC:297 22 22q12.3 adaptor-related protein complex 1, beta 1 subunit pseudogene 1 pseudo AP1B1P1 adaptor-related protein complex 1, beta 1 subunit pseudogene 1 O - 20121230 -9606 23783 ANKRD62P1-PARP4P3 - ADPRTL4|PARP4P3 HGNC:42393 22 22q11.1 ANKRD62P1-PARP4P3 readthrough transcribed pseudogene pseudo ANKRD62P1-PARP4P3 ANKRD62P1-PARP4P3 readthrough transcribed pseudogene O - 20121230 -9606 23784 POTEH LA16c-3G11.6 A26C3|ACTBL1|CT104.7|POTE22 HGNC:133|MIM:608913|HPRD:16403 22 22q11.1 POTE ankyrin domain family, member H protein-coding POTEH POTE ankyrin domain family, member H O ANKRD26-like family C member 3|ANKRD26-like family C, member 3|POTE ankyrin domain family member H|POTE-22|actin, beta-like 1|cancer/testis antigen family 104, member 7|prostate, ovary, testis-expressed protein on chromosome 22|protein expressed in prostate, ovary, testis, and placenta 22|protein expressed in prostate, ovary, testis, and placenta POTE14 like 20121230 -9606 23785 ABCD1P1 - - HGNC:62 2 2p11 ATP-binding cassette, sub-family D (ALD), member 1, pseudogene 1 pseudo ABCD1P1 ATP-binding cassette, sub-family D (ALD), member 1, pseudogene 1 O - 20121230 -9606 23786 BCL2L13 CD003 BCL-RAMBO|Bcl2-L-13|MIL1 HGNC:17164|Ensembl:ENSG00000099968|HPRD:09822|Vega:OTTHUMG00000150088 22 22q11.1 BCL2-like 13 (apoptosis facilitator) protein-coding BCL2L13 BCL2-like 13 (apoptosis facilitator) O bcl-2-like protein 13 20121230 -9606 23787 MTCH1 RP1-90K10.1 CGI-64|PIG60|PSAP|SLC25A49 HGNC:17586|MIM:610449|Ensembl:ENSG00000137409|HPRD:14787|Vega:OTTHUMG00000014614 6 6p21.2 mitochondrial carrier 1 protein-coding MTCH1 mitochondrial carrier 1 O cell proliferation-inducing protein 60|mitochondrial carrier homolog 1|presenilin-associated protein|solute carrier family 25, member 49 20121230 -9606 23788 MTCH2 HSPC032 MIMP|SLC25A50 HGNC:17587|MIM:613221|Ensembl:ENSG00000109919|HPRD:14788|Vega:OTTHUMG00000166926 11 11p11.2 mitochondrial carrier 2 protein-coding MTCH2 mitochondrial carrier 2 O 2310034D24Rik|met-induced mitochondrial protein|mitochondrial carrier homolog 2|solute carrier family 25, member 50 20121230 -9606 24137 KIF4A - KIF4|KIF4G1 HGNC:13339|MIM:300521|Ensembl:ENSG00000090889|HPRD:06606|Vega:OTTHUMG00000021775 X Xq13.1 kinesin family member 4A protein-coding KIF4A kinesin family member 4A O chromokinesin-A|chromosome-associated kinesin KIF4A 20121230 -9606 24138 IFIT5 - P58|RI58 HGNC:13328|Ensembl:ENSG00000152778|HPRD:17130|Vega:OTTHUMG00000018713 10 10q23.31 interferon-induced protein with tetratricopeptide repeats 5 protein-coding IFIT5 interferon-induced protein with tetratricopeptide repeats 5 O IFIT-5|interferon-induced 58 kDa protein|retinoic acid- and interferon-inducible 58 kDa protein|retinoic acid- and interferon-inducible protein (58kD) 20121230 -9606 24139 EML2 - ELP70|EMAP-2|EMAP2 HGNC:18035|Ensembl:ENSG00000125746|HPRD:16860|Vega:OTTHUMG00000182127 19 19q13.32 echinoderm microtubule associated protein like 2 protein-coding EML2 echinoderm microtubule associated protein like 2 O echinoderm MT-associated protein (EMAP)-like protein 70|echinoderm microtubule-associated protein-like 2|microtubule-associated protein like echinoderm EMAP 20121230 -9606 24140 FTSJ1 JM23 CDLIV|MRX44|MRX9|SPB1|TRM7|TRMT7 HGNC:13254|MIM:300499|Ensembl:ENSG00000068438|HPRD:06568|Vega:OTTHUMG00000024118 X Xp11.23 FtsJ RNA methyltransferase homolog 1 (E. coli) protein-coding FTSJ1 FtsJ RNA methyltransferase homolog 1 (E. coli) O FtsJ homolog 1|cell division protein|protein ftsJ homolog 1|putative ribosomal RNA methyltransferase 1|rRNA (uridine-2'-O-)-methyltransferase|tRNA methyltransferase 7 homolog 20121230 -9606 24141 LAMP5 - BAD-LAMP|BADLAMP|C20orf103|LAMP-5|UNC-43 HGNC:16097|MIM:614641|Ensembl:ENSG00000125869|HPRD:12736|Vega:OTTHUMG00000031851 20 20p12 lysosomal-associated membrane protein family, member 5 protein-coding LAMP5 lysosomal-associated membrane protein family, member 5 O LAMP family protein C20orf103|brain and dendritic cell associated LAMP|brain and dendritic cell-associated LAMP|brain-associated LAMP-like protein|lysosome-associated membrane glycoprotein 5|lysosome-associated membrane protein 5 20121230 -9606 24142 NAT6 - FUS-2|FUS2 HGNC:30252|MIM:607073|Ensembl:ENSG00000243477|HPRD:06148|Vega:OTTHUMG00000156939 3 3p21.3 N-acetyltransferase 6 (GCN5-related) protein-coding NAT6 N-acetyltransferase 6 (GCN5-related) O N-acetyltransferase 6|protein fusion-2 20121230 -9606 24144 TFIP11 CTA-445C9.9 NTR1|Spp382|TIP39|bK445C9.6|hNtr1 HGNC:17165|MIM:612747|Ensembl:ENSG00000100109|HPRD:11628|Vega:OTTHUMG00000150883 22 22q12.1 tuftelin interacting protein 11 protein-coding TFIP11 tuftelin interacting protein 11 O STIP-1|septin and tuftelin-interacting protein 1|tuftelin-interacting protein 11 20121230 -9606 24145 PANX1 UNQ2529/PRO6028 MRS1|PX1|UNQ2529 HGNC:8599|MIM:608420|Ensembl:ENSG00000110218|HPRD:10526|Vega:OTTHUMG00000167757 11 11q21 pannexin 1 protein-coding PANX1 pannexin 1 O innexin|pannexin-1 20121230 -9606 24146 CLDN15 - - HGNC:2036|Ensembl:ENSG00000106404|HPRD:13065|Vega:OTTHUMG00000150512 7 7q11.22 claudin 15 protein-coding CLDN15 claudin 15 O claudin-15 20121230 -9606 24147 FJX1 - - HGNC:17166|MIM:612206|Ensembl:ENSG00000179431|HPRD:16897|Vega:OTTHUMG00000166310 11 11p13 four jointed box 1 (Drosophila) protein-coding FJX1 four jointed box 1 (Drosophila) O four-jointed box protein 1|four-jointed protein homolog|putative secreted ligand homologous to fjx1 20121230 -9606 24148 PRPF6 - ANT-1|ANT1|C20orf14|Prp6|TOM|U5-102K|hPrp6 HGNC:15860|MIM:613979|Ensembl:ENSG00000101161|HPRD:10729|Vega:OTTHUMG00000033018 20 20q13.33 PRP6 pre-mRNA processing factor 6 homolog (S. cerevisiae) protein-coding PRPF6 PRP6 pre-mRNA processing factor 6 homolog (S. cerevisiae) O PRP6 homolog|U5 snRNP-associated 102 kDa protein|U5-102 kDa protein|androgen receptor N-terminal domain transactivating protein-1|androgen receptor N-terminal domain-transactivating protein 1|p102 U5 small nuclear ribonucleoprotein particle-binding protein|pre-mRNA-processing factor 6|putative mitochondrial outer membrane protein import receptor 20121230 -9606 24149 ZNF318 HRIHFB2436 TZF|ZFP318 HGNC:13578|Ensembl:ENSG00000171467|HPRD:11707|Vega:OTTHUMG00000014732 6 6pter-p12.1 zinc finger protein 318 protein-coding ZNF318 zinc finger protein 318 O endocrine regulator|endocrine regulatory protein|testicular zinc finger 20121230 -9606 24150 TP53TG3 - P53TG3|TP53TG3A HGNC:30759|Ensembl:ENSG00000183632|HPRD:18215|Vega:OTTHUMG00000176507 16 16p13 TP53 target 3 protein-coding TP53TG3 TP53 target 3 O TP53-inducible gene 3 protein|TP53-target gene 3 protein|p53 target gene 3 20121230 -9606 25758 KIAA1549L hCG_1655816 C11orf41|C11orf69|G2 HGNC:24836|MIM:612297|Ensembl:ENSG00000110427|Vega:OTTHUMG00000150410 11 11p13 KIAA1549-like protein-coding KIAA1549L KIAA1549-like O UPF0606 protein C11orf41|UPF0606 protein KIAA1549L|Uncharacterized protein C11orf69 20121230 -9606 25759 SHC2 - SCK|SHCB|SLI HGNC:29869|MIM:605217|Ensembl:ENSG00000129946|Vega:OTTHUMG00000180545 19 19p13.3 SHC (Src homology 2 domain containing) transforming protein 2 protein-coding SHC2 SHC (Src homology 2 domain containing) transforming protein 2 O SH2 domain protein C2|SHC-transforming protein 2|SHC-transforming protein B|neuronal Shc adaptor homolog|protein Sck|src homology 2 domain-containing-transforming protein C2 20121230 -9606 25763 CXorf27 - HIP17|HYPM HGNC:18417|Ensembl:ENSG00000187516|Vega:OTTHUMG00000033180 X Xp21.1 chromosome X open reading frame 27 protein-coding CXorf27 chromosome X open reading frame 27 O huntingtin yeast partner M|huntingtin-interacting protein M 20121230 -9606 25764 HYPK HSPC136 C15orf63 HGNC:18418|MIM:612784|Ensembl:ENSG00000242028|HPRD:13724|Vega:OTTHUMG00000060146 15 15q15.3 huntingtin interacting protein K protein-coding HYPK huntingtin interacting protein K O huntingtin yeast partner K|huntingtin-interacting protein K 20121230 -9606 25766 PRPF40B - HYPC HGNC:25031|Ensembl:ENSG00000110844|HPRD:11044|Vega:OTTHUMG00000169568 12 12q PRP40 pre-mRNA processing factor 40 homolog B (S. cerevisiae) protein-coding PRPF40B PRP40 pre-mRNA processing factor 40 homolog B (S. cerevisiae) O Huntingtin interacting protein C|huntingtin yeast partner C|pre-mRNA-processing factor 40 homolog B 20121230 -9606 25769 SLC24A2 - NCKX2 HGNC:10976|MIM:609838|Ensembl:ENSG00000155886|HPRD:15351|Vega:OTTHUMG00000019646 9 9p22.1 solute carrier family 24 (sodium/potassium/calcium exchanger), member 2 protein-coding SLC24A2 solute carrier family 24 (sodium/potassium/calcium exchanger), member 2 O Na(+)/K(+)/Ca(2+)-exchange protein 2|retinal cone Na-Ca+K exchanger|sodium/potassium/calcium exchanger 2 20121230 -9606 25770 C22orf31 - HS747E2A|bK747E2.1 HGNC:26931|Ensembl:ENSG00000100249|HPRD:11031|Vega:OTTHUMG00000151011 22 22q12.1 chromosome 22 open reading frame 31 protein-coding C22orf31 chromosome 22 open reading frame 31 O uncharacterized protein C22orf31 20121230 -9606 25771 TBC1D22A LL22NC03-65D1.1 C22orf4|HSC79E021 HGNC:1309|Ensembl:ENSG00000054611|HPRD:15474|Vega:OTTHUMG00000150332 22 22q13.3 TBC1 domain family, member 22A protein-coding TBC1D22A TBC1 domain family, member 22A O TBC1 domain family member 22A|putative GTPase activator 20121230 -9606 25774 GSTTP1 - HS322B1A HGNC:26930|HPRD:13673 22 22q12 glutathione S-transferase theta pseudogene 1 pseudo GSTTP1 glutathione S-transferase theta pseudogene 1 O - 20121230 -9606 25775 C22orf24 LL22NC03-44A4.2 HSN44A4A HGNC:23051|Ensembl:ENSG00000128254|Vega:OTTHUMG00000030834 22 22q12.1-q12.3 chromosome 22 open reading frame 24 protein-coding C22orf24 chromosome 22 open reading frame 24 O uncharacterized protein C22orf24 20121230 -9606 25776 CBY1 RP3-508I15.8 C22orf2|CBY|HS508I15A|PGEA1|PIGEA-14|PIGEA14|arb1 HGNC:1307|MIM:607757|Ensembl:ENSG00000100211|HPRD:09676|Vega:OTTHUMG00000150990 22 22q12 chibby homolog 1 (Drosophila) protein-coding CBY1 chibby homolog 1 (Drosophila) O ARPP-binding protein|PKD2 interactor, Golgi and endoplasmic reticulum-associated 1|PKD2 interactor, golgi and endoplasmic reticulum associated 1|coiled-coil protein PIGEA-14|cytosolic leucine-rich protein|polycystin-2 interactor, Golgi- and endoplasmic reticulum-associated protein, 14 kDa|protein chibby homolog 1 20121230 -9606 25777 SUN2 RP3-508I15.15-002 UNC84B HGNC:14210|MIM:613569|Ensembl:ENSG00000100242|HPRD:15611|Vega:OTTHUMG00000151031 22 22q13.1 Sad1 and UNC84 domain containing 2 protein-coding SUN2 Sad1 and UNC84 domain containing 2 O SUN domain-containing protein 2|Sad1 unc-84 domain protein 2|nuclear envelope protein|protein unc-84 homolog B|rab5-interacting protein|rab5IP|sad1/unc-84 protein-like 2|unc-84 homolog B 20121230 -9606 25778 DSTYK HDCMD38P DustyPK|RIP5|RIPK5 HGNC:29043|MIM:612666|Ensembl:ENSG00000133059|HPRD:11495|Vega:OTTHUMG00000037102 1 1q32.1 dual serine/threonine and tyrosine protein kinase protein-coding DSTYK dual serine/threonine and tyrosine protein kinase O RIP-homologous kinase|dusty PK|dusty protein kinase|receptor interacting protein 5|receptor interacting protein kinase 5|receptor-interacting serine/threonine-protein kinase 5|sgK496|sugen kinase 496 20121230 -9606 25780 RASGRP3 - GRP3 HGNC:14545|MIM:609531|Ensembl:ENSG00000152689|HPRD:15213|Vega:OTTHUMG00000152124 2 2p25.1-p24.1 RAS guanyl releasing protein 3 (calcium and DAG-regulated) protein-coding RASGRP3 RAS guanyl releasing protein 3 (calcium and DAG-regulated) O calcium and DAG-regulated guanine nucleotide exchange factor III|guanine nucleotide exchange factor for Rap1|ras guanyl-releasing protein 3 20121230 -9606 25782 RAB3GAP2 RP11-568G11.1 RAB3-GAP150|RAB3GAP150|WARBM2|p150 HGNC:17168|MIM:609275|Ensembl:ENSG00000118873|HPRD:11471|Vega:OTTHUMG00000037139 1 1q41 RAB3 GTPase activating protein subunit 2 (non-catalytic) protein-coding RAB3GAP2 RAB3 GTPase activating protein subunit 2 (non-catalytic) O RGAP-iso|rab3 GTPase-activating protein 150 kDa subunit|rab3 GTPase-activating protein non-catalytic subunit|rab3-GAP p150|rab3-GAP regulatory subunit 20121230 -9606 25784 DGCR12 - DGS-E HGNC:17225 22 22q11.21 DiGeorge syndrome critical region gene 12 unknown DGCR12 DiGeorge syndrome critical region gene 12 O - 20120508 -9606 25786 DGCR11 - DGS-D HGNC:17226 22 22q11.21 DiGeorge syndrome critical region gene 11 (non-protein coding) miscRNA DGCR11 DiGeorge syndrome critical region gene 11 (non-protein coding) O - 20121230 -9606 25787 DGCR9 - DGS-A HGNC:17227 22 22q11.21 DiGeorge syndrome critical region gene 9 miscRNA DGCR9 DiGeorge syndrome critical region gene 9 O - 20121230 -9606 25788 RAD54B hCG_2009220 RDH54 HGNC:17228|MIM:604289|Ensembl:ENSG00000197275|HPRD:05049|HPRD:09966|Vega:OTTHUMG00000133658 8 8q22.1 RAD54 homolog B (S. cerevisiae) protein-coding RAD54B RAD54 homolog B (S. cerevisiae) O DNA repair and recombination protein RAD54B 20121230 -9606 25789 TMEM59L - BSMAP|C19orf4 HGNC:13237|Ensembl:ENSG00000105696|HPRD:12709 19 19p12 transmembrane protein 59-like protein-coding TMEM59L transmembrane protein 59-like O brain-specific membrane-anchored protein 20121230 -9606 25790 CCDC19 RP11-190A12.6 NESG1 HGNC:17229|MIM:605152|Ensembl:ENSG00000213085|HPRD:05514|Vega:OTTHUMG00000035432 1 1q22 coiled-coil domain containing 19 protein-coding CCDC19 coiled-coil domain containing 19 O coiled-coil domain-containing protein 19, mitochondrial|nasopharyngeal epithelium specific protein 1 (NESG1)|nasopharyngeal epithelium-specific protein 1 20121230 -9606 25791 NGEF - ARHGEF27|EPHEXIN HGNC:7807|MIM:605991|Ensembl:ENSG00000066248|HPRD:10442|Vega:OTTHUMG00000133272 2 2q37 neuronal guanine nucleotide exchange factor protein-coding NGEF neuronal guanine nucleotide exchange factor O eph-interacting exchange protein|ephexin-1 20121230 -9606 25792 CIZ1 RP11-395P17.7 LSFR1|NP94|ZNF356 HGNC:16744|MIM:611420|Ensembl:ENSG00000148337|HPRD:13061|Vega:OTTHUMG00000020735 9 9q34.1 CDKN1A interacting zinc finger protein 1 protein-coding CIZ1 CDKN1A interacting zinc finger protein 1 O cip1-interacting zinc finger protein|nuclear protein NP94|zinc finger protein 356 20121230 -9606 25793 FBXO7 LL22NC03-28H9.2 FBX|FBX07|FBX7|PARK15|PKPS HGNC:13586|MIM:605648|Ensembl:ENSG00000100225|HPRD:07292|Vega:OTTHUMG00000030674 22 22q12-q13 F-box protein 7 protein-coding FBXO7 F-box protein 7 O F-box only protein 7 20121230 -9606 25794 FSCN2 - RFSN|RP30 HGNC:3960|MIM:607643|Ensembl:ENSG00000186765|HPRD:06366|Vega:OTTHUMG00000167477 17 17q25 fascin homolog 2, actin-bundling protein, retinal (Strongylocentrotus purpuratus) protein-coding FSCN2 fascin homolog 2, actin-bundling protein, retinal (Strongylocentrotus purpuratus) O fascin-2 20121230 -9606 25796 PGLS - 6PGL HGNC:8903|MIM:604951|Ensembl:ENSG00000130313|HPRD:12001 19 19p13.2 6-phosphogluconolactonase protein-coding PGLS 6-phosphogluconolactonase O - 20121230 -9606 25797 QPCT - GCT|QC|sQC HGNC:9753|MIM:607065|Ensembl:ENSG00000115828|HPRD:06140|Vega:OTTHUMG00000100963 2 2p22.2 glutaminyl-peptide cyclotransferase protein-coding QPCT glutaminyl-peptide cyclotransferase O EC|glutaminyl cyclase|glutaminyl-tRNA cyclotransferase|glutamyl cyclase 20121230 -9606 25798 BRI3 - I3 HGNC:1109|Ensembl:ENSG00000164713|HPRD:16562|Vega:OTTHUMG00000154275 7 7q21.3 brain protein I3 protein-coding BRI3 brain protein I3 O pRGR2 20121230 -9606 25799 ZNF324 - ZF5128|ZNF324A HGNC:14096|Ensembl:ENSG00000083812|HPRD:11708 19 19q13.43 zinc finger protein 324 protein-coding ZNF324 zinc finger protein 324 O zinc finger protein 324A|zinc finger protein ZF5128 20121230 -9606 25800 SLC39A6 - LIV-1 HGNC:18607|MIM:608731|Ensembl:ENSG00000141424|HPRD:12285|Vega:OTTHUMG00000178965 18 18q12.2 solute carrier family 39 (zinc transporter), member 6 protein-coding SLC39A6 solute carrier family 39 (zinc transporter), member 6 O LIV-1 protein, estrogen regulated|ZIP-6|estrogen-regulated protein LIV-1|solute carrier family 39 (metal ion transporter), member 6|solute carrier family 39 member 6|zinc transporter ZIP6|zrt- and Irt-like protein 6 20121230 -9606 25801 GCA - GCL HGNC:15990|MIM:607030|Ensembl:ENSG00000115271|HPRD:06122|Vega:OTTHUMG00000132057 2 2q24.2 grancalcin, EF-hand calcium binding protein protein-coding GCA grancalcin, EF-hand calcium binding protein O grancalcin|grancalcin, EF-hand calcium-binding protein|grancalcin, penta-EF-hand protein 20121230 -9606 25802 LMOD1 - 1D|64kD|D1|SM-LMOD HGNC:6647|MIM:602715|Ensembl:ENSG00000163431|HPRD:04093|Vega:OTTHUMG00000035802 1 1q32 leiomodin 1 (smooth muscle) protein-coding LMOD1 leiomodin 1 (smooth muscle) O 64 kDa autoantigen 1D|64 kDa autoantigen 1D3|64 kDa autoantigen D1|leimodin 1 (smooth muscle)|leiomodin, muscle form|leiomodin-1|smooth muscle leiomodin|thyroid and eye muscle autoantigen D1 (64kD)|thyroid-associated ophthalmopathy autoantigen 20121230 -9606 25803 SPDEF - PDEF|RP11-375E1__A.3|bA375E1.3 HGNC:17257|MIM:608144|Ensembl:ENSG00000124664|HPRD:12176|Vega:OTTHUMG00000014548 6 6p21.3 SAM pointed domain containing ets transcription factor protein-coding SPDEF SAM pointed domain containing ets transcription factor O SAM pointed domain-containing Ets transcription factor|prostate epithelium-specific Ets transcription factor|prostate-derived Ets factor|prostate-specific Ets 20121230 -9606 25804 LSM4 - GRP|YER112W HGNC:17259|MIM:607284|Ensembl:ENSG00000130520|HPRD:06284 19 19p13.11 LSM4 homolog, U6 small nuclear RNA associated (S. cerevisiae) protein-coding LSM4 LSM4 homolog, U6 small nuclear RNA associated (S. cerevisiae) O U6 snRNA-associated Sm-like protein LSm4|glycine-rich protein 20121230 -9606 25805 BAMBI - NMA HGNC:30251|MIM:604444|Ensembl:ENSG00000095739|HPRD:05117|Vega:OTTHUMG00000017874 10 10p12.3-p11.2 BMP and activin membrane-bound inhibitor homolog (Xenopus laevis) protein-coding BAMBI BMP and activin membrane-bound inhibitor homolog (Xenopus laevis) O BMP and activin membrane-bound inhibitor homolog|non-metastatic gene A protein|putative transmembrane protein NMA 20121230 -9606 25806 VAX2 - DRES93 HGNC:12661|MIM:604295|Ensembl:ENSG00000116035|HPRD:05051|Vega:OTTHUMG00000129714 2 2p13 ventral anterior homeobox 2 protein-coding VAX2 ventral anterior homeobox 2 O - 20121230 -9606 25807 RHBDD3 CTA-984G1.4 C22orf3|HS984G1A|PTAG HGNC:1308|Ensembl:ENSG00000100263|HPRD:12800|Vega:OTTHUMG00000151032 22 22q12.2 rhomboid domain containing 3 protein-coding RHBDD3 rhomboid domain containing 3 O pituitary tumor apoptosis|rhomboid domain-containing protein 3 20121230 -9606 25809 TTLL1 - C22orf7|HS323M22B HGNC:1312|MIM:608955|Ensembl:ENSG00000100271|HPRD:10604|Vega:OTTHUMG00000150699 22 22q13.1 tubulin tyrosine ligase-like family, member 1 protein-coding TTLL1 tubulin tyrosine ligase-like family, member 1 O PGs3|catalytic subunit of neural tubulin polyglutamylase|probable tubulin polyglutamylase TTLL1|tubulin polyglutamylase complex subunit 3|tubulin--tyrosine ligase-like protein 1|tubulin-tyrosine ligase 20121230 -9606 25812 POM121L1P - POM121L1 HGNC:16439 22 22q11.22 POM121 transmembrane nucleoporin-like 1, pseudogene pseudo POM121L1P POM121 transmembrane nucleoporin-like 1, pseudogene O - 20121230 -9606 25813 SAMM50 CGI-51 OMP85|SAM50|TOB55|TRG-3|YNL026W HGNC:24276|MIM:612058|Ensembl:ENSG00000100347|HPRD:10826|Vega:OTTHUMG00000150557 22 22q13.31 sorting and assembly machinery component 50 homolog (S. cerevisiae) protein-coding SAMM50 sorting and assembly machinery component 50 homolog (S. cerevisiae) O sorting and assembly machinery 50kDa|sorting and assembly machinery component 50 homolog|transformation-related gene 3 protein 20121230 -9606 25814 ATXN10 RP1-37M3.7 E46L|HUMEEP|SCA10 HGNC:10549|MIM:611150|Ensembl:ENSG00000130638|HPRD:04624|Vega:OTTHUMG00000150451 22 22q13.31 ataxin 10 protein-coding ATXN10 ataxin 10 O ataxin-10|brain protein E46 homolog|spinocerebellar ataxia type 10 protein 20121230 -9606 25816 TNFAIP8 - GG2-1|MDC-3.13|SCC-S2|SCCS2 HGNC:17260|MIM:612111|Ensembl:ENSG00000145779|HPRD:18204|Vega:OTTHUMG00000162949 5 5q23.1 tumor necrosis factor, alpha-induced protein 8 protein-coding TNFAIP8 tumor necrosis factor, alpha-induced protein 8 O NDED|NF-kappa-B-inducible DED-containing protein|TNF alpha-induced protein 8|TNF-induced protein GG2-1|head and neck tumor and metastasis-related protein|tumor necrosis factor alpha-induced protein 8 20121230 -9606 25817 FAM19A5 CITF22-113D11.1 QLLK5208|TAFA-5|TAFA5|UNQ5208 HGNC:21592|Ensembl:ENSG00000219438|HPRD:13295|Vega:OTTHUMG00000150308 22 22q13.32 family with sequence similarity 19 (chemokine (C-C motif)-like), member A5 protein-coding FAM19A5 family with sequence similarity 19 (chemokine (C-C motif)-like), member A5 O TAFA protein 5|chemokine-like protein TAFA-5|protein FAM19A5 20121230 -9606 25818 KLK5 UNQ570/PRO1132 KLK-L2|KLKL2|SCTE HGNC:6366|MIM:605643|Ensembl:ENSG00000167754|HPRD:05732 19 19q13.33 kallikrein-related peptidase 5 protein-coding KLK5 kallikrein-related peptidase 5 O kallikrein 5|kallikrein-5|kallikrein-like protein 2|stratum corneum tryptic enzyme 20121230 -9606 25819 CCRN4L - CCR4L|NOC HGNC:14254|MIM:608468|Ensembl:ENSG00000151014|HPRD:16337|Vega:OTTHUMG00000161271 4 4q31.1 CCR4 carbon catabolite repression 4-like (S. cerevisiae) protein-coding CCRN4L CCR4 carbon catabolite repression 4-like (S. cerevisiae) O CCR4 protein homolog|CCR4-like (carbon catabolite repression 4, S.cerevisiae)|nocturnin 20121230 -9606 25820 ARIH1 HUSSY-27 ARI|HARI|HHARI|UBCH7BP HGNC:689|MIM:605624|Ensembl:ENSG00000166233|HPRD:05730|Vega:OTTHUMG00000133474 15 15q24 ariadne homolog, ubiquitin-conjugating enzyme E2 binding protein, 1 (Drosophila) protein-coding ARIH1 ariadne homolog, ubiquitin-conjugating enzyme E2 binding protein, 1 (Drosophila) O ARI-1|E3 ubiquitin-protein ligase ARIH1|H7-AP2|MOP-6|ariadne, Drosophila, homolog of|monocyte protein 6|protein ariadne-1 homolog|ubcH7-binding protein|ubcM4-interacting protein|ubiquitin-conjugating enzyme E2-binding protein 1 20121230 -9606 25821 MTO1 CGI-02 COXPD10 HGNC:19261|MIM:614667|Ensembl:ENSG00000135297|HPRD:17611|Vega:OTTHUMG00000015032 6 6q13 mitochondrial translation optimization 1 homolog (S. cerevisiae) protein-coding MTO1 mitochondrial translation optimization 1 homolog (S. cerevisiae) O homolog of yeast Mto1|mitochondrial MTO1-3|protein MTO1 homolog, mitochondrial 20121230 -9606 25822 DNAJB5 RP11-392A14.5 Hsc40 HGNC:14887|MIM:611328|Ensembl:ENSG00000137094|Vega:OTTHUMG00000019840 9 9p13.3 DnaJ (Hsp40) homolog, subfamily B, member 5 protein-coding DNAJB5 DnaJ (Hsp40) homolog, subfamily B, member 5 O dnaJ homolog subfamily B member 5|heat shock cognate 40|heat shock protein Hsp40-2|heat shock protein Hsp40-3|heat shock protein cognate 40 20121230 -9606 25823 TPSG1 - PRSS31|TMT|trpA HGNC:14134|MIM:609341|Ensembl:ENSG00000116176|HPRD:07160|Vega:OTTHUMG00000090466 16 16p13.3 tryptase gamma 1 protein-coding TPSG1 tryptase gamma 1 O gamma I|gamma II|lung tryptase|mast cell protease II|mast cell tryptase|pituitary tryptase|serine protease 31|skin tryptase|transmembrane tryptase|tryptase gamma|tryptase gamma I|tryptase gamma II 20121230 -9606 25824 PRDX5 SBBI10 ACR1|AOEB166|B166|PLP|PMP20|PRDX6|PRXV HGNC:9355|MIM:606583|Ensembl:ENSG00000126432|HPRD:05958|Vega:OTTHUMG00000168805 11 11q13 peroxiredoxin 5 protein-coding PRDX5 peroxiredoxin 5 O Alu co-repressor 1|TPx type VI|alu corepressor 1|antioxidant enzyme B166|liver tissue 2D-page spot 71B|peroxiredoxin V|peroxiredoxin-5, mitochondrial|peroxisomal antioxidant enzyme|prx-V|thioredoxin peroxidase PMP20|thioredoxin reductase 20121230 -9606 25825 BACE2 CDA13 AEPLC|ALP56|ASP1|ASP21|BAE2|CEAP1|DRAP HGNC:934|MIM:605668|Ensembl:ENSG00000182240|HPRD:05744|Vega:OTTHUMG00000086742 21 21q22.3 beta-site APP-cleaving enzyme 2 protein-coding BACE2 beta-site APP-cleaving enzyme 2 O 56 kDa aspartic-like protease|Down syndrome region aspartic protease|asp 1|aspartic-like protease 56 kDa|aspartyl protease 1|beta secretase 2|beta-secretase 2|beta-site APP cleaving enzyme 2|beta-site amyloid beta A4 precursor protein-cleaving enzyme 2|beta-site amyloid precursor protein cleaving enzyme 2|down region aspartic protease|memapsin-1|membrane-associated aspartic protease 1|theta-secretase|transmembrane aspartic proteinase Asp1 20121230 -9606 25826 SNORD82 - RNU82|U82|Z25 HGNC:10240|MIM:611133 2 2q37.1 small nucleolar RNA, C/D box 82 snoRNA SNORD82 small nucleolar RNA, C/D box 82 O - 20121230 -9606 25827 FBXL2 - FBL2|FBL3 HGNC:13598|MIM:605652|Ensembl:ENSG00000153558|HPRD:05736|Vega:OTTHUMG00000130745 3 3p22.3 F-box and leucine-rich repeat protein 2 protein-coding FBXL2 F-box and leucine-rich repeat protein 2 O F-box protein FBL2/FBL3|F-box protein containing leucine-rich repeats|F-box/LRR-repeat protein 2 20121230 -9606 25828 TXN2 RP5-1119A7.13-005 MT-TRX|MTRX|TRX2 HGNC:17772|MIM:609063|Ensembl:ENSG00000100348|HPRD:07161|Vega:OTTHUMG00000150596 22 22q13.1 thioredoxin 2 protein-coding TXN2 thioredoxin 2 O mitochondrial thioredoxin|thioredoxin, mitochondrial|thioredoxin-2 20121230 -9606 25829 TMEM184B CTA-447C4.2 C22orf5|FM08|HS5O6A HGNC:1310|Ensembl:ENSG00000198792|HPRD:12801|Vega:OTTHUMG00000030557 22 22q12 transmembrane protein 184B protein-coding TMEM184B transmembrane protein 184B O putative MAPK-activating protein FM08 20121230 -9606 25830 SULT4A1 - BR-STL-1|BRSTL1|DJ388M5.3|NST|SULTX3|hBR-STL-1 HGNC:14903|MIM:608359|Ensembl:ENSG00000130540|HPRD:07462|Vega:OTTHUMG00000141314 22 22q13.2 sulfotransferase family 4A, member 1 protein-coding SULT4A1 sulfotransferase family 4A, member 1 O ST4A1|brain sulfotransferase-like protein|hBR-STL|nervous system cytosolic sulfotransferase|nervous system sulfotransferase|sulfotransferase 4A1|sulfotransferase-related protein 20121230 -9606 25831 HECTD1 - - HGNC:20157|Ensembl:ENSG00000092148|HPRD:17098|Vega:OTTHUMG00000170670 14 14q12 HECT domain containing E3 ubiquitin protein ligase 1 protein-coding HECTD1 HECT domain containing E3 ubiquitin protein ligase 1 O E3 ligase for inhibin receptor|E3 ubiquitin-protein ligase HECTD1|EULIR|HECT domain containing 1|HECT domain-containing protein 1 20121230 -9606 25832 NBPF14 RP3-328E19.1 DJ328E19.C1.1|NBPF HGNC:25232|MIM:614003|Ensembl:ENSG00000122497|HPRD:13148|Vega:OTTHUMG00000013900 1 1q21.1 neuroblastoma breakpoint family, member 14 protein-coding NBPF14 neuroblastoma breakpoint family, member 14 O AE5|neuroblastoma breakpoint family member 14 20121230 -9606 25833 POU2F3 - Epoc-1|OCT-11|OCT11|OTF-11|PLA-1|PLA1|Skn-1a HGNC:19864|MIM:607394|Ensembl:ENSG00000137709|HPRD:09582|Vega:OTTHUMG00000166140 11 11q23.3 POU class 2 homeobox 3 protein-coding POU2F3 POU class 2 homeobox 3 O POU domain transcription factor OCT11a|POU domain, class 2, transcription factor 3|octamer-binding protein 11|octamer-binding transcription factor 11|transcription factor PLA-1|transcription factor Skn-1 20121230 -9606 25834 MGAT4C - GNTIVH|HGNT-IV-H HGNC:30871|MIM:607385|Ensembl:ENSG00000182050|HPRD:09575|Vega:OTTHUMG00000169846 12 12q21 mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme C (putative) protein-coding MGAT4C mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme C (putative) O N-acetylglucosaminyltransferase IV homolog|N-acetylglucosaminyltransferase IVc|N-glycosyl-oligosaccharide-glycoprotein N-acetylglucosaminyltransferase IVc|UDP-N-acetylglucosamine: alpha-1,3-D-mannoside beta-1,4-N-acetylglucosaminyltransferase IVc|UDP-N-acetylglucosamine:a-1,3-D-mannoside beta-1,4-N-acetylglucosaminyltransferase IV|UDP-N-acetylglucosamine:a-1,3-D-mannoside beta-1,4-N-acetylglucosaminyltransferase IV-homolog|alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase C|glcNAc-T IVc|gnT-IVc 20121230 -9606 25836 NIPBL - CDLS|CDLS1|IDN3|IDN3-B|Scc2 HGNC:28862|MIM:608667|Ensembl:ENSG00000164190|HPRD:10560|Vega:OTTHUMG00000090795 5 5p13.2 Nipped-B homolog (Drosophila) protein-coding NIPBL Nipped-B homolog (Drosophila) O SCC2 homolog|delangin|nipped-B-like protein|sister chromatid cohesion 2 homolog 20121230 -9606 25837 RAB26 - V46133 HGNC:14259|MIM:605455|Ensembl:ENSG00000167964|HPRD:05676|Vega:OTTHUMG00000128829 16 16p13.3 RAB26, member RAS oncogene family protein-coding RAB26 RAB26, member RAS oncogene family O Ras-related oncogene protein|ras-related protein Rab-26 20121230 -9606 25839 COG4 - CDG2J|COD1 HGNC:18620|MIM:606976|Ensembl:ENSG00000103051|HPRD:08444|Vega:OTTHUMG00000128515 16 16q22.1 component of oligomeric golgi complex 4 protein-coding COG4 component of oligomeric golgi complex 4 O COG complex subunit 4|complexed with Dor1p|conserved oligomeric Golgi complex protein 4|conserved oligomeric Golgi complex subunit 4 20121230 -9606 25840 METTL7A PRO0066 AAM-B HGNC:24550|Ensembl:ENSG00000185432|HPRD:13179 12 12q13.12 methyltransferase like 7A protein-coding METTL7A methyltransferase like 7A O methyltransferase-like protein 7A|protein AAM-B 20121230 -9606 25841 ABTB2 RP1-53C18.4 - HGNC:23842|Ensembl:ENSG00000166016|HPRD:10624|Vega:OTTHUMG00000044382 11 11p13 ankyrin repeat and BTB (POZ) domain containing 2 protein-coding ABTB2 ankyrin repeat and BTB (POZ) domain containing 2 O ankyrin repeat and BTB/POZ domain-containing protein 2 20121230 -9606 25842 ASF1A RP3-329L24.1 CGI-98|CIA|HSPC146 HGNC:20995|MIM:609189|Ensembl:ENSG00000111875|HPRD:16459|Vega:OTTHUMG00000015470 6 6q22.31 ASF1 anti-silencing function 1 homolog A (S. cerevisiae) protein-coding ASF1A ASF1 anti-silencing function 1 homolog A (S. cerevisiae) O CCG1-interacting factor A|anti-silencing function 1A|anti-silencing function protein 1 homolog A|hAsf1|hAsf1a|hCIA|histone chaperone ASF1A 20121230 -9606 25843 MOB4 CGI-95 2C4D|MOB1|MOB3|MOBKL3|PHOCN|PREI3 HGNC:17261|MIM:609361|Ensembl:ENSG00000115540|HPRD:10165|Vega:OTTHUMG00000132748 2 2q33.1 MOB family member 4, phocein protein-coding MOB4 MOB family member 4, phocein O MOB-like protein phocein|MOB1, Mps One Binder kinase activator-like 3|Mps One Binder kinase activator-like 3|class II mMOB1|mob1 homolog 3|phocein, Mob-like protein|preimplantation protein 3 20121230 -9606 25844 YIPF3 RP3-337H4.3 C6orf109|FinGER3|KLIP1|dJ337H4.3 HGNC:21023|MIM:609775|Ensembl:ENSG00000137207|HPRD:09852|Vega:OTTHUMG00000014738 6 6p21.1 Yip1 domain family, member 3 protein-coding YIPF3 Yip1 domain family, member 3 O killer lineage protein 1|natural killer cell-specific antigen KLIP1|protein YIPF3 20121230 -9606 25845 PP7080 - - - 5 5p15.33 uncharacterized LOC25845 miscRNA - - - - 20121230 -9606 25847 ANAPC13 - APC13|SWM1 HGNC:24540|MIM:614484|Ensembl:ENSG00000129055|HPRD:08531|Vega:OTTHUMG00000159803 3 3q22.2 anaphase promoting complex subunit 13 protein-coding ANAPC13 anaphase promoting complex subunit 13 O anaphase-promoting complex subunit 13|cyclosome subunit 13 20121230 -9606 25849 PARM1 UNQ1879/PRO4322 Cipar1|DKFZP564O0823|PARM-1|WSC4 HGNC:24536|Ensembl:ENSG00000169116|HPRD:08529|Vega:OTTHUMG00000160827 4 4q13.3-q21.3 prostate androgen-regulated mucin-like protein 1 protein-coding PARM1 prostate androgen-regulated mucin-like protein 1 O WSC4, cell wall integrity and stress response component 4 homolog|castration-induced prostatic apoptosis-related protein 1|prostatic androgen-regulated mucin-like protein 1|prostatic androgen-repressed message 1|prostatic androgen-repressed message-1 20121230 -9606 25850 ZNF345 - HZF10 HGNC:16367|Ensembl:ENSG00000251247|HPRD:10330|Vega:OTTHUMG00000048162 19 19q13.12 zinc finger protein 345 protein-coding ZNF345 zinc finger protein 345 O zinc finger protein HZF10 20121230 -9606 25851 TECPR1 - - HGNC:22214|MIM:614781|Ensembl:ENSG00000205356|HPRD:08521|Vega:OTTHUMG00000154273 7 7q21.3 tectonin beta-propeller repeat containing 1 protein-coding TECPR1 tectonin beta-propeller repeat containing 1 O tectonin beta-propeller repeat-containing protein 1 20121230 -9606 25852 ARMC8 S863-2 GID5|HSPC056|VID28 HGNC:24999|Ensembl:ENSG00000114098|HPRD:09992|Vega:OTTHUMG00000159821 3 3q22.3 armadillo repeat containing 8 protein-coding ARMC8 armadillo repeat containing 8 O GID complex subunit 5, VID28 homolog|armadillo repeat-containing protein 8 20121230 -9606 25853 DCAF12 - CT102|KIAA1892|TCC52|WDR40A HGNC:19911|Ensembl:ENSG00000198876|HPRD:10031|Vega:OTTHUMG00000019806 9 9p13.3 DDB1 and CUL4 associated factor 12 protein-coding DCAF12 DDB1 and CUL4 associated factor 12 O DDB1- and CUL4-associated factor 12|WD repeat domain 40A|WD repeat-containing protein 40A|cancer/testis antigen 102|centrosome-related protein TCC52|testis cancer centrosome-related protein 20121230 -9606 25854 FAM149A MST119 MSTP119 HGNC:24527|Ensembl:ENSG00000109794|HPRD:16810|Vega:OTTHUMG00000160565 4 4q35.1 family with sequence similarity 149, member A protein-coding FAM149A family with sequence similarity 149, member A O protein FAM149A 20121230 -9606 25855 BRMS1 - - HGNC:17262|MIM:606259|Ensembl:ENSG00000174744|HPRD:05879|Vega:OTTHUMG00000167081 11 11q13-q13.2 breast cancer metastasis suppressor 1 protein-coding BRMS1 breast cancer metastasis suppressor 1 O breast cancer metastasis-suppressor 1 20121230 -9606 25858 C11orf20 - - HGNC:19231|Ensembl:ENSG00000219435|Vega:OTTHUMG00000167820 11 11q13.1 chromosome 11 open reading frame 20 protein-coding C11orf20 chromosome 11 open reading frame 20 O uncharacterized protein C11orf20 20121230 -9606 25859 PART1 - NCRNA00206 HGNC:17263|MIM:604991|HPRD:09230 5 5q12.1 prostate androgen-regulated transcript 1 (non-protein coding) miscRNA PART1 prostate androgen-regulated transcript 1 (non-protein coding) O - 20121230 -9606 25861 DFNB31 RP11-9M16.1 CIP98|USH2D|WHRN|WI HGNC:16361|MIM:607928|Ensembl:ENSG00000095397|HPRD:09718|Vega:OTTHUMG00000020539 9 9q32 deafness, autosomal recessive 31 protein-coding DFNB31 deafness, autosomal recessive 31 O CASK-interacting protein CIP98|autosomal recessive deafness type 31 protein|whirlin 20121230 -9606 25862 USP49 RP11-298J23.4 - HGNC:20078|Ensembl:ENSG00000164663|HPRD:10075|Vega:OTTHUMG00000014688 6 6p21 ubiquitin specific peptidase 49 protein-coding USP49 ubiquitin specific peptidase 49 O deubiquitinating enzyme 49|ubiquitin carboxyl-terminal hydrolase 49|ubiquitin specific protease 49|ubiquitin thioesterase 49|ubiquitin thiolesterase 49|ubiquitin-specific-processing protease 49 20121230 -9606 25864 ABHD14A UNQ1913/PRO4373 DORZ1 HGNC:24538|Ensembl:ENSG00000248487|HPRD:08530|Vega:OTTHUMG00000157818 3 3p21.1 abhydrolase domain containing 14A protein-coding ABHD14A abhydrolase domain containing 14A O abhydrolase domain-containing protein 14A 20121230 -9606 25865 PRKD2 HSPC187 PKD2|nPKC-D2 HGNC:17293|MIM:607074|Ensembl:ENSG00000105287|HPRD:09523 19 19q13.3 protein kinase D2 protein-coding PRKD2 protein kinase D2 O serine/threonine-protein kinase D2 20121230 -9606 25870 SUMF2 PSEC0171 pFGE HGNC:20415|MIM:607940|Ensembl:ENSG00000129103|HPRD:06400|Vega:OTTHUMG00000129373 7 7q11.1 sulfatase modifying factor 2 protein-coding SUMF2 sulfatase modifying factor 2 O C-alpha-formyglycine-generating enzyme 2|C-alpha-formylglycine-generating enzyme 2|paralog of the formylglycine-generating enzyme|sulfatase-modifying factor 2 20121230 -9606 25871 C3orf17 - NET17 HGNC:24496|Ensembl:ENSG00000163608|HPRD:08524|Vega:OTTHUMG00000159286 3 3q13.2 chromosome 3 open reading frame 17 protein-coding C3orf17 chromosome 3 open reading frame 17 O uncharacterized protein C3orf17 20121230 -9606 25873 RPL36 - L36 HGNC:13631|Ensembl:ENSG00000130255|HPRD:10201|Vega:OTTHUMG00000178585 19 19p13.3 ribosomal protein L36 protein-coding RPL36 ribosomal protein L36 O 60S ribosomal protein L36 20121230 -9606 25874 MPC2 RP1-295C6.1 BRP44 HGNC:24515|MIM:614737|Ensembl:ENSG00000143158|HPRD:08525|Vega:OTTHUMG00000034570 1 1q24 mitochondrial pyruvate carrier 2 protein-coding MPC2 mitochondrial pyruvate carrier 2 O brain protein 44 20121230 -9606 25875 LETMD1 - 1110019O13Rik|HCCR-1|HCCR-2|HCCR1|HCRR-2 HGNC:24241|Ensembl:ENSG00000050426|HPRD:09978|Vega:OTTHUMG00000169538 12 12q13.12 LETM1 domain containing 1 protein-coding LETMD1 LETM1 domain containing 1 O LETM1 domain-containing protein 1|cervical cancer 1 proto-oncogene protein p40|cervical cancer proto-oncogene 2 protein|regulator of TP53 20121230 -9606 25876 SPEF1 RP5-1009E24.5 C20orf28|CLAMP|SPEF1A HGNC:15874|MIM:610674|Ensembl:ENSG00000101222|HPRD:09839|Vega:OTTHUMG00000031756 20 20pter-q11.23 sperm flagellar 1 protein-coding SPEF1 sperm flagellar 1 O calponin-homology and microtubule-associated protein|sperm flagellar protein 1 20121230 -9606 25878 MXRA5 - - HGNC:7539|Ensembl:ENSG00000101825|HPRD:06456|Vega:OTTHUMG00000021083 X Xp22.33 matrix-remodelling associated 5 protein-coding MXRA5 matrix-remodelling associated 5 O adhesion protein with leucine-rich repeats and Immunoglobulin domains related to perlecan|adlican|matrix-remodeling-associated protein 5 20121230 -9606 25879 DCAF13 HSPC064 GM83|WDSOF1 HGNC:24535|Ensembl:ENSG00000164934|HPRD:08528|Vega:OTTHUMG00000164888 8 8q22.3 DDB1 and CUL4 associated factor 13 protein-coding DCAF13 DDB1 and CUL4 associated factor 13 O DDB1- and CUL4-associated factor 13|WD repeat and SOF domain-containing protein 1|WD repeats and SOF1 domain containing 20121230 -9606 25880 TMEM186 - C16orf51 HGNC:24530|Ensembl:ENSG00000184857|HPRD:08527|Vega:OTTHUMG00000129696 16 16p13.2 transmembrane protein 186 protein-coding TMEM186 transmembrane protein 186 O - 20121230 -9606 25884 CHRDL2 UNQ765/PRO1557 BNF1|CHL2|FKSG37 HGNC:24168|MIM:613127|Ensembl:ENSG00000054938|HPRD:09881|Vega:OTTHUMG00000165623 11 11q14 chordin-like 2 protein-coding CHRDL2 chordin-like 2 O BNF-1|breast tumor novel factor 1|chordin-like protein 2|chordin-related protein 2 20121230 -9606 25885 POLR1A - A190|RPA1|RPA194|RPO1-4|RPO14 HGNC:17264|Ensembl:ENSG00000068654|HPRD:10161|Vega:OTTHUMG00000153165 2 2p11.2 polymerase (RNA) I polypeptide A, 194kDa protein-coding POLR1A polymerase (RNA) I polypeptide A, 194kDa O DNA-directed RNA polymerase I largest subunit|DNA-directed RNA polymerase I subunit A|DNA-directed RNA polymerase I subunit A1|DNA-directed RNA polymerase I subunit RPA1|RNA polymerase I 194 kDa subunit|RNA polymerase I subunit A1 20121230 -9606 25886 POC1A - PIX2|SOFT|WDR51A HGNC:24488|MIM:614783|Ensembl:ENSG00000164087|HPRD:08523|Vega:OTTHUMG00000157817 3 3p21.2 POC1 centriolar protein homolog A (Chlamydomonas) protein-coding POC1A POC1 centriolar protein homolog A (Chlamydomonas) O POC1 centriolar protein homolog A|WD repeat domain 51A|WD repeat-containing protein 51A 20121230 -9606 25888 ZNF473 - HZFP100|ZN473 HGNC:23239|Ensembl:ENSG00000142528|HPRD:11721 19 19q13.33 zinc finger protein 473 protein-coding ZNF473 zinc finger protein 473 O zfp-100|zinc finger protein 100 homolog|zinc finger protein ZFP100 20121230 -9606 25890 ABI3BP - NESHBP|TARSH HGNC:17265|MIM:606279|Ensembl:ENSG00000154175|HPRD:09380|Vega:OTTHUMG00000159094 3 3q12 ABI family, member 3 (NESH) binding protein protein-coding ABI3BP ABI family, member 3 (NESH) binding protein O ABI gene family member 3-binding protein|ABI gene family, member 3 (NESH) binding protein|nesh-binding protein|target of Nesh-SH3 20121230 -9606 25891 PAMR1 FP938 DKFZP586H2123|RAMP HGNC:24554|Ensembl:ENSG00000149090|HPRD:07104|Vega:OTTHUMG00000166328 11 11p13 peptidase domain containing associated with muscle regeneration 1 protein-coding PAMR1 peptidase domain containing associated with muscle regeneration 1 O inactive serine protease PAMR1|peptidase domain-containing protein associated with muscle regeneration 1|regeneration associated muscle protease|regeneration-associated muscle protease homolog 20121230 -9606 25893 TRIM58 - BIA2 HGNC:24150|Ensembl:ENSG00000162722|HPRD:09825|Vega:OTTHUMG00000040203 1 1q44 tripartite motif containing 58 protein-coding TRIM58 tripartite motif containing 58 O tripartite motif-containing 58|tripartite motif-containing protein 58 20121230 -9606 25894 PLEKHG4 - ARHGEF44|PRTPHN1|SCA4 HGNC:24501|MIM:609526|Ensembl:ENSG00000196155|HPRD:10890|Vega:OTTHUMG00000172936 16 16q22.1 pleckstrin homology domain containing, family G (with RhoGef domain) member 4 protein-coding PLEKHG4 pleckstrin homology domain containing, family G (with RhoGef domain) member 4 O PH domain-containing family G member 4|Purkinje cell atrophy associated protein 1|Purkinje cell atrophy-associated protein 1|pleckstrin homology domain-containing family G member 4|puratrophin-1 20121230 -9606 25895 METTL21B - FAM119B HGNC:24936|Ensembl:ENSG00000123427|HPRD:08532|Vega:OTTHUMG00000170459 12 12q14.1 methyltransferase like 21B protein-coding METTL21B methyltransferase like 21B O family with sequence similarity 119, member B|hepatocellular carcinoma-associated antigen 557a|hepatocellularcarcinoma-associated antigen HCA557a|methyltransferase-like protein 21B 20121230 -9606 25896 INTS7 - C1orf73|INT7 HGNC:24484|MIM:611350|Ensembl:ENSG00000143493|HPRD:08522|Vega:OTTHUMG00000037119 1 1q32.3 integrator complex subunit 7 protein-coding INTS7 integrator complex subunit 7 O - 20121230 -9606 25897 RNF19A - DORFIN|RNF19 HGNC:13432|MIM:607119|Ensembl:ENSG00000034677|HPRD:06176|Vega:OTTHUMG00000164707 8 8q22 ring finger protein 19A, E3 ubiquitin protein ligase protein-coding RNF19A ring finger protein 19A, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase RNF19A|RING finger protein 19 isoform|double ring-finger protein|p38 protein|protein p38 interacting with transcription factor Sp1|ring-IBR-ring domain containing protein Dorfin 20121230 -9606 25898 RCHY1 - ARNIP|CHIMP|PIRH2|PIRH2E|PIRH2F|PRO1996|RNF199|ZNF363|hARNIP HGNC:17479|MIM:607680|Ensembl:ENSG00000163743|HPRD:07607|Vega:OTTHUMG00000130105 4 4q21.1 ring finger and CHY zinc finger domain containing 1, E3 ubiquitin protein ligase protein-coding RCHY1 ring finger and CHY zinc finger domain containing 1, E3 ubiquitin protein ligase O CH-rich interacting match with PLAG1|E3 ubiquitin-protein ligase Pirh2|RING finger and CHY zinc finger domain-containing protein 1|RING finger protein 199|androgen-receptor N-terminal-interacting protein|hPirh2|p53-induced RING-H2 protein|p53-induced protein with a RING-H2 domain|zinc finger protein 363 20121230 -9606 25900 IFFO1 - HOM-TES-103|IFFO HGNC:24970|MIM:610495|Ensembl:ENSG00000010295|HPRD:09988|Vega:OTTHUMG00000141264 12 12p13.3 intermediate filament family orphan 1 protein-coding IFFO1 intermediate filament family orphan 1 O intermediate filament-like MGC:2625 20121230 -9606 25901 CCDC28A RP3-509I19.10-001 C6orf80|CCRL1AP HGNC:21098|Ensembl:ENSG00000024862|HPRD:09857|Vega:OTTHUMG00000015683 6 6q23.1-q24.1 coiled-coil domain containing 28A protein-coding CCDC28A coiled-coil domain containing 28A O chemokine C-C motif receptor-like 1 adjacent|coiled-coil domain-containing protein 28A 20121230 -9606 25902 MTHFD1L RP1-292B18.2 FTHFSDC1|MTC1THFS|dJ292B18.2 HGNC:21055|MIM:611427|Ensembl:ENSG00000120254|HPRD:09967|Vega:OTTHUMG00000015828 6 6q25.1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like protein-coding MTHFD1L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like O 10-formyl-THF synthetase|formyltetrahydrofolate synthetase domain containing 1|monofunctional C1-tetrahydrofolate synthase, mitochondrial 20121230 -9606 25903 OLFML2B - RP11-227F8.1 HGNC:24558|Ensembl:ENSG00000162745|HPRD:14877|Vega:OTTHUMG00000024047 1 1q23.3 olfactomedin-like 2B protein-coding OLFML2B olfactomedin-like 2B O olfactomedin-like protein 2B|photomedin-2 20121230 -9606 25904 CNOT10 - - HGNC:23817|Ensembl:ENSG00000182973|HPRD:16731|Vega:OTTHUMG00000130748 3 3p22.3 CCR4-NOT transcription complex, subunit 10 protein-coding CNOT10 CCR4-NOT transcription complex, subunit 10 O CCR4-NOT transcription complex subunit 10 20121230 -9606 25906 ANAPC15 HSPC020 APC15|C11orf51 HGNC:24531|MIM:614717|Ensembl:ENSG00000110200|HPRD:13172|Vega:OTTHUMG00000167865 11 11q13.4 anaphase promoting complex subunit 15 protein-coding ANAPC15 anaphase promoting complex subunit 15 O anaphase-promoting complex subunit 15 20121230 -9606 25907 TMEM158 - BBP|RIS1|p40BBP HGNC:30293|Ensembl:ENSG00000249992|HPRD:15252|Vega:OTTHUMG00000160317 3 3p21.3 transmembrane protein 158 (gene/pseudogene) protein-coding TMEM158 transmembrane protein 158 (gene/pseudogene) O 40 kDa BINP-binding protein|BINP receptor|Ras induced senescence 1|brain injury-derived neurotrophic peptide (BINP) binding protein|brain specific binding protein|transmembrane protein 158 20121230 -9606 25909 AHCTF1 MSTP108 ELYS|MST108|TMBS62 HGNC:24618|MIM:610853|Ensembl:ENSG00000153207|HPRD:09935|Vega:OTTHUMG00000040706 1 1q44 AT hook containing transcription factor 1 protein-coding AHCTF1 AT hook containing transcription factor 1 O ELYS transcription factor like protein TMBS62|ELYS transcription factor-like protein TMBS62|embryonic large molecule derived from yolk sac|protein ELYS|putative AT-hook-containing transcription factor 1 20121230 -9606 25911 DPCD RP11-529I10.4 - HGNC:24542|Ensembl:ENSG00000166171|HPRD:13247|Vega:OTTHUMG00000018934 10 10q24.32 deleted in primary ciliary dyskinesia homolog (mouse) protein-coding DPCD deleted in primary ciliary dyskinesia homolog (mouse) O deleted in a mouse model of primary ciliary dyskinesia|protein DPCD 20121230 -9606 25912 C1orf43 HSPC012 NICE-3|NS5ATP4|S863-3 HGNC:29876|Ensembl:ENSG00000143612|HPRD:16636|Vega:OTTHUMG00000035981 1 1q21.2 chromosome 1 open reading frame 43 protein-coding C1orf43 chromosome 1 open reading frame 43 O HCV NS5A-transactivated protein 4|hepatitis C virus NS5A-transactivated protein 4|protein NICE-3|uncharacterized protein C1orf43 20121230 -9606 25913 POT1 - HPOT1 HGNC:17284|MIM:606478|Ensembl:ENSG00000128513|HPRD:07572|Vega:OTTHUMG00000157194 7 7q31.33 protection of telomeres 1 homolog (S. pombe) protein-coding POT1 protection of telomeres 1 homolog (S. pombe) O POT1-like telomere end-binding protein|protection of telomeres protein 1 20121230 -9606 25914 RTTN - PMGYS HGNC:18654|MIM:610436|Ensembl:ENSG00000176225|HPRD:11525|Vega:OTTHUMG00000178694 18 18q22.2 rotatin protein-coding RTTN rotatin O - 20121230 -9606 25915 NDUFAF3 - 2P1|C3orf60|E3-3 HGNC:29918|MIM:612911|Ensembl:ENSG00000178057|HPRD:16809|Vega:OTTHUMG00000156773 3 3p21.31 NADH dehydrogenase (ubiquinone) complex I, assembly factor 3 protein-coding NDUFAF3 NADH dehydrogenase (ubiquinone) complex I, assembly factor 3 O NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 3|NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3|nuclear protein E3-3 20121230 -9606 25917 THUMPD3 - - HGNC:24493|Ensembl:ENSG00000134077|HPRD:15507|Vega:OTTHUMG00000097031 3 3p25.3 THUMP domain containing 3 protein-coding THUMPD3 THUMP domain containing 3 O THUMP domain-containing protein 3 20121230 -9606 25920 COBRA1 RP13-122B23.3 NELF-B|NELFB HGNC:24324|MIM:611180|Ensembl:ENSG00000188986|HPRD:10845|Vega:OTTHUMG00000131778 9 9q34 cofactor of BRCA1 protein-coding COBRA1 cofactor of BRCA1 O negative elongation factor B|negative elongation factor protein B 20121230 -9606 25921 ZDHHC5 - DHHC5|ZNF375 HGNC:18472|MIM:614586|Ensembl:ENSG00000156599|HPRD:15720|Vega:OTTHUMG00000167198 11 11q12.1 zinc finger, DHHC-type containing 5 protein-coding ZDHHC5 zinc finger, DHHC-type containing 5 O DHHC-5|membrane-associated DHHC5 zinc finger protein|palmitoyltransferase ZDHHC5|probable palmitoyltransferase ZDHHC5|zinc finger DHHC domain-containing protein 5|zinc finger protein 375|zinc finger, DHHC domain containing 5 20121230 -9606 25923 ATL3 - - HGNC:24526|MIM:609369|Ensembl:ENSG00000184743|HPRD:13170|Vega:OTTHUMG00000167854 11 11q13.1 atlastin GTPase 3 protein-coding ATL3 atlastin GTPase 3 O atlastin 3|atlastin-3 20121230 -9606 25924 MYRIP - SLAC2-C|SLAC2C HGNC:19156|MIM:611790|Ensembl:ENSG00000170011|HPRD:14796|Vega:OTTHUMG00000131392 3 3p22.1 myosin VIIA and Rab interacting protein protein-coding MYRIP myosin VIIA and Rab interacting protein O Slp homologue lacking C2 domains|exophilin-8|myosin-VIIa- and Rab-interacting protein|rab effector MyRIP|slp homolog lacking C2 domains c|synaptotagmin-like protein homologue lacking C2 domains-c|synaptotagmin-like protein lacking C2 domains C 20121230 -9606 25925 ZNF521 - EHZF|Evi3 HGNC:24605|MIM:610974|Ensembl:ENSG00000198795|HPRD:18350|Vega:OTTHUMG00000179511 18 18q11.2 zinc finger protein 521 protein-coding ZNF521 zinc finger protein 521 O LYST-interacting protein 3|early hematopoietic zinc finger protein 20121230 -9606 25926 NOL11 L14 - HGNC:24557|Ensembl:ENSG00000130935|HPRD:10900|Vega:OTTHUMG00000179777 17 17q24.2 nucleolar protein 11 protein-coding NOL11 nucleolar protein 11 O - 20121230 -9606 25927 CNRIP1 - C2orf32|CRIP1 HGNC:24546|Ensembl:ENSG00000119865|HPRD:12813|Vega:OTTHUMG00000129565 2 2p14 cannabinoid receptor interacting protein 1 protein-coding CNRIP1 cannabinoid receptor interacting protein 1 O CB1 cannabinoid receptor-interacting protein 1|CRIP-1|cannabinoid receptor CB1-interacting protein 1 20121230 -9606 25928 SOSTDC1 CDA019 ECTODIN|USAG1 HGNC:21748|MIM:609675|Ensembl:ENSG00000171243|HPRD:15417|Vega:OTTHUMG00000090807 7 7p21.1 sclerostin domain containing 1 protein-coding SOSTDC1 sclerostin domain containing 1 O cystine-knot containing secreted protein|ectodermal BMP inhibitor|sclerostin domain-containing protein 1|uterine sensitization-associated protein-1 20121230 -9606 25929 GEMIN5 - GEMIN-5 HGNC:20043|MIM:607005|Ensembl:ENSG00000082516|HPRD:06109|Vega:OTTHUMG00000130189 5 5q33.2 gem (nuclear organelle) associated protein 5 protein-coding GEMIN5 gem (nuclear organelle) associated protein 5 O gem-associated protein 5 20121230 -9606 25930 PTPN23 - HD-PTP|HDPTP|PTP-TD14 HGNC:14406|MIM:606584|Ensembl:ENSG00000076201|HPRD:05959|Vega:OTTHUMG00000133520 3 3p21.3 protein tyrosine phosphatase, non-receptor type 23 protein-coding PTPN23 protein tyrosine phosphatase, non-receptor type 23 O His-domain protein tyrosine phosphatase|his domain-containing protein tyrosine phosphatase|protein tyrosine phosphatase TD14|tyrosine-protein phosphatase non-receptor type 23 20121230 -9606 25932 CLIC4 - CLIC4L|H1|MTCLIC|huH1|p64H1 HGNC:13518|MIM:606536|Ensembl:ENSG00000169504|HPRD:05943|Vega:OTTHUMG00000003327 1 1p36.11 chloride intracellular channel 4 protein-coding CLIC4 chloride intracellular channel 4 O chloride intracellular channel 4 like|chloride intracellular channel protein 4|intracellular chloride ion channel protein p64H1 20121230 -9606 25934 NIPSNAP3A HSPC299 NIPSNAP4|TASSC HGNC:23619|MIM:608871|Ensembl:ENSG00000136783|HPRD:16399|Vega:OTTHUMG00000020413 9 9q31.1 nipsnap homolog 3A (C. elegans) protein-coding NIPSNAP3A nipsnap homolog 3A (C. elegans) O protein NipSnap homolog 3A|protein NipSnap homolog 4|target for Salmonella secreted protein C 20121230 -9606 25936 NSL1 DC8 C1orf48|MIS14 HGNC:24548|MIM:609174|Ensembl:ENSG00000117697|HPRD:12378|Vega:OTTHUMG00000036806 1 1q41 NSL1, MIND kinetochore complex component, homolog (S. cerevisiae) protein-coding NSL1 NSL1, MIND kinetochore complex component, homolog (S. cerevisiae) O kinetochore-associated protein NSL1 homolog 20121230 -9606 25937 WWTR1 - TAZ HGNC:24042|MIM:607392|Ensembl:ENSG00000018408|HPRD:09580|Vega:OTTHUMG00000159614 3 3q23-q24 WW domain containing transcription regulator 1 protein-coding WWTR1 WW domain containing transcription regulator 1 O WW domain-containing transcription regulator protein 1|transcriptional co-activator with PDZ-binding motif|transcriptional coactivator with PDZ-binding motif 20121230 -9606 25938 HEATR5A hCG_41034 C14orf125 HGNC:20276|Ensembl:ENSG00000129493|Vega:OTTHUMG00000169043 14 14q12 HEAT repeat containing 5A protein-coding HEATR5A HEAT repeat containing 5A O HEAT repeat-containing protein 5A 20121230 -9606 25939 SAMHD1 RP1-132F21.1 CHBL2|DCIP|HDDC1|MOP-5|SBBI88 HGNC:15925|MIM:606754|Ensembl:ENSG00000101347|HPRD:08418|Vega:OTTHUMG00000032402 20 20pter-q12 SAM domain and HD domain 1 protein-coding SAMHD1 SAM domain and HD domain 1 O SAM domain and HD domain-containing protein 1|dendritic cell-derived IFNG-induced protein|monocyte protein 5 20121230 -9606 25940 FAM98A - - HGNC:24520|Ensembl:ENSG00000119812|HPRD:16808|Vega:OTTHUMG00000152152 2 2p22.3 family with sequence similarity 98, member A protein-coding FAM98A family with sequence similarity 98, member A O protein FAM98A 20121230 -9606 25941 TPGS2 HMFN0601 C18orf10|L17|PGs2 HGNC:24561|Ensembl:ENSG00000134779|HPRD:12684|Vega:OTTHUMG00000178075 18 18q12.2 tubulin polyglutamylase complex subunit 2 protein-coding TPGS2 tubulin polyglutamylase complex subunit 2 O - 20121230 -9606 25942 SIN3A - - HGNC:19353|MIM:607776|Ensembl:ENSG00000169375|HPRD:09690|Vega:OTTHUMG00000142834 15 15q24.2 SIN3 transcription regulator homolog A (yeast) protein-coding SIN3A SIN3 transcription regulator homolog A (yeast) O SIN3 homolog A, transcription regulator|histone deacetylase complex subunit Sin3a|paired amphipathic helix protein Sin3a|transcriptional co-repressor Sin3A|transcriptional corepressor Sin3a|transcriptional regulator, SIN3A 20121230 -9606 25943 C20orf194 hCG_39261 - HGNC:17721|MIM:614146|Ensembl:ENSG00000088854|Vega:OTTHUMG00000031742 20 20p13 chromosome 20 open reading frame 194 protein-coding C20orf194 chromosome 20 open reading frame 194 O uncharacterized protein C20orf194 20121230 -9606 25945 PVRL3 - CD113|CDW113|NECTIN-3|PPR3|PRR3|PVRR3 HGNC:17664|MIM:607147|Ensembl:ENSG00000177707|HPRD:08454|Vega:OTTHUMG00000159239 3 3q13 poliovirus receptor-related 3 protein-coding PVRL3 poliovirus receptor-related 3 O nectin 3|poliovirus receptor-related protein 3 20121230 -9606 25946 ZNF385A - HZF|RZF|ZFP385|ZNF385 HGNC:17521|MIM:609124|Ensembl:ENSG00000161642|HPRD:16448|Vega:OTTHUMG00000169840 12 12q13.13 zinc finger protein 385A protein-coding ZNF385A zinc finger protein 385A O hematopoietic zinc finger protein|retinal zinc finger protein|zinc finger protein 385 20121230 -9606 25948 KBTBD2 CGI-73 BKLHD1 HGNC:21751|Ensembl:ENSG00000170852|HPRD:13756|Vega:OTTHUMG00000152984 7 7p14.3 kelch repeat and BTB (POZ) domain containing 2 protein-coding KBTBD2 kelch repeat and BTB (POZ) domain containing 2 O BTB and kelch domain containing 1|BTB and kelch domain-containing protein 1|kelch repeat and BTB domain-containing protein 2 20121230 -9606 25949 SYF2 - CBPIN|NTC31|P29|fSAP29 HGNC:19824|MIM:607090|Ensembl:ENSG00000117614|HPRD:07386|Vega:OTTHUMG00000043610 1 1p36.11 SYF2 homolog, RNA splicing factor (S. cerevisiae) protein-coding SYF2 SYF2 homolog, RNA splicing factor (S. cerevisiae) O CCNDBP1 interactor|CCNDBP1-interactor|GCIP-interacting protein p29|functional spliceosome-associated protein 29|pre-mRNA-splicing factor SYF2 20121230 -9606 25950 RWDD3 - RSUME HGNC:21393|Ensembl:ENSG00000122481|HPRD:11527|Vega:OTTHUMG00000010910 1 1p21.3 RWD domain containing 3 protein-coding RWDD3 RWD domain containing 3 O RWD domain-containing protein 3|RWD-containing sumoylation enhancer 20121230 -9606 25953 PNKD FKSG19 BRP17|DYT8|FPD1|KIPP1184|MR-1|MR1|PDC|PKND1|TAHCCP2 HGNC:9153|MIM:609023|Ensembl:ENSG00000127838|HPRD:11369|Vega:OTTHUMG00000133110 2 2q35 paroxysmal nonkinesigenic dyskinesia protein-coding PNKD paroxysmal nonkinesigenic dyskinesia O brain protein 17|myofibrillogenesis regulator 1|probable hydrolase PNKD|trans-activated by hepatitis C virus core protein 2 20121230 -9606 25956 SEC31B - SEC31B-1|SEC31L2 HGNC:23197|MIM:610258|Ensembl:ENSG00000075826|HPRD:15315|Vega:OTTHUMG00000019342 10 10q24.31 SEC31 homolog B (S. cerevisiae) protein-coding SEC31B SEC31 homolog B (S. cerevisiae) O SEC31-like 2|SEC31-like protein 2|SEC31-related protein B|protein transport protein Sec31B|secretory pathway component Sec31B-1 20121230 -9606 25957 PNISR HSPC261 C6orf111|HSPC306|RP11-98I9.2|SFRS18|SRrp130|bA98I9.2 HGNC:21222|Ensembl:ENSG00000132424|HPRD:10787|Vega:OTTHUMG00000015262 6 6q16.3 PNN-interacting serine/arginine-rich protein protein-coding PNISR PNN-interacting serine/arginine-rich protein O SR rich protein|SR-related protein|SR-rich protein|arginine/serine-rich protein PNISR|serine-arginine-rich-splicing regulatory protein 130|serine/arginine-rich-splicing regulatory protein 130|splicing factor, arginine/serine-rich 130|splicing factor, arginine/serine-rich 18 20121230 -9606 25959 KANK2 - ANKRD25|MXRA3|SIP HGNC:29300|MIM:614610|Ensembl:ENSG00000197256|HPRD:12463|Vega:OTTHUMG00000180799 19 19p13.2 KN motif and ankyrin repeat domains 2 protein-coding KANK2 KN motif and ankyrin repeat domains 2 O KN motif and ankyrin repeat domain-containing protein 2|SRC-1 interacting protein|SRC-1-interacting protein|SRC-interacting protein|SRC1-interacting protein|ankyrin repeat domain 25|ankyrin repeat domain-containing protein 25|kidney ankyrin repeat-containing protein 2|matrix-remodeling-associated protein 3|matrix-remodelling associated 3 20121230 -9606 25960 GPR124 - TEM5 HGNC:17849|MIM:606823|Ensembl:ENSG00000020181|HPRD:08437|Vega:OTTHUMG00000156182 8 8p11.23 G protein-coupled receptor 124 protein-coding GPR124 G protein-coupled receptor 124 O G-protein coupled receptor 124|tumor endothelial marker 5 20121230 -9606 25961 NUDT13 RP11-152N13.13-004 - HGNC:18827|MIM:609233|Ensembl:ENSG00000166321|HPRD:10124|Vega:OTTHUMG00000018453 10 10q22.1 nudix (nucleoside diphosphate linked moiety X)-type motif 13 protein-coding NUDT13 nudix (nucleoside diphosphate linked moiety X)-type motif 13 O nucleoside diphosphate-linked moiety X motif 13|nudix motif 13 20121230 -9606 25962 KIAA1429 MSTP054 fSAP121 HGNC:24500|Ensembl:ENSG00000164944|HPRD:10889|Vega:OTTHUMG00000164426 8 8q22.1 KIAA1429 protein-coding KIAA1429 KIAA1429 O functional spliceosome-associated protein 121|protein virilizer homolog 20121230 -9606 25963 TMEM87A PSEC0094 - HGNC:24522|Ensembl:ENSG00000103978|Vega:OTTHUMG00000172783 15 15q15.1 transmembrane protein 87A protein-coding TMEM87A transmembrane protein 87A O - 20121230 -9606 25966 C2CD2 - C21orf25|C21orf258|TMEM24L HGNC:1266|Ensembl:ENSG00000157617|HPRD:10745|Vega:OTTHUMG00000086779 21 21q22.3 C2 calcium-dependent domain containing 2 protein-coding C2CD2 C2 calcium-dependent domain containing 2 O C2 domain-containing protein 2|TMEM24 related geme 20121230 -9606 25970 SH2B1 - PSM|SH2B HGNC:30417|MIM:608937|Ensembl:ENSG00000178188|HPRD:12336|Vega:OTTHUMG00000176590 16 16p11.2 SH2B adaptor protein 1 protein-coding SH2B1 SH2B adaptor protein 1 O SH2 domain-containing protein 1B|SH2 domain-containing putative adapter SH2-B|SH2-B signaling protein|SH2B adapter protein 1|pro-rich, PH and SH2 domain-containing signaling mediator 20121230 -9606 25972 UNC50 HSD23 GMH1|UNCL|URP HGNC:16046|Ensembl:ENSG00000115446|HPRD:18259|Vega:OTTHUMG00000130562 2 2q11.2 unc-50 homolog (C. elegans) protein-coding UNC50 unc-50 homolog (C. elegans) O PDLs22|geal-6 membrane-associated high-copy suppressor 1|hGMH1|periodontal ligament-specific protein 22|protein GMH1 homolog|protein unc-50 homolog|unc-50 related|uncoordinated-like protein 20121230 -9606 25973 PARS2 - MT-PRORS HGNC:30563|MIM:612036|Ensembl:ENSG00000162396|HPRD:13220|Vega:OTTHUMG00000009915 1 1p32.2 prolyl-tRNA synthetase 2, mitochondrial (putative) protein-coding PARS2 prolyl-tRNA synthetase 2, mitochondrial (putative) O proRS|probable proline--tRNA ligase, mitochondrial|proline tRNA ligase 2, mitochondrial (putative)|proline--tRNA ligase 20121230 -9606 25974 MMACHC - RP11-291L19.3|cblC HGNC:24525|MIM:609831|Ensembl:ENSG00000132763|HPRD:18585|Vega:OTTHUMG00000007742 1 1p34.1 methylmalonic aciduria (cobalamin deficiency) cblC type, with homocystinuria protein-coding MMACHC methylmalonic aciduria (cobalamin deficiency) cblC type, with homocystinuria O methylmalonic aciduria and homocystinuria type C protein 20121230 -9606 25975 EGFL6 PP648 MAEG|W80 HGNC:3235|MIM:300239|Ensembl:ENSG00000198759|HPRD:02212|Vega:OTTHUMG00000021155 X Xp22 EGF-like-domain, multiple 6 protein-coding EGFL6 EGF-like-domain, multiple 6 O EGF repeat-containing protein 6|EGF-like protein 6|MAM and EGF domain containing|MAM and EGF domains-containing gene protein|epidermal growth factor-like protein 6 20121230 -9606 25976 TIPARP - ARTD14|PARP7|pART14 HGNC:23696|MIM:612480|Ensembl:ENSG00000163659|HPRD:18192|Vega:OTTHUMG00000158646 3 3q25.31 TCDD-inducible poly(ADP-ribose) polymerase protein-coding TIPARP TCDD-inducible poly(ADP-ribose) polymerase O ADP-ribosyltransferase diphtheria toxin-like 14|TCDD-inducible poly [ADP-ribose] polymerase|poly [ADP-ribose] polymerase 7 20121230 -9606 25977 NECAP1 - - HGNC:24539|MIM:611623|Ensembl:ENSG00000089818|HPRD:14819|Vega:OTTHUMG00000168568 12 12p13.31 NECAP endocytosis associated 1 protein-coding NECAP1 NECAP endocytosis associated 1 O NECAP endocytosis-associated protein 1|NECAP-1|adaptin ear-binding coat-associated protein 1|adaptin-ear-binding coat-associated protein 1 20121230 -9606 25978 CHMP2B CGI-84 ALS17|CHMP2.5|DMT1|VPS2-2|VPS2B HGNC:24537|MIM:609512|Ensembl:ENSG00000083937|HPRD:13174|Vega:OTTHUMG00000158982 3 3p11.2 charged multivesicular body protein 2B protein-coding CHMP2B charged multivesicular body protein 2B O VPS2 homolog B|charged multivesicular body protein 2b|chromatin modifying protein 2B|vacuolar protein-sorting-associated protein 2-2 20121230 -9606 25979 DHRS7B CGI-93 SDR32C1 HGNC:24547|Ensembl:ENSG00000109016|HPRD:13215|Vega:OTTHUMG00000178944 17 17p12 dehydrogenase/reductase (SDR family) member 7B protein-coding DHRS7B dehydrogenase/reductase (SDR family) member 7B O dehydrogenase/reductase SDR family member 7B|short chain dehydrogenase/reductase family 32C, member 1 20121230 -9606 25980 AAR2 CGI-23 C20orf4 HGNC:15886|Ensembl:ENSG00000131043|HPRD:12767|Vega:OTTHUMG00000032380 20 20pter-q12 AAR2 splicing factor homolog (S. cerevisiae) protein-coding AAR2 AAR2 splicing factor homolog (S. cerevisiae) O protein AAR2 homolog 20121230 -9606 25981 DNAH1 - DNAHC1|HDHC7|HL-11|HL11|XLHSRF-1 HGNC:2940|MIM:603332|Ensembl:ENSG00000114841|HPRD:11790|Vega:OTTHUMG00000158378 3 3p21.1 dynein, axonemal, heavy chain 1 protein-coding DNAH1 dynein, axonemal, heavy chain 1 O DNAH1 variant protein|HSRF-1|axonemal beta dynein heavy chain 1|ciliary dynein heavy chain 1|dynein heavy chain 1, axonemal|dynein, axonemal, heavy polypeptide 1|heat shock regulated 1|heat shock regulated protein 1 20121230 -9606 25983 NGDN - C14orf120|LCP5|NGD|lpd-2 HGNC:20271|MIM:610777|Ensembl:ENSG00000129460|Vega:OTTHUMG00000171501 14 14q11.2 neuroguidin, EIF4E binding protein protein-coding NGDN neuroguidin, EIF4E binding protein O EIF4E-binding protein|eukaryotic initiation factor 4E and CPEB binding protein|neuroguidin 20121230 -9606 25984 KRT23 - CK23|HAIK1|K23 HGNC:6438|MIM:606194|Ensembl:ENSG00000108244|HPRD:05863|Vega:OTTHUMG00000133376 17 17q21.2 keratin 23 (histone deacetylase inducible) protein-coding KRT23 keratin 23 (histone deacetylase inducible) O CK-23|cytokeratin 23|cytokeratin-23|histone deacetylase inducible keratin 23|hyperacetylation-inducible type I keratin|keratin, type I cytoskeletal 23|keratin-23|type I intermediate filament cytokeratin 20121230 -9606 25987 TSKU UNQ850/PRO1788 E2IG4|LRRC54|TSK HGNC:28850|MIM:608015|Ensembl:ENSG00000182704|HPRD:12152|Vega:OTTHUMG00000165238 11 11q13.5 tsukushi, small leucine rich proteoglycan protein-coding TSKU tsukushi, small leucine rich proteoglycan O E2-induced gene 4 protein|leucine rich repeat containing 54|leucine-rich repeat-containing protein 54|tsukushi homolog|tsukushi small leucine rich proteoglycan homolog|tsukushin 20121230 -9606 25988 HINFP - HiNF-P|MIZF|ZNF743 HGNC:17850|MIM:607099|Ensembl:ENSG00000172273|HPRD:07387|Vega:OTTHUMG00000166168 11 11q23.3 histone H4 transcription factor protein-coding HINFP histone H4 transcription factor O MBD2 (methyl-CpG-binding protein)-interacting zinc finger protein|MBD2-interacting zinc finger 1|MBD2-interacting zinc finger protein|histone H4 gene-specific protein HiNF-P|histone nuclear factor P|methyl-CpG-binding protein 2-interacting zinc finger protein 20121230 -9606 25989 ULK3 - - HGNC:19703|MIM:613472|Ensembl:ENSG00000140474|HPRD:15609|Vega:OTTHUMG00000173020 15 15q24.1 unc-51-like kinase 3 (C. elegans) protein-coding ULK3 unc-51-like kinase 3 (C. elegans) O serine/threonine-protein kinase ULK3 20121230 -9606 25992 SNED1 - SST3|Snep HGNC:24696|Ensembl:ENSG00000162804|Vega:OTTHUMG00000151803 2 2q37.3 sushi, nidogen and EGF-like domains 1 protein-coding SNED1 sushi, nidogen and EGF-like domains 1 O 6720455I24Rik homolog|IRE-BP1|insulin responsive sequence DNA binding protein-1|insulin-responsive sequence DNA-binding protein 1|sushi, nidogen and EGF-like domain-containing protein 1 20121230 -9606 25994 HIGD1A HSPC010 HIG1 HGNC:29527|Ensembl:ENSG00000181061|HPRD:13651|Vega:OTTHUMG00000156277 3 3p22.1 HIG1 hypoxia inducible domain family, member 1A protein-coding HIGD1A HIG1 hypoxia inducible domain family, member 1A O HIG1 domain family member 1A|HIG1 domain family, member 1A|hypoxia inducible gene 1|hypoxia-inducible gene 1 protein 20121230 -9606 25996 REXO2 CGI-114 REX2|RFN|SFN HGNC:17851|MIM:607149|Ensembl:ENSG00000076043|HPRD:06192|Vega:OTTHUMG00000168271 11 11q23.2 REX2, RNA exonuclease 2 homolog (S. cerevisiae) protein-coding REXO2 REX2, RNA exonuclease 2 homolog (S. cerevisiae) O RNA exonuclease 2 homolog|oligoribonuclease, mitochondrial|small fragment nuclease 20121230 -9606 25998 IBTK - BTKI|RP1-93K22.1 HGNC:17853|MIM:606457|Ensembl:ENSG00000005700|HPRD:12105|Vega:OTTHUMG00000015102 6 6q14.1 inhibitor of Bruton agammaglobulinemia tyrosine kinase protein-coding IBTK inhibitor of Bruton agammaglobulinemia tyrosine kinase O BTK-binding protein|Bruton agammaglobulinemia tyrosine kinase inhibitor|inhibitor of Bruton tyrosine kinase|inhibitor of Bruton's tyrosine kinase|inhibitor of Bruton's tyrosine kinase-alpha|inhibitor of Bruton's tyrosine kinase-beta|inhibitor of Bruton's tyrosine kinase-gamma 20121230 -9606 25999 CLIP3 - CLIPR-59|CLIPR59|RSNL1 HGNC:24314|MIM:607382|Ensembl:ENSG00000105270|HPRD:09572|Vega:OTTHUMG00000181747 19 19q13.12 CAP-GLY domain containing linker protein 3 protein-coding CLIP3 CAP-GLY domain containing linker protein 3 O CAP-Gly domain-containing linker protein 3|CLIP-170-related 59 kDa protein|cytoplasmic linker protein 170-related 59 kDa protein|restin-like 1 20121230 -9606 26000 TBC1D10B FP2461 EPI64B HGNC:24510|MIM:613620|Ensembl:ENSG00000169221|HPRD:10892|Vega:OTTHUMG00000132396 16 16p11.2 TBC1 domain family, member 10B protein-coding TBC1D10B TBC1 domain family, member 10B O Rab27A-GAPbeta|TBC1 domain family member 10B|rab27A-GAP-beta 20121230 -9606 26001 RNF167 LP2254 5730408C10Rik|RING105 HGNC:24544|MIM:610431|Ensembl:ENSG00000108523|HPRD:15261|Vega:OTTHUMG00000099397 17 17p13.2 ring finger protein 167 protein-coding RNF167 ring finger protein 167 O E3 ubiquitin-protein ligase RNF167 20121230 -9606 26002 MOXD1 UNQ2493/PRO5780 MOX|PRO5780|dJ248E1.1 HGNC:21063|MIM:609000|Ensembl:ENSG00000079931|HPRD:10093|Vega:OTTHUMG00000055853 6 6q23.2 monooxygenase, DBH-like 1 protein-coding MOXD1 monooxygenase, DBH-like 1 O DBH-like monooxygenase protein 1|dopamine-oxygenase|monooxygenase X 20121230 -9606 26003 GORASP2 - GOLPH6|GRASP55|GRS2|p59 HGNC:17500|MIM:608693|Ensembl:ENSG00000115806|HPRD:08303|Vega:OTTHUMG00000154072 2 2q31.1 golgi reassembly stacking protein 2, 55kDa protein-coding GORASP2 golgi reassembly stacking protein 2, 55kDa O Golgi reassembly-stacking protein 2|golgi phosphoprotein 6 20121230 -9606 26005 C2CD3 - - HGNC:24564|Ensembl:ENSG00000168014|HPRD:16811|Vega:OTTHUMG00000168110 11 11q13.4 C2 calcium-dependent domain containing 3 protein-coding C2CD3 C2 calcium-dependent domain containing 3 O C2 domain-containing protein 3 20121230 -9606 26007 DAK - NET45 HGNC:24552|Ensembl:ENSG00000149476|HPRD:13180|Vega:OTTHUMG00000168076 11 11q12.2 dihydroxyacetone kinase 2 homolog (S. cerevisiae) protein-coding DAK dihydroxyacetone kinase 2 homolog (S. cerevisiae) O ATP-dependent dihydroxyacetone kinase|DHA kinase|Dha kinase/FMN cyclase|FAD-AMP lyase cyclic FMN forming|FAD-AMP lyase cyclizing|bifunctional ATP-dependent dihydroxyacetone kinase/FAD-AMP lyase (cyclizing)|glycerone kinase 20121230 -9606 26009 ZZZ3 - ATAC1 HGNC:24523|Ensembl:ENSG00000036549|HPRD:15907|Vega:OTTHUMG00000009652 1 1p31.1 zinc finger, ZZ-type containing 3 protein-coding ZZZ3 zinc finger, ZZ-type containing 3 O ATAC component 1 homolog|ZZ-type zinc finger-containing protein 3|zinc finger, ZZ domain containing 3 20121230 -9606 26010 SPATS2L SP1224 DNAPTP6|SGNP HGNC:24574|MIM:613817|Ensembl:ENSG00000196141|HPRD:10916|Vega:OTTHUMG00000154589 2 2q33.1 spermatogenesis associated, serine-rich 2-like protein-coding SPATS2L spermatogenesis associated, serine-rich 2-like O DNA polymerase transactivated protein 6|DNA polymerase-transactivated protein 6|SPATS2-like protein|stress granule and nucleolar protein 20121230 -9606 26011 TENM4 - Doc4|ODZ4|TNM4|Ten-M4 HGNC:29945|MIM:610084|Ensembl:ENSG00000149256|Vega:OTTHUMG00000166770 11 11q14.1 teneurin transmembrane protein 4 protein-coding TENM4 teneurin transmembrane protein 4 O odd Oz/ten-m homolog 4|odz, odd Oz/ten-m homolog 4|protein Odd Oz/ten-m homolog 4|ten-4|tenascin-M4|teneurin-4 20121230 -9606 26012 NELF RP11-48C7.1 HH9 HGNC:29843|MIM:608137|Ensembl:ENSG00000165802|HPRD:10485|Vega:OTTHUMG00000020989 9 9q34.3 nasal embryonic LHRH factor protein-coding NELF nasal embryonic LHRH factor O nasal embryonic luteinizing hormone-releasing hormone factor 20121230 -9606 26013 L3MBTL1 RP1-138B7.1 H-L(3)MBT|L3MBTL|dJ138B7.3 HGNC:15905|MIM:608802|Ensembl:ENSG00000185513|HPRD:16387|Vega:OTTHUMG00000032503 20 20q13.12 l(3)mbt-like 1 (Drosophila) protein-coding L3MBTL1 l(3)mbt-like 1 (Drosophila) O l(3)mbt protein homolog|lethal (3) malignant brain tumor l(3)|lethal(3)malignant brain tumor-like protein 1 20121230 -9606 26015 RPAP1 - - HGNC:24567|MIM:611475|Ensembl:ENSG00000103932|HPRD:11522|Vega:OTTHUMG00000130342 15 15q15.1 RNA polymerase II associated protein 1 protein-coding RPAP1 RNA polymerase II associated protein 1 O RNA polymerase II-associated protein 1 20121230 -9606 26017 FAM32A CGI-144 OTAG-12|OTAG12 HGNC:24563|MIM:614554|Ensembl:ENSG00000105058|HPRD:13305|Vega:OTTHUMG00000182279 19 19pter-p13.3 family with sequence similarity 32, member A protein-coding FAM32A family with sequence similarity 32, member A O ovarian tumor associated gene-12|ovarian tumor-associated gene 12|protein FAM32A 20121230 -9606 26018 LRIG1 - LIG-1|LIG1 HGNC:17360|MIM:608868|Ensembl:ENSG00000144749|HPRD:10057|Vega:OTTHUMG00000158727 3 3p14 leucine-rich repeats and immunoglobulin-like domains 1 protein-coding LRIG1 leucine-rich repeats and immunoglobulin-like domains 1 O leucine-rich repeat protein LRIG1|leucine-rich repeats and immunoglobulin-like domains protein 1|ortholog of mouse integral membrane glycoprotein LIG-1 20121230 -9606 26019 UPF2 - HUPF2|RENT2|smg-3 HGNC:17854|MIM:605529|Ensembl:ENSG00000151461|HPRD:10405|Vega:OTTHUMG00000017678 10 10p14-p13 UPF2 regulator of nonsense transcripts homolog (yeast) protein-coding UPF2 UPF2 regulator of nonsense transcripts homolog (yeast) O nonsense mRNA reducing factor 2|regulator of nonsense transcripts 2|smg-3 homolog, nonsense mediated mRNA decay factor|up-frameshift suppressor 2 homolog|yeast Upf2p homolog 20121230 -9606 26020 LRP10 MSTP087 LRP9|MST087 HGNC:14553|MIM:609921|Ensembl:ENSG00000197324|HPRD:14311|Vega:OTTHUMG00000028705 14 14q11.2 low density lipoprotein receptor-related protein 10 protein-coding LRP10 low density lipoprotein receptor-related protein 10 O LRP-10|low-density lipoprotein receptor-related protein 10 20121230 -9606 26022 TMEM98 UNQ536/PRO1079 - HGNC:24529|Ensembl:ENSG00000006042|HPRD:13171|Vega:OTTHUMG00000132882 17 17q11.2 transmembrane protein 98 protein-coding TMEM98 transmembrane protein 98 O - 20121230 -9606 26024 PTCD1 - - HGNC:22198|MIM:614774|Ensembl:ENSG00000106246|HPRD:11463|Vega:OTTHUMG00000154600 7 7q22.1 pentatricopeptide repeat domain 1 protein-coding PTCD1 pentatricopeptide repeat domain 1 O pentatricopeptide repeat-containing protein 1, mitochondrial 20121230 -9606 26025 PCDHGA12 UNQ371/PRO707 CDH21|FIB3|PCDH-GAMMA-A12 HGNC:8699|MIM:603059|Ensembl:ENSG00000253159|HPRD:07538|Vega:OTTHUMG00000129611 5 5q31 protocadherin gamma subfamily A, 12 protein-coding PCDHGA12 protocadherin gamma subfamily A, 12 O cadherin 21|cadherin-21|fibroblast cadherin FIB3|fibroblast cadherin-3|protocadherin gamma-A12 20121230 -9606 26027 ACOT11 - BFIT|STARD14|THEA|THEM1 HGNC:18156|MIM:606803|Ensembl:ENSG00000162390|HPRD:07075|Vega:OTTHUMG00000009891 1 1p32.3 acyl-CoA thioesterase 11 protein-coding ACOT11 acyl-CoA thioesterase 11 O START domain containing 14|StAR-related lipid transfer (START) domain containing 14|acyl-CoA thioester hydrolase 11|acyl-coenzyme A thioesterase 11|adipose-associated thioesterase|brown fat-inducible thioesterase|thioesterase superfamily member 1|thioesterase, adipose associated 20121230 -9606 26030 PLEKHG3 - ARHGEF43|KIAA0599 HGNC:20364|Ensembl:ENSG00000126822|HPRD:17861|Vega:OTTHUMG00000029671 14 14q23.3 pleckstrin homology domain containing, family G (with RhoGef domain) member 3 protein-coding PLEKHG3 pleckstrin homology domain containing, family G (with RhoGef domain) member 3 O PH domain-containing family G member 3|pleckstrin homology domain containing, family G, member 3|pleckstrin homology domain-containing family G member 3 20121230 -9606 26031 OSBPL3 - ORP-3|ORP3|OSBP3 HGNC:16370|MIM:606732|Ensembl:ENSG00000070882|HPRD:09474|Vega:OTTHUMG00000023277 7 7p15 oxysterol binding protein-like 3 protein-coding OSBPL3 oxysterol binding protein-like 3 O OSBP-related protein 3|oxysterol-binding protein 3|oxysterol-binding protein-related protein 3 20121230 -9606 26032 SUSD5 - - HGNC:29061|Ensembl:ENSG00000173705|Vega:OTTHUMG00000155829 3 3p22.3 sushi domain containing 5 protein-coding SUSD5 sushi domain containing 5 O sushi domain-containing protein 5 20121230 -9606 26033 ATRNL1 - ALP|bA338L11.1|bA454H24.1 HGNC:29063|MIM:612869|Ensembl:ENSG00000107518|HPRD:12504|Vega:OTTHUMG00000019096 10 10q26 attractin-like 1 protein-coding ATRNL1 attractin-like 1 O attractin-like protein 1 20121230 -9606 26034 IPCEF1 - PIP3-E|RP3-402L9.2 HGNC:21204|Ensembl:ENSG00000074706|HPRD:17851|Vega:OTTHUMG00000015872 6 6q25.2 interaction protein for cytohesin exchange factors 1 protein-coding IPCEF1 interaction protein for cytohesin exchange factors 1 O interaction protein for cytohesin exchange factors 1 Interaction protein for cytohesin exchange factors 1|interactor protein for cytohesin exchange factors 1|phosphoinositide binding protein PIP3-E|phosphoinositide-binding protein PIP3-E 20121230 -9606 26035 GLCE - HSEPI HGNC:17855|MIM:612134|Ensembl:ENSG00000138604|HPRD:07020|Vega:OTTHUMG00000172084 15 15q23 glucuronic acid epimerase protein-coding GLCE glucuronic acid epimerase O D-glucuronyl C5-epimerase|UDP-glucuronic acid epimerase|glucuronyl C5-epimerase|heparan sulfate C5-epimerase|heparan sulfate epimerase|heparin/heparan sulfate-glucuronic acid C5-epimerase|heparin/heparan sulfate:glucuronic acid C5-epimerase|heparosan-N-sulfate-glucuronate 5-epimerase 20121230 -9606 26036 ZNF451 RP3-417I1.1 COASTER|dJ417I1.1 HGNC:21091|Ensembl:ENSG00000112200|HPRD:10332|Vega:OTTHUMG00000014916 6 6p12.1 zinc finger protein 451 protein-coding ZNF451 zinc finger protein 451 O coactivator for steroid receptors 20121230 -9606 26037 SIPA1L1 - E6TP1 HGNC:20284|Ensembl:ENSG00000197555|HPRD:11559|Vega:OTTHUMG00000171282 14 14q24.2 signal-induced proliferation-associated 1 like 1 protein-coding SIPA1L1 signal-induced proliferation-associated 1 like 1 O E6-targeted protein 1|H_DJ1140G11.1|SIPA1-like protein 1|WUGSC:H_DJ1140G11.1|high-risk human papilloma viruses E6 oncoproteins targeted protein 1|signal-induced proliferation-associated 1-like 1|signal-induced proliferation-associated 1-like protein 1 20121230 -9606 26038 CHD5 RP1-233K16.2 CHD-5 HGNC:16816|MIM:610771|Ensembl:ENSG00000116254|HPRD:10828|Vega:OTTHUMG00000000952 1 1p36.31 chromodomain helicase DNA binding protein 5 protein-coding CHD5 chromodomain helicase DNA binding protein 5 O ATP-dependent helicase CHD5|chromodomain-helicase-DNA-binding protein 5 20121230 -9606 26039 SS18L1 RP5-1005F21.1 CREST|LP2261 HGNC:15592|MIM:606472|Ensembl:ENSG00000184402|HPRD:09398|Vega:OTTHUMG00000032902 20 20q13.3 synovial sarcoma translocation gene on chromosome 18-like 1 protein-coding SS18L1 synovial sarcoma translocation gene on chromosome 18-like 1 O SS18-like protein 1|SYT homolog 1|calcium-responsive transactivator 20121230 -9606 26040 SETBP1 - SEB HGNC:15573|MIM:611060|Ensembl:ENSG00000152217|HPRD:10224|Vega:OTTHUMG00000132613 18 18q21.1 SET binding protein 1 protein-coding SETBP1 SET binding protein 1 O SET-binding protein 20121230 -9606 26043 UBXN7 - UBXD7 HGNC:29119|Ensembl:ENSG00000163960|Vega:OTTHUMG00000155639 3 3q29 UBX domain protein 7 protein-coding UBXN7 UBX domain protein 7 O UBX domain containing 7|UBX domain-containing protein 7 20121230 -9606 26045 LRRTM2 - - HGNC:19409|MIM:610868|Ensembl:ENSG00000146006|HPRD:17454|Vega:OTTHUMG00000163535 5 5q31.2 leucine rich repeat transmembrane neuronal 2 protein-coding LRRTM2 leucine rich repeat transmembrane neuronal 2 O leucine-rich repeat neuronal 2 protein|leucine-rich repeat transmembrane neuronal 2 protein|leucine-rich repeat transmembrane neuronal protein 2 20121230 -9606 26046 LTN1 HSPC087 C21orf10|C21orf98|RNF160|ZNF294 HGNC:13082|MIM:613083|Ensembl:ENSG00000198862|HPRD:10327|Vega:OTTHUMG00000078803 21 21q22.11 listerin E3 ubiquitin protein ligase 1 protein-coding LTN1 listerin E3 ubiquitin protein ligase 1 O E3 ubiquitin-protein ligase listerin|ring finger protein 160|zinc finger protein 294 20121230 -9606 26047 CNTNAP2 - AUTS15|CASPR2|CDFE|NRXN4|PTHSL1 HGNC:13830|MIM:604569|Ensembl:ENSG00000174469|HPRD:05197|Vega:OTTHUMG00000152743 7 7q35 contactin associated protein-like 2 protein-coding CNTNAP2 contactin associated protein-like 2 O cell recognition molecule Caspr2|contactin-associated protein-like 2|homolog of Drosophila neurexin IV 20121230 -9606 26048 ZNF500 - ZKSCAN18 HGNC:23716|Ensembl:ENSG00000103199|HPRD:18347|Vega:OTTHUMG00000176543 16 16p13.3 zinc finger protein 500 protein-coding ZNF500 zinc finger protein 500 O zinc finger protein with KRAB and SCAN domains 18 20121230 -9606 26049 FAM169A - SLAP75 HGNC:29138|Ensembl:ENSG00000198780|Vega:OTTHUMG00000162930 5 5q13.3 family with sequence similarity 169, member A protein-coding FAM169A family with sequence similarity 169, member A O protein FAM169A|soluble lamina-associated protein of 75 kD 20121230 -9606 26050 SLITRK5 - LRRC11|bA364G4.2 HGNC:20295|MIM:609680|Ensembl:ENSG00000165300|HPRD:18065|Vega:OTTHUMG00000017167 13 13q31.2 SLIT and NTRK-like family, member 5 protein-coding SLITRK5 SLIT and NTRK-like family, member 5 O SLIT and NTRK-like protein 5|leucine rich repeat containing 11|leucine-rich repeat-containing protein 11|slit and trk like gene 5 20121230 -9606 26051 PPP1R16B RP5-1076E17.1 ANKRD4|TIMAP HGNC:15850|MIM:613275|Ensembl:ENSG00000101445|HPRD:15168|Vega:OTTHUMG00000032465 20 20q11.23 protein phosphatase 1, regulatory subunit 16B protein-coding PPP1R16B protein phosphatase 1, regulatory subunit 16B O CAAX box protein TIMAP|TGF-beta-inhibited membrane-associated protein|ankyrin repeat domain protein 4|ankyrin repeat domain-containing protein 4|hTIMAP|protein phosphatase 1 regulatory inhibitor subunit 16B|protein phosphatase 1, regulatory (inhibitor) subunit 16B 20121230 -9606 26052 DNM3 RP1-106H8.3 - HGNC:29125|MIM:611445|Ensembl:ENSG00000197959|HPRD:13241|Vega:OTTHUMG00000034913 1 1q24.3 dynamin 3 protein-coding DNM3 dynamin 3 O Dyna III|T-dynamin|dynamin family member|dynamin, testicular|dynamin-3 20121230 -9606 26053 AUTS2 - FBRSL2 HGNC:14262|MIM:607270|Ensembl:ENSG00000158321|HPRD:06276|Vega:OTTHUMG00000023865 7 7q11.22 autism susceptibility candidate 2 protein-coding AUTS2 autism susceptibility candidate 2 O autism susceptibility gene 2 protein|autism-related protein 1 20121230 -9606 26054 SENP6 RP1-134M13.1 SSP1|SUSP1 HGNC:20944|MIM:605003|Ensembl:ENSG00000112701|HPRD:05417|Vega:OTTHUMG00000015060 6 6q13-q14.3 SUMO1/sentrin specific peptidase 6 protein-coding SENP6 SUMO1/sentrin specific peptidase 6 O 2810017C20Rik|SUMO-1-specific protease 1|SUMO1/sentrin specific protease 6|sentrin-specific protease 6|sentrin/SUMO-specific protease SENP6 20121230 -9606 26056 RAB11FIP5 - GAF1|RIP11|pp75 HGNC:24845|MIM:605536|Ensembl:ENSG00000135631|HPRD:16117|Vega:OTTHUMG00000129779 2 2p13 RAB11 family interacting protein 5 (class I) protein-coding RAB11FIP5 RAB11 family interacting protein 5 (class I) O gaf-1|gamma-SNAP-associated factor 1|phosphoprotein pp75|rab11 family-interacting protein 5|rab11-FIP5|rab11-interacting protein Rip11 20121230 -9606 26057 ANKRD17 - GTAR|NY-BR-16 HGNC:23575|Ensembl:ENSG00000132466|HPRD:10648|Vega:OTTHUMG00000160826 4 4q13.3 ankyrin repeat domain 17 protein-coding ANKRD17 ankyrin repeat domain 17 O ankyrin repeat domain-containing protein 17|gene trap ankyrin repeat protein|serologically defined breast cancer antigen NY-BR-16 20121230 -9606 26058 GIGYF2 - GYF2|PARK11|PERQ2|PERQ3|TNRC15 HGNC:11960|MIM:612003|Ensembl:ENSG00000204120|HPRD:11639|Vega:OTTHUMG00000153237 2 2q37.1 GRB10 interacting GYF protein 2 protein-coding GIGYF2 GRB10 interacting GYF protein 2 O GRB10-interacting GYF protein 2|GYF domain containing 2|PERQ amino acid rich, with GYF domain 2|PERQ amino acid rich, with GYF domain 3|PERQ amino acid-rich with GYF domain-containing protein 2|trinucleotide repeat containing 15|trinucleotide repeat-containing gene 15 protein 20121230 -9606 26059 ERC2 - CAST|CAST1|ELKSL|SPBC110|Spc110 HGNC:31922|Ensembl:ENSG00000187672|HPRD:10810|Vega:OTTHUMG00000158390 3 3p14.3 ELKS/RAB6-interacting/CAST family member 2 protein-coding ERC2 ELKS/RAB6-interacting/CAST family member 2 O CAZ-associated structural protein|ERC protein 2|cytomatrix protein p110 20121230 -9606 26060 APPL1 - APPL|DIP13alpha HGNC:24035|MIM:604299|Ensembl:ENSG00000157500|HPRD:05053|Vega:OTTHUMG00000133756 3 3p21.1-p14.3 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 1 protein-coding APPL1 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 1 O AKT2 interactor|DCC-interacting protein 13-alpha|adapter protein containing PH domain, PTB domain and leucine zipper motif 1|adaptor protein containing pH domain, PTB domain and leucine zipper motif 1|dip13-alpha|signaling adaptor protein DIP13alpha 20121230 -9606 26061 HACL1 HSPC279 2-HPCL|HPCL|HPCL2|PHYH2 HGNC:17856|MIM:604300|Ensembl:ENSG00000131373|HPRD:09183|Vega:OTTHUMG00000129862 3 3p25.1 2-hydroxyacyl-CoA lyase 1 protein-coding HACL1 2-hydroxyacyl-CoA lyase 1 O 1600020H07Rik|2-hydroxyphytanol-CoA lyase|2-hydroxyphytanoyl-CoA lyase|phytanoyl-CoA 2-hydroxylase 2|phytanoyl-CoA hydroxylase 2 20121230 -9606 26062 HYALP1 tcag7.1303 HYAL6 HGNC:5324 7 7q31.3 hyaluronoglucosaminidase pseudogene 1 pseudo HYALP1 hyaluronoglucosaminidase pseudogene 1 O - 20121230 -9606 26063 DECR2 AL023881.1 PDCR|SDR17C1 HGNC:2754|Ensembl:ENSG00000242612|HPRD:16789|Vega:OTTHUMG00000047846 16 16p13.3 2,4-dienoyl CoA reductase 2, peroxisomal protein-coding DECR2 2,4-dienoyl CoA reductase 2, peroxisomal O 2,4-dienoyl-CoA reductase 2|peroxisomal 2,4-dienoyl-CoA reductase|short chain dehydrogenase/reductase family 17C, member 1 20121230 -9606 26064 RAI14 - NORPEG|RAI13 HGNC:14873|MIM:606586|Ensembl:ENSG00000039560|HPRD:09416|Vega:OTTHUMG00000162019 5 5p13.3-p13.2 retinoic acid induced 14 protein-coding RAI14 retinoic acid induced 14 O ankycorbin|ankyrin repeat and coiled-coil structure-containing protein|novel retinal pigment epithelial cell protein|retinoic acid-induced protein 14 20121230 -9606 26065 LSM14A - C19orf13|FAM61A|RAP55|RAP55A HGNC:24489|MIM:610677|Ensembl:ENSG00000257103|HPRD:12697|Vega:OTTHUMG00000180491 19 19q13.11 LSM14A, SCD6 homolog A (S. cerevisiae) protein-coding LSM14A LSM14A, SCD6 homolog A (S. cerevisiae) O LSM14 homolog A|RNA-associated protein 55|RNA-associated protein 55A|alphaSNBP|family with sequence similarity 61, member A|hRAP55|hRAP55A|protein LSM14 homolog A|protein SCD6 homolog|putative alpha-synuclein-binding protein 20121230 -9606 26069 DKFZP586B0319 - - - 3 3q29 DKFZP586B0319 protein protein-coding - - - uncharacterized protein LOC26069 20111026 -9606 26070 DKFZP434K028 - - - 11 11q12.2 uncharacterized LOC26070 miscRNA - - - - 20121230 -9606 26071 FAM127B - CXX1b|MAR8A HGNC:24514|Ensembl:ENSG00000203950|HPRD:06485|Vega:OTTHUMG00000022466 X Xq26.3 family with sequence similarity 127, member B protein-coding FAM127B family with sequence similarity 127, member B O mammalian retrotransposon derived protein 8A|protein FAM127B 20121230 -9606 26073 POLDIP2 HSPC017 PDIP38|POLD4 HGNC:23781|MIM:611519|HPRD:17874 17 17q11.2 polymerase (DNA-directed), delta interacting protein 2 protein-coding POLDIP2 polymerase (DNA-directed), delta interacting protein 2 O 38 kDa DNA polymerase delta interaction protein|p38|polymerase delta interacting protein 38|polymerase delta-interacting protein 2 20121230 -9606 26074 C20orf26 RP11-470C13.3 dJ1002M8.3|dJ1178H5.4 HGNC:15872|Ensembl:ENSG00000089101|HPRD:16647|Vega:OTTHUMG00000032006 20 20p11.23 chromosome 20 open reading frame 26 protein-coding C20orf26 chromosome 20 open reading frame 26 O uncharacterized protein C20orf26 20121230 -9606 26077 DKFZP434H168 - - - 16 16q12.2 uncharacterized LOC26077 miscRNA - - - - 20121230 -9606 26080 LINC00281 - NCRNA00281 HGNC:24482 13 - long intergenic non-protein coding RNA 281 miscRNA LINC00281 long intergenic non-protein coding RNA 281 O - 20121230 -9606 26082 DKFZP434L187 - - - 15 15q13.2 uncharacterized LOC26082 miscRNA - - - - 20121209 -9606 26083 TBC1D29 - - HGNC:24509|Ensembl:ENSG00000266733|HPRD:13162|Vega:OTTHUMG00000178857 17 17q11.2 TBC1 domain family, member 29 protein-coding TBC1D29 TBC1 domain family, member 29 O putative TBC1 domain family member 29 20121230 -9606 26084 ARHGEF26 - CSGEF|HMFN1864|SGEF HGNC:24490|Ensembl:ENSG00000114790|HPRD:11554|Vega:OTTHUMG00000159098 3 3q25.2 Rho guanine nucleotide exchange factor (GEF) 26 protein-coding ARHGEF26 Rho guanine nucleotide exchange factor (GEF) 26 O SH3 domain-containing guanine exchange factor|Src homology 3 domain-containing guanine nucleotide exchange factor|rho guanine nucleotide exchange factor 26 20121230 -9606 26085 KLK13 - KLK-L4|KLKL4 HGNC:6361|MIM:605505|Ensembl:ENSG00000167759|HPRD:05693 19 19q13.33 kallikrein-related peptidase 13 protein-coding KLK13 kallikrein-related peptidase 13 O kallikrein 13|kallikrein-13|kallikrein-like gene 4|kallikrein-like protein 4 20121230 -9606 26086 GPSM1 RP13-270L15.1 AGS3 HGNC:17858|MIM:609491|Ensembl:ENSG00000160360|HPRD:17075|Vega:OTTHUMG00000020930 9 9q34.3 G-protein signaling modulator 1 protein-coding GPSM1 G-protein signaling modulator 1 O AGS3 homolog|G-protein signalling modulator 1 (AGS3-like, C. elegans)|G-protein-signaling modulator 1|activator of G-protein signaling 3 20121230 -9606 26088 GGA1 RP1-37E16.3 - HGNC:17842|MIM:606004|Ensembl:ENSG00000100083|HPRD:12078|Vega:OTTHUMG00000030985 22 22q13.31 golgi-associated, gamma adaptin ear containing, ARF binding protein 1 protein-coding GGA1 golgi-associated, gamma adaptin ear containing, ARF binding protein 1 O ADP-ribosylation factor binding protein 1|ADP-ribosylation factor-binding protein GGA1|gamma-adaptin related protein 1|gamma-adaptin-related protein 1|golgi associated, gamma adaptin ear containing, ARF binding protein 1|golgi-localized, gamma ear-containing, ARF-binding protein 1 20121230 -9606 26090 ABHD12 RP5-965G21.2 ABHD12A|BEM46L2|C20orf22|PHARC|dJ965G21.2 HGNC:15868|MIM:613599|Ensembl:ENSG00000100997|HPRD:07094|Vega:OTTHUMG00000032121 20 20p11.21 abhydrolase domain containing 12 protein-coding ABHD12 abhydrolase domain containing 12 O 2-arachidonoylglycerol hydrolase|abhydrolase domain-containing protein 12|monoacylglycerol lipase ABHD12 20121230 -9606 26091 HERC4 RP11-57G10.4 - HGNC:24521|MIM:609248|Ensembl:ENSG00000148634|HPRD:13646|Vega:OTTHUMG00000018343 10 10q21.3 HECT and RLD domain containing E3 ubiquitin protein ligase 4 protein-coding HERC4 HECT and RLD domain containing E3 ubiquitin protein ligase 4 O HECT domain and RCC1-like domain-containing protein 4|hect domain and RLD 4|probable E3 ubiquitin-protein ligase HERC4 20121230 -9606 26092 TOR1AIP1 RP11-533E19.1 LAP1|LAP1B HGNC:29456|MIM:614512|Ensembl:ENSG00000143337|HPRD:13958|Vega:OTTHUMG00000035257 1 1q24.2 torsin A interacting protein 1 protein-coding TOR1AIP1 torsin A interacting protein 1 O lamin-associated protein 1B|lamina associated polypeptide 1B|lamina-associated polypeptide 1B|torsin-1A-interacting protein 1 20121230 -9606 26093 CCDC9 - - HGNC:24560|Ensembl:ENSG00000105321|HPRD:10813 19 19q13.32 coiled-coil domain containing 9 protein-coding CCDC9 coiled-coil domain containing 9 O coiled-coil domain-containing protein 9 20121230 -9606 26094 DCAF4 - WDR21|WDR21A HGNC:20229|Ensembl:ENSG00000119599|HPRD:15664|Vega:OTTHUMG00000160542 14 14q24.3 DDB1 and CUL4 associated factor 4 protein-coding DCAF4 DDB1 and CUL4 associated factor 4 O DDB1- and CUL4-associated factor 4|WD repeat domain 21A|WD repeat-containing protein 21A 20121230 -9606 26095 PTPN20B RP11-142I17.1 bA42B19.1 HGNC:23423|MIM:610631|Ensembl:ENSG00000183675|HPRD:10898|Vega:OTTHUMG00000018151 10 10q11.22 protein tyrosine phosphatase, non-receptor type 20B protein-coding PTPN20B protein tyrosine phosphatase, non-receptor type 20B O protein tyrosine phosphatase, non-receptor type 20 20121230 -9606 26097 CHTOP HT031 C1orf77|FL-SRAG|FOP|RP1-178F15.2|SRAG|SRAG-3|SRAG-5|pp7704 HGNC:24511|MIM:614206|Ensembl:ENSG00000160679|HPRD:13163|Vega:OTTHUMG00000037052 1 1q21.3 chromatin target of PRMT1 protein-coding CHTOP chromatin target of PRMT1 O chromatin target of PRMT1 protein|friend of PRMT1 protein|small protein rich in arginine and glycine 20121230 -9606 26098 C10orf137 RP11-383C5.6 EDRF1 HGNC:24640|Ensembl:ENSG00000107938|HPRD:10694|Vega:OTTHUMG00000019233 10 10q26.13 chromosome 10 open reading frame 137 protein-coding C10orf137 chromosome 10 open reading frame 137 O erythroid differentiation-related factor 1 20121230 -9606 26099 SZRD1 - C1orf144 HGNC:30232|Ensembl:ENSG00000055070|HPRD:13213|Vega:OTTHUMG00000002217 1 1p36.13 SUZ RNA binding domain containing 1 protein-coding SZRD1 SUZ RNA binding domain containing 1 O SUZ domain-containing protein 1|UPF0485 protein C1orf144|putative MAPK activating protein PM20,PM21|putative MAPK-activating protein PM18/PM20/PM22 20121230 -9606 26100 WIPI2 CGI-50 ATG18B|Atg21|WIPI-2 HGNC:32225|MIM:609225|Ensembl:ENSG00000157954|HPRD:15679|Vega:OTTHUMG00000121179 7 7p22.1 WD repeat domain, phosphoinositide interacting 2 protein-coding WIPI2 WD repeat domain, phosphoinositide interacting 2 O WD repeat domain phosphoinositide-interacting protein 2|WD40 repeat protein interacting with phosphoinositides 2|WIPI49-like protein 2 20121230 -9606 26101 DKFZP564M1462 - - - 14 14q23.3 DKFZP564M1462 protein protein-coding - - - uncharacterized protein LOC26101 20111026 -9606 26102 DKFZP434A062 - - - 9 9q34.3 uncharacterized LOC26102 miscRNA - - - - 20121230 -9606 26103 LRIT1 - FIGLER9|LRRC21|PAL HGNC:23404|Ensembl:ENSG00000148602|HPRD:14315|Vega:OTTHUMG00000018632 10 10q23 leucine-rich repeat, immunoglobulin-like and transmembrane domains 1 protein-coding LRIT1 leucine-rich repeat, immunoglobulin-like and transmembrane domains 1 O fibronectin type III, immunoglobulin and leucine rich repeat domains 9|leucine rich repeat containing 21|leucine-rich repeat, immunoglobulin-like domain and transmembrane domain-containing protein 1|leucine-rich repeat-containing protein 21|photoreceptor-associated LRR superfamily protein|retina-specific protein PAL 20121230 -9606 26105 DKFZP434C153 - - - 1 1q42.13 DKFZP434C153 protein protein-coding - - - uncharacterized protein LOC26105 20111026 -9606 26106 DKFZP586K1520 - - - 2 2q37.3 DKFZP586K1520 protein protein-coding - - - uncharacterized protein LOC26106 20111026 -9606 26107 DKFZP547J0410 - - - 5 5p13.1 DKFZP547J0410 protein protein-coding - - - - 20111026 -9606 26108 PYGO1 - - HGNC:30256|MIM:606902|Ensembl:ENSG00000171016|HPRD:06064|Vega:OTTHUMG00000132009 15 15q21.1 pygopus homolog 1 (Drosophila) protein-coding PYGO1 pygopus homolog 1 (Drosophila) O pygopus 1|pygopus homolog 1|pygopus-like protein 1 20121230 -9606 26112 CCDC69 - - HGNC:24487|Ensembl:ENSG00000198624|HPRD:13152|Vega:OTTHUMG00000130127 5 5q33.1 coiled-coil domain containing 69 protein-coding CCDC69 coiled-coil domain containing 69 O coiled-coil domain-containing protein 69 20121230 -9606 26115 TANC2 - ROLSA|rols HGNC:30212|Ensembl:ENSG00000170921|Vega:OTTHUMG00000179103 17 17q23.3 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 protein-coding TANC2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 O protein TANC2|putative ankyrin-repeat containing protein|rolling pebbles homolog B|tetratricopeptide repeat, ankyrin repeat and coiled-coil domain-containing protein 2 20121230 -9606 26118 WSB1 - SWIP1|WSB-1 HGNC:19221|MIM:610091|Ensembl:ENSG00000109046|HPRD:15680|Vega:OTTHUMG00000132293 17 17q11.1 WD repeat and SOCS box containing 1 protein-coding WSB1 WD repeat and SOCS box containing 1 O SOCS box-containing WD protein SWiP-1|WD repeat and SOCS box-containing 1|WD repeat and SOCS box-containing protein 1 20121230 -9606 26119 LDLRAP1 RP11-70P17.2 ARH|ARH1|ARH2|FHCB1|FHCB2 HGNC:18640|MIM:605747|Ensembl:ENSG00000157978|HPRD:05765|Vega:OTTHUMG00000007386 1 1p36-p35 low density lipoprotein receptor adaptor protein 1 protein-coding LDLRAP1 low density lipoprotein receptor adaptor protein 1 O LDL receptor adaptor protein|autosomal recessive hypercholesterolemia protein|low density lipoprotein receptor adapter protein 1 20121230 -9606 26120 DKFZP564C152 - - - 11 - DKFZP564C152 protein protein-coding - - - uncharacterized protein LOC26120 20111026 -9606 26121 PRPF31 - NY-BR-99|PRP31|RP11 HGNC:15446|MIM:606419|Ensembl:ENSG00000105618|HPRD:05917|Vega:OTTHUMG00000066040 19 19q13.42 PRP31 pre-mRNA processing factor 31 homolog (S. cerevisiae) protein-coding PRPF31 PRP31 pre-mRNA processing factor 31 homolog (S. cerevisiae) O U4/U6 small nuclear ribonucleoprotein Prp31|U4/U6 snRNP 61 kDa protein|hPrp31|pre-mRNA-processing factor 31|protein 61K|serologically defined breast cancer antigen NY-BR-99 20121230 -9606 26122 EPC2 - EPC-LIKE HGNC:24543|MIM:611000|Ensembl:ENSG00000135999|HPRD:13274|Vega:OTTHUMG00000153739 2 2q23.1 enhancer of polycomb homolog 2 (Drosophila) protein-coding EPC2 enhancer of polycomb homolog 2 (Drosophila) O enhancer of polycomb homolog 2 20121230 -9606 26123 TCTN3 RP11-7D5.3 C10orf61|JBTS18|OFD4|TECT3 HGNC:24519|MIM:613847|Ensembl:ENSG00000119977|HPRD:12582|Vega:OTTHUMG00000018814 10 10q24.1 tectonic family member 3 protein-coding TCTN3 tectonic family member 3 O tectonic-3 20121230 -9606 26127 FGFR1OP2 HSPC123 HSPC123-like|WIT3.0 HGNC:23098|MIM:608858|Ensembl:ENSG00000111790|HPRD:10589|Vega:OTTHUMG00000169231 12 12p11.23 FGFR1 oncogene partner 2 protein-coding FGFR1OP2 FGFR1 oncogene partner 2 O fibroblast growth factor receptor 1 oncogene partner 2|wound inducible transcript 3.0 20121230 -9606 26128 KIAA1279 - KBP|TTC20 HGNC:23419|MIM:609367|Ensembl:ENSG00000198954|HPRD:13848|Vega:OTTHUMG00000018363 10 10q22.1 KIAA1279 protein-coding KIAA1279 KIAA1279 O KIF1-binding protein 20121230 -9606 26130 GAPVD1 RP11-184B22.1 GAPEX5|RAP6 HGNC:23375|MIM:611714|Ensembl:ENSG00000165219|HPRD:10886|Vega:OTTHUMG00000020678 9 9q33.3 GTPase activating protein and VPS9 domains 1 protein-coding GAPVD1 GTPase activating protein and VPS9 domains 1 O GAPex-5|GTPase-activating protein and VPS9 domain-containing protein 1|rab5-activating protein 6 20121230 -9606 26133 TRPC4AP - C20orf188|TRRP4AP|TRUSS HGNC:16181|MIM:608430|Ensembl:ENSG00000100991|HPRD:09238|Vega:OTTHUMG00000032319 20 20q11.22 transient receptor potential cation channel, subfamily C, member 4 associated protein protein-coding TRPC4AP transient receptor potential cation channel, subfamily C, member 4 associated protein O TNF-receptor ubiquitous scaffolding/signaling protein|TRP4-associated protein|short transient receptor potential channel 4 associated protein|short transient receptor potential channel 4-associated protein|trpc4-associated protein|tumor necrosis factor receptor-associated ubiquitous scaffolding and signaling protein 20121230 -9606 26134 RALGAPA1P - GARNL2|GARNL2P|bA235C23.1 HGNC:23203 9 9q31 Ral GTPase activating protein, alpha subunit 1 (catalytic) pseudogene pseudo RALGAPA1P Ral GTPase activating protein, alpha subunit 1 (catalytic) pseudogene O - 20121230 -9606 26135 SERBP1 CGI-55 CHD3IP|HABP4L|PAI-RBP1|PAIRBP1 HGNC:17860|MIM:607378|Ensembl:ENSG00000142864|Vega:OTTHUMG00000009372 1 1p31 SERPINE1 mRNA binding protein 1 protein-coding SERBP1 SERPINE1 mRNA binding protein 1 O PAI-1 mRNA binding protein|PAI1 RNA-binding protein 1|SERPINE1 mRNA-binding protein 1|chromodomain helicase DNA binding protein 3 interacting protein|plasminogen activator inhibitor 1 RNA binding protein|plasminogen activator inhibitor 1 RNA-binding protein 20121230 -9606 26136 TES - TESS|TESS-2 HGNC:14620|MIM:606085|Ensembl:ENSG00000135269|HPRD:05833|Vega:OTTHUMG00000023092 7 7q31.2 testis derived transcript (3 LIM domains) protein-coding TES testis derived transcript (3 LIM domains) O testin 20121230 -9606 26137 ZBTB20 - DPZF|HOF|ODA-8S|ZNF288 HGNC:13503|MIM:606025|Ensembl:ENSG00000181722|HPRD:05822|Vega:OTTHUMG00000159366 3 3q13.2 zinc finger and BTB domain containing 20 protein-coding ZBTB20 zinc finger and BTB domain containing 20 O BTB/POZ zinc finger protein DPZF|dendritic cell-derived BTB/POZ zinc finger|dendritic-derived BTB/POZ zinc finger protein|zinc finger and BTB domain-containing protein 20|zinc finger protein 288 20121230 -9606 26138 LINC00588 - C8orf71 HGNC:24494 8 8q12.1 long intergenic non-protein coding RNA 588 miscRNA LINC00588 long intergenic non-protein coding RNA 588 O - 20121230 -9606 26140 TTLL3 PRO0207 HOTTL HGNC:24483|Ensembl:ENSG00000214021|HPRD:15585|Vega:OTTHUMG00000128439 3 3p25.3 tubulin tyrosine ligase-like family, member 3 protein-coding TTLL3 tubulin tyrosine ligase-like family, member 3 O tubulin monoglycylase TTLL3|tubulin--tyrosine ligase-like protein 3 20121230 -9606 26145 IRF2BP1 - - HGNC:21728|Ensembl:ENSG00000170604|HPRD:17159 19 19q13.32 interferon regulatory factor 2 binding protein 1 protein-coding IRF2BP1 interferon regulatory factor 2 binding protein 1 O IRF-2-binding protein 1|interferon regulatory factor 2-binding protein 1|probable E3 ubiquitin-protein ligase IRF2BP1 20121230 -9606 26146 TRAF3IP1 - MIP-T3|MIPT3 HGNC:17861|MIM:607380|Ensembl:ENSG00000204104|HPRD:09571|Vega:OTTHUMG00000152872 2 2q37.3 TNF receptor-associated factor 3 interacting protein 1 protein-coding TRAF3IP1 TNF receptor-associated factor 3 interacting protein 1 O TRAF3-interacting protein 1|interleukin 13 receptor alpha 1-binding protein-1|interleukin-13 receptor alpha 1-binding protein 1|microtubule interacting protein that associates with TRAF3|microtubule-interacting protein associated with TRAF3|microtubule-interacting protein that associates with TRAF3 20121230 -9606 26147 PHF19 RP11-27I1.1 MTF2L1|PCL3 HGNC:24566|MIM:609740|Ensembl:ENSG00000119403|HPRD:17846|Vega:OTTHUMG00000020577 9 9q33.2 PHD finger protein 19 protein-coding PHF19 PHD finger protein 19 O hPCL3|polycomb like 3|polycomb-like 3|polycomb-like protein 3 20121230 -9606 26148 C10orf12 - - HGNC:23420|Ensembl:ENSG00000155640|HPRD:12563|Vega:OTTHUMG00000018840 10 10q24.1 chromosome 10 open reading frame 12 protein-coding C10orf12 chromosome 10 open reading frame 12 O uncharacterized protein C10orf12 20121230 -9606 26149 ZNF658 RP11-1082I11.2 - HGNC:25226|Ensembl:ENSG00000196409|HPRD:11342|Vega:OTTHUMG00000013392 9 9p13.1 zinc finger protein 658 protein-coding ZNF658 zinc finger protein 658 O - 20121230 -9606 26150 RIBC2 - C22orf11 HGNC:13241|Ensembl:ENSG00000128408|HPRD:11493|Vega:OTTHUMG00000151332 22 22q13.31 RIB43A domain with coiled-coils 2 protein-coding RIBC2 RIB43A domain with coiled-coils 2 O RIB43A-like with coiled-coils protein 2 20121230 -9606 26151 NAT9 - EBSP, hNATL HGNC:23133|Ensembl:ENSG00000109065|HPRD:13259|Vega:OTTHUMG00000178870 17 17q25.1 N-acetyltransferase 9 (GCN5-related, putative) protein-coding NAT9 N-acetyltransferase 9 (GCN5-related, putative) O N-acetyltransferase 9|embryo brain specific protein|embryo brain-specific protein 20121230 -9606 26152 ZNF337 - - HGNC:15809|Ensembl:ENSG00000130684|HPRD:15779|Vega:OTTHUMG00000032131 20 20p11.1 zinc finger protein 337 protein-coding ZNF337 zinc finger protein 337 O - 20121230 -9606 26153 KIF26A - - HGNC:20226|MIM:613231|Ensembl:ENSG00000066735|Vega:OTTHUMG00000154986 14 14q32.33 kinesin family member 26A protein-coding KIF26A kinesin family member 26A O KIF26A variant protein|kinesin-like protein KIF26A 20121230 -9606 26154 ABCA12 - ICR2B|LI2 HGNC:14637|MIM:607800|Ensembl:ENSG00000144452|HPRD:07416|Vega:OTTHUMG00000154801 2 2q34 ATP-binding cassette, sub-family A (ABC1), member 12 protein-coding ABCA12 ATP-binding cassette, sub-family A (ABC1), member 12 O ATP-binding cassette sub-family A member 12|ATP-binding cassette transporter 12 20121230 -9606 26155 NOC2L - NET15|NET7|NIR HGNC:24517|MIM:610770|Ensembl:ENSG00000188976|HPRD:13166|Vega:OTTHUMG00000040720 1 1p36.33 nucleolar complex associated 2 homolog (S. cerevisiae) protein-coding NOC2L nucleolar complex associated 2 homolog (S. cerevisiae) O NOC2-like protein|novel INHAT (inhibitor of histone acetyltransferase) repressor|novel INHAT repressor|nucleolar complex protein 2 homolog|protein NOC2 homolog 20121230 -9606 26156 RSL1D1 L12 CSIG|PBK1|UTP30 HGNC:24534|Ensembl:ENSG00000171490|HPRD:10897|Vega:OTTHUMG00000129824 16 16p13.13 ribosomal L1 domain containing 1 protein-coding RSL1D1 ribosomal L1 domain containing 1 O CATX-11|cellular senescence inhibited gene protein|cellular senescence-inhibited gene protein|ribosomal L1 domain-containing protein 1 20121230 -9606 26157 GIMAP2 - HIMAP2|IMAP2 HGNC:21789|MIM:608085|Ensembl:ENSG00000106560|HPRD:16279|Vega:OTTHUMG00000157488 7 7q36.1 GTPase, IMAP family member 2 protein-coding GIMAP2 GTPase, IMAP family member 2 O GTPase IMAP family member 2|immunity associated protein 2|immunity-associated protein 2 20121230 -9606 26160 IFT172 - SLB|osm-1|wim HGNC:30391|MIM:607386|Ensembl:ENSG00000138002|HPRD:09576|Vega:OTTHUMG00000128425 2 2p23.3 intraflagellar transport 172 homolog (Chlamydomonas) protein-coding IFT172 intraflagellar transport 172 homolog (Chlamydomonas) O intraflagellar transport protein 172 homolog|selective LIM binding factor homolog|wimple homolog 20121230 -9606 26164 GTPBP5 RP5-1005F21.5 ObgH1|dJ1005F21.2 HGNC:16239|MIM:610919|Ensembl:ENSG00000101181|HPRD:13617|Vega:OTTHUMG00000032897 20 20q13.33 GTP binding protein 5 (putative) protein-coding GTPBP5 GTP binding protein 5 (putative) O GTP-binding protein 5|GTP-binding protein 5 (putative)|protein obg homolog 1 20121230 -9606 26165 SPATA31A7 - C9orf36A|FAM75A7 HGNC:32007|Ensembl:ENSG00000234734|HPRD:12954|Vega:OTTHUMG00000013196 9 9q12 SPATA31 subfamily A, member 7 protein-coding SPATA31A7 SPATA31 subfamily A, member 7 O family with sequence similarity 75, member A7|protein FAM75A7 20121216 -9606 26166 RGS22 - PRTD-NY2 HGNC:24499|Ensembl:ENSG00000132554|HPRD:13155|Vega:OTTHUMG00000164802 8 8q22.2 regulator of G-protein signaling 22 protein-coding RGS22 regulator of G-protein signaling 22 O - 20121230 -9606 26167 PCDHB5 - PCDH-BETA5 HGNC:8690|MIM:606331|Ensembl:ENSG00000113209|HPRD:07560|Vega:OTTHUMG00000129616 5 5q31 protocadherin beta 5 protein-coding PCDHB5 protocadherin beta 5 O PCDH-beta-5|protocadherin beta-5 20121230 -9606 26168 SENP3 - SMT3IP1|SSP3|Ulp1 HGNC:17862|MIM:612844|Ensembl:ENSG00000161956|HPRD:08339|Vega:OTTHUMG00000178333 17 17p13 SUMO1/sentrin/SMT3 specific peptidase 3 protein-coding SENP3 SUMO1/sentrin/SMT3 specific peptidase 3 O SUMO-1-specific protease 3|sentrin-specific protease 3|sentrin/SUMO-specific protease 3 20121230 -9606 26173 INTS1 UNQ1821/PRO3434 INT1|NET28 HGNC:24555|MIM:611345|Ensembl:ENSG00000164880|Vega:OTTHUMG00000151449 7 7p22.3 integrator complex subunit 1 protein-coding INTS1 integrator complex subunit 1 O - 20121230 -9606 26175 TMEM251 - C14orf109 HGNC:20218|Ensembl:ENSG00000153485|Vega:OTTHUMG00000171265 14 14q32.12 transmembrane protein 251 protein-coding TMEM251 transmembrane protein 251 O UPF0694 transmembrane protein C14orf109 20121230 -9606 26176 FEOM3 - CFEOM3|CFEOM3A HGNC:3654 16 16q24.2-q24.3 fibrosis of extraocular muscles, congenital, 3 unknown FEOM3 fibrosis of extraocular muscles, congenital, 3 O - 20120622 -9606 26184 OR1F2P - OLFMF2|OR16-3|OR1F11|OR1F2|OR1F3P|hg91 HGNC:8196 16 16p13.3 olfactory receptor, family 1, subfamily F, member 2 pseudo OR1F2P olfactory receptor, family 1, subfamily F, member 2 O - 20121230 -9606 26188 OR1C1 - HSTPCR27|OR1-42|OR1.5.10|ORL211|TPCR27 HGNC:8182|Ensembl:ENSG00000221888|HPRD:14914|Vega:OTTHUMG00000040198 1 1q44 olfactory receptor, family 1, subfamily C, member 1 protein-coding OR1C1 olfactory receptor, family 1, subfamily C, member 1 O olfactory receptor 1C1|olfactory receptor OR1-42|olfactory receptor TPCR27 20121230 -9606 26189 OR1A2 - OR17-6 HGNC:8180|Ensembl:ENSG00000172150|HPRD:17682|Vega:OTTHUMG00000090638 17 17p13.3 olfactory receptor, family 1, subfamily A, member 2 protein-coding OR1A2 olfactory receptor, family 1, subfamily A, member 2 O olfactory receptor 17-6|olfactory receptor 1A2|olfactory receptor OR17-10 20121230 -9606 26190 FBXW2 RP11-88M19.2 FBW2|Fwd2|Md6 HGNC:13608|MIM:609071|Ensembl:ENSG00000119402|HPRD:09950|Vega:OTTHUMG00000020576 9 9q34 F-box and WD repeat domain containing 2 protein-coding FBXW2 F-box and WD repeat domain containing 2 O F-box and WD-40 domain protein 2|F-box and WD-40 domain-containing protein 2|F-box/WD repeat-containing protein 2 20121230 -9606 26191 PTPN22 - LYP|LYP1|LYP2|PEP|PTPN8 HGNC:9652|MIM:600716|Ensembl:ENSG00000134242|HPRD:06100|Vega:OTTHUMG00000011936 1 1p13.2 protein tyrosine phosphatase, non-receptor type 22 (lymphoid) protein-coding PTPN22 protein tyrosine phosphatase, non-receptor type 22 (lymphoid) O PEST-domain phosphatase|hematopoietic cell protein-tyrosine phosphatase 70Z-PEP|lymphoid phosphatase|lymphoid-specific protein tyrosine phosphatase|protein tyrosine phosphatase, non-receptor type 8|tyrosine-protein phosphatase non-receptor type 22 20121230 -9606 26205 GMEB2 RP4-663D7.1 P79PIF|PIF79 HGNC:4371|MIM:607451|Ensembl:ENSG00000101216|HPRD:16245|Vega:OTTHUMG00000032988 20 20q13.33 glucocorticoid modulatory element binding protein 2 protein-coding GMEB2 glucocorticoid modulatory element binding protein 2 O DNA-binding protein p79PIF|GMEB-2|PIF p79|glucocorticoid modulatory element-binding protein 2|parvovirus initiation factor p79|parvovirus initiation factor, p79 20121230 -9606 26206 SPAG8 - BS-84|HSD-1|SMP1|SPAG3|hSMP-1 HGNC:14105|MIM:605731|Ensembl:ENSG00000137098|HPRD:12039|Vega:OTTHUMG00000019875 9 9p13.3 sperm associated antigen 8 protein-coding SPAG8 sperm associated antigen 8 O sperm membrane protein 1|sperm membrane protein BS-84|sperm-associated antigen 8 20121230 -9606 26207 PITPNC1 - M-RDGB-beta|MRDGBbeta|RDGB-BETA|RDGBB|RDGBB1 HGNC:21045|MIM:605134|Ensembl:ENSG00000154217|HPRD:05504|Vega:OTTHUMG00000179602 17 17q24.2 phosphatidylinositol transfer protein, cytoplasmic 1 protein-coding PITPNC1 phosphatidylinositol transfer protein, cytoplasmic 1 O M-rdgB beta|cytoplasmic phosphatidylinositol transfer protein 1|mammalian rdgB homolog beta|retinal degeneration B beta 1|retinal degeneration B homolog beta 20121230 -9606 26211 OR2F1 tcag7.746 OLF3|OR14-60|OR2F3|OR2F3P|OR2F4|OR2F5|OR7-139|OR7-140 HGNC:8246|MIM:608497|Ensembl:ENSG00000213215|HPRD:16340|Vega:OTTHUMG00000157771 7 7q35 olfactory receptor, family 2, subfamily F, member 1 protein-coding OR2F1 olfactory receptor, family 2, subfamily F, member 1 O olfactory receptor 2F1|olfactory receptor 2F3|olfactory receptor 2F4|olfactory receptor 2F5|olfactory receptor OR7-7|olfactory receptor, family 2, subfamily F, member 3|olfactory receptor, family 2, subfamily F, member 4|olfactory receptor, family 2, subfamily F, member 5|olfactory receptor-like protein OLF3 20121230 -9606 26212 OR2B6 - OR2B1|OR2B1P|OR2B5|OR2B6P|OR5-40|OR5-41|OR6-31|dJ408B20.2 HGNC:8241|Ensembl:ENSG00000124657|HPRD:17696|Vega:OTTHUMG00000014497 6 6p21.3 olfactory receptor, family 2, subfamily B, member 6 protein-coding OR2B6 olfactory receptor, family 2, subfamily B, member 6 O hs6M1-32|olfactory receptor 2B1|olfactory receptor 2B5|olfactory receptor 2B6|olfactory receptor 5-40|olfactory receptor 6-31|olfactory receptor OR6-4|olfactory receptor, family 2, subfamily B, member 1 pseudogene|olfactory receptor, family 2, subfamily B, member 5|olfactory receptor, family 2, subfamily B, member 6 pseudogene 20121230 -9606 26219 OR1J4 RP11-542K23.5 HSHTPCRX01|HTPCRX01|OR9-21 HGNC:8211|Ensembl:ENSG00000239590|HPRD:14918|Vega:OTTHUMG00000020606 9 9q34.11 olfactory receptor, family 1, subfamily J, member 4 protein-coding OR1J4 olfactory receptor, family 1, subfamily J, member 4 O olfactory receptor 1J4|olfactory receptor OR9-21 20121230 -9606 26220 DGCR5 - LINC00037|NCRNA00037 HGNC:16757 22 22q11 DiGeorge syndrome critical region gene 5 (non-protein coding) miscRNA DGCR5 DiGeorge syndrome critical region gene 5 (non-protein coding) O - 20121230 -9606 26222 DGCR10 - DGS-B HGNC:17864 22 22q11 DiGeorge syndrome critical region gene 10 (non-protein coding) miscRNA DGCR10 DiGeorge syndrome critical region gene 10 (non-protein coding) O - 20121230 -9606 26223 FBXL21 - FBL3B|FBXL3B|FBXL3P|Fbl21 HGNC:13600|MIM:609087|HPRD:16431 5 5q31 F-box and leucine-rich repeat protein 21 (gene/pseudogene) protein-coding FBXL21 F-box and leucine-rich repeat protein 21 (gene/pseudogene) O F-box and leucine-rich repeat protein 3 pseudogene|F-box and leucine-rich repeat protein 3B|F-box protein Fbl3b|F-box/LRR-repeat protein 21|F-box/LRR-repeat protein 3B 20121230 -9606 26224 FBXL3 - FBL3|FBL3A|FBXL3A HGNC:13599|MIM:605653|Ensembl:ENSG00000005812|HPRD:05737|Vega:OTTHUMG00000017099 13 13q22 F-box and leucine-rich repeat protein 3 protein-coding FBXL3 F-box and leucine-rich repeat protein 3 O F-box and leucine-rich repeat protein 3A|F-box protein Fbl3a|F-box/LRR-repeat protein 3|F-box/LRR-repeat protein 3A 20121230 -9606 26225 ARL5A - ARFLP5|ARL5 HGNC:696|MIM:608960|Ensembl:ENSG00000162980|HPRD:12343|Vega:OTTHUMG00000131887 2 2q23.3 ADP-ribosylation factor-like 5A protein-coding ARL5A ADP-ribosylation factor-like 5A O ADP-ribosylation factor-like 5|ADP-ribosylation factor-like protein 5|ADP-ribosylation factor-like protein 5A 20121230 -9606 26226 FBXW4P1 - FBW3|FBXW3|SHFM3P1 HGNC:13609 22 22q11 F-box and WD repeat domain containing 4 pseudogene 1 pseudo FBXW4P1 F-box and WD repeat domain containing 4 pseudogene 1 O - 20121230 -9606 26227 PHGDH RP4-683H9.1 3-PGDH|3PGDH|PDG|PGAD|PGD|PGDH|SERA HGNC:8923|MIM:606879|Ensembl:ENSG00000092621|HPRD:06047|Vega:OTTHUMG00000012100 1 1p12 phosphoglycerate dehydrogenase protein-coding PHGDH phosphoglycerate dehydrogenase O 3-phosphoglycerate dehydrogenase|D-3-phosphoglycerate dehydrogenase 20121230 -9606 26228 STAP1 - BRDG1|STAP-1 HGNC:24133|MIM:604298|Ensembl:ENSG00000035720|HPRD:16053|Vega:OTTHUMG00000129304 4 4q13.2 signal transducing adaptor family member 1 protein-coding STAP1 signal transducing adaptor family member 1 O BCR downstream signaling 1|BCR downstream-signaling protein 1|docking protein BRDG1|signal-transducing adaptor protein 1|signal-transducing adaptor protein-1|stem cell adaptor protein 1 20121230 -9606 26229 B3GAT3 - GLCATI HGNC:923|MIM:606374|Ensembl:ENSG00000149541|HPRD:07564|Vega:OTTHUMG00000167685 11 11q12.3 beta-1,3-glucuronyltransferase 3 (glucuronosyltransferase I) protein-coding B3GAT3 beta-1,3-glucuronyltransferase 3 (glucuronosyltransferase I) O Sqv-8-like protein|UDP-GlcUA:Gal beta-1,3-Gal-R glucuronyltransferase|galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase 3|glcUAT-I 20121230 -9606 26230 TIAM2 RP3-414L4.2 STEF|TIAM-2 HGNC:11806|MIM:604709|Ensembl:ENSG00000146426|HPRD:05273|Vega:OTTHUMG00000015880 6 6q25.2 T-cell lymphoma invasion and metastasis 2 protein-coding TIAM2 T-cell lymphoma invasion and metastasis 2 O SIF and TIAM1-like exchange factor|T-lymphoma invasion and metastasis-inducing protein 2 20121230 -9606 26231 LRRC29 - FBL9|FBXL9 HGNC:13605|Ensembl:ENSG00000125122|HPRD:14317|Vega:OTTHUMG00000154403 16 16q22.1 leucine rich repeat containing 29 protein-coding LRRC29 leucine rich repeat containing 29 O F-box and leucine-rich repeat protein 9|F-box protein FBL9|F-box/LRR-repeat protein 9|leucine-rich repeat-containing protein 29 20121230 -9606 26232 FBXO2 - FBG1|FBX2|Fbs1|NFB42|OCP1 HGNC:13581|MIM:607112|Ensembl:ENSG00000116661|HPRD:06171|Vega:OTTHUMG00000002072 1 1p36.22 F-box protein 2 protein-coding FBXO2 F-box protein 2 O F-box gene 1|F-box only protein 2|organ of Corti protein 1 20121230 -9606 26233 FBXL6 - FBL6|FBL6A|PP14630 HGNC:13603|MIM:609076|Ensembl:ENSG00000182325|HPRD:16429|Vega:OTTHUMG00000165169 8 8q24.3 F-box and leucine-rich repeat protein 6 protein-coding FBXL6 F-box and leucine-rich repeat protein 6 O F-box protein Fbl6|F-box/LRR-repeat protein 6 20121230 -9606 26234 FBXL5 - FBL4|FBL5|FLR1 HGNC:13602|MIM:605655|Ensembl:ENSG00000118564|HPRD:05739|Vega:OTTHUMG00000097097 4 4p15.32 F-box and leucine-rich repeat protein 5 protein-coding FBXL5 F-box and leucine-rich repeat protein 5 O F-box protein FBL4/FBL5|F-box protein FBL5|F-box/LRR-repeat protein 5|p45SKP2-like protein 20121230 -9606 26235 FBXL4 - FBL4|FBL5 HGNC:13601|MIM:605654|Ensembl:ENSG00000112234|HPRD:05738|Vega:OTTHUMG00000015259 6 6q16.1-q16.3 F-box and leucine-rich repeat protein 4 protein-coding FBXL4 F-box and leucine-rich repeat protein 4 O F-box protein FBL4|F-box protein FBL4/FBL5|F-box/LRR-repeat protein 4 20121230 -9606 26238 C6orf123 - HGC6.2|RP3-431P23.4|dJ431P23.4 HGNC:21235|HPRD:12846 6 6q27 chromosome 6 open reading frame 123 miscRNA C6orf123 chromosome 6 open reading frame 123 O - 20121230 -9606 26239 LCE2B - LEP10|SPRL1B|XP5 HGNC:16610|MIM:612610|Ensembl:ENSG00000159455|HPRD:17260|Vega:OTTHUMG00000012404 1 1q21 late cornified envelope 2B protein-coding LCE2B late cornified envelope 2B O late cornified envelope protein 2B|late envelope protein 10|skin-specific protein Xp5|small proline rich-like (epidermal differentiation complex) 1B|small proline-rich-like epidermal differentiation complex protein 1B 20121230 -9606 26240 FAM50B - D6S2654E|X5L HGNC:18789|MIM:614686|Ensembl:ENSG00000145945|HPRD:16883|Vega:OTTHUMG00000014147 6 6p25.2 family with sequence similarity 50, member B protein-coding FAM50B family with sequence similarity 50, member B O protein FAM50B 20121230 -9606 26242 OR4C1P - HSHTPCRX11|HTPCRX11|OR4C1 HGNC:8292 11 11q11 olfactory receptor, family 4, subfamily C, member 1 pseudogene pseudo OR4C1P olfactory receptor, family 4, subfamily C, member 1 pseudogene O - 20121230 -9606 26245 OR2M4 - HSHTPCRX18|HTPCRX18|OR1-55|OST710|TPCR100 HGNC:8270|Ensembl:ENSG00000171180|HPRD:14946|Vega:OTTHUMG00000040456 1 1q44 olfactory receptor, family 2, subfamily M, member 4 protein-coding OR2M4 olfactory receptor, family 2, subfamily M, member 4 O novel 7 transmembrane receptor (rhodopsin family) protein|olfactory receptor 2M4|olfactory receptor OR1-55|olfactory receptor TPCR100 20121230 -9606 26246 OR2L2 - HSHTPCRH07|HTPCRH07|OR1-48|OR2L12|OR2L4P HGNC:8266|Ensembl:ENSG00000203663|HPRD:14942|Vega:OTTHUMG00000040214 1 1q44 olfactory receptor, family 2, subfamily L, member 2 protein-coding OR2L2 olfactory receptor, family 2, subfamily L, member 2 O olfactory receptor 2L12|olfactory receptor 2L2|olfactory receptor 2L4|olfactory receptor OR1-48 pseudogene|olfactory receptor, family 2, subfamily L, member 12|olfactory receptor, family 2, subfamily L, member 4 pseudogene 20121230 -9606 26247 OR2L1P - HSHTPCRX02|HTPCRX02|OR2L1|OR2L7P HGNC:8265 1 1q44 olfactory receptor, family 2, subfamily L, member 1 pseudogene pseudo OR2L1P olfactory receptor, family 2, subfamily L, member 1 pseudogene O - 20121230 -9606 26248 OR2K2 - HSHTPCRH06|HTPCRH06|OR2AN1P|OR2AR1P HGNC:8264|Ensembl:ENSG00000171133|HPRD:17701|Vega:OTTHUMG00000020488 9 9q31.3 olfactory receptor, family 2, subfamily K, member 2 protein-coding OR2K2 olfactory receptor, family 2, subfamily K, member 2 O olfactory receptor 2K2|olfactory receptor OR9-17|olfactory receptor, family 2, subfamily AN, member 1 pseudogene|olfactory receptor, family 2, subfamily AR, member 1 pseudogene 20121230 -9606 26249 KLHL3 - PHA2D HGNC:6354|MIM:605775|Ensembl:ENSG00000146021|HPRD:09011|Vega:OTTHUMG00000129155 5 5q31 kelch-like 3 (Drosophila) protein-coding KLHL3 kelch-like 3 (Drosophila) O kelch-like protein 3 20121230 -9606 26251 KCNG2 - KCNF2|KV6.2 HGNC:6249|MIM:605696|Ensembl:ENSG00000178342|HPRD:12036|Vega:OTTHUMG00000044541 18 18q23 potassium voltage-gated channel, subfamily G, member 2 protein-coding KCNG2 potassium voltage-gated channel, subfamily G, member 2 O cardiac potassium channel subunit|potassium voltage-gated channel subfamily G member 2|voltage-gated potassium channel subunit Kv6.2 20121230 -9606 26253 CLEC4E UNQ218/PRO244 CLECSF9|MINCLE HGNC:14555|MIM:609962|Ensembl:ENSG00000166523|HPRD:13075|Vega:OTTHUMG00000168675 12 12p13.31 C-type lectin domain family 4, member E protein-coding CLEC4E C-type lectin domain family 4, member E O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 9|C-type lectin domain family 4 member E|C-type lectin superfamily member 9|macrophage-inducible C-type lectin 20121230 -9606 26254 OPTC RP11-91B9.2 OPT HGNC:8158|MIM:605127|Ensembl:ENSG00000188770|HPRD:05498|Vega:OTTHUMG00000036100 1 1q32.1 opticin protein-coding OPTC opticin O oculoglycan 20121230 -9606 26255 PTTG3P - PTTG3|rcPTTG1 HGNC:13422 8 8q13.1 pituitary tumor-transforming 3, pseudogene pseudo PTTG3P pituitary tumor-transforming 3, pseudogene O - 20121230 -9606 26256 CABYR - CABYRa|CABYRc|CABYRc/d|CABYRe|CBP86|CT88|FSP-2|FSP2 HGNC:15569|MIM:612135|Ensembl:ENSG00000154040|HPRD:10806|Vega:OTTHUMG00000037365 18 18q11.2 calcium binding tyrosine-(Y)-phosphorylation regulated protein-coding CABYR calcium binding tyrosine-(Y)-phosphorylation regulated O calcium binding tyrosine-(Y)-phosphorylation regulated (fibrousheathin 2)|calcium-binding protein 86|calcium-binding tyrosine phosphorylation-regulated protein|calcium-binding tyrosine-(Y)-phosphorylation regulated (fibrousheathin 2)|cancer/testis antigen 88|fibrousheathin 2|fibrousheathin II|fibrousheathin-2|testis-specific calcium-binding protein CBP86 20121230 -9606 26257 NKX2-8 - NKX2.8|NKX2H|Nkx2-9 HGNC:16364|MIM:603245|Ensembl:ENSG00000136327|HPRD:04456|Vega:OTTHUMG00000028772 14 14q13.3 NK2 homeobox 8 protein-coding NKX2-8 NK2 homeobox 8 O NK-2 homolog 8|NK-2 homolog H|NK2 transcription factor related, locus 8|homeobox protein NK-2 homolog H|homeobox protein Nkx-2.8 20121230 -9606 26258 BLOC1S6 - HPS9|PA|PALLID|PLDN HGNC:8549|MIM:604310|Ensembl:ENSG00000104164|HPRD:16055|Vega:OTTHUMG00000131477 15 15q21.1 biogenesis of lysosomal organelles complex-1, subunit 6, pallidin protein-coding BLOC1S6 biogenesis of lysosomal organelles complex-1, subunit 6, pallidin O biogenesis of lysosomal organelles complex-1, subunit 5, pallidin|pallid protein homolog|pallidin|syntaxin 13 binding protein 1|syntaxin 13-interacting protein pallid 20121230 -9606 26259 FBXW8 - FBW6|FBW8|FBX29|FBXO29|FBXW6 HGNC:13597|MIM:609073|Ensembl:ENSG00000174989|HPRD:16427|Vega:OTTHUMG00000169329 12 12q24.22 F-box and WD repeat domain containing 8 protein-coding FBXW8 F-box and WD repeat domain containing 8 O F-box and WD-40 domain protein 8|F-box and WD-40 domain-containing protein 8|F-box only protein 29|F-box/WD repeat-containing protein 8 20121230 -9606 26260 FBXO25 - FBX25 HGNC:13596|MIM:609098|Ensembl:ENSG00000147364|HPRD:16439|Vega:OTTHUMG00000090341 8 8p23.3 F-box protein 25 protein-coding FBXO25 F-box protein 25 O F-box only protein 25|F-box protein Fbx25 20121230 -9606 26261 FBXO24 - FBX24 HGNC:13595|MIM:609097|Ensembl:ENSG00000106336|HPRD:16438|Vega:OTTHUMG00000159543 7 7q22 F-box protein 24 protein-coding FBXO24 F-box protein 24 O F-box only protein 24|F-box protein Fbx24 20121230 -9606 26262 TSPAN17 - FBX23|FBXO23|TM4SF17 HGNC:13594|Ensembl:ENSG00000048140|HPRD:18198|Vega:OTTHUMG00000163230 5 5q35.3 tetraspanin 17 protein-coding TSPAN17 tetraspanin 17 O F-box only protein 23, transmembrane 4 superfamily member 17|tetraspan protein SB134|tetraspanin-17|tspan-17 20121230 -9606 26263 FBXO22 - FBX22|FISTC1 HGNC:13593|MIM:609096|Ensembl:ENSG00000167196|HPRD:16437|Vega:OTTHUMG00000142841 15 15q24.2 F-box protein 22 protein-coding FBXO22 F-box protein 22 O F-box only protein 22|F-box protein FBX22p44|FIST domain containing 1 20121230 -9606 26266 SLC13A4 - SUT-1|SUT1 HGNC:15827|MIM:604309|Ensembl:ENSG00000164707|HPRD:10372|Vega:OTTHUMG00000155539 7 7q33 solute carrier family 13 (sodium/sulfate symporters), member 4 protein-coding SLC13A4 solute carrier family 13 (sodium/sulfate symporters), member 4 O Na(+)/sulfate cotransporter SUT-1|naS2|solute carrier family 13 (sodium/sulphate symporters), member 4|solute carrier family 13 member 4|sulphate transporter 1 20121230 -9606 26267 FBXO10 hCG_2011110 FBX10|PRMT11 HGNC:13589|MIM:609092|Ensembl:ENSG00000147912|Vega:OTTHUMG00000019926 9 9p13.2 F-box protein 10 protein-coding FBXO10 F-box protein 10 O F-box only protein 10|F-box protein Fbx10 20121230 -9606 26268 FBXO9 - FBX9|NY-REN-57|VCIA1|dJ341E18.2 HGNC:13588|MIM:609091|Ensembl:ENSG00000112146|HPRD:16434|Vega:OTTHUMG00000014869 6 6p12.3-p11.2 F-box protein 9 protein-coding FBXO9 F-box protein 9 O F-box only protein 9|F-box protein Fbx9|cross-immune reaction antigen 1|renal carcinoma antigen NY-REN-57 20121230 -9606 26269 FBXO8 DC10 FBS|FBX8 HGNC:13587|MIM:605649|Ensembl:ENSG00000164117|HPRD:07293|Vega:OTTHUMG00000160746 4 4q34.1 F-box protein 8 protein-coding FBXO8 F-box protein 8 O F-box only protein 8|F-box protein Fbx8|F-box/SEC7 protein FBS 20121230 -9606 26270 FBXO6 RP3-330O12.3 FBG2|FBS2|FBX6|Fbx6b HGNC:13585|MIM:605647|Ensembl:ENSG00000116663|HPRD:07291|Vega:OTTHUMG00000002229 1 1p36.22 F-box protein 6 protein-coding FBXO6 F-box protein 6 O F-box only protein 6|F-box protein FBG2|F-box protein Fbx6|F-box protein that recognizes sugar chains 2|F-box/G-domain protein 2 20121230 -9606 26271 FBXO5 RP1-101K10.5 EMI1|FBX5|Fbxo31 HGNC:13584|MIM:606013|Ensembl:ENSG00000112029|HPRD:09348|Vega:OTTHUMG00000015854 6 6q25.2 F-box protein 5 protein-coding FBXO5 F-box protein 5 O F-box only protein 5|F-box protein Fbx5|early mitotic inhibitor 1 20121230 -9606 26272 FBXO4 - FBX4 HGNC:13583|MIM:609090|Ensembl:ENSG00000151876|HPRD:09949|Vega:OTTHUMG00000094799 5 5p12 F-box protein 4 protein-coding FBXO4 F-box protein 4 O F-box only protein 4|F-box protein Fbx4 20121230 -9606 26273 FBXO3 - FBA|FBX3 HGNC:13582|MIM:609089|Ensembl:ENSG00000110429|HPRD:16433|Vega:OTTHUMG00000166244 11 11p13 F-box protein 3 protein-coding FBXO3 F-box protein 3 O F-box only protein 3|F-box protein FBX3 20121230 -9606 26275 HIBCH - HIBYLCOAH HGNC:4908|MIM:610690|Ensembl:ENSG00000198130|HPRD:11023|Vega:OTTHUMG00000132673 2 2q32.2 3-hydroxyisobutyryl-CoA hydrolase protein-coding HIBCH 3-hydroxyisobutyryl-CoA hydrolase O 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial|3-hydroxyisobutyryl-Coenzyme A hydrolase|HIB-CoA hydrolase|HIBYL-CoA-H 20121230 -9606 26276 VPS33B - - HGNC:12712|MIM:608552|Ensembl:ENSG00000184056|HPRD:10541|Vega:OTTHUMG00000149835 15 15q26.1 vacuolar protein sorting 33 homolog B (yeast) protein-coding VPS33B vacuolar protein sorting 33 homolog B (yeast) O hVPS33B|vacuolar protein sorting 33B|vacuolar protein sorting-associated protein 33B 20121230 -9606 26277 TINF2 - DKCA3|TIN2 HGNC:11824|MIM:604319|Ensembl:ENSG00000092330|HPRD:16056|Vega:OTTHUMG00000171849 14 14q12 TERF1 (TRF1)-interacting nuclear factor 2 protein-coding TINF2 TERF1 (TRF1)-interacting nuclear factor 2 O TERF1-interacting nuclear factor 2|TRF1-interacting nuclear protein 2 20121230 -9606 26278 SACS - ARSACS|DNAJC29 HGNC:10519|MIM:604490|Ensembl:ENSG00000151835|HPRD:05135|Vega:OTTHUMG00000016562 13 13q12 spastic ataxia of Charlevoix-Saguenay (sacsin) protein-coding SACS spastic ataxia of Charlevoix-Saguenay (sacsin) O dnaJ homolog subfamily C member 29|sacsin 20121230 -9606 26279 PLA2G2D UNQ768 PLA2IID|SPLASH|sPLA2-IID|sPLA2S HGNC:9033|MIM:605630|Ensembl:ENSG00000117215|HPRD:07546|Vega:OTTHUMG00000002701 1 1p36.12 phospholipase A2, group IID protein-coding PLA2G2D phospholipase A2, group IID O GIID sPLA2|group IID secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase 2D|secretory phospholipase A2s|secretory-type PLA, stroma-associated homolog 20121230 -9606 26280 IL1RAPL2 - IL-1R9|IL1R9|IL1RAPL-2|TIGIRR-1 HGNC:5997|MIM:300277|Ensembl:ENSG00000189108|HPRD:02231|Vega:OTTHUMG00000022141 X Xq22 interleukin 1 receptor accessory protein-like 2 protein-coding IL1RAPL2 interleukin 1 receptor accessory protein-like 2 O IL-1 receptor accessory protein-like 2|IL-1R-9|IL1RAPL-2-related protein|X-linked interleukin-1 receptor accessory protein-like 2|interleukin 1 receptor 9|three immunoglobulin domain-containing IL-1 receptor-related 1 20121230 -9606 26281 FGF20 - FGF-20 HGNC:3677|MIM:605558|Ensembl:ENSG00000078579|HPRD:05709|Vega:OTTHUMG00000096964 8 8p22 fibroblast growth factor 20 protein-coding FGF20 fibroblast growth factor 20 O - 20121230 -9606 26284 ERAL1 - ERA|ERAL1A|H-ERA|HERA-A|HERA-B HGNC:3424|MIM:607435|Ensembl:ENSG00000132591|HPRD:08466|Vega:OTTHUMG00000132675 17 17q11.2 Era G-protein-like 1 (E. coli) protein-coding ERAL1 Era G-protein-like 1 (E. coli) O CEGA|ERA-W|ERA-like protein 1|GTP-binding protein era homolog|GTPase Era, mitochondrial|GTPase, human homolog of E. coli essential cell cycle protein Era|conserved ERA-like GTPase|era (E. coli G-protein homolog)-like 1|hERA 20121230 -9606 26285 CLDN17 UNQ758 - HGNC:2038|Ensembl:ENSG00000156282|HPRD:10833|Vega:OTTHUMG00000081873 21 21q22.11 claudin 17 protein-coding CLDN17 claudin 17 O claudin-17|human CLDN17 gene for claudin-17 20121230 -9606 26286 ARFGAP3 AL049757.1 ARFGAP1 HGNC:661|MIM:612439|Ensembl:ENSG00000242247|HPRD:06444|Vega:OTTHUMG00000150718 22 22q13.2 ADP-ribosylation factor GTPase activating protein 3 protein-coding ARFGAP3 ADP-ribosylation factor GTPase activating protein 3 O ADP-ribosylation factor GTPase activating protein 1|ADP-ribosylation factor GTPase-activating protein 3|ARF GAP 3 20121230 -9606 26287 ANKRD2 RP11-548K23.2 ARPP HGNC:495|MIM:610734|Ensembl:ENSG00000165887|HPRD:12460|Vega:OTTHUMG00000018860 10 10q23 ankyrin repeat domain 2 (stretch responsive muscle) protein-coding ANKRD2 ankyrin repeat domain 2 (stretch responsive muscle) O ankyrin repeat domain-containing protein 2|ankyrin-repeat protein|hArpp|skeletal muscle ankyrin repeat protein 20121230 -9606 26289 AK5 - AK6 HGNC:365|MIM:608009|Ensembl:ENSG00000154027|HPRD:10472|Vega:OTTHUMG00000009796 1 1p31 adenylate kinase 5 protein-coding AK5 adenylate kinase 5 O AK 5|ATP-AMP transphosphorylase 5|adenylate kinase 6|adenylate kinase isoenzyme 5 20121230 -9606 26290 GALNT8 - GALNAC-T8 HGNC:4130|MIM:606250|Ensembl:ENSG00000130035|HPRD:09374|Vega:OTTHUMG00000166188 12 12p13.3 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 8 (GalNAc-T8) protein-coding GALNT8 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 8 (GalNAc-T8) O GalNAc transferase 8|UDP-GalNAc: polypeptide N-acetylgalactosaminyltransferase 8|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 8|polypeptide GalNAc transferase 8|polypeptide N-acetylgalactosaminyltransferase 8|pp-GaNTase 8|probable polypeptide N-acetylgalactosaminyltransferase 8|protein-UDP acetylgalactosaminyltransferase 8 20121230 -9606 26291 FGF21 UNQ3115/PRO10196 - HGNC:3678|MIM:609436|Ensembl:ENSG00000105550|HPRD:09447 19 19q13.33 fibroblast growth factor 21 protein-coding FGF21 fibroblast growth factor 21 O FGF-21 20121230 -9606 26292 MYCBP - AMY-1 HGNC:7554|MIM:606535|Ensembl:ENSG00000214114|HPRD:08406|Vega:OTTHUMG00000000484 1 1p33-p32.2 c-myc binding protein protein-coding MYCBP c-myc binding protein O C-Myc-binding protein|associate of myc-1 20121230 -9606 26297 SERGEF - DELGEF|Gnefr HGNC:17499|MIM:606051|Ensembl:ENSG00000129158|HPRD:06926|Vega:OTTHUMG00000166420 11 11p14.3 secretion regulating guanine nucleotide exchange factor protein-coding SERGEF secretion regulating guanine nucleotide exchange factor O deafness locus associated putative guanine nucleotide exchange factor|deafness locus-associated putative guanine nucleotide exchange factor|guanine nucleotide exchange factor-related protein|secretion-regulating guanine nucleotide exchange factor 20121230 -9606 26298 EHF - ESE3|ESE3B|ESEJ HGNC:3246|MIM:605439|Ensembl:ENSG00000135373|HPRD:16105|Vega:OTTHUMG00000166454 11 11p12 ets homologous factor protein-coding EHF ets homologous factor O ESE3 transcription factor|ETS domain-containing transcription factor|ETS homologous factor|epithelium-specific Ets transcription factor 3|hEHF 20121230 -9606 26300 DYX4 - - HGNC:3111 6 6q13-q16.2 dyslexia susceptibility 4 unknown DYX4 dyslexia susceptibility 4 O - 20110215 -9606 26301 GBGT1 RP11-326L24.6 A3GALNT|FS|UNQ2513 HGNC:20460|MIM:606074|Ensembl:ENSG00000148288|HPRD:16193|Vega:OTTHUMG00000020853 9 9q34.13-q34.3 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 protein-coding GBGT1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 O Forssman glycolipid synthetase (FS)|Forssman synthetase|forssman glycolipid synthase-like protein 20121230 -9606 26307 PCDHA14 - CNR3|CNRN3|CNRS3|CRNR3|PCDH-PSI4 HGNC:2163 5 5q31 protocadherin alpha 14 pseudogene pseudo PCDHA14 protocadherin alpha 14 pseudogene O - 20121230 -9606 26322 OR4H6P - OR14-58|OR15-69|OR15-71|OR15-80|OR15-81|OR15-82|OR4-114|OR4-115|OR4-119|OR4H10|OR4H10P|OR4H11|OR4H11P|OR4H1P|OR4H2|OR4H2P|OR4H3|OR4H3P|OR4H4|OR4H4P|OR4H5|OR4H5P|OR4H6|OR4H7|OR4H7P|OR4H8|OR4H8P|OR4H9|OR4H9P|OR5-39|OR5-84 HGNC:8312 15 15q11.2 olfactory receptor, family 4, subfamily H, member 6 pseudogene pseudo OR4H6P olfactory receptor, family 4, subfamily H, member 6 pseudogene O - 20121230 -9606 26330 GAPDHS HSD35 GAPD2|GAPDH-2|GAPDS|HSD-35 HGNC:24864|MIM:609169|Ensembl:ENSG00000105679|HPRD:13566|Vega:OTTHUMG00000182298 19 19q13.12 glyceraldehyde-3-phosphate dehydrogenase, spermatogenic protein-coding GAPDHS glyceraldehyde-3-phosphate dehydrogenase, spermatogenic O glyceraldehyde-3-phosphate dehydrogenase, testis-specific|spermatogenic cell-specific glyceraldehyde 3-phosphate dehydrogenase 2|spermatogenic glyceraldehyde-3-phosphate dehydrogenase 20121230 -9606 26333 OR7A17 - BC85395_4|HTPCRX19 HGNC:8363|Ensembl:ENSG00000185385|HPRD:17781 19 19p13.12 olfactory receptor, family 7, subfamily A, member 17 protein-coding OR7A17 olfactory receptor, family 7, subfamily A, member 17 O olfactory receptor 7A17|olfactory receptor OR19-20 20121230 -9606 26335 OR7A15P - OR19-1|OR19-134|OR19-146|OR7A16P|OR7A20P|OR7A4P HGNC:8361 19 19p13.1 olfactory receptor, family 7, subfamily A, member 15 pseudogene pseudo OR7A15P olfactory receptor, family 7, subfamily A, member 15 pseudogene O - 20121230 -9606 26338 OR5L2 - HSHTPCRX16|HTPCRX16|OR11-153 HGNC:8351|Ensembl:ENSG00000205030|HPRD:15046|Vega:OTTHUMG00000166812 11 11q11 olfactory receptor, family 5, subfamily L, member 2 protein-coding OR5L2 olfactory receptor, family 5, subfamily L, member 2 O olfactory receptor 5L2|olfactory receptor OR11-153|olfactory receptor, family 5, subfamily L, member 1 20121230 -9606 26339 OR5K1 - HSHTPCRX10|HTPCRX10|OR3-8 HGNC:8349|Ensembl:ENSG00000232382|HPRD:15043|Vega:OTTHUMG00000160048 3 3q11.2 olfactory receptor, family 5, subfamily K, member 1 protein-coding OR5K1 olfactory receptor, family 5, subfamily K, member 1 O olfactory receptor 5K1|olfactory receptor OR3-8 20121230 -9606 26341 OR5H1 - HSHTPCRX14|HTPCRX14 HGNC:8346|Ensembl:ENSG00000231192|HPRD:17759|Vega:OTTHUMG00000160070 3 3q11.2 olfactory receptor, family 5, subfamily H, member 1 protein-coding OR5H1 olfactory receptor, family 5, subfamily H, member 1 O olfactory receptor 5H1 20121230 -9606 26343 OR5E1P - HSTPCR24|OR5E1|TPCR24 HGNC:8342 11 11p15.4 olfactory receptor, family 5, subfamily E, member 1 pseudogene pseudo OR5E1P olfactory receptor, family 5, subfamily E, member 1 pseudogene O - 20121230 -9606 26353 HSPB8 PP1629 CMT2L|DHMN2|E2IG1|H11|HMN2|HMN2A|HSP22 HGNC:30171|MIM:608014|Ensembl:ENSG00000152137|HPRD:06420|Vega:OTTHUMG00000168932 12 12q24.23 heat shock 22kDa protein 8 protein-coding HSPB8 heat shock 22kDa protein 8 O E2-induced gene 1 protein|alpha-crystallin C chain|heat shock 27kDa protein 8|heat shock protein beta-8|protein kinase H11|small stress protein-like protein HSP22 20121230 -9606 26354 GNL3 - C77032|E2IG3|NNP47|NS HGNC:29931|MIM:608011|Ensembl:ENSG00000163938|HPRD:06419|Vega:OTTHUMG00000158752 3 3p21.1 guanine nucleotide binding protein-like 3 (nucleolar) protein-coding GNL3 guanine nucleotide binding protein-like 3 (nucleolar) O E2-induced gene 3 protein|estradiol-induced nucleotide binding protein|guanine nucleotide-binding protein-like 3|novel nucleolar protein 47|nucleolar GTP-binding protein 3|nucleostemin 20121230 -9606 26355 FAM162A DC16 C3orf28|E2IG5|HGTD-P HGNC:17865|MIM:608017|Ensembl:ENSG00000114023|HPRD:06422|Vega:OTTHUMG00000159494 3 3q21.1 family with sequence similarity 162, member A protein-coding FAM162A family with sequence similarity 162, member A O E2-induced gene 5 protein|HIF-1 alpha-responsive proapoptotic molecule|growth and transformation-dependent protein|protein FAM162A 20121230 -9606 26468 LHX6 RP11-498E2.6 LHX6.1 HGNC:21735|MIM:608215|Ensembl:ENSG00000106852|HPRD:10498|Vega:OTTHUMG00000020601 9 9q33.2 LIM homeobox 6 protein-coding LHX6 LIM homeobox 6 O LIM homeodomain protein 6.1|LIM/homeobox protein Lhx6|LIM/homeobox protein Lhx6.1 20121230 -9606 26469 PTPN18 - BDP1|PTP-HSCF HGNC:9649|MIM:606587|Ensembl:ENSG00000072135|HPRD:05961|Vega:OTTHUMG00000131630 2 2q21.1 protein tyrosine phosphatase, non-receptor type 18 (brain-derived) protein-coding PTPN18 protein tyrosine phosphatase, non-receptor type 18 (brain-derived) O brain-derived phosphatase|tyrosine-protein phosphatase non-receptor type 18 20121230 -9606 26470 SEZ6L2 UNQ1903/PRO4349 PSK-1 HGNC:30844|Ensembl:ENSG00000174938|HPRD:06686|Vega:OTTHUMG00000132112 16 16p11.2 seizure related 6 homolog (mouse)-like 2 protein-coding SEZ6L2 seizure related 6 homolog (mouse)-like 2 O seizure 6-like protein 2|type I transmembrane receptor (seizure-related protein) 20121230 -9606 26471 NUPR1 - COM1|P8 HGNC:29990|MIM:614812|Ensembl:ENSG00000176046|HPRD:17814|Vega:OTTHUMG00000131764 16 16p11.2 nuclear protein, transcriptional regulator, 1 protein-coding NUPR1 nuclear protein, transcriptional regulator, 1 O candidate of metastasis 1|nuclear protein 1|protein p8 20121230 -9606 26472 PPP1R14B - PHI-1|PLCB3N|PNG|SOM172 HGNC:9057|MIM:601140|Ensembl:ENSG00000173457|HPRD:18513|Vega:OTTHUMG00000167846 11 11q13 protein phosphatase 1, regulatory (inhibitor) subunit 14B protein-coding PPP1R14B protein phosphatase 1, regulatory (inhibitor) subunit 14B O phospholipase C beta-3 neighboring gene protein|phospholipase C-beta-3 neighbouring gene protein|protein phosphatase 1 regulatory subunit 14B 20121230 -9606 26473 OR7E16P - OR19-133|OR19-9|OR7E17P|OR7E60P HGNC:8387 19 19p13.2 olfactory receptor, family 7, subfamily E, member 16 pseudogene pseudo OR7E16P olfactory receptor, family 7, subfamily E, member 16 pseudogene O - 20121230 -9606 26475 OR7E43P - OR4-116|OR7E124P|OST712 HGNC:8417 4 4p16.3 olfactory receptor, family 7, subfamily E, member 43 pseudogene pseudo OR7E43P olfactory receptor, family 7, subfamily E, member 43 pseudogene O - 20121230 -9606 26476 OR10J1 - HGMP07J|HSHGMP07J HGNC:8175|Ensembl:ENSG00000196184|HPRD:17671|Vega:OTTHUMG00000022737 1 1q23.2 olfactory receptor, family 10, subfamily J, member 1 protein-coding OR10J1 olfactory receptor, family 10, subfamily J, member 1 O olfactory receptor 10J1|olfactory receptor OR1-26|olfactory receptor-like protein HGMP07J 20121230 -9606 26478 OR7E53P - OR3-142|OR3-143|OR7E132P|OR7E78|OR7E78P HGNC:8428 3 3q21.2 olfactory receptor, family 7, subfamily E, member 53 pseudogene pseudo OR7E53P olfactory receptor, family 7, subfamily E, member 53 pseudogene O - 20121230 -9606 26479 OR7E62P - OR2-4|OR2-52|OR2-53|OR2-75|OR7E62|OR7E63|OR7E63P|OR7E64|OR7E64P|OR7E82P HGNC:8438 2 2p13.3 olfactory receptor, family 7, subfamily E, member 62 pseudogene pseudo OR7E62P olfactory receptor, family 7, subfamily E, member 62 pseudogene O - 20121230 -9606 26492 OR8G2 - HSTPCR120|OR8G2P|OR8G4|ORL206|ORL486|TPCR120 HGNC:8485|HPRD:17789 11 11q24.2 olfactory receptor, family 8, subfamily G, member 2 protein-coding OR8G2 olfactory receptor, family 8, subfamily G, member 2 O olfactory receptor 8G2|olfactory receptor 8G4|olfactory receptor OR11-292|olfactory receptor OR11-297|olfactory receptor TPCR120|olfactory receptor, family 8, subfamily G, member 2 pseudogene|olfactory receptor, family 8, subfamily G, member 4|seven transmembrane helix receptor 20121230 -9606 26493 OR8B8 - TPCR85 HGNC:8477|Ensembl:ENSG00000197125|Vega:OTTHUMG00000165917 11 11q24.2 olfactory receptor, family 8, subfamily B, member 8 protein-coding OR8B8 olfactory receptor, family 8, subfamily B, member 8 O olfactory receptor 8B8|olfactory receptor OR11-316|olfactory receptor TPCR85|olfactory-like receptor JCG8 20121230 -9606 26494 OR8G1 - HSTPCR25|OR8G1P|TPCR25 HGNC:8484|HPRD:15082 11 11q24.2 olfactory receptor, family 8, subfamily G, member 1 protein-coding OR8G1 olfactory receptor, family 8, subfamily G, member 1 O olfactory receptor 8G1|olfactory receptor OR11-281|olfactory receptor TPCR25|olfactory receptor, family 8, subfamily G, member 1 pseudogene 20121230 -9606 26495 OR9A1P - HSHTPCRX06|HTPCRX06|OR9A1|OR9A5P HGNC:8486 7 7q34 olfactory receptor, family 9, subfamily A, member 1 pseudogene pseudo OR9A1P olfactory receptor, family 9, subfamily A, member 1 pseudogene O - 20121230 -9606 26496 OR10A3 - HSHTPCRX12|HTPCRX12 HGNC:8162|Ensembl:ENSG00000170683|HPRD:14881|Vega:OTTHUMG00000165672 11 11p15.4 olfactory receptor, family 10, subfamily A, member 3 protein-coding OR10A3 olfactory receptor, family 10, subfamily A, member 3 O olfactory receptor 10A3|olfactory receptor OR11-97 20121230 -9606 26497 OR10D3 - HTPCRX09|OR10D3P HGNC:8168 11 11q24.2 olfactory receptor, family 10, subfamily D, member 3 (non-functional) pseudo OR10D3 olfactory receptor, family 10, subfamily D, member 3 (non-functional) O - 20121230 -9606 26499 PLEK2 - - HGNC:19238|MIM:608007|Ensembl:ENSG00000100558|HPRD:12151|Vega:OTTHUMG00000171247 14 14q23.3 pleckstrin 2 protein-coding PLEK2 pleckstrin 2 O pleckstrin 2 homolog|pleckstrin-2 20121230 -9606 26502 NARF - IOP2 HGNC:29916|MIM:605349|Ensembl:ENSG00000141562|HPRD:05637|Vega:OTTHUMG00000178844 17 17q25.3 nuclear prelamin A recognition factor protein-coding NARF nuclear prelamin A recognition factor O iron-only hydrogenase-like protein 2|prenyl-dependent prelamin A binding protein 20121230 -9606 26503 SLC17A5 - AST|ISSD|NSD|SD|SIALIN|SIASD|SLD HGNC:10933|MIM:604322|Ensembl:ENSG00000119899|HPRD:05058|Vega:OTTHUMG00000015039 6 6q13 solute carrier family 17 (anion/sugar transporter), member 5 protein-coding SLC17A5 solute carrier family 17 (anion/sugar transporter), member 5 O membrane glycoprotein HP59|sialic acid storage disease|sialin|sodium/sialic acid cotransporter|solute carrier family 17 member 5|solute carrier family 17, member 5 20121230 -9606 26504 CNNM4 - ACDP4 HGNC:105|MIM:607805|Ensembl:ENSG00000158158|HPRD:07420|Vega:OTTHUMG00000130532 2 2q11 cyclin M4 protein-coding CNNM4 cyclin M4 O ancient conserved domain protein 4|ancient conserved domain-containing protein 4|cyclin-M4|metal transporter CNNM4 20121230 -9606 26505 CNNM3 - ACDP3 HGNC:104|MIM:607804|Ensembl:ENSG00000168763|HPRD:07419|Vega:OTTHUMG00000130531 2 2p12-p11.2 cyclin M3 protein-coding CNNM3 cyclin M3 O ancient conserved domain protein 3|ancient conserved domain-containing protein 3|cyclin-M3|metal transporter CNNM3 20121230 -9606 26507 CNNM1 - ACDP1|CLP-1 HGNC:102|MIM:607802|Ensembl:ENSG00000119946|HPRD:07417|Vega:OTTHUMG00000018881 10 10q24.2 cyclin M1 protein-coding CNNM1 cyclin M1 O ancient conserved domain protein 1|ancient conserved domain-containing protein 1|cyclin-M1|metal transporter CNNM1 20121230 -9606 26508 HEYL - HEY3|HRT3|bHLHb33 HGNC:4882|MIM:609034|Ensembl:ENSG00000163909|HPRD:16419|Vega:OTTHUMG00000000458 1 1p34.3 hairy/enhancer-of-split related with YRPW motif-like protein-coding HEYL hairy/enhancer-of-split related with YRPW motif-like O HEY-like protein|HRT-3|class B basic helix-loop-helix protein 33|hHRT3|hHeyL|hairy-related transcription factor 3|hairy/enhancer-of-split related with YRPW motif 3|hairy/enhancer-of-split related with YRPW motif-like protein 20121230 -9606 26509 MYOF RP11-624L12.2 FER1L3 HGNC:3656|MIM:604603|Ensembl:ENSG00000138119|HPRD:06857|Vega:OTTHUMG00000018772 10 10q24 myoferlin protein-coding MYOF myoferlin O fer-1-like 3, myoferlin|fer-1-like protein 3 20121230 -9606 26511 CHIC2 - BTL HGNC:1935|MIM:604332|Ensembl:ENSG00000109220|HPRD:10373|Vega:OTTHUMG00000102101 4 4q11 cysteine-rich hydrophobic domain 2 protein-coding CHIC2 cysteine-rich hydrophobic domain 2 O BRX-like translocated in leukemia|cystein-rich hydrophobic domain 2|cysteine-rich hydrophobic domain 2 protein 20121230 -9606 26512 INTS6 RP11-24B19.2 DBI-1|DDX26|DDX26A|DICE1|HDB|INT6|Notchl2 HGNC:14879|MIM:604331|Ensembl:ENSG00000102786|HPRD:05063|Vega:OTTHUMG00000016945 13 13q14.3 integrator complex subunit 6 protein-coding INTS6 integrator complex subunit 6 O DEAD box protein|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 26|RNA helicase HDB|protein deleted in cancer 1 20121230 -9606 26513 RPL34P2 - RPL34_11_1133 HGNC:10342 11 11p13 ribosomal protein L34 pseudogene 2 pseudo RPL34P2 ribosomal protein L34 pseudogene 2 O - 20121230 -9606 26514 RPL34P1 - RPL34_3_118|dJ69E11.2 HGNC:10341 1 1q23-q24 ribosomal protein L34 pseudogene 1 pseudo RPL34P1 ribosomal protein L34 pseudogene 1 O - 20121230 -9606 26515 TIMM10B - FXC1|TIM10B|Tim9b HGNC:4022|MIM:607388|Ensembl:ENSG00000132286|HPRD:16242|Vega:OTTHUMG00000179826 11 11p15.4 translocase of inner mitochondrial membrane 10 homolog B (yeast) protein-coding TIMM10B translocase of inner mitochondrial membrane 10 homolog B (yeast) O fracture callus 1 homolog|fracture callus protein 1|mitochondrial import inner membrane translocase subunit Tim9 B 20121230 -9606 26516 RPS5P1 - RPS5_1_743 HGNC:10428 6 6q22.1 ribosomal protein S5 pseudogene 1 pseudo RPS5P1 ribosomal protein S5 pseudogene 1 O - 20121230 -9606 26517 TIMM13 - TIM13|TIM13B|TIMM13A|TIMM13B|ppv1 HGNC:11816|MIM:607383|Ensembl:ENSG00000099800|HPRD:09573|Vega:OTTHUMG00000180432 19 19p13.3 translocase of inner mitochondrial membrane 13 homolog (yeast) protein-coding TIMM13 translocase of inner mitochondrial membrane 13 homolog (yeast) O mitochondrial import inner membrane translocase subunit Tim13|mitochondrial import inner membrane translocase subunit Tim13B 20121230 -9606 26519 TIMM10 - TIM10|TIM10A HGNC:11814|MIM:602251|Ensembl:ENSG00000134809|HPRD:03768|Vega:OTTHUMG00000167039 11 11q12.1-q12.3 translocase of inner mitochondrial membrane 10 homolog (yeast) protein-coding TIMM10 translocase of inner mitochondrial membrane 10 homolog (yeast) O mitochondrial import inner membrane translocase subunit Tim10 20121230 -9606 26520 TIMM9 - TIM9|TIM9A HGNC:11819|MIM:607384|Ensembl:ENSG00000100575|HPRD:09574|Vega:OTTHUMG00000140322 14 14q21 translocase of inner mitochondrial membrane 9 homolog (yeast) protein-coding TIMM9 translocase of inner mitochondrial membrane 9 homolog (yeast) O mitochondrial import inner membrane translocase subunit Tim9 20121230 -9606 26521 TIMM8B - DDP2|TIM8B HGNC:11818|MIM:606659|Ensembl:ENSG00000150779|HPRD:16228|Vega:OTTHUMG00000162261 11 11q23.1-q23.2 translocase of inner mitochondrial membrane 8 homolog B (yeast) protein-coding TIMM8B translocase of inner mitochondrial membrane 8 homolog B (yeast) O DDP-like protein|deafness dystonia protein 2|mitochondrial import inner membrane translocase subunit Tim8 B 20121230 -9606 26523 EIF2C1 RP4-789D17.1 AGO1|EIF2C|GERP95|Q99 HGNC:3262|MIM:606228|Ensembl:ENSG00000092847|HPRD:06942|Vega:OTTHUMG00000007381 1 1p34.3 eukaryotic translation initiation factor 2C, 1 protein-coding EIF2C1 eukaryotic translation initiation factor 2C, 1 O Golgi Endoplasmic Reticulum protein 95 kDa|argonaute 1|argonaute1|eIF-2C 1|eIF2C 1|hAgo1|protein argonaute-1|putative RNA-binding protein Q99 20121230 -9606 26524 LATS2 - KPM HGNC:6515|MIM:604861|Ensembl:ENSG00000150457|HPRD:07277|Vega:OTTHUMG00000016531 13 13q11-q12 LATS, large tumor suppressor, homolog 2 (Drosophila) protein-coding LATS2 LATS, large tumor suppressor, homolog 2 (Drosophila) O LATS (large tumor suppressor, Drosophila) homolog 2|kinase phosphorylated during mitosis protein|large tumor suppressor homolog 2|serine/threonine kinase KPM|serine/threonine-protein kinase LATS2|serine/threonine-protein kinase kpm|warts-like kinase 20121230 -9606 26525 IL36RN UNQ1896/PRO4342 FIL1|FIL1(DELTA)|FIL1D|IL1F5|IL1HY1|IL1L1|IL1RP3|IL36RA|PSORP HGNC:15561|MIM:605507|Ensembl:ENSG00000136695|HPRD:16112|Vega:OTTHUMG00000131337 2 2q14 interleukin 36 receptor antagonist protein-coding IL36RN interleukin 36 receptor antagonist O IL-1 related protein 3|IL-1F5 (IL-1HY1, FIL1-delta, IL-1RP3, IL-1L1, IL-1-delta)|IL-1ra homolog 1|IL1F5 (Canonical product IL-1F5a)|family of interleukin 1-delta|interleukin 1 family, member 5 (delta)|interleukin-1 HY1|interleukin-1 receptor antagonist homolog 1|interleukin-1-like protein 1|interleukin-36 receptor antagonist protein 20121230 -9606 26526 TSPAN16 - TM-8|TM4-B|TM4SF16 HGNC:30725|Ensembl:ENSG00000130167|HPRD:18197|Vega:OTTHUMG00000180833 19 19p13.2 tetraspanin 16 protein-coding TSPAN16 tetraspanin 16 O tetraspanin TM4-B|tetraspanin-16|transmembrane 4 superfamily member 16|tspan-16 20121230 -9606 26528 DAZAP1 - - HGNC:2683|MIM:607430|Ensembl:ENSG00000071626|HPRD:08462|Vega:OTTHUMG00000180058 19 19p13.3 DAZ associated protein 1 protein-coding DAZAP1 DAZ associated protein 1 O DAZ-associated protein 1|deleted in azoospermia-associated protein 1 20121230 -9606 26529 OR12D2 - DJ994E9.8|HS6M1-20 HGNC:8178|Ensembl:ENSG00000168787|HPRD:17678|Vega:OTTHUMG00000031049 6 6p22.2-p21.31 olfactory receptor, family 12, subfamily D, member 2 protein-coding OR12D2 olfactory receptor, family 12, subfamily D, member 2 O olfactory receptor 12D2|olfactory receptor OR6-28 20121230 -9606 26530 OR12D1P - OR12D1|hs6M1-19 HGNC:8177 6 6p22.2-p21.31 olfactory receptor, family 12, subfamily D, member 1 pseudogene pseudo OR12D1P olfactory receptor, family 12, subfamily D, member 1 pseudogene O - 20121230 -9606 26531 OR11A1 DAAP-34I1.2 OR11A2|dJ994E9.6|hs6M1-18 HGNC:8176|Ensembl:ENSG00000204694|HPRD:14899|Vega:OTTHUMG00000031225 6 6p22.2-p21.31 olfactory receptor, family 11, subfamily A, member 1 protein-coding OR11A1 olfactory receptor, family 11, subfamily A, member 1 O olfactory receptor 11A1|olfactory receptor 11A2|olfactory receptor OR6-30|olfactory receptor, family 11, subfamily A, member 2 20121230 -9606 26532 OR10H3 - - HGNC:8174|Ensembl:ENSG00000171936|HPRD:17669|Vega:OTTHUMG00000182390 19 19p13.1 olfactory receptor, family 10, subfamily H, member 3 protein-coding OR10H3 olfactory receptor, family 10, subfamily H, member 3 O olfactory receptor 10H3|olfactory receptor OR19-24 20121230 -9606 26533 OR10G3 - OR14-40 HGNC:8171|Ensembl:ENSG00000169208|HPRD:14888|Vega:OTTHUMG00000168886 14 14q11.2 olfactory receptor, family 10, subfamily G, member 3 protein-coding OR10G3 olfactory receptor, family 10, subfamily G, member 3 O olfactory receptor 10G3|olfactory receptor OR14-40 20121230 -9606 26534 OR10G2 - OR14-41 HGNC:8170|Ensembl:ENSG00000255582|HPRD:14887|Vega:OTTHUMG00000168890 14 14q11.2 olfactory receptor, family 10, subfamily G, member 2 protein-coding OR10G2 olfactory receptor, family 10, subfamily G, member 2 O olfactory receptor 10G2|olfactory receptor OR14-41 pseudogene 20121230 -9606 26537 OR51A1P - HPFH6OR HGNC:8316 11 11p15.4 olfactory receptor, family 51, subfamily A, member 1 pseudogene pseudo OR51A1P olfactory receptor, family 51, subfamily A, member 1 pseudogene O - 20121230 -9606 26538 OR10H2 - - HGNC:8173|Ensembl:ENSG00000171942|HPRD:17668|Vega:OTTHUMG00000182389 19 19p13.1 olfactory receptor, family 10, subfamily H, member 2 protein-coding OR10H2 olfactory receptor, family 10, subfamily H, member 2 O olfactory receptor 10H2|olfactory receptor OR19-23 20121230 -9606 26539 OR10H1 - - HGNC:8172|Ensembl:ENSG00000186723|HPRD:17667|Vega:OTTHUMG00000182285 19 19p13.1 olfactory receptor, family 10, subfamily H, member 1 protein-coding OR10H1 olfactory receptor, family 10, subfamily H, member 1 O olfactory receptor 10H1|olfactory receptor OR19-27 20121230 -9606 26540 OR10G1P - - HGNC:8169 14 14q11.2 olfactory receptor, family 10, subfamily G, member 1 pseudogene pseudo OR10G1P olfactory receptor, family 10, subfamily G, member 1 pseudogene O - 20121230 -9606 26541 OR10D1P - HTPCRX03|OR10D2P|OST074 HGNC:8166 11 11q24.2 olfactory receptor, family 10, subfamily D, member 1 pseudogene pseudo OR10D1P olfactory receptor, family 10, subfamily D, member 1 pseudogene O - 20121230 -9606 26548 ITGB1BP2 MSTP015 CHORDC3|ITGB1BP|MELUSIN HGNC:6154|MIM:300332|Ensembl:ENSG00000147166|HPRD:02271|Vega:OTTHUMG00000021793 X Xq12-q13.1 integrin beta 1 binding protein (melusin) 2 protein-coding ITGB1BP2 integrin beta 1 binding protein (melusin) 2 O integrin beta-1-binding protein 2 20121230 -9606 26574 AATF HSPC277 CHE-1|CHE1|DED HGNC:19235|MIM:608463|Ensembl:ENSG00000108270|HPRD:12236|Vega:OTTHUMG00000179145 17 17q12 apoptosis antagonizing transcription factor protein-coding AATF apoptosis antagonizing transcription factor O apoptosis-antagonizing transcription factor|protein AATF|rb-binding protein Che-1 20121230 -9606 26575 RGS17 - RGS-17|RGSZ2|hRGS17 HGNC:14088|MIM:607191|Ensembl:ENSG00000091844|HPRD:06223|Vega:OTTHUMG00000015858 6 6q25.3 regulator of G-protein signaling 17 protein-coding RGS17 regulator of G-protein signaling 17 O - 20121230 -9606 26576 SRPK3 - MSSK-1|MSSK1|STK23 HGNC:11402|Ensembl:ENSG00000184343|HPRD:06731|Vega:OTTHUMG00000024207 X Xq28 SRSF protein kinase 3 protein-coding SRPK3 SRSF protein kinase 3 O SFRS protein kinase 3|SR-protein-specific kinase 3|muscle-specific serine kinase 1|serine arginine rich protein-specific kinase 3|serine/arginine-rich protein-specific kinase 3|serine/threonine kinase 23|serine/threonine-protein kinase 23|serine/threonine-protein kinase SRPK3 20121230 -9606 26577 PCOLCE2 UNQ250/PRO287 PCPE2 HGNC:8739|MIM:607064|Ensembl:ENSG00000163710|HPRD:06139|Vega:OTTHUMG00000159312 3 3q21-q24 procollagen C-endopeptidase enhancer 2 protein-coding PCOLCE2 procollagen C-endopeptidase enhancer 2 O procollagen C-proteinase enhancer 2|procollagen COOH-terminal proteinase enhancer 2 20121230 -9606 26578 OSTF1 - OSF|SH3P2|bA235O14.1 HGNC:8510|MIM:610180|Ensembl:ENSG00000134996|HPRD:17808|Vega:OTTHUMG00000020033 9 9q13-q21.2 osteoclast stimulating factor 1 protein-coding OSTF1 osteoclast stimulating factor 1 O osteoclast-stimulating factor 1 20121230 -9606 26579 MYEOV - OCIM HGNC:7563|MIM:605625|Ensembl:ENSG00000172927|HPRD:16130|Vega:OTTHUMG00000167836 11 11q13 myeloma overexpressed (in a subset of t(11;14) positive multiple myelomas) protein-coding MYEOV myeloma overexpressed (in a subset of t(11;14) positive multiple myelomas) O myeloma overexpressed gene (in a subset of t(11;14) positive multiple myelomas)|myeloma-overexpressed gene protein|oncogene in multiple myeloma 20121230 -9606 26580 BSCL2 - GNG3LG|HMN5|SPG17 HGNC:15832|MIM:606158|Ensembl:ENSG00000168000|HPRD:05858|Vega:OTTHUMG00000150624 11 11q13 Berardinelli-Seip congenital lipodystrophy 2 (seipin) protein-coding BSCL2 Berardinelli-Seip congenital lipodystrophy 2 (seipin) O Bernardinelli-Seip congenital lipodystrophy type 2 protein|seipin 20121230 -9606 26581 DUX5 - DUX1 HGNC:3083|MIM:611444|HPRD:18587 Un - double homeobox 5 protein-coding DUX5 double homeobox 5 O double homeobox protein 1|double homeobox protein 5|double homeobox, 5 20121230 -9606 26582 DUX3 - - HGNC:3081|MIM:611443|HPRD:18588 - - double homeobox 3 protein-coding DUX3 double homeobox 3 O double homeobox, 3|putative double homeobox protein 3 20120610 -9606 26583 DUX2 - - HGNC:3080|MIM:611442|HPRD:18589 4 4q35.2 double homeobox 2 protein-coding DUX2 double homeobox 2 O double homeobox protein 2|double homeobox, 2|putative double homeobox protein 2 20121209 -9606 26584 DUX1 - - HGNC:3079|MIM:611441|HPRD:10609 10 - double homeobox 1 protein-coding DUX1 double homeobox 1 O double homeobox protein 1|double homeobox, 1 20121230 -9606 26585 GREM1 PIG2 CKTSF1B1|DAND2|DRM|GREMLIN|IHG-2 HGNC:2001|MIM:603054|Ensembl:ENSG00000166923|HPRD:07048|Vega:OTTHUMG00000129319 15 15q13.3 gremlin 1 protein-coding GREM1 gremlin 1 O DAN domain family member 2|cell proliferation-inducing gene 2 protein|cysteine knot superfamily 1, BMP antagonist 1|down-regulated in Mos-transformed cells protein|gremlin 1, cysteine knot superfamily, homolog|gremlin 1-like protein|gremlin-1|increased in high glucose protein 2|increased in high glucose-2|proliferation-inducing gene 2 20121230 -9606 26586 CKAP2 - LB1|TMAP|se20-10 HGNC:1990|MIM:611569|Ensembl:ENSG00000136108|HPRD:10832|Vega:OTTHUMG00000016967 13 13q14 cytoskeleton associated protein 2 protein-coding CKAP2 cytoskeleton associated protein 2 O CTCL tumor antigen se20-10|cytoskeleton-associated protein 2|tumor- and microtubule-associated protein|tumor-associated microtubule-associated protein 20121230 -9606 26589 MRPL46 - C15orf4|LIECG2|P2ECSL HGNC:1192|MIM:611851|Ensembl:ENSG00000259494|HPRD:14765|Vega:OTTHUMG00000148683 15 15q25.3 mitochondrial ribosomal protein L46 protein-coding MRPL46 mitochondrial ribosomal protein L46 O 39S ribosomal protein L46, mitochondrial|L46mt|MRP-L46 20121230 -9606 26590 OR8B7P - OR8B13P HGNC:8476 11 11q25 olfactory receptor, family 8, subfamily B, member 7 pseudogene pseudo OR8B7P olfactory receptor, family 8, subfamily B, member 7 pseudogene O - 20121230 -9606 26591 OR8B6P - - HGNC:8475 11 11q25 olfactory receptor, family 8, subfamily B, member 6 pseudogene pseudo OR8B6P olfactory receptor, family 8, subfamily B, member 6 pseudogene O - 20121230 -9606 26592 OR8B5P - - HGNC:8474 11 11q25 olfactory receptor, family 8, subfamily B, member 5 pseudogene pseudo OR8B5P olfactory receptor, family 8, subfamily B, member 5 pseudogene O - 20121230 -9606 26595 OR8B2 - OR11-309|OR11-310 HGNC:8471|Ensembl:ENSG00000204293|HPRD:15078|Vega:OTTHUMG00000165982 11 11q24.1 olfactory receptor, family 8, subfamily B, member 2 protein-coding OR8B2 olfactory receptor, family 8, subfamily B, member 2 O olfactory receptor 8B2|olfactory receptor OR11-309|olfactory receptor OR11-310 20121230 -9606 26608 TBL2 UNQ563/PRO1125 WBSCR13|WS-betaTRP HGNC:11586|MIM:605842|Ensembl:ENSG00000106638|HPRD:09319|Vega:OTTHUMG00000023427 7 7q11.23 transducin (beta)-like 2 protein-coding TBL2 transducin (beta)-like 2 O WS beta-transducin repeats protein|Williams-Beuren syndrome chromosome region 13|transducin beta-like protein 2 20121230 -9606 26609 VCX - VCX-10r|VCX-B1|VCX1|VCX10R|VCXB1 HGNC:12667|MIM:300229|Ensembl:ENSG00000182583|HPRD:02206|Vega:OTTHUMG00000028608 X Xp22 variable charge, X-linked protein-coding VCX variable charge, X-linked O variable charge X-linked protein 1|variable charge protein on X with ten repeats|variable charge, X chromosome|variably charged protein X-B1 20121230 -9606 26610 ELP4 - C11orf19|PAX6NEB|PAXNEB|dJ68P15A.1 HGNC:1171|MIM:606985|Ensembl:ENSG00000109911|HPRD:07377|Vega:OTTHUMG00000142919 11 11p13 elongator acetyltransferase complex subunit 4 protein-coding ELP4 elongator acetyltransferase complex subunit 4 O PAX6 neighbor gene protein|elongation protein 4 homolog|elongator complex protein 4|hELP4 20121230 -9606 26614 OR7E66P - OR3.3|OR3DG|OR7E20P|OR7E6P|hg630 HGNC:8442 3 3p13 olfactory receptor, family 7, subfamily E, member 66 pseudogene pseudo OR7E66P olfactory receptor, family 7, subfamily E, member 66 pseudogene O - 20121230 -9606 26628 OR7E47P - OR7E141 HGNC:8421 12 12q13.13 olfactory receptor, family 7, subfamily E, member 47 pseudogene pseudo OR7E47P olfactory receptor, family 7, subfamily E, member 47 pseudogene O - 20121230 -9606 26637 OR7E36P - OR7E119P|OST024 HGNC:8409 13 13q14 olfactory receptor, family 7, subfamily E, member 36 pseudogene pseudo OR7E36P olfactory receptor, family 7, subfamily E, member 36 pseudogene O - 20121230 -9606 26640 OR7E33P - hg688 HGNC:8406 13 13q21.32 olfactory receptor, family 7, subfamily E, member 33 pseudogene pseudo OR7E33P olfactory receptor, family 7, subfamily E, member 33 pseudogene O - 20121230 -9606 26644 OR7E29P - OR7E30P|OST032|OST339 HGNC:8401 3 3q21.2 olfactory receptor, family 7, subfamily E, member 29 pseudogene pseudo OR7E29P olfactory receptor, family 7, subfamily E, member 29 pseudogene O - 20121230 -9606 26645 OR7E28P - OR7E107P|OR7E133P|OR7E27P|OST128|hg616 HGNC:8400 2 2q24.1 olfactory receptor, family 7, subfamily E, member 28 pseudogene pseudo OR7E28P olfactory receptor, family 7, subfamily E, member 28 pseudogene O - 20121230 -9606 26647 OR7E25P - CIT-B-440L2|OR19-12|OR19-C HGNC:8397 19 19p13.2 olfactory receptor, family 7, subfamily E, member 25 pseudogene pseudo OR7E25P olfactory receptor, family 7, subfamily E, member 25 pseudogene O - 20121230 -9606 26648 OR7E24 - HSHT2|OR19-8|OR7E24P|OR7E24Q HGNC:8396|Ensembl:ENSG00000237521|Vega:OTTHUMG00000179938 19 19p13.2 olfactory receptor, family 7, subfamily E, member 24 protein-coding OR7E24 olfactory receptor, family 7, subfamily E, member 24 O olfactory receptor 7E24|olfactory receptor OR19-14 20121230 -9606 26651 OR7E19P - HSCIT-B-440L2|OR19-7|OR7E65|TPCR11|tpcr110 HGNC:8390 19 19p13.2 olfactory receptor, family 7, subfamily E, member 19 pseudogene pseudo OR7E19P olfactory receptor, family 7, subfamily E, member 19 pseudogene O - 20121230 -9606 26656 OR7D1P - OR19-131|OR19-A|OR7D3|OR7D3P HGNC:8377 19 19p13.2 olfactory receptor, family 7, subfamily D, member 1 pseudogene pseudo OR7D1P olfactory receptor, family 7, subfamily D, member 1 pseudogene O - 20121230 -9606 26658 OR7C2 - CIT-HSP-87M17|OR19-18|OR7C3 HGNC:8374|Ensembl:ENSG00000127529|HPRD:15072 19 19p13.1 olfactory receptor, family 7, subfamily C, member 2 protein-coding OR7C2 olfactory receptor, family 7, subfamily C, member 2 O olfactory receptor 19-18|olfactory receptor 7C2|olfactory receptor 7C3|olfactory receptor OR19-22|olfactory receptor, family 7, subfamily C, member 3 20121230 -9606 26659 OR7A5 - HTPCR2 HGNC:8368|HPRD:17782 19 19p13.1 olfactory receptor, family 7, subfamily A, member 5 protein-coding OR7A5 olfactory receptor, family 7, subfamily A, member 5 O olfactory receptor 7A5|olfactory receptor OR19-17|olfactory receptor TPCR92|olfactory receptor, family 7, subfamily A, member 5 pseudogene 20121230 -9606 26661 OR7A8P - HG83|OR19-11|OR7A9P|OST042 HGNC:8371 19 19p13.1 olfactory receptor, family 7, subfamily A, member 8 pseudogene pseudo OR7A8P olfactory receptor, family 7, subfamily A, member 8 pseudogene O - 20121230 -9606 26664 OR7C1 - CIT-HSP-146E8|HSTPCR86P|OR19-5|OR7C4|TPCR86 HGNC:8373|Ensembl:ENSG00000127530|HPRD:17783 19 19p13.1 olfactory receptor, family 7, subfamily C, member 1 protein-coding OR7C1 olfactory receptor, family 7, subfamily C, member 1 O olfactory receptor 7C1|olfactory receptor 7C4|olfactory receptor OR19-16|olfactory receptor TPCR86|olfactory receptor, family 7, subfamily C, member 4 20121230 -9606 26668 OR7A3P - OR11-7b|OR14-11|OR14-59|OR19-12|OR7A12P|OR7A13P|OR7A14|OR7A14P HGNC:8366 19 19p13.12 olfactory receptor, family 7, subfamily A, member 3 pseudogene pseudo OR7A3P olfactory receptor, family 7, subfamily A, member 3 pseudogene O - 20121230 -9606 26669 OR7A11P - OR7A11|OST527 HGNC:8357 19 19p13.1 olfactory receptor, family 7, subfamily A, member 11 pseudogene pseudo OR7A11P olfactory receptor, family 7, subfamily A, member 11 pseudogene O - 20121230 -9606 26679 OR4G3P - OLC|OLC-7501|OR4G3|OR4G5P HGNC:8304 19 19p13.3 olfactory receptor, family 4, subfamily G, member 3 pseudogene pseudo OR4G3P olfactory receptor, family 4, subfamily G, member 3 pseudogene O - 20121230 -9606 26680 OR4G2P - OR4G7P HGNC:8303 15 15q26 olfactory receptor, family 4, subfamily G, member 2 pseudogene pseudo OR4G2P olfactory receptor, family 4, subfamily G, member 2 pseudogene O - 20121230 -9606 26681 OR4G1P - OLB|OR4G8P HGNC:8302 19 19p13.3 olfactory receptor, family 4, subfamily G, member 1 pseudogene pseudo OR4G1P olfactory receptor, family 4, subfamily G, member 1 pseudogene O - 20121230 -9606 26682 OR4F4 - OLA-7501|OR4F18 HGNC:8301|Ensembl:ENSG00000177693|HPRD:14973|Vega:OTTHUMG00000172272 15 15q26.3 olfactory receptor, family 4, subfamily F, member 4 protein-coding OR4F4 olfactory receptor, family 4, subfamily F, member 4 O HS14a-1-A|OR4F17|olfactory receptor 4F4|olfactory receptor OR19-3|olfactory receptor, family 4, subfamily F, member 18 20121230 -9606 26683 OR4F3 - - HGNC:8300|Ensembl:ENSG00000230178|HPRD:14972|Vega:OTTHUMG00000162081 5 5q35.3 olfactory receptor, family 4, subfamily F, member 3 protein-coding OR4F3 olfactory receptor, family 4, subfamily F, member 3 O olfactory receptor 4F3/4F16/4F29|olfactory receptor OR1-1|olfactory receptor OR7-21 20121230 -9606 26685 OR4F1P - HSDJ0609N19|OR4F1 HGNC:8298 6 6p25.3 olfactory receptor, family 4, subfamily F, member 1 pseudogene pseudo OR4F1P olfactory receptor, family 4, subfamily F, member 1 pseudogene O - 20121230 -9606 26686 OR4E2 - OR14-42 HGNC:8297|Ensembl:ENSG00000221977|HPRD:11414|Vega:OTTHUMG00000168979 14 14q11.2 olfactory receptor, family 4, subfamily E, member 2 protein-coding OR4E2 olfactory receptor, family 4, subfamily E, member 2 O olfactory receptor 4E2|olfactory receptor OR14-42 20121230 -9606 26687 OR4E1 - OR4E1P HGNC:8296 14 14q11.2 olfactory receptor, family 4, subfamily E, member 1 (gene/pseudogene) pseudo OR4E1 olfactory receptor, family 4, subfamily E, member 1 (gene/pseudogene) O - 20121230 -9606 26689 OR4D1 - OR17-23|OR4D3|OR4D4P|TPCR16 HGNC:8293|Ensembl:ENSG00000141194|HPRD:14965|Vega:OTTHUMG00000178799 17 17q23.2 olfactory receptor, family 4, subfamily D, member 1 protein-coding OR4D1 olfactory receptor, family 4, subfamily D, member 1 O olfactory receptor 4D1|olfactory receptor 4D3|olfactory receptor OR17-23 pseudogene|olfactory receptor TPCR16|olfactory receptor, family 4, subfamily D, member 3|olfactory receptor, family 4, subfamily D, member 4 pseudogene|seven transmembrane helix receptor 20121230 -9606 26690 OR4B2P - hg449 HGNC:8291 11 11p11.2 olfactory receptor, family 4, subfamily B, member 2 pseudogene pseudo OR4B2P olfactory receptor, family 4, subfamily B, member 2 pseudogene O - 20121230 -9606 26692 OR2W1 DAAP-223O5.3 hs6M1-15 HGNC:8281|Ensembl:ENSG00000204704|HPRD:17713|Vega:OTTHUMG00000031048 6 6p22.1 olfactory receptor, family 2, subfamily W, member 1 protein-coding OR2W1 olfactory receptor, family 2, subfamily W, member 1 O olfactory receptor 2W1|olfactory receptor OR6-13 20121230 -9606 26693 OR2V1 - OR2V1P|OST265 HGNC:8280|Ensembl:ENSG00000185372|Vega:OTTHUMG00000162118 5 5q35.3 olfactory receptor, family 2, subfamily V, member 1 protein-coding OR2V1 olfactory receptor, family 2, subfamily V, member 1 O olfactory receptor 2V1|olfactory receptor, family 2, subfamily V, member 1 pseudogene 20121230 -9606 26694 OR2U2P - OR6-24|hs6M1-23 HGNC:8279 6 6p22.2-p21.32 olfactory receptor, family 2, subfamily U, member 2 pseudogene pseudo OR2U2P olfactory receptor, family 2, subfamily U, member 2 pseudogene O - 20121230 -9606 26695 OR2U1P - OR2AU1P|hs6M1-24 HGNC:8278 6 6p22.2-p21.32 olfactory receptor, family 2, subfamily U, member 1 pseudogene pseudo OR2U1P olfactory receptor, family 2, subfamily U, member 1 pseudogene O - 20121230 -9606 26696 OR2T1 - OR1-25 HGNC:8277|Ensembl:ENSG00000175143|HPRD:14949|Vega:OTTHUMG00000040450 1 1q44 olfactory receptor, family 2, subfamily T, member 1 protein-coding OR2T1 olfactory receptor, family 2, subfamily T, member 1 O olfactory receptor 1-25|olfactory receptor 2T1|olfactory receptor OR1-61 20121230 -9606 26701 OR2N1P - HS6M1-2|OLFR89|OR6-7 HGNC:8271 6 6p22.2-p21.31 olfactory receptor, family 2, subfamily N, member 1 pseudogene pseudo OR2N1P olfactory receptor, family 2, subfamily N, member 1 pseudogene O - 20121230 -9606 26707 OR2J2 DADB-150K7.5 OR6-19|OR6-8|OR6.3.8|ORL684|dJ80I19.4|hs6M1-6 HGNC:8260|Ensembl:ENSG00000204700|HPRD:17700|Vega:OTTHUMG00000031091 6 6p22.2-p21.31 olfactory receptor, family 2, subfamily J, member 2 protein-coding OR2J2 olfactory receptor, family 2, subfamily J, member 2 O olfactory receptor 2J2|olfactory receptor 6-8|olfactory receptor OR6-19 20121230 -9606 26713 OR2H5P - HS271M21|OLFR42B|OR2H5|OR2H7|OR6-33|OR6-35|hs6M1-13 HGNC:8256 6 6p21.3 olfactory receptor, family 2, subfamily H, member 5 pseudogene pseudo OR2H5P olfactory receptor, family 2, subfamily H, member 5 pseudogene O - 20121230 -9606 26716 OR2H1 DAAP-341G9.5 6M1-16|HS6M1-16|OLFR42A-9004-14|OR2H6|OR2H8|OR6-2|dJ994E9.4 HGNC:8252|Ensembl:ENSG00000204688|HPRD:17699|Vega:OTTHUMG00000031050 6 6p21.32 olfactory receptor, family 2, subfamily H, member 1 protein-coding OR2H1 olfactory receptor, family 2, subfamily H, member 1 O OLFR42A-9004.14/9026.2|olfactory receptor 2H1|olfactory receptor 2H6|olfactory receptor 2H8|olfactory receptor 6-2|olfactory receptor OR6-32|olfactory receptor, family 2, subfamily H, member 6|olfactory receptor, family 2, subfamily H, member 8 20121230 -9606 26717 OR2G1P - OR6-22|OST619|hs6M1-25 HGNC:8251 6 6p22.2-p21.32 olfactory receptor, family 2, subfamily G, member 1 pseudogene pseudo OR2G1P olfactory receptor, family 2, subfamily G, member 1 pseudogene O - 20121230 -9606 26719 OR2E1P - HS29K1|HSNH0569I24|OR2E1|OR2E2|hs6M1-9|hs6M1-9p HGNC:15507 6 6p22-p21.3 olfactory receptor, family 2, subfamily E, member 1 pseudogene pseudo OR2E1P olfactory receptor, family 2, subfamily E, member 1 pseudogene O - 20121230 -9606 26735 OR1L3 - OR9-28|OR9-D HGNC:8215|Ensembl:ENSG00000171481|HPRD:14921|Vega:OTTHUMG00000020619 9 9q33.2 olfactory receptor, family 1, subfamily L, member 3 protein-coding OR1L3 olfactory receptor, family 1, subfamily L, member 3 O olfactory receptor 1L3|olfactory receptor 9-D|olfactory receptor OR9-28 20121230 -9606 26737 OR1L1 - HG23|OR1L2|OR9-27|OR9-C HGNC:8213|Ensembl:ENSG00000173679|HPRD:14920|Vega:OTTHUMG00000020618 9 9q33.2 olfactory receptor, family 1, subfamily L, member 1 protein-coding OR1L1 olfactory receptor, family 1, subfamily L, member 1 O olfactory receptor 1L1|olfactory receptor 1L2|olfactory receptor 9-C|olfactory receptor OR9-27|olfactory receptor, family 1, subfamily L, member 2 20121230 -9606 26740 OR1J2 RP11-542K23.4 HG152|HSA5|OR1J3|OR1J5|OR9-19|OST044 HGNC:8209|Ensembl:ENSG00000197233|HPRD:14917|Vega:OTTHUMG00000020604 9 9q34.11 olfactory receptor, family 1, subfamily J, member 2 protein-coding OR1J2 olfactory receptor, family 1, subfamily J, member 2 O HTPCRX15|olfactory receptor 1J2|olfactory receptor 1J3|olfactory receptor 1J5|olfactory receptor OR9-19|olfactory receptor, family 1, subfamily J, member 3|olfactory receptor, family 1, subfamily J, member 5 20121230 -9606 26742 OR1H1P - OR1H1|OST26 HGNC:8206 9 9q33.2 olfactory receptor, family 1, subfamily H, member 1 pseudogene pseudo OR1H1P olfactory receptor, family 1, subfamily H, member 1 pseudogene O - 20121230 -9606 26747 NUFIP1 - NUFIP|bA540M5.1 HGNC:8057|MIM:604354|Ensembl:ENSG00000083635|HPRD:05073|Vega:OTTHUMG00000016842 13 13q14 nuclear fragile X mental retardation protein interacting protein 1 protein-coding NUFIP1 nuclear fragile X mental retardation protein interacting protein 1 O nuclear FMRP-interacting protein 1|nuclear fragile X mental retardation-interacting protein 1 20121230 -9606 26748 GAGE12I - AL4|CT4.7|GAGE-7B|GAGE7B HGNC:4105|MIM:300637|Ensembl:ENSG00000241465|HPRD:06573|Vega:OTTHUMG00000067390 X Xp11.23 G antigen 12I protein-coding GAGE12I G antigen 12I O G antigen 7B|cancer/testis antigen 4.7|g antigen 12F/G/I 20121209 -9606 26749 GAGE2E CTD-2248C21.1 GAGE-2E|GAGE8 HGNC:31960|MIM:300736|Ensembl:ENSG00000205775|HPRD:06574|Vega:OTTHUMG00000067394 X Xp11.23 G antigen 2E protein-coding GAGE2E G antigen 2E O - 20121230 -9606 26750 RPS6KC1 - RPK118|humS6PKh1 HGNC:10439|Ensembl:ENSG00000136643|HPRD:10204|Vega:OTTHUMG00000036926 1 1q41 ribosomal protein S6 kinase, 52kDa, polypeptide 1 protein-coding RPS6KC1 ribosomal protein S6 kinase, 52kDa, polypeptide 1 O 52 kDa ribosomal protein S6 kinase|S6K-delta-1|SPHK1-binding protein|ribosomal S6 kinase-like protein with two PSK domains 118 kDa protein|ribosomal protein S6 kinase delta-1 20121230 -9606 26751 SH3YL1 - RAY HGNC:29546|Ensembl:ENSG00000035115|HPRD:15336|Vega:OTTHUMG00000151359 2 2p25.3 SH3 domain containing, Ysc84-like 1 (S. cerevisiae) protein-coding SH3YL1 SH3 domain containing, Ysc84-like 1 (S. cerevisiae) O SH3 domain-containing YSC84-like protein 1 20121230 -9606 26762 HAVCR1 - HAVCR|HAVCR-1|KIM-1|KIM1|TIM|TIM-1|TIM1|TIMD-1|TIMD1 HGNC:17866|MIM:606518|Ensembl:ENSG00000113249|HPRD:09404|Vega:OTTHUMG00000163466 5 5q33.2 hepatitis A virus cellular receptor 1 protein-coding HAVCR1 hepatitis A virus cellular receptor 1 O T cell immunoglobin domain and mucin domain protein 1|T-cell membrane protein 1|kidney injury molecule 1 20121230 -9606 26765 SNORD12C - E2|E2-1|E3|RNU106|SNORD106|U106 HGNC:10105 20 20q13.13 small nucleolar RNA, C/D box 12C snoRNA SNORD12C small nucleolar RNA, C/D box 12C O - 20121230 -9606 26766 RNU105C - E1-5|E1-6 HGNC:10104 8 8q11.23 RNA, U105C small nucleolar snoRNA RNU105C RNA, U105C small nucleolar O - 20121230 -9606 26767 RNU105B - 105B|E1-2 HGNC:10103 20 20p12.3 RNA, U105B small nucleolar snoRNA RNU105B RNA, U105B small nucleolar O - 20121230 -9606 26768 RNU105A - 105A|E1c HGNC:10102 1 1p35.3 RNA, U105A small nucleolar snoRNA RNU105A RNA, U105A small nucleolar O - 20121230 -9606 26769 SNORD81 - RNU104|U81|Z23 HGNC:10101 1 1q25.1 small nucleolar RNA, C/D box 81 snoRNA SNORD81 small nucleolar RNA, C/D box 81 O - 20121230 -9606 26770 SNORD79 - RNU103|U79|Z22 HGNC:10100 1 1q25.1 small nucleolar RNA, C/D box 79 snoRNA SNORD79 small nucleolar RNA, C/D box 79 O - 20121230 -9606 26771 SNORD102 - RNU102|Z18 HGNC:10099 13 13q12.2 small nucleolar RNA, C/D box 102 snoRNA SNORD102 small nucleolar RNA, C/D box 102 O - 20121230 -9606 26772 SNORD4B - RNU101B|Z17B HGNC:10098 17 17q11 small nucleolar RNA, C/D box 4B snoRNA SNORD4B small nucleolar RNA, C/D box 4B O - 20121230 -9606 26773 SNORD4A - RNU101A|Z17A|mgh18S-121 HGNC:10097 17 17q11 small nucleolar RNA, C/D box 4A snoRNA SNORD4A small nucleolar RNA, C/D box 4A O - 20121230 -9606 26774 SNORD80 - RNU100|U80|Z15 HGNC:10096 1 1q25.1 small nucleolar RNA, C/D box 80 snoRNA SNORD80 small nucleolar RNA, C/D box 80 O - 20121230 -9606 26775 SNORA72 - RNU72|U72 HGNC:10234 8 8q22 small nucleolar RNA, H/ACA box 72 snoRNA SNORA72 small nucleolar RNA, H/ACA box 72 O - 20121230 -9606 26776 SNORA71B - RNU71B|U71b HGNC:10233 20 20q11.23 small nucleolar RNA, H/ACA box 71B snoRNA SNORA71B small nucleolar RNA, H/ACA box 71B O - 20121230 -9606 26777 SNORA71A - RNU71A|U71a HGNC:10232 20 20q11.23 small nucleolar RNA, H/ACA box 71A snoRNA SNORA71A small nucleolar RNA, H/ACA box 71A O - 20121230 -9606 26778 SNORA70 - DXS648E|RNU70|U70 HGNC:10231 X Xq28 small nucleolar RNA, H/ACA box 70 snoRNA SNORA70 small nucleolar RNA, H/ACA box 70 O - 20121230 -9606 26779 SNORA69 - RNU69|U69|U69A HGNC:10226 X Xq24 small nucleolar RNA, H/ACA box 69 snoRNA SNORA69 small nucleolar RNA, H/ACA box 69 O - 20121230 -9606 26780 SNORA68 - RNU68|U68 HGNC:10225 19 19p13 small nucleolar RNA, H/ACA box 68 snoRNA SNORA68 small nucleolar RNA, H/ACA box 68 O - 20121230 -9606 26781 SNORA67 - RNU67|U67 HGNC:10224 17 17p13.1 small nucleolar RNA, H/ACA box 67 snoRNA SNORA67 small nucleolar RNA, H/ACA box 67 O - 20121230 -9606 26782 SNORA66 - RNU66|U66 HGNC:10223 1 1p22.1 small nucleolar RNA, H/ACA box 66 snoRNA SNORA66 small nucleolar RNA, H/ACA box 66 O - 20121230 -9606 26783 SNORA65 - RNU65|U65 HGNC:10222 9 9q34 small nucleolar RNA, H/ACA box 65 snoRNA SNORA65 small nucleolar RNA, H/ACA box 65 O - 20121230 -9606 26784 SNORA64 - RNU64|U64 HGNC:10221 16 16p13.3 small nucleolar RNA, H/ACA box 64 snoRNA SNORA64 small nucleolar RNA, H/ACA box 64 O - 20121230 -9606 26785 SNORD63 - RNU63|U63 HGNC:10220 5 5q31.2 small nucleolar RNA, C/D box 63 snoRNA SNORD63 small nucleolar RNA, C/D box 63 O - 20121230 -9606 26786 SNORD62A - RNU62|U62|U62A HGNC:10219 9 9q34.13 small nucleolar RNA, C/D box 62A snoRNA SNORD62A small nucleolar RNA, C/D box 62A O - 20121230 -9606 26787 SNORD61 - HBII-342|RNU61|U61 HGNC:10218 X Xq26.3 small nucleolar RNA, C/D box 61 snoRNA SNORD61 small nucleolar RNA, C/D box 61 O - 20121230 -9606 26788 SNORD60 - RNU60|U60 HGNC:10217 16 16p13.3 small nucleolar RNA, C/D box 60 snoRNA SNORD60 small nucleolar RNA, C/D box 60 O - 20121230 -9606 26789 SNORD59A - RNU59|U59 HGNC:10210 12 12p13.3 small nucleolar RNA, C/D box 59A snoRNA SNORD59A small nucleolar RNA, C/D box 59A O - 20121230 -9606 26790 SNORD58B - RNU58B|U58b HGNC:10209 18 18q21 small nucleolar RNA, C/D box 58B snoRNA SNORD58B small nucleolar RNA, C/D box 58B O - 20121230 -9606 26791 SNORD58A - RNU58A|U58a HGNC:10208 18 18q21 small nucleolar RNA, C/D box 58A snoRNA SNORD58A small nucleolar RNA, C/D box 58A O - 20121230 -9606 26792 SNORD57 - RNU57|U57 HGNC:10207 20 20p13 small nucleolar RNA, C/D box 57 snoRNA SNORD57 small nucleolar RNA, C/D box 57 O - 20121230 -9606 26793 SNORD56 - RNU56|U56 HGNC:10206 20 20p13 small nucleolar RNA, C/D box 56 snoRNA SNORD56 small nucleolar RNA, C/D box 56 O - 20121230 -9606 26795 SNORD54 - RNU54|U54 HGNC:10204 8 8q12 small nucleolar RNA, C/D box 54 snoRNA SNORD54 small nucleolar RNA, C/D box 54 O - 20121230 -9606 26796 SNORD53 - RNU53|U53 HGNC:10203 2 2p23.2 small nucleolar RNA, C/D box 53 snoRNA SNORD53 small nucleolar RNA, C/D box 53 O - 20121230 -9606 26797 SNORD52 - RNU52|U52 HGNC:10202 6 6p21.33 small nucleolar RNA, C/D box 52 snoRNA SNORD52 small nucleolar RNA, C/D box 52 O - 20121230 -9606 26798 SNORD51 - RNU51|U51 HGNC:10201 2 2q33 small nucleolar RNA, C/D box 51 snoRNA SNORD51 small nucleolar RNA, C/D box 51 O - 20121230 -9606 26799 SNORD50A - RNU50|U50 HGNC:10200|MIM:613117 6 6q14.3 small nucleolar RNA, C/D box 50A snoRNA SNORD50A small nucleolar RNA, C/D box 50A O - 20121230 -9606 26800 SNORD49A - RNU49|U49|U49A HGNC:10189 17 17p11.2 small nucleolar RNA, C/D box 49A snoRNA SNORD49A small nucleolar RNA, C/D box 49A O - 20121230 -9606 26801 SNORD48 - RNU48|U48 HGNC:10188 6 6p21.33 small nucleolar RNA, C/D box 48 snoRNA SNORD48 small nucleolar RNA, C/D box 48 O - 20121230 -9606 26802 SNORD47 - RNU47|U47 HGNC:10187 1 1q25.1 small nucleolar RNA, C/D box 47 snoRNA SNORD47 small nucleolar RNA, C/D box 47 O - 20121230 -9606 26804 SNORD45B - RNU45B|U45b HGNC:10185 1 1p31.1 small nucleolar RNA, C/D box 45B snoRNA SNORD45B small nucleolar RNA, C/D box 45B O - 20121230 -9606 26805 SNORD45A - RNU45A|U45a HGNC:10184 1 1p31.1 small nucleolar RNA, C/D box 45A snoRNA SNORD45A small nucleolar RNA, C/D box 45A O - 20121230 -9606 26806 SNORD44 - RNU44|U44 HGNC:10183 1 1q25.1 small nucleolar RNA, C/D box 44 snoRNA SNORD44 small nucleolar RNA, C/D box 44 O - 20121230 -9606 26807 SNORD43 - RNU43|U43 HGNC:10182|MIM:611068 22 22q13 small nucleolar RNA, C/D box 43 snoRNA SNORD43 small nucleolar RNA, C/D box 43 O - 20121230 -9606 26808 SNORD42B - RNU42B|U42B HGNC:10181 17 17q11 small nucleolar RNA, C/D box 42B snoRNA SNORD42B small nucleolar RNA, C/D box 42B O - 20121230 -9606 26809 SNORD42A - RNU42A|U42|U42A HGNC:10180 17 17q11 small nucleolar RNA, C/D box 42A snoRNA SNORD42A small nucleolar RNA, C/D box 42A O - 20121230 -9606 26810 SNORD41 - RNU41|U41 HGNC:10179 19 19p13.2 small nucleolar RNA, C/D box 41 snoRNA SNORD41 small nucleolar RNA, C/D box 41 O - 20121230 -9606 26811 SNORD55 - RNU39|RNU55|SNORD39|U39|U55 HGNC:10205 1 1p34.1 small nucleolar RNA, C/D box 55 snoRNA SNORD55 small nucleolar RNA, C/D box 55 O - 20121230 -9606 26812 SNORD37 - RNU37|U37 HGNC:10166 19 19p13.3 small nucleolar RNA, C/D box 37 snoRNA SNORD37 small nucleolar RNA, C/D box 37 O - 20121230 -9606 26813 SNORD36C - RNU36C|U36c HGNC:10165 9 9q34 small nucleolar RNA, C/D box 36C snoRNA SNORD36C small nucleolar RNA, C/D box 36C O - 20121230 -9606 26814 SNORD36B - RNU36B|U36b HGNC:10164 9 9q34 small nucleolar RNA, C/D box 36B snoRNA SNORD36B small nucleolar RNA, C/D box 36B O - 20121230 -9606 26815 SNORD36A - RNU36A|U36a HGNC:10163 9 9q34 small nucleolar RNA, C/D box 36A snoRNA SNORD36A small nucleolar RNA, C/D box 36A O - 20121230 -9606 26816 SNORD35A - RNU35|RNU35A|U35 HGNC:10162 19 19q13.3 small nucleolar RNA, C/D box 35A snoRNA SNORD35A small nucleolar RNA, C/D box 35A O - 20121230 -9606 26817 SNORD34 - RNU34|U34 HGNC:10161 19 19q13.3 small nucleolar RNA, C/D box 34 snoRNA SNORD34 small nucleolar RNA, C/D box 34 O - 20121230 -9606 26818 SNORD33 - RNU33|U33 HGNC:10160 19 19q13.3 small nucleolar RNA, C/D box 33 snoRNA SNORD33 small nucleolar RNA, C/D box 33 O - 20121230 -9606 26819 SNORD32A - RNU32|U32|U32A HGNC:10159 19 19q13.3 small nucleolar RNA, C/D box 32A snoRNA SNORD32A small nucleolar RNA, C/D box 32A O - 20121230 -9606 26820 SNORD24 - RNU24|U24 HGNC:10146 9 9q34 small nucleolar RNA, C/D box 24 snoRNA SNORD24 small nucleolar RNA, C/D box 24 O - 20121230 -9606 26821 SNORA74A - RNU19|U19 HGNC:10119 5 5q31.2 small nucleolar RNA, H/ACA box 74A snoRNA SNORA74A small nucleolar RNA, H/ACA box 74A O - 20121230 -9606 26822 SNORD14A - RNU14|RNU14A|U14|U14-S13-5 HGNC:10113 11 11p15 small nucleolar RNA, C/D box 14A snoRNA SNORD14A small nucleolar RNA, C/D box 14A O - 20121230 -9606 26823 RNU12-2P - RNU12|RNU12P|U12 HGNC:10109 X Xp11.23 RNA, U12 small nuclear 2, pseudogene pseudo RNU12-2P RNA, U12 small nuclear 2, pseudogene O - 20121230 -9606 26824 RNU11 - U11 HGNC:10108 1 1p35 RNA, U11 small nuclear snRNA RNU11 RNA, U11 small nuclear O - 20121230 -9606 26825 RNU6-50 - RNU6-50P|RNU6P1|U6 HGNC:10229 X Xp11.3 RNA, U6 small nuclear 50 pseudo RNU6-50 RNA, U6 small nuclear 50 O - 20121209 -9606 26826 RNU6-2 - RNU6B|U6 HGNC:10228 10 10p13 RNA, U6 small nuclear 2 snRNA RNU6-2 RNA, U6 small nuclear 2 O - 20121230 -9606 26827 RNU6-1 - RNU6|RNU6A|U6 HGNC:10227|MIM:180692 15 15q23 RNA, U6 small nuclear 1 snRNA RNU6-1 RNA, U6 small nuclear 1 O - 20121230 -9606 26828 RNU5F-1 - RNU5F|U5F HGNC:10216 1 1p34.1 RNA, U5F small nuclear 1 snRNA RNU5F-1 RNA, U5F small nuclear 1 O - 20121230 -9606 26829 RNU5E-1 - RNU5E|U5E HGNC:10215 1 1p36.22 RNA, U5E small nuclear 1 snRNA RNU5E-1 RNA, U5E small nuclear 1 O - 20121230 -9606 26830 RNU5D-1 - RNU5D|U5DL|U5DS HGNC:10214 1 1p34.1 RNA, U5D small nuclear 1 snRNA RNU5D-1 RNA, U5D small nuclear 1 O - 20121230 -9606 26831 RNU5A-1 - RNU5|RNU5A|RNU5C|U5A|U5B1 HGNC:10211|MIM:180691 15 15q22.31 RNA, U5A small nuclear 1 snRNA RNU5A-1 RNA, U5A small nuclear 1 O - 20121230 -9606 26832 RNU5B-1 - RNU5B|RNU5B-1P|U5B1 HGNC:10212 15 15q22.31 RNA, U5B small nuclear 1 snRNA RNU5B-1 RNA, U5B small nuclear 1 O - 20121230 -9606 26834 RNU4-2 - RNU4-1B|RNU4B1|RNU4C|U4A|U4b|U4c HGNC:10193 12 12q24.31 RNA, U4 small nuclear 2 snRNA RNU4-2 RNA, U4 small nuclear 2 O - 20121230 -9606 26835 RNU4-1 - RNU4A|RNU4B2|U4|U4BL HGNC:10192 12 12q24.31 RNA, U4 small nuclear 1 snRNA RNU4-1 RNA, U4 small nuclear 1 O - 20121230 -9606 26838 RNU4-6P - RNU4P6|U4|U4/8 HGNC:10199 X Xp22.2 RNA, U4 small nuclear 6, pseudogene pseudo RNU4-6P RNA, U4 small nuclear 6, pseudogene O - 20121230 -9606 26839 RNU4-5P - RNU4P5|U4|U4/6 HGNC:10198 10 10q25.1 RNA, U4 small nuclear 5, pseudogene pseudo RNU4-5P RNA, U4 small nuclear 5, pseudogene O - 20121230 -9606 26840 RNU4-4P - RNU4P4|U4|U4/5 HGNC:10197 3 3q26.31 RNA, U4 small nuclear 4, pseudogene pseudo RNU4-4P RNA, U4 small nuclear 4, pseudogene O - 20121021 -9606 26841 RNU4-3P - RNU4P3|U4|U4/4 HGNC:10196 18 18q12.2 RNA, U4 small nuclear 3, pseudogene pseudo RNU4-3P RNA, U4 small nuclear 3, pseudogene O - 20121230 -9606 26842 RNU3P4 - U3|U3.6 HGNC:10178 3 3q27.1 RNA, U3 small nucleolar pseudogene 4 pseudo RNU3P4 RNA, U3 small nucleolar pseudogene 4 O - 20121230 -9606 26843 RNU3P3 - U3|U3.5|u3.7 HGNC:10177 14 14q31.3 RNA, U3 small nucleolar pseudogene 3 pseudo RNU3P3 RNA, U3 small nucleolar pseudogene 3 O - 20121230 -9606 26844 RNU3P2 - U3|U3.2 HGNC:10176 8 8p21.3 RNA, U3 small nucleolar pseudogene 2 pseudo RNU3P2 RNA, U3 small nucleolar pseudogene 2 O - 20121230 -9606 26851 SNORD3B-1 - RNU3A1|U3a|U3b1|U3b2 HGNC:10168 17 17p11.2 small nucleolar RNA, C/D box 3B-1 snoRNA SNORD3B-1 small nucleolar RNA, C/D box 3B-1 O - 20121230 -9606 26852 RNU2-5P - RNU2P3 HGNC:10155 9 9q21.12 RNA, U2 small nuclear 5, pseudogene pseudo RNU2-5P RNA, U2 small nuclear 5, pseudogene O - 20121021 -9606 26853 RNU2-4P - RNU2P2|U2|U2/7 HGNC:10154 17 17q21.31 RNA, U2 small nuclear 4, pseudogene pseudo RNU2-4P RNA, U2 small nuclear 4, pseudogene O - 20121230 -9606 26854 RNU2-3P - RNU2P1|U2 HGNC:10153 15 15q26.2 RNA, U2 small nuclear 3, pseudogene pseudo RNU2-3P RNA, U2 small nuclear 3, pseudogene O - 20121021 -9606 26855 RNU2-2 - RNU2B|U2 HGNC:10152 11 11q12.3 RNA, U2 small nuclear 2 snRNA RNU2-2 RNA, U2 small nuclear 2 O - 20121230 -9606 26856 RNU1-10P - RNU1P10|U1.4|U1P14 HGNC:10133 1 1q21.1 RNA, U1 small nuclear 10, pseudogene pseudo RNU1-10P RNA, U1 small nuclear 10, pseudogene O - 20121209 -9606 26858 RNU1-15P - RNU1P8|U1P11 HGNC:10140 7 7p15.3 RNA, U1 small nuclear 15, pseudogene pseudo RNU1-15P RNA, U1 small nuclear 15, pseudogene O - 20121230 -9606 26859 RNU1-14P - RNU1P7|U1P17 HGNC:10139 7 7p12.1 RNA, U1 small nuclear 14, pseudogene pseudo RNU1-14P RNA, U1 small nuclear 14, pseudogene O - 20121230 -9606 26860 RNU1-13P - RNU1P6|U1.1|U1P1 HGNC:10138 1 1q21.1 RNA, U1 small nuclear 13, pseudogene pseudo RNU1-13P RNA, U1 small nuclear 13, pseudogene O - 20121209 -9606 26861 RNU1-11P - RNU1P1|RNU1P5|U1P1A HGNC:10137 6 6p24.1 RNA, U1 small nuclear 11, pseudogene pseudo RNU1-11P RNA, U1 small nuclear 11, pseudogene O - 20121230 -9606 26863 RNU1-5 - RNU1P1|RNU1P9|U1.15|U1P101|U1P15 HGNC:37496 1 1q21.2 RNA, U1 small nuclear 5 snRNA RNU1-5 RNA, U1 small nuclear 5 O - 20121230 -9606 26864 RNU1-9 - - HGNC:37500 1 1q21.1 RNA, U1 small nuclear 9 snRNA RNU1-9 RNA, U1 small nuclear 9 O - 20121230 -9606 26865 RNU1-7 - - HGNC:37497 14 14q13.1 RNA, U1 small nuclear 7 snRNA RNU1-7 RNA, U1 small nuclear 7 O - 20121230 -9606 26866 RNU1-8 - - HGNC:37498 14 14q13.1 RNA, U1 small nuclear 8 snRNA RNU1-8 RNA, U1 small nuclear 8 O - 20121230 -9606 26869 RNU1-3 - HSD4|RNU1G3 HGNC:10130 1 1p36.1 RNA, U1 small nuclear 3 snRNA RNU1-3 RNA, U1 small nuclear 3 O - 20121230 -9606 26870 RNU1-2 - RNU1C1|RNU1C2|U1C1|U1C21 HGNC:10123 1 1p36.1 RNA, U1 small nuclear 2 snRNA RNU1-2 RNA, U1 small nuclear 2 O - 20121230 -9606 26871 RNU1-1 - HSD1|HU1-1|RNU1|RNU1A|RNU1A3|RNU1G4|Rnu1a1|U1|U1A1 HGNC:10120 1 1p36.1 RNA, U1 small nuclear 1 snRNA RNU1-1 RNA, U1 small nuclear 1 O - 20121230 -9606 26872 STEAP1 tcag7.1170 PRSS24|STEAP HGNC:11378|MIM:604415|Ensembl:ENSG00000164647|HPRD:05106|Vega:OTTHUMG00000023006 7 7q21 six transmembrane epithelial antigen of the prostate 1 protein-coding STEAP1 six transmembrane epithelial antigen of the prostate 1 O metalloreductase STEAP1|six-transmembrane epithelial antigen of prostate 1 20121230 -9606 26873 OPLAH - 5-Opase|OPLA|OPLAHD HGNC:8149|MIM:614243|HPRD:14880 8 8q24.3 5-oxoprolinase (ATP-hydrolysing) protein-coding OPLAH 5-oxoprolinase (ATP-hydrolysing) O 5-oxo-L-prolinase|5-oxoprolinase|pyroglutamase 20121230 -9606 26952 SMR3A - P-B1|PBI|PRL5|PROL5 HGNC:19216|Ensembl:ENSG00000109208|HPRD:18077|Vega:OTTHUMG00000160839 4 4q13.3 submaxillary gland androgen regulated protein 3A protein-coding SMR3A submaxillary gland androgen regulated protein 3A O proline rich 5 (salivary)|proline- rich protein 5|proline-rich protein 5|proline-rich protein PBI|protein homologous to salivary proline-rich protein P-B|submaxillary gland androgen regulated protein 3 homolog A|submaxillary gland androgen-regulated protein 3A 20121230 -9606 26953 RANBP6 - - HGNC:9851|Ensembl:ENSG00000137040|HPRD:17953|Vega:OTTHUMG00000019512 9 9p24.1 RAN binding protein 6 protein-coding RANBP6 RAN binding protein 6 O Ran-GTP binding protein|ran-binding protein 6 20121230 -9606 26957 ABCD1P4 - ALD22Q11 HGNC:65 22 22q11 ATP-binding cassette, sub-family D (ALD), member 1, pseudogene 4 pseudo ABCD1P4 ATP-binding cassette, sub-family D (ALD), member 1, pseudogene 4 O - 20121230 -9606 26958 COPG2 - 2-COP HGNC:2237|MIM:604355|HPRD:05074 7 7q32 coatomer protein complex, subunit gamma 2 protein-coding COPG2 coatomer protein complex, subunit gamma 2 O coat protein, nonclathrin, gamma-2-cop|coatomer subunit gamma-2|gamma-2-COP|gamma-2-coat protein 20121230 -9606 26959 HBP1 - - HGNC:23200|Ensembl:ENSG00000105856|HPRD:13634|Vega:OTTHUMG00000157642 7 7q22-q31 HMG-box transcription factor 1 protein-coding HBP1 HMG-box transcription factor 1 O HMG box transcription factor 1|HMG box-containing protein 1|high mobility group box transcription factor 1 20121230 -9606 26960 NBEA RP11-270C18.1 BCL8B|LYST2 HGNC:7648|MIM:604889|Ensembl:ENSG00000172915|HPRD:05352|Vega:OTTHUMG00000016724 13 13q13 neurobeachin protein-coding NBEA neurobeachin O lysosomal-trafficking regulator 2 20121230 -9606 26973 CHORDC1 - CHP1 HGNC:14525|MIM:604353|Ensembl:ENSG00000110172|HPRD:05072|Vega:OTTHUMG00000167305 11 11q14.3 cysteine and histidine-rich domain (CHORD) containing 1 protein-coding CHORDC1 cysteine and histidine-rich domain (CHORD) containing 1 O CHORD-containing protein 1|CHP-1|chord domain-containing protein 1|cysteine and histidine-rich domain (CHORD)-containing 1|cysteine and histidine-rich domain (CHORD)-containing, zinc-binding protein 1|cysteine and histidine-rich domain-containing protein 1|protein morgana 20121230 -9606 26974 ZNF285 - ZNF285A HGNC:13079|Ensembl:ENSG00000267508|HPRD:15759|Vega:OTTHUMG00000178848 19 - zinc finger protein 285 protein-coding ZNF285 zinc finger protein 285 O zinc finger protein 285A 20121230 -9606 26978 PABPC1P3 - PABP3|PABPCP3 HGNC:8560 X Xq13.2 poly(A) binding protein, cytoplasmic 1 pseudogene 3 pseudo PABPC1P3 poly(A) binding protein, cytoplasmic 1 pseudogene 3 O - 20121230 -9606 26980 PABPC1P1 - PABP1|PABPCP1 HGNC:8558 4 4p14 poly(A) binding protein, cytoplasmic 1 pseudogene 1 pseudo PABPC1P1 poly(A) binding protein, cytoplasmic 1 pseudogene 1 O - 20121230 -9606 26982 ABCD1P3 - - HGNC:64 16 16p11 ATP-binding cassette, sub-family D (ALD), member 1, pseudogene 3 pseudo ABCD1P3 ATP-binding cassette, sub-family D (ALD), member 1, pseudogene 3 O - 20121230 -9606 26983 ABCD1P2 - bA453N3.6 HGNC:63 10 10p11 ATP-binding cassette, sub-family D (ALD), member 1, pseudogene 2 pseudo ABCD1P2 ATP-binding cassette, sub-family D (ALD), member 1, pseudogene 2 O - 20121230 -9606 26984 SEC22A - SEC22L2 HGNC:20260|MIM:612442|Ensembl:ENSG00000121542|HPRD:15313|Vega:OTTHUMG00000159495 3 3q21.1 SEC22 vesicle trafficking protein homolog A (S. cerevisiae) protein-coding SEC22A SEC22 vesicle trafficking protein homolog A (S. cerevisiae) O SEC22 vesicle trafficking protein-like 2|SEC22 vesicle-trafficking protein homolog A|SEC22 vesicle-trafficking protein-like 2|sec22 homolog|vesicle-trafficking protein SEC22a 20121230 -9606 26985 AP3M1 - - HGNC:569|MIM:610366|Ensembl:ENSG00000185009|HPRD:16496|Vega:OTTHUMG00000018497 10 10q22.2 adaptor-related protein complex 3, mu 1 subunit protein-coding AP3M1 adaptor-related protein complex 3, mu 1 subunit O AP-3 adapter complex mu3A subunit|AP-3 complex subunit mu-1|adapter-related protein complex 3 mu-1 subunit|clathrin adaptor complex AP3, mu-3A subunit|mu-adaptin 3A|mu3A-adaptin 20121230 -9606 26986 PABPC1 - PAB1|PABP|PABP1|PABPC2|PABPL1 HGNC:8554|MIM:604679|Ensembl:ENSG00000070756|HPRD:05247|Vega:OTTHUMG00000164779 8 8q22.2-q23 poly(A) binding protein, cytoplasmic 1 protein-coding PABPC1 poly(A) binding protein, cytoplasmic 1 O poly(A) binding protein, cytoplasmic 2|polyadenylate-binding protein 1 20121230 -9606 26993 AKAP8L HRIHFB2018 HA95|HAP95|NAKAP|NAKAP95 HGNC:29857|MIM:609475|Ensembl:ENSG00000011243|HPRD:10641 19 19p13.12 A kinase (PRKA) anchor protein 8-like protein-coding AKAP8L A kinase (PRKA) anchor protein 8-like O A-kinase anchor protein 8-like|AKAP8-like protein|helicase A-binding protein 95 kDa|homologous to AKAP95 protein|neighbor of A kinase anchoring protein 95|neighbor of A-kinase anchoring protein 95|neighbor of A-kinase-anchoring protein 95|neighbor of AKAP95 20121230 -9606 26994 RNF11 CGI-123 SID1669 HGNC:10056|MIM:612598|Ensembl:ENSG00000123091|HPRD:09955|Vega:OTTHUMG00000008190 1 1p32 ring finger protein 11 protein-coding RNF11 ring finger protein 11 O RING finger protein 11 20121230 -9606 26995 TRUB2 - CLONE24922|RP11-339B21.1 HGNC:17170|MIM:610727|Ensembl:ENSG00000167112|HPRD:18230|Vega:OTTHUMG00000020741 9 9q34.11 TruB pseudouridine (psi) synthase homolog 2 (E. coli) protein-coding TRUB2 TruB pseudouridine (psi) synthase homolog 2 (E. coli) O probable tRNA pseudouridine synthase 2 20121230 -9606 26996 GPR160 - GPCR1|GPCR150 HGNC:23693|Ensembl:ENSG00000173890|HPRD:17069|Vega:OTTHUMG00000158776 3 3q26.2-q27 G protein-coupled receptor 160 protein-coding GPR160 G protein-coupled receptor 160 O G-protein coupled receptor GPCR1|hGPCR1|probable G-protein coupled receptor 160|putative G protein-coupled receptor 20121230 -9606 26998 FETUB - 16G2|Gugu|IRL685 HGNC:3658|MIM:605954|Ensembl:ENSG00000090512|HPRD:09335|Vega:OTTHUMG00000156586 3 3q27 fetuin B protein-coding FETUB fetuin B O fetuin-B|fetuin-like protein IRL685 20121230 -9606 26999 CYFIP2 - PIR121 HGNC:13760|MIM:606323|Ensembl:ENSG00000055163|HPRD:07556|Vega:OTTHUMG00000163484 5 5q33.3 cytoplasmic FMR1 interacting protein 2 protein-coding CYFIP2 cytoplasmic FMR1 interacting protein 2 O cytoplasmic FMR1-interacting protein 2|p53 inducible protein|p53-inducible protein 121 20121230 -9606 27000 DNAJC2 - MPHOSPH11|MPP11|ZRF1|ZUO1 HGNC:13192|MIM:605502|Ensembl:ENSG00000105821|Vega:OTTHUMG00000157202 7 7q22 DnaJ (Hsp40) homolog, subfamily C, member 2 protein-coding DNAJC2 DnaJ (Hsp40) homolog, subfamily C, member 2 O M-phase phosphoprotein 11|dnaJ homolog subfamily C member 2|zuotin related factor 1|zuotin-related factor 1 20121230 -9606 27002 PAFAH1B1P2 - LIS2P|PAFAH1P2 HGNC:8578 2 2q13 platelet-activating factor acetylhydrolase 1b, regulatory subunit 1 pseudogene 2 pseudo PAFAH1B1P2 platelet-activating factor acetylhydrolase 1b, regulatory subunit 1 pseudogene 2 O - 20121230 -9606 27004 TCL6 - TNG1|TNG2 HGNC:13463|MIM:604412|HPRD:05104 14 14q32.1 T-cell leukemia/lymphoma 6 (non-protein coding) miscRNA TCL6 T-cell leukemia/lymphoma 6 (non-protein coding) O - 20121230 -9606 27005 USP21 RP11-297K8.3 USP16|USP23 HGNC:12620|MIM:604729|Ensembl:ENSG00000143258|HPRD:05291|Vega:OTTHUMG00000033154 1 1q22 ubiquitin specific peptidase 21 protein-coding USP21 ubiquitin specific peptidase 21 O NEDD8-specific protease|deubiquitinating enzyme 21|ubiquitin carboxyl-terminal hydrolase 21|ubiquitin specific protease 21|ubiquitin thioesterase 21|ubiquitin thiolesterase 21|ubiquitin-specific processing protease 21|ubiquitin-specific protease 16|ubiquitin-specific-processing protease 21 20121230 -9606 27006 FGF22 UNQ2500/PRO5800 - HGNC:3679|MIM:605831|Ensembl:ENSG00000070388|HPRD:05784|Vega:OTTHUMG00000180591 19 19p13.3 fibroblast growth factor 22 protein-coding FGF22 fibroblast growth factor 22 O FGF-22 20121230 -9606 27010 TPK1 - HTPK1|PP20|THMD5 HGNC:17358|MIM:606370|Ensembl:ENSG00000196511|HPRD:06967|Vega:OTTHUMG00000152774 7 7q34-q35 thiamin pyrophosphokinase 1 protein-coding TPK1 thiamin pyrophosphokinase 1 O placental protein 20|thiamine diphosphokinase|thiamine kinase 20121230 -9606 27012 KCNV1 - HNKA|KCNB3|KV2.3|KV8.1 HGNC:18861|MIM:608164|Ensembl:ENSG00000164794|HPRD:16293|Vega:OTTHUMG00000165637 8 8q23.2 potassium channel, subfamily V, member 1 protein-coding KCNV1 potassium channel, subfamily V, member 1 O neuronal potassium channel alpha subunit HNKA|potassium channel Kv8.1|potassium voltage-gated channel subfamily V member 1|voltage-gated potassium channel subunit Kv8.1 20121230 -9606 27013 CNPPD1 CDABP0125 C2orf24|CGI-57 HGNC:25220|Ensembl:ENSG00000115649|HPRD:10780|Vega:OTTHUMG00000133132 2 2q35 cyclin Pas1/PHO80 domain containing 1 protein-coding CNPPD1 cyclin Pas1/PHO80 domain containing 1 O cyclin Pas1/PHO80 domain-containing protein 1|protein CNPPD1 20121230 -9606 27018 NGFRAP1 RP13-349O20.1 BEX3|Bex|DXS6984E|HGR74|NADE HGNC:13388|MIM:300361|Ensembl:ENSG00000166681|HPRD:02291|Vega:OTTHUMG00000022099 X Xq22.2 nerve growth factor receptor (TNFRSF16) associated protein 1 protein-coding NGFRAP1 nerve growth factor receptor (TNFRSF16) associated protein 1 O brain expressed, X-linked 3|brain-expressed X-linked protein 3|nerve growth factor receptor-associated protein 1|ovarian granulosa cell 13.0 kDa protein HGR74|ovarian granulosa cell protein (13kD)|p75NTR-associated cell death executor|protein BEX3 20121230 -9606 27019 DNAI1 RP11-296L22.2 CILD1|ICS|ICS1|PCD HGNC:2954|MIM:604366|Ensembl:ENSG00000122735|HPRD:05080|Vega:OTTHUMG00000019825 9 9p13.3 dynein, axonemal, intermediate chain 1 protein-coding DNAI1 dynein, axonemal, intermediate chain 1 O axonemal dynein intermediate chain 1|dynein intermediate chain 1, axonemal|dynein intermediate chain DNAI1|dynein, axonemal, intermediate polypeptide 1|immotile cilia syndrome 1 20121230 -9606 27020 NPTN - GP55|GP65|SDFR1|SDR1|np55|np65 HGNC:17867|MIM:612820|Ensembl:ENSG00000156642|HPRD:18033|Vega:OTTHUMG00000137586 15 15q22 neuroplastin protein-coding NPTN neuroplastin O SDR-1|stromal cell derived factor receptor 1|stromal cell-derived receptor 1 20121230 -9606 27022 FOXD3 - AIS1|Genesis|HFH2|VAMAS2 HGNC:3804|MIM:611539|Ensembl:ENSG00000187140|HPRD:07018|Vega:OTTHUMG00000009141 1 1p31.3 forkhead box D3 protein-coding FOXD3 forkhead box D3 O HNF3/FH transcription factor genesis|forkhead box protein D3 20121230 -9606 27023 FOXB1 - FKH5|HFKH-5 HGNC:3799|Ensembl:ENSG00000171956|HPRD:07017|Vega:OTTHUMG00000172011 15 15q22 forkhead box B1 protein-coding FOXB1 forkhead box B1 O forkhead box protein B1|transcription factor FKH-5 20121230 -9606 27030 MLH3 - HNPCC7 HGNC:7128|MIM:604395|Ensembl:ENSG00000119684|HPRD:05094|Vega:OTTHUMG00000171766 14 14q24.3 mutL homolog 3 (E. coli) protein-coding MLH3 mutL homolog 3 (E. coli) O DNA mismatch repair protein Mlh3|mutL protein homolog 3 20121230 -9606 27031 NPHP3 - MKS7|NPH3|RHPD HGNC:7907|MIM:608002|Ensembl:ENSG00000113971|HPRD:06417|Vega:OTTHUMG00000159713 3 3q22.1 nephronophthisis 3 (adolescent) protein-coding NPHP3 nephronophthisis 3 (adolescent) O Meckel syndrome, type 7|nephrocystin-3 20121230 -9606 27032 ATP2C1 HUSSY-28 ATP2C1A|BCPM|HHD|PMR1|SPCA1|hSPCA1 HGNC:13211|MIM:604384|Ensembl:ENSG00000017260|HPRD:05089|Vega:OTTHUMG00000136802 3 3q22.1 ATPase, Ca++ transporting, type 2C, member 1 protein-coding ATP2C1 ATPase, Ca++ transporting, type 2C, member 1 O ATP-dependent Ca(2+) pump PMR1|ATPase 2C1|ATPase, Ca(2+)-sequestering|HUSSY-28|calcium-transporting ATPase type 2C member 1|secretory pathway Ca2+/Mn2+ ATPase 1 20121230 -9606 27033 ZBTB32 - FAXF|FAZF|Rog|TZFP|ZNF538 HGNC:16763|MIM:605859|Ensembl:ENSG00000011590|HPRD:12055|Vega:OTTHUMG00000048118 19 19q13.1 zinc finger and BTB domain containing 32 protein-coding ZBTB32 zinc finger and BTB domain containing 32 O FANCC-interacting protein|fanconi anemia zinc finger protein|repressor of GATA|testis zinc finger protein|zinc finger and BTB domain-containing protein 32|zinc finger protein 538 20121230 -9606 27034 ACAD8 - ACAD-8|ARC42 HGNC:87|MIM:604773|Ensembl:ENSG00000151498|HPRD:11985|Vega:OTTHUMG00000167177 11 11q25 acyl-CoA dehydrogenase family, member 8 protein-coding ACAD8 acyl-CoA dehydrogenase family, member 8 O activator-recruited cofactor 42 kDa component|acyl-Coenzyme A dehydrogenase family, member 8|isobutyryl-CoA dehydrogenase, mitochondrial 20121230 -9606 27035 NOX1 RP1-146H21.1 GP91-2|MOX1|NOH-1|NOH1 HGNC:7889|MIM:300225|Ensembl:ENSG00000007952|HPRD:02203|Vega:OTTHUMG00000022007 X Xq22 NADPH oxidase 1 protein-coding NOX1 NADPH oxidase 1 O NADH/NADPH mitogenic oxidase subunit P65-MOX|NADPH oxidase homolog-1|mitogenic oxidase (pyridine nucleotide-dependent superoxide-generating)|mitogenic oxidase 1 20121230 -9606 27036 SIGLEC7 - AIRM1|CD328|CDw328|D-siglec|QA79|SIGLEC-7|p75|p75/AIRM1 HGNC:10876|MIM:604410|Ensembl:ENSG00000168995|HPRD:05102 19 19q13.3 sialic acid binding Ig-like lectin 7 protein-coding SIGLEC7 sialic acid binding Ig-like lectin 7 O AIRM-1|QA79 membrane protein|adhesion inhibitory receptor molecule 1, siglec-7|sialic acid binding immunoglobulin-like lectin 7|sialic acid-binding Ig-like lectin 7 20121230 -9606 27037 TRMT2A - HTF9C HGNC:24974|MIM:611151|Ensembl:ENSG00000099899|HPRD:13719|Vega:OTTHUMG00000150454 22 22q11.21 tRNA methyltransferase 2 homolog A (S. cerevisiae) protein-coding TRMT2A tRNA methyltransferase 2 homolog A (S. cerevisiae) O TRM2 tRNA methyltransferase 2 homolog A|hpaII tiny fragments locus 9c protein|tRNA (uracil-5-)-methyltransferase homolog A 20121230 -9606 27038 ARVD6 - - MIM:604401 10 10p14-p12 arrhythmogenic right ventricular dysplasia 6 unknown - - - - 20120622 -9606 27039 PKD2L2 - TRPP5 HGNC:9012|MIM:604669|Ensembl:ENSG00000078795|HPRD:05238|Vega:OTTHUMG00000163306 5 5q31 polycystic kidney disease 2-like 2 protein-coding PKD2L2 polycystic kidney disease 2-like 2 O polycystic kidney disease 2-like 2 protein|polycystin-2L2|polycystin-L2 20121230 -9606 27040 LAT - LAT1|pp36 HGNC:18874|MIM:602354|Ensembl:ENSG00000213658|HPRD:03832|Vega:OTTHUMG00000131761 16 16p11.2 linker for activation of T cells protein-coding LAT linker for activation of T cells O 36 kDa phospho-tyrosine adapter protein|36 kDa phospho-tyrosine adaptor protein|linker for activation of T cells, transmembrane adaptor|linker for activation of T-cells family member 1|p36-38 20121230 -9606 27042 DIEXF RP3-434O14.6 C1orf107|DEF|DJ434O14.5|UTP25 HGNC:28440|Ensembl:ENSG00000117597|HPRD:14535|Vega:OTTHUMG00000036654 1 1q32.2 digestive organ expansion factor homolog (zebrafish) protein-coding DIEXF digestive organ expansion factor homolog (zebrafish) O digestive organ expansion factor homolog|digestive-organ expansion factor homolog 20121230 -9606 27043 PELP1 - HMX3|MNAR|P160 HGNC:30134|MIM:609455|Ensembl:ENSG00000141456|HPRD:10144|Vega:OTTHUMG00000177831 17 17p13.2 proline, glutamate and leucine rich protein 1 protein-coding PELP1 proline, glutamate and leucine rich protein 1 O modulator of non-genomic activity of estrogen receptor|modulator of nongenomic activity of estrogen receptor|proline and glutamic acid rich nuclear protein|proline, glutamic acid and leucine rich protein 1|proline-, glutamic acid- and leucine-rich protein 1|proline-, glutamic acid-, leucine-rich protein 1|transcription factor HMX3 20121230 -9606 27044 SND1 - TDRD11|p100 HGNC:30646|MIM:602181|Ensembl:ENSG00000197157|HPRD:03714|Vega:OTTHUMG00000157560 7 7q31.3 staphylococcal nuclease and tudor domain containing 1 protein-coding SND1 staphylococcal nuclease and tudor domain containing 1 O 100 kDa coactivator|EBNA-2 co-activator (100kD)|EBNA2 coactivator p100|SND1-BRAF fusion|p100 EBNA2 co-activator|p100 co-activator|staphylococcal nuclease domain containing 1|staphylococcal nuclease domain-containing protein 1|tudor domain-containing protein 11 20121230 -9606 27063 ANKRD1 - ALRP|C-193|CARP|CVARP|MCARP|bA320F15.2 HGNC:15819|MIM:609599|Ensembl:ENSG00000148677|HPRD:10647|Vega:OTTHUMG00000018734 10 10q23.31 ankyrin repeat domain 1 (cardiac muscle) protein-coding ANKRD1 ankyrin repeat domain 1 (cardiac muscle) O ankyrin repeat domain-containing protein 1|cardiac ankyrin repeat protein|cytokine-inducible gene C-193 protein|cytokine-inducible nuclear protein|liver ankyrin repeat domain 1 20121230 -9606 27065 NSG1 - D4S234|D4S234E|NEEP21|P21 MIM:607645|Ensembl:ENSG00000168824|HPRD:09624|Vega:OTTHUMG00000160002 4 4p16.3 neuron specific gene family member 1 protein-coding - - - brain neuron cytoplasmic protein 1|carboxyterminally EE-tagged neuron-enriched endosomal 21 kDa protein|neuron-specific protein family member 1 20121230 -9606 27067 STAU2 - 39K2|39K3 HGNC:11371|MIM:605920|Ensembl:ENSG00000040341|HPRD:09328|Vega:OTTHUMG00000164499 8 8q21.11 staufen, RNA binding protein, homolog 2 (Drosophila) protein-coding STAU2 staufen, RNA binding protein, homolog 2 (Drosophila) O double-stranded RNA-binding protein Staufen homolog 2|staufen homolog 2 20121230 -9606 27068 PPA2 HSPC124 SID6-306 HGNC:28883|MIM:609988|Ensembl:ENSG00000138777|HPRD:18494|Vega:OTTHUMG00000128781 4 4q25 pyrophosphatase (inorganic) 2 protein-coding PPA2 pyrophosphatase (inorganic) 2 O PPase 2|inorganic pyrophosphatase 2, mitochondrial|pyrophosphatase SID6-306|pyrophosphate phospho-hydrolase 2 20121230 -9606 27069 GHITM My021 DERP2|HSPC282|MICS1|PTD010|TMBIM5 HGNC:17281|Ensembl:ENSG00000165678|HPRD:17038|Vega:OTTHUMG00000018637 10 10q23.1 growth hormone inducible transmembrane protein protein-coding GHITM growth hormone inducible transmembrane protein O dermal papilla-derived protein 2|growth hormone-inducible transmembrane protein|mitochondrial morphology and cristae structure 1|transmembrane BAX inhibitor motif containing 5|transmembrane BAX inhibitor motif-containing protein 5 20121230 -9606 27071 DAPP1 HSPC066 BAM32 HGNC:16500|MIM:605768|Ensembl:ENSG00000070190|HPRD:05773|Vega:OTTHUMG00000160974 4 4q25-q27 dual adaptor of phosphotyrosine and 3-phosphoinositides protein-coding DAPP1 dual adaptor of phosphotyrosine and 3-phosphoinositides O B-cell adapter molecule of 32 kDa|b lymphocyte adapter protein Bam32|dual adapter for phosphotyrosine and 3-phosphotyrosine and 3-phosphoinositide|hDAPP1 20121230 -9606 27072 VPS41 - HVPS41|HVSP41|hVps41p HGNC:12713|MIM:605485|Ensembl:ENSG00000006715|HPRD:10402|Vega:OTTHUMG00000023629 7 7p14-p13 vacuolar protein sorting 41 homolog (S. cerevisiae) protein-coding VPS41 vacuolar protein sorting 41 homolog (S. cerevisiae) O S53|vacuolar assembly protein 41|vacuolar protein sorting-associated protein 41 homolog 20121230 -9606 27074 LAMP3 - CD208|DC LAMP|DC-LAMP|DCLAMP|LAMP|LAMP-3|TSC403 HGNC:14582|MIM:605883|Ensembl:ENSG00000078081|HPRD:12062|Vega:OTTHUMG00000158387 3 3q26.3-q27 lysosomal-associated membrane protein 3 protein-coding LAMP3 lysosomal-associated membrane protein 3 O DC-lysosome-associated membrane glycoprotein|lysosome-associated membrane glycoprotein 3 20121230 -9606 27075 TSPAN13 UNQ260/PRO296 NET-6|NET6|TM4SF13 HGNC:21643|MIM:613139|Ensembl:ENSG00000106537|HPRD:15510|Vega:OTTHUMG00000022968 7 7p21.1 tetraspanin 13 protein-coding TSPAN13 tetraspanin 13 O tetraspan NET-6|tetraspanin-13|transmembrane 4 superfamily member 13|transmembrane 4 superfamily member tetraspan NET-6|tspan-13 20121230 -9606 27076 LYPD3 UNQ491/PRO1007 C4.4A HGNC:24880|MIM:609484|Ensembl:ENSG00000124466|HPRD:10783 19 19q13.31 LY6/PLAUR domain containing 3 protein-coding LYPD3 LY6/PLAUR domain containing 3 O 2310061G07Rik|GPI-anchored metastasis-associated protein C4.4A homolog|GPI-anchored metastasis-associated protein homolog|MIG-C4|ly6/PLAUR domain-containing protein 3|matrigel-induced gene C4 protein 20121230 -9606 27077 B9D1 - B9|EPPB9|MKS9|MKSR1 HGNC:24123|MIM:614144|Ensembl:ENSG00000108641|HPRD:16866|Vega:OTTHUMG00000059586 17 17p11.2 B9 protein domain 1 protein-coding B9D1 B9 protein domain 1 O B9 domain-containing protein 1|MKS1-related protein 1|endothelial precursor protein B9 20121230 -9606 27079 RPUSD2 - C15orf19|C18B11 HGNC:24180|Ensembl:ENSG00000166133|HPRD:12668|Vega:OTTHUMG00000130031 15 15q13.3 RNA pseudouridylate synthase domain containing 2 protein-coding RPUSD2 RNA pseudouridylate synthase domain containing 2 O C18B11 homolog (44.9kD)|RNA pseudouridylate synthase domain-containing protein 2 20121230 -9606 27085 MTBP - MDM2BP HGNC:7417|MIM:605927|Ensembl:ENSG00000172167|HPRD:12068|Vega:OTTHUMG00000165040 8 8q24.12 Mdm2, transformed 3T3 cell double minute 2, p53 binding protein (mouse) binding protein, 104kDa protein-coding MTBP Mdm2, transformed 3T3 cell double minute 2, p53 binding protein (mouse) binding protein, 104kDa O MDM2 (mouse double minute 2)-binding protein, 104kD|mdm2-binding protein 20121230 -9606 27086 FOXP1 HSPC215 12CC4|QRF1|hFKH1B HGNC:3823|MIM:605515|Ensembl:ENSG00000114861|HPRD:18518|Vega:OTTHUMG00000158803 3 3p14.1 forkhead box P1 protein-coding FOXP1 forkhead box P1 O fork head-related protein like B|forkhead box protein P1|glutamine-rich factor 1 20121230 -9606 27087 B3GAT1 - CD57|GLCATP|GLCUATP|HNK1|LEU7|NK-1|NK1 HGNC:921|MIM:151290|Ensembl:ENSG00000109956|HPRD:06969|Vega:OTTHUMG00000167180 11 11q25 beta-1,3-glucuronyltransferase 1 (glucuronosyltransferase P) protein-coding B3GAT1 beta-1,3-glucuronyltransferase 1 (glucuronosyltransferase P) O LEU7 antigen|UDP-GlcUA:glycoprotein beta-1,3-glucuronyltransferase|galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase 1|glcUAT-P|glucuronosyltransferase P 20121230 -9606 27089 UQCRQ - QCR8|QP-C|QPC|UQCR7 HGNC:29594|MIM:612080|Ensembl:ENSG00000164405|HPRD:17941|Vega:OTTHUMG00000059836 5 5q31.1 ubiquinol-cytochrome c reductase, complex III subunit VII, 9.5kDa protein-coding UQCRQ ubiquinol-cytochrome c reductase, complex III subunit VII, 9.5kDa O complex III subunit 8|complex III subunit VIII|cytochrome b-c1 complex subunit 8|low molecular mass ubiquinone-binding protein (9.5kD)|ubiquinol-cytochrome c reductase complex 9.5 kDa protein|ubiquinol-cytochrome c reductase complex ubiquinone-binding protein QP-C 20121230 -9606 27090 ST6GALNAC4 RP11-203J24.4 SIAT3C|SIAT7D|ST6GALNACIV HGNC:17846|MIM:606378|Ensembl:ENSG00000136840|HPRD:05902|Vega:OTTHUMG00000020724 9 9q34 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 protein-coding ST6GALNAC4 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 O NeuAc-alpha-2,3-Gal-beta-1,3-GalNAc-alpha-2, 6-sialyltransferase alpha2,6-sialyltransferase|NeuAc-alpha-2,3-Gal-beta-1,3-GalNAc-alpha-2,6-sialyltransferase IV|SIAT3-C|SIAT7-D|ST6 neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminidealpha-2,6-sialyltransferase 4|ST6GalNAc IV|alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3-N-acetyl-galactosaminide alpha-2,6-sialyltransferase|sialyltransferase 3C|sialyltransferase 7D ((alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialyltransferase) 20121230 -9606 27091 CACNG5 - - HGNC:1409|MIM:606405|Ensembl:ENSG00000075429|HPRD:05912|Vega:OTTHUMG00000166468 17 17q24 calcium channel, voltage-dependent, gamma subunit 5 protein-coding CACNG5 calcium channel, voltage-dependent, gamma subunit 5 O TARP gamma-5|neuronal voltage-gated calcium channel gamma-5 subunit|transmembrane AMPAR regulatory protein gamma-5|voltage-dependent calcium channel gamma-5 subunit 20121230 -9606 27092 CACNG4 - - HGNC:1408|MIM:606404|Ensembl:ENSG00000075461|HPRD:05911|Vega:OTTHUMG00000179550 17 17q24 calcium channel, voltage-dependent, gamma subunit 4 protein-coding CACNG4 calcium channel, voltage-dependent, gamma subunit 4 O TARP gamma-4|neuronal voltage-gated calcium channel gamma-4 subunit|transmembrane AMPAR regulatory protein gamma-4|voltage-dependent calcium channel gamma-4 subunit 20121230 -9606 27093 KCNMB3P1 - KCNMB2L|KCNMB3L|KCNMB3L1|KCNMBLP HGNC:6288 22 22q11 potassium large conductance calcium-activated channel, subfamily M, beta member 3 pseudogene 1 pseudo KCNMB3P1 potassium large conductance calcium-activated channel, subfamily M, beta member 3 pseudogene 1 O - 20121230 -9606 27094 KCNMB3 - BKBETA3|HBETA3|KCNMB2|KCNMBL|SLOBETA3 HGNC:6287|MIM:605222|Ensembl:ENSG00000171121|HPRD:05563|Vega:OTTHUMG00000157337 3 3q26.3-q27 potassium large conductance calcium-activated channel, subfamily M beta member 3 protein-coding KCNMB3 potassium large conductance calcium-activated channel, subfamily M beta member 3 O BK channel subunit beta-3|K(VCA)beta-3|calcium-activated potassium channel subunit beta-3|calcium-activated potassium channel, subfamily M subunit beta-3|charybdotoxin receptor subunit beta-3|large conductance, voltage and Ca2+ activated potassium channel Maxi K beta 3 subunit|maxi K channel subunit beta-3|slo-beta-3 20121230 -9606 27095 TRAPPC3 CDABP0066 BET3 HGNC:19942|MIM:610955|Ensembl:ENSG00000054116|HPRD:11644|Vega:OTTHUMG00000007664 1 1p34.3 trafficking protein particle complex 3 protein-coding TRAPPC3 trafficking protein particle complex 3 O trafficking protein particle complex subunit 3 20121230 -9606 27097 TAF5L RP4-613A2.4 PAF65B HGNC:17304|Ensembl:ENSG00000135801|HPRD:11619|Vega:OTTHUMG00000039463 1 1q42.13 TAF5-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa protein-coding TAF5L TAF5-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa O PAF65-beta|PCAF associated factor 65 beta|PCAF-associated factor 65 beta|TAF5-like RNA polymerase II p300/CBP-associated factor-associated factor 65 kDa subunit 5L 20121230 -9606 27098 CLUL1 - RA337M HGNC:2096|Ensembl:ENSG00000079101|HPRD:16726|Vega:OTTHUMG00000178252 18 18p11.32 clusterin-like 1 (retinal) protein-coding CLUL1 clusterin-like 1 (retinal) O clusterin-like protein 1|retinal-specific clusterin-like protein 20121230 -9606 27099 SND1-IT1 - C7orf54|NAG8|NSG-X HGNC:24158|HPRD:18483 7 7q31 SND1 intronic transcript 1 (non-protein coding) miscRNA SND1-IT1 SND1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 27101 CACYBP PNAS-107 GIG5|RP1-102G20.6|S100A6BP|SIP HGNC:30423|MIM:606186|Ensembl:ENSG00000116161|HPRD:07316|Vega:OTTHUMG00000034941 1 1q24-q25 calcyclin binding protein protein-coding CACYBP calcyclin binding protein O S100A6-binding protein|Siah-interacting protein (SIP)|calcyclin-binding protein|growth-inhibiting gene 5 protein|hCacyBP 20121230 -9606 27102 EIF2AK1 PRO1362 HCR|HRI HGNC:24921|MIM:613635|Ensembl:ENSG00000086232|HPRD:10684|Vega:OTTHUMG00000090689 7 7p22 eukaryotic translation initiation factor 2-alpha kinase 1 protein-coding EIF2AK1 eukaryotic translation initiation factor 2-alpha kinase 1 O heme regulated initiation factor 2 alpha kinase|heme sensitive initiation factor 2a kinase|heme-controlled repressor|heme-regulated eukaryotic initiation factor eIF-2-alpha kinase|heme-regulated inhibitor|heme-regulated initiation factor 2-alpha kinase|heme-regulated repressor|hemin-sensitive initiation factor 2-alpha kinase 20121230 -9606 27106 ARRDC2 PP2703 CLONE24945 HGNC:25225|Ensembl:ENSG00000105643|HPRD:12492 19 19p13.11 arrestin domain containing 2 protein-coding ARRDC2 arrestin domain containing 2 O arrestin domain-containing protein 2 20121230 -9606 27107 ZBTB11 - ZNF-U69274|ZNF913 HGNC:16740|Ensembl:ENSG00000066422|HPRD:15690|Vega:OTTHUMG00000159133 3 3q12.3 zinc finger and BTB domain containing 11 protein-coding ZBTB11 zinc finger and BTB domain containing 11 O zinc finger and BTB domain-containing protein 11 20121230 -9606 27109 ATP5S - ATPW|FB|HSU79253 HGNC:18799|Ensembl:ENSG00000125375|HPRD:12503|Vega:OTTHUMG00000170866 14 14q21.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit s (factor B) protein-coding ATP5S ATP synthase, H+ transporting, mitochondrial Fo complex, subunit s (factor B) O ATP synthase coupling factor B, mitochondrial|ATP synthase coupling factor B-like 1|ATP synthase subunit s, mitochondrial|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit s (factor B)|ATP synthase-coupling factor B|mitochondrial ATP synthase regulatory component factor B 20121230 -9606 27111 SDCBP2 - SITAC|SITAC18|ST-2 HGNC:15756|Ensembl:ENSG00000125775|HPRD:18032|Vega:OTTHUMG00000031661 20 20p13 syndecan binding protein (syntenin) 2 protein-coding SDCBP2 syndecan binding protein (syntenin) 2 O syntenin-2 20121230 -9606 27112 FAM155B - CXorf63|TED|TMEM28|bB57D9.1 HGNC:30701|Ensembl:ENSG00000130054|HPRD:06740|Vega:OTTHUMG00000021756 X Xq13.1 family with sequence similarity 155, member B protein-coding FAM155B family with sequence similarity 155, member B O bB57D9.1 (TED protein)|transmembrane protein 28|transmembrane protein FAM155B 20121230 -9606 27113 BBC3 - JFY-1|JFY1|PUMA HGNC:17868|MIM:605854|Ensembl:ENSG00000105327|HPRD:16165 19 19q13.3-q13.4 BCL2 binding component 3 protein-coding BBC3 BCL2 binding component 3 O bcl-2-binding component 3|p53 up-regulated modulator of apoptosis 20121230 -9606 27115 PDE7B RP11-472E5.2 bA472E5.1 HGNC:8792|MIM:604645|Ensembl:ENSG00000171408|HPRD:06870|Vega:OTTHUMG00000015641 6 6q23-q24 phosphodiesterase 7B protein-coding PDE7B phosphodiesterase 7B O cAMP-specific 3',5'-cyclic phosphodiesterase 7B|high-affinity cAMP-specific 3',5'-cyclic phosphodiesterase|rolipram-insensitive phosphodiesterase type 7 20121230 -9606 27120 DKKL1 UNQ735/PRO1429 CT34|SGY|SGY-1|SGY1 HGNC:16528|MIM:605418|Ensembl:ENSG00000104901|HPRD:10396 19 19q13.33 dickkopf-like 1 protein-coding DKKL1 dickkopf-like 1 O cancer/testis antigen 34|dickkopf-like protein 1|protein soggy-1|soggy|soggy-1 20121230 -9606 27121 DKK4 - DKK-4 HGNC:2894|MIM:605417|Ensembl:ENSG00000104371|HPRD:05660|Vega:OTTHUMG00000164167 8 8p11.2-p11.1 dickkopf homolog 4 (Xenopus laevis) protein-coding DKK4 dickkopf homolog 4 (Xenopus laevis) O dickkopf-4|dickkopf-related protein 4|hDkk-4 20121230 -9606 27122 DKK3 UNQ258/PRO295 REIC|RIG HGNC:2893|MIM:605416|Ensembl:ENSG00000050165|HPRD:05659|Vega:OTTHUMG00000165709 11 11p15.2 dickkopf 3 homolog (Xenopus laevis) protein-coding DKK3 dickkopf 3 homolog (Xenopus laevis) O RIG-like 5-6|RIG-like 7-1|dickkopf homolog 3|dickkopf-3|dickkopf-related protein 3|dkk-3|hDkk-3|regulated in glioma 20121230 -9606 27123 DKK2 UNQ682/PRO1316 DKK-2 HGNC:2892|MIM:605415|Ensembl:ENSG00000155011|HPRD:05658|Vega:OTTHUMG00000131216 4 4q25 dickkopf 2 homolog (Xenopus laevis) protein-coding DKK2 dickkopf 2 homolog (Xenopus laevis) O dickkopf homolog 2|dickkopf related protein-2|dickkopf-2|dickkopf-related protein 2|hDkk-2 20121230 -9606 27124 INPP5J - INPP5|PIB5PA|PIPP HGNC:8956|MIM:606481|Ensembl:ENSG00000185133|HPRD:07573|Vega:OTTHUMG00000151206 22 22q12.2 inositol polyphosphate-5-phosphatase J protein-coding INPP5J inositol polyphosphate-5-phosphatase J O inositol polyphosphate 5-phosphatase J|phosphatidylinositol (4,5) bisphosphate 5-phosphatase, A|phosphatidylinositol 4,5-bisphosphate 5-phosphatase A 20121230 -9606 27125 AFF4 HSPC092 AF5Q31|MCEF HGNC:17869|MIM:604417|Ensembl:ENSG00000072364|HPRD:09187|Vega:OTTHUMG00000059838 5 5q31 AF4/FMR2 family, member 4 protein-coding AFF4 AF4/FMR2 family, member 4 O AF4/FMR2 family member 4|ALL1-fused gene from chromosome 5q31 protein|major CDK9 elongation factor-associated protein 20121230 -9606 27127 SMC1B RP1-102D24.3 SMC1BETA|SMC1L2|bK268H5|bK268H5.5 HGNC:11112|MIM:608685|Ensembl:ENSG00000077935|HPRD:10564|Vega:OTTHUMG00000151334 22 22q13.31 structural maintenance of chromosomes 1B protein-coding SMC1B structural maintenance of chromosomes 1B O SMC protein 1B|SMC-1-beta|SMC-1B|SMC1 (structural maintenance of chromosomes 1, yeast)-like 1|SMC1 structural maintenance of chromosomes 1-like 2|mitosis-specific chromosome segregation protein like protein beta|structural maintenance of chromosomes protein 1B 20121230 -9606 27128 CYTH4 RP1-63G5.4 CYT4|DJ63G5.1|PSCD4 HGNC:9505|MIM:606514|Ensembl:ENSG00000100055|HPRD:07354|Vega:OTTHUMG00000150562 22 22q12.3-q13.1 cytohesin 4 protein-coding CYTH4 cytohesin 4 O PH, SEC7 and coiled-coil domain-containing protein 4|cytohesin-4|pleckstrin homology, Sec7 and coiled-coil domains 4|pleckstrin homology, Sec7 and coiled/coil domains 4 20121230 -9606 27129 HSPB7 RP11-5P18.6 cvHSP HGNC:5249|MIM:610692|Ensembl:ENSG00000173641|HPRD:13684|Vega:OTTHUMG00000009531 1 1p36.23-p34.3 heat shock 27kDa protein family, member 7 (cardiovascular) protein-coding HSPB7 heat shock 27kDa protein family, member 7 (cardiovascular) O cardiovascular heat shock protein|heat shock 27kD protein family, member 7 (cardiovascular)|heat shock protein beta-7 20121230 -9606 27130 INVS RP11-208F1.1 INV|NPH2|NPHP2 HGNC:17870|MIM:243305|Ensembl:ENSG00000119509|HPRD:08356|Vega:OTTHUMG00000020364 9 9q31 inversin protein-coding INVS inversin O inversion of embryo turning homolog|inversion of embryonic turning|nephrocystin-2 20121230 -9606 27131 SNX5 RP11-504H3.2 - HGNC:14969|MIM:605937|Ensembl:ENSG00000089006|HPRD:10439|Vega:OTTHUMG00000031953 20 20p11 sorting nexin 5 protein-coding SNX5 sorting nexin 5 O sorting nexin-5 20121230 -9606 27132 CPNE7 - - HGNC:2320|MIM:605689|Ensembl:ENSG00000178773|HPRD:05749|Vega:OTTHUMG00000138051 16 16q24.3 copine VII protein-coding CPNE7 copine VII O copine 7|copine-7 20121230 -9606 27133 KCNH5 - EAG2|H-EAG2|Kv10.2 HGNC:6254|MIM:605716|Ensembl:ENSG00000140015|HPRD:10421|Vega:OTTHUMG00000029041 14 14q23.1 potassium voltage-gated channel, subfamily H (eag-related), member 5 protein-coding KCNH5 potassium voltage-gated channel, subfamily H (eag-related), member 5 O ether-a-go-go potassium channel 2|ether-a-go-go-related potassium channel 2|hEAG2|potassium channel HEAG2|potassium voltage-gated channel subfamily H member 5|voltage-gated potassium channel EAG2|voltage-gated potassium channel subunit Kv10.2 20121230 -9606 27134 TJP3 - ZO-3|ZO3 HGNC:11829|MIM:612689|Ensembl:ENSG00000105289|HPRD:18194|Vega:OTTHUMG00000180872 19 19p13.3 tight junction protein 3 protein-coding TJP3 tight junction protein 3 O tight junction protein 3 (zona occludens 3)|tight junction protein ZO-3|zona occludens protein 3|zonula occludens protein 3 20121230 -9606 27136 MORC1 - CT33|MORC|ZCW6 HGNC:7198|MIM:603205|Ensembl:ENSG00000114487|HPRD:04439|Vega:OTTHUMG00000159209 3 3q13 MORC family CW-type zinc finger 1 protein-coding MORC1 MORC family CW-type zinc finger 1 O MORC family CW-type zinc finger protein 1|cancer/testis antigen 33|microrchidia, mouse, homolog of 20121230 -9606 27141 CIDEB - - HGNC:1977|MIM:604441|Ensembl:ENSG00000136305|HPRD:11981|Vega:OTTHUMG00000171555 14 14q12 cell death-inducing DFFA-like effector b protein-coding CIDEB cell death-inducing DFFA-like effector b O cell death activator CIDE-B 20121230 -9606 27143 PALD1 RP11-710A11.1 KIAA1274|PALD HGNC:23530|MIM:614656|Ensembl:ENSG00000107719|HPRD:11419|Vega:OTTHUMG00000018411 10 10q22.1 phosphatase domain containing, paladin 1 protein-coding PALD1 phosphatase domain containing, paladin 1 O paladin|palladin 20121230 -9606 27145 FILIP1 - FILIP HGNC:21015|MIM:607307|Ensembl:ENSG00000118407|HPRD:09533|Vega:OTTHUMG00000015056 6 6q14.1 filamin A interacting protein 1 protein-coding FILIP1 filamin A interacting protein 1 O filamin-A-interacting protein 1 20121230 -9606 27146 FAM184B - - HGNC:29235|Ensembl:ENSG00000047662|Vega:OTTHUMG00000160287 4 4p16 family with sequence similarity 184, member B protein-coding FAM184B family with sequence similarity 184, member B O protein FAM184B 20121230 -9606 27147 DENND2A - FAM31D|KIAA1277 HGNC:22212|Ensembl:ENSG00000146966|HPRD:17210|Vega:OTTHUMG00000157411 7 7q34 DENN/MADD domain containing 2A protein-coding DENND2A DENN/MADD domain containing 2A O DENN domain-containing protein 2A 20121230 -9606 27148 STK36 - FU HGNC:17209|MIM:607652|Ensembl:ENSG00000163482|HPRD:09631|Vega:OTTHUMG00000133079 2 2q35 serine/threonine kinase 36 protein-coding STK36 serine/threonine kinase 36 O fused homolog|serine/threonine-protein kinase 36 20121230 -9606 27151 CPAMD8 - K-CAP|VIP HGNC:23228|MIM:608841|Ensembl:ENSG00000160111|HPRD:09892|Vega:OTTHUMG00000133549 19 19p13.11 C3 and PZP-like, alpha-2-macroglobulin domain containing 8 protein-coding CPAMD8 C3 and PZP-like, alpha-2-macroglobulin domain containing 8 O C3 and PZP-like alpha-2-macroglobulin domain-containing protein 8|alpha-2 macroglobulin family protein VIP 20121230 -9606 27152 INTU - INT|PDZD6|PDZK6 HGNC:29239|MIM:610621|Ensembl:ENSG00000164066|HPRD:15113|Vega:OTTHUMG00000161202 4 4q28.1 inturned planar cell polarity effector homolog (Drosophila) protein-coding INTU inturned planar cell polarity effector homolog (Drosophila) O PDZ domain containing 6|PDZ domain-containing protein 6|homolog of inturned|protein inturned 20121230 -9606 27153 ZNF777 - - HGNC:22213|Ensembl:ENSG00000196453|HPRD:13849|Vega:OTTHUMG00000158967 7 7q36.1 zinc finger protein 777 protein-coding ZNF777 zinc finger protein 777 O - 20121230 -9606 27154 BRPF3 RP3-524E15.1 - HGNC:14256|Ensembl:ENSG00000096070|HPRD:16565|Vega:OTTHUMG00000014589 6 6p21 bromodomain and PHD finger containing, 3 protein-coding BRPF3 bromodomain and PHD finger containing, 3 O bromodomain and PHD finger-containing protein 3 20121230 -9606 27156 RTDR1 - - HGNC:13437|MIM:605663|Ensembl:ENSG00000100218|HPRD:16136|Vega:OTTHUMG00000150602 22 22q11.2 rhabdoid tumor deletion region gene 1 protein-coding RTDR1 rhabdoid tumor deletion region gene 1 O rhabdoid tumor deletion region protein 1 20121230 -9606 27158 NDOR1 RP11-350O14.11-001 NR1|bA350O14.9 HGNC:29838|MIM:606073|Ensembl:ENSG00000188566|HPRD:10444|Vega:OTTHUMG00000020986 9 9q34.3 NADPH dependent diflavin oxidoreductase 1 protein-coding NDOR1 NADPH dependent diflavin oxidoreductase 1 O NADPH-dependent FMN and FAD-containing oxidoreductase|NADPH-dependent diflavin oxidoreductase 1 20121230 -9606 27159 CHIA RP5-1125M8.1 AMCASE|CHIT2|TSA1902 HGNC:17432|MIM:606080|Ensembl:ENSG00000134216|HPRD:09355|Vega:OTTHUMG00000011165 1 1p13.2 chitinase, acidic protein-coding CHIA chitinase, acidic O acidic mammalian chitinase|lung-specific protein TSA1902 20121230 -9606 27160 INGX - ING1-like|ING2 HGNC:6064|MIM:300452|HPRD:02348 X Xq12 inhibitor of growth family, X-linked, pseudogene pseudo INGX inhibitor of growth family, X-linked, pseudogene O - 20121230 -9606 27161 EIF2C2 - AGO2|Q10 HGNC:3263|MIM:606229|Ensembl:ENSG00000123908|HPRD:06943|Vega:OTTHUMG00000164232 8 8q24 eukaryotic translation initiation factor 2C, 2 protein-coding EIF2C2 eukaryotic translation initiation factor 2C, 2 O PAZ Piwi domain protein|PPD|argonaute 2|argonaute2|eIF-2C 2|eIF2C 2|hAgo2|protein argonaute-2|protein slicer 20121230 -9606 27163 NAAA - ASAHL|PLT HGNC:736|MIM:607469|Ensembl:ENSG00000138744|HPRD:12122|Vega:OTTHUMG00000160855 4 4q21.1 N-acylethanolamine acid amidase protein-coding NAAA N-acylethanolamine acid amidase O ASAH-like protein|N-acylethanolamine-hydrolyzing acid amidase|acid ceramidase-like protein 20121230 -9606 27164 SALL3 - ZNF796 HGNC:10527|MIM:605079|Ensembl:ENSG00000256463|HPRD:05467|Vega:OTTHUMG00000132896 18 18q23 sal-like 3 (Drosophila) protein-coding SALL3 sal-like 3 (Drosophila) O C2H2 zinc finger protein SALL3|hSALL3|sal-like protein 3|spalt-like zinc finger protein|zinc finger protein 796 20121230 -9606 27165 GLS2 - GA|GLS|LGA|hLGA HGNC:29570|MIM:606365|Ensembl:ENSG00000135423|HPRD:05901|Vega:OTTHUMG00000140379 12 12q13 glutaminase 2 (liver, mitochondrial) protein-coding GLS2 glutaminase 2 (liver, mitochondrial) O L-glutaminase|L-glutamine amidohydrolase|breast cell glutaminase|glutaminase GA|glutaminase I|glutaminase liver isoform, mitochondrial|phosphate-activated glutaminase|phosphate-dependent glutaminase 20121230 -9606 27166 PRELID1 CGI-106 PRELI|PX19|SBBI12 HGNC:30255|MIM:605733|Ensembl:ENSG00000169230|HPRD:16149|Vega:OTTHUMG00000130847 5 5q35.3 PRELI domain containing 1 protein-coding PRELID1 PRELI domain containing 1 O 25 kDa protein of relevant evolutionary and lymphoid interest|PRELI domain-containing protein 1, mitochondrial|px19-like protein 20121230 -9606 27168 KERSMCR - - HGNC:6310 17 17p11.2 cytokeratin, Smith Magenis syndrome chromosome region other KERSMCR cytokeratin, Smith Magenis syndrome chromosome region O - 20121201 -9606 27169 TRESMCR - - HGNC:12268 17 17p11.2 TRE oncogene, Smith Magenis syndrome chromosome region other TRESMCR TRE oncogene, Smith Magenis syndrome chromosome region O - 20121201 -9606 27170 COTL1P1 - CLPSMCR HGNC:2086 17 17p11.2 coactosin-like 1 (Dictyostelium) pseudogene 1 pseudo COTL1P1 coactosin-like 1 (Dictyostelium) pseudogene 1 O - 20121230 -9606 27173 SLC39A1 CGI-08 ZIP1|ZIRTL HGNC:12876|MIM:604740|Ensembl:ENSG00000143570|HPRD:11984|Vega:OTTHUMG00000037158 1 1q21 solute carrier family 39 (zinc transporter), member 1 protein-coding SLC39A1 solute carrier family 39 (zinc transporter), member 1 O solute carrier family 39 (zinc transporter), member 3|zinc transporter ZIP1|zrt- and Irt-like protein 1 20121230 -9606 27175 TUBG2 - - HGNC:12419|MIM:605785|Ensembl:ENSG00000037042|HPRD:05778|Vega:OTTHUMG00000180640 17 17q21 tubulin, gamma 2 protein-coding TUBG2 tubulin, gamma 2 O gamma-2-tubulin|tubulin gamma-2 chain 20121230 -9606 27177 IL36B - FIL1|FIL1-(ETA)|FIL1H|FILI-(ETA)|IL-1F8|IL-1H2|IL1-ETA|IL1F8|IL1H2 HGNC:15564|MIM:605508|Ensembl:ENSG00000136696|HPRD:05694|Vega:OTTHUMG00000131338 2 2q14 interleukin 36, beta protein-coding IL36B interleukin 36, beta O FIL1 eta|IL-1 eta|IL-1F8 (FIL1-eta)|IL1F8 (Canonical product IL-1F8a)|Interleukin-1 Superfamily e|family of interleukin 1-eta|interleukin 1 family, member 8 (eta)|interleukin 1, eta|interleukin-1 eta|interleukin-1 family member 8|interleukin-1 homolog 2|interleukin-36 beta 20121230 -9606 27178 IL37 - FIL1|FIL1(ZETA)|FIL1Z|IL-1F7|IL-1H|IL-1H4|IL-1RP1|IL-37|IL1F7|IL1H4|IL1RP1 HGNC:15563|MIM:605510|Ensembl:ENSG00000125571|HPRD:05695|Vega:OTTHUMG00000131345 2 2q12-q14.1 interleukin 37 protein-coding IL37 interleukin 37 O FIL1 zeta|IL-1 zeta|IL-1F7b (IL-1H4, IL-1H, IL-1RP1)|IL-1X protein|IL1F7 (canonical product IL-1F7b)|interleukin 1 family member 7|interleukin 1, zeta|interleukin-1 homolog 4|interleukin-1 superfamily z|interleukin-1-related protein|interleukin-23|interleukin-37 20121230 -9606 27179 IL36A - FIL1|FIL1(EPSILON)|FIL1E|IL-1F6|IL1(EPSILON)|IL1F6 HGNC:15562|MIM:605509|Ensembl:ENSG00000136694|HPRD:16113|Vega:OTTHUMG00000153320 2 2q12-q14.1 interleukin 36, alpha protein-coding IL36A interleukin 36, alpha O FIL1 epsilon|IL-1 epsilon|IL-1F6 (FIL-1-epsilon)|interleukin 1 family, member 6 (epsilon)|interleukin 1, epsilon|interleukin-1 epsilon|interleukin-1 family member 6|interleukin-36 alpha 20121230 -9606 27180 SIGLEC9 UNQ668/PRO1302 CD329|CDw329|FOAP-9|OBBP-LIKE|siglec-9 HGNC:10878|MIM:605640|Ensembl:ENSG00000129450|HPRD:16133 19 19q13.41 sialic acid binding Ig-like lectin 9 protein-coding SIGLEC9 sialic acid binding Ig-like lectin 9 O protein FOAP-9|sialic acid-binding Ig-like lectin 9 20121230 -9606 27181 SIGLEC8 - SAF2|SIGLEC-8|SIGLEC8L HGNC:10877|MIM:605639|Ensembl:ENSG00000105366|HPRD:16132 19 19q13.33-q13.41 sialic acid binding Ig-like lectin 8 protein-coding SIGLEC8 sialic acid binding Ig-like lectin 8 O CDw329|SAF-2|sialic acid-binding Ig-like lectin 8|sialoadhesin family member 2 20121230 -9606 27183 VPS4A - SKD1|SKD1A|SKD2|VPS4|VPS4-1 HGNC:13488|MIM:609982|Ensembl:ENSG00000132612|HPRD:11676|Vega:OTTHUMG00000175589 16 16q22.1 vacuolar protein sorting 4 homolog A (S. cerevisiae) protein-coding VPS4A vacuolar protein sorting 4 homolog A (S. cerevisiae) O SKD1-homolog|hVPS4|vacuolar protein sorting factor 4A|vacuolar protein sorting-associated protein 4A|vacuolar sorting protein 4 20121230 -9606 27184 DISC2 - DISC1-AS1|DISC1OS|NCRNA00015 HGNC:2889|MIM:606271 1 1q42.1 disrupted in schizophrenia 2 (non-protein coding) miscRNA DISC2 disrupted in schizophrenia 2 (non-protein coding) O - 20121230 -9606 27185 DISC1 RP4-730B13.1 C1orf136|SCZD9 HGNC:2888|MIM:605210|Ensembl:ENSG00000162946|HPRD:05553|Vega:OTTHUMG00000037835 1 1q42.1 disrupted in schizophrenia 1 protein-coding DISC1 disrupted in schizophrenia 1 O disrupted in schizophrenia 1 protein 20121230 -9606 27187 MOCS1P1 - MOCS1P2 HGNC:7191 16 16q12.1 molybdenum cofactor synthesis 1 pseudogene 1 pseudo MOCS1P1 molybdenum cofactor synthesis 1 pseudogene 1 O - 20121230 -9606 27189 IL17C UNQ561/PRO1122 CX2|IL-17C|IL-21 HGNC:5983|MIM:604628|Ensembl:ENSG00000124391|HPRD:06863|Vega:OTTHUMG00000173241 16 16q24 interleukin 17C protein-coding IL17C interleukin 17C O cytokine CX2|interleukin-17C 20121230 -9606 27190 IL17B UNQ516/PRO1031 IL-17B|IL-20|NIRF|ZCYTO7 HGNC:5982|MIM:604627|Ensembl:ENSG00000127743|HPRD:05217|Vega:OTTHUMG00000130051 5 5q33.1 interleukin 17B protein-coding IL17B interleukin 17B O cytokine Zcyto7|cytokine-like protein ZCYTO7|interleukin 20|interleukin-17 beta|interleukin-17B|interleukin-20|neuronal interleukin-17 related factor|neuronal interleukin-17-related factor 20121230 -9606 27192 TRAPPC2P6 - SEDLP6 HGNC:10715 Y Yq11.23 trafficking protein particle complex 2 pseudogene 6 pseudo TRAPPC2P6 trafficking protein particle complex 2 pseudogene 6 O - 20090331 -9606 27193 TRAPPC2P5 - SEDLP5 HGNC:10714 Y Yq11.23 trafficking protein particle complex 2 pseudogene 5 pseudo TRAPPC2P5 trafficking protein particle complex 2 pseudogene 5 O - 20121209 -9606 27194 TRAPPC2P4 - SEDLP4 HGNC:10713 Y Yq11.23 trafficking protein particle complex 2 pseudogene 4 pseudo TRAPPC2P4 trafficking protein particle complex 2 pseudogene 4 O - 20121209 -9606 27195 TRAPPC2P3 - SEDLP3 HGNC:10712 Y Yq11.23 trafficking protein particle complex 2 pseudogene 3 pseudo TRAPPC2P3 trafficking protein particle complex 2 pseudogene 3 O - 20121209 -9606 27196 TRAPPC2P2 - SEDLP2 HGNC:10711 8 8q13.3 trafficking protein particle complex 2 pseudogene 2 pseudo TRAPPC2P2 trafficking protein particle complex 2 pseudogene 2 O - 20121230 -9606 27197 GPR82 RP11-204C16.5 - HGNC:4533|MIM:300748|Ensembl:ENSG00000171657|HPRD:06084|Vega:OTTHUMG00000021373 X Xp11.4 G protein-coupled receptor 82 protein-coding GPR82 G protein-coupled receptor 82 O probable G-protein coupled receptor 82 20121230 -9606 27198 HCAR1 FKSG80 GPR104|GPR81|HCA1|LACR1|TA-GPCR HGNC:4532|MIM:606923|Ensembl:ENSG00000196917|HPRD:06083|Vega:OTTHUMG00000168863 12 12q24.31 hydroxycarboxylic acid receptor 1 protein-coding HCAR1 hydroxycarboxylic acid receptor 1 O G protein-coupled receptor 104|G protein-coupled receptor 81|G-protein coupled receptor 104|G-protein coupled receptor 81|T-cell activation G protein-coupled receptor|hydroxy-carboxylic acid receptor 1|lactate receptor 1 20121230 -9606 27199 OXGR1 - GPR80|GPR99|P2RY15|P2Y15 HGNC:4531|MIM:606922|Ensembl:ENSG00000165621|HPRD:06082|Vega:OTTHUMG00000017236 13 13q32.1 oxoglutarate (alpha-ketoglutarate) receptor 1 protein-coding OXGR1 oxoglutarate (alpha-ketoglutarate) receptor 1 O 2-oxoglutarate receptor 1|G protein-coupled receptor 80|G protein-coupled receptor 99|G-protein coupled receptor 80|G-protein coupled receptor 99|P2Y purinoceptor 15|P2Y-like GPCR|P2Y-like nucleotide receptor|alpha-ketoglutarate receptor 1|oxoglutarate receptor 1|seven transmembrane helix receptor 20121230 -9606 27200 GPR79 - GPR79P HGNC:4529 3 3q25.32 G protein-coupled receptor 79, pseudogene pseudo GPR79 G protein-coupled receptor 79, pseudogene O - 20121230 -9606 27201 GPR78 UNQ5925/PRO19818 - HGNC:4528|MIM:606921|Ensembl:ENSG00000155269|HPRD:06081|Vega:OTTHUMG00000128483 4 4p16.1 G protein-coupled receptor 78 protein-coding GPR78 G protein-coupled receptor 78 O G-protein coupled receptor 78 20121230 -9606 27202 GPR77 - C5L2|GPF77 HGNC:4527|MIM:609949|HPRD:17072 19 19q13.33 G protein-coupled receptor 77 protein-coding GPR77 G protein-coupled receptor 77 O C5a anaphylatoxin chemotactic receptor C5L2|G protein-coupled receptor C5L2 20121230 -9606 27229 TUBGCP4 - 76P|GCP-4|GCP4|h76p|hGCP4|hGrip76 HGNC:16691|MIM:609610|Ensembl:ENSG00000137822|HPRD:10616|Vega:OTTHUMG00000176647 15 15q15 tubulin, gamma complex associated protein 4 protein-coding TUBGCP4 tubulin, gamma complex associated protein 4 O gamma tubulin ring complex protein (76p gene)|gamma-ring complex protein 76 kDa|gamma-tubulin complex component 4 20121230 -9606 27230 SERP1 - RAMP4 HGNC:10759|Ensembl:ENSG00000120742|HPRD:18037|Vega:OTTHUMG00000159769 3 3q25.1 stress-associated endoplasmic reticulum protein 1 protein-coding SERP1 stress-associated endoplasmic reticulum protein 1 O ribosome associated membrane protein 4|ribosome-attached membrane protein 4 20121230 -9606 27231 NMRK2 - ITGB1BP3|MIBP|NRK2 HGNC:17871|MIM:608705|Ensembl:ENSG00000077009|HPRD:16371 19 19p13.3 nicotinamide riboside kinase 2 protein-coding NMRK2 nicotinamide riboside kinase 2 O NRK 2|RNK 2|integrin beta 1 binding protein 3|integrin beta-1-binding protein 3|muscle integrin-binding protein|muscle-specific beta 1 integrin binding protein|nicotinic acid riboside kinase 2|nmR-K 2|ribosylnicotinamide kinase 2|ribosylnicotinic acid kinase 2 20121230 -9606 27232 GNMT - - HGNC:4415|MIM:606628|Ensembl:ENSG00000124713|HPRD:05970|Vega:OTTHUMG00000014712 6 6p12 glycine N-methyltransferase protein-coding GNMT glycine N-methyltransferase O - 20121230 -9606 27233 SULT1C4 - SULT1C|SULT1C2 HGNC:11457|MIM:608357|Ensembl:ENSG00000198075|HPRD:07461|Vega:OTTHUMG00000130958 2 2q12.3 sulfotransferase family, cytosolic, 1C, member 4 protein-coding SULT1C4 sulfotransferase family, cytosolic, 1C, member 4 O ST1C4|SULT1C#2|sulfotransferase 1C2|sulfotransferase 1C4|sulfotransferase family, cytosolic, 1C, member 2|sulfotransferase family, cytosolic, 1C, member C2 20121230 -9606 27235 COQ2 - CL640|COQ10D1 HGNC:25223|MIM:609825|Ensembl:ENSG00000173085|HPRD:13062|Vega:OTTHUMG00000160940 4 4q21.23 coenzyme Q2 homolog, prenyltransferase (yeast) protein-coding COQ2 coenzyme Q2 homolog, prenyltransferase (yeast) O 4-hydroxybenzoate polyprenyltransferase, mitochondrial|PHB:polyprenyltransferase|para-hydroxybenzoate-polyprenyltransferase, mitochondrial 20121230 -9606 27236 ARFIP1 - HSU52521 HGNC:21496|MIM:605928|Ensembl:ENSG00000164144|HPRD:09331|Vega:OTTHUMG00000161468 4 4q31.3 ADP-ribosylation factor interacting protein 1 protein-coding ARFIP1 ADP-ribosylation factor interacting protein 1 O ADP-ribosylation factor-interacting protein 1|arfaptin 1|arfaptin-1 20121230 -9606 27237 ARHGEF16 RP11-168F9.1 GEF16|NBR HGNC:15515|Ensembl:ENSG00000130762|HPRD:12478|Vega:OTTHUMG00000000625 1 1p36.3 Rho guanine nucleotide exchange factor (GEF) 16 protein-coding ARHGEF16 Rho guanine nucleotide exchange factor (GEF) 16 O Rho guanine exchange factor (GEF) 16|ephexin-4|rho guanine nucleotide exchange factor 16 20121230 -9606 27238 GPKOW - GPATC5|GPATCH5|Spp2|T54 HGNC:30677|Ensembl:ENSG00000068394|HPRD:06737|Vega:OTTHUMG00000021511 X Xp11.23 G patch domain and KOW motifs protein-coding GPKOW G patch domain and KOW motifs O G patch domain and KOW motifs-containing protein|protein MOS2 homolog 20121230 -9606 27239 GPR162 - A-2|GRCA HGNC:16693|Ensembl:ENSG00000250510|HPRD:13608|Vega:OTTHUMG00000168368 12 12p13 G protein-coupled receptor 162 protein-coding GPR162 G protein-coupled receptor 162 O gene rich cluster, A|gene-rich cluster gene A protein|probable G-protein coupled receptor 162 20121230 -9606 27240 SIT1 - RP11-331F9.5|SIT|SIT-R HGNC:17710|MIM:604964|Ensembl:ENSG00000137078|HPRD:05394|Vega:OTTHUMG00000019867 9 9p13-p12 signaling threshold regulating transmembrane adaptor 1 protein-coding SIT1 signaling threshold regulating transmembrane adaptor 1 O SHP-2 interacting transmembrane adaptor protein|SHP2 interacting transmembrane adaptor|SHP2-interacting transmembrane adapter protein|SHP2-interacting transmembrane adaptor protein|gp30/40|signaling threshold-regulating transmembrane adapter 1|suppression inducing transmembrane adaptor 1|suppression-inducing transmembrane adapter 1 20121230 -9606 27241 BBS9 - B1|C18|D1|PTHB1 HGNC:30000|MIM:607968|Ensembl:ENSG00000122507|HPRD:16262|Vega:OTTHUMG00000128659 7 7p14 Bardet-Biedl syndrome 9 protein-coding BBS9 Bardet-Biedl syndrome 9 O PTH-responsive osteosarcoma B1 protein|bardet-Biedl syndrome 9 protein|parathyroid hormone-responsive B1 gene protein|protein PTHB1 20121230 -9606 27242 TNFRSF21 UNQ437/PRO868 BM-018|CD358|DR6 HGNC:13469|MIM:605732|Ensembl:ENSG00000146072|HPRD:05759|Vega:OTTHUMG00000014796 6 6p21.1 tumor necrosis factor receptor superfamily, member 21 protein-coding TNFRSF21 tumor necrosis factor receptor superfamily, member 21 O TNFR-related death receptor 6|death receptor 6|tumor necrosis factor receptor superfamily member 21 20121230 -9606 27243 CHMP2A - BC-2|BC2|CHMP2|VPS2|VPS2A HGNC:30216|MIM:610893|Ensembl:ENSG00000130724|HPRD:12520 19 19q charged multivesicular body protein 2A protein-coding CHMP2A charged multivesicular body protein 2A O VPS2 homolog A|charged multivesicular body protein 2a|chromatin modifying protein 2A|chromatin-modifying protein 2a|hVps2-1|putative breast adenocarcinoma marker (32kD)|putative breast adenocarcinoma marker BC-2|vacuolar protein sorting-associated protein 2-1|vps2-1 20121230 -9606 27244 SESN1 RP11-787I22.2 PA26|SEST1 HGNC:21595|MIM:606103|Ensembl:ENSG00000080546|HPRD:07310|Vega:OTTHUMG00000015338 6 6q21 sestrin 1 protein-coding SESN1 sestrin 1 O p53 activated gene 26|p53 regulated PA26 nuclear protein|sestrin-1 20121230 -9606 27245 AHDC1 - CL23945|DJ159A19.3|RP1-159A19.1 HGNC:25230|Ensembl:ENSG00000126705|HPRD:10885|Vega:OTTHUMG00000003398 1 1p36.13 AT hook, DNA binding motif, containing 1 protein-coding AHDC1 AT hook, DNA binding motif, containing 1 O AT-hook DNA-binding motif-containing protein 1|a.T hook DNA-binding motif-containing protein 1 20121230 -9606 27246 RNF115 - BCA2|ZNF364 HGNC:18154|Ensembl:ENSG00000121848|HPRD:18328|Vega:OTTHUMG00000013758 1 1q21.1 ring finger protein 115 protein-coding RNF115 ring finger protein 115 O E3 ubiquitin-protein ligase RNF115|rabring 7|zinc finger protein 364 20121230 -9606 27247 NFU1 CGI-33 HIRIP|HIRIP5|MMDS1|NIFUC|Nfu|NifU HGNC:16287|MIM:608100|Ensembl:ENSG00000169599|HPRD:12163|Vega:OTTHUMG00000152668 2 2p15-p13 NFU1 iron-sulfur cluster scaffold homolog (S. cerevisiae) protein-coding NFU1 NFU1 iron-sulfur cluster scaffold homolog (S. cerevisiae) O HIRA-interacting protein 5|NFU1 iron-sulfur cluster scaffold homolog, mitochondrial|NifU-like C-terminal domain containing|iron-sulfur cluster scaffold protein 20121230 -9606 27248 ERLEC1 UNQ1878/PRO4321 C2orf30|CIM|CL24936|CL25084|XTP3-B|XTP3TPB HGNC:25222|MIM:611229|Ensembl:ENSG00000068912|HPRD:10310|Vega:OTTHUMG00000129281 2 2p16.2 endoplasmic reticulum lectin 1 protein-coding ERLEC1 endoplasmic reticulum lectin 1 O ER lectin|XTP3-transactivated gene B protein|XTP3-transactivated protein B|cancer invasion and metastasis-related|erlectin 1 20121230 -9606 27249 MMADHC HSPC161 C2orf25|CL25022|cblD HGNC:25221|MIM:611935|Ensembl:ENSG00000168288|HPRD:10781|Vega:OTTHUMG00000155558 2 2q23.2 methylmalonic aciduria (cobalamin deficiency) cblD type, with homocystinuria protein-coding MMADHC methylmalonic aciduria (cobalamin deficiency) cblD type, with homocystinuria O methylmalonic aciduria and homocystinuria type D protein, mitochondrial|protein C2orf25, mitochondrial 20121230 -9606 27250 PDCD4 RP11-348N5.4 H731 HGNC:8763|MIM:608610|Ensembl:ENSG00000150593|HPRD:10549|Vega:OTTHUMG00000019048 10 10q24 programmed cell death 4 (neoplastic transformation inhibitor) protein-coding PDCD4 programmed cell death 4 (neoplastic transformation inhibitor) O neoplastic transformation inhibitor protein|nuclear antigen H731|programmed cell death protein 4|protein 197/15a 20121230 -9606 27251 HR44 - - MIM:605959 - - Hr44 antigen protein-coding - - - - 20120710 -9606 27252 KLHL20 - KHLHX|KLEIP|KLHLX|RP3-383J4.3 HGNC:25056|Ensembl:ENSG00000076321|HPRD:13918|Vega:OTTHUMG00000040548 1 1q25.1 kelch-like 20 (Drosophila) protein-coding KLHL20 kelch-like 20 (Drosophila) O Kelch motif containing protein|kelch-like ECT2 interacting protein|kelch-like ECT2-interacting protein|kelch-like protein 20|kelch-like protein X 20121230 -9606 27253 PCDH17 - PCDH68|PCH68 HGNC:14267|MIM:611760|Ensembl:ENSG00000118946|Vega:OTTHUMG00000016992 13 13q21.1 protocadherin 17 protein-coding PCDH17 protocadherin 17 O protocadherin 68|protocadherin-17|protocadherin-68 20121230 -9606 27254 CSDC2 - PIPPIN|dJ347H13.2 HGNC:30359|Ensembl:ENSG00000172346|HPRD:15140|Vega:OTTHUMG00000150967 22 22q13.2 cold shock domain containing C2, RNA binding protein-coding CSDC2 cold shock domain containing C2, RNA binding O RNA-binding protein pippin|cold shock domain-containing protein C2 20121230 -9606 27255 CNTN6 - NB3 HGNC:2176|MIM:607220|Ensembl:ENSG00000134115|HPRD:06242|Vega:OTTHUMG00000119030 3 3p26-p25 contactin 6 protein-coding CNTN6 contactin 6 O contactin-6|neural adhesion molecule|neural recognition molecule NB-3 20121230 -9606 27257 LSM1 - CASM|YJL124C HGNC:20472|MIM:607281|Ensembl:ENSG00000175324|HPRD:06281|Vega:OTTHUMG00000164051 8 8p11.2 LSM1 homolog, U6 small nuclear RNA associated (S. cerevisiae) protein-coding LSM1 LSM1 homolog, U6 small nuclear RNA associated (S. cerevisiae) O U6 snRNA-associated Sm-like protein LSm1|cancer-associated Sm-like protein|small nuclear ribonuclear CaSm 20121230 -9606 27258 LSM3 MDS017 SMX4|USS2|YLR438C HGNC:17874|MIM:607283|Ensembl:ENSG00000170860|HPRD:06283|Vega:OTTHUMG00000129838 3 3p25.1 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) protein-coding LSM3 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) O U6 snRNA-associated Sm-like protein LSm3 20121230 -9606 27259 HPLH1 - FHL1|HLH1 HGNC:23824|MIM:267700 9 9q21.3-q22 hemophagocytic lymphohistiocytosis 1 unknown HPLH1 hemophagocytic lymphohistiocytosis 1 O - 20120622 -9606 27283 TINAG RP11-124I4.1 TIN-AG HGNC:14599|MIM:606749|Ensembl:ENSG00000137251|HPRD:09483|Vega:OTTHUMG00000014893 6 6p12.1 tubulointerstitial nephritis antigen protein-coding TINAG tubulointerstitial nephritis antigen O - 20121230 -9606 27284 SULT1B1 - ST1B1|ST1B2|SULT1B2 HGNC:17845|MIM:608436|Ensembl:ENSG00000173597|HPRD:07088|Vega:OTTHUMG00000129407 4 4q13.3 sulfotransferase family, cytosolic, 1B, member 1 protein-coding SULT1B1 sulfotransferase family, cytosolic, 1B, member 1 O sulfotransferase 1B1|sulfotransferase 1B2|sulfotransferase family cytosolic 1B member 1|thyroid hormone sulfotransferase 20121230 -9606 27285 TEKT2 - TEKTB1|TEKTIN-T|h-tektin-t HGNC:11725|MIM:608953|Ensembl:ENSG00000092850|HPRD:16410|Vega:OTTHUMG00000007629 1 1p34.3 tektin 2 (testicular) protein-coding TEKT2 tektin 2 (testicular) O tektin-2|tektin-B1|testicular tektin B1-like protein 20121230 -9606 27286 SRPX2 RP11-524D16__A.1 BPP|CBPS|PMGX|RESDX|SRPUL HGNC:30668|MIM:300642|Ensembl:ENSG00000102359|HPRD:06726|Vega:OTTHUMG00000022003 X Xq21.33-q23 sushi-repeat containing protein, X-linked 2 protein-coding SRPX2 sushi-repeat containing protein, X-linked 2 O sushi repeat-containing protein SRPX2|sushi-repeat protein up-regulated in leukemia|sushi-repeat-containing protein, X-linked 2 20121230 -9606 27287 VENTX - HPX42B|NA88A|VENTX2 HGNC:13639|MIM:607158|Ensembl:ENSG00000151650|HPRD:06197|Vega:OTTHUMG00000019307 10 10q26.3 VENT homeobox protein-coding VENTX VENT homeobox O VENT homeobox homolog|VENT-like homeobox 2|VENT-like homeobox protein 2|hemopoietic progenitor homeobox protein VENTX2|homeobox protein VENTX 20121230 -9606 27288 RBMXL2 - HNRNPG-T|HNRNPGT|HNRPGT HGNC:17886|MIM:605444|Ensembl:ENSG00000170748|HPRD:05672|Vega:OTTHUMG00000165509 11 11p15 RNA binding motif protein, X-linked-like 2 protein-coding RBMXL2 RNA binding motif protein, X-linked-like 2 O RNA-binding motif protein, X-linked-like-2|heterogeneous nuclear ribonucleoprotein G T|hnRNP G-T|testes specific heterogenous nuclear ribonucleoprotein G T|testes-specific heterogenous nuclear ribonucleoprotein G-T|testis-specific heterogeneous nuclear ribonucleoprotein G-T 20121230 -9606 27289 RND1 - ARHS|RHO6|RHOS HGNC:18314|MIM:609038|Ensembl:ENSG00000172602|HPRD:12357|Vega:OTTHUMG00000170400 12 12q12 Rho family GTPase 1 protein-coding RND1 Rho family GTPase 1 O GTP-binding protein|ras homolog gene family, member S|rho-related GTP-binding protein Rho6 20121230 -9606 27290 SPINK4 - PEC-60|PEC60 HGNC:16646|MIM:613929|Ensembl:ENSG00000122711|HPRD:11598|Vega:OTTHUMG00000019762 9 9p13.3 serine peptidase inhibitor, Kazal type 4 protein-coding SPINK4 serine peptidase inhibitor, Kazal type 4 O gastrointestinal peptide|peptide PEC-60 homolog|serine protease inhibitor Kazal-type 4|serine protease inhibitor, Kazal type 4 20121230 -9606 27291 R3HCC1L - C10orf28|GIDRP86|GIDRP88|PSORT HGNC:23512|Ensembl:ENSG00000166024|HPRD:12568|Vega:OTTHUMG00000018873 10 10q24.2 R3H domain and coiled-coil containing 1-like protein-coding R3HCC1L R3H domain and coiled-coil containing 1-like O R3H and coiled-coil domain-containing protein 1-like|growth inhibition and differentiation related protein 86|growth inhibition and differentiation-related protein 88|putative mitochondrial space protein 32.1 20121230 -9606 27292 DIMT1 HUSSY-05 DIM1|DIMT1L|HSA9761|HUSSY5 HGNC:30217|MIM:612499|Ensembl:ENSG00000086189|HPRD:13676|Vega:OTTHUMG00000131223 5 5q12.1 DIM1 dimethyladenosine transferase 1 homolog (S. cerevisiae) protein-coding DIMT1 DIM1 dimethyladenosine transferase 1 homolog (S. cerevisiae) O 18S rRNA (adenine(1779)-N(6)/adenine(1780)-N(6))-dimethyltransferase|18S rRNA dimethylase|S-adenosylmethionine-6-N',N'-adenosyl(rRNA) dimethyltransferase|dimethyladenosine transferase|probable 18S rRNA (adenine(1779)-N(6)/adenine(1780)-N(6))-dimethyltransferase|probable 18S rRNA dimethylase|probable S-adenosylmethionine-6-N',N'-adenosyl(rRNA) dimethyltransferase|probable dimethyladenosine transferase 20121230 -9606 27293 SMPDL3B RP11-460I13.1 ASML3B HGNC:21416|Ensembl:ENSG00000130768|HPRD:15405|Vega:OTTHUMG00000003910 1 1p35.3 sphingomyelin phosphodiesterase, acid-like 3B protein-coding SMPDL3B sphingomyelin phosphodiesterase, acid-like 3B O ASM-like phosphodiesterase 3b|acid sphingomyelinase-like phosphodiesterase 3b 20121230 -9606 27294 DHDH - 2DD|HUM2DD HGNC:17887|MIM:606377|Ensembl:ENSG00000104808|HPRD:08399|Vega:OTTHUMG00000165029 19 19q13.3 dihydrodiol dehydrogenase (dimeric) protein-coding DHDH dihydrodiol dehydrogenase (dimeric) O 3-deoxyglucosone reductase|D-xylose 1-dehydrogenase|D-xylose-NADP dehydrogenase|trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 20121230 -9606 27295 PDLIM3 - ALP HGNC:20767|MIM:605889|Ensembl:ENSG00000154553|HPRD:08388|Vega:OTTHUMG00000160412 4 4q35 PDZ and LIM domain 3 protein-coding PDLIM3 PDZ and LIM domain 3 O PDZ and LIM domain protein 3|alpha-actinin-2-associated LIM protein|enigma homolog 20121230 -9606 27296 TP53TG5 - C20orf10|CLG01 HGNC:15856|Ensembl:ENSG00000124251|HPRD:12733|Vega:OTTHUMG00000032582 20 20q13.12 TP53 target 5 protein-coding TP53TG5 TP53 target 5 O TP53-inducible gene 5 protein|TP53-target gene 5 protein 20121230 -9606 27297 CRCP - CGRP-RCP|CGRPRCP|RCP|RCP9 HGNC:17888|MIM:606121|Ensembl:ENSG00000241258|HPRD:12089|Vega:OTTHUMG00000129519 7 7q11.21 CGRP receptor component protein-coding CRCP CGRP receptor component O CGRP-receptor component protein|DNA-directed RNA polymerase III subunit RPC9|RNA polymerase III subunit C9|calcitonin gene-related peptide-receptor component protein 20121230 -9606 27299 ADAMDEC1 - M12.219 HGNC:16299|MIM:606393|Ensembl:ENSG00000134028|HPRD:07070|Vega:OTTHUMG00000097858 8 8p21.2 ADAM-like, decysin 1 protein-coding ADAMDEC1 ADAM-like, decysin 1 O ADAM DEC1|ADAM-like protein decysin-1|a disintegrin and metalloproteinase domain-like protein decysin-1|decysin|disintegrin protease 20121230 -9606 27300 ZNF544 - - HGNC:16759|Ensembl:ENSG00000198131|HPRD:15830 19 19q13.43 zinc finger protein 544 protein-coding ZNF544 zinc finger protein 544 O - 20121230 -9606 27301 APEX2 RP5-884M20.3 APE2|APEXL2|XTH2 HGNC:17889|MIM:300773|Ensembl:ENSG00000169188|HPRD:06442|Vega:OTTHUMG00000021642 X Xp11.21 APEX nuclease (apurinic/apyrimidinic endonuclease) 2 protein-coding APEX2 APEX nuclease (apurinic/apyrimidinic endonuclease) 2 O AP endonuclease 2|AP endonuclease XTH2|DNA-(apurinic or apyrimidinic site) lyase 2|apurinic/apyrimidinic endonuclease-like 2 20121230 -9606 27302 BMP10 - - HGNC:20869|MIM:608748|Ensembl:ENSG00000163217|HPRD:09788|Vega:OTTHUMG00000129573 2 2p13.3 bone morphogenetic protein 10 protein-coding BMP10 bone morphogenetic protein 10 O - 20121230 -9606 27303 RBMS3 - - HGNC:13427|MIM:605786|Ensembl:ENSG00000144642|HPRD:16155|Vega:OTTHUMG00000155699 3 3p24-p23 RNA binding motif, single stranded interacting protein 3 protein-coding RBMS3 RNA binding motif, single stranded interacting protein 3 O RNA-binding motif, single-stranded-interacting protein 3|RNA-binding protein 20121230 -9606 27304 MOCS3 - UBA4 HGNC:15765|MIM:609277|Ensembl:ENSG00000124217|HPRD:10092|Vega:OTTHUMG00000032741 20 20q13.13 molybdenum cofactor synthesis 3 protein-coding MOCS3 molybdenum cofactor synthesis 3 O MPT synthase sulfurylase|UBA4, ubiquitin-activating enzyme E1 homolog|adenylyltransferase and sulfurtransferase MOCS3|molybdenum cofactor synthesis protein 3|molybdopterin synthase sulfurylase|ubiquitin-like modifier activating enzyme 4 20121230 -9606 27306 HPGDS - GSTS|GSTS1-1|PGD2|PGDS HGNC:17890|MIM:602598|Ensembl:ENSG00000163106|HPRD:04001|Vega:OTTHUMG00000130974 4 4q22.3 hematopoietic prostaglandin D synthase protein-coding HPGDS hematopoietic prostaglandin D synthase O GST class-sigma|glutathione S-transferase sigma|glutathione-dependent PGD synthase|glutathione-dependent PGD synthetase|glutathione-requiring prostaglandin D synthase|hematopoietic prostaglandin D2 synthase|prostaglandin-H2 D-isomerase 20121230 -9606 27309 ZNF330 - HSA6591|NOA36 HGNC:15462|MIM:609550|Ensembl:ENSG00000109445|HPRD:15775|Vega:OTTHUMG00000133413 4 4q31.21 zinc finger protein 330 protein-coding ZNF330 zinc finger protein 330 O nucleolar autoantigen 36|nucleolar cysteine-rich protein|zinc finger autoantigen 330 20121230 -9606 27314 RAB30 - - HGNC:9770|MIM:605693|Ensembl:ENSG00000137502|HPRD:05750|Vega:OTTHUMG00000166973 11 11q12-q14 RAB30, member RAS oncogene family protein-coding RAB30 RAB30, member RAS oncogene family O ras-related protein Rab-30 20121230 -9606 27315 PGAP2 - CWH43-N|FRAG1 HGNC:17893|Ensembl:ENSG00000148985|HPRD:17016|Vega:OTTHUMG00000012238 11 11p15.5 post-GPI attachment to proteins 2 protein-coding PGAP2 post-GPI attachment to proteins 2 O FGF receptor activating protein 1|FGF receptor-activating protein 1|cell wall biogenesis 43 N-terminal homolog|post-GPI attachment to proteins factor 2 20121230 -9606 27316 RBMX RP11-1114A5.1 HNRPG|RBMXP1|RBMXRT|RNMX|hnRNP-G HGNC:9910|MIM:300199|Ensembl:ENSG00000147274|HPRD:02186|Vega:OTTHUMG00000022517 X Xq26.3 RNA binding motif protein, X-linked protein-coding RBMX RNA binding motif protein, X-linked O RNA binding motif protein, X chromosome|RNA-binding motif protein, X chromosome|glycoprotein p43|heterogeneous nuclear ribonucleoprotein G|hnRNP G 20121230 -9606 27319 BHLHE22 - BHLHB5|Beta3|CAGL85|TNRC20 HGNC:11963|MIM:613483|Ensembl:ENSG00000180828|HPRD:16551|Vega:OTTHUMG00000164386 8 8q13 basic helix-loop-helix family, member e22 protein-coding BHLHE22 basic helix-loop-helix family, member e22 O basic helix-loop-helix domain containing, class B, 5|class B basic helix-loop-helix protein 5|class E basic helix-loop-helix protein 22|trinucleotide repeat containing 20|trinucleotide repeat-containing gene 20 protein 20121230 -9606 27320 TNRC18P2 - TNRC18|TNRC18B HGNC:34014 7 7q11.21 trinucleotide repeat containing 18 pseudogene 2 pseudo TNRC18P2 trinucleotide repeat containing 18 pseudogene 2 O - 20121230 -9606 27321 TNRC17 - CAGL234 HGNC:11961 2 2q21.3 trinucleotide repeat containing 17 unknown TNRC17 trinucleotide repeat containing 17 O - 20120508 -9606 27324 TOX3 - CAGF9|TNRC9 HGNC:11972|MIM:611416|Ensembl:ENSG00000103460|Vega:OTTHUMG00000173222 16 16q12.1 TOX high mobility group box family member 3 protein-coding TOX3 TOX high mobility group box family member 3 O CAG trinucleotide repeat-containing gene F9 protein|trinucleotide repeat containing 9|trinucleotide repeat-containing gene 9 protein 20121230 -9606 27327 TNRC6A - CAGH26|GW1|GW182|TNRC6 HGNC:11969|MIM:610739|Ensembl:ENSG00000090905|HPRD:11640|Vega:OTTHUMG00000096999 16 16p11.2 trinucleotide repeat containing 6A protein-coding TNRC6A trinucleotide repeat containing 6A O CAG repeat protein 26|EDIE|EMSY interactor protein|GW182 autoantigen|glycine-tryptophan protein of 182 kDa|trinucleotide repeat-containing gene 6A protein 20121230 -9606 27328 PCDH11X RP13-138P15.1 PCDH-X|PCDH11|PCDHX HGNC:8656|MIM:300246|Ensembl:ENSG00000102290|HPRD:02215|Vega:OTTHUMG00000021965 X Xq21.3 protocadherin 11 X-linked protein-coding PCDH11X protocadherin 11 X-linked O protocadherin 11X|protocadherin on the X chromosome|protocadherin-11 X-linked|protocadherin-S 20121230 -9606 27329 ANGPTL3 UNQ153/PRO179 ANGPT5|FHBL2 HGNC:491|MIM:604774|Ensembl:ENSG00000132855|HPRD:10381|Vega:OTTHUMG00000009146 1 1p31.3 angiopoietin-like 3 protein-coding ANGPTL3 angiopoietin-like 3 O ANG-5|angiopoietin 5|angiopoietin-related protein 3 20121230 -9606 27330 RPS6KA6 - PP90RSK4|RSK4 HGNC:10435|MIM:300303|Ensembl:ENSG00000072133|HPRD:02250|Vega:OTTHUMG00000021923 X Xq21 ribosomal protein S6 kinase, 90kDa, polypeptide 6 protein-coding RPS6KA6 ribosomal protein S6 kinase, 90kDa, polypeptide 6 O 90 kDa ribosomal protein S6 kinase 6|RSK-4|S6K-alpha 6|S6K-alpha-6|p90-RSK 6|p90RSK6|ribosomal S6 kinase 4|ribosomal protein S6 kinase alpha-6 20121230 -9606 27332 ZNF638 - NP220|ZFML|Zfp638 HGNC:17894|MIM:614349|Ensembl:ENSG00000075292|HPRD:11736|Vega:OTTHUMG00000129735 2 2p13.1 zinc finger protein 638 protein-coding ZNF638 zinc finger protein 638 O CTCL tumor antigen se33-1|CTCL-associated antigen se33-1|NP220 nuclear protein|cutaneous T-cell lymphoma-associated antigen se33-1|nuclear protein 220|zinc finger matrin-like protein 20121230 -9606 27333 GOLIM4 - GIMPC|GOLPH4|GPP130|P138 HGNC:15448|MIM:606805|Ensembl:ENSG00000173905|HPRD:08429|Vega:OTTHUMG00000158554 3 3q26.2 golgi integral membrane protein 4 protein-coding GOLIM4 golgi integral membrane protein 4 O 130 kDa golgi-localized phosphoprotein|Golgi integral membrane protein 4|cis Golgi-localized calcium-binding protein|golgi integral membrane protein, cis|golgi phosphoprotein 4|golgi phosphoprotein of 130 kDa|golgi-localized phosphoprotein of 130 kDa|type II Golgi membrane protein 20121230 -9606 27334 P2RY10 RP3-333E23.1 P2Y10 HGNC:19906|MIM:300529|Ensembl:ENSG00000078589|HPRD:06670|Vega:OTTHUMG00000021896 X Xq21.1 purinergic receptor P2Y, G-protein coupled, 10 protein-coding P2RY10 purinergic receptor P2Y, G-protein coupled, 10 O G-protein coupled purinergic receptor P2Y10|P2Y purinoceptor 10|P2Y-like receptor|putative P2Y purinoceptor 10 20121230 -9606 27335 EIF3K ARG134 EIF3-p28|EIF3S12|HSPC029|M9|MSTP001|PLAC-24|PLAC24|PRO1474|PTD001 HGNC:24656|MIM:609596|Ensembl:ENSG00000178982|HPRD:11740|Vega:OTTHUMG00000180865 19 19q13.2 eukaryotic translation initiation factor 3, subunit K protein-coding EIF3K eukaryotic translation initiation factor 3, subunit K O eIF-3 p25|eIF-3 p28|eukaryotic translation initiation factor 3 subunit 12|eukaryotic translation initiation factor 3 subunit K|eukaryotic translation initiation factor 3, subunit 12|muscle specific|muscle-specific gene M9 protein 20121230 -9606 27336 HTATSF1 RP1-196E23.2 TAT-SF1|dJ196E23.2 HGNC:5276|MIM:300346|Ensembl:ENSG00000102241|HPRD:02282|Vega:OTTHUMG00000022510 X Xq26.3 HIV-1 Tat specific factor 1 protein-coding HTATSF1 HIV-1 Tat specific factor 1 O HIV TAT specific factor 1|HIV Tat-specific factor 1|cofactor required for Tat activation of HIV-1 transcription 20121230 -9606 27338 UBE2S OK/SW-cl.73 E2-EPF|E2EPF|EPF5 HGNC:17895|MIM:610309|Ensembl:ENSG00000108106|HPRD:15603|Vega:OTTHUMG00000180811 19 19q13.43 ubiquitin-conjugating enzyme E2S protein-coding UBE2S ubiquitin-conjugating enzyme E2S O E2-EPF5|ubiquitin carrier protein S|ubiquitin-conjugating enzyme E2 S|ubiquitin-conjugating enzyme E2-24 kD|ubiquitin-conjugating enzyme E2-24 kDa|ubiquitin-conjugating enzyme E2-EPF5|ubiquitin-protein ligase S 20121230 -9606 27339 PRPF19 - NMP200|PRP19|PSO4|SNEV|UBOX4|hPSO4 HGNC:17896|MIM:608330|Ensembl:ENSG00000110107|HPRD:12214|Vega:OTTHUMG00000167798 11 11q12.2 PRP19/PSO4 pre-mRNA processing factor 19 homolog (S. cerevisiae) protein-coding PRPF19 PRP19/PSO4 pre-mRNA processing factor 19 homolog (S. cerevisiae) O PRP19/PSO4 homolog|nuclear matrix protein 200|nuclear matrix protein NMP200 related to splicing factor PRP19|pre-mRNA-processing factor 19|senescence evasion factor 20121230 -9606 27340 UTP20 - DRIM HGNC:17897|MIM:612822|Ensembl:ENSG00000120800|HPRD:09928|Vega:OTTHUMG00000170270 12 12q23 UTP20, small subunit (SSU) processome component, homolog (yeast) protein-coding UTP20 UTP20, small subunit (SSU) processome component, homolog (yeast) O NNP73|down regulated in metastasis|down-regulated in metastasis protein|novel nucleolar protein 73|small subunit processome component 20 homolog 20121230 -9606 27341 RRP7A CTA-126B4.5 BK126B4.3|CGI-96 HGNC:24286|Ensembl:ENSG00000189306|HPRD:13043|Vega:OTTHUMG00000150891 22 22q13.2 ribosomal RNA processing 7 homolog A (S. cerevisiae) protein-coding RRP7A ribosomal RNA processing 7 homolog A (S. cerevisiae) O CTA-126B4.5|gastric cancer antigen Zg14|ribosomal RNA-processing protein 7 homolog A 20121230 -9606 27342 RABGEF1 - RABEX5|rabex-5 HGNC:17676|MIM:609700|Ensembl:ENSG00000154710|Ensembl:ENSG00000243335|Vega:OTTHUMG00000129547 7 7q11.21 RAB guanine nucleotide exchange factor (GEF) 1 protein-coding RABGEF1 RAB guanine nucleotide exchange factor (GEF) 1 O RAP1|rab5 GDP/GTP exchange factor|rabaptin-5-associated exchange factor for Rab5 20121230 -9606 27343 POLL RP11-529I10.1 BETAN|POLKAPPA HGNC:9184|MIM:606343|Ensembl:ENSG00000166169|HPRD:09394|Vega:OTTHUMG00000018933 10 10q23 polymerase (DNA directed), lambda protein-coding POLL polymerase (DNA directed), lambda O DNA polymerase beta-2|DNA polymerase beta-N|DNA polymerase kappa|DNA polymerase lambda 20121230 -9606 27344 PCSK1N - PROSAAS|SAAS HGNC:17301|MIM:300399|Ensembl:ENSG00000102109|HPRD:02320|Vega:OTTHUMG00000034502 X Xp11.23 proprotein convertase subtilisin/kexin type 1 inhibitor protein-coding PCSK1N proprotein convertase subtilisin/kexin type 1 inhibitor O granin-like neuroendocrine peptide|pro-SAAS|proSAAS|proprotein convertase 1 inhibitor 20121230 -9606 27345 KCNMB4 - - HGNC:6289|MIM:605223|Ensembl:ENSG00000135643|HPRD:05564|Vega:OTTHUMG00000167586 12 12q potassium large conductance calcium-activated channel, subfamily M, beta member 4 protein-coding KCNMB4 potassium large conductance calcium-activated channel, subfamily M, beta member 4 O BK channel subunit beta-4|BKbeta4|calcium-activated potassium channel subunit beta-4|calcium-activated potassium channel, subfamily M subunit beta-4|charybdotoxin receptor subunit beta-4|hbeta4|k(VCA)beta-4|large conductance calcium-dependent potassium ion channel beta 4 subunit|maxi K channel subunit beta-4|slo-beta-4 20121230 -9606 27346 TMEM97 - MAC30 HGNC:28106|MIM:612912|Ensembl:ENSG00000109084|HPRD:14343|Vega:OTTHUMG00000132497 17 17q11.2 transmembrane protein 97 protein-coding TMEM97 transmembrane protein 97 O - 20121230 -9606 27347 STK39 - DCHT|PASK|SPAK HGNC:17717|MIM:607648|Ensembl:ENSG00000198648|HPRD:09627|Vega:OTTHUMG00000133745 2 2q24.3 serine threonine kinase 39 protein-coding STK39 serine threonine kinase 39 O STE20/SPS1 homolog|STE20/SPS1-related proline-alanine-rich protein kinase|Ste20-like protein kinase|proline-alanine-rich STE20-related kinase|serine threonine kinase 39 (STE20/SPS1 homolog, yeast)|serine/threonine-protein kinase 39|small intestine SPAK-like kinase|ste-20-related kinase 20121230 -9606 27348 TOR1B FKSG18 DQ1 HGNC:11995|MIM:608050|Ensembl:ENSG00000136816|HPRD:16270|Vega:OTTHUMG00000020795 9 9q34 torsin family 1, member B (torsin B) protein-coding TOR1B torsin family 1, member B (torsin B) O torsin family 1 member B|torsin-1B 20121230 -9606 27349 MCAT AL022237.1 FASN2C|MCT|MT|NET62|fabD HGNC:29622|MIM:614479|Ensembl:ENSG00000100294|HPRD:14786|Vega:OTTHUMG00000150704 22 22q13.31 malonyl CoA:ACP acyltransferase (mitochondrial) protein-coding MCAT malonyl CoA:ACP acyltransferase (mitochondrial) O [Acyl-carrier-protein] malonyltransferase|malonyl-CoA-acyl carrier protein transacylase, mitochondrial|malonyl-CoA:acyl carrier protein transacylase, mitochondrial|mitochondrial malonyl CoA:ACP acyltransferase|mitochondrial malonyltransferase 20121230 -9606 27350 APOBEC3C - A3C|APOBEC1L|ARDC2|ARDC4|ARP5|PBI|bK150C2.3 HGNC:17353|MIM:607750|Ensembl:ENSG00000244509|HPRD:09671|Vega:OTTHUMG00000151087 22 22q13.1 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3C protein-coding APOBEC3C apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3C O phorbolin I|probable DNA dC->dU-editing enzyme APOBEC-3C 20121230 -9606 27351 DESI1 - D15Wsu75e|DESI2|DJ347H13.4|DeSI-1|FAM152B|PPPDE2 HGNC:24577|MIM:614637|Ensembl:ENSG00000100418|HPRD:18590|Vega:OTTHUMG00000044632 22 22q13.2 desumoylating isopeptidase 1 protein-coding DESI1 desumoylating isopeptidase 1 O PPPDE peptidase domain containing 2|PPPDE peptidase domain-containing protein 2|desumoylating isopeptidase 2|family with sequence similarity 152, member B 20121230 -9606 27352 SGSM3 RP5-1042K10.9 MAP|RABGAP5|RUSC3|RUTBC3|RabGAP-5 HGNC:25228|MIM:610440|Ensembl:ENSG00000100359|HPRD:15285|Vega:OTTHUMG00000151141 22 22q13.1-q13.2 small G protein signaling modulator 3 protein-coding SGSM3 small G protein signaling modulator 3 O RUN and SH3 containing 3|RUN and TBC1 domain containing 3|RUN and TBC1 domain-containing protein 3|merlin binding protein|merlin-associated protein|rab-GTPase-activating protein-like protein|rabGAPLP|small G protein signaling modulator 3 protein 20121230 -9606 27429 HTRA2 - OMI|PARK13|PRSS25 HGNC:14348|MIM:606441|Ensembl:ENSG00000115317|HPRD:05919|Vega:OTTHUMG00000129957 2 2p12 HtrA serine peptidase 2 protein-coding HTRA2 HtrA serine peptidase 2 O HtrA-like serine protease|Omi stress-regulated endoprotease|high temperature requirement protein A2|protease, serine, 25|serine protease 25|serine protease HTRA2, mitochondrial|serine proteinase OMI 20121230 -9606 27430 MAT2B MSTP045 MAT-II|MATIIbeta|Nbla02999|SDR23E1|TGR HGNC:6905|MIM:605527|Ensembl:ENSG00000038274|HPRD:05701|Vega:OTTHUMG00000130379 5 5q34-q35 methionine adenosyltransferase II, beta protein-coding MAT2B methionine adenosyltransferase II, beta O MAT II beta|beta regulatory subunit of methionine adenosyltransferase|dTDP-4-keto-6-deoxy-D-glucose 4-reductase|methionine adenosyltransferase 2 subunit beta|putative dTDP-4-keto-6-deoxy-D-glucose 4-reductase|putative protein product of Nbla02999|short chain dehydrogenase/reductase family 23E, member 1 20121230 -9606 27433 TOR2A RP11-56D16.7 TORP1 HGNC:11996|MIM:608052|Ensembl:ENSG00000160404|HPRD:16271|Vega:OTTHUMG00000020706 9 9q34.11 torsin family 2, member A protein-coding TOR2A torsin family 2, member A O prosalusin|torsin-2A|torsin-related protein 1 20121230 -9606 27434 POLM - Pol Mu|Tdt-N HGNC:9185|MIM:606344|Ensembl:ENSG00000122678|HPRD:16208|Vega:OTTHUMG00000155353 7 7p13 polymerase (DNA directed), mu protein-coding POLM polymerase (DNA directed), mu O DNA polymerase mu|DNA-directed DNA/RNA polymerase mu|Pol iota|polymerase (DNA-directed), mu|terminal transferase 20121230 -9606 27436 EML4 - C2orf2|ELP120|EMAP-4|EMAPL4|ROPP120 HGNC:1316|MIM:607442|Ensembl:ENSG00000143924|HPRD:06310|Vega:OTTHUMG00000128603 2 2p21 echinoderm microtubule associated protein like 4 protein-coding EML4 echinoderm microtubule associated protein like 4 O echinoderm microtubule-associated protein-like 4|restrictedly overexpressed proliferation-associated protein|ropp 120 20121230 -9606 27437 HSFY1P1 - CECR8|HSFYL1|HSFYP1|NCRNA00016 HGNC:1846 22 - heat shock transcription factor, Y-linked 1 pseudogene 1 pseudo HSFY1P1 heat shock transcription factor, Y-linked 1 pseudogene 1 O - 20121230 -9606 27439 CECR6 - - HGNC:1844|Ensembl:ENSG00000183307|HPRD:16704|Vega:OTTHUMG00000030471 22 - cat eye syndrome chromosome region, candidate 6 protein-coding CECR6 cat eye syndrome chromosome region, candidate 6 O cat eye syndrome critical region protein 6 20121230 -9606 27440 CECR5 - - HGNC:1843|Ensembl:ENSG00000069998|HPRD:16703|Vega:OTTHUMG00000150071 22 - cat eye syndrome chromosome region, candidate 5 protein-coding CECR5 cat eye syndrome chromosome region, candidate 5 O cat eye syndrome critical region protein 5 20121230 -9606 27442 CECR3 - - HGNC:1841 22 - cat eye syndrome chromosome region, candidate 3 (non-protein coding) miscRNA CECR3 cat eye syndrome chromosome region, candidate 3 (non-protein coding) O - 20121230 -9606 27443 CECR2 - - HGNC:1840|MIM:607576|Ensembl:ENSG00000099954|Vega:OTTHUMG00000150072 22 22q11.2 cat eye syndrome chromosome region, candidate 2 protein-coding CECR2 cat eye syndrome chromosome region, candidate 2 O cat eye syndrome critical region protein 2 20121230 -9606 27445 PCLO tcag7.1085 ACZ HGNC:13406|MIM:604918|Ensembl:ENSG00000186472|HPRD:16078|Vega:OTTHUMG00000154853 7 7q11.23-q21.3 piccolo (presynaptic cytomatrix protein) protein-coding PCLO piccolo (presynaptic cytomatrix protein) O aczonin|protein piccolo 20121230 -9606 28227 PPP2R3B LL0YNC03-56G10.1 NYREN8|PPP2R3L|PPP2R3LY|PR48 HGNC:13417|MIM:300339|Ensembl:ENSG00000167393|HPRD:02276|Vega:OTTHUMG00000021052 X|Y Xp22.33; Yp11.3 protein phosphatase 2, regulatory subunit B'', beta protein-coding PPP2R3B protein phosphatase 2, regulatory subunit B'', beta O NY-REN-8 antigen|PP2A, subunit B, PR48 isoform|protein phosphatase 2 (formerly 2A), regulatory subunit B'', beta|serine/threonine protein phosphatase 2A, 48kDa regulatory subunit B|serine/threonine-protein phosphatase 2A regulatory subunit B'' subunit beta 20121230 -9606 28231 SLCO4A1 - OATP-E|OATP1|OATP4A1|OATPE|OATPRP1|POAT|SLC21A12 HGNC:10953|MIM:612436|Ensembl:ENSG00000101187|HPRD:11582|Vega:OTTHUMG00000032923 20 20q13.33 solute carrier organic anion transporter family, member 4A1 protein-coding SLCO4A1 solute carrier organic anion transporter family, member 4A1 O OATP-RP1|colon organic anion transporter|organic anion transporter polypeptide-related protein 1|organic anion transporting polypeptide E|organic anion-transporting polypeptide E|sodium-independent organic anion transporter E|solute carrier family 21 (organic anion transporter), member 12|solute carrier family 21 member 12|solute carrier organic anion transporter family member 4A1 20121230 -9606 28232 SLCO3A1 - OATP-D|OATP3A1|OATPD|SLC21A11 HGNC:10952|MIM:612435|Ensembl:ENSG00000176463|HPRD:07502|Vega:OTTHUMG00000149846 15 15q26 solute carrier organic anion transporter family, member 3A1 protein-coding SLCO3A1 solute carrier organic anion transporter family, member 3A1 O OATP-RP3|OATPRP3|PGE1 transporter|organic anion transporter polypeptide-related protein 3|organic anion-transporting polypeptide D|sodium-independent organic anion transporter D|solute carrier family 21 (organic anion transporter), member 11|solute carrier family 21 member 11|solute carrier organic anion transporter family member 3A1 20121230 -9606 28234 SLCO1B3 - HBLRR|LST-2|LST-3TM13|LST3|OATP-8|OATP1B3|OATP8|SLC21A8 HGNC:10961|MIM:605495|Ensembl:ENSG00000111700|Ensembl:ENSG00000257046|HPRD:12021|Vega:OTTHUMG00000169011|Vega:OTTHUMG00000169018 12 12p12 solute carrier organic anion transporter family, member 1B3 protein-coding SLCO1B3 solute carrier organic anion transporter family, member 1B3 O liver-specific organic anion transporter 2|liver-specific organic anion transporter 3TM13|organic anion transporter 8|organic anion transporter LST-3c|organic anion-transporting polypeptide 8|solute carrier family 21 (organic anion transporter), member 8|solute carrier organic anion transporter family member 1B3 20121230 -9606 28299 IGKV1-5 - IGKV|IGKV15|L12|L12a|V1 HGNC:5741|IMGT/GENE-DB:IGKV1-5 2 2p12 immunoglobulin kappa variable 1-5 other IGKV1-5 immunoglobulin kappa variable 1-5 O - 20121230 -9606 28300 IGHV3OR16-16 - IGHV3OR1616 HGNC:5640|IMGT/GENE-DB:IGHV3/OR16-16 16 16p11.2 immunoglobulin heavy variable 3/OR16-16 (pseudogene) pseudo IGHV3OR16-16 immunoglobulin heavy variable 3/OR16-16 (pseudogene) O - 20111109 -9606 28301 IGHV3OR16-15 - IGHV3OR1615 HGNC:5639|IMGT/GENE-DB:IGHV3/OR16-15 16 16p11.2 immunoglobulin heavy variable 3/OR16-15 (pseudogene) pseudo IGHV3OR16-15 immunoglobulin heavy variable 3/OR16-15 (pseudogene) O - 20111109 -9606 28304 IGHV3OR16-12 - IGHV3OR1612 HGNC:5636|IMGT/GENE-DB:IGHV3/OR16-12 16 16p11.2 immunoglobulin heavy variable 3/OR16-12 (non-functional) pseudo IGHV3OR16-12 immunoglobulin heavy variable 3/OR16-12 (non-functional) O - 20121230 -9606 28305 IGHV3OR16-11 - IGHV3OR1611 HGNC:5635|IMGT/GENE-DB:IGHV3/OR16-11 16 16p11.2 immunoglobulin heavy variable 3/OR16-11 (pseudogene) pseudo IGHV3OR16-11 immunoglobulin heavy variable 3/OR16-11 (pseudogene) O - 20121230 -9606 28306 IGHV3OR16-10 - IGHV3OR1610 HGNC:5634|IMGT/GENE-DB:IGHV3/OR16-10 16 16p11.2 immunoglobulin heavy variable 3/OR16-10 (non-functional) pseudo IGHV3OR16-10 immunoglobulin heavy variable 3/OR16-10 (non-functional) O - 20111109 -9606 28307 IGHV3OR16-9 - IGHV3OR169 HGNC:5644|IMGT/GENE-DB:IGHV3/OR16-9 16 16p11.2 immunoglobulin heavy variable 3/OR16-9 (non-functional) pseudo IGHV3OR16-9 immunoglobulin heavy variable 3/OR16-9 (non-functional) O - 20111109 -9606 28309 IGHV3OR16-7 - IGHV3OR167 HGNC:5642|IMGT/GENE-DB:IGHV3/OR16-7 16 16p11.2 immunoglobulin heavy variable 3/OR16-7 (pseudogene) pseudo IGHV3OR16-7 immunoglobulin heavy variable 3/OR16-7 (pseudogene) O - 20121230 -9606 28312 IGHV1OR16-4 - IGHV1OR164 HGNC:5573|IMGT/GENE-DB:IGHV1/OR16-4 16 16p11.2 immunoglobulin heavy variable 1/OR16-4 (pseudogene) pseudo IGHV1OR16-4 immunoglobulin heavy variable 1/OR16-4 (pseudogene) O - 20111109 -9606 28313 IGHV1OR16-3 - IGHV1OR163 HGNC:5572|IMGT/GENE-DB:IGHV1/OR16-3 16 16p11.2 immunoglobulin heavy variable 1/OR16-3 (pseudogene) pseudo IGHV1OR16-3 immunoglobulin heavy variable 1/OR16-3 (pseudogene) O - 20111109 -9606 28314 IGHV1OR16-2 - IGHV1OR162 HGNC:5571|IMGT/GENE-DB:IGHV1/OR16-2 16 16p11.2 immunoglobulin heavy variable 1/OR16-2 (pseudogene) pseudo IGHV1OR16-2 immunoglobulin heavy variable 1/OR16-2 (pseudogene) O - 20111109 -9606 28315 IGHV1OR16-1 - IGHV1OR161 HGNC:5570|IMGT/GENE-DB:IGHV1/OR16-1 16 16p11.2 immunoglobulin heavy variable 1/OR16-1 (pseudogene) pseudo IGHV1OR16-1 immunoglobulin heavy variable 1/OR16-1 (pseudogene) O - 20121230 -9606 28316 CDH20 - CDH7L3|Cdh7 HGNC:1760|MIM:605807|Ensembl:ENSG00000101542|HPRD:10429|Vega:OTTHUMG00000132768 18 18q21.33 cadherin 20, type 2 protein-coding CDH20 cadherin 20, type 2 O cadherin-20 20121230 -9606 28317 IGHV4OR15-8 - IGHV4OR158|VSIG6 HGNC:5658|IMGT/GENE-DB:IGHV4/OR15-8 15 15q11.2 immunoglobulin heavy variable 4/OR15-8 (non-functional) other IGHV4OR15-8 immunoglobulin heavy variable 4/OR15-8 (non-functional) O - 20121204 -9606 28318 IGHV3OR15-7 - IGHV3OR157 HGNC:5633|IMGT/GENE-DB:IGHV3/OR15-7 15 15q11.2 immunoglobulin heavy variable 3/OR15-7 (pseudogene) pseudo IGHV3OR15-7 immunoglobulin heavy variable 3/OR15-7 (pseudogene) O - 20121021 -9606 28320 IGHV1OR15-6 - IGHV1OR156 HGNC:5568|IMGT/GENE-DB:IGHV1/OR15-6 15 15q11.2 immunoglobulin heavy variable 1/OR15-6 (pseudogene) pseudo IGHV1OR15-6 immunoglobulin heavy variable 1/OR15-6 (pseudogene) O - 20111109 -9606 28326 IGHD5OR15-5B - IGHD5OR155B HGNC:5513|IMGT/GENE-DB:IGHD5/OR15-5b 15 15q11.2 immunoglobulin heavy diversity 5/OR15-5B (non-functional) pseudo IGHD5OR15-5B immunoglobulin heavy diversity 5/OR15-5B (non-functional) O - 20111109 -9606 28327 IGHD5OR15-5A - IGHD5OR155A HGNC:5512|IMGT/GENE-DB:IGHD5/OR15-5a 15 15q11.2 immunoglobulin heavy diversity 5/OR15-5A (non-functional) other IGHD5OR15-5A immunoglobulin heavy diversity 5/OR15-5A (non-functional) O - 20111109 -9606 28328 IGHD4OR15-4B - IGHD4OR154B HGNC:5507|IMGT/GENE-DB:IGHD4/OR15-4b 15 15q11.2 immunoglobulin heavy diversity 4/OR15-4B (non-functional) other IGHD4OR15-4B immunoglobulin heavy diversity 4/OR15-4B (non-functional) O - 20111109 -9606 28329 IGHD4OR15-4A - IGHD4OR154A HGNC:5506|IMGT/GENE-DB:IGHD4/OR15-4a 15 15q11.2 immunoglobulin heavy diversity 4/OR15-4A (non-functional) other IGHD4OR15-4A immunoglobulin heavy diversity 4/OR15-4A (non-functional) O - 20111109 -9606 28330 IGHD3OR15-3B - IGHD3OR153B HGNC:5501|IMGT/GENE-DB:IGHD3/OR15-3b 15 15q11.2 immunoglobulin heavy diversity 3/OR15-3B (non-functional) other IGHD3OR15-3B immunoglobulin heavy diversity 3/OR15-3B (non-functional) O - 20111109 -9606 28331 IGHD3OR15-3A - IGHD3OR153A HGNC:5500|IMGT/GENE-DB:IGHD3/OR15-3a 15 15q11.2 immunoglobulin heavy diversity 3/OR15-3A (non-functional) other IGHD3OR15-3A immunoglobulin heavy diversity 3/OR15-3A (non-functional) O - 20111109 -9606 28332 IGHD2OR15-2B - IGHD2OR152B HGNC:5494|IMGT/GENE-DB:IGHD2/OR15-2b 15 15q11.2 immunoglobulin heavy diversity 2/OR15-2B (non-functional) other IGHD2OR15-2B immunoglobulin heavy diversity 2/OR15-2B (non-functional) O - 20111109 -9606 28333 IGHD2OR15-2A - IGHD2OR152A HGNC:5493|IMGT/GENE-DB:IGHD2/OR15-2a 15 15q11.2 immunoglobulin heavy diversity 2/OR15-2A (non-functional) other IGHD2OR15-2A immunoglobulin heavy diversity 2/OR15-2A (non-functional) O - 20111109 -9606 28334 IGHD1OR15-1B - IGHD1OR151B HGNC:5488|IMGT/GENE-DB:IGHD1/OR15-1b 15 15q11.2 immunoglobulin heavy diversity 1/OR15-1B (non-functional) other IGHD1OR15-1B immunoglobulin heavy diversity 1/OR15-1B (non-functional) O - 20111109 -9606 28335 IGHD1OR15-1A - IGHD1OR151A HGNC:5487|IMGT/GENE-DB:IGHD1/OR15-1a 15 15q11.2 immunoglobulin heavy diversity 1/OR15-1A (non-functional) other IGHD1OR15-1A immunoglobulin heavy diversity 1/OR15-1A (non-functional) O - 20111109 -9606 28337 IGHVIV-44-1 - (IV)-44|4-44.1P|IGHVIV441 HGNC:5710|IMGT/GENE-DB:IGHV(IV)-44-1 14 14q32.33 immunoglobulin heavy variable (IV)-44-1 (pseudogene) pseudo IGHVIV-44-1 immunoglobulin heavy variable (IV)-44-1 (pseudogene) O - 20121230 -9606 28338 IGHVIII-82 - 3-82P|IGHVIII82 HGNC:5709|IMGT/GENE-DB:IGHV(III)-82 14 14q32.33 immunoglobulin heavy variable (III)-82 (pseudogene) pseudo IGHVIII-82 immunoglobulin heavy variable (III)-82 (pseudogene) O - 20121230 -9606 28339 IGHVIII-76-1 - 3-76.1P|IGHVIII761 HGNC:5708|IMGT/GENE-DB:IGHV(III)-76-1 14 14q32.33 immunoglobulin heavy variable (III)-76-1 (pseudogene) pseudo IGHVIII-76-1 immunoglobulin heavy variable (III)-76-1 (pseudogene) O - 20121230 -9606 28340 IGHVIII-67-4 - 3-67.4P|IGHVIII674 HGNC:5707|IMGT/GENE-DB:IGHV(III)-67-4 14 14q32.33 immunoglobulin heavy variable (III)-67-4 (pseudogene) pseudo IGHVIII-67-4 immunoglobulin heavy variable (III)-67-4 (pseudogene) O - 20121230 -9606 28341 IGHVIII-67-3 - 3-67.3P|IGHV(III)-6|IGHVIII673 HGNC:5706|IMGT/GENE-DB:IGHV(III)-67-3 14 14q32.33 immunoglobulin heavy variable (III)-67-3 (pseudogene) pseudo IGHVIII-67-3 immunoglobulin heavy variable (III)-67-3 (pseudogene) O - 20121230 -9606 28342 IGHVIII-67-2 - 3-67.2P|IGHVIII672 HGNC:5705|IMGT/GENE-DB:IGHV(III)-67-2 14 14q32.33 immunoglobulin heavy variable (III)-67-2 (pseudogene) pseudo IGHVIII-67-2 immunoglobulin heavy variable (III)-67-2 (pseudogene) O - 20121230 -9606 28343 IGHVIII-51-1 - 3-51.1P|IGHVIII511 HGNC:5704|IMGT/GENE-DB:IGHV(III)-51-1 14 14q32.33 immunoglobulin heavy variable (III)-51-1 (pseudogene) pseudo IGHVIII-51-1 immunoglobulin heavy variable (III)-51-1 (pseudogene) O - 20121230 -9606 28344 IGHVIII-47-1 - 3-47.1P|IGHVIII471 HGNC:5701|IMGT/GENE-DB:IGHV(III)-47-1 14 14q32.33 immunoglobulin heavy variable (III)-47-1 (pseudogene) pseudo IGHVIII-47-1 immunoglobulin heavy variable (III)-47-1 (pseudogene) O - 20121230 -9606 28345 IGHVIII-44 - 3-44P|IGHVIII44 HGNC:5700|IMGT/GENE-DB:IGHV(III)-44 14 14q32.33 immunoglobulin heavy variable (III)-44 (pseudogene) pseudo IGHVIII-44 immunoglobulin heavy variable (III)-44 (pseudogene) O - 20121230 -9606 28346 IGHVIII-38-1 - 3-38.1P|38-1|IGHVIII381 HGNC:5699|IMGT/GENE-DB:IGHV(III)-38-1 14 14q32.33 immunoglobulin heavy variable (III)-38-1 (pseudogene) pseudo IGHVIII-38-1 immunoglobulin heavy variable (III)-38-1 (pseudogene) O - 20121230 -9606 28347 IGHVIII-26-1 - 3-26.1P|IGHVIII261 HGNC:5698|IMGT/GENE-DB:IGHV(III)-26-1 14 14q32.33 immunoglobulin heavy variable (III)-26-1 (pseudogene) pseudo IGHVIII-26-1 immunoglobulin heavy variable (III)-26-1 (pseudogene) O - 20121230 -9606 28348 IGHVIII-25-1 - 3-25.1P|IGHVIII251 HGNC:5697|IMGT/GENE-DB:IGHV(III)-25-1 14 14q32.33 immunoglobulin heavy variable (III)-25-1 (pseudogene) pseudo IGHVIII-25-1 immunoglobulin heavy variable (III)-25-1 (pseudogene) O - 20121230 -9606 28349 IGHVIII-22-2 - 3-22.2P|IGHVIII222 HGNC:5696|IMGT/GENE-DB:IGHV(III)-22-2 14 14q32.33 immunoglobulin heavy variable (III)-22-2 (pseudogene) pseudo IGHVIII-22-2 immunoglobulin heavy variable (III)-22-2 (pseudogene) O - 20121230 -9606 28350 IGHVIII-16-1 - 3-16.1P|IGHVIII161 HGNC:5694|IMGT/GENE-DB:IGHV(III)-16-1 14 14q32.33 immunoglobulin heavy variable (III)-16-1 (pseudogene) pseudo IGHVIII-16-1 immunoglobulin heavy variable (III)-16-1 (pseudogene) O - 20121230 -9606 28351 IGHVIII-13-1 - 3-13.1P|IGHVIII131 HGNC:5693|IMGT/GENE-DB:IGHV(III)-13-1 14 14q32.33 immunoglobulin heavy variable (III)-13-1 (pseudogene) pseudo IGHVIII-13-1 immunoglobulin heavy variable (III)-13-1 (pseudogene) O - 20121230 -9606 28352 IGHVIII-11-1 - 3-11.1P|IGHVIII111 HGNC:5692|IMGT/GENE-DB:IGHV(III)-11-1 14 14q32.33 immunoglobulin heavy variable (III)-11-1 (pseudogene) pseudo IGHVIII-11-1 immunoglobulin heavy variable (III)-11-1 (pseudogene) O - 20121230 -9606 28353 IGHVIII-5-2 - 3-05.2P|IGHVIII52 HGNC:5703|IMGT/GENE-DB:IGHV(III)-5-2 14 14q32.33 immunoglobulin heavy variable (III)-5-2 (pseudogene) pseudo IGHVIII-5-2 immunoglobulin heavy variable (III)-5-2 (pseudogene) O - 20121230 -9606 28354 IGHVIII-5-1 - 3-05.1P|IGHVIII51 HGNC:5702|IMGT/GENE-DB:IGHV(III)-5-1 14 14q32.33 immunoglobulin heavy variable (III)-5-1 (pseudogene) pseudo IGHVIII-5-1 immunoglobulin heavy variable (III)-5-1 (pseudogene) O - 20121230 -9606 28355 IGHVIII-2-1 - 3-02.1P|IGHVIII21 HGNC:5695|IMGT/GENE-DB:IGHV(III)-2-1 14 14q32.33 immunoglobulin heavy variable (III)-2-1 (pseudogene) pseudo IGHVIII-2-1 immunoglobulin heavy variable (III)-2-1 (pseudogene) O - 20121230 -9606 28356 IGHVII-78-1 - 4-78.1P|IGHVII781 HGNC:5691|IMGT/GENE-DB:IGHV(II)-78-1 14 14q32.33 immunoglobulin heavy variable (II)-78-1 (pseudogene) pseudo IGHVII-78-1 immunoglobulin heavy variable (II)-78-1 (pseudogene) O - 20121230 -9606 28357 IGHVII-74-1 - 4-74.1P|IGHVII741 HGNC:5690|IMGT/GENE-DB:IGHV(II)-74-1 14 14q32.33 immunoglobulin heavy variable (II)-74-1 (pseudogene) pseudo IGHVII-74-1 immunoglobulin heavy variable (II)-74-1 (pseudogene) O - 20121230 -9606 28358 IGHVII-67-1 - 4-67.1P|IGHVII671 HGNC:5689|IMGT/GENE-DB:IGHV(II)-67-1 14 14q32.33 immunoglobulin heavy variable (II)-67-1 (pseudogene) pseudo IGHVII-67-1 immunoglobulin heavy variable (II)-67-1 (pseudogene) O - 20121230 -9606 28359 IGHVII-65-1 - 4-65.1P|IGHVII651 HGNC:5688|IMGT/GENE-DB:IGHV(II)-65-1 14 14q32.33 immunoglobulin heavy variable (II)-65-1 (pseudogene) pseudo IGHVII-65-1 immunoglobulin heavy variable (II)-65-1 (pseudogene) O - 20121230 -9606 28360 IGHVII-62-1 - 4-62.1P|IGHVII621 HGNC:5687|IMGT/GENE-DB:IGHV(II)-62-1 14 14q32.33 immunoglobulin heavy variable (II)-62-1 (pseudogene) pseudo IGHVII-62-1 immunoglobulin heavy variable (II)-62-1 (pseudogene) O - 20121230 -9606 28361 IGHVII-60-1 - 4-60.1P|IGHVII601 HGNC:5686|IMGT/GENE-DB:IGHV(II)-60-1 14 14q32.33 immunoglobulin heavy variable (II)-60-1 (pseudogene) pseudo IGHVII-60-1 immunoglobulin heavy variable (II)-60-1 (pseudogene) O - 20121230 -9606 28362 IGHVII-53-1 - 4-53.1P|IGHVII531 HGNC:5685|IMGT/GENE-DB:IGHV(II)-53-1 14 14q32.33 immunoglobulin heavy variable (II)-53-1 (pseudogene) pseudo IGHVII-53-1 immunoglobulin heavy variable (II)-53-1 (pseudogene) O - 20121230 -9606 28363 IGHVII-51-2 - 4-51.2P|IGHVII512 HGNC:5684|IMGT/GENE-DB:IGHV(II)-51-2 14 14q32.33 immunoglobulin heavy variable (II)-51-2 (pseudogene) pseudo IGHVII-51-2 immunoglobulin heavy variable (II)-51-2 (pseudogene) O - 20121230 -9606 28364 IGHVII-49-1 - 4-49.1P|IGHVII491 HGNC:5683|IMGT/GENE-DB:IGHV(II)-49-1 14 14q32.33 immunoglobulin heavy variable (II)-49-1 (pseudogene) pseudo IGHVII-49-1 immunoglobulin heavy variable (II)-49-1 (pseudogene) O - 20121230 -9606 28365 IGHVII-46-1 - 4-46.1P|IGHVII461 HGNC:5682|IMGT/GENE-DB:IGHV(II)-46-1 14 14q32.33 immunoglobulin heavy variable (II)-46-1 (pseudogene) pseudo IGHVII-46-1 immunoglobulin heavy variable (II)-46-1 (pseudogene) O - 20121230 -9606 28366 IGHVII-44-2 - 4-44.2P|IGHVII442 HGNC:5681|IMGT/GENE-DB:IGHV(II)-44-2 14 14q32.33 immunoglobulin heavy variable (II)-44-2 (pseudogene) pseudo IGHVII-44-2 immunoglobulin heavy variable (II)-44-2 (pseudogene) O - 20121230 -9606 28367 IGHVII-43-1 - 4-43.1P|IGHVII431 HGNC:5680|IMGT/GENE-DB:IGHV(II)-43-1 14 14q32.33 immunoglobulin heavy variable (II)-43-1 (pseudogene) pseudo IGHVII-43-1 immunoglobulin heavy variable (II)-43-1 (pseudogene) O - 20121230 -9606 28368 IGHVII-40-1 - 4-40.1P|IGHVII401 HGNC:5679|IMGT/GENE-DB:IGHV(II)-40-1 14 14q32.33 immunoglobulin heavy variable (II)-40-1 (pseudogene) pseudo IGHVII-40-1 immunoglobulin heavy variable (II)-40-1 (pseudogene) O - 20121230 -9606 28369 IGHVII-33-1 - 4-33.1P|IGHVII331 HGNC:5678|IMGT/GENE-DB:IGHV(II)-33-1 14 14q32.33 immunoglobulin heavy variable (II)-33-1 (pseudogene) pseudo IGHVII-33-1 immunoglobulin heavy variable (II)-33-1 (pseudogene) O - 20121230 -9606 28370 IGHVII-31-1 - 4-31.1P|IGHVII311 HGNC:5677|IMGT/GENE-DB:IGHV(II)-31-1 14 14q32.33 immunoglobulin heavy variable (II)-31-1 (pseudogene) pseudo IGHVII-31-1 immunoglobulin heavy variable (II)-31-1 (pseudogene) O - 20121230 -9606 28371 IGHVII-30-1 - 4-30.1P|IGHVII301 HGNC:5676|IMGT/GENE-DB:IGHV(II)-30-1 14 14q32.33 immunoglobulin heavy variable (II)-30-1 (pseudogene) pseudo IGHVII-30-1 immunoglobulin heavy variable (II)-30-1 (pseudogene) O - 20121230 -9606 28372 IGHVII-28-1 - 4-28.1P|IGHVII281 HGNC:5675|IMGT/GENE-DB:IGHV(II)-28-1 14 14q32.33 immunoglobulin heavy variable (II)-28-1 (pseudogene) pseudo IGHVII-28-1 immunoglobulin heavy variable (II)-28-1 (pseudogene) O - 20121230 -9606 28373 IGHVII-26-2 - 4-26.2P|IGHVII262 HGNC:5674|IMGT/GENE-DB:IGHV(II)-26-2 14 14q32.33 immunoglobulin heavy variable (II)-26-2 (pseudogene) pseudo IGHVII-26-2 immunoglobulin heavy variable (II)-26-2 (pseudogene) O - 20121230 -9606 28374 IGHVII-22-1 - 4-22.1P|IGHVII221 HGNC:5673|IMGT/GENE-DB:IGHV(II)-22-1 14 14q32.33 immunoglobulin heavy variable (II)-22-1 (pseudogene) pseudo IGHVII-22-1 immunoglobulin heavy variable (II)-22-1 (pseudogene) O - 20121230 -9606 28375 IGHVII-20-1 - 4-20.1P|IGHVII201 HGNC:5672|IMGT/GENE-DB:IGHV(II)-20-1 14 14q32.33 immunoglobulin heavy variable (II)-20-1 (pseudogene) pseudo IGHVII-20-1 immunoglobulin heavy variable (II)-20-1 (pseudogene) O - 20121230 -9606 28376 IGHVII-15-1 - 4-15.1P|IGHVII151 HGNC:5671|IMGT/GENE-DB:IGHV(II)-15-1 14 14q32.33 immunoglobulin heavy variable (II)-15-1 (pseudogene) pseudo IGHVII-15-1 immunoglobulin heavy variable (II)-15-1 (pseudogene) O - 20121230 -9606 28377 IGHVII-1-1 - 4-01.1P|IGHVII11 HGNC:5670|IMGT/GENE-DB:IGHV(II)-1-1 14 14q32.33 immunoglobulin heavy variable (II)-1-1 (pseudogene) pseudo IGHVII-1-1 immunoglobulin heavy variable (II)-1-1 (pseudogene) O - 20121230 -9606 28378 IGHV7-81 - IGHV781 HGNC:5669|IMGT/GENE-DB:IGHV7-81 14 14q32.33 immunoglobulin heavy variable 7-81 (non-functional) other IGHV7-81 immunoglobulin heavy variable 7-81 (non-functional) O - 20121230 -9606 28380 IGHV7-56 - 7-56P|IGHV756 HGNC:5667|IMGT/GENE-DB:IGHV7-56 14 14q32.33 immunoglobulin heavy variable 7-56 (pseudogene) pseudo IGHV7-56 immunoglobulin heavy variable 7-56 (pseudogene) O - 20121230 -9606 28381 IGHV7-40 - 7-40P|IGHV740 HGNC:5666|IMGT/GENE-DB:IGHV7-40 14 14q32.33 immunoglobulin heavy variable 7-40 (pseudogene) pseudo IGHV7-40 immunoglobulin heavy variable 7-40 (pseudogene) O - 20121230 -9606 28382 IGHV7-34-1 - 7-34.1P|IGHV7341 HGNC:5664|IMGT/GENE-DB:IGHV7-34-1 14 14q32.33 immunoglobulin heavy variable 7-34-1 (pseudogene) pseudo IGHV7-34-1 immunoglobulin heavy variable 7-34-1 (pseudogene) O - 20121230 -9606 28383 IGHV7-27 - 7-27P|IGHV727 HGNC:5663|IMGT/GENE-DB:IGHV7-27 14 14q32.33 immunoglobulin heavy variable 7-27 (pseudogene) pseudo IGHV7-27 immunoglobulin heavy variable 7-27 (pseudogene) O - 20121230 -9606 28385 IGHV6-1 - IGHV61|VH HGNC:5662|IMGT/GENE-DB:IGHV6-1 14 14q32.33 immunoglobulin heavy variable 6-1 other IGHV6-1 immunoglobulin heavy variable 6-1 O - 20121230 -9606 28386 IGHV5-A - IGHV5A HGNC:5661|IMGT/GENE-DB:IGHV5-a 14 14q32.33 immunoglobulin heavy variable 5-A (provisional) other IGHV5-A immunoglobulin heavy variable 5-A (provisional) O - 20120603 -9606 28387 IGHV5-78 - 5-78P|IGHV578 HGNC:5660|IMGT/GENE-DB:IGHV5-78 14 14q32.33 immunoglobulin heavy variable 5-78 (pseudogene) pseudo IGHV5-78 immunoglobulin heavy variable 5-78 (pseudogene) O - 20121230 -9606 28388 IGHV5-51 - IGHV551|VH HGNC:5659|IMGT/GENE-DB:IGHV5-51 14 14q32.33 immunoglobulin heavy variable 5-51 other IGHV5-51 immunoglobulin heavy variable 5-51 O - 20121230 -9606 28389 IGHV4-B - IGHV4B HGNC:5657|IMGT/GENE-DB:IGHV4-b 14 14q32.33 immunoglobulin heavy variable 4-B (provisional) other IGHV4-B immunoglobulin heavy variable 4-B (provisional) O - 20120212 -9606 28390 IGHV4-80 - 4-80P|IGHV480 HGNC:5656|IMGT/GENE-DB:IGHV4-80 14 14q32.33 immunoglobulin heavy variable 4-80 (pseudogene) pseudo IGHV4-80 immunoglobulin heavy variable 4-80 (pseudogene) O - 20121230 -9606 28391 IGHV4-61 - IGHV461|VH HGNC:5655|IMGT/GENE-DB:IGHV4-61 14 14q32.33 immunoglobulin heavy variable 4-61 other IGHV4-61 immunoglobulin heavy variable 4-61 O - 20121230 -9606 28392 IGHV4-59 - IGHV459|VH HGNC:5654|IMGT/GENE-DB:IGHV4-59 14 14q32.33 immunoglobulin heavy variable 4-59 other IGHV4-59 immunoglobulin heavy variable 4-59 O - 20121230 -9606 28393 IGHV4-55 - 4-55P|IGHV455 HGNC:5653|IMGT/GENE-DB:IGHV4-55 14 14q32.33 immunoglobulin heavy variable 4-55 (pseudogene) pseudo IGHV4-55 immunoglobulin heavy variable 4-55 (pseudogene) O - 20121230 -9606 28394 IGHV4-39 - IGHV439|VH HGNC:5651|IMGT/GENE-DB:IGHV4-39 14 14q32.33 immunoglobulin heavy variable 4-39 other IGHV4-39 immunoglobulin heavy variable 4-39 O - 20121230 -9606 28395 IGHV4-34 - IGHV434|VH HGNC:5650|IMGT/GENE-DB:IGHV4-34 14 14q32.33 immunoglobulin heavy variable 4-34 other IGHV4-34 immunoglobulin heavy variable 4-34 O - 20121230 -9606 28396 IGHV4-31 - IGHV431 HGNC:5649|IMGT/GENE-DB:IGHV4-31 14 14q32.33 immunoglobulin heavy variable 4-31 other IGHV4-31 immunoglobulin heavy variable 4-31 O - 20121230 -9606 28397 IGHV4-30-4 - IGHV4-3|IGHV4304 HGNC:5648|IMGT/GENE-DB:IGHV4-30-4 14 14q32.33 immunoglobulin heavy variable 4-30-4 other IGHV4-30-4 immunoglobulin heavy variable 4-30-4 O - 20111109 -9606 28398 IGHV4-30-2 - IGHV4-3|IGHV4302 HGNC:5647|IMGT/GENE-DB:IGHV4-30-2 14 14q32.33 immunoglobulin heavy variable 4-30-2 other IGHV4-30-2 immunoglobulin heavy variable 4-30-2 O - 20111109 -9606 28399 IGHV4-30-1 - IGHV4-3 HGNC:5646|IMGT/GENE-DB:IGHV4-30-1 14 14q32.33 immunoglobulin heavy variable 4-30-1 other IGHV4-30-1 immunoglobulin heavy variable 4-30-1 O - 20111109 -9606 28400 IGHV4-28 - IGHV428|VH HGNC:5645|IMGT/GENE-DB:IGHV4-28 14 14q32.33 immunoglobulin heavy variable 4-28 other IGHV4-28 immunoglobulin heavy variable 4-28 O - 20121230 -9606 28401 IGHV4-4 - IGHV44|VH HGNC:5652|IMGT/GENE-DB:IGHV4-4 14 14q32.33 immunoglobulin heavy variable 4-4 other IGHV4-4 immunoglobulin heavy variable 4-4 O - 20121230 -9606 28402 IGHV3-H - IGHV3H HGNC:5631|IMGT/GENE-DB:IGHV3-h 14 14q32.33 immunoglobulin heavy variable 3-H (pseudogene) pseudo IGHV3-H immunoglobulin heavy variable 3-H (pseudogene) O - 20111109 -9606 28404 IGHV3-D - IGHV3D HGNC:5629|IMGT/GENE-DB:IGHV3-d 14 14q32.33 immunoglobulin heavy variable 3-D (provisional) other IGHV3-D immunoglobulin heavy variable 3-D (provisional) O - 20120114 -9606 28405 IGHV3-79 - 3-79P|IGHV379 HGNC:5627|IMGT/GENE-DB:IGHV3-79 14 14q32.33 immunoglobulin heavy variable 3-79 (pseudogene) pseudo IGHV3-79 immunoglobulin heavy variable 3-79 (pseudogene) O - 20121230 -9606 28406 IGHV3-76 - 3-76P|IGHV376 HGNC:5626|IMGT/GENE-DB:IGHV3-76 14 14q32.33 immunoglobulin heavy variable 3-76 (pseudogene) pseudo IGHV3-76 immunoglobulin heavy variable 3-76 (pseudogene) O - 20121230 -9606 28407 IGHV3-75 - 3-75P|IGHV375 HGNC:5625|IMGT/GENE-DB:IGHV3-75 14 14q32.33 immunoglobulin heavy variable 3-75 (pseudogene) pseudo IGHV3-75 immunoglobulin heavy variable 3-75 (pseudogene) O - 20121230 -9606 28408 IGHV3-74 - IGHV374|VH HGNC:5624|IMGT/GENE-DB:IGHV3-74 14 14q32.33 immunoglobulin heavy variable 3-74 other IGHV3-74 immunoglobulin heavy variable 3-74 O - 20121230 -9606 28409 IGHV3-73 - IGHV373|VH HGNC:5623|IMGT/GENE-DB:IGHV3-73 14 14q32.33 immunoglobulin heavy variable 3-73 other IGHV3-73 immunoglobulin heavy variable 3-73 O - 20121230 -9606 28410 IGHV3-72 - IGHV372|VH HGNC:5622|IMGT/GENE-DB:IGHV3-72 14 14q32.33 immunoglobulin heavy variable 3-72 other IGHV3-72 immunoglobulin heavy variable 3-72 O - 20121230 -9606 28411 IGHV3-71 - 3-71P|IGHV3-G|IGHV371|IGHV3G HGNC:5621|IMGT/GENE-DB:IGHV3-71 14 14q32.33 immunoglobulin heavy variable 3-71 (pseudogene) pseudo IGHV3-71 immunoglobulin heavy variable 3-71 (pseudogene) O - 20121230 -9606 28412 IGHV3-66 - IGHV366|VH HGNC:5619|IMGT/GENE-DB:IGHV3-66 14 14q32.33 immunoglobulin heavy variable 3-66 other IGHV3-66 immunoglobulin heavy variable 3-66 O - 20121230 -9606 28413 IGHV3-65 - 3-65P|IGHV365 HGNC:5618|IMGT/GENE-DB:IGHV3-65 14 14q32.33 immunoglobulin heavy variable 3-65 (pseudogene) pseudo IGHV3-65 immunoglobulin heavy variable 3-65 (pseudogene) O - 20121230 -9606 28414 IGHV3-64 - IGHV364|VH HGNC:5617|IMGT/GENE-DB:IGHV3-64 14 14q32.33 immunoglobulin heavy variable 3-64 other IGHV3-64 immunoglobulin heavy variable 3-64 O - 20121230 -9606 28415 IGHV3-63 - IGHV363|V3-63P HGNC:5616|IMGT/GENE-DB:IGHV3-63 14 14q32.33 immunoglobulin heavy variable 3-63 (pseudogene) pseudo IGHV3-63 immunoglobulin heavy variable 3-63 (pseudogene) O - 20121230 -9606 28416 IGHV3-62 - 3-62P|IGHV362 HGNC:5615|IMGT/GENE-DB:IGHV3-62 14 14q32.33 immunoglobulin heavy variable 3-62 (pseudogene) pseudo IGHV3-62 immunoglobulin heavy variable 3-62 (pseudogene) O - 20121230 -9606 28417 IGHV3-60 - 3-60P|IGHV360 HGNC:5614|IMGT/GENE-DB:IGHV3-60 14 14q32.33 immunoglobulin heavy variable 3-60 (pseudogene) pseudo IGHV3-60 immunoglobulin heavy variable 3-60 (pseudogene) O - 20121230 -9606 28418 IGHV3-57 - 3-57P|IGHV357 HGNC:5612|IMGT/GENE-DB:IGHV3-57 14 14q32.33 immunoglobulin heavy variable 3-57 (pseudogene) pseudo IGHV3-57 immunoglobulin heavy variable 3-57 (pseudogene) O - 20121230 -9606 28419 IGHV3-54 - 3-54P|IGHV354 HGNC:5611|IMGT/GENE-DB:IGHV3-54 14 14q32.33 immunoglobulin heavy variable 3-54 (pseudogene) pseudo IGHV3-54 immunoglobulin heavy variable 3-54 (pseudogene) O - 20121230 -9606 28420 IGHV3-53 - IGHV353|VH HGNC:5610|IMGT/GENE-DB:IGHV3-53 14 14q32.33 immunoglobulin heavy variable 3-53 other IGHV3-53 immunoglobulin heavy variable 3-53 O - 20121230 -9606 28421 IGHV3-52 - 3-52P|IGHV352 HGNC:5609|IMGT/GENE-DB:IGHV3-52 14 14q32.33 immunoglobulin heavy variable 3-52 (pseudogene) pseudo IGHV3-52 immunoglobulin heavy variable 3-52 (pseudogene) O - 20121230 -9606 28422 IGHV3-50 - 3-50P|IGHV350 HGNC:5608|IMGT/GENE-DB:IGHV3-50 14 14q32.33 immunoglobulin heavy variable 3-50 (pseudogene) pseudo IGHV3-50 immunoglobulin heavy variable 3-50 (pseudogene) O - 20121230 -9606 28423 IGHV3-49 - IGHV349|VH HGNC:5607|IMGT/GENE-DB:IGHV3-49 14 14q32.33 immunoglobulin heavy variable 3-49 other IGHV3-49 immunoglobulin heavy variable 3-49 O - 20121230 -9606 28424 IGHV3-48 - IGHV348|VH HGNC:5606|IMGT/GENE-DB:IGHV3-48 14 14q32.33 immunoglobulin heavy variable 3-48 other IGHV3-48 immunoglobulin heavy variable 3-48 O - 20121230 -9606 28425 IGHV3-47 - 3-47P|IGHV347 HGNC:5605|IMGT/GENE-DB:IGHV3-47 14 14q32.33 immunoglobulin heavy variable 3-47 (pseudogene) pseudo IGHV3-47 immunoglobulin heavy variable 3-47 (pseudogene) O - 20121230 -9606 28426 IGHV3-43 - IGHV343|VH HGNC:5604|IMGT/GENE-DB:IGHV3-43 14 14q32.33 immunoglobulin heavy variable 3-43 other IGHV3-43 immunoglobulin heavy variable 3-43 O - 20121230 -9606 28427 IGHV3-42 - 3-42P|IGHV342 HGNC:5603|IMGT/GENE-DB:IGHV3-42 14 14q32.33 immunoglobulin heavy variable 3-42 (pseudogene) pseudo IGHV3-42 immunoglobulin heavy variable 3-42 (pseudogene) O - 20121230 -9606 28428 IGHV3-41 - 3-41P|IGHV341 HGNC:5602|IMGT/GENE-DB:IGHV3-41 14 14q32.33 immunoglobulin heavy variable 3-41 (pseudogene) pseudo IGHV3-41 immunoglobulin heavy variable 3-41 (pseudogene) O - 20121230 -9606 28429 IGHV3-38 - IGHV338|VH HGNC:5601|IMGT/GENE-DB:IGHV3-38 14 14q32.33 immunoglobulin heavy variable 3-38 (non-functional) other IGHV3-38 immunoglobulin heavy variable 3-38 (non-functional) O - 20121230 -9606 28430 IGHV3-37 - 3-37P|IGHV337 HGNC:5600|IMGT/GENE-DB:IGHV3-37 14 14q32.33 immunoglobulin heavy variable 3-37 (pseudogene) pseudo IGHV3-37 immunoglobulin heavy variable 3-37 (pseudogene) O - 20121230 -9606 28431 IGHV3-36 - 3-36P|IGHV336 HGNC:5599|IMGT/GENE-DB:IGHV3-36 14 14q32.33 immunoglobulin heavy variable 3-36 (pseudogene) pseudo IGHV3-36 immunoglobulin heavy variable 3-36 (pseudogene) O - 20121230 -9606 28432 IGHV3-35 - IGHV335|VH HGNC:5598|IMGT/GENE-DB:IGHV3-35 14 14q32.33 immunoglobulin heavy variable 3-35 (non-functional) other IGHV3-35 immunoglobulin heavy variable 3-35 (non-functional) O - 20121230 -9606 28433 IGHV3-33-2 - 3-33.2P|IGHV3332 HGNC:5597|IMGT/GENE-DB:IGHV3-33-2 14 14q32.33 immunoglobulin heavy variable 3-33-2 (pseudogene) pseudo IGHV3-33-2 immunoglobulin heavy variable 3-33-2 (pseudogene) O - 20121230 -9606 28434 IGHV3-33 - IGHV333|VH HGNC:5596|IMGT/GENE-DB:IGHV3-33 14 14q32.33 immunoglobulin heavy variable 3-33 other IGHV3-33 immunoglobulin heavy variable 3-33 O - 20121230 -9606 28435 IGHV3-32 - 3-32P|IGHV332 HGNC:5595|IMGT/GENE-DB:IGHV3-32 14 14q32.33 immunoglobulin heavy variable 3-32 (pseudogene) pseudo IGHV3-32 immunoglobulin heavy variable 3-32 (pseudogene) O - 20121230 -9606 28438 IGHV3-30-2 - 3-30.2P|IGHV3302 HGNC:5592|IMGT/GENE-DB:IGHV3-30-2 14 14q32.33 immunoglobulin heavy variable 3-30-2 (pseudogene) pseudo IGHV3-30-2 immunoglobulin heavy variable 3-30-2 (pseudogene) O - 20121230 -9606 28439 IGHV3-30 - IGHV330|VH HGNC:5591|IMGT/GENE-DB:IGHV3-30 14 14q32.33 immunoglobulin heavy variable 3-30 other IGHV3-30 immunoglobulin heavy variable 3-30 O - 20121230 -9606 28440 IGHV3-29 - 3-29P|IGHV329 HGNC:5590|IMGT/GENE-DB:IGHV3-29 14 14q32.33 immunoglobulin heavy variable 3-29 (pseudogene) pseudo IGHV3-29 immunoglobulin heavy variable 3-29 (pseudogene) O - 20121230 -9606 28441 IGHV3-25 - 3-25P|IGHV325 HGNC:5589|IMGT/GENE-DB:IGHV3-25 14 14q32.33 immunoglobulin heavy variable 3-25 (pseudogene) pseudo IGHV3-25 immunoglobulin heavy variable 3-25 (pseudogene) O - 20121230 -9606 28442 IGHV3-23 - DP47|IGHV323|V3-23|VH26 HGNC:5588|MIM:611939|IMGT/GENE-DB:IGHV3-23 14 14q32.33 immunoglobulin heavy variable 3-23 other IGHV3-23 immunoglobulin heavy variable 3-23 O - 20121230 -9606 28443 IGHV3-22 - 3-22P|IGHV322 HGNC:5587|IMGT/GENE-DB:IGHV3-22 14 14q32.33 immunoglobulin heavy variable 3-22 (pseudogene) pseudo IGHV3-22 immunoglobulin heavy variable 3-22 (pseudogene) O - 20121230 -9606 28444 IGHV3-21 - IGHV321|VH HGNC:5586|IMGT/GENE-DB:IGHV3-21 14 14q32.33 immunoglobulin heavy variable 3-21 other IGHV3-21 immunoglobulin heavy variable 3-21 O - 20121230 -9606 28445 IGHV3-20 - IGHV320|VH HGNC:5585|IMGT/GENE-DB:IGHV3-20 14 14q32.33 immunoglobulin heavy variable 3-20 other IGHV3-20 immunoglobulin heavy variable 3-20 O - 20121230 -9606 28446 IGHV3-19 - 3-19P|IGHV319 HGNC:5584|IMGT/GENE-DB:IGHV3-19 14 14q32.33 immunoglobulin heavy variable 3-19 (pseudogene) pseudo IGHV3-19 immunoglobulin heavy variable 3-19 (pseudogene) O - 20121230 -9606 28447 IGHV3-16 - IGHV316|VH HGNC:5583|IMGT/GENE-DB:IGHV3-16 14 14q32.33 immunoglobulin heavy variable 3-16 (non-functional) other IGHV3-16 immunoglobulin heavy variable 3-16 (non-functional) O - 20121230 -9606 28448 IGHV3-15 - IGHV315|VH HGNC:5582|IMGT/GENE-DB:IGHV3-15 14 14q32.33 immunoglobulin heavy variable 3-15 other IGHV3-15 immunoglobulin heavy variable 3-15 O - 20121230 -9606 28449 IGHV3-13 - IGHV313 HGNC:5581|IMGT/GENE-DB:IGHV3-13 14 14q32.33 immunoglobulin heavy variable 3-13 other IGHV3-13 immunoglobulin heavy variable 3-13 O - 20121230 -9606 28450 IGHV3-11 - IGHV311|VH HGNC:5580|IMGT/GENE-DB:IGHV3-11 14 14q32.33 immunoglobulin heavy variable 3-11 (gene/pseudogene) other IGHV3-11 immunoglobulin heavy variable 3-11 (gene/pseudogene) O - 20121230 -9606 28451 IGHV3-9 - IGHV39|VH HGNC:5628|IMGT/GENE-DB:IGHV3-9 14 14q32.33 immunoglobulin heavy variable 3-9 other IGHV3-9 immunoglobulin heavy variable 3-9 O - 20121230 -9606 28452 IGHV3-7 - IGHV37|VH HGNC:5620|IMGT/GENE-DB:IGHV3-7 14 14q32.33 immunoglobulin heavy variable 3-7 other IGHV3-7 immunoglobulin heavy variable 3-7 O - 20121230 -9606 28453 IGHV3-6 - 3-06P|IGHV36 HGNC:5613|IMGT/GENE-DB:IGHV3-6 14 14q32.33 immunoglobulin heavy variable 3-6 (pseudogene) pseudo IGHV3-6 immunoglobulin heavy variable 3-6 (pseudogene) O - 20121230 -9606 28454 IGHV2-70 - IGHV270|VH HGNC:5577|IMGT/GENE-DB:IGHV2-70 14 14q32.33 immunoglobulin heavy variable 2-70 other IGHV2-70 immunoglobulin heavy variable 2-70 O - 20121230 -9606 28455 IGHV2-26 - IGHV226|VH HGNC:5575|IMGT/GENE-DB:IGHV2-26 14 14q32.33 immunoglobulin heavy variable 2-26 other IGHV2-26 immunoglobulin heavy variable 2-26 O - 20121230 -9606 28456 IGHV2-10 - 2-10P|IGHV210 HGNC:5574|IMGT/GENE-DB:IGHV2-10 14 14q32.33 immunoglobulin heavy variable 2-10 (pseudogene) pseudo IGHV2-10 immunoglobulin heavy variable 2-10 (pseudogene) O - 20121230 -9606 28457 IGHV2-5 - IGHV25|VH HGNC:5576|IMGT/GENE-DB:IGHV2-5 14 14q32.33 immunoglobulin heavy variable 2-5 other IGHV2-5 immunoglobulin heavy variable 2-5 O - 20121230 -9606 28458 IGHV1-F - IGHV1F HGNC:5562|IMGT/GENE-DB:IGHV1-f 14 14q32.33 immunoglobulin heavy variable 1-F (provisional) other IGHV1-F immunoglobulin heavy variable 1-F (provisional) O - 20120212 -9606 28460 IGHV1-C - IGHV1C HGNC:5560|IMGT/GENE-DB:IGHV1-c 14 14q32.33 immunoglobulin heavy variable 1-C (provisional, non-functional) other IGHV1-C immunoglobulin heavy variable 1-C (provisional, non-functional) O - 20120212 -9606 28461 IGHV1-69 - IGHV1-E|IGHV169|IGHV1E HGNC:5558|IMGT/GENE-DB:IGHV1-69 14 14q32.33 immunoglobulin heavy variable 1-69 other IGHV1-69 immunoglobulin heavy variable 1-69 O - 20121230 -9606 28462 IGHV1-68 - 1-68P|IGHV168 HGNC:5557|IMGT/GENE-DB:IGHV1-68 14 14q32.33 immunoglobulin heavy variable 1-68 (pseudogene) pseudo IGHV1-68 immunoglobulin heavy variable 1-68 (pseudogene) O - 20121230 -9606 28463 IGHV1-67 - 1-67P|IGHV167 HGNC:5556|IMGT/GENE-DB:IGHV1-67 14 14q32.33 immunoglobulin heavy variable 1-67 (pseudogene) pseudo IGHV1-67 immunoglobulin heavy variable 1-67 (pseudogene) O - 20121230 -9606 28464 IGHV1-58 - IGHV158|VH HGNC:5555|IMGT/GENE-DB:IGHV1-58 14 14q32.33 immunoglobulin heavy variable 1-58 other IGHV1-58 immunoglobulin heavy variable 1-58 O - 20121230 -9606 28465 IGHV1-46 - IGHV146 HGNC:5554|IMGT/GENE-DB:IGHV1-46 14 14q32.33 immunoglobulin heavy variable 1-46 other IGHV1-46 immunoglobulin heavy variable 1-46 O - 20121230 -9606 28466 IGHV1-45 - IGHV145|VH HGNC:5553|IMGT/GENE-DB:IGHV1-45 14 14q32.33 immunoglobulin heavy variable 1-45 other IGHV1-45 immunoglobulin heavy variable 1-45 O - 20121230 -9606 28467 IGHV1-24 hCG_2038918 IGHV124|VH HGNC:5551|IMGT/GENE-DB:IGHV1-24 14 14q32.33 immunoglobulin heavy variable 1-24 other IGHV1-24 immunoglobulin heavy variable 1-24 O - 20121230 -9606 28468 IGHV1-18 - IGHV118 HGNC:5549|IMGT/GENE-DB:IGHV1-18 14 14q32.33 immunoglobulin heavy variable 1-18 other IGHV1-18 immunoglobulin heavy variable 1-18 O - 20121230 -9606 28469 IGHV1-17 - 1-17P|IGHV117 HGNC:5548|IMGT/GENE-DB:IGHV1-17 14 14q32.33 immunoglobulin heavy variable 1-17 (pseudogene) pseudo IGHV1-17 immunoglobulin heavy variable 1-17 (pseudogene) O - 20121230 -9606 28470 IGHV1-14 - 1-14P|IGHV114 HGNC:5547|IMGT/GENE-DB:IGHV1-14 14 14q32.33 immunoglobulin heavy variable 1-14 (pseudogene) pseudo IGHV1-14 immunoglobulin heavy variable 1-14 (pseudogene) O - 20121230 -9606 28471 IGHV1-12 - 1-12P|IGHV112 HGNC:5546|IMGT/GENE-DB:IGHV1-12 14 14q32.33 immunoglobulin heavy variable 1-12 (pseudogene) pseudo IGHV1-12 immunoglobulin heavy variable 1-12 (pseudogene) O - 20121230 -9606 28472 IGHV1-8 - IGHV18 HGNC:5559|IMGT/GENE-DB:IGHV1-8 14 14q32.33 immunoglobulin heavy variable 1-8 other IGHV1-8 immunoglobulin heavy variable 1-8 O - 20121230 -9606 28473 IGHV1-3 - IGHV13|VI-3B HGNC:5552|IMGT/GENE-DB:IGHV1-3 14 14q32.33 immunoglobulin heavy variable 1-3 other IGHV1-3 immunoglobulin heavy variable 1-3 O - 20121230 -9606 28474 IGHV1-2 - IGHV12|V35 HGNC:5550|IMGT/GENE-DB:IGHV1-2 14 14q32.33 immunoglobulin heavy variable 1-2 other IGHV1-2 immunoglobulin heavy variable 1-2 O - 20121230 -9606 28475 IGHJ6 - JH6b HGNC:5540|IMGT/GENE-DB:IGHJ6 14 14q32.33 immunoglobulin heavy joining 6 other IGHJ6 immunoglobulin heavy joining 6 O - 20121230 -9606 28476 IGHJ5 - JH5b HGNC:5539|IMGT/GENE-DB:IGHJ5 14 14q32.33 immunoglobulin heavy joining 5 other IGHJ5 immunoglobulin heavy joining 5 O - 20121230 -9606 28477 IGHJ4 - JH4b HGNC:5538|IMGT/GENE-DB:IGHJ4 14 14q32.33 immunoglobulin heavy joining 4 other IGHJ4 immunoglobulin heavy joining 4 O - 20121230 -9606 28478 IGHJ3P - Jpsi3 HGNC:5537|IMGT/GENE-DB:IGHJ3P 14 14q32.33 immunoglobulin heavy joining 3P (pseudogene) pseudo IGHJ3P immunoglobulin heavy joining 3P (pseudogene) O - 20121230 -9606 28479 IGHJ3 - JH3b HGNC:5536|IMGT/GENE-DB:IGHJ3 14 14q32.33 immunoglobulin heavy joining 3 other IGHJ3 immunoglobulin heavy joining 3 O - 20121230 -9606 28480 IGHJ2P - Jpsi2 HGNC:5535|IMGT/GENE-DB:IGHJ2P 14 14q32.33 immunoglobulin heavy joining 2P (pseudogene) pseudo IGHJ2P immunoglobulin heavy joining 2P (pseudogene) O - 20121230 -9606 28481 IGHJ2 - JH2 HGNC:5534|IMGT/GENE-DB:IGHJ2 14 14q32.33 immunoglobulin heavy joining 2 other IGHJ2 immunoglobulin heavy joining 2 O - 20121230 -9606 28482 IGHJ1P - J-psi-1|Jpsi1 HGNC:5533|IMGT/GENE-DB:IGHJ1P 14 14q32.33 immunoglobulin heavy joining 1P (pseudogene) pseudo IGHJ1P immunoglobulin heavy joining 1P (pseudogene) O - 20121230 -9606 28483 IGHJ1 - JH1 HGNC:5532|IMGT/GENE-DB:IGHJ1 14 14q32.33 immunoglobulin heavy joining 1 other IGHJ1 immunoglobulin heavy joining 1 O - 20121230 -9606 28484 IGHD7-27 - DHQ52|IGHD727 HGNC:5518|IMGT/GENE-DB:IGHD7-27 14 14q32.33 immunoglobulin heavy diversity 7-27 other IGHD7-27 immunoglobulin heavy diversity 7-27 O - 20121230 -9606 28485 IGHD6-25 - IGHD625 HGNC:5516|IMGT/GENE-DB:IGHD6-25 14 14q32.33 immunoglobulin heavy diversity 6-25 other IGHD6-25 immunoglobulin heavy diversity 6-25 O - 20121230 -9606 28486 IGHD6-19 - IGHD619 HGNC:5515|IMGT/GENE-DB:IGHD6-19 14 14q32.33 immunoglobulin heavy diversity 6-19 other IGHD6-19 immunoglobulin heavy diversity 6-19 O - 20121230 -9606 28487 IGHD6-13 - DN1|IGHD613 HGNC:5514|IMGT/GENE-DB:IGHD6-13 14 14q32.33 immunoglobulin heavy diversity 6-13 other IGHD6-13 immunoglobulin heavy diversity 6-13 O - 20121230 -9606 28488 IGHD6-6 - D(N4)|IGHD66 HGNC:5517|IMGT/GENE-DB:IGHD6-6 14 14q32.33 immunoglobulin heavy diversity 6-6 other IGHD6-6 immunoglobulin heavy diversity 6-6 O - 20121230 -9606 28489 IGHD5-24 - IGHD524 HGNC:5510|IMGT/GENE-DB:IGHD5-24 14 14q32.33 immunoglobulin heavy diversity 5-24 (non-functional) other IGHD5-24 immunoglobulin heavy diversity 5-24 (non-functional) O - 20121230 -9606 28490 IGHD5-18 - IGHD518 HGNC:5509|IMGT/GENE-DB:IGHD5-18 14 14q32.33 immunoglobulin heavy diversity 5-18 other IGHD5-18 immunoglobulin heavy diversity 5-18 O - 20121230 -9606 28491 IGHD5-12 - DK1|IGHD512 HGNC:5508|IMGT/GENE-DB:IGHD5-12 14 14q32.33 immunoglobulin heavy diversity 5-12 other IGHD5-12 immunoglobulin heavy diversity 5-12 O - 20121230 -9606 28492 IGHD5-5 - DK4|IGHD55 HGNC:5511|IMGT/GENE-DB:IGHD5-5 14 14q32.33 immunoglobulin heavy diversity 5-5 other IGHD5-5 immunoglobulin heavy diversity 5-5 O - 20121230 -9606 28493 IGHD4-23 - IGHD423 HGNC:5504|IMGT/GENE-DB:IGHD4-23 14 14q32.33 immunoglobulin heavy diversity 4-23 (non-functional) other IGHD4-23 immunoglobulin heavy diversity 4-23 (non-functional) O - 20121230 -9606 28494 IGHD4-17 - IGHD417 HGNC:5503|IMGT/GENE-DB:IGHD4-17 14 14q32.33 immunoglobulin heavy diversity 4-17 other IGHD4-17 immunoglobulin heavy diversity 4-17 O - 20121230 -9606 28495 IGHD4-11 - DA1|IGHD411 HGNC:5502|IMGT/GENE-DB:IGHD4-11 14 14q32.33 immunoglobulin heavy diversity 4-11 (non-functional) other IGHD4-11 immunoglobulin heavy diversity 4-11 (non-functional) O - 20121230 -9606 28496 IGHD4-4 - DA4|IGHD44 HGNC:5505|IMGT/GENE-DB:IGHD4-4 14 14q32.33 immunoglobulin heavy diversity 4-4 other IGHD4-4 immunoglobulin heavy diversity 4-4 O - 20121230 -9606 28497 IGHD3-22 - IGHD322 HGNC:5497|IMGT/GENE-DB:IGHD3-22 14 14q32.33 immunoglobulin heavy diversity 3-22 other IGHD3-22 immunoglobulin heavy diversity 3-22 O - 20121230 -9606 28498 IGHD3-16 - IGHD316 HGNC:5496|IMGT/GENE-DB:IGHD3-16 14 14q32.33 immunoglobulin heavy diversity 3-16 other IGHD3-16 immunoglobulin heavy diversity 3-16 O - 20121230 -9606 28499 IGHD3-10 - DXP'1|IGHD310 HGNC:5495|IMGT/GENE-DB:IGHD3-10 14 14q32.33 immunoglobulin heavy diversity 3-10 other IGHD3-10 immunoglobulin heavy diversity 3-10 O - 20121230 -9606 28500 IGHD3-9 - DXP1|IGHD39 HGNC:5499|IMGT/GENE-DB:IGHD3-9 14 14q32.33 immunoglobulin heavy diversity 3-9 other IGHD3-9 immunoglobulin heavy diversity 3-9 O - 20121230 -9606 28501 IGHD3-3 - DXP4|IGHD33 HGNC:5498|MIM:611937|IMGT/GENE-DB:IGHD3-3 14 14q32.33 immunoglobulin heavy diversity 3-3 other IGHD3-3 immunoglobulin heavy diversity 3-3 O - 20121230 -9606 28502 IGHD2-21 - IGHD221 HGNC:5491|IMGT/GENE-DB:IGHD2-21 14 14q32.33 immunoglobulin heavy diversity 2-21 other IGHD2-21 immunoglobulin heavy diversity 2-21 O - 20121230 -9606 28503 IGHD2-15 - D2|IGHD215 HGNC:5489|IMGT/GENE-DB:IGHD2-15 14 14q32.33 immunoglobulin heavy diversity 2-15 other IGHD2-15 immunoglobulin heavy diversity 2-15 O - 20121230 -9606 28504 IGHD2-8 - DLR1|IGHD28 HGNC:5492|IMGT/GENE-DB:IGHD2-8 14 14q32.33 immunoglobulin heavy diversity 2-8 other IGHD2-8 immunoglobulin heavy diversity 2-8 O - 20121230 -9606 28505 IGHD2-2 - IGHD22 HGNC:5490|IMGT/GENE-DB:IGHD2-2 14 14q32.33 immunoglobulin heavy diversity 2-2 other IGHD2-2 immunoglobulin heavy diversity 2-2 O - 20121230 -9606 28506 IGHD1-26 - IGHD126 HGNC:5485|IMGT/GENE-DB:IGHD1-26 14 14q32.33 immunoglobulin heavy diversity 1-26 other IGHD1-26 immunoglobulin heavy diversity 1-26 O - 20121230 -9606 28507 IGHD1-20 - IGHD120 HGNC:5484|IMGT/GENE-DB:IGHD1-20 14 14q32.33 immunoglobulin heavy diversity 1-20 other IGHD1-20 immunoglobulin heavy diversity 1-20 O - 20121230 -9606 28508 IGHD1-14 - DM2|IGHD114 HGNC:5483|IMGT/GENE-DB:IGHD1-14 14 14q32.33 immunoglobulin heavy diversity 1-14 (non-functional) other IGHD1-14 immunoglobulin heavy diversity 1-14 (non-functional) O - 20121230 -9606 28509 IGHD1-7 - DM1|IGHD17 HGNC:5486|IMGT/GENE-DB:IGHD1-7 14 14q32.33 immunoglobulin heavy diversity 1-7 other IGHD1-7 immunoglobulin heavy diversity 1-7 O - 20121230 -9606 28510 IGHD1-1 - IGHD11 HGNC:5482|IMGT/GENE-DB:IGHD1-1 14 14q32.33 immunoglobulin heavy diversity 1-1 other IGHD1-1 immunoglobulin heavy diversity 1-1 O - 20121230 -9606 28511 NKIRAS2 - KBRAS2|kappaB-Ras2 HGNC:17898|MIM:604497|Ensembl:ENSG00000168256|HPRD:07261|Vega:OTTHUMG00000133503 17 17q21.2 NFKB inhibitor interacting Ras-like 2 protein-coding NKIRAS2 NFKB inhibitor interacting Ras-like 2 O I-kappa-B-interacting Ras-like protein 2|NF-kappa-B inhibitor-interacting Ras-like protein 2|NFKB inhibitor interacting Ras-like protein 2|kappa B-Ras protein 2 20121230 -9606 28512 NKIRAS1 - KBRAS1|kappaB-Ras1 HGNC:17899|MIM:604496|Ensembl:ENSG00000197885|HPRD:06841|Vega:OTTHUMG00000155605 3 3p24.2 NFKB inhibitor interacting Ras-like 1 protein-coding NKIRAS1 NFKB inhibitor interacting Ras-like 1 O I-kappa-B-interacting Ras-like protein 1|NF-kappa-B inhibitor-interacting Ras-like protein 1|NFKB inhibitor interacting Ras-like protein 1|kappa B-Ras protein 1|kappa B-ras 1 20121230 -9606 28513 CDH19 UNQ478/PRO941 CDH7|CDH7L2 HGNC:1758|MIM:603016|Ensembl:ENSG00000071991|HPRD:04311|Vega:OTTHUMG00000132802 18 18q22.1 cadherin 19, type 2 protein-coding CDH19 cadherin 19, type 2 O cadherin-19 20121230 -9606 28514 DLL1 UNQ146/PRO172 DELTA1|DL1|Delta HGNC:2908|MIM:606582|Ensembl:ENSG00000198719|HPRD:05957|Vega:OTTHUMG00000016078 6 6q27 delta-like 1 (Drosophila) protein-coding DLL1 delta-like 1 (Drosophila) O H-Delta-1|delta-like protein 1|drosophila Delta homolog 1 20121230 -9606 28515 HYPLIP2 - FCHL2 MIM:604499 11 11p hyperlipidemia, combined, 2 unknown - - - - 20120622 -9606 28516 TRDV3 - hDV103S1 HGNC:12264|IMGT/GENE-DB:TRDV3 14 14q11 T cell receptor delta variable 3 other TRDV3 T cell receptor delta variable 3 O - 20121230 -9606 28517 TRDV2 - hDV102S1 HGNC:12263|IMGT/GENE-DB:TRDV2 14 14q11 T cell receptor delta variable 2 other TRDV2 T cell receptor delta variable 2 O - 20121230 -9606 28518 TRDV1 - hDV101S1 HGNC:12262|IMGT/GENE-DB:TRDV1 14 14q11 T cell receptor delta variable 1 other TRDV1 T cell receptor delta variable 1 O - 20121230 -9606 28519 TRDJ4 - - HGNC:12260|IMGT/GENE-DB:TRDJ4 14 14q11.2 T cell receptor delta joining 4 other TRDJ4 T cell receptor delta joining 4 O - 20121230 -9606 28520 TRDJ3 - - HGNC:12259|IMGT/GENE-DB:TRDJ3 14 14q11 T cell receptor delta joining 3 other TRDJ3 T cell receptor delta joining 3 O - 20121230 -9606 28521 TRDJ2 - - HGNC:12258|IMGT/GENE-DB:TRDJ2 14 14q11 T cell receptor delta joining 2 other TRDJ2 T cell receptor delta joining 2 O - 20121230 -9606 28522 TRDJ1 - TCRD HGNC:12257|IMGT/GENE-DB:TRDJ1 14 14q11 T cell receptor delta joining 1 other TRDJ1 T cell receptor delta joining 1 O - 20121230 -9606 28523 TRDD3 - TCRD HGNC:12256|IMGT/GENE-DB:TRDD3 14 14q11 T cell receptor delta diversity 3 other TRDD3 T cell receptor delta diversity 3 O - 20121230 -9606 28524 TRDD2 - - HGNC:12255|IMGT/GENE-DB:TRDD2 14 14q11 T cell receptor delta diversity 2 other TRDD2 T cell receptor delta diversity 2 O - 20121230 -9606 28525 TRDD1 - - HGNC:12254|IMGT/GENE-DB:TRDD1 14 14q11 T cell receptor delta diversity 1 other TRDD1 T cell receptor delta diversity 1 O - 20121230 -9606 28526 TRDC - - HGNC:12253|IMGT/GENE-DB:TRDC 14 14q11 T cell receptor delta constant other TRDC T cell receptor delta constant O - 20121230 -9606 28552 TRBV23OR9-2 RP11-255A11.11-001 TCRBV19S2O|TCRBV23S2|TRBV23OR92 HGNC:12202|IMGT/GENE-DB:TRBV23/OR9-2 9 9p21 T cell receptor beta variable 23/OR9-2 (non-functional) pseudo TRBV23OR9-2 T cell receptor beta variable 23/OR9-2 (non-functional) O - 20121230 -9606 28555 TRBVB - TCRBV34S1 HGNC:12248|IMGT/GENE-DB:TRBVB 7 7q34 T cell receptor beta variable B (pseudogene) pseudo TRBVB T cell receptor beta variable B (pseudogene) O - 20121230 -9606 28556 TRBVA - TCRBV33S1 HGNC:12247|IMGT/GENE-DB:TRBVA 7 7q34 T cell receptor beta variable A (pseudogene) pseudo TRBVA T cell receptor beta variable A (pseudogene) O - 20121230 -9606 28557 TRBV30 - TCRBV20S1A1N2|TCRBV30S1 HGNC:12214|IMGT/GENE-DB:TRBV30 7 7q34 T cell receptor beta variable 30 (gene/pseudogene) other TRBV30 T cell receptor beta variable 30 (gene/pseudogene) O - 20121230 -9606 28558 TRBV29-1 - TCRBV29S1|TCRBV4S1A1T|TRBV291 HGNC:12210|IMGT/GENE-DB:TRBV29-1 7 7q34 T cell receptor beta variable 29-1 other TRBV29-1 T cell receptor beta variable 29-1 O - 20121230 -9606 28559 TRBV28 - TCRBV28S1|TCRBV3S1 HGNC:12209|IMGT/GENE-DB:TRBV28 7 7q34 T cell receptor beta variable 28 other TRBV28 T cell receptor beta variable 28 O - 20121230 -9606 28560 TRBV27 - TCRBV14S1|TCRBV27S1 HGNC:12208|IMGT/GENE-DB:TRBV27 7 7q34 T cell receptor beta variable 27 other TRBV27 T cell receptor beta variable 27 O - 20121230 -9606 28561 TRBV26 - TCRBV26S1|TCRBV28S1P HGNC:12207|IMGT/GENE-DB:TRBV26 7 7q34 T cell receptor beta variable 26 (pseudogene) pseudo TRBV26 T cell receptor beta variable 26 (pseudogene) O - 20121230 -9606 28562 TRBV25-1 - TCRBV11S1A1T|TCRBV25S1|TRBV251 HGNC:12205|IMGT/GENE-DB:TRBV25-1 7 7q34 T cell receptor beta variable 25-1 other TRBV25-1 T cell receptor beta variable 25-1 O - 20121230 -9606 28563 TRBV24-1 - TCRBV15S1|TCRBV24S1|TRBV241 HGNC:12203|IMGT/GENE-DB:TRBV24-1 7 7q34 T cell receptor beta variable 24-1 other TRBV24-1 T cell receptor beta variable 24-1 O - 20121230 -9606 28564 TRBV23-1 - TCRBV19S1P|TCRBV23S1|TRBV231 HGNC:12201|IMGT/GENE-DB:TRBV23-1 7 7q34 T cell receptor beta variable 23-1 (non-functional) pseudo TRBV23-1 T cell receptor beta variable 23-1 (non-functional) O - 20121230 -9606 28565 TRBV22-1 - TCRBV22S1|TCRBV29S1P|TRBV22 HGNC:12200|IMGT/GENE-DB:TRBV22-1 7 7q34 T cell receptor beta variable 22-1 (pseudogene) pseudo TRBV22-1 T cell receptor beta variable 22-1 (pseudogene) O - 20121230 -9606 28566 TRBV21-1 - TCRBV10S1P|TCRBV21S1|TRBV211 HGNC:12198|IMGT/GENE-DB:TRBV21-1 7 7q34 T cell receptor beta variable 21-1 (pseudogene) pseudo TRBV21-1 T cell receptor beta variable 21-1 (pseudogene) O - 20121230 -9606 28567 TRBV20-1 - TCRBV20S1|TCRBV2S1|TRBV201 HGNC:12196|IMGT/GENE-DB:TRBV20-1 7 7q34 T cell receptor beta variable 20-1 other TRBV20-1 T cell receptor beta variable 20-1 O - 20121230 -9606 28568 TRBV19 - TCRBV17S1A1T|TCRBV19S1 HGNC:12194|IMGT/GENE-DB:TRBV19 7 7q34 T cell receptor beta variable 19 other TRBV19 T cell receptor beta variable 19 O - 20121230 -9606 28569 TRBV18 - TCRBV18S1 HGNC:12193|IMGT/GENE-DB:TRBV18 7 7q34 T cell receptor beta variable 18 other TRBV18 T cell receptor beta variable 18 O - 20121230 -9606 28570 TRBV17 - TCRBV17S1|TCRBV26S1P HGNC:12192|IMGT/GENE-DB:TRBV17 7 7q34 T cell receptor beta variable 17 (non-functional) other TRBV17 T cell receptor beta variable 17 (non-functional) O - 20121230 -9606 28571 TRBV16 - BV25S1J1.2|TCRBV16S1|TCRBV25S1A2PT HGNC:12191|IMGT/GENE-DB:TRBV16 7 7q34 T cell receptor beta variable 16 (gene/pseudogene) other TRBV16 T cell receptor beta variable 16 (gene/pseudogene) O - 20121230 -9606 28572 TRBV15 - TCRBV15S1|TCRBV24S1A3T HGNC:12190|IMGT/GENE-DB:TRBV15 7 7q34 T cell receptor beta variable 15 other TRBV15 T cell receptor beta variable 15 O - 20121230 -9606 28573 TRBV14 - TCRBV14S1|TCRBV16S1A1N1 HGNC:12189|IMGT/GENE-DB:TRBV14 7 7q34 T cell receptor beta variable 14 other TRBV14 T cell receptor beta variable 14 O - 20121230 -9606 28574 TRBV13 - TCRBV13S1|TCRBV23S1A2T HGNC:12188|IMGT/GENE-DB:TRBV13 7 7q34 T cell receptor beta variable 13 other TRBV13 T cell receptor beta variable 13 O - 20121230 -9606 28575 TRBV12-5 - TCRBV12S5|TCRBV8S3|TRBV125 HGNC:12187|IMGT/GENE-DB:TRBV12-5 7 7q34 T cell receptor beta variable 12-5 other TRBV12-5 T cell receptor beta variable 12-5 O - 20121230 -9606 28576 TRBV12-4 - TCRBV12S4|TCRBV8S2A1T|TRBV124 HGNC:12186|IMGT/GENE-DB:TRBV12-4 7 7q34 T cell receptor beta variable 12-4 other TRBV12-4 T cell receptor beta variable 12-4 O - 20121230 -9606 28577 TRBV12-3 - TCRBV12S3|TCRBV8S1|TRBV123 HGNC:12185|IMGT/GENE-DB:TRBV12-3 7 7q34 T cell receptor beta variable 12-3 other TRBV12-3 T cell receptor beta variable 12-3 O - 20121230 -9606 28578 TRBV12-2 - TCRBV12S2|TCRBV8S5P|TRBV122 HGNC:12184|IMGT/GENE-DB:TRBV12-2 7 7q34 T cell receptor beta variable 12-2 (pseudogene) pseudo TRBV12-2 T cell receptor beta variable 12-2 (pseudogene) O - 20121230 -9606 28579 TRBV12-1 - TCRBV12S1|TCRBV8S4P|TRBV121 HGNC:12183|IMGT/GENE-DB:TRBV12-1 7 7q34 T cell receptor beta variable 12-1 (pseudogene) pseudo TRBV12-1 T cell receptor beta variable 12-1 (pseudogene) O - 20121230 -9606 28580 TRBV11-3 - TCRBV11S3|TCRBV21S2A2|TRBV113 HGNC:12182|IMGT/GENE-DB:TRBV11-3 7 7q34 T cell receptor beta variable 11-3 other TRBV11-3 T cell receptor beta variable 11-3 O - 20121230 -9606 28581 TRBV11-2 - TCRBV11S2|TCRBV21S3A2N2T|TRBV112 HGNC:12181|IMGT/GENE-DB:TRBV11-2 7 7q34 T cell receptor beta variable 11-2 other TRBV11-2 T cell receptor beta variable 11-2 O - 20121230 -9606 28582 TRBV11-1 - TCRBV11S1|TCRBV21S1|TRBV111 HGNC:12180|IMGT/GENE-DB:TRBV11-1 7 7q34 T cell receptor beta variable 11-1 other TRBV11-1 T cell receptor beta variable 11-1 O - 20121230 -9606 28583 TRBV10-3 - TCRBV10S3|TCRBV12S1A1N2|TRBV103 HGNC:12179|IMGT/GENE-DB:TRBV10-3 7 7q34 T cell receptor beta variable 10-3 other TRBV10-3 T cell receptor beta variable 10-3 O - 20121230 -9606 28584 TRBV10-2 - TCRBV10S2|TCRBV12S3|TRBV102 HGNC:12178|IMGT/GENE-DB:TRBV10-2 7 7q34 T cell receptor beta variable 10-2 other TRBV10-2 T cell receptor beta variable 10-2 O - 20121230 -9606 28585 TRBV10-1 - TCRBV10S1|TCRBV12S2|TCRBV12S2A1T|TRBV101 HGNC:12177|IMGT/GENE-DB:TRBV10-1 7 7q34 T cell receptor beta variable 10-1(gene/pseudogene) other TRBV10-1 T cell receptor beta variable 10-1(gene/pseudogene) O - 20121230 -9606 28586 TRBV9 - TCRBV1S1A1N1|TCRBV9S1 HGNC:12246|IMGT/GENE-DB:TRBV9 7 7q34 T cell receptor beta variable 9 other TRBV9 T cell receptor beta variable 9 O - 20121230 -9606 28587 TRBV8-2 - TCRBV32S1P|TRBV82 HGNC:12245|IMGT/GENE-DB:TRBV8-2 7 7q34 T cell receptor beta variable 8-2 (pseudogene) pseudo TRBV8-2 T cell receptor beta variable 8-2 (pseudogene) O - 20121230 -9606 28588 TRBV8-1 - TCRBV30S1P|TCRBV8S1P|TRBV81 HGNC:12244|IMGT/GENE-DB:TRBV8-1 7 7q34 T cell receptor beta variable 8-1 (pseudogene) pseudo TRBV8-1 T cell receptor beta variable 8-1 (pseudogene) O - 20121230 -9606 28589 TRBV7-9 - TCRBV6S4A1|TCRBV7S9|TRBV79 HGNC:12243|IMGT/GENE-DB:TRBV7-9 7 7q34 T cell receptor beta variable 7-9 other TRBV7-9 T cell receptor beta variable 7-9 O - 20121230 -9606 28590 TRBV7-8 - TCRBV6S2A1N1T|TCRBV7S8|TRBV78 HGNC:12242|IMGT/GENE-DB:TRBV7-8 7 7q34 T cell receptor beta variable 7-8 other TRBV7-8 T cell receptor beta variable 7-8 O - 20121230 -9606 28591 TRBV7-7 - TCRBV6S6A2T|TCRBV7S7|TRBV77 HGNC:12241|IMGT/GENE-DB:TRBV7-7 7 7q34 T cell receptor beta variable 7-7 other TRBV7-7 T cell receptor beta variable 7-7 O - 20121230 -9606 28592 TRBV7-6 - TCRBV6S3A1N1T|TCRBV7S6|TRBV76 HGNC:12240|IMGT/GENE-DB:TRBV7-6 7 7q34 T cell receptor beta variable 7-6 other TRBV7-6 T cell receptor beta variable 7-6 O - 20121230 -9606 28593 TRBV7-5 - TCRBV6S9P|TCRBV7S5|TRBV75 HGNC:12239|IMGT/GENE-DB:TRBV7-5 7 7q34 T cell receptor beta variable 7-5 (pseudogene) pseudo TRBV7-5 T cell receptor beta variable 7-5 (pseudogene) O - 20121230 -9606 28594 TRBV7-4 - TCRBV6S8A2T|TCRBV7S4|TRBV74 HGNC:12238|IMGT/GENE-DB:TRBV7-4 7 7q34 T cell receptor beta variable 7-4 (gene/pseudogene) other TRBV7-4 T cell receptor beta variable 7-4 (gene/pseudogene) O - 20121230 -9606 28595 TRBV7-3 - TCRBV6S1A1N1|TCRBV7S3|TRBV73 HGNC:12237|IMGT/GENE-DB:TRBV7-3 7 7q34 T cell receptor beta variable 7-3 other TRBV7-3 T cell receptor beta variable 7-3 O - 20121230 -9606 28596 TRBV7-2 - TCRBV6S5A1N1|TCRBV6S5A2|TCRBV7S2|TRBV72 HGNC:12236|IMGT/GENE-DB:TRBV7-2 7 7q34 T cell receptor beta variable 7-2 other TRBV7-2 T cell receptor beta variable 7-2 O - 20121230 -9606 28597 TRBV7-1 - TCRBV6S7P|TCRBV7S1|TRBV71 HGNC:12235|IMGT/GENE-DB:TRBV7-1 7 7q34 T cell receptor beta variable 7-1 (non-functional) pseudo TRBV7-1 T cell receptor beta variable 7-1 (non-functional) O - 20121230 -9606 28598 TRBV6-9 - TCRBV13S4|TCRBV6S9|TRBV69 HGNC:12234|IMGT/GENE-DB:TRBV6-9 7 7q34 T cell receptor beta variable 6-9 other TRBV6-9 T cell receptor beta variable 6-9 O - 20121230 -9606 28599 TRBV6-8 - TCRBV13S7P|TCRBV6S8|TRBV68 HGNC:12233|IMGT/GENE-DB:TRBV6-8 7 7q34 T cell receptor beta variable 6-8 other TRBV6-8 T cell receptor beta variable 6-8 O - 20121230 -9606 28600 TRBV6-7 - TCRBV13S8P|TCRBV6S7|TRBV67 HGNC:12232|IMGT/GENE-DB:TRBV6-7 7 7q34 T cell receptor beta variable 6-7 (non-functional) other TRBV6-7 T cell receptor beta variable 6-7 (non-functional) O - 20121230 -9606 28601 TRBV6-6 - TCRBV13S6A2T|TCRBV6S6|TRBV66 HGNC:12231|IMGT/GENE-DB:TRBV6-6 7 7q34 T cell receptor beta variable 6-6 other TRBV6-6 T cell receptor beta variable 6-6 O - 20121230 -9606 28602 TRBV6-5 - TCRBV13S1|TCRBV6S5|TRBV65 HGNC:12230|IMGT/GENE-DB:TRBV6-5 7 7q34 T cell receptor beta variable 6-5 other TRBV6-5 T cell receptor beta variable 6-5 O - 20121230 -9606 28603 TRBV6-4 - TCRBV13S5|TCRBV6S4|TRBV64 HGNC:12229|IMGT/GENE-DB:TRBV6-4 7 7q34 T cell receptor beta variable 6-4 other TRBV6-4 T cell receptor beta variable 6-4 O - 20121230 -9606 28604 TRBV6-3 - TCRBV13S9/13S2A1T|TCRBV6S3|TRBV63 HGNC:12228|IMGT/GENE-DB:TRBV6-3 7 7q34 T cell receptor beta variable 6-3 other TRBV6-3 T cell receptor beta variable 6-3 O - 20121230 -9606 28605 TRBV6-2 - TCRBV13S2|TCRBV13S2A1T|TCRBV6S2|TRBV62 HGNC:12227|IMGT/GENE-DB:TRBV6-2 7 7q34 T cell receptor beta variable 6-2 (gene/pseudogene) other TRBV6-2 T cell receptor beta variable 6-2 (gene/pseudogene) O - 20121230 -9606 28606 TRBV6-1 - TCRBV13S3|TCRBV6S1|TRBV61 HGNC:12226|IMGT/GENE-DB:TRBV6-1 7 7q34 T cell receptor beta variable 6-1 other TRBV6-1 T cell receptor beta variable 6-1 O - 20121230 -9606 28607 TRBV5-8 - TCRBV5S4A2T|TCRBV5S8|TRBV58 HGNC:12225|IMGT/GENE-DB:TRBV5-8 7 7q34 T cell receptor beta variable 5-8 other TRBV5-8 T cell receptor beta variable 5-8 O - 20121230 -9606 28608 TRBV5-7 - TCRBV5S7|TCRBV5S7P|TRBV57 HGNC:12224|IMGT/GENE-DB:TRBV5-7 7 7q34 T cell receptor beta variable 5-7 (non-functional) other TRBV5-7 T cell receptor beta variable 5-7 (non-functional) O - 20121230 -9606 28609 TRBV5-6 - TCRBV5S2|TCRBV5S6|TRBV56 HGNC:12223|IMGT/GENE-DB:TRBV5-6 7 7q34 T cell receptor beta variable 5-6 other TRBV5-6 T cell receptor beta variable 5-6 O - 20121230 -9606 28610 TRBV5-5 - TCRBV5S3A2T|TCRBV5S5|TRBV55 HGNC:12222|IMGT/GENE-DB:TRBV5-5 7 7q34 T cell receptor beta variable 5-5 other TRBV5-5 T cell receptor beta variable 5-5 O - 20121230 -9606 28611 TRBV5-4 - TCRBV5S4|TCRBV5S6A3N2T|TRBV54 HGNC:12221|IMGT/GENE-DB:TRBV5-4 7 7q34 T cell receptor beta variable 5-4 other TRBV5-4 T cell receptor beta variable 5-4 O - 20121230 -9606 28612 TRBV5-3 - TCRBV5S3|TCRBV5S5P|TRBV53 HGNC:12220|IMGT/GENE-DB:TRBV5-3 7 7q34 T cell receptor beta variable 5-3 (non-functional) pseudo TRBV5-3 T cell receptor beta variable 5-3 (non-functional) O - 20121230 -9606 28613 TRBV5-2 - TCRBV31S1|TCRBV5S2P|TRBV52 HGNC:12219|IMGT/GENE-DB:TRBV5-2 7 7q34 T cell receptor beta variable 5-2 (pseudogene) pseudo TRBV5-2 T cell receptor beta variable 5-2 (pseudogene) O - 20121230 -9606 28614 TRBV5-1 - TCRBV5S1|TCRBV5S1A1T|TRBV51 HGNC:12218|IMGT/GENE-DB:TRBV5-1 7 7q34 T cell receptor beta variable 5-1 other TRBV5-1 T cell receptor beta variable 5-1 O - 20121230 -9606 28615 TRBV4-3 - TCRBV4S3|TCRBV7S2A1N4T|TRBV43 HGNC:12217|IMGT/GENE-DB:TRBV4-3 7 7q34 T cell receptor beta variable 4-3 other TRBV4-3 T cell receptor beta variable 4-3 O - 20121230 -9606 28616 TRBV4-2 - TCRBV4S2|TCRBV7S3A2|TCRBV7S3A2T|TRBV42 HGNC:12216|IMGT/GENE-DB:TRBV4-2 7 7q34 T cell receptor beta variable 4-2 other TRBV4-2 T cell receptor beta variable 4-2 O - 20121230 -9606 28617 TRBV4-1 - BV07S1J2.7|TCRBV4S1|TCRBV7S1A1N2T|TRBV41 HGNC:12215|IMGT/GENE-DB:TRBV4-1 7 7q34 T cell receptor beta variable 4-1 other TRBV4-1 T cell receptor beta variable 4-1 O - 20121230 -9606 28618 TRBV3-2 - TCRBV3S2|TCRBV9S2A2PT|TRBV32 HGNC:12213|IMGT/GENE-DB:TRBV3-2 7 7q34 T cell receptor beta variable 3-2 (pseudogene) pseudo TRBV3-2 T cell receptor beta variable 3-2 (pseudogene) O - 20121230 -9606 28619 TRBV3-1 - TCRBV3S1|TCRBV9S1A1T|TRBV31 HGNC:12212|IMGT/GENE-DB:TRBV3-1 7 7q34 T cell receptor beta variable 3-1 other TRBV3-1 T cell receptor beta variable 3-1 O - 20121230 -9606 28620 TRBV2 - TCRBV22S1A2N1T|TCRBV2S1 HGNC:12195|IMGT/GENE-DB:TRBV2 7 7q34 T cell receptor beta variable 2 other TRBV2 T cell receptor beta variable 2 O - 20121230 -9606 28621 TRBV1 - TCRBV1S1P|TCRBV27S1P HGNC:12176|IMGT/GENE-DB:TRBV1 7 7q34 T cell receptor beta variable 1 (pseudogene) pseudo TRBV1 T cell receptor beta variable 1 (pseudogene) O - 20121230 -9606 28622 TRBJ2-7 - TCRBJ2S7|TRBJ27 HGNC:12175|IMGT/GENE-DB:TRBJ2-7 7 7q34 T cell receptor beta joining 2-7 other TRBJ2-7 T cell receptor beta joining 2-7 O - 20121230 -9606 28623 TRBJ2-6 - TCRBJ2S6|TRBJ26 HGNC:12174|IMGT/GENE-DB:TRBJ2-6 7 7q34 T cell receptor beta joining 2-6 other TRBJ2-6 T cell receptor beta joining 2-6 O - 20121230 -9606 28624 TRBJ2-5 - TCRBJ2S5|TRBJ25 HGNC:12173|IMGT/GENE-DB:TRBJ2-5 7 7q34 T cell receptor beta joining 2-5 other TRBJ2-5 T cell receptor beta joining 2-5 O - 20121230 -9606 28625 TRBJ2-4 - TCRBJ2S4|TRBJ24 HGNC:12172|IMGT/GENE-DB:TRBJ2-4 7 7q34 T cell receptor beta joining 2-4 other TRBJ2-4 T cell receptor beta joining 2-4 O - 20121230 -9606 28626 TRBJ2-3 - TCRBJ2S3|TRBJ23 HGNC:12171|IMGT/GENE-DB:TRBJ2-3 7 7q34 T cell receptor beta joining 2-3 other TRBJ2-3 T cell receptor beta joining 2-3 O - 20121230 -9606 28627 TRBJ2-2P - TRBJ22P HGNC:12170|IMGT/GENE-DB:TRBJ2-2P 7 7q34 T cell receptor beta joining 2-2P (non-functional) pseudo TRBJ2-2P T cell receptor beta joining 2-2P (non-functional) O - 20121230 -9606 28628 TRBJ2-2 - TCRBJ2S2|TRBJ22 HGNC:12169|IMGT/GENE-DB:TRBJ2-2 7 7q34 T cell receptor beta joining 2-2 other TRBJ2-2 T cell receptor beta joining 2-2 O - 20121230 -9606 28629 TRBJ2-1 - TCRBJ2S1|TRBJ21 HGNC:12168|IMGT/GENE-DB:TRBJ2-1 7 7q34 T cell receptor beta joining 2-1 other TRBJ2-1 T cell receptor beta joining 2-1 O - 20121230 -9606 28630 TRBJ1-6 - TCRBJ1S6|TRBJ16 HGNC:12167|IMGT/GENE-DB:TRBJ1-6 7 7q34 T cell receptor beta joining 1-6 other TRBJ1-6 T cell receptor beta joining 1-6 O - 20121230 -9606 28631 TRBJ1-5 - TCRBJ1S5|TRBJ15 HGNC:12166|IMGT/GENE-DB:TRBJ1-5 7 7q34 T cell receptor beta joining 1-5 other TRBJ1-5 T cell receptor beta joining 1-5 O - 20121230 -9606 28632 TRBJ1-4 - TCRBJ1S4|TRBJ14 HGNC:12165|IMGT/GENE-DB:TRBJ1-4 7 7q34 T cell receptor beta joining 1-4 other TRBJ1-4 T cell receptor beta joining 1-4 O - 20121230 -9606 28633 TRBJ1-3 - TCRBJ1S3|TRBJ13 HGNC:12164|IMGT/GENE-DB:TRBJ1-3 7 7q34 T cell receptor beta joining 1-3 other TRBJ1-3 T cell receptor beta joining 1-3 O - 20121230 -9606 28634 TRBJ1-2 - TCRBJ1S2|TRBJ12 HGNC:12163|IMGT/GENE-DB:TRBJ1-2 7 7q34 T cell receptor beta joining 1-2 other TRBJ1-2 T cell receptor beta joining 1-2 O - 20121230 -9606 28635 TRBJ1-1 - TCRBJ1S1|TRBJ11 HGNC:12162|IMGT/GENE-DB:TRBJ1-1 7 7q34 T cell receptor beta joining 1-1 other TRBJ1-1 T cell receptor beta joining 1-1 O - 20121230 -9606 28636 TRBD2 - TCRBD2 HGNC:12159|IMGT/GENE-DB:TRBD2 7 7q34 T cell receptor beta diversity 2 other TRBD2 T cell receptor beta diversity 2 O - 20121230 -9606 28637 TRBD1 - TCRBD1 HGNC:12158|IMGT/GENE-DB:TRBD1 7 7q34 T cell receptor beta diversity 1 other TRBD1 T cell receptor beta diversity 1 O - 20121230 -9606 28638 TRBC2 - TCRBC2 HGNC:12157|IMGT/GENE-DB:TRBC2 7 7q34 T cell receptor beta constant 2 other TRBC2 T cell receptor beta constant 2 O - 20121230 -9606 28639 TRBC1 - BV05S1J2.2|TCRBC1 HGNC:12156|IMGT/GENE-DB:TRBC1 7 7q34 T cell receptor beta constant 1 other TRBC1 T cell receptor beta constant 1 O - 20121230 -9606 28640 TRAV41 - TCRAV19S1|TCRAV41S1 HGNC:12142|IMGT/GENE-DB:TRAV41 14 14q11 T cell receptor alpha variable 41 other TRAV41 T cell receptor alpha variable 41 O - 20121230 -9606 28641 TRAV40 - TCRAV31S1|TCRAV40S1 HGNC:12141|IMGT/GENE-DB:TRAV40 14 14q11 T cell receptor alpha variable 40 other TRAV40 T cell receptor alpha variable 40 O - 20121230 -9606 28642 TRAV39 - TCRAV27S1|TCRAV39S1 HGNC:12139|IMGT/GENE-DB:TRAV39 14 14q11 T cell receptor alpha variable 39 other TRAV39 T cell receptor alpha variable 39 O - 20121230 -9606 28643 TRAV38-2DV8 - TCRAV14S1|TRAV382DV8|hADV38S2 HGNC:12138|IMGT/GENE-DB:TRAV38-2/DV8 14 14q11 T cell receptor alpha variable 38-2/delta variable 8 other TRAV38-2DV8 T cell receptor alpha variable 38-2/delta variable 8 O - 20121230 -9606 28644 TRAV38-1 - TCRAV14S2|TCRAV38S1|TRAV381 HGNC:12137|IMGT/GENE-DB:TRAV38-1 14 14q11 T cell receptor alpha variable 38-1 other TRAV38-1 T cell receptor alpha variable 38-1 O - 20121230 -9606 28645 TRAV37 - TCRAV37S1 HGNC:12136|IMGT/GENE-DB:TRAV37 14 14q11 T cell receptor alpha variable 37 (pseudogene) pseudo TRAV37 T cell receptor alpha variable 37 (pseudogene) O - 20121230 -9606 28646 TRAV36DV7 - TCRAV28S1|TRAV36/DV7|hADV36S1 HGNC:12135|IMGT/GENE-DB:TRAV36/DV7 14 14q11 T cell receptor alpha variable 36/delta variable 7 other TRAV36DV7 T cell receptor alpha variable 36/delta variable 7 O - 20121230 -9606 28647 TRAV35 - TCRAV25S1|TCRAV35S1 HGNC:12134|IMGT/GENE-DB:TRAV35 14 14q11 T cell receptor alpha variable 35 other TRAV35 T cell receptor alpha variable 35 O - 20121230 -9606 28648 TRAV34 - TCRAV26S1|TCRAV34S1 HGNC:12133|IMGT/GENE-DB:TRAV34 14 14q11 T cell receptor alpha variable 34 other TRAV34 T cell receptor alpha variable 34 O - 20121230 -9606 28649 TRAV33 - C14orf12|TCRAV33S1 HGNC:12132|IMGT/GENE-DB:TRAV33 14 14q11 T cell receptor alpha variable 33 (pseudogene) pseudo TRAV33 T cell receptor alpha variable 33 (pseudogene) O - 20121230 -9606 28650 TRAV32 - TCRAV32S1 HGNC:12131|IMGT/GENE-DB:TRAV32 14 14q11 T cell receptor alpha variable 32 (pseudogene) pseudo TRAV32 T cell receptor alpha variable 32 (pseudogene) O - 20121230 -9606 28651 TRAV31 - TCRAV31S1 HGNC:12130|IMGT/GENE-DB:TRAV31 14 14q11 T cell receptor alpha variable 31 (pseudogene) pseudo TRAV31 T cell receptor alpha variable 31 (pseudogene) O - 20121230 -9606 28652 TRAV30 - TCRAV29S1|TCRAV30S1 HGNC:12129|IMGT/GENE-DB:TRAV30 14 14q11 T cell receptor alpha variable 30 other TRAV30 T cell receptor alpha variable 30 O - 20121230 -9606 28653 TRAV29DV5 - TCRAV21S1|TRAV29/DV5|hADV29S1 HGNC:12127|IMGT/GENE-DB:TRAV29/DV5 14 14q11 T cell receptor alpha variable 29/delta variable 5 (gene/pseudogene) other TRAV29DV5 T cell receptor alpha variable 29/delta variable 5 (gene/pseudogene) O - 20121230 -9606 28654 TRAV28 - TCRAV28S1 HGNC:12126|IMGT/GENE-DB:TRAV28 14 14q11 T cell receptor alpha variable 28 (pseudogene) pseudo TRAV28 T cell receptor alpha variable 28 (pseudogene) O - 20121230 -9606 28655 TRAV27 - TCRAV10S1|TCRAV27S1 HGNC:12125|IMGT/GENE-DB:TRAV27 14 14q11 T cell receptor alpha variable 27 other TRAV27 T cell receptor alpha variable 27 O - 20121230 -9606 28656 TRAV26-2 - TCRAV26S2|TCRAV4S1|TRAV262 HGNC:12124|IMGT/GENE-DB:TRAV26-2 14 14q11 T cell receptor alpha variable 26-2 other TRAV26-2 T cell receptor alpha variable 26-2 O - 20121230 -9606 28657 TRAV26-1 - TCRAV26S1|TCRAV4S2|TRAV261 HGNC:12123|IMGT/GENE-DB:TRAV26-1 14 14q11 T cell receptor alpha variable 26-1 other TRAV26-1 T cell receptor alpha variable 26-1 O - 20121230 -9606 28658 TRAV25 - TCRAV25S1|TCRAV32S1 HGNC:12122|IMGT/GENE-DB:TRAV25 14 14q11 T cell receptor alpha variable 25 other TRAV25 T cell receptor alpha variable 25 O - 20121230 -9606 28659 TRAV24 - TCRAV18S1|TCRAV24S1 HGNC:12121|IMGT/GENE-DB:TRAV24 14 14q11 T cell receptor alpha variable 24 other TRAV24 T cell receptor alpha variable 24 O - 20121230 -9606 28660 TRAV23DV6 - TCRAV17S1|TRAV23/DV6|hADV23S1 HGNC:12120|IMGT/GENE-DB:TRAV23/DV6 14 14q11 T cell receptor alpha variable 23/delta variable 6 other TRAV23DV6 T cell receptor alpha variable 23/delta variable 6 O - 20121230 -9606 28661 TRAV22 - TCRAV13S1|TCRAV22S1 HGNC:12119|IMGT/GENE-DB:TRAV22 14 14q11 T cell receptor alpha variable 22 other TRAV22 T cell receptor alpha variable 22 O - 20121230 -9606 28662 TRAV21 - TCRAV21S1|TCRAV23S1 HGNC:12118|IMGT/GENE-DB:TRAV21 14 14q11 T cell receptor alpha variable 21 other TRAV21 T cell receptor alpha variable 21 O - 20121230 -9606 28663 TRAV20 - TCRAV20S1|TCRAV30S1 HGNC:12117|IMGT/GENE-DB:TRAV20 14 14q11 T cell receptor alpha variable 20 other TRAV20 T cell receptor alpha variable 20 O - 20121230 -9606 28664 TRAV19 - TCRAV12S1|TCRAV19S1 HGNC:12115|IMGT/GENE-DB:TRAV19 14 14q11 T cell receptor alpha variable 19 other TRAV19 T cell receptor alpha variable 19 O - 20121230 -9606 28665 TRAV18 - TCRAV18S1 HGNC:12114|IMGT/GENE-DB:TRAV18 14 14q11 T cell receptor alpha variable 18 other TRAV18 T cell receptor alpha variable 18 O - 20121230 -9606 28666 TRAV17 - TCRAV17S1|TCRAV3S1 HGNC:12113|IMGT/GENE-DB:TRAV17 14 14q11 T cell receptor alpha variable 17 other TRAV17 T cell receptor alpha variable 17 O - 20121230 -9606 28667 TRAV16 - TCRAV16S1|TCRAV9S1 HGNC:12112|IMGT/GENE-DB:TRAV16 14 14q11 T cell receptor alpha variable 16 other TRAV16 T cell receptor alpha variable 16 O - 20121230 -9606 28668 TRAV15 - TCRAV15S1 HGNC:12111|IMGT/GENE-DB:TRAV15 14 14q11 T cell receptor alpha variable 15 (pseudogene) pseudo TRAV15 T cell receptor alpha variable 15 (pseudogene) O - 20121230 -9606 28669 TRAV14DV4 - TCRAV6S1-hDV104S1|TRAV14/DV4|hADV14S1 HGNC:12110|IMGT/GENE-DB:TRAV14/DV4 14 14q11 T cell receptor alpha variable 14/delta variable 4 other TRAV14DV4 T cell receptor alpha variable 14/delta variable 4 O - 20121230 -9606 28670 TRAV13-2 - TCRAV13S2|TCRAV8S2|TRAV132 HGNC:12109|IMGT/GENE-DB:TRAV13-2 14 14q11 T cell receptor alpha variable 13-2 other TRAV13-2 T cell receptor alpha variable 13-2 O - 20121230 -9606 28671 TRAV13-1 - TCRAV13S1|TCRAV8S1|TRAV131 HGNC:12108|IMGT/GENE-DB:TRAV13-1 14 14q11 T cell receptor alpha variable 13-1 other TRAV13-1 T cell receptor alpha variable 13-1 O - 20121230 -9606 28672 TRAV12-3 - TCRAV12S3|TCRAV2S2|TRAV123 HGNC:12107|IMGT/GENE-DB:TRAV12-3 14 14q11 T cell receptor alpha variable 12-3 other TRAV12-3 T cell receptor alpha variable 12-3 O - 20121230 -9606 28673 TRAV12-2 - TCRAV12S2|TCRAV2S1|TRAV122 HGNC:12106|IMGT/GENE-DB:TRAV12-2 14 14q11 T cell receptor alpha variable 12-2 other TRAV12-2 T cell receptor alpha variable 12-2 O - 20121230 -9606 28674 TRAV12-1 - TCRAV12S1|TCRAV2S3|TRAV121 HGNC:12105|IMGT/GENE-DB:TRAV12-1 14 14q11 T cell receptor alpha variable 12-1 other TRAV12-1 T cell receptor alpha variable 12-1 O - 20121230 -9606 28675 TRAV11 - TCRAV11S1 HGNC:12104|IMGT/GENE-DB:TRAV11 14 14q11 T cell receptor alpha variable 11 (pseudogene) pseudo TRAV11 T cell receptor alpha variable 11 (pseudogene) O - 20121230 -9606 28676 TRAV10 - TCRAV10S1|TCRAV24S1 HGNC:12103|IMGT/GENE-DB:TRAV10 14 14q11 T cell receptor alpha variable 10 other TRAV10 T cell receptor alpha variable 10 O - 20121230 -9606 28677 TRAV9-2 - TCRAV22S1|TCRAV9S2|TRAV92 HGNC:12154|IMGT/GENE-DB:TRAV9-2 14 14q11 T cell receptor alpha variable 9-2 other TRAV9-2 T cell receptor alpha variable 9-2 O - 20121230 -9606 28678 TRAV9-1 - TCRAV9S1|TRAV91 HGNC:12153|IMGT/GENE-DB:TRAV9-1 14 14q11 T cell receptor alpha variable 9-1 other TRAV9-1 T cell receptor alpha variable 9-1 O - 20121230 -9606 28679 TRAV8-7 - TCRAV8S7|TRAV87 HGNC:12152|IMGT/GENE-DB:TRAV8-7 14 14q11 T cell receptor alpha variable 8-7 (non-functional) other TRAV8-7 T cell receptor alpha variable 8-7 (non-functional) O - 20121230 -9606 28680 TRAV8-6 - TCRAV1S3|TCRAV8S6|TRAV86 HGNC:12151|IMGT/GENE-DB:TRAV8-6 14 14q11 T cell receptor alpha variable 8-6 other TRAV8-6 T cell receptor alpha variable 8-6 O - 20121230 -9606 28681 TRAV8-5 - TCRAV8S5|TRAV85 HGNC:12150|IMGT/GENE-DB:TRAV8-5 14 14q11 T cell receptor alpha variable 8-5 (pseudogene) pseudo TRAV8-5 T cell receptor alpha variable 8-5 (pseudogene) O - 20121230 -9606 28682 TRAV8-4 - TCRAV1S2|TCRAV8S4|TRAV84 HGNC:12149|IMGT/GENE-DB:TRAV8-4 14 14q11 T cell receptor alpha variable 8-4 other TRAV8-4 T cell receptor alpha variable 8-4 O - 20121230 -9606 28683 TRAV8-3 - TCRAV1S4|TCRAV8S3|TRAV83 HGNC:12148|IMGT/GENE-DB:TRAV8-3 14 14q11 T cell receptor alpha variable 8-3 other TRAV8-3 T cell receptor alpha variable 8-3 O - 20121230 -9606 28684 TRAV8-2 - TCRAV1S5|TCRAV8S2|TRAV82 HGNC:12147|IMGT/GENE-DB:TRAV8-2 14 14q11 T cell receptor alpha variable 8-2 other TRAV8-2 T cell receptor alpha variable 8-2 O - 20121230 -9606 28685 TRAV8-1 - TCRAV1S1|TCRAV8S1|TRAV81 HGNC:12146|IMGT/GENE-DB:TRAV8-1 14 14q11 T cell receptor alpha variable 8-1 other TRAV8-1 T cell receptor alpha variable 8-1 O - 20121230 -9606 28686 TRAV7 - TCRAV7S1 HGNC:12145|IMGT/GENE-DB:TRAV7 14 14q11 T cell receptor alpha variable 7 other TRAV7 T cell receptor alpha variable 7 O - 20121230 -9606 28688 TRAV5 - TCRAV15S1|TCRAV5S1 HGNC:12143|IMGT/GENE-DB:TRAV5 14 14q11 T cell receptor alpha variable 5 other TRAV5 T cell receptor alpha variable 5 O - 20121230 -9606 28689 TRAV4 - TCRAV20S1|TCRAV4S1 HGNC:12140|IMGT/GENE-DB:TRAV4 14 14q11 T cell receptor alpha variable 4 other TRAV4 T cell receptor alpha variable 4 O - 20121230 -9606 28690 TRAV3 - TCRAV16S1|TCRAV3S1 HGNC:12128|IMGT/GENE-DB:TRAV3 14 14q11 T cell receptor alpha variable 3 (gene/pseudogene) other TRAV3 T cell receptor alpha variable 3 (gene/pseudogene) O - 20121230 -9606 28691 TRAV2 - TCRAV11S1|TCRAV2S1 HGNC:12116|IMGT/GENE-DB:TRAV2 14 14q11 T cell receptor alpha variable 2 other TRAV2 T cell receptor alpha variable 2 O - 20121230 -9606 28692 TRAV1-2 - TCRAV1S2|TCRAV7S2|TRAV12 HGNC:12102|IMGT/GENE-DB:TRAV1-2 14 14q11 T cell receptor alpha variable 1-2 other TRAV1-2 T cell receptor alpha variable 1-2 O - 20121230 -9606 28693 TRAV1-1 - TCRAV1S1|TCRAV7S1|TRAV11 HGNC:12101|IMGT/GENE-DB:TRAV1-1 14 14q11 T cell receptor alpha variable 1-1 other TRAV1-1 T cell receptor alpha variable 1-1 O - 20121230 -9606 28694 TRAJ61 - - HGNC:12094|IMGT/GENE-DB:TRAJ61 14 14q11 T cell receptor alpha joining 61 (non-functional) other TRAJ61 T cell receptor alpha joining 61 (non-functional) O - 20121230 -9606 28695 TRAJ60 - - HGNC:12093|IMGT/GENE-DB:TRAJ60 14 14q11 T cell receptor alpha joining 60 (pseudogene) pseudo TRAJ60 T cell receptor alpha joining 60 (pseudogene) O - 20121230 -9606 28696 TRAJ59 - - HGNC:12091|IMGT/GENE-DB:TRAJ59 14 14q11 T cell receptor alpha joining 59 (non-functional) other TRAJ59 T cell receptor alpha joining 59 (non-functional) O - 20121230 -9606 28697 TRAJ58 - - HGNC:12090|IMGT/GENE-DB:TRAJ58 14 14q11 T cell receptor alpha joining 58 (non-functional) other TRAJ58 T cell receptor alpha joining 58 (non-functional) O - 20121230 -9606 28698 TRAJ57 - - HGNC:12089|IMGT/GENE-DB:TRAJ57 14 14q11 T cell receptor alpha joining 57 other TRAJ57 T cell receptor alpha joining 57 O - 20121230 -9606 28699 TRAJ56 - - HGNC:12088|IMGT/GENE-DB:TRAJ56 14 14q11 T cell receptor alpha joining 56 other TRAJ56 T cell receptor alpha joining 56 O - 20121230 -9606 28700 TRAJ55 - - HGNC:12087|IMGT/GENE-DB:TRAJ55 14 14q11 T cell receptor alpha joining 55 (pseudogene) pseudo TRAJ55 T cell receptor alpha joining 55 (pseudogene) O - 20121230 -9606 28701 TRAJ54 - - HGNC:12086|IMGT/GENE-DB:TRAJ54 14 14q11 T cell receptor alpha joining 54 other TRAJ54 T cell receptor alpha joining 54 O - 20121230 -9606 28702 TRAJ53 - - HGNC:12085|IMGT/GENE-DB:TRAJ53 14 14q11 T cell receptor alpha joining 53 other TRAJ53 T cell receptor alpha joining 53 O - 20121230 -9606 28703 TRAJ52 - - HGNC:12084|IMGT/GENE-DB:TRAJ52 14 14q11 T cell receptor alpha joining 52 other TRAJ52 T cell receptor alpha joining 52 O - 20121230 -9606 28704 TRAJ51 - - HGNC:12083|IMGT/GENE-DB:TRAJ51 14 14q11 T cell receptor alpha joining 51 (pseudogene) pseudo TRAJ51 T cell receptor alpha joining 51 (pseudogene) O - 20121230 -9606 28705 TRAJ50 - - HGNC:12082|IMGT/GENE-DB:TRAJ50 14 14q11 T cell receptor alpha joining 50 other TRAJ50 T cell receptor alpha joining 50 O - 20121230 -9606 28706 TRAJ49 - - HGNC:12080|IMGT/GENE-DB:TRAJ49 14 14q11 T cell receptor alpha joining 49 other TRAJ49 T cell receptor alpha joining 49 O - 20121230 -9606 28707 TRAJ48 - - HGNC:12079|IMGT/GENE-DB:TRAJ48 14 14q11 T cell receptor alpha joining 48 other TRAJ48 T cell receptor alpha joining 48 O - 20121230 -9606 28708 TRAJ47 - - HGNC:12078|IMGT/GENE-DB:TRAJ47 14 14q11 T cell receptor alpha joining 47 other TRAJ47 T cell receptor alpha joining 47 O - 20121230 -9606 28709 TRAJ46 - - HGNC:12077|IMGT/GENE-DB:TRAJ46 14 14q11 T cell receptor alpha joining 46 other TRAJ46 T cell receptor alpha joining 46 O - 20121230 -9606 28710 TRAJ45 - - HGNC:12076|IMGT/GENE-DB:TRAJ45 14 14q11 T cell receptor alpha joining 45 other TRAJ45 T cell receptor alpha joining 45 O - 20121230 -9606 28711 TRAJ44 - - HGNC:12075|IMGT/GENE-DB:TRAJ44 14 14q11 T cell receptor alpha joining 44 other TRAJ44 T cell receptor alpha joining 44 O - 20121230 -9606 28712 TRAJ43 - - HGNC:12074|IMGT/GENE-DB:TRAJ43 14 14q11 T cell receptor alpha joining 43 other TRAJ43 T cell receptor alpha joining 43 O - 20121230 -9606 28713 TRAJ42 - - HGNC:12073|IMGT/GENE-DB:TRAJ42 14 14q11 T cell receptor alpha joining 42 other TRAJ42 T cell receptor alpha joining 42 O - 20121230 -9606 28714 TRAJ41 - - HGNC:12072|IMGT/GENE-DB:TRAJ41 14 14q11 T cell receptor alpha joining 41 other TRAJ41 T cell receptor alpha joining 41 O - 20121230 -9606 28715 TRAJ40 - - HGNC:12071|IMGT/GENE-DB:TRAJ40 14 14q11 T cell receptor alpha joining 40 other TRAJ40 T cell receptor alpha joining 40 O - 20121230 -9606 28716 TRAJ39 - - HGNC:12069|IMGT/GENE-DB:TRAJ39 14 14q11 T cell receptor alpha joining 39 other TRAJ39 T cell receptor alpha joining 39 O - 20121230 -9606 28717 TRAJ38 - - HGNC:12068|IMGT/GENE-DB:TRAJ38 14 14q11 T cell receptor alpha joining 38 other TRAJ38 T cell receptor alpha joining 38 O - 20121230 -9606 28718 TRAJ37 - - HGNC:12067|IMGT/GENE-DB:TRAJ37 14 14q11 T cell receptor alpha joining 37 other TRAJ37 T cell receptor alpha joining 37 O - 20121230 -9606 28719 TRAJ36 - - HGNC:12066|IMGT/GENE-DB:TRAJ36 14 14q11 T cell receptor alpha joining 36 other TRAJ36 T cell receptor alpha joining 36 O - 20121230 -9606 28720 TRAJ35 - - HGNC:12065|IMGT/GENE-DB:TRAJ35 14 14q11 T cell receptor alpha joining 35 (non-functional) other TRAJ35 T cell receptor alpha joining 35 (non-functional) O - 20121230 -9606 28721 TRAJ34 - - HGNC:12064|IMGT/GENE-DB:TRAJ34 14 14q11 T cell receptor alpha joining 34 other TRAJ34 T cell receptor alpha joining 34 O - 20121230 -9606 28722 TRAJ33 - - HGNC:12063|IMGT/GENE-DB:TRAJ33 14 14q11 T cell receptor alpha joining 33 other TRAJ33 T cell receptor alpha joining 33 O - 20121230 -9606 28723 TRAJ32 - - HGNC:12062|IMGT/GENE-DB:TRAJ32 14 14q11 T cell receptor alpha joining 32 other TRAJ32 T cell receptor alpha joining 32 O - 20121230 -9606 28724 TRAJ31 - - HGNC:12061|IMGT/GENE-DB:TRAJ31 14 14q11 T cell receptor alpha joining 31 other TRAJ31 T cell receptor alpha joining 31 O - 20121230 -9606 28725 TRAJ30 - - HGNC:12060|IMGT/GENE-DB:TRAJ30 14 14q11 T cell receptor alpha joining 30 other TRAJ30 T cell receptor alpha joining 30 O - 20121230 -9606 28726 TRAJ29 - - HGNC:12058|IMGT/GENE-DB:TRAJ29 14 14q11 T cell receptor alpha joining 29 other TRAJ29 T cell receptor alpha joining 29 O - 20121230 -9606 28727 TRAJ28 - - HGNC:12057|IMGT/GENE-DB:TRAJ28 14 14q11 T cell receptor alpha joining 28 other TRAJ28 T cell receptor alpha joining 28 O - 20121230 -9606 28728 TRAJ27 - - HGNC:12056|IMGT/GENE-DB:TRAJ27 14 14q11 T cell receptor alpha joining 27 other TRAJ27 T cell receptor alpha joining 27 O - 20121230 -9606 28729 TRAJ26 - - HGNC:12055|IMGT/GENE-DB:TRAJ26 14 14q11 T cell receptor alpha joining 26 other TRAJ26 T cell receptor alpha joining 26 O - 20121230 -9606 28730 TRAJ25 - - HGNC:12054|IMGT/GENE-DB:TRAJ25 14 14q11 T cell receptor alpha joining 25 (non-functional) other TRAJ25 T cell receptor alpha joining 25 (non-functional) O - 20121230 -9606 28731 TRAJ24 - - HGNC:12053|IMGT/GENE-DB:TRAJ24 14 14q11 T cell receptor alpha joining 24 other TRAJ24 T cell receptor alpha joining 24 O - 20121230 -9606 28732 TRAJ23 - - HGNC:12052|IMGT/GENE-DB:TRAJ23 14 14q11 T cell receptor alpha joining 23 other TRAJ23 T cell receptor alpha joining 23 O - 20121230 -9606 28733 TRAJ22 - - HGNC:12051|IMGT/GENE-DB:TRAJ22 14 14q11 T cell receptor alpha joining 22 other TRAJ22 T cell receptor alpha joining 22 O - 20121230 -9606 28734 TRAJ21 - - HGNC:12050|IMGT/GENE-DB:TRAJ21 14 14q11 T cell receptor alpha joining 21 other TRAJ21 T cell receptor alpha joining 21 O - 20121230 -9606 28735 TRAJ20 - - HGNC:12049|IMGT/GENE-DB:TRAJ20 14 14q11 T cell receptor alpha joining 20 other TRAJ20 T cell receptor alpha joining 20 O - 20121230 -9606 28736 TRAJ19 - - HGNC:12047|IMGT/GENE-DB:TRAJ19 14 14q11 T cell receptor alpha joining 19 (non-functional) other TRAJ19 T cell receptor alpha joining 19 (non-functional) O - 20121230 -9606 28737 TRAJ18 - - HGNC:12046|IMGT/GENE-DB:TRAJ18 14 14q11 T cell receptor alpha joining 18 other TRAJ18 T cell receptor alpha joining 18 O - 20121230 -9606 28738 TRAJ17 - - HGNC:12045|IMGT/GENE-DB:TRAJ17 14 14q11 T cell receptor alpha joining 17 other TRAJ17 T cell receptor alpha joining 17 O - 20121230 -9606 28739 TRAJ16 - - HGNC:12044|IMGT/GENE-DB:TRAJ16 14 14q11 T cell receptor alpha joining 16 other TRAJ16 T cell receptor alpha joining 16 O - 20121230 -9606 28740 TRAJ15 - - HGNC:12043|IMGT/GENE-DB:TRAJ15 14 14q11 T cell receptor alpha joining 15 other TRAJ15 T cell receptor alpha joining 15 O - 20121230 -9606 28741 TRAJ14 - - HGNC:12042|IMGT/GENE-DB:TRAJ14 14 14q11 T cell receptor alpha joining 14 other TRAJ14 T cell receptor alpha joining 14 O - 20121230 -9606 28742 TRAJ13 - - HGNC:12041|IMGT/GENE-DB:TRAJ13 14 14q11 T cell receptor alpha joining 13 other TRAJ13 T cell receptor alpha joining 13 O - 20121230 -9606 28743 TRAJ12 - - HGNC:12040|IMGT/GENE-DB:TRAJ12 14 14q11 T cell receptor alpha joining 12 other TRAJ12 T cell receptor alpha joining 12 O - 20121230 -9606 28744 TRAJ11 - - HGNC:12039|IMGT/GENE-DB:TRAJ11 14 14q11 T cell receptor alpha joining 11 other TRAJ11 T cell receptor alpha joining 11 O - 20121230 -9606 28745 TRAJ10 - - HGNC:12038|IMGT/GENE-DB:TRAJ10 14 14q11 T cell receptor alpha joining 10 other TRAJ10 T cell receptor alpha joining 10 O - 20121230 -9606 28746 TRAJ9 - - HGNC:12097|IMGT/GENE-DB:TRAJ9 14 14q11 T cell receptor alpha joining 9 other TRAJ9 T cell receptor alpha joining 9 O - 20121230 -9606 28747 TRAJ8 - - HGNC:12096|IMGT/GENE-DB:TRAJ8 14 14q11 T cell receptor alpha joining 8 other TRAJ8 T cell receptor alpha joining 8 O - 20121230 -9606 28748 TRAJ7 - - HGNC:12095|IMGT/GENE-DB:TRAJ7 14 14q11 T cell receptor alpha joining 7 other TRAJ7 T cell receptor alpha joining 7 O - 20121230 -9606 28749 TRAJ6 - - HGNC:12092|IMGT/GENE-DB:TRAJ6 14 14q11 T cell receptor alpha joining 6 other TRAJ6 T cell receptor alpha joining 6 O - 20121230 -9606 28750 TRAJ5 - - HGNC:12081|IMGT/GENE-DB:TRAJ5 14 14q11 T cell receptor alpha joining 5 other TRAJ5 T cell receptor alpha joining 5 O - 20121230 -9606 28751 TRAJ4 - - HGNC:12070|IMGT/GENE-DB:TRAJ4 14 14q11 T cell receptor alpha joining 4 other TRAJ4 T cell receptor alpha joining 4 O - 20121230 -9606 28752 TRAJ3 - - HGNC:12059|IMGT/GENE-DB:TRAJ3 14 14q11 T cell receptor alpha joining 3 other TRAJ3 T cell receptor alpha joining 3 O - 20121230 -9606 28753 TRAJ2 - - HGNC:12048|IMGT/GENE-DB:TRAJ2 14 14q11 T cell receptor alpha joining 2 (non-functional) other TRAJ2 T cell receptor alpha joining 2 (non-functional) O - 20121230 -9606 28754 TRAJ1 - - HGNC:12037|IMGT/GENE-DB:TRAJ1 14 14q11 T cell receptor alpha joining 1 (non-functional) other TRAJ1 T cell receptor alpha joining 1 (non-functional) O - 20121230 -9606 28755 TRAC - TCRA HGNC:12029|IMGT/GENE-DB:TRAC 14 14q11 T cell receptor alpha constant other TRAC T cell receptor alpha constant O - 20121230 -9606 28756 IGLV8OR8-1 - IGLV8/OR8-1|IGLV8OR81 HGNC:5932|IMGT/GENE-DB:IGLV8/OR8-1 8 8q11.2 immunoglobulin lambda variable 8/OR8-1 (pseudogene) pseudo IGLV8OR8-1 immunoglobulin lambda variable 8/OR8-1 (pseudogene) O - 20121021 -9606 28757 IGLVV-66 - IGLV(V)-66|IGLVV66|V5-5P HGNC:5946|IMGT/GENE-DB:IGLV(V)-66 22 22q11.2 immunoglobulin lambda variable (V)-66 (pseudogene) pseudo IGLVV-66 immunoglobulin lambda variable (V)-66 (pseudogene) O - 20121230 -9606 28758 IGLVV-58 - IGLV(V)-58|IGLVV58|V5-3P HGNC:5945|IMGT/GENE-DB:IGLV(V)-58 22 22q11.2 immunoglobulin lambda variable (V)-58 (pseudogene) pseudo IGLVV-58 immunoglobulin lambda variable (V)-58 (pseudogene) O - 20121230 -9606 28759 IGLVIV-65 - IGLV(IV)-65|IGLVIV65|V4-9P HGNC:5944|IMGT/GENE-DB:IGLV(IV)-65 22 22q11.2 immunoglobulin lambda variable (IV)-65 (pseudogene) pseudo IGLVIV-65 immunoglobulin lambda variable (IV)-65 (pseudogene) O - 20121230 -9606 28760 IGLVIV-64 - IGLV(IV)-64|IGLVIV64|V4-8P HGNC:5943|IMGT/GENE-DB:IGLV(IV)-64 22 22q11.2 immunoglobulin lambda variable (IV)-64 (pseudogene) pseudo IGLVIV-64 immunoglobulin lambda variable (IV)-64 (pseudogene) O - 20121230 -9606 28761 IGLVIV-59 - IGLV(IV)-59|IGLVIV59|V4-7P HGNC:5942|IMGT/GENE-DB:IGLV(IV)-59 22 22q11.2 immunoglobulin lambda variable (IV)-59 (pseudogene) pseudo IGLVIV-59 immunoglobulin lambda variable (IV)-59 (pseudogene) O - 20121230 -9606 28762 IGLVIV-53 - IGLV(IV)-53|IGLVIV53|V4-5P HGNC:5941|IMGT/GENE-DB:IGLV(IV)-53 22 22q11.2 immunoglobulin lambda variable (IV)-53 (pseudogene) pseudo IGLVIV-53 immunoglobulin lambda variable (IV)-53 (pseudogene) O - 20121230 -9606 28763 IGLVI-70 - IGLV(I)-70|IGLVI70|V1-27P HGNC:5940|IMGT/GENE-DB:IGLV(I)-70 22 22q11.2 immunoglobulin lambda variable (I)-70 (pseudogene) pseudo IGLVI-70 immunoglobulin lambda variable (I)-70 (pseudogene) O - 20121230 -9606 28764 IGLVI-68 - IGLV(I)-68|IGLVI68|V1-26P HGNC:5939|IMGT/GENE-DB:IGLV(I)-68 22 22q11.2 immunoglobulin lambda variable (I)-68 (pseudogene) pseudo IGLVI-68 immunoglobulin lambda variable (I)-68 (pseudogene) O - 20121230 -9606 28765 IGLVI-63 - IGLV(I)-63|IGLVI63|V1-24P HGNC:5938|IMGT/GENE-DB:IGLV(I)-63 22 22q11.2 immunoglobulin lambda variable (I)-63 (pseudogene) pseudo IGLVI-63 immunoglobulin lambda variable (I)-63 (pseudogene) O - 20121230 -9606 28766 IGLVI-56 - IGLV(I)-56|IGLVI56|V1-21P HGNC:5937|IMGT/GENE-DB:IGLV(I)-56 22 22q11.2 immunoglobulin lambda variable (I)-56 (pseudogene) pseudo IGLVI-56 immunoglobulin lambda variable (I)-56 (pseudogene) O - 20121230 -9606 28767 IGLVI-42 - IGLV(I)-42|IGLVI42|V1-15P HGNC:5936|IMGT/GENE-DB:IGLV(I)-42 22 22q11.2 immunoglobulin lambda variable (I)-42 (pseudogene) pseudo IGLVI-42 immunoglobulin lambda variable (I)-42 (pseudogene) O - 20121230 -9606 28768 IGLVI-38 - IGLV(I)-38|IGLVI38|V1-12P HGNC:5935|IMGT/GENE-DB:IGLV(I)-38 22 22q11.2 immunoglobulin lambda variable (I)-38 (pseudogene) pseudo IGLVI-38 immunoglobulin lambda variable (I)-38 (pseudogene) O - 20121230 -9606 28769 IGLVI-20 - IGLV(I)-20|IGLVI20|V1-6P HGNC:5934|IMGT/GENE-DB:IGLV(I)-20 22 22q11.2 immunoglobulin lambda variable (I)-20 (pseudogene) pseudo IGLVI-20 immunoglobulin lambda variable (I)-20 (pseudogene) O - 20121230 -9606 28770 IGLV11-55 - IGLV1155|V4-6 HGNC:5886|IMGT/GENE-DB:IGLV11-55 22 22q11.2 immunoglobulin lambda variable 11-55 (non-functional) other IGLV11-55 immunoglobulin lambda variable 11-55 (non-functional) O - 20121230 -9606 28771 IGLV10-67 - IGLV1067|V1-25P HGNC:5885|IMGT/GENE-DB:IGLV10-67 22 22q11.2 immunoglobulin lambda variable 10-67 (pseudogene) pseudo IGLV10-67 immunoglobulin lambda variable 10-67 (pseudogene) O - 20121230 -9606 28772 IGLV10-54 - IGLV1054|V1-20 HGNC:5884|IMGT/GENE-DB:IGLV10-54 22 22q11.2 immunoglobulin lambda variable 10-54 other IGLV10-54 immunoglobulin lambda variable 10-54 O - 20121230 -9606 28773 IGLV9-49 - IGLV949|V5-2 HGNC:5933|IMGT/GENE-DB:IGLV9-49 22 22q11.2 immunoglobulin lambda variable 9-49 other IGLV9-49 immunoglobulin lambda variable 9-49 O - 20121230 -9606 28774 IGLV8-61 - IGLV861|V3-4 HGNC:5931|IMGT/GENE-DB:IGLV8-61 22 22q11.2 immunoglobulin lambda variable 8-61 other IGLV8-61 immunoglobulin lambda variable 8-61 O - 20121230 -9606 28775 IGLV7-46 - IGLV746|V3-3 HGNC:5930|IMGT/GENE-DB:IGLV7-46 22 22q11.2 immunoglobulin lambda variable 7-46 (gene/pseudogene) other IGLV7-46 immunoglobulin lambda variable 7-46 (gene/pseudogene) O - 20121230 -9606 28776 IGLV7-43 - IGLV743|V3-2 HGNC:5929|IMGT/GENE-DB:IGLV7-43 22 22q11.2 immunoglobulin lambda variable 7-43 other IGLV7-43 immunoglobulin lambda variable 7-43 O - 20121230 -9606 28777 IGLV7-35 - IGLV735|V3-1P HGNC:5928|IMGT/GENE-DB:IGLV7-35 22 22q11.2 immunoglobulin lambda variable 7-35 (pseudogene) pseudo IGLV7-35 immunoglobulin lambda variable 7-35 (pseudogene) O - 20121230 -9606 28778 IGLV6-57 - IGLV657|V1-22 HGNC:5927|IMGT/GENE-DB:IGLV6-57 22 22q11.2 immunoglobulin lambda variable 6-57 other IGLV6-57 immunoglobulin lambda variable 6-57 O - 20121230 -9606 28779 IGLV5-52 - IGLV552|V4-4 HGNC:5926|IMGT/GENE-DB:IGLV5-52 22 22q11.2 immunoglobulin lambda variable 5-52 other IGLV5-52 immunoglobulin lambda variable 5-52 O - 20121230 -9606 28780 IGLV5-48 - IGLV548|V4-3 HGNC:5925|IMGT/GENE-DB:IGLV5-48 22 22q11.2 immunoglobulin lambda variable 5-48 (non-functional) other IGLV5-48 immunoglobulin lambda variable 5-48 (non-functional) O - 20121230 -9606 28781 IGLV5-45 - IGLV545|V4-2 HGNC:5924|IMGT/GENE-DB:IGLV5-45 22 22q11.2 immunoglobulin lambda variable 5-45 other IGLV5-45 immunoglobulin lambda variable 5-45 O - 20121230 -9606 28782 IGLV5-39 - IGLV539 HGNC:5923|IMGT/GENE-DB:IGLV5-39 22 22q11.2 immunoglobulin lambda variable 5-39 other IGLV5-39 immunoglobulin lambda variable 5-39 O - 20111109 -9606 28783 IGLV5-37 - IGLV537|V4-1 HGNC:5922|IMGT/GENE-DB:IGLV5-37 22 22q11.2 immunoglobulin lambda variable 5-37 other IGLV5-37 immunoglobulin lambda variable 5-37 O - 20121230 -9606 28784 IGLV4-69 - IGLV469|V5-6 HGNC:5921|IMGT/GENE-DB:IGLV4-69 22 22q11.2 immunoglobulin lambda variable 4-69 other IGLV4-69 immunoglobulin lambda variable 4-69 O - 20121230 -9606 28785 IGLV4-60 - IGLV460|V5-4 HGNC:5920|IMGT/GENE-DB:IGLV4-60 22 22q11.2 immunoglobulin lambda variable 4-60 other IGLV4-60 immunoglobulin lambda variable 4-60 O - 20121230 -9606 28786 IGLV4-3 - IGLV43|V5-1 HGNC:5919|IMGT/GENE-DB:IGLV4-3 22 22q11.2 immunoglobulin lambda variable 4-3 other IGLV4-3 immunoglobulin lambda variable 4-3 O - 20121230 -9606 28787 IGLV3-32 - IGLV332|V2-23P HGNC:5914|IMGT/GENE-DB:IGLV3-32 22 22q11.2 immunoglobulin lambda variable 3-32 (non-functional) other IGLV3-32 immunoglobulin lambda variable 3-32 (non-functional) O - 20121230 -9606 28788 IGLV3-31 - IGLV331|V2-22P HGNC:5913|IMGT/GENE-DB:IGLV3-31 22 22q11.2 immunoglobulin lambda variable 3-31 (pseudogene) pseudo IGLV3-31 immunoglobulin lambda variable 3-31 (pseudogene) O - 20121230 -9606 28789 IGLV3-30 - IGLV330|V2-21P HGNC:5912|IMGT/GENE-DB:IGLV3-30 22 22q11.2 immunoglobulin lambda variable 3-30 (pseudogene) pseudo IGLV3-30 immunoglobulin lambda variable 3-30 (pseudogene) O - 20121230 -9606 28790 IGLV3-29 - IGLV329 HGNC:5911|IMGT/GENE-DB:IGLV3-29 22 22q11.2 immunoglobulin lambda variable 3-29 (pseudogene) pseudo IGLV3-29 immunoglobulin lambda variable 3-29 (pseudogene) O - 20121230 -9606 28791 IGLV3-27 - IGLV327|V2-19 HGNC:5910|IMGT/GENE-DB:IGLV3-27 22 22q11.2 immunoglobulin lambda variable 3-27 other IGLV3-27 immunoglobulin lambda variable 3-27 O - 20121230 -9606 28792 IGLV3-26 - IGLV326|V2-18P HGNC:5909|IMGT/GENE-DB:IGLV3-26 22 22q11.2 immunoglobulin lambda variable 3-26 (pseudogene) pseudo IGLV3-26 immunoglobulin lambda variable 3-26 (pseudogene) O - 20121230 -9606 28793 IGLV3-25 - IGLV325|V2-17 HGNC:5908|IMGT/GENE-DB:IGLV3-25 22 22q11.2 immunoglobulin lambda variable 3-25 other IGLV3-25 immunoglobulin lambda variable 3-25 O - 20121230 -9606 28794 IGLV3-24 - IGLV324|V2-16P HGNC:5907|IMGT/GENE-DB:IGLV3-24 22 22q11.2 immunoglobulin lambda variable 3-24 (pseudogene) pseudo IGLV3-24 immunoglobulin lambda variable 3-24 (pseudogene) O - 20121230 -9606 28795 IGLV3-22 - IGLV322|V2-15 HGNC:5906|IMGT/GENE-DB:IGLV3-22 22 22q11.2 immunoglobulin lambda variable 3-22 (gene/pseudogene) other IGLV3-22 immunoglobulin lambda variable 3-22 (gene/pseudogene) O - 20121230 -9606 28796 IGLV3-21 - IGLV321|V2-14 HGNC:5905|IMGT/GENE-DB:IGLV3-21 22 22q11.2 immunoglobulin lambda variable 3-21 other IGLV3-21 immunoglobulin lambda variable 3-21 O - 20121230 -9606 28797 IGLV3-19 - IGLV319|V2-13|VL3L HGNC:5903|IMGT/GENE-DB:IGLV3-19 22 22q11.2 immunoglobulin lambda variable 3-19 other IGLV3-19 immunoglobulin lambda variable 3-19 O - 20121230 -9606 28798 IGLV3-17 - IGLV317|V2-12P HGNC:5902|IMGT/GENE-DB:IGLV3-17 22 22q11.2 immunoglobulin lambda variable 3-17 (pseudogene) pseudo IGLV3-17 immunoglobulin lambda variable 3-17 (pseudogene) O - 20121230 -9606 28799 IGLV3-16 - IGLV316|V2-11 HGNC:5901|IMGT/GENE-DB:IGLV3-16 22 22q11.2 immunoglobulin lambda variable 3-16 other IGLV3-16 immunoglobulin lambda variable 3-16 O - 20121230 -9606 28800 IGLV3-15 - IGLV315|V2-10P HGNC:5900|IMGT/GENE-DB:IGLV3-15 22 22q11.2 immunoglobulin lambda variable 3-15 (pseudogene) pseudo IGLV3-15 immunoglobulin lambda variable 3-15 (pseudogene) O - 20121230 -9606 28801 IGLV3-13 - IGLV313|V2-9P HGNC:5899|IMGT/GENE-DB:IGLV3-13 22 22q11.2 immunoglobulin lambda variable 3-13 (pseudogene) pseudo IGLV3-13 immunoglobulin lambda variable 3-13 (pseudogene) O - 20121230 -9606 28802 IGLV3-12 - IGLV312|V2-8 HGNC:5898|IMGT/GENE-DB:IGLV3-12 22 22q11.2 immunoglobulin lambda variable 3-12 other IGLV3-12 immunoglobulin lambda variable 3-12 O - 20121230 -9606 28803 IGLV3-10 - IGLV310|V2-7 HGNC:5897|IMGT/GENE-DB:IGLV3-10 22 22q11.2 immunoglobulin lambda variable 3-10 other IGLV3-10 immunoglobulin lambda variable 3-10 O - 20121230 -9606 28804 IGLV3-9 - IGLV39|V2-6 HGNC:5918|IMGT/GENE-DB:IGLV3-9 22 22q11.2 immunoglobulin lambda variable 3-9 (gene/pseudogene) other IGLV3-9 immunoglobulin lambda variable 3-9 (gene/pseudogene) O - 20121230 -9606 28805 IGLV3-7 - IGLV37|V2-5P HGNC:5917|IMGT/GENE-DB:IGLV3-7 22 22q11.2 immunoglobulin lambda variable 3-7 (pseudogene) pseudo IGLV3-7 immunoglobulin lambda variable 3-7 (pseudogene) O - 20121230 -9606 28806 IGLV3-6 - IGLV36|V2-4P HGNC:5916|IMGT/GENE-DB:IGLV3-6 22 22q11.2 immunoglobulin lambda variable 3-6 (pseudogene) pseudo IGLV3-6 immunoglobulin lambda variable 3-6 (pseudogene) O - 20121230 -9606 28807 IGLV3-4 - IGLV34|V2-3P HGNC:5915|IMGT/GENE-DB:IGLV3-4 22 22q11.2 immunoglobulin lambda variable 3-4 (pseudogene) pseudo IGLV3-4 immunoglobulin lambda variable 3-4 (pseudogene) O - 20121230 -9606 28808 IGLV3-2 - IGLV32|V2-2P HGNC:5904|IMGT/GENE-DB:IGLV3-2 22 22q11.2 immunoglobulin lambda variable 3-2 (pseudogene) pseudo IGLV3-2 immunoglobulin lambda variable 3-2 (pseudogene) O - 20121230 -9606 28809 IGLV3-1 - IGLV31|V2-1 HGNC:5896|IMGT/GENE-DB:IGLV3-1 22 22q11.2 immunoglobulin lambda variable 3-1 other IGLV3-1 immunoglobulin lambda variable 3-1 O - 20121230 -9606 28810 IGLV2-34 - IGLV234|V1-10P HGNC:5893|IMGT/GENE-DB:IGLV2-34 22 22q11.2 immunoglobulin lambda variable 2-34 (pseudogene) pseudo IGLV2-34 immunoglobulin lambda variable 2-34 (pseudogene) O - 20121230 -9606 28811 IGLV2-33 - IGLV233|V1-9 HGNC:5892|IMGT/GENE-DB:IGLV2-33 22 22q11.2 immunoglobulin lambda variable 2-33 (non-functional) other IGLV2-33 immunoglobulin lambda variable 2-33 (non-functional) O - 20121230 -9606 28812 IGLV2-28 - IGLV228|V1-8P HGNC:5891|IMGT/GENE-DB:IGLV2-28 22 22q11.2 immunoglobulin lambda variable 2-28 (pseudogene) pseudo IGLV2-28 immunoglobulin lambda variable 2-28 (pseudogene) O - 20121230 -9606 28813 IGLV2-23 - IGLV223|V1-7 HGNC:5890|IMGT/GENE-DB:IGLV2-23 22 22q11.2 immunoglobulin lambda variable 2-23 other IGLV2-23 immunoglobulin lambda variable 2-23 O - 20121230 -9606 28814 IGLV2-18 - IGLV218|V1-5 HGNC:5889|IMGT/GENE-DB:IGLV2-18 22 22q11.2 immunoglobulin lambda variable 2-18 other IGLV2-18 immunoglobulin lambda variable 2-18 O - 20121230 -9606 28815 IGLV2-14 - IGLV214|V1-4 HGNC:5888|IMGT/GENE-DB:IGLV2-14 22 22q11.2 immunoglobulin lambda variable 2-14 other IGLV2-14 immunoglobulin lambda variable 2-14 O - 20121230 -9606 28816 IGLV2-11 - IGLV211|V1-3 HGNC:5887|IMGT/GENE-DB:IGLV2-11 22 22q11.2 immunoglobulin lambda variable 2-11 other IGLV2-11 immunoglobulin lambda variable 2-11 O - 20121230 -9606 28817 IGLV2-8 - IGLV28|V1-2 HGNC:5895|IMGT/GENE-DB:IGLV2-8 22 22q11.2 immunoglobulin lambda variable 2-8 other IGLV2-8 immunoglobulin lambda variable 2-8 O - 20121230 -9606 28818 IGLV2-5 - IGLV25|V1-1P HGNC:5894|IMGT/GENE-DB:IGLV2-5 22 22q11.2 immunoglobulin lambda variable 2-5 (pseudogene) pseudo IGLV2-5 immunoglobulin lambda variable 2-5 (pseudogene) O - 20121230 -9606 28819 IGLV1-62 - IGLV162|V1-23P HGNC:5883|IMGT/GENE-DB:IGLV1-62 22 22q11.2 immunoglobulin lambda variable 1-62 (pseudogene) pseudo IGLV1-62 immunoglobulin lambda variable 1-62 (pseudogene) O - 20121230 -9606 28820 IGLV1-51 - IGLV151|V1-19 HGNC:5882|IMGT/GENE-DB:IGLV1-51 22 22q11.2 immunoglobulin lambda variable 1-51 other IGLV1-51 immunoglobulin lambda variable 1-51 O - 20121230 -9606 28821 IGLV1-50 - IGLV150|V1-18 HGNC:5881|IMGT/GENE-DB:IGLV1-50 22 22q11.2 immunoglobulin lambda variable 1-50 (non-functional) other IGLV1-50 immunoglobulin lambda variable 1-50 (non-functional) O - 20121230 -9606 28822 IGLV1-47 - IGLV147|V1-17 HGNC:5880|IMGT/GENE-DB:IGLV1-47 22 22q11.2 immunoglobulin lambda variable 1-47 other IGLV1-47 immunoglobulin lambda variable 1-47 O - 20121230 -9606 28823 IGLV1-44 - IGLV144|V1-16 HGNC:5879|IMGT/GENE-DB:IGLV1-44 22 22q11.2 immunoglobulin lambda variable 1-44 other IGLV1-44 immunoglobulin lambda variable 1-44 O - 20121230 -9606 28824 IGLV1-41 - IGLV141|V1-14P HGNC:5878|IMGT/GENE-DB:IGLV1-41 22 22q11.2 immunoglobulin lambda variable 1-41 (pseudogene) pseudo IGLV1-41 immunoglobulin lambda variable 1-41 (pseudogene) O - 20121230 -9606 28825 IGLV1-40 - IGLV140|V1-13 HGNC:5877|IMGT/GENE-DB:IGLV1-40 22 22q11.2 immunoglobulin lambda variable 1-40 other IGLV1-40 immunoglobulin lambda variable 1-40 O - 20121230 -9606 28826 IGLV1-36 - IGLV136|V1-11 HGNC:5876|IMGT/GENE-DB:IGLV1-36 22 22q11.2 immunoglobulin lambda variable 1-36 other IGLV1-36 immunoglobulin lambda variable 1-36 O - 20121230 -9606 28827 IGLJ7 - J7 HGNC:5869|IMGT/GENE-DB:IGLJ7 22 22q11.2 immunoglobulin lambda joining 7 other IGLJ7 immunoglobulin lambda joining 7 O - 20121230 -9606 28828 IGLJ6 - - HGNC:5868|IMGT/GENE-DB:IGLJ6 22 22q11.2 immunoglobulin lambda joining 6 other IGLJ6 immunoglobulin lambda joining 6 O - 20121230 -9606 28829 IGLJ5 - - HGNC:5867|IMGT/GENE-DB:IGLJ5 22 22q11.2 immunoglobulin lambda joining 5 (non-functional) other IGLJ5 immunoglobulin lambda joining 5 (non-functional) O - 20121230 -9606 28830 IGLJ4 - - HGNC:5866|IMGT/GENE-DB:IGLJ4 22 22q11.2 immunoglobulin lambda joining 4 (non-functional) other IGLJ4 immunoglobulin lambda joining 4 (non-functional) O - 20121230 -9606 28831 IGLJ3 - J3 HGNC:5865|IMGT/GENE-DB:IGLJ3 22 22q11.2 immunoglobulin lambda joining 3 other IGLJ3 immunoglobulin lambda joining 3 O - 20121230 -9606 28832 IGLJ2 - J2 HGNC:5864|IMGT/GENE-DB:IGLJ2 22 22q11.2 immunoglobulin lambda joining 2 other IGLJ2 immunoglobulin lambda joining 2 O - 20121230 -9606 28833 IGLJ1 - J1 HGNC:5863|IMGT/GENE-DB:IGLJ1 22 22q11.2 immunoglobulin lambda joining 1 other IGLJ1 immunoglobulin lambda joining 1 O - 20121230 -9606 28834 IGLC7 - C7 HGNC:5861|IMGT/GENE-DB:IGLC7 22 22q11.2 immunoglobulin lambda constant 7 other IGLC7 immunoglobulin lambda constant 7 O - 20121230 -9606 28847 IGKV2OR22-4 - IGKV2OR224|IGKVP6 HGNC:5813|IMGT/GENE-DB:IGKV2/OR22-4 22 22q11 immunoglobulin kappa variable 2/OR22-4 (pseudogene) pseudo IGKV2OR22-4 immunoglobulin kappa variable 2/OR22-4 (pseudogene) O - 20121230 -9606 28850 IGKV1OR22-5 - IGKV1OR22-5A|IGKV1OR225|IGKV1OR225A|IGKVP7 HGNC:5773|IMGT/GENE-DB:IGKV1/OR22-5 22 22q11 immunoglobulin kappa variable 1/OR22-5 (pseudogene) other IGKV1OR22-5 immunoglobulin kappa variable 1/OR22-5 (pseudogene) O - 20111109 -9606 28854 IGKV3OR2-5 - IGKV3/OR2-5|IGKV3OR25 HGNC:5832|IMGT/GENE-DB:IGKV3/OR2-5 2 - immunoglobulin kappa variable 3/OR2-5 (pseudogene) pseudo IGKV3OR2-5 immunoglobulin kappa variable 3/OR2-5 (pseudogene) O - 20111109 -9606 28855 IGKV2OR2-10 - IGKV2OR210 HGNC:5806|IMGT/GENE-DB:IGKV2/OR2-10 2 - immunoglobulin kappa variable 2/OR2-10 (pseudogene) pseudo IGKV2OR2-10 immunoglobulin kappa variable 2/OR2-10 (pseudogene) O - 20121209 -9606 28856 IGKV2OR2-8 - IGKV2/OR2-8|IGKV2OR28 HGNC:5811|IMGT/GENE-DB:IGKV2/OR2-8 2 - immunoglobulin kappa variable 2/OR2-8 (pseudogene) pseudo IGKV2OR2-8 immunoglobulin kappa variable 2/OR2-8 (pseudogene) O - 20120720 -9606 28858 IGKV2OR2-4 - IGKV2/OR2-4|IGKV2OR24 HGNC:5809|IMGT/GENE-DB:IGKV2/OR2-4 2 - immunoglobulin kappa variable 2/OR2-4 (pseudogene) pseudo IGKV2OR2-4 immunoglobulin kappa variable 2/OR2-4 (pseudogene) O - 20111109 -9606 28859 IGKV2OR2-2 - IGKV2/OR2-2|IGKV2OR22 HGNC:5808|IMGT/GENE-DB:IGKV2/OR2-2 2 2q11.2 immunoglobulin kappa variable 2/OR2-2 (pseudogene) pseudo IGKV2OR2-2 immunoglobulin kappa variable 2/OR2-2 (pseudogene) O - 20111109 -9606 28861 IGKV2OR2-1 - IGKV2/OR2-1|IGKV2OR2-1A|IGKV2OR21|IGKV2OR21A HGNC:5805|IMGT/GENE-DB:IGKV2/OR2-1 2 - immunoglobulin kappa variable 2/OR2-1 (pseudogene) pseudo IGKV2OR2-1 immunoglobulin kappa variable 2/OR2-1 (pseudogene) O - 20111109 -9606 28862 IGKV1OR2-108 - IGKV1OR2108|IGO1 HGNC:5767|MIM:147185|IMGT/GENE-DB:IGKV1/OR2-108 2 2q12-q14 immunoglobulin kappa variable 1/OR2-108 (non-functional) other IGKV1OR2-108 immunoglobulin kappa variable 1/OR2-108 (non-functional) O - 20111109 -9606 28863 IGKV1OR2-11 - IGKV1OR211 HGNC:5768|IMGT/GENE-DB:IGKV1/OR2-11 1 - immunoglobulin kappa variable 1/OR2-11 (pseudogene) pseudo IGKV1OR2-11 immunoglobulin kappa variable 1/OR2-11 (pseudogene) O - 20111109 -9606 28864 IGKV1OR2-9 - IGKV1/OR2-9|IGKV1OR29 HGNC:5771|IMGT/GENE-DB:IGKV1/OR2-9 1 - immunoglobulin kappa variable 1/OR2-9 (pseudogene) pseudo IGKV1OR2-9 immunoglobulin kappa variable 1/OR2-9 (pseudogene) O - 20111109 -9606 28865 IGKV1OR2-6 - IGKV1/OR2-6|IGKV1OR26 HGNC:5770|IMGT/GENE-DB:IGKV1/OR2-6 1 - immunoglobulin kappa variable 1/OR2-6 (pseudogene) pseudo IGKV1OR2-6 immunoglobulin kappa variable 1/OR2-6 (pseudogene) O - 20111109 -9606 28866 IGKV1OR2-3 - IGKV1/OR2-3|IGKV1OR23 HGNC:5769|IMGT/GENE-DB:IGKV1/OR2-3 1 - immunoglobulin kappa variable 1/OR2-3 (pseudogene) pseudo IGKV1OR2-3 immunoglobulin kappa variable 1/OR2-3 (pseudogene) O - 20111109 -9606 28867 IGKV1OR2-0 - IGKV1/OR2-0|IGKV1OR20 HGNC:5766|IMGT/GENE-DB:IGKV1/OR2-0 1 - immunoglobulin kappa variable 1/OR2-0 (non-functional) other IGKV1OR2-0 immunoglobulin kappa variable 1/OR2-0 (non-functional) O - 20111109 -9606 28869 IGKV6D-41 - A14 HGNC:5838|IMGT/GENE-DB:IGKV6D-41 2 2p12 immunoglobulin kappa variable 6D-41 (non-functional) other IGKV6D-41 immunoglobulin kappa variable 6D-41 (non-functional) O - 20121209 -9606 28870 IGKV6D-21 - A10|IGKV6D21 HGNC:5837|IMGT/GENE-DB:IGKV6D-21 2 2p12 immunoglobulin kappa variable 6D-21 (non-functional) other IGKV6D-21 immunoglobulin kappa variable 6D-21 (non-functional) O - 20121209 -9606 28871 IGKV3D-34 - IGKV3D34|O7 HGNC:5828|IMGT/GENE-DB:IGKV3D-34 2 2p12 immunoglobulin kappa variable 3D-34 (pseudogene) pseudo IGKV3D-34 immunoglobulin kappa variable 3D-34 (pseudogene) O - 20121209 -9606 28872 IGKV3D-31 - IGKV3D31|O10 HGNC:5827|IMGT/GENE-DB:IGKV3D-31 2 2p12 immunoglobulin kappa variable 3D-31 (pseudogene) pseudo IGKV3D-31 immunoglobulin kappa variable 3D-31 (pseudogene) O - 20121209 -9606 28873 IGKV3D-25 - A6|IGKV3D25 HGNC:5826|IMGT/GENE-DB:IGKV3D-25 2 2p12 immunoglobulin kappa variable 3D-25 (pseudogene) pseudo IGKV3D-25 immunoglobulin kappa variable 3D-25 (pseudogene) O - 20121209 -9606 28874 IGKV3D-20 - A11|A11a|IGKV3D20 HGNC:5825|IMGT/GENE-DB:IGKV3D-20 2 2p12 immunoglobulin kappa variable 3D-20 other IGKV3D-20 immunoglobulin kappa variable 3D-20 O - 20121230 -9606 28875 IGKV3D-15 - IGKV3D15|L16|L16a|L16b|L16c HGNC:5824|IMGT/GENE-DB:IGKV3D-15 2 2p12 immunoglobulin kappa variable 3D-15 (gene/pseudogene) other IGKV3D-15 immunoglobulin kappa variable 3D-15 (gene/pseudogene) O - 20121230 -9606 28876 IGKV3D-11 - IGKV3D11|L20 HGNC:5823|IMGT/GENE-DB:IGKV3D-11 2 2p12 immunoglobulin kappa variable 3D-11 other IGKV3D-11 immunoglobulin kappa variable 3D-11 O - 20121230 -9606 28877 IGKV3D-7 - IGKV3D7|L25 HGNC:5829|IMGT/GENE-DB:IGKV3D-7 2 2p12 immunoglobulin kappa variable 3D-7 other IGKV3D-7 immunoglobulin kappa variable 3D-7 O - 20121230 -9606 28878 IGKV2D-40 - IGKV2D40|O1 HGNC:5804|IMGT/GENE-DB:IGKV2D-40 2 2p12 immunoglobulin kappa variable 2D-40 other IGKV2D-40 immunoglobulin kappa variable 2D-40 O - 20121230 -9606 28879 IGKV2D-38 - IGKV2D38|O3 HGNC:5803|IMGT/GENE-DB:IGKV2D-38 2 2p12 immunoglobulin kappa variable 2D-38 (pseudogene) pseudo IGKV2D-38 immunoglobulin kappa variable 2D-38 (pseudogene) O - 20121209 -9606 28880 IGKV2D-36 - IGKV2D36|O5 HGNC:5802|IMGT/GENE-DB:IGKV2D-36 2 2p12 immunoglobulin kappa variable 2D-36 (pseudogene) pseudo IGKV2D-36 immunoglobulin kappa variable 2D-36 (pseudogene) O - 20121209 -9606 28881 IGKV2D-30 - A1|IGKV2D30 HGNC:5801|IMGT/GENE-DB:IGKV2D-30 2 2p12 immunoglobulin kappa variable 2D-30 other IGKV2D-30 immunoglobulin kappa variable 2D-30 O - 20121209 -9606 28882 IGKV2D-29 - A2a|A2c|IGKV2D29 HGNC:5800|IMGT/GENE-DB:IGKV2D-29 2 2p12 immunoglobulin kappa variable 2D-29 other IGKV2D-29 immunoglobulin kappa variable 2D-29 O - 20121230 -9606 28883 IGKV2D-28 - A3|IGKV2D28 HGNC:5799|IMGT/GENE-DB:IGKV2D-28 2 2p12 immunoglobulin kappa variable 2D-28 other IGKV2D-28 immunoglobulin kappa variable 2D-28 O - 20121209 -9606 28884 IGKV2D-26 - A5|IGKV2D26 HGNC:5798|IMGT/GENE-DB:IGKV2D-26 2 2p12 immunoglobulin kappa variable 2D-26 pseudo IGKV2D-26 immunoglobulin kappa variable 2D-26 O - 20121209 -9606 28885 IGKV2D-24 - A7|IGKV2D24 HGNC:5797|IMGT/GENE-DB:IGKV2D-24 2 2p12 immunoglobulin kappa variable 2D-24 (non-functional) other IGKV2D-24 immunoglobulin kappa variable 2D-24 (non-functional) O - 20121230 -9606 28886 IGKV2D-23 - A8|IGKV2D23 HGNC:5796|IMGT/GENE-DB:IGKV2D-23 2 2p12 immunoglobulin kappa variable 2D-23 (pseudogene) pseudo IGKV2D-23 immunoglobulin kappa variable 2D-23 (pseudogene) O - 20121209 -9606 28887 IGKV2D-19 - A12|IGKV2D19 HGNC:5795|IMGT/GENE-DB:IGKV2D-19 2 2p12 immunoglobulin kappa variable 2D-19 (pseudogene) pseudo IGKV2D-19 immunoglobulin kappa variable 2D-19 (pseudogene) O - 20121209 -9606 28888 IGKV2D-18 - A13|IGKV2D18 HGNC:5794|IMGT/GENE-DB:IGKV2D-18 2 2p12 immunoglobulin kappa variable 2D-18 (pseudogene) pseudo IGKV2D-18 immunoglobulin kappa variable 2D-18 (pseudogene) O - 20121230 -9606 28889 IGKV2D-14 - IGKV2D14|L17 HGNC:5793|IMGT/GENE-DB:IGKV2D-14 2 2p12 immunoglobulin kappa variable 2D-14 (pseudogene) pseudo IGKV2D-14 immunoglobulin kappa variable 2D-14 (pseudogene) O - 20121209 -9606 28890 IGKV2D-10 - IGKV2D10|L21 HGNC:5792|IMGT/GENE-DB:IGKV2D-10 2 2p12 immunoglobulin kappa variable 2D-10 (pseudogene) pseudo IGKV2D-10 immunoglobulin kappa variable 2D-10 (pseudogene) O - 20121230 -9606 28891 IGKV1D-43 - IGKV1D43|L23|L23a HGNC:5758|IMGT/GENE-DB:IGKV1D-43 2 2p12 immunoglobulin kappa variable 1D-43 other IGKV1D-43 immunoglobulin kappa variable 1D-43 O - 20121230 -9606 28892 IGKV1D-42 - IGKV1D42|L22 HGNC:5757|IMGT/GENE-DB:IGKV1D-42 2 2p12 immunoglobulin kappa variable 1D-42 (non-functional) other IGKV1D-42 immunoglobulin kappa variable 1D-42 (non-functional) O - 20121230 -9606 28893 IGKV1D-39 - IGKV1D39|O2 HGNC:5756|IMGT/GENE-DB:IGKV1D-39 2 2p12 immunoglobulin kappa variable 1D-39 other IGKV1D-39 immunoglobulin kappa variable 1D-39 O - 20121209 -9606 28894 IGKV1D-37 - IGKV1D37|O4 HGNC:5755|IMGT/GENE-DB:IGKV1D-37 2 2p12 immunoglobulin kappa variable 1D-37 (non-functional) other IGKV1D-37 immunoglobulin kappa variable 1D-37 (non-functional) O - 20121230 -9606 28895 IGKV1D-35 - IGKV1D35|O6 HGNC:5754|IMGT/GENE-DB:IGKV1D-35 2 2p12 immunoglobulin kappa variable 1D-35 (pseudogene) pseudo IGKV1D-35 immunoglobulin kappa variable 1D-35 (pseudogene) O - 20121209 -9606 28896 IGKV1D-33 - IGKV1D33|O8 HGNC:5753|IMGT/GENE-DB:IGKV1D-33 2 2p12 immunoglobulin kappa variable 1D-33 other IGKV1D-33 immunoglobulin kappa variable 1D-33 O - 20121230 -9606 28897 IGKV1D-32 - IGKV1D32|O9 HGNC:5752|IMGT/GENE-DB:IGKV1D-32 2 2p12 immunoglobulin kappa variable 1D-32 (pseudogene) pseudo IGKV1D-32 immunoglobulin kappa variable 1D-32 (pseudogene) O - 20121209 -9606 28898 IGKV1D-27 - A4|A4a|IGKV1D27 HGNC:5751|IMGT/GENE-DB:IGKV1D-27 2 2p12 immunoglobulin kappa variable 1D-27 (pseudogene) pseudo IGKV1D-27 immunoglobulin kappa variable 1D-27 (pseudogene) O - 20121209 -9606 28899 IGKV1D-22 - A9|IGKV1D22 HGNC:5750|IMGT/GENE-DB:IGKV1D-22 2 2p12 immunoglobulin kappa variable 1D-22 (pseudogene) pseudo IGKV1D-22 immunoglobulin kappa variable 1D-22 (pseudogene) O - 20121209 -9606 28900 IGKV1D-17 - IGKV1D17|L14 HGNC:5749|IMGT/GENE-DB:IGKV1D-17 2 2p12 immunoglobulin kappa variable 1D-17 other IGKV1D-17 immunoglobulin kappa variable 1D-17 O - 20121230 -9606 28901 IGKV1D-16 - IGKV1D16|L15|L15a HGNC:5748|IMGT/GENE-DB:IGKV1D-16 2 2p12 immunoglobulin kappa variable 1D-16 other IGKV1D-16 immunoglobulin kappa variable 1D-16 O - 20121230 -9606 28902 IGKV1D-13 - IGKV1D13|L18 HGNC:5747|IMGT/GENE-DB:IGKV1D-13 2 2p12 immunoglobulin kappa variable 1D-13 other IGKV1D-13 immunoglobulin kappa variable 1D-13 O - 20121230 -9606 28903 IGKV1D-12 - IGKV1D12|L19 HGNC:5746|IMGT/GENE-DB:IGKV1D-12 2 2p12 immunoglobulin kappa variable 1D-12 other IGKV1D-12 immunoglobulin kappa variable 1D-12 O - 20121230 -9606 28904 IGKV1D-8 - IGKV1D8|L24|L24a HGNC:5759|IMGT/GENE-DB:IGKV1D-8 2 2p12 immunoglobulin kappa variable 1D-8 other IGKV1D-8 immunoglobulin kappa variable 1D-8 O - 20121230 -9606 28905 IGKV7-3 - B1|IGKV73 HGNC:5839|IMGT/GENE-DB:IGKV7-3 2 2p12 immunoglobulin kappa variable 7-3 (pseudogene) pseudo IGKV7-3 immunoglobulin kappa variable 7-3 (pseudogene) O - 20121230 -9606 28906 IGKV6-21 - A26|IGKV621 HGNC:5836|IMGT/GENE-DB:IGKV6-21 2 2p12 immunoglobulin kappa variable 6-21 (non-functional) other IGKV6-21 immunoglobulin kappa variable 6-21 (non-functional) O - 20121230 -9606 28907 IGKV5-2 - B2|IGKV52 HGNC:5835|IMGT/GENE-DB:IGKV5-2 2 2p12 immunoglobulin kappa variable 5-2 other IGKV5-2 immunoglobulin kappa variable 5-2 O - 20121230 -9606 28908 IGKV4-1 - B3|IGKV41 HGNC:5834|IMGT/GENE-DB:IGKV4-1 2 2p12 immunoglobulin kappa variable 4-1 other IGKV4-1 immunoglobulin kappa variable 4-1 O - 20121230 -9606 28909 IGKV3-34 - IGKV334|O17 HGNC:5820|IMGT/GENE-DB:IGKV3-34 2 2p12 immunoglobulin kappa variable 3-34 (pseudogene) pseudo IGKV3-34 immunoglobulin kappa variable 3-34 (pseudogene) O - 20121230 -9606 28910 IGKV3-31 - A16|A16a|IGKV331 HGNC:5819|IMGT/GENE-DB:IGKV3-31 2 2p12 immunoglobulin kappa variable 3-31 (pseudogene) pseudo IGKV3-31 immunoglobulin kappa variable 3-31 (pseudogene) O - 20121230 -9606 28911 IGKV3-25 - A22|IGKV325 HGNC:5818|IMGT/GENE-DB:IGKV3-25 2 2p12 immunoglobulin kappa variable 3-25 (pseudogene) pseudo IGKV3-25 immunoglobulin kappa variable 3-25 (pseudogene) O - 20121230 -9606 28912 IGKV3-20 - 13K18|A27|IGKV320 HGNC:5817|IMGT/GENE-DB:IGKV3-20 2 2p12 immunoglobulin kappa variable 3-20 other IGKV3-20 immunoglobulin kappa variable 3-20 O - 20121230 -9606 28913 IGKV3-15 - IGKV315|L2 HGNC:5816|IMGT/GENE-DB:IGKV3-15 2 2p12 immunoglobulin kappa variable 3-15 other IGKV3-15 immunoglobulin kappa variable 3-15 O - 20121230 -9606 28914 IGKV3-11 - IGKV311|L6 HGNC:5815|IMGT/GENE-DB:IGKV3-11 2 2p12 immunoglobulin kappa variable 3-11 other IGKV3-11 immunoglobulin kappa variable 3-11 O - 20121230 -9606 28915 IGKV3-7 - IGKV37|L10|L10a|Vh HGNC:5821|IMGT/GENE-DB:IGKV3-7 2 2p12 immunoglobulin kappa variable 3-7 (non-functional) other IGKV3-7 immunoglobulin kappa variable 3-7 (non-functional) O - 20121230 -9606 28916 IGKV2-40 - IGKV240|O11|O11a HGNC:5789|IMGT/GENE-DB:IGKV2-40 2 2p12 immunoglobulin kappa variable 2-40 other IGKV2-40 immunoglobulin kappa variable 2-40 O - 20121230 -9606 28917 IGKV2-38 - IGKV238|O13 HGNC:5787|IMGT/GENE-DB:IGKV2-38 2 2p12 immunoglobulin kappa variable 2-38 (pseudogene) pseudo IGKV2-38 immunoglobulin kappa variable 2-38 (pseudogene) O - 20121230 -9606 28918 IGKV2-36 - IGKV236|O15 HGNC:5786|IMGT/GENE-DB:IGKV2-36 2 2p12 immunoglobulin kappa variable 2-36 (pseudogene) pseudo IGKV2-36 immunoglobulin kappa variable 2-36 (pseudogene) O - 20121230 -9606 28919 IGKV2-30 - A17|IGKV230 HGNC:5785|IMGT/GENE-DB:IGKV2-30 2 2p12 immunoglobulin kappa variable 2-30 other IGKV2-30 immunoglobulin kappa variable 2-30 O - 20121230 -9606 28920 IGKV2-29 - A18|A18b|IGKV229 HGNC:5784|IMGT/GENE-DB:IGKV2-29 2 2p12 immunoglobulin kappa variable 2-29 (gene/pseudogene) pseudo IGKV2-29 immunoglobulin kappa variable 2-29 (gene/pseudogene) O - 20121230 -9606 28921 IGKV2-28 - A19|IGKV228 HGNC:5783|IMGT/GENE-DB:IGKV2-28 2 2p12 immunoglobulin kappa variable 2-28 other IGKV2-28 immunoglobulin kappa variable 2-28 O - 20121230 -9606 28922 IGKV2-26 - A21|IGKV226 HGNC:5782|IMGT/GENE-DB:IGKV2-26 2 2p12 immunoglobulin kappa variable 2-26 (pseudogene) pseudo IGKV2-26 immunoglobulin kappa variable 2-26 (pseudogene) O - 20121230 -9606 28923 IGKV2-24 - A23|IGKV224 HGNC:5781|IMGT/GENE-DB:IGKV2-24 2 2p12 immunoglobulin kappa variable 2-24 other IGKV2-24 immunoglobulin kappa variable 2-24 O - 20121230 -9606 28924 IGKV2-23 - A24|IGKV223 HGNC:5780|IMGT/GENE-DB:IGKV2-23 2 2p12 immunoglobulin kappa variable 2-23 (pseudogene) pseudo IGKV2-23 immunoglobulin kappa variable 2-23 (pseudogene) O - 20121230 -9606 28925 IGKV2-19 - A28|IGKV219 HGNC:5779|IMGT/GENE-DB:IGKV2-19 2 2p12 immunoglobulin kappa variable 2-19 (pseudogene) pseudo IGKV2-19 immunoglobulin kappa variable 2-19 (pseudogene) O - 20121230 -9606 28926 IGKV2-18 - A29|IGKV218 HGNC:5778|IMGT/GENE-DB:IGKV2-18 2 2p12 immunoglobulin kappa variable 2-18 (pseudogene) pseudo IGKV2-18 immunoglobulin kappa variable 2-18 (pseudogene) O - 20121230 -9606 28927 IGKV2-14 - IGKV214|L3 HGNC:5777|IMGT/GENE-DB:IGKV2-14 2 2p12 immunoglobulin kappa variable 2-14 (pseudogene) pseudo IGKV2-14 immunoglobulin kappa variable 2-14 (pseudogene) O - 20121230 -9606 28928 IGKV2-10 - IGKV210|L7 HGNC:5776|IMGT/GENE-DB:IGKV2-10 2 2p12 immunoglobulin kappa variable 2-10 (pseudogene) pseudo IGKV2-10 immunoglobulin kappa variable 2-10 (pseudogene) O - 20121230 -9606 28929 IGKV2-4 - IGKV24|L13 HGNC:5788|IMGT/GENE-DB:IGKV2-4 2 2p12 immunoglobulin kappa variable 2-4 (pseudogene) pseudo IGKV2-4 immunoglobulin kappa variable 2-4 (pseudogene) O - 20121230 -9606 28930 IGKV1-39 - IGKV139|O12|O12a HGNC:5740|IMGT/GENE-DB:IGKV1-39 2 2p12 immunoglobulin kappa variable 1-39 (gene/pseudogene) other IGKV1-39 immunoglobulin kappa variable 1-39 (gene/pseudogene) O - 20121230 -9606 28931 IGKV1-37 - IGKV137|O14 HGNC:5739|IMGT/GENE-DB:IGKV1-37 2 2p12 immunoglobulin kappa variable 1-37 (non-functional) other IGKV1-37 immunoglobulin kappa variable 1-37 (non-functional) O - 20121230 -9606 28932 IGKV1-35 - IGKV135|O16 HGNC:5738|IMGT/GENE-DB:IGKV1-35 2 2p12 immunoglobulin kappa variable 1-35 (pseudogene) pseudo IGKV1-35 immunoglobulin kappa variable 1-35 (pseudogene) O - 20121230 -9606 28933 IGKV1-33 - IGKV133|O18 HGNC:5737|IMGT/GENE-DB:IGKV1-33 2 2p12 immunoglobulin kappa variable 1-33 other IGKV1-33 immunoglobulin kappa variable 1-33 O - 20121230 -9606 28934 IGKV1-32 - A15|A15a|IGKV132 HGNC:5736|IMGT/GENE-DB:IGKV1-32 2 2p12 immunoglobulin kappa variable 1-32 (pseudogene) pseudo IGKV1-32 immunoglobulin kappa variable 1-32 (pseudogene) O - 20121230 -9606 28935 IGKV1-27 - A20|IGKV127 HGNC:5735|IMGT/GENE-DB:IGKV1-27 2 2p12 immunoglobulin kappa variable 1-27 other IGKV1-27 immunoglobulin kappa variable 1-27 O - 20121230 -9606 28936 IGKV1-22 - A25|IGKV122 HGNC:5734|IMGT/GENE-DB:IGKV1-22 2 2p12 immunoglobulin kappa variable 1-22 (pseudogene) pseudo IGKV1-22 immunoglobulin kappa variable 1-22 (pseudogene) O - 20121230 -9606 28937 IGKV1-17 - A30|IGKV117 HGNC:5733|IMGT/GENE-DB:IGKV1-17 2 2p12 immunoglobulin kappa variable 1-17 other IGKV1-17 immunoglobulin kappa variable 1-17 O - 20121230 -9606 28938 IGKV1-16 - IGKV116|L1 HGNC:5732|IMGT/GENE-DB:IGKV1-16 2 2p12 immunoglobulin kappa variable 1-16 other IGKV1-16 immunoglobulin kappa variable 1-16 O - 20121230 -9606 28939 IGKV1-13 - IGKV113|L18 HGNC:5731|IMGT/GENE-DB:IGKV1-13 2 2p12 immunoglobulin kappa variable 1-13 (gene/pseudogene) other IGKV1-13 immunoglobulin kappa variable 1-13 (gene/pseudogene) O - 20121230 -9606 28940 IGKV1-12 - IGKV112|L19 HGNC:5730|IMGT/GENE-DB:IGKV1-12 2 2p12 immunoglobulin kappa variable 1-12 other IGKV1-12 immunoglobulin kappa variable 1-12 O - 20121230 -9606 28941 IGKV1-9 - IGKV19|L8 HGNC:5744|IMGT/GENE-DB:IGKV1-9 2 2p12 immunoglobulin kappa variable 1-9 other IGKV1-9 immunoglobulin kappa variable 1-9 O - 20121230 -9606 28942 IGKV1-8 - IGKV18|L9 HGNC:5743|IMGT/GENE-DB:IGKV1-8 2 2p12 immunoglobulin kappa variable 1-8 other IGKV1-8 immunoglobulin kappa variable 1-8 O - 20121230 -9606 28943 IGKV1-6 - IGKV16|L11 HGNC:5742|IMGT/GENE-DB:IGKV1-6 2 2p12 immunoglobulin kappa variable 1-6 other IGKV1-6 immunoglobulin kappa variable 1-6 O - 20121230 -9606 28946 IGKJ5 - J5 HGNC:5723|IMGT/GENE-DB:IGKJ5 2 2p12 immunoglobulin kappa joining 5 other IGKJ5 immunoglobulin kappa joining 5 O - 20121230 -9606 28947 IGKJ4 - J4 HGNC:5722|IMGT/GENE-DB:IGKJ4 2 2p12 immunoglobulin kappa joining 4 other IGKJ4 immunoglobulin kappa joining 4 O - 20121230 -9606 28948 IGKJ3 - J3 HGNC:5721|IMGT/GENE-DB:IGKJ3 2 2p12 immunoglobulin kappa joining 3 other IGKJ3 immunoglobulin kappa joining 3 O - 20121230 -9606 28949 IGKJ2 - J2 HGNC:5720|IMGT/GENE-DB:IGKJ2 2 2p12 immunoglobulin kappa joining 2 other IGKJ2 immunoglobulin kappa joining 2 O - 20121230 -9606 28950 IGKJ1 - J1 HGNC:5719|IMGT/GENE-DB:IGKJ1 2 2p12 immunoglobulin kappa joining 1 other IGKJ1 immunoglobulin kappa joining 1 O - 20121230 -9606 28951 TRIB2 - C5FW|GS3955|TRB2 HGNC:30809|MIM:609462|Ensembl:ENSG00000071575|HPRD:18224|Vega:OTTHUMG00000090575 2 2p24.3 tribbles homolog 2 (Drosophila) protein-coding TRIB2 tribbles homolog 2 (Drosophila) O tribbles homolog 2 20121230 -9606 28952 CCDC22 JM1 CXorf37 HGNC:28909|MIM:300859|Ensembl:ENSG00000101997|HPRD:06594|Vega:OTTHUMG00000024141 X Xp11.23 coiled-coil domain containing 22 protein-coding CCDC22 coiled-coil domain containing 22 O coiled-coil domain-containing protein 22 20121230 -9606 28954 REM1 - GD:REM|GES|REM HGNC:15922|MIM:610388|Ensembl:ENSG00000088320|HPRD:15237|Vega:OTTHUMG00000032168 20 20q11.21 RAS (RAD and GEM)-like GTP-binding 1 protein-coding REM1 RAS (RAD and GEM)-like GTP-binding 1 O GTP-binding protein REM 1|GTPase GES|GTPase-regulating endothelial cell sprouting|rad and Gem-like GTP-binding protein 1 20121230 -9606 28955 DEXI - MYLE HGNC:13267|Ensembl:ENSG00000182108|HPRD:16798|Vega:OTTHUMG00000129785 16 16p13.13 Dexi homolog (mouse) protein-coding DEXI Dexi homolog (mouse) O dexamethasone-induced protein|dexamethasone-induced transcript 20121230 -9606 28956 LAMTOR2 RP11-336K24.9 ENDAP|HSPC003|MAPBPIP|MAPKSP1AP|ROBLD3|Ragulator2|p14 HGNC:29796|MIM:610389|Ensembl:ENSG00000116586|HPRD:17463|Vega:OTTHUMG00000017462 1 1q22 late endosomal/lysosomal adaptor, MAPK and MTOR activator 2 protein-coding LAMTOR2 late endosomal/lysosomal adaptor, MAPK and MTOR activator 2 O MAPKSP1 adaptor protein|endosomal adaptor protein p14|late endosomal/lysosomal Mp1-interacting protein|late endosomal/lysosomal adaptor and MAPK and MTOR activator 2|mitogen-activated protein-binding protein-interacting protein (MAPBPIP)|ragulator complex protein LAMTOR2|roadblock domain containing 3|roadblock domain-containing protein 3 20121230 -9606 28957 MRPS28 HSPC007 MRP-S28|MRP-S35|MRPS35 HGNC:14513|MIM:611990|Ensembl:ENSG00000147586|HPRD:10097|Vega:OTTHUMG00000164642 8 8q21.1-q21.2 mitochondrial ribosomal protein S28 protein-coding MRPS28 mitochondrial ribosomal protein S28 O 28S ribosomal protein S28, mitochondrial|28S ribosomal protein S35, mitochondrial|S28mt|S35mt|mitochondrial 28S ribosomal protein S35 20121230 -9606 28958 COA3 HSPC009 CCDC56|MITRAC12 HGNC:24990|MIM:614775|Ensembl:ENSG00000183978|Vega:OTTHUMG00000180651 17 17q21 cytochrome c oxidase assembly factor 3 protein-coding COA3 cytochrome c oxidase assembly factor 3 O coiled-coil domain-containing protein 56|cytochrome C oxidase assembly factor 3 homolog, mitochondrial 20121230 -9606 28959 TMEM176B - LR8 HGNC:29596|MIM:610385|Ensembl:ENSG00000106565|HPRD:17443|Vega:OTTHUMG00000157577 7 7q36.1 transmembrane protein 176B protein-coding TMEM176B transmembrane protein 176B O LR8-like protein 20121230 -9606 28960 DCPS HSPC015 HINT-5|HSL1 HGNC:29812|MIM:610534|Ensembl:ENSG00000110063|HPRD:16787|Vega:OTTHUMG00000165829 11 11q24.2 decapping enzyme, scavenger protein-coding DCPS decapping enzyme, scavenger O DCS-1|heat shock-like protein 1|hint-related 7meGMP-directed hydrolase|histidine triad protein member 5|homolog of C. elegans 7meGMP-directed hydrolase dcs-1|m7GpppX diphosphatase|mRNA decapping enzyme|scavenger mRNA-decapping enzyme DcpS 20121230 -9606 28962 OSTM1 HSPC019 GIPN|GL|OPTB5 HGNC:21652|MIM:607649|Ensembl:ENSG00000081087|HPRD:09628|Vega:OTTHUMG00000015317 6 6q21 osteopetrosis associated transmembrane protein 1 protein-coding OSTM1 osteopetrosis associated transmembrane protein 1 O GAIP-interacting protein N terminus|chloride channel 7 beta subunit|grey-lethal osteopetrosis|osteopetrosis-associated transmembrane protein 1 20121230 -9606 28964 GIT1 - - HGNC:4272|MIM:608434|Ensembl:ENSG00000108262|HPRD:06577|Vega:OTTHUMG00000132730 17 17p11.2 G protein-coupled receptor kinase interacting ArfGAP 1 protein-coding GIT1 G protein-coupled receptor kinase interacting ArfGAP 1 O ARF GAP GIT1|ARF GTPase-activating protein GIT1|CAT-1|CAT1|G protein-coupled receptor kinase interactor 1|G protein-coupled receptor kinase-interactor 1|GRK-interacting protein 1|cool-associated and tyrosine-phosphorylated protein 1 20121230 -9606 28965 SLC27A6 - ACSVL2|FACVL2|FATP6|VLCS-H1 HGNC:11000|MIM:604196|Ensembl:ENSG00000113396|HPRD:09173|Vega:OTTHUMG00000128991 5 5q23.3 solute carrier family 27 (fatty acid transporter), member 6 protein-coding SLC27A6 solute carrier family 27 (fatty acid transporter), member 6 O FATP-6|VLCSH1|fatty acid transport protein 6|fatty-acid-Coenzyme A ligase, very long-chain 2|hVLCS-H1|long-chain fatty acid transport protein 6|solute carrier family 27 member 6|very long-chain acyl-CoA synthetase homolog 1 20121230 -9606 28966 SNX24 SBBI31 PRO1284 HGNC:21533|Ensembl:ENSG00000064652|HPRD:15413|Vega:OTTHUMG00000128913 5 5q23.2 sorting nexin 24 protein-coding SNX24 sorting nexin 24 O sorting nexin-24|sorting nexing 24 20121230 -9606 28968 SLC6A16 - NTT5 HGNC:13622|MIM:607972|Ensembl:ENSG00000063127 19 19q13.33 solute carrier family 6, member 16 protein-coding SLC6A16 solute carrier family 6, member 16 O orphan sodium- and chloride-dependent neurotransmitter transporter NTT5|solute carrier family 6 (neurotransmitter transporter), member 16 20121230 -9606 28969 BZW2 HSPC028 MST017|MSTP017 HGNC:18808|Ensembl:ENSG00000136261|HPRD:16571|Vega:OTTHUMG00000130755 7 7p21.1 basic leucine zipper and W2 domains 2 protein-coding BZW2 basic leucine zipper and W2 domains 2 O basic leucine zipper and W2 domain-containing protein 2 20121230 -9606 28970 C11orf54 LP4947 PTD012 HGNC:30204|Ensembl:ENSG00000182919|HPRD:17923|Vega:OTTHUMG00000167452 11 11q21 chromosome 11 open reading frame 54 protein-coding C11orf54 chromosome 11 open reading frame 54 O LP4947|ester hydrolase C11orf54 20121230 -9606 28971 AAMDC PTD015 C11orf67|CK067 HGNC:30205|Ensembl:ENSG00000087884|HPRD:17924|Vega:OTTHUMG00000166651 11 11q14.1 adipogenesis associated, Mth938 domain containing protein-coding AAMDC adipogenesis associated, Mth938 domain containing O UPF0366 protein C11orf67 20121230 -9606 28972 SPCS1 HSPC033 SPC1|SPC12|YJR010C-A HGNC:23401|MIM:610358|Ensembl:ENSG00000114902|Vega:OTTHUMG00000154930 3 3p21.1 signal peptidase complex subunit 1 homolog (S. cerevisiae) protein-coding SPCS1 signal peptidase complex subunit 1 homolog (S. cerevisiae) O SPase 12 kDa subunit|microsomal signal peptidase 12 kDa subunit|signal peptidase 12kDa|signal peptidase complex subunit 1 20121230 -9606 28973 MRPS18B DADB-129D20.6 C6orf14|HSPC183|HumanS18a|MRP-S18-2|MRPS18-2|PTD017|S18amt HGNC:14516|MIM:611982|Ensembl:ENSG00000204568|HPRD:14781|Vega:OTTHUMG00000031268 6 6p21.3 mitochondrial ribosomal protein S18B protein-coding MRPS18B mitochondrial ribosomal protein S18B O 28S ribosomal protein S18-2, mitochondrial|28S ribosomal protein S18b, mitochondrial|MRP-S18-b|S18mt-b|mitochondrial ribosomal protein S18-2|mrps18-b 20121230 -9606 28974 C19orf53 HSPC023 LYDG10 HGNC:24991|Ensembl:ENSG00000104979|HPRD:13687|Vega:OTTHUMG00000180914 19 19p13.2 chromosome 19 open reading frame 53 protein-coding C19orf53 chromosome 19 open reading frame 53 O leydig cell tumor 10 kDa protein homolog 20121230 -9606 28976 ACAD9 - NPD002 HGNC:21497|MIM:611103|Ensembl:ENSG00000177646|HPRD:12412|Vega:OTTHUMG00000159942 3 3q21.3 acyl-CoA dehydrogenase family, member 9 protein-coding ACAD9 acyl-CoA dehydrogenase family, member 9 O acyl-CoA dehydrogenase family member 9, mitochondrial|acyl-Coenzyme A dehydrogenase family, member 9|very-long-chain acyl-CoA dehydrogenase VLCAD 20121230 -9606 28977 MRPL42 HSPC204 L31MT|L42MT|MRP-L31|MRP-L42|MRP-S32|MRPL31|MRPS32|PTD007|RPML31|S32MT HGNC:14493|MIM:611847|Ensembl:ENSG00000198015|HPRD:14761|Vega:OTTHUMG00000170157 12 12q22 mitochondrial ribosomal protein L42 protein-coding MRPL42 mitochondrial ribosomal protein L42 O 28S ribosomal protein S32, mitochondrial|39S ribosomal protein L31, mitochondrial|39S ribosomal protein L42, mitochondrial 20121230 -9606 28978 TMEM14A PTD011 C6orf73 HGNC:21076|Ensembl:ENSG00000096092|HPRD:15522|Vega:OTTHUMG00000014856 6 6p12.2 transmembrane protein 14A protein-coding TMEM14A transmembrane protein 14A O - 20121230 -9606 28981 IFT81 - CDV-1|CDV-1R|CDV1|CDV1R HGNC:14313|MIM:605489|Ensembl:ENSG00000122970|HPRD:09266|Vega:OTTHUMG00000169326 12 12q24.13 intraflagellar transport 81 homolog (Chlamydomonas) protein-coding IFT81 intraflagellar transport 81 homolog (Chlamydomonas) O carnitine deficiency-associated gene expressed in ventricle 1|carnitine deficiency-associated protein expressed in ventricle 1|intraflagellar transport protein 81 homolog 20121230 -9606 28982 FLVCR1 - AXPC1|FLVCR|MFSD7B|PCA|PCARP HGNC:24682|MIM:609144|Ensembl:ENSG00000162769|HPRD:16451|Vega:OTTHUMG00000036924 1 1q32.3 feline leukemia virus subgroup C cellular receptor 1 protein-coding FLVCR1 feline leukemia virus subgroup C cellular receptor 1 O feline leukemia virus subgroup C receptor-related protein 1 20121230 -9606 28983 TMPRSS11E UNQ742/PRO1461 DESC1|TMPRSS11E2 HGNC:24465|MIM:610399|Ensembl:ENSG00000087128|HPRD:09912|Vega:OTTHUMG00000160438 4 4q13.2 transmembrane protease, serine 11E protein-coding TMPRSS11E transmembrane protease, serine 11E O serine protease DESC1|transmembrane protease serine 11E|transmembrane protease serine 11E2|transmembrane protease, serine 11E2 20121230 -9606 28984 RGCC - C13orf15|RGC-32|RGC32|bA157L14.2 HGNC:20369|MIM:610077|Ensembl:ENSG00000102760|HPRD:17970|Vega:OTTHUMG00000016796 13 13q14.11 regulator of cell cycle protein-coding RGCC regulator of cell cycle O regulator of cell cycle RGCC|response gene to complement 32 protein 20121230 -9606 28985 MCTS1 - MCT-1|MCT1 HGNC:23357|MIM:300587|Ensembl:ENSG00000232119|HPRD:06634|Vega:OTTHUMG00000022303 X Xq24 malignant T cell amplified sequence 1 protein-coding MCTS1 malignant T cell amplified sequence 1 O malignant T cell-amplified sequence 1|malignant T-cell-amplified sequence 1|multiple copies T-cell malignancies 20121230 -9606 28986 MAGEH1 - APR-1|APR1|MAGEH HGNC:24092|MIM:300548|Ensembl:ENSG00000187601|HPRD:06633|Vega:OTTHUMG00000021655 X Xp11.21 melanoma antigen family H, 1 protein-coding MAGEH1 melanoma antigen family H, 1 O apoptosis-related protein 1|melanoma-associated antigen H1|restin 20121230 -9606 28987 NOB1 MSTP158 ART-4|MST158|NOB1P|PSMD8BP1 HGNC:29540|MIM:613586|Ensembl:ENSG00000141101|HPRD:11395|Vega:OTTHUMG00000137576 16 16q22.3 NIN1/RPN12 binding protein 1 homolog (S. cerevisiae) protein-coding NOB1 NIN1/RPN12 binding protein 1 homolog (S. cerevisiae) O PSMD8 binding protein 1|RNA-binding protein NOB1|adenocarcinoma antigen recognized by T lymphocytes 4|nin one binding protein|phosphorylation regulatory protein HP-10|protein ART-4 20121230 -9606 28988 DBNL PP5423 ABP1|HIP-55|SH3P7 HGNC:2696|MIM:610106|Ensembl:ENSG00000136279|HPRD:06588|Vega:OTTHUMG00000155350 7 7p13 drebrin-like protein-coding DBNL drebrin-like O HPK1-interacting protein of 55 kDa|SH3 domain-containing protein 7|cervical SH3P7|cervical mucin-associated protein|drebrin-F|drebrin-like protein|src homology 3 domain-containing protein HIP-55 20121230 -9606 28989 NTMT1 RP11-483H20.8 AD-003|C9orf32|HOMT1A|METTL11A|NRMT|NTM1A HGNC:23373|MIM:613560|Ensembl:ENSG00000148335|HPRD:10628|Vega:OTTHUMG00000020785 9 9q34.11 N-terminal Xaa-Pro-Lys N-methyltransferase 1 protein-coding NTMT1 N-terminal Xaa-Pro-Lys N-methyltransferase 1 O N-terminal RCC1 methyltransferase|X-Pro-Lys N-terminal protein methyltransferase 1A|alpha N-terminal protein methyltransferase 1A|methyltransferase like 11A|methyltransferase-like protein 11A 20121230 -9606 28990 ASTE1 HT001 - HGNC:25021|Ensembl:ENSG00000034533|HPRD:11038|Vega:OTTHUMG00000159644 3 3q22.1 asteroid homolog 1 (Drosophila) protein-coding ASTE1 asteroid homolog 1 (Drosophila) O protein asteroid homolog 1 20121230 -9606 28991 COMMD5 HT002 HCARG HGNC:17902|MIM:608216|Ensembl:ENSG00000170619|HPRD:16301|Vega:OTTHUMG00000165251 8 8q24.3 COMM domain containing 5 protein-coding COMMD5 COMM domain containing 5 O COMM domain-containing protein 5|hypertension-related calcium-regulated gene protein 20121230 -9606 28992 MACROD1 - LRP16 HGNC:29598|MIM:610400|Ensembl:ENSG00000133315|HPRD:17448|Vega:OTTHUMG00000167843 11 11q11 MACRO domain containing 1 protein-coding MACROD1 MACRO domain containing 1 O MACRO domain-containing protein 1|O-acetyl-ADP-ribose deacetylase MACROD1 20121230 -9606 28994 PRO0471 - - - 3 3p13-q26.1 uncharacterized LOC28994 unknown - - - - 20121006 -9606 28996 HIPK2 - PRO0593 HGNC:14402|MIM:606868|Ensembl:ENSG00000064393|HPRD:06039|Vega:OTTHUMG00000157704 7 7q32-q34 homeodomain interacting protein kinase 2 protein-coding HIPK2 homeodomain interacting protein kinase 2 O hHIPk2|homeodomain-interacting protein kinase 2 20121230 -9606 28997 PRO0611 - - - 1 1p35.2 PRO0611 protein unknown - - - - 20121017 -9606 28998 MRPL13 - L13|L13A|L13mt|RPL13|RPML13 HGNC:14278|MIM:610200|Ensembl:ENSG00000172172|HPRD:14740|Vega:OTTHUMG00000165039 8 8q22.1-q22.3 mitochondrial ribosomal protein L13 protein-coding MRPL13 mitochondrial ribosomal protein L13 O 39S ribosomal protein L13, mitochondrial|MRP-L13 20121230 -9606 28999 KLF15 - KKLF HGNC:14536|MIM:606465|Ensembl:ENSG00000163884|HPRD:07568|Vega:OTTHUMG00000162689 3 3q21.3 Kruppel-like factor 15 protein-coding KLF15 Kruppel-like factor 15 O Krueppel-like factor 15|kidney-enriched Kruppel-like factor|kidney-enriched krueppel-like factor 20121230 -9606 29013 PRO1596 - - - 1 1p34.3 uncharacterized LOC29013 unknown - - - - 20121006 -9606 29015 SLC43A3 PSEC0252 EEG1|FOAP-13|PRO1659|SEEEG-1 HGNC:17466|Ensembl:ENSG00000134802|HPRD:15391|Vega:OTTHUMG00000167113 11 11q11 solute carrier family 43, member 3 protein-coding SLC43A3 solute carrier family 43, member 3 O likely ortholog of mouse embryonic epithelial gene 1|solute carrier family 43 member 3 20121230 -9606 29018 FOXN3-AS2 PRO1768 - HGNC:30119 14 14q32.11 FOXN3 antisense RNA 2 miscRNA FOXN3-AS2 FOXN3 antisense RNA 2 O - 20121230 -9606 29028 ATAD2 L16 ANCCA|PRO2000 HGNC:30123|MIM:611941|Ensembl:ENSG00000156802|HPRD:10678|Vega:OTTHUMG00000165090 8 8q24.13 ATPase family, AAA domain containing 2 protein-coding ATAD2 ATPase family, AAA domain containing 2 O AAA nuclear coregulator cancer-associated protein|ATPase family AAA domain-containing protein 2 20121230 -9606 29034 CPS1-IT1 - CPS1-IT|CPS1IT|CPS1IT1|PRO0132 HGNC:30102 2 2q34 CPS1 intronic transcript 1 (non-protein coding) miscRNA CPS1-IT1 CPS1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 29035 C16orf72 - PRO0149 HGNC:30103|Ensembl:ENSG00000182831|HPRD:17910|Vega:OTTHUMG00000178147 16 16p13.2 chromosome 16 open reading frame 72 protein-coding C16orf72 chromosome 16 open reading frame 72 O UPF0472 protein C16orf72 20121230 -9606 29044 C9orf38 PRO0365 - HGNC:23398 9 9p24.1 chromosome 9 open reading frame 38 unknown C9orf38 chromosome 9 open reading frame 38 O - 20121230 -9606 29053 PRO0628 - - - 20 20q12 uncharacterized LOC29053 unknown - - - - 20121018 -9606 29057 FAM156A RP1-248F5.1 PRO0659|TMEM29 HGNC:30114|Ensembl:ENSG00000182646|HPRD:06683|Vega:OTTHUMG00000021595 X Xp11.22 family with sequence similarity 156, member A protein-coding FAM156A family with sequence similarity 156, member A O protein FAM156A|protein FAM156A/FAM156B|transmembrane protein 29 20121230 -9606 29058 TMEM230 RP5-1116H23.2 C20orf30|HSPC274|dJ1116H23.2.1 HGNC:15876|Ensembl:ENSG00000089063|HPRD:12762|Vega:OTTHUMG00000031796 20 20p13 transmembrane protein 230 protein-coding TMEM230 transmembrane protein 230 O UPF0414 transmembrane protein C20orf30 20121230 -9606 29062 WDR91 HSPC049 - HGNC:24997|Ensembl:ENSG00000105875|HPRD:11035|Vega:OTTHUMG00000155414 7 7q33 WD repeat domain 91 protein-coding WDR91 WD repeat domain 91 O WD repeat-containing protein 91 20121230 -9606 29063 ZCCHC4 - HSPC052 HGNC:22917|MIM:611792|Ensembl:ENSG00000168228|Vega:OTTHUMG00000160563 4 4p15.2 zinc finger, CCHC domain containing 4 protein-coding ZCCHC4 zinc finger, CCHC domain containing 4 O DHHC domain-containing zinc finger protein|zinc finger CCHC domain-containing protein 4 20121230 -9606 29065 ASAP1-IT1 - ASAP1-IT|ASAP1IT|ASAP1IT1|DDEF1IT1|HSPC054|NCRNA00050 HGNC:24998 8 8q24.21 ASAP1 intronic transcript 1 (non-protein coding) miscRNA ASAP1-IT1 ASAP1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 29066 ZC3H7A HSPC055 ZC3H7|ZC3HDC7 HGNC:30959|Ensembl:ENSG00000122299|HPRD:11694|Vega:OTTHUMG00000129825 16 16p13-p12 zinc finger CCCH-type containing 7A protein-coding ZC3H7A zinc finger CCCH-type containing 7A O zinc finger CCCH domain-containing protein 7A|zinc finger CCCH type domain containing 7|zinc finger CCCH-type domain containing 7|zinc-finger protein AY163807 20121230 -9606 29068 ZBTB44 - BTBD15|HSPC063|ZNF851 HGNC:25001|Ensembl:ENSG00000196323|HPRD:13692|Vega:OTTHUMG00000165769 11 11q24.3 zinc finger and BTB domain containing 44 protein-coding ZBTB44 zinc finger and BTB domain containing 44 O BTB (POZ) domain containing 15|BTB/POZ domain-containing protein 15|zinc finger and BTB domain-containing protein 44|zinc finger protein 851 20121230 -9606 29070 CCDC113 HSPC065 - HGNC:25002|Ensembl:ENSG00000103021|HPRD:07121|Vega:OTTHUMG00000133489 16 16q21 coiled-coil domain containing 113 protein-coding CCDC113 coiled-coil domain containing 113 O coiled-coil domain-containing protein 113 20121230 -9606 29071 C1GALT1C1 HSPC067 C1GALT2|C38H2-L1|COSMC|MST143 HGNC:24338|MIM:300611|Ensembl:ENSG00000171155|HPRD:06462|Vega:OTTHUMG00000022305 X Xq24 C1GALT1-specific chaperone 1 protein-coding C1GALT1C1 C1GALT1-specific chaperone 1 O C1Gal-T2|C38H2-like protein 1|beta 1,3-galactosyltransferase 2|core 1 beta1,3-galactosyltransferase 2|core 1 beta3-Gal-T2|core 1 beta3-galactosyltransferase-specific molecular chaperone 20121230 -9606 29072 SETD2 HSPC069 HBP231|HIF-1|HIP-1|HYPB|KMT3A|SET2|p231HBP HGNC:18420|MIM:612778|Ensembl:ENSG00000181555|HPRD:11043|Vega:OTTHUMG00000133514 3 3p21.31 SET domain containing 2 protein-coding SETD2 SET domain containing 2 O histone-lysine N-methyltransferase SETD2|huntingtin interacting protein 1|huntingtin yeast partner B|huntingtin-interacting protein B|lysine N-methyltransferase 3A 20121230 -9606 29074 MRPL18 HSPC071 L18mt|MRP-L18 HGNC:14477|MIM:611831|Ensembl:ENSG00000112110|HPRD:14744|Vega:OTTHUMG00000015942 6 6q25.3 mitochondrial ribosomal protein L18 protein-coding MRPL18 mitochondrial ribosomal protein L18 O 39S ribosomal protein L18, mitochondrial 20121230 -9606 29075 LINC00652 - HSPC072 HGNC:25003|HPRD:13693 20 20p11.23 long intergenic non-protein coding RNA 652 miscRNA LINC00652 long intergenic non-protein coding RNA 652 O - 20121230 -9606 29078 NDUFAF4 HSPC125 C6orf66|HRPAP20|My013|bA22L21.1 HGNC:21034|MIM:611776|Ensembl:ENSG00000123545|HPRD:10795|Vega:OTTHUMG00000015246 6 6q16.1 NADH dehydrogenase (ubiquinone) complex I, assembly factor 4 protein-coding NDUFAF4 NADH dehydrogenase (ubiquinone) complex I, assembly factor 4 O NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 4|NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4|hormone-regulated proliferation-associated protein of 20 kDa|hormone-regulated proliferation-associated protein, 20 kDa 20121230 -9606 29079 MED4 RP11-90M2.2 ARC36|DRIP36|HSPC126|TRAP36|VDRIP HGNC:17903|MIM:605718|Ensembl:ENSG00000136146|HPRD:16145|Vega:OTTHUMG00000016891 13 13q14.2 mediator complex subunit 4 protein-coding MED4 mediator complex subunit 4 O TRAP/SMCC/PC2 subunit p36|activator-recruited cofactor 36 kDa component|mediator of RNA polymerase II transcription subunit 4|mediator, 34-kD subunit, homolog|vitamin D receptor-interacting protein, 36-kD|vitamin D3 receptor-interacting protein complex 36 kDa component 20121230 -9606 29080 CCDC59 HSPC128 BR22|TAP26 HGNC:25005|Ensembl:ENSG00000133773|HPRD:13696|Vega:OTTHUMG00000170251 12 12q21.31 coiled-coil domain containing 59 protein-coding CCDC59 coiled-coil domain containing 59 O TTF-1-associated protein 26|TTF-1-associated protein BR2|coiled-coil domain-containing protein 59|thyroid transcription factor 1-associated protein 26 20121230 -9606 29081 METTL5 DC3 HSPC133 HGNC:25006|Ensembl:ENSG00000138382|Vega:OTTHUMG00000154117 2 2q31.1 methyltransferase like 5 protein-coding METTL5 methyltransferase like 5 O methyltransferase-like protein 5 20121230 -9606 29082 CHMP4A CDA04 C14orf123|CHMP4|CHMP4B|HSPC134|SHAX2|SNF7|SNF7-1|VPS32-1|VPS32A HGNC:20274|MIM:610051|Ensembl:ENSG00000254505|HPRD:16597|Vega:OTTHUMG00000167036 14 14q12 charged multivesicular body protein 4A protein-coding CHMP4A charged multivesicular body protein 4A O SNF7 homolog associated with Alix-2|Snf7 homologue associated with Alix 2|charged multivesicular body protein 4a|chromatin modifying protein 4A|vacuolar protein sorting-associated protein 32-1 20121230 -9606 29083 GTPBP8 - HSPC135 HGNC:25007|Ensembl:ENSG00000163607|HPRD:13700|Vega:OTTHUMG00000159268 3 3q13.2 GTP-binding protein 8 (putative) protein-coding GTPBP8 GTP-binding protein 8 (putative) O GTP-binding protein 8 20121230 -9606 29085 PHPT1 RP11-216L13.10-005 CGI-202|HSPC141|PHP14|RP11-216L13.10|bA216L13.10 HGNC:30033|MIM:610167|Ensembl:ENSG00000054148|HPRD:17849|Vega:OTTHUMG00000020950 9 9q34.3 phosphohistidine phosphatase 1 protein-coding PHPT1 phosphohistidine phosphatase 1 O 14 kDa phosphohistidine phosphatase|1700008C22Rik|phosphohistidine phosphatase 14kDa|protein janus-A homolog|sex-regulated protein janus-a 20121230 -9606 29086 BABAM1 HSPC142 C19orf62|MERIT40|NBA1 HGNC:25008|MIM:612766|Ensembl:ENSG00000105393|HPRD:13702 19 19p13.11 BRISC and BRCA1 A complex member 1 protein-coding BABAM1 BRISC and BRCA1 A complex member 1 O BRCA1-A complex subunit MERIT40|BRISC and BRCA1-A complex member 1|mediator of RAP80 interactions and targeting subunit of 40 kDa|mediator of Rap80 interactions and targeting 40 kDa|new component of the BRCA1 A complex|new component of the BRCA1-A complex|new component of the BRCAA1 A complex 20121230 -9606 29087 THYN1 HSPC144 MDS012|MY105|THY28|THY28KD HGNC:29560|MIM:613739|Ensembl:ENSG00000151500|HPRD:18183|Vega:OTTHUMG00000167176 11 11q25 thymocyte nuclear protein 1 protein-coding THYN1 thymocyte nuclear protein 1 O thymocyte protein thy28 20121230 -9606 29088 MRPL15 HSPC145 L15mt|MRP-L15|MRP-L7|RPML7 HGNC:14054|MIM:611828|Ensembl:ENSG00000137547|HPRD:14742|Vega:OTTHUMG00000164315 8 8q11.2-q13 mitochondrial ribosomal protein L15 protein-coding MRPL15 mitochondrial ribosomal protein L15 O 39S ribosomal protein L15, mitochondrial 20121230 -9606 29089 UBE2T HSPC150 PIG50 HGNC:25009|MIM:610538|Ensembl:ENSG00000077152|HPRD:13704|Vega:OTTHUMG00000041392 1 1q32.1 ubiquitin-conjugating enzyme E2T (putative) protein-coding UBE2T ubiquitin-conjugating enzyme E2T (putative) O HSPC150 protein similar to ubiquitin-conjugating enzyme|cell proliferation-inducing gene 50 protein|ubiquitin carrier protein T|ubiquitin conjugating enzyme|ubiquitin-conjugating enzyme E2 T|ubiquitin-protein ligase T 20121230 -9606 29090 TIMM21 HSPC154 C18orf55|TIM21 HGNC:25010|Ensembl:ENSG00000075336|HPRD:13706|Vega:OTTHUMG00000132844 18 18q22.3 translocase of inner mitochondrial membrane 21 homolog (yeast) protein-coding TIMM21 translocase of inner mitochondrial membrane 21 homolog (yeast) O TIM21-like protein, mitochondrial|mitochondrial import inner membrane translocase subunit Tim21 20121230 -9606 29091 STXBP6 HSPC156 amisyn HGNC:19666|MIM:607958|Ensembl:ENSG00000168952|Vega:OTTHUMG00000140186 14 14q12 syntaxin binding protein 6 (amisyn) protein-coding STXBP6 syntaxin binding protein 6 (amisyn) O syntaxin-binding protein 6 20121230 -9606 29092 LINC00339 - HSPC157|NCRNA00339 HGNC:25011 1 1p36.12 long intergenic non-protein coding RNA 339 miscRNA LINC00339 long intergenic non-protein coding RNA 339 O - 20121230 -9606 29093 MRPL22 HSPC158 L22mt|MRP-L22|MRP-L25|RPML25 HGNC:14480|MIM:611835|Ensembl:ENSG00000082515|HPRD:14748|Vega:OTTHUMG00000130190 5 5q33.2 mitochondrial ribosomal protein L22 protein-coding MRPL22 mitochondrial ribosomal protein L22 O 39S ribosomal protein L22, mitochondrial|39S ribosomal protein L25, mitochondrial|L25mt 20121230 -9606 29094 LGALSL HSPC159 GRP HGNC:25012|Ensembl:ENSG00000119862|HPRD:13708|Vega:OTTHUMG00000129541 2 2p14 lectin, galactoside-binding-like protein-coding LGALSL lectin, galactoside-binding-like O galectin-related protein|lectin galactoside-binding-like protein 20121230 -9606 29095 ORMDL2 HSPC160 MST095|MSTP095|adoplin-2 HGNC:16037|MIM:610074|Ensembl:ENSG00000123353|HPRD:17802|Vega:OTTHUMG00000170202 12 12q13.2 ORM1-like 2 (S. cerevisiae) protein-coding ORMDL2 ORM1-like 2 (S. cerevisiae) O ORM1-like protein 2|expressed in normal aorta 20121230 -9606 29097 CNIH4 HSPC163 - HGNC:25013|Ensembl:ENSG00000143771|HPRD:13709|Vega:OTTHUMG00000037635 1 1q42.11 cornichon homolog 4 (Drosophila) protein-coding CNIH4 cornichon homolog 4 (Drosophila) O protein cornichon homolog 4 20121230 -9606 29098 RANGRF HSPC165 HSPC236|MOG1|RANGNRF HGNC:17679|MIM:607954|Ensembl:ENSG00000108961|HPRD:06407|Vega:OTTHUMG00000178473 17 17p13.1 RAN guanine nucleotide release factor protein-coding RANGRF RAN guanine nucleotide release factor O MOG1 homolog|ran guanine nucleotide release factor|ran-binding protein MOG1 20121230 -9606 29099 COMMD9 HSPC166 - HGNC:25014|MIM:612299|Ensembl:ENSG00000110442|HPRD:13087|Vega:OTTHUMG00000166333 11 11p13 COMM domain containing 9 protein-coding COMMD9 COMM domain containing 9 O COMM domain-containing protein 9 20121230 -9606 29100 TMEM208 HSPC171 - HGNC:25015|Ensembl:ENSG00000168701|HPRD:13710|Vega:OTTHUMG00000173064 16 16q22.1 transmembrane protein 208 protein-coding TMEM208 transmembrane protein 208 O - 20121230 -9606 29101 SSU72 RP5-832C2.2 HSPC182|PNAS-120 HGNC:25016|Ensembl:ENSG00000160075|HPRD:13712|Vega:OTTHUMG00000000576 1 1p36.33 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) protein-coding SSU72 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) O CTD phosphatase SSU72|RNA polymerase II subunit A C-terminal domain phosphatase SSU72 20121230 -9606 29102 DROSHA - ETOHI2|HSA242976|RANSE3L|RN3|RNASE3L|RNASEN HGNC:17904|MIM:608828|Ensembl:ENSG00000113360|HPRD:10196|Vega:OTTHUMG00000161976 5 5p13.3 drosha, ribonuclease type III protein-coding DROSHA drosha, ribonuclease type III O RNase III|drosha, double-stranded RNA-specific endoribonuclease|nuclear RNase III Drosha|p241|protein Drosha|putative protein p241 which interacts with transcription factor Sp1|putative ribonuclease III|ribonuclease 3|ribonuclease III, nuclear|ribonuclease type III, nuclear 20121230 -9606 29103 DNAJC15 GIG22 DNAJD1|HSD18|MCJ HGNC:20325|Ensembl:ENSG00000120675|HPRD:13238|Vega:OTTHUMG00000016813 13 13q14.1 DnaJ (Hsp40) homolog, subfamily C, member 15 protein-coding DNAJC15 DnaJ (Hsp40) homolog, subfamily C, member 15 O DNAJ domain-containing|DnaJ (Hsp40) homolog, subfamily D, member 1|cell growth-inhibiting gene 22 protein|dnaJ homolog subfamily C member 15|methylation-controlled J protein 20121230 -9606 29104 N6AMT1 PRED28 C21orf127|HEMK2|MTQ2|N6AMT HGNC:16021|MIM:614553|Ensembl:ENSG00000156239|HPRD:10739|Vega:OTTHUMG00000078750 21 21q21.3 N-6 adenine-specific DNA methyltransferase 1 (putative) protein-coding N6AMT1 N-6 adenine-specific DNA methyltransferase 1 (putative) O N6-DNA-methyltransferase|hemK methyltransferase family member 2|m.HsaHemK2P|n(6)-adenine-specific DNA methyltransferase 1 20121230 -9606 29105 C16orf80 - EVORF|GTL3|fSAP23 HGNC:29523|Ensembl:ENSG00000070761|HPRD:13616|Vega:OTTHUMG00000133490 16 16q21 chromosome 16 open reading frame 80 protein-coding C16orf80 chromosome 16 open reading frame 80 O UPF0468 protein C16orf80|functional spliceosome-associated protein 23|gene trap locus 3|transcription factor IIB 20121230 -9606 29106 SCG3 UNQ2502/PRO5990 SGIII HGNC:13707|MIM:611796|Ensembl:ENSG00000104112|HPRD:11538|Vega:OTTHUMG00000131748 15 15q21 secretogranin III protein-coding SCG3 secretogranin III O secretogranin-3 20121230 -9606 29107 NXT1 - MTR2|P15 HGNC:15913|MIM:605811|Ensembl:ENSG00000132661|HPRD:16159|Vega:OTTHUMG00000032059 20 20p12-p11.2 NTF2-like export factor 1 protein-coding NXT1 NTF2-like export factor 1 O NTF2-related export protein 1|NTX2-like export factor1|NUTF-like export factor 1|protein p15 20121230 -9606 29108 PYCARD - ASC|CARD5|TMS|TMS-1|TMS1 HGNC:16608|MIM:606838|Ensembl:ENSG00000103490|HPRD:06020|Vega:OTTHUMG00000176753 16 16p11.2 PYD and CARD domain containing protein-coding PYCARD PYD and CARD domain containing O apoptosis-associated speck-like protein containing a CARD|caspase recruitment domain-containing protein 5|target of methylation-induced silencing 1 20121230 -9606 29109 FHOD1 - FHOS HGNC:17905|MIM:606881|Ensembl:ENSG00000135723|HPRD:06049|Vega:OTTHUMG00000137521 16 16q22 formin homology 2 domain containing 1 protein-coding FHOD1 formin homology 2 domain containing 1 O FH1/FH2 domain-containing protein 1|formin homolog overexpressed in spleen 1 20121230 -9606 29110 TBK1 - NAK|T2K HGNC:11584|MIM:604834|Ensembl:ENSG00000183735|HPRD:05322|Vega:OTTHUMG00000168796 12 12q14.1 TANK-binding kinase 1 protein-coding TBK1 TANK-binding kinase 1 O NF-kB-activating kinase|NF-kappa-B-activating kinase|serine/threonine-protein kinase TBK1 20121230 -9606 29113 C6orf15 DADB-141O4.4 STG HGNC:13927|MIM:611401|Ensembl:ENSG00000204542|HPRD:12856|Vega:OTTHUMG00000031111 6 6p21.3 chromosome 6 open reading frame 15 protein-coding C6orf15 chromosome 6 open reading frame 15 O taste bud-specific protein|uncharacterized protein C6orf15 20121230 -9606 29114 TAGLN3 - NP22|NP25 HGNC:29868|MIM:607953|Ensembl:ENSG00000144834|HPRD:12136|Vega:OTTHUMG00000159281 3 3q13.2 transgelin 3 protein-coding TAGLN3 transgelin 3 O neuronal protein 22|neuronal protein NP25|transgelin-3 20121230 -9606 29115 SAP30BP - HCNGP|HTRG|HTRP HGNC:30785|MIM:610218|Ensembl:ENSG00000161526|HPRD:17094|Vega:OTTHUMG00000179798 17 17q25.1 SAP30 binding protein protein-coding SAP30BP SAP30 binding protein O HSV-1 binding|SAP30-binding protein|transcriptional regulator protein HCNGP 20121230 -9606 29116 MYLIP RP1-13D10.1 IDOL|MIR HGNC:21155|MIM:610082|Ensembl:ENSG00000007944|HPRD:17621|Vega:OTTHUMG00000016405 6 6p23-p22.3 myosin regulatory light chain interacting protein protein-coding MYLIP myosin regulatory light chain interacting protein O E3 ubiquitin ligase-inducible degrader of the low density lipoprotein receptor|E3 ubiquitin-protein ligase MYLIP|band 4.1 superfamily member BZF1|cellular modulator of immune recognition (c-MIR)|inducible degrader of the LDL-receptor|myosin regulatory light chain-interacting protein 20121230 -9606 29117 BRD7 - BP75|CELTIX1|NAG4 HGNC:14310|Ensembl:ENSG00000166164|Vega:OTTHUMG00000133170 16 16q12 bromodomain containing 7 protein-coding BRD7 bromodomain containing 7 O 75 kDa bromodomain protein|bromodomain-containing protein 7|protein CELTIX-1 20121230 -9606 29118 DDX25 - GRTH HGNC:18698|MIM:607663|Ensembl:ENSG00000109832|HPRD:06367|Vega:OTTHUMG00000165859 11 11q24 DEAD (Asp-Glu-Ala-Asp) box helicase 25 protein-coding DDX25 DEAD (Asp-Glu-Ala-Asp) box helicase 25 O ATP-dependent RNA helicase DDX25|DEAD (Asp-Glu-Ala-Asp) box polypeptide 25|DEAD box protein 25|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 25|gonadotropin-regulated testicular RNA helicase 20121230 -9606 29119 CTNNA3 RP11-433J16.1 VR22 HGNC:2511|MIM:607667|Ensembl:ENSG00000183230|HPRD:09639|Vega:OTTHUMG00000018334 10 10q22.2 catenin (cadherin-associated protein), alpha 3 protein-coding CTNNA3 catenin (cadherin-associated protein), alpha 3 O alpha T-catenin|alpha-T-catenin|alpha-catenin-like protein|cadherin-associated protein|catenin alpha-3 20121230 -9606 29121 CLEC2D - CLAX|LLT1|OCIL HGNC:14351|MIM:605659|Ensembl:ENSG00000069493|HPRD:16134|Vega:OTTHUMG00000168369 12 12p13 C-type lectin domain family 2, member D protein-coding CLEC2D C-type lectin domain family 2, member D O C-type lectin domain family 2 member D|C-type lectin related f|C-type lectin superfamily 2, member D|LLT-1|lectin-like NK cell receptor|lectin-like transcript 1|osteoclast inhibitory lectin 20121230 -9606 29122 PRSS50 - CT20|TSP50 HGNC:17910|MIM:607950|Ensembl:ENSG00000206549|HPRD:06405 3 3p21.31 protease, serine, 50 protein-coding PRSS50 protease, serine, 50 O cancer/testis antigen 20|probable threonine protease PRSS50|serine protease 50|testes specific protease 50|testes-specific protease 50|testis-specific protease-like protein 50 20121230 -9606 29123 ANKRD11 - ANCO-1|ANCO1|LZ16|T13 HGNC:21316|MIM:611192|Ensembl:ENSG00000167522|HPRD:12456|Vega:OTTHUMG00000175548 16 16q24.3 ankyrin repeat domain 11 protein-coding ANKRD11 ankyrin repeat domain 11 O ankyrin repeat domain-containing protein 11|ankyrin repeat-containing cofactor 1|nasopharyngeal carcinoma susceptibility protein 20121230 -9606 29124 LGALS13 - GAL13|PLAC8|PP13 HGNC:15449|MIM:608717|Ensembl:ENSG00000105198|HPRD:16375 19 19q13.1 lectin, galactoside-binding, soluble, 13 protein-coding LGALS13 lectin, galactoside-binding, soluble, 13 O beta-galactoside-binding lectin|gal-13|galactoside-binding soluble lectin 13|galectin 13|galectin-13|placental protein 13|placental tissue protein 13 20121230 -9606 29125 C11orf21 - - HGNC:13231|MIM:611033|Ensembl:ENSG00000110665|Vega:OTTHUMG00000009759 11 11p15.5 chromosome 11 open reading frame 21 protein-coding C11orf21 chromosome 11 open reading frame 21 O uncharacterized protein C11orf21 20121230 -9606 29126 CD274 - B7-H|B7H1|PD-L1|PDCD1L1|PDCD1LG1|PDL1 HGNC:17635|MIM:605402|Ensembl:ENSG00000120217|HPRD:05655|Vega:OTTHUMG00000019503 9 9p24 CD274 molecule protein-coding CD274 CD274 molecule O B7 homolog 1|CD274 antigen|PDCD1 ligand 1|programmed cell death 1 ligand 1|programmed death ligand 1 20121230 -9606 29127 RACGAP1 - CYK4|HsCYK-4|ID-GAP|MgcRacGAP HGNC:9804|MIM:604980|Ensembl:ENSG00000161800|HPRD:05402|Vega:OTTHUMG00000169811 12 12q13.12 Rac GTPase activating protein 1 protein-coding RACGAP1 Rac GTPase activating protein 1 O GTPase activating protein|male germ cell RacGap|protein CYK4 homolg|rac GTPase-activating protein 1 20121230 -9606 29128 UHRF1 - ICBP90|Np95|RNF106|hNP95|hUHRF1 HGNC:12556|MIM:607990|HPRD:06992 19 19p13.3 ubiquitin-like with PHD and ring finger domains 1 protein-coding UHRF1 ubiquitin-like with PHD and ring finger domains 1 O E3 ubiquitin-protein ligase UHRF1|RING finger protein 106|huNp95|inverted CCAAT box-binding protein of 90 kDa|nuclear protein 95|nuclear zinc finger protein Np95|transcription factor ICBP90|ubiquitin-like PHD and RING finger domain-containing protein 1|ubiquitin-like, containing PHD and RING finger domains, 1|ubiquitin-like-containing PHD and RING finger domains protein 1 20121230 -9606 29760 BLNK - AGM4|BASH|BLNK-S|LY57|SLP-65|SLP65|bca HGNC:14211|MIM:604515|Ensembl:ENSG00000095585|HPRD:05153|Vega:OTTHUMG00000018827 10 10q23.2-q23.33 B-cell linker protein-coding BLNK B-cell linker O B cell adaptor containing SH2 domain|B cell linker protein|B-cell activation|B-cell adapter containing a SH2 domain protein|B-cell adapter containing a Src homology 2 domain protein|B-cell linker protein|Src homology 2 domain-containing leukocyte protein of 65 kDa|Src homology [SH2] domain-containing leukocyte protein of 65 kD|cytoplasmic adapter protein 20121230 -9606 29761 USP25 - USP21 HGNC:12624|MIM:604736|Ensembl:ENSG00000155313|HPRD:05296|Vega:OTTHUMG00000074343 21 21q11.2 ubiquitin specific peptidase 25 protein-coding USP25 ubiquitin specific peptidase 25 O USP on chromosome 21|deubiquitinating enzyme 25|ubiquitin carboxyl-terminal hydrolase 25|ubiquitin specific protease 25|ubiquitin thioesterase 25|ubiquitin thiolesterase 25|ubiquitin-specific processing protease 25|ubiquitin-specific-processing protease 25 20121230 -9606 29763 PACSIN3 - SDPIII HGNC:8572|MIM:606513|Ensembl:ENSG00000165912|HPRD:05937|Vega:OTTHUMG00000166870 11 11p12-p11.12 protein kinase C and casein kinase substrate in neurons 3 protein-coding PACSIN3 protein kinase C and casein kinase substrate in neurons 3 O SH3 domain-containing protein 6511|protein kinase C and casein kinase substrate in neurons protein 3|syndapin III 20121230 -9606 29764 DDU - - HGNC:2733|MIM:125630 19 19p dermo-distortive urticaria unknown DDU dermo-distortive urticaria O - 20110215 -9606 29765 TMOD4 RP11-68I18.7 SK-TMOD HGNC:11874|MIM:605834|Ensembl:ENSG00000163157|HPRD:16164|Vega:OTTHUMG00000012350 1 1q12 tropomodulin 4 (muscle) protein-coding TMOD4 tropomodulin 4 (muscle) O actin-capping protein|skeletal muscle tropomodulin|tropomodulin-4 20121230 -9606 29766 TMOD3 - UTMOD HGNC:11873|MIM:605112|Ensembl:ENSG00000138594|HPRD:10389|Vega:OTTHUMG00000131803 15 15q21.1-q21.2 tropomodulin 3 (ubiquitous) protein-coding TMOD3 tropomodulin 3 (ubiquitous) O tropomodulin-3|ubiquitous tropomodulin 20121230 -9606 29767 TMOD2 - N-TMOD|NTMOD HGNC:11872|MIM:602928|Ensembl:ENSG00000128872|HPRD:04237|Vega:OTTHUMG00000131805 15 15q21.2 tropomodulin 2 (neuronal) protein-coding TMOD2 tropomodulin 2 (neuronal) O neuronal tropomodulin|tropomodulin-2 20121230 -9606 29768 SDHDP6 - - HGNC:10689 1 1p36.11 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 6 pseudo SDHDP6 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 6 O - 20121230 -9606 29769 SDHDP5 - - HGNC:10688 2 2q32.1 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 5 pseudo SDHDP5 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 5 O - 20121230 -9606 29770 SDHDP4 - - HGNC:10687 3 3p21.3 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 4 pseudo SDHDP4 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 4 O - 20121230 -9606 29771 SDHDP3 - - HGNC:10686 3 3q26.3 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 3 pseudo SDHDP3 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 3 O - 20121230 -9606 29774 POM121L9P - DKFZP434P211|UNQ2565 HGNC:30080|HPRD:16807 22 22q11.22 POM121 transmembrane nucleoporin-like 9, pseudogene pseudo POM121L9P POM121 transmembrane nucleoporin-like 9, pseudogene O - 20121230 -9606 29775 CARD10 RP5-889J22__B.2 BIMP1|CARMA3 HGNC:16422|MIM:607209|Ensembl:ENSG00000100065|HPRD:06233|Vega:OTTHUMG00000150592 22 22q13.1 caspase recruitment domain family, member 10 protein-coding CARD10 caspase recruitment domain family, member 10 O Bcl10 binding protein and activator of NFKB|CARD-containing MAGUK 3 protein|CARD-containing MAGUK protein 3|carma 3|caspase recruitment domain-containing protein 10 20121230 -9606 29777 ABT1 - hABT1 HGNC:17369|Ensembl:ENSG00000146109|HPRD:16469|Vega:OTTHUMG00000016319 6 6p22.2 activator of basal transcription 1 protein-coding ABT1 activator of basal transcription 1 O TATA-binding protein-binding protein|basal transcriptional activator 20121230 -9606 29778 MAP2K1P1 - - HGNC:6841 8 8p21 mitogen-activated protein kinase kinase 1 pseudogene 1 pseudo MAP2K1P1 mitogen-activated protein kinase kinase 1 pseudogene 1 O - 20121230 -9606 29779 DFNA33 - - HGNC:2805|MIM:614211 13 13q34-qter deafness, autosomal dominant 33 unknown DFNA33 deafness, autosomal dominant 33 O - 20120622 -9606 29780 PARVB AL031595.1 CGI-56 HGNC:14653|MIM:608121|Ensembl:ENSG00000188677|HPRD:16284|Vega:OTTHUMG00000150665 22 22q13.2-q13.33 parvin, beta protein-coding PARVB parvin, beta O affixin|beta-parvin 20121230 -9606 29781 NCAPH2 - CAPH2 HGNC:25071|MIM:611230|Ensembl:ENSG00000025770|Vega:OTTHUMG00000150205 22 22q13.33 non-SMC condensin II complex, subunit H2 protein-coding NCAPH2 non-SMC condensin II complex, subunit H2 O CAP-H2 subunit of the condensin II complex|chromosome-associated protein H2|condensin-2 complex subunit H2|kleisin beta 20121230 -9606 29785 CYP2S1 UNQ891/PRO1906 - HGNC:15654|MIM:611529|Ensembl:ENSG00000167600|HPRD:07481 19 19q13.1 cytochrome P450, family 2, subfamily S, polypeptide 1 protein-coding CYP2S1 cytochrome P450, family 2, subfamily S, polypeptide 1 O CYPIIS1|cytochrome P450 2S1|cytochrome P450 family member predicted from ESTs|cytochrome P450, subfamily IIS, polypeptide 1|cytochrome P540, subfamily IIS, polypeptide 1 20121230 -9606 29789 OLA1 PTD004 DOC45|GBP45|GTBP9|GTPBP9 HGNC:28833|MIM:611175|Ensembl:ENSG00000138430|HPRD:15194|Vega:OTTHUMG00000132335 2 2q31.1 Obg-like ATPase 1 protein-coding OLA1 Obg-like ATPase 1 O DNA damage-regulated overexpressed in cancer 45 protein|GTP-binding protein 9 (putative)|GTP-binding protein PTD004|homologous yeast-44.2 protein|obg-like ATPase 1 20121230 -9606 29796 UQCR10 HSPC119 HSPC051|HSPC151|QCR9|UCCR7.2|UCRC HGNC:30863|MIM:610843|Ensembl:ENSG00000184076|HPRD:13691|Vega:OTTHUMG00000151283 22 22q12.2 ubiquinol-cytochrome c reductase, complex III subunit X protein-coding UQCR10 ubiquinol-cytochrome c reductase, complex III subunit X O cytochrome C1, nonheme 7kDa protein|cytochrome b-c1 complex subunit 9|cytochrome c1 non-heme 7 kDa protein|ubiquinol-cytochrome c reductase complex (7.2 kD)|ubiquinol-cytochrome c reductase complex 7.2 kDa protein|ubiquinol-cytochrome c reductase, complex III subunit X, 7.2kDa 20121230 -9606 29797 POM121L8P - DKFZp434K191 HGNC:35446|HPRD:18779 22 22q11.2 POM121 transmembrane nucleoporin-like 8 pseudogene pseudo POM121L8P POM121 transmembrane nucleoporin-like 8 pseudogene O - 20121230 -9606 29798 C2orf27A - C2orf27|C2orf27B HGNC:25077|Ensembl:ENSG00000197927|HPRD:12811|Vega:OTTHUMG00000131666 2 2q21.2 chromosome 2 open reading frame 27A protein-coding C2orf27A chromosome 2 open reading frame 27A O uncharacterized protein C2orf27 20121230 -9606 29799 YPEL1 FKSG3 - HGNC:12845|MIM:608082|Ensembl:ENSG00000100027|HPRD:16277|Vega:OTTHUMG00000150830 22 22q11.2 yippee-like 1 (Drosophila) protein-coding YPEL1 yippee-like 1 (Drosophila) O DiGeorge syndrome-related protein|protein yippee-like 1 20121230 -9606 29800 ZDHHC1 - C16orf1|HSU90653|ZNF377 HGNC:17916|Ensembl:ENSG00000159714|HPRD:15707|Vega:OTTHUMG00000137522 16 16q22.1 zinc finger, DHHC-type containing 1 protein-coding ZDHHC1 zinc finger, DHHC-type containing 1 O DHHC domain-containing cysteine-rich protein 1|DHHC-1|DHHC-domain-containing cysteine-rich protein|probable palmitoyltransferase ZDHHC1|zinc finger DHHC domain-containing protein 1|zinc finger protein 377|zinc finger, DHHC domain containing 1 20121230 -9606 29801 ZDHHC8 - DHHC8|ZDHHCL1|ZNF378 HGNC:18474|MIM:608784|Ensembl:ENSG00000099904|HPRD:12298|Vega:OTTHUMG00000150499 22 22q11.21 zinc finger, DHHC-type containing 8 protein-coding ZDHHC8 zinc finger, DHHC-type containing 8 O membrane-associated DHHC8 zinc finger protein|probable palmitoyltransferase ZDHHC8|zinc finger protein 378|zinc finger, DHHC domain like containing 1 20121230 -9606 29802 VPREB3 UNQ355/PRO619 8HS20|N27C7-2 HGNC:12710|MIM:605017|Ensembl:ENSG00000128218|HPRD:05426|Vega:OTTHUMG00000150738 22 22q11.23|22q11 pre-B lymphocyte 3 protein-coding VPREB3 pre-B lymphocyte 3 O pre-B lymphocyte gene 3|pre-B lymphocyte protein 3 20121230 -9606 29803 REPIN1 - AP4|RIP60|ZNF464|Zfp464 HGNC:17922|Ensembl:ENSG00000214022|HPRD:17966|Vega:OTTHUMG00000158330 7 7q36.1 replication initiator 1 protein-coding REPIN1 replication initiator 1 O 60 kDa origin-specific DNA-binding protein|60 kDa replication initiation region protein|ATT-binding protein|DHFR oribeta-binding protein RIP60|H_DJ0584D14.12|replication initiation region protein (60kD)|zinc finger protein 464 (RIP60)|zinc finger protein AP4 20121230 -9606 29841 GRHL1 - LBP32|MGR|NH32|TFCP2L2 HGNC:17923|MIM:609786|Ensembl:ENSG00000134317|HPRD:18176|Vega:OTTHUMG00000151704 2 2p25.1 grainyhead-like 1 (Drosophila) protein-coding GRHL1 grainyhead-like 1 (Drosophila) O LBP protein 32|grainyhead-like protein 1 homolog|mammalian grainyhead|transcription factor CP2-like 2|transcription factor LBP-32 20121230 -9606 29842 TFCP2L1 - CRTR1|LBP-9|LBP9 HGNC:17925|MIM:609785|Ensembl:ENSG00000115112|HPRD:18175|Vega:OTTHUMG00000131443 2 2q14 transcription factor CP2-like 1 protein-coding TFCP2L1 transcription factor CP2-like 1 O CP2-related transcriptional repressor 1|CRTR-1|transcription factor CP2-like protein 1|transcription factor LBP-9 20121230 -9606 29843 SENP1 - SuPr-2 HGNC:17927|MIM:612157|Ensembl:ENSG00000079387|HPRD:07153|Vega:OTTHUMG00000169896 12 12q13.1 SUMO1/sentrin specific peptidase 1 protein-coding SENP1 SUMO1/sentrin specific peptidase 1 O SUMO1/sentrin specific protease 1|sentrin-specific protease 1|sentrin/SUMO-specific protease SENP1 20121230 -9606 29844 TFPT - FB1|INO80F|amida HGNC:13630|MIM:609519|Ensembl:ENSG00000105619|HPRD:10266|Vega:OTTHUMG00000065906 19 19q13 TCF3 (E2A) fusion partner (in childhood Leukemia) protein-coding TFPT TCF3 (E2A) fusion partner (in childhood Leukemia) O INO80 complex subunit F|TCF3 fusion partner|amida, partner of the E2A 20121230 -9606 29850 TRPM5 - LTRPC5|MTR1 HGNC:14323|MIM:604600|Ensembl:ENSG00000070985|HPRD:16064|Vega:OTTHUMG00000009896 11 11p15.5 transient receptor potential cation channel, subfamily M, member 5 protein-coding TRPM5 transient receptor potential cation channel, subfamily M, member 5 O LTrpC-5|MLSN1 and TRP-related|MLSN1- and TRP-related gene 1 protein|long transient receptor potential channel 5|transient receptor potential cation channel subfamily M member 5 20121230 -9606 29851 ICOS - AILIM|CD278|CVID1 HGNC:5351|MIM:604558|Ensembl:ENSG00000163600|HPRD:09196|Vega:OTTHUMG00000132880 2 2q33 inducible T-cell co-stimulator protein-coding ICOS inducible T-cell co-stimulator O activation-inducible lymphocyte immunomediatory molecule|inducible T-cell costimulator|inducible costimulator 20121230 -9606 29855 UBN1 - VT|VT4 HGNC:12506|MIM:609771|Ensembl:ENSG00000118900|HPRD:11660|Vega:OTTHUMG00000129531 16 16p13.3 ubinuclein 1 protein-coding UBN1 ubinuclein 1 O HIRA-binding protein|ubinuclein-1|ubiquitously expressed nuclear protein 20121230 -9606 29880 ALG5 HSPC149 RP11-421P11.2|bA421P11.2 HGNC:20266|MIM:604565|Ensembl:ENSG00000120697|HPRD:05193|Vega:OTTHUMG00000016741 13 13q13.3 asparagine-linked glycosylation 5, dolichyl-phosphate beta-glucosyltransferase homolog (S. cerevisiae) protein-coding ALG5 asparagine-linked glycosylation 5, dolichyl-phosphate beta-glucosyltransferase homolog (S. cerevisiae) O Alg5, S. cerevisiae, homolog of|asparagine-linked glycosylation 5 homolog (S. cerevisiae, dolichyl-phosphate beta-glucosyltransferase)|asparagine-linked glycosylation 5 homolog (yeast, dolichyl-phosphate beta-glucosyltransferase)|asparagine-linked glycosylation protein 5 homolog|dolP-glucosyltransferase|dolichyl phosphate glucosyltransferase|dolichyl-phosphate beta-glucosyltransferase 20121230 -9606 29881 NPC1L1 - NPC11L1 HGNC:7898|MIM:608010|Ensembl:ENSG00000015520|HPRD:09725|Vega:OTTHUMG00000023691 7 7p13 NPC1-like 1 protein-coding NPC1L1 NPC1-like 1 O NPC1 (Niemann-Pick disease, type C1, gene)-like 1|Niemann-Pick C1-like protein 1 20121230 -9606 29882 ANAPC2 - APC2|RP11-350O14.5 HGNC:19989|MIM:606946|Ensembl:ENSG00000176248|HPRD:07367|Vega:OTTHUMG00000020983 9 9q34.3 anaphase promoting complex subunit 2 protein-coding ANAPC2 anaphase promoting complex subunit 2 O anaphase-promoting complex subunit 2|cyclosome subunit 2 20121230 -9606 29883 CNOT7 - CAF1|hCAF-1 HGNC:14101|MIM:604913|Ensembl:ENSG00000198791|Vega:OTTHUMG00000096971 8 8p22-p21.3 CCR4-NOT transcription complex, subunit 7 protein-coding CNOT7 CCR4-NOT transcription complex, subunit 7 O BTG1 binding factor 1|BTG1-binding factor 1|CAF-1|CCR4-NOT transcription complex subunit 7|CCR4-associated factor 1|carbon catabolite repressor protein (CCR4)-associative factor 1 20121230 -9606 29886 SNX8 - Mvp1 HGNC:14972|MIM:614905|Ensembl:ENSG00000106266|HPRD:11592|Vega:OTTHUMG00000151512 7 7p22.3 sorting nexin 8 protein-coding SNX8 sorting nexin 8 O sorting nexin-8 20121230 -9606 29887 SNX10 - - HGNC:14974|MIM:614780|Ensembl:ENSG00000086300|HPRD:15409|Vega:OTTHUMG00000023650 7 7p15.2 sorting nexin 10 protein-coding SNX10 sorting nexin 10 O sorting nexin-10 20121230 -9606 29888 STRN4 - ZIN|zinedin HGNC:15721|MIM:614767|Ensembl:ENSG00000090372|HPRD:18125 19 19q13.2 striatin, calmodulin binding protein 4 protein-coding STRN4 striatin, calmodulin binding protein 4 O striatin-4 20121230 -9606 29889 GNL2 - HUMAUANTIG|NGP1|Ngp-1 HGNC:29925|MIM:609365|Ensembl:ENSG00000134697|HPRD:11006|Vega:OTTHUMG00000004322 1 1p34.3 guanine nucleotide binding protein-like 2 (nucleolar) protein-coding GNL2 guanine nucleotide binding protein-like 2 (nucleolar) O autoantigen NGP-1|novel nucleolar guanosine 5'-triphosphate binding protein autoantigen|nucleolar G-protein gene 1|nucleolar GTP-binding protein 2|nucleolar GTPase 20121230 -9606 29890 RBM15B - HUMAGCGB|OTT3 HGNC:24303|MIM:612602|Ensembl:ENSG00000179837|HPRD:11486|Vega:OTTHUMG00000156896 3 3p21.2 RNA binding motif protein 15B protein-coding RBM15B RNA binding motif protein 15B O RNA-binding motif protein 15B|chromosome 3p21.1 gene sequence|huOTT3|one twenty two protein 3|one-twenty two protein 3|putative RNA-binding protein 15B 20121230 -9606 29893 PSMC3IP - GT198|HOP2|HUMGT198A|ODG3|TBPIP HGNC:17928|MIM:608665|Ensembl:ENSG00000131470|HPRD:16362|Vega:OTTHUMG00000180247 17 17q21.2 PSMC3 interacting protein protein-coding PSMC3IP PSMC3 interacting protein O DBD-interacting|TBP-1-interacting protein|homologous-pairing protein 2 homolog|nuclear receptor coactivator GT198|proteasome 26S ATPase subunit 3-interacting protein|tat-binding protein 1-interacting protein 20121230 -9606 29894 CPSF1 - CPSF160|HSU37012|P/cl.18 HGNC:2324|MIM:606027|Ensembl:ENSG00000071894|HPRD:05823|Vega:OTTHUMG00000165170 8 8q24.23 cleavage and polyadenylation specific factor 1, 160kDa protein-coding CPSF1 cleavage and polyadenylation specific factor 1, 160kDa O CPSF 160 kDa subunit|cleavage and polyadenylation specificity factor 160 kDa subunit|cleavage and polyadenylation specificity factor subunit 1|polyadenylation specificity factor 20121230 -9606 29895 MYLPF - HUMMLC2B|MRLC2|MYL11 HGNC:29824|Ensembl:ENSG00000180209|HPRD:13721|Vega:OTTHUMG00000132399 16 16p11.2 myosin light chain, phosphorylatable, fast skeletal muscle protein-coding MYLPF myosin light chain, phosphorylatable, fast skeletal muscle O MLC2B|fast skeletal myosin light chain 2|myosin light chain 2|myosin regulatory light chain 2, skeletal muscle isoform|myosin, light chain 11, regulatory 20121230 -9606 29896 TRA2A - AWMS1|HSU53209 HGNC:16645|MIM:602718|Ensembl:ENSG00000164548|HPRD:04096|Vega:OTTHUMG00000128459 7 7p15.3 transformer 2 alpha homolog (Drosophila) protein-coding TRA2A transformer 2 alpha homolog (Drosophila) O TRA-2 alpha|TRA2-alpha|Tra2alpha|htra-2 alpha|htra-2-alpha|putative MAPK activating protein PM24|transformer-2 alpha|transformer-2 protein homolog A|transformer-2 protein homolog alpha 20121230 -9606 29899 GPSM2 RP11-475E11.4 CMCS|DFNB82|LGN|PINS HGNC:29501|MIM:609245|Ensembl:ENSG00000121957|HPRD:06609|Vega:OTTHUMG00000011730 1 1p13.3 G-protein signaling modulator 2 protein-coding GPSM2 G-protein signaling modulator 2 O G-protein signalling modulator 2 (AGS3-like, C. elegans)|G-protein-signaling modulator 2|mosaic protein LGN 20121230 -9606 29901 SAC3D1 - HSU79266|SHD1 HGNC:30179|Ensembl:ENSG00000168061|HPRD:11558 11 11q13.1 SAC3 domain containing 1 protein-coding SAC3D1 SAC3 domain containing 1 O SAC3 domain-containing protein 1|SAC3 homology domain-containing protein 1|Sac3 homology domain 1 20121230 -9606 29902 FAM216A - C12orf24|HSU79274 HGNC:30180|Ensembl:ENSG00000204856|HPRD:17119|Vega:OTTHUMG00000169526 12 12q24.11 family with sequence similarity 216, member A protein-coding FAM216A family with sequence similarity 216, member A O protein FAM216A|protein predicted by clone 23733|uncharacterized protein C12orf24 20121230 -9606 29903 CCDC106 - HSU79303|ZNF581 HGNC:30181|MIM:613478|Ensembl:ENSG00000173581|HPRD:09995|Vega:OTTHUMG00000180907 19 19q13.42 coiled-coil domain containing 106 protein-coding CCDC106 coiled-coil domain containing 106 O coiled-coil domain-containing protein 106|protein predicted by clone 23882 20121230 -9606 29904 EEF2K - HSU93850|eEF-2K HGNC:24615|MIM:606968|Ensembl:ENSG00000103319|HPRD:07369|Vega:OTTHUMG00000094771 16 16p12.2 eukaryotic elongation factor-2 kinase protein-coding EEF2K eukaryotic elongation factor-2 kinase O calcium/calmodulin-dependent eukaryotic elongation factor 2 kinase|calcium/calmodulin-dependent eukaryotic elongation factor-2 kinase|calmodulin-dependent protein kinase III|eEF-2 kinase|elongation factor-2 kinase|eukaroytic elongation factor 2 kinase|eukaryotic elongation factor 2 kinase 20121230 -9606 29906 ST8SIA5 - SIAT8E|ST8SiaV HGNC:17827|MIM:607162|Ensembl:ENSG00000101638|HPRD:06199|Vega:OTTHUMG00000132643 18 18q21.1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 protein-coding ST8SIA5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 O SIAT8-E|alpha-2,8-sialyltransferase 8E|sialyltransferase 8E (alpha-2, 8-polysialytransferase)|sialytransferase St8Sia V 20121230 -9606 29907 SNX15 hCG_23393 HSAF001435 HGNC:14978|MIM:605964|Ensembl:ENSG00000110025|HPRD:12073|Vega:OTTHUMG00000037387 11 11q12 sorting nexin 15 protein-coding SNX15 sorting nexin 15 O clone iota unknown protein|sorting nexin-15 20121230 -9606 29909 GPR171 - H963 HGNC:30057|Ensembl:ENSG00000174946|HPRD:17071|Vega:OTTHUMG00000159861 3 3q25.1 G protein-coupled receptor 171 protein-coding GPR171 G protein-coupled receptor 171 O F730001G15Rik|G-protein coupled receptor H963|platelet activating receptor homolog|probable G-protein coupled receptor 171 20121230 -9606 29911 HOOK2 - HK2 HGNC:19885|MIM:607824|Ensembl:ENSG00000095066|HPRD:09698|Vega:OTTHUMG00000180372 19 19p13.2 hook homolog 2 (Drosophila) protein-coding HOOK2 hook homolog 2 (Drosophila) O h-hook2|hHK2|protein Hook homolog 2 20121230 -9606 29914 UBIAD1 - RP4-796F18.1|SCCD|TERE1 HGNC:30791|MIM:611632|Ensembl:ENSG00000120942|HPRD:15487|Vega:OTTHUMG00000002075 1 1p36.22 UbiA prenyltransferase domain containing 1 protein-coding UBIAD1 UbiA prenyltransferase domain containing 1 O transitional epithelia response protein|transitional epithelial response protein 1|ubiA prenyltransferase domain-containing protein 1 20121230 -9606 29915 HCFC2 - HCF-2|HCF2 HGNC:24972|MIM:607926|Ensembl:ENSG00000111727|HPRD:06393|Vega:OTTHUMG00000170175 12 12q23.3 host cell factor C2 protein-coding HCFC2 host cell factor C2 O C2 factor|host cell factor 2 20121230 -9606 29916 SNX11 - - HGNC:14975|MIM:614906|Ensembl:ENSG00000002919|HPRD:15410|Vega:OTTHUMG00000178822 17 17q21.32 sorting nexin 11 protein-coding SNX11 sorting nexin 11 O sorting nexin-11 20121230 -9606 29919 C18orf8 - HsT2591|MIC1|Mic-1 HGNC:24326|Ensembl:ENSG00000141452|HPRD:12693|Vega:OTTHUMG00000179239 18 18q11.2 chromosome 18 open reading frame 8 protein-coding C18orf8 chromosome 18 open reading frame 8 O colon cancer associated protein Mic1|colon cancer-associated protein Mic1|uncharacterized protein C18orf8 20121230 -9606 29920 PYCR2 RP4-559A3.4 P5CR2 HGNC:30262|Ensembl:ENSG00000143811|HPRD:17939|Vega:OTTHUMG00000037506 1 1q42.12 pyrroline-5-carboxylate reductase family, member 2 protein-coding PYCR2 pyrroline-5-carboxylate reductase family, member 2 O P5C reductase 2|pyrroline 5-carboxylate reductase isoform|pyrroline-5-carboxylate reductase 2 20121230 -9606 29922 NME7 - MN23H7|nm23-H7 HGNC:20461|MIM:613465|Ensembl:ENSG00000143156|HPRD:11394|Vega:OTTHUMG00000034586 1 1q24 NME/NM23 family member 7 protein-coding NME7 NME/NM23 family member 7 O NDK 7|NDP kinase 7|non-metastatic cells 7, protein expressed in (nucleoside-diphosphate kinase)|nucleoside diphosphate kinase 7|nucleoside-diphosphate kinase 7 20121230 -9606 29923 HILPDA - C7orf68|HIG-2|HIG2 HGNC:28859|Ensembl:ENSG00000135245|HPRD:17105|Vega:OTTHUMG00000157712 7 7q32.1 hypoxia inducible lipid droplet-associated protein-coding HILPDA hypoxia inducible lipid droplet-associated O hypoxia inducible gene 2|hypoxia-inducible gene 2 protein|hypoxia-inducible lipid droplet-associated protein|hypoxia-inducible protein 2 20121230 -9606 29924 EPN1 - - HGNC:21604|MIM:607262|Ensembl:ENSG00000063245|HPRD:06270|Vega:OTTHUMG00000180911 19 19q13.42 epsin 1 protein-coding EPN1 epsin 1 O EH domain-binding mitotic phosphoprotein|EPS-15-interacting protein 1|epsin-1 20121230 -9606 29925 GMPPB - - HGNC:22932|Ensembl:ENSG00000173540|HPRD:13589|Vega:OTTHUMG00000158151 3 3p21.31 GDP-mannose pyrophosphorylase B protein-coding GMPPB GDP-mannose pyrophosphorylase B O GTP-mannose-1-phosphate guanylyltransferase beta|mannose-1-phosphate guanyltransferase beta|mannose-1-phosphate guanylyltransferase 20121230 -9606 29926 GMPPA - - HGNC:22923|Ensembl:ENSG00000144591|HPRD:13588|Vega:OTTHUMG00000058922 2 2q35 GDP-mannose pyrophosphorylase A protein-coding GMPPA GDP-mannose pyrophosphorylase A O GTP-mannose-1-phosphate guanylyltransferase alpha|mannose-1-phosphate guanyltransferase alpha|mannose-1-phosphate guanylyltransferase (GDP) 20121230 -9606 29927 SEC61A1 - HSEC61|SEC61|SEC61A HGNC:18276|MIM:609213|Ensembl:ENSG00000058262|HPRD:15316|Vega:OTTHUMG00000159624 3 3q21.3 Sec61 alpha 1 subunit (S. cerevisiae) protein-coding SEC61A1 Sec61 alpha 1 subunit (S. cerevisiae) O Sec61 alpha-1|protein transport protein SEC61 alpha subunit|protein transport protein Sec61 subunit alpha|protein transport protein Sec61 subunit alpha isoform 1|sec61 homolog 20121230 -9606 29928 TIMM22 - TEX4|TIM22 HGNC:17317|MIM:607251|Ensembl:ENSG00000177370|HPRD:06262|Vega:OTTHUMG00000180175 17 17p13 translocase of inner mitochondrial membrane 22 homolog (yeast) protein-coding TIMM22 translocase of inner mitochondrial membrane 22 homolog (yeast) O mitochondrial import inner membrane translocase subunit Tim22|putative membrane protein|testis-expressed sequence 4 20121230 -9606 29929 ALG6 My046 CDG1C HGNC:23157|MIM:604566|Ensembl:ENSG00000088035|HPRD:05194|Vega:OTTHUMG00000009140 1 1p31.3 asparagine-linked glycosylation 6, alpha-1,3-glucosyltransferase homolog (S. cerevisiae) protein-coding ALG6 asparagine-linked glycosylation 6, alpha-1,3-glucosyltransferase homolog (S. cerevisiae) O Man(9)GlcNAc(2)-PP-Dol alpha-1,3-glucosyltransferase|asparagine-linked glycosylation 6 homolog (S. cerevisiae, alpha-1,3-glucosyltransferase)|asparagine-linked glycosylation 6 homolog (yeast, alpha-1,3-glucosyltransferase)|asparagine-linked glycosylation protein 6 homolog|dol-P-Glc:Man(9)GlcNAc(2)-PP-Dol alpha-1,3-glucosyltransferase|dolichyl pyrophosphate Man9GlcNAc2 alpha-1,3-glucosyltransferase|dolichyl-P-Glc:Man9GlcNAc2-PP-dolichyl glucosyltransferase|dolichyl-P-Glc:Man9GlcNAc2-PP-dolichylglucosyltransferase 20121230 -9606 29930 PCDHB1 - PCDH-BETA1 HGNC:8680|MIM:606327|Ensembl:ENSG00000171815|HPRD:08397|Vega:OTTHUMG00000129627 5 5q31 protocadherin beta 1 protein-coding PCDHB1 protocadherin beta 1 O PCDH-beta-1|protocadherin beta-1 20121230 -9606 29931 LINC00312 NAG7 ERR-10|ERR10|LOH3CR2A|NAG-7|NCRNA00312 HGNC:6662|MIM:610485|HPRD:17440 3 3p25.3 long intergenic non-protein coding RNA 312 miscRNA LINC00312 long intergenic non-protein coding RNA 312 O - 20121230 -9606 29933 GPR132 - G2A HGNC:17482|MIM:606167|Ensembl:ENSG00000183484|HPRD:06936|Vega:OTTHUMG00000140173 14 14q32.3 G protein-coupled receptor 132 protein-coding GPR132 G protein-coupled receptor 132 O G protein-coupled receptor G2A|G2 accumulation protein|probable G-protein coupled receptor 132 20121230 -9606 29934 SNX12 - - HGNC:14976|MIM:300883|Ensembl:ENSG00000147164|HPRD:06719|Vega:OTTHUMG00000021786 X Xq13.1 sorting nexin 12 protein-coding SNX12 sorting nexin 12 O sorting nexin-12 20121230 -9606 29935 RPA4 RP1-117P19.1 HSU24186 HGNC:30305|MIM:300767|Ensembl:ENSG00000204086|HPRD:06591|Vega:OTTHUMG00000021987 X Xq21.33 replication protein A4, 30kDa protein-coding RPA4 replication protein A4, 30kDa O RF-A protein 4|RP-A p30|replication factor A protein 4|replication protein A 30 kDa subunit|replication protein A complex 34 kd subunit homolog Rpa4|replication protein A4, 34kDa 20121230 -9606 29937 NENF - CIR2|SCIRP10|SPUF HGNC:30384|MIM:611874|Ensembl:ENSG00000117691|HPRD:11603|Vega:OTTHUMG00000036744 1 1q32.3 neudesin neurotrophic factor protein-coding NENF neudesin neurotrophic factor O SCIRP10-related protein|Spinal cord injury related protein 10|cell growth-inhibiting protein 47|cell immortalization-related protein 2|neudesin|neuron-derived neurotrophic factor|secreted protein of unknown function 20121230 -9606 29940 DSE - DSEP|DSEPI|SART-2|SART2 HGNC:21144|MIM:605942|Ensembl:ENSG00000111817|HPRD:05807|Vega:OTTHUMG00000015434 6 6q22 dermatan sulfate epimerase protein-coding DSE dermatan sulfate epimerase O DS epimerase|chondroitin-glucuronate 5-epimerase|dermatan-sulfate epimerase|squamous cell carcinoma antigen recognized by T cells 2|squamous cell carcinoma antigen recognized by T-cells 2 20121230 -9606 29941 PKN3 - RP11-545E17.1 HGNC:17999|MIM:610714|Ensembl:ENSG00000160447|HPRD:17856|Vega:OTTHUMG00000020757 9 9q34.11 protein kinase N3 protein-coding PKN3 protein kinase N3 O protein kinase PKN-beta|protein-kinase C-related kinase 3|serine/threonine-protein kinase N3 20121230 -9606 29942 PURG - PURG-A|PURG-B HGNC:17930|Ensembl:ENSG00000172733|HPRD:17933|Vega:OTTHUMG00000157357 8 8p11 purine-rich element binding protein G protein-coding PURG purine-rich element binding protein G O Pur-gamma|purine-rich element-binding protein gamma 20121230 -9606 29943 PADI1 - HPAD10|PAD1|PDI|PDI1 HGNC:18367|MIM:607934|Ensembl:ENSG00000142623|HPRD:06395|Vega:OTTHUMG00000002294 1 1p36.13 peptidyl arginine deiminase, type I protein-coding PADI1 peptidyl arginine deiminase, type I O hPAD-colony 10|peptidylarginine deiminase I|protein-arginine deiminase type I|protein-arginine deiminase type-1 20121230 -9606 29944 PNMA3 - MA3|MA5 HGNC:18742|MIM:300675|Ensembl:ENSG00000183837|HPRD:06677 X Xq28 paraneoplastic Ma antigen 3 protein-coding PNMA3 paraneoplastic Ma antigen 3 O paraneoplastic antigen Ma3|paraneoplastic cancer-testis-brain antigen 20121230 -9606 29945 ANAPC4 - APC4 HGNC:19990|MIM:606947|Ensembl:ENSG00000053900|HPRD:09505|Vega:OTTHUMG00000097753 4 4p15.2 anaphase promoting complex subunit 4 protein-coding ANAPC4 anaphase promoting complex subunit 4 O anaphase-promoting complex subunit 4|cyclosome subunit 4 20121230 -9606 29946 SERTAD3 - RBT1 HGNC:17931|MIM:612125|Ensembl:ENSG00000167565|HPRD:15327 19 19q13.2 SERTA domain containing 3 protein-coding SERTAD3 SERTA domain containing 3 O RPA-binding trans-activator|SERTA domain-containing protein 3|replication protein-binding trans-activator 20121230 -9606 29947 DNMT3L - - HGNC:2980|MIM:606588|Ensembl:ENSG00000142182|HPRD:09417|Vega:OTTHUMG00000086914 21 21q22.3 DNA (cytosine-5-)-methyltransferase 3-like protein-coding DNMT3L DNA (cytosine-5-)-methyltransferase 3-like O DNA (cytosine-5)-methyltransferase 3-like|cytosine-5-methyltransferase 3-like protein|human cytosine-5-methyltransferase 3-like protein 20121230 -9606 29948 OSGIN1 - BDGI|OKL38 HGNC:30093|MIM:607975|Ensembl:ENSG00000140961|HPRD:06412|Vega:OTTHUMG00000137640 16 16q23.3 oxidative stress induced growth inhibitor 1 protein-coding OSGIN1 oxidative stress induced growth inhibitor 1 O bone marrow stromal cell-derived growth inhibitor|ovary, kidney and liver protein 38|oxidative stress-induced growth inhibitor 1|pregnancy-induced growth inhibitor OKL38 20121230 -9606 29949 IL19 RP11-262N9.2 IL-10C|MDA1|NG.1|ZMDA1 HGNC:5990|MIM:605687|Ensembl:ENSG00000142224|HPRD:05747|Vega:OTTHUMG00000036387 1 1q32.2 interleukin 19 protein-coding IL19 interleukin 19 O interleukin-19|melanoma differentiation associated protein-like protein|melanoma differentiation-associated protein-like protein 20121230 -9606 29950 SERTAD1 - SEI1|TRIP-Br1 HGNC:17932|Ensembl:ENSG00000197019|HPRD:15326 19 19q13.1-q13.2 SERTA domain containing 1 protein-coding SERTAD1 SERTA domain containing 1 O CDK4-binding protein p34SEI|CDK4-binding protein p34SEI1|SEI-1|SERTA domain-containing protein 1|transcriptional regulator interacting with the PHD-bromodomain 1 20121230 -9606 29951 PDZRN4 - LNX4|SAMCAP3L HGNC:30552|MIM:609730|Ensembl:ENSG00000165966|HPRD:15116|Vega:OTTHUMG00000169364 12 12q12 PDZ domain containing ring finger 4 protein-coding PDZRN4 PDZ domain containing ring finger 4 O IMAGE5767589|PDZ domain-containing RING finger protein 4|SEMACAP3-like protein|ligand of Numb protein X 4 20121230 -9606 29952 DPP7 - DPP2|DPPII|QPP HGNC:14892|MIM:610537|Ensembl:ENSG00000176978|HPRD:07634|Vega:OTTHUMG00000020977 9 9q34.3 dipeptidyl-peptidase 7 protein-coding DPP7 dipeptidyl-peptidase 7 O DPP II|carboxytripeptidase|dipeptidyl aminopeptidase II|dipeptidyl arylamidase II|dipeptidyl peptidase 2|dipeptidyl peptidase II|dipeptidyl-peptidase II|quiescent cell proline dipeptidase 20121230 -9606 29953 TRHDE UNQ2507/PRO5995 PAP-II|PGPEP2|TRH-DE HGNC:30748|MIM:606950|Ensembl:ENSG00000072657|HPRD:09506|Vega:OTTHUMG00000169642 12 12q15-q21 thyrotropin-releasing hormone degrading enzyme protein-coding TRHDE thyrotropin-releasing hormone degrading enzyme O TRH-degrading ectoenzyme|TRH-specific aminopeptidase|pyroglutamyl aminopeptidase II|pyroglutamyl-peptidase II|thyroliberinase|thyrotropin-releasing hormone degrading ectoenzyme|thyrotropin-releasing hormone-degrading ectoenzyme 20121230 -9606 29954 POMT2 - LGMD2N|MDDGA2|MDDGB2|MDDGC2 HGNC:19743|MIM:607439|Ensembl:ENSG00000009830|HPRD:09592|Vega:OTTHUMG00000171556 14 14q24 protein-O-mannosyltransferase 2 protein-coding POMT2 protein-O-mannosyltransferase 2 O dolichyl-phosphate-mannose--protein mannosyltransferase 2|protein O-mannosyl-transferase 2 20121230 -9606 29956 CERS2 RP11-316M1.2 L3|LASS2|SP260|TMSG1 HGNC:14076|MIM:606920|Ensembl:ENSG00000143418|HPRD:06080|Vega:OTTHUMG00000035064 1 1q21.3 ceramide synthase 2 protein-coding CERS2 ceramide synthase 2 O LAG1 homolog, ceramide synthase 2|LAG1 longevity assurance 2|longevity assurance (LAG1, S. cerevisiae) homolog 2|tumor metastasis-suppressor gene 1 protein 20121230 -9606 29957 SLC25A24 RP11-356N1.3 APC1|SCAMC-1 HGNC:20662|MIM:608744|Ensembl:ENSG00000085491|HPRD:12290|Vega:OTTHUMG00000011013 1 1p13.3 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 24 protein-coding SLC25A24 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 24 O calcium-binding mitochondrial carrier protein SCaMC-1|calcium-binding transporter|mitochondrial ATP-Mg/Pi carrier protein 1|mitochondrial Ca(2+)-dependent solute carrier protein 1|short calcium-binding mitochondrial carrier 1|small calcium-binding mitochondrial carrier protein 1 20121230 -9606 29958 DMGDH - DMGDHD|ME2GLYDH HGNC:24475|MIM:605849|Ensembl:ENSG00000132837|HPRD:05789|Vega:OTTHUMG00000108159 5 5q14.1 dimethylglycine dehydrogenase protein-coding DMGDH dimethylglycine dehydrogenase O dimethylglycine dehydrogenase, mitochondrial 20121230 -9606 29959 NRBP1 - BCON3|MADM|MUDPNP|NRBP HGNC:7993|MIM:606010|Ensembl:ENSG00000115216|HPRD:05819|Vega:OTTHUMG00000097789 2 2p23 nuclear receptor binding protein 1 protein-coding NRBP1 nuclear receptor binding protein 1 O multiple domain putative nuclear protein|myeloid leukemia factor 1 adaptor molecule|nuclear receptor-binding protein 20121230 -9606 29960 FTSJ2 - FJH1|MRM2 HGNC:16352|MIM:606906|Ensembl:ENSG00000122687|HPRD:06067|Vega:OTTHUMG00000023866 7 7p22 FtsJ RNA methyltransferase homolog 2 (E. coli) protein-coding FTSJ2 FtsJ RNA methyltransferase homolog 2 (E. coli) O FtsJ homolog 2|MRM2 RNA methyltransferase homolog|cell division protein FtsJ|protein ftsJ homolog 2|putative ribosomal RNA methyltransferase 2|rRNA (uridine-2'-O-)-methyltransferase 20121230 -9606 29964 PRICKLE4 RP11-298J23.3 C6orf49|OBTP|OEBT|TOMM6 HGNC:16805|MIM:611389|Ensembl:ENSG00000124593|HPRD:12884|Vega:OTTHUMG00000014685 6 6p21.31 prickle homolog 4 (Drosophila) protein-coding PRICKLE4 prickle homolog 4 (Drosophila) O over-expressed breast tumor protein|overexpressed breast tumor protein|prickle-like protein 4|translocase of outer mitochondrial membrane 6 homolog 20121230 -9606 29965 CDIP1 - C16orf5|CDIP|I1|LITAFL HGNC:13234|MIM:610503|Ensembl:ENSG00000089486|HPRD:12676|Vega:OTTHUMG00000177172 16 16p13.3 cell death-inducing p53 target 1 protein-coding CDIP1 cell death-inducing p53 target 1 O LITAF-like protein|cell death inducing protein|cell death involved p53-target|cell death-inducing protein|transmembrane protein I1 20121230 -9606 29966 STRN3 - SG2NA HGNC:15720|MIM:614766|Ensembl:ENSG00000196792|HPRD:11613|Vega:OTTHUMG00000140201 14 14q13-q21 striatin, calmodulin binding protein 3 protein-coding STRN3 striatin, calmodulin binding protein 3 O cell cycle S/G2 nuclear autoantigen|cell cycle autoantigen SG2NA|nuclear autoantigen|s/G2 antigen|striatin-3 20121230 -9606 29967 LRP12 - ST7 HGNC:31708|Ensembl:ENSG00000147650|HPRD:17447|Vega:OTTHUMG00000164892 8 8q22.2 low density lipoprotein receptor-related protein 12 protein-coding LRP12 low density lipoprotein receptor-related protein 12 O low-density lipoprotein receptor-related protein 12|suppressor of tumorigenicity 7 protein 20121230 -9606 29968 PSAT1 - EPIP|PSA|PSAT HGNC:19129|MIM:610936|Ensembl:ENSG00000135069|HPRD:17918|Vega:OTTHUMG00000020066 9 9q21.2 phosphoserine aminotransferase 1 protein-coding PSAT1 phosphoserine aminotransferase 1 O endometrial progesterone-induced protein|phosphohydroxythreonine aminotransferase|phosphoserine aminotransferase 20121230 -9606 29969 MDFIC - HIC HGNC:28870|MIM:614511|Ensembl:ENSG00000135272|HPRD:17103|Vega:OTTHUMG00000023647 7 7q31.1-q31.2 MyoD family inhibitor domain containing protein-coding MDFIC MyoD family inhibitor domain containing O I-mfa domain-containing protein|myoD family inhibitor domain-containing protein 20121230 -9606 29970 SCHIP1 - SCHIP-1 HGNC:15678|Ensembl:ENSG00000151967|Ensembl:ENSG00000250588|HPRD:15302|Vega:OTTHUMG00000158934|Vega:OTTHUMG00000162426 3 3q25.32-q25.33 schwannomin interacting protein 1 protein-coding SCHIP1 schwannomin interacting protein 1 O schwannomin-interacting protein 1 20121230 -9606 29974 A1CF RP11-564C4.2 ACF|ACF64|ACF65|APOBEC1CF|ASP HGNC:24086|Ensembl:ENSG00000148584|HPRD:10627|Vega:OTTHUMG00000018240 10 10q11.23 APOBEC1 complementation factor protein-coding A1CF APOBEC1 complementation factor O APOBEC-1 stimulating protein|apo-B RNA editing protein|apobec-1 complementation factor (ACF) (ASP) 20121230 -9606 29978 UBQLN2 HRIHFB2157 ALS15|CHAP1|DSK2|N4BP4|PLIC2 HGNC:12509|MIM:300264|Ensembl:ENSG00000188021|HPRD:02224|Vega:OTTHUMG00000021669 X Xp11.21 ubiquilin 2 protein-coding UBQLN2 ubiquilin 2 O Nedd4 binding protein 4|protein linking IAP with cytoskeleton 2|ubiquilin-2|ubiquitin-like product Chap1/Dsk2 20121230 -9606 29979 UBQLN1 - DA41|DSK2|PLIC-1|UBQN|XDRP1 HGNC:12508|MIM:605046|Ensembl:ENSG00000135018|HPRD:05440|Vega:OTTHUMG00000020104 9 9q22|9q21.2-q21.3 ubiquilin 1 protein-coding UBQLN1 ubiquilin 1 O hPLIC-1|protein linking IAP with cytoskeleton 1|ubiquilin-1 20121230 -9606 29980 DONSON - B17|C21orf60|C2TA HGNC:2993|MIM:611428|Ensembl:ENSG00000159147|HPRD:09926|Vega:OTTHUMG00000065904 21 21q22.1 downstream neighbor of SON protein-coding DONSON downstream neighbor of SON O MHC class II transactivator type I|protein downstream neighbor of Son 20121230 -9606 29982 NRBF2 RP11-144G16.2 COPR1|COPR2|NRBF-2 HGNC:19692|Ensembl:ENSG00000148572|HPRD:11401|Vega:OTTHUMG00000018309 10 10q21.3 nuclear receptor binding factor 2 protein-coding NRBF2 nuclear receptor binding factor 2 O comodulator of PPAR and RXR 1|comodulator of PPAR and RXR 2|nuclear receptor binding factor-2|nuclear receptor-binding factor 2 20121230 -9606 29984 RHOD - ARHD|RHOHP1|RHOM|Rho HGNC:670|MIM:605781|Ensembl:ENSG00000173156|HPRD:05776|Vega:OTTHUMG00000167102 11 11q14.3 ras homolog family member D protein-coding RHOD ras homolog family member D O Rho-related protein HP1|ras homolog D|ras homolog gene family, member A|ras homolog gene family, member D|rho-related GTP-binding protein RhoD 20121230 -9606 29985 SLC39A3 - ZIP3 HGNC:17128|MIM:612168|Ensembl:ENSG00000141873|HPRD:15386|Vega:OTTHUMG00000180440 19 19p13.3 solute carrier family 39 (zinc transporter), member 3 protein-coding SLC39A3 solute carrier family 39 (zinc transporter), member 3 O ZIP-3|solute carrier family 39 member 3|zinc transporter ZIP3|zrt- and Irt-like protein 3 20121230 -9606 29986 SLC39A2 - 6A1|ETI-1|ZIP-2|ZIP2 HGNC:17127|MIM:612166|Ensembl:ENSG00000165794|HPRD:15385|Vega:OTTHUMG00000029616 14 14q11.2 solute carrier family 39 (zinc transporter), member 2 protein-coding SLC39A2 solute carrier family 39 (zinc transporter), member 2 O Zrt- and Irt-like protein 2|solute carrier family 39 member 2|zinc transporter ZIP2|zinc uptake transporter 2 20121230 -9606 29988 SLC2A8 RP11-356B19.7 GLUT8|GLUTX1 HGNC:13812|MIM:605245|Ensembl:ENSG00000136856|HPRD:05580|Vega:OTTHUMG00000020702 9 9q33.3 solute carrier family 2 (facilitated glucose transporter), member 8 protein-coding SLC2A8 solute carrier family 2 (facilitated glucose transporter), member 8 O glucose transporter type 8|glucose transporter type X1|solute carrier family 2, facilitated glucose transporter member 8 20121230 -9606 29989 OBP2B UNQ653/PRO1283 hOBPIIb HGNC:23381|MIM:604606|Ensembl:ENSG00000171102|HPRD:05209|Vega:OTTHUMG00000020860 9 9q34 odorant binding protein 2B protein-coding OBP2B odorant binding protein 2B O OBPIIb|odorant-binding protein 2b|odorant-binding protein IIb 20121230 -9606 29990 PILRB hCG_2024112 FDFACT1|FDFACT2 HGNC:18297|MIM:605342 7 7q22.1 paired immunoglobin-like type 2 receptor beta protein-coding PILRB paired immunoglobin-like type 2 receptor beta O activating receptor PILR-beta|activating receptor PILRbeta|cell surface receptor FDFACT|cell surface receptor FDFACT1|cell surface receptor FDFACT2|paired immunoglobin-like receptor beta|paired immunoglobulin-like receptor beta|paired immunoglobulin-like type 2 receptor beta 20121230 -9606 29991 OBP2A RP11-426A6.3 OBP|OBP2C|OBPIIa|hOBPIIa HGNC:23380|MIM:164320|Ensembl:ENSG00000122136|HPRD:01253|Vega:OTTHUMG00000020909 9 9q34 odorant binding protein 2A protein-coding OBP2A odorant binding protein 2A O odorant-binding protein 2a|odorant-binding protein IIa|putative odorant-binding protein 2c 20121230 -9606 29992 PILRA - FDF03 HGNC:20396|MIM:605341|Ensembl:ENSG00000085514|HPRD:05631|Vega:OTTHUMG00000155248 7 7q22.1 paired immunoglobin-like type 2 receptor alpha protein-coding PILRA paired immunoglobin-like type 2 receptor alpha O cell surface receptor FDF03|inhibitory receptor PILR-alpha|paired immunoglobulin-like type 2 receptor alpha 20121230 -9606 29993 PACSIN1 RP11-375E1__A.1 SDPI HGNC:8570|MIM:606512|Ensembl:ENSG00000124507|HPRD:05936|Vega:OTTHUMG00000014547 6 6p21.3 protein kinase C and casein kinase substrate in neurons 1 protein-coding PACSIN1 protein kinase C and casein kinase substrate in neurons 1 O protein kinase C and casein kinase substrate in neurons protein 1|syndapin I 20121230 -9606 29994 BAZ2B - WALp4 HGNC:963|MIM:605683|Ensembl:ENSG00000123636|HPRD:09295|Vega:OTTHUMG00000132027 2 2q24.2 bromodomain adjacent to zinc finger domain, 2B protein-coding BAZ2B bromodomain adjacent to zinc finger domain, 2B O bromodomain adjacent to zinc finger domain protein 2B|hWALp4 20121230 -9606 29995 LMCD1 - - HGNC:6633|MIM:604859|Ensembl:ENSG00000071282|HPRD:06891|Vega:OTTHUMG00000154971 3 3p26-p24 LIM and cysteine-rich domains 1 protein-coding LMCD1 LIM and cysteine-rich domains 1 O LIM and cysteine-rich domains protein 1|dyxin 20121230 -9606 29997 GLTSCR2 - PICT-1|PICT1 HGNC:4333|MIM:605691|Ensembl:ENSG00000105373|HPRD:16142 19 19q13.3 glioma tumor suppressor candidate region gene 2 protein-coding GLTSCR2 glioma tumor suppressor candidate region gene 2 O glioma tumor suppressor candidate region gene 2 protein|p60|protein interacting with carboxyl terminus 1 20121230 -9606 29998 GLTSCR1 - - HGNC:4332|MIM:605690|Ensembl:ENSG00000063169|HPRD:09296 19 19q13.3 glioma tumor suppressor candidate region gene 1 protein-coding GLTSCR1 glioma tumor suppressor candidate region gene 1 O glioma tumor suppressor candidate region gene 1 protein 20121230 -9606 29999 FSCN3 - - HGNC:3961|Ensembl:ENSG00000106328|HPRD:17020|Vega:OTTHUMG00000022935 7 7q31.3 fascin homolog 3, actin-bundling protein, testicular (Strongylocentrotus purpuratus) protein-coding FSCN3 fascin homolog 3, actin-bundling protein, testicular (Strongylocentrotus purpuratus) O fascin-3|testis fascin 20121230 -9606 30000 TNPO2 - IPO3|KPNB2B|TRN2 HGNC:19998|MIM:603002|Ensembl:ENSG00000105576|Vega:OTTHUMG00000180333 19 19p13.2 transportin 2 protein-coding TNPO2 transportin 2 O importin 3|karyopherin beta 2b, transportin|karyopherin beta-2b|transportin 2 (importin 3, karyopherin beta 2b)|transportin-2 20121230 -9606 30001 ERO1L UNQ434/PRO865 ERO1-alpha|ERO1A HGNC:13280|Ensembl:ENSG00000197930|HPRD:13278|Vega:OTTHUMG00000140301 14 14q22.1 ERO1-like (S. cerevisiae) protein-coding ERO1L ERO1-like (S. cerevisiae) O ERO1-L|ERO1-L-alpha|ERO1-like protein alpha|endoplasmic oxidoreductin-1-like protein|oxidoreductin-1-L-alpha 20121230 -9606 30008 EFEMP2 UNQ200/PRO226 ARCL1B|FBLN4|MBP1|UPH1 HGNC:3219|MIM:604633|Ensembl:ENSG00000172638|HPRD:05221|Vega:OTTHUMG00000166664 11 11q13.1 EGF containing fibulin-like extracellular matrix protein 2 protein-coding EFEMP2 EGF containing fibulin-like extracellular matrix protein 2 O EGF-containing fibulin-like extracellular matrix protein 2|FIBL-4|fibulin 4|fibulin-4|mutant p53 binding protein 1 20121230 -9606 30009 TBX21 - T-PET|T-bet|TBET|TBLYM HGNC:11599|MIM:604895|Ensembl:ENSG00000073861|HPRD:05355|Vega:OTTHUMG00000178287 17 17q21.32 T-box 21 protein-coding TBX21 T-box 21 O T-box expressed in T cells|T-box protein 21|T-box transcription factor TBX21|T-cell-specific T-box transcription factor T-bet|transcription factor TBLYM 20121230 -9606 30010 NXPH1 Nbla00697 NPH1 HGNC:20693|MIM:604639|Ensembl:ENSG00000122584|HPRD:06867|Vega:OTTHUMG00000151941 7 7p22 neurexophilin 1 protein-coding NXPH1 neurexophilin 1 O neurexophilin-1 20121230 -9606 30011 SH3KBP1 RP11-345L8.1 CD2BP3|CIN85|GIG10|HSB-1|HSB1|MIG18 HGNC:13867|MIM:300374|Ensembl:ENSG00000147010|HPRD:02301|Vega:OTTHUMG00000021227 X Xp22.1-p21.3 SH3-domain kinase binding protein 1 protein-coding SH3KBP1 SH3-domain kinase binding protein 1 O CD2-binding protein 3|SH3 domain-containing kinase-binding protein 1|Src family kinase-binding protein 1|c-Cbl-interacting protein|cbl-interacting protein of 85 kDa|human Src family kinase-binding protein 1|migration-inducing gene 18|src-related kinase binding protein-1 20121230 -9606 30012 TLX3 - HOX11L2|RNX HGNC:13532|MIM:604640|Ensembl:ENSG00000164438|HPRD:06868|Vega:OTTHUMG00000163207 5 5q35.1 T-cell leukemia homeobox 3 protein-coding TLX3 T-cell leukemia homeobox 3 O T-cell leukemia homeobox protein 3|T-cell leukemia, homeobox 3|homeo box 11-like 2|homeobox protein Hox-11L2 20121230 -9606 30014 SPANXA1 - CT11.1|NAP-X|SPAN-Xa|SPAN-Xb|SPANX HGNC:11218|MIM:300305|Ensembl:ENSG00000198021|HPRD:02252|Vega:OTTHUMG00000022564 X Xq27.1 sperm protein associated with the nucleus, X-linked, family member A1 protein-coding SPANXA1 sperm protein associated with the nucleus, X-linked, family member A1 O SPAN-X|SPANX family member A|SPANX family, member A1|SPANX-A|cancer/testis antigen 11.1|cancer/testis antigen family 11, member 1|nuclear-associated protein SPAN-Xa|sperm protein associated with the nucleus on the X chromosome A|sperm protein associated with the nucleus, X chromosome, family member A1 20121230 -9606 30061 SLC40A1 MSTP079 FPN1|HFE4|IREG1|MST079|MTP1|SLC11A3 HGNC:10909|MIM:604653|Ensembl:ENSG00000138449|HPRD:05229|Vega:OTTHUMG00000132662 2 2q32 solute carrier family 40 (iron-regulated transporter), member 1 protein-coding SLC40A1 solute carrier family 40 (iron-regulated transporter), member 1 O iron regulated gene 1|putative ferroportin 1 variant IIIB|solute carrier family 11 (proton-coupled divalent metal ion transporters), member 3|solute carrier family 40 member 1 20121230 -9606 30062 RAX - MCOP3|RX HGNC:18662|MIM:601881|Ensembl:ENSG00000134438|HPRD:03530|Vega:OTTHUMG00000132757 18 18q21.32 retina and anterior neural fold homeobox protein-coding RAX retina and anterior neural fold homeobox O retina and anterior neural fold homeobox protein|retinal homeobox protein Rx 20121230 -9606 30811 HUNK - - HGNC:13326|MIM:606532|Ensembl:ENSG00000142149|HPRD:09410|Vega:OTTHUMG00000085019 21 21q22.1 hormonally up-regulated Neu-associated kinase protein-coding HUNK hormonally up-regulated Neu-associated kinase O B19|hormonally up-regulated neu tumor-associated kinase|hormonally upregulated Neu-associated kinase|hormonally upregulated neu tumor-associated kinase|serine/threonine protein kinase MAK-V|serine/threonine-protein kinase MAK-V 20121230 -9606 30812 SOX8 - - HGNC:11203|MIM:605923|Ensembl:ENSG00000005513|HPRD:16175|Vega:OTTHUMG00000122101 16 16p13.3 SRY (sex determining region Y)-box 8 protein-coding SOX8 SRY (sex determining region Y)-box 8 O transcription factor SOX-8 20121230 -9606 30813 VSX1 RP5-1025A1.1 CAASDS|KTCN|KTCN1|PPCD|PPD|RINX HGNC:12723|MIM:605020|Ensembl:ENSG00000100987|HPRD:09232|Vega:OTTHUMG00000032111 20 20p11.21 visual system homeobox 1 protein-coding VSX1 visual system homeobox 1 O homeodomain protein RINX|retinal inner nuclear layer homeobox protein|transcription factor VSX1 20121230 -9606 30814 PLA2G2E - GIIE sPLA2|sPLA2-IIE HGNC:13414|Ensembl:ENSG00000188784|HPRD:07143|Vega:OTTHUMG00000002702 1 1p36.13 phospholipase A2, group IIE protein-coding PLA2G2E phospholipase A2, group IIE O group IIE secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase 2E 20121230 -9606 30815 ST6GALNAC6 UNQ708/PRO1359 RP11-203J24.3|SIAT7F|ST6GALNACVI HGNC:23364|MIM:610135|Ensembl:ENSG00000160408|HPRD:18111|Vega:OTTHUMG00000020718 9 9q34.11 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 protein-coding ST6GALNAC6 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 O CMP-NeuAC:(beta)-N-acetylgalactosaminide (alpha)2,6-sialyltransferase member VI|SIAT7-F|ST6GalNAc VI|alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6|galNAc alpha-2,6-sialyltransferase VI|hST6GalNAc VI|sialyltransferase 7F|sialytransferase 7 ((alpha-N-acetylneuraminyl 2,3-betagalactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialytransferase) F 20121230 -9606 30816 ERVW-1 - ENV|ENVW|ERVWE1|HERV-7q|HERV-W-ENV|HERV7Q|HERVW|HERVWENV HGNC:13525|MIM:604659|Ensembl:ENSG00000242950|HPRD:05231|Vega:OTTHUMG00000131249 7 7q21.2 endogenous retrovirus group W, member 1 protein-coding ERVW-1 endogenous retrovirus group W, member 1 O HERV-7q envelope protein|HERV-W Env glycoprotein|HERV-W envelope protein|HERV-W_7q21.2 provirus ancestral Env polyprotein|HERV-W{7q21.1} provirus ancestral Env polyprotein|HERV-tryptophan envelope protein|endogenous retroviral family W, env(C7), member 1|endogenous retrovirus group W member 1|env-W|envelope glycoprotein|envelope polyprotein gPr73|envelope protein|enverin|human endogenous retrovirus W envC7-1 envelope protein|syncytin A|syncytin-1 20121230 -9606 30817 EMR2 - CD312 HGNC:3337|MIM:606100|Ensembl:ENSG00000127507|HPRD:07308 19 19p13.1 egf-like module containing, mucin-like, hormone receptor-like 2 protein-coding EMR2 egf-like module containing, mucin-like, hormone receptor-like 2 O EGF-like module-containing mucin-like hormone receptor-like 2 20121230 -9606 30818 KCNIP3 - CSEN|DREAM|KCHIP3 HGNC:15523|MIM:604662|Ensembl:ENSG00000115041|HPRD:05232|Vega:OTTHUMG00000130392 2 2q21.1 Kv channel interacting protein 3, calsenilin protein-coding KCNIP3 Kv channel interacting protein 3, calsenilin O A-type potassium channel modulatory protein 3|DRE-antagonist modulator|calsenilin|calsenilin, presenilin-binding protein, EF hand transcription factor|kv channel-interacting protein 3|potassium channel interacting protein 3 20121230 -9606 30819 KCNIP2 - KCHIP2 HGNC:15522|MIM:604661|Ensembl:ENSG00000120049|HPRD:06880|Vega:OTTHUMG00000018937 10 10q24 Kv channel interacting protein 2 protein-coding KCNIP2 Kv channel interacting protein 2 O A-type potassium channel modulatory protein 2|Kv channel-interacting protein 2|cardiac voltage-gated potassium channel modulatory subunit|potassium channel-interacting protein 2 20121230 -9606 30820 KCNIP1 - KCHIP1|VABP HGNC:15521|MIM:604660|Ensembl:ENSG00000182132|HPRD:06879|Vega:OTTHUMG00000130442 5 5q35.1 Kv channel interacting protein 1 protein-coding KCNIP1 Kv channel interacting protein 1 O A-type potassium channel modulatory protein 1|Kv channel-interacting protein 1|potassium channel interacting protein 1|potassium channel-interacting protein 1|vesicle APC-binding protein 20121230 -9606 30827 CXXC1 - 2410002I16Rik|5830420C16Rik|CFP1|CGBP|HsT2645|PCCX1|PHF18|SPP1|ZCGPC1|hCGBP HGNC:24343|MIM:609150|Ensembl:ENSG00000154832|HPRD:10852|Vega:OTTHUMG00000132670 18 18q12 CXXC finger protein 1 protein-coding CXXC1 CXXC finger protein 1 O CXXC finger 1 (PHD domain)|CXXC-type zinc finger protein 1|CpG binding protein|DNA-binding protein with PHD finger and CXXC domain|PHD finger and CXXC domain-containing protein 1|cpG-binding protein|zinc finger, CpG binding-type containing 1 20121230 -9606 30829 IBD3 - - HGNC:13863|MIM:604519 6 6p inflammatory bowel disease 3 unknown IBD3 inflammatory bowel disease 3 O - 20120622 -9606 30832 ZNF354C - KID3 HGNC:16736|Ensembl:ENSG00000177932|HPRD:15785|Vega:OTTHUMG00000130888 5 5q35 zinc finger protein 354C protein-coding ZNF354C zinc finger protein 354C O KRAB-zinc finger protein synten|kidney, ischemia, and developmentally-regulated protein 3 20121230 -9606 30833 NT5C - DNT|DNT1|P5N2|PN-I|PN-II|UMPH2|cdN|dNT-1 HGNC:17144|MIM:191720|Ensembl:ENSG00000125458|HPRD:11833|Vega:OTTHUMG00000179346 17 17q25.1 5', 3'-nucleotidase, cytosolic protein-coding NT5C 5', 3'-nucleotidase, cytosolic O 5' nucleotidase, deoxy (pyrimidine), cytosolic type C|5'(3')-deoxyribonucleotidase, cytosolic type|cytosolic 5',3'-pyrimidine nucleotidase|deoxy-5'-nucleotidase 1|uridine 5'-monophosphate phosphohydrolase 2|uridine 5-prime monophosphate hydrolase 2 20121230 -9606 30834 ZNRD1 DAAP-65D20.6 HTEX-6|Rpa12|TEX6|hZR14|tctex-6 HGNC:13182|MIM:607525|Ensembl:ENSG00000066379|HPRD:09601|Vega:OTTHUMG00000031149 6 6p21.3 zinc ribbon domain containing 1 protein-coding ZNRD1 zinc ribbon domain containing 1 O DNA-directed RNA polymerase I subunit RPA12|RNA polymerase I small specific subunit Rpa12|transcription-associated zinc ribbon protein|zinc ribbon domain-containing protein 1 20121230 -9606 30835 CD209 - CDSIGN|CLEC4L|DC-SIGN|DC-SIGN1 HGNC:1641|MIM:604672|Ensembl:ENSG00000090659|HPRD:05241 19 19p13 CD209 molecule protein-coding CD209 CD209 molecule O C-type lectin domain family 4 member L|C-type lectin domain family 4, member L|CD209 antigen|HIV gpl20-binding protein|dendritic cell-specific ICAM-3-grabbing non-integrin 1|dendritic cell-specific intracellular adhesion molecules (ICAM)-3 grabbing non-integrin 20121230 -9606 30836 DNTTIP2 - ERBP|FCF2|HSU15552|LPTS-RP2|TdIF2 HGNC:24013|MIM:611199|Ensembl:ENSG00000067334|HPRD:09994|Vega:OTTHUMG00000010268 1 1p22.1 deoxynucleotidyltransferase, terminal, interacting protein 2 protein-coding DNTTIP2 deoxynucleotidyltransferase, terminal, interacting protein 2 O LPTS-interacting protein 2|acidic 82 kDa protein mRNA|deoxynucleotidyltransferase terminal-interacting protein 2|estrogen receptor binding protein|tdT-interacting factor 2 20121230 -9606 30837 SOCS7 - NAP4|NCKAP4 HGNC:29846|MIM:608788|Ensembl:ENSG00000174111|HPRD:12299|Vega:OTTHUMG00000178095 17 17q12 suppressor of cytokine signaling 7 protein-coding SOCS7 suppressor of cytokine signaling 7 O NAP-4|NCK-associated protein 4|Nck, Ash and phospholipase C binding protein|SOCS-7|nck, Ash and phospholipase C gamma-binding protein 20121230 -9606 30844 EHD4 FKSG7 PAST4 HGNC:3245|MIM:605892|Ensembl:ENSG00000103966|HPRD:10435|Vega:OTTHUMG00000130370 15 15q11.1 EH-domain containing 4 protein-coding EHD4 EH-domain containing 4 O EH domain containing 4|EH domain-containing protein 4|PAST homolog 4|hepatocellular carcinoma-associated protein 10/11|hepatocellular carcinoma-associated protein HCA11|ortholog of rat pincher 20121230 -9606 30845 EHD3 - PAST3 HGNC:3244|MIM:605891|Ensembl:ENSG00000013016|HPRD:16170|Vega:OTTHUMG00000099365 2 2p21 EH-domain containing 3 protein-coding EHD3 EH-domain containing 3 O EH domain containing 3|EH domain-containing protein 3|PAST homolog 3 20121230 -9606 30846 EHD2 - PAST2 HGNC:3243|MIM:605890|Ensembl:ENSG00000024422|HPRD:10434 19 19q13.3 EH-domain containing 2 protein-coding EHD2 EH-domain containing 2 O EH domain containing 2|EH domain-containing protein 2|PAST homolog 2 20121230 -9606 30847 CECR9 - - HGNC:1847 22 - cat eye syndrome chromosome region, candidate 9 (non-protein coding) unknown CECR9 cat eye syndrome chromosome region, candidate 9 (non-protein coding) O - 20121021 -9606 30848 CTAG2 - CAMEL|CT2|CT6.2|CT6.2a|CT6.2b|ESO2|LAGE-1|LAGE2B HGNC:2492|MIM:300396|Ensembl:ENSG00000126890|HPRD:02318|Vega:OTTHUMG00000024239 X Xq28 cancer/testis antigen 2 protein-coding CTAG2 cancer/testis antigen 2 O CTL-recognized antigen on melanoma|LAGE-1a protein|autoimmunogenic cancer/testis antigen NY-ESO-2|cancer/testis antigen 6.2|cancer/testis antigen family 6, member 2a|cancer/testis antigen family 6, member 2b|l antigen family member 1 20121230 -9606 30849 PIK3R4 - VPS15|p150 HGNC:8982|MIM:602610|Ensembl:ENSG00000196455|HPRD:04010|Vega:OTTHUMG00000159645 3 3q22.1 phosphoinositide-3-kinase, regulatory subunit 4 protein-coding PIK3R4 phosphoinositide-3-kinase, regulatory subunit 4 O PI3-kinase p150 subunit|PI3-kinase regulatory subunit 4|phosphatidylinositol 3-kinase-associated p150|phosphoinositide 3-kinase adaptor protein|phosphoinositide 3-kinase regulatory subunit 4|phosphoinositide-3-kinase, regulatory subunit 4, p150 20121230 -9606 30850 CDR2L - HUMPPA HGNC:29999|Ensembl:ENSG00000109089|HPRD:11041|Vega:OTTHUMG00000150435 17 17q25.1 cerebellar degeneration-related protein 2-like protein-coding CDR2L cerebellar degeneration-related protein 2-like O paraneoplastic 62 kDa antigen|paraneoplastic antigen 20121230 -9606 30851 TAX1BP3 - TIP-1 HGNC:30684|Ensembl:ENSG00000213977|HPRD:18160|Vega:OTTHUMG00000090701 17 17p13 Tax1 (human T-cell leukemia virus type I) binding protein 3 protein-coding TAX1BP3 Tax1 (human T-cell leukemia virus type I) binding protein 3 O Tax interaction protein 1|glutaminase-interacting protein 3|tax-interacting protein 1|tax1-binding protein 3 20121230 -9606 30968 STOML2 HSPC108 SLP-2 HGNC:14559|MIM:608292|Ensembl:ENSG00000165283|HPRD:16310|Vega:OTTHUMG00000019851 9 9p13.1 stomatin (EPB72)-like 2 protein-coding STOML2 stomatin (EPB72)-like 2 O EPB72-like protein 2|stomatin-like 2|stomatin-like protein 2 20121230 -9606 43847 KLK14 - KLK-L6 HGNC:6362|MIM:606135|Ensembl:ENSG00000129437|HPRD:05844|Vega:OTTHUMG00000143721 19 19q13.3-q13.4 kallikrein-related peptidase 14 protein-coding KLK14 kallikrein-related peptidase 14 O hK14|kallikrein 14|kallikrein-14|kallikrein-like protein 6 20121230 -9606 43849 KLK12 UNQ669/PRO1303 KLK-L5|KLKL5 HGNC:6360|MIM:605539|Ensembl:ENSG00000186474|HPRD:05705|Vega:OTTHUMG00000165806 19 19q13.33 kallikrein-related peptidase 12 protein-coding KLK12 kallikrein-related peptidase 12 O kallikrein 12|kallikrein-12|kallikrein-like protein 5 20121230 -9606 49854 ZNF295 - ZBTB21 HGNC:13083|Ensembl:ENSG00000173276|HPRD:10328|Vega:OTTHUMG00000086789 21 21q22.3 zinc finger protein 295 protein-coding ZNF295 zinc finger protein 295 O zinc finger and BTB domain-containing protein 21 20121230 -9606 49855 SCAPER MSTP063 ZNF291|Zfp291 HGNC:13081|MIM:611611|Ensembl:ENSG00000140386|HPRD:11704|Vega:OTTHUMG00000172655 15 15q24 S-phase cyclin A-associated protein in the ER protein-coding SCAPER S-phase cyclin A-associated protein in the ER O S phase cyclin A-associated protein in the ER|S phase cyclin A-associated protein in the endoplasmic reticulum|zinc finger protein 291 20121230 -9606 49856 WRAP73 RP11-46F15.4 WDR8 HGNC:12759|MIM:606040|Ensembl:ENSG00000116213|HPRD:06918|Vega:OTTHUMG00000000612 1 1p36.3 WD repeat containing, antisense to TP73 protein-coding WRAP73 WD repeat containing, antisense to TP73 O WD repeat domain 8|WD repeat-containing protein WRAP73|WD repeat-containing protein antisense to TP73 20121230 -9606 49860 CRNN - C1orf10|DRC1|PDRC1|SEP53 HGNC:1230|MIM:611312|Ensembl:ENSG00000143536|HPRD:12720|Vega:OTTHUMG00000012383 1 1q21 cornulin protein-coding CRNN cornulin O 53 kDa putative calcium-binding protein|53 kDa squamous epithelial-induced stress protein|58 kDa heat shock protein|squamous epithelial heat shock protein 53|tumor-related protein 20121230 -9606 49861 CLDN20 - - HGNC:2042|Ensembl:ENSG00000171217|HPRD:13067|Vega:OTTHUMG00000015882 6 6q25 claudin 20 protein-coding CLDN20 claudin 20 O claudin-20 20121230 -9606 50484 RRM2B - MTDPS8A|MTDPS8B|P53R2 HGNC:17296|MIM:604712|Ensembl:ENSG00000048392|HPRD:05276|Vega:OTTHUMG00000164776 8 8q23.1 ribonucleotide reductase M2 B (TP53 inducible) protein-coding RRM2B ribonucleotide reductase M2 B (TP53 inducible) O TP53-inducible ribonucleotide reductase M2 B|p53-inducible ribonucleotide reductase small subunit 2 homolog|p53-inducible ribonucleotide reductase small subunit 2 short form beta|p53-inducible ribonucleotide reductase small subunit 2-like protein|ribonucleoside-diphosphate reductase subunit M2 B 20121230 -9606 50485 SMARCAL1 - HARP|HHARP HGNC:11102|MIM:606622|Ensembl:ENSG00000138375|HPRD:05969|Vega:OTTHUMG00000133055 2 2q35 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a-like 1 protein-coding SMARCAL1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a-like 1 O ATP-driven annealing helicase|HepA-related protein|SMARCA-like protein 1|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A-like protein 1|sucrose nonfermenting protein 2-like 1 20121230 -9606 50486 G0S2 - RP1-28O10.2 HGNC:30229|MIM:614447|Ensembl:ENSG00000123689|HPRD:09968|Vega:OTTHUMG00000036479 1 1q32.2 G0/G1switch 2 protein-coding G0S2 G0/G1switch 2 O G0/G1 switch protein 2|G0/G1 switch regulatory protein 2 20121230 -9606 50487 PLA2G3 - GIII-SPLA2|SPLA2III HGNC:17934|MIM:611651|Ensembl:ENSG00000100078|HPRD:07144|Vega:OTTHUMG00000151255 22 22q12.2 phospholipase A2, group III protein-coding PLA2G3 phospholipase A2, group III O GIII sPLA2|group 3 secretory phospholipase A2|group III secreted phospholipase A2|group III secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase 3|phosphatidylcholine 2-acylhydrolase GIII|sPLA2-III 20121230 -9606 50488 MINK1 - B55|MAP4K6|MINK|YSK2|ZC3|hMINK|hMINKbeta HGNC:17565|MIM:609426|Ensembl:ENSG00000141503|HPRD:11366|Vega:OTTHUMG00000177932 17 17p13.2 misshapen-like kinase 1 protein-coding MINK1 misshapen-like kinase 1 O GCK family kinase MINK|MAPK/ERK kinase kinase kinase 6|MEK kinase kinase 6|MEKKK 6|misshapen/NIK-related kinase|mitogen-activated protein kinase kinase kinase kinase 6|serine/threonine protein kinase 20121230 -9606 50489 CD207 - CLEC4K HGNC:17935|MIM:604862|Ensembl:ENSG00000116031|HPRD:07278|Vega:OTTHUMG00000153176 2 2p13 CD207 molecule, langerin protein-coding CD207 CD207 molecule, langerin O C-type lectin domain family 4 member K|C-type lectin domain family 4, member K|CD207 antigen, langerin|Langerhans cell specific c-type lectin 20121230 -9606 50506 DUOX2 - LNOX2|NOXEF2|P138-TOX|TDH6|THOX2 HGNC:13273|MIM:606759|Ensembl:ENSG00000140279|HPRD:05997|Vega:OTTHUMG00000131355 15 15q15.3 dual oxidase 2 protein-coding DUOX2 dual oxidase 2 O NADH/NADPH thyroid oxidase p138-tox|NADPH oxidase/peroxidase DUOX2|NADPH thyroid oxidase 2|dual oxidase-like domains 2|flavoprotein NADPH oxidase|large NOX 2|long NOX 2|nicotinamide adenine dinucleotide phosphate oxidase|p138 thyroid oxidase|thyroid oxidase 2 20121230 -9606 50507 NOX4 - KOX|KOX-1|RENOX HGNC:7891|MIM:605261|Ensembl:ENSG00000086991|HPRD:09243|Vega:OTTHUMG00000167298 11 11q14.2-q21 NADPH oxidase 4 protein-coding NOX4 NADPH oxidase 4 O kidney oxidase-1|kidney superoxide-producing NADPH oxidase|renal NAD(P)H-oxidase 20121230 -9606 50508 NOX3 - GP91-3|MOX-2 HGNC:7890|MIM:607105|Ensembl:ENSG00000074771|HPRD:06165|Vega:OTTHUMG00000015883 6 6q25.3 NADPH oxidase 3 protein-coding NOX3 NADPH oxidase 3 O NADPH oxidase catalytic subunit-like 3|gp91phox homolog 3|mitogenic oxidase 2 20121230 -9606 50509 COL5A3 - - HGNC:14864|MIM:120216|Ensembl:ENSG00000080573|HPRD:00369|Vega:OTTHUMG00000150019 19 19p13.2 collagen, type V, alpha 3 protein-coding COL5A3 collagen, type V, alpha 3 O collagen alpha-3(V) chain|pro-(alpha)3(V) collagen 20121230 -9606 50511 SYCP3 - COR1|SCP3|SPGF4 HGNC:18130|MIM:604759|Ensembl:ENSG00000139351|HPRD:07265|Vega:OTTHUMG00000150132 12 12q synaptonemal complex protein 3 protein-coding SYCP3 synaptonemal complex protein 3 O - 20121230 -9606 50512 PODXL2 UNQ1861/PRO3742 EG|PODLX2 HGNC:17936|Ensembl:ENSG00000114631|HPRD:15154|Vega:OTTHUMG00000159642 3 3q21.3 podocalyxin-like 2 protein-coding PODXL2 podocalyxin-like 2 O endoglycan|podocalyxin-like protein 2 20121230 -9606 50514 DEC1 - CTS9 HGNC:23658|MIM:604767|Ensembl:ENSG00000173077|HPRD:16068|Vega:OTTHUMG00000020549 9 9q32 deleted in esophageal cancer 1 protein-coding DEC1 deleted in esophageal cancer 1 O candidate tumor suppressor CTS9 20121230 -9606 50515 CHST11 - C4ST|C4ST-1|C4ST1|HSA269537 HGNC:17422|MIM:610128|Ensembl:ENSG00000171310|HPRD:13055|Vega:OTTHUMG00000169803 12 12q carbohydrate (chondroitin 4) sulfotransferase 11 protein-coding CHST11 carbohydrate (chondroitin 4) sulfotransferase 11 O C4S-1|IgH/CHST11 fusion|carbohydrate sulfotransferase 11|chondroitin 4-O-sulfotransferase 1 20121230 -9606 50516 PPP1R14BP1 - PLCB3NP HGNC:9058 22 22q12 protein phosphatase 1, regulatory (inhibitor) subunit 14B pseudogene 1 pseudo PPP1R14BP1 protein phosphatase 1, regulatory (inhibitor) subunit 14B pseudogene 1 O - 20121230 -9606 50604 IL20 UNQ852/PRO1801 IL-20|IL10D|ZCYTO10 HGNC:6002|MIM:605619|Ensembl:ENSG00000162891|HPRD:05728|Vega:OTTHUMG00000036456 1 1q32 interleukin 20 protein-coding IL20 interleukin 20 O cytokine Zcyto10|four alpha helix cytokine|interleukin-20 20121230 -9606 50608 IBD4 - - HGNC:5333|MIM:606675 14 14q11-q12 inflammatory bowel disease 4 unknown IBD4 inflammatory bowel disease 4 O - 20120622 -9606 50612 CXCL1P - GRO1P|GROP|MGSAP|SCYB1P HGNC:10641 4 4q13.3 chemokine (C-X-C motif) ligand 1 pseudogene pseudo CXCL1P chemokine (C-X-C motif) ligand 1 pseudogene O - 20121230 -9606 50613 UBQLN3 - TUP-1 HGNC:12510|MIM:605473|Ensembl:ENSG00000175520|HPRD:05684|Vega:OTTHUMG00000066886 11 11p15 ubiquilin 3 protein-coding UBQLN3 ubiquilin 3 O ubiquilin-3 20121230 -9606 50614 GALNT9 - GALNAC-T9 HGNC:4131|MIM:606251|Ensembl:ENSG00000182870|Vega:OTTHUMG00000168256 12 12q24.33 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 9 (GalNAc-T9) protein-coding GALNT9 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 9 (GalNAc-T9) O GalNAc transferase 9|UDP-GalNAc: polypeptide N-acetylgalactosaminyltransferase 9|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 9|polypeptide GalNAc transferase 9|polypeptide N-acetylgalactosaminyltransferase 9|pp-GaNTase 9|protein-UDP acetylgalactosaminyltransferase 9 20121230 -9606 50615 IL21R UNQ3121/PRO10273 CD360|NILR HGNC:6006|MIM:605383|Ensembl:ENSG00000103522|HPRD:05649|Vega:OTTHUMG00000131675 16 16p11 interleukin 21 receptor protein-coding IL21R interleukin 21 receptor O IL-21 receptor|IL-21R|interleukin-21 receptor|novel interleukin receptor 20121230 -9606 50616 IL22 UNQ3099/PRO10096 IL-21|IL-22|IL-D110|IL-TIF|ILTIF|TIFIL-23|TIFa|zcyto18 HGNC:14900|MIM:605330|Ensembl:ENSG00000127318|HPRD:05621|Vega:OTTHUMG00000169119 12 12q15 interleukin 22 protein-coding IL22 interleukin 22 O IL-10-related T-cell-derived inducible factor|IL-10-related T-cell-derived-inducible factor|cytokine Zcyto18|interleukin-22 20121230 -9606 50617 ATP6V0A4 tcag7.346 A4|ATP6N1B|ATP6N2|RDRTA2|RTA1C|RTADR|STV1|VPH1|VPP2 HGNC:866|MIM:605239|Ensembl:ENSG00000105929|HPRD:05576|Vega:OTTHUMG00000157122 7 7q34 ATPase, H+ transporting, lysosomal V0 subunit a4 protein-coding ATP6V0A4 ATPase, H+ transporting, lysosomal V0 subunit a4 O ATPase, H+ transporting, lysosomal (vacuolar proton pump) non-catalytic accessory protein 1B|ATPase, H+ transporting, lysosomal (vacuolar proton pump) non-catalytic accessory protein 2 (38kD)|H(+)-transporting two-sector ATPase, noncatalytic accessory protein 1B|V-ATPase 116 kDa|V-type proton ATPase 116 kDa subunit a|V-type proton ATPase 116 kDa subunit a isoform 4|vacuolar proton pump 116 kDa accessory subunit|vacuolar proton pump, subunit 2|vacuolar proton translocating ATPase 116 kDa subunit a kidney isoform 20121230 -9606 50618 ITSN2 - PRO2015|SH3D1B|SH3P18|SWA|SWAP HGNC:6184|MIM:604464|Ensembl:ENSG00000198399|HPRD:09193|Vega:OTTHUMG00000090818 2 2pter-p25.1 intersectin 2 protein-coding ITSN2 intersectin 2 O SH3 domain-containing protein 1B|SH3P18-like WASP-associated protein|intersectin-2 20121230 -9606 50619 DEF6 RP3-329A5.5 IBP|SLAT|SWAP70L HGNC:2760|MIM:610094|Ensembl:ENSG00000023892|HPRD:10869|Vega:OTTHUMG00000014563 6 6p21.33-p21.1 differentially expressed in FDCP 6 homolog (mouse) protein-coding DEF6 differentially expressed in FDCP 6 homolog (mouse) O DEF-6|IRF4-binding protein|SWAP-70-like adaptor protein of T cells|differentially expressed in FDCP 6 homolog 20121230 -9606 50624 CUZD1 UNQ224/PRO257 ERG-1|UO-44 HGNC:17937|Ensembl:ENSG00000138161|HPRD:06476|Vega:OTTHUMG00000019195 10 10q26.13 CUB and zona pellucida-like domains 1 protein-coding CUZD1 CUB and zona pellucida-like domains 1 O CUB and ZP domain-containing protein 1|CUB and zona pellucida-like domain-containing protein 1|estrogen regulated gene 1|transmembrane protein UO-44 20121230 -9606 50626 CYHR1 - CHRP HGNC:17806|Ensembl:ENSG00000187954|HPRD:13107|Vega:OTTHUMG00000165171 8 8q24.3 cysteine/histidine-rich 1 protein-coding CYHR1 cysteine/histidine-rich 1 O cysteine and histidine rich 1|cysteine and histidine rich protein|cysteine and histidine-rich protein 1 20121230 -9606 50628 GEMIN4 - HC56|HCAP1|HHRF-1|p97 HGNC:15717|MIM:606969|Ensembl:ENSG00000179409|HPRD:07370|Vega:OTTHUMG00000177495 17 17p13 gem (nuclear organelle) associated protein 4 protein-coding GEMIN4 gem (nuclear organelle) associated protein 4 O HCC-associated protein 1|component of gems 4|gem-associated protein 4|gemin-4 20121230 -9606 50631 YBX1P1 - NSEP1P|PSDBPB1 HGNC:8015 14 14q23.3 Y box binding protein 1 pseudogene 1 pseudo YBX1P1 Y box binding protein 1 pseudogene 1 O - 20121230 -9606 50632 CALY RP11-122K13.5 DRD1IP|NSG3 HGNC:17938|MIM:604647|Ensembl:ENSG00000130643|HPRD:06871|Vega:OTTHUMG00000019310 10 10q26.3 calcyon neuron-specific vesicular protein protein-coding CALY calcyon neuron-specific vesicular protein O D1 dopamine receptor-interacting protein|calcyon D1 dopamine receptor-interacting protein (CALCYON)|calcyon protein|dopamine receptor D1 interacting protein|neuron-specific vesicular protein calcyon 20121230 -9606 50636 ANO7 - D-TMPP|DTMPP|IPCA-5|IPCA5|NGEP|PCANAP5|PCANAP5L|TMEM16G HGNC:31677|MIM:605096|Ensembl:ENSG00000146205|HPRD:16090|Vega:OTTHUMG00000151702 2 2q37.3 anoctamin 7 protein-coding ANO7 anoctamin 7 O Dresden-transmembrane protein of the prostate|anoctamin-7|prostate cancer associated protein 5|transmembrane protein 16G 20121230 -9606 50639 MBL3P - COLEC2|MBL HGNC:2221 10 10q22.3 mannose-binding lectin family member 3, pseudogene pseudo MBL3P mannose-binding lectin family member 3, pseudogene O - 20121230 -9606 50640 PNPLA8 BM-043 IPLA2(GAMMA)|IPLA2-2|IPLA2G|iPLA2gamma HGNC:28900|MIM:612123|Ensembl:ENSG00000135241|HPRD:13741|Vega:OTTHUMG00000154870 7 7q31 patatin-like phospholipase domain containing 8 protein-coding PNPLA8 patatin-like phospholipase domain containing 8 O PNPLA-gamma|calcium-independent phospholipase A2-gamma|iPLA2 gamma|iPLA2-gamma|intracellular membrane-associated calcium-independent phospholipase A2 gamma|membrane-associated calcium-independent phospholipase A2 gamma|patatin-like phospholipase domain-containing protein 8 20121230 -9606 50644 MRXS11 - SMRXS HGNC:13865|MIM:300238 X Xq26-q27 mental retardation, X-linked, syndromic 11 unknown MRXS11 mental retardation, X-linked, syndromic 11 O - 20120622 -9606 50648 IGHD@ - IGD1|IGHDY1 HGNC:5481|MIM:146910 14 14q32.33 immunoglobulin heavy diversity cluster other IGHD@ immunoglobulin heavy diversity cluster O - 20120208 -9606 50649 ARHGEF4 - ASEF|ASEF1|GEF4|STM6 HGNC:684|MIM:605216|Ensembl:ENSG00000136002|HPRD:05559|Vega:OTTHUMG00000131657 2 2q22 Rho guanine nucleotide exchange factor (GEF) 4 protein-coding ARHGEF4 Rho guanine nucleotide exchange factor (GEF) 4 O APC-stimulated guanine nucleotide exchange factor 1|rho guanine nucleotide exchange factor 4 20121230 -9606 50650 ARHGEF3 - GEF3|STA3|XPLN HGNC:683|MIM:612115|Ensembl:ENSG00000163947|HPRD:12480|Vega:OTTHUMG00000158857 3 3p14.3 Rho guanine nucleotide exchange factor (GEF) 3 protein-coding ARHGEF3 Rho guanine nucleotide exchange factor (GEF) 3 O 59.8 kDA protein|RhoGEF protein|exchange factor found in platelets and leukemic and neuronal tissues, XPLN|rho guanine nucleotide exchange factor 3 20121230 -9606 50651 SLC45A1 - DNB5 HGNC:17939|MIM:605763|Ensembl:ENSG00000162426|Vega:OTTHUMG00000000503 1 1p36.23 solute carrier family 45, member 1 protein-coding SLC45A1 solute carrier family 45, member 1 O DNb-5|PAST-A|deleted in neuroblastoma 5 protein|proton-associated sugar transporter A 20121230 -9606 50652 PCA3 - DD3|NCRNA00019 HGNC:8637|MIM:604845 9 9q21-q22 prostate cancer antigen 3 (non-protein coding) miscRNA PCA3 prostate cancer antigen 3 (non-protein coding) O - 20121230 -9606 50674 NEUROG3 - Atoh5|Math4B|NGN-3|bHLHa7|ngn3 HGNC:13806|MIM:604882|Ensembl:ENSG00000122859|HPRD:05346|Vega:OTTHUMG00000018391 10 10q21.3 neurogenin 3 protein-coding NEUROG3 neurogenin 3 O class A basic helix-loop-helix protein 7|neurogenin-3|protein atonal homolog 5 20121230 -9606 50700 RDH8 - PRRDH|SDR28C2 HGNC:14423|MIM:608575|Ensembl:ENSG00000080511|HPRD:16350|Vega:OTTHUMG00000180392 19 19p13.2 retinol dehydrogenase 8 (all-trans) protein-coding RDH8 retinol dehydrogenase 8 (all-trans) O photoreceptor outer segment all-trans retinol dehydrogenase|retinol dehydrogenase 8|short chain dehydrogenase/reductase family 28C, member 2 20121230 -9606 50715 EJM2 - EIG7|JME HGNC:3306|MIM:604827 15 15q14 epilepsy, juvenile myoclonic 2 unknown EJM2 epilepsy, juvenile myoclonic 2 O - 20120622 -9606 50717 DCAF8 RP11-574F21.1 H326|WDR42A HGNC:24891|Ensembl:ENSG00000132716|Ensembl:ENSG00000258465|HPRD:18300|Vega:OTTHUMG00000031604|Vega:OTTHUMG00000171815 1 1q22-q23 DDB1 and CUL4 associated factor 8 protein-coding DCAF8 DDB1 and CUL4 associated factor 8 O DDB1- and CUL4-associated factor 8|WD repeat domain 42A|WD repeat-containing protein 42A 20121230 -9606 50801 KCNK4 - K2p4.1|TRAAK|TRAAK1 HGNC:6279|MIM:605720|Ensembl:ENSG00000182450|HPRD:12037|Vega:OTTHUMG00000168006 11 11q13 potassium channel, subfamily K, member 4 protein-coding KCNK4 potassium channel, subfamily K, member 4 O K2P4.1 potassium channel|TWIK-related arachidonic acid-stimulated potassium channel protein|potassium channel subfamily K member 4|two pore K(+) channel KT4.1|two pore K+ channel KT4.1|two pore potassium channel KT4.1 20121230 -9606 50802 IGK@ - IGK HGNC:5715 2 2p12 immunoglobulin kappa locus protein-coding IGK@ immunoglobulin kappa locus O - 20121230 -9606 50804 MYEF2 - HsT18564|MEF-2|MST156|MSTP156 HGNC:17940|Ensembl:ENSG00000104177|HPRD:14794|Vega:OTTHUMG00000172120 15 15q21.1 myelin expression factor 2 protein-coding MYEF2 myelin expression factor 2 O myEF-2|myelin gene expression factor 2 20121230 -9606 50805 IRX4 - IRXA3 HGNC:6129|MIM:606199|Ensembl:ENSG00000113430|HPRD:09369|Vega:OTTHUMG00000090411 5 5p15.3 iroquois homeobox 4 protein-coding IRX4 iroquois homeobox 4 O homeodomain protein IRXA3|iroquois homeobox protein 4|iroquois-class homeodomain protein IRX-4|iroquois-class homeodomain protein IRX-4 variant 1|iroquois-class homeodomain protein IRX-4 variant 2|iroquois-class homeodomain protein IRX-4 variant 3|iroquois-class homeodomain protein IRX-4 variant 4 20121230 -9606 50807 ASAP1 - AMAP1|CENTB4|DDEF1|PAG2|PAP|ZG14P HGNC:2720|MIM:605953|Ensembl:ENSG00000153317|HPRD:05809|Vega:OTTHUMG00000164772 8 8q24.1-q24.2 ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 protein-coding ASAP1 ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 O 130 kDa phosphatidylinositol 4,5-biphosphate-dependent ARF1 GTPase-activating protein|130 kDa phosphatidylinositol 4,5-bisphosphate-dependent ARF1 GTPase-activating protein|ADP-ribosylation factor-directed GTPase-activating protein 1|ARF GTPase-activating protein 1|DEF-1|PIP2-dependent ARF1 GAP|arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 1|centaurin, beta 4|development and differentiation-enhancing factor 1 20121230 -9606 50808 AK3 RP11-6J24.4 AK3L1|AK6|AKL3L|AKL3L1|FIX HGNC:17376|MIM:609290|Ensembl:ENSG00000147853|HPRD:12439|Vega:OTTHUMG00000019472 9 9p24.1 adenylate kinase 3 protein-coding AK3 adenylate kinase 3 O GTP:AMP phosphotransferase, mitochondrial|adenylate kinase 3 alpha-like 1|adenylate kinase 6, adenylate kinase 3 like 1 20121230 -9606 50809 HP1BP3 RP5-930J4.3 HP1-BP74 HGNC:24973|Ensembl:ENSG00000127483|HPRD:11026|Vega:OTTHUMG00000002622 1 1p36.12 heterochromatin protein 1, binding protein 3 protein-coding HP1BP3 heterochromatin protein 1, binding protein 3 O HP1-BP74|heterochromatin protein 1-binding protein 3 20121230 -9606 50810 HDGFRP3 CGI-142 HDGF-2|HDGF2|HRP-3 Ensembl:ENSG00000166503|HPRD:17096|Vega:OTTHUMG00000172685 15 15q25.2 hepatoma-derived growth factor, related protein 3 protein-coding - - - hepatoma-derived growth factor 2|hepatoma-derived growth factor-related protein 3 20121230 -9606 50813 COPS7A - CSN7A HGNC:16758|Ensembl:ENSG00000111652|HPRD:16736|Vega:OTTHUMG00000169182 12 12p13.31 COP9 constitutive photomorphogenic homolog subunit 7A (Arabidopsis) protein-coding COPS7A COP9 constitutive photomorphogenic homolog subunit 7A (Arabidopsis) O COP9 complex subunit 7a|COP9 signalosome complex subunit 7a|JAB1-containing signalosome subunit 7a|SGN7a|dermal papilla-derived protein 10|signalosome subunit 7a 20121230 -9606 50814 NSDHL - H105E3|SDR31E1|XAP104 HGNC:13398|MIM:300275|Ensembl:ENSG00000147383|HPRD:02229|Vega:OTTHUMG00000024185 X Xq28 NAD(P) dependent steroid dehydrogenase-like protein-coding NSDHL NAD(P) dependent steroid dehydrogenase-like O protein H105e3|short chain dehydrogenase/reductase family 31E, member 1|sterol-4-alpha-carboxylate 3-dehydrogenase, decarboxylating 20121230 -9606 50818 DYT10 - EKD1|PKC HGNC:37199|MIM:128200 16 16p11.2-q12.1 dystonia 10 unknown DYT10 dystonia 10 O - 20121209 -9606 50823 HMU - MUHH MIM:146550 - - Hypotrichosis, Marie Unna type unknown - - - - 20121018 -9606 50829 HDPA - - MIM:300221 X Xpter-p22.32 Hodgkin disease, susceptibility, pseudoautosomal unknown - - - - 20120622 -9606 50830 TGCT1 - - HGNC:13466|MIM:300228 X Xq27 testicular germ cell tumor susceptibility 1 unknown TGCT1 testicular germ cell tumor susceptibility 1 O - 20120622 -9606 50831 TAS2R3 - T2R3 HGNC:14910|MIM:604868|Ensembl:ENSG00000127362|HPRD:05335|Vega:OTTHUMG00000157637 7 7q31.3-q32 taste receptor, type 2, member 3 protein-coding TAS2R3 taste receptor, type 2, member 3 O candidate taste receptor T2R3|taste receptor type 2 member 3 20121230 -9606 50832 TAS2R4 - T2R4 HGNC:14911|MIM:604869|Ensembl:ENSG00000127364|HPRD:05336|Vega:OTTHUMG00000157634 7 7q31.3-q32 taste receptor, type 2, member 4 protein-coding TAS2R4 taste receptor, type 2, member 4 O candidate taste receptor T2R4|taste receptor type 2 member 4 20121230 -9606 50833 TAS2R16 - T2R16 HGNC:14921|MIM:604867|Ensembl:ENSG00000128519|HPRD:05334|Vega:OTTHUMG00000157090 7 7q31.1-q31.3|7q31 taste receptor, type 2, member 16 protein-coding TAS2R16 taste receptor, type 2, member 16 O candidate taste receptor T2R16|taste receptor type 2 member 16 20121230 -9606 50834 TAS2R1 - T2R1|TRB7 HGNC:14909|MIM:604796|Ensembl:ENSG00000169777|HPRD:07267|Vega:OTTHUMG00000090500 5 5p15 taste receptor, type 2, member 1 protein-coding TAS2R1 taste receptor, type 2, member 1 O taste receptor family B member 7|taste receptor type 2 member 1|taste receptor, family B, member 7 20121230 -9606 50835 TAS2R9 - T2R9|TRB6 HGNC:14917|MIM:604795|Ensembl:ENSG00000121381|HPRD:07266|Vega:OTTHUMG00000168507 12 12p13 taste receptor, type 2, member 9 protein-coding TAS2R9 taste receptor, type 2, member 9 O taste receptor family B member 6|taste receptor type 2 member 9|taste receptor, family B, member 6 20121230 -9606 50836 TAS2R8 - T2R8|TRB5 HGNC:14915|MIM:604794|Ensembl:ENSG00000121314|HPRD:16072|Vega:OTTHUMG00000168506 12 12p13 taste receptor, type 2, member 8 protein-coding TAS2R8 taste receptor, type 2, member 8 O taste receptor family B member 5|taste receptor type 2 member 8|taste receptor, family B, member 5 20121230 -9606 50837 TAS2R7 - T2R7|TRB4 HGNC:14913|MIM:604793|Ensembl:ENSG00000121377|HPRD:16071|Vega:OTTHUMG00000168505 12 12p13 taste receptor, type 2, member 7 protein-coding TAS2R7 taste receptor, type 2, member 7 O taste receptor family B member 4|taste receptor type 2 member 7|taste receptor, family B, member 4 20121230 -9606 50838 TAS2R13 - T2R13|TRB3 HGNC:14919|MIM:604792|Ensembl:ENSG00000212128|HPRD:11991|Vega:OTTHUMG00000168555 12 12p13 taste receptor, type 2, member 13 protein-coding TAS2R13 taste receptor, type 2, member 13 O taste receptor family B member 3|taste receptor type 2 member 13|taste receptor, family B, member 3 20121230 -9606 50839 TAS2R10 - T2R10|TRB2 HGNC:14918|MIM:604791|Ensembl:ENSG00000121318|HPRD:11990|Vega:OTTHUMG00000168508 12 12p13 taste receptor, type 2, member 10 protein-coding TAS2R10 taste receptor, type 2, member 10 O taste receptor family B member 2|taste receptor type 2 member 10|taste receptor, family B, member 2 20121230 -9606 50840 TAS2R14 - T2R14|TRB1 HGNC:14920|MIM:604790|Ensembl:ENSG00000212127|HPRD:11989|Vega:OTTHUMG00000162720 12 12p13 taste receptor, type 2, member 14 protein-coding TAS2R14 taste receptor, type 2, member 14 O taste receptor family B member 1|taste receptor type 2 member 14|taste receptor, family B, member 1 20121230 -9606 50846 DHH - GDXYM|HHG-3|SRXY7 HGNC:2865|MIM:605423|Ensembl:ENSG00000139549|HPRD:05664|Vega:OTTHUMG00000170408 12 12q13.1 desert hedgehog protein-coding DHH desert hedgehog O desert hedgehog homolog|desert hedgehog protein|mutant desert hedgehog 20121230 -9606 50848 F11R RP11-544M22.2 CD321|JAM|JAM1|JAMA|JCAM|KAT|PAM-1 HGNC:14685|MIM:605721|Ensembl:ENSG00000158769|HPRD:12038|Vega:OTTHUMG00000028602 1 1q21.2-q21.3 F11 receptor protein-coding F11R F11 receptor O junctional adhesion molecule 1|junctional adhesion molecule A|platelet F11 receptor|platelet adhesion molecule 1 20121230 -9606 50852 TRAT1 HSPC062 TCRIM|TRIM HGNC:30698|MIM:604962|Ensembl:ENSG00000163519|HPRD:05392|Vega:OTTHUMG00000159198 3 3q13 T cell receptor associated transmembrane adaptor 1 protein-coding TRAT1 T cell receptor associated transmembrane adaptor 1 O T cell receptor interacting molecule|T-cell receptor interacting molecule|T-cell receptor-associated transmembrane adapter 1|T-cell receptor-interacting molecule|pp29/30 20121230 -9606 50853 VILL - - HGNC:30906|Ensembl:ENSG00000136059|HPRD:18283|Vega:OTTHUMG00000130814 3 3p21.3 villin-like protein-coding VILL villin-like O villin-like protein 20121230 -9606 50854 C6orf48 DAAP-21F2.5 D6S57|G8 HGNC:19078|MIM:605447|Ensembl:ENSG00000204387|HPRD:12015|Vega:OTTHUMG00000031175 6 6p21.3 chromosome 6 open reading frame 48 protein-coding C6orf48 chromosome 6 open reading frame 48 O protein G8 20121230 -9606 50855 PARD6A - PAR-6A|PAR6|PAR6C|PAR6alpha|TAX40|TIP-40 HGNC:15943|MIM:607484|Ensembl:ENSG00000102981|HPRD:06316|Vega:OTTHUMG00000137534 16 16q22.1 par-6 partitioning defective 6 homolog alpha (C. elegans) protein-coding PARD6A par-6 partitioning defective 6 homolog alpha (C. elegans) O PAR-6 alpha|Tax-interacting protein 40|partitioning defective 6 homolog alpha|partitioning defective-6 homolog alpha|partitioning-defective protein 6|tax interaction protein 40 20121230 -9606 50856 CLEC4A HDCGC13P CLECSF6|DCIR|DDB27|LLIR HGNC:13257|MIM:605306|Ensembl:ENSG00000111729|HPRD:05604|Vega:OTTHUMG00000168571 12 12p13 C-type lectin domain family 4, member A protein-coding CLEC4A C-type lectin domain family 4, member A O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 6|C-type lectin DDB27|C-type lectin domain family 4 member A|C-type lectin superfamily member 6|dendritic cell immunoreceptor|lectin-like immunoreceptor 20121230 -9606 50858 TTTY1 - LINC00033|NCRNA00033|TTY1 HGNC:14022 Y Yp11.2 testis-specific transcript, Y-linked 1 (non-protein coding) miscRNA TTTY1 testis-specific transcript, Y-linked 1 (non-protein coding) O - 20121209 -9606 50859 SPOCK3 UNQ409/PRO771 HSAJ1454|TES-3|TICN3 HGNC:13565|MIM:607989|Ensembl:ENSG00000196104|HPRD:12147|Vega:OTTHUMG00000161190 4 4q32.3 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 3 protein-coding SPOCK3 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 3 O testican-3 20121230 -9606 50861 STMN3 - SCLIP HGNC:15926|MIM:608362|Ensembl:ENSG00000197457|HPRD:16324|Vega:OTTHUMG00000032985 20 20q13.3 stathmin-like 3 protein-coding STMN3 stathmin-like 3 O SCG10-like protein|SCG10-like-protein|stathmin-3 20121230 -9606 50862 RNF141 - ZFP26|ZNF230 HGNC:21159|Ensembl:ENSG00000110315|HPRD:11509|Vega:OTTHUMG00000165712 11 11p15.4 ring finger protein 141 protein-coding RNF141 ring finger protein 141 O C3HC4-like zinc finger protein|RING finger protein 141|zinc finger protein 230 20121230 -9606 50863 NTM UNQ297/PRO337 HNT|IGLON2|NTRI HGNC:17941|MIM:607938|Ensembl:ENSG00000182667|HPRD:06398|Vega:OTTHUMG00000066364 11 11q25 neurotrimin protein-coding NTM neurotrimin O IgLON family member 2 20121230 -9606 50865 HEBP1 - HBP|HEBP HGNC:17176|MIM:605826|Ensembl:ENSG00000013583|HPRD:16162|Vega:OTTHUMG00000168771 12 12p13.1 heme binding protein 1 protein-coding HEBP1 heme binding protein 1 O heme-binding protein 1|p22HBP 20121230 -9606 50937 CDON - CDO|CDON1|HPE11|ORCAM HGNC:17104|MIM:608707|Ensembl:ENSG00000064309|HPRD:16372|Vega:OTTHUMG00000165862 11 11q24.2 cell adhesion associated, oncogene regulated protein-coding CDON cell adhesion associated, oncogene regulated O Cdon homolog|cell adhesion molecule-related/down-regulated by oncogenes|surface glycoprotein, Ig superfamily member 20121230 -9606 50939 IMPG2 - IPM200|RP56|SPACRCAN HGNC:18362|MIM:607056|Ensembl:ENSG00000081148|HPRD:06135|Vega:OTTHUMG00000159091 3 3q12.2-q12.3 interphotoreceptor matrix proteoglycan 2 protein-coding IMPG2 interphotoreceptor matrix proteoglycan 2 O IPM 200|interphotoreceptor matrix proteoglycan IPM 200|interphotoreceptor matrix proteoglycan of 200 kDa|sialoprotein associated with cones and rods proteoglycan 20121230 -9606 50940 PDE11A - PPNAD2 HGNC:8773|MIM:604961|Ensembl:ENSG00000128655|HPRD:05391|Vega:OTTHUMG00000154188 2 2q31.2 phosphodiesterase 11A protein-coding PDE11A phosphodiesterase 11A O cAMP and cGMP cyclic nucleotide phosphodiesterase 11A|dual 3',5'-cyclic-AMP and -GMP phosphodiesterase 11A 20121230 -9606 50941 IBD5 - - HGNC:5334|MIM:606348 5 5q31-q33 inflammatory bowel disease 5 unknown IBD5 inflammatory bowel disease 5 O - 20121209 -9606 50942 IBD6 - - HGNC:5335|MIM:606674 19 19p13 inflammatory bowel disease 6 unknown IBD6 inflammatory bowel disease 6 O - 20120622 -9606 50943 FOXP3 JM2 AIID|DIETER|IPEX|PIDX|XPID HGNC:6106|MIM:300292|Ensembl:ENSG00000049768|HPRD:02242|Vega:OTTHUMG00000024135 X Xp11.23 forkhead box P3 protein-coding FOXP3 forkhead box P3 O FOXP3delta7|forkhead box protein P3|immune dysregulation, polyendocrinopathy, enteropathy, X-linked|immunodeficiency, polyendocrinopathy, enteropathy, X-linked|scurfin 20121230 -9606 50944 SHANK1 - SPANK-1|SSTRIP|synamon HGNC:15474|MIM:604999|Ensembl:ENSG00000161681|HPRD:05413|Vega:OTTHUMG00000137380 19 19q13.3 SH3 and multiple ankyrin repeat domains 1 protein-coding SHANK1 SH3 and multiple ankyrin repeat domains 1 O SH3 and multiple ankyrin repeat domains protein 1|SSTR-interacting protein|somatostatin receptor-interacting protein 20121230 -9606 50945 TBX22 RP4-795G23.1 CLPA|CPX|TBXX|dJ795G23.1 HGNC:11600|MIM:300307|Ensembl:ENSG00000122145|HPRD:02253|Vega:OTTHUMG00000021901 X Xq21.1 T-box 22 protein-coding TBX22 T-box 22 O T-box protein 22|T-box transcription factor TBX22 20121230 -9606 50947 BFHD - BHD MIM:142669 4 4q35 Beukes familial hip dysplasia unknown - - - - 20120622 -9606 50948 OHDS - - MIM:143850 18 18q Orthostatic hypotensive disorder of Streeten unknown - - - - 20120622 -9606 50951 MMVP1 - MVP|PMV HGNC:19144|MIM:157700 16 16p12.1-p11.2 myxomatous mitral valve prolapse 1 unknown MMVP1 myxomatous mitral valve prolapse 1 O - 20120622 -9606 50952 HMN7A - DHMNVP MIM:158580 2 2q14 Motor neuronopathy, distal hereditary, type VIIA unknown - - - - 20120622 -9606 50960 MYMY1 - MYMY HGNC:16401|MIM:252350 3 3p26-p24.2 moyamoya disease 1 unknown MYMY1 moyamoya disease 1 O - 20120622 -9606 50963 BRKS - TLH1 MIM:259450 17 17p12 Telopeptide lysyl hydroxylase, bone-specific unknown - - - - 20120622 -9606 50964 SOST UNQ2976/PRO7455/PRO7476 CDD|VBCH HGNC:13771|MIM:605740|Ensembl:ENSG00000167941|HPRD:05762|Vega:OTTHUMG00000180888 17 17q11.2 sclerostin protein-coding SOST sclerostin O - 20121230 -9606 50966 ECA1 - - HGNC:3144|MIM:600131 8 8q24 epilepsy, childhood absence 1 unknown ECA1 epilepsy, childhood absence 1 O - 20120622 -9606 50968 FCMTE1 - BAFME|BAFME1|FAME|FAME1|MEBA HGNC:37158|MIM:601068 8 8q24 familial cortical myoclonic tremor with epilepsy 1 unknown FCMTE1 familial cortical myoclonic tremor with epilepsy 1 O - 20120622 -9606 50970 TSG11 - - MIM:603040 11 11q23 Tumor suppressor gene on chromosome 11 unknown - - - - 20120622 -9606 50971 ENFL2 - - MIM:603204 15 15q24 Epilepsy, nocturnal frontal lobe, type 2 unknown - - - - 20120622 -9606 50975 TCO - - MIM:603386 19 19p13.2 Thyroid carcinoma, nonmedullary, with cell oxyphilia unknown - - - - 20120622 -9606 50976 GRD2 - - MIM:603388 20 20q13.11 Graves disease, susceptibility to, 2 unknown - - - - 20120622 -9606 50979 MHW2 - - MIM:603664 4 4q Mental health wellness 2 unknown - - - - 20120622 -9606 50982 NIDDM3 - - MIM:603694 20 20q12-q13.1 Noninsulin-dependent diabetes mellitus 3 unknown - - - - 20120622 -9606 50986 HYT2 - - MIM:604329 15 15q Hypertension, essential, susceptibility to, 2 unknown - - - - 20120622 -9606 50987 FPEVF - - MIM:604364 22 22q11-q12 Epilepsy, partial, with variable foci unknown - - - - 20120622 -9606 50988 WDM - - MIM:604454 2 2p13 Welander distal myopathy unknown - - - - 20120622 -9606 50989 HMSNO - HMSNP MIM:604484 - - Neuropathy, hereditary motor and sensory, Okinawa type unknown - - - - 20120916 -9606 50992 INLNE - - MIM:604781 19 19p13.2-p13.1 Ichthyosis, nonlamellar and nonerythrodermic, congenital, autosomal recessive unknown - - - - 20120622 -9606 50999 TMED5 RP5-976O13.2 CGI-100|p28 HGNC:24251|Ensembl:ENSG00000117500|HPRD:13028|Vega:OTTHUMG00000010162 1 1pter-q31.3 transmembrane emp24 protein transport domain containing 5 protein-coding TMED5 transmembrane emp24 protein transport domain containing 5 O p24 family protein gamma-2|p24gamma2|transmembrane emp24 domain-containing protein 5 20121230 -9606 51000 SLC35B3 CGI-19 C6orf196|PAPST2 HGNC:21601|MIM:610845|Ensembl:ENSG00000124786|HPRD:11577|Vega:OTTHUMG00000014224 6 6p24.3 solute carrier family 35, member B3 protein-coding SLC35B3 solute carrier family 35, member B3 O 3' phosphoadenosine 5' phosphosulfate transporter 2|3'-phosphoadenosine 5'-phosphosulfate transporter|PAPS transporter 2|adenosine 3'-phospho 5'-phosphosulfate transporter 2 20121230 -9606 51001 MTERFD1 CGI-12 mTERF3 HGNC:24258|Ensembl:ENSG00000156469|HPRD:10823|Vega:OTTHUMG00000164713 8 8q22.1 MTERF domain containing 1 protein-coding MTERFD1 MTERF domain containing 1 O mTERF domain-containing protein 1, mitochondrial|mitochondrial transcription termination factor 3 20121230 -9606 51002 TPRKB CGI-121 - HGNC:24259|MIM:608680|Ensembl:ENSG00000144034|Vega:OTTHUMG00000129815 2 2p24.3-p24.1 TP53RK binding protein protein-coding TPRKB TP53RK binding protein O PRPK (p53-related protein kinase)-binding protein|PRPK-binding protein|TP53RK-binding protein 20121230 -9606 51003 MED31 CGI-125 3110004H13Rik|Soh1 HGNC:24260|Ensembl:ENSG00000108590|HPRD:14382|Vega:OTTHUMG00000102051 17 17p13.1 mediator complex subunit 31 protein-coding MED31 mediator complex subunit 31 O hSOH1|mediator complex subunit SOH1|mediator of RNA polymerase II transcription subunit 31|mediator of RNA polymerase II transcription, subunit 31 homolog 20121230 -9606 51004 COQ6 CGI-10 CGI10|COQ10D6 HGNC:20233|MIM:614647|Ensembl:ENSG00000119723|HPRD:16742|Vega:OTTHUMG00000171260 14 14q24.3 coenzyme Q6 homolog, monooxygenase (S. cerevisiae) protein-coding COQ6 coenzyme Q6 homolog, monooxygenase (S. cerevisiae) O coenzyme Q10 monooxygenase 6|ubiquinone biosynthesis monooxygenase COQ6 20121230 -9606 51005 AMDHD2 CGI-14 - HGNC:24262|Ensembl:ENSG00000162066|HPRD:13034|Vega:OTTHUMG00000128866 16 16p13.3 amidohydrolase domain containing 2 protein-coding AMDHD2 amidohydrolase domain containing 2 O amidohydrolase domain-containing protein 2|glcNAc 6-P deacetylase|putative N-acetylglucosamine-6-phosphate deacetylase 20121230 -9606 51006 SLC35C2 RP11-394O2.1 BA394O2.1|C20orf5|CGI-15|OVCOV1 HGNC:17117|Ensembl:ENSG00000080189|HPRD:15371|Vega:OTTHUMG00000033050 20 20q13.12 solute carrier family 35, member C2 protein-coding SLC35C2 solute carrier family 35, member C2 O ovarian cancer overexpressed 1|ovarian cancer-overexpressed gene 1 protein|solute carrier family 35 member C2 20121230 -9606 51008 ASCC1 CGI-18 ASC1p50|p50 HGNC:24268|MIM:614215|Ensembl:ENSG00000138303|Vega:OTTHUMG00000018434 10 10pter-q25.3 activating signal cointegrator 1 complex subunit 1 protein-coding ASCC1 activating signal cointegrator 1 complex subunit 1 O ASC-1 complex subunit P50|trip4 complex subunit p50 20121230 -9606 51009 DERL2 CGI-101 F-LAN-1|F-LANa|FLANa HGNC:17943|MIM:610304|Ensembl:ENSG00000072849|HPRD:16796|Vega:OTTHUMG00000102040 17 17p13.2 derlin 2 protein-coding DERL2 derlin 2 O DERtrin-2|Der1-like domain family, member 2|carcinoma related|degradation in endoplasmic reticulum protein 2|der1-like protein 2|derlin-2 20121230 -9606 51010 EXOSC3 CGI-102 PCH1B|RP11-3J10.8|RRP40|Rrp40p|bA3J10.7|hRrp-40|p10 HGNC:17944|MIM:606489|Ensembl:ENSG00000107371|HPRD:16220|Vega:OTTHUMG00000019932 9 9p11 exosome component 3 protein-coding EXOSC3 exosome component 3 O exosome complex component RRP40|exosome complex exonuclease RRP40|ribosomal RNA-processing protein 40 20121230 -9606 51011 FAHD2A CGI-105 - HGNC:24252|Ensembl:ENSG00000115042|HPRD:13287|Vega:OTTHUMG00000130397 2 2q11.2 fumarylacetoacetate hydrolase domain containing 2A protein-coding FAHD2A fumarylacetoacetate hydrolase domain containing 2A O fumarylacetoacetate hydrolase domain containing 1|fumarylacetoacetate hydrolase domain-containing protein 2A 20121230 -9606 51012 SLMO2 CGI-107 C20orf45|PRELID3B|dJ543J19.5 HGNC:15892|Ensembl:ENSG00000101166|HPRD:12771|Vega:OTTHUMG00000032856 20 20q13.32 slowmo homolog 2 (Drosophila) protein-coding SLMO2 slowmo homolog 2 (Drosophila) O protein slowmo homolog 2 20121230 -9606 51013 EXOSC1 RP11-452K12.9 CGI-108|CSL4|Csl4p|SKI4|Ski4p|hCsl4p|p13 HGNC:17286|MIM:606493|Ensembl:ENSG00000171311|HPRD:16223|Vega:OTTHUMG00000018854 10 10q24 exosome component 1 protein-coding EXOSC1 exosome component 1 O 3'-5' exoribonuclease CSL4 homolog|CSL4 exosomal core protein homolog|exosomal core protein CSL4|exosome complex component CSL4|homolog of yeast exosomal core protein CSL4 20121230 -9606 51014 TMED7 CGI-109 p27 HGNC:24253|Ensembl:ENSG00000134970|HPRD:13029|Vega:OTTHUMG00000132013 5 5q22.3 transmembrane emp24 protein transport domain containing 7 protein-coding TMED7 transmembrane emp24 protein transport domain containing 7 O p24 family protein gamma-3|p24gamma3|transmembrane emp24 domain-containing protein 7 20121230 -9606 51015 ISOC1 CGI-111 - HGNC:24254|Ensembl:ENSG00000066583|Vega:OTTHUMG00000163144 5 5q22.1-q33.3 isochorismatase domain containing 1 protein-coding ISOC1 isochorismatase domain containing 1 O isochorismatase domain-containing protein 1 20121230 -9606 51016 EMC9 CGI-112 C14orf122|FAM158A HGNC:20273|Ensembl:ENSG00000100908|HPRD:16596|Vega:OTTHUMG00000028796 14 14q11.2 ER membrane protein complex subunit 9 protein-coding EMC9 ER membrane protein complex subunit 9 O UPF0172 protein FAM158A|family with sequence similarity 158, member A 20121230 -9606 51018 RRP15 CGI-115 KIAA0507 HGNC:24255|MIM:611193|Ensembl:ENSG00000067533|HPRD:10822|Vega:OTTHUMG00000039494 1 1q41 ribosomal RNA processing 15 homolog (S. cerevisiae) protein-coding RRP15 ribosomal RNA processing 15 homolog (S. cerevisiae) O RRP15-like protein|ribosomal RNA-processing protein 15 20121230 -9606 51019 CCDC53 AD-016 CGI-116 HGNC:24256|Ensembl:ENSG00000120860|HPRD:13031|Vega:OTTHUMG00000168187 12 12q23.2 coiled-coil domain containing 53 protein-coding CCDC53 coiled-coil domain containing 53 O WASH complex subunit CCDC53|coiled-coil domain-containing protein 53 20121230 -9606 51020 HDDC2 CGI-130 C6orf74|NS5ATP2|dJ167O5.2 HGNC:21078|Ensembl:ENSG00000111906|HPRD:12897|Vega:OTTHUMG00000015506 6 6q13-q24.3 HD domain containing 2 protein-coding HDDC2 HD domain containing 2 O HCV NS5A-transactivated protein 2|HD domain-containing protein 2|hepatitis C virus NS5A-transactivated protein 2 20121230 -9606 51021 MRPS16 CGI-132 COXPD2|MRP-S16|RPMS16 HGNC:14048|MIM:609204|Ensembl:ENSG00000182180|HPRD:14778|Vega:OTTHUMG00000018454 10 10q22.1 mitochondrial ribosomal protein S16 protein-coding MRPS16 mitochondrial ribosomal protein S16 O 28S ribosomal protein S16, mitochondrial|S16mt 20121230 -9606 51022 GLRX2 RP11-101E13.4 CGI-133|GRX2 HGNC:16065|MIM:606820|Ensembl:ENSG00000023572|HPRD:12112|Vega:OTTHUMG00000035677 1 1q31.2 glutaredoxin 2 protein-coding GLRX2 glutaredoxin 2 O bA101E13.1 (GRX2 glutaredoxin (thioltransferase) 2) 20121230 -9606 51023 MRPS18C CGI-134 MRP-S18-1|MRPS18-1 HGNC:16633|MIM:611983|Ensembl:ENSG00000163319|HPRD:14782|Vega:OTTHUMG00000130430 4 4q21.23 mitochondrial ribosomal protein S18C protein-coding MRPS18C mitochondrial ribosomal protein S18C O 28S ribosomal protein S18-1, mitochondrial|28S ribosomal protein S18c, mitochondrial|MRP-S18-c|S18mt-c|mitochondrial ribosomal protein S18-1|mrps18-c 20121230 -9606 51024 FIS1 CGI-135 TTC11 HGNC:21689|MIM:609003|Ensembl:ENSG00000214253|HPRD:12352|Vega:OTTHUMG00000157106 7 7q22.1 fission 1 (mitochondrial outer membrane) homolog (S. cerevisiae) protein-coding FIS1 fission 1 (mitochondrial outer membrane) homolog (S. cerevisiae) O FIS1 homolog|H_NH0132A01.6|TPR repeat protein 11|hFis1|mitochondrial fission 1 protein|tetratricopeptide repeat domain 11|tetratricopeptide repeat protein 11 20121230 -9606 51025 PAM16 CGI-136 MAGMAS|TIM16|TIMM16 HGNC:29679|MIM:614336|Ensembl:ENSG00000217930|HPRD:14798|Vega:OTTHUMG00000129466 16 16p13.3 presequence translocase-associated motor 16 homolog (S. cerevisiae) protein-coding PAM16 presequence translocase-associated motor 16 homolog (S. cerevisiae) O magmas-like protein|mitochondria associated protein involved in granulocyte macrophage colony stimulating factor signal transduction|mitochondria-associated granulocyte macrophage CSF-signaling molecule|mitochondrial import inner membrane translocase subunit TIM16 20121230 -9606 51026 GOLT1B CGI-141 GOT1|YMR292W HGNC:20175|Ensembl:ENSG00000111711|HPRD:13035|Vega:OTTHUMG00000169133 12 12p12.1 golgi transport 1B protein-coding GOLT1B golgi transport 1B O hGOT1a|putative NF-kappa-B-activating protein 470|vesicle transport protein GOT1B 20121230 -9606 51027 BOLA1 CGI-143 - HGNC:24263|MIM:613181|Ensembl:ENSG00000178096|HPRD:13036|Vega:OTTHUMG00000012087 1 1q21 bolA homolog 1 (E. coli) protein-coding BOLA1 bolA homolog 1 (E. coli) O bolA-like 1|bolA-like protein 1 20121230 -9606 51028 VPS36 CGI-145 C13orf9|EAP45 HGNC:20312|MIM:610903|Ensembl:ENSG00000136100|HPRD:12620|Vega:OTTHUMG00000016964 13 13q14.3 vacuolar protein sorting 36 homolog (S. cerevisiae) protein-coding VPS36 vacuolar protein sorting 36 homolog (S. cerevisiae) O ELL-associated protein of 45 kDa|ELL-associated protein, 45 kDa|ESCRT-II complex subunit VPS36|vacuolar protein-sorting-associated protein 36 20121230 -9606 51029 DESI2 CGI-146 C1orf121|DESI|DESI1|DeSI-2|FAM152A|PNAS-4|PPPDE1 HGNC:24264|MIM:614638|Ensembl:ENSG00000121644|HPRD:15153|Vega:OTTHUMG00000040398 1 1q44 desumoylating isopeptidase 2 protein-coding DESI2 desumoylating isopeptidase 2 O PPPDE peptidase domain containing 1|PPPDE peptidase domain-containing protein 1|desumoylating isopeptidase 1|family with sequence similarity 152, member A 20121230 -9606 51030 TVP23B CGI-148 FAM18B|FAM18B1|NPD008|YDR084C HGNC:20399|Ensembl:ENSG00000171928|HPRD:13293|Vega:OTTHUMG00000059052 17 17p11.2 trans-golgi network vesicle protein 23 homolog B (S. cerevisiae) protein-coding TVP23B trans-golgi network vesicle protein 23 homolog B (S. cerevisiae) O family with sequence similarity 18, member B|family with sequence similarity 18, member B1|protein FAM18B1 20121230 -9606 51031 GLOD4 CGI-150 C17orf25|HC71 HGNC:14111|Ensembl:ENSG00000167699|HPRD:12678|Vega:OTTHUMG00000177497 17 17p13.3 glyoxalase domain containing 4 protein-coding GLOD4 glyoxalase domain containing 4 O glyoxalase domain-containing protein 4 20121230 -9606 51032 CELA2B RP11-265F14.2 ELA2B HGNC:29995|MIM:609444|Ensembl:ENSG00000215704|HPRD:06496|Vega:OTTHUMG00000002259 1 1p36.21 chymotrypsin-like elastase family, member 2B protein-coding CELA2B chymotrypsin-like elastase family, member 2B O chymotrypsin-like elastase family member 2B|elastase 2B|elastase-2B|pancreatic elastase IIB (ELA2B) 20121230 -9606 51035 UBXN1 - 2B28|SAKS1|UBXD10 HGNC:18402|Ensembl:ENSG00000162191|HPRD:11266|Vega:OTTHUMG00000167580 11 11q12.3 UBX domain protein 1 protein-coding UBXN1 UBX domain protein 1 O SAPK substrate protein 1|UBA/UBX 33.3 kDa protein|UBX domain-containing protein 1 20121230 -9606 51042 ZNF593 RP11-96L14.6 ZT86 HGNC:30943|Ensembl:ENSG00000142684|HPRD:15866|Vega:OTTHUMG00000007538 1 1p36.11 zinc finger protein 593 protein-coding ZNF593 zinc finger protein 593 O zinc finger protein T86 20121230 -9606 51043 ZBTB7B RP11-307C12.9 THPOK|ZBTB15|ZFP-67|ZFP67|ZNF857B|c-KROX|hcKROX HGNC:18668|MIM:607646|Ensembl:ENSG00000160685|HPRD:09625|Vega:OTTHUMG00000037414 1 1q21.3 zinc finger and BTB domain containing 7B protein-coding ZBTB7B zinc finger and BTB domain containing 7B O T-helper-inducing POZ/Krueppel-like factor|krueppel-related zinc finger protein cKrox|zinc finger and BTB domain containing 15|zinc finger and BTB domain-containing protein 7B|zinc finger protein 67 homolog|zinc finger protein 857B|zinc finger protein Th-POK 20121230 -9606 51046 ST8SIA3 - SIAT8C|ST8SiaIII HGNC:14269|MIM:609478|Ensembl:ENSG00000177511|HPRD:15343|Vega:OTTHUMG00000180101 18 18q21.31 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 3 protein-coding ST8SIA3 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 3 O SIAT8-C|alpha-2,8-sialyltransferase 8C|alpha-2,8-sialyltransferase III|sia-alpha-2,3-Gal-beta-1,4-GlcNAc-R:alpha 2,8-sialyltransferase|sialyltransferase 8C (alpha2,3Galbeta1,4GlcNAcalpha 2,8-sialyltransferase)|sialytransferase St8Sia III 20121230 -9606 51050 PI15 - CRISP8|P24TI|P25TI HGNC:8946|MIM:607076|Ensembl:ENSG00000137558|HPRD:06150|Vega:OTTHUMG00000164528 8 8q21.11 peptidase inhibitor 15 protein-coding PI15 peptidase inhibitor 15 O 25 kDa trypsin inhibitor|CRISP-8|PI-15|cysteine-rich secretory protein 8|protease inhibitor 15|sugarCrisp 20121230 -9606 51052 PRLH - PRH|PRRP HGNC:17945|MIM:602663|Ensembl:ENSG00000071677|HPRD:04046|Vega:OTTHUMG00000133296 2 2q37.3 prolactin releasing hormone protein-coding PRLH prolactin releasing hormone O preproprolactin-releasing peptide|prolactin-releasing hormone|prolactin-releasing peptide 20121230 -9606 51053 GMNN - Gem HGNC:17493|MIM:602842|Ensembl:ENSG00000112312|HPRD:06783|Vega:OTTHUMG00000014363 6 6p22.3 geminin, DNA replication inhibitor protein-coding GMNN geminin, DNA replication inhibitor O geminin 20121230 -9606 51054 PLEKHA8P1 HAW1053 PLEKHA9 HGNC:30222|HPRD:15143 12 12q pleckstrin homology domain containing, family A member 8 pseudogene 1 pseudo PLEKHA8P1 pleckstrin homology domain containing, family A member 8 pseudogene 1 O - 20121230 -9606 51056 LAP3 - LAP|LAPEP|PEPS HGNC:18449|MIM:170250|Ensembl:ENSG00000002549|HPRD:07516|Vega:OTTHUMG00000048214 4 4p15.32 leucine aminopeptidase 3 protein-coding LAP3 leucine aminopeptidase 3 O LAP-3|cytosol aminopeptidase|leucyl aminopeptidase|peptidase S|proline aminopeptidase|prolyl aminopeptidase 20121230 -9606 51057 WDPCP - BBS15|C2orf86|FRITZ|FRTZ HGNC:28027|MIM:613580|Ensembl:ENSG00000143951|HPRD:14228|Vega:OTTHUMG00000152566 2 2p15 WD repeat containing planar cell polarity effector protein-coding WDPCP WD repeat containing planar cell polarity effector O Bardet-Biedl syndrome 15 protein|WD repeat-containing and planar cell polarity effector protein fritz homolog|WD repeat-containing protein C2orf86 20121230 -9606 51058 ZNF691 RP11-342M1.5 Zfp691 HGNC:28028|Ensembl:ENSG00000164011|HPRD:14229|Vega:OTTHUMG00000007623 1 1p34.2 zinc finger protein 691 protein-coding ZNF691 zinc finger protein 691 O - 20121230 -9606 51059 FAM135B - C8ORFK32 HGNC:28029|Ensembl:ENSG00000147724|HPRD:14230|Vega:OTTHUMG00000149864 8 8q24.23 family with sequence similarity 135, member B protein-coding FAM135B family with sequence similarity 135, member B O protein FAM135B 20121230 -9606 51060 TXNDC12 UNQ713/PRO1376 AG1|AGR1|ERP16|ERP18|ERP19|PDIA16|TLP19|hAG-1|hTLP19 HGNC:24626|MIM:609448|Ensembl:ENSG00000117862|HPRD:11633|Vega:OTTHUMG00000008629 1 1p32.3 thioredoxin domain containing 12 (endoplasmic reticulum) protein-coding TXNDC12 thioredoxin domain containing 12 (endoplasmic reticulum) O ER protein 18|ER protein 19|anterior gradient homolog 1|endoplasmic reticulum protein ERp19|endoplasmic reticulum resident protein 18|endoplasmic reticulum resident protein 19|endoplasmic reticulum thioredoxin superfamily member, 18 kDa|protein disulfide isomerase family A, member 16|thioredoxin domain-containing protein 12|thioredoxin-like protein p19 20121230 -9606 51061 TXNDC11 - EFP1 HGNC:28030|Ensembl:ENSG00000153066|HPRD:07125|Vega:OTTHUMG00000177467 16 16p13.13 thioredoxin domain containing 11 protein-coding TXNDC11 thioredoxin domain containing 11 O EF-hand binding protein 1|EF-hand-binding protein 1|thioredoxin domain-containing protein 11 20121230 -9606 51062 ATL1 - AD-FSP|FSP1|GBP3|HSN1D|SPG3|SPG3A|atlastin1 HGNC:11231|MIM:606439|Ensembl:ENSG00000198513|HPRD:05918|Vega:OTTHUMG00000140297 14 14q22.1 atlastin GTPase 1 protein-coding ATL1 atlastin GTPase 1 O GBP-3|GTP-binding protein 3|atlastin-1|brain-specific GTP-binding protein|guanine nucleotide-binding protein 3|guanylate-binding protein 3|hGBP3|spastic paraplegia 3 protein A 20121230 -9606 51063 CALHM2 - FAM26B HGNC:23493|MIM:612235|Ensembl:ENSG00000138172|HPRD:13301|Vega:OTTHUMG00000018990 10 10q24.33 calcium homeostasis modulator 2 protein-coding CALHM2 calcium homeostasis modulator 2 O calcium homeostasis modulator protein 2|family with sequence similarity 26, member B 20121230 -9606 51065 RPS27L - - HGNC:18476|MIM:612055|Ensembl:ENSG00000185088|HPRD:18003|Vega:OTTHUMG00000155301 15 15q22.2 ribosomal protein S27-like protein-coding RPS27L ribosomal protein S27-like O 40S ribosomal protein S27-like 20121230 -9606 51066 SSUH2 FLS485 C3orf32|SSU-2|fls485 HGNC:24809|Ensembl:ENSG00000125046|HPRD:11267|Vega:OTTHUMG00000122075 3 3p26.1 ssu-2 homolog (C. elegans) protein-coding SSUH2 ssu-2 homolog (C. elegans) O uncharacterized protein C3orf32 20121230 -9606 51067 YARS2 CGI-04 MLASA2|MT-TYRRS|TYRRS HGNC:24249|MIM:610957|Ensembl:ENSG00000139131|HPRD:13025|Vega:OTTHUMG00000169454 12 12p11.21 tyrosyl-tRNA synthetase 2, mitochondrial protein-coding YARS2 tyrosyl-tRNA synthetase 2, mitochondrial O tyrosine tRNA ligase 2, mitochondrial|tyrosine--tRNA ligase, mitochondrial 20121230 -9606 51068 NMD3 CGI-07 - HGNC:24250|MIM:611021|Ensembl:ENSG00000169251|HPRD:13026|Vega:OTTHUMG00000159063 3 3q26.1 NMD3 homolog (S. cerevisiae) protein-coding NMD3 NMD3 homolog (S. cerevisiae) O 60S ribosomal export protein NMD3|hNMD3 20121230 -9606 51069 MRPL2 CGI-22 MRP-L14|RPML14 HGNC:14056|MIM:611822|Ensembl:ENSG00000112651|HPRD:14745|Vega:OTTHUMG00000014719 6 6p21.3 mitochondrial ribosomal protein L2 protein-coding MRPL2 mitochondrial ribosomal protein L2 O 39S ribosomal protein L2, mitochondrial|L2mt|MRP-L2 20121230 -9606 51070 NOSIP CGI-25 - HGNC:17946|Ensembl:ENSG00000142546|HPRD:17642 19 19q13.33 nitric oxide synthase interacting protein protein-coding NOSIP nitric oxide synthase interacting protein O eNOS-interacting protein|nitric oxide synthase-interacting protein 20121230 -9606 51071 DERA CGI-26 DEOC HGNC:24269|Ensembl:ENSG00000023697|HPRD:13138|Vega:OTTHUMG00000165537 12 12p12.3 deoxyribose-phosphate aldolase (putative) protein-coding DERA deoxyribose-phosphate aldolase (putative) O 2-deoxy-D-ribose 5-phosphate aldolase|2-deoxyribose-5-phosphate aldolase homolog|deoxyriboaldolase|phosphodeoxyriboaldolase|putative deoxyribose-phosphate aldolase 20121230 -9606 51072 MEMO1 CGI-27 C2orf4|MEMO|NS5ATP7 HGNC:14014|MIM:611786|Ensembl:ENSG00000162959|HPRD:12814|Vega:OTTHUMG00000128453 2 2p22-p21 mediator of cell motility 1 protein-coding MEMO1 mediator of cell motility 1 O C21orf19-like protein|HCV NS5A-transactivated protein 7|hepatitis C virus NS5A-transactivated protein 7|mediator of ErbB2-driven cell motility 1|memo-1|protein MEMO1 20121230 -9606 51073 MRPL4 CDABP0091 CGI-28|L4mt HGNC:14276|MIM:611823|Ensembl:ENSG00000105364|HPRD:14759|Vega:OTTHUMG00000180400 19 19p13.2 mitochondrial ribosomal protein L4 protein-coding MRPL4 mitochondrial ribosomal protein L4 O 39S ribosomal protein L4, mitochondrial|MRP-L4 20121230 -9606 51074 APIP CGI-29 APIP2|CGI29|MMRP19|dJ179L10.2 HGNC:17581|MIM:612491|Ensembl:ENSG00000149089|HPRD:14725|Vega:OTTHUMG00000166455 11 11p13 APAF1 interacting protein protein-coding APIP APAF1 interacting protein O APAF1-interacting protein|MTRu-1-P dehydratase|probable methylthioribulose-1-phosphate dehydratase 20121230 -9606 51075 TMX2 CGI-31 PDIA12|PIG26|TXNDC14 HGNC:30739|Ensembl:ENSG00000213593|Vega:OTTHUMG00000167200 11 11cen-q22.3 thioredoxin-related transmembrane protein 2 protein-coding TMX2 thioredoxin-related transmembrane protein 2 O cell proliferation-inducing gene 26 protein|growth-inhibiting gene 11|protein disulfide isomerase family A, member 12|thioredoxin domain-containing protein 14 20121230 -9606 51076 CUTC CGI-32 RP11-483F11.3 HGNC:24271|MIM:610101|Ensembl:ENSG00000119929|HPRD:13100|Vega:OTTHUMG00000018889 10 10q24.2 cutC copper transporter homolog (E. coli) protein-coding CUTC cutC copper transporter homolog (E. coli) O copper homeostasis protein cutC homolog 20121230 -9606 51077 FCF1 CGI-35 Bka|C14orf111|UTP24 HGNC:20220|Ensembl:ENSG00000119616|HPRD:12633|Vega:OTTHUMG00000171480 14 14q24.3 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) protein-coding FCF1 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) O rRNA-processing protein FCF1 homolog 20121230 -9606 51078 THAP4 CGI-36 PP238 HGNC:23187|MIM:612533|Ensembl:ENSG00000176946|HPRD:11630|Vega:OTTHUMG00000133410 2 2q37.3 THAP domain containing 4 protein-coding THAP4 THAP domain containing 4 O THAP domain-containing protein 4 20121230 -9606 51079 NDUFA13 CGI-39 B16.6|CDA016|GRIM-19|GRIM19 HGNC:17194|MIM:609435|Ensembl:ENSG00000186010|HPRD:09452|Vega:OTTHUMG00000162211 19 19p13.2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 13 protein-coding NDUFA13 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 13 O CI-B16.6|NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13|NADH-ubiquinone oxidoreductase B16.6 subunit|cell death regulatory protein GRIM-19|cell death-regulatory protein GRIM19|complex I B16.6 subunit|complex I-B16.6|gene associated with retinoic and IFN-induced mortality 19 protein|gene associated with retinoic and interferon-induced mortality 19 protein 20121230 -9606 51081 MRPS7 - MRP-S|MRP-S7|RP-S7|RPMS7|S7mt|bMRP27a HGNC:14499|MIM:611974|Ensembl:ENSG00000125445|HPRD:17601|Vega:OTTHUMG00000179484 17 17q25 mitochondrial ribosomal protein S7 protein-coding MRPS7 mitochondrial ribosomal protein S7 O 28S ribosomal protein S7, mitochondrial|30S ribosomal protein S7 homolog|bMRP-27a 20121230 -9606 51082 POLR1D - AC19|POLR1C|RPA16|RPA9|RPAC2|RPC16|RPO1-3|TCS2 HGNC:20422|MIM:613715|Ensembl:ENSG00000186184|HPRD:14717|HPRD:17877|Vega:OTTHUMG00000016635 13 13q12.2 polymerase (RNA) I polypeptide D, 16kDa protein-coding POLR1D polymerase (RNA) I polypeptide D, 16kDa O DNA-directed RNA polymerase I subunit D|DNA-directed RNA polymerases I and III subunit RPAC2|RNA polymerases I and III subunit AC2 20121230 -9606 51083 GAL - GAL-GMAP|GALN|GLNN|GMAP HGNC:4114|MIM:137035|Ensembl:ENSG00000069482|HPRD:00658|Vega:OTTHUMG00000167890 11 11q13.3 galanin/GMAP prepropeptide protein-coding GAL galanin/GMAP prepropeptide O galanin peptides|galanin prepropeptide|galanin-message-associated peptide|galanin-related peptide 20121230 -9606 51084 CRYL1 - GDH|lambda-CRY HGNC:18246|MIM:609877|Ensembl:ENSG00000165475|HPRD:16762|Vega:OTTHUMG00000016516 13 13q12.11 crystallin, lambda 1 protein-coding CRYL1 crystallin, lambda 1 O L-gulonate 3-dehydrogenase|crystallin, lamda 1|gul3DH|lambda-crystallin homolog 20121230 -9606 51085 MLXIPL - CHREBP|MIO|MONDOB|WBSCR14|WS-bHLH|bHLHd14 HGNC:12744|MIM:605678|Ensembl:ENSG00000009950|HPRD:12033|Vega:OTTHUMG00000129995 7 7q11.23 MLX interacting protein-like protein-coding MLXIPL MLX interacting protein-like O MLX-interacting protein-like|Mlx interactor|WS basic-helix-loop-helix leucine zipper protein|Williams Beuren syndrome chromosome region 14|Williams-Beuren syndrome chromosome region 14 protein 1|Williams-Beuren syndrome chromosome region 14 protein 2|carbohydrate response element binding protein|carbohydrate-responsive element-binding protein|class D basic helix-loop-helix protein 14|williams-Beuren syndrome chromosomal region 14 protein 20121230 -9606 51086 TNNI3K - CARK HGNC:19661|MIM:613932|Ensembl:ENSG00000116783|HPRD:18208|Vega:OTTHUMG00000171318 1 1p31.1 TNNI3 interacting kinase protein-coding TNNI3K TNNI3 interacting kinase O cardiac ankyrin repeat kinase|cardiac troponin I-interacting kinase|serine/threonine-protein kinase TNNI3K 20121230 -9606 51087 YBX2 - CONTRIN|CSDA3|DBPC|MSY2 HGNC:17948|MIM:611447|Ensembl:ENSG00000006047|HPRD:18311|Vega:OTTHUMG00000177992 17 17p13.1 Y box binding protein 2 protein-coding YBX2 Y box binding protein 2 O DNA-binding protein C|MSY2 homolog|Y-box-binding protein 2|germ cell specific Y-box binding protein|germ cell-specific Y-box-binding protein 20121230 -9606 51088 KLHL5 - - HGNC:6356|MIM:608064|Ensembl:ENSG00000109790|HPRD:10477|Vega:OTTHUMG00000097819 4 4p14 kelch-like 5 (Drosophila) protein-coding KLHL5 kelch-like 5 (Drosophila) O kelch-like protein 5|lymphocyte activation-associated protein 20121230 -9606 51090 PLLP - PMLP|TM4SF11 HGNC:18553|MIM:600340|Ensembl:ENSG00000102934|HPRD:11854|Vega:OTTHUMG00000133465 16 16q13 plasmolipin protein-coding PLLP plasmolipin O plasma membrane proteolipid (plasmolipin)|transmembrane 4 superfamily member 11 (plasmolipin) 20121230 -9606 51091 SEPSECS - LP|PCH2D|SLA|SLA/LP HGNC:30605|MIM:613009|Ensembl:ENSG00000109618|HPRD:11561|Vega:OTTHUMG00000128563 4 4p15.2 Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase protein-coding SEPSECS Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase O O-phosphoseryl-tRNA(Sec) selenium transferase|SLA-p35|SLA/LP autoantigen|UGA suppressor tRNA-associated protein|liver-pancreas antigen|soluble liver antigen|soluble liver antigen/liver pancreas antigen|tRNA(Ser/Sec)-associated antigenic protein 20121230 -9606 51092 SIDT2 CGI-40 - HGNC:24272|Ensembl:ENSG00000149577|HPRD:15345|Vega:OTTHUMG00000167065 11 11q23.3 SID1 transmembrane family, member 2 protein-coding SIDT2 SID1 transmembrane family, member 2 O SID1 transmembrane family member 2 20121230 -9606 51093 RRNAD1 RP11-66D17.7 C1orf66|CGI-41 HGNC:24273|Ensembl:ENSG00000143303|HPRD:10824|Vega:OTTHUMG00000041302 1 1q23.1 ribosomal RNA adenine dimethylase domain containing 1 protein-coding RRNAD1 ribosomal RNA adenine dimethylase domain containing 1 O protein RRNAD1|ribosomal RNA adenine dimethylase domain-containing protein 1 20121230 -9606 51094 ADIPOR1 CGI-45 ACDCR1|CGI45|PAQR1|TESBP1A HGNC:24040|MIM:607945|Ensembl:ENSG00000159346|HPRD:06402|Vega:OTTHUMG00000041391 1 1q32.1 adiponectin receptor 1 protein-coding ADIPOR1 adiponectin receptor 1 O adiponectin receptor protein 1|progestin and adipoQ receptor family member I 20121230 -9606 51095 TRNT1 CGI-47 CCA1|MtCCA HGNC:17341|MIM:612907|Ensembl:ENSG00000072756|HPRD:18227|Vega:OTTHUMG00000090259 3 3p25.1 tRNA nucleotidyl transferase, CCA-adding, 1 protein-coding TRNT1 tRNA nucleotidyl transferase, CCA-adding, 1 O CCA tRNA nucleotidyltransferase 1, mitochondrial|mitochondrial CCA-adding tRNA-nucleotidyltransferase|mitochondrial tRNA nucleotidyl transferase, CCA-adding|mt CCA-adding enzyme|mt tRNA CCA-diphosphorylase|mt tRNA CCA-pyrophosphorylase|mt tRNA adenylyltransferase|tRNA-nucleotidyltransferase 1, mitochondrial 20121230 -9606 51096 UTP18 CDABP0061 CGI-48|WDR50 HGNC:24274|MIM:612816|Ensembl:ENSG00000011260|Vega:OTTHUMG00000162370 17 17q21.33 UTP18 small subunit (SSU) processome component homolog (yeast) protein-coding UTP18 UTP18 small subunit (SSU) processome component homolog (yeast) O U3 small nucleolar RNA-associated protein 18 homolog|UTP18, small subunit (SSU) processome component, homolog|WD repeat domain 50|WD repeat-containing protein 50 20121230 -9606 51097 SCCPDH CGI-49 NET11|RP11-439E19.2 HGNC:24275|Ensembl:ENSG00000143653|HPRD:13038|Vega:OTTHUMG00000040221 1 1q44 saccharopine dehydrogenase (putative) protein-coding SCCPDH saccharopine dehydrogenase (putative) O probable saccharopine dehydrogenase|saccharopine dehydrogenase-like oxidoreductase 20121230 -9606 51098 IFT52 RP5-1028D15.4 C20orf9|CGI-53|NGD2|NGD5|dJ1028D15.1 HGNC:15901|Ensembl:ENSG00000101052|HPRD:12789|Vega:OTTHUMG00000032513 20 - intraflagellar transport 52 homolog (Chlamydomonas) protein-coding IFT52 intraflagellar transport 52 homolog (Chlamydomonas) O intraflagellar transport protein 52 homolog|protein NGD5 homolog 20121230 -9606 51099 ABHD5 CGI-58 CDS|CGI58|IECN2|NCIE2 HGNC:21396|MIM:604780|Ensembl:ENSG00000011198|HPRD:05308|HPRD:11986|Vega:OTTHUMG00000133039 3 3p21 abhydrolase domain containing 5 protein-coding ABHD5 abhydrolase domain containing 5 O 1-acylglycerol-3-phosphate O-acyltransferase ABHD5|abhydrolase domain-containing protein 5|lipid droplet-binding protein CGI-58 20121230 -9606 51100 SH3GLB1 CGI-61 Bif-1|PPP1R70|dJ612B15.2 HGNC:10833|MIM:609287|Ensembl:ENSG00000097033|HPRD:15333|Vega:OTTHUMG00000010257 1 1p22 SH3-domain GRB2-like endophilin B1 protein-coding SH3GLB1 SH3-domain GRB2-like endophilin B1 O Bax-interacting factor 1|SH3 domain-containing GRB2-like protein B1|SH3-containing protein SH3GLB1|endophilin-B1|protein phosphatase 1, regulatory subunit 70 20121230 -9606 51101 ZC2HC1A CGI-62 C8orf70|FAM164A HGNC:24277|Ensembl:ENSG00000104427|HPRD:13039|Vega:OTTHUMG00000164619 8 8q21.12 zinc finger, C2HC-type containing 1A protein-coding ZC2HC1A zinc finger, C2HC-type containing 1A O family with sequence similarity 164, member A|protein FAM164A|zinc finger C2HC domain-containing protein 1A 20121230 -9606 51102 MECR RP11-467D18.1 CGI-63|FASN2B|NRBF1 HGNC:19691|MIM:608205|Ensembl:ENSG00000116353|HPRD:12192|Vega:OTTHUMG00000059082 1 1p35.3 mitochondrial trans-2-enoyl-CoA reductase protein-coding MECR mitochondrial trans-2-enoyl-CoA reductase O NRBF-1|homolog of yeast 2-enoyl thioester reductase|hsNrbf-1|mitochondrial 2-enoyl thioester reductase|nuclear receptor binding factor 1|nuclear receptor-binding factor 1|trans-2-enoyl-CoA reductase, mitochondrial 20121230 -9606 51103 NDUFAF1 CGI-65 CGI65|CIA30 HGNC:18828|MIM:606934|Ensembl:ENSG00000137806|HPRD:09500|Vega:OTTHUMG00000130340 15 15q11.2-q21.3 NADH dehydrogenase (ubiquinone) complex I, assembly factor 1 protein-coding NDUFAF1 NADH dehydrogenase (ubiquinone) complex I, assembly factor 1 O NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 1|NADH-ubiquinone oxidoreductase 1 alpha subcomplex, assembly factor 1|complex I intermediate-associated protein 30, mitochondrial 20121230 -9606 51104 FAM108B1 CGI-67 C9orf77|RP11-409O11.2 HGNC:24278|Ensembl:ENSG00000107362|HPRD:12978|Vega:OTTHUMG00000020001 9 9q21.13 family with sequence similarity 108, member B1 protein-coding FAM108B1 family with sequence similarity 108, member B1 O abhydrolase domain-containing protein FAM108B1 20121230 -9606 51105 PHF20L1 CGI-72 - HGNC:24280|Ensembl:ENSG00000129292|HPRD:15125|Vega:OTTHUMG00000148656 8 8q24.22 PHD finger protein 20-like 1 protein-coding PHF20L1 PHD finger protein 20-like 1 O PHD finger protein 20-like protein 1|tudor domain-containing protein PHF20L1 20121230 -9606 51106 TFB1M CGI-75 CGI75|mtTFB|mtTFB1 HGNC:17037|MIM:607033|Ensembl:ENSG00000029639|HPRD:09515|Vega:OTTHUMG00000015881 6 6q25.1-q25.3 transcription factor B1, mitochondrial protein-coding TFB1M transcription factor B1, mitochondrial O S-adenosylmethionine-6-N', N'-adenosyl(rRNA) dimethyltransferase 1|dimethyladenosine transferase 1, mitochondrial|h-mtTFB1|hTFB1M|homolog of yeast mitochondrial transcription factor B|mitochondrial 12S rRNA dimethylase 1|mitochondrial dimethyladenosine transferase 1 20121230 -9606 51107 APH1A RP4-790G17.3 6530402N02Rik|APH-1|APH-1A|CGI-78 HGNC:29509|MIM:607629|Ensembl:ENSG00000117362|Vega:OTTHUMG00000012545 1 1p36.13-q31.3 anterior pharynx defective 1 homolog A (C. elegans) protein-coding APH1A anterior pharynx defective 1 homolog A (C. elegans) O aph-1alpha|gamma-secretase subunit APH-1A|presenilin-stabilization factor 20121230 -9606 51108 METTL9 CGI-81 DREV|DREV1|PAP1 HGNC:24586|MIM:609388|Ensembl:ENSG00000197006|HPRD:16839|Vega:OTTHUMG00000131584 16 16p12.2 methyltransferase like 9 protein-coding METTL9 methyltransferase like 9 O DORA reverse strand protein 1|methyltransferase-like protein 9|p53 activated protein 1 20121230 -9606 51109 RDH11 CGI-82 ARSDR1|CGI82|HCBP12|MDT1|PSDR1|RALR1|SCALD|SDR7C1 HGNC:17964|MIM:607849|Ensembl:ENSG00000072042|HPRD:09707|Vega:OTTHUMG00000171196 14 14q24.1 retinol dehydrogenase 11 (all-trans/9-cis/11-cis) protein-coding RDH11 retinol dehydrogenase 11 (all-trans/9-cis/11-cis) O HCV core-binding protein HCBP12|androgen-regulated short-chain dehydrogenase/reductase 1|prostate short-chain dehydrogenase reductase 1|prostate short-chain dehydrogenase/reductase 1|retinal reductase 1|retinol dehydrogenase 11|short chain dehydrogenase/reductase family 7C, member 1 20121230 -9606 51110 LACTB2 CGI-83 - HGNC:18512|Ensembl:ENSG00000147592|HPRD:13955|Vega:OTTHUMG00000164430 8 8q13.3 lactamase, beta 2 protein-coding LACTB2 lactamase, beta 2 O beta-lactamase-like protein 2 20121230 -9606 51111 SUV420H1 CGI-85 CGI85|KMT5B HGNC:24283|MIM:610881|Ensembl:ENSG00000110066|HPRD:11616|Vega:OTTHUMG00000150484 11 11q13.2 suppressor of variegation 4-20 homolog 1 (Drosophila) protein-coding SUV420H1 suppressor of variegation 4-20 homolog 1 (Drosophila) O C630029K18Rik|histone-lysine N-methyltransferase SUV420H1|lysine N-methyltransferase 5B|su(var)4-20 homolog 1|suv4-20h1 20121230 -9606 51112 TRAPPC12 CGI-87 TTC-15|TTC15 HGNC:24284|MIM:614139|Ensembl:ENSG00000171853|HPRD:15580|Vega:OTTHUMG00000090328 2 2p25.3 trafficking protein particle complex 12 protein-coding TRAPPC12 trafficking protein particle complex 12 O TPR repeat protein 15|tetratricopeptide repeat domain 15|tetratricopeptide repeat protein 15|trafficking protein particle complex subunit 12 20121230 -9606 51114 ZDHHC9 RP6-190D15.1 CGI89|CXorf11|DHHC9|MMSA1|MRXSZ|ZDHHC10|ZNF379|ZNF380 HGNC:18475|MIM:300646|Ensembl:ENSG00000188706|HPRD:06759|Vega:OTTHUMG00000022375 X Xq26.1 zinc finger, DHHC-type containing 9 protein-coding ZDHHC9 zinc finger, DHHC-type containing 9 O Asp-His-His-Cys domain containing protein 9|antigen MMSA-1|palmitoyltransferase ZDHHC9|zinc finger protein 379|zinc finger protein 380|zinc finger, DHHC domain containing 10 20121230 -9606 51115 FAM82B CGI-90 RMD-1|RMD1 HGNC:24285|MIM:611871|Ensembl:ENSG00000176623|HPRD:13042|Vega:OTTHUMG00000163692 8 8q21.3 family with sequence similarity 82, member B protein-coding FAM82B family with sequence similarity 82, member B O hRMD-1|microtubule-associated protein|regulator of microtubule dynamics 1|regulator of microtubule dynamics protein 1 20121230 -9606 51116 MRPS2 CGI-91 MRP-S2|S2mt HGNC:14495|MIM:611971|Ensembl:ENSG00000122140|HPRD:14783|Vega:OTTHUMG00000020910 9 9q34 mitochondrial ribosomal protein S2 protein-coding MRPS2 mitochondrial ribosomal protein S2 O 28S ribosomal protein S2, mitochondrial 20121230 -9606 51117 COQ4 RP11-339B21.5 CGI-92 HGNC:19693|MIM:612898|Ensembl:ENSG00000167113|HPRD:16741|Vega:OTTHUMG00000020743 9 9q34.11 coenzyme Q4 homolog (S. cerevisiae) protein-coding COQ4 coenzyme Q4 homolog (S. cerevisiae) O coenzyme Q biosynthesis protein 4 homolog|ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 20121230 -9606 51118 UTP11L CGI-94 CGI94 HGNC:24329|MIM:609440|Ensembl:ENSG00000183520|HPRD:16711|Vega:OTTHUMG00000004435 1 1p34.3 UTP11-like, U3 small nucleolar ribonucleoprotein, (yeast) protein-coding UTP11L UTP11-like, U3 small nucleolar ribonucleoprotein, (yeast) O U3 snoRNA-associated protein 11|UTP11-like protein|probable U3 small nucleolar RNA-associated protein 11 20121230 -9606 51119 SBDS CGI-97 SDS|SWDS HGNC:19440|MIM:607444|Ensembl:ENSG00000126524|HPRD:07393|Vega:OTTHUMG00000023165 7 7q11.21 Shwachman-Bodian-Diamond syndrome protein-coding SBDS Shwachman-Bodian-Diamond syndrome O ribosome maturation protein SBDS 20121230 -9606 51121 RPL26L1 - RPL26P1 HGNC:17050|Ensembl:ENSG00000037241|HPRD:17993|Vega:OTTHUMG00000130517 5 5q35.1 ribosomal protein L26-like 1 protein-coding RPL26L1 ribosomal protein L26-like 1 O 60S ribosomal protein L26-like 1|ribosomal protein L26 homolog|ribosomal protein L26 pseudogene 1 20121230 -9606 51122 COMMD2 HSPC042 - HGNC:24993|Ensembl:ENSG00000114744|HPRD:13081|Vega:OTTHUMG00000159616 3 3q25.1 COMM domain containing 2 protein-coding COMMD2 COMM domain containing 2 O COMM domain-containing protein 2 20121230 -9606 51123 ZNF706 HSPC038 PNAS-106|PNAS-113 HGNC:24992|Ensembl:ENSG00000120963|HPRD:13688|Vega:OTTHUMG00000164823 8 8q22.3 zinc finger protein 706 protein-coding ZNF706 zinc finger protein 706 O - 20121230 -9606 51124 IER3IP1 HSPC039 MEDS|PRO2309 HGNC:18550|MIM:609382|Ensembl:ENSG00000134049|HPRD:13727|Vega:OTTHUMG00000132650 18 18q12 immediate early response 3 interacting protein 1 protein-coding IER3IP1 immediate early response 3 interacting protein 1 O immediate early response 3-interacting protein 1 20121230 -9606 51125 GOLGA7 HDCKB03P GCP16|GOLGA3AP1|GOLGA7A|HSPC041 HGNC:24876|MIM:609453|Ensembl:ENSG00000147533|HPRD:13595|Vega:OTTHUMG00000164077 8 8p11.21 golgin A7 protein-coding GOLGA7 golgin A7 O Golgi complex-associated protein of 16kDa|Golgin subfamily A member 7|golgi autoantigen, golgin subfamily a, 7|golgi complex-associated protein of 16 kDa 20121230 -9606 51126 NAA20 RP5-1002M8.3 NAT3|NAT5|dJ1002M8.1 HGNC:15908|MIM:610833|Ensembl:ENSG00000173418|HPRD:07136|Vega:OTTHUMG00000031998 20 20p11.23 N(alpha)-acetyltransferase 20, NatB catalytic subunit protein-coding NAA20 N(alpha)-acetyltransferase 20, NatB catalytic subunit O N-acetyltransferase 3 homolog|N-acetyltransferase 5 (ARD1 homolog, S. cerevisiae)|N-acetyltransferase 5 (GCN5-related, putative)|N-acetyltransferase 5, ARD1 subunit (arrest-defective 1, S. cerevisiae, homolog)|N-alpha-acetyltransferase 20|N-alpha-acetyltransferase 20, NatB catalytic subunit|N-terminal acetyltransferase B complex catalytic subunit NAA20|N-terminal acetyltransferase B complex catalytic subunit NAT5|N-terminal acetyltransferase complex ARD1 subunit|methionine N-acetyltransferase|natB catalytic subunit|natB complex subunit NAT5 20121230 -9606 51127 TRIM17 RP5-915N17.1 RBCC|RNF16|terf HGNC:13430|MIM:606123|Ensembl:ENSG00000162931|HPRD:05839|Vega:OTTHUMG00000039974 1 1q42 tripartite motif containing 17 protein-coding TRIM17 tripartite motif containing 17 O E3 ubiquitin-protein ligase TRIM17|RING finger protein terf|ring finger protein 16|testis RING finger protein|tripartite motif-containing 17|tripartite motif-containing protein 17 20121230 -9606 51128 SAR1B - ANDD|CMRD|GTBPB|SARA2 HGNC:10535|MIM:607690|Ensembl:ENSG00000152700|HPRD:09647|Vega:OTTHUMG00000129114 5 5q31.1 SAR1 homolog B (S. cerevisiae) protein-coding SAR1B SAR1 homolog B (S. cerevisiae) O 2310075M17Rik|GTP-binding protein B|GTP-binding protein SAR1b|GTP-binding protein Sara|SAR1a gene homolog 2 20121230 -9606 51129 ANGPTL4 PP1158 ANGPTL2|ARP4|FIAF|HFARP|NL2|PGAR|pp1158 HGNC:16039|MIM:605910|Ensembl:ENSG00000167772|HPRD:16173 19 19p13.3 angiopoietin-like 4 protein-coding ANGPTL4 angiopoietin-like 4 O PPARG angiopoietin related protein|angiopoietin-like protein 4|angiopoietin-related protein 4|fasting-induced adipose factor|hepatic angiopoietin-related protein|hepatic fibrinogen/angiopoietin-related protein|peroxisome proliferator-activated receptor (PPAR) gamma induced angiopoietin-related protein 20121230 -9606 51130 ASB3 - ASB-3 HGNC:16013|MIM:605760|Ensembl:ENSG00000115239|HPRD:05769|Vega:OTTHUMG00000129279 2 2p16.2 ankyrin repeat and SOCS box containing 3 protein-coding ASB3 ankyrin repeat and SOCS box containing 3 O ankyrin repeat and SOCS box protein 3 20121230 -9606 51131 PHF11 RP11-185C18.3 APY|BCAP|IGEL|IGER|IGHER|NY-REN-34|NYREN34 HGNC:17024|MIM:607796|Ensembl:ENSG00000136147|Vega:OTTHUMG00000016916 13 13q14.2 PHD finger protein 11 protein-coding PHF11 PHD finger protein 11 O BRCA1 C-terminus-associated protein|IgE responsiveness (atopic)|NY-REN-34 antigen|renal carcinoma antigen NY-REN-34 20121230 -9606 51132 RLIM CTD-2530H13.3 NY-REN-43|RNF12 HGNC:13429|MIM:300379|Ensembl:ENSG00000131263|HPRD:02304|Vega:OTTHUMG00000021859 X Xq13-q21 ring finger protein, LIM domain interacting protein-coding RLIM ring finger protein, LIM domain interacting O E3 ubiquitin-protein ligase RLIM|E3 ubiquitin-protein ligase RNF12|LIM domain-interacting RING finger protein|R-LIM|RING finger LIM domain-binding protein|renal carcinoma antigen NY-REN-43|ring finger protein 12|ring zinc finger LIM domain binding protein|ring zinc finger protein NY-REN-43antigen 20121230 -9606 51133 KCTD3 RP11-5F19.1 NY-REN-45 HGNC:21305|MIM:613272|Ensembl:ENSG00000136636|HPRD:13766|Vega:OTTHUMG00000037019 1 1q41 potassium channel tetramerisation domain containing 3 protein-coding KCTD3 potassium channel tetramerisation domain containing 3 O BTB/POZ domain-containing protein KCTD3|NY-REN-45 antigen|renal carcinoma antigen NY-REN-45 20121230 -9606 51134 CCDC41 - NY-REN-58 HGNC:17966|Ensembl:ENSG00000173588|HPRD:14869|Vega:OTTHUMG00000170242 12 12q22 coiled-coil domain containing 41 protein-coding CCDC41 coiled-coil domain containing 41 O NY-REN-58 antigen|coiled-coil domain-containing protein 41|renal carcinoma antigen NY-REN-58 20121230 -9606 51135 IRAK4 - IPD1|IRAK-4|NY-REN-64|REN64 HGNC:17967|MIM:606883|Ensembl:ENSG00000198001|HPRD:06051|Vega:OTTHUMG00000169425 12 12q12 interleukin-1 receptor-associated kinase 4 protein-coding IRAK4 interleukin-1 receptor-associated kinase 4 O renal carcinoma antigen NY-REN-64 20121230 -9606 51136 RNFT1 PTD016 - HGNC:30206|Ensembl:ENSG00000189050|HPRD:17925|Vega:OTTHUMG00000148658 17 17q23.1 ring finger protein, transmembrane 1 protein-coding RNFT1 ring finger protein, transmembrane 1 O RING finger and transmembrane domain-containing protein 1 20121230 -9606 51138 COPS4 - CSN4 HGNC:16702|Ensembl:ENSG00000138663|HPRD:09888|Vega:OTTHUMG00000130298 4 4q21.22 COP9 constitutive photomorphogenic homolog subunit 4 (Arabidopsis) protein-coding COPS4 COP9 constitutive photomorphogenic homolog subunit 4 (Arabidopsis) O COP9 signalosome complex subunit 4|JAB1-containing signalosome subunit 4|SGN4|signalosome subunit 4 20121230 -9606 51141 INSIG2 - - HGNC:20452|MIM:608660|Ensembl:ENSG00000125629|HPRD:16361|Vega:OTTHUMG00000058518 2 2q14.2 insulin induced gene 2 protein-coding INSIG2 insulin induced gene 2 O INSIG-2|INSIG2 membrane protein|insulin induced protein 2|insulin-induced gene 2 protein 20121230 -9606 51142 CHCHD2 AAG10 C7orf17 HGNC:21645|Ensembl:ENSG00000106153|HPRD:09879|Vega:OTTHUMG00000129429 7 7p11.2 coiled-coil-helix-coiled-coil-helix domain containing 2 protein-coding CHCHD2 coiled-coil-helix-coiled-coil-helix domain containing 2 O 16.7kD protein|HCV NS2 trans-regulated protein|NS2TP|aging-associated gene 10 protein|coiled-coil-helix-coiled-coil-helix domain-containing protein 2, mitochondrial 20121230 -9606 51143 DYNC1LI1 - DNCLI1|LIC1 HGNC:18745|Ensembl:ENSG00000144635|HPRD:10917|Vega:OTTHUMG00000130750 3 3p22.3 dynein, cytoplasmic 1, light intermediate chain 1 protein-coding DYNC1LI1 dynein, cytoplasmic 1, light intermediate chain 1 O DLC-A|cytoplasmic dynein 1 light intermediate chain 1|dynein light chain A|dynein light chain-A|dynein light intermediate chain 1, cytosolic|dynein, cytoplasmic, light intermediate polypeptide 1 20121230 -9606 51144 HSD17B12 - KAR|SDR12C1 HGNC:18646|MIM:609574|Ensembl:ENSG00000149084|HPRD:09989|Vega:OTTHUMG00000166403 11 11p11.2 hydroxysteroid (17-beta) dehydrogenase 12 protein-coding HSD17B12 hydroxysteroid (17-beta) dehydrogenase 12 O 17-beta-HSD 12|17-beta-hydroxysteroid dehydrogenase 12|17beta-HSD type 12|3-ketoacyl-CoA reductase|estradiol 17-beta-dehydrogenase 12|short chain dehydrogenase/reductase family 12C, member 1|steroid dehydrogenase homolog 20121230 -9606 51145 LOC51145 - - - 9 9q33.3 erythrocyte transmembrane protein unknown - - - - 20121230 -9606 51146 A4GNT - alpha4GnT HGNC:17968|Ensembl:ENSG00000118017|HPRD:12390|Vega:OTTHUMG00000159820 3 3p14.3 alpha-1,4-N-acetylglucosaminyltransferase protein-coding A4GNT alpha-1,4-N-acetylglucosaminyltransferase O - 20121230 -9606 51147 ING4 My036 my036|p29ING4 HGNC:19423|MIM:608524|Ensembl:ENSG00000111653|HPRD:09774|Vega:OTTHUMG00000141274 12 12p13.31 inhibitor of growth family, member 4 protein-coding ING4 inhibitor of growth family, member 4 O brain my036 protein|candidate tumor suppressor p33 ING1 homolog|inhibitor of growth protein 4 20121230 -9606 51148 CERCAM RP11-339B21.2 CEECAM1|GLT25D3 HGNC:23723|Ensembl:ENSG00000167123|HPRD:16705|Vega:OTTHUMG00000020747 9 9q34.11 cerebral endothelial cell adhesion molecule protein-coding CERCAM cerebral endothelial cell adhesion molecule O cerebral cell adhesion molecule|cerebral endothelial cell adhesion molecule 1|glycosyltransferase 25 domain containing 3|glycosyltransferase 25 family member 3 20121230 -9606 51149 C5orf45 - - HGNC:30817|Ensembl:ENSG00000161010|HPRD:17420|Vega:OTTHUMG00000163490 5 5q35.3 chromosome 5 open reading frame 45 protein-coding C5orf45 chromosome 5 open reading frame 45 O UPF0544 protein C5orf45 20121230 -9606 51150 SDF4 RP5-902P8.6 Cab45|SDF-4 HGNC:24188|MIM:614282|Ensembl:ENSG00000078808|HPRD:13113|Vega:OTTHUMG00000001812 1 1p36.33 stromal cell derived factor 4 protein-coding SDF4 stromal cell derived factor 4 O 45 kDa calcium-binding protein 20121230 -9606 51151 SLC45A2 - 1A1|AIM1|MATP|SHEP5 HGNC:16472|MIM:606202|Ensembl:ENSG00000164175|HPRD:05865|Vega:OTTHUMG00000090719 5 5p13.2 solute carrier family 45, member 2 protein-coding SLC45A2 solute carrier family 45, member 2 O melanoma antigen AIM1|membrane associated transporter|membrane-associated transporter protein|protein AIM-1|underwhite 20121230 -9606 51152 LINC00328 - NCRNA00328|NCRNA00328A HGNC:42028 21 - long intergenic non-protein coding RNA 328 unknown LINC00328 long intergenic non-protein coding RNA 328 O - 20120508 -9606 51154 MRTO4 - C1orf33|MRT4|dJ657E11.4 HGNC:18477|Ensembl:ENSG00000053372|HPRD:12725|Vega:OTTHUMG00000002496 1 1p36.13 mRNA turnover 4 homolog (S. cerevisiae) protein-coding MRTO4 mRNA turnover 4 homolog (S. cerevisiae) O 60S acidic ribosomal protein PO|MRT4, mRNA turnover 4, homolog|mRNA turnover protein 4 homolog 20121230 -9606 51155 HN1 - ARM2|HN1A HGNC:14569|Ensembl:ENSG00000189159|HPRD:13665|Vega:OTTHUMG00000154521 17 17q25.1 hematological and neurological expressed 1 protein-coding HN1 hematological and neurological expressed 1 O androgen-regulated protein 2|hematological and neurological expressed 1 protein 20121230 -9606 51156 SERPINA10 UNQ707/PRO1358 PZI|ZPI HGNC:15996|MIM:605271|Ensembl:ENSG00000140093|HPRD:09245|Vega:OTTHUMG00000171345 14 14q32.13 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 10 protein-coding SERPINA10 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 10 O PZ-dependent protease inhibitor|protein Z-dependent protease inhibitor|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 10|serpin A10 20121230 -9606 51157 ZNF580 - - HGNC:29473|Ensembl:ENSG00000213015|HPRD:18353|Vega:OTTHUMG00000180868 19 19q13.42 zinc finger protein 580 protein-coding ZNF580 zinc finger protein 580 O LDL induced EC protein|LDL-induced EC protein 20121230 -9606 51160 VPS28 - - HGNC:18178|MIM:611952|Ensembl:ENSG00000160948|HPRD:11675|Vega:OTTHUMG00000165209 8 8q24.3 vacuolar protein sorting 28 homolog (S. cerevisiae) protein-coding VPS28 vacuolar protein sorting 28 homolog (S. cerevisiae) O ESCRT-I complex subunit VPS28|H-Vps28|vacuolar protein sorting-associated protein 28 homolog|yeast class E protein Vps28p homolog 20121230 -9606 51161 C3orf18 - G20 HGNC:24837|Ensembl:ENSG00000088543|HPRD:16654|Vega:OTTHUMG00000156854 3 3p21.3 chromosome 3 open reading frame 18 protein-coding C3orf18 chromosome 3 open reading frame 18 O uncharacterized protein C3orf18 20121230 -9606 51162 EGFL7 UNQ187/PRO1449 NEU1|RP11-251M1.2|VE-STATIN|ZNEU1 HGNC:20594|MIM:608582|Ensembl:ENSG00000172889|HPRD:16351|Vega:OTTHUMG00000020938 9 9q34.3 EGF-like-domain, multiple 7 protein-coding EGFL7 EGF-like-domain, multiple 7 O EGF-like protein 7|NOTCH4-like protein|epidermal growth factor-like protein 7|multiple EGF-like domains protein 7|multiple epidermal growth factor-like domains protein 7|vascular endothelial statin 20121230 -9606 51163 DBR1 - - HGNC:15594|MIM:607024|Ensembl:ENSG00000138231|HPRD:07384|Vega:OTTHUMG00000159824 3 3q22.3 debranching enzyme homolog 1 (S. cerevisiae) protein-coding DBR1 debranching enzyme homolog 1 (S. cerevisiae) O RNA lariat debranching enzyme|lariat debranching enzyme 20121230 -9606 51164 DCTN4 - DYN4|P62 HGNC:15518|MIM:614758|Ensembl:ENSG00000132912|HPRD:13126|Vega:OTTHUMG00000130079 5 5q31-q32 dynactin 4 (p62) protein-coding DCTN4 dynactin 4 (p62) O dynactin p62 subunit|dynactin subunit 4|dynactin subunit p62 20121230 -9606 51166 AADAT - KAT2|KATII HGNC:17929|MIM:611754|Ensembl:ENSG00000109576|HPRD:12392|Vega:OTTHUMG00000160912 4 4q33 aminoadipate aminotransferase protein-coding AADAT aminoadipate aminotransferase O 2-aminoadipate aminotransferase|2-aminoadipate transaminase|KAT/AadAT|L kynurenine/alpha aminoadipate aminotransferase|alpha-aminoadipate aminotransferase|kynurenine aminotransferase II|kynurenine--oxoglutarate aminotransferase II|kynurenine--oxoglutarate transaminase 2|kynurenine--oxoglutarate transaminase II|kynurenine/alpha-aminoadipate aminotransferase, mitochondrial 20121230 -9606 51167 CYB5R4 - NCB5OR|RP4-676J13.1|cb5/cb5R|dJ676J13.1 HGNC:20147|MIM:608343|Ensembl:ENSG00000065615|HPRD:12218|Vega:OTTHUMG00000015118 6 6pter-q22.33 cytochrome b5 reductase 4 protein-coding CYB5R4 cytochrome b5 reductase 4 O N-terminal cytochrome b5 and cytochrome b5 oxidoreductase domain-containing protein|NADPH cytochrome B5 oxidoreductase|cytochrome b-type NAD(P)H oxidoreductase|flavohemoprotein b5+b5R|flavohemoprotein b5/b5R 20121230 -9606 51168 MYO15A - DFNB3|MYO15 HGNC:7594|MIM:602666|Ensembl:ENSG00000091536|HPRD:04049|Vega:OTTHUMG00000059390 17 17p11.2 myosin XVA protein-coding MYO15A myosin XVA O myosin-XV|unconventional myosin-15|unconventional myosin-XV 20121230 -9606 51170 HSD17B11 PSEC0029 17BHSD11|DHRS8|PAN1B|RETSDR2|SDR16C2 HGNC:22960|MIM:612831|Ensembl:ENSG00000198189|HPRD:10881|Vega:OTTHUMG00000130594 4 4q22.1 hydroxysteroid (17-beta) dehydrogenase 11 protein-coding HSD17B11 hydroxysteroid (17-beta) dehydrogenase 11 O 17-BETA-HSD11|17-BETA-HSDXI|17-beta-HSD 11|17-beta-HSD XI|17-beta-hydroxysteroid dehydrogenase 11|17-beta-hydroxysteroid dehydrogenase XI|17-beta-hydroxysteroid dehydrogenase type XI|CTCL tumor antigen HD-CL-03|CTCL-associated antigen HD-CL-03|T-cell lymphoma-associated antigen HD-CL-03|cutaneous T-cell lymphoma-associated antigen HD-CL-03|dehydrogenase/reductase (SDR family) member 8|dehydrogenase/reductase SDR family member 8|estradiol 17-beta-dehydrogenase 11|retinal short-chain dehydrogenase/reductase 2|short chain dehydrogenase/reductase family 16C, member 2 20121230 -9606 51171 HSD17B14 UNQ502/PRO474 DHRS10|SDR47C1|retSDR3 HGNC:23238|MIM:612832|Ensembl:ENSG00000087076|HPRD:16801 19 19q13.33 hydroxysteroid (17-beta) dehydrogenase 14 protein-coding HSD17B14 hydroxysteroid (17-beta) dehydrogenase 14 O 17-beta-HSD 14|17-beta-hydroxysteroid dehydrogenase 14|17-beta-hydroxysteroid dehydrogenase DHRS10|dehydrogenase/reductase (SDR family) member 10|dehydrogenase/reductase SDR family member 10|retinal short-chain dehydrogenase/reductase 3|retinal short-chain dehydrogenase/reductase retSDR3|short chain dehydrogenase/reductase family 47C, member 1 20121230 -9606 51172 NAGPA - APAA|UCE HGNC:17378|MIM:607985|Ensembl:ENSG00000103174|HPRD:12145|Vega:OTTHUMG00000090515 16 16p13.3 N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase protein-coding NAGPA N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase O alpha-N-acetylglucosaminyl phosphodiesterase|lysosomal alpha-N-acetylglucosaminidase|mannose 6-phosphate-uncovering enzyme|phosphodiester alpha-GlcNAcase 20121230 -9606 51174 TUBD1 - TUBD HGNC:16811|MIM:607344|Ensembl:ENSG00000108423|HPRD:06297|Vega:OTTHUMG00000179885 17 17q23.1 tubulin, delta 1 protein-coding TUBD1 tubulin, delta 1 O delta-tubulin|tubulin delta chain 20121230 -9606 51175 TUBE1 RP1-142L7.1 TUBE|dJ142L7.2 HGNC:20775|MIM:607345|Ensembl:ENSG00000074935|HPRD:06298|Vega:OTTHUMG00000015382 6 6q21 tubulin, epsilon 1 protein-coding TUBE1 tubulin, epsilon 1 O epsilon-tubulin|tubulin epsilon chain 20121230 -9606 51176 LEF1 - LEF-1|TCF10|TCF1ALPHA|TCF7L3 HGNC:6551|MIM:153245|Ensembl:ENSG00000138795|HPRD:01075|Vega:OTTHUMG00000131809 4 4q23-q25 lymphoid enhancer-binding factor 1 protein-coding LEF1 lymphoid enhancer-binding factor 1 O T cell-specific transcription factor 1-alpha|TCF1-alpha 20121230 -9606 51177 PLEKHO1 RP11-458I7.3 CKIP-1|OC120 HGNC:24310|MIM:608335|Ensembl:ENSG00000023902|HPRD:12217|Vega:OTTHUMG00000012510 1 1q21.2 pleckstrin homology domain containing, family O member 1 protein-coding PLEKHO1 pleckstrin homology domain containing, family O member 1 O 2810052M02Rik|C-Jun-binding protein|CK2 interacting protein 1; HQ0024c protein|CK2-interacting protein 1|JBP|OC120|PH domain-containing family O member 1|casein kinase 2-interacting protein 1|osteoclast maturation-associated gene 120 protein|pleckstrin homology domain-containing family O member 1 20121230 -9606 51179 HAO2 RP5-871G17.1 GIG16|HAOX2 HGNC:4810|MIM:605176|Ensembl:ENSG00000116882|HPRD:05532|Vega:OTTHUMG00000012410 1 1p13.3-p13.1 hydroxyacid oxidase 2 (long chain) protein-coding HAO2 hydroxyacid oxidase 2 (long chain) O (S)-2-hydroxy-acid oxidase, peroxisomal|cell growth-inhibiting gene 16 protein|glycolate oxidase|hydroxyacid oxidase 2|long chain alpha-hydroxy acid oxidase|long-chain L-2-hydroxy acid oxidase 20121230 -9606 51181 DCXR - DCR|HCR2|HCRII|KIDCR|P34H|SDR20C1|XR HGNC:18985|MIM:608347|Ensembl:ENSG00000169738|HPRD:16320|Vega:OTTHUMG00000178483 17 17q25.3 dicarbonyl/L-xylulose reductase protein-coding DCXR dicarbonyl/L-xylulose reductase O L-xylulose reductase|carbonyl reductase 2|carbonyl reductase II|kidney dicarbonyl reductase|short chain dehydrogenase/reductase family 20C, member 1|sperm surface protein P34H 20121230 -9606 51182 HSPA14 - HSP70-4|HSP70L1 HGNC:29526|MIM:610369|Ensembl:ENSG00000187522|HPRD:07021|Vega:OTTHUMG00000017712 10 10p13 heat shock 70kDa protein 14 protein-coding HSPA14 heat shock 70kDa protein 14 O HSP70-like protein 1|heat shock 70 kDa protein 14|heat shock protein HSP60|heat shock protein hsp70-related protein 20121230 -9606 51184 GPN3 AD-009 ATPBD1C HGNC:30186|Ensembl:ENSG00000111231|HPRD:17498|Vega:OTTHUMG00000169524 12 12q24.11 GPN-loop GTPase 3 protein-coding GPN3 GPN-loop GTPase 3 O ATP binding domain 1 family, member C|ATP-binding domain 1 family member C|protein x 0004 20121230 -9606 51185 CRBN AD-006 MRT2|MRT2A HGNC:30185|MIM:609262|Ensembl:ENSG00000113851|HPRD:16750|Vega:OTTHUMG00000090261 3 3p26.2 cereblon protein-coding CRBN cereblon O protein cereblon|protein x 0001 20121230 -9606 51186 WBP5 - TCEAL9 HGNC:30084|Ensembl:ENSG00000185222|HPRD:06621|Vega:OTTHUMG00000022097 X Xq22.2 WW domain binding protein 5 protein-coding WBP5 WW domain binding protein 5 O WBP-5|WW domain binding protein 1|WW domain-binding protein 5|pp21 homolog 20121230 -9606 51187 RSL24D1 My024 C15orf15|HRP-L30-iso|L30|RLP24|RPL24|RPL24L|TVAS3 HGNC:18479|MIM:613262|Ensembl:ENSG00000137876|HPRD:12665|Vega:OTTHUMG00000131957 15 15q21 ribosomal L24 domain containing 1 protein-coding RSL24D1 ribosomal L24 domain containing 1 O 60S ribosomal protein L30 isolog|homolog of yeast ribosomal like protein 24|my024 protein|probable ribosome biogenesis protein RLP24|ribosomal L24 domain-containing protein 1 20121230 -9606 51188 SS18L2 - KIAA-iso HGNC:15593|MIM:606473|Ensembl:ENSG00000008324|HPRD:09399|Vega:OTTHUMG00000131794 3 3p21 synovial sarcoma translocation gene on chromosome 18-like 2 protein-coding SS18L2 synovial sarcoma translocation gene on chromosome 18-like 2 O SS18-like protein 2|SYT homolog 2 20121230 -9606 51191 HERC5 - CEB1|CEBP1 HGNC:24368|MIM:608242|Ensembl:ENSG00000138646|HPRD:10502|Vega:OTTHUMG00000130953 4 4q22.1 HECT and RLD domain containing E3 ubiquitin protein ligase 5 protein-coding HERC5 HECT and RLD domain containing E3 ubiquitin protein ligase 5 O E3 ISG15--protein ligase HERC5|HECT domain and RCC1-like domain-containing protein 5|cyclin-E-binding protein 1|hect domain and RLD 5|probable E3 ubiquitin-protein ligase HERC5 20121230 -9606 51192 CKLF HSPC224 C32|CKLF1|CKLF2|CKLF3|CKLF4|UCK-1 HGNC:13253|Ensembl:ENSG00000217555|HPRD:16718|Vega:OTTHUMG00000137504 16 16q21 chemokine-like factor protein-coding CKLF chemokine-like factor O chemokine-like factor 1|chemokine-like factor 2|chemokine-like factor 3|chemokine-like factor 4|transmembrane proteolipid 20121230 -9606 51193 ZNF639 - 6230400O18Rik|ANC-2H01|ANC_2H01|ZASC1 HGNC:30950|Ensembl:ENSG00000121864|HPRD:15882|Vega:OTTHUMG00000157439 3 3q26.33 zinc finger protein 639 protein-coding ZNF639 zinc finger protein 639 O zinc finger amplified in esophageal squamous cell carcinomas 1|zinc finger protein ANC_2H01|zinc finger protein ZASC1 20121230 -9606 51194 IPO11 - RanBP11 HGNC:20628|MIM:610889|Ensembl:ENSG00000086200|HPRD:10003|HPRD:18066|Vega:OTTHUMG00000154400 5 5q12.1 importin 11 protein-coding IPO11 importin 11 O Ran binding protein 11|imp11|importin-11|ran-binding protein 11 20121230 -9606 51195 RAPGEFL1 - Link-GEFII HGNC:17428|Ensembl:ENSG00000108352|HPRD:17954|Vega:OTTHUMG00000133325 17 17q21.1 Rap guanine nucleotide exchange factor (GEF)-like 1 protein-coding RAPGEFL1 Rap guanine nucleotide exchange factor (GEF)-like 1 O Link guanine nucleotide exchange factor II|RAP guanine-nucleotide-exchange factor (GEF)-like 1|link GEFII|rap guanine nucleotide exchange factor-like 1 20121230 -9606 51196 PLCE1 RP11-76P2.1 NPHS3|PLCE|PPLC HGNC:17175|MIM:608414|Ensembl:ENSG00000138193|HPRD:07087|Vega:OTTHUMG00000018789 10 10q23 phospholipase C, epsilon 1 protein-coding PLCE1 phospholipase C, epsilon 1 O 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase epsilon-1|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase epsilon-1|PLC-epsilon-1|pancreas-enriched phospholipase C|phosphoinositide phospholipase C-epsilon-1|phosphoinositide-specific phospholipase C epsilon-1 20121230 -9606 51198 C9orf53 - bA149I2.3 HGNC:23831 9 9p21.3 chromosome 9 open reading frame 53 miscRNA C9orf53 chromosome 9 open reading frame 53 O - 20121230 -9606 51199 NIN - SCKL7 HGNC:14906|MIM:608684|Ensembl:ENSG00000100503|HPRD:09785|Vega:OTTHUMG00000029569 14 14q22.1 ninein (GSK3B interacting protein) protein-coding NIN ninein (GSK3B interacting protein) O glycogen synthase kinase 3 beta-interacting protein|hNinein|ninein|ninein centrosomal protein 20121230 -9606 51200 CPA4 tcag7.359 CPA3 HGNC:15740|MIM:607635|Ensembl:ENSG00000128510|HPRD:07405|Vega:OTTHUMG00000157825 7 7q32 carboxypeptidase A4 protein-coding CPA4 carboxypeptidase A4 O carboxypeptidase A3 20121230 -9606 51201 ZDHHC2 - DHHC2|ZNF372 HGNC:18469|Ensembl:ENSG00000104219|HPRD:15715|Vega:OTTHUMG00000163860 8 8p22 zinc finger, DHHC-type containing 2 protein-coding ZDHHC2 zinc finger, DHHC-type containing 2 O DHHC-2|palmitoyltransferase ZDHHC2|ream|rec|reduced expression associated with metastasis protein|reduced expression in cancer protein|zinc finger DHHC domain-containing protein 2|zinc finger protein 372|zinc finger, DHHC domain containing 2 20121230 -9606 51202 DDX47 - E4-DBP|HQ0256|MSTP162|RRP3 HGNC:18682|Ensembl:ENSG00000213782|HPRD:10863|Vega:OTTHUMG00000168709 12 12p13.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 47 protein-coding DDX47 DEAD (Asp-Glu-Ala-Asp) box polypeptide 47 O DEAD box polypeptide 47|DEAD box protein 47|E4-DEAD box protein|probable ATP-dependent RNA helicase DDX47 20121230 -9606 51203 NUSAP1 BM-037 ANKT|BM037|LNP|NUSAP|PRO0310p1|Q0310|SAPL HGNC:18538|MIM:612818|Ensembl:ENSG00000137804|Vega:OTTHUMG00000172588 15 15q15.1 nucleolar and spindle associated protein 1 protein-coding NUSAP1 nucleolar and spindle associated protein 1 O nucleolar and spindle-associated protein 1|nucleolar protein ANKT 20121230 -9606 51204 TACO1 PRO0477 CCDC44 HGNC:24316|MIM:612958|Ensembl:ENSG00000136463|HPRD:17421|Vega:OTTHUMG00000178904 17 17q23.3 translational activator of mitochondrially encoded cytochrome c oxidase I protein-coding TACO1 translational activator of mitochondrially encoded cytochrome c oxidase I O clone HQ0477 PRO0477p|coiled-coil domain-containing protein 44|translational activator of cytochrome c oxidase 1 20121230 -9606 51205 ACP6 UNQ205/PRO231 ACPL1|LPAP|PACPL1 HGNC:29609|MIM:611471|Ensembl:ENSG00000162836|HPRD:16472|Vega:OTTHUMG00000014019 1 1q21 acid phosphatase 6, lysophosphatidic protein-coding ACP6 acid phosphatase 6, lysophosphatidic O acid phosphatase like 1|acid phosphatase-like protein 1|lysophosphatidic acid phosphatase type 6 20121230 -9606 51206 GP6 - BDPLT11|GPIV|GPVI HGNC:14388|MIM:605546|Ensembl:ENSG00000088053|HPRD:10406|Vega:OTTHUMG00000159709 19 19q13.4 glycoprotein VI (platelet) protein-coding GP6 glycoprotein VI (platelet) O glycoprotein 6|platelet collagen receptor|platelet glycoprotein VI 20121230 -9606 51207 DUSP13 RP11-487I5.6 BEDP|DUSP13A|DUSP13B|MDSP|SKRP4|TMDP HGNC:19681|MIM:613191|Ensembl:ENSG00000079393|HPRD:13251|Vega:OTTHUMG00000018516 10 10q22.2 dual specificity phosphatase 13 protein-coding DUSP13 dual specificity phosphatase 13 O branching-enzyme interacting DSP|branching-enzyme interacting dual-specificity protein phosphatase|dual specificity phosphatase SKRP4|dual specificity protein phosphatase 13|muscle-restricted DSP|testis- and skeletal-muscle-specific DSP 20121230 -9606 51208 CLDN18 UNQ778/PRO1572 SFTA5|SFTPJ HGNC:2039|MIM:609210|Ensembl:ENSG00000066405|HPRD:13066|Vega:OTTHUMG00000159762 3 3q22.3 claudin 18 protein-coding CLDN18 claudin 18 O claudin-18|surfactant associated 5|surfactant associated protein J|surfactant, pulmonary associated protein J 20121230 -9606 51209 RAB9B - RAB9L|Rab-9L HGNC:14090|MIM:300285|Ensembl:ENSG00000123570|HPRD:02237|Vega:OTTHUMG00000022112 X Xq22.1-q22.3 RAB9B, member RAS oncogene family protein-coding RAB9B RAB9B, member RAS oncogene family O RAB9-like protein|rab-9-like protein|ras-related protein Rab-9B 20121230 -9606 51213 LUZP4 RP1-237H22.1 CT-28|CT-8|CT28|HOM-TES-85 HGNC:24971|MIM:300616|Ensembl:ENSG00000102021|HPRD:06589|Vega:OTTHUMG00000022234 X Xq23 leucine zipper protein 4 protein-coding LUZP4 leucine zipper protein 4 O HOM-TES-85 tumor antigen|cancer/testis antigen 28|tumor antigen HOM-TES-85 20121230 -9606 51214 IGF2-AS hCG_1995804 IGF2-AS1|IGF2AS|PEG8 HGNC:14062|MIM:610146|HPRD:10000 11 11p15.5 IGF2 antisense RNA miscRNA IGF2-AS IGF2 antisense RNA O - 20121230 -9606 51218 GLRX5 - C14orf87|FLB4739|GRX5|PR01238|PRO1238 HGNC:20134|MIM:609588|Ensembl:ENSG00000182512|HPRD:12659|Vega:OTTHUMG00000171636 14 14q32.13 glutaredoxin 5 protein-coding GLRX5 glutaredoxin 5 O glutaredoxin 5 homolog|glutaredoxin-related protein 5, mitochondrial|monothiol glutaredoxin-5 20121230 -9606 51222 ZNF219 - ZFP219 HGNC:13011|MIM:605036|Ensembl:ENSG00000165804|HPRD:05435|Vega:OTTHUMG00000029647 14 14q11 zinc finger protein 219 protein-coding ZNF219 zinc finger protein 219 O - 20121230 -9606 51224 TCEB3B - ELOA2|HsT832|TCEB3L HGNC:30771|MIM:609522|Ensembl:ENSG00000206181|HPRD:18169|Vega:OTTHUMG00000132649 18 18q21.1 transcription elongation factor B polypeptide 3B (elongin A2) protein-coding TCEB3B transcription elongation factor B polypeptide 3B (elongin A2) O RNA polymerase II transcription factor SIII subunit A2|elongin-A2|transcription elongation factor (SIII) elongin A2 elongin A2 20121230 -9606 51225 ABI3 - NESH|SSH3BP3 HGNC:29859|MIM:606363|Ensembl:ENSG00000108798|HPRD:05900|Vega:OTTHUMG00000161306 17 17q21.3 ABI family, member 3 protein-coding ABI3 ABI family, member 3 O ABI gene family member 3|ABI gene family, member 3|new molecule including SH3 20121230 -9606 51226 COPZ2 - - HGNC:19356|Ensembl:ENSG00000005243|HPRD:16739|Vega:OTTHUMG00000178684 17 17q21.32 coatomer protein complex, subunit zeta 2 protein-coding COPZ2 coatomer protein complex, subunit zeta 2 O coatomer subunit zeta-2|nonclathrin coat protein zeta-COP|zeta-2 COP|zeta-2 coat protein|zeta-2-coat protein|zeta2-COP 20121230 -9606 51227 PIGP NPD010 DCRC|DCRC-S|DSCR5|DSRC HGNC:3046|MIM:605938|Ensembl:ENSG00000185808|HPRD:05806|Vega:OTTHUMG00000086653 21 21q22.2 phosphatidylinositol glycan anchor biosynthesis, class P protein-coding PIGP phosphatidylinositol glycan anchor biosynthesis, class P O Down syndrome critical region gene 5|Down syndrome critical region protein 5|Down syndrome critical region protein C|PIG-P|phosphatidylinositol N-acetylglucosaminyltransferase subunit P|phosphatidylinositol glycan, class P|phosphatidylinositol-glycan biosynthesis class P protein|phosphatidylinositol-n-acetylglucosaminyltranferase subunit 20121230 -9606 51228 GLTP - - HGNC:24867|MIM:608949|Ensembl:ENSG00000139433|HPRD:16409|Vega:OTTHUMG00000169278 12 12q24.11 glycolipid transfer protein protein-coding GLTP glycolipid transfer protein O truncated glycolipid transfer protein 20121230 -9606 51230 PHF20 RP5-1121G12.1 C20orf104|GLEA2|HCA58|NZF|TZP HGNC:16098|MIM:610335|Ensembl:ENSG00000025293|HPRD:08514|Vega:OTTHUMG00000032367 20 20q11.22-q11.23 PHD finger protein 20 protein-coding PHF20 PHD finger protein 20 O glioma-expressed antigen 2|hepatocellular carcinoma-associated antigen 58|novel zinc finger protein|transcription factor TZP 20121230 -9606 51231 VRK3 - - HGNC:18996|Ensembl:ENSG00000105053|HPRD:18289 19 19q13 vaccinia related kinase 3 protein-coding VRK3 vaccinia related kinase 3 O inactive serine/threonine-protein kinase VRK3|serine/threonine-protein kinase VRK3|serine/threonine-protein pseudokinase VRK3|vaccinia-related kinase 3 20121230 -9606 51232 CRIM1 UNQ1886/PRO4330 CRIM-1|S52 HGNC:2359|MIM:606189|Ensembl:ENSG00000150938|HPRD:08392|Vega:OTTHUMG00000099419 2 2p21 cysteine rich transmembrane BMP regulator 1 (chordin-like) protein-coding CRIM1 cysteine rich transmembrane BMP regulator 1 (chordin-like) O cysteine-rich motor neuron 1 protein|cysteine-rich repeat-containing protein S52 20121230 -9606 51233 C22orf43 - - HGNC:28031|Ensembl:ENSG00000189269|HPRD:17422|Vega:OTTHUMG00000150710 22 22q11.2 chromosome 22 open reading frame 43 protein-coding C22orf43 chromosome 22 open reading frame 43 O putative uncharacterized protein C22orf43|uncharacterized protein C22orf43 20121230 -9606 51234 EMC4 HSPC184 PIG17|TMEM85 HGNC:28032|Ensembl:ENSG00000128463|HPRD:14233|Vega:OTTHUMG00000129411 15 15q14 ER membrane protein complex subunit 4 protein-coding EMC4 ER membrane protein complex subunit 4 O cell proliferation-inducing gene 17 protein|proliferation-inducing gene 17|transmembrane protein 85 20121230 -9606 51236 FAM203A - BRP16|C8orf30A HGNC:24161|Ensembl:ENSG00000235173|HPRD:17423|Vega:OTTHUMG00000165246 8 8q24.3 family with sequence similarity 203, member A protein-coding FAM203A family with sequence similarity 203, member A O brain protein 16|protein FAM203A 20121230 -9606 51237 MZB1 HSPC190 MEDA-7|PACAP|pERp1 HGNC:30125|MIM:609447|Ensembl:ENSG00000170476|HPRD:17815|Vega:OTTHUMG00000163390 5 5q31.2 marginal zone B and B1 cell-specific protein protein-coding MZB1 marginal zone B and B1 cell-specific protein O HSPC190|caspase-2 binding protein|mesenteric oestrogen-dependent adipose gene- 7|plasma cell-induced ER protein 1|plasma cell-induced resident ER protein|plasma cell-induced resident endoplasmic reticulum protein|proapoptotic caspase adapter protein|proapoptotic caspase adaptor protein 20121230 -9606 51239 ANKRD39 HSPC200 - HGNC:28640|Ensembl:ENSG00000213337|HPRD:14614|Vega:OTTHUMG00000130530 2 2q11.2 ankyrin repeat domain 39 protein-coding ANKRD39 ankyrin repeat domain 39 O ankyrin repeat domain-containing protein 39 20121230 -9606 51241 COX16 HSPC203 C14orf112 HGNC:20213|Ensembl:ENSG00000133983|HPRD:16591|Vega:OTTHUMG00000171238 14 14q24.2 COX16 cytochrome c oxidase assembly homolog (S. cerevisiae) protein-coding COX16 COX16 cytochrome c oxidase assembly homolog (S. cerevisiae) O cytochrome c oxidase assembly factor|cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 20121230 -9606 51244 CCDC174 - C3orf19 HGNC:28033|Ensembl:ENSG00000154781|HPRD:12820|Vega:OTTHUMG00000129837 3 3p25.1 coiled-coil domain containing 174 protein-coding CCDC174 coiled-coil domain containing 174 O uncharacterized protein C3orf19 20121230 -9606 51246 SHISA5 PSEC0133 SCOTIN|hShisa5 HGNC:30376|MIM:607290|Ensembl:ENSG00000164054|HPRD:06290|Vega:OTTHUMG00000133529 3 3p21.31 shisa homolog 5 (Xenopus laevis) protein-coding SHISA5 shisa homolog 5 (Xenopus laevis) O protein shisa-5|putative NF-kappa-B-activating protein 120 20121230 -9606 51247 PAIP2 HSPC218 PAIP2A HGNC:17970|MIM:605604|Ensembl:ENSG00000120727|HPRD:05726|Vega:OTTHUMG00000129227 5 5q31.2 poly(A) binding protein interacting protein 2 protein-coding PAIP2 poly(A) binding protein interacting protein 2 O PABC1-interacting protein 2|PABP-interacting protein 2|PAIP-2|poly(A)-binding protein-interacting protein 2|polyA-binding protein-interacting protein 2|polyadenylate-binding protein-interacting protein 2 20121230 -9606 51248 PDZD11 RP13-26D14.3 AIPP1|PDZK11|PISP HGNC:28034|MIM:300632|Ensembl:ENSG00000120509|HPRD:06622|Vega:OTTHUMG00000021771 X Xq13.1 PDZ domain containing 11 protein-coding PDZD11 PDZ domain containing 11 O ATPase-interacting PDZ protein|PDZ domain-containing protein 11 20121230 -9606 51249 TMEM69 HSPC229 C1orf154|RP11-767N6.4 HGNC:28035|Ensembl:ENSG00000159596|HPRD:14234|Vega:OTTHUMG00000040993 1 1p34.1 transmembrane protein 69 protein-coding TMEM69 transmembrane protein 69 O - 20121230 -9606 51250 C6orf203 HSPC230 PRED31|RP11-59I9.1 HGNC:17971|Ensembl:ENSG00000130349|HPRD:12873|Vega:OTTHUMG00000015307 6 6q21 chromosome 6 open reading frame 203 protein-coding C6orf203 chromosome 6 open reading frame 203 O HSPC230|uncharacterized protein C6orf203 20121230 -9606 51251 NT5C3 HSPC233 P5'N-1|P5N-1|PN-I|PSN1|UMPH|UMPH1|cN-III|p36 HGNC:17820|MIM:606224|Ensembl:ENSG00000122643|HPRD:05871|Vega:OTTHUMG00000152983 7 7p14.3 5'-nucleotidase, cytosolic III protein-coding NT5C3 5'-nucleotidase, cytosolic III O cytosolic 5'-nucleotidase 3|pyrimidine 5'-nucleotidase 1|uridine 5'-monophosphate hydrolase 1 20121230 -9606 51252 FAM178B HSPC234 - HGNC:28036|Ensembl:ENSG00000168754|HPRD:14235|Vega:OTTHUMG00000155257 2 2q11.2 family with sequence similarity 178, member B protein-coding FAM178B family with sequence similarity 178, member B O protein FAM178B 20121230 -9606 51253 MRPL37 HSPC235 L37mt|MRP-L2|MRP-L37|MRPL2|RPML2 HGNC:14034|MIM:611843|Ensembl:ENSG00000116221|HPRD:14757|Vega:OTTHUMG00000008118 1 1p32.1 mitochondrial ribosomal protein L37 protein-coding MRPL37 mitochondrial ribosomal protein L37 O 39S ribosomal protein L2, mitochondrial|39S ribosomal protein L37, mitochondrial|L2mt|ribosomal protein, mitochondrial, L2 20121230 -9606 51255 RNF181 HSPC238 - HGNC:28037|MIM:612490|Ensembl:ENSG00000168894|HPRD:14236|Vega:OTTHUMG00000130182 2 2p11.2 ring finger protein 181 protein-coding RNF181 ring finger protein 181 O E3 ubiquitin-protein ligase RNF181 20121230 -9606 51256 TBC1D7 HSPC239 PIG51|TBC7|dJ257A7.3 HGNC:21066|MIM:612655|Ensembl:ENSG00000145979|HPRD:18165|Vega:OTTHUMG00000014272 6 6p24.1 TBC1 domain family, member 7 protein-coding TBC1D7 TBC1 domain family, member 7 O TBC1 domain family member 7|cell migration-inducing protein 23 20121230 -9606 51257 MARCH2 HSPC240 MARCH-II|RNF172 HGNC:28038|MIM:613332|Ensembl:ENSG00000099785|HPRD:14361 19 19p13.2 membrane-associated ring finger (C3HC4) 2, E3 ubiquitin protein ligase protein-coding MARCH2 membrane-associated ring finger (C3HC4) 2, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase MARCH2|RING finger protein 172|membrane-associated RING finger protein 2|membrane-associated RING-CH protein II 20121230 -9606 51258 MRPL51 CDA09 HSPC241|MRP64|bMRP64 HGNC:14044|MIM:611855|Ensembl:ENSG00000111639|HPRD:14769|Vega:OTTHUMG00000168512 12 12p13.3-p13.1 mitochondrial ribosomal protein L51 protein-coding MRPL51 mitochondrial ribosomal protein L51 O 39S ribosomal protein L51, mitochondrial|L51mt|MRP-L51|bMRP-64|mitochondrial ribosomal protein 64|mitochondrial ribosomal protein bMRP64 20121230 -9606 51259 TMEM216 HSPC244 - HGNC:25018|MIM:613277|Ensembl:ENSG00000187049|HPRD:14439|Vega:OTTHUMG00000168146 11 11q13.1 transmembrane protein 216 protein-coding TMEM216 transmembrane protein 216 O - 20121230 -9606 51260 PBDC1 - CXorf26 HGNC:28790|Ensembl:ENSG00000102390|HPRD:06659|Vega:OTTHUMG00000021876 X Xq13.3 polysaccharide biosynthesis domain containing 1 protein-coding PBDC1 polysaccharide biosynthesis domain containing 1 O 2610029G23Rik|UPF0368 protein Cxorf26 20121230 -9606 51263 MRPL30 HSPC249 L28MT|L30MT|MRP-L28|MRP-L30|MRPL28|MRPL28M|RPML28 HGNC:14036|MIM:611838|Ensembl:ENSG00000185414|Ensembl:ENSG00000241962|HPRD:14751|Vega:OTTHUMG00000130642 2 2q11.2 mitochondrial ribosomal protein L30 protein-coding MRPL30 mitochondrial ribosomal protein L30 O 39S ribosomal protein L28, mitochondrial|39S ribosomal protein L30, mitochondrial 20121230 -9606 51264 MRPL27 HSPC250 L27mt HGNC:14483|MIM:611837|Ensembl:ENSG00000108826|HPRD:14750|Vega:OTTHUMG00000162062 17 17q21.3-q22 mitochondrial ribosomal protein L27 protein-coding MRPL27 mitochondrial ribosomal protein L27 O 39S ribosomal protein L27, mitochondrial|MRP-L27 20121230 -9606 51265 CDKL3 - NKIAMRE HGNC:15483|MIM:608459|Ensembl:ENSG00000006837|Vega:OTTHUMG00000164185 5 5q31 cyclin-dependent kinase-like 3 protein-coding CDKL3 cyclin-dependent kinase-like 3 O serine-threonine protein kinase NKIAMRE|serine/threonine-protein kinase NKIAMRE 20121230 -9606 51266 CLEC1B UNQ721/PRO1384 1810061I13Rik|CLEC2|CLEC2B|PRO1384|QDED721 HGNC:24356|MIM:606783|Ensembl:ENSG00000165682|HPRD:09490|Vega:OTTHUMG00000168502 12 12p13.2 C-type lectin domain family 1, member B protein-coding CLEC1B C-type lectin domain family 1, member B O C-type lectin domain family 1 member B|C-type lectin-like receptor 2|C-type lectin-like receptor-2|CLEC-2 20121230 -9606 51267 CLEC1A UNQ569/PRO1131 CLEC1 HGNC:24355|MIM:606782|Ensembl:ENSG00000150048|HPRD:09489|Vega:OTTHUMG00000168504 12 12p13.2 C-type lectin domain family 1, member A protein-coding CLEC1A C-type lectin domain family 1, member A O C-type lectin domain family 1 member A|C-type lectin-like receptor-1|CLEC-1 20121230 -9606 51268 PIPOX - LPIPOX HGNC:17804|Ensembl:ENSG00000179761|HPRD:17853|Vega:OTTHUMG00000132679 17 17q11.2 pipecolic acid oxidase protein-coding PIPOX pipecolic acid oxidase O L-pipecolate oxidase|L-pipecolic acid oxidase|PSO|peroxisomal sarcosine oxidase 20121230 -9606 51270 TFDP3 RP3-358H7.2 CT30|DP4|HCA661 HGNC:24603|MIM:300772|Ensembl:ENSG00000183434|HPRD:06623|Vega:OTTHUMG00000022433 X Xq26.2 transcription factor Dp family, member 3 protein-coding TFDP3 transcription factor Dp family, member 3 O E2F-like protein|cancer/testis antigen 30|hepatocellular carcinoma-associated antigen 661|transcription factor Dp family member 3 20121230 -9606 51271 UBAP1 RP11-571F15.1 NAG20|UAP|UBAP|UBAP-1 HGNC:12461|MIM:609787|Ensembl:ENSG00000165006|HPRD:15597|Vega:OTTHUMG00000000430 9 9p13.3 ubiquitin associated protein 1 protein-coding UBAP1 ubiquitin associated protein 1 O nasopharyngeal carcinoma-associated gene 20 protein|ubiquitin-associated protein 1 20121230 -9606 51272 BET1L - BET1L1|GOLIM3|GS15|HSPC197 HGNC:19348|Ensembl:ENSG00000177951|HPRD:16547|Vega:OTTHUMG00000119071 11 11p15.5 blocked early in transport 1 homolog (S. cerevisiae)-like protein-coding BET1L blocked early in transport 1 homolog (S. cerevisiae)-like O BET1-like protein|GOS-15|golgi SNARE 15 kDa protein|golgi SNARE with a size of 15 kDa|golgi integral membrane protein 3|vesicle transport protein GOS15 20121230 -9606 51274 KLF3 - BKLF HGNC:16516|MIM:609392|Ensembl:ENSG00000109787|HPRD:13920|Vega:OTTHUMG00000097821 4 4p14 Kruppel-like factor 3 (basic) protein-coding KLF3 Kruppel-like factor 3 (basic) O CACCC-box-binding protein BKLF|Krueppel-like factor 3|TEF-2|basic Kruppel-like factor|basic krueppel-like factor|basic kruppel like factor|transcript ch138 20121230 -9606 51275 MAPKAPK5-AS1 - C12orf47 HGNC:24091|HPRD:16946 12 12q24.12 MAPKAPK5 antisense RNA 1 miscRNA MAPKAPK5-AS1 MAPKAPK5 antisense RNA 1 O - 20121230 -9606 51276 ZNF571 HSPC059 - HGNC:25000|Ensembl:ENSG00000180479|HPRD:15850|Vega:OTTHUMG00000182016 19 19q13.12 zinc finger protein 571 protein-coding ZNF571 zinc finger protein 571 O - 20121230 -9606 51277 DNAJC27 - RBJ|RabJS HGNC:30290|MIM:613527|Ensembl:ENSG00000115137|HPRD:15221|Vega:OTTHUMG00000125524 2 2p23.3 DnaJ (Hsp40) homolog, subfamily C, member 27 protein-coding DNAJC27 DnaJ (Hsp40) homolog, subfamily C, member 27 O Ras-associated protein Rap1|dnaJ homolog subfamily C member 27|rab and DnaJ domain-containing protein 20121230 -9606 51278 IER5 PP4583 SBBI48 HGNC:5393|MIM:607177|Ensembl:ENSG00000162783|HPRD:06210|Vega:OTTHUMG00000035178 1 1q25.3 immediate early response 5 protein-coding IER5 immediate early response 5 O immediate early response gene 5 protein 20121230 -9606 51279 C1RL - C1RL1|C1RLP|C1r-LP|CLSPa HGNC:21265|MIM:608974|Ensembl:ENSG00000139178|HPRD:07093|Vega:OTTHUMG00000168144 12 12p13.31 complement component 1, r subcomponent-like protein-coding C1RL complement component 1, r subcomponent-like O C1r-like protein|C1r-like serine protease analog protein|complement C1r subcomponent-like protein|complement C1r-like proteinase 20121230 -9606 51280 GOLM1 RP11-379P1.3 C9orf155|GOLPH2|GP73|PSEC0257|bA379P1.3 HGNC:15451|MIM:606804|Ensembl:ENSG00000135052|HPRD:08428|Vega:OTTHUMG00000020130 9 9q21.33 golgi membrane protein 1 protein-coding GOLM1 golgi membrane protein 1 O Golgi membrane protein 1|golgi membrane protein GP73|golgi phosphoprotein 2|golgi protein, 73-kD 20121230 -9606 51281 ANKMY1 - ZMYND13 HGNC:20987|Ensembl:ENSG00000144504|HPRD:10646|Vega:OTTHUMG00000133355 2 2q37.3 ankyrin repeat and MYND domain containing 1 protein-coding ANKMY1 ankyrin repeat and MYND domain containing 1 O ankyrin repeat and MYND domain-containing protein 1|testis specific ankyrin-like protein 1|testis-specific ankyrin-like protein 1|zinc finger MYND domain-containing protein 13 20121230 -9606 51282 SCAND1 - RAZ1|SDP1 HGNC:10566|MIM:610416|HPRD:15298 20 20q11.1-q11.23 SCAN domain containing 1 protein-coding SCAND1 SCAN domain containing 1 O SCAN domain-containing 1|SCAN domain-containing protein 1|SCAN-related protein RAZ1 20121230 -9606 51283 BFAR - BAR|RNF47 HGNC:17613|Ensembl:ENSG00000103429|HPRD:16548|Vega:OTTHUMG00000129848 16 16p13.12 bifunctional apoptosis regulator protein-coding BFAR bifunctional apoptosis regulator O RING finger protein 47|bifunctional apoptosis inhibitor 20121230 -9606 51284 TLR7 UNQ248/PRO285 - HGNC:15631|MIM:300365|Ensembl:ENSG00000196664|HPRD:02295|Vega:OTTHUMG00000021137 X Xp22.3 toll-like receptor 7 protein-coding TLR7 toll-like receptor 7 O - 20121230 -9606 51285 RASL12 - RIS HGNC:30289|Ensembl:ENSG00000103710|HPRD:15217|Vega:OTTHUMG00000133115 15 15q11.2-q22.33 RAS-like, family 12 protein-coding RASL12 RAS-like, family 12 O Ras family member Ris|ras-like protein Ris|ras-like protein family member 12 20121230 -9606 51286 CEND1 - BM88 HGNC:24153|MIM:608213|Ensembl:ENSG00000184524|HPRD:16300|Vega:OTTHUMG00000133308 11 11p15.5 cell cycle exit and neuronal differentiation 1 protein-coding CEND1 cell cycle exit and neuronal differentiation 1 O BM88 antigen|cell cycle exit and neuronal differentiation protein 1 20121230 -9606 51287 COA4 - CHCHD8|CMC3|E2IG2 HGNC:24604|MIM:608016|Ensembl:ENSG00000181924|HPRD:06421|Vega:OTTHUMG00000168061 11 11q13.4 cytochrome c oxidase assembly factor 4 homolog (S. cerevisiae) protein-coding COA4 cytochrome c oxidase assembly factor 4 homolog (S. cerevisiae) O E2-induced gene 2 protein|coiled-coil-helix-coiled-coil-helix domain containing 8|coiled-coil-helix-coiled-coil-helix domain-containing protein 8 20121230 -9606 51289 RXFP3 - GPCR135|RLN3R1|RXFPR3|SALPR HGNC:24883|MIM:609445|Ensembl:ENSG00000182631|HPRD:17979|Vega:OTTHUMG00000090685 5 5p15.1-p14 relaxin/insulin-like family peptide receptor 3 protein-coding RXFP3 relaxin/insulin-like family peptide receptor 3 O G-protein coupled receptor GPCR135|G-protein coupled receptor SALPR|RLN3 receptor 1|g protein-coupled receptor SALPR|relaxin 3 receptor 1|relaxin family peptide receptor 3|relaxin-3 receptor 1|somatostatin and angiotensin-like peptide receptor|somatostatin- and angiotensin-like peptide receptor 20121230 -9606 51290 ERGIC2 CDA14 Erv41|PTX1|cd002 HGNC:30208|MIM:612236|Ensembl:ENSG00000087502|HPRD:17932|Vega:OTTHUMG00000169322 12 12p11.22 ERGIC and golgi 2 protein-coding ERGIC2 ERGIC and golgi 2 O CD14 protein|endoplasmic reticulum-Golgi intermediate compartment protein 2 20121230 -9606 51291 GMIP - ARHGAP46 HGNC:24852|MIM:609694|Ensembl:ENSG00000089639|HPRD:11005|Vega:OTTHUMG00000182329 19 19p13.11 GEM interacting protein protein-coding GMIP GEM interacting protein O GEM-interacting protein 20121230 -9606 51292 GMPR2 - - HGNC:4377|MIM:610781|Ensembl:ENSG00000100938|HPRD:13590|Vega:OTTHUMG00000171912 14 14q12 guanosine monophosphate reductase 2 protein-coding GMPR2 guanosine monophosphate reductase 2 O GMP reductase 2|guanosine 5'-monophosphate oxidoreductase 2|guanosine monophosphate reductase isolog 20121230 -9606 51293 CD320 UNQ198/PRO224 8D6|8D6A|TCBLR HGNC:16692|MIM:606475|Ensembl:ENSG00000167775|HPRD:05929 19 19p13.3-p13.2 CD320 molecule protein-coding CD320 CD320 molecule O 8D6 antigen|CD320 antigen|FDC-SM-8D6|FDC-signaling molecule 8D6|transcobalamin receptor 20121230 -9606 51294 PCDH12 UNQ395/PRO731 VE-cadherin-2|VECAD2 HGNC:8657|MIM:605622|Ensembl:ENSG00000113555|HPRD:09287|Vega:OTTHUMG00000129658 5 5q31 protocadherin 12 protein-coding PCDH12 protocadherin 12 O VE-cad-2|VE-cadherin 2|protocadherin-12|vascular cadherin-2|vascular endothelial cadherin 2|vascular endothelial cadherin-2 20121230 -9606 51295 ECSIT - SITPEC HGNC:29548|MIM:608388|Ensembl:ENSG00000130159|HPRD:12225|Vega:OTTHUMG00000178590 19 19p13.2 ECSIT homolog (Drosophila) protein-coding ECSIT ECSIT homolog (Drosophila) O evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial|likely ortholog of mouse signaling intermediate in Toll pathway evolutionarily conserved 20121230 -9606 51296 SLC15A3 - OCTP|PHT2|PTR3 HGNC:18068|MIM:610408|Ensembl:ENSG00000110446|HPRD:11565|Vega:OTTHUMG00000167804 11 11q12.2 solute carrier family 15, member 3 protein-coding SLC15A3 solute carrier family 15, member 3 O osteoclast transporter|peptide transporter 3|peptide/histidine transporter 2|solute carrier family 15 member 3 20121230 -9606 51297 BPIFA1 UNQ787/PRO1606 LUNX|NASG|PLUNC|SPLUNC1|SPURT|bA49G10.5 HGNC:15749|MIM:607412|Ensembl:ENSG00000198183|HPRD:07594|Vega:OTTHUMG00000032243 20 20q11.2 BPI fold containing family A, member 1 protein-coding BPIFA1 BPI fold containing family A, member 1 O BPI fold-containing family A member 1|ligand-binding protein RYA3|lung-specific protein X|nasopharyngeal carcinoma-related protein|palate lung and nasal epithelium clone protein|palate, lung and nasal epithelium associated|protein Plunc|secretory protein in upper respiratory tracts|tracheal epithelium enriched protein|tracheal epithelium-enriched protein|von Ebner protein Hl 20121230 -9606 51298 THEG - CT56|THEG1 HGNC:13706|MIM:609503|Ensembl:ENSG00000105549|HPRD:15503|Vega:OTTHUMG00000165491 19 19p13.3 theg spermatid protein protein-coding THEG theg spermatid protein O Theg homolog|cancer/testis antigen 56|testicular haploid expressed gene protein|testis-specific 20121230 -9606 51299 NRN1 - NRN|dJ380B8.2 HGNC:17972|MIM:607409|Ensembl:ENSG00000124785|HPRD:07592|Vega:OTTHUMG00000014184 6 6p25.1 neuritin 1 protein-coding NRN1 neuritin 1 O neuritin 20121230 -9606 51300 TIMMDC1 UNQ247/PRO284 C3orf1 HGNC:1321|Ensembl:ENSG00000113845|HPRD:12817|Vega:OTTHUMG00000159388 3 3q13.33 translocase of inner mitochondrial membrane domain containing 1 protein-coding TIMMDC1 translocase of inner mitochondrial membrane domain containing 1 O M5-14 protein|translocase of inner mitochondrial membrane domain-containing protein 1|transmembrane protein C3orf1 20121230 -9606 51301 GCNT4 - C2GNT3 HGNC:17973|Ensembl:ENSG00000176928|HPRD:16651|Vega:OTTHUMG00000131272 5 5q12 glucosaminyl (N-acetyl) transferase 4, core 2 protein-coding GCNT4 glucosaminyl (N-acetyl) transferase 4, core 2 O beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase 4|core 2 beta-1,6-N-acetylglucosaminyltransferase 3|core 2-branching enzyme 3|core2-GlcNAc-transferase 3|glucosaminyl (N-acetyl) transferase 4, core 2 (beta-1,6-N-acetylglucosaminyltransferase) 20121230 -9606 51302 CYP39A1 - - HGNC:17449|MIM:605994|Ensembl:ENSG00000146233|HPRD:07067|Vega:OTTHUMG00000014785 6 6p21.1-p11.2 cytochrome P450, family 39, subfamily A, polypeptide 1 protein-coding CYP39A1 cytochrome P450, family 39, subfamily A, polypeptide 1 O 24-hydroxycholesterol 7-alpha-hydroxylase|cytochrome P450 39A1|cytochrome P450, subfamily XXXIX (oxysterol 7 alpha-hydroxylase), polypeptide 1|hCYP39A1|oxysterol 7-alpha-hydroxylase|oxysterol 7alpha-hydroxylase 20121230 -9606 51303 FKBP11 UNQ336/PRO535 FKBP19 HGNC:18624|MIM:610571|Ensembl:ENSG00000134285|HPRD:11170|Vega:OTTHUMG00000170402 12 12q13.12 FK506 binding protein 11, 19 kDa protein-coding FKBP11 FK506 binding protein 11, 19 kDa O 19 kDa FK506-binding protein|19 kDa FKBP|FK506-binding protein 11|FKBP-11|FKBP-19|PPIase FKBP11|peptidyl-prolyl cis-trans isomerase FKBP11|rotamase 20121230 -9606 51304 ZDHHC3 HSD49 DHHC-3|GODZ|ZNF373 HGNC:18470|Ensembl:ENSG00000163812|HPRD:15718|Vega:OTTHUMG00000133093 3 3p21.31 zinc finger, DHHC-type containing 3 protein-coding ZDHHC3 zinc finger, DHHC-type containing 3 O DHHC1 protein|Golgi apparatus-specific protein with DHHC zinc finger domain|golgi-specific DHHC Zinc Finger Protein|palmitoyltransferase ZDHHC3|zinc finger DHHC domain-containing protein 3|zinc finger protein 373|zinc finger, DHHC domain containing 3 20121230 -9606 51305 KCNK9 - K2p9.1|KT3.2|TASK-3|TASK3 HGNC:6283|MIM:605874|Ensembl:ENSG00000169427|HPRD:16167|Vega:OTTHUMG00000164186 8 8q24.3 potassium channel, subfamily K, member 9 protein-coding KCNK9 potassium channel, subfamily K, member 9 O TWIK-related acid-sensitive K(+) channel 3|TWIK-related acid-sensitive K+ channel 3|acid-sensitive potassium channel protein TASK-3|potassium channel TASK3|potassium channel subfamily K member 9|two pore K(+) channel KT3.2|two pore potassium channel KT3.2 20121230 -9606 51306 FAM13B - ARHGAP49|C5orf5|FAM13B1|KHCHP|N61 HGNC:1335|MIM:609371|Ensembl:ENSG00000031003|HPRD:06464|Vega:OTTHUMG00000129202 5 5q31 family with sequence similarity 13, member B protein-coding FAM13B family with sequence similarity 13, member B O GAP-like protein N61|family with sequence similarity 13, member B1|protein FAM13B 20121230 -9606 51307 FAM53C - C5orf6 HGNC:1336|MIM:609372|Ensembl:ENSG00000120709|HPRD:10785|Vega:OTTHUMG00000129201 5 5q31 family with sequence similarity 53, member C protein-coding FAM53C family with sequence similarity 53, member C O protein FAM53C|putative nuclear protein 20121230 -9606 51308 REEP2 - C5orf19|SGC32445 HGNC:17975|MIM:609347|Ensembl:ENSG00000132563|HPRD:16655|Vega:OTTHUMG00000129205 5 5q31 receptor accessory protein 2 protein-coding REEP2 receptor accessory protein 2 O receptor expression-enhancing protein 2 20121230 -9606 51309 ARMCX1 LL0XNC01-61B11.1 ALEX1 HGNC:18073|MIM:300362|Ensembl:ENSG00000126947|HPRD:02292|Vega:OTTHUMG00000022033 X Xq21.33-q22.2 armadillo repeat containing, X-linked 1 protein-coding ARMCX1 armadillo repeat containing, X-linked 1 O ARM protein lost in epithelial cancers on chromosome X 1|arm protein lost in epithelial cancers, X chromosome, 1|armadillo repeat-containing X-linked protein 1 20121230 -9606 51310 SLC22A17 - 24p3R|BOCT|BOIT|NGALR|NGALR2|NGALR3|hBOIT HGNC:23095|MIM:611461|Ensembl:ENSG00000092096|HPRD:15349|Vega:OTTHUMG00000028740 14 14q11.2 solute carrier family 22, member 17 protein-coding SLC22A17 solute carrier family 22, member 17 O 24p3 receptor|NGAL receptor|brain-type organic cation transporter|lipocalin-2 receptor|neutrophil gelatinase-associated lipocalin receptor|potent brain type organic ion transporter|solute carrier family 22 (organic cation transporter), member 17|solute carrier family 22 member 17 20121230 -9606 51311 TLR8 UNQ249/PRO286 CD288 HGNC:15632|MIM:300366|Ensembl:ENSG00000101916|HPRD:02296|Vega:OTTHUMG00000021145 X Xp22 toll-like receptor 8 protein-coding TLR8 toll-like receptor 8 O - 20121230 -9606 51312 SLC25A37 HT015 MFRN|MFRN1|MSC|MSCP|PRO1278|PRO1584|PRO2217 HGNC:29786|MIM:610387|Ensembl:ENSG00000147454|HPRD:17605|Vega:OTTHUMG00000163865 8 8p21.2 solute carrier family 25 (mitochondrial iron transporter), member 37 protein-coding SLC25A37 solute carrier family 25 (mitochondrial iron transporter), member 37 O mitochondrial iron transporter 1|mitochondrial solute carrier protein|mitoferrin|mitoferrin-1|predicted protein of HQ2217|solute carrier family 25, member 37 20121230 -9606 51313 FAM198B AD021 AD036|C4orf18 HGNC:25312|Ensembl:ENSG00000164125|HPRD:13194|Vega:OTTHUMG00000161537 4 4q32.1 family with sequence similarity 198, member B protein-coding FAM198B family with sequence similarity 198, member B O expressed in nerve and epithelium during development|protein FAM198B 20121230 -9606 51314 NME8 - CILD6|NM23-H8|SPTRX2|TXNDC3|sptrx-2 HGNC:16473|MIM:607421|Ensembl:ENSG00000086288|HPRD:16243|Vega:OTTHUMG00000023716 7 7p14.1 NME/NM23 family member 8 protein-coding NME8 NME/NM23 family member 8 O sperm-specific thioredoxin 2|spermatid-specific thioredoxin-2|thioredoxin domain containing 3 (spermatozoa)|thioredoxin domain-containing protein 3 20121230 -9606 51315 KRCC1 BM-003 CHBP2 HGNC:28039|Ensembl:ENSG00000172086|HPRD:11269|Vega:OTTHUMG00000130315 2 2p11.2 lysine-rich coiled-coil 1 protein-coding KRCC1 lysine-rich coiled-coil 1 O cryptogenic hepatitis binding protein|cryptogenic hepatitis-binding protein 2|lysine-rich coiled-coil protein 1 20121230 -9606 51316 PLAC8 BM-004 C15|onzin HGNC:19254|MIM:607515|Ensembl:ENSG00000145287|HPRD:06335|Vega:OTTHUMG00000130294 4 4q21.22 placenta-specific 8 protein-coding PLAC8 placenta-specific 8 O placenta-specific gene 8 protein 20121230 -9606 51317 PHF21A BM-006 BHC80 HGNC:24156|MIM:608325|Ensembl:ENSG00000135365|Vega:OTTHUMG00000167038 11 11p11.2 PHD finger protein 21A protein-coding PHF21A PHD finger protein 21A O BHC80a|BRAF35-HDAC complex protein BHC80|BRAF35/HDAC2 complex (80 kDa) 20121230 -9606 51318 MRPL35 BM-007 L35mt|MRP-L35 HGNC:14489|MIM:611841|Ensembl:ENSG00000132313|HPRD:14755|Vega:OTTHUMG00000037385 2 2p11.2 mitochondrial ribosomal protein L35 protein-coding MRPL35 mitochondrial ribosomal protein L35 O 39S ribosomal protein L35, mitochondrial 20121230 -9606 51319 RSRC1 BM-011 SFRS21|SRrp53 HGNC:24152|MIM:613352|Ensembl:ENSG00000174891|HPRD:18006|Vega:OTTHUMG00000158758 3 3q25.32 arginine/serine-rich coiled-coil 1 protein-coding RSRC1 arginine/serine-rich coiled-coil 1 O arginine/serine-rich coiled-coil protein 1|serine/Arginine-related protein 53|splicing factor, arginine/serine-rich 21 20121230 -9606 51320 MEX3C BM-013 MEX-3C|RKHD2|RNF194 HGNC:28040|MIM:611005|Ensembl:ENSG00000176624|HPRD:15255|Vega:OTTHUMG00000132693 18 18q21.2 mex-3 homolog C (C. elegans) protein-coding MEX3C mex-3 homolog C (C. elegans) O RING finger and KH domain-containing protein 2|RING finger protein 194|RNA-binding E3 ubiquitin-protein ligase MEX3C|RNA-binding protein MEX3C|ring finger and KH domain containing 2 20121230 -9606 51321 AMZ2 BM-014 - HGNC:28041|Ensembl:ENSG00000196704|HPRD:14237|Vega:OTTHUMG00000179802 17 17q24.2 archaelysin family metallopeptidase 2 protein-coding AMZ2 archaelysin family metallopeptidase 2 O archaemetzincin-2|archaemetzincins-2|archeobacterial metalloproteinase-like protein 2 20121230 -9606 51322 WAC RP11-48B24.1 BM-016|PRO1741|Wwp4 HGNC:17327|Ensembl:ENSG00000095787|HPRD:18291|Vega:OTTHUMG00000017872 10 - WW domain containing adaptor with coiled-coil protein-coding WAC WW domain containing adaptor with coiled-coil O WW domain-containing adapter protein with coiled-coil 20121230 -9606 51324 SPG21 BM-019 ACP33|GL010|MASPARDIN|MAST HGNC:20373|MIM:608181|Ensembl:ENSG00000090487|HPRD:10492|Vega:OTTHUMG00000133098 15 15q21-q22 spastic paraplegia 21 (autosomal recessive, Mast syndrome) protein-coding SPG21 spastic paraplegia 21 (autosomal recessive, Mast syndrome) O acid cluster protein 33|maspardin|spastic paraplegia 21 autosomal recessive Mast syndrome protein|spastic paraplegia 21 protein 20121230 -9606 51326 ARL17A - ARF1P2|ARL17P1 HGNC:24096|Ensembl:ENSG00000185829|HPRD:17424|Vega:OTTHUMG00000132817 17 17q21.31 ADP-ribosylation factor-like 17A protein-coding ARL17A ADP-ribosylation factor-like 17A O ADP-ribosylation factor 1 pseudogene 2|ADP-ribosylation factor 7|ADP-ribosylation factor-like 17 pseudogene 1|ADP-ribosylation factor-like 17-like 20121230 -9606 51327 AHSP - EDRF|ERAF HGNC:18075|MIM:605821|Ensembl:ENSG00000169877|HPRD:12052|Vega:OTTHUMG00000132461 16 16p11.2 alpha hemoglobin stabilizing protein protein-coding AHSP alpha hemoglobin stabilizing protein O alpha hemoglobin stabilising protein|alpha-hemoglobin-stabilizing protein|erythroid associated factor|erythroid differentiation associated factor|erythroid differentiation-related factor|erythroid-associated factor 20121230 -9606 51329 ARL6IP4 - SFRS20|SR-25|SRp25|SRrp37 HGNC:18076|MIM:607668|Ensembl:ENSG00000182196|HPRD:09640|Vega:OTTHUMG00000168779 12 12q24.31 ADP-ribosylation-like factor 6 interacting protein 4 protein-coding ARL6IP4 ADP-ribosylation-like factor 6 interacting protein 4 O ADP-ribosylation factor-like protein 6-interacting protein 4|ARL-6-interacting protein 4|HSP-975|HSVI binding protein|HSVI-binding protein|SR-15|SRp25 nuclear protein|aip-4|splicing factor, arginine/serine-rich 20|splicing regulator SRrp38 20121230 -9606 51330 TNFRSF12A - CD266|FN14|TWEAKR HGNC:18152|MIM:605914|Ensembl:ENSG00000006327|HPRD:05801|Vega:OTTHUMG00000129001 16 16p13.3 tumor necrosis factor receptor superfamily, member 12A protein-coding TNFRSF12A tumor necrosis factor receptor superfamily, member 12A O FGF-inducible 14|fibroblast growth factor-inducible immediate-early response protein 14|tumor necrosis factor receptor superfamily member 12A|tweak-receptor|type I transmembrane protein Fn14 20121230 -9606 51332 SPTBN5 - BSPECV|HUBSPECV|HUSPECV HGNC:15680|MIM:605916|Ensembl:ENSG00000137877|HPRD:10438|Vega:OTTHUMG00000172720 15 15q21 spectrin, beta, non-erythrocytic 5 protein-coding SPTBN5 spectrin, beta, non-erythrocytic 5 O beta V spectrin|beta-V spectrin|spectrin beta chain, brain 4|spectrin beta chain, non-erythrocytic 5|spectrin, non-erythroid beta chain 4 20121230 -9606 51333 ZNF771 - DSC43 HGNC:29653|Ensembl:ENSG00000179965|HPRD:14238|Vega:OTTHUMG00000176985 16 16p11.2 zinc finger protein 771 protein-coding ZNF771 zinc finger protein 771 O mesenchymal stem cell protein DSC43 20121230 -9606 51334 PRR16 - DSC54 HGNC:29654|Ensembl:ENSG00000184838|HPRD:14239|Vega:OTTHUMG00000128903 5 5q23.1 proline rich 16 protein-coding PRR16 proline rich 16 O mesenchymal stem cell protein DSC54|proline-rich protein 16 20121230 -9606 51335 NGRN HT020 DSC92 HGNC:18077|Ensembl:ENSG00000182768|HPRD:14825|Vega:OTTHUMG00000149807 15 15q26.1 neugrin, neurite outgrowth associated protein-coding NGRN neugrin, neurite outgrowth associated O mesenchymal stem cell protein DSC92|neugrin|neurite outgrowth associated protein|neurite outgrowth-associated protein|spinal cord-derived protein FI58G 20121230 -9606 51337 THEM6 PSEC0098 C8orf55|DSCD75 HGNC:29656|Ensembl:ENSG00000130193|HPRD:14241|Vega:OTTHUMG00000164673 8 8q24.3 thioesterase superfamily member 6 protein-coding THEM6 thioesterase superfamily member 6 O UPF0670 protein C8orf55|UPF0670 protein THEM6|mesenchymal stem cell protein DSCD75 20121230 -9606 51338 MS4A4A HDCME31P 4SPAN1|CD20-L1|CD20L1|MS4A4|MS4A7 HGNC:13371|MIM:606547|Ensembl:ENSG00000110079|HPRD:08408|Vega:OTTHUMG00000154949 11 11q12 membrane-spanning 4-domains, subfamily A, member 4A protein-coding MS4A4A membrane-spanning 4-domains, subfamily A, member 4A O CD20 antigen-like 1|Fc epsilon receptor beta subunit homolog|four-span transmembrane protein 1|membrane-spanning 4-domains subfamily A member 4A|membrane-spanning 4-domains, subfamily A, member 4 20121230 -9606 51339 DACT1 - DAPPER|DAPPER1|DPR1|FRODO|HDPR1|THYEX3 HGNC:17748|MIM:607861|Ensembl:ENSG00000165617|HPRD:09709|Vega:OTTHUMG00000140324 14 14q23.1 dapper, antagonist of beta-catenin, homolog 1 (Xenopus laevis) protein-coding DACT1 dapper, antagonist of beta-catenin, homolog 1 (Xenopus laevis) O dapper antagonist of catenin 1|dapper homolog 1|hepatocellular carcinoma novel gene 3 protein|heptacellular carcinoma novel gene 3 20121230 -9606 51340 CRNKL1 RP5-1002M8.1 CLF|CRN|Clf1|HCRN|MSTP021|SYF3 HGNC:15762|MIM:610952|Ensembl:ENSG00000101343|HPRD:09898|Vega:OTTHUMG00000032000 20 20p11.2 crooked neck pre-mRNA splicing factor-like 1 (Drosophila) protein-coding CRNKL1 crooked neck pre-mRNA splicing factor-like 1 (Drosophila) O Crn, crooked neck-like 1|crooked neck homolog|crooked neck-like 1|crooked neck-like protein 1 20121230 -9606 51341 ZBTB7A - FBI-1|FBI1|LRF|ZBTB7|ZNF857A|pokemon HGNC:18078|MIM:605878|Ensembl:ENSG00000178951|HPRD:10433 19 19p13.3 zinc finger and BTB domain containing 7A protein-coding ZBTB7A zinc finger and BTB domain containing 7A O HIV-1 1st-binding protein 1|HIV-1 inducer of short transcripts binding protein|POK erythroid myeloid ontogenic factor|POZ and Krueppel erythroid myeloid ontogenic factor|TIP21|TTF-I-interacting peptide 21|factor binding IST protein 1|factor that binds to inducer of short transcripts protein 1|leukemia/lymphoma-related factor|lymphoma related factor|zinc finger and BTB domain containing 7A, HIV-1 inducer of short transcripts binding protein|zinc finger and BTB domain-containing protein 7A|zinc finger protein 857A 20121230 -9606 51343 FZR1 - CDC20C|CDH1|FZR|FZR2|HCDH|HCDH1 HGNC:24824|MIM:603619|Ensembl:ENSG00000105325|HPRD:04687|Vega:OTTHUMG00000180747 19 19p13.3 fizzy/cell division cycle 20 related 1 (Drosophila) protein-coding FZR1 fizzy/cell division cycle 20 related 1 (Drosophila) O CDC20-like 1b|CDC20-like protein 1|cdh1/Hct1 homolog|fizzy-related protein homolog 20121230 -9606 51347 TAOK3 - DPK|JIK|MAP3K18 HGNC:18133|Ensembl:ENSG00000135090|HPRD:11620|Vega:OTTHUMG00000168875 12 12q TAO kinase 3 protein-coding TAOK3 TAO kinase 3 O CTCL-associated antigen HD-CL-09|JNK/SAPK-inhibitory kinase|STE20-like kinase|cutaneous T-cell lymphoma-associated antigen HD-CL-09|dendritic cell-derived protein kinase|hKFC-A|jun kinase-inhibitory kinase|kinase from chicken homolog A|serine/threonine-protein kinase TAO3|thousand and one amino acid protein 3 20121230 -9606 51348 KLRF1 - CLEC5C|NKp80 HGNC:13342|MIM:605029|Ensembl:ENSG00000150045|HPRD:05432|Vega:OTTHUMG00000168391 12 12p13.31 killer cell lectin-like receptor subfamily F, member 1 protein-coding KLRF1 killer cell lectin-like receptor subfamily F, member 1 O C-type lectin domain family 5 member C|activating coreceptor NKp80|killer cell lectin-like receptor F1|killer cell lectin-like receptor subfamily F member 1|lectin-like receptor F1 20121230 -9606 51350 KRT76 - HUMCYT2A|KRT2B|KRT2P HGNC:24430|Ensembl:ENSG00000185069|HPRD:17123|Vega:OTTHUMG00000169797 12 12q13.13 keratin 76 protein-coding KRT76 keratin 76 O CK-2P|K2P|K76|cytokeratin 2|cytokeratin-2P|keratin 2p|keratin, type II cytoskeletal 2 oral|keratin-76|type-II keratin Kb9 20121230 -9606 51351 ZNF117 - H-plk|HPF9 HGNC:12897|MIM:194624|Ensembl:ENSG00000152926|HPRD:08937|HPRD:13619|Vega:OTTHUMG00000156631 7 7q11.21 zinc finger protein 117 protein-coding ZNF117 zinc finger protein 117 O Krueppel-related zinc finger protein|provirus-linked krueppel|zinc finger protein HPF9 20121230 -9606 51352 WT1-AS - WIT-1|WIT1|WT1-AS1|WT1AS|dJ74J1.1 HGNC:18135|MIM:607899|HPRD:07439 11 11p13 WT1 antisense RNA miscRNA WT1-AS WT1 antisense RNA O - 20121230 -9606 51359 ERVH-4 - HERV-HD1|HSU88895 HGNC:21344 14 - endogenous retrovirus group H, member 4 unknown ERVH-4 endogenous retrovirus group H, member 4 O - 20121017 -9606 51360 MBTPS2 - BRESEK|IFAP|KFSDX|S2P HGNC:15455|MIM:300294|Ensembl:ENSG00000012174|HPRD:02243|Vega:OTTHUMG00000021237 X Xp22.12-p22.11 membrane-bound transcription factor peptidase, site 2 protein-coding MBTPS2 membrane-bound transcription factor peptidase, site 2 O SREBPs intramembrane protease|endopeptidase S2P|membrane-bound transcription factor protease, site 2|membrane-bound transcription factor site-2 protease|sterol regulatory element-binding proteins intramembrane protease 20121230 -9606 51361 HOOK1 - HK1 HGNC:19884|MIM:607820|Ensembl:ENSG00000134709|HPRD:07428|Vega:OTTHUMG00000008990 1 1p32.1 hook homolog 1 (Drosophila) protein-coding HOOK1 hook homolog 1 (Drosophila) O h-hook1|hHK1|protein Hook homolog 1 20121230 -9606 51362 CDC40 RP1-71D21.3 EHB3|PRP17|PRPF17 HGNC:17350|MIM:605585|Ensembl:ENSG00000168438|HPRD:05721|Vega:OTTHUMG00000015358 6 6q21 cell division cycle 40 homolog (S. cerevisiae) protein-coding CDC40 cell division cycle 40 homolog (S. cerevisiae) O EH-binding protein 3|PRP17 homolog|hPRP17|pre-mRNA splicing factor 17|pre-mRNA-processing factor 17 20121230 -9606 51363 CHST15 - BRAG|GALNAC4S-6ST|RP11-47G11.1 HGNC:18137|MIM:608277|Ensembl:ENSG00000182022|HPRD:12203|Vega:OTTHUMG00000019208 10 10q26 carbohydrate (N-acetylgalactosamine 4-sulfate 6-O) sulfotransferase 15 protein-coding CHST15 carbohydrate (N-acetylgalactosamine 4-sulfate 6-O) sulfotransferase 15 O B cell RAG associated protein (GALNAC4S-6ST)|B-cell RAG-associated gene protein|carbohydrate sulfotransferase 15|hBRAG 20121230 -9606 51364 ZMYND10 LUCA12.4 BLU|FLU HGNC:19412|MIM:607070|Ensembl:ENSG00000004838|HPRD:06145|Vega:OTTHUMG00000156874 3 3p21.3 zinc finger, MYND-type containing 10 protein-coding ZMYND10 zinc finger, MYND-type containing 10 O protein BLu|zinc finger MYND domain-containing protein 10|zinc finger, MYND domain containing 10 20121230 -9606 51365 PLA1A - PS-PLA1|PSPLA1 HGNC:17661|MIM:607460|Ensembl:ENSG00000144837|HPRD:07078|Vega:OTTHUMG00000159425 3 3q13.13-q13.2 phospholipase A1 member A protein-coding PLA1A phospholipase A1 member A O phosphatidylserine-specific phospholipase A1alpha 20121230 -9606 51366 UBR5 - DD5|EDD|EDD1|HYD HGNC:16806|MIM:608413|Ensembl:ENSG00000104517|HPRD:06436|Vega:OTTHUMG00000164755 8 8q22 ubiquitin protein ligase E3 component n-recognin 5 protein-coding UBR5 ubiquitin protein ligase E3 component n-recognin 5 O E3 identified by differential display|E3 ubiquitin protein ligase, HECT domain containing, 1|E3 ubiquitin-protein ligase UBR5|E3 ubiquitin-protein ligase, HECT domain-containing 1|hHYD|hyperplastic discs protein homolog|progestin induced protein|progestin-induced protein|ubiquitin-protein ligase 20121230 -9606 51367 POP5 AD-008 HSPC004|RPP2|RPP20|hPop5 HGNC:17689|MIM:609992|Ensembl:ENSG00000167272|HPRD:15158|Vega:OTTHUMG00000169023 12 12q24.31 processing of precursor 5, ribonuclease P/MRP subunit (S. cerevisiae) protein-coding POP5 processing of precursor 5, ribonuclease P/MRP subunit (S. cerevisiae) O ribonuclease P/MRP protein subunit POP5 20121230 -9606 51368 TEX264 UNQ337/PRO536 SIG11|ZSIG11 HGNC:30247|Ensembl:ENSG00000164081|HPRD:15492|Vega:OTTHUMG00000156901 3 3p21.31 testis expressed 264 protein-coding TEX264 testis expressed 264 O putative secreted protein ZSIG11|testis expressed gene 264|testis-expressed sequence 264 protein 20121230 -9606 51371 POMP HSPC014 C13orf12|PNAS-110|UMP1 HGNC:20330|MIM:613386|Ensembl:ENSG00000132963|HPRD:12613|Vega:OTTHUMG00000016652 13 13q12.3 proteasome maturation protein protein-coding POMP proteasome maturation protein O 2510048O06Rik|hUMP1|proteassemblin|protein UMP1 homolog|voltage-gated K channel beta subunit 4.1|voltage-gated potassium channel beta subunit 4.1 20121230 -9606 51372 TMA7 HSPC016 CCDC72 HGNC:26932|Ensembl:ENSG00000232112|HPRD:13686|Vega:OTTHUMG00000156588 3 3p21.31 translational machinery associated 7 homolog (S. cerevisiae) protein-coding TMA7 translational machinery associated 7 homolog (S. cerevisiae) O coiled-coil domain containing 72|coiled-coil domain-containing protein 72|translation machinery-associated protein 7 20121230 -9606 51373 MRPS17 - HSPC011|MRP-S17|RPMS17|S17mt HGNC:14047|MIM:611980|Ensembl:ENSG00000239789|HPRD:14779|Vega:OTTHUMG00000023153 7 7p11 mitochondrial ribosomal protein S17 protein-coding MRPS17 mitochondrial ribosomal protein S17 O 28S ribosomal protein S17, mitochondrial 20121230 -9606 51374 ATRAID HSPC013 APR--3|APR-3|APR3|C2orf28|PRO240|p18 HGNC:24090|Ensembl:ENSG00000138085|HPRD:16652|Vega:OTTHUMG00000128405 2 2p23.3 all-trans retinoic acid-induced differentiation factor protein-coding ATRAID all-trans retinoic acid-induced differentiation factor O apoptosis related protein 3|apoptosis related protein APR-3|apoptosis-related protein 3 20121230 -9606 51375 SNX7 RP11-296E3.1 - HGNC:14971|MIM:614904|Ensembl:ENSG00000162627|HPRD:15416|Vega:OTTHUMG00000010723 1 1p21.3 sorting nexin 7 protein-coding SNX7 sorting nexin 7 O sorting nexin-7 20121230 -9606 51377 UCHL5 RP11-101E13.2 CGI-70|INO80R|UCH-L5|UCH37 HGNC:19678|MIM:610667|Ensembl:ENSG00000116750|HPRD:10293|Vega:OTTHUMG00000035561 1 1q32 ubiquitin carboxyl-terminal hydrolase L5 protein-coding UCHL5 ubiquitin carboxyl-terminal hydrolase L5 O INO80 complex subunit R|ubiquitin C-terminal hydrolase UCH37|ubiquitin carboxyl-terminal esterase L5|ubiquitin carboxyl-terminal hydrolase isozyme L5|ubiquitin thioesterase L5 20121230 -9606 51378 ANGPT4 - AGP4|ANG-3|ANG4 HGNC:487|MIM:603705|Ensembl:ENSG00000101280|HPRD:04747|Vega:OTTHUMG00000031652 20 20p13 angiopoietin 4 protein-coding ANGPT4 angiopoietin 4 O ANG-4|angiopoietin-3|angiopoietin-4|dJ824F16.2 (angiopoietin 4) 20121230 -9606 51379 CRLF3 - CREME-9|CREME9|CRLM9|CYTOR4|FRWS|p48.2 HGNC:17177|MIM:614853|Ensembl:ENSG00000176390|HPRD:16757|Vega:OTTHUMG00000179005 17 17q11.2 cytokine receptor-like factor 3 protein-coding CRLF3 cytokine receptor-like factor 3 O cytokine receptor-like molecule 9|cytokine receptor-related protein 4|type I cytokine receptor-like factor p48 20121230 -9606 51380 CSAD - CSD|PCAP HGNC:18966|Ensembl:ENSG00000139631|HPRD:16763|Vega:OTTHUMG00000048076 12 12q13.11-q14.3 cysteine sulfinic acid decarboxylase protein-coding CSAD cysteine sulfinic acid decarboxylase O P-selectin cytoplasmic tail-associated protein|cysteine sulfinic acid decarboxylase-related protein|cysteine-sulfinate decarboxylase|sulfinoalanine decarboxylase 20121230 -9606 51382 ATP6V1D - ATP6M|VATD|VMA8 HGNC:13527|MIM:609398|Ensembl:ENSG00000100554|HPRD:16524|Vega:OTTHUMG00000171244 14 14q23-q24.2 ATPase, H+ transporting, lysosomal 34kDa, V1 subunit D protein-coding ATP6V1D ATPase, H+ transporting, lysosomal 34kDa, V1 subunit D O ATPase, H+ transporting lysosomal, member M|ATPase, H+ transporting, lysosomal (vacuolar proton pump)|H(+)-transporting two-sector ATPase, subunit M|V-ATPase 28 kDa accessory protein|V-ATPase D subunit|V-ATPase subunit D|V-type proton ATPase subunit D|vacuolar ATP synthase subunit D|vacuolar H-ATPase subunit D|vacuolar proton pump D subunit|vacuolar proton pump delta polypeptide|vacuolar proton pump subunit D|vacuolar proton-ATPase subunit D 20121230 -9606 51384 WNT16 - - HGNC:16267|MIM:606267|Ensembl:ENSG00000002745|HPRD:05882|Vega:OTTHUMG00000156963 7 7q31 wingless-type MMTV integration site family, member 16 protein-coding WNT16 wingless-type MMTV integration site family, member 16 O protein Wnt-16|wingless-type MMTV integration site family member 16b 20121230 -9606 51385 ZNF589 - SZF1 HGNC:16747|Ensembl:ENSG00000164048|HPRD:15865|Vega:OTTHUMG00000156833 3 3p21 zinc finger protein 589 protein-coding ZNF589 zinc finger protein 589 O KRAB-zinc finger protein SZF1-1|stem cell zinc finger protein 1 20121230 -9606 51386 EIF3L AL022311.1 EIF3EIP|EIF3S11|EIF3S6IP|HSPC021|HSPC025|MSTP005 HGNC:18138|Ensembl:ENSG00000100129|HPRD:10932|Vega:OTTHUMG00000150671 22 22q eukaryotic translation initiation factor 3, subunit L protein-coding EIF3L eukaryotic translation initiation factor 3, subunit L O eIEF associated protein HSPC021|eukaryotic translation initiation factor 3 subunit 6-interacting protein|eukaryotic translation initiation factor 3 subunit E-interacting protein|eukaryotic translation initiation factor 3 subunit L 20121230 -9606 51388 NIP7 CGI-37 HSPC031|KD93 HGNC:24328|Ensembl:ENSG00000132603|HPRD:16709|Vega:OTTHUMG00000137568 16 16q22.1 nuclear import 7 homolog (S. cerevisiae) protein-coding NIP7 nuclear import 7 homolog (S. cerevisiae) O 60S ribosome subunit biogenesis protein NIP7 homolog 20121230 -9606 51389 RWDD1 CGI-24 PTD013 HGNC:20993|Ensembl:ENSG00000111832|HPRD:15286|Vega:OTTHUMG00000015441 6 6q13-q22.33 RWD domain containing 1 protein-coding RWDD1 RWD domain containing 1 O DRG family-regulatory protein 2|RWD domain-containing protein 1 20121230 -9606 51390 AIG1 RP1-95L4.1 AIG-1|dJ95L4.1 HGNC:21607|MIM:608514|Ensembl:ENSG00000146416|HPRD:16346|Vega:OTTHUMG00000015721 6 6q24.2 androgen-induced 1 protein-coding AIG1 androgen-induced 1 O androgen-induced gene 1 protein 20121230 -9606 51393 TRPV2 - VRL|VRL-1|VRL1 HGNC:18082|MIM:606676|Ensembl:ENSG00000187688|HPRD:05980|Vega:OTTHUMG00000058989 17 17p11.2 transient receptor potential cation channel, subfamily V, member 2 protein-coding TRPV2 transient receptor potential cation channel, subfamily V, member 2 O OTRPC2|osm-9-like TRP channel 2|transient receptor potential cation channel subfamily V member 2|vanilloid receptor-like protein 1 20121230 -9606 51397 COMMD10 HSPC305 PTD002 HGNC:30201|Ensembl:ENSG00000145781|HPRD:16734|Vega:OTTHUMG00000162922 5 5q23.1 COMM domain containing 10 protein-coding COMMD10 COMM domain containing 10 O COMM domain-containing protein 10 20121230 -9606 51398 WDR83OS CGI-140 C19orf56|PTD008 HGNC:30203|Ensembl:ENSG00000105583|HPRD:17922 19 19p13.2 WD repeat domain 83 opposite strand protein-coding WDR83OS WD repeat domain 83 opposite strand O UPF0139 membrane protein C19orf56|WDR83 opposite strand|protein Asterix 20121230 -9606 51399 TRAPPC4 CGI-104 HSPC172|PTD009|SBDN|SYNBINDIN|TRS23 HGNC:19943|MIM:610971|Ensembl:ENSG00000196655|HPRD:18220|Vega:OTTHUMG00000166351 11 11q23.3 trafficking protein particle complex 4 protein-coding TRAPPC4 trafficking protein particle complex 4 O TRS23 homolog|hematopoietic stem/progenitor cell protein 172|trafficking protein particle complex subunit 4 20121230 -9606 51400 PPME1 PP2593 PME-1 HGNC:30178|MIM:611117|Ensembl:ENSG00000214517|HPRD:17864|Vega:OTTHUMG00000168115 11 11q13.4 protein phosphatase methylesterase 1 protein-coding PPME1 protein phosphatase methylesterase 1 O protein phosphatase methylesterase-1 20121230 -9606 51406 NOL7 RP1-223E5.1 C6orf90|PQBP3|RARG-1|dJ223E5.2 HGNC:21040|MIM:611533|Ensembl:ENSG00000225921|HPRD:17641|Vega:OTTHUMG00000014277 6 6p23 nucleolar protein 7, 27kDa protein-coding NOL7 nucleolar protein 7, 27kDa O nucleolar protein 7|nucleolar protein of 27 kDa|polyglutamine binding protein 3|retinoic acid repressible protein 20121230 -9606 51409 HEMK1 - HEMK|MTQ1 HGNC:24923|Ensembl:ENSG00000114735|HPRD:13645|Vega:OTTHUMG00000156849 3 3p21.3 HemK methyltransferase family member 1 protein-coding HEMK1 HemK methyltransferase family member 1 O HEMK homolog 7kb|hemK methyltransferase family member 1|m.HsaHemKP 20121230 -9606 51411 BIN2 - BRAP-1 HGNC:1053|MIM:605936|Ensembl:ENSG00000110934|HPRD:05805 12 12q13 bridging integrator 2 protein-coding BIN2 bridging integrator 2 O breast cancer associated protein BRAP1|breast cancer-associated protein 1|bridging integrator-2 20121230 -9606 51412 ACTL6B - ACTL6|BAF53B HGNC:160|MIM:612458|Ensembl:ENSG00000077080|HPRD:12419|Vega:OTTHUMG00000159661 7 7q22 actin-like 6B protein-coding ACTL6B actin-like 6B O 53 kDa BRG1-associated factor B|BRG1-associated factor 53B|actin-like 6|actin-like protein 6B|actin-related protein Baf53b|arpNalpha|hArpN alpha 20121230 -9606 51421 AMOTL2 - LCCP HGNC:17812|MIM:614658|Ensembl:ENSG00000114019|HPRD:16485|Vega:OTTHUMG00000159777 3 3q21-q22 angiomotin like 2 protein-coding AMOTL2 angiomotin like 2 O Leman coiled-coil protein|angiomotin-like protein 2 20121230 -9606 51422 PRKAG2 - AAKG|AAKG2|CMH6|H91620p|WPWS HGNC:9386|MIM:602743|Ensembl:ENSG00000106617|HPRD:04119|Vega:OTTHUMG00000157324 7 7q36.1 protein kinase, AMP-activated, gamma 2 non-catalytic subunit protein-coding PRKAG2 protein kinase, AMP-activated, gamma 2 non-catalytic subunit O 5'-AMP-activated protein kinase subunit gamma-2|AMPK subunit gamma-2 20121230 -9606 51426 POLK - DINB1|DINP|POLQ HGNC:9183|MIM:605650|Ensembl:ENSG00000122008|HPRD:09291|Vega:OTTHUMG00000102107 5 5q13 polymerase (DNA directed) kappa protein-coding POLK polymerase (DNA directed) kappa O DNA polymerase kappa 20121230 -9606 51427 ZNF107 - Y8|ZFD25|ZNF588|smap-7 HGNC:12887|MIM:603989|Ensembl:ENSG00000196247|HPRD:18669|Vega:OTTHUMG00000129433 7 7q11.2 zinc finger protein 107 protein-coding ZNF107 zinc finger protein 107 O C2H2 type zinc-finger protein|zinc finger protein (ZFD25)|zinc finger protein 588|zinc finger protein ZFD25 20121230 -9606 51428 DDX41 - ABS HGNC:18674|MIM:608170|Ensembl:ENSG00000183258|HPRD:10490|Vega:OTTHUMG00000130858 5 5q35.3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 41 protein-coding DDX41 DEAD (Asp-Glu-Ala-Asp) box polypeptide 41 O 2900024F02Rik|DEAD box protein 41|DEAD box protein abstrakt homolog|DEAD-box protein abstrakt|probable ATP-dependent RNA helicase DDX41|putative RNA helicase 20121230 -9606 51429 SNX9 RP11-266C7.10-001 MST155|MSTP155|SDP1|SH3PX1|SH3PXD3A|WISP HGNC:14973|MIM:605952|Ensembl:ENSG00000130340|HPRD:12072|Vega:OTTHUMG00000015903 6 6q25.1-q26 sorting nexin 9 protein-coding SNX9 sorting nexin 9 O SH3 and PX domain-containing protein 1|SH3 and PX domain-containing protein 3A|SH3 and PX domain-containing protein SH3PX1|Wiskott-Aldrich syndrome protein (WASP) interactor protein|sorting nexin-9 20121230 -9606 51430 SUCO - C1orf9|CH1|OPT|SLP1 HGNC:1240|Ensembl:ENSG00000094975|HPRD:12732|Vega:OTTHUMG00000034839 1 1q24 SUN domain containing ossification factor protein-coding SUCO SUN domain containing ossification factor O SUN domain-containing ossification factor|SUN-like protein 1|membrane protein CH1|osteopotentia|protein C1orf9|protein osteopotentia homolog 20121230 -9606 51433 ANAPC5 - APC5 HGNC:15713|MIM:606948|Ensembl:ENSG00000089053|HPRD:10453|Vega:OTTHUMG00000169157 12 12q24.31 anaphase promoting complex subunit 5 protein-coding ANAPC5 anaphase promoting complex subunit 5 O anaphase-promoting complex subunit 5|cyclosome subunit 5 20121230 -9606 51434 ANAPC7 - APC7 HGNC:17380|MIM:606949|Ensembl:ENSG00000196510|HPRD:16233|Vega:OTTHUMG00000157009 12 12q24.11 anaphase promoting complex subunit 7 protein-coding ANAPC7 anaphase promoting complex subunit 7 O anaphase-promoting complex subunit 7|cyclosome subunit 7 20121230 -9606 51435 SCARA3 - APC7|CSR|CSR1|MSLR1|MSRL1 HGNC:19000|MIM:602728|Ensembl:ENSG00000168077|HPRD:04104|Vega:OTTHUMG00000163898 8 8p21 scavenger receptor class A, member 3 protein-coding SCARA3 scavenger receptor class A, member 3 O cellular stress response gene protein|cellular stress response protein|macrophage scavenger receptor-like 1|scavenger receptor class A member 3 20121230 -9606 51438 MAGEC2 - CT10|HCA587|MAGEE1 HGNC:13574|MIM:300468|Ensembl:ENSG00000046774|HPRD:06632|Vega:OTTHUMG00000022574 X Xq27 melanoma antigen family C, 2 protein-coding MAGEC2 melanoma antigen family C, 2 O MAGE-C2 antigen|MAGE-E1 antigen|cancer/testis antigen 10|hepatocellular cancer antigen 587|hepatocellular carcinoma-associated antigen 587|melanoma antigen, family E, 1, cancer/testis specific|melanoma-associated antigen C2 20121230 -9606 51439 FAM8A1 - AHCP HGNC:16372|Ensembl:ENSG00000137414|HPRD:13316|Vega:OTTHUMG00000014309 6 6p23 family with sequence similarity 8, member A1 protein-coding FAM8A1 family with sequence similarity 8, member A1 O Autosomal Highly Conserved Protein|protein FAM8A1 20121230 -9606 51440 HPCAL4 - HLP4 HGNC:18212|Ensembl:ENSG00000116983|HPRD:17113|Vega:OTTHUMG00000009246 1 1p34.2 hippocalcin like 4 protein-coding HPCAL4 hippocalcin like 4 O hippocalcin-like protein 4 20121230 -9606 51441 YTHDF2 - HGRG8|NY-REN-2 HGNC:31675|MIM:610640|Ensembl:ENSG00000198492|HPRD:06587|Vega:OTTHUMG00000003648 1 1p35 YTH domain family, member 2 protein-coding YTHDF2 YTH domain family, member 2 O 9430020E02Rik|CLL-associated antigen KW-14|YTH domain family protein 2|high-glucose-regulated protein 8|renal carcinoma antigen NY-REN-2 20121230 -9606 51442 VGLL1 RP1-196E23.1 TDU|VGL1 HGNC:20985|MIM:300583|Ensembl:ENSG00000102243|HPRD:06751|Vega:OTTHUMG00000022509 X Xq26.3 vestigial like 1 (Drosophila) protein-coding VGLL1 vestigial like 1 (Drosophila) O TONDU|WUGSC:H_GS188P18.1b|transcription cofactor vestigial-like protein 1|vgl-1 20121230 -9606 51444 RNF138 HSD4 HSD-4|NARF|STRIN|hNARF HGNC:17765|Ensembl:ENSG00000134758|HPRD:11508|Vega:OTTHUMG00000132265 18 18q12.1 ring finger protein 138, E3 ubiquitin protein ligase protein-coding RNF138 ring finger protein 138, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase RNF138|NLK-associated RING finger protein|Nemo-like kinase-associated RING finger protein 20121230 -9606 51447 IP6K2 TCCCIA00113 IHPK2|PIUS HGNC:17313|MIM:606992|Ensembl:ENSG00000068745|HPRD:07380|Vega:OTTHUMG00000133543 3 3p21.31 inositol hexakisphosphate kinase 2 protein-coding IP6K2 inositol hexakisphosphate kinase 2 O ATP:1D-myo-inositol-hexakisphosphate phosphotransferase|inositol hexaphosphate kinase 2|insp6 kinase 2|pi uptake stimulator 20121230 -9606 51449 PCYOX1 UNQ597/PRO1183 PCL1 HGNC:20588|MIM:610995|Ensembl:ENSG00000116005|HPRD:11422|Vega:OTTHUMG00000129671 2 2p13.3 prenylcysteine oxidase 1 protein-coding PCYOX1 prenylcysteine oxidase 1 O prenylcysteine lyase 20121230 -9606 51450 PRRX2 - PMX2|PRX2 HGNC:21338|MIM:604675|Ensembl:ENSG00000167157|HPRD:05244|Vega:OTTHUMG00000020790 9 9q34.1 paired related homeobox 2 protein-coding PRRX2 paired related homeobox 2 O PRX-2|paired mesoderm homeobox protein 2|paired-like homeodomain protein PRX2|paired-related homeobox protein 2 20121230 -9606 51451 LCMT1 CGI-68 LCMT|PPMT1 HGNC:17557|MIM:610286|Ensembl:ENSG00000205629|HPRD:17266|Vega:OTTHUMG00000177182 16 16p12.1 leucine carboxyl methyltransferase 1 protein-coding LCMT1 leucine carboxyl methyltransferase 1 O [Phosphatase 2A protein]-leucine-carboxy methyltransferase 1|protein phosphatase methyltransferase 1|protein-leucine O-methyltransferase 20121230 -9606 51454 GULP1 - CED-6|CED6|GULP HGNC:18649|MIM:608165|Ensembl:ENSG00000144366|HPRD:12181|Vega:OTTHUMG00000132647 2 2q32.3-q33 GULP, engulfment adaptor PTB domain containing 1 protein-coding GULP1 GULP, engulfment adaptor PTB domain containing 1 O PTB domain adapter protein CED-6|PTB domain adaptor protein CED-6|PTB domain-containing engulfment adapter protein 1|cell death protein 6 homolog|engulfment adapter protein 20121230 -9606 51455 REV1 - REV1L HGNC:14060|MIM:606134|Ensembl:ENSG00000135945|HPRD:16202|Vega:OTTHUMG00000130636 2 2q11.1-q11.2 REV1, polymerase (DNA directed) protein-coding REV1 REV1, polymerase (DNA directed) O AIBP80|DNA repair protein REV1|REV1 homolog|REV1- like|alpha integrin-binding protein 80|rev1-like terminal deoxycytidyl transferase 20121230 -9606 51458 RHCG - C15orf6|PDRC2|RHGK|SLC42A3 HGNC:18140|MIM:605381|Ensembl:ENSG00000140519|HPRD:16102|Vega:OTTHUMG00000149647 15 15q25 Rh family, C glycoprotein protein-coding RHCG Rh family, C glycoprotein O Rh type C glycoprotein|Rhesus blood group, C glycoprotein|ammonium transporter Rh type C|rh family type C glycoprotein|rh glycoprotein kidney|rhesus blood group family type C glycoprotein|tumor-related protein DRC2 20121230 -9606 51460 SFMBT1 - RU1|SFMBT HGNC:20255|MIM:607319|Ensembl:ENSG00000163935|HPRD:09539|Vega:OTTHUMG00000159052 3 3p21.1 Scm-like with four mbt domains 1 protein-coding SFMBT1 Scm-like with four mbt domains 1 O Scm-related gene containing four mbt domains|Scm-related gene product containing four mbt domains|renal ubiquitous protein 1|scm-like with four MBT domains protein 1 20121230 -9606 51463 GPR89B CGI-13 GPHR|GPR89|SH120 HGNC:13840|MIM:612806|Ensembl:ENSG00000188092|HPRD:13604|Vega:OTTHUMG00000013452 1 1q21.1 G protein-coupled receptor 89B protein-coding GPR89B G protein-coupled receptor 89B O Golgi pH regulator A|Golgi pH regulator B|protein GPR89|putative MAPK-activating protein PM01|putative NF-kappa-B-activating protein 90 20121230 -9606 51465 UBE2J1 CGI-76 HSPC153|HSPC205|HSU93243|NCUBE-1|NCUBE1|UBC6|Ubc6p HGNC:17598|Ensembl:ENSG00000198833|HPRD:15599|Vega:OTTHUMG00000016337 6 6q15 ubiquitin-conjugating enzyme E2, J1 protein-coding UBE2J1 ubiquitin-conjugating enzyme E2, J1 O HSUBC6e|non-canonical ubiquitin-conjugating enzyme 1|ubiquitin-conjugating enzyme E2 J1|ubiquitin-conjugating enzyme E2, J1 (UBC6 homolog, yeast)|ubiquitin-conjugating enzyme E2, J1, U|yeast ubiquitin-conjugating enzyme UBC6 homolog E 20121230 -9606 51466 EVL - RNB6 HGNC:20234|Ensembl:ENSG00000196405|HPRD:10942|Vega:OTTHUMG00000171530 14 14q32.2 Enah/Vasp-like protein-coding EVL Enah/Vasp-like O ena/VASP-like protein|ena/vasodilator-stimulated phosphoprotein-like 20121230 -9606 51471 NAT8B - CML2|Hcml2|NAT8BP HGNC:30235|MIM:608190|HPRD:12188 2 2p13.1 N-acetyltransferase 8B (GCN5-related, putative, gene/pseudogene) protein-coding NAT8B N-acetyltransferase 8B (GCN5-related, putative, gene/pseudogene) O N-acetyltransferase Camello 2|camello-like protein 2|probable N-acetyltransferase 8B 20121230 -9606 51473 DCDC2 RP11-260H5__B.1 DCDC2A|RU2|RU2S HGNC:18141|MIM:605755|Ensembl:ENSG00000146038|HPRD:09308|Vega:OTTHUMG00000016275 6 6p22.1 doublecortin domain containing 2 protein-coding DCDC2 doublecortin domain containing 2 O doublecortin domain-containing protein 2 20121230 -9606 51474 LIMA1 PP624 EPLIN|SREBP3 HGNC:24636|MIM:608364|Ensembl:ENSG00000050405|HPRD:09755|Vega:OTTHUMG00000169852 12 12q13 LIM domain and actin binding 1 protein-coding LIMA1 LIM domain and actin binding 1 O 1110021C24Rik|LIM domain and actin-binding protein 1|epithelial protein lost in neoplasm beta|sterol regulatory element binding protein 3 20121230 -9606 51475 CABP2 - DFNB93 HGNC:1385|MIM:607314|Ensembl:ENSG00000167791|HPRD:09535|Vega:OTTHUMG00000168014 11 11q13.1 calcium binding protein 2 protein-coding CABP2 calcium binding protein 2 O calcium-binding protein 2 20121230 -9606 51477 ISYNA1 - INO1|INOS|IPS|IPS 1|IPS-1 HGNC:29821|MIM:611670|Ensembl:ENSG00000105655|HPRD:17163|Vega:OTTHUMG00000179027 19 19p13.11 inositol-3-phosphate synthase 1 protein-coding ISYNA1 inositol-3-phosphate synthase 1 O MI-1-P synthase|MIP synthase|myo-inositol 1-phosphate synthase A1 20121230 -9606 51478 HSD17B7 RP11-331H2.1 PRAP|SDR37C1 HGNC:5215|MIM:606756|Ensembl:ENSG00000132196|HPRD:05996|Vega:OTTHUMG00000034420 1 1q23 hydroxysteroid (17-beta) dehydrogenase 7 protein-coding HSD17B7 hydroxysteroid (17-beta) dehydrogenase 7 O 17 beta-hydroxysteroid dehydrogenase type VII|17-beta-HSD 7|17-beta-hydroxysteroid dehydrogenase 7|17beta hydroxysteroid dehydrogenase|3-keto-steroid reductase|estradiol 17-beta-dehydrogenase 7|short chain dehydrogenase/reductase family 37C, member 1 20121230 -9606 51479 ANKFY1 - ANKHZN|ZFYVE14 HGNC:20763|MIM:607927|Ensembl:ENSG00000185722|HPRD:09717|Vega:OTTHUMG00000177727 17 17p13.3 ankyrin repeat and FYVE domain containing 1 protein-coding ANKFY1 ankyrin repeat and FYVE domain containing 1 O Rabankyrin-5|ankyrin repeat and FYVE domain-containing protein 1|ankyrin repeat hooked to zinc finger motif|ankyrin repeats hooked to a zinc finger motif 20121230 -9606 51480 VCX2 - VCX-2r|VCX2R|VCXB HGNC:18158|MIM:300532|Ensembl:ENSG00000177504|HPRD:06749|Vega:OTTHUMG00000021105 X Xp22.32 variable charge, X-linked 2 protein-coding VCX2 variable charge, X-linked 2 O VCX-B|variable charge X-linked protein 2|variable charge protein on X with two repeats|variably charged X-B|variably charged protein X-B 20121230 -9606 51481 VCX3A - VCX-8r|VCX-A|VCX3|VCX8R|VCXA HGNC:18159|MIM:300533|Ensembl:ENSG00000169059|HPRD:18280|Vega:OTTHUMG00000021097 X Xp22 variable charge, X-linked 3A protein-coding VCX3A variable charge, X-linked 3A O variable charge X-linked protein 3|variable charge protein on X with eight repeats|variably charged X-A|variably charged protein X-A 20121230 -9606 51490 C9orf114 RP11-545E17.7 CENP-32|HSPC109 HGNC:26933|Ensembl:ENSG00000198917|HPRD:12935|Vega:OTTHUMG00000020762 9 9q34.11 chromosome 9 open reading frame 114 protein-coding C9orf114 chromosome 9 open reading frame 114 O centromere protein 32|uncharacterized protein C9orf114 20121230 -9606 51491 NOP16 CGI-117 HSPC111|HSPC185 HGNC:26934|MIM:612861|Ensembl:ENSG00000048162|HPRD:13694|Vega:OTTHUMG00000163186 5 5q35.2 NOP16 nucleolar protein protein-coding NOP16 NOP16 nucleolar protein O HBV pre-S2 trans-regulated protein 3|NOP16 nucleolar protein homolog|hypothetical protein HSPC111|nucleolar protein 16|nucleolar protein 16 homolog 20121230 -9606 51493 C22orf28 HSPC117 DJ149A16.6|FAAP|RP1-149A16.6 HGNC:26935|MIM:613901|Ensembl:ENSG00000100220|HPRD:13695|Vega:OTTHUMG00000030300 22 22q12 chromosome 22 open reading frame 28 protein-coding C22orf28 chromosome 22 open reading frame 28 O ankyrin repeat domain 54|focal adhesion-associated protein|tRNA-splicing ligase RtcB homolog 20121230 -9606 51495 PTPLAD1 - B-IND1|HACD3|HSPC121 HGNC:24175|Ensembl:ENSG00000074696|HPRD:11037|Vega:OTTHUMG00000172658 15 15q22.2 protein tyrosine phosphatase-like A domain containing 1 protein-coding PTPLAD1 protein tyrosine phosphatase-like A domain containing 1 O 3-hydroxyacyl-CoA dehydratase 3|butyrate-induced protein 1|butyrate-induced transcript 1|hB-ind1|protein tyrosine phosphatase-like protein PTPLAD1|protein-tyrosine phosphatase-like A domain-containing protein 1 20121230 -9606 51496 CTDSPL2 HSPC058 HSPC129 HGNC:26936|Ensembl:ENSG00000137770|HPRD:13697|Vega:OTTHUMG00000131159 15 15q15.3-q21.1 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase like 2 protein-coding CTDSPL2 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase like 2 O CTD small phosphatase-like protein 2|CTDSP-like 2 20121230 -9606 51497 TH1L HSPC130 NELF-C|NELF-D|TH1 HGNC:15934|MIM:605297|Ensembl:ENSG00000101158|HPRD:16096|Vega:OTTHUMG00000032861 20 20q13 TH1-like (Drosophila) protein-coding TH1L TH1-like (Drosophila) O NELF-C/D|TH1 drosophila homolog|TH1-like protein|negative elongation factor C/D|negative elongation factor proteins C and D|trihydrophobin 1 20121230 -9606 51499 TRIAP1 HSPC132 MDM35|P53CSV|WF-1 HGNC:26937|MIM:614943|Ensembl:ENSG00000170855|HPRD:13698|Vega:OTTHUMG00000047787 12 12q24.31 TP53 regulated inhibitor of apoptosis 1 protein-coding TRIAP1 TP53 regulated inhibitor of apoptosis 1 O TP53-regulated inhibitor of apoptosis 1|mitochondrial distribution and morphology 35 homolog|p53-inducible cell-survival factor|protein 15E1.1 20121230 -9606 51501 C11orf73 HSPC138 HSPC179|Hikeshi|L7RN6 HGNC:26938|MIM:614908|Ensembl:ENSG00000149196|HPRD:13701|Vega:OTTHUMG00000167212 11 11q14.2 chromosome 11 open reading frame 73 protein-coding C11orf73 chromosome 11 open reading frame 73 O lethal, Chr 7, Rinchik 6|protein Hikeshi 20121230 -9606 51503 CWC15 AD-002 C11orf5|Cwf15|HSPC148|ORF5 HGNC:26939|HPRD:13703 11 11q21 CWC15 spliceosome-associated protein homolog (S. cerevisiae) protein-coding CWC15 CWC15 spliceosome-associated protein homolog (S. cerevisiae) O CWC15 homolog|protein CWC15 homolog|spliceosome-associated protein CWC15 homolog 20121230 -9606 51504 TRMT112 AD-001 HSPC152|HSPC170|TRM112|TRMT11-2 HGNC:26940|Ensembl:ENSG00000173113|HPRD:13705|Vega:OTTHUMG00000167848 11 11q13.1 tRNA methyltransferase 11-2 homolog (S. cerevisiae) protein-coding TRMT112 tRNA methyltransferase 11-2 homolog (S. cerevisiae) O TRM112-like protein|tRNA methyltransferase 112 homolog 20121230 -9606 51506 UFC1 CGI-126 HSPC155 HGNC:26941|MIM:610554|Ensembl:ENSG00000143222|HPRD:15643|Vega:OTTHUMG00000033155 1 1q23.3 ubiquitin-fold modifier conjugating enzyme 1 protein-coding UFC1 ubiquitin-fold modifier conjugating enzyme 1 O Ufm1-conjugating enzyme 1|ubiquitin-fold modifier-conjugating enzyme 1 20121230 -9606 51507 RTFDC1 AD-007 C20orf43|CDAO5|HSPC164|SHUJUN-3 HGNC:15890|Ensembl:ENSG00000022277|HPRD:12769|Vega:OTTHUMG00000032801 20 20q13.31 replication termination factor 2 domain containing 1 protein-coding RTFDC1 replication termination factor 2 domain containing 1 O UPF0549 protein C20orf43 20121230 -9606 51510 CHMP5 CGI-34 C9orf83|HSPC177|PNAS-2|SNF7DC2|Vps60 HGNC:26942|MIM:610900|Ensembl:ENSG00000086065|HPRD:15408|Vega:OTTHUMG00000019765 9 9p13.3 charged multivesicular body protein 5 protein-coding CHMP5 charged multivesicular body protein 5 O SNF7 domain containing 2|SNF7 domain-containing protein 2|apoptosis-related protein PNAS-2|chromatin modifying protein 5|chromatin-modifying protein 5|hVps60|vacuolar protein sorting-associated protein 60 20121230 -9606 51512 GTSE1 RP5-1163J1.2 B99 HGNC:13698|MIM:607477|Ensembl:ENSG00000075218|HPRD:09593|Vega:OTTHUMG00000150486 22 22q13.2-q13.3 G-2 and S-phase expressed 1 protein-coding GTSE1 G-2 and S-phase expressed 1 O G2 and S phase-expressed protein 1|protein B99 homolog 20121230 -9606 51513 ETV7 - TEL-2|TEL2|TELB HGNC:18160|MIM:605255|Ensembl:ENSG00000010030|HPRD:16095|Vega:OTTHUMG00000014594 6 6p21 ets variant 7 protein-coding ETV7 ets variant 7 O ETS translocation variant 7|ETS-related protein Tel2|Ets transcription factor TEL-2b|TEL2 oncogene|ets variant gene 7 (TEL2 oncogene)|tel-related Ets factor|transcription factor ETV7 20121230 -9606 51514 DTL RP11-15I11.1 CDT2|DCAF2|L2DTL|RAMP HGNC:30288|MIM:610617|Ensembl:ENSG00000143476|HPRD:17952|Vega:OTTHUMG00000037133 1 1q32 denticleless E3 ubiquitin protein ligase homolog (Drosophila) protein-coding DTL denticleless E3 ubiquitin protein ligase homolog (Drosophila) O DDB1 and CUL4 associated factor 2|DDB1- and CUL4-associated factor 2|RA regulated nuclear matrix associated protein|RA-regulated nuclear matrix-associated protein|denticleless homolog|denticleless protein homolog|lethal(2) denticleless protein homolog|retinoic acid-regulated nuclear matrix-associated protein 20121230 -9606 51517 NCKIPSD - AF3P21|DIP|DIP1|ORF1|SPIN90|WASLBP|WISH HGNC:15486|MIM:606671|Ensembl:ENSG00000213672|HPRD:09450|Vega:OTTHUMG00000133542 3 3p21 NCK interacting protein with SH3 domain protein-coding NCKIPSD NCK interacting protein with SH3 domain O 54 kDa VacA-interacting protein|54 kDa vimentin-interacting protein|90 kDa SH3 protein interacting with Nck|DIP-1|NCK-interacting protein with SH3 domain|SH3 adapter protein SPIN90|SH3 protein interacting with Nck, 90 kDa|VIP54|WASP-interacting SH3-domain protein|dia interacting protein|dia-interacting protein 1|diaphanous protein interacting protein|diaphanous protein-interacting protein|wiskott-Aldrich syndrome protein-interacting protein 20121230 -9606 51520 LARS - HSPC192|LARS1|LEURS|LEUS|LRS|PIG44|RNTLS|hr025Cl HGNC:6512|MIM:151350|Ensembl:ENSG00000133706|HPRD:01042|Vega:OTTHUMG00000163429 5 5q32 leucyl-tRNA synthetase protein-coding LARS leucyl-tRNA synthetase O cytoplasmic leucyl-tRNA synthetase|cytosolic leucyl-tRNA synthetase|leucine tRNA ligase 1, cytoplasmic|leucine translase|leucine--tRNA ligase, cytoplasmic|leucine-tRNA ligase|leucyl-tRNA synthetase, cytoplasmic|proliferation-inducing gene 44 20121230 -9606 51522 TMEM14C HSPC194 C6orf53|MSTP073|NET26|bA421M1.6 HGNC:20952|Ensembl:ENSG00000111843|HPRD:15524|Vega:OTTHUMG00000014242 6 6p24.2 transmembrane protein 14C protein-coding TMEM14C transmembrane protein 14C O - 20121230 -9606 51523 CXXC5 HSPC195 CF5|RINF|WID HGNC:26943|MIM:612752|Ensembl:ENSG00000171604|HPRD:13105|Vega:OTTHUMG00000163331 5 5q31.2 CXXC finger protein 5 protein-coding CXXC5 CXXC finger protein 5 O CXXC finger 5 protein|CXXC-type zinc finger protein 5|WT1-induced Inhibitor of Dishevelled|putative MAPK-activating protein PM08|putative NF-kappa-B-activating protein 102|retinoid-inducible nuclear factor 20121230 -9606 51524 TMEM138 HSPC196 - HGNC:26944|MIM:614459|Ensembl:ENSG00000149483|HPRD:13713|Vega:OTTHUMG00000168145 11 11q12.2 transmembrane protein 138 protein-coding TMEM138 transmembrane protein 138 O - 20121230 -9606 51526 C20orf111 BM-038 HSPC207|Osr1|Perit1|dJ1183I21.1 HGNC:16105|Ensembl:ENSG00000132823|HPRD:12739|Vega:OTTHUMG00000032518 20 20q13.11 chromosome 20 open reading frame 111 protein-coding C20orf111 chromosome 20 open reading frame 111 O oxidative stress-responsive 1|peroxide-inducible transcript 1|uncharacterized protein C20orf111 20121230 -9606 51527 GSKIP HSPC210 C14orf129 HGNC:20343|Ensembl:ENSG00000100744|HPRD:16601|Vega:OTTHUMG00000171420 14 14q32.2 GSK3B interacting protein protein-coding GSKIP GSK3B interacting protein O GSK3-beta interaction protein 20121230 -9606 51528 JKAMP CDA06 C14orf100|HSPC213|HSPC327|JAMP HGNC:20184|MIM:611176|Ensembl:ENSG00000050130|HPRD:12623|Vega:OTTHUMG00000171054 14 14q23.1 JNK1/MAPK8-associated membrane protein protein-coding JKAMP JNK1/MAPK8-associated membrane protein O JNK-associated membrane protein|JNK1-associated membrane protein|Jun N-terminal kinase 1-associated membrane protein|medulloblastoma antigen MU-MB-50.4 20121230 -9606 51529 ANAPC11 HSPC214 APC11|Apc11p HGNC:14452|MIM:614534|Ensembl:ENSG00000141552|HPRD:12452|Vega:OTTHUMG00000177982 17 17q25.3 anaphase promoting complex subunit 11 protein-coding ANAPC11 anaphase promoting complex subunit 11 O APC11 anaphase promoting complex subunit 11 homolog|anaphase promoting complex subunit 11 (yeast APC11 homolog)|anaphase-promoting complex subunit 11|cyclosome subunit 11|hepatocellular carcinoma-associated RING finger protein 20121230 -9606 51530 ZC3HC1 HSPC216 1110054L24Rik|NIPA HGNC:29913|Ensembl:ENSG00000091732|Vega:OTTHUMG00000157648 7 7q32.2 zinc finger, C3HC-type containing 1 protein-coding ZC3HC1 zinc finger, C3HC-type containing 1 O hNIPA|hematopoietic stem/progenitor cell protein 216|nuclear interacting partner of anaplastic lymphoma kinase (ALK)|nuclear interaction partner of ALK|nuclear-interacting partner of ALK|nuclear-interacting partner of anaplastic lymphoma kinase|zinc finger C3HC-type protein 1|zinc finger, C3HC type 1 20121230 -9606 51531 C9orf156 RP11-23B15.3 HSPC219|NAP1 HGNC:30967|Ensembl:ENSG00000136932|HPRD:12945|Vega:OTTHUMG00000021007 9 9q22.33 chromosome 9 open reading frame 156 protein-coding C9orf156 chromosome 9 open reading frame 156 O Nef (lentivirus myristoylated factor) associated protein 1|Nef associated protein 1|nef-associated protein 1|thioesterase NAP1 20121230 -9606 51533 PHF7 - HSPC045|HSPC226|NYD-SP6 HGNC:18458|Ensembl:ENSG00000010318|HPRD:15127|Vega:OTTHUMG00000158495 3 3p21.1 PHD finger protein 7 protein-coding PHF7 PHD finger protein 7 O testis development protein NYD-SP6 20121230 -9606 51534 VTA1 HSPC228 C6orf55|DRG-1|DRG1|LIP5|My012|SBP1 HGNC:20954|MIM:610902|Ensembl:ENSG00000009844|HPRD:09855|Vega:OTTHUMG00000015707 6 6q24.1 Vps20-associated 1 homolog (S. cerevisiae) protein-coding VTA1 Vps20-associated 1 homolog (S. cerevisiae) O LYST-interacting protein 5|SKD1-binding protein 1|dopamine-responsive gene 1 protein|homolog of mouse SKD1-binding protein 1|vacuolar protein sorting-associated protein VTA1 homolog 20121230 -9606 51535 PPHLN1 HSPC206 HSPC232 HGNC:19369|MIM:608150|Ensembl:ENSG00000134283|HPRD:10488|Vega:OTTHUMG00000169440 12 12q12 periphilin 1 protein-coding PPHLN1 periphilin 1 O gastric cancer antigen Ga50|periphilin-1 20121230 -9606 51537 MTFP1 HSPC242 MTP18 HGNC:26945|MIM:610235|Ensembl:ENSG00000242114|HPRD:17612|Vega:OTTHUMG00000151057 22 22q mitochondrial fission process 1 protein-coding MTFP1 mitochondrial fission process 1 O mitochondrial 18 kDa protein|mitochondrial fission process protein 1|mitochondrial fission protein MTP18|mitochondrial protein 18 kDa 20121230 -9606 51538 ZCCHC17 HSPC243 HSPC251|PS1D|RP11-266K22.1|pNO40 HGNC:30246|Ensembl:ENSG00000121766|HPRD:15189|Vega:OTTHUMG00000003791 1 1p35.2 zinc finger, CCHC domain containing 17 protein-coding ZCCHC17 zinc finger, CCHC domain containing 17 O nucleolar protein 40|nucleolar protein of 40 kDa|pnn-interacting nucleolar protein|putative S1 RNA binding domain protein|putative S1 RNA-binding domain protein|zinc finger CCHC domain-containing protein 17 20121230 -9606 51540 SCLY - SCL|hSCL HGNC:18161|MIM:611056|Ensembl:ENSG00000132330|HPRD:15303|Vega:OTTHUMG00000133336 2 2q37.3 selenocysteine lyase protein-coding SCLY selenocysteine lyase O - 20121230 -9606 51542 VPS54 - HCC8|SLP-8p|VPS54L|WR|hVps54L HGNC:18652|MIM:614633|Ensembl:ENSG00000143952|HPRD:10302|Vega:OTTHUMG00000152627 2 2p13-p14 vacuolar protein sorting 54 homolog (S. cerevisiae) protein-coding VPS54 vacuolar protein sorting 54 homolog (S. cerevisiae) O hepatocellular carcinoma protein 8|tumor antigen HOM-HCC-8|tumor antigen SLP-8p|vacuolar protein sorting-associated protein 54 20121230 -9606 51545 ZNF581 HSPC189 - HGNC:25017|Ensembl:ENSG00000171425|HPRD:15858|Vega:OTTHUMG00000180869 19 19q13.42 zinc finger protein 581 protein-coding ZNF581 zinc finger protein 581 O - 20121230 -9606 51547 SIRT7 - SIR2L7 HGNC:14935|MIM:606212|Ensembl:ENSG00000187531|HPRD:12094|Vega:OTTHUMG00000177957 17 17q25 sirtuin 7 protein-coding SIRT7 sirtuin 7 O NAD-dependent deacetylase sirtuin-7|NAD-dependent protein deacetylase sirtuin-7|SIR2-like protein 7|regulatory protein SIR2 homolog 7|silent mating type information regulation 2, S.cerevisiae, homolog 7|sir2-related protein type 7|sirtuin type 7 20121230 -9606 51548 SIRT6 - SIR2L6 HGNC:14934|MIM:606211|Ensembl:ENSG00000077463|HPRD:12093 19 19p13.3 sirtuin 6 protein-coding SIRT6 sirtuin 6 O NAD-dependent deacetylase sirtuin-6|NAD-dependent protein deacetylase sirtuin-6|SIR2-like protein 6|regulatory protein SIR2 homolog 6|sir2-related protein type 6|sirtuin type 6 20121230 -9606 51550 CINP - - HGNC:23789|MIM:613362|Ensembl:ENSG00000100865|HPRD:16715|Vega:OTTHUMG00000171775 14 14q32.31 cyclin-dependent kinase 2 interacting protein protein-coding CINP cyclin-dependent kinase 2 interacting protein O CDK2-interacting protein|cyclin-dependent kinase 2-interacting protein 20121230 -9606 51552 RAB14 RP11-165P4.4 FBP|RAB-14 HGNC:16524|MIM:612673|Ensembl:ENSG00000119396|HPRD:06693|Vega:OTTHUMG00000020582 9 9q32-q34.11 RAB14, member RAS oncogene family protein-coding RAB14 RAB14, member RAS oncogene family O F protein-binding protein 1|bA165P4.3 (member RAS oncogene family)|ras-related protein Rab-14|small GTP binding protein RAB14 20121230 -9606 51554 CCRL1 - CC-CKR-11|CCBP2|CCR-11|CCR10|CCR11|CCX CKR|CCX-CKR|CKR-11|PPR1|VSHK1 HGNC:1611|MIM:606065|Ensembl:ENSG00000129048|HPRD:07298|Vega:OTTHUMG00000159768 3 3q22 chemokine (C-C motif) receptor-like 1 protein-coding CCRL1 chemokine (C-C motif) receptor-like 1 O C-C CKR-11|C-C chemokine receptor type 11|CC chemokine receptor-like 1|chemocentryx chemokine receptor|chemokine, cc motif, receptor-like protein 1|orphan seven-transmembrane receptor, chemokine related 20121230 -9606 51555 PEX5L - PEX5R|PEX5RP|PXR2|PXR2B HGNC:30024|MIM:611058|Ensembl:ENSG00000114757|HPRD:11425|Vega:OTTHUMG00000157363 3 3q26.33 peroxisomal biogenesis factor 5-like protein-coding PEX5L peroxisomal biogenesis factor 5-like O PEX2-related protein|PEX5-like protein|PEX5-related protein|Pex5p-related protein|peroxin-5-related protein|peroxisome biogenesis factor 5-like 20121230 -9606 51557 LGSN - GLULD1|LGS HGNC:21016|MIM:611470|Ensembl:ENSG00000146166|HPRD:13585|Vega:OTTHUMG00000014946 6 6pter-q22.33 lengsin, lens protein with glutamine synthetase domain protein-coding LGSN lengsin, lens protein with glutamine synthetase domain O glutamate-ammonia ligase (glutamine synthase) domain containing 1|glutamate-ammonia ligase domain-containing protein 1|lengsin 20121230 -9606 51559 NT5DC3 - TU12B1-TY|TU12B1TY HGNC:30826|MIM:611076|Ensembl:ENSG00000111696|HPRD:18241|Vega:OTTHUMG00000157017 12 12q22-q23.1 5'-nucleotidase domain containing 3 protein-coding NT5DC3 5'-nucleotidase domain containing 3 O 5'-nucleotidase domain-containing protein 3 20121230 -9606 51560 RAB6B - - HGNC:14902|Ensembl:ENSG00000154917|HPRD:11474|Vega:OTTHUMG00000159749 3 3q22.1 RAB6B, member RAS oncogene family protein-coding RAB6B RAB6B, member RAS oncogene family O ras-related protein Rab-6B|small GTP-binding protein|small GTPase RAB6B 20121230 -9606 51561 IL23A UNQ2498/PRO5798 IL-23|IL-23A|IL23P19|P19|SGRF HGNC:15488|MIM:605580|Ensembl:ENSG00000110944|HPRD:12026 12 12q13.3 interleukin 23, alpha subunit p19 protein-coding IL23A interleukin 23, alpha subunit p19 O IL-23 subunit alpha|IL-23-A|IL-23p19|JKA3 induced upon T-cell activation|interleukin 23 p19 subunit|interleukin-23 subunit alpha|interleukin-23 subunit p19|interleukin-six, G-CSF related factor 20121230 -9606 51562 MBIP BM-015 - HGNC:20427|MIM:609431|Ensembl:ENSG00000151332|HPRD:14368|Vega:OTTHUMG00000140222 14 14q13.3 MAP3K12 binding inhibitory protein 1 protein-coding MBIP MAP3K12 binding inhibitory protein 1 O MAP3K12-binding inhibitory protein 1|MAPK upstream kinase-binding inhibitory protein|MUK-binding inhibitory protein 20121230 -9606 51564 HDAC7 - HD7A|HDAC7A HGNC:14067|MIM:606542|Ensembl:ENSG00000061273|HPRD:09133|Vega:OTTHUMG00000152968 12 12q13.1 histone deacetylase 7 protein-coding HDAC7 histone deacetylase 7 O HD7|histone deacetylase 7A 20121230 -9606 51566 ARMCX3 RP4-545K15.2 ALEX3|dJ545K15.2 HGNC:24065|MIM:300364|Ensembl:ENSG00000102401|HPRD:02294|Vega:OTTHUMG00000022035 X Xq22.1 armadillo repeat containing, X-linked 3 protein-coding ARMCX3 armadillo repeat containing, X-linked 3 O 1200004E24Rik|ARM protein lost in epithelial cancers on chromosome X 3|arm protein lost in epithelial cancers, X chromosome, 3|armadillo repeat-containing X-linked protein 3 20121230 -9606 51567 TDP2 RP1-30M3.3 AD022|EAP2|EAPII|TTRAP|dJ30M3.3|hTDP2 HGNC:17768|MIM:605764|Ensembl:ENSG00000111802|HPRD:05771|Vega:OTTHUMG00000014360 6 6p22.3-p22.1 tyrosyl-DNA phosphodiesterase 2 protein-coding TDP2 tyrosyl-DNA phosphodiesterase 2 O 5'-Tyr-DNA phosphodiesterase|5'-tyrosyl-DNA phosphodiesterase|ETS1-associated protein 2|ETS1-associated protein II|TRAF and TNF receptor associated protein|TRAF and TNF receptor-associated protein|VPg unlinkase|tyr-DNA phosphodiesterase 2|tyrosyl-RNA phosphodiesterase 20121230 -9606 51569 UFM1 RP11-131P10.1 BM-002|C13orf20|bA131P10.1 HGNC:20597|MIM:610553|Ensembl:ENSG00000120686|HPRD:15644|Vega:OTTHUMG00000017409 13 13q13.3 ubiquitin-fold modifier 1 protein-coding UFM1 ubiquitin-fold modifier 1 O - 20121230 -9606 51571 FAM49B BM-009 L1 HGNC:25216|Ensembl:ENSG00000153310|HPRD:13313|Vega:OTTHUMG00000164805 8 8q24.21 family with sequence similarity 49, member B protein-coding FAM49B family with sequence similarity 49, member B O protein FAM49B 20121230 -9606 51573 GDE1 - 363E6.2|MIR16 HGNC:29644|MIM:605943|Ensembl:ENSG00000006007|HPRD:12070|Vega:OTTHUMG00000131454 16 16p12-p11.2 glycerophosphodiester phosphodiesterase 1 protein-coding GDE1 glycerophosphodiester phosphodiesterase 1 O RGS16-interacting membrane protein|membrane interacting protein of RGS16|membrane-interacting protein of RGS16 20121230 -9606 51574 LARP7 HDCMA18P PIP7S HGNC:24912|MIM:612026|Ensembl:ENSG00000174720|HPRD:17095|Vega:OTTHUMG00000132909 4 4q25 La ribonucleoprotein domain family, member 7 protein-coding LARP7 La ribonucleoprotein domain family, member 7 O P-TEFb-interaction protein for 7SK stability|la-related protein 7 20121230 -9606 51575 ESF1 HDCMC28P ABTAP|C20orf6|bA526K24.1 HGNC:15898|Ensembl:ENSG00000089048|HPRD:10732|Vega:OTTHUMG00000031906 20 20p12.1 ESF1, nucleolar pre-rRNA processing protein, homolog (S. cerevisiae) protein-coding ESF1 ESF1, nucleolar pre-rRNA processing protein, homolog (S. cerevisiae) O ABT1-associated protein|ESF1 homolog 20121230 -9606 51581 ERVH-6 - - HGNC:39058 Y Yq11.223 endogenous retrovirus group H, member 6 unknown ERVH-6 endogenous retrovirus group H, member 6 O - 20121017 -9606 51582 AZIN1 - OAZI|OAZIN|ODC1L HGNC:16432|MIM:607909|Ensembl:ENSG00000155096|HPRD:07443|Vega:OTTHUMG00000164766 8 8q22.3 antizyme inhibitor 1 protein-coding AZIN1 antizyme inhibitor 1 O AZI|ornithine decarboxylase antizyme inhibitor 20121230 -9606 51585 PCF11 - - HGNC:30097|MIM:608876|Ensembl:ENSG00000165494|HPRD:10592|Vega:OTTHUMG00000167031 11 11q13 PCF11, cleavage and polyadenylation factor subunit, homolog (S. cerevisiae) protein-coding PCF11 PCF11, cleavage and polyadenylation factor subunit, homolog (S. cerevisiae) O PCF11, cleavage and polyadenylation factor II subunit, homolog|PCF11p homolog|pre-mRNA cleavage complex 2 protein Pcf11|pre-mRNA cleavage complex II protein Pcf11 20121230 -9606 51586 MED15 - ARC105|CAG7A|CTG7A|PCQAP|TIG-1|TIG1|TNRC7 HGNC:14248|MIM:607372|Ensembl:ENSG00000099917|HPRD:12117|Vega:OTTHUMG00000150810 22 22q11.2 mediator complex subunit 15 protein-coding MED15 mediator complex subunit 15 O CTG repeat protein 7a|PC2 (positive cofactor 2, multiprotein complex) glutamine/Q-rich-associated protein|PC2 glutamine/Q-rich-associated protein|PC2-glutamine-rich-associated protein|TPA inducible gene-1|TPA inducible protein|TPA-inducible gene 1 protein|activator-recruited cofactor 105 kDa component|activator-recruited cofactor, 105-kD|mediator of RNA polymerase II transcription subunit 15|positive cofactor 2 glutamine/Q-rich-associated protein|positive cofactor 2, glutamine/Q-rich-associated protein|trinucleotide repeat containing 7|trinucleotide repeat-containing gene 7 protein 20121230 -9606 51588 PIAS4 - PIASY|Piasg|ZMIZ6 HGNC:17002|MIM:605989|Ensembl:ENSG00000105229|HPRD:06910 19 19p13.3 protein inhibitor of activated STAT, 4 protein-coding PIAS4 protein inhibitor of activated STAT, 4 O E3 SUMO-protein ligase PIAS4|PIAS-gamma|protein inhibitor of activated STAT protein 4|protein inhibitor of activated STAT protein PIASy|protein inhibitor of activated STAT protein gamma|zinc finger, MIZ-type containing 6 20121230 -9606 51592 TRIM33 - ECTO|PTC7|RFG7|TF1G|TIF1G|TIF1GAMMA|TIFGAMMA HGNC:16290|MIM:605769|Ensembl:ENSG00000197323|HPRD:10423|Vega:OTTHUMG00000011891 1 1p13.1 tripartite motif containing 33 protein-coding TRIM33 tripartite motif containing 33 O E3 ubiquitin-protein ligase TRIM33|RET-fused gene 7 protein|TIF1-gamma|ectodermin homolog|protein Rfg7|transcriptional intermediary factor 1 gamma|tripartite motif-containing 33 20121230 -9606 51593 SRRT - ARS2|ASR2|serrate HGNC:24101|MIM:614469|Ensembl:ENSG00000087087|HPRD:10665|Vega:OTTHUMG00000157031 7 7q21 serrate RNA effector molecule homolog (Arabidopsis) protein-coding SRRT serrate RNA effector molecule homolog (Arabidopsis) O arsenate resistance protein 2|arsenate resistance protein ARS2|arsenite resistance protein|arsenite-resistance protein 2|serrate RNA effector molecule homolog 20121230 -9606 51594 NBAS - NAG|SOPH HGNC:15625|MIM:608025|Ensembl:ENSG00000151779|HPRD:10473|Vega:OTTHUMG00000121153 2 2p24 neuroblastoma amplified sequence protein-coding NBAS neuroblastoma amplified sequence O NAG/BC035112 fusion|NAG/FAM49A fusion|neuroblastoma-amplified gene protein|neuroblastoma-amplified sequence 20121230 -9606 51596 CUTA DASS-97D12.5 ACHAP|C6orf82 HGNC:21101|Ensembl:ENSG00000112514|HPRD:12902|Vega:OTTHUMG00000031254 6 6p21.32 cutA divalent cation tolerance homolog (E. coli) protein-coding CUTA cutA divalent cation tolerance homolog (E. coli) O acetylcholinesterase-associated protein|brain acetylcholinesterase putative membrane anchor|divalent cation tolerant protein CUTA|protein CutA 20121230 -9606 51599 LSR - ILDR3|LISCH7 HGNC:29572|Ensembl:ENSG00000105699|HPRD:17283 19 19q13.12 lipolysis stimulated lipoprotein receptor protein-coding LSR lipolysis stimulated lipoprotein receptor O LISCH protein|immunoglobulin-like domain containing receptor 3|lipolysis-stimulated lipoprotein receptor|lipolysis-stimulated remnant|liver-specific bHLH-Zip transcription factor 20121230 -9606 51601 LIPT1 - - HGNC:29569|MIM:610284|Ensembl:ENSG00000144182|HPRD:17282|Vega:OTTHUMG00000130640 2 2q11.2 lipoyltransferase 1 protein-coding LIPT1 lipoyltransferase 1 O lipoate biosynthesis protein|lipoyl ligase|lipoyltransferase 1, mitochondrial 20121230 -9606 51602 NOP58 HSPC120 NOP5|NOP5/NOP58 HGNC:29926|Ensembl:ENSG00000055044|HPRD:11036|Vega:OTTHUMG00000132840 2 2q33.1 NOP58 ribonucleoprotein protein-coding NOP58 NOP58 ribonucleoprotein O NOP58 ribonucleoprotein homolog|nucleolar protein 5|nucleolar protein 58|nucleolar protein NOP5/NOP58 20121230 -9606 51603 METTL13 CGI-01 5630401D24Rik|KIAA0859|feat HGNC:24248|Ensembl:ENSG00000010165|HPRD:13821|Vega:OTTHUMG00000034912 1 1q24-q25.3 methyltransferase like 13 protein-coding METTL13 methyltransferase like 13 O antiapoptotic protein FEAT|methyltransferase-like protein 13 20121230 -9606 51604 PIGT CGI-06 NDAP HGNC:14938|MIM:610272|Ensembl:ENSG00000124155|HPRD:15136|Vega:OTTHUMG00000032574 20 20q12-q13.12 phosphatidylinositol glycan anchor biosynthesis, class T protein-coding PIGT phosphatidylinositol glycan anchor biosynthesis, class T O GPI transamidase component PIG-T|GPI transamidase subunit|neurotrophin-regulated neuronal development-associated protein|phosphatidylinositol-glycan biosynthesis class T protein 20121230 -9606 51605 TRMT6 CGI-09 GCD10|Gcd10p HGNC:20900|Ensembl:ENSG00000089195|HPRD:13027|Vega:OTTHUMG00000031816 20 20p12.3 tRNA methyltransferase 6 homolog (S. cerevisiae) protein-coding TRMT6 tRNA methyltransferase 6 homolog (S. cerevisiae) O tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6|tRNA (adenine-N(1)-)-methyltransferase non-catalytic subunit TRM6|tRNA(m1A58)-methyltransferase subunit TRM6|tRNA(m1A58)MTase subunit TRM6 20121230 -9606 51606 ATP6V1H CGI-11 MSTP042|NBP1|SFD|SFDalpha|SFDbeta|VMA13 HGNC:18303|MIM:608861|Ensembl:ENSG00000047249|HPRD:10591|Vega:OTTHUMG00000164231 8 8q11.2 ATPase, H+ transporting, lysosomal 50/57kDa, V1 subunit H protein-coding ATP6V1H ATPase, H+ transporting, lysosomal 50/57kDa, V1 subunit H O V-ATPase 50/57 kDa subunits|V-ATPase subunit H|V-type proton ATPase subunit H|nef-binding protein 1|protein VMA13 homolog|vacuolar ATP synthase subunit H|vacuolar ATPase subunit H|vacuolar proton pump subunit H|vacuolar proton pump subunit SFD 20121230 -9606 51608 GET4 CGI-20 C7orf20|CEE|TRC35 HGNC:21690|MIM:612056|Ensembl:ENSG00000239857|HPRD:12909|Vega:OTTHUMG00000112459 7 7p22.3 golgi to ER traffic protein 4 homolog (S. cerevisiae) protein-coding GET4 golgi to ER traffic protein 4 homolog (S. cerevisiae) O Golgi to ER traffic protein 4 homolog|H_NH1244M04.5|conserved edge expressed protein|conserved edge protein|conserved edge-expressed protein|transmembrane domain recognition complex 35 kDa subunit|transmembrane domain recognition complex, 35kDa 20121230 -9606 51611 DPH5 AD-018 CGI-30|HSPC143|NPD015 HGNC:24270|MIM:611075|Ensembl:ENSG00000117543|HPRD:13037|Vega:OTTHUMG00000010829 1 1p21.2 DPH5 homolog (S. cerevisiae) protein-coding DPH5 DPH5 homolog (S. cerevisiae) O diphthamide biosynthesis methyltransferase|diphthine synthase|protein x 0011 20121230 -9606 51614 ERGIC3 RP3-477O4.1 C20orf47|CGI-54|Erv46|NY-BR-84|PRO0989|SDBCAG84|dJ477O4.2 HGNC:15927|Ensembl:ENSG00000125991|HPRD:15306|Vega:OTTHUMG00000032346 20 20pter-q12 ERGIC and golgi 3 protein-coding ERGIC3 ERGIC and golgi 3 O endoplasmic reticulum-Golgi intermediate compartment protein 3|endoplasmic reticulum-localized protein ERp43|serologically defined breast cancer antigen 84|serologically defined breast cancer antigen NY-BR-84 20121230 -9606 51616 TAF9B RP4-570L12.2 DN-7|DN7|TAF9L|TAFII31L|TFIID-31 HGNC:17306|MIM:300754|Ensembl:ENSG00000187325|HPRD:06739|Vega:OTTHUMG00000021887 X Xq13.1-q21.1 TAF9B RNA polymerase II, TATA box binding protein (TBP)-associated factor, 31kDa protein-coding TAF9B TAF9B RNA polymerase II, TATA box binding protein (TBP)-associated factor, 31kDa O TAF9-like RNA polymerase II, TATA box binding protein (TBP)-associated factor, 31kDa|TBP-associated factor 9L|neuronal cell death-related protein 7|transcription associated factor TAFII31L|transcription initiation factor IID, 31kD subunit|transcription initiation factor TFIID subunit 9B|transcription-associated factor TAFII31L 20121230 -9606 51617 HMP19 - - Ensembl:ENSG00000170091|HPRD:13664|Vega:OTTHUMG00000130543 5 5q35.2 HMP19 protein protein-coding - - - NSG2|hypothalamus golgi apparatus expressed 19 kDa protein|neuron-specific protein family member 2|p19 protein|protein p19 20121230 -9606 51619 UBE2D4 - HBUCE1 HGNC:21647|Ensembl:ENSG00000078967|HPRD:14242|Vega:OTTHUMG00000128971 7 7p13 ubiquitin-conjugating enzyme E2D 4 (putative) protein-coding UBE2D4 ubiquitin-conjugating enzyme E2D 4 (putative) O ubiquitin carrier protein D4|ubiquitin-conjugating enzyme E2 D4|ubiquitin-conjugating enzyme HBUCE1|ubiquitin-protein ligase D4 20121230 -9606 51621 KLF13 - BTEB3|FKLF2|NSLP1|RFLAT-1|RFLAT1 HGNC:13672|MIM:605328|Ensembl:ENSG00000169926|HPRD:05620|Vega:OTTHUMG00000172224 15 15q12 Kruppel-like factor 13 protein-coding KLF13 Kruppel-like factor 13 O BTE-binding protein 3|Krueppel-like factor 13|RANTES factor of late activated T lymphocytes-1|RANTES factor of late activated T-lymphocytes 1|Sp1 like zinc finger transcription factor|basic transcription element binding protein 3|basic transcription element-binding protein 3|novel Sp1-like zinc finger transcription factor 1|transcription factor BTEB3|transcription factor NSLP1 20121230 -9606 51622 CCZ1 CGI-43 C7orf28A|CCZ1A|H_DJ1163J12.2 HGNC:21691|Ensembl:ENSG00000122674|HPRD:12915|Vega:OTTHUMG00000155502 7 7p22.1 CCZ1 vacuolar protein trafficking and biogenesis associated homolog (S. cerevisiae) protein-coding CCZ1 CCZ1 vacuolar protein trafficking and biogenesis associated homolog (S. cerevisiae) O H_NH0577018.2|vacuolar fusion protein CCZ1 homolog 20121230 -9606 51626 DYNC2LI1 CGI-60 D2LIC|LIC3 HGNC:24595|Ensembl:ENSG00000138036|HPRD:13116|Vega:OTTHUMG00000128656 2 2p25.1-p24.1 dynein, cytoplasmic 2, light intermediate chain 1 protein-coding DYNC2LI1 dynein, cytoplasmic 2, light intermediate chain 1 O cytoplasmic dynein 2 light intermediate chain 1|dynein 2 light intermediate chain 20121230 -9606 51629 SLC25A39 CGI-69 CGI69 HGNC:24279|MIM:610820|Ensembl:ENSG00000013306|HPRD:13040|Vega:OTTHUMG00000132628 17 17q12 solute carrier family 25, member 39 protein-coding SLC25A39 solute carrier family 25, member 39 O solute carrier family 25 member 39 20121230 -9606 51631 LUC7L2 CGI-59 CGI-74|LUC7B2 HGNC:21608|MIM:613056|Ensembl:ENSG00000146963|HPRD:17456|Vega:OTTHUMG00000151717 7 7q34 LUC7-like 2 (S. cerevisiae) protein-coding LUC7L2 LUC7-like 2 (S. cerevisiae) O putative RNA-binding protein Luc7-like 2 20121230 -9606 51633 OTUD6B CGI-77 DUBA5 HGNC:24281|MIM:612021|Ensembl:ENSG00000155100|HPRD:13041|Vega:OTTHUMG00000150758 8 8q21.3 OTU domain containing 6B protein-coding OTUD6B OTU domain containing 6B O DUBA-5|OTU domain-containing protein 6B 20121230 -9606 51634 RBMX2 RP1-20I3.2 CGI-79 HGNC:24282|Ensembl:ENSG00000134597|HPRD:06470|Vega:OTTHUMG00000022395 X Xq26.1 RNA binding motif protein, X-linked 2 protein-coding RBMX2 RNA binding motif protein, X-linked 2 O RNA-binding motif protein, X-linked 2 20121230 -9606 51635 DHRS7 CGI-86 SDR34C1|retDSR4|retSDR4 HGNC:21524|MIM:612833|Ensembl:ENSG00000100612|HPRD:16802|Vega:OTTHUMG00000140331 14 14q23.1 dehydrogenase/reductase (SDR family) member 7 protein-coding DHRS7 dehydrogenase/reductase (SDR family) member 7 O dehydrogenase/reductase SDR family member 7|retinal short-chain dehydrogenase/reductase 4|short chain dehydrogenase/reductase family 34C, member 1 20121230 -9606 51637 C14orf166 CGI-99 CGI99|CLE|CLE7|LCRP369|RLLM1 HGNC:23169|MIM:610858|Ensembl:ENSG00000087302|HPRD:16615|Vega:OTTHUMG00000152332 14 14q22.1 chromosome 14 open reading frame 166 protein-coding C14orf166 chromosome 14 open reading frame 166 O CLE7 homolog|RLL motif containing 1|UPF0568 protein C14orf166 20121230 -9606 51639 SF3B14 CGI-110 HSPC175|Ht006|P14|SAP14|SF3B14a MIM:607835|Ensembl:ENSG00000115128|HPRD:09702|Vega:OTTHUMG00000125499 2 2pter-p25.1 splicing factor 3B, 14 kDa subunit protein-coding - - - SF3b 14 kDa subunit|pre-mRNA branch site protein p14|spliceosome-associated protein, 14 kDa subunit 20121230 -9606 51642 MRPL48 CGI-118 HSPC290|L48MT|MRP-L48 HGNC:16653|MIM:611853|Ensembl:ENSG00000175581|HPRD:14767|Vega:OTTHUMG00000168048 11 11q13.4 mitochondrial ribosomal protein L48 protein-coding MRPL48 mitochondrial ribosomal protein L48 O 39S ribosomal protein L48, mitochondrial 20121230 -9606 51643 TMBIM4 CGI-119 GAAP|LFG4|S1R|ZPRO HGNC:24257|Ensembl:ENSG00000155957|Vega:OTTHUMG00000168973 12 12q14.1-q15 transmembrane BAX inhibitor motif containing 4 protein-coding TMBIM4 transmembrane BAX inhibitor motif containing 4 O Golgi anti-apoptotic protein|Z-protein|protein lifeguard 4|transmembrane BAX inhibitor motif-containing protein 4 20121230 -9606 51645 PPIL1 CGI-124 CYPL1|PPIase|hCyPX HGNC:9260|MIM:601301|Ensembl:ENSG00000137168|HPRD:03194|Vega:OTTHUMG00000014612 6 6p21.1 peptidylprolyl isomerase (cyclophilin)-like 1 protein-coding PPIL1 peptidylprolyl isomerase (cyclophilin)-like 1 O cyclophilin-related gene 1|peptidyl-prolyl cis-trans isomerase|peptidyl-prolyl cis-trans isomerase-like 1|rotamase PPIL1 20121230 -9606 51646 YPEL5 CGI-127 - HGNC:18329|MIM:609726|Ensembl:ENSG00000119801|HPRD:18312|Vega:OTTHUMG00000097839 2 2p23.1 yippee-like 5 (Drosophila) protein-coding YPEL5 yippee-like 5 (Drosophila) O protein yippee-like 5 20121230 -9606 51647 FAM96B CGI-128 MIP18 HGNC:24261|MIM:614778|Ensembl:ENSG00000166595|HPRD:13033|Vega:OTTHUMG00000175408 16 16q22.1 family with sequence similarity 96, member B protein-coding FAM96B family with sequence similarity 96, member B O MSS19-interacting protein of 18 kDa|mitotic spindle-associated MMXD complex subunit MIP18 20121230 -9606 51649 MRPS23 CGI-138 HSPC329|MRP-S23 HGNC:14509|MIM:611985|Ensembl:ENSG00000181610|HPRD:17592|Vega:OTTHUMG00000178774 17 17q22-q23 mitochondrial ribosomal protein S23 protein-coding MRPS23 mitochondrial ribosomal protein S23 O 28S ribosomal protein S23, mitochondrial|S23mt 20121230 -9606 51650 MRPS33 CGI-139 MRP-S33|PTD003|S33mt HGNC:16634|MIM:611993|Ensembl:ENSG00000090263|HPRD:17598|Vega:OTTHUMG00000157456 7 7q34 mitochondrial ribosomal protein S33 protein-coding MRPS33 mitochondrial ribosomal protein S33 O 28S ribosomal protein S33, mitochondrial 20121230 -9606 51651 PTRH2 CGI-147 BIT1|PTH2 HGNC:24265|MIM:608625|Ensembl:ENSG00000141378|HPRD:12273|Vega:OTTHUMG00000154532 17 17q23.1 peptidyl-tRNA hydrolase 2 protein-coding PTRH2 peptidyl-tRNA hydrolase 2 O PTH 2|bcl-2 inhibitor of transcription 1|peptidyl-tRNA hydrolase 2, mitochondrial 20121230 -9606 51652 CHMP3 CGI-149 NEDF|VPS24 HGNC:29865|MIM:610052|Ensembl:ENSG00000115561|HPRD:15650|Vega:OTTHUMG00000153189 2 2p11.2 charged multivesicular body protein 3 protein-coding CHMP3 charged multivesicular body protein 3 O 25.1 protein|CHMP family, member 3|chromatin-modifying protein 3|neuroendocrine differentiation factor|vacuolar protein sorting 24 homolog|vacuolar protein sorting-associated protein 24 20121230 -9606 51654 CDK5RAP1 RP5-1187J4.1 C20orf34|C42|CDK5RAP1.3|CDK5RAP1.4|CGI-05|HSPC167 HGNC:15880|MIM:608200|Ensembl:ENSG00000101391|HPRD:12189|Vega:OTTHUMG00000032256 20 20pter-q11.23 CDK5 regulatory subunit associated protein 1 protein-coding CDK5RAP1 CDK5 regulatory subunit associated protein 1 O CDK5 activator-binding protein C42|CDK5 regulatory subunit-associated protein 1 20121230 -9606 51655 RASD1 - AGS1|DEXRAS1|MGC:26290 HGNC:15828|MIM:605550|Ensembl:ENSG00000108551|HPRD:08958|Vega:OTTHUMG00000059292 17 17p11.2 RAS, dexamethasone-induced 1 protein-coding RASD1 RAS, dexamethasone-induced 1 O activator of G-protein signaling 1|dexamethasone-induced Ras-related protein 1|ras-related protein 20121230 -9606 51657 STYXL1 - DUSP24|MK-STYX HGNC:18165|Ensembl:ENSG00000127952|HPRD:13256|Vega:OTTHUMG00000130459 7 7q11.23 serine/threonine/tyrosine interacting-like 1 protein-coding STYXL1 serine/threonine/tyrosine interacting-like 1 O dual specificity phosphatase 24 (putative)|dual specificity phosphatase inhibitor MK-STYX|dual specificity protein phosphatase 24|map kinase phosphatase-like protein MK-STYX|serine/threonine/tyrosine-interacting-like protein 1 20121230 -9606 51659 GINS2 CGI-122 HSPC037|PSF2|Pfs2 HGNC:24575|MIM:610609|Ensembl:ENSG00000131153|HPRD:15197|Vega:OTTHUMG00000137646 16 16q24.1 GINS complex subunit 2 (Psf2 homolog) protein-coding GINS2 GINS complex subunit 2 (Psf2 homolog) O DNA replication complex GINS protein PSF2 20121230 -9606 51660 MPC1 CGI-129 BRP44L|MPYCD|dJ68L15.3 HGNC:21606|MIM:614738|Ensembl:ENSG00000060762|HPRD:07091|Vega:OTTHUMG00000015999 6 6q27 mitochondrial pyruvate carrier 1 protein-coding MPC1 mitochondrial pyruvate carrier 1 O HSPC040 protein|brain protein 44-like protein 20121230 -9606 51661 FKBP7 UNQ670/PRO1304 FKBP23|PPIase HGNC:3723|MIM:607062|Ensembl:ENSG00000079150|HPRD:08451|Vega:OTTHUMG00000132577 2 2q31.2 FK506 binding protein 7 protein-coding FKBP7 FK506 binding protein 7 O 23 kDa FK506-binding protein|23 kDa FKBP|FK506-binding protein 23|FK506-binding protein 7|FKBP-23|FKBP-7|PPIase FKBP7|peptidyl-prolyl cis-trans isomerase FKBP7|rotamase 20121230 -9606 51663 ZFR - ZFR1 HGNC:17277|Ensembl:ENSG00000056097|HPRD:15730|Vega:OTTHUMG00000161979 5 5p13.3 zinc finger RNA binding protein protein-coding ZFR zinc finger RNA binding protein O M-phase phosphoprotein homolog|hZFR|zinc finger RNA-binding protein 20121230 -9606 51665 ASB1 - ASB-1 HGNC:16011|MIM:605758|Ensembl:ENSG00000065802|HPRD:05767|Vega:OTTHUMG00000152866 2 2q37 ankyrin repeat and SOCS box containing 1 protein-coding ASB1 ankyrin repeat and SOCS box containing 1 O ankyrin repeat and SOCS box protein 1|ankyrin repeat and SOCS box-containing 1 20121230 -9606 51666 ASB4 - ASB-4 HGNC:16009|MIM:605761|Ensembl:ENSG00000005981|HPRD:05770|Vega:OTTHUMG00000153960 7 7q21-q22 ankyrin repeat and SOCS box containing 4 protein-coding ASB4 ankyrin repeat and SOCS box containing 4 O ankyrin repeat and SOCS box protein 4|ankyrin repeat and SOCS box-containing 4 20121230 -9606 51667 NUB1 - BS4|NUB1L|NYREN18 HGNC:17623|MIM:607981|Ensembl:ENSG00000013374|HPRD:07450|Vega:OTTHUMG00000157365 7 7q36 negative regulator of ubiquitin-like proteins 1 protein-coding NUB1 negative regulator of ubiquitin-like proteins 1 O NEDD8 ultimate buster 1|NEDD8 ultimate buster-1|renal carcinoma antigen NY-REN-18 20121230 -9606 51668 HSPB11 HSPC034 C1orf41|HSPCO34|IFT25|PP25 HGNC:25019|Ensembl:ENSG00000081870|Vega:OTTHUMG00000008408 1 1p32 heat shock protein family B (small), member 11 protein-coding HSPB11 heat shock protein family B (small), member 11 O heat shock protein beta-11|intraflagellar transport 25 homolog|placental protein 25 20121230 -9606 51669 TMEM66 HSPC035 FOAP-7|SARAF|XTP3 HGNC:28789|MIM:614768|Ensembl:ENSG00000133872|HPRD:08651|Vega:OTTHUMG00000133397 8 8p12 transmembrane protein 66 protein-coding TMEM66 transmembrane protein 66 O HBV X-transactivated gene 3 protein|HBV XAg-transactivated protein 3|SARAF long isoform|SARAF short isoform|SOCE-associated regulatory factor|protein FOAP-7|store-operated calcium entry-associated regulatory factor 20121230 -9606 51673 TPPP3 CGI-38 p20|p25gamma HGNC:24162|Ensembl:ENSG00000159713|HPRD:16710|Vega:OTTHUMG00000137516 16 16q22.1 tubulin polymerization-promoting protein family member 3 protein-coding TPPP3 tubulin polymerization-promoting protein family member 3 O TPPP/p20|brain specific protein 20121230 -9606 51676 ASB2 - ASB-2 HGNC:16012|MIM:605759|Ensembl:ENSG00000100628|HPRD:05768|Vega:OTTHUMG00000171298 14 14q31-q32 ankyrin repeat and SOCS box containing 2 protein-coding ASB2 ankyrin repeat and SOCS box containing 2 O ankyrin repeat and SOCS box protein 2|ankyrin repeat and SOCS box-containing protein 2a 20121230 -9606 51678 MPP6 - PALS2|VAM-1|VAM1|p55T HGNC:18167|MIM:606959|Ensembl:ENSG00000105926|HPRD:09509|Vega:OTTHUMG00000023507 7 7p15 membrane protein, palmitoylated 6 (MAGUK p55 subfamily member 6) protein-coding MPP6 membrane protein, palmitoylated 6 (MAGUK p55 subfamily member 6) O MAGUK p55 subfamily member 6|MAGUK protein p55T|VELI-associated MAGUK 1|protein associated with Lin7 2 20121230 -9606 51684 SUFU RP11-47A8.1 PRO1280|SUFUH|SUFUXL HGNC:16466|MIM:607035|Ensembl:ENSG00000107882|HPRD:06124|Vega:OTTHUMG00000018966 10 10q24.32 suppressor of fused homolog (Drosophila) protein-coding SUFU suppressor of fused homolog (Drosophila) O suppressor of fused homolog 20121230 -9606 51686 OAZ3 RP11-98D18.13-004 AZ3|OAZ-t|TISP15 HGNC:8097|MIM:605138|Ensembl:ENSG00000143450|HPRD:18670|Vega:OTTHUMG00000013061 1 1q21.3 ornithine decarboxylase antizyme 3 protein-coding OAZ3 ornithine decarboxylase antizyme 3 O ODC-Az 3|antizyme 3 20121230 -9606 51690 LSM7 - YNL147W HGNC:20470|MIM:607287|Ensembl:ENSG00000130332|HPRD:06287|Vega:OTTHUMG00000180441 19 19p13.3 LSM7 homolog, U6 small nuclear RNA associated (S. cerevisiae) protein-coding LSM7 LSM7 homolog, U6 small nuclear RNA associated (S. cerevisiae) O U6 snRNA-associated Sm-like protein LSm7 20121230 -9606 51691 NAA38 - LSM8 HGNC:20471|MIM:607288|Ensembl:ENSG00000128534|HPRD:06288|Vega:OTTHUMG00000156956 7 7q31.1-q31.3 N(alpha)-acetyltransferase 38, NatC auxiliary subunit protein-coding NAA38 N(alpha)-acetyltransferase 38, NatC auxiliary subunit O LSM8 homolog, U6 small nuclear RNA associated|MAK31-like protein|N-alpha-acetyltransferase 38, NatC auxiliary subunit|U6 snRNA-associated Sm-like protein LSm8 20121230 -9606 51692 CPSF3 - CPSF-73|CPSF73 HGNC:2326|MIM:606029|Ensembl:ENSG00000119203|HPRD:05825|Vega:OTTHUMG00000090415 2 2p25.1 cleavage and polyadenylation specific factor 3, 73kDa protein-coding CPSF3 cleavage and polyadenylation specific factor 3, 73kDa O cleavage and polyadenylation specificity factor subunit 3|mRNA 3'-end-processing endonuclease CPSF-73 20121230 -9606 51693 TRAPPC2L - HSPC176 HGNC:30887|MIM:610970|Ensembl:ENSG00000167515|HPRD:13711|Vega:OTTHUMG00000137861 16 16q24.3 trafficking protein particle complex 2-like protein-coding TRAPPC2L trafficking protein particle complex 2-like O hematopoietic stem/progenitor cells 176|trafficking protein particle complex subunit 2-like protein 20121230 -9606 51696 HECA - HDC|HDCL|HHDC|dJ225E12.1 HGNC:21041|MIM:607977|Ensembl:ENSG00000112406|HPRD:16265|Vega:OTTHUMG00000015686 6 6q23-q24 headcase homolog (Drosophila) protein-coding HECA headcase homolog (Drosophila) O headcase protein homolog 20121230 -9606 51699 VPS29 DC7 DC15|PEP11 HGNC:14340|MIM:606932|Ensembl:ENSG00000111237|HPRD:09499|Vega:OTTHUMG00000169527 12 12q24 vacuolar protein sorting 29 homolog (S. cerevisiae) protein-coding VPS29 vacuolar protein sorting 29 homolog (S. cerevisiae) O PEP11 homolog|hVPS29|retromer protein|vacuolar protein sorting-associated protein 29|vacuolar sorting protein VPS29/PEP11|vesicle protein sorting 29|x 007 protein 20121230 -9606 51700 CYB5R2 - B5R.2 HGNC:24376|MIM:608342|Ensembl:ENSG00000166394|HPRD:06435|Vega:OTTHUMG00000165665 11 11p15.4 cytochrome b5 reductase 2 protein-coding CYB5R2 cytochrome b5 reductase 2 O NADH-cytochrome b5 reductase 2|cytochrome b5 reductase b5R.2 20121230 -9606 51701 NLK - - HGNC:29858|MIM:609476|Ensembl:ENSG00000087095|HPRD:17637|Vega:OTTHUMG00000132451 17 17q11.2 nemo-like kinase protein-coding NLK nemo-like kinase O serine/threonine-protein kinase NLK 20121230 -9606 51702 PADI3 hCG_25124 PAD3|PDI3 HGNC:18337|MIM:606755|Ensembl:ENSG00000142619|HPRD:08419|Vega:OTTHUMG00000002373 1 1p36.13 peptidyl arginine deiminase, type III protein-coding PADI3 peptidyl arginine deiminase, type III O peptidylarginine deiminase III|protein-arginine deiminase type III|protein-arginine deiminase type-3 20121230 -9606 51703 ACSL5 RP11-324O2.5 ACS2|ACS5|FACL5 HGNC:16526|MIM:605677|Ensembl:ENSG00000197142|HPRD:16139|Vega:OTTHUMG00000019060 10 10q25.1-q25.2 acyl-CoA synthetase long-chain family member 5 protein-coding ACSL5 acyl-CoA synthetase long-chain family member 5 O FACL5 for fatty acid coenzyme A ligase 5|LACS 5|fatty acid coenzyme A ligase 5|fatty-acid-Coenzyme A ligase, long-chain 5|long-chain acyl-CoA synthetase 5|long-chain fatty acid coenzyme A ligase 5|long-chain-fatty-acid--CoA ligase 5 20121230 -9606 51704 GPRC5B - RAIG-2|RAIG2 HGNC:13308|MIM:605948|Ensembl:ENSG00000167191|HPRD:16177|Vega:OTTHUMG00000131460 16 16p12 G protein-coupled receptor, family C, group 5, member B protein-coding GPRC5B G protein-coupled receptor, family C, group 5, member B O A-69G12.1|G protein-coupled receptor, family C, group 1, member B|G-protein coupled receptor family C group 5 member B|retinoic acid responsive gene protein|retinoic acid-induced gene 2 protein 20121230 -9606 51705 EMCN - EMCN2|MUC14 HGNC:16041|MIM:608350|Ensembl:ENSG00000164035|HPRD:12220|Vega:OTTHUMG00000131051 4 4q24 endomucin protein-coding EMCN endomucin O MUC-14|endomucin-2|gastric cancer antigen Ga34|mucin-14 20121230 -9606 51706 CYB5R1 UNQ3049/PRO9865 B5R.1|B5R1|B5R2|NQO3A2|humb5R2 HGNC:13397|MIM:608341|Ensembl:ENSG00000159348|HPRD:06434|Vega:OTTHUMG00000041387 1 1q32.1 cytochrome b5 reductase 1 protein-coding CYB5R1 cytochrome b5 reductase 1 O NAD(P)H:quinone oxidoreductase type 3, polypeptide A2|NADH-cytochrome b5 reductase 1 20121230 -9606 51710 ZNF44 - GIOT-2|KOX7|ZNF|ZNF504|ZNF55|ZNF58 HGNC:13110|MIM:194542|Ensembl:ENSG00000197857|HPRD:01927|Vega:OTTHUMG00000156424 19 19p13.2 zinc finger protein 44 protein-coding ZNF44 zinc finger protein 44 O gonadotropin inducible transcription repressor-2|gonadotropin-inducible ovary transcription repressor 2|gonadotropin-inducible transcription repressor 2|zinc finger protein 55|zinc finger protein 58|zinc finger protein KOX7|zinc finger protein ZnFP12 20121230 -9606 51714 SELT UNQ150/PRO176 - MIM:607912|Ensembl:ENSG00000198843|HPRD:07446|Vega:OTTHUMG00000159825 3 3q25.1 selenoprotein T protein-coding - - - - 20121230 -9606 51715 RAB23 RP3-496N17.3 HSPC137 HGNC:14263|MIM:606144|Ensembl:ENSG00000112210|HPRD:05850|Vega:OTTHUMG00000014918 6 6p11 RAB23, member RAS oncogene family protein-coding RAB23 RAB23, member RAS oncogene family O RAB family small GTP binding protein RAB 23|ras-related protein Rab-23 20121230 -9606 51716 CES1P1 - CES1A2|CES1A3|CES4|CESR|PCE-3 HGNC:18546|HPRD:07009 16 16q12.2 carboxylesterase 1 pseudogene 1 pseudo CES1P1 carboxylesterase 1 pseudogene 1 O - 20121230 -9606 51719 CAB39 CGI-66 MO25 HGNC:20292|MIM:612174|Ensembl:ENSG00000135932|HPRD:10091|Vega:OTTHUMG00000133220 2 2q37.1 calcium binding protein 39 protein-coding CAB39 calcium binding protein 39 O MO25alpha|calcium-binding protein 39 20121230 -9606 51720 UIMC1 - RAP80|X2HRIP110 HGNC:30298|MIM:609433|Ensembl:ENSG00000087206|HPRD:11482|Vega:OTTHUMG00000130852 5 5q35.2 ubiquitin interaction motif containing 1 protein-coding UIMC1 ubiquitin interaction motif containing 1 O BRCA1-A complex subunit RAP80|receptor associated protein 80|receptor-associated protein 80|retinoid X receptor-interacting protein 110|retinoid x receptor interacting protein|ubiquitin interaction motif-containing protein 1 20121230 -9606 51725 FBXO40 - FBX40 HGNC:29816|MIM:609107|Ensembl:ENSG00000163833|HPRD:12368|Vega:OTTHUMG00000159410 3 3q13.33 F-box protein 40 protein-coding FBXO40 F-box protein 40 O F-box only protein 40|muscle disease-related protein 20121230 -9606 51726 DNAJB11 PSEC0121 ABBP-2|ABBP2|DJ9|Dj-9|EDJ|ERdj3|ERj3|ERj3p|PRO1080|UNQ537|hDj-9 HGNC:14889|MIM:611341|Ensembl:ENSG00000090520|HPRD:07485|Vega:OTTHUMG00000156614 3 3q27.3 DnaJ (Hsp40) homolog, subfamily B, member 11 protein-coding DNAJB11 DnaJ (Hsp40) homolog, subfamily B, member 11 O APOBEC1-binding protein 2|DnaJ protein 9|ER-associated DNAJ protein 3|ER-associated Hsp40 co-chaperone|PWP1-interacting protein 4|dnaJ homolog subfamily B member 11|dnaJ protein homolog 9|human DnaJ protein 9 20121230 -9606 51727 CMPK1 RP11-511I2.1 CMK|CMPK|UMK|UMP-CMPK|UMPK HGNC:18170|MIM:191710|Ensembl:ENSG00000162368|HPRD:18258|Vega:OTTHUMG00000007849 1 1p32 cytidine monophosphate (UMP-CMP) kinase 1, cytosolic protein-coding CMPK1 cytidine monophosphate (UMP-CMP) kinase 1, cytosolic O UMP-CMP kinase|UMP/CMP kinase|cytidylate kinase|deoxycytidylate kinase|uridine monophosphate kinase|uridine monophosphate/cytidine monophosphate kinase 20121230 -9606 51728 POLR3K My010 C11|C11-RNP3|RPC10|RPC11|RPC12.5|hRPC11 HGNC:14121|MIM:606007|HPRD:16187 16 16p13.3 polymerase (RNA) III (DNA directed) polypeptide K, 12.3 kDa protein-coding POLR3K polymerase (RNA) III (DNA directed) polypeptide K, 12.3 kDa O DNA-directed RNA polymerase III subunit K|DNA-directed RNA polymerase III subunit RPC10|DNA-directed RNA polymerases III 12.5 kDa polypeptide|RNA polymerase III 12.5 kDa subunit|RNA polymerase III subunit (hRPC11)|RNA polymerase III subunit C10|RNA polymerase III subunit C11|RNA polymerase III subunit CII 20121230 -9606 51729 WBP11 - NPWBP|SIPP1|WBP-11 HGNC:16461|Ensembl:ENSG00000084463|HPRD:18293|Vega:OTTHUMG00000168737 12 12p12.3 WW domain binding protein 11 protein-coding WBP11 WW domain binding protein 11 O Npw38-binding protein NpwBP|SH3 domain-binding protein SNP70|WW domain-binding protein 11|splicing factor that interacts with PQBP-1 and PP1|splicing factor, PQBP1 and PP1 interacting 20121230 -9606 51733 UPB1 - BUP1 HGNC:16297|MIM:606673|Ensembl:ENSG00000100024|HPRD:09451|Vega:OTTHUMG00000150749 22 22q11.2 ureidopropionase, beta protein-coding UPB1 ureidopropionase, beta O BUP-1|beta-alanine synthase|beta-ureidopropionase|n-carbamoyl-beta-alanine amidohydrolase 20121230 -9606 51734 MSRB1 HSPC270 SELR|SELX|SEPX1|SepR HGNC:14133|MIM:606216|Ensembl:ENSG00000198736|HPRD:12095|Vega:OTTHUMG00000129143 16 16p13.3 methionine sulfoxide reductase B1 protein-coding MSRB1 methionine sulfoxide reductase B1 O methionine-R-sulfoxide reductase B1|selenoprotein R|selenoprotein X, 1 20121230 -9606 51735 RAPGEF6 - KIA001LB|PDZ-GEF2|PDZGEF2|RA-GEF-2|RAGEF2 HGNC:20655|MIM:610499|Ensembl:ENSG00000158987|Ensembl:ENSG00000217128|HPRD:11483|Vega:OTTHUMG00000162683|Vega:OTTHUMG00000162686 5 5q31.1 Rap guanine nucleotide exchange factor (GEF) 6 protein-coding RAPGEF6 Rap guanine nucleotide exchange factor (GEF) 6 O PDZ domain containing guanine nucleotide exchange factor (GEF) 2|PDZ domain-containing guanine nucleotide exchange factor 2|PDZ domain-containing guanine nucleotide exchange factor I|rap guanine nucleotide exchange factor 6 20121230 -9606 51738 GHRL UNQ524/PRO1066 MTLRP HGNC:18129|MIM:605353|Ensembl:ENSG00000157017|HPRD:05638|Vega:OTTHUMG00000155360 3 3p26-p25 ghrelin/obestatin prepropeptide protein-coding GHRL ghrelin/obestatin prepropeptide O appetite-regulating hormone|ghrelin, growth hormone secretagogue receptor ligand|ghrelin/obestatin preprohormone|growth hormone secretagogue|growth hormone-releasing peptide|motilin-related peptide 20121230 -9606 51741 WWOX - D16S432E|FOR|FRA16D|HHCMA56|PRO0128|SDR41C1|WOX1 HGNC:12799|MIM:605131|Ensembl:ENSG00000186153|HPRD:05501|Vega:OTTHUMG00000176851 16 16q23.3-q24.1 WW domain containing oxidoreductase protein-coding WWOX WW domain containing oxidoreductase O WW domain-containing oxidoreductase|WW domain-containing protein WWOX|fragile site FRA16D oxidoreductase|short chain dehydrogenase/reductase family 41C, member 1 20121230 -9606 51742 ARID4B RP11-382D8.2 BCAA|BRCAA1|RBBP1L1|RBP1L1|SAP180 HGNC:15550|MIM:609696|Ensembl:ENSG00000054267|HPRD:10661|Vega:OTTHUMG00000039621 1 1q42.1-q43 AT rich interactive domain 4B (RBP1-like) protein-coding ARID4B AT rich interactive domain 4B (RBP1-like) O 180 kDa Sin3-associated polypeptide|ARID domain-containing protein 4B|AT-rich interactive domain-containing protein 4B|Rb-binding protein homolog|SIN3A-associated protein 180|breast cancer-associated antigen 1|breast cancer-associated antigen BRCAA1|breast carcinoma-associated antigen|histone deacetylase complex subunit SAP180|retinoblastoma-binding protein 1-like 1|sin3-associated polypeptide p180 20121230 -9606 51744 CD244 - 2B4|NAIL|NKR2B4|Nmrk|SLAMF4 HGNC:18171|MIM:605554|Ensembl:ENSG00000122223|HPRD:16121|Vega:OTTHUMG00000028606 1 1q23.3 CD244 molecule, natural killer cell receptor 2B4 protein-coding CD244 CD244 molecule, natural killer cell receptor 2B4 O NK cell activation inducing ligand NAIL|NK cell activation-inducing ligand|NK cell type I receptor protein 2B4|h2B4|natural killer cell receptor 2B4 20121230 -9606 51747 LUC7L3 - CRA|CREAP-1|CROP|LUC7A|OA48-18|hLuc7A HGNC:24309|MIM:609434|Ensembl:ENSG00000108848|HPRD:16759|Vega:OTTHUMG00000162257 17 17q21.33 LUC7-like 3 (S. cerevisiae) protein-coding LUC7L3 LUC7-like 3 (S. cerevisiae) O CRE-associated protein 1|cAMP regulatory element-associated protein 1|cisplatin resistance associated overexpressed protein|cisplatin resistance-associated overexpressed protein|cisplatin resistance-associated-overexpressed protein|luc7-like protein 3|okadaic acid-inducible phosphoprotein OA48-18 20121230 -9606 51750 RTEL1 RP4-583P15.2 C20orf41|NHL|RTEL|bK3184A7.3 HGNC:15888|MIM:608833|Ensembl:ENSG00000026036|Ensembl:ENSG00000258366|HPRD:15281|Vega:OTTHUMG00000032992|Vega:OTTHUMG00000170363 20 20q13.3 regulator of telomere elongation helicase 1 protein-coding RTEL1 regulator of telomere elongation helicase 1 O regulator of telomere length 20121230 -9606 51751 HIGD1B - CLST11240|CLST11240-15 HGNC:24318|Ensembl:ENSG00000131097|HPRD:16724|Vega:OTTHUMG00000179864 17 17q21.31 HIG1 hypoxia inducible domain family, member 1B protein-coding HIGD1B HIG1 hypoxia inducible domain family, member 1B O HIG1 domain family member 1B 20121230 -9606 51752 ERAP1 UNQ584/PRO1154 A-LAP|ALAP|APPILS|ARTS-1|ARTS1|ERAAP|ERAAP1|PILS-AP|PILSAP HGNC:18173|MIM:606832|Ensembl:ENSG00000164307|HPRD:06015|Vega:OTTHUMG00000128721 5 5q15 endoplasmic reticulum aminopeptidase 1 protein-coding ERAP1 endoplasmic reticulum aminopeptidase 1 O adipocyte-derived leucine aminopeptidase|aminopeptidase PILS|aminopeptidase regulator of TNFR1 shedding|endoplasmic reticulum aminopeptidase associated with antigen processing|puromycin-insensitive leucyl-specific aminopeptidase|type 1 tumor necrosis factor receptor shedding aminopeptidase regulator 20121230 -9606 51754 TMEM8B RP11-112J3.10-001 C9orf127|NAG-5|NGX6|RP11-112J3.10 HGNC:21427|Ensembl:ENSG00000137103|HPRD:16674|Vega:OTTHUMG00000019885 9 9p13.3 transmembrane protein 8B protein-coding TMEM8B transmembrane protein 8B O Protein NGX6|nasopharyngeal carcinoma expressed 6|nasopharyngeal carcinoma related protein|nasopharyngeal carcinoma-associated gene 6 protein|protein NAG-5 20121230 -9606 51755 CDK12 - CRK7|CRKR|CRKRS|hCDK12 HGNC:24224|Ensembl:ENSG00000167258|HPRD:10849|Vega:OTTHUMG00000133214 17 17q12 cyclin-dependent kinase 12 protein-coding CDK12 cyclin-dependent kinase 12 O CDC2-related protein kinase 7|Cdc2-related kinase, arginine/serine-rich|cell division cycle 2-related protein kinase 7|cell division protein kinase 12 20121230 -9606 51759 C9orf78 - HCA59|HSPC220|bA409K20.3 HGNC:24932|Ensembl:ENSG00000136819|HPRD:10803|Vega:OTTHUMG00000020796 9 9q34.11 chromosome 9 open reading frame 78 protein-coding C9orf78 chromosome 9 open reading frame 78 O hepatocellular carcinoma-associated antigen 59|uncharacterized protein C9orf78 20121230 -9606 51760 SYT17 - - HGNC:24119|Ensembl:ENSG00000103528|HPRD:17425|Vega:OTTHUMG00000131461 16 16p12.3 synaptotagmin XVII protein-coding SYT17 synaptotagmin XVII O B/K protein|protein B/K|synaptotagmin-17|sytXVII 20121230 -9606 51761 ATP8A2 RP11-141F12.1 ATP|ATPIB|IB|ML-1 HGNC:13533|MIM:605870|Ensembl:ENSG00000132932|HPRD:05795|Vega:OTTHUMG00000016611 13 13q12 ATPase, aminophospholipid transporter, class I, type 8A, member 2 protein-coding ATP8A2 ATPase, aminophospholipid transporter, class I, type 8A, member 2 O ATPase class I type 8A member 2|ATPase, aminophospholipid transporter-like, class I, type 8A, member 2|probable phospholipid-transporting ATPase IB 20121230 -9606 51762 RAB8B - - HGNC:30273|MIM:613532|Ensembl:ENSG00000166128|HPRD:11476|Vega:OTTHUMG00000132862 15 15q22.2 RAB8B, member RAS oncogene family protein-coding RAB8B RAB8B, member RAS oncogene family O RAB-8b protein|ras-related protein Rab-8B 20121230 -9606 51763 INPP5K - PPS|SKIP HGNC:33882|MIM:607875|Ensembl:ENSG00000132376|HPRD:08489|Vega:OTTHUMG00000150648 17 17p13.3 inositol polyphosphate-5-phosphatase K protein-coding INPP5K inositol polyphosphate-5-phosphatase K O inositol polyphosphate 5-phosphatase K|skeletal muscle and kidney-enriched inositol phosphatase 20121230 -9606 51764 GNG13 - G(gamma)13|h2-35 HGNC:14131|MIM:607298|Ensembl:ENSG00000127588|HPRD:12116|Vega:OTTHUMG00000047839 16 16p13.3 guanine nucleotide binding protein (G protein), gamma 13 protein-coding GNG13 guanine nucleotide binding protein (G protein), gamma 13 O G gamma subunit, clone:h2-35|guanine nucleotide binding protein 13, gamma|guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-13 20121230 -9606 51765 MST4 RP6-213H19.1 MASK MIM:300547|Ensembl:ENSG00000134602|HPRD:06663|Vega:OTTHUMG00000022420 X Xq26.2 serine/threonine protein kinase MST4 protein-coding - - - Mst3 and SOK1-related kinase|STE20-like kinase MST4|mammalian Ste20-like protein kinase 4|mammalian sterile 20-like 4|serine/threonine-protein kinase MASK|serine/threonine-protein kinase MST4 20121230 -9606 51768 TM7SF3 - - HGNC:23049|MIM:605181|Ensembl:ENSG00000064115|HPRD:05536|Vega:OTTHUMG00000169243 12 12q11-q12 transmembrane 7 superfamily member 3 protein-coding TM7SF3 transmembrane 7 superfamily member 3 O seven span transmembrane protein|seven transmembrane protein TM7SF3 20121230 -9606 51773 RSF1 - HBXAP|RSF-1|XAP8|p325 HGNC:18118|MIM:608522|Ensembl:ENSG00000048649|HPRD:10537|Vega:OTTHUMG00000150433 11 11q14.1 remodeling and spacing factor 1 protein-coding RSF1 remodeling and spacing factor 1 O HBV pX associated protein-8|HBV pX-associated protein 8|hepatitis B virus x associated protein|hepatitis B virus x-associated protein|p325 subunit of RSF chromatin-remodeling complex 20121230 -9606 51776 ZAK HCCS4 AZK|MLK7|MLT|MLTK|MRK|mlklak|pk MIM:609479|Ensembl:ENSG00000091436|HPRD:11791|Vega:OTTHUMG00000132297 2 2q24.2 sterile alpha motif and leucine zipper containing kinase AZK protein-coding - - - HCCS-4|MLK-like mitogen-activated protein triple kinase|human cervical cancer suppressor gene 4 protein|mitogen-activated protein kinase kinase kinase MLT|mixed lineage kinase 7|mixed lineage kinase with a leucine zipper and a sterile alpha motif|mixed lineage kinase-related kinase MRK-beta 20121230 -9606 51778 MYOZ2 - C4orf5|CMH16|CS-1 HGNC:1330|MIM:605602|Ensembl:ENSG00000172399|HPRD:05724|Vega:OTTHUMG00000132968 4 4q26-q27 myozenin 2 protein-coding MYOZ2 myozenin 2 O FATZ-related protein 2|calcineurin-binding protein calsarcin-1|muscle-specific protein|myozenin-2 20121230 -9606 51780 KDM3B - 5qNCA|C5orf7|JMJD1B|NET22 HGNC:1337|MIM:609373|Ensembl:ENSG00000120733|HPRD:11055|Vega:OTTHUMG00000163469 5 5q31 lysine (K)-specific demethylase 3B protein-coding KDM3B lysine (K)-specific demethylase 3B O jmjC domain-containing histone demethylation protein 2B|jumonji domain containing 1B|jumonji domain-containing protein 1B|lysine-specific demethylase 3B|nuclear protein 5qNCA 20121230 -9606 51802 ASIC5 - ACCN5|HINAC|INAC HGNC:17537|Ensembl:ENSG00000256394|HPRD:16470|Vega:OTTHUMG00000161941 4 4q32.1 acid-sensing (proton-gated) ion channel family member 5 protein-coding ASIC5 acid-sensing (proton-gated) ion channel family member 5 O acid-sensing ion channel 5|amiloride-sensitive cation channel 5, intestinal|amiloride-sensitive sodium channel|human intestine Na(+) channel 20121230 -9606 51804 SIX4 - AREC3 HGNC:10890|MIM:606342|Ensembl:ENSG00000100625|HPRD:06960|Vega:OTTHUMG00000028996 14 14q23 SIX homeobox 4 protein-coding SIX4 SIX homeobox 4 O homeobox protein SIX4|sine oculis homeobox homolog 4 20121230 -9606 51805 COQ3 RP11-98I9.1 DHHBMT|DHHBMTASE|UG0215E05|bA9819.1 HGNC:18175|MIM:605196|Ensembl:ENSG00000132423|HPRD:07283|Vega:OTTHUMG00000015264 6 6q16.2 coenzyme Q3 homolog, methyltransferase (S. cerevisiae) protein-coding COQ3 coenzyme Q3 homolog, methyltransferase (S. cerevisiae) O 2-polyprenyl-6-hydroxyphenyl methylase|3,4-dihydroxy-5-hexaprenylbenzoate methyltransferase|3-demethylubiquinone-10 3-methyltransferase|DHHB methyltransferase|DHHB-MT|DHHB-MTase|dihydroxyhexaprenylbenzoate methyltransferase|hexaprenyldihydroxybenzoate methyltransferase, mitochondrial|methyltransferase COQ3|polyprenyldihydroxybenzoate methyltransferase 20121230 -9606 51806 CALML5 - CLSP HGNC:18180|MIM:605183|Ensembl:ENSG00000178372|HPRD:05538|Vega:OTTHUMG00000017598 10 10p15.1 calmodulin-like 5 protein-coding CALML5 calmodulin-like 5 O calmodulin-like protein 5|calmodulin-like skin protein 20121230 -9606 51807 TUBA8 - TUBAL2 HGNC:12410|MIM:605742|Ensembl:ENSG00000183785|HPRD:05763|Vega:OTTHUMG00000150097 22 22q11.1 tubulin, alpha 8 protein-coding TUBA8 tubulin, alpha 8 O tubulin alpha chain-like 2|tubulin alpha-8 chain 20121230 -9606 51808 PHAX - RNUXA HGNC:10241|MIM:604924|Ensembl:ENSG00000164902|HPRD:15122|Vega:OTTHUMG00000163273 5 5q23.2 phosphorylated adaptor for RNA export protein-coding PHAX phosphorylated adaptor for RNA export O RNA U small nuclear RNA export adapter protein|RNA U, small nuclear RNA export adapter (phosphorylation regulated)|RNA U, small nuclear RNA export adaptor (phosphorylation regulated)|phosphorylated adapter RNA export protein 20121230 -9606 51809 GALNT7 - GALNAC-T7|GalNAcT7 HGNC:4129|MIM:605005|Ensembl:ENSG00000109586|HPRD:10386|Vega:OTTHUMG00000160817 4 4q31.1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 7 (GalNAc-T7) protein-coding GALNT7 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 7 (GalNAc-T7) O N-acetylgalactosaminyltransferase 7|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 7|polypeptide GalNAc transferase 7|polypeptide N-acetylgalactosaminyltransferase 7|pp-GaNTase 7|protein-UDP acetylgalactosaminyltransferase 7 20121230 -9606 51816 CECR1 - ADA2|ADGF|IDGFL HGNC:1839|MIM:607575|Ensembl:ENSG00000093072|HPRD:10462|Vega:OTTHUMG00000030726 22 22q11.2 cat eye syndrome chromosome region, candidate 1 protein-coding CECR1 cat eye syndrome chromosome region, candidate 1 O adenosine deaminase 2|adenosine deaminase CECR1|cat eye syndrome critical region protein 1 20121230 -9606 53335 BCL11A - BCL11A-L|BCL11A-S|BCL11A-XL|BCL11a-M|CTIP1|EVI9|HBFQTL5|ZNF856 HGNC:13221|MIM:606557|Ensembl:ENSG00000119866|HPRD:05949|Vega:OTTHUMG00000129420 2 2p16.1 B-cell CLL/lymphoma 11A (zinc finger protein) protein-coding BCL11A B-cell CLL/lymphoma 11A (zinc finger protein) O B-cell CLL/lymphoma 11A (zinc finger protein) isoform 2|B-cell lymphoma/leukemia 11A|BCL-11A|BCL11A B-cell CLL/lymphoma 11A (zinc finger protein) isoform 1|C2H2-type zinc finger protein|COUP-TF-interacting protein 1|EVI-9|ecotropic viral integration site 9 homolog|ecotropic viral integration site 9 protein homolog|zinc finger protein 856 20121230 -9606 53336 CPXCR1 RP5-878O8.1 CT77 HGNC:2332|Ensembl:ENSG00000147183|HPRD:06474|Vega:OTTHUMG00000021950 X Xq21.3 CPX chromosome region, candidate 1 protein-coding CPXCR1 CPX chromosome region, candidate 1 O CPX chromosomal region candidate gene 1 protein|cancer/testis antigen 77 20121230 -9606 53338 CAPZA1P - - HGNC:1489 X Xq21.3 capping protein (actin filament) muscle Z-line, alpha 1 pseudogene pseudo CAPZA1P capping protein (actin filament) muscle Z-line, alpha 1 pseudogene O - 20121230 -9606 53339 BTBD1 - C15orf1|NS5ATP8 HGNC:1120|MIM:608530|Ensembl:ENSG00000064726|HPRD:12251|Vega:OTTHUMG00000147364 15 15q24 BTB (POZ) domain containing 1 protein-coding BTBD1 BTB (POZ) domain containing 1 O BTB domain containing 1|BTB/POZ domain-containing protein 1|HCV NS5A-transactivated protein 8|hepatitis C virus NS5A-transactivated protein 8 20121230 -9606 53340 SPA17 - CT22|SP17|SP17-1 HGNC:11210|MIM:608621|Ensembl:ENSG00000064199|HPRD:12272|Vega:OTTHUMG00000165927 11 11q24.2 sperm autoantigenic protein 17 protein-coding SPA17 sperm autoantigenic protein 17 O cancer/testis antigen 22|sperm protein 17|sperm surface protein Sp17 20121230 -9606 53341 MHAC - - HGNC:7065|MIM:605013 16 16p13.3-p12.1 microhydranencephaly unknown MHAC microhydranencephaly O - 20120622 -9606 53342 IL17D UNQ3096/PRO21175 IL-17D|IL-22|IL-27|IL27 HGNC:5984|MIM:607587|Ensembl:ENSG00000172458|HPRD:16251|Vega:OTTHUMG00000016521 13 13q11 interleukin 17D protein-coding IL17D interleukin 17D O interleukin 27|interleukin-17D|interleukin-27 20121230 -9606 53343 NUDT9 PSEC0099 NUDT10 HGNC:8056|MIM:606022|Ensembl:ENSG00000170502|HPRD:09353|Vega:OTTHUMG00000130591 4 4q22.1 nudix (nucleoside diphosphate linked moiety X)-type motif 9 protein-coding NUDT9 nudix (nucleoside diphosphate linked moiety X)-type motif 9 O ADP-ribose diphosphatase|ADP-ribose phosphohydrolase|ADP-ribose pyrophosphatase, mitochondrial|ADP-ribose pyrosphosphatase NUDT9|ADPR-PPase|adenosine diphosphoribose pyrophosphatase|nucleoside diphosphate linked moiety X-type motif 9 20121230 -9606 53344 CHIC1 RP11-108A15.1 BRX HGNC:1934|Ensembl:ENSG00000204116|Vega:OTTHUMG00000021835 X Xq13.2 cysteine-rich hydrophobic domain 1 protein-coding CHIC1 cysteine-rich hydrophobic domain 1 O brain X-linked protein|cystein-rich hydrophobic domain 1|cysteine-rich hydrophobic domain 1 protein 20121230 -9606 53345 TM6SF2 - - HGNC:11861|MIM:606563|Ensembl:ENSG00000213996|HPRD:12109|Vega:OTTHUMG00000182222 19 19p13.3-p12 transmembrane 6 superfamily member 2 protein-coding TM6SF2 transmembrane 6 superfamily member 2 O - 20121230 -9606 53346 TM6SF1 - - HGNC:11860|MIM:606562|Ensembl:ENSG00000136404|HPRD:08411|Vega:OTTHUMG00000147365 15 15q24-q26 transmembrane 6 superfamily member 1 protein-coding TM6SF1 transmembrane 6 superfamily member 1 O - 20121230 -9606 53347 UBASH3A - CLIP4|STS-2|TULA|TULA-1 HGNC:12462|MIM:605736|Ensembl:ENSG00000160185|HPRD:06904|Vega:OTTHUMG00000086805 21 21q22.3 ubiquitin associated and SH3 domain containing A protein-coding UBASH3A ubiquitin associated and SH3 domain containing A O T-cell ubiquitin ligand 1|T-cell ubiquitin ligand protein|cbl-interacting protein 4|suppressor of T-cell receptor signaling 2|ubiquitin-associated and SH3 domain-containing protein A 20121230 -9606 53349 ZFYVE1 PP10436 DFCP1|TAFF1|ZNFN2A1 HGNC:13180|MIM:605471|Ensembl:ENSG00000165861|HPRD:12017|Vega:OTTHUMG00000171365 14 14q24.2 zinc finger, FYVE domain containing 1 protein-coding ZFYVE1 zinc finger, FYVE domain containing 1 O SR3|double FYVE-containing protein 1|phosphoinositide-binding protein SR3|tandem FYVE fingers-1 protein|zinc finger FYVE domain-containing protein 1|zinc finger protein, subfamily 2A (FYVE domain containing), 1|zinc finger protein, subfamily 2A, member 1 20121230 -9606 53353 LRP1B - LRP-DIT|LRPDIT HGNC:6693|MIM:608766|Ensembl:ENSG00000168702|HPRD:16383|Vega:OTTHUMG00000131799 2 2q21.2 low density lipoprotein receptor-related protein 1B protein-coding LRP1B low density lipoprotein receptor-related protein 1B O LRP-1B|LRP-deleted in tumors|low density lipoprotein receptor related protein-deleted in tumor|low density lipoprotein-related protein 1B (deleted in tumors)|low-density lipoprotein receptor-related protein 1B|low-density lipoprotein receptor-related protein-deleted in tumor 20121230 -9606 53354 PANK1 - PANK HGNC:8598|MIM:606160|Ensembl:ENSG00000152782|HPRD:07549|Vega:OTTHUMG00000018718 10 10q23.31 pantothenate kinase 1 protein-coding PANK1 pantothenate kinase 1 O pantothenic acid kinase 1 20121230 -9606 53358 SHC3 RP11-82L18.3 N-Shc|NSHC|RAI|SHCC HGNC:18181|MIM:605263|Ensembl:ENSG00000148082|HPRD:12005|Vega:OTTHUMG00000020179 9 9q22.1 SHC (Src homology 2 domain containing) transforming protein 3 protein-coding SHC3 SHC (Src homology 2 domain containing) transforming protein 3 O SH2 domain protein C3|SHC-transforming protein 3|SHC-transforming protein C|neuronal Shc|protein Rai|src homology 2 domain-containing transforming protein C3|src homology 2 domain-containing-transforming protein C3 20121230 -9606 53366 SM2 - - MIM:604201 6 6q22-q23 Hepatic fibrosis susceptibility due to Schistosoma mansoni infection unknown - - - - 20120622 -9606 53368 MDC1B - - MIM:604801 1 1q42 Muscular dystrophy, congenital, 1B unknown - - - - 20120622 -9606 53369 HLN2 - HDL3 MIM:604802 4 4p15.3 Huntington-like neurodegenerative disorder 2 unknown - - - - 20121209 -9606 53371 NUP54 - - HGNC:17359|MIM:607607|Ensembl:ENSG00000138750|HPRD:06352|Vega:OTTHUMG00000130098 4 4q21.1 nucleoporin 54kDa protein-coding NUP54 nucleoporin 54kDa O 54 kDa nucleoporin|nucleoporin p54 20121230 -9606 53373 TPCN1 - TPC1 HGNC:18182|MIM:609666|Ensembl:ENSG00000186815|HPRD:18217|Vega:OTTHUMG00000169625 12 12q24.13 two pore segment channel 1 protein-coding TPCN1 two pore segment channel 1 O two pore calcium channel protein 1|two-pore channel 1|two-pore segment channel 1|voltage-dependent calcium channel protein TPC1 20121230 -9606 53383 CCDC90AP1 - C17orf23 HGNC:1217 17 17p13.3 coiled-coil domain containing 90A pseudogene 1 pseudo CCDC90AP1 coiled-coil domain containing 90A pseudogene 1 O uncharacterized protein LOC53383 20121230 -9606 53400 SMG6-IT1 - C17orf6 HGNC:1220 17 17p13.3 SMG6 intronic transcript 1 (non-protein coding) unknown SMG6-IT1 SMG6 intronic transcript 1 (non-protein coding) O - 20120816 -9606 53405 CLIC5 RP11-546O15.1 MST130|MSTP130 HGNC:13517|MIM:607293|Ensembl:ENSG00000112782|HPRD:06292|Vega:OTTHUMG00000014775 6 6p12.3 chloride intracellular channel 5 protein-coding CLIC5 chloride intracellular channel 5 O chloride intracellular channel protein 5 20121230 -9606 53407 STX18 GIG9 Ufe1 HGNC:15942|MIM:606046|Ensembl:ENSG00000168818|HPRD:06923|Vega:OTTHUMG00000090331 4 4p16.3-p16.2 syntaxin 18 protein-coding STX18 syntaxin 18 O cell growth-inhibiting gene 9 protein|syntaxin-18 20121230 -9606 53409 ATP5LP3 - ATP5KP3|ATPE5KP3 HGNC:13216 4 4p15.2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 3 pseudo ATP5LP3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 3 O - 20121230 -9606 53410 ATP5LP2 - ATP5KP2 HGNC:13215 6 6q22.31 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 2 pseudo ATP5LP2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 2 O - 20121230 -9606 53411 ATP5LP1 - ATP5KP1|ATPE5KP1 HGNC:13214 11 11q13.1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 1 pseudo ATP5LP1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 1 O - 20121230 -9606 53615 MBD3 - - HGNC:6918|MIM:603573|Ensembl:ENSG00000071655|HPRD:04653|Vega:OTTHUMG00000180081 19 19p13.3 methyl-CpG binding domain protein 3 protein-coding MBD3 methyl-CpG binding domain protein 3 O methyl-CpG-binding domain protein 3 20121230 -9606 53616 ADAM22 - ADAM 22|MDC2 HGNC:201|MIM:603709|Ensembl:ENSG00000008277|HPRD:04751|Vega:OTTHUMG00000137417 7 7q21 ADAM metallopeptidase domain 22 protein-coding ADAM22 ADAM metallopeptidase domain 22 O a disintegrin and metalloproteinase domain 22|disintegrin and metalloproteinase domain-containing protein 22|metalloproteinase-disintegrin ADAM22-3|metalloproteinase-like, disintegrin-like, and cysteine-rich protein 2 20121230 -9606 53630 BCMO1 - BCDO|BCDO1|BCMO|BCO|BCO1 HGNC:13815|MIM:605748|Ensembl:ENSG00000135697|HPRD:12042|Vega:OTTHUMG00000137630 16 16q23.2 beta-carotene 15,15'-monooxygenase 1 protein-coding BCMO1 beta-carotene 15,15'-monooxygenase 1 O beta,beta-carotene 15,15'-monooxygenase|beta-carotene 15, 15'-dioxygenase 1|beta-carotene dioxygenase 1 20121230 -9606 53632 PRKAG3 - AMPKG3 HGNC:9387|MIM:604976|Ensembl:ENSG00000115592|HPRD:16085|Vega:OTTHUMG00000133078 2 2q35 protein kinase, AMP-activated, gamma 3 non-catalytic subunit protein-coding PRKAG3 protein kinase, AMP-activated, gamma 3 non-catalytic subunit O 5'-AMP-activated protein kinase subunit gamma-3|5'-AMP-activated protein kinase, gamma-3 subunit|AMPK gamma-3 chain|AMPK gamma3|AMPK subunit gamma-3 20121230 -9606 53635 PTOV1 PP642 ACID2|PTOV-1 HGNC:9632|MIM:610195|Ensembl:ENSG00000104960|HPRD:17929 19 19q13.33 prostate tumor overexpressed 1 protein-coding PTOV1 prostate tumor overexpressed 1 O activator interaction domain-containing protein 2|prostate tumor overexpressed gene 1|prostate tumor-overexpressed gene 1 protein 20121230 -9606 53637 S1PR5 - EDG8|Edg-8|S1P5|SPPR-1|SPPR-2 HGNC:14299|MIM:605146|Ensembl:ENSG00000180739|HPRD:05510|Vega:OTTHUMG00000180581 19 19p13.2 sphingosine-1-phosphate receptor 5 protein-coding S1PR5 sphingosine-1-phosphate receptor 5 O S1P receptor 5|S1P receptor Edg-8|endothelial differentiation G-protein-coupled receptor 8|endothelial differentiation, sphingolipid G-protein-coupled receptor, 8|sphingosine 1-phosphate receptor 5|sphingosine 1-phosphate receptor EDG8|sphingosine 1-phosphate receptor Edg-8 20121230 -9606 53820 DSCR6 - RIPPLY3 HGNC:3047|MIM:609892|Ensembl:ENSG00000183145|HPRD:10923|Vega:OTTHUMG00000086639 21 21q22.2 Down syndrome critical region gene 6 protein-coding DSCR6 Down syndrome critical region gene 6 O down syndrome critical region protein 6|protein ripply3 20121230 -9606 53822 FXYD7 - - HGNC:4034|MIM:606684|Ensembl:ENSG00000221946|HPRD:09457|Vega:OTTHUMG00000182348 19 19q13.12 FXYD domain containing ion transport regulator 7 protein-coding FXYD7 FXYD domain containing ion transport regulator 7 O FXYD domain-containing ion transport regulator 7 20121230 -9606 53826 FXYD6 UNQ521/PRO1056 - HGNC:4030|MIM:606683|Ensembl:ENSG00000137726|HPRD:09456|Vega:OTTHUMG00000166991 11 11q23.3 FXYD domain containing ion transport regulator 6 protein-coding FXYD6 FXYD domain containing ion transport regulator 6 O FXYD domain-containing ion transport regulator 6|phosphohippolin 20121230 -9606 53827 FXYD5 HSPC113 DYSAD|IWU1|KCT1|OIT2|PRO6241|RIC HGNC:4029|MIM:606669|Ensembl:ENSG00000089327|HPRD:09448|Vega:OTTHUMG00000048092 19 19q13.12 FXYD domain containing ion transport regulator 5 protein-coding FXYD5 FXYD domain containing ion transport regulator 5 O FXYD domain-containing ion transport regulator 5|dysadherin|keratinocytes associated transmembrane protein 1 20121230 -9606 53828 FXYD4 UNQ526/PRO1069 CHIF HGNC:4028|Ensembl:ENSG00000150201|HPRD:07019|Vega:OTTHUMG00000018027 10 10q11.21 FXYD domain containing ion transport regulator 4 protein-coding FXYD4 FXYD domain containing ion transport regulator 4 O FXYD domain-containing ion transport regulator 4|channel-inducing factor 20121230 -9606 53829 P2RY13 FKSG77 GPCR1|GPR86|GPR94|P2Y13|SP174 HGNC:4537|MIM:606380|Ensembl:ENSG00000181631|HPRD:16210|Vega:OTTHUMG00000155745 3 3q24 purinergic receptor P2Y, G-protein coupled, 13 protein-coding P2RY13 purinergic receptor P2Y, G-protein coupled, 13 O G protein-coupled receptor 86|G-protein coupled receptor 86|G-protein coupled receptor 94|P2Y purinoceptor 13 20121230 -9606 53831 GPR84 - EX33|GPCR4 HGNC:4535|MIM:606383|Ensembl:ENSG00000139572|HPRD:16213|Vega:OTTHUMG00000169839 12 12q13.13 G protein-coupled receptor 84 protein-coding GPR84 G protein-coupled receptor 84 O G-protein coupled receptor 84|inflammation-related G protein-coupled receptor EX33|inflammation-related G-protein coupled receptor EX33 20121230 -9606 53832 IL20RA RP11-204P2.1 IL-20R1|ZCYTOR7 HGNC:6003|MIM:605620|Ensembl:ENSG00000016402|HPRD:05729|Vega:OTTHUMG00000015654 6 6q23.3 interleukin 20 receptor, alpha protein-coding IL20RA interleukin 20 receptor, alpha O CRF2-8|IL-20 receptor subunit alpha|IL-20R-alpha|IL-20RA|class II cytokine receptor ZCYTOR7|cytokine receptor class-II member 8|cytokine receptor family 2 member 8|interleukin-20 receptor I|interleukin-20 receptor subunit alpha 20121230 -9606 53833 IL20RB hCG_2022374 DIRS1|FNDC6|IL-20R2 HGNC:6004|MIM:605621|Ensembl:ENSG00000174564|HPRD:14594|Vega:OTTHUMG00000159779 3 3q22.3 interleukin 20 receptor beta protein-coding IL20RB interleukin 20 receptor beta O IL-20 receptor subunit beta|IL-20R-beta|IL-20RB|fibronectin type III domain containing 6|interleukin-20 receptor II|interleukin-20 receptor subunit beta 20121230 -9606 53834 FGFRL1 UNQ480/PRO943 FGFR5|FHFR HGNC:3693|MIM:605830|Ensembl:ENSG00000127418|HPRD:16163|Vega:OTTHUMG00000118998 4 4p16 fibroblast growth factor receptor-like 1 protein-coding FGFRL1 fibroblast growth factor receptor-like 1 O FGF homologous factor receptor|FGF receptor-like protein 1|FGFR-5|FGFR-like protein|fibroblast growth factor receptor 5 20121230 -9606 53836 GPR87 FKSG78 GPR95|KPG_002 HGNC:4538|MIM:606379|Ensembl:ENSG00000138271|HPRD:16209|Vega:OTTHUMG00000159858 3 3q24 G protein-coupled receptor 87 protein-coding GPR87 G protein-coupled receptor 87 O G protein-coupled receptor 95|G-protein coupled receptor 87|G-protein coupled receptor 95|orphan GPCR 87 20121230 -9606 53838 C11orf24 FP2568 DM4E3 HGNC:1174|MIM:610880|Ensembl:ENSG00000171067|HPRD:10704|Vega:OTTHUMG00000167478 11 11q13 chromosome 11 open reading frame 24 protein-coding C11orf24 chromosome 11 open reading frame 24 O uncharacterized protein C11orf24 20121230 -9606 53840 TRIM34 - IFP1|RNF21 HGNC:10063|MIM:605684|Ensembl:ENSG00000258659|HPRD:16141|Vega:OTTHUMG00000066892 11 11p15 tripartite motif containing 34 protein-coding TRIM34 tripartite motif containing 34 O interferon-responsive finger protein 1|ring finger protein 21, interferon-responsive|tripartite motif-containing 34|tripartite motif-containing protein 34 20121230 -9606 53841 CDHR5 UNQ2781/PRO7168 MU-PCDH|MUCDHL|MUPCDH HGNC:7521|MIM:606839|Ensembl:ENSG00000099834|HPRD:06021|Vega:OTTHUMG00000132018 11 11p15.5 cadherin-related family member 5 protein-coding CDHR5 cadherin-related family member 5 O mu-protocadherin|mucin and cadherin-like protein 20121230 -9606 53842 CLDN22 - CLDN21 HGNC:2044|Ensembl:ENSG00000177300|Vega:OTTHUMG00000160627 4 4q35.1 claudin 22 protein-coding CLDN22 claudin 22 O claudin-22 20121230 -9606 53844 COPG2IT1 - CIT1|COPG2AS|DKFZP761N09121|NCRNA00170 HGNC:2238|MIM:610581 7 7q32 COPG2 imprinted transcript 1 (non-protein coding) miscRNA COPG2IT1 COPG2 imprinted transcript 1 (non-protein coding) O - 20121230 -9606 53904 MYO3A - DFNB30 HGNC:7601|MIM:606808|Ensembl:ENSG00000095777|HPRD:06008|Vega:OTTHUMG00000017837 10 10p11.1 myosin IIIA protein-coding MYO3A myosin IIIA O myosin-IIIa 20121230 -9606 53905 DUOX1 - LNOX1|NOXEF1|THOX1 HGNC:3062|MIM:606758|Ensembl:ENSG00000137857|HPRD:08421|Vega:OTTHUMG00000171987 15 15q15.3 dual oxidase 1 protein-coding DUOX1 dual oxidase 1 O NADPH thyroid oxidase 1|flavoprotein NADPH oxidase|large NOX 1|long NOX 1|nicotinamide adenine dinucleotide phosphate oxidase|thyroid oxidase 1 20121230 -9606 53916 RAB4B PP1596 - HGNC:9782|MIM:612945|Ensembl:ENSG00000167578|HPRD:11473 19 19q13.2 RAB4B, member RAS oncogene family protein-coding RAB4B RAB4B, member RAS oncogene family O ras-related GTP-binding protein 4b|ras-related protein Rab-4B|small GTP binding protein RAB4B 20121230 -9606 53917 RAB24 - - HGNC:9765|MIM:612415|Ensembl:ENSG00000169228|HPRD:06697|Vega:OTTHUMG00000130849 5 5q35.3 RAB24, member RAS oncogene family protein-coding RAB24 RAB24, member RAS oncogene family O ras-related protein Rab-24 20121230 -9606 53918 PELO CGI-17 PRO1770 HGNC:8829|MIM:605757|Ensembl:ENSG00000152684|HPRD:09309|Vega:OTTHUMG00000096973 5 5q11.2 pelota homolog (Drosophila) protein-coding PELO pelota homolog (Drosophila) O protein pelota homolog 20121230 -9606 53919 SLCO1C1 - OATP-F|OATP1|OATP14|OATP1C1|OATPF|OATPRP5|SLC21A14 HGNC:13819|MIM:613389|Ensembl:ENSG00000139155|HPRD:08342|Vega:OTTHUMG00000168966 12 12p12.2 solute carrier organic anion transporter family, member 1C1 protein-coding SLCO1C1 solute carrier organic anion transporter family, member 1C1 O OAT-RP-5|OATP-14|organic anion transporter F|organic anion transporter polypeptide-related protein 5|organic anion transporting polypeptide 14|organic anion-transporting polypeptide 14|solute carrier family 21 (organic anion transporter), member 14|solute carrier family 21 member 14|solute carrier organic anion transporter family member 1C1|thyroxine transporter 20121230 -9606 53938 PPIL3 - CYPJ HGNC:9262|Ensembl:ENSG00000240344|HPRD:15163|Vega:OTTHUMG00000132782 2 2q33.1 peptidylprolyl isomerase (cyclophilin)-like 3 protein-coding PPIL3 peptidylprolyl isomerase (cyclophilin)-like 3 O PPIase|PPIase-like protein 3|cyclophilin J|cyclophilin-like protein 3|cyclophilin-like protein PPIL3|peptidyl-prolyl cis-trans isomerase-like 3|peptidylprolyl cis-trans isomerase-like protein 3|rotamase PPIL3 20121230 -9606 53940 FTHL17 - CT38 HGNC:3987|MIM:300308|Ensembl:ENSG00000132446|HPRD:02254|Vega:OTTHUMG00000021332 X Xp21 ferritin, heavy polypeptide-like 17 protein-coding FTHL17 ferritin, heavy polypeptide-like 17 O cancer/testis antigen 38|ferritin heavy polypeptide-like 17 20121230 -9606 53942 CNTN5 - HNB-2s|NB-2 HGNC:2175|MIM:607219|Ensembl:ENSG00000149972|HPRD:06241|Vega:OTTHUMG00000167579 11 11q22.1 contactin 5 protein-coding CNTN5 contactin 5 O contactin-5|neural adhesion molecule|neural recognition molecule NB-2 20121230 -9606 53944 CSNK1G1 - CK1gamma1 HGNC:2454|MIM:606274|Ensembl:ENSG00000169118|Vega:OTTHUMG00000133019 15 15q22.1-q22.31 casein kinase 1, gamma 1 protein-coding CSNK1G1 casein kinase 1, gamma 1 O CKI-gamma 1|casein kinase I isoform gamma-1 20121230 -9606 53947 A4GALT - A14GALT|A4GALT1|Gb3S|P(k)|P1|PK HGNC:18149|MIM:607922|HPRD:06390 22 22q13.2 alpha 1,4-galactosyltransferase protein-coding A4GALT alpha 1,4-galactosyltransferase O CD77 synthase|GB3 synthase|P blood group (P one antigen)|P(k) antigen synthase|P1/Pk synthase|UDP-galactose:beta-D-galactosyl-beta1-R 4-alpha-D-galactosyltransferase|alpha-1,4-N-acetylglucosaminyltransferase|alpha4Gal-T1|globotriaosylceramide synthase|lactosylceramide 4-alpha-galactosyltransferase 20121230 -9606 53981 CPSF2 - CPSF100 HGNC:2325|MIM:606028|Ensembl:ENSG00000165934|HPRD:05824|Vega:OTTHUMG00000171181 14 14q31.1 cleavage and polyadenylation specific factor 2, 100kDa protein-coding CPSF2 cleavage and polyadenylation specific factor 2, 100kDa O CPSF 100 kDa subunit|CPSF 100kDa subunit|cleavage and polyadenylation specificity factor 100 kDa subunit|cleavage and polyadenylation specificity factor subunit 2 20121230 -9606 54012 ZNF299P - ZNF299|ZNF299P1 HGNC:13088 21 21q21.1 zinc finger protein 299, pseudogene pseudo ZNF299P zinc finger protein 299, pseudogene O - 20121230 -9606 54014 BRWD1 - C21orf107|N143|WDR9 HGNC:12760|Ensembl:ENSG00000185658|HPRD:11683|Vega:OTTHUMG00000066030 21 21q22.2 bromodomain and WD repeat domain containing 1 protein-coding BRWD1 bromodomain and WD repeat domain containing 1 O WD repeat protein WDR9-form2|WD repeat-containing protein 9|bromodomain and WD repeat-containing protein 1|transcriptional unit N143 20121230 -9606 54015 VDAC2P1 - VDAC2P HGNC:12673 21 21q11.2 voltage-dependent anion channel 2 pseudogene 1 pseudo VDAC2P1 voltage-dependent anion channel 2 pseudogene 1 O - 20121230 -9606 54016 TUBAP - - HGNC:12411 21 21q21.1 tubulin, alpha pseudogene pseudo TUBAP tubulin, alpha pseudogene O - 20121230 -9606 54019 SLC6A6P1 - SLC6A6P HGNC:11053 21 21q21.1 solute carrier family 6, member 6 pseudogene 1 pseudo SLC6A6P1 solute carrier family 6, member 6 pseudogene 1 O - 20121230 -9606 54020 SLC37A1 - G3PP HGNC:11024|MIM:608094|Ensembl:ENSG00000160190|HPRD:10479|Vega:OTTHUMG00000086803 21 21q22.3 solute carrier family 37 (glycerol-3-phosphate transporter), member 1 protein-coding SLC37A1 solute carrier family 37 (glycerol-3-phosphate transporter), member 1 O G-3-P permease|G-3-P transporter|glycerol-3-phosphate permease|glycerol-3-phosphate transporter|solute carrier family 37 member 1 20121230 -9606 54021 SRSF9P1 - SFRS9P1 HGNC:10792 21 21q22.12 serine/arginine-rich splicing factor 9 pseudogene 1 pseudo SRSF9P1 serine/arginine-rich splicing factor 9 pseudogene 1 O - 20121230 -9606 54022 RPS5P3 - RPS5L|RPS5_3_1726 HGNC:10427 21 21q22.11 ribosomal protein S5 pseudogene 3 pseudo RPS5P3 ribosomal protein S5 pseudogene 3 O - 20121230 -9606 54023 RPS3AP1 - RPS3AP HGNC:10422 21 21q21.1 ribosomal protein S3A pseudogene 1 pseudo RPS3AP1 ribosomal protein S3A pseudogene 1 O - 20121230 -9606 54024 RPS26P1 - RPS26P HGNC:10415 21 21q22.12 ribosomal protein S26 pseudogene 1 pseudo RPS26P1 ribosomal protein S26 pseudogene 1 O - 20121230 -9606 54025 RPS20P1 - RPS20P|RPS20_16_1728 HGNC:10408 21 21q22.12 ribosomal protein S20 pseudogene 1 pseudo RPS20P1 ribosomal protein S20 pseudogene 1 O - 20121230 -9606 54026 RPL34P3 - - HGNC:10343 21 21q22.12 ribosomal protein L34 pseudogene 3 pseudo RPL34P3 ribosomal protein L34 pseudogene 3 O - 20121230 -9606 54027 RPL31P1 - RPL31P|RPL31_35_1734 HGNC:10335 21 21q22.3 ribosomal protein L31 pseudogene 1 pseudo RPL31P1 ribosomal protein L31 pseudogene 1 O - 20121230 -9606 54028 RPL23P2 - RPL23_4_1724 HGNC:10324 21 21q22.11 ribosomal protein L23 pseudogene 2 pseudo RPL23P2 ribosomal protein L23 pseudogene 2 O - 20121230 -9606 54029 RPL23AP4 - RPL23A_42_1735 HGNC:10321 21 21q22.3 ribosomal protein L23a pseudogene 4 pseudo RPL23AP4 ribosomal protein L23a pseudogene 4 O - 20121230 -9606 54030 RPL10P1 - RPL10P|RPL10_7_1723 HGNC:10300 21 21q21.3 ribosomal protein L10 pseudogene 1 pseudo RPL10P1 ribosomal protein L10 pseudogene 1 O - 20121230 -9606 54031 RIMKLBP1 - FAM80B2|FAM80C|RIMKLB2|RIMKLP HGNC:34034 21 21q22.12 ribosomal modification protein rimK-like family member B pseudogene 1 pseudo RIMKLBP1 ribosomal modification protein rimK-like family member B pseudogene 1 O - 20121230 -9606 54032 RBPMSLP - - HGNC:9923 21 21q11 RNA binding protein with multiple splicing-like pseudogene pseudo RBPMSLP RNA binding protein with multiple splicing-like pseudogene O - 20121230 -9606 54033 RBM11 - - HGNC:9897|Ensembl:ENSG00000185272|HPRD:10185|Vega:OTTHUMG00000074263 21 21q11 RNA binding motif protein 11 protein-coding RBM11 RNA binding motif protein 11 O RNA-binding motif protein 11|putative RNA-binding protein 11|splicing regulator RBM11 20121230 -9606 54034 RAD23BLP - - HGNC:9814 21 21q11 RAD23 homolog B-like (S. cerevisiae) pseudogene pseudo RAD23BLP RAD23 homolog B-like (S. cerevisiae) pseudogene O - 20121230 -9606 54035 PSMD4P1 - PSMD15|PSMD4P HGNC:9562 21 21q22.13 proteasome (prosome, macropain) 26S subunit, non-ATPase, 4 pseudogene 1 pseudo PSMD4P1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 4 pseudogene 1 O - 20121230 -9606 54036 PPP1R2P2 - - HGNC:9290 21 21q22.13 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 2 pseudo PPP1R2P2 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 2 O - 20121230 -9606 54038 POLR2CP - - HGNC:9190 21 21q11.2 polymerase (RNA) II (DNA directed) polypeptide C, pseudogene pseudo POLR2CP polymerase (RNA) II (DNA directed) polypeptide C, pseudogene O - 20121230 -9606 54039 PCBP3 - ALPHA-CP3 HGNC:8651|MIM:608502|Ensembl:ENSG00000183570|HPRD:10534|Vega:OTTHUMG00000090399 21 21q22.3 poly(rC) binding protein 3 protein-coding PCBP3 poly(rC) binding protein 3 O poly(rC)-binding protein 3 20121230 -9606 54040 PCBP2P1 - - HGNC:8649 21 21q22.3 poly(rC) binding protein 2 pseudogene 1 pseudo PCBP2P1 poly(rC) binding protein 2 pseudogene 1 O - 20121230 -9606 54041 VN1R8P - ORLP2 HGNC:8497 21 21q11 vomeronasal 1 receptor 8 pseudogene pseudo VN1R8P vomeronasal 1 receptor 8 pseudogene O - 20121230 -9606 54043 MYL6P1 - MYL6P HGNC:7588 21 21q22.3 myosin, light chain 6 pseudogene 1 pseudo MYL6P1 myosin, light chain 6 pseudogene 1 O - 20121230 -9606 54044 KRT18P2 - - HGNC:6435|Vega:OTTHUMG00000078062 21 21q21.1 keratin 18 pseudogene 2 pseudo KRT18P2 keratin 18 pseudogene 2 O - 20121230 -9606 54045 IMMTP1 - IMMTP HGNC:6048 21 21q22.3 inner membrane protein, mitochondrial (mitofilin) pseudogene 1 pseudo IMMTP1 inner membrane protein, mitochondrial (mitofilin) pseudogene 1 O - 20121230 -9606 54047 HSPD1P7 - HSPD1-22P|HSPDP7 HGNC:5268 21 21q21.3 heat shock 60kDa protein 1 (chaperonin) pseudogene 7 pseudo HSPD1P7 heat shock 60kDa protein 1 (chaperonin) pseudogene 7 O - 20121230 -9606 54048 HMGN1P2 - HMG14P|HMGN1L2 HGNC:4985 21 21q22.11 high mobility group nucleosome binding domain 1 pseudogene 2 pseudo HMGN1P2 high mobility group nucleosome binding domain 1 pseudogene 2 O - 20121230 -9606 54049 H2AFZP1 - GT334|H2AFZP HGNC:4742 21 21q22.3 H2A histone family, member Z pseudogene 1 pseudo H2AFZP1 H2A histone family, member Z pseudogene 1 O - 20121230 -9606 54050 GAPDHP14 - GAPDP14 HGNC:4160 21 21q22.11 glyceraldehyde-3-phosphate dehydrogenase pseudogene 14 pseudo GAPDHP14 glyceraldehyde-3-phosphate dehydrogenase pseudogene 14 O - 20121230 -9606 54051 FDPSP6 - FDPSP HGNC:3637 21 21q21.1 farnesyl diphosphate synthase pseudogene 6 pseudo FDPSP6 farnesyl diphosphate synthase pseudogene 6 O - 20121230 -9606 54052 EIF4A1P1 - EIF4A1P HGNC:3283 21 21q21.2 eukaryotic translation initiation factor 4A1 pseudogene 1 pseudo EIF4A1P1 eukaryotic translation initiation factor 4A1 pseudogene 1 O - 20121230 -9606 54053 EIF3FP1 - EIF3FP|EIF3S5P HGNC:3276 21 21p11.2 eukaryotic translation initiation factor 3, subunit F pseudogene 1 pseudo EIF3FP1 eukaryotic translation initiation factor 3, subunit F pseudogene 1 O - 20121230 -9606 54054 EEF1A1P1 - EEF1A1P HGNC:3191 21 21q21.1 eukaryotic translation elongation factor 1 alpha 1 pseudogene pseudo EEF1A1P1 eukaryotic translation elongation factor 1 alpha 1 pseudogene O - 20121230 -9606 54055 CYP4F29P - C21orf15|CYP4F3LP HGNC:2647 21 21q11 cytochrome P450, family 4, subfamily F, polypeptide 29, pseudogene pseudo CYP4F29P cytochrome P450, family 4, subfamily F, polypeptide 29, pseudogene O - 20121230 -9606 54058 C21orf58 - - HGNC:1300|Ensembl:ENSG00000160298|HPRD:10755|Vega:OTTHUMG00000090634 21 21q22.3 chromosome 21 open reading frame 58 protein-coding C21orf58 chromosome 21 open reading frame 58 O uncharacterized protein C21orf58 20121230 -9606 54059 YBEY - C21orf57 HGNC:1299|Ensembl:ENSG00000182362|HPRD:10754|Vega:OTTHUMG00000090632 21 21q22.3 ybeY metallopeptidase (putative) protein-coding YBEY ybeY metallopeptidase (putative) O putative metalloprotease C21orf57|rRNA maturation factor homolog 20121230 -9606 54064 LINC00160 - C21orf52|NCRNA00160 HGNC:1294 21 21q22.12 long intergenic non-protein coding RNA 160 miscRNA LINC00160 long intergenic non-protein coding RNA 160 O - 20121230 -9606 54065 SMIM11 - C21orf51|FAM165B HGNC:1293|Ensembl:ENSG00000205670|HPRD:10751|Vega:OTTHUMG00000086193 21 21q22.12 small integral membrane protein 11 protein-coding SMIM11 small integral membrane protein 11 O family with sequence similarity 165, member B|protein FAM165B 20121230 -9606 54067 C21orf49 - - HGNC:1290|HPRD:10750 21 21q22.11 chromosome 21 open reading frame 49 miscRNA C21orf49 chromosome 21 open reading frame 49 O - 20121230 -9606 54069 MIS18A - B28|C21orf45|C21orf46|FASP1|MIS18alpha|hMis18alpha HGNC:1286|Ensembl:ENSG00000159055|HPRD:10749|Vega:OTTHUMG00000085308 21 21q22.11 MIS18 kinetochore protein homolog A (S. pombe) protein-coding MIS18A MIS18 kinetochore protein homolog A (S. pombe) O FAPP1-associated protein 1|protein Mis18-alpha 20121230 -9606 54072 LINC00158 - C21orf42|NCRNA00158 HGNC:1283|HPRD:10748 21 21q21.3 long intergenic non-protein coding RNA 158 miscRNA LINC00158 long intergenic non-protein coding RNA 158 O - 20121230 -9606 54074 C21orf40 - - - 21 21q21.1 uncharacterized LOC54074 unknown - - - - 20120508 -9606 54075 CHODL-AS1 - C21orf39|NCRNA00157 HGNC:1279 21 21q21.1 CHODL antisense RNA 1 miscRNA CHODL-AS1 CHODL antisense RNA 1 O - 20121230 -9606 54082 TSPEAR-AS1 - C21orf31 HGNC:1271 21 21q22.3 TSPEAR antisense RNA 1 unknown TSPEAR-AS1 TSPEAR antisense RNA 1 O - 20121021 -9606 54083 LRRC3DN - C21orf30 HGNC:1270 21 21q22.3 LRRC3 downstream neighbor (non-protein coding) unknown LRRC3DN LRRC3 downstream neighbor (non-protein coding) O - 20121230 -9606 54084 TSPEAR - C21orf29|DFNB98 HGNC:1268|MIM:612920|Ensembl:ENSG00000175894|HPRD:09845|Vega:OTTHUMG00000041215 21 21q22.3 thrombospondin-type laminin G domain and EAR repeats protein-coding TSPEAR thrombospondin-type laminin G domain and EAR repeats O TSP-EAR|protein TSPEAR|thrombospondin-type laminin G domain and EAR repeat-containing protein|thrombospondin-type laminin G domain and EAR repeats-containing protein 20121230 -9606 54088 LINC00113 - C21orf23|NCRNA00113 HGNC:1264 21 21q21.3 long intergenic non-protein coding RNA 113 miscRNA LINC00113 long intergenic non-protein coding RNA 113 O - 20121230 -9606 54089 LINC00112 - C21orf22|NCRNA00112 HGNC:1263 21 21q22.3 long intergenic non-protein coding RNA 112 miscRNA LINC00112 long intergenic non-protein coding RNA 112 O - 20121230 -9606 54090 LINC00111 - C21orf21|NCRNA00111 HGNC:1262 21 21q22.3 long intergenic non-protein coding RNA 111 miscRNA LINC00111 long intergenic non-protein coding RNA 111 O - 20121230 -9606 54093 SETD4 - C21orf18|C21orf27 HGNC:1258|Ensembl:ENSG00000185917|HPRD:10743|Vega:OTTHUMG00000086483 21 21q22.13 SET domain containing 4 protein-coding SETD4 SET domain containing 4 O SET domain-containing protein 4 20121230 -9606 54094 C21orf15 - - HGNC:1257 21 21q11 chromosome 21 open reading frame 15 miscRNA C21orf15 chromosome 21 open reading frame 15 O - 20121230 -9606 54097 FAM3B PRED44 2-21|C21orf11|C21orf76|ORF9|PANDER HGNC:1253|MIM:608617|Ensembl:ENSG00000183844|HPRD:10552|Vega:OTTHUMG00000086752 21 21q22.3 family with sequence similarity 3, member B protein-coding FAM3B family with sequence similarity 3, member B O D21M16SJHU19e|cytokine-like protein 2-21|pancreatic derived factor|pancreatic-derived factor|protein FAM3B 20121230 -9606 54098 C1QBPP - - HGNC:1244 21 21q21.1 complement component 1, q subcomponent binding protein, pseudogene pseudo C1QBPP complement component 1, q subcomponent binding protein, pseudogene O - 20121230 -9606 54099 FBXW11P1 - BTRC2P|FBXW1BP|FBXW1BP1 HGNC:1145 21 21q22.11 F-box and WD repeat domain containing 11 pseudogene 1 pseudo FBXW11P1 F-box and WD repeat domain containing 11 pseudogene 1 O - 20121230 -9606 54100 ATP5J2LP - - HGNC:849 21 21q22.13 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2-like pseudogene pseudo ATP5J2LP ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2-like pseudogene O - 20121230 -9606 54101 RIPK4 - ANKK2|ANKRD3|DIK|NKRD3|PKK|RIP4 HGNC:496|MIM:605706|Ensembl:ENSG00000183421|HPRD:10419|Vega:OTTHUMG00000086770 21 21q22.3 receptor-interacting serine-threonine kinase 4 protein-coding RIPK4 receptor-interacting serine-threonine kinase 4 O PKC-delta-interacting protein kinase|ankyrin repeat domain-containing protein 3|protein kinase C-associated kinase|receptor-interacting serine/threonine-protein kinase 4|serine/threonine-protein kinase ANKRD3 20121230 -9606 54102 CLIC6 - CLIC1L HGNC:2065|Ensembl:ENSG00000159212|Vega:OTTHUMG00000086237 21 21q22.12 chloride intracellular channel 6 protein-coding CLIC6 chloride intracellular channel 6 O chloride channel form A|chloride intracellular channel protein 6|parchorin 20121230 -9606 54103 PION tcag7.1314 GSAP HGNC:28042|MIM:613552|Ensembl:ENSG00000186088|HPRD:18671|Vega:OTTHUMG00000150504 7 7q11.23 pigeon homolog (Drosophila) protein-coding PION pigeon homolog (Drosophila) O gamma-secretase-activating protein|protein pigeon homolog 20121230 -9606 54106 TLR9 UNQ5798/PRO19605 CD289 HGNC:15633|MIM:605474|Ensembl:ENSG00000239732|HPRD:05685|Vega:OTTHUMG00000158106 3 3p21.3 toll-like receptor 9 protein-coding TLR9 toll-like receptor 9 O - 20121230 -9606 54107 POLE3 - CHARAC17|CHRAC17|YBL1|p17 HGNC:13546|MIM:607267|Ensembl:ENSG00000148229|HPRD:06274|Vega:OTTHUMG00000020523 9 9q33 polymerase (DNA directed), epsilon 3, accessory subunit protein-coding POLE3 polymerase (DNA directed), epsilon 3, accessory subunit O CHRAC-17|DNA polymerase II subunit 3|DNA polymerase epsilon p17 subunit|DNA polymerase epsilon subunit 3|DNA polymerase epsilon subunit p17|arsenic transactivated protein|arsenic-transactivated protein|asTP|chromatin accessibility complex 17 kDa protein|histone fold protein CHRAC17|huCHRAC17|polymerase (DNA directed), epsilon 3 (p17 subunit) 20121230 -9606 54108 CHRAC1 - CHARC1|CHARC15|CHRAC-1|CHRAC-15|CHRAC15|YCL1 HGNC:13544|MIM:607268|Ensembl:ENSG00000104472|HPRD:06275|Vega:OTTHUMG00000164207 8 8q24.3 chromatin accessibility complex 1 protein-coding CHRAC1 chromatin accessibility complex 1 O DNA polymerase epsilon subunit p15|chromatin accessibility complex 15 kDa protein|chromatin accessibility complex protein 1|histone-fold protein CHRAC15 20121230 -9606 54109 CORD8 - - HGNC:2251|MIM:605549 1 1q12-q24 cone rod dystrophy 8 unknown CORD8 cone rod dystrophy 8 O - 20120622 -9606 54110 RP29 - - HGNC:10282|MIM:612165 4 4q32-q34 retinitis pigmentosa 29 (autosomal recessive) unknown RP29 retinitis pigmentosa 29 (autosomal recessive) O - 20120622 -9606 54111 HNB1 - - HGNC:5020 16 16p13-p12 hereditary neuroblastoma 1 unknown HNB1 hereditary neuroblastoma 1 O - 20110215 -9606 54112 GPR88 - STRG HGNC:4539|MIM:607468|Ensembl:ENSG00000181656|HPRD:16248|Vega:OTTHUMG00000010981 1 1p21.3 G protein-coupled receptor 88 protein-coding GPR88 G protein-coupled receptor 88 O G protein coupled receptor 88|G-protein coupled receptor 88|probable G-protein coupled receptor 88|striatum-specific G-protein coupled receptor 20121230 -9606 54113 VUR - - MIM:193000 1 1p13 Vesicoureteral reflux unknown - - - - 20120622 -9606 54114 ODPF - - MIM:300244 - - Osseous dysplasia, digital, with facial pigmentary defects and multiple frenula unknown - - - - 20120622 -9606 54115 PTOS2 - PTOSX MIM:300245 X Xq24-q27.1 Ptosis, hereditary congenital 2 unknown - - - - 20120622 -9606 54119 EIM - - MIM:605021 - - Infantile myoclonic epilepsy unknown - - - - 20120622 -9606 54143 LINC00308 PRED16 C21orf74|NCRNA00308 HGNC:16023 21 21q21.1 long intergenic non-protein coding RNA 308 miscRNA LINC00308 long intergenic non-protein coding RNA 308 O - 20121230 -9606 54145 H2BFS - - HGNC:4762|HPRD:11017 21 21q22.3 H2B histone family, member S (pseudogene) pseudo H2BFS H2B histone family, member S (pseudogene) O - 20121230 -9606 54147 BACH1-IT3 - C21orf8|NCRNA00097 HGNC:16455 21 21q22.11 BACH1 intronic transcript 3 (non-protein coding) miscRNA BACH1-IT3 BACH1 intronic transcript 3 (non-protein coding) O - 20121021 -9606 54148 MRPL39 MSTP003 C21orf92|L39mt|MRP-L5|MRPL5|PRED22|PRED66|RPML5 HGNC:14027|MIM:611845|Ensembl:ENSG00000154719|HPRD:11371|Vega:OTTHUMG00000078371 21 21q21.3 mitochondrial ribosomal protein L39 protein-coding MRPL39 mitochondrial ribosomal protein L39 O 39S ribosomal protein L39, mitochondrial|39S ribosomal protein L5, mitochondrial|L5mt|MRP-L39 20121230 -9606 54149 C21orf91 - C21orf14|C21orf38|CSSG1|EURL|YG81 HGNC:16459|Ensembl:ENSG00000154642|HPRD:10776|Vega:OTTHUMG00000074509 21 21q21.1 chromosome 21 open reading frame 91 protein-coding C21orf91 chromosome 21 open reading frame 91 O cold sore susceptibility gene 1|early undifferentiated retina and lens|protein EURL homolog 20121230 -9606 54165 DCUN1D1 - DCNL1|DCUN1L1|RP42|SCCRO|SCRO|Tes3 HGNC:18184|MIM:605905|Ensembl:ENSG00000043093|HPRD:12067|Vega:OTTHUMG00000158314 3 3q26.3 DCN1, defective in cullin neddylation 1, domain containing 1 (S. cerevisiae) protein-coding DCUN1D1 DCN1, defective in cullin neddylation 1, domain containing 1 (S. cerevisiae) O DCN1-like protein 1|DCUN1 domain-containing protein 1|RP42 homolog|defective in cullin neddylation protein 1-like protein 1|squamous cell carcinoma-related oncogene 20121230 -9606 54187 NANS RP11-404F11.3 SAS HGNC:19237|MIM:605202|Ensembl:ENSG00000095380|HPRD:07285|Vega:OTTHUMG00000020341 9 9p24.1-p23 N-acetylneuraminic acid synthase protein-coding NANS N-acetylneuraminic acid synthase O N-acetylneuraminate synthase|N-acetylneuraminate-9-phosphate synthase|N-acetylneuraminic acid phosphate synthase|sialic acid phosphate synthase|sialic acid synthase 20121230 -9606 54205 CYCS - CYC|HCS|THC4 HGNC:19986|MIM:123970|Ensembl:ENSG00000172115|HPRD:00479|Vega:OTTHUMG00000128495 7 7p15.3 cytochrome c, somatic protein-coding CYCS cytochrome c, somatic O cytochrome c 20121230 -9606 54206 ERRFI1 CTA-215D11.2 GENE-33|MIG-6|MIG6|RALT HGNC:18185|MIM:608069|Ensembl:ENSG00000116285|HPRD:09218|Vega:OTTHUMG00000001221 1 1p36 ERBB receptor feedback inhibitor 1 protein-coding ERRFI1 ERBB receptor feedback inhibitor 1 O mitogen-inducible gene 6 protein|receptor-associated late transducer 20121230 -9606 54207 KCNK10 - K2p10.1|TREK-2|TREK2 HGNC:6273|MIM:605873|Ensembl:ENSG00000100433|HPRD:12061|Vega:OTTHUMG00000170743 14 14q31.3 potassium channel, subfamily K, member 10 protein-coding KCNK10 potassium channel, subfamily K, member 10 O 2P domain potassium channel TREK2|TREK-2 K(+) channel subunit|TWIK-related K+ channel 2|outward rectifying potassium channel protein TREK-2|potassium channel TREK-2|potassium channel subfamily K member 10 20121230 -9606 54209 TREM2 RP1-238O23.2 TREM-2|Trem2a|Trem2b|Trem2c HGNC:17761|MIM:605086|Ensembl:ENSG00000095970|HPRD:05473|Vega:OTTHUMG00000014671 6 6p21.1 triggering receptor expressed on myeloid cells 2 protein-coding TREM2 triggering receptor expressed on myeloid cells 2 O triggering receptor expressed on monocytes 2|triggering receptor expressed on myeloid cells 2a 20121230 -9606 54210 TREM1 - CD354|TREM-1 HGNC:17760|MIM:605085|Ensembl:ENSG00000124731|HPRD:05472|Vega:OTTHUMG00000014674 6 6p21.1 triggering receptor expressed on myeloid cells 1 protein-coding TREM1 triggering receptor expressed on myeloid cells 1 O triggering receptor expressed on monocytes 1|triggering-receptor TREM1 20121230 -9606 54212 SNTG1 - G1SYN|SYN4 HGNC:13740|MIM:608714|Ensembl:ENSG00000147481|HPRD:16373|Vega:OTTHUMG00000164257 8 8q11-q12 syntrophin, gamma 1 protein-coding SNTG1 syntrophin, gamma 1 O gamma-1-syntrophin|gamma1-syntrophin|syntrophin 4|syntrophin-4 20121230 -9606 54221 SNTG2 - G2SYN|SYN5 HGNC:13741|MIM:608715|Ensembl:ENSG00000172554|HPRD:16374|Vega:OTTHUMG00000151370 2 2p25.3 syntrophin, gamma 2 protein-coding SNTG2 syntrophin, gamma 2 O gamma-2-syntrophin|syntrophin-5 20121230 -9606 54328 GPR173 RP1-290F12.1 SREB3 HGNC:18186|MIM:300253|Ensembl:ENSG00000184194|HPRD:02220|Vega:OTTHUMG00000021596 X Xp11 G protein-coupled receptor 173 protein-coding GPR173 G protein-coupled receptor 173 O probable G-protein coupled receptor 173|super conserved receptor expressed in brain 3 20121230 -9606 54329 GPR85 - SREB|SREB2 HGNC:4536|MIM:605188|Ensembl:ENSG00000164604|HPRD:05543|Vega:OTTHUMG00000156933 7 7q31 G protein-coupled receptor 85 protein-coding GPR85 G protein-coupled receptor 85 O probable G-protein coupled receptor 85|seven transmembrane helix receptor|super conserved receptor expressed in brain 2 20121230 -9606 54331 GNG2 - - HGNC:4404|MIM:606981|Ensembl:ENSG00000186469|HPRD:16234|Vega:OTTHUMG00000171083 14 14q21 guanine nucleotide binding protein (G protein), gamma 2 protein-coding GNG2 guanine nucleotide binding protein (G protein), gamma 2 O g gamma-I|guanine nucleotide binding protein gamma 2|guanine nucleotide-binding protein G(I)/G(O) gamma-2 subunit|guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-2 20121230 -9606 54332 GDAP1 - CMT4|CMT4A|CMTRIA HGNC:15968|MIM:606598|Ensembl:ENSG00000104381|HPRD:05963|Vega:OTTHUMG00000164509 8 8q21.11 ganglioside induced differentiation associated protein 1 protein-coding GDAP1 ganglioside induced differentiation associated protein 1 O Charcot-Marie-Tooth neuropathy 4A|ganglioside differentiation associated protein 1|ganglioside-induced differentiation-associated protein 1 20121230 -9606 54344 DPM3 RP11-540D14.7 CDG1O HGNC:3007|MIM:605951|Ensembl:ENSG00000179085|HPRD:16179|Vega:OTTHUMG00000035335 1 1q22 dolichyl-phosphate mannosyltransferase polypeptide 3 protein-coding DPM3 dolichyl-phosphate mannosyltransferase polypeptide 3 O DPM synthase complex subunit 3|MPD synthase subunit 3|dolichol-phosphate mannose synthase subunit 3|dolichol-phosphate mannosyltransferase subunit 3|dolichyl-phosphate beta-D-mannosyltransferase subunit 3|mannose-P-dolichol synthase subunit 3|prostin 1|prostin-1 20121230 -9606 54345 SOX18 - HLTS HGNC:11194|MIM:601618|Ensembl:ENSG00000203883|HPRD:07208|Vega:OTTHUMG00000033017 20 20q13.33 SRY (sex determining region Y)-box 18 protein-coding SOX18 SRY (sex determining region Y)-box 18 O SRY-box 18|transcription factor SOX-18 20121230 -9606 54346 UNC93A - Unc-93A|dJ366N23.1|dJ366N23.2 HGNC:12570|MIM:607995|Ensembl:ENSG00000112494|HPRD:12148|Vega:OTTHUMG00000016021 6 6q27 unc-93 homolog A (C. elegans) protein-coding UNC93A unc-93 homolog A (C. elegans) O dJ366N23.1 (putative C. elegans UNC-93 (protein 1, C46F11.1) LIKE)|dJ366N23.2 (putative C. elegans UNC-93 (protein 1, C46F11.1) C-terminal LIKE)|protein unc-93 homolog A|unc93 homolog A 20121230 -9606 54360 CYTL1 UNQ1942/PRO4425 C17|C4orf4 HGNC:24435|MIM:607930|Ensembl:ENSG00000170891|HPRD:16260|Vega:OTTHUMG00000125479 4 4p16-p15 cytokine-like 1 protein-coding CYTL1 cytokine-like 1 O cytokine-like protein 1|cytokine-like protein C17 20121230 -9606 54361 WNT4 RP1-224A6.7 SERKAL|WNT-4 HGNC:12783|MIM:603490|Ensembl:ENSG00000162552|HPRD:04601|Vega:OTTHUMG00000002894 1 1p36.23-p35.1 wingless-type MMTV integration site family, member 4 protein-coding WNT4 wingless-type MMTV integration site family, member 4 O protein Wnt-4 20121230 -9606 54362 DFNM1 - - HGNC:2842|MIM:605429 1 1q24 deafness (recessive, nonsyndromic) modifier 1 unknown DFNM1 deafness (recessive, nonsyndromic) modifier 1 O - 20120622 -9606 54363 HAO1 - GOX|GOX1|HAOX1 HGNC:4809|MIM:605023|Ensembl:ENSG00000101323|HPRD:05429|Vega:OTTHUMG00000031841 20 20p12 hydroxyacid oxidase (glycolate oxidase) 1 protein-coding HAO1 hydroxyacid oxidase (glycolate oxidase) 1 O (S)-2-hydroxy-acid oxidase|glycolate oxidase|hydroxyacid oxidase 1 20121230 -9606 54386 TERF2IP PP8000 DRIP5|RAP1 HGNC:19246|MIM:605061|Ensembl:ENSG00000166848|HPRD:05452|Vega:OTTHUMG00000177136 16 16q23.1 telomeric repeat binding factor 2, interacting protein protein-coding TERF2IP telomeric repeat binding factor 2, interacting protein O RAP1 homolog|TERF2-interacting telomeric protein 1|TRF2-interacting telomeric RAP1 protein|TRF2-interacting telomeric protein 1|dopamine receptor interacting protein 5|dopamine receptor-interacting protein 5|hRap1|repressor/activator protein 1 homolog|telomeric repeat-binding factor 2-interacting protein 1 20121230 -9606 54407 SLC38A2 - ATA2|PRO1068|SAT2|SNAT2 HGNC:13448|MIM:605180|Ensembl:ENSG00000134294|HPRD:05535|Vega:OTTHUMG00000169471 12 12q solute carrier family 38, member 2 protein-coding SLC38A2 solute carrier family 38, member 2 O amino acid transporter 2|amino acid transporter A2|protein 40-9-1|sodium-coupled neutral amino acid transporter 2|system A amino acid transporter 2|system A transporter 1|system N amino acid transporter 2 20121230 -9606 54413 NLGN3 - HNL3 HGNC:14289|MIM:300336|Ensembl:ENSG00000196338|HPRD:02275|Vega:OTTHUMG00000021790 X Xq13.1 neuroligin 3 protein-coding NLGN3 neuroligin 3 O gliotactin homolog|neuroligin-3 20121230 -9606 54414 SIAE - AIS6|CSE-C|CSEC|LSE|YSG2 HGNC:18187|MIM:610079|Ensembl:ENSG00000110013|HPRD:16764|Vega:OTTHUMG00000165926 11 11q24 sialic acid acetylesterase protein-coding SIAE sialic acid acetylesterase O H-Lse|cytosolic sialic acid 9-O-acetylesterase homolog|sialate O-acetylesterase|sialic acid-specific acetylesterase II 20121230 -9606 54429 TAS2R5 - T2R5 HGNC:14912|MIM:605062|Ensembl:ENSG00000127366|HPRD:05453|Vega:OTTHUMG00000157632 7 7q31.3-q32 taste receptor, type 2, member 5 protein-coding TAS2R5 taste receptor, type 2, member 5 O taste receptor type 2 member 5 20121230 -9606 54431 DNAJC10 UNQ495/PRO1012 ERdj5|JPDI|MTHr|PDIA19 HGNC:24637|MIM:607987|Ensembl:ENSG00000077232|HPRD:09722|Vega:OTTHUMG00000154209 2 2q32.1 DnaJ (Hsp40) homolog, subfamily C, member 10 protein-coding DNAJC10 DnaJ (Hsp40) homolog, subfamily C, member 10 O ER-resident protein ERdj5|J-domain-containing protein disulfide isomerase-like protein|dnaJ homolog subfamily C member 10|macrothioredoxin|protein disulfide isomerase family A, member 19 20121230 -9606 54432 YIPF1 - DJ167A19.1|FinGER1 HGNC:25231|Ensembl:ENSG00000058799|HPRD:13147|Vega:OTTHUMG00000008074 1 1p33-p32.1 Yip1 domain family, member 1 protein-coding YIPF1 Yip1 domain family, member 1 O YIP1 family member 1|protein YIPF1 20121230 -9606 54433 GAR1 - NOLA1 HGNC:14264|MIM:606468|Ensembl:ENSG00000109534|HPRD:07569|Vega:OTTHUMG00000161108 4 4q25 GAR1 ribonucleoprotein homolog (yeast) protein-coding GAR1 GAR1 ribonucleoprotein homolog (yeast) O H/ACA ribonucleoprotein complex subunit 1|nucleolar protein family A member 1|nucleolar protein family A, member 1 (H/ACA small nucleolar RNPs)|snoRNP protein GAR1 20121230 -9606 54434 SSH1 - SSH1L HGNC:30579|MIM:606778|Ensembl:ENSG00000084112|HPRD:09486|Vega:OTTHUMG00000169371 12 12q24.11 slingshot homolog 1 (Drosophila) protein-coding SSH1 slingshot homolog 1 (Drosophila) O SSH-like protein 1|hSSH-1L|protein phosphatase Slingshot homolog 1 20121230 -9606 54435 HCG4 - HCG4P10|HCGIV-10|HCGIV.9 HGNC:21241 6 6p21.3 HLA complex group 4 (non-protein coding) miscRNA HCG4 HLA complex group 4 (non-protein coding) O - 20121230 -9606 54436 SH3TC1 - - HGNC:26009|Ensembl:ENSG00000125089|HPRD:11556|Vega:OTTHUMG00000160934 4 4p16.1 SH3 domain and tetratricopeptide repeats 1 protein-coding SH3TC1 SH3 domain and tetratricopeptide repeats 1 O SH3 domain and tetratricopeptide repeat-containing protein 1|SH3 domain and tetratricopeptide repeats-containing protein 1 20121230 -9606 54437 SEMA5B UNQ5867/PRO34001 SEMAG|SemG HGNC:10737|MIM:609298|Ensembl:ENSG00000082684|HPRD:15322|Vega:OTTHUMG00000140392 3 3q21.1 sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5B protein-coding SEMA5B sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5B O semaphorin-5B 20121230 -9606 54438 GFOD1 RP11-501I19.1 ADG-90|C6orf114 HGNC:21096|Ensembl:ENSG00000145990|HPRD:13574|Vega:OTTHUMG00000014276 6 6pter-p22.1 glucose-fructose oxidoreductase domain containing 1 protein-coding GFOD1 glucose-fructose oxidoreductase domain containing 1 O glucose-fructose oxidoreductase domain-containing protein 1 20121230 -9606 54439 RBM27 - ARRS1|Psc1 HGNC:29243|Ensembl:ENSG00000091009|Vega:OTTHUMG00000163436 5 5q32 RNA binding motif protein 27 protein-coding RBM27 RNA binding motif protein 27 O RNA-binding motif protein 27|RNA-binding protein 27|acidic rich RS domain containing 1 20121230 -9606 54440 SASH3 RP4-753P9.4 753P9|CXorf9|HACS2|SH3D6C|SLY HGNC:15975|MIM:300441|Ensembl:ENSG00000122122|HPRD:02342|Vega:OTTHUMG00000022372 X Xq26 SAM and SH3 domain containing 3 protein-coding SASH3 SAM and SH3 domain containing 3 O SAM and SH3 domain-containing protein 3|SH3 protein expressed in lymphocytes homolog 20121230 -9606 54441 STAG3L1 - STAG3L2|STAG3L3 HGNC:33852|HPRD:13150 7 7q11.23 stromal antigen 3-like 1 pseudo STAG3L1 stromal antigen 3-like 1 O - 20121230 -9606 54442 KCTD5 - - HGNC:21423|MIM:611285|Ensembl:ENSG00000167977|HPRD:13768|Vega:OTTHUMG00000128930 16 16p13.3 potassium channel tetramerisation domain containing 5 protein-coding KCTD5 potassium channel tetramerisation domain containing 5 O BTB/POZ domain-containing protein KCTD5 20121230 -9606 54443 ANLN - Scraps|scra HGNC:14082|Ensembl:ENSG00000011426|HPRD:09799|Vega:OTTHUMG00000023143 7 7p15-p14 anillin, actin binding protein protein-coding ANLN anillin, actin binding protein O actin-binding protein anillin 20121230 -9606 54453 RIN2 - MACS|RASSF4 HGNC:18750|MIM:610222|Ensembl:ENSG00000132669|HPRD:15249|Vega:OTTHUMG00000031996 20 20p11.22 Ras and Rab interactor 2 protein-coding RIN2 Ras and Rab interactor 2 O RAB5 interacting protein 2|RAS association (RalGDS/AF-6) domain containing protein JC265|RAS association domain family 4|RAS inhibitor JC265|RAS interaction/interference protein 2|ras and Rab interactor 2 20121230 -9606 54454 ATAD2B - - HGNC:29230|Ensembl:ENSG00000119778|Vega:OTTHUMG00000151902 2 2p24.1-p23.3 ATPase family, AAA domain containing 2B protein-coding ATAD2B ATPase family, AAA domain containing 2B O ATPase family AAA domain-containing protein 2B 20121230 -9606 54455 FBXO42 - Fbx42|JFK HGNC:29249|MIM:609109|Ensembl:ENSG00000037637|Vega:OTTHUMG00000002218 1 1p36.23-p36.11 F-box protein 42 protein-coding FBXO42 F-box protein 42 O F-box only protein 42|just one F-box and Kelch domain-containing protein 20121230 -9606 54456 MOV10L1 RP3-402G11.13-002 CHAMP|DJ402G11.8 HGNC:7201|MIM:605794|Ensembl:ENSG00000073146|HPRD:16158|Vega:OTTHUMG00000044648 22 22q13.33 Mov10l1, Moloney leukemia virus 10-like 1, homolog (mouse) protein-coding MOV10L1 Mov10l1, Moloney leukemia virus 10-like 1, homolog (mouse) O MOV10-like protein 1|Mov10-like 1|cardiac helicase activated by MEF2C protein|moloney leukemia virus 10-like protein 1|putative helicase Mov10l1 20121230 -9606 54457 TAF7L GHc-521F8.1 CT40|TAF2Q HGNC:11548|MIM:300314|Ensembl:ENSG00000102387|HPRD:02259|Vega:OTTHUMG00000022021 X Xq22.1 TAF7-like RNA polymerase II, TATA box binding protein (TBP)-associated factor, 50kDa protein-coding TAF7L TAF7-like RNA polymerase II, TATA box binding protein (TBP)-associated factor, 50kDa O RNA polymerase II TBP-associated factor subunit Q|TATA box-binding protein-associated factor 50 kDa|TBP-associated factor, RNA polymerase II, Q|cancer/testis antigen 40|transcription initiation factor TFIID 50 kDa subunit|transcription initiation factor TFIID subunit 7-like 20121230 -9606 54458 PRR13 BM-041 TXR1 HGNC:24528|MIM:610459|Ensembl:ENSG00000205352|HPRD:13211|Vega:OTTHUMG00000170049 12 12q12 proline rich 13 protein-coding PRR13 proline rich 13 O proline-rich protein 13|taxane-resistance protein 20121230 -9606 54460 MRPS21 MDS016 MRP-S21|RPMS21 HGNC:14046|MIM:611984|Ensembl:ENSG00000187145|HPRD:14784|Vega:OTTHUMG00000012544 1 1q21 mitochondrial ribosomal protein S21 protein-coding MRPS21 mitochondrial ribosomal protein S21 O 28S ribosomal protein S21, mitochondrial|S21mt|mitochondrial 28S ribosomal protein S21 20121230 -9606 54461 FBXW5 PP3971 Fbw5 HGNC:13613|MIM:609072|Ensembl:ENSG00000159069|HPRD:10955|Vega:OTTHUMG00000020967 9 9q34.3 F-box and WD repeat domain containing 5 protein-coding FBXW5 F-box and WD repeat domain containing 5 O F-box and WD-40 domain-containing protein 5|F-box/WD repeat-containing protein 5|WD repeat-containing F-box protein FBW5 20121230 -9606 54462 CCSER2 NPD012 FAM190B|Gcap14|KIAA1128|bA486O22.1 HGNC:29197|Ensembl:ENSG00000107771|HPRD:13832|Vega:OTTHUMG00000018641 10 10q23.1 coiled-coil serine-rich protein 2 protein-coding CCSER2 coiled-coil serine-rich protein 2 O family with sequence similarity 190, member B|protein FAM190B|protein GCAP14 homolog 20121230 -9606 54463 FAM134B - JK-1|JK1 HGNC:25964|MIM:613114|Ensembl:ENSG00000154153|HPRD:07879|Vega:OTTHUMG00000161788 5 5p15.1 family with sequence similarity 134, member B protein-coding FAM134B family with sequence similarity 134, member B O protein FAM134B 20121230 -9606 54464 XRN1 - SEP1 HGNC:30654|MIM:607994|Ensembl:ENSG00000114127|HPRD:10470|Vega:OTTHUMG00000159251 3 3q23 5'-3' exoribonuclease 1 protein-coding XRN1 5'-3' exoribonuclease 1 O strand-exchange protein 1 homolog 20121230 -9606 54465 ETAA1 - ETAA16 HGNC:24648|MIM:613196|Ensembl:ENSG00000143971|HPRD:13282|Vega:OTTHUMG00000129545 2 2p14 Ewing tumor-associated antigen 1 protein-coding ETAA1 Ewing tumor-associated antigen 1 O ETAA16|ewing's tumor-associated antigen 1|ewing's tumor-associated antigen 16 20121230 -9606 54466 SPIN2A RP3-323P24.1 DXF34|RP3-323P24.2|SPIN2|dJ323P24.1 HGNC:20694|MIM:300621|Ensembl:ENSG00000147059|HPRD:06725|Vega:OTTHUMG00000022705 X Xp11.1 spindlin family, member 2A protein-coding SPIN2A spindlin family, member 2A O centromeric spin2 copy|spindlin homolog 2|spindlin-2A|spindlin-like protein 2|spindlin-like protein 2A 20121230 -9606 54467 ANKIB1 - - HGNC:22215|Ensembl:ENSG00000001629|Vega:OTTHUMG00000155859 7 7q21.2 ankyrin repeat and IBR domain containing 1 protein-coding ANKIB1 ankyrin repeat and IBR domain containing 1 O ankyrin repeat and IBR domain-containing protein 1 20121230 -9606 54468 MIOS - - HGNC:21905|Ensembl:ENSG00000164654|HPRD:07898|Vega:OTTHUMG00000152440 7 7p21.3 missing oocyte, meiosis regulator, homolog (Drosophila) protein-coding MIOS missing oocyte, meiosis regulator, homolog (Drosophila) O H_DJ1159O04.1|WD repeat-containing protein mio|WUGSC:H_DJ1159O04.1 20121230 -9606 54469 ZFAND6 HT032 AWP1|ZA20D3|ZFAND5B HGNC:30164|MIM:610183|Ensembl:ENSG00000086666|HPRD:18314|Vega:OTTHUMG00000144169 15 15q25.1 zinc finger, AN1-type domain 6 protein-coding ZFAND6 zinc finger, AN1-type domain 6 O AN1-type zinc finger protein 6|protein associated with PRK1|zinc finger, A20 domain containing 3 20121230 -9606 54470 ARMCX6 RP4-545K15.1 - HGNC:26094|Ensembl:ENSG00000198960|HPRD:06536|Vega:OTTHUMG00000022034 X Xq21.33-q22.3 armadillo repeat containing, X-linked 6 protein-coding ARMCX6 armadillo repeat containing, X-linked 6 O protein ARMCX6 20121230 -9606 54471 SMCR7L RP5-1104E15.5 HSU79252|MID51|MIEF1|dJ1104E15.3 HGNC:25979|Ensembl:ENSG00000100335|HPRD:13371|Vega:OTTHUMG00000151105 22 22q13 Smith-Magenis syndrome chromosome region, candidate 7-like protein-coding SMCR7L Smith-Magenis syndrome chromosome region, candidate 7-like O mitochondrial dynamic protein MID51|mitochondrial dynamic protein of 51 kDa|mitochondrial elongation factor 1|smith-Magenis syndrome chromosomal region candidate gene 7 protein-like 20121230 -9606 54472 TOLLIP - IL-1RAcPIP HGNC:16476|MIM:606277|Ensembl:ENSG00000078902|HPRD:05887|Vega:OTTHUMG00000133333 11 11p15.5 toll interacting protein protein-coding TOLLIP toll interacting protein O adapter protein|toll-interacting protein 20121230 -9606 54474 KRT20 - CD20|CK-20|CK20|K20|KRT21 HGNC:20412|MIM:608218|Ensembl:ENSG00000171431|HPRD:12193|Vega:OTTHUMG00000133366 17 17q21.2 keratin 20 protein-coding KRT20 keratin 20 O cytokeratin 20|cytokeratin-20|keratin, type I cytoskeletal 20|keratin-20|protein IT 20121230 -9606 54475 NLE1 HUSSY-07 Nle HGNC:19889|Ensembl:ENSG00000073536|HPRD:16903|Vega:OTTHUMG00000132928 17 17q12 notchless homolog 1 (Drosophila) protein-coding NLE1 notchless homolog 1 (Drosophila) O Notchless gene homolog|notchless protein homolog 1 20121230 -9606 54476 RNF216 - TRIAD3|U7I1|UBCE7IP1|ZIN HGNC:21698|MIM:609948|Ensembl:ENSG00000011275|HPRD:15550|Vega:OTTHUMG00000155500 7 7p22.1 ring finger protein 216 protein-coding RNF216 ring finger protein 216 O E3 ubiquitin-protein ligase RNF216|triad domain-containing protein 3|ubiquitin-conjugating enzyme 7-interacting protein 1|zinc finger protein inhibiting NF-kappa-B 20121230 -9606 54477 PLEKHA5 - PEPP-2|PEPP2 HGNC:30036|MIM:607770|Ensembl:ENSG00000052126|HPRD:09684|Vega:OTTHUMG00000167921 12 12p12 pleckstrin homology domain containing, family A member 5 protein-coding PLEKHA5 pleckstrin homology domain containing, family A member 5 O PH domain-containing family A member 5|phosphoinositol 3-phosphate-binding protein-2|pleckstrin homology domain-containing family A member 5 20121230 -9606 54478 FAM64A - CATS|RCS1 HGNC:25483|Ensembl:ENSG00000129195|HPRD:07649|Vega:OTTHUMG00000177832 17 17p13.2 family with sequence similarity 64, member A protein-coding FAM64A family with sequence similarity 64, member A O CALM interacting protein expressed in thymus and spleen|protein FAM64A|regulator of chromosome segregation 1 20121230 -9606 54480 CHPF2 UNQ299/PRO339 CSGLCA-T|CSGlcAT|ChSy-3 HGNC:29270|MIM:608037|Ensembl:ENSG00000033100|HPRD:10474|Vega:OTTHUMG00000157380 7 7q36.1 chondroitin polymerizing factor 2 protein-coding CHPF2 chondroitin polymerizing factor 2 O N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase|chPF-2|chondroitin glucuronyltransferase|chondroitin sulfate glucuronyltransferase|chondroitin synthase 3|chondroitin synthase-3 20121230 -9606 54482 TRMT13 RP11-305E17.1 CCDC76 HGNC:25502|Ensembl:ENSG00000122435|HPRD:07659|Vega:OTTHUMG00000010841 1 1p21.2 tRNA methyltransferase 13 homolog (S. cerevisiae) protein-coding TRMT13 tRNA methyltransferase 13 homolog (S. cerevisiae) O coiled-coil domain containing 76|coiled-coil domain-containing protein 76|tRNA [Gm4] methyltransferase|tRNA guanosine-2'-O-methyltransferase TRM13 homolog 20121230 -9606 54487 DGCR8 LP4941 C22orf12|DGCRK6|Gy1|pasha HGNC:2847|MIM:609030|Ensembl:ENSG00000128191|HPRD:09913|Vega:OTTHUMG00000150503 22 22q11.2 DiGeorge syndrome critical region gene 8 protein-coding DGCR8 DiGeorge syndrome critical region gene 8 O DiGeorge syndrome critical region 8|microprocessor complex subunit DGCR8 20121230 -9606 54490 UGT2B28 - - HGNC:13479|MIM:606497|Ensembl:ENSG00000135226|HPRD:05931|Vega:OTTHUMG00000129401 4 4q13.2 UDP glucuronosyltransferase 2 family, polypeptide B28 protein-coding UGT2B28 UDP glucuronosyltransferase 2 family, polypeptide B28 O UDP glycosyltransferase 2 family, polypeptide B28|UDP-glucuronosyltransferase 2B28|UDPGT 2B28 20121230 -9606 54491 FAM105A - NET20 HGNC:25629|Ensembl:ENSG00000145569|HPRD:07733|Vega:OTTHUMG00000131056 5 5p15.2 family with sequence similarity 105, member A protein-coding FAM105A family with sequence similarity 105, member A O protein FAM105A 20121230 -9606 54492 NEURL1B - NEURL3|hNeur2|neur2 HGNC:35422|Ensembl:ENSG00000214357|Vega:OTTHUMG00000163281 5 5q35.1 neuralized homolog 1B (Drosophila) protein-coding NEURL1B neuralized homolog 1B (Drosophila) O E3 ubiquitin-protein ligase NEURL1B|E3 ubiquitin-protein ligase NEURL3|neuralized 2 alternative protein|neuralized-2|neuralized-like protein 1B|neuralized-like protein 3 20121230 -9606 54494 C11orf71 - - HGNC:25937|Ensembl:ENSG00000180425|HPRD:07874|Vega:OTTHUMG00000168247 11 11q23.2 chromosome 11 open reading frame 71 protein-coding C11orf71 chromosome 11 open reading frame 71 O uncharacterized protein C11orf71 20121230 -9606 54495 TMX3 - PDIA13|TXNDC10 HGNC:24718|Ensembl:ENSG00000166479|HPRD:15591|Vega:OTTHUMG00000172713 18 18q22 thioredoxin-related transmembrane protein 3 protein-coding TMX3 thioredoxin-related transmembrane protein 3 O protein disulfide isomerase family A, member 13|protein disulfide-isomerase TMX3|thioredoxin domain containing 10|thioredoxin domain-containing protein 10 20121230 -9606 54496 PRMT7 - - HGNC:25557|MIM:610087|Ensembl:ENSG00000132600|HPRD:15174|Vega:OTTHUMG00000137556 16 16q22.1 protein arginine methyltransferase 7 protein-coding PRMT7 protein arginine methyltransferase 7 O [Myelin basic protein]-arginine N-methyltransferase PRMT7|histone-arginine N-methyltransferase PRMT7|myelin basic protein-arginine N-methyltransferase|protein arginine N-methyltransferase 7 20121230 -9606 54497 HEATR5B - - HGNC:29273|Ensembl:ENSG00000008869|HPRD:11145|Vega:OTTHUMG00000152158 2 2p22.2 HEAT repeat containing 5B protein-coding HEATR5B HEAT repeat containing 5B O HEAT repeat-containing protein 5B 20121230 -9606 54498 SMOX RP4-779E11.4 C20orf16|PAO|PAO-1|PAOH1|SMO HGNC:15862|Ensembl:ENSG00000088826|HPRD:11587|Vega:OTTHUMG00000031777 20 20p13 spermine oxidase protein-coding SMOX spermine oxidase O flavin containing amine oxidase|flavin-containing spermine oxidase|polyamine oxidase 1|putative cyclin G1 interacting protein 20121230 -9606 54499 TMCO1 PNAS-10 HP10122|PCIA3|PNAS-136|RP11-466F5.7|TMCC4 HGNC:18188|MIM:614123|Ensembl:ENSG00000143183|HPRD:14243|Vega:OTTHUMG00000034672 1 1q22-q25 transmembrane and coiled-coil domains 1 protein-coding TMCO1 transmembrane and coiled-coil domains 1 O putative membrane protein|transmembrane and coiled-coil domain-containing protein 1|transmembrane and coiled-coil domains 4|xenogeneic cross-immune protein PCIA3 20121230 -9606 54501 CLF - - MIM:604595 13 13q cholesterol-lowering factor unknown - - - - 20120622 -9606 54502 RBM47 - NET18 HGNC:30358|Ensembl:ENSG00000163694|Vega:OTTHUMG00000128598 4 4p14 RNA binding motif protein 47 protein-coding RBM47 RNA binding motif protein 47 O RNA-binding motif protein 47|RNA-binding protein 47 20121230 -9606 54503 ZDHHC13 - HIP14L|HIP3RP HGNC:18413|MIM:612815|Ensembl:ENSG00000177054|HPRD:15710|Vega:OTTHUMG00000166099 11 11p15.1 zinc finger, DHHC-type containing 13 protein-coding ZDHHC13 zinc finger, DHHC-type containing 13 O DHHC-13|HIP14-related protein|huntingtin interacting protein HIP3RP|huntingtin-interacting protein 14-related protein|huntingtin-interacting protein HIP3RP|palmitoyltransferase ZDHHC13|probable palmitoyltransferase ZDHHC13|putative MAPK-activating protein PM03|putative NF-kappa-B-activating protein 209|zinc finger DHHC domain-containing protein 13|zinc finger, DHHC domain containing 13 20121230 -9606 54504 CPVL tcag7.235 HVLP HGNC:14399|MIM:609780|Ensembl:ENSG00000106066|HPRD:07479|Vega:OTTHUMG00000023669 7 7p15.1 carboxypeptidase, vitellogenic-like protein-coding CPVL carboxypeptidase, vitellogenic-like O CP-Mac carboxypeptidase|VCP-like protein|carboxypeptidase WUG|probable serine carboxypeptidase CPVL|vitellogenic carboxypeptidase-like protein 20121230 -9606 54505 DHX29 - DDX29 HGNC:15815|MIM:612720|Ensembl:ENSG00000067248|HPRD:10882|Vega:OTTHUMG00000162313 5 5q11.2 DEAH (Asp-Glu-Ala-His) box polypeptide 29 protein-coding DHX29 DEAH (Asp-Glu-Ala-His) box polypeptide 29 O ATP-dependent RNA helicase DHX29|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 29|DEAH box protein 29|nucleic acid helicase DDXx 20121230 -9606 54507 ADAMTSL4 PP1396 ECTOL2|TSRC1 HGNC:19706|MIM:610113|Ensembl:ENSG00000143382|HPRD:08583|HPRD:18237|Vega:OTTHUMG00000034863 1 1q21.3 ADAMTS-like 4 protein-coding ADAMTSL4 ADAMTS-like 4 O ADAMTS-like protein 4|ADAMTSL-4|thrombospondin repeat containing 1|thrombospondin repeat-containing protein 1 20121230 -9606 54508 FLJ11235 - - - 5 5q22.2 uncharacterized FLJ11235 miscRNA - - - - 20121230 -9606 54509 RHOF - ARHF|RIF HGNC:15703|Ensembl:ENSG00000139725|HPRD:15246|Vega:OTTHUMG00000169077 12 12q24.31 ras homolog family member F (in filopodia) protein-coding RHOF ras homolog family member F (in filopodia) O ras homolog gene family, member F (in filopodia)|rho family GTPase Rif|rho in filopodia|rho-related GTP-binding protein RhoF 20121230 -9606 54510 PCDH18 - PCDH68L HGNC:14268|MIM:608287|Ensembl:ENSG00000189184|HPRD:12205|Vega:OTTHUMG00000161348 4 4q31 protocadherin 18 protein-coding PCDH18 protocadherin 18 O protocadherin 68-like protein|protocadherin-18 20121230 -9606 54511 HMGCLL1 RP11-418P12.1 bA418P12.1|er-cHL HGNC:21359|Ensembl:ENSG00000146151|HPRD:13663|Vega:OTTHUMG00000014902 6 6p12.1 3-hydroxymethyl-3-methylglutaryl-CoA lyase-like 1 protein-coding HMGCLL1 3-hydroxymethyl-3-methylglutaryl-CoA lyase-like 1 O 3-hydroxymethyl-3-methylglutaryl-CoA lyase, cytoplasmic|3-hydroxymethyl-3-methylglutaryl-CoA lyase-like protein 1|3-hydroxymethyl-3-methylglutaryl-Coenzyme A lyase-like 1|endoplasmic reticulum 3-hydroxymethyl-3-methylglutaryl-CoA lyase|probable 3-hydroxymethyl-3-methylglutaryl-CoA lyase 2 20121230 -9606 54512 EXOSC4 - RRP41|RRP41A|Rrp41p|SKI6|Ski6p|hRrp41p|p12A HGNC:18189|MIM:606491|Ensembl:ENSG00000178896|HPRD:16221|Vega:OTTHUMG00000165437 8 8q24.3 exosome component 4 protein-coding EXOSC4 exosome component 4 O exosome complex component RRP41|exosome complex exonuclease RRP41|exosome component Rrp41|ribosomal RNA-processing protein 41 20121230 -9606 54514 DDX4 - VASA HGNC:18700|MIM:605281|Ensembl:ENSG00000152670|HPRD:05593|Vega:OTTHUMG00000097044 5 5p15.2-p13.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 4 protein-coding DDX4 DEAD (Asp-Glu-Ala-Asp) box polypeptide 4 O DEAD box protein 4|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 4|probable ATP-dependent RNA helicase DDX4|vasa homolog 20121230 -9606 54516 MTRF1L RP1-101K10.1 HMRF1L|MRF1L|mtRF1a HGNC:21051|MIM:613542|Ensembl:ENSG00000112031|HPRD:17613|Vega:OTTHUMG00000015857 6 6q25-q26 mitochondrial translational release factor 1-like protein-coding MTRF1L mitochondrial translational release factor 1-like O mitochondrial release factor 1 like|peptide chain release factor 1-like, mitochondrial 20121230 -9606 54517 PUS7 - - HGNC:26033|Ensembl:ENSG00000091127|HPRD:07914|Vega:OTTHUMG00000157399 7 7q22.3 pseudouridylate synthase 7 homolog (S. cerevisiae) protein-coding PUS7 pseudouridylate synthase 7 homolog (S. cerevisiae) O pseudouridylate synthase 7 homolog 20121230 -9606 54518 APBB1IP RP11-128B16.1 INAG1|PREL1|RARP1|RIAM HGNC:17379|MIM:609036|Ensembl:ENSG00000077420|HPRD:16420|Vega:OTTHUMG00000017841 10 10p12.1 amyloid beta (A4) precursor protein-binding, family B, member 1 interacting protein protein-coding APBB1IP amyloid beta (A4) precursor protein-binding, family B, member 1 interacting protein O APBB1-interacting protein 1|PREL-1|RARP-1|Rap1-GTP-interacting adaptor molecule|Rap1-interacting adaptor molecule|amyloid beta A4 precursor protein-binding family B member 1-interacting protein|proline rich EVH1 ligand 1|proline-rich EVH1 ligand 1|proline-rich protein 73|rap1-GTP-interacting adapter molecule|retinoic acid-responsive proline-rich protein 1 20121230 -9606 54520 CCDC93 - - HGNC:25611|Ensembl:ENSG00000125633|HPRD:08557|Vega:OTTHUMG00000058517 2 2q14.1 coiled-coil domain containing 93 protein-coding CCDC93 coiled-coil domain containing 93 O coiled-coil domain-containing protein 93 20121230 -9606 54521 WDR44 RP13-25C19.1 RAB11BP|RPH11 HGNC:30512|Ensembl:ENSG00000131725|HPRD:11682|Vega:OTTHUMG00000022254 X Xq24 WD repeat domain 44 protein-coding WDR44 WD repeat domain 44 O WD repeat-containing protein 44|rabphilin-11 20121230 -9606 54522 ANKRD16 RP11-318E3.7 - HGNC:23471|Ensembl:ENSG00000134461|HPRD:12459|Vega:OTTHUMG00000017610 10 10p15.1 ankyrin repeat domain 16 protein-coding ANKRD16 ankyrin repeat domain 16 O ankyrin repeat domain-containing protein 16 20121230 -9606 54529 ASNSD1 Nbla00058 NBLA00058|NS3TP1 HGNC:24910|Ensembl:ENSG00000138381|HPRD:17645|Vega:OTTHUMG00000132665 2 2p24.3-q21.3 asparagine synthetase domain containing 1 protein-coding ASNSD1 asparagine synthetase domain containing 1 O HCV NS3-transactivated protein 1|asparagine synthetase domain-containing protein 1 20121230 -9606 54531 MIER2 - KIAA1193|Mi-er2 HGNC:29210|Ensembl:ENSG00000105556|HPRD:11130|Vega:OTTHUMG00000180532 19 19p13.3 mesoderm induction early response 1, family member 2 protein-coding MIER2 mesoderm induction early response 1, family member 2 O mesoderm induction early response protein 2 20121230 -9606 54532 USP53 - - HGNC:29255|Ensembl:ENSG00000145390|HPRD:11669|Vega:OTTHUMG00000161331 4 4q26 ubiquitin specific peptidase 53 protein-coding USP53 ubiquitin specific peptidase 53 O inactive ubiquitin carboxyl-terminal hydrolase 53|inactive ubiquitin-specific peptidase 53|ubiquitin specific protease 53|ubiquitin specific proteinase 53 20121230 -9606 54534 MRPL50 - MRP-L50 HGNC:16654|MIM:611854|Ensembl:ENSG00000136897|HPRD:14768|Vega:OTTHUMG00000020384 9 9q31.1 mitochondrial ribosomal protein L50 protein-coding MRPL50 mitochondrial ribosomal protein L50 O 39S ribosomal protein L50, mitochondrial|L50mt|mitochondrial 39S ribosomal protein L50 20121230 -9606 54535 CCHCR1 XXbac-BCX101P6.10-002 C6orf18|HCR|SBP HGNC:13930|MIM:605310|Ensembl:ENSG00000204536|HPRD:05607|Vega:OTTHUMG00000031112 6 6p21.3 coiled-coil alpha-helical rod protein 1 protein-coding CCHCR1 coiled-coil alpha-helical rod protein 1 O HCR (a-helix coiled-coil rod homologue)|StAR-binding protein|alpha-helical coiled-coil rod protein|pg8|putative gene 8 protein 20121230 -9606 54536 EXOC6 RP11-348J12.4 EXOC6A|SEC15|SEC15L|SEC15L1|SEC15L3|Sec15p HGNC:23196|MIM:609672|Ensembl:ENSG00000138190|HPRD:10216|Vega:OTTHUMG00000018767 10 10q23.33 exocyst complex component 6 protein-coding EXOC6 exocyst complex component 6 O SEC15-like 1|SEC15-like protein 1|SEC15-like protein 3|exocyst complex component Sec15A 20121230 -9606 54537 FAM35A RP11-163M19.1 FAM35A1|bA163M19.1 HGNC:28773|Ensembl:ENSG00000122376|HPRD:09944|Vega:OTTHUMG00000018669 10 10q23.2 family with sequence similarity 35, member A protein-coding FAM35A family with sequence similarity 35, member A O protein FAM35A 20121230 -9606 54538 ROBO4 UNQ421/PRO3674 ECSM4|MRB HGNC:17985|MIM:607528|Ensembl:ENSG00000154133|HPRD:09604|Vega:OTTHUMG00000165936 11 11q24.2 roundabout, axon guidance receptor, homolog 4 (Drosophila) protein-coding ROBO4 roundabout, axon guidance receptor, homolog 4 (Drosophila) O roundabout homolog 4|roundabout homolog 4, magic roundabout 20121230 -9606 54539 NDUFB11 CTD-2522E6.3 CI-ESSS|ESSS|NP17.3|Np15|P17.3 HGNC:20372|MIM:300403|Ensembl:ENSG00000147123|HPRD:02323|Vega:OTTHUMG00000021433 X Xp11.23 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 11, 17.3kDa protein-coding NDUFB11 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 11, 17.3kDa O NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial|NADH-ubiquinone oxidoreductase ESSS subunit|complex I NP17.3 subunit|complex I-ESSS|neuronal protein 17.3 20121230 -9606 54540 FAM193B - IRIZIO HGNC:25524|Ensembl:ENSG00000146067|HPRD:07671|Vega:OTTHUMG00000163396 5 5q35.3 family with sequence similarity 193, member B protein-coding FAM193B family with sequence similarity 193, member B O protein FAM193B 20121230 -9606 54541 DDIT4 RP11-442H21.1 Dig2|REDD-1|REDD1 HGNC:24944|MIM:607729|Ensembl:ENSG00000168209|HPRD:09662|Vega:OTTHUMG00000018435 10 10q22.1 DNA-damage-inducible transcript 4 protein-coding DDIT4 DNA-damage-inducible transcript 4 O DNA damage-inducible transcript 4 protein|HIF-1 responsive protein RTP801|protein regulated in development and DNA damage response 1 20121230 -9606 54542 RC3H2 RP11-163B6.3 MNAB|RNF164 HGNC:21461|Ensembl:ENSG00000056586|HPRD:14726|Vega:OTTHUMG00000020632 9 9q34 ring finger and CCCH-type domains 2 protein-coding RC3H2 ring finger and CCCH-type domains 2 O RING finger and CCCH-type zinc finger domain-containing protein 2|RING finger protein 164|membrane associated DNA binding protein|membrane-associated nucleic acid binding protein|membrane-associated nucleic acid-binding protein|ring finger and CCCH-type zinc finger domains 2 20121230 -9606 54543 TOMM7 AD-014 TOM7 HGNC:21648|MIM:607980|Ensembl:ENSG00000196683|HPRD:16266|Vega:OTTHUMG00000094805 7 7p15.3 translocase of outer mitochondrial membrane 7 homolog (yeast) protein-coding TOMM7 translocase of outer mitochondrial membrane 7 homolog (yeast) O 6.2 kd protein|mitochondrial import receptor subunit TOM7 homolog|translocase of outer membrane 7 kDa subunit homolog 20121230 -9606 54544 CRCT1 - C1orf42|NICE-1 HGNC:29875|Ensembl:ENSG00000169509|HPRD:16635|Vega:OTTHUMG00000012391 1 1q21 cysteine-rich C-terminal 1 protein-coding CRCT1 cysteine-rich C-terminal 1 O cysteine-rich C-terminal protein 1|protein NICE-1 20121230 -9606 54545 MTMR12 - 3-PAP|PIP3AP HGNC:18191|MIM:606501|Ensembl:ENSG00000150712|HPRD:05933|Vega:OTTHUMG00000161978 5 5p13.3 myotubularin related protein 12 protein-coding MTMR12 myotubularin related protein 12 O 3-phosphatase adapter protein|3-phosphatase adapter subunit|myotubularin-related protein 12|phosphatidylinositol 3 phosphate 3-phosphatase adapter subunit|phosphatidylinositol-3 phosphate 3-phosphatase adapter subunit|phosphatidylinositol-3 phosphate 3-phosphatase adaptor subunit|phosphatidylinositol-3-phosphate associated protein 20121230 -9606 54546 RNF186 - RP11-91K11.1 HGNC:25978|Ensembl:ENSG00000178828|HPRD:07885|Vega:OTTHUMG00000002709 1 1p36.13 ring finger protein 186 protein-coding RNF186 ring finger protein 186 O RING finger protein 186 20121230 -9606 54549 SDK2 - - HGNC:19308|MIM:607217|Ensembl:ENSG00000069188|HPRD:06239|Vega:OTTHUMG00000152726 17 17q25.1 sidekick cell adhesion molecule 2 protein-coding SDK2 sidekick cell adhesion molecule 2 O protein sidekick-2|sidekick homolog 2 20121230 -9606 54550 NECAB2 - EFCBP2 HGNC:23746|Ensembl:ENSG00000103154|HPRD:13263|Vega:OTTHUMG00000137636 16 16q23.3 N-terminal EF-hand calcium binding protein 2 protein-coding NECAB2 N-terminal EF-hand calcium binding protein 2 O EF hand calcium binding protein 2|EF-hand calcium binding protein 2|EF-hand calcium-binding protein 2|N-terminal EF-hand calcium-binding protein 2|neuronal calcium binding 2|neuronal calcium-binding protein 2|stip-2|synaptotagmin-interacting protein 2 20121230 -9606 54551 MAGEL2 - NDNL1|nM15 HGNC:6814|MIM:605283|Ensembl:ENSG00000254585|HPRD:12008|Vega:OTTHUMG00000167582 15 15q11-q12 MAGE-like 2 protein-coding MAGEL2 MAGE-like 2 O MAGE-like protein 2|necdin-like protein 1|protein nM15 20121230 -9606 54552 GNL3L RP11-353K22.1 - HGNC:25553|MIM:300873|Ensembl:ENSG00000130119|HPRD:06514|Vega:OTTHUMG00000021629 X Xp11.22 guanine nucleotide binding protein-like 3 (nucleolar)-like protein-coding GNL3L guanine nucleotide binding protein-like 3 (nucleolar)-like O guanine nucleotide-binding protein-like 3-like protein|novel GTPase 20121230 -9606 54553 DKFZP434I0714 - - - 4 4q31.23 uncharacterized protein DKFZP434I0714 miscRNA - - - - 20121230 -9606 54554 WDR5B - - HGNC:17826|Ensembl:ENSG00000196981|HPRD:18302|Vega:OTTHUMG00000159489 3 3q21.1 WD repeat domain 5B protein-coding WDR5B WD repeat domain 5B O WD repeat-containing protein 5B 20121230 -9606 54555 DDX49 - R27090_2 HGNC:18684|Ensembl:ENSG00000105671|HPRD:10864 19 19p12 DEAD (Asp-Glu-Ala-Asp) box polypeptide 49 protein-coding DDX49 DEAD (Asp-Glu-Ala-Asp) box polypeptide 49 O DEAD box protein 49|probable ATP-dependent RNA helicase DDX49 20121230 -9606 54556 ING3 HSPC301 Eaf4|ING2|MEAF4|p47ING3 HGNC:14587|MIM:607493|Ensembl:ENSG00000071243|HPRD:06321|Vega:OTTHUMG00000141270 7 7q31 inhibitor of growth family, member 3 protein-coding ING3 inhibitor of growth family, member 3 O inhibitor of growth protein 3 20121230 -9606 54557 SGTB - SGT2 HGNC:23567|Ensembl:ENSG00000197860|HPRD:18049|Vega:OTTHUMG00000097801 5 5q12.3 small glutamine-rich tetratricopeptide repeat (TPR)-containing, beta protein-coding SGTB small glutamine-rich tetratricopeptide repeat (TPR)-containing, beta O beta-SGT|small glutamine rich protein with tetratricopeptide repeats 2|small glutamine-rich protein with tetratricopeptide repeats 2|small glutamine-rich tetratricopeptide repeat-containing protein beta 20121230 -9606 54558 SPATA6 RP11-252A4.1 HASH|SRF-1|SRF1 HGNC:18309|MIM:613947|Ensembl:ENSG00000132122|HPRD:15430|Vega:OTTHUMG00000007794 1 1p33 spermatogenesis associated 6 protein-coding SPATA6 spermatogenesis associated 6 O spermatogenesis-associated protein 6|spermatogenesis-related factor-1 20121230 -9606 54566 EPB41L4B - CG1|EHM2 HGNC:19818|MIM:610340|Ensembl:ENSG00000095203|HPRD:09940|Vega:OTTHUMG00000020470 9 9q31-q32 erythrocyte membrane protein band 4.1 like 4B protein-coding EPB41L4B erythrocyte membrane protein band 4.1 like 4B O EHM2|FERM-containing protein CG1|band 4.1-like protein 4B 20121230 -9606 54567 DLL4 UNQ1895/PRO4341 hdelta2 HGNC:2910|MIM:605185|Ensembl:ENSG00000128917|HPRD:05540|Vega:OTTHUMG00000172511 15 15q14 delta-like 4 (Drosophila) protein-coding DLL4 delta-like 4 (Drosophila) O delta 4|delta ligand 4|delta-like 4 homolog|delta-like 4 protein|delta-like protein 4|delta4|drosophila Delta homolog 4|notch ligand DLL4|notch ligand delta-2 20121230 -9606 54568 UGT2B29P - - HGNC:12552 4 4q13 UDP glucuronosyltransferase 2 family, polypeptide B29 pseudogene pseudo UGT2B29P UDP glucuronosyltransferase 2 family, polypeptide B29 pseudogene O - 20121230 -9606 54569 UGT2B27P - - HGNC:12551 4 4q13 UDP glucuronosyltransferase 2 family, polypeptide B27 pseudogene pseudo UGT2B27P UDP glucuronosyltransferase 2 family, polypeptide B27 pseudogene O - 20121230 -9606 54570 UGT2B26P - - HGNC:12550 4 4q13 UDP glucuronosyltransferase 2 family, polypeptide B26 pseudogene pseudo UGT2B26P UDP glucuronosyltransferase 2 family, polypeptide B26 pseudogene O - 20121230 -9606 54571 UGT2B25P - - HGNC:12549 4 4q13 UDP glucuronosyltransferase 2 family, polypeptide B25 pseudogene pseudo UGT2B25P UDP glucuronosyltransferase 2 family, polypeptide B25 pseudogene O - 20121230 -9606 54572 UGT2B24P - - HGNC:12548 4 4q13 UDP glucuronosyltransferase 2 family, polypeptide B24 pseudogene pseudo UGT2B24P UDP glucuronosyltransferase 2 family, polypeptide B24 pseudogene O - 20121230 -9606 54573 UGT1A12P - UGT1L HGNC:12533|Ensembl:ENSG00000228949 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A12 pseudogene pseudo UGT1A12P UDP glucuronosyltransferase 1 family, polypeptide A12 pseudogene O - 20121230 -9606 54574 UGT1A11P - UGT1K HGNC:12532|Ensembl:ENSG00000227846 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A11 pseudogene pseudo UGT1A11P UDP glucuronosyltransferase 1 family, polypeptide A11 pseudogene O - 20121230 -9606 54575 UGT1A10 - UDPGT|UGT-1J|UGT1-10|UGT1.10|UGT1J HGNC:12531|MIM:606435|Ensembl:ENSG00000242515|HPRD:07336|Vega:OTTHUMG00000059121 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A10 protein-coding UGT1A10 UDP glucuronosyltransferase 1 family, polypeptide A10 O UDP glycosyltransferase 1 family, polypeptide A10|UDP-glucuronosyltransferase 1-10|UDP-glucuronosyltransferase 1-J|UDP-glucuronosyltransferase 1A10|UDPGT 1-10 20121230 -9606 54576 UGT1A8 - UDPGT|UDPGT 1-8|UGT-1H|UGT1-08|UGT1.8|UGT1A8S|UGT1H HGNC:12540|MIM:606433|Ensembl:ENSG00000242366|HPRD:07072|Vega:OTTHUMG00000059123 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A8 protein-coding UGT1A8 UDP glucuronosyltransferase 1 family, polypeptide A8 O UDP glycosyltransferase 1 family, polypeptide A8|UDP-glucuronosyltransferase 1 family polypeptide A8s|UDP-glucuronosyltransferase 1-8|UDP-glucuronosyltransferase 1-H|UDP-glucuronosyltransferase 1A8 20121230 -9606 54577 UGT1A7 - UDPGT|UDPGT 1-7|UGT-1G|UGT1-07|UGT1.7|UGT1G HGNC:12539|MIM:606432|Ensembl:ENSG00000244122|HPRD:09397|Vega:OTTHUMG00000059004 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A7 protein-coding UGT1A7 UDP glucuronosyltransferase 1 family, polypeptide A7 O UDP glycosyltransferase 1 family, polypeptide A7|UDP-glucuronosyltransferase 1 family polypeptide A7s|UDP-glucuronosyltransferase 1-7|UDP-glucuronosyltransferase 1-G|UDP-glucuronosyltransferase 1A7 20121230 -9606 54578 UGT1A6 - GNT1|HLUGP|HLUGP1|UDPGT|UDPGT 1-6|UGT1|UGT1A6S|UGT1F HGNC:12538|MIM:606431|Ensembl:ENSG00000167165|HPRD:07071|Vega:OTTHUMG00000059122 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A6 protein-coding UGT1A6 UDP glucuronosyltransferase 1 family, polypeptide A6 O UDP glycosyltransferase 1 family, polypeptide A6|UDP-glucuronosyltransferase 1 family polypeptide A6s|UDP-glucuronosyltransferase 1-6|UDP-glucuronosyltransferase 1-F|UDP-glucuronosyltransferase 1A6|UGT-1F|UGT1*6|UGT1-06|UGT1.6|phenol-metabolizing UDP-glucuronosyltransferase 20121230 -9606 54579 UGT1A5 - UDPGT|UDPGT 1-5|UGT1E HGNC:12537|MIM:606430|Ensembl:ENSG00000240224|HPRD:07335|Vega:OTTHUMG00000059120 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A5 protein-coding UGT1A5 UDP glucuronosyltransferase 1 family, polypeptide A5 O UDP glycosyltransferase 1 family, polypeptide A5|UDP-glucuronosyltransferase 1 family polypeptide A5s|UDP-glucuronosyltransferase 1-5|UDP-glucuronosyltransferase 1-E|UDP-glucuronosyltransferase 1A5|UGT-1E|UGT1*5 20121230 -9606 54580 UGT1A2P - UGT1BP HGNC:12534|Ensembl:ENSG00000228445 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A2 pseudogene pseudo UGT1A2P UDP glucuronosyltransferase 1 family, polypeptide A2 pseudogene O - 20121230 -9606 54581 SCAND2 - - HGNC:10567|MIM:610417|HPRD:18021 15 15q25.2 SCAN domain containing 2 pseudogene pseudo SCAND2 SCAN domain containing 2 pseudogene O - 20121230 -9606 54583 EGLN1 PNAS-118 C1orf12|ECYT3|HIF-PH2|HIFPH2|HPH-2|HPH2|PHD2|SM20|ZMYND6 HGNC:1232|MIM:606425|Ensembl:ENSG00000135766|HPRD:06971|Vega:OTTHUMG00000038027 1 1q42.1 egl nine homolog 1 (C. elegans) protein-coding EGLN1 egl nine homolog 1 (C. elegans) O HIF prolyl hydroxylase 2|HIF-prolyl hydroxylase 2|egl nine homolog 1|egl nine-like protein 1|hypoxia-inducible factor prolyl hydroxylase 2|prolyl hydroxylase domain-containing protein 2|zinc finger MYND domain-containing protein 6 20121230 -9606 54584 GNB1L FKSG1 DGCRK3|GY2|WDR14|WDVCF HGNC:4397|MIM:610778|Ensembl:ENSG00000185838|HPRD:13591|Vega:OTTHUMG00000150279 22 22q11.2 guanine nucleotide binding protein (G protein), beta polypeptide 1-like protein-coding GNB1L guanine nucleotide binding protein (G protein), beta polypeptide 1-like O G-protein beta subunit-like protein|WD repeat-containing protein 14|WD40 repeat-containing protein deleted in VCFS|g protein subunit beta-like protein 1|guanine nucleotide binding protein beta-subunit-like polypeptide|guanine nucleotide-binding protein subunit beta-like protein 1 20121230 -9606 54585 LZTFL1 - - HGNC:6741|MIM:606568|Ensembl:ENSG00000163818|HPRD:07586|Vega:OTTHUMG00000133452 3 3p21.3 leucine zipper transcription factor-like 1 protein-coding LZTFL1 leucine zipper transcription factor-like 1 O leucine zipper transcription factor-like protein 1 20121230 -9606 54586 EQTN - AFAF|C9orf11|SPACA8|equatorin HGNC:1359|Ensembl:ENSG00000120160|HPRD:12932|Vega:OTTHUMG00000021033 9 9p21 equatorin, sperm acrosome associated protein-coding EQTN equatorin, sperm acrosome associated O acrosome formation associated factor|acrosome formation-associated factor|sperm acrosome associated 8 20121230 -9606 54587 MXRA8 - - HGNC:7542|Ensembl:ENSG00000162576|HPRD:11330|Vega:OTTHUMG00000002973 1 1p36.33 matrix-remodelling associated 8 protein-coding MXRA8 matrix-remodelling associated 8 O limitrin|matrix-remodeling-associated protein 8 20121230 -9606 54596 L1TD1 - ECAT11|RP5-1155K23.3 HGNC:25595|Ensembl:ENSG00000240563|HPRD:07708|Vega:OTTHUMG00000008914 1 1p31.3 LINE-1 type transposase domain containing 1 protein-coding L1TD1 LINE-1 type transposase domain containing 1 O ES cell-associated protein 11|LINE-1 type transposase domain-containing protein 1 20121230 -9606 54600 UGT1A9 - HLUGP4|LUGP4|UDPGT|UDPGT 1-9|UGT-1I|UGT1-09|UGT1-9|UGT1.9|UGT1AI|UGT1I HGNC:12541|MIM:606434|Ensembl:ENSG00000241119|HPRD:07073|Vega:OTTHUMG00000059124 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A9 protein-coding UGT1A9 UDP glucuronosyltransferase 1 family, polypeptide A9 O UDP glycosyltransferase 1 family, polypeptide A9|UDP-glucuronosyltransferase 1-9|UDP-glucuronosyltransferase 1-I|UDP-glucuronosyltransferase 1A9 20121230 -9606 54602 NDFIP2 - N4WBP5A HGNC:18537|MIM:610041|Ensembl:ENSG00000102471|HPRD:17629|Vega:OTTHUMG00000017136 13 13q31.1 Nedd4 family interacting protein 2 protein-coding NDFIP2 Nedd4 family interacting protein 2 O MAPK-activating protein PM04 PM05 PM06 PM07|NEDD4 WW domain-binding protein 5A|NEDD4 family-interacting protein 2|NF-kappa-B-activating protein 413|putative MAPK-activating protein PM04/PM05/PM06/PM07|putative NF-kappa-B-activating protein 413 20121230 -9606 54606 DDX56 - DDX21|DDX26|NOH61 HGNC:18193|MIM:608023|Ensembl:ENSG00000136271|HPRD:12154|Vega:OTTHUMG00000129211 7 7p13 DEAD (Asp-Glu-Ala-Asp) box helicase 56 protein-coding DDX56 DEAD (Asp-Glu-Ala-Asp) box helicase 56 O 61-kd nucleolar helicase|ATP-dependent 61 kDa nucleolar RNA helicase|DEAD (Asp-Glu-Ala-Asp) box polypeptide 56|DEAD box protein 21|DEAD box protein 56|DEAD-box RNA helicase|nucleolar helicase of 61 kDa|probable ATP-dependent RNA helicase DDX56|putative nucleolar RNA helicase 20121230 -9606 54617 INO80 - INO80A|INOC1|hINO80 HGNC:26956|MIM:610169|Ensembl:ENSG00000128908|HPRD:10024|Vega:OTTHUMG00000130209 15 15q15.1 INO80 homolog (S. cerevisiae) protein-coding INO80 INO80 homolog (S. cerevisiae) O DNA helicase INO80|INO80 complex subunit A|homolog of yeast INO80|putative DNA helicase INO80 complex homolog 1 20121230 -9606 54619 CCNJ - bA690P14.1 HGNC:23434|Ensembl:ENSG00000107443|HPRD:07710|Vega:OTTHUMG00000018823 10 10q23.33 cyclin J protein-coding CCNJ cyclin J O cyclin-J 20121230 -9606 54620 FBXL19 - Fbl19|JHDM1C HGNC:25300|MIM:609085|Ensembl:ENSG00000099364|HPRD:12366|Vega:OTTHUMG00000132403 16 16p11.2 F-box and leucine-rich repeat protein 19 protein-coding FBXL19 F-box and leucine-rich repeat protein 19 O F-box/LRR-repeat protein 19|jumonji C domain-containing histone demethylase 1C 20121230 -9606 54621 VSIG10 - - HGNC:26078|Ensembl:ENSG00000176834|HPRD:07941|Vega:OTTHUMG00000168835 12 12q24.23 V-set and immunoglobulin domain containing 10 protein-coding VSIG10 V-set and immunoglobulin domain containing 10 O V-set and immunoglobulin domain-containing protein 10 20121230 -9606 54622 ARL15 - ARFRP2 HGNC:25945|Ensembl:ENSG00000185305|HPRD:12471|Vega:OTTHUMG00000162287 5 5p15.2 ADP-ribosylation factor-like 15 protein-coding ARL15 ADP-ribosylation factor-like 15 O ADP-ribosylation factor related protein 2|ADP-ribosylation factor-like protein 15|ADP-ribosylation factor-related protein 2|ARF-related protein 2 20121230 -9606 54623 PAF1 - F23149_1|PD2 HGNC:25459|MIM:610506|Ensembl:ENSG00000006712|HPRD:10140 19 19q13.1 Paf1, RNA polymerase II associated factor, homolog (S. cerevisiae) protein-coding PAF1 Paf1, RNA polymerase II associated factor, homolog (S. cerevisiae) O RNA polymerase II-associated factor 1 homolog|pancreatic differentiation protein 2 20121230 -9606 54625 PARP14 - ARTD8|BAL2|PARP-14|pART8 HGNC:29232|MIM:610028|Ensembl:ENSG00000173193|HPRD:11421|Vega:OTTHUMG00000159552 3 3q21.1 poly (ADP-ribose) polymerase family, member 14 protein-coding PARP14 poly (ADP-ribose) polymerase family, member 14 O ADP-ribosyltransferase diphtheria toxin-like 8|B-aggressive lymphoma 2|b aggressive lymphoma protein 2|collaborator of STAT6|poly [ADP-ribose] polymerase 14 20121230 -9606 54626 HES2 - bHLHb40 HGNC:16005|MIM:609970|Ensembl:ENSG00000069812|HPRD:13649|Vega:OTTHUMG00000000752 1 1p36.31 hairy and enhancer of split 2 (Drosophila) protein-coding HES2 hairy and enhancer of split 2 (Drosophila) O class B basic helix-loop-helix protein 40|transcription factor HES-2 20121230 -9606 54627 KIAA1383 - - HGNC:29265|Ensembl:ENSG00000212916|Vega:OTTHUMG00000037819 1 1q42.2 KIAA1383 protein-coding KIAA1383 KIAA1383 O uncharacterized protein KIAA1383 20121230 -9606 54629 FAM63B - - HGNC:26954|Ensembl:ENSG00000128923|HPRD:13835|Vega:OTTHUMG00000171983 15 15q21.3 family with sequence similarity 63, member B protein-coding FAM63B family with sequence similarity 63, member B O protein FAM63B 20121230 -9606 54657 UGT1A4 - HUG-BR2|UDPGT|UDPGT 1-4|UGT-1D|UGT1-04|UGT1.4|UGT1D HGNC:12536|MIM:606429|Ensembl:ENSG00000244474|HPRD:08402|Vega:OTTHUMG00000059119 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A4 protein-coding UGT1A4 UDP glucuronosyltransferase 1 family, polypeptide A4 O UDP glycosyltransferase 1 family, polypeptide A4|UDP-glucuronosyltransferase 1-4|UDP-glucuronosyltransferase 1-D|UDP-glucuronosyltransferase 1A4|bilirubin UDP-glucuronosyltransferase isozyme 2|bilirubin-specific UDPGT isozyme 2 20121230 -9606 54658 UGT1A1 - BILIQTL1|GNT1|HUG-BR1|UDPGT|UDPGT 1-1|UGT1|UGT1A HGNC:12530|MIM:191740|Ensembl:ENSG00000241635|HPRD:08933|Vega:OTTHUMG00000059117 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A1 protein-coding UGT1A1 UDP glucuronosyltransferase 1 family, polypeptide A1 O UDP glycosyltransferase 1 family, polypeptide A1|UDP-glucuronosyltransferase 1-1|UDP-glucuronosyltransferase 1-A|UDP-glucuronosyltransferase 1A1|UGT-1A|UGT1*1|UGT1-01|UGT1.1|bilirubin UDP-glucuronosyltransferase 1-1|bilirubin UDP-glucuronosyltransferase isozyme 1|bilirubin-specific UDPGT isozyme 1 20121230 -9606 54659 UGT1A3 - UDPGT|UDPGT 1-3|UGT-1C|UGT1-03|UGT1.3|UGT1C HGNC:12535|MIM:606428|Ensembl:ENSG00000243135|HPRD:07566|Vega:OTTHUMG00000059118 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A3 protein-coding UGT1A3 UDP glucuronosyltransferase 1 family, polypeptide A3 O UDP glycosyltransferase 1 family, polypeptide A3|UDP-glucuronosyltransferase 1-3|UDP-glucuronosyltransferase 1-C|UDP-glucuronosyltransferase 1A3|UGT1*3 20121230 -9606 54660 PCDHB18 - PCDH-psi2 HGNC:14548 5 5q31 protocadherin beta 18 pseudogene pseudo PCDHB18 protocadherin beta 18 pseudogene O - 20121230 -9606 54661 PCDHB17 - ME4|PCDH-psi1 HGNC:14547 5 5q31 protocadherin beta 17 pseudogene pseudo PCDHB17 protocadherin beta 17 pseudogene O - 20121230 -9606 54662 TBC1D13 RP11-545E17.5 - HGNC:25571|Ensembl:ENSG00000107021|HPRD:18163|Vega:OTTHUMG00000020760 9 9q34.11 TBC1 domain family, member 13 protein-coding TBC1D13 TBC1 domain family, member 13 O TBC1 domain family member 13 20121230 -9606 54663 WDR74 - - HGNC:25529|Ensembl:ENSG00000133316|HPRD:08548|Vega:OTTHUMG00000167695 11 11q12.3 WD repeat domain 74 protein-coding WDR74 WD repeat domain 74 O NOP seven-associated protein 1|WD repeat-containing protein 74 20121230 -9606 54664 TMEM106B - - HGNC:22407|MIM:613413|Ensembl:ENSG00000106460|HPRD:07745|Vega:OTTHUMG00000125537 7 7p21.3 transmembrane protein 106B protein-coding TMEM106B transmembrane protein 106B O - 20121230 -9606 54665 RSBN1 - ROSBIN|RP11-324J2.1 HGNC:25642|Ensembl:ENSG00000081019|HPRD:08561|Vega:OTTHUMG00000011938 1 1p13.2 round spermatid basic protein 1 protein-coding RSBN1 round spermatid basic protein 1 O - 20121230 -9606 54674 LRRN3 Nbla10363 FIGLER5|NLRR-3|NLRR3 HGNC:17200|Ensembl:ENSG00000173114|HPRD:14321|Vega:OTTHUMG00000155039 7 7q31.1 leucine rich repeat neuronal 3 protein-coding LRRN3 leucine rich repeat neuronal 3 O fibronectin type III, immunoglobulin and leucine rich repeat domains 5|leucine-rich repeat neuronal protein 3|leucine-rich repeat protein, neuronal 3|neuronal leucine-rich repeat protein 3 20121230 -9606 54675 CRLS1 - C20orf155|CLS|CLS1|GCD10|dJ967N21.6 HGNC:16148|MIM:608188|Ensembl:ENSG00000088766|HPRD:12187|Vega:OTTHUMG00000031823 20 20p13-p12.3 cardiolipin synthase 1 protein-coding CRLS1 cardiolipin synthase 1 O cardiolipin synthase 20121230 -9606 54676 GTPBP2 RP11-22I24.2 - HGNC:4670|MIM:607434|Ensembl:ENSG00000172432|HPRD:08465|Vega:OTTHUMG00000014744 6 6p21 GTP binding protein 2 protein-coding GTPBP2 GTP binding protein 2 O GTP-binding protein 2 20121230 -9606 54677 CROT - COT HGNC:2366|MIM:606090|Ensembl:ENSG00000005469|HPRD:12081|Vega:OTTHUMG00000023653 7 7q21.1 carnitine O-octanoyltransferase protein-coding CROT carnitine O-octanoyltransferase O peroxisomal carnitine O-octanoyltransferase|peroxisomal carnitine acyltransferase 20121230 -9606 54680 ZNHIT6 - BCD1|C1orf181|NY-BR-75 HGNC:26089|Ensembl:ENSG00000117174|HPRD:08630|Vega:OTTHUMG00000010576 1 1p22.3 zinc finger, HIT-type containing 6 protein-coding ZNHIT6 zinc finger, HIT-type containing 6 O box C/D snoRNA essential 1 homolog|box C/D snoRNA protein 1|serologically defined breast cancer antigen NY-BR-75|zinc finger HIT domain-containing protein 6|zinc finger, HIT type 6 20121230 -9606 54681 P4HTM - EGLN4|HIFPH4|P4H-TM|PH-4|PH4|PHD4 HGNC:28858|MIM:614584|Ensembl:ENSG00000178467|HPRD:17842|Vega:OTTHUMG00000074057 3 3p21.31|3p21.3 prolyl 4-hydroxylase, transmembrane (endoplasmic reticulum) protein-coding P4HTM prolyl 4-hydroxylase, transmembrane (endoplasmic reticulum) O HIF-PH4|HIF-prolyl hydroxylase 4|HPH-4|P4H with transmembrane domain|Prolyl hydroxlase domain-containing 4|hypoxia inducible factor prolyl 4 hydroxylase|hypoxia-inducible factor prolyl 4-hydroxylase|hypoxia-inducible factor prolyl hydroxylase 4|proline 4-hydroxylase|transmembrane prolyl 4-hydroxylase 20121230 -9606 54682 MANSC1 UNQ316/PRO361 9130403P13Rik|LOH12CR3 HGNC:25505|Ensembl:ENSG00000111261|HPRD:10067|Vega:OTTHUMG00000168541 12 12p13.2 MANSC domain containing 1 protein-coding MANSC1 MANSC domain containing 1 O MANSC domain-containing protein 1|loss of heterozygosity 12 chromosomal region 3 protein 20121230 -9606 54700 RRN3 - A-270G1.2|TIFIA HGNC:30346|MIM:605121|Ensembl:ENSG00000085721|HPRD:12004|Vega:OTTHUMG00000129847 16 16p12 RRN3 RNA polymerase I transcription factor homolog (S. cerevisiae) protein-coding RRN3 RRN3 RNA polymerase I transcription factor homolog (S. cerevisiae) O RNA polymerase I-specific transcription initiation factor RRN3|TIF-IA|transcription initiation factor IA|transcription initiation factor TIF-IA 20121230 -9606 54704 PDP1 - PDH|PDP|PDPC|PPM2C HGNC:9279|MIM:605993|Ensembl:ENSG00000164951|HPRD:16185|Vega:OTTHUMG00000164356 8 8q22.1 pyruvate dehyrogenase phosphatase catalytic subunit 1 protein-coding PDP1 pyruvate dehyrogenase phosphatase catalytic subunit 1 O PDP 1|PDPC 1|[Pyruvate dehydrogenase [acetyl-transferring]]-phosphatase 1, mitochondrial|protein phosphatase 2C, magnesium-dependent, catalytic subunit|pyruvate dehydrogenase (Lipoamide) phosphatase-phosphatase|pyruvate dehydrogenase phosphatase catalytic subunit 1 20121230 -9606 54707 GPN2 RP1-50O24.5 ATPBD1B HGNC:25513|Ensembl:ENSG00000142751|HPRD:07665|Vega:OTTHUMG00000004227 1 1p36.11 GPN-loop GTPase 2 protein-coding GPN2 GPN-loop GTPase 2 O ATP binding domain 1 family, member B|ATP-binding domain 1 family member B 20121230 -9606 54708 MARCH5 RP11-543N17.3 MARCH-V|MITOL|RNF153 HGNC:26025|MIM:610637|Ensembl:ENSG00000198060|HPRD:07909|Vega:OTTHUMG00000018757 10 10q23.32-q23.33 membrane-associated ring finger (C3HC4) 5 protein-coding MARCH5 membrane-associated ring finger (C3HC4) 5 O E3 ubiquitin-protein ligase MARCH5|membrane-associated RING finger protein 5|membrane-associated RING-CH protein V|mitochondrial ubiquitin ligase|ring finger protein 153 20121230 -9606 54714 CNGB3 - - HGNC:2153|MIM:605080|Ensembl:ENSG00000170289|HPRD:05468|Vega:OTTHUMG00000163738 8 8q21.3 cyclic nucleotide gated channel beta 3 protein-coding CNGB3 cyclic nucleotide gated channel beta 3 O CNG channel beta-3|cone photoreceptor cGMP-gated cation channel beta-subunit|cyclic nucleotide-gated cation channel beta-3|cyclic nucleotide-gated cation channel modulatory subunit 20121230 -9606 54715 RBFOX1 - 2BP1|A2BP1|FOX-1|FOX1|HRNBP1 HGNC:18222|MIM:605104|Ensembl:ENSG00000078328|HPRD:16091|Vega:OTTHUMG00000129551 16 16p13.3 RNA binding protein, fox-1 homolog (C. elegans) 1 protein-coding RBFOX1 RNA binding protein, fox-1 homolog (C. elegans) 1 O RNA binding protein fox-1 homolog 1|ataxin 2-binding protein 1|fox-1 homolog A|hexaribonucleotide-binding protein 1 20121230 -9606 54716 SLC6A20 - SIT1|XT3|Xtrp3 HGNC:30927|MIM:605616|Ensembl:ENSG00000163817|HPRD:16128|Vega:OTTHUMG00000133446 3 3p21.3 solute carrier family 6 (proline IMINO transporter), member 20 protein-coding SLC6A20 solute carrier family 6 (proline IMINO transporter), member 20 O X transporter protein 3|neurotransmitter transporter RB21A|orphan transporter XT3|sodium- and chloride-dependent transporter XTRP3|sodium/imino-acid transporter 1|solute carrier family 6 (neurotransmitter transporter), member 20|transporter rB21A homolog 20121230 -9606 54718 BTN2A3P RP1-45P21.3 BTN2A3 HGNC:13229|MIM:613592|HPRD:12546 6 6p22.1 butyrophilin, subfamily 2, member A3, pseudogene pseudo BTN2A3P butyrophilin, subfamily 2, member A3, pseudogene O - 20121230 -9606 54719 RNANC - NCRNA MIM:221900 10 10q21 Retinal nonattachment, nonsyndromic congenital unknown - - - - 20120622 -9606 54726 OTUD4 - DUBA6|HIN1|HSHIN1 HGNC:24949|MIM:611744|Ensembl:ENSG00000164164|HPRD:11033|Vega:OTTHUMG00000161480 4 4q31.21 OTU domain containing 4 protein-coding OTUD4 OTU domain containing 4 O HIV-1 induced protein HIN-1|HIV-1-induced protein HIN-1|OTU domain-containing protein 4 20121230 -9606 54729 NKX1-1 - HSPX153|NKX-1.1|SAX2 HGNC:24975 4 4p16.3 NK1 homeobox 1 protein-coding NKX1-1 NK1 homeobox 1 O HPX-153 homeobox|NK1 transcription factor related, locus 1|NK1 transcription factor-related protein 1|homeobox protein 153|homeobox protein SAX-2 20121106 -9606 54732 TMED9 - GMP25|HSGP25L2G|p25 HGNC:24878|Ensembl:ENSG00000184840|HPRD:09975|Vega:OTTHUMG00000130859 5 5q35.3 transmembrane emp24 protein transport domain containing 9 protein-coding TMED9 transmembrane emp24 protein transport domain containing 9 O glycoprotein 25L2|gp25L2 protein|p24 family protein alpha-2|p24alpha2|transmembrane emp24 domain-containing protein 9 20121230 -9606 54733 SLC35F2 - HSNOV1 HGNC:23615|Ensembl:ENSG00000110660|HPRD:15377|Vega:OTTHUMG00000166366 11 11q22.3 solute carrier family 35, member F2 protein-coding SLC35F2 solute carrier family 35, member F2 O lung squamous cell cancer related protein LSCC-3|solute carrier family 35 member F2 20121230 -9606 54734 RAB39A - RAB39 HGNC:16521|Ensembl:ENSG00000179331|HPRD:11470|Vega:OTTHUMG00000166367 11 11q22.3 RAB39A, member RAS oncogene family protein-coding RAB39A RAB39A, member RAS oncogene family O RAB39, member RAS oncogene family|rab-39|rab-related GTP-binding protein|ras-related protein Rab-39A 20121230 -9606 54737 MPHOSPH8 RP11-523H24.1 HSMPP8|TWA3|mpp8 HGNC:29810|MIM:611626|Ensembl:ENSG00000196199|HPRD:13682|Vega:OTTHUMG00000016498 13 13q12.11 M-phase phosphoprotein 8 protein-coding MPHOSPH8 M-phase phosphoprotein 8 O M-phase phosphoprotein, mpp|M-phase phosphoprotein, mpp8|two hybrid-associated protein 3 with RanBPM 20121230 -9606 54738 FEV - HSRNAFEV|PET-1 HGNC:18562|MIM:607150|Ensembl:ENSG00000163497|HPRD:06193|Vega:OTTHUMG00000133080 2 2q36 FEV (ETS oncogene family) protein-coding FEV FEV (ETS oncogene family) O PC12 ETS domain-containing transcription factor 1|fifth Ewing variant protein|protein FEV 20121230 -9606 54739 XAF1 - BIRC4BP|HSXIAPAF1|XIAPAF1 HGNC:30932|MIM:606717|Ensembl:ENSG00000132530|HPRD:06978|Vega:OTTHUMG00000177908 17 17p13.1 XIAP associated factor 1 protein-coding XAF1 XIAP associated factor 1 O BIRC4 binding protein|BIRC4-binding protein|XIAP-associated factor 1 20121230 -9606 54741 LEPROT - LEPR|OB-RGRP|OBRGRP|VPS55 HGNC:29477|MIM:613461|Ensembl:ENSG00000213625|HPRD:13987|Vega:OTTHUMG00000009065 1 1p31.3 leptin receptor overlapping transcript protein-coding LEPROT leptin receptor overlapping transcript O DnaJ (Hsp40) homolog, subfamily C, member 6|OB-R gene-related protein|leptin receptor gene related protein|leptin receptor gene-related protein|leptin receptor overlapping transcript protein 20121230 -9606 54742 LY6K - CT97|HSJ001348|ly-6K HGNC:24225|Ensembl:ENSG00000160886|HPRD:17457|Vega:OTTHUMG00000164720 8 8q24.3 lymphocyte antigen 6 complex, locus K protein-coding LY6K lymphocyte antigen 6 complex, locus K O cancer/testis antigen 97|lymphocyte antigen 6K 20121230 -9606 54748 LINC00527 - C21orf104 HGNC:17215 21 - long intergenic non-protein coding RNA 527 unknown LINC00527 long intergenic non-protein coding RNA 527 O - 20120508 -9606 54749 EPDR1 - EPDR|MERP-1|MERP1|UCC1 HGNC:17572|Ensembl:ENSG00000086289|HPRD:16865|Vega:OTTHUMG00000102187 7 7p14.1 ependymin related protein 1 (zebrafish) protein-coding EPDR1 ependymin related protein 1 (zebrafish) O mammalian ependymin related protein 1|mammalian ependymin-related protein 1|upregulated in colorectal cancer gene 1 protein 20121230 -9606 54751 FBLIM1 RP11-169K16.5 CAL|FBLP-1|FBLP1 HGNC:24686|MIM:607747|Ensembl:ENSG00000162458|HPRD:09669|Vega:OTTHUMG00000003079 1 1p36.21 filamin binding LIM protein 1 protein-coding FBLIM1 filamin binding LIM protein 1 O CSX-associated LIM|MIG2-interacting protein|filamin-binding LIM protein 1|filamin-binding LIM protein-1|migfilin|mitogen-inducible 2 interacting protein|mitogen-inducible 2-interacting protein 20121230 -9606 54752 FNDC8 - - HGNC:25286|Ensembl:ENSG00000073598|HPRD:13191|Vega:OTTHUMG00000132932 17 17q12 fibronectin type III domain containing 8 protein-coding FNDC8 fibronectin type III domain containing 8 O fibronectin type III domain-containing protein 8 20121230 -9606 54753 ZNF853 - - HGNC:21767|Ensembl:ENSG00000236609|Vega:OTTHUMG00000151853 7 7p22.1 zinc finger protein 853 protein-coding ZNF853 zinc finger protein 853 O - 20121230 -9606 54754 FAM22F - - HGNC:23450|Ensembl:ENSG00000130950|Vega:OTTHUMG00000020260 9 9q22.32 family with sequence similarity 22, member F protein-coding FAM22F family with sequence similarity 22, member F O protein FAM22F 20121230 -9606 54756 IL17RD UNQ6115/PRO20026 IL-17RD|IL17RLM|SEF HGNC:17616|MIM:606807|Ensembl:ENSG00000144730|Vega:OTTHUMG00000150171 3 3p14.3 interleukin 17 receptor D protein-coding IL17RD interleukin 17 receptor D O IL-17 receptor D|IL17Rhom|hSef|interleukin-17 receptor D|interleukin-17 receptor-like protein|sef homolog 20121230 -9606 54757 FAM20A UNQ9388/PRO34279 AIGFS|FP2747 HGNC:23015|MIM:611062|Ensembl:ENSG00000108950|HPRD:13296|Vega:OTTHUMG00000180152 17 17q24.2 family with sequence similarity 20, member A protein-coding FAM20A family with sequence similarity 20, member A O protein FAM20A 20121230 -9606 54758 KLHDC4 - - HGNC:25272|Ensembl:ENSG00000104731|HPRD:11180|Vega:OTTHUMG00000137657 16 16q24.3 kelch domain containing 4 protein-coding KLHDC4 kelch domain containing 4 O kelch domain-containing protein 4 20121230 -9606 54759 HSA251708 - - - - - microtubule-binding protein-like unknown - - - - 20120710 -9606 54760 PCSK4 UNQ2757/PRO6496 PC4|SPC5 HGNC:8746|MIM:600487|Ensembl:ENSG00000115257|Vega:OTTHUMG00000128541 19 19p13.3 proprotein convertase subtilisin/kexin type 4 protein-coding PCSK4 proprotein convertase subtilisin/kexin type 4 O - 20121230 -9606 54762 GRAMD1C UNQ2543/PRO6095 - HGNC:25252|Ensembl:ENSG00000178075|Vega:OTTHUMG00000159340 3 3q13.31 GRAM domain containing 1C protein-coding GRAMD1C GRAM domain containing 1C O GRAM domain-containing protein 1C 20121230 -9606 54763 ROPN1 - CT91|ODF6|RHPNAP1|ROPN1A|ropporin HGNC:17692|MIM:611757|Ensembl:ENSG00000065371|HPRD:15269|Vega:OTTHUMG00000159556 3 3q21.1 rhophilin associated tail protein 1 protein-coding ROPN1 rhophilin associated tail protein 1 O cancer/testis antigen 91|outer dense fiber of sperm tails 6|rhophilin-associated protein 1A|ropporin, rhophilin associated protein 1|ropporin-1A 20121230 -9606 54764 ZRANB1 - TRABID HGNC:18224|MIM:611749|Ensembl:ENSG00000019995|HPRD:11738|Vega:OTTHUMG00000019223 10 10q26.13 zinc finger, RAN-binding domain containing 1 protein-coding ZRANB1 zinc finger, RAN-binding domain containing 1 O TRAF-binding domain-containing protein|TRAF-binding protein domain|hTrabid|ubiquitin thioesterase ZRANB1|zinc finger Ran-binding domain-containing protein 1 20121230 -9606 54765 TRIM44 - DIPB|HSA249128|MC7 HGNC:19016|MIM:612298|Ensembl:ENSG00000166326|HPRD:15561|Vega:OTTHUMG00000166312 11 11p13 tripartite motif containing 44 protein-coding TRIM44 tripartite motif containing 44 O tripartite motif-containing 44|tripartite motif-containing protein 44 20121230 -9606 54766 BTG4 - PC3B HGNC:13862|MIM:605673|Ensembl:ENSG00000137707|HPRD:16138|Vega:OTTHUMG00000166718 11 11q23 B-cell translocation gene 4 protein-coding BTG4 B-cell translocation gene 4 O BTG family member 4|protein BTG4|protein PC3b 20121230 -9606 54768 HYDIN - CILD5|HYDIN1|HYDIN2|PPP1R31 HGNC:19368|MIM:610812|Ensembl:ENSG00000157423|HPRD:11042|Vega:OTTHUMG00000137584 16 16q22.2 HYDIN, axonemal central pair apparatus protein protein-coding HYDIN HYDIN, axonemal central pair apparatus protein O hydrocephalus inducing homolog|hydrocephalus-inducing protein homolog|protein phosphatase 1, regulatory subunit 31 20121230 -9606 54769 DIRAS2 - Di-Ras2 HGNC:19323|MIM:607863|Ensembl:ENSG00000165023|HPRD:09711|Vega:OTTHUMG00000020196 9 9q22.2 DIRAS family, GTP-binding RAS-like 2 protein-coding DIRAS2 DIRAS family, GTP-binding RAS-like 2 O GTP-binding protein Di-Ras2|distinct subgroup of the Ras family member 2 20121230 -9606 54776 PPP1R12C - LENG3|MBS85|p84|p85 HGNC:14947|MIM:613245|Ensembl:ENSG00000125503|HPRD:11452|Vega:OTTHUMG00000180540 19 19q13.42 protein phosphatase 1, regulatory subunit 12C protein-coding PPP1R12C protein phosphatase 1, regulatory subunit 12C O leukocyte receptor cluster (LRC) encoded novel gene 3|leukocyte receptor cluster (LRC) member 3|myosin-binding subunit 85|protein phosphatase 1 myosin-binding subunit of 85 kDa|protein phosphatase 1 myosin-binding subunit p85|protein phosphatase 1 regulatory subunit 12C|protein phosphatase 1, regulatory (inhibitor) subunit 12C 20121230 -9606 54777 TTC40 RP11-288G11.4 C10orf123|C10orf124|C10orf92|C10orf93|RP13-137A17.3|bA288G11.4|bA288G11.5|bB137A17.2|bB137A17.3 HGNC:25247|Ensembl:ENSG00000171811|HPRD:12596|Vega:OTTHUMG00000019292 10 10q26.3 tetratricopeptide repeat domain 40 protein-coding TTC40 tetratricopeptide repeat domain 40 O TPR repeat-containing protein C10orf93|tetratricopeptide repeat protein 40 20121230 -9606 54778 RNF111 - ARK HGNC:17384|MIM:605840|Ensembl:ENSG00000157450|HPRD:09318|Vega:OTTHUMG00000132716 15 15q21 ring finger protein 111 protein-coding RNF111 ring finger protein 111 O Arkadia|E3 ubiquitin-protein ligase Arkadia 20121230 -9606 54780 NSMCE4A PP4762 C10orf86|NS4EA|NSE4A HGNC:25935|MIM:612987|Ensembl:ENSG00000107672|HPRD:16585|Vega:OTTHUMG00000019180 10 10q26.13 non-SMC element 4 homolog A (S. cerevisiae) protein-coding NSMCE4A non-SMC element 4 homolog A (S. cerevisiae) O non-structural maintenance of chromosomes element 4 homolog A 20121230 -9606 54784 ALKBH4 - ABH4 HGNC:21900|MIM:613302|Ensembl:ENSG00000160993|HPRD:07875|Vega:OTTHUMG00000157720 7 7q22.1 alkB, alkylation repair homolog 4 (E. coli) protein-coding ALKBH4 alkB, alkylation repair homolog 4 (E. coli) O alkylated DNA repair protein alkB homolog 4|probable alpha-ketoglutarate-dependent dioxygenase ABH4 20121230 -9606 54785 C17orf59 - PRO2472 HGNC:25939|Ensembl:ENSG00000196544|HPRD:13368|Vega:OTTHUMG00000153930 17 17p13.1 chromosome 17 open reading frame 59 protein-coding C17orf59 chromosome 17 open reading frame 59 O uncharacterized protein C17orf59 20121230 -9606 54788 DNAJB12 - DJ10 HGNC:14891|MIM:608376|Ensembl:ENSG00000148719|HPRD:07086|Vega:OTTHUMG00000018436 10 10q22.1 DnaJ (Hsp40) homolog, subfamily B, member 12 protein-coding DNAJB12 DnaJ (Hsp40) homolog, subfamily B, member 12 O dnaJ homolog subfamily B member 12 20121230 -9606 54790 TET2 Nbla00191 KIAA1546|MDS HGNC:25941|MIM:612839|Ensembl:ENSG00000168769|HPRD:07876|Vega:OTTHUMG00000131213 4 4q24 tet methylcytosine dioxygenase 2 protein-coding TET2 tet methylcytosine dioxygenase 2 O methylcytosine dioxygenase TET2|probable methylcytosine dioxygenase TET2|tet oncogene family member 2 20121230 -9606 54793 KCTD9 - - HGNC:22401|Ensembl:ENSG00000104756|HPRD:13772|Vega:OTTHUMG00000099428 8 8p21.1 potassium channel tetramerisation domain containing 9 protein-coding KCTD9 potassium channel tetramerisation domain containing 9 O BTB/POZ domain-containing protein KCTD9 20121230 -9606 54795 TRPM4 - PFHB1B|TRPM4B HGNC:17993|MIM:606936|Ensembl:ENSG00000130529|HPRD:09502 19 19q13.33 transient receptor potential cation channel, subfamily M, member 4 protein-coding TRPM4 transient receptor potential cation channel, subfamily M, member 4 O LTrpC4|calcium-activated non-selective cation channel 1|hTRPM4|long transient receptor potential channel 4|melastatin-4|transient receptor potential cation channel subfamily M member 4 20121230 -9606 54796 BNC2 RP11-183I6.1 BSN2 HGNC:30988|MIM:608669|Ensembl:ENSG00000173068|HPRD:12274|Vega:OTTHUMG00000019593 9 9p22.2 basonuclin 2 protein-coding BNC2 basonuclin 2 O zinc finger protein basonuclin-2 20121230 -9606 54797 MED18 - p28b HGNC:25944|MIM:612384|Ensembl:ENSG00000130772|HPRD:17476|Vega:OTTHUMG00000003537 1 1p35.3 mediator complex subunit 18 protein-coding MED18 mediator complex subunit 18 O TRAP/mediator complex subunit p28b|mediator of RNA polymerase II transcription subunit 18|mediator of RNA polymerase II transcription, subunit 18 homolog 20121230 -9606 54798 DCHS2 - CDH27|CDHJ|CDHR7|PCDH23|PCDHJ HGNC:23111|MIM:612486|Ensembl:ENSG00000197410|HPRD:10858|Vega:OTTHUMG00000161556 4 4q31.3 dachsous 2 (Drosophila) protein-coding DCHS2 dachsous 2 (Drosophila) O cadherin-27|cadherin-like 27|cadherin-like protein CDHJ|cadherin-like protein VR8|cadherin-related family member 7|protein dachsous homolog 2|protocadherin 23|protocadherin PCDHJ|protocadherin-23 20121230 -9606 54799 MBTD1 - SA49P01 HGNC:19866|Ensembl:ENSG00000011258|HPRD:14369|Vega:OTTHUMG00000150442 17 17q21.33 mbt domain containing 1 protein-coding MBTD1 mbt domain containing 1 O MBT domain-containing protein 1 20121230 -9606 54800 KLHL24 - DRE1|KRIP6 HGNC:25947|MIM:611295|Ensembl:ENSG00000114796|HPRD:16838|Vega:OTTHUMG00000156911 3 3q27.1 kelch-like 24 (Drosophila) protein-coding KLHL24 kelch-like 24 (Drosophila) O kainate receptor interacting protein for GluR6|kainate receptor-interacting protein for GluR6|kelch-like protein 24 20121230 -9606 54801 HAUS6 RP11-296P7.3 Dgt6|FAM29A HGNC:25948|MIM:613433|Ensembl:ENSG00000147874|HPRD:13302|Vega:OTTHUMG00000019622 9 9p22.1 HAUS augmin-like complex, subunit 6 protein-coding HAUS6 HAUS augmin-like complex, subunit 6 O HAUS augmin-like complex subunit 6|dim gamma-tubulin homolog|family with sequence similarity 29, member A 20121230 -9606 54802 TRIT1 RP1-118J21.3 IPT|MOD5 HGNC:20286|Ensembl:ENSG00000043514|HPRD:18226|Vega:OTTHUMG00000009245 1 1p34.2 tRNA isopentenyltransferase 1 protein-coding TRIT1 tRNA isopentenyltransferase 1 O IPP transferase|IPPT|IPTase|hGRO1|isopentenyl-diphosphate:tRNA isopentenyltransferase|tRNA dimethylallyltransferase, mitochondrial|tRNA isopentenylpyrophosphate transferase 20121230 -9606 54805 CNNM2 RP11-30H12.1 ACDP2 HGNC:103|MIM:607803|Ensembl:ENSG00000148842|HPRD:07418|Vega:OTTHUMG00000018976 10 10q24.32 cyclin M2 protein-coding CNNM2 cyclin M2 O ancient conserved domain-containing protein 2|metal transporter CNNM2 20121230 -9606 54806 AHI1 RP1-32B1.2 AHI-1|JBTS3|ORF1|dJ71N10.1 HGNC:21575|MIM:608894|Ensembl:ENSG00000135541|HPRD:10597|Vega:OTTHUMG00000015631 6 6q23.3 Abelson helper integration site 1 protein-coding AHI1 Abelson helper integration site 1 O abelson helper integration site 1 protein homolog|contatins SH3 and WD40 domains|jouberin 20121230 -9606 54807 ZNF586 - - HGNC:25949|Ensembl:ENSG00000083828|HPRD:15863 19 19q13.43 zinc finger protein 586 protein-coding ZNF586 zinc finger protein 586 O - 20121230 -9606 54808 DYM - DMC|SMC HGNC:21317|MIM:607461|Ensembl:ENSG00000141627|HPRD:08469|Vega:OTTHUMG00000132659 18 18q21.1 dymeclin protein-coding DYM dymeclin O dyggve-Melchior-Clausen syndrome protein 20121230 -9606 54809 SAMD9 - C7orf5|DRIF1|NFTC|OEF1|OEF2 HGNC:1348|MIM:610456|Ensembl:ENSG00000205413|HPRD:11531|Vega:OTTHUMG00000155809 7 7q21.2 sterile alpha motif domain containing 9 protein-coding SAMD9 sterile alpha motif domain containing 9 O SAM domain-containing protein 9|expressed in aggressive fibromatosis|sterile alpha motif domain-containing protein 9 20121230 -9606 54810 GIPC2 - SEMCAP-2|SEMCAP2 HGNC:18177|Ensembl:ENSG00000137960|HPRD:17040|Vega:OTTHUMG00000041145 1 1p31.1 GIPC PDZ domain containing family, member 2 protein-coding GIPC2 GIPC PDZ domain containing family, member 2 O PDZ domain protein GIPC2|PDZ domain-containing protein GIPC2|semaF cytoplasmic domain associated protein 2|semaphorin cytoplasmic domain associated protein 2 20121230 -9606 54811 ZNF562 - - HGNC:25950|Ensembl:ENSG00000171466|HPRD:15844|Vega:OTTHUMG00000180205 19 19p13.2 zinc finger protein 562 protein-coding ZNF562 zinc finger protein 562 O - 20121230 -9606 54812 AFTPH - Nbla10388 HGNC:25951|Ensembl:ENSG00000119844|HPRD:10635|Vega:OTTHUMG00000129539 2 2p14 aftiphilin protein-coding AFTPH aftiphilin O aftiphilin protein 20121230 -9606 54813 KLHL28 - BTBD5 HGNC:19741|Ensembl:ENSG00000179454|HPRD:12539|Vega:OTTHUMG00000140263 14 14q21.2 kelch-like 28 (Drosophila) protein-coding KLHL28 kelch-like 28 (Drosophila) O BTB (POZ) domain containing 5|BTB/POZ domain-containing protein 5|kelch-like protein 28 20121230 -9606 54814 QPCTL - gQC HGNC:25952|Ensembl:ENSG00000011478|HPRD:08612|Vega:OTTHUMG00000182131 19 19q13.32 glutaminyl-peptide cyclotransferase-like protein-coding QPCTL glutaminyl-peptide cyclotransferase-like O glutaminyl cyclase-like|glutaminyl-peptide cyclotransferase-like protein|golgi-resident glutaminyl-peptide cyclotransferase|isoQC 20121230 -9606 54815 GATAD2A - p66alpha HGNC:29989|MIM:614997|Ensembl:ENSG00000167491|HPRD:11741|Vega:OTTHUMG00000152541 19 19p13.11 GATA zinc finger domain containing 2A protein-coding GATAD2A GATA zinc finger domain containing 2A O GATA zinc finger domain-containing protein 2A|hp66alpha|p66 alpha|transcriptional repressor p66-alpha 20121230 -9606 54816 ZNF280D - SUHW4|ZNF634 HGNC:25953|Ensembl:ENSG00000137871|HPRD:15448|Vega:OTTHUMG00000172509 15 15q21.3 zinc finger protein 280D protein-coding ZNF280D zinc finger protein 280D O suppressor of hairy wing homolog 4|zinc finger protein 634 20121230 -9606 54819 ZCCHC10 - - HGNC:25954|Ensembl:ENSG00000155329|HPRD:15699|Vega:OTTHUMG00000129013 5 5q31.1 zinc finger, CCHC domain containing 10 protein-coding ZCCHC10 zinc finger, CCHC domain containing 10 O zinc finger CCHC domain-containing protein 10 20121230 -9606 54820 NDE1 - HOM-TES-87|LIS4|NUDE|NUDE1 HGNC:17619|MIM:609449|Ensembl:ENSG00000072864|HPRD:14815|Vega:OTTHUMG00000129885 16 16p13.11 nudE nuclear distribution E homolog 1 (A. nidulans) protein-coding NDE1 nudE nuclear distribution E homolog 1 (A. nidulans) O LIS1-interacting protein NUDE1, rat homolog|nuclear distribution protein nudE homolog 1|nudE nuclear distribution gene E homolog 1 20121230 -9606 54821 ERCC6L - PICH|RAD26L HGNC:20794|MIM:300687|Ensembl:ENSG00000186871|HPRD:10974|Vega:OTTHUMG00000021810 X Xq13.1 excision repair cross-complementing rodent repair deficiency, complementation group 6-like protein-coding ERCC6L excision repair cross-complementing rodent repair deficiency, complementation group 6-like O ATP-dependent helicase ERCC6-like|DNA excision repair protein ERCC-6-like|Plk1-interacting checkpoint helicase|SNF2/RAD54 family protein|excision repair cross-complementing rodent repair deficiency complementation group 6 - like|excision repair protein ERCC6-like|tumor antigen BJ-HCC-15 20121230 -9606 54822 TRPM7 - ALSPDC|CHAK|CHAK1|LTRPC7|TRP-PLIK HGNC:17994|MIM:605692|Ensembl:ENSG00000092439|HPRD:10418|Vega:OTTHUMG00000172449 15 15q21 transient receptor potential cation channel, subfamily M, member 7 protein-coding TRPM7 transient receptor potential cation channel, subfamily M, member 7 O LTRPC ion channel family member 7|LTrpC-7|channel-kinase 1|long transient receptor potential channel 7|transient receptor potential cation channel subfamily M member 7|transient receptor potential-phospholipase C-interacting kinase 20121230 -9606 54823 SWT1 RP4-635A23.1 C1orf26|HsSwt1 HGNC:16785|Ensembl:ENSG00000116668|HPRD:10726|Vega:OTTHUMG00000035390 1 1q25 SWT1 RNA endoribonuclease homolog (S. cerevisiae) protein-coding SWT1 SWT1 RNA endoribonuclease homolog (S. cerevisiae) O transcriptional protein SWT1 20121230 -9606 54825 CDHR2 - PCDH24|PCLKC HGNC:18231|Ensembl:ENSG00000074276|HPRD:15103|Vega:OTTHUMG00000163229 5 5q35.2 cadherin-related family member 2 protein-coding CDHR2 cadherin-related family member 2 O protocadherin 24|protocadherin-24 20121230 -9606 54826 GIN1 - GIN-1|TGIN1|ZH2C2 HGNC:25959|Ensembl:ENSG00000145723|HPRD:07878|Vega:OTTHUMG00000162811 5 5q21.1 gypsy retrotransposon integrase 1 protein-coding GIN1 gypsy retrotransposon integrase 1 O Ty3/Gypsy integrase 1|gypsy integrase 1|gypsy retrotransposon integrase-like protein 1|zinc finger H2C2 domain-containing protein|zinc finger, H2C2 domain containing 20121230 -9606 54827 NXPE4 UNQ3018/PRO9799 C11orf33|FAM55D HGNC:23117|Ensembl:ENSG00000137634|HPRD:12607|Vega:OTTHUMG00000168291 11 11q23.2 neurexophilin and PC-esterase domain family, member 4 protein-coding NXPE4 neurexophilin and PC-esterase domain family, member 4 O NXPE family member 4|family with sequence similarity 55, member D|protein FAM55D 20121230 -9606 54828 BCAS3 - GAOB1|MAAB HGNC:14347|MIM:607470|Ensembl:ENSG00000141376|HPRD:06313|Vega:OTTHUMG00000180064 17 17q23 breast carcinoma amplified sequence 3 protein-coding BCAS3 breast carcinoma amplified sequence 3 O BCAS4/BCAS3 fusion|breast carcinoma amplified sequence 4/3 fusion protein|breast carcinoma-amplified sequence 3|metastasis associated antigen of breast cancer|protein Maab1 20121230 -9606 54829 ASPN RP11-77D6.3 OS3|PLAP-1|PLAP1|SLRR1C HGNC:14872|MIM:608135|Ensembl:ENSG00000106819|HPRD:16288|Vega:OTTHUMG00000020227 9 9q22 asporin protein-coding ASPN asporin O asporin (LRR class 1)|asporin proteoglycan|periodontal ligament associated protein 1|small leucine-rich protein 1C 20121230 -9606 54830 NUP62CL RP13-383K5.2 - HGNC:25960|Ensembl:ENSG00000198088|HPRD:06527|Vega:OTTHUMG00000022159 X Xq22.3 nucleoporin 62kDa C-terminal like protein-coding NUP62CL nucleoporin 62kDa C-terminal like O nucleoporin-62 C-terminal-like protein 20121230 -9606 54831 BEST2 - VMD2L1 HGNC:17107|MIM:607335|Ensembl:ENSG00000039987|Vega:OTTHUMG00000169293 19 19p13.2 bestrophin 2 protein-coding BEST2 bestrophin 2 O VMD2-like gene 1|bestrophin-2|vitelliform macular dystrophy 2-like 1|vitelliform macular dystrophy 2-like protein 1 20121230 -9606 54832 VPS13C - - HGNC:23594|MIM:608879|Ensembl:ENSG00000129003|HPRD:12323|Vega:OTTHUMG00000132801 15 15q22.2 vacuolar protein sorting 13 homolog C (S. cerevisiae) protein-coding VPS13C vacuolar protein sorting 13 homolog C (S. cerevisiae) O vacuolar protein sorting-associated protein 13C 20121230 -9606 54834 GDAP2 - MACROD3|dJ776P7.1 HGNC:18010|Ensembl:ENSG00000196505|HPRD:06576|Vega:OTTHUMG00000012199 1 1p12 ganglioside induced differentiation associated protein 2 protein-coding GDAP2 ganglioside induced differentiation associated protein 2 O ganglioside-induced differentiation-associated protein 2 20121230 -9606 54836 BSPRY - - HGNC:18232|Ensembl:ENSG00000119411|HPRD:16566|Vega:OTTHUMG00000021006 9 9q32 B-box and SPRY domain containing protein-coding BSPRY B-box and SPRY domain containing O B box and SPRY domain-containing protein|B-box and SPRY-domain containing protein|zetin 1 20121230 -9606 54838 WBP1L RP11-753C18.10-001 C10orf26|OPA1L|OPAL1 HGNC:23510|MIM:611129|Ensembl:ENSG00000166272|HPRD:12567|Vega:OTTHUMG00000018968 10 10q24.32 WW domain binding protein 1-like protein-coding WBP1L WW domain binding protein 1-like O outcome predictor in acute leukemia 1 20121230 -9606 54839 LRRC49 - - HGNC:25965|Ensembl:ENSG00000137821|HPRD:07880|Vega:OTTHUMG00000172182 15 15q23 leucine rich repeat containing 49 protein-coding LRRC49 leucine rich repeat containing 49 O PGs4|leucine-rich repeat-containing protein 49|tubulin polyglutamylase complex subunit 4 20121230 -9606 54840 APTX RP11-562M8.1 AOA|AOA1|AXA1|EAOH|EOAHA|FHA-HIT HGNC:15984|MIM:606350|Ensembl:ENSG00000137074|HPRD:05892|Vega:OTTHUMG00000019759 9 9p13.3 aprataxin protein-coding APTX aprataxin O forkhead-associated domain histidine triad-like protein 20121230 -9606 54841 BIVM RP11-484I6.1 - HGNC:16034|Ensembl:ENSG00000134897|HPRD:09827|Vega:OTTHUMG00000017309 13 13q33.1 basic, immunoglobulin-like variable motif containing protein-coding BIVM basic, immunoglobulin-like variable motif containing O basic immunoglobulin-like variable motif-containing protein 20121230 -9606 54842 MFSD6 - MMR2|hMMR2 HGNC:24711|MIM:613476|Ensembl:ENSG00000151690|HPRD:13369|Vega:OTTHUMG00000132671 2 2q32.2 major facilitator superfamily domain containing 6 protein-coding MFSD6 major facilitator superfamily domain containing 6 O macrophage MHC class I receptor 2 homolog|macrophage MHC receptor 2|major facilitator superfamily domain-containing protein 6 20121230 -9606 54843 SYTL2 - CHR11SYT|EXO4|SGA72M|SLP2|SLP2A HGNC:15585|MIM:612880|Ensembl:ENSG00000137501|HPRD:10260|Vega:OTTHUMG00000166977 11 11q14 synaptotagmin-like 2 protein-coding SYTL2 synaptotagmin-like 2 O breast cancer-associated antigen SGA-72M|chromosome 11 synaptotagmin|exophilin-4|synaptotagmin-like protein 2 20121230 -9606 54845 ESRP1 - RBM35A|RMB35A HGNC:25966|MIM:612959|Ensembl:ENSG00000104413|HPRD:07881|Vega:OTTHUMG00000164587 8 8q22.1 epithelial splicing regulatory protein 1 protein-coding ESRP1 epithelial splicing regulatory protein 1 O RNA binding motif protein 35A|RNA-binding motif protein 35A|RNA-binding protein 35A 20121230 -9606 54847 SIDT1 - B830021E24Rik|SID-1|SID1 HGNC:25967|MIM:606816|Ensembl:ENSG00000072858|HPRD:12111|Vega:OTTHUMG00000159299 3 3q13.2 SID1 transmembrane family, member 1 protein-coding SIDT1 SID1 transmembrane family, member 1 O SID1 transmembrane family member 1 20121230 -9606 54848 ARHGEF38 - - HGNC:25968|Ensembl:ENSG00000236699|HPRD:08613|Vega:OTTHUMG00000154752 4 4q24 Rho guanine nucleotide exchange factor (GEF) 38 protein-coding ARHGEF38 Rho guanine nucleotide exchange factor (GEF) 38 O rho guanine nucleotide exchange factor 38 20121230 -9606 54849 DEF8 - - HGNC:25969|Ensembl:ENSG00000140995|HPRD:07882|Vega:OTTHUMG00000138989 16 16q24.3 differentially expressed in FDCP 8 homolog (mouse) protein-coding DEF8 differentially expressed in FDCP 8 homolog (mouse) O DEF-8|differentially expressed in FDCP 8 homolog 20121230 -9606 54850 FBXL12 - Fbl12 HGNC:13611|MIM:609079|Ensembl:ENSG00000127452|HPRD:12363|Vega:OTTHUMG00000180212 19 19p13.2 F-box and leucine-rich repeat protein 12 protein-coding FBXL12 F-box and leucine-rich repeat protein 12 O F-box protein FBL12|F-box/LRR-repeat protein 12 20121230 -9606 54851 ANKRD49 - FGIF|GBIF HGNC:25970|Ensembl:ENSG00000168876|HPRD:16893|Vega:OTTHUMG00000167793 11 11q21 ankyrin repeat domain 49 protein-coding ANKRD49 ankyrin repeat domain 49 O ankyrin repeat domain-containing protein 49|fetal globin-inducing factor 20121230 -9606 54852 PAQR5 - MPRG HGNC:29645|MIM:607781|Ensembl:ENSG00000137819|HPRD:08475|Vega:OTTHUMG00000133322 15 15q23 progestin and adipoQ receptor family member V protein-coding PAQR5 progestin and adipoQ receptor family member V O mPR gamma|membrane progestin receptor gamma|progestin and adipoQ receptor family member 5 20121230 -9606 54853 WDR55 - - HGNC:25971|Ensembl:ENSG00000120314|HPRD:08614|Vega:OTTHUMG00000129506 5 5q31.3 WD repeat domain 55 protein-coding WDR55 WD repeat domain 55 O WD repeat-containing protein 55 20121230 -9606 54854 FAM83E - - HGNC:25972|Ensembl:ENSG00000105523|HPRD:07883 19 19q13.33 family with sequence similarity 83, member E protein-coding FAM83E family with sequence similarity 83, member E O protein FAM83E 20121230 -9606 54855 FAM46C - - HGNC:24712|MIM:613952|Ensembl:ENSG00000183508|HPRD:13312|Vega:OTTHUMG00000013703 1 1p12 family with sequence similarity 46, member C protein-coding FAM46C family with sequence similarity 46, member C O protein FAM46C 20121230 -9606 54856 GON4L RP11-101O6.1 GON-4|GON4|RP11-243J18.4|YARP HGNC:25973|MIM:610393|Ensembl:ENSG00000116580|HPRD:13370|Vega:OTTHUMG00000014106 1 1q22 gon-4-like (C. elegans) protein-coding GON4L gon-4-like (C. elegans) O 2610100B20Rik|GON-4-like protein|YY1AP-related protein1|gon-4 homolog 20121230 -9606 54857 GDPD2 RP11-528B10.2 GDE3|OBDPF HGNC:25974|Ensembl:ENSG00000130055|HPRD:06528|Vega:OTTHUMG00000021776 X Xq13.1 glycerophosphodiester phosphodiesterase domain containing 2 protein-coding GDPD2 glycerophosphodiester phosphodiesterase domain containing 2 O glycerophosphodiester phosphodiesterase 3|glycerophosphodiester phosphodiesterase domain-containing protein 2|glycerophosphoinositol inositolphosphodiesterase GDPD2|osteoblast differentiation promoting factor 20121230 -9606 54858 PGPEP1 - PGP|PGP-I|PGPI|Pcp HGNC:13568|MIM:610694|Ensembl:ENSG00000130517|HPRD:07141 19 19p13.11 pyroglutamyl-peptidase I protein-coding PGPEP1 pyroglutamyl-peptidase I O 5-oxoprolyl-peptidase|PAP-I|pyroglutamyl aminopeptidase I|pyroglutamyl-peptidase 1|pyrrolidone-carboxylate peptidase 20121230 -9606 54859 ELP6 - C3orf75|TMEM103 HGNC:25976|Ensembl:ENSG00000163832|HPRD:07884|Vega:OTTHUMG00000133521 3 3p21.31 elongator acetyltransferase complex subunit 6 protein-coding ELP6 elongator acetyltransferase complex subunit 6 O UPF0405 protein C3orf75|angiotonin-transactivated protein 1|elongator complex protein 6|elongator complex protein 6 homolog|transmembrane protein 103 20121230 -9606 54860 MS4A12 - Ms4a10 HGNC:13370|MIM:606550|Ensembl:ENSG00000071203|HPRD:08410|Vega:OTTHUMG00000165364 11 11q12 membrane-spanning 4-domains, subfamily A, member 12 protein-coding MS4A12 membrane-spanning 4-domains, subfamily A, member 12 O membrane-spanning 4-domains subfamily A member 12 20121230 -9606 54861 SNRK - HSNFRK HGNC:30598|MIM:612760|Ensembl:ENSG00000163788|HPRD:18082|Vega:OTTHUMG00000156491 3 3p22.1 SNF related kinase protein-coding SNRK SNF related kinase O SNF-1 related kinase|SNF-related serine/threonine-protein kinase|SNF1-related kinase 20121230 -9606 54862 CC2D1A - FREUD-1|Freud-1/Aki1|MRT3 HGNC:30237|MIM:610055|Ensembl:ENSG00000132024|HPRD:08616|Vega:OTTHUMG00000181852 19 19p13.12 coiled-coil and C2 domain containing 1A protein-coding CC2D1A coiled-coil and C2 domain containing 1A O Akt kinase-interacting protein 1|FRE under dual repression-binding protein 1|coiled-coil and C2 domain-containing protein 1A|five prime repressor element under dual repression-binding protein 1|five repressor element under dual repression-binding protein 1|mental retardation, nonsyndromic, autosomal recessive, 3|putative NF-kappa-B-activating protein 023N|putative NFkB activating protein 20121230 -9606 54863 TOR4A RP13-122B23.4 C9orf167 HGNC:25981|Ensembl:ENSG00000198113|HPRD:07886|Vega:OTTHUMG00000131779 9 9q34.3 torsin family 4, member A protein-coding TOR4A torsin family 4, member A O torsin family 4 member A|torsin family protein C9orf167|torsin-4A 20121230 -9606 54865 GPATCH4 RP11-284F21.4 GPATC4 HGNC:25982|Ensembl:ENSG00000160818|HPRD:13596|Vega:OTTHUMG00000033203 1 1q22 G patch domain containing 4 protein-coding GPATCH4 G patch domain containing 4 O G patch domain-containing protein 4 20121230 -9606 54866 PPP1R14D - CPI17-like|GBPI-1|GBPI1 HGNC:14953|MIM:613256|Ensembl:ENSG00000166143|HPRD:17891|Vega:OTTHUMG00000130064 15 15q15.1 protein phosphatase 1, regulatory (inhibitor) subunit 14D protein-coding PPP1R14D protein phosphatase 1, regulatory (inhibitor) subunit 14D O PKC-dependent PP1 inhibitory protein|gastrointestinal and brain-specific PP1-inhibitory protein 1|gut and brain phosphatase inhibitor 1|protein phosphatase 1 regulatory subunit 14D 20121230 -9606 54867 TMEM214 PP446 - HGNC:25983|Ensembl:ENSG00000119777|HPRD:07887|Vega:OTTHUMG00000151999 2 2p23.3 transmembrane protein 214 protein-coding TMEM214 transmembrane protein 214 O - 20121230 -9606 54868 TMEM104 - - HGNC:25984|Ensembl:ENSG00000109066|HPRD:07888|Vega:OTTHUMG00000179025 17 17q25.1 transmembrane protein 104 protein-coding TMEM104 transmembrane protein 104 O - 20121230 -9606 54869 EPS8L1 PP10566 DRC3|EPS8R1 HGNC:21295|MIM:614987|Ensembl:ENSG00000131037|HPRD:13276|Vega:OTTHUMG00000180513 19 19q13.42 EPS8-like 1 protein-coding EPS8L1 EPS8-like 1 O EPS8-like protein 1|EPS8-related protein 1|epidermal growth factor receptor kinase substrate 8-like protein 1|epidermal growth factor receptor pathway substrate 8-related protein 1 20121230 -9606 54870 QRICH1 - - HGNC:24713|Ensembl:ENSG00000198218|HPRD:13372|Vega:OTTHUMG00000156772 3 3p21.31 glutamine-rich 1 protein-coding QRICH1 glutamine-rich 1 O glutamine-rich protein 1 20121230 -9606 54872 PIGG UNQ1930/PRO4405 GPI7|LAS21|PRO4405|RLGS1930 HGNC:25985|Ensembl:ENSG00000174227|HPRD:07890|Vega:OTTHUMG00000112457 4 4p16.3 phosphatidylinositol glycan anchor biosynthesis, class G protein-coding PIGG phosphatidylinositol glycan anchor biosynthesis, class G O GPI ethanolamine phosphate transferase 2|GPI7 homolog|PIG-G|hGPI7|phosphatidylinositol glycan, class G|phosphatidylinositol-glycan biosynthesis class G protein 20121230 -9606 54873 PALMD - C1orf11|PALML HGNC:15846|MIM:610182|Ensembl:ENSG00000099260|HPRD:06673|Vega:OTTHUMG00000010764 1 1p22-p21 palmdelphin protein-coding PALMD palmdelphin O paralemnin-like protein 20121230 -9606 54874 FNBP1L - C1orf39|TOCA1 HGNC:20851|MIM:608848|Ensembl:ENSG00000137942|HPRD:12317|Vega:OTTHUMG00000010863 1 1p22.1 formin binding protein 1-like protein-coding FNBP1L formin binding protein 1-like O formin-binding protein 1-like|toca-1|transducer of Cdc42-dependent actin assembly 1|transducer of Cdc42-dependent actin assembly protein 1 20121230 -9606 54875 CNTLN RP11-163F8.4 C9orf101|C9orf39|RP11-340N12.1|bA340N12.1 HGNC:23432|MIM:611870|Ensembl:ENSG00000044459|HPRD:10800|Vega:OTTHUMG00000019597|Vega:OTTHUMG00000019599 9 9p22.2 centlein, centrosomal protein protein-coding CNTLN centlein, centrosomal protein O centlein|centrosomal protein 20121230 -9606 54876 DCAF16 - C4orf30 HGNC:25987|Ensembl:ENSG00000163257|HPRD:07891|Vega:OTTHUMG00000128536 4 4p15.31 DDB1 and CUL4 associated factor 16 protein-coding DCAF16 DDB1 and CUL4 associated factor 16 O DDB1- and CUL4-associated factor 16 20121230 -9606 54877 ZCCHC2 - C18orf49 HGNC:22916|Ensembl:ENSG00000141664|HPRD:11696|Vega:OTTHUMG00000180165 18 18q21.33 zinc finger, CCHC domain containing 2 protein-coding ZCCHC2 zinc finger, CCHC domain containing 2 O zinc finger CCHC domain-containing protein 2 20121230 -9606 54878 DPP8 MSTP097 DP8|DPRP1|MSTP141 HGNC:16490|MIM:606819|Ensembl:ENSG00000074603|HPRD:07076|Vega:OTTHUMG00000133150 15 15q22 dipeptidyl-peptidase 8 protein-coding DPP8 dipeptidyl-peptidase 8 O DPP VIII|DPRP-1|dipeptidyl peptidase 8|dipeptidyl peptidase IV-related protein 1|dipeptidyl peptidase IV-related protein-1|dipeptidyl peptidase VIII|dipeptidylpeptidase 8|prolyl dipeptidase DPP8 20121230 -9606 54879 ST7L RP4-770C6.2 FAM4B|ST7R|STLR HGNC:18441|Ensembl:ENSG00000007341|HPRD:18112|Vega:OTTHUMG00000011753 1 1p13.2 suppression of tumorigenicity 7 like protein-coding ST7L suppression of tumorigenicity 7 like O ST7-related protein|suppressor of tumorigenicity 7 protein-like|tumor suppressor ST7 like 20121230 -9606 54880 BCOR - ANOP2|MAA2|MCOPS2 HGNC:20893|MIM:300485|Ensembl:ENSG00000183337|HPRD:06458|Vega:OTTHUMG00000024100 X Xp11.4 BCL6 corepressor protein-coding BCOR BCL6 corepressor O BCL-6 corepressor|BCL-6 interacting corepressor|BCL6 co-repressor 20121230 -9606 54881 TEX10 RP11-208F1.2 Ipi1|bA208F1.2 HGNC:25988|Ensembl:ENSG00000136891|HPRD:15489|Vega:OTTHUMG00000020366 9 9q31.1 testis expressed 10 protein-coding TEX10 testis expressed 10 O testis expressed gene 10|testis expressed sequence 10|testis-expressed sequence 10 protein 20121230 -9606 54882 ANKHD1 PP2500 MASK|VBARP HGNC:24714|MIM:610500|Ensembl:ENSG00000131503|HPRD:16489|Vega:OTTHUMG00000161610 5 5q31.3 ankyrin repeat and KH domain containing 1 protein-coding ANKHD1 ankyrin repeat and KH domain containing 1 O HIV-1 Vpr-binding ankyrin repeat protein|ankyrin repeat and KH domain-containing protein 1|multiple ankyrin repeats, single KH-domain homolog 20121230 -9606 54883 CWC25 - CCDC49 HGNC:25989|Ensembl:ENSG00000108296|HPRD:07892|Vega:OTTHUMG00000178485 17 17q12 CWC25 spliceosome-associated protein homolog (S. cerevisiae) protein-coding CWC25 CWC25 spliceosome-associated protein homolog (S. cerevisiae) O coiled-coil domain-containing protein 49|pre-mRNA-splicing factor CWC25 homolog 20121230 -9606 54884 RETSAT UNQ439/PRO872 - HGNC:25991|Ensembl:ENSG00000042445|HPRD:07893|Vega:OTTHUMG00000154611 2 2p11.2 retinol saturase (all-trans-retinol 13,14-reductase) protein-coding RETSAT retinol saturase (all-trans-retinol 13,14-reductase) O PPAR-alpha-regulated and starvation-induced gene protein|all-trans-13,14-dihydroretinol saturase|all-trans-retinol 13,14-reductase 20121230 -9606 54885 TBC1D8B RP11-321G1.1 - HGNC:24715|Ensembl:ENSG00000133138|HPRD:06529|Vega:OTTHUMG00000022152 X Xq22.3 TBC1 domain family, member 8B (with GRAM domain) protein-coding TBC1D8B TBC1 domain family, member 8B (with GRAM domain) O RP11-321G1.1|TBC1 domain family member 8B 20121230 -9606 54886 LPPR1 RP11-35N6.1 PRG-3 Ensembl:ENSG00000148123|HPRD:17906|Vega:OTTHUMG00000020373 9 9q31.1 lipid phosphate phosphatase-related protein type 1 protein-coding - - - plasticity related gene 3|plasticity-related gene 3 protein 20121230 -9606 54887 UHRF1BP1 RP3-349A12.1 C6orf107|ICBP90|dJ349A12.1 HGNC:21216|Ensembl:ENSG00000065060|HPRD:12838|Vega:OTTHUMG00000014557 6 6p21 UHRF1 binding protein 1 protein-coding UHRF1BP1 UHRF1 binding protein 1 O ICBP90 binding protein 1|ICBP90-binding protein 1|UHRF1 (ICBP90) binding protein 1|UHRF1-binding protein 1|ubiquitin-like containing PHD and RING finger domains 1-binding protein 1 20121230 -9606 54888 NSUN2 - MISU|MRT5|SAKI|TRM4 HGNC:25994|MIM:610916|Ensembl:ENSG00000037474|HPRD:08620|Vega:OTTHUMG00000090455 5 5p15.31 NOP2/Sun RNA methyltransferase family, member 2 protein-coding NSUN2 NOP2/Sun RNA methyltransferase family, member 2 O 5-methycytoisine methyltransferase|Myc-induced SUN-domain-containing protein|NOL1/NOP2/Sun domain family 2|NOL1/NOP2/Sun domain family member 2|NOL1/NOP2/Sun domain family, member 2|NOP2/Sun domain family, member 2|hTrm4|myc-induced SUN domain-containing protein|substrate of AIM1/Aurora kinase B|tRNA (cytosine(34)-C(5))-methyltransferase|tRNA (cytosine-5-)-methyltransferase NSUN2|tRNA methyltransferase 4 homolog 20121230 -9606 54890 ALKBH5 - ABH5|OFOXD|OFOXD1 HGNC:25996|MIM:613303|Ensembl:ENSG00000091542|HPRD:08621|Vega:OTTHUMG00000059397 17 17p11.2|17p11.2 alkB, alkylation repair homolog 5 (E. coli) protein-coding ALKBH5 alkB, alkylation repair homolog 5 (E. coli) O alkylated DNA repair protein alkB homolog 5|oxoglutarate and iron-dependent oxygenase domain containing|probable alpha-ketoglutarate-dependent dioxygenase ABH5 20121230 -9606 54891 INO80D - - HGNC:25997|Ensembl:ENSG00000114933|HPRD:07894|Vega:OTTHUMG00000154649 2 2q33.3 INO80 complex subunit D protein-coding INO80D INO80 complex subunit D O - 20121230 -9606 54892 NCAPG2 tcag7.1258 CAP-G2|LUZP5|MTB|hCAP-G2 HGNC:21904|MIM:608532|Ensembl:ENSG00000146918|HPRD:10539|Vega:OTTHUMG00000151438 7 7q36.3 non-SMC condensin II complex, subunit G2 protein-coding NCAPG2 non-SMC condensin II complex, subunit G2 O chromosome-associated protein G2|condensin-2 complex subunit G2|leucine zipper protein 5|more than blood homolog 20121230 -9606 54893 MTMR10 - - HGNC:25999|Ensembl:ENSG00000166912|HPRD:07895|Vega:OTTHUMG00000175662 15 15q13.3 myotubularin related protein 10 protein-coding MTMR10 myotubularin related protein 10 O myotubularin-related protein 10 20121230 -9606 54894 RNF43 - RNF124|URCC HGNC:18505|MIM:612482|Ensembl:ENSG00000108375|HPRD:07896|Vega:OTTHUMG00000179077 17 17q22 ring finger protein 43 protein-coding RNF43 ring finger protein 43 O E3 ubiquitin-protein ligase RNF43 20121230 -9606 54896 PQLC2 RP4-657E11.5 - HGNC:26001|MIM:614760|Ensembl:ENSG00000040487|HPRD:17896|Vega:OTTHUMG00000002521 1 1p36.13 PQ loop repeat containing 2 protein-coding PQLC2 PQ loop repeat containing 2 O PQ-loop repeat-containing protein 2|lysosomal amino acid transporter 1 homolog 20121230 -9606 54897 CASZ1 RP4-734G22.2 CAS11|CST|SRG|ZNF693|dJ734G22.1 HGNC:26002|MIM:609895|Ensembl:ENSG00000130940|HPRD:07897|Vega:OTTHUMG00000002035 1 1p36.22 castor zinc finger 1 protein-coding CASZ1 castor zinc finger 1 O castor homolog 1, zinc finger|castor-related protein|survival-related|zinc finger protein 693|zinc finger protein castor homolog 1 20121230 -9606 54898 ELOVL2 - SSC2 HGNC:14416|MIM:611814|Ensembl:ENSG00000197977|HPRD:16857|Vega:OTTHUMG00000014252 6 6p24.2 ELOVL fatty acid elongase 2 protein-coding ELOVL2 ELOVL fatty acid elongase 2 O 3-keto acyl-CoA synthase ELOVL2|ELOVL FA elongase 2|elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 2|elongation of very long chain fatty acids protein 2 20121230 -9606 54899 PXK - MONaKA HGNC:23326|MIM:611450|Ensembl:ENSG00000168297|HPRD:17936|Vega:OTTHUMG00000159149 3 3p14.3 PX domain containing serine/threonine kinase protein-coding PXK PX domain containing serine/threonine kinase O PX domain-containing protein kinase-like protein|PX ser/thr kinase v2|PX serine/threonine kinase|modulator of Na,K-ATPase long form 20121230 -9606 54900 LAX1 - LAX HGNC:26005|Ensembl:ENSG00000122188|HPRD:08312|Vega:OTTHUMG00000035908 1 1q32.1 lymphocyte transmembrane adaptor 1 protein-coding LAX1 lymphocyte transmembrane adaptor 1 O LAT-like membrane associated protein|linker for activation of x cells|lymphocyte transmembrane adapter 1|membrane-associated adapter protein LAX 20121230 -9606 54901 CDKAL1 - - HGNC:21050|MIM:611259|Ensembl:ENSG00000145996|HPRD:13022|Vega:OTTHUMG00000014340 6 6p22.3 CDK5 regulatory subunit associated protein 1-like 1 protein-coding CDKAL1 CDK5 regulatory subunit associated protein 1-like 1 O tRNA-t(6)A37 methylthiotransferase|threonylcarbamoyladenosine tRNA methylthiotransferase 20121230 -9606 54902 TTC19 - 2010204O13Rik HGNC:26006|MIM:613814|Ensembl:ENSG00000011295|HPRD:07899|Vega:OTTHUMG00000059306 17 17p12 tetratricopeptide repeat domain 19 protein-coding TTC19 tetratricopeptide repeat domain 19 O TPR repeat protein 19|tetratricopeptide repeat protein 19, mitochondrial 20121230 -9606 54903 MKS1 - BBS13|MES|MKS|POC12 HGNC:7121|MIM:609883|Ensembl:ENSG00000011143|HPRD:07900|Vega:OTTHUMG00000133714 17 17q22 Meckel syndrome, type 1 protein-coding MKS1 Meckel syndrome, type 1 O FABB proteome-like protein|Meckel syndrome type 1 protein|POC12 centriolar protein homolog 20121230 -9606 54904 WHSC1L1 DC28 NSD3|pp14328 HGNC:12767|MIM:607083|Ensembl:ENSG00000147548|HPRD:06155|Vega:OTTHUMG00000165115 8 8p11.2 Wolf-Hirschhorn syndrome candidate 1-like 1 protein-coding WHSC1L1 Wolf-Hirschhorn syndrome candidate 1-like 1 O WHSC1-like 1 isoform 9 with methyltransferase activity to lysine|WHSC1-like protein 1|histone-lysine N-methyltransferase NSD3|nuclear SET domain-containing protein 3|protein whistle 20121230 -9606 54905 CYP2W1 - - HGNC:20243|Ensembl:ENSG00000073067|HPRD:07901|Vega:OTTHUMG00000074071 7 7p22.3 cytochrome P450, family 2, subfamily W, polypeptide 1 protein-coding CYP2W1 cytochrome P450, family 2, subfamily W, polypeptide 1 O CYPIIW1|cytochrome P450 2W1 20121230 -9606 54906 FAM208B - C10orf18|bA318E3.2 HGNC:23484|Ensembl:ENSG00000108021|Vega:OTTHUMG00000017605 10 10p15.1 family with sequence similarity 208, member B protein-coding FAM208B family with sequence similarity 208, member B O protein FAM208B|uncharacterized protein C10orf18 20121230 -9606 54908 SPDL1 - CCDC99 HGNC:26010|Ensembl:ENSG00000040275|HPRD:08623|Vega:OTTHUMG00000130438 5 5q35.1 spindle apparatus coiled-coil protein 1 protein-coding SPDL1 spindle apparatus coiled-coil protein 1 O arsenite-related gene 1 protein|coiled-coil domain containing 99|coiled-coil domain-containing protein 99|hSpindly|protein Spindly|rhabdomyosarcoma antigen MU-RMS-40.4A|rrhabdomyosarcoma antigen protein MU-RMS-40.4A|spindly homolog 20121230 -9606 54910 SEMA4C UNQ5855/PRO34487 M-SEMA-F|SEMACL1|SEMAF|SEMAI HGNC:10731|MIM:604462|Ensembl:ENSG00000168758|HPRD:07257|Vega:OTTHUMG00000130535 2 2q11.2 sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4C protein-coding SEMA4C sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4C O M-Sema F|semaphorin-4C 20121230 -9606 54913 RPP25 - - HGNC:30361|Ensembl:ENSG00000178718|HPRD:15276|Vega:OTTHUMG00000142822 15 15q24.2 ribonuclease P/MRP 25kDa subunit protein-coding RPP25 ribonuclease P/MRP 25kDa subunit O RNase P protein subunit p25|ribonuclease P 25kDa subunit|ribonuclease P protein subunit p25 20121230 -9606 54914 FOCAD - KIAA1797 HGNC:23377|MIM:614606|Ensembl:ENSG00000188352|HPRD:11162|Vega:OTTHUMG00000066930 9 9p21 focadhesin protein-coding FOCAD focadhesin O - 20121230 -9606 54915 YTHDF1 RP5-963E22.1 C20orf21 HGNC:15867|Ensembl:ENSG00000149658|HPRD:11691|Vega:OTTHUMG00000032955 20 20q13.33 YTH domain family, member 1 protein-coding YTHDF1 YTH domain family, member 1 O DACA-1|YTH domain family 1|YTH domain family protein 1|dermatomyositis associated with cancer putative autoantigen 1 20121230 -9606 54916 C14orf101 - - HGNC:20185|Ensembl:ENSG00000070269|HPRD:12624|Vega:OTTHUMG00000152337 14 14q22.3 chromosome 14 open reading frame 101 protein-coding C14orf101 chromosome 14 open reading frame 101 O UPF0679 protein C14orf101 20121230 -9606 54918 CMTM6 - CKLFSF6|PRO2219 HGNC:19177|MIM:607889|Ensembl:ENSG00000091317|HPRD:06987|Vega:OTTHUMG00000130747 3 3p22.3 CKLF-like MARVEL transmembrane domain containing 6 protein-coding CMTM6 CKLF-like MARVEL transmembrane domain containing 6 O CKLF-like MARVEL transmembrane domain-containing protein 6|chemokine-like factor super family 6|chemokine-like factor superfamily 6|chemokine-like factor superfamily member 6 20121230 -9606 54919 HEATR2 - CILD18 HGNC:26013|MIM:614864|Ensembl:ENSG00000164818|HPRD:07903|Vega:OTTHUMG00000151416 7 7p22.3 HEAT repeat containing 2 protein-coding HEATR2 HEAT repeat containing 2 O HEAT repeat-containing protein 2 20121230 -9606 54920 DUS2L - DUS2|SMM1|URLC8 HGNC:26014|MIM:609707|Ensembl:ENSG00000167264|HPRD:08624|Vega:OTTHUMG00000137538 16 16q22.1 dihydrouridine synthase 2-like, SMM1 homolog (S. cerevisiae) protein-coding DUS2L dihydrouridine synthase 2-like, SMM1 homolog (S. cerevisiae) O tRNA-dihydrouridine(20) synthase [NAD(P)+]-like|up-regulated in lung cancer protein 8 20121230 -9606 54921 CHTF8 - CTF8|DERPC HGNC:24353|MIM:613202|Ensembl:ENSG00000168802|HPRD:16797|Vega:OTTHUMG00000163909 16 16q22.1 CTF8, chromosome transmission fidelity factor 8 homolog (S. cerevisiae) protein-coding CHTF8 CTF8, chromosome transmission fidelity factor 8 homolog (S. cerevisiae) O chromosome transmission fidelity protein 8 homolog|decreased expression in renal and prostate cancer protein 20121230 -9606 54922 RASIP1 - RAIN HGNC:24716|MIM:609623|Ensembl:ENSG00000105538|HPRD:15214 19 19q13.33 Ras interacting protein 1 protein-coding RASIP1 Ras interacting protein 1 O ras-interacting protein 1 20121230 -9606 54923 LIME1 RP4-583P15.5 LIME|LP8067|dJ583P15.4 HGNC:26016|MIM:609809|Ensembl:ENSG00000203896|HPRD:07904|Vega:OTTHUMG00000032999 20 20q13.3 Lck interacting transmembrane adaptor 1 protein-coding LIME1 Lck interacting transmembrane adaptor 1 O lck-interacting membrane protein|lck-interacting molecule|lck-interacting transmembrane adapter 1 20121230 -9606 54925 ZNF434 HCCS5 - HGNC:20812|Ensembl:ENSG00000140987|HPRD:15791|Vega:OTTHUMG00000129357 16 16p13.3 zinc finger protein 434 protein-coding ZNF434 zinc finger protein 434 O HCCS-5|human cervical cancer suppressor gene 5 protein 20121230 -9606 54926 UBE2R2 RP11-176F3.4 CDC34B|E2-CDC34B|UBC3B HGNC:19907|MIM:612506|Ensembl:ENSG00000107341|HPRD:15602|Vega:OTTHUMG00000019797 9 9p13.3 ubiquitin-conjugating enzyme E2R 2 protein-coding UBE2R2 ubiquitin-conjugating enzyme E2R 2 O ubiquitin carrier protein R2|ubiquitin-conjugating enzyme E2 R2|ubiquitin-conjugating enzyme E2-CDC34B|ubiquitin-conjugating enzyme UBC3B|ubiquitin-protein ligase R2 20121230 -9606 54927 CHCHD3 - MINOS3|PPP1R22 HGNC:21906|MIM:613748|Ensembl:ENSG00000106554|HPRD:13044|Vega:OTTHUMG00000155231 7 7q33 coiled-coil-helix-coiled-coil-helix domain containing 3 protein-coding CHCHD3 coiled-coil-helix-coiled-coil-helix domain containing 3 O coiled-coil-helix-coiled-coil-helix domain-containing protein 3, mitochondrial|mitochondrial inner membrane organizing system 3|protein phosphatase 1, regulatory subunit 22 20121230 -9606 54928 IMPAD1 - GPAPP|IMP 3|IMP-3|IMPA3 HGNC:26019|MIM:614010|Ensembl:ENSG00000104331|HPRD:06531|Vega:OTTHUMG00000164415 8 8q12.1 inositol monophosphatase domain containing 1 protein-coding IMPAD1 inositol monophosphatase domain containing 1 O Golgi 3-prime phosphoadenosine 5-prime phosphate 3-prime phosphatase|IMPase 3|golgi-resident PAP phosphatase|inositol monophosphatase 3|inositol monophosphatase domain-containing protein 1|inositol-1(or 4)-monophosphatase 3|myo-inositol monophosphatase A3 20121230 -9606 54929 TMEM161A UNQ582/PRO1152 AROS-29 HGNC:26020|Ensembl:ENSG00000064545|HPRD:07905|Vega:OTTHUMG00000182217 19 19p13.11 transmembrane protein 161A protein-coding TMEM161A transmembrane protein 161A O - 20121230 -9606 54930 HAUS4 - C14orf94 HGNC:20163|MIM:613431|Ensembl:ENSG00000092036|HPRD:12663|Vega:OTTHUMG00000028710 14 14q11.2 HAUS augmin-like complex, subunit 4 protein-coding HAUS4 HAUS augmin-like complex, subunit 4 O HAUS augmin-like complex subunit 4|homologous to Augmin subunits 20121230 -9606 54931 TRMT10C - HNYA|MRPP1|RG9MTD1 HGNC:26022|Ensembl:ENSG00000174173|HPRD:15240|Vega:OTTHUMG00000159114 3 3q12.3 tRNA methyltransferase 10 homolog C (S. cerevisiae) protein-coding TRMT10C tRNA methyltransferase 10 homolog C (S. cerevisiae) O HBV pre-S2 trans-regulated protein 2|RNA (guanine-9-) methyltransferase domain containing 1|mitochondrial RNase P subunit 1|mitochondrial ribonuclease P protein 1|renal carcinoma antigen NY-REN-49 20121230 -9606 54932 EXD3 HBE269 mut-7 HGNC:26023|Ensembl:ENSG00000187609|HPRD:07906|Vega:OTTHUMG00000156149 9 9q34.3 exonuclease 3'-5' domain containing 3 protein-coding EXD3 exonuclease 3'-5' domain containing 3 O exonuclease 3'-5' domain-containing protein 3|probable exonuclease mut-7 homolog 20121230 -9606 54933 RHBDL2 - RRP2 HGNC:16083|MIM:608962|Ensembl:ENSG00000158315|HPRD:07151|Vega:OTTHUMG00000000487 1 1p34.3 rhomboid, veinlet-like 2 (Drosophila) protein-coding RHBDL2 rhomboid, veinlet-like 2 (Drosophila) O rhomboid (veinlet, Drosophila)-like 2|rhomboid protease 2|rhomboid-like protein 2|rhomboid-related protein 2 20121230 -9606 54934 KANSL2 - C12orf41|NSL2 HGNC:26024|Ensembl:ENSG00000139620|HPRD:07907|Vega:OTTHUMG00000170392 12 12q13.11 KAT8 regulatory NSL complex subunit 2 protein-coding KANSL2 KAT8 regulatory NSL complex subunit 2 O NSL complex protein NSL2|non-specific lethal 2 homolog 20121230 -9606 54935 DUSP23 - DUSP25|LDP-3|MOSP|RP11-190A12.1|VHZ HGNC:21480|Ensembl:ENSG00000158716|HPRD:07908|Vega:OTTHUMG00000022795 1 1q23.2 dual specificity phosphatase 23 protein-coding DUSP23 dual specificity phosphatase 23 O VH1-like member Z|VH1-like phosphatase Z|dual specificity protein phosphatase 23|low molecular mass dual specificity phosphatase 3|low-molecular-mass dual-specificity phosphatase 3 20121230 -9606 54936 ADPRHL2 - ARH3 HGNC:21304|MIM:610624|Ensembl:ENSG00000116863|HPRD:12432|Vega:OTTHUMG00000007628 1 1p34.3 ADP-ribosylhydrolase like 2 protein-coding ADPRHL2 ADP-ribosylhydrolase like 2 O ADP-ribosylhydrolase 3|[Protein ADP-ribosylarginine] hydrolase-like protein 2|poly(ADP-ribose) glycohydrolase ARH3|protein ADP-ribosylarginine hydrolase-like protein 2 20121230 -9606 54937 SOHLH2 - SPATA28|TEB1|bHLHe81 HGNC:26026|Ensembl:ENSG00000120669|HPRD:07910|Vega:OTTHUMG00000016728 13 13q13.3 spermatogenesis and oogenesis specific basic helix-loop-helix 2 protein-coding SOHLH2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 O spermatogenesis associated 28|spermatogenesis- and oogenesis-specific basic helix-loop-helix-containing protein 2 20121230 -9606 54938 SARS2 - SARS|SARSM|SERS|SYS|SerRS|SerRSmt|mtSerRS HGNC:17697|MIM:612804|Ensembl:ENSG00000104835|HPRD:15295 19 19q13.2 seryl-tRNA synthetase 2, mitochondrial protein-coding SARS2 seryl-tRNA synthetase 2, mitochondrial O mitochondrial seryl-tRNA synthetase|serine tRNA ligase 2, mitochondrial|serine--tRNA ligase, mitochondrial|serine-tRNA ligase, mitochondrial|seryl-tRNA synthetase, mitochondrial|seryl-tRNA(Ser/Sec) synthetase 20121230 -9606 54939 COMMD4 - - HGNC:26027|Ensembl:ENSG00000140365|HPRD:13083|Vega:OTTHUMG00000142823 15 15q24.2 COMM domain containing 4 protein-coding COMMD4 COMM domain containing 4 O COMM domain-containing protein 4 20121230 -9606 54940 OCIAD1 - ASRIJ|OCIA|TPA018 HGNC:16074|Ensembl:ENSG00000109180|HPRD:17654|Vega:OTTHUMG00000102095 4 4p11 OCIA domain containing 1 protein-coding OCIAD1 OCIA domain containing 1 O OCIA domain-containing protein 1|ovarian carcinoma immunoreactive antigen 20121230 -9606 54941 RNF125 - TRAC-1|TRAC1 HGNC:21150|MIM:610432|Ensembl:ENSG00000101695|HPRD:11500|Vega:OTTHUMG00000132266 18 18q12.1 ring finger protein 125, E3 ubiquitin protein ligase protein-coding RNF125 ring finger protein 125, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase RNF125|T-cell RING activation protein 1|T-cell ring protein identified in activation screen 20121230 -9606 54942 FAM206A - C9orf6|CG-8 HGNC:1364|Ensembl:ENSG00000119328|HPRD:07911|Vega:OTTHUMG00000020467 9 9q31.3 family with sequence similarity 206, member A protein-coding FAM206A family with sequence similarity 206, member A O protein FAM206A 20121230 -9606 54943 DNAJC28 - C21orf55|C21orf78 HGNC:1297|Ensembl:ENSG00000177692|HPRD:10752|Vega:OTTHUMG00000065531 21 21q22.11 DnaJ (Hsp40) homolog, subfamily C, member 28 protein-coding DNAJC28 DnaJ (Hsp40) homolog, subfamily C, member 28 O dnaJ homolog subfamily C member 28 20121230 -9606 54944 FLJ20464 - - - 22 22q12.2 uncharacterized protein FLJ20464 unknown - - - - 20121230 -9606 54946 SLC41A3 - SLC41A1-L2 HGNC:31046|MIM:610803|Ensembl:ENSG00000114544|HPRD:11580|Vega:OTTHUMG00000162678 3 3q21.2 solute carrier family 41, member 3 protein-coding SLC41A3 solute carrier family 41, member 3 O SLC41A1-like 2|solute carrier family 41 member 3 20121230 -9606 54947 LPCAT2 - AYTL1|LysoPAFAT HGNC:26032|MIM:612040|Ensembl:ENSG00000087253|HPRD:07913|Vega:OTTHUMG00000133238 16 16q12.2 lysophosphatidylcholine acyltransferase 2 protein-coding LPCAT2 lysophosphatidylcholine acyltransferase 2 O 1-acylglycerophosphocholine O-acyltransferase|1-alkylglycerophosphocholine O-acetyltransferase|LPC acyltransferase 2|LPCAT-2|acetyl-CoA:lyso-PAF acetyltransferase|acetyl-CoA:lyso-platelet-activating factor acetyltransferase|acyl-CoA:lysophosphatidylcholine acyltransferase 2|acyltransferase like 1|acyltransferase-like 1|lyso-PAF acetyltransferase|lyso-platelet-activating factor (PAF) acetyltransferase|lysoPC acyltransferase 2 20121230 -9606 54948 MRPL16 PNAS-111 L16mt|MRP-L16 HGNC:14476|MIM:611829|Ensembl:ENSG00000166902|HPRD:14743|Vega:OTTHUMG00000167410 11 11q12.1 mitochondrial ribosomal protein L16 protein-coding MRPL16 mitochondrial ribosomal protein L16 O 39S ribosomal protein L16, mitochondrial 20121230 -9606 54949 SDHAF2 - C11orf79|PGL2|SDH5 HGNC:26034|MIM:613019|Ensembl:ENSG00000167985|Ensembl:ENSG00000256591|HPRD:07915|Vega:OTTHUMG00000168148|Vega:OTTHUMG00000168279 11 11q12.2 succinate dehydrogenase complex assembly factor 2 protein-coding SDHAF2 succinate dehydrogenase complex assembly factor 2 O SDH assembly factor 2|hSDH5|succinate dehydrogenase assembly factor 2, mitochondrial|succinate dehydrogenase subunit 5, mitochondrial 20121230 -9606 54951 COMMD8 MDS022 - HGNC:26036|Ensembl:ENSG00000169019|HPRD:13086|Vega:OTTHUMG00000099435 4 4p12 COMM domain containing 8 protein-coding COMMD8 COMM domain containing 8 O COMM domain-containing protein 8 20121230 -9606 54952 TRNAU1AP - PRO1902|RP4-669K10.4|SECP43|TRSPAP1 HGNC:30813|Ensembl:ENSG00000180098|HPRD:18035|Vega:OTTHUMG00000003653 1 1p35.3 tRNA selenocysteine 1 associated protein 1 protein-coding TRNAU1AP tRNA selenocysteine 1 associated protein 1 O tRNA selenocysteine 1-associated protein 1|tRNA selenocysteine associated protein (SECP43)|tRNA selenocysteine associated protein 1|tRNA selenocysteine-associated protein 1 20121230 -9606 54953 C1orf27 - ODR4|TTG1|odr-4 HGNC:24299|MIM:609335|Ensembl:ENSG00000157181|HPRD:12723|Vega:OTTHUMG00000035579 1 1q25 chromosome 1 open reading frame 27 protein-coding C1orf27 chromosome 1 open reading frame 27 O LAG1-interacting protein|hODR-4|odorant response abnormal 4|protein odr-4 homolog|transactivated by recombinant transforming growth factor beta|transactivated by transforming growth factor beta protein 1 20121230 -9606 54954 FAM120C RP11-161N3.2 CXorf17|ORF34 HGNC:16949|MIM:300741|Ensembl:ENSG00000184083|HPRD:06480|Vega:OTTHUMG00000021625 X Xp11.22 family with sequence similarity 120C protein-coding FAM120C family with sequence similarity 120C O constitutive coactivator of PPAR-gamma-like protein 2|tumor antigen BJ-HCC-21 20121230 -9606 54955 C1orf109 - - HGNC:26039|MIM:614799|Ensembl:ENSG00000116922|HPRD:07918|Vega:OTTHUMG00000004323 1 1p34.3 chromosome 1 open reading frame 109 protein-coding C1orf109 chromosome 1 open reading frame 109 O uncharacterized protein C1orf109 20121230 -9606 54956 PARP16 - ARTD15|C15orf30|pART15 HGNC:26040|Ensembl:ENSG00000138617|HPRD:07919|Vega:OTTHUMG00000133138 15 15q22.31 poly (ADP-ribose) polymerase family, member 16 protein-coding PARP16 poly (ADP-ribose) polymerase family, member 16 O ADP-ribosyltransferase diphtheria toxin-like 15|PARP-16|mono [ADP-ribose] polymerase PARP16|poly [ADP-ribose] polymerase 16 20121230 -9606 54957 TXNL4B - DLP|Dim2 HGNC:26041|Ensembl:ENSG00000140830|HPRD:11655|Vega:OTTHUMG00000173453 16 16q22.2 thioredoxin-like 4B protein-coding TXNL4B thioredoxin-like 4B O Dim1-like protein|thioredoxin-like protein 4B 20121230 -9606 54958 TMEM160 - - HGNC:26042|Ensembl:ENSG00000130748|HPRD:07920 19 19q13.32 transmembrane protein 160 protein-coding TMEM160 transmembrane protein 160 O - 20121230 -9606 54959 ODAM - APIN HGNC:26043|MIM:614843|Ensembl:ENSG00000109205|HPRD:13376|Vega:OTTHUMG00000129406 4 4q13.3 odontogenic, ameloblast asssociated protein-coding ODAM odontogenic, ameloblast asssociated O odontogenic ameloblast-associated protein 20121230 -9606 54960 GEMIN8 - FAM51A1 HGNC:26044|Ensembl:ENSG00000046647|HPRD:06533|Vega:OTTHUMG00000021160 X Xp22.2 gem (nuclear organelle) associated protein 8 protein-coding GEMIN8 gem (nuclear organelle) associated protein 8 O family with sequence similarity 51, member A1|gem-associated protein 8|gemin-8 20121230 -9606 54961 SSH3 - SSH3L HGNC:30581|MIM:606780|Ensembl:ENSG00000172830|HPRD:09488|Vega:OTTHUMG00000167105 11 11q13.2 slingshot homolog 3 (Drosophila) protein-coding SSH3 slingshot homolog 3 (Drosophila) O SSH-3L|SSH-like protein 3|hSSH-3L|protein phosphatase Slingshot homolog 3|slingshot 3 20121230 -9606 54962 TIPIN - - HGNC:30750|MIM:610716|Ensembl:ENSG00000075131|HPRD:16917|Vega:OTTHUMG00000133188 15 15q22.31 TIMELESS interacting protein protein-coding TIPIN TIMELESS interacting protein O CSM3 homolog|TIMELESS-interacting protein 20121230 -9606 54963 UCKL1 RP4-591C20.1 UCK1-LIKE|UCK1L|URKL1 HGNC:15938|MIM:610866|Ensembl:ENSG00000198276|HPRD:15607|Vega:OTTHUMG00000033003 20 20q13.33 uridine-cytidine kinase 1-like 1 protein-coding UCKL1 uridine-cytidine kinase 1-like 1 O uridine kinase-like 1|uridine-cytidine kinase-like 1 20121230 -9606 54964 C1orf56 UNQ547/PRO1104 MENT|RP11-316M1.9 HGNC:26045|Ensembl:ENSG00000143443|HPRD:08625|Vega:OTTHUMG00000035159 1 1q21.3 chromosome 1 open reading frame 56 protein-coding C1orf56 chromosome 1 open reading frame 56 O methylated in normal thymocytes protein|protein MENT 20121230 -9606 54965 PIGX - - HGNC:26046|MIM:610276|Ensembl:ENSG00000163964|HPRD:07921|Vega:OTTHUMG00000155535 3 3q29 phosphatidylinositol glycan anchor biosynthesis, class X protein-coding PIGX phosphatidylinositol glycan anchor biosynthesis, class X O GPI-mannosyltransferase subunit|PIG-X|phosphatidylinositol-glycan biosynthesis class X protein 20121230 -9606 54967 CXorf48 RP13-565O16.1 BJHCC20A|CT55 HGNC:26047|Ensembl:ENSG00000169551|HPRD:06534|Vega:OTTHUMG00000022473 X Xq26.3 chromosome X open reading frame 48 protein-coding CXorf48 chromosome X open reading frame 48 O BRCA2-interacting protein|cancer/testis antigen 55|tumor antigen BJ-HCC-20|uncharacterized protein CXorf48 20121230 -9606 54968 TMEM70 - MC5DN2 HGNC:26050|MIM:612418|Ensembl:ENSG00000175606|HPRD:07923|Vega:OTTHUMG00000164502 8 8q21.11 transmembrane protein 70 protein-coding TMEM70 transmembrane protein 70 O transmembrane protein 70, mitochondrial 20121230 -9606 54969 C4orf27 - - HGNC:26051|Ensembl:ENSG00000056050|HPRD:07924|Vega:OTTHUMG00000160960 4 4q33 chromosome 4 open reading frame 27 protein-coding C4orf27 chromosome 4 open reading frame 27 O UPF0609 protein C4orf27 20121230 -9606 54970 TTC12 - TPARM HGNC:23700|MIM:610732|Ensembl:ENSG00000149292|HPRD:15577|Vega:OTTHUMG00000142832 11 11q23.2 tetratricopeptide repeat domain 12 protein-coding TTC12 tetratricopeptide repeat domain 12 O TPR repeat protein 12|tetratricopeptide repeat protein 12|tetratricopeptide repeat protein 12 variant 1|tetratricopeptide repeat protein 12 variant 2 20121230 -9606 54971 BANP - BEND1|SMAR1|SMARBP1 HGNC:13450|MIM:611564|Ensembl:ENSG00000172530|HPRD:16538|Vega:OTTHUMG00000137678 16 16q24 BTG3 associated nuclear protein protein-coding BANP BTG3 associated nuclear protein O BEN domain-containing protein 1|protein BANP|scaffold/matrix-associated region-1-binding protein 20121230 -9606 54972 TMEM132A - GBP|HSPA5BP1 HGNC:31092|Ensembl:ENSG00000006118|HPRD:11034|Vega:OTTHUMG00000167803 11 11q12.2 transmembrane protein 132A protein-coding TMEM132A transmembrane protein 132A O GRP78-binding protein|HSPA5-binding protein 1|glucose-regulated protein, 78kDa|heat shock 70kDa protein 5 (glucose-regulated protein, 78kDa) binding protein 1|heat shock 70kDa protein 5 binding protein 1 20121230 -9606 54973 CPSF3L RP5-890O3.8 CPSF73L|INT11|INTS11|RC-68|RC68 HGNC:26052|MIM:611354|Ensembl:ENSG00000127054|HPRD:13377|Vega:OTTHUMG00000003330 1 1p36.33 cleavage and polyadenylation specific factor 3-like protein-coding CPSF3L cleavage and polyadenylation specific factor 3-like O CPSF3-like protein|cleavage and polyadenylation-specific factor 3-like protein|integrator complex subunit 11|protein related to CPSF subunits of 68 kDa|related to CPSF subunits 68 kDa 20121230 -9606 54974 THG1L - ICF45|IHG-1 HGNC:26053|Ensembl:ENSG00000113272|HPRD:13726|Vega:OTTHUMG00000130254 5 5q33.3 tRNA-histidine guanylyltransferase 1-like (S. cerevisiae) protein-coding THG1L tRNA-histidine guanylyltransferase 1-like (S. cerevisiae) O induced by high glucose-1|interphase cytoplasmic foci protein 45|probable tRNA(His) guanylyltransferase 20121230 -9606 54976 C20orf27 RP5-1009E24.6 - HGNC:15873|Ensembl:ENSG00000101220|HPRD:16648|Vega:OTTHUMG00000031753 20 20p13 chromosome 20 open reading frame 27 protein-coding C20orf27 chromosome 20 open reading frame 27 O UPF0687 protein C20orf27 20121230 -9606 54977 SLC25A38 - - HGNC:26054|MIM:610819|Ensembl:ENSG00000144659|HPRD:07925|Vega:OTTHUMG00000131289 3 3p22.1 solute carrier family 25, member 38 protein-coding SLC25A38 solute carrier family 25, member 38 O solute carrier family 25 member 38 20121230 -9606 54978 SLC35F6 UNQ3047/PRO9863 ANT2BP|C2orf18|TANGO9 HGNC:26055|Ensembl:ENSG00000213699|HPRD:12808|Vega:OTTHUMG00000128407 2 2p23.3 solute carrier family 35, member F6 protein-coding SLC35F6 solute carrier family 35, member F6 O ANT2-binding protein|transmembrane protein C2orf18|transport and golgi organization 9 homolog 20121230 -9606 54979 HRASLS2 - PLA1/2-2 HGNC:17824|MIM:613866|Ensembl:ENSG00000133328|HPRD:13670|Vega:OTTHUMG00000167851 11 11q12.3 HRAS-like suppressor 2 protein-coding HRASLS2 HRAS-like suppressor 2 O - 20121230 -9606 54980 C2orf42 - - HGNC:26056|Ensembl:ENSG00000115998|HPRD:07927|Vega:OTTHUMG00000129642 2 2p13.3 chromosome 2 open reading frame 42 protein-coding C2orf42 chromosome 2 open reading frame 42 O uncharacterized protein C2orf42 20121230 -9606 54981 NMRK1 RP11-235O14.2 C9orf95|NRK1|bA235O14.2 HGNC:26057|MIM:608704|Ensembl:ENSG00000106733|HPRD:09868|Vega:OTTHUMG00000020034 9 9q21.13 nicotinamide riboside kinase 1 protein-coding NMRK1 nicotinamide riboside kinase 1 O NRK 1|RNK 1|nicotinic acid riboside kinase 1|nmR-K 1|ribosylnicotinamide kinase 1|ribosylnicotinic acid kinase 1 20121230 -9606 54982 CLN6 - CLN4A|HsT18960|nclf HGNC:2077|MIM:606725|Ensembl:ENSG00000128973|HPRD:05991|Vega:OTTHUMG00000133286 15 15q23 ceroid-lipofuscinosis, neuronal 6, late infantile, variant protein-coding CLN6 ceroid-lipofuscinosis, neuronal 6, late infantile, variant O ceroid-lipofuscinosis neuronal protein 6 20121230 -9606 54984 PINX1 - LPTL|LPTS HGNC:30046|MIM:606505|Ensembl:ENSG00000171056|Ensembl:ENSG00000254093|Ensembl:ENSG00000258724|HPRD:05934|Vega:OTTHUMG00000163808|Vega:OTTHUMG00000171787 8 8p23 PIN2/TERF1 interacting, telomerase inhibitor 1 protein-coding PINX1 PIN2/TERF1 interacting, telomerase inhibitor 1 O 67-11-3 protein|PIN2 interacting protein 1|PIN2-interacting protein 1|PIN2/TERF1-interacting telomerase inhibitor 1|TRF1-interacting protein 1|hepatocellular carcinoma-related putative tumor suppressor|liver-related putative tumor suppressor|pin2-interacting protein X1|protein 67-11-3 20121230 -9606 54985 HCFC1R1 - HPIP HGNC:21198|Ensembl:ENSG00000103145|HPRD:13636|Vega:OTTHUMG00000177450 16 16p13.3 host cell factor C1 regulator 1 (XPO1 dependent) protein-coding HCFC1R1 host cell factor C1 regulator 1 (XPO1 dependent) O HCF-1 beta-propeller interacting protein|HCF-1 beta-propeller-interacting protein|host cell factor C1 regulator 1|host cell factor C1 regulator 1 (XPO1 dependant) 20121230 -9606 54986 ULK4 hCG_1996673 FAM7C1|REC01035 HGNC:15784|Ensembl:ENSG00000168038|HPRD:07928|Vega:OTTHUMG00000156210 3 3p22.1 unc-51-like kinase 4 (C. elegans) protein-coding ULK4 unc-51-like kinase 4 (C. elegans) O serine/threonine-protein kinase ULK4 20121230 -9606 54987 C1orf123 RP5-1024G6.3 - HGNC:26059|Ensembl:ENSG00000162384|HPRD:07929|Vega:OTTHUMG00000008940 1 1p32.3 chromosome 1 open reading frame 123 protein-coding C1orf123 chromosome 1 open reading frame 123 O UPF0587 protein C1orf123 20121230 -9606 54988 ACSM5 - - HGNC:26060|MIM:614361|Ensembl:ENSG00000183549|HPRD:08627|Vega:OTTHUMG00000131551 16 16p12.3 acyl-CoA synthetase medium-chain family member 5 protein-coding ACSM5 acyl-CoA synthetase medium-chain family member 5 O acyl-coenzyme A synthetase ACSM5, mitochondrial 20121230 -9606 54989 ZNF770 - PRO1914 HGNC:26061|Ensembl:ENSG00000198146|HPRD:16918|Vega:OTTHUMG00000129689 15 15q14 zinc finger protein 770 protein-coding ZNF770 zinc finger protein 770 O - 20121230 -9606 54991 C1orf159 RP11-465B22.4 - HGNC:26062|Ensembl:ENSG00000131591|HPRD:07930|Vega:OTTHUMG00000000745 1 1p36.33 chromosome 1 open reading frame 159 protein-coding C1orf159 chromosome 1 open reading frame 159 O uncharacterized protein C1orf159 20121230 -9606 54993 ZSCAN2 - ZFP29|ZNF854 HGNC:20994|Ensembl:ENSG00000176371|HPRD:15898|Vega:OTTHUMG00000074027 15 15q25.2 zinc finger and SCAN domain containing 2 protein-coding ZSCAN2 zinc finger and SCAN domain containing 2 O zfp-29|zinc finger and SCAN domain-containing protein 2|zinc finger protein 29 homolog|zinc finger protein 854 20121230 -9606 54994 GID8 - C20orf11|TWA1 HGNC:15857|MIM:611625|Ensembl:ENSG00000101193|HPRD:12738|Vega:OTTHUMG00000032949 20 20q13.33 GID complex subunit 8 homolog (S. cerevisiae) protein-coding GID8 GID complex subunit 8 homolog (S. cerevisiae) O glucose-induced degradation protein 8 homolog|protein C20orf11|two hybrid-associated protein 1 with RanBPM 20121230 -9606 54995 OXSM - FASN2D|KASI|KS HGNC:26063|MIM:610324|Ensembl:ENSG00000151093|HPRD:07931|Vega:OTTHUMG00000130477 3 3p24.2 3-oxoacyl-ACP synthase, mitochondrial protein-coding OXSM 3-oxoacyl-ACP synthase, mitochondrial O 3-ketoacyl-acyl carrier protein synthase|3-oxoacyl-[acyl-carrier-protein] synthase, mitochondrial|3-oxoacyl-acyl-carrier-protein synthase|acyl-malonyl acyl carrier protein-condensing enzyme|beta-ketoacyl synthase|beta-ketoacyl-ACP synthase|type II mitochondrial beta-ketoacyl synthase 20121230 -9606 54996 MARC2 - MOSC2|RP11-270A6.1 HGNC:26064|MIM:614127|Ensembl:ENSG00000117791|HPRD:08628|Vega:OTTHUMG00000037354 1 1q41 mitochondrial amidoxime reducing component 2 protein-coding MARC2 mitochondrial amidoxime reducing component 2 O MOCO sulphurase C-terminal domain containing 2|MOSC domain-containing protein 2, mitochondrial|moco sulfurase C-terminal domain-containing protein 2|molybdenum cofactor sulfurase C-terminal domain-containing protein 2 20121230 -9606 54997 TESC - CHP3|TSC HGNC:26065|MIM:611585|Ensembl:ENSG00000088992|HPRD:11649|Vega:OTTHUMG00000144168 12 12q24.22 tescalcin protein-coding TESC tescalcin O calcineurin B homologous protein 3|calcineurin-like EF hand protein 3 20121230 -9606 54998 AURKAIP1 - AIP|AKIP HGNC:24114|MIM:609183|Ensembl:ENSG00000175756|HPRD:16457|Vega:OTTHUMG00000001413 1 1p36.33 aurora kinase A interacting protein 1 protein-coding AURKAIP1 aurora kinase A interacting protein 1 O AURKA-interacting protein|aurora kinase A-interacting protein|aurora-A kinase interacting protein 20121230 -9606 55000 TUG1 - LINC00080|NCRNA00080|TI-227H HGNC:26066|MIM:614971|HPRD:08629 22 22q12.2 taurine upregulated 1 (non-protein coding) miscRNA TUG1 taurine upregulated 1 (non-protein coding) O - 20121230 -9606 55001 TTC22 RP5-1043G4.4 - HGNC:26067|Ensembl:ENSG00000006555|HPRD:07932|Vega:OTTHUMG00000009916 1 1p32.3 tetratricopeptide repeat domain 22 protein-coding TTC22 tetratricopeptide repeat domain 22 O TPR repeat protein 22|tetratricopeptide repeat protein 22 20121230 -9606 55002 TMCO3 RP11-230F18.3 C13orf11 HGNC:20329|Ensembl:ENSG00000150403|HPRD:12612|Vega:OTTHUMG00000017389 13 13q34 transmembrane and coiled-coil domains 3 protein-coding TMCO3 transmembrane and coiled-coil domains 3 O B230339H12Rik|putative LAG1-interacting protein|transmembrane and coiled-coil domain-containing protein 3 20121230 -9606 55003 PAK1IP1 - MAK11|PIP1|RP11-421M1.5|WDR84|bA421M1.5|hPIP1 HGNC:20882|MIM:607811|Ensembl:ENSG00000111845|HPRD:07424|Vega:OTTHUMG00000014245 6 6p24.2 PAK1 interacting protein 1 protein-coding PAK1IP1 PAK1 interacting protein 1 O PAK/PLC-interacting protein 1|PAK1-interacting protein 1|WD repeat-containing protein 84|p21-activated protein kinase-interacting protein 1 20121230 -9606 55004 LAMTOR1 PP7157 C11orf59|PDRO|Ragulator1|p18|p27RF-Rho HGNC:26068|MIM:613510|Ensembl:ENSG00000149357|HPRD:07933|Vega:OTTHUMG00000167869 11 11q13.4 late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 protein-coding LAMTOR1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 O RhoA activator C11orf59|late endosomal/lysosomal adaptor and MAPK and MTOR activator 1|lipid raft adaptor protein p18|p27Kip1-releasing factor from RhoA|p27kip1 releasing factor from RhoA|protein associated with DRMs and endosomes|ragulator complex protein LAMTOR1|ragulator complex protein PDRO 20121230 -9606 55005 RMND1 RP11-351K16.6 C6orf96|COXPD11|RMD1|bA351K16|bA351K16.3 HGNC:21176|MIM:614917|Ensembl:ENSG00000155906|HPRD:09858|Vega:OTTHUMG00000015837 6 6q25.1 required for meiotic nuclear division 1 homolog (S. cerevisiae) protein-coding RMND1 required for meiotic nuclear division 1 homolog (S. cerevisiae) O required for meiotic nuclear division protein 1 homolog 20121230 -9606 55006 TRMT61B - - HGNC:26070|Ensembl:ENSG00000171103|HPRD:07935|Vega:OTTHUMG00000128433 2 2p23.2 tRNA methyltransferase 61 homolog B (S. cerevisiae) protein-coding TRMT61B tRNA methyltransferase 61 homolog B (S. cerevisiae) O potential tRNA (adenine(58)-N(1))-methyltransferase catalytic subunit TRMT61B|potential tRNA (adenine-N(1)-)-methyltransferase catalytic subunit TRMT61B 20121230 -9606 55007 FAM118A CTA-268H5.11-003 C22orf8 HGNC:1313|Ensembl:ENSG00000100376|HPRD:07936|Vega:OTTHUMG00000151338 22 22q13 family with sequence similarity 118, member A protein-coding FAM118A family with sequence similarity 118, member A O bK268H5.C22.4|protein FAM118A 20121230 -9606 55008 HERC6 - - HGNC:26072|MIM:609249|Ensembl:ENSG00000138642|HPRD:13647|Vega:OTTHUMG00000160983 4 4q22.1 HECT and RLD domain containing E3 ubiquitin protein ligase family member 6 protein-coding HERC6 HECT and RLD domain containing E3 ubiquitin protein ligase family member 6 O HECT domain and RCC1-like domain-containing protein 6|hect domain and RLD 6|potential ubiquitin ligase|probable E3 ubiquitin-protein ligase HERC6 20121230 -9606 55009 C19orf24 - - HGNC:26073|Ensembl:ENSG00000228300|HPRD:12702|Vega:OTTHUMG00000153928 19 19p13.3 chromosome 19 open reading frame 24 protein-coding C19orf24 chromosome 19 open reading frame 24 O uncharacterized membrane protein C19orf24 20121230 -9606 55010 PARPBP - AROM|C12orf48|PARI HGNC:26074|MIM:613687|Ensembl:ENSG00000185480|HPRD:07937|Vega:OTTHUMG00000167923 12 12q23.2 PARP1 binding protein protein-coding PARPBP PARP1 binding protein O PARP-1 binding protein|PARP1-binding protein|PCNA-interacting partner 20121230 -9606 55011 PIH1D1 - NOP17 HGNC:26075|MIM:611480|Ensembl:ENSG00000104872|HPRD:07938 19 19q13.33 PIH1 domain containing 1 protein-coding PIH1D1 PIH1 domain containing 1 O PIH1 domain-containing protein 1|nucleolar protein 17 homolog 20121230 -9606 55012 PPP2R3C - C14orf10|G4-1|G5pr HGNC:17485|Ensembl:ENSG00000092020|HPRD:12622|Vega:OTTHUMG00000140224 14 14q13.2 protein phosphatase 2, regulatory subunit B'', gamma protein-coding PPP2R3C protein phosphatase 2, regulatory subunit B'', gamma O protein phosphatase 2 (formerly 2A), regulatory subunit B'', gamma|protein phosphatase subunit G5PR|rhabdomyosarcoma antigen MU-RMS-40.6A|rhabdomyosarcoma antigen MU-RMS-40.6A/6C|rhabdomyosarcoma antigen Mu-RMS-40.6C|serine/threonine-protein phosphatase 2A regulatory subunit B'' subunit gamma 20121230 -9606 55013 CCDC109B - - HGNC:26076|Ensembl:ENSG00000005059|HPRD:07939|Vega:OTTHUMG00000161103 4 4q25 coiled-coil domain containing 109B protein-coding CCDC109B coiled-coil domain containing 109B O coiled-coil domain-containing protein 109B 20121230 -9606 55014 STX17 - - HGNC:11432|MIM:604204|Ensembl:ENSG00000136874|HPRD:05013|Vega:OTTHUMG00000020359 9 9q31.1 syntaxin 17 protein-coding STX17 syntaxin 17 O syntaxin-17 20121230 -9606 55015 PRPF39 - - HGNC:20314|MIM:614907|Ensembl:ENSG00000185246|HPRD:17913|Vega:OTTHUMG00000140265 14 14q21.2 PRP39 pre-mRNA processing factor 39 homolog (S. cerevisiae) protein-coding PRPF39 PRP39 pre-mRNA processing factor 39 homolog (S. cerevisiae) O PRP39 homolog|pre-mRNA-processing factor 39 20121230 -9606 55016 MARCH1 - MARCH-I|RNF171 HGNC:26077|MIM:613331|Ensembl:ENSG00000145416|HPRD:07940|Vega:OTTHUMG00000161204 4 4q32.2 membrane-associated ring finger (C3HC4) 1, E3 ubiquitin protein ligase protein-coding MARCH1 membrane-associated ring finger (C3HC4) 1, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase MARCH1|RING finger protein 171|membrane-associated RING finger protein 1|membrane-associated RING-CH protein I 20121230 -9606 55017 C14orf119 My028 - HGNC:20270|Ensembl:ENSG00000179933|HPRD:16595|Vega:OTTHUMG00000028717 14 14q11.2 chromosome 14 open reading frame 119 protein-coding C14orf119 chromosome 14 open reading frame 119 O My028 protein|uncharacterized protein C14orf119 20121230 -9606 55018 LINC00483 - C17orf73 HGNC:26080|HPRD:07942 17 17q21.33 long intergenic non-protein coding RNA 483 miscRNA LINC00483 long intergenic non-protein coding RNA 483 O - 20121230 -9606 55020 TTC38 LL22NC03-5H6.5 - HGNC:26082|Ensembl:ENSG00000075234|HPRD:07943|Vega:OTTHUMG00000150494 22 22q13 tetratricopeptide repeat domain 38 protein-coding TTC38 tetratricopeptide repeat domain 38 O TPR repeat protein 38|tetratricopeptide repeat protein 38 20121230 -9606 55022 PID1 HMFN2073 NYGGF4|P-CLI1|PCLI1 HGNC:26084|MIM:612930|Ensembl:ENSG00000153823|HPRD:07944|Vega:OTTHUMG00000133191 2 2q36.3 phosphotyrosine interaction domain containing 1 protein-coding PID1 phosphotyrosine interaction domain containing 1 O PTB-containing, cubilin and LRP1-interacting protein|phosphotyrosine interaction domain-containing protein 1 20121230 -9606 55023 PHIP RP11-173D14.2 BRWD2|DCAF14|WDR11|ndrp HGNC:15673|MIM:612870|Ensembl:ENSG00000146247|HPRD:10152|Vega:OTTHUMG00000015071 6 6q14 pleckstrin homology domain interacting protein protein-coding PHIP pleckstrin homology domain interacting protein O DDB1 and CUL4 associated factor 14|IRS-1 PH domain-binding protein|PH-interacting protein|WD repeat-containing protein 11 20121230 -9606 55024 BANK1 - BANK HGNC:18233|MIM:610292|Ensembl:ENSG00000153064|HPRD:09819|Vega:OTTHUMG00000160958 4 4q24 B-cell scaffold protein with ankyrin repeats 1 protein-coding BANK1 B-cell scaffold protein with ankyrin repeats 1 O B-cell scaffold protein with ankyrin repeats 20121230 -9606 55025 FLJ20712 - - - 7 7p14.3 uncharacterized FLJ20712 unknown - - - - 20121230 -9606 55026 TMEM255A RP3-525N14.6 FAM70A HGNC:26086|Ensembl:ENSG00000125355|HPRD:06535|Vega:OTTHUMG00000022298 X Xq24 transmembrane protein 255A protein-coding TMEM255A transmembrane protein 255A O family with sequence similarity 70, member A|protein FAM70A 20121230 -9606 55027 HEATR3 - SYO1 HGNC:26087|MIM:614951|Ensembl:ENSG00000155393|HPRD:07945|Vega:OTTHUMG00000133174 16 16q12.1 HEAT repeat containing 3 protein-coding HEATR3 HEAT repeat containing 3 O HEAT repeat-containing protein 3 20121230 -9606 55028 C17orf80 HLC8 HLC-8|MIG3|SPEP1 HGNC:29601|Ensembl:ENSG00000141219|HPRD:17108|Vega:OTTHUMG00000178417 17 17q25.1 chromosome 17 open reading frame 80 protein-coding C17orf80 chromosome 17 open reading frame 80 O cell migration-inducing gene 3 protein|human lung cancer oncogene 8 protein|lung cancer-related protein 8|migration-inducing protein 3|sperm-expressed protein 1|uncharacterized protein C17orf80 20121230 -9606 55030 FBXO34 CGI-301 Fbx34 HGNC:20201|MIM:609104|Ensembl:ENSG00000178974|HPRD:16442|Vega:OTTHUMG00000171033 14 14q22.3 F-box protein 34 protein-coding FBXO34 F-box protein 34 O F-box only protein 34|protein CGI-301 20121230 -9606 55031 USP47 - TRFP HGNC:20076|MIM:614460|Ensembl:ENSG00000170242|Vega:OTTHUMG00000165685 11 11p15.3 ubiquitin specific peptidase 47 protein-coding USP47 ubiquitin specific peptidase 47 O Trf (TATA binding protein-related factor)-proximal homolog|deubiquitinating enzyme 47|ubiquitin carboxyl-terminal hydrolase 47|ubiquitin specific protease 47|ubiquitin thioesterase 47|ubiquitin thiolesterase 47|ubiquitin-specific-processing protease 47 20121230 -9606 55032 SLC35A5 UNQ164/PRO190 - HGNC:20792|Ensembl:ENSG00000138459|HPRD:11575|Vega:OTTHUMG00000159263 3 3q13.2 solute carrier family 35, member A5 protein-coding SLC35A5 solute carrier family 35, member A5 O probable UDP-sugar transporter protein SLC35A5 20121230 -9606 55033 FKBP14 UNQ322/PRO381 EDSKMH|FKBP22|IPBP12 HGNC:18625|MIM:614505|Ensembl:ENSG00000106080|HPRD:16898|Vega:OTTHUMG00000023442 7 7p14.3 FK506 binding protein 14, 22 kDa protein-coding FKBP14 FK506 binding protein 14, 22 kDa O 22 kDa FK506-binding protein|22 kDa FKBP|FK506-binding protein 14|FKBP-22|PPIase FKBP14|peptidyl-prolyl cis-trans isomerase FKBP14|rotamase 20121230 -9606 55034 MOCOS - HMCS|MCS|MOS HGNC:18234|MIM:613274|Ensembl:ENSG00000075643|HPRD:17585|Vega:OTTHUMG00000132590 18 18q12 molybdenum cofactor sulfurase protein-coding MOCOS molybdenum cofactor sulfurase O moCo sulfurase 20121230 -9606 55035 NOL8 RP11-62C3.9 C9orf34|NOP132|bA62C3.3|bA62C3.4 HGNC:23387|MIM:611534|Ensembl:ENSG00000198000|HPRD:11397|Vega:OTTHUMG00000020221 9 9q22.31 nucleolar protein 8 protein-coding NOL8 nucleolar protein 8 O nucleolar protein Nop132 20121230 -9606 55036 CCDC40 - CILD15 HGNC:26090|MIM:613799|Ensembl:ENSG00000141519|Vega:OTTHUMG00000132707 17 17q25.3 coiled-coil domain containing 40 protein-coding CCDC40 coiled-coil domain containing 40 O coiled-coil domain-containing protein 40 20121230 -9606 55037 PTCD3 TRG15 - HGNC:24717|MIM:614918|Ensembl:ENSG00000132300|HPRD:08631|Vega:OTTHUMG00000153168 2 2p11.2 pentatricopeptide repeat domain 3 protein-coding PTCD3 pentatricopeptide repeat domain 3 O TRG-15|pentatricopeptide repeat-containing protein 3, mitochondrial|transformation-related gene 15 protein 20121230 -9606 55038 CDCA4 - HEPP|SEI-3/HEPP HGNC:14625|MIM:612270|Ensembl:ENSG00000170779|HPRD:13015|Vega:OTTHUMG00000170767 14 14q32.33 cell division cycle associated 4 protein-coding CDCA4 cell division cycle associated 4 O cell division cycle-associated protein 4|hematopoietic progenitor protein 20121230 -9606 55039 TRMT12 - TRM12|TYW2 HGNC:26091|MIM:611244|Ensembl:ENSG00000183665|HPRD:07947|Vega:OTTHUMG00000165022 8 8q24.13 tRNA methyltransferase 12 homolog (S. cerevisiae) protein-coding TRMT12 tRNA methyltransferase 12 homolog (S. cerevisiae) O alpha-amino-alpha-carboxypropyl transferase TYW2|homolog of yeast tRNA methyltransferase|tRNA methyltranferase 12 homolog|tRNA wybutosine-synthesizing protein 2 homolog|tRNA-yW synthesizing protein 2|tRNA-yW-synthesizing protein 2 20121230 -9606 55040 EPN3 - - HGNC:18235|MIM:607264|Ensembl:ENSG00000049283|HPRD:06272|Vega:OTTHUMG00000162155 17 17q21.33 epsin 3 protein-coding EPN3 epsin 3 O EPS-15-interacting protein 3|epsin-3 20121230 -9606 55041 PLEKHB2 - EVT2 HGNC:19236|Ensembl:ENSG00000115762|HPRD:15144|Vega:OTTHUMG00000131656 2 2q21.1 pleckstrin homology domain containing, family B (evectins) member 2 protein-coding PLEKHB2 pleckstrin homology domain containing, family B (evectins) member 2 O PH domain-containing family B member 2|evectin-2|pleckstrin homology domain-containing family B member 2 20121230 -9606 55048 VPS37C - - HGNC:26097|MIM:610038|Ensembl:ENSG00000167987|HPRD:15652|Vega:OTTHUMG00000167826 11 11q12.2 vacuolar protein sorting 37 homolog C (S. cerevisiae) protein-coding VPS37C vacuolar protein sorting 37 homolog C (S. cerevisiae) O ESCRT-I complex subunit VPS37C|hVps37C|vacuolar protein sorting 37C|vacuolar protein sorting-associated protein 37C 20121230 -9606 55049 C19orf60 - - HGNC:26098|Ensembl:ENSG00000006015|HPRD:07948 19 19p13.11 chromosome 19 open reading frame 60 protein-coding C19orf60 chromosome 19 open reading frame 60 O uncharacterized protein C19orf60 20121230 -9606 55051 NRDE2 - C14orf102 HGNC:20186|Ensembl:ENSG00000119720|HPRD:12625|Vega:OTTHUMG00000171020 14 14q32.11 NRDE-2, necessary for RNA interference, domain containing protein-coding NRDE2 NRDE-2, necessary for RNA interference, domain containing O UPF0614 protein C14orf102 20121230 -9606 55052 MRPL20 hCG_20417 L20mt|MRP-L20 HGNC:14478|MIM:611833|Ensembl:ENSG00000242485|HPRD:14746|Vega:OTTHUMG00000002916 1 1p36.3-p36.2 mitochondrial ribosomal protein L20 protein-coding MRPL20 mitochondrial ribosomal protein L20 O 39S ribosomal protein L20, mitochondrial 20121230 -9606 55054 ATG16L1 hCG_1817841 APG16L|ATG16A|ATG16L|IBD10|WDR30 HGNC:21498|MIM:610767|Ensembl:ENSG00000085978|HPRD:16498|Vega:OTTHUMG00000133619 2 2q37.1 autophagy related 16-like 1 (S. cerevisiae) protein-coding ATG16L1 autophagy related 16-like 1 (S. cerevisiae) O APG16L beta|ATG16 autophagy related 16-like 1|WD repeat domain 30|autophagy-related protein 16-1 20121230 -9606 55055 ZWILCH - KNTC1AP|hZwilch HGNC:25468|MIM:609984|Ensembl:ENSG00000174442|HPRD:07640|Vega:OTTHUMG00000133194 15 15q22.31 zwilch kinetochore protein protein-coding ZWILCH zwilch kinetochore protein O Zwilch, kinetochore associated, homolog|homolog of Drosophila Zwilch|protein zwilch homolog 20121230 -9606 55056 FLJ10038 - - - 15 15q21.2 uncharacterized protein FLJ10038 miscRNA - - - - 20121230 -9606 55057 AIM1L RP11-569G9.5 CRYBG2 HGNC:17295|Ensembl:ENSG00000176092|HPRD:09794|Vega:OTTHUMG00000003490 1 1p36.11 absent in melanoma 1-like protein-coding AIM1L absent in melanoma 1-like O absent in melanoma 1-like protein|beta-gamma crystallin domain containing 2|beta/gamma crystallin domain-containing protein 2 20121230 -9606 55061 SUSD4 RP11-239E10.4 PRO222 HGNC:25470|Ensembl:ENSG00000143502|HPRD:07641|Vega:OTTHUMG00000037936 1 1q41 sushi domain containing 4 protein-coding SUSD4 sushi domain containing 4 O YHGM196|sushi domain-containing protein 4 20121230 -9606 55062 WIPI1 - ATG18|ATG18A|WIPI49 HGNC:25471|MIM:609224|Ensembl:ENSG00000070540|HPRD:08540|Vega:OTTHUMG00000179873 17 17q24.2 WD repeat domain, phosphoinositide interacting 1 protein-coding WIPI1 WD repeat domain, phosphoinositide interacting 1 O WD repeat domain phosphoinositide-interacting protein 1|WD40 repeat protein Interacting with phosphoInositides of 49kDa|WD40 repeat protein interacting with phosphoinositides of 49 kDa|WIPI 49 kDa|WIPI-1 alpha|atg18 protein homolog 20121230 -9606 55063 ZCWPW1 - ZCW1 HGNC:23486|Ensembl:ENSG00000078487|HPRD:15706|Vega:OTTHUMG00000159537 7 7q22.1 zinc finger, CW type with PWWP domain 1 protein-coding ZCWPW1 zinc finger, CW type with PWWP domain 1 O zinc finger CW-type PWWP domain protein 1|zinc finger, CW-type with PWWP domain 1 20121230 -9606 55064 SPATA6L RP11-280I16.2 C9orf68|bA6J24.2 HGNC:25472|Ensembl:ENSG00000106686|HPRD:12973|Vega:OTTHUMG00000019469 9 9p24.2 spermatogenesis associated 6-like protein-coding SPATA6L spermatogenesis associated 6-like O spermatogenesis associated 6-like protein 20121230 -9606 55065 SLC52A1 - GPCR42|GPR172B|PAR2|RFT1|RFVT1|hRFT1 HGNC:30225|MIM:607883|Ensembl:ENSG00000132517|HPRD:07432|Vega:OTTHUMG00000099448 17 17p13.2 solute carrier family 52, riboflavin transporter, member 1 protein-coding SLC52A1 solute carrier family 52, riboflavin transporter, member 1 O G protein-coupled receptor 172B|G-protein coupled receptor GPCR42|PERV-A receptor 2|porcine endogenous retrovirus A receptor 2|riboflavin transporter 1 20121230 -9606 55066 PDPR - PDP3 HGNC:30264|Ensembl:ENSG00000090857|HPRD:17832|Vega:OTTHUMG00000176963 16 16q22.1 pyruvate dehydrogenase phosphatase regulatory subunit protein-coding PDPR pyruvate dehydrogenase phosphatase regulatory subunit O pyruvate dehydrogenase phosphatase regulatory subunit, mitochondrial 20121230 -9606 55068 ENOX1 RP11-301I17.1 CNOX|PIG38|bA64J21.1|cCNOX HGNC:25474|MIM:610914|Ensembl:ENSG00000120658|HPRD:07644|Vega:OTTHUMG00000016818 13 13q14.11 ecto-NOX disulfide-thiol exchanger 1 protein-coding ENOX1 ecto-NOX disulfide-thiol exchanger 1 O candidate growth-related and time keeping constitutive hydroquinone (NADH) oxidase|candidate growth-related and time keeping constitutive hydroquinone [NADH] oxidase|cell proliferation-inducing gene 38 protein|constitutive Ecto-NOX 20121230 -9606 55069 TMEM248 - C7orf42 HGNC:25476|Ensembl:ENSG00000106609|HPRD:08541|Vega:OTTHUMG00000129553 7 7q11.21 transmembrane protein 248 protein-coding TMEM248 transmembrane protein 248 O UPF0458 protein C7orf42 20121230 -9606 55070 DET1 - - HGNC:25477|MIM:608727|Ensembl:ENSG00000140543|HPRD:13140|Vega:OTTHUMG00000171851 15 15q25.3 de-etiolated homolog 1 (Arabidopsis) protein-coding DET1 de-etiolated homolog 1 (Arabidopsis) O DET1 homolog|de-etiolated 1|de-etiolated-1 homolog 20121230 -9606 55071 C9orf40 - - HGNC:23433|Ensembl:ENSG00000135045|HPRD:12957|Vega:OTTHUMG00000020031 9 9q21.13 chromosome 9 open reading frame 40 protein-coding C9orf40 chromosome 9 open reading frame 40 O uncharacterized protein C9orf40 20121230 -9606 55072 RNF31 - HOIP|ZIBRA HGNC:16031|MIM:612487|Ensembl:ENSG00000092098|HPRD:11516|Vega:OTTHUMG00000028798 14 14q11.2 ring finger protein 31 protein-coding RNF31 ring finger protein 31 O E3 ubiquitin-protein ligase RNF31|HOIL-1-interacting protein|zinc in-between-RING-finger ubiquitin-associated domain protein 20121230 -9606 55073 LRRC37A4P - LRRC37A4 HGNC:25479|HPRD:07646 17 17q21.31 leucine rich repeat containing 37, member A4, pseudogene pseudo LRRC37A4P leucine rich repeat containing 37, member A4, pseudogene O - 20121230 -9606 55074 OXR1 Nbla00307 - HGNC:15822|MIM:605609|Ensembl:ENSG00000164830|HPRD:16126|Vega:OTTHUMG00000167682 8 8q23 oxidation resistance 1 protein-coding OXR1 oxidation resistance 1 O oxidation resistance protein 1|putative protein product of Nbla00307 20121230 -9606 55075 UACA - NUCLING HGNC:15947|MIM:612516|Ensembl:ENSG00000137831|HPRD:11657|Vega:OTTHUMG00000133363 15 15q22-q24 uveal autoantigen with coiled-coil domains and ankyrin repeats protein-coding UACA uveal autoantigen with coiled-coil domains and ankyrin repeats O nuclear membrane binding protein|uveal autoantigen with coiled coil domains and ankyrin repeats 20121230 -9606 55076 TMEM45A - DERP7 HGNC:25480|Ensembl:ENSG00000181458|HPRD:07647|Vega:OTTHUMG00000150327 3 3q12.2 transmembrane protein 45A protein-coding TMEM45A transmembrane protein 45A O DNA polymerase-transactivated protein 4|dermal papilla derived protein 7|dermal papilla-derived protein 7 20121230 -9606 55079 FEZF2 FKSG36 FEZ|FEZL|TOF|ZFP312|ZNF312 HGNC:13506|MIM:607414|Ensembl:ENSG00000153266|HPRD:07596|Vega:OTTHUMG00000158705 3 3p14.2 FEZ family zinc finger 2 protein-coding FEZF2 FEZ family zinc finger 2 O fez family zinc finger protein 2|forebrain embryonic zinc finger-like protein 2|zinc finger protein 312 20121230 -9606 55080 TAPBPL - TAPBP-R|TAPBPR HGNC:30683|MIM:607081|Ensembl:ENSG00000139192|HPRD:06153|Vega:OTTHUMG00000168317 12 12p13.31 TAP binding protein-like protein-coding TAPBPL TAP binding protein-like O TAP binding protein related|TAP-binding protein-like|TAP-binding protein-related protein|TAPASIN-R|tapasin-like|tapasin-related protein 20121230 -9606 55081 IFT57 - ESRRBL1|HIPPI|MHS4R2 HGNC:17367|MIM:606621|Ensembl:ENSG00000114446|HPRD:09430|Vega:OTTHUMG00000159223 3 3q13.13 intraflagellar transport 57 homolog (Chlamydomonas) protein-coding IFT57 intraflagellar transport 57 homolog (Chlamydomonas) O HIP1 protein interactor|HIP1-interacting protein|dermal papilla-derived protein 8|estrogen-related receptor beta like 1|estrogen-related receptor beta-like protein 1|huntingtin interacting protein-1 interacting protein|intraflagellar transport protein 57 homolog 20121230 -9606 55082 ARGLU1 RP11-297I6.1 - HGNC:25482|MIM:614046|Ensembl:ENSG00000134884|HPRD:07648|Vega:OTTHUMG00000017321 13 13q33.3 arginine and glutamate rich 1 protein-coding ARGLU1 arginine and glutamate rich 1 O arginine and glutamate-rich protein 1 20121230 -9606 55083 KIF26B hCG_21329 - HGNC:25484|MIM:614026|Ensembl:ENSG00000162849|Vega:OTTHUMG00000040079 1 1q44 kinesin family member 26B protein-coding KIF26B kinesin family member 26B O kinesin-like protein KIF26B 20121230 -9606 55084 SOBP RP1-47M23.2 JXC1|MRAMS HGNC:29256|MIM:613667|Ensembl:ENSG00000112320|HPRD:07650|Vega:OTTHUMG00000015312 6 6q21 sine oculis binding protein homolog (Drosophila) protein-coding SOBP sine oculis binding protein homolog (Drosophila) O jackson circler protein 1|sine oculis-binding protein homolog 20121230 -9606 55086 CXorf57 RP11-647M7.1 - HGNC:25486|Ensembl:ENSG00000147231|HPRD:06513|Vega:OTTHUMG00000022150 X Xq22.3 chromosome X open reading frame 57 protein-coding CXorf57 chromosome X open reading frame 57 O uncharacterized protein CXorf57 20121230 -9606 55088 C10orf118 - - HGNC:24349|Ensembl:ENSG00000165813|HPRD:16576|Vega:OTTHUMG00000019081 10 10q25.3 chromosome 10 open reading frame 118 protein-coding C10orf118 chromosome 10 open reading frame 118 O CTCL tumor antigen HD-CL-01/L14-2|CTCL tumor antigen L14-2|uncharacterized protein C10orf118 20121230 -9606 55089 SLC38A4 - ATA3|NAT3|PAAT HGNC:14679|MIM:608065|Ensembl:ENSG00000139209|HPRD:12159|Vega:OTTHUMG00000169518 12 12q13 solute carrier family 38, member 4 protein-coding SLC38A4 solute carrier family 38, member 4 O N amino acid transporter 3|Na(+)-coupled neutral amino acid transporter 4|amino acid transporter A3|amino acid transporter system A3|sodium-coupled neutral amino acid transporter 4|system A amino acid transporter 3|system N amino acid transporter 3 20121230 -9606 55090 MED9 - MED25 HGNC:25487|MIM:609878|Ensembl:ENSG00000141026|HPRD:14383|Vega:OTTHUMG00000059293 17 17p11.2 mediator complex subunit 9 protein-coding MED9 mediator complex subunit 9 O mediator of RNA polymerase II transcription subunit 9|mediator of RNA polymerase II transcription, subunit 9 homolog|mediator subunit 25 20121230 -9606 55092 TMEM51 - C1orf72 HGNC:25488|Ensembl:ENSG00000171729|HPRD:07651|Vega:OTTHUMG00000002046 1 1p36.21 transmembrane protein 51 protein-coding TMEM51 transmembrane protein 51 O - 20121230 -9606 55093 WDYHV1 - C8orf32 HGNC:25490|Ensembl:ENSG00000156795|HPRD:07653|Vega:OTTHUMG00000165093 8 8q24.13 WDYHV motif containing 1 protein-coding WDYHV1 WDYHV motif containing 1 O N-terminal Gln amidase|WDYHV motif-containing protein 1|nt(Q)-amidase|protein N-terminal glutamine amidohydrolase|protein NH2-terminal glutamine deamidase 20121230 -9606 55094 GPATCH1 - ECGP|GPATC1 HGNC:24658|Ensembl:ENSG00000076650|HPRD:11008|Vega:OTTHUMG00000180341 19 19q13.11 G patch domain containing 1 protein-coding GPATCH1 G patch domain containing 1 O G patch domain-containing protein 1|evolutionarily conserved G patch domain containing|evolutionarily conserved G-patch domain containing|evolutionarily conserved G-patch domain-containing protein 20121230 -9606 55095 SAMD4B - SMGB|hSmaug2 HGNC:25492|Ensembl:ENSG00000179134|HPRD:10960 19 19q13.2 sterile alpha motif domain containing 4B protein-coding SAMD4B sterile alpha motif domain containing 4B O SAM domain-containing protein 4B|protein Smaug homolog 2|smaug 2|smaug homolog B|sterile alpha motif domain-containing protein 4B 20121230 -9606 55096 EBLN2 GK006 EBLN-2 HGNC:25493|MIM:613250|Ensembl:ENSG00000255423|HPRD:07654|Vega:OTTHUMG00000165897 3 3p13 endogenous Bornavirus-like nucleoprotein 2 protein-coding EBLN2 endogenous Bornavirus-like nucleoprotein 2 O EBLN-1|endogenous Borna-like N element 2|endogenous Borna-like N element-1|endogenous Borna-like N element-2 20121230 -9606 55100 WDR70 - - HGNC:25495|Ensembl:ENSG00000082068|HPRD:08542|Vega:OTTHUMG00000162263 5 5p13.2 WD repeat domain 70 protein-coding WDR70 WD repeat domain 70 O WD repeat-containing protein 70 20121230 -9606 55101 ATP5SL - - HGNC:25496|Ensembl:ENSG00000105341|HPRD:07655|Vega:OTTHUMG00000182342 19 19q13.2 ATP5S-like protein-coding ATP5SL ATP5S-like O ATP synthase subunit s-like protein 20121230 -9606 55102 ATG2B - C14orf103 HGNC:20187|Ensembl:ENSG00000066739|HPRD:12626|Vega:OTTHUMG00000149933 14 14q32.2 autophagy related 2B protein-coding ATG2B autophagy related 2B O ATG2 autophagy related 2 homolog B|autophagy-related protein 2 homolog B 20121230 -9606 55103 RALGPS2 RP4-595C2.1 dJ595C2.1 HGNC:30279|Ensembl:ENSG00000116191|HPRD:15206|Vega:OTTHUMG00000035076 1 1q25.2 Ral GEF with PH domain and SH3 binding motif 2 protein-coding RALGPS2 Ral GEF with PH domain and SH3 binding motif 2 O Ral-A exchange factor RalGPS2|ral GEF with PH domain and SH3-binding motif 2|ralA exchange factor RalGPS2|ras-specific guanine nucleotide-releasing factor RalGPS2 20121230 -9606 55105 GPATCH2 - CT110|GPATC2|PPP1R30|RP11-361K17.1 HGNC:25499|Ensembl:ENSG00000092978|HPRD:07657|Vega:OTTHUMG00000000527 1 1q41 G patch domain containing 2 protein-coding GPATCH2 G patch domain containing 2 O G patch domain-containing protein 2|cancer/testis antigen 110|protein phosphatase 1, regulatory subunit 30 20121230 -9606 55106 SLFN12 - SLFN3 HGNC:25500|MIM:614955|Ensembl:ENSG00000172123|HPRD:08543|Vega:OTTHUMG00000132952 17 17q12 schlafen family member 12 protein-coding SLFN12 schlafen family member 12 O - 20121230 -9606 55107 ANO1 - DOG1|ORAOV2|TAOS2|TMEM16A HGNC:21625|MIM:610108|Ensembl:ENSG00000131620|HPRD:18202|Vega:OTTHUMG00000167204 11 11q13.3 anoctamin 1, calcium activated chloride channel protein-coding ANO1 anoctamin 1, calcium activated chloride channel O anoctamin-1|discovered on gastrointestinal stromal tumors protein 1|oral cancer overexpressed 2|transmembrane protein 16A (eight membrane-spanning domains)|tumor-amplified and overexpressed sequence 2 20121230 -9606 55108 BSDC1 RP4-811H24.7 - HGNC:25501|Ensembl:ENSG00000160058|HPRD:07658|Vega:OTTHUMG00000007588 1 1p35.1 BSD domain containing 1 protein-coding BSDC1 BSD domain containing 1 O BSD domain-containing protein 1 20121230 -9606 55109 AGGF1 - GPATC7|GPATCH7|HSU84971|HUS84971|VG5Q HGNC:24684|MIM:608464|Ensembl:ENSG00000164252|HPRD:07621|Vega:OTTHUMG00000102132 5 5q13.3 angiogenic factor with G patch and FHA domains 1 protein-coding AGGF1 angiogenic factor with G patch and FHA domains 1 O G patch domain-containing protein 7|angiogenic factor VG5Q|vasculogenesis gene on 5q protein 20121230 -9606 55110 MAGOHB - MGN2|mago|magoh HGNC:25504|Ensembl:ENSG00000111196|HPRD:08544|Vega:OTTHUMG00000168407 12 12p13.2 mago-nashi homolog B (Drosophila) protein-coding MAGOHB mago-nashi homolog B (Drosophila) O mago-nashi homolog 2|protein mago nashi homolog 2 20121230 -9606 55111 PLEKHJ1 - GNRPX HGNC:18211|Ensembl:ENSG00000104886|HPRD:15150|Vega:OTTHUMG00000180425 19 19p13.3 pleckstrin homology domain containing, family J member 1 protein-coding PLEKHJ1 pleckstrin homology domain containing, family J member 1 O 9530063M10Rik|PH domain-containing family J member 1|guanine nucleotide releasing protein x|guanine nucleotide-releasing protein x|pleckstrin homology domain-containing family J member 1 20121230 -9606 55112 WDR60 tcag7.557 - HGNC:21862|Ensembl:ENSG00000126870|HPRD:08545|Vega:OTTHUMG00000151443 7 7q36.3 WD repeat domain 60 protein-coding WDR60 WD repeat domain 60 O WD repeat-containing protein 60 20121230 -9606 55113 XKR8 - RP11-460I13.3|XRG8 HGNC:25508|Ensembl:ENSG00000158156|HPRD:07661|Vega:OTTHUMG00000003912 1 1p35.3 XK, Kell blood group complex subunit-related family, member 8 protein-coding XKR8 XK, Kell blood group complex subunit-related family, member 8 O X Kell blood group precursor-related family, member 8|XK-related protein 8 20121230 -9606 55114 ARHGAP17 hCG_1984576 MST066|MST110|MSTP038|MSTP066|MSTP110|NADRIN|PP367|PP4534|RICH1|RICH1B|WBP15 HGNC:18239|MIM:608293|Ensembl:ENSG00000140750|HPRD:12207|Vega:OTTHUMG00000177372 16 16p12.1 Rho GTPase activating protein 17 protein-coding ARHGAP17 Rho GTPase activating protein 17 O RICH-1|RhoGAP interacting with CIP4 homologs 1|neuron-associated developmentally regulated protein|rho GTPase-activating protein 17|rho-type GTPase-activating protein 17|rhoGAP interacting with CIP4 homologs protein 1 20121230 -9606 55116 TMEM39B RP11-277A4.3 - HGNC:25510|Ensembl:ENSG00000121775|HPRD:07662|Vega:OTTHUMG00000004020 1 1p35.1 transmembrane protein 39B protein-coding TMEM39B transmembrane protein 39B O - 20121230 -9606 55117 SLC6A15 - NTT73|SBAT1|V7-3|hv7-3 HGNC:13621|MIM:607971|Ensembl:ENSG00000072041|HPRD:12141|Vega:OTTHUMG00000169742 12 12q21.3 solute carrier family 6 (neutral amino acid transporter), member 15 protein-coding SLC6A15 solute carrier family 6 (neutral amino acid transporter), member 15 O homolog of rat orphan transporter v7-3|orphan sodium- and chloride-dependent neurotransmitter transporter NTT73|orphan transporter v7-3|sodium- and chloride-dependent neurotransmitter transporter NTT73|sodium-coupled branched-chain amino-acid transporter 1|sodium-dependent neutral amino acid transporter B(0)AT2|sodium/chloride dependent neurotransmitter transporter Homo sapiens orphan neurotransmitter transporter NTT7|solute carrier family 6 (neurotransmitter transporter), member 15|solute carrier family 6 member 15|solute carrier family 6, member 15|transporter v7-3 20121230 -9606 55118 CRTAC1 RP11-459F3.1 ASPIC|ASPIC1|CEP-68 HGNC:14882|MIM:606276|Ensembl:ENSG00000095713|HPRD:10447|Vega:OTTHUMG00000018871 10 10q22 cartilage acidic protein 1 protein-coding CRTAC1 cartilage acidic protein 1 O acidic secreted protein in cartilage|chondrocyte expressed protein 68 kDa CEP-68 20121230 -9606 55119 PRPF38B - NET1|RP11-293A10.1 HGNC:25512|Ensembl:ENSG00000134186|HPRD:07664|Vega:OTTHUMG00000010991 1 1p13.3 PRP38 pre-mRNA processing factor 38 (yeast) domain containing B protein-coding PRPF38B PRP38 pre-mRNA processing factor 38 (yeast) domain containing B O pre-mRNA-splicing factor 38B|sarcoma antigen NY-SAR-27 20121230 -9606 55120 FANCL - FAAP43|PHF9|POG HGNC:20748|MIM:608111|Ensembl:ENSG00000115392|HPRD:06997|Vega:OTTHUMG00000129349 2 2p16.1 Fanconi anemia, complementation group L protein-coding FANCL Fanconi anemia, complementation group L O E3 ubiquitin-protein ligase FANCL|PHD finger protein 9|fanconi anemia group L protein|fanconi anemia-associated polypeptide of 43 kDa 20121230 -9606 55122 AKIRIN2 - C6orf166|FBI1|dJ486L4.2 HGNC:21407|Ensembl:ENSG00000135334|HPRD:12864|Vega:OTTHUMG00000015180 6 6q15 akirin 2 protein-coding AKIRIN2 akirin 2 O akirin-2|fourteen-three-three beta interactant 1 20121230 -9606 55124 PIWIL2 - CT80|HILI|PIWIL1L|mili HGNC:17644|MIM:610312|Ensembl:ENSG00000197181|HPRD:11434|Vega:OTTHUMG00000097767 8 8p21.3 piwi-like 2 (Drosophila) protein-coding PIWIL2 piwi-like 2 (Drosophila) O Miwi like|cancer/testis antigen 80|piwi-like protein 2|piwil2-like protein 20121230 -9606 55125 CEP192 PP8407 PPP1R62 HGNC:25515|Ensembl:ENSG00000101639|HPRD:10855|Vega:OTTHUMG00000160693 18 18p11.21 centrosomal protein 192kDa protein-coding CEP192 centrosomal protein 192kDa O centrosomal protein of 192 kDa|protein phosphatase 1, regulatory subunit 62 20121230 -9606 55127 HEATR1 RP11-385F5.3 BAP28|UTP10 HGNC:25517|Ensembl:ENSG00000119285|HPRD:17569|Vega:OTTHUMG00000040061 1 1q43 HEAT repeat containing 1 protein-coding HEATR1 HEAT repeat containing 1 O HEAT repeat-containing protein 1|UTP10, small subunit (SSU) processome component, homolog|protein BAP28 20121230 -9606 55128 TRIM68 - GC109|RNF137|SS-56|SS56 HGNC:21161|MIM:613184|Ensembl:ENSG00000167333|HPRD:11507|Vega:OTTHUMG00000165723 11 11p15.4 tripartite motif containing 68 protein-coding TRIM68 tripartite motif containing 68 O E3 ubiquitin-protein ligase TRIM68|Ro/SSA1 related protein|SSA protein SS-56|ring finger protein 137|tripartite motif-containing 68|tripartite motif-containing protein 68 20121230 -9606 55129 ANO10 - SCAR10|TMEM16K HGNC:25519|MIM:613726|Ensembl:ENSG00000160746|HPRD:07667|Vega:OTTHUMG00000133044 3 3p22.1 anoctamin 10 protein-coding ANO10 anoctamin 10 O anoctamin-10|transmembrane protein 16K 20121230 -9606 55130 ARMC4 RP11-691I13.1 - HGNC:25583|Ensembl:ENSG00000169126|HPRD:10663|Vega:OTTHUMG00000017867 10 10p12.1-p11.23 armadillo repeat containing 4 protein-coding ARMC4 armadillo repeat containing 4 O armadillo repeat-containing protein 4 20121230 -9606 55131 RBM28 - - HGNC:21863|MIM:612074|Ensembl:ENSG00000106344|HPRD:07668|Vega:OTTHUMG00000157711 7 7q32.1 RNA binding motif protein 28 protein-coding RBM28 RNA binding motif protein 28 O 2810480G15Rik|RNA-binding protein 28 20121230 -9606 55132 LARP1B - LARP2 HGNC:24704|Ensembl:ENSG00000138709|HPRD:10963|Vega:OTTHUMG00000133343 4 4q28.2 La ribonucleoprotein domain family, member 1B protein-coding LARP1B La ribonucleoprotein domain family, member 1B O La ribonucleoprotein domain family, member 2|la ribonucleoprotein domain family member 2|la-related protein 1B|la-related protein 2 20121230 -9606 55133 SRBD1 - - HGNC:25521|Ensembl:ENSG00000068784|HPRD:07669|Vega:OTTHUMG00000128814 2 2p21 S1 RNA binding domain 1 protein-coding SRBD1 S1 RNA binding domain 1 O H_NH0576F01.1|S1 RNA-binding domain-containing protein 1|WUGSC:H_NH0576F01.1 20121230 -9606 55135 WRAP53 - DKCB3|TCAB1|WDR79 HGNC:25522|MIM:612661|Ensembl:ENSG00000141499|HPRD:07670|Vega:OTTHUMG00000134323 17 17p13.1 WD repeat containing, antisense to TP53 protein-coding WRAP53 WD repeat containing, antisense to TP53 O WD repeat domain 79|WD repeat-containing protein 79|WD40 protein Wrap53|WD40 repeat-containing protein encoding RNA antisense to p53|telomerase Cajal body protein 1 20121230 -9606 55137 FIGN - - HGNC:13285|MIM:605295|Ensembl:ENSG00000182263|HPRD:07287|Vega:OTTHUMG00000074059 2 2q24.3 fidgetin protein-coding FIGN fidgetin O - 20121230 -9606 55138 FAM90A1 - - HGNC:25526|MIM:613041|Ensembl:ENSG00000171847|HPRD:07672|Vega:OTTHUMG00000168641 12 12p13.31 family with sequence similarity 90, member A1 protein-coding FAM90A1 family with sequence similarity 90, member A1 O protein FAM90A1 20121230 -9606 55139 ANKZF1 - ZNF744 HGNC:25527|Ensembl:ENSG00000163516|HPRD:07673|Vega:OTTHUMG00000154533 2 2q35 ankyrin repeat and zinc finger domain containing 1 protein-coding ANKZF1 ankyrin repeat and zinc finger domain containing 1 O ankyrin repeat and zinc finger domain-containing protein 1|zinc finger protein 744 20121230 -9606 55140 ELP3 - KAT9 HGNC:20696|MIM:612722|Ensembl:ENSG00000134014|HPRD:10936|Vega:OTTHUMG00000102124 8 8p21.1 elongator acetyltransferase complex subunit 3 protein-coding ELP3 elongator acetyltransferase complex subunit 3 O elongation protein 3 homolog|elongator complex protein 3|hELP3 20121230 -9606 55142 HAUS2 - C15orf25|CEP27|HsT17025 HGNC:25530|MIM:613429|Ensembl:ENSG00000137814|HPRD:07675|Vega:OTTHUMG00000130678 15 15q15.2 HAUS augmin-like complex, subunit 2 protein-coding HAUS2 HAUS augmin-like complex, subunit 2 O HAUS augmin-like complex subunit 2|centrosomal protein 27kDa|centrosomal protein of 27 kDa 20121230 -9606 55143 CDCA8 - BOR|BOREALIN|DasraB|MESRGP HGNC:14629|MIM:609977|Ensembl:ENSG00000134690|HPRD:13017|Vega:OTTHUMG00000004320 1 1p34.3 cell division cycle associated 8 protein-coding CDCA8 cell division cycle associated 8 O Dasra B|borealin|cell division cycle-associated protein 8|dasra-B|hDasra-B|pluripotent embryonic stem cell-related gene 3 protein 20121230 -9606 55144 LRRC8D RP11-302M6.1 LRRC5 HGNC:16992|MIM:612890|Ensembl:ENSG00000171492|HPRD:11287|Vega:OTTHUMG00000010583 1 1p22.2 leucine rich repeat containing 8 family, member D protein-coding LRRC8D leucine rich repeat containing 8 family, member D O leucine rich repeat containing 5|leucine-rich repeat-containing 5|leucine-rich repeat-containing protein 5|leucine-rich repeat-containing protein 8D 20121230 -9606 55145 THAP1 - DYT6 HGNC:20856|MIM:609520|Ensembl:ENSG00000131931|HPRD:15496|Vega:OTTHUMG00000165276 8 8p11.21 THAP domain containing, apoptosis associated protein 1 protein-coding THAP1 THAP domain containing, apoptosis associated protein 1 O 4833431A01Rik|THAP domain protein 1|THAP domain-containing protein 1|nuclear proapoptotic factor 20121230 -9606 55146 ZDHHC4 DC1 ZNF374 HGNC:18471|Ensembl:ENSG00000136247|HPRD:15719|Vega:OTTHUMG00000023579 7 7p22.1 zinc finger, DHHC-type containing 4 protein-coding ZDHHC4 zinc finger, DHHC-type containing 4 O DHHC-4|probable palmitoyltransferase ZDHHC4|zinc finger DHHC domain-containing protein 4|zinc finger protein 374|zinc finger, DHHC domain containing 4 20121230 -9606 55147 RBM23 PP239 CAPERbeta|RNPC4 HGNC:20155|Ensembl:ENSG00000100461|HPRD:15227|Vega:OTTHUMG00000171467 14 14q11.2 RNA binding motif protein 23 protein-coding RBM23 RNA binding motif protein 23 O RNA-binding motif protein 23|RNA-binding region (RNP1, RRM) containing 4|RNA-binding region-containing protein 4|probable RNA-binding protein 23|splicing factor SF2 20121230 -9606 55148 UBR7 - C14orf130 HGNC:20344|MIM:613816|Ensembl:ENSG00000012963|HPRD:16602|Vega:OTTHUMG00000171268 14 14q32.12 ubiquitin protein ligase E3 component n-recognin 7 (putative) protein-coding UBR7 ubiquitin protein ligase E3 component n-recognin 7 (putative) O N-recognin-7|putative E3 ubiquitin-protein ligase UBR7 20121230 -9606 55149 MTPAP RP11-305E6.3 PAPD1|SPAX4 HGNC:25532|MIM:613669|Ensembl:ENSG00000107951|HPRD:15097|Vega:OTTHUMG00000017895 10 10p11.23 mitochondrial poly(A) polymerase protein-coding MTPAP mitochondrial poly(A) polymerase O PAP-associated domain-containing protein 1|TUTase 1|poly(A) RNA polymerase, mitochondrial|polynucleotide adenylyltransferase|terminal uridylyltransferase 1 20121230 -9606 55150 C19orf73 - - HGNC:25534|Ensembl:ENSG00000221916|HPRD:07676 19 19q13.33 chromosome 19 open reading frame 73 protein-coding C19orf73 chromosome 19 open reading frame 73 O putative uncharacterized protein C19orf73 20121230 -9606 55151 TMEM38B RP11-219P18.1 C9orf87|D4Ertd89e|TRIC-B|TRICB|bA219P18.1 HGNC:25535|MIM:611236|Ensembl:ENSG00000095209|HPRD:15538|Vega:OTTHUMG00000020429 9 9q31.2 transmembrane protein 38B protein-coding TMEM38B transmembrane protein 38B O trimeric intracellular cation channel type B 20121230 -9606 55152 DALRD3 - - HGNC:25536|Ensembl:ENSG00000178149|HPRD:08549|Vega:OTTHUMG00000156748 3 3p21.31 DALR anticodon binding domain containing 3 protein-coding DALRD3 DALR anticodon binding domain containing 3 O DALR anticodon-binding domain-containing protein 3 20121230 -9606 55153 SDAD1 - - HGNC:25537|Ensembl:ENSG00000198301|HPRD:10214|Vega:OTTHUMG00000130111 4 4q21.1 SDA1 domain containing 1 protein-coding SDAD1 SDA1 domain containing 1 O SDA1 domain-containing protein 1|hSDA|nucleolar protein 130|protein SDA1 homolog 20121230 -9606 55154 MSTO1 LST005 MST HGNC:29678|Ensembl:ENSG00000125459|HPRD:16904|Vega:OTTHUMG00000014014 1 1q22 misato homolog 1 (Drosophila) protein-coding MSTO1 misato homolog 1 (Drosophila) O protein misato homolog 1 20121230 -9606 55156 ARMC1 - Arcp HGNC:17684|Ensembl:ENSG00000104442|HPRD:16506|Vega:OTTHUMG00000164374 8 8q13.1 armadillo repeat containing 1 protein-coding ARMC1 armadillo repeat containing 1 O armadillo repeat-containing protein 1 20121230 -9606 55157 DARS2 - ASPRS|LBSL|MT-ASPRS|RP3-383J4.2 HGNC:25538|MIM:610956|Ensembl:ENSG00000117593|HPRD:07677|Vega:OTTHUMG00000034803 1 1q25.1 aspartyl-tRNA synthetase 2, mitochondrial protein-coding DARS2 aspartyl-tRNA synthetase 2, mitochondrial O aspartate tRNA ligase 2, mitochondrial|aspartate--tRNA ligase, mitochondrial|aspartyl-tRNA synthetase, mitochondrial 20121230 -9606 55159 RFWD3 - RNF201 HGNC:25539|MIM:614151|Ensembl:ENSG00000168411|HPRD:07678|Vega:OTTHUMG00000177368 16 16q23.1 ring finger and WD repeat domain 3 protein-coding RFWD3 ring finger and WD repeat domain 3 O E3 ubiquitin-protein ligase RFWD3|RING finger and WD repeat domain-containing protein 3|RING finger protein 201 20121230 -9606 55160 ARHGEF10L RP11-473A10.1 GrinchGEF HGNC:25540|MIM:612494|Ensembl:ENSG00000074964|HPRD:07679|Vega:OTTHUMG00000002514 1 1p36.13 Rho guanine nucleotide exchange factor (GEF) 10-like protein-coding ARHGEF10L Rho guanine nucleotide exchange factor (GEF) 10-like O rho guanine nucleotide exchange factor 10-like protein 20121230 -9606 55161 TMEM33 - 1600019D15Rik|SHINC3 HGNC:25541|Ensembl:ENSG00000109133|HPRD:07680|Vega:OTTHUMG00000099381 4 4p13 transmembrane protein 33 protein-coding TMEM33 transmembrane protein 33 O - 20121230 -9606 55163 PNPO - PDXPO HGNC:30260|MIM:603287|Ensembl:ENSG00000108439|HPRD:04476|Vega:OTTHUMG00000178295 17 17q21.32 pyridoxamine 5'-phosphate oxidase protein-coding PNPO pyridoxamine 5'-phosphate oxidase O pyridoxal 5'-phosphate synthase|pyridoxamine-phosphate oxidase|pyridoxine 5'-phosphate oxidase|pyridoxine-5'-phosphate oxidase 20121230 -9606 55164 SHQ1 - Shq1p HGNC:25543|MIM:613663|Ensembl:ENSG00000144736|HPRD:07682|Vega:OTTHUMG00000158814 3 3p13 SHQ1 homolog (S. cerevisiae) protein-coding SHQ1 SHQ1 homolog (S. cerevisiae) O protein SHQ1 homolog 20121230 -9606 55165 CEP55 RP11-30E16.2 C10orf3|CT111|URCC6 HGNC:1161|MIM:610000|Ensembl:ENSG00000138180|HPRD:12569|Vega:OTTHUMG00000018774 10 10q23.33 centrosomal protein 55kDa protein-coding CEP55 centrosomal protein 55kDa O cancer/testis antigen 111|centrosomal protein of 55 kDa|up-regulated in colon cancer 6 20121230 -9606 55166 CENPQ - C6orf139|CENP-Q HGNC:21347|MIM:611506|Ensembl:ENSG00000031691|HPRD:10788|Vega:OTTHUMG00000014815 6 6p12.3 centromere protein Q protein-coding CENPQ centromere protein Q O - 20121230 -9606 55167 MSL2 - MSL-2|MSL2L1|RNF184 HGNC:25544|MIM:614802|Ensembl:ENSG00000174579|HPRD:08550|Vega:OTTHUMG00000159793 3 3q22.3 male-specific lethal 2 homolog (Drosophila) protein-coding MSL2 male-specific lethal 2 homolog (Drosophila) O MSL2-like 1|male-specific lethal 2 homolog|male-specific lethal 2-like 1|male-specific lethal-2 homolog 1|ring finger protein 184 20121230 -9606 55168 MRPS18A RP1-261G23.2 HumanS18b|MRP-S18-3|MRPS18-3|S18bmt HGNC:14515|MIM:611981|Ensembl:ENSG00000096080|HPRD:14780|Vega:OTTHUMG00000014750 6 6p21.3 mitochondrial ribosomal protein S18A protein-coding MRPS18A mitochondrial ribosomal protein S18A O 28S ribosomal protein S18-3, mitochondrial|28S ribosomal protein S18a, mitochondrial|MRP-S18-a|S18mt-a|mitochondrial ribosomal protein S18-3 20121230 -9606 55170 PRMT6 - HRMT1L6 HGNC:18241|MIM:608274|Ensembl:ENSG00000198890|HPRD:10505|Vega:OTTHUMG00000010964 1 1p13.3 protein arginine methyltransferase 6 protein-coding PRMT6 protein arginine methyltransferase 6 O HMT1 hnRNP methyltransferase-like 6|heterogeneous nuclear ribonucleoprotein methyltransferase-like protein 6|histone-arginine N-methyltransferase PRMT6|protein arginine N-methyltransferase 6 20121230 -9606 55171 TBCCD1 - - HGNC:25546|Ensembl:ENSG00000113838|HPRD:07684|Vega:OTTHUMG00000156613 3 3q27.3 TBCC domain containing 1 protein-coding TBCCD1 TBCC domain containing 1 O TBCC domain-containing protein 1 20121230 -9606 55172 DNAAF2 - C14orf104|CILD10|KTU|PF13 HGNC:20188|MIM:612517|Ensembl:ENSG00000165506|HPRD:12627|Vega:OTTHUMG00000152331 14 14q21.3 dynein, axonemal, assembly factor 2 protein-coding DNAAF2 dynein, axonemal, assembly factor 2 O dynein assembly factor 2, axonemal|kintoun|protein kintoun 20121230 -9606 55173 MRPS10 MSTP040 MRP-S10|PNAS-122 HGNC:14502|MIM:611976|Ensembl:ENSG00000048544|HPRD:14775|Vega:OTTHUMG00000014694 6 6p21.1 mitochondrial ribosomal protein S10 protein-coding MRPS10 mitochondrial ribosomal protein S10 O 28S ribosomal protein S10, mitochondrial|S10mt|mitochondrial 28S ribosomal protein S10 20121230 -9606 55174 INTS10 - C8orf35|INT10 HGNC:25548|MIM:611353|Ensembl:ENSG00000104613|HPRD:07686|Vega:OTTHUMG00000131065 8 8p21.3 integrator complex subunit 10 protein-coding INTS10 integrator complex subunit 10 O - 20121230 -9606 55175 KLHL11 - - HGNC:19008|Ensembl:ENSG00000178502|HPRD:13924|Vega:OTTHUMG00000133506 17 17q21.2 kelch-like 11 (Drosophila) protein-coding KLHL11 kelch-like 11 (Drosophila) O kelch-like protein 11 20121230 -9606 55176 SEC61A2 - - HGNC:17702|Ensembl:ENSG00000065665|HPRD:15317|Vega:OTTHUMG00000017679 10 10p14 Sec61 alpha 2 subunit (S. cerevisiae) protein-coding SEC61A2 Sec61 alpha 2 subunit (S. cerevisiae) O Sec61 alpha form 2|protein transport protein Sec61 subunit alpha|protein transport protein Sec61 subunit alpha isoform 2|sec61 alpha-2 20121230 -9606 55177 FAM82A2 hucep-10 FAM82C|RMD-3|RMD3|ptpip51 HGNC:25550|MIM:611873|Ensembl:ENSG00000137824|HPRD:07687|Vega:OTTHUMG00000130066 15 15q15.1 family with sequence similarity 82, member A2 protein-coding FAM82A2 family with sequence similarity 82, member A2 O TCPTP-interacting protein 51|cerebral protein 10|family with sequence similarity 82, member C|microtubule-associated protein|protein tyrosine phosphatase-interacting protein 51|regulator of microtubule dynamics 3|regulator of microtubule dynamics protein 3 20121230 -9606 55178 RNMTL1 HC90 - HGNC:18485|MIM:612600|Ensembl:ENSG00000171861|HPRD:15266|Vega:OTTHUMG00000090285 17 17p13.3 RNA methyltransferase like 1 protein-coding RNMTL1 RNA methyltransferase like 1 O RNA methyltransferase-like protein 1|putative RNA methyltransferase 20121230 -9606 55179 FAIM - FAIM1 HGNC:18703|Ensembl:ENSG00000158234|HPRD:16874|Vega:OTTHUMG00000159885 3 3q22.3 Fas apoptotic inhibitory molecule protein-coding FAIM Fas apoptotic inhibitory molecule O fas apoptotic inhibitory molecule 1 20121230 -9606 55180 LINS - LINS1|WINS1 HGNC:30922|MIM:610350|Ensembl:ENSG00000140471|HPRD:17280|Vega:OTTHUMG00000149865 15 15q26.3 lines homolog (Drosophila) protein-coding LINS lines homolog (Drosophila) O WINS1 protein with Drosophila Lines (Lin) homologous domain|lines homolog 1|protein Lines homolog|protein Lines homolog 1|wnt-signaling molecule Lines homolog 1 20121230 -9606 55181 SMG8 - C17orf71 HGNC:25551|MIM:613175|Ensembl:ENSG00000167447|HPRD:08551|Vega:OTTHUMG00000179365 17 17q22 smg-8 homolog, nonsense mediated mRNA decay factor (C. elegans) protein-coding SMG8 smg-8 homolog, nonsense mediated mRNA decay factor (C. elegans) O amplified in breast cancer gene 2 protein|protein SMG8|protein smg-8 homolog 20121230 -9606 55182 RNF220 RP4-678E16.1 C1orf164 HGNC:25552|Ensembl:ENSG00000187147|HPRD:13336|Vega:OTTHUMG00000007697 1 1p34.1 ring finger protein 220 protein-coding RNF220 ring finger protein 220 O E3 ubiquitin-protein ligase RNF220 20121230 -9606 55183 RIF1 - - HGNC:23207|MIM:608952|Ensembl:ENSG00000080345|HPRD:10603|Vega:OTTHUMG00000131886 2 2q23.3 RAP1 interacting factor homolog (yeast) protein-coding RIF1 RAP1 interacting factor homolog (yeast) O rap1-interacting factor 1 homolog|telomere-associated protein RIF1 20121230 -9606 55184 DZANK1 - ANKRD64|C20orf12|C20orf84|bA189K21.1|bA189K21.8|dJ568F9.2 HGNC:15858|Ensembl:ENSG00000089091|HPRD:12742|Vega:OTTHUMG00000031968 20 20p11.23 double zinc ribbon and ankyrin repeat domains 1 protein-coding DZANK1 double zinc ribbon and ankyrin repeat domains 1 O ankyrin repeat domain 64|ankyrin repeat-containing protein C20orf12|double zinc ribbon and ankyrin repeat-containing protein 1 20121230 -9606 55186 SLC25A36 - PNC2 HGNC:25554|Ensembl:ENSG00000114120|HPRD:07688|Vega:OTTHUMG00000160260 3 3q23 solute carrier family 25 (pyrimidine nucleotide carrier ), member 36 protein-coding SLC25A36 solute carrier family 25 (pyrimidine nucleotide carrier ), member 36 O solute carrier family 25 member 36|solute carrier family 25, member 36 20121230 -9606 55187 VPS13D - - HGNC:23595|MIM:608877|Ensembl:ENSG00000048707|HPRD:10593|Vega:OTTHUMG00000013155 1 1p36.22 vacuolar protein sorting 13 homolog D (S. cerevisiae) protein-coding VPS13D vacuolar protein sorting 13 homolog D (S. cerevisiae) O vacuolar protein sorting 13D|vacuolar protein sorting-associated protein 13D 20121230 -9606 55188 RIC8B - RIC8|hSyn HGNC:25555|MIM:609147|Ensembl:ENSG00000111785|HPRD:16452|Vega:OTTHUMG00000144188 12 12q23.3 resistance to inhibitors of cholinesterase 8 homolog B (C. elegans) protein-coding RIC8B resistance to inhibitors of cholinesterase 8 homolog B (C. elegans) O brain synembrin|brain synembryn|synembryn-B 20121230 -9606 55190 NUDT11 RP11-348F1.5 APS1|ASP1|DIPP3b|DIPP3beta|hDIPP3beta HGNC:18011|MIM:300528|Ensembl:ENSG00000196368|HPRD:06667|Vega:OTTHUMG00000021531 X Xp11.22 nudix (nucleoside diphosphate linked moiety X)-type motif 11 protein-coding NUDT11 nudix (nucleoside diphosphate linked moiety X)-type motif 11 O DIPP-3-beta|DIPP3-beta|diadenosine 5',5'''-P1,P6-hexaphosphate hydrolase 3-beta|diadenosine hexaphosphate hydrolase (AMP-forming)|diphosphoinositol polyphosphate phosphohydrolase 3, beta|diphosphoinositol polyphosphate phosphohydrolase 3-beta|hAps1|nucleoside diphosphate-linked moiety X motif 11|nudix motif 11 20121230 -9606 55191 NADSYN1 - - HGNC:29832|MIM:608285|Ensembl:ENSG00000172890|HPRD:16309|Vega:OTTHUMG00000167375 11 11q13.4 NAD synthetase 1 protein-coding NADSYN1 NAD synthetase 1 O NAD(+) synthase|NAD(+) synthetase|glutamine-dependent NAD synthetase|glutamine-dependent NAD(+) synthetase 20121230 -9606 55192 DNAJC17 - - HGNC:25556|Ensembl:ENSG00000104129|HPRD:07111|Vega:OTTHUMG00000130065 15 15q15.1 DnaJ (Hsp40) homolog, subfamily C, member 17 protein-coding DNAJC17 DnaJ (Hsp40) homolog, subfamily C, member 17 O dnaJ homolog subfamily C member 17 20121230 -9606 55193 PBRM1 - BAF180|PB1 HGNC:30064|MIM:606083|Ensembl:ENSG00000163939|Vega:OTTHUMG00000152663 3 3p21 polybromo 1 protein-coding PBRM1 polybromo 1 O BRG1-associated factor 180|polybromo-1D|protein polybromo-1 20121230 -9606 55194 EVA1B - C1orf78|FAM176B|RP11-268J15.2 HGNC:25558|Ensembl:ENSG00000142694|HPRD:07690|Vega:OTTHUMG00000007867 1 1p34.3 eva-1 homolog B (C. elegans) protein-coding EVA1B eva-1 homolog B (C. elegans) O family with sequence similarity 176, member B|protein FAM176B 20121230 -9606 55195 C14orf105 - - HGNC:20189|Ensembl:ENSG00000100557|HPRD:12628|Vega:OTTHUMG00000140317 14 14q22.3 chromosome 14 open reading frame 105 protein-coding C14orf105 chromosome 14 open reading frame 105 O uncharacterized protein C14orf105 20121230 -9606 55196 KIAA1551 - C12orf35 HGNC:25559|Ensembl:ENSG00000174718|HPRD:07691|Vega:OTTHUMG00000128501 12 12p11.21 KIAA1551 protein-coding KIAA1551 KIAA1551 O uncharacterized protein C12orf35|uncharacterized protein KIAA1551 20121230 -9606 55197 RPRD1A - HsT3101|P15RS HGNC:25560|MIM:610347|Ensembl:ENSG00000141425|HPRD:10134|Vega:OTTHUMG00000132591 18 18q12.2 regulation of nuclear pre-mRNA domain containing 1A protein-coding RPRD1A regulation of nuclear pre-mRNA domain containing 1A O Cyclin-dependent kinase inhibitor 2B-related protein (p15INK4B-related protein)|cyclin-dependent kinase 2B-inhibitor-related protein|p15INK4B-related protein|regulation of nuclear pre-mRNA domain-containing protein 1A 20121230 -9606 55198 APPL2 - DIP13B HGNC:18242|MIM:606231|Ensembl:ENSG00000136044|HPRD:06945|Vega:OTTHUMG00000169853 12 12q24.1 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 2 protein-coding APPL2 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 2 O DCC-interacting protein 13-beta|DIP13 beta|adapter protein containing PH domain, PTB domain and leucine zipper motif 2 20121230 -9606 55199 FAM86C1 - FAM86C HGNC:25561|Ensembl:ENSG00000158483|HPRD:13337|Vega:OTTHUMG00000160552 11 11q13.4 family with sequence similarity 86, member C1 protein-coding FAM86C1 family with sequence similarity 86, member C1 O family with sequence similarity 86, member C|protein FAM86C1 20121230 -9606 55200 PLEKHG6 - MyoGEF HGNC:25562|MIM:611743|Ensembl:ENSG00000008323|HPRD:07692|Vega:OTTHUMG00000168266 12 12p13.31 pleckstrin homology domain containing, family G (with RhoGef domain) member 6 protein-coding PLEKHG6 pleckstrin homology domain containing, family G (with RhoGef domain) member 6 O PH domain-containing family G member 6|myosin interacting guanine nucleotide exchange factor|myosin-interacting guanine nucleotide exchange factor|pleckstrin homology domain-containing family G member 6 20121230 -9606 55201 MAP1S - BPY2IP1|C19orf5|MAP8|VCY2IP-1|VCY2IP1 HGNC:15715|MIM:607573|Ensembl:ENSG00000130479|HPRD:10461 19 19p13.11 microtubule-associated protein 1S protein-coding MAP1S microtubule-associated protein 1S O BPY2 interacting protein 1|BPY2-interacting protein 1|MAP-1S|VCY2 interacting protein 1|VCY2-interacting protein 1|microtubule-associated protein 8|variable charge Y chromosome 2-interacting protein 1 20121230 -9606 55203 LGI2 - LGIL2 HGNC:18710|MIM:608301|Ensembl:ENSG00000153012|HPRD:06431|Vega:OTTHUMG00000097749 4 4p15.2 leucine-rich repeat LGI family, member 2 protein-coding LGI2 leucine-rich repeat LGI family, member 2 O LGI1-like protein 2|leucine-rich glioma-inactivated protein 2|leucine-rich repeat LGI family member 2|leucine-rich, glioma inactivated 2 20121230 -9606 55204 GOLPH3L RP11-54A4.7 GPP34R HGNC:24882|MIM:612208|Ensembl:ENSG00000143457|HPRD:17048|Vega:OTTHUMG00000035009 1 1q21.3 golgi phosphoprotein 3-like protein-coding GOLPH3L golgi phosphoprotein 3-like O GPP34-related protein|Golgi phosphoprotein 3-like 20121230 -9606 55205 ZNF532 - - HGNC:30940|Ensembl:ENSG00000074657|HPRD:11724|Vega:OTTHUMG00000132759 18 18q21.32 zinc finger protein 532 protein-coding ZNF532 zinc finger protein 532 O - 20121230 -9606 55206 SBNO1 - MOP3|Sno HGNC:22973|MIM:614274|Ensembl:ENSG00000139697|HPRD:11533 12 12q24.31 strawberry notch homolog 1 (Drosophila) protein-coding SBNO1 strawberry notch homolog 1 (Drosophila) O monocyte protein 3|protein strawberry notch homolog 1 20121230 -9606 55207 ARL8B - ARL10C|Gie1 HGNC:25564|Ensembl:ENSG00000134108|HPRD:12483|Vega:OTTHUMG00000090463 3 3p26.1 ADP-ribosylation factor-like 8B protein-coding ARL8B ADP-ribosylation factor-like 8B O ADP-ribosylation factor-like 10C|ADP-ribosylation factor-like protein 10C|ADP-ribosylation factor-like protein 8B|novel small G protein indispensable for equal chromosome segregation 1 20121230 -9606 55208 DCUN1D2 RP11-102K13.4 C13orf17 HGNC:20328|Ensembl:ENSG00000150401|HPRD:12614|Vega:OTTHUMG00000017390 13 13q34 DCN1, defective in cullin neddylation 1, domain containing 2 (S. cerevisiae) protein-coding DCUN1D2 DCN1, defective in cullin neddylation 1, domain containing 2 (S. cerevisiae) O DCN1-like protein 2|DCUN1 domain-containing protein 2|defective in cullin neddylation protein 1-like protein 2 20121230 -9606 55209 SETD5 - - HGNC:25566|Ensembl:ENSG00000168137|Vega:OTTHUMG00000150491 3 3p25.3 SET domain containing 5 protein-coding SETD5 SET domain containing 5 O SET domain-containing protein 5 20121230 -9606 55210 ATAD3A RP5-832C2.1 - HGNC:25567|MIM:612316|Ensembl:ENSG00000197785|HPRD:12500|Vega:OTTHUMG00000000575 1 1p36.33 ATPase family, AAA domain containing 3A protein-coding ATAD3A ATPase family, AAA domain containing 3A O ATPase family AAA domain-containing protein 3A 20121230 -9606 55211 DPPA4 - 2410091M23Rik HGNC:19200|MIM:614125|Ensembl:ENSG00000121570|HPRD:16836|Vega:OTTHUMG00000159222 3 3q13.13 developmental pluripotency associated 4 protein-coding DPPA4 developmental pluripotency associated 4 O developmental pluripotency-associated protein 4 20121230 -9606 55212 BBS7 - BBS2L1 HGNC:18758|MIM:607590|Ensembl:ENSG00000138686|HPRD:07399|Vega:OTTHUMG00000133076 4 4q27 Bardet-Biedl syndrome 7 protein-coding BBS7 Bardet-Biedl syndrome 7 O BBS2-like 1|BBS2-like protein 1|Bardet-Biedl syndrome 7 protein 20121230 -9606 55213 RCBTB1 - CLLD7|CLLL7|GLP|RP11-185C18.1 HGNC:18243|MIM:607867|Ensembl:ENSG00000136144|HPRD:09713|Vega:OTTHUMG00000016915 13 13q14 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 1 protein-coding RCBTB1 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 1 O CLL deletion region gene 7 protein|GDP/GTP exchange factor (GEF)-like protein|RCC1 and BTB domain-containing protein 1|chronic lymphocytic leukemia deletion region gene 7 protein|regulator of chromosome condensation and BTB domain-containing protein 1 20121230 -9606 55214 LEPREL1 - MCVD|MLAT4|P3H2 HGNC:19317|MIM:610341|Ensembl:ENSG00000090530|HPRD:17270|Vega:OTTHUMG00000156312 3 3q28 leprecan-like 1 protein-coding LEPREL1 leprecan-like 1 O myxoid liposarcoma-associated protein 4|prolyl 3-hydroxylase 2|prolyl 3-hydroxylase 3 20121230 -9606 55215 FANCI - KIAA1794 HGNC:25568|MIM:611360|Ensembl:ENSG00000140525|HPRD:13339|Vega:OTTHUMG00000132993 15 15q26.1 Fanconi anemia, complementation group I protein-coding FANCI Fanconi anemia, complementation group I O Fanconi anemia group I protein 20121230 -9606 55216 C11orf57 - - HGNC:25569|Ensembl:ENSG00000150776|HPRD:07695|Vega:OTTHUMG00000150213 11 11q23.1 chromosome 11 open reading frame 57 protein-coding C11orf57 chromosome 11 open reading frame 57 O uncharacterized protein C11orf57 20121230 -9606 55217 TMLHE - AUTSX6|BBOX2|TMLD|TMLH|TMLHED|XAP130 HGNC:18308|MIM:300777|Ensembl:ENSG00000185973|HPRD:06743|Vega:OTTHUMG00000022674 X Xq28 trimethyllysine hydroxylase, epsilon protein-coding TMLHE trimethyllysine hydroxylase, epsilon O TML hydroxylase|TML-alpha-ketoglutarate dioxygenase|butyrobetaine (gamma), 2-oxoglutarate dioxygenase (gamma-butyrobetaine hydroxylase) 2|epsilon-trimethyllysine 2-oxoglutarate dioxygenase|epsilon-trimethyllysine hydroxylase|trimethyllysine dioxygenase, mitochondrial 20121230 -9606 55218 EXD2 - C14orf114|EXDL2 HGNC:20217|Ensembl:ENSG00000081177|HPRD:16592|Vega:OTTHUMG00000154496 14 14q24.1 exonuclease 3'-5' domain containing 2 protein-coding EXD2 exonuclease 3'-5' domain containing 2 O exonuclease 3'-5' domain-containing protein 2|exonuclease 3'-5' domain-like 2|exonuclease 3'-5' domain-like-containing protein 2 20121230 -9606 55219 TMEM57 RP3-469D22.2 MACOILIN HGNC:25572|MIM:610301|Ensembl:ENSG00000204178|HPRD:13340|Vega:OTTHUMG00000003473 1 1p36.11|1p36.11 transmembrane protein 57 protein-coding TMEM57 transmembrane protein 57 O macoilin 20121230 -9606 55220 KLHDC8A - - HGNC:25573|MIM:614503|Ensembl:ENSG00000162873|HPRD:07696|Vega:OTTHUMG00000037199 1 1q32.1 kelch domain containing 8A protein-coding KLHDC8A kelch domain containing 8A O S-delta-E1|kelch domain-containing protein 8A|substitute for delta-EGFR expression 1 20121230 -9606 55222 LRRC20 UNQ2429/PRO4989 - HGNC:23421|Ensembl:ENSG00000172731|HPRD:14314|Vega:OTTHUMG00000018407 10 10q22.1 leucine rich repeat containing 20 protein-coding LRRC20 leucine rich repeat containing 20 O leucine-rich repeat-containing protein 20 20121230 -9606 55223 TRIM62 RP11-131M11.1 DEAR1 HGNC:25574|Ensembl:ENSG00000116525|HPRD:07697|Vega:OTTHUMG00000004132 1 1p35.1 tripartite motif containing 62 protein-coding TRIM62 tripartite motif containing 62 O ductal epithelium-associated RING Chromosome 1|tripartite motif-containing 62|tripartite motif-containing protein 62 20121230 -9606 55224 ETNK2 RP11-74C13.2 EKI2|HMFT1716 HGNC:25575|MIM:609859|Ensembl:ENSG00000143845|HPRD:13283|Vega:OTTHUMG00000036061 1 1q32.1 ethanolamine kinase 2 protein-coding ETNK2 ethanolamine kinase 2 O EKI 2|ethanolamine kinase-like protein 20121230 -9606 55225 RAVER2 - - HGNC:25577|MIM:609953|Ensembl:ENSG00000162437|HPRD:11154|Vega:OTTHUMG00000009102 1 1p31.3 ribonucleoprotein, PTB-binding 2 protein-coding RAVER2 ribonucleoprotein, PTB-binding 2 O protein raver-2|ribonucleoprotein PTB-binding 2 20121230 -9606 55226 NAT10 - ALP|NET43 HGNC:29830|MIM:609221|Ensembl:ENSG00000135372|HPRD:10964|Vega:OTTHUMG00000166249 11 11p13 N-acetyltransferase 10 (GCN5-related) protein-coding NAT10 N-acetyltransferase 10 (GCN5-related) O N-acetyltransferase 10|N-acetyltransferase-like protein 20121230 -9606 55227 LRRC1 RP3-523E19.1 LANO|dJ523E19.1 HGNC:14307|MIM:608195|Ensembl:ENSG00000137269|Vega:OTTHUMG00000014885 6 6p12.1 leucine rich repeat containing 1 protein-coding LRRC1 leucine rich repeat containing 1 O LANO adapter protein|LAP (leucine-rich repeats and PDZ) and no PDZ protein|LAP and no PDZ protein|leucine-rich repeat-containing 1|leucine-rich repeat-containing protein 1 20121230 -9606 55228 PNMAL1 - - HGNC:25578|Ensembl:ENSG00000182013|HPRD:08552|Vega:OTTHUMG00000169421 19 19q13.32 paraneoplastic Ma antigen family-like 1 protein-coding PNMAL1 paraneoplastic Ma antigen family-like 1 O PNMA-like 1|PNMA-like protein 1 20121230 -9606 55229 PANK4 RP3-395M20.4 - HGNC:19366|MIM:606162|Ensembl:ENSG00000157881|HPRD:07313|Vega:OTTHUMG00000000791 1 1p36.32 pantothenate kinase 4 protein-coding PANK4 pantothenate kinase 4 O hPanK4|pantothenic acid kinase 4 20121230 -9606 55230 USP40 - - HGNC:20069|MIM:610570|Ensembl:ENSG00000085982|HPRD:07166|Vega:OTTHUMG00000153199 2 2q37.1 ubiquitin specific peptidase 40 protein-coding USP40 ubiquitin specific peptidase 40 O deubiquitinating enzyme 40|ubiquitin carboxyl-terminal hydrolase 40|ubiquitin specific protease 40|ubiquitin thioesterase 40|ubiquitin thiolesterase 40|ubiquitin-specific-processing protease 40 20121230 -9606 55231 CCDC87 - - HGNC:25579|Ensembl:ENSG00000182791|HPRD:07699|Vega:OTTHUMG00000167237 11 11q13.2 coiled-coil domain containing 87 protein-coding CCDC87 coiled-coil domain containing 87 O coiled-coil domain-containing protein 87 20121230 -9606 55233 MOB1A - C2orf6|MATS1|MOB1|MOBK1B|MOBKL1B|Mob4B HGNC:16015|MIM:609281|Ensembl:ENSG00000114978|HPRD:14727|Vega:OTTHUMG00000152833 2 2p13.1 MOB kinase activator 1A protein-coding MOB1A MOB kinase activator 1A O MOB1 Mps One Binder homolog A|MOB1, Mps One Binder kinase activator-like 1B|mob1 alpha|mob1 homolog 1B|mps one binder kinase activator-like 1B 20121230 -9606 55234 SMU1 - BWD|RP11-54K16.3|SMU-1|fSAP57 HGNC:18247|Ensembl:ENSG00000122692|HPRD:11588|Vega:OTTHUMG00000019757 9 9p12 smu-1 suppressor of mec-8 and unc-52 homolog (C. elegans) protein-coding SMU1 smu-1 suppressor of mec-8 and unc-52 homolog (C. elegans) O WD40 repeat-containing protein SMU1|brain-enriched WD-repeat protein|functional spliceosome-associated protein 57|smu-1 suppressor of mec-8 and unc-52 protein homolog 20121230 -9606 55236 UBA6 - E1-L2|MOP-4|UBE1L2 HGNC:25581|MIM:611361|Ensembl:ENSG00000033178|HPRD:13341|Vega:OTTHUMG00000129299 4 4q13.2 ubiquitin-like modifier activating enzyme 6 protein-coding UBA6 ubiquitin-like modifier activating enzyme 6 O UBA6, ubiquitin-activating enzyme E1|monocyte protein 4|ubiquitin-activating enzyme 6|ubiquitin-activating enzyme E1-like 2|ubiquitin-activating enzyme E1-like protein 2|ubiquitin-like modifier-activating enzyme 6 20121230 -9606 55237 VRTN - C14orf115|vertnin HGNC:20223|Ensembl:ENSG00000133980|HPRD:16593|Vega:OTTHUMG00000171208 14 14q24.3 vertebrae development associated protein-coding VRTN vertebrae development associated O vertebrae development homolog (pig)|vertnin 20121230 -9606 55238 SLC38A7 - SNAT7 HGNC:25582|MIM:614236|Ensembl:ENSG00000103042|HPRD:07701|Vega:OTTHUMG00000133491 16 16q21 solute carrier family 38, member 7 protein-coding SLC38A7 solute carrier family 38, member 7 O amino acid transporter|putative sodium-coupled neutral amino acid transporter 7 20121230 -9606 55239 OGFOD1 - TPA1 HGNC:25585|Ensembl:ENSG00000087263|HPRD:08553|Vega:OTTHUMG00000133237 16 16q12.2 2-oxoglutarate and iron-dependent oxygenase domain containing 1 protein-coding OGFOD1 2-oxoglutarate and iron-dependent oxygenase domain containing 1 O 2-oxoglutarate and iron-dependent oxygenase domain-containing protein 1|TPA1, termination and polyadenylation 1, homolog|termination and polyadenylation 1 homolog 20121230 -9606 55240 STEAP3 - STMP3|TSAP6|dudlin-2 HGNC:24592|MIM:609671|Ensembl:ENSG00000115107|HPRD:10285|Vega:OTTHUMG00000131402 2 2q14.2 STEAP family member 3, metalloreductase protein-coding STEAP3 STEAP family member 3, metalloreductase O 1010001D01Rik|dudlin 2|dudulin 2|dudulin-2|hTSAP6|hpHyde|metalloreductase STEAP3|pHyde|six transmembrane prostate protein 3|six-transmembrane epithelial antigen of prostate 3|tumor suppressor pHyde|tumor suppressor-activated pathway protein 6 20121230 -9606 55243 KIRREL RP11-444M10.2 NEPH1 HGNC:15734|MIM:607428|Ensembl:ENSG00000183853|HPRD:06306|Vega:OTTHUMG00000022438 1 1q21-q25 kin of IRRE like (Drosophila) protein-coding KIRREL kin of IRRE like (Drosophila) O kin of IRRE-like protein 1|kin of irregular chiasm-like protein 1|nephrin related|nephrin-like protein 1 20121230 -9606 55244 SLC47A1 - MATE1 HGNC:25588|MIM:609832|Ensembl:ENSG00000142494|HPRD:07703|Vega:OTTHUMG00000059466 17 17p11.2 solute carrier family 47, member 1 protein-coding SLC47A1 solute carrier family 47, member 1 O MATE-1|hMATE-1|multidrug and toxin extrusion 1|multidrug and toxin extrusion protein 1 20121230 -9606 55245 UQCC RP4-614O4.7 BFZB|C20orf44|CBP3 HGNC:15891|MIM:611797|Ensembl:ENSG00000101019|HPRD:12770|Vega:OTTHUMG00000032335 20 20q11.22 ubiquinol-cytochrome c reductase complex chaperone protein-coding UQCC ubiquinol-cytochrome c reductase complex chaperone O bFGF-repressed Zic-binding protein|basic FGF-repressed Zic-binding protein|cytochrome B protein synthesis 3 homolog|ubiquinol-cytochrome c reductase complex chaperone CBP3 homolog 20121230 -9606 55246 CCDC25 - - HGNC:25591|Ensembl:ENSG00000147419|HPRD:07705|Vega:OTTHUMG00000132173 8 8p21.1 coiled-coil domain containing 25 protein-coding CCDC25 coiled-coil domain containing 25 O coiled-coil domain-containing protein 25 20121230 -9606 55247 NEIL3 - FGP2|FPG2|NEI3|hFPG2|hNEI3 HGNC:24573|MIM:608934|Ensembl:ENSG00000109674|HPRD:16407|Vega:OTTHUMG00000160722 4 4q34.3 nei endonuclease VIII-like 3 (E. coli) protein-coding NEIL3 nei endonuclease VIII-like 3 (E. coli) O DNA glycosylase FPG2|DNA glycosylase hFPG2|DNA glycosylase/AP lyase Neil3|endonuclease 8-like 3|endonuclease VIII-like 3|nei-like protein 3 20121230 -9606 55248 TMEM206 - C1orf75|RP11-384C4.5 HGNC:25593|Ensembl:ENSG00000065600|HPRD:07707|Vega:OTTHUMG00000036751 1 1q32.3 transmembrane protein 206 protein-coding TMEM206 transmembrane protein 206 O - 20121230 -9606 55249 YY1AP1 RP11-243J18.1 HCCA1|HCCA2|YAP|YY1AP HGNC:30935|MIM:607860|Ensembl:ENSG00000163374|HPRD:08485|Vega:OTTHUMG00000035437 1 1q22 YY1 associated protein 1 protein-coding YY1AP1 YY1 associated protein 1 O YY1-associated protein 1|hepatocellular carcinoma susceptibility protein|hepatocellular carcinoma-associated protein 2 20121230 -9606 55250 ELP2 - SHINC-2|STATIP1|StIP HGNC:18248|Ensembl:ENSG00000134759|HPRD:15443|Vega:OTTHUMG00000132589 18 18q12.2 elongator acetyltransferase complex subunit 2 protein-coding ELP2 elongator acetyltransferase complex subunit 2 O STAT3-interacting protein 1|elongation protein 2 homolog|elongator complex protein 2|elongator protein 2|signal transducer and activator of transcription 3 interacting protein 1|signal transducer and activator of transcription interacting protein 1|stIP1 20121230 -9606 55251 PCMTD2 RP11-476I15.3 C20orf36 HGNC:15882|Ensembl:ENSG00000203880|HPRD:12764|Vega:OTTHUMG00000033029 20 20q13.33 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 protein-coding PCMTD2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 O protein-L-isoaspartate O-methyltransferase domain-containing protein 2 20121230 -9606 55252 ASXL2 - ASXH2 HGNC:23805|MIM:612991|Ensembl:ENSG00000143970|HPRD:10676|Vega:OTTHUMG00000152176 2 2p24.1 additional sex combs like 2 (Drosophila) protein-coding ASXL2 additional sex combs like 2 (Drosophila) O additional sex combs-like protein 2|polycomb group protein ASXH2|putative Polycomb group protein ASXL2 20121230 -9606 55253 TYW1 - RSAFD1|TYW1A|YPL207W HGNC:25598|MIM:611243|Ensembl:ENSG00000198874|HPRD:07711|Vega:OTTHUMG00000129723 7 7q11.21 tRNA-yW synthesizing protein 1 homolog (S. cerevisiae) protein-coding TYW1 tRNA-yW synthesizing protein 1 homolog (S. cerevisiae) O radical S-adenosyl methionine and flavodoxin domain-containing protein 1|radical S-adenosyl methionine and flavodoxin domains 1|tRNA wybutosine-synthesizing protein 1 homolog|tRNA-yW synthesizing protein 1 homolog A 20121230 -9606 55254 TMEM39A - - HGNC:25600|Ensembl:ENSG00000176142|HPRD:07713|Vega:OTTHUMG00000159361 3 3q13.33 transmembrane protein 39A protein-coding TMEM39A transmembrane protein 39A O - 20121230 -9606 55255 WDR41 MSTP048 - HGNC:25601|Ensembl:ENSG00000164253|HPRD:07714|Vega:OTTHUMG00000102169 5 5q13.3 WD repeat domain 41 protein-coding WDR41 WD repeat domain 41 O WD repeat-containing protein 41 20121230 -9606 55256 ADI1 HMFT1638 APL1|ARD|Fe-ARD|MTCBP1|Ni-ARD|SIPL HGNC:30576|MIM:613400|Ensembl:ENSG00000182551|HPRD:17607|Vega:OTTHUMG00000112441 2 2p25.3 acireductone dioxygenase 1 protein-coding ADI1 acireductone dioxygenase 1 O 1,2-dihydroxy-3-keto-5-methylthiopentene dioxygenase|MT1-MMP cytoplasmic tail-binding protein-1|acireductone dioxygenase (Fe(2+)-requiring)|acireductone dioxygenase (Ni(2+)-requiring)|membrane-type 1 matrix metalloproteinase cytoplasmic tail binding protein-1|submergence induced protein 2|submergence-induced protein-like factor 20121230 -9606 55257 MRGBP - C20orf20|Eaf7|MRG15BP|URCC4 HGNC:15866|MIM:611157|Ensembl:ENSG00000101189|HPRD:16646|Vega:OTTHUMG00000032940 20 20q13.33 MRG/MORF4L binding protein protein-coding MRGBP MRG/MORF4L binding protein O MRG(MORF4-related gene)-binding protein|MRG-binding protein 20121230 -9606 55258 THNSL2 - SOFAT|THS2|TSH2 HGNC:25602|MIM:611261|Ensembl:ENSG00000144115|HPRD:07715|Vega:OTTHUMG00000130314 2 2p11.2 threonine synthase-like 2 (S. cerevisiae) protein-coding THNSL2 threonine synthase-like 2 (S. cerevisiae) O secreted osteoclastogenic factor of activated T cells|secreted osteoclastogenic factor of activated T-cells|threonine synthase-like 2 20121230 -9606 55259 CASC1 - LAS1|PPP1R54 HGNC:29599|Ensembl:ENSG00000118307|HPRD:16684|Vega:OTTHUMG00000150195 12 12p12.1 cancer susceptibility candidate 1 protein-coding CASC1 cancer susceptibility candidate 1 O cancer susceptibility candidate protein 1|lung adenoma susceptibility 1-like protein|protein phosphatase 1, regulatory subunit 54 20121230 -9606 55260 TMEM143 UNQ5922/PRO19813 - HGNC:25603|Ensembl:ENSG00000161558|HPRD:08556 19 19q13.33 transmembrane protein 143 protein-coding TMEM143 transmembrane protein 143 O - 20121230 -9606 55262 C7orf43 - - HGNC:25604|Ensembl:ENSG00000146826|HPRD:07716|Vega:OTTHUMG00000154862 7 7q22.1 chromosome 7 open reading frame 43 protein-coding C7orf43 chromosome 7 open reading frame 43 O uncharacterized protein C7orf43 20121230 -9606 55266 TMEM19 - - HGNC:25605|Ensembl:ENSG00000139291|HPRD:15530|Vega:OTTHUMG00000169558 12 12q21.1 transmembrane protein 19 protein-coding TMEM19 transmembrane protein 19 O - 20121230 -9606 55267 C22orf26 RP6-109B7.1 - HGNC:25606|Ensembl:ENSG00000182257|HPRD:07717|Vega:OTTHUMG00000150407 22 22q13.31 chromosome 22 open reading frame 26 protein-coding C22orf26 chromosome 22 open reading frame 26 O putative uncharacterized protein C22orf26 20121230 -9606 55268 ECHDC2 - - HGNC:23408|Ensembl:ENSG00000121310|HPRD:07718|Vega:OTTHUMG00000008927 1 1p32.3 enoyl CoA hydratase domain containing 2 protein-coding ECHDC2 enoyl CoA hydratase domain containing 2 O enoyl Coenzyme A hydratase domain containing 2|enoyl-CoA hydratase domain-containing protein 2, mitochondrial 20121230 -9606 55269 PSPC1 RP11-523H24.2 PSP1 HGNC:20320|MIM:612408|Ensembl:ENSG00000121390|HPRD:10172|Vega:OTTHUMG00000016502 13 13q12.11 paraspeckle component 1 protein-coding PSPC1 paraspeckle component 1 O paraspeckle protein 1 20121230 -9606 55270 NUDT15 - MTH2|RP11-90M2.1 HGNC:23063|Ensembl:ENSG00000136159|HPRD:14848|Vega:OTTHUMG00000016890 13 13q14.2 nudix (nucleoside diphosphate linked moiety X)-type motif 15 protein-coding NUDT15 nudix (nucleoside diphosphate linked moiety X)-type motif 15 O 7,8-dihydro-8-oxoguanine-triphosphatase NUDT15|8-oxo-dGTPase NUDT15|A730068G11Rik|mutT homolog 2|nucleoside diphosphate-linked moiety X motif 15|nudix motif 15|nudix-type motif 15|probable 7,8-dihydro-8-oxoguanine triphosphatase NUDT15|probable 8-oxo-dGTP diphosphatase NUDT15 20121230 -9606 55272 IMP3 - BRMS2|C15orf12|MRPS4 HGNC:14497|MIM:612980|HPRD:12664 15 15q24 IMP3, U3 small nucleolar ribonucleoprotein, homolog (yeast) protein-coding IMP3 IMP3, U3 small nucleolar ribonucleoprotein, homolog (yeast) O U3 small nucleolar ribonucleoprotein protein IMP3|U3 snoRNP protein 3 homolog|U3 snoRNP protein IMP3 20121230 -9606 55273 TMEM100 - - HGNC:25607|Ensembl:ENSG00000166292|HPRD:07719|Vega:OTTHUMG00000177858 17 17q22 transmembrane protein 100 protein-coding TMEM100 transmembrane protein 100 O - 20121230 -9606 55274 PHF10 RP11-160E12.5 BAF45A|XAP135 HGNC:18250|MIM:613069|Ensembl:ENSG00000130024|HPRD:11428|Vega:OTTHUMG00000016058 6 6q27|Xq28 PHD finger protein 10 protein-coding PHF10 PHD finger protein 10 O BRG1-associated factor 45a|BRG1-associated factor, 45-KD, A|PHD zinc finger protein XAP135 20121230 -9606 55275 VPS53 PP13624 HCCS1|hVps53L|pp13624 HGNC:25608|Ensembl:ENSG00000141252|HPRD:07720|Vega:OTTHUMG00000177441 17 17p13.3 vacuolar protein sorting 53 homolog (S. cerevisiae) protein-coding VPS53 vacuolar protein sorting 53 homolog (S. cerevisiae) O vacuolar protein sorting-associated protein 53 homolog 20121230 -9606 55276 PGM2 MSTP006 - HGNC:8906|MIM:172000|Ensembl:ENSG00000169299|HPRD:11761|Vega:OTTHUMG00000097813 4 4p14 phosphoglucomutase 2 protein-coding PGM2 phosphoglucomutase 2 O PGM 2|glucose phosphomutase 2|phosphodeoxyribomutase|phosphoglucomutase-2 20121230 -9606 55277 FGGY RP11-242B9.1 - HGNC:25610|MIM:611370|Ensembl:ENSG00000172456|HPRD:07721|Vega:OTTHUMG00000008424 1 1p32.1 FGGY carbohydrate kinase domain containing protein-coding FGGY FGGY carbohydrate kinase domain containing O FGGY carbohydrate kinase domain-containing protein 20121230 -9606 55278 QRSL1 - GatA HGNC:21020|Ensembl:ENSG00000130348|HPRD:15199|Vega:OTTHUMG00000015301 6 6q21 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 protein-coding QRSL1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 O glu-AdT subunit A|glutaminyl-tRNA synthase-like protein 1|glutamyl-tRNA(Gln) amidotransferase subunit A homolog|glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 20121230 -9606 55279 ZNF654 - - HGNC:25612|Ensembl:ENSG00000175105|HPRD:07722|Vega:OTTHUMG00000159097 3 3p11.1 zinc finger protein 654 protein-coding ZNF654 zinc finger protein 654 O melanoma-associated antigen 20121230 -9606 55280 CWF19L1 RP11-316M21.3 - HGNC:25613|Ensembl:ENSG00000095485|HPRD:13101|Vega:OTTHUMG00000018901 10 10q24.31 CWF19-like 1, cell cycle control (S. pombe) protein-coding CWF19L1 CWF19-like 1, cell cycle control (S. pombe) O CWF19-like protein 1 20121230 -9606 55281 TMEM140 - - HGNC:21870|Ensembl:ENSG00000146859|HPRD:07723|Vega:OTTHUMG00000155413 7 7q33 transmembrane protein 140 protein-coding TMEM140 transmembrane protein 140 O - 20121230 -9606 55282 LRRC36 - RORBP70|XLHSRF2 HGNC:25615|Ensembl:ENSG00000159708|HPRD:08558|Vega:OTTHUMG00000173030 16 16q22.1 leucine rich repeat containing 36 protein-coding LRRC36 leucine rich repeat containing 36 O ROR gamma binding protein 70|ROR gamma-binding protein 70|heat shock regulated 2|leucine-rich repeat-containing protein 36 20121230 -9606 55283 MCOLN3 - TRP-ML3|TRPML3 HGNC:13358|MIM:607400|Ensembl:ENSG00000055732|HPRD:09585|Vega:OTTHUMG00000009955 1 1p22.3 mucolipin 3 protein-coding MCOLN3 mucolipin 3 O mucolipin-3 20121230 -9606 55284 UBE2W - UBC-16|UBC16 HGNC:25616|MIM:614277|Ensembl:ENSG00000104343|HPRD:07724|Vega:OTTHUMG00000164517 8 8q21.11 ubiquitin-conjugating enzyme E2W (putative) protein-coding UBE2W ubiquitin-conjugating enzyme E2W (putative) O ubiquitin carrier protein W|ubiquitin-conjugating enzyme 16|ubiquitin-conjugating enzyme 2W|ubiquitin-conjugating enzyme E2 W|ubiquitin-protein ligase W 20121230 -9606 55285 RBM41 RP13-383K5.1 - HGNC:25617|Ensembl:ENSG00000089682|HPRD:06515|Vega:OTTHUMG00000022156 X Xq22.3 RNA binding motif protein 41 protein-coding RBM41 RNA binding motif protein 41 O RNA-binding motif protein 41|RNA-binding protein 41 20121230 -9606 55286 C4orf19 - - HGNC:25618|Ensembl:ENSG00000154274|HPRD:07725|Vega:OTTHUMG00000128580 4 4p14 chromosome 4 open reading frame 19 protein-coding C4orf19 chromosome 4 open reading frame 19 O uncharacterized protein C4orf19 20121230 -9606 55287 TMEM40 - - HGNC:25620|Ensembl:ENSG00000088726|HPRD:08559|Vega:OTTHUMG00000129801 3 3p25.2 transmembrane protein 40 protein-coding TMEM40 transmembrane protein 40 O - 20121230 -9606 55288 RHOT1 - ARHT1|MIRO-1|MIRO1 HGNC:21168|MIM:613888|Ensembl:ENSG00000126858|HPRD:15247|Vega:OTTHUMG00000179564 17 17q11.2 ras homolog family member T1 protein-coding RHOT1 ras homolog family member T1 O hMiro-1|mitochondrial Rho (MIRO) GTPase 1|mitochondrial Rho 1|mitochondrial Rho GTPase 1|rac-GTP binding protein-like protein|rac-GTP-binding protein-like protein|ras homolog gene family, member T1 20121230 -9606 55289 ACOXL - - HGNC:25621|Ensembl:ENSG00000153093|HPRD:12418|Vega:OTTHUMG00000131257 2 2q13 acyl-CoA oxidase-like protein-coding ACOXL acyl-CoA oxidase-like O acyl-CoA oxidase-like protein|acyl-coenzyme A oxidase-like protein 20121230 -9606 55290 BRF2 PRO1470 BRFU|TFIIIB50 HGNC:17298|MIM:607013|Ensembl:ENSG00000104221|HPRD:06115|Vega:OTTHUMG00000164025 8 8p11.23 BRF2, subunit of RNA polymerase III transcription initiation factor, BRF1-like protein-coding BRF2 BRF2, subunit of RNA polymerase III transcription initiation factor, BRF1-like O B-related factor 2|BRF-2|RNA polymerase III transcription initiation factor BRFU|hBRFU|hTFIIIB50|transcription factor IIB- related factor, TFIIIB50|transcription factor IIIB 50 kDa subunit 20121230 -9606 55291 PPP6R3 - C11orf23|PP6R3|SAP190|SAPL|SAPLa|SAPS3 HGNC:1173|MIM:610879|Ensembl:ENSG00000110075|HPRD:10703|Vega:OTTHUMG00000167596 11 11q13 protein phosphatase 6, regulatory subunit 3 protein-coding PPP6R3 protein phosphatase 6, regulatory subunit 3 O SAPS domain family, member 3|serine/threonine-protein phosphatase 6 regulatory subunit 3|sporulation-induced transcript 4-associated protein SAPL 20121230 -9606 55293 UEVLD - ATTP|UEV3 HGNC:30866|MIM:610985|Ensembl:ENSG00000151116|HPRD:15608|Vega:OTTHUMG00000167729 11 11p15.1 UEV and lactate/malate dehyrogenase domains protein-coding UEVLD UEV and lactate/malate dehyrogenase domains O EV and lactate/malate dehydrogenase domain-containing protein|UEV-3|signaling molecule ATTP|ubiquitin-conjugating enzyme E2 variant 3 20121230 -9606 55294 FBXW7 - AGO|CDC4|FBW6|FBW7|FBX30|FBXO30|FBXW6|SEL-10|SEL10|hAgo|hCdc4 HGNC:16712|MIM:606278|Ensembl:ENSG00000109670|HPRD:05888 4 4q31.3 F-box and WD repeat domain containing 7, E3 ubiquitin protein ligase protein-coding FBXW7 F-box and WD repeat domain containing 7, E3 ubiquitin protein ligase O F-box and WD-40 domain protein 7 (archipelago homolog, Drosophila)|F-box protein FBW7|F-box protein FBX30|F-box protein SEL-10|F-box/WD repeat-containing protein 7|archipelago|homolog of C elegans sel-10 20121230 -9606 55295 KLHL26 - - HGNC:25623|Ensembl:ENSG00000167487|HPRD:07728 19 19p13.11 kelch-like 26 (Drosophila) protein-coding KLHL26 kelch-like 26 (Drosophila) O kelch-like protein 26 20121230 -9606 55296 TBC1D19 - - HGNC:25624|Ensembl:ENSG00000109680|HPRD:07730|Vega:OTTHUMG00000097797 4 4p15.2 TBC1 domain family, member 19 protein-coding TBC1D19 TBC1 domain family, member 19 O TBC1 domain family member 19 20121230 -9606 55297 CCDC91 HSD8 p56 HGNC:24855|Ensembl:ENSG00000123106|HPRD:16905|Vega:OTTHUMG00000169141 12 12p11.22 coiled-coil domain containing 91 protein-coding CCDC91 coiled-coil domain containing 91 O GGA binding partner|GGA-binding partner|coiled-coil domain-containing protein 91|p56 accessory protein 20121230 -9606 55298 RNF121 - - HGNC:21070|Ensembl:ENSG00000137522|HPRD:11497|Vega:OTTHUMG00000157023 11 11q13.4 ring finger protein 121 protein-coding RNF121 ring finger protein 121 O RING finger protein 121 20121230 -9606 55299 BRIX1 - BRIX|BXDC2 HGNC:24170|Ensembl:ENSG00000113460|HPRD:16563|Vega:OTTHUMG00000162021 5 5p13.2 BRX1, biogenesis of ribosomes, homolog (S. cerevisiae) protein-coding BRIX1 BRX1, biogenesis of ribosomes, homolog (S. cerevisiae) O brix domain containing 2|brix domain-containing protein 2|ribosome biogenesis protein BRX1 homolog 20121230 -9606 55300 PI4K2B - PI4KIIB|PIK42B HGNC:18215|MIM:612101|Ensembl:ENSG00000038210|HPRD:15132|Vega:OTTHUMG00000128564 4 4p15.2 phosphatidylinositol 4-kinase type 2 beta protein-coding PI4K2B phosphatidylinositol 4-kinase type 2 beta O PI4KII-BETA|phosphatidylinositol 4-kinase type 2-beta|phosphatidylinositol 4-kinase type II-beta|phosphatidylinositol 4-kinase type-II beta 20121230 -9606 55301 OLAH RP11-455B2.1 AURA1|SAST|THEDC1 HGNC:25625|Ensembl:ENSG00000152463|HPRD:07731|Vega:OTTHUMG00000017724 10 10p13 oleoyl-ACP hydrolase protein-coding OLAH oleoyl-ACP hydrolase O S-acyl fatty acid synthase thioesterase, medium chain|augmented in rheumatoid arthritis 1|thioesterase II|thioesterase domain containing 1|thioesterase domain-containing protein 1 20121230 -9606 55303 GIMAP4 MSTP062 IAN-1|IAN1|IMAP4 HGNC:21872|MIM:608087|Ensembl:ENSG00000133574|HPRD:16281|Vega:OTTHUMG00000157475 7 7q36.1 GTPase, IMAP family member 4 protein-coding GIMAP4 GTPase, IMAP family member 4 O GTPase IMAP family member 4|human immune associated nucleotide 1|immunity associated protein 4|immunity-associated nucleotide 1 protein|immunity-associated protein 4 20121230 -9606 55304 SPTLC3 RP5-1077I2.1 C20orf38|LCB2B|LCB3|SPT3|SPTLC2L|dJ718P11|dJ718P11.1|hLCB2b HGNC:16253|MIM:611120|Ensembl:ENSG00000172296|HPRD:12765|Vega:OTTHUMG00000031899 20 20p12.1 serine palmitoyltransferase, long chain base subunit 3 protein-coding SPTLC3 serine palmitoyltransferase, long chain base subunit 3 O LCB 3|SPT 3|long chain base biosynthesis protein 2b|long chain base biosynthesis protein 3|serine palmitoyltransferase 3|serine palmitoyltransferase, long chain base subunit 2-like (aminotransferase 2)|serine-palmitoyl-CoA transferase 3 20121230 -9606 55308 DDX19A - DDX19-DDX19L|DDX19L HGNC:25628|Ensembl:ENSG00000168872|HPRD:07732|HPRD:18679|Vega:OTTHUMG00000137579 16 16q22.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 19A protein-coding DDX19A DEAD (Asp-Glu-Ala-Asp) box polypeptide 19A O ATP-dependent RNA helicase DDX19A|DDX19-like protein|DEAD (Asp-Glu-Ala-As) box polypeptide 19A|DEAD box protein 19A|RNA helicase 20121230 -9606 55311 ZNF444 - EZF-2|EZF2|ZSCAN17 HGNC:16052|MIM:607874|Ensembl:ENSG00000167685|HPRD:08488|Vega:OTTHUMG00000181761 19 19q13.43 zinc finger protein 444 protein-coding ZNF444 zinc finger protein 444 O endothelial zinc finger protein 2|zinc finger and SCAN domain-containing protein 17 20121230 -9606 55312 RFK RP11-422N19.2 RIFK HGNC:30324|MIM:613010|Ensembl:ENSG00000135002|HPRD:17969|Vega:OTTHUMG00000020040 9 9q21.13 riboflavin kinase protein-coding RFK riboflavin kinase O 0610038L10Rik|ATP:riboflavin 5'-phosphotransferase|flavokinase 20121230 -9606 55313 CPPED1 - CSTP1 HGNC:25632|Ensembl:ENSG00000103381|HPRD:07735|Vega:OTTHUMG00000167711 16 16p13.12 calcineurin-like phosphoesterase domain containing 1 protein-coding CPPED1 calcineurin-like phosphoesterase domain containing 1 O calcineurin-like phosphoesterase domain-containing protein 1|complete S transactivated protein 1|complete S-transactivated protein 1 20121230 -9606 55314 TMEM144 - - HGNC:25633|Ensembl:ENSG00000164124|HPRD:07736|Vega:OTTHUMG00000162013 4 4q32.1 transmembrane protein 144 protein-coding TMEM144 transmembrane protein 144 O - 20121230 -9606 55315 SLC29A3 UNQ717/PRO1380 ENT3|HCLAP|HJCD|PHID HGNC:23096|MIM:612373|Ensembl:ENSG00000198246|HPRD:11570|Vega:OTTHUMG00000018424 10 10q22.1 solute carrier family 29 (nucleoside transporters), member 3 protein-coding SLC29A3 solute carrier family 29 (nucleoside transporters), member 3 O equilibrative nucleoside transporter 3 20121230 -9606 55316 RSAD1 - - HGNC:25634|Ensembl:ENSG00000136444|HPRD:07737|Vega:OTTHUMG00000162126 17 17q21.33 radical S-adenosyl methionine domain containing 1 protein-coding RSAD1 radical S-adenosyl methionine domain containing 1 O oxygen-independent coproporphyrinogen-III oxidase-like protein RSAD1|radical S-adenosyl methionine domain-containing protein 1, mitochondrial 20121230 -9606 55317 AP5S1 RP5-1009E24.7 C20orf29 HGNC:15875|MIM:614824|Ensembl:ENSG00000125843|HPRD:16649|Vega:OTTHUMG00000031760 20 20p13 adaptor-related protein complex 5, sigma 1 subunit protein-coding AP5S1 adaptor-related protein complex 5, sigma 1 subunit O AP-5 complex subunit sigma-1|adapter-related protein complex 5 sigma subunit|protein C20orf29|sigma5 20121230 -9606 55319 TMA16 - C4orf43 HGNC:25638|Ensembl:ENSG00000198498|HPRD:07739|Vega:OTTHUMG00000161528 4 4q32.2 translation machinery associated 16 homolog (S. cerevisiae) protein-coding TMA16 translation machinery associated 16 homolog (S. cerevisiae) O UPF0534 protein C4orf43|translation machinery-associated protein 16 20121230 -9606 55320 MIS18BP1 - C14orf106|HSA242977|KNL2|M18BP1 HGNC:20190|Ensembl:ENSG00000129534|HPRD:12629|Vega:OTTHUMG00000140266 14 14q21.2 MIS18 binding protein 1 protein-coding MIS18BP1 MIS18 binding protein 1 O P243|hsKNL-2|kinetochore null 2 homolog|kinetochore-associated protein KNL-2 homolog|mis18-binding protein 1|putative protein p243 which interacts with transcription factor Sp1 20121230 -9606 55321 TMEM74B RP4-545L17.8 C20orf46 HGNC:15893|Ensembl:ENSG00000125895|HPRD:12772|Vega:OTTHUMG00000031655 20 20p13 transmembrane protein 74B protein-coding TMEM74B transmembrane protein 74B O transmembrane protein C20orf46 20121230 -9606 55322 C5orf22 - - HGNC:25639|Ensembl:ENSG00000082213|HPRD:07740|Vega:OTTHUMG00000131067 5 5p13.3 chromosome 5 open reading frame 22 protein-coding C5orf22 chromosome 5 open reading frame 22 O UPF0489 protein C5orf22 20121230 -9606 55323 LARP6 - ACHN HGNC:24012|MIM:611300|Ensembl:ENSG00000166173|HPRD:10966|Vega:OTTHUMG00000172179 15 15q23 La ribonucleoprotein domain family, member 6 protein-coding LARP6 La ribonucleoprotein domain family, member 6 O acheron|death-associated LA motif protein|la-related protein 6 20121230 -9606 55324 ABCF3 - EST201864 HGNC:72|Ensembl:ENSG00000161204|HPRD:12404|Vega:OTTHUMG00000156824 3 3q27.1 ATP-binding cassette, sub-family F (GCN20), member 3 protein-coding ABCF3 ATP-binding cassette, sub-family F (GCN20), member 3 O ATP-binding cassette sub-family F member 3 20121230 -9606 55325 UFSP2 - C4orf20 HGNC:25640|MIM:611482|Ensembl:ENSG00000109775|HPRD:07741|Vega:OTTHUMG00000160441 4 4q35.1 UFM1-specific peptidase 2 protein-coding UFSP2 UFM1-specific peptidase 2 O ufm1-specific protease 2 20121230 -9606 55326 AGPAT5 - 1AGPAT5|LPAATE HGNC:20886|MIM:614796|Ensembl:ENSG00000155189|HPRD:12438|Vega:OTTHUMG00000163656 8 8p23.1 1-acylglycerol-3-phosphate O-acyltransferase 5 (lysophosphatidic acid acyltransferase, epsilon) protein-coding AGPAT5 1-acylglycerol-3-phosphate O-acyltransferase 5 (lysophosphatidic acid acyltransferase, epsilon) O 1-AGP acyltransferase 5|1-AGPAT 5|1-acyl-sn-glycerol-3-phosphate acyltransferase epsilon|lysophosphatidic acid acyltransferase epsilon 20121230 -9606 55327 LIN7C - LIN-7-C|LIN-7C|MALS-3|MALS3|VELI3 HGNC:17789|MIM:612332|Ensembl:ENSG00000148943|HPRD:17279|Vega:OTTHUMG00000166193 11 11p14 lin-7 homolog C (C. elegans) protein-coding LIN7C lin-7 homolog C (C. elegans) O LIN-7 protein 3|mammalian lin-seven protein 3|protein lin-7 homolog C|veli-3|vertebrate lin-7 homolog 3 20121230 -9606 55328 RNLS - C10orf59|RENALASE HGNC:25641|MIM:609360|Ensembl:ENSG00000184719|HPRD:07742|Vega:OTTHUMG00000018692 10 10q23.31 renalase, FAD-dependent amine oxidase protein-coding RNLS renalase, FAD-dependent amine oxidase O MAO-C|monoamine oxidase-C|renalase 20121230 -9606 55329 MNS1 - - HGNC:29636|MIM:610766|Ensembl:ENSG00000138587|HPRD:10967|Vega:OTTHUMG00000132034 15 15q21.3 meiosis-specific nuclear structural 1 protein-coding MNS1 meiosis-specific nuclear structural 1 O meiosis-specific nuclear structural protein 1 20121230 -9606 55330 BLOC1S4 - BCAS4L|CNO HGNC:24206|MIM:605695|Ensembl:ENSG00000186222|HPRD:12035|Vega:OTTHUMG00000125510 4 4p16.1 biogenesis of lysosomal organelles complex-1, subunit 4, cappuccino protein-coding BLOC1S4 biogenesis of lysosomal organelles complex-1, subunit 4, cappuccino O cappuccino homolog|protein cappuccino homolog 20121230 -9606 55331 ACER3 - APHC|PHCA HGNC:16066|Ensembl:ENSG00000078124|HPRD:17844|Vega:OTTHUMG00000165225 11 11q13.5 alkaline ceramidase 3 protein-coding ACER3 alkaline ceramidase 3 O alkCDase 3|alkaline CDase 3|alkaline dihydroceramidase SB89|alkaline phytoceramidase|phytoceramidase, alkaline 20121230 -9606 55332 DRAM1 - DRAM HGNC:25645|MIM:610776|Ensembl:ENSG00000136048|HPRD:07743|Vega:OTTHUMG00000170447 12 12q23.2 DNA-damage regulated autophagy modulator 1 protein-coding DRAM1 DNA-damage regulated autophagy modulator 1 O DNA damage-regulated autophagy modulator protein 1|damage-regulated autophagy modulator 20121230 -9606 55333 SYNJ2BP - ARIP2|OMP25 HGNC:18955|MIM:609411|Ensembl:ENSG00000213463|HPRD:15455|Vega:OTTHUMG00000171240 14 14q24.2 synaptojanin 2 binding protein protein-coding SYNJ2BP synaptojanin 2 binding protein O activin receptor interacting protein 5|mitochondrial outer membrane protein 25|synaptojanin-2-binding protein 20121230 -9606 55334 SLC39A9 UNQ714/PRO1377 ZIP-9|ZIP9 HGNC:20182|Ensembl:ENSG00000029364|HPRD:15387|Vega:OTTHUMG00000171232 14 14q24.1 solute carrier family 39 (zinc transporter), member 9 protein-coding SLC39A9 solute carrier family 39 (zinc transporter), member 9 O zinc transporter SLC39A9|zinc transporter ZIP9|zrt- and Irt-like protein 9 20121230 -9606 55335 NIPSNAP3B - NIPSNAP3 HGNC:23641|MIM:608872|Ensembl:ENSG00000165028|HPRD:16400|Vega:OTTHUMG00000020414 9 9q31.1 nipsnap homolog 3B (C. elegans) protein-coding NIPSNAP3B nipsnap homolog 3B (C. elegans) O SNAP1|protein NipSnap homolog 3B 20121230 -9606 55336 FBXL8 - FBL8 HGNC:17875|MIM:609077|Ensembl:ENSG00000135722|HPRD:16430|Vega:OTTHUMG00000137514 16 16q22.1 F-box and leucine-rich repeat protein 8 protein-coding FBXL8 F-box and leucine-rich repeat protein 8 O F-box protein FBL8|F-box/LRR-repeat protein 8 20121230 -9606 55337 C19orf66 - - HGNC:25649|Ensembl:ENSG00000130813|HPRD:07747|Vega:OTTHUMG00000180393 19 19p13.2 chromosome 19 open reading frame 66 protein-coding C19orf66 chromosome 19 open reading frame 66 O UPF0515 protein C19orf66 20121230 -9606 55338 FLJ11292 - - HPRD:13345 5 5q14.3 uncharacterized protein FLJ11292 other - - - - 20120909 -9606 55339 WDR33 - NET14|WDC146 HGNC:25651|Ensembl:ENSG00000136709|HPRD:11680|Vega:OTTHUMG00000131534 2 2q14.3 WD repeat domain 33 protein-coding WDR33 WD repeat domain 33 O WD repeat-containing protein 33|WD repeat-containing protein WDC146|pre-mRNA 3' end processing protein WDR33 20121230 -9606 55340 GIMAP5 - HIMAP3|IAN-5|IAN4|IAN4L1|IAN5|IMAP3|IROD HGNC:18005|MIM:608086|Ensembl:ENSG00000196329|HPRD:16280|Vega:OTTHUMG00000157542 7 7q36.1 GTPase, IMAP family member 5 protein-coding GIMAP5 GTPase, IMAP family member 5 O GTPase IMAP family member 5|immune associated nucleotide 4 like 1|immunity associated protein 3|immunity-associated nucleotide 5 protein|inhibitor of radiation- and OA-induced apoptosis, Irod/Ian5 20121230 -9606 55341 LSG1 - - HGNC:25652|MIM:610780|Ensembl:ENSG00000041802|HPRD:07748|Vega:OTTHUMG00000156021 3 3q29 large subunit GTPase 1 homolog (S. cerevisiae) protein-coding LSG1 large subunit GTPase 1 homolog (S. cerevisiae) O hLsg1|large subunit GTPase 1 homolog 20121230 -9606 55342 STRBP - ILF3L|SPNR|p74 HGNC:16462|MIM:611138|Ensembl:ENSG00000165209|HPRD:10257|Vega:OTTHUMG00000020636 9 9q33.3 spermatid perinuclear RNA binding protein protein-coding STRBP spermatid perinuclear RNA binding protein O spermatid perinuclear RNA-binding protein 20121230 -9606 55343 SLC35C1 - CDG2C|FUCT1 HGNC:20197|MIM:605881|Ensembl:ENSG00000181830|HPRD:09324|Vega:OTTHUMG00000166519 11 11p11.2 solute carrier family 35, member C1 protein-coding SLC35C1 solute carrier family 35, member C1 O GDP-fucose transporter 1 20121230 -9606 55344 PLCXD1 LL0XNC01-136G2.1 - HGNC:23148|HPRD:06516 X|Y Xp22.33; Yp11.32 phosphatidylinositol-specific phospholipase C, X domain containing 1 protein-coding PLCXD1 phosphatidylinositol-specific phospholipase C, X domain containing 1 O PI-PLC X domain-containing protein 1 20121230 -9606 55345 C4orf21 hCG_21296 - HGNC:25654|Ensembl:ENSG00000138658|HPRD:08562|Vega:OTTHUMG00000132908 4 4q25 chromosome 4 open reading frame 21 protein-coding C4orf21 chromosome 4 open reading frame 21 O prematurely terminated mRNA decay factor-like 20121230 -9606 55346 TCP11L1 - dJ85M6.3 HGNC:25655|Ensembl:ENSG00000176148|HPRD:07750|Vega:OTTHUMG00000165303 11 11p13 t-complex 11, testis-specific-like 1 protein-coding TCP11L1 t-complex 11, testis-specific-like 1 O T-complex protein 11-like protein 1|t-complex 11-like 1 20121230 -9606 55347 ABHD10 - - HGNC:25656|Ensembl:ENSG00000144827|HPRD:07751|Vega:OTTHUMG00000159280 3 3q13.2 abhydrolase domain containing 10 protein-coding ABHD10 abhydrolase domain containing 10 O abhydrolase domain-containing protein 10, mitochondrial 20121230 -9606 55349 CHDH - - HGNC:24288|Ensembl:ENSG00000016391|HPRD:13050|Vega:OTTHUMG00000158281 3 3p21.1 choline dehydrogenase protein-coding CHDH choline dehydrogenase O CDH|CHD|choline dehydrogenase, mitochondrial 20121230 -9606 55350 VNN3 - HSA238982 HGNC:16431|MIM:606592|HPRD:09420 6 6q23.2 vanin 3 pseudo VNN3 vanin 3 O - 20121230 -9606 55351 STK32B UNQ3003/PRO9744 HSA250839|STK32|STKG6|YANK2 HGNC:14217|Ensembl:ENSG00000152953|HPRD:15446|Vega:OTTHUMG00000090423 4 4p16.2 serine/threonine kinase 32B protein-coding STK32B serine/threonine kinase 32B O gene for serine/threonine protein kinase|serine/threonine-protein kinase 32B 20121230 -9606 55352 COPRS - C17orf79|COPR5|HSA272196|TTP1 HGNC:28848|Ensembl:ENSG00000172301|HPRD:13675|Vega:OTTHUMG00000132812 17 17q11.2 coordinator of PRMT5, differentiation stimulator protein-coding COPRS coordinator of PRMT5, differentiation stimulator O cooperator of PRMT5 20121230 -9606 55353 LAPTM4B PSEC0001 LAPTM4beta|LC27 HGNC:13646|MIM:613296|Ensembl:ENSG00000104341|Vega:OTTHUMG00000164740 8 8q22.1 lysosomal protein transmembrane 4 beta protein-coding LAPTM4B lysosomal protein transmembrane 4 beta O lysosomal associated protein transmembrane 4 beta|lysosomal-associated transmembrane protein 4B|lysosome-associated transmembrane protein 4-beta 20121230 -9606 55354 ORF1 - - - 18 18q23 uncharacterized protein, clone pT-Adv JuaX22 unknown - - - - 20120710 -9606 55355 HJURP - FAKTS|URLC9|hFLEG1 HGNC:25444|MIM:612667|Ensembl:ENSG00000123485|Vega:OTTHUMG00000059125 2 2q37.1 Holliday junction recognition protein protein-coding HJURP Holliday junction recognition protein O 14-3-3-associated AKT substrate|fetal liver expressing gene 1|fetal liver-expressing gene 1 protein|up-regulated in lung cancer 9 20121230 -9606 55356 SLC22A15 UNQ9429/PRO34686 FLIPT1|PRO34686 HGNC:20301|MIM:608275|Ensembl:ENSG00000163393|Vega:OTTHUMG00000012008 1 1p13.1 solute carrier family 22, member 15 protein-coding SLC22A15 solute carrier family 22, member 15 O flipt 1|fly-like putative organic ion transporter 1|fly-like putative transporter 1|solute carrier family 22 (organic cation transporter), member 15|solute carrier family 22 member 15|trans-like protein 20121230 -9606 55357 TBC1D2 RP11-404F11.2 PARIS-1|PARIS1|TBC1D2A HGNC:18026|MIM:609871|Ensembl:ENSG00000095383|Vega:OTTHUMG00000020343 9 9q22.33 TBC1 domain family, member 2 protein-coding TBC1D2 TBC1 domain family, member 2 O TBC1 domain family member 2A|TBC1 domain family, member 2A|armus|prostate antigen recognized and identified by SEREX 1 20121230 -9606 55359 STYK1 - NOK|SuRTK106 HGNC:18889|MIM:611433|Ensembl:ENSG00000060140|HPRD:15447|Vega:OTTHUMG00000168408 12 12p13.2 serine/threonine/tyrosine kinase 1 protein-coding STYK1 serine/threonine/tyrosine kinase 1 O novel oncogene with kinase domain|protein PK-unique|tyrosine-protein kinase STYK1 20121230 -9606 55361 PI4K2A - PI4KII|PIK42A|RP11-548K23.6 HGNC:30031|MIM:609763|Ensembl:ENSG00000155252|Ensembl:ENSG00000249967|HPRD:11431|Vega:OTTHUMG00000018863|Vega:OTTHUMG00000162272 10 10q24 phosphatidylinositol 4-kinase type 2 alpha protein-coding PI4K2A phosphatidylinositol 4-kinase type 2 alpha O phosphatidylinositol 4-kinase type 2-alpha|phosphatidylinositol 4-kinase type II (PI4KII)|phosphatidylinositol 4-kinase type II-alpha 20121230 -9606 55362 TMEM63B - C6orf110|RP3-421H19.2 HGNC:17735|Ensembl:ENSG00000137216|HPRD:16656|Vega:OTTHUMG00000014757 6 6p21.1 transmembrane protein 63B protein-coding TMEM63B transmembrane protein 63B O - 20121230 -9606 55363 HEMGN PRO1037 EDAG|EDAG-1 HGNC:17509|MIM:610715|Ensembl:ENSG00000136929|HPRD:17100|Vega:OTTHUMG00000020336 9 9q22.33 hemogen protein-coding HEMGN hemogen O erythroid differentiation-associated gene protein|hemopoietic gene protein|negative differentiation regulator protein 20121230 -9606 55364 IMPACT - RWDD5 HGNC:20387|Ensembl:ENSG00000154059|HPRD:13739|Vega:OTTHUMG00000131943 18 18q11.2-q12.1 impact RWD domain protein protein-coding IMPACT impact RWD domain protein O Impact homolog|RWD domain containing 5|imprinted and ancient gene protein homolog|protein IMPACT 20121230 -9606 55365 TMEM176A - GS188|HCA112 HGNC:24930|MIM:610334|Ensembl:ENSG00000002933|HPRD:13635|Vega:OTTHUMG00000158114 7 7q36.1 transmembrane protein 176A protein-coding TMEM176A transmembrane protein 176A O hepatocellular carcinoma-associated antigen 112|likley ortholog of mouse GS188 20121230 -9606 55366 LGR4 - GPR48 HGNC:13299|MIM:606666|Ensembl:ENSG00000205213|HPRD:05978|Vega:OTTHUMG00000133508 11 11p14-p13 leucine-rich repeat containing G protein-coupled receptor 4 protein-coding LGR4 leucine-rich repeat containing G protein-coupled receptor 4 O G protein-coupled receptor 48|leucine-rich repeat-containing G-protein coupled receptor 4 20121230 -9606 55367 PIDD - LRDD HGNC:16491|MIM:605247|Ensembl:ENSG00000177595|HPRD:11284|Vega:OTTHUMG00000133306 11 11p15.5 p53-induced death domain protein protein-coding PIDD p53-induced death domain protein O leucine-rich repeat and death domain-containing protein|leucine-rich repeats and death domain containing|p53-induced protein with a death domain 20121230 -9606 55370 PPP4R1L RP11-196N14.1 C20orf192|PRO1085 HGNC:15755|HPRD:17895 20 20q13.32 protein phosphatase 4, regulatory subunit 1-like pseudo PPP4R1L protein phosphatase 4, regulatory subunit 1-like O - 20121230 -9606 55374 TMCO6 PRO1580 - HGNC:28814|Ensembl:ENSG00000113119|HPRD:15177|Vega:OTTHUMG00000129497 5 5q31.3 transmembrane and coiled-coil domains 6 protein-coding TMCO6 transmembrane and coiled-coil domains 6 O transmembrane and coiled-coil domain-containing protein 6 20121230 -9606 55379 LRRC59 PRO1855 p34 HGNC:28817|MIM:614854|Ensembl:ENSG00000108829|HPRD:15181|Vega:OTTHUMG00000162079 17 17q21.33 leucine rich repeat containing 59 protein-coding LRRC59 leucine rich repeat containing 59 O leucine-rich repeat-containing protein 59 20121230 -9606 55380 EPS15P1 PRO1866 EPS15L2 HGNC:18166 7 7p12.3 epidermal growth factor receptor pathway substrate 15 pseudogene 1 pseudo EPS15P1 epidermal growth factor receptor pathway substrate 15 pseudogene 1 O - 20121230 -9606 55384 MEG3 - FP504|GTL2|LINC00023|NCRNA00023|PRO0518|PRO2160|prebp1 HGNC:14575|MIM:605636 14 14q32 maternally expressed 3 (non-protein coding) miscRNA MEG3 maternally expressed 3 (non-protein coding) O - 20121230 -9606 55387 PRO2214 - - - 5 5q12.2 uncharacterized protein PRO2214 unknown - - - - 20121120 -9606 55388 MCM10 PRO2249 CNA43|DNA43 HGNC:18043|MIM:609357|Ensembl:ENSG00000065328|HPRD:11297|Vega:OTTHUMG00000017694 10 10p13 minichromosome maintenance complex component 10 protein-coding MCM10 minichromosome maintenance complex component 10 O MCM10 minichromosome maintenance deficient 10|homolog of yeast MCM10|hsMCM10|protein MCM10 homolog 20121230 -9606 55389 AKIRIN2-AS1 - NCRNA00120|PRO2266 HGNC:28822 6 6q15 AKIRIN2 antisense RNA 1 miscRNA AKIRIN2-AS1 AKIRIN2 antisense RNA 1 O - 20121021 -9606 55390 PRO2268 - - MIM:614354 12 12q14.3 uncharacterized protein PRO2268 protein-coding - - - uncharacterized protein LOC55390 20120710 -9606 55410 NCRNA00185 - CYorf14|PRO2834 HGNC:18566 Y Yq11.222 non-protein coding RNA 185 miscRNA NCRNA00185 non-protein coding RNA 185 O - 20121230 -9606 55412 PRO2949 - - - 8 8q23.1 uncharacterized protein PRO2949 unknown - - - - 20121006 -9606 55415 PRO2964 - - - 2 2q32.1 uncharacterized protein PRO2964 unknown - - - - 20120710 -9606 55421 C17orf85 - ELG|HSA277841 HGNC:24612|Ensembl:ENSG00000074356|HPRD:17116|Vega:OTTHUMG00000177672 17 17p13.2 chromosome 17 open reading frame 85 protein-coding C17orf85 chromosome 17 open reading frame 85 O uncharacterized protein C17orf85 20121230 -9606 55422 ZNF331 - RITA|ZNF361|ZNF463 HGNC:15489|MIM:606043|Ensembl:ENSG00000130844|HPRD:05827|Vega:OTTHUMG00000163019 19 19q13.42 zinc finger protein 331 protein-coding ZNF331 zinc finger protein 331 O C2H2-like zinc finger protein rearranged in thyroid adenomas|KRAB zinc finger protein|zinc finger protein 361|zinc finger protein 463 20121230 -9606 55423 SIRPG RP11-77C3.2 CD172g|SIRP-B2|SIRPB2|SIRPgamma|bA77C3.1 HGNC:15757|MIM:605466|Ensembl:ENSG00000089012|Vega:OTTHUMG00000031680 20 20p13 signal-regulatory protein gamma protein-coding SIRPG signal-regulatory protein gamma O CD172 antigen-like family member B|CD172g antigen|SIRP beta 2|SIRP-beta-2|SIRP-gamma|signal-regulatory protein beta 2|signal-regulatory protein beta-2 20121230 -9606 55425 KIAA1704 AD029 LSR7|RP11-245H20.2|bA245H20.2 HGNC:20298|Ensembl:ENSG00000133114|HPRD:17225|Vega:OTTHUMG00000016841 13 13q13-q14 KIAA1704 protein-coding KIAA1704 KIAA1704 O lipopolysaccharide specific response-7 protein|lipopolysaccharide-specific response protein 7|uncharacterized protein KIAA1704 20121230 -9606 55432 YOD1 RP11-164O23.1 DUBA8|OTUD2|PRO0907 HGNC:25035|MIM:612023|Ensembl:ENSG00000180667|HPRD:10312|Vega:OTTHUMG00000036032 1 1q32.2 YOD1 OTU deubiquinating enzyme 1 homolog (S. cerevisiae) protein-coding YOD1 YOD1 OTU deubiquinating enzyme 1 homolog (S. cerevisiae) O DUBA-8|HIN-7|HIV-1-induced protease 7|OTU domain containing 2|OTU domain-containing protein 2|YOD1 OTU deubiquinating enzyme 1 homolog ( yeast)|hsHIN7|ubiquitin thioesterase OTU1 20121230 -9606 55435 AP1AR PRO0971 2C18|C4orf16|GBAR|gamma-BAR HGNC:28808|MIM:610851|Ensembl:ENSG00000138660|HPRD:12824|Vega:OTTHUMG00000132849 4 4q25 adaptor-related protein complex 1 associated regulatory protein protein-coding AP1AR adaptor-related protein complex 1 associated regulatory protein O AP-1 complex-associated regulatory protein|adapter-related protein complex 1-associated regulatory protein|gamma-1-adaptin brefeldin A resistance protein|gamma1-adaptin brefeldin A resistance protein, gamma-BAR 20121230 -9606 55437 STRADB PRO1038 ALS2CR2|CALS-21|ILPIP|ILPIPA|PAPK HGNC:13205|MIM:607333|Ensembl:ENSG00000082146|HPRD:09546|Vega:OTTHUMG00000132831 2 2q33.1 STE20-related kinase adaptor beta protein-coding STRADB STE20-related kinase adaptor beta O ILP-interacting protein ILPIPA|STE20-related kinase adapter protein beta|STRAD beta|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 2|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 2 protein|pseudokinase ALS2CR2 20121230 -9606 55448 PRO1483 - - - 11 11p13 uncharacterized LOC55448 unknown - - - - 20121006 -9606 55449 DHRS4-AS1 PRO1488 AS1DHRS4|C14orf167 HGNC:23175 14 14q11.2 DHRS4 antisense RNA 1 miscRNA DHRS4-AS1 DHRS4 antisense RNA 1 O - 20121230 -9606 55450 CAMK2N1 - PRO1489|RP11-401M16.1 HGNC:24190|MIM:614986|Ensembl:ENSG00000162545|HPRD:13112|Vega:OTTHUMG00000002837 1 1p36.12 calcium/calmodulin-dependent protein kinase II inhibitor 1 protein-coding CAMK2N1 calcium/calmodulin-dependent protein kinase II inhibitor 1 O CaMKIINalpha 20121230 -9606 55451 LINC00216 PRO1617 C14orf107|NCRNA00216 HGNC:20191 14 14q22.3 long intergenic non-protein coding RNA 216 miscRNA LINC00216 long intergenic non-protein coding RNA 216 O - 20120131 -9606 55454 CSGALNACT2 PRO0082 CHGN2|GALNACT-2|GALNACT2 HGNC:24292|Ensembl:ENSG00000169826|HPRD:11348|Vega:OTTHUMG00000018023 10 10q11.21 chondroitin sulfate N-acetylgalactosaminyltransferase 2 protein-coding CSGALNACT2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 O beta 4 GalNAcT-2|chondroitin beta1,4 N-acetylgalactosaminyltransferase 2 20121230 -9606 55460 PRO1082 - - - 3 3p21.1-q13.13 uncharacterized protein PRO1082 unknown - - - - 20121120 -9606 55461 PRO1167 - - - 11 11cen-q12.1 uncharacterized protein PRO1167 unknown - - - - 20121120 -9606 55466 DNAJA4 - MST104|MSTP104|PRO1472 HGNC:14885|Ensembl:ENSG00000140403|HPRD:09920|Vega:OTTHUMG00000143733 15 15q25.1 DnaJ (Hsp40) homolog, subfamily A, member 4 protein-coding DNAJA4 DnaJ (Hsp40) homolog, subfamily A, member 4 O dnaJ homolog subfamily A member 4 20121230 -9606 55471 NDUFAF7 PRO1853 C2orf56|MidA HGNC:28816|Ensembl:ENSG00000003509|HPRD:15180|Vega:OTTHUMG00000128468 2 2p22.2 NADH dehydrogenase (ubiquinone) complex I, assembly factor 7 protein-coding NDUFAF7 NADH dehydrogenase (ubiquinone) complex I, assembly factor 7 O mitochondrial dysfunction protein A homolog|protein midA homolog, mitochondrial 20121230 -9606 55472 RBM12B-AS1 PRO1905 C8orf39 HGNC:28818 8 8q22.1 RBM12B antisense RNA 1 miscRNA RBM12B-AS1 RBM12B antisense RNA 1 O - 20121230 -9606 55478 PRO2012 - - - 1 1q42.13 uncharacterized protein PRO2012 unknown - - - - 20121006 -9606 55486 PARL PRO2207 PSARL|PSARL1|PSENIP2|RHBDS1 HGNC:18253|MIM:607858|Ensembl:ENSG00000175193|HPRD:08484|Vega:OTTHUMG00000156890 3 3q27.1 presenilin associated, rhomboid-like protein-coding PARL presenilin associated, rhomboid-like O mitochondrial intramembrane cleaving protease PARL|mitochondrial intramembrane-cleaving protease PARL|presenilins-associated rhomboid-like protein, mitochondrial|rhomboid 7 homolog 1 20121230 -9606 55500 ETNK1 - EKI|EKI 1|EKI1|Nbla10396 HGNC:24649|MIM:609858|Ensembl:ENSG00000139163|HPRD:09934|Vega:OTTHUMG00000169008 12 12p12.1 ethanolamine kinase 1 protein-coding ETNK1 ethanolamine kinase 1 O putative protein product of Nbla10396 20121230 -9606 55501 CHST12 UNQ500/PRO1017 C4S-2|C4ST-2|C4ST2 HGNC:17423|MIM:610129|Ensembl:ENSG00000136213|HPRD:13056|Vega:OTTHUMG00000023849 7 7p22 carbohydrate (chondroitin 4) sulfotransferase 12 protein-coding CHST12 carbohydrate (chondroitin 4) sulfotransferase 12 O carbohydrate sulfotransferase 12|chondroitin 4-O-sulfotransferase 2|chondroitin 4-sulfotransferase 2|sulfotransferase Hlo 20121230 -9606 55502 HES6 - HES-6|bHLHb41|bHLHc23 HGNC:18254|MIM:610331|Ensembl:ENSG00000144485|HPRD:11021|Vega:OTTHUMG00000133340 2 2q37.3 hairy and enhancer of split 6 (Drosophila) protein-coding HES6 hairy and enhancer of split 6 (Drosophila) O C-HAIRY1|class B basic helix-loop-helix protein 41|transcription cofactor HES-6 20121230 -9606 55503 TRPV6 - ABP/ZF|CAT1|CATL|ECAC2|HSA277909|LP6728|ZFAB HGNC:14006|MIM:606680|Ensembl:ENSG00000165125|HPRD:05982|Vega:OTTHUMG00000157158 7 7q34 transient receptor potential cation channel, subfamily V, member 6 protein-coding TRPV6 transient receptor potential cation channel, subfamily V, member 6 O Alu-binding protein with zinc finger domain|caT-L|calcium channel CaT1|calcium transport protein 1|epithelial apical membrane calcium transporter/channel CaT1|epithelial calcium channel 2|transient receptor potential cation channel subfamily V member 6 20121230 -9606 55504 TNFRSF19 UNQ1888/PRO4333 TAJ|TAJ-alpha|TRADE|TROY HGNC:11915|MIM:606122|Ensembl:ENSG00000127863|HPRD:05838|Vega:OTTHUMG00000016568 13 13q12.11-q12.3 tumor necrosis factor receptor superfamily, member 19 protein-coding TNFRSF19 tumor necrosis factor receptor superfamily, member 19 O toxicity and JNK inducer|tumor necrosis factor receptor superfamily member 19 20121230 -9606 55505 NOP10 - DKCB1|NOLA3|NOP10P HGNC:14378|MIM:606471|Ensembl:ENSG00000182117|HPRD:07571|Vega:OTTHUMG00000129440 15 15q14-q15 NOP10 ribonucleoprotein protein-coding NOP10 NOP10 ribonucleoprotein O H/ACA ribonucleoprotein complex subunit 3|NOP10 ribonucleoprotein homolog|homolog of yeast Nop10p|nucleolar protein 10|nucleolar protein family A member 3|nucleolar protein family A, member 3 (H/ACA small nucleolar RNPs)|snoRNP protein NOP10 20121230 -9606 55506 H2AFY2 RP11-367H5.3 macroH2A2 HGNC:14453|Ensembl:ENSG00000099284|HPRD:13625|Vega:OTTHUMG00000018396 10 10q22.1 H2A histone family, member Y2 protein-coding H2AFY2 H2A histone family, member Y2 O core histone macro-H2A.2|core histone macroH2A2.2|histone macroH2A2|mH2A2 20121230 -9606 55507 GPRC5D - - HGNC:13310|MIM:607437|Ensembl:ENSG00000111291|HPRD:07604|Vega:OTTHUMG00000168711 12 12p13.3 G protein-coupled receptor, family C, group 5, member D protein-coding GPRC5D G protein-coupled receptor, family C, group 5, member D O G-protein coupled receptor family C group 5 member D|orphan G-protein coupled receptor 20121230 -9606 55508 SLC35E3 UNQ3043/PRO9859 BLOV1 HGNC:20864|Ensembl:ENSG00000175782|HPRD:15375|Vega:OTTHUMG00000169282 12 12q15 solute carrier family 35, member E3 protein-coding SLC35E3 solute carrier family 35, member E3 O bladder cancer overexpressed protein|bladder cancer-overexpressed gene 1 protein|solute carrier family 35 member E3|solute carrier family 35, member E2 20121230 -9606 55509 BATF3 - JDP1|JUNDM1|SNFT HGNC:28915|MIM:612470|Ensembl:ENSG00000123685|HPRD:18081|Vega:OTTHUMG00000036807 1 1q32.3 basic leucine zipper transcription factor, ATF-like 3 protein-coding BATF3 basic leucine zipper transcription factor, ATF-like 3 O 21 kDa small nuclear factor isolated from T-cells|21-kD small nuclear factor isolated from T cells|B-ATF-3|Jun dimerization protein 1|Jun dimerization protein p21SNFT|basic leucine zipper transcriptional factor ATF-like 3 20121230 -9606 55510 DDX43 - CT13|HAGE HGNC:18677|MIM:606286|Ensembl:ENSG00000080007|HPRD:10448|Vega:OTTHUMG00000015033 6 6q12-q13 DEAD (Asp-Glu-Ala-Asp) box polypeptide 43 protein-coding DDX43 DEAD (Asp-Glu-Ala-Asp) box polypeptide 43 O DEAD box protein 43|DEAD box protein HAGE|DEAD-box protein 43|cancer/testis antigen 13|helical antigen|probable ATP-dependent RNA helicase DDX43 20121230 -9606 55511 SAGE1 RP11-97N5.1 CT14|SAGE HGNC:30369|MIM:300359|Ensembl:ENSG00000181433|HPRD:02290|Vega:OTTHUMG00000022496 X Xq26 sarcoma antigen 1 protein-coding SAGE1 sarcoma antigen 1 O cancer/testis antigen 14|putative tumor antigen 20121230 -9606 55512 SMPD3 - NSMASE2 HGNC:14240|MIM:605777|Ensembl:ENSG00000103056|HPRD:16154|Vega:OTTHUMG00000137559 16 16q22.1 sphingomyelin phosphodiesterase 3, neutral membrane (neutral sphingomyelinase II) protein-coding SMPD3 sphingomyelin phosphodiesterase 3, neutral membrane (neutral sphingomyelinase II) O nSMase-2|neutral sphingomyelinase 2|neutral sphingomyelinase II|sphingomyelin phosphodiesterase 3 20121230 -9606 55515 ASIC4 - ACCN4|BNAC4 HGNC:21263|MIM:606715|Ensembl:ENSG00000072182|HPRD:16231|Vega:OTTHUMG00000058928 2 2q35 acid-sensing (proton-gated) ion channel family member 4 protein-coding ASIC4 acid-sensing (proton-gated) ion channel family member 4 O acid-sensing ion channel 4|amiloride-sensitive cation channel 4, pituitary|amiloride-sensitive cation channel family member 4, pituitary|brain sodium channel 4 20121230 -9606 55520 ELAC1 - D29 HGNC:14197|MIM:608079|Ensembl:ENSG00000141642|HPRD:16275|Vega:OTTHUMG00000132695 18 18q21 elaC homolog 1 (E. coli) protein-coding ELAC1 elaC homolog 1 (E. coli) O RNase Z 1|deleted in Ma29|elaC homolog protein 1|ribonuclease Z 1|tRNA 3 endonuclease 1|tRNA 3' processing endoribonuclease|tRNA Z (short form)|tRNase Z 1|tRNase ZS|zinc phosphodiesterase ELAC protein 1 20121230 -9606 55521 TRIM36 - HAPRIN|RBCC728|RNF98 HGNC:16280|MIM:609317|Ensembl:ENSG00000152503|HPRD:15554|Vega:OTTHUMG00000128892 5 5q22.3 tripartite motif containing 36 protein-coding TRIM36 tripartite motif containing 36 O E3 ubiquitin-protein ligase TRIM36|RING finger protein 98|tripartite motif protein 36|tripartite motif-containing 36|tripartite motif-containing protein 36|zinc-binding protein Rbcc728 20121230 -9606 55526 DHTKD1 - - HGNC:23537|MIM:614984|Ensembl:ENSG00000181192|HPRD:09917|Vega:OTTHUMG00000017677 10 10p14 dehydrogenase E1 and transketolase domain containing 1 protein-coding DHTKD1 dehydrogenase E1 and transketolase domain containing 1 O dehydrogenase E1 and transketolase domain-containing protein 1|probable 2-oxoglutarate dehydrogenase E1 component DHKTD1, mitochondrial 20121230 -9606 55527 FEM1A - EPRAP HGNC:16934|MIM:613538|Ensembl:ENSG00000141965|HPRD:16888 19 19p13.3 fem-1 homolog a (C. elegans) protein-coding FEM1A fem-1 homolog a (C. elegans) O FEM1-alpha|prostaglandin E receptor 4-associated protein|protein fem-1 homolog A 20121230 -9606 55529 TMEM55A - - HGNC:25452|MIM:609864|Ensembl:ENSG00000155099|HPRD:13233|Vega:OTTHUMG00000164019 8 8q21.3 transmembrane protein 55A protein-coding TMEM55A transmembrane protein 55A O PtdIns-4,5-P(2) 4-phosphatase type II|ptdIns-4,5-P2 4-Ptase II|type II phosphatidylinositol 4,5-bisphosphate 4-phosphatase 20121230 -9606 55530 SVOP - - HGNC:25417|MIM:611699|Ensembl:ENSG00000166111|HPRD:13224|Vega:OTTHUMG00000169432 12 12q24.11 SV2 related protein homolog (rat) protein-coding SVOP SV2 related protein homolog (rat) O SV2-related protein|synaptic vesicle 2-related protein 20121230 -9606 55531 ELMOD1 - - HGNC:25334|Ensembl:ENSG00000110675|HPRD:10934|Vega:OTTHUMG00000166361 11 11q22.3 ELMO/CED-12 domain containing 1 protein-coding ELMOD1 ELMO/CED-12 domain containing 1 O ELMO domain containing 1|ELMO domain-containing protein 1 20121230 -9606 55532 SLC30A10 - HMDPC|ZNT10|ZNT8|ZRC1|ZnT-10 HGNC:25355|MIM:611146|Ensembl:ENSG00000196660|HPRD:15367|Vega:OTTHUMG00000037434 1 1q41 solute carrier family 30, member 10 protein-coding SLC30A10 solute carrier family 30, member 10 O zinc transporter 10|zinc transporter 8 20121230 -9606 55534 MAML3 - CAGH3|ERDA3|GDN|MAM-2|MAM2|TNRC3 HGNC:16272|MIM:608991|Ensembl:ENSG00000196782|HPRD:10066|Vega:OTTHUMG00000161441 4 4q28 mastermind-like 3 (Drosophila) protein-coding MAML3 mastermind-like 3 (Drosophila) O CAG repeat containing (glia-derived nexin I alpha)|CAG repeat domain|expanded repeat domain, CAG/CTG 3|mam-3|mastermind-like protein 3|polyglutamine rich|trinucleotide repeat containing 3 20121230 -9606 55536 CDCA7L - JPO2|R1|RAM2 HGNC:30777|MIM:609685|Ensembl:ENSG00000164649|HPRD:11481|Vega:OTTHUMG00000128429 7 7p15.3 cell division cycle associated 7-like protein-coding CDCA7L cell division cycle associated 7-like O cell division cycle-associated 7-like protein|transcription factor RAM2 20121230 -9606 55539 KCNQ1DN - BWRT|HSA404617 HGNC:13335|MIM:610980|HPRD:17174 11 11p15.4|11p15.5 KCNQ1 downstream neighbor (non-protein coding) miscRNA KCNQ1DN KCNQ1 downstream neighbor (non-protein coding) O - 20121230 -9606 55540 IL17RB UNQ2501/PRO19612 CRL4|EVI27|IL17BR|IL17RH1 HGNC:18015|MIM:605458|Ensembl:ENSG00000056736|HPRD:05677|Vega:OTTHUMG00000158280 3 3p21.1 interleukin 17 receptor B protein-coding IL17RB interleukin 17 receptor B O IL-17 receptor B|IL-17 receptor homolog 1|IL-17B receptor|IL-17RB|IL-17Rh1|cytokine receptor CRL4|cytokine receptor-like 4|interleukin 17 receptor homolog 1|interleukin 17B receptor|interleukin-17 receptor B|interleukin-17B receptor 20121230 -9606 55544 RBM38 - HSRNASEB|RNPC1|SEB4B|SEB4D|dJ800J21.2 HGNC:15818|MIM:612428|Ensembl:ENSG00000132819|HPRD:15268|Vega:OTTHUMG00000032820 20 20q13.31 RNA binding motif protein 38 protein-coding RBM38 RNA binding motif protein 38 O CLL-associated antigen KW-5|RNA-binding protein 38|RNA-binding region (RNP1, RRM) containing 1|RNA-binding region-containing protein 1|ssDNA-binding protein SEB4 20121230 -9606 55545 MSX2P1 - HPX5|HSHPX5|MSX2P HGNC:24976 17 17q22 msh homeobox 2 pseudogene 1 pseudo MSX2P1 msh homeobox 2 pseudogene 1 O - 20121230 -9606 55547 HAB1 - - - 7 - B1 for mucin protein-coding - - - - 20120710 -9606 55552 ZNF823 - HSZFP36 HGNC:30936|Ensembl:ENSG00000197933|Vega:OTTHUMG00000156528 19 19p13.2 zinc finger protein 823 protein-coding ZNF823 zinc finger protein 823 O ZFP 36 for a zinc finger protein|ZFP-36 for a zinc finger protein|zinc finger protein ZFP-36 20121230 -9606 55553 SOX6 - HSSOX6|SOXD HGNC:16421|MIM:607257|Ensembl:ENSG00000110693|HPRD:06267|Vega:OTTHUMG00000165876 11 11p15.3 SRY (sex determining region Y)-box 6 protein-coding SOX6 SRY (sex determining region Y)-box 6 O SRY-box containing gene 6|transcription factor SOX-6 20121230 -9606 55554 KLK15 - ACO|HSRNASPH HGNC:20453|MIM:610601|Ensembl:ENSG00000174562|HPRD:07490 19 19q13.41 kallikrein-related peptidase 15 protein-coding KLK15 kallikrein-related peptidase 15 O ACO protease|kallikrein-15|kallikrein-like serine protease|prostinogen 20121230 -9606 55556 ENOSF1 - HSRTSBETA|RTS|TYMSAS HGNC:30365|MIM:607427|Ensembl:ENSG00000132199|Vega:OTTHUMG00000131470 18 18p11.32 enolase superfamily member 1 protein-coding ENOSF1 enolase superfamily member 1 O antisense RNA to thymidylate synthase|mitochondrial enolase superfamily member 1|rTS alpha|rTS beta 20121230 -9606 55558 PLXNA3 XX-FW81657B9.3 6.3|HSSEXGENE|PLEXIN-A3|PLXN3|PLXN4|SEX|XAP-6 HGNC:9101|MIM:300022|Ensembl:ENSG00000130827|HPRD:02062|Vega:OTTHUMG00000033290 X Xq28 plexin A3 protein-coding PLXNA3 plexin A3 O Sex chromosome X transmembrane protein of HGF receptor family 3|plexin-4|plexin-A3|semaphorin receptor SEX 20121230 -9606 55559 HAUS7 - UCHL5IP|UIP1 HGNC:32979|MIM:300540|Ensembl:ENSG00000213397|HPRD:18695|Vega:OTTHUMG00000159321 X Xq28 HAUS augmin-like complex, subunit 7 protein-coding HAUS7 HAUS augmin-like complex, subunit 7 O 26S proteasome-associated UCH37-interacting protein 1|HAUS augmin-like complex subunit 7|UCHL5 interacting protein|X-linked protein STS1769 20121230 -9606 55561 CDC42BPG - DMPK2|HSMDPKIN|KAPPA-200|MRCKG|MRCKgamma HGNC:29829|MIM:613991|Ensembl:ENSG00000171219|HPRD:13013|Vega:OTTHUMG00000045365 11 11q13.1 CDC42 binding protein kinase gamma (DMPK-like) protein-coding CDC42BPG CDC42 binding protein kinase gamma (DMPK-like) O CDC42-binding protein kinase gamma|DMPK-like gamma|MRCK gamma|myotonic dystrophy kinase-related CDC42-binding kinase gamma|myotonic dystrophy protein kinase like protein|myotonic dystrophy protein kinase-like alpha|myotonic dystrophy protein kinase-like gamma|serine/threonine-protein kinase MRCK gamma 20121230 -9606 55565 ZNF821 - - HGNC:28043|Ensembl:ENSG00000102984|HPRD:14244|Vega:OTTHUMG00000176874 16 16q22.2 zinc finger protein 821 protein-coding ZNF821 zinc finger protein 821 O - 20121230 -9606 55567 DNAH3 - DLP3|DNAHC3B|Hsadhc3 HGNC:2949|MIM:603334|Ensembl:ENSG00000158486|HPRD:04513|Vega:OTTHUMG00000090677 16 16p12.3 dynein, axonemal, heavy chain 3 protein-coding DNAH3 dynein, axonemal, heavy chain 3 O axonemal beta dynein heavy chain 3|axonemal dynein, heavy chain|ciliary dynein heavy chain 3|dnahc3-b|dynein heavy chain 3, axonemal|dynein, axonemal, heavy polypeptide 3 20121230 -9606 55568 GALNT10 - GALNACT10|PPGALNACT10|PPGANTASE10 HGNC:19873|MIM:608043|Ensembl:ENSG00000164574|HPRD:12157|Vega:OTTHUMG00000130145 5 5q33.2 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 10 (GalNAc-T10) protein-coding GALNT10 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 10 (GalNAc-T10) O GalNAc transferase 10|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 10|polypeptide N-acetylgalactosaminyltransferase 10 20121230 -9606 55571 C2orf29 C40 - HGNC:25217|Ensembl:ENSG00000158435|HPRD:12812|Vega:OTTHUMG00000130686 2 2q11.2 chromosome 2 open reading frame 29 protein-coding C2orf29 chromosome 2 open reading frame 29 O UPF0760 protein C2orf29 20121230 -9606 55572 FOXRED1 FP634 H17 HGNC:26927|MIM:613622|Ensembl:ENSG00000110074|HPRD:13620|Vega:OTTHUMG00000165827 11 11q24.2 FAD-dependent oxidoreductase domain containing 1 protein-coding FOXRED1 FAD-dependent oxidoreductase domain containing 1 O FAD-dependent oxidoreductase domain-containing protein 1 20121230 -9606 55573 CDV3 - H41 HGNC:26928|Ensembl:ENSG00000091527|HPRD:13627|Vega:OTTHUMG00000159764 3 3q22.1 CDV3 homolog (mouse) protein-coding CDV3 CDV3 homolog (mouse) O carnitine deficiency-associated gene expressed in ventricle 3|protein CDV3 homolog 20121230 -9606 55576 STAB2 - FEEL2|FELE-2|FELL2|FEX2|HARE HGNC:18629|MIM:608561|Ensembl:ENSG00000136011|HPRD:10542|Vega:OTTHUMG00000170056 12 12q23.3 stabilin 2 protein-coding STAB2 stabilin 2 O CD44-like precursor FELL|FAS1 EGF-like and X-link domain containing adhesion molecule-2|fasciclin egf-like, laminin-type egf-like, and link domain-containing scavenger receptor-2|hepatic hyaluronan clearance receptor|hyaluronan receptor for endocytosis|hyaluronic acid receptor for endocytosis|stabilin-2 20121230 -9606 55577 NAGK - GNK|HSA242910 HGNC:17174|MIM:606828|Ensembl:ENSG00000124357|HPRD:08441|Vega:OTTHUMG00000153239 2 2p13.3 N-acetylglucosamine kinase protein-coding NAGK N-acetylglucosamine kinase O N-acetyl-D-glucosamine kinase|glcNAc kinase 20121230 -9606 55578 SUPT20H FP757 C13|C13orf19|FAM48A|P38IP|SPT20|bA421P11.4 HGNC:20596|MIM:613417|Ensembl:ENSG00000102710|HPRD:10135|Vega:OTTHUMG00000016747 13 13q13.3 suppressor of Ty 20 homolog (S. cerevisiae) protein-coding SUPT20H suppressor of Ty 20 homolog (S. cerevisiae) O family with sequence similarity 48, member A|p38 interacting protein|p38-interacting protein|protein FAM48A|transcription factor (p38 interacting protein)|tumor rejection antigen 20121230 -9606 55582 KIF27 - - HGNC:18632|MIM:611253|Ensembl:ENSG00000165115|HPRD:11179|Vega:OTTHUMG00000020109 9 9q21.32 kinesin family member 27 protein-coding KIF27 kinesin family member 27 O kinesin-like protein KIF27 20121230 -9606 55584 CHRNA9 - HSA243342|NACHRA9 HGNC:14079|MIM:605116|Ensembl:ENSG00000174343|HPRD:16092|Vega:OTTHUMG00000099375 4 4p14 cholinergic receptor, nicotinic, alpha 9 (neuronal) protein-coding CHRNA9 cholinergic receptor, nicotinic, alpha 9 (neuronal) O NACHR alpha 9|acetylcholine receptor, neuronal nicotinic, alpha-9 subunit|cholinergic receptor, nicotinic, alpha polypeptide 9|neuronal acetylcholine receptor protein, alpha-9 subunit|neuronal acetylcholine receptor subunit alpha-9|nicotinic acetylcholine receptor subunit alpha 9 20121230 -9606 55585 UBE2Q1 PRO3094 GTAP|NICE-5|UBE2Q HGNC:15698|Ensembl:ENSG00000160714|HPRD:15601|Vega:OTTHUMG00000037265 1 1q21.3 ubiquitin-conjugating enzyme E2Q family member 1 protein-coding UBE2Q1 ubiquitin-conjugating enzyme E2Q family member 1 O galactosyl transferase-associated protein|protein NICE-5|ubiquitin carrier protein Q1|ubiquitin-conjugating enzyme E2 Q1|ubiquitin-conjugating enzyme E2Q (putative) 1|ubiquitin-protein ligase Q1 20121230 -9606 55586 MIOX RP4-579N16.11-001 ALDRL6 HGNC:14522|MIM:606774|Ensembl:ENSG00000100253|HPRD:12443|Vega:OTTHUMG00000150207 22 22q13.3 myo-inositol oxygenase protein-coding MIOX myo-inositol oxygenase O MI oxygenase|aldehyde reductase (aldose reductase) like 6|aldehyde reductase-like 6|inositol oxygenase|kidney-specific protein 32|renal-specific oxidoreductase 20121230 -9606 55588 MED29 - IXL HGNC:23074|MIM:612914|Ensembl:ENSG00000063322|HPRD:13748 19 19q13.2 mediator complex subunit 29 protein-coding MED29 mediator complex subunit 29 O intersex-like protein|mediator of RNA polymerase II transcription subunit 29 20121230 -9606 55589 BMP2K HRIHFB2017 BIKE HGNC:18041|Ensembl:ENSG00000138756|HPRD:09828|Vega:OTTHUMG00000160900 4 4q21.21 BMP2 inducible kinase protein-coding BMP2K BMP2 inducible kinase O BMP-2-inducible protein kinase 20121230 -9606 55591 VEZT - VEZATIN HGNC:18258|Ensembl:ENSG00000028203|HPRD:11671|Vega:OTTHUMG00000170182 12 12q22 vezatin, adherens junctions transmembrane protein protein-coding VEZT vezatin, adherens junctions transmembrane protein O vezatin 20121230 -9606 55592 GOLGA2P5 PP1757 GOLGA2B|GOLGA2L1 HGNC:25315|HPRD:13195 12 12q23.1 golgin A2 pseudogene 5 pseudo GOLGA2P5 golgin A2 pseudogene 5 O - 20121230 -9606 55593 OTUD5 - DUBA HGNC:25402|MIM:300713|Ensembl:ENSG00000068308|HPRD:06488|Vega:OTTHUMG00000024130 X Xp11.23 OTU domain containing 5 protein-coding OTUD5 OTU domain containing 5 O OTU domain-containing protein 5|deubiquinating enzyme A|deubiquitinating enzyme A 20121230 -9606 55596 ZCCHC8 - - HGNC:25265|Ensembl:ENSG00000033030|HPRD:11698 12 12q24.31 zinc finger, CCHC domain containing 8 protein-coding ZCCHC8 zinc finger, CCHC domain containing 8 O zinc finger CCHC domain-containing protein 8 20121230 -9606 55599 RNPC3 - RBM40|RNP HGNC:18666|Ensembl:ENSG00000185946|HPRD:15267|Vega:OTTHUMG00000166613 1 1p21 RNA-binding region (RNP1, RRM) containing 3 protein-coding RNPC3 RNA-binding region (RNP1, RRM) containing 3 O RNA recognition protein|RNA-binding motif protein 40|RNA-binding protein 40|RNA-binding region-containing protein 3|U11/U12 small nuclear ribonucleoprotein 65 kDa protein|U11/U12 snRNP 65 kDa protein|U11/U12 snRNP 65K|U11/U12-65K 20121230 -9606 55600 ITLN1 UNQ640/PRO1270 HL-1|HL1|INTL|ITLN|LFR|hIntL|omentin HGNC:18259|MIM:609873|Ensembl:ENSG00000179914|HPRD:17165|Vega:OTTHUMG00000028604 1 1q21.3 intelectin 1 (galactofuranose binding) protein-coding ITLN1 intelectin 1 (galactofuranose binding) O ITLN-1|endothelial lectin HL-1|galactofuranose-binding lectin|intelectin-1|intestinal lactoferrin receptor 20121230 -9606 55601 DDX60 - - HGNC:25942|MIM:613974|Ensembl:ENSG00000137628|HPRD:07877|Vega:OTTHUMG00000161350 4 4q32.3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 60 protein-coding DDX60 DEAD (Asp-Glu-Ala-Asp) box polypeptide 60 O DEAD box protein 60|probable ATP-dependent RNA helicase DDX60 20121230 -9606 55602 CDKN2AIP - CARF HGNC:24325|Ensembl:ENSG00000168564|HPRD:16683|Vega:OTTHUMG00000160626 4 4q35.1 CDKN2A interacting protein protein-coding CDKN2AIP CDKN2A interacting protein O CDKN2A-interacting protein|collaborates/cooperates with ARF (alternate reading frame) protein|collaborator of ARF 20121230 -9606 55603 FAM46A RP1-300G12.3 C6orf37|XTP11 HGNC:18345|MIM:611357|Ensembl:ENSG00000112773|HPRD:13311|Vega:OTTHUMG00000015097 6 6q14 family with sequence similarity 46, member A protein-coding FAM46A family with sequence similarity 46, member A O HBV X-transactivated gene 11 protein|HBV XAg-transactivated protein 11|protein FAM46A|retinal expressed gene C6orf37 20121230 -9606 55604 LRRC16A - CARMIL|CARMIL1|CARMIL1a|LRRC16|dJ501N12.1|dJ501N12.5 HGNC:21581|MIM:609593|Ensembl:ENSG00000079691|HPRD:11285|Vega:OTTHUMG00000014393 6 6p22.2 leucine rich repeat containing 16A protein-coding LRRC16A leucine rich repeat containing 16A O CARMIL homolog|capping protein, Arp2/3, and Myosin-I Linker homolog 1|leucine rich repeat containing 16|leucine-rich repeat-containing protein 16A 20121230 -9606 55605 KIF21A - CFEOM1|FEOM1|FEOM3A HGNC:19349|MIM:608283|Ensembl:ENSG00000139116|HPRD:10506|Vega:OTTHUMG00000169335 12 12q12 kinesin family member 21A protein-coding KIF21A kinesin family member 21A O kinesin-like protein KIF2|kinesin-like protein KIF21A|renal carcinoma antigen NY-REN-62 20121230 -9606 55607 PPP1R9A - NRB1|NRBI|Neurabin-I HGNC:14946|MIM:602468|Ensembl:ENSG00000158528|Vega:OTTHUMG00000155566 7 7q21.3 protein phosphatase 1, regulatory subunit 9A protein-coding PPP1R9A protein phosphatase 1, regulatory subunit 9A O neurabin-1|neural tissue-specific F-actin-binding protein I|protein phosphatase 1, regulatory (inhibitor) subunit 9A 20121230 -9606 55608 ANKRD10 RP11-120J20.3 - HGNC:20265|Ensembl:ENSG00000088448|HPRD:12455|Vega:OTTHUMG00000017349 13 13q34 ankyrin repeat domain 10 protein-coding ANKRD10 ankyrin repeat domain 10 O ankyrin repeat domain-containing protein 10 20121230 -9606 55609 ZNF280C RP3-438D16.3 SUHW3|ZNF633 HGNC:25955|Ensembl:ENSG00000056277|HPRD:06526|Vega:OTTHUMG00000022393 X Xq26.1 zinc finger protein 280C protein-coding ZNF280C zinc finger protein 280C O suppressor of hairy wing homolog 3|zinc finger protein 633 20121230 -9606 55610 CCDC132 - - HGNC:25956|Ensembl:ENSG00000004766|Vega:OTTHUMG00000131733 7 7q21.3 coiled-coil domain containing 132 protein-coding CCDC132 coiled-coil domain containing 132 O coiled-coil domain-containing protein 132 20121230 -9606 55611 OTUB1 HSPC263 OTB1|OTU1 HGNC:23077|MIM:608337|Ensembl:ENSG00000167770|HPRD:08493|Vega:OTTHUMG00000167786 11 11q13.1 OTU domain, ubiquitin aldehyde binding 1 protein-coding OTUB1 OTU domain, ubiquitin aldehyde binding 1 O OTU domain-containing ubiquitin aldehyde-binding protein 1|OTU-domain Ubal-binding 1|deubiquitinating enzyme OTUB1|otubain-1|ubiquitin thioesterase OTUB1|ubiquitin-specific protease otubain 1|ubiquitin-specific-processing protease OTUB1 20121230 -9606 55612 FERMT1 RP5-1056H1.1 C20orf42|DTGCU2|KIND1|UNC112A|URP1 HGNC:15889|MIM:607900|Ensembl:ENSG00000101311|HPRD:06388|Vega:OTTHUMG00000031826 20 20p12.3 fermitin family member 1 protein-coding FERMT1 fermitin family member 1 O UNC112 related protein 1|fermitin family homolog 1|kindlerin|kindlin 1|kindlin syndrome protein|unc-112-related protein 1 20121230 -9606 55613 MTMR8 RP11-284B18.5 - HGNC:16825|Ensembl:ENSG00000102043|HPRD:06664|Vega:OTTHUMG00000021707 X Xq11.2 myotubularin related protein 8 protein-coding MTMR8 myotubularin related protein 8 O myotubularin-related protein 8 20121230 -9606 55614 KIF16B RP5-971B4.1 C20orf23|KISC20ORF|SNX23 HGNC:15869|Ensembl:ENSG00000089177|HPRD:10731|Vega:OTTHUMG00000031927 20 20p11.23 kinesin family member 16B protein-coding KIF16B kinesin family member 16B O kinesin motor protein|kinesin-like protein KIF16B|sorting nexin 23 20121230 -9606 55615 PRR5 RP1-181C9.3 FLJ20185k|PP610|PROTOR-1|PROTOR1 HGNC:31682|MIM:609406|Ensembl:ENSG00000186654|HPRD:18696|Vega:OTTHUMG00000150460 22 22q13 proline rich 5 (renal) protein-coding PRR5 proline rich 5 (renal) O Rho GTPase activating protein 8|proline-rich protein 5|protein observed with Rictor-1 20121230 -9606 55616 ASAP3 - ACAP4|CENTB6|DDEFL1|UPLC1 HGNC:14987|Ensembl:ENSG00000088280|HPRD:11662|Vega:OTTHUMG00000003234 1 1p36.12 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 protein-coding ASAP3 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 O ARF6 GTPase-activating protein|ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 1|arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 3|centaurin, beta 6|development and differentiation enhancing factor-like 1|development and differentiation-enhancing factor-like 1|protein up-regulated in liver cancer 1|up-regulated in liver cancer 1 (UPLC1) 20121230 -9606 55617 TASP1 RP4-585I14.1 C20orf13|dJ585I14.2 HGNC:15859|MIM:608270|Ensembl:ENSG00000089123|HPRD:07460|Vega:OTTHUMG00000031904 20 20p12.1 taspase, threonine aspartase, 1 protein-coding TASP1 taspase, threonine aspartase, 1 O taspase 1|taspase-1|threonine aspartase 1 20121230 -9606 55619 DOCK10 - DRIP2|Nbla10300|ZIZ3 HGNC:23479|MIM:611518|Ensembl:ENSG00000135905|HPRD:10919|Vega:OTTHUMG00000153428 2 2q36.2 dedicator of cytokinesis 10 protein-coding DOCK10 dedicator of cytokinesis 10 O dedicator of cytokinesis protein 10|dopamine receptor interacting protein 2|protein zizimin 3|zizimin-3|zizimin3 20121230 -9606 55620 STAP2 - BKS HGNC:30430|MIM:607881|Ensembl:ENSG00000178078|HPRD:07430 19 19p13.3 signal transducing adaptor family member 2 protein-coding STAP2 signal transducing adaptor family member 2 O BRK substrate|breast tumor kinase substrate|brk kinase substrate|signal-transducing adaptor protein 2|signal-transducing adaptor protein-2 20121230 -9606 55621 TRMT1 - TRM1 HGNC:25980|MIM:611669|Ensembl:ENSG00000104907|HPRD:08617|Vega:OTTHUMG00000180730 19 19p13.2 tRNA methyltransferase 1 homolog (S. cerevisiae) protein-coding TRMT1 tRNA methyltransferase 1 homolog (S. cerevisiae) O N(2),N(2)-dimethylguanosine tRNA methyltransferase|TRM1 tRNA methyltransferase 1 homolog|tRNA (guanine(26)-N(2))-dimethyltransferase|tRNA 2,2-dimethylguanosine-26 methyltransferase|tRNA(guanine-26,N(2)-N(2)) methyltransferase|tRNA(m(2,2)G26)dimethyltransferase 20121230 -9606 55622 TTC27 - - HGNC:25986|Ensembl:ENSG00000018699|HPRD:08618|Vega:OTTHUMG00000152134 2 2p22.3 tetratricopeptide repeat domain 27 protein-coding TTC27 tetratricopeptide repeat domain 27 O TPR repeat protein 27|tetratricopeptide repeat protein 27 20121230 -9606 55623 THUMPD1 - - HGNC:23807|Ensembl:ENSG00000066654|HPRD:08619|Vega:OTTHUMG00000131558 16 16p12.3 THUMP domain containing 1 protein-coding THUMPD1 THUMP domain containing 1 O THUMP domain-containing protein 1 20121230 -9606 55624 POMGNT1 RP11-322N21.3 GNTI.2|GnT I.2|LGMD2O|MDDGA3|MDDGB3|MDDGC3|MEB|MGAT1.2|gnT-I.2 HGNC:19139|MIM:606822|Ensembl:ENSG00000085998|HPRD:09493|Vega:OTTHUMG00000007604 1 1p34.1 protein O-linked mannose beta1,2-N-acetylglucosaminyltransferase protein-coding POMGNT1 protein O-linked mannose beta1,2-N-acetylglucosaminyltransferase O UDP-GlcNAc:alpha-D-mannoside beta-1,2-N-acetylglucosaminyltransferase I.2|protein O-linked-mannose beta-1,2-N-acetylglucosaminyltransferase 1 20121230 -9606 55625 ZDHHC7 - DHHC7|SERZ-B|SERZ1|ZNF370 HGNC:18459|MIM:614604|Ensembl:ENSG00000153786|HPRD:15722|Vega:OTTHUMG00000137645 16 16q24.1 zinc finger, DHHC-type containing 7 protein-coding ZDHHC7 zinc finger, DHHC-type containing 7 O DHHC-7|Sertoli cell gene with zinc finger domain-β|palmitoyltransferase ZDHHC7|zinc finger DHHC domain-containing protein 7|zinc finger protein 370|zinc finger, DHHC domain containing 7 20121230 -9606 55626 AMBRA1 - DCAF3|WDR94 HGNC:25990|MIM:611359|Ensembl:ENSG00000110497|HPRD:10975|Vega:OTTHUMG00000166500 11 11p11.2 autophagy/beclin-1 regulator 1 protein-coding AMBRA1 autophagy/beclin-1 regulator 1 O DDB1 and CUL4 associated factor 3|WD repeat domain 94|activating molecule in BECN1-regulated autophagy protein 1|activating molecule in beclin-1-regulated autophagy 20121230 -9606 55627 SMPD4 - NET13|NSMASE-3|NSMASE3 HGNC:32949|MIM:610457|Ensembl:ENSG00000136699|HPRD:13374|Vega:OTTHUMG00000131624 2 2q21.1 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) protein-coding SMPD4 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) O SKNY protein|neutral sphingomyelinase 3|neutral sphingomyelinase III|sphingomyelin phosphodiesterase 4 20121230 -9606 55628 ZNF407 - - HGNC:19904|Ensembl:ENSG00000215421|HPRD:11713|Vega:OTTHUMG00000179122 18 18q23 zinc finger protein 407 protein-coding ZNF407 zinc finger protein 407 O - 20121230 -9606 55629 PNRC2 RP11-4M23.5 - HGNC:23158|MIM:611882|Ensembl:ENSG00000189266|HPRD:17871|Vega:OTTHUMG00000013891 1 1p36.11 proline-rich nuclear receptor coactivator 2 protein-coding PNRC2 proline-rich nuclear receptor coactivator 2 O - 20121230 -9606 55630 SLC39A4 - AEZ|AWMS2|ZIP4 HGNC:17129|MIM:607059|Ensembl:ENSG00000147804|HPRD:06137|Vega:OTTHUMG00000165208 8 8q24.3 solute carrier family 39 (zinc transporter), member 4 protein-coding SLC39A4 solute carrier family 39 (zinc transporter), member 4 O ZIP-4|solute carrier family 39 member 4|zinc transporter ZIP4|zrt- and Irt-like protein 4 20121230 -9606 55631 LRRC40 RP4-677H15.1 dJ677H15.1 HGNC:26004|Ensembl:ENSG00000066557|HPRD:08622|Vega:OTTHUMG00000009348 1 1p31.1 leucine rich repeat containing 40 protein-coding LRRC40 leucine rich repeat containing 40 O leucine-rich repeat-containing protein 40 20121230 -9606 55632 G2E3 - KIAA1333|PHF7B HGNC:20338|MIM:611299|Ensembl:ENSG00000092140|HPRD:13851|Vega:OTTHUMG00000140204 14 14q12 G2/M-phase specific E3 ubiquitin protein ligase protein-coding G2E3 G2/M-phase specific E3 ubiquitin protein ligase O G2/M phase-specific E3 ubiquitin-protein ligase|G2/M-phase specific E3 ubiquitin ligase|PHD finger protein 7B 20121230 -9606 55633 TBC1D22B - C6orf197|RP4-744I24.2|dJ744I24.2 HGNC:21602|Ensembl:ENSG00000065491|HPRD:15475|Vega:OTTHUMG00000014619 6 6p21.2 TBC1 domain family, member 22B protein-coding TBC1D22B TBC1 domain family, member 22B O TBC1 domain family member 22B 20121230 -9606 55634 ZNF673 RP4-733D15.4 - HGNC:26007|MIM:300585|Ensembl:ENSG00000147121|HPRD:06530|Vega:OTTHUMG00000021421 X Xp11.3 zinc finger family member 673 protein-coding ZNF673 zinc finger family member 673 O protein ZNF673|putative zinc finger transcription factor|zinc finger protein 673 20121230 -9606 55635 DEPDC1 - DEP.8|DEPDC1-V2|DEPDC1A|SDP35 HGNC:22949|MIM:612002|Ensembl:ENSG00000024526|HPRD:10879|Vega:OTTHUMG00000009212 1 1p31.2 DEP domain containing 1 protein-coding DEPDC1 DEP domain containing 1 O 5830484J08Rik|DEP domain-containing protein 1A|cell cycle control protein SDP35 20121230 -9606 55636 CHD7 - HH5|IS3|KAL5 HGNC:20626|MIM:608892|Ensembl:ENSG00000171316|HPRD:10595|Vega:OTTHUMG00000165332 8 8q12.2 chromodomain helicase DNA binding protein 7 protein-coding CHD7 chromodomain helicase DNA binding protein 7 O ATP-dependent helicase CHD7|chromodomain helicase DNA binding protein 7 isoform CRA_e|chromodomain-helicase-DNA-binding protein 7 20121230 -9606 55638 SYBU - GOLSYN|OCSYN|SNPHL HGNC:26011|MIM:611568|Ensembl:ENSG00000147642|HPRD:07902|Vega:OTTHUMG00000165634 8 8q23.2 syntabulin (syntaxin-interacting) protein-coding SYBU syntabulin (syntaxin-interacting) O GOLSYN A protein|GOLSYN B protein|GOLSYN C protein|Golgi-localized protein|golgi-localized syntaphilin-related protein|implicated in syntaxin trafficking in neurons|microtubule-associated protein|syntabulin|syntaxin-1-binding protein 20121230 -9606 55640 FLVCR2 - C14orf58|CCT|EPV|FLVCRL14q|MFSD7C|PVHH HGNC:20105|MIM:610865|Ensembl:ENSG00000119686|HPRD:12654|Vega:OTTHUMG00000171487 14 14q24.3 feline leukemia virus subgroup C cellular receptor family, member 2 protein-coding FLVCR2 feline leukemia virus subgroup C cellular receptor family, member 2 O calcium-chelate transporter|feline leukemia virus subgroup C receptor-related protein 2 20121230 -9606 55643 BTBD2 - - HGNC:15504|MIM:608531|Ensembl:ENSG00000133243|HPRD:12252|Vega:OTTHUMG00000180017 19 19p13.3 BTB (POZ) domain containing 2 protein-coding BTBD2 BTB (POZ) domain containing 2 O BTB/POZ domain-containing protein 2 20121230 -9606 55644 OSGEP - GCPL1|KAE1|OSGEP1|PRSMG1 HGNC:18028|MIM:610107|Ensembl:ENSG00000092094|HPRD:10133|Vega:OTTHUMG00000029543 14 14q11.2 O-sialoglycoprotein endopeptidase protein-coding OSGEP O-sialoglycoprotein endopeptidase O hOSGEP|probable O-sialoglycoprotein endopeptidase|probable tRNA threonylcarbamoyladenosine biosynthesis protein OSGEP|t(6)A37 threonylcarbamoyladenosine biosynthesis protein OSGEP 20121230 -9606 55646 LYAR PNAS-5 ZLYAR HGNC:26021|Ensembl:ENSG00000145220|HPRD:10064|Vega:OTTHUMG00000125477 4 4p16.3 Ly1 antibody reactive protein-coding LYAR Ly1 antibody reactive O Ly1 antibody reactive homolog|cell growth-regulating nucleolar protein 20121230 -9606 55647 RAB20 - - HGNC:18260|Ensembl:ENSG00000139832|HPRD:06694|Vega:OTTHUMG00000017343 13 13q34 RAB20, member RAS oncogene family protein-coding RAB20 RAB20, member RAS oncogene family O ras-related protein Rab-20 20121230 -9606 55650 PIGV RP1-50O24.2 GPI-MT-II|HPMRS1|PIG-V HGNC:26031|MIM:610274|Ensembl:ENSG00000060642|HPRD:07912|Vega:OTTHUMG00000004005 1 1p36.11 phosphatidylinositol glycan anchor biosynthesis, class V protein-coding PIGV phosphatidylinositol glycan anchor biosynthesis, class V O GPI mannosyltransferase 2|GPI mannosyltransferase II|Ybr004c homolog 20121230 -9606 55651 NHP2 HSPC286 DKCB2|NHP2P|NOLA2 HGNC:14377|MIM:606470|Ensembl:ENSG00000145912|HPRD:07570|Vega:OTTHUMG00000130886 5 5q35.3 NHP2 ribonucleoprotein protein-coding NHP2 NHP2 ribonucleoprotein O H/ACA ribonucleoprotein complex subunit 2|NHP2 ribonucleoprotein homolog|NHP2-like protein|nucleolar protein family A, member 2 (H/ACA small nucleolar RNPs)|snoRNP protein NHP2 20121230 -9606 55652 SLC48A1 - HRG-1|HRG1|hHRG-1 HGNC:26035|MIM:612187|Ensembl:ENSG00000211584|HPRD:07916|Vega:OTTHUMG00000156983 12 12q13.11 solute carrier family 48 (heme transporter), member 1 protein-coding SLC48A1 solute carrier family 48 (heme transporter), member 1 O heme transporter HRG1|heme-responsive gene 1 protein homolog|solute carrier family 48 member 1 20121230 -9606 55653 BCAS4 RP5-1071L10.2 CNOL HGNC:14367|MIM:607471|Ensembl:ENSG00000124243|HPRD:06314|Vega:OTTHUMG00000032735 20 20q13.13 breast carcinoma amplified sequence 4 protein-coding BCAS4 breast carcinoma amplified sequence 4 O BCAS4/BCAS3 fusion|breast carcinoma amplified sequence 4/3 fusion protein|breast carcinoma-amplified sequence 4 20121230 -9606 55654 TMEM127 - - HGNC:26038|MIM:613403|Ensembl:ENSG00000135956|HPRD:07917|Vega:OTTHUMG00000130454 2 2q11.2 transmembrane protein 127 protein-coding TMEM127 transmembrane protein 127 O - 20121230 -9606 55655 NLRP2 XXbac-BPG230H20.8 CLR19.9|NALP2|NBS1|PAN1|PYPAF2 HGNC:22948|MIM:609364|Ensembl:ENSG00000022556|HPRD:14805|Vega:OTTHUMG00000167763 19 19q13.42 NLR family, pyrin domain containing 2 protein-coding NLRP2 NLR family, pyrin domain containing 2 O NACHT, LRR and PYD containing protein 2|NACHT, LRR and PYD domains-containing protein 2|NACHT, leucine rich repeat and PYD containing 2|PYRIN domain and NACHT domain-containing protein 1|PYRIN-containing APAF1-like protein 2|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 2|nucleotide-binding site protein 1 20121230 -9606 55656 INTS8 - C8orf52|INT8 HGNC:26048|MIM:611351|Ensembl:ENSG00000164941|HPRD:08626|Vega:OTTHUMG00000164695 8 8q22.1 integrator complex subunit 8 protein-coding INTS8 integrator complex subunit 8 O protein kaonashi-1 20121230 -9606 55657 ZNF692 - AREBP|Zfp692 HGNC:26049|Ensembl:ENSG00000171163|HPRD:07922|Vega:OTTHUMG00000040423 1 1q44 zinc finger protein 692 protein-coding ZNF692 zinc finger protein 692 O AICAR responsive element binding protein 20121230 -9606 55658 RNF126 - - HGNC:21151|Ensembl:ENSG00000070423|HPRD:11501|Vega:OTTHUMG00000180592 19 19p13.3 ring finger protein 126 protein-coding RNF126 ring finger protein 126 O RING finger protein 126 20121230 -9606 55659 ZNF416 - - HGNC:20645|Ensembl:ENSG00000083817|HPRD:07926 19 19q13.4 zinc finger protein 416 protein-coding ZNF416 zinc finger protein 416 O - 20121230 -9606 55660 PRPF40A HSPC225 FBP-11|FBP11|FLAF1|FNBP3|HIP-10|HIP10|HYPA|NY-REN-6|Prp40 HGNC:16463|MIM:612941|Ensembl:ENSG00000196504|Vega:OTTHUMG00000154031 2 2q23.3 PRP40 pre-mRNA processing factor 40 homolog A (S. cerevisiae) protein-coding PRPF40A PRP40 pre-mRNA processing factor 40 homolog A (S. cerevisiae) O Fas-ligand associated factor 1|Huntingtin-interacting protein A|NY-REN-6 antigen|fas ligand-associated factor 1|formin binding protein 3|formin-binding protein 11|huntingtin yeast partner A|huntingtin-interacting protein 10|pre-mRNA-processing factor 40 homolog A|renal carcinoma antigen NY-REN-6 20121230 -9606 55661 DDX27 HSPC259 DRS1|PP3241|RHLP|Rrp3p|dJ686N3.1 HGNC:15837|Ensembl:ENSG00000124228|HPRD:10859|Vega:OTTHUMG00000033072 20 20q13.13 DEAD (Asp-Glu-Ala-Asp) box polypeptide 27 protein-coding DDX27 DEAD (Asp-Glu-Ala-Asp) box polypeptide 27 O DEAD box protein 27|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 27|RNA helicase-like protein|probable ATP-dependent RNA helicase DDX27 20121230 -9606 55662 HIF1AN - FIH1 HGNC:17113|MIM:606615|Ensembl:ENSG00000166135|HPRD:09426|Vega:OTTHUMG00000018911 10 10q24 hypoxia inducible factor 1, alpha subunit inhibitor protein-coding HIF1AN hypoxia inducible factor 1, alpha subunit inhibitor O FIH-1|factor inhibiting HIF-1|factor inhibiting HIF1|hypoxia-inducible factor 1-alpha inhibitor|hypoxia-inducible factor asparagine hydroxylase|peptide-aspartate beta-dioxygenase 20121230 -9606 55663 ZNF446 - ZKSCAN20|ZSCAN30 HGNC:21036|Ensembl:ENSG00000083838|HPRD:07934 19 19q13.43 zinc finger protein 446 protein-coding ZNF446 zinc finger protein 446 O zinc finger protein with KRAB and SCAN domains 20 20121230 -9606 55664 CDC37L1 RP11-6J24.5 CDC37B|HARC HGNC:17179|MIM:610346|Ensembl:ENSG00000106993|HPRD:07120|Vega:OTTHUMG00000019465 9 9p24.1 cell division cycle 37 homolog (S. cerevisiae)-like 1 protein-coding CDC37L1 cell division cycle 37 homolog (S. cerevisiae)-like 1 O CDC37 cell division cycle 37 homolog-like 1|Hsp90-associating relative of Cdc37|hsp90 co-chaperone Cdc37-like 1 20121230 -9606 55665 URGCP - URG4 HGNC:30890|MIM:610337|Ensembl:ENSG00000106608|HPRD:11663|Vega:OTTHUMG00000155245 7 7p13 upregulator of cell proliferation protein-coding URGCP upregulator of cell proliferation O HBV X protein up-regulated gene 4 protein|HBxAg up-regulated gene 4 protein|up-regulated gene 4|up-regulator of cell proliferation 20121230 -9606 55666 NPLOC4 - NPL4 HGNC:18261|MIM:606590|Ensembl:ENSG00000182446|HPRD:06975|Vega:OTTHUMG00000177990 17 17qter nuclear protein localization 4 homolog (S. cerevisiae) protein-coding NPLOC4 nuclear protein localization 4 homolog (S. cerevisiae) O nuclear protein localization protein 4 homolog 20121230 -9606 55667 DENND4C RP11-513M16.1 C9orf55|C9orf55B|bA513M16.3 HGNC:26079|Ensembl:ENSG00000137145|HPRD:12927|Vega:OTTHUMG00000019627 9 9p22.1 DENN/MADD domain containing 4C protein-coding DENND4C DENN/MADD domain containing 4C O DENN domain-containing protein 4C|DENN/MADD domain containing 4A pseudogene 20121230 -9606 55668 GPATCH2L - C14orf118 HGNC:20210|Ensembl:ENSG00000089916|HPRD:16594|Vega:OTTHUMG00000171490 14 14q24.3 G patch domain containing 2-like protein-coding GPATCH2L G patch domain containing 2-like O uncharacterized protein C14orf118 20121230 -9606 55669 MFN1 - hfzo1|hfzo2 HGNC:18262|MIM:608506|Ensembl:ENSG00000171109|HPRD:16344|Vega:OTTHUMG00000157385 3 3q26.33 mitofusin 1 protein-coding MFN1 mitofusin 1 O fzo homolog|mitochondrial transmembrane GTPase FZO-2|mitochondrial transmembrane GTPase Fzo-1|mitofusin-1|putative transmembrane GTPase|transmembrane GTPase MFN1 20121230 -9606 55670 PEX26 - PBD7A|PBD7B|PEX26M1T|Pex26pM1T HGNC:22965|MIM:608666|Ensembl:ENSG00000215193|HPRD:10559|Vega:OTTHUMG00000149970 22 22q11.21 peroxisomal biogenesis factor 26 protein-coding PEX26 peroxisomal biogenesis factor 26 O peroxin-26|peroxisome assembly protein 26|peroxisome biogenesis disorder, complementation group 8|peroxisome biogenesis disorder, complementation group A|peroxisome biogenesis factor 26 20121230 -9606 55671 SMEK1 MSTP033 FLFL1|KIAA2010|PP4R3A|smk-1|smk1 HGNC:20219|MIM:610351|Ensembl:ENSG00000100796|HPRD:11176|Vega:OTTHUMG00000171102 14 14q32.12 SMEK homolog 1, suppressor of mek1 (Dictyostelium) protein-coding SMEK1 SMEK homolog 1, suppressor of mek1 (Dictyostelium) O serine/threonine-protein phosphatase 4 regulatory subunit 3A 20121230 -9606 55672 NBPF1 - AB13|AB14|AB23|AD2|NBG|NBPF HGNC:26088|MIM:610501|HPRD:07946 1 1p36.13 neuroblastoma breakpoint family, member 1 protein-coding NBPF1 neuroblastoma breakpoint family, member 1 O neuroblastoma breakpoint family member 1 20121230 -9606 55676 SLC30A6 - MST103|MSTP103|ZNT6 HGNC:19305|MIM:611148|Ensembl:ENSG00000152683|HPRD:15368|Vega:OTTHUMG00000128456 2 2p22.3 solute carrier family 30 (zinc transporter), member 6 protein-coding SLC30A6 solute carrier family 30 (zinc transporter), member 6 O solute carrier family 30 member 6|zinc transporter 6|znT-6 20121230 -9606 55677 IWS1 - - HGNC:25467|Ensembl:ENSG00000163166|HPRD:07639|Vega:OTTHUMG00000131527 2 2q14.3 IWS1 homolog (S. cerevisiae) protein-coding IWS1 IWS1 homolog (S. cerevisiae) O IWS1-like protein|interacts with Spt6|protein IWS1 homolog 20121230 -9606 55679 LIMS2 - PINCH-2|PINCH2 HGNC:16084|MIM:607908|Ensembl:ENSG00000072163|Vega:OTTHUMG00000131529 2 2q14.3 LIM and senescent cell antigen-like domains 2 protein-coding LIMS2 LIM and senescent cell antigen-like domains 2 O ILK-binding protein|LIM and senescent cell antigen-like-containing domain protein 2|LIM-like protein 2|particularly interesting new Cys-His protein 2 20121230 -9606 55680 RUFY2 RP11-153K11.2 RABIP4R|ZFYVE13 HGNC:19761|MIM:610328|Ensembl:ENSG00000204130|HPRD:11526|Vega:OTTHUMG00000018353 10 10q21.3 RUN and FYVE domain containing 2 protein-coding RUFY2 RUN and FYVE domain containing 2 O RUN and FYVE domain-containing 2|RUN and FYVE domain-containing protein 2|Run- and FYVE-domain containing protein|antigen MU-RMS-40.17|rab4-interacting protein related 20121230 -9606 55681 SCYL2 - CVAK104 HGNC:19286|Ensembl:ENSG00000136021|HPRD:07642|Vega:OTTHUMG00000170319 12 12q23.1 SCY1-like 2 (S. cerevisiae) protein-coding SCYL2 SCY1-like 2 (S. cerevisiae) O SCY1-like protein 2|coated vesicle-associated kinase of 104 kDa 20121230 -9606 55683 KANSL3 - KIAA1310|NSL3|Rcd1 HGNC:25473|Ensembl:ENSG00000114982|HPRD:07643|Vega:OTTHUMG00000155249 2 2q11.2 KAT8 regulatory NSL complex subunit 3 protein-coding KANSL3 KAT8 regulatory NSL complex subunit 3 O NSL complex protein NSL3|non-specific lethal 3 homolog|serum inhibited-related protein|testis development protein PRTD 20121230 -9606 55684 RABL6 RP11-216L13.9 C9orf86|PARF|RBEL1|pp8875 HGNC:24703|MIM:610615|Ensembl:ENSG00000196642|HPRD:12984|Vega:OTTHUMG00000020947 9 9q34.3 RAB, member RAS oncogene family-like 6 protein-coding RABL6 RAB, member RAS oncogene family-like 6 O Rab-like GTP-binding protein 1C|partner of ARF|putative GTP-binding protein Parf|rab-like protein 6 20121230 -9606 55686 MREG HDCGA21P DSU|WDT2 HGNC:25478|MIM:609207|Ensembl:ENSG00000118242|HPRD:07645|Vega:OTTHUMG00000154828 2 2q35 melanoregulin protein-coding MREG melanoregulin O dilute suppressor protein homolog|whn-dependent transcript 2 20121230 -9606 55687 TRMU - MTO2|MTU1|TRMT|TRMT1|TRNT1 HGNC:25481|MIM:610230|Ensembl:ENSG00000100416|HPRD:15571|Vega:OTTHUMG00000150424 22 22q13 tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase protein-coding TRMU tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase O MTO2 homolog|mitochondrial 5-methylaminomethyl-2-thiouridylate-methyltransferase|mitochondrial tRNA-specific 2-thiouridylase 1 20121230 -9606 55689 YEATS2 - - HGNC:25489|MIM:613373|Ensembl:ENSG00000163872|HPRD:07652|Vega:OTTHUMG00000156898 3 3q27.1 YEATS domain containing 2 protein-coding YEATS2 YEATS domain containing 2 O YEATS domain-containing protein 2 20121230 -9606 55690 PACS1 - - HGNC:30032|MIM:607492|Ensembl:ENSG00000175115|HPRD:06320|Vega:OTTHUMG00000166889 11 11q13.1-q13.2 phosphofurin acidic cluster sorting protein 1 protein-coding PACS1 phosphofurin acidic cluster sorting protein 1 O PACS-1|cytosolic sorting protein PACS-1 20121230 -9606 55691 FRMD4A RP11-397C18.4 FRMD4|bA295P9.4 HGNC:25491|Ensembl:ENSG00000151474|HPRD:13553|Vega:OTTHUMG00000017708 10 10p13 FERM domain containing 4A protein-coding FRMD4A FERM domain containing 4A O FERM domain-containing protein 4A 20121230 -9606 55692 LUC7L LA16c-OS12.1 LUC7-LIKE|LUC7B1|Luc7|SR+89|hLuc7B1 HGNC:6723|MIM:607782|Ensembl:ENSG00000007392|HPRD:08476|Vega:OTTHUMG00000060730 16 16p13.3 LUC7-like (S. cerevisiae) protein-coding LUC7L LUC7-like (S. cerevisiae) O putative RNA-binding protein Luc7-like 1|putative SR protein LUC7B1|sarcoplasmic reticulum protein LUC7B1 20121230 -9606 55693 KDM4D - JMJD2D HGNC:25498|MIM:609766|Ensembl:ENSG00000186280|HPRD:17169|Vega:OTTHUMG00000167838 11 11q21 lysine (K)-specific demethylase 4D protein-coding KDM4D lysine (K)-specific demethylase 4D O jmjC domain-containing histone demethylation protein 3D|jumonji domain containing 2D|jumonji domain-containing protein 2D|lysine-specific demethylase 4D 20121230 -9606 55695 NSUN5 - NOL1|NOL1R|NSUN5A|WBSCR20|WBSCR20A|p120 HGNC:16385|Ensembl:ENSG00000130305|HPRD:11678|Vega:OTTHUMG00000129869 7 7q11.23 NOP2/Sun domain family, member 5 protein-coding NSUN5 NOP2/Sun domain family, member 5 O NOL1-related protein|NOL1/NOP2/Sun domain family member 5|NOL1/NOP2/Sun domain family, member 5|NOP2/Sun domain family, member 5A|Williams Beuren syndrome chromosome region 20A|Williams-Beuren syndrome critical region protein 20 copy A|putative methyltransferase NSUN5|williams-Beuren syndrome chromosomal region 20A protein 20121230 -9606 55696 RBM22 199G4 Cwc2|ZC3H16|fSAP47 HGNC:25503|MIM:612430|Ensembl:ENSG00000086589|HPRD:10186|Vega:OTTHUMG00000163589 5 5q33.1 RNA binding motif protein 22 protein-coding RBM22 RNA binding motif protein 22 O RNA-binding motif protein 22|functional spliceosome-associated protein 47|pre-mRNA-splicing factor RBM22|zinc finger CCCH domain-containing protein 16 20121230 -9606 55697 VAC14 - ArPIKfyve|TAX1BP2|TRX HGNC:25507|MIM:604632|Ensembl:ENSG00000103043|HPRD:07660|Vega:OTTHUMG00000137583 16 16q22.1 Vac14 homolog (S. cerevisiae) protein-coding VAC14 Vac14 homolog (S. cerevisiae) O Tax1 (human T-cell leukemia virus type I) binding protein 1|Tax1 (human T-cell leukemia virus type I) binding protein 2|protein VAC14 homolog|tax1-binding protein 2 20121230 -9606 55698 RADIL - RASIP2 HGNC:22226|MIM:611491|Ensembl:ENSG00000157927|HPRD:07663|Vega:OTTHUMG00000151753 7 7p22.1 Ras association and DIL domains protein-coding RADIL Ras association and DIL domains O Rap GTPase interactor|ras-associating and dilute domain-containing protein 20121230 -9606 55699 IARS2 - ILERS HGNC:29685|MIM:612801|Ensembl:ENSG00000067704|HPRD:13334|Vega:OTTHUMG00000037287 1 1q41 isoleucyl-tRNA synthetase 2, mitochondrial protein-coding IARS2 isoleucyl-tRNA synthetase 2, mitochondrial O isoleucine tRNA ligase 2, mitochondrial|isoleucine--tRNA ligase, mitochondrial|isoleucine-tRNA synthetase 2, mitochondrial|isoleucyl-tRNA synthetase, mitochondrial|mitochondrial isoleucine tRNA synthetase 20121230 -9606 55700 MAP7D1 PP2464 PARCC1|RPRC1 HGNC:25514|Ensembl:ENSG00000116871|HPRD:07666|Vega:OTTHUMG00000007714 1 1p34.3 MAP7 domain containing 1 protein-coding MAP7D1 MAP7 domain containing 1 O MAP7 domain-containing protein 1|arginine/proline rich coiled-coil 1|arginine/proline-rich coiled-coil domain-containing protein 1|proline arginine rich coiled coil 1|proline/arginine-rich coiled-coil domain-containing protein 1 20121230 -9606 55701 ARHGEF40 - SOLO HGNC:25516|MIM:610018|Ensembl:ENSG00000165801|HPRD:13335|Vega:OTTHUMG00000171359 14 14q11.2 Rho guanine nucleotide exchange factor (GEF) 40 protein-coding ARHGEF40 Rho guanine nucleotide exchange factor (GEF) 40 O protein SOLO|rho guanine nucleotide exchange factor 40 20121230 -9606 55702 CCDC94 - - HGNC:25518|Ensembl:ENSG00000105248|HPRD:08546 19 19p13.3 coiled-coil domain containing 94 protein-coding CCDC94 coiled-coil domain containing 94 O coiled-coil domain-containing protein 94 20121230 -9606 55703 POLR3B - C128|HLD8|RPC2 HGNC:30348|MIM:614366|Ensembl:ENSG00000013503|HPRD:11447|Vega:OTTHUMG00000170077 12 12q23.3 polymerase (RNA) III (DNA directed) polypeptide B protein-coding POLR3B polymerase (RNA) III (DNA directed) polypeptide B O DNA-directed RNA polymerase III 127.6 kDa polypeptide|DNA-directed RNA polymerase III subunit B|DNA-directed RNA polymerase III subunit RPC2|RNA polymerase III subunit C2 20121230 -9606 55704 CCDC88A - APE|GIRDIN|GIV|GRDN|HkRP1|KIAA1212 HGNC:25523|MIM:609736|Ensembl:ENSG00000115355|HPRD:10051|HPRD:11131|Vega:OTTHUMG00000151915 2 2p16.1 coiled-coil domain containing 88A protein-coding CCDC88A coiled-coil domain containing 88A O AKT-phosphorylation enhancer|Hook-related protein 1|g alpha-interacting vesicle-associated protein|girders of actin filament|girdin 20121230 -9606 55705 IPO9 RP11-90L20.4 Imp9 HGNC:19425|Ensembl:ENSG00000198700|HPRD:17154|Vega:OTTHUMG00000035805 1 1q32.1 importin 9 protein-coding IPO9 importin 9 O importin-9|ran-binding protein 9|ranBP9 20121230 -9606 55706 TMEM48 RP4-654H19.1 NDC1|NET3 HGNC:25525|MIM:610115|Ensembl:ENSG00000058804|HPRD:08547|Vega:OTTHUMG00000008073 1 1p32.3 transmembrane protein 48 protein-coding TMEM48 transmembrane protein 48 O nucleoporin NDC1 20121230 -9606 55707 NECAP2 - - HGNC:25528|MIM:611624|Ensembl:ENSG00000157191|HPRD:07674|Vega:OTTHUMG00000002313 1 1p36.13 NECAP endocytosis associated 2 protein-coding NECAP2 NECAP endocytosis associated 2 O NECAP endocytosis-associated protein 2|NECAP-2|adaptin ear-binding coat-associated protein 2|adaptin-ear-binding coat-associated protein 2 20121230 -9606 55709 KBTBD4 - BKLHD4|HSPC252 HGNC:23761|Ensembl:ENSG00000123444|HPRD:13757|Vega:OTTHUMG00000166894 11 11p11.2 kelch repeat and BTB (POZ) domain containing 4 protein-coding KBTBD4 kelch repeat and BTB (POZ) domain containing 4 O BTB and kelch domain containing 4|BTB and kelch domain-containing protein 4|kelch repeat and BTB domain-containing protein 4 20121230 -9606 55711 FAR2 - MLSTD1|SDR10E2 HGNC:25531|Ensembl:ENSG00000064763|HPRD:14723|Vega:OTTHUMG00000169320 12 12p11.22 fatty acyl CoA reductase 2 protein-coding FAR2 fatty acyl CoA reductase 2 O fatty acyl-CoA reductase 2|male sterility domain-containing protein 1|short chain dehydrogenase/reductase family 10E, member 2 20121230 -9606 55713 ZNF334 RP11-179N14.1 - HGNC:15806|Ensembl:ENSG00000198185|HPRD:15777|Vega:OTTHUMG00000032654 20 20q13.12 zinc finger protein 334 protein-coding ZNF334 zinc finger protein 334 O - 20121230 -9606 55714 TENM3 - ODZ3|TNM3|Ten-m3 HGNC:29944|MIM:610083|Ensembl:ENSG00000218336|Vega:OTTHUMG00000160682 4 4q35.1 teneurin transmembrane protein 3 protein-coding TENM3 teneurin transmembrane protein 3 O ODZ3-like protein|odd Oz/Ten-m homolog 3|odz, odd Oz/ten-m homolog 3|protein Odd Oz/ten-m homolog 3|ten-3|tenascin-M3|teneurin-3 20121230 -9606 55715 DOK4 - - HGNC:19868|MIM:608333|Ensembl:ENSG00000125170|HPRD:16316|Vega:OTTHUMG00000133460 16 16q21 docking protein 4 protein-coding DOK4 docking protein 4 O IRS-5|IRS5|downstream of tyrosine kinase 4|insulin receptor substrate 5 20121230 -9606 55716 LMBR1L UNQ458/PRO783 LIMR HGNC:18268|MIM:610007|Ensembl:ENSG00000139636|HPRD:17276|Vega:OTTHUMG00000150511 12 12q13.12 limb region 1 homolog (mouse)-like protein-coding LMBR1L limb region 1 homolog (mouse)-like O limb region 1 protein homolog-like|lipocalin-1 interacting membrane receptor|lipocalin-1-interacting membrane receptor|lipocalin-interacting membrane receptor|protein LMBR1L 20121230 -9606 55717 WDR11 - BRWD2|DR11|HH14|WDR15 HGNC:13831|MIM:606417|Ensembl:ENSG00000120008|HPRD:16218|Vega:OTTHUMG00000019171 10 10q26 WD repeat domain 11 protein-coding WDR11 WD repeat domain 11 O WD repeat domain 15|WD repeat-containing protein 11|WD repeat-containing protein 15|bromodomain and WD repeat-containing protein 2 20121230 -9606 55718 POLR3E - RPC5|SIN HGNC:30347|Ensembl:ENSG00000058600|HPRD:15155|Vega:OTTHUMG00000094779 16 16p12.2 polymerase (RNA) III (DNA directed) polypeptide E (80kD) protein-coding POLR3E polymerase (RNA) III (DNA directed) polypeptide E (80kD) O DNA-directed RNA polymerase III 80 kDa polypeptide|DNA-directed RNA polymerase III subunit RPC5|RNA polymerase III 80 kDa subunit RPC5|RNA polymerase III subunit C5 20121230 -9606 55719 FAM178A - C10orf6 HGNC:17814|MIM:610348|Ensembl:ENSG00000119906|HPRD:12581|Vega:OTTHUMG00000018919 10 10q24.31 family with sequence similarity 178, member A protein-coding FAM178A family with sequence similarity 178, member A O protein FAM178A 20121230 -9606 55720 TSR1 - - HGNC:25542|MIM:611214|Ensembl:ENSG00000167721|HPRD:07681|Vega:OTTHUMG00000177636 17 17p13.3 TSR1, 20S rRNA accumulation, homolog (S. cerevisiae) protein-coding TSR1 TSR1, 20S rRNA accumulation, homolog (S. cerevisiae) O pre-rRNA-processing protein TSR1 homolog 20121230 -9606 55721 IQCC - RP4-622L5.6 HGNC:25545|Ensembl:ENSG00000160051|HPRD:07683|Vega:OTTHUMG00000005739 1 1p36.11-p34.2 IQ motif containing C protein-coding IQCC IQ motif containing C O IQ domain-containing protein C 20121230 -9606 55722 CEP72 - - HGNC:25547|Ensembl:ENSG00000112877|HPRD:07685|Vega:OTTHUMG00000161745 5 5p15.33 centrosomal protein 72kDa protein-coding CEP72 centrosomal protein 72kDa O centrosomal protein of 72 kDa 20121230 -9606 55723 ASF1B - CIA-II HGNC:20996|MIM:609190|Ensembl:ENSG00000105011|HPRD:16460|Vega:OTTHUMG00000150401 19 19p13.12 ASF1 anti-silencing function 1 homolog B (S. cerevisiae) protein-coding ASF1B ASF1 anti-silencing function 1 homolog B (S. cerevisiae) O CCG1-interacting factor A-II|anti-silencing function protein 1 homolog B|hAsf1|hAsf1b|hCIA-II|histone chaperone ASF1B 20121230 -9606 55726 ASUN - C12orf11|Mat89Bb|NET48|SPATA30 HGNC:20174|Ensembl:ENSG00000064102|HPRD:07689|Vega:OTTHUMG00000169193 12 12p11.23 asunder, spermatogenesis regulator protein-coding ASUN asunder, spermatogenesis regulator O asunder, spermatogenesis regulator homolog (Drosphila)|cell cycle regulator Mat89Bb homolog|protein asunder homolog|sarcoma antigen NY-SAR-95|spermatogenesis associated 30 20121230 -9606 55727 BTBD7 - FUP1 HGNC:18269|MIM:610386|Ensembl:ENSG00000011114|HPRD:12541|Vega:OTTHUMG00000171269 14 14q32.12 BTB (POZ) domain containing 7 protein-coding BTBD7 BTB (POZ) domain containing 7 O BTB/POZ domain-containing protein 7 20121230 -9606 55728 N4BP2 - B3BP HGNC:29851|Ensembl:ENSG00000078177|HPRD:11382|Vega:OTTHUMG00000128599 4 4p14 NEDD4 binding protein 2 protein-coding N4BP2 NEDD4 binding protein 2 O BCL-3-binding protein|NEDD4-binding protein 2 20121230 -9606 55729 ATF7IP - AM|MCAF|MCAF1|p621 HGNC:20092|MIM:613644|Ensembl:ENSG00000171681|HPRD:09811|Vega:OTTHUMG00000168656 12 12p13.1 activating transcription factor 7 interacting protein protein-coding ATF7IP activating transcription factor 7 interacting protein O ATF-IP|ATF-interacting protein|ATF7-interacting protein|ATFa-associated modulator|MBD1-containing chromatin associated factor|MBD1-containing chromatin-associated factor 1|activating transcription factor 7-interacting protein 1|hAM 20121230 -9606 55731 FAM222B - C17orf63 HGNC:25563|Ensembl:ENSG00000173065|HPRD:07693|Vega:OTTHUMG00000179495 17 17q11.2 family with sequence similarity 222, member B protein-coding FAM222B family with sequence similarity 222, member B O protein FAM222B|uncharacterized protein C17orf63 20121230 -9606 55732 C1orf112 - RP1-97P20.1 HGNC:25565|Ensembl:ENSG00000000460|HPRD:07694|Vega:OTTHUMG00000035821 1 1q24.2 chromosome 1 open reading frame 112 protein-coding C1orf112 chromosome 1 open reading frame 112 O uncharacterized protein C1orf112 20121230 -9606 55733 HHAT - MART2|SKI1|Skn HGNC:18270|MIM:605743|Ensembl:ENSG00000054392|HPRD:12041|Vega:OTTHUMG00000036447 1 1q32 hedgehog acyltransferase protein-coding HHAT hedgehog acyltransferase O melanoma antigen recognized by T cells 2|melanoma antigen recognized by T-cells 2|protein-cysteine N-palmitoyltransferase HHAT|skinny hedgehog protein 1 20121230 -9606 55734 ZFP64 RP5-831D17.3 ZNF338 HGNC:15940|Ensembl:ENSG00000020256|HPRD:15728|Vega:OTTHUMG00000032756 20 20q13.2 ZFP64 zinc finger protein protein-coding ZFP64 ZFP64 zinc finger protein O zinc finger protein 338|zinc finger protein 64|zinc finger protein 64 homolog 20121230 -9606 55735 DNAJC11 RP1-126A5.3 dJ126A5.1 HGNC:25570|MIM:614827|Ensembl:ENSG00000007923|HPRD:07112|Vega:OTTHUMG00000001443 1 1p36.31 DnaJ (Hsp40) homolog, subfamily C, member 11 protein-coding DNAJC11 DnaJ (Hsp40) homolog, subfamily C, member 11 O dnaJ homolog subfamily C member 11|novel DnaJ domain-containing protein 20121230 -9606 55737 VPS35 TCCCTA00141 MEM3|PARK17 HGNC:13487|MIM:601501|Ensembl:ENSG00000069329|HPRD:06085|Vega:OTTHUMG00000132542 16 16q12 vacuolar protein sorting 35 homolog (S. cerevisiae) protein-coding VPS35 vacuolar protein sorting 35 homolog (S. cerevisiae) O hVPS35|maternal-embryonic 3|vacuolar protein sorting-associated protein 35 20121230 -9606 55738 ARFGAP1 RP11-261N11.1 ARF1GAP|HRIHFB2281 HGNC:15852|MIM:608377|Ensembl:ENSG00000101199|HPRD:06443|Vega:OTTHUMG00000032965 20 20q13.33 ADP-ribosylation factor GTPase activating protein 1 protein-coding ARFGAP1 ADP-ribosylation factor GTPase activating protein 1 O ADP-ribosylation factor 1 GTPase activating protein|ADP-ribosylation factor 1 GTPase-activating protein|ADP-ribosylation factor GTPase-activating protein 1|ARF GAP 1|ARF1 GAP|ARF1-directed GTPase-activating protein|GAP protein 20121230 -9606 55739 CARKD - LP3298 HGNC:25576|Ensembl:ENSG00000213995|HPRD:07698|Vega:OTTHUMG00000017345 13 13q34 carbohydrate kinase domain containing protein-coding CARKD carbohydrate kinase domain containing O ATP-dependent (S)-NAD(P)H-hydrate dehydratase|ATP-dependent NAD(P)HX dehydratase|carbohydrate kinase domain-containing protein 20121230 -9606 55740 ENAH RP11-496N12.7 ENA|MENA|NDPP1 HGNC:18271|MIM:609061|Ensembl:ENSG00000154380|HPRD:12360|Vega:OTTHUMG00000037742 1 1q42.12 enabled homolog (Drosophila) protein-coding ENAH enabled homolog (Drosophila) O protein enabled homolog 20121230 -9606 55741 EDEM2 UNQ573/PRO1135 C20orf31|C20orf49|bA4204.1 HGNC:15877|MIM:610302|Ensembl:ENSG00000088298|HPRD:09841|Vega:OTTHUMG00000032322 20 20q11.22 ER degradation enhancer, mannosidase alpha-like 2 protein-coding EDEM2 ER degradation enhancer, mannosidase alpha-like 2 O ER degradation-enhancing alpha-mannosidase-like 2|ER degradation-enhancing-mannosidase-like protein 2 20121230 -9606 55742 PARVA - CH-ILKBP|MXRA2 HGNC:14652|MIM:608120|Ensembl:ENSG00000197702|HPRD:16283|Vega:OTTHUMG00000165778 11 11p15.3 parvin, alpha protein-coding PARVA parvin, alpha O actopaxin|alpha-parvin|calponin-like integrin-linked kinase-binding protein|matrix-remodeling-associated protein 2 20121230 -9606 55743 CHFR - RNF116|RNF196 HGNC:20455|MIM:605209|Ensembl:ENSG00000072609|Vega:OTTHUMG00000167930 12 12q24.33 checkpoint with forkhead and ring finger domains, E3 ubiquitin protein ligase protein-coding CHFR checkpoint with forkhead and ring finger domains, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase CHFR|RING finger protein 196|checkpoint with forkhead and RING finger domains protein 20121230 -9606 55744 COA1 - C7orf44|MITRAC15 HGNC:21868|MIM:614769|Ensembl:ENSG00000106603|HPRD:07700|Vega:OTTHUMG00000128949 7 7p13 cytochrome c oxidase assembly factor 1 homolog (S. cerevisiae) protein-coding COA1 cytochrome c oxidase assembly factor 1 homolog (S. cerevisiae) O cytochrome oxidase assembly 1|cytochrome oxidase assembly protein 1 homolog 20121230 -9606 55745 AP5M1 - C14orf108|MUDENG|Mu5|MuD HGNC:20192|MIM:614368|Ensembl:ENSG00000053770|HPRD:12630|Vega:OTTHUMG00000140318 14 14q22.3 adaptor-related protein complex 5, mu 1 subunit protein-coding AP5M1 adaptor-related protein complex 5, mu 1 subunit O AP-5 complex subunit mu|AP-5 complex subunit mu-1|MHD domain-containing death-inducing protein|MU-2/AP1M2 domain containing, death-inducing|Mu-2 related death-inducing|adapter-related protein complex 5 mu subunit|mu-2-related death-inducing protein|putative HIV-1 infection-related protein 20121230 -9606 55746 NUP133 RP5-1068B5.4 hNUP133 HGNC:18016|MIM:607613|Ensembl:ENSG00000069248|HPRD:06354|Vega:OTTHUMG00000039462 1 1q42.13 nucleoporin 133kDa protein-coding NUP133 nucleoporin 133kDa O 133 kDa nucleoporin|nuclear pore complex protein Nup133|nucleoporin Nup133 20121230 -9606 55747 FAM21B RP11-98I6.1 FAM21A|bA98I6.1 HGNC:23417|Ensembl:ENSG00000152726|Vega:OTTHUMG00000018133 10 10q11.22 family with sequence similarity 21, member B protein-coding FAM21B family with sequence similarity 21, member B O WASH complex subunit FAM21B|family with sequence similarity 21, member A 20121230 -9606 55748 CNDP2 - CN2|CPGL|HsT2298|PEPA HGNC:24437|MIM:169800|Ensembl:ENSG00000133313|HPRD:09893|Vega:OTTHUMG00000132853 18 18q22.3 CNDP dipeptidase 2 (metallopeptidase M20 family) protein-coding CNDP2 CNDP dipeptidase 2 (metallopeptidase M20 family) O cytosolic non-specific dipeptidase|cytosolic nonspecific dipeptidase|glutamate carboxypeptidase-like protein 1|peptidase A 20121230 -9606 55749 CCAR1 - RP11-437A18.1 HGNC:24236|MIM:612569|Ensembl:ENSG00000060339|HPRD:10811|Vega:OTTHUMG00000018361 10 10q21.3 cell division cycle and apoptosis regulator 1 protein-coding CCAR1 cell division cycle and apoptosis regulator 1 O cell cycle and apoptosis regulatory protein 1|cell division cycle and apoptosis regulator protein 1|death inducer with SAP domain 20121230 -9606 55750 AGK - CATC5|MTDPS10|MULK HGNC:21869|MIM:610345|Ensembl:ENSG00000006530|HPRD:08554|Vega:OTTHUMG00000157499 7 7q34 acylglycerol kinase protein-coding AGK acylglycerol kinase O acylglycerol kinase, mitochondrial|hAGK|hsMuLK|multi-substrate lipid kinase|multiple substrate lipid kinase 20121230 -9606 55751 TMEM184C PRO1355 TMEM34 HGNC:25587|MIM:613937|Ensembl:ENSG00000164168|HPRD:07702|Vega:OTTHUMG00000161358 4 4q31.23 transmembrane protein 184C protein-coding TMEM184C transmembrane protein 184C O transmembrane protein 34 20121230 -9606 55752 SEPT11 - - HGNC:25589|MIM:612887|Ensembl:ENSG00000138758|HPRD:08555|Vega:OTTHUMG00000160854 4 4q21.1 septin 11 protein-coding SEPT11 septin 11 O septin-11 20121230 -9606 55753 OGDHL - - HGNC:25590|Ensembl:ENSG00000197444|HPRD:07704|Vega:OTTHUMG00000018200 10 10q11.23 oxoglutarate dehydrogenase-like protein-coding OGDHL oxoglutarate dehydrogenase-like O 2-oxoglutarate dehydrogenase complex component E1-like|2-oxoglutarate dehydrogenase-like, mitochondrial|OGDC-E1-like|alpha-ketoglutarate dehydrogenase-like 20121230 -9606 55754 TMEM30A - C6orf67|CDC50A HGNC:16667|MIM:611028|Ensembl:ENSG00000112697|HPRD:15535|Vega:OTTHUMG00000015050 6 6q14.1 transmembrane protein 30A protein-coding TMEM30A transmembrane protein 30A O cell cycle control protein 50A 20121230 -9606 55755 CDK5RAP2 RP11-412P1.1 C48|Cep215|MCPH3 HGNC:18672|MIM:608201|Ensembl:ENSG00000136861|HPRD:09740|Vega:OTTHUMG00000021043 9 9q33.2 CDK5 regulatory subunit associated protein 2 protein-coding CDK5RAP2 CDK5 regulatory subunit associated protein 2 O CDK5 activator-binding protein C48|CDK5 regulatory subunit-associated protein 2|centrosomal protein 215 kDa|centrosome-associated protein 215 20121230 -9606 55756 INTS9 - CPSF2L|INT9|RC74 HGNC:25592|MIM:611352|Ensembl:ENSG00000104299|HPRD:07706|Vega:OTTHUMG00000164030 8 8p21.1 integrator complex subunit 9 protein-coding INTS9 integrator complex subunit 9 O protein related to CPSF subunits of 74 kDa 20121230 -9606 55757 UGGT2 RP11-31K22.2 HUGT2|UGCGL2|UGT2 HGNC:15664|MIM:605898|Ensembl:ENSG00000102595|HPRD:12065|Vega:OTTHUMG00000017230 13 13q32.1 UDP-glucose glycoprotein glucosyltransferase 2 protein-coding UGGT2 UDP-glucose glycoprotein glucosyltransferase 2 O UDP--Glc:glycoprotein glucosyltransferase 2|UDP-Glc:glycoprotein glucosyltransferase 2|UDP-glucose ceramide glucosyltransferase-like 1|UDP-glucose ceramide glucosyltransferase-like 2|UDP-glucose:glycoprotein glucosyltransferase 2 20121230 -9606 55758 RCOR3 - RP11-318L16.1 HGNC:25594|Ensembl:ENSG00000117625|HPRD:08338|Vega:OTTHUMG00000036996 1 1q32.2 REST corepressor 3 protein-coding RCOR3 REST corepressor 3 O - 20121230 -9606 55759 WDR12 - YTM1 HGNC:14098|Ensembl:ENSG00000138442|HPRD:18295|Vega:OTTHUMG00000132855 2 2q33.2 WD repeat domain 12 protein-coding WDR12 WD repeat domain 12 O WD repeat-containing protein 12|ribosome biogenesis protein WDR12 20121230 -9606 55760 DHX32 - DDX32|DHLP1 HGNC:16717|MIM:607960|Ensembl:ENSG00000089876|HPRD:06411|Vega:OTTHUMG00000019238 10 10q26.2 DEAH (Asp-Glu-Ala-His) box polypeptide 32 protein-coding DHX32 DEAH (Asp-Glu-Ala-His) box polypeptide 32 O DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 32|DEAD/H box 32|DEAD/H helicase-like protein 1|DEAD/H helicase-like protein-1|DEAH box protein 32|huDDX32|putative pre-mRNA-splicing factor ATP-dependent RNA helicase DHX32 20121230 -9606 55761 TTC17 - - HGNC:25596|Ensembl:ENSG00000052841|HPRD:15582|Vega:OTTHUMG00000166398 11 11p11.2 tetratricopeptide repeat domain 17 protein-coding TTC17 tetratricopeptide repeat domain 17 O TPR repeat protein 17|tetratricopeptide repeat protein 17 20121230 -9606 55762 ZNF701 - - HGNC:25597|Ensembl:ENSG00000167562|HPRD:07709 19 19q13.41 zinc finger protein 701 protein-coding ZNF701 zinc finger protein 701 O - 20121230 -9606 55763 EXOC1 BM-012 BM-102|SEC3|SEC3L1|SEC3P HGNC:30380|MIM:607879|Ensembl:ENSG00000090989|HPRD:07615|Vega:OTTHUMG00000102165 4 4q12 exocyst complex component 1 protein-coding EXOC1 exocyst complex component 1 O SEC3-like 1|exocyst complex component Sec3 20121230 -9606 55764 IFT122 - CED|CED1|SPG|WDR10|WDR10p|WDR140 HGNC:13556|MIM:606045|Ensembl:ENSG00000163913|HPRD:06922|Vega:OTTHUMG00000159516 3 3q21 intraflagellar transport 122 homolog (Chlamydomonas) protein-coding IFT122 intraflagellar transport 122 homolog (Chlamydomonas) O WD repeat domain 10|WD repeat-containing protein 10|WD repeat-containing protein 140|intraflagellar transport protein 122 homolog 20121230 -9606 55765 C1orf106 - - HGNC:25599|Ensembl:ENSG00000163362|HPRD:07712|Vega:OTTHUMG00000035789 1 1q32.1 chromosome 1 open reading frame 106 protein-coding C1orf106 chromosome 1 open reading frame 106 O uncharacterized protein C1orf106 20121230 -9606 55766 H2AFJ - H2AJ HGNC:14456|Ensembl:ENSG00000246705|HPRD:13622|Vega:OTTHUMG00000168736 12 12p12.3 H2A histone family, member J protein-coding H2AFJ H2A histone family, member J O H2a/j|histone H2A.J 20121230 -9606 55768 NGLY1 - PNG1|PNGase HGNC:17646|MIM:610661|Ensembl:ENSG00000151092|HPRD:10118|Vega:OTTHUMG00000155600 3 3p24.2 N-glycanase 1 protein-coding NGLY1 N-glycanase 1 O hPNGase|peptide-N(4)-(N-acetyl-beta-glucosaminyl)asparagine amidase|peptide:N-glycanase 20121230 -9606 55769 ZNF83 - HPF1|ZNF816B HGNC:13158|MIM:194558|Ensembl:ENSG00000167766|HPRD:01935 19 19q13.3 zinc finger protein 83 protein-coding ZNF83 zinc finger protein 83 O zinc finger protein 816B|zinc finger protein HPF1 20121230 -9606 55770 EXOC2 RP11-164H16.2 SEC5|SEC5L1|Sec5p HGNC:24968|Ensembl:ENSG00000112685|HPRD:11544|Vega:OTTHUMG00000137437 6 6p25.3 exocyst complex component 2 protein-coding EXOC2 exocyst complex component 2 O SEC5-like 1|exocyst complex component Sec5 20121230 -9606 55771 PRR11 - - HGNC:25619|Ensembl:ENSG00000068489|HPRD:07726|Vega:OTTHUMG00000179362 17 17q22 proline rich 11 protein-coding PRR11 proline rich 11 O proline-rich protein 11|transcription repressor of MHCII 20121230 -9606 55773 TBC1D23 - NS4ATP1 HGNC:25622|Ensembl:ENSG00000036054|HPRD:07727|Vega:OTTHUMG00000159067 3 3q12.2 TBC1 domain family, member 23 protein-coding TBC1D23 TBC1 domain family, member 23 O HCV non-structural protein 4A-transactivated protein 1|HCV nonstructural protein 4A-transactivated protein 1|TBC1 domain family member 23 20121230 -9606 55775 TDP1 - - HGNC:18884|MIM:607198|Ensembl:ENSG00000042088|HPRD:06226|Vega:OTTHUMG00000171016 14 14q32.11 tyrosyl-DNA phosphodiesterase 1 protein-coding TDP1 tyrosyl-DNA phosphodiesterase 1 O tyr-DNA phosphodiesterase 1 20121230 -9606 55776 SAYSD1 - C6orf64 HGNC:21025|Ensembl:ENSG00000112167|HPRD:12892|Vega:OTTHUMG00000014641 6 6p21.2 SAYSVFN motif domain containing 1 protein-coding SAYSD1 SAYSVFN motif domain containing 1 O SAYSvFN domain-containing protein 1 20121230 -9606 55777 MBD5 - MRD1 HGNC:20444|MIM:611472|Ensembl:ENSG00000204406|HPRD:11295|Vega:OTTHUMG00000150440 2 2q23.1 methyl-CpG binding domain protein 5 protein-coding MBD5 methyl-CpG binding domain protein 5 O methyl-CpG-binding domain protein 5|methyl-CpG-binding protein MBD5 20121230 -9606 55778 ZNF839 - C14orf131 HGNC:20345|Ensembl:ENSG00000022976|HPRD:18532|Vega:OTTHUMG00000171864 14 14q32.31 zinc finger protein 839 protein-coding ZNF839 zinc finger protein 839 O renal carcinoma antigen NY-REN-50 20121230 -9606 55779 WDR52 - - HGNC:25631|Ensembl:ENSG00000206530|HPRD:07734|Vega:OTTHUMG00000159259 3 3q13.2 WD repeat domain 52 protein-coding WDR52 WD repeat domain 52 O WD repeat-containing protein 52 20121230 -9606 55780 C6orf70 RP1-266L20.6 dJ266L20.3 HGNC:21056|Ensembl:ENSG00000130023|HPRD:18697|Vega:OTTHUMG00000016067 6 6q27 chromosome 6 open reading frame 70 protein-coding C6orf70 chromosome 6 open reading frame 70 O transmembrane protein C6orf70 20121230 -9606 55781 RIOK2 - RIO2 HGNC:18999|Ensembl:ENSG00000058729|HPRD:10193|Vega:OTTHUMG00000128723 5 5q15 RIO kinase 2 protein-coding RIOK2 RIO kinase 2 O serine/threonine-protein kinase RIO2 20121230 -9606 55783 FTSJD1 - AFT|MTr2 HGNC:25635|Ensembl:ENSG00000180917|HPRD:08560|Vega:OTTHUMG00000137587 16 16q22.2 FtsJ methyltransferase domain containing 1 protein-coding FTSJD1 FtsJ methyltransferase domain containing 1 O adrift homolog|ftsJ methyltransferase domain-containing protein 1|protein adrift homolog 20121230 -9606 55784 MCTP2 - - HGNC:25636|Ensembl:ENSG00000140563|HPRD:07738|Vega:OTTHUMG00000171751 15 15q26.2 multiple C2 domains, transmembrane 2 protein-coding MCTP2 multiple C2 domains, transmembrane 2 O multiple C2 and transmembrane domain-containing protein 2|multiple C2-domains with two transmembrane regions 2 1 20121230 -9606 55785 FGD6 - ZFYVE24 HGNC:21740|MIM:613520|Ensembl:ENSG00000180263|HPRD:16892|Vega:OTTHUMG00000170133 12 12q22 FYVE, RhoGEF and PH domain containing 6 protein-coding FGD6 FYVE, RhoGEF and PH domain containing 6 O FYVE, RhoGEF and PH domain-containing protein 6|zinc finger FYVE domain-containing protein 24 20121230 -9606 55786 ZNF415 - - HGNC:20636|Ensembl:ENSG00000170954|HPRD:18340 19 19q13.42 zinc finger protein 415 protein-coding ZNF415 zinc finger protein 415 O - 20121230 -9606 55787 TXLNG RP11-716A19.4 CXorf15|ELRG|FIAT|LSR5 HGNC:18578|MIM:300677|Ensembl:ENSG00000086712|HPRD:06478|Vega:OTTHUMG00000021196 X Xp22.2 taxilin gamma protein-coding TXLNG taxilin gamma O environmental LPS-responding|environmental lipopolysaccharide-responding gene protein|factor inhibiting ATF4-mediated transcription|factor inhibiting activating transcription factor 4 (ATF4)-mediated transcription|gamma-taxilin|lipopolysaccharide specific response-5 protein|lipopolysaccharide-specific response protein 5 20121230 -9606 55788 LMBRD1 BM-021 C6orf209|LMBD1|MAHCF|NESI HGNC:23038|MIM:612625|Ensembl:ENSG00000168216|HPRD:12877|Vega:OTTHUMG00000014985 6 6q13 LMBR1 domain containing 1 protein-coding LMBRD1 LMBR1 domain containing 1 O HDAg-L-interacting protein NESI|hepatitis delta antigen-L interacting protein|liver regeneration p-53 related protein|nuclear export signal-interacting protein|probable lysosomal cobalamin transporter 20121230 -9606 55789 DEPDC1B - BRCC3|XTP1 HGNC:24902|Ensembl:ENSG00000035499|HPRD:16794|Vega:OTTHUMG00000097083 5 5q12.1 DEP domain containing 1B protein-coding DEPDC1B DEP domain containing 1B O DEP domain-containing protein 1B|HBV X-transactivated gene 8 protein|HBV XAg-transactivated protein 8|HBxAg transactivated protein 1|breast cancer cell 3 20121230 -9606 55790 CSGALNACT1 UNQ656/PRO1287 CSGalNAcT-1|ChGn|beta4GalNAcT HGNC:24290|Ensembl:ENSG00000147408|HPRD:13114|Vega:OTTHUMG00000130827 8 8p21.3 chondroitin sulfate N-acetylgalactosaminyltransferase 1 protein-coding CSGALNACT1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 O beta4GalNAcT-1|chondroitin beta-1,4-N-acetylgalactosaminyltransferase 1|chondroitin beta1,4 N-acetylgalactosaminyltransferase 20121230 -9606 55791 LRIF1 - C1orf103|RIF1|RP11-96K19.1 HGNC:30299|Ensembl:ENSG00000121931|HPRD:17975|Vega:OTTHUMG00000011913 1 1p13.3 ligand dependent nuclear receptor interacting factor 1 protein-coding LRIF1 ligand dependent nuclear receptor interacting factor 1 O ligand-dependent nuclear receptor-interacting factor 1|receptor interacting factor 1|receptor-interacting factor 1 20121230 -9606 55793 FAM63A - RP11-316M1.5 HGNC:25648|Ensembl:ENSG00000143409|HPRD:07746|Vega:OTTHUMG00000035061 1 1q21.3 family with sequence similarity 63, member A protein-coding FAM63A family with sequence similarity 63, member A O protein FAM63A 20121230 -9606 55794 DDX28 - MDDX28 HGNC:17330|MIM:607618|Ensembl:ENSG00000182810|HPRD:06357|Vega:OTTHUMG00000137549 16 16q22.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 28 protein-coding DDX28 DEAD (Asp-Glu-Ala-Asp) box polypeptide 28 O DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 28|mitochondrial DEAD box protein 28|mitochondrial DEAD-box polypeptide 28|probable ATP-dependent RNA helicase DDX28 20121230 -9606 55795 PCID2 RP11-98F14.6 F10 HGNC:25653|MIM:613713|Ensembl:ENSG00000126226|HPRD:07749|Vega:OTTHUMG00000017385 13 13q34 PCI domain containing 2 protein-coding PCID2 PCI domain containing 2 O CSN12-like protein|PCI domain-containing protein 2 20121230 -9606 55796 MBNL3 RP5-842K24.3 CHCR|MBLX|MBLX39|MBXL HGNC:20564|MIM:300413|Ensembl:ENSG00000076770|HPRD:02329|Vega:OTTHUMG00000022426 X Xq26.2 muscleblind-like splicing regulator 3 protein-coding MBNL3 muscleblind-like splicing regulator 3 O Cys3His CCG1-required protein|muscleblind-like 3|muscleblind-like X-linked protein|muscleblind-like protein 3 20121230 -9606 55798 METTL2B UNQ6168 METL|METTL2|METTL2A|PSENIP1 HGNC:18272|MIM:607846|Ensembl:ENSG00000165055|HPRD:09705|Vega:OTTHUMG00000143738 7 7q32.1 methyltransferase like 2B protein-coding METTL2B methyltransferase like 2B O methyltransferase-like protein 2B 20121230 -9606 55799 CACNA2D3 - HSA272268 HGNC:15460|MIM:606399|Ensembl:ENSG00000157445|HPRD:05907|Vega:OTTHUMG00000158580 3 3p21.1 calcium channel, voltage-dependent, alpha 2/delta subunit 3 protein-coding CACNA2D3 calcium channel, voltage-dependent, alpha 2/delta subunit 3 O calcium channel alpha2-delta3 subunit|calcium channel, voltage-dependent, alpha 2/delta 3 subunit|voltage-dependent calcium channel subunit alpha-2/delta-3|voltage-gated calcium channel subunit alpha-2/delta-3 20121230 -9606 55800 SCN3B - HSA243396|SCNB3 HGNC:20665|MIM:608214|Ensembl:ENSG00000166257|HPRD:10497|Vega:OTTHUMG00000166006 11 11q23.3 sodium channel, voltage-gated, type III, beta subunit protein-coding SCN3B sodium channel, voltage-gated, type III, beta subunit O sodium channel subunit beta-3|voltage-gated sodium channel beta-3 subunit 20121230 -9606 55801 IL26 - AK155|IL-26 HGNC:17119|MIM:605679|Ensembl:ENSG00000111536|HPRD:16140|Vega:OTTHUMG00000169114 12 12q15 interleukin 26 protein-coding IL26 interleukin 26 O interleukin-26 20121230 -9606 55802 DCP1A - HSA275986|Nbla00360|SMAD4IP1|SMIF HGNC:18714|MIM:607010|HPRD:06113 3 3p21.1 DCP1 decapping enzyme homolog A (S. cerevisiae) protein-coding DCP1A DCP1 decapping enzyme homolog A (S. cerevisiae) O Smad4-interacting transcriptional co-activator|decapping enzyme hDcp1a|mRNA-decapping enzyme 1A|putative protein product of Nbla00360|transcription factor SMIF 20121230 -9606 55803 ADAP2 - CENTA2|HSA272195|cent-b HGNC:16487|MIM:608635|Ensembl:ENSG00000184060|HPRD:16357|Vega:OTTHUMG00000132868 17 17q11.2 ArfGAP with dual PH domains 2 protein-coding ADAP2 ArfGAP with dual PH domains 2 O arf-GAP with dual PH domain-containing protein 2|centaurin beta|centaurin, alpha 2|centaurin-alpha 2 protein|centaurin-alpha-2|cnt-a2 20121230 -9606 55805 LRP2BP - - HGNC:25434|Ensembl:ENSG00000109771|HPRD:10911|Vega:OTTHUMG00000160460 4 4q35.1 LRP2 binding protein protein-coding LRP2BP LRP2 binding protein O LRP2-binding protein|megBP|megalin-binding protein 20121230 -9606 55806 HR - ALUNC|AU|HSA277165|MUHH|MUHH1 HGNC:5172|MIM:602302|Ensembl:ENSG00000168453|HPRD:03808|Vega:OTTHUMG00000097089 8 8p21.2 hair growth associated protein-coding HR hair growth associated O hairless homolog|protein hairless 20121230 -9606 55808 ST6GALNAC1 UNQ543/PRO848 HSY11339|SIAT7A|ST6GalNAcI|STYI HGNC:23614|MIM:610138|Ensembl:ENSG00000070526|HPRD:15340|Vega:OTTHUMG00000180369 17 17q25.1 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 protein-coding ST6GALNAC1 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 O GalNAc alpha-2, 6-sialyltransferase I, long form|SIAT7-A|ST6GalNAc I|alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 1|galNAc alpha-2,6-sialyltransferase I|sialyltransferase 7 ((alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialyltransferase) A|sialyltransferase 7A 20121230 -9606 55809 TRERF1 - BCAR2|HSA277276|RAPA|RP1-139D8.5|TReP-132|dJ139D8.5 HGNC:18273|MIM:610322|Ensembl:ENSG00000124496|HPRD:11647|Vega:OTTHUMG00000014698 6 6p21.1-p12.1 transcriptional regulating factor 1 protein-coding TRERF1 transcriptional regulating factor 1 O breast cancer anti-estrogen resistance 2|rapa-1|rapa-2|transcriptional regulating protein 132|transcriptional-regulating factor 1|transcriptional-regulating protein 132|zinc finger protein rapa|zinc finger transcription factor TReP-132 20121230 -9606 55810 FOXJ2 - FHX HGNC:24818|Ensembl:ENSG00000065970|HPRD:17014|Vega:OTTHUMG00000168526 12 12p13.31 forkhead box J2 protein-coding FOXJ2 forkhead box J2 O FOXJ2 forkhead factor|fork head homologous X|forkhead box protein J2 20121230 -9606 55811 ADCY10 - HCA2|RP1-313L4.2|SAC|SACI|Sacy HGNC:21285|MIM:605205|Ensembl:ENSG00000143199|HPRD:05549|Vega:OTTHUMG00000034573 1 1q24 adenylate cyclase 10 (soluble) protein-coding ADCY10 adenylate cyclase 10 (soluble) O 3',5'-cyclic AMP synthetase|AH-related protein|ATP pyrophosphate-lyase|adenylate cyclase type 10|germ cell soluble adenylyl cyclase|hsAC|testicular soluble adenylyl cyclase (SAC) 20121230 -9606 55812 SPATA7 - HSD-3.1|HSD3|LCA3 HGNC:20423|MIM:609868|Ensembl:ENSG00000042317|HPRD:15431|Vega:OTTHUMG00000170744 14 14q31.3 spermatogenesis associated 7 protein-coding SPATA7 spermatogenesis associated 7 O spermatogenesis-associated protein 7|spermatogenesis-associated protein HSD3 20121230 -9606 55813 UTP6 - C17orf40|HCA66 HGNC:18279|Ensembl:ENSG00000108651|HPRD:11020|Vega:OTTHUMG00000132815 17 17q11.2 UTP6, small subunit (SSU) processome component, homolog (yeast) protein-coding UTP6 UTP6, small subunit (SSU) processome component, homolog (yeast) O U3 small nucleolar RNA-associated protein 6 homolog|hepatocellular carcinoma associated antigen 66|hepatocellular carcinoma-associated antigen 66|multiple hat domains protein 20121230 -9606 55814 BDP1 - HSA238520|TAF3B1|TFC5|TFIIIB''|TFIIIB150|TFIIIB90|TFNR HGNC:13652|MIM:607012|Ensembl:ENSG00000145734|HPRD:06114|Vega:OTTHUMG00000162506 5 5q13 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB protein-coding BDP1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB O RNA polymerase III transcription initiation factor B''|TATA box binding protein (TBP)-associated factor, RNA polymerase III, GTF3B subunit 1|transcription factor IIIB 150|transcription factor TFIIIB component B'' homolog|transcription factor-like nuclear regulator 20121230 -9606 55815 TSNAXIP1 - TXI1 HGNC:18586|MIM:607720|Ensembl:ENSG00000102904|HPRD:09656|Vega:OTTHUMG00000137545 16 16q22.1 translin-associated factor X interacting protein 1 protein-coding TSNAXIP1 translin-associated factor X interacting protein 1 O translin-associated factor X-interacting protein 1|trax-interacting protein 1 20121230 -9606 55816 DOK5 - C20orf180 HGNC:16173|MIM:608334|Ensembl:ENSG00000101134|HPRD:16317|Vega:OTTHUMG00000032778 20 20q13.2 docking protein 5 protein-coding DOK5 docking protein 5 O IRS-6|IRS6|downstream of tyrosine kinase 5|insulin receptor substrate 6 20121230 -9606 55818 KDM3A - JHDM2A|JHMD2A|JMJD1|JMJD1A|TSGA HGNC:20815|MIM:611512|Ensembl:ENSG00000115548|HPRD:11054|Vega:OTTHUMG00000130204 2 2p11.2 lysine (K)-specific demethylase 3A protein-coding KDM3A lysine (K)-specific demethylase 3A O jmjC domain-containing histone demethylation protein 2A|jumonji C domain-containing histone demethylase 2A|jumonji domain containing 1|jumonji domain containing 1A|jumonji domain-containing protein 1A|lysine-specific demethylase 3A|testis-specific protein A 20121230 -9606 55819 RNF130 - G1RZFP|GOLIATH|GP HGNC:18280|Ensembl:ENSG00000113269|HPRD:11504|Vega:OTTHUMG00000130909 5 5q35.3 ring finger protein 130 protein-coding RNF130 ring finger protein 130 O E3 ubiquitin-protein ligase RNF130|H-Goliath|g1-related zinc finger protein|goliath homolog 20121230 -9606 55821 ALLC - ALC HGNC:17377|MIM:612396|Ensembl:ENSG00000151360|HPRD:10642|Vega:OTTHUMG00000151485 2 2q35 allantoicase protein-coding ALLC allantoicase O allantoate amidinohydrolase|probable allantoicase 20121230 -9606 55823 VPS11 PP3476 END1|PEP5|RNF108|hVPS11 HGNC:14583|MIM:608549|HPRD:12258 11 11q23 vacuolar protein sorting 11 homolog (S. cerevisiae) protein-coding VPS11 vacuolar protein sorting 11 homolog (S. cerevisiae) O RING finger protein 108|vacuolar protein sorting protein 11|vacuolar protein sorting-associated protein 11 homolog 20121230 -9606 55824 PAG1 - CBP|PAG HGNC:30043|MIM:605767|Ensembl:ENSG00000076641|HPRD:05772|HPRD:16944|Vega:OTTHUMG00000164592 8 8q21.13 phosphoprotein associated with glycosphingolipid microdomains 1 protein-coding PAG1 phosphoprotein associated with glycosphingolipid microdomains 1 O Csk-binding protein|phosphoprotein associated with glycosphingolipid-enriched microdomains 1|transmembrane adapter protein PAG|transmembrane adaptor protein PAG|transmembrane phosphoprotein Cbp 20121230 -9606 55825 PECR PRO1004 DCRRP|HPDHASE|HSA250303|PVIARL|SDR29C1|TERP HGNC:18281|MIM:605843|Ensembl:ENSG00000115425|HPRD:09320|Vega:OTTHUMG00000154825 2 2q35 peroxisomal trans-2-enoyl-CoA reductase protein-coding PECR peroxisomal trans-2-enoyl-CoA reductase O 2,4-dienoyl-CoA reductase-related protein|DCR-RP|pVI-ARL|putative short chain alcohol dehydrogenase|short chain dehydrogenase/reductase family 29C, member 1 20121230 -9606 55827 DCAF6 RP4-745I14.1 1200006M05Rik|ARCAP|IQWD1|MSTP055|NRIP|PC326 HGNC:30002|MIM:610494|Ensembl:ENSG00000143164|HPRD:17156|Vega:OTTHUMG00000034572 1 1q24.2 DDB1 and CUL4 associated factor 6 protein-coding DCAF6 DDB1 and CUL4 associated factor 6 O DDB1- and CUL4-associated factor 6|IQ motif and WD repeat-containing protein 1|IQ motif and WD repeats 1|androgen receptor complex-associated protein|nuclear receptor interaction protein 20121230 -9606 55829 VIMP AD-015 ADO15|SBBI8|SELS|SEPS1 HGNC:30396|MIM:607918|Ensembl:ENSG00000131871|HPRD:12133|Vega:OTTHUMG00000166441 15 15q26.3 VCP-interacting membrane protein protein-coding VIMP VCP-interacting membrane protein O selenoprotein S 20121230 -9606 55830 GLT8D1 AD-017 MSTP139 HGNC:24870|Ensembl:ENSG00000016864|HPRD:12423|Vega:OTTHUMG00000158759 3 3p21.1 glycosyltransferase 8 domain containing 1 protein-coding GLT8D1 glycosyltransferase 8 domain containing 1 O glycosyltransferase 8 domain-containing protein 1|glycosyltransferase AD-017 20121230 -9606 55831 EMC3 - POB|TMEM111 HGNC:23999|Ensembl:ENSG00000125037|HPRD:17426|Vega:OTTHUMG00000128652 3 3p25.3 ER membrane protein complex subunit 3 protein-coding EMC3 ER membrane protein complex subunit 3 O 30 kDa protein|partial optokinetic response b|transmembrane protein 111 20121230 -9606 55832 CAND1 - TIP120|TIP120A HGNC:30688|MIM:607727|Ensembl:ENSG00000111530|HPRD:06983|Vega:OTTHUMG00000169060 12 12q14 cullin-associated and neddylation-dissociated 1 protein-coding CAND1 cullin-associated and neddylation-dissociated 1 O TBP interacting protein|TBP-interacting protein 120A|TBP-interacting protein of 120 kDa A|cullin-associated NEDD8-dissociated protein 1|cullin-associated and neddylation-dissociated protein 1|p120 CAND1 20121230 -9606 55833 UBAP2 RP11-176F3.6 UBAP-2|bA176F3.5 HGNC:14185|Ensembl:ENSG00000137073|HPRD:06748|Vega:OTTHUMG00000000427 9 9p13.3 ubiquitin associated protein 2 protein-coding UBAP2 ubiquitin associated protein 2 O AD-012 protein|ubiquitin-associated protein 2 20121230 -9606 55835 CENPJ RP11-756A22.2 BM032|CENP-J|CPAP|LAP|LIP1|MCPH6|SASS4|SCKL4|Sas-4 HGNC:17272|MIM:609279|Ensembl:ENSG00000151849|HPRD:09876|Vega:OTTHUMG00000016595 13 13q12.12 centromere protein J protein-coding CENPJ centromere protein J O LAG-3-associated protein|LYST-interacting protein 1|LYST-interacting protein LIP1|LYST-interacting protein LIP7|centrosomal P4.1-associated protein 20121230 -9606 55837 EAPP BM-036 BM036|C14orf11 HGNC:19312|MIM:609486|Ensembl:ENSG00000129518|HPRD:12631|Vega:OTTHUMG00000170621 14 14q13.1 E2F-associated phosphoprotein protein-coding EAPP E2F-associated phosphoprotein O - 20121230 -9606 55839 CENPN BM-309 BM039|C16orf60|CENP-N|ICEN32 HGNC:30873|MIM:611509|Ensembl:ENSG00000166451|HPRD:12528|Vega:OTTHUMG00000137628 16 16q23.2 centromere protein N protein-coding CENPN centromere protein N O interphase centromere complex protein 32 20121230 -9606 55840 EAF2 BM-040 BM040|TRAITS|U19 HGNC:23115|MIM:607659|Ensembl:ENSG00000145088|HPRD:09634|Vega:OTTHUMG00000159424 3 3q13.33 ELL associated factor 2 protein-coding EAF2 ELL associated factor 2 O ELL-associated factor 2|testosterone regulated apoptosis inducer and tumor suppressor|testosterone-regulated apoptosis inducer and tumor suppressor protein 20121230 -9606 55841 WWC3 - BM042 HGNC:29237|Ensembl:ENSG00000047644|HPRD:11136|Vega:OTTHUMG00000021123 X Xp22.32 WWC family member 3 protein-coding WWC3 WWC family member 3 O protein WWC3 20121230 -9606 55843 ARHGAP15 BM-024 BM046 HGNC:21030|MIM:610578|Ensembl:ENSG00000075884|HPRD:06447|Vega:OTTHUMG00000131845 2 2q22.2-q22.3 Rho GTPase activating protein 15 protein-coding ARHGAP15 Rho GTPase activating protein 15 O rho GTPase-activating protein 15|rho-type GTPase-activating protein 15 20121230 -9606 55844 PPP2R2D - MDS026 HGNC:23732|MIM:613992|Ensembl:ENSG00000175470|HPRD:15172|Vega:OTTHUMG00000019277 10 10q26.3 protein phosphatase 2, regulatory subunit B, delta protein-coding PPP2R2D protein phosphatase 2, regulatory subunit B, delta O PP2A subunit B isoform B55-delta|PP2A subunit B isoform PR55-delta|PP2A subunit B isoform R2-delta|PP2A subunit B isoform delta|protein phosphatase 2, regulatory subunit B, delta isoform|serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B delta isoform 20121230 -9606 55845 BRK1 HSPC300 C3orf10|MDS027|hHBrk1 HGNC:23057|MIM:611183|Ensembl:ENSG00000254999|HPRD:12818|Vega:OTTHUMG00000155400 3 3p25.3 BRICK1, SCAR/WAVE actin-nucleating complex subunit protein-coding BRK1 BRICK1, SCAR/WAVE actin-nucleating complex subunit O BRICK1, SCAR/WAVE actin-nucleating complex subunit, homolog|haematopoietic stem/progenitor cell protein 300|probable protein BRICK1|protein BRICK1 20121230 -9606 55846 ITFG2 - MDS028 HGNC:30879|Ensembl:ENSG00000111203|HPRD:14379|Vega:OTTHUMG00000130617 12 12p13.33 integrin alpha FG-GAP repeat containing 2 protein-coding ITFG2 integrin alpha FG-GAP repeat containing 2 O integrin-alpha FG-GAP repeat-containing protein 2 20121230 -9606 55847 CISD1 MDS029 C10orf70|ZCD1|mitoNEET HGNC:30880|MIM:611932|Ensembl:ENSG00000122873|HPRD:12587|Vega:OTTHUMG00000018266 10 10q21.1 CDGSH iron sulfur domain 1 protein-coding CISD1 CDGSH iron sulfur domain 1 O CDGSH iron sulfur domain-containing protein 1|CDGSH iron-sulfur domain-containing protein 1|zinc finger CDGSH-type domain 1|zinc finger, CDGSH-type domain 1 20121230 -9606 55848 PLGRKT AD025 C9orf46|MDS030|PLG-RKT|Plg-R(KT) HGNC:23633|Ensembl:ENSG00000107020|HPRD:12961|Vega:OTTHUMG00000019501 9 9p24.1 plasminogen receptor, C-terminal lysine transmembrane protein protein-coding PLGRKT plasminogen receptor, C-terminal lysine transmembrane protein O 5033414D02Rik|plasminogen receptor (KT)|plasminogen receptor with a C-terminal lysine|transmembrane protein C9orf46 20121230 -9606 55850 USE1 MDS032 P31|SLT1 HGNC:30882|MIM:610675|Ensembl:ENSG00000053501|HPRD:11299 19 19p13.11 unconventional SNARE in the ER 1 homolog (S. cerevisiae) protein-coding USE1 unconventional SNARE in the ER 1 homolog (S. cerevisiae) O Q-SNARE|SNARE-like tail-anchored protein 1 homolog|USE1-like protein|protein p31|putative MAPK activating protein PM26|putative MAPK-activating protein PM26|vesicle transport protein USE1 20121230 -9606 55851 PSENEN MDS033 MSTP064|PEN-2|PEN2 HGNC:30100|MIM:607632|Ensembl:ENSG00000205155|HPRD:06362|Vega:OTTHUMG00000182067 19 19q13.12 presenilin enhancer 2 homolog (C. elegans) protein-coding PSENEN presenilin enhancer 2 homolog (C. elegans) O gamma-secretase subunit PEN-2|hematopoietic stem/progenitor cells protein MDS033 20121230 -9606 55852 TEX2 - HT008|TMEM96 HGNC:30884|Ensembl:ENSG00000136478|HPRD:13716|Vega:OTTHUMG00000178881 17 17q23.3 testis expressed 2 protein-coding TEX2 testis expressed 2 O testis expressed sequence 2|testis-expressed sequence 2 protein|transmembrane protein 96 20121230 -9606 55853 IDI2-AS1 HT009 C10orf110|IDI2-AS HGNC:30885|HPRD:12561 10 10p15.3 IDI2 antisense RNA 1 miscRNA IDI2-AS1 IDI2 antisense RNA 1 O - 20121230 -9606 55854 ZC3H15 HSPC303 HT010|LEREPO4|MSTP012 HGNC:29528|Ensembl:ENSG00000065548|HPRD:13988|Vega:OTTHUMG00000154251 2 2q32.1 zinc finger CCCH-type containing 15 protein-coding ZC3H15 zinc finger CCCH-type containing 15 O DRG family-regulatory protein 1|likely ortholog of mouse immediate early response erythropoietin 4|zinc finger CCCH domain-containing protein 15 20121230 -9606 55855 FAM45B - HT011 HGNC:30886|HPRD:06592 X Xq26.1 family with sequence similarity 45, member A pseudogene pseudo FAM45B family with sequence similarity 45, member B (pseudogene) O - 20121230 -9606 55856 ACOT13 HT012 PNAS-27|THEM2 HGNC:20999|Ensembl:ENSG00000112304|HPRD:07158|Vega:OTTHUMG00000014359 6 6p22.3 acyl-CoA thioesterase 13 protein-coding ACOT13 acyl-CoA thioesterase 13 O acyl-coenzyme A thioesterase 13|hypothalamus protein HT012|thioesterase superfamily member 2 20121230 -9606 55857 PLK1S1 HT013 C20orf19|Kiz|Kizuna|NCRNA00153 HGNC:15865|HPRD:12760 20 20p11.23 polo-like kinase 1 substrate 1 protein-coding PLK1S1 polo-like kinase 1 substrate 1 O centrosomal protein kizuna 20121230 -9606 55858 TMEM165 - CDG2K|FT27|GDT1|TMPT27|TPARL HGNC:30760|MIM:614726|Ensembl:ENSG00000134851|HPRD:18216|Vega:OTTHUMG00000128735 4 4q12 transmembrane protein 165 protein-coding TMEM165 transmembrane protein 165 O TPA regulated locus|transmembrane protein PT27|transmembrane protein TPARL 20121230 -9606 55859 BEX1 RP1-198P4.1 BEX2|HBEX2|HGR74-h HGNC:1036|MIM:300690|Ensembl:ENSG00000133169|HPRD:06460|Vega:OTTHUMG00000022708 X Xq22.1|Xq22 brain expressed, X-linked 1 protein-coding BEX1 brain expressed, X-linked 1 O brain-expressed X-linked protein 1|ovarian granulosa cell 13.0 kDa protein hGR74|protein BEX1 20121230 -9606 55860 ACTR10 - ACTR11|Arp11|HARP11 HGNC:17372|Ensembl:ENSG00000131966|HPRD:12420|Vega:OTTHUMG00000171049 14 14q23.1 actin-related protein 10 homolog (S. cerevisiae) protein-coding ACTR10 actin-related protein 10 homolog (S. cerevisiae) O actin-related protein 10|actin-related protein 11 20121230 -9606 55861 DBNDD2 RP3-453C12.9 C20orf35|CK1BP|HSMNP1 HGNC:15881|MIM:611453|Ensembl:ENSG00000244274|HPRD:12763|Vega:OTTHUMG00000032576 20 20q13.12 dysbindin (dystrobrevin binding protein 1) domain containing 2 protein-coding DBNDD2 dysbindin (dystrobrevin binding protein 1) domain containing 2 O SCF apoptosis response protein 1|casein kinase-1 binding protein|dysbindin domain-containing protein 2 20121230 -9606 55862 ECHDC1 RP3-351K20.2 MMCD|dJ351K20.2 HGNC:21489|MIM:612136|Ensembl:ENSG00000093144|HPRD:13260|Vega:OTTHUMG00000015523 6 6q22.33 enoyl CoA hydratase domain containing 1 protein-coding ECHDC1 enoyl CoA hydratase domain containing 1 O enoyl Coenzyme A hydratase domain containing 1|enoyl-CoA hydratase domain-containing protein 1|ethylmalonyl-CoA decarboxylase|methylmalonyl-CoA decarboxylase 20121230 -9606 55863 TMEM126B HT007 - HGNC:30883|Ensembl:ENSG00000171204|HPRD:13715|Vega:OTTHUMG00000166974 11 11q14.1 transmembrane protein 126B protein-coding TMEM126B transmembrane protein 126B O - 20121230 -9606 55867 SLC22A11 - OAT4|hOAT4 HGNC:18120|MIM:607097|Ensembl:ENSG00000168065|HPRD:06161|Vega:OTTHUMG00000045142 11 11q13.1 solute carrier family 22 (organic anion/urate transporter), member 11 protein-coding SLC22A11 solute carrier family 22 (organic anion/urate transporter), member 11 O organic anion transporter 4|solute carrier family 22 (organic anion/cation transporter), member 11|solute carrier family 22 member 11 20121230 -9606 55869 HDAC8 CDA07 CDLS5|HD8|HDACL1|MRXS6|RPD3|WTS HGNC:13315|MIM:300269|Ensembl:ENSG00000147099|HPRD:02227|Vega:OTTHUMG00000021814 X Xq13 histone deacetylase 8 protein-coding HDAC8 histone deacetylase 8 O histone deacetylase-like 1 20121230 -9606 55870 ASH1L - ASH1|ASH1L1|KMT2H HGNC:19088|MIM:607999|Ensembl:ENSG00000116539|HPRD:06416|Vega:OTTHUMG00000014011 1 1q22 ash1 (absent, small, or homeotic)-like (Drosophila) protein-coding ASH1L ash1 (absent, small, or homeotic)-like (Drosophila) O ASH1-like protein|absent small and homeotic disks protein 1 homolog|histone-lysine N-methyltransferase ASH1L|lysine N-methyltransferase 2H|probable histone-lysine N-methyltransferase ASH1L 20121230 -9606 55871 CBWD1 RP11-143M1.6 COBP HGNC:17134|MIM:611078|Ensembl:ENSG00000172785|HPRD:16686|Vega:OTTHUMG00000019425 9 9p24.3 COBW domain containing 1 protein-coding CBWD1 COBW domain containing 1 O COBW domain-containing protein 1|COBW-like protein|NPC-A-6 COBW domain-containing protein 1|cobalamin synthase W domain-containing protein 1|cobalamin synthetase W domain-containing protein 1 20121230 -9606 55872 PBK - CT84|Nori-3|SPK|TOPK HGNC:18282|MIM:611210|Ensembl:ENSG00000168078|HPRD:17822|Vega:OTTHUMG00000102113 8 8p21.2 PDZ binding kinase protein-coding PBK PDZ binding kinase O MAPKK-like protein kinase|PDZ-binding kinase|T-LAK cell-originated protein kinase|cancer/testis antigen 84|lymphokine-activated killer T-cell-originated protein kinase|serine/threonine protein kinase|spermatogenesis-related protein kinase 20121230 -9606 55876 GSDMB PP4052 GSDML|PRO2521 HGNC:23690|MIM:611221|Ensembl:ENSG00000073605|HPRD:17082|Vega:OTTHUMG00000133248 17 17q12 gasdermin B protein-coding GSDMB gasdermin B O gasdermin-B|gasdermin-like protein 20121230 -9606 55879 GABRQ - THETA HGNC:14454|MIM:300349|Ensembl:ENSG00000147402|HPRD:02284|Vega:OTTHUMG00000022649 X Xq28 gamma-aminobutyric acid (GABA) A receptor, theta protein-coding GABRQ gamma-aminobutyric acid (GABA) A receptor, theta O GABA(A) receptor subunit theta|GABA(A) receptor, theta|GABA-A receptor theta subunit|gamma-aminobutyric acid (GABA) receptor, theta|gamma-aminobutyric acid receptor subunit theta 20121230 -9606 55884 WSB2 - SBA2 HGNC:19222|Ensembl:ENSG00000176871|HPRD:18305|Vega:OTTHUMG00000168885 12 12q24.23 WD repeat and SOCS box containing 2 protein-coding WSB2 WD repeat and SOCS box containing 2 O CS box-containing WD protein|WD repeat and SOCS box containing protein 2|WD repeat and SOCS box-containing 2|WD repeat and SOCS box-containing protein 2|WSB-2 20121230 -9606 55885 LMO3 - RBTN3|RBTNL2|RHOM3|Rhom-3 HGNC:6643|MIM:180386|Ensembl:ENSG00000048540|HPRD:11832|Vega:OTTHUMG00000168837 12 12p12.3 LIM domain only 3 (rhombotin-like 2) protein-coding LMO3 LIM domain only 3 (rhombotin-like 2) O LIM domain only protein 3|neuronal-specific transcription factor DAT1|rhombotin-3 20121230 -9606 55888 ZNF167 - ZFP|ZKSCAN7|ZNF448|ZNF64 HGNC:12955|Ensembl:ENSG00000196345|HPRD:15744|Vega:OTTHUMG00000133094 3 3p21.32 zinc finger protein 167 protein-coding ZNF167 zinc finger protein 167 O zinc finger protein 448|zinc finger protein 64|zinc finger protein with KRAB and SCAN domains 7 20121230 -9606 55889 GOLGA6B - GOLGA|GOLGA6D HGNC:32205|Ensembl:ENSG00000215186|HPRD:17047|Vega:OTTHUMG00000133511 15 15q24.1 golgin A6 family, member B protein-coding GOLGA6B golgin A6 family, member B O Golgin subfamily A member 6B|Putative golgin subfamily A member 6D|golgi autoantigen, golgin subfamily a, 6B|golgin-like protein|putative golgin subfamily A member 6B 20121230 -9606 55890 GPRC5C PSEC0087 RAIG-3|RAIG3 HGNC:13309|MIM:605949|Ensembl:ENSG00000170412|HPRD:16178|Vega:OTTHUMG00000067613 17 17q25 G protein-coupled receptor, family C, group 5, member C protein-coding GPRC5C G protein-coupled receptor, family C, group 5, member C O G-protein coupled receptor family C group 5 member C|orphan G-protein coupled receptor|retinoic acid responsive gene protein|retinoic acid-induced gene 3 protein 20121230 -9606 55891 LENEP - LEP503 HGNC:14429|MIM:607377|Ensembl:ENSG00000163352|HPRD:09569|Vega:OTTHUMG00000037417 1 1q22 lens epithelial protein protein-coding LENEP lens epithelial protein O lens epithelial cell protein LEP503 20121230 -9606 55892 MYNN SBBIZ1 OSZF|ZBTB31|ZNF902 HGNC:14955|MIM:606042|Ensembl:ENSG00000085274|HPRD:06920 3 3q26.2 myoneurin protein-coding MYNN myoneurin O zinc finger and BTB domain-containing protein 31|zinc finger protein with BTB/POZ domain 20121230 -9606 55893 ZNF395 - HDBP-2|HDBP2|HDRF-2|PBF|PRF-1|PRF1|Si-1-8-14 HGNC:18737|MIM:609494|Ensembl:ENSG00000186918|HPRD:11711|Vega:OTTHUMG00000102137 8 8p21.1 zinc finger protein 395 protein-coding ZNF395 zinc finger protein 395 O HD gene regulatory region-binding protein 2|HD-regulating factor 2|Huntington's disease gene regulatory region-binding protein 2|huntington disease gene regulatory region-binding protein 2|papillomavirus regulatory factor 1|papillomavirus regulatory factor PRF-1|papillomavirus-binding factor 20121230 -9606 55894 DEFB103B - BD-3|DEFB103|DEFB3|HBD3|HBP3 HGNC:31702|MIM:606611|Ensembl:ENSG00000177243|HPRD:05968|Vega:OTTHUMG00000129313 8 8p23 defensin, beta 103B protein-coding DEFB103B defensin, beta 103B O beta-defensin 103|beta-defensin 3|defensin, beta 103|defensin-like protein 20121230 -9606 55897 MESP1 - bHLHc5 HGNC:29658|MIM:608689|Ensembl:ENSG00000166823|HPRD:10070|Vega:OTTHUMG00000149810 15 15q26.1 mesoderm posterior 1 homolog (mouse) protein-coding MESP1 mesoderm posterior 1 homolog (mouse) O class C basic helix-loop-helix protein 5|mesoderm posterior protein 1 20121230 -9606 55898 UNC45A - GC-UNC45|GCUNC-45|GCUNC45|IRO039700|SMAP-1|SMAP1 HGNC:30594|MIM:611219|Ensembl:ENSG00000140553|HPRD:18070|Vega:OTTHUMG00000141261 15 15q26.1 unc-45 homolog A (C. elegans) protein-coding UNC45A unc-45 homolog A (C. elegans) O UNC-45A|general cell UNC45|protein unc-45 homolog A|smooth muscle cell associated protein-1|smooth muscle cell-associated protein 1 20121230 -9606 55900 ZNF302 - HSD16|MST154|MSTP154|ZNF135L|ZNF140L|ZNF327 HGNC:13848|Ensembl:ENSG00000089335|HPRD:15765|Vega:OTTHUMG00000163329 19 19q13.11 zinc finger protein 302 protein-coding ZNF302 zinc finger protein 302 O zinc finger protein 327 20121230 -9606 55901 THSD1 RP11-245D16.1 TMTSP|UNQ3010 HGNC:17754|Ensembl:ENSG00000136114|HPRD:18180|Vega:OTTHUMG00000016963 13 13q14.3 thrombospondin, type I, domain containing 1 protein-coding THSD1 thrombospondin, type I, domain containing 1 O 4833423O18Rik|thrombospondin type-1 domain-containing protein 1|thrombospondin, type I, domain 1|transmembrane molecule with thrombospondin module 20121230 -9606 55902 ACSS2 RP5-1161H23.2 ACAS2|ACECS|ACS|ACSA|dJ1161H23.1 HGNC:15814|MIM:605832|Ensembl:ENSG00000131069|Vega:OTTHUMG00000032317 20 20q11.22 acyl-CoA synthetase short-chain family member 2 protein-coding ACSS2 acyl-CoA synthetase short-chain family member 2 O acetate thiokinase|acetate-CoA ligase|acetyl-Coenzyme A synthetase 2 (ADP forming)|acetyl-coenzyme A synthetase, cytoplasmic|acyl-activating enzyme|cytoplasmic acetyl-coenzyme A synthetase 20121230 -9606 55904 MLL5 - HDCMC04P|KMT2E HGNC:18541|MIM:608444|Ensembl:ENSG00000005483|HPRD:10528|Vega:OTTHUMG00000157403 7 7q22.1 myeloid/lymphoid or mixed-lineage leukemia 5 (trithorax homolog, Drosophila) protein-coding MLL5 myeloid/lymphoid or mixed-lineage leukemia 5 (trithorax homolog, Drosophila) O histone-lysine N-methyltransferase MLL5|lysine N-methyltransferase 2E|myeloid/lymphoid or mixed-lineage leukemia protein 5 20121230 -9606 55905 RNF114 - PSORS12|ZNF313 HGNC:13094|MIM:612451|Ensembl:ENSG00000124226|HPRD:10329|Vega:OTTHUMG00000032709 20 20q13.13 ring finger protein 114 protein-coding RNF114 ring finger protein 114 O RING finger protein 114|zinc finger protein 228|zinc finger protein 313 20121230 -9606 55906 ZC4H2 RP11-90I7.1 HCA127|KIAA1166 HGNC:24931|Ensembl:ENSG00000126970|HPRD:06584|Vega:OTTHUMG00000021712 X Xq11.2 zinc finger, C4H2 domain containing protein-coding ZC4H2 zinc finger, C4H2 domain containing O hepatocellular carcinoma-associated antigen 127|zinc finger C4H2 domain-containing protein 20121230 -9606 55907 CMAS - CSS HGNC:18290|MIM:603316|Ensembl:ENSG00000111726|HPRD:04501|Vega:OTTHUMG00000169097 12 12p12.1 cytidine monophosphate N-acetylneuraminic acid synthetase protein-coding CMAS cytidine monophosphate N-acetylneuraminic acid synthetase O CMP-N-acetylneuraminic acid synthase|CMP-N-acetylneuraminic acid synthetase|CMP-Neu5Ac synthetase|CMP-NeuNAc synthase|CMP-NeuNAc synthetase|CMP-sialic acid synthetase|N-acylneuraminate cytidylyltransferase|cytidine 5'-monophosphate N-acetylneuraminic acid synthetase 20121230 -9606 55908 C19orf80 UNQ599/PRO1185 ANGPTL8|PRO1185|PVPA599|RIFL|TD26 HGNC:24933|Ensembl:ENSG00000130173|HPRD:14245|Vega:OTTHUMG00000180829 19 19p13.2 chromosome 19 open reading frame 80 protein-coding C19orf80 chromosome 19 open reading frame 80 O hepatocellular carcinoma-associated gene TD26|hepatocellular carcinoma-associated protein TD26|lipasin 20121230 -9606 55909 BIN3 - - HGNC:1054|MIM:606396|Ensembl:ENSG00000147439|HPRD:05904|Vega:OTTHUMG00000163844 8 8p21.3 bridging integrator 3 protein-coding BIN3 bridging integrator 3 O - 20121230 -9606 55911 APOBR - APOB100R|APOB48R HGNC:24087|MIM:605220|Ensembl:ENSG00000184730|HPRD:05561|Vega:OTTHUMG00000172705 16 16p11 apolipoprotein B receptor protein-coding APOBR apolipoprotein B receptor O apoB-48R|apolipoprotein B-100 receptor|apolipoprotein B-48 receptor|apolipoprotein B100 receptor|apolipoprotein B48 receptor 20121230 -9606 55914 ERBB2IP - ERBIN|LAP2 HGNC:15842|MIM:606944|Ensembl:ENSG00000112851|HPRD:06090|Vega:OTTHUMG00000097808 5 5q12.3 erbb2 interacting protein protein-coding ERBB2IP erbb2 interacting protein O densin-180-like protein|protein LAP2 20121230 -9606 55915 LANCL2 tcag7.697 GPR69B|TASP HGNC:6509|MIM:612919|Ensembl:ENSG00000132434|HPRD:13956|Vega:OTTHUMG00000023779 7 7q31.1-q31.33 LanC lantibiotic synthetase component C-like 2 (bacterial) protein-coding LANCL2 LanC lantibiotic synthetase component C-like 2 (bacterial) O G protein-coupled receptor 69B|LanC (bacterial lantibiotic synthetase component C)-like 2|lanC-like protein 2|testis-specific adriamycin sensitivity protein 20121230 -9606 55916 NXT2 RP4-596C15.2 P15-2 HGNC:18151|MIM:300320|Ensembl:ENSG00000101888|HPRD:02264|Vega:OTTHUMG00000022185 X Xq23 nuclear transport factor 2-like export factor 2 protein-coding NXT2 nuclear transport factor 2-like export factor 2 O NTF2-related export protein 2|protein p15-2 20121230 -9606 55917 CTTNBP2NL - - HGNC:25330|Ensembl:ENSG00000143079|HPRD:10906|Vega:OTTHUMG00000011154 1 1p13.2 CTTNBP2 N-terminal like protein-coding CTTNBP2NL CTTNBP2 N-terminal like O CTTNBP2 N-terminal-like protein 20121230 -9606 55920 RCC2 - TD-60 HGNC:30297|MIM:609587|Ensembl:ENSG00000179051|HPRD:18171|Vega:OTTHUMG00000002513 1 1p36.13 regulator of chromosome condensation 2 protein-coding RCC2 regulator of chromosome condensation 2 O RCC1-like protein TD-60|protein RCC2|telophase disk protein of 60 kDa 20121230 -9606 55922 NKRF - ITBA4|NRF HGNC:19374|MIM:300440|Ensembl:ENSG00000186416|HPRD:02341|Vega:OTTHUMG00000022277 X Xq24 NFKB repressing factor protein-coding NKRF NFKB repressing factor O NF-kappa-B-repressing factor|transcription factor NRF 20121230 -9606 55924 FAM212B - C1orf183 HGNC:28045|Ensembl:ENSG00000197852|HPRD:14246|Vega:OTTHUMG00000011953 1 1p13.2 family with sequence similarity 212, member B protein-coding FAM212B family with sequence similarity 212, member B O protein FAM212B|uncharacterized protein C1orf183 20121230 -9606 55929 DMAP1 RP5-891H21.2 DNMAP1|DNMTAP1|EAF2|MEAF2|SWC4 HGNC:18291|MIM:605077|Ensembl:ENSG00000178028|HPRD:05465|Vega:OTTHUMG00000007577 1 1p34 DNA methyltransferase 1 associated protein 1 protein-coding DMAP1 DNA methyltransferase 1 associated protein 1 O DNA methyltransferase 1-associated protein 1|DNMT1 associated protein 1|DNMT1-associated protein 1 20121230 -9606 55930 MYO5C - - HGNC:7604|MIM:610022|Ensembl:ENSG00000128833|HPRD:11380|Vega:OTTHUMG00000172630 15 15q21 myosin VC protein-coding MYO5C myosin VC O myosin 5C|myosin-Vc|unconventional myosin-Vc 20121230 -9606 55937 APOM DADB-127H9.5 G3a|HSPC336|NG20|apo-M HGNC:13916|MIM:606907|Ensembl:ENSG00000204444|HPRD:06068|Vega:OTTHUMG00000031250 6 6p21.33 apolipoprotein M protein-coding APOM apolipoprotein M O NG20-like protein|alternative name: G3a, NG20|protein G3a 20121230 -9606 55954 ZMAT5 - SNRNP20 HGNC:28046|Ensembl:ENSG00000100319|HPRD:14247|Vega:OTTHUMG00000151292 22 22cen-q12.3 zinc finger, matrin-type 5 protein-coding ZMAT5 zinc finger, matrin-type 5 O U11/U12 small nuclear ribonucleoprotein 20 kDa protein|U11/U12 snRNP 20 kDa protein|U11/U12 snRNP 20K|U11/U12-20K|zinc finger matrin-type protein 5|zinc finger, matrin type 5 20121230 -9606 55957 LIN37 MSTP064 F25965|ZK418.4|lin-37 HGNC:33234|Ensembl:ENSG00000267796|HPRD:16872|Vega:OTTHUMG00000182070 19 19q13.1 lin-37 homolog (C. elegans) protein-coding LIN37 lin-37 homolog (C. elegans) O antolefinin|protein F25965|protein lin-37 homolog 20121230 -9606 55958 KLHL9 RP11-380P16.6 - HGNC:18732|MIM:611201|Ensembl:ENSG00000198642|HPRD:13929|Vega:OTTHUMG00000019669 9 9p22 kelch-like 9 (Drosophila) protein-coding KLHL9 kelch-like 9 (Drosophila) O kelch-like protein 9 20121230 -9606 55959 SULF2 RP5-1049G16.1 HSULF-2 HGNC:20392|MIM:610013|Ensembl:ENSG00000196562|HPRD:18130|Vega:OTTHUMG00000032675 20 20q12-q13.2 sulfatase 2 protein-coding SULF2 sulfatase 2 O extracellular sulfatase Sulf-2 20121230 -9606 55964 SEPT3 CTA-250D10.3 SEP3|bK250D10.3 HGNC:10750|MIM:608314|Ensembl:ENSG00000100167|HPRD:10515|Vega:OTTHUMG00000030494 22 22q13.2 septin 3 protein-coding SEPT3 septin 3 O neuronal-specific septin 3|neuronal-specific septin-3 20121230 -9606 55966 AJAP1 - MOT8|RP3-426F10.1|SHREW-1|SHREW1 HGNC:30801|MIM:610972|Ensembl:ENSG00000196581|HPRD:15339|Vega:OTTHUMG00000000645 1 1p36.32 adherens junctions associated protein 1 protein-coding AJAP1 adherens junctions associated protein 1 O adherens junction associated protein 1|adherens junction-associated protein 1|membrane protein shrew-1|transmembrane protein SHREW1 20121230 -9606 55967 NDUFA12 - B17.2|DAP13 HGNC:23987|MIM:614530|Ensembl:ENSG00000184752|HPRD:16781|Vega:OTTHUMG00000170098 12 12q22 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 12 protein-coding NDUFA12 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 12 O 13 kDa differentiation-associated protein|CI-B17.2|NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12|NADH-ubiquinone oxidoreductase subunit B17.2|complex I B17.2 subunit 20121230 -9606 55968 NSFL1C RP4-776F14.2 P47|UBX1|UBXD10|UBXN2C|dJ776F14.1 HGNC:15912|MIM:606610|Ensembl:ENSG00000088833|HPRD:09425|Vega:OTTHUMG00000031665 20 20p13 NSFL1 (p97) cofactor (p47) protein-coding NSFL1C NSFL1 (p97) cofactor (p47) O NSFL1 cofactor p47|SHP1 homolog|UBX domain-containing protein 2C|p97 cofactor p47 20121230 -9606 55969 C20orf24 PNAS-11 RIP5 HGNC:15870|Ensembl:ENSG00000101084|HPRD:12761|Vega:OTTHUMG00000032384 20 20q11.23 chromosome 20 open reading frame 24 protein-coding C20orf24 chromosome 20 open reading frame 24 O rab5-interacting protein|uncharacterized protein C20orf24 20121230 -9606 55970 GNG12 RP5-975D15.2 - HGNC:19663|Ensembl:ENSG00000172380|HPRD:13592|Vega:OTTHUMG00000009545 1 1p31.3 guanine nucleotide binding protein (G protein), gamma 12 protein-coding GNG12 guanine nucleotide binding protein (G protein), gamma 12 O G-protein gamma-12 subunit|guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-12 20121230 -9606 55971 BAIAP2L1 - IRTKS HGNC:21649|MIM:611877|Ensembl:ENSG00000006453|HPRD:11270|Vega:OTTHUMG00000165117 7 7q22.1 BAI1-associated protein 2-like 1 protein-coding BAIAP2L1 BAI1-associated protein 2-like 1 O BAI1-associated protein 2-like protein 1|brain-specific angiogenesis inhibitor 1-associated protein 2-like protein 1|insulin receptor tyrosine kinase substrate 20121230 -9606 55972 SLC25A40 - MCFP HGNC:29680|MIM:610821|Ensembl:ENSG00000075303|HPRD:14372|Vega:OTTHUMG00000131033 7 7q21.12 solute carrier family 25, member 40 protein-coding SLC25A40 solute carrier family 25, member 40 O mitochondrial carrier family protein|solute carrier family 25 member 40 20121230 -9606 55973 BCAP29 - BAP29 HGNC:24131|Ensembl:ENSG00000075790|HPRD:16541|Vega:OTTHUMG00000154770 7 7q22.3 B-cell receptor-associated protein 29 protein-coding BCAP29 B-cell receptor-associated protein 29 O BCR-associated protein 29 20121230 -9606 55974 SLC50A1 RP11-540D14.5 HsSWEET1|RAG1AP1|SCP|SWEET1|slv HGNC:30657|MIM:613683|Ensembl:ENSG00000169241|HPRD:17427|Vega:OTTHUMG00000035333 1 1q22 solute carrier family 50 (sugar transporter), member 1 protein-coding SLC50A1 solute carrier family 50 (sugar transporter), member 1 O RAG1-activating protein 1|RZPDo834D038D|probable sugar transporter RAG1AP1|recombination activating gene 1 activating protein 1|solute carrier family 50 member 1|stromal cell protein|sugar transporter SWEET1 20121230 -9606 55975 KLHL7 - KLHL6|SBBI26 HGNC:15646|MIM:611119|Ensembl:ENSG00000122550|HPRD:13927|Vega:OTTHUMG00000094813 7 7p15.3 kelch-like 7 (Drosophila) protein-coding KLHL7 kelch-like 7 (Drosophila) O kelch-like 6|kelch-like protein 7|kelch/BTB 20121230 -9606 55997 CFC1 - CFC1B|CRYPTIC|DTGA2|HTX2 HGNC:18292|MIM:605194|Ensembl:ENSG00000136698|HPRD:05548|Vega:OTTHUMG00000131628 2 2q21.1 cripto, FRL-1, cryptic family 1 protein-coding CFC1 cripto, FRL-1, cryptic family 1 O cryptic family protein 1|cryptic protein 20121230 -9606 55998 NXF5 - - HGNC:8075|MIM:300319|Ensembl:ENSG00000126952|HPRD:02263|Vega:OTTHUMG00000022042 X Xq22 nuclear RNA export factor 5 protein-coding NXF5 nuclear RNA export factor 5 O TAP-like protein 1|TAPL-1 20121230 -9606 55999 NXF4 - - HGNC:8074|MIM:300318 X Xq22 nuclear RNA export factor 4 pseudogene pseudo NXF4 nuclear RNA export factor 4 pseudogene O - 20121230 -9606 56000 NXF3 LL0XNC01-221F2.3 - HGNC:8073|MIM:300316|Ensembl:ENSG00000147206|HPRD:02261|Vega:OTTHUMG00000022088 X Xq22 nuclear RNA export factor 3 protein-coding NXF3 nuclear RNA export factor 3 O TAP-like protein 3|TAPL-3 20121230 -9606 56001 NXF2 GHc-618H1.1 CT39|TAPL-2 HGNC:8072|MIM:300315|Ensembl:ENSG00000185554|HPRD:02260|Vega:OTTHUMG00000154916 X Xq22.1 nuclear RNA export factor 2 protein-coding NXF2 nuclear RNA export factor 2 O TAP-like protein 2|cancer/testis antigen 39|t-complex protein 11 homolog 20121230 -9606 56005 C19orf10 - EUROIMAGE1875335|IL25|IL27|IL27w|R33729_1|SF20 HGNC:16948|MIM:606746|Ensembl:ENSG00000074842|HPRD:08415 19 19p13.3 chromosome 19 open reading frame 10 protein-coding C19orf10 chromosome 19 open reading frame 10 O UPF0556 protein C19orf10|interleukin 25|interleukin 27 working designation|interleukin-25|stromal cell-derived growth factor SF20 20121230 -9606 56006 SMG9 - C19orf61|F17127_1 HGNC:25763|MIM:613176|Ensembl:ENSG00000105771|HPRD:07800|Vega:OTTHUMG00000150337 19 19q13.31 smg-9 homolog, nonsense mediated mRNA decay factor (C. elegans) protein-coding SMG9 smg-9 homolog, nonsense mediated mRNA decay factor (C. elegans) O protein SMG9|protein smg-9 homolog 20121230 -9606 56033 BARX1 RP11-231K24.1 - HGNC:955|MIM:603260|Ensembl:ENSG00000131668|HPRD:16017|Vega:OTTHUMG00000020255 9 9q12 BARX homeobox 1 protein-coding BARX1 BARX homeobox 1 O BarH-like homeobox 1|homeobox protein BarH-like 1 20121230 -9606 56034 PDGFC UNQ174/PRO200 FALLOTEIN|SCDGF HGNC:8801|MIM:608452|Ensembl:ENSG00000145431|HPRD:10529|Vega:OTTHUMG00000161803 4 4q32 platelet derived growth factor C protein-coding PDGFC platelet derived growth factor C O PDGF-C|VEGF-E|platelet-derived growth factor C|secretory growth factor-like protein|spinal cord-derived growth factor 20121230 -9606 56052 ALG1 PSEC0061 CDG1K|HMAT1|HMT-1|HMT1|MT-1|Mat-1|hMat-1 HGNC:18294|MIM:605907|Ensembl:ENSG00000033011|HPRD:10437|Vega:OTTHUMG00000129529 16 16p13.3 asparagine-linked glycosylation 1, beta-1,4-mannosyltransferase homolog (S. cerevisiae) protein-coding ALG1 asparagine-linked glycosylation 1, beta-1,4-mannosyltransferase homolog (S. cerevisiae) O GDP-Man:GlcNAc2-PP-dolichol mannosyltransferase|GDP-mannose-dolichol diphosphochitobiose mannosyltransferase|asparagine-linked glycosylation 1 homolog (yeast, beta-1,4-mannosyltransferase)|asparagine-linked glycosylation protein 1 homolog|beta-1,4 mannosyltransferase|beta-1,4-mannosyltransferase|chitobiosyldiphosphodolichol beta-mannosyltransferase|mannosyltransferase-1 20121230 -9606 56061 UBFD1 - UBPH HGNC:30565|Ensembl:ENSG00000103353|HPRD:15606|Vega:OTTHUMG00000128855 16 16p12 ubiquitin family domain containing 1 protein-coding UBFD1 ubiquitin family domain containing 1 O ubiquitin domain-containing protein UBFD1|ubiquitin-binding protein homolog 20121230 -9606 56062 KLHL4 - DKELCHL|KHL4 HGNC:6355|MIM:300348|Ensembl:ENSG00000102271|HPRD:02283|Vega:OTTHUMG00000021946 X Xq21.3 kelch-like 4 (Drosophila) protein-coding KLHL4 kelch-like 4 (Drosophila) O kelch-like protein 4 20121230 -9606 56063 TMEM234 RP4-622L5.3 AASL548|C1orf91|PRO1105|RP4-622L5|dJ622L5.7 HGNC:28837|Ensembl:ENSG00000160055|HPRD:15270|Vega:OTTHUMG00000005742 1 1p36.11-p34.2 transmembrane protein 234 protein-coding TMEM234 transmembrane protein 234 O - 20121230 -9606 56097 PCDHGC5 - PCDH-GAMMA-C5 HGNC:8718|MIM:606306|Ensembl:ENSG00000240764|HPRD:07318|Vega:OTTHUMG00000129624 5 5q31 protocadherin gamma subfamily C, 5 protein-coding PCDHGC5 protocadherin gamma subfamily C, 5 O protocadherin gamma-C5 20121230 -9606 56098 PCDHGC4 - PCDH-GAMMA-C4 HGNC:8717|MIM:606305|Ensembl:ENSG00000242419|HPRD:07317|Vega:OTTHUMG00000129625 5 5q31 protocadherin gamma subfamily C, 4 protein-coding PCDHGC4 protocadherin gamma subfamily C, 4 O protocadherin gamma-C4 20121230 -9606 56099 PCDHGB7 - ME6|PCDH-GAMMA-B7 HGNC:8714|MIM:606304|Ensembl:ENSG00000254122|HPRD:06952|Vega:OTTHUMG00000164054 5 5q31 protocadherin gamma subfamily B, 7 protein-coding PCDHGB7 protocadherin gamma subfamily B, 7 O cadherin ME6|protocadherin gamma-B7 20121230 -9606 56100 PCDHGB6 - PCDH-GAMMA-B6 HGNC:8713|MIM:606303|Ensembl:ENSG00000253305|HPRD:09393|Vega:OTTHUMG00000163687 5 5q31 protocadherin gamma subfamily B, 6 protein-coding PCDHGB6 protocadherin gamma subfamily B, 6 O protocadherin gamma-B6 20121230 -9606 56101 PCDHGB5 - PCDH-GAMMA-B5 HGNC:8712|MIM:606302|HPRD:09392 5 5q31 protocadherin gamma subfamily B, 5 protein-coding PCDHGB5 protocadherin gamma subfamily B, 5 O protocadherin gamma-B5 20121230 -9606 56102 PCDHGB3 - PCDH-GAMMA-B3 HGNC:8710|MIM:606301|Ensembl:ENSG00000262209|HPRD:09391|Vega:OTTHUMG00000177471 5 5q31 protocadherin gamma subfamily B, 3 protein-coding PCDHGB3 protocadherin gamma subfamily B, 3 O protocadherin gamma-B3 20121230 -9606 56103 PCDHGB2 - PCDH-GAMMA-B2 HGNC:8709|MIM:606300|Ensembl:ENSG00000253910|HPRD:09390|Vega:OTTHUMG00000163682 5 5q31 protocadherin gamma subfamily B, 2 protein-coding PCDHGB2 protocadherin gamma subfamily B, 2 O protocadherin gamma-B2 20121230 -9606 56104 PCDHGB1 - PCDH-GAMMA-B1 HGNC:8708|MIM:606299|Ensembl:ENSG00000254221|HPRD:09389|Vega:OTTHUMG00000163681 5 5q31 protocadherin gamma subfamily B, 1 protein-coding PCDHGB1 protocadherin gamma subfamily B, 1 O protocadherin gamma-B1 20121230 -9606 56105 PCDHGA11 - PCDH-GAMMA-A11 HGNC:8698|MIM:606298|Ensembl:ENSG00000253873|HPRD:09388|Vega:OTTHUMG00000164055 5 5q31 protocadherin gamma subfamily A, 11 protein-coding PCDHGA11 protocadherin gamma subfamily A, 11 O protocadherin gamma-A11 20121230 -9606 56106 PCDHGA10 - PCDH-GAMMA-A10 HGNC:8697|MIM:606297|Ensembl:ENSG00000253846|HPRD:09387|Vega:OTTHUMG00000163688 5 5q31 protocadherin gamma subfamily A, 10 protein-coding PCDHGA10 protocadherin gamma subfamily A, 10 O protocadherin gamma-A10 20121230 -9606 56107 PCDHGA9 - PCDH-GAMMA-A9 HGNC:8707|MIM:606296|Ensembl:ENSG00000261934|HPRD:09386|Vega:OTTHUMG00000177473 5 5q31 protocadherin gamma subfamily A, 9 protein-coding PCDHGA9 protocadherin gamma subfamily A, 9 O protocadherin gamma-A9 20121230 -9606 56108 PCDHGA7 - PCDH-GAMMA-A7 HGNC:8705|MIM:606294|Ensembl:ENSG00000253537|HPRD:09384|Vega:OTTHUMG00000163685 5 5q31 protocadherin gamma subfamily A, 7 protein-coding PCDHGA7 protocadherin gamma subfamily A, 7 O protocadherin gamma-A7 20121230 -9606 56109 PCDHGA6 - PCDH-GAMMA-A6 HGNC:8704|MIM:606293|Ensembl:ENSG00000253731|HPRD:09383|Vega:OTTHUMG00000163684 5 5q31 protocadherin gamma subfamily A, 6 protein-coding PCDHGA6 protocadherin gamma subfamily A, 6 O protocadherin gamma-A6 20121230 -9606 56110 PCDHGA5 - CDH-GAMMA-A5|ME3|PCDH-GAMMA-A5 HGNC:8703|MIM:606292|Ensembl:ENSG00000253485|HPRD:09382|Vega:OTTHUMG00000163683 5 5q31 protocadherin gamma subfamily A, 5 protein-coding PCDHGA5 protocadherin gamma subfamily A, 5 O cadherin ME3|protocadherin gamma-A5 20121230 -9606 56111 PCDHGA4 - PCDH-GAMMA-A4 HGNC:8702|MIM:606291|Ensembl:ENSG00000262576|HPRD:09381|Vega:OTTHUMG00000177593 5 5q31 protocadherin gamma subfamily A, 4 protein-coding PCDHGA4 protocadherin gamma subfamily A, 4 O protocadherin gamma-A4 20121230 -9606 56112 PCDHGA3 - PCDH-GAMMA-A3 HGNC:8701|MIM:606290|Ensembl:ENSG00000254245|HPRD:07553|Vega:OTTHUMG00000163680 5 5q31 protocadherin gamma subfamily A, 3 protein-coding PCDHGA3 protocadherin gamma subfamily A, 3 O protocadherin gamma-A3 20121230 -9606 56113 PCDHGA2 - PCDH-GAMMA-A2 HGNC:8700|MIM:606289|Ensembl:ENSG00000081853|HPRD:07552|Vega:OTTHUMG00000163679 5 5q31 protocadherin gamma subfamily A, 2 protein-coding PCDHGA2 protocadherin gamma subfamily A, 2 O protocadherin gamma-A2 20121230 -9606 56114 PCDHGA1 - PCDH-GAMMA-A1 HGNC:8696|MIM:606288|Ensembl:ENSG00000204956|HPRD:07551|Vega:OTTHUMG00000163678 5 5q31 protocadherin gamma subfamily A, 1 protein-coding PCDHGA1 protocadherin gamma subfamily A, 1 O protocadherin gamma-A1 20121230 -9606 56115 PCDHG@ - PCDH2|PCDH4|PCDHG HGNC:8695|MIM:604968 5 5q31 protocadherin gamma cluster other PCDHG@ protocadherin gamma cluster O - 20110814 -9606 56116 PCDHB@ - PCDH3 HGNC:8679|MIM:604967 5 5q31 protocadherin beta cluster other PCDHB@ protocadherin beta cluster O - 20121230 -9606 56117 PCDHA@ - CNR1|CNRS1 HGNC:8662|MIM:604966 5 5q31 protocadherin alpha cluster, complex locus other PCDHA@ protocadherin alpha cluster, complex locus O protocadherin alpha cluster 20121230 -9606 56118 PCDHGCT - PCDHGC HGNC:8719 5 5q31 protocadherin gamma constant other PCDHGCT protocadherin gamma constant O - 20110814 -9606 56119 PCDHACT - PCDHAC HGNC:8678 5 5q31 protocadherin alpha constant other PCDHACT protocadherin alpha constant O - 20121230 -9606 56120 PCDHGB8P - PCDH-PSI3 HGNC:8715 5 5q31 protocadherin gamma subfamily B, 8 pseudogene pseudo PCDHGB8P protocadherin gamma subfamily B, 8 pseudogene O - 20121230 -9606 56121 PCDHB15 - PCDH-BETA15 HGNC:8686|MIM:606341|Ensembl:ENSG00000113248|HPRD:06959|Vega:OTTHUMG00000129609 5 5q31 protocadherin beta 15 protein-coding PCDHB15 protocadherin beta 15 O PCDH-beta-15|protocadherin beta-15 20121230 -9606 56122 PCDHB14 - PCDH-BETA14 HGNC:8685|MIM:606340|Ensembl:ENSG00000120327|HPRD:06958|Vega:OTTHUMG00000129619 5 5q31 protocadherin beta 14 protein-coding PCDHB14 protocadherin beta 14 O PCDH-beta-14|protocadherin beta-14 20121230 -9606 56123 PCDHB13 UNQ332/PRO531 PCDH-BETA13 HGNC:8684|MIM:606339|Ensembl:ENSG00000187372|HPRD:06957|Vega:OTTHUMG00000129615 5 5q31 protocadherin beta 13 protein-coding PCDHB13 protocadherin beta 13 O PCDH-beta-13|protocadherin beta-13 20121230 -9606 56124 PCDHB12 - PCDH-BETA12 HGNC:8683|MIM:606338|Ensembl:ENSG00000120328|HPRD:06956|Vega:OTTHUMG00000129620 5 5q31 protocadherin beta 12 protein-coding PCDHB12 protocadherin beta 12 O PCDH-beta-12|protocadherin beta-12 20121230 -9606 56125 PCDHB11 - ME2|PCDH-BETA11 HGNC:8682|MIM:606337|Ensembl:ENSG00000197479|HPRD:06955|Vega:OTTHUMG00000129618 5 5q31 protocadherin beta 11 protein-coding PCDHB11 protocadherin beta 11 O PCDH-beta-11|cadherin ME2|protocadherin beta-11 20121230 -9606 56126 PCDHB10 UNQ1906/PRO4352 PCDH-BETA10|PCHB10 HGNC:8681|MIM:606336|Ensembl:ENSG00000120324|HPRD:06954|Vega:OTTHUMG00000129626 5 5q31 protocadherin beta 10 protein-coding PCDHB10 protocadherin beta 10 O PCDH-beta-10|protocadherin beta-10 20121230 -9606 56127 PCDHB9 - PCDH-BETA9|PCDH3H HGNC:8694|MIM:606335|HPRD:06953 5 5q31 protocadherin beta 9 protein-coding PCDHB9 protocadherin beta 9 O PCDH-beta-9|protocadherin beta-9|protocadherin-3h 20121230 -9606 56128 PCDHB8 - PCDH-BETA8|PCDH3I HGNC:8693|MIM:606334|Ensembl:ENSG00000120322|HPRD:07563|Vega:OTTHUMG00000129621 5 5q31 protocadherin beta 8 protein-coding PCDHB8 protocadherin beta 8 O PCDH-beta-8|protocadherin beta-8|protocadherin-3i 20121230 -9606 56129 PCDHB7 - PCDH-BETA7 HGNC:8692|MIM:606333|Ensembl:ENSG00000113212|HPRD:07562|Vega:OTTHUMG00000129608 5 5q31 protocadherin beta 7 protein-coding PCDHB7 protocadherin beta 7 O PCDH-beta-7|protocadherin beta-7 20121230 -9606 56130 PCDHB6 - PCDH-BETA6 HGNC:8691|MIM:606332|Ensembl:ENSG00000113211|HPRD:07561|Vega:OTTHUMG00000129623 5 5q31 protocadherin beta 6 protein-coding PCDHB6 protocadherin beta 6 O PCDH-beta-6|protocadherin beta-6 20121230 -9606 56131 PCDHB4 - PCDH-BETA4 HGNC:8689|MIM:606330|Ensembl:ENSG00000081818|HPRD:07559|Vega:OTTHUMG00000129617 5 5q31 protocadherin beta 4 protein-coding PCDHB4 protocadherin beta 4 O PCDH-beta-4|protocadherin beta-4 20121230 -9606 56132 PCDHB3 - PCDH-BETA3 HGNC:8688|MIM:606329|Ensembl:ENSG00000113205|HPRD:08398|Vega:OTTHUMG00000129622 5 5q31 protocadherin beta 3 protein-coding PCDHB3 protocadherin beta 3 O PCDH-beta-3|protocadherin beta-3 20121230 -9606 56133 PCDHB2 - PCDH-BETA2 HGNC:8687|MIM:606328|Ensembl:ENSG00000112852|HPRD:07558|Vega:OTTHUMG00000129606 5 5q31 protocadherin beta 2 protein-coding PCDHB2 protocadherin beta 2 O PCDH-beta-2|protocadherin beta-2 20121230 -9606 56134 PCDHAC2 - PCDH-ALPHA-C2 HGNC:8677|MIM:606321|Ensembl:ENSG00000243232|HPRD:07331|Vega:OTTHUMG00000129607 5 5q31 protocadherin alpha subfamily C, 2 protein-coding PCDHAC2 protocadherin alpha subfamily C, 2 O protocadherin alpha-C2 20121230 -9606 56135 PCDHAC1 - PCDH-ALPHA-C1 HGNC:8676|MIM:606320|Ensembl:ENSG00000248383|HPRD:07555|Vega:OTTHUMG00000129603 5 5q31 protocadherin alpha subfamily C, 1 protein-coding PCDHAC1 protocadherin alpha subfamily C, 1 O protocadherin alpha-C1 20121230 -9606 56136 PCDHA13 - CNR5|CNRN5|CNRS5|CRNR5|PCDH-ALPHA13 HGNC:8667|MIM:606319|Ensembl:ENSG00000239389|HPRD:07554|Vega:OTTHUMG00000129614 5 5q31 protocadherin alpha 13 protein-coding PCDHA13 protocadherin alpha 13 O KIAA0345-like 1|PCDH-alpha-13|ortholog of mouse CNR5|protocadherin alpha-13 20121230 -9606 56137 PCDHA12 - PCDH-ALPHA12 HGNC:8666|MIM:606318|Ensembl:ENSG00000251664|HPRD:07330|Vega:OTTHUMG00000163366 5 5q31 protocadherin alpha 12 protein-coding PCDHA12 protocadherin alpha 12 O KIAA0345-like 2|PCDH-alpha-12|protocadherin alpha-12 20121230 -9606 56138 PCDHA11 - CNR7|CNRN7|CNRS7|CRNR7|PCDH-ALPHA11 HGNC:8665|MIM:606317|Ensembl:ENSG00000249158|HPRD:07329|Vega:OTTHUMG00000163369 5 5q31 protocadherin alpha 11 protein-coding PCDHA11 protocadherin alpha 11 O KIAA0345-like 3|PCDH-alpha-11|ortholog of mouse CNR7|protocadherin alpha-11 20121230 -9606 56139 PCDHA10 - CNR8|CNRN8|CNRS8|CRNR8|PCDH-ALPHA10 HGNC:8664|MIM:606316|Ensembl:ENSG00000250120|HPRD:07328|Vega:OTTHUMG00000163372 5 5q31 protocadherin alpha 10 protein-coding PCDHA10 protocadherin alpha 10 O KIAA0345-like 4|PCDH-alpha-10|ortholog to mouse CNR8|protocadherin alpha-10 20121230 -9606 56140 PCDHA8 - PCDH-ALPHA8 HGNC:8674|MIM:606314|Ensembl:ENSG00000204962|HPRD:07326|Vega:OTTHUMG00000163354 5 5q31 protocadherin alpha 8 protein-coding PCDHA8 protocadherin alpha 8 O KIAA0345-like 6|PCDH-alpha-8|protocadherin alpha-8 20121230 -9606 56141 PCDHA7 - CNR4|CNRN4|CNRS4|CRNR4|PCDH-ALPHA7 HGNC:8673|MIM:606313|Ensembl:ENSG00000204963|HPRD:07325|Vega:OTTHUMG00000163371 5 5q31 protocadherin alpha 7 protein-coding PCDHA7 protocadherin alpha 7 O KIAA0345-like 7|PCDH-alpha-7|ortholog to mouse CNR4|protocadherin alpha-7 20121230 -9606 56142 PCDHA6 - CNR2|CNRN2|CNRS2|CRNR2|PCDH-ALPHA6 HGNC:8672|MIM:606312|Ensembl:ENSG00000081842|HPRD:07324|Vega:OTTHUMG00000163353 5 5q31 protocadherin alpha 6 protein-coding PCDHA6 protocadherin alpha 6 O KIAA0345-like 8|PCDH-alpha-6|protocadherin alpha-6 20121230 -9606 56143 PCDHA5 - CNR6|CNRN6|CNRS6|CRNR6|PCDH-ALPHA5 HGNC:8671|MIM:606311|Ensembl:ENSG00000204965|HPRD:07323|Vega:OTTHUMG00000163367 5 5q31 protocadherin alpha 5 protein-coding PCDHA5 protocadherin alpha 5 O KIAA0345-like 9|PCDH-alpha-5|ortholog of mouse CNR6|protocadherin alpha-5 20121230 -9606 56144 PCDHA4 - CNR1|CNRN1|CRNR1|PCDH-ALPHA4 HGNC:8670|MIM:606310|Ensembl:ENSG00000204967|HPRD:07322|Vega:OTTHUMG00000163360 5 5q31 protocadherin alpha 4 protein-coding PCDHA4 protocadherin alpha 4 O KIAA0345-like 10|PCDH-alpha-4|ortholog of mouse CNR1|protocadherin alpha-4 20121230 -9606 56145 PCDHA3 - PCDH-ALPHA3 HGNC:8669|MIM:606309|Ensembl:ENSG00000255408|HPRD:07321|Vega:OTTHUMG00000163357 5 5q31 protocadherin alpha 3 protein-coding PCDHA3 protocadherin alpha 3 O KIAA0345-like 11|PCDH-alpha-3|protocadherin alpha-3 20121230 -9606 56146 PCDHA2 - PCDH-ALPHA2 HGNC:8668|MIM:606308|Ensembl:ENSG00000204969|HPRD:07320|Vega:OTTHUMG00000163363 5 5q31 protocadherin alpha 2 protein-coding PCDHA2 protocadherin alpha 2 O KIAA0345-like 12|PCDH-alpha-2|protocadherin alpha-2 20121230 -9606 56147 PCDHA1 - PCDH-ALPHA1 HGNC:8663|MIM:606307|Ensembl:ENSG00000204970|HPRD:07319|Vega:OTTHUMG00000163368 5 5q31 protocadherin alpha 1 protein-coding PCDHA1 protocadherin alpha 1 O KIAA0345-like 13|PCDH-alpha-1|protocadherin alpha-1 20121230 -9606 56154 TEX15 - CT42 HGNC:11738|MIM:605795|Ensembl:ENSG00000133863|HPRD:09313|Vega:OTTHUMG00000163881 8 8p12 testis expressed 15 protein-coding TEX15 testis expressed 15 O cancer/testis antigen 42|testis-expressed sequence 15 protein 20121230 -9606 56155 TEX14 - CT113 HGNC:11737|MIM:605792|Ensembl:ENSG00000121101|Vega:OTTHUMG00000179245 17 17q22 testis expressed 14 protein-coding TEX14 testis expressed 14 O cancer/testis antigen 113|inactive serine/threonine-protein kinase TEX14|protein kinase-like protein SgK307|sugen kinase 307|testis expressed sequence 14|testis-expressed protein 14|testis-expressed sequence 14 protein 20121230 -9606 56156 TEX13B - TGC3B|TSGA5 HGNC:11736|MIM:300313|Ensembl:ENSG00000170925|HPRD:02258|Vega:OTTHUMG00000022174 X Xq22.3 testis expressed 13B protein-coding TEX13B testis expressed 13B O testis expressed sequence 13B|testis-expressed sequence 13B protein 20121230 -9606 56157 TEX13A LL0XNC01-42H12.1 - HGNC:11735|MIM:300312|Ensembl:ENSG00000133149|HPRD:02257|Vega:OTTHUMG00000022133 X Xq22.3 testis expressed 13A protein-coding TEX13A testis expressed 13A O testis expressed sequence 13A|testis-expressed sequence 13A protein 20121230 -9606 56158 TEX12 - - HGNC:11734|MIM:605791|Ensembl:ENSG00000150783|HPRD:12045|Vega:OTTHUMG00000167008 11 11q22 testis expressed 12 protein-coding TEX12 testis expressed 12 O testis expressed sequence 12|testis-expressed sequence 12 protein|testis-expressed sequence 12 protein variant 2|testis-expressed sequence 12 protein variant 3 20121230 -9606 56159 TEX11 RP11-291O7.2 TGC1|TSGA3 HGNC:11733|MIM:300311|Ensembl:ENSG00000120498|HPRD:02256|Vega:OTTHUMG00000021782 X Xq13.1 testis expressed 11 protein-coding TEX11 testis expressed 11 O testis expressed sequence 11|testis-expressed sequence 11 protein 20121230 -9606 56160 NDNL2 - HCA4|MAGEG1|MAGEL3|NSE3|NSMCE3 HGNC:7677|MIM:608243|Ensembl:ENSG00000185115|HPRD:10503|Vega:OTTHUMG00000129261 15 15q13.1 necdin-like 2 protein-coding NDNL2 necdin-like 2 O MAGE-G1 antigen|hepatocellular carcinoma-associated protein 4|hepatocellular carcinoma-associated protein HCA4|melanoma antigen, family G, 1|melanoma-associated antigen G1|necdin-like gene 2|necdin-like protein 2 20121230 -9606 56162 CILD2 - PCD HGNC:1979|MIM:606763 19 19q13.3-qter ciliary dyskinesia, primary 2 unknown CILD2 ciliary dyskinesia, primary 2 O - 20120831 -9606 56163 RNF17 RP11-756A22.1 Mmip-2|SPATA23|TDRD4 HGNC:10060|MIM:605793|Ensembl:ENSG00000132972|HPRD:05779|HPRD:15482|Vega:OTTHUMG00000016589 13 13q12.12 ring finger protein 17 protein-coding RNF17 ring finger protein 17 O RING finger protein 17|spermatogenesis associated 23|tudor domain containing 4|tudor domain-containing protein 4 20121230 -9606 56164 STK31 - SGK396|TDRD8 HGNC:11407|MIM:605790|Ensembl:ENSG00000196335|HPRD:10427|Vega:OTTHUMG00000023053 7 7p15.3 serine/threonine kinase 31 protein-coding STK31 serine/threonine kinase 31 O serine/threonine-protein kinase 31|serine/threonine-protein kinase NYD-SPK|sugen kinase 396|tudor domain containing 8 20121230 -9606 56165 TDRD1 - CT41.1 HGNC:11712|MIM:605796|Ensembl:ENSG00000095627|HPRD:12047|Vega:OTTHUMG00000019083 10 10q25.3 tudor domain containing 1 protein-coding TDRD1 tudor domain containing 1 O cancer/testis antigen 41.1|tudor domain containing protein 1|tudor domain-containing protein 1 20121230 -9606 56167 MTCO1P1 - - HGNC:7420 21 21p11.2 MT-CO1 pseudogene 1 pseudo MTCO1P1 MT-CO1 pseudogene 1 O - 20121230 -9606 56168 MTND2P2 - bA522L3.2 HGNC:23767 X Xq22.1 MT-ND2 pseudogene 2 pseudo MTND2P2 MT-ND2 pseudogene 2 O - 20121230 -9606 56169 GSDMC - MLZE HGNC:7151|MIM:608384|Ensembl:ENSG00000147697|HPRD:12222|Vega:OTTHUMG00000164851 8 8q24.21 gasdermin C protein-coding GSDMC gasdermin C O gasdermin-C|melanoma-derived leucine zipper, extra-nuclear factor|melanoma-derived leucine zipper-containing extranuclear factor 20121230 -9606 56171 DNAH7 - - HGNC:18661|MIM:610061|Ensembl:ENSG00000118997|HPRD:10914|Vega:OTTHUMG00000154438 2 2q32.3 dynein, axonemal, heavy chain 7 protein-coding DNAH7 dynein, axonemal, heavy chain 7 O axonemal beta dynein heavy chain 7|axonemal dynein heavy chain 7|ciliary dynein heavy chain 7|dynein heavy chain 7, axonemal|dynein heavy chain-like protein 2|dynein, axonemal, heavy polypeptide 7|hDHC2 20121230 -9606 56172 ANKH UNQ241/PRO274 ANK|CCAL2|CMDJ|CPPDD|HANK|MANK HGNC:15492|MIM:605145|Ensembl:ENSG00000154122|HPRD:05509|Vega:OTTHUMG00000090539 5 5p15.1 ankylosis, progressive homolog (mouse) protein-coding ANKH ankylosis, progressive homolog (mouse) O progressive ankylosis protein homolog 20121230 -9606 56179 SLEB2 - hSLE1 HGNC:11081|MIM:605218 2 2q37 systemic lupus erythematosus susceptibility 2 unknown SLEB2 systemic lupus erythematosus susceptibility 2 O - 20110215 -9606 56180 MOSPD1 RP3-473B4.2 DJ473B4 HGNC:25235|MIM:300674|Ensembl:ENSG00000101928|HPRD:06483|Vega:OTTHUMG00000035315 X Xq26.3 motile sperm domain containing 1 protein-coding MOSPD1 motile sperm domain containing 1 O motile sperm domain-containing protein 1 20121230 -9606 56181 MTFR1L HYST1888 FAM54B|MST116|MSTP116 HGNC:28836|Ensembl:ENSG00000117640|HPRD:14248|Vega:OTTHUMG00000007377 1 1p36.11 mitochondrial fission regulator 1-like protein-coding MTFR1L mitochondrial fission regulator 1-like O family with sequence similarity 54, member B|protein FAM54B 20121230 -9606 56203 LMOD3 - - HGNC:6649|Ensembl:ENSG00000163380|HPRD:13993|Vega:OTTHUMG00000158774 3 3p14.1 leiomodin 3 (fetal) protein-coding LMOD3 leiomodin 3 (fetal) O leiomodin, fetal form|leiomodin-3 20121230 -9606 56204 FAM214A - KIAA1370 HGNC:25609|Ensembl:ENSG00000047346|HPRD:10965|Vega:OTTHUMG00000172688 15 15q21.2-q21.3 family with sequence similarity 214, member A protein-coding FAM214A family with sequence similarity 214, member A O protein FAM214A 20121230 -9606 56241 SUSD2 - BK65A6.2 HGNC:30667|Ensembl:ENSG00000099994|HPRD:18132|Vega:OTTHUMG00000150792 22 22q11-q12 sushi domain containing 2 protein-coding SUSD2 sushi domain containing 2 O Sushi domain (SCR repeat) containing|sushi domain-containing protein 2 20121230 -9606 56242 ZNF253 - BMZF-1|BMZF1|ZNF411 HGNC:13497|MIM:606954|Ensembl:ENSG00000256771|HPRD:06093|Vega:OTTHUMG00000182369 19 19p13.11 zinc finger protein 253 protein-coding ZNF253 zinc finger protein 253 O DNA-binding protein|bone marrow zinc finger 1|zinc finger protein 411 20121230 -9606 56243 KIAA1217 RP11-324E23.1 SKT HGNC:25428|Ensembl:ENSG00000120549|HPRD:11132|Vega:OTTHUMG00000017824 10 10p12.31 KIAA1217 protein-coding KIAA1217 KIAA1217 O likely orthologue of Mus musculus enhancer trap locus 4|sickle tail protein homolog 20121230 -9606 56244 BTNL2 DAAP-282D22.2 BTL-II|HSBLMHC1|SS2 HGNC:1142|MIM:606000|Ensembl:ENSG00000204290|HPRD:12077|Vega:OTTHUMG00000031102 6 6p21.3 butyrophilin-like 2 (MHC class II associated) protein-coding BTNL2 butyrophilin-like 2 (MHC class II associated) O butyrophilin-like protein 2 20121230 -9606 56245 C21orf62 - B37|C21orf120|PRED81 HGNC:1305|Ensembl:ENSG00000205929|HPRD:10759|Vega:OTTHUMG00000163477 21 21q22.11 chromosome 21 open reading frame 62 protein-coding C21orf62 chromosome 21 open reading frame 62 O uncharacterized protein C21orf62 20121230 -9606 56246 MRAP - B27|C21orf61|FALP|FGD2|GCCD2 HGNC:1304|MIM:609196|Ensembl:ENSG00000170262|HPRD:10758|Vega:OTTHUMG00000085309 21 21q22.1 melanocortin 2 receptor accessory protein protein-coding MRAP melanocortin 2 receptor accessory protein O fat cell-specific low molecular weight protein|fat tissue-specific low MW protein|melanocortin-2 receptor accessory protein 20121230 -9606 56247 FMR3 - - HGNC:3777 X Xq28 fragile X mental retardation associated 3 unknown FMR3 fragile X mental retardation associated 3 O - 20110215 -9606 56252 YLPM1 - C14orf170|ZAP113|ZAP3 HGNC:17798|Ensembl:ENSG00000119596|Vega:OTTHUMG00000172503 14 14q24.3 YLP motif containing 1 protein-coding YLPM1 YLP motif containing 1 O YLP motif-containing protein 1|nuclear protein ZAP3 20121230 -9606 56253 CRTAM - CD355 HGNC:24313|MIM:612597|Ensembl:ENSG00000109943|HPRD:16760|Vega:OTTHUMG00000166026 11 11q24.1 cytotoxic and regulatory T cell molecule protein-coding CRTAM cytotoxic and regulatory T cell molecule O class I MHC restricted T cell associated molecule|class-I MHC-restricted T cell associated molecule|class-I MHC-restricted T-cell-associated molecule|cytotoxic and regulatory T-cell molecule 20121230 -9606 56254 RNF20 - BRE1|BRE1A|hBRE1 HGNC:10062|MIM:607699|Ensembl:ENSG00000155827|HPRD:07410|Vega:OTTHUMG00000020385 9 9q22 ring finger protein 20, E3 ubiquitin protein ligase protein-coding RNF20 ring finger protein 20, E3 ubiquitin protein ligase O BRE1 E3 ubiquitin ligase homolog|BRE1-A|E3 ubiquitin-protein ligase BRE1A|homolog of S. cerevisiae BRE1 20121230 -9606 56255 TMX4 PSEC0095 DJ971N18.2|PDIA14|TXNDC13 HGNC:25237|Ensembl:ENSG00000125827|HPRD:11128|Vega:OTTHUMG00000031843 20 20p12 thioredoxin-related transmembrane protein 4 protein-coding TMX4 thioredoxin-related transmembrane protein 4 O protein disulfide isomerase family A, member 14|thioredoxin domain containing 13|thioredoxin domain-containing protein 13 20121230 -9606 56256 SERTAD4 - DJ667H12.2 HGNC:25236|Ensembl:ENSG00000082497|HPRD:15328|Vega:OTTHUMG00000036391 1 1q32.1-q41 SERTA domain containing 4 protein-coding SERTAD4 SERTA domain containing 4 O SERTA domain-containing protein 4 20121230 -9606 56257 MEPCE - BCDIN3 HGNC:20247|MIM:611478|Ensembl:ENSG00000146834|HPRD:07889|Vega:OTTHUMG00000155255 7 7q22.1 methylphosphate capping enzyme protein-coding MEPCE methylphosphate capping enzyme O 7SK snRNA methylphosphate capping enzyme|bicoid-interacting protein 3 homolog|bin3 homolog|bin3, bicoid-interacting 3, homolog 20121230 -9606 56259 CTNNBL1 RP5-1118M15.1 C20orf33|NAP|NYD-SP19|P14L|PP8304|dJ633O20.1 HGNC:15879|MIM:611537|Ensembl:ENSG00000132792|HPRD:10850|Vega:OTTHUMG00000032428 20 20q11.23-q12 catenin, beta like 1 protein-coding CTNNBL1 catenin, beta like 1 O beta-catenin-like protein 1|nuclear associated protein|nuclear-associated protein|testis development protein NYD-SP19 20121230 -9606 56260 C8orf44 - - HGNC:25646|Ensembl:ENSG00000213865|HPRD:07744|Vega:OTTHUMG00000164562 8 8q13.1 chromosome 8 open reading frame 44 protein-coding C8orf44 chromosome 8 open reading frame 44 O putative uncharacterized protein C8orf44 20121230 -9606 56261 GPCPD1 RP5-1022P6.2 GDE5|GDPD6|PREI4 HGNC:26957|MIM:614124|Ensembl:ENSG00000125772|HPRD:10025|Vega:OTTHUMG00000031806 20 20p12.3 glycerophosphocholine phosphodiesterase GDE1 homolog (S. cerevisiae) protein-coding GPCPD1 glycerophosphocholine phosphodiesterase GDE1 homolog (S. cerevisiae) O glycerophosphocholine phosphodiesterase GPCPD1|glycerophosphodiester phosphodiesterase 5|preimplantation protein 4|putative glycerophosphocholine phosphodiesterase GPCPD1|putative glycerophosphodiester phosphodiesterase 5 20121230 -9606 56262 LRRC8A RP11-101E3.3 AGM5|LRRC8 HGNC:19027|MIM:608360|Ensembl:ENSG00000136802|Vega:OTTHUMG00000020766 9 9q34.11 leucine rich repeat containing 8 family, member A protein-coding LRRC8A leucine rich repeat containing 8 family, member A O leucine-rich repeat-containing protein 8A 20121230 -9606 56265 CPXM1 UNQ3015/PRO9782 CPX1|CPXM HGNC:15771|MIM:609555|Ensembl:ENSG00000088882|HPRD:07099|Vega:OTTHUMG00000031706 20 20p13 carboxypeptidase X (M14 family), member 1 protein-coding CPXM1 carboxypeptidase X (M14 family), member 1 O carboxypeptidase-like protein X1|metallocarboxypeptidase CPX-1|probable carboxypeptidase X1 20121230 -9606 56267 CCBL2 RP11-82K18.3 KAT3|KATIII|RP4-531M19.2 HGNC:33238|MIM:610656|Ensembl:ENSG00000137944|HPRD:13752|Vega:OTTHUMG00000010617 1 1p22.2 cysteine conjugate-beta lyase 2 protein-coding CCBL2 cysteine conjugate-beta lyase 2 O cysteine-S-conjugate beta-lyase 2|kynurenine aminotransferase III|kynurenine--glyoxylate transaminase|kynurenine--oxoglutarate transaminase 3|kynurenine--oxoglutarate transaminase III|kynurenine-oxoglutarate transaminase 3 20121230 -9606 56269 IRGC - CINEMA|IFGGE|IRGC1|Iigp5|R30953_1 HGNC:28835|Ensembl:ENSG00000124449|HPRD:15200|Vega:OTTHUMG00000154587 19 19q13.31 immunity-related GTPase family, cinema protein-coding IRGC immunity-related GTPase family, cinema O immunity-related GTPase cinema 1|immunity-related GTPase family, cinema 1|interferon inducible GTPase 5|interferon-gamma-inducible GTPase IFGGE protein|interferon-inducible GTPase 5 20121230 -9606 56270 WDR45L hCG_30378 WIPI-3|WIPI3 HGNC:25072|MIM:609226|Ensembl:ENSG00000141580|HPRD:15669|Vega:OTTHUMG00000150146 17 17q25.3 WDR45-like protein-coding WDR45L WDR45-like O WD repeat domain phosphoinositide-interacting protein 3|WD repeat protein 45-like|WD repeat-containing protein 45-like|WDR45-like protein|WIPI49-like protein 20121230 -9606 56271 BEX4 RP4-635G19.2 BEXL1 HGNC:25475|MIM:300692|Ensembl:ENSG00000102409|Vega:OTTHUMG00000022091 X Xq22.1-q22.3 brain expressed, X-linked 4 protein-coding BEX4 brain expressed, X-linked 4 O BEX family member 4|BEX1-like protein 1|brain expressed X-linked-like 1|nerve growth factor receptor-associated protein 3|protein BEX4 20121230 -9606 56286 DAD1P1 - DAD1L|DADR HGNC:18295|MIM:609860 12 12p12.1 defender against cell death 1 pseudogene 1 pseudo DAD1P1 defender against cell death 1 pseudogene 1 O - 20121230 -9606 56287 GKN1 UNQ489/PRO1005 AMP18|BRICD1|CA11|FOV|foveolin HGNC:23217|MIM:606402|Ensembl:ENSG00000169605|HPRD:16217|Vega:OTTHUMG00000129574 2 2p13.3 gastrokine 1 protein-coding GKN1 gastrokine 1 O 18 kDa antrum mucosa protein|AMP-18|BRICHOS domain containing 1|gastrokine-1 20121230 -9606 56288 PARD3 RP11-406D17.1 ASIP|Baz|PAR3|PAR3alpha|PARD-3|PARD3A|SE2-5L16|SE2-5LT1|SE2-5T2 HGNC:16051|MIM:606745|Ensembl:ENSG00000148498|HPRD:05994|Vega:OTTHUMG00000017948 10 10p11.21 par-3 partitioning defective 3 homolog (C. elegans) protein-coding PARD3 par-3 partitioning defective 3 homolog (C. elegans) O CTCL tumor antigen se2-5|PAR3-alpha|atypical PKC isotype-specific interacting protein|atypical PKC isotype-specific-interacting protein|bazooka|partitioning defective 3 homolog 20121230 -9606 56300 IL36G UNQ2456/PRO5737 IL-1F9|IL-1H1|IL-1RP2|IL1E|IL1F9|IL1H1|IL1RP2 HGNC:15741|MIM:605542|Ensembl:ENSG00000136688|HPRD:05707|Vega:OTTHUMG00000131336 2 2q12-q21 interleukin 36, gamma protein-coding IL36G interleukin 36, gamma O IL-1 epsilon|IL-1 related protein 2|IL-1(EPSILON)|IL-1-epsilon|IL-1-related protein 2|interleukin 1 family, member 9|interleukin 1-related protein 2|interleukin-1 epsilon|interleukin-1 family member 9|interleukin-1 homolog 1|interleukin-36 gamma 20121230 -9606 56301 SLC7A10 - HASC-1|asc-1 HGNC:11058|MIM:607959|Ensembl:ENSG00000130876|HPRD:12137|Vega:OTTHUMG00000180344 19 19q13.1 solute carrier family 7 (neutral amino acid transporter light chain, asc system), member 10 protein-coding SLC7A10 solute carrier family 7 (neutral amino acid transporter light chain, asc system), member 10 O asc-type amino acid transporter 1|solute carrier family 7 member 10|solute carrier family 7, (cationic amino acid transporter, y+ system) member 10|solute carrier family 7, (neutral amino acid transporter, y+ system) member 10 20121230 -9606 56302 TRPV5 - CAT2|ECAC1|OTRPC3 HGNC:3145|MIM:606679|Ensembl:ENSG00000127412|HPRD:05981|Vega:OTTHUMG00000157157 7 7q35 transient receptor potential cation channel, subfamily V, member 5 protein-coding TRPV5 transient receptor potential cation channel, subfamily V, member 5 O ECaC|calcium transport protein 2|calcium transporter 2|epithelial calcium channel 1|osm-9-like TRP channel 3|transient receptor potential cation channel subfamily V member 5 20121230 -9606 56311 ANKRD7 - TSA806 HGNC:18588|MIM:610731|Ensembl:ENSG00000106013|Vega:OTTHUMG00000156960 7 7q31 ankyrin repeat domain 7 protein-coding ANKRD7 ankyrin repeat domain 7 O ankyrin repeat domain-containing protein 7|testis-specific ankyrin motif containing protein|testis-specific protein TSA806 20121230 -9606 56339 METTL3 - IME4|M6A|MT-A70|Spo8 HGNC:17563|MIM:612472|Ensembl:ENSG00000165819|HPRD:14389|Vega:OTTHUMG00000168825 14 14q11.1 methyltransferase like 3 protein-coding METTL3 methyltransferase like 3 O N6-adenosine-methyltransferase 70 kDa subunit|adoMet-binding subunit of the human mRNA (N6-adenosine)-methyltransferase|mRNA m(6)A methyltransferase|methyltransferase-like protein 3 20121230 -9606 56341 PRMT8 - HRMT1L3|HRMT1L4 HGNC:5188|MIM:610086|Ensembl:ENSG00000111218|HPRD:11029|Vega:OTTHUMG00000128493 12 12p13.3 protein arginine methyltransferase 8 protein-coding PRMT8 protein arginine methyltransferase 8 O HMT1 hnRNP methyltransferase-like 3|heterogeneous nuclear ribonucleoprotein methyltransferase-like protein 4|protein arginine N-methyltransferase 4|protein arginine N-methyltransferase 8 20121230 -9606 56342 PPAN - BXDC3|SSF|SSF-1|SSF1|SSF2 HGNC:9227|MIM:607793|Ensembl:ENSG00000130810|HPRD:08478|Vega:OTTHUMG00000156826 19 19p13 peter pan homolog (Drosophila) protein-coding PPAN peter pan homolog (Drosophila) O brix domain-containing protein 3|homolog of S. cerevisiae SSF1|second-step splicing factor 1|suppressor of SWI4 1 homolog|suppressor of sterile four 1 20121230 -9606 56344 CABP5 - CABP3 HGNC:13714|MIM:607315|Ensembl:ENSG00000105507|HPRD:09537 19 19q13.33 calcium binding protein 5 protein-coding CABP5 calcium binding protein 5 O calcium-binding protein 3|calcium-binding protein 5 20121230 -9606 56413 LTB4R2 - BLT2|BLTR2|JULF2|KPG_004|LTB4-R 2|LTB4-R2|NOP9 HGNC:19260|MIM:605773|Ensembl:ENSG00000213906|HPRD:16153|Vega:OTTHUMG00000029345 14 14q11.2-q12 leukotriene B4 receptor 2 protein-coding LTB4R2 leukotriene B4 receptor 2 O LTB4 receptor JULF2|leukotriene B4 receptor BLT2|seven transmembrane receptor BLTR2 20121230 -9606 56474 CTPS2 RP11-759L5.3 - HGNC:2520|MIM:300380|Ensembl:ENSG00000047230|HPRD:02305|Vega:OTTHUMG00000021193 X Xp22 CTP synthase 2 protein-coding CTPS2 CTP synthase 2 O CTP synthase II|CTP synthetase 2|CTP synthetase isoform|CTP synthetase type 2|UTP--ammonia ligase 2|UTP-ammonia ligase|cytidine 5'-triphosphate synthetase 2 20121230 -9606 56475 RPRM - REPRIMO HGNC:24201|MIM:612171|Ensembl:ENSG00000177519|HPRD:18002|Vega:OTTHUMG00000131905 2 2q23.3 reprimo, TP53 dependent G2 arrest mediator candidate protein-coding RPRM reprimo, TP53 dependent G2 arrest mediator candidate O candidate mediator of the p53 dependent G2 arrest|candidate mediator of the p53-dependent G2 arrest|protein reprimo|reprimo, TP53 dependant G2 arrest mediator candidate 20121230 -9606 56476 ABCB10P1 - ABCB10P|ABCB10P2|M-ABC2|MABC2 HGNC:14114 15 15q11.2 ATP-binding cassette, sub-family B (MDR/TAP), member 10 pseudogene 1 pseudo ABCB10P1 ATP-binding cassette, sub-family B (MDR/TAP), member 10 pseudogene 1 O - 20121230 -9606 56477 CCL28 - CCK1|MEC|SCYA28 HGNC:17700|MIM:605240|Ensembl:ENSG00000151882|HPRD:05577|Vega:OTTHUMG00000094811 5 5p12 chemokine (C-C motif) ligand 28 protein-coding CCL28 chemokine (C-C motif) ligand 28 O C-C motif chemokine 28|CC chemokine CCL28|chemokine (C-C motif) ligand 28 splice variant chi|mucosae-associated epithelial chemokine|small inducible cytokine A28|small inducible cytokine subfamily A (Cys-Cys), member 28|small-inducible cytokine A28 20121230 -9606 56478 EIF4ENIF1 RP11-247I13.2 4E-T|Clast4 HGNC:16687|MIM:607445|Ensembl:ENSG00000184708|HPRD:10456|Vega:OTTHUMG00000030793 22 22q11.2 eukaryotic translation initiation factor 4E nuclear import factor 1 protein-coding EIF4ENIF1 eukaryotic translation initiation factor 4E nuclear import factor 1 O 2610509L04Rik|eIF4E transporter|eIF4E-transporter|eukaryotic translation initiation factor 4E transporter 20121230 -9606 56479 KCNQ5 RP11-257K9.5 Kv7.5 HGNC:6299|MIM:607357|Ensembl:ENSG00000185760|HPRD:16241|Vega:OTTHUMG00000015020 6 6q14 potassium voltage-gated channel, KQT-like subfamily, member 5 protein-coding KCNQ5 potassium voltage-gated channel, KQT-like subfamily, member 5 O KQT-like 5|potassium channel protein|potassium channel subunit alpha KvLQT5|potassium voltage-gated channel subfamily KQT member 5|voltage-gated potassium channel subunit Kv7.5 20121230 -9606 56521 DNAJC12 RP11-57G10.2 JDP1 HGNC:28908|MIM:606060|Ensembl:ENSG00000108176|HPRD:06930|Vega:OTTHUMG00000018339 10 10q22.1 DnaJ (Hsp40) homolog, subfamily C, member 12 protein-coding DNAJC12 DnaJ (Hsp40) homolog, subfamily C, member 12 O J domain containing protein 1 (JDP1)|J domain protein 1|dnaJ homolog subfamily C member 12|j domain-containing protein 1 20121230 -9606 56547 MMP26 - - HGNC:14249|MIM:605470|Ensembl:ENSG00000167346|HPRD:05683|Vega:OTTHUMG00000066442 11 11p15 matrix metallopeptidase 26 protein-coding MMP26 matrix metallopeptidase 26 O MMP-26|endometase|matrilysin 2|matrilysin-2|matrix metalloproteinase 26|matrix metalloproteinase-26 20121230 -9606 56548 CHST7 RP1-71L16.8 C6ST-2 HGNC:13817|MIM:300375|Ensembl:ENSG00000147119|HPRD:02302|Vega:OTTHUMG00000021423 X Xp11.23 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 7 protein-coding CHST7 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 7 O GST-5|N-acetylglucosamine 6-O-sulfotransferase 4|carbohydrate sulfotransferase 7|chondroitin 6-sulfotransferase-2|galactose/N-acetylglucosamine/N-acetylglucosamine 6-O-sulfotransferase 5|glcNAc6ST-4|gn6st-4 20121230 -9606 56603 CYP26B1 - CYP26A2|P450RAI-2|P450RAI2|RHFCA HGNC:20581|MIM:605207|Ensembl:ENSG00000003137|HPRD:05550|Vega:OTTHUMG00000129756 2 2p13.2 cytochrome P450, family 26, subfamily B, polypeptide 1 protein-coding CYP26B1 cytochrome P450, family 26, subfamily B, polypeptide 1 O cytochrome P450 26A2|cytochrome P450 26B1|cytochrome P450 CYP26B1 variant 2|cytochrome P450 retinoic acid-inactivating 2|cytochrome P450 retinoid metabolizing protein|cytochrome P450RAI-2|retinoic acid-metabolizing cytochrome 20121230 -9606 56604 TUBB7P - TUBB4Q HGNC:12413|HPRD:15588 4 4q35 tubulin, beta 7, pseudogene pseudo TUBB7P tubulin, beta 7, pseudogene O - 20121230 -9606 56605 ERO1LB RP5-985L19.2 - HGNC:14355|Ensembl:ENSG00000086619|HPRD:13279|Vega:OTTHUMG00000039955 1 1q42.2-q43 ERO1-like beta (S. cerevisiae) protein-coding ERO1LB ERO1-like beta (S. cerevisiae) O ERO1-L-beta|ERO1-like protein beta|endoplasmic oxidoreductin-1-like protein B|oxidoreductin-1-L-beta 20121230 -9606 56606 SLC2A9 - GLUT9|GLUTX|UAQTL2|URATv1 HGNC:13446|MIM:606142|Ensembl:ENSG00000109667|HPRD:05848|Vega:OTTHUMG00000044263 4 4p16.1 solute carrier family 2 (facilitated glucose transporter), member 9 protein-coding SLC2A9 solute carrier family 2 (facilitated glucose transporter), member 9 O GLUT-9|glucose transporter type 9|human glucose transporter-like protein-9|solute carrier family 2, facilitated glucose transporter member 9|urate voltage-driven efflux transporter 1 20121230 -9606 56616 DIABLO hCG_1782202 DFNA64|DIABLO-S|SMAC|SMAC3 HGNC:21528|MIM:605219|Ensembl:ENSG00000184047|HPRD:05560|Vega:OTTHUMG00000157014 12 12q24.31 diablo, IAP-binding mitochondrial protein protein-coding DIABLO diablo, IAP-binding mitochondrial protein O 0610041G12Rik|diablo homolog, mitochondrial|direct IAP-binding protein with low pI|mitochondrial Smac protein|second mitochondria-derived activator of caspase 20121230 -9606 56623 INPP5E - CORS1|CPD4|JBTS1|MORMS|PPI5PIV HGNC:21474|MIM:613037|Ensembl:ENSG00000148384|HPRD:17151|Vega:OTTHUMG00000020927 9 9q34.3 inositol polyphosphate-5-phosphatase, 72 kDa protein-coding INPP5E inositol polyphosphate-5-phosphatase, 72 kDa O 72 kDa inositol polyphosphate 5-phosphatase|phosphatidylinositol (4,5) bisphosphate 5-phosphatase|phosphatidylinositol 4,5-bisphosphate 5-phosphatase|phosphatidylinositol polyphosphate 5-phosphatase type IV|phosphatidylinositol-4,5-bisphosphate 5-phosphatase 20121230 -9606 56624 ASAH2 - BCDase|HNAC1|LCDase|N-CDase|NCDase HGNC:18860|MIM:611202|Ensembl:ENSG00000188611|Vega:OTTHUMG00000018223 10 10q11.21 N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2 protein-coding ASAH2 N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2 O N-acylsphingosine amidohydrolase 2|acylsphingosine deacylase 2|mitochondrial ceramidase|neutral ceramidase|neutral/alkaline ceramidase|non-lysosomal ceramidase 20121230 -9606 56647 BCCIP - TOK-1|TOK1 HGNC:978|MIM:611883|Ensembl:ENSG00000107949|HPRD:16542|Vega:OTTHUMG00000019237 10 10q26.1 BRCA2 and CDKN1A interacting protein protein-coding BCCIP BRCA2 and CDKN1A interacting protein O BCCIPalpha|BCCIPbeta|BRCA2 and CDKN1A-interacting protein|BRCA2 and Cip1/p21 interacting protein|TOK-1alpha|TOK-1beta|cdk inhibitor p21 binding protein|p21- and CDK-associated protein 1|protein TOK-1 20121230 -9606 56648 EIF5A2 - EIF-5A2|eIF5AII HGNC:3301|MIM:605782|Ensembl:ENSG00000163577|HPRD:10426|Vega:OTTHUMG00000158958 3 3q26.2 eukaryotic translation initiation factor 5A2 protein-coding EIF5A2 eukaryotic translation initiation factor 5A2 O eIF-5A-2|eukaryotic initiation factor 5A|eukaryotic translation initiation factor 5A-2 20121230 -9606 56649 TMPRSS4 UNQ776/PRO1570 CAPH2|MT-SP2|TMPRSS3 HGNC:11878|MIM:606565|Ensembl:ENSG00000137648|HPRD:05952|Vega:OTTHUMG00000164122 11 11q23.3 transmembrane protease, serine 4 protein-coding TMPRSS4 transmembrane protease, serine 4 O channel-activating protease 2|membrane-type serine protease 2|transmembrane protease serine 4|transmembrane serine protease 3|type II membrane serine protease 20121230 -9606 56650 CLDND1 HSPC174 C3orf4|GENX-3745 HGNC:1322|Ensembl:ENSG00000080822|HPRD:12822|Vega:OTTHUMG00000160050 3 3q12.1 claudin domain containing 1 protein-coding CLDND1 claudin domain containing 1 O claudin domain containing 1 protein|claudin domain-containing protein 1|membrane protein GENX-3745 20121230 -9606 56651 LINC00470 - C18orf2 HGNC:1225|HPRD:07576 18 - long intergenic non-protein coding RNA 470 miscRNA LINC00470 long intergenic non-protein coding RNA 470 O - 20121230 -9606 56652 C10orf2 RP11-108L7.2 ATXN8|IOSCA|MTDPS7|PEO|PEO1|PEOA3|SANDO|SCA8|TWINL HGNC:1160|MIM:606075|Ensembl:ENSG00000107815|HPRD:05830|Vega:OTTHUMG00000018917 10 10q24 chromosome 10 open reading frame 2 protein-coding C10orf2 chromosome 10 open reading frame 2 O T7 gp4-like protein with intramitochondrial nucleoid localization|T7 helicase-related protein with intramitochondrial nucleoid localization|T7-like mitochondrial DNA helicase|ataxin 8|mitochondrial twinkle protein|progressive external ophthalmoplegia 1 protein|twinkle protein, mitochondrial 20121230 -9606 56654 NPDC1 RP11-229P13.1 CAB|CAB-|CAB-1|CAB1|NPDC-1 HGNC:7899|MIM:605798|Ensembl:ENSG00000107281|HPRD:12048|Vega:OTTHUMG00000020956 9 9q34.3 neural proliferation, differentiation and control, 1 protein-coding NPDC1 neural proliferation, differentiation and control, 1 O neural proliferation differentiation and control protein 1 20121230 -9606 56655 POLE4 - YHHQ1|p12 HGNC:18755|MIM:607269|Ensembl:ENSG00000115350|HPRD:16238|Vega:OTTHUMG00000129971 2 2p12 polymerase (DNA-directed), epsilon 4, accessory subunit protein-coding POLE4 polymerase (DNA-directed), epsilon 4, accessory subunit O DNA polymerase II subunit 4|DNA polymerase epsilon p12 subunit|DNA polymerase epsilon subunit 4|DNA polymerase epsilon subunit p12|polymerase (DNA-directed), epsilon 4 (p12 subunit) 20121230 -9606 56656 OR2S2 - OR37A|OST715 HGNC:8276|Ensembl:ENSG00000122718|HPRD:17704|Vega:OTTHUMG00000019891 9 9p13.3 olfactory receptor, family 2, subfamily S, member 2 protein-coding OR2S2 olfactory receptor, family 2, subfamily S, member 2 O olfactory receptor 2S2|olfactory receptor OR9-3 20121230 -9606 56658 TRIM39 DAAP-385L22.4 RNF23|TFP|TRIM39B HGNC:10065|MIM:605700|Ensembl:ENSG00000204599|HPRD:09298|Vega:OTTHUMG00000031066 6 6p21.3 tripartite motif containing 39 protein-coding TRIM39 tripartite motif containing 39 O E3 ubiquitin-protein ligase TRIM39|ring finger protein 23|testis-abundant finger protein|tripartite motif-containing 39|tripartite motif-containing protein 39 20121230 -9606 56659 KCNK13 - K2p13.1|THIK-1|THIK1 HGNC:6275|MIM:607367|Ensembl:ENSG00000152315|HPRD:09563|Vega:OTTHUMG00000171017 14 14q32.11 potassium channel, subfamily K, member 13 protein-coding KCNK13 potassium channel, subfamily K, member 13 O K2P13.1 potassium channel|potassium channel subfamily K member 13|tandem pore domain halothane-inhibited potassium channel 1|tandem pore domain potassium channel THIK-1 20121230 -9606 56660 KCNK12 - K2p12.1|THIK-2|THIK2 HGNC:6274|MIM:607366|Ensembl:ENSG00000184261|HPRD:09562|Vega:OTTHUMG00000129131 2 2p16.3 potassium channel, subfamily K, member 12 protein-coding KCNK12 potassium channel, subfamily K, member 12 O potassium channel subfamily K member 12|tandem pore domain halothane-inhibited potassium channel 2|tandem pore domain potassium channel THIK-2 20121230 -9606 56662 VTRNA1-3 - HVG3|VAULTRC3|VR3|hvg-3 HGNC:12656|MIM:612697 5 5q31.3 vault RNA 1-3 miscRNA VTRNA1-3 vault RNA 1-3 O - 20121230 -9606 56663 VTRNA1-2 - HVG2|VAULTRC2|VR2|hvg-2 HGNC:12655|MIM:612696 5 5q31.3 vault RNA 1-2 miscRNA VTRNA1-2 vault RNA 1-2 O - 20121230 -9606 56664 VTRNA1-1 - HVG1|VAULTRC1|VR1|hvg-1|vRNA HGNC:12654|MIM:612695 5 5q31.3 vault RNA 1-1 miscRNA VTRNA1-1 vault RNA 1-1 O - 20121230 -9606 56666 PANX2 RP3-402G11.9 PX2|hPANX2 HGNC:8600|MIM:608421|Ensembl:ENSG00000073150|HPRD:09760|Vega:OTTHUMG00000044649 22 22q13.33 pannexin 2 protein-coding PANX2 pannexin 2 O pannexin-2 20121230 -9606 56667 MUC13 UNQ6194/PRO20221 DRCC1|MUC-13 HGNC:7511|MIM:612181|Ensembl:ENSG00000173702|HPRD:10101|Vega:OTTHUMG00000159484 3 3q21.2 mucin 13, cell surface associated protein-coding MUC13 mucin 13, cell surface associated O down-regulated in colon cancer 1|mucin 13, epithelial transmembrane|mucin-13 20121230 -9606 56670 SUCNR1 - GPR91 HGNC:4542|MIM:606381|Ensembl:ENSG00000198829|HPRD:16211|Vega:OTTHUMG00000159880 3 3q25.1 succinate receptor 1 protein-coding SUCNR1 succinate receptor 1 O G protein-coupled receptor 91|G-protein coupled receptor 91|P2Y purinoceptor 1 20121230 -9606 56672 AKIP1 - BCA3|C11orf17 HGNC:1170|MIM:609191|Ensembl:ENSG00000166452|HPRD:12380|Vega:OTTHUMG00000165653 11 11p15.3 A kinase (PRKA) interacting protein 1 protein-coding AKIP1 A kinase (PRKA) interacting protein 1 O A-kinase-interacting protein 1|breast cancer associated gene 3|koyt binding protein 1|koyt binding protein 2|koyt binding protein 3|proline-rich protein BCA3 20121230 -9606 56673 C11orf16 - - HGNC:1169|Ensembl:ENSG00000176029|HPRD:12604|Vega:OTTHUMG00000165654 11 11p15.3 chromosome 11 open reading frame 16 protein-coding C11orf16 chromosome 11 open reading frame 16 O uncharacterized protein C11orf16 20121230 -9606 56674 TMEM9B UNQ712/PRO1375 C11orf15 HGNC:1168|Ensembl:ENSG00000175348|HPRD:12603|Vega:OTTHUMG00000165676 11 11p15.3 TMEM9 domain family, member B protein-coding TMEM9B TMEM9 domain family, member B O transmembrane protein 9B 20121230 -9606 56675 NRIP3 - C11orf14|NY-SAR-105 HGNC:1167|MIM:613125|Ensembl:ENSG00000175352|HPRD:14840|Vega:OTTHUMG00000165680 11 11p15.3 nuclear receptor interacting protein 3 protein-coding NRIP3 nuclear receptor interacting protein 3 O nuclear receptor-interacting protein 3|sarcoma antigen NY-SAR-105 20121230 -9606 56676 ASCL3 - HASH3|SGN1|bHLHa42 HGNC:740|MIM:609154|Ensembl:ENSG00000176009|HPRD:18523 11 11p15.3 achaete-scute complex homolog 3 (Drosophila) protein-coding ASCL3 achaete-scute complex homolog 3 (Drosophila) O ASH-3|achaete-scute homolog 3|bHLH transcription factor Sgn-1 (Salivary Glands 1)|bHLH transcriptional regulator Sgn-1|class A basic helix-loop-helix protein 42 20121230 -9606 56677 FABP3P2 - FABP3-ps|FABP3P HGNC:3558 13 13q13-q14 fatty acid binding protein 3, pseudogene 2 pseudo FABP3P2 fatty acid binding protein 3, pseudogene 2 O - 20121230 -9606 56681 SAR1A RP11-367H5.4 SAR1|SARA1|Sara|masra2 HGNC:10534|MIM:607691|Ensembl:ENSG00000079332|HPRD:07608|Vega:OTTHUMG00000018400 10 10q22.1 SAR1 homolog A (S. cerevisiae) protein-coding SAR1A SAR1 homolog A (S. cerevisiae) O COPII-associated small GTPase|GTP-binding protein SAR1a|SAR1 gene homolog A|SAR1a gene homolog 1 20121230 -9606 56683 C21orf59 - C21orf48 HGNC:1301|Ensembl:ENSG00000159079|Ensembl:ENSG00000265590|HPRD:10756|Vega:OTTHUMG00000064928|Vega:OTTHUMG00000179510 21 21q22.1 chromosome 21 open reading frame 59 protein-coding C21orf59 chromosome 21 open reading frame 59 O prostate cancer upregulated protein 1|uncharacterized protein C21orf59 20121230 -9606 56694 BMIQ8 - OB10P MIM:603188 10 10p body mass index quantitative trait locus 8 unknown - - - - 20120622 -9606 56704 JPH1 - JP-1|JP1 HGNC:14201|MIM:605266|Ensembl:ENSG00000104369|HPRD:07286|Vega:OTTHUMG00000164524 8 8q21 junctophilin 1 protein-coding JPH1 junctophilin 1 O junctophilin type 1|junctophilin type1|junctophilin-1|mitsugumin72 20121230 -9606 56729 RETN UNQ407/PRO1199 ADSF|FIZZ3|RETN1|RSTN|XCP1 HGNC:20389|MIM:605565|Ensembl:ENSG00000104918|HPRD:05714 19 19p13.2 resistin protein-coding RETN resistin O C/EBP-epsilon regulated myeloid-specific secreted cysteine-rich protein precursor 1|adipose tissue-specific secretory factor|c/EBP-epsilon-regulated myeloid-specific secreted cysteine-rich protein|cysteine-rich secreted protein A12-alpha-like 2|cysteine-rich secreted protein FIZZ3|found in inflammatory zone 3|resistin delta2 20121230 -9606 56731 SLC2A4RG RP4-583P15.6 GEF|HDBP-1|HDBP1|Si-1-2|Si-1-2-19 HGNC:15930|MIM:609493|Ensembl:ENSG00000125520|HPRD:15364|Vega:OTTHUMG00000032997 20 20q13.33 SLC2A4 regulator protein-coding SLC2A4RG SLC2A4 regulator O GLUT4 enhancer factor|Huntington's disease gene regulatory region-binding protein 1 20121230 -9606 56751 BARHL1 FKSG31 - HGNC:953|MIM:605211|Ensembl:ENSG00000125492|HPRD:05554|Vega:OTTHUMG00000020839 9 9q34 BarH-like homeobox 1 protein-coding BARHL1 BarH-like homeobox 1 O barH-like 1 homeobox protein 20121230 -9606 56776 FMN2 RP11-90L13.1 - HGNC:14074|MIM:606373|Ensembl:ENSG00000155816|HPRD:10449|Vega:OTTHUMG00000039883 1 1q43 formin 2 protein-coding FMN2 formin 2 O formin-2 20121230 -9606 56797 HTGS - - MIM:145750 15 15q11.2-q13.1 Hypertriglyceridemia, familial unknown - - - - 20120622 -9606 56801 HYALP - HDLD3|HYLAP MIM:605201 11 11q23.3 Hypoalphalipoproteinemia, primary unknown - - - - 20120722 -9606 56829 ZC3HAV1 PRO1677 ARTD13|FLB6421|PARP13|ZAP|ZC3H2|ZC3HDC2 HGNC:23721|MIM:607312|Ensembl:ENSG00000105939|HPRD:09534|Vega:OTTHUMG00000157471 7 7q34 zinc finger CCCH-type, antiviral 1 protein-coding ZC3HAV1 zinc finger CCCH-type, antiviral 1 O ADP-ribosyltransferase diphtheria toxin-like 13|zinc finger CCCH domain-containing protein 2|zinc finger CCCH-type antiviral protein 1 20121230 -9606 56832 IFNK UNQ6124/PRO20084 RP11-27J8.1 HGNC:21714|Ensembl:ENSG00000147896|HPRD:17133|Vega:OTTHUMG00000019715 9 - interferon, kappa protein-coding IFNK interferon, kappa O IFN-kappa|interferon kappa|interferon-like protein 20121230 -9606 56833 SLAMF8 RP11-190A12.3 BLAME|CD353|SBBI42 HGNC:21391|MIM:606620|Ensembl:ENSG00000158714|HPRD:09429|Vega:OTTHUMG00000035433 1 1q23.2 SLAM family member 8 protein-coding SLAMF8 SLAM family member 8 O B lymphocyte activator macrophage expressed|B-lymphocyte activator macrophage expressed|BCM-like membrane protein 20121230 -9606 56834 GPR137 - C11orf4|GPR137A|TM7SF1L1 HGNC:24300|Ensembl:ENSG00000173264|HPRD:12600|Vega:OTTHUMG00000167817 11 11cen-q22.3 G protein-coupled receptor 137 protein-coding GPR137 G protein-coupled receptor 137 O integral membrane protein GPR137|transmembrane 7 superfamily member 1-like 1 protein 20121230 -9606 56848 SPHK2 - SK 2|SK-2|SPK 2|SPK-2 HGNC:18859|MIM:607092|Ensembl:ENSG00000063176|HPRD:06157 19 19q13.2 sphingosine kinase 2 protein-coding SPHK2 sphingosine kinase 2 O sphingosine kinase type 2 20121230 -9606 56849 TCEAL7 LL0XNC01-105G4.1 MPMGp800C04260Q003 HGNC:28336|MIM:300771|Ensembl:ENSG00000182916|HPRD:06641|Vega:OTTHUMG00000022096 X Xq22.1 transcription elongation factor A (SII)-like 7 protein-coding TCEAL7 transcription elongation factor A (SII)-like 7 O TCEA-like protein 7|transcription elongation factor A protein-like 7|transcription elongation factor S-II protein-like 7 20121230 -9606 56850 GRIPAP1 - GRASP-1 HGNC:18706|MIM:300408|Ensembl:ENSG00000068400|HPRD:02325|Vega:OTTHUMG00000033192 X Xp11 GRIP1 associated protein 1 protein-coding GRIPAP1 GRIP1 associated protein 1 O GRIP1-associated protein 1|MPMGp800B12492Q3 20121230 -9606 56851 EMC7 HT022 C11orf3|C15orf24|ORF1-FL1 HGNC:24301|Ensembl:ENSG00000134153|HPRD:12670|Vega:OTTHUMG00000129367 15 15q14 ER membrane protein complex subunit 7 protein-coding EMC7 ER membrane protein complex subunit 7 O UPF0480 protein C15orf24|chromosome 15 hypothetical ATG/GTP binding protein|chromosome 15 open reading frame 24 20121230 -9606 56852 RAD18 - RNF73 HGNC:18278|MIM:605256|Ensembl:ENSG00000070950|HPRD:09242|Vega:OTTHUMG00000090545 3 3p25-p24 RAD18 homolog (S. cerevisiae) protein-coding RAD18 RAD18 homolog (S. cerevisiae) O E3 ubiquitin-protein ligase RAD18|RAD18, S. cerevisiae, homolog|RING finger protein 73|hHR18|hRAD18|postreplication repair protein RAD18|postreplication repair protein hRAD18p 20121230 -9606 56853 CELF4 - BRUNOL-4|BRUNOL4 HGNC:14015|MIM:612679|Ensembl:ENSG00000101489|HPRD:12534|Vega:OTTHUMG00000178178 18 18q12 CUGBP, Elav-like family member 4 protein-coding CELF4 CUGBP, Elav-like family member 4 O Bruno -like 4, RNA binding protein|CELF-4|CUG-BP and ETR-3 like factor 4|CUG-BP- and ETR-3-like factor 4|CUGBP Elav-like family member 4|LYST-interacting protein LIP9|RNA-binding protein BRUNOL-4|RNA-binding protein BRUNOL4|bruno-like 4, RNA binding protein|bruno-like protein 4 20121230 -9606 56882 CDC42SE1 - SCIP1|SPEC1 HGNC:17719|Ensembl:ENSG00000197622|HPRD:16694|Vega:OTTHUMG00000035158 1 1q21.3 CDC42 small effector 1 protein-coding CDC42SE1 CDC42 small effector 1 O 1300002M12Rik|CDC42 small effector protein 1|CDC42-binding protein SCIP1|signaling molecule SPEC1 beta|small effector of CDC42 protein 1|small protein effector 1 of Cdc42 20121230 -9606 56884 FSTL5 - - HGNC:21386|Ensembl:ENSG00000168843|HPRD:10998|Vega:OTTHUMG00000161397 4 4q32.3 follistatin-like 5 protein-coding FSTL5 follistatin-like 5 O follistatin-like protein 5|follistatin-related protein 5 20121230 -9606 56886 UGGT1 - HUGT1|UGCGL1|UGT1 HGNC:15663|MIM:605897|Ensembl:ENSG00000136731|HPRD:12064|Vega:OTTHUMG00000131570 2 2q14.3 UDP-glucose glycoprotein glucosyltransferase 1 protein-coding UGGT1 UDP-glucose glycoprotein glucosyltransferase 1 O UDP--Glc:glycoprotein glucosyltransferase|UDP-glucose ceramide glucosyltransferase-like 1|UDP-glucose:glycoprotein glucosyltransferase 1 20121230 -9606 56888 KCMF1 - DEBT91|FIGC|PCMF|ZZZ1 HGNC:20589|MIM:614719|Ensembl:ENSG00000176407|HPRD:13761|Vega:OTTHUMG00000153004 2 2p11.2 potassium channel modulatory factor 1 protein-coding KCMF1 potassium channel modulatory factor 1 O E3 ubiquitin-protein ligase KCMF1|FGF-induced in gastric cancer|FGF-induced ubiquitin-protein ligase in gastric cancers|ZZ-type zinc finger-containing protein 1|differentially expressed in branching tubulogenesis 91|zinc finger, ZZ domain containing 1 20121230 -9606 56889 TM9SF3 RP11-34E5.1 EP70-P-iso|SMBP HGNC:21529|Ensembl:ENSG00000077147|HPRD:18073|Vega:OTTHUMG00000018834 10 10q24.1 transmembrane 9 superfamily member 3 protein-coding TM9SF3 transmembrane 9 superfamily member 3 O SM-11044 binding protein|SM-11044-binding protein|endomembrane protein emp70 precursor isolog 20121230 -9606 56890 MDM1 - - HGNC:29917|MIM:613813|Ensembl:ENSG00000111554|HPRD:14376|Vega:OTTHUMG00000169136 12 12q15 Mdm1 nuclear protein homolog (mouse) protein-coding MDM1 Mdm1 nuclear protein homolog (mouse) O Mdm4, transformed 3T3 cell double minute 1, p53 binding protein|nuclear protein MDM1|nuclear protein double minute 1 20121230 -9606 56891 LGALS14 - CLC2|PPL13 HGNC:30054|MIM:607260|Ensembl:ENSG00000006659|HPRD:06268 19 19q13.2 lectin, galactoside-binding, soluble, 14 protein-coding LGALS14 lectin, galactoside-binding, soluble, 14 O Charcot-Leyden crystal protein 2|gal-14|galectin-14|placental protein 13-like|placental protein 13-like protein 20121230 -9606 56892 C8orf4 - TC-1|TC1 HGNC:1357|MIM:607702|Ensembl:ENSG00000176907|HPRD:09650|Vega:OTTHUMG00000164045 8 8p11.2 chromosome 8 open reading frame 4 protein-coding C8orf4 chromosome 8 open reading frame 4 O human thyroid cancer 1|thyroid cancer protein 1|uncharacterized protein C8orf4 20121230 -9606 56893 UBQLN4 RP11-336K24.8 A1U|A1Up|C1orf6|CIP75|UBIN HGNC:1237|MIM:605440|Ensembl:ENSG00000160803|HPRD:05670|Vega:OTTHUMG00000017461 1 1q21 ubiquilin 4 protein-coding UBQLN4 ubiquilin 4 O ataxin-1 interacting ubiquitin-like protein|ataxin-1 ubiquitin-like interacting protein|ataxin-1 ubiquitin-like-interacting protein A1U|connexin43-interacting protein of 75 kDa|ubiquilin-4 20121230 -9606 56894 AGPAT3 UNQ759/PRO1490 LPAAT-GAMMA1|LPAAT3 HGNC:326|MIM:614794|Ensembl:ENSG00000160216|HPRD:10637|Vega:OTTHUMG00000086892 21 21q22.3 1-acylglycerol-3-phosphate O-acyltransferase 3 protein-coding AGPAT3 1-acylglycerol-3-phosphate O-acyltransferase 3 O 1-AGP acyltransferase 3|1-AGPAT 3|1-acyl-sn-glycerol-3-phosphate acyltransferase gamma|lysophosphatidic acid acyltransferase gamma|lysophosphatidic acid acyltransferase-gamma1 20121230 -9606 56895 AGPAT4 RP3-473J16.2 1-AGPAT4|LPAAT-delta|dJ473J16.2 HGNC:20885|MIM:614795|Ensembl:ENSG00000026652|HPRD:12437|Vega:OTTHUMG00000015966 6 6q26 1-acylglycerol-3-phosphate O-acyltransferase 4 (lysophosphatidic acid acyltransferase, delta) protein-coding AGPAT4 1-acylglycerol-3-phosphate O-acyltransferase 4 (lysophosphatidic acid acyltransferase, delta) O 1-AGP acyltransferase 4|1-AGPAT 4|1-acyl-sn-glycerol-3-phosphate acyltransferase delta|lysophosphatidic acid acyltransferase delta|lysophosphatidic acid acyltransferase-delta (LPAAT-delta) 20121230 -9606 56896 DPYSL5 - CRAM|CRMP-5|CRMP5|Ulip6 HGNC:20637|MIM:608383|Ensembl:ENSG00000157851|HPRD:10522|Vega:OTTHUMG00000097071 2 2p23.3 dihydropyrimidinase-like 5 protein-coding DPYSL5 dihydropyrimidinase-like 5 O CRMP3-associated molecule|DRP-5|ULIP-6|UNC33-like phosphoprotein 6|collapsin response mediator protein 5|collapsin response mediator protein-5|dihydropyrimidinase-related protein 5 20121230 -9606 56897 WRNIP1 - RP11-420G6.2|WHIP|bA420G6.2 HGNC:20876|MIM:608196|Ensembl:ENSG00000124535|HPRD:10494|Vega:OTTHUMG00000014126 6 6p25.2 Werner helicase interacting protein 1 protein-coding WRNIP1 Werner helicase interacting protein 1 O ATPase WRNIP1|Werner helicase-interacting protein 1|putative helicase RUVBL 20121230 -9606 56898 BDH2 UNQ6308/PRO20933 DHRS6|EFA6R|PRO20933|SDR15C1|UCPA-OR|UNQ6308 HGNC:32389|Ensembl:ENSG00000164039|HPRD:07103|Vega:OTTHUMG00000074039 4 4q24 3-hydroxybutyrate dehydrogenase, type 2 protein-coding BDH2 3-hydroxybutyrate dehydrogenase, type 2 O 3-hydroxybutyrate dehydrogenase type 2|R-beta-hydroxybutyrate dehydrogenase|dehydrogenase/reductase (SDR family) member 6|dehydrogenase/reductase SDR family member 6|oxidoreductase UCPA|short chain dehydrogenase/reductase family 15C, member 1 20121230 -9606 56899 ANKS1B - AIDA|AIDA-1|ANKS2|EB-1|EB1|cajalin-2 HGNC:24600|MIM:607815|Ensembl:ENSG00000185046|HPRD:07426|Vega:OTTHUMG00000170308 12 12q23.1 ankyrin repeat and sterile alpha motif domain containing 1B protein-coding ANKS1B ankyrin repeat and sterile alpha motif domain containing 1B O E2a-Pbx1-associated protein|amyloid-beta precursor protein intracellular domain associated protein 1|ankyrin repeat and sterile alpha motif domain-containing protein 1B|cajalin 2 20121230 -9606 56900 TMEM167B AD-020 C1orf119 HGNC:30187|Ensembl:ENSG00000215717|HPRD:16474|Vega:OTTHUMG00000042364 1 1p13.3 transmembrane protein 167B protein-coding TMEM167B transmembrane protein 167B O protein kish-B|protein x 013 20121230 -9606 56901 NDUFA4L2 - NUOMS HGNC:29836|Ensembl:ENSG00000185633|HPRD:14249|Vega:OTTHUMG00000171275 12 12q13.3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4-like 2 protein-coding NDUFA4L2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4-like 2 O NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 4-like 2|NADH-ubiquinone oxidoreductase MLRQ subunit homolog|NADH:ubiquinone oxidoreductase MLRQ subunit homolog 20121230 -9606 56902 PNO1 - KHRBP1|RRP20 HGNC:32790|Ensembl:ENSG00000115946|HPRD:14250|Vega:OTTHUMG00000129563 2 2p14 partner of NOB1 homolog (S. cerevisiae) protein-coding PNO1 partner of NOB1 homolog (S. cerevisiae) O KH-type RNA-binding protein 1|RNA binding protein|RNA-binding protein PNO1 20121230 -9606 56903 PAPOLB - PAPT|TPAP HGNC:15970|MIM:607436|Ensembl:ENSG00000218823|HPRD:08467|Vega:OTTHUMG00000151759 7 7p22.1 poly(A) polymerase beta (testis specific) protein-coding PAPOLB poly(A) polymerase beta (testis specific) O PAP-beta|poly(A) polymerase beta|polynucleotide adenylyltransferase beta|testis-specific poly(A) polymerase 20121230 -9606 56904 SH3GLB2 RP11-167N5.3 PP6569|PP9455|RRIG1 HGNC:10834|MIM:609288|Ensembl:ENSG00000148341|HPRD:15334|Vega:OTTHUMG00000020769 9 9q34 SH3-domain GRB2-like endophilin B2 protein-coding SH3GLB2 SH3-domain GRB2-like endophilin B2 O SH3 domain-containing GRB2-like protein B2|SH3-containing protein SH3GLB2|endophilin-B2|retinoid receptor-induced gene 1 20121230 -9606 56905 C15orf39 FP6578 - HGNC:24497|Ensembl:ENSG00000167173|HPRD:13154|Vega:OTTHUMG00000142820 15 15q24.2 chromosome 15 open reading frame 39 protein-coding C15orf39 chromosome 15 open reading frame 39 O uncharacterized protein C15orf39 20121230 -9606 56906 THAP10 - - HGNC:23193|MIM:612538|Ensembl:ENSG00000129028|HPRD:15497|Vega:OTTHUMG00000133388 15 15q23 THAP domain containing 10 protein-coding THAP10 THAP domain containing 10 O THAP domain-containing protein 10 20121230 -9606 56907 SPIRE1 - Spir-1 HGNC:30622|MIM:609216|Ensembl:ENSG00000134278|HPRD:11600|Vega:OTTHUMG00000153940 18 18p11.21 spire homolog 1 (Drosophila) protein-coding SPIRE1 spire homolog 1 (Drosophila) O protein spire homolog 1 20121230 -9606 56910 STARD7 - GTT1 HGNC:18063|Ensembl:ENSG00000084090|HPRD:18118|Vega:OTTHUMG00000130457 2 2q11.2 StAR-related lipid transfer (START) domain containing 7 protein-coding STARD7 StAR-related lipid transfer (START) domain containing 7 O START domain containing 7|START domain-containing protein 7|gestational trophoblastic tumor protein 1|stAR-related lipid transfer protein 7, mitochondrial 20121230 -9606 56911 C21orf7 - HC21ORF7|MAP3K7CL|TAK1L|TAKL|TAKL-1|TAKL-2|TAKL-4 HGNC:16457|MIM:611110|Ensembl:ENSG00000156265|HPRD:10764|Vega:OTTHUMG00000078806 21 21q22.3 chromosome 21 open reading frame 7 protein-coding C21orf7 chromosome 21 open reading frame 7 O MAP3K7 c-terminal like|TAK1-like protein|TAK1-like protein 1|TAK1-like protein 2|TAK1-like protein 4|TGF-beta activated kinase 20121230 -9606 56912 IFT46 - C11orf2|C11orf60 HGNC:26146|Ensembl:ENSG00000118096|HPRD:07967|Vega:OTTHUMG00000166408 11 11q23.3 intraflagellar transport 46 homolog (Chlamydomonas) protein-coding IFT46 intraflagellar transport 46 homolog (Chlamydomonas) O UPF0360|intraflagellar transport protein 46 homolog|intraflagellar transport protein IFT46 20121230 -9606 56913 C1GALT1 - C1GALT|T-synthase HGNC:24337|MIM:610555|Ensembl:ENSG00000106392|HPRD:16631|Vega:OTTHUMG00000151912 7 7p21.3 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase, 1 protein-coding C1GALT1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase, 1 O B3Gal-T8|core 1 O-glycan T-synthase|core 1 UDP-galactose:N-acetylgalactosamine-alpha-R beta 1,3-galactosyltransferase 1|core 1 beta3-Gal-T1|glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 20121230 -9606 56914 OTOR UNQ3054/PRO9873 FDP|MIAL|MIAL1 HGNC:8517|MIM:606067|Ensembl:ENSG00000125879|HPRD:07300|Vega:OTTHUMG00000031931 20 20p12.1-p11.23 otoraplin protein-coding OTOR otoraplin O fibrocyte-derived protein|melanoma inhibitory activity-like protein 20121230 -9606 56915 EXOSC5 - RRP41B|RRP46|Rrp46p|hRrp46p|p12B HGNC:24662|MIM:606492|Ensembl:ENSG00000077348|HPRD:16222 19 19q13.1 exosome component 5 protein-coding EXOSC5 exosome component 5 O chronic myelogenous leukemia tumor antigen 28|exosome complex component RRP46|exosome complex exonuclease RRP46|exosome component Rrp46|ribosomal RNA-processing protein 46 20121230 -9606 56916 SMARCAD1 - ADERM|ETL1|HEL1 HGNC:18398|MIM:612761|Ensembl:ENSG00000163104|HPRD:11586|Vega:OTTHUMG00000130971 4 4q22-q23 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 protein-coding SMARCAD1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 O ATP-dependent helicase 1|SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A containing DEAD/H box 1 20121230 -9606 56917 MEIS3 - MRG2 HGNC:29537|Ensembl:ENSG00000105419|HPRD:14386|Vega:OTTHUMG00000172280 19 19q13.32 Meis homeobox 3 protein-coding MEIS3 Meis homeobox 3 O Meis1, myeloid ecotropic viral integration site 1 homolog 3|homeobox protein Meis3|meis1-related protein 2 20121230 -9606 56918 C2orf83 - - HGNC:25344|Ensembl:ENSG00000042304|HPRD:13208|Vega:OTTHUMG00000153550 2 2q36.3 chromosome 2 open reading frame 83 protein-coding C2orf83 chromosome 2 open reading frame 83 O folate transporter-like protein C2orf83 20121230 -9606 56919 DHX33 - DDX33 HGNC:16718|MIM:614405|Ensembl:ENSG00000005100|HPRD:13143|Vega:OTTHUMG00000102041 17 17p13.2 DEAH (Asp-Glu-Ala-His) box polypeptide 33 protein-coding DHX33 DEAH (Asp-Glu-Ala-His) box polypeptide 33 O DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 33|DEAH box protein 33|putative ATP-dependent RNA helicase DHX33 20121230 -9606 56920 SEMA3G - sem2 HGNC:30400|Ensembl:ENSG00000010319|HPRD:14251|Vega:OTTHUMG00000158570 3 3p21.1 sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3G protein-coding SEMA3G sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3G O semaphorin sem2|semaphorin-3G 20121230 -9606 56922 MCCC1 - MCC-B|MCCA HGNC:6936|MIM:609010|Ensembl:ENSG00000078070|HPRD:01951|Vega:OTTHUMG00000158355 3 3q27 methylcrotonoyl-CoA carboxylase 1 (alpha) protein-coding MCCC1 methylcrotonoyl-CoA carboxylase 1 (alpha) O 3-methylcrotonyl-CoA carboxylase 1|3-methylcrotonyl-CoA carboxylase biotin-containing subunit|3-methylcrotonyl-CoA:carbon dioxide ligase subunit alpha|MCCase subunit alpha|methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial|methylcrotonoyl-Coenzyme A carboxylase 1 (alpha) 20121230 -9606 56923 NMUR2 - FM-4|FM4|NMU-R2|NMU2R|TGR-1|TGR1 HGNC:16454|MIM:605108|Ensembl:ENSG00000132911|HPRD:12003|Vega:OTTHUMG00000130131 5 5q33.1 neuromedin U receptor 2 protein-coding NMUR2 neuromedin U receptor 2 O G-protein coupled receptor FM-4|G-protein coupled receptor TGR-1|growth hormone secretagogue receptor family, member 4|neuromedin-U receptor 2 20121230 -9606 56924 PAK6 - PAK5 HGNC:16061|MIM:608110|Ensembl:ENSG00000137843|HPRD:06426|Vega:OTTHUMG00000129921 15 15q14 p21 protein (Cdc42/Rac)-activated kinase 6 protein-coding PAK6 p21 protein (Cdc42/Rac)-activated kinase 6 O PAK-5|PAK-6|p21(CDKN1A)-activated kinase 6|p21-activated kinase 6|p21-activated protein kinase 6|serine/threonine-protein kinase PAK 6 20121230 -9606 56925 LXN - ECI|TCI HGNC:13347|MIM:609305|Ensembl:ENSG00000079257|HPRD:14327|Vega:OTTHUMG00000158807 3 3q25.32 latexin protein-coding LXN latexin O MUM|endogenous carboxypeptidase inhibitor|tissue carboxypeptidase inhibitor 20121230 -9606 56926 NCLN - NET59 HGNC:26923|MIM:609156|Ensembl:ENSG00000125912|HPRD:07126|Vega:OTTHUMG00000180687 19 19p13.3 nicalin protein-coding NCLN nicalin O nicalin homolog (zebrefish)|nicastrin-like protein 20121230 -9606 56927 GPR108 - LUSTR2 HGNC:17829|Ensembl:ENSG00000125734 19 19p13.3 G protein-coupled receptor 108 protein-coding GPR108 G protein-coupled receptor 108 O lung seven transmembrane receptor 2|protein GPR108 20121230 -9606 56928 SPPL2B - IMP-4|IMP4|PSH4|PSL1 HGNC:30627|MIM:608239|HPRD:09743 19 19p13.3 signal peptide peptidase like 2B protein-coding SPPL2B signal peptide peptidase like 2B O SPP-like 2B|intramembrane protease 4|presenilin homologous protein 4|presenilin-like protein 1|signal peptide peptidase-like 2B 20121230 -9606 56929 FEM1C - EUROIMAGE686608|EUROIMAGE783647|FEM1A HGNC:16933|MIM:608767|Ensembl:ENSG00000145780|HPRD:16384|Vega:OTTHUMG00000128895 5 5q22 fem-1 homolog c (C. elegans) protein-coding FEM1C fem-1 homolog c (C. elegans) O FEM1-gamma|protein fem-1 homolog C 20121230 -9606 56931 DUS3L - DUS3 HGNC:26920|Ensembl:ENSG00000141994|HPRD:14252|Vega:OTTHUMG00000162311 19 19p13.3 dihydrouridine synthase 3-like (S. cerevisiae) protein-coding DUS3L dihydrouridine synthase 3-like (S. cerevisiae) O tRNA-dihydrouridine(47) synthase [NAD(P)(+)]-like 20121230 -9606 56934 CA10 hucep-15 CA-RPX|CARPX|HUCEP-15 HGNC:1369|MIM:604642|Ensembl:ENSG00000154975|HPRD:05224|Vega:OTTHUMG00000177544 17 17q21.33 carbonic anhydrase X protein-coding CA10 carbonic anhydrase X O CA-RP X|CARP X|carbonic anhydrase-related protein 10|carbonic anhydrase-related protein X|cerebral protein 15|cerebral protein-15 20121230 -9606 56935 C11orf75 - FN5 HGNC:24810|MIM:609477|Ensembl:ENSG00000166002|HPRD:17008|Vega:OTTHUMG00000167442 11 11q21 chromosome 11 open reading frame 75 protein-coding C11orf75 chromosome 11 open reading frame 75 O UPF0443 protein C11orf75 20121230 -9606 56936 CCDC177 - C14orf162|PLPL HGNC:23243|HPRD:16614 14 14q24.1 coiled-coil domain containing 177 protein-coding CCDC177 coiled-coil domain containing 177 O myelin proteolipid protein-like protein|uncharacterized protein C14orf162 20121230 -9606 56937 PMEPA1 RP4-718J7.3 STAG1|TMEPAI HGNC:14107|MIM:606564|Ensembl:ENSG00000124225|HPRD:09415|Vega:OTTHUMG00000032831 20 20q13.31-q13.33 prostate transmembrane protein, androgen induced 1 protein-coding PMEPA1 prostate transmembrane protein, androgen induced 1 O solid tumor-associated 1 protein|transmembrane prostate androgen-induced protein|transmembrane, prostate androgen induced RNA 20121230 -9606 56938 ARNTL2 - BMAL2|CLIF|MOP9|PASD9|bHLHe6 HGNC:18984|MIM:614517|Ensembl:ENSG00000029153|HPRD:16507|Vega:OTTHUMG00000169257 12 12p12.2-p11.2 aryl hydrocarbon receptor nuclear translocator-like 2 protein-coding ARNTL2 aryl hydrocarbon receptor nuclear translocator-like 2 O CYCLE-like factor|PAS domain-containing protein 9|aryl hydrocarbon receptor nuclear translocator-like protein 2|basic-helix-loop-helix-PAS protein MOP9|brain and muscle ARNT-like 2|class E basic helix-loop-helix protein 6|member of PAS protein 9|transcription factor BMAL2 20121230 -9606 56940 DUSP22 RP11-328C17.1 JKAP|JSP1|LMWDSP2|MKPX|VHX HGNC:16077|HPRD:13255 6 6p25.3 dual specificity phosphatase 22 protein-coding DUSP22 dual specificity phosphatase 22 O JNK-stimulating phosphatase 1|JNK-stimulatory phosphatase-1|JSP-1|LMW-DSP2|MAP kinase phosphatase x|MKP-x|dual specificity protein phosphatase 22|homolog of mouse dual specificity phosphatase LMW-DSP2|low molecular weight dual specificity phosphatase 2|mitogen-activated protein kinase phosphatase x 20121230 -9606 56941 C3orf37 DC12 - HGNC:24446|Ensembl:ENSG00000183624|HPRD:13119|Vega:OTTHUMG00000159452 3 3q21.3 chromosome 3 open reading frame 37 protein-coding C3orf37 chromosome 3 open reading frame 37 O UPF0361 protein C3orf37 20121230 -9606 56942 CMC2 DC13 2310061C15Rik|C16orf61 HGNC:24447|Ensembl:ENSG00000103121|HPRD:16783|Vega:OTTHUMG00000137625 16 16q23.2 COX assembly mitochondrial protein 2 homolog (S. cerevisiae) protein-coding CMC2 COX assembly mitochondrial protein 2 homolog (S. cerevisiae) O COX assembly mitochondrial protein 2 homolog 20121230 -9606 56943 ENY2 DC6 e(y)2 HGNC:24449|Ensembl:ENSG00000120533|HPRD:13121|Vega:OTTHUMG00000164933 8 8q23.1 enhancer of yellow 2 homolog (Drosophila) protein-coding ENY2 enhancer of yellow 2 homolog (Drosophila) O enhancer of yellow 2 transcription factor homolog 20121230 -9606 56944 OLFML3 PSEC0035 HNOEL-iso|OLF44 HGNC:24956|MIM:610088|Ensembl:ENSG00000116774|HPRD:14878|Vega:OTTHUMG00000011980 1 1p13.2 olfactomedin-like 3 protein-coding OLFML3 olfactomedin-like 3 O hOLF44|olfactomedin-like protein 3 20121230 -9606 56945 MRPS22 GK002 C3orf5|COXPD5|GIBT|MRP-S22|RPMS22 HGNC:14508|MIM:605810|Ensembl:ENSG00000175110|HPRD:10430|Vega:OTTHUMG00000159910 3 3q23 mitochondrial ribosomal protein S22 protein-coding MRPS22 mitochondrial ribosomal protein S22 O 28S ribosomal protein S22, mitochondrial|S22mt 20121230 -9606 56946 C11orf30 GL002 EMSY HGNC:18071|MIM:608574|Ensembl:ENSG00000158636|HPRD:10544|Vega:OTTHUMG00000165282 11 11q13.5 chromosome 11 open reading frame 30 protein-coding C11orf30 chromosome 11 open reading frame 30 O protein EMSY 20121230 -9606 56947 MFF AD030 C2orf33|GL004 HGNC:24858|MIM:614785|Ensembl:ENSG00000168958|HPRD:16653|Vega:OTTHUMG00000133180 2 2q36.3 mitochondrial fission factor protein-coding MFF mitochondrial fission factor O - 20121230 -9606 56948 SDR39U1 - C14orf124|HCDI HGNC:20275|Ensembl:ENSG00000100445|HPRD:16598|Vega:OTTHUMG00000171316 14 14q12 short chain dehydrogenase/reductase family 39U, member 1 protein-coding SDR39U1 short chain dehydrogenase/reductase family 39U, member 1 O epimerase family protein SDR39U1|short-chain dehydrogenase/reductase family 39U member 1 20121230 -9606 56949 XAB2 PP3898 HCNP|HCRN|NTC90|SYF1 HGNC:14089|MIM:610850|Ensembl:ENSG00000076924|HPRD:18306 19 19p13.2 XPA binding protein 2 protein-coding XAB2 XPA binding protein 2 O SYF1 homolog, RNA splicing factor|XPA-binding protein 2|crn-related protein kim1|pre-mRNA-splicing factor SYF1 20121230 -9606 56950 SMYD2 RP11-176D17.2 HSKM-B|KMT3C|ZMYND14 HGNC:20982|MIM:610663|Ensembl:ENSG00000143499|HPRD:15406|Vega:OTTHUMG00000037066 1 1q32.3 SET and MYND domain containing 2 protein-coding SMYD2 SET and MYND domain containing 2 O N-lysine methyltransferase SMYD2|SET and MYND domain-containing protein 2|histone methyltransferase SMYD2|lysine N-methyltransferase 3C|zinc finger, MYND domain containing 14 20121230 -9606 56951 C5orf15 HTGN29 KCT2 HGNC:20656|Ensembl:ENSG00000113583|HPRD:12829|Vega:OTTHUMG00000129125 5 5q31.1 chromosome 5 open reading frame 15 protein-coding C5orf15 chromosome 5 open reading frame 15 O keratinocyte-associated transmembrane protein 2|keratinocytes associated transmembrane protein 2 20121230 -9606 56952 PRTFDC1 RP11-129O7.1 HHGP HGNC:23333|MIM:610751|Ensembl:ENSG00000099256|HPRD:17917|Vega:OTTHUMG00000017829 10 10p12.1 phosphoribosyl transferase domain containing 1 protein-coding PRTFDC1 phosphoribosyl transferase domain containing 1 O phosphoribosyltransferase domain-containing protein 1 20121230 -9606 56953 NT5M - dNT-2|dNT2|mdN HGNC:15769|MIM:605292|Ensembl:ENSG00000205309|HPRD:12009|Vega:OTTHUMG00000059277 17 17p11.2 5',3'-nucleotidase, mitochondrial protein-coding NT5M 5',3'-nucleotidase, mitochondrial O 5' nucleotidase, mitochondrial|5'(3')-deoxyribonucleotidase, mitochondrial|5(3)-deoxyribonucleotidase|deoxy-5'-nucleotidase 2|mitochondrial 5' nucleotidase 20121230 -9606 56954 NIT2 CUA002 - HGNC:29878|Ensembl:ENSG00000114021|HPRD:17634|Vega:OTTHUMG00000159066 3 3q12.2 nitrilase family, member 2 protein-coding NIT2 nitrilase family, member 2 O Nit protein 2|nitrilase homolog 2|omega-amidase NIT2 20121230 -9606 56955 MEPE - OF45 HGNC:13361|MIM:605912|Ensembl:ENSG00000152595|HPRD:06908|Vega:OTTHUMG00000130592 4 4q21.1 matrix extracellular phosphoglycoprotein protein-coding MEPE matrix extracellular phosphoglycoprotein O matrix, extracellular phosphoglycoprotein with ASARM motif (bone)|osteoblast/osteocyte factor 45 20121230 -9606 56956 LHX9 RP11-255O17.2 - HGNC:14222|MIM:606066|Ensembl:ENSG00000143355|HPRD:07299|Vega:OTTHUMG00000035656 1 1q31.1 LIM homeobox 9 protein-coding LHX9 LIM homeobox 9 O LIM homeobox protein 9|LIM/homeobox protein Lhx9 20121230 -9606 56957 OTUD7B RP11-212K13.2 CEZANNE|ZA20D1 HGNC:16683|MIM:611748|Ensembl:ENSG00000163113|HPRD:10313|Vega:OTTHUMG00000012291 1 1q21.2 OTU domain containing 7B protein-coding OTUD7B OTU domain containing 7B O OTU domain-containing protein 7B|cellular zinc finger anti-NF-kappa-B protein|cellular zinc finger anti-NF-kappaB Cezanne|zinc finger A20 domain-containing protein 1|zinc finger protein Cezanne|zinc finger, A20 domain containing 1 20121230 -9606 56961 SHD - - HGNC:30633|MIM:610481|Ensembl:ENSG00000105251|HPRD:15337 19 19p13.3 Src homology 2 domain containing transforming protein D protein-coding SHD Src homology 2 domain containing transforming protein D O SH2 domain-containing adapter protein D|src homology 2 domain-containing transforming protein D 20121230 -9606 56963 RGMA - RGM HGNC:30308|MIM:607362|Ensembl:ENSG00000182175|HPRD:09560|Vega:OTTHUMG00000171781 15 15q26.1 RGM domain family, member A protein-coding RGMA RGM domain family, member A O repulsive guidance molecule A 20121230 -9606 56964 WDR93 - - HGNC:26924|Ensembl:ENSG00000140527|HPRD:14253|Vega:OTTHUMG00000172007 15 15q26.1 WD repeat domain 93 protein-coding WDR93 WD repeat domain 93 O WD repeat-containing protein 93 20121230 -9606 56965 PARP6 - ARTD17|PARP-6-B1|PARP-6-C|pART17 HGNC:26921|Ensembl:ENSG00000137817|HPRD:15102|Vega:OTTHUMG00000133443 15 15q23 poly (ADP-ribose) polymerase family, member 6 protein-coding PARP6 poly (ADP-ribose) polymerase family, member 6 O ADP-ribosyltransferase diphtheria toxin-like 17|PARP-6|poly [ADP-ribose] polymerase 6 20121230 -9606 56967 C14orf132 - C14orf88 HGNC:20346|HPRD:16603 14 14q32.2 chromosome 14 open reading frame 132 protein-coding C14orf132 chromosome 14 open reading frame 132 O putative uncharacterized protein C14orf132|uncharacterized protein C14orf132 20121230 -9606 56969 RPL23AP32 - RPL23A_9_220 HGNC:25345|HPRD:13209 2 2p16.2 ribosomal protein L23a pseudogene 32 pseudo RPL23AP32 ribosomal protein L23a pseudogene 32 O - 20121230 -9606 56970 ATXN7L3 - - HGNC:25416|Ensembl:ENSG00000087152|Vega:OTTHUMG00000181812 17 17q21.31 ataxin 7-like 3 protein-coding ATXN7L3 ataxin 7-like 3 O SAGA-associated factor 11 homolog|ataxin-7-like protein 3 20121230 -9606 56971 CEACAM19 UNQ2973/PRO7436 CEAL1 HGNC:31951|MIM:606691|Ensembl:ENSG00000186567|HPRD:16229|Vega:OTTHUMG00000151528 19 19q13.31 carcinoembryonic antigen-related cell adhesion molecule 19 protein-coding CEACAM19 carcinoembryonic antigen-related cell adhesion molecule 19 O carcinoembryonic antigen-like 1 20121230 -9606 56972 DKFZp547D104 - - - 5 5q31.1 uncharacterized protein DKFZp547D104 protein-coding - - - uncharacterized protein LOC56972 20111025 -9606 56975 FAM20C - DMP-4|DMP4|GEF-CK|RNS HGNC:22140|MIM:611061|HPRD:13298 7 7p22.3 family with sequence similarity 20, member C protein-coding FAM20C family with sequence similarity 20, member C O dentin matrix protein 4|extracellular serine/threonine protein kinase Fam20C|golgi-enriched fraction casein kinase 20121230 -9606 56977 STOX2 - - HGNC:25450|Ensembl:ENSG00000173320|HPRD:16823|Vega:OTTHUMG00000160618 4 4q35.1 storkhead box 2 protein-coding STOX2 storkhead box 2 O storkhead-box protein 2 20121230 -9606 56978 PRDM8 - PFM5 HGNC:13993|Ensembl:ENSG00000152784|HPRD:17904|Vega:OTTHUMG00000160885 4 4q21 PR domain containing 8 protein-coding PRDM8 PR domain containing 8 O PR domain zinc finger protein 8|PR domain-containing protein 8|PR-domain containing protein 8 20121230 -9606 56979 PRDM9 - MEISETZ|MSBP3|PFM6|PRMD9|ZNF899 HGNC:13994|MIM:609760|Ensembl:ENSG00000164256|HPRD:17905|Vega:OTTHUMG00000161918 5 5p14 PR domain containing 9 protein-coding PRDM9 PR domain containing 9 O PR domain zinc finger protein 9|histone-lysine N-methyltransferase PRDM9|minisatellite binding protein 3 (115kD)|minisatellite binding protein 3, 115kDa 20121230 -9606 56980 PRDM10 - PFM7 HGNC:13995|Ensembl:ENSG00000170325|HPRD:11455|Vega:OTTHUMG00000165762 11 11q25 PR domain containing 10 protein-coding PRDM10 PR domain containing 10 O PR domain zinc finger protein 10|PR domain-containing protein 10|PR-domain family member 7|PRDM zinc finger transcription factor|tristanin 20121230 -9606 56981 PRDM11 - PFM8 HGNC:13996|Ensembl:ENSG00000019485|HPRD:11456|Vega:OTTHUMG00000166478 11 11p11 PR domain containing 11 protein-coding PRDM11 PR domain containing 11 O PR domain-containing protein 11|PR-domain containing protein 11 20121230 -9606 56983 POGLUT1 MDS010 C3orf9|CLP46|KDELCL1|KTELC1|MDSRP|Rumi|hCLP46 HGNC:22954|Ensembl:ENSG00000163389|HPRD:17475|Vega:OTTHUMG00000159379 3 3q13.33 protein O-glucosyltransferase 1 protein-coding POGLUT1 protein O-glucosyltransferase 1 O 9630046K23Rik|CAP10-like 46 kDa protein|CAP10-like protein, 46 kDa|KDELC family like 1|KTEL (Lys-Tyr-Glu-Leu) containing 1|KTEL motif-containing protein 1|myelodysplastic syndromes relative protein|x 010 protein 20121230 -9606 56984 PSMG2 - CLAST3|HCCA3|HsT1707|MDS003|PAC2|TNFSF5IP1 HGNC:24929|MIM:609702|Ensembl:ENSG00000128789|HPRD:11638|Vega:OTTHUMG00000131703 18 18p11.21 proteasome (prosome, macropain) assembly chaperone 2 protein-coding PSMG2 proteasome (prosome, macropain) assembly chaperone 2 O CD40 ligand-activated specific transcript 3|HDCMC29P|HSPC260|PAC-2|hepatocellular carcinoma susceptibility protein|hepatocellular carcinoma-susceptibility protein 3|likely ortholog of mouse CD40 ligand-activated specific transcript 3 (Clast3)|proteasome assembling chaperone 2|proteasome assembly chaperone 2|tumor necrosis factor superfamily member 5-induced protein 1|tumor necrosis factor superfamily, member 5-induced protein 1|x 003 protein 20121230 -9606 56985 ADPRM MDS006 C17orf48|NBLA03831 HGNC:30925|Ensembl:ENSG00000170222|HPRD:17473|Vega:OTTHUMG00000130366 17 17p13.1 ADP-ribose/CDP-alcohol diphosphatase, manganese-dependent protein-coding ADPRM ADP-ribose/CDP-alcohol diphosphatase, manganese-dependent O ADP-ribose/CDP-alcohol pyrophosphatase|ADPRibase-Mn|CDP-choline phosphohydrolase|manganese-dependent ADP-ribose/CDP-alcohol diphosphatase 20121230 -9606 56986 DTWD1 MDS009 - HGNC:30926|Ensembl:ENSG00000104047|HPRD:17474|Vega:OTTHUMG00000131567 15 15q21.2 DTW domain containing 1 protein-coding DTWD1 DTW domain containing 1 O DTW domain-containing protein 1|x 009 protein 20121230 -9606 56987 BBX - HBP2|HSPC339|MDS001 HGNC:14422|Ensembl:ENSG00000114439|HPRD:10688|Vega:OTTHUMG00000150360 3 3q13.1 bobby sox homolog (Drosophila) protein-coding BBX bobby sox homolog (Drosophila) O HMG box transcription factor BBX|HMG box-containing protein 2|x 001 protein 20121230 -9606 56990 CDC42SE2 - SPEC2 HGNC:18547|Ensembl:ENSG00000158985|HPRD:16695|Vega:OTTHUMG00000162692 5 5q31.1 CDC42 small effector 2 protein-coding CDC42SE2 CDC42 small effector 2 O CDC42 small effector protein 2|non-kinase Cdc42 effector protein SPEC2|small effector of CDC42 protein 2 20121230 -9606 56992 KIF15 - HKLP2|KNSL7|NY-BR-62 HGNC:17273|Ensembl:ENSG00000163808|HPRD:10037|Vega:OTTHUMG00000156307 3 3p21.31 kinesin family member 15 protein-coding KIF15 kinesin family member 15 O kinesin-like 7|kinesin-like protein 2|kinesin-like protein 7|kinesin-like protein KIF15|serologically defined breast cancer antigen NY-BR-62 20121230 -9606 56993 TOMM22 - 1C9-2|MST065|MSTP065|TOM22 HGNC:18002|MIM:607046|Ensembl:ENSG00000100216|HPRD:06130|Vega:OTTHUMG00000150991 22 22q12-q13 translocase of outer mitochondrial membrane 22 homolog (yeast) protein-coding TOMM22 translocase of outer mitochondrial membrane 22 homolog (yeast) O mitochondrial import receptor Tom22|mitochondrial import receptor subunit TOM22 homolog|translocase of outer membrane 22 kDa subunit homolog 20121230 -9606 56994 CHPT1 MSTP022 CPT|CPT1 HGNC:17852|Ensembl:ENSG00000111666|HPRD:13052|Vega:OTTHUMG00000170443 12 12q choline phosphotransferase 1 protein-coding CHPT1 choline phosphotransferase 1 O AAPT1-like protein|cholinephosphotransferase 1|cholinephosphotransferase 1 alpha|diacylglycerol cholinephosphotransferase 1|hCPT1|phosphatidylcholine synthesizing enzyme 20121230 -9606 56995 TULP4 RP3-442A17.1 TUSP HGNC:15530|Ensembl:ENSG00000130338|HPRD:18246|Vega:OTTHUMG00000015910 6 6q25-q26 tubby like protein 4 protein-coding TULP4 tubby like protein 4 O tubby super-family protein|tubby superfamily protein|tubby-like protein 4|tubby-related protein 4 20121230 -9606 56996 SLC12A9 - CCC6|CIP1|WO3.3|hCCC6 HGNC:17435|Ensembl:ENSG00000146828|HPRD:11564|Vega:OTTHUMG00000156045 7 7q22 solute carrier family 12 (potassium/chloride transporters), member 9 protein-coding SLC12A9 solute carrier family 12 (potassium/chloride transporters), member 9 O CCC-interacting protein 1|cation-chloride cotransporter 6|cation-chloride cotransporter-interacting protein 1|potassium-chloride transporter 9|solute carrier family 12 member 9 20121230 -9606 56997 ADCK3 PP265 ARCA2|CABC1|COQ10D4|COQ8|SCAR9 HGNC:16812|MIM:606980|Ensembl:ENSG00000163050|HPRD:07375|Vega:OTTHUMG00000037621 1 1q42.13 aarF domain containing kinase 3 protein-coding ADCK3 aarF domain containing kinase 3 O aarF domain-containing protein kinase 3|chaperone activity of bc1 complex-like, mitochondrial|chaperone, ABC1 activity of bc1 complex homolog|coenzyme Q8 homolog 20121230 -9606 56998 CTNNBIP1 RP11-84A14.1 ICAT HGNC:16913|MIM:607758|Ensembl:ENSG00000178585|HPRD:09677|Vega:OTTHUMG00000001796 1 1p36.22 catenin, beta interacting protein 1 protein-coding CTNNBIP1 catenin, beta interacting protein 1 O beta-catenin-interacting protein 1|beta-catenin-interacting protein ICAT|inhibitor of beta-catenin and Tcf-4 20121230 -9606 56999 ADAMTS9 - - HGNC:13202|MIM:605421|Ensembl:ENSG00000163638|HPRD:05662|Vega:OTTHUMG00000158722 3 3p14.1 ADAM metallopeptidase with thrombospondin type 1 motif, 9 protein-coding ADAMTS9 ADAM metallopeptidase with thrombospondin type 1 motif, 9 O A disintegrin and metalloproteinase with thrombospondin motifs 9|ADAM-TS 9|ADAM-TS9|ADAMTS-9|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 9 20121230 -9606 57000 GSN-AS1 - C9orf31|MOST2 HGNC:23372 9 9q33.2 GSN antisense RNA 1 unknown GSN-AS1 GSN antisense RNA 1 O - 20121216 -9606 57001 ACN9 DC11 - HGNC:21752|Ensembl:ENSG00000196636|HPRD:16471|Vega:OTTHUMG00000154064 7 7q21.3 ACN9 homolog (S. cerevisiae) protein-coding ACN9 ACN9 homolog (S. cerevisiae) O protein ACN9 homolog, mitochondrial 20121230 -9606 57002 YAE1D1 GK003 C7orf36 HGNC:24857|Ensembl:ENSG00000241127|HPRD:16669|Vega:OTTHUMG00000128689 7 7p14.1 Yae1 domain containing 1 protein-coding YAE1D1 Yae1 domain containing 1 O yae1 domain-containing protein 1 20121230 -9606 57003 CCDC47 GK001 MSTP041 HGNC:24856|Ensembl:ENSG00000108588|HPRD:17041|Vega:OTTHUMG00000178933 17 17q23.3 coiled-coil domain containing 47 protein-coding CCDC47 coiled-coil domain containing 47 O coiled-coil domain-containing protein 47 20121230 -9606 57004 UNGP1 - - HGNC:18579 16 16q12.1 uracil-DNA glycosylase pseudogene 1 pseudo UNGP1 uracil-DNA glycosylase pseudogene 1 O - 20121230 -9606 57005 UNGP2 - - HGNC:18580 14 14q12 uracil-DNA glycosylase pseudogene 2 pseudo UNGP2 uracil-DNA glycosylase pseudogene 2 O - 20121230 -9606 57007 CXCR7 - CMKOR1|CXC-R7|CXCR-7|GPR159|RDC-1|RDC1 HGNC:23692|MIM:610376|Ensembl:ENSG00000144476|HPRD:09882|Vega:OTTHUMG00000133295 2 2q37.3 chemokine (C-X-C motif) receptor 7 protein-coding CXCR7 chemokine (C-X-C motif) receptor 7 O C-X-C chemokine receptor type 7|G protein-coupled receptor|G-protein coupled receptor 159|G-protein coupled receptor RDC1 homolog|chemokine orphan receptor 1 20121230 -9606 57008 RLFP1 - RLFP HGNC:16738 4 4q26 rearranged L-myc fusion pseudogene 1 pseudo RLFP1 rearranged L-myc fusion pseudogene 1 O - 20121230 -9606 57009 PTS-P1 - - - 9 9p13-p12 6-pyruvoyltetrahydropterin synthase pseudogene pseudo - - - - 20121230 -9606 57010 CABP4 - CSNB2B HGNC:1386|MIM:608965|Ensembl:ENSG00000175544|HPRD:12344|Vega:OTTHUMG00000168033 11 11q13.2 calcium binding protein 4 protein-coding CABP4 calcium binding protein 4 O calcium-binding protein 4 20121230 -9606 57016 AKR1B10 - AKR1B11|AKR1B12|ALDRLn|ARL-1|ARL1|HIS|HSI HGNC:382|MIM:604707|Ensembl:ENSG00000198074|HPRD:05271|Vega:OTTHUMG00000155356 7 7q33 aldo-keto reductase family 1, member B10 (aldose reductase) protein-coding AKR1B10 aldo-keto reductase family 1, member B10 (aldose reductase) O ARP|SI reductase|aldo-keto reductase family 1 member B10|aldo-keto reductase family 1, member B11 (aldose reductase-like)|aldose reductase-like 1|aldose reductase-like peptide|aldose reductase-related protein|hARP|small intestine reductase 20121230 -9606 57017 COQ9 HSPC326 C16orf49|COQ10D5 HGNC:25302|MIM:612837|Ensembl:ENSG00000088682|HPRD:13157|Vega:OTTHUMG00000176582 16 16q21 coenzyme Q9 homolog (S. cerevisiae) protein-coding COQ9 coenzyme Q9 homolog (S. cerevisiae) O ubiquinone biosynthesis protein COQ9, mitochondrial 20121230 -9606 57018 CCNL1 BM-001 ANIA6A|PRO1073|ania-6a HGNC:20569|MIM:613384|Ensembl:ENSG00000163660|HPRD:10814|Vega:OTTHUMG00000158713 3 3q25.31 cyclin L1 protein-coding CCNL1 cyclin L1 O cyclin L ania-6a|cyclin L gamma|cyclin-L|cyclin-L1 20121230 -9606 57019 CIAPIN1 CUA001 2810413N20Rik|Anamorsin|DRE2|PRO0915 HGNC:28050|MIM:608943|Ensembl:ENSG00000005194|HPRD:12338|Vega:OTTHUMG00000133457 16 16q21 cytokine induced apoptosis inhibitor 1 protein-coding CIAPIN1 cytokine induced apoptosis inhibitor 1 O anamorsin|cytokine-induced apoptosis inhibitor 1|fe-S cluster assembly protein DRE2 homolog|predicted protein of HQ0915 20121230 -9606 57020 C16orf62 101F10.2 - HGNC:24641|Ensembl:ENSG00000103544|HPRD:14455|Vega:OTTHUMG00000167925 16 16p12.3 chromosome 16 open reading frame 62 protein-coding C16orf62 chromosome 16 open reading frame 62 O UPF0505 protein C16orf62|esophageal cancer associated protein|esophageal cancer-associated protein 20121230 -9606 57026 PDXP RP1-37E16.5 CIN|PLP|dJ37E16.5 HGNC:30259|MIM:609246|Ensembl:ENSG00000241360|Vega:OTTHUMG00000044618 22 22q12.3 pyridoxal (pyridoxine, vitamin B6) phosphatase protein-coding PDXP pyridoxal (pyridoxine, vitamin B6) phosphatase O PLP phosphatase|chronophin|pyridoxal phosphate phosphatase 20121230 -9606 57030 SLC17A7 - BNPI|VGLUT1 HGNC:16704|MIM:605208|Ensembl:ENSG00000104888|HPRD:05551 19 19q13 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 7 protein-coding SLC17A7 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 7 O brain-specific Na(+)-dependent inorganic phosphate cotransporter|brain-specific Na-dependent inorganic phosphate cotransporter|solute carrier family 17 member 7|vesicular glutamate transporter 1 20121230 -9606 57035 C1orf63 HT033 DJ465N24.2.1|NPD014|RP3-465N24.4 HGNC:25234|Ensembl:ENSG00000117616|HPRD:14835|Vega:OTTHUMG00000043611 1 1p36.13-p35.1 chromosome 1 open reading frame 63 protein-coding C1orf63 chromosome 1 open reading frame 63 O UPF0471 protein C1orf63 20121230 -9606 57037 ANKMY2 - ZMYND20 HGNC:25370|Ensembl:ENSG00000106524|HPRD:12454|Vega:OTTHUMG00000090806 7 7p21 ankyrin repeat and MYND domain containing 2 protein-coding ANKMY2 ankyrin repeat and MYND domain containing 2 O ankyrin repeat and MYND domain-containing protein 2 20121230 -9606 57038 RARS2 RP3-382I10.6 ArgRS|DALRD2|PCH6|PRO1992|RARSL|dJ382I10.6 HGNC:21406|MIM:611524|Ensembl:ENSG00000146282|HPRD:15209|Vega:OTTHUMG00000015178 6 6q16.1 arginyl-tRNA synthetase 2, mitochondrial protein-coding RARS2 arginyl-tRNA synthetase 2, mitochondrial O arginine--tRNA ligase|arginine-tRNA ligase|probable arginine--tRNA ligase, mitochondrial|probable arginyl-tRNA synthetase, mitochondrial 20121230 -9606 57042 IBD7 - - HGNC:14242|MIM:605225 1 1p36 inflammatory bowel disease 7 unknown IBD7 inflammatory bowel disease 7 O - 20120622 -9606 57044 IDDM18 - - HGNC:5372|MIM:605598 5 5q31.1-q33.1 insulin-dependent diabetes mellitus 18 unknown IDDM18 insulin-dependent diabetes mellitus 18 O - 20120622 -9606 57045 TWSG1 PSEC0250 TSG HGNC:12429|MIM:605049|Ensembl:ENSG00000128791|HPRD:05443|Vega:OTTHUMG00000131597 18 18p11.3 twisted gastrulation homolog 1 (Drosophila) protein-coding TWSG1 twisted gastrulation homolog 1 (Drosophila) O twisted gastrulation protein homolog 1 20121230 -9606 57046 HRES2 - - - - - HTLV-1 related endogenous sequence 2 protein-coding - - - - 20100404 -9606 57047 PLSCR2 - - HGNC:16494|MIM:607610|Ensembl:ENSG00000163746|HPRD:09621|Vega:OTTHUMG00000159429 3 3q24 phospholipid scramblase 2 protein-coding PLSCR2 phospholipid scramblase 2 O PL scramblase 2|ca(2+)-dependent phospholipid scramblase 2 20121230 -9606 57048 PLSCR3 - - HGNC:16495|MIM:607611|Ensembl:ENSG00000187838|HPRD:07400|Vega:OTTHUMG00000178169 17 17p13.1 phospholipid scramblase 3 protein-coding PLSCR3 phospholipid scramblase 3 O PL scramblase 3|ca(2+)-dependent phospholipid scramblase 3 20121230 -9606 57050 UTP3 - CRL1|CRLZ1|SAS10 HGNC:24477|MIM:611614|Ensembl:ENSG00000132467|HPRD:18016|Vega:OTTHUMG00000129911 4 4q13.3 UTP3, small subunit (SSU) processome component, homolog (S. cerevisiae) protein-coding UTP3 UTP3, small subunit (SSU) processome component, homolog (S. cerevisiae) O UTP3 homolog|charged amino acid rich leucine zipper 1 homolog|charged amino acid-rich leucine zipper 1|disrupter of silencing 10|disrupter of silencing SAS10|something about silencing protein 10 20121230 -9606 57051 NAG18 - - - 19 19q13.4 NAG18 mRNA unknown - - - - 20111109 -9606 57053 CHRNA10 - - HGNC:13800|MIM:606372|Ensembl:ENSG00000129749|HPRD:09395|Vega:OTTHUMG00000011844 11 11p15.5 cholinergic receptor, nicotinic, alpha 10 (neuronal) protein-coding CHRNA10 cholinergic receptor, nicotinic, alpha 10 (neuronal) O NACHR alpha-10|acetylcholine receptor, nicotinic, alpha 10 (neuronal)|cholinergic receptor, nicotinic, alpha polypeptide 10|neuronal acetylcholine receptor subunit alpha-10|nicotinic acetylcholine receptor subunit alpha-10 20121230 -9606 57054 DAZ3 - pDP1679 HGNC:15965|MIM:400027|Ensembl:ENSG00000187191|HPRD:15959|Vega:OTTHUMG00000045099 Y Yq11.223 deleted in azoospermia 3 protein-coding DAZ3 deleted in azoospermia 3 O deleted in azoospermia protein 3 20121230 -9606 57055 DAZ2 - pDP1678 HGNC:15964|MIM:400026|Ensembl:ENSG00000205944|HPRD:11848|Vega:OTTHUMG00000044060 Y Yq11.223 deleted in azoospermia 2 protein-coding DAZ2 deleted in azoospermia 2 O deleted in azoospermia protein 2 20121220 -9606 57057 TBX20 - ASD4 HGNC:11598|MIM:606061|Ensembl:ENSG00000164532|HPRD:06931|Vega:OTTHUMG00000099411 7 7p14.3 T-box 20 protein-coding TBX20 T-box 20 O T-box protein 20|T-box transcription factor TBX20 20121230 -9606 57060 PCBP4 - CBP|LIP4|MCG10 HGNC:8652|MIM:608503|Ensembl:ENSG00000090097|HPRD:16343|Vega:OTTHUMG00000157366 3 3p21 poly(rC) binding protein 4 protein-coding PCBP4 poly(rC) binding protein 4 O LYST-interacting protein|RNA binding protein MCG10|alpha-CP4|poly(rC)-binding protein 4 20121230 -9606 57061 HYMAI - NCRNA00020 HGNC:5326|MIM:606546 6 6q24.2 hydatidiform mole associated and imprinted (non-protein coding) miscRNA HYMAI hydatidiform mole associated and imprinted (non-protein coding) O - 20121230 -9606 57062 DDX24 - - HGNC:13266|MIM:606181|Ensembl:ENSG00000089737|HPRD:05860|Vega:OTTHUMG00000171301 14 14q32 DEAD (Asp-Glu-Ala-Asp) box polypeptide 24 protein-coding DDX24 DEAD (Asp-Glu-Ala-Asp) box polypeptide 24 O ATP-dependent RNA helicase DDX24|DEAD box protein 24|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 24|S. cerevisiae CHL1-like helicase 20121230 -9606 57082 CASC5 - AF15Q14|CT29|D40|KNL1|MCPH4|PPP1R55|hKNL-1|hSpc105 HGNC:24054|MIM:609173|Ensembl:ENSG00000137812|HPRD:10634|Vega:OTTHUMG00000166532 15 15q14 cancer susceptibility candidate 5 protein-coding CASC5 cancer susceptibility candidate 5 O ALL1-fused gene from chromosome 15q14 protein|blinkin, bub-linking kinetochore protein|bub-linking kinetochore protein|cancer susceptibility candidate gene 5 protein|cancer/testis antigen 29|kinetochore null 1 homolog|kinetochore-null protein 1|protein CASC5|protein phosphatase 1, regulatory subunit 55 20121230 -9606 57084 SLC17A6 - DNPI|VGLUT2 HGNC:16703|MIM:607563|Ensembl:ENSG00000091664|HPRD:10459|Vega:OTTHUMG00000166063 11 11p14.3 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 6 protein-coding SLC17A6 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 6 O differentiation-associated BNPI|differentiation-associated Na(+)-dependent inorganic phosphate cotransporter|differentiation-associated Na-dependent inorganic phosphate cotransporter|solute carrier family 17 member 6|vesicular glutamate transporter 2 20121230 -9606 57085 AGTRAP RP11-56N19.3 ATRAP HGNC:13539|MIM:608729|Ensembl:ENSG00000177674|HPRD:16379|Vega:OTTHUMG00000002230 1 1p36.22 angiotensin II receptor-associated protein protein-coding AGTRAP angiotensin II receptor-associated protein O AT1 receptor-associated protein|ATI receptor-associated protein|angiotensin II, type I receptor-associated protein|type-1 angiotensin II receptor-associated protein 20121230 -9606 57088 PLSCR4 GIG43 TRA1 HGNC:16497|MIM:607612|Ensembl:ENSG00000114698|HPRD:07401|Vega:OTTHUMG00000159415 3 3q24 phospholipid scramblase 4 protein-coding PLSCR4 phospholipid scramblase 4 O Ca(2+)-dependent phospholipid scramblase 4|PL scramblase 4|cell growth inhibiting protein 43 20121230 -9606 57089 ENTPD7 - LALP1|RP11-483F11.1 HGNC:19745|Ensembl:ENSG00000198018|HPRD:10939|Vega:OTTHUMG00000018888 10 - ectonucleoside triphosphate diphosphohydrolase 7 protein-coding ENTPD7 ectonucleoside triphosphate diphosphohydrolase 7 O NTPDase 7|lysosomal apyrase-like protein 1 20121230 -9606 57091 CASS4 - C20orf32|CAS4|HEFL|HEPL HGNC:15878|Ensembl:ENSG00000087589|HPRD:09842|Vega:OTTHUMG00000032788 20 20q13.31 Cas scaffolding protein family member 4 protein-coding CASS4 Cas scaffolding protein family member 4 O HEF-like protein|HEF1-EFS-p130Cas-like protein|cas scaffolding protein family member 4 20121230 -9606 57092 PCNP - - HGNC:30023|Ensembl:ENSG00000081154|HPRD:17826|Vega:OTTHUMG00000159108 3 3q12.3 PEST proteolytic signal containing nuclear protein protein-coding PCNP PEST proteolytic signal containing nuclear protein O PEST proteolytic signal-containing nuclear protein|PEST-containing nuclear protein 20121230 -9606 57093 TRIM49 - RNF18|TRIM49A|TRIM49L2 HGNC:13431|MIM:606124|Ensembl:ENSG00000168930|HPRD:05840|Vega:OTTHUMG00000167634 11 11p11.12-q12 tripartite motif containing 49 protein-coding TRIM49 tripartite motif containing 49 O ring finger protein 18|testis-specific RING Finger protein|testis-specific ring-finger protein|tripartite motif-containing 49|tripartite motif-containing protein 49 20121230 -9606 57094 CPA6 - CPAH|ETL5|FEB11 HGNC:17245|MIM:609562|Ensembl:ENSG00000165078|HPRD:09891|Vega:OTTHUMG00000164575 8 8q13.2 carboxypeptidase A6 protein-coding CPA6 carboxypeptidase A6 O carboxypeptidase B 20121230 -9606 57095 PITHD1 AD039 C1orf128|HT014|RP5-886K2.4|TXNL1CL HGNC:25022|Ensembl:ENSG00000057757|HPRD:13717|Vega:OTTHUMG00000002960 1 1p36.11 PITH (C-terminal proteasome-interacting domain of thioredoxin-like) domain containing 1 protein-coding PITHD1 PITH (C-terminal proteasome-interacting domain of thioredoxin-like) domain containing 1 O HT014|PITH domain-containing protein 1|TXNL1 C-terminal like 20121230 -9606 57096 RPGRIP1 - CORD13|LCA6|RGI1|RGRIP|RPGRIP|RPGRIP1d HGNC:13436|MIM:605446|Ensembl:ENSG00000092200|HPRD:05673|Vega:OTTHUMG00000170758 14 14q11 retinitis pigmentosa GTPase regulator interacting protein 1 protein-coding RPGRIP1 retinitis pigmentosa GTPase regulator interacting protein 1 O RPGR-interacting protein 1|X-linked retinitis pigmentosa GTPase regulator-interacting protein 1 20121230 -9606 57097 PARP11 - ARTD11|C12orf6 HGNC:1186|Ensembl:ENSG00000111224|HPRD:15101|Vega:OTTHUMG00000156442 12 12p13.3 poly (ADP-ribose) polymerase family, member 11 protein-coding PARP11 poly (ADP-ribose) polymerase family, member 11 O ADP-ribosyltransferase diphtheria toxin-like 11|MIB006|PARP-11|poly [ADP-ribose] polymerase 11 20121230 -9606 57099 AVEN - PDCD12 HGNC:13509|MIM:605265|Ensembl:ENSG00000169857|HPRD:05588|Vega:OTTHUMG00000129371 15 15q13.1 apoptosis, caspase activation inhibitor protein-coding AVEN apoptosis, caspase activation inhibitor O cell death regulator Aven|programmed cell death 12 20121230 -9606 57101 ANO2 - C12orf3|TMEM16B HGNC:1183|MIM:610109|Ensembl:ENSG00000047617|HPRD:11634|Vega:OTTHUMG00000168264 12 12p13.3 anoctamin 2 protein-coding ANO2 anoctamin 2 O anoctamin-2|transmembrane protein 16B (eight membrane-spanning domains) 20121230 -9606 57102 C12orf4 - - HGNC:1184|Ensembl:ENSG00000047621|HPRD:12609|Vega:OTTHUMG00000168258 12 12p13.3 chromosome 12 open reading frame 4 protein-coding C12orf4 chromosome 12 open reading frame 4 O uncharacterized protein C12orf4 20121230 -9606 57103 C12orf5 - FR2BP|TIGAR HGNC:1185|MIM:610775|Ensembl:ENSG00000078237|HPRD:12610|Vega:OTTHUMG00000168124 12 12p13.3 chromosome 12 open reading frame 5 protein-coding C12orf5 chromosome 12 open reading frame 5 O TP53-induced glycolysis and apoptosis regulator|fructose-2,6-bisphosphatase TIGAR|fructose-2,6-bisphosphate 2-phosphatase|probable fructose-2,6-bisphosphatase TIGAR|transactivated by NS3TP2 protein 20121230 -9606 57104 PNPLA2 FP17548 1110001C14Rik|ATGL|PEDF-R|TTS-2.2|TTS2|iPLA2zeta HGNC:30802|MIM:609059|Ensembl:ENSG00000177666|HPRD:11443|Vega:OTTHUMG00000133309 11 11p15.5 patatin-like phospholipase domain containing 2 protein-coding PNPLA2 patatin-like phospholipase domain containing 2 O IPLA2-zeta|TTS2.2|adipose triglyceride lipase|calcium-independent phospholipase A2|desnutrin|patatin-like phospholipase domain-containing protein 2|pigment epithelium-derived factor|transport-secretion protein 2.2|triglyceride hydrolase 20121230 -9606 57105 CYSLTR2 PSEC0146 CYSLT2|CYSLT2R|HG57|HPN321|KPG_011|hGPCR21 HGNC:18274|MIM:605666|Ensembl:ENSG00000152207|HPRD:09293|Vega:OTTHUMG00000016906 13 13q14.2 cysteinyl leukotriene receptor 2 protein-coding CYSLTR2 cysteinyl leukotriene receptor 2 O G protein-coupled receptor|G-protein coupled receptor GPCR21|G-protein coupled receptor HG57|cysteinyl leukotriene CysLT2 receptor 20121230 -9606 57106 NAT14 - KLP1 HGNC:28918|Ensembl:ENSG00000090971|HPRD:10036|Vega:OTTHUMG00000180854 19 19q13.42 N-acetyltransferase 14 (GCN5-related, putative) protein-coding NAT14 N-acetyltransferase 14 (GCN5-related, putative) O K562 cell-derived leucine-zipper-like protein 1|K562 cells-derived leucine zipper-like protein 1|K562 cells-derived leucine-zipper-like protein 1|N-acetyltransferase 14 20121230 -9606 57107 PDSS2 RP11-59I9.3 C6orf210|COQ10D3|DLP1|bA59I9.3|hDLP1 HGNC:23041|MIM:610564|Ensembl:ENSG00000164494|HPRD:12879|Vega:OTTHUMG00000059359 6 6q21 prenyl (decaprenyl) diphosphate synthase, subunit 2 protein-coding PDSS2 prenyl (decaprenyl) diphosphate synthase, subunit 2 O all-trans-decaprenyl-diphosphate synthase subunit 2|decaprenyl pyrophosphate synthase subunit 2|decaprenyl pyrophosphate synthetase subunit 2|decaprenyl-diphosphate synthase subunit 2|subunit 2 of decaprenyl diphosphate synthase 20121230 -9606 57108 SETD8P1 - SET07p|SET7 HGNC:30088 13 13q11-q13 SET domain containing 8 pseudogene 1 pseudo SETD8P1 SET domain containing 8 pseudogene 1 O - 20121230 -9606 57109 REXO4 RP11-244N20.5 REX4|XPMC2|XPMC2H HGNC:12820|MIM:602930|Ensembl:ENSG00000148300|HPRD:04239|Vega:OTTHUMG00000020870 9 9q34.2 REX4, RNA exonuclease 4 homolog (S. cerevisiae) protein-coding REXO4 REX4, RNA exonuclease 4 homolog (S. cerevisiae) O RNA exonuclease 4|XPMC2 prevents mitotic catastrophe 2 homolog|Xenopus prevents mitotic catastrophe 2 homolog|Xenopus prevents mitotic catatrophe 2 homolog|exonuclease XPMC2|hPMC2|prevents mitotic catastrophe 2 protein homolog 20121230 -9606 57110 HRASLS - A-C1|H-REV107|HRASLS1|HSD28 HGNC:14922|MIM:606487|Ensembl:ENSG00000127252|HPRD:07577|Vega:OTTHUMG00000156104 3 3q29 HRAS-like suppressor protein-coding HRASLS HRAS-like suppressor O H-REV107 protein-related protein|phospholipase A|phospholipid-metabolizing enzyme A-C1 20121230 -9606 57111 RAB25 - CATX-8|RAB11C HGNC:18238|MIM:612942|Ensembl:ENSG00000132698|HPRD:06698|Vega:OTTHUMG00000017457 1 1q22 RAB25, member RAS oncogene family protein-coding RAB25 RAB25, member RAS oncogene family O ras-related protein Rab-25 20121230 -9606 57113 TRPC7 - TRP7 HGNC:20754|Ensembl:ENSG00000069018|HPRD:18228|Vega:OTTHUMG00000162035 5 5q31.1 transient receptor potential cation channel, subfamily C, member 7 protein-coding TRPC7 transient receptor potential cation channel, subfamily C, member 7 O TRP-7|hTRP7|likley ortholog of mouse transient receptor potential cation channel, subfamily C, member 7|putative capacitative calcium channel|short transient receptor potential channel 7|transient receptor protein 7 20121230 -9606 57115 PGLYRP4 SBBI67 PGLYRPIbeta|PGRP-Ibeta|PGRPIB HGNC:30015|MIM:608198|Ensembl:ENSG00000163218|HPRD:16298|Vega:OTTHUMG00000037057 1 1q21 peptidoglycan recognition protein 4 protein-coding PGLYRP4 peptidoglycan recognition protein 4 O PGRP-I-beta|peptidoglycan recognition protein I beta|peptidoglycan recognition protein I-beta|peptidoglycan recognition protein intermediate beta|peptidoglycan recognition protein-I-beta 20121230 -9606 57116 ZNF695 - RP11-551G24.1|SBZF3 HGNC:30954|Ensembl:ENSG00000197472|HPRD:11534|Vega:OTTHUMG00000040707 1 1q44 zinc finger protein 695 protein-coding ZNF695 zinc finger protein 695 O zinc finger protein SBZF3 20121230 -9606 57117 INTS12 SBBI22 INT12|PHF22 HGNC:25067|MIM:611355|Ensembl:ENSG00000138785|HPRD:11271|Vega:OTTHUMG00000131215 4 4q24 integrator complex subunit 12 protein-coding INTS12 integrator complex subunit 12 O PHD finger protein 22|hypothetical nuclear factor SBBI22 20121230 -9606 57118 CAMK1D RP11-462F15.1 CKLiK|CaM-K1|CaMKID HGNC:19341|MIM:607957|Ensembl:ENSG00000183049|HPRD:06409|Vega:OTTHUMG00000017683 10 10p13 calcium/calmodulin-dependent protein kinase ID protein-coding CAMK1D calcium/calmodulin-dependent protein kinase ID O CaM kinase ID|CamKI-like protein kinase|caM kinase I delta|caM-KI delta|caMKI delta|calcium/calmodulin-dependent protein kinase type 1D 20121230 -9606 57119 EPPIN RP3-461P17.1 CT71|CT72|SPINLW1|WAP7|WFDC7|dJ461P17.2 HGNC:15932|MIM:609031|Ensembl:ENSG00000101448|HPRD:10615|Vega:OTTHUMG00000032588 20 20q13.12 epididymal peptidase inhibitor protein-coding EPPIN epididymal peptidase inhibitor O WAP four-disulfide core domain protein 7|cancer/testis antigen 71|cancer/testis antigen 72|epididymal protease inhibitor|eppin|protease inhibitor WAP7|serine peptidase inhibitor-like, with Kunitz and WAP domains 1 (eppin) 20121230 -9606 57120 GOPC - CAL|FIG|GOPC1|PIST|dJ94G16.2 HGNC:17643|MIM:606845|Ensembl:ENSG00000047932|HPRD:06024|Vega:OTTHUMG00000015457 6 6q21 golgi-associated PDZ and coiled-coil motif containing protein-coding GOPC golgi-associated PDZ and coiled-coil motif containing O CFTR-associated ligand|Golgi associated PDZ and coiled-coil motif containing protein|Golgi-associated PDZ and coiled-coil motif-containing protein|PDZ protein interacting specifically with TC10|PDZ/coiled-coil domain binding partner for the rho-family GTPase TC10|dJ94G16.2 PIST|fused in glioblastoma 20121230 -9606 57121 LPAR5 - GPR92|GPR93|KPG_010|LPA5 HGNC:13307|MIM:606926|Ensembl:ENSG00000184574|HPRD:09495|Vega:OTTHUMG00000168713 12 12p13.31 lysophosphatidic acid receptor 5 protein-coding LPAR5 lysophosphatidic acid receptor 5 O G protein-coupled receptor 92|G-protein coupled receptor 92|G-protein coupled receptor 93|LPA receptor 5|LPA-5 20121230 -9606 57122 NUP107 - NUP84 HGNC:29914|MIM:607617|Ensembl:ENSG00000111581|HPRD:06356|Vega:OTTHUMG00000169265 12 12q15 nucleoporin 107kDa protein-coding NUP107 nucleoporin 107kDa O 107 kDa nucleoporin|nuclear pore complex protein Nup107|nucleoporin Nup107 20121230 -9606 57124 CD248 - CD164L1|TEM1 HGNC:18219|MIM:606064|Ensembl:ENSG00000174807|HPRD:06933|Vega:OTTHUMG00000167073 11 11q13 CD248 molecule, endosialin protein-coding CD248 CD248 molecule, endosialin O 2610111G01Rik|CD164 sialomucin-like 1|CD248 antigen, endosialin|endosialin|tumor endothelial marker 1 20121230 -9606 57125 PLXDC1 - TEM3|TEM7 HGNC:20945|MIM:606826|Ensembl:ENSG00000161381|HPRD:08439|Vega:OTTHUMG00000133183 17 17q21.1 plexin domain containing 1 protein-coding PLXDC1 plexin domain containing 1 O 2410003I07Rik|plexin domain-containing protein 1|tumor endothelial marker 3|tumor endothelial marker 7 20121230 -9606 57126 CD177 UNQ595/PRO1181 HNA-2a|HNA2A|NB1|NB1 GP|PRV-1|PRV1 HGNC:30072|MIM:162860|HPRD:01222 19 19q13.2 CD177 molecule protein-coding CD177 CD177 molecule O CD177 antigen|NB1 glycoprotein|cell surface receptor|human neutrophil alloantigen 2a|polycythemia rubra vera 1|polycythemia rubra vera protein 1 20121230 -9606 57127 RHBG RP11-139I14.1 SLC42A2 HGNC:14572|MIM:607079|Ensembl:ENSG00000132677|HPRD:06152|Vega:OTTHUMG00000024057 1 1q21.3 Rh family, B glycoprotein (gene/pseudogene) protein-coding RHBG Rh family, B glycoprotein (gene/pseudogene) O Rh type B glycoprotein|Rhesus blood group, B glycoprotein|ammonium transporter Rh type B 20121230 -9606 57128 LYRM4 - C6orf149|CGI-203|ISD11 HGNC:21365|MIM:613311|Ensembl:ENSG00000214113|HPRD:12855|Vega:OTTHUMG00000014173 6 6p25.1 LYR motif containing 4 protein-coding LYRM4 LYR motif containing 4 O LYR motif-containing protein 4|homolog of yeast Isd11|mitochondrial matrix Nfs1 interacting protein 20121230 -9606 57129 MRPL47 CGI-204 L47mt|MRP-L47|NCM1 HGNC:16652|MIM:611852|Ensembl:ENSG00000136522|HPRD:14766|Vega:OTTHUMG00000157784 3 3q26.33 mitochondrial ribosomal protein L47 protein-coding MRPL47 mitochondrial ribosomal protein L47 O 39S ribosomal protein L47, mitochondrial|nasopharyngeal carcinoma metastasis-related 1|nasopharyngeal carcinoma metastasis-related protein 1 20121230 -9606 57130 ATP13A1 CGI-152 ATP13A HGNC:24215|Ensembl:ENSG00000105726|HPRD:12501|Vega:OTTHUMG00000153016 19 19p13.11 ATPase type 13A1 protein-coding ATP13A1 ATPase type 13A1 O cation transporting ATPase|probable cation-transporting ATPase 13A1 20121230 -9606 57132 CHMP1B - C10orf2|C18-ORF2|C18orf2|CHMP1.5|Vps46-2|Vps46B|hVps46-2 HGNC:24287|MIM:606486|Ensembl:ENSG00000255112|HPRD:12106|Vega:OTTHUMG00000165820 18 18p11.21 charged multivesicular body protein 1B protein-coding CHMP1B charged multivesicular body protein 1B O charged multivesicular body protein 1b|chromatin modifying protein 1B|chromatin-modifying protein 1b|vacuolar protein sorting 46-2|vacuolar protein sorting-associated protein 46-2 20121230 -9606 57134 MAN1C1 - HMIC|MAN1A3|MAN1C|pp6318 HGNC:19080|Ensembl:ENSG00000117643|HPRD:14354|Vega:OTTHUMG00000004417 1 1p35 mannosidase, alpha, class 1C, member 1 protein-coding MAN1C1 mannosidase, alpha, class 1C, member 1 O 1,2-alpha-mannosidase IC|mannosyl-oligosaccharide 1,2-alpha-mannosidase IC|processing alpha-1,2-mannosidase IC 20121230 -9606 57135 DAZ4 - pDP1680|pDP1681 HGNC:15966|Ensembl:ENSG00000205916|HPRD:13117|Vega:OTTHUMG00000045100 Y Yq11.223 deleted in azoospermia 4 protein-coding DAZ4 deleted in azoospermia 4 O deleted in azoospermia protein 4 20121230 -9606 57136 APMAP RP4-568C11.2 BSCv|C20orf3 HGNC:13238|Ensembl:ENSG00000101474|HPRD:09840|Vega:OTTHUMG00000032107 20 20p11.2 adipocyte plasma membrane associated protein protein-coding APMAP adipocyte plasma membrane associated protein O adipocyte plasma membrane-associated protein|protein BSCv 20121230 -9606 57139 RGL3 - - HGNC:30282|Ensembl:ENSG00000205517|Vega:OTTHUMG00000172898 19 19p13.2 ral guanine nucleotide dissociation stimulator-like 3 protein-coding RGL3 ral guanine nucleotide dissociation stimulator-like 3 O RalGEF-like protein 3, mouse homolog|ralGDS-like 3 20121230 -9606 57140 RNPEPL1 - - HGNC:10079|MIM:605287|Ensembl:ENSG00000142327|HPRD:07545|Vega:OTTHUMG00000133357 2 2q37.3 arginyl aminopeptidase (aminopeptidase B)-like 1 protein-coding RNPEPL1 arginyl aminopeptidase (aminopeptidase B)-like 1 O RNPEP-like 1|argininyl aminopeptidase-like 1|arginyl aminopeptidase-like 1 20121230 -9606 57142 RTN4 My043 ASY|NI220/250|NOGO|NOGO-A|NOGOC|NSP|NSP-CL|Nbla00271|Nbla10545|Nogo-B|Nogo-C|RTN-X|RTN4-A|RTN4-B1|RTN4-B2|RTN4-C HGNC:14085|MIM:604475|Ensembl:ENSG00000115310|HPRD:07259|Vega:OTTHUMG00000129337 2 2p16.3 reticulon 4 protein-coding RTN4 reticulon 4 O Human NogoA|My043 protein|foocen|neurite growth inhibitor 220|neurite outgrowth inhibitor|neuroendocrine-specific protein C homolog|reticulon 5|reticulon-4 20121230 -9606 57143 ADCK1 - - HGNC:19038|Ensembl:ENSG00000063761|HPRD:10630|Vega:OTTHUMG00000171520 14 14q24.3 aarF domain containing kinase 1 protein-coding ADCK1 aarF domain containing kinase 1 O uncharacterized aarF domain-containing protein kinase 1 20121230 -9606 57144 PAK7 RP5-1119D9.3 PAK5 HGNC:15916|MIM:608038|Ensembl:ENSG00000101349|HPRD:06423|Vega:OTTHUMG00000031857 20 20p12 p21 protein (Cdc42/Rac)-activated kinase 7 protein-coding PAK7 p21 protein (Cdc42/Rac)-activated kinase 7 O PAK-5|PAK-7|p21(CDKN1A)-activated kinase 7|p21-activated kinase 5|p21-activated kinase 7|p21CDKN1A-activated kinase 7|protein kinase PAK5|serine/threonine-protein kinase PAK 7|serine/threonine-protein kinase PAK7 20121230 -9606 57146 TMEM159 - PROMETHIN HGNC:30136|MIM:611304|Ensembl:ENSG00000011638|HPRD:17428|Vega:OTTHUMG00000131559 16 16p12 transmembrane protein 159 protein-coding TMEM159 transmembrane protein 159 O promethin 20121230 -9606 57147 SCYL3 RP1-97P20.2 PACE-1|PACE1 HGNC:19285|MIM:608192|Ensembl:ENSG00000000457|HPRD:07459|Vega:OTTHUMG00000035941 1 1q24.2 SCY1-like 3 (S. cerevisiae) protein-coding SCYL3 SCY1-like 3 (S. cerevisiae) O SCY1-like protein 3|ezrin-binding partner PACE-1 (PACE-1)|ezrin-binding protein PACE-1|protein-associating with the carboxyl-terminal domain of ezrin 20121230 -9606 57148 RALGAPB RP5-1100H13.1 KIAA1219|RalGAPbeta|dJ1100H13.1 HGNC:29221|Ensembl:ENSG00000170471|HPRD:11133|Vega:OTTHUMG00000140270 20 20q11.23 Ral GTPase activating protein, beta subunit (non-catalytic) protein-coding RALGAPB Ral GTPase activating protein, beta subunit (non-catalytic) O p170|ral GTPase-activating protein beta subunit|ral GTPase-activating protein subunit beta 20121230 -9606 57149 LYRM1 - A211C6.1 HGNC:25074|MIM:614709|Ensembl:ENSG00000102897|HPRD:14254|Vega:OTTHUMG00000131554 16 16p11.2 LYR motif containing 1 protein-coding LYRM1 LYR motif containing 1 O LYR motif-containing protein 1 20121230 -9606 57150 SMIM8 DC18 C6orf162|dJ102H19.2 HGNC:21401|Ensembl:ENSG00000111850|HPRD:12862|Vega:OTTHUMG00000015168 6 6q15-q16.1 small integral membrane protein 8 protein-coding SMIM8 small integral membrane protein 8 O UPF0708 protein C6orf162 20121230 -9606 57151 LYZL6 UNQ754/PRO1485 LYC1|PRO1485|TKAL754|UNQ754 HGNC:29614|MIM:612751|Ensembl:ENSG00000161572|HPRD:14339|Vega:OTTHUMG00000132998 17 17q11.2 lysozyme-like 6 protein-coding LYZL6 lysozyme-like 6 O lysozyme homolog|lysozyme-like protein 6 20121230 -9606 57152 SLURP1 - ANUP|ARS|ArsB|LY6LS|MDM HGNC:18746|MIM:606119|Ensembl:ENSG00000126233|HPRD:05836|Vega:OTTHUMG00000164685 8 8q24.3 secreted LY6/PLAUR domain containing 1 protein-coding SLURP1 secreted LY6/PLAUR domain containing 1 O ARS(component B)-81/S|SLURP-1|anti-neoplastic urinary protein|lymphocyte antigen 6-like secreted|secreted Ly-6/uPAR-related protein 1|secreted Ly6/uPAR related protein 1 20121230 -9606 57153 SLC44A2 PSEC0210 CTL2|PP1292 HGNC:17292|MIM:606106|Ensembl:ENSG00000129353|HPRD:16198|Vega:OTTHUMG00000180585 19 19p13.1 solute carrier family 44, member 2 protein-coding SLC44A2 solute carrier family 44, member 2 O choline transporter-like protein 2 20121230 -9606 57154 SMURF1 - - HGNC:16807|MIM:605568|Ensembl:ENSG00000198742|HPRD:06902|Vega:OTTHUMG00000150272 7 7q22.1 SMAD specific E3 ubiquitin protein ligase 1 protein-coding SMURF1 SMAD specific E3 ubiquitin protein ligase 1 O E3 ubiquitin ligase SMURF1|E3 ubiquitin-protein ligase SMURF1|SMAD-specific E3 ubiquitin-protein ligase 1|Smad ubiquitination regulatory factor 1|Smad-specific E3 ubiquitin ligase 1|hSMURF1 20121230 -9606 57156 TMEM63C - C14orf171 HGNC:23787|Ensembl:ENSG00000165548|HPRD:16617|Vega:OTTHUMG00000171557 14 14q24.3 transmembrane protein 63C protein-coding TMEM63C transmembrane protein 63C O - 20121230 -9606 57157 PHTF2 - - HGNC:13411|Ensembl:ENSG00000006576|HPRD:15130|Vega:OTTHUMG00000155557 7 7q11.23-q21 putative homeodomain transcription factor 2 protein-coding PHTF2 putative homeodomain transcription factor 2 O - 20121230 -9606 57158 JPH2 - CMH17|JP-2|JP2 HGNC:14202|MIM:605267|Ensembl:ENSG00000149596|HPRD:12006|Vega:OTTHUMG00000033037 20 20q13.12 junctophilin 2 protein-coding JPH2 junctophilin 2 O junctophilin type 2|junctophilin-2 20121230 -9606 57159 TRIM54 - MURF|MURF-3|RNF30|muRF3 HGNC:16008|MIM:606474|Ensembl:ENSG00000138100|HPRD:05928|Vega:OTTHUMG00000097078 2 2p23.3 tripartite motif containing 54 protein-coding TRIM54 tripartite motif containing 54 O muscle-specific RING finger protein 3|muscle-specific RING-finger protein 3|ring finger protein 30|tripartite motif-containing 54|tripartite motif-containing protein 54 20121230 -9606 57160 TBX23P - TBX23 HGNC:11601 1 - T-box 23, pseudogene pseudo TBX23P T-box 23, pseudogene O - 20110419 -9606 57161 PELI2 - - HGNC:8828|MIM:614798|Ensembl:ENSG00000139946|HPRD:17835|Vega:OTTHUMG00000152336 14 14q21 pellino E3 ubiquitin protein ligase family member 2 protein-coding PELI2 pellino E3 ubiquitin protein ligase family member 2 O E3 ubiquitin-protein ligase pellino homolog 2|pellino homolog 2|pellino-2|protein pellino homolog 2 20121230 -9606 57162 PELI1 - - HGNC:8827|MIM:614797|Ensembl:ENSG00000197329|HPRD:17834|Vega:OTTHUMG00000129511 2 2p13.3 pellino E3 ubiquitin protein ligase 1 protein-coding PELI1 pellino E3 ubiquitin protein ligase 1 O E3 ubiquitin-protein ligase pellino homolog 1|pellino homolog 1|pellino-1|pellino-related intracellular-signaling molecule|protein pellino homolog 1 20121230 -9606 57165 GJC2 - CX46.6|Cx47|GJA12|HLD2|LMPH1C|PMLDAR|SPG44 HGNC:17494|MIM:608803|Ensembl:ENSG00000198835|HPRD:10582|Vega:OTTHUMG00000039771 1 1q42.13 gap junction protein, gamma 2, 47kDa protein-coding GJC2 gap junction protein, gamma 2, 47kDa O connexin-46.6|connexin-47|gap junction alpha-12 protein|gap junction gamma-2 protein 20121230 -9606 57167 SALL4 - DRRS|HSAL4|ZNF797|dJ1112F19.1 HGNC:15924|MIM:607343|Ensembl:ENSG00000101115|HPRD:08458|Vega:OTTHUMG00000032752 20 20q13.2 sal-like 4 (Drosophila) protein-coding SALL4 sal-like 4 (Drosophila) O sal-like protein 4|zinc finger protein 797|zinc finger protein SALL4 20121230 -9606 57168 ASPHD2 CTB-1048E9.3 - HGNC:30437|Ensembl:ENSG00000128203|HPRD:14255|Vega:OTTHUMG00000150884 22 22q12.1 aspartate beta-hydroxylase domain containing 2 protein-coding ASPHD2 aspartate beta-hydroxylase domain containing 2 O aspartate beta-hydroxylase domain-containing protein 2 20121230 -9606 57169 ZNFX1 RP4-686N3.1404-002 - HGNC:29271|Ensembl:ENSG00000124201|HPRD:11142|Vega:OTTHUMG00000032696 20 20q13.13 zinc finger, NFX1-type containing 1 protein-coding ZNFX1 zinc finger, NFX1-type containing 1 O NFX1-type zinc finger-containing protein 1 20121230 -9606 57171 DOLPP1 RP11-167N5.4 LSFR2 HGNC:29565|MIM:614516|Ensembl:ENSG00000167130|HPRD:16835|Vega:OTTHUMG00000020771 9 9q34.1 dolichyl pyrophosphate phosphatase 1 protein-coding DOLPP1 dolichyl pyrophosphate phosphatase 1 O dolichyldiphosphatase 1|linked to Surfeit genes in Fugu rubripes 2 20121230 -9606 57172 CAMK1G RP1-272L16.2 CLICKIII|VWS1|dJ272L16.1 HGNC:14585|MIM:614994|Ensembl:ENSG00000008118|HPRD:10807|Vega:OTTHUMG00000036361 1 1q32.2 calcium/calmodulin-dependent protein kinase IG protein-coding CAMK1G calcium/calmodulin-dependent protein kinase IG O CLICK III|caM kinase I gamma|caM kinase IG|caM-KI gamma|caMK-like CREB kinase III|caMKI gamma|caMKIG|calcium/calmodulin-dependent protein kinase type 1G 20121230 -9606 57175 CORO1B - CORONIN-2 HGNC:2253|MIM:609849|Ensembl:ENSG00000172725|HPRD:16743|Vega:OTTHUMG00000167775 11 11q13.2 coronin, actin binding protein, 1B protein-coding CORO1B coronin, actin binding protein, 1B O coronin-1B 20121230 -9606 57176 VARS2 DADB-160J14.3 G7a|VARS2L|VARSL HGNC:21642|MIM:612802|Ensembl:ENSG00000137411|HPRD:11670|Vega:OTTHUMG00000031263 6 6p21.33 valyl-tRNA synthetase 2, mitochondrial protein-coding VARS2 valyl-tRNA synthetase 2, mitochondrial O valRS|valine tRNA ligase 2, mitochondrial (putative)|valine--tRNA ligase, mitochondrial|valyl-tRNA synthetase 2, mitochondrial (putative)|valyl-tRNA synthetase like|valyl-tRNA synthetase, mitochondrial 20121230 -9606 57178 ZMIZ1 RP11-519K18.1 MIZ|RAI17|TRAFIP10|ZIMP10|hZIMP10 HGNC:16493|MIM:607159|Ensembl:ENSG00000108175|HPRD:12115|Vega:OTTHUMG00000018560 10 10q22.3 zinc finger, MIZ-type containing 1 protein-coding ZMIZ1 zinc finger, MIZ-type containing 1 O FLJ00092 protein|RP11-519K18.1|retinoic acid induced 17|zinc finger MIZ domain-containing protein 1|zinc finger-containing, Miz1, PIAS-like protein on chromosome 10 20121230 -9606 57179 KIAA1191 - p60MONOX HGNC:29209|Ensembl:ENSG00000122203|HPRD:13839|Vega:OTTHUMG00000130656 5 5q35.2 KIAA1191 protein-coding KIAA1191 KIAA1191 O brain-derived rescue factor p60MONOX|flavine monooxygenase motif-containing protein of 33 kDa|putative monooxygenase p33MONOX 20121230 -9606 57180 ACTR3B - ARP11|ARP3BETA HGNC:17256|Ensembl:ENSG00000133627|HPRD:12489|Vega:OTTHUMG00000151463 7 7q36.1 ARP3 actin-related protein 3 homolog B (yeast) protein-coding ACTR3B ARP3 actin-related protein 3 homolog B (yeast) O ARP3-beta|actin-like protein 3B|actin-related protein 3-beta|actin-related protein 3B|actin-related protein ARP4|actin-related protein Arp11 20121230 -9606 57181 SLC39A10 - LZT-Hs2 HGNC:20861|MIM:608733|Ensembl:ENSG00000196950|HPRD:10572|Vega:OTTHUMG00000154380 2 2q32.3 solute carrier family 39 (zinc transporter), member 10 protein-coding SLC39A10 solute carrier family 39 (zinc transporter), member 10 O ZIP-10|solute carrier family 39 (metal ion transporter), member 10|solute carrier family 39 member 10|zinc transporter ZIP10|zrt- and Irt-like protein 10 20121230 -9606 57182 ANKRD50 - - HGNC:29223|Ensembl:ENSG00000151458|HPRD:13843|Vega:OTTHUMG00000161398 4 4q28.1 ankyrin repeat domain 50 protein-coding ANKRD50 ankyrin repeat domain 50 O ankyrin repeat domain-containing protein 50 20121230 -9606 57184 FAM219B - C15orf17 HGNC:24695|Ensembl:ENSG00000178761|HPRD:12667|Vega:OTTHUMG00000172715 15 15q24.1 family with sequence similarity 219, member B protein-coding FAM219B family with sequence similarity 219, member B O protein FAM219B|uncharacterized protein C15orf17 20121230 -9606 57185 NIPAL3 RP3-462O23.3 DJ462O23.2|NPAL3 HGNC:25233|Ensembl:ENSG00000001461|HPRD:13149|Vega:OTTHUMG00000003299 1 1p36.12-p35.1 NIPA-like domain containing 3 protein-coding NIPAL3 NIPA-like domain containing 3 O NIPA-like protein 3 20121230 -9606 57186 RALGAPA2 RP11-470C13.2 AS250|C20orf74|bA287B20.1|dJ1049G11|dJ1049G11.4|p220 HGNC:16207|Ensembl:ENSG00000188559|Vega:OTTHUMG00000032010 20 20p11.22 Ral GTPase activating protein, alpha subunit 2 (catalytic) protein-coding RALGAPA2 Ral GTPase activating protein, alpha subunit 2 (catalytic) O 250 kDa substrate of Akt|RapGAPalpha2|akt substrate AS250|ral GTPase-activating protein alpha subunit 2|ral GTPase-activating protein subunit alpha-2 20121230 -9606 57187 THOC2 RP5-1189B24.5 CXorf3|THO2|dJ506G2.1|hTREX120 HGNC:19073|MIM:300395|Ensembl:ENSG00000125676|HPRD:02317|Vega:OTTHUMG00000022334 X Xq25-q26.3 THO complex 2 protein-coding THOC2 THO complex 2 O THO complex subunit 2 20121230 -9606 57188 ADAMTSL3 - - HGNC:14633|MIM:609199|Ensembl:ENSG00000156218|HPRD:12426|Vega:OTTHUMG00000147363 15 15q25.2 ADAMTS-like 3 protein-coding ADAMTSL3 ADAMTS-like 3 O ADAMTS-like protein 3|ADAMTSL-3|a disintegrin-like and metalloprotease domain with thrombospondin type I motifs-like 3|punctin-2 20121230 -9606 57189 KIAA1147 - LCHN|PRO2561 HGNC:29472|Ensembl:ENSG00000257093|Vega:OTTHUMG00000157539 7 7q34 KIAA1147 protein-coding KIAA1147 KIAA1147 O predicted protein of HQ2561|protein LCHN 20121230 -9606 57190 SEPN1 - CFTD|MDRS1|RSMD1|RSS|SELN HGNC:15999|MIM:606210|Ensembl:ENSG00000162430|HPRD:05867|Vega:OTTHUMG00000007375 1 1p36.13 selenoprotein N, 1 protein-coding SEPN1 selenoprotein N, 1 O selenoprotein N 20121230 -9606 57191 VN1R1 - V1RL1|VNR19I1|ZVNH1|ZVNR1 HGNC:13548|MIM:605234|Ensembl:ENSG00000178201|HPRD:05571 19 19q13.4 vomeronasal 1 receptor 1 protein-coding VN1R1 vomeronasal 1 receptor 1 O G-protein coupled receptor GPCR24|V1R-like 1|V1r-like receptor 1|V3r-related gene protein|hGPCR24|vomeronasal olfactory receptor chromosome 19 subtype I member 1|vomeronasal olfactory receptor, (chromosome 19) subtype I, member 1|vomeronasal type-1 receptor 1 20121230 -9606 57192 MCOLN1 MSTP080 MG-2|ML4|MLIV|MST080|TRP-ML1|TRPM-L1|TRPML1 HGNC:13356|MIM:605248|Ensembl:ENSG00000090674|HPRD:05582 19 19p13.2 mucolipin 1 protein-coding MCOLN1 mucolipin 1 O mucolipidin|mucolipidosis type IV protein|mucolipin-1 20121230 -9606 57194 ATP10A - ATP10C|ATPVA|ATPVC HGNC:13542|MIM:605855|Ensembl:ENSG00000206190|HPRD:05790|Vega:OTTHUMG00000171703 15 15q11.2 ATPase, class V, type 10A protein-coding ATP10A ATPase, class V, type 10A O ATPase type IV, phospholipid transporting (P-type)|ATPase, Class V, type 10C|aminophospholipid translocase VA|phospholipid-transporting ATPase VA|probable phospholipid-transporting ATPase VA 20121230 -9606 57198 ATP8B2 RP11-350G8.2 ATPID HGNC:13534|MIM:605867|Ensembl:ENSG00000143515|HPRD:05794|Vega:OTTHUMG00000035979 1 1q21.3 ATPase, aminophospholipid transporter, class I, type 8B, member 2 protein-coding ATP8B2 ATPase, aminophospholipid transporter, class I, type 8B, member 2 O ATPase, class I, type 8B, member 2|phospholipid-transporting ATPase ID|probable phospholipid-transporting ATPase ID 20121230 -9606 57205 ATP10D - ATPVD HGNC:13549|Ensembl:ENSG00000145246|HPRD:16518|Vega:OTTHUMG00000160784 4 4p12 ATPase, class V, type 10D protein-coding ATP10D ATPase, class V, type 10D O probable phospholipid-transporting ATPase VD|type IV aminophospholipid transporting ATPase 20121230 -9606 57209 ZNF248 RP11-162G10.6 bA162G10.3 HGNC:13041|Ensembl:ENSG00000198105|HPRD:15757|Vega:OTTHUMG00000017980 10 10p11.2 zinc finger protein 248 protein-coding ZNF248 zinc finger protein 248 O KRAB protein domain|Kruppel-type zinc finger protein|bA162G10.3 (zinc finger protein) 20121230 -9606 57210 SLC45A4 - - HGNC:29196|Ensembl:ENSG00000022567|Vega:OTTHUMG00000164393 8 8q24.3 solute carrier family 45, member 4 protein-coding SLC45A4 solute carrier family 45, member 4 O solute carrier family 45 member 4 20121230 -9606 57211 GPR126 - APG1|DREG|PS1TP2|VIGR HGNC:13841|MIM:612243|Ensembl:ENSG00000112414|HPRD:17059|Vega:OTTHUMG00000015709 6 6q24.1 G protein-coupled receptor 126 protein-coding GPR126 G protein-coupled receptor 126 O G-protein coupled receptor 126|HBV PreS1-transactivated protein 2|developmentally regulated G-protein-coupled receptor|vascular inducible G protein-coupled receptor|vascular-inducible G protein-coupled receptor 20121230 -9606 57212 TP73-AS1 - KIAA0495|PDAM HGNC:29052|HPRD:13803 1 1p36.32 TP73 antisense RNA 1 miscRNA TP73-AS1 TP73 antisense RNA 1 O - 20121230 -9606 57213 SPRYD7 - C13orf1|CLLD6 HGNC:14297|MIM:607866|Ensembl:ENSG00000123178|HPRD:08486|Vega:OTTHUMG00000016924 13 13q14 SPRY domain containing 7 protein-coding SPRYD7 SPRY domain containing 7 O CLL deletion region gene 6 protein|SPRY domain-containing protein 7|chronic lymphocytic leukemia deletion region gene 6 protein 20121230 -9606 57214 KIAA1199 - CCSP1|TMEM2L HGNC:29213|MIM:608366|Ensembl:ENSG00000103888|HPRD:10519|Vega:OTTHUMG00000144184 15 15q24 KIAA1199 protein-coding KIAA1199 KIAA1199 O colon cancer secreted protein 1|protein KIAA1199 20121230 -9606 57215 THAP11 HRIHFB2206 CTG-B43a|CTG-B45d|RONIN HGNC:23194|MIM:609119|Ensembl:ENSG00000168286|HPRD:11629|Vega:OTTHUMG00000137546 16 16q22.1 THAP domain containing 11 protein-coding THAP11 THAP domain containing 11 O THAP domain-containing protein 11 20121230 -9606 57216 VANGL2 - LPP1|LTAP|STB1|STBM|STBM1 HGNC:15511|MIM:600533|Ensembl:ENSG00000162738|HPRD:02758|Vega:OTTHUMG00000033122 1 1q22-q23 vang-like 2 (van gogh, Drosophila) protein-coding VANGL2 vang-like 2 (van gogh, Drosophila) O loop-tail protein 1 homolog|loop-tail-associated protein|strabismus 1|van Gogh-like protein 2|vang-like protein 2 20121230 -9606 57217 TTC7A - TTC7 HGNC:19750|MIM:609332|Ensembl:ENSG00000068724|HPRD:18239|Vega:OTTHUMG00000153121 2 2p21 tetratricopeptide repeat domain 7A protein-coding TTC7A tetratricopeptide repeat domain 7A O TPR repeat protein 7A|tetratricopeptide repeat protein 7A 20121230 -9606 57221 KIAA1244 RP1-171N11.1 A7322|ARFGEF3|BIG3|C6orf92|PPP1R33|dJ171N11.1 HGNC:21213|Ensembl:ENSG00000112379|HPRD:13845|Vega:OTTHUMG00000015670 6 6q23.3 KIAA1244 protein-coding KIAA1244 KIAA1244 O brefeldin A-inhibited guanine nucleotide-exchange protein 3|protein phosphatase 1, regulatory subunit 33 20121230 -9606 57222 ERGIC1 HT034 ERGIC-32|ERGIC32|NET24 HGNC:29205|Ensembl:ENSG00000113719|HPRD:13836|Vega:OTTHUMG00000130520 5 5q35.1 endoplasmic reticulum-golgi intermediate compartment (ERGIC) 1 protein-coding ERGIC1 endoplasmic reticulum-golgi intermediate compartment (ERGIC) 1 O ER-Golgi intermediate compartment 32 kDa protein|endoplasmic reticulum-Golgi intermediate compartment protein 1|endoplasmic reticulum-golgi intermediate compartment 32 kDa protein 20121230 -9606 57223 SMEK2 - FLFL2|PP4R3B|PSY2|smk1 HGNC:29267|MIM:610352|Ensembl:ENSG00000138041|HPRD:13854|Vega:OTTHUMG00000129336 2 2p16.1 SMEK homolog 2, suppressor of mek1 (Dictyostelium) protein-coding SMEK2 SMEK homolog 2, suppressor of mek1 (Dictyostelium) O serine/threonine-protein phosphatase 4 regulatory subunit 3B 20121230 -9606 57224 NHSL1 - C6orf63 HGNC:21021|Ensembl:ENSG00000135540|Vega:OTTHUMG00000016321 6 6q23.3 NHS-like 1 protein-coding NHSL1 NHS-like 1 O NHS-like protein 1 20121230 -9606 57226 LYRM2 - DJ122O8.2 HGNC:25229|Ensembl:ENSG00000083099|HPRD:13146|Vega:OTTHUMG00000015203 6 6q15 LYR motif containing 2 protein-coding LYRM2 LYR motif containing 2 O LYR motif-containing protein 2 20121230 -9606 57228 SMAGP - hSMAGP HGNC:26918|Ensembl:ENSG00000170545|HPRD:14256 12 12q13.13 small cell adhesion glycoprotein protein-coding SMAGP small cell adhesion glycoprotein O small cell transmembrane and glycosylated protein|small trans-membrane and glycosylated protein|small transmembrane and glycosylated protein 20121230 -9606 57231 SNX14 RP11-321N4.2 RGS-PX2 HGNC:14977|Ensembl:ENSG00000135317|HPRD:11590|Vega:OTTHUMG00000015140 6 6q14.3 sorting nexin 14 protein-coding SNX14 sorting nexin 14 O sorting nexin-14 20121230 -9606 57232 ZNF630 RP1-54B20.2 dJ54B20.2 HGNC:28855|MIM:300819|Ensembl:ENSG00000221994|Vega:OTTHUMG00000021463 X Xp11.3-p11.1 zinc finger protein 630 protein-coding ZNF630 zinc finger protein 630 O dJ54B20.2 (novel KRAB box containing C2H2 type zinc finger protein) 20121230 -9606 57234 FAM91A2 - - HGNC:29050 1 1q21.1 family with sequence similarity 91, member A2 miscRNA FAM91A2 family with sequence similarity 91, member A2 O - 20121230 -9606 57235 KIAA0485 - - - - - uncharacterized LOC57235 unknown - - - - 20121018 -9606 57242 KIAA0509 - - - - - uncharacterized LOC57242 unknown - - - - 20120508 -9606 57282 SLC4A10 - NBCn2|NCBE HGNC:13811|MIM:605556|Ensembl:ENSG00000144290|Vega:OTTHUMG00000153938 2 2q24.2 solute carrier family 4, sodium bicarbonate transporter, member 10 protein-coding SLC4A10 solute carrier family 4, sodium bicarbonate transporter, member 10 O sodium-driven chloride bicarbonate exchanger|solute carrier family 4, sodium bicarbonate cotransporter-like, member 10 20121230 -9606 57289 IGHV7-4-1 - IGHV7-41|IGHV741 HGNC:5665|IMGT/GENE-DB:IGHV7-4-1 14 14q32.33 immunoglobulin heavy variable 7-4-1 other IGHV7-4-1 immunoglobulin heavy variable 7-4-1 O - 20111109 -9606 57290 IGHV3-30-3 - IGHV3-3|IGHV3303 HGNC:5593|IMGT/GENE-DB:IGHV3-30-3 14 14q32.33 immunoglobulin heavy variable 3-30-3 other IGHV3-30-3 immunoglobulin heavy variable 3-30-3 O - 20120114 -9606 57291 DANCR - ANCR|KIAA0114|SNHG13 HGNC:28964|MIM:614625 4 4q12 differentiation antagonizing non-protein coding RNA miscRNA DANCR differentiation antagonizing non-protein coding RNA O - 20121230 -9606 57292 KIR2DL5A XXbac-BCX195L8.5 CD158F|KIR2DL5|KIR2DL5.1|KIR2DL5.3|KIR2DL5B HGNC:16345|MIM:605305|HPRD:05603 19 19p13.3 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 5A protein-coding KIR2DL5A killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 5A O killer cell immunoglobulin-like receptor 2DL5A|killer cell immunoglobulin-like receptor KIR2DL5A|killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 5|killer-cell Ig-like receptor 20121222 -9606 57306 SDTY1 - SD1 MIM:185900 2 2q34-q36 Syndactyly, type I unknown - - - - 20120622 -9606 57309 SPG14 - - HGNC:13730|MIM:605229 3 3q27-q28 spastic paraplegia 14 (autosomal recessive) unknown SPG14 spastic paraplegia 14 (autosomal recessive) O - 20120622 -9606 57324 TSE2 - - MIM:601136 2 - transsuppressor of expression 2 unknown - - - - 20100404 -9606 57325 CSRP2BP RP4-717M23.1 ATAC2|CRP2BP|KAT14|PRO1194|dJ717M23.1 HGNC:15904|Ensembl:ENSG00000149474|HPRD:16765|Vega:OTTHUMG00000031962 20 20p11.23 CSRP2 binding protein protein-coding CSRP2BP CSRP2 binding protein O ADA2A-containing complex subunit 2|ATAC component 2 homolog|CRP2 binding partner|CRP2 binding protein|CSRP2-binding protein|cysteine-rich protein 2-binding protein 20121230 -9606 57326 PBXIP1 RP11-307C12.2 HPIP HGNC:21199|Ensembl:ENSG00000163346|HPRD:17823|Vega:OTTHUMG00000037369 1 1q21.3 pre-B-cell leukemia homeobox interacting protein 1 protein-coding PBXIP1 pre-B-cell leukemia homeobox interacting protein 1 O hematopoietic PBX-interacting protein|pre-B-cell leukemia transcription factor interacting protein 1|pre-B-cell leukemia transcription factor-interacting protein 1 20121230 -9606 57332 CBX8 - PC3|RC1 HGNC:15962|Ensembl:ENSG00000141570|HPRD:13006|Vega:OTTHUMG00000150416 17 17q25.3 chromobox homolog 8 protein-coding CBX8 chromobox homolog 8 O Pc class 3 homolog|chromobox homolog 8 (Pc class homolog, Drosophila)|chromobox protein homolog 8|polycomb 3|rectachrome 1 20121230 -9606 57333 RCN3 UNQ239/PRO272 RLP49 HGNC:21145|Ensembl:ENSG00000142552|HPRD:17962 19 19q13.33 reticulocalbin 3, EF-hand calcium binding domain protein-coding RCN3 reticulocalbin 3, EF-hand calcium binding domain O EF-hand calcium-binding protein RLP49|reticulocabin|reticulocalbin-3 20121230 -9606 57335 ZNF286A - ZNF286 HGNC:13501|Ensembl:ENSG00000187607|Ensembl:ENSG00000255104|HPRD:15760|Vega:OTTHUMG00000059066|Vega:OTTHUMG00000166448 17 17p11.2 zinc finger protein 286A protein-coding ZNF286A zinc finger protein 286A O zinc finger protein 286|zinc finger protein ZNF286 20121230 -9606 57336 ZNF287 - ZKSCAN13 HGNC:13502|Ensembl:ENSG00000141040|HPRD:11703|Vega:OTTHUMG00000058993 17 17p11.2 zinc finger protein 287 protein-coding ZNF287 zinc finger protein 287 O zinc finger protein with KRAB and SCAN domains 13 20121230 -9606 57337 SENP7 - - HGNC:30402|MIM:612846|Ensembl:ENSG00000138468|HPRD:07154|Vega:OTTHUMG00000149927 3 3q12 SUMO1/sentrin specific peptidase 7 protein-coding SENP7 SUMO1/sentrin specific peptidase 7 O SUMO-1-specific protease 2|SUMO1/sentrin specific protease 7|sentrin-specific protease 7|sentrin/SUMO-specific protease SENP7 20121230 -9606 57338 JPH3 - CAGL237|HDL2|JP-3|JP3|TNRC22 HGNC:14203|MIM:605268|Ensembl:ENSG00000154118|HPRD:05589|Vega:OTTHUMG00000137656 16 16q24.3 junctophilin 3 protein-coding JPH3 junctophilin 3 O junctophilin type 3|junctophilin-3|trinucleotide repeat containing 22 20121230 -9606 57343 ZNF304 - - HGNC:13505|MIM:613840|Ensembl:ENSG00000131845|HPRD:15766 19 19q13.4 zinc finger protein 304 protein-coding ZNF304 zinc finger protein 304 O - 20121230 -9606 57348 TTYH1 XXbac-BCX535A19.1 - HGNC:13476|MIM:605784|Ensembl:ENSG00000167614|HPRD:12043|Vega:OTTHUMG00000065544 19 19q13.4 tweety homolog 1 (Drosophila) protein-coding TTYH1 tweety homolog 1 (Drosophila) O hTTY1|protein tweety homolog 1 20121230 -9606 57369 GJD2 - CX36|GJA9 HGNC:19154|MIM:607058|Ensembl:ENSG00000159248|HPRD:09521|Vega:OTTHUMG00000129674 15 15q14 gap junction protein, delta 2, 36kDa protein-coding GJD2 gap junction protein, delta 2, 36kDa O connexin 36|connexin-36|gap junction alpha-9 protein|gap junction delta-2 protein 20121230 -9606 57379 AICDA - AID|ARP2|CDA2|HIGM2 HGNC:13203|MIM:605257|Ensembl:ENSG00000111732|HPRD:05585|Vega:OTTHUMG00000168676 12 12p13 activation-induced cytidine deaminase protein-coding AICDA activation-induced cytidine deaminase O cytidine aminohydrolase|integrated into Burkitt's lymphoma cell line Ramos 20121230 -9606 57380 MRS2 - HPT|MRS2L HGNC:13785|Ensembl:ENSG00000124532|HPRD:17603|Vega:OTTHUMG00000014355 6 6p22.3-p22.1 MRS2 magnesium homeostasis factor homolog (S. cerevisiae) protein-coding MRS2 MRS2 magnesium homeostasis factor homolog (S. cerevisiae) O MRS2-like protein|MRS2-like, magnesium homeostasis factor|magnesium transporter MRS2 homolog, mitochondrial 20121230 -9606 57381 RHOJ - ARHJ|RASL7B|TC10B|TCL HGNC:688|MIM:607653|Ensembl:ENSG00000126785|HPRD:09632|Vega:OTTHUMG00000140342 14 14q23.2 ras homolog family member J protein-coding RHOJ ras homolog family member J O RAS-like, family 7, member B|TC10-like Rho GTPase|ras homolog gene family, member J|ras-like protein family member 7B|rho-related GTP-binding protein RhoJ|tc10-like GTP-binding protein 20121230 -9606 57393 TMEM27 UNQ679/PRO1312 NX-17|NX17 HGNC:29437|MIM:300631|Ensembl:ENSG00000147003|HPRD:06668|Vega:OTTHUMG00000021181 X Xp22 transmembrane protein 27 protein-coding TMEM27 transmembrane protein 27 O 0610008J07Rik|collectrin|kidney-specific membrane protein 20121230 -9606 57396 CLK4 - - HGNC:13659|MIM:607969|Ensembl:ENSG00000113240|HPRD:12140|Vega:OTTHUMG00000130893 5 5q35 CDC-like kinase 4 protein-coding CLK4 CDC-like kinase 4 O dual specificity protein kinase CLK4|protein serine threonine kinase Clk4 20121230 -9606 57399 LOC57399 - - - 5 5q12.1 uncharacterized gastric protein ZA52P unknown - - - - 20120710 -9606 57402 S100A14 - BCMP84|S100A15 HGNC:18901|MIM:607986|Ensembl:ENSG00000189334|HPRD:10467|Vega:OTTHUMG00000035030 1 1q21.3 S100 calcium binding protein A14 protein-coding S100A14 S100 calcium binding protein A14 O S100 calcium-binding protein A14|S114|breast cancer membrane protein 84|protein S100-A14 20121230 -9606 57403 RAB22A - - HGNC:9764|MIM:612966|Ensembl:ENSG00000124209|HPRD:06696|Vega:OTTHUMG00000032844 20 20q13.32 RAB22A, member RAS oncogene family protein-coding RAB22A RAB22A, member RAS oncogene family O GTP-binding protein RAB22A|rab-22|ras-related protein Rab-22A 20121230 -9606 57404 CYP20A1 UNQ667/PRO1301 CYP-M HGNC:20576|Ensembl:ENSG00000119004|HPRD:07100|Vega:OTTHUMG00000132854 2 2q33.2 cytochrome P450, family 20, subfamily A, polypeptide 1 protein-coding CYP20A1 cytochrome P450, family 20, subfamily A, polypeptide 1 O cytochrome P450 20A1|cytochrome P450 monooxygenase 20121230 -9606 57405 SPC25 AD024 SPBC25|hSpc25 HGNC:24031|MIM:609395|Ensembl:ENSG00000152253|HPRD:15465|Vega:OTTHUMG00000132181 2 2q31.1 SPC25, NDC80 kinetochore complex component, homolog (S. cerevisiae) protein-coding SPC25 SPC25, NDC80 kinetochore complex component, homolog (S. cerevisiae) O 2600017H08Rik|kinetochore protein Spc25|spindle pole body component 25 homolog 20121230 -9606 57406 ABHD6 - - HGNC:21398|Ensembl:ENSG00000163686|HPRD:12407|Vega:OTTHUMG00000159150 3 3p14.3 abhydrolase domain containing 6 protein-coding ABHD6 abhydrolase domain containing 6 O 2-arachidonoylglycerol hydrolase|abhydrolase domain-containing protein 6|lipase protein|monoacylglycerol lipase ABHD6 20121230 -9606 57407 NMRAL1 - HSCARG|SDR48A1 HGNC:24987|Ensembl:ENSG00000153406|HPRD:13678|Vega:OTTHUMG00000129468 16 16p13.3 NmrA-like family domain containing 1 protein-coding NMRAL1 NmrA-like family domain containing 1 O nmrA-like family domain-containing protein 1|short chain dehydrogenase/reductase family 48A, member 1 20121230 -9606 57408 LRTM1 HT017 - HGNC:25023|Ensembl:ENSG00000144771|HPRD:13718|Vega:OTTHUMG00000158578 3 3p14.3 leucine-rich repeats and transmembrane domains 1 protein-coding LRTM1 leucine-rich repeats and transmembrane domains 1 O leucine-rich repeat and transmembrane domain-containing protein 1 20121230 -9606 57409 MIF4GD - AD023|MIFD|SLIP1 HGNC:24030|MIM:612072|Ensembl:ENSG00000125457|HPRD:10629|Vega:OTTHUMG00000179485 17 17q25.1 MIF4G domain containing protein-coding MIF4GD MIF4G domain containing O MIF4G domain-containing protein|SLBP (stem loop binding protein)-interacting protein 1|SLBP-interacting protein 1 20121230 -9606 57410 SCYL1 HT019 GKLP|NKTL|NTKL|P105|TAPK|TEIF|TRAP HGNC:14372|MIM:607982|Ensembl:ENSG00000142186|HPRD:06414|Vega:OTTHUMG00000166325 11 11q13 SCY1-like 1 (S. cerevisiae) protein-coding SCYL1 SCY1-like 1 (S. cerevisiae) O N-terminal kinase-like protein|SCY1-like protein 1|coated vesicle-associated kinase of 90 kDa|likely ortholog of mouse N-terminal kinase-like protein|telomerase regulation-associated protein|telomerase transcriptional element-interacting factor|telomerase transcriptional elements-interacting factor|teratoma-associated tyrosine kinase 20121230 -9606 57412 AS3MT RP11-753C18.6 CYT19 HGNC:17452|MIM:611806|Ensembl:ENSG00000214435|HPRD:16511|Vega:OTTHUMG00000018972 10 10q24.32 arsenic (+3 oxidation state) methyltransferase protein-coding AS3MT arsenic (+3 oxidation state) methyltransferase O S-adenosyl-L-methionine:arsenic(III) methyltransferase|S-adenosylmethionine:arsenic (III) methyltransferase|arsenite methyltransferase|methylarsonite methyltransferase|methyltransferase cyt19 20121230 -9606 57414 RHBDD2 - NPD007|RHBDL7 HGNC:23082|Ensembl:ENSG00000005486|HPRD:11492|Vega:OTTHUMG00000156435 7 7q11.23 rhomboid domain containing 2 protein-coding RHBDD2 rhomboid domain containing 2 O H_RG122E10.2a|H_RG122E10.2b|WUGSC:H_RG122E10.2a|WUGSC:H_RG122E10.2b|rhomboid domain-containing protein 2|rhomboid, veinlet-like 7 20121230 -9606 57415 C3orf14 HT021 - HGNC:25024|Ensembl:ENSG00000114405|HPRD:12819|Vega:OTTHUMG00000158704 3 3p14.2 chromosome 3 open reading frame 14 protein-coding C3orf14 chromosome 3 open reading frame 14 O uncharacterized protein C3orf14 20121230 -9606 57418 WDR18 - Ipi3|R32184_1 HGNC:17956|Ensembl:ENSG00000065268|HPRD:18296|Vega:OTTHUMG00000181903 19 19p13.3 WD repeat domain 18 protein-coding WDR18 WD repeat domain 18 O Involved in Processing ITS2 3 homolog|WD repeat-containing protein 18 20121230 -9606 57419 SLC24A3 RP1-122P22.1 NCKX3 HGNC:10977|MIM:609839|Ensembl:ENSG00000185052|HPRD:15352|Vega:OTTHUMG00000031993 20 20p13 solute carrier family 24 (sodium/potassium/calcium exchanger), member 3 protein-coding SLC24A3 solute carrier family 24 (sodium/potassium/calcium exchanger), member 3 O Na(+)/K(+)/Ca(2+)-exchange protein 3|sodium calcium exchanger|sodium/potassium/calcium exchanger 3|solute carrier family 24 member 3 20121230 -9606 57446 NDRG3 RP3-460J8.1 - HGNC:14462|MIM:605273|Ensembl:ENSG00000101079|HPRD:12007|Vega:OTTHUMG00000032398 20 20q11.21-q11.23 NDRG family member 3 protein-coding NDRG3 NDRG family member 3 O N-myc downstream-regulated gene 3 protein|protein NDRG3 20121230 -9606 57447 NDRG2 - SYLD HGNC:14460|MIM:605272|Ensembl:ENSG00000165795|HPRD:17630|Vega:OTTHUMG00000029619 14 14q11.2 NDRG family member 2 protein-coding NDRG2 NDRG family member 2 O N-myc downstream regulator 2|N-myc downstream-regulated gene 2 protein|NDR1-related protein NDR2|cytoplasmic protein Ndr1|protein NDRG2|syld709613 protein 20121230 -9606 57448 BIRC6 - APOLLON|BRUCE HGNC:13516|MIM:605638|Ensembl:ENSG00000115760|HPRD:05731|Vega:OTTHUMG00000150528 2 2p22.3 baculoviral IAP repeat containing 6 protein-coding BIRC6 baculoviral IAP repeat containing 6 O BIR repeat-containing ubiquitin-conjugating enzyme|baculoviral IAP repeat-containing 6|baculoviral IAP repeat-containing protein 6|ubiquitin-conjugating BIR domain enzyme apollon|ubiquitin-conjugating BIR-domain enzyme apollon 20121230 -9606 57449 PLEKHG5 RP4-650H14.3 DSMA4|GEF720|Syx|Tech HGNC:29105|MIM:611101|Ensembl:ENSG00000171680|HPRD:11104|Vega:OTTHUMG00000000905 1 1p36.31 pleckstrin homology domain containing, family G (with RhoGef domain) member 5 protein-coding PLEKHG5 pleckstrin homology domain containing, family G (with RhoGef domain) member 5 O NFkB activating protein|PH domain-containing family G member 5|guanine nucleotide exchange factor 720|novel PH domain-containing protein|pleckstrin homology domain containing family G member 5|pleckstrin homology domain-containing family G member 5|synectin-binding guanine exchange factor 20121230 -9606 57451 TENM2 - ODZ2|TEN-M2|TNM2 HGNC:29943|MIM:610119|Ensembl:ENSG00000145934|Vega:OTTHUMG00000162928 5 5q34 teneurin transmembrane protein 2 protein-coding TENM2 teneurin transmembrane protein 2 O neurestin alpha|odd Oz/ten-m homolog 2|odz, odd Oz/ten-m homolog 2|protein Odd Oz/ten-m homolog 2|ten-2|tenascin-M2|teneurin 2|teneurin-2 20121230 -9606 57452 GALNTL1 - GALNACT16|GALNT16 HGNC:23233|Ensembl:ENSG00000100626|HPRD:13562|Vega:OTTHUMG00000171231 14 14q24.1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 1 protein-coding GALNTL1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 1 O UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase-like protein 1|galNAc-T-like protein 1|polypeptide GalNAc transferase-like protein 1|polypeptide N-acetylgalactosaminyltransferase 16|pp-GaNTase-like protein 1|protein-UDP acetylgalactosaminyltransferase-like protein 1|putative polypeptide N-acetylgalactosaminyltransferase-like protein 1 20121230 -9606 57453 DSCAML1 - - HGNC:14656|MIM:611782|Ensembl:ENSG00000177103|HPRD:10921|Vega:OTTHUMG00000167071 11 11q23 Down syndrome cell adhesion molecule like 1 protein-coding DSCAML1 Down syndrome cell adhesion molecule like 1 O Down syndrome cell adhesion molecule-like protein 1|Downs syndrome cell adhesion molecule like 1|down syndrome cell adhesion molecule 2 20121230 -9606 57455 REXO1 - ELOABP1|EloA-BP1|REX1|TCEB3BP1 HGNC:24616|MIM:609614|Ensembl:ENSG00000079313|HPRD:15478|Vega:OTTHUMG00000179991 19 19p13.3 REX1, RNA exonuclease 1 homolog (S. cerevisiae) protein-coding REXO1 REX1, RNA exonuclease 1 homolog (S. cerevisiae) O RNA exonuclease 1 homolog|elongin A binding protein 1|elongin A-binding protein 1|elongin-A-binding protein 1|transcription elongation factor B polypeptide 3 binding protein 1|transcription elongation factor B polypeptide 3-binding protein 1 20121230 -9606 57456 KIAA1143 - - HGNC:29198|Ensembl:ENSG00000163807|HPRD:13833|Vega:OTTHUMG00000133088 3 3p21.31 KIAA1143 protein-coding KIAA1143 KIAA1143 O uncharacterized protein KIAA1143 20121230 -9606 57458 TMCC3 - - HGNC:29199|Ensembl:ENSG00000057704|HPRD:15519|Vega:OTTHUMG00000170225 12 12q22 transmembrane and coiled-coil domain family 3 protein-coding TMCC3 transmembrane and coiled-coil domain family 3 O transmembrane and coiled-coil domains 3|transmembrane and coiled-coil domains protein 3 20121230 -9606 57459 GATAD2B - P66beta|RP11-216N14.6 HGNC:30778|MIM:614998|Ensembl:ENSG00000143614|HPRD:15094|Vega:OTTHUMG00000037162 1 1q21.3 GATA zinc finger domain containing 2B protein-coding GATAD2B GATA zinc finger domain containing 2B O GATA zinc finger domain-containing protein 2B|p66/p68|transcription repressor p66 beta component of the MeCP1 complex|transcriptional repressor p66-beta 20121230 -9606 57460 PPM1H - ARHCL1|NERPP-2C|URCC2 HGNC:18583|Ensembl:ENSG00000111110|Vega:OTTHUMG00000169990 12 12q14.1 protein phosphatase, Mg2+/Mn2+ dependent, 1H protein-coding PPM1H protein phosphatase, Mg2+/Mn2+ dependent, 1H O neurite extension-related protein phosphatase related to PP2C|protein phosphatase 1H|protein phosphatase 1H (PP2C domain containing)|ras homolog gene family, member C like 1 20121230 -9606 57461 ISY1 - FSAP33 HGNC:29201|MIM:612764|Ensembl:ENSG00000240682|HPRD:13834|Vega:OTTHUMG00000137365 3 3q21.3 ISY1 splicing factor homolog (S. cerevisiae) protein-coding ISY1 ISY1 splicing factor homolog (S. cerevisiae) O functional spliceosome-associated protein 33|pre-mRNA-splicing factor ISY1 homolog 20121230 -9606 57462 KIAA1161 RP11-573M23.6 NET37 HGNC:19918|Ensembl:ENSG00000164976|HPRD:17208|Vega:OTTHUMG00000019816 9 9p13.3 KIAA1161 protein-coding KIAA1161 KIAA1161 O uncharacterized family 31 glucosidase KIAA1161 20121230 -9606 57463 AMIGO1 - AMIGO|AMIGO-1 HGNC:20824|Ensembl:ENSG00000181754|HPRD:11129|Vega:OTTHUMG00000011653 1 1p13.3 adhesion molecule with Ig-like domain 1 protein-coding AMIGO1 adhesion molecule with Ig-like domain 1 O alivin-2|amphoterin-induced gene and ORF|amphoterin-induced protein 1 20121230 -9606 57464 STRIP2 - FAM40B|FAR11B HGNC:22209|Ensembl:ENSG00000128578|HPRD:16880|Vega:OTTHUMG00000157695 7 7q32.1 striatin interacting protein 2 protein-coding STRIP2 striatin interacting protein 2 O FAR11 factor arrest 11 homolog B|family with sequence similarity 40, member B|homolog of yeast FAR11 protein 2|protein FAM40B 20121230 -9606 57465 TBC1D24 - FIME HGNC:29203|MIM:613577|Ensembl:ENSG00000162065|Vega:OTTHUMG00000177150 16 16p13.3 TBC1 domain family, member 24 protein-coding TBC1D24 TBC1 domain family, member 24 O TBC1 domain family member 24 20121230 -9606 57466 SCAF4 - SFRS15|SRA4 HGNC:19304|Ensembl:ENSG00000156304|HPRD:11551|Vega:OTTHUMG00000084903 21 21q22.1 SR-related CTD-associated factor 4 protein-coding SCAF4 SR-related CTD-associated factor 4 O CTD-binding SR-like protein rA4|SR-like CTD-associated factor 4|SR-related and CTD-associated factor 4|pre-mRNA splicing SR protein rA4|splicing factor serine alanine 15|splicing factor, arginine/serine-rich 15 20121230 -9606 57467 HHATL - C3orf3|GUP1|MBOAT3|MSTP002|OACT3 HGNC:13242|MIM:608116|Ensembl:ENSG00000010282|HPRD:12166|Vega:OTTHUMG00000133043 3 3p22.1 hedgehog acyltransferase-like protein-coding HHATL hedgehog acyltransferase-like O GUP1 glycerol uptake/transporter homolog|glycerol uptake/transporter homolog|hedgehog acyltransferase-like protein|membrane bound O-acyltransferase domain containing 3|protein-cysteine N-palmitoyltransferase HHAT-like protein 20121230 -9606 57468 SLC12A5 RP11-465L10.5 KCC2 HGNC:13818|MIM:606726|Ensembl:ENSG00000124140|HPRD:09469|Vega:OTTHUMG00000032638 20 20q13.12 solute carrier family 12 (potassium/chloride transporter), member 5 protein-coding SLC12A5 solute carrier family 12 (potassium/chloride transporter), member 5 O K-Cl cotransporter 2|electroneutral potassium-chloride cotransporter 2|erythroid K-Cl cotransporter 2|hKCC2|neuronal K-Cl cotransporter|solute carrier family 12 member 5 20121230 -9606 57469 PNMAL2 - - HGNC:29206 19 19q13.32 paraneoplastic Ma antigen family-like 2 protein-coding PNMAL2 paraneoplastic Ma antigen family-like 2 O PNMA-like 2|PNMA-like protein 2 20121230 -9606 57470 LRRC47 RP1-286D6.3 - HGNC:29207|Ensembl:ENSG00000130764|HPRD:13837|Vega:OTTHUMG00000003506 1 1p36.32 leucine rich repeat containing 47 protein-coding LRRC47 leucine rich repeat containing 47 O leucine-rich repeat-containing protein 47 20121230 -9606 57471 ERMN - JN|KIAA1189|ermin HGNC:29208|MIM:610072|Ensembl:ENSG00000136541|HPRD:13838|Vega:OTTHUMG00000153843 2 2q24.1 ermin, ERM-like protein protein-coding ERMN ermin, ERM-like protein O ermin|juxtanodin 20121230 -9606 57472 CNOT6 - CCR4 HGNC:14099|MIM:608951|Ensembl:ENSG00000113300|HPRD:12341|Vega:OTTHUMG00000130935 5 5q35.3 CCR4-NOT transcription complex, subunit 6 protein-coding CNOT6 CCR4-NOT transcription complex, subunit 6 O CCR4-NOT transcription complex subunit 6|carbon catabolite repression 4 protein|carbon catabolite repressor protein 4 homolog|cytoplasmic deadenylase 20121230 -9606 57473 ZNF512B - GM632 HGNC:29212|Ensembl:ENSG00000196700|HPRD:13840|Vega:OTTHUMG00000033008 20 20q13.33 zinc finger protein 512B protein-coding ZNF512B zinc finger protein 512B O - 20121230 -9606 57474 ZNF490 - - HGNC:23705|Ensembl:ENSG00000188033|HPRD:15802|Vega:OTTHUMG00000156398 19 19p13.2 zinc finger protein 490 protein-coding ZNF490 zinc finger protein 490 O - 20121230 -9606 57475 PLEKHH1 - - HGNC:17733|Ensembl:ENSG00000054690|HPRD:17862|Vega:OTTHUMG00000171272 14 14q24.1 pleckstrin homology domain containing, family H (with MyTH4 domain) member 1 protein-coding PLEKHH1 pleckstrin homology domain containing, family H (with MyTH4 domain) member 1 O PH domain-containing family H member 1|pleckstrin homology domain-containing family H member 1 20121230 -9606 57476 GRAMD1B UNQ3032/PRO9834 - HGNC:29214|Ensembl:ENSG00000023171|Vega:OTTHUMG00000166004 11 11q24.1 GRAM domain containing 1B protein-coding GRAMD1B GRAM domain containing 1B O GRAM domain-containing protein 1B 20121230 -9606 57477 SHROOM4 RP11-119E20.1 SHAP HGNC:29215|MIM:300579|Ensembl:ENSG00000158352|HPRD:17209|Vega:OTTHUMG00000021521 X Xp11.22 shroom family member 4 protein-coding SHROOM4 shroom family member 4 O protein Shroom4|second homolog of apical protein 20121230 -9606 57478 USP31 - - HGNC:20060|Ensembl:ENSG00000103404|HPRD:15634|Vega:OTTHUMG00000094793 16 16p12.2 ubiquitin specific peptidase 31 protein-coding USP31 ubiquitin specific peptidase 31 O deubiquitinating enzyme 31|ubiquitin carboxyl-terminal hydrolase 31|ubiquitin specific protease 31|ubiquitin specific proteinase 31|ubiquitin thioesterase 31|ubiquitin thiolesterase 31|ubiquitin-specific-processing protease 31 20121230 -9606 57479 PRR12 - KIAA1205 HGNC:29217|Ensembl:ENSG00000126464 19 19q13.33 proline rich 12 protein-coding PRR12 proline rich 12 O proline-rich protein 12 20121230 -9606 57480 PLEKHG1 RP11-25C17.1 ARHGEF41 HGNC:20884|Ensembl:ENSG00000120278|Vega:OTTHUMG00000015824 6 6q25.1 pleckstrin homology domain containing, family G (with RhoGef domain) member 1 protein-coding PLEKHG1 pleckstrin homology domain containing, family G (with RhoGef domain) member 1 O pleckstrin homology domain-containing family G member 1 20121230 -9606 57481 KIAA1210 RP13-347D8.3 - HGNC:29218|Ensembl:ENSG00000250423|Vega:OTTHUMG00000162980 X Xq24 KIAA1210 protein-coding KIAA1210 KIAA1210 O uncharacterized protein KIAA1210 20121230 -9606 57482 KIAA1211 - - HGNC:29219|Ensembl:ENSG00000109265|Vega:OTTHUMG00000160749 4 4q12 KIAA1211 protein-coding KIAA1211 KIAA1211 O uncharacterized protein KIAA1211 20121230 -9606 57484 RNF150 - - HGNC:23138|Ensembl:ENSG00000170153|HPRD:15258|Vega:OTTHUMG00000161380 4 4q31.21 ring finger protein 150 protein-coding RNF150 ring finger protein 150 O RING finger protein 150 20121230 -9606 57486 NLN - AGTBP|EP24.16|MEP|MOP HGNC:16058|MIM:611530|Ensembl:ENSG00000123213|HPRD:07495|Vega:OTTHUMG00000097803 5 5q12.3 neurolysin (metallopeptidase M3 family) protein-coding NLN neurolysin (metallopeptidase M3 family) O angiotensin binding protein|angiotensin-binding protein|endopeptidase 24.16|microsomal endopeptidase|mitochondrial oligopeptidase M|neurolysin, mitochondrial|neurotensin endopeptidase 20121230 -9606 57488 ESYT2 tcag7.562 CHR2SYT|E-Syt2|FAM62B HGNC:22211|Ensembl:ENSG00000117868|HPRD:13053|Vega:OTTHUMG00000151436 7 7q36.3 extended synaptotagmin-like protein 2 protein-coding ESYT2 extended synaptotagmin-like protein 2 O chr2 synaptotagmin|extended synaptotagmin-2|family with sequence similarity 62 (C2 domain containing), member B 20121230 -9606 57489 ODF2L - RP5-977L11.1|dJ977L11.1 HGNC:29225|Ensembl:ENSG00000122417|HPRD:11134|Vega:OTTHUMG00000010080 1 1p22.3 outer dense fiber of sperm tails 2-like protein-coding ODF2L outer dense fiber of sperm tails 2-like O outer dense fiber protein 2-like 20121230 -9606 57491 AHRR hCG_2044128 AHH|AHHR|bHLHe77 HGNC:346|MIM:606517|Ensembl:ENSG00000063438|HPRD:07356|Vega:OTTHUMG00000162171 5 5p15.3 aryl-hydrocarbon receptor repressor protein-coding AHRR aryl-hydrocarbon receptor repressor O ahR repressor|aryl hydrocarbon hydroxylase regulator|aryl hydrocarbon receptor repressor|class E basic helix-loop-helix protein 77|dioxin receptor repressor 20121230 -9606 57492 ARID1B RP11-419L10.1 6A3-5|BAF250B|BRIGHT|DAN15|ELD/OSA1|MRD12|OSA2|P250R HGNC:18040|MIM:614556|Ensembl:ENSG00000049618|HPRD:10660|Vega:OTTHUMG00000015890 6 6q25.1 AT rich interactive domain 1B (SWI1-like) protein-coding ARID1B AT rich interactive domain 1B (SWI1-like) O ARID domain-containing protein 1B|AT-rich interactive domain-containing protein 1B|BRG1-associated factor 250b|BRG1-binding protein ELD/OSA1|ELD (eyelid)/OSA protein 20121230 -9606 57493 HEG1 - HEG|MST112|MSTP112 HGNC:29227|MIM:614182|Ensembl:ENSG00000173706|Vega:OTTHUMG00000159486 3 3q21.2 HEG homolog 1 (zebrafish) protein-coding HEG1 HEG homolog 1 (zebrafish) O protein HEG homolog 1 20121230 -9606 57494 RIMKLB - FAM80B|NAAGS|NAAGS-I HGNC:29228|MIM:614054|Ensembl:ENSG00000166532|HPRD:13844|Vega:OTTHUMG00000168197 12 12p13.31 ribosomal modification protein rimK-like family member B protein-coding RIMKLB ribosomal modification protein rimK-like family member B O N-acetyl-aspartyl-glutamate synthetase B|N-acetylaspartyl-glutamate synthetase B|NAAG synthetase B|beta-citryl-glutamate synthase B|beta-citrylglutamate synthase B|family with sequence similarity 80, member B|ribosomal protein S6 modification-like protein B 20121230 -9606 57495 KIAA1239 - - HGNC:29229|Ensembl:ENSG00000174145|Vega:OTTHUMG00000157134 4 4p14 KIAA1239 protein-coding KIAA1239 KIAA1239 O leucine-rich repeat and WD repeat-containing protein KIAA1239 20121230 -9606 57496 MKL2 - MRTF-B|NPD001 HGNC:29819|MIM:609463|Ensembl:ENSG00000186260|HPRD:17577|Vega:OTTHUMG00000177379 16 16p13.12 MKL/myocardin-like 2 protein-coding MKL2 MKL/myocardin-like 2 O MKL/myocardin-like protein 2|megakaryoblastic leukemia 2|myocardin-related transcription factor B 20121230 -9606 57497 LRFN2 - FIGLER2|KIAA1246|RP11-535K1.2|SALM1 HGNC:21226|MIM:612808|Ensembl:ENSG00000156564|HPRD:17444|Vega:OTTHUMG00000014662 6 6p21.2-p21.1 leucine rich repeat and fibronectin type III domain containing 2 protein-coding LRFN2 leucine rich repeat and fibronectin type III domain containing 2 O fibronectin type III, immunoglobulin and leucine rich repeat domains 2|leucine-rich repeat and fibronectin type-III domain-containing protein 2|synaptic adhesion-like molecule 1 20121230 -9606 57498 KIDINS220 - ARMS HGNC:29508|Ensembl:ENSG00000134313|HPRD:17235|Vega:OTTHUMG00000151658 2 2p24 kinase D-interacting substrate, 220kDa protein-coding KIDINS220 kinase D-interacting substrate, 220kDa O ankyrin repeat-rich membrane spanning|ankyrin repeat-rich membrane-spanning protein|kinase D-interacting substrate of 220 kDa 20121230 -9606 57501 KIAA1257 - - HGNC:29231|Ensembl:ENSG00000114656|Vega:OTTHUMG00000159946 3 3q21.3 KIAA1257 protein-coding KIAA1257 KIAA1257 O uncharacterized protein KIAA1257 20121230 -9606 57502 NLGN4X UNQ365/PRO701 ASPGX2|AUTSX2|HLNX|HNL4X|HNLX|NLGN|NLGN4 HGNC:14287|MIM:300427|Ensembl:ENSG00000146938|HPRD:02336|Vega:OTTHUMG00000021093 X Xp22.33 neuroligin 4, X-linked protein-coding NLGN4X neuroligin 4, X-linked O neuroligin X|neuroligin-4, X-linked 20121230 -9606 57504 MTA3 hCG_1783907 - HGNC:23784|MIM:609050|Ensembl:ENSG00000057935|HPRD:12359|Vega:OTTHUMG00000150452 2 2p21 metastasis associated 1 family, member 3 protein-coding MTA3 metastasis associated 1 family, member 3 O metastasis associated family, member 3|metastasis associated gene family, member 3|metastasis-associated protein MTA3 20121230 -9606 57505 AARS2 RP11-444E17.1 AARSL|COXPD8|MT-ALARS|MTALARS HGNC:21022|MIM:612035|Ensembl:ENSG00000124608|HPRD:12397|Vega:OTTHUMG00000014766 6 6p21.1 alanyl-tRNA synthetase 2, mitochondrial protein-coding AARS2 alanyl-tRNA synthetase 2, mitochondrial O alanine tRNA ligase 2, mitochondrial (putative)|alanine--tRNA ligase, mitochondrial|alanyl-tRNA synthetase 2, mitochondrial (putative)|alanyl-tRNA synthetase like|probable alanyl-tRNA synthetase, mitochondrial 20121230 -9606 57506 MAVS - CARDIF|IPS-1|IPS1|VISA HGNC:29233|MIM:609676|Ensembl:ENSG00000088888|HPRD:13847|Vega:OTTHUMG00000031765 20 20p13 mitochondrial antiviral signaling protein protein-coding MAVS mitochondrial antiviral signaling protein O CARD adapter inducing interferon beta|CARD adaptor inducing IFN-beta|IFN-B promoter stimulator 1|interferon beta promoter stimulator protein 1|mitochondrial antiviral-signaling protein|putative NF-kappa-B-activating protein 031N|virus-induced signaling adaptor|virus-induced-signaling adapter 20121230 -9606 57507 ZNF608 - NY-REN-36 HGNC:29238|Ensembl:ENSG00000168916|HPRD:18357|Vega:OTTHUMG00000162999 5 5q23.2 zinc finger protein 608 protein-coding ZNF608 zinc finger protein 608 O renal carcinoma antigen NY-REN-36 20121230 -9606 57508 INTS2 - INT2|KIAA1287 HGNC:29241|MIM:611346|Ensembl:ENSG00000108506|HPRD:11137|Vega:OTTHUMG00000179234 17 17q23.2 integrator complex subunit 2 protein-coding INTS2 integrator complex subunit 2 O - 20121230 -9606 57509 MTUS1 - ATBP|ATIP|MP44|MTSG1 HGNC:29789|MIM:609589|Ensembl:ENSG00000129422|HPRD:11376|Vega:OTTHUMG00000163756 8 8p22 microtubule associated tumor suppressor 1 protein-coding MTUS1 microtubule associated tumor suppressor 1 O AT2 receptor-binding protein|AT2 receptor-interacting protein|AT2R binding protein|angiotensin-II type 2 receptor-interacting protein|erythroid differentiation-related|microtubule-associated tumor suppressor 1|mitochondrial tumor suppressor gene 1|transcription factor MTSG1 20121230 -9606 57510 XPO5 RP3-337H4.5 exp5 HGNC:17675|MIM:607845|Ensembl:ENSG00000124571|HPRD:06385|Vega:OTTHUMG00000014742 6 6p21.1 exportin 5 protein-coding XPO5 exportin 5 O exportin-5|ran-binding protein 21 20121230 -9606 57511 COG6 RP11-304M3.3 CDG2L|COD2 HGNC:18621|MIM:606977|Ensembl:ENSG00000133103|HPRD:08445|Vega:OTTHUMG00000016768 13 13q14.11 component of oligomeric golgi complex 6 protein-coding COG6 component of oligomeric golgi complex 6 O COG complex subunit 6|complexed with Dor1p 2|conserved oligomeric Golgi complex protein 6|conserved oligomeric Golgi complex subunit 6 20121230 -9606 57512 GPR158 - RP11-59G22.1 HGNC:23689|MIM:614573|Ensembl:ENSG00000151025|HPRD:13601|Vega:OTTHUMG00000017832 10 10p12.1 G protein-coupled receptor 158 protein-coding GPR158 G protein-coupled receptor 158 O probable G-protein coupled receptor 158 20121230 -9606 57513 CASKIN2 - ANKS5B HGNC:18200|MIM:612185|Ensembl:ENSG00000177303|HPRD:09872|Vega:OTTHUMG00000179683 17 17q25.1 CASK interacting protein 2 protein-coding CASKIN2 CASK interacting protein 2 O CASK-interacting protein 2|caskin-2 20121230 -9606 57514 ARHGAP31 - AOS1|CDGAP HGNC:29216|MIM:610911|Ensembl:ENSG00000031081|HPRD:16697|Vega:OTTHUMG00000159362 3 3q13.33 Rho GTPase activating protein 31 protein-coding ARHGAP31 Rho GTPase activating protein 31 O Cdc42 GTPase-activating protein|rho GTPase-activating protein 31 20121230 -9606 57515 SERINC1 UNQ396/PRO732 TDE1L|TDE2|TMS-2|TMS2 HGNC:13464|MIM:614548|Ensembl:ENSG00000111897|HPRD:15480|Vega:OTTHUMG00000015487 6 6q22.31 serine incorporator 1 protein-coding SERINC1 serine incorporator 1 O tumor differentially expressed 2|tumor differentially expressed protein 2 20121230 -9606 57519 STARD9 - - HGNC:19162|MIM:614642|Ensembl:ENSG00000159433|Vega:OTTHUMG00000175799 15 15q15.2 StAR-related lipid transfer (START) domain containing 9 protein-coding STARD9 StAR-related lipid transfer (START) domain containing 9 O START domain containing 9|START domain-containing protein 9|stAR-related lipid transfer protein 9 20121230 -9606 57520 HECW2 - NEDL2 HGNC:29853|Ensembl:ENSG00000138411|HPRD:17099|Vega:OTTHUMG00000154435 2 2q32.3 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 protein-coding HECW2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 O E3 ubiquitin-protein ligase HECW2|HECT, C2 and WW domain-containing protein 2|NEDD4-like E3 ubiquitin-protein ligase 2|NEDD4-related E3 ubiquitin ligase NEDL2 20121230 -9606 57521 RPTOR - KOG1|Mip1 HGNC:30287|MIM:607130|Ensembl:ENSG00000141564|HPRD:06184|Vega:OTTHUMG00000177622 17 17q25.3 regulatory associated protein of MTOR, complex 1 protein-coding RPTOR regulatory associated protein of MTOR, complex 1 O p150 target of rapamycin (TOR)-scaffold protein containing WD-repeats|raptor|regulatory-associated protein of mTOR 20121230 -9606 57522 SRGAP1 - ARHGAP13 HGNC:17382|MIM:606523|Ensembl:ENSG00000196935|HPRD:09406|Vega:OTTHUMG00000168750 12 12q14.2 SLIT-ROBO Rho GTPase activating protein 1 protein-coding SRGAP1 SLIT-ROBO Rho GTPase activating protein 1 O SLIT-ROBO Rho GTPase-activating protein 1|rho GTPase-activating protein 13 20121230 -9606 57523 NYNRIN - CGIN1|KIAA1305 HGNC:20165|Ensembl:ENSG00000205978|Vega:OTTHUMG00000171314 14 14q12 NYN domain and retroviral integrase containing protein-coding NYNRIN NYN domain and retroviral integrase containing O Cousin of GIN1|NYN domain and retroviral integrase catalytic domain-containing protein|protein NYNRIN|protein cousin of GIN1 20121230 -9606 57524 CASKIN1 - ANKS5A HGNC:20879|MIM:612184|Ensembl:ENSG00000167971|HPRD:10809|Vega:OTTHUMG00000177045 16 16p13.3 CASK interacting protein 1 protein-coding CASKIN1 CASK interacting protein 1 O CASK-interacting protein 1|caskin-1 20121230 -9606 57526 PCDH19 RP11-99E24.1 EFMR|EIEE9 HGNC:14270|MIM:300460|Ensembl:ENSG00000165194|HPRD:11843|Vega:OTTHUMG00000022000 X Xq22.1 protocadherin 19 protein-coding PCDH19 protocadherin 19 O protocadherin-19 20121230 -9606 57528 KCTD16 - - HGNC:29244|MIM:613423|Ensembl:ENSG00000183775|HPRD:17175|Vega:OTTHUMG00000163172 5 5q31.3 potassium channel tetramerisation domain containing 16 protein-coding KCTD16 potassium channel tetramerisation domain containing 16 O BTB/POZ domain-containing protein KCTD16|potassium channel tetramerization domain-containing protein 16 20121230 -9606 57529 RGAG1 - MAR9|MART9 HGNC:29245|Ensembl:ENSG00000243978|HPRD:06600|Vega:OTTHUMG00000022196 X Xq23 retrotransposon gag domain containing 1 protein-coding RGAG1 retrotransposon gag domain containing 1 O retrotransposon gag domain-containing protein 1|tumor antigen BJ-HCC-23|tumor antigen BJHCC23 20121230 -9606 57530 CGN RP11-74C1.3 - HGNC:17429|MIM:609473|Ensembl:ENSG00000143375|HPRD:10827|Vega:OTTHUMG00000012497 1 1q21 cingulin protein-coding CGN cingulin O - 20121230 -9606 57531 HACE1 - - HGNC:21033|MIM:610876|Ensembl:ENSG00000085382|HPRD:17086|Vega:OTTHUMG00000015287 6 6q16.3 HECT domain and ankyrin repeat containing E3 ubiquitin protein ligase 1 protein-coding HACE1 HECT domain and ankyrin repeat containing E3 ubiquitin protein ligase 1 O E3 ubiquitin-protein ligase HACE1|HECT domain and ankyrin repeat containing, E3 ubiquitin protein ligase 1|HECT domain and ankyrin repeat-containing E3 ubiquitin-protein ligase 1 20121230 -9606 57532 NUFIP2 PIG1 182-FIP|82-FIP|FIP-82 HGNC:17634|MIM:609356|Ensembl:ENSG00000108256|HPRD:11764|Vega:OTTHUMG00000179547 17 17q11.2 nuclear fragile X mental retardation protein interacting protein 2 protein-coding NUFIP2 nuclear fragile X mental retardation protein interacting protein 2 O 82 kDa FMRP-interacting protein|82-kD FMRP Interacting Protein|FMRP-interacting protein 2|Fragile X Mental Retardation Protein|cell proliferation-inducing gene 1 protein|nuclear fragile X mental retardation-interacting protein 2|proliferation-inducing gene 1 20121230 -9606 57533 TBC1D14 - - HGNC:29246|MIM:614855|Ensembl:ENSG00000132405|HPRD:11623|Vega:OTTHUMG00000090493 4 4p16.1 TBC1 domain family, member 14 protein-coding TBC1D14 TBC1 domain family, member 14 O TBC1 domain family member 14 20121230 -9606 57534 MIB1 - DIP-1|DIP1|MIB|ZZANK2|ZZZ6 HGNC:21086|MIM:608677|Ensembl:ENSG00000101752|HPRD:06660|Vega:OTTHUMG00000131753 18 18q11.2 mindbomb E3 ubiquitin protein ligase 1 protein-coding MIB1 mindbomb E3 ubiquitin protein ligase 1 O DAPK-interacting protein 1|E3 ubiquitin-protein ligase MIB1|mind bomb homolog 1|mindbomb homolog 1|ubiquitin ligase mind bomb|ubiquitin ligase protein MIB1|zinc finger ZZ type with ankyrin repeat domain protein 2 20121230 -9606 57535 KIAA1324 RP11-352P4.1 EIG121 HGNC:29618|MIM:611298|Ensembl:ENSG00000116299|HPRD:13850|Vega:OTTHUMG00000011725 1 1p13.3 KIAA1324 protein-coding KIAA1324 KIAA1324 O UPF0577 protein KIAA1324|estrogen induced gene 121|estrogen-induced gene 121 protein|maba1 20121230 -9606 57536 KIAA1328 - - HGNC:29248|Ensembl:ENSG00000150477|HPRD:17211|Vega:OTTHUMG00000178087 18 18q12.2 KIAA1328 protein-coding KIAA1328 KIAA1328 O hinderin|uncharacterized protein KIAA1328 20121230 -9606 57537 SORCS2 - - HGNC:16698|MIM:606284|Ensembl:ENSG00000184985|HPRD:12099|Vega:OTTHUMG00000159981 4 4p16.1 sortilin-related VPS10 domain containing receptor 2 protein-coding SORCS2 sortilin-related VPS10 domain containing receptor 2 O VPS10 domain receptor protein|VPS10 domain-containing receptor SorCS2 20121230 -9606 57538 ALPK3 - MAK|MIDORI HGNC:17574|Ensembl:ENSG00000136383|HPRD:11365|Vega:OTTHUMG00000148667 15 15q25.2 alpha-kinase 3 protein-coding ALPK3 alpha-kinase 3 O alpha-protein kinase 3|muscle alpha-kinase|muscle alpha-protein kinase|myocyte induction differentiation originator 20121230 -9606 57539 WDR35 - CED2 HGNC:29250|MIM:613602|Ensembl:ENSG00000118965|HPRD:15667|Vega:OTTHUMG00000090737 2 2p24.1 WD repeat domain 35 protein-coding WDR35 WD repeat domain 35 O WD repeat-containing protein 35|intraflagellar transport protein 121 homolog|naofen 20121230 -9606 57540 PTCHD2 hCG_24779 DISP3 HGNC:29251|MIM:611251|Ensembl:ENSG00000204624|Vega:OTTHUMG00000002074 1 1p36.22 patched domain containing 2 protein-coding PTCHD2 patched domain containing 2 O dispatched 3|patched domain-containing protein 2|protein dispatched homolog 3 20121230 -9606 57541 ZNF398 - P51|P71|ZER6 HGNC:18373|Ensembl:ENSG00000197024|HPRD:18336|Vega:OTTHUMG00000158970 7 7q36.1 zinc finger protein 398 protein-coding ZNF398 zinc finger protein 398 O zinc finger DNA binding protein ZER6|zinc finger DNA binding protein p52/p71|zinc finger DNA-binding protein p52/p71|zinc finger-estrogen receptor interaction, clone 6 20121230 -9606 57542 KLHDC5 - Ctb9 HGNC:29252|Ensembl:ENSG00000087448|HPRD:17237|Vega:OTTHUMG00000169217 12 12p11.22 kelch domain containing 5 protein-coding KLHDC5 kelch domain containing 5 O kelch domain-containing protein 5 20121230 -9606 57544 TXNDC16 - ERp90|KIAA1344 HGNC:19965|Ensembl:ENSG00000087301|HPRD:11140|Vega:OTTHUMG00000171103 14 14q22.1 thioredoxin domain containing 16 protein-coding TXNDC16 thioredoxin domain containing 16 O thioredoxin domain-containing protein 16 20121230 -9606 57545 CC2D2A - JBTS9|MKS6 HGNC:29253|MIM:612013|Ensembl:ENSG00000048342|Vega:OTTHUMG00000160255 4 4p15.32 coiled-coil and C2 domain containing 2A protein-coding CC2D2A coiled-coil and C2 domain containing 2A O coiled-coil and C2 domain-containing protein 2A 20121230 -9606 57546 PDP2 - PPM2C2 HGNC:30263|Ensembl:ENSG00000172840|HPRD:15112|Vega:OTTHUMG00000137512 16 16q22.1 pyruvate dehyrogenase phosphatase catalytic subunit 2 protein-coding PDP2 pyruvate dehyrogenase phosphatase catalytic subunit 2 O PDPC 2|[Pyruvate dehydrogenase [acetyl-transferring]]-phosphatase 2, mitochondrial|protein phosphatase 2C, magnesium-dependent, catalytic subunit 2|pyruvate dehydrogenase phosphatase catalytic subunit 2|pyruvate dehydrogenase phosphatase isoenzyme 2|pyruvate dehydrogenase phosphatase, catalytic subunit 2 20121230 -9606 57547 ZNF624 - - HGNC:29254|Ensembl:ENSG00000197566|HPRD:18359|Vega:OTTHUMG00000058996 17 17p11.2 zinc finger protein 624 protein-coding ZNF624 zinc finger protein 624 O - 20121230 -9606 57549 IGSF9 RP11-48O20.2 FP18798|IGSF9A|Nrt1 HGNC:18132|MIM:609738|Ensembl:ENSG00000085552|HPRD:10001|Vega:OTTHUMG00000022794 1 1q22-q23 immunoglobulin superfamily, member 9 protein-coding IGSF9 immunoglobulin superfamily, member 9 O immunoglobulin superfamily member 9A|protein turtle homolog A 20121230 -9606 57551 TAOK1 - KFC-B|MAP3K16|MARKK|PSK-2|PSK2|TAO1|hKFC-B|hTAOK1 HGNC:29259|MIM:610266|Ensembl:ENSG00000160551|HPRD:15467|Vega:OTTHUMG00000179718 17 17q11.2 TAO kinase 1 protein-coding TAOK1 TAO kinase 1 O MARK Kinase|STE20-like kinase PSK2|kinase from chicken homolog B|microtubule affinity regulating kinase kinase|prostate-derived STE20-like kinase 2|prostate-derived sterile 20-like kinase 2|serine/threonine protein kinase TAO1 homolog|serine/threonine-protein kinase TAO1|thousand and one amino acid protein 1|thousand and one amino acid protein kinase 1 20121230 -9606 57552 NCEH1 - AADACL1|NCEH HGNC:29260|MIM:613234|Ensembl:ENSG00000144959|HPRD:07489|Vega:OTTHUMG00000156872 3 3q26.31 neutral cholesterol ester hydrolase 1 protein-coding NCEH1 neutral cholesterol ester hydrolase 1 O arylacetamide deacetylase-like 1 20121230 -9606 57553 MICAL3 hCG_21531 MICAL-3 HGNC:24694|MIM:608882|Ensembl:ENSG00000243156|Vega:OTTHUMG00000150067 22 22q11.21 microtubule associated monoxygenase, calponin and LIM domain containing 3 protein-coding MICAL3 microtubule associated monoxygenase, calponin and LIM domain containing 3 O flavoprotein oxidoreductase MICAL3|molecule interacting with CasL protein 3|protein MICAL-3|protein-methionine sulfoxide oxidase MICAL3 20121230 -9606 57554 LRRC7 - DENSIN HGNC:18531|MIM:614453|Ensembl:ENSG00000033122|HPRD:09930|Vega:OTTHUMG00000059194 1 1p31.1 leucine rich repeat containing 7 protein-coding LRRC7 leucine rich repeat containing 7 O densin-180|leucine-rich repeat-containing protein 7 20121230 -9606 57555 NLGN2 - - HGNC:14290|MIM:606479|Ensembl:ENSG00000169992|HPRD:07348|Vega:OTTHUMG00000108138 17 17p13.1 neuroligin 2 protein-coding NLGN2 neuroligin 2 O neuroligin-2 20121230 -9606 57556 SEMA6A - HT018|SEMA|SEMA6A1|SEMAQ|VIA HGNC:10738|MIM:605885|Ensembl:ENSG00000092421|HPRD:06906|Vega:OTTHUMG00000162987 5 5q23.1 sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6A protein-coding SEMA6A sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6A O SEMA6A-1|sema VIa|semaphorin 6A-1|semaphorin VIA|semaphorin-6A|semaphorin-6A-1 20121230 -9606 57558 USP35 - - HGNC:20061|Ensembl:ENSG00000118369|Vega:OTTHUMG00000166492 11 11q14.1 ubiquitin specific peptidase 35 protein-coding USP35 ubiquitin specific peptidase 35 O deubiquitinating enzyme 35|ubiquitin carboxyl-terminal hydrolase 35|ubiquitin specific protease 35|ubiquitin thioesterase 35|ubiquitin thiolesterase 35|ubiquitin-specific-processing protease 35 20121230 -9606 57559 STAMBPL1 - ALMalpha|AMSH-FP|AMSH-LP|bA399O19.2 HGNC:24105|MIM:612352|Ensembl:ENSG00000138134|HPRD:16486|Vega:OTTHUMG00000018702 10 10q23.31 STAM binding protein-like 1 protein-coding STAMBPL1 STAM binding protein-like 1 O AMSH-like protease|associated molecule with the SH3 domain of STAM (AMSH) - Family Protein|associated molecule with the SH3 domain of STAM (AMSH) like protein 20121230 -9606 57560 IFT80 - ATD2|WDR56 HGNC:29262|MIM:611177|Ensembl:ENSG00000068885|Ensembl:ENSG00000248710|HPRD:13853|Vega:OTTHUMG00000158953|Vega:OTTHUMG00000162252 3 3q25.33 intraflagellar transport 80 homolog (Chlamydomonas) protein-coding IFT80 intraflagellar transport 80 homolog (Chlamydomonas) O WD repeat domain 56|WD repeat-containing protein 56|intraflagellar transport protein 80 homolog 20121230 -9606 57561 ARRDC3 - TLIMP HGNC:29263|MIM:612464|Ensembl:ENSG00000113369|HPRD:09810|Vega:OTTHUMG00000162616 5 5q14.3 arrestin domain containing 3 protein-coding ARRDC3 arrestin domain containing 3 O TBP-2-like inducible membrane protein|arrestin domain-containing protein 3|thioredoxin-binding protein-2-like inducible membrane 20121230 -9606 57562 KIAA1377 - - HGNC:29264|MIM:614634|Ensembl:ENSG00000110318|HPRD:17212|Vega:OTTHUMG00000167319 11 11q22.1 KIAA1377 protein-coding KIAA1377 KIAA1377 O uncharacterized protein KIAA1377 20121230 -9606 57563 KLHL8 - - HGNC:18644|MIM:611967|Ensembl:ENSG00000145332|HPRD:13928|Vega:OTTHUMG00000130593 4 4q22.1 kelch-like 8 (Drosophila) protein-coding KLHL8 kelch-like 8 (Drosophila) O kelch-like protein 8 20121230 -9606 57565 KLHL14 - - HGNC:29266|MIM:613772|Ensembl:ENSG00000197705|HPRD:17238|Vega:OTTHUMG00000179819 18 18q12.1 kelch-like 14 (Drosophila) protein-coding KLHL14 kelch-like 14 (Drosophila) O kelch-like protein 14|printor|protein interactor of Torsin-1A|protein interactor of torsinA 20121230 -9606 57567 ZNF319 - ZFP319 HGNC:13644|Ensembl:ENSG00000166188|HPRD:18326|Vega:OTTHUMG00000175512 16 16q21 zinc finger protein 319 protein-coding ZNF319 zinc finger protein 319 O - 20121230 -9606 57568 SIPA1L2 - SPAL2 HGNC:23800|MIM:611609|Ensembl:ENSG00000116991|HPRD:15346|Vega:OTTHUMG00000037820 1 1q42.2 signal-induced proliferation-associated 1 like 2 protein-coding SIPA1L2 signal-induced proliferation-associated 1 like 2 O SIPA1-like protein 2|SPA-1-like 2|signal-induced proliferation-associated 1-like protein 2 20121230 -9606 57569 ARHGAP20 - RARHOGAP HGNC:18357|MIM:609568|Ensembl:ENSG00000137727|HPRD:10657|Vega:OTTHUMG00000166590 11 11q23.1 Rho GTPase activating protein 20 protein-coding ARHGAP20 Rho GTPase activating protein 20 O RA and RhoGAP domain containing protein|rho GTPase activating protein 20 variant 2|rho GTPase-activating protein 20|rho-type GTPase-activating protein 20 20121230 -9606 57570 TRMT5 - KIAA1393|TRM5 HGNC:23141|MIM:611023|Ensembl:ENSG00000126814|HPRD:17213|Vega:OTTHUMG00000171294 14 14q23.1 tRNA methyltransferase 5 homolog (S. cerevisiae) protein-coding TRMT5 tRNA methyltransferase 5 homolog (S. cerevisiae) O M1G-methyltransferase|TRM5 tRNA methyltransferase 5 homolog|tRNA (guanine(37)-N1)-methyltransferase|tRNA (guanine-N(1)-)-methyltransferase|tRNA [GM37] methyltransferase|tRNA-N1G37 methyltransferase 20121230 -9606 57571 CARNS1 - ATPGD1 HGNC:29268|MIM:613368|Ensembl:ENSG00000172508|Vega:OTTHUMG00000167672 11 11q13.2 carnosine synthase 1 protein-coding CARNS1 carnosine synthase 1 O ATP-grasp domain containing 1|ATP-grasp domain-containing protein 1 20121230 -9606 57572 DOCK6 - AOS2|ZIR1 HGNC:19189|MIM:614194|Ensembl:ENSG00000130158|HPRD:13243|Vega:OTTHUMG00000180826 19 19p13.2 dedicator of cytokinesis 6 protein-coding DOCK6 dedicator of cytokinesis 6 O dedicator of cytokinesis protein 6 20121230 -9606 57573 ZNF471 - ERP1|Z1971 HGNC:23226|Ensembl:ENSG00000196263|HPRD:15797|Vega:OTTHUMG00000181943 19 19q13.43 zinc finger protein 471 protein-coding ZNF471 zinc finger protein 471 O EZFIT-related protein 1 20121230 -9606 57574 MARCH4 - MARCH-IV|RNF174 HGNC:29269|MIM:608208|Ensembl:ENSG00000144583|HPRD:16299|Vega:OTTHUMG00000154824 2 2q35 membrane-associated ring finger (C3HC4) 4, E3 ubiquitin protein ligase protein-coding MARCH4 membrane-associated ring finger (C3HC4) 4, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase MARCH4|RING finger protein 174|membrane-associated RING finger protein 4|membrane-associated RING-CH protein IV 20121230 -9606 57575 PCDH10 - OL-PCDH|PCDH19 HGNC:13404|MIM:608286|Ensembl:ENSG00000138650|HPRD:12204|Vega:OTTHUMG00000161301 4 4q28.3 protocadherin 10 protein-coding PCDH10 protocadherin 10 O ortholog of OL-pcdh|protocadherin-10 20121230 -9606 57576 KIF17 RP11-401M16.8 KIF17B|KIF3X|KLP-2|OSM-3 HGNC:19167|MIM:605037|Ensembl:ENSG00000117245|HPRD:10388|Vega:OTTHUMG00000002863 1 1p36.12 kinesin family member 17 protein-coding KIF17 kinesin family member 17 O KIF17 variant protein|KIF3-related motor protein|kinesin-like protein KIF17 20121230 -9606 57577 KIAA1407 - - HGNC:29272|Ensembl:ENSG00000163617|HPRD:13856|Vega:OTTHUMG00000159337 3 3q13.31 KIAA1407 protein-coding KIAA1407 KIAA1407 O coiled-coil domain-containing protein KIAA1407 20121230 -9606 57578 UNC79 - KIAA1409 HGNC:19966|Ensembl:ENSG00000133958|HPRD:11143|Vega:OTTHUMG00000029783 14 14q32.12 unc-79 homolog (C. elegans) protein-coding UNC79 unc-79 homolog (C. elegans) O protein unc-79 homolog 20121230 -9606 57579 FAM135A RP1-198I9.1 KIAA1411 HGNC:21084|Ensembl:ENSG00000082269|HPRD:11144|Vega:OTTHUMG00000014991 6 6q13 family with sequence similarity 135, member A protein-coding FAM135A family with sequence similarity 135, member A O protein FAM135A 20121230 -9606 57580 PREX1 - P-REX1 HGNC:32594|MIM:606905|Ensembl:ENSG00000124126|HPRD:06066|Vega:OTTHUMG00000032685 20 20q13.13 phosphatidylinositol-3,4,5-trisphosphate-dependent Rac exchange factor 1 protein-coding PREX1 phosphatidylinositol-3,4,5-trisphosphate-dependent Rac exchange factor 1 O phosphatidylinositol 3,4,5-trisphosphate-dependent Rac exchanger 1 protein|ptdIns(3,4,5)-dependent Rac exchanger 1 20121230 -9606 57582 KCNT1 RP11-100C15.1 EIEE14|KCa4.1|SLACK|bA100C15.2 HGNC:18865|MIM:608167|Ensembl:ENSG00000107147|Vega:OTTHUMG00000020917 9 9q34.3 potassium channel, subfamily T, member 1 protein-coding KCNT1 potassium channel, subfamily T, member 1 O potassium channel subfamily T member 1 20121230 -9606 57583 TMEM181 - GPR178|KIAA1423 HGNC:20958|MIM:613209|Ensembl:ENSG00000146433|Vega:OTTHUMG00000015913 6 6q25.3 transmembrane protein 181 protein-coding TMEM181 transmembrane protein 181 O G protein-coupled receptor 178 20121230 -9606 57584 ARHGAP21 RP11-324E23.2 ARHGAP10 HGNC:23725|MIM:609870|Ensembl:ENSG00000107863|HPRD:06445|Vega:OTTHUMG00000017825 10 10p12.1|10p12.3 Rho GTPase activating protein 21 protein-coding ARHGAP21 Rho GTPase activating protein 21 O Rho-GTPase activating protein 10|rho GTPase-activating protein 10|rho GTPase-activating protein 21|rho-type GTPase-activating protein 21 20121230 -9606 57585 CRAMP1L LA16c-431H6.2 HN1L|TCE4 HGNC:14122|Ensembl:ENSG00000007545|HPRD:13092|Vega:OTTHUMG00000074087 16 16p13.3 Crm, cramped-like (Drosophila) protein-coding CRAMP1L Crm, cramped-like (Drosophila) O T-complex expressed gene 4|hematological and neurological expressed 1-like protein|protein cramped-like 20121230 -9606 57586 SYT13 - - HGNC:14962|MIM:607716|Ensembl:ENSG00000019505|HPRD:12128|Vega:OTTHUMG00000166504 11 11p12-p11 synaptotagmin XIII protein-coding SYT13 synaptotagmin XIII O synaptotagmin-13|sytXIII 20121230 -9606 57587 KIAA1430 - - HGNC:29276|Ensembl:ENSG00000164323|Vega:OTTHUMG00000160468 4 4q35.1 KIAA1430 protein-coding KIAA1430 KIAA1430 O UPF0501 protein KIAA1430 20121230 -9606 57589 KIAA1432 - CIP150|bA207C16.1 HGNC:17686|MIM:610354|Ensembl:ENSG00000107036|HPRD:13858|Vega:OTTHUMG00000019505 9 9p24.1 KIAA1432 protein-coding KIAA1432 KIAA1432 O connexin 43-interacting protein 150 kDa|connexin-43-interacting protein of 150 kDa|protein RIC1 homolog 20121230 -9606 57590 WDFY1 - FENS-1|WDF1|ZFYVE17 HGNC:20451|Ensembl:ENSG00000085449|HPRD:15663|Vega:OTTHUMG00000153370 2 2q36.1 WD repeat and FYVE domain containing 1 protein-coding WDFY1 WD repeat and FYVE domain containing 1 O WD repeat and FYVE domain-containing protein 1|WD40 and FYVE domain containing 1|WD40- and FYVE domain-containing protein 1|phosphoinositide-binding protein 1|phosphoinositide-binding protein SR1|zinc finger FYVE domain-containing protein 17 20121230 -9606 57591 MKL1 RP5-1042K10.11-009 BSAC|MAL|MRTF-A HGNC:14334|MIM:606078|Ensembl:ENSG00000196588|HPRD:10445|Vega:OTTHUMG00000151146 22 22q13 megakaryoblastic leukemia (translocation) 1 protein-coding MKL1 megakaryoblastic leukemia (translocation) 1 O MKL/myocardin-like protein 1|RNA-binding motif protein 15/megakaryoblastic leukemia-1 fusion protein|basic, SAP and coiled-coil domain|megakaryoblastic leukemia 1 protein|megakaryocytic acute leukemia protein|myocardin-related transcription factor A 20121230 -9606 57592 ZNF687 RP11-126K1.3 - HGNC:29277|MIM:610568|Ensembl:ENSG00000143373|HPRD:13859|Vega:OTTHUMG00000012347 1 1q21.3 zinc finger protein 687 protein-coding ZNF687 zinc finger protein 687 O - 20121230 -9606 57593 EBF4 RP5-860F19.3 COE4|O/E-4 HGNC:29278|MIM:609935|Ensembl:ENSG00000088881|Vega:OTTHUMG00000031709 20 20p13 early B-cell factor 4 protein-coding EBF4 early B-cell factor 4 O EBF-4|OE-4|olf-1/EBF-like 4|transcription factor COE4 20121230 -9606 57594 HOMEZ - KIAA1443 HGNC:20164|MIM:608119|Ensembl:ENSG00000215271|HPRD:12167|Vega:OTTHUMG00000172122 14 14q11.2 homeobox and leucine zipper encoding protein-coding HOMEZ homeobox and leucine zipper encoding O homeobox and leucine zipper protein Homez|homeodomain leucine zipper-containing factor 20121230 -9606 57595 PDZD4 - LU1|PDZK4|PDZRN4L HGNC:21167|MIM:300634|Ensembl:ENSG00000067840|HPRD:06601|Vega:OTTHUMG00000024209 X Xq28 PDZ domain containing 4 protein-coding PDZD4 PDZ domain containing 4 O PDZ domain-containing RING finger protein 4-like protein|PDZ domain-containing protein 4 20121230 -9606 57596 BEGAIN - - HGNC:24163|Ensembl:ENSG00000183092|HPRD:06459|Vega:OTTHUMG00000171589 14 14q32.2 brain-enriched guanylate kinase-associated protein-coding BEGAIN brain-enriched guanylate kinase-associated O brain-enriched guanylate kinase-associated homolog|brain-enriched guanylate kinase-associated protein 20121230 -9606 57597 BAHCC1 - BAHD2 HGNC:29279|Ensembl:ENSG00000171282|Vega:OTTHUMG00000177953 17 17q25.3 BAH domain and coiled-coil containing 1 protein-coding BAHCC1 BAH domain and coiled-coil containing 1 O BAH and coiled-coil domain-containing protein 1|BAH domain-containing protein 2|bromo adjacent homology domain-containing protein 2 20121230 -9606 57599 WDR48 - P80|UAF1 HGNC:30914|MIM:612167|Ensembl:ENSG00000114742|HPRD:11146|Vega:OTTHUMG00000155972 3 3p21.33 WD repeat domain 48 protein-coding WDR48 WD repeat domain 48 O USP1 associated factor 1|USP1-associated factor 1|WD repeat endosomal protein|WD repeat-containing protein 48 20121230 -9606 57600 FNIP2 - FNIPL|MAPO1 HGNC:29280|MIM:612768|Ensembl:ENSG00000052795|Vega:OTTHUMG00000161983 4 4q32.1 folliculin interacting protein 2 protein-coding FNIP2 folliculin interacting protein 2 O FNIP1-like protein|O6-methylguanine-induced apoptosis 1 protein|folliculin-interacting protein 2 20121230 -9606 57602 USP36 - DUB1 HGNC:20062|MIM:612543|Ensembl:ENSG00000055483|HPRD:07164|Vega:OTTHUMG00000177542 17 17q25.3 ubiquitin specific peptidase 36 protein-coding USP36 ubiquitin specific peptidase 36 O deubiquitinating enzyme 1|deubiquitinating enzyme 36|ubiquitin carboxyl-terminal hydrolase 36|ubiquitin specific protease 36|ubiquitin thioesterase 36|ubiquitin thiolesterase 36|ubiquitin-specific-processing protease 36 20121230 -9606 57604 KIAA1456 - C8orf79 HGNC:26725|Ensembl:ENSG00000250305|HPRD:13862|Vega:OTTHUMG00000165477 8 8p22 KIAA1456 protein-coding KIAA1456 KIAA1456 O putative methyltransferase KIAA1456 20121230 -9606 57605 PITPNM2 - NIR-3|NIR3|RDGB2|RDGBA2 HGNC:21044|MIM:608920|Ensembl:ENSG00000090975|HPRD:08335|Vega:OTTHUMG00000168845 12 12q24.31 phosphatidylinositol transfer protein, membrane-associated 2 protein-coding PITPNM2 phosphatidylinositol transfer protein, membrane-associated 2 O PITPnm 2|PYK2 N-terminal domain-interacting receptor 3|membrane-associated phosphatidylinositol transfer protein 2|retinal degeneration B alpha 2 20121230 -9606 57606 SLAIN2 - KIAA1458 HGNC:29282|MIM:610492|Ensembl:ENSG00000109171|Vega:OTTHUMG00000161701 4 4p11 SLAIN motif family, member 2 protein-coding SLAIN2 SLAIN motif family, member 2 O SLAIN motif-containing protein 2 20121230 -9606 57608 KIAA1462 - JCAD HGNC:29283|MIM:614398|Ensembl:ENSG00000165757|Vega:OTTHUMG00000017885 10 10p11.23 KIAA1462 protein-coding KIAA1462 KIAA1462 O junctional protein associated with coronary artery disease 20121230 -9606 57609 DIP2B - - HGNC:29284|MIM:611379|Ensembl:ENSG00000066084|HPRD:08751|HPRD:11148|Vega:OTTHUMG00000169475 12 12q13.12 DIP2 disco-interacting protein 2 homolog B (Drosophila) protein-coding DIP2B DIP2 disco-interacting protein 2 homolog B (Drosophila) O disco-interacting protein 2 homolog B 20121230 -9606 57610 RANBP10 - - HGNC:29285|MIM:614031|Ensembl:ENSG00000141084|HPRD:15207 16 16q22.1 RAN binding protein 10 protein-coding RANBP10 RAN binding protein 10 O ran-binding protein 10 20121230 -9606 57611 ISLR2 UNQ1885/PRO4329 LINX HGNC:29286|MIM:614179|Ensembl:ENSG00000167178|HPRD:13865|Vega:OTTHUMG00000137624 15 15q24.1 immunoglobulin superfamily containing leucine-rich repeat 2 protein-coding ISLR2 immunoglobulin superfamily containing leucine-rich repeat 2 O immunoglobulin superfamily containing leucine-rich repeat protein 2|leucine-rich repeat domain and immunoglobulin domain-containing axon extension protein 20121230 -9606 57612 ERV3-2 - - HGNC:22218 7 7q33 endogenous retrovirus group 3, member 2 unknown ERV3-2 endogenous retrovirus group 3, member 2 O - 20120710 -9606 57613 KIAA1467 - - HGNC:29288|Ensembl:ENSG00000084444|HPRD:11149|Vega:OTTHUMG00000168774 12 12p13.1 KIAA1467 protein-coding KIAA1467 KIAA1467 O uncharacterized protein KIAA1467 20121230 -9606 57614 KIAA1468 - HsT3308|HsT885 HGNC:29289|Ensembl:ENSG00000134444|HPRD:13866|Vega:OTTHUMG00000132780 18 18q21.33 KIAA1468 protein-coding KIAA1468 KIAA1468 O lisH domain and HEAT repeat-containing protein KIAA1468 20121230 -9606 57615 ZNF492 - ZNF115 HGNC:23707|Ensembl:ENSG00000229676 19 19p12 zinc finger protein 492 protein-coding ZNF492 zinc finger protein 492 O zinc finger protein 115 (Y20) 20121230 -9606 57616 TSHZ3 - TSH3|ZNF537 HGNC:30700|MIM:614119|Ensembl:ENSG00000121297|HPRD:18351|Vega:OTTHUMG00000150184 19 19q12 teashirt zinc finger homeobox 3 protein-coding TSHZ3 teashirt zinc finger homeobox 3 O teashirt 3|teashirt family zinc finger 3|teashirt homolog 3|zinc finger protein 537 20121230 -9606 57617 VPS18 - PEP3 HGNC:15972|MIM:608551|Ensembl:ENSG00000104142|HPRD:09776|Vega:OTTHUMG00000130135 15 15q14-q15 vacuolar protein sorting 18 homolog (S. cerevisiae) protein-coding VPS18 vacuolar protein sorting 18 homolog (S. cerevisiae) O hVPS18|vacuolar protein sorting protein 18|vacuolar protein sorting-associated protein 18 homolog 20121230 -9606 57619 SHROOM3 MSTP013 APXL3|SHRM|ShrmL HGNC:30422|MIM:604570|Ensembl:ENSG00000138771|HPRD:07053|Vega:OTTHUMG00000157075 4 4q21.1 shroom family member 3 protein-coding SHROOM3 shroom family member 3 O F-actin-binding protein|protein Shroom3|shroom-related protein 20121230 -9606 57620 STIM2 - - HGNC:19205|MIM:610841|Ensembl:ENSG00000109689|HPRD:11609|Vega:OTTHUMG00000097805 4 4p15.2 stromal interaction molecule 2 protein-coding STIM2 stromal interaction molecule 2 O - 20121230 -9606 57621 ZBTB2 - ZNF437 HGNC:20868|Ensembl:ENSG00000181472|HPRD:10314|Vega:OTTHUMG00000015834 6 6q25.1 zinc finger and BTB domain containing 2 protein-coding ZBTB2 zinc finger and BTB domain containing 2 O zinc finger and BTB domain-containing protein 2 20121230 -9606 57622 LRFN1 - SALM2 HGNC:29290|MIM:612807|Ensembl:ENSG00000128011 19 19q13.2 leucine rich repeat and fibronectin type III domain containing 1 protein-coding LRFN1 leucine rich repeat and fibronectin type III domain containing 1 O leucine-rich repeat and fibronectin type III domain-containing protein 1|synaptic adhesion-like molecule 2 20121230 -9606 57623 ZFAT - AITD3|ZFAT1|ZNF406 HGNC:19899|MIM:610931|Ensembl:ENSG00000066827|HPRD:11712|Vega:OTTHUMG00000164321 8 8q24.22 zinc finger and AT hook domain containing protein-coding ZFAT zinc finger and AT hook domain containing O zinc finger gene in autoimmune thyroid disease|zinc finger protein 406|zinc finger protein ZFAT|zinc-finger gene in AITD susceptibility region 20121230 -9606 57624 NYAP2 - KIAA1486 HGNC:29291|Ensembl:ENSG00000144460|Vega:OTTHUMG00000153450 2 2q36.3 neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adaptor 2 protein-coding NYAP2 neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adaptor 2 O neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adapter 2 20121230 -9606 57626 KLHL1 RP11-394C23.1 MRP2 HGNC:6352|MIM:605332|Ensembl:ENSG00000150361|HPRD:05623|Vega:OTTHUMG00000017056 13 13q21 kelch-like 1 (Drosophila) protein-coding KLHL1 kelch-like 1 (Drosophila) O Mayven-related protein 2|kelch-like protein 1 20121230 -9606 57628 DPP10 - DPL2|DPPY|DPRP3 HGNC:20823|MIM:608209|Ensembl:ENSG00000175497|HPRD:07083|Vega:OTTHUMG00000153294 2 2q14.1 dipeptidyl-peptidase 10 (non-functional) protein-coding DPP10 dipeptidyl-peptidase 10 (non-functional) O DPP X|DPRP-3|dipeptidyl peptidase 10|dipeptidyl peptidase IV-related protein 3|dipeptidyl peptidase X|dipeptidyl peptidase like protein 2|dipeptidyl peptidase-like protein 2|inactive dipeptidyl peptidase 10 20121230 -9606 57630 SH3RF1 - POSH|RNF142|SH3MD2 HGNC:17650|Ensembl:ENSG00000154447|HPRD:15335|Vega:OTTHUMG00000161010 4 4q32.3 SH3 domain containing ring finger 1 protein-coding SH3RF1 SH3 domain containing ring finger 1 O E3 ubiquitin-protein ligase SH3RF1|SH3 domain-containing RING finger protein 1|SH3 multiple domains 2|SH3 multiple domains protein 2|plenty of SH3 domains|plenty of SH3s|putative E3 ubiquitin-protein ligase SH3RF1|ring finger protein 142 20121230 -9606 57631 LRCH2 RP6-204F4.4 dA204F4.4 HGNC:29292|Ensembl:ENSG00000130224|HPRD:06602|Vega:OTTHUMG00000022233 X Xq23 leucine-rich repeats and calponin homology (CH) domain containing 2 protein-coding LRCH2 leucine-rich repeats and calponin homology (CH) domain containing 2 O leucine-rich repeat and calponin homology domain-containing protein 2 20121230 -9606 57633 LRRN1 Nbla10449 FIGLER3|NLRR-1 HGNC:20980|Ensembl:ENSG00000175928|HPRD:14320|Vega:OTTHUMG00000154934 3 3p26.2 leucine rich repeat neuronal 1 protein-coding LRRN1 leucine rich repeat neuronal 1 O fibronectin type III, immunoglobulin and leucine rich repeat domains 3|leucine-rich repeat neuronal protein 1|neuronal leucine-rich repeat protein 1 20121230 -9606 57634 EP400 - CAGH32|P400|TNRC12 HGNC:11958|MIM:606265|Ensembl:ENSG00000183495|HPRD:09378|Vega:OTTHUMG00000150175 12 12q24.33 E1A binding protein p400 protein-coding EP400 E1A binding protein p400 O CAG repeat protein 32|E1A-binding protein p400|domino homolog|hDomino|p400 SWI2/SNF2-related protein|p400 kDa SWI2/SNF2-related protein|trinucleotide repeat containing 12|trinucleotide repeat-containing gene 12 protein 20121230 -9606 57636 ARHGAP23 - - HGNC:29293|MIM:610590|Ensembl:ENSG00000225485|Vega:OTTHUMG00000170040 17 17q12 Rho GTPase activating protein 23 protein-coding ARHGAP23 Rho GTPase activating protein 23 O rho GTPase-activating protein 23|rho-type GTPase-activating protein 23 20121230 -9606 57639 CCDC146 - - HGNC:29296|Ensembl:ENSG00000135205|HPRD:11150|Vega:OTTHUMG00000162595 7 7q11.23 coiled-coil domain containing 146 protein-coding CCDC146 coiled-coil domain containing 146 O coiled-coil domain-containing protein 146 20121230 -9606 57642 COL20A1 RP11-261N11.13-004 bA261N11.4 HGNC:14670|Ensembl:ENSG00000101203|HPRD:17215|Vega:OTTHUMG00000032964 20 20q13.33 collagen, type XX, alpha 1 protein-coding COL20A1 collagen, type XX, alpha 1 O collagen alpha-1(XX) chain|collagen-like protein 20121230 -9606 57643 ZSWIM5 RP11-69J16.3 - HGNC:29299|Ensembl:ENSG00000162415|Vega:OTTHUMG00000008950 1 1p34.1 zinc finger, SWIM-type containing 5 protein-coding ZSWIM5 zinc finger, SWIM-type containing 5 O zinc finger SWIM domain-containing protein 5|zinc finger, SWIM domain containing 5 20121230 -9606 57644 MYH7B RP4-756N5.1 MHC14|MYH14 HGNC:15906|MIM:609928|Ensembl:ENSG00000078814|HPRD:11379|Vega:OTTHUMG00000032320 20 20q11.22 myosin, heavy chain 7B, cardiac muscle, beta protein-coding MYH7B myosin, heavy chain 7B, cardiac muscle, beta O U937-associated antigen|antigen MLAA-21|myosin heavy chain 7B, cardiac muscle beta isoform|myosin, heavy polypeptide 7B, cardiac muscle, beta|myosin-7B|slow A MYH14 20121230 -9606 57645 POGK LST003 BASS2|KRBOX2 HGNC:18800|Ensembl:ENSG00000143157|HPRD:17872|Vega:OTTHUMG00000034325 1 1q24.1 pogo transposable element with KRAB domain protein-coding POGK pogo transposable element with KRAB domain O KRAB box domain containing 2 20121230 -9606 57646 USP28 - - HGNC:12625|MIM:610748|Ensembl:ENSG00000048028|HPRD:15632|Vega:OTTHUMG00000168205 11 11q23 ubiquitin specific peptidase 28 protein-coding USP28 ubiquitin specific peptidase 28 O deubiquitinating enzyme 28|ubiquitin carboxyl-terminal hydrolase 28|ubiquitin specific protease 28|ubiquitin thioesterase 28|ubiquitin thiolesterase 28|ubiquitin-specific-processing protease 28 20121230 -9606 57647 DHX37 - DDX37 HGNC:17210|Ensembl:ENSG00000150990|HPRD:10883|Vega:OTTHUMG00000168547 12 12q24.31 DEAH (Asp-Glu-Ala-His) box polypeptide 37 protein-coding DHX37 DEAH (Asp-Glu-Ala-His) box polypeptide 37 O DEAD/DEAH box helicase DDX37|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 37|DEAH box protein 37|probable ATP-dependent RNA helicase DHX37 20121230 -9606 57648 KIAA1522 - - HGNC:29301|Ensembl:ENSG00000162522|Vega:OTTHUMG00000008088 1 1p35.1 KIAA1522 protein-coding KIAA1522 KIAA1522 O uncharacterized protein KIAA1522 20121230 -9606 57649 PHF12 - PF1 HGNC:20816|Ensembl:ENSG00000109118|HPRD:15123|Vega:OTTHUMG00000132676 17 17q11.2 PHD finger protein 12 protein-coding PHF12 PHD finger protein 12 O PHD factor 1|PHD zinc finger transcription factor 20121230 -9606 57650 KIAA1524 - CIP2A|p90 HGNC:29302|MIM:610643|Ensembl:ENSG00000163507|HPRD:11151|Vega:OTTHUMG00000159233 3 3q13.13 KIAA1524 protein-coding KIAA1524 KIAA1524 O cancerous inhibitor of PP2A|p90 autoantigen|protein CIP2A 20121230 -9606 57653 LOC100499484-C9ORF174 - - HPRD:11152 9 9q22.33 LOC100499484-C9orf174 readthrough miscRNA - - - - 20121230 -9606 57654 UVSSA - KIAA1530|UVSS3 HGNC:29304|MIM:614632|Ensembl:ENSG00000163945|HPRD:17216|Vega:OTTHUMG00000160167 4 4p16.3 UV-stimulated scaffold protein A protein-coding UVSSA UV-stimulated scaffold protein A O - 20121230 -9606 57655 GRAMD1A - KIAA1533 HGNC:29305|Ensembl:ENSG00000089351|HPRD:11153 19 19q13.13 GRAM domain containing 1A protein-coding GRAMD1A GRAM domain containing 1A O GRAM domain-containing protein 1A 20121230 -9606 57657 HCN3 - - HGNC:19183|MIM:609973|Ensembl:ENSG00000143630|HPRD:17093|Vega:OTTHUMG00000035872 1 1q22 hyperpolarization activated cyclic nucleotide-gated potassium channel 3 protein-coding HCN3 hyperpolarization activated cyclic nucleotide-gated potassium channel 3 O potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 3 20121230 -9606 57658 CALCOCO1 PP13275 Cocoa|calphoglin HGNC:29306|Ensembl:ENSG00000012822|HPRD:13868|Vega:OTTHUMG00000170095 12 12q13.13 calcium binding and coiled-coil domain 1 protein-coding CALCOCO1 calcium binding and coiled-coil domain 1 O calcium-binding and coiled-coil domain-containing protein 1|coiled-coil coactivator protein|coiled-coil leucine zipper coactivator 1|inorganic pyrophosphatase activator|sarcoma antigen NY-SAR-3 20121230 -9606 57659 ZBTB4 - KAISO-L1|ZNF903 HGNC:23847|MIM:612308|Ensembl:ENSG00000174282|HPRD:11693|Vega:OTTHUMG00000108137 17 17p13.1 zinc finger and BTB domain containing 4 protein-coding ZBTB4 zinc finger and BTB domain containing 4 O KAISO-like zinc finger protein 1|zinc finger and BTB domain-containing protein 4 20121230 -9606 57661 PHRF1 - RNF221 HGNC:24351|MIM:611780|Ensembl:ENSG00000070047|HPRD:13870|Vega:OTTHUMG00000165141 11 11p15.5 PHD and ring finger domains 1 protein-coding PHRF1 PHD and ring finger domains 1 O CTD binding SR like protein rA9|CTD-binding SR-like protein rA9|PHD and RING finger domain-containing protein 1 20121230 -9606 57662 CAMSAP3 - KIAA1543|NEZHA HGNC:29307|MIM:612685|Ensembl:ENSG00000076826 19 19p13.2 calmodulin regulated spectrin-associated protein family, member 3 protein-coding CAMSAP3 calmodulin regulated spectrin-associated protein family, member 3 O calmodulin-regulated spectrin-associated protein 3|protein Nezha 20121230 -9606 57663 USP29 - HOM-TES-84/86 HGNC:18563|MIM:609546|Ensembl:ENSG00000131864|HPRD:07163 19 19q13.43 ubiquitin specific peptidase 29 protein-coding USP29 ubiquitin specific peptidase 29 O deubiquitinating enzyme 29|ubiquitin carboxyl-terminal hydrolase 29|ubiquitin thioesterase 29|ubiquitin thiolesterase 29|ubiquitin-specific processing protease|ubiquitin-specific-processing protease 29 20121230 -9606 57664 PLEKHA4 - PEPP1 HGNC:14339|MIM:607769|Ensembl:ENSG00000105559|HPRD:09683 19 19q13.33 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 4 protein-coding PLEKHA4 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 4 O PEPP-1|PH domain-containing family A member 4|phosphoinositol 3-phosphate binding protein-1|phosphoinositol 3-phosphate-binding PH domain protein 1|phosphoinositol 3-phosphate-binding protein 1|pleckstrin homology domain-containing family A member 4 20121230 -9606 57665 RDH14 UNQ529/PRO1072 PAN2|SDR7C4 HGNC:19979|Ensembl:ENSG00000240857|HPRD:10190|Vega:OTTHUMG00000090705 2 2p24.2 retinol dehydrogenase 14 (all-trans/9-cis/11-cis) protein-coding RDH14 retinol dehydrogenase 14 (all-trans/9-cis/11-cis) O alcohol dehydrogenase PAN2|pancreas protein 2|retinol dehydrogenase 14|retinol dehydrogenase 14 (all-trans and 9-cis)|short chain dehydrogenase/reductase family 7C, member 4 20121230 -9606 57666 FBRSL1 - - HGNC:29308|Ensembl:ENSG00000112787|Vega:OTTHUMG00000167991 12 12q24.33 fibrosin-like 1 protein-coding FBRSL1 fibrosin-like 1 O AUTS2-like protein|HBV X-transactivated gene 9 protein|HBV XAg-transactivated protein 9|fibrosin-1-like protein 20121230 -9606 57669 EPB41L5 - BE37|YMO1 HGNC:19819|MIM:611730|Ensembl:ENSG00000115109|HPRD:13273|Vega:OTTHUMG00000131433 2 2q14.2 erythrocyte membrane protein band 4.1 like 5 protein-coding EPB41L5 erythrocyte membrane protein band 4.1 like 5 O band 4.1-like protein 5 20121230 -9606 57670 KIAA1549 - - HGNC:22219|MIM:613344|Ensembl:ENSG00000122778|Vega:OTTHUMG00000157214 7 7q34 KIAA1549 protein-coding KIAA1549 KIAA1549 O UPF0606 protein KIAA1549 20121230 -9606 57673 BEND3 - KIAA1553|RP11-59I9.2 HGNC:23040|Ensembl:ENSG00000178409 6 6q21 BEN domain containing 3 protein-coding BEND3 BEN domain containing 3 O BEN domain-containing protein 3 20121230 -9606 57674 RNF213 hCG_1812857 ALO17|C17orf27|KIAA1618|MYMY2|MYSTR|NET57 HGNC:14539|MIM:613768|Ensembl:ENSG00000173821|HPRD:10716|Vega:OTTHUMG00000161415 17 17q25.3 ring finger protein 213 protein-coding RNF213 ring finger protein 213 O ALK lymphoma oligomerization partner on chromosome 17|RING finger protein 213|mysterin 20121230 -9606 57677 ZFP14 - ZNF531 HGNC:29312|Ensembl:ENSG00000142065|HPRD:17217|Vega:OTTHUMG00000180675 19 19q13.12 ZFP14 zinc finger protein protein-coding ZFP14 ZFP14 zinc finger protein O zfp-14|zinc finger protein 14 homolog|zinc finger protein 531 20121230 -9606 57678 GPAM RP11-426E5.2 GPAT|GPAT1 HGNC:24865|MIM:602395|Ensembl:ENSG00000119927|HPRD:03865|Vega:OTTHUMG00000019055 10 10q25.2 glycerol-3-phosphate acyltransferase, mitochondrial protein-coding GPAM glycerol-3-phosphate acyltransferase, mitochondrial O GPAT-1|glycerol 3-phosphate acyltransferase, mitochondrial|glycerol-3-phosphate acyltransferase 1, mitochondrial 20121230 -9606 57679 ALS2 - ALS2CR6|ALSJ|IAHSP|PLSJ HGNC:443|MIM:606352|Ensembl:ENSG00000003393|HPRD:05893|Vega:OTTHUMG00000154507 2 2q33.1 amyotrophic lateral sclerosis 2 (juvenile) protein-coding ALS2 amyotrophic lateral sclerosis 2 (juvenile) O alsin|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 6 protein|amyotrophic lateral sclerosis 2 protein 20121230 -9606 57680 CHD8 - HELSNF1 HGNC:20153|MIM:610528|Ensembl:ENSG00000100888|HPRD:16712|Vega:OTTHUMG00000170759 14 14q11.2 chromodomain helicase DNA binding protein 8 protein-coding CHD8 chromodomain helicase DNA binding protein 8 O ATP-dependent helicase CHD8|axis duplication inhibitor|chromodomain-helicase-DNA-binding protein 8|duplin|helicase with SNF2 domain 1 20121230 -9606 57683 ZDBF2 - - HGNC:29313|Ensembl:ENSG00000204186|Vega:OTTHUMG00000154648 2 2q33.3 zinc finger, DBF-type containing 2 protein-coding ZDBF2 zinc finger, DBF-type containing 2 O DBF4-type zinc finger-containing protein 2 20121230 -9606 57684 ZBTB26 - ZNF481|bioref HGNC:23383|Ensembl:ENSG00000171448|HPRD:15692|Vega:OTTHUMG00000020627 9 9q33.2 zinc finger and BTB domain containing 26 protein-coding ZBTB26 zinc finger and BTB domain containing 26 O zinc finger and BTB domain-containing protein 26|zinc finger protein 481|zinc finger protein 483|zinc finger protein Bioref 20121230 -9606 57685 CACHD1 - RP4-655E10.1 HGNC:29314|Ensembl:ENSG00000158966|HPRD:13874|Vega:OTTHUMG00000009030 1 1p31.3 cache domain containing 1 protein-coding CACHD1 cache domain containing 1 O VWFA and cache domain-containing protein 1|cache domain-containing protein 1|von Willebrand factor type A and cache domain containing 1 20121230 -9606 57687 VAT1L - - HGNC:29315|Ensembl:ENSG00000171724|HPRD:13875|Vega:OTTHUMG00000176845 16 16q23.1 vesicle amine transport protein 1 homolog (T. californica)-like protein-coding VAT1L vesicle amine transport protein 1 homolog (T. californica)-like O synaptic vesicle membrane protein VAT-1 homolog-like|vesicle amine transport protein 1 homolog-like (T. californica) 20121230 -9606 57688 ZSWIM6 hCG_18020 - HGNC:29316|Ensembl:ENSG00000130449|Vega:OTTHUMG00000162388 5 5q12.1 zinc finger, SWIM-type containing 6 protein-coding ZSWIM6 zinc finger, SWIM-type containing 6 O zinc finger SWIM domain-containing protein 6|zinc finger, SWIM domain containing 6 20121230 -9606 57689 LRRC4C UNQ292/PRO331 NGL-1|NGL1 HGNC:29317|MIM:608817|Ensembl:ENSG00000148948|HPRD:12303|Vega:OTTHUMG00000166383 11 11p12 leucine rich repeat containing 4C protein-coding LRRC4C leucine rich repeat containing 4C O leucine-rich repeat-containing protein 4C|netrin-G1 ligand 20121230 -9606 57690 TNRC6C - - HGNC:29318|MIM:610741|Ensembl:ENSG00000078687|HPRD:10026|Vega:OTTHUMG00000132642 17 17q25.3 trinucleotide repeat containing 6C protein-coding TNRC6C trinucleotide repeat containing 6C O trinucleotide repeat-containing gene 6C protein 20121230 -9606 57691 KIAA1586 - - HGNC:21360|Ensembl:ENSG00000168116|HPRD:17218|Vega:OTTHUMG00000014915 6 6p12.1 KIAA1586 protein-coding KIAA1586 KIAA1586 O uncharacterized protein KIAA1586 20121230 -9606 57692 MAGEE1 RP4-596C3.1 DAMAGE|HCA1 HGNC:24934|MIM:300759|Ensembl:ENSG00000198934|HPRD:06583|Vega:OTTHUMG00000021879 X Xq13.3 melanoma antigen family E, 1 protein-coding MAGEE1 melanoma antigen family E, 1 O MAGE-E1 antigen|alpha-dystrobrevin-associated MAGE Protein|dystrobrevin-associated MAGE protein|hepatocellular carcinoma-associated HCA1|hepatocellular carcinoma-associated protein 1|melanoma-associated antigen E1 20121230 -9606 57693 ZNF317 - - HGNC:13507|MIM:613864|Ensembl:ENSG00000130803|HPRD:11706|Vega:OTTHUMG00000179932 19 19p13 zinc finger protein 317 protein-coding ZNF317 zinc finger protein 317 O KRAB-containing zinc finger protein 317 20121230 -9606 57695 USP37 - - HGNC:20063|Ensembl:ENSG00000135913|HPRD:07506|Vega:OTTHUMG00000133113 2 2q35 ubiquitin specific peptidase 37 protein-coding USP37 ubiquitin specific peptidase 37 O deubiquitinating enzyme 37|tmp_locus_50|ubiquitin carboxyl-terminal hydrolase 37|ubiquitin specific protease 37|ubiquitin thioesterase 37|ubiquitin thiolesterase 37|ubiquitin-specific-processing protease 37 20121230 -9606 57696 DDX55 - - HGNC:20085|Ensembl:ENSG00000111364|HPRD:13130|Vega:OTTHUMG00000168695 12 12q24.31 DEAD (Asp-Glu-Ala-Asp) box polypeptide 55 protein-coding DDX55 DEAD (Asp-Glu-Ala-Asp) box polypeptide 55 O ATP-dependent RNA helicase DDX55|DEAD box protein 55 20121230 -9606 57697 FANCM - FAAP250|KIAA1596 HGNC:23168|MIM:609644|Ensembl:ENSG00000187790|HPRD:13876|Vega:OTTHUMG00000170807 14 14q21.2 Fanconi anemia, complementation group M protein-coding FANCM Fanconi anemia, complementation group M O ATP-dependent RNA helicase FANCM|Fanconi anemia group M protein|fanconi anemia-associated polypeptide of 250 kDa|protein Hef ortholog 20121230 -9606 57698 KIAA1598 - - HGNC:29319|MIM:611171|Ensembl:ENSG00000187164|HPRD:11155|Vega:OTTHUMG00000019114 10 10q25.3 KIAA1598 protein-coding KIAA1598 KIAA1598 O shootin-1|shootin1 20121230 -9606 57699 CPNE5 - COPN5|CPN5 HGNC:2318|MIM:604209|Ensembl:ENSG00000124772|HPRD:05018|Vega:OTTHUMG00000014602 6 6p21.1 copine V protein-coding CPNE5 copine V O copine-5 20121230 -9606 57700 FAM160B1 RP11-106M7.3 KIAA1600|bA106M7.3 HGNC:29320|Ensembl:ENSG00000151553|HPRD:17219|Vega:OTTHUMG00000019092 10 10q25.3 family with sequence similarity 160, member B1 protein-coding FAM160B1 family with sequence similarity 160, member B1 O protein FAM160B1 20121230 -9606 57701 NCKAP5L FP1193 KIAA1602 HGNC:29321|Ensembl:ENSG00000167566|Vega:OTTHUMG00000156969 12 12q13.12 NCK-associated protein 5-like protein-coding NCKAP5L NCK-associated protein 5-like O nck-associated protein 5-like 20121230 -9606 57703 CWC22 - EIF4GL|NCM|fSAPb HGNC:29322|Ensembl:ENSG00000163510|HPRD:17220|Vega:OTTHUMG00000154244 2 2q31.3 CWC22 spliceosome-associated protein homolog (S. cerevisiae) protein-coding CWC22 CWC22 spliceosome-associated protein homolog (S. cerevisiae) O functional spliceosome-associated protein b|nucampholin homolog|pre-mRNA-splicing factor CWC22 homolog 20121230 -9606 57704 GBA2 AD035 - HGNC:18986|MIM:609471|Ensembl:ENSG00000070610|HPRD:13569|Vega:OTTHUMG00000021024 9 9p13.3 glucosidase, beta (bile acid) 2 protein-coding GBA2 glucosidase, beta (bile acid) 2 O NLGase|beta-glucocerebrosidase 2|beta-glucosidase 2|bile acid beta-glucosidase|glucosylceramidase 2|non-lysosomal glucosylceramidase 20121230 -9606 57705 WDFY4 hCG_1745555 C10orf64 HGNC:29323|MIM:613316|Ensembl:ENSG00000128815|Vega:OTTHUMG00000018180 10 10q11.23 WDFY family member 4 protein-coding WDFY4 WDFY family member 4 O WD repeat- and FYVE domain-containing protein 4 20121230 -9606 57706 DENND1A - FAM31A|KIAA1608|RP11-230L22.3 HGNC:29324|MIM:613633|Ensembl:ENSG00000119522|HPRD:17221|Vega:OTTHUMG00000020643 9 9q33.3 DENN/MADD domain containing 1A protein-coding DENND1A DENN/MADD domain containing 1A O DENN domain-containing protein 1A|connecdenn 1 20121230 -9606 57707 KIAA1609 - - HGNC:29325|Ensembl:ENSG00000140950|HPRD:13877|Vega:OTTHUMG00000176739 16 16q24.1 KIAA1609 protein-coding KIAA1609 KIAA1609 O TLD domain-containing protein KIAA1609 20121230 -9606 57708 MIER1 RP5-944N15.1 ER1|MI-ER1|hMI-ER1 HGNC:29657|Ensembl:ENSG00000198160|HPRD:11362|Vega:OTTHUMG00000009194 1 1p31.3 mesoderm induction early response 1 homolog (Xenopus laevis) protein-coding MIER1 mesoderm induction early response 1 homolog (Xenopus laevis) O mesoderm induction early response protein 1 20121230 -9606 57709 SLC7A14 - - HGNC:29326|Ensembl:ENSG00000013293|HPRD:17222|Vega:OTTHUMG00000158941 3 3q26.2 solute carrier family 7 (orphan transporter), member 14 protein-coding SLC7A14 solute carrier family 7 (orphan transporter), member 14 O probable cationic amino acid transporter|solute carrier family 7 (cationic amino acid transporter, y+ system), member 14|solute carrier family 7 member 14 20121230 -9606 57710 KIAA1614 hCG_24169 RP11-46A10.3 HGNC:29327|Ensembl:ENSG00000135835|Vega:OTTHUMG00000035183 1 1q25.3 KIAA1614 protein-coding KIAA1614 KIAA1614 O uncharacterized protein KIAA1614 20121230 -9606 57711 ZNF529 - - HGNC:29328|Ensembl:ENSG00000186020|HPRD:15821|Vega:OTTHUMG00000180714 19 19q13.13 zinc finger protein 529 protein-coding ZNF529 zinc finger protein 529 O - 20121230 -9606 57713 SFMBT2 RP11-393K12.3 - HGNC:20256|Ensembl:ENSG00000198879|Vega:OTTHUMG00000017630 10 10p14 Scm-like with four mbt domains 2 protein-coding SFMBT2 Scm-like with four mbt domains 2 O Scm-related gene containing four mbt domains 2|scm-like with four MBT domains protein 2 20121230 -9606 57715 SEMA4G RP11-108L7.1 - HGNC:10735|Ensembl:ENSG00000095539|HPRD:10218|Vega:OTTHUMG00000018922 10 10q24.31 sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4G protein-coding SEMA4G sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4G O semaphorin-4G 20121230 -9606 57716 PRX - CMT4F HGNC:13797|MIM:605725|Ensembl:ENSG00000105227|HPRD:05758 19 19q13.2 periaxin protein-coding PRX periaxin O - 20121230 -9606 57717 PCDHB16 - ME1|PCDH-BETA16|PCDH3X|PCDHB8a HGNC:14546|MIM:606345|Ensembl:ENSG00000196963|HPRD:06961|Vega:OTTHUMG00000129605 5 5q31 protocadherin beta 16 protein-coding PCDHB16 protocadherin beta 16 O PCDH-beta-16|PCDHbeta 16|cadherin ME1|protocadherin beta 8a|protocadherin beta-16|protocadherin-3x 20121230 -9606 57718 PPP4R4 - KIAA1622|PP4R4 HGNC:23788|Ensembl:ENSG00000119698|HPRD:13878|Vega:OTTHUMG00000171344 14 14q32.2 protein phosphatase 4, regulatory subunit 4 protein-coding PPP4R4 protein phosphatase 4, regulatory subunit 4 O HEAT-like repeat-containing protein|serine/threonine-protein phosphatase 4 regulatory subunit 4 20121230 -9606 57719 ANO8 - KIAA1623|TMEM16H HGNC:29329|MIM:610216|Ensembl:ENSG00000074855|HPRD:17223 19 19p13.11 anoctamin 8 protein-coding ANO8 anoctamin 8 O anoctamin-8|transmembrane protein 16H 20121230 -9606 57720 GPR107 - GCDRP|LUSTR1|RP11-88G17|bA138E2.2 HGNC:17830|Ensembl:ENSG00000148358|HPRD:17054|Vega:OTTHUMG00000020804 9 9q34.11 G protein-coupled receptor 107 protein-coding GPR107 G protein-coupled receptor 107 O lung seven transmembrane receptor 1|protein GPR107 20121230 -9606 57721 METTL14 - - HGNC:29330|Ensembl:ENSG00000145388|HPRD:13879|Vega:OTTHUMG00000161167 4 4q26 methyltransferase like 14 protein-coding METTL14 methyltransferase like 14 O methyltransferase-like protein 14 20121230 -9606 57722 IGDCC4 - DDM36|NOPE HGNC:13770|Ensembl:ENSG00000103742|HPRD:11399|Vega:OTTHUMG00000133136 15 15q22.31 immunoglobulin superfamily, DCC subclass, member 4 protein-coding IGDCC4 immunoglobulin superfamily, DCC subclass, member 4 O hDDM36|immunoglobulin superfamily DCC subclass member 4|likely ortholog of mouse neighbor of Punc E11|neighbor of Punc E11 20121230 -9606 57724 EPG5 - HEEW1|KIAA1632|hEPG5 HGNC:29331|Ensembl:ENSG00000152223|HPRD:11157|Vega:OTTHUMG00000132626 18 18q12.3 ectopic P-granules autophagy protein 5 homolog (C. elegans) protein-coding EPG5 ectopic P-granules autophagy protein 5 homolog (C. elegans) O ectopic P granules protein 5 homolog 20121230 -9606 57727 NCOA5 RP11-465L10.6 CIA|bA465L10.6 HGNC:15909|Ensembl:ENSG00000124160|HPRD:14813|Vega:OTTHUMG00000032639 20 20q12-q13.12 nuclear receptor coactivator 5 protein-coding NCOA5 nuclear receptor coactivator 5 O NCoA-5|coactivator independent of AF-2 20121230 -9606 57728 WDR19 - ATD5|CED4|DYF-2|IFT144|NPHP13|ORF26|Oseg6|PWDMP HGNC:18340|MIM:608151|Ensembl:ENSG00000157796|HPRD:10489|Vega:OTTHUMG00000160466 4 4p14 WD repeat domain 19 protein-coding WDR19 WD repeat domain 19 O WD repeat membrane protein PWDMP|WD repeat-containing protein 19|intraflagellar transport 144 homolog 20121230 -9606 57730 ANKRD36B - KIAA1641 HGNC:29333|HPRD:10027 2 2q11.2 ankyrin repeat domain 36B protein-coding ANKRD36B ankyrin repeat domain 36B O CLL-associated antigen KW-1|ankyrin repeat domain-containing protein 36B|melanoma-associated antigen 20121230 -9606 57731 SPTBN4 - QV|SPNB4|SPTBN3 HGNC:14896|MIM:606214|Ensembl:ENSG00000160460|HPRD:09372 19 19q13.13 spectrin, beta, non-erythrocytic 4 protein-coding SPTBN4 spectrin, beta, non-erythrocytic 4 O beta-IV spectrin|spectrin beta chain, brain 3|spectrin beta chain, non-erythrocytic 4|spectrin, non-erythroid beta chain 3 20121230 -9606 57732 ZFYVE28 - LST2|LYST2 HGNC:29334|MIM:614176|Ensembl:ENSG00000159733|HPRD:11701|Vega:OTTHUMG00000160292 4 4p16.3 zinc finger, FYVE domain containing 28 protein-coding ZFYVE28 zinc finger, FYVE domain containing 28 O hLst2|lateral signaling target protein 2 homolog|zinc finger FYVE domain-containing protein 28 20121230 -9606 57733 GBA3 - CBGL1|GLUC|KLrP HGNC:19069|MIM:606619|Ensembl:ENSG00000249948|HPRD:09428|Vega:OTTHUMG00000160448 4 4p15.2 glucosidase, beta, acid 3 (cytosolic) protein-coding GBA3 glucosidase, beta, acid 3 (cytosolic) O cytosolic beta-glucosidase|cytosolic beta-glucosidase-like protein 1|klotho-related protein 20121230 -9606 57758 SCUBE2 - CEGB1|CEGF1|CEGP1 HGNC:30425|MIM:611747|Ensembl:ENSG00000175356|HPRD:18030|Vega:OTTHUMG00000163880 11 11p15.3 signal peptide, CUB domain, EGF-like 2 protein-coding SCUBE2 signal peptide, CUB domain, EGF-like 2 O signal peptide, CUB and EGF-like domain-containing protein 2 20121230 -9606 57760 SPG16 - SPG HGNC:14260|MIM:300266 X Xq11.2 spastic paraplegia 16 (complicated, X-linked recessive) unknown SPG16 spastic paraplegia 16 (complicated, X-linked recessive) O - 20120622 -9606 57761 TRIB3 RP5-1103G7.7 C20orf97|NIPK|SINK|SKIP3|TRB3 HGNC:16228|MIM:607898|Ensembl:ENSG00000101255|HPRD:09836|Vega:OTTHUMG00000031627 20 20p13-p12.2 tribbles homolog 3 (Drosophila) protein-coding TRIB3 tribbles homolog 3 (Drosophila) O TRB-3|neuronal cell death inducible putative kinase|neuronal cell death-inducible putative kinase|p65-interacting inhibitor of NF-kappa-B|p65-interacting inhibitor of NF-kappaB|tribbles homolog 3 20121230 -9606 57762 NS2 - - MIM:605275 - - Noonan syndrome 2 unknown - - - - 20110215 -9606 57763 ANKRA2 - ANKRA HGNC:13208|MIM:605787|Ensembl:ENSG00000164331|HPRD:12044|Vega:OTTHUMG00000102030 5 5q12-q13 ankyrin repeat, family A (RFXANK-like), 2 protein-coding ANKRA2 ankyrin repeat, family A (RFXANK-like), 2 O RFXANK-like protein 2|ankyrin repeat family A protein 2 20121230 -9606 57786 RBAK - ZNF769 HGNC:17680|MIM:608191|Ensembl:ENSG00000146587|HPRD:16296|Vega:OTTHUMG00000121155 7 7p22.1 RB-associated KRAB zinc finger protein-coding RBAK RB-associated KRAB zinc finger O RB-associated KRAB repressor|RB-associated KRAB zinc finger protein|zinc finger protein 769 20121230 -9606 57787 MARK4 - MARK4L|MARK4S|MARKL1|MARKL1L HGNC:13538|MIM:606495|Ensembl:ENSG00000007047|HPRD:09402|Vega:OTTHUMG00000181769 19 19q13.3 MAP/microtubule affinity-regulating kinase 4 protein-coding MARK4 MAP/microtubule affinity-regulating kinase 4 O MAP/microtubule affinity-regulating kinase like 1|MARK4 serine/threonine protein kinase 20121230 -9606 57788 RFMN - - MIM:300258 X - Roifman syndrome unknown - - - - 20120622 -9606 57789 MTBS - MTBSX MIM:300259 - - Mycobacterium tuberculosis, susceptibility to infection by unknown - - - - 20121018 -9606 57790 MRXSL - - MIM:300260 - - Lubs X-linked mental retardation syndrome unknown - - - - 20120622 -9606 57791 MRXSA - - MIM:300261 X Xq28 Armfield X-linked mental retardation syndrome unknown - - - - 20120622 -9606 57792 MRXSAB - - MIM:300262 X Xq13.2 Abidi X-linked mental retardation syndrome unknown - - - - 20120622 -9606 57794 SUGP1 - F23858|RBP|SF4 HGNC:18643|MIM:607992|Ensembl:ENSG00000105705|HPRD:10468|Vega:OTTHUMG00000182223 19 19p13.11 SURP and G patch domain containing 1 protein-coding SUGP1 SURP and G patch domain containing 1 O RNA-binding protein RBP|SURP and G-patch domain-containing protein 1|splicing factor 4 20121230 -9606 57795 FAM5B - BRINP2|DBCCR1L2|RP5-1026E2.1 HGNC:13746|Ensembl:ENSG00000198797|HPRD:13891|Vega:OTTHUMG00000034953 1 1q24 family with sequence similarity 5, member B protein-coding FAM5B family with sequence similarity 5, member B O BMP/retinoic acid-inducible neural-specific protein 2|DBCCR1-like protein 2|DBCCR1-like2|protein FAM5B 20121230 -9606 57796 DKFZP761C1711 - - - - - uncharacterized protein DKFZp761C1711 protein-coding - - - - 20111025 -9606 57798 GATAD1 tcag7.279 CMD2B|ODAG|RG083M05.2 HGNC:29941|MIM:614518|Ensembl:ENSG00000157259|HPRD:17656|Vega:OTTHUMG00000131201 7 7q21-q22 GATA zinc finger domain containing 1 protein-coding GATAD1 GATA zinc finger domain containing 1 O GATA zinc finger domain-containing protein 1|ocular development-associated gene protein 20121230 -9606 57799 RAB40C LA16c-398G5.1 RARL|RASL8C HGNC:18285|Ensembl:ENSG00000197562|HPRD:10182|Vega:OTTHUMG00000047854 16 16p13.3 RAB40C, member RAS oncogene family protein-coding RAB40C RAB40C, member RAS oncogene family O RAR (RAS like GTPASE) like|RAR like|RAS-like GTPase|RAS-like, family 8, member C|SOCS box-containing protein RAR3|rar-like protein|ras-like protein family member 8C|ras-related protein Rab-40C 20121230 -9606 57801 HES4 - bHLHb42 HGNC:24149|MIM:608060|Ensembl:ENSG00000188290|HPRD:16273|Vega:OTTHUMG00000040758 1 1p36.33 hairy and enhancer of split 4 (Drosophila) protein-coding HES4 hairy and enhancer of split 4 (Drosophila) O bHLH factor Hes4|class B basic helix-loop-helix protein 42|hHES4|transcription factor HES-4 20121230 -9606 57804 POLD4 - POLDS|p12 HGNC:14106|MIM:611525|Ensembl:ENSG00000175482|HPRD:17873|Vega:OTTHUMG00000167135 11 11q13 polymerase (DNA-directed), delta 4, accessory subunit protein-coding POLD4 polymerase (DNA-directed), delta 4, accessory subunit O DNA polymerase delta smallest subunit p12|DNA polymerase delta subunit 4 20121230 -9606 57805 KIAA1967 - DBC-1|DBC1|NET35|p30 DBC|p30DBC HGNC:23360|MIM:607359|Ensembl:ENSG00000158941|HPRD:09159|Vega:OTTHUMG00000162249 8 8p22 KIAA1967 protein-coding KIAA1967 KIAA1967 O DBIRD complex subunit KIAA1967|deleted in breast cancer 1|p30 DBC protein 20121230 -9606 57817 HAMP UNQ487/PRO1003 HEPC|HFE2B|LEAP1|PLTR HGNC:15598|MIM:606464|Ensembl:ENSG00000105697|HPRD:05925 19 19q13.1 hepcidin antimicrobial peptide protein-coding HAMP hepcidin antimicrobial peptide O hepcidin|liver-expressed antimicrobial peptide 1|putative liver tumor regressor 20121230 -9606 57818 G6PC2 - IGRP HGNC:28906|MIM:608058|Ensembl:ENSG00000152254|HPRD:16272|Vega:OTTHUMG00000132182 2 2q24.3 glucose-6-phosphatase, catalytic, 2 protein-coding G6PC2 glucose-6-phosphatase, catalytic, 2 O G-6-Pase 2|G6Pase 2|glucose-6-phosphatase 2|islet-specific G6CP-related protein|islet-specific glucose-6-phosphatase catalytic subunit-related protein|islet-specific glucose-6-phosphatase-related protein 20121230 -9606 57819 LSM2 DAAP-21F2.6 C6orf28|G7B|YBL026W|snRNP HGNC:13940|MIM:607282|Ensembl:ENSG00000204392|HPRD:06282|Vega:OTTHUMG00000031121 6 6p21.3 LSM2 homolog, U6 small nuclear RNA associated (S. cerevisiae) protein-coding LSM2 LSM2 homolog, U6 small nuclear RNA associated (S. cerevisiae) O U6 snRNA-associated Sm-like protein LSm2|protein G7b|small nuclear ribonuclear protein D homolog|snRNP core Sm-like protein Sm-x5 20121230 -9606 57820 CCNB1IP1 - C14orf18|HEI10 HGNC:19437|MIM:608249|Ensembl:ENSG00000100814|HPRD:07000|Vega:OTTHUMG00000029509 14 14q11.2 cyclin B1 interacting protein 1, E3 ubiquitin protein ligase protein-coding CCNB1IP1 cyclin B1 interacting protein 1, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase CCNB1IP1|human enhancer of invasion 10 20121230 -9606 57821 C1orf114 - RP1-206D15.2 HGNC:28051|Ensembl:ENSG00000117477|HPRD:14258|Vega:OTTHUMG00000035448 1 1q24 chromosome 1 open reading frame 114 protein-coding C1orf114 chromosome 1 open reading frame 114 O uncharacterized protein C1orf114 20121230 -9606 57822 GRHL3 RP3-462O23.1 SOM|TFCP2L4 HGNC:25839|MIM:608317|Ensembl:ENSG00000158055|HPRD:12210|Vega:OTTHUMG00000003040 1 1p36.11 grainyhead-like 3 (Drosophila) protein-coding GRHL3 grainyhead-like 3 (Drosophila) O grainyhead-like protein 3 homolog|sister of mammalian grainyhead|sister-of-mammalian grainyhead|transcription factor CP2-like 4|transcription factor hSOM1 20121230 -9606 57823 SLAMF7 UNQ576/PRO1138 19A|CD319|CRACC|CS1 HGNC:21394|MIM:606625|Ensembl:ENSG00000026751|HPRD:09432|Vega:OTTHUMG00000024008 1 1q23.1-q24.1 SLAM family member 7 protein-coding SLAMF7 SLAM family member 7 O 19A24 protein|CD2 subset 1|CD2-like receptor activating cytotoxic cells|CD2-like receptor-activating cytotoxic cells|membrane protein FOAP-12|novel LY9 (lymphocyte antigen 9) like protein|protein 19A 20121230 -9606 57824 HMHB1 - HB-1|HLA-HB1 HGNC:29677|MIM:609961|Ensembl:ENSG00000158497|HPRD:17089|Vega:OTTHUMG00000163173 5 5q31.3 histocompatibility (minor) HB-1 protein-coding HMHB1 histocompatibility (minor) HB-1 O minor histocompatibility antigen HB-1|minor histocompatibility protein HB-1 20121230 -9606 57826 RAP2C - - HGNC:21165|Ensembl:ENSG00000123728|HPRD:06706|Vega:OTTHUMG00000022424 X Xq25 RAP2C, member of RAS oncogene family protein-coding RAP2C RAP2C, member of RAS oncogene family O ras-related protein Rap-2c|small GTPase RAP2C 20121230 -9606 57827 C6orf47 DADB-127H9.7 D6S53E|G4|NG34 HGNC:19076|Ensembl:ENSG00000204439|HPRD:12883|Vega:OTTHUMG00000031172 6 6p21.3 chromosome 6 open reading frame 47 protein-coding C6orf47 chromosome 6 open reading frame 47 O protein G4|uncharacterized protein C6orf47 20121230 -9606 57828 CATSPERG - C19orf15 HGNC:25243|MIM:613452|Ensembl:ENSG00000099338|HPRD:12698|Vega:OTTHUMG00000153223 19 19q13.1 catsper channel auxiliary subunit gamma protein-coding CATSPERG catsper channel auxiliary subunit gamma O cation channel sperm-associated protein subunit gamma|cation channel, sperm-associated, gamma 20121230 -9606 57829 ZP4 - ZBP|ZP1|ZPB|Zp-4 HGNC:15770|MIM:613514|Ensembl:ENSG00000116996|HPRD:18363|Vega:OTTHUMG00000039586 1 1q43 zona pellucida glycoprotein 4 protein-coding ZP4 zona pellucida glycoprotein 4 O zona pellucida B protein|zona pellucida protein B|zona pellucida sperm-binding protein 4 20121230 -9606 57830 KRTAP5-8 - KRTAP5-2|KRTAP5.8|UHSKerB HGNC:23603|Ensembl:ENSG00000241233|HPRD:17252|Vega:OTTHUMG00000057571 11 11q13.4 keratin associated protein 5-8 protein-coding KRTAP5-8 keratin associated protein 5-8 O UHS KERB-like protein|UHS KerB|UHS keratin B|keratin, ultra high-sulfur matrix protein B|keratin, ultrahigh sulfur, B|keratin-associated protein 5-8|keratin-associated protein 5.8|ultrahigh sulfur keratin-associated protein 5.8 20121230 -9606 57834 CYP4F11 - CYPIVF11 HGNC:13265|MIM:611517|Ensembl:ENSG00000171903|HPRD:07101|Vega:OTTHUMG00000182294 19 19p13.1 cytochrome P450, family 4, subfamily F, polypeptide 11 protein-coding CYP4F11 cytochrome P450, family 4, subfamily F, polypeptide 11 O cytochrome P450 4F11|cytochrome P450, subfamily IVF, polypeptide 11 20121230 -9606 57835 SLC4A5 - NBC4 HGNC:18168|MIM:606757|Ensembl:ENSG00000188687|HPRD:08420|Vega:OTTHUMG00000090263 2 2p13 solute carrier family 4, sodium bicarbonate cotransporter, member 5 protein-coding SLC4A5 solute carrier family 4, sodium bicarbonate cotransporter, member 5 O NBCe2|electrogenic sodium bicarbonate cotransporter 4 20121230 -9606 57862 ZNF410 - APA-1|APA1 HGNC:20144|Ensembl:ENSG00000119725|HPRD:18339|Vega:OTTHUMG00000171257 14 14q24.3 zinc finger protein 410 protein-coding ZNF410 zinc finger protein 410 O another partner for ARF 1|clones 23667 and 23775 zinc finger protein|zinc finger protein APA-1 20121230 -9606 57863 CADM3 CTA-134P22.1 BIgR|IGSF4B|NECL1|Necl-1|TSLL1|synCAM3 HGNC:17601|MIM:609743|Ensembl:ENSG00000162706|HPRD:13733|Vega:OTTHUMG00000037177 1 1q21.2-q22 cell adhesion molecule 3 protein-coding CADM3 cell adhesion molecule 3 O TSLC1-like 1|TSLC1-like protein 1|brain immunoglobulin receptor|dendritic cell nectin-like protein 1 short isoform|immunoglobulin superfamily member 4B|immunoglobulin superfamily, member 4B|nectin-like 1|nectin-like protein 1|synaptic cell adhesion molecule 3 20121230 -9606 57864 SLC46A2 - Ly110|TSCOT HGNC:16055|MIM:608956|Ensembl:ENSG00000119457|HPRD:16411|Vega:OTTHUMG00000020513 9 9q32 solute carrier family 46, member 2 protein-coding SLC46A2 solute carrier family 46, member 2 O thymic stromal co-transporter|thymic stromal cotransporter homolog 20121230 -9606 57876 MUC3B - MUC3|MUC3A HGNC:13384|MIM:605633 7 7q22 mucin 3B, cell surface associated protein-coding MUC3B mucin 3B, cell surface associated O MUC-3B|intestinal mucin MUC3B|intestinal mucin-3B|mucin-3B 20120818 -9606 58155 PTBP2 - PTB|PTBLP|brPTB|nPTB|nPTB5|nPTB6|nPTB7|nPTB8 HGNC:17662|MIM:608449|Ensembl:ENSG00000117569|HPRD:12233|Vega:OTTHUMG00000010685 1 1p21.3 polypyrimidine tract binding protein 2 protein-coding PTBP2 polypyrimidine tract binding protein 2 O PTB-like protein|neural polypyrimidine tract binding protein|neural polypyrimidine tract-binding protein|neurally-enriched homolog of PTB|polypyrimidine tract-binding protein 2|splicing regulator 20121230 -9606 58156 OPA4 - - HGNC:32786|MIM:605293 18 18q12.2 optic atrophy 4 (autosomal dominant) unknown OPA4 optic atrophy 4 (autosomal dominant) O - 20120622 -9606 58157 NGB - - HGNC:14077|MIM:605304|Ensembl:ENSG00000165553|HPRD:05602|Vega:OTTHUMG00000171558 14 14q24.3 neuroglobin protein-coding NGB neuroglobin O - 20121230 -9606 58158 NEUROD4 - ATH-3|ATH3|Atoh3|MATH-3|bHLHa4 HGNC:13802|MIM:611635|Ensembl:ENSG00000123307|HPRD:14826|Vega:OTTHUMG00000169826 12 12q13.2 neuronal differentiation 4 protein-coding NEUROD4 neuronal differentiation 4 O class A basic helix-loop-helix protein 4|neurogenic differentiation 4|neurogenic differentiation factor 4|protein atonal homolog 3 20121230 -9606 58160 NFE4 - NF-E4 MIM:612133 7 7q22.1 transcription factor NF-E4 protein-coding - - - fetal globin activator NF-E4|gamma-globin gene activator 20121230 -9606 58163 RBPJP4 - K7|RBPSUHP4 HGNC:13687 9 9q13 RBPJ pseudogene 4 pseudo RBPJP4 RBPJ pseudogene 4 O - 20120720 -9606 58164 RBPJP3 - K2|RBPSUHP3 HGNC:13686 9 9p13 RBPJ pseudogene 3 pseudo RBPJP3 RBPJ pseudogene 3 O - 20121209 -9606 58189 WFDC1 - PS20 HGNC:15466|MIM:605322|Ensembl:ENSG00000103175|HPRD:05614|Vega:OTTHUMG00000137641 16 16q24.3 WAP four-disulfide core domain 1 protein-coding WFDC1 WAP four-disulfide core domain 1 O WAP four-disulfide core domain 1 homolog|WAP four-disulfide core domain protein 1|prostate stromal protein ps20|ps20 growth inhibitor 20121230 -9606 58190 CTDSP1 - NIF3|NLI-IF|NLIIF|SCP1 HGNC:21614|MIM:605323|Ensembl:ENSG00000144579|HPRD:05615|Vega:OTTHUMG00000133109 2 2q35 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 1 protein-coding CTDSP1 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 1 O NLI-interacting factor 3|carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 1|nuclear LIM interactor-interacting factor 3|small C-terminal domain phosphatase 1 20121230 -9606 58191 CXCL16 UNQ2759/PRO6714 CXCLG16|SR-PSOX|SRPSOX HGNC:16642|MIM:605398|Ensembl:ENSG00000161921|HPRD:16103|Vega:OTTHUMG00000090761 17 17p13 chemokine (C-X-C motif) ligand 16 protein-coding CXCL16 chemokine (C-X-C motif) ligand 16 O C-X-C motif chemokine 16|CXC chemokine ligand 16|scavenger receptor for phosphatidylserine and oxidized low density lipoprotein|small-inducible cytokine B16|transmembrane chemokine CXCL16 20121230 -9606 58472 SQRDL CGI-44 PRO1975 HGNC:20390|Ensembl:ENSG00000137767|HPRD:18102|Vega:OTTHUMG00000131476 15 15q15 sulfide quinone reductase-like (yeast) protein-coding SQRDL sulfide quinone reductase-like (yeast) O sulfide dehydrogenase like|sulfide:quinone oxidoreductase, mitochondrial 20121230 -9606 58473 PLEKHB1 - KPL1|PHR1|PHRET1 HGNC:19079|MIM:607651|Ensembl:ENSG00000021300|HPRD:09630|Vega:OTTHUMG00000168030 11 11q13.5-q14.1 pleckstrin homology domain containing, family B (evectins) member 1 protein-coding PLEKHB1 pleckstrin homology domain containing, family B (evectins) member 1 O PH domain containing protein in retina 1|PH domain containing, retinal 1|PH domain-containing family B member 1|PH domain-containing protein in retina 1|evectin-1|pleckstrin homology domain retinal protein 1|pleckstrin homology domain-containing family B member 1 20121230 -9606 58475 MS4A7 - 4SPAN2|CD20L4|CFFM4|MS4A8 HGNC:13378|MIM:606502|Ensembl:ENSG00000166927|HPRD:07579|Vega:OTTHUMG00000167356 11 11q12 membrane-spanning 4-domains, subfamily A, member 7 protein-coding MS4A7 membrane-spanning 4-domains, subfamily A, member 7 O CD20 antigen-like 4|CD20/Fc-epsilon-RI-beta family member 4|four-span transmembrane protein 2|high affinity immunoglobulin epsilon receptor beta subunit|membrane-spanning 4-domains subfamily A member 7 20121230 -9606 58476 TP53INP2 RP5-1181N3.1 C20orf110|DOR|PINH|dJ1181N3.1 HGNC:16104|Ensembl:ENSG00000078804|HPRD:15546|Vega:OTTHUMG00000032310 20 20q11.22 tumor protein p53 inducible nuclear protein 2 protein-coding TP53INP2 tumor protein p53 inducible nuclear protein 2 O PIG-U|diabetes and obesity regulated|diabetes and obesity-regulated|p53-inducible protein U|tumor protein p53-inducible nuclear protein 2 20121230 -9606 58477 SRPRB PSEC0230 APMCF1 HGNC:24085|Ensembl:ENSG00000144867|HPRD:18105|Vega:OTTHUMG00000159753 3 3q22.1 signal recognition particle receptor, B subunit protein-coding SRPRB signal recognition particle receptor, B subunit O SR-beta|signal recognition particle receptor subunit beta|signal recognition particle receptor, beta subunit 20121230 -9606 58478 ENOPH1 MSTP145 E1|MASA|MST145 HGNC:24599|Ensembl:ENSG00000145293|HPRD:17467|Vega:OTTHUMG00000130295 4 4q21.22 enolase-phosphatase 1 protein-coding ENOPH1 enolase-phosphatase 1 O 2,3-diketo-5-methylthio-1-phosphopentane phosphatase|MASA homolog|acireductone synthase|enolase-phosphatase E1 20121230 -9606 58480 RHOU SB128 ARHU|CDC42L1|DJ646B12.2|WRCH1|fJ646B12.2|hG28K HGNC:17794|MIM:606366|Ensembl:ENSG00000116574|HPRD:06965|Vega:OTTHUMG00000037919 1 1q42.11-q42.3 ras homolog family member U protein-coding RHOU ras homolog family member U O 2310026M05Rik|CDC42-like GTPase 1|GTP-binding protein SB128|GTP-binding protein like 1|Ryu GTPase|ras homolog gene family, member U|ras-like gene family member U|rho GTPase-like protein ARHU|rho-related GTP-binding protein RhoU|wnt-1 responsive Cdc42 homolog 1 20121230 -9606 58483 LINC00474 RP11-81L14.1 C9orf27|EST-YD1 HGNC:23367|HPRD:12951 9 9q31.3 long intergenic non-protein coding RNA 474 miscRNA LINC00474 long intergenic non-protein coding RNA 474 O - 20121230 -9606 58484 NLRC4 UNQ6189/PRO20215 CARD12|CLAN|CLAN1|CLANA|CLANB|CLANC|CLAND|CLR2.1|IPAF HGNC:16412|MIM:606831|Ensembl:ENSG00000091106|HPRD:06014|Vega:OTTHUMG00000152107 2 2p22-p21 NLR family, CARD domain containing 4 protein-coding NLRC4 NLR family, CARD domain containing 4 O CARD, LRR, and NACHT-containing protein|ICE-protease activating factor|NLR family CARD domain-containing protein 4|NOD-like receptor C4|caspase recruitment domain family, member 12|caspase recruitment domain-containing protein 12|ice protease-activating factor|nucleotide-binding oligomerization domain, leucine rich repeat and CARD domain containing 4 20121230 -9606 58485 TRAPPC1 - BET5|MUM2 HGNC:19894|MIM:610969|Ensembl:ENSG00000170043|HPRD:18219|Vega:OTTHUMG00000108171 17 17p13.1 trafficking protein particle complex 1 protein-coding TRAPPC1 trafficking protein particle complex 1 O BET5 homolog|MUM-2|melanoma ubiquitous mutated 2|multiple myeloma protein 2|trafficking protein particle complex subunit 1 20121230 -9606 58486 ZBED5 - Buster1 HGNC:30803|Ensembl:ENSG00000236287|HPRD:17429|Vega:OTTHUMG00000150341 11 11p15.3 zinc finger, BED-type containing 5 protein-coding ZBED5 zinc finger, BED-type containing 5 O transposon-derived Buster1 transposase-like protein|zinc finger BED domain-containing protein 5 20121230 -9606 58487 CREBZF - SMILE|ZF HGNC:24905|MIM:606444|Ensembl:ENSG00000137504|HPRD:07340|Vega:OTTHUMG00000133648 11 11q14 CREB/ATF bZIP transcription factor protein-coding CREBZF CREB/ATF bZIP transcription factor O HCF-binding transcription factor Zhangfei|SHP-interacting leucine zipper protein|Zhangfei|host cell factor-binding transcription factor Zhangfei 20121230 -9606 58488 PCTP - PC-TP|STARD2 HGNC:8752|MIM:606055|Ensembl:ENSG00000141179|HPRD:06927|Vega:OTTHUMG00000177859 17 17q21-q24 phosphatidylcholine transfer protein protein-coding PCTP phosphatidylcholine transfer protein O START domain-containing protein 2|StAR-related lipid transfer (START) domain containing 2|stAR-related lipid transfer protein 2 20121230 -9606 58489 FAM108C1 - - HGNC:26925|Ensembl:ENSG00000136379|Vega:OTTHUMG00000172282 15 15q25.1 family with sequence similarity 108, member C1 protein-coding FAM108C1 family with sequence similarity 108, member C1 O abhydrolase domain-containing protein FAM108C1 20121230 -9606 58490 RPRD1B RP5-1057B20.2 C20orf77|CREPT|NET60|dJ1057B20.2 HGNC:16209|MIM:614694|Ensembl:ENSG00000101413|HPRD:08513|Vega:OTTHUMG00000032434 20 20q11.21-q12 regulation of nuclear pre-mRNA domain containing 1B protein-coding RPRD1B regulation of nuclear pre-mRNA domain containing 1B O cell cycle-related and expression-elevated protein in tumor|cell-cycle related and expression-elevated protein in tumor|regulation of nuclear pre-mRNA domain-containing protein 1B 20121230 -9606 58491 ZNF71 - EZFIT HGNC:13141|MIM:194545|Ensembl:ENSG00000197951|HPRD:11838 19 19q13.4 zinc finger protein 71 protein-coding ZNF71 zinc finger protein 71 O Kruppel-related zinc finger protein|endothelial zinc finger protein induced by tumor necrosis factor alpha 20121230 -9606 58492 ZNF77 - pT1 HGNC:13150|MIM:194551|Ensembl:ENSG00000175691|HPRD:08936|Vega:OTTHUMG00000180566 19 19p13.3 zinc finger protein 77 protein-coding ZNF77 zinc finger protein 77 O ZNFpT1 20121230 -9606 58493 INIP RP11-276E15.2 C9orf80|HSPC043|MISE|SOSSC|SSBIP1|hSSBIP1 HGNC:24994|MIM:613273|Ensembl:ENSG00000148153|HPRD:12980|Vega:OTTHUMG00000020509 9 9q32 INTS3 and NABP interacting protein protein-coding INIP INTS3 and NABP interacting protein O INTS3- and NABP-interacting protein|SOSS complex subunit C|SOSS-C|SSB-interacting protein 1|hSSB-interacting protein 1|minute INTS3/hSSB-associated element|sensor of single-strand DNA complex subunit C|sensor of ssDNA subunit C|single-stranded DNA-binding protein-interacting protein 1 20121230 -9606 58494 JAM2 UNQ219/PRO245 C21orf43|CD322|JAM-B|JAMB|PRO245|VE-JAM|VEJAM HGNC:14686|MIM:606870|Ensembl:ENSG00000154721|HPRD:06041|Vega:OTTHUMG00000078441 21 21q21.2 junctional adhesion molecule 2 protein-coding JAM2 junctional adhesion molecule 2 O JAM-2|JAM-IT/VE-JAM|junctional adhesion molecule B|vascular endothelial junction-associated molecule 20121230 -9606 58495 OVOL2 - EUROIMAGE566589|ZNF339 HGNC:15804|Ensembl:ENSG00000125850|HPRD:15780|Vega:OTTHUMG00000031960 20 20pter-q11.23 ovo-like 2 (Drosophila) protein-coding OVOL2 ovo-like 2 (Drosophila) O hOvo2|transcription factor Ovo-like 2|zinc finger protein 339 20121230 -9606 58496 LY6G5B DADB-127H9.9 C6orf19|G5b HGNC:13931|MIM:610433|Ensembl:ENSG00000240053|Ensembl:ENSG00000263020|HPRD:10063|Vega:OTTHUMG00000031056|Vega:OTTHUMG00000031227 6 6p21.3 lymphocyte antigen 6 complex, locus G5B protein-coding LY6G5B lymphocyte antigen 6 complex, locus G5B O lymphocyte antigen 6 complex locus protein G5b|lymphocyte antigen-6 G5B 20121230 -9606 58497 PRUNE RP11-316M1.6 DRES-17|DRES17|HTCD37 HGNC:13420|Ensembl:ENSG00000143363|HPRD:15188|Vega:OTTHUMG00000035062 1 1q21 prune homolog (Drosophila) protein-coding PRUNE prune homolog (Drosophila) O Drosophila-related expressed sequence 17|protein prune homolog 20121230 -9606 58498 MYL7 - MYL2A|MYLC2A HGNC:21719|MIM:613993|Ensembl:ENSG00000106631|HPRD:10105|Vega:OTTHUMG00000023125 7 7p21-p11.2 myosin, light chain 7, regulatory protein-coding MYL7 myosin, light chain 7, regulatory O MLC-2a|MLC2a|myosin light chain 2a|myosin regulatory light chain 2, atrial isoform|myosin regulatory light chain 7|myosin, light polypeptide 7, regulatory 20121230 -9606 58499 ZNF462 RP11-508N12.1 Zfp462 HGNC:21684|Ensembl:ENSG00000148143|HPRD:10333|Vega:OTTHUMG00000020438 9 9q31.2 zinc finger protein 462 protein-coding ZNF462 zinc finger protein 462 O - 20121230 -9606 58500 ZNF250 - ZFP647|ZNF647 HGNC:13044|Ensembl:ENSG00000196150|HPRD:15758|Vega:OTTHUMG00000165252 8 8q24.3 zinc finger protein 250 protein-coding ZNF250 zinc finger protein 250 O zinc finger protein (clone 647)|zinc finger protein 647 20121230 -9606 58503 PROL1 - BPLP|PRL1|opiorphin HGNC:17279|MIM:608936|Ensembl:ENSG00000171199|HPRD:16408|Vega:OTTHUMG00000160845 4 4q13.3 proline rich, lacrimal 1 protein-coding PROL1 proline rich, lacrimal 1 O basic proline-rich lacrimal protein|basic proline-rich protein|proline-rich 1|proline-rich protein 1 20121230 -9606 58504 ARHGAP22 - RhoGAP2|RhoGap22 HGNC:30320|MIM:610585|Ensembl:ENSG00000128805|HPRD:12476|Vega:OTTHUMG00000018176 10 10q11.22 Rho GTPase activating protein 22 protein-coding ARHGAP22 Rho GTPase activating protein 22 O rho GTPase-activating protein 22|rho-type GTPase-activating protein 22 20121230 -9606 58505 OSTC DC2 - HGNC:24448|Ensembl:ENSG00000198856|HPRD:13120|Vega:OTTHUMG00000161031 4 4q25 oligosaccharyltransferase complex subunit protein-coding OSTC oligosaccharyltransferase complex subunit O hydrophobic protein HSF-28|oligosaccharyltransferase complex subunit OSTC 20121230 -9606 58506 SCAF1 - SRA1 HGNC:30403|Ensembl:ENSG00000126461|HPRD:11604 19 19q13.3-q13.4 SR-related CTD-associated factor 1 protein-coding SCAF1 SR-related CTD-associated factor 1 O SCAF|SR-related and CTD-associated factor 1|SR-related-CTD-associated factor|serine arginine-rich pre-mRNA splicing factor SR-A1|splicing factor, arginine/serine-rich 19 20121230 -9606 58508 MLL3 - HALR|KMT2C HGNC:13726|MIM:606833|Ensembl:ENSG00000055609|HPRD:06016|Vega:OTTHUMG00000150553 7 7q36.1 myeloid/lymphoid or mixed-lineage leukemia 3 protein-coding MLL3 myeloid/lymphoid or mixed-lineage leukemia 3 O ALR-like protein|histone-lysine N-methyltransferase MLL3|histone-lysine N-methyltransferase, H3 lysine-4 specific|homologous to ALR protein|lysine N-methyltransferase 2C|myeloid/lymphoid or mixed-lineage leukemia protein 3 20121230 -9606 58509 CACTIN - C19orf29|NY-REN-24|fSAPc HGNC:29938|Ensembl:ENSG00000105298|Vega:OTTHUMG00000180808 19 19p13.3 cactin, spliceosome C complex subunit protein-coding CACTIN cactin, spliceosome C complex subunit O NY REN 24 antigen|NY-REN-24 antigen|cactin|cactin homolog|functional spliceosome-associated protein c|renal carcinoma antigen NY-REN-24 20121230 -9606 58510 PRODH2 - HSPOX1 HGNC:17325|Ensembl:ENSG00000250799|HPRD:17911|Vega:OTTHUMG00000180688 19 19q13.1 proline dehydrogenase (oxidase) 2 protein-coding PRODH2 proline dehydrogenase (oxidase) 2 O kidney and liver proline oxidase 1|probable proline dehydrogenase 2|probable proline oxidase 2 20121230 -9606 58511 DNASE2B - DLAD HGNC:28875|MIM:608057|Ensembl:ENSG00000137976|HPRD:09728|Vega:OTTHUMG00000009860 1 1p22.3 deoxyribonuclease II beta protein-coding DNASE2B deoxyribonuclease II beta O DNase II beta|DNase II-like acid DNase|DNase2-like acid DNase|deoxyribonuclease-2-beta|endonuclease DLAD|lysosomal DNase II 20121230 -9606 58512 DLGAP3 - DAP3|SAPAP3 HGNC:30368|MIM:611413|Ensembl:ENSG00000116544|Vega:OTTHUMG00000004049 1 1p35.3-p34.1 discs, large (Drosophila) homolog-associated protein 3 protein-coding DLGAP3 discs, large (Drosophila) homolog-associated protein 3 O DAP-3|PSD-95/SAP90-binding protein 3|SAP90/PSD 95 associated protein 3|SAP90/PSD-95-associated protein 3|disks large-associated protein 3 20121230 -9606 58513 EPS15L1 - EPS15R HGNC:24634|Ensembl:ENSG00000127527|HPRD:09445|Vega:OTTHUMG00000182361 19 19p13.11 epidermal growth factor receptor pathway substrate 15-like 1 protein-coding EPS15L1 epidermal growth factor receptor pathway substrate 15-like 1 O epidermal growth factor receptor substrate 15-like 1|epidermal growth factor receptor substrate EPS15R|eps15-related protein 20121230 -9606 58515 SELK HSPC030 HSPC297 MIM:607916|Ensembl:ENSG00000113811|HPRD:07448|Vega:OTTHUMG00000158656 3 3p21.31 selenoprotein K protein-coding - - - - 20121230 -9606 58516 FAM60A L4 C12orf14|TERA HGNC:30702|Ensembl:ENSG00000139146|HPRD:16588|Vega:OTTHUMG00000168586 12 12p11 family with sequence similarity 60, member A protein-coding FAM60A family with sequence similarity 60, member A O protein FAM60A|tera protein homolog 20121230 -9606 58517 RBM25 - NET52|RED120|RNPC7|S164|Snu71|fSAP94 HGNC:23244|MIM:612427|Ensembl:ENSG00000119707|HPRD:15229|Vega:OTTHUMG00000167540 14 14q24.3 RNA binding motif protein 25 protein-coding RBM25 RNA binding motif protein 25 O Arg/Glu/Asp-rich protein, 120 kDa|RNA-binding motif protein 25|RNA-binding protein 25|RNA-binding region (RNP1, RRM) containing 7|RNA-binding region-containing protein 7|U1 small nuclear ribonucleoprotein 1SNRP homolog|arg/Glu/Asp-rich protein of 120 kDa|functional spliceosome-associated protein 94 20121230 -9606 58524 DMRT3 RP11-143M15.2 DMRTA3 HGNC:13909|MIM:614754|Ensembl:ENSG00000064218|HPRD:16827|Vega:OTTHUMG00000019436 9 9p24.3 doublesex and mab-3 related transcription factor 3 protein-coding DMRT3 doublesex and mab-3 related transcription factor 3 O DMRT-like family A3|doublesex- and mab-3-related transcription factor 3|testis-specific protein 20121230 -9606 58525 WIZ - ZNF803 HGNC:30917|Ensembl:ENSG00000011451 19 19p13.1 widely interspaced zinc finger motifs protein-coding WIZ widely interspaced zinc finger motifs O WIZ zinc finger|protein Wiz|widely-interspaced zinc finger motifs|widely-interspaced zinc finger-containing protein|zinc finger protein 803 20121230 -9606 58526 MID1IP1 - G12-like|MIG12|S14R|STRAIT11499|THRSPL HGNC:20715|Ensembl:ENSG00000165175|HPRD:06732|Vega:OTTHUMG00000024092 X Xp11.4 MID1 interacting protein 1 protein-coding MID1IP1 MID1 interacting protein 1 O MID1 interacting G12-like protein|MID1 interacting protein 1 (gastrulation specific G12-like)|gastrulation specific G12 homolog|gastrulation-specific G12-like protein|mid1-interacting G12-like protein|mid1-interacting protein 1|spot 14-R|spot 14-related protein 20121230 -9606 58527 ABRACL RP11-501K14.2 C6orf115|Costars|HSPC280|PRO2013 HGNC:21230|Ensembl:ENSG00000146386|Vega:OTTHUMG00000015684 6 6q24.1 ABRA C-terminal like protein-coding ABRACL ABRA C-terminal like O ABRA C-terminal-like protein|costars family protein ABRACL 20121230 -9606 58528 RRAGD - RAGD|bA11D8.2.1 HGNC:19903|MIM:608268|Ensembl:ENSG00000025039|HPRD:12199|Vega:OTTHUMG00000015200 6 6q15-q16 Ras-related GTP binding D protein-coding RRAGD Ras-related GTP binding D O Rag D protein|ras-related GTP-binding protein D 20121230 -9606 58529 MYOZ1 - CS-2|FATZ|MYOZ HGNC:13752|MIM:605603|Ensembl:ENSG00000177791|HPRD:05725|Vega:OTTHUMG00000018466 10 10q22.1 myozenin 1 protein-coding MYOZ1 myozenin 1 O calsarcin-2|filamin-, actinin- and telethonin-binding protein|myozenin-1 20121230 -9606 58530 LY6G6D DADB-110M10.6 C6orf23|G6D|LY6-D|MEGT1|NG25 HGNC:13935|MIM:606038|Ensembl:ENSG00000244355|HPRD:16192|Vega:OTTHUMG00000137370 6 6p21.3 lymphocyte antigen 6 complex, locus G6D protein-coding LY6G6D lymphocyte antigen 6 complex, locus G6D O lymphocyte antigen 6 complex locus protein G6d|lymphocyte antigen-6 G6D|megakaryocyte-enhanced gene transcript 1 protein|protein Ly6-D 20121230 -9606 58531 PRM3 - - HGNC:13732|Ensembl:ENSG00000178257|HPRD:17909|Vega:OTTHUMG00000172316 16 16p13.3 protamine 3 protein-coding PRM3 protamine 3 O gene 4|protamine-3|sperm protamine P3 20121230 -9606 58533 SNX6 - MSTP010|TFAF2 HGNC:14970|MIM:606098|Ensembl:ENSG00000129515|HPRD:12086|Vega:OTTHUMG00000140213 14 14q13.1 sorting nexin 6 protein-coding SNX6 sorting nexin 6 O TRAF4-associated factor 2|sorting nexin-6|tumor necrosis factor receptor-associated factor 4(TRAF4)-associated factor 2 20121230 -9606 58538 MPP4 - ALS2CR5|DLG6 HGNC:13680|MIM:606575|Ensembl:ENSG00000082126|HPRD:07360|Vega:OTTHUMG00000154525 2 2q33.2 membrane protein, palmitoylated 4 (MAGUK p55 subfamily member 4) protein-coding MPP4 membrane protein, palmitoylated 4 (MAGUK p55 subfamily member 4) O MAGUK p55 subfamily member 4|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 5 protein|discs large homolog 6|discs, large homolog 6 20121230 -9606 58985 IL22RA1 - CRF2-9|IL22R|IL22R1 HGNC:13700|MIM:605457|Ensembl:ENSG00000142677|HPRD:16108|Vega:OTTHUMG00000003041 1 1p36.11 interleukin 22 receptor, alpha 1 protein-coding IL22RA1 interleukin 22 receptor, alpha 1 O IL-22 receptor subunit alpha-1|IL-22R-alpha-1|IL-22RA1|cytokine receptor class-II member 9|cytokine receptor family 2 member 9|interleukin-22 receptor subunit alpha-1|zcytoR11 20121230 -9606 58986 TMEM8A - M83|TMEM6|TMEM8 HGNC:17205|Ensembl:ENSG00000129925|HPRD:11636|Vega:OTTHUMG00000047996 16 16p13.3 transmembrane protein 8A protein-coding TMEM8A transmembrane protein 8A O five-span transmembrane protein M83|transmembrane protein 6|transmembrane protein 8 (five membrane-spanning domains) 20121230 -9606 59067 IL21 - IL-21|Za11 HGNC:6005|MIM:605384|Ensembl:ENSG00000138684|HPRD:05650|Vega:OTTHUMG00000133073 4 4q26-q27 interleukin 21 protein-coding IL21 interleukin 21 O interleukin-21|interleukin-21 isoform 20121230 -9606 59081 MNG2 - - MIM:300273 X Xp22 multinodular goiter 2 unknown - - - - 20120622 -9606 59082 CARD18 UNQ5804/PRO19611 ICEBERG|UNQ5804|pseudo-ICE HGNC:28861|MIM:605354|Ensembl:ENSG00000255501|HPRD:16099|Vega:OTTHUMG00000166165 11 11q22.3 caspase recruitment domain family, member 18 protein-coding CARD18 caspase recruitment domain family, member 18 O ICEBERG caspase-1 inhibitor|caspase recruitment domain-containing protein 18|caspase-1 inhibitor Iceberg 20121230 -9606 59084 ENPP5 UNQ550/PRO1107 - HGNC:13717|Ensembl:ENSG00000112796|HPRD:13272|Vega:OTTHUMG00000014781 6 6p21.1-p11.2 ectonucleotide pyrophosphatase/phosphodiesterase 5 (putative) protein-coding ENPP5 ectonucleotide pyrophosphatase/phosphodiesterase 5 (putative) O E-NPP 5|NPP-5|ectonucleotide pyrophosphatase/phosphodiesterase 5 (putative function)|ectonucleotide pyrophosphatase/phosphodiesterase family member 5 20121230 -9606 59269 HIVEP3 - KBP-1|KBP1|KRC|SHN3|Schnurri-3|ZAS3|ZNF40C HGNC:13561|MIM:606649|Ensembl:ENSG00000127124|HPRD:09442|Vega:OTTHUMG00000006361 1 1p34 human immunodeficiency virus type I enhancer binding protein 3 protein-coding HIVEP3 human immunodeficiency virus type I enhancer binding protein 3 O ZAS family, member 3|kappa-B and V(D)J recombination signal sequences-binding protein|kappa-binding protein 1|transcription factor HIVEP3|zinc finger protein ZAS3 20121230 -9606 59271 EVA1C PRED34 B18|B19|C21orf63|C21orf64|FAM176C|SUE21 HGNC:13239|Ensembl:ENSG00000166979|HPRD:10760|Vega:OTTHUMG00000064922 21 21q22.11 eva-1 homolog C (C. elegans) protein-coding EVA1C eva-1 homolog C (C. elegans) O family with sequence similarity 176, member C|protein FAM176C 20121230 -9606 59272 ACE2 UNQ868/PRO1885 ACEH HGNC:13557|MIM:300335|Ensembl:ENSG00000130234|HPRD:02274|Vega:OTTHUMG00000021177 X Xp22 angiotensin I converting enzyme (peptidyl-dipeptidase A) 2 protein-coding ACE2 angiotensin I converting enzyme (peptidyl-dipeptidase A) 2 O ACE-related carboxypeptidase|angiotensin I converting enzyme 2|angiotensin-converting enzyme 2|angiotensin-converting enzyme homolog|metalloprotease MPROT15 20121230 -9606 59274 MESDC1 - - HGNC:13519|Ensembl:ENSG00000140406|HPRD:11300|Vega:OTTHUMG00000144185 15 15q13 mesoderm development candidate 1 protein-coding MESDC1 mesoderm development candidate 1 O - 20121230 -9606 59277 NTN4 - PRO3091 HGNC:13658|MIM:610401|Ensembl:ENSG00000074527|HPRD:10121|Vega:OTTHUMG00000170290 12 12q22 netrin 4 protein-coding NTN4 netrin 4 O beta-netrin|hepar-derived netrin-like protein|netrin-4 20121230 -9606 59283 CACNG8 - - HGNC:13628|MIM:606900|Ensembl:ENSG00000142408|HPRD:06063|Vega:OTTHUMG00000064908 19 19q13.4 calcium channel, voltage-dependent, gamma subunit 8 protein-coding CACNG8 calcium channel, voltage-dependent, gamma subunit 8 O TARP gamma-8|neuronal voltage-gated calcium channel gamma-8 subunit|transmembrane AMPAR regulatory protein gamma-8|voltage-dependent calcium channel gamma-8 subunit 20121230 -9606 59284 CACNG7 - - HGNC:13626|MIM:606899|Ensembl:ENSG00000105605|HPRD:06062|Vega:OTTHUMG00000064852 19 19q13.4 calcium channel, voltage-dependent, gamma subunit 7 protein-coding CACNG7 calcium channel, voltage-dependent, gamma subunit 7 O TARP gamma-7|neuronal voltage-gated calcium channel gamma-7 subunit|transmembrane AMPAR regulatory protein gamma-7|voltage-dependent calcium channel gamma-7 subunit 20121230 -9606 59285 CACNG6 - - HGNC:13625|MIM:606898|Ensembl:ENSG00000130433|HPRD:06061|Vega:OTTHUMG00000064907 19 19q13.4 calcium channel, voltage-dependent, gamma subunit 6 protein-coding CACNG6 calcium channel, voltage-dependent, gamma subunit 6 O neuronal voltage-gated calcium channel gamma-6 subunit|voltage-dependent calcium channel gamma-6 subunit 20121230 -9606 59286 UBL5 - HUB1 HGNC:13736|MIM:606849|Ensembl:ENSG00000198258|HPRD:06028|Vega:OTTHUMG00000180214 19 19p13.3 ubiquitin-like 5 protein-coding UBL5 ubiquitin-like 5 O beacon|ubiquitin-like protein 5 20121230 -9606 59307 SIGIRR UNQ301/PRO342 TIR8 HGNC:30575|MIM:605478|Ensembl:ENSG00000185187|HPRD:12018|Vega:OTTHUMG00000165412 11 11p15.5 single immunoglobulin and toll-interleukin 1 receptor (TIR) domain protein-coding SIGIRR single immunoglobulin and toll-interleukin 1 receptor (TIR) domain O single Ig IL-1-related receptor|single Ig IL-1R-related molecule|single immunoglobulin domain IL1R1 related|single immunoglobulin domain-containing IL1R-related protein|toll/interleukin-1 receptor 8 20121230 -9606 59330 GER - - MIM:109350 13 13q14 Gastroesophageal reflux unknown - - - - 20120622 -9606 59331 RFH1 - AORF MIM:161900 1 1q21 Renal failure, progressive, with hypertension unknown - - - - 20120622 -9606 59332 VSPA - - MIM:313000 X Xp22.33 Visuospatial/perceptual abilities unknown - - - - 20120622 -9606 59333 NMSR - HMSNR MIM:605285 10 10q23.2 Neuropathy, hereditary motor and sensory, Russe type unknown - - - - 20120622 -9606 59335 PRDM12 RP11-57C19.7 PFM9 HGNC:13997|Ensembl:ENSG00000130711|HPRD:17900|Vega:OTTHUMG00000020808 9 9q33-q34 PR domain containing 12 protein-coding PRDM12 PR domain containing 12 O PR domain zinc finger protein 12|PR domain-containing protein 12|PR-domain containing protein 12|PR-domain zinc finger protein 12 20121230 -9606 59336 PRDM13 RP4-626B19.1 MU-MB-20.220|PFM10 HGNC:13998|Ensembl:ENSG00000112238|HPRD:17901|Vega:OTTHUMG00000015269 6 6q16.2 PR domain containing 13 protein-coding PRDM13 PR domain containing 13 O PR domain zinc finger protein 13|PR domain-containing protein 13|PR-domain containing protein 13|PR-domain zinc finger protein 13 20121230 -9606 59338 PLEKHA1 RP11-436O19__A.1 TAPP1 HGNC:14335|MIM:607772|Ensembl:ENSG00000107679|HPRD:09686|Vega:OTTHUMG00000019184 10 10q26.13 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 1 protein-coding PLEKHA1 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 1 O pleckstrin homology domain-containing family A member 1|tandem PH domain-containing protein 1 20121230 -9606 59339 PLEKHA2 - TAPP2 HGNC:14336|MIM:607773|Ensembl:ENSG00000169499 8 8p11.22 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 2 protein-coding PLEKHA2 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 2 O PH domain-containing family A member 2|TAPP-2|pleckstrin homology domain-containing family A member 2|pleckstrin homology domain-containing, family A (phosphoinositide binding specific) member 2|tandem PH Domain containing protein-2|tandem PH domain-containing protein 2 20121230 -9606 59340 HRH4 - AXOR35|BG26|GPCR105|GPRv53|H4|H4R|HH4R HGNC:17383|MIM:606792|Ensembl:ENSG00000134489|HPRD:06004|Vega:OTTHUMG00000131945 18 18q11.2 histamine receptor H4 protein-coding HRH4 histamine receptor H4 O G-protein coupled receptor 105|SP9144|histamine H4 receptor|pfi-013 20121230 -9606 59341 TRPV4 - CMT2C|HMSN2C|OTRPC4|SMAL|SPSMA|SSQTL1|TRP12|VRL2|VROAC HGNC:18083|MIM:605427|Ensembl:ENSG00000111199|HPRD:05667|Vega:OTTHUMG00000169277 12 12q24.1 transient receptor potential cation channel, subfamily V, member 4 protein-coding TRPV4 transient receptor potential cation channel, subfamily V, member 4 O OSM9-like transient receptor potential channel 4|osm-9-like TRP channel 4|osmosensitive transient receptor potential channel 4|transient receptor potential cation channel subfamily V member 4|transient receptor potential protein 12|vanilloid receptor-like channel 2|vanilloid receptor-related osmotically activated channel 20121230 -9606 59342 SCPEP1 MSTP034 HSCP1|RISC HGNC:29507|Ensembl:ENSG00000121064|HPRD:10194|Vega:OTTHUMG00000178129 17 17q22 serine carboxypeptidase 1 protein-coding SCPEP1 serine carboxypeptidase 1 O retinoid inducible serine carboxypeptidase|retinoid-inducible serine carboxypeptidase|serine carboxypeptidase 1 precursor protein 20121230 -9606 59343 SENP2 - AXAM2|SMT3IP2 HGNC:23116|MIM:608261|Ensembl:ENSG00000163904|HPRD:07002|Vega:OTTHUMG00000156658 3 3q27.2 SUMO1/sentrin/SMT3 specific peptidase 2 protein-coding SENP2 SUMO1/sentrin/SMT3 specific peptidase 2 O SMT3-specific isopeptidase 2|SUMO1/sentrin/SMT3 specific protease 2|sentrin-specific protease 2|sentrin/SUMO-specific protease SENP2 20121230 -9606 59344 ALOXE3 - E-LOX|eLOX3 HGNC:13743|MIM:607206|Ensembl:ENSG00000179148|HPRD:06231|Vega:OTTHUMG00000108179 17 17p13.1 arachidonate lipoxygenase 3 protein-coding ALOXE3 arachidonate lipoxygenase 3 O e-LOX-3|epidermal lipoxygenase|epidermis-type lipoxygenase 3 20121230 -9606 59345 GNB4 - - HGNC:20731|MIM:610863|Ensembl:ENSG00000114450|HPRD:09973|Vega:OTTHUMG00000157440 3 3q26.33 guanine nucleotide binding protein (G protein), beta polypeptide 4 protein-coding GNB4 guanine nucleotide binding protein (G protein), beta polypeptide 4 O G protein beta-4 subunit|guanine nucleotide binding protein beta subunit 4|guanine nucleotide-binding protein subunit beta-4|transducin beta chain 4 20121230 -9606 59347 FKSG2 FKSG2 - HPRD:16902 8 8p11.2 tumor protein, translationally-controlled 1 pseudogene pseudo - - - - 20121230 -9606 59348 ZNF350 - ZBRK1|ZFQR HGNC:16656|MIM:605422|Ensembl:ENSG00000256683|HPRD:05663 19 19q13.41 zinc finger protein 350 protein-coding ZNF350 zinc finger protein 350 O KRAB zinc finger protein ZFQR|zinc finger and BRCA1-interacting protein with a KRAB domain 1|zinc finger protein ZBRK1|zinc-finger protein ZBRK1 20121230 -9606 59349 KLHL12 - C3IP1|DKIR|hDKIR HGNC:19360|MIM:614522|Ensembl:ENSG00000117153|HPRD:13925|Vega:OTTHUMG00000041385 1 1q32.1 kelch-like 12 (Drosophila) protein-coding KLHL12 kelch-like 12 (Drosophila) O CUL3-interacting protein 1|DKIR homolog|kelch-like protein 12|kelch-like protein C3IP1 20121230 -9606 59350 RXFP1 - LGR7|RXFPR1 HGNC:19718|MIM:606654|Ensembl:ENSG00000171509|HPRD:05975|Vega:OTTHUMG00000149973 4 4q32.1 relaxin/insulin-like family peptide receptor 1 protein-coding RXFP1 relaxin/insulin-like family peptide receptor 1 O leucine-rich repeat-containing G protein-coupled receptor 7|relaxin receptor 1 20121230 -9606 59351 PBOV1 - UC28|UROC28|dJ171N11.2 HGNC:21079|MIM:605669|Ensembl:ENSG00000254440|HPRD:16137|Vega:OTTHUMG00000167040 6 6q23.3 prostate and breast cancer overexpressed 1 protein-coding PBOV1 prostate and breast cancer overexpressed 1 O prostate and breast cancer overexpressed gene 1 protein 20121230 -9606 59352 LGR6 RP11-572A16.3 GPCR|VTS20631 HGNC:19719|MIM:606653|Ensembl:ENSG00000133067|HPRD:05974|Vega:OTTHUMG00000041383 1 1q32.1 leucine-rich repeat containing G protein-coupled receptor 6 protein-coding LGR6 leucine-rich repeat containing G protein-coupled receptor 6 O gonadotropin receptor|leucine-rich repeat-containing G protein-coupled receptor 6|leucine-rich repeat-containing G-protein coupled receptor 6 20121230 -9606 59353 TMEM35 RP4-664K17.3 - HGNC:25864|Ensembl:ENSG00000126950|HPRD:06523|Vega:OTTHUMG00000022016 X Xq22.1 transmembrane protein 35 protein-coding TMEM35 transmembrane protein 35 O - 20121230 -9606 60312 AFAP1 - AFAP|AFAP-110|AFAP110 HGNC:24017|MIM:608252|Ensembl:ENSG00000196526|HPRD:09747|Vega:OTTHUMG00000125515 4 4p16 actin filament associated protein 1 protein-coding AFAP1 actin filament associated protein 1 O 110 kDa actin filament-associated protein|actin filament-associated protein 1|actin filament-associated protein, 110 kDa 20121230 -9606 60313 GPBP1L1 SP192 RP11-767N6.1 HGNC:28843|Ensembl:ENSG00000159592|HPRD:15418|Vega:OTTHUMG00000040990 1 1p34.1 GC-rich promoter binding protein 1-like 1 protein-coding GPBP1L1 GC-rich promoter binding protein 1-like 1 O GC-rich promoter-binding protein 1-like 1|vasculin-like protein 1 20121230 -9606 60314 C12orf10 - MST024|MSTP024|MYG|MYG1 HGNC:17590|MIM:611366|Ensembl:ENSG00000139637|HPRD:10705|Vega:OTTHUMG00000170030 12 12q13 chromosome 12 open reading frame 10 protein-coding C12orf10 chromosome 12 open reading frame 10 O UPF0160 protein MYG1, mitochondrial|melanocyte related 20121230 -9606 60343 FAM3A XX-FW89031B12.3 2.19|DLD|DXS560S|XAP-7 HGNC:13749|MIM:300492|Ensembl:ENSG00000071889|HPRD:06505|Vega:OTTHUMG00000013418 X Xq28 family with sequence similarity 3, member A protein-coding FAM3A family with sequence similarity 3, member A O cytokine-like protein 2-19|protein FAM3A 20121230 -9606 60358 ERVK-5 - ERVK5|HERV-K(II)|HERV-KII HGNC:13757|MIM:614012 3 3q12.3 endogenous retrovirus group K, member 5 unknown ERVK-5 endogenous retrovirus group K, member 5 O - 20121211 -9606 60359 ERVK-4 - ERVK4|HERV-K(I)|HERV-KI HGNC:13756|MIM:614011 3 3q21.2 endogenous retrovirus group K, member 4 unknown ERVK-4 endogenous retrovirus group K, member 4 O - 20121017 -9606 60370 AVPI1 NPD013 PP5395|RP11-548K23.7|VIP32|VIT32 HGNC:30898|Ensembl:ENSG00000119986|HPRD:16530|Vega:OTTHUMG00000018864 10 10q24.2 arginine vasopressin-induced 1 protein-coding AVPI1 arginine vasopressin-induced 1 O AVP-induced protein 1|arginine vasopressin-induced protein 1|vasopressin-induced transcript 20121230 -9606 60385 TSKS - STK22S1|TSKS1|TSSKS HGNC:30719|MIM:608253|Ensembl:ENSG00000126467|HPRD:09748 19 19q13.3 testis-specific serine kinase substrate protein-coding TSKS testis-specific serine kinase substrate O STK22 substrate 1|testis specific serine/threonine kinase substrate|testis-specific kinase substrate 20121230 -9606 60386 SLC25A19 - DNC|MCPHA|MUP1|THMD3|THMD4|TPC HGNC:14409|MIM:606521|Ensembl:ENSG00000125454|HPRD:08405|Vega:OTTHUMG00000179607 17 17q25.3 solute carrier family 25 (mitochondrial thiamine pyrophosphate carrier), member 19 protein-coding SLC25A19 solute carrier family 25 (mitochondrial thiamine pyrophosphate carrier), member 19 O microcephaly, Amish|mitochondrial thiamine pyrophosphate carrier|mitochondrial uncoupling protein 1|solute carrier family 25 (mitochondrial deoxynucleotide carrier), member 19 20121230 -9606 60401 EDA2R UNQ2448/PRO5727/PRO34080 EDA-A2R|EDAA2R|TNFRSF27|XEDAR HGNC:17756|MIM:300276|Ensembl:ENSG00000131080|HPRD:02230|Vega:OTTHUMG00000021736 X Xq12 ectodysplasin A2 receptor protein-coding EDA2R ectodysplasin A2 receptor O EDA-A2 receptor|X-linked ectodysplasin-A2 receptor|tumor necrosis factor receptor superfamily member 27|tumor necrosis factor receptor superfamily member XEDAR 20121230 -9606 60412 EXOC4 tcag7.1185 SEC8|SEC8L1|Sec8p HGNC:30389|MIM:608185|Ensembl:ENSG00000131558|HPRD:12185|Vega:OTTHUMG00000155259 7 7q31 exocyst complex component 4 protein-coding EXOC4 exocyst complex component 4 O SEC8-like 1|exocyst complex component Sec8 20121230 -9606 60436 TGIF2 - - HGNC:15764|MIM:607294|Ensembl:ENSG00000118707|HPRD:06293|Vega:OTTHUMG00000032382|Vega:OTTHUMG00000172332 20 20q11.23 TGFB-induced factor homeobox 2 protein-coding TGIF2 TGFB-induced factor homeobox 2 O 5'-TG-3' interacting factor 2|TGF(beta)-induced transcription factor 2|TGF-beta-induced transcription factor 2|TGFB-induced factor 2 (TALE family homeobox)|homeobox protein TGIF2|transcription growth factor-beta-induced factor 2 20121230 -9606 60437 CDH26 RP4-551D2.3 VR20 HGNC:15902|Ensembl:ENSG00000124215|HPRD:13020|Vega:OTTHUMG00000032874 20 20q13.33 cadherin 26 protein-coding CDH26 cadherin 26 O cadherin-like 26|cadherin-like protein 26|cadherin-like protein VR20 20121230 -9606 60439 TTTY2 - NCRNA00109|TTY2|lINC00109 HGNC:14023 Y Yp11.2 testis-specific transcript, Y-linked 2 (non-protein coding) miscRNA TTTY2 testis-specific transcript, Y-linked 2 (non-protein coding) O - 20121209 -9606 60454 PARK4 - - HGNC:13794|MIM:605543 4 4p15 Parkinson disease (autosomal dominant, Lewy body) 4 unknown PARK4 Parkinson disease (autosomal dominant, Lewy body) 4 O - 20110215 -9606 60467 BPESC1 - NCRNA00187 HGNC:13228|HPRD:16559 3 3q23 blepharophimosis, epicanthus inversus and ptosis, candidate 1 (non-protein coding) miscRNA BPESC1 blepharophimosis, epicanthus inversus and ptosis, candidate 1 (non-protein coding) O - 20121230 -9606 60468 BACH2 RP11-63K6.2 - HGNC:14078|MIM:605394|Ensembl:ENSG00000112182|HPRD:12012|Vega:OTTHUMG00000015216 6 6q15 BTB and CNC homology 1, basic leucine zipper transcription factor 2 protein-coding BACH2 BTB and CNC homology 1, basic leucine zipper transcription factor 2 O BTB and CNC homolog 2|transcription regulator protein BACH2 20121230 -9606 60481 ELOVL5 RP3-483K16.1 HELO1|dJ483K16.1 HGNC:21308|MIM:611805|Ensembl:ENSG00000012660|HPRD:13268|Vega:OTTHUMG00000016249 6 6p21.1-p12.1 ELOVL fatty acid elongase 5 protein-coding ELOVL5 ELOVL fatty acid elongase 5 O 3-keto acyl-CoA synthase ELOVL5|ELOVL FA elongase 5|ELOVL family member 5, elongation of long chain fatty acids (FEN1/Elo2, SUR4/Elo3-like, yeast)|elongation of very long chain fatty acids protein 5|fatty acid elongase 1|homolog of yeast long chain polyunsaturated fatty acid elongatio|homolog of yeast long chain polyunsaturated fatty acid elongation enzyme 2 20121230 -9606 60482 SLC5A7 - CHT|CHT1|hCHT HGNC:14025|MIM:608761|Ensembl:ENSG00000115665|HPRD:12294|Vega:OTTHUMG00000130959 2 2q12 solute carrier family 5 (choline transporter), member 7 protein-coding SLC5A7 solute carrier family 5 (choline transporter), member 7 O hemicholinium-3-sensitive choline transporter|high affinity choline transporter 1|high affinity choline transporter; hemicholinium-3-sensitive choline transporter|solute carrier family 5 member 7 20121230 -9606 60484 HAPLN2 RP11-284F21.6 BRAL1 HGNC:17410|Ensembl:ENSG00000132702|HPRD:17088|Vega:OTTHUMG00000033205 1 1q23.1 hyaluronan and proteoglycan link protein 2 protein-coding HAPLN2 hyaluronan and proteoglycan link protein 2 O brain link protein 1|brain link protein-1 20121230 -9606 60485 SAV1 - SAV|WW45|WWP4 HGNC:17795|MIM:607203|Ensembl:ENSG00000151748|HPRD:06229|Vega:OTTHUMG00000140293 14 14q13-q23 salvador homolog 1 (Drosophila) protein-coding SAV1 salvador homolog 1 (Drosophila) O 1700040G09Rik|45 kDa WW domain protein|WW domain-containing|hWW45|protein salvador homolog 1 20121230 -9606 60487 TRMT11 RP1-187J11.2 C6orf75|MDS024|TRM11|TRMT11-1 HGNC:21080|Ensembl:ENSG00000066651|HPRD:12898|Vega:OTTHUMG00000015515 6 6q11.1-q22.33 tRNA methyltransferase 11 homolog (S. cerevisiae) protein-coding TRMT11 tRNA methyltransferase 11 homolog (S. cerevisiae) O tRNA (guanine(10)-N2)-methyltransferase homolog|tRNA guanosine-2'-O-methyltransferase TRM11 homolog 20121230 -9606 60488 MRPS35 HDCMD11P MDS023|MRP-S28|MRPS28 HGNC:16635|MIM:611995|Ensembl:ENSG00000061794|HPRD:11373|Vega:OTTHUMG00000169215 12 12p11 mitochondrial ribosomal protein S35 protein-coding MRPS35 mitochondrial ribosomal protein S35 O 28S ribosomal protein S28, mitochondrial|28S ribosomal protein S35, mitochondrial|MRP-S35|S28mt|S35mt|mitochondrial ribosomal protein S28 20121230 -9606 60489 APOBEC3G MDS019 ARCD|ARP-9|ARP9|CEM-15|CEM15|bK150C2.7|dJ494G10.1 HGNC:17357|MIM:607113|Ensembl:ENSG00000239713|HPRD:06172|Vega:OTTHUMG00000151081 22 22q13.1-q13.2 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3G protein-coding APOBEC3G apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3G O APOBEC-related cytidine deaminase|APOBEC-related protein 9|DNA dC->dU editing enzyme|DNA dC->dU-editing enzyme APOBEC-3G|apolipoprotein B mRNA editing enzyme cytidine deaminase|deoxycytidine deaminase|phorbolin-like protein MDS019 20121230 -9606 60490 PPCDC MDS018 - HGNC:28107|MIM:609854|Ensembl:ENSG00000138621|HPRD:14377|Vega:OTTHUMG00000142824 15 15q24.2 phosphopantothenoylcysteine decarboxylase protein-coding PPCDC phosphopantothenoylcysteine decarboxylase O PPC-DC|coaC 20121230 -9606 60491 NIF3L1 MDS015 ALS2CR1|CALS-7 HGNC:13390|MIM:605778|Ensembl:ENSG00000196290|HPRD:10424|Vega:OTTHUMG00000154588 2 2q33 NIF3 NGG1 interacting factor 3-like 1 (S. cerevisiae) protein-coding NIF3L1 NIF3 NGG1 interacting factor 3-like 1 (S. cerevisiae) O NIF3 (Ngg1 interacting factor 3, S.pombe homolog)-like 1|NIF3-like protein 1|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 1|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 1 protein 20121230 -9606 60492 CCDC90B CUA003 MDS011|MDS025 HGNC:28108|Ensembl:ENSG00000137500|HPRD:14378|Vega:OTTHUMG00000167078 11 11q14.1 coiled-coil domain containing 90B protein-coding CCDC90B coiled-coil domain containing 90B O coiled-coil domain-containing protein 90B, mitochondrial 20121230 -9606 60493 FASTKD5 - dJ1187M17.5 HGNC:25790|MIM:614272|Ensembl:ENSG00000215251|HPRD:07813|Vega:OTTHUMG00000031727 20 20p13 FAST kinase domains 5 protein-coding FASTKD5 FAST kinase domains 5 O FAST kinase domain-containing protein 5 20121230 -9606 60494 CCDC81 - - HGNC:26281|Ensembl:ENSG00000149201|HPRD:08032|Vega:OTTHUMG00000167213 11 11q14.2 coiled-coil domain containing 81 protein-coding CCDC81 coiled-coil domain containing 81 O coiled-coil domain-containing protein 81 20121230 -9606 60495 HPSE2 - HPA2|HPR2|UFS HGNC:18374|MIM:613469|Ensembl:ENSG00000172987|HPRD:13669|Vega:OTTHUMG00000018880 10 10q23-q24 heparanase 2 protein-coding HPSE2 heparanase 2 O heparanase 3|heparanase-like protein|inactive heparanase-2 20121230 -9606 60496 AASDHPPT CGI-80 AASD-PPT|LYS2|LYS5 HGNC:14235|MIM:607756|Ensembl:ENSG00000149313|HPRD:09675|Vega:OTTHUMG00000166253 11 11q22 aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase protein-coding AASDHPPT aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase O 4'-phosphopantetheinyl transferase|L-aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase|LYS5 ortholog|alpha-aminoadipic semialdehyde dehydrogenase-phosphopantetheinyl transferase 20121230 -9606 60498 IGAN - IGAN1 MIM:161950 6 6q22-q23 IgA nephropathy unknown - - - - 20120622 -9606 60500 BRCA3 - BRCAX HGNC:18617|MIM:605365 13 13q21 breast cancer 3 unknown BRCA3 breast cancer 3 O - 20120411 -9606 60502 CPAT1 - ACP HGNC:30998|MIM:605388 9 9p12-q12 cerebral palsy, ataxic 1 unknown CPAT1 cerebral palsy, ataxic 1 O - 20120622 -9606 60506 NYX - CLRP|CSNB1|CSNB1A|CSNB4|NBM1 HGNC:8082|MIM:300278|Ensembl:ENSG00000188937|HPRD:02232|Vega:OTTHUMG00000021370 X Xp11.4 nyctalopin protein-coding NYX nyctalopin O leucine-rich repeat protein 20121230 -9606 60509 AGBL5 - - HGNC:26147|Ensembl:ENSG00000084693|HPRD:07968|Vega:OTTHUMG00000128406 2 2p23.3 ATP/GTP binding protein-like 5 protein-coding AGBL5 ATP/GTP binding protein-like 5 O ATP/GTP-binding protein-like 5|cytosolic carboxypeptidase-like protein 5 20121230 -9606 60526 C2orf43 - - HGNC:26145|MIM:613570|Ensembl:ENSG00000118961|HPRD:07113|Vega:OTTHUMG00000122097 2 2p24.1 chromosome 2 open reading frame 43 protein-coding C2orf43 chromosome 2 open reading frame 43 O UPF0554 protein C2orf43 20121230 -9606 60528 ELAC2 - ELC2|HPC2 HGNC:14198|MIM:605367|Ensembl:ENSG00000006744|HPRD:05641|Vega:OTTHUMG00000058764 17 17p11.2 elaC homolog 2 (E. coli) protein-coding ELAC2 elaC homolog 2 (E. coli) O RNase Z 2|elaC homolog protein 2|heredity prostate cancer protein 2|putative prostate cancer susceptibility protein HPC2/ELAC2|ribonuclease Z 2|tRNA 3 endonuclease 2|tRNase Z (long form)|tRNase Z 2|zinc phosphodiesterase ELAC protein 2 20121230 -9606 60529 ALX4 - FND2 HGNC:450|MIM:605420|Ensembl:ENSG00000052850|HPRD:05661|Vega:OTTHUMG00000166557 11 11p11.2 ALX homeobox 4 protein-coding ALX4 ALX homeobox 4 O aristaless-like homeobox 4|homeobox protein aristaless-like 4|homeodomain transcription factor ALX4 20121230 -9606 60558 GUF1 - EF-4 HGNC:25799|Ensembl:ENSG00000151806|HPRD:07821|Vega:OTTHUMG00000128608 4 4p12 GUF1 GTPase homolog (S. cerevisiae) protein-coding GUF1 GUF1 GTPase homolog (S. cerevisiae) O GTP-binding protein GUF1 homolog|GTPase GUF1|GTPase of unknown function 1|elongation factor 4 homolog|ribosomal back-translocase|translation factor GUF1, mitochondrial 20121230 -9606 60559 SPCS3 UNQ1841/PRO3567 PRO3567|SPC22/23|SPC3|YLR066W HGNC:26212|Ensembl:ENSG00000129128|HPRD:08001|Vega:OTTHUMG00000160789 4 4q34.2 signal peptidase complex subunit 3 homolog (S. cerevisiae) protein-coding SPCS3 signal peptidase complex subunit 3 homolog (S. cerevisiae) O SPase 22 kDa subunit|SPase 22/23 kDa subunit|microsomal signal peptidase 22/23 kDa subunit|microsomal signal peptidase 23 kDa subunit|signal peptidase complex subunit 3 20121230 -9606 60560 NAA35 RP11-379P1.1 MAK10|bA379P1.1 HGNC:24340|Ensembl:ENSG00000135040|HPRD:11291|Vega:OTTHUMG00000020131 9 9q21.33 N(alpha)-acetyltransferase 35, NatC auxiliary subunit protein-coding NAA35 N(alpha)-acetyltransferase 35, NatC auxiliary subunit O MAK10 homolog, amino-acid N-acetyltransferase subunit|N-alpha-acetyltransferase 35, NatC auxiliary subunit|corneal wound healing-related protein|embryonic growth-associated protein homolog|protein MAK10 homolog 20121230 -9606 60561 RINT1 - RINT-1 HGNC:21876|MIM:610089|Ensembl:ENSG00000135249|HPRD:15250|Vega:OTTHUMG00000157400 7 7q22.3 RAD50 interactor 1 protein-coding RINT1 RAD50 interactor 1 O RAD50-interacting protein 1|hsRINT-1 20121230 -9606 60592 SCOC HRIHFB2072 SCOCO HGNC:20335|Ensembl:ENSG00000153130|HPRD:18027|Vega:OTTHUMG00000133416 4 4q31.1 short coiled-coil protein protein-coding SCOC short coiled-coil protein O short coiled coil protein 20121230 -9606 60598 KCNK15 - K2p15.1|KCNK11|KCNK14|KT3.3|TASK-5|TASK5|dJ781B1.1 HGNC:13814|MIM:607368|Ensembl:ENSG00000124249|HPRD:09564|Vega:OTTHUMG00000032544 20 20q13.12 potassium channel, subfamily K, member 15 protein-coding KCNK15 potassium channel, subfamily K, member 15 O TWIK-related acid-sensitive K(+) channel 5|acid-sensitive potassium channel protein TASK-5|potassium channel subfamily K member 15|potassium channel, subfamily K, member 14|two pore K(+) channel KT3.3|two pore potassium channel KT3.3 20121230 -9606 60625 DHX35 RP4-616B8.3 C20orf15|DDX35|KAIA0875 HGNC:15861|Ensembl:ENSG00000101452|HPRD:13145|Vega:OTTHUMG00000032463 20 20q11.22-q12 DEAH (Asp-Glu-Ala-His) box polypeptide 35 protein-coding DHX35 DEAH (Asp-Glu-Ala-His) box polypeptide 35 O DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 35|DEAH box protein 35|DEAH-box protein 35|probable ATP-dependent RNA helicase DHX35 20121230 -9606 60626 RIC8A - RIC8 HGNC:29550|MIM:609146|Ensembl:ENSG00000177963|HPRD:12373|Vega:OTTHUMG00000119069 11 11p15.5 resistance to inhibitors of cholinesterase 8 homolog A (C. elegans) protein-coding RIC8A resistance to inhibitors of cholinesterase 8 homolog A (C. elegans) O synembryn|synembryn-A 20121230 -9606 60672 MIIP RP5-1077B9.4 IIP45 HGNC:25715|MIM:608772|Ensembl:ENSG00000116691|HPRD:07768|Vega:OTTHUMG00000002439 1 1p36.22 migration and invasion inhibitory protein protein-coding MIIP migration and invasion inhibitory protein O IGFBP2-binding protein|invasion-inhibitory protein 45|migration and invasion-inhibitory protein 20121230 -9606 60673 C12orf44 PP894 ATG101 HGNC:25679|Ensembl:ENSG00000123395|HPRD:08566|Vega:OTTHUMG00000169611 12 12q13.13 chromosome 12 open reading frame 44 protein-coding C12orf44 chromosome 12 open reading frame 44 O Atg13-interacting protein|autophagy-related protein 101 20121230 -9606 60674 GAS5 - NCRNA00030|SNHG2 HGNC:16355|MIM:608280 1 1q25.1 growth arrest-specific 5 (non-protein coding) miscRNA GAS5 growth arrest-specific 5 (non-protein coding) O - 20121230 -9606 60675 PROK2 - BV8|HH4|KAL4|MIT1|PK2 HGNC:18455|MIM:607002|Ensembl:ENSG00000163421|HPRD:08446|Vega:OTTHUMG00000158809 3 3p13 prokineticin 2 protein-coding PROK2 prokineticin 2 O prokineticin-2|protein Bv8 homolog 20121230 -9606 60676 PAPPA2 RP4-774I24.1 PAPP-A2|PAPP-E|PAPPE|PLAC3 HGNC:14615|Ensembl:ENSG00000116183|HPRD:10156|Vega:OTTHUMG00000035025 1 1q23-q25 pappalysin 2 protein-coding PAPPA2 pappalysin 2 O pappalysin-2|placenta-specific 3|pregnancy-associated plasma preproprotein-A2|pregnancy-associated plasma protein E1 20121230 -9606 60677 CELF6 - BRUNOL6 HGNC:14059|MIM:612681|Ensembl:ENSG00000140488|HPRD:10691|Vega:OTTHUMG00000133444 15 15q24 CUGBP, Elav-like family member 6 protein-coding CELF6 CUGBP, Elav-like family member 6 O Bruno -like 6, RNA binding protein|CELF-6|CUG-BP and ETR-3 like factor 6|CUG-BP- and ETR-3-like factor 6|CUGBP Elav-like family member 6|RNA-binding protein BRUNOL-6|bruno-like 6, RNA binding protein|bruno-like protein 6 20121230 -9606 60678 EEFSEC - EFSEC|SELB HGNC:24614|MIM:607695|Ensembl:ENSG00000132394|HPRD:07409|Vega:OTTHUMG00000159659 3 3q21.3 eukaryotic elongation factor, selenocysteine-tRNA-specific protein-coding EEFSEC eukaryotic elongation factor, selenocysteine-tRNA-specific O elongation factor for selenoprotein translation|elongation factor sec|selenocysteine-specific elongation factor 20121230 -9606 60680 CELF5 - BRUNOL-5|BRUNOL5|CELF-5 HGNC:14058|MIM:612680|Ensembl:ENSG00000161082|HPRD:12535|Vega:OTTHUMG00000180693 19 19p13 CUGBP, Elav-like family member 5 protein-coding CELF5 CUGBP, Elav-like family member 5 O CUG-BP and ETR-3 like factor 5|CUGBP Elav-like family member 5|RNA-binding protein BRUNOL-5|bruno-like 5 RNA binding protein 20121230 -9606 60681 FKBP10 PSEC0056 FKBP65|OI11|OI6|PPIASE|hFKBP65 HGNC:18169|MIM:607063|Ensembl:ENSG00000141756|HPRD:09522|Vega:OTTHUMG00000133497 17 17q21.2 FK506 binding protein 10, 65 kDa protein-coding FKBP10 FK506 binding protein 10, 65 kDa O 65 kDa FK506-binding protein|65 kDa FKBP|FK506-binding protein 10|FKBP-10|FKBP-65|PPIase FKBP10|immunophilin FKBP65|peptidyl-prolyl cis-trans isomerase FKBP10|rotamase 20121230 -9606 60682 SMAP1 RP1-104A17.1 SMAP-1 HGNC:19651|MIM:611372|Ensembl:ENSG00000112305|HPRD:18072|Vega:OTTHUMG00000014996 6 6q13 small ArfGAP 1 protein-coding SMAP1 small ArfGAP 1 O stromal membrane-associated GTPase-activating protein 1|stromal membrane-associated protein 1 20121230 -9606 60684 TRAPPC11 - C4orf41|foigr|gry HGNC:25751|MIM:614138|Ensembl:ENSG00000168538|HPRD:10968|Vega:OTTHUMG00000160673 4 4q35.1 trafficking protein particle complex 11 protein-coding TRAPPC11 trafficking protein particle complex 11 O foie gras homolog|gryzun homolog|trafficking protein particle complex subunit 11 20121230 -9606 60685 ZFAND3 RP1-295F6.1 TEX27 HGNC:18019|MIM:607455|Ensembl:ENSG00000156639|HPRD:12121|Vega:OTTHUMG00000014629 6 6pter-p22.3 zinc finger, AN1-type domain 3 protein-coding ZFAND3 zinc finger, AN1-type domain 3 O AN1-type zinc finger protein 3|testis expressed sequence 27|testis-expressed sequence 27 20121230 -9606 60686 C14orf93 - - HGNC:20162|Ensembl:ENSG00000100802|HPRD:12662|Vega:OTTHUMG00000028712 14 14q11.2 chromosome 14 open reading frame 93 protein-coding C14orf93 chromosome 14 open reading frame 93 O uncharacterized protein C14orf93 20121230 -9606 63027 SLC22A23 RP11-506K6.2 C6orf85 HGNC:21106|MIM:611697|Ensembl:ENSG00000137266|HPRD:12904|Vega:OTTHUMG00000014144 6 6p25.2 solute carrier family 22, member 23 protein-coding SLC22A23 solute carrier family 22, member 23 O ion transporter protein|solute carrier family 22 member 23 20121230 -9606 63035 BCORL1 RP3-510O21.1 BCoR-L1|CXorf10 HGNC:25657|MIM:300688|Ensembl:ENSG00000085185|HPRD:06517|Vega:OTTHUMG00000022379 X Xq25-q26.1 BCL6 corepressor-like 1 protein-coding BCORL1 BCL6 corepressor-like 1 O BCL-6 corepressor-like protein 1|BCL6 co-repressor-like 1|BCoR-like protein 1 20121230 -9606 63036 CELA2A - ELA2A|PE-1 HGNC:24609|MIM:609443|Ensembl:ENSG00000142615|HPRD:06495|Vega:OTTHUMG00000002258 1 1p36.21 chymotrypsin-like elastase family, member 2A protein-coding CELA2A chymotrypsin-like elastase family, member 2A O chymotrypsin-like elastase family member 2A|elastase 2A|elastase-2A|pancreatic elastase 2|pancreatic elastase IIA 20121230 -9606 63826 SRR - ILV1|ISO1 HGNC:14398|MIM:606477|Ensembl:ENSG00000167720|HPRD:10451|Vega:OTTHUMG00000090583 17 17p13 serine racemase protein-coding SRR serine racemase O D-serine ammonia-lyase|D-serine dehydratase|L-serine ammonia-lyase|L-serine dehydratase 20121230 -9606 63827 BCAN RP11-66D17.1 BEHAB|CSPG7 HGNC:23059|MIM:600347|Ensembl:ENSG00000132692|HPRD:02644|HPRD:09821|Vega:OTTHUMG00000033322 1 1q31 brevican protein-coding BCAN brevican O brain-enriched hyaluronan-binding protein|brevican core protein|chondroitin sulfate proteoglycan 7|chondroitin sulfate proteoglycan BEHAB 20121230 -9606 63869 PSORS6 - - HGNC:33483|MIM:605364 19 19p13 psoriasis susceptibility 6 unknown PSORS6 psoriasis susceptibility 6 O - 20120622 -9606 63870 PSORS5 - - HGNC:17953|MIM:604316 3 3q21 psoriasis susceptibility 5 unknown PSORS5 psoriasis susceptibility 5 O - 20120622 -9606 63874 ABHD4 - ABH4 HGNC:20154|Ensembl:ENSG00000100439|HPRD:12406|Vega:OTTHUMG00000028686 14 14q11.2 abhydrolase domain containing 4 protein-coding ABHD4 abhydrolase domain containing 4 O abhydrolase domain-containing protein 4|alpha/beta-hydrolase 4|lyso-N-acylphosphatidylethanolamine lipase 20121230 -9606 63875 MRPL17 - L17mt|LIP2|MRP-L17|MRP-L26|RPL17L|RPML26 HGNC:14053|MIM:611830|Ensembl:ENSG00000158042|HPRD:10096|Vega:OTTHUMG00000165505 11 11p15.5-p15.4 mitochondrial ribosomal protein L17 protein-coding MRPL17 mitochondrial ribosomal protein L17 O 39S ribosomal protein L17, mitochondrial|LYST-interacting protein 2|LYST-interacting protein LIP2 20121230 -9606 63876 PKNOX2 - PREP2 HGNC:16714|MIM:613066|Ensembl:ENSG00000165495|HPRD:17857|Vega:OTTHUMG00000165884 11 11q24.2 PBX/knotted 1 homeobox 2 protein-coding PKNOX2 PBX/knotted 1 homeobox 2 O PBX/knotted homeobox 2|homeobox protein PKNOX2|homeobox protein PREP-2 20121230 -9606 63877 FAM204A RP11-319I23.1 C10orf84|bA319I23.1 HGNC:25794|Ensembl:ENSG00000165669|HPRD:12593|Vega:OTTHUMG00000019131 10 10q26.11 family with sequence similarity 204, member A protein-coding FAM204A family with sequence similarity 204, member A O protein FAM204A 20121230 -9606 63891 RNF123 FP1477 KPC1 HGNC:21148|MIM:614472|Ensembl:ENSG00000164068|HPRD:11499|Vega:OTTHUMG00000156891 3 3p24.3 ring finger protein 123 protein-coding RNF123 ring finger protein 123 O E3 ubiquitin-protein ligase RNF123|kip1 ubiquitination-promoting complex protein 1 20121230 -9606 63892 THADA - GITA HGNC:19217|MIM:611800|Ensembl:ENSG00000115970|HPRD:18177|Vega:OTTHUMG00000152398 2 2p21 thyroid adenoma associated protein-coding THADA thyroid adenoma associated O death receptor-interacting protein|gene inducing thyroid adenomas protein|thyroid adenoma-associated protein 20121230 -9606 63893 UBE2O - E2-230K HGNC:29554|Ensembl:ENSG00000175931|HPRD:10928|Vega:OTTHUMG00000180178 17 17q25.1 ubiquitin-conjugating enzyme E2O protein-coding UBE2O ubiquitin-conjugating enzyme E2O O ubiquitin carrier protein O|ubiquitin-conjugating enzyme E2 O|ubiquitin-conjugating enzyme E2 of 230 kDa|ubiquitin-conjugating enzyme E2-230K|ubiquitin-protein ligase O 20121230 -9606 63894 VIPAS39 - C14orf133|SPE-39|SPE39|VIPAR|VPS16B|hSPE-39 HGNC:20347|MIM:613401|Ensembl:ENSG00000151445|HPRD:10710|Vega:OTTHUMG00000171538 14 14q24.3-q31 VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog protein-coding VIPAS39 VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog O VPS33B-interacting protein in apical-basolateral polarity regulator|VPS33B-interacting protein in polarity and apical restriction|VPS33B-interacting protein involved in polarity and apical protein restriction|protein spe-39 homolog|spermatogenesis-defective protein 39 homolog 20121230 -9606 63895 PIEZO2 - C18orf30|C18orf58|FAM38B|FAM38B2|HsT748|HsT771 HGNC:26270|MIM:613629|Ensembl:ENSG00000154864|HPRD:07636|Vega:OTTHUMG00000178507 18 18p11.22 piezo-type mechanosensitive ion channel component 2 protein-coding PIEZO2 piezo-type mechanosensitive ion channel component 2 O family with sequence similarity 38, member B|family with sequence similarity 38, member B2|protein PIEZO2 20121230 -9606 63897 HEATR6 - ABC1 HGNC:24076|Ensembl:ENSG00000068097|HPRD:12399|Vega:OTTHUMG00000179981 17 17q23.1 HEAT repeat containing 6 protein-coding HEATR6 HEAT repeat containing 6 O HEAT repeat-containing protein 6|amplified in breast cancer 1|amplified in breast cancer protein 1 20121230 -9606 63898 SH2D4A - PPP1R38|SH2A HGNC:26102|MIM:614968|Ensembl:ENSG00000104611|HPRD:08340|Vega:OTTHUMG00000097005 8 8p21.2 SH2 domain containing 4A protein-coding SH2D4A SH2 domain containing 4A O SH2 domain-containing protein 4A|protein SH(2)A|protein phosphatase 1, regulatory subunit 38 20121230 -9606 63899 NSUN3 MSTP077 MST077 HGNC:26208|Ensembl:ENSG00000178694|HPRD:08657|Vega:OTTHUMG00000159025 3 3q11.1 NOP2/Sun domain family, member 3 protein-coding NSUN3 NOP2/Sun domain family, member 3 O NOL1/NOP2/Sun domain family 3|NOL1/NOP2/Sun domain family member 3|NOL1/NOP2/Sun domain family, member 3|putative methyltransferase NSUN3 20121230 -9606 63901 FAM111A - - HGNC:24725|Ensembl:ENSG00000166801|HPRD:07015|Vega:OTTHUMG00000167280 11 11q12.1 family with sequence similarity 111, member A protein-coding FAM111A family with sequence similarity 111, member A O protein FAM111A 20121230 -9606 63904 DUSP21 - LMWDSP21 HGNC:20476|MIM:300678|Ensembl:ENSG00000189037|HPRD:06494|Vega:OTTHUMG00000021401 X Xp11.4-p11.23 dual specificity phosphatase 21 protein-coding DUSP21 dual specificity phosphatase 21 O BJ-HCC-26 tumor antigen|LMW-DSP21|dual specificity protein phosphatase 21|low molecular weight dual specificity phosphatase 21 20121230 -9606 63905 MANBAL RP5-1141E15.1 - HGNC:15799|Ensembl:ENSG00000101363|HPRD:14356|Vega:OTTHUMG00000032414 20 20q11.23-q12 mannosidase, beta A, lysosomal-like protein-coding MANBAL mannosidase, beta A, lysosomal-like O protein MANBAL 20121230 -9606 63906 GPATCH3 RP1-50O24.7 GPATC3 HGNC:25720|Ensembl:ENSG00000198746|HPRD:07772|Vega:OTTHUMG00000004229 1 1p35.3-p35.1 G patch domain containing 3 protein-coding GPATCH3 G patch domain containing 3 O G patch domain-containing protein 3 20121230 -9606 63908 NAPB RP3-322G13.2 SNAP-BETA|SNAPB HGNC:15751|MIM:611270|Ensembl:ENSG00000125814|HPRD:17627|Vega:OTTHUMG00000032062 20 20p12.3-p11.21 N-ethylmaleimide-sensitive factor attachment protein, beta protein-coding NAPB N-ethylmaleimide-sensitive factor attachment protein, beta O beta-soluble NSF attachment protein 20121230 -9606 63910 SLC17A9 RP11-305P22.6 C20orf59 HGNC:16192|MIM:612107|Ensembl:ENSG00000101194|HPRD:12777|Vega:OTTHUMG00000032951 20 20q13.33 solute carrier family 17, member 9 protein-coding SLC17A9 solute carrier family 17, member 9 O solute carrier family 17 member 9|vesicular nucleotide transporter SLC17A9 20121230 -9606 63914 C6orf164 - dJ102H19.4 HGNC:21404 6 6q15-q16.1 chromosome 6 open reading frame 164 miscRNA C6orf164 chromosome 6 open reading frame 164 O - 20121230 -9606 63915 BLOC1S5 - MU|MUTED HGNC:18561|MIM:607289|Ensembl:ENSG00000188428|HPRD:06289|Vega:OTTHUMG00000014220 6 6p25.1-p24.3 biogenesis of lysosomal organelles complex-1, subunit 5, muted protein-coding BLOC1S5 biogenesis of lysosomal organelles complex-1, subunit 5, muted O muted homolog|protein Muted homolog 20121230 -9606 63916 ELMO2 RP11-394O2.2 CED-12|CED12|ELMO-2 HGNC:17233|MIM:606421|Ensembl:ENSG00000062598|HPRD:12103|Vega:OTTHUMG00000033070 20 20q13 engulfment and cell motility 2 protein-coding ELMO2 engulfment and cell motility 2 O PH domain protein CED12A|ced-12 homolog 2|engulfment and cell motility protein 2|hCed-12A|protein ced-12 homolog A 20121230 -9606 63917 GALNT11 tcag7.1057 - HGNC:19875|Ensembl:ENSG00000178234|HPRD:13560|Vega:OTTHUMG00000157251 7 7q36.1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 11 (GalNAc-T11) protein-coding GALNT11 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 11 (GalNAc-T11) O GALNAC-T11|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 11|polypeptide GalNAc transferase 11|polypeptide N-acetylgalactosaminyltransferase 11|pp-GaNTase 11|protein-UDP acetylgalactosaminyltransferase 11 20121230 -9606 63920 C5orf54 - Buster3 HGNC:30804|Ensembl:ENSG00000221886|HPRD:17430|Vega:OTTHUMG00000163554 5 5q33.3 chromosome 5 open reading frame 54 protein-coding C5orf54 chromosome 5 open reading frame 54 O transposon-derived Buster3 transposase-like protein 20121230 -9606 63922 CHTF18 LA16c-321D2.4 C16orf41|C321D2.2|C321D2.3|C321D2.4|CHL12|Ctf18|RUVBL HGNC:18435|MIM:613201|Ensembl:ENSG00000127586|HPRD:13059|Vega:OTTHUMG00000047838 16 16p13.3 CTF18, chromosome transmission fidelity factor 18 homolog (S. cerevisiae) protein-coding CHTF18 CTF18, chromosome transmission fidelity factor 18 homolog (S. cerevisiae) O C321D2.3 (novel protein)|C321D2.4 (novel protein)|chromosome transmission fidelity protein 18 homolog|hCTF18|homolog of yeast CHL12|some homology with holliday junction DNA helicase RUVB like 20121230 -9606 63923 TNN - TN-W HGNC:22942|Ensembl:ENSG00000120332|Vega:OTTHUMG00000034882 1 1q23-q24 tenascin N protein-coding TNN tenascin N O TN-N|tenascin-N 20121230 -9606 63924 CIDEC - CIDE-3|CIDE3|FSP27 HGNC:24229|MIM:612120|Ensembl:ENSG00000187288|HPRD:13060|Vega:OTTHUMG00000128522 3 3p25.3 cell death-inducing DFFA-like effector c protein-coding CIDEC cell death-inducing DFFA-like effector c O cell death activator CIDE-3|fat specific protein 27 20121230 -9606 63925 ZNF335 - NIF-1|NIF1|NIF2 HGNC:15807|MIM:610827|Ensembl:ENSG00000198026|HPRD:11709|Vega:OTTHUMG00000032637 20 20q13.12 zinc finger protein 335 protein-coding ZNF335 zinc finger protein 335 O NRC-interacting factor 1|zinc-finger/leucine-zipper co-transducer NIF1 20121230 -9606 63926 ANKRD5 RP5-839B4.5 dJ839B4.6 HGNC:15803|Ensembl:ENSG00000132623|HPRD:10652|Vega:OTTHUMG00000031860 20 20p12.2 ankyrin repeat domain 5 protein-coding ANKRD5 ankyrin repeat domain 5 O ankyrin repeat domain-containing protein 5 20121230 -9606 63928 CHP2 - - HGNC:24927|Ensembl:ENSG00000166869|HPRD:14259|Vega:OTTHUMG00000131611 16 16p12.2 calcineurin-like EF hand protein 2 protein-coding CHP2 calcineurin-like EF hand protein 2 O calcineurin B homologous protein 2|hepatocellular carcinoma antigen gene 520|hepatocellular carcinoma-associated antigen 520 20121230 -9606 63929 XPNPEP3 RP11-554C12.3 APP3|NPHPL1 HGNC:28052|MIM:613553|Ensembl:ENSG00000196236|HPRD:10052|Vega:OTTHUMG00000151312 22 22q13.2 X-prolyl aminopeptidase (aminopeptidase P) 3, putative protein-coding XPNPEP3 X-prolyl aminopeptidase (aminopeptidase P) 3, putative O X-Pro aminopeptidase 3|probable Xaa-Pro aminopeptidase 3 20121230 -9606 63930 LOC63930 - - HPRD:12773 20 20q13.33 uncharacterized LOC63930 miscRNA - - - - 20121230 -9606 63931 MRPS14 - DJ262D12.2|HSMRPS14|MRP-S14|S14mt HGNC:14049|MIM:611978|Ensembl:ENSG00000120333|HPRD:14777|Vega:OTTHUMG00000034878 1 1q25.1 mitochondrial ribosomal protein S14 protein-coding MRPS14 mitochondrial ribosomal protein S14 O 28S ribosomal protein S14, mitochondrial|mitochondrial 28S ribosomal protein S14 20121230 -9606 63932 CXorf56 - - HGNC:26239|Ensembl:ENSG00000018610|HPRD:06541|Vega:OTTHUMG00000022276 X Xq23 chromosome X open reading frame 56 protein-coding CXorf56 chromosome X open reading frame 56 O UPF0428 protein CXorf56 20121230 -9606 63933 CCDC90A - C6orf79 HGNC:21097|Ensembl:ENSG00000050393|HPRD:12833|Vega:OTTHUMG00000014279 6 6p23 coiled-coil domain containing 90A protein-coding CCDC90A coiled-coil domain containing 90A O coiled-coil domain-containing protein 90A, mitochondrial 20121230 -9606 63934 ZNF667 - MIPU1 HGNC:28854|MIM:611024|Ensembl:ENSG00000198046|HPRD:08592|Vega:OTTHUMG00000181941 19 19q13.43 zinc finger protein 667 protein-coding ZNF667 zinc finger protein 667 O myocardial ischemic preconditioning upregulated 1 ortholog 20121230 -9606 63935 PCIF1 - C20orf67 HGNC:16200|Ensembl:ENSG00000100982|HPRD:12779|Vega:OTTHUMG00000032635 20 20q13.12 PDX1 C-terminal inhibiting factor 1 protein-coding PCIF1 PDX1 C-terminal inhibiting factor 1 O PDX-1 C terminus-interacting factor 1|phosphorylated CTD-interacting factor 1 20121230 -9606 63939 FAM217B - C20orf177|dJ551D2.5 HGNC:16170|Ensembl:ENSG00000196227|HPRD:12758|Vega:OTTHUMG00000032873 20 20q13.33 family with sequence similarity 217, member B protein-coding FAM217B family with sequence similarity 217, member B O protein FAM217B|uncharacterized protein C20orf177 20121230 -9606 63940 GPSM3 DAAP-218M18.6 AGS4|C6orf9|G18|G18.1a|G18.1b|G18.2|NG1 HGNC:13945|Ensembl:ENSG00000213654|HPRD:13605|Vega:OTTHUMG00000031244 6 6p21.3 G-protein signaling modulator 3 protein-coding GPSM3 G-protein signaling modulator 3 O G-protein signaling modulator 3 (AGS3-like, C. elegans)|G-protein signalling modulator 3 (AGS3-like, C. elegans)|G-protein-signaling modulator 3|activator of G-protein signaling 4 20121230 -9606 63941 NECAB3 RP1-63M2.1 APBA2BP|EFCBP3|NIP1|STIP3|SYTIP2|XB51|dJ63M2.4|dJ63M2.5 HGNC:15851|MIM:612478|Ensembl:ENSG00000125967|HPRD:07168|Vega:OTTHUMG00000032264 20 20q11.22 N-terminal EF-hand calcium binding protein 3 protein-coding NECAB3 N-terminal EF-hand calcium binding protein 3 O EF-hand calcium binding protein 3|N-terminal EF-hand calcium-binding protein 3|Nek2-interacting protein 1|X11L-binding protein 51|amyloid beta (A4) precursor protein-binding, family A, member 2 binding protein|amyloid beta A4 protein-binding family A member 2-binding protein|neuronal calcium-binding protein 3|neuronal calcium-binding protein NECAB3|synaptotagmin interacting protein 2|synaptotagmin interacting protein STIP3 20121230 -9606 63943 FKBPL DADB-220I18.2 DIR1|NG7|WISP39 HGNC:13949|Ensembl:ENSG00000204315|HPRD:16901|Vega:OTTHUMG00000031129 6 6p21.3 FK506 binding protein like protein-coding FKBPL FK506 binding protein like O FK506-binding protein like|FK506-binding protein-like|WAF-1/CIP1 stabilizing protein 39 20121230 -9606 63944 SCZD10 - - HGNC:17339|MIM:605419 15 15q15 schizophrenia disorder 10 (periodic catatonia) unknown SCZD10 schizophrenia disorder 10 (periodic catatonia) O - 20120622 -9606 63945 DFNA40 - - HGNC:14070 16 16p12 deafness, autosomal dominant 40 unknown DFNA40 deafness, autosomal dominant 40 O - 20110215 -9606 63946 DMRTC2 - - HGNC:13911|MIM:614806|Ensembl:ENSG00000142025|HPRD:16829 19 19q13.2 DMRT-like family C2 protein-coding DMRTC2 DMRT-like family C2 O doublesex- and mab-3-related transcription factor C2 20121230 -9606 63947 DMRTC1 - - HGNC:13910|MIM:300878|Ensembl:ENSG00000159123|HPRD:06491|Vega:OTTHUMG00000021820 X Xq13.2 DMRT-like family C1 protein-coding DMRTC1 DMRT-like family C1 O doublesex- and mab-3-related transcription factor C1|doublesex-mab-3 20121230 -9606 63948 DMRTB1 - - HGNC:13913|MIM:614805|Ensembl:ENSG00000143006|HPRD:16828|Vega:OTTHUMG00000008080 1 1p32.3 DMRT-like family B with proline-rich C-terminal, 1 protein-coding DMRTB1 DMRT-like family B with proline-rich C-terminal, 1 O doublesex- and mab-3-related transcription factor B1 20121230 -9606 63950 DMRTA2 - - HGNC:13908|MIM:614804|Ensembl:ENSG00000142700|Vega:OTTHUMG00000007884 1 1p32.3 DMRT-like family A2 protein-coding DMRTA2 DMRT-like family A2 O doublesex- and mab-3-related transcription factor 5|doublesex- and mab-3-related transcription factor A2 20121230 -9606 63951 DMRTA1 - DMO|DMRT4 HGNC:13826|MIM:614803|Ensembl:ENSG00000176399|HPRD:10913|Vega:OTTHUMG00000019693 9 9p21.3 DMRT-like family A1 protein-coding DMRTA1 DMRT-like family A1 O doublesex- and mab-3-related transcription factor A1 20121230 -9606 63967 CLSPN - - HGNC:19715|MIM:605434|Ensembl:ENSG00000092853|HPRD:09257|Vega:OTTHUMG00000004168 1 1p34.2 claspin protein-coding CLSPN claspin O claspin homolog|hClaspin 20121230 -9606 63970 TP53AIP1 - P53AIP1 HGNC:29984|MIM:605426|Ensembl:ENSG00000120471|HPRD:10397|Vega:OTTHUMG00000165797 11 11q24 tumor protein p53 regulated apoptosis inducing protein 1 protein-coding TP53AIP1 tumor protein p53 regulated apoptosis inducing protein 1 O p53-regulated apoptosis-inducing protein 1 20121230 -9606 63971 KIF13A RP11-500C11.2 RBKIN|bA500C11.2 HGNC:14566|MIM:605433|Ensembl:ENSG00000137177|HPRD:09256|Vega:OTTHUMG00000014313 6 6p23 kinesin family member 13A protein-coding KIF13A kinesin family member 13A O homolog of mouse KIF13A mannose-6-phosphate receptor transporter|kinesin-like protein KIF13A|kinesin-like protein RBKIN 20121230 -9606 63973 NEUROG2 - Atoh4|Math4A|NGN2|bHLHa8|ngn-2 HGNC:13805|MIM:606624|Ensembl:ENSG00000178403|HPRD:06976|Vega:OTTHUMG00000132907 4 4q25 neurogenin 2 protein-coding NEUROG2 neurogenin 2 O class A basic helix-loop-helix protein 8|neurogenin-2|protein atonal homolog 4 20121230 -9606 63974 NEUROD6 My051 Atoh2|MATH2|Math-2|NEX1M|Nex1|bHLHa2 HGNC:13804|MIM:611513|Ensembl:ENSG00000164600|HPRD:11387|Vega:OTTHUMG00000022865 7 7p14.3 neuronal differentiation 6 protein-coding NEUROD6 neuronal differentiation 6 O brain my051 protein|class A basic helix-loop-helix protein 2|neurogenic differentiation factor 6|protein atonal homolog 2 20121230 -9606 63976 PRDM16 - MEL1|PFM13 HGNC:14000|MIM:605557|Ensembl:ENSG00000142611|HPRD:16122|Vega:OTTHUMG00000000581 1 1p36.23-p33 PR domain containing 16 protein-coding PRDM16 PR domain containing 16 O MDS1/EVI1-like gene 1|PR domain zinc finger protein 16|transcription factor MEL1 20121230 -9606 63977 PRDM15 - C21orf83|PFM15|ZNF298 HGNC:13999|Ensembl:ENSG00000141956|HPRD:11458|Vega:OTTHUMG00000086781 21 21q22.3 PR domain containing 15 protein-coding PRDM15 PR domain containing 15 O PR domain zinc finger protein 15|PR domain-containing protein 15|zinc finger protein 298 20121230 -9606 63978 PRDM14 - PFM11 HGNC:14001|MIM:611781|Ensembl:ENSG00000147596|HPRD:11457|Vega:OTTHUMG00000150495 8 8q13.3 PR domain containing 14 protein-coding PRDM14 PR domain containing 14 O PR domain zinc finger protein 14|PR domain-containing protein 14 20121230 -9606 63979 FIGNL1 - - HGNC:13286|Ensembl:ENSG00000132436|HPRD:10958|Vega:OTTHUMG00000022866 7 7p12.1 fidgetin-like 1 protein-coding FIGNL1 fidgetin-like 1 O fidgetin-like protein 1 20121230 -9606 63982 ANO3 GENX-3947 C11orf25|TMEM16C HGNC:14004|MIM:610110|Ensembl:ENSG00000134343|HPRD:15526|Vega:OTTHUMG00000166096 11 11p14.2 anoctamin 3 protein-coding ANO3 anoctamin 3 O anoctamin-3|transmembrane protein 16C (eight membrane-spanning domains) 20121230 -9606 64002 PCGEM1 - LINC00071|NCRNA00071 HGNC:30145|MIM:605443 2 2q32 PCGEM1, prostate-specific transcript (non-protein coding) miscRNA PCGEM1 PCGEM1, prostate-specific transcript (non-protein coding) O - 20121230 -9606 64005 MYO1G - HA2|MHAG HGNC:13880|MIM:613445|Ensembl:ENSG00000136286|HPRD:17622|Vega:OTTHUMG00000155821 7 7p13-p11.2 myosin IG protein-coding MYO1G myosin IG O minor histocompatibility antigen HA-2|myosin-Ig|unconventional myosin-Ig 20121230 -9606 64006 ERVK-6 - ERVK6|HERV-K(C7)|HERV-K108|K-Rev|c-orf|cORF HGNC:13915|MIM:605626|HPRD:16131 7 7p22.1 endogenous retrovirus group K, member 6 unknown ERVK-6 endogenous retrovirus group K, member 6 O - 20121211 -9606 64061 TSPYL2 RP1-290F12.2 CDA1|CINAP|CTCL|DENTT|HRIHFB2216|NP79|SE204|TSPX HGNC:24358|MIM:300564|Ensembl:ENSG00000184205|HPRD:06713|Vega:OTTHUMG00000021597 X Xp11.2 TSPY-like 2 protein-coding TSPYL2 TSPY-like 2 O CASK-interacting nucleosome assembly protein|CTCL tumor antigen se20-4|CTCL-associated antigen se20-4|TSPY-like protein 2|cell division autoantigen 1|cutaneous T-cell lymphoma-associated antigen se20-4|cutaneous T-cell lymphoma-associated tumor antigen se20-4|differentially expressed nucleolar TGF-beta1 target|differentially-expressed nucleolar TGF-beta1 target protein|nuclear protein of 79 kDa|testis-specific Y-encoded-like protein 2|testis-specific protein Y encoded-like 2 20121230 -9606 64062 RBM26 PRO1777 ARRS2|C13orf10|RP11-255E21.1|SE70-2|ZC3H17 HGNC:20327|Ensembl:ENSG00000139746|HPRD:12611|Vega:OTTHUMG00000017133 13 13q31.1 RNA binding motif protein 26 protein-coding RBM26 RNA binding motif protein 26 O CTCL tumor antigen se70-2|RNA-binding motif protein 26|RNA-binding protein 26|acidic rich RS domain containing 2|cutaneous T-cell lymphoma tumor antigen se70-2 20121230 -9606 64063 PRSS22 SP001LA BSSP-4|hBSSP-4 HGNC:14368|MIM:609343|Ensembl:ENSG00000005001|HPRD:08336|Vega:OTTHUMG00000128961 16 16p13.3 protease, serine, 22 protein-coding PRSS22 protease, serine, 22 O brain-specific serine protease 4|prosemin|protease, serine S1 family member 22|serine protease 22|serine protease 26|tryptase epsilon 20121230 -9606 64064 OXCT2 FKSG25 SCOTT HGNC:18606|MIM:610289|Ensembl:ENSG00000198754|HPRD:15093|Vega:OTTHUMG00000009249 1 1p34 3-oxoacid CoA transferase 2 protein-coding OXCT2 3-oxoacid CoA transferase 2 O 3-oxoacid CoA-transferase 2A|3-oxoacid-CoA transferase 2A|succinyl-CoA:3-ketoacid coenzyme A transferase 2, mitochondrial|succinyl-CoA:3-ketoacid-coenzyme A transferase 2, mitochondrial|testis-specific succinyl CoA:3-oxoacid CoA-transferase|testis-specific succinyl-CoA:3-oxoacid CoA-transferase 20121230 -9606 64065 PERP - KCP1|KRTCAP1|PIGPC1|RP3-496H19.1|THW|dJ496H19.1 HGNC:17637|MIM:609301|Ensembl:ENSG00000112378|HPRD:17836|Vega:OTTHUMG00000015668 6 6q24 PERP, TP53 apoptosis effector protein-coding PERP PERP, TP53 apoptosis effector O 1110017A08Rik|KCP-1|keratinocyte-associated protein 1|keratinocytes associated protein 1|p53 apoptosis effector related to PMP-22|p53 apoptosis effector related to PMP22|p53-induced protein PIGPC1|transmembrane protein THW 20121230 -9606 64066 MMP27 UNQ2503/PRO5992 MMP-27 HGNC:14250|Ensembl:ENSG00000137675|HPRD:07025|Vega:OTTHUMG00000168099 11 11q24 matrix metallopeptidase 27 protein-coding MMP27 matrix metallopeptidase 27 O matrix metalloprotease 27|matrix metalloproteinase 27|matrix metalloproteinase-27 20121230 -9606 64067 NPAS3 - MOP6|PASD6|bHLHe12 HGNC:19311|MIM:609430|Ensembl:ENSG00000151322|HPRD:11400|Vega:OTTHUMG00000140215 14 14q12-q13 neuronal PAS domain protein 3 protein-coding NPAS3 neuronal PAS domain protein 3 O PAS domain-containing protein 6|basic-helix-loop-helix-PAS protein MOP6|class E basic helix-loop-helix protein 12|member of PAS protein 6|neuronal PAS domain-containing protein 3|neuronal PAS3 20121230 -9606 64069 ATOD - ATOD1 MIM:603165 3 3q21 Dermatitis, atopic unknown - - - - 20120622 -9606 64072 CDH23 RP11-472K8.4 CDHR23|USH1D HGNC:13733|MIM:605516|Ensembl:ENSG00000107736|HPRD:05699|Vega:OTTHUMG00000019347 10 10q22.1 cadherin-related 23 protein-coding CDH23 cadherin-related 23 O cadherin-23|cadherin-like 23|cadherin-related family member 23|otocadherin 20121230 -9606 64073 C19orf33 - H2RSP|IMUP|IMUP-1|IMUP-2 HGNC:16668|Ensembl:ENSG00000167644|HPRD:12706|Vega:OTTHUMG00000181894 19 19q13.2 chromosome 19 open reading frame 33 protein-coding C19orf33 chromosome 19 open reading frame 33 O HAI-2 related small protein|HAI-2-related small protein|hepatocyte growth factor activator inhibitor type 2-related small protein|immortalization up-regulated protein|immortalization-upregulated protein 20121230 -9606 64077 LHPP RP11-12J10.1 HDHD2B HGNC:30042|Ensembl:ENSG00000107902|HPRD:17274|Vega:OTTHUMG00000019214 10 10q26.13 phospholysine phosphohistidine inorganic pyrophosphate phosphatase protein-coding LHPP phospholysine phosphohistidine inorganic pyrophosphate phosphatase O hLHPP 20121230 -9606 64078 SLC28A3 - CNT3 HGNC:16484|MIM:608269|Ensembl:ENSG00000197506|HPRD:12200|Vega:OTTHUMG00000020117 9 9q22.2 solute carrier family 28 (sodium-coupled nucleoside transporter), member 3 protein-coding SLC28A3 solute carrier family 28 (sodium-coupled nucleoside transporter), member 3 O concentrative Na(+)-nucleoside cotransporter 3|concentrative Na+-nucleoside cotransporter|solute carrier family 28 member 3 20121230 -9606 64080 RBKS - RBSK HGNC:30325|MIM:611132|Ensembl:ENSG00000171174|HPRD:15222|Vega:OTTHUMG00000097833 2 2p23.3 ribokinase protein-coding RBKS ribokinase O 5230400M11Rik 20121230 -9606 64081 PBLD - MAWBP|MAWDBP HGNC:23301|MIM:612189|Ensembl:ENSG00000108187|HPRD:14366|Vega:OTTHUMG00000073949 10 10q21.3 phenazine biosynthesis-like protein domain containing protein-coding PBLD phenazine biosynthesis-like protein domain containing O MAWD-binding protein|phenazine biosynthesis-like domain-containing protein 20121230 -9606 64083 GOLPH3 - GOPP1|GPP34|MIDAS HGNC:15452|MIM:612207|Ensembl:ENSG00000113384|HPRD:11007|Vega:OTTHUMG00000090679 5 5p13.3 golgi phosphoprotein 3 (coat-protein) protein-coding GOLPH3 golgi phosphoprotein 3 (coat-protein) O Golgi phosphoprotein 3|coat protein GPP34|coat-protein|golgi peripheral membrane protein 1, 34 kDa|golgi protein|golgi-associated protein|mitochondrial DNA absence factor 20121230 -9606 64084 CLSTN2 - ALC-GAMMA|CDHR13|CS2|CSTN2|alcagamma HGNC:17448|MIM:611323|Ensembl:ENSG00000158258|HPRD:13077|Vega:OTTHUMG00000160139 3 3q23 calsyntenin 2 protein-coding CLSTN2 calsyntenin 2 O alcadein gamma|alcadein-gamma|cadherin-related family member 13|calsyntenin-2 20121230 -9606 64087 MCCC2 - MCCB HGNC:6937|MIM:609014|Ensembl:ENSG00000131844|HPRD:01952|Vega:OTTHUMG00000162505 5 5q12-q13 methylcrotonoyl-CoA carboxylase 2 (beta) protein-coding MCCC2 methylcrotonoyl-CoA carboxylase 2 (beta) O 3-methylcrotonyl-CoA carboxylase 2|3-methylcrotonyl-CoA carboxylase non-biotin-containing subunit|3-methylcrotonyl-CoA:carbon dioxide ligase subunit beta|MCCase subunit beta|biotin carboxylase|methylcrotonoyl-CoA carboxylase beta chain, mitochondrial|methylcrotonoyl-Coenzyme A carboxylase 2 (beta)|non-biotin containing subunit of 3-methylcrotonyl-CoA carboxylase 20121230 -9606 64089 SNX16 - - HGNC:14980|MIM:614903|Ensembl:ENSG00000104497|HPRD:15411|Vega:OTTHUMG00000164727 8 8q21.13 sorting nexin 16 protein-coding SNX16 sorting nexin 16 O sorting nexin-16 20121230 -9606 64090 GAL3ST2 hCG_31746 GAL3ST-2|GP3ST HGNC:24869|MIM:608237|Ensembl:ENSG00000154252|HPRD:16303|Vega:OTTHUMG00000151473 2 2q37.3 galactose-3-O-sulfotransferase 2 protein-coding GAL3ST2 galactose-3-O-sulfotransferase 2 O beta-galactose-3-O-sulfotransferase 2|gal 3-O-sulphotransferase|gal-beta-1, 3-GalNAc 3'-sulfotransferase 2|galbeta1-3GalNAc 3'-sulfotransferase 2|glycoprotein beta-Gal 3'-sulfotransferase 2 20121230 -9606 64091 POPDC2 - POP2 HGNC:17648|MIM:605823|Ensembl:ENSG00000121577|HPRD:16160|Vega:OTTHUMG00000159438 3 3q13.33 popeye domain containing 2 protein-coding POPDC2 popeye domain containing 2 O popeye domain-containing protein 2|popeye protein 2 20121230 -9606 64092 SAMSN1 - HACS1|NASH1|SASH2|SH3D6B|SLy2 HGNC:10528|MIM:607978|Ensembl:ENSG00000155307|HPRD:06413|Vega:OTTHUMG00000074317 21 21q11 SAM domain, SH3 domain and nuclear localization signals 1 protein-coding SAMSN1 SAM domain, SH3 domain and nuclear localization signals 1 O SAM and SH3 domain containing 2|SAM domain, SH3 domain and nuclear localisation signals, 1|SAM domain, SH3 domain and nuclear localization signals protein 1|SAM domain-containing protein SAMSN-1|SH3-SAM adaptor protein|Src homology domain 3 (SH3)-containing adapter protein SH3 lymphocyte protein 2|hematopoietic adapter-containing SH3 and sterile α-motif (SAM) domains 1|hematopoietic adapter-containing SH3 and sterile alpha-motif (SAM) domains 1|hematopoietic adaptor containing SH3 and SAM domains 1|nuclear localization signals, SAM and SH3 domain containing 1 20121230 -9606 64093 SMOC1 - OAS HGNC:20318|MIM:608488|Ensembl:ENSG00000198732|HPRD:12244|Vega:OTTHUMG00000171237 14 14q24.2 SPARC related modular calcium binding 1 protein-coding SMOC1 SPARC related modular calcium binding 1 O SPARC-related modular calcium-binding protein 1|secreted modular calcium-binding protein 1 20121230 -9606 64094 SMOC2 RP11-270C4__A.1 DTDP1|MST117|MSTP117|MSTP140|SMAP2|bA270C4A.1|bA37D8.1|dJ421D16.1 HGNC:20323|MIM:607223|Ensembl:ENSG00000112562|HPRD:06244|Vega:OTTHUMG00000016050 6 6q27 SPARC related modular calcium binding 2 protein-coding SMOC2 SPARC related modular calcium binding 2 O SMAP-2|SMOC-2|SPARC-related modular calcium-binding protein 2|secreted modular calcium-binding protein 2|smooth muscle associated protein 2|smooth muscle-associated protein 2|thyroglobulin type-1 repeat containing protein 20121230 -9606 64096 GFRA4 RP5-964F7.1 - HGNC:13821|Ensembl:ENSG00000125861|HPRD:11003|Vega:OTTHUMG00000031748 20 20p13-p12 GDNF family receptor alpha 4 protein-coding GFRA4 GDNF family receptor alpha 4 O GDNF family receptor alpha-4|GDNF receptor alpha-4|GDNFR-alpha-4|GFR receptor alpha 4|GFR-alpha-4|persephin receptor 20121230 -9606 64097 EPB41L4A - EPB41L4|NBL4 HGNC:13278|MIM:612141|Ensembl:ENSG00000129595|HPRD:09939|Vega:OTTHUMG00000162902 5 5q21.3 erythrocyte membrane protein band 4.1 like 4A protein-coding EPB41L4A erythrocyte membrane protein band 4.1 like 4A O band 4.1-like protein 4A|erythrocyte protein band 4.1-like 4 20121230 -9606 64098 PARVG RP4-671O14.2 - HGNC:14654|MIM:608122|Ensembl:ENSG00000138964|HPRD:16285|Vega:OTTHUMG00000150473 22 22q13.31 parvin, gamma protein-coding PARVG parvin, gamma O gamma-parvin 20121230 -9606 64100 ELSPBP1 - E12|EDDM12|HE12 HGNC:14417|MIM:607443|Ensembl:ENSG00000169393|HPRD:12119 19 19q13.33 epididymal sperm binding protein 1 protein-coding ELSPBP1 epididymal sperm binding protein 1 O epididymal protein 12|epididymal secretory protein 12|epididymal sperm-binding protein 1 20121230 -9606 64101 LRRC4 NAG14 NGL-2 HGNC:15586|MIM:610486|Ensembl:ENSG00000128594|HPRD:10060|Vega:OTTHUMG00000157563 7 7q31.3 leucine rich repeat containing 4 protein-coding LRRC4 leucine rich repeat containing 4 O brain tumor associated protein LRRC4|brain tumor-associated protein BAG|leucine-rich repeat-containing 4|leucine-rich repeat-containing protein 4|nasopharyngeal carcinoma-associated gene 14 protein|netrin-G2 ligand 20121230 -9606 64102 TNMD UNQ771/PRO1565 BRICD4|CHM1L|TEM HGNC:17757|MIM:300459|Ensembl:ENSG00000000005|HPRD:02352|Vega:OTTHUMG00000022001 X Xq21.33-q23 tenomodulin protein-coding TNMD tenomodulin O BRICHOS domain containing 4|chondromodulin-1-like protein|chondromodulin-I-like protein|chondromodulin-IB|hChM1L|hTeM|myodulin|tendin 20121230 -9606 64105 CENPK FKSG14 AF5alpha|CENP-K|P33|Solt HGNC:29479|MIM:611502|Ensembl:ENSG00000123219|HPRD:13323|Vega:OTTHUMG00000131227 5 5q12.3 centromere protein K protein-coding CENPK centromere protein K O SoxLZ/Sox6-binding protein Solt|interphase centromere complex protein 37|leucine zipper protein FKSG14|protein AF-5alpha 20121230 -9606 64106 NPFFR1 RP11-203J14.1 GPR147|NPFF1|NPFF1R1|OT7T022 HGNC:17425|MIM:607448|Ensembl:ENSG00000148734|HPRD:12120|Vega:OTTHUMG00000018404 10 10q21-q22 neuropeptide FF receptor 1 protein-coding NPFFR1 neuropeptide FF receptor 1 O G protein-coupled receptor 147|G-protein coupled receptor 147|RFamide-related peptide receptor OT7T022|neuropeptide FF 1 20121230 -9606 64108 RTP4 - IFRG28 HGNC:23992|MIM:609350|Ensembl:ENSG00000136514|HPRD:17136|Vega:OTTHUMG00000156459 3 3q27.3 receptor (chemosensory) transporter protein 4 protein-coding RTP4 receptor (chemosensory) transporter protein 4 O 28 kDa interferon-responsive protein|28kD interferon responsive protein|receptor transporter protein 4|receptor transporting protein 4|receptor-transporting protein 4 20121230 -9606 64109 CRLF2 WI2-87105E3.1 CRL2|CRLF2Y|TSLPR HGNC:14281|MIM:300357|MIM:400023|Ensembl:ENSG00000205755|HPRD:02288|Vega:OTTHUMG00000067432 X|Y Xp22.3; Yp11.3 cytokine receptor-like factor 2 protein-coding CRLF2 cytokine receptor-like factor 2 O IL-XR|P2RY8/CRLF2 fusion|TSLP receptor|cytokine receptor CRL2 precusor|cytokine receptor-like 2|thymic stromal lymphopoietin protein receptor|thymic stromal lymphopoietin receptor|thymic stromal-derived lymphopoietin receptor 20121230 -9606 64110 MAGEF1 - - HGNC:29639|MIM:609267|Ensembl:ENSG00000177383|HPRD:14348|Vega:OTTHUMG00000156712 3 3q13 melanoma antigen family F, 1 protein-coding MAGEF1 melanoma antigen family F, 1 O MAGE-F1 antigen|melanoma-associated antigen F1 20121230 -9606 64111 NPVF tcag7.1077 C7orf9|RFRP HGNC:13782|Ensembl:ENSG00000105954|Vega:OTTHUMG00000128509 7 7p21-p15 neuropeptide VF precursor protein-coding NPVF neuropeptide VF precursor O FMRFamide-related peptides|RFamide-related peptide|neuropeptide NPVF 20121230 -9606 64112 MOAP1 - MAP-1|PNMA4 HGNC:16658|MIM:609485|Ensembl:ENSG00000165943|HPRD:17580|Vega:OTTHUMG00000169184 14 14q32 modulator of apoptosis 1 protein-coding MOAP1 modulator of apoptosis 1 O MAP1|paraneoplastic Ma antigen family member 4|paraneoplastic antigen Ma4|paraneoplastic antigen like 4 20121230 -9606 64114 TMBIM1 PP1201 LFG3|MST100|MSTP100|RECS1 HGNC:23410|MIM:610364|Ensembl:ENSG00000135926|HPRD:17884|Vega:OTTHUMG00000133105 2 2q35 transmembrane BAX inhibitor motif containing 1 protein-coding TMBIM1 transmembrane BAX inhibitor motif containing 1 O protein lifeguard 3|transmembrane BAX inhibitor motif-containing protein 1 20121230 -9606 64115 C10orf54 RP11-472K8.3 B7-H5|B7H5|GI24|PP2135|SISP1 HGNC:30085|Ensembl:ENSG00000107738|HPRD:15160|Vega:OTTHUMG00000018426 10 10q22.1 chromosome 10 open reading frame 54 protein-coding C10orf54 chromosome 10 open reading frame 54 O platelet receptor Gi24|stress induced secreted protein 1 20121230 -9606 64116 SLC39A8 PP3105 BIGM103|LZT-Hs6|ZIP8 HGNC:20862|MIM:608732|Ensembl:ENSG00000138821|HPRD:12286|Vega:OTTHUMG00000131120 4 4q22-q24 solute carrier family 39 (zinc transporter), member 8 protein-coding SLC39A8 solute carrier family 39 (zinc transporter), member 8 O BCG induced integral membrane protein BIGM103|BCG-induced integral membrane protein in monocyte clone 103 protein|LIV-1 subfamily of ZIP zinc transporter 6|ZIP-8|Zrt- and Irt-like protein 8|solute carrier family 39 (metal ion transporter), member 8|solute carrier family 39 member 8|zinc transporter ZIP8 20121230 -9606 64118 DUS1L - DUS1|PP3111 HGNC:30086|Ensembl:ENSG00000169718|HPRD:17885|Vega:OTTHUMG00000178525 17 17q25.3 dihydrouridine synthase 1-like (S. cerevisiae) protein-coding DUS1L dihydrouridine synthase 1-like (S. cerevisiae) O tRNA-dihydrouridine(16/17) synthase [NAD(P)(+)]-like 20121230 -9606 64121 RRAGC - GTR2|RAGC|TIB929 HGNC:19902|MIM:608267|Ensembl:ENSG00000116954|HPRD:12198|Vega:OTTHUMG00000000490 1 1p34 Ras-related GTP binding C protein-coding RRAGC Ras-related GTP binding C O GTPase-interacting protein 2|Rag C protein|ras-related GTP-binding protein C 20121230 -9606 64122 FN3K - - HGNC:24822|MIM:608425|Ensembl:ENSG00000167363|HPRD:16336|Vega:OTTHUMG00000177847 17 17q25.3 fructosamine 3 kinase protein-coding FN3K fructosamine 3 kinase O fructosamine-3-kinase 20121230 -9606 64123 ELTD1 hCG_14667 ETL|KPG_003 HGNC:20822|Ensembl:ENSG00000162618|Vega:OTTHUMG00000009738 1 1p33-p32 EGF, latrophilin and seven transmembrane domain containing 1 protein-coding ELTD1 EGF, latrophilin and seven transmembrane domain containing 1 O EGF, latrophilin and seven transmembrane domain-containing protein 1|EGF-TM7-latrophilin-related protein 20121230 -9606 64127 NOD2 - ACUG|BLAU|CARD15|CD|CLR16.3|IBD1|NLRC2|NOD2B|PSORAS1 HGNC:5331|MIM:605956|Ensembl:ENSG00000167207|HPRD:05810|Vega:OTTHUMG00000133171 16 16q21 nucleotide-binding oligomerization domain containing 2 protein-coding NOD2 nucleotide-binding oligomerization domain containing 2 O NLR family, CARD domain containing 2|NOD-like receptor C2|caspase recruitment domain family, member 15|caspase recruitment domain protein 15|caspase recruitment domain-containing protein 15|inflammatory bowel disease protein 1|nucleotide-binding oligomerization domain 2|nucleotide-binding oligomerization domain, leucine rich repeat and CARD domain containing 2|nucleotide-binding oligomerization domain-containing protein 2 20121230 -9606 64129 TINAGL1 PP6614 ARG1|LCN7|LIECG3|TINAGRP HGNC:19168|Ensembl:ENSG00000142910|HPRD:07122|Vega:OTTHUMG00000003884 1 1p35.2 tubulointerstitial nephritis antigen-like 1 protein-coding TINAGL1 tubulointerstitial nephritis antigen-like 1 O OLRG-2|P3ECSL|TIN Ag-related protein|TIN-Ag-RP|TINAG-like 1|androgen-regulated gene 1|glucocorticoid-inducible protein 5|lipocalin 7|oxidized-LDL responsive gene 2|tubulointerstitial nephritis antigen-like|tubulointerstitial nephritis antigen-related protein 20121230 -9606 64130 LIN7B UNQ3116/PRO10200 LIN-7B|MALS-2|MALS2|VELI2 HGNC:17788|MIM:612331|Ensembl:ENSG00000104863|HPRD:10040|Vega:OTTHUMG00000134288 19 19q13.3 lin-7 homolog B (C. elegans) protein-coding LIN7B lin-7 homolog B (C. elegans) O hLin7B|hVeli2|mammalian lin-seven protein 2|protein lin-7 homolog B|veli-2|vertebrate lin-7 homolog 2 20121230 -9606 64131 XYLT1 - PXYLT1|XT-I|XT1|XTI|XYLTI HGNC:15516|MIM:608124|Ensembl:ENSG00000103489|HPRD:12168|Vega:OTTHUMG00000129975 16 16p12.3 xylosyltransferase I protein-coding XYLT1 xylosyltransferase I O O-xylosyltransferase 1|beta-D-xylosyltransferase 1|peptide O-xylosyltransferase 1|xylT-I|xylosyltransferase 1|xylosyltransferase iota 20121230 -9606 64132 XYLT2 UNQ3058/PRO9878 PXYLT2|XT-II|XT2|xylT-II HGNC:15517|MIM:608125|Ensembl:ENSG00000015532|HPRD:16286|Vega:OTTHUMG00000162057 17 17q21.33 xylosyltransferase II protein-coding XYLT2 xylosyltransferase II O UDP-D-xylose:proteoglycan core protein beta-D-xylosyltransferase|peptide O-xylosyltransferase 1|protein xylosyltransferase 2|xylosyltransferase 2 20121230 -9606 64135 IFIH1 - Hlcd|IDDM19|MDA-5|MDA5|RLR-2 HGNC:18873|MIM:606951|Ensembl:ENSG00000115267|HPRD:09507|Vega:OTTHUMG00000132055 2 2q24 interferon induced with helicase C domain 1 protein-coding IFIH1 interferon induced with helicase C domain 1 O CADM-140 autoantigen|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide|RIG-I-like receptor 2|RNA helicase-DEAD box protein 116|clinically amyopathic dermatomyositis autoantigen 140 kDa|helicard|helicase with 2 CARD domains|interferon-induced helicase C domain-containing protein 1|melanoma differentiation associated protein-5|melanoma differentiation-associated protein 5|murabutide down-regulated protein 20121230 -9606 64137 ABCG4 - WHITE2 HGNC:13884|MIM:607784|Ensembl:ENSG00000172350|HPRD:12130|Vega:OTTHUMG00000166169 11 11q23.3 ATP-binding cassette, sub-family G (WHITE), member 4 protein-coding ABCG4 ATP-binding cassette, sub-family G (WHITE), member 4 O ATP-binding cassette sub-family G member 4|ATP-binding cassette, subfamily G, member 4|putative ABC transporter 20121230 -9606 64145 ZFYVE20 - Rabenosyn-5 HGNC:20759|MIM:609511|Ensembl:ENSG00000131381|HPRD:15732|Vega:OTTHUMG00000129860 3 3p25.1 zinc finger, FYVE domain containing 20 protein-coding ZFYVE20 zinc finger, FYVE domain containing 20 O 110 kDa protein|FYVE finger-containing Rab5 effector protein rabenosyn-5|FYVE-finger-containing Rab5 effector protein rabenosyn-5|rabenosyn-5|zinc finger FYVE domain-containing protein 20 20121230 -9606 64146 PDF - - HGNC:30012|Ensembl:ENSG00000258429|HPRD:17829|Vega:OTTHUMG00000171336 16 16q22.1 peptide deformylase (mitochondrial) protein-coding PDF peptide deformylase (mitochondrial) O peptide deformylase, mitochondrial|peptide deformylase-like protein|polypeptide deformylase 20121230 -9606 64147 KIF9 - - HGNC:16666|MIM:607910|Ensembl:ENSG00000088727|HPRD:07444|Vega:OTTHUMG00000133512 3 3p21.31 kinesin family member 9 protein-coding KIF9 kinesin family member 9 O kinesin protein 9|kinesin-like protein KIF9 20121230 -9606 64149 C17orf75 - NJMU-R1 HGNC:30173|Ensembl:ENSG00000108666|HPRD:11392|Vega:OTTHUMG00000179585 17 17q11.2 chromosome 17 open reading frame 75 protein-coding C17orf75 chromosome 17 open reading frame 75 O protein Njmu-R1|spermatogenesis-related protein 20121230 -9606 64150 DIO3OS - C14orf134|DIO3-AS1|DIO3-OS|NCRNA00041 HGNC:20348|MIM:608523 14 14q32.31 DIO3 opposite strand/antisense RNA (head to head) miscRNA DIO3OS DIO3 opposite strand/antisense RNA (head to head) O - 20121230 -9606 64151 NCAPG - CAPG|CHCG|NY-MEL-3 HGNC:24304|MIM:606280|Ensembl:ENSG00000109805|HPRD:12097|Vega:OTTHUMG00000128539 4 4p15.33 non-SMC condensin I complex, subunit G protein-coding NCAPG non-SMC condensin I complex, subunit G O XCAP-G homolog|chromosome condensation protein G|chromosome-associated protein G|condensin complex subunit 3|condensin subunit CAP-G|melanoma antigen NY-MEL-3 20121230 -9606 64167 ERAP2 - L-RAP|LRAP HGNC:29499|MIM:609497|Ensembl:ENSG00000164308|HPRD:14306|Vega:OTTHUMG00000128718 5 5q15 endoplasmic reticulum aminopeptidase 2 protein-coding ERAP2 endoplasmic reticulum aminopeptidase 2 O leukocyte-derived arginine aminopeptidase 20121230 -9606 64168 NECAB1 - EFCBP1|STIP-1 HGNC:20983|Ensembl:ENSG00000123119|HPRD:16851|Vega:OTTHUMG00000164009 8 8q21.3 N-terminal EF-hand calcium binding protein 1 protein-coding NECAB1 N-terminal EF-hand calcium binding protein 1 O EF hand calcium binding protein 1|EF-hand calcium binding protein 1|EF-hand calcium-binding protein 1|N-terminal EF-hand calcium-binding protein 1|neuronal calcium binding protein|neuronal calcium-binding protein 1|synaptotagmin interacting protein 1 20121230 -9606 64170 CARD9 RP11-413M3.9 CANDF2|hCARD9 HGNC:16391|MIM:607212|Ensembl:ENSG00000187796|HPRD:06236|Vega:OTTHUMG00000020925 9 9q34.3 caspase recruitment domain family, member 9 protein-coding CARD9 caspase recruitment domain family, member 9 O caspase recruitment domain-containing protein 9 20121230 -9606 64172 OSGEPL1 - Qri7 HGNC:23075|Ensembl:ENSG00000128694|HPRD:07026|Vega:OTTHUMG00000164096 2 2q32.2 O-sialoglycoprotein endopeptidase-like 1 protein-coding OSGEPL1 O-sialoglycoprotein endopeptidase-like 1 O O-sialoglycoprotein endopeptidase like 1|O-sialoglycoprotein endopeptidase-like protein 1|probable O-sialoglycoprotein endopeptidase 2|probable tRNA threonylcarbamoyladenosine biosynthesis protein OSGEPL1|putative sialoglycoprotease type 2|t(6)A37 threonylcarbamoyladenosine biosynthesis protein OSGEPL1 20121230 -9606 64174 DPEP2 UNQ284/PRO323 MBD2 HGNC:23028|MIM:609925|Ensembl:ENSG00000167261|HPRD:07011|Vega:OTTHUMG00000137542 16 16q22.1 dipeptidase 2 protein-coding DPEP2 dipeptidase 2 O - 20121230 -9606 64175 LEPRE1 PSEC0109 GROS1|OI8|P3H1 HGNC:19316|MIM:610339|Ensembl:ENSG00000117385|HPRD:11227|Vega:OTTHUMG00000007525 1 1p34.1 leucine proline-enriched proteoglycan (leprecan) 1 protein-coding LEPRE1 leucine proline-enriched proteoglycan (leprecan) 1 O growth suppressor 1|leprecan|leucine- and proline-enriched proteoglycan 1|prolyl 3-hydroxylase 1 20121230 -9606 64180 DPEP3 UNQ834/PRO1772 MBD3 HGNC:23029|MIM:609926|Ensembl:ENSG00000141096|HPRD:07012|Vega:OTTHUMG00000137544 16 16q22.1 dipeptidase 3 protein-coding DPEP3 dipeptidase 3 O membrane-bound dipeptidase 3|metallopeptidase (family M19) 20121230 -9606 64184 EDDM3B UNQ6412/PRO21187 EP3B|FAM12B|HE3-BETA|HE3B HGNC:19223|MIM:611582|Ensembl:ENSG00000181552|HPRD:13290|Vega:OTTHUMG00000029583 14 14q11.2 epididymal protein 3B protein-coding EDDM3B epididymal protein 3B O epididymal secretory protein E3 beta|epididymal secretory protein E3-beta|family with sequence similarity 12, member B (epididymal)|human epididymis-specific 3 beta|human epididymis-specific protein 3-beta 20121230 -9606 64207 IRF2BPL My039 C14orf4|EAP1 HGNC:14282|MIM:611720|Ensembl:ENSG00000119669|HPRD:10713|Vega:OTTHUMG00000171578 14 14q24.3 interferon regulatory factor 2 binding protein-like protein-coding IRF2BPL interferon regulatory factor 2 binding protein-like O enhanced at puberty 1|enhanced at puberty protein 1|interferon regulatory factor 2-binding protein-like 20121230 -9606 64208 POPDC3 RP11-355M14.1 POP3|RP11-99L11.2|bA355M14.1 HGNC:17649|MIM:605824|Ensembl:ENSG00000132429|HPRD:16161|Vega:OTTHUMG00000015293 6 6q21 popeye domain containing 3 protein-coding POPDC3 popeye domain containing 3 O popeye domain-containing protein 3|popeye protein 3 20121230 -9606 64210 MMS19 RP11-452K12.5 MET18|MMS19L|hMMS19 HGNC:13824|MIM:614777|Ensembl:ENSG00000155229|HPRD:17579|Vega:OTTHUMG00000018857 10 10q24-q25 MMS19 nucleotide excision repair homolog (S. cerevisiae) protein-coding MMS19 MMS19 nucleotide excision repair homolog (S. cerevisiae) O MET18 homolog|MMS19 nucleotide excision repair protein homolog|MMS19-like (MET18 homolog, S. cerevisiae)|MMS19-like protein|homolog of yeast MMS19 20121230 -9606 64211 LHX5 - - HGNC:14216|MIM:605992|Ensembl:ENSG00000089116|HPRD:09344|Vega:OTTHUMG00000169552 12 12q24 LIM homeobox 5 protein-coding LHX5 LIM homeobox 5 O LIM homeobox protein 5|LIM/homeobox protein Lhx5 20121230 -9606 64215 DNAJC1 RP11-399C16.1 DNAJL1|ERdj1|HTJ1|MTJ1 HGNC:20090|MIM:611207|Ensembl:ENSG00000136770|HPRD:09922|Vega:OTTHUMG00000017800 10 10p12.31 DnaJ (Hsp40) homolog, subfamily C, member 1 protein-coding DNAJC1 DnaJ (Hsp40) homolog, subfamily C, member 1 O DnaJ-like protein|dnaJ homolog subfamily C member 1|dnaJ protein homolog MTJ1 20121230 -9606 64216 TFB2M - Hkp1|mtTFB2 HGNC:18559|MIM:607055|Ensembl:ENSG00000162851|HPRD:09520|Vega:OTTHUMG00000040091 1 1q44 transcription factor B2, mitochondrial protein-coding TFB2M transcription factor B2, mitochondrial O HCV NS5A-transactivated protein 5|S-adenosylmethionine-6-N', N'-adenosyl(rRNA) dimethyltransferase 2|dimethyladenosine transferase 2, mitochondrial|h-mtTFB|h-mtTFB2|hTFB2M|hepatitis C virus NS5A-transactivated protein 5|mitochondrial 12S rRNA dimethylase 2|mitochondrial transcription factor B2 20121230 -9606 64218 SEMA4A RP11-54H19.2 CORD10|RP35|SEMAB|SEMB HGNC:10729|MIM:607292|Ensembl:ENSG00000196189|HPRD:09528|Vega:OTTHUMG00000014042 1 1q22 sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4A protein-coding SEMA4A sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4A O sema B|semaphorin-4A|semaphorin-B 20121230 -9606 64219 PJA1 RP13-55H22.1 PRAJA1|RNF70 HGNC:16648|MIM:300420|Ensembl:ENSG00000181191|HPRD:02335|Vega:OTTHUMG00000021753 X Xq13.1 praja ring finger 1, E3 ubiquitin protein ligase protein-coding PJA1 praja ring finger 1, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase Praja-1|RING finger protein 70|praja 1 20121230 -9606 64220 STRA6 PP14296 MCOPCB8|MCOPS9 HGNC:30650|MIM:610745|Ensembl:ENSG00000137868|HPRD:18122|Vega:OTTHUMG00000138998 15 15q24.1 stimulated by retinoic acid 6 protein-coding STRA6 stimulated by retinoic acid 6 O stimulated by retinoic acid 6 homolog|stimulated by retinoic acid gene 6 homolog|stimulated by retinoic acid gene 6 protein homolog 20121230 -9606 64221 ROBO3 - HGPPS|HGPS|RBIG1|RIG1 HGNC:13433|MIM:608630|Ensembl:ENSG00000154134|HPRD:10554|Vega:OTTHUMG00000165934 11 11q24.2 roundabout, axon guidance receptor, homolog 3 (Drosophila) protein-coding ROBO3 roundabout, axon guidance receptor, homolog 3 (Drosophila) O retinoblastoma inhibiting gene 1|roundabout homolog 3|roundabout-like protein 3 20121230 -9606 64222 TOR3A RP11-177A2.2 ADIR|ADIR2 HGNC:11997|MIM:607555|Ensembl:ENSG00000186283|HPRD:09615|Vega:OTTHUMG00000035077 1 1q25.2 torsin family 3, member A protein-coding TOR3A torsin family 3, member A O ATP-dependant interferon response protein 1|ATP-dependant interferon responsive|ATP-dependent interferon-responsive protein|torsin-3A 20121230 -9606 64223 MLST8 - GBL|GbetaL|LST8|POP3|WAT1 HGNC:24825|MIM:612190|Ensembl:ENSG00000167965|HPRD:17031|Vega:OTTHUMG00000128827 16 16p13.3 MTOR associated protein, LST8 homolog (S. cerevisiae) protein-coding MLST8 MTOR associated protein, LST8 homolog (S. cerevisiae) O TORC subunit LST8|gable|mammalian lethal with SEC13 protein 8|protein GbetaL|target of rapamycin complex subunit LST8 20121230 -9606 64224 HERPUD2 - - HGNC:21915|Ensembl:ENSG00000122557|HPRD:07984|Vega:OTTHUMG00000128687 7 7p14.2 HERPUD family member 2 protein-coding HERPUD2 HERPUD family member 2 O homocysteine-inducible, endoplasmic reticulum stress-inducible, ubiquitin-like domain member 2|homocysteine-responsive endoplasmic reticulum-resident ubiquitin-like domain member 2 protein 20121230 -9606 64225 ATL2 - ARL3IP2|ARL6IP2|atlastin2 HGNC:24047|MIM:609368|Ensembl:ENSG00000119787|HPRD:10662|Vega:OTTHUMG00000102074 2 2p22.3 atlastin GTPase 2 protein-coding ATL2 atlastin GTPase 2 O ADP-ribosylation factor-like 6 interacting protein 2|ADP-ribosylation factor-like protein 6-interacting protein 2|ADP-ribosylation-like factor 6 interacting protein 2|ARL-6-interacting protein 2|aip-2|atlastin-2 20121230 -9606 64227 ERP29P1 - ERP28P HGNC:24625 20 20q13.2 endoplasmic reticulum lumenal protein 29 pseudogene 1 pseudo ERP29P1 endoplasmic reticulum lumenal protein 29 pseudogene 1 O - 20121230 -9606 64231 MS4A6A CDA01 4SPAN3|4SPAN3.2|CD20L3|MS4A6|MST090|MSTP090 HGNC:13375|MIM:606548|Ensembl:ENSG00000110077|HPRD:09414|Vega:OTTHUMG00000167241 11 11q12.1 membrane-spanning 4-domains, subfamily A, member 6A protein-coding MS4A6A membrane-spanning 4-domains, subfamily A, member 6A O CD20 antigen-like 3|CD20-like precusor|HAIRB-iso|MS4A6A-polymorph|four-span transmembrane protein 3|four-span transmembrane protein 3.1|four-span transmembrane protein 3.2|membrane-spanning 4-domains subfamily A member 6A 20121230 -9606 64232 MS4A5 - CD20-L2|CD20L2|TETM4 HGNC:13374|MIM:606499|Ensembl:ENSG00000166930|HPRD:07578|Vega:OTTHUMG00000167613 11 11q12 membrane-spanning 4-domains, subfamily A, member 5 protein-coding MS4A5 membrane-spanning 4-domains, subfamily A, member 5 O CD20 antigen-like 2|membrane-spanning 4-domains subfamily A member 5|testis-expressed transmembrane protein 4|testis-expressed transmembrane-4 protein 20121230 -9606 64236 PDLIM2 PP6345 MYSTIQUE|SLIM HGNC:13992|MIM:609722|Ensembl:ENSG00000120913|HPRD:17831|Vega:OTTHUMG00000164270 8 8p21.3 PDZ and LIM domain 2 (mystique) protein-coding PDLIM2 PDZ and LIM domain 2 (mystique) O PDZ and LIM domain protein 2 20121230 -9606 64239 RSCIS - - MIM:605463 14 14q11.2 Radiation sensitivity/chromosome instability syndrome, autosomal dominant unknown - - - - 20120622 -9606 64240 ABCG5 - STSL HGNC:13886|MIM:605459|Ensembl:ENSG00000138075|HPRD:05678|Vega:OTTHUMG00000128758 2 2p21 ATP-binding cassette, sub-family G (WHITE), member 5 protein-coding ABCG5 ATP-binding cassette, sub-family G (WHITE), member 5 O ATP-binding cassette sub-family G member 5|ATP-binding cassette, subfamily G, member 5|sterolin 1|sterolin-1 20121230 -9606 64241 ABCG8 - GBD4|STSL HGNC:13887|MIM:605460|Ensembl:ENSG00000143921|HPRD:05679|Vega:OTTHUMG00000128756 2 2p21 ATP-binding cassette, sub-family G (WHITE), member 8 protein-coding ABCG8 ATP-binding cassette, sub-family G (WHITE), member 8 O ATP-binding cassette sub-family G member 8|ATP-binding cassette, subfamily G, member 8|sterolin 2|sterolin-2 20121230 -9606 64282 PAPD5 - TRF4-2 HGNC:30758|MIM:605540|Ensembl:ENSG00000121274|HPRD:16119|Vega:OTTHUMG00000173452 16 16q12.1 PAP associated domain containing 5 protein-coding PAPD5 PAP associated domain containing 5 O PAP-associated domain-containing protein 5|TUTase 3|terminal uridylyltransferase 3|topoisomerase-related function protein 4-2 20121230 -9606 64283 ARHGEF28 - RGNEF|RIP2|p190RHOGEF HGNC:30322|MIM:612790|Ensembl:ENSG00000214944|Vega:OTTHUMG00000162454 5 5q13.2 Rho guanine nucleotide exchange factor (GEF) 28 protein-coding ARHGEF28 Rho guanine nucleotide exchange factor (GEF) 28 O 190 kDa guanine nucleotide exchange factor|Rho interacting protein 2|p190-RhoGEF|rho guanine nucleotide exchange factor 28|rho-guanine nucleotide exchange factor 20121230 -9606 64284 RAB17 - - HGNC:16523|MIM:602206|Ensembl:ENSG00000124839|HPRD:11468|Vega:OTTHUMG00000133299 2 2q37.3 RAB17, member RAS oncogene family protein-coding RAB17 RAB17, member RAS oncogene family O ras-related protein Rab-17 20121230 -9606 64285 RHBDF1 - C16orf8|Dist1|EGFR-RS|gene-89|gene-90|hDist1 HGNC:20561|MIM:614403|HPRD:07027 16 16p13.3 rhomboid 5 homolog 1 (Drosophila) protein-coding RHBDF1 rhomboid 5 homolog 1 (Drosophila) O epidermal growth factor receptor, related sequence|epidermal growth factor receptor-related protein|iRhom1|inactive rhomboid protein 1|p100hRho|rhomboid family 1|rhomboid family member 1 20121230 -9606 64288 ZNF323 - ZNF20-Lp|ZNF310P|dJ874C20.2 HGNC:14097|MIM:610794|Ensembl:ENSG00000235109|HPRD:15772|Vega:OTTHUMG00000014518 6 6p21.31|6p22.3-p22.1 zinc finger protein 323 protein-coding ZNF323 zinc finger protein 323 O zinc finger protein 310 pseudogene 20121230 -9606 64318 NOC3L - AD24|C10orf117|FAD24 HGNC:24034|MIM:610769|Ensembl:ENSG00000173145|HPRD:12562|Vega:OTTHUMG00000018788 10 10q23.33 nucleolar complex associated 3 homolog (S. cerevisiae) protein-coding NOC3L nucleolar complex associated 3 homolog (S. cerevisiae) O NOC3 protein homolog|NOC3-like protein|factor for adipocyte differentiation 24|nucleolar complex protein 3 homolog|nucleolar complex-associated protein 3-like protein 20121230 -9606 64319 FBRS - FBS|FBS1 HGNC:20442|MIM:608601|Ensembl:ENSG00000156860|HPRD:16354 16 16p11.2 fibrosin protein-coding FBRS fibrosin O fibrogenic lymphokine|fibrosin 1|probable fibrosin-1|probable fibrosin-1 long transcript protein 20121230 -9606 64320 RNF25 - AO7 HGNC:14662|Ensembl:ENSG00000163481|HPRD:09737|Vega:OTTHUMG00000133077 2 2q35 ring finger protein 25 protein-coding RNF25 ring finger protein 25 O E3 ubiquitin-protein ligase RNF25|ring finger protein AO7 20121230 -9606 64321 SOX17 - VUR3 HGNC:18122|MIM:610928|Ensembl:ENSG00000164736|HPRD:18085|Vega:OTTHUMG00000164377 8 8q11.23 SRY (sex determining region Y)-box 17 protein-coding SOX17 SRY (sex determining region Y)-box 17 O SRY-related HMG-box transcription factor SOX17|transcription factor SOX-17 20121230 -9606 64324 NSD1 - ARA267|KMT3B|SOTOS|SOTOS1|STO HGNC:14234|MIM:606681|Ensembl:ENSG00000165671|HPRD:09455|Vega:OTTHUMG00000130846 5 5q35 nuclear receptor binding SET domain protein 1 protein-coding NSD1 nuclear receptor binding SET domain protein 1 O H3-K36-HMTase|H4-K20-HMTase|NR-binding SET domain-containing protein|androgen receptor coactivator 267 kDa protein|androgen receptor-associated coregulator 267|androgen receptor-associated protein of 267 kDa|histone-lysine N-methyltransferase, H3 lysine-36 and H4 lysine-20 specific|lysine N-methyltransferase 3B|nuclear receptor-binding SET domain-containing protein 1 20121230 -9606 64326 RFWD2 RP11-318C24.3 COP1|RNF200 HGNC:17440|MIM:608067|Ensembl:ENSG00000143207|HPRD:07455|Vega:OTTHUMG00000034986 1 1q25.1-q25.2 ring finger and WD repeat domain 2, E3 ubiquitin protein ligase protein-coding RFWD2 ring finger and WD repeat domain 2, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase RFWD2|RING finger and WD repeat domain protein 2|RING finger protein 200|constitutive photomorphogenesis protein 1 homolog|constitutive photomorphogenic protein (COP1)|hCOP1|putative ubiquitin ligase COP1 20121230 -9606 64327 LMBR1 tcag7.573 ACHP|C7orf2|DIF14|PPD2|TPT HGNC:13243|MIM:605522|Ensembl:ENSG00000105983|HPRD:05700|Vega:OTTHUMG00000151510 7 7q36 limb region 1 homolog (mouse) protein-coding LMBR1 limb region 1 homolog (mouse) O differentiation-related gene 14 protein|limb region 1 protein homolog 20121230 -9606 64328 XPO4 - exp4 HGNC:17796|MIM:611449|Ensembl:ENSG00000132953|HPRD:18307|Vega:OTTHUMG00000016528 13 13q11 exportin 4 protein-coding XPO4 exportin 4 O exportin-4 20121230 -9606 64332 NFKBIZ - IKBZ|INAP|MAIL HGNC:29805|MIM:608004|Ensembl:ENSG00000144802|HPRD:09217|Vega:OTTHUMG00000159194 3 3p12-q12 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, zeta protein-coding NFKBIZ nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, zeta O I-kappa-B-zeta|IL-1 inducible nuclear ankyrin-repeat protein|Ikappa B-zeta variant 3|IkappaB-zeta|NF-kappa-B inhibitor zeta|ikB-zeta|ikappaBzeta|molecule possessing ankyrin repeats induced by lipopolysaccharide 20121230 -9606 64333 ARHGAP9 - 10C|RGL1 HGNC:14130|MIM:610576|Ensembl:ENSG00000123329|HPRD:06449|Vega:OTTHUMG00000150147 12 12q13.3 Rho GTPase activating protein 9 protein-coding ARHGAP9 Rho GTPase activating protein 9 O rho GTPase-activating protein 9|rho-type GTPase-activating protein 9 20121230 -9606 64342 HS1BP3 - ETM2|HS1-BP3 HGNC:24979|MIM:609359|Ensembl:ENSG00000118960|HPRD:13357|Vega:OTTHUMG00000122099 2 2p24.1 HCLS1 binding protein 3 protein-coding HS1BP3 HCLS1 binding protein 3 O HCLS1-binding protein 3|HS1-binding protein 3|HSP1BP-3 20121230 -9606 64343 AZI2 - AZ2|NAP1|TILP HGNC:24002|MIM:609916|Ensembl:ENSG00000163512|HPRD:10577|Vega:OTTHUMG00000130573 3 3p24.1 5-azacytidine induced 2 protein-coding AZI2 5-azacytidine induced 2 O 5-azacytidine induced gene 2|5-azacytidine-induced protein 2|NAK-associated protein 1|NF-kappa-B-activating kinase-associated protein 1 20121230 -9606 64344 HIF3A - HIF-3A|IPAS|MOP7|PASD7|bHLHe17 HGNC:15825|MIM:609976|Ensembl:ENSG00000124440|HPRD:17104|Vega:OTTHUMG00000141296 19 19q13.32 hypoxia inducible factor 3, alpha subunit protein-coding HIF3A hypoxia inducible factor 3, alpha subunit O HIF3-alpha-1|PAS domain-containing protein 7|basic-helix-loop-helix-PAS protein MOP7|class E basic helix-loop-helix protein 17|hypoxia-inducible factor 3-alpha|inhibitory PAS domain protein|member of PAS protein 7 20121230 -9606 64359 NXN - NRX|TRG-4 HGNC:18008|MIM:612895|Ensembl:ENSG00000167693|HPRD:14858|Vega:OTTHUMG00000090307 17 17p13.3 nucleoredoxin protein-coding NXN nucleoredoxin O nucleoredoxin 1 20121230 -9606 64374 SIL1 UNQ545/PRO836 BAP|MSS|ULG5 HGNC:24624|MIM:608005|Ensembl:ENSG00000120725|HPRD:12150|Vega:OTTHUMG00000129226 5 5q31 SIL1 homolog, endoplasmic reticulum chaperone (S. cerevisiae) protein-coding SIL1 SIL1 homolog, endoplasmic reticulum chaperone (S. cerevisiae) O BiP-associated protein|nucleotide exchange factor SIL1 20121230 -9606 64375 IKZF4 - EOS|ZNFN1A4 HGNC:13179|MIM:606239|Ensembl:ENSG00000123411|HPRD:05874|Vega:OTTHUMG00000170132 12 12q13 IKAROS family zinc finger 4 (Eos) protein-coding IKZF4 IKAROS family zinc finger 4 (Eos) O ikaros family zinc finger protein 4|zinc finger protein Eos|zinc finger protein, subfamily 1A, 4 (Eos)|zinc finger transcription factor Eos 20121230 -9606 64376 IKZF5 - PEGASUS|ZNFN1A5 HGNC:14283|MIM:606238|Ensembl:ENSG00000095574|HPRD:05873|Vega:OTTHUMG00000019192 10 10q26 IKAROS family zinc finger 5 (Pegasus) protein-coding IKZF5 IKAROS family zinc finger 5 (Pegasus) O zinc finger protein Pegasus|zinc finger protein, subfamily 1A, 5 (Pegasus)|zinc finger transcription factor Pegasus 20121230 -9606 64377 CHST8 - GALNAC4ST1|GalNAc4ST HGNC:15993|MIM:610190|Ensembl:ENSG00000124302|HPRD:07632|Vega:OTTHUMG00000180472 19 19q13.1 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 8 protein-coding CHST8 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 8 O GALNAC-4-ST1|GalNAc-4-O-sulfotransferase 1|N-acetylgalactosamine-4-O-sulfotransferase 1|carbohydrate sulfotransferase 8|galNAc4ST-1 20121230 -9606 64386 MMP25 - MMP-25|MMP20|MMP20A|MMPL1|MT-MMP 6|MT-MMP6|MT6-MMP|MT6MMP|MTMMP6 HGNC:14246|MIM:608482|Ensembl:ENSG00000008516|HPRD:07090|HPRD:07492|Vega:OTTHUMG00000177475 16 16p13.3 matrix metallopeptidase 25 protein-coding MMP25 matrix metallopeptidase 25 O leukolysin|matrix metallopeptidase-like 1|matrix metalloproteinase 20|matrix metalloproteinase 25|matrix metalloproteinase-25|matrix metalloproteinase-like 1|membrane-type 6 matrix metalloproteinase|membrane-type matrix metalloproteinase 6|membrane-type-6 matrix metalloproteinase 20121230 -9606 64388 GREM2 - CKTSF1B2|DAND3|PRDC HGNC:17655|MIM:608832|Ensembl:ENSG00000180875|HPRD:16390|Vega:OTTHUMG00000039909 1 1q43 gremlin 2 protein-coding GREM2 gremlin 2 O DAN domain family member 3|cysteine knot superfamily 1, BMP antagonist 2|gremlin 2, cysteine knot superfamily, homolog|gremlin-2|protein related to DAN and cerberus 20121230 -9606 64393 ZMAT3 - PAG608|WIG-1|WIG1 HGNC:29983|MIM:606452|Ensembl:ENSG00000172667|HPRD:07343|Vega:OTTHUMG00000157290 3 3q26.32 zinc finger, matrin-type 3 protein-coding ZMAT3 zinc finger, matrin-type 3 O WIG-1/PAG608 protein|p53 target zinc finger protein|p53-activated gene 608 protein|zinc finger matrin-type protein 3|zinc finger protein WIG-1|zinc finger protein WIG1|zinc finger, matrin type 3 20121230 -9606 64395 GMCL1 - BTBD13|GCL|GCL1|SPATA29 HGNC:23843|Ensembl:ENSG00000087338|HPRD:13587|Vega:OTTHUMG00000129643 2 2p13.3 germ cell-less, spermatogenesis associated 1 protein-coding GMCL1 germ cell-less, spermatogenesis associated 1 O germ cell-less homolog 1|germ cell-less protein-like 1|spermatogenesis associated 29 20121230 -9606 64396 GMCL1P1 - GCL|GMCL1L|GMCL2 HGNC:19717|HPRD:17044 5 5q35.3 germ cell-less, spermatogenesis associated 1 pseudogene 1 pseudo GMCL1P1 germ cell-less, spermatogenesis associated 1 pseudogene 1 O - 20121230 -9606 64397 ZFP106 - SH3BP3|ZNF474 HGNC:23240|Ensembl:ENSG00000103994|HPRD:10317|Vega:OTTHUMG00000173244 15 15q15.1 zinc finger protein 106 homolog (mouse) protein-coding ZFP106 zinc finger protein 106 homolog (mouse) O SH3-domain binding protein 3|zfp-106|zinc finger protein 106 homolog|zinc finger protein 474 20121230 -9606 64398 MPP5 - PALS1 HGNC:18669|MIM:606958|Ensembl:ENSG00000072415|HPRD:09508|Vega:OTTHUMG00000171243 14 14q23.3 membrane protein, palmitoylated 5 (MAGUK p55 subfamily member 5) protein-coding MPP5 membrane protein, palmitoylated 5 (MAGUK p55 subfamily member 5) O MAGUK p55 subfamily member 5|protein associated with lin seven 1|stardust 20121230 -9606 64399 HHIP UNQ5825/PRO19644 HIP HGNC:14866|MIM:606178|Ensembl:ENSG00000164161|HPRD:06937|Vega:OTTHUMG00000161428 4 4q28-q32 hedgehog interacting protein protein-coding HHIP hedgehog interacting protein O hedgehog-interacting protein 20121230 -9606 64400 AKTIP - FT1|FTS HGNC:16710|MIM:608483|Ensembl:ENSG00000166971|HPRD:07467|Vega:OTTHUMG00000133199 16 16q12.2 AKT interacting protein protein-coding AKTIP AKT interacting protein O AKT-interacting protein|fused toes homolog|fused toes protein homolog 20121230 -9606 64403 CDH24 UNQ2834/PRO34009 CDH11L HGNC:14265|Ensembl:ENSG00000139880|HPRD:13019|Vega:OTTHUMG00000028715 14 14q11.2 cadherin 24, type 2 protein-coding CDH24 cadherin 24, type 2 O cadherin-24|cadherin-like 24 20121230 -9606 64405 CDH22 - C20orf25|dJ998H6.1 HGNC:13251|MIM:609920|Ensembl:ENSG00000149654|HPRD:13018|Vega:OTTHUMG00000033073 20 20q13.1 cadherin 22, type 2 protein-coding CDH22 cadherin 22, type 2 O PB-cadherin|cadherin-22|cadherin-like 22|ortholog of rat PB-cadherin|pituitary and brain cadherin 20121230 -9606 64407 RGS18 RP11-142L4.1 RGS13 HGNC:14261|MIM:607192|Ensembl:ENSG00000150681|HPRD:06224|Vega:OTTHUMG00000035592 1 1q31.2 regulator of G-protein signaling 18 protein-coding RGS18 regulator of G-protein signaling 18 O regulator of G-protein signalling 13|regulator of G-protein signalling 18 20121230 -9606 64409 WBSCR17 - GALNT16|GALNT20|GALNTL3 HGNC:16347|Ensembl:ENSG00000185274|HPRD:15655|Vega:OTTHUMG00000129783 7 7q11.23 Williams-Beuren syndrome chromosome region 17 protein-coding WBSCR17 Williams-Beuren syndrome chromosome region 17 O UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase-like 3|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase-like protein 3|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 16|galNAc-T-like protein 3|polypeptide GalNAc transferase-like protein 3|polypeptide N-acetylgalactosaminyltransferase WBSCR17|pp-GaNTase-like protein 3|pp-GalNAc-transferase 20|protein-UDP acetylgalactosaminyltransferase-like protein 3|putative polypeptide N-acetylgalactosaminyltransferase-like protein 3|williams-Beuren syndrome chromosomal region 17 protein 20121230 -9606 64410 KLHL25 - ENC-2|ENC2 HGNC:25732|Ensembl:ENSG00000183655|HPRD:07780|Vega:OTTHUMG00000148672 15 15q25.3 kelch-like 25 (Drosophila) protein-coding KLHL25 kelch-like 25 (Drosophila) O BTB/POZ KELCH domain protein|ectoderm-neural cortex protein 2|ectodermal-neural cortex 2|kelch-like protein 25 20121230 -9606 64411 ARAP3 - CENTD3|DRAG1 HGNC:24097|MIM:606647|Ensembl:ENSG00000120318|HPRD:09441|Vega:OTTHUMG00000129610 5 5q31.3 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 protein-coding ARAP3 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 O ARF-GAP, RHO-GAP, ankyrin repeat and plekstrin homology domains-containing protein 3|Arf and Rho GAP adapter protein 3|PtdIns(3,4,5)P3-binding protein|arf-GAP with Rho-GAP domain, ANK repeat and PH domain-containing protein 3|centaurin, delta 3|centaurin-delta-3|cnt-d3|phosphoinositide binding protein 20121230 -9606 64412 GZF1 RP3-322G13.10-004 ZBTB23|ZNF336 HGNC:15808|MIM:613842|Ensembl:ENSG00000125812|HPRD:15778|Vega:OTTHUMG00000032069 20 20p11.21 GDNF-inducible zinc finger protein 1 protein-coding GZF1 GDNF-inducible zinc finger protein 1 O zinc finger and BTB domain-containing protein 23|zinc finger protein 336 20121230 -9606 64417 C5orf28 - - HGNC:26139|Ensembl:ENSG00000151881|HPRD:07965|Vega:OTTHUMG00000131150 5 5p12 chromosome 5 open reading frame 28 protein-coding C5orf28 chromosome 5 open reading frame 28 O transmembrane protein C5orf28 20121230 -9606 64418 TMEM168 - - HGNC:25826|Ensembl:ENSG00000146802|HPRD:07831|Vega:OTTHUMG00000155188 7 7q31.32 transmembrane protein 168 protein-coding TMEM168 transmembrane protein 168 O - 20121230 -9606 64419 MTMR14 - C3orf29 HGNC:26190|MIM:611089|Ensembl:ENSG00000163719|HPRD:08654|Vega:OTTHUMG00000155111 3 3p26 myotubularin related protein 14 protein-coding MTMR14 myotubularin related protein 14 O HCV NS5A-transactivated protein 4 splice variant A-binding protein 1|NS5ATP4ABP1|egg-derived tyrosine phosphatase homolog|jumpy|myotubularin-related protein 14 20121230 -9606 64420 SUSD1 RP11-4O1.1 - HGNC:25413|Ensembl:ENSG00000106868|HPRD:15452|Vega:OTTHUMG00000020499 9 9q31.3-q33.1 sushi domain containing 1 protein-coding SUSD1 sushi domain containing 1 O sushi domain-containing protein 1 20121230 -9606 64421 DCLRE1C RP11-398C13.5 A-SCID|DCLREC1C|RS-SCID|SCIDA|SNM1C|hSNM1C HGNC:17642|MIM:605988|Ensembl:ENSG00000152457|HPRD:05817|Vega:OTTHUMG00000017716 10 10p13 DNA cross-link repair 1C protein-coding DCLRE1C DNA cross-link repair 1C O DNA cross-link repair 1C (PSO2 homolog, S. cerevisiae)|DNA cross-link repair 1C protein|PSO2 homolog|SNM1 homolog C|SNM1-like protein|protein artemis|severe combined immunodeficiency, type a (Athabascan) 20121230 -9606 64422 ATG3 - APG3|APG3-LIKE|APG3L|PC3-96 HGNC:20962|MIM:609606|Ensembl:ENSG00000144848|HPRD:10654|Vega:OTTHUMG00000159260 3 3q13.2 autophagy related 3 protein-coding ATG3 autophagy related 3 O 2610016C12Rik|ATG3 autophagy related 3 homolog|autophagy-related protein 3|hApg3|ubiquitin-like-conjugating enzyme ATG3 20121230 -9606 64423 INF2 hCG_2029577 C14orf151|C14orf173|CMTDIE|FSGS5|pp9484 HGNC:23791|MIM:610982|Ensembl:ENSG00000203485|HPRD:08648|Vega:OTTHUMG00000029811 14 14q32.33 inverted formin, FH2 and WH2 domain containing protein-coding INF2 inverted formin, FH2 and WH2 domain containing O HBEAG-binding protein 2 binding protein C|HBEBP2-binding protein C|inverted formin-2 20121230 -9606 64425 POLR1E - PAF53|PRAF1|RP11-405L18.3 HGNC:17631|Ensembl:ENSG00000137054|HPRD:15096|Vega:OTTHUMG00000019920 9 9p13.2 polymerase (RNA) I polypeptide E, 53kDa protein-coding POLR1E polymerase (RNA) I polypeptide E, 53kDa O DNA-directed RNA polymerase I subunit E|DNA-directed RNA polymerase I subunit RPA49|RNA polymerase I associated factor 53|RNA polymerase I subunit A49|RNA polymerase I-associated factor 1|RNA polymerase I-associated factor 53|polymerase (RNA) I associated factor 1 20121230 -9606 64426 SUDS3 - SAP45|SDS3 HGNC:29545|MIM:608250|Ensembl:ENSG00000111707|HPRD:12196|Vega:OTTHUMG00000168884 12 12q24.23 suppressor of defective silencing 3 homolog (S. cerevisiae) protein-coding SUDS3 suppressor of defective silencing 3 homolog (S. cerevisiae) O 45 kDa Sin3-associated polypeptide|sin3 histone deacetylase corepressor complex component SDS3|sin3A-associated protein, 45kDa|suppressor of defective silencing 3 protein homolog 20121230 -9606 64427 TTC31 - - HGNC:25759|Ensembl:ENSG00000115282|HPRD:07797|Vega:OTTHUMG00000152887 2 2p13.1 tetratricopeptide repeat domain 31 protein-coding TTC31 tetratricopeptide repeat domain 31 O TPR repeat protein 31|tetratricopeptide repeat protein 31 20121230 -9606 64428 NARFL LA16c-444G9.3 HPRN|IOP1|LET1L|PRN HGNC:14179|MIM:611118|Ensembl:ENSG00000103245|HPRD:14810|Vega:OTTHUMG00000122093 16 16p13.3 nuclear prelamin A recognition factor-like protein-coding NARFL nuclear prelamin A recognition factor-like O LET1 like/JFP15|cytosolic Fe-S cluster assembly factor NARFL|iron-only hydrogenase-like protein 1|nuclear prelamin A recognition factor-like protein|protein related to Narf 20121230 -9606 64429 ZDHHC6 - ZNF376 HGNC:19160|Ensembl:ENSG00000023041|HPRD:15721|Vega:OTTHUMG00000019062 10 10q25.2 zinc finger, DHHC-type containing 6 protein-coding ZDHHC6 zinc finger, DHHC-type containing 6 O DHHC-6|palmitoyltransferase ZDHHC6|probable palmitoyltransferase ZDHHC6|transmembrane protein H4|zinc finger DHHC domain-containing protein 6|zinc finger protein 376|zinc finger, DHHC domain containing 6 20121230 -9606 64430 PCNXL4 - C14orf135|FBP2 HGNC:20349|Ensembl:ENSG00000126773|HPRD:16604|Vega:OTTHUMG00000150361 14 14q23.1 pecanex-like 4 (Drosophila) protein-coding PCNXL4 pecanex-like 4 (Drosophila) O HCV F protein-binding protein 2|HCV F-interacting protein|hepatitis C virus F protein-binding protein 2|pecanex-like protein 4|pecanex-like protein C14orf135 20121230 -9606 64431 ACTR6 CDA12 ARP6|HSPC281|MSTP136|hARP6|hARPX HGNC:24025|Ensembl:ENSG00000075089|HPRD:12421|Vega:OTTHUMG00000170245 12 12q23.1 ARP6 actin-related protein 6 homolog (yeast) protein-coding ACTR6 ARP6 actin-related protein 6 homolog (yeast) O actin-related protein 6 20121230 -9606 64432 MRPS25 - MRP-S25|RPMS25 HGNC:14511|MIM:611987|Ensembl:ENSG00000131368|HPRD:17594|Vega:OTTHUMG00000129836 3 3p25 mitochondrial ribosomal protein S25 protein-coding MRPS25 mitochondrial ribosomal protein S25 O 28S ribosomal protein S25, mitochondrial|S25mt|mitochondrial 28S ribosomal protein S25 20121230 -9606 64433 LINC00244 - C7orf4|NCRNA00244 HGNC:13245 7 7q36 long intergenic non-protein coding RNA 244 miscRNA LINC00244 long intergenic non-protein coding RNA 244 O - 20121230 -9606 64434 NOM1 - C7orf3|SGD1 HGNC:13244|MIM:611269|Ensembl:ENSG00000146909|HPRD:18485|Vega:OTTHUMG00000152639 7 7q36.3 nucleolar protein with MIF4G domain 1 protein-coding NOM1 nucleolar protein with MIF4G domain 1 O SGD1 homolog|nucleolar MIF4G domain-containing protein 1 20121230 -9606 64446 DNAI2 - CILD9 HGNC:18744|MIM:605483|Ensembl:ENSG00000171595|HPRD:12019|Vega:OTTHUMG00000178578 17 17q25 dynein, axonemal, intermediate chain 2 protein-coding DNAI2 dynein, axonemal, intermediate chain 2 O dynein intermediate chain 2, axonemal|dynein, axonemal, intermediate polypeptide 2 20121230 -9606 64478 CSMD1 UNQ5952/PRO19863 PPP1R24 HGNC:14026|MIM:608397|Ensembl:ENSG00000183117|HPRD:10523|Vega:OTTHUMG00000163605 8 8p23.2 CUB and Sushi multiple domains 1 protein-coding CSMD1 CUB and Sushi multiple domains 1 O CUB and sushi domain-containing protein 1|protein phosphatase 1, regulatory subunit 24 20121230 -9606 64493 LINC00235 - C16orf10|NCRNA00235 HGNC:14138 16 16p13.3 long intergenic non-protein coding RNA 235 miscRNA LINC00235 long intergenic non-protein coding RNA 235 O - 20121230 -9606 64499 TPSB2 - TPS2|tryptaseB|tryptaseC HGNC:14120|MIM:191081|Ensembl:ENSG00000197253|HPRD:10277|Vega:OTTHUMG00000155926 16 16p13.3 tryptase beta 2 (gene/pseudogene) protein-coding TPSB2 tryptase beta 2 (gene/pseudogene) O mast cell tryptase beta II|mast cell tryptase beta III|tryptase beta-2 20121230 -9606 64506 CPEB1 - CEBP|CPE-BP1|CPEB HGNC:21744|MIM:607342|Ensembl:ENSG00000214575|Ensembl:ENSG00000260836|HPRD:09553|Vega:OTTHUMG00000172875|Vega:OTTHUMG00000172877 15 15q25.2 cytoplasmic polyadenylation element binding protein 1 protein-coding CPEB1 cytoplasmic polyadenylation element binding protein 1 O CPE-binding protein 1|cytoplasmic polyadenylation element-binding protein 1|h-CEBP|hCPEB-1 20121230 -9606 64518 TEKT3 - - HGNC:14293|MIM:612683|Ensembl:ENSG00000125409|HPRD:18173|Vega:OTTHUMG00000058965 17 17p12 tektin 3 protein-coding TEKT3 tektin 3 O tektin-3|testicular microtubules-related protein 20121230 -9606 64577 ALDH8A1 - ALDH12|DJ352A20.2 HGNC:15471|MIM:606467|Ensembl:ENSG00000118514|HPRD:06974|Vega:OTTHUMG00000015623 6 6q23.2 aldehyde dehydrogenase 8 family, member A1 protein-coding ALDH8A1 aldehyde dehydrogenase 8 family, member A1 O aldehyde dehydrogenase 12|aldehyde dehydrogenase family 8 member A1|aldehyde dehydrogenase family protein 20121230 -9606 64579 NDST4 - NDST-4|NHSST4 HGNC:20779|Ensembl:ENSG00000138653|HPRD:10116|Vega:OTTHUMG00000132916 4 4q26 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 4 protein-coding NDST4 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 4 O N-HSST 4|N-heparan sulfate sulfotransferase 4|bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 4|glucosaminyl N-deacetylase/N-sulfotransferase 4 20121230 -9606 64581 CLEC7A UNQ539/PRO1082 BGR|CANDF4|CLECSF12|DECTIN1 HGNC:14558|MIM:606264|Ensembl:ENSG00000172243|HPRD:08396|Vega:OTTHUMG00000133597 12 12p13.2 C-type lectin domain family 7, member A protein-coding CLEC7A C-type lectin domain family 7, member A O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 12|C-type lectin domain family 7 member A|C-type lectin superfamily member 12|DC-associated C-type lectin 1|beta-glucan receptor|dectin-1|dendritic cell-associated C-type lectin 1|dendritic cell-associated C-type lectin-1|lectin-like receptor 1 20121230 -9606 64582 GPR135 - HUMNPIIY20 HGNC:19991|MIM:607970|Ensembl:ENSG00000181619|HPRD:16263|Vega:OTTHUMG00000140325 14 14q23.1 G protein-coupled receptor 135 protein-coding GPR135 G protein-coupled receptor 135 O probable G-protein coupled receptor 135 20121230 -9606 64585 BOS2 - - MIM:120502 1 1q31 Branchiootic syndrome 2 unknown - - - - 20120622 -9606 64588 CMDR - - MIM:218400 6 6q21-q22 Craniometaphyseal dysplasia, autosomal recessive unknown - - - - 20120622 -9606 64589 IMAGE - - MIM:300290 - - Intrauterine growth retardation, metaphyseal dysplasia, adrenal hypoplasia congenita, and genital anomalies unknown - - - - 20120722 -9606 64591 TSPY2 - TSPYQ1 HGNC:23924|Ensembl:ENSG00000168757|HPRD:18234|Vega:OTTHUMG00000040957 Y Yp11.2 testis specific protein, Y-linked 2 protein-coding TSPY2 testis specific protein, Y-linked 2 O testis-specific Y-encoded protein 2|testis-specific Y-encoded protein Q1 20121209 -9606 64593 RBMY3AP - RBMY3P|RBMY4P|SPATA14 HGNC:23286 Y Yp11.2 RNA binding motif protein, Y-linked, family 3, member A pseudogene pseudo RBMY3AP RNA binding motif protein, Y-linked, family 3, member A pseudogene O - 20121209 -9606 64595 TTTY15 - NCRNA00138 HGNC:18567 Y Yq11.1 testis-specific transcript, Y-linked 15 (non-protein coding) miscRNA TTTY15 testis-specific transcript, Y-linked 15 (non-protein coding) O - 20121230 -9606 64596 PSMA6P1 - PSMA6-LIKE|PSMA6P|PSMA6Y HGNC:17460 Y Yq11.221 proteasome (prosome, macropain) subunit, alpha type, 6 pseudogene 1 pseudo PSMA6P1 proteasome (prosome, macropain) subunit, alpha type, 6 pseudogene 1 O - 20121230 -9606 64598 MOSPD3 - CDS3|NET30 HGNC:25078|MIM:609125|Ensembl:ENSG00000106330|HPRD:12370|Vega:OTTHUMG00000159599 7 7q22 motile sperm domain containing 3 protein-coding MOSPD3 motile sperm domain containing 3 O motile sperm domain-containing protein 3 20121230 -9606 64599 GIGYF1 PP3360 GYF1|PERQ1 HGNC:9126|MIM:612064|Ensembl:ENSG00000146830|HPRD:10145|Vega:OTTHUMG00000157036 7 7q22 GRB10 interacting GYF protein 1 protein-coding GIGYF1 GRB10 interacting GYF protein 1 O GRB10-interacting GYF protein 1|GYF domain containing 1|PERQ amino acid rich, with GYF domain 1|PERQ amino acid-rich with GYF domain-containing protein 1|postmeiotic segregation increased 2-like 12 20121230 -9606 64600 PLA2G2F RP3-340N1.1 - HGNC:30040|Ensembl:ENSG00000158786|HPRD:07499|Vega:OTTHUMG00000002704 1 1p35 phospholipase A2, group IIF protein-coding PLA2G2F phospholipase A2, group IIF O GIIF sPLA2|group IIF secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase 2F|sPLA2-IIF 20121230 -9606 64601 VPS16 RP11-12M19.2 hVPS16 HGNC:14584|MIM:608550|Ensembl:ENSG00000215305|HPRD:12259|Vega:OTTHUMG00000031714 20 20p13 vacuolar protein sorting 16 homolog (S. cerevisiae) protein-coding VPS16 vacuolar protein sorting 16 homolog (S. cerevisiae) O vacuolar protein sorting protein 16|vacuolar protein sorting-associated protein 16 homolog 20121230 -9606 64641 EBF2 - COE2|EBF-2|O/E-3|OE-3 HGNC:19090|MIM:609934|Ensembl:ENSG00000221818|HPRD:16848|Vega:OTTHUMG00000163838 8 8p21.2 early B-cell factor 2 protein-coding EBF2 early B-cell factor 2 O Collier, Olf and EBF 2|OLF-1/EBF-LIKE 3|metencephalon-mesencephalnon-olfactory transcription factor 1|transcription factor COE2 20121230 -9606 64644 GINGF2 - GGF2|HGF2 HGNC:14252|MIM:605544 5 5q13-q22 gingival fibromatosis, hereditary, 2 unknown GINGF2 gingival fibromatosis, hereditary, 2 O - 20120622 -9606 64645 HIAT1 - - HGNC:23363|Ensembl:ENSG00000156875|HPRD:11022|Vega:OTTHUMG00000010755 1 1p21.2 hippocampus abundant transcript 1 protein-coding HIAT1 hippocampus abundant transcript 1 O hippocampus abundant gene transcript 1|hippocampus abundant transcript 1 protein|putative tetracycline transporter-like protein|tetracycline transporter-like protein 20121230 -9606 64648 SPANXD - CT11.4|SPANX-C|SPANX-D|dJ171K16.1 HGNC:14332|MIM:300670|Ensembl:ENSG00000196406|HPRD:06722|Vega:OTTHUMG00000022563 X Xq27.1 SPANX family, member D protein-coding SPANXD SPANX family, member D O SPAN-Xd protein|cancer/testis antigen 11.4|cancer/testis antigen family 11, member 4|nuclear-associated protein SPAN-Xd|sperm protein associated with the nucleus on the X chromosome D|sperm protein associated with the nucleus, X chromosome, family member D 20121230 -9606 64651 CSRNP1 - AXUD1|CSRNP-1|FAM130B|TAIP-3|URAX1 HGNC:14300|MIM:606458|Ensembl:ENSG00000144655|HPRD:07347|Vega:OTTHUMG00000131293 3 3p22 cysteine-serine-rich nuclear protein 1 protein-coding CSRNP1 cysteine-serine-rich nuclear protein 1 O AXIN1 up-regulated 1|TGF-beta induced apoptosis protein 3|TGF-beta-induced apoptosis protein 3|axin-1 up-regulated gene 1 protein|cysteine/serine-rich nuclear protein 1 20121230 -9606 64663 SPANXC - C|CT11.3|CTp11|SPANX-C HGNC:14331|MIM:300330|Ensembl:ENSG00000198573|HPRD:02270|Vega:OTTHUMG00000022556 X Xq27.1 SPANX family, member C protein-coding SPANXC SPANX family, member C O SPAN-Xc protein|cancer-testis-associated protein CTp11|cancer/testis antigen 11.3|cancer/testis antigen family 11, member 3|cancer/testis-associated protein CTp11|cancer/testis-associated protein of 11 kD|nuclear-associated protein SPAN-Xc|sperm protein associated with the nucleus on the X chromosome C|sperm protein associated with the nucleus, X chromosome, family member C 20121230 -9606 64682 ANAPC1 - APC1|MCPR|TSG24 HGNC:19988|MIM:608473|Ensembl:ENSG00000153107|HPRD:09769|Vega:OTTHUMG00000131277 2 2q12.1 anaphase promoting complex subunit 1 protein-coding ANAPC1 anaphase promoting complex subunit 1 O anaphase-promoting complex 1 (meiotic checkpoint regulator)|anaphase-promoting complex subunit 1|cyclosome subunit 1|mitotic checkpoint regulator|testis-specific gene 24 protein 20121230 -9606 64689 GORASP1 - GOLPH5|GRASP65|P65 HGNC:16769|MIM:606867|Ensembl:ENSG00000114745|HPRD:06038|Vega:OTTHUMG00000131292 3 3p22-p21.33 golgi reassembly stacking protein 1, 65kDa protein-coding GORASP1 golgi reassembly stacking protein 1, 65kDa O Golgi peripheral membrane protein p65|Golgi phosphoprotein 5|Golgi reassembly and stacking protein 1|Golgi reassembly and stacking protein, 65 kDa|Golgi reassembly-stacking protein 1|golgi reassembly-stacking protein of 65 kDa 20121230 -9606 64693 CTAGE1 hCG_2039601 CT21.1|CT21.2|CTAGE|CTAGE-1|CTAGE-2 HGNC:24346|MIM:608856|Ensembl:ENSG00000212710|HPRD:16395|Vega:OTTHUMG00000165867 18 18p11.2 cutaneous T-cell lymphoma-associated antigen 1 protein-coding CTAGE1 cutaneous T-cell lymphoma-associated antigen 1 O cancer/testis antigen 21.2|cancer/testis antigen family 21, member 1|cancer/testis antigen family 21, member 2|cutaneous T-cell lymphoma-associated antigen 2|protein cTAGE-2 20121230 -9606 64695 SLEB3 - - HGNC:14535|MIM:605480 4 4p16-p15.2 systemic lupus erythematosus susceptibility 3 unknown SLEB3 systemic lupus erythematosus susceptibility 3 O - 20120622 -9606 64699 TMPRSS3 UNQ323/PRO382 DFNB10|DFNB8|ECHOS1|TADG12 HGNC:11877|MIM:605511|Ensembl:ENSG00000160183|HPRD:05696|Vega:OTTHUMG00000086796 21 21q22.3 transmembrane protease, serine 3 protein-coding TMPRSS3 transmembrane protease, serine 3 O serine protease TADG-12|transmembrane protease serine 3|tumor-associated differentially-expressed gene 12 protein 20121230 -9606 64708 COPS7B - CSN7B HGNC:16760|Ensembl:ENSG00000144524|HPRD:09889|Vega:OTTHUMG00000133228 2 2q37.1 COP9 constitutive photomorphogenic homolog subunit 7B (Arabidopsis) protein-coding COPS7B COP9 constitutive photomorphogenic homolog subunit 7B (Arabidopsis) O COP9 signalosome complex subunit 7b|JAB1-containing signalosome subunit 7b|SGN7b|signalosome subunit 7b 20121230 -9606 64710 NUCKS1 JC7 NUCKS HGNC:29923|MIM:611912|Ensembl:ENSG00000069275|HPRD:11406|Vega:OTTHUMG00000035996 1 1q32.1 nuclear casein kinase and cyclin-dependent kinase substrate 1 protein-coding NUCKS1 nuclear casein kinase and cyclin-dependent kinase substrate 1 O P1|nuclear ubiquitous casein and cyclin-dependent kinase substrate 1|nuclear ubiquitous casein kinase and cyclin-dependent kinase substrate|potential LAG1 interactor 20121230 -9606 64711 HS3ST6 - HS3ST5 HGNC:14178|Ensembl:ENSG00000162040|HPRD:17115|Vega:OTTHUMG00000047860 16 16p13.3 heparan sulfate (glucosamine) 3-O-sulfotransferase 6 protein-coding HS3ST6 heparan sulfate (glucosamine) 3-O-sulfotransferase 6 O 3-OST-6|h3-OST-6|heparan sulfate (glucosamine) 3-O-sulfotransferase 5|heparan sulfate 3-O-sulfotransferase 6|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 6|heparan sulfate glucosamine 3-O-sulfotransferase 6|heparan sulphate D-glucosaminyl 3-O-sulfotransferase-3B like 20121230 -9606 64714 PDIA2 LA16c-314G4.2 PDA2|PDI|PDIP|PDIR HGNC:14180|MIM:608012|Ensembl:ENSG00000185615|HPRD:07617|Vega:OTTHUMG00000064891 16 16p13.3 protein disulfide isomerase family A, member 2 protein-coding PDIA2 protein disulfide isomerase family A, member 2 O Rho GDP dissociation inhibitor gamma|pancreas-specific protein disulfide isomerase|pancreatic protein disulfide isomerase|protein disulfide isomerase A2|protein disulfide isomerase, pancreatic|protein disulfide isomerase-associated 2|protein disulfide-isomerase A2 20121230 -9606 64717 TRNAG4 - TRG4 HGNC:14183 16 16p13.3 transfer RNA glycine 4 (anticodon CCC) tRNA TRNAG4 transfer RNA glycine 4 (anticodon CCC) O - 20121230 -9606 64718 UNKL LA16c-316G12.1 C16orf28|ZC3H5L|ZC3HDC5L HGNC:14184|Ensembl:ENSG00000059145|HPRD:15612|Vega:OTTHUMG00000128553 16 16p13.3 unkempt homolog (Drosophila)-like protein-coding UNKL unkempt homolog (Drosophila)-like O RING finger protein unkempt-like|putative E3 ubiquitin-protein ligase UNKL|unkempt-like|zinc finger CCCH domain-containing protein 5-like 20121230 -9606 64725 RPS3AP2 - RPS3A_21_1466 HGNC:14196 16 16p13.3 ribosomal protein S3A pseudogene 2 pseudo RPS3AP2 ribosomal protein S3A pseudogene 2 O - 20121230 -9606 64726 RPS20P2 - - HGNC:14195 16 16p13.3 ribosomal protein S20 pseudogene 2 pseudo RPS20P2 ribosomal protein S20 pseudogene 2 O - 20121230 -9606 64730 TJP1P - - HGNC:14167 16 16p13.3 tight junction protein 1 pseudogene pseudo TJP1P tight junction protein 1 pseudogene O - 20121230 -9606 64735 LINC00254 - C16orf32|NCRNA00254 HGNC:14160 16 16p13.3 long intergenic non-protein coding RNA 254 miscRNA LINC00254 long intergenic non-protein coding RNA 254 O - 20121230 -9606 64743 WDR13 - MG21 HGNC:14352|MIM:300512|Ensembl:ENSG00000101940|HPRD:06753|Vega:OTTHUMG00000024119 X Xp11.23 WD repeat domain 13 protein-coding WDR13 WD repeat domain 13 O WD repeat-containing protein 13 20121230 -9606 64744 SMAP2 - RP1-228H13.3|SMAP1L HGNC:25082|Ensembl:ENSG00000084070|HPRD:12442|Vega:OTTHUMG00000007301 1 1p35.3-p34.1 small ArfGAP2 protein-coding SMAP2 small ArfGAP2 O stromal membrane-associated GTPase-activating protein 2|stromal membrane-associated protein 2 20121230 -9606 64745 METTL17 - METT11D1 HGNC:19280|Ensembl:ENSG00000165792|HPRD:13379|Vega:OTTHUMG00000029610 14 14q11.2 methyltransferase like 17 protein-coding METTL17 methyltransferase like 17 O false p73 target gene protein|methyltransferase 11 domain containing 1|methyltransferase 11 domain-containing protein 1|methyltransferase-like protein 17, mitochondrial|protein RSM22 homolog, mitochondrial 20121230 -9606 64746 ACBD3 - GCP60|GOCAP1|GOLPH1|PAP7 HGNC:15453|MIM:606809|Ensembl:ENSG00000182827|HPRD:08432|Vega:OTTHUMG00000037560 1 1q42.12 acyl-CoA binding domain containing 3 protein-coding ACBD3 acyl-CoA binding domain containing 3 O Golgi resident protein GCP60|PBR- and PKA-associated protein 7|PKA (RIalpha)-associated protein|acyl-Coenzyme A binding domain containing 3|golgi complex associated protein 1, 60kDa|golgi phosphoprotein 1|peripheral benzodiazepine receptor-associated protein PAP7 20121230 -9606 64747 MFSD1 UG0581B09 SMAP4 HGNC:25874|Ensembl:ENSG00000118855|HPRD:07851|Vega:OTTHUMG00000158835 3 3q25.32 major facilitator superfamily domain containing 1 protein-coding MFSD1 major facilitator superfamily domain containing 1 O SMAP-4|major facilitator superfamily domain-containing protein 1|smooth muscle cell-associated protein 4 20121230 -9606 64748 LPPR2 - PRG4 Ensembl:ENSG00000105520|HPRD:17442|Vega:OTTHUMG00000182023 19 19p13.2 lipid phosphate phosphatase-related protein type 2 protein-coding - - - PRG-4|plasticity related gene 4|plasticity-related gene 4 protein 20121230 -9606 64750 SMURF2 - - HGNC:16809|MIM:605532|Ensembl:ENSG00000108854|HPRD:06901|Vega:OTTHUMG00000179189 17 17q22-q23 SMAD specific E3 ubiquitin protein ligase 2 protein-coding SMURF2 SMAD specific E3 ubiquitin protein ligase 2 O E3 ubiquitin ligase SMURF2|E3 ubiquitin-protein ligase SMURF2|SMAD ubiquitination regulatory factor 2|SMAD-specific E3 ubiquitin-protein ligase 2|hSMURF2 20121230 -9606 64753 CCDC136 NAG6 - HGNC:22225|MIM:611902|Ensembl:ENSG00000128596|HPRD:10887|Vega:OTTHUMG00000158310 7 7q33 coiled-coil domain containing 136 protein-coding CCDC136 coiled-coil domain containing 136 O coiled-coil domain-containing protein 136|nasopharyngeal carcinoma-associated gene 6 protein 20121230 -9606 64754 SMYD3 RP11-49H10.1 KMT3E|ZMYND1|ZNFN3A1|bA74P14.1 HGNC:15513|MIM:608783|Ensembl:ENSG00000185420|HPRD:12297|Vega:OTTHUMG00000040508 1 1q44 SET and MYND domain containing 3 protein-coding SMYD3 SET and MYND domain containing 3 O SET and MYND domain-containing protein 3|bA74P14.1 (novel protein)|zinc finger MYND domain-containing protein 1|zinc finger protein, subfamily 3A (MYND domain containing), 1|zinc finger, MYND domain containing 1 20121230 -9606 64755 C16orf58 - - HGNC:25848|Ensembl:ENSG00000140688|HPRD:07839|Vega:OTTHUMG00000132466 16 16p11.2 chromosome 16 open reading frame 58 protein-coding C16orf58 chromosome 16 open reading frame 58 O UPF0420 protein C16orf58 20121230 -9606 64756 ATPAF1 - ATP11|ATP11p HGNC:18803|MIM:608917|Ensembl:ENSG00000123472|HPRD:12332|Vega:OTTHUMG00000007988 1 1p33-p32.3 ATP synthase mitochondrial F1 complex assembly factor 1 protein-coding ATPAF1 ATP synthase mitochondrial F1 complex assembly factor 1 O homolog of yeast ATP11 20121230 -9606 64757 MARC1 RP11-295M18.1 MOSC1 HGNC:26189|MIM:614126|Ensembl:ENSG00000186205|HPRD:08653|Vega:OTTHUMG00000037353 1 1q41 mitochondrial amidoxime reducing component 1 protein-coding MARC1 mitochondrial amidoxime reducing component 1 O MOCO sulphurase C-terminal domain containing 1|MOSC domain-containing protein 1, mitochondrial|moco sulfurase C-terminal domain-containing protein 1|molybdenum cofactor sulfurase C-terminal domain-containing protein 1 20121230 -9606 64759 TNS3 - TEM6|TENS1 HGNC:21616|MIM:606825|Ensembl:ENSG00000136205|Vega:OTTHUMG00000074075 7 7p12.3 tensin 3 protein-coding TNS3 tensin 3 O tensin-3|tensin-like SH2 domain containing 1|tensin-like SH2 domain-containing 1|tensin-like SH2 domain-containing protein 1|thyroid specific PTB domain protein|tumor endothelial marker 6 20121230 -9606 64760 FAM160B2 FP13191 RAI16 HGNC:16492|Ensembl:ENSG00000158863|HPRD:17951|Vega:OTTHUMG00000097088 8 8p21.3 family with sequence similarity 160, member B2 protein-coding FAM160B2 family with sequence similarity 160, member B2 O protein FAM160B2|retinoic acid induced 16|retinoic acid-induced protein 16 20121230 -9606 64761 PARP12 - ARTD12|MST109|MSTP109|ZC3H1|ZC3HDC1 HGNC:21919|MIM:612481|Ensembl:ENSG00000059378|HPRD:15696|Vega:OTTHUMG00000157315 7 7q34 poly (ADP-ribose) polymerase family, member 12 protein-coding PARP12 poly (ADP-ribose) polymerase family, member 12 O ADP-ribosyltransferase diphtheria toxin-like 12|poly [ADP-ribose] polymerase 12|zinc finger CCCH domain-containing protein 1|zinc finger CCCH type domain containing 1 20121230 -9606 64762 GAREM - C18orf11|FAM59A|Gm944 HGNC:26136|Ensembl:ENSG00000141441|HPRD:12685|Vega:OTTHUMG00000132273 18 18q12.1 GRB2 associated, regulator of MAPK1 protein-coding GAREM GRB2 associated, regulator of MAPK1 O Grb2-associated and regulator of Erk/MAPK|family with sequence similarity 59, member A|protein FAM59A 20121230 -9606 64763 ZNF574 - FP972 HGNC:26166|Ensembl:ENSG00000105732|HPRD:15853 19 19q13.2 zinc finger protein 574 protein-coding ZNF574 zinc finger protein 574 O - 20121230 -9606 64764 CREB3L2 - BBF2H7 HGNC:23720|MIM:608834|Ensembl:ENSG00000182158|HPRD:16391|Vega:OTTHUMG00000155744 7 7q34 cAMP responsive element binding protein 3-like 2 protein-coding CREB3L2 cAMP responsive element binding protein 3-like 2 O B-ZIB transcription factor|BBF2 human homolog on chromosome 7|FUS/BBF2H7 protein|TCAG_1951439|basic transcription factor 2|cAMP-responsive element-binding protein 3-like protein 2|cyclic AMP-responsive element-binding protein 3-like protein 2 20121230 -9606 64766 S100PBP - S100PBPR HGNC:25768|MIM:611889|Ensembl:ENSG00000116497|HPRD:07803|Vega:OTTHUMG00000003955 1 1p35.1 S100P binding protein protein-coding S100PBP S100P binding protein O S100P binding protein 1|S100P-binding protein 20121230 -9606 64768 IPPK - C9orf12|INSP5K2|IP5K|IPK1|bA476B13.1 HGNC:14645|Ensembl:ENSG00000127080|HPRD:10799|Vega:OTTHUMG00000020231 9 9q22.31 inositol 1,3,4,5,6-pentakisphosphate 2-kinase protein-coding IPPK inositol 1,3,4,5,6-pentakisphosphate 2-kinase O IPK1 homolog|bA476B13.1 (novel protein)|inositol-pentakisphosphate 2-kinase|ins(1,3,4,5,6)P5 2-kinase|insP5 2-kinase 20121230 -9606 64769 MEAF6 RP3-423B22.2 C1orf149|CENP-28|EAF6|NY-SAR-91 HGNC:25674|MIM:611001|Ensembl:ENSG00000163875|HPRD:13347|Vega:OTTHUMG00000004223 1 1p35.3-p33 MYST/Esa1-associated factor 6 protein-coding MEAF6 MYST/Esa1-associated factor 6 O Esa1p-associated factor 6 homolog|centromere protein 28|chromatin modification-related protein MEAF6|protein EAF6 homolog|sarcoma antigen NY-SAR-91 20121230 -9606 64770 CCDC14 - - HGNC:25766|Ensembl:ENSG00000175455|HPRD:07801|Vega:OTTHUMG00000153005 3 3q21.1 coiled-coil domain containing 14 protein-coding CCDC14 coiled-coil domain containing 14 O coiled-coil domain-containing protein 14 20121230 -9606 64771 C6orf106 RP3-391O22.4 FP852|dJ391O22.4 HGNC:21215|MIM:612217|Ensembl:ENSG00000196821|HPRD:12837|Vega:OTTHUMG00000014553 6 6p21.31 chromosome 6 open reading frame 106 protein-coding C6orf106 chromosome 6 open reading frame 106 O uncharacterized protein C6orf106 20121230 -9606 64772 ENGASE - - HGNC:24622|MIM:611898|Ensembl:ENSG00000167280|HPRD:10978|Vega:OTTHUMG00000167714 17 17q25.3 endo-beta-N-acetylglucosaminidase protein-coding ENGASE endo-beta-N-acetylglucosaminidase O Di-N-acetylchitobiosyl beta-N-acetylglucosaminidase|Mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase|cytosolic endo-beta-N-acetylglucosaminidase 20121230 -9606 64773 PCED1A RP11-12M19.1 C20orf81|FAM113A|bA12M19.1 HGNC:16212|Ensembl:ENSG00000132635|HPRD:12786|Vega:OTTHUMG00000031716 20 20p13 PC-esterase domain containing 1A protein-coding PCED1A PC-esterase domain containing 1A O PC-esterase domain-containing protein 1A|family with sequence similarity 113, member A|sarcoma antigen NY-SAR-23 20121230 -9606 64776 C11orf1 - - HGNC:1163|Ensembl:ENSG00000137720|HPRD:12601|Vega:OTTHUMG00000166884 11 11q23.1 chromosome 11 open reading frame 1 protein-coding C11orf1 chromosome 11 open reading frame 1 O UPF0686 protein C11orf1 20121230 -9606 64777 RMND5B UNQ2508/PRO5996 GID2|GID2B HGNC:26181|Ensembl:ENSG00000145916|HPRD:07985|Vega:OTTHUMG00000130897 5 5q35.3 required for meiotic nuclear division 5 homolog B (S. cerevisiae) protein-coding RMND5B required for meiotic nuclear division 5 homolog B (S. cerevisiae) O GID complex subunit 2 homolog B|protein RMD5 homolog B 20121230 -9606 64778 FNDC3B UNQ2421/PRO4979/PRO34274 FAD104|PRO4979|YVTM2421 HGNC:24670|MIM:611909|Ensembl:ENSG00000075420|HPRD:10943|Vega:OTTHUMG00000156761 3 3q26.31 fibronectin type III domain containing 3B protein-coding FNDC3B fibronectin type III domain containing 3B O HCV NS5A-binding protein 37|factor for adipocyte differentiation 104|fibronectin type III domain-containing protein 3B 20121230 -9606 64779 MTHFSD - - HGNC:25778|Ensembl:ENSG00000103248|HPRD:07808|Vega:OTTHUMG00000176480 16 16q24.1 methenyltetrahydrofolate synthetase domain containing protein-coding MTHFSD methenyltetrahydrofolate synthetase domain containing O methenyltetrahydrofolate synthase domain-containing protein|methenyltetrahydrofolate synthetase domain-containing protein 20121230 -9606 64780 MICAL1 RP5-919F19.1 MICAL|MICAL-1|NICAL HGNC:20619|MIM:607129|Ensembl:ENSG00000135596|HPRD:06183|Vega:OTTHUMG00000015350 6 6q21 microtubule associated monoxygenase, calponin and LIM domain containing 1 protein-coding MICAL1 microtubule associated monoxygenase, calponin and LIM domain containing 1 O CasL interacting molecule|NEDD9 interacting protein with calponin homology and LIM domains|NEDD9-interacting protein with calponin homology and LIM domains|molecule interacting with CasL protein 1|protein-methionine sulfoxide oxidase MICAL1 20121230 -9606 64781 CERK RP6-59H18.1 LK4|dA59H18.2|dA59H18.3|hCERK HGNC:19256|MIM:610307|Ensembl:ENSG00000100422|HPRD:09878|Vega:OTTHUMG00000150395 22 22q13.31 ceramide kinase protein-coding CERK ceramide kinase O acylsphingosine kinase|lipid kinase 4|lipid kinase LK4 20121230 -9606 64782 AEN SBBI58 ISG20L1|pp12744 HGNC:25722|MIM:610177|Ensembl:ENSG00000181026|HPRD:08573|Vega:OTTHUMG00000148681 15 15q26.1 apoptosis enhancing nuclease protein-coding AEN apoptosis enhancing nuclease O apoptosis-enhancing nuclease|interferon stimulated exonuclease gene 20kDa-like 1|interferon-stimulated 20 kDa exonuclease-like 1 20121230 -9606 64783 RBM15 - OTT|OTT1|SPEN HGNC:14959|MIM:606077|Ensembl:ENSG00000162775|HPRD:05832|Vega:OTTHUMG00000011284 1 1p13 RNA binding motif protein 15 protein-coding RBM15 RNA binding motif protein 15 O RNA-binding motif protein 15|one twenty two protein|one twenty-two|one-twenty two protein 1|putative RNA-binding protein 15 20121230 -9606 64784 CRTC3 - TORC-3|TORC3 HGNC:26148|MIM:608986|Ensembl:ENSG00000140577|HPRD:13384|Vega:OTTHUMG00000172295 15 15q26.1 CREB regulated transcription coactivator 3 protein-coding CRTC3 CREB regulated transcription coactivator 3 O CREB-regulated transcription coactivator 3|transducer of regulated CREB protein 3|transducer of regulated cAMP response element-binding protein (CREB) 3|transducer of regulated cAMP response element-binding protein 3 20121230 -9606 64785 GINS3 - PSF3 HGNC:25851|MIM:610610|Ensembl:ENSG00000181938|HPRD:07842|Vega:OTTHUMG00000133486 16 16q21 GINS complex subunit 3 (Psf3 homolog) protein-coding GINS3 GINS complex subunit 3 (Psf3 homolog) O DNA replication complex GINS protein PSF3 20121230 -9606 64786 TBC1D15 - RAB7-GAP HGNC:25694|MIM:612662|Ensembl:ENSG00000121749|HPRD:15470|Vega:OTTHUMG00000158553 12 12q21.1 TBC1 domain family, member 15 protein-coding TBC1D15 TBC1 domain family, member 15 O GAP for RAB7|GTPase-activating protein RAB7|TBC1 domain family member 15|Tre-2-budding uninhibited by benzimidazole-cell division cycle 16 domain, domain family member 15|Tre2/Bub2/Cdc16 domain family member 15 20121230 -9606 64787 EPS8L2 PP13181 EPS8R2 HGNC:21296|MIM:614988|Ensembl:ENSG00000177106|HPRD:10940|Vega:OTTHUMG00000165165 11 11p15.5 EPS8-like 2 protein-coding EPS8L2 EPS8-like 2 O EPS8-like protein 2|EPS8-related protein 2|epidermal growth factor receptor kinase substrate 8-like protein 2|epidermal growth factor receptor pathway substrate 8-related protein 2 20121230 -9606 64788 LMF1 LA16c-360B4.1 C16orf26|HMFN1876|JFP11|TMEM112|TMEM112A HGNC:14154|MIM:611761|Ensembl:ENSG00000103227|HPRD:07789|Vega:OTTHUMG00000047848 16 16p13.3 lipase maturation factor 1 protein-coding LMF1 lipase maturation factor 1 O transmembrane protein 112 20121230 -9606 64789 EXO5 - C1orf176|DEM1|Exo V HGNC:26115|Ensembl:ENSG00000164002|HPRD:07955|Vega:OTTHUMG00000007305 1 1p34.2 exonuclease 5 protein-coding EXO5 exonuclease 5 O defects in morphology 1 homolog|defects in morphology protein 1 homolog|probable exonuclease V 20121230 -9606 64792 RABL5 - - HGNC:21895|Ensembl:ENSG00000128581|HPRD:15204|Vega:OTTHUMG00000157136 7 7q22.1 RAB, member RAS oncogene family-like 5 protein-coding RABL5 RAB, member RAS oncogene family-like 5 O RAB, member of RAS oncogene family-like 5|rab-like protein 5 20121230 -9606 64793 CEP85 - CCDC21 HGNC:25309|Ensembl:ENSG00000130695|HPRD:07844|Vega:OTTHUMG00000003380 1 1p36.11 centrosomal protein 85kDa protein-coding CEP85 centrosomal protein 85kDa O centrosomal protein of 85 kDa|coiled-coil domain containing 21|coiled-coil domain-containing protein 21 20121230 -9606 64794 DDX31 - PPP1R25 HGNC:16715|Ensembl:ENSG00000125485|HPRD:10860|Vega:OTTHUMG00000020843 9 9q34.13 DEAD (Asp-Glu-Ala-Asp) box polypeptide 31 protein-coding DDX31 DEAD (Asp-Glu-Ala-Asp) box polypeptide 31 O DEAD box protein 31|DEAD/DEXH helicase DDX31|DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 31|G2 helicase|helicain|probable ATP-dependent RNA helicase DDX31|protein phosphatase 1, regulatory subunit 25 20121230 -9606 64795 RMND5A - CTLH|GID2|GID2A|RMD5|p44CTLH HGNC:25850|Ensembl:ENSG00000153561|HPRD:07841|Vega:OTTHUMG00000130262 2 2p11.2 required for meiotic nuclear division 5 homolog A (S. cerevisiae) protein-coding RMND5A required for meiotic nuclear division 5 homolog A (S. cerevisiae) O C-terminal to LisH motif, 44 kDa|GID complex subunit 2 homolog A|protein RMD5 homolog A 20121230 -9606 64798 DEPTOR - DEP.6|DEPDC6 HGNC:22953|MIM:612974|Ensembl:ENSG00000155792|HPRD:13137|Vega:OTTHUMG00000165052 8 8q24.12 DEP domain containing MTOR-interacting protein protein-coding DEPTOR DEP domain containing MTOR-interacting protein O DEP domain containing 6|DEP domain containing mTOR interacting protein|DEP domain-containing mTOR-interacting protein|DEP domain-containing protein 6 20121230 -9606 64799 IQCH - NYDSP5 HGNC:25721|MIM:612523|Ensembl:ENSG00000103599|HPRD:07773|Vega:OTTHUMG00000133231 15 15q23 IQ motif containing H protein-coding IQCH IQ motif containing H O IQ domain-containing protein H|testis development protein NYD-SP5 20121230 -9606 64800 EFCAB6 RP1-185D5.5 DJBP|HSCBCIP1|dJ185D5.1 HGNC:24204|Ensembl:ENSG00000186976|HPRD:13391|Vega:OTTHUMG00000150522 22 22q13.2 EF-hand calcium binding domain 6 protein-coding EFCAB6 EF-hand calcium binding domain 6 O CAP-binding protein complex-interacting protein 1|DJ-1-binding protein|EF-hand calcium-binding domain-containing protein 6 20121230 -9606 64801 ARV1 RP11-423F24.1 - HGNC:29561|MIM:611647|Ensembl:ENSG00000173409|HPRD:12494|Vega:OTTHUMG00000037837 1 1q42.2 ARV1 homolog (S. cerevisiae) protein-coding ARV1 ARV1 homolog (S. cerevisiae) O hARV1|protein ARV1 20121230 -9606 64802 NMNAT1 RP11-807G9.1 LCA9|NMNAT|PNAT1 HGNC:17877|MIM:608700|Ensembl:ENSG00000173614|HPRD:16369|Vega:OTTHUMG00000001799 1 1p36.22 nicotinamide nucleotide adenylyltransferase 1 protein-coding NMNAT1 nicotinamide nucleotide adenylyltransferase 1 O NMN adenylyltransferase 1|NaMN adenylyltransferase 1|nicotinamide mononucleotide adenylyltransferase 1|nicotinate-nucleotide adenylyltransferase 1|pyridine nucleotide adenylyltransferase 1 20121230 -9606 64805 P2RY12 - ADPG-R|BDPLT8|HORK3|P2T(AC)|P2Y(12)R|P2Y(AC)|P2Y(ADP)|P2Y(cyc)|P2Y12|SP1999 HGNC:18124|MIM:600515|Ensembl:ENSG00000169313|HPRD:02743|Vega:OTTHUMG00000159863 3 3q24-q25 purinergic receptor P2Y, G-protein coupled, 12 protein-coding P2RY12 purinergic receptor P2Y, G-protein coupled, 12 O ADP-glucose receptor|G-protein coupled receptor SP1999|Gi-coupled ADP receptor HORK3|P2Y purinoceptor 12|P2Y12 platelet ADP receptor|purinergic receptor P2RY12|putative G-protein coupled receptor 20121230 -9606 64806 IL25 UNQ3120/PRO10272 IL17E HGNC:13765|MIM:605658|Ensembl:ENSG00000166090|HPRD:05742|Vega:OTTHUMG00000028749 14 14q11.2 interleukin 25 protein-coding IL25 interleukin 25 O interleukin 17E|interleukin-17E|interleukin-25 20121230 -9606 64816 CYP3A43 - - HGNC:17450|MIM:606534|Ensembl:ENSG00000021461|HPRD:05942|Vega:OTTHUMG00000156498 7 7q21.1 cytochrome P450, family 3, subfamily A, polypeptide 43 protein-coding CYP3A43 cytochrome P450, family 3, subfamily A, polypeptide 43 O cytochrome P450 3A43|cytochrome P450 polypeptide 43|cytochrome P450, subfamily IIIA, polypeptide 43 20121230 -9606 64834 ELOVL1 CGI-88 Ssc1 HGNC:14418|MIM:611813|Ensembl:ENSG00000066322|HPRD:10935|Vega:OTTHUMG00000007422 1 1p34.2 ELOVL fatty acid elongase 1 protein-coding ELOVL1 ELOVL fatty acid elongase 1 O 3-keto acyl-CoA synthase ELOVL1|ELOVL FA elongase 1|elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 1|elongation of very long chain fatty acids protein 1 20121230 -9606 64837 KLC2 - - HGNC:20716|MIM:611729|Ensembl:ENSG00000174996|HPRD:13917|Vega:OTTHUMG00000133757 11 11q13.2 kinesin light chain 2 protein-coding KLC2 kinesin light chain 2 O KLC 2 20121230 -9606 64838 FNDC4 UNQ6389/PRO21134 FRCP1 HGNC:20239|MIM:611905|Ensembl:ENSG00000115226|HPRD:09965|Vega:OTTHUMG00000097787 2 2p23.3 fibronectin type III domain containing 4 protein-coding FNDC4 fibronectin type III domain containing 4 O fibronectin type III domain-containing protein 4|fibronectin type III repeat-containing protein 1 20121230 -9606 64839 FBXL17 - FBXO13|Fbl17|Fbx13 HGNC:13615|MIM:609083|Ensembl:ENSG00000145743|HPRD:10950|Vega:OTTHUMG00000159785 5 5q21.3 F-box and leucine-rich repeat protein 17 protein-coding FBXL17 F-box and leucine-rich repeat protein 17 O F-box only protein 13|F-box/LRR-repeat protein 17 20121230 -9606 64840 PORCN - DHOF|FODH|MG61|PORC|PPN|por HGNC:17652|MIM:300651|Ensembl:ENSG00000102312|HPRD:06680|Vega:OTTHUMG00000024116 X Xp11.23 porcupine homolog (Drosophila) protein-coding PORCN porcupine homolog (Drosophila) O 2410004O13Rik|probable protein-cysteine N-palmitoyltransferase porcupine|protein-cysteine N-palmitoyltransferase porcupine 20121230 -9606 64841 GNPNAT1 - GNPNAT|Gpnat1 HGNC:19980|Ensembl:ENSG00000100522|HPRD:17046|Vega:OTTHUMG00000152334 14 14q22.1 glucosamine-phosphate N-acetyltransferase 1 protein-coding GNPNAT1 glucosamine-phosphate N-acetyltransferase 1 O glucosamine 6-phosphate N-acetyltransferase|phosphoglucosamine acetylase|phosphoglucosamine transacetylase 20121230 -9606 64843 ISL2 - - HGNC:18524|MIM:609481|Ensembl:ENSG00000159556|HPRD:11053|Vega:OTTHUMG00000143723 15 15q23 ISL LIM homeobox 2 protein-coding ISL2 ISL LIM homeobox 2 O ISL2 transcription factor, LIM/homeodomain, (islet-2)|insulin gene enhancer protein ISL-2|islet-2 20121230 -9606 64844 MARCH7 - AXO|AXOT|MARCH-VII|RNF177 HGNC:17393|MIM:613334|Ensembl:ENSG00000136536|HPRD:09817|Vega:OTTHUMG00000132029 2 2q24.2 membrane-associated ring finger (C3HC4) 7, E3 ubiquitin protein ligase protein-coding MARCH7 membrane-associated ring finger (C3HC4) 7, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase MARCH7|RING finger protein 177|axotrophin|membrane-associated RING finger protein 7|membrane-associated RING-CH protein VII 20121230 -9606 64847 SPATA20 - SSP411|Tisp78 HGNC:26125|MIM:613939|Ensembl:ENSG00000006282|HPRD:07961|Vega:OTTHUMG00000162162 17 17q21.33 spermatogenesis associated 20 protein-coding SPATA20 spermatogenesis associated 20 O sperm protein SSP411|sperm-specific protein 411|spermatogenesis-associated protein 20|transcript increased in spermiogenesis 78 20121230 -9606 64848 YTHDC2 - CAHL HGNC:24721|Ensembl:ENSG00000047188|HPRD:11690|Vega:OTTHUMG00000128837 5 5q22.2 YTH domain containing 2 protein-coding YTHDC2 YTH domain containing 2 O CsA-associated helicase-like protein|probable ATP-dependent RNA helicase YTHDC2 20121230 -9606 64849 SLC13A3 RP1-257E24.1 NADC3|SDCT2 HGNC:14430|MIM:606411|Ensembl:ENSG00000158296|HPRD:10450|Vega:OTTHUMG00000033042 20 20q13.12 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 3 protein-coding SLC13A3 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 3 O Na(+)/dicarboxylate cotransporter 3|hNaDC3|naDC-3|sodium-dependent high affinity dicarboxylate transporter 3|sodium-dependent high-affinity dicarboxylate transporter 2|solute carrier family 13 member 3 20121230 -9606 64850 AGXT2L1 - - HGNC:14404|MIM:614682|Ensembl:ENSG00000164089|HPRD:10639|Vega:OTTHUMG00000161036 4 4q25 alanine-glyoxylate aminotransferase 2-like 1 protein-coding AGXT2L1 alanine-glyoxylate aminotransferase 2-like 1 O alanine--glyoxylate aminotransferase 2-like 1|ethanolamine-phosphate phospho-lyase 20121230 -9606 64851 AD6 - - MIM:605526 10 10q Alzheimer disease 6 unknown - - - - 20120622 -9606 64852 TUT1 - PAPD2|RBM21|STARPAP|TUTase HGNC:26184|MIM:610641|Ensembl:ENSG00000149016|HPRD:15226|Vega:OTTHUMG00000158564 11 11q12.2 terminal uridylyl transferase 1, U6 snRNA-specific protein-coding TUT1 terminal uridylyl transferase 1, U6 snRNA-specific O PAP-associated domain-containing 2|RNA binding motif protein 21|RNA uridylyltransferase|RNA-binding motif protein 21|RNA-binding protein 21|U6 TUTase|U6 snRNA-specific terminal uridylyltransferase 1|U6-TUTase|nuclear speckle targeted phosphatidylinositol 4-phosphate 5-kinase type I-alpha regulated-poly(A) polymerase|nuclear speckle-targeted PIPK1A-regulated-poly(A) polymerase|poly(A) polymerase associated domain containing 2|speckle targeted PIP5K1A-regulated poly(A) polymerase|star-PAP 20121230 -9606 64853 AIDA - C1orf80|RP11-378J18.7 HGNC:25761|MIM:612375|Ensembl:ENSG00000186063|HPRD:07798|Vega:OTTHUMG00000037653 1 1q41 axin interactor, dorsalization associated protein-coding AIDA axin interactor, dorsalization associated O axin interaction partner and dorsalization antagonist|axin interactor, dorsalization-associated protein 20121230 -9606 64854 USP46 - - HGNC:20075|MIM:612849|Ensembl:ENSG00000109189|HPRD:07507|Vega:OTTHUMG00000160640 4 4q12 ubiquitin specific peptidase 46 protein-coding USP46 ubiquitin specific peptidase 46 O deubiquitinating enzyme 46|ubiquitin carboxyl-terminal hydrolase 46|ubiquitin specific protease 46|ubiquitin thioesterase 46|ubiquitin thiolesterase 46|ubiquitin-specific-processing protease 46 20121230 -9606 64855 FAM129B RP11-356B19.6 C9orf88|MEG-3|MINERVA|OC58|bA356B19.6 HGNC:25282|MIM:614045|Ensembl:ENSG00000136830|HPRD:10804|Vega:OTTHUMG00000020705 9 9q34.13 family with sequence similarity 129, member B protein-coding FAM129B family with sequence similarity 129, member B O melanoma invasion by ERK|niban-like protein 1 20121230 -9606 64856 VWA1 - WARP HGNC:30910|MIM:611901|Ensembl:ENSG00000179403|HPRD:18292|Vega:OTTHUMG00000002975 1 1p36.33 von Willebrand factor A domain containing 1 protein-coding VWA1 von Willebrand factor A domain containing 1 O von Willebrand factor A domain-containing protein 1|von Willebrand factor A domain-related protein 20121230 -9606 64857 PLEKHG2 - ARHGEF42|CLG HGNC:29515|MIM:611893|Ensembl:ENSG00000090924|HPRD:15148|Vega:OTTHUMG00000152570 19 19q13.2 pleckstrin homology domain containing, family G (with RhoGef domain) member 2 protein-coding PLEKHG2 pleckstrin homology domain containing, family G (with RhoGef domain) member 2 O PH domain-containing family G member 2|common-site lymphoma/leukemia guanine nucleotide exchange factor|pleckstrin homology domain-containing family G member 2 20121230 -9606 64858 DCLRE1B - APOLLO|SNM1B|SNMIB HGNC:17641|MIM:609683|Ensembl:ENSG00000118655|HPRD:16785|Vega:OTTHUMG00000011937 1 1p13.2 DNA cross-link repair 1B protein-coding DCLRE1B DNA cross-link repair 1B O 5' exonuclease Apollo|DNA cross-link repair 1B (PSO2 homolog, S. cerevisiae)|PSO2 homolog|SNM1 homolog B 20121230 -9606 64859 NABP1 - OBFC2A|SOSS-B2|SSB2 HGNC:26232|MIM:612103|Ensembl:ENSG00000173559|HPRD:08009|Vega:OTTHUMG00000132720 2 2q32.3 nucleic acid binding protein 1 protein-coding NABP1 nucleic acid binding protein 1 O SOSS complex subunit B2|nucleic acid-binding protein 1|oligonucleotide/oligosaccharide-binding fold containing 2A|oligonucleotide/oligosaccharide-binding fold-containing protein 2A|sensor of single-strand DNA complex subunit B2|sensor of ssDNA subunit B2|single-stranded DNA-binding protein 2 20121230 -9606 64860 ARMCX5 RP4-769N13.3 - HGNC:25772|Ensembl:ENSG00000125962|HPRD:06521|Vega:OTTHUMG00000022062 X Xq22.1-q22.3 armadillo repeat containing, X-linked 5 protein-coding ARMCX5 armadillo repeat containing, X-linked 5 O armadillo repeat-containing X-linked protein 5 20121230 -9606 64863 METTL4 - HsT661 HGNC:24726|Ensembl:ENSG00000101574|HPRD:14390|Vega:OTTHUMG00000131482 18 18p11.32 methyltransferase like 4 protein-coding METTL4 methyltransferase like 4 O methyltransferase-like protein 4 20121230 -9606 64864 RFX7 - RFXDC2 HGNC:25777|MIM:612660|Ensembl:ENSG00000181827|HPRD:07807 15 15q21.3 regulatory factor X, 7 protein-coding RFX7 regulatory factor X, 7 O DNA-binding protein RFX7|regulatory factor X domain containing 2|regulatory factor X domain-containing protein 2 20121230 -9606 64866 CDCP1 UNQ2486/PRO5773 CD318|SIMA135|TRASK HGNC:24357|MIM:611735|Ensembl:ENSG00000163814|HPRD:16696|Vega:OTTHUMG00000133090 3 3p21.31 CUB domain containing protein 1 protein-coding CDCP1 CUB domain containing protein 1 O CUB domain-containing protein 1|membrane glycoprotein gp140|subtractive immunization M plus HEp3-associated 135 kDa protein|transmembrane and associated with src kinases 20121230 -9606 64881 PCDH20 - PCDH13 HGNC:14257|MIM:614449|Ensembl:ENSG00000197991|Vega:OTTHUMG00000017012 13 13q21 protocadherin 20 protein-coding PCDH20 protocadherin 20 O protocadherin 13|protocadherin-13|protocadherin-20 20121230 -9606 64895 PAPOLG - - HGNC:14982|Ensembl:ENSG00000115421|HPRD:11420|Vega:OTTHUMG00000129419 2 2p16.1 poly(A) polymerase gamma protein-coding PAPOLG poly(A) polymerase gamma O PAP-gamma|SRP RNA 3' adenylating enzyme/pap2|SRP RNA 3'-adenylating enzyme|neo-PAP|neo-poly(A) polymerase|nuclear poly(A) polymerase gamma|polynucleotide adenylyltransferase gamma 20121230 -9606 64897 C12orf43 - - HGNC:25719|Ensembl:ENSG00000157895|HPRD:07771|Vega:OTTHUMG00000169150 12 12q chromosome 12 open reading frame 43 protein-coding C12orf43 chromosome 12 open reading frame 43 O uncharacterized protein C12orf43 20121230 -9606 64900 LPIN3 RP4-620E11.3 LIPN3L|SMP2|dJ450M14.2|dJ450M14.3|dJ620E11.2 HGNC:14451|MIM:605520|Ensembl:ENSG00000132793|Vega:OTTHUMG00000033056 20 20q12 lipin 3 protein-coding LPIN3 lipin 3 O lipin-3|phosphatidate phosphatase LPIN3 20121230 -9606 64901 RANBP17 - - HGNC:14428|MIM:606141|Ensembl:ENSG00000204764|HPRD:05847|Vega:OTTHUMG00000163203 5 5q34 RAN binding protein 17 protein-coding RANBP17 RAN binding protein 17 O ran-binding protein 17 20121230 -9606 64902 AGXT2 - AGT2|DAIBAT HGNC:14412|MIM:612471|Ensembl:ENSG00000113492|HPRD:10638|Vega:OTTHUMG00000090788 5 5p13 alanine--glyoxylate aminotransferase 2 protein-coding AGXT2 alanine--glyoxylate aminotransferase 2 O (R)-3-amino-2-methylpropionate--pyruvate transaminase|alanine--glyoxylate aminotransferase 2, mitochondrial|beta-ALAAT II|beta-alanine-pyruvate aminotransferase 20121230 -9606 64919 BCL11B - CTIP-2|CTIP2|RIT1|ZNF856B|hRIT1-alpha HGNC:13222|MIM:606558|Ensembl:ENSG00000127152|HPRD:05950|Vega:OTTHUMG00000028967 14 14q32.2 B-cell CLL/lymphoma 11B (zinc finger protein) protein-coding BCL11B B-cell CLL/lymphoma 11B (zinc finger protein) O B-cell CLL/lymphoma 11B/T-cell receptor delta constant region fusion protein|B-cell lymphoma/leukaemia 11B|B-cell lymphoma/leukemia 11B|BCL-11B|BCL11B/TRDC fusion|COUP-TF-interacting protein 2|hRit1|radiation-induced tumor suppressor gene 1 protein|zinc finger protein hRit1 alpha 20121230 -9606 64921 CASD1 Nbla04196 C7orf12|NBLA04196 HGNC:16014|MIM:611686|Ensembl:ENSG00000127995|HPRD:13004|Vega:OTTHUMG00000023356 7 7q21.3 CAS1 domain containing 1 protein-coding CASD1 CAS1 domain containing 1 O CAS1 domain-containing protein 1|O-acetyltransferase|WUGSC:H_GS542D18.2 20121230 -9606 64922 LRRC19 - - HGNC:23379|Ensembl:ENSG00000184434|HPRD:14313|Vega:OTTHUMG00000019710 9 9p21.2 leucine rich repeat containing 19 protein-coding LRRC19 leucine rich repeat containing 19 O leucine-rich repeat-containing protein 19 20121230 -9606 64924 SLC30A5 UNQ863/PRO1879 ZNT5|ZNTL1|ZTL1|ZnT-5 HGNC:19089|MIM:607819|Ensembl:ENSG00000145740|HPRD:06381|Vega:OTTHUMG00000131253 5 5q12.1 solute carrier family 30 (zinc transporter), member 5 protein-coding SLC30A5 solute carrier family 30 (zinc transporter), member 5 O zinc transporter 5|zinc transporter ZTL1|znT-like transporter 1 20121230 -9606 64925 CCDC71 - - HGNC:25760|Ensembl:ENSG00000177352|HPRD:08576|Vega:OTTHUMG00000156815 3 3p21.31 coiled-coil domain containing 71 protein-coding CCDC71 coiled-coil domain containing 71 O 2600016J21Rik|coiled-coil domain-containing protein 71 20121230 -9606 64926 RASAL3 - - HGNC:26129|Ensembl:ENSG00000105122 19 19p13.12 RAS protein activator like 3 protein-coding RASAL3 RAS protein activator like 3 O RAS protein activator like-3 20121230 -9606 64927 TTC23 HCC8 HCC-8 HGNC:25730|Ensembl:ENSG00000103852|HPRD:07777|Vega:OTTHUMG00000147344 15 15q26.3 tetratricopeptide repeat domain 23 protein-coding TTC23 tetratricopeptide repeat domain 23 O TPR repeat protein 23|cervical cancer proto-oncogene 8 protein|proto-oncogene 8|tetratricopeptide repeat protein 23 20121230 -9606 64928 MRPL14 - L14mt|L32mt|MRP-L14|MRP-L32|MRPL32|RMPL32|RPML32 HGNC:14279|MIM:611827|Ensembl:ENSG00000180992|HPRD:14741|Vega:OTTHUMG00000014756 6 6p21.3 mitochondrial ribosomal protein L14 protein-coding MRPL14 mitochondrial ribosomal protein L14 O 39S ribosomal protein L14, mitochondrial|39S ribosomal protein L32, mitochondrial 20121230 -9606 64939 SMNP - - - 9 9p21.3 survival of motor neuron 1, telomeric pseudogene pseudo - - - - 20121230 -9606 64940 STAG3L4 - - HGNC:33887|HPRD:07817 7 7p11.2-q11.2 stromal antigen 3-like 4 pseudo STAG3L4 stromal antigen 3-like 4 O - 20121230 -9606 64943 NT5DC2 - - HGNC:25717|Ensembl:ENSG00000168268|HPRD:07770|Vega:OTTHUMG00000158626 3 3p21.1 5'-nucleotidase domain containing 2 protein-coding NT5DC2 5'-nucleotidase domain containing 2 O 5'-nucleotidase domain-containing protein 2 20121230 -9606 64946 CENPH - - HGNC:17268|MIM:605607|Ensembl:ENSG00000153044|HPRD:12029|Vega:OTTHUMG00000097816 5 5p15.2 centromere protein H protein-coding CENPH centromere protein H O CENP-H|interphase centromere complex protein 35|kinetochore protein CENP-H 20121230 -9606 64949 MRPS26 - C20orf193|GI008|MRP-S13|MRP-S26|MRPS13|NY-BR-87|RPMS13|dJ534B8.3 HGNC:14045|MIM:611988|Ensembl:ENSG00000125901|HPRD:17595|Vega:OTTHUMG00000031721 20 20p13 mitochondrial ribosomal protein S26 protein-coding MRPS26 mitochondrial ribosomal protein S26 O 28S ribosomal protein S13, mitochondrial|28S ribosomal protein S26, mitochondrial|S13mt|S26mt|serologically defined breast cancer antigen NY-BR-87 20121230 -9606 64951 MRPS24 HSPC335 MRP-S24|S24mt|bMRP-47|bMRP47 HGNC:14510|MIM:611986|Ensembl:ENSG00000062582|HPRD:17593|Vega:OTTHUMG00000023175 7 7p14 mitochondrial ribosomal protein S24 protein-coding MRPS24 mitochondrial ribosomal protein S24 O 28S ribosomal protein S24, mitochondrial|mitochondrial 28S ribosomal protein S24 20121230 -9606 64960 MRPS15 DC37 MPR-S15|RPMS15|S15mt HGNC:14504|MIM:611979|Ensembl:ENSG00000116898|HPRD:11372|Vega:OTTHUMG00000008042 1 1p34.3 mitochondrial ribosomal protein S15 protein-coding MRPS15 mitochondrial ribosomal protein S15 O 28S ribosomal protein S15, mitochondrial|MRP-S15 20121230 -9606 64963 MRPS11 HCC2 HCC-2 HGNC:14050|MIM:611977|Ensembl:ENSG00000181991|HPRD:14776|Vega:OTTHUMG00000148678 15 15q25 mitochondrial ribosomal protein S11 protein-coding MRPS11 mitochondrial ribosomal protein S11 O 28S ribosomal protein S11, mitochondrial|MRP-S11|S11mt|cervical cancer proto-oncogene 2 protein 20121230 -9606 64965 MRPS9 - MRP-S9|RPMS9|S9mt HGNC:14501|MIM:611975|Ensembl:ENSG00000135972|HPRD:17602|Vega:OTTHUMG00000130807 2 2q12.1 mitochondrial ribosomal protein S9 protein-coding MRPS9 mitochondrial ribosomal protein S9 O 28S ribosomal protein S9, mitochondrial 20121230 -9606 64968 MRPS6 - C21orf101|MRP-S6|RPMS6|S6mt HGNC:14051|MIM:611973|Ensembl:ENSG00000243927|HPRD:11374|Vega:OTTHUMG00000065820 21 21q22.11 mitochondrial ribosomal protein S6 protein-coding MRPS6 mitochondrial ribosomal protein S6 O 28S ribosomal protein S6, mitochondrial 20121230 -9606 64969 MRPS5 - MRP-S5|S5mt HGNC:14498|MIM:611972|Ensembl:ENSG00000144029|HPRD:10099|Vega:OTTHUMG00000130394 2 2p11.2-q11.2 mitochondrial ribosomal protein S5 protein-coding MRPS5 mitochondrial ribosomal protein S5 O 28S ribosomal protein S5, mitochondrial|mitochondrial 28S ribosomal protein S5 20121230 -9606 64975 MRPL41 PIG3 BMRP|MRP-L27|MRPL27|RPML27 HGNC:14492|MIM:611846|Ensembl:ENSG00000182154|HPRD:14760|Vega:OTTHUMG00000020987 9 9q34.3 mitochondrial ribosomal protein L41 protein-coding MRPL41 mitochondrial ribosomal protein L41 O 39S ribosomal protein L27 homolog|39S ribosomal protein L41, mitochondrial|L41mt|MRP-L27 homolog|MRP-L41|bcl-2-interacting mitochondrial ribosomal protein L41|cell proliferation-inducing gene 3 protein|proliferation-inducing gene 3 20121230 -9606 64976 MRPL40 - MRP-L22|MRPL22|NLVCF|URIM HGNC:14491|MIM:605089|Ensembl:ENSG00000185608|HPRD:05476|Vega:OTTHUMG00000150136 22 22q11.2 mitochondrial ribosomal protein L40 protein-coding MRPL40 mitochondrial ribosomal protein L40 O 39S ribosomal protein L40, mitochondrial|L40mt|MRP-L40|nuclear localization signal containing protein deleted in velocardiofacial syndrome|nuclear localization signal deleted in velocardiofacial syndrome|nuclear localization signal-containing protein deleted in velocardiofacial syndrome|up-regulated in metastasis 20121230 -9606 64978 MRPL38 HSPC262 L38MT|MRP-L3|MRP-L38|RPML3 HGNC:14033|MIM:611844|Ensembl:ENSG00000204316|HPRD:14758|Vega:OTTHUMG00000152977 17 17q25.3 mitochondrial ribosomal protein L38 protein-coding MRPL38 mitochondrial ribosomal protein L38 O 39S ribosomal protein L38, mitochondrial 20121230 -9606 64979 MRPL36 - BRIP1|L36mt|MRP-L36|PRPL36|RPMJ HGNC:14490|MIM:611842|Ensembl:ENSG00000171421|HPRD:14756|Vega:OTTHUMG00000090373 5 5p15.3 mitochondrial ribosomal protein L36 protein-coding MRPL36 mitochondrial ribosomal protein L36 O 39S ribosomal protein L36, mitochondrial|BRCA1-interacting protein 1|putative BRCA1-interacting protein 20121230 -9606 64981 MRPL34 - L34mt HGNC:14488|MIM:611840|Ensembl:ENSG00000130312|HPRD:14754 19 19p13.1 mitochondrial ribosomal protein L34 protein-coding MRPL34 mitochondrial ribosomal protein L34 O 39S ribosomal protein L34, mitochondrial|MRP-L34 20121230 -9606 64983 MRPL32 HSPC283 L32mt|MRP-L32|bMRP-59b HGNC:14035|MIM:611839|Ensembl:ENSG00000106591|HPRD:14752|Vega:OTTHUMG00000155180 7 7p14 mitochondrial ribosomal protein L32 protein-coding MRPL32 mitochondrial ribosomal protein L32 O 39S ribosomal protein L32, mitochondrial 20121230 -9606 65003 MRPL11 CGI-113 L11MT|MRP-L11 HGNC:14042|MIM:611826|Ensembl:ENSG00000174547|HPRD:14739|Vega:OTTHUMG00000167097 11 11q13.3 mitochondrial ribosomal protein L11 protein-coding MRPL11 mitochondrial ribosomal protein L11 O 39S ribosomal protein L11, mitochondrial 20121230 -9606 65005 MRPL9 RP11-98D18.5 L9mt HGNC:14277|MIM:611824|Ensembl:ENSG00000143436|HPRD:14774|Vega:OTTHUMG00000013063 1 1q21 mitochondrial ribosomal protein L9 protein-coding MRPL9 mitochondrial ribosomal protein L9 O 39S ribosomal protein L9, mitochondrial|MRP-L9 20121230 -9606 65008 MRPL1 BM-022 BM022|L1MT|MRP-L1 HGNC:14275|MIM:611821|Ensembl:ENSG00000169288|Vega:OTTHUMG00000130200 4 4q21.1 mitochondrial ribosomal protein L1 protein-coding MRPL1 mitochondrial ribosomal protein L1 O 39S ribosomal protein L1, mitochondrial 20121230 -9606 65009 NDRG4 - BDM1|SMAP-8|SMAP8 HGNC:14466|MIM:614463|Ensembl:ENSG00000103034|HPRD:14817|Vega:OTTHUMG00000133485 16 16q21-q22.1 NDRG family member 4 protein-coding NDRG4 NDRG family member 4 O N-myc downstream-regulated gene 4 protein|brain development-related molecule 1|protein NDRG4|smooth muscle-associated protein 8|vascular smooth muscle cell-associated protein 8 20121230 -9606 65010 SLC26A6 - - HGNC:14472|MIM:610068|Ensembl:ENSG00000225697|HPRD:10235|Vega:OTTHUMG00000156646 3 3p21.3 solute carrier family 26, member 6 protein-coding SLC26A6 solute carrier family 26, member 6 O anion transporter 1|pendrin L1|pendrin-L1|pendrin-like protein 1|solute carrier family 26 member 6|sulfate anion transporter 20121230 -9606 65012 SLC26A10 - - HGNC:14470|Ensembl:ENSG00000135502|HPRD:10234|Vega:OTTHUMG00000128505 12 12q13 solute carrier family 26, member 10 protein-coding SLC26A10 solute carrier family 26, member 10 O solute carrier family 26 member 10 20121230 -9606 65014 CMD1K - - HGNC:14541|MIM:605582 6 6q12-q16 cardiomyopathy, dilated 1K (autosomal dominant) unknown CMD1K cardiomyopathy, dilated 1K (autosomal dominant) O - 20120622 -9606 65018 PINK1 - BRPK|PARK6 HGNC:14581|MIM:608309|Ensembl:ENSG00000158828|HPRD:10514|Vega:OTTHUMG00000002841 1 1p36 PTEN induced putative kinase 1 protein-coding PINK1 PTEN induced putative kinase 1 O PTEN-induced putative kinase protein 1|protein kinase BRPK|serine/threonine-protein kinase PINK1, mitochondrial 20121230 -9606 65055 REEP1 - C2orf23|HMN5B|SPG31 HGNC:25786|MIM:609139|Ensembl:ENSG00000068615|HPRD:07810|Vega:OTTHUMG00000130205 2 2p11.2 receptor accessory protein 1 protein-coding REEP1 receptor accessory protein 1 O receptor expression-enhancing protein 1 20121230 -9606 65056 GPBP1 - GPBP|SSH6|VASCULIN HGNC:29520|MIM:608412|Ensembl:ENSG00000062194|HPRD:16333|Vega:OTTHUMG00000162321 5 5q11.2 GC-rich promoter binding protein 1 protein-coding GPBP1 GC-rich promoter binding protein 1 O vascular wall-linked protein|vasculin 20121230 -9606 65057 ACD - PIP1|PTOP|TINT1|TPP1 HGNC:25070|MIM:609377|Ensembl:ENSG00000102977|HPRD:12417|Vega:OTTHUMG00000137547 16 16q22.1 adrenocortical dysplasia homolog (mouse) protein-coding ACD adrenocortical dysplasia homolog (mouse) O POT1 and TIN2 organizing protein|POT1 and TIN2-interacting protein|TIN2 interacting protein 1|adrenocortical dysplasia protein homolog 20121230 -9606 65059 RAPH1 - ALS2CR18|ALS2CR9|LPD|PREL-2|PREL2|RMO1|RalGDS/AF-6 HGNC:14436|MIM:609035|Ensembl:ENSG00000173166|HPRD:12356|Vega:OTTHUMG00000132876 2 2q33 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 protein-coding RAPH1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 O amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 18|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 9|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 18 protein|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 9 protein|lamellipodin|proline-rich EVH1 ligand 2|ras-associated and pleckstrin homology domains-containing protein 1 20121230 -9606 65061 CDK15 - ALS2CR7|PFTAIRE2|PFTK2 HGNC:14434|Ensembl:ENSG00000138395|HPRD:12449|Vega:OTTHUMG00000132838 2 2q33.2 cyclin-dependent kinase 15 protein-coding CDK15 cyclin-dependent kinase 15 O PFTAIRE protein kinase 2|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 7|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 7 protein|cell division protein kinase 15|serine/threonine protein kinase|serine/threonine-protein kinase ALS2CR7|serine/threonine-protein kinase PFTAIRE-2 20121230 -9606 65062 TMEM237 - ALS2CR4|JBTS14 HGNC:14432|MIM:614423|Ensembl:ENSG00000155755|HPRD:12448|Vega:OTTHUMG00000154526 2 2q33.2 transmembrane protein 237 protein-coding TMEM237 transmembrane protein 237 O amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 4|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 4 protein 20121230 -9606 65065 NBEAL1 - A530083I02Rik|ALS2CR16|ALS2CR17 HGNC:20681|MIM:609816|Ensembl:ENSG00000144426|HPRD:14811|Vega:OTTHUMG00000154129 2 2q33.2 neurobeachin-like 1 protein-coding NBEAL1 neurobeachin-like 1 O amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 16|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 17|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 16 protein|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 17 protein|beach|neurobeachin-like protein 1 20121230 -9606 65072 CFLAR-AS1 - ALS2CR10 HGNC:14437 2 2q33 CFLAR antisense RNA 1 miscRNA CFLAR-AS1 CFLAR antisense RNA 1 O - 20121230 -9606 65076 AOMS1 - SYNX MIM:605552 3 3q27 Abdominal obesity-metabolic syndrome QTL1 unknown - - - - 20120622 -9606 65077 AOMS2 - - MIM:605572 17 17p12 abdominal obesity-metabolic syndrome QTL2 unknown - - - - 20120622 -9606 65078 RTN4R UNQ330/PRO526 NGR|NOGOR HGNC:18601|MIM:605566|Ensembl:ENSG00000040608|HPRD:16123|Vega:OTTHUMG00000150572 22 22q11.21 reticulon 4 receptor protein-coding RTN4R reticulon 4 receptor O Nogo-66 receptor|UNQ330/PRO526|nogo receptor|reticulon-4 receptor 20121230 -9606 65080 MRPL44 - L44MT|MRP-L44 HGNC:16650|MIM:611849|Ensembl:ENSG00000135900|HPRD:14763|Vega:OTTHUMG00000133164 2 2q36.1 mitochondrial ribosomal protein L44 protein-coding MRPL44 mitochondrial ribosomal protein L44 O 39S ribosomal protein L44, mitochondrial 20121230 -9606 65082 VPS33A - - HGNC:18179|MIM:610034|Ensembl:ENSG00000139719|Ensembl:ENSG00000256861|HPRD:15651|Vega:OTTHUMG00000168918|Vega:OTTHUMG00000168920 12 12q24.31 vacuolar protein sorting 33 homolog A (S. cerevisiae) protein-coding VPS33A vacuolar protein sorting 33 homolog A (S. cerevisiae) O hVPS33A|vacuolar protein sorting 33A|vacuolar protein sorting-associated protein 33A 20121230 -9606 65083 NOL6 - NRAP|UTP22|bA311H10.1 HGNC:19910|MIM:611532|Ensembl:ENSG00000165271|HPRD:14832|Vega:OTTHUMG00000000394 9 9p13.3 nucleolar protein family 6 (RNA-associated) protein-coding NOL6 nucleolar protein family 6 (RNA-associated) O nucleolar RNA-associated protein|nucleolar protein 6 20121230 -9606 65084 TMEM135 - PMP52 HGNC:26167|Ensembl:ENSG00000166575|HPRD:07978|Vega:OTTHUMG00000167248 11 11q14.2 transmembrane protein 135 protein-coding TMEM135 transmembrane protein 135 O peroxisomal membrane protein 52 20121230 -9606 65094 JMJD4 - - HGNC:25724|Ensembl:ENSG00000081692|HPRD:07774|Vega:OTTHUMG00000037698 1 1q42.13 jumonji domain containing 4 protein-coding JMJD4 jumonji domain containing 4 O jmjC domain-containing protein 4|jumonji domain-containing protein 4 20121230 -9606 65095 KRI1 - - HGNC:25769|Ensembl:ENSG00000129347|HPRD:10969|Vega:OTTHUMG00000150343 19 19p13.2 KRI1 homolog (S. cerevisiae) protein-coding KRI1 KRI1 homolog (S. cerevisiae) O protein KRI1 homolog 20121230 -9606 65108 MARCKSL1 - F52|MACMARCKS|MLP|MLP1|MRP HGNC:7142|MIM:602940|Ensembl:ENSG00000175130|HPRD:04247|Vega:OTTHUMG00000007589 1 1p35.1 MARCKS-like 1 protein-coding MARCKSL1 MARCKS-like 1 O MARCKS-like protein 1|MARCKS-related protein|mac-MARCKS|macrophage myristoylated alanine-rich C kinase substrate 20121230 -9606 65109 UPF3B - HUPF3B|MRXS14|RENT3B|UPF3X HGNC:20439|MIM:300298|Ensembl:ENSG00000125351|HPRD:02247|Vega:OTTHUMG00000022282 X Xq25-q26 UPF3 regulator of nonsense transcripts homolog B (yeast) protein-coding UPF3B UPF3 regulator of nonsense transcripts homolog B (yeast) O hUpf3p-X|nonsense mRNA reducing factor 3B|regulator of nonsense transcripts 3B|up-frameshift suppressor 3 homolog B|up-frameshift suppressor 3 homolog on chromosome X 20121230 -9606 65110 UPF3A RP11-569D9.1 HUPF3A|RENT3A|UPF3 HGNC:20332|MIM:605530|Ensembl:ENSG00000169062|HPRD:09274|Vega:OTTHUMG00000017403 13 13q34 UPF3 regulator of nonsense transcripts homolog A (yeast) protein-coding UPF3A UPF3 regulator of nonsense transcripts homolog A (yeast) O hUpf3|nonsense mRNA reducing factor 3A|regulator of nonsense transcripts 3A|up-frameshift suppressor 3 homolog A 20121230 -9606 65117 RSRC2 - - HGNC:30559|Ensembl:ENSG00000111011|HPRD:13342|Vega:OTTHUMG00000167572 12 12q24.31 arginine/serine-rich coiled-coil 2 protein-coding RSRC2 arginine/serine-rich coiled-coil 2 O arginine/serine-rich coiled-coil protein 2 20121230 -9606 65121 PRAMEF1 RP5-1198H6.2 - HGNC:28840|Ensembl:ENSG00000116721|HPRD:11272|Vega:OTTHUMG00000001928 1 1p36.21 PRAME family member 1 protein-coding PRAMEF1 PRAME family member 1 O - 20121230 -9606 65122 PRAMEF2 - DJ845O24.3|RP5-845O24.1 HGNC:28841|Ensembl:ENSG00000120952|HPRD:11273|Vega:OTTHUMG00000001986 1 1p36.21 PRAME family member 2 protein-coding PRAMEF2 PRAME family member 2 O - 20121230 -9606 65123 INTS3 RP11-216N14.2 C1orf193|C1orf60|INT3|SOSS-A HGNC:26153|MIM:611347|Ensembl:ENSG00000143624|HPRD:08644|Vega:OTTHUMG00000037089 1 1q21.3 integrator complex subunit 3 protein-coding INTS3 integrator complex subunit 3 O RP11-216N14.4|SOSS complex subunit A|sensor of single-strand DNA complex subunit A|sensor of ssDNA A|sensor of ssDNA subunit A 20121230 -9606 65124 SOWAHC - ANKRD57|C2orf26 HGNC:26149|Ensembl:ENSG00000198142|HPRD:08643|Vega:OTTHUMG00000153219 2 2q13 sosondowah ankyrin repeat domain family member C protein-coding SOWAHC sosondowah ankyrin repeat domain family member C O ankyrin repeat domain 57|ankyrin repeat domain-containing protein 57|ankyrin repeat domain-containing protein SOWAHC|protein sosondowah homolog C 20121230 -9606 65125 WNK1 - HSAN2|HSN2|KDP|PRKWNK1|PSK|p65 HGNC:14540|MIM:605232|Ensembl:ENSG00000060237|HPRD:05570|Vega:OTTHUMG00000090321 12 12p13.3 WNK lysine deficient protein kinase 1 protein-coding WNK1 WNK lysine deficient protein kinase 1 O WNK lysine deficient protein kinase 1 isoform|erythrocyte 65 kDa protein|prostate-derived sterile 20-like kinase|protein kinase with no lysine 1|serine/threonine-protein kinase WNK1 20121230 -9606 65211 FRTS - RFS MIM:134600 15 15q15.3 Fanconi renotubular syndrome unknown - - - - 20120622 -9606 65217 PCDH15 RP11-449J3.2 CDHR15|DFNB23|USH1F HGNC:14674|MIM:605514|Ensembl:ENSG00000150275|HPRD:05698|Vega:OTTHUMG00000018259 10 10q21.1 protocadherin-related 15 protein-coding PCDH15 protocadherin-related 15 O cadherin-related family member 15|protocadherin-15 20121230 -9606 65220 NADK RP1-283E3.6 dJ283E3.1 HGNC:29831|MIM:611616|Ensembl:ENSG00000008130|HPRD:16907|Vega:OTTHUMG00000000942 1 1p36.33 NAD kinase protein-coding NADK NAD kinase O poly(P)/ATP NAD kinase 20121230 -9606 65243 ZFP69B RP1-228H13.4 RP11-656D10.1|ZNF643 HGNC:28053|Ensembl:ENSG00000187801|HPRD:15884|Vega:OTTHUMG00000007302 1 1p34.2 ZFP69 zinc finger protein B protein-coding ZFP69B ZFP69 zinc finger protein B O novel zinc finger protein|zinc finger protein 643 20121230 -9606 65244 SPATS2 Nbla00526 P59SCR|SCR59|SPATA10 HGNC:18650|MIM:611667|Ensembl:ENSG00000123352|HPRD:15434|Vega:OTTHUMG00000169419 12 12q13.12 spermatogenesis associated, serine-rich 2 protein-coding SPATS2 spermatogenesis associated, serine-rich 2 O putative protein product of Nbla00526|serine-rich spermatocytes and round spermatid 59 kDa protein|serine-rich spermatocytes and round spermatid protein|spermatogenesis-associated serine-rich protein 2 20121230 -9606 65245 PSORS7 - - HGNC:14207|MIM:605606 1 1p psoriasis susceptibility 7 unknown PSORS7 psoriasis susceptibility 7 O - 20120622 -9606 65249 ZSWIM4 - - HGNC:25704|Ensembl:ENSG00000132003|HPRD:15904|Vega:OTTHUMG00000181752 19 19p13.13 zinc finger, SWIM-type containing 4 protein-coding ZSWIM4 zinc finger, SWIM-type containing 4 O zinc finger SWIM domain-containing protein 4|zinc finger, SWIM domain containing 4 20121230 -9606 65250 C5orf42 - JBTS17 HGNC:25801|MIM:614571|Ensembl:ENSG00000197603|HPRD:07822|Vega:OTTHUMG00000160492 5 5p13.2 chromosome 5 open reading frame 42 protein-coding C5orf42 chromosome 5 open reading frame 42 O Transmembrane protein ENSP00000382582|uncharacterized protein C5orf42 20121230 -9606 65251 ZNF649 - - HGNC:25741|MIM:611903|Ensembl:ENSG00000198093|HPRD:07785 19 19q13.41 zinc finger protein 649 protein-coding ZNF649 zinc finger protein 649 O - 20121230 -9606 65258 MPPE1 PP579 PGAP5 HGNC:15988|MIM:611900|Ensembl:ENSG00000154889|HPRD:14734|Vega:OTTHUMG00000131661 18 18p11.21 metallophosphoesterase 1 protein-coding MPPE1 metallophosphoesterase 1 O metallo phosphoesterase|post-GPI attachment to proteins factor 5 20121230 -9606 65260 SELRC1 - C1orf163 HGNC:25716|Ensembl:ENSG00000162377|HPRD:07769|Vega:OTTHUMG00000008505 1 1p32.3 Sel1 repeat containing 1 protein-coding SELRC1 Sel1 repeat containing 1 O beta-lactamase hcp-like protein|hcp beta-lactamase-like protein C1orf163|sel1 repeat-containing protein 1 20121230 -9606 65263 PYCRL - - HGNC:25846|Ensembl:ENSG00000104524|HPRD:15196|Vega:OTTHUMG00000157010 8 8q24.3 pyrroline-5-carboxylate reductase-like protein-coding PYCRL pyrroline-5-carboxylate reductase-like O P5C reductase 3|P5CR 3|pyrroline-5-carboxylate reductase 3|pyrroline-5-carboxylate reductase-like protein 20121230 -9606 65264 UBE2Z HOYS7 USE1 HGNC:25847|MIM:611362|Ensembl:ENSG00000159202|HPRD:08589|Vega:OTTHUMG00000150521 17 17q21.32 ubiquitin-conjugating enzyme E2Z protein-coding UBE2Z ubiquitin-conjugating enzyme E2Z O UBA6-specific enzyme E2|uba6-specific E2 conjugating enzyme 1|ubiquitin carrier protein Z|ubiquitin-conjugating enzyme E2 Z|ubiquitin-protein ligase Z 20121230 -9606 65265 C8orf33 - - HGNC:26104|Ensembl:ENSG00000182307|HPRD:07951|Vega:OTTHUMG00000165256 8 8q24.3 chromosome 8 open reading frame 33 protein-coding C8orf33 chromosome 8 open reading frame 33 O UPF0488 protein C8orf33 20121230 -9606 65266 WNK4 - PHA2B|PRKWNK4 HGNC:14544|MIM:601844|Ensembl:ENSG00000126562|HPRD:03505|Vega:OTTHUMG00000180650 17 17q21-q22 WNK lysine deficient protein kinase 4 protein-coding WNK4 WNK lysine deficient protein kinase 4 O protein kinase lysine-deficient 4|protein kinase with no lysine 4|serine/threonine-protein kinase WNK4 20121230 -9606 65267 WNK3 RP3-390O13.2 PRKWNK3 HGNC:14543|MIM:300358|Ensembl:ENSG00000196632|HPRD:02289|Vega:OTTHUMG00000021626 X Xp11.22 WNK lysine deficient protein kinase 3 protein-coding WNK3 WNK lysine deficient protein kinase 3 O protein kinase with no lysine 3|serine/threonine-protein kinase WNK3 20121230 -9606 65268 WNK2 RP11-165J3.2 NY-CO-43|P/OKcl.13|PRKWNK2|SDCCAG43 HGNC:14542|MIM:606249|Ensembl:ENSG00000165238|HPRD:06951|Vega:OTTHUMG00000020247 9 9q22.3 WNK lysine deficient protein kinase 2 protein-coding WNK2 WNK lysine deficient protein kinase 2 O antigen NY-CO-43|mitogen-activated protein kinase kinase kinase|protein kinase lysine-deficient 2|protein kinase with no lysine 2|protein kinase, lysine deficient 2|serine/threonine-protein kinase WNK2|serologically defined colon cancer antigen 43 20121230 -9606 65944 OR2B8P - OR2B8|OR6-10|dJ313I6.4|hs6M1-29P HGNC:13968 6 6p21.3 olfactory receptor, family 2, subfamily B, member 8 pseudogene pseudo OR2B8P olfactory receptor, family 2, subfamily B, member 8 pseudogene O - 20121230 -9606 65975 STK33 - - HGNC:14568|MIM:607670|Ensembl:ENSG00000130413|HPRD:09642|Vega:OTTHUMG00000140275 11 11p15.3 serine/threonine kinase 33 protein-coding STK33 serine/threonine kinase 33 O serine/threonine-protein kinase 33 20121230 -9606 65977 PLEKHA3 - FAPP1 HGNC:14338|MIM:607774|Ensembl:ENSG00000116095|HPRD:09688|Vega:OTTHUMG00000154446 2 2q31.2 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 3 protein-coding PLEKHA3 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 3 O FAPP-1|PH domain-containing family A member 3|four-phosphate-adaptor protein 1|phosphatidylinositol-four-phosphate adapter protein 1|phosphoinositol 4-phosphate adapter protein 1|pleckstrin homology domain-containing family A member 3|pleckstrin homology domain-containing, family A (phosphoinositide binding specific) member 3 20121230 -9606 65978 IGSF6-DREV1 - - - 16 - region containing immunoglobulin superfamily, member 6 and DREV1 other - - - - 20100615 -9606 65979 PHACTR4 RP11-442N24__A.1 - HGNC:25793|MIM:608726|Ensembl:ENSG00000204138|HPRD:07816|Vega:OTTHUMG00000003541 1 1p35.3 phosphatase and actin regulator 4 protein-coding PHACTR4 phosphatase and actin regulator 4 O - 20121230 -9606 65980 BRD9 UNQ3040/PRO9856 LAVS3040|PRO9856 HGNC:25818|Ensembl:ENSG00000028310|HPRD:12532|Vega:OTTHUMG00000159258 5 5p15.33 bromodomain containing 9 protein-coding BRD9 bromodomain containing 9 O bromodomain-containing protein 9|rhabdomyosarcoma antigen MU-RMS-40.8|sarcoma antigen NY-SAR-29 20121230 -9606 65981 CAPRIN2 - C1QDC1|EEG-1|EEG1|RNG140 HGNC:21259|MIM:610375|Ensembl:ENSG00000110888|HPRD:12711|Vega:OTTHUMG00000169185 12 12p11 caprin family member 2 protein-coding CAPRIN2 caprin family member 2 O C1q domain-containing protein 1|RNA granule protein 140|caprin-2|cytoplasmic activation/proliferation-associated protein 2|gastric cancer multidrug resistance-associated protein 20121230 -9606 65982 ZSCAN18 - ZNF447 HGNC:21037|Ensembl:ENSG00000121413|HPRD:07802 19 19q13.43 zinc finger and SCAN domain containing 18 protein-coding ZSCAN18 zinc finger and SCAN domain containing 18 O zinc finger and SCAN domain-containing protein 18|zinc finger protein 447 20121230 -9606 65983 GRAMD3 - NS3TP2 HGNC:24911|Ensembl:ENSG00000155324|HPRD:11402|Vega:OTTHUMG00000128943 5 5q23.2 GRAM domain containing 3 protein-coding GRAMD3 GRAM domain containing 3 O GRAM domain-containing protein 3|HCV NS3-transactivated protein 2|hepatitis C virus nonstructural protein 3-transactivating protein 2 20121230 -9606 65985 AACS - ACSF1|SUR-5 HGNC:21298|MIM:614364|Ensembl:ENSG00000081760|HPRD:12391|Vega:OTTHUMG00000168550 12 12q24.31 acetoacetyl-CoA synthetase protein-coding AACS acetoacetyl-CoA synthetase O acetoacetate-CoA ligase|acyl-CoA synthetase family member 1|homolog of C. elegans supressor of ras 5 (sur-5)|protein sur-5 homolog 20121230 -9606 65986 ZBTB10 - RINZF HGNC:30953|Ensembl:ENSG00000205189|HPRD:15689|Vega:OTTHUMG00000155016 8 8q13-q21.1 zinc finger and BTB domain containing 10 protein-coding ZBTB10 zinc finger and BTB domain containing 10 O zinc finger and BTB domain-containing protein 10|zinc finger protein RIN ZF|zinc finger protein RINZF 20121230 -9606 65987 KCTD14 - - HGNC:23295|Ensembl:ENSG00000151364|HPRD:13764|Vega:OTTHUMG00000150224 11 11q14.1 potassium channel tetramerisation domain containing 14 protein-coding KCTD14 potassium channel tetramerisation domain containing 14 O BTB/POZ domain-containing protein KCTD14 20121230 -9606 65988 ZNF747 - - HGNC:28350|Ensembl:ENSG00000169955|HPRD:14498|Vega:OTTHUMG00000132401 16 16p11.2 zinc finger protein 747 protein-coding ZNF747 zinc finger protein 747 O KRAB domain-containing protein ZNF747 20121230 -9606 65989 DLK2 RP5-895C5.2 EGFL9 HGNC:21113|Ensembl:ENSG00000171462|HPRD:16855|Vega:OTTHUMG00000014735 6 6p21.1 delta-like 2 homolog (Drosophila) protein-coding DLK2 delta-like 2 homolog (Drosophila) O DLK-2|EGF-like protein 9|EGF-like-domain, multiple 9|epidermal growth factor-like protein 9|protein delta homolog 2 20121230 -9606 65990 FAM173A LA16c-444G9.1 C16orf24 HGNC:14152|Ensembl:ENSG00000103254|HPRD:14500|Vega:OTTHUMG00000121177 16 16p13.3 family with sequence similarity 173, member A protein-coding FAM173A family with sequence similarity 173, member A O protein FAM173A 20121230 -9606 65991 FUNDC2 GS1-273L24.1 DC44|HCBP6|HCC3|PD03104 HGNC:24925|Ensembl:ENSG00000165775|HPRD:06586|Vega:OTTHUMG00000013504 X Xq28 FUN14 domain containing 2 protein-coding FUNDC2 FUN14 domain containing 2 O FUN14 domain-containing protein 2|HCC-3|cervical cancer oncogene 3|cervical cancer proto-oncogene 3 protein|hepatitis C virus core-binding protein 6 20121230 -9606 65992 DDRGK1 - C20orf116|UFBP1|dJ1187M17.3 HGNC:16110|Ensembl:ENSG00000198171|HPRD:12741|Vega:OTTHUMG00000031732 20 20p13 DDRGK domain containing 1 protein-coding DDRGK1 DDRGK domain containing 1 O DDRGK domain-containing protein 1|Dashurin|UFM1-binding protein 1 containing a PCI domain 20121230 -9606 65993 MRPS34 - MRP-S12|MRP-S34|MRPS12 HGNC:16618|MIM:611994|Ensembl:ENSG00000074071|HPRD:17599|Vega:OTTHUMG00000128636 16 16p13.3 mitochondrial ribosomal protein S34 protein-coding MRPS34 mitochondrial ribosomal protein S34 O 28S ribosomal protein S34, mitochondrial|S34mt 20121230 -9606 65996 MGC2752 - - HPRD:14527 19 19q13.43 CENPB DNA-binding domains containing 1 pseudogene pseudo - - - - 20121230 -9606 65997 RASL11B - - HGNC:23804|MIM:612404|Ensembl:ENSG00000128045|HPRD:15216|Vega:OTTHUMG00000102097 4 4q12 RAS-like, family 11, member B protein-coding RASL11B RAS-like, family 11, member B O ras-like protein family member 11B 20121230 -9606 65998 C11orf95 - - HGNC:28449 11 11q13 chromosome 11 open reading frame 95 protein-coding C11orf95 chromosome 11 open reading frame 95 O uncharacterized protein C11orf95 20121230 -9606 65999 LRRC61 - HSPC295 HGNC:21704|Ensembl:ENSG00000127399|HPRD:08326|Vega:OTTHUMG00000158326 7 7q31-q35 leucine rich repeat containing 61 protein-coding LRRC61 leucine rich repeat containing 61 O leucine-rich repeat-containing protein 61 20121230 -9606 66000 TMEM108 UNQ1875/PRO4318 CT124 HGNC:28451|Ensembl:ENSG00000144868|HPRD:11329|Vega:OTTHUMG00000159685 3 3q21 transmembrane protein 108 protein-coding TMEM108 transmembrane protein 108 O cancer/testis antigen 124 20121230 -9606 66001 MLVI4 - - - 8 8q24 Moloney leukemia virus integration site 4, mouse, homolog of other - - - - 20100404 -9606 66002 CYP4F12 UNQ568/PRO1129 F22329_1 HGNC:18857|MIM:611485|Ensembl:ENSG00000186204|HPRD:07102|Vega:OTTHUMG00000164477 19 19p13.1 cytochrome P450, family 4, subfamily F, polypeptide 12 protein-coding CYP4F12 cytochrome P450, family 4, subfamily F, polypeptide 12 O CYPIVF12|cytochrome P450 4F12|cytochrome P450, subfamily IVF, polypeptide 12 20121230 -9606 66004 LYNX1 UNQ871/PRO1889 SLURP2 HGNC:29604|MIM:606110|Ensembl:ENSG00000180155|HPRD:16201|Vega:OTTHUMG00000164694 8 8q24.3 Ly6/neurotoxin 1 protein-coding LYNX1 Ly6/neurotoxin 1 O Ly-6 neurotoxin-like protein 1|SLURP-2|ly-6/neurotoxin-like protein 1|secreted Ly-6/uPAR domain-containing protein 2|secreted Ly-6/uPAR-related protein 2|secreted Ly6/uPAR related protein 2 20121230 -9606 66005 CHID1 GL008 SI-CLP HGNC:28474|Ensembl:ENSG00000177830|HPRD:14550|Vega:OTTHUMG00000133314 11 11p15.5 chitinase domain containing 1 protein-coding CHID1 chitinase domain containing 1 O chitinase domain-containing protein 1|stabilin-1 interacting chitinase-like protein|stabilin-1-interacting chitinase-like protein 20121230 -9606 66008 TRAK2 - ALS2CR3|CALS-C|GRIF-1|GRIF1|MILT2|OIP98 HGNC:13206|MIM:607334|Ensembl:ENSG00000115993|HPRD:09547|Vega:OTTHUMG00000132822 2 2q33 trafficking protein, kinesin binding 2 protein-coding TRAK2 trafficking protein, kinesin binding 2 O O-linked N-acetylglucosamine transferase interacting protein 98|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 3|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 3 protein|gamma-aminobutyric acid(A) receptor-interacting factor|milton homolog 2|trafficking kinesin-binding protein 2 20121230 -9606 66035 SLC2A11 - GLUT10|GLUT11|SLC2A11-a|SLC2A11-c HGNC:14239|MIM:610367|Ensembl:ENSG00000133460|HPRD:11571|Vega:OTTHUMG00000166469 22 22q11.23 solute carrier family 2 (facilitated glucose transporter), member 11 protein-coding SLC2A11 solute carrier family 2 (facilitated glucose transporter), member 11 O GLUT-10|GLUT-11|facilitative glucose transporter GLUT11|glucose transporter protein 10|glucose transporter protein 11|glucose transporter type 10|glucose transporter type 11|glucose transporter-like protein XI|solute carrier family 2, facilitated glucose transporter member 11 20121230 -9606 66036 MTMR9 - C8orf9|LIP-STYX|MTMR8 HGNC:14596|MIM:606260|Ensembl:ENSG00000104643|HPRD:09377|Vega:OTTHUMG00000090647 8 8p23-p22 myotubularin related protein 9 protein-coding MTMR9 myotubularin related protein 9 O myotubularin related protein 8|myotubularin-related protein 9 20121230 -9606 66037 BOLL - BOULE HGNC:14273|MIM:606165|Ensembl:ENSG00000152430|Vega:OTTHUMG00000132747 2 2q33 bol, boule-like (Drosophila) protein-coding BOLL bol, boule-like (Drosophila) O protein boule-like 20121230 -9606 78986 DUSP26 - DUSP24|LDP-4|MKP8|NATA1|SKRP3 HGNC:28161|Ensembl:ENSG00000133878|HPRD:14421|Vega:OTTHUMG00000163961 8 8p12 dual specificity phosphatase 26 (putative) protein-coding DUSP26 dual specificity phosphatase 26 (putative) O DSP-4|MAP kinase phosphatase 8|MKP-8|Novel amplified gene in thyroid anaplastic cancer|dual specificity phosphatase SKRP3|dual specificity protein phosphatase 26|dual-specificity phosphatase SKRP3|low-molecular-mass dual-specificity phosphatase 4|mitogen-activated protein kinase phosphatase 8 20121230 -9606 78987 CRELD1 UNQ188/PRO214 AVSD2|CIRRIN HGNC:14630|MIM:607170|Ensembl:ENSG00000163703|HPRD:06206|Vega:OTTHUMG00000128653 3 3p25.3 cysteine-rich with EGF-like domains 1 protein-coding CRELD1 cysteine-rich with EGF-like domains 1 O cysteine-rich with EGF-like domain protein 1 20121230 -9606 78988 MRP63 - bMRP63 HGNC:14514|MIM:611997|Ensembl:ENSG00000173141|HPRD:14736|Vega:OTTHUMG00000016532 13 13q12.11 mitochondrial ribosomal protein 63 protein-coding MRP63 mitochondrial ribosomal protein 63 O hMRP63|mitochondrial ribosomal protein bMRP63|ribosomal protein 63, mitochondrial 20121230 -9606 78989 COLEC11 UNQ596/PRO1182 3MC2|CL-K1-I|CL-K1-II|CL-K1-IIa|CL-K1-IIb|CLK1 HGNC:17213|MIM:612502|Ensembl:ENSG00000118004|HPRD:10847|Vega:OTTHUMG00000090304 2 2p25.3 collectin sub-family member 11 protein-coding COLEC11 collectin sub-family member 11 O collectin kidney protein 1|collectin-11 20121230 -9606 78990 OTUB2 - C14orf137|OTB2|OTU2 HGNC:20351|MIM:608338|Ensembl:ENSG00000089723|HPRD:07620|Vega:OTTHUMG00000171300 14 14q32.12 OTU domain, ubiquitin aldehyde binding 2 protein-coding OTUB2 OTU domain, ubiquitin aldehyde binding 2 O OTU domain-containing ubiquitin aldehyde-binding protein 2|deubiquitinating enzyme OTUB2|otubain-2|ubiquitin thioesterase OTUB2|ubiquitin-specific protease otubain 2|ubiquitin-specific-processing protease OTUB2 20121230 -9606 78991 PCYOX1L PSEC0105 - HGNC:28477|Ensembl:ENSG00000145882|HPRD:14552|Vega:OTTHUMG00000130052 5 5q32 prenylcysteine oxidase 1 like protein-coding PCYOX1L prenylcysteine oxidase 1 like O prenylcysteine oxidase-like 20121230 -9606 78992 YIPF2 - FinGER2 HGNC:28476|Ensembl:ENSG00000130733|HPRD:11332|Vega:OTTHUMG00000180796 19 19p13.2 Yip1 domain family, member 2 protein-coding YIPF2 Yip1 domain family, member 2 O YIP1 family member 2|protein YIPF2 20121230 -9606 78994 PRR14 - - HGNC:28458|Ensembl:ENSG00000156858|HPRD:14541|Vega:OTTHUMG00000132414 16 16p11.2 proline rich 14 protein-coding PRR14 proline rich 14 O proline-rich protein 14 20121230 -9606 78995 C17orf53 - - HGNC:28460|Ensembl:ENSG00000125319|HPRD:08825|Vega:OTTHUMG00000181808 17 17q21.31 chromosome 17 open reading frame 53 protein-coding C17orf53 chromosome 17 open reading frame 53 O uncharacterized protein C17orf53 20121230 -9606 78996 C7orf49 - MRI HGNC:22432|Ensembl:ENSG00000122783|HPRD:08333|Vega:OTTHUMG00000155447 7 7q33 chromosome 7 open reading frame 49 protein-coding C7orf49 chromosome 7 open reading frame 49 O modulator of retrovirus infection homolog 20121230 -9606 78997 GDAP1L1 RP5-881L22.1 dJ881L22.1|dJ995J12.1.1 HGNC:4213|Ensembl:ENSG00000124194|HPRD:17033|Vega:OTTHUMG00000032530 20 20q12 ganglioside induced differentiation associated protein 1-like 1 protein-coding GDAP1L1 ganglioside induced differentiation associated protein 1-like 1 O GDAP1-L1|ganglioside-induced differentiation-associated protein 1-like 1 20121230 -9606 78998 RHPN1-AS1 - C8orf51 HGNC:28457|HPRD:08328 8 8q24 RHPN1 antisense RNA 1 (head to head) miscRNA RHPN1-AS1 RHPN1 antisense RNA 1 (head to head) O - 20121230 -9606 78999 LRFN4 - FIGLER6|SALM3|SALM3. HGNC:28456|MIM:612810|Ensembl:ENSG00000173621|HPRD:14310|Vega:OTTHUMG00000167100 11 11q13.2 leucine rich repeat and fibronectin type III domain containing 4 protein-coding LRFN4 leucine rich repeat and fibronectin type III domain containing 4 O fibronectin type III, immunoglobulin and leucine rich repeat domains 6|leucine-rich repeat and fibronectin type-III domain-containing protein 4 20121230 -9606 79000 AUNIP RP1-317E23.5 AIBP|C1orf135 HGNC:28363|Ensembl:ENSG00000127423|HPRD:08323|Vega:OTTHUMG00000007372 1 1p36.11 aurora kinase A and ninein interacting protein protein-coding AUNIP aurora kinase A and ninein interacting protein O aurora A-binding protein|aurora kinase A and ninein-interacting protein 20121230 -9606 79001 VKORC1 MSTP134 EDTP308|IMAGE3455200|MST134|MST576|VKCFD2|VKOR HGNC:23663|MIM:608547|Ensembl:ENSG00000167397|HPRD:10540|Vega:OTTHUMG00000047408 16 16p11.2 vitamin K epoxide reductase complex, subunit 1 protein-coding VKORC1 vitamin K epoxide reductase complex, subunit 1 O phylloquinone epoxide reductase|vitamin K dependent clotting factors deficiency 2|vitamin K epoxide reductase complex subunit 1|vitamin K1 2,3-epoxide reductase subunit 1|vitamin K1 epoxide reductase (warfarin-sensitive) 20121230 -9606 79002 C19orf43 - fSAP18 HGNC:28424|Ensembl:ENSG00000123144|HPRD:14528|Vega:OTTHUMG00000180347 19 19p13.2 chromosome 19 open reading frame 43 protein-coding C19orf43 chromosome 19 open reading frame 43 O My029 protein|uncharacterized protein C19orf43 20121230 -9606 79003 MIS12 - 2510025F08Rik|KNTC2AP|MTW1|hMis12 HGNC:24967|MIM:609178|Ensembl:ENSG00000167842|HPRD:12379|Vega:OTTHUMG00000102042 17 17p13.2 MIS12, MIND kinetochore complex component, homolog (S. pombe) protein-coding MIS12 MIS12, MIND kinetochore complex component, homolog (S. pombe) O MIS12 homolog|homolog of yeast Mis12|protein MIS12 homolog 20121230 -9606 79004 CUEDC2 HOYS6 C10orf66|bA18I14.5 HGNC:28352|MIM:614142|Ensembl:ENSG00000107874|HPRD:13099|Vega:OTTHUMG00000018958 10 10q24.32 CUE domain containing 2 protein-coding CUEDC2 CUE domain containing 2 O CUE domain-containing protein 2 20121230 -9606 79005 SCNM1 RP11-68I18.6 - HGNC:23136|MIM:608095|Ensembl:ENSG00000163156|HPRD:12162|Vega:OTTHUMG00000012258 1 1q21.3 sodium channel modifier 1 protein-coding SCNM1 sodium channel modifier 1 O - 20121230 -9606 79006 METRN RJD6 C16orf23|c380A1.2 HGNC:14151|MIM:610998|Ensembl:ENSG00000103260|HPRD:14388|Vega:OTTHUMG00000047851 16 16p13.3 meteorin, glial cell differentiation regulator protein-coding METRN meteorin, glial cell differentiation regulator O meteorin 20121230 -9606 79007 DBNDD1 - - HGNC:28455|Ensembl:ENSG00000003249|HPRD:08327|Vega:OTTHUMG00000138984 16 16q24.3 dysbindin (dystrobrevin binding protein 1) domain containing 1 protein-coding DBNDD1 dysbindin (dystrobrevin binding protein 1) domain containing 1 O dysbindin domain-containing protein 1 20121230 -9606 79008 SLX1B - GIYD2 HGNC:28748|Ensembl:ENSG00000181625|HPRD:14673|Vega:OTTHUMG00000132110 16 16p11.2 SLX1 structure-specific endonuclease subunit homolog B (S. cerevisiae) protein-coding SLX1B SLX1 structure-specific endonuclease subunit homolog B (S. cerevisiae) O GIY-YIG domain-containing protein 1|structure-specific endonuclease subunit SLX1 20121230 -9606 79009 DDX50 - GU2|GUB|RH-II/GuB|mcdrh HGNC:17906|MIM:610373|Ensembl:ENSG00000107625|HPRD:09910|Vega:OTTHUMG00000018362 10 10q22.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 50 protein-coding DDX50 DEAD (Asp-Glu-Ala-Asp) box polypeptide 50 O ATP-dependent RNA helicase DDX50|DEAD box protein 50|RNA helicase II/Gu beta|gu-beta|malignant cell derived RNA helicase|nucleolar protein GU2 20121230 -9606 79012 CAMKV - 1G5|VACAMKL HGNC:28788|MIM:614993|Ensembl:ENSG00000164076|HPRD:11361|Vega:OTTHUMG00000158288 3 3p21.31 CaM kinase-like vesicle-associated protein-coding CAMKV CaM kinase-like vesicle-associated O caM kinase-like vesicle-associated protein|vesicle-associated calmodulin-binding protein 20121230 -9606 79015 LOC79015 - - - 20 20q13.12 uncharacterized LOC79015 miscRNA - - - - 20121230 -9606 79016 DDA1 - C19orf58|PCIA1 HGNC:28360|Ensembl:ENSG00000130311|HPRD:15107 19 19p13.11 DET1 and DDB1 associated 1 protein-coding DDA1 DET1 and DDB1 associated 1 O DET1- and DDB1-associated protein 1|PCIA-1|cross-immune reaction antigen PCIA1|placenta cross-immune reaction antigen 1 20121230 -9606 79017 GGCT - C7orf24|CRF21|GCTG|GGC HGNC:21705|MIM:137170|Ensembl:ENSG00000006625|HPRD:12912|Vega:OTTHUMG00000128593 7 7p15-p14 gamma-glutamylcyclotransferase protein-coding GGCT gamma-glutamylcyclotransferase O cytochrome c-releasing factor 21|gamma -glutamyl cyclotransferase 20121230 -9606 79018 GID4 - C17orf39|VID24 HGNC:28453|Ensembl:ENSG00000141034|HPRD:12683|Vega:OTTHUMG00000059398 17 17p11.2 GID complex subunit 4, VID24 homolog (S. cerevisiae) protein-coding GID4 GID complex subunit 4, VID24 homolog (S. cerevisiae) O glucose-induced degradation protein 4 homolog|vacuolar import and degradation 24|vacuolar import and degradation protein 24 homolog 20121230 -9606 79019 CENPM CTA-250D10.18-008 C22orf18|CENP-M|PANE1|bK250D10.2 HGNC:18352|MIM:610152|Ensembl:ENSG00000100162|HPRD:12798|Vega:OTTHUMG00000151277 22 22q13.2 centromere protein M protein-coding CENPM centromere protein M O interphase centromere complex protein 39|proliferation associated nuclear element 1|proliferation-associated nuclear element protein 1 20121230 -9606 79020 C7orf25 - - HGNC:21703|Ensembl:ENSG00000136197|HPRD:09861|Vega:OTTHUMG00000128869 7 7p14.1 chromosome 7 open reading frame 25 protein-coding C7orf25 chromosome 7 open reading frame 25 O UPF0415 protein C7orf25 20121230 -9606 79022 TMEM106C - - HGNC:28775|Ensembl:ENSG00000134291|HPRD:14690|Vega:OTTHUMG00000169892 12 12q13.1 transmembrane protein 106C protein-coding TMEM106C transmembrane protein 106C O endoplasmic reticulum membrane protein overexpressed in cancer 20121230 -9606 79023 NUP37 - p37 HGNC:29929|MIM:609264|Ensembl:ENSG00000075188|HPRD:14853|Vega:OTTHUMG00000170478 12 12q23.2 nucleoporin 37kDa protein-coding NUP37 nucleoporin 37kDa O nucleoporin Nup37|nup107-160 subcomplex subunit Nup37 20121230 -9606 79024 SMIM2 - C13orf44 HGNC:28776 13 13q14.11 small integral membrane protein 2 unknown SMIM2 small integral membrane protein 2 O - 20121230 -9606 79025 C20orf195 - - HGNC:28764|Ensembl:ENSG00000125531|HPRD:14682|Vega:OTTHUMG00000032980 20 20q13.33 chromosome 20 open reading frame 195 protein-coding C20orf195 chromosome 20 open reading frame 195 O uncharacterized protein C20orf195 20121230 -9606 79026 AHNAK - AHNAKRS HGNC:347|MIM:103390|Ensembl:ENSG00000124942|HPRD:14684|Vega:OTTHUMG00000167558 11 11q12.2 AHNAK nucleoprotein protein-coding AHNAK AHNAK nucleoprotein O AHNAK-related|desmoyokin|neuroblast differentiation-associated protein AHNAK 20121230 -9606 79027 ZNF655 - VIK|VIK-1 HGNC:30899|Ensembl:ENSG00000197343|HPRD:11673|Vega:OTTHUMG00000156637 7 7q22.1 zinc finger protein 655 protein-coding ZNF655 zinc finger protein 655 O vav-1 interacting Kruppel-like protein 20121230 -9606 79029 SPATA5L1 - - HGNC:28762|Ensembl:ENSG00000171763|HPRD:11596|Vega:OTTHUMG00000131425 15 15q21.1 spermatogenesis associated 5-like 1 protein-coding SPATA5L1 spermatogenesis associated 5-like 1 O spermatogenesis-associated protein 5-like protein 1 20121230 -9606 79031 PDCL3 - HTPHLP|PHLP2A|PHLP3|VIAF|VIAF1 HGNC:28860|MIM:611678|Ensembl:ENSG00000115539|HPRD:17827|Vega:OTTHUMG00000153141 2 2q11.2 phosducin-like 3 protein-coding PDCL3 phosducin-like 3 O IAP-associated factor VIAF1|VIAF-1|phPL3|phosducin-like protein 3|viral IAP-associated factor 1 20121230 -9606 79033 ERI3 RP5-891H21.3 PINT1|PRNPIP HGNC:17276|MIM:609917|Ensembl:ENSG00000117419|HPRD:15175|Vega:OTTHUMG00000007637 1 1p32 ERI1 exoribonuclease family member 3 protein-coding ERI3 ERI1 exoribonuclease family member 3 O ERI1 exoribonuclease 3|H_RG158K20.1|WUGSC:H_RG158K20.1|enhanced RNAi three prime mRNA exonuclease homolog 3|exoribonuclease 3|prion interactor 1|prion protein interacting protein|prion protein-interacting protein 20121230 -9606 79034 C7orf26 - - HGNC:21702|Ensembl:ENSG00000146576|HPRD:12913|Vega:OTTHUMG00000125517 7 7p22.1 chromosome 7 open reading frame 26 protein-coding C7orf26 chromosome 7 open reading frame 26 O uncharacterized protein C7orf26 20121230 -9606 79035 NABP2 LP3587 OBFC2B|SOSS-B1|SSB1|hSSB1 HGNC:28412|MIM:612104|Ensembl:ENSG00000139579|HPRD:14522|Vega:OTTHUMG00000152527 12 12q13.3 nucleic acid binding protein 2 protein-coding NABP2 nucleic acid binding protein 2 O LP3587|SOSS complex subunit B1|nucleic acid-binding protein 2|oligonucleotide/oligosaccharide-binding fold containing 2B|oligonucleotide/oligosaccharide-binding fold-containing protein 2B|sensor of single-strand DNA complex subunit B1|sensor of ssDNA subunit B1|single strand DNA-binding protein 1|single-stranded DNA-binding protein 1 20121230 -9606 79036 KXD1 - C19orf50|KXDL|MST096|MSTP096 HGNC:28420|Ensembl:ENSG00000105700|HPRD:14526 19 19p13.11 KxDL motif containing 1 protein-coding KXD1 KxDL motif containing 1 O UPF0459 protein C19orf50|kxDL motif-containing protein 1 20121230 -9606 79037 PVRIG - C7orf15 HGNC:32190|Ensembl:ENSG00000213413|Vega:OTTHUMG00000156798 7 7q22.1 poliovirus receptor related immunoglobulin domain containing protein-coding PVRIG poliovirus receptor related immunoglobulin domain containing O poliovirus receptor-related immunoglobulin domain-containing protein|transmembrane protein PVRIG 20121230 -9606 79038 ZFYVE21 - ZF21 HGNC:20760|MIM:613504|Ensembl:ENSG00000100711|HPRD:15733|Vega:OTTHUMG00000171651 14 14q32.33 zinc finger, FYVE domain containing 21 protein-coding ZFYVE21 zinc finger, FYVE domain containing 21 O FYVE domain containing 21|zinc finger FYVE domain-containing protein 21 20121230 -9606 79039 DDX54 - DP97 HGNC:20084|MIM:611665|Ensembl:ENSG00000123064|HPRD:13129|Vega:OTTHUMG00000169676 12 12q24.13 DEAD (Asp-Glu-Ala-Asp) box polypeptide 54 protein-coding DDX54 DEAD (Asp-Glu-Ala-Asp) box polypeptide 54 O ATP-dependent RNA helicase DDX54|ATP-dependent RNA helicase DP97|DEAD box RNA helicase 97 kDa|DEAD box helicase 97 KDa|DEAD box protein 54 20121230 -9606 79041 TMEM38A - TRIC-A|TRICA HGNC:28462|MIM:611235|Ensembl:ENSG00000072954|HPRD:15537 19 19p13.11 transmembrane protein 38A protein-coding TMEM38A transmembrane protein 38A O trimeric intracellular cation channel type A 20121230 -9606 79042 TSEN34 XXbac-BCX105G6.5 LENG5|PCH2C|SEN34|SEN34L HGNC:15506|MIM:608754|Ensembl:ENSG00000170892|HPRD:10038|Vega:OTTHUMG00000066515 19 19q13.4 tRNA splicing endonuclease 34 homolog (S. cerevisiae) protein-coding TSEN34 tRNA splicing endonuclease 34 homolog (S. cerevisiae) O hsSen34|leukocyte receptor cluster (LRC) member 5|leukocyte receptor cluster member 5|tRNA-intron endonuclease Sen34|tRNA-splicing endonuclease subunit Sen34 20121230 -9606 79047 KCTD15 - - HGNC:23297|Ensembl:ENSG00000153885|HPRD:13765|Vega:OTTHUMG00000180475 19 19q13.11 potassium channel tetramerisation domain containing 15 protein-coding KCTD15 potassium channel tetramerisation domain containing 15 O BTB/POZ domain-containing protein KCTD15 20121230 -9606 79048 SECISBP2 RP11-89K14.1 SBP2 HGNC:30972|MIM:607693|Ensembl:ENSG00000187742|HPRD:07408|Vega:OTTHUMG00000020182 9 9q22.2 SECIS binding protein 2 protein-coding SECISBP2 SECIS binding protein 2 O selenocysteine insertion sequence-binding protein 2 20121230 -9606 79050 NOC4L - NET49|NOC4|UTP19 HGNC:28461|MIM:612819|Ensembl:ENSG00000184967|HPRD:14543|Vega:OTTHUMG00000168260 12 12q24.33 nucleolar complex associated 4 homolog (S. cerevisiae) protein-coding NOC4L nucleolar complex associated 4 homolog (S. cerevisiae) O NOC4 protein homolog|NOC4-like protein|nucleolar complex protein 4 homolog|nucleolar complex-associated protein 4-like protein 20121230 -9606 79051 RPY - - MIM:400004 Y - Retinitis pigmentosa, Y-linked unknown - - - - 20120622 -9606 79052 PTCPRN - PRN1 MIM:605642 1 1q21 Papillary thyroid carcinoma with papillary renal neoplasia unknown - - - - 20120622 -9606 79053 ALG8 HUSSY-02 CDG1H HGNC:23161|MIM:608103|Ensembl:ENSG00000159063|HPRD:10480|Vega:OTTHUMG00000166594 11 11q14.1 asparagine-linked glycosylation 8, alpha-1,3-glucosyltransferase homolog (S. cerevisiae) protein-coding ALG8 asparagine-linked glycosylation 8, alpha-1,3-glucosyltransferase homolog (S. cerevisiae) O HUSSY-02|asparagine-linked glycosylation 8 homolog (S. cerevisiae, alpha-1,3-glucosyltransferase)|asparagine-linked glycosylation 8 homolog (yeast, alpha-1,3-glucosyltransferase)|asparagine-linked glycosylation protein 8 homolog|dol-P-Glc:Glc(1)Man(9)GlcNAc(2)-PP-dolichyl alpha-1,3-glucosyltransferase|dolichyl pyrophosphate Glc1Man9GlcNAc2 alpha-1,3-glucosyltransferase|dolichyl-P-Glc:Glc1Man9GlcNAc2-PP-dolichyl glucosyltransferase|dolichyl-P-glucose:Glc1Man9GlcNAc2-PP-dolichyl-alpha-1,3-glucosyltransferase|probable dolichyl pyrophosphate Glc1Man9GlcNAc2 alpha-1,3-glucosyltransferase 20121230 -9606 79054 TRPM8 - LTRPC6|TRPP8 HGNC:17961|MIM:606678|Ensembl:ENSG00000144481|HPRD:09454|Vega:OTTHUMG00000059129 2 2q37.1 transient receptor potential cation channel, subfamily M, member 8 protein-coding TRPM8 transient receptor potential cation channel, subfamily M, member 8 O LTrpC-6|long transient receptor potential channel 6|short form of the TRPM8 cationic channel|transient receptor potential cation channel subfamily M member 8|transient receptor potential p8|transient receptor potential subfamily M member 8|trp-p8 20121230 -9606 79055 PSMA2P3 - PSMA2L HGNC:43834 2 2q33.1 proteasome (prosome, macropain) subunit, alpha type, 2 pseudogene 3 pseudo PSMA2P3 proteasome (prosome, macropain) subunit, alpha type, 2 pseudogene 3 O - 20121230 -9606 79056 PRRG4 - PRGP4|TMG4 HGNC:30799|MIM:611690|Ensembl:ENSG00000135378|HPRD:15187|Vega:OTTHUMG00000166219 11 11p13 proline rich Gla (G-carboxyglutamic acid) 4 (transmembrane) protein-coding PRRG4 proline rich Gla (G-carboxyglutamic acid) 4 (transmembrane) O proline-rich Gla protein 4|proline-rich gamma-carboxyglutamic acid protein 4|transmembrane gamma-carboxyglutamic acid protein 4 20121230 -9606 79057 PRRG3 - PRGP3|TMG3 HGNC:30798|MIM:300685|Ensembl:ENSG00000130032|HPRD:06742|Vega:OTTHUMG00000024170 X Xq28 proline rich Gla (G-carboxyglutamic acid) 3 (transmembrane) protein-coding PRRG3 proline rich Gla (G-carboxyglutamic acid) 3 (transmembrane) O proline-rich Gla protein 3|proline-rich gamma-carboxyglutamic acid protein 3|transmembrane gamma-carboxyglutamic acid protein 3 20121230 -9606 79058 ASPSCR1 - ASPCR1|ASPL|ASPS|RCC17|TUG|UBXD9|UBXN9 HGNC:13825|MIM:606236|Ensembl:ENSG00000169696|HPRD:06947|Vega:OTTHUMG00000178438 17 17q25.3 alveolar soft part sarcoma chromosome region, candidate 1 protein-coding ASPSCR1 alveolar soft part sarcoma chromosome region, candidate 1 O UBX domain protein 9|UBX domain-containing protein 9|alveolar soft part sarcoma chromosomal region candidate gene 1 protein|alveolar soft part sarcoma locus|renal cell carcinoma gene on chromosome 17|renal cell carcinoma, papillary, 17|renal papillary cell carcinoma protein 17|tether containing UBX domain for GLUT4 20121230 -9606 79064 TMEM223 - - HGNC:28464|Ensembl:ENSG00000168569|Vega:OTTHUMG00000167693 11 11q12.3 transmembrane protein 223 protein-coding TMEM223 transmembrane protein 223 O - 20121230 -9606 79065 ATG9A - APG9L1|MGD3208|mATG9 HGNC:22408|MIM:612204|Ensembl:ENSG00000198925|HPRD:07979|Vega:OTTHUMG00000154557 2 2q35 autophagy related 9A protein-coding ATG9A autophagy related 9A O APG9 autophagy 9-like 1|APG9-like 1|ATG9 autophagy related 9 homolog A|autophagy 9-like 1 protein|autophagy-related protein 9A 20121230 -9606 79066 METTL16 - METT10D HGNC:28484|Ensembl:ENSG00000127804|HPRD:14556|Vega:OTTHUMG00000177564 17 17p13.3 methyltransferase like 16 protein-coding METTL16 methyltransferase like 16 O methyltransferase 10 domain containing|methyltransferase 10 domain-containing protein|methyltransferase-like protein 16|putative methyltransferase METT10D 20121230 -9606 79068 FTO - - HGNC:24678|MIM:610966|Ensembl:ENSG00000140718|Vega:OTTHUMG00000158780 16 16q12.2 fat mass and obesity associated protein-coding FTO fat mass and obesity associated O alpha-ketoglutarate-dependent dioxygenase FTO|fat mass and obesity-associated protein|protein fto 20121230 -9606 79070 KDELC1 RP11-484I6.4 EP58|KDEL1 HGNC:19350|MIM:611613|Ensembl:ENSG00000134901|HPRD:11061|Vega:OTTHUMG00000017307 13 13q33 KDEL (Lys-Asp-Glu-Leu) containing 1 protein-coding KDELC1 KDEL (Lys-Asp-Glu-Leu) containing 1 O ER protein 58|ERp58|KDEL motif-containing 1|KDEL motif-containing protein 1|endoplasmic reticulum resident protein 58 20121230 -9606 79071 ELOVL6 - FACE|FAE|LCE HGNC:15829|MIM:611546|Ensembl:ENSG00000170522|HPRD:13269|Vega:OTTHUMG00000132547 4 4q25 ELOVL fatty acid elongase 6 protein-coding ELOVL6 ELOVL fatty acid elongase 6 O 3-keto acyl-CoA synthase ELOVL6|ELOVL FA elongase 6|ELOVL family member 6, elongation of long chain fatty acids (FEN1/Elo2, SUR4/Elo3-like, yeast)|elongation of very long chain fatty acids protein 6|fatty acid elongase 2|fatty acyl-CoA elongase|hELO2|long-chain fatty-acyl elongase 20121230 -9606 79072 FASTKD3 - - HGNC:28758|Ensembl:ENSG00000124279|HPRD:10083|Vega:OTTHUMG00000131029 5 5p15.31 FAST kinase domains 3 protein-coding FASTKD3 FAST kinase domains 3 O FAST kinase domain-containing protein 3 20121230 -9606 79073 TMEM109 - - HGNC:28771|Ensembl:ENSG00000110108|HPRD:14687|Vega:OTTHUMG00000167801 11 11q12.2 transmembrane protein 109 protein-coding TMEM109 transmembrane protein 109 O mg23|mitsugumin-23 20121230 -9606 79074 C2orf49 - asw HGNC:28772|Ensembl:ENSG00000135974|HPRD:14688|Vega:OTTHUMG00000130808 2 2q12.1 chromosome 2 open reading frame 49 protein-coding C2orf49 chromosome 2 open reading frame 49 O ashwin 20121230 -9606 79075 DSCC1 UNQ9337/PRO34008 DCC1 HGNC:24453|MIM:613203|Ensembl:ENSG00000136982|HPRD:13123|Vega:OTTHUMG00000165010 8 8q24.12 defective in sister chromatid cohesion 1 homolog (S. cerevisiae) protein-coding DSCC1 defective in sister chromatid cohesion 1 homolog (S. cerevisiae) O defective in sister chromatid cohesion protein 1 homolog|sister chromatid cohesion protein DCC1 20121230 -9606 79077 DCTPP1 CDA03 RS21C6|XTP3TPA HGNC:28777|Ensembl:ENSG00000179958|HPRD:18310|Vega:OTTHUMG00000132416 16 16p11.2 dCTP pyrophosphatase 1 protein-coding DCTPP1 dCTP pyrophosphatase 1 O XTP3-transactivated gene A protein|XTP3-transactivated protein A|dCTPase 1|deoxycytidine-triphosphatase 1 20121230 -9606 79078 C1orf50 - - HGNC:28795|Ensembl:ENSG00000164008|HPRD:14714|Vega:OTTHUMG00000007568 1 1p34.2 chromosome 1 open reading frame 50 protein-coding C1orf50 chromosome 1 open reading frame 50 O uncharacterized protein C1orf50 20121230 -9606 79080 CCDC86 - - HGNC:28359|MIM:611293|Ensembl:ENSG00000110104|HPRD:08322|Vega:OTTHUMG00000167706 11 11q12.2 coiled-coil domain containing 86 protein-coding CCDC86 coiled-coil domain containing 86 O coiled-coil domain-containing protein 86|cyclon|cytokine-induced protein with coiled-coil domain 20121230 -9606 79081 C11orf48 - - HGNC:28351|Ensembl:ENSG00000162194|HPRD:14499|Vega:OTTHUMG00000167588 11 11q12.3 chromosome 11 open reading frame 48 protein-coding C11orf48 chromosome 11 open reading frame 48 O uncharacterized protein C11orf48 20121230 -9606 79083 MLPH UNQ8200 SLAC2-A HGNC:29643|MIM:606526|Ensembl:ENSG00000115648|HPRD:09409|Vega:OTTHUMG00000133298 2 2q37.3 melanophilin protein-coding MLPH melanophilin O exophilin-3|slp homolog lacking C2 domains a|synaptotagmin-like protein 2a 20121230 -9606 79084 WDR77 HKMT1069 MEP-50|MEP50|Nbla10071|RP11-552M11.3|p44|p44/Mep50 HGNC:29652|MIM:611734|Ensembl:ENSG00000116455|HPRD:14387|Vega:OTTHUMG00000011748 1 1p13.2 WD repeat domain 77 protein-coding WDR77 WD repeat domain 77 O WD repeat-containing protein 77|androgen receptor cofactor p44|methylosome protein 50 20121230 -9606 79085 SLC25A23 - APC2|MCSC2|SCaMC-3 HGNC:19375|MIM:608746|Ensembl:ENSG00000125648|HPRD:16381 19 19p13.3 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 23 protein-coding SLC25A23 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 23 O calcium-binding mitochondrial carrier protein SCaMC-3|mitochondrial ATP-Mg/Pi carrier protein 2|mitochondrial Ca(2+)-dependent solute carrier protein 2|mitochondrial Ca2+-dependent solute carrier protein 2|short calcium-binding mitochondrial carrier 3|small calcium-binding mitochondrial carrier protein 3|solute carrier family 25 member 23 20121230 -9606 79086 SMIM7 - C19orf42 HGNC:28419|Ensembl:ENSG00000214046|HPRD:14525|Vega:OTTHUMG00000149895 19 19p13.11 small integral membrane protein 7 protein-coding SMIM7 small integral membrane protein 7 O UPF0608 protein C19orf42 20121230 -9606 79087 ALG12 CITF22-1A6.2 CDG1G|ECM39|PP14673|hALG12 HGNC:19358|MIM:607144|Ensembl:ENSG00000182858|HPRD:06189|Vega:OTTHUMG00000150289 22 22q13.33 asparagine-linked glycosylation 12, alpha-1,6-mannosyltransferase homolog (S. cerevisiae) protein-coding ALG12 asparagine-linked glycosylation 12, alpha-1,6-mannosyltransferase homolog (S. cerevisiae) O asparagine-linked glycosylation 12 homolog (S. cerevisiae, alpha-1,6-mannosyltransferase)|asparagine-linked glycosylation 12 homolog (yeast, alpha-1,6-mannosyltransferase)|asparagine-linked glycosylation protein 12 homolog|dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase|dolichyl-P-Man:Man(7)GlcNAc(2)-PP-dolichyl-alpha-1,6-mannosyltransferase|dolichyl-P-mannose:Man-7-GlcNAc-2-PP-dolichyl-alpha-6-mannosyltransferase|mannosyltransferase ALG12 homolog|membrane protein SB87 20121230 -9606 79088 ZNF426 - - HGNC:20725|Ensembl:ENSG00000130818|HPRD:15787|Vega:OTTHUMG00000180132 19 19p13.2 zinc finger protein 426 protein-coding ZNF426 zinc finger protein 426 O - 20121230 -9606 79089 TMUB2 FP2653 - HGNC:28459|Ensembl:ENSG00000168591|HPRD:14542|Vega:OTTHUMG00000181811 17 17q21.31 transmembrane and ubiquitin-like domain containing 2 protein-coding TMUB2 transmembrane and ubiquitin-like domain containing 2 O transmembrane and ubiquitin-like domain-containing protein 2 20121230 -9606 79090 TRAPPC6A - TRS33 HGNC:23069|MIM:610396|Ensembl:ENSG00000007255|HPRD:14503|Vega:OTTHUMG00000181775 19 19q13.32 trafficking protein particle complex 6A protein-coding TRAPPC6A trafficking protein particle complex 6A O TRAPP complex subunit 6A|trafficking protein particle complex subunit 6A 20121230 -9606 79091 METTL22 LP8272 C16orf68 HGNC:28368|Ensembl:ENSG00000067365|HPRD:08324|Vega:OTTHUMG00000129694 16 16p13.2 methyltransferase like 22 protein-coding METTL22 methyltransferase like 22 O LP8272|methyltransferase-like protein 22 20121230 -9606 79092 CARD14 - BIMP2|CARMA2|PRP|PSORS2|PSS1 HGNC:16446|MIM:607211|Ensembl:ENSG00000141527|HPRD:06235|Vega:OTTHUMG00000177549 17 17q25 caspase recruitment domain family, member 14 protein-coding CARD14 caspase recruitment domain family, member 14 O CARD-containing MAGUK protein 2|bcl10-interacting maguk protein 2|card-maguk protein 2|carma 2|caspase recruitment domain-containing protein 14 20121230 -9606 79094 CHAC1 - - HGNC:28680|MIM:614587|Ensembl:ENSG00000128965|HPRD:14634|Vega:OTTHUMG00000130208 15 15q15.1 ChaC, cation transport regulator homolog 1 (E. coli) protein-coding CHAC1 ChaC, cation transport regulator homolog 1 (E. coli) O ChaC, cation transport regulator-like 1|blocks Notch protein|botch|cation transport regulator-like protein 1 20121230 -9606 79095 C9orf16 EST00098 - HGNC:17823|Ensembl:ENSG00000171159|HPRD:12946|Vega:OTTHUMG00000020731 9 9q34.1 chromosome 9 open reading frame 16 protein-coding C9orf16 chromosome 9 open reading frame 16 O UPF0184 protein C9orf16 20121230 -9606 79096 C11orf49 - - HGNC:28720|Ensembl:ENSG00000149179|HPRD:08332|Vega:OTTHUMG00000166725 11 11p11.2 chromosome 11 open reading frame 49 protein-coding C11orf49 chromosome 11 open reading frame 49 O UPF0705 protein C11orf49 20121230 -9606 79097 TRIM48 - RNF101 HGNC:19021|Ensembl:ENSG00000150244|HPRD:15565|Vega:OTTHUMG00000157011 11 11q11 tripartite motif containing 48 protein-coding TRIM48 tripartite motif containing 48 O RING finger protein 101|tripartite motif-containing 48|tripartite motif-containing protein 48 20121230 -9606 79098 C1orf116 - SARG HGNC:28667|MIM:611680|Ensembl:ENSG00000182795|HPRD:15294|Vega:OTTHUMG00000036580 1 1q32.1 chromosome 1 open reading frame 116 protein-coding C1orf116 chromosome 1 open reading frame 116 O specifically androgen-regulated gene protein|specifically androgen-regulated protein 20121230 -9606 79100 LINC00626 - - HGNC:44257 1 1q24.2 long intergenic non-protein coding RNA 626 miscRNA LINC00626 long intergenic non-protein coding RNA 626 O - 20121230 -9606 79101 TAF1D - JOSD3|RAFI41|TAF(I)41|TAFI41 HGNC:28759|MIM:612823|Ensembl:ENSG00000166012|HPRD:14679|Vega:OTTHUMG00000167451 11 11q21 TATA box binding protein (TBP)-associated factor, RNA polymerase I, D, 41kDa protein-coding TAF1D TATA box binding protein (TBP)-associated factor, RNA polymerase I, D, 41kDa O Josephin domain containing 3|RNA polymerase I-specific TBP-associated factor 41 kDa|TATA box-binding protein-associated factor 1D|TATA box-binding protein-associated factor RNA polymerase I subunit D|TBP-associated factor 1D|transcription initiation factor SL1/TIF-IB subunit D 20121230 -9606 79102 RNF26 - - HGNC:14646|MIM:606130|Ensembl:ENSG00000173456|HPRD:05842|Vega:OTTHUMG00000166171 11 11q23 ring finger protein 26 protein-coding RNF26 ring finger protein 26 O RING finger protein 26|ring finger protein with leucine zipper 20121230 -9606 79104 MEG8 - Bsr|Irm|LINC00024|NCRNA00024|Rian HGNC:14574|MIM:613648 14 14q32.31 maternally expressed 8 (non-protein coding) miscRNA MEG8 maternally expressed 8 (non-protein coding) O - 20121230 -9606 79109 MAPKAP1 RP11-269P11.1 JC310|MIP1|SIN1|SIN1b|SIN1g HGNC:18752|MIM:610558|Ensembl:ENSG00000119487|HPRD:17464|Vega:OTTHUMG00000020683 9 9q33.3 mitogen-activated protein kinase associated protein 1 protein-coding MAPKAP1 mitogen-activated protein kinase associated protein 1 O MEKK2-interacting protein 1|SAPK-interacting protein 1|TORC2 subunit MAPKAP1|mSIN1|mitogen-activated protein kinase 2-associated protein 1|ras inhibitor MGC2745|stress-activated map kinase interacting protein 1|stress-activated map kinase-interacting protein 1|stress-activated protein kinase-interacting 1|target of rapamycin complex 2 subunit MAPKAP1 20121230 -9606 79132 DHX58 - D11LGP2|D11lgp2e|LGP2|RLR-3 HGNC:29517|MIM:608588|Ensembl:ENSG00000108771|HPRD:13115|Vega:OTTHUMG00000133493 17 17q21.2 DEXH (Asp-Glu-X-His) box polypeptide 58 protein-coding DHX58 DEXH (Asp-Glu-X-His) box polypeptide 58 O RIG-I-like receptor 3|RIG-I-like receptor LGP2|RLR|RNA helicase LGP2|ortholog of mouse D11lgp2|probable ATP-dependent RNA helicase DHX58|probable ATP-dependent helicase LGP2|protein D11Lgp2 homolog 20121230 -9606 79133 NDUFAF5 RP5-842G6.2 C20orf7|bA526K24.2|dJ842G6.1 HGNC:15899|MIM:612360|Ensembl:ENSG00000101247|HPRD:12780|Vega:OTTHUMG00000031909 20 20p12.1 NADH dehydrogenase (ubiquinone) complex I, assembly factor 5 protein-coding NDUFAF5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 5 O NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 5|probable methyltransferase C20orf7, mitochondrial 20121230 -9606 79134 TMEM185B - FAM11B HGNC:18896|Ensembl:ENSG00000226479|Vega:OTTHUMG00000154402 2 2q14.2 transmembrane protein 185B protein-coding TMEM185B transmembrane protein 185B O ee3_2|family with sequence similarity 11, member B|putative transmembrane protein 185B|transmembrane protein 185B (pseudogene) 20121230 -9606 79135 APOO My025 FAM121B HGNC:28727|MIM:300753|Ensembl:ENSG00000184831|HPRD:06657|Vega:OTTHUMG00000021259 X Xp22.11 apolipoprotein O protein-coding APOO apolipoprotein O O brain my025|family with sequence similarity 121B 20121230 -9606 79136 LY6G6E DAQB-350E15.6 C6orf22|G6e HGNC:13934|MIM:610437|HPRD:14330 6 6p21.3 lymphocyte antigen 6 complex, locus G6E (pseudogene) pseudo LY6G6E lymphocyte antigen 6 complex, locus G6E (pseudogene) O - 20121230 -9606 79137 FAM134A - C2orf17 HGNC:28450|Ensembl:ENSG00000144567|HPRD:12807|Vega:OTTHUMG00000154577 2 2q35 family with sequence similarity 134, member A protein-coding FAM134A family with sequence similarity 134, member A O protein FAM134A 20121230 -9606 79139 DERL1 UNQ243/PRO276 DER-1|DER1 HGNC:28454|MIM:608813|Ensembl:ENSG00000136986|HPRD:12302|Vega:OTTHUMG00000165080 8 8q24.13 derlin 1 protein-coding DERL1 derlin 1 O DERtrin-1|Der1-like domain family, member 1|degradation in endoplasmic reticulum protein 1|derlin-1 20121230 -9606 79140 CCDC28B - RP4-622L5.5 HGNC:28163|MIM:610162|Ensembl:ENSG00000160050|HPRD:14422|Vega:OTTHUMG00000005738 1 1p36.11-p34.2 coiled-coil domain containing 28B protein-coding CCDC28B coiled-coil domain containing 28B O coiled-coil domain-containing protein 28B 20121230 -9606 79142 PHF23 - hJUNE-1b HGNC:28428|MIM:612910|Ensembl:ENSG00000040633|Vega:OTTHUMG00000177972 17 17p13.1 PHD finger protein 23 protein-coding PHF23 PHD finger protein 23 O PDH-containing protein JUNE-1|PHD finger protein 23a 20121230 -9606 79143 MBOAT7 XXbac-BCX105G6.4 BB1|LENG4|LPIAT|LRC4|MBOA7|OACT7|hMBOA-7 HGNC:15505|MIM:606048|Ensembl:ENSG00000125505|HPRD:06925|Vega:OTTHUMG00000066516 19 19q13.4 membrane bound O-acyltransferase domain containing 7 protein-coding MBOAT7 membrane bound O-acyltransferase domain containing 7 O 1-acylglycerophosphatidylinositol O-acyltransferase|LPLAT 7|bladder and breast carcinoma-overexpressed gene 1 protein|h-mboa-7|leukocyte receptor cluster (LRC) member 4|lyso-PI acyltransferase|lysophosphatidylinositol acyltransferase|lysophospholipid acyltransferase 7|malignant cell expression-enhanced gene/tumor progression-enhanced 20121230 -9606 79144 PPDPF RP4-697K14.13-004 C20orf149|dJ697K14.9|exdpf HGNC:16142|Ensembl:ENSG00000125534|HPRD:12750|Vega:OTTHUMG00000032978 20 20q13.33 pancreatic progenitor cell differentiation and proliferation factor homolog (zebrafish) protein-coding PPDPF pancreatic progenitor cell differentiation and proliferation factor homolog (zebrafish) O exocrine differentiation and proliferation factor|pancreatic progenitor cell differentiation and proliferation factor 20121230 -9606 79145 CHCHD7 - COX23 HGNC:28314|MIM:611238|Ensembl:ENSG00000170791|HPRD:13048|Vega:OTTHUMG00000074081 8 8q12.1 coiled-coil-helix-coiled-coil-helix domain containing 7 protein-coding CHCHD7 coiled-coil-helix-coiled-coil-helix domain containing 7 O COX23 cytochrome c oxidase assembly homolog|coiled-coil-helix-coiled-coil-helix domain-containing protein 7 20121230 -9606 79147 FKRP - LGMD2I|MDC1C|MDDGA5|MDDGB5|MDDGC5 HGNC:17997|MIM:606596|Ensembl:ENSG00000181027|HPRD:05962 19 19q13.32 fukutin related protein protein-coding FKRP fukutin related protein O fukutin-related protein 20121230 -9606 79148 MMP28 UNQ1893/PRO4339 EPILYSIN|MM28|MMP-28|MMP25 HGNC:14366|MIM:608417|Ensembl:ENSG00000129270|HPRD:07464|Vega:OTTHUMG00000180013 17 17q21.1 matrix metallopeptidase 28 protein-coding MMP28 matrix metallopeptidase 28 O matrix metalloproteinase 28|matrix metalloproteinase-28 20121230 -9606 79149 ZSCAN5A - ZNF495|ZSCAN5 HGNC:23710|Ensembl:ENSG00000131848|HPRD:15900|Vega:OTTHUMG00000181883 19 19q13.43 zinc finger and SCAN domain containing 5A protein-coding ZSCAN5A zinc finger and SCAN domain containing 5A O zinc finger and SCAN domain containing 5|zinc finger and SCAN domain-containing protein 5A|zinc finger protein 495 20121230 -9606 79150 MGC4859 - - - 7 7p uncharacterized LOC79150 unknown - - - - 20120508 -9606 79152 FA2H - FAAH|FAH1|FAXDC1|SCS7|SPG35 HGNC:21197|MIM:611026|Ensembl:ENSG00000103089|HPRD:16873|Vega:OTTHUMG00000137603 16 16q23 fatty acid 2-hydroxylase protein-coding FA2H fatty acid 2-hydroxylase O fatty acid alpha-hydroxylase|fatty acid hydroxylase domain containing 1|spastic paraplegia 35 (autosomal recessive) 20121230 -9606 79153 GDPD3 - - HGNC:28638|Ensembl:ENSG00000102886|HPRD:08330|Vega:OTTHUMG00000132106 16 16p11.2 glycerophosphodiester phosphodiesterase domain containing 3 protein-coding GDPD3 glycerophosphodiester phosphodiesterase domain containing 3 O glycerophosphodiester phosphodiesterase domain-containing protein 3 20121230 -9606 79154 DHRS11 UNQ836/PRO1774 ARPG836|SDR24C1 HGNC:28639|Ensembl:ENSG00000108272|HPRD:08331|Vega:OTTHUMG00000133062 17 17q12 dehydrogenase/reductase (SDR family) member 11 protein-coding DHRS11 dehydrogenase/reductase (SDR family) member 11 O dehydrogenase/reductase SDR family member 11|short chain dehydrogenase/reductase family 24C, member 1|short-chain dehydrogenase/reductase 20121230 -9606 79155 TNIP2 RP3-474M20.1 ABIN2|FLIP1|KLIP HGNC:19118|MIM:610669|Ensembl:ENSG00000168884|HPRD:18207|Vega:OTTHUMG00000090267 4 4p16.3 TNFAIP3 interacting protein 2 protein-coding TNIP2 TNFAIP3 interacting protein 2 O A20-binding inhibitor of NF-kappa-B activation 2|A20-binding inhibitor of NF-kappaB activation-2|TNFAIP3-interacting protein 2|fetal liver LKB1-interacting protein 20121230 -9606 79156 PLEKHF1 - APPD|PHAFIN1|ZFYVE15 HGNC:20764|Ensembl:ENSG00000166289|HPRD:15146|Vega:OTTHUMG00000182097 19 19q12 pleckstrin homology domain containing, family F (with FYVE domain) member 1 protein-coding PLEKHF1 pleckstrin homology domain containing, family F (with FYVE domain) member 1 O PH and FYVE domain-containing protein 1|PH domain-containing family F member 1|apoptosis-inducing protein D|lysosome-associated apoptosis-inducing protein containing PH and FYVE domains|phafin 1|phafin-1|pleckstrin homology domain-containing family F member 1|zinc finger FYVE domain-containing protein 15 20121230 -9606 79157 MFSD11 - ET HGNC:25458|Ensembl:ENSG00000092931|HPRD:13281|Vega:OTTHUMG00000180484 17 17q25 major facilitator superfamily domain containing 11 protein-coding MFSD11 major facilitator superfamily domain containing 11 O UNC93-like protein MFSD11|major facilitator superfamily domain-containing protein 11|protein ET 20121230 -9606 79158 GNPTAB - GNPTA|ICD HGNC:29670|MIM:607840|Ensembl:ENSG00000111670|HPRD:11350|Vega:OTTHUMG00000170444 12 12q23.2 N-acetylglucosamine-1-phosphate transferase, alpha and beta subunits protein-coding GNPTAB N-acetylglucosamine-1-phosphate transferase, alpha and beta subunits O GlcNAc phosphotransferase|N-acetylglucosamine-1-phosphotransferase subunits alpha/beta|UDP-N-acetylglucosamine-1-phosphotransferase subunits alpha/beta|UDP-N-acetylglucosamine-lysosomal-enzyme N-acetylglucosamine|glcNAc-1-phosphotransferase subunits alpha/beta|glucosamine (UDP-N-acetyl)-lysosomal-enzyme N-acetylglucosamine phosphotransferase|stealth protein GNPTAB 20121230 -9606 79159 NOL12 - Nop25|dJ37E16.7 HGNC:28585|Ensembl:ENSG00000256872|HPRD:17537|Vega:OTTHUMG00000150660 22 22q13.1 nucleolar protein 12 protein-coding NOL12 nucleolar protein 12 O - 20121230 -9606 79160 MGC4294 - - - 20 20q13.32 uncharacterized MGC4294 miscRNA - - - - 20121230 -9606 79161 TMEM243 - C7orf23|MM-TRAG HGNC:21707|Ensembl:ENSG00000135185|HPRD:12911|Vega:OTTHUMG00000130823 7 7q21.12 transmembrane protein 243, mitochondrial protein-coding TMEM243 transmembrane protein 243, mitochondrial O MDR1 and mitochondrial taxol resistance associated|transmembrane protein C7orf23 20121230 -9606 79165 LENG1 XXbac-BCX105G6.2 - HGNC:15502|Ensembl:ENSG00000105617|HPRD:13985|Vega:OTTHUMG00000066486 19 19q13.4 leukocyte receptor cluster (LRC) member 1 protein-coding LENG1 leukocyte receptor cluster (LRC) member 1 O leukocyte receptor cluster member 1 20121230 -9606 79166 LILRP2 - CD85m|ILT10|LILRA5 HGNC:15497|HPRD:13736 19 19q13.4 leukocyte immunoglobulin-like receptor pseudogene 2 pseudo LILRP2 leukocyte immunoglobulin-like receptor pseudogene 2 O - 20121230 -9606 79167 LILRP1 - CD85l|ILT9|LILRA6P HGNC:15496 19 19q13.4 leukocyte immunoglobulin-like receptor pseudogene 1 pseudo LILRP1 leukocyte immunoglobulin-like receptor pseudogene 1 O - 20121230 -9606 79168 LILRA6 - CD85b|ILT5|ILT8|LILRB3|LILRB6 HGNC:15495|Ensembl:ENSG00000244482|HPRD:13737|Vega:OTTHUMG00000066635 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6 protein-coding LILRA6 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6 O ILT-8|immunoglobulin-like transcript 5|immunoglobulin-like transcript 8|leukocyte Ig-like receptor|leukocyte immunoglobulin-like receptor subfamily A member 6|leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 6 20121230 -9606 79169 C1orf35 - MMTAG2|hMMTAG2 HGNC:19032|Ensembl:ENSG00000143793|HPRD:08512|HPRD:10090|Vega:OTTHUMG00000037793 1 1q42.13 chromosome 1 open reading frame 35 protein-coding C1orf35 chromosome 1 open reading frame 35 O multiple myeloma transforming 2|multiple myeloma tumor-associated protein 2 20121230 -9606 79170 PRR15L - ATAD4 HGNC:28149|Ensembl:ENSG00000167183|HPRD:14412|Vega:OTTHUMG00000178297 17 17q21.32 proline rich 15-like protein-coding PRR15L proline rich 15-like O ATPase family, AAA domain containing 4|proline-rich protein 15-like protein 20121230 -9606 79171 RBM42 - - HGNC:28117|MIM:613232|Ensembl:ENSG00000126254|HPRD:11303|Vega:OTTHUMG00000182063 19 19q13.12 RNA binding motif protein 42 protein-coding RBM42 RNA binding motif protein 42 O RNA-binding motif protein 42|RNA-binding protein 42 20121230 -9606 79172 CENPO - CENP-O|ICEN-36|MCM21R HGNC:28152|MIM:611504|Ensembl:ENSG00000138092|HPRD:14414|Vega:OTTHUMG00000125525 2 2p23.3 centromere protein O protein-coding CENPO centromere protein O O centromeric protein O|interphase centromere complex protein 36 20121230 -9606 79173 C19orf57 - - HGNC:28153|Ensembl:ENSG00000132016|HPRD:14415|Vega:OTTHUMG00000181851 19 19p13.12 chromosome 19 open reading frame 57 protein-coding C19orf57 chromosome 19 open reading frame 57 O pre-T/NK cell associated protein (3B3)|pre-T/NK cell-associated protein 3B3|uncharacterized protein C19orf57 20121230 -9606 79174 CRELD2 CITF22-1A6.1 - HGNC:28150|MIM:607171|Ensembl:ENSG00000184164|HPRD:08455|Vega:OTTHUMG00000150292 22 22q13.33 cysteine-rich with EGF-like domains 2 protein-coding CRELD2 cysteine-rich with EGF-like domains 2 O cysteine-rich with EGF-like domain protein 2 20121230 -9606 79175 ZNF343 RP4-734P14.3 dJ734P14.5 HGNC:16017|Ensembl:ENSG00000088876|Ensembl:ENSG00000256566|HPRD:18327|Vega:OTTHUMG00000031701|Vega:OTTHUMG00000168016 20 20p13 zinc finger protein 343 protein-coding ZNF343 zinc finger protein 343 O - 20121230 -9606 79176 FBXL15 RP11-18I14.1 FBXO37|Fbl15|JET|PSD HGNC:28155|MIM:610287|Ensembl:ENSG00000107872|Vega:OTTHUMG00000018957 10 10q24.32 F-box and leucine-rich repeat protein 15 protein-coding FBXL15 F-box and leucine-rich repeat protein 15 O F-box only protein 37|F-box/LRR-repeat protein 15|pleckstrin and Sec7 domain protein 20121230 -9606 79177 ZNF576 - - HGNC:28357|Ensembl:ENSG00000124444|HPRD:15855|Vega:OTTHUMG00000165479 19 19q13.31 zinc finger protein 576 protein-coding ZNF576 zinc finger protein 576 O - 20121230 -9606 79178 THTPA - THTP|THTPASE HGNC:18987|MIM:611612|Ensembl:ENSG00000259431|HPRD:15505|Vega:OTTHUMG00000172558 14 14q11.2 thiamine triphosphatase protein-coding THTPA thiamine triphosphatase O thiamine-triphosphatase 20121230 -9606 79179 FHA2 - FHII MIM:605635 7 7p22 Hyperaldosteronism, familial, type II unknown - - - - 20120622 -9606 79180 EFHD2 RP3-467K16.3 SWS1 HGNC:28670|Ensembl:ENSG00000142634|HPRD:13266|Vega:OTTHUMG00000002254 1 1p36.21 EF-hand domain family, member D2 protein-coding EFHD2 EF-hand domain family, member D2 O EF hand domain containing 2|EF hand domain family, member D2|EF-hand domain-containing protein D2|swiprosin 1|swiprosin-1 20121230 -9606 79183 TTPAL RP1-179M20.4 C20orf121 HGNC:16114|Ensembl:ENSG00000124120|HPRD:09837|Vega:OTTHUMG00000032536 20 20q13.12 tocopherol (alpha) transfer protein-like protein-coding TTPAL tocopherol (alpha) transfer protein-like O alpha-tocopherol transfer protein-like 20121230 -9606 79184 BRCC3 RP11-143H17.2 BRCC36|C6.1A|CXorf53 HGNC:24185|MIM:300617|Ensembl:ENSG00000185515|HPRD:06465|Vega:OTTHUMG00000022658 X Xq28 BRCA1/BRCA2-containing complex, subunit 3 protein-coding BRCC3 BRCA1/BRCA2-containing complex, subunit 3 O BRCA1-A complex subunit BRCC36|BRCA1/BRCA2-containing complex subunit 36|BRISC complex subunit BRCC36|lys-63-specific deubiquitinase BRCC36 20121230 -9606 79187 FSD1 VLP27 GLFND|MIR1 HGNC:13745|MIM:609828|Ensembl:ENSG00000105255|HPRD:17021 19 19p13.3 fibronectin type III and SPRY domain containing 1 protein-coding FSD1 fibronectin type III and SPRY domain containing 1 O MID1-related protein 1|fibronectin type 3 and SPRY (spla, ryanodine) domain containing (with coiled-coil motif) 1|fibronectin type 3 and SPRY domain containing 1|fibronectin type III and SPRY domain-containing protein 1|microtubule-associated protein GLFND|midline 1-related protein 1 20121230 -9606 79188 TMEM43 UNQ2564/PRO6244 ARVC5|ARVD5|LUMA HGNC:28472|MIM:612048|Ensembl:ENSG00000170876|HPRD:15541|Vega:OTTHUMG00000129802 3 3p25.1 transmembrane protein 43 protein-coding TMEM43 transmembrane protein 43 O - 20121230 -9606 79190 IRX6 - IRX-3|IRX7|IRXB3 HGNC:14675|MIM:606196|Ensembl:ENSG00000159387|HPRD:12091|Vega:OTTHUMG00000172239 16 16q12.2 iroquois homeobox 6 protein-coding IRX6 iroquois homeobox 6 O homeodomain protein IRXB3|iroquois homeobox protein 6|iroquois homeobox protein 7|iroquois-class homeodomain protein IRX-6 20121230 -9606 79191 IRX3 - IRX-1|IRXB1 HGNC:14360|MIM:612985|Ensembl:ENSG00000177508|HPRD:17162|Vega:OTTHUMG00000133200 16 16q12.2 iroquois homeobox 3 protein-coding IRX3 iroquois homeobox 3 O homeodomain protein IRXB1|iroquois homeobox protein 3|iroquois-class homeodomain protein IRX-1|iroquois-class homeodomain protein IRX-3 20121230 -9606 79192 IRX1 - IRX-5|IRXA1 HGNC:14358|MIM:606197|Ensembl:ENSG00000170549|HPRD:16203|Vega:OTTHUMG00000161632 5 5p15.3 iroquois homeobox 1 protein-coding IRX1 iroquois homeobox 1 O homeodomain protein IRXA1|iroquois homeobox protein 1|iroquois-class homeodomain protein IRX-1 20121230 -9606 79228 THOC6 PSEC0006 WDR58|fSAP35 HGNC:28369|Ensembl:ENSG00000131652|HPRD:14504|Vega:OTTHUMG00000177451 16 16p13.3 THO complex 6 homolog (Drosophila) protein-coding THOC6 THO complex 6 homolog (Drosophila) O THO complex subunit 6 homolog|WD repeat domain 58|WD repeat-containing protein 58|functional spliceosome-associated protein 35 20121230 -9606 79230 ZNF557 - - HGNC:28632|Ensembl:ENSG00000130544|HPRD:15840 19 19p13.2 zinc finger protein 557 protein-coding ZNF557 zinc finger protein 557 O - 20121230 -9606 79231 ZNF33AP1 - BA393J16.4|ZNF33CP HGNC:30957 10 10p11 zinc finger protein 33A pseudogene 1 pseudo ZNF33AP1 zinc finger protein 33A pseudogene 1 O - 20121230 -9606 79232 ZNF37C - BA775A3.1 HGNC:29445 10 10p11 zinc finger protein 37C, pseudogene pseudo ZNF37C zinc finger protein 37C, pseudogene O - 20121230 -9606 79258 MMEL1 RP3-395M20.11-001 MMEL2|NEP2|NEPII|NL1|NL2|SEP HGNC:14668|Ensembl:ENSG00000142606|HPRD:07024|Vega:OTTHUMG00000000846 1 1p36 membrane metallo-endopeptidase-like 1 protein-coding MMEL1 membrane metallo-endopeptidase-like 1 O NEP2(m)|membrane metallo-endopeptidase-like 2|neprilysin II|neprilysin-2|soluble secreted endopeptidase|zinc metallopeptidase 20121230 -9606 79269 DCAF10 - WDR32 HGNC:23686|Ensembl:ENSG00000122741|HPRD:08319|Vega:OTTHUMG00000019934 9 9p13.2 DDB1 and CUL4 associated factor 10 protein-coding DCAF10 DDB1 and CUL4 associated factor 10 O DDB1- and CUL4-associated factor 10|WD repeat domain 32|WD repeat-containing protein 32 20121230 -9606 79272 OR52X1P - - HGNC:14790 11 11p15.4 olfactory receptor, family 52, subfamily X, member 1 pseudogene pseudo OR52X1P olfactory receptor, family 52, subfamily X, member 1 pseudogene O - 20121230 -9606 79273 OR7E94P - - HGNC:14789 4 4q21.21 olfactory receptor, family 7, subfamily E, member 94 pseudogene pseudo OR7E94P olfactory receptor, family 7, subfamily E, member 94 pseudogene O - 20121230 -9606 79274 OR52L2P - OR52L2 HGNC:14788 11 11p15.4 olfactory receptor, family 52, subfamily L, member 2 pseudogene pseudo OR52L2P olfactory receptor, family 52, subfamily L, member 2 pseudogene O - 20121230 -9606 79282 OR7E93P - OR7E131P HGNC:14780 3 3q21.2 olfactory receptor, family 7, subfamily E, member 93 pseudogene pseudo OR7E93P olfactory receptor, family 7, subfamily E, member 93 pseudogene O - 20121230 -9606 79283 OR5P1P - - HGNC:14779 11 11p15.4 olfactory receptor, family 5, subfamily P, member 1 pseudogene pseudo OR5P1P olfactory receptor, family 5, subfamily P, member 1 pseudogene O - 20121230 -9606 79289 OR5H8P - OR3-7 HGNC:14773 3 3q12.1 olfactory receptor, family 5, subfamily H, member 8 pseudogene pseudo OR5H8P olfactory receptor, family 5, subfamily H, member 8 pseudogene O - 20121230 -9606 79290 OR13A1 - - HGNC:14772|Ensembl:ENSG00000256574|HPRD:14904|Vega:OTTHUMG00000018080 10 10q11.21 olfactory receptor, family 13, subfamily A, member 1 protein-coding OR13A1 olfactory receptor, family 13, subfamily A, member 1 O olfactory receptor 13A1|olfactory receptor OR10-3|seven transmembrane helix receptor 20121230 -9606 79291 OR5H7P - OR3-6 HGNC:14771 3 3q12.1 olfactory receptor, family 5, subfamily H, member 7 pseudogene pseudo OR5H7P olfactory receptor, family 5, subfamily H, member 7 pseudogene O - 20121230 -9606 79294 OR4C7P - - HGNC:14768 11 11p11.12 olfactory receptor, family 4, subfamily C, member 7 pseudogene pseudo OR4C7P olfactory receptor, family 4, subfamily C, member 7 pseudogene O - 20121230 -9606 79295 OR5H6 - OR3-11 HGNC:14767|Ensembl:ENSG00000230301|HPRD:17761|Vega:OTTHUMG00000160078 3 3q12.1 olfactory receptor, family 5, subfamily H, member 6 protein-coding OR5H6 olfactory receptor, family 5, subfamily H, member 6 O olfactory receptor 5H6|olfactory receptor OR3-11 20121230 -9606 79296 OR52E1 - OR52E1P HGNC:14766 11 11p15.4 olfactory receptor, family 52, subfamily E, member 1 (gene/pseudogene) pseudo OR52E1 olfactory receptor, family 52, subfamily E, member 1 (gene/pseudogene) O - 20121230 -9606 79297 OR5H5P - OR3-3 HGNC:14765 3 3q12.1 olfactory receptor, family 5, subfamily H, member 5 pseudogene pseudo OR5H5P olfactory receptor, family 5, subfamily H, member 5 pseudogene O - 20121230 -9606 79299 OR5H4P - OR3-5 HGNC:14763 3 3q12.1 olfactory receptor, family 5, subfamily H, member 4 pseudogene pseudo OR5H4P olfactory receptor, family 5, subfamily H, member 4 pseudogene O - 20121230 -9606 79300 OR51P1P - OR51P2P HGNC:14762 11 11p15.4 olfactory receptor, family 51, subfamily P, member 1 pseudogene pseudo OR51P1P olfactory receptor, family 51, subfamily P, member 1 pseudogene O - 20121230 -9606 79301 OR9L1P - OR9L2P HGNC:14761 11 11q12.1 olfactory receptor, family 9, subfamily L, member 1 pseudogene pseudo OR9L1P olfactory receptor, family 9, subfamily L, member 1 pseudogene O - 20121230 -9606 79302 OR52J1P - - HGNC:14760 11 11p15.4 olfactory receptor, family 52, subfamily J, member 1 pseudogene pseudo OR52J1P olfactory receptor, family 52, subfamily J, member 1 pseudogene O - 20121230 -9606 79306 OR4K7P - OR4K10P HGNC:14756 18 18p11.21 olfactory receptor, family 4, subfamily K, member 7 pseudogene pseudo OR4K7P olfactory receptor, family 4, subfamily K, member 7 pseudogene O - 20121230 -9606 79308 OR4P1P - OR4P2P HGNC:14754 11 11q11 olfactory receptor, family 4, subfamily P, member 1 pseudogene pseudo OR4P1P olfactory receptor, family 4, subfamily P, member 1 pseudogene O - 20121230 -9606 79309 OR5H3P - - HGNC:14753 3 3q12.1 olfactory receptor, family 5, subfamily H, member 3 pseudogene pseudo OR5H3P olfactory receptor, family 5, subfamily H, member 3 pseudogene O - 20121230 -9606 79310 OR5H2 - OR3-10 HGNC:14752|Ensembl:ENSG00000197938|HPRD:15042|Vega:OTTHUMG00000160080 3 3q12.1 olfactory receptor, family 5, subfamily H, member 2 protein-coding OR5H2 olfactory receptor, family 5, subfamily H, member 2 O olfactory receptor 5H2|olfactory receptor OR3-10 20121230 -9606 79312 OR1AA1P - - HGNC:14750 X Xq26.2 olfactory receptor, family 1, subfamily AA, member 1 pseudogene pseudo OR1AA1P olfactory receptor, family 1, subfamily AA, member 1 pseudogene O - 20121230 -9606 79313 OR2AD1P - OR2AD1|hs6M1-8P HGNC:14749 6 6p22.1 olfactory receptor, family 2, subfamily AD, member 1 pseudogene pseudo OR2AD1P olfactory receptor, family 2, subfamily AD, member 1 pseudogene O - 20121230 -9606 79314 OR4K6P - - HGNC:14748 14 14q11.2 olfactory receptor, family 4, subfamily K, member 6 pseudogene pseudo OR4K6P olfactory receptor, family 4, subfamily K, member 6 pseudogene O - 20121230 -9606 79315 OR7E91P - - HGNC:14747 2 2p13.3 olfactory receptor, family 7, subfamily E, member 91 pseudogene pseudo OR7E91P olfactory receptor, family 7, subfamily E, member 91 pseudogene O - 20121230 -9606 79316 OR8B9P - - HGNC:14746 11 11q24.2 olfactory receptor, family 8, subfamily B, member 9 pseudogene pseudo OR8B9P olfactory receptor, family 8, subfamily B, member 9 pseudogene O - 20121230 -9606 79317 OR4K5 - OR14-16 HGNC:14745|Ensembl:ENSG00000176281|HPRD:14981|Vega:OTTHUMG00000170627 14 14q11.2 olfactory receptor, family 4, subfamily K, member 5 protein-coding OR4K5 olfactory receptor, family 4, subfamily K, member 5 O olfactory receptor 4K5|olfactory receptor OR14-16 20121230 -9606 79318 OR4K4P - - HGNC:14744 14 14q11.2 olfactory receptor, family 4, subfamily K, member 4 pseudogene pseudo OR4K4P olfactory receptor, family 4, subfamily K, member 4 pseudogene O - 20121230 -9606 79321 OR6M3P - - HGNC:14741 11 11q24.1 olfactory receptor, family 6, subfamily M, member 3 pseudogene pseudo OR6M3P olfactory receptor, family 6, subfamily M, member 3 pseudogene O - 20121230 -9606 79322 OR4N1P - OR14-12|OR14-6 HGNC:14740 14 14q11.2 olfactory receptor, family 4, subfamily N, member 1 pseudogene pseudo OR4N1P olfactory receptor, family 4, subfamily N, member 1 pseudogene O - 20121230 -9606 79323 OR6E1P - - HGNC:14739 14 14q11.2 olfactory receptor, family 6, subfamily E, member 1 pseudogene pseudo OR6E1P olfactory receptor, family 6, subfamily E, member 1 pseudogene O - 20121230 -9606 79324 OR51G1 - OR11-29|OR51G3P HGNC:14738|Ensembl:ENSG00000176879|HPRD:14997|Vega:OTTHUMG00000066532 11 11p15.4 olfactory receptor, family 51, subfamily G, member 1 protein-coding OR51G1 olfactory receptor, family 51, subfamily G, member 1 O olfactory receptor 51G1|olfactory receptor 51G3|olfactory receptor OR11-29 20121230 -9606 79331 OR2AF1P - OR2AF2P HGNC:14719 X Xq26.2 olfactory receptor, family 2, subfamily AF, member 1 pseudogene pseudo OR2AF1P olfactory receptor, family 2, subfamily AF, member 1 pseudogene O - 20121230 -9606 79334 OR11H2 - C14orf15|OR11H2P|OR11H8P HGNC:14716 14 14q11.2 olfactory receptor, family 11, subfamily H, member 2 protein-coding OR11H2 olfactory receptor, family 11, subfamily H, member 2 O olfactory receptor 11H2|olfactory receptor OR14-1|olfactory receptor, family 11, subfamily H, member 2 pseudogene|olfactory receptor, family 11, subfamily H, member 8 pseudogene|seven transmembrane helix receptor 20121230 -9606 79336 OR5AH1P - - HGNC:14714 19 19q13.43 olfactory receptor, family 5, subfamily AH, member 1 pseudogene pseudo OR5AH1P olfactory receptor, family 5, subfamily AH, member 1 pseudogene O - 20121230 -9606 79339 OR51B4 - HOR5'Beta1 HGNC:14708|Ensembl:ENSG00000183251|HPRD:17735|Vega:OTTHUMG00000066665 11 11p15 olfactory receptor, family 51, subfamily B, member 4 protein-coding OR51B4 olfactory receptor, family 51, subfamily B, member 4 O odorant receptor HOR5'beta1|olfactory receptor 51B4 20121230 -9606 79342 OR51B3P - - HGNC:14706 11 11p15.4 olfactory receptor, family 51, subfamily B, member 3 pseudogene pseudo OR51B3P olfactory receptor, family 51, subfamily B, member 3 pseudogene O - 20121230 -9606 79345 OR51B2 - HOR5'Beta3|OR51B1P HGNC:14703|Ensembl:ENSG00000184881|HPRD:17734|Vega:OTTHUMG00000066682 11 11p15 olfactory receptor, family 51, subfamily B, member 2 protein-coding OR51B2 olfactory receptor, family 51, subfamily B, member 2 O odorant receptor HOR5'beta3|olfactory receptor 51B1|olfactory receptor 51B2 20121230 -9606 79346 OR4C5 - OR4C5P|OR4C5Q HGNC:14702 11 11p11.2 olfactory receptor, family 4, subfamily C, member 5 pseudo OR4C5 olfactory receptor, family 4, subfamily C, member 5 O - 20121230 -9606 79363 RSG1 RP4-733M16.4 C1orf89 HGNC:28127|Ensembl:ENSG00000132881|HPRD:14399|Vega:OTTHUMG00000002214 1 1p36.13 REM2 and RAB-like small GTPase 1 protein-coding RSG1 REM2 and RAB-like small GTPase 1 O REM2- and Rab-like small GTPase 1|Rem/Rab-Similar GTPase 1|miro domain-containing protein C1orf89 20121230 -9606 79364 ZXDC UNQ2790 ZXDL HGNC:28160|Ensembl:ENSG00000070476|HPRD:14420|Vega:OTTHUMG00000162754 3 3q21.3 ZXD family zinc finger C protein-coding ZXDC ZXD family zinc finger C O SERH2790|ZXD-like zinc finger protein|zinc finger protein ZXDC 20121230 -9606 79365 BHLHE41 - BHLHB3|DEC2|SHARP1|hDEC2 HGNC:16617|MIM:606200|Ensembl:ENSG00000123095|HPRD:16204|Vega:OTTHUMG00000169174 12 12p12.1 basic helix-loop-helix family, member e41 protein-coding BHLHE41 basic helix-loop-helix family, member e41 O basic helix-loop-helix domain containing, class B, 3|class E basic helix-loop-helix protein 41|differentially expressed in chondrocytes 2|differentially expressed in chondrocytes protein 2|enhancer-of-split and hairy-related protein 1 20121230 -9606 79366 HMGN5 RP11-196G4.1 NBP-45|NSBP1 HGNC:8013|MIM:300385|Ensembl:ENSG00000198157|HPRD:02310|Vega:OTTHUMG00000021911 X Xq13.3 high mobility group nucleosome binding domain 5 protein-coding HMGN5 high mobility group nucleosome binding domain 5 O high mobility group nucleosome-binding domain-containing protein 5|high-mobility group nucleosome binding domain 5|nucleosomal binding protein 1|nucleosome-binding protein 1 20121230 -9606 79368 FCRL2 RP11-367J7.6 CD307b|FCRH2|IFGP4|IRTA4|SPAP1|SPAP1A|SPAP1B|SPAP1C HGNC:14875|MIM:606509|Ensembl:ENSG00000132704|HPRD:07351|Vega:OTTHUMG00000019399 1 1q21 Fc receptor-like 2 protein-coding FCRL2 Fc receptor-like 2 O Fc receptor-like protein 2|IFGP family protein 4|SH2 domain containing phosphatase anchor protein 1|SH2 domain-containing phosphatase anchor protein 1|fc receptor homolog 2|fcR-like protein 2|immune receptor translocation-associated protein 4|immunoglobulin receptor translocation-associated protein 4|immunoglobulin superfamily Fc receptor, gp42 20121230 -9606 79369 B3GNT4 UNQ1898/PRO4344 B3GN-T4|beta3Gn-T4 HGNC:15683|MIM:605864|Ensembl:ENSG00000176383|HPRD:12058|Vega:OTTHUMG00000168917 12 12q24 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 protein-coding B3GNT4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 O BGnT-4|beta-1,3-Gn-T4|beta-1,3-N-acetylglucosaminyltransferase 4|beta-1,3-N-acetylglucosaminyltransferase bGn-T4 20121230 -9606 79370 BCL2L14 - BCLG HGNC:16657|MIM:606126|Ensembl:ENSG00000121380|HPRD:05841|Vega:OTTHUMG00000159528 12 12p13-p12 BCL2-like 14 (apoptosis facilitator) protein-coding BCL2L14 BCL2-like 14 (apoptosis facilitator) O apoptosis facilitator Bcl-2-like protein 14|apoptosis regulator BCL-G|bcl2-L-14 20121230 -9606 79400 NOX5 - - HGNC:14874|MIM:606572|Ensembl:ENSG00000255346|HPRD:07359|Vega:OTTHUMG00000133320 15 15q23 NADPH oxidase, EF-hand calcium binding domain 5 protein-coding NOX5 NADPH oxidase, EF-hand calcium binding domain 5 O NADPH oxidase 5 20121230 -9606 79411 GLB1L UNQ229/PRO262 - HGNC:28129|Ensembl:ENSG00000163521|HPRD:11004|Vega:OTTHUMG00000133133 2 2q35 galactosidase, beta 1-like protein-coding GLB1L galactosidase, beta 1-like O beta-galactosidase-1-like protein 20121230 -9606 79412 KREMEN2 - KRM2 HGNC:18797|MIM:609899|Ensembl:ENSG00000131650|HPRD:13933|Vega:OTTHUMG00000128976 16 16p13.3 kringle containing transmembrane protein 2 protein-coding KREMEN2 kringle containing transmembrane protein 2 O dickkopf receptor 2|kremen protein 2|kringle domain-containing transmembrane protein 2|kringle-containing protein marking the eye and the nose 20121230 -9606 79413 ZBED2 - - HGNC:20710|Ensembl:ENSG00000177494|HPRD:15686|Vega:OTTHUMG00000074061 3 3q13.2 zinc finger, BED-type containing 2 protein-coding ZBED2 zinc finger, BED-type containing 2 O zinc finger BED domain-containing protein 2|zinc finger, BED domain containing 2 20121230 -9606 79414 LRFN3 UNQ5865/PRO34192 FIGLER1|SALM4 HGNC:28370|MIM:612809|Ensembl:ENSG00000126243|HPRD:14309|Vega:OTTHUMG00000181740 19 19q13.12 leucine rich repeat and fibronectin type III domain containing 3 protein-coding LRFN3 leucine rich repeat and fibronectin type III domain containing 3 O fibronectin type III, immunoglobulin and leucine rich repeat domains 1|leucine-rich repeat and fibronectin type-III domain-containing protein 3|synaptic adhesion-like molecule 4 20121230 -9606 79415 C17orf62 - - HGNC:28672|Ensembl:ENSG00000178927|HPRD:14630|Vega:OTTHUMG00000178770 17 17q25.3 chromosome 17 open reading frame 62 protein-coding C17orf62 chromosome 17 open reading frame 62 O uncharacterized protein C17orf62 20121230 -9606 79424 CYP3AP2 - CYP3A5P2 - 7 7q21.3-q22.1 cytochrome P450, family 3, subfamily A, polypeptide 5 pseudogene 2 pseudo - - - - 20121230 -9606 79441 HAUS3 - C4orf15|IT1|dgt3 HGNC:28719|MIM:613430|Ensembl:ENSG00000214367|HPRD:10784|Vega:OTTHUMG00000159805 4 4p16.3 HAUS augmin-like complex, subunit 3 protein-coding HAUS3 HAUS augmin-like complex, subunit 3 O HAUS augmin-like complex subunit 3 20121230 -9606 79442 LRRC2 - - HGNC:14676|MIM:607180|Ensembl:ENSG00000163827|HPRD:06213|Vega:OTTHUMG00000133479 3 3p21.31 leucine rich repeat containing 2 protein-coding LRRC2 leucine rich repeat containing 2 O leucine-rich repeat-containing protein 2 20121230 -9606 79443 FYCO1 - CATC2|RUFY3|ZFYVE7 HGNC:14673|MIM:607182|Ensembl:ENSG00000163820|HPRD:06215|Vega:OTTHUMG00000133447 3 3p21.31 FYVE and coiled-coil domain containing 1 protein-coding FYCO1 FYVE and coiled-coil domain containing 1 O FYVE and coiled-coil domain-containing protein 1|RUN and FYVE domain containing 3|zinc finger FYVE domain-containing protein 7 20121230 -9606 79444 BIRC7 RP11-261N11.7 KIAP|LIVIN|ML-IAP|MLIAP|RNF50 HGNC:13702|MIM:605737|Ensembl:ENSG00000101197|HPRD:05761|Vega:OTTHUMG00000032957 20 20q13.3 baculoviral IAP repeat containing 7 protein-coding BIRC7 baculoviral IAP repeat containing 7 O RING finger protein 50|baculoviral IAP repeat-containing protein 7|kidney inhibitor of apoptosis protein|livin inhibitor of apoptosis|melanoma inhibitor of apoptosis protein 20121230 -9606 79446 WDR25 - C14orf67 HGNC:21064|Ensembl:ENSG00000176473|HPRD:14649|Vega:OTTHUMG00000171585 14 14q32.2 WD repeat domain 25 protein-coding WDR25 WD repeat domain 25 O WD repeat-containing protein 25 20121230 -9606 79447 PAGR1 - C16orf53|GAS|PA1 HGNC:28707|MIM:612033|Ensembl:ENSG00000185928|HPRD:14647|Vega:OTTHUMG00000177143 16 16p11.2 PAXIP1 associated glutamate-rich protein 1 protein-coding PAGR1 PAXIP1 associated glutamate-rich protein 1 O PAXIP1-associated protein 1|PTIP-associated 1 protein|PTIP-associated protein 1|glutamate-rich coactivator associated with SRC1|glutamate-rich coactivator interacting with SRC1/NCOA1 20121230 -9606 79465 ULBP3 RP11-472G23.5 RAET1N HGNC:14895|MIM:605699|Ensembl:ENSG00000131019|HPRD:16144|Vega:OTTHUMG00000015811 6 6q25 UL16 binding protein 3 protein-coding ULBP3 UL16 binding protein 3 O ALCAN-gamma|N2DL-3|NKG2D ligand 3|NKG2DL3|UL16-binding protein 3|retinoic acid early transcript 1N 20121230 -9606 79469 DLEU2L - BCMSUNL HGNC:13225 1 1p31-p22 deleted in lymphocytic leukemia 2-like pseudo DLEU2L deleted in lymphocytic leukemia 2-like O - 20121230 -9606 79470 OR51J1 - OR51J1P|OR51J2 HGNC:14856 11 11p15.4 olfactory receptor, family 51, subfamily J, member 1 (gene/pseudogene) pseudo OR51J1 olfactory receptor, family 51, subfamily J, member 1 (gene/pseudogene) O - 20121230 -9606 79473 OR52N1 - OR11-61 HGNC:14853|Ensembl:ENSG00000181001|HPRD:15021|Vega:OTTHUMG00000168800 11 11p15.4 olfactory receptor, family 52, subfamily N, member 1 protein-coding OR52N1 olfactory receptor, family 52, subfamily N, member 1 O olfactory receptor 52N1|olfactory receptor OR11-61 20121230 -9606 79476 OR5AL2P - - HGNC:14850 11 11q12.1 olfactory receptor, family 5, subfamily AL, member 2 pseudogene pseudo OR5AL2P olfactory receptor, family 5, subfamily AL, member 2 pseudogene O - 20121230 -9606 79482 OR5AL1 - OR5AL1P HGNC:14844 11 11q12.1 olfactory receptor, family 5, subfamily AL, member 1 (gene/pseudogene) pseudo OR5AL1 olfactory receptor, family 5, subfamily AL, member 1 (gene/pseudogene) O - 20121230 -9606 79483 OR5BD1P - - HGNC:14843 11 11q12.1 olfactory receptor, family 5, subfamily BD, member 1 pseudogene pseudo OR5BD1P olfactory receptor, family 5, subfamily BD, member 1 pseudogene O - 20121230 -9606 79488 OR10D5P - - HGNC:14838 11 11q24.2 olfactory receptor, family 10, subfamily D, member 5 pseudogene pseudo OR10D5P olfactory receptor, family 10, subfamily D, member 5 pseudogene O - 20121230 -9606 79490 OR10G6 - OR10G6P|OR10G6Q HGNC:14836 11 11q24.1 olfactory receptor, family 10, subfamily G, member 6 pseudo OR10G6 olfactory receptor, family 10, subfamily G, member 6 O - 20121230 -9606 79491 OR5BM1P - - HGNC:14835 3 3q11.2 olfactory receptor, family 5, subfamily BM, member 1 pseudogene pseudo OR5BM1P olfactory receptor, family 5, subfamily BM, member 1 pseudogene O - 20121230 -9606 79492 OR7E97P - - HGNC:14834 3 3q21.2 olfactory receptor, family 7, subfamily E, member 97 pseudogene pseudo OR7E97P olfactory receptor, family 7, subfamily E, member 97 pseudogene O - 20121230 -9606 79494 OR8K2P - - HGNC:14832 11 11q12.1 olfactory receptor, family 8, subfamily K, member 2 pseudogene pseudo OR8K2P olfactory receptor, family 8, subfamily K, member 2 pseudogene O - 20121230 -9606 79498 OR8I1P - - HGNC:14828 11 11q12.1 olfactory receptor, family 8, subfamily I, member 1 pseudogene pseudo OR8I1P olfactory receptor, family 8, subfamily I, member 1 pseudogene O - 20121230 -9606 79499 OR7L1P - - HGNC:14827 X Xq26.2 olfactory receptor, family 7, subfamily L, member 1 pseudogene pseudo OR7L1P olfactory receptor, family 7, subfamily L, member 1 pseudogene O - 20121230 -9606 79501 OR4F5 - - HGNC:14825|HPRD:14974 1 1p36.33 olfactory receptor, family 4, subfamily F, member 5 protein-coding OR4F5 olfactory receptor, family 4, subfamily F, member 5 O olfactory receptor 4F5 20121230 -9606 79504 OR4G4P - - HGNC:14822 1 1p36.33 olfactory receptor, family 4, subfamily G, member 4 pseudogene pseudo OR4G4P olfactory receptor, family 4, subfamily G, member 4 pseudogene O - 20121230 -9606 79508 OR5M7P - - HGNC:14818 11 11q12.1 olfactory receptor, family 5, subfamily M, member 7 pseudogene pseudo OR5M7P olfactory receptor, family 5, subfamily M, member 7 pseudogene O - 20121230 -9606 79512 OR5M6P - - HGNC:14814 11 11q12.1 olfactory receptor, family 5, subfamily M, member 6 pseudogene pseudo OR5M6P olfactory receptor, family 5, subfamily M, member 6 pseudogene O - 20121230 -9606 79513 OR10R1P - OR1-10 HGNC:14813 1 1q23.1 olfactory receptor, family 10, subfamily R, member 1 pseudogene pseudo OR10R1P olfactory receptor, family 10, subfamily R, member 1 pseudogene O - 20121230 -9606 79514 OR10T1P - - HGNC:14812 1 1q23.1 olfactory receptor, family 10, subfamily T, member 1 pseudogene pseudo OR10T1P olfactory receptor, family 10, subfamily T, member 1 pseudogene O - 20121230 -9606 79515 OR10G5P - - HGNC:14811 11 11q24.1 olfactory receptor, family 10, subfamily G, member 5 pseudogene pseudo OR10G5P olfactory receptor, family 10, subfamily G, member 5 pseudogene O - 20121230 -9606 79518 OR5M4P - - HGNC:14808 11 11q12.1 olfactory receptor, family 5, subfamily M, member 4 pseudogene pseudo OR5M4P olfactory receptor, family 5, subfamily M, member 4 pseudogene O - 20121230 -9606 79521 OR52S1P - - HGNC:14805 11 11p15.4 olfactory receptor, family 52, subfamily S, member 1 pseudogene pseudo OR52S1P olfactory receptor, family 52, subfamily S, member 1 pseudogene O - 20121230 -9606 79523 OR5M2P - OR11-193 HGNC:14803 11 11q12.1 olfactory receptor, family 5, subfamily M, member 2 pseudogene pseudo OR5M2P olfactory receptor, family 5, subfamily M, member 2 pseudogene O - 20121230 -9606 79525 OR51A5P - - HGNC:14801 11 11p15.4 olfactory receptor, family 51, subfamily A, member 5 pseudogene pseudo OR51A5P olfactory receptor, family 51, subfamily A, member 5 pseudogene O - 20121230 -9606 79526 OR4C10P - - HGNC:14800 11 11p11.2 olfactory receptor, family 4, subfamily C, member 10 pseudogene pseudo OR4C10P olfactory receptor, family 4, subfamily C, member 10 pseudogene O - 20121230 -9606 79528 OR4R1P - - HGNC:14798 11 11p11.2 olfactory receptor, family 4, subfamily R, member 1 pseudogene pseudo OR4R1P olfactory receptor, family 4, subfamily R, member 1 pseudogene O - 20121230 -9606 79529 OR52J2P - OR52J4P HGNC:14797 11 11p15.4 olfactory receptor, family 52, subfamily J, member 2 pseudogene pseudo OR52J2P olfactory receptor, family 52, subfamily J, member 2 pseudogene O - 20121230 -9606 79530 OR4C9P - - HGNC:14796 11 11p11.2 olfactory receptor, family 4, subfamily C, member 9 pseudogene pseudo OR4C9P olfactory receptor, family 4, subfamily C, member 9 pseudogene O - 20121230 -9606 79532 OR51A3P - - HGNC:14794 11 11p15.4 olfactory receptor, family 51, subfamily A, member 3 pseudogene pseudo OR51A3P olfactory receptor, family 51, subfamily A, member 3 pseudogene O - 20121230 -9606 79533 OR52E3P - - HGNC:14793 11 11p15.4 olfactory receptor, family 52, subfamily E, member 3 pseudogene pseudo OR52E3P olfactory receptor, family 52, subfamily E, member 3 pseudogene O - 20121230 -9606 79534 OR4V1P - - HGNC:14736 11 11q11 olfactory receptor, family 4, subfamily V, member 1 pseudogene pseudo OR4V1P olfactory receptor, family 4, subfamily V, member 1 pseudogene O - 20121230 -9606 79537 OR7E90P - OR7E123P|OST705 HGNC:14733 2 2q24.1 olfactory receptor, family 7, subfamily E, member 90 pseudogene pseudo OR7E90P olfactory receptor, family 7, subfamily E, member 90 pseudogene O - 20121230 -9606 79538 OR13I1P - OR13I2P HGNC:14732 9 9q31.1 olfactory receptor, family 13, subfamily I, member 1 pseudogene pseudo OR13I1P olfactory receptor, family 13, subfamily I, member 1 pseudogene O - 20121230 -9606 79540 OR7E89P - - HGNC:14730 2 2q24.1 olfactory receptor, family 7, subfamily E, member 89 pseudogene pseudo OR7E89P olfactory receptor, family 7, subfamily E, member 89 pseudogene O - 20121230 -9606 79541 OR2A4 - OR2A10 HGNC:14729|Ensembl:ENSG00000180658|HPRD:17692|Vega:OTTHUMG00000016316 6 6q23 olfactory receptor, family 2, subfamily A, member 4 protein-coding OR2A4 olfactory receptor, family 2, subfamily A, member 4 O olfactory receptor 2A10|olfactory receptor 2A4|olfactory receptor OR6-37|olfactory receptor, family 2, subfamily A, member 10 20121230 -9606 79544 OR4K1 - OR14-19 HGNC:14726|Ensembl:ENSG00000155249|HPRD:14975|Vega:OTTHUMG00000170633 14 14q11.2 olfactory receptor, family 4, subfamily K, member 1 protein-coding OR4K1 olfactory receptor, family 4, subfamily K, member 1 O olfactory receptor 4K1|olfactory receptor OR14-19 20121230 -9606 79546 OR6M2P - - HGNC:14713 11 11q24.1 olfactory receptor, family 6, subfamily M, member 2 pseudogene pseudo OR6M2P olfactory receptor, family 6, subfamily M, member 2 pseudogene O - 20121230 -9606 79547 OR2AL1P - - HGNC:14712 11 11q22.3 olfactory receptor, family 2, subfamily AL, member 1 pseudogene pseudo OR2AL1P olfactory receptor, family 2, subfamily AL, member 1 pseudogene O - 20121230 -9606 79549 OR6J1 - OR6J1P|OR6J2 HGNC:14707 14 14q11.2 olfactory receptor, family 6, subfamily J, member 1 (gene/pseudogene) pseudo OR6J1 olfactory receptor, family 6, subfamily J, member 1 (gene/pseudogene) O - 20121230 -9606 79550 OR4C4P - OR4C17|OR4C17P|OR4C47P HGNC:14700 11 11q12.1 olfactory receptor, family 4, subfamily C, member 4 pseudogene pseudo OR4C4P olfactory receptor, family 4, subfamily C, member 4 pseudogene O - 20121230 -9606 79567 FAM65A - - HGNC:25836|Ensembl:ENSG00000039523|HPRD:08586|Vega:OTTHUMG00000137536 16 16q22.1 family with sequence similarity 65, member A protein-coding FAM65A family with sequence similarity 65, member A O protein FAM65A 20121230 -9606 79568 C2orf47 - - HGNC:26198|Ensembl:ENSG00000162972|HPRD:07994|Vega:OTTHUMG00000132771 2 2q33.1 chromosome 2 open reading frame 47 protein-coding C2orf47 chromosome 2 open reading frame 47 O uncharacterized protein C2orf47, mitochondrial 20121230 -9606 79570 NKAIN1 - FAM77C HGNC:25743|MIM:612871|Ensembl:ENSG00000084628|HPRD:07786|Vega:OTTHUMG00000003788 1 1p35.2 Na+/K+ transporting ATPase interacting 1 protein-coding NKAIN1 Na+/K+ transporting ATPase interacting 1 O Na(+)/K(+)-transporting ATPase subunit beta-1-interacting protein 1|family with sequence similarity 77, member C|sodium/potassium-transporting ATPase subunit beta-1-interacting protein 1 20121230 -9606 79571 GCC1 - GCC1P|GCC88 HGNC:19095|MIM:607418|Ensembl:ENSG00000179562|HPRD:07599|Vega:OTTHUMG00000023590 7 7q32.1 GRIP and coiled-coil domain containing 1 protein-coding GCC1 GRIP and coiled-coil domain containing 1 O GRIP and coiled-coil domain-containing protein 1|golgi coiled-coil 1|golgi coiled-coil protein 1|peripheral membrane Golgi protein 20121230 -9606 79572 ATP13A3 - AFURS1 HGNC:24113|MIM:610232|Ensembl:ENSG00000133657|HPRD:10636|Vega:OTTHUMG00000156034 3 3q29 ATPase type 13A3 protein-coding ATP13A3 ATPase type 13A3 O ATPase family homolog up-regulated in senescence cells 1|probable cation-transporting ATPase 13A3 20121230 -9606 79573 TTC13 PSEC0076 - HGNC:26204|Ensembl:ENSG00000143643|HPRD:15578|Vega:OTTHUMG00000037788 1 1q42.2 tetratricopeptide repeat domain 13 protein-coding TTC13 tetratricopeptide repeat domain 13 O TPR repeat protein 13|tetratricopeptide repeat protein 13 20121230 -9606 79574 EPS8L3 - EPS8R3 HGNC:21297|MIM:614989|Ensembl:ENSG00000198758|HPRD:13277|Vega:OTTHUMG00000011651 1 1p13.3 EPS8-like 3 protein-coding EPS8L3 EPS8-like 3 O EPS8-like protein 3|EPS8-related protein 3|epidermal growth factor receptor kinase substrate 8-like protein 3|epidermal growth factor receptor pathway substrate 8-related protein 3 20121230 -9606 79575 ABHD8 - - HGNC:23759|Ensembl:ENSG00000127220|HPRD:12409 19 19p13.11 abhydrolase domain containing 8 protein-coding ABHD8 abhydrolase domain containing 8 O abhydrolase domain-containing protein 8 20121230 -9606 79576 NKAP - - HGNC:29873|MIM:300766|Ensembl:ENSG00000101882|HPRD:06666|Vega:OTTHUMG00000022284 X Xq24 NFKB activating protein protein-coding NKAP NFKB activating protein O NF-kappa-B-activating protein|NF-kappaB activating protein 20121230 -9606 79577 CDC73 - C1orf28|HPTJT|HRPT2|HYX HGNC:16783|MIM:607393|Ensembl:ENSG00000134371|HPRD:09581|Vega:OTTHUMG00000035676 1 1q25 cell division cycle 73, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) protein-coding CDC73 cell division cycle 73, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) O cell division cycle protein 73 homolog|hyperparathyroidism 2 protein|parafibromin 20121230 -9606 79581 SLC52A2 - BVVLS2|D15Ertd747e|GPCR41|GPR172A|PAR1|RFT3|RFVT2|hRFT3 HGNC:30224|MIM:607882|Ensembl:ENSG00000185803|HPRD:07431|Vega:OTTHUMG00000165168 8 8q24.3 solute carrier family 52, riboflavin transporter, member 2 protein-coding SLC52A2 solute carrier family 52, riboflavin transporter, member 2 O G protein-coupled receptor 172A|PERV-A receptor 1|porcine endogenous retrovirus A receptor 1|putative G-protein coupled receptor GPCR41|riboflavin transporter 3 20121230 -9606 79582 SPAG16 - PF20|WDR29 HGNC:23225|MIM:612173|Ensembl:ENSG00000144451|HPRD:18089|Vega:OTTHUMG00000133015 2 2q34 sperm associated antigen 16 protein-coding SPAG16 sperm associated antigen 16 O WD repeat domain 29|pf20 protein homolog|sperm-associated WD repeat protein|sperm-associated antigen 16 protein 20121230 -9606 79583 TMEM231 UNQ870/PRO1886 ALYE870|JBTS20|PRO1886 HGNC:37234|MIM:614949|Ensembl:ENSG00000205084|Vega:OTTHUMG00000177132 16 16q23.1 transmembrane protein 231 protein-coding TMEM231 transmembrane protein 231 O - 20121230 -9606 79585 CORO7 - 0610011B16Rik|CRN7|POD1 HGNC:26161|MIM:611668|Ensembl:ENSG00000262246|HPRD:07975|Vega:OTTHUMG00000129465 16 16p13.3 coronin 7 protein-coding CORO7 coronin 7 O 70 kDa WD repeat tumor rejection antigen homolog|coronin-7 20121230 -9606 79586 CHPF UNQ651/PRO1281 CHSY2|CSS2 HGNC:24291|MIM:610405|Ensembl:ENSG00000123989|HPRD:10829|Vega:OTTHUMG00000058929 2 2q35 chondroitin polymerizing factor protein-coding CHPF chondroitin polymerizing factor O N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase II|N-acetylgalactosaminyltransferase 2|chondroitin glucuronyltransferase 2|chondroitin sulfate synthase 2|chondroitin-polymerizing factor|glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase II 20121230 -9606 79587 CARS2 OK/SW-cl.10 - HGNC:25695|MIM:612800|Ensembl:ENSG00000134905|HPRD:07763|Vega:OTTHUMG00000017347 13 13q34 cysteinyl-tRNA synthetase 2, mitochondrial (putative) protein-coding CARS2 cysteinyl-tRNA synthetase 2, mitochondrial (putative) O cysRS|cysteine tRNA ligase 2, mitochondrial (putative)|cysteine--tRNA ligase|probable cysteine--tRNA ligase, mitochondrial|probable cysteinyl-tRNA synthetase, mitochondrial 20121230 -9606 79589 RNF128 RP11-150F24.1 GRAIL HGNC:21153|MIM:300439|Ensembl:ENSG00000133135|HPRD:02340|Vega:OTTHUMG00000022151 X Xq22.3 ring finger protein 128, E3 ubiquitin protein ligase protein-coding RNF128 ring finger protein 128, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase RNF128|gene related to anergy in lymphocytes protein 20121230 -9606 79590 MRPL24 - L24mt|MRP-L18|MRP-L24 HGNC:14037|MIM:611836|Ensembl:ENSG00000143314|HPRD:14749|Vega:OTTHUMG00000041296 1 1q23.1 mitochondrial ribosomal protein L24 protein-coding MRPL24 mitochondrial ribosomal protein L24 O 39S ribosomal protein L24, mitochondrial 20121230 -9606 79591 C10orf76 RP11-190J1.9 - HGNC:25788|Ensembl:ENSG00000120029|HPRD:12588|Vega:OTTHUMG00000018943 10 10q24.32 chromosome 10 open reading frame 76 protein-coding C10orf76 chromosome 10 open reading frame 76 O UPF0668 protein C10orf76 20121230 -9606 79594 MUL1 - C1orf166|GIDE|MAPL|MULAN|RNF218|RP11-401M16.2 HGNC:25762|MIM:612037|Ensembl:ENSG00000090432|HPRD:07799|Vega:OTTHUMG00000002838 1 1p36.12 mitochondrial E3 ubiquitin protein ligase 1 protein-coding MUL1 mitochondrial E3 ubiquitin protein ligase 1 O E3 SUMO-protein ligase MUL1|E3 ubiquitin ligase|E3 ubiquitin-protein ligase MUL1|growth inhibition and death E3 ligase|mitochondria-anchored protein ligase|mitochondrial E3 ubiquitin ligase 1|mitochondrial ubiquitin ligase activator of NF-kB|mitochondrial ubiquitin ligase activator of NFKB 1|mitochondrial-anchored protein ligase|putative NF-kappa-B-activating protein 266|ring finger protein 218 20121230 -9606 79595 SAP130 - - HGNC:29813|MIM:609697|Ensembl:ENSG00000136715|HPRD:18015|Vega:OTTHUMG00000131571 2 2q14.3 Sin3A-associated protein, 130kDa protein-coding SAP130 Sin3A-associated protein, 130kDa O 130 kDa Sin3-associated polypeptide|Sin3-associated polypeptide p130|histone deacetylase complex subunit SAP130|mSin3A-associated protein 130 20121230 -9606 79596 RNF219 - C13orf7 HGNC:20308|Ensembl:ENSG00000152193|HPRD:12619|Vega:OTTHUMG00000017122 13 13q31.1 ring finger protein 219 protein-coding RNF219 ring finger protein 219 O RING finger protein 219 20121230 -9606 79598 CEP97 - 2810403B08Rik|LRRIQ2 HGNC:26244|Ensembl:ENSG00000182504|HPRD:08014|Vega:OTTHUMG00000159162 3 3q12.3 centrosomal protein 97kDa protein-coding CEP97 centrosomal protein 97kDa O centrosomal protein of 97 kDa|leucine-rich repeat and IQ domain-containing protein 2|leucine-rich repeats and IQ motif containing 2 20121230 -9606 79600 TCTN1 UNQ9369/PRO34160 JBTS13|TECT1 HGNC:26113|MIM:609863|Ensembl:ENSG00000204852|HPRD:08636|Vega:OTTHUMG00000150051 12 12q24.11 tectonic family member 1 protein-coding TCTN1 tectonic family member 1 O tectonic-1 20121230 -9606 79602 ADIPOR2 - ACDCR2|PAQR2 HGNC:24041|MIM:607946|Ensembl:ENSG00000006831|HPRD:06403|Vega:OTTHUMG00000130139 12 12p13.31 adiponectin receptor 2 protein-coding ADIPOR2 adiponectin receptor 2 O adiponectin receptor protein 2|progestin and adipoQ receptor family member II 20121230 -9606 79603 CERS4 - LASS4|Trh1 HGNC:23747|Ensembl:ENSG00000090661|HPRD:13962|Vega:OTTHUMG00000172570 19 19p13.2 ceramide synthase 4 protein-coding CERS4 ceramide synthase 4 O LAG1 homolog, ceramide synthase 4|LAG1 longevity assurance homolog 4 20121230 -9606 79605 PGBD5 - - HGNC:19405|Ensembl:ENSG00000177614|HPRD:10148|Vega:OTTHUMG00000037759 1 1q42.13 piggyBac transposable element derived 5 protein-coding PGBD5 piggyBac transposable element derived 5 O piggyBac transposable element-derived protein 5 20121230 -9606 79607 FAM118B - - HGNC:26110|Ensembl:ENSG00000197798|HPRD:07952|Vega:OTTHUMG00000165817 11 11q24.2 family with sequence similarity 118, member B protein-coding FAM118B family with sequence similarity 118, member B O protein FAM118B 20121230 -9606 79608 RIC3 UNQ720/PRO1385 AYST720|PRO1385 HGNC:30338|MIM:610509|Ensembl:ENSG00000166405|HPRD:17974|Vega:OTTHUMG00000165694 11 11p15.4 resistance to inhibitors of cholinesterase 3 homolog (C. elegans) protein-coding RIC3 resistance to inhibitors of cholinesterase 3 homolog (C. elegans) O protein RIC-3 20121230 -9606 79609 METTL21D - C14orf138 HGNC:20352|Ensembl:ENSG00000100483|HPRD:16605|Vega:OTTHUMG00000029531 14 14q21.3 methyltransferase like 21D protein-coding METTL21D methyltransferase like 21D O methyltransferase-like protein 21D 20121230 -9606 79611 ACSS3 - - HGNC:24723|MIM:614356|Ensembl:ENSG00000111058|HPRD:13385|Vega:OTTHUMG00000170179 12 12q21.31 acyl-CoA synthetase short-chain family member 3 protein-coding ACSS3 acyl-CoA synthetase short-chain family member 3 O AMP-binding enzyme, 33217|acyl-CoA synthetase short-chain family member 3, mitochondrial 20121230 -9606 79612 NAA16 RP11-396A22.1 NARG1L HGNC:26164|Ensembl:ENSG00000172766|HPRD:07977|Vega:OTTHUMG00000016791 13 13q14.11 N(alpha)-acetyltransferase 16, NatA auxiliary subunit protein-coding NAA16 N(alpha)-acetyltransferase 16, NatA auxiliary subunit O N-alpha-acetyltransferase 16, NatA auxiliary subunit|NARG1-like protein|NMDA receptor-regulated 1-like protein 20121230 -9606 79613 TANGO6 - TMCO7 HGNC:25749|Ensembl:ENSG00000103047|Vega:OTTHUMG00000176743 16 16q22.1 transport and golgi organization 6 homolog (Drosophila) protein-coding TANGO6 transport and golgi organization 6 homolog (Drosophila) O transmembrane and coiled-coil domain-containing protein 7|transmembrane and coiled-coil domains 7 20121230 -9606 79616 CCNJL - - HGNC:25876|Ensembl:ENSG00000135083|HPRD:07853|Vega:OTTHUMG00000130325 5 5q33.3 cyclin J-like protein-coding CCNJL cyclin J-like O cyclin-J-like protein 20121230 -9606 79618 HMBOX1 - HNF1LA|PBHNF HGNC:26137|Ensembl:ENSG00000147421|HPRD:07964|Vega:OTTHUMG00000172138 8 8p21.1 homeobox containing 1 protein-coding HMBOX1 homeobox containing 1 O homeobox-containing protein 1|homeobox-containing protein PBHNF 20121230 -9606 79621 RNASEH2B - AGS2|DLEU8 HGNC:25671|MIM:610326|Ensembl:ENSG00000136104|Vega:OTTHUMG00000016937 13 13q14.3 ribonuclease H2, subunit B protein-coding RNASEH2B ribonuclease H2, subunit B O Aicardi-Goutieres syndrome 2 protein|RNase H2 subunit B|deleted in lymphocytic leukemia 8|ribonuclease H2 subunit B|ribonuclease HI subunit B 20121230 -9606 79622 SNRNP25 Z69719.2-001 C16orf33 HGNC:14161|HPRD:12673 16 16p13.3 small nuclear ribonucleoprotein 25kDa (U11/U12) protein-coding SNRNP25 small nuclear ribonucleoprotein 25kDa (U11/U12) O U11/U12 small nuclear ribonucleoprotein 25 kDa protein|U11/U12 snRNP 25 kDa protein|U11/U12 snRNP 25K|minus-99 protein 20121230 -9606 79623 GALNT14 UNQ2434/PRO4994 GALNT15|GalNac-T10|GalNac-T14 HGNC:22946|MIM:608225|Ensembl:ENSG00000158089|HPRD:12194|Vega:OTTHUMG00000074077 2 2p23.1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 14 (GalNAc-T14) protein-coding GALNT14 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 14 (GalNAc-T14) O UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 14|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase T10|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase T14|polypeptide GalNAc transferase 14|polypeptide N-acetylgalactosaminyltransferase 14|polypeptide N-acetylgalactosaminyltransferase 15|pp-GaNTase 14|protein-UDP acetylgalactosaminyltransferase 14 20121230 -9606 79624 C6orf211 - - HGNC:17872|Ensembl:ENSG00000146476|HPRD:09854|Vega:OTTHUMG00000015838 6 6q25.1 chromosome 6 open reading frame 211 protein-coding C6orf211 chromosome 6 open reading frame 211 O UPF0364 protein C6orf211 20121230 -9606 79625 NDNF UNQ2748/PRO6487 C4orf31 HGNC:26256|Ensembl:ENSG00000173376|HPRD:08019|Vega:OTTHUMG00000132973 4 4q27 neuron-derived neurotrophic factor protein-coding NDNF neuron-derived neurotrophic factor O fibronectin type-III domain-containing protein C4orf31|protein NDNF 20121230 -9606 79626 TNFAIP8L2 RP11-68I18.4 TIPE2 HGNC:26277|MIM:612112|Ensembl:ENSG00000163154|HPRD:08029|Vega:OTTHUMG00000012259 1 1q21.3 tumor necrosis factor, alpha-induced protein 8-like 2 protein-coding TNFAIP8L2 tumor necrosis factor, alpha-induced protein 8-like 2 O TNF alpha-induced protein 8-like protein 2|TNFAIP8-like protein 2|inflammation factor 20|inflammation factor protein 20|tumor necrosis factor alpha-induced protein 8-like protein 2|tumor necrosis factor, alpha-induced protein 8-like protein 2 20121230 -9606 79627 OGFRL1 - dJ331H24.1 HGNC:21378|Ensembl:ENSG00000119900|HPRD:14875|Vega:OTTHUMG00000015000 6 6q13 opioid growth factor receptor-like 1 protein-coding OGFRL1 opioid growth factor receptor-like 1 O opioid growth factor receptor-like protein 1 20121230 -9606 79628 SH3TC2 PP12494 CMT4C|MNMN HGNC:29427|MIM:608206|Ensembl:ENSG00000169247|HPRD:10496|Vega:OTTHUMG00000129930 5 5q32 SH3 domain and tetratricopeptide repeats 2 protein-coding SH3TC2 SH3 domain and tetratricopeptide repeats 2 O SH3 domain and tetratricopeptide repeat-containing protein 2|SH3 domain and tetratricopeptide repeats-containing protein 2 20121230 -9606 79629 OCEL1 - FWP009|S863-9 HGNC:26221|Ensembl:ENSG00000099330|HPRD:08004 19 19p13.11 occludin/ELL domain containing 1 protein-coding OCEL1 occludin/ELL domain containing 1 O occludin/ELL domain-containing protein 1 20121230 -9606 79630 C1orf54 RP4-790G17.4 - HGNC:26258|Ensembl:ENSG00000118292|HPRD:08020|Vega:OTTHUMG00000012546 1 1q21.2 chromosome 1 open reading frame 54 protein-coding C1orf54 chromosome 1 open reading frame 54 O uncharacterized protein C1orf54 20121230 -9606 79631 EFTUD1 - FAM42A|HsT19294|RIA1 HGNC:25789|Ensembl:ENSG00000140598|HPRD:07812|Vega:OTTHUMG00000172573 15 15q25.2 elongation factor Tu GTP binding domain containing 1 protein-coding EFTUD1 elongation factor Tu GTP binding domain containing 1 O elongation factor Tu GTP-binding domain-containing protein 1|elongation factor-like 1|ribosome assembly 1 homolog 20121230 -9606 79632 FAM184A RP3-329L24.3 C6orf60 HGNC:20991|Ensembl:ENSG00000111879|HPRD:09856|Vega:OTTHUMG00000015471 6 6q22.31 family with sequence similarity 184, member A protein-coding FAM184A family with sequence similarity 184, member A O protein FAM184A 20121230 -9606 79633 FAT4 Nbla00548 CDHF14|CDHR11|FAT-J|FATJ|NBLA00548 HGNC:23109|MIM:612411|Ensembl:ENSG00000196159|HPRD:07637|Vega:OTTHUMG00000133100 4 4q28.1 FAT tumor suppressor homolog 4 (Drosophila) protein-coding FAT4 FAT tumor suppressor homolog 4 (Drosophila) O cadherin family member 14|cadherin-related family member 11|fat-like cadherin FATJ|fat-like cadherin protein FAT-J|hFat4|protocadherin Fat 4|putative protein product of Nbla00548 20121230 -9606 79634 SCRN3 - SES3 HGNC:30382|MIM:614967|Ensembl:ENSG00000144306|HPRD:18028|Vega:OTTHUMG00000132332 2 2q31.1 secernin 3 protein-coding SCRN3 secernin 3 O secernin-3 20121230 -9606 79635 CCDC121 hCG_1988995 - HGNC:25833|Ensembl:ENSG00000176714|HPRD:07834|Vega:OTTHUMG00000128427 2 2p23.3 coiled-coil domain containing 121 protein-coding CCDC121 coiled-coil domain containing 121 O coiled-coil domain-containing protein 121 20121230 -9606 79637 ARMC7 - - HGNC:26168|Ensembl:ENSG00000125449|HPRD:08649|Vega:OTTHUMG00000179345 17 17q25.1 armadillo repeat containing 7 protein-coding ARMC7 armadillo repeat containing 7 O armadillo repeat-containing protein 7 20121230 -9606 79639 TMEM53 RP4-678E16.2 NET4 HGNC:26186|Ensembl:ENSG00000126106|HPRD:07989|Vega:OTTHUMG00000007833 1 1p34.1 transmembrane protein 53 protein-coding TMEM53 transmembrane protein 53 O novel DUF829 domain-containing protein 20121230 -9606 79640 C22orf46 CTA-216E10.6 - HGNC:26294|Ensembl:ENSG00000184208|HPRD:08037|Vega:OTTHUMG00000151188 22 22q13.2 chromosome 22 open reading frame 46 protein-coding C22orf46 chromosome 22 open reading frame 46 O CTA-216E10.6|putative uncharacterized protein C22orf46|uncharacterized protein C22orf46 20121230 -9606 79641 ROGDI - KTZS HGNC:29478|MIM:614574|Ensembl:ENSG00000067836|HPRD:13388|Vega:OTTHUMG00000129479 16 16p13.3 rogdi homolog (Drosophila) protein-coding ROGDI rogdi homolog (Drosophila) O leucine zipper domain protein|protein rogdi homolog 20121230 -9606 79642 ARSJ UNQ372/PRO708 - HGNC:26286|MIM:610010|Ensembl:ENSG00000180801|HPRD:08034|Vega:OTTHUMG00000161067 4 4q26 arylsulfatase family, member J protein-coding ARSJ arylsulfatase family, member J O ASJ|arylsulfatase J 20121230 -9606 79643 CHMP6 - VPS20 HGNC:25675|MIM:610901|Ensembl:ENSG00000176108|HPRD:08564|Vega:OTTHUMG00000177645 17 17q25.3 charged multivesicular body protein 6 protein-coding CHMP6 charged multivesicular body protein 6 O chromatin modifying protein 6|chromatin-modifying protein 6|hVps20|vacuolar protein sorting-associated protein 20 20121230 -9606 79644 SRD5A3 - CDG1P|CDG1Q|KRIZI|SRD5A2L|SRD5A2L1 HGNC:25812|MIM:611715|Ensembl:ENSG00000128039|HPRD:07825|Vega:OTTHUMG00000128733 4 4q12 steroid 5 alpha-reductase 3 protein-coding SRD5A3 steroid 5 alpha-reductase 3 O 3-oxo-5-alpha-steroid 4-dehydrogenase 3|S5AR 3|SR type 3|probable polyprenol reductase 20121230 -9606 79645 EFCAB1 - - HGNC:25678|Ensembl:ENSG00000034239|HPRD:08565|Vega:OTTHUMG00000164203 8 8q11.21 EF-hand calcium binding domain 1 protein-coding EFCAB1 EF-hand calcium binding domain 1 O EF-hand calcium-binding domain-containing protein 1 20121230 -9606 79646 PANK3 - - HGNC:19365|MIM:606161|Ensembl:ENSG00000120137|HPRD:07312|Vega:OTTHUMG00000130410 5 5q34 pantothenate kinase 3 protein-coding PANK3 pantothenate kinase 3 O hPanK3|pantothenic acid kinase 3 20121230 -9606 79647 AKIRIN1 - C1orf108|RP11-781D11.2|STRF2 HGNC:25744|Ensembl:ENSG00000174574|HPRD:07787|Vega:OTTHUMG00000007496 1 1p34.3 akirin 1 protein-coding AKIRIN1 akirin 1 O akirin-1 20121230 -9606 79648 MCPH1 - BRIT1|MCT HGNC:6954|MIM:607117|Ensembl:ENSG00000147316|HPRD:06174|Vega:OTTHUMG00000163618 8 8p23.1 microcephalin 1 protein-coding MCPH1 microcephalin 1 O BRCT-repeat inhibitor of TERT expression 1|microcephalin 20121230 -9606 79649 MAP7D3 RP11-535K18.3 - HGNC:25742|Ensembl:ENSG00000129680|Vega:OTTHUMG00000022507 X Xq26.3 MAP7 domain containing 3 protein-coding MAP7D3 MAP7 domain containing 3 O MAP7 domain-containing protein 3 20121230 -9606 79650 USB1 - C16orf57|HVSL1|Mpn1|PN|hUsb1 HGNC:25792|MIM:613276|Ensembl:ENSG00000103005|HPRD:07815|Vega:OTTHUMG00000133456 16 16q21 U6 snRNA biogenesis 1 protein-coding USB1 U6 snRNA biogenesis 1 O HVSL motif containing 1|U six biogenesis 1|UPF0406 protein C16orf57|mutated in poikiloderma with neutropenia protein 1|putative U6 snRNA phosphodiesterase 20121230 -9606 79651 RHBDF2 - RHBDL5|RHBDL6|TOC HGNC:20788|MIM:614404|Ensembl:ENSG00000129667|HPRD:07987|Vega:OTTHUMG00000180180 17 17q25.1 rhomboid 5 homolog 2 (Drosophila) protein-coding RHBDF2 rhomboid 5 homolog 2 (Drosophila) O iRhom2|inactive rhomboid protein 2|rhomboid family member 2|rhomboid veinlet-like protein 5|rhomboid veinlet-like protein 6 20121230 -9606 79652 TMEM204 UNQ6509/PRO21434 C16orf30|CLP24 HGNC:14158|MIM:611002|Ensembl:ENSG00000131634|Vega:OTTHUMG00000176585 16 16p13.3 transmembrane protein 204 protein-coding TMEM204 transmembrane protein 204 O claudin-like protein 24 20121230 -9606 79654 HECTD3 - RP11-69J16.1 HGNC:26117|Ensembl:ENSG00000126107|HPRD:13383|Vega:OTTHUMG00000008587 1 1p34.1 HECT domain containing E3 ubiquitin protein ligase 3 protein-coding HECTD3 HECT domain containing E3 ubiquitin protein ligase 3 O E3 ubiquitin-protein ligase HECTD3 20121230 -9606 79656 BEND5 - C1orf165 HGNC:25668|Ensembl:ENSG00000162373|Vega:OTTHUMG00000008153 1 1p33 BEN domain containing 5 protein-coding BEND5 BEN domain containing 5 O BEN domain-containing protein 5 20121230 -9606 79657 RPAP3 - - HGNC:26151|MIM:611477|Ensembl:ENSG00000005175|HPRD:07970|Vega:OTTHUMG00000169668 12 12q13.11 RNA polymerase II associated protein 3 protein-coding RPAP3 RNA polymerase II associated protein 3 O RNA polymerase II-associated protein 3 20121230 -9606 79658 ARHGAP10 - GRAF2|PS-GAP|PSGAP HGNC:26099|MIM:609746|Ensembl:ENSG00000071205|HPRD:07949|Vega:OTTHUMG00000161460 4 4q31.23 Rho GTPase activating protein 10 protein-coding ARHGAP10 Rho GTPase activating protein 10 O GTPase regulator associated with focal adhesion kinase 2|graf-related protein 2|rho GTPase-activating protein 10|rho-type GTPase-activating protein 10 20121230 -9606 79659 DYNC2H1 - ATD3|DHC1b|DHC2|DNCH2|DYH1B|hdhc11 HGNC:2962|MIM:603297|Ensembl:ENSG00000187240|Vega:OTTHUMG00000165941 11 11q21-q22.1 dynein, cytoplasmic 2, heavy chain 1 protein-coding DYNC2H1 dynein, cytoplasmic 2, heavy chain 1 O cytoplasmic dynein 2 heavy chain 1|dynein cytoplasmic heavy chain 2|dynein heavy chain 11|dynein heavy chain isotype 1B|dynein heavy chain, isotype 1B|dynein, cytoplasmic, heavy polypeptide 2 20121230 -9606 79660 PPP1R3B - GL|PPP1R4|PTG HGNC:14942|MIM:610541|Ensembl:ENSG00000173281|HPRD:17894|Vega:OTTHUMG00000129329 8 8p23.1 protein phosphatase 1, regulatory subunit 3B protein-coding PPP1R3B protein phosphatase 1, regulatory subunit 3B O PP1 subunit R4|hepatic glycogen-targeting protein phosphatase 1 regulatory subunit GL|hepatic glycogen-targeting subunit, G(L)|protein phosphatase 1 regulatory subunit 3B|protein phosphatase 1 regulatory subunit 4|protein phosphatase 1, regulatory (inhibitor) subunit 3B 20121230 -9606 79661 NEIL1 - FPG1|NEI1|hFPG1 HGNC:18448|MIM:608844|Ensembl:ENSG00000140398|HPRD:12314|Vega:OTTHUMG00000142821 15 15q24.2 nei endonuclease VIII-like 1 (E. coli) protein-coding NEIL1 nei endonuclease VIII-like 1 (E. coli) O DNA glycosylase/AP lyase Neil1|DNA-(apurinic or apyrimidinic site) lyase Neil1|NEH1|endonuclease 8-like 1|endonuclease VIII|endonuclease VIII-like 1|nei homolog 1|nei-like protein 1 20121230 -9606 79663 HSPBAP1 - PASS1 HGNC:16389|MIM:608263|Ensembl:ENSG00000169087|HPRD:12197|Vega:OTTHUMG00000159550 3 3q21.1 HSPB (heat shock 27kDa) associated protein 1 protein-coding HSPBAP1 HSPB (heat shock 27kDa) associated protein 1 O 27 kDa heat shock protein-associated protein 1|HSPB1-associated protein 1|protein associating with small stress protein PASS1 20121230 -9606 79664 NARG2 UNQ3101/PRO10100 BRCC1 HGNC:29885|MIM:610835|Ensembl:ENSG00000128915|HPRD:17628|Vega:OTTHUMG00000132764 15 15q22.2 NMDA receptor regulated 2 protein-coding NARG2 NMDA receptor regulated 2 O NMDA receptor-regulated gene 2|NMDA receptor-regulated protein 2|breast cancer cell 1 20121230 -9606 79665 DHX40 ARG147 DDX40|PAD HGNC:18018|MIM:607570|Ensembl:ENSG00000108406|HPRD:06346|Vega:OTTHUMG00000179401 17 17q23.1 DEAH (Asp-Glu-Ala-His) box polypeptide 40 protein-coding DHX40 DEAH (Asp-Glu-Ala-His) box polypeptide 40 O DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 40 (RNA helicase)|DEAH box protein 40|probable ATP-dependent RNA helicase DHX40 20121230 -9606 79666 PLEKHF2 - PHAFIN2|ZFYVE18 HGNC:20757|Ensembl:ENSG00000175895|HPRD:15147|Vega:OTTHUMG00000164660 8 8q22.1 pleckstrin homology domain containing, family F (with FYVE domain) member 2 protein-coding PLEKHF2 pleckstrin homology domain containing, family F (with FYVE domain) member 2 O PH and FYVE domain-containing protein 2|PH domain-containing family F member 2|pleckstrin homology domain-containing family F member 2|zinc finger FYVE domain-containing protein 18 20121230 -9606 79667 FLJ13197 - - HPRD:07818 4 4p14 uncharacterized FLJ13197 miscRNA - - - - 20121230 -9606 79668 PARP8 - ARTD16|pART16 HGNC:26124|Ensembl:ENSG00000151883|HPRD:07960|Vega:OTTHUMG00000096969 5 5q11.1 poly (ADP-ribose) polymerase family, member 8 protein-coding PARP8 poly (ADP-ribose) polymerase family, member 8 O ADP-ribosyltransferase diphtheria toxin-like 16|poly [ADP-ribose] polymerase 8 20121230 -9606 79669 C3orf52 - TTMP HGNC:26255|MIM:611956|Ensembl:ENSG00000114529|HPRD:08018|Vega:OTTHUMG00000159230 3 3q13.2 chromosome 3 open reading frame 52 protein-coding C3orf52 chromosome 3 open reading frame 52 O TPA induced trans-membrane protein|TPA-induced transmembrane protein|novel endoplasmic reticulum transmembrane protein 20121230 -9606 79670 ZCCHC6 RP11-507D14.3 PAPD6 HGNC:25817|Ensembl:ENSG00000083223|HPRD:11697|Vega:OTTHUMG00000020137 9 9q21 zinc finger, CCHC domain containing 6 protein-coding ZCCHC6 zinc finger, CCHC domain containing 6 O PAP associated domain containing 6|TUTase 7|terminal uridylyltransferase 7|zinc finger CCHC domain-containing protein 6 20121230 -9606 79671 NLRX1 - CLR11.3|DLNB26|NOD26|NOD5|NOD9 HGNC:29890|MIM:611947|Ensembl:ENSG00000160703|HPRD:17640|Vega:OTTHUMG00000154476 11 11q23.3 NLR family member X1 protein-coding NLRX1 NLR family member X1 O NLR family, X1|NOD-like receptor X1|caterpiller protein 11.3|nucleotide-binding oligomerization domain protein 26|nucleotide-binding oligomerization domain protein 5|nucleotide-binding oligomerization domain protein 9|nucleotide-binding oligomerization domain, leucine rich repeat containing X1 20121230 -9606 79672 FN3KRP - FN3KL HGNC:25700|MIM:611683|Ensembl:ENSG00000141560|HPRD:13546|Vega:OTTHUMG00000177846 17 17q25.3 fructosamine 3 kinase related protein protein-coding FN3KRP fructosamine 3 kinase related protein O FN3K-RP|FN3K-related protein|fructosamine-3-kinase-related protein|ketosamine-3-kinase 20121230 -9606 79673 ZNF329 - - HGNC:14209|Ensembl:ENSG00000181894|HPRD:07779 19 19q13.43 zinc finger protein 329 protein-coding ZNF329 zinc finger protein 329 O - 20121230 -9606 79674 VEPH1 - MELT|VEPH HGNC:25735|MIM:609594|Ensembl:ENSG00000197415|HPRD:07782|Vega:OTTHUMG00000158711 3 3q24-q25 ventricular zone expressed PH domain-containing 1 protein-coding VEPH1 ventricular zone expressed PH domain-containing 1 O protein melted|ventricular zone expressed PH domain homolog 1|ventricular zone-expressed PH domain-containing protein homolog 1 20121230 -9606 79675 FASTKD1 - - HGNC:26150|Ensembl:ENSG00000138399|HPRD:07969|Vega:OTTHUMG00000154953 2 2q31 FAST kinase domains 1 protein-coding FASTKD1 FAST kinase domains 1 O FAST kinase domain-containing protein 1 20121230 -9606 79676 OGFOD2 - - HGNC:25823|Ensembl:ENSG00000111325|HPRD:07829|Vega:OTTHUMG00000168778 12 12q24.31 2-oxoglutarate and iron-dependent oxygenase domain containing 2 protein-coding OGFOD2 2-oxoglutarate and iron-dependent oxygenase domain containing 2 O 2-oxoglutarate and iron-dependent oxygenase domain-containing protein 2 20121230 -9606 79677 SMC6 - SMC-6|SMC6L1|hSMC6 HGNC:20466|MIM:609387|Ensembl:ENSG00000163029|HPRD:10242|Vega:OTTHUMG00000090675 2 2p24.2 structural maintenance of chromosomes 6 protein-coding SMC6 structural maintenance of chromosomes 6 O SMC protein 6|SMC6 structural maintenance of chromosomes 6-like 1|structural maintenance of chromosomes protein 6 20121230 -9606 79679 VTCN1 RP11-229A19.4 B7-H4|B7H4|B7S1|B7X|B7h.5|PRO1291|VCTN1 HGNC:28873|MIM:608162|Ensembl:ENSG00000134258|HPRD:06429|Vega:OTTHUMG00000012118 1 1p13.1 V-set domain containing T cell activation inhibitor 1 protein-coding VTCN1 V-set domain containing T cell activation inhibitor 1 O B7 family member, H4|B7 superfamily member 1|T cell costimulatory molecule B7x|T-cell costimulatory molecule B7x|V-set domain-containing T-cell activation inhibitor 1|immune costimulatory protein B7-H4 20121230 -9606 79680 C22orf29 - - HGNC:26112|Ensembl:ENSG00000215012|HPRD:13382|Vega:OTTHUMG00000030314 22 22q11.21 chromosome 22 open reading frame 29 protein-coding C22orf29 chromosome 22 open reading frame 29 O uncharacterized protein C22orf29 20121230 -9606 79682 MLF1IP - CENP50|CENPU|CENPU50|KLIP1|PBIP1 HGNC:21348|MIM:611511|Ensembl:ENSG00000151725|HPRD:14722|Vega:OTTHUMG00000160499 4 4q35.1 MLF1 interacting protein protein-coding MLF1IP MLF1 interacting protein O KSHV latent nuclear antigen interacting protein 1|KSHV latent nuclear antigen-interacting protein 1|MLF1-interacting protein|centromere protein U|centromere protein of 50 kDa|interphase centromere complex protein 24|polo-box-interacting protein 1 20121230 -9606 79683 ZDHHC14 RP3-481C9.1 NEW1CP HGNC:20341|Ensembl:ENSG00000175048|HPRD:15711|Vega:OTTHUMG00000015896 6 6q25.3 zinc finger, DHHC-type containing 14 protein-coding ZDHHC14 zinc finger, DHHC-type containing 14 O DHHC-14|NEW1 domain containing protein|NEW1 domain-containing protein|probable palmitoyltransferase ZDHHC14|zinc finger DHHC domain-containing protein 14|zinc finger, DHHC domain containing 14 20121230 -9606 79684 MSANTD2 - C11orf61 HGNC:26266|Ensembl:ENSG00000120458|HPRD:08024|Vega:OTTHUMG00000165931 11 11q24.2 Myb/SANT-like DNA-binding domain containing 2 protein-coding MSANTD2 Myb/SANT-like DNA-binding domain containing 2 O myb/SANT-like DNA-binding domain-containing protein 2 20121230 -9606 79685 SAP30L - NS4ATP2 HGNC:25663|MIM:610398|Ensembl:ENSG00000164576|HPRD:08563|Vega:OTTHUMG00000130146 5 5q33.2 SAP30-like protein-coding SAP30L SAP30-like O HCV non-structural protein 4A-transactivated protein 2|Sin3A associated protein p30-like|histone deacetylase complex subunit SAP30L|sin3 corepressor complex subunit SAP30L|sin3-associated protein p30-like 20121230 -9606 79686 LINC00341 - C14orf139|NCRNA00341 HGNC:20353|HPRD:16606 14 14q32.13 long intergenic non-protein coding RNA 341 miscRNA LINC00341 long intergenic non-protein coding RNA 341 O - 20121230 -9606 79689 STEAP4 - STAMP2|TIARP|TNFAIP9 HGNC:21923|MIM:611098|Ensembl:ENSG00000127954|HPRD:11637|Vega:OTTHUMG00000153853 7 7q21.12 STEAP family member 4 protein-coding STEAP4 STEAP family member 4 O metalloreductase STEAP4|six transmembrane prostate protein 2|six-transmembrane epithelial antigen of prostate 4|sixTransMembrane protein of prostate 2|tumor necrosis factor, alpha-induced protein 9|tumor necrosis-alpha-induced adipose-related protein 20121230 -9606 79690 GAL3ST4 PP6968 GAL3ST-4 HGNC:24145|MIM:608235|Ensembl:ENSG00000197093|HPRD:12195|Vega:OTTHUMG00000154885 7 7q22.1 galactose-3-O-sulfotransferase 4 protein-coding GAL3ST4 galactose-3-O-sulfotransferase 4 O beta-galactose-3-O-sulfotransferase 4|beta-galactose-3-O-sulfotransferase, 4|gal-beta-1,3-GalNAc 3'-sulfotransferase|galbeta1-3GalNAc 3'-sulfotransferase 20121230 -9606 79691 QTRTD1 - - HGNC:25771|Ensembl:ENSG00000151576|HPRD:17944|Vega:OTTHUMG00000159336 3 3q13.31 queuine tRNA-ribosyltransferase domain containing 1 protein-coding QTRTD1 queuine tRNA-ribosyltransferase domain containing 1 O queuine tRNA-ribosyltransferase domain-containing protein 1|queuine tRNA-ribosyltransferase subunit QTRTD1 20121230 -9606 79692 ZNF322 RP11-457M11.3 HCG12|ZNF322A|ZNF388|ZNF489 HGNC:23640|MIM:610847|Ensembl:ENSG00000181315|HPRD:15770|Vega:OTTHUMG00000014460 6 6p22.1 zinc finger protein 322 protein-coding ZNF322 zinc finger protein 322 O HLA complex group 12|zinc finger protein 322A|zinc finger protein 388|zinc finger protein 489 20121230 -9606 79693 YRDC - DRIP3|IRIP|RP11-109P14.4|SUA5 HGNC:28905|MIM:612276|Ensembl:ENSG00000196449|HPRD:18313|Vega:OTTHUMG00000004318 1 1p34.3 yrdC domain containing (E. coli) protein-coding YRDC yrdC domain containing (E. coli) O dopamine receptor interacting protein 3|dopamine receptor-interacting protein 3|hIRIP|ischemia/reperfusion inducible protein|ischemia/reperfusion-inducible protein homolog|yrdC domain-containing protein, mitochondrial 20121230 -9606 79694 MANEA - ENDO|hEndo HGNC:21072|MIM:612327|Ensembl:ENSG00000172469|HPRD:14357|Vega:OTTHUMG00000016296 6 6q16.1 mannosidase, endo-alpha protein-coding MANEA mannosidase, endo-alpha O alpha 1,2-endomannosidase|endo-alpha mannosidase|endomannosidase|glycoprotein endo-alpha-1,2-mannosidase|mandaselin 20121230 -9606 79695 GALNT12 - CRCS1|GalNAc-T12 HGNC:19877|MIM:610290|Ensembl:ENSG00000119514|HPRD:13561|Vega:OTTHUMG00000020348 9 9q22.33 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 12 (GalNAc-T12) protein-coding GALNT12 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 12 (GalNAc-T12) O UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 12|colorectal cancer, susceptibility to 1|polypeptide GalNAc transferase 12|polypeptide N-acetylgalactosaminyltransferase 12|pp-GaNTase 12|protein-UDP acetylgalactosaminyltransferase 12 20121230 -9606 79696 ZC2HC1C - C14orf140|FAM164C HGNC:20354|Ensembl:ENSG00000119703|HPRD:16607|Vega:OTTHUMG00000167439 14 14q24.3 zinc finger, C2HC-type containing 1C protein-coding ZC2HC1C zinc finger, C2HC-type containing 1C O family with sequence similarity 164, member C|protein FAM164C|zinc finger C2HC domain-containing protein 1C 20121230 -9606 79697 C14orf169 - MAPJD|NO66 HGNC:20968|MIM:611919|HPRD:12641 14 14q24.3 chromosome 14 open reading frame 169 protein-coding C14orf169 chromosome 14 open reading frame 169 O MYC-associated protein with JmjC domain|hsNO66|lysine-specific demethylase NO66|nucleolar protein 66 20121230 -9606 79698 ZMAT4 - - HGNC:25844|Ensembl:ENSG00000165061|HPRD:07837|Vega:OTTHUMG00000164049 8 8p11.21 zinc finger, matrin-type 4 protein-coding ZMAT4 zinc finger, matrin-type 4 O zinc finger matrin-type protein 4|zinc finger, matrin type 4 20121230 -9606 79699 ZYG11B - ZYG11 HGNC:25820|Ensembl:ENSG00000162378|HPRD:13356|Vega:OTTHUMG00000008938 1 1p32.3 zyg-11 family member B, cell cycle regulator protein-coding ZYG11B zyg-11 family member B, cell cycle regulator O protein zyg-11 homolog B|zyg-11 homolog B 20121230 -9606 79701 OGFOD3 - C17orf101 HGNC:26174|Ensembl:ENSG00000181396|HPRD:13386|Vega:OTTHUMG00000178679 17 17q25.3 2-oxoglutarate and iron-dependent oxygenase domain containing 3 protein-coding OGFOD3 2-oxoglutarate and iron-dependent oxygenase domain containing 3 O PKHD domain-containing transmembrane protein C17orf101 20121230 -9606 79703 C11orf80 - - HGNC:26197|Ensembl:ENSG00000173715|HPRD:07993|Vega:OTTHUMG00000167164 11 11q13.2 chromosome 11 open reading frame 80 protein-coding C11orf80 chromosome 11 open reading frame 80 O putative uncharacterized protein C11orf80 20121230 -9606 79705 LRRK1 - RIPK6|Roco1 HGNC:18608|MIM:610986|Ensembl:ENSG00000154237|HPRD:14319|Vega:OTTHUMG00000165514 15 15q26.3 leucine-rich repeat kinase 1 protein-coding LRRK1 leucine-rich repeat kinase 1 O leucine-rich repeat serine/threonine-protein kinase 1 20121230 -9606 79706 PRKRIP1 - C114|KRBOX3 HGNC:21894|Ensembl:ENSG00000128563|HPRD:11460|Vega:OTTHUMG00000157717 7 7q22.1 PRKR interacting protein 1 (IL11 inducible) protein-coding PRKRIP1 PRKR interacting protein 1 (IL11 inducible) O KRAB box domain containing 3|PRKR-interacting protein 1|likely ortholog of mouse C114 dsRNA-binding protein 20121230 -9606 79707 NOL9 - Grc3|NET6 HGNC:26265|Ensembl:ENSG00000162408|HPRD:08667|Vega:OTTHUMG00000000904 1 1p36.31 nucleolar protein 9 protein-coding NOL9 nucleolar protein 9 O polynucleotide 5'-hydroxyl-kinase NOL9|polynucleotide 5'-kinase 20121230 -9606 79709 GLT25D1 PSEC0241 - HGNC:26182|Ensembl:ENSG00000130309|HPRD:07986 19 19p13.11 glycosyltransferase 25 domain containing 1 protein-coding GLT25D1 glycosyltransferase 25 domain containing 1 O glycosyltransferase 25 family member 1|hydroxylysine galactosyltransferase 1|procollagen galactosyltransferase 1 20121230 -9606 79710 MORC4 RP1-75H8.4 ZCW4|ZCWCC2|dJ75H8.2 HGNC:23485|Ensembl:ENSG00000133131|HPRD:06757|Vega:OTTHUMG00000022155 X Xq22.3 MORC family CW-type zinc finger 4 protein-coding MORC4 MORC family CW-type zinc finger 4 O MORC family CW-type zinc finger protein 4|zinc finger CW-type coiled-coil domain protein 2|zinc finger, CW type with coiled-coil domain 2 20121230 -9606 79711 IPO4 - Imp4 HGNC:19426|Ensembl:ENSG00000196497|HPRD:07022|Vega:OTTHUMG00000028801 14 14q12 importin 4 protein-coding IPO4 importin 4 O imp4b|importin-4|importin-4b|ran-binding protein 4|ranBP4 20121230 -9606 79712 GTDC1 - Hmat-Xa|mat-Xa HGNC:20887|MIM:610165|Ensembl:ENSG00000121964|HPRD:13615|Vega:OTTHUMG00000131835 2 2q22.3 glycosyltransferase-like domain containing 1 protein-coding GTDC1 glycosyltransferase-like domain containing 1 O glycosyltransferase-like 1|glycosyltransferase-like domain-containing protein 1|mannosyltransferase candidate 20121230 -9606 79713 IGFLR1 - TMEM149|U2AF1L4 HGNC:23620|MIM:614143|Ensembl:ENSG00000126246|HPRD:07996|Vega:OTTHUMG00000182064 19 19q13.12 IGF-like family receptor 1 protein-coding IGFLR1 IGF-like family receptor 1 O U2 small nuclear RNA auxiliary factor 1-like 4|U2(RNU2) small nuclear RNA auxiliary factor 1-like 4|transmembrane protein 149 20121230 -9606 79714 CCDC51 - - HGNC:25714|Ensembl:ENSG00000164051|HPRD:08571|Vega:OTTHUMG00000133534 3 3p21.31 coiled-coil domain containing 51 protein-coding CCDC51 coiled-coil domain containing 51 O coiled-coil domain-containing protein 51 20121230 -9606 79716 NPEPL1 RP11-261P9.1 bA261P9.2 HGNC:16244|Ensembl:ENSG00000215440|HPRD:07496|Vega:OTTHUMG00000033060 20 20q13.32 aminopeptidase-like 1 protein-coding NPEPL1 aminopeptidase-like 1 O probable aminopeptidase NPEPL1 20121230 -9606 79717 PPCS RP11-163G10.1 - HGNC:25686|MIM:609853|Ensembl:ENSG00000127125|HPRD:07760|Vega:OTTHUMG00000007332 1 1p34.2 phosphopantothenoylcysteine synthetase protein-coding PPCS phosphopantothenoylcysteine synthetase O PPC synthetase|phosphopantothenate--cysteine ligase 20121230 -9606 79718 TBL1XR1 - C21|DC42|IRA1|TBLR1 HGNC:29529|MIM:608628|Ensembl:ENSG00000177565|HPRD:15476|Vega:OTTHUMG00000157140 3 3q26.32 transducin (beta)-like 1 X-linked receptor 1 protein-coding TBL1XR1 transducin (beta)-like 1 X-linked receptor 1 O F-box-like/WD repeat-containing protein TBL1XR1|TBL1-related protein 1|nuclear receptor co-repressor/HDAC3 complex subunit|nuclear receptor corepressor/HDAC3 complex subunit TBLR1|transducin beta-like 1X-related protein 1 20121230 -9606 79719 AAGAB - KPPP1|PPKP1|PPKP1A|p34 HGNC:25662|MIM:614888|Ensembl:ENSG00000103591|HPRD:07754|Vega:OTTHUMG00000172246 15 15q22.33-q23 alpha- and gamma-adaptin binding protein protein-coding AAGAB alpha- and gamma-adaptin binding protein O alpha- and gamma-adaptin-binding protein p34 20121230 -9606 79720 VPS37B - - HGNC:25754|MIM:610037|Ensembl:ENSG00000139722|HPRD:07794|Vega:OTTHUMG00000168767 12 12q24.31 vacuolar protein sorting 37 homolog B (S. cerevisiae) protein-coding VPS37B vacuolar protein sorting 37 homolog B (S. cerevisiae) O ESCRT-I complex subunit VPS37B|hVps37B|vacuolar protein sorting 37B|vacuolar protein sorting-associated protein 37B 20121230 -9606 79722 ANKRD55 - - HGNC:25681|Ensembl:ENSG00000164512|HPRD:07758|Vega:OTTHUMG00000162305 5 5q11.2 ankyrin repeat domain 55 protein-coding ANKRD55 ankyrin repeat domain 55 O ankyrin repeat domain-containing protein 55 20121230 -9606 79723 SUV39H2 RP11-2K17.2 KMT1B HGNC:17287|MIM:606503|Ensembl:ENSG00000152455|HPRD:07580|Vega:OTTHUMG00000017718 10 10p13 suppressor of variegation 3-9 homolog 2 (Drosophila) protein-coding SUV39H2 suppressor of variegation 3-9 homolog 2 (Drosophila) O H3-K9-HMTase 2|histone H3-K9 methyltransferase 2|histone-lysine N-methyltransferase SUV39H2|lysine N-methyltransferase 1B|su(var)3-9 homolog 2 20121230 -9606 79724 ZNF768 - - HGNC:26273|Ensembl:ENSG00000169957|HPRD:08671|Vega:OTTHUMG00000132392 16 16p11.2 zinc finger protein 768 protein-coding ZNF768 zinc finger protein 768 O - 20121230 -9606 79725 THAP9 - - HGNC:23192|MIM:612537|Ensembl:ENSG00000168152|HPRD:15502|Vega:OTTHUMG00000130291 4 4q21.22 THAP domain containing 9 protein-coding THAP9 THAP domain containing 9 O THAP domain-containing protein 9 20121230 -9606 79726 WDR59 FP977 - HGNC:25706|Ensembl:ENSG00000103091|HPRD:13351|Vega:OTTHUMG00000170831 16 16q23.1 WD repeat domain 59 protein-coding WDR59 WD repeat domain 59 O WD repeat-containing protein 59 20121230 -9606 79727 LIN28A - CSDD1|LIN-28|LIN28|ZCCHC1|lin-28A HGNC:15986|MIM:611043|Ensembl:ENSG00000131914|HPRD:17278|Vega:OTTHUMG00000003550 1 1p36.11 lin-28 homolog A (C. elegans) protein-coding LIN28A lin-28 homolog A (C. elegans) O RNA-binding protein LIN-28|protein lin-28 homolog A|zinc finger CCHC domain-containing protein 1|zinc finger, CCHC domain containing 1 20121230 -9606 79728 PALB2 - FANCN|PNCA3 HGNC:26144|MIM:610355|Ensembl:ENSG00000083093|HPRD:07966|Vega:OTTHUMG00000177097 16 16p12.2 partner and localizer of BRCA2 protein-coding PALB2 partner and localizer of BRCA2 O - 20121230 -9606 79729 SH3D21 RP11-268J15.3 C1orf113 HGNC:26236|Ensembl:ENSG00000214193|HPRD:08011|Vega:OTTHUMG00000007868 1 1p34.3 SH3 domain containing 21 protein-coding SH3D21 SH3 domain containing 21 O SH3 domain-containing protein 21|SH3 domain-containing protein C1orf113 20121230 -9606 79730 NSUN7 - - HGNC:25857|Ensembl:ENSG00000179299|HPRD:07846|Vega:OTTHUMG00000128597 4 4p14 NOP2/Sun domain family, member 7 protein-coding NSUN7 NOP2/Sun domain family, member 7 O NOL1/NOP2/Sun domain family member 7|NOL1/NOP2/Sun domain family, member 7|putative methyltransferase NSUN7 20121230 -9606 79731 NARS2 - SLM5|asnRS HGNC:26274|MIM:612803|Ensembl:ENSG00000137513|HPRD:08026|Vega:OTTHUMG00000166702 11 11q14.1 asparaginyl-tRNA synthetase 2, mitochondrial (putative) protein-coding NARS2 asparaginyl-tRNA synthetase 2, mitochondrial (putative) O asparagine tRNA ligase 2, mitochondrial (putative)|asparagine--tRNA ligase|probable asparagine--tRNA ligase, mitochondrial|probable asparaginyl-tRNA synthetase, mitochondrial 20121230 -9606 79733 E2F8 - E2F-8 HGNC:24727|MIM:612047|Ensembl:ENSG00000129173|HPRD:10981|Vega:OTTHUMG00000166102 11 11p15.1 E2F transcription factor 8 protein-coding E2F8 E2F transcription factor 8 O E2F family member 8|transcription factor E2F8 20121230 -9606 79734 KCTD17 RP5-1170K4.4 - HGNC:25705|Ensembl:ENSG00000100379|HPRD:07764|Vega:OTTHUMG00000150532 22 22q12.3 potassium channel tetramerisation domain containing 17 protein-coding KCTD17 potassium channel tetramerisation domain containing 17 O BTB/POZ domain-containing protein KCTD17 20121230 -9606 79735 TBC1D17 - - HGNC:25699|Ensembl:ENSG00000104946|HPRD:15471 19 19q13.33 TBC1 domain family, member 17 protein-coding TBC1D17 TBC1 domain family, member 17 O TBC1 domain family member 17 20121230 -9606 79736 TEFM - C17orf42 HGNC:26223|Ensembl:ENSG00000172171|HPRD:08005|Vega:OTTHUMG00000179029 17 - transcription elongation factor, mitochondrial protein-coding TEFM transcription elongation factor, mitochondrial O transcription elongation factor of mitochondria 20121230 -9606 79738 BBS10 - C12orf58 HGNC:26291|MIM:610148|Ensembl:ENSG00000179941|HPRD:08036|Vega:OTTHUMG00000147352 12 12q21.2 Bardet-Biedl syndrome 10 protein-coding BBS10 Bardet-Biedl syndrome 10 O Bardet-Biedl syndrome 10 protein 20121230 -9606 79739 TTLL7 - RP5-836J3.2 HGNC:26242|Ensembl:ENSG00000137941|HPRD:08013|Vega:OTTHUMG00000009932 1 1p31.1 tubulin tyrosine ligase-like family, member 7 protein-coding TTLL7 tubulin tyrosine ligase-like family, member 7 O testis development protein NYD-SP30|tubulin polyglutamylase TTLL7|tubulin--tyrosine ligase-like protein 7 20121230 -9606 79740 ZBBX - - HGNC:26245|Ensembl:ENSG00000169064|HPRD:08015|Vega:OTTHUMG00000133560 3 3q26.1 zinc finger, B-box domain containing protein-coding ZBBX zinc finger, B-box domain containing O zinc finger B-box domain-containing protein 1 20121230 -9606 79741 C10orf68 RP11-479G22.1 dJ1104A8.1 HGNC:25779|Ensembl:ENSG00000150076|HPRD:10698|Vega:OTTHUMG00000017926 10 10p11.22 chromosome 10 open reading frame 68 protein-coding C10orf68 chromosome 10 open reading frame 68 O uncharacterized protein C10orf68 20121230 -9606 79742 CXorf36 hCG_1981635 4930578C19Rik|DIA1R|EPQL1862|PRO3743|bA435K1.1 HGNC:25866|Ensembl:ENSG00000147113|HPRD:06524|Vega:OTTHUMG00000021403 X Xp11.3 chromosome X open reading frame 36 protein-coding CXorf36 chromosome X open reading frame 36 O UPF0672 protein CXorf36|deleted in autism-1 related protein|deleted in autism-related protein 1|hCG1981635 20121230 -9606 79744 ZNF419 - ZNF419A HGNC:20648|Ensembl:ENSG00000105136|HPRD:08665|Vega:OTTHUMG00000037073 19 19q13.43 zinc finger protein 419 protein-coding ZNF419 zinc finger protein 419 O zinc finger protein 419A 20121230 -9606 79745 CLIP4 - RSNL2 HGNC:26108|Ensembl:ENSG00000115295|HPRD:08634|Vega:OTTHUMG00000097837 2 2p23.2 CAP-GLY domain containing linker protein family, member 4 protein-coding CLIP4 CAP-GLY domain containing linker protein family, member 4 O CAP-Gly domain-containing linker protein 4|restin-like 2|restin-like protein 2 20121230 -9606 79746 ECHDC3 RP11-401F24.3 - HGNC:23489|Ensembl:ENSG00000134463|HPRD:10930|Vega:OTTHUMG00000017675 10 10p14 enoyl CoA hydratase domain containing 3 protein-coding ECHDC3 enoyl CoA hydratase domain containing 3 O enoyl Coenzyme A hydratase domain containing 3|enoyl-CoA hydratase domain-containing protein 3, mitochondrial 20121230 -9606 79747 ADGB RP11-497D6.1 C6orf103 HGNC:21212|MIM:614630|Ensembl:ENSG00000118492|Vega:OTTHUMG00000015758 6 6q24.3 androglobin protein-coding ADGB androglobin O calpain-7-like protein 20121230 -9606 79748 LMAN1L UNQ2784/PRO7174 ERGIC-53L|ERGL HGNC:6632|MIM:609548|Ensembl:ENSG00000140506|HPRD:17284|Vega:OTTHUMG00000142813 15 15q24.1 lectin, mannose-binding, 1 like protein-coding LMAN1L lectin, mannose-binding, 1 like O ERGIC-53-like protein|ERGIC53-like protein|LMAN1-like protein|lectin mannose-binding 1-like|protein ERGIC-53-like 20121230 -9606 79750 ZNF385D - ZNF659 HGNC:26191|Ensembl:ENSG00000151789|HPRD:07990|Vega:OTTHUMG00000130484 3 3p24.3 zinc finger protein 385D protein-coding ZNF385D zinc finger protein 385D O zinc finger protein 659 20121230 -9606 79751 SLC25A22 - EIEE3|GC1|NET44 HGNC:19954|MIM:609302|Ensembl:ENSG00000177542|HPRD:15356|Vega:OTTHUMG00000133310 11 11p15.5 solute carrier family 25 (mitochondrial carrier: glutamate), member 22 protein-coding SLC25A22 solute carrier family 25 (mitochondrial carrier: glutamate), member 22 O GC-1|glutamate/H(+) symporter 1|mitochondrial glutamate carrier 1 20121230 -9606 79752 ZFAND1 - - HGNC:25858|Ensembl:ENSG00000104231|HPRD:07847|Vega:OTTHUMG00000164684 8 8q21.13 zinc finger, AN1-type domain 1 protein-coding ZFAND1 zinc finger, AN1-type domain 1 O AN1-type zinc finger protein 1 20121230 -9606 79753 SNIP1 RP3-423B22.3 PMRED HGNC:30587|MIM:608241|Ensembl:ENSG00000163877|HPRD:06999|Vega:OTTHUMG00000004225 1 1p34.3 Smad nuclear interacting protein 1 protein-coding SNIP1 Smad nuclear interacting protein 1 O FHA domain-containing protein SNIP1|smad nuclear-interacting protein 1 20121230 -9606 79754 ASB13 - - HGNC:19765|Ensembl:ENSG00000196372|HPRD:10667|Vega:OTTHUMG00000017603 10 10p15.1 ankyrin repeat and SOCS box containing 13 protein-coding ASB13 ankyrin repeat and SOCS box containing 13 O ankyrin repeat and SOCS box protein 13|ankyrin repeat and SOCS box-containing 13|ankyrin repeat domain-containing SOCS box protein Asb-13 20121230 -9606 79755 ZNF750 - ZFP750 HGNC:25843|MIM:610226|Ensembl:ENSG00000141579|HPRD:08588|Vega:OTTHUMG00000177822 17 17q25.3 zinc finger protein 750 protein-coding ZNF750 zinc finger protein 750 O protein ZNF750 20121230 -9606 79758 DHRS12 - SDR40C1 HGNC:25832|Ensembl:ENSG00000102796|HPRD:07833|Vega:OTTHUMG00000016952 13 13q14.3 dehydrogenase/reductase (SDR family) member 12 protein-coding DHRS12 dehydrogenase/reductase (SDR family) member 12 O dehydrogenase/reductase SDR family member 12|short chain dehydrogenase/reductase family 40C, member 1 20121230 -9606 79759 ZNF668 - - HGNC:25821|Ensembl:ENSG00000167394|HPRD:07828|Vega:OTTHUMG00000047357 16 16p11.2 zinc finger protein 668 protein-coding ZNF668 zinc finger protein 668 O - 20121230 -9606 79760 GEMIN7 - SIP3 HGNC:20045|MIM:607419|Ensembl:ENSG00000142252|HPRD:07600|Vega:OTTHUMG00000181768 19 19q13.32 gem (nuclear organelle) associated protein 7 protein-coding GEMIN7 gem (nuclear organelle) associated protein 7 O gem-associated protein 7|gemin 7|gemin-7 20121230 -9606 79762 C1orf115 - RP11-322F10.4 HGNC:25873|Ensembl:ENSG00000162817|HPRD:08596|Vega:OTTHUMG00000037361 1 1q41 chromosome 1 open reading frame 115 protein-coding C1orf115 chromosome 1 open reading frame 115 O uncharacterized protein C1orf115 20121230 -9606 79763 ISOC2 - - HGNC:26278|MIM:612928|Ensembl:ENSG00000063241|HPRD:08030|Vega:OTTHUMG00000180830 19 19q13.42 isochorismatase domain containing 2 protein-coding ISOC2 isochorismatase domain containing 2 O isochorismatase domain-containing protein 2, mitochondrial 20121230 -9606 79767 ELMO3 - CED-12|CED12|ELMO-3 HGNC:17289|MIM:606422|Ensembl:ENSG00000102890|HPRD:12104|Vega:OTTHUMG00000133570 16 16q22.1 engulfment and cell motility 3 protein-coding ELMO3 engulfment and cell motility 3 O ced-12 homolog 3|engulfment and cell motility protein 3 20121230 -9606 79768 KATNBL1 - C15orf29 HGNC:26199|Ensembl:ENSG00000134152|HPRD:07995|Vega:OTTHUMG00000129368 15 15q14 katanin p80 subunit B-like 1 protein-coding KATNBL1 katanin p80 subunit B-like 1 O uncharacterized protein C15orf29 20121230 -9606 79770 TXNDC15 UNQ335/PRO534 C5orf14|UNQ335 HGNC:20652|Ensembl:ENSG00000113621|HPRD:08658|Vega:OTTHUMG00000129115 5 5q31.1 thioredoxin domain containing 15 protein-coding TXNDC15 thioredoxin domain containing 15 O 2310047H23Rik|disulfide isomerase|thioredoxin domain-containing protein 15 20121230 -9606 79772 MCTP1 - - HGNC:26183|Ensembl:ENSG00000175471|HPRD:08652|Vega:OTTHUMG00000162742 5 5q15 multiple C2 domains, transmembrane 1 protein-coding MCTP1 multiple C2 domains, transmembrane 1 O multiple C2 and transmembrane domain-containing protein 1|multiple C2-domains with two transmembrane regions 1 20121230 -9606 79774 GRTP1 RP11-391H12.7 TBC1D6 HGNC:20310|Ensembl:ENSG00000139835|HPRD:17080|Vega:OTTHUMG00000017381 13 13q34 growth hormone regulated TBC protein 1 protein-coding GRTP1 growth hormone regulated TBC protein 1 O TBC1 domain family member 6|TBC1 domain family, member 6|growth hormone-regulated TBC protein 1 20121230 -9606 79776 ZFHX4 - ZFH4|ZHF4 HGNC:30939|MIM:606940|Ensembl:ENSG00000091656|HPRD:09503|Vega:OTTHUMG00000164557 8 8q21.11 zinc finger homeobox 4 protein-coding ZFHX4 zinc finger homeobox 4 O zinc finger homeobox protein 4|zinc finger homeodomain protein 4|zinc-finger homeodomain protein 4 20121230 -9606 79777 ACBD4 HMFT0700 - HGNC:23337|Ensembl:ENSG00000181513|Vega:OTTHUMG00000180111 17 17q21.31 acyl-CoA binding domain containing 4 protein-coding ACBD4 acyl-CoA binding domain containing 4 O acyl-CoA-binding domain-containing protein 4|acyl-Coenzyme A binding domain containing 4 20121230 -9606 79778 MICALL2 UNQ5811 JRAB|MICAL-L2 HGNC:29672|Ensembl:ENSG00000164877|HPRD:11364|Vega:OTTHUMG00000119021 7 7p22.3 MICAL-like 2 protein-coding MICALL2 MICAL-like 2 O MICAL-like protein 2|junctional Rab13-binding protein 20121230 -9606 79780 CCDC82 HT025 HSPC048 HGNC:26282|Ensembl:ENSG00000149231|HPRD:08033|Vega:OTTHUMG00000167678 11 11q21 coiled-coil domain containing 82 protein-coding CCDC82 coiled-coil domain containing 82 O coiled-coil domain-containing protein 82 20121230 -9606 79781 IQCA1 - 4930465P12Rik|IQCA HGNC:26195|Ensembl:ENSG00000132321|HPRD:13743|Vega:OTTHUMG00000153058 2 2q37.3 IQ motif containing with AAA domain 1 protein-coding IQCA1 IQ motif containing with AAA domain 1 O IQ and AAA domain-containing protein 1 20121230 -9606 79782 LRRC31 UNQ9367/PRO34156 - HGNC:26261|Ensembl:ENSG00000114248|HPRD:08023|Vega:OTTHUMG00000164421 3 3q26.2 leucine rich repeat containing 31 protein-coding LRRC31 leucine rich repeat containing 31 O leucine-rich repeat-containing protein 31 20121230 -9606 79783 C7orf10 - DERP13|ORF19 HGNC:16001|MIM:609187|Ensembl:ENSG00000175600|HPRD:09859|Vega:OTTHUMG00000155094 7 7p14.1 chromosome 7 open reading frame 10 protein-coding C7orf10 chromosome 7 open reading frame 10 O Russel-Silver syndrome candidate|caiB/baiF CoA-transferase family protein C7orf10|dermal papilla-derived protein 13 20121230 -9606 79784 MYH14 FP17425 DFNA4|DFNA4A|MHC16|MYH17|NMHC II-C|NMHC-II-C|PNMHH|myosin HGNC:23212|MIM:608568|Ensembl:ENSG00000105357|HPRD:10543 19 19q13.33 myosin, heavy chain 14, non-muscle protein-coding MYH14 myosin, heavy chain 14, non-muscle O MYH14 variant protein|myosin heavy chain, non-muscle IIc|myosin, heavy polypeptide 14|myosin-14|non-muscle myosin heavy chain IIc|nonmuscle myosin heavy chain II-C 20121230 -9606 79785 RERGL - - HGNC:26213|Ensembl:ENSG00000111404|HPRD:08659|Vega:OTTHUMG00000168820 12 12p12.3 RERG/RAS-like protein-coding RERGL RERG/RAS-like O RERG/Ras-like protein|ras-related and estrogen-regulated growth inhibitor-like protein 20121230 -9606 79786 KLHL36 - C16orf44 HGNC:17844|Ensembl:ENSG00000135686|HPRD:12675|Vega:OTTHUMG00000137642 16 16q24.1 kelch-like 36 (Drosophila) protein-coding KLHL36 kelch-like 36 (Drosophila) O kelch-like protein 36 20121230 -9606 79788 ZNF665 - ZFP160L HGNC:25885|Ensembl:ENSG00000197497|HPRD:07856 19 19q13.42 zinc finger protein 665 protein-coding ZNF665 zinc finger protein 665 O - 20121230 -9606 79789 CLMN - - HGNC:19972|MIM:611121|Ensembl:ENSG00000165959|HPRD:13076|Vega:OTTHUMG00000171629 14 14q32.13 calmin (calponin-like, transmembrane) protein-coding CLMN calmin (calponin-like, transmembrane) O calmin|calponin like transmembrane domain protein|calponin-like transmembrane domain protein 20121230 -9606 79791 FBXO31 PP2386 FBX14|FBXO14|Fbx31|pp2386 HGNC:16510|MIM:609102|Ensembl:ENSG00000103264|HPRD:10954|Vega:OTTHUMG00000175685 16 16q24.2 F-box protein 31 protein-coding FBXO31 F-box protein 31 O F-box only protein 31|SCF ubiquitin ligase specificity factor|putative breast cancer tumor-suppressor 20121230 -9606 79792 GSDMD FKSG10 DF5L|DFNA5L|GSDMDC1 HGNC:25697|Ensembl:ENSG00000104518|HPRD:11014|Vega:OTTHUMG00000165132 8 8q24.3 gasdermin D protein-coding GSDMD gasdermin D O gasdermin domain containing 1|gasdermin domain-containing protein 1|gasdermin-D 20121230 -9606 79794 C12orf49 - - HGNC:26128|Ensembl:ENSG00000111412|HPRD:07962|Vega:OTTHUMG00000169392 12 12q24.22 chromosome 12 open reading frame 49 protein-coding C12orf49 chromosome 12 open reading frame 49 O UPF0454 protein C12orf49 20121230 -9606 79796 ALG9 - CDG1L|DIBD1|LOH11CR1J HGNC:15672|MIM:606941|Ensembl:ENSG00000086848|HPRD:09504|Vega:OTTHUMG00000166819 11 11q23 asparagine-linked glycosylation 9, alpha-1,2-mannosyltransferase homolog (S. cerevisiae) protein-coding ALG9 asparagine-linked glycosylation 9, alpha-1,2-mannosyltransferase homolog (S. cerevisiae) O alpha-1,2-mannosyltransferase ALG9|asparagine-linked glycosylation 9 homolog (S. cerevisiae, alpha- 1,2-mannosyltransferase)|asparagine-linked glycosylation 9 homolog (yeast, alpha- 1,2-mannosyltransferase)|asparagine-linked glycosylation protein 9 homolog|disrupted in bipolar affective disorder 1|disrupted in bipolar disorder protein 1|dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase|dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase|loss of heterozygosity, 11, chromosomal region 1 gene J product 20121230 -9606 79797 ZNF408 - - HGNC:20041|Ensembl:ENSG00000175213|HPRD:18338|Vega:OTTHUMG00000166568 11 11p11.2 zinc finger protein 408 protein-coding ZNF408 zinc finger protein 408 O PR domain zinc finger protein 17 20121230 -9606 79798 ARMC5 - - HGNC:25781|Ensembl:ENSG00000140691|HPRD:07809|Vega:OTTHUMG00000176618 16 16p11.2 armadillo repeat containing 5 protein-coding ARMC5 armadillo repeat containing 5 O armadillo repeat-containing protein 5 20121230 -9606 79799 UGT2A3 UNQ2559/PRO6239 - HGNC:28528|Ensembl:ENSG00000135220|HPRD:08646|Vega:OTTHUMG00000129408 4 4q13.2 UDP glucuronosyltransferase 2 family, polypeptide A3 protein-coding UGT2A3 UDP glucuronosyltransferase 2 family, polypeptide A3 O UDP-glucuronosyltransferase 2A3|UDPGT 2A3 20121230 -9606 79800 ALS2CR8 - CARF|NYD-SP24 HGNC:14435|MIM:607586|Ensembl:ENSG00000138380|HPRD:10464|Vega:OTTHUMG00000154528 2 2q33.2 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 8 protein-coding ALS2CR8 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 8 O amyotrophic lateral sclerosis 2 chromosomal region candidate gene 8 protein|calcium-response factor|testis development protein NYD-SP24 20121230 -9606 79801 SHCBP1 - PAL HGNC:29547|MIM:611027|Ensembl:ENSG00000171241|HPRD:11557|Vega:OTTHUMG00000132540 16 16q11.2 SHC SH2-domain binding protein 1 protein-coding SHCBP1 SHC SH2-domain binding protein 1 O SHC SH2 domain-binding protein 1 20121230 -9606 79802 HHIPL2 RP11-378J18.1 KIAA1822L HGNC:25842|Ensembl:ENSG00000143512|HPRD:08587|Vega:OTTHUMG00000037545 1 1q41 HHIP-like 2 protein-coding HHIPL2 HHIP-like 2 O HHIP-like protein 2|hedgehog interacting protein-like 2 20121230 -9606 79803 HPS6 - RP11-302K17.1 HGNC:18817|MIM:607522|Ensembl:ENSG00000166189|HPRD:08471|Vega:OTTHUMG00000018945 10 10q24.32 Hermansky-Pudlak syndrome 6 protein-coding HPS6 Hermansky-Pudlak syndrome 6 O Hermansky-Pudlak syndrome 6 protein|Hermansky-Pudlak syndrome-6 protein (HPS6)|ruby-eye protein homolog 20121230 -9606 79804 NBLA00301 - DEIN - 4 4q34.1 Nbla00301 miscRNA - - - - 20121230 -9606 79805 VASH2 - RP11-275G3.1 HGNC:25723|MIM:610471|Ensembl:ENSG00000143494|HPRD:08574|Vega:OTTHUMG00000036925 1 1q32.3 vasohibin 2 protein-coding VASH2 vasohibin 2 O vasohibin-2|vasohibin-like protein 20121230 -9606 79807 GSTCD - - HGNC:25806|Ensembl:ENSG00000138780|HPRD:07823|Vega:OTTHUMG00000131211 4 4q24 glutathione S-transferase, C-terminal domain containing protein-coding GSTCD glutathione S-transferase, C-terminal domain containing O glutathione S-transferase C-terminal domain-containing protein 20121230 -9606 79809 TTC21B Nbla10696 ATD4|IFT139|JBTS11|NPHP12|THM1 HGNC:25660|MIM:612014|Ensembl:ENSG00000123607|HPRD:07752|Vega:OTTHUMG00000154083 2 2q24.3 tetratricopeptide repeat domain 21B protein-coding TTC21B tetratricopeptide repeat domain 21B O TPR repeat protein 21B|putative protein product of Nbla10696|tetratricopeptide repeat protein 21B 20121230 -9606 79810 PTCD2 - - HGNC:25734|Ensembl:ENSG00000049883|HPRD:15193|Vega:OTTHUMG00000100953 5 5q13.2 pentatricopeptide repeat domain 2 protein-coding PTCD2 pentatricopeptide repeat domain 2 O pentatricopeptide repeat-containing protein 2, mitochondrial 20121230 -9606 79811 SLTM - Met HGNC:20709|Ensembl:ENSG00000137776|HPRD:07819|Vega:OTTHUMG00000074033 15 15q22.1 SAFB-like, transcription modulator protein-coding SLTM SAFB-like, transcription modulator O SAFB-like transcription modulator|modulator of estrogen-induced transcription 20121230 -9606 79812 MMRN2 - EMILIN-3|EMILIN3|ENDOGLYX-1 HGNC:19888|MIM:608925|Ensembl:ENSG00000173269|HPRD:10601|Vega:OTTHUMG00000018663 10 10q23.2 multimerin 2 protein-coding MMRN2 multimerin 2 O EMILIN-like protein EndoGlyx-1|elastin microfibril interface located protein 3|elastin microfibril interfacer 3|endoGlyx-1 p125/p140 subunit|multimerin-2 20121230 -9606 79813 EHMT1 RP11-188C12.1 EUHMTASE1|Eu-HMTase1|FP13812|GLP|GLP1|KMT1D|bA188C12.1 HGNC:24650|MIM:607001|Ensembl:ENSG00000181090|HPRD:07383|Vega:OTTHUMG00000020995 9 9q34.3 euchromatic histone-lysine N-methyltransferase 1 protein-coding EHMT1 euchromatic histone-lysine N-methyltransferase 1 O G9a like protein|G9a-like protein 1|H3-K9-HMTase 5|histone H3-K9 methyltransferase 5|histone-lysine N-methyltransferase EHMT1|histone-lysine N-methyltransferase, H3 lysine-9 specific 5|lysine N-methyltransferase 1D 20121230 -9606 79814 AGMAT - - HGNC:18407|Ensembl:ENSG00000116771|HPRD:12436|Vega:OTTHUMG00000002357 1 1p36.21 agmatine ureohydrolase (agmatinase) protein-coding AGMAT agmatine ureohydrolase (agmatinase) O AUH|agmatinase, mitochondrial 20121230 -9606 79815 NIPAL2 - NPAL2 HGNC:25854|Ensembl:ENSG00000104361|HPRD:08591|Vega:OTTHUMG00000164668 8 8q22.2 NIPA-like domain containing 2 protein-coding NIPAL2 NIPA-like domain containing 2 O NIPA-like protein 2 20121230 -9606 79816 TLE6 - GRG6 HGNC:30788|MIM:612399|Ensembl:ENSG00000104953|HPRD:18195|Vega:OTTHUMG00000156793 19 19p13.3 transducin-like enhancer of split 6 (E(sp1) homolog, Drosophila) protein-coding TLE6 transducin-like enhancer of split 6 (E(sp1) homolog, Drosophila) O transducin-like enhancer protein 6 20121230 -9606 79817 MOB3B - C9orf35|MOB1D|MOBKL2B HGNC:23825|Ensembl:ENSG00000120162|HPRD:14728|Vega:OTTHUMG00000019717 9 9p21.2 MOB kinase activator 3B protein-coding MOB3B MOB kinase activator 3B O MOB1, Mps One Binder kinase activator-like 2B|mob1 homolog 2b|monopolar spindle 1 binding, MOB1, domain containing|mps one binder kinase activator-like 2B 20121230 -9606 79818 ZNF552 - - HGNC:26135|Ensembl:ENSG00000178935|HPRD:15835 19 19q13.43 zinc finger protein 552 protein-coding ZNF552 zinc finger protein 552 O - 20121230 -9606 79819 WDR78 RP11-342H21.1 - HGNC:26252|Ensembl:ENSG00000152763|HPRD:08017|Vega:OTTHUMG00000009165 1 1p31.3 WD repeat domain 78 protein-coding WDR78 WD repeat domain 78 O WD repeat-containing protein 78 20121230 -9606 79820 CATSPERB - C14orf161|CatSper(beta) HGNC:20500|MIM:611169|Ensembl:ENSG00000133962|HPRD:16613|Vega:OTTHUMG00000171118 14 14q32.12 catsper channel auxiliary subunit beta protein-coding CATSPERB catsper channel auxiliary subunit beta O catSper-beta|cation channel sperm-associated protein subunit beta|cation channel, sperm associated beta|cation channel, sperm-associated, beta 20121230 -9606 79822 ARHGAP28 - - HGNC:25509|MIM:610592|Ensembl:ENSG00000088756|HPRD:10961|Vega:OTTHUMG00000167698 18 18p11.31 Rho GTPase activating protein 28 protein-coding ARHGAP28 Rho GTPase activating protein 28 O rho GTPase-activating protein 28|rho-type GTPase-activating protein 28 20121230 -9606 79823 CAMKMT - C2orf34|CLNMT|CaM KMT|Cam|KMT HGNC:26276|MIM:609559|Ensembl:ENSG00000143919|HPRD:08028|Vega:OTTHUMG00000128761 2 2p21 calmodulin-lysine N-methyltransferase protein-coding CAMKMT calmodulin-lysine N-methyltransferase O - 20121230 -9606 79825 CCDC48 - C3orf73 HGNC:25692|Ensembl:ENSG00000114654|HPRD:08569|Vega:OTTHUMG00000158996 3 3q21.3 coiled-coil domain containing 48 protein-coding CCDC48 coiled-coil domain containing 48 O EF-hand domain-containing protein ENSP00000381169|coiled-coil domain-containing protein 48 20121230 -9606 79827 CLMP UNQ318/PRO363 ACAM|ASAM HGNC:24039|MIM:611693|Ensembl:ENSG00000166250|HPRD:16513|Vega:OTTHUMG00000166031 11 11q24.1 CXADR-like membrane protein protein-coding CLMP CXADR-like membrane protein O CAR-like membrane protein|adipocyte adhesion molecule|adipocyte-specific adhesion molecule|coxsackie- and adenovirus receptor-like membrane protein 20121230 -9606 79828 METTL8 - TIP HGNC:25856|MIM:609525|Ensembl:ENSG00000123600|HPRD:07845|Vega:OTTHUMG00000132261 2 2q31.1 methyltransferase like 8 protein-coding METTL8 methyltransferase like 8 O methyltransferase-like protein 8|tension-induced/inhibited protein 20121230 -9606 79829 NAA40 - NAT11|PATT1 HGNC:25845|Ensembl:ENSG00000110583|HPRD:07838|Vega:OTTHUMG00000167784 11 11q13.1 N(alpha)-acetyltransferase 40, NatD catalytic subunit, homolog (S. cerevisiae) protein-coding NAA40 N(alpha)-acetyltransferase 40, NatD catalytic subunit, homolog (S. cerevisiae) O N-acetyltransferase 11 (GCN5-related, putative)|N-alpha acetyl transferase 40|N-alpha-acetyltransferase 40|N-alpha-acetyltransferase 40, NatD catalytic subunit|natD catalytic subunit 20121230 -9606 79830 ZMYM1 RP11-248I9.4 MYM|RP11-181E22.4 HGNC:26253|Ensembl:ENSG00000197056|HPRD:15739|Vega:OTTHUMG00000004374 1 1p34.3 zinc finger, MYM-type 1 protein-coding ZMYM1 zinc finger, MYM-type 1 O zinc finger MYM-type protein 1|zinc finger, MYM domain containing 1 20121230 -9606 79831 KDM8 - JMJD5 HGNC:25840|MIM:611917|Ensembl:ENSG00000155666|HPRD:07836|Vega:OTTHUMG00000131677 16 16p12.1 lysine (K)-specific demethylase 8 protein-coding KDM8 lysine (K)-specific demethylase 8 O jmjC domain-containing protein 5|jumonji domain containing 5|jumonji domain-containing protein 5|lysine-specific demethylase 8 20121230 -9606 79832 QSER1 - - HGNC:26154|Ensembl:ENSG00000060749|HPRD:08645|Vega:OTTHUMG00000166220 11 11p13 glutamine and serine rich 1 protein-coding QSER1 glutamine and serine rich 1 O glutamine and serine-rich protein 1 20121230 -9606 79833 GEMIN6 - - HGNC:20044|MIM:607006|Ensembl:ENSG00000152147|HPRD:06110|Vega:OTTHUMG00000128588 2 2p22.1 gem (nuclear organelle) associated protein 6 protein-coding GEMIN6 gem (nuclear organelle) associated protein 6 O SIP2|gem-associated protein 6|gemin 6|gemin-6 20121230 -9606 79834 PEAK1 - SGK269 MIM:614248|Ensembl:ENSG00000173517|Vega:OTTHUMG00000172618 15 15q24.3 NKF3 kinase family member protein-coding - - - pseudopodium enriched atypical kinase|pseudopodium-enriched atypical kinase 1|sugen kinase 269|tyrosine-protein kinase SgK269 20121230 -9606 79836 LONRF3 RP13-347D8.4 RNF127 HGNC:21152|Ensembl:ENSG00000175556|HPRD:06708|Vega:OTTHUMG00000022262 X Xq24 LON peptidase N-terminal domain and ring finger 3 protein-coding LONRF3 LON peptidase N-terminal domain and ring finger 3 O LON peptidase N-terminal domain and RING finger protein 3|ring finger protein 127 20121230 -9606 79837 PIP4K2C - PIP5K2C HGNC:23786|Ensembl:ENSG00000166908|HPRD:15138|Vega:OTTHUMG00000170144 12 12q13.3 phosphatidylinositol-5-phosphate 4-kinase, type II, gamma protein-coding PIP4K2C phosphatidylinositol-5-phosphate 4-kinase, type II, gamma O PI(5)P 4-kinase type II gamma|PIP4KII-gamma|phosphatidylinositol 4-phosphate 5-kinase|phosphatidylinositol 5-phosphate 4-kinase type II gamma|phosphatidylinositol 5-phosphate 4-kinase type-2 gamma|phosphatidylinositol-4-phosphate 5-kinase, type II, gamma|phosphatidylinositol-5-phosphate 4-kinase type-2 gamma 20121230 -9606 79838 TMC5 UNQ8238/PRO33604 - HGNC:22999|Ensembl:ENSG00000103534|HPRD:15516|Vega:OTTHUMG00000131458 16 16p12.3 transmembrane channel-like 5 protein-coding TMC5 transmembrane channel-like 5 O transmembrane channel-like protein 5 20121230 -9606 79839 CCDC102B - ACY1L|AN|C18orf14|HsT1731 HGNC:26295|Ensembl:ENSG00000150636|HPRD:08038|Vega:OTTHUMG00000132808 18 18q22.1 coiled-coil domain containing 102B protein-coding CCDC102B coiled-coil domain containing 102B O coiled-coil domain-containing protein 102B 20121230 -9606 79840 NHEJ1 - XLF HGNC:25737|MIM:611290|Ensembl:ENSG00000187736|HPRD:07784|Vega:OTTHUMG00000133127 2 2q35 nonhomologous end-joining factor 1 protein-coding NHEJ1 nonhomologous end-joining factor 1 O XRCC4-like factor|non-homologous end-joining factor 1|protein cernunnos 20121230 -9606 79841 AGBL2 - - HGNC:26296|Ensembl:ENSG00000165923|HPRD:08039|Vega:OTTHUMG00000165368 11 11p11.2 ATP/GTP binding protein-like 2 protein-coding AGBL2 ATP/GTP binding protein-like 2 O cytosolic carboxypeptidase 2 20121230 -9606 79842 ZBTB3 - - HGNC:22918|Ensembl:ENSG00000185670|HPRD:15693|Vega:OTTHUMG00000167608 11 11q12.3 zinc finger and BTB domain containing 3 protein-coding ZBTB3 zinc finger and BTB domain containing 3 O zinc finger and BTB domain-containing protein 3 20121230 -9606 79843 FAM124B - - HGNC:26224|Ensembl:ENSG00000124019|HPRD:08663|Vega:OTTHUMG00000133168 2 2q36.2 family with sequence similarity 124B protein-coding FAM124B family with sequence similarity 124B O protein FAM124B 20121230 -9606 79844 ZDHHC11 UNQ598 ZNF399 HGNC:19158|Ensembl:ENSG00000188818|HPRD:15708|Vega:OTTHUMG00000090319 5 5p15.33 zinc finger, DHHC-type containing 11 protein-coding ZDHHC11 zinc finger, DHHC-type containing 11 O DHHC-11|probable palmitoyltransferase ZDHHC11|zinc finger DHHC domain-containing protein 11|zinc finger protein 399|zinc finger, DHHC domain containing 11 20121230 -9606 79845 RNF122 - - HGNC:21147|Ensembl:ENSG00000133874|HPRD:11498|Vega:OTTHUMG00000163960 8 8p12 ring finger protein 122 protein-coding RNF122 ring finger protein 122 O RING finger protein 122 20121230 -9606 79846 C7orf63 - - HGNC:26107|Ensembl:ENSG00000105792|HPRD:08633|Vega:OTTHUMG00000023434 7 7q21.13 chromosome 7 open reading frame 63 protein-coding C7orf63 chromosome 7 open reading frame 63 O uncharacterized protein C7orf63 20121230 -9606 79847 TMEM180 RP11-18I14.8 C10orf77|bA18I14.8 HGNC:26196|Ensembl:ENSG00000138111|HPRD:12589 10 10q24.32 transmembrane protein 180 protein-coding TMEM180 transmembrane protein 180 O - 20121230 -9606 79848 CSPP1 - CSPP HGNC:26193|MIM:611654|Ensembl:ENSG00000104218|HPRD:07991|Vega:OTTHUMG00000164564 8 8q13.2 centrosome and spindle pole associated protein 1 protein-coding CSPP1 centrosome and spindle pole associated protein 1 O centrosome and spindle pole-associated protein 1 20121230 -9606 79849 PDZD3 DLNB27 IKEPP|NHERF4|PDZK2 HGNC:19891|MIM:607146|Ensembl:ENSG00000172367|HPRD:06191|Vega:OTTHUMG00000166224 11 11q23.3 PDZ domain containing 3 protein-coding PDZD3 PDZ domain containing 3 O NHERF-4|Na(+)/H(+) exchange regulatory cofactor NHE-RF4|PDZ domain containing 2|PDZ domain-containing protein 2|PDZ domain-containing protein 3|intestinal and kidney enriched PDZ protein|intestinal and kidney-enriched PDZ protein|na/Pi cotransporter C-terminal-associated protein 2|naPi-Cap2|natrium-phosphate cotransporter IIa C-terminal-associated protein 2|sodium-hydrogen exchanger regulatory factor 4 20121230 -9606 79850 FAM57A - CT120 HGNC:29646|MIM:611627|Ensembl:ENSG00000167695|HPRD:13096|Vega:OTTHUMG00000177491 17 17p13.3 family with sequence similarity 57, member A protein-coding FAM57A family with sequence similarity 57, member A O membrane protein expressed in epithelial-like lung adenocarcinoma|protein FAM57A 20121230 -9606 79852 EPHX3 - ABHD9 HGNC:23760|Ensembl:ENSG00000105131|HPRD:12410 19 19p13.12 epoxide hydrolase 3 protein-coding EPHX3 epoxide hydrolase 3 O abhydrolase domain containing 9|abhydrolase domain-containing protein 9 20121230 -9606 79853 TM4SF20 UNQ518/PRO994 PRO994|TCCE518 HGNC:26230|Ensembl:ENSG00000168955|HPRD:08008|Vega:OTTHUMG00000133187 2 2q36.3 transmembrane 4 L six family member 20 protein-coding TM4SF20 transmembrane 4 L six family member 20 O transmembrane 4 L6 family member 20 20121230 -9606 79854 LINC00115 RP11-206L10.16-001 NCRNA00115 HGNC:26211|HPRD:08000 1 1p36.33 long intergenic non-protein coding RNA 115 miscRNA LINC00115 long intergenic non-protein coding RNA 115 O - 20121230 -9606 79856 SNX22 - - HGNC:16315|Ensembl:ENSG00000157734|HPRD:15412|Vega:OTTHUMG00000132965 15 15q22.31 sorting nexin 22 protein-coding SNX22 sorting nexin 22 O sorting nexin-22 20121230 -9606 79857 FLJ13224 - - - 12 12p11.21 uncharacterized LOC79857 miscRNA - - - - 20121230 -9606 79858 NEK11 - - HGNC:18593|MIM:609779|Ensembl:ENSG00000114670|HPRD:14821|Vega:OTTHUMG00000159654 3 3q22.1 NIMA-related kinase 11 protein-coding NEK11 NIMA-related kinase 11 O NIMA (never in mitosis gene a)- related kinase 11|serine/threonine-protein kinase Nek11 20121230 -9606 79860 FLJ21369 - - - 19 19q13.11 uncharacterized protein FLJ21369 unknown - - - - 20121230 -9606 79861 TUBAL3 - - HGNC:23534|Ensembl:ENSG00000178462|HPRD:08640|Vega:OTTHUMG00000017595 10 10p15.1 tubulin, alpha-like 3 protein-coding TUBAL3 tubulin, alpha-like 3 O tubulin alpha chain-like 3 20121230 -9606 79862 ZNF669 RP11-107G24.2 - HGNC:25736|Ensembl:ENSG00000188295|HPRD:07783|Vega:OTTHUMG00000040869 1 1q44 zinc finger protein 669 protein-coding ZNF669 zinc finger protein 669 O - 20121230 -9606 79863 RBFA - C18orf22|HsT169 HGNC:26120|Ensembl:ENSG00000101546|HPRD:07959|Vega:OTTHUMG00000132923 18 18q23 ribosome binding factor A (putative) protein-coding RBFA ribosome binding factor A (putative) O putative ribosome-binding factor A, mitochondrial 20121230 -9606 79864 C11orf63 - - HGNC:26288|Ensembl:ENSG00000109944|HPRD:08035|Vega:OTTHUMG00000166027 11 11q24.1 chromosome 11 open reading frame 63 protein-coding C11orf63 chromosome 11 open reading frame 63 O uncharacterized protein C11orf63 20121230 -9606 79865 TREML2 UNQ6268/PRO20473 C6orf76|TLT-2|TLT2|dJ238O23.1 HGNC:21092|MIM:609715|Ensembl:ENSG00000112195|HPRD:11646|Vega:OTTHUMG00000016349 6 6p21.1 triggering receptor expressed on myeloid cells-like 2 protein-coding TREML2 triggering receptor expressed on myeloid cells-like 2 O trem-like transcript 2 protein|triggering receptor expressed on myeloid cells-like protein 2 20121230 -9606 79866 BORA RP11-342J4.2 C13orf34 HGNC:24724|MIM:610510|Ensembl:ENSG00000136122|HPRD:13389|Vega:OTTHUMG00000017068 13 13q22.1 bora, aurora kinase A activator protein-coding BORA bora, aurora kinase A activator O aurora borealis|hsBora|protein aurora borealis 20121230 -9606 79867 TCTN2 - C12orf38|MKS8|TECT2 HGNC:25774|MIM:613846|Ensembl:ENSG00000168778|HPRD:07805|Vega:OTTHUMG00000168700 12 12q24.31 tectonic family member 2 protein-coding TCTN2 tectonic family member 2 O tectonic-2 20121230 -9606 79868 ALG13 RP1-298J18.2 CDG1S|CXorf45|GLT28D1|MDS031|YGL047W HGNC:30881|MIM:300776|Ensembl:ENSG00000101901|HPRD:06542|Vega:OTTHUMG00000022209 X Xq23 asparagine-linked glycosylation 13 homolog (S. cerevisiae) protein-coding ALG13 asparagine-linked glycosylation 13 homolog (S. cerevisiae) O UDP-N-acetylglucosamine transferase subunit ALG13 homolog|glycosyltransferase 28 domain-containing protein 1|hematopoietic stem/progenitor cells protein MDS031 20121230 -9606 79869 CPSF7 - CFIm59 HGNC:30098|Ensembl:ENSG00000149532|HPRD:16906|Vega:OTTHUMG00000168198 11 11q12.2 cleavage and polyadenylation specific factor 7, 59kDa protein-coding CPSF7 cleavage and polyadenylation specific factor 7, 59kDa O CPSF 59 kDa subunit|cleavage and polyadenylation specificity factor 59 kDa subunit|cleavage and polyadenylation specificity factor subunit 7|pre mRNA cleavage factor I, 59 kDa subunit|pre-mRNA cleavage factor I, 59 kDa subunit|pre-mRNA cleavage factor Im 59 kDa subunit 20121230 -9606 79870 BAALC - - HGNC:14333|MIM:606602|Ensembl:ENSG00000164929|HPRD:09422|Vega:OTTHUMG00000164782 8 8q22.3 brain and acute leukemia, cytoplasmic protein-coding BAALC brain and acute leukemia, cytoplasmic O brain and acute leukemia cytoplasmic protein 20121230 -9606 79871 RPAP2 - C1orf82 HGNC:25791|MIM:611476|Ensembl:ENSG00000122484|HPRD:07814|Vega:OTTHUMG00000010288 1 1p22.1 RNA polymerase II associated protein 2 protein-coding RPAP2 RNA polymerase II associated protein 2 O RNA polymerase II-associated protein 2|putative RNA polymerase II subunit B1 CTD phosphatase RPAP2 20121230 -9606 79872 CBLL1 - HAKAI|RNF188 HGNC:21225|MIM:606872|Ensembl:ENSG00000105879|HPRD:07590|Vega:OTTHUMG00000154809 7 7q22.3 Cbl proto-oncogene, E3 ubiquitin protein ligase-like 1 protein-coding CBLL1 Cbl proto-oncogene, E3 ubiquitin protein ligase-like 1 O Cas-Br-M (murine) ecotropic retroviral transforming sequence-like 1|E-cadherin binding protein E7|E3 ubiquitin-protein ligase Hakai|RING finger protein 188|c-Cbl-like protein 1|casitas B-lineage lymphoma-transforming sequence-like protein 1 20121230 -9606 79873 NUDT18 - MTH3 HGNC:26194|Ensembl:ENSG00000173566|HPRD:07992|Vega:OTTHUMG00000163774 8 8p21.3 nudix (nucleoside diphosphate linked moiety X)-type motif 18 protein-coding NUDT18 nudix (nucleoside diphosphate linked moiety X)-type motif 18 O mutT human homolog 3|nucleoside diphosphate-linked moiety X motif 18|nudix motif 18 20121230 -9606 79874 RABEP2 - FRA HGNC:24817|MIM:611869|Ensembl:ENSG00000177548|HPRD:17948|Vega:OTTHUMG00000176593 16 16p11.2 rabaptin, RAB GTPase binding effector protein 2 protein-coding RABEP2 rabaptin, RAB GTPase binding effector protein 2 O Rabaptin-5 beta|rab GTPase-binding effector protein 2|rabaptin-5beta 20121230 -9606 79875 THSD4 UNQ9334/PRO34005 ADAMTSL-6|ADAMTSL6|FVSY9334|PRO34005 HGNC:25835|MIM:614476|Ensembl:ENSG00000187720|HPRD:07835|Vega:OTTHUMG00000133389 15 15q23 thrombospondin, type I, domain containing 4 protein-coding THSD4 thrombospondin, type I, domain containing 4 O A disintegrin and metalloproteinase with thrombospondin motifs-like protein 6|ADAMTS-like protein 6|thrombospondin type-1 domain-containing protein 4 20121230 -9606 79876 UBA5 - THIFP1|UBE1DC1 HGNC:23230|MIM:610552|Ensembl:ENSG00000081307|HPRD:15598|Vega:OTTHUMG00000159759 3 3q22.1 ubiquitin-like modifier activating enzyme 5 protein-coding UBA5 ubiquitin-like modifier activating enzyme 5 O UBA5, ubiquitin-activating enzyme E1 homolog|UFM1-activating enzyme|ubiquitin-activating enzyme 5|ubiquitin-activating enzyme E1 domain-containing protein 1|ubiquitin-activating enzyme E1-domain containing 1|ubiquitin-like modifier-activating enzyme 5 20121230 -9606 79877 DCAKD - - HGNC:26238|Ensembl:ENSG00000172992|HPRD:08012|Vega:OTTHUMG00000179947 17 17q21.31 dephospho-CoA kinase domain containing protein-coding DCAKD dephospho-CoA kinase domain containing O dephospho-CoA kinase domain-containing protein 20121230 -9606 79879 CCDC134 RP5-821D11.6 dJ821D11.3 HGNC:26185|Ensembl:ENSG00000100147|HPRD:07988|Vega:OTTHUMG00000151262 22 22q13.2 coiled-coil domain containing 134 protein-coding CCDC134 coiled-coil domain containing 134 O coiled-coil domain-containing protein 134 20121230 -9606 79882 ZC3H14 - MSUT-2|NY-REN-37|SUT2|UKp68 HGNC:20509|MIM:613279|Ensembl:ENSG00000100722|HPRD:13348|Vega:OTTHUMG00000170803 14 14q31.3 zinc finger CCCH-type containing 14 protein-coding ZC3H14 zinc finger CCCH-type containing 14 O mammalian suppressor of tau pathology-2|nuclear protein UKp68|renal carcinoma antigen NY-REN-37|zinc finger CCCH domain-containing protein 14 20121230 -9606 79883 PODNL1 - SLRR5B HGNC:26275|Ensembl:ENSG00000132000|HPRD:08027|Vega:OTTHUMG00000181853 19 19p13.12 podocan-like 1 protein-coding PODNL1 podocan-like 1 O podocan-like protein 1 20121230 -9606 79884 MAP9 - ASAP HGNC:26118|MIM:610070|Ensembl:ENSG00000164114|HPRD:07957|Vega:OTTHUMG00000133628 4 4q32.1 microtubule-associated protein 9 protein-coding MAP9 microtubule-associated protein 9 O aster-associated protein 20121230 -9606 79885 HDAC11 - HD11 HGNC:19086|MIM:607226|Ensembl:ENSG00000163517|HPRD:09146|Vega:OTTHUMG00000129800 3 3p25.1 histone deacetylase 11 protein-coding HDAC11 histone deacetylase 11 O - 20121230 -9606 79886 CAAP1 - C9orf82|CAAP|RP11-337A23.1 HGNC:25834|Ensembl:ENSG00000120159|HPRD:12981|Vega:OTTHUMG00000019706 9 9p21.2 caspase activity and apoptosis inhibitor 1 protein-coding CAAP1 caspase activity and apoptosis inhibitor 1 O conserved anti-apoptotic protein 20121230 -9606 79887 PLBD1 - - HGNC:26215|Ensembl:ENSG00000121316|HPRD:08660|Vega:OTTHUMG00000168821 12 12p13.1 phospholipase B domain containing 1 protein-coding PLBD1 phospholipase B domain containing 1 O LAMA-like protein 1|PLB homolog 1|lamina ancestor homolog 1|phospholipase B domain-containing protein 1|phospholipase B-like 1|putative phospholipase B-like 1 20121230 -9606 79888 LPCAT1 - AYTL2|PFAAP3|lpcat HGNC:25718|MIM:610472|Ensembl:ENSG00000153395|HPRD:08572|Vega:OTTHUMG00000131017 5 5p15.33 lysophosphatidylcholine acyltransferase 1 protein-coding LPCAT1 lysophosphatidylcholine acyltransferase 1 O 1-acylglycerophosphocholine O-acyltransferase|1-alkylglycerophosphocholine O-acetyltransferase|LPC acyltransferase 1|LPCAT-1|acetyl-CoA:lyso-PAF acetyltransferase|acetyl-CoA:lyso-platelet-activating factor acetyltransferase|acyl-CoA:lysophosphatidylcholine acyltransferase 1|acyltransferase like 2|acyltransferase-like 2|lyso-PAF acetyltransferase|lysoPAFAT|lysoPC acyltransferase 1|phosphonoformate immuno-associated protein 3|regulated by phosphonoformate 20121230 -9606 79890 RIN3 - - HGNC:18751|MIM:610223|Ensembl:ENSG00000100599|HPRD:11494|Vega:OTTHUMG00000171198 14 14q32.12 Ras and Rab interactor 3 protein-coding RIN3 Ras and Rab interactor 3 O RAB5 interacting protein 3|ras and Rab interactor 3|ras interaction/interference protein 3 20121230 -9606 79891 ZNF671 - - HGNC:26279|Ensembl:ENSG00000083814|HPRD:08031 19 19q13.43 zinc finger protein 671 protein-coding ZNF671 zinc finger protein 671 O - 20121230 -9606 79892 MCMBP - C10orf119|MCM-BP HGNC:25782|MIM:610909|Ensembl:ENSG00000197771|HPRD:07624|Vega:OTTHUMG00000019159 10 10q26.11 minichromosome maintenance complex binding protein protein-coding MCMBP minichromosome maintenance complex binding protein O MCM-binding protein|mini-chromosome maintenance complex-binding protein|minichromosome maintenance complex-binding protein 20121230 -9606 79893 GGNBP2 - DIF-3|DIF3|LCRG1|LZK1|ZFP403|ZNF403 HGNC:19357|MIM:612275|Ensembl:ENSG00000005955|HPRD:18337|Vega:OTTHUMG00000133063 17 17q12 gametogenetin binding protein 2 protein-coding GGNBP2 gametogenetin binding protein 2 O C3HC4-type zinc finger protein|gametogenetin-binding protein 2|laryngeal carcinoma related gene 1|laryngeal carcinoma-related protein 1|zinc finger protein 403 20121230 -9606 79894 ZNF672 - - HGNC:26179|Ensembl:ENSG00000171161|HPRD:07983|Vega:OTTHUMG00000040377 1 1q44 zinc finger protein 672 protein-coding ZNF672 zinc finger protein 672 O - 20121230 -9606 79895 ATP8B4 - ATPIM HGNC:13536|MIM:609123|Ensembl:ENSG00000104043|HPRD:10681|Vega:OTTHUMG00000172368 15 15q21.2 ATPase, class I, type 8B, member 4 protein-coding ATP8B4 ATPase, class I, type 8B, member 4 O potential phospholipid-transporting ATPase IM|probable phospholipid-transporting ATPase IM 20121230 -9606 79896 THNSL1 - TSH1 HGNC:26160|MIM:611260|Ensembl:ENSG00000185875|HPRD:07974|Vega:OTTHUMG00000017828 10 10p12.1 threonine synthase-like 1 (S. cerevisiae) protein-coding THNSL1 threonine synthase-like 1 (S. cerevisiae) O threonine synthase-like 1 20121230 -9606 79897 RPP21 DAQB-170I5.4 C6orf135|CAT60 HGNC:21300|MIM:612524|Ensembl:ENSG00000241370|HPRD:15275|Vega:OTTHUMG00000031220 6 6p22.1 ribonuclease P/MRP 21kDa subunit protein-coding RPP21 ribonuclease P/MRP 21kDa subunit O RNaseP protein p21|ribonuclease P protein subunit p21|ribonucleoprotein V 20121230 -9606 79898 ZNF613 - - HGNC:25827|Ensembl:ENSG00000176024|HPRD:15873 19 19q13.41 zinc finger protein 613 protein-coding ZNF613 zinc finger protein 613 O - 20121230 -9606 79899 PRR5L - PROTOR2 HGNC:25878|MIM:611728|Ensembl:ENSG00000135362|HPRD:07854|Vega:OTTHUMG00000166334 11 11p13-p12 proline rich 5 like protein-coding PRR5L proline rich 5 like O Protein observed with Rictor-2|proline-rich protein 5-like|protor-2 20121230 -9606 79901 CYBRD1 - DCYTB|FRRS3 HGNC:20797|MIM:605745|Ensembl:ENSG00000071967|HPRD:05764|Vega:OTTHUMG00000132260 2 2q31.1 cytochrome b reductase 1 protein-coding CYBRD1 cytochrome b reductase 1 O duodenal cytochrome b|ferric-chelate reductase 3 20121230 -9606 79902 NUP85 - Nup75 HGNC:8734|MIM:170285|Ensembl:ENSG00000125450|HPRD:01363|Vega:OTTHUMG00000179482 17 17q25.1 nucleoporin 85kDa protein-coding NUP85 nucleoporin 85kDa O 85 kDa nucleoporin|frount|nuclear pore complex protein Nup85|nucleoporin Nup75|nucleoporin Nup85|pericentrin-1 20121230 -9606 79903 NAA60 UNQ2771/PRO7155 HAT4|NAT15 HGNC:25875|MIM:614246|Ensembl:ENSG00000122390|HPRD:07852|Vega:OTTHUMG00000150268 16 16p13.3 N(alpha)-acetyltransferase 60, NatF catalytic subunit protein-coding NAA60 N(alpha)-acetyltransferase 60, NatF catalytic subunit O N-acetyltransferase 15 (GCN5-related, putative)|N-alpha-acetyltransferase 60|histone acetyltransferase type B protein 4|natF catalytic subunit 20121230 -9606 79904 FLJ11710 - - - 17 17q23.2 uncharacterized protein FLJ11710 unknown - - - - 20120126 -9606 79905 TMC7 - - HGNC:23000|Ensembl:ENSG00000170537|HPRD:15517|Vega:OTTHUMG00000131456 16 16p12.3 transmembrane channel-like 7 protein-coding TMC7 transmembrane channel-like 7 O transmembrane channel-like protein 7 20121230 -9606 79906 MORN1 RP4-740C4.1 - HGNC:25852|Ensembl:ENSG00000116151|HPRD:07843|Vega:OTTHUMG00000001402 1 1p36.33-p36.32 MORN repeat containing 1 protein-coding MORN1 MORN repeat containing 1 O MORN repeat-containing protein 1 20121230 -9606 79908 BTNL8 UNQ702/PRO1347 - HGNC:26131|Ensembl:ENSG00000113303|HPRD:12549|Vega:OTTHUMG00000130932 5 5q35.3 butyrophilin-like 8 protein-coding BTNL8 butyrophilin-like 8 O B7-H5 costimulatory molecule|butyrophilin-like protein 8 20121230 -9606 79912 PYROXD1 - - HGNC:26162|Ensembl:ENSG00000121350|HPRD:07976|Vega:OTTHUMG00000169129 12 12p12.1 pyridine nucleotide-disulphide oxidoreductase domain 1 protein-coding PYROXD1 pyridine nucleotide-disulphide oxidoreductase domain 1 O pyridine nucleotide-disulfide oxidoreductase domain-containing protein 1 20121230 -9606 79913 ACTR5 - Arp5|INO80M HGNC:14671|Ensembl:ENSG00000101442|HPRD:08575|Vega:OTTHUMG00000032456 20 20q11.23 ARP5 actin-related protein 5 homolog (yeast) protein-coding ACTR5 ARP5 actin-related protein 5 homolog (yeast) O INO80 complex subunit M|actin-related protein 5|hARP5|sarcoma antigen NY-SAR-16 20121230 -9606 79915 ATAD5 - C17orf41|ELG1|FRAG1 HGNC:25752|MIM:609534|Ensembl:ENSG00000176208|HPRD:07792|Vega:OTTHUMG00000132794 17 17q11.2 ATPase family, AAA domain containing 5 protein-coding ATAD5 ATPase family, AAA domain containing 5 O ATPase family AAA domain-containing protein 5|chromosome fragility associated gene 1|chromosome fragility-associated gene 1 protein|enhanced level of genomic instability 1 homolog 20121230 -9606 79917 MAGIX - JM10|PDZX HGNC:30006|Ensembl:ENSG00000017621|HPRD:06538|Vega:OTTHUMG00000034501 X Xp11.23 MAGI family member, X-linked protein-coding MAGIX MAGI family member, X-linked O PDZ domain containing protein|PDZ domain containing, X chromosome|PDZ domain-containing protein MAGIX 20121230 -9606 79918 SETD6 - - HGNC:26116|Ensembl:ENSG00000103037|HPRD:07956|Vega:OTTHUMG00000150276 16 16q21 SET domain containing 6 protein-coding SETD6 SET domain containing 6 O N-lysine methyltransferase SETD6|SET domain-containing protein 6 20121230 -9606 79919 C2orf54 - - HGNC:26216|Ensembl:ENSG00000172478|HPRD:08003|Vega:OTTHUMG00000151906 2 2q37.3 chromosome 2 open reading frame 54 protein-coding C2orf54 chromosome 2 open reading frame 54 O uncharacterized protein C2orf54 20121230 -9606 79921 TCEAL4 GHc-857G6.2 NPD017 HGNC:26121|Ensembl:ENSG00000133142|HPRD:06537|Vega:OTTHUMG00000022103 X Xq22.2 transcription elongation factor A (SII)-like 4 protein-coding TCEAL4 transcription elongation factor A (SII)-like 4 O TCEA-like protein 4|transcription elongation factor A protein-like 4|transcription elongation factor S-II protein-like 4 20121230 -9606 79922 MRM1 - - HGNC:26202|Ensembl:ENSG00000129282|HPRD:08656|Vega:OTTHUMG00000180446 17 17q12 mitochondrial rRNA methyltransferase 1 homolog (S. cerevisiae) protein-coding MRM1 mitochondrial rRNA methyltransferase 1 homolog (S. cerevisiae) O mitochondrial large ribosomal RNA ribose methylase|rRNA methyltransferase 1, mitochondrial 20121230 -9606 79923 NANOG - - HGNC:20857|MIM:607937|Ensembl:ENSG00000111704|HPRD:06397|Vega:OTTHUMG00000166019 12 12p13.31 Nanog homeobox protein-coding NANOG Nanog homeobox O hNanog|homeobox protein NANOG|homeobox transcription factor Nanog|homeobox transcription factor Nanog-delta 48 20121230 -9606 79924 ADM2 RP4-579N16.10-002 AM2|dJ579N16.4 HGNC:28898|MIM:608682|Ensembl:ENSG00000128165|HPRD:10563|Vega:OTTHUMG00000150202 22 22q13.33 adrenomedullin 2 protein-coding ADM2 adrenomedullin 2 O intermedin 20121230 -9606 79925 SPEF2 - CT122|KPL2 HGNC:26293|MIM:610172|Ensembl:ENSG00000152582|HPRD:11181|Vega:OTTHUMG00000131111 5 5p13.2 sperm flagellar 2 protein-coding SPEF2 sperm flagellar 2 O cancer/testis antigen 122|sperm flagellar protein 2 20121230 -9606 79927 FAM110D - GRRP1|RP11-96L14.5 HGNC:25860|Ensembl:ENSG00000197245|HPRD:07848|Vega:OTTHUMG00000007537 1 1p36.11 family with sequence similarity 110, member D protein-coding FAM110D family with sequence similarity 110, member D O glycine/arginine rich protein 1|glycine/arginine-rich protein 1|protein FAM110D 20121230 -9606 79929 MAP6D1 - MAPO6D1|SL21 HGNC:25753|MIM:610593|Ensembl:ENSG00000180834|HPRD:07793|Vega:OTTHUMG00000156900 3 3q27.1 MAP6 domain containing 1 protein-coding MAP6D1 MAP6 domain containing 1 O 21 kDa STOP-like protein|MAP6 domain-containing protein 1|STOP-like protein 21 20121230 -9606 79930 DOK3 - DOKL HGNC:24583|MIM:611435|Ensembl:ENSG00000146094|HPRD:16834|Vega:OTTHUMG00000130850 5 5q35.3 docking protein 3 protein-coding DOK3 docking protein 3 O Dok-like protein|downstream of tyrosine kinase 3 20121230 -9606 79931 TNIP3 - ABIN-3|LIND HGNC:19315|MIM:608019|Ensembl:ENSG00000050730|HPRD:16268|Vega:OTTHUMG00000132969 4 4q27 TNFAIP3 interacting protein 3 protein-coding TNIP3 TNFAIP3 interacting protein 3 O A20-binding inhibitor of NF-kappa-B activation 3|ABIN-3 beta|Listeria induced|TNFAIP3-interacting protein 3|TNFAIP3-interacting protein 3 beta|TNIP3 beta|listeria-induced gene protein 20121230 -9606 79932 KIAA0319L PP791 - HGNC:30071|MIM:613535|Ensembl:ENSG00000142687|HPRD:11164|Vega:OTTHUMG00000004370 1 1p34.2 KIAA0319-like protein-coding KIAA0319L KIAA0319-like O dyslexia-associated protein KIAA0319-like protein|polycystic kidney disease 1-related 20121230 -9606 79933 SYNPO2L - - HGNC:23532|Ensembl:ENSG00000166317|HPRD:15457|Vega:OTTHUMG00000018471 10 10q22.2 synaptopodin 2-like protein-coding SYNPO2L synaptopodin 2-like O synaptopodin 2-like protein 20121230 -9606 79934 ADCK4 - - HGNC:19041|Ensembl:ENSG00000123815|HPRD:10632 19 19q13.2 aarF domain containing kinase 4 protein-coding ADCK4 aarF domain containing kinase 4 O uncharacterized aarF domain-containing protein kinase 4 20121230 -9606 79935 CNTD2 - - HGNC:25805|Ensembl:ENSG00000105219|HPRD:08581|Vega:OTTHUMG00000160481 19 19q13.2 cyclin N-terminal domain containing 2 protein-coding CNTD2 cyclin N-terminal domain containing 2 O cyclin N-terminal domain-containing protein 2 20121230 -9606 79937 CNTNAP3 RP11-204I2.1 CASPR3|CNTNAP3A|RP11-138L21.1|RP11-290L7.1 HGNC:13834|MIM:610517|Ensembl:ENSG00000106714|HPRD:10842|Vega:OTTHUMG00000019954 9 9p13.1 contactin associated protein-like 3 protein-coding CNTNAP3 contactin associated protein-like 3 O cell recognition molecule Caspr3|contactin-associated protein-like 3 20121230 -9606 79939 SLC35E1 PSEC0038 - HGNC:20803|Ensembl:ENSG00000127526|HPRD:15373|Vega:OTTHUMG00000152575 19 19p13.11 solute carrier family 35, member E1 protein-coding SLC35E1 solute carrier family 35, member E1 O solute carrier family 35 member E1 20121230 -9606 79940 LINC00472 - C6orf155|dJ288M22.3 HGNC:21380|HPRD:12860 6 6q13 long intergenic non-protein coding RNA 472 miscRNA LINC00472 long intergenic non-protein coding RNA 472 O - 20121230 -9606 79943 ZNF696 - - HGNC:25872|Ensembl:ENSG00000185730|HPRD:08595|Vega:OTTHUMG00000164957 8 8q24.3 zinc finger protein 696 protein-coding ZNF696 zinc finger protein 696 O - 20121230 -9606 79944 L2HGDH - C14orf160 HGNC:20499|MIM:609584|Ensembl:ENSG00000087299|HPRD:12640|Vega:OTTHUMG00000140289 14 14q21.3 L-2-hydroxyglutarate dehydrogenase protein-coding L2HGDH L-2-hydroxyglutarate dehydrogenase O 2-hydroxyglutarate dehydrogenase|L-2-hydroxyglutarate dehydrogenase, mitochondrial|L-alpha-hydroxyglutarate dehydrogenase|alpha-hydroxyglutarate oxidoreductase|alpha-ketoglutarate reductase|duranin 20121230 -9606 79946 C10orf95 RP11-18I14.6 - HGNC:25880|Ensembl:ENSG00000120055|HPRD:10701|Vega:OTTHUMG00000018959 10 10q24.32 chromosome 10 open reading frame 95 protein-coding C10orf95 chromosome 10 open reading frame 95 O uncharacterized protein C10orf95 20121230 -9606 79947 DHDDS RP3-476K8.2 CIT|CPT|DS|HDS|RP59 HGNC:20603|MIM:608172|Ensembl:ENSG00000117682|HPRD:12183|Vega:OTTHUMG00000003554 1 1p36.11 dehydrodolichyl diphosphate synthase protein-coding DHDDS dehydrodolichyl diphosphate synthase O cis-IPTase|cis-isoprenyltransferase|cis-prenyl transferase|dedol-PP synthase|epididymis tissue protein Li 189m 20121230 -9606 79948 LPPR3 - LPR3|PRG-2|PRG2 MIM:610391|Ensembl:ENSG00000129951|HPRD:07755|Vega:OTTHUMG00000164523 19 19p13.3 lipid phosphate phosphatase-related protein type 3 protein-coding - - - PAP-2-like protein 2|plasticity-related gene 2 protein 20121230 -9606 79949 PLEKHS1 RP11-211N11.2 C10orf81|HEL185|bA211N11.2 HGNC:26285|Ensembl:ENSG00000148735|HPRD:12591|Vega:OTTHUMG00000019074 10 10q25.3 pleckstrin homology domain containing, family S member 1 protein-coding PLEKHS1 pleckstrin homology domain containing, family S member 1 O PH domain-containing family S member 1|PH domain-containing protein C10orf81|epididymis luminal protein 185|pleckstrin homology domain-containing family S member 1 20121230 -9606 79953 SYNDIG1 RP5-860P4.1 C20orf39|DSPC2|IFITMD5|TMEM90B HGNC:15885|MIM:614311|Ensembl:ENSG00000101463|HPRD:12766|Vega:OTTHUMG00000032104 20 20p11.21 synapse differentiation inducing 1 protein-coding SYNDIG1 synapse differentiation inducing 1 O dispanin subfamily C member 2|interferon induced transmembrane protein domain containing 5|synapse differentiation induced gene 1|synapse differentiation-inducing gene protein 1|transmembrane protein 90B 20121230 -9606 79954 NOL10 - PQBP5 HGNC:25862|Ensembl:ENSG00000115761|HPRD:07849|Vega:OTTHUMG00000119023 2 2p25.1 nucleolar protein 10 protein-coding NOL10 nucleolar protein 10 O H_NH0074G24.1|polyglutamine binding protein 5 20121230 -9606 79955 PDZD7 RP11-108L7.9 PDZK7 HGNC:26257|MIM:612971|Ensembl:ENSG00000186862|HPRD:15114|Vega:OTTHUMG00000018916 10 10q24.31 PDZ domain containing 7 protein-coding PDZD7 PDZ domain containing 7 O PDZ domain-containing protein 7 20121230 -9606 79956 ERMP1 RP11-207C16.6 FXNA|KIAA1815|bA207C16.3 HGNC:23703|MIM:611156|Ensembl:ENSG00000099219|HPRD:17227|Vega:OTTHUMG00000019508 9 9p24 endoplasmic reticulum metallopeptidase 1 protein-coding ERMP1 endoplasmic reticulum metallopeptidase 1 O Felix-ina|aminopeptidase Fxna|bA207C16.3 (novel protein similar to predicted yeast, plant and worm proteins) 20121230 -9606 79957 PAQR6 RP11-54H19.6 - HGNC:30132|MIM:614579|Ensembl:ENSG00000160781|HPRD:17820|Vega:OTTHUMG00000017490 1 1q22 progestin and adipoQ receptor family member VI protein-coding PAQR6 progestin and adipoQ receptor family member VI O progestin and adipoQ receptor family member 6 20121230 -9606 79958 DENND1C - FAM31C HGNC:26225|MIM:613634|Ensembl:ENSG00000205744|HPRD:13304|Vega:OTTHUMG00000180853 19 19p13.3 DENN/MADD domain containing 1C protein-coding DENND1C DENN/MADD domain containing 1C O DENN domain-containing protein 1C|connecdenn 3|family with sequence similarity 31, member C 20121230 -9606 79959 CEP76 - C18orf9|HsT1705 HGNC:25727|Ensembl:ENSG00000101624|HPRD:12694|Vega:OTTHUMG00000131701 18 18p11.21 centrosomal protein 76kDa protein-coding CEP76 centrosomal protein 76kDa O centrosomal protein of 76 kDa 20121230 -9606 79960 PHF17 - JADE1 HGNC:30027|MIM:610514|Ensembl:ENSG00000077684|HPRD:10151|Vega:OTTHUMG00000161176 4 4q26-q27 PHD finger protein 17 protein-coding PHF17 PHD finger protein 17 O PHD protein Jade-1|gene for apoptosis and differentiation in epithelia|protein Jade-1 20121230 -9606 79961 DENND2D RP5-1180E21.2 - HGNC:26192|Ensembl:ENSG00000162777|HPRD:08655|Vega:OTTHUMG00000012356 1 1p13.3 DENN/MADD domain containing 2D protein-coding DENND2D DENN/MADD domain containing 2D O DENN domain-containing protein 2D|RP5-1180E21.2 20121230 -9606 79962 DNAJC22 - wus HGNC:25802|Ensembl:ENSG00000178401|HPRD:08580|Vega:OTTHUMG00000169487 12 12q13.12 DnaJ (Hsp40) homolog, subfamily C, member 22 protein-coding DNAJC22 DnaJ (Hsp40) homolog, subfamily C, member 22 O dnaJ homolog subfamily C member 22|wurst homolog 20121230 -9606 79963 ABCA11P - ABCA11|EST1133530 HGNC:31|HPRD:08597 4 4p16.3 ATP-binding cassette, sub-family A (ABC1), member 11, pseudogene pseudo ABCA11P ATP-binding cassette, sub-family A (ABC1), member 11, pseudogene O - 20121230 -9606 79966 SCD5 - ACOD4|FADS4|HSCD5|SCD2|SCD4 HGNC:21088|MIM:608370|Ensembl:ENSG00000145284|HPRD:09756|Vega:OTTHUMG00000130293 4 4q21.22 stearoyl-CoA desaturase 5 protein-coding SCD5 stearoyl-CoA desaturase 5 O acyl-CoA-desaturase 4|stearoyl-CoA 9-desaturase|stearoyl-CoA desaturase 4 20121230 -9606 79968 WDR76 - CDW14 HGNC:25773|Ensembl:ENSG00000092470|HPRD:07804|Vega:OTTHUMG00000060143 15 15q15.3 WD repeat domain 76 protein-coding WDR76 WD repeat domain 76 O WD repeat-containing protein 76 20121230 -9606 79969 ATAT1 DADB-129D20.8 C6orf134|MEC17|Nbla00487|TAT HGNC:21186|Ensembl:ENSG00000137343|HPRD:12850|Vega:OTTHUMG00000031219 6 6p21.33 alpha tubulin acetyltransferase 1 protein-coding ATAT1 alpha tubulin acetyltransferase 1 O acetyltransferase mec-17 homolog|alpha-TAT|alpha-tubulin N-acetyltransferase 20121230 -9606 79970 ZNF767 UNQ5808 - HGNC:21884|HPRD:07791 7 7q36.1 zinc finger family member 767 pseudo ZNF767 zinc finger family member 767 O - 20121230 -9606 79971 WLS RP11-518D3.2 C1orf139|EVI|GPR177|MRP HGNC:30238|MIM:611514|Ensembl:ENSG00000116729|HPRD:10980|Vega:OTTHUMG00000009153 1 1p31.3 wntless homolog (Drosophila) protein-coding WLS wntless homolog (Drosophila) O G protein-coupled receptor 177|integral membrane protein GPR177|protein evenness interrupted homolog|protein wntless homolog|putative NF-kappa-B-activating protein 373|putative NFkB activating protein 373 20121230 -9606 79973 ZNF442 - - HGNC:20877|Ensembl:ENSG00000198342|HPRD:15795|Vega:OTTHUMG00000156411 19 19p13.2 zinc finger protein 442 protein-coding ZNF442 zinc finger protein 442 O - 20121230 -9606 79974 CPED1 UNQ9432/PRO34713 C7orf58 HGNC:26159|Ensembl:ENSG00000106034|HPRD:08647|Vega:OTTHUMG00000156982 7 7q31.31 cadherin-like and PC-esterase domain containing 1 protein-coding CPED1 cadherin-like and PC-esterase domain containing 1 O cadherin-like and PC-esterase domain-containing protein 1 20121230 -9606 79977 GRHL2 - BOM|DFNA28|TFCP2L3 HGNC:2799|MIM:608576|Ensembl:ENSG00000083307|HPRD:10545|Vega:OTTHUMG00000149915 8 8q22.3 grainyhead-like 2 (Drosophila) protein-coding GRHL2 grainyhead-like 2 (Drosophila) O brother of mammalian grainyhead|grainyhead-like protein 2 homolog|transcription factor CP2-like 3 20121230 -9606 79979 TRMT2B RP3-341D10.3 CXorf34|dJ341D10.3 HGNC:25748|Ensembl:ENSG00000188917|HPRD:06520|Vega:OTTHUMG00000022017 X Xq22.1 tRNA methyltransferase 2 homolog B (S. cerevisiae) protein-coding TRMT2B tRNA methyltransferase 2 homolog B (S. cerevisiae) O TRM2 homolog|TRM2 tRNA methyltransferase 2 homolog B|tRNA (uracil(54)-C(5))-methyltransferase homolog|tRNA (uracil-5-)-methyltransferase homolog 20121230 -9606 79980 DSN1 RP3-469A13.1 C20orf172|KNL3|MIS13|dJ469A13.2|hKNL-3 HGNC:16165|MIM:609175|Ensembl:ENSG00000149636|HPRD:16455|Vega:OTTHUMG00000032396 20 20q11.23 DSN1, MIND kinetochore complex component, homolog (S. cerevisiae) protein-coding DSN1 DSN1, MIND kinetochore complex component, homolog (S. cerevisiae) O kinetochore null 3 homolog|kinetochore-associated protein DSN1 homolog 20121230 -9606 79981 FRMD1 RP11-164L23.1 bA164L23.1 HGNC:21240|Ensembl:ENSG00000153303|HPRD:10997|Vega:OTTHUMG00000016037 6 6q27 FERM domain containing 1 protein-coding FRMD1 FERM domain containing 1 O FERM domain-containing protein 1 20121230 -9606 79982 DNAJB14 UNQ9427/PRO34683 EGNR9427|PRO34683 HGNC:25881|Ensembl:ENSG00000164031|HPRD:07013|Vega:OTTHUMG00000131049 4 4q23 DnaJ (Hsp40) homolog, subfamily B, member 14 protein-coding DNAJB14 DnaJ (Hsp40) homolog, subfamily B, member 14 O dnaJ homolog subfamily B member 14 20121230 -9606 79983 POF1B RP1-75N13.2 POF|POF2B HGNC:13711|MIM:300603|Ensembl:ENSG00000124429|HPRD:06679|Vega:OTTHUMG00000021934 X Xq21.2 premature ovarian failure, 1B protein-coding POF1B premature ovarian failure, 1B O premature ovarian failure protein 1B|protein POF1B 20121230 -9606 79986 ZNF702P - ZNF702 HGNC:25775|HPRD:07806 19 19q13.41 zinc finger protein 702, pseudogene pseudo ZNF702P zinc finger protein 702, pseudogene O - 20121230 -9606 79987 SVEP1 - C9orf13|CCP22|POLYDOM|SEL-OB|SELOB HGNC:15985|MIM:611691|Ensembl:ENSG00000165124|Vega:OTTHUMG00000020482 9 9q32 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 protein-coding SVEP1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 O CCP module-containing protein 22|selectin-like osteoblast-derived protein|selectin-like protein|serologically defined breast cancer antigen NY-BR-38|sushi, von Willebrand factor type A, EGF and pentraxin domain-containing protein 1 20121230 -9606 79989 TTC26 - DYF13|dyf-13 HGNC:21882|Ensembl:ENSG00000105948|HPRD:07776|Vega:OTTHUMG00000157472 7 7q34 tetratricopeptide repeat domain 26 protein-coding TTC26 tetratricopeptide repeat domain 26 O TPR repeat protein 26|tetratricopeptide repeat protein 26 20121230 -9606 79990 PLEKHH3 - - HGNC:26105|Ensembl:ENSG00000068137|HPRD:13381|Vega:OTTHUMG00000180641 17 17q21.2 pleckstrin homology domain containing, family H (with MyTH4 domain) member 3 protein-coding PLEKHH3 pleckstrin homology domain containing, family H (with MyTH4 domain) member 3 O PH domain-containing family H member 3|pleckstrin homology domain-containing family H member 3 20121230 -9606 79991 OBFC1 - AAF-44|AAF44|RP11-541N10.2|RPA-32|STN1|bA541N10.2 HGNC:26200|MIM:613128|Ensembl:ENSG00000107960|HPRD:14872|Vega:OTTHUMG00000018996 10 10q24.33 oligonucleotide/oligosaccharide-binding fold containing 1 protein-coding OBFC1 oligonucleotide/oligosaccharide-binding fold containing 1 O CST complex subunit STN1|alpha accessory factor 44|oligonucleotide/oligosaccharide-binding fold-containing protein 1|replication protein A 32 kDa subunit|suppressor of cdc thirteen homolog 20121230 -9606 79992 AGPAT4-IT1 - C6orf59|NCRNA00241 HGNC:20988|HPRD:12889 6 6q26 AGPAT4 intronic transcript 1 (non-protein coding) miscRNA AGPAT4-IT1 AGPAT4 intronic transcript 1 (non-protein coding) O - 20121230 -9606 79993 ELOVL7 - - HGNC:26292|MIM:614451|Ensembl:ENSG00000164181|HPRD:18700|Vega:OTTHUMG00000162254 5 5q12.1 ELOVL fatty acid elongase 7 protein-coding ELOVL7 ELOVL fatty acid elongase 7 O 3-keto acyl-CoA synthase ELOVL7|ELOVL FA elongase 7|ELOVL family member 7, elongation of long chain fatty acids|elongation of very long chain fatty acids protein 7|very-long-chain 3-oxoacyl-CoA synthase 7 20121230 -9606 79998 ANKRD53 - - HGNC:25691|Ensembl:ENSG00000144031|HPRD:07762|Vega:OTTHUMG00000129712 2 2p13.3 ankyrin repeat domain 53 protein-coding ANKRD53 ankyrin repeat domain 53 O ankyrin repeat domain-containing protein 53 20121230 -9606 79999 LOC79999 - - - 17 17p11.2 uncharacterized LOC79999 unknown - - - - 20121230 -9606 80000 GREB1L - C18orf6|KIAA1772 HGNC:31042|Ensembl:ENSG00000141449|HPRD:11161|Vega:OTTHUMG00000178892 18 18q11.2 growth regulation by estrogen in breast cancer-like protein-coding GREB1L growth regulation by estrogen in breast cancer-like O GREB1-like protein 20121230 -9606 80003 PCNXL2 - - HGNC:8736|Ensembl:ENSG00000135749|HPRD:15108|Vega:OTTHUMG00000037824 1 1q42.2 pecanex-like 2 (Drosophila) protein-coding PCNXL2 pecanex-like 2 (Drosophila) O pecanex-like protein 2 20121230 -9606 80004 ESRP2 PP7059 RBM35B HGNC:26152|MIM:612960|Ensembl:ENSG00000103067|HPRD:07971|Vega:OTTHUMG00000137557 16 16q22.1 epithelial splicing regulatory protein 2 protein-coding ESRP2 epithelial splicing regulatory protein 2 O RNA binding motif protein 35A|RNA binding motif protein 35B|RNA-binding motif protein 35B|RNA-binding protein 35B 20121230 -9606 80005 DOCK5 - - HGNC:23476|Ensembl:ENSG00000147459|HPRD:09925|Vega:OTTHUMG00000131991 8 8p21.2 dedicator of cytokinesis 5 protein-coding DOCK5 dedicator of cytokinesis 5 O dedicator of cytokinesis protein 5 20121230 -9606 80006 C5orf44 - - HGNC:25828|Ensembl:ENSG00000113597|HPRD:07832|Vega:OTTHUMG00000163649 5 5q12.3 chromosome 5 open reading frame 44 protein-coding C5orf44 chromosome 5 open reading frame 44 O UPF0533 protein C5orf44 20121230 -9606 80007 C10orf88 - - HGNC:25822|Ensembl:ENSG00000119965|HPRD:18531|Vega:OTTHUMG00000019190 10 10q26.13 chromosome 10 open reading frame 88 protein-coding C10orf88 chromosome 10 open reading frame 88 O uncharacterized protein C10orf88 20121230 -9606 80008 TMEM156 - - HGNC:26260|Ensembl:ENSG00000121895|HPRD:08022|Vega:OTTHUMG00000128582 4 4p14 transmembrane protein 156 protein-coding TMEM156 transmembrane protein 156 O - 20121230 -9606 80010 RMI1 - BLAP75|C9orf76|FAAP75|RP11-346I8.1 HGNC:25764|MIM:610404|Ensembl:ENSG00000178966|HPRD:09867|Vega:OTTHUMG00000020113 9 9q21.32 RMI1, RecQ mediated genome instability 1, homolog (S. cerevisiae) protein-coding RMI1 RMI1, RecQ mediated genome instability 1, homolog (S. cerevisiae) O BLM-associated polypeptide, 75 kDa|BLM-associated protein 75 kDa|homolog of yeast RecQ-mediated genome instability 1 (RMI1)|recQ-mediated genome instability protein 1 20121230 -9606 80011 FAM192A CDA10 C16orf94|CDA018|NIP30 HGNC:29856|Ensembl:ENSG00000172775|HPRD:11389|Vega:OTTHUMG00000176660 16 16q13 family with sequence similarity 192, member A protein-coding FAM192A family with sequence similarity 192, member A O NEFA-interacting nuclear protein NIP30|protein FAM192A 20121230 -9606 80012 PHC3 - EDR3|HPH3 HGNC:15682|Ensembl:ENSG00000173889|HPRD:10149|Vega:OTTHUMG00000158777 3 3q26.2 polyhomeotic homolog 3 (Drosophila) protein-coding PHC3 polyhomeotic homolog 3 (Drosophila) O early development regulator 3|early development regulatory protein 3|homolog of polyhomeotic 3|polyhomeotic like 3|polyhomeotic-like protein 3 20121230 -9606 80013 FAM188A MSTP126 C10orf97|CARP|DERP5|MST126|RP11-394I23.1|my042 HGNC:23578|MIM:611649|Ensembl:ENSG00000148481|HPRD:10702|Vega:OTTHUMG00000017734 10 10p13 family with sequence similarity 188, member A protein-coding FAM188A family with sequence similarity 188, member A O CARD-containing protein|caspase recruitment domain containing pro-apoptotic protein|dermal papilla-derived protein 5|protein FAM188A 20121230 -9606 80014 WWC2 - BOMB HGNC:24148|Ensembl:ENSG00000151718|HPRD:12529|Vega:OTTHUMG00000150685 4 4q35.1 WW and C2 domain containing 2 protein-coding WWC2 WW and C2 domain containing 2 O BH-3-only member B|BH3-only member B protein|WW domain-containing protein 2|WW, C2 and coiled-coil domain containing 2|protein WWC2 20121230 -9606 80017 C14orf159 UNQ2439/PRO5000 - HGNC:20498|Ensembl:ENSG00000133943|HPRD:16612|Vega:OTTHUMG00000164980 14 14q32.11 chromosome 14 open reading frame 159 protein-coding C14orf159 chromosome 14 open reading frame 159 O UPF0317 protein C14orf159, mitochondrial 20121230 -9606 80018 NAA25 - C12orf30|MDM20|NAP1 HGNC:25783|MIM:612755|Ensembl:ENSG00000111300|HPRD:08578|Vega:OTTHUMG00000169638 12 12q24.13 N(alpha)-acetyltransferase 25, NatB auxiliary subunit protein-coding NAA25 N(alpha)-acetyltransferase 25, NatB auxiliary subunit O N-alpha-acetyltransferase 25, NatB auxiliary subunit|N-terminal acetyltransferase B complex subunit NAA25|mitochondrial distribution and morphology 20|natB complex subunit MDM20 20121230 -9606 80019 UBTD1 - - HGNC:25683|Ensembl:ENSG00000165886|HPRD:08568|Vega:OTTHUMG00000018856 10 10q24.2 ubiquitin domain containing 1 protein-coding UBTD1 ubiquitin domain containing 1 O ubiquitin domain-containing protein 1 20121230 -9606 80020 FOXRED2 RP5-1119A7.4 ERFAD HGNC:26264|MIM:613777|Ensembl:ENSG00000100350|HPRD:08666|Vega:OTTHUMG00000044614 22 22q12.3 FAD-dependent oxidoreductase domain containing 2 protein-coding FOXRED2 FAD-dependent oxidoreductase domain containing 2 O FAD-dependent oxidoreductase domain-containing protein 2|endoplasmic reticulum flavoprotein associated with degradation 20121230 -9606 80021 TMEM62 - - HGNC:26269|Ensembl:ENSG00000137842|HPRD:08669|Vega:OTTHUMG00000176485 15 15q15.2 transmembrane protein 62 protein-coding TMEM62 transmembrane protein 62 O - 20121230 -9606 80022 MYO15B - MYO15BP HGNC:14083 17 17q25.1 myosin XVB pseudogene pseudo MYO15B myosin XVB pseudogene O myosin XVB 20121230 -9606 80023 NRSN2 RP5-1103G7.8 C20orf98|dJ1103G7.6 HGNC:16229|MIM:610666|Ensembl:ENSG00000125841|HPRD:12791|Vega:OTTHUMG00000031628 20 20p13 neurensin 2 protein-coding NRSN2 neurensin 2 O neurensin-2 20121230 -9606 80024 SLC24A6 - NCKX6|NCLX HGNC:26175|MIM:609841|Ensembl:ENSG00000089060|HPRD:15354|Vega:OTTHUMG00000169566 12 12q24.13 solute carrier family 24 (sodium/lithium/calcium exchanger), member 6 protein-coding SLC24A6 solute carrier family 24 (sodium/lithium/calcium exchanger), member 6 O Na(+)/K(+)/Ca(2+)-exchange protein 6|sodium/potassium/calcium exchanger 6|solute carrier family 24 (sodium/potassium/calcium exchanger), member 6|solute carrier family 24 member 6 20121230 -9606 80025 PANK2 RP4-681N20.1 C20orf48|HARP|HSS|NBIA1|PKAN HGNC:15894|MIM:606157|Ensembl:ENSG00000125779|Vega:OTTHUMG00000031768 20 20p13 pantothenate kinase 2 protein-coding PANK2 pantothenate kinase 2 O Hallervorden-Spatz syndrome|pantothenate kinase 2, mitochondrial|pantothenic acid kinase 2 20121230 -9606 80028 FBXL18 - Fbl18 HGNC:21874|MIM:609084|Ensembl:ENSG00000155034|HPRD:07753|Vega:OTTHUMG00000151832 7 7p22.2 F-box and leucine-rich repeat protein 18 protein-coding FBXL18 F-box and leucine-rich repeat protein 18 O F-box/LRR-repeat protein 18 20121230 -9606 80031 SEMA6D - - HGNC:16770|MIM:609295|Ensembl:ENSG00000137872|HPRD:10221|Vega:OTTHUMG00000172110 15 15q21.1 sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6D protein-coding SEMA6D sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6D O semaphorin-6D 20121230 -9606 80032 ZNF556 - - HGNC:25669|Ensembl:ENSG00000172000|HPRD:15839|Vega:OTTHUMG00000180501 19 19p13.3 zinc finger protein 556 protein-coding ZNF556 zinc finger protein 556 O - 20121230 -9606 80034 CSRNP3 - FAM130A2|PPP1R73|TAIP-2|TAIP2 HGNC:30729|Ensembl:ENSG00000178662|HPRD:18144|Vega:OTTHUMG00000132145 2 2q24.3 cysteine-serine-rich nuclear protein 3 protein-coding CSRNP3 cysteine-serine-rich nuclear protein 3 O CSRNP-3|TGF beta induced apotosis protein 2|TGF-beta induced apoptosis protein 2|TGF-beta-induced apoptosis protein 2|cysteine/serine-rich nuclear protein 3|family with sequence similarity 130, member A2|protein phosphatase 1, regulatory subunit 73 20121230 -9606 80035 ANP32A-IT1 - C15orf28|HsT18971|NCRNA00321 HGNC:25672 15 15q23 ANP32A intronic transcript 1 (non-protein coding) miscRNA ANP32A-IT1 ANP32A intronic transcript 1 (non-protein coding) O - 20121230 -9606 80036 TRPM3 RP11-141J10.3 GON-2|LTRPC3|MLSN2 HGNC:17992|MIM:608961|Ensembl:ENSG00000083067|HPRD:10605|Vega:OTTHUMG00000019997 9 9q21.12 transient receptor potential cation channel, subfamily M, member 3 protein-coding TRPM3 transient receptor potential cation channel, subfamily M, member 3 O LTrpC-3|long transient receptor potential channel 3|melastatin 2|melastatin-2|transient receptor potential cation channel subfamily M member 3 20121230 -9606 80039 FAM106A - - HGNC:25682|HPRD:07759 17 17p11.2 family with sequence similarity 106, member A miscRNA FAM106A family with sequence similarity 106, member A O - 20121230 -9606 80045 GPR157 RP5-963K15.2 - HGNC:23687|Ensembl:ENSG00000180758|HPRD:17068|Vega:OTTHUMG00000001758 1 1p36.23 G protein-coupled receptor 157 protein-coding GPR157 G protein-coupled receptor 157 O probable G-protein coupled receptor 157 20121230 -9606 80052 RPS2P45 - RPS2_21_1492 HGNC:25709|HPRD:07765 16 16q22.1 ribosomal protein S2 pseudogene 45 pseudo RPS2P45 ribosomal protein S2 pseudogene 45 O - 20121230 -9606 80054 CEBPA-AS1 - - HGNC:25710|HPRD:07766 19 19q13.11 CEBPA antisense RNA 1 (head to head) miscRNA CEBPA-AS1 CEBPA antisense RNA 1 (head to head) O - 20121230 -9606 80055 PGAP1 UNQ3024/PRO9822 Bst1|ISPD3024 HGNC:25712|MIM:611655|Ensembl:ENSG00000197121|HPRD:10147|Vega:OTTHUMG00000132743 2 2q33.1 post-GPI attachment to proteins 1 protein-coding PGAP1 post-GPI attachment to proteins 1 O GPI deacylase|GPI inositol-deacylase|hPGAP1|post-GPI attachment to proteins factor 1 20121230 -9606 80059 LRRTM4 UNQ3075/PRO9907 - HGNC:19411|MIM:610870|Ensembl:ENSG00000176204|HPRD:11288|Vega:OTTHUMG00000152842 2 2p12 leucine rich repeat transmembrane neuronal 4 protein-coding LRRTM4 leucine rich repeat transmembrane neuronal 4 O leucine-rich repeat transmembrane neuronal 4 protein|leucine-rich repeat transmembrane neuronal protein 4 20121230 -9606 80060 GNL3LP1 - GNL3LP HGNC:25733|HPRD:07781 5 5q12.1 guanine nucleotide binding protein-like 3 (nucleolar)-like pseudogene 1 pseudo GNL3LP1 guanine nucleotide binding protein-like 3 (nucleolar)-like pseudogene 1 O - 20121230 -9606 80063 ATF7IP2 - MCAF2 HGNC:20397|MIM:613645|Ensembl:ENSG00000166669|HPRD:16517|Vega:OTTHUMG00000129749 16 16p13.13 activating transcription factor 7 interacting protein 2 protein-coding ATF7IP2 activating transcription factor 7 interacting protein 2 O ATF7-interacting protein 2|MBD1-containing chromatin associated factor 2|MBD1-containing chromatin-associated factor 2|activating transcription factor 7-interacting protein 2 20121230 -9606 80067 DCAF17 - C2orf37 HGNC:25784|MIM:612515|Ensembl:ENSG00000115827|HPRD:08579|Vega:OTTHUMG00000132259 2 2q31.1 DDB1 and CUL4 associated factor 17 protein-coding DCAF17 DDB1 and CUL4 associated factor 17 O DDB1- and CUL4-associated factor 17 20121230 -9606 80069 LINC00574 - C6orf208|RP1-266L20.3|dJ182D15.1 HGNC:21598|HPRD:12876 6 6q27 long intergenic non-protein coding RNA 574 miscRNA LINC00574 long intergenic non-protein coding RNA 574 O - 20121230 -9606 80070 ADAMTS20 - ADAM-TS20|ADAMTS-20|GON-1 HGNC:17178|MIM:611681|Ensembl:ENSG00000173157|Vega:OTTHUMG00000169353 12 12q12 ADAM metallopeptidase with thrombospondin type 1 motif, 20 protein-coding ADAMTS20 ADAM metallopeptidase with thrombospondin type 1 motif, 20 O A disintegrin and metalloproteinase with thrombospondin motifs 20|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 20 20121230 -9606 80071 CCDC15 - - HGNC:25798|Ensembl:ENSG00000149548|HPRD:07820|Vega:OTTHUMG00000165940 11 11q24.2 coiled-coil domain containing 15 protein-coding CCDC15 coiled-coil domain containing 15 O coiled-coil domain-containing protein 15 20121230 -9606 80072 HEXA-AS1 - C15orf34 HGNC:25810 15 15q23 HEXA antisense RNA 1 miscRNA HEXA-AS1 HEXA antisense RNA 1 O - 20121230 -9606 80078 FLJ13744 - - - 6 6q14 uncharacterized FLJ13744 other - - - - 20120710 -9606 80086 TUBA4B - TUBA4 HGNC:18637|HPRD:18242 2 2q35 tubulin, alpha 4b (pseudogene) pseudo TUBA4B tubulin, alpha 4b (pseudogene) O putative tubulin-like protein alpha-4B 20121230 -9606 80094 FLJ14107 - - HPRD:07850 8 8p21.3 uncharacterized LOC80094 miscRNA - - - - 20121230 -9606 80095 ZNF606 - ZNF328 HGNC:25879|MIM:613905|Ensembl:ENSG00000166704|HPRD:15871|Vega:OTTHUMG00000169804 19 19q13.4 zinc finger protein 606 protein-coding ZNF606 zinc finger protein 606 O zinc finger protein 328 20121230 -9606 80097 MZT2B - FAM128B|MOZART2B HGNC:25886|MIM:613450|Ensembl:ENSG00000152082|HPRD:07857|Vega:OTTHUMG00000131625 2 2q21.1 mitotic spindle organizing protein 2B protein-coding MZT2B mitotic spindle organizing protein 2B O family with sequence similarity 128, member B|mitotic-spindle organizing protein 2B|mitotic-spindle organizing protein associated with a ring of gamma-tubulin 2B 20121230 -9606 80099 C7orf69 tcag7.708 - HGNC:21911|Ensembl:ENSG00000136275|HPRD:08635|Vega:OTTHUMG00000155648 7 7p12.3 chromosome 7 open reading frame 69 protein-coding C7orf69 chromosome 7 open reading frame 69 O uncharacterized protein C7orf69 20121230 -9606 80108 ZFP2 - ZNF751 HGNC:26138|Ensembl:ENSG00000198939|HPRD:08639|Vega:OTTHUMG00000130885 5 5q35.3 ZFP2 zinc finger protein protein-coding ZFP2 ZFP2 zinc finger protein O zfp-2|zinc finger protein 2 homolog|zinc finger protein 751 20121230 -9606 80110 ZNF614 - - HGNC:24722|Ensembl:ENSG00000142556|HPRD:15874 19 19q13.41 zinc finger protein 614 protein-coding ZNF614 zinc finger protein 614 O - 20121230 -9606 80111 C3orf36 - - HGNC:26170|Ensembl:ENSG00000221972|HPRD:07981 3 3q22.1 chromosome 3 open reading frame 36 protein-coding C3orf36 chromosome 3 open reading frame 36 O uncharacterized protein C3orf36 20121230 -9606 80114 BICC1 - BICC|CYSRD HGNC:19351|MIM:614295|Ensembl:ENSG00000122870|Vega:OTTHUMG00000018271 10 10q21.1 bicaudal C homolog 1 (Drosophila) protein-coding BICC1 bicaudal C homolog 1 (Drosophila) O bic-C|protein bicaudal C homolog 1 20121230 -9606 80115 BAIAP2L2 RP5-1039K5.15-002 - HGNC:26203|Ensembl:ENSG00000128298|HPRD:07997|Vega:OTTHUMG00000151197 22 22q13.1 BAI1-associated protein 2-like 2 protein-coding BAIAP2L2 BAI1-associated protein 2-like 2 O BAI1-associated protein 2-like protein 2|brain-specific angiogenesis inhibitor 1-associated protein 2-like protein 2|pinkbar|planar intestinal- and kidney-specific BAR domain protein 20121230 -9606 80117 ARL14 - ARF7 HGNC:22974|MIM:614439|Ensembl:ENSG00000179674|HPRD:07998|Vega:OTTHUMG00000159031 3 3q25.33 ADP-ribosylation factor-like 14 protein-coding ARL14 ADP-ribosylation factor-like 14 O ADP-ribosylation factor 7|ADP-ribosylation factor-like protein 14 20121230 -9606 80119 PIF1 - C15orf20|PIF HGNC:26220|MIM:610953|Ensembl:ENSG00000140451|HPRD:10715|Vega:OTTHUMG00000132974 15 15q22.31 PIF1 5'-to-3' DNA helicase homolog (S. cerevisiae) protein-coding PIF1 PIF1 5'-to-3' DNA helicase homolog (S. cerevisiae) O ATP-dependent DNA helicase PIF1|DNA helicase PIF1|DNA helicase homolog PIF1|PIF1 DNA helicase|PIF1/RRM3 DNA helicase-like protein|petite integration frequency 1 20121230 -9606 80122 MAP3K19 - RCK|YSK4 HGNC:26249|Ensembl:ENSG00000176601|HPRD:08016|Vega:OTTHUMG00000074083 2 2q21.3 mitogen-activated protein kinase kinase kinase 19 protein-coding MAP3K19 mitogen-activated protein kinase kinase kinase 19 O SPS1/STE20-related protein kinase YSK4|YSK4 Sps1/Ste20-related kinase homolog|regulated in COPD kinase|regulated in COPD, protein kinase|yeast Sps1/Ste20-related kinase 4 20121230 -9606 80124 VCPIP1 - DUBA3|VCIP135 HGNC:30897|MIM:611745|Ensembl:ENSG00000175073|HPRD:15645|Vega:OTTHUMG00000164560 8 8q13 valosin containing protein (p97)/p47 complex interacting protein 1 protein-coding VCPIP1 valosin containing protein (p97)/p47 complex interacting protein 1 O VCP/p47 complex-interacting 135-kDa protein|deubiquitinating protein VCIP135|valosin-containing protein (p97)/p47 complex-interacting protein p135|valosin-containing protein p97/p47 complex-interacting protein 1|valosin-containing protein p97/p47 complex-interacting protein p135 20121230 -9606 80125 CCDC33 - CT61 HGNC:26552|Ensembl:ENSG00000140481|HPRD:09959|Vega:OTTHUMG00000172621 15 15q24.1 coiled-coil domain containing 33 protein-coding CCDC33 coiled-coil domain containing 33 O cancer/testis antigen 61|coiled-coil domain-containing protein 33 20121230 -9606 80127 CCDC176 - C14orf45 HGNC:19855|Ensembl:ENSG00000119636|HPRD:12650|Vega:OTTHUMG00000171202 14 14q24.3 coiled-coil domain containing 176 protein-coding CCDC176 coiled-coil domain containing 176 O uncharacterized protein C14orf45 20121230 -9606 80128 TRIM46 RP11-263K19.1 GENEY|TRIFIC HGNC:19019|MIM:600986|Ensembl:ENSG00000163462|HPRD:15563|Vega:OTTHUMG00000035680 1 1q22 tripartite motif containing 46 protein-coding TRIM46 tripartite motif containing 46 O gene Y protein|tripartite motif-containing protein 46|tripartite, fibronectin type-III and C-terminal SPRY motif protein 20121230 -9606 80129 CCDC170 - C6orf97|bA282P11.1 HGNC:21177|Ensembl:ENSG00000120262|HPRD:10797|Vega:OTTHUMG00000015839 6 6q25.1 coiled-coil domain containing 170 protein-coding CCDC170 coiled-coil domain containing 170 O coiled-coil domain-containing protein 170 20121230 -9606 80131 LRRC8E - - HGNC:26272|MIM:612891|Ensembl:ENSG00000171017|HPRD:08670 19 19p13.2 leucine rich repeat containing 8 family, member E protein-coding LRRC8E leucine rich repeat containing 8 family, member E O leucine-rich repeat-containing protein 8E 20121230 -9606 80133 MROH9 RP5-1092L12.1 ARMC11|C1orf129 HGNC:26287|Ensembl:ENSG00000117501|HPRD:08672|Vega:OTTHUMG00000041456 1 1q24.3 maestro heat-like repeat family member 9 protein-coding MROH9 maestro heat-like repeat family member 9 O armadillo repeat containing 11|uncharacterized protein C1orf129 20121230 -9606 80135 RPF1 - BXDC5|RP11-118B23.1 HGNC:30350|Ensembl:ENSG00000117133|HPRD:15272|Vega:OTTHUMG00000009857 1 1p22.3 ribosome production factor 1 homolog (S. cerevisiae) protein-coding RPF1 ribosome production factor 1 homolog (S. cerevisiae) O 2310066N05Rik|RNA processing factor 1 (RPF1)|brix domain containing 5|brix domain-containing protein 5|ribosome biogenesis protein RPF1|ribosome production factor 1 20121230 -9606 80139 ZNF703 - ZEPPO1|ZNF503L|ZPO1 HGNC:25883|Ensembl:ENSG00000183779|HPRD:07855|Vega:OTTHUMG00000164001 8 8p11.23 zinc finger protein 703 protein-coding ZNF703 zinc finger protein 703 O zinc finger elbow-related proline domain protein 1 20121230 -9606 80142 PTGES2 RP11-395P17.2 C9orf15|GBF-1|GBF1|PGES2|mPGES-2 HGNC:17822|MIM:608152|Ensembl:ENSG00000148334|HPRD:07458|Vega:OTTHUMG00000020730 9 9q34.11 prostaglandin E synthase 2 protein-coding PTGES2 prostaglandin E synthase 2 O GATE-binding factor 1|gamma-interferon-activated transcriptional element-binding factor 1|membrane-associated prostaglandin E synthase 2|microsomal prostaglandin E synthase-2 20121230 -9606 80143 SIKE1 RP5-1000E10.4 SIKE HGNC:26119|MIM:611656|Ensembl:ENSG00000052723|HPRD:07958|Vega:OTTHUMG00000012061 1 1p13.2 suppressor of IKBKE 1 protein-coding SIKE1 suppressor of IKBKE 1 O suppressor of IKK epsilon|suppressor of IKK-epsilon 20121230 -9606 80144 FRAS1 - - HGNC:19185|MIM:607830|Ensembl:ENSG00000138759|HPRD:06382|Vega:OTTHUMG00000160856 4 4q21.21 Fraser syndrome 1 protein-coding FRAS1 Fraser syndrome 1 O extracellular matrix protein FRAS1 20121230 -9606 80145 THOC7 - NIF3L1BP1|fSAP24 HGNC:29874|MIM:611965|Ensembl:ENSG00000163634|HPRD:17632|Vega:OTTHUMG00000158767 3 3p14.1 THO complex 7 homolog (Drosophila) protein-coding THOC7 THO complex 7 homolog (Drosophila) O NIF3L1-binding protein 1|Ngg1 interacting factor 3 like 1 binding protein 1|THO complex subunit 7 homolog|functional spliceosome-associated protein 24|hTREX30|ngg1-interacting factor 3-like protein 1-binding protein 1 20121230 -9606 80146 UXS1 UNQ2538/PRO6079 SDR6E1|UGD HGNC:17729|MIM:609749|Ensembl:ENSG00000115652|HPRD:15642|Vega:OTTHUMG00000153150 2 2q12.2 UDP-glucuronate decarboxylase 1 protein-coding UXS1 UDP-glucuronate decarboxylase 1 O UDP-glucuronic acid decarboxylase 1|UXS-1|short chain dehydrogenase/reductase family 6E, member 12 20121230 -9606 80148 PQLC1 - - HGNC:26188|Ensembl:ENSG00000122490|HPRD:11454|Vega:OTTHUMG00000132921 18 18q23 PQ loop repeat containing 1 protein-coding PQLC1 PQ loop repeat containing 1 O PQ-loop repeat-containing protein 1 20121230 -9606 80149 ZC3H12A - MCPIP|MCPIP1|RP3-423B22.1|dJ423B22.1 HGNC:26259|MIM:610562|Ensembl:ENSG00000163874|HPRD:08021|Vega:OTTHUMG00000004221 1 1p34.3 zinc finger CCCH-type containing 12A protein-coding ZC3H12A zinc finger CCCH-type containing 12A O MCP induced protein 1|MCP-1 treatment-induced protein|MCP-induced protein 1|ribonuclease ZC3H12A|zinc finger CCCH domain-containing protein 12A 20121230 -9606 80150 ASRGL1 - ALP|ALP1|CRASH HGNC:16448|MIM:609212|Ensembl:ENSG00000162174|HPRD:07006|Vega:OTTHUMG00000167513 11 11q12.3 asparaginase like 1 protein-coding ASRGL1 asparaginase like 1 O L-asparaginase|L-asparagine amidohydrolase|asparaginase-like 1 protein|asparaginase-like protein 1 20121230 -9606 80152 CENPT - C16orf56|CENP-T HGNC:25787|MIM:611510|Ensembl:ENSG00000102901|Vega:OTTHUMG00000173071 16 16q22.1 centromere protein T protein-coding CENPT centromere protein T O interphase centromere complex protein 22 20121230 -9606 80153 EDC3 PP844 LSM16|YJDC|YJEFN2 HGNC:26114|MIM:609842|Ensembl:ENSG00000179151|HPRD:07954|Vega:OTTHUMG00000142815 15 15q24.1 enhancer of mRNA decapping 3 homolog (S. cerevisiae) protein-coding EDC3 enhancer of mRNA decapping 3 homolog (S. cerevisiae) O LSM16 homolog (EDC3, S. cerevisiae)|enhancer of mRNA-decapping protein 3|hYjeF_N2|hYjeF_N2-15q23|yjeF N-terminal domain-containing protein 2|yjeF domain containing|yjeF domain-containing protein 1|yjeF_N2 20121230 -9606 80154 AGSK1 - - HPRD:08007 15 15q25.2 golgin subfamily A member 2-like miscRNA - - - - 20121209 -9606 80155 NAA15 - Ga19|NARG1|NATH|TBDN100 HGNC:30782|MIM:608000|Ensembl:ENSG00000164134|HPRD:10471|Vega:OTTHUMG00000137363 4 4q31.1 N(alpha)-acetyltransferase 15, NatA auxiliary subunit protein-coding NAA15 N(alpha)-acetyltransferase 15, NatA auxiliary subunit O N-alpha-acetyltransferase 15, NatA auxiliary subunit|N-terminal acetyltransferase|NMDA receptor regulated 1|NMDA receptor-regulated protein 1|gastric cancer antigen Ga19|protein tubedown-1|transcriptional coactivator tubedown-100|tubedown-1 20121230 -9606 80157 CWH43 - CWH43-C HGNC:26133|Ensembl:ENSG00000109182|HPRD:08638|Vega:OTTHUMG00000128627 4 4p11 cell wall biogenesis 43 C-terminal homolog (S. cerevisiae) protein-coding CWH43 cell wall biogenesis 43 C-terminal homolog (S. cerevisiae) O PGAP2-interacting protein|cell wall biogenesis protein 43 C-terminal homolog 20121230 -9606 80161 ASMTL-AS1 RP11-261P4.7 ASMTL-AS|ASMTLAS|CXYorf2|NCRNA00105 HGNC:25811|HPRD:06522 X|Y Xp22.33; Yp11.32 ASMTL antisense RNA 1 miscRNA ASMTL-AS1 ASMTL antisense RNA 1 O - 20121230 -9606 80162 ATHL1 - - HGNC:26210|Ensembl:ENSG00000142102|HPRD:07999|Vega:OTTHUMG00000153218 11 11p15.5 ATH1, acid trehalase-like 1 (yeast) protein-coding ATHL1 ATH1, acid trehalase-like 1 (yeast) O acid trehalase-like protein 1 20121230 -9606 80164 FLJ22184 - - Ensembl:ENSG00000183248 19 19p13.2 putative uncharacterized protein FLJ22184 protein-coding - - - - 20121230 -9606 80167 C4orf29 - - HGNC:26111|Ensembl:ENSG00000164074|HPRD:07953|Vega:OTTHUMG00000133304 4 4q28.2 chromosome 4 open reading frame 29 protein-coding C4orf29 chromosome 4 open reading frame 29 O uncharacterized protein C4orf29 20121230 -9606 80168 MOGAT2 - DGAT2L5|MGAT2 HGNC:23248|MIM:610270|Ensembl:ENSG00000166391|HPRD:11367|Vega:OTTHUMG00000165341 11 11q13.5 monoacylglycerol O-acyltransferase 2 protein-coding MOGAT2 monoacylglycerol O-acyltransferase 2 O 2-acylglycerol O-acyltransferase 2|acyl CoA:monoacylglycerol acyltransferase 2|acyl-CoA:monoacylglycerol acyltransferase 2|diacylglycerol O-acyltransferase candidate 5|diacylglycerol acyltransferase 2-like protein 5|hDC5|hMGAT2 20121230 -9606 80169 CTC1 - AAF-132|AAF132|C17orf68|CRMCC|tmp494178 HGNC:26169|MIM:613129|Ensembl:ENSG00000178971|HPRD:07980|Vega:OTTHUMG00000178443 17 17p13.1 CTS telomere maintenance complex component 1 protein-coding CTC1 CTS telomere maintenance complex component 1 O CST complex subunit CTC1|HBV DNAPTP1-transactivated protein B|alpha accessory factor 132|conserved telomere capping protein 1 20121230 -9606 80173 IFT74 - CCDC2|CMG-1|CMG1 HGNC:21424|MIM:608040|Ensembl:ENSG00000096872|HPRD:09727|Vega:OTTHUMG00000021028 9 9p21.2 intraflagellar transport 74 homolog (Chlamydomonas) protein-coding IFT74 intraflagellar transport 74 homolog (Chlamydomonas) O capillary morphogenesis gene 1 protein|capillary morphogenesis protein 1|coiled-coil domain containing 2|coiled-coil domain-containing protein 2|intraflagellar transport protein 74 homolog 20121230 -9606 80174 DBF4B UNQ3002 ASKL1|CHIFB|DRF1|ZDBF1B HGNC:17883|MIM:611661|Ensembl:ENSG00000161692|HPRD:16840|Vega:OTTHUMG00000165717 17 17q21.31|17q21 DBF4 homolog B (S. cerevisiae) protein-coding DBF4B DBF4 homolog B (S. cerevisiae) O ASK-like protein 1|Dbf4-related factor 1|activator of S-phase kinase-like protein 1|chiffon homolog B|protein DBF4 homolog B|zinc finger, DBF-type containing 1B 20121230 -9606 80176 SPSB1 RP3-324M8.1 SSB-1|SSB1 HGNC:30628|MIM:611657|Ensembl:ENSG00000171621|HPRD:18106|Vega:OTTHUMG00000001279 1 1p36.22 splA/ryanodine receptor domain and SOCS box containing 1 protein-coding SPSB1 splA/ryanodine receptor domain and SOCS box containing 1 O SPRY domain-containing SOCS box protein 1|SPRY domain-containing SOCS box protein SSB-1|novel SPRY domain containing protein 20121230 -9606 80177 MYCT1 - MTLC HGNC:23172|Ensembl:ENSG00000120279|HPRD:17617|Vega:OTTHUMG00000015850 6 6q25.2 myc target 1 protein-coding MYCT1 myc target 1 O myc target in myeloid cells 1|myc target in myeloid cells protein 1|myc target protein 1 20121230 -9606 80178 C16orf59 - - HGNC:25849|Ensembl:ENSG00000162062|HPRD:07840|Vega:OTTHUMG00000128859 16 16p13.3 chromosome 16 open reading frame 59 protein-coding C16orf59 chromosome 16 open reading frame 59 O uncharacterized protein C16orf59 20121230 -9606 80179 MYO19 - MYOHD1 HGNC:26234|Ensembl:ENSG00000141140|HPRD:10107|Vega:OTTHUMG00000180384 17 17q12 myosin XIX protein-coding MYO19 myosin XIX O myosin head domain containing 1|myosin head domain-containing protein 1|myosin-XIX|unconventional myosin-XIX 20121230 -9606 80183 KIAA0226L RP11-247M1.4 C13orf18 HGNC:20420|Ensembl:ENSG00000102445|HPRD:12615|Vega:OTTHUMG00000016868 13 13q14.13 KIAA0226-like protein-coding KIAA0226L KIAA0226-like O uncharacterized protein KIAA0226-like 20121230 -9606 80184 CEP290 - 3H11Ag|BBS14|CT87|JBTS5|LCA10|MKS4|NPHP6|POC3|SLSN6|rd16 HGNC:29021|MIM:610142|Ensembl:ENSG00000198707|HPRD:08585|HPRD:10856|Vega:OTTHUMG00000169871 12 12q21.32 centrosomal protein 290kDa protein-coding CEP290 centrosomal protein 290kDa O Bardet-Biedl syndrome 14 protein|CTCL tumor antigen se2-2|Meckel syndrome, type 4|POC3 centriolar protein homolog|cancer/testis antigen 87|centrosomal protein of 290 kDa|monoclonal antibody 3H11 antigen|nephrocytsin-6|prostate cancer antigen T21|tumor antigen se2-2 20121230 -9606 80185 TTI2 - C8orf41 HGNC:26262|MIM:614426|Ensembl:ENSG00000129696|HPRD:13390|Vega:OTTHUMG00000163956 8 8p12 TELO2 interacting protein 2 protein-coding TTI2 TELO2 interacting protein 2 O TELO2-interacting protein 2|Tel2 interacting protein 2 homolog 20121230 -9606 80194 TMEM134 - - HGNC:26142|Ensembl:ENSG00000172663|HPRD:08642|Vega:OTTHUMG00000168034 11 11q13.2 transmembrane protein 134 protein-coding TMEM134 transmembrane protein 134 O - 20121230 -9606 80195 TMEM254 RP11-369J21.6 C10orf57|bA369J21.6 HGNC:25804|Ensembl:ENSG00000133678|HPRD:08501|Vega:OTTHUMG00000018602 10 10q22.3 transmembrane protein 254 protein-coding TMEM254 transmembrane protein 254 O transmembrane protein C10orf57 20121230 -9606 80196 RNF34 - CARP-1|CARP1|RFI|RIF|RIFF|hRFI HGNC:17297|MIM:608299|Ensembl:ENSG00000170633|HPRD:10509|Vega:OTTHUMG00000171524 12 12q24.31 ring finger protein 34, E3 ubiquitin protein ligase protein-coding RNF34 ring finger protein 34, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase RNF34|FYVE-RING finger protein MOMO|RING finger protein RIFF|caspase regulator CARP1|caspases-8 and -10-associated RING finger protein 1|human RING finger homologous to inhibitor of apoptosis protein 20121230 -9606 80198 MUS81 - SLX3 HGNC:29814|MIM:606591|Ensembl:ENSG00000172732|HPRD:09419|Vega:OTTHUMG00000166633 11 11q13 MUS81 endonuclease homolog (S. cerevisiae) protein-coding MUS81 MUS81 endonuclease homolog (S. cerevisiae) O SLX3 structure-specific endonuclease subunit homolog|crossover junction endonuclease MUS81 20121230 -9606 80199 FUZ - FY|NTD HGNC:26219|MIM:610622|Ensembl:ENSG00000010361|HPRD:08662|Vega:OTTHUMG00000167281 19 19q13.33 fuzzy homolog (Drosophila) protein-coding FUZ fuzzy homolog (Drosophila) O protein fuzzy homolog 20121230 -9606 80201 HKDC1 - - HGNC:23302|Ensembl:ENSG00000156510|HPRD:08006|Vega:OTTHUMG00000018371 10 10q22.1 hexokinase domain containing 1 protein-coding HKDC1 hexokinase domain containing 1 O hexokinase domain-containing protein 1|putative hexokinase HKDC1 20121230 -9606 80204 FBXO11 UG063H01 FBX11|PRMT9|UBR6|VIT1 HGNC:13590|MIM:607871|Ensembl:ENSG00000138081|HPRD:06985|Vega:OTTHUMG00000129130 2 2p16.3 F-box protein 11 protein-coding FBXO11 F-box protein 11 O F-box only protein 11|protein arginine N-methyltransferase 9|ubiquitin protein ligase E3 component n-recognin 6|vitiligo-associated protein 1|vitiligo-associated protein VIT-1 20121230 -9606 80205 CHD9 AD-013 AD013|CReMM|KISH2|PRIC320 HGNC:25701|Ensembl:ENSG00000177200|HPRD:08570|Vega:OTTHUMG00000173188 16 16q12.2 chromodomain helicase DNA binding protein 9 protein-coding CHD9 chromodomain helicase DNA binding protein 9 O ATP-dependent helicase CHD9|CHD-9|PPAR-alpha-interacting complex protein 320 kDa|PPAR{gamma}-interacting cofactor 320 kDa|chromatin remodeling factor CHROM1|chromatin-related mesenchymal modulator|chromatin-remodeling factor CHROM1|chromodomain-helicase-DNA-binding protein 9|ciprofibrate bound protein p240|kismet homolog 2|peroxisomal proliferator-activated receptor A-interacting complex 320 kDa protein|proteinx0008 20121230 -9606 80206 FHOD3 - FHOS2|Formactin2 HGNC:26178|MIM:609691|Ensembl:ENSG00000134775|HPRD:16894|Vega:OTTHUMG00000182381 18 18q12 formin homology 2 domain containing 3 protein-coding FHOD3 formin homology 2 domain containing 3 O FH1/FH2 domain-containing protein 3|formactin-2|formin homolog overexpressed in spleen 2|hFHOS2 20121230 -9606 80207 OPA3 - MGA3 HGNC:8142|MIM:606580|Ensembl:ENSG00000125741|HPRD:05956|Vega:OTTHUMG00000182125 19 19q13.32 optic atrophy 3 (autosomal recessive, with chorea and spastic paraplegia) protein-coding OPA3 optic atrophy 3 (autosomal recessive, with chorea and spastic paraplegia) O Optic atrophy 3 (Iraqi-Jewish 'optic atrophy plus')|optic atrophy 3 protein 20121230 -9606 80208 SPG11 - KIAA1840 HGNC:11226|MIM:610844|Ensembl:ENSG00000104133|HPRD:07963|Vega:OTTHUMG00000131199 15 15q14 spastic paraplegia 11 (autosomal recessive) protein-coding SPG11 spastic paraplegia 11 (autosomal recessive) O colorectal carcinoma-associated protein|spastic paraplegia 11 protein|spatacsin 20121230 -9606 80209 PROSER1 RP11-50D16.2 C13orf23 HGNC:20291|Ensembl:ENSG00000120685|HPRD:12616|Vega:OTTHUMG00000016764 13 13q13.3 proline and serine rich 1 protein-coding PROSER1 proline and serine rich 1 O proline and serine-rich protein 1 20121230 -9606 80210 ARMC9 - ARM|KU-MEL-1 HGNC:20730|Ensembl:ENSG00000135931|HPRD:07778|Vega:OTTHUMG00000133229 2 2q37.1 armadillo repeat containing 9 protein-coding ARMC9 armadillo repeat containing 9 O NS21|armadillo/beta-catenin-like repeats|lisH domain-containing protein ARMC9|melanoma/melanocyte specific protein KU-MEL-1|melanoma/melanocyte-specific tumor antigen KU-MEL-1 20121230 -9606 80212 CCDC92 - - HGNC:29563|Ensembl:ENSG00000119242|HPRD:16919|Vega:OTTHUMG00000168725 12 12q24.31 coiled-coil domain containing 92 protein-coding CCDC92 coiled-coil domain containing 92 O coiled-coil domain-containing protein 92|limkain beta 2|limkain beta-2 20121230 -9606 80213 TM2D3 - BLP2 HGNC:24128|MIM:610014|Ensembl:ENSG00000184277|HPRD:16554|Vega:OTTHUMG00000149872 15 15q26.3 TM2 domain containing 3 protein-coding TM2D3 TM2 domain containing 3 O BBP-like protein 2|TM2 domain-containing protein 3|beta-amyloid-binding protein-like protein 2 20121230 -9606 80215 RUNX1-IT1 - C21orf96 HGNC:16623 21 21q22.12 RUNX1 intronic transcript 1 (non-protein coding) miscRNA RUNX1-IT1 RUNX1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 80216 ALPK1 - 8430410J10Rik|LAK HGNC:20917|MIM:607347|Ensembl:ENSG00000073331|HPRD:09554|Vega:OTTHUMG00000132911 4 4q25 alpha-kinase 1 protein-coding ALPK1 alpha-kinase 1 O alpha-protein kinase 1|chromosome 4 kinase|lymphocyte alpha-kinase|lymphocyte alpha-protein kinase 20121230 -9606 80217 WDR96 RP11-373N18.2 C10orf79|bA373N18.2 HGNC:26684|Ensembl:ENSG00000197748|HPRD:07625 10 10q25.1 WD repeat domain 96 protein-coding WDR96 WD repeat domain 96 O WD repeat-containing protein 96|WD repeat-containing protein C10orf79 20121230 -9606 80218 NAA50 - MAK3|NAT13|NAT5|SAN|hNAT5|hSAN HGNC:29533|MIM:610834|Ensembl:ENSG00000121579|HPRD:14350|Vega:OTTHUMG00000159294 3 3q13.2 N(alpha)-acetyltransferase 50, NatE catalytic subunit protein-coding NAA50 N(alpha)-acetyltransferase 50, NatE catalytic subunit O Mak3 homolog|N-acetyltransferase 13 (GCN5-related)|N-acetyltransferase 5|N-acetyltransferase san homolog|N-alpha-acetyltransferase 50|N-alpha-acetyltransferase 50, NatE catalytic subunit|natE catalytic subunit|separation anxiety 20121230 -9606 80219 COQ10B - - HGNC:25819|Ensembl:ENSG00000115520|HPRD:08582|Vega:OTTHUMG00000132745 2 2q33.1 coenzyme Q10 homolog B (S. cerevisiae) protein-coding COQ10B coenzyme Q10 homolog B (S. cerevisiae) O coenzyme Q-binding protein COQ10 homolog B, mitochondrial 20121230 -9606 80221 ACSF2 UNQ493/PRO1009 ACSMW|AVYV493 HGNC:26101|MIM:610465|Ensembl:ENSG00000167107|HPRD:13380|Vega:OTTHUMG00000162128 17 17q21.33 acyl-CoA synthetase family member 2 protein-coding ACSF2 acyl-CoA synthetase family member 2 O PPARG binding, long chain fatty acid acyl Co-A ligase like|acyl-CoA synthetase family member 2, mitochondrial 20121230 -9606 80222 TARS2 RP11-54A4.9 TARSL1|thrRS HGNC:30740|MIM:612805|Ensembl:ENSG00000143374|HPRD:18148|Vega:OTTHUMG00000012809 1 1q21.3 threonyl-tRNA synthetase 2, mitochondrial (putative) protein-coding TARS2 threonyl-tRNA synthetase 2, mitochondrial (putative) O threonine--tRNA ligase, mitochondrial|threonyl-tRNA synthetase-like 1 20121230 -9606 80223 RAB11FIP1 - NOEL1A|RCP|rab11-FIP1 HGNC:30265|MIM:608737|Ensembl:ENSG00000156675|HPRD:09787|Vega:OTTHUMG00000164026 8 8p11.22 RAB11 family interacting protein 1 (class I) protein-coding RAB11FIP1 RAB11 family interacting protein 1 (class I) O RAB11 coupling protein|Rab effector protein|Rab-interacting recycling protein|rab-coupling protein|rab11 family-interacting protein 1 20121230 -9606 80224 NUBPL - C14orf127|IND1|huInd1 HGNC:20278|MIM:613621|Ensembl:ENSG00000151413|HPRD:16600|Vega:OTTHUMG00000170521 14 14q12 nucleotide binding protein-like protein-coding NUBPL nucleotide binding protein-like O IND1 homolog|iron-sulfur protein NUBPL|iron-sulfur protein required for NADH dehydrogenase 20121230 -9606 80227 PAAF1 - PAAF|Rpn14|WDR71 HGNC:25687|Ensembl:ENSG00000175575|HPRD:07761|Vega:OTTHUMG00000168062 11 11q13.4 proteasomal ATPase-associated factor 1 protein-coding PAAF1 proteasomal ATPase-associated factor 1 O WD repeat domain 71|WD repeat-containing protein 71 20121230 -9606 80228 ORAI2 PP1729 C7orf19|CBCIP2|MEM142B|TMEM142B HGNC:21667|MIM:610929|Ensembl:ENSG00000160991|HPRD:09860|Vega:OTTHUMG00000157722 7 7q22.1 ORAI calcium release-activated calcium modulator 2 protein-coding ORAI2 ORAI calcium release-activated calcium modulator 2 O CAP-binding protein complex interacting protein 2|CAP-binding protein complex-interacting protein 2|H_NH0514P08.8|protein orai-2|putative protein ORAI2-2|transmembrane protein 142B 20121230 -9606 80230 RUFY1 - RABIP4|ZFYVE12 HGNC:19760|MIM:610327|Ensembl:ENSG00000176783|HPRD:15282|Vega:OTTHUMG00000130913 5 5q35.3 RUN and FYVE domain containing 1 protein-coding RUFY1 RUN and FYVE domain containing 1 O FYVE-finger protein EIP1|RUN and FYVE domain-containing protein 1|la-binding protein 1|rab4-interacting protein|zinc finger FYVE domain-containing protein 12 20121230 -9606 80231 CXorf21 - - HGNC:25667|Ensembl:ENSG00000120280|HPRD:06518|Vega:OTTHUMG00000021325 X Xp21.2 chromosome X open reading frame 21 protein-coding CXorf21 chromosome X open reading frame 21 O 5430427O19Rik|uncharacterized protein CXorf21 20121230 -9606 80232 WDR26 PRO0852 CDW2|GID7|MIP2 HGNC:21208|Ensembl:ENSG00000162923|HPRD:18298|Vega:OTTHUMG00000037636 1 1q42.13 WD repeat domain 26 protein-coding WDR26 WD repeat domain 26 O CUL4- and DDB1-associated WDR protein 2|GID complex subunit 7 homolog|WD repeat-containing protein 26|myocardial ischemic preconditioning up-regulated protein 2|myocardial ischemic preconditioning upregulated protein 2 20121230 -9606 80233 C17orf70 - FAAP100 HGNC:26171|MIM:611301|Ensembl:ENSG00000185504|HPRD:07982|Vega:OTTHUMG00000167764 17 17q25.3 chromosome 17 open reading frame 70 protein-coding C17orf70 chromosome 17 open reading frame 70 O Fanconi anemia associated protein 100 kDa subunit|Fanconi anemia core complex 100 kDa subunit|Fanconi anemia-associated protein of 100 kDa|Fanconi anemia-associated protein, 100kDa 20121230 -9606 80235 PIGZ - GPI-MT-IV|PIG-Z|SMP3 HGNC:30596|MIM:611671|Ensembl:ENSG00000119227|HPRD:18076|Vega:OTTHUMG00000155522 3 3q29 phosphatidylinositol glycan anchor biosynthesis, class Z protein-coding PIGZ phosphatidylinositol glycan anchor biosynthesis, class Z O GPI mannosyltransferase 4|GPI mannosyltransferase IV|SMP3 mannosyltransferase|phosphatidylinositol glycan, class Z|phosphatidylinositol-glycan biosynthesis class Z protein 20121230 -9606 80237 ELL3 - - HGNC:23113|MIM:609885|Ensembl:ENSG00000128886|HPRD:10933|Vega:OTTHUMG00000059936 15 15q15.3 elongation factor RNA polymerase II-like 3 protein-coding ELL3 elongation factor RNA polymerase II-like 3 O RNA polymerase II elongation factor ELL3 20121230 -9606 80243 PREX2 - 6230420N16Rik|DEP.2|DEPDC2|P-REX2 HGNC:22950|MIM:612139|Ensembl:ENSG00000046889|HPRD:13135|Vega:OTTHUMG00000164402 8 8q13.2 phosphatidylinositol-3,4,5-trisphosphate-dependent Rac exchange factor 2 protein-coding PREX2 phosphatidylinositol-3,4,5-trisphosphate-dependent Rac exchange factor 2 O DEP domain-containing protein 2|PtdIns(3,4,5)-dependent Rac exchanger 2|phosphatidylinositol 3,4,5-trisphosphate-dependent Rac exchanger 2 protein 20121230 -9606 80254 CEP63 - - HGNC:25815|MIM:614724|Ensembl:ENSG00000182923|HPRD:07826|Vega:OTTHUMG00000159725 3 3q22.2 centrosomal protein 63kDa protein-coding CEP63 centrosomal protein 63kDa O centrosomal protein of 63 kDa|centrosome protein CEP63 20121230 -9606 80255 SLC35F5 UNQ2545/PRO6097 - HGNC:23617|Ensembl:ENSG00000115084|HPRD:11579|Vega:OTTHUMG00000131361 2 2q14.1 solute carrier family 35, member F5 protein-coding SLC35F5 solute carrier family 35, member F5 O HCV NS5A-transactivated protein 3|hepatitis C virus NS5A-transactivated protein 3|solute carrier family 35 member F5 20121230 -9606 80256 FAM214B - KIAA1539|P1.11659_5|RP11-182N22.6|bA182N22.6 HGNC:25666|Ensembl:ENSG00000005238|HPRD:13869|Vega:OTTHUMG00000019847 9 9p13.3 family with sequence similarity 214, member B protein-coding FAM214B family with sequence similarity 214, member B O protein FAM214B 20121230 -9606 80258 EFHC2 RP11-334D18.1 dJ1158H2.1 HGNC:26233|MIM:300817|Ensembl:ENSG00000183690|HPRD:06540|Vega:OTTHUMG00000021393 X Xp11.3 EF-hand domain (C-terminal) containing 2 protein-coding EFHC2 EF-hand domain (C-terminal) containing 2 O EF-hand domain-containing family member C2 20121230 -9606 80262 C16orf70 - C16orf6|LIN10|lin-10 HGNC:29564|Ensembl:ENSG00000125149|HPRD:17460|Vega:OTTHUMG00000137510 16 16q22.1 chromosome 16 open reading frame 70 protein-coding C16orf70 chromosome 16 open reading frame 70 O UPF0183 protein C16orf70|lin-10 homolog 20121230 -9606 80263 TRIM45 RP11-229A19.2 RNF99 HGNC:19018|MIM:609318|Ensembl:ENSG00000134253|HPRD:15562|Vega:OTTHUMG00000012119 1 1p13.1 tripartite motif containing 45 protein-coding TRIM45 tripartite motif containing 45 O ring finger protein 99|tripartite motif-containing 45|tripartite motif-containing protein 45 20121230 -9606 80264 ZNF430 - - HGNC:20808|Ensembl:ENSG00000118620|HPRD:15788 19 19p12 zinc finger protein 430 protein-coding ZNF430 zinc finger protein 430 O - 20121230 -9606 80267 EDEM3 - C1orf22 HGNC:16787|MIM:610214|Ensembl:ENSG00000116406|HPRD:10724|Vega:OTTHUMG00000035387 1 1q25 ER degradation enhancer, mannosidase alpha-like 3 protein-coding EDEM3 ER degradation enhancer, mannosidase alpha-like 3 O ER degradation-enhancing -mannosidase-like protein 3|ER degradation-enhancing alpha-mannosidase-like 3 20121230 -9606 80270 HSD3B7 - CBAS1|PFIC4|SDR11E3 HGNC:18324|MIM:607764|Ensembl:ENSG00000099377|HPRD:09680|Vega:OTTHUMG00000132417 16 16p11.2 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 protein-coding HSD3B7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 O 3 beta-hydroxy-delta 5-C27-steroid oxidoreductase|3 beta-hydroxysteroid dehydrogenase type 7|3 beta-hydroxysteroid dehydrogenase type VII|3-beta-HSD VII|3-beta-hydroxy-Delta(5)-C27 steroid oxidoreductase|C(27)-3BETA-HSD|c(27) 3-beta-HSD|cholest-5-ene-3-beta,7-alpha-diol 3-beta-dehydrogenase|short chain dehydrogenase/reductase family 11E, member 3 20121230 -9606 80271 ITPKC - IP3-3KC|IP3KC HGNC:14897|MIM:606476|Ensembl:ENSG00000086544|HPRD:09400 19 19q13.1 inositol-trisphosphate 3-kinase C protein-coding ITPKC inositol-trisphosphate 3-kinase C O IP3 3-kinase C|IP3K C|InsP 3 kinase C|inositol 1,4,5-trisphosphate 3-kinase C|insP 3-kinase C 20121230 -9606 80273 GRPEL1 - HMGE HGNC:19696|MIM:606173|Ensembl:ENSG00000109519|HPRD:07550|Vega:OTTHUMG00000090495 4 4p16 GrpE-like 1, mitochondrial (E. coli) protein-coding GRPEL1 GrpE-like 1, mitochondrial (E. coli) O GrpE-like protein cochaperone|grpE protein homolog 1, mitochondrial|mt-GrpE#1 20121230 -9606 80274 SCUBE1 - - HGNC:13441|MIM:611746|Ensembl:ENSG00000159307|HPRD:18029|Vega:OTTHUMG00000150679 22 22q13 signal peptide, CUB domain, EGF-like 1 protein-coding SCUBE1 signal peptide, CUB domain, EGF-like 1 O signal peptide, CUB and EGF-like domain-containing protein 1|signal peptide-CUB domain-EGF-related 1 20121230 -9606 80279 CDK5RAP3 MSTP016 C53|HSF-27|IC53|LZAP|MST016|OK/SW-cl.114 HGNC:18673|MIM:608202|Ensembl:ENSG00000108465|HPRD:12190|Vega:OTTHUMG00000178682 17 17q21.32 CDK5 regulatory subunit associated protein 3 protein-coding CDK5RAP3 CDK5 regulatory subunit associated protein 3 O CDK5 regulatory subunit-associated protein 3|LXXLL/leucine-zipper-containing ARFbinding protein|ischemic heart CDK5 activator-binding protein C53 20121230 -9606 80298 MTERFD3 - mTERF2|mTERFL HGNC:30779|Ensembl:ENSG00000120832|HPRD:17431|Vega:OTTHUMG00000170007 12 12q24.1 MTERF domain containing 3 protein-coding MTERFD3 MTERF domain containing 3 O mTERF domain-containing protein 3, mitochondrial|mitochondrial transcription termination factor 2|mitochondrial transcription termination factor-like protein 20121230 -9606 80301 PLEKHO2 PP9099 PLEKHQ1|PP1628|pp9099 HGNC:30026|Ensembl:ENSG00000241839|Ensembl:ENSG00000249240|HPRD:15910|Vega:OTTHUMG00000133050|Vega:OTTHUMG00000161678 15 15q22.1 pleckstrin homology domain containing, family O member 2 protein-coding PLEKHO2 pleckstrin homology domain containing, family O member 2 O PH domain-containing family O member 2|PH domain-containing family Q member 1|PH domain-containing protein|pleckstrin homology domain containing, family Q member 1|pleckstrin homology domain-containing family O member 2|pleckstrin homology domain-containing family Q member 1 20121230 -9606 80303 EFHD1 PP3051 MST133|MSTP133|SWS2 HGNC:29556|MIM:611617|Ensembl:ENSG00000115468|HPRD:13265|Vega:OTTHUMG00000133263 2 2q37.1 EF-hand domain family, member D1 protein-coding EFHD1 EF-hand domain family, member D1 O EF-hand domain-containing protein 1|EF-hand domain-containing protein D1|swiprosin-2 20121230 -9606 80304 C2orf44 PP384 - HGNC:26157|Ensembl:ENSG00000163026|HPRD:07972|Vega:OTTHUMG00000125498 2 2p23.3 chromosome 2 open reading frame 44 protein-coding C2orf44 chromosome 2 open reading frame 44 O WD repeat-containing protein C2orf44 20121230 -9606 80305 TRABD RP3-402G11.12-004 LP6054|PP2447 HGNC:28805|Ensembl:ENSG00000170638|HPRD:11450|Vega:OTTHUMG00000044644 22 22q13.33 TraB domain containing protein-coding TRABD TraB domain containing O traB domain-containing protein 20121230 -9606 80306 MED28 FKSG20 1500003D12Rik|EG1|magicin HGNC:24628|MIM:610311|Ensembl:ENSG00000118579|HPRD:14381|Vega:OTTHUMG00000161980 4 4p16 mediator complex subunit 28 protein-coding MED28 mediator complex subunit 28 O endothelial-derived gene 1|endothelial-derived protein 1|mediator of RNA polymerase II transcription subunit 28|mediator of RNA polymerase II transcription, subunit 28 homolog|merlin and Grb2-interacting cytoskeletal protein|tumor angiogenesis marker EG-1 20121230 -9606 80307 FER1L4 RP3-477O4.7 C20orf124|bA563A22B.1|dJ309K20.1 HGNC:15801 20 20q11.22 fer-1-like 4 (C. elegans) pseudogene pseudo FER1L4 fer-1-like 4 (C. elegans) pseudogene O - 20121230 -9606 80308 FLAD1 PP591 FAD1|FADS|RP11-307C12.7 HGNC:24671|MIM:610595|Ensembl:ENSG00000160688|HPRD:17887|Vega:OTTHUMG00000037416 1 1q21.3 FAD1 flavin adenine dinucleotide synthetase homolog (S. cerevisiae) protein-coding FLAD1 FAD1 flavin adenine dinucleotide synthetase homolog (S. cerevisiae) O FAD pyrophosphorylase|FAD synthase|FAD synthetase|FAD-synthetase|FMN adenylyltransferase|Fad1, flavin adenine dinucleotide synthetase, homolog|flavin adenine dinucleotide synthase|flavin adenine dinucleotide synthetase 20121230 -9606 80309 SPHKAP - SKIP HGNC:30619|MIM:611646|Ensembl:ENSG00000153820|HPRD:18052|Vega:OTTHUMG00000153584 2 2q36 SPHK1 interactor, AKAP domain containing protein-coding SPHKAP SPHK1 interactor, AKAP domain containing O A-kinase anchor protein SPHKAP|SPHK1 (sphingosine kinase type 1) interacting protein|SPHK1-interactor and AKAP domain-containing protein|sphingosine kinase type 1-interacting protein 20121230 -9606 80310 PDGFD MSTP036 IEGF|SCDGF-B|SCDGFB HGNC:30620|MIM:609673|Ensembl:ENSG00000170962|HPRD:17830|Vega:OTTHUMG00000165953 11 11q22.3 platelet derived growth factor D protein-coding PDGFD platelet derived growth factor D O PDGF-D|iris-expressed growth factor|platelet-derived growth factor D|spinal cord derived growth factor B|spinal cord-derived growth factor B|spinal cord-derived growth factor-B 20121230 -9606 80311 KLHL15 - - HGNC:29347|Ensembl:ENSG00000174010|Vega:OTTHUMG00000021261 X Xp22.1-p21 kelch-like 15 (Drosophila) protein-coding KLHL15 kelch-like 15 (Drosophila) O kelch-like protein 15 20121230 -9606 80312 TET1 RP11-119F7.1 CXXC6|LCX|bA119F7.1 HGNC:29484|MIM:607790|Ensembl:ENSG00000138336|HPRD:09694|Vega:OTTHUMG00000018359 10 10q21 tet methylcytosine dioxygenase 1 protein-coding TET1 tet methylcytosine dioxygenase 1 O CXXC finger 6|CXXC zinc finger 6|CXXC-type zinc finger protein 6|leukemia-associated protein with a CXXC domain|methylcytosine dioxygenase TET1|ten-eleven translocation 1 gene protein|ten-eleven translocation-1|tet oncogene 1 20121230 -9606 80313 LRRC27 RP11-273H7.2 - HGNC:29346|Ensembl:ENSG00000148814|HPRD:17451|Vega:OTTHUMG00000019284 10 10q26.3 leucine rich repeat containing 27 protein-coding LRRC27 leucine rich repeat containing 27 O leucine-rich repeat-containing protein 27 20121230 -9606 80314 EPC1 - Epl1 HGNC:19876|MIM:610999|Ensembl:ENSG00000120616|HPRD:09941|Vega:OTTHUMG00000017925 10 10p11 enhancer of polycomb homolog 1 (Drosophila) protein-coding EPC1 enhancer of polycomb homolog 1 (Drosophila) O enhancer of polycomb homolog 1 20121230 -9606 80315 CPEB4 - - HGNC:21747|MIM:610607|Ensembl:ENSG00000113742|HPRD:16746|Vega:OTTHUMG00000130541 5 5q21 cytoplasmic polyadenylation element binding protein 4 protein-coding CPEB4 cytoplasmic polyadenylation element binding protein 4 O CPE-BP4|CPE-binding protein 4|cytoplasmic polyadenylation element-binding protein 4|hCPEB-4 20121230 -9606 80316 PPP1R2P9 - I-4 HGNC:16324|HPRD:06593 X Xp11.3 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 9 pseudo PPP1R2P9 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 9 O - 20121230 -9606 80317 ZKSCAN3 - ZF47|ZFP306|ZNF306|ZNF309|ZSCAN13|Zfp47|dJ874C20.1|dJ874C20.1.|zfp-47 HGNC:13853|MIM:612791|Ensembl:ENSG00000189298|HPRD:11705|Vega:OTTHUMG00000014521 6 6p22.1 zinc finger with KRAB and SCAN domains 3 protein-coding ZKSCAN3 zinc finger with KRAB and SCAN domains 3 O zinc finger and SCAN domain-containing protein 13|zinc finger protein 306|zinc finger protein 309|zinc finger protein 47 homolog|zinc finger protein with KRAB and SCAN domains 3|zinc finger protein zfp47 20121230 -9606 80318 GKAP1 FKSG21 GKAP42 HGNC:17496|MIM:611356|Ensembl:ENSG00000165113|HPRD:17042|Vega:OTTHUMG00000020106 9 9q21.32 G kinase anchoring protein 1 protein-coding GKAP1 G kinase anchoring protein 1 O G kinase-anchoring protein 1|cGMP-dependent protein kinase anchoring protein 42kDa|cGMP-dependent protein kinase-anchoring protein of 42 kDa|protein kinase anchoring protein GKAP42 20121230 -9606 80319 CXXC4 - IDAX HGNC:24593|MIM:611645|Ensembl:ENSG00000168772|HPRD:16773|Vega:OTTHUMG00000131121 4 4q22-q24 CXXC finger protein 4 protein-coding CXXC4 CXXC finger protein 4 O CXXC finger 4|CXXC-type zinc finger protein 4|Dvl-binding protein IDAX (inhibition of the Dvl and Axin complex)|inhibition of the Dvl and axin complex protein 20121230 -9606 80320 SP6 - EPFN|EPIPROFIN|KLF14 HGNC:14530|MIM:608613|Ensembl:ENSG00000189120|HPRD:12269|Vega:OTTHUMG00000132067 17 17q21.32 Sp6 transcription factor protein-coding SP6 Sp6 transcription factor O Kruppel-like factor 14|krueppel-like factor 14|transcription factor Sp6 20121230 -9606 80321 CEP70 - BITE HGNC:29972|MIM:614310|Ensembl:ENSG00000114107|HPRD:16779|Vega:OTTHUMG00000159891 3 3q22.3 centrosomal protein 70kDa protein-coding CEP70 centrosomal protein 70kDa O centrosomal protein of 70 kDa|p10-binding protein 20121230 -9606 80323 CCDC68 - SE57-1 HGNC:24350|Ensembl:ENSG00000166510|HPRD:18034|Vega:OTTHUMG00000132708 18 18q21 coiled-coil domain containing 68 protein-coding CCDC68 coiled-coil domain containing 68 O CTCL tumor antigen se57-1|CTCL-associated antigen se57-1|coiled-coil domain-containing protein 68|cutaneous T-cell lymphoma associated antigen|cutaneous T-cell lymphoma-associated antigen se57-1 20121230 -9606 80324 PUS1 PP8985 MLASA1 HGNC:15508|MIM:608109|Ensembl:ENSG00000177192|HPRD:10481|Vega:OTTHUMG00000128507 12 12q24.33 pseudouridylate synthase 1 protein-coding PUS1 pseudouridylate synthase 1 O mitochondrial tRNA pseudouridine synthase A|tRNA pseudouridine synthase A, mitochondrial|tRNA pseudouridine(38-40) synthase|tRNA pseudouridylate synthase I|tRNA uridine isomerase I|tRNA-uridine isomerase I 20121230 -9606 80325 ABTB1 PP2259 BPOZ|BTB3|EF1ABP HGNC:18275|MIM:608308|Ensembl:ENSG00000114626|HPRD:10513|Vega:OTTHUMG00000159636 3 3q21 ankyrin repeat and BTB (POZ) domain containing 1 protein-coding ABTB1 ankyrin repeat and BTB (POZ) domain containing 1 O ankyrin repeat and BTB/POZ domain-containing protein 1|elongation factor 1A-binding protein 20121230 -9606 80326 WNT10A - OODD|SSPS|STHAG4 HGNC:13829|MIM:606268|Ensembl:ENSG00000135925|HPRD:16207|Vega:OTTHUMG00000133085 2 2q35 wingless-type MMTV integration site family, member 10A protein-coding WNT10A wingless-type MMTV integration site family, member 10A O protein Wnt-10a 20121230 -9606 80327 MAPRE1P1 - MAPRE1P HGNC:29624 8 8q MAPRE1 pseudogene 1 pseudo MAPRE1P1 MAPRE1 pseudogene 1 O - 20121230 -9606 80328 ULBP2 UNQ463/PRO791 N2DL2|RAET1H HGNC:14894|MIM:605698|Ensembl:ENSG00000131015|HPRD:16143|Vega:OTTHUMG00000015803 6 6q25 UL16 binding protein 2 protein-coding ULBP2 UL16 binding protein 2 O ALCAN-alpha|N2DL-2|NKG2D ligand 2|NKG2DL2|UL16-binding protein 2|retinoic acid early transcript 1 H|retinoic acid early transcript 1H 20121230 -9606 80329 ULBP1 RP11-472G23.2 RAET1I HGNC:14893|MIM:605697|Ensembl:ENSG00000111981|HPRD:09297|Vega:OTTHUMG00000015810 6 6q25 UL16 binding protein 1 protein-coding ULBP1 UL16 binding protein 1 O N2DL-1|NKG2D ligand 1|NKG2DL1|UL16-binding protein 1|alcan-beta|retinoic acid early transcript 1I 20121230 -9606 80331 DNAJC5 - CLN4|CLN4B|CSP|DNAJC5A|NCL HGNC:16235|MIM:611203|Ensembl:ENSG00000101152|HPRD:08539|Vega:OTTHUMG00000033007 20 20q13.33 DnaJ (Hsp40) homolog, subfamily C, member 5 protein-coding DNAJC5 DnaJ (Hsp40) homolog, subfamily C, member 5 O cysteine string protein alpha|dnaJ homolog subfamily C member 5 20121230 -9606 80332 ADAM33 RP5-964F7.2 C20orf153|DJ964F7.1 HGNC:15478|MIM:607114|Ensembl:ENSG00000149451|HPRD:06173|Vega:OTTHUMG00000031758 20 20p13 ADAM metallopeptidase domain 33 protein-coding ADAM33 ADAM metallopeptidase domain 33 O ADAM 33|a disintegrin and metalloprotease 33|a disintegrin and metalloproteinase domain 33|disintegrin and metalloproteinase domain-containing protein 33|disintegrin and reprolysin metalloproteinase family protein 20121230 -9606 80333 KCNIP4 - CALP|KCHIP4 HGNC:30083|MIM:608182|Ensembl:ENSG00000185774|HPRD:12184|Vega:OTTHUMG00000128557 4 4p15.32 Kv channel interacting protein 4 protein-coding KCNIP4 Kv channel interacting protein 4 O Kv channel-interacting protein 4|a-type potassium channel modulatory protein 4|calsenilin-like protein|potassium channel interacting protein 4|potassium channel-interacting protein 4 20121230 -9606 80335 WDR82 UNQ9342/PRO34047 MST107|MSTP107|PRO2730|PRO34047|SWD2|TMEM113|WDR82A HGNC:28826|MIM:611059|Ensembl:ENSG00000164091|HPRD:15183|Vega:OTTHUMG00000150391 3 3p21.2 WD repeat domain 82 protein-coding WDR82 WD repeat domain 82 O WD repeat-containing protein 82|transmembrane protein 113 20121230 -9606 80336 PABPC1L RP5-1069P2.6 C20orf119|PABPC1L1|dJ1069P2.3|ePAB HGNC:15797|Ensembl:ENSG00000101104|Vega:OTTHUMG00000032553 20 - poly(A) binding protein, cytoplasmic 1-like protein-coding PABPC1L poly(A) binding protein, cytoplasmic 1-like O polyadenylate-binding protein 1-like 20121230 -9606 80339 PNPLA3 RP4-796I17.1 ADPN|C22orf20|iPLA(2)epsilon HGNC:18590|MIM:609567|Ensembl:ENSG00000100344|HPRD:12430|Vega:OTTHUMG00000150555 22 22q13.31 patatin-like phospholipase domain containing 3 protein-coding PNPLA3 patatin-like phospholipase domain containing 3 O acylglycerol O-acyltransferase|adiponutrin|calcium-independent phospholipase A2-epsilon|iPLA2-epsilon|iPLA2epsilon|patatin-like phospholipase domain-containing protein 3 20121230 -9606 80341 BPIFB2 RP4-726C3.7 BPIL1|C20orf184|LPLUNC2|RYSR|dJ726C3.2 HGNC:16177|MIM:614108|Ensembl:ENSG00000078898|HPRD:10690|Vega:OTTHUMG00000032232 20 20q11.21 BPI fold containing family B, member 2 protein-coding BPIFB2 BPI fold containing family B, member 2 O BPI fold-containing family B member 2|BPI-like 1|bactericidal/permeability-increasing protein-like 1|long palate, lung and nasal epithelium carcinoma-associated protein 2 20121230 -9606 80342 TRAF3IP3 - DJ434O14.3|T3JAM HGNC:30766|MIM:608255|Ensembl:ENSG00000009790|HPRD:16305|Vega:OTTHUMG00000036480 1 1q32 TRAF3 interacting protein 3 protein-coding TRAF3IP3 TRAF3 interacting protein 3 O TRAF3 interacting Jun N terminal kinase (JNK) activating modulator|TRAF3-interacting JNK-activating modulator|TRAF3-interacting protein 3 20121230 -9606 80343 SEL1L2 RP5-842G6.1 C20orf50 HGNC:15897|MIM:614289|Ensembl:ENSG00000101251|Vega:OTTHUMG00000031910 20 20p12.1 sel-1 suppressor of lin-12-like 2 (C. elegans) protein-coding SEL1L2 sel-1 suppressor of lin-12-like 2 (C. elegans) O protein sel-1 homolog 2|sel-1L2|suppressor of lin-12-like protein 2 20121230 -9606 80344 DCAF11 GL014 PRO2389|WDR23 HGNC:20258|MIM:613317|Ensembl:ENSG00000100897|HPRD:18297|Vega:OTTHUMG00000028793 14 14q11.2 DDB1 and CUL4 associated factor 11 protein-coding DCAF11 DDB1 and CUL4 associated factor 11 O DDB1- and CUL4-associated factor 11|WD repeat domain 23|WD repeat-containing protein 23 20121230 -9606 80345 ZSCAN16 - ZNF392|ZNF435|dJ265C24.3 HGNC:20813|Ensembl:ENSG00000196812|HPRD:15792|Vega:OTTHUMG00000014509 6 6p22.1 zinc finger and SCAN domain containing 16 protein-coding ZSCAN16 zinc finger and SCAN domain containing 16 O zinc finger and SCAN domain-containing protein 16|zinc finger protein 392|zinc finger protein 435 20121230 -9606 80346 REEP4 PP432 C8orf20 HGNC:26176|MIM:609349|Ensembl:ENSG00000168476|HPRD:09864|Vega:OTTHUMG00000131491 8 8p21.3 receptor accessory protein 4 protein-coding REEP4 receptor accessory protein 4 O receptor expression enhancing protein 4|receptor expression-enhancing protein 4 20121230 -9606 80347 COASY PSEC0106 DPCK|NBP|PPAT|UKR1|pOV-2 HGNC:29932|MIM:609855|Ensembl:ENSG00000068120|HPRD:13080|Vega:OTTHUMG00000180245 17 17q12-q21 CoA synthase protein-coding COASY CoA synthase O bifunctional coenzyme A synthase|bifunctional phosphopantetheine adenylyl transferase/dephospho CoA kinase|nucleotide binding protein|phosphopantetheine adenylyltransferase / dephosphocoenzyme A kinase 20121230 -9606 80349 WDR61 - REC14|SKI8 HGNC:30300|MIM:609540|Ensembl:ENSG00000140395|HPRD:15236|Vega:OTTHUMG00000143735 15 15q25.1 WD repeat domain 61 protein-coding WDR61 WD repeat domain 61 O SKI8 homolog|WD repeat-containing protein 61|meiotic recombination REC14 protein homolog|recombination protein REC14 20121230 -9606 80350 LPAL2 - APOA2|APOAL|APOARGC|RP11-72O9.2 HGNC:21210|MIM:611682|HPRD:17441 6 6q26-q27 lipoprotein, Lp(a)-like 2, pseudogene pseudo LPAL2 lipoprotein, Lp(a)-like 2, pseudogene O - 20121230 -9606 80351 TNKS2 - ARTD6|PARP-5b|PARP-5c|PARP5B|PARP5C|TANK2|TNKL|pART6 HGNC:15677|MIM:607128|Ensembl:ENSG00000107854|HPRD:06182|Vega:OTTHUMG00000018747 10 10q23.3 tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase 2 protein-coding TNKS2 tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase 2 O ADP-ribosyltransferase diphtheria toxin-like 6|TNKS-2|TRF1-interacting ankyrin-related ADP-ribose polymerase 2|poly [ADP-ribose] polymerase 5B|tankyrase 2|tankyrase II|tankyrase-2|tankyrase-like protein|tankyrase-related protein 20121230 -9606 80352 RNF39 DADB-60O11.8 HZF|HZFW|LIRF HGNC:18064|MIM:607524|Ensembl:ENSG00000204618|HPRD:09600|Vega:OTTHUMG00000031288 6 6p21.3 ring finger protein 39 protein-coding RNF39 ring finger protein 39 O LTP (long-term potentiation) induced RING finger protein|RING finger protein 39|protein HZFw 20121230 -9606 80380 PDCD1LG2 - B7DC|Btdc|CD273|PD-L2|PDCD1L2|PDL2|bA574F11.2 HGNC:18731|MIM:605723|Ensembl:ENSG00000197646|HPRD:16147|Vega:OTTHUMG00000019504 9 9p24.2 programmed cell death 1 ligand 2 protein-coding PDCD1LG2 programmed cell death 1 ligand 2 O B7 dendritic cell molecule|B7-DC|PD-1 ligand 2|PD-1-ligand 2|PDCD1 ligand 2|butyrophilin B7-DC|programmed death ligand 2 20121230 -9606 80381 CD276 PSEC0249 4Ig-B7-H3|B7-H3|B7H3|B7RP-2 HGNC:19137|MIM:605715|Ensembl:ENSG00000103855|HPRD:05756|Vega:OTTHUMG00000137585 15 15q23-q24 CD276 molecule protein-coding CD276 CD276 molecule O B7 homolog 3|CD276 antigen|costimulatory molecule 20121230 -9606 80699 CICP9 - bA291L22.4 HGNC:37758 10 10p11 capicua homolog (Drosophila) pseudogene 9 pseudo CICP9 capicua homolog (Drosophila) pseudogene 9 O - 20121230 -9606 80700 UBXN6 - UBXD1|UBXDC2 HGNC:14928|MIM:611946|Ensembl:ENSG00000167671|HPRD:18253|Vega:OTTHUMG00000181954 19 19p13 UBX domain protein 6 protein-coding UBXN6 UBX domain protein 6 O UBX domain containing 1|UBX domain-containing 1|UBX domain-containing 2|UBX domain-containing protein 1|UBX domain-containing protein 6 20121230 -9606 80701 AKR1D1P1 - AKR1D1P|SRD5BP1 HGNC:11288 1 1q24 aldo-keto reductase family 1, member D1 pseudogene 1 pseudo AKR1D1P1 aldo-keto reductase family 1, member D1 pseudogene 1 O - 20121230 -9606 80704 SLC19A3 - BBGD|THMD2|THTR2 HGNC:16266|MIM:606152|Ensembl:ENSG00000135917|HPRD:07311|Vega:OTTHUMG00000133185 2 2q37 solute carrier family 19, member 3 protein-coding SLC19A3 solute carrier family 19, member 3 O thTr-2|thiamine transporter 2 20121230 -9606 80705 TSGA10 - CEP4L|CT79 HGNC:14927|MIM:607166|Ensembl:ENSG00000135951|HPRD:06202|Vega:OTTHUMG00000130637 2 2q11.2 testis specific, 10 protein-coding TSGA10 testis specific, 10 O cancer/testis antigen 79|testis development protein NYD-SP7|testis-specific gene 10 protein 20121230 -9606 80709 AKNA RP11-82I1.4 - HGNC:24108|MIM:605729|Ensembl:ENSG00000106948|HPRD:16148|Vega:OTTHUMG00000020538 9 9q32 AT-hook transcription factor protein-coding AKNA AT-hook transcription factor O AKNA transcript F2|AT-hook transcription factor AKNA|AT-hook-containing transcription factor 20121230 -9606 80712 ESX1 RP3-513M9.1 ESX1L|ESXR1 HGNC:14865|MIM:300154|Ensembl:ENSG00000123576|HPRD:06503|HPRD:08945|Vega:OTTHUMG00000022125 X Xq22.1 ESX homeobox 1 protein-coding ESX1 ESX homeobox 1 O ESX1-related protein|extraembryonic, spermatogenesis, homeobox 1 homolog|homeobox protein ESX1 20121230 -9606 80713 MTIF2P1 - - HGNC:14861 1 1p11.2 mitochondrial translational initiation factor 2 pseudogene 1 pseudo MTIF2P1 mitochondrial translational initiation factor 2 pseudogene 1 O - 20121230 -9606 80714 PBX4 - - HGNC:13403|MIM:608127|Ensembl:ENSG00000105717|HPRD:16287|Vega:OTTHUMG00000172310 19 19p12 pre-B-cell leukemia homeobox 4 protein-coding PBX4 pre-B-cell leukemia homeobox 4 O homeobox protein PBX4|pre-B-cell leukemia transcription factor 4 20121230 -9606 80723 SLC35G2 - TMEM22 HGNC:28480|Ensembl:ENSG00000168917|HPRD:15532|Vega:OTTHUMG00000159787 3 3q22.3 solute carrier family 35, member G2 protein-coding SLC35G2 solute carrier family 35, member G2 O solute carrier family 35 member G2|transmembrane protein 22 20121230 -9606 80724 ACAD10 - - HGNC:21597|MIM:611181|Ensembl:ENSG00000111271|HPRD:10625|Vega:OTTHUMG00000169602 12 12q24.12 acyl-CoA dehydrogenase family, member 10 protein-coding ACAD10 acyl-CoA dehydrogenase family, member 10 O ACAD-10|acyl-CoA dehydrogenase family member 10|acyl-Coenzyme A dehydrogenase family, member 10 20121230 -9606 80725 SRCIN1 - P140|SNIP HGNC:29506|MIM:610786|Ensembl:ENSG00000017373|HPRD:11589|Vega:OTTHUMG00000178411 17 17q12 SRC kinase signaling inhibitor 1 protein-coding SRCIN1 SRC kinase signaling inhibitor 1 O P130Cas-associated protein|SNAP-25-interacting protein|SNAP25-interacting protein|p140Cap 20121230 -9606 80726 KIAA1683 - - HGNC:29350|Ensembl:ENSG00000130518|HPRD:13882 19 19p13.1 KIAA1683 protein-coding KIAA1683 KIAA1683 O uncharacterized protein KIAA1683 20121230 -9606 80727 TTYH3 - - HGNC:22222|MIM:608919|Ensembl:ENSG00000136295|HPRD:12333|Vega:OTTHUMG00000152050 7 7p22 tweety homolog 3 (Drosophila) protein-coding TTYH3 tweety homolog 3 (Drosophila) O hTTY3|protein tweety homolog 3 20121230 -9606 80728 ARHGAP39 - CrGAP|Vilse HGNC:29351|Ensembl:ENSG00000147799|HPRD:17224|Vega:OTTHUMG00000165182 8 8q24.3 Rho GTPase activating protein 39 protein-coding ARHGAP39 Rho GTPase activating protein 39 O RhoGAP93B homolog|crossGAP homolog|rho GTPase-activating protein 39 20121230 -9606 80731 THSD7B - - HGNC:29348|Ensembl:ENSG00000144229|Vega:OTTHUMG00000153590 2 2q22.1 thrombospondin, type I, domain containing 7B protein-coding THSD7B thrombospondin, type I, domain containing 7B O thrombospondin type-1 domain-containing protein 7B 20121230 -9606 80736 SLC44A4 DAAP-66K18.1 C6orf29|CTL4|NG22 HGNC:13941|MIM:606107|Ensembl:ENSG00000204385|HPRD:12087|Vega:OTTHUMG00000031133 6 6p21.3 solute carrier family 44, member 4 protein-coding SLC44A4 solute carrier family 44, member 4 O choline transporter-like protein 4 20121230 -9606 80737 VWA7 DAAP-21F2.1 C6orf27|G7c|NG37 HGNC:13939|MIM:609693|Ensembl:ENSG00000204396|HPRD:12880|Vega:OTTHUMG00000031132 6 6p21.33 von Willebrand factor A domain containing 7 protein-coding VWA7 von Willebrand factor A domain containing 7 O protein G7c|von Willebrand factor A domain-containing protein 7 20121230 -9606 80739 C6orf25 DADB-110M10.2 G6b|NG31 HGNC:13937|MIM:606520|Ensembl:ENSG00000204420|HPRD:09405|Vega:OTTHUMG00000031130 6 6p21.33 chromosome 6 open reading frame 25 protein-coding C6orf25 chromosome 6 open reading frame 25 O immunoglobulin receptor|protein G6b 20121230 -9606 80740 LY6G6C DADB-110M10.4 C6orf24|G6c|NG24 HGNC:13936|MIM:610435|Ensembl:ENSG00000204421|HPRD:14329|Vega:OTTHUMG00000031251 6 6p21.33 lymphocyte antigen 6 complex, locus G6C protein-coding LY6G6C lymphocyte antigen 6 complex, locus G6C O lymphocyte antigen 6 complex locus protein G6c|lymphocyte antigen-6 G6C 20121230 -9606 80741 LY6G5C DADB-127H9.6 C6orf20|G5C|LY6G5CA|LY6G5CB|NG33 HGNC:13932|MIM:610434|Ensembl:ENSG00000204428|HPRD:14328|Vega:OTTHUMG00000031228 6 6p21.33 lymphocyte antigen 6 complex, locus G5C protein-coding LY6G5C lymphocyte antigen 6 complex, locus G5C O lymphocyte antigen 6 complex locus protein G5c|lymphocyte antigen-6 G5C 20121230 -9606 80742 PRR3 DADB-87H23.3 CAT56 HGNC:21149|Ensembl:ENSG00000204576|HPRD:17915|Vega:OTTHUMG00000031037 6 6p21.33 proline rich 3 protein-coding PRR3 proline rich 3 O MHC class I region proline-rich protein CAT56|proline-rich polypeptide 3|proline-rich protein 3 20121230 -9606 80745 THUMPD2 - C2orf8 HGNC:14890|MIM:611751|Ensembl:ENSG00000138050|HPRD:15506|Vega:OTTHUMG00000102149 2 2p22.1|2p22-p21 THUMP domain containing 2 protein-coding THUMPD2 THUMP domain containing 2 O SAM-dependent methyltransferase|THUMP domain-containing protein 2 20121230 -9606 80746 TSEN2 - PCH2B|SEN2|SEN2L HGNC:28422|MIM:608753|Ensembl:ENSG00000154743|HPRD:10576|Vega:OTTHUMG00000129765 3 3p25.2 tRNA splicing endonuclease 2 homolog (S. cerevisiae) protein-coding TSEN2 tRNA splicing endonuclease 2 homolog (S. cerevisiae) O hsSen2|tRNA-intron endonuclease Sen2|tRNA-splicing endonuclease subunit Sen2 20121230 -9606 80755 AARSD1 - - HGNC:28417|MIM:613212|Ensembl:ENSG00000108825|HPRD:14524 17 17q21.31 alanyl-tRNA synthetase domain containing 1 protein-coding AARSD1 alanyl-tRNA synthetase domain containing 1 O alanyl-tRNA editing protein Aarsd1|alanyl-tRNA synthetase domain-containing protein 1 20121230 -9606 80757 TMEM121 - hole HGNC:20511|Ensembl:ENSG00000184986|HPRD:14652|Vega:OTTHUMG00000029912 14 14q32.33 transmembrane protein 121 protein-coding TMEM121 transmembrane protein 121 O hole 20121230 -9606 80758 PRR7 - - HGNC:28130|Ensembl:ENSG00000131188|HPRD:15186|Vega:OTTHUMG00000130861 5 5q35.3 proline rich 7 (synaptic) protein-coding PRR7 proline rich 7 (synaptic) O proline-rich protein 7|synaptic proline-rich membrane protein 20121230 -9606 80759 KHDC1 RP11-257K9.4 C6orf148|NDG1|bA257K9.4 HGNC:21366|MIM:611688|Ensembl:ENSG00000135314|HPRD:10790|Vega:OTTHUMG00000015030 6 6q13 KH homology domain containing 1 protein-coding KHDC1 KH homology domain containing 1 O KH homology domain-containing protein 1 20121230 -9606 80760 ITIH5 PP14776 ITI-HC5 HGNC:21449|MIM:609783|Ensembl:ENSG00000123243|HPRD:07865|HPRD:13747|Vega:OTTHUMG00000017635 10 10p14 inter-alpha-trypsin inhibitor heavy chain family, member 5 protein-coding ITIH5 inter-alpha-trypsin inhibitor heavy chain family, member 5 O ITI heavy chain H5|inter-alpha (globulin) inhibitor H5|inter-alpha-inhibitor heavy chain 5|inter-alpha-trypsin inhibitor heavy chain H5 20121230 -9606 80761 UPK3B - P35|UP3B|UPIIIB HGNC:21444|MIM:611887|Ensembl:ENSG00000243566|HPRD:15626|Vega:OTTHUMG00000149929 7 7q11.2 uroplakin 3B protein-coding UPK3B uroplakin 3B O uroplakin IIIb|uroplakin-3b 20121230 -9606 80762 NDFIP1 PSEC0192 N4WBP5 HGNC:17592|MIM:612050|Ensembl:ENSG00000131507|HPRD:14816|Vega:OTTHUMG00000129659 5 5q31.3 Nedd4 family interacting protein 1 protein-coding NDFIP1 Nedd4 family interacting protein 1 O NEDD4 family-interacting protein 1|Nedd4 WW domain-binding protein 5|breast cancer-associated protein SGA-1M|putative MAPK-activating protein PM13|putative NF-kappa-B-activating protein 164|putative NFKB and MAPK-activating protein 20121230 -9606 80763 C12orf39 - - HGNC:28139|Ensembl:ENSG00000134548|HPRD:14405|Vega:OTTHUMG00000169134 12 12p12.1 chromosome 12 open reading frame 39 protein-coding C12orf39 chromosome 12 open reading frame 39 O NPQ|neuropeptide Q|spexin 20121230 -9606 80764 THAP7 - - HGNC:23190|MIM:609518|Ensembl:ENSG00000184436|HPRD:15500|Vega:OTTHUMG00000150879 22 22q11.2 THAP domain containing 7 protein-coding THAP7 THAP domain containing 7 O THAP domain-containing protein 7 20121230 -9606 80765 STARD5 - - HGNC:18065|MIM:607050|Ensembl:ENSG00000172345|HPRD:09517|Vega:OTTHUMG00000147342 15 15q26 StAR-related lipid transfer (START) domain containing 5 protein-coding STARD5 StAR-related lipid transfer (START) domain containing 5 O START domain containing 5|START domain-containing protein 5|stAR-related lipid transfer protein 5 20121230 -9606 80767 MMDFS - - MIM:605711 - - Multiple mitochondrial dysfunctions syndrome unknown - - - - 20120711 -9606 80768 HMNJ - MNDJ MIM:605726 9 9p21.1-p12 Distal hereditary motor neuropathy, Jerash type unknown - - - - 20120622 -9606 80770 CCPSO - CCSSO MIM:605728 15 15q21-q22 Cataract, central pouch-like, with sutural opacities unknown - - - - 20120622 -9606 80771 MOPCB2 - MCOPCB2 MIM:605738 15 15q12-q15 Microphthalmia, colobomatous, 2 unknown - - - - 20120622 -9606 80772 GLTPD1 - - HGNC:28116|Ensembl:ENSG00000224051|Vega:OTTHUMG00000003171 1 1p36.33 glycolipid transfer protein domain containing 1 protein-coding GLTPD1 glycolipid transfer protein domain containing 1 O glycolipid transfer protein domain-containing protein 1 20121230 -9606 80774 LIMD2 SB143 - HGNC:28142|Ensembl:ENSG00000136490|HPRD:14407|Vega:OTTHUMG00000178907 17 17q23.3 LIM domain containing 2 protein-coding LIMD2 LIM domain containing 2 O LIM domain-containing protein 2 20121230 -9606 80775 TMEM177 - - HGNC:28143|Ensembl:ENSG00000144120|HPRD:14409|Vega:OTTHUMG00000153312 2 2q14.2 transmembrane protein 177 protein-coding TMEM177 transmembrane protein 177 O - 20121230 -9606 80776 B9D2 - ICIS-1|MKS10|MKSR2 HGNC:28636|MIM:611951|Ensembl:ENSG00000123810|HPRD:14613 19 19q13.2 B9 protein domain 2 protein-coding B9D2 B9 protein domain 2 O B9 domain-containing protein 2|MKS1-related protein 2|involved in cIlia stability-1 20121230 -9606 80777 CYB5B - CYB5-M|CYPB5M|OMB5 HGNC:24374|MIM:611964|Ensembl:ENSG00000103018|HPRD:13106|Vega:OTTHUMG00000133020 16 16q22.1 cytochrome b5 type B (outer mitochondrial membrane) protein-coding CYB5B cytochrome b5 type B (outer mitochondrial membrane) O cytochrome b5 outer mitochondrial membrane isoform|cytochrome b5 type B|outer mitochondrial membrane cytochrome b5|type 2 cyt-b5 20121230 -9606 80778 ZNF34 - KOX32 HGNC:13098|MIM:194526|Ensembl:ENSG00000196378|HPRD:11772|Vega:OTTHUMG00000165248 8 8q24.3 zinc finger protein 34 protein-coding ZNF34 zinc finger protein 34 O zinc finger protein 34 (KOX 32)|zinc finger protein KOX32 20121230 -9606 80781 COL18A1 - KNO|KNO1|KS HGNC:2195|MIM:120328|Ensembl:ENSG00000182871|HPRD:00382|Vega:OTTHUMG00000090407 21 21q22.3 collagen, type XVIII, alpha 1 protein-coding COL18A1 collagen, type XVIII, alpha 1 O antiangiogenic agent|collagen alpha-1(XVIII) chain|endostatin|multi-functional protein MFP 20121230 -9606 80789 INTS5 - INT5|KIAA1698 HGNC:29352|MIM:611349|Ensembl:ENSG00000185085|HPRD:13883|Vega:OTTHUMG00000167605 11 11q12.3 integrator complex subunit 5 protein-coding INTS5 integrator complex subunit 5 O - 20121230 -9606 80790 CMIP - TCMIP HGNC:24319|MIM:610112|Ensembl:ENSG00000153815|HPRD:10839|Vega:OTTHUMG00000176520 16 16q23 c-Maf inducing protein protein-coding CMIP c-Maf inducing protein O C-Maf-inducing protein|tc-Mip 20121230 -9606 80816 ASXL3 - KIAA1713 HGNC:29357|Ensembl:ENSG00000141431|Vega:OTTHUMG00000178395 18 18q11 additional sex combs like 3 (Drosophila) protein-coding ASXL3 additional sex combs like 3 (Drosophila) O additional sex combs-like protein 3|putative Polycomb group protein ASXL3 20121230 -9606 80817 CEP44 - KIAA1712|PS1TP3 HGNC:29356|Ensembl:ENSG00000164118|HPRD:13885|Vega:OTTHUMG00000160752 4 4q34 centrosomal protein 44kDa protein-coding CEP44 centrosomal protein 44kDa O HBV PreS1-transactivated protein 3|centrosomal protein of 44 kDa 20121230 -9606 80818 ZNF436 RP5-1057J7.3 ZNF|Zfp46 HGNC:20814|MIM:611703|Ensembl:ENSG00000125945|HPRD:15793|Vega:OTTHUMG00000003232 1 1p36 zinc finger protein 436 protein-coding ZNF436 zinc finger protein 436 O DNA-binding protein 20121230 -9606 80820 EEPD1 - HSPC107 HGNC:22223|Ensembl:ENSG00000122547|HPRD:13884|Vega:OTTHUMG00000154904 7 7p14.2 endonuclease/exonuclease/phosphatase family domain containing 1 protein-coding EEPD1 endonuclease/exonuclease/phosphatase family domain containing 1 O endonuclease/exonuclease/phosphatase family domain-containing protein 1 20121230 -9606 80821 DDHD1 - PA-PLA1|PAPLA1|SPG28 HGNC:19714|MIM:614603|Ensembl:ENSG00000100523|HPRD:07482|Vega:OTTHUMG00000140305 14 14q21 DDHD domain containing 1 protein-coding DDHD1 DDHD domain containing 1 O DDHD domain-containing protein 1|phosphatidic acid-preferring phospholipase A1 homolog|phosphatidic acid-preferring phospholipase A1-like protein|phospholipase DDHD1|spastic paraplegia 28 (autosomal recessive) 20121230 -9606 80823 BHLHB9 RP4-769N13.5 p60TRP HGNC:29353|Ensembl:ENSG00000198908|HPRD:10028|Vega:OTTHUMG00000022060 X Xq23 basic helix-loop-helix domain containing, class B, 9 protein-coding BHLHB9 basic helix-loop-helix domain containing, class B, 9 O p60-like protein|protein BHLHb9|transcription regulator of 60 kDa 20121230 -9606 80824 DUSP16 - MKP-7|MKP7 HGNC:17909|MIM:607175|Ensembl:ENSG00000111266|HPRD:09525|Vega:OTTHUMG00000168582 12 12p13 dual specificity phosphatase 16 protein-coding DUSP16 dual specificity phosphatase 16 O MAP kinase phosphatase 7|MAPK phosphatase-7|dual specificity protein phosphatase 16|mitogen-activated protein kinase phosphatase 7 20121230 -9606 80829 ZFP91 FKSG11 DMS-8|DSM-8|PZF|ZFP-91|ZNF757 HGNC:14983|Ensembl:ENSG00000186660|Ensembl:ENSG00000255073|HPRD:11700|Vega:OTTHUMG00000137391|Vega:OTTHUMG00000166280 11 11q12 ZFP91 zinc finger protein protein-coding ZFP91 ZFP91 zinc finger protein O E3 ubiquitin-protein ligase ZFP91|drug resistance-associated sequence in melanoma 8|penta zinc finger protein|zinc finger protein 757|zinc finger protein 91 homolog|zinc finger protein homologous to Zfp91 in mouse 20121230 -9606 80830 APOL6 UNQ3095/PRO21341 APOL-VI|APOLVI HGNC:14870|MIM:607256|Ensembl:ENSG00000221963|HPRD:06266|Vega:OTTHUMG00000150615 22 22q12.3 apolipoprotein L, 6 protein-coding APOL6 apolipoprotein L, 6 O apolipoprotein L-VI|apolipoprotein L6 20121230 -9606 80831 APOL5 - APOL-V|APOLV HGNC:14869|MIM:607255|Ensembl:ENSG00000128313|HPRD:06265|Vega:OTTHUMG00000150588 22 22q12.3 apolipoprotein L, 5 protein-coding APOL5 apolipoprotein L, 5 O apolipoprotein L-V|apolipoprotein L5 20121230 -9606 80832 APOL4 CTA-212A2.2 APOL-IV|APOLIV HGNC:14867|MIM:607254|Ensembl:ENSG00000100336|HPRD:16237|Vega:OTTHUMG00000150630 22 22q11.2-q13.2 apolipoprotein L, 4 protein-coding APOL4 apolipoprotein L, 4 O apolipoprotein L-IV|apolipoprotein L4 20121230 -9606 80833 APOL3 - APOLIII|CG121 HGNC:14868|MIM:607253|Ensembl:ENSG00000128284|HPRD:06264|Vega:OTTHUMG00000150632 22 22q13.1 apolipoprotein L, 3 protein-coding APOL3 apolipoprotein L, 3 O CG12_1|TNF-inducible protein CG12-1|apoL-III|apolipoprotein L-III|apolipoprotein L3 20121230 -9606 80834 TAS1R2 - GPR71|T1R2|TR2 HGNC:14905|MIM:606226|Ensembl:ENSG00000179002|HPRD:06940|Vega:OTTHUMG00000002442 1 1p36.13 taste receptor, type 1, member 2 protein-coding TAS1R2 taste receptor, type 1, member 2 O G protein-coupled receptor 71|G-protein coupled receptor 71|sweet taste receptor T1R2|taste receptor type 1 member 2 20121230 -9606 80835 TAS1R1 GM148 GPR70|T1R1|TR1 HGNC:14448|MIM:606225|Ensembl:ENSG00000173662|HPRD:06939|Vega:OTTHUMG00000001441 1 1p36.23 taste receptor, type 1, member 1 protein-coding TAS1R1 taste receptor, type 1, member 1 O G protein-coupled receptor 70|G-protein coupled receptor 70|seven transmembrane helix receptor|taste receptor type 1 member 1 20121230 -9606 80851 SH3BP5L UNQ2766/PRO7133 - HGNC:29360|Ensembl:ENSG00000175137|HPRD:13887|Vega:OTTHUMG00000040389 1 1q44 SH3-binding domain protein 5-like protein-coding SH3BP5L SH3-binding domain protein 5-like O SH3 domain-binding protein 5-like|SH3BP-5-like 20121230 -9606 80852 GRIP2 - - HGNC:23841 3 3p24-p23 glutamate receptor interacting protein 2 protein-coding GRIP2 glutamate receptor interacting protein 2 O GRIP-2|glutamate receptor-interacting protein 2 20121230 -9606 80853 JHDM1D - KDM7A HGNC:22224|Ensembl:ENSG00000006459|Vega:OTTHUMG00000157327 7 7q34 jumonji C domain containing histone demethylase 1 homolog D (S. cerevisiae) protein-coding JHDM1D jumonji C domain containing histone demethylase 1 homolog D (S. cerevisiae) O histone lysine demethylase JHDM1D|jmjC domain-containing histone demethylation protein 1D|jumonji C domain-containing histone demethylase 1 homolog D|lysine-specific demethylase 7 20121230 -9606 80854 SETD7 - KMT7|SET7|SET7/9|SET9 HGNC:30412|MIM:606594|Ensembl:ENSG00000145391|HPRD:16226|Vega:OTTHUMG00000133385 4 4q28 SET domain containing (lysine methyltransferase) 7 protein-coding SETD7 SET domain containing (lysine methyltransferase) 7 O H3-K4-HMTase SETD7|SET domain-containing protein 7|histone H3-K4 methyltransferase SETD7|histone H3-lysine 4-specific methyltransferase|histone-lysine N-methyltransferase SETD7|lysine N-methyltransferase 7 20121230 -9606 80856 KIAA1715 - LNP|Ul|ulnaless HGNC:21610|MIM:610236|Ensembl:ENSG00000144320|HPRD:13886|Vega:OTTHUMG00000154112 2 2q31 KIAA1715 protein-coding KIAA1715 KIAA1715 O 2310011O18Rik|4921514L11Rik|Lunapark|protein lunapark 20121230 -9606 80862 ZNRD1-AS1 - C6orf12|HTEX4|NCRNA00171|ZNRD1-AS|ZNRD1AS HGNC:13924 6 6p22.1 ZNRD1 antisense RNA 1 miscRNA ZNRD1-AS1 ZNRD1 antisense RNA 1 O - 20121230 -9606 80863 PRRT1 DAAP-218M18.1 C6orf31|DSPD1|IFITMD7|NG5 HGNC:13943|Ensembl:ENSG00000204314|HPRD:10794|Vega:OTTHUMG00000031144 6 6p21.32 proline-rich transmembrane protein 1 protein-coding PRRT1 proline-rich transmembrane protein 1 O dispanin subfamily D member 1|interferon induced transmembrane protein domain containing 7 20121230 -9606 80864 EGFL8 DAAP-218M18.3 C6orf8|NG3 HGNC:13944|MIM:609897|Ensembl:ENSG00000241404|Ensembl:ENSG00000258388|HPRD:16854|Vega:OTTHUMG00000031222 6 6p21.32 EGF-like-domain, multiple 8 protein-coding EGFL8 EGF-like-domain, multiple 8 O EGF-like protein 8|VE-statin-2|epidermal growth factor-like protein 8|vascular endothelial statin-2 20121230 -9606 80868 HCG4B - HCG4P6|HCGIV-06|HCGIV-6|HCGIV.5|bCX67J3.3|bPG309N1.1|bQB90C11.3 HGNC:22919 6 6p21.3 HLA complex group 4B (non-protein coding) miscRNA HCG4B HLA complex group 4B (non-protein coding) O - 20121230 -9606 80870 DKBI - - MIM:127600 4 4q35 Dyskeratosis, hereditary benign intraepithelial unknown - - - - 20121208 -9606 80871 ANMA - - MIM:605746 16 16q13-q21 Anisomastia unknown - - - - 20120622 -9606 80895 ILKAP - ILKAP2|ILKAP3|PP2C-DELTA HGNC:15566|Ensembl:ENSG00000132323|HPRD:17147|Vega:OTTHUMG00000133334 2 2q37.3 integrin-linked kinase-associated serine/threonine phosphatase protein-coding ILKAP integrin-linked kinase-associated serine/threonine phosphatase O integrin-linked kinase associated phosphatase|integrin-linked kinase-associated serine/threonine phosphatase 2C|protein phosphatase 2c, delta isozyme 20121230 -9606 80896 NPL RP11-249O6.1 C112|C1orf13|NAL|NPL1 HGNC:16781|MIM:611412|Ensembl:ENSG00000135838|HPRD:14836|Vega:OTTHUMG00000035321 1 1q25 N-acetylneuraminate pyruvate lyase (dihydrodipicolinate synthase) protein-coding NPL N-acetylneuraminate pyruvate lyase (dihydrodipicolinate synthase) O N-acetylneuraminate lyase|N-acetylneuraminic acid aldolase|NALase|dihydrodipicolinate synthetase homolog 1|sialate-pyruvate lyase|sialic acid aldolase 20121230 -9606 80975 TMPRSS5 - SPINESIN HGNC:14908|MIM:606751|Ensembl:ENSG00000166682|HPRD:05995|Vega:OTTHUMG00000168186 11 11q transmembrane protease, serine 5 protein-coding TMPRSS5 transmembrane protease, serine 5 O transmembrane protease serine 5 20121230 -9606 81025 GJA9 RP5-864K19.2 CX58|CX59|GJA10 HGNC:19155|MIM:611923|Ensembl:ENSG00000131233|HPRD:13578 1 1p34 gap junction protein, alpha 9, 59kDa protein-coding GJA9 gap junction protein, alpha 9, 59kDa O connexin 59|connexin-58|gap junction alpha 10|gap junction alpha-9 protein 20121230 -9606 81027 TUBB1 - - HGNC:16257|MIM:612901|Ensembl:ENSG00000101162|HPRD:18243|Vega:OTTHUMG00000032860 20 20q13.32 tubulin, beta 1 class VI protein-coding TUBB1 tubulin, beta 1 class VI O beta tubulin 1, class VI|class VI beta-tubulin|tubulin beta-1 chain 20121230 -9606 81029 WNT5B - - HGNC:16265|MIM:606361|Ensembl:ENSG00000111186|HPRD:05899|Vega:OTTHUMG00000090375 12 12p13.3 wingless-type MMTV integration site family, member 5B protein-coding WNT5B wingless-type MMTV integration site family, member 5B O WNT-5B protein|protein Wnt-5b 20121230 -9606 81030 ZBP1 RP4-718J7.1 C20orf183|DAI|DLM-1|DLM1 HGNC:16176|MIM:606750|Ensembl:ENSG00000124256|HPRD:09484|Vega:OTTHUMG00000032824 20 20q13.31 Z-DNA binding protein 1 protein-coding ZBP1 Z-DNA binding protein 1 O DNA-dependent activator of IFN-regulatory factors|DNA-dependent activator of IRFs|DNA-dependent activator of interferon regulatory factors|Z-DNA-binding protein 1|tumor stroma and activated macrophage protein DLM-1 20121230 -9606 81031 SLC2A10 - ATS|GLUT10 HGNC:13444|MIM:606145|Ensembl:ENSG00000197496|HPRD:05851|Vega:OTTHUMG00000032657 20 20q13.1 solute carrier family 2 (facilitated glucose transporter), member 10 protein-coding SLC2A10 solute carrier family 2 (facilitated glucose transporter), member 10 O GLUT-10|glucose transporter type 10|solute carrier family 2, facilitated glucose transporter member 10 20121230 -9606 81033 KCNH6 - ERG2|HERG2|Kv11.2 HGNC:18862|MIM:608168|Ensembl:ENSG00000173826|HPRD:16294|Vega:OTTHUMG00000178901 17 17q23.3 potassium voltage-gated channel, subfamily H (eag-related), member 6 protein-coding KCNH6 potassium voltage-gated channel, subfamily H (eag-related), member 6 O ERG-2|eag related protein 2|eag-related gene member 2|eag-related protein 2|ether-a-go-go related gene potassium channel 2|ether-a-go-go-related gene potassium channel 2|ether-a-go-go-related protein 2|hERG-2|potassium voltage-gated channel subfamily H member 6|voltage-gated potassium channel subunit Kv11.2 20121230 -9606 81034 SLC25A32 - MFT|MFTC HGNC:29683|MIM:610815|Ensembl:ENSG00000164933|HPRD:11301|Vega:OTTHUMG00000164790 8 8q22.3 solute carrier family 25 (mitochondrial folate carrier) , member 32 protein-coding SLC25A32 solute carrier family 25 (mitochondrial folate carrier) , member 32 O mitochondrial folate transporter/carrier|solute carrier family 25, member 32 20121230 -9606 81035 COLEC12 - CLP1|NSR2|SCARA4|SRCL HGNC:16016|MIM:607621|Ensembl:ENSG00000158270|HPRD:06358|Vega:OTTHUMG00000178145 18 18pter-p11.3 collectin sub-family member 12 protein-coding COLEC12 collectin sub-family member 12 O collectin placenta protein 1|collectin-12|hCL-P1|nurse cell scavenger receptor 2|scavenger receptor class A, member 4|scavenger receptor with C-type lectin 20121230 -9606 81037 CLPTM1L - CRR9 HGNC:24308|MIM:612585|Ensembl:ENSG00000049656|HPRD:07480|Vega:OTTHUMG00000131015 5 5p15.33 CLPTM1-like protein-coding CLPTM1L CLPTM1-like O CLPTM1-like protein|CRR9p|cisplatin resistance related protein CRR9p|cisplatin resistance-related protein 9|cleft lip and palate transmembrane protein 1-like protein 20121230 -9606 81047 OR5BJ1P - OST740 HGNC:15434 12 12q13.11 olfactory receptor, family 5, subfamily BJ, member 1 pseudogene pseudo OR5BJ1P olfactory receptor, family 5, subfamily BJ, member 1 pseudogene O - 20121230 -9606 81050 OR5AC2 - HSA1 HGNC:15431|Ensembl:ENSG00000196578|HPRD:15030|Vega:OTTHUMG00000160083 3 3q12.1 olfactory receptor, family 5, subfamily AC, member 2 protein-coding OR5AC2 olfactory receptor, family 5, subfamily AC, member 2 O olfactory receptor 5AC2 20121230 -9606 81061 OR11H1 - OR22-1 HGNC:15404|HPRD:14901 22 22q11.2 olfactory receptor, family 11, subfamily H, member 1 protein-coding OR11H1 olfactory receptor, family 11, subfamily H, member 1 O olfactory receptor 11H1|olfactory receptor OR22-1|seven transmembrane helix receptor 20121230 -9606 81075 OR5BH1P - OR5BH2P HGNC:15407 X Xq26.2 olfactory receptor, family 5, subfamily BH, member 1 pseudogene pseudo OR5BH1P olfactory receptor, family 5, subfamily BH, member 1 pseudogene O - 20121230 -9606 81076 OR5AW1P - - HGNC:15406 X Xq26.2 olfactory receptor, family 5, subfamily AW, member 1 pseudogene pseudo OR5AW1P olfactory receptor, family 5, subfamily AW, member 1 pseudogene O - 20121230 -9606 81077 OR4W1P - - HGNC:15405 X Xq25 olfactory receptor, family 4, subfamily W, member 1 pseudogene pseudo OR4W1P olfactory receptor, family 4, subfamily W, member 1 pseudogene O - 20121230 -9606 81078 OR4K12P - OR21-2 HGNC:15403 21 21q11.1 olfactory receptor, family 4, subfamily K, member 12 pseudogene pseudo OR4K12P olfactory receptor, family 4, subfamily K, member 12 pseudogene O - 20121230 -9606 81079 OR4K11P - OR21-1 HGNC:15402 21 21q11.1 olfactory receptor, family 4, subfamily K, member 11 pseudogene pseudo OR4K11P olfactory receptor, family 4, subfamily K, member 11 pseudogene O - 20121230 -9606 81081 OR7A18P - - HGNC:15399 19 19p13.12 olfactory receptor, family 7, subfamily A, member 18 pseudogene pseudo OR7A18P olfactory receptor, family 7, subfamily A, member 18 pseudogene O - 20121230 -9606 81090 OR1AB1P - - HGNC:15390 19 19p13.12 olfactory receptor, family 1, subfamily AB, member 1 pseudogene pseudo OR1AB1P olfactory receptor, family 1, subfamily AB, member 1 pseudogene O - 20121230 -9606 81099 OR4F17 - OR4F11P|OR4F18|OR4F19 HGNC:15381|HPRD:14970 19 19p13.3 olfactory receptor, family 4, subfamily F, member 17 protein-coding OR4F17 olfactory receptor, family 4, subfamily F, member 17 O olfactory receptor 4F11|olfactory receptor 4F17|olfactory receptor 4F18|olfactory receptor 4F19|olfactory receptor, family 4, subfamily F, member 11 pseudogene|olfactory receptor, family 4, subfamily F, member 19 20121230 -9606 81104 OR4Q1P - - HGNC:15376 15 15q11.2 olfactory receptor, family 4, subfamily Q, member 1 pseudogene pseudo OR4Q1P olfactory receptor, family 4, subfamily Q, member 1 pseudogene O - 20121230 -9606 81109 OR11K1P - - HGNC:15371 15 15q11.2 olfactory receptor, family 11, subfamily K, member 1 pseudogene pseudo OR11K1P olfactory receptor, family 11, subfamily K, member 1 pseudogene O uncharacterized protein LOC100288919 20121230 -9606 81110 OR11J2P - - HGNC:15370 15 15q11.2 olfactory receptor, family 11, subfamily J, member 2 pseudogene pseudo OR11J2P olfactory receptor, family 11, subfamily J, member 2 pseudogene O - 20121230 -9606 81111 OR11J1P - - HGNC:15369 15 15q11.2 olfactory receptor, family 11, subfamily J, member 1 pseudogene pseudo OR11J1P olfactory receptor, family 11, subfamily J, member 1 pseudogene O - 20121230 -9606 81113 OR11H3P - - HGNC:15367 15 15q11.2 olfactory receptor, family 11, subfamily H, member 3 pseudogene pseudo OR11H3P olfactory receptor, family 11, subfamily H, member 3 pseudogene O - 20121230 -9606 81114 OR7K1P - - HGNC:15366 14 14q12 olfactory receptor, family 7, subfamily K, member 1 pseudogene pseudo OR7K1P olfactory receptor, family 7, subfamily K, member 1 pseudogene O - 20121230 -9606 81115 OR7E106P - OR14-NP2|OR7E34P|OR7E40P|OST011|OST215 HGNC:15365 14 14q21 olfactory receptor, family 7, subfamily E, member 106 pseudogene pseudo OR7E106P olfactory receptor, family 7, subfamily E, member 106 pseudogene O - 20121230 -9606 81116 OR7E105P - OR14-NP1 HGNC:15364 14 14q21 olfactory receptor, family 7, subfamily E, member 105 pseudogene pseudo OR7E105P olfactory receptor, family 7, subfamily E, member 105 pseudogene O - 20121230 -9606 81126 OR4K16P - OR14-24 HGNC:15354 14 14q11.2 olfactory receptor, family 4, subfamily K, member 16 pseudogene pseudo OR4K16P olfactory receptor, family 4, subfamily K, member 16 pseudogene O - 20121230 -9606 81127 OR4K15 - OR14-20|OR4K15Q HGNC:15353|Ensembl:ENSG00000169488|HPRD:14978|Vega:OTTHUMG00000170635 14 14q11.2 olfactory receptor, family 4, subfamily K, member 15 protein-coding OR4K15 olfactory receptor, family 4, subfamily K, member 15 O olfactory receptor 4K15|olfactory receptor OR14-20 20121230 -9606 81136 OR7E111P - - HGNC:15344 13 13q21.32 olfactory receptor, family 7, subfamily E, member 111 pseudogene pseudo OR7E111P olfactory receptor, family 7, subfamily E, member 111 pseudogene O - 20121230 -9606 81137 OR7E104P - - HGNC:15343 13 13q21.31 olfactory receptor, family 7, subfamily E, member 104 pseudogene pseudo OR7E104P olfactory receptor, family 7, subfamily E, member 104 pseudogene O - 20121230 -9606 81138 OR7E101P - - HGNC:15342 13 13q14.13 olfactory receptor, family 7, subfamily E, member 101 pseudogene pseudo OR7E101P olfactory receptor, family 7, subfamily E, member 101 pseudogene O - 20121230 -9606 81140 OR9R1P - - HGNC:15340 12 12q13.2 olfactory receptor, family 9, subfamily R, member 1 pseudogene pseudo OR9R1P olfactory receptor, family 9, subfamily R, member 1 pseudogene O - 20121230 -9606 81153 OR9M1P - OR5BG1P HGNC:15327 11 11q11 olfactory receptor, family 9, subfamily M, member 1, pseudogene pseudo OR9M1P olfactory receptor, family 9, subfamily M, member 1, pseudogene O - 20121230 -9606 81155 OR9I3P - OST714 HGNC:15325 11 11q12.1 olfactory receptor, family 9, subfamily I, member 3 pseudogene pseudo OR9I3P olfactory receptor, family 9, subfamily I, member 3 pseudogene O - 20121230 -9606 81156 OR9I2P - - HGNC:15324 11 11q12.1 olfactory receptor, family 9, subfamily I, member 2 pseudogene pseudo OR9I2P olfactory receptor, family 9, subfamily I, member 2 pseudogene O - 20121230 -9606 81159 OR9G3P - - HGNC:15321 11 11q12.1 olfactory receptor, family 9, subfamily G, member 3 pseudogene pseudo OR9G3P olfactory receptor, family 9, subfamily G, member 3 pseudogene O - 20121230 -9606 81160 OR9G2P - OR9G6 HGNC:15320 11 11q12.1 olfactory receptor, family 9, subfamily G, member 2 pseudogene pseudo OR9G2P olfactory receptor, family 9, subfamily G, member 2 pseudogene O - 20121230 -9606 81162 OR8R1P - - HGNC:15318 11 11q13.4 olfactory receptor, family 8, subfamily R, member 1 pseudogene pseudo OR8R1P olfactory receptor, family 8, subfamily R, member 1 pseudogene O - 20121230 -9606 81163 OR8Q1P - - HGNC:15317 11 11q24.2 olfactory receptor, family 8, subfamily Q, member 1 pseudogene pseudo OR8Q1P olfactory receptor, family 8, subfamily Q, member 1 pseudogene O - 20121230 -9606 81164 OR8L1P - OR11-115 HGNC:15316 11 11q12.1 olfactory receptor, family 8, subfamily L, member 1 pseudogene pseudo OR8L1P olfactory receptor, family 8, subfamily L, member 1 pseudogene O - 20121230 -9606 81166 OR8K4P - - HGNC:15314 11 11q12.1 olfactory receptor, family 8, subfamily K, member 4 pseudogene pseudo OR8K4P olfactory receptor, family 8, subfamily K, member 4 pseudogene O - 20121230 -9606 81168 OR8J3 - OR11-173 HGNC:15312|Ensembl:ENSG00000167822|HPRD:15085|Vega:OTTHUMG00000166834 11 11q12.1 olfactory receptor, family 8, subfamily J, member 3 protein-coding OR8J3 olfactory receptor, family 8, subfamily J, member 3 O olfactory receptor 8J3|olfactory receptor OR11-173 20121230 -9606 81169 OR8J2 - OR8J2P HGNC:15311 11 11q12.1 olfactory receptor, family 8, subfamily J, member 2 (gene/pseudogene) pseudo OR8J2 olfactory receptor, family 8, subfamily J, member 2 (gene/pseudogene) O - 20121230 -9606 81175 OR7E128P - - HGNC:15305 11 11q13.4 olfactory receptor, family 7, subfamily E, member 128 pseudogene pseudo OR7E128P olfactory receptor, family 7, subfamily E, member 128 pseudogene O - 20121230 -9606 81176 OR7E126P - OR11-1|hg500 HGNC:15304 11 11q13.4 olfactory receptor, family 7, subfamily E, member 126 pseudogene pseudo OR7E126P olfactory receptor, family 7, subfamily E, member 126 pseudogene O - 20121230 -9606 81182 OR5W1P - OR11-144 HGNC:15298 11 11q11 olfactory receptor, family 5, subfamily W, member 1 pseudogene pseudo OR5W1P olfactory receptor, family 5, subfamily W, member 1 pseudogene O - 20121230 -9606 81185 OR5P4P - OST730 HGNC:15295 11 11p15.4 olfactory receptor, family 5, subfamily P, member 4 pseudogene pseudo OR5P4P olfactory receptor, family 5, subfamily P, member 4 pseudogene O - 20121230 -9606 81187 OR5M13P - - HGNC:15293 11 11q12.1 olfactory receptor, family 5, subfamily M, member 13 pseudogene pseudo OR5M13P olfactory receptor, family 5, subfamily M, member 13 pseudogene O - 20121230 -9606 81188 OR5M12P - - HGNC:15292 11 11q12.1 olfactory receptor, family 5, subfamily M, member 12 pseudogene pseudo OR5M12P olfactory receptor, family 5, subfamily M, member 12 pseudogene O - 20121230 -9606 81191 OR5G5P - - HGNC:15289 11 11q12.1 olfactory receptor, family 5, subfamily G, member 5 pseudogene pseudo OR5G5P olfactory receptor, family 5, subfamily G, member 5 pseudogene O - 20121230 -9606 81192 OR5G4P - - HGNC:15288 11 11q12.1 olfactory receptor, family 5, subfamily G, member 4 pseudogene pseudo OR5G4P olfactory receptor, family 5, subfamily G, member 4 pseudogene O - 20121230 -9606 81193 OR5G3 - OR5G3P|OR5G6P HGNC:15287 11 11q12.1 olfactory receptor, family 5, subfamily G, member 3 (gene/pseudogene) pseudo OR5G3 olfactory receptor, family 5, subfamily G, member 3 (gene/pseudogene) O - 20121230 -9606 81194 OR5F2P - - HGNC:15286 11 11q12.1 olfactory receptor, family 5, subfamily F, member 2 pseudogene pseudo OR5F2P olfactory receptor, family 5, subfamily F, member 2 pseudogene O - 20121230 -9606 81196 OR5D17P - - HGNC:15284 11 11q11 olfactory receptor, family 5, subfamily D, member 17 pseudogene pseudo OR5D17P olfactory receptor, family 5, subfamily D, member 17 pseudogene O - 20121230 -9606 81198 OR5D15P - - HGNC:15282 11 11q11 olfactory receptor, family 5, subfamily D, member 15 pseudogene pseudo OR5D15P olfactory receptor, family 5, subfamily D, member 15 pseudogene O - 20121230 -9606 81201 OR5BR1P - - HGNC:15279 11 11q12.1 olfactory receptor, family 5, subfamily BR, member 1 pseudogene pseudo OR5BR1P olfactory receptor, family 5, subfamily BR, member 1 pseudogene O - 20121230 -9606 81202 OR5BQ1P - OR5BQ2P HGNC:15278 11 11q12.1 olfactory receptor, family 5, subfamily BQ, member 1 pseudogene pseudo OR5BQ1P olfactory receptor, family 5, subfamily BQ, member 1 pseudogene O - 20121230 -9606 81203 OR5BP1P - - HGNC:15277 11 11q12.1 olfactory receptor, family 5, subfamily BP, member 1 pseudogene pseudo OR5BP1P olfactory receptor, family 5, subfamily BP, member 1 pseudogene O - 20121230 -9606 81204 OR5BN1P - OR11-161 HGNC:15276 11 11q12.1 olfactory receptor, family 5, subfamily BN, member 1 pseudogene pseudo OR5BN1P olfactory receptor, family 5, subfamily BN, member 1 pseudogene O - 20121230 -9606 81205 OR5BL1P - - HGNC:15275 11 11q12.1 olfactory receptor, family 5, subfamily BL, member 1 pseudogene pseudo OR5BL1P olfactory receptor, family 5, subfamily BL, member 1 pseudogene O - 20121230 -9606 81207 OR5BE1P - - HGNC:15273 11 11q12.1 olfactory receptor, family 5, subfamily BE, member 1 pseudogene pseudo OR5BE1P olfactory receptor, family 5, subfamily BE, member 1 pseudogene O - 20121230 -9606 81208 OR5BC1P - - HGNC:15272 11 11q12.1 olfactory receptor, family 5, subfamily BC, member 1 pseudogene pseudo OR5BC1P olfactory receptor, family 5, subfamily BC, member 1 pseudogene O - 20121230 -9606 81209 OR5BB1P - - HGNC:15271 11 11q12.1 olfactory receptor, family 5, subfamily BB, member 1 pseudogene pseudo OR5BB1P olfactory receptor, family 5, subfamily BB, member 1 pseudogene O - 20121230 -9606 81210 OR5BA1P - - HGNC:15270 11 11q12.1 olfactory receptor, family 5, subfamily BA, member 1 pseudogene pseudo OR5BA1P olfactory receptor, family 5, subfamily BA, member 1 pseudogene O - 20121230 -9606 81211 OR5B19P - - HGNC:15269 11 11q12.1 olfactory receptor, family 5, subfamily B, member 19 pseudogene pseudo OR5B19P olfactory receptor, family 5, subfamily B, member 19 pseudogene O - 20121230 -9606 81215 OR5B15P - - HGNC:15265 11 11q12.1 olfactory receptor, family 5, subfamily B, member 15 pseudogene pseudo OR5B15P olfactory receptor, family 5, subfamily B, member 15 pseudogene O - 20121230 -9606 81221 OR5AQ1P - OR11-165 HGNC:15259 11 11q12.1 olfactory receptor, family 5, subfamily AQ, member 1 pseudogene pseudo OR5AQ1P olfactory receptor, family 5, subfamily AQ, member 1 pseudogene O - 20121230 -9606 81223 OR5AP1P - - HGNC:15257 11 11q12.1 olfactory receptor, family 5, subfamily AP, member 1 pseudogene pseudo OR5AP1P olfactory receptor, family 5, subfamily AP, member 1 pseudogene O - 20121230 -9606 81224 OR5AN2P - - HGNC:15256 11 11q12.1 olfactory receptor, family 5, subfamily AN, member 2 pseudogene pseudo OR5AN2P olfactory receptor, family 5, subfamily AN, member 2 pseudogene O - 20121230 -9606 81226 OR5AM1P - - HGNC:15254 11 11q12.1 olfactory receptor, family 5, subfamily AM, member 1 pseudogene pseudo OR5AM1P olfactory receptor, family 5, subfamily AM, member 1 pseudogene O - 20121230 -9606 81228 OR5AK3P - OR5AK3 HGNC:15252 11 11q12.1 olfactory receptor, family 5, subfamily AK, member 3 pseudogene pseudo OR5AK3P olfactory receptor, family 5, subfamily AK, member 3 pseudogene O - 20121230 -9606 81230 OR5AK1P - OR5AK5P HGNC:15250 11 11q12.1 olfactory receptor, family 5, subfamily AK, member 1 pseudogene pseudo OR5AK1P olfactory receptor, family 5, subfamily AK, member 1 pseudogene O - 20121230 -9606 81236 OR56A7P - - HGNC:15244 11 11p15.4 olfactory receptor, family 56, subfamily A, member 7 pseudogene pseudo OR56A7P olfactory receptor, family 56, subfamily A, member 7 pseudogene O - 20121230 -9606 81240 OR52Y1P - OR52Y2P HGNC:15240 11 11p15.4 olfactory receptor, family 52, subfamily Y, member 1 pseudogene pseudo OR52Y1P olfactory receptor, family 52, subfamily Y, member 1 pseudogene O - 20121230 -9606 81242 OR52V1P - - HGNC:15238 11 11p15.4 olfactory receptor, family 52, subfamily V, member 1 pseudogene pseudo OR52V1P olfactory receptor, family 52, subfamily V, member 1 pseudogene O - 20121230 -9606 81243 OR52U1P - - HGNC:15237 11 11p15.4 olfactory receptor, family 52, subfamily U, member 1 pseudogene pseudo OR52U1P olfactory receptor, family 52, subfamily U, member 1 pseudogene O - 20121230 -9606 81244 OR52T1P - - HGNC:15236 11 11p15.4 olfactory receptor, family 52, subfamily T, member 1 pseudogene pseudo OR52T1P olfactory receptor, family 52, subfamily T, member 1 pseudogene O - 20121230 -9606 81246 OR52Q1P - - HGNC:15234 11 11p15.4 olfactory receptor, family 52, subfamily Q, member 1 pseudogene pseudo OR52Q1P olfactory receptor, family 52, subfamily Q, member 1 pseudogene O - 20121230 -9606 81248 OR52P1P - OR11-66|OR52P1 HGNC:15232 11 11p15.4 olfactory receptor, family 52, subfamily P, member 1 pseudogene pseudo OR52P1P olfactory receptor, family 52, subfamily P, member 1 pseudogene O - 20121230 -9606 81251 OR52N3P - OR11-60 HGNC:15229 11 11p15.4 olfactory receptor, family 52, subfamily N, member 3 pseudogene pseudo OR52N3P olfactory receptor, family 52, subfamily N, member 3 pseudogene O - 20121230 -9606 81261 OR52H2P - - HGNC:15219 11 11p15.4 olfactory receptor, family 52, subfamily H, member 2 pseudogene pseudo OR52H2P olfactory receptor, family 52, subfamily H, member 2 pseudogene O - 20121230 -9606 81264 OR52E7P - - HGNC:15216 11 11p15.4 olfactory receptor, family 52, subfamily E, member 7 pseudogene pseudo OR52E7P olfactory receptor, family 52, subfamily E, member 7 pseudogene O - 20121230 -9606 81270 OR52B5P - - HGNC:15210 11 11p15.4 olfactory receptor, family 52, subfamily B, member 5 pseudogene pseudo OR52B5P olfactory receptor, family 52, subfamily B, member 5 pseudogene O - 20121230 -9606 81274 OR52B1P - - HGNC:15206 11 11p15.4 olfactory receptor, family 52, subfamily B, member 1 pseudogene pseudo OR52B1P olfactory receptor, family 52, subfamily B, member 1 pseudogene O - 20121230 -9606 81278 OR51K1P - - HGNC:15202 11 11p15.4 olfactory receptor, family 51, subfamily K, member 1 pseudogene pseudo OR51K1P olfactory receptor, family 51, subfamily K, member 1 pseudogene O - 20121230 -9606 81282 OR51G2 - OR11-28 HGNC:15198|Ensembl:ENSG00000176893|HPRD:14998|Vega:OTTHUMG00000066501 11 11p15.4 olfactory receptor, family 51, subfamily G, member 2 protein-coding OR51G2 olfactory receptor, family 51, subfamily G, member 2 O olfactory receptor 51G2|olfactory receptor OR11-28 20121230 -9606 81285 OR51E2 hCG_2044604 OR51E3P|OR52A2|PSGR HGNC:15195|MIM:611268|Ensembl:ENSG00000167332|HPRD:17736|Vega:OTTHUMG00000133362 11 11p15 olfactory receptor, family 51, subfamily E, member 2 protein-coding OR51E2 olfactory receptor, family 51, subfamily E, member 2 O HPRAJ|olfactory receptor 51E2|olfactory receptor OR11-16|olfactory receptor, family 51, subfamily E, member 3 pseudogene|olfactory receptor, family 52, subfamily A, member 2|prostate specific G-protein coupled receptor|prostate-specific G-protein coupled receptor 20121230 -9606 81295 OR51A10P - OR51A11P|OR51A13 HGNC:15185 11 11p15.4 olfactory receptor, family 51, subfamily A, member 10 pseudogene pseudo OR51A10P olfactory receptor, family 51, subfamily A, member 10 pseudogene O - 20121230 -9606 81298 OR4R3P - - HGNC:15182 11 11p11.12 olfactory receptor, family 4, subfamily R, member 3 pseudogene pseudo OR4R3P olfactory receptor, family 4, subfamily R, member 3 pseudogene O - 20121230 -9606 81299 OR4R2P - - HGNC:15181 11 11p11.12 olfactory receptor, family 4, subfamily R, member 2 pseudogene pseudo OR4R2P olfactory receptor, family 4, subfamily R, member 2 pseudogene O - 20121230 -9606 81300 OR4P4 - OR4P3P HGNC:15180|Ensembl:ENSG00000181927|HPRD:14986|Vega:OTTHUMG00000165300 11 11q12.1 olfactory receptor, family 4, subfamily P, member 4 protein-coding OR4P4 olfactory receptor, family 4, subfamily P, member 4 O olfactory receptor 4P3|olfactory receptor 4P4|olfactory receptor, family 4, subfamily P, member 3 pseudogene 20121230 -9606 81304 OR4D7P - OST724 HGNC:15176 11 11q12.1 olfactory receptor, family 4, subfamily D, member 7 pseudogene pseudo OR4D7P olfactory receptor, family 4, subfamily D, member 7 pseudogene O - 20121230 -9606 81309 OR4C15 - OR11-127|OR11-134 HGNC:15171|Ensembl:ENSG00000181939|HPRD:14963|Vega:OTTHUMG00000166714 11 11q11 olfactory receptor, family 4, subfamily C, member 15 protein-coding OR4C15 olfactory receptor, family 4, subfamily C, member 15 O olfactory receptor 4C15|olfactory receptor OR11-127|olfactory receptor OR11-134 20121230 -9606 81310 OR4C14P - - HGNC:15170 11 11q11 olfactory receptor, family 4, subfamily C, member 14 pseudogene pseudo OR4C14P olfactory receptor, family 4, subfamily C, member 14 pseudogene O - 20121230 -9606 81315 OR4A8P - OR4A8 HGNC:15165 11 11p11.12 olfactory receptor, family 4, subfamily A, member 8 pseudogene pseudo OR4A8P olfactory receptor, family 4, subfamily A, member 8 pseudogene O - 20121230 -9606 81316 OR4A7P - - HGNC:15164 11 11p11.12 olfactory receptor, family 4, subfamily A, member 7 pseudogene pseudo OR4A7P olfactory receptor, family 4, subfamily A, member 7 pseudogene O - 20121230 -9606 81318 OR4A5 - OR11-111 HGNC:15162|Ensembl:ENSG00000221840|HPRD:17719|Vega:OTTHUMG00000166764 11 11p11.12 olfactory receptor, family 4, subfamily A, member 5 protein-coding OR4A5 olfactory receptor, family 4, subfamily A, member 5 O olfactory receptor 4A5|olfactory receptor OR11-111|seven transmembrane helix receptor 20121230 -9606 81320 OR4A3P - - HGNC:15160 11 11p11.12 olfactory receptor, family 4, subfamily A, member 3 pseudogene pseudo OR4A3P olfactory receptor, family 4, subfamily A, member 3 pseudogene O - 20121230 -9606 81322 OR4A21P - - HGNC:15158 11 11q11 olfactory receptor, family 4, subfamily A, member 21 pseudogene pseudo OR4A21P olfactory receptor, family 4, subfamily A, member 21 pseudogene O - 20121230 -9606 81324 OR4A19P - - HGNC:15156 11 11p11.12 olfactory receptor, family 4, subfamily A, member 19 pseudogene pseudo OR4A19P olfactory receptor, family 4, subfamily A, member 19 pseudogene O - 20121230 -9606 81325 OR4A18P - - HGNC:15155 11 11p11.12 olfactory receptor, family 4, subfamily A, member 18 pseudogene pseudo OR4A18P olfactory receptor, family 4, subfamily A, member 18 pseudogene O - 20121230 -9606 81327 OR4A16 - OR11-117|OR4A16Q HGNC:15153|Ensembl:ENSG00000181961|HPRD:14959|Vega:OTTHUMG00000166710 11 11q11 olfactory receptor, family 4, subfamily A, member 16 protein-coding OR4A16 olfactory receptor, family 4, subfamily A, member 16 O olfactory receptor 4A16|olfactory receptor OR11-117 20121230 -9606 81328 OR4A15 - OR11-118 HGNC:15152|Ensembl:ENSG00000181958|HPRD:14958|Vega:OTTHUMG00000166711 11 11q11 olfactory receptor, family 4, subfamily A, member 15 protein-coding OR4A15 olfactory receptor, family 4, subfamily A, member 15 O olfactory receptor 4A15|olfactory receptor OR11-118 20121230 -9606 81329 OR4A14P - - HGNC:15151 11 11q11 olfactory receptor, family 4, subfamily A, member 14 pseudogene pseudo OR4A14P olfactory receptor, family 4, subfamily A, member 14 pseudogene O - 20121230 -9606 81330 OR4A13P - - HGNC:15150 11 11q11 olfactory receptor, family 4, subfamily A, member 13 pseudogene pseudo OR4A13P olfactory receptor, family 4, subfamily A, member 13 pseudogene O - 20121230 -9606 81331 OR4A12P - - HGNC:15149 11 11q11 olfactory receptor, family 4, subfamily A, member 12 pseudogene pseudo OR4A12P olfactory receptor, family 4, subfamily A, member 12 pseudogene O - 20121230 -9606 81336 OR2AH1P - - HGNC:15144 11 11q12.1 olfactory receptor, family 2, subfamily AH, member 1 pseudogene pseudo OR2AH1P olfactory receptor, family 2, subfamily AH, member 1 pseudogene O - 20121230 -9606 81340 OR10Y1P - - HGNC:15140 11 11q12.1 olfactory receptor, family 10, subfamily Y, member 1 pseudogene pseudo OR10Y1P olfactory receptor, family 10, subfamily Y, member 1 pseudogene O - 20121230 -9606 81341 OR10W1 UNQ6469/PRO34070 OR10W1P|OR10W1Q|OR11-236|UNQ6469 HGNC:15139|Ensembl:ENSG00000172772|HPRD:18269|Vega:OTTHUMG00000167462 11 11q12.1 olfactory receptor, family 10, subfamily W, member 1 protein-coding OR10W1 olfactory receptor, family 10, subfamily W, member 1 O olfactory receptor 10W1|olfactory receptor OR11-236|olfactory receptor, family 10, subfamily W, member 1 pseudogene 20121230 -9606 81342 OR10V3P - - HGNC:15138 11 11q12.1 olfactory receptor, family 10, subfamily V, member 3 pseudogene pseudo OR10V3P olfactory receptor, family 10, subfamily V, member 3 pseudogene O - 20121230 -9606 81343 OR10V2P - - HGNC:15137 11 11q12.1 olfactory receptor, family 10, subfamily V, member 2 pseudogene pseudo OR10V2P olfactory receptor, family 10, subfamily V, member 2 pseudogene O - 20121230 -9606 81345 OR10Q2P - - HGNC:15135 11 11q12.1 olfactory receptor, family 10, subfamily Q, member 2 pseudogene pseudo OR10Q2P olfactory receptor, family 10, subfamily Q, member 2 pseudogene O - 20121230 -9606 81352 OR7M1P - - HGNC:15128 10 10q26.3 olfactory receptor, family 7, subfamily M, member 1 pseudogene pseudo OR7M1P olfactory receptor, family 7, subfamily M, member 1 pseudogene O - 20121230 -9606 81353 OR7E115P - OR10-2|OST704 HGNC:15127 10 10p13 olfactory receptor, family 7, subfamily E, member 115 pseudogene pseudo OR7E115P olfactory receptor, family 7, subfamily E, member 115 pseudogene O - 20121230 -9606 81354 OR7E110P - OR7E68P|OR7E71P|OR7E72P|OR7E73P|OR7E74P|OR7E75P|OR912-108|OR912-109|OR912-110|OR912-46|hg523|hg674 HGNC:15126 10 10p13 olfactory receptor, family 7, subfamily E, member 110 pseudogene pseudo OR7E110P olfactory receptor, family 7, subfamily E, member 110 pseudogene O - 20121230 -9606 81356 OR6L2P - - HGNC:15125 10 10q26.3 olfactory receptor, family 6, subfamily L, member 2 pseudogene pseudo OR6L2P olfactory receptor, family 6, subfamily L, member 2 pseudogene O - 20121230 -9606 81358 OR7E116P - OR7E112P|OST733 HGNC:15122 9 9q22.2 olfactory receptor, family 7, subfamily E, member 116 pseudogene pseudo OR7E116P olfactory receptor, family 7, subfamily E, member 116 pseudogene O - 20121230 -9606 81363 OR7E108P - OST726 HGNC:15117 9 9q22.2 olfactory receptor, family 7, subfamily E, member 108 pseudogene pseudo OR7E108P olfactory receptor, family 7, subfamily E, member 108 pseudogene O - 20121230 -9606 81366 OR2AM1P - OR37E HGNC:15113 9 9p13.3 olfactory receptor, family 2, subfamily AM, member 1 pseudogene pseudo OR2AM1P olfactory receptor, family 2, subfamily AM, member 1 pseudogene O - 20121230 -9606 81377 OR13C7P - OR13C7|OR37C|OST706 HGNC:15102 9 9p13.3 olfactory receptor, family 13, subfamily C, member 7 pseudogene pseudo OR13C7P olfactory receptor, family 13, subfamily C, member 7 pseudogene O - 20121230 -9606 81382 OR9P1P - OR9P2P HGNC:15097 7 7q35 olfactory receptor, family 9, subfamily P, member 1 pseudogene pseudo OR9P1P olfactory receptor, family 9, subfamily P, member 1 pseudogene O - 20121230 -9606 81383 OR9N1P - - HGNC:15096 7 7q34 olfactory receptor, family 9, subfamily N, member 1 pseudogene pseudo OR9N1P olfactory receptor, family 9, subfamily N, member 1 pseudogene O - 20121230 -9606 81390 OR4F7P - OR4F10 HGNC:15089 6 6q27 olfactory receptor, family 4, subfamily F, member 7 pseudogene pseudo OR4F7P olfactory receptor, family 4, subfamily F, member 7 pseudogene O - 20121230 -9606 81392 OR2AE1 - OR2AE2 HGNC:15087|Ensembl:ENSG00000244623|HPRD:14934|Vega:OTTHUMG00000156650 7 7q22.1 olfactory receptor, family 2, subfamily AE, member 1 protein-coding OR2AE1 olfactory receptor, family 2, subfamily AE, member 1 O olfactory receptor 2AE1|olfactory receptor 2AE2|olfactory receptor, family 2, subfamily AE, member 2 20121230 -9606 81399 OR4F16 - OR1-1|OR7-21 HGNC:15079|Ensembl:ENSG00000185097|HPRD:14969|Vega:OTTHUMG00000002581 1 1p36.33 olfactory receptor, family 4, subfamily F, member 16 protein-coding OR4F16 olfactory receptor, family 4, subfamily F, member 16 O olfactory receptor 4F3/4F16/4F29|olfactory receptor OR1-1|olfactory receptor OR4F16|olfactory receptor OR7-21 20121230 -9606 81406 OR2W6P - OR2W7P HGNC:15072 6 6p22.1 olfactory receptor, family 2, subfamily W, member 6 pseudogene pseudo OR2W6P olfactory receptor, family 2, subfamily W, member 6 pseudogene O - 20121230 -9606 81407 OR2W4P - - HGNC:15071 6 6p22.1 olfactory receptor, family 2, subfamily W, member 4 pseudogene pseudo OR2W4P olfactory receptor, family 2, subfamily W, member 4 pseudogene O - 20121230 -9606 81419 OR7E99P - - HGNC:15059 4 4p16.3 olfactory receptor, family 7, subfamily E, member 99 pseudogene pseudo OR7E99P olfactory receptor, family 7, subfamily E, member 99 pseudogene O - 20121230 -9606 81421 OR5M14P - OR5M15P HGNC:15057 4 4p13 olfactory receptor, family 5, subfamily M, member 14 pseudogene pseudo OR5M14P olfactory receptor, family 5, subfamily M, member 14 pseudogene O - 20121230 -9606 81428 OR7E122P - OST719 HGNC:15050 3 3p25.3 olfactory receptor, family 7, subfamily E, member 122 pseudogene pseudo OR7E122P olfactory receptor, family 7, subfamily E, member 122 pseudogene O - 20121230 -9606 81430 OR7E100P - OR7E135P HGNC:15048 3 3q13.2 olfactory receptor, family 7, subfamily E, member 100 pseudogene pseudo OR7E100P olfactory receptor, family 7, subfamily E, member 100 pseudogene O - 20121230 -9606 81431 OR5AC1 - OR5AC1P HGNC:15047 3 3q11.2 olfactory receptor, family 5, subfamily AC, member 1 (gene/pseudogene) pseudo OR5AC1 olfactory receptor, family 5, subfamily AC, member 1 (gene/pseudogene) O - 20121230 -9606 81438 OR4G6P - OR11-302 HGNC:15039 15 15q26 olfactory receptor, family 4, subfamily G, member 6 pseudogene pseudo OR4G6P olfactory receptor, family 4, subfamily G, member 6 pseudogene O - 20121230 -9606 81439 OR9H1P - UNQ9373 HGNC:15038 1 1q44 olfactory receptor, family 9, subfamily H, member 1 pseudogene pseudo OR9H1P olfactory receptor, family 9, subfamily H, member 1 pseudogene O - 20121230 -9606 81440 OR6R1P - - HGNC:15037 1 1q44 olfactory receptor, family 6, subfamily R, member 1 pseudogene pseudo OR6R1P olfactory receptor, family 6, subfamily R, member 1 pseudogene O - 20121230 -9606 81442 OR6N2 - OR1-23 HGNC:15035|Ensembl:ENSG00000188340|HPRD:15067|Vega:OTTHUMG00000022775 1 1q23.1 olfactory receptor, family 6, subfamily N, member 2 protein-coding OR6N2 olfactory receptor, family 6, subfamily N, member 2 O olfactory receptor 6N2|olfactory receptor OR1-23 20121230 -9606 81448 OR6K2 - OR1-17 HGNC:15029|Ensembl:ENSG00000196171|HPRD:15063|Vega:OTTHUMG00000022768 1 1q23.1 olfactory receptor, family 6, subfamily K, member 2 protein-coding OR6K2 olfactory receptor, family 6, subfamily K, member 2 O olfactory receptor 6K2|olfactory receptor OR1-17 20121230 -9606 81449 OR6K1P - - HGNC:15028 1 1q23.1 olfactory receptor, family 6, subfamily K, member 1 pseudogene pseudo OR6K1P olfactory receptor, family 6, subfamily K, member 1 pseudogene O - 20121230 -9606 81458 OR2T7 - OR2T7P|OST723 HGNC:15019 1 1q44 olfactory receptor, family 2, subfamily T, member 7 pseudo OR2T7 olfactory receptor, family 2, subfamily T, member 7 O - 20121230 -9606 81462 OR2L9P - - HGNC:15015 1 1q44 olfactory receptor, family 2, subfamily L, member 9 pseudogene pseudo OR2L9P olfactory receptor, family 2, subfamily L, member 9 pseudogene O - 20121230 -9606 81465 OR2L6P - - HGNC:15012 1 1q44 olfactory receptor, family 2, subfamily L, member 6 pseudogene pseudo OR2L6P olfactory receptor, family 2, subfamily L, member 6 pseudogene O - 20121230 -9606 81466 OR2L5 - OR2L11|OR2L5P HGNC:15011|Ensembl:ENSG00000197454|Vega:OTTHUMG00000040194 1 1q44 olfactory receptor, family 2, subfamily L, member 5 protein-coding OR2L5 olfactory receptor, family 2, subfamily L, member 5 O olfactory receptor 2L11|olfactory receptor 2L5|olfactory receptor OR1-53|olfactory receptor, family 2, subfamily L, member 11|olfactory receptor, family 2, subfamily L, member 5 pseudogene|seven transmembrane helix receptor 20121230 -9606 81469 OR2G3 RP11-978I15.5 OR1-33 HGNC:15008|Ensembl:ENSG00000177476|HPRD:14940|Vega:OTTHUMG00000040576 1 1q44 olfactory receptor, family 2, subfamily G, member 3 protein-coding OR2G3 olfactory receptor, family 2, subfamily G, member 3 O olfactory receptor 2G3|olfactory receptor OR1-33 20121230 -9606 81470 OR2G2 RP11-978I15.4 OR1-32 HGNC:15007|Ensembl:ENSG00000177489|HPRD:11412|Vega:OTTHUMG00000040575 1 1q44 olfactory receptor, family 2, subfamily G, member 2 protein-coding OR2G2 olfactory receptor, family 2, subfamily G, member 2 O olfactory receptor 2G2|olfactory receptor OR1-32|olfactory receptor, family 2, subfamily G, member 2 pseudogene 20121230 -9606 81472 OR2C3 - OR2C4|OR2C5P|OST742 HGNC:15005|Ensembl:ENSG00000196242|HPRD:17697|Vega:OTTHUMG00000040579 1 1q44 olfactory receptor, family 2, subfamily C, member 3 protein-coding OR2C3 olfactory receptor, family 2, subfamily C, member 3 O olfactory receptor 2C3|olfactory receptor 2C4|olfactory receptor 2C5|olfactory receptor OR1-30|olfactory receptor, family 2, subfamily C, member 4|olfactory receptor, family 2, subfamily C, member 5 pseudogene 20121230 -9606 81473 OR2AS1P - - HGNC:15004 1 1q44 olfactory receptor, family 2, subfamily AS, member 1 pseudogene pseudo OR2AS1P olfactory receptor, family 2, subfamily AS, member 1 pseudogene O - 20121230 -9606 81474 OR2AQ1P - - HGNC:15003 1 1q23.1 olfactory receptor, family 2, subfamily AQ, member 1 pseudogene pseudo OR2AQ1P olfactory receptor, family 2, subfamily AQ, member 1 pseudogene O - 20121230 -9606 81479 OR11I1P - OR11I2P HGNC:14997 1 1p13.2 olfactory receptor, family 11, subfamily I, member 1 pseudogene pseudo OR11I1P olfactory receptor, family 11, subfamily I, member 1 pseudogene O - 20121230 -9606 81486 OR10AE1P - OR10AE2P HGNC:14990 1 1q23.2 olfactory receptor, family 10, subfamily AE, member 1 pseudogene pseudo OR10AE1P olfactory receptor, family 10, subfamily AE, member 1 pseudogene O - 20121230 -9606 81487 OR10AA1P - - HGNC:14989 1 1q23.1 olfactory receptor, family 10, subfamily AA, member 1 pseudogene pseudo OR10AA1P olfactory receptor, family 10, subfamily AA, member 1 pseudogene O - 20121230 -9606 81488 POLR2M - GCOM1|GRINL1A|Gdown|Gdown1 HGNC:14862|MIM:606485|Ensembl:ENSG00000255529|HPRD:07575|Vega:OTTHUMG00000166486 15 15q21.3 polymerase (RNA) II (DNA directed) polypeptide M protein-coding POLR2M polymerase (RNA) II (DNA directed) polypeptide M O DNA-directed RNA polymerase II subunit M, isoforms 4/5|GRINL1A downstream protein Gdown4|glutamate receptor, ionotropic, N-methyl D-aspartate-like 1A|protein GRINL1A|protein GRINL1A, isoforms 4/5 20121230 -9606 81490 PTDSS2 - PSS2 HGNC:15463|MIM:612793|Ensembl:ENSG00000174915|HPRD:17927|Vega:OTTHUMG00000119087 11 11p15.5 phosphatidylserine synthase 2 protein-coding PTDSS2 phosphatidylserine synthase 2 O PSS-2|ptdSer synthase 2|serine-exchange enzyme II 20121230 -9606 81491 GPR63 - PSP24(beta)|PSP24B HGNC:13302|MIM:606915|Ensembl:ENSG00000112218|HPRD:06076 6 6q16.1-q16.3 G protein-coupled receptor 63 protein-coding GPR63 G protein-coupled receptor 63 O PSP24-2|PSP24-beta|brain expressed G-protein-coupled receptor PSP24 beta|probable G-protein coupled receptor 63 20121230 -9606 81492 RSPH6A - RSHL1|RSP4|RSP6|RSPH4B HGNC:14241|MIM:607548|Ensembl:ENSG00000104941|HPRD:09611 19 19q13.3 radial spoke head 6 homolog A (Chlamydomonas) protein-coding RSPH6A radial spoke head 6 homolog A (Chlamydomonas) O ortholog of mouse radial spokehead-like 1|radial spoke head protein 6 homolog A|radial spoke head-like protein 1|radial spokehead-like 1 20121230 -9606 81493 SYNC - SYNC1|SYNCOILIN HGNC:28897|MIM:611750|Ensembl:ENSG00000162520|HPRD:18134|Vega:OTTHUMG00000008087 1 1p35.1 syncoilin, intermediate filament protein protein-coding SYNC syncoilin, intermediate filament protein O intermediate filament protein syncoilin|syncoilin|syncoilin intermediate filament 1|syncoilin, intermediate filament 1|syncoilin-1 20121230 -9606 81494 CFHR5 RP11-32D17.3 CFHL5|FHR-5|FHR5 HGNC:24668|MIM:608593|Ensembl:ENSG00000134389|HPRD:06508|Vega:OTTHUMG00000036517 1 1q31.3 complement factor H-related 5 protein-coding CFHR5 complement factor H-related 5 O complement factor H-related protein 5|factor H-related protein 5 20121230 -9606 81501 DCSTAMP - FIND|TM7SF4|hDC-STAMP HGNC:18549|MIM:605933|Ensembl:ENSG00000164935|HPRD:07295|Vega:OTTHUMG00000164890 8 8q23 dendrocyte expressed seven transmembrane protein protein-coding DCSTAMP dendrocyte expressed seven transmembrane protein O DC-specific transmembrane protein|Dendritic cells (DC)-specific transmembrane protein|IL-4-induced protein|IL-Four (IL-4) induced|IL-Four INDuced|IL-four-induced protein|dendritic cell-specific transmembrane protein|dendrocyte-expressed seven transmembrane protein|transmembrane 7 superfamily member 4 20121230 -9606 81502 HM13 RP3-324O17.6 H13|IMP1|IMPAS|IMPAS-1|MSTP086|PSENL3|PSL3|SPP|SPPL1|dJ324O17.1 HGNC:16435|MIM:607106|Ensembl:ENSG00000101294|HPRD:06166|Vega:OTTHUMG00000032175 20 20q11.21 histocompatibility (minor) 13 protein-coding HM13 histocompatibility (minor) 13 O IMP-1|hIMP1|intramembrane protease 1|minor histocompatibility antigen 13|minor histocompatibility antigen H13|presenilin-like protein 3|signal peptide peptidase beta|signal peptide peptidase like 1 20121230 -9606 81532 MOB2 - HCCA2 HGNC:24904|MIM:611969|Ensembl:ENSG00000182208|HPRD:17581|Vega:OTTHUMG00000165545 11 11p15.5 MOB kinase activator 2 protein-coding MOB2 MOB kinase activator 2 O MOB2 Mps One Binder homolog|Mps one binder kinase activator-like 2|mob2 homolog 20121230 -9606 81533 ITFG1 CDA08 TIP HGNC:30697|MIM:611803|Ensembl:ENSG00000129636|HPRD:16692|Vega:OTTHUMG00000133103 16 16q12.1 integrin alpha FG-GAP repeat containing 1 protein-coding ITFG1 integrin alpha FG-GAP repeat containing 1 O 2310047C21Rik|T cell immunomodulatory protein|T-cell immunomodulatory protein|integrin-alpha FG-GAP repeat-containing protein 1 20121230 -9606 81537 SGPP1 - SPPase1 HGNC:17720|MIM:612826|Ensembl:ENSG00000126821|HPRD:10226|Vega:OTTHUMG00000029080 14 14q23.2 sphingosine-1-phosphate phosphatase 1 protein-coding SGPP1 sphingosine-1-phosphate phosphatase 1 O hSPP1|hSPPase1|sphingosine-1-phosphatase 1|spp1 20121230 -9606 81539 SLC38A1 - ATA1|NAT2|SAT1|SNAT1 HGNC:13447|MIM:608490|Ensembl:ENSG00000111371|HPRD:12245|Vega:OTTHUMG00000169470 12 12q13.11 solute carrier family 38, member 1 protein-coding SLC38A1 solute carrier family 38, member 1 O N-system amino acid transporter 2|amino acid transporter A1|amino acid transporter system A1|sodium-coupled neutral amino acid transporter 1|system A amino acid transporter 1|system N amino acid transporter 1 20121230 -9606 81542 TMX1 PSEC0085 PDIA11|TMX|TXNDC|TXNDC1 HGNC:15487|MIM:610527|Ensembl:ENSG00000139921|HPRD:15590|Vega:OTTHUMG00000171003 14 14q22.1 thioredoxin-related transmembrane protein 1 protein-coding TMX1 thioredoxin-related transmembrane protein 1 O protein disulfide isomerase family A, member 11|thioredoxin domain containing 1|thioredoxin domain-containing protein 1|transmembrane Trx-related protein 20121230 -9606 81543 LRRC3 UNQ9233/PRO31982 C21orf102 HGNC:14965|Ensembl:ENSG00000160233|HPRD:11286|Vega:OTTHUMG00000040847 21 21q22.3 leucine rich repeat containing 3 protein-coding LRRC3 leucine rich repeat containing 3 O leucine-rich repeat-containing protein 3 20121230 -9606 81544 GDPD5 PP6037 GDE2|PP1665 HGNC:28804|MIM:609632|Ensembl:ENSG00000158555|HPRD:15159|Vega:OTTHUMG00000165484 11 11q13.4-q13.5 glycerophosphodiester phosphodiesterase domain containing 5 protein-coding GDPD5 glycerophosphodiester phosphodiesterase domain containing 5 O glycerophosphodiester phosphodiesterase 2|glycerophosphodiester phosphodiesterase domain-containing protein 5 20121230 -9606 81545 FBXO38 SP329 Fbx38|MOKA HGNC:28844|MIM:608533|Ensembl:ENSG00000145868|HPRD:09775|Vega:OTTHUMG00000129929 5 5q32 F-box protein 38 protein-coding FBXO38 F-box protein 38 O F-box only protein 38|modulator of KLF7 activity homolog 20121230 -9606 81550 TDRD3 RP11-459E2.1 - HGNC:20612|MIM:614392|Ensembl:ENSG00000083544|HPRD:11625|Vega:OTTHUMG00000017007 13 13q21.2 tudor domain containing 3 protein-coding TDRD3 tudor domain containing 3 O tudor domain-containing protein 3 20121230 -9606 81551 STMN4 - RB3 HGNC:16078|Ensembl:ENSG00000015592|HPRD:18120|Vega:OTTHUMG00000099461 8 8p21.2 stathmin-like 4 protein-coding STMN4 stathmin-like 4 O stathmin-4|stathmin-like protein B3|stathmin-like-protein RB3 20121230 -9606 81552 VOPP1 tcag7.1069 ECOP|GASP HGNC:34518|MIM:611915|Ensembl:ENSG00000154978|HPRD:08526|Vega:OTTHUMG00000156124 7 7p11.2 vesicular, overexpressed in cancer, prosurvival protein 1 protein-coding VOPP1 vesicular, overexpressed in cancer, prosurvival protein 1 O EGFR-coamplified and overexpressed protein|Glioblastoma-amplified secreted protein|hypothetical protein DKFZp564K0822|putative NF-kappa-B-activating protein 055N 20121230 -9606 81553 FAM49A - - HGNC:25373|Ensembl:ENSG00000197872|HPRD:07729|Vega:OTTHUMG00000090615 2 2p24.2 family with sequence similarity 49, member A protein-coding FAM49A family with sequence similarity 49, member A O protein FAM49A 20121230 -9606 81554 WBSCR16 - - HGNC:14948|Ensembl:ENSG00000174374|HPRD:15654|Vega:OTTHUMG00000130373 7 7q11.23 Williams-Beuren syndrome chromosome region 16 protein-coding WBSCR16 Williams-Beuren syndrome chromosome region 16 O RCC1-like G exchanging factor-like protein|Williams-Beuren syndrome chromosomal region 16 protein 20121230 -9606 81555 YIPF5 PP12723 FinGER5|SB140|SMAP-5|SMAP5|YIP1A HGNC:24877|MIM:611483|Ensembl:ENSG00000145817|HPRD:18071|Vega:OTTHUMG00000129679 5 5q31.3 Yip1 domain family, member 5 protein-coding YIPF5 Yip1 domain family, member 5 O YIP1 family member 5|YPT-interacting protein 1 A|five-pass transmembrane protein localizing in the Golgi apparatus and the endoplasmic reticulum 5|golgi membrane protein SB140|protein YIPF5|smooth muscle cell associated protein 5|smooth muscle cell-associated protein 5 20121230 -9606 81556 VWA9 - C15orf44 HGNC:25372|Ensembl:ENSG00000138614|HPRD:13175|Vega:OTTHUMG00000133159 15 15q22.31 von Willebrand factor A domain containing 9 protein-coding VWA9 von Willebrand factor A domain containing 9 O UPF0464 protein C15orf44 20121230 -9606 81557 MAGED4B RP11-363G10.1 - HGNC:22880|MIM:300765|Ensembl:ENSG00000187243|HPRD:06631|Vega:OTTHUMG00000021546 X Xp11 melanoma antigen family D, 4B protein-coding MAGED4B melanoma antigen family D, 4B O MAGE-D4 antigen|MAGE-E1 antigen|melanoma-associated antigen D4 20121230 -9606 81558 FAM117A - - HGNC:24179|Ensembl:ENSG00000121104|HPRD:17432|Vega:OTTHUMG00000161696 17 17q21.33 family with sequence similarity 117, member A protein-coding FAM117A family with sequence similarity 117, member A O C/EBP induced protein|C/EBP-induced protein|protein FAM117A 20121230 -9606 81559 TRIM11 - BIA1|RNF92 HGNC:16281|MIM:607868|Ensembl:ENSG00000154370|HPRD:07429|Vega:OTTHUMG00000039773 1 1q42.13 tripartite motif containing 11 protein-coding TRIM11 tripartite motif containing 11 O E3 ubiquitin-protein ligase TRIM11|RING finger protein 92|tripartite motif-containing 11|tripartite motif-containing protein 11 20121230 -9606 81562 LMAN2L PSEC0028 VIPL HGNC:19263|MIM:609552|Ensembl:ENSG00000114988|HPRD:17286|Vega:OTTHUMG00000130453 2 2q11.2 lectin, mannose-binding 2-like protein-coding LMAN2L lectin, mannose-binding 2-like O LMAN2-like protein|VIP36-like protein 20121230 -9606 81563 C1orf21 RP4-768P8.1 PIG13 HGNC:15494|Ensembl:ENSG00000116667|HPRD:12721|Vega:OTTHUMG00000035386 1 1q25 chromosome 1 open reading frame 21 protein-coding C1orf21 chromosome 1 open reading frame 21 O cell proliferation-inducing gene 13 protein|proliferation-inducing protein 13|uncharacterized protein C1orf21 20121230 -9606 81565 NDEL1 - EOPA|MITAP1|NUDEL HGNC:17620|MIM:607538|Ensembl:ENSG00000166579|HPRD:06340|Vega:OTTHUMG00000108193 17 17p13.1 nudE nuclear distribution E homolog (A. nidulans)-like 1 protein-coding NDEL1 nudE nuclear distribution E homolog (A. nidulans)-like 1 O endooligopeptidase A|mitosin-associated protein 1|mitosin-associated protein MITAP1|nuclear distribution protein nudE-like 1|nudE nuclear distribution gene E homolog-like 1|protein Nudel 20121230 -9606 81566 CSRNP2 - C12orf2|C12orf22|FAM130A1|PPP1R72|TAIP-12 HGNC:16006|Ensembl:ENSG00000110925|HPRD:12608|Vega:OTTHUMG00000169578 12 12q13.11-q13.12 cysteine-serine-rich nuclear protein 2 protein-coding CSRNP2 cysteine-serine-rich nuclear protein 2 O CSRNP-2|TGF-beta-induced apoptosis protein 12|cysteine/serine-rich nuclear protein 2|family with sequence similarity 130, member A1|protein phosphatase 1, regulatory subunit 72 20121230 -9606 81567 TXNDC5 RP1-126E20.1 ENDOPDI|ERP46|HCC-2|PDIA15|STRF8|UNQ364 HGNC:21073|Ensembl:ENSG00000239264|HPRD:18249|Vega:OTTHUMG00000014216 6 6p24.3 thioredoxin domain containing 5 (endoplasmic reticulum) protein-coding TXNDC5 thioredoxin domain containing 5 (endoplasmic reticulum) O ER protein 46|endoplasmic reticulum protein ERp46|endoplasmic reticulum resident protein 46|endothelial protein disulphide isomerase|protein disulfide isomerase family A, member 15|thioredoxin domain-containing protein 5|thioredoxin related protein|thioredoxin-like protein p46 20121230 -9606 81569 ACTL8 - CT57 HGNC:24018|Ensembl:ENSG00000117148|HPRD:11274|Vega:OTTHUMG00000002512 1 1p36.2-p35 actin-like 8 protein-coding ACTL8 actin-like 8 O actin like protein|actin-like protein 8|cancer/testis antigen 57 20121230 -9606 81570 CLPB - HSP78|SKD3 HGNC:30664|Ensembl:ENSG00000162129|HPRD:11560|Vega:OTTHUMG00000167902 11 11q13.4 ClpB caseinolytic peptidase B homolog (E. coli) protein-coding CLPB ClpB caseinolytic peptidase B homolog (E. coli) O caseinolytic peptidase B protein homolog|suppressor of potassium transport defect 3 20121230 -9606 81571 MIR600HG GL012 C9orf45|NCRNA00287 HGNC:23642|HPRD:12960 9 9q33.3 MIR600 host gene (non-protein coding) miscRNA MIR600HG MIR600 host gene (non-protein coding) O - 20121230 -9606 81572 PDRG1 RP1-310O13.8 C20orf126|PDRG HGNC:16119|MIM:610789|Ensembl:ENSG00000088356|HPRD:17833|Vega:OTTHUMG00000032196 20 20q11.21 p53 and DNA-damage regulated 1 protein-coding PDRG1 p53 and DNA-damage regulated 1 O p53 and DNA damage regulated 1|p53 and DNA damage-regulated protein 1 20121230 -9606 81573 ANKRD13C - RP4-677H15.5|dJ677H15.3 HGNC:25374|Ensembl:ENSG00000118454|HPRD:13176|Vega:OTTHUMG00000009343 1 1p32.3-p31.3 ankyrin repeat domain 13C protein-coding ANKRD13C ankyrin repeat domain 13C O ankyrin repeat domain-containing protein 13C 20121230 -9606 81575 APOLD1 - VERGE HGNC:25268|MIM:612456|Ensembl:ENSG00000178878|HPRD:13153|Vega:OTTHUMG00000153561 12 12p13.1 apolipoprotein L domain containing 1 protein-coding APOLD1 apolipoprotein L domain containing 1 O apolipoprotein L domain-containing protein 1|vascular early response gene protein 20121230 -9606 81576 CCDC130 SB115 - HGNC:28118|Ensembl:ENSG00000104957|HPRD:11304|Vega:OTTHUMG00000180837 19 19p13.2 coiled-coil domain containing 130 protein-coding CCDC130 coiled-coil domain containing 130 O 9 kDa protein|coiled-coil domain-containing protein 130 20121230 -9606 81577 GFOD2 UNQ9430/PRO34691 - HGNC:28159|Ensembl:ENSG00000141098|HPRD:14419|Vega:OTTHUMG00000137537 16 16q22.1 glucose-fructose oxidoreductase domain containing 2 protein-coding GFOD2 glucose-fructose oxidoreductase domain containing 2 O glucose-fructose oxidoreductase domain-containing protein 2 20121230 -9606 81578 COL21A1 FP633 COLA1L|dJ682J15.1|dJ708F5.1 HGNC:17025|MIM:610002|Ensembl:ENSG00000124749|HPRD:09884|Vega:OTTHUMG00000014907 6 6p12.3-p11.2|6p12.3-p11.2 collagen, type XXI, alpha 1 protein-coding COL21A1 collagen, type XXI, alpha 1 O alpha 1 chain-like collagen|alpha 1 type XXI collagen|collagen alpha-1(XXI) chain 20121230 -9606 81579 PLA2G12A FKSG38 GXII|PLA2G12|ROSSY HGNC:18554|MIM:611652|Ensembl:ENSG00000123739|HPRD:17858|Vega:OTTHUMG00000131915 4 4q25 phospholipase A2, group XIIA protein-coding PLA2G12A phospholipase A2, group XIIA O GXII sPLA2|group XII secreted phospholipase A2|group XIIA secreted phospholipase A2|group XIIA secretory phospholipase A2|phosphatidylcholine 2-acylhydrolase 12A|sPLA2-XII 20121230 -9606 81602 CDADC1 RP11-103J18.2 NYD-SP15|bA103J18.1 HGNC:20299|Ensembl:ENSG00000102543|HPRD:16693|Vega:OTTHUMG00000016913 13 13q14.2 cytidine and dCMP deaminase domain containing 1 protein-coding CDADC1 cytidine and dCMP deaminase domain containing 1 O cytidine and dCMP deaminase domain-containing protein 1|protein kinase NYD-SP15|testis development protein NYD-SP15 20121230 -9606 81603 TRIM8 RP11-47A8.4 GERP|RNF27 HGNC:15579|MIM:606125|Ensembl:ENSG00000171206|HPRD:06934|Vega:OTTHUMG00000018964 10 10q24.3 tripartite motif containing 8 protein-coding TRIM8 tripartite motif containing 8 O glioblastoma expressed ring finger protein|glioblastoma-expressed RING finger protein|probable E3 ubiquitin-protein ligase TRIM8|ring finger protein 27|tripartite motif protein TRIM8|tripartite motif-containing 8|tripartite motif-containing protein 8 20121230 -9606 81605 URM1 RP11-339B21.4 C9orf74 HGNC:28378|MIM:612693|Ensembl:ENSG00000167118|HPRD:12976|Vega:OTTHUMG00000020742 9 9q34.11 ubiquitin related modifier 1 protein-coding URM1 ubiquitin related modifier 1 O ubiquitin related modifier 1 homolog|ubiquitin-related modifier 1 homolog 20121230 -9606 81606 LBH - - HGNC:29532|MIM:611763|Ensembl:ENSG00000213626|HPRD:13965|Vega:OTTHUMG00000152051 2 2p23.1 limb bud and heart development protein-coding LBH limb bud and heart development O hLBH|limb bud and heart development homolog|protein LBH 20121230 -9606 81607 PVRL4 - EDSS1|LNIR|PRR4|nectin-4 HGNC:19688|MIM:609607|Ensembl:ENSG00000143217|HPRD:17934|Vega:OTTHUMG00000031475 1 1q22-q23.2 poliovirus receptor-related 4 protein-coding PVRL4 poliovirus receptor-related 4 O Ig superfamily receptor LNIR|nectin 4|poliovirus receptor-related protein 4 20121230 -9606 81608 FIP1L1 - Rhe|hFip1 HGNC:19124|MIM:607686|Ensembl:ENSG00000145216|HPRD:09646|Vega:OTTHUMG00000128701 4 4q12 FIP1 like 1 (S. cerevisiae) protein-coding FIP1L1 FIP1 like 1 (S. cerevisiae) O FIP1-like 1 protein|factor interacting with PAP|pre-mRNA 3'-end-processing factor FIP1|rearranged in hypereosinophilia 20121230 -9606 81609 SNX27 RP11-98D18.12-005 MRT1|MY014 HGNC:20073|MIM:611541|Ensembl:ENSG00000143376|HPRD:11591|Vega:OTTHUMG00000013052 1 1q21.3 sorting nexin family member 27 protein-coding SNX27 sorting nexin family member 27 O methamphetamine-responsive transcript 1|sorting nexin-27 20121230 -9606 81610 FAM83D - C20orf129|CHICA|dJ616B8.3 HGNC:16122|Ensembl:ENSG00000101447|HPRD:12744|Vega:OTTHUMG00000032462 20 20q11.22-q12 family with sequence similarity 83, member D protein-coding FAM83D family with sequence similarity 83, member D O protein FAM83D|spindle protein CHICA 20121230 -9606 81611 ANP32E RP4-790G17.1 LANP-L|LANPL HGNC:16673|MIM:609611|Ensembl:ENSG00000143401|HPRD:16493|Vega:OTTHUMG00000012547 1 1q21.2 acidic (leucine-rich) nuclear phosphoprotein 32 family, member E protein-coding ANP32E acidic (leucine-rich) nuclear phosphoprotein 32 family, member E O LANP-like protein|acidic leucine-rich nuclear phosphoprotein 32 family member E|leucine-rich acidic nuclear protein like 20121230 -9606 81614 NIPA2 - - HGNC:17044|MIM:608146|Ensembl:ENSG00000140157|HPRD:16290|Vega:OTTHUMG00000129101 15 15q11.2 non imprinted in Prader-Willi/Angelman syndrome 2 protein-coding NIPA2 non imprinted in Prader-Willi/Angelman syndrome 2 O magnesium transporter NIPA2|non-imprinted in Prader-Willi/Angelman syndrome region protein 2 20121230 -9606 81615 TMEM163 - DC29|SV31 HGNC:25380|Ensembl:ENSG00000152128|HPRD:13178|Vega:OTTHUMG00000131713 2 2q21.3 transmembrane protein 163 protein-coding TMEM163 transmembrane protein 163 O - 20121230 -9606 81616 ACSBG2 UNQ2443/PRO5005 BGR|BRGL|PRTD-NY3|PRTDNY3 HGNC:24174|MIM:614363|Ensembl:ENSG00000130377|HPRD:09824|Vega:OTTHUMG00000180754 19 19p13.3 acyl-CoA synthetase bubblegum family member 2 protein-coding ACSBG2 acyl-CoA synthetase bubblegum family member 2 O bubblegum-related protein|long-chain-fatty-acid--CoA ligase ACSBG2 20121230 -9606 81617 CAB39L RP11-103J18.3 MO25-BETA|MO2L|bA103J18.3 HGNC:20290|MIM:612175|Ensembl:ENSG00000102547|HPRD:12993|Vega:OTTHUMG00000016914 13 13q14.2 calcium binding protein 39-like protein-coding CAB39L calcium binding protein 39-like O MO25beta|U937-associated antigen|antigen MLAA-34|calcium-binding protein 39-like|mo25-like protein|sarcoma antigen NY-SAR-79 20121230 -9606 81618 ITM2C hucep-14 BRI3|BRICD2C|E25|E25C|ITM3 HGNC:6175|MIM:609554|Ensembl:ENSG00000135916|HPRD:17167|Vega:OTTHUMG00000133219 2 2q37 integral membrane protein 2C protein-coding ITM2C integral membrane protein 2C O BRICHOS domain containing 2C|cerebral protein 14|hRPC.1050_D_4|integral membrane protein 3|transmembrane protein BRI3 20121230 -9606 81619 TSPAN14 - DC-TM4F2|TM4SF14 HGNC:23303|Ensembl:ENSG00000108219|HPRD:18196|Vega:OTTHUMG00000018615 10 10q23.1 tetraspanin 14 protein-coding TSPAN14 tetraspanin 14 O tetraspanin similar to TM4SF9|tetraspanin-14|transmembrane 4 superfamily member 14|tspan-14 20121230 -9606 81620 CDT1 - DUP|RIS2 HGNC:24576|MIM:605525|Ensembl:ENSG00000167513|HPRD:06900|Vega:OTTHUMG00000173467 16 16q24.3 chromatin licensing and DNA replication factor 1 protein-coding CDT1 chromatin licensing and DNA replication factor 1 O DNA replication factor Cdt1|Double parked, Drosophila, homolog of 20121230 -9606 81621 KAZALD1 RP11-108L7.10-001 BONO1|FKSG28|FKSG40|IGFBP-rP10 HGNC:25460|MIM:609208|Ensembl:ENSG00000107821|HPRD:13755|Vega:OTTHUMG00000018918 10 10q24.31 Kazal-type serine peptidase inhibitor domain 1 protein-coding KAZALD1 Kazal-type serine peptidase inhibitor domain 1 O IGFBP-related protein 10|Kazal-type serine protease inhibitor domain 1|bone- and odontoblast-expressed gene 1|kazal-type serine protease inhibitor domain-containing protein 1|novel kazal-type serine protease inhibitor domain and immunoglobulin domain containing protein 20121230 -9606 81622 UNC93B1 - IIAE1|UNC93|UNC93B|Unc-93B1 HGNC:13481|MIM:608204|Ensembl:ENSG00000110057|HPRD:12191 11 11q13 unc-93 homolog B1 (C. elegans) protein-coding UNC93B1 unc-93 homolog B1 (C. elegans) O hUNC93B1|protein unc-93 homolog B1|unc-93 related protein|unc93 homolog B|unc93 homolog B1 20121230 -9606 81623 DEFB126 - C20orf8|DEFB-26|DEFB26|ESP13.2|bA530N10.1|hBD-26 HGNC:15900|HPRD:10876 20 20p13 defensin, beta 126 protein-coding DEFB126 defensin, beta 126 O beta defensin 26|beta-defensin 126|beta-defensin 26|epididymal secretory protein 13.2|epididymal secretory protein ESP13.2 20121230 -9606 81624 DIAPH3 RP11-26P21.1 AN|AUNA1|DIA2|DRF3|NSDAN|diap3|mDia2 HGNC:15480|MIM:614567|Ensembl:ENSG00000139734|HPRD:10884|Vega:OTTHUMG00000017004 13 13q21.2 diaphanous homolog 3 (Drosophila) protein-coding DIAPH3 diaphanous homolog 3 (Drosophila) O diaphanous-related formin-3|protein diaphanous homolog 3 20121230 -9606 81626 SHCBP1L RP5-1133A12.2 C1orf14|GE36 HGNC:16788|Ensembl:ENSG00000157060|HPRD:16634|Vega:OTTHUMG00000035419 1 1q25.3 SHC SH2-domain binding protein 1-like protein-coding SHCBP1L SHC SH2-domain binding protein 1-like O GE36|SHC SH2 domain-binding protein 1-like protein 20121230 -9606 81627 TRMT1L MSTP070 C1orf25|MST070|TRM1L|bG120K12.3 HGNC:16782|MIM:611673|Ensembl:ENSG00000121486|HPRD:12722|Vega:OTTHUMG00000035389 1 1q25.2 tRNA methyltransferase 1 homolog (S. cerevisiae)-like protein-coding TRMT1L tRNA methyltransferase 1 homolog (S. cerevisiae)-like O TRM1 tRNA methyltransferase 1-like|TRM1-like protein|TRMT1-like protein 20121230 -9606 81628 TSC22D4 - THG-1|THG1|TILZ2 HGNC:21696|MIM:611914|Ensembl:ENSG00000166925|HPRD:18231|Vega:OTTHUMG00000150233 7 7p21-p15 TSC22 domain family, member 4 protein-coding TSC22D4 TSC22 domain family, member 4 O TSC22 domain family 4|TSC22 domain family protein 4|TSC22-related-inducible leucine zipper protein 2|tsc-22-like protein THG-1 20121230 -9606 81629 TSSK3 - SPOGA3|STK22C|STK22D|TSK3 HGNC:15473|MIM:607660|Ensembl:ENSG00000162526|HPRD:09635|Vega:OTTHUMG00000007585 1 1p35-p34 testis-specific serine kinase 3 protein-coding TSSK3 testis-specific serine kinase 3 O TSK-3|TSSK-3|serine/threonine-protein kinase 22C|spermiogenesis associated 3|testis-specific kinase 3|testis-specific serine/threonine kinase 22C|testis-specific serine/threonine-protein kinase 3 20121230 -9606 81631 MAP1LC3B - ATG8F|LC3B|MAP1A/1BLC3|MAP1LC3B-a HGNC:13352|MIM:609604|Ensembl:ENSG00000140941|HPRD:14358|Vega:OTTHUMG00000137654 16 16q24.2 microtubule-associated protein 1 light chain 3 beta protein-coding MAP1LC3B microtubule-associated protein 1 light chain 3 beta O MAP1 light chain 3-like protein 2|MAP1A/MAP1B LC3 B|MAP1A/MAP1B light chain 3 B|autophagy-related ubiquitin-like modifier LC3 B|microtubule-associated proteins 1A/1B light chain 3B 20121230 -9606 81669 CCNL2 RP4-758J18.1 ANIA-6B|CCNM|HCLA-ISO|HLA-ISO|PCEE|SB138 HGNC:20570|MIM:613482|Ensembl:ENSG00000221978|HPRD:10815|Vega:OTTHUMG00000002917 1 1p36.33 cyclin L2 protein-coding CCNL2 cyclin L2 O cyclin M|cyclin-L2|paneth cell-enhanced expression protein 20121230 -9606 81671 VMP1 HSPC292 EPG3|TANGO5|TMEM49 HGNC:29559|MIM:611753|Ensembl:ENSG00000062716|HPRD:15649|Vega:OTTHUMG00000179882 17 17q23.1 vacuole membrane protein 1 protein-coding VMP1 vacuole membrane protein 1 O ectopic P-granules autophagy protein 3 homolog|transmembrane protein 49|transport and golgi organization 5 homolog 20121230 -9606 81688 C6orf62 RP1-30M3.4 Nbla00237|XTP12|dJ30M3.2 HGNC:20998|Ensembl:ENSG00000112308|HPRD:12891|Vega:OTTHUMG00000014361 6 6p22.3 chromosome 6 open reading frame 62 protein-coding C6orf62 chromosome 6 open reading frame 62 O HBV X-transactivated gene 12 protein|HBV X-transactivated protein 12|HBV XAg-transactivated protein 12|uncharacterized protein C6orf62 20121230 -9606 81689 ISCA1 GK004 HBLD2|ISA1|RP11-507D14.2|hIscA HGNC:28660|MIM:611006|Ensembl:ENSG00000135070|HPRD:17091|Vega:OTTHUMG00000020135 9 9q21.33 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) protein-coding ISCA1 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) O HESB like domain containing 2|HESB-like domain-containing protein 2|iron sulfur assembly protein IscA|iron-sulfur assembly protein IscA|iron-sulfur cluster assembly 1 homolog, mitochondrial 20121230 -9606 81691 LOC81691 44M2.3 - Ensembl:ENSG00000005189|HPRD:17433|Vega:OTTHUMG00000131556 16 16p12.3 exonuclease NEF-sp protein-coding - - - putative RNA exonuclease NEF-sp 20121230 -9606 81693 AMN UNQ513/PRO1028 PRO1028|amnionless HGNC:14604|MIM:605799|Ensembl:ENSG00000166126|HPRD:09314|Vega:OTTHUMG00000171897 14 14q32.3 amnion associated transmembrane protein protein-coding AMN amnion associated transmembrane protein O amnionless homolog|protein amnionless|visceral endoderm-specific type 1 transmembrane protein 20121230 -9606 81694 OR2W2P - hs6M1-30P HGNC:13970 6 6p22.1 olfactory receptor, family 2, subfamily W, member 2 pseudogene pseudo OR2W2P olfactory receptor, family 2, subfamily W, member 2 pseudogene O - 20121230 -9606 81695 OR2B7P - hs6M1-31P HGNC:13967 6 6p22.1 olfactory receptor, family 2, subfamily B, member 7 pseudogene pseudo OR2B7P olfactory receptor, family 2, subfamily B, member 7 pseudogene O - 20121230 -9606 81696 OR5V1 DAMA-334F21.4 6M1-21|hs6M1-21 HGNC:13972|Ensembl:ENSG00000243729|HPRD:17771|Vega:OTTHUMG00000031199 6 6p22.1 olfactory receptor, family 5, subfamily V, member 1 protein-coding OR5V1 olfactory receptor, family 5, subfamily V, member 1 O olfactory receptor 5V1|olfactory receptor OR6-26 20121230 -9606 81697 OR2B2 - OR2B2Q|OR2B9|OR6-1|dJ193B12.4|hs6M1-10 HGNC:13966|Ensembl:ENSG00000168131|HPRD:17695|Vega:OTTHUMG00000014495 6 6p22.3-p21.3 olfactory receptor, family 2, subfamily B, member 2 protein-coding OR2B2 olfactory receptor, family 2, subfamily B, member 2 O olfactory receptor 2B2|olfactory receptor 2B9|olfactory receptor 6-1|olfactory receptor OR6-2|olfactory receptor, family 2, subfamily B, member 9 20121230 -9606 81698 LINC00597 - C15orf5 HGNC:1193|HPRD:12672 15 15q23-q24 long intergenic non-protein coding RNA 597 miscRNA LINC00597 long intergenic non-protein coding RNA 597 O - 20121230 -9606 81704 DOCK8 RP11-165F24.7 MRD2|ZIR8 HGNC:19191|MIM:611432|Ensembl:ENSG00000107099|HPRD:10920|Vega:OTTHUMG00000078789 9 9p24.3 dedicator of cytokinesis 8 protein-coding DOCK8 dedicator of cytokinesis 8 O 1200017A24Rik|dedicator of cytokinesis protein 8 20121230 -9606 81706 PPP1R14C - CPI17-like|KEPI|NY-BR-81 HGNC:14952|MIM:613242|Ensembl:ENSG00000198729|HPRD:17890|Vega:OTTHUMG00000015818 6 6q24.3-q25.3 protein phosphatase 1, regulatory (inhibitor) subunit 14C protein-coding PPP1R14C protein phosphatase 1, regulatory (inhibitor) subunit 14C O PKC-potentiated PP1 inhibitory protein|kinase C-enhanced PP1 inhibitor|kinase-enhanced PP1 inhibitor|protein phosphatase 1 regulatory subunit 14C|serologically defined breast cancer antigen NY-BR-81 20121230 -9606 81786 TRIM7 - GNIP|RNF90 HGNC:16278|MIM:609315|Ensembl:ENSG00000146054|HPRD:11648|Vega:OTTHUMG00000130963 5 5q35.3 tripartite motif containing 7 protein-coding TRIM7 tripartite motif containing 7 O RING finger protein 90|glycogenin-interacting protein|tripartite motif protein TRIM7|tripartite motif-containing 7|tripartite motif-containing protein 7 20121230 -9606 81787 DKFZP547L112 - - - 15 15q11.2 uncharacterized protein DKFZp547L112 unknown - - - - 20121230 -9606 81788 NUAK2 - SNARK HGNC:29558|MIM:608131|Ensembl:ENSG00000163545|HPRD:12172|Vega:OTTHUMG00000037196 1 1q32.1 NUAK family, SNF1-like kinase, 2 protein-coding NUAK2 NUAK family, SNF1-like kinase, 2 O NUAK family SNF1-like kinase 2|SNF1/AMP activated protein kinase|SNF1/AMP kinase-related kinase|omphalocele kinase 2 20121230 -9606 81789 TIGD6 - - HGNC:18332|Ensembl:ENSG00000164296|HPRD:18190|Vega:OTTHUMG00000130045 5 5q32 tigger transposable element derived 6 protein-coding TIGD6 tigger transposable element derived 6 O tigger transposable element-derived protein 6 20121230 -9606 81790 RNF170 - SNAX1 HGNC:25358|MIM:614649|Ensembl:ENSG00000120925|HPRD:13165|Vega:OTTHUMG00000165277 8 8p11.21 ring finger protein 170 protein-coding RNF170 ring finger protein 170 O E3 ubiquitin-protein ligase RNF170|putative LAG1-interacting protein 20121230 -9606 81792 ADAMTS12 UNQ1918 PRO4389 HGNC:14605|MIM:606184|Ensembl:ENSG00000151388|HPRD:05862|Vega:OTTHUMG00000162088 5 5q35 ADAM metallopeptidase with thrombospondin type 1 motif, 12 protein-coding ADAMTS12 ADAM metallopeptidase with thrombospondin type 1 motif, 12 O A disintegrin and metalloproteinase with thrombospondin motifs 12|ADAM-TS 12|ADAM-TS12|ADAMTS-12|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 12 20121230 -9606 81793 TLR10 UNQ315/PRO358 CD290 HGNC:15634|MIM:606270|Ensembl:ENSG00000174123|HPRD:05884|Vega:OTTHUMG00000128578 4 4p14 toll-like receptor 10 protein-coding TLR10 toll-like receptor 10 O - 20121230 -9606 81794 ADAMTS10 - ADAM-TS10|WMS|WMS1 HGNC:13201|MIM:608990|Ensembl:ENSG00000142303|HPRD:07470 19 19p13.2 ADAM metallopeptidase with thrombospondin type 1 motif, 10 protein-coding ADAMTS10 ADAM metallopeptidase with thrombospondin type 1 motif, 10 O A disintegrin and metalloproteinase with thrombospondin motifs 10|ADAM-TS 10|ADAMTS-10|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 10|zinc metalloendopeptidase 20121230 -9606 81796 SLCO5A1 - OATP-J|OATP-RP4|OATP5A1|OATPRP4|SLC21A15 HGNC:19046|MIM:613543|Ensembl:ENSG00000137571|HPRD:15399|Vega:OTTHUMG00000165121 8 8q13.3 solute carrier organic anion transporter family, member 5A1 protein-coding SLCO5A1 solute carrier organic anion transporter family, member 5A1 O organic anion transporter polypeptide-related protein 4|solute carrier family 21 (organic anion transporter), member 15|solute carrier family 21 member 15|solute carrier organic anion transporter family member 5A1 20121230 -9606 81797 OR12D3 DADB-136A24.10-001 hs6M1-27 HGNC:13963|Ensembl:ENSG00000112462|HPRD:17679|Vega:OTTHUMG00000031051 6 6p22.1 olfactory receptor, family 12, subfamily D, member 3 protein-coding OR12D3 olfactory receptor, family 12, subfamily D, member 3 O olfactory receptor 12D3|olfactory receptor OR6-27 20121230 -9606 81831 NETO2 UNQ1926/PRO4401 BTCL2|NEOT2 HGNC:14644|MIM:607974|Ensembl:ENSG00000171208|HPRD:09721|Vega:OTTHUMG00000133101 16 16q11 neuropilin (NRP) and tolloid (TLL)-like 2 protein-coding NETO2 neuropilin (NRP) and tolloid (TLL)-like 2 O brain-specific transmembrane protein containing 2 CUB and 1 LDL-receptor class A domains protein 2|neuropilin and tolloid-like protein 2 20121230 -9606 81832 NETO1 - BCTL1|BTCL1 HGNC:13823|MIM:607973|Ensembl:ENSG00000166342|HPRD:16264|Vega:OTTHUMG00000132834 18 18q22.2 neuropilin (NRP) and tolloid (TLL)-like 1 protein-coding NETO1 neuropilin (NRP) and tolloid (TLL)-like 1 O brain-specific transmembrane protein containing 2 CUB and 1 LDL-receptor class A domains protein 1|neuropilin and tolloid-like protein 1 20121230 -9606 81833 SPACA1 RP1-23D17.2 SAMP32 HGNC:14967|MIM:612739|Ensembl:ENSG00000118434|HPRD:15419|Vega:OTTHUMG00000015183 6 6q15 sperm acrosome associated 1 protein-coding SPACA1 sperm acrosome associated 1 O sperm acrosomal membrane-associated protein 32|sperm acrosome membrane-associated protein 1 20121230 -9606 81839 VANGL1 - KITENIN|LPP2|STB2|STBM2 HGNC:15512|MIM:610132|Ensembl:ENSG00000173218|HPRD:18279|Vega:OTTHUMG00000011971 1 1p13.1 vang-like 1 (van gogh, Drosophila) protein-coding VANGL1 vang-like 1 (van gogh, Drosophila) O KAI1 C-terminal interacting tetraspanin|loop-tail protein 2 homolog|strabismus 2|van Gogh-like protein 1|vang-like protein 1 20121230 -9606 81844 TRIM56 - RNF109 HGNC:19028|Ensembl:ENSG00000169871|HPRD:10284|Vega:OTTHUMG00000157032 7 7q22.1 tripartite motif containing 56 protein-coding TRIM56 tripartite motif containing 56 O E3 ubiquitin-protein ligase TRIM56|RING finger protein 109|tripartite motif-containing 56|tripartite motif-containing protein 56 20121230 -9606 81846 SBF2 - CMT4B2|DENND7B|MTMR13 HGNC:2135|MIM:607697|Ensembl:ENSG00000133812|HPRD:09649|Vega:OTTHUMG00000165890 11 11p15.4 SET binding factor 2 protein-coding SBF2 SET binding factor 2 O DENN/MADD domain containing 7B|myotubularin-related protein 13 20121230 -9606 81847 RNF146 - RP3-351K20.1|dJ351K20.1 HGNC:21336|MIM:612137|Ensembl:ENSG00000118518|Vega:OTTHUMG00000015522 6 6q22.1-q22.33 ring finger protein 146 protein-coding RNF146 ring finger protein 146 O 2610509H23Rik|E3 ubiquitin-protein ligase RNF146|dactylidin|iduna 20121230 -9606 81848 SPRY4 - - HGNC:15533|MIM:607984|Ensembl:ENSG00000187678|HPRD:10466|Vega:OTTHUMG00000129663 5 5q31.3 sprouty homolog 4 (Drosophila) protein-coding SPRY4 sprouty homolog 4 (Drosophila) O protein sprouty homolog 4|spry-4 20121230 -9606 81849 ST6GALNAC5 RP4-564M11.3 SIAT7E|ST6GalNAcV HGNC:19342|MIM:610134|Ensembl:ENSG00000117069|HPRD:15342|Vega:OTTHUMG00000009687 1 1p31.1 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 protein-coding ST6GALNAC5 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 O GD1 alpha synthase|GalNAc alpha-2,6-sialyltransferase V|SIAT7-E|ST6 neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5|ST6GalNAc V|alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5|alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase V|alpha-N-acetylneuraminyl 2,3-betagalactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialyltransferase E|sialyltransferase 7 ((alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialyltransferase) E|sialyltransferase 7 (alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialyltransferase) E|sialyltransferase 7E 20121230 -9606 81850 KRTAP1-3 - KAP1.2|KAP1.3|KAP1.6|KAP1.8A|KAP1.8B|KAP1.9|KRTAP1.3 HGNC:16771|MIM:608820|Ensembl:ENSG00000221880|HPRD:12305|Vega:OTTHUMG00000133583 17 17q12-q21 keratin associated protein 1-3 protein-coding KRTAP1-3 keratin associated protein 1-3 O keratin associated protein 1.6|keratin-associated protein 1-3|keratin-associated protein 1.8|keratin-associated protein 1.9 20121230 -9606 81851 KRTAP1-1 - HB2A|KAP1.1|KAP1.1A|KAP1.1B|KAP1.6|KAP1.7|KRTAP1.1|KRTAP1A|hKAP1.7 HGNC:16772|MIM:608819|Ensembl:ENSG00000188581|HPRD:12304|Vega:OTTHUMG00000133592 17 17q12 keratin associated protein 1-1 protein-coding KRTAP1-1 keratin associated protein 1-1 O high sulfur keratin-associated protein 1.1|keratin associated protein 1.7|keratin associated protein 1A|keratin-associated protein 1-1|keratin-associated protein 1.1|keratin-associated protein 1.6|keratin-associated protein 1.7 20121230 -9606 81853 TMEM14B RP3-417M14.1 - HGNC:21384|Ensembl:ENSG00000137210|HPRD:15523|Vega:OTTHUMG00000014246 6 6p25.1-p23 transmembrane protein 14B protein-coding TMEM14B transmembrane protein 14B O - 20121230 -9606 81854 ZNF205-AS1 - - HGNC:28586 16 16p13.3 ZNF205 antisense RNA 1 miscRNA ZNF205-AS1 ZNF205 antisense RNA 1 O - 20121230 -9606 81855 SFXN3 RP11-108L7.3 BA108L7.2|SFX3 HGNC:16087|Ensembl:ENSG00000107819|HPRD:15329|Vega:OTTHUMG00000018921 10 10q24.31 sideroflexin 3 protein-coding SFXN3 sideroflexin 3 O sideroflexin-3 20121230 -9606 81856 ZNF611 - - HGNC:28766|Ensembl:ENSG00000213020|HPRD:15872|Vega:OTTHUMG00000154908 19 19q13.41 zinc finger protein 611 protein-coding ZNF611 zinc finger protein 611 O - 20121230 -9606 81857 MED25 TCBAP0758 ACID1|ARC92|CMT2B2|P78|PTOV2 HGNC:28845|MIM:610197|Ensembl:ENSG00000104973|HPRD:14380 19 19q13.3 mediator complex subunit 25 protein-coding MED25 mediator complex subunit 25 O ARC/mediator transcriptional coactivator subunit|activator interaction domain-containing protein 1|activator-recruited cofactor 92 kDa component|mediator of RNA polymerase II transcription subunit 25|mediator of RNA polymerase II transcription, subunit 25 homolog|prostate-derived protein 78 kDa 20121230 -9606 81858 SHARPIN PSEC0216 SIPL1 HGNC:25321|MIM:611885|Ensembl:ENSG00000179526|HPRD:15463|Vega:OTTHUMG00000165243 8 8q24.3 SHANK-associated RH domain interactor protein-coding SHARPIN SHANK-associated RH domain interactor O hSIPL1|shank-associated RH domain-interacting protein|shank-interacting protein-like 1|sharpin 20121230 -9606 81861 LPRS1 - LPRS MIM:609888 10 10p13 Leprosy, susceptibility to 1 unknown - - - - 20120622 -9606 81863 CTPL1 - CAAR HGNC:30997|MIM:605749 9 9q13-q22 cataract, pulverulent (autosomal recessive, early-onset) unknown CTPL1 cataract, pulverulent (autosomal recessive, early-onset) O - 20120622 -9606 81864 EVR3 - - HGNC:32785|MIM:605750 11 11p13-p12 exudative vitreoretinopathy 3 unknown EVR3 exudative vitreoretinopathy 3 O - 20120622 -9606 81865 BFIC2 - - MIM:605751 - - Benign familial infantile convulsions-2 unknown - - - - 20121123 -9606 81866 NDIC - - MIM:605779 17 17p13 Nail dysplasia, isolated congenital unknown - - - - 20120622 -9606 81870 KRTAP9-9 - KAP9.5|KAP9.9|KRTAP9-5|KRTAP9.9 HGNC:16773|Ensembl:ENSG00000198083|Vega:OTTHUMG00000133602 17 17q21.2 keratin associated protein 9-9 protein-coding KRTAP9-9 keratin associated protein 9-9 O keratin-associated protein 9-5|keratin-associated protein 9-9|keratin-associated protein 9.5|ultrahigh sulfur keratin-associated protein 9.9 20121230 -9606 81871 KRTAP4-6 - KAP4.15|KAP4.6|KRTAP4-15|KRTAP4.15 HGNC:18909|Ensembl:ENSG00000198090|Vega:OTTHUMG00000133634 17 17q12-q21 keratin associated protein 4-6 protein-coding KRTAP4-6 keratin associated protein 4-6 O keratin associated protein 4-15|keratin-associated protein 4-6|keratin-associated protein 4.6|ultrahigh sulfur keratin-associated protein 4.15 20121230 -9606 81872 KRTAP2-1 hCG_2005477 KAP2.1A|KRTAP2.1A HGNC:16775|Ensembl:ENSG00000212725|Vega:OTTHUMG00000171405 17 17q12-q21 keratin associated protein 2-1 protein-coding KRTAP2-1 keratin associated protein 2-1 O high sulfur keratin-associated protein 2.1|keratin associated protein KRTAP2.1A|keratin-associated protein 2-1|keratin-associated protein 2.1 20121230 -9606 81873 ARPC5L RP11-175D17.1 ARC16-2 HGNC:23366|Ensembl:ENSG00000136950|HPRD:12490|Vega:OTTHUMG00000020660 9 9q33.3 actin related protein 2/3 complex, subunit 5-like protein-coding ARPC5L actin related protein 2/3 complex, subunit 5-like O actin-related protein 2/3 complex subunit 5-like protein|arp2/3 complex 16 kDa subunit 2 20121230 -9606 81875 ISG20L2 HSD38 - HGNC:25745|MIM:611930|Ensembl:ENSG00000143319|HPRD:07788|Vega:OTTHUMG00000041301 1 1q23.1 interferon stimulated exonuclease gene 20kDa-like 2 protein-coding ISG20L2 interferon stimulated exonuclease gene 20kDa-like 2 O interferon-stimulated 20 kDa exonuclease-like 2 20121230 -9606 81876 RAB1B - - HGNC:18370|MIM:612565|Ensembl:ENSG00000174903|HPRD:11469|Vega:OTTHUMG00000166916 11 11q12 RAB1B, member RAS oncogene family protein-coding RAB1B RAB1B, member RAS oncogene family O ras-related protein Rab-1B|small GTP-binding protein 20121230 -9606 81887 LAS1L RP3-475B7.2 Las1-like|dJ475B7.2 HGNC:25726|Ensembl:ENSG00000001497|HPRD:06519|Vega:OTTHUMG00000021720 X Xq12 LAS1-like (S. cerevisiae) protein-coding LAS1L LAS1-like (S. cerevisiae) O protein LAS1 homolog|ribosomal biogenesis protein LAS1L 20121230 -9606 81888 HYI RP11-506B15.5 HT036 HGNC:26948|Ensembl:ENSG00000178922|HPRD:11039|Vega:OTTHUMG00000007502 1 1p34.2 hydroxypyruvate isomerase (putative) protein-coding HYI hydroxypyruvate isomerase (putative) O endothelial cell apoptosis protein E-CE1|hydroxypyruvate isomerase homolog|putative hydroxypyruvate isomerase 20121230 -9606 81889 FAHD1 AC012180.10-002 C16orf36|YISKL HGNC:14169|Ensembl:ENSG00000180185|HPRD:13286|Vega:OTTHUMG00000128663 16 16p13.3 fumarylacetoacetate hydrolase domain containing 1 protein-coding FAHD1 fumarylacetoacetate hydrolase domain containing 1 O YISK like/RJD15|acylpyruvase FAHD1, mitochondrial|fumarylacetoacetate hydrolase domain-containing protein 1|yisK-like protein 20121230 -9606 81890 QTRT1 - FP3235|TGT|TGUT HGNC:23797|MIM:609615|Ensembl:ENSG00000213339|HPRD:17943|Vega:OTTHUMG00000180588 19 19p13.3 queuine tRNA-ribosyltransferase 1 protein-coding QTRT1 queuine tRNA-ribosyltransferase 1 O TGT, 43-KD subunit|TGT, catalytic subunit|guanine insertion enzyme|queuine tRNA-ribosyltransferase|tRNA-guanine transglycosylase 20121230 -9606 81892 SLIRP DC23 C14orf156|DC50|PD04872 HGNC:20495|MIM:610211|Ensembl:ENSG00000119705|HPRD:12639|Vega:OTTHUMG00000171526 14 14q24.3 SRA stem-loop interacting RNA binding protein protein-coding SLIRP SRA stem-loop interacting RNA binding protein O SRA stem-loop-interacting RNA-binding protein, mitochondrial 20121230 -9606 81893 SLC7A5P1 - DC49|LAT1-3TM|MLAS|hLAT1-3TM HGNC:29458|HPRD:13964 16 16p11.2 solute carrier family 7 (amino acid transporter light chain, L system), member 5 pseudogene 1 pseudo SLC7A5P1 solute carrier family 7 (amino acid transporter light chain, L system), member 5 pseudogene 1 O LAT1-3TM protein 1 20121230 -9606 81894 SLC25A28 NPD016 MFRN2|MRS3/4|MRS4L HGNC:23472|MIM:609767|Ensembl:ENSG00000155287|Vega:OTTHUMG00000018886 10 10q24.2 solute carrier family 25 (mitochondrial iron transporter), member 28 protein-coding SLC25A28 solute carrier family 25 (mitochondrial iron transporter), member 28 O hMRS3/4|mitochondrial RNA splicing protein 3/4|mitochondrial RNA-splicing protein 3/4 homolog|mitochondrial iron transporter 2|mitoferrin 2|mitoferrin-2|putative mitochondrial solute carrier|solute carrier family 25, member 28 20121230 -9606 81926 FAM108A1 - C19orf27 HGNC:28756|Ensembl:ENSG00000129968|HPRD:07475|Vega:OTTHUMG00000171872 19 19p13.3 family with sequence similarity 108, member A1 protein-coding FAM108A1 family with sequence similarity 108, member A1 O abhydrolase domain-containing protein FAM108A1 20121230 -9606 81928 CABLES2 RP5-908M14.2 C20orf150|dJ908M14.2|ik3-2 HGNC:16143|Ensembl:ENSG00000149679|HPRD:12994|Vega:OTTHUMG00000032912 20 20q13.33 Cdk5 and Abl enzyme substrate 2 protein-coding CABLES2 Cdk5 and Abl enzyme substrate 2 O CDK5 and ABL1 enzyme substrate 2|interactor with CDK3 2 20121230 -9606 81929 SEH1L - SEC13L|SEH1A|SEH1B|Seh1 HGNC:30379|MIM:609263|Ensembl:ENSG00000085415|HPRD:15319|Vega:OTTHUMG00000181909 18 18p11.21 SEH1-like (S. cerevisiae) protein-coding SEH1L SEH1-like (S. cerevisiae) O nucleoporin SEH1|nup107-160 subcomplex subunit SEH1|sec13 like protein|sec13-like protein 20121230 -9606 81930 KIF18A OK/SW-cl.108 MS-KIF18A HGNC:29441|MIM:611271|Ensembl:ENSG00000121621|HPRD:11177|Vega:OTTHUMG00000166195 11 11p14.1 kinesin family member 18A protein-coding KIF18A kinesin family member 18A O kinesin-like protein KIF18A 20121230 -9606 81931 ZNF93 - HPF34|HTF34|TF34|ZNF505 HGNC:13169|MIM:603975|Ensembl:ENSG00000184635|HPRD:10334|Vega:OTTHUMG00000182371 19 19p12 zinc finger protein 93 protein-coding ZNF93 zinc finger protein 93 O zinc finger protein 505|zinc finger protein HTF34 20121230 -9606 81932 HDHD3 - 2810435D12Rik|C9orf158 HGNC:28171|Ensembl:ENSG00000119431|HPRD:13641|Vega:OTTHUMG00000020524 9 9q32 haloacid dehalogenase-like hydrolase domain containing 3 protein-coding HDHD3 haloacid dehalogenase-like hydrolase domain containing 3 O haloacid dehalogenase-like hydrolase domain-containing protein 3 20121230 -9606 81993 COX17P1 RP11-189B4.3 COX17P HGNC:24341 13 13q14.13 cytochrome c oxidase assembly homolog 17 (yeast) pseudogene 1 pseudo COX17P1 cytochrome c oxidase assembly homolog 17 (yeast) pseudogene 1 O - 20121230 -9606 82500 PKP2P1 - - HGNC:13413 12 12p13 plakophilin 2 pseudogene 1 pseudo PKP2P1 plakophilin 2 pseudogene 1 O - 20121230 -9606 83259 PCDH11Y - PCDH-PC|PCDH22|PCDHY HGNC:15813|MIM:400022|Ensembl:ENSG00000099715|HPRD:11847|Vega:OTTHUMG00000035105 Y Yp11.2 protocadherin 11 Y-linked protein-coding PCDH11Y protocadherin 11 Y-linked O PCDH-Y|protocadherin 22|protocadherin Y|protocadherin on the Y chromosome|protocadherin prostate cancer|protocadherin-11 Y-linked|protocadherin-22|protocadherin-PC 20121230 -9606 83394 PITPNM3 - CORD5|NIR1|RDGBA3 HGNC:21043|MIM:608921|Ensembl:ENSG00000091622|HPRD:07498|Vega:OTTHUMG00000102039 17 17p13 PITPNM family member 3 protein-coding PITPNM3 PITPNM family member 3 O NIR-1|PITPnm 3|PYK2 N-terminal domain-interacting receptor 1|membrane-associated phosphatidylinositol transfer protein 3|phosphatidylinositol transfer protein, membrane-associated 3|retinal degeneration B alpha 3 20121230 -9606 83401 ELOVL3 - CIG-30|CIG30 HGNC:18047|MIM:611815|Ensembl:ENSG00000119915|HPRD:16858|Vega:OTTHUMG00000018951 10 10q24.32 ELOVL fatty acid elongase 3 protein-coding ELOVL3 ELOVL fatty acid elongase 3 O 3-keto acyl-CoA synthase ELOVL3|ELOVL FA elongase 3|cold-inducible glycoprotein of 30 kDa|elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 3|elongation of very long chain fatty acids protein 3 20121230 -9606 83416 FCRL5 RP11-217A12.1 BXMAS1|CD307|CD307e|FCRH5|IRTA2|PRO820 HGNC:18508|MIM:605877|Ensembl:ENSG00000143297|HPRD:16169|Vega:OTTHUMG00000017481 1 1q21 Fc receptor-like 5 protein-coding FCRL5 Fc receptor-like 5 O Fc receptor-like protein 5|fc receptor homolog 5|fcR-like protein 5|immune receptor translocation-associated protein 2|immunoglobulin superfamily receptor translocation associated 2 (IRTA2) 20121230 -9606 83417 FCRL4 - CD307d|FCRH4|IGFP2|IRTA1 HGNC:18507|MIM:605876|Ensembl:ENSG00000163518|HPRD:16168|Vega:OTTHUMG00000035488 1 1q21 Fc receptor-like 4 protein-coding FCRL4 Fc receptor-like 4 O Fc receptor-like protein 4|IFGP family protein 2|fc receptor homolog 4|fcR-like protein 4|hIFGP2|immune receptor translocation-associated protein 1|immunoglobulin superfamily Fc receptor, gp42|immunoglobulin superfamily receptor translocation associated 1 20121230 -9606 83439 TCF7L1 - TCF-3|TCF3 HGNC:11640|MIM:604652|Ensembl:ENSG00000152284|HPRD:06874|Vega:OTTHUMG00000130026 2 2p11.2 transcription factor 7-like 1 (T-cell specific, HMG-box) protein-coding TCF7L1 transcription factor 7-like 1 (T-cell specific, HMG-box) O HMG box transcription factor 3|transcription factor 7-like 1 20121230 -9606 83440 ADPGK PSEC0260 2610017G09Rik|ADP-GK HGNC:25250|MIM:611861|Ensembl:ENSG00000159322|HPRD:12429|Vega:OTTHUMG00000172777 15 15q24.1 ADP-dependent glucokinase protein-coding ADPGK ADP-dependent glucokinase O ATP-dependent glucokinase|rbBP-35 20121230 -9606 83442 SH3BGRL3 RP11-569G9.2 SH3BP-1|TIP-B1 HGNC:15568|Ensembl:ENSG00000142669|HPRD:15332|Vega:OTTHUMG00000003381 1 1p36.11 SH3 domain binding glutamic acid-rich protein like 3 protein-coding SH3BGRL3 SH3 domain binding glutamic acid-rich protein like 3 O SH3 domain-binding glutamic acid-rich-like protein 3|SH3 domain-binding protein 1|SH3BGRL3-like protein|TNF inhibitory protein 20121230 -9606 83443 SF3B5 RP1-197L1.2 SF3b10|Ysf3 HGNC:21083|Ensembl:ENSG00000169976|HPRD:18042|Vega:OTTHUMG00000015737 6 6q24.2 splicing factor 3b, subunit 5, 10kDa protein-coding SF3B5 splicing factor 3b, subunit 5, 10kDa O pre-mRNA-splicing factor SF3b 10 kDa subunit|splicing factor 3B subunit 5 20121230 -9606 83444 INO80B - HMGA1L4|HMGIYL4|IES2|PAP-1BP|PAPA-1|ZNHIT4|hIes2 HGNC:13324|Ensembl:ENSG00000115274|HPRD:17110|Vega:OTTHUMG00000129959 2 2p13.1 INO80 complex subunit B protein-coding INO80B INO80 complex subunit B O IES2 homolog|PAP (Pim-1 associated protein) associated protein 1|PAP-1 binding protein|PAP-1-associated protein 1|high mobility group AT-hook 1-like 4|zinc finger HIT domain-containing protein 4|zinc finger, HIT type 4 20121230 -9606 83445 GSG1 hCG_28221 - HGNC:19716|Ensembl:ENSG00000111305|HPRD:11015|Vega:OTTHUMG00000150148 12 12p13.1 germ cell associated 1 protein-coding GSG1 germ cell associated 1 O germ cell-specific gene 1 protein 20121230 -9606 83446 CCDC70 - - HGNC:25303|Ensembl:ENSG00000123171|HPRD:13158|Vega:OTTHUMG00000016950 13 13q14.3 coiled-coil domain containing 70 protein-coding CCDC70 coiled-coil domain containing 70 O coiled-coil domain-containing protein 70 20121230 -9606 83447 SLC25A31 - AAC4|ANT4|SFEC35kDa HGNC:25319|MIM:610796|Ensembl:ENSG00000151475|HPRD:13160|Vega:OTTHUMG00000133300 4 4q28.1 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 31 protein-coding SLC25A31 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 31 O ADP,ATP carrier protein 4|ADP/ATP translocase 4|ANT 4|adenine nucleotide translocase 4|adenine nucleotide translocator 4|solute carrier family 25 member 31|sperm flagellar energy carrier protein 20121230 -9606 83448 PUS7L - - HGNC:25276|Ensembl:ENSG00000129317|HPRD:13189|Vega:OTTHUMG00000169423 12 12q12 pseudouridylate synthase 7 homolog (S. cerevisiae)-like protein-coding PUS7L pseudouridylate synthase 7 homolog (S. cerevisiae)-like O pseudouridylate synthase 7 homolog-like protein 20121230 -9606 83449 PMFBP1 - - HGNC:17728|Ensembl:ENSG00000118557|HPRD:10157|Vega:OTTHUMG00000167827 16 16q22.2 polyamine modulated factor 1 binding protein 1 protein-coding PMFBP1 polyamine modulated factor 1 binding protein 1 O PMF-1 binding protein|PMF-1-binding protein|polyamine-modulated factor 1-binding protein 1 20121230 -9606 83450 LRRC48 - - HGNC:25384|Ensembl:ENSG00000171962|HPRD:13181|Vega:OTTHUMG00000059355 17 17p11.2 leucine rich repeat containing 48 protein-coding LRRC48 leucine rich repeat containing 48 O leucine-rich repeat-containing protein 48 20121230 -9606 83451 ABHD11 PP1226 WBSCR21 HGNC:16407|Ensembl:ENSG00000106077|HPRD:15658|Vega:OTTHUMG00000130029 7 7q11.23 abhydrolase domain containing 11 protein-coding ABHD11 abhydrolase domain containing 11 O Williams Beuren syndrome chromosome region 21|abhydrolase domain-containing protein 11|williams-Beuren syndrome chromosomal region 21 protein 20121230 -9606 83452 RAB33B - - HGNC:16075|MIM:605950|Ensembl:ENSG00000172007|HPRD:05808|Vega:OTTHUMG00000133384 4 4q28 RAB33B, member RAS oncogene family protein-coding RAB33B RAB33B, member RAS oncogene family O ras-related protein Rab-33B 20121230 -9606 83460 EMC6 - TMEM93 HGNC:28430|Ensembl:ENSG00000127774|HPRD:14529|Vega:OTTHUMG00000180187 17 17p13.2 ER membrane protein complex subunit 6 protein-coding EMC6 ER membrane protein complex subunit 6 O transmembrane protein 93 20121230 -9606 83461 CDCA3 - GRCC8|TOME-1 HGNC:14624|MIM:607749|Ensembl:ENSG00000111665|HPRD:09670|Vega:OTTHUMG00000169014 12 12p13 cell division cycle associated 3 protein-coding CDCA3 cell division cycle associated 3 O cell division cycle-associated protein 3|gene rich cluster, C8|gene-rich cluster protein C8|trigger of mitotic entry 1|trigger of mitotic entry protein 1 20121230 -9606 83463 MXD3 - BHLHC13|MAD3|MYX HGNC:14008|MIM:609450|Ensembl:ENSG00000213347|HPRD:14791|Vega:OTTHUMG00000130854 5 5q35.3 MAX dimerization protein 3 protein-coding MXD3 MAX dimerization protein 3 O Max-associated protein 3|Max-interacting transcriptional repressor MAD3|class C basic helix-loop-helix protein 13|max dimerization protein 3|max dimerizer 3 20121230 -9606 83464 APH1B UNQ688/PRO1328 APH-1B|PRO1328|PSFL|TAAV688 HGNC:24080|MIM:607630|Ensembl:ENSG00000138613|HPRD:06361|Vega:OTTHUMG00000132863 15 15q22.2 anterior pharynx defective 1 homolog B (C. elegans) protein-coding APH1B anterior pharynx defective 1 homolog B (C. elegans) O aph-1beta|gamma-secretase subunit APH-1B 20121230 -9606 83468 GLT8D2 UNQ1901/PRO4347 - HGNC:24890|Ensembl:ENSG00000120820|HPRD:14260|Vega:OTTHUMG00000170120 12 12q glycosyltransferase 8 domain containing 2 protein-coding GLT8D2 glycosyltransferase 8 domain containing 2 O glycosyltransferase 8 domain-containing protein 2|gycosyltransferase 20121230 -9606 83473 KATNAL2 - - HGNC:25387|MIM:614697|Ensembl:ENSG00000167216|HPRD:13754|Vega:OTTHUMG00000179408 18 18q21.1 katanin p60 subunit A-like 2 protein-coding KATNAL2 katanin p60 subunit A-like 2 O katanin p60 ATPase-containing subunit A-like 2|p60 katanin-like 2 20121230 -9606 83475 DOHH - HLRC1|hDOHH HGNC:28662|MIM:611262|Ensembl:ENSG00000129932|HPRD:14627|Vega:OTTHUMG00000180762 19 19p13.3 deoxyhypusine hydroxylase/monooxygenase protein-coding DOHH deoxyhypusine hydroxylase/monooxygenase O HEAT-like (PBS lyase) repeat containing 1|HEAT-like repeat-containing protein 1|deoxyhypusine dioxygenase|deoxyhypusine hydroxylase|deoxyhypusine monooxygenase 20121230 -9606 83478 ARHGAP24 - FILGAP|RC-GAP72|RCGAP72|p73|p73RhoGAP HGNC:25361|MIM:610586|Ensembl:ENSG00000138639|HPRD:09804|Vega:OTTHUMG00000130427 4 4q22.1 Rho GTPase activating protein 24 protein-coding ARHGAP24 Rho GTPase activating protein 24 O RAC1- and CDC42-specific GTPase-activating protein of 72 kDa|filamin-A-associated RhoGAP|rho GTPase-activating protein 24|rho-type GTPase-activating protein 24|rhoGAP of 73 kDa|sarcoma antigen NY-SAR-88 20121230 -9606 83479 DDX59 RP11-92G12.2 ZNHIT5 HGNC:25360|Ensembl:ENSG00000118197|HPRD:10893|Vega:OTTHUMG00000035725 1 1q32.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 59 protein-coding DDX59 DEAD (Asp-Glu-Ala-Asp) box polypeptide 59 O DEAD box protein 59|probable ATP-dependent RNA helicase DDX59|zinc finger HIT domain-containing protein 5 20121230 -9606 83480 PUS3 FKSG32 2610020J05Rik HGNC:25461|Ensembl:ENSG00000110060|HPRD:15195|Vega:OTTHUMG00000165870 11 11q24.2 pseudouridylate synthase 3 protein-coding PUS3 pseudouridylate synthase 3 O tRNA pseudouridine synthase 3|tRNA pseudouridine(38/39) synthase|tRNA pseudouridylate synthase 3|tRNA-uridine isomerase 3 20121230 -9606 83481 EPPK1 - EPIPL|EPIPL1 HGNC:15577|MIM:607553|HPRD:06500 8 8q24.3 epiplakin 1 protein-coding EPPK1 epiplakin 1 O 450 kDa epidermal antigen|epidermal autoantigen 450K|epiplakin 20121230 -9606 83482 SCRT1 hCG_1747870 SCRT|ZNF898 HGNC:15950|MIM:605858|Ensembl:ENSG00000170616|HPRD:16166|Vega:OTTHUMG00000165229 8 8q24.3 scratch homolog 1, zinc finger protein (Drosophila) protein-coding SCRT1 scratch homolog 1, zinc finger protein (Drosophila) O scratch 1|scratch homolog 1 zinc finger protein|transcriptional repressor scratch 1 20121230 -9606 83483 PLVAP - FELS|PV-1|PV1|gp68 HGNC:13635|MIM:607647|Ensembl:ENSG00000130300|HPRD:09626 19 19p13.2 plasmalemma vesicle associated protein protein-coding PLVAP plasmalemma vesicle associated protein O fenestrated endothelial-linked structure protein|fenestrated-endothelial linked structure protein; PV-1 protein|plasmalemma vesicle protein 1|plasmalemma vesicle-associated protein 20121230 -9606 83528 CYP51P1 - - HGNC:20245 3 3p12.2 cytochrome P450, family 51, pseudogene 1 pseudo CYP51P1 cytochrome P450, family 51, pseudogene 1 O - 20121230 -9606 83530 CYP51P2 - - HGNC:20251 13 13q12.3 cytochrome P450, family 51, pseudogene 2 pseudo CYP51P2 cytochrome P450, family 51, pseudogene 2 O - 20121230 -9606 83538 TTC25 - - HGNC:25280|HPRD:10888 17 17q21.2 tetratricopeptide repeat domain 25 protein-coding TTC25 tetratricopeptide repeat domain 25 O TPR repeat protein 25|tetratricopeptide repeat protein 25 20121230 -9606 83539 CHST9 UNQ2549/PRO6175 GALNAC4ST-2 HGNC:19898|MIM:610191|Ensembl:ENSG00000154080|Vega:OTTHUMG00000179469 18 18q11.2 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 9 protein-coding CHST9 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 9 O GalNAc-4-sulfotransferase 2|N-acetylgalactosamine 4-O-sulfotransferase 2|carbohydrate sulfotransferase 9|galNAc-4-O-sulfotransferase 2 20121230 -9606 83540 NUF2 - CDCA1|CT106|NUF2R HGNC:14621|MIM:611772|Ensembl:ENSG00000143228|HPRD:10817|Vega:OTTHUMG00000034275 1 1q23.3 NUF2, NDC80 kinetochore complex component, homolog (S. cerevisiae) protein-coding NUF2 NUF2, NDC80 kinetochore complex component, homolog (S. cerevisiae) O cancer/testis antigen 106|cell division cycle associated 1|cell division cycle-associated protein 1|hNuf2|hNuf2R|hsNuf2|kinetochore protein Nuf2 20121230 -9606 83541 FAM110A - C20orf55|F10|bA371L19.3 HGNC:16188|MIM:611393|Ensembl:ENSG00000125898|HPRD:12775|Vega:OTTHUMG00000031649 20 20p13 family with sequence similarity 110, member A protein-coding FAM110A family with sequence similarity 110, member A O protein FAM110A 20121230 -9606 83543 AIF1L RP11-544A12.2 C9orf58|IBA2 HGNC:28904|Ensembl:ENSG00000126878|HPRD:12967|Vega:OTTHUMG00000020817 9 9q34.13-q34.3 allograft inflammatory factor 1-like protein-coding AIF1L allograft inflammatory factor 1-like O ionized calcium binding adapter molecule 2|ionized calcium-binding adapter molecule 2 20121230 -9606 83544 DNAL1 - C14orf168|CILD16 HGNC:23247|MIM:610062|Ensembl:ENSG00000119661|HPRD:16616|Vega:OTTHUMG00000171642 14 14q24.3 dynein, axonemal, light chain 1 protein-coding DNAL1 dynein, axonemal, light chain 1 O dynein light chain 1, axonemal 20121230 -9606 83546 RTBDN - - HGNC:30310|MIM:609553|Ensembl:ENSG00000132026|HPRD:18007|Vega:OTTHUMG00000180482 19 19p12 retbindin protein-coding RTBDN retbindin O - 20121230 -9606 83547 RILP PP10141 - HGNC:30266|MIM:607848|Ensembl:ENSG00000167705|HPRD:09706|Vega:OTTHUMG00000090554 17 17p13.3 Rab interacting lysosomal protein protein-coding RILP Rab interacting lysosomal protein O rab-interacting lysosomal protein 20121230 -9606 83548 COG3 - SEC34 HGNC:18619|MIM:606975|Ensembl:ENSG00000136152|HPRD:08443|Vega:OTTHUMG00000016855 13 13q14.13 component of oligomeric golgi complex 3 protein-coding COG3 component of oligomeric golgi complex 3 O COG complex subunit 3|conserved oligomeric Golgi complex subunit 3|p94|tethering factor SEC34|vesicle-docking protein SEC34 homolog 20121230 -9606 83549 UCK1 RP11-334J6.5 URK1 HGNC:14859|MIM:609328|Ensembl:ENSG00000130717|HPRD:18256|Vega:OTTHUMG00000020823 9 9q34.13 uridine-cytidine kinase 1 protein-coding UCK1 uridine-cytidine kinase 1 O UCK 1|cytidine monophosphokinase 1|uridine monophosphokinase 1 20121230 -9606 83550 GPR101 - GPCR6 HGNC:14963|MIM:300393|Ensembl:ENSG00000165370|HPRD:02315|Vega:OTTHUMG00000022521 X Xq26.3 G protein-coupled receptor 101 protein-coding GPR101 G protein-coupled receptor 101 O probable G-protein coupled receptor 101 20121230 -9606 83551 TAAR8 - GPR102|TA5|TAR5|TRAR5|TaR-5|TaR-8 HGNC:14964|MIM:606927|Ensembl:ENSG00000146385|HPRD:09496|Vega:OTTHUMG00000015586 6 6q23.2 trace amine associated receptor 8 protein-coding TAAR8 trace amine associated receptor 8 O G protein-coupled receptor 102|G-protein coupled receptor 102|trace amine receptor 5|trace amine receptor 8|trace amine-associated receptor 8 20121230 -9606 83552 MFRP - MCOP5|NNO2|RD6 HGNC:18121|MIM:606227|Ensembl:ENSG00000235718|Ensembl:ENSG00000259159|HPRD:06941|Vega:OTTHUMG00000166199|Vega:OTTHUMG00000171803 11 11q23 membrane frizzled-related protein protein-coding MFRP membrane frizzled-related protein O membrane-type frizzled-related protein 20121230 -9606 83590 TMUB1 SB144 C7orf21|DULP HGNC:21709|MIM:614792|Ensembl:ENSG00000164897|HPRD:12910|Vega:OTTHUMG00000158621 7 7q36.1 transmembrane and ubiquitin-like domain containing 1 protein-coding TMUB1 transmembrane and ubiquitin-like domain containing 1 O dendritic cell-derived ubiquitin-like protein|hepatocyte odd protein shuttling protein|transmembrane and ubiquitin-like domain-containing protein 1|ubiquitin-like protein DULP|ubiquitin-like protein SB144 20121230 -9606 83591 THAP2 - - HGNC:20854|MIM:612531|Ensembl:ENSG00000173451|HPRD:10896|Vega:OTTHUMG00000169556 12 12q21.1 THAP domain containing, apoptosis associated protein 2 protein-coding THAP2 THAP domain containing, apoptosis associated protein 2 O THAP domain-containing protein 2 20121230 -9606 83592 AKR1E2 - AKR1CL2|AKRDC1|LoopADR|hTSP|htAKR HGNC:23437|Ensembl:ENSG00000165568|HPRD:07472|Vega:OTTHUMG00000017577 10 10p15.1 aldo-keto reductase family 1, member E2 protein-coding AKR1E2 aldo-keto reductase family 1, member E2 O 1,5-anhydro-D-fructose reductase|AF reductase|aldo-keto reductase family 1 member C-like protein 2|aldo-keto reductase family 1, member C-like 2|aldo-keto reductase loopADR|testis-specific protein 20121230 -9606 83593 RASSF5 RP11-343H5.1 Maxp1|NORE1|NORE1A|NORE1B|RAPL|RASSF3 HGNC:17609|MIM:607020|Ensembl:ENSG00000136653|HPRD:06117|Vega:OTTHUMG00000036343 1 1q32.1 Ras association (RalGDS/AF-6) domain family member 5 protein-coding RASSF5 Ras association (RalGDS/AF-6) domain family member 5 O Rap1-binding protein|Ras association (RalGDS/AF-6) domain family 5|Ras effector-like protein|new ras effector 1|novel Ras effector 1|ras association domain-containing protein 5|regulator for cell adhesion and polarization enriched in lymphoid tissue|tumor suppressor RASSF3 20121230 -9606 83594 NUDT12 - - HGNC:18826|MIM:609232|Ensembl:ENSG00000112874|HPRD:10123|Vega:OTTHUMG00000128739 5 5q21.2 nudix (nucleoside diphosphate linked moiety X)-type motif 12 protein-coding NUDT12 nudix (nucleoside diphosphate linked moiety X)-type motif 12 O nucleoside diphosphate linked moiety X-type motif 12|nucleoside diphosphate-linked moiety X motif 12|nudix motif 12|peroxisomal NADH pyrophosphatase NUDT12 20121230 -9606 83595 SOX7 - - HGNC:18196|MIM:612202|Ensembl:ENSG00000171056|HPRD:18087|Vega:OTTHUMG00000090585 8 8p22 SRY (sex determining region Y)-box 7 protein-coding SOX7 SRY (sex determining region Y)-box 7 O SOX7 transcription factor|transcription factor SOX-7 20121230 -9606 83596 BCL2L12 - - HGNC:13787|MIM:610837|Ensembl:ENSG00000126453|HPRD:16543 19 19q13.3 BCL2-like 12 (proline rich) protein-coding BCL2L12 BCL2-like 12 (proline rich) O Bcl-2 related proline-rich protein|bcl-2-like protein 12|bcl-2-related proline-rich protein|bcl2-L-12 20121230 -9606 83597 RTP3 - LTM1|TMEM7 HGNC:15572|MIM:607181|Ensembl:ENSG00000163825|HPRD:06214|Vega:OTTHUMG00000133483 3 3p21.3 receptor (chemosensory) transporter protein 3 protein-coding RTP3 receptor (chemosensory) transporter protein 3 O receptor transporter protein 3|receptor transporting protein 3|receptor-transporting protein 3|transmembrane protein 7 20121230 -9606 83598 LRRC2-AS1 - LUZP3|LUZP3P|LUZPP1 HGNC:15571 3 3p21.3 LRRC2 antisense RNA 1 miscRNA LRRC2-AS1 LRRC2 antisense RNA 1 O - 20121230 -9606 83604 TMEM47 - BCMP1|TM4SF10 HGNC:18515|MIM:300698|Ensembl:ENSG00000147027|HPRD:06741|Vega:OTTHUMG00000021343 X Xp11.4 transmembrane protein 47 protein-coding TMEM47 transmembrane protein 47 O brain cell membrane protein 1|transmembrane 4 superfamily member 10 20121230 -9606 83605 CCM2 PP10187 C7orf22|OSM HGNC:21708|MIM:607929|Ensembl:ENSG00000136280|HPRD:09719|Vega:OTTHUMG00000129246 7 7p13 cerebral cavernous malformation 2 protein-coding CCM2 cerebral cavernous malformation 2 O cerebral cavernous malformations 2 protein|malcavernin 20121230 -9606 83606 GUCD1 - C22orf13|LLN4 HGNC:14237|Ensembl:ENSG00000138867|HPRD:12796|Vega:OTTHUMG00000150728 22 22q11.2 guanylyl cyclase domain containing 1 protein-coding GUCD1 guanylyl cyclase domain containing 1 O CG13760 gene product [Drosophila melanogaster] homolog|uncharacterized protein C22orf13 20121230 -9606 83607 AMMECR1L - - HGNC:28658|Ensembl:ENSG00000144233|HPRD:14625|Vega:OTTHUMG00000131535 2 2q21 AMMECR1-like protein-coding AMMECR1L AMMECR1-like O AMME chromosomal region gene 1-like|AMMECR1-like protein 20121230 -9606 83608 C18orf21 PNAS-124 HsT3108|PNAS-131|XTP13 HGNC:28802|Ensembl:ENSG00000141428|HPRD:12688|Vega:OTTHUMG00000128531 18 18q12.2 chromosome 18 open reading frame 21 protein-coding C18orf21 chromosome 18 open reading frame 21 O HBV X-transactivated gene 13 protein|HBV X-transactivated protein 13|HBV XAg-transactivated protein 13|UPF0711 protein C18orf21 20121230 -9606 83636 C19orf12 - NBIA3 HGNC:25443|MIM:614297|Ensembl:ENSG00000131943|HPRD:12696|Vega:OTTHUMG00000149838 19 19q12 chromosome 19 open reading frame 12 protein-coding C19orf12 chromosome 19 open reading frame 12 O neurodegeneration with brain iron accumulation 3|protein C19orf12 20121230 -9606 83637 ZMIZ2 HRIHFB2007 NET27|TRAFIP20|ZIMP7|hZIMP7 HGNC:22229|MIM:611196|Ensembl:ENSG00000122515|HPRD:13225|Vega:OTTHUMG00000155817 7 7p13 zinc finger, MIZ-type containing 2 protein-coding ZMIZ2 zinc finger, MIZ-type containing 2 O PIAS-like protein Zimp7|zinc finger MIZ domain-containing protein 2 20121230 -9606 83638 C11orf68 - BLES03|P5326 HGNC:28801|Ensembl:ENSG00000175573|HPRD:12553|Vega:OTTHUMG00000157153 11 11q13.1 chromosome 11 open reading frame 68 protein-coding C11orf68 chromosome 11 open reading frame 68 O UPF0696 protein C11orf68|basophilic leukemia expressed protein BLES03|basophilic leukemia-expressed protein Bles03|protein p5326 20121230 -9606 83639 TEX101 UNQ867/PRO1884 CT131|GTPR867|NYD-SP8|PRO1884|SGRG|TES101RP HGNC:30722|MIM:612665|Ensembl:ENSG00000131126|HPRD:15490 19 19q13.31 testis expressed 101 protein-coding TEX101 testis expressed 101 O cancer/testis antigen 131|cell surface receptor NYD-SP8|scleroderma-associated autoantigen|spermatogenesis-related gene protein|testis expressed sequence 101|testis-expressed protein 101|testis-expressed sequence 101 protein|testis-specific protein TES101RP 20121230 -9606 83640 FAM103A1 - C15orf18|HsT19360|RAM HGNC:31022|MIM:614547|Ensembl:ENSG00000169612|HPRD:12845|Vega:OTTHUMG00000147357 15 15q25.2 family with sequence similarity 103, member A1 protein-coding FAM103A1 family with sequence similarity 103, member A1 O RNMT-activating mini protein|protein FAM103A1 20121230 -9606 83641 FAM107B RP11-153L18.1 C10orf45 HGNC:23726|Ensembl:ENSG00000065809|HPRD:12575|Vega:OTTHUMG00000017709 10 10p13 family with sequence similarity 107, member B protein-coding FAM107B family with sequence similarity 107, member B O protein FAM107B 20121230 -9606 83642 SELO RP3-402G11.5 - MIM:607917|Ensembl:ENSG00000073169|HPRD:07449|Vega:OTTHUMG00000044645 22 22q13.33 selenoprotein O protein-coding - - - - 20121230 -9606 83643 CCDC3 RP11-347I22.1 - HGNC:23813|Ensembl:ENSG00000151468|HPRD:13008|Vega:OTTHUMG00000017689 10 10p13 coiled-coil domain containing 3 protein-coding CCDC3 coiled-coil domain containing 3 O coiled-coil domain-containing protein 3|fat/vessel-derived secretory protein|favine 20121230 -9606 83647 LINC00529 - C8orf8 HGNC:15544 8 8p23-p22 long intergenic non-protein coding RNA 529 other LINC00529 long intergenic non-protein coding RNA 529 O - 20121021 -9606 83648 FAM167A - C8orf13|D8S265 HGNC:15549|MIM:610085|Ensembl:ENSG00000154319|HPRD:12924|Vega:OTTHUMG00000129361 8 8p23-p22 family with sequence similarity 167, member A protein-coding FAM167A family with sequence similarity 167, member A O protein FAM167A 20121230 -9606 83650 SLC35G5 - AMAC|AMAC1L2 HGNC:15546|Ensembl:ENSG00000177710|HPRD:09796|Vega:OTTHUMG00000090653 8 8p23.1 solute carrier family 35, member G5 protein-coding SLC35G5 solute carrier family 35, member G5 O acyl-malonyl condensing enzyme 1-like 2|acyl-malonyl-condensing enzyme 1-like protein 2|protein AMAC1L2|solute carrier family 35 member G5 20121230 -9606 83655 LINC00208 - C8orf14|NCRNA00208|VIR35 HGNC:15535 8 8p23.1 long intergenic non-protein coding RNA 208 miscRNA LINC00208 long intergenic non-protein coding RNA 208 O - 20121230 -9606 83656 C8orf12 - - HGNC:15548 8 8p23.1 chromosome 8 open reading frame 12 miscRNA C8orf12 chromosome 8 open reading frame 12 O - 20121230 -9606 83657 DYNLRB2 - DNCL2B|DNLC2B|ROBLD2 HGNC:15467|MIM:607168|Ensembl:ENSG00000168589|HPRD:06204|Vega:OTTHUMG00000137622 16 16q23.3 dynein, light chain, roadblock-type 2 protein-coding DYNLRB2 dynein, light chain, roadblock-type 2 O bithoraxoid-like protein|dynein light chain 2B, cytoplasmic|dynein light chain roadblock-type 2|dynein, cytoplasmic, light polypeptide 2B|roadblock domain containing 2|roadblock domain-containing protein 2 20121230 -9606 83658 DYNLRB1 HSPC162 BITH|BLP|DNCL2A|DNLC2A|ROBLD1 HGNC:15468|MIM:607167|Ensembl:ENSG00000125971|HPRD:06203|Vega:OTTHUMG00000032302 20 20q11.21 dynein, light chain, roadblock-type 1 protein-coding DYNLRB1 dynein, light chain, roadblock-type 1 O ROBL/LC7-like 1|Roadblock-1|bithoraxoid-like protein|cytoplasmic dynein light chain 2A|dynein light chain 2A, cytoplasmic|dynein light chain roadblock-type 1|dynein, cytoplasmic, light polypeptide 2A|dynein-associated protein HKM23|dynein-associated protein Km23|roadblock domain containing 1|roadblock domain-containing protein 1 20121230 -9606 83659 TEKT1 - - HGNC:15534|MIM:609002|Ensembl:ENSG00000167858|HPRD:10611|Vega:OTTHUMG00000102063 17 17p13.1 tektin 1 protein-coding TEKT1 tektin 1 O tektin-1 20121230 -9606 83660 TLN2 - ILWEQ HGNC:15447|MIM:607349|Ensembl:ENSG00000171914|HPRD:09555|Vega:OTTHUMG00000133679 15 15q15-q21 talin 2 protein-coding TLN2 talin 2 O talin-2 20121230 -9606 83661 MS4A8B - 4SPAN4|MS4A4 HGNC:13380|MIM:606549|Ensembl:ENSG00000166959|HPRD:08409|Vega:OTTHUMG00000167686 11 11q12.2 membrane-spanning 4-domains, subfamily A, member 8B protein-coding MS4A8B membrane-spanning 4-domains, subfamily A, member 8B O four-span transmembrane protein 4|membrane-spanning 4-domains subfamily A member 8B 20121230 -9606 83666 PARP9 - ARTD9|BAL|BAL1|MGC:7868 HGNC:24118|MIM:612065|Ensembl:ENSG00000138496|HPRD:10686|Vega:OTTHUMG00000159522 3 3q21 poly (ADP-ribose) polymerase family, member 9 protein-coding PARP9 poly (ADP-ribose) polymerase family, member 9 O ADP-ribosyltransferase diphtheria toxin-like 9|PARP-9|b aggressive lymphoma protein|poly (ADP-ribose) polymerase 9|poly [ADP-ribose] polymerase 9 20121230 -9606 83667 SESN2 - HI95|SES2|SEST2 HGNC:20746|MIM:607767|Ensembl:ENSG00000130766|HPRD:06378|Vega:OTTHUMG00000003532 1 1p35.3 sestrin 2 protein-coding SESN2 sestrin 2 O hypoxia induced gene 95|sestrin-2 20121230 -9606 83690 CRISPLD1 UNQ342/PRO541 CRISP10|LCRISP1 HGNC:18206|Ensembl:ENSG00000121005|HPRD:16756|Vega:OTTHUMG00000164529 8 8q21.11 cysteine-rich secretory protein LCCL domain containing 1 protein-coding CRISPLD1 cysteine-rich secretory protein LCCL domain containing 1 O CRISP-10|CocoaCrisp|LCCL domain containing cysteine-rich secretory protein 1|LCCL domain-containing cysteine-rich secretory protein 1|cysteine-rich secretory protein 10|cysteine-rich secretory protein LCCL domain-containing 1|trypsin inhibitor Hl 20121230 -9606 83692 CD99L2 UNQ1964/PRO4486 CD99B|MIC2L1 HGNC:18237|MIM:300846|Ensembl:ENSG00000102181|Vega:OTTHUMG00000024247 X Xq28 CD99 molecule-like 2 protein-coding CD99L2 CD99 molecule-like 2 O CD99 antigen-like protein 2|MIC2 like 1|MIC2-like protein 1 20121230 -9606 83693 HSDL1 - SDR12C3 HGNC:16475|Ensembl:ENSG00000103160|HPRD:17117|Vega:OTTHUMG00000137635 16 16q23.3 hydroxysteroid dehydrogenase like 1 protein-coding HSDL1 hydroxysteroid dehydrogenase like 1 O inactive hydroxysteroid dehydrogenase-like protein 1|short chain dehydrogenase/reductase family 12C, member 3|steroid dehydrogenase-like protein 20121230 -9606 83694 RPS6KL1 - - HGNC:20222|Ensembl:ENSG00000198208|HPRD:18004|Vega:OTTHUMG00000171484 14 14q24.3 ribosomal protein S6 kinase-like 1 protein-coding RPS6KL1 ribosomal protein S6 kinase-like 1 O - 20121230 -9606 83695 RHNO1 HKMT1188 C12orf32|RHINO HGNC:28206|MIM:614085|Ensembl:ENSG00000171792|HPRD:17487|Vega:OTTHUMG00000158557 12 12p13.33 RAD9-HUS1-RAD1 interacting nuclear orphan 1 protein-coding RHNO1 RAD9-HUS1-RAD1 interacting nuclear orphan 1 O RAD9, HUS1, RAD1-interacting nuclear orphan protein 1|Rad9, Rad1, Hus1 interacting nuclear orphan|rAD9, RAD1, HUS1-interacting nuclear orphan protein 20121230 -9606 83696 TRAPPC9 T1 IBP|IKBKBBP|MRT13|NIBP|TRS120 HGNC:30832|MIM:611966|Ensembl:ENSG00000167632|HPRD:18136|Vega:OTTHUMG00000164187 8 8q24.3 trafficking protein particle complex 9 protein-coding TRAPPC9 trafficking protein particle complex 9 O IKK2 binding protein|NIK and IKK-beta binding protein|NIK- and IKBKB-binding protein|TRAPP 120 kDa subunit|trafficking protein particle complex subunit 9|tularik gene 1 protein 20121230 -9606 83697 SLC4A9 - AE4 HGNC:11035|MIM:610207|Ensembl:ENSG00000113073|HPRD:15393|Vega:OTTHUMG00000163352 5 5q31 solute carrier family 4, sodium bicarbonate cotransporter, member 9 protein-coding SLC4A9 solute carrier family 4, sodium bicarbonate cotransporter, member 9 O anion exchange protein 4|anion exchanger 4|sodium bicarbonate cotransporter 5|solute carrier family 4, sodium bicarbonate cotransporter-like, member 9 20121230 -9606 83698 CALN1 - CABP8 HGNC:13248|MIM:607176|Ensembl:ENSG00000183166|HPRD:06209|Vega:OTTHUMG00000023787 7 7q11 calneuron 1 protein-coding CALN1 calneuron 1 O calcium-binding protein 8|calcium-binding protein CABP8|calneuron I|calneuron-1 20121230 -9606 83699 SH3BGRL2 - - HGNC:15567|Ensembl:ENSG00000198478|HPRD:15331|Vega:OTTHUMG00000015081 6 6q14.1 SH3 domain binding glutamic acid-rich protein like 2 protein-coding SH3BGRL2 SH3 domain binding glutamic acid-rich protein like 2 O SH3 domain-binding glutamic acid-rich-like protein 2|fovea-associated SH3 domain-binding protein 20121230 -9606 83700 JAM3 UNQ859/PRO1868 JAM-2|JAM-3|JAM-C|JAMC HGNC:15532|MIM:606871|Ensembl:ENSG00000166086|HPRD:06042|Vega:OTTHUMG00000167130 11 11q25 junctional adhesion molecule 3 protein-coding JAM3 junctional adhesion molecule 3 O junctional adhesion molecule C 20121230 -9606 83706 FERMT3 - KIND3|MIG-2|MIG2B|UNC112C|URP2|URP2SF HGNC:23151|MIM:607901|Ensembl:ENSG00000149781|HPRD:07440|Vega:OTTHUMG00000167790 11 11q13.1 fermitin family member 3 protein-coding FERMT3 fermitin family member 3 O MIG2-like protein|UNC-112 related protein 2|fermitin family homolog 3|kindlin 3|unc-112-related protein 2 20121230 -9606 83707 TRPT1 - - HGNC:20316|MIM:610470|Ensembl:ENSG00000149743|HPRD:17479|Vega:OTTHUMG00000167844 11 11q13.1 tRNA phosphotransferase 1 protein-coding TRPT1 tRNA phosphotransferase 1 O tRNA 2'-phosphotransferase 1|tRNA splicing 2' phosphotransferase 1 20121230 -9606 83714 NRIP2 - - HGNC:23078|Ensembl:ENSG00000053702|HPRD:14839|Vega:OTTHUMG00000130616 12 12p13.33 nuclear receptor interacting protein 2 protein-coding NRIP2 nuclear receptor interacting protein 2 O nuclear receptor-interacting protein 2 20121230 -9606 83715 ESPN LP2654 DFNB36 HGNC:13281|MIM:606351|Ensembl:ENSG00000187017|HPRD:06962|Vega:OTTHUMG00000000753 1 1p36.31 espin protein-coding ESPN espin O autosomal recessive deafness type 36 protein|ectoplasmic specialization protein 20121230 -9606 83716 CRISPLD2 UNQ2914/PRO1156/PRO9783 CRISP11|LCRISP2 HGNC:25248|MIM:612434|Ensembl:ENSG00000103196|HPRD:13186|Vega:OTTHUMG00000137644 16 16q24.1 cysteine-rich secretory protein LCCL domain containing 2 protein-coding CRISPLD2 cysteine-rich secretory protein LCCL domain containing 2 O CRISP-11|LCCL domain containing cysteine-rich secretory protein 2|LCCL domain-containing cysteine-rich secretory protein 2|cysteine-rich secretory protein 11|cysteine-rich secretory protein LCCL domain-containing 2 20121230 -9606 83719 YPEL3 FKSG5 - HGNC:18327|MIM:609724|Ensembl:ENSG00000090238|HPRD:15683|Vega:OTTHUMG00000176853 16 16p11.2 yippee-like 3 (Drosophila) protein-coding YPEL3 yippee-like 3 (Drosophila) O protein yippee-like 3 20121230 -9606 83723 FAM57B FP1188 - HGNC:25295|Ensembl:ENSG00000149926|HPRD:13156|Vega:OTTHUMG00000132105 16 16p11.2 family with sequence similarity 57, member B protein-coding FAM57B family with sequence similarity 57, member B O protein FAM57B 20121230 -9606 83729 INHBE - - HGNC:24029|MIM:612031|Ensembl:ENSG00000139269|HPRD:11047|Vega:OTTHUMG00000169995 12 12q13.3 inhibin, beta E protein-coding INHBE inhibin, beta E O activin beta E|activin beta-E chain|inhibin beta E chain 20121230 -9606 83732 RIOK1 RP11-288G3.1 AD034|RRP10|bA288G3.1 HGNC:18656|Ensembl:ENSG00000124784|HPRD:17978|Vega:OTTHUMG00000014207 6 6p24.3 RIO kinase 1 protein-coding RIOK1 RIO kinase 1 O serine/threonine-protein kinase RIO1 20121230 -9606 83733 SLC25A18 - GC2 HGNC:10988|MIM:609303|Ensembl:ENSG00000182902|HPRD:15355|Vega:OTTHUMG00000150089 22 22q11.2 solute carrier family 25 (glutamate carrier), member 18 protein-coding SLC25A18 solute carrier family 25 (glutamate carrier), member 18 O GC-2|glutamate/H(+) symporter 2|mitochondrial glutamate carrier 2|solute carrier family 25 (mitochondrial carrier), member 18|solute carrier family 25 member 18 20121230 -9606 83734 ATG10 PP12616 APG10|APG10L|pp12616 HGNC:20315|MIM:610800|Ensembl:ENSG00000152348|HPRD:16497|Vega:OTTHUMG00000119041 5 5q14.1 autophagy related 10 protein-coding ATG10 autophagy related 10 O ATG10 autophagy related 10 homolog|autophagy-related protein 10|ubiquitin-like-conjugating enzyme ATG10 20121230 -9606 83737 ITCH - AIF4|AIP4|NAPP1|dJ468O1.1 HGNC:13890|MIM:606409|Ensembl:ENSG00000078747|Vega:OTTHUMG00000032300 20 20q11.22 itchy E3 ubiquitin protein ligase protein-coding ITCH itchy E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase Itchy homolog|NFE2-associated polypeptide 1|atrophin-1 interacting protein 4|dJ468O1.1 (atrophin 1 interacting protein 4 (AIP4))|itchy E3 ubiquitin protein ligase homolog 20121230 -9606 83740 H2AFB3 - H2ABBD|H2AFB HGNC:14455|MIM:300445|Ensembl:ENSG00000185978|Vega:OTTHUMG00000022670 X Xq28 H2A histone family, member B3 protein-coding H2AFB3 H2A histone family, member B3 O H2A Barr body-deficient|H2A.Bbd|histone H2A-Bbd type 2/3|histone variant H2A, Barr-body deficient 20121230 -9606 83741 TFAP2D - TFAP2BL1 HGNC:15581|MIM:610161|Ensembl:ENSG00000008197|HPRD:11627|Vega:OTTHUMG00000014832 6 6p12.1 transcription factor AP-2 delta (activating enhancer binding protein 2 delta) protein-coding TFAP2D transcription factor AP-2 delta (activating enhancer binding protein 2 delta) O AP-2 like|AP2-delta|activating enhancer binding protein 2 beta-like 1|activating enhancer-binding protein 2-delta|transcription factor AP-2 beta (activating enhancer binding protein 2 beta)-like 1|transcription factor AP-2 beta (activating enhancer-binding protein 2 beta)-like 1|transcription factor AP-2-beta-like 1|transcription factor AP-2-delta 20121230 -9606 83742 MARVELD1 - GB14|MARVD1|MRVLDC1|RP11-548K23.8|bA548K23.8 HGNC:28674|Ensembl:ENSG00000155254|HPRD:14364|Vega:OTTHUMG00000018865 10 10q24.2 MARVEL domain containing 1 protein-coding MARVELD1 MARVEL domain containing 1 O MARVEL (membrane-associating) domain containing 1|MARVEL domain-containing protein 1|putative MARVEL domain-containing protein 1 20121230 -9606 83743 GRWD1 - CDW4|GRWD|RRB1|WDR28 HGNC:21270|MIM:610597|Ensembl:ENSG00000105447|HPRD:11013 19 19q13.33 glutamate-rich WD repeat containing 1 protein-coding GRWD1 glutamate-rich WD repeat containing 1 O CUL4- and DDB1-associated WDR protein 4|WD repeat domain 28|glutamate rich WD repeat protein GRWD|glutamate-rich WD repeat-containing protein 1|regulator of ribosome biogenesis 1 homolog 20121230 -9606 83744 ZNF484 RP11-526D8.9 BA526D8.4 HGNC:23385|Ensembl:ENSG00000127081|HPRD:18346|Vega:OTTHUMG00000020236 9 9q22.31 zinc finger protein 484 protein-coding ZNF484 zinc finger protein 484 O KRAB box containing C2H2 type zinc finger bA526D8.4 20121230 -9606 83746 L3MBTL2 RP4-756G23.4 H-l(3)mbt-l|L3MBT HGNC:18594|MIM:611865|Ensembl:ENSG00000100395|HPRD:13954|Vega:OTTHUMG00000150942 22 22q13.31-q13.33 l(3)mbt-like 2 (Drosophila) protein-coding L3MBTL2 l(3)mbt-like 2 (Drosophila) O H-l(3)mbt-like protein 2|L(3)mbt-like protein 2|lethal(3)malignant brain tumor-like protein 2 20121230 -9606 83747 C20orf57 RP11-243J16.11-009 bA243J16.5 HGNC:16190 20 20q11.21 chromosome 20 open reading frame 57 unknown C20orf57 chromosome 20 open reading frame 57 O - 20121216 -9606 83752 LONP2 - LONP|LONPL HGNC:20598|Ensembl:ENSG00000102910|HPRD:07491|Vega:OTTHUMG00000133144 16 16q12.1 lon peptidase 2, peroxisomal protein-coding LONP2 lon peptidase 2, peroxisomal O lon protease 2|lon protease homolog 2, peroxisomal|lon protease-like protein 2|peroxisomal LON protease like|peroxisomal Lon protease homolog 2 20121230 -9606 83755 KRTAP4-12 - KAP4.12|KRTAP4.12 HGNC:16776|Ensembl:ENSG00000213416|HPRD:13941|Vega:OTTHUMG00000133632 17 17q12-q21 keratin associated protein 4-12 protein-coding KRTAP4-12 keratin associated protein 4-12 O keratin-associated protein 4-12|keratin-associated protein 4.12|ultrahigh sulfur keratin-associated protein 4.12 20121230 -9606 83756 TAS1R3 - T1R3 HGNC:15661|MIM:605865|Ensembl:ENSG00000169962|Vega:OTTHUMG00000003071 1 1p36.33 taste receptor, type 1, member 3 protein-coding TAS1R3 taste receptor, type 1, member 3 O sweet taste receptor T1R3|taste receptor type 1 member 3 20121230 -9606 83757 CYP2G2P - CYP2G2|CYP2GP2 HGNC:15653 19 19q13.2 cytochrome P450, family 2, subfamily G, polypeptide 2 pseudogene pseudo CYP2G2P cytochrome P450, family 2, subfamily G, polypeptide 2 pseudogene O - 20121230 -9606 83758 RBP5 - CRBP-III|CRBP3|CRBPIII HGNC:15847|MIM:611866|Ensembl:ENSG00000139194|HPRD:17961|Vega:OTTHUMG00000168165 12 12p13.31 retinol binding protein 5, cellular protein-coding RBP5 retinol binding protein 5, cellular O HRBPiso|cellular retinol-binding protein III|putative cellular retinol-binding protein CRBP III|retinol-binding protein 5|retinol-binding protein 5, cellular 20121230 -9606 83759 RBM4B - RBM30|RBM4L|ZCCHC15|ZCRB3B HGNC:28842|Ensembl:ENSG00000173914|HPRD:15230|Vega:OTTHUMG00000167243 11 11q13 RNA binding motif protein 4B protein-coding RBM4B RNA binding motif protein 4B O RNA binding motif protein 30|RNA-binding motif protein 30|RNA-binding motif protein 4B|RNA-binding protein 30|RNA-binding protein 4B|zinc finger CCHC-type and RNA binding motif 3B 20121230 -9606 83786 FRMD8 FKSG44 - HGNC:25462|Ensembl:ENSG00000126391|HPRD:13326|Vega:OTTHUMG00000166275 11 11q13 FERM domain containing 8 protein-coding FRMD8 FERM domain containing 8 O FERM domain-containing protein 8|FKSG44 20121230 -9606 83787 ARMC10 PSEC0198 PNAS-112|PNAS112|SVH HGNC:21706|MIM:611864|Ensembl:ENSG00000170632|HPRD:18133|Vega:OTTHUMG00000157201 7 7q22.1 armadillo repeat containing 10 protein-coding ARMC10 armadillo repeat containing 10 O armadillo repeat-containing protein 10|specific splicing variant involved in hepatocarcinogenesis|splicing variant involved in hepatocarcinogenesis protein 20121230 -9606 83795 KCNK16 - K2p16.1|TALK-1|TALK1 HGNC:14464|MIM:607369|Ensembl:ENSG00000095981|HPRD:09565|Vega:OTTHUMG00000014645 6 6p21.2-p21.1 potassium channel, subfamily K, member 16 protein-coding KCNK16 potassium channel, subfamily K, member 16 O 2P domain potassium channel Talk-1|TWIK-related alkaline pH-activated K(+) channel 1|pancreatic potassium channel Talk-1|potassium channel subfamily K member 16 20121230 -9606 83844 USP26 RP1-97K10.1 - HGNC:13485|MIM:300309|Ensembl:ENSG00000134588|HPRD:02255|Vega:OTTHUMG00000022429 X Xq26.2 ubiquitin specific peptidase 26 protein-coding USP26 ubiquitin specific peptidase 26 O deubiquitinating enzyme 26|ubiquitin carboxyl-terminal hydrolase 26|ubiquitin specific protease 26|ubiquitin thioesterase 26|ubiquitin thiolesterase 26|ubiquitin-specific processing protease 26|ubiquitin-specific-processing protease 26 20121230 -9606 83849 SYT15 RP11-38L15.7 CHR10SYT|sytXV HGNC:17167|MIM:608081|Ensembl:ENSG00000204176|HPRD:12161|Vega:OTTHUMG00000018103 10 10q11.1 synaptotagmin XV protein-coding SYT15 synaptotagmin XV O chr10 synaptotagmin|synaptotagmin XV-a|synaptotagmin-15 20121230 -9606 83850 ESYT3 - CHR3SYT|E-Syt3|FAM62C HGNC:24295|Ensembl:ENSG00000158220|HPRD:13054|Vega:OTTHUMG00000147354 3 3q22.3 extended synaptotagmin-like protein 3 protein-coding ESYT3 extended synaptotagmin-like protein 3 O chr3 synaptotagmin|extended synaptotagmin-3|family with sequence similarity 62 (C2 domain containing), member C 20121230 -9606 83851 SYT16 - CHR14SYT|SYT14L|Strep14|syt14r|yt14r HGNC:23142|MIM:610950|Ensembl:ENSG00000139973|HPRD:15461|Vega:OTTHUMG00000171106 14 14q23.2 synaptotagmin XVI protein-coding SYT16 synaptotagmin XVI O chr14 synaptotagmin|synaptotagmin 14-like protein|synaptotagmin XIV-related protein|synaptotagmin-16 20121230 -9606 83852 SETDB2 - C13orf4|CLLD8|CLLL8|KMT1F HGNC:20263|MIM:607865|Ensembl:ENSG00000136169|HPRD:09712|Vega:OTTHUMG00000016918 13 13q14 SET domain, bifurcated 2 protein-coding SETDB2 SET domain, bifurcated 2 O chronic lymphocytic leukemia deletion region 8|chronic lymphocytic leukemia deletion region gene 8 protein|histone-lysine N-methyltransferase SETDB2|lysine N-methyltransferase 1F 20121230 -9606 83853 ROPN1L - ASP|RSPH11 HGNC:24060|MIM:611756|Ensembl:ENSG00000145491|HPRD:17986|Vega:OTTHUMG00000090507 5 5p15.2 rhophilin associated tail protein 1-like protein-coding ROPN1L rhophilin associated tail protein 1-like O AKAP-associated sperm protein|ROPN1-like protein|radial spoke head 11 homolog|ropporin 1-like|ropporin-1-like protein 20121230 -9606 83854 ANGPTL6 UNQ152/PRO178 AGF|ARP5 HGNC:23140|MIM:609336|Ensembl:ENSG00000130812|HPRD:12453|Vega:OTTHUMG00000180395 19 19p13.2 angiopoietin-like 6 protein-coding ANGPTL6 angiopoietin-like 6 O angiopoietin-like protein 6|angiopoietin-related growth factor|angiopoietin-related protein 5|angiopoietin-related protein 6 20121230 -9606 83855 KLF16 - BTEB4|DRRF|NSLP2 HGNC:16857|MIM:606139|Ensembl:ENSG00000129911|HPRD:12090|Vega:OTTHUMG00000179994 19 19p13.3 Kruppel-like factor 16 protein-coding KLF16 Kruppel-like factor 16 O BTE-binding protein 4|Krueppel-like factor 16|basic transcription element binding protein 4|basic transcription element-binding protein 4|dopamine receptor regulating factor|novel Sp1-like zinc finger transcription factor 2|transcription factor BTEB4|transcription factor NSLP2 20121230 -9606 83856 FSD1L RP11-235C23.3 CCDC10|CSDUFD1|FSD1CL|FSD1NL|MIR1 HGNC:13753|MIM:609829|Ensembl:ENSG00000106701|HPRD:14641|HPRD:16688|Vega:OTTHUMG00000020426 9 9q31 fibronectin type III and SPRY domain containing 1-like protein-coding FSD1L fibronectin type III and SPRY domain containing 1-like O FSD1 C-terminal like|FSD1 N-terminal like|FSD1 N-terminal-like protein|FSD1-like protein|coiled-coil domain containing 10|coiled-coil domain-containing protein 10|cystatin and DUF19 domain containing 1 20121230 -9606 83857 TMTC1 ARG99 OLF|TMTC1A HGNC:24099|Ensembl:ENSG00000133687|HPRD:12472|Vega:OTTHUMG00000169324 12 12p11.22 transmembrane and tetratricopeptide repeat containing 1 protein-coding TMTC1 transmembrane and tetratricopeptide repeat containing 1 O transmembrane and TPR repeat-containing protein 1|transmembrane and tetratricopeptide repeat containing 1A 20121230 -9606 83858 ATAD3B RP4-628J24.3 AAA-TOB3|TOB3 HGNC:24007|MIM:612317|Ensembl:ENSG00000160072|HPRD:10679|Vega:OTTHUMG00000000577 1 1p36.33 ATPase family, AAA domain containing 3B protein-coding ATAD3B ATPase family, AAA domain containing 3B O AAA-ATPase TOB3|ATPase family AAA domain-containing protein 3B 20121230 -9606 83860 TAF3 RP11-379F12.5 TAF140|TAFII-140|TAFII140 HGNC:17303|MIM:606576|Ensembl:ENSG00000165632|Vega:OTTHUMG00000017643 10 10p15.1 TAF3 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 140kDa protein-coding TAF3 TAF3 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 140kDa O 140 kDa TATA box-binding protein-associated factor|RNA polymerase II transcription factor TAFII140|TAF(II)140|TBP-associated factor 3|transcription initiation factor TFIID 140 kDa subunit|transcription initiation factor TFIID subunit 3 20121230 -9606 83861 RSPH3 - RSHL2|RSP3|dJ111C20.1 HGNC:21054|Ensembl:ENSG00000130363|HPRD:15279|Vega:OTTHUMG00000015924 6 6q25.3 radial spoke 3 homolog (Chlamydomonas) protein-coding RSPH3 radial spoke 3 homolog (Chlamydomonas) O radial spoke head 3 homolog|radial spoke head protein 3 homolog|radial spoke head-like protein 2|radial spoke protein 3|radial spokehead-like 2 20121230 -9606 83862 TMEM120A - NET29|TMPIT HGNC:21697|HPRD:15543 7 7q11.23 transmembrane protein 120A protein-coding TMEM120A transmembrane protein 120A O transmembrane protein induced by tumor necrosis factor alpha 20121230 -9606 83863 TTTY5 - LINC00126|NCRNA00126|TTY5 HGNC:16482|MIM:400038|HPRD:15587 Y Yq11.223 testis-specific transcript, Y-linked 5 (non-protein coding) miscRNA TTTY5 testis-specific transcript, Y-linked 5 (non-protein coding) O - 20121230 -9606 83864 TTTY9A - NCRNA00131|TTTY9|TTY9 HGNC:18490 Y Yq11.222 testis-specific transcript, Y-linked 9A (non-protein coding) miscRNA TTTY9A testis-specific transcript, Y-linked 9A (non-protein coding) O - 20121230 -9606 83866 TTTY11 - NCRNA00134|TTY11 HGNC:18492 Y Yp11.2 testis-specific transcript, Y-linked 11 (non-protein coding) miscRNA TTTY11 testis-specific transcript, Y-linked 11 (non-protein coding) O - 20121230 -9606 83867 TTTY12 - NCRNA00135|TTY11|TTY12 HGNC:18493 Y Yp11.2 testis-specific transcript, Y-linked 12 (non-protein coding) miscRNA TTTY12 testis-specific transcript, Y-linked 12 (non-protein coding) O - 20121230 -9606 83868 TTTY13 - NCRNA00136|TTY13 HGNC:18494 Y Yq11.223 testis-specific transcript, Y-linked 13 (non-protein coding) miscRNA TTTY13 testis-specific transcript, Y-linked 13 (non-protein coding) O - 20121230 -9606 83869 TTTY14 - CYorf14|NCRNA00137|NCRNA00185|PRO2834|TTY14 HGNC:18495 Y Yq11.222 testis-specific transcript, Y-linked 14 (non-protein coding) miscRNA TTTY14 testis-specific transcript, Y-linked 14 (non-protein coding) O - 20121230 -9606 83871 RAB34 - RAB39|RAH HGNC:16519|MIM:610917|Ensembl:ENSG00000109113|HPRD:06701|Vega:OTTHUMG00000132680 17 17q11.2 RAB34, member RAS oncogene family protein-coding RAB34 RAB34, member RAS oncogene family O ras-related protein Rab-34|ras-related protein Rab-39|ras-related protein Rah 20121230 -9606 83872 HMCN1 GS1-174L6.1 ARMD1|FBLN6|FIBL-6|FIBL6 HGNC:19194|MIM:608548|Ensembl:ENSG00000143341|HPRD:06509|Vega:OTTHUMG00000059337 1 1q25.3-q31.1 hemicentin 1 protein-coding HMCN1 hemicentin 1 O fibulin-6|hemicentin-1 20121230 -9606 83873 GPR61 - BALGR|GPCR3 HGNC:13300|MIM:606916|Ensembl:ENSG00000156097|HPRD:06077|Vega:OTTHUMG00000011633 1 1p13.3 G protein-coupled receptor 61 protein-coding GPR61 G protein-coupled receptor 61 O biogenic amine receptor-like G-protein coupled receptor|biogenic amine receptor-like GPCR|probable G-protein coupled receptor 61 20121230 -9606 83874 TBC1D10A - EPI64|TBC1D10|dJ130H16.1|dJ130H16.2 HGNC:23609|MIM:610020|Ensembl:ENSG00000099992|HPRD:18162|Vega:OTTHUMG00000150924 22 22q12.2 TBC1 domain family, member 10A protein-coding TBC1D10A TBC1 domain family, member 10A O EBP50-PDX interactor of 64 kDa|EBP50-PDZ interactor of 64 kD|TBC1 domain family member 10A|rab27A-GAP-alpha 20121230 -9606 83875 BCO2 - B-DIOX-II|BCDO2 HGNC:18503|MIM:611740|Ensembl:ENSG00000197580|HPRD:12522|Vega:OTTHUMG00000167155 11 11q22.3-q23.1 beta-carotene oxygenase 2 protein-coding BCO2 beta-carotene oxygenase 2 O b,b-carotene-9',10'-dioxygenase|beta,beta-carotene 9',10'-dioxygenase variant 1|beta,beta-carotene 9',10'-oxygenase|beta-carotene 9',10' oxygenase|beta-carotene dioxygenase 2 20121230 -9606 83876 MRO - B29|C18orf3 HGNC:24121|MIM:608080|Ensembl:ENSG00000134042|HPRD:16276|Vega:OTTHUMG00000132692 18 18q21 maestro protein-coding MRO maestro O beside the Ma29 deletion|male-specific transcription in the developing reproductive organs|protein maestro 20121230 -9606 83877 TM2D2 - BLP1 HGNC:24127|MIM:610081|Ensembl:ENSG00000169490|HPRD:16553|Vega:OTTHUMG00000164098 8 8p11.22 TM2 domain containing 2 protein-coding TM2D2 TM2 domain containing 2 O BBP-like protein 1|TM2 domain-containing protein 2|beta-amyloid-binding protein-like protein 1 20121230 -9606 83878 USHBP1 - AIEBP|MCC2 HGNC:24058|MIM:611810|Ensembl:ENSG00000130307|HPRD:18276 19 19p13 Usher syndrome 1C binding protein 1 protein-coding USHBP1 Usher syndrome 1C binding protein 1 O AIE-75 binding protein protein|AIE-75-binding protein|MCC-2|USH1C-binding protein 1|Usher syndrome type-1C protein-binding protein 1|mutated in colon cancer protein 2 20121230 -9606 83879 CDCA7 - JPO1 HGNC:14628|MIM:609937|Ensembl:ENSG00000144354|HPRD:09874|Vega:OTTHUMG00000132296 2 2q31 cell division cycle associated 7 protein-coding CDCA7 cell division cycle associated 7 O c-Myc target JPO1|cell division cycle associated protein 7|cell division cycle-associated protein 7 20121230 -9606 83880 EIF3FP2 - IFP38 HGNC:28863|HPRD:17134 13 13p13 eukaryotic translation initiation factor 3, subunit F pseudogene 2 pseudo EIF3FP2 eukaryotic translation initiation factor 3, subunit F pseudogene 2 O - 20121230 -9606 83881 MIXL1 - MILD1|MIX|MIXL HGNC:13363|MIM:609852|Ensembl:ENSG00000185155|HPRD:10086|Vega:OTTHUMG00000037558 1 1q42.12 Mix paired-like homeobox protein-coding MIXL1 Mix paired-like homeobox O MIX1 homeobox-like protein 1|Mix-like homeobox protein 1|hMix|homeobox protein MIXL1|homeodomain protein MIX|mix.1 homeobox-like protein 20121230 -9606 83882 TSPAN10 - OCSP HGNC:29942|Ensembl:ENSG00000182612|HPRD:17655|Vega:OTTHUMG00000178037 17 17q25.3 tetraspanin 10 protein-coding TSPAN10 tetraspanin 10 O oculospanin|tetraspanin-10|tspan-10 20121230 -9606 83884 SLC25A2 - ORC2|ORNT2 HGNC:22921|MIM:608157|Ensembl:ENSG00000120329|HPRD:12180|Vega:OTTHUMG00000129604 5 5q31 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 2 protein-coding SLC25A2 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 2 O mitochondrial ornithine transporter 2|ornithine transporter 2|solute carrier family 25 member 2 20121230 -9606 83886 PRSS27 UNQ1884/PRO4327 CAPH2|MPN HGNC:15475|MIM:608018|Ensembl:ENSG00000172382|HPRD:07451|Vega:OTTHUMG00000128929 16 16p13.3 protease, serine 27 protein-coding PRSS27 protease, serine 27 O channel-activating protease 2|marapsin|pancreasin|serine protease 27 20121230 -9606 83887 TTLL2 - C6orf104|NYD-TSPG|dJ366N23.3 HGNC:21211|Ensembl:ENSG00000120440|HPRD:18240|Vega:OTTHUMG00000016023 6 6q27 tubulin tyrosine ligase-like family, member 2 protein-coding TTLL2 tubulin tyrosine ligase-like family, member 2 O probable tubulin polyglutamylase TTLL2|testis-specific protein NYD-TSPG|tubulin--tyrosine ligase-like protein 2 20121230 -9606 83888 FGFBP2 UNQ425/PRO1065 HBP17RP|KSP37 HGNC:29451|MIM:607713|Ensembl:ENSG00000137441|HPRD:07413|Vega:OTTHUMG00000128513 4 4p16 fibroblast growth factor binding protein 2 protein-coding FGFBP2 fibroblast growth factor binding protein 2 O 37 kDa killer-specific secretory protein|FGF-BP2|FGF-binding protein 2|FGFBP-2|HBp17-RP|HBp17-related protein|fibroblast growth factor-binding protein 2|killer-specific secretory protein of 37 kDa 20121230 -9606 83889 WDR87 - NYD-SP11 HGNC:29934|Ensembl:ENSG00000171804|Vega:OTTHUMG00000048187 19 19q13.13 WD repeat domain 87 protein-coding WDR87 WD repeat domain 87 O WD repeat-containing protein 87|testis development protein NYD-SP11 20121230 -9606 83890 SPATA9 - NYD-SP16 HGNC:22988|MIM:608039|Ensembl:ENSG00000145757|HPRD:12155|Vega:OTTHUMG00000121169 5 5q15 spermatogenesis associated 9 protein-coding SPATA9 spermatogenesis associated 9 O spermatogenesis-associated protein 9|testis development protein NYD-SP16 20121230 -9606 83891 SNX25 MSTP043 SBBI31 HGNC:21883|Ensembl:ENSG00000109762|HPRD:15414|Vega:OTTHUMG00000160475 4 4q35.1 sorting nexin 25 protein-coding SNX25 sorting nexin 25 O sorting nexin-25 20121230 -9606 83892 KCTD10 MSTP028 ULRO61|hBACURD3 HGNC:23236|MIM:613421|Ensembl:ENSG00000110906|HPRD:13762|Vega:OTTHUMG00000169253 12 12q24.11 potassium channel tetramerisation domain containing 10 protein-coding KCTD10 potassium channel tetramerisation domain containing 10 O BTB/POZ domain-containing adapter for CUL3-mediated RhoA degradation protein 3|BTB/POZ domain-containing protein KCTD10|potassium channel tetramerization domain-containing protein 10 20121230 -9606 83893 SPATA16 - NYD-SP12|SPGF6 HGNC:29935|MIM:609856|Ensembl:ENSG00000144962|HPRD:11408|Vega:OTTHUMG00000156865 3 3q26.31 spermatogenesis associated 16 protein-coding SPATA16 spermatogenesis associated 16 O spermatogenesis-associated protein 16|testis development protein NYD-SP12|testis-specific Golgi protein 20121230 -9606 83894 TTC29 - NYD-SP14|TBPP2A HGNC:29936|Ensembl:ENSG00000137473|HPRD:14866|Vega:OTTHUMG00000162047 4 4q31.22 tetratricopeptide repeat domain 29 protein-coding TTC29 tetratricopeptide repeat domain 29 O TPR repeat protein 29|testis development protein NYD-SP14|tetratricopeptide repeat protein 29 20121230 -9606 83895 KRTAP1-5 - KAP1.5|KRTAP1.5 HGNC:16777|MIM:608822|Ensembl:ENSG00000221852|HPRD:12306|Vega:OTTHUMG00000133587 17 17q12-q21 keratin associated protein 1-5 protein-coding KRTAP1-5 keratin associated protein 1-5 O high sulfur keratin-associated protein 1.5|keratin associated protein 1.5|keratin-associated protein 1-5|keratin-associated protein 1.5 20121230 -9606 83896 KRTAP3-1 - KAP3.1|KRTAP3.1 HGNC:16778|Ensembl:ENSG00000212901|HPRD:13937|Vega:OTTHUMG00000133595 17 17q12-q21 keratin associated protein 3-1 protein-coding KRTAP3-1 keratin associated protein 3-1 O high sulfur keratin-associated protein 3.1|keratin-associated protein 3-1|keratin-associated protein 3.1 20121230 -9606 83897 KRTAP3-2 - KAP3.2|KRTAP3.2 HGNC:16779|Ensembl:ENSG00000212900|HPRD:13938|Vega:OTTHUMG00000133581 17 17q12-q21 keratin associated protein 3-2 protein-coding KRTAP3-2 keratin associated protein 3-2 O high sulfur keratin-associated protein 3.2|keratin associated protein 3.2|keratin-associated protein 3-2|keratin-associated protein 3.2 20121230 -9606 83899 KRTAP9-2 - KAP9.2|KRTAP9.2 HGNC:16926|Ensembl:ENSG00000239886|HPRD:13949|Vega:OTTHUMG00000133609 17 17q12-q21 keratin associated protein 9-2 protein-coding KRTAP9-2 keratin associated protein 9-2 O keratin-associated protein 9-2|keratin-associated protein 9.2|ultrahigh sulfur keratin-associated protein 9.2 20121230 -9606 83900 KRTAP9-3 - KAP9.3|KRTAP9.3 HGNC:16927|Ensembl:ENSG00000204873|HPRD:13950|Vega:OTTHUMG00000133427 17 17q12-q21 keratin associated protein 9-3 protein-coding KRTAP9-3 keratin associated protein 9-3 O keratin associated protein 9.3|keratin-associated protein 9-3|keratin-associated protein 9.3|ultrahigh sulfur keratin-associated protein 9.3 20121230 -9606 83901 KRTAP9-8 - KAP9.8|KRTAP9.8 HGNC:17231|Ensembl:ENSG00000187272|Vega:OTTHUMG00000133604 17 17q12-q21 keratin associated protein 9-8 protein-coding KRTAP9-8 keratin associated protein 9-8 O keratin associated protein 9.8|keratin-associated protein 9-8|keratin-associated protein 9.8|ultrahigh sulfur keratin-associated protein 9.8 20121230 -9606 83902 KRTAP17-1 - KAP17.1|KRTAP16.1|KRTAP17.1 HGNC:18917|Ensembl:ENSG00000186860|HPRD:13935|Vega:OTTHUMG00000133433 17 17q12-q21 keratin associated protein 17-1 protein-coding KRTAP17-1 keratin associated protein 17-1 O keratin associated protein 16.1|keratin-associated protein 16.1|keratin-associated protein 17-1 20121230 -9606 83903 GSG2 - HASPIN HGNC:19682|MIM:609240|Ensembl:ENSG00000177602|HPRD:17083|Vega:OTTHUMG00000090703 17 17p13 germ cell associated 2 (haspin) protein-coding GSG2 germ cell associated 2 (haspin) O H-haspin|germ cell-specific gene 2 protein|haploid germ cell-specific nuclear protein kinase|serine/threonine-protein kinase haspin 20121230 -9606 83930 STARD3NL UNQ855/PRO1864 MENTHO HGNC:19169|MIM:611759|Ensembl:ENSG00000010270|HPRD:18117|Vega:OTTHUMG00000023659 7 7p14-p13 STARD3 N-terminal like protein-coding STARD3NL STARD3 N-terminal like O MLN64 N-terminal domain homolog|STARD3 N-terminal-like protein 20121230 -9606 83931 STK40 - RP11-268J15.4|SHIK|SgK495 HGNC:21373|MIM:609437|Ensembl:ENSG00000196182|HPRD:11359|Vega:OTTHUMG00000008238 1 1p34.3 serine/threonine kinase 40 protein-coding STK40 serine/threonine kinase 40 O 2310004N11Rik|SINK-homologous serine/threonine-protein kinase|Ser/Thr-like kinase|serine/threonine-protein kinase 40|sugen kinase 495 20121230 -9606 83932 SPRTN RP5-876B10.3 C1orf124|DDDL1880|DVC1|PRO4323|Spartan|dJ876B10.3 HGNC:25356|Ensembl:ENSG00000010072|HPRD:13164|Vega:OTTHUMG00000038022 1 1q42.12-q43 SprT-like N-terminal domain protein-coding SPRTN SprT-like N-terminal domain O DNA damage-targeting VCP (p97) adaptor|SprT-like domain at the N terminus|protein with SprT-like domain at the N terminus|sprT-like domain-containing protein Spartan|zinc finger RAD18 domain-containing protein C1orf124 20121230 -9606 83933 HDAC10 RP3-402G11.7 HD10 HGNC:18128|MIM:608544|Ensembl:ENSG00000100429|HPRD:09407|Vega:OTTHUMG00000044647 22 22q13.31 histone deacetylase 10 protein-coding HDAC10 histone deacetylase 10 O - 20121230 -9606 83935 TMEM133 AD031 - HGNC:24033|Ensembl:ENSG00000170647|HPRD:12425|Vega:OTTHUMG00000167577 11 11q22.1 transmembrane protein 133 protein-coding TMEM133 transmembrane protein 133 O - 20121230 -9606 83937 RASSF4 RP11-285G1.4 AD037 HGNC:20793|MIM:610559|Ensembl:ENSG00000107551|HPRD:15219|Vega:OTTHUMG00000018060 10 10q11.21 Ras association (RalGDS/AF-6) domain family member 4 protein-coding RASSF4 Ras association (RalGDS/AF-6) domain family member 4 O Ras association (RalGDS/AF-6) domain family 4|Ras association domain family 4|ras association domain-containing protein 4|tumor suppressor RASSF4 20121230 -9606 83938 C10orf11 CDA017 - HGNC:23405|MIM:614537|Ensembl:ENSG00000148655|HPRD:12560|Vega:OTTHUMG00000018532 10 10q22.3 chromosome 10 open reading frame 11 protein-coding C10orf11 chromosome 10 open reading frame 11 O leucine-rich repeat-containing protein C10orf11 20121230 -9606 83939 EIF2A CDA02 EIF-2A|MST089|MSTP004|MSTP089 HGNC:3254|MIM:609234|Ensembl:ENSG00000144895|HPRD:11739|Vega:OTTHUMG00000159775 3 3q25.1 eukaryotic translation initiation factor 2A, 65kDa protein-coding EIF2A eukaryotic translation initiation factor 2A, 65kDa O 65 kDa eukaryotic translation initiation factor 2A|eukaryotic translation initiation factor 2A 20121230 -9606 83940 TATDN1 CDA11 - HGNC:24220|Ensembl:ENSG00000147687|HPRD:11621|Vega:OTTHUMG00000165068 8 8q24.13 TatD DNase domain containing 1 protein-coding TATDN1 TatD DNase domain containing 1 O hepatocarcinoma high expression protein|putative deoxyribonuclease TATDN1 20121230 -9606 83941 TM2D1 - BBP HGNC:24142|MIM:610080|Ensembl:ENSG00000162604|HPRD:16540|Vega:OTTHUMG00000008466 1 1p31.3 TM2 domain containing 1 protein-coding TM2D1 TM2 domain containing 1 O TM2 domain-containing protein 1|beta-amyloid-binding protein|hBBP 20121230 -9606 83942 TSSK1B FKSG81 SPOGA4|STK22D|TSK1|TSSK1 HGNC:14968|MIM:610709|Ensembl:ENSG00000212122|HPRD:11610|Vega:OTTHUMG00000128835 5 5q22.2 testis-specific serine kinase 1B protein-coding TSSK1B testis-specific serine kinase 1B O TSK-1|TSSK-1|serine/threonine kinase 22D (spermiogenesis associated)|serine/threonine kinase FKSG81|serine/threonine-protein kinase 22A|spermiogenesis associated 4|testis-specific kinase 1|testis-specific serine kinase 1|testis-specific serine/threonine-protein kinase 1 20121230 -9606 83943 IMMP2L - IMP2|IMP2-LIKE HGNC:14598|MIM:605977|Ensembl:ENSG00000184903|HPRD:07297|Vega:OTTHUMG00000155023 7 7q31 IMP2 inner mitochondrial membrane peptidase-like (S. cerevisiae) protein-coding IMMP2L IMP2 inner mitochondrial membrane peptidase-like (S. cerevisiae) O inner mitochondrial membrane peptidase 2 like|mitochondrial inner membrane protease subunit 2 20121230 -9606 83953 FCAMR FKSG87 CD351|FCA/MR HGNC:24692|MIM:605484|Ensembl:ENSG00000162897|HPRD:12020|Vega:OTTHUMG00000036579 1 1q32.1 Fc receptor, IgA, IgM, high affinity protein-coding FCAMR Fc receptor, IgA, IgM, high affinity O Fc alpha/mu receptor|high affinity immunoglobulin alpha and immunoglobulin mu Fc receptor|immunity related factor|receptor for Fc fragment of IgA and IgM 20121230 -9606 83955 NACAP1 FKSG17 - HGNC:24688 8 8q22.3 nascent-polypeptide-associated complex alpha polypeptide pseudogene 1 pseudo NACAP1 nascent-polypeptide-associated complex alpha polypeptide pseudogene 1 O - 20121230 -9606 83956 RACGAP1P - FKSG42 HGNC:24689|HPRD:13325 12 12q12 Rac GTPase activating protein 1 pseudogene pseudo RACGAP1P Rac GTPase activating protein 1 pseudogene O - 20121230 -9606 83957 FRMD8P1 - - HGNC:24690|HPRD:06511 X Xq12 FERM domain containing 8 pseudogene 1 pseudo FRMD8P1 FERM domain containing 8 pseudogene 1 O - 20121230 -9606 83959 SLC4A11 RP4-794I6.3 BTR1|CDPD1|CHED2|NABC1|dJ794I6.2 HGNC:16438|MIM:610206|Ensembl:ENSG00000088836|HPRD:15392|Vega:OTTHUMG00000031740 20 20p12 solute carrier family 4, sodium borate transporter, member 11 protein-coding SLC4A11 solute carrier family 4, sodium borate transporter, member 11 O bicarbonate transporter related protein 1|sodium bicarbonate transporter-like protein 11|sodium-coupled borate cotransporter 1|solute carrier family 4, sodium bicarbonate transporter-like, member 11 20121230 -9606 83982 IFI27L2 - FAM14A|ISG12B|TLH29 HGNC:19753|MIM:611319|Ensembl:ENSG00000119632|HPRD:13291|Vega:OTTHUMG00000171313 14 14q32.12 interferon, alpha-inducible protein 27-like 2 protein-coding IFI27L2 interferon, alpha-inducible protein 27-like 2 O ISG12(b) protein|family with sequence similarity 14, member A|interferon alpha-inducible protein 27-like protein 2|interferon-stimulated gene 12b protein|pIFI27-like protein 20121230 -9606 83983 TSSK6 FKSG82 CT72|SSTK|TSSK4 HGNC:30410|MIM:610712|Ensembl:ENSG00000178093|HPRD:15441|Vega:OTTHUMG00000182146 19 19p13.11 testis-specific serine kinase 6 protein-coding TSSK6 testis-specific serine kinase 6 O TSK-6|cancer/testis antigen 72|serine/threonine protein kinase SSTK|small serine/threonine kinase|testis-specific serine/threonine-protein kinase 6 20121230 -9606 83985 SPNS1 PP20300 HSpin1|LAT|PP2030|SPIN1|SPINL|nrs HGNC:30621|MIM:612583|Ensembl:ENSG00000169682|HPRD:11599|Vega:OTTHUMG00000131762 16 16p11.2 spinster homolog 1 (Drosophila) protein-coding SPNS1 spinster homolog 1 (Drosophila) O protein spinster homolog 1|spinster-like protein 1 20121230 -9606 83986 ITFG3 - C16orf9|gs19 HGNC:14163|Ensembl:ENSG00000167930|HPRD:12677|Vega:OTTHUMG00000060728 16 16p13.3 integrin alpha FG-GAP repeat containing 3 protein-coding ITFG3 integrin alpha FG-GAP repeat containing 3 O protein ITFG3 20121230 -9606 83987 CCDC8 - 3M3|PPP1R20|p90 HGNC:25367|MIM:614145|Ensembl:ENSG00000169515|HPRD:13009|Vega:OTTHUMG00000162348 19 19q13.32 coiled-coil domain containing 8 protein-coding CCDC8 coiled-coil domain containing 8 O coiled-coil domain-containing protein 8|protein phosphatase 1, regulatory subunit 20 20121230 -9606 83988 NCALD - - HGNC:7655|MIM:606722|Ensembl:ENSG00000104490|HPRD:09466|Vega:OTTHUMG00000164876 8 8q22.2 neurocalcin delta protein-coding NCALD neurocalcin delta O neurocalcin-delta 20121230 -9606 83989 FAM172A - C5orf21 HGNC:25365|Ensembl:ENSG00000113391|HPRD:13210|Vega:OTTHUMG00000131329 5 5q15 family with sequence similarity 172, member A protein-coding FAM172A family with sequence similarity 172, member A O protein FAM172A 20121230 -9606 83990 BRIP1 - BACH1|FANCJ|OF HGNC:20473|MIM:605882|Ensembl:ENSG00000136492|HPRD:05797|Vega:OTTHUMG00000179233 17 17q22.2 BRCA1 interacting protein C-terminal helicase 1 protein-coding BRIP1 BRCA1 interacting protein C-terminal helicase 1 O ATP-dependent RNA helicase BRIP1|BRCA1-associated C-terminal helicase 1|BRCA1-binding helicase-like protein BACH1|BRCA1/BRCA2-associated helicase 1|Fanconi anemia group J protein 20121230 -9606 83992 CTTNBP2 - C7orf8|CORTBP2|Orf4 HGNC:15679|MIM:609772|Ensembl:ENSG00000077063|HPRD:09890|Vega:OTTHUMG00000022880 7 7q31 cortactin binding protein 2 protein-coding CTTNBP2 cortactin binding protein 2 O cortactin-binding protein 2 20121230 -9606 83998 REG4 RP5-1042I8.1 GISP|REG-IV|RELP HGNC:22977|MIM:609846|Ensembl:ENSG00000134193|HPRD:17964|Vega:OTTHUMG00000012175 1 1p13.1-p12 regenerating islet-derived family, member 4 protein-coding REG4 regenerating islet-derived family, member 4 O REG-4|REG-like protein|gastrointestinal secretory protein|reg IV|regenerating gene type IV|regenerating islet-derived protein 4|regenerating islet-derived protein IV 20121230 -9606 83999 KREMEN1 CTA-57G9.2 KREMEN|KRM1 HGNC:17550|MIM:609898|Ensembl:ENSG00000183762|HPRD:11182|Vega:OTTHUMG00000030987 22 22q12.1 kringle containing transmembrane protein 1 protein-coding KREMEN1 kringle containing transmembrane protein 1 O dickkopf receptor|kremen protein 1|kringle domain-containing transmembrane protein 1|kringle-coding gene marking the eye and the nose|kringle-containing protein marking the eye and the nose 20121230 -9606 84000 TMPRSS13 - MSP|MSPL|MSPS|TMPRSS11 HGNC:29808|MIM:610050|Ensembl:ENSG00000137747|HPRD:07493|Vega:OTTHUMG00000166992 11 11q23 transmembrane protease, serine 13 protein-coding TMPRSS13 transmembrane protease, serine 13 O membrane-type mosaic serine protease|transmembrane protease serine 13|transmembrane protease, serine 11 20121230 -9606 84002 B3GNT5 - B3GN-T5|beta3Gn-T5 HGNC:15684|Ensembl:ENSG00000176597|HPRD:12511|Vega:OTTHUMG00000158436 3 3q28 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 protein-coding B3GNT5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 O BGnT-5|UDP-GlcNAc:beta-Gal beta-1,3-N-acetylglucosaminyltransferase 5|beta 1,3 N-acetyglucosaminyltransferase Lc3 synthase|beta-1,3-Gn-T5|beta-1,3-N-acetylglucosaminyltransferase 5|beta-1,3-N-acetylglucosaminyltransferase bGnT-5|lactosylceramide 1,3-N-acetyl-beta-D-glucosaminyltransferase|lactotriaosylceramide synthase|lc(3)Cer synthase|lc3 synthase 20121230 -9606 84033 OBSCN RP5-1139B12.1 ARHGEF30|UNC89 HGNC:15719|MIM:608616|Ensembl:ENSG00000154358|HPRD:08594|HPRD:10551|Vega:OTTHUMG00000039772 1 1q42.13 obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF protein-coding OBSCN obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF O obscurin|obscurin, myosin light chain kinase|obscurin-MLCK 20121230 -9606 84034 EMILIN2 - EMILIN-2|FOAP-10 HGNC:19881|MIM:608928|Ensembl:ENSG00000132205|HPRD:09937|Vega:OTTHUMG00000128525 18 18p11.3 elastin microfibril interfacer 2 protein-coding EMILIN2 elastin microfibril interfacer 2 O EMILIN-2|elastin microfibril interface-located protein 2|extracellular glycoprotein EMILIN-2 20121230 -9606 84054 PCDHB19P - PCDH-PSI5|PCDHB19 HGNC:14549 5 5q31 protocadherin beta 19 pseudogene pseudo PCDHB19P protocadherin beta 19 pseudogene O - 20121230 -9606 84055 PCDHGB9P - PSI6 HGNC:15688 5 5q31 protocadherin gamma subfamily B, 9 pseudogene pseudo PCDHGB9P protocadherin gamma subfamily B, 9 pseudogene O - 20121230 -9606 84056 KATNAL1 RP11-374F3.1 - HGNC:28361|MIM:614764|Ensembl:ENSG00000102781|HPRD:13753|Vega:OTTHUMG00000016665 13 13q12.3 katanin p60 subunit A-like 1 protein-coding KATNAL1 katanin p60 subunit A-like 1 O katanin p60 ATPase-containing subunit A-like 1|p60 katanin-like 1 20121230 -9606 84057 MND1 - GAJ HGNC:24839|MIM:611422|Ensembl:ENSG00000121211|HPRD:17025|Vega:OTTHUMG00000161523 4 4q31.3 meiotic nuclear divisions 1 homolog (S. cerevisiae) protein-coding MND1 meiotic nuclear divisions 1 homolog (S. cerevisiae) O homolog of yeast MND1|meiotic nuclear division protein 1 homolog 20121230 -9606 84058 WDR54 - - HGNC:25770|Ensembl:ENSG00000005448|HPRD:08577|Vega:OTTHUMG00000129951 2 2p13.1 WD repeat domain 54 protein-coding WDR54 WD repeat domain 54 O WD repeat-containing protein 54 20121230 -9606 84059 GPR98 - FEB4|MASS1|USH2B|USH2C|VLGR1|VLGR1b HGNC:17416|MIM:602851|Ensembl:ENSG00000164199|HPRD:09111|Vega:OTTHUMG00000162668 5 5q13 G protein-coupled receptor 98 protein-coding GPR98 G protein-coupled receptor 98 O G-protein coupled receptor 98|monogenic audiogenic seizure susceptibility protein 1 homolog|monogenic, audiogenic seizure susceptibility 1 homolog|usher syndrome type-2C protein|very large G protein-coupled receptor 1|very large G-protein coupled receptor 1 20121230 -9606 84060 RBM48 - C7orf64|DKFZP564O0523|HSPC304 HGNC:21785|Ensembl:ENSG00000127993|HPRD:13173|Vega:OTTHUMG00000159535 7 7q21.2 RNA binding motif protein 48 protein-coding RBM48 RNA binding motif protein 48 O RNA-binding protein 48|UPF0712 protein C7orf64 20121230 -9606 84061 MAGT1 RP11-217H1.1 IAP|MRX95|OST3B|PRO0756|XMEN|bA217H1.1 HGNC:28880|MIM:300715|Ensembl:ENSG00000102158|HPRD:06487|Vega:OTTHUMG00000021882 X Xq21.1 magnesium transporter 1 protein-coding MAGT1 magnesium transporter 1 O implantation-associated protein|magnesium transporter protein 1|oligosaccharyltransferase 3 homolog B 20121230 -9606 84062 DTNBP1 RP1-147M19.1 BLOC1S8|DBND|HPS7|My031|SDY HGNC:17328|MIM:607145|Ensembl:ENSG00000047579|HPRD:06190|Vega:OTTHUMG00000014295 6 6p22.3 dystrobrevin binding protein 1 protein-coding DTNBP1 dystrobrevin binding protein 1 O Hermansky-Pudlak syndrome 7 protein|biogenesis of lysosomal organelles complex-1, subunit 8|dysbindin|dysbindin-1 20121230 -9606 84063 KIRREL2 UNQ5827/PRO19646 FILTRIN|NEPH3|NLG1 HGNC:18816|MIM:607762|Ensembl:ENSG00000126259|HPRD:08473|Vega:OTTHUMG00000180691 19 19q13.12 kin of IRRE like 2 (Drosophila) protein-coding KIRREL2 kin of IRRE like 2 (Drosophila) O kin of IRRE-like protein 2|kin of irregular chiasm-like 2|kin of irregular chiasm-like protein 2|nephrin-like 3|nephrin-like gene 1|nephrin-like protein 3 20121230 -9606 84064 HDHD2 - 3110052N05Rik HGNC:25364|Ensembl:ENSG00000167220|HPRD:13640|Vega:OTTHUMG00000179411 18 18q21.1 haloacid dehalogenase-like hydrolase domain containing 2 protein-coding HDHD2 haloacid dehalogenase-like hydrolase domain containing 2 O haloacid dehalogenase-like hydrolase domain-containing protein 2 20121230 -9606 84065 TMEM222 RP11-4K3__A.4 C1orf160 HGNC:25363|Ensembl:ENSG00000186501|HPRD:13167|Vega:OTTHUMG00000004410 1 1p36.11 transmembrane protein 222 protein-coding TMEM222 transmembrane protein 222 O - 20121230 -9606 84066 TEX35 RP5-990P15.1 C1orf49|TSC24 HGNC:25366|Ensembl:ENSG00000240021|HPRD:13169|Vega:OTTHUMG00000035023 1 1q25.2 testis expressed 35 protein-coding TEX35 testis expressed 35 O Testis-Specific Conserved gene 24kDa|testis-expressed sequence 35 protein 20121230 -9606 84067 FAM160A2 - C11orf56 HGNC:25378|Ensembl:ENSG00000051009|HPRD:08002|Vega:OTTHUMG00000133379 11 11p15.4 family with sequence similarity 160, member A2 protein-coding FAM160A2 family with sequence similarity 160, member A2 O FHIP|FTS and Hook-interacting protein 20121230 -9606 84068 SLC10A7 PSEC0051 C4orf13|P7 HGNC:23088|MIM:611459|Ensembl:ENSG00000120519|HPRD:13177|Vega:OTTHUMG00000161437 4 4q31.22 solute carrier family 10 (sodium/bile acid cotransporter family), member 7 protein-coding SLC10A7 solute carrier family 10 (sodium/bile acid cotransporter family), member 7 O Na(+)/bile acid cotransporter 7|SBF-domain containing protein|sodium/bile acid cotransporter 7|solute carrier family 10 member 7 20121230 -9606 84069 PLEKHN1 - RP11-54O7.7 HGNC:25284|Ensembl:ENSG00000187583|HPRD:13190|Vega:OTTHUMG00000040756 1 1p36.33 pleckstrin homology domain containing, family N member 1 protein-coding PLEKHN1 pleckstrin homology domain containing, family N member 1 O PH domain-containing family N member 1|pleckstrin homology domain-containing family N member 1 20121230 -9606 84070 FAM186B - C12orf25 HGNC:25296|Ensembl:ENSG00000135436|HPRD:08535|Vega:OTTHUMG00000167427 12 12q13.12 family with sequence similarity 186, member B protein-coding FAM186B family with sequence similarity 186, member B O protein FAM186B 20121230 -9606 84071 ARMC2 RP11-787I22.1 bA787I22.1 HGNC:23045|Ensembl:ENSG00000118690|HPRD:09809|Vega:OTTHUMG00000015335 6 6q21 armadillo repeat containing 2 protein-coding ARMC2 armadillo repeat containing 2 O armadillo repeat-containing protein 2 20121230 -9606 84072 HORMAD1 - CT46|NOHMA HGNC:25245|MIM:609824|Ensembl:ENSG00000143452|HPRD:11396|Vega:OTTHUMG00000035005 1 1q21.3 HORMA domain containing 1 protein-coding HORMAD1 HORMA domain containing 1 O HORMA domain-containing protein 1|cancer/testis antigen 46|newborn ovary HORMA protein 20121230 -9606 84073 MYCBPAP - AMAP-1|AMAP1 HGNC:19677|MIM:609835|Ensembl:ENSG00000136449|HPRD:11378|Vega:OTTHUMG00000157184 17 17q21.33 MYCBP associated protein protein-coding MYCBPAP MYCBP associated protein O AMAM-1|AMY-1-binding protein 1|AMY1-associating protein 1|MYCBP-associated protein 20121230 -9606 84074 QRICH2 - - HGNC:25326|Ensembl:ENSG00000129646|HPRD:10891|Vega:OTTHUMG00000167578 17 17q25.1 glutamine rich 2 protein-coding QRICH2 glutamine rich 2 O glutamine-rich protein 2 20121230 -9606 84075 FSCB - C14orf155 HGNC:20494|MIM:611779|Ensembl:ENSG00000189139|HPRD:12638|Vega:OTTHUMG00000140262 14 14q21.2 fibrous sheath CABYR binding protein protein-coding FSCB fibrous sheath CABYR binding protein O fibrous sheath CABYR-binding protein 20121230 -9606 84076 TKTL2 - - HGNC:25313|Ensembl:ENSG00000151005|HPRD:13159|Vega:OTTHUMG00000161527 4 4q32.2 transketolase-like 2 protein-coding TKTL2 transketolase-like 2 O transketolase-like protein 2 20121230 -9606 84077 C3orf20 - - HGNC:25320|Ensembl:ENSG00000131379|HPRD:12821|Vega:OTTHUMG00000155545 3 3p25.1 chromosome 3 open reading frame 20 protein-coding C3orf20 chromosome 3 open reading frame 20 O uncharacterized protein C3orf20 20121230 -9606 84078 KBTBD7 - - HGNC:25266|Ensembl:ENSG00000120696|HPRD:13759|Vega:OTTHUMG00000016789 13 13q14.11 kelch repeat and BTB (POZ) domain containing 7 protein-coding KBTBD7 kelch repeat and BTB (POZ) domain containing 7 O kelch repeat and BTB domain-containing protein 7 20121230 -9606 84079 ANKRD27 PP12899 VARP HGNC:25310|Ensembl:ENSG00000105186|HPRD:10650|Vega:OTTHUMG00000180225 19 19q13.11 ankyrin repeat domain 27 (VPS9 domain) protein-coding ANKRD27 ankyrin repeat domain 27 (VPS9 domain) O VPS9 domain-containing protein|VPS9-ankyrin-repeat protein|Vps9 domain and ankyrin-repeat-containing protein|ankyrin repeat domain-containing protein 27 20121230 -9606 84080 ENKD1 UNQ6410 C16orf48|DAKV6410 HGNC:25246|Ensembl:ENSG00000124074|HPRD:13151|Vega:OTTHUMG00000137550 16 16q22.1 enkurin domain containing 1 protein-coding ENKD1 enkurin domain containing 1 O uncharacterized protein C16orf48 20121230 -9606 84081 NSRP1 - CCDC55|HSPC095|NSrp70 HGNC:25305|Ensembl:ENSG00000126653|HPRD:08536|Vega:OTTHUMG00000132754 17 17q11.2 nuclear speckle splicing regulatory protein 1 protein-coding NSRP1 nuclear speckle splicing regulatory protein 1 O coiled-coil domain containing 55|coiled-coil domain-containing protein 55|nuclear speckle-related protein 70 20121230 -9606 84083 ZRANB3 - 4933425L19Rik|AH2 HGNC:25249|Ensembl:ENSG00000121988|HPRD:15896|Vega:OTTHUMG00000150475 2 2q21.3 zinc finger, RAN-binding domain containing 3 protein-coding ZRANB3 zinc finger, RAN-binding domain containing 3 O DNA annealing helicase and endonuclease ZRANB3|annealing helicase 2|zinc finger Ran-binding domain-containing protein 3 20121230 -9606 84084 RAB6C - WTH3 HGNC:16525|MIM:612909|Ensembl:ENSG00000222014|HPRD:15201|Vega:OTTHUMG00000153487 2 2q21.1 RAB6C, member RAS oncogene family protein-coding RAB6C RAB6C, member RAS oncogene family O rab6-like protein WTH3|ras-related protein Rab-6C 20121230 -9606 84085 FBXO30 RP11-545I5.4 Fbx30 HGNC:15600|MIM:609101|Ensembl:ENSG00000118496|HPRD:10953|Vega:OTTHUMG00000015749 6 6q24 F-box protein 30 protein-coding FBXO30 F-box protein 30 O F-box domain protein|F-box only protein 30|F-box only protein, helicase, 18 20121230 -9606 84086 IGLCOR22-2 RP1-149A16.15-001 IGLC/OR22-2 HGNC:15697|IMGT/GENE-DB:IGLC/OR22-2 22 22q12.2-q12.3 immunoglobulin lambda constant/OR22-2 (pseudogene) pseudo IGLCOR22-2 immunoglobulin lambda constant/OR22-2 (pseudogene) O - 20111109 -9606 84087 IGLVIVOR22-2 - - HGNC:15695|IMGT/GENE-DB:IGLV(IV)/OR22-2 22 22q12.2-q12.3 immunoglobulin lambda variable (IV)/OR22-2 (pseudogene) pseudo IGLVIVOR22-2 immunoglobulin lambda variable (IV)/OR22-2 (pseudogene) O - 20111109 -9606 84088 IGLVIVOR22-1 - - HGNC:15694|IMGT/GENE-DB:IGLV(IV)/OR22-1 22 22q11.2-q12.1 immunoglobulin lambda variable (IV)/OR22-1 (pseudogene) pseudo IGLVIVOR22-1 immunoglobulin lambda variable (IV)/OR22-1 (pseudogene) O - 20111109 -9606 84089 IGLVVII-41-1 - lambdavg1 HGNC:15691|IMGT/GENE-DB:IGLV(VII)-41-1 22 22q11.2 immunoglobulin lambda variable (VII)-41-1 (pseudogene) pseudo IGLVVII-41-1 immunoglobulin lambda variable (VII)-41-1 (pseudogene) O - 20121230 -9606 84090 IGLVVI-25-1 - lambdavg3 HGNC:15690|IMGT/GENE-DB:IGLV(VI)-25-1 22 22q11.2 immunoglobulin lambda variable (VI)-25-1 (pseudogene) pseudo IGLVVI-25-1 immunoglobulin lambda variable (VI)-25-1 (pseudogene) O - 20121230 -9606 84091 IGLVVI-22-1 - Lvg2 HGNC:15689|IMGT/GENE-DB:IGLV(VI)-22-1 22 22q11.2 immunoglobulin lambda variable (VI)-22-1 (pseudogene) other IGLVVI-22-1 immunoglobulin lambda variable (VI)-22-1 (pseudogene) O - 20121230 -9606 84096 IGLCOR22-1 - IGLC/OR22-1 HGNC:15696|IMGT/GENE-DB:IGLC/OR22-1 22 22q12.2-q12.3 immunoglobulin lambda constant/OR22-1 (pseudogene) other IGLCOR22-1 immunoglobulin lambda constant/OR22-1 (pseudogene) O - 20121021 -9606 84097 IGLVIV-66-1 - - HGNC:15692|IMGT/GENE-DB:IGLV(IV)-66-1 22 22q11.2 immunoglobulin lambda variable (IV)-66-1 (pseudogene) pseudo IGLVIV-66-1 immunoglobulin lambda variable (IV)-66-1 (pseudogene) O - 20121230 -9606 84099 ID2B - - HGNC:30656 3 3p14.2 inhibitor of DNA binding 2B, dominant negative helix-loop-helix protein (pseudogene) pseudo ID2B inhibitor of DNA binding 2B, dominant negative helix-loop-helix protein (pseudogene) O - 20121230 -9606 84100 ARL6 - BBS3|RP55 HGNC:13210|MIM:608845|Ensembl:ENSG00000113966|HPRD:10588|Vega:OTTHUMG00000159189 3 3q11.2 ADP-ribosylation factor-like 6 protein-coding ARL6 ADP-ribosylation factor-like 6 O ADP-ribosylation factor-like protein 6|bardet-Biedl syndrome 3 protein 20121230 -9606 84101 USP44 - - HGNC:20064|MIM:610993|Ensembl:ENSG00000136014|HPRD:15636|Vega:OTTHUMG00000170281 12 12q22 ubiquitin specific peptidase 44 protein-coding USP44 ubiquitin specific peptidase 44 O deubiquitinating enzyme 44|ubiquitin carboxyl-terminal hydrolase 44|ubiquitin specific protease 44|ubiquitin thioesterase 44|ubiquitin thiolesterase 44|ubiquitin-specific-processing protease 44 20121230 -9606 84102 SLC41A2 - SLC41A1-L1 HGNC:31045|MIM:610802|Ensembl:ENSG00000136052|HPRD:15389|Vega:OTTHUMG00000156965 12 12q23.3 solute carrier family 41, member 2 protein-coding SLC41A2 solute carrier family 41, member 2 O SLC41A1-like 1|solute carrier family 41 member 2 20121230 -9606 84103 C4orf17 - - HGNC:25274|Ensembl:ENSG00000138813|HPRD:12825|Vega:OTTHUMG00000131027 4 4q23 chromosome 4 open reading frame 17 protein-coding C4orf17 chromosome 4 open reading frame 17 O uncharacterized protein C4orf17 20121230 -9606 84105 PCBD2 - DCOH2|DCOHM|PHS2 HGNC:24474|MIM:609836|Ensembl:ENSG00000132570|HPRD:17824|Vega:OTTHUMG00000163070 5 5q31.1 pterin-4 alpha-carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 2 protein-coding PCBD2 pterin-4 alpha-carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 2 O 4-alpha-hydroxy-tetrahydropterin dehydratase 2|6-pyruvoyl-tetrahydropterin synthase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 2|DcoH-like protein DCoHm|HNF-1-alpha dimerization cofactor|PHS 2|dimerization cofactor of hepatocyte nuclear factor 1 (HNF1) from muscle|dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1)|dimerization cofactor of hepatocyte nuclear factor 1 from muscle|pterin-4 alpha-carbinolamine dehydratase 2|pterin-4-alpha-carbinolamine dehydratase 2 20121230 -9606 84106 PRAM1 - PML-RAR|PRAM-1 HGNC:30091|MIM:606466|Ensembl:ENSG00000133246|HPRD:05926 19 19p13.2 PML-RARA regulated adaptor molecule 1 protein-coding PRAM1 PML-RARA regulated adaptor molecule 1 O PML-RARA target gene encoding an Adaptor Molecule-1|PML-RARA-regulated adapter molecule 1|PRAM 20121230 -9606 84107 ZIC4 - - HGNC:20393|MIM:608948|Ensembl:ENSG00000174963|HPRD:12340|Vega:OTTHUMG00000037281 3 3q24 Zic family member 4 protein-coding ZIC4 Zic family member 4 O zinc family member 4 protein HZIC4|zinc finger protein ZIC 4|zinc finger protein of the cerebellum 4 20121230 -9606 84108 PCGF6 - MBLR|RNF134 HGNC:21156|MIM:607816|Ensembl:ENSG00000156374|HPRD:07427|Vega:OTTHUMG00000018982 10 10q24.33 polycomb group ring finger 6 protein-coding PCGF6 polycomb group ring finger 6 O Mel18 and Bmi1-like RING finger protein|polycomb group RING finger protein 6|ring finger protein 134 20121230 -9606 84109 QRFPR - AQ27|GPR103|SP9155 HGNC:15565|MIM:606925|Ensembl:ENSG00000186867|HPRD:09494|Vega:OTTHUMG00000133036 4 4q27 pyroglutamylated RFamide peptide receptor protein-coding QRFPR pyroglutamylated RFamide peptide receptor O G protein-coupled receptor 103|G-protein coupled receptor 103|QRFP receptor|orexigenic neuropeptide QRFP receptor 20121230 -9606 84124 ZNF394 - ZKSCAN14 HGNC:18832|Ensembl:ENSG00000160908|HPRD:18333|Vega:OTTHUMG00000154660 7 7q22.1 zinc finger protein 394 protein-coding ZNF394 zinc finger protein 394 O zinc finger protein 99|zinc finger protein with KRAB and SCAN domains 14 20121230 -9606 84125 LRRIQ1 - - HGNC:25708|Ensembl:ENSG00000133640|HPRD:09952|Vega:OTTHUMG00000166185 12 12q21.31 leucine-rich repeats and IQ motif containing 1 protein-coding LRRIQ1 leucine-rich repeats and IQ motif containing 1 O leucine-rich repeat and IQ domain-containing protein 1 20121230 -9606 84126 ATRIP hCG_1997849 - HGNC:33499|MIM:606605|Ensembl:ENSG00000164053|Vega:OTTHUMG00000133532 3 3p21.31 ATR interacting protein protein-coding ATRIP ATR interacting protein O ATM and Rad3-related-interacting protein|ATR-interacting protein 20121230 -9606 84128 WDR75 - NET16|UTP17 HGNC:25725|Ensembl:ENSG00000115368|HPRD:07775|Vega:OTTHUMG00000132660 2 2q32.2 WD repeat domain 75 protein-coding WDR75 WD repeat domain 75 O UTP17, small subunit (SSU) processome component, homolog|WD repeat-containing protein 75 20121230 -9606 84129 ACAD11 - ACAD-11 HGNC:30211|MIM:614288|Ensembl:ENSG00000240303|HPRD:13352|Vega:OTTHUMG00000159780 3 3q22.1 acyl-CoA dehydrogenase family, member 11 protein-coding ACAD11 acyl-CoA dehydrogenase family, member 11 O 62113 protein|acyl-CoA dehydrogenase family member 11|acyl-Coenzyme A dehydrogenase family, member 11 20121230 -9606 84131 CEP78 RP11-336N8.5 C9orf81|IP63 HGNC:25740|Ensembl:ENSG00000148019|Vega:OTTHUMG00000020062 9 9q21.2 centrosomal protein 78kDa protein-coding CEP78 centrosomal protein 78kDa O centrosomal protein of 78 kDa 20121230 -9606 84132 USP42 tcag7.880 - HGNC:20068|Ensembl:ENSG00000106346|Vega:OTTHUMG00000151888 7 7p22.1 ubiquitin specific peptidase 42 protein-coding USP42 ubiquitin specific peptidase 42 O deubiquitinating enzyme 42|ubiquitin carboxyl-terminal hydrolase 42|ubiquitin specific protease 42|ubiquitin thioesterase 42|ubiquitin thiolesterase 42|ubiquitin-specific-processing protease 42 20121230 -9606 84133 ZNRF3 hCG_40978 BK747E2.3|RNF203 HGNC:18126|MIM:612062|Ensembl:ENSG00000183579|Vega:OTTHUMG00000151009 22 22q12.1 zinc and ring finger 3 protein-coding ZNRF3 zinc and ring finger 3 O E3 ubiquitin-protein ligase ZNRF3|RING finger protein 203|novel C3HC4 type Zinc finger (ring finger)|zinc/RING finger protein 3 20121230 -9606 84134 TOMM40L - RP11-297K8.10|TOMM40B HGNC:25756|Ensembl:ENSG00000158882|HPRD:13354|Vega:OTTHUMG00000034345 1 1q23.3 translocase of outer mitochondrial membrane 40 homolog (yeast)-like protein-coding TOMM40L translocase of outer mitochondrial membrane 40 homolog (yeast)-like O mitochondrial import receptor subunit TOM40B|protein TOMM40-like|translocase of outer mitochondrial membrane 40 homolog-like 20121230 -9606 84135 UTP15 - NET21 HGNC:25758|Ensembl:ENSG00000164338|HPRD:07796|Vega:OTTHUMG00000162453 5 5q13.2 UTP15, U3 small nucleolar ribonucleoprotein, homolog (S. cerevisiae) protein-coding UTP15 UTP15, U3 small nucleolar ribonucleoprotein, homolog (S. cerevisiae) O Src-associated protein SAW|U3 small nucleolar RNA-associated protein 15 homolog 20121230 -9606 84138 SLC7A6OS - - HGNC:25807|Ensembl:ENSG00000103061|HPRD:07824|Vega:OTTHUMG00000137558 16 16q22.1 solute carrier family 7, member 6 opposite strand protein-coding SLC7A6OS solute carrier family 7, member 6 opposite strand O ADAMS proteinase-related protein|probable RNA polymerase II nuclear localization protein SLC7A6OS|protein SLC7A6OS|solute carrier family 7 member 6 opposite strand transcript 20121230 -9606 84140 FAM161A - RP28 HGNC:25808|MIM:613596|Ensembl:ENSG00000170264|Vega:OTTHUMG00000152165 2 2p15 family with sequence similarity 161, member A protein-coding FAM161A family with sequence similarity 161, member A O protein FAM161A|retinitis pigmentosa 28 (autosomal recessive) 20121230 -9606 84141 EVA1A SP24 FAM176A|TMEM166 HGNC:25816|Ensembl:ENSG00000115363|HPRD:07827|Vega:OTTHUMG00000129991 2 2p12 eva-1 homolog A (C. elegans) protein-coding EVA1A eva-1 homolog A (C. elegans) O family with sequence similarity 176, member A|protein FAM176A|transmembrane protein 166 20121230 -9606 84142 FAM175A UNQ496/PRO1013 ABRA1|CCDC98 HGNC:25829|MIM:611143|Ensembl:ENSG00000163322|HPRD:08584|Vega:OTTHUMG00000130429 4 4q21.23 family with sequence similarity 175, member A protein-coding FAM175A family with sequence similarity 175, member A O BRCA1-A complex subunit Abraxas|abraxas protein|coiled-coil domain containing 98|coiled-coil domain-containing protein 98 20121230 -9606 84144 SYDE2 - RP11-33E12.1 HGNC:25841|Ensembl:ENSG00000097096|Vega:OTTHUMG00000009956 1 1p22.3 synapse defective 1, Rho GTPase, homolog 2 (C. elegans) protein-coding SYDE2 synapse defective 1, Rho GTPase, homolog 2 (C. elegans) O protein syd-1 homolog 2|rho GTPase-activating protein SYDE2|synapse defective protein 1 homolog 2 20121230 -9606 84146 ZNF644 - BM-005|MYP21|NatF|ZEP-2 HGNC:29222|MIM:614159|Ensembl:ENSG00000122482|HPRD:15885|Vega:OTTHUMG00000010078 1 1p22.2 zinc finger protein 644 protein-coding ZNF644 zinc finger protein 644 O zinc finger motif enhancer binding protein 2 20121230 -9606 84148 KAT8 PP7073 MOF|MYST1|hMOF HGNC:17933|MIM:609912|Ensembl:ENSG00000103510|HPRD:11381|Vega:OTTHUMG00000132410 16 16p11.2 K(lysine) acetyltransferase 8 protein-coding KAT8 K(lysine) acetyltransferase 8 O MOZ, YBF2/SAS3, SAS2 and TIP60 protein 1|MYST histone acetyltransferase 1|MYST-1|histone acetyltransferase KAT8|histone acetyltransferase MYST1|lysine acetyltransferase 8|ortholog of Drosophila males absent on the first (MOF)|probable histone acetyltransferase MYST1 20121230 -9606 84152 PPP1R1B - DARPP-32|DARPP32 HGNC:9287|MIM:604399|Ensembl:ENSG00000131771|HPRD:05097|Vega:OTTHUMG00000133210 17 17q12 protein phosphatase 1, regulatory (inhibitor) subunit 1B protein-coding PPP1R1B protein phosphatase 1, regulatory (inhibitor) subunit 1B O dopamine and cAMP-regulated neuronal phosphoprotein 32|protein phosphatase 1 regulatory subunit 1B 20121230 -9606 84153 RNASEH2C - AGS3|AYP1 HGNC:24116|MIM:610330|Ensembl:ENSG00000172922|HPRD:16531|Vega:OTTHUMG00000166601 11 11q13.1 ribonuclease H2, subunit C protein-coding RNASEH2C ribonuclease H2, subunit C O RNase H1 small subunit|RNase H2 subunit C|aicardi-Goutieres syndrome 3 protein|ribonuclease H2 subunit C|ribonuclease HI subunit C 20121230 -9606 84154 RPF2 RP11-397G5.1 BXDC1|bA397G5.4 HGNC:20870|Ensembl:ENSG00000197498|HPRD:12552|Vega:OTTHUMG00000015368 6 6q21 ribosome production factor 2 homolog (S. cerevisiae) protein-coding RPF2 ribosome production factor 2 homolog (S. cerevisiae) O brix domain containing 1|brix domain-containing protein 1|homolog of Rpf2|ribosomal processing factor 2 homolog|ribosome biogenesis protein RPF2 homolog|ribosome production factor 2 homolog 20121230 -9606 84159 ARID5B RP11-341A19.1 DESRT|MRF-2|MRF2 HGNC:17362|MIM:608538|Ensembl:ENSG00000150347|Vega:OTTHUMG00000018298 10 10q21.2 AT rich interactive domain 5B (MRF1-like) protein-coding ARID5B AT rich interactive domain 5B (MRF1-like) O ARID domain-containing protein 5B|AT-rich interactive domain-containing protein 5B|MRF1-like protein|modulator recognition factor 2 (MRF2) 20121230 -9606 84162 KIAA1109 - FSA|Tweek HGNC:26953|MIM:611565|Ensembl:ENSG00000138688|Vega:OTTHUMG00000150116 4 4q27 KIAA1109 protein-coding KIAA1109 KIAA1109 O fragile site-associated protein|uncharacterized protein KIAA1109 20121230 -9606 84163 GTF2IRD2 - FP630|GTF2IRD2A HGNC:30775|MIM:608899|Ensembl:ENSG00000196275|HPRD:16402|Vega:OTTHUMG00000130353 7 7q11.23 GTF2I repeat domain containing 2 protein-coding GTF2IRD2 GTF2I repeat domain containing 2 O GTF2I repeat domain-containing protein 2A|GTF2IRD2 alpha|general transcription factor II i repeat domain 2 alpha|general transcription factor II-I repeat domain-containing protein 2A|transcription factor GTF2IRD2|transcription factor GTF2IRD2-alpha 20121230 -9606 84164 ASCC2 SC22CB-11B7.2 ASC1p100|p100 HGNC:24103|MIM:614216|Ensembl:ENSG00000100325|HPRD:16515|Vega:OTTHUMG00000067658 22 22q12.1 activating signal cointegrator 1 complex subunit 2 protein-coding ASCC2 activating signal cointegrator 1 complex subunit 2 O ASC-1 complex subunit P100|trip4 complex subunit p100 20121230 -9606 84166 NLRC5 - CLR16.1|NOD27|NOD4 HGNC:29933|MIM:613537|Ensembl:ENSG00000140853|HPRD:14831|Vega:OTTHUMG00000133470 16 16q13 NLR family, CARD domain containing 5 protein-coding NLRC5 NLR family, CARD domain containing 5 O NOD-like receptor C5|caterpiller protein 16.1|nucleotide-binding oligomerization domain protein 4|nucleotide-binding oligomerization domain, leucine rich repeat and CARD domain containing 5|nucleotide-binding oligomerization domains 27|protein NLRC5 20121230 -9606 84167 C19orf44 - - HGNC:26141|Ensembl:ENSG00000105072|HPRD:08641 19 19p13.11 chromosome 19 open reading frame 44 protein-coding C19orf44 chromosome 19 open reading frame 44 O uncharacterized protein C19orf44 20121230 -9606 84168 ANTXR1 - ATR|TEM8 HGNC:21014|MIM:606410|Ensembl:ENSG00000169604|HPRD:05913|Vega:OTTHUMG00000129575 2 2p13.1 anthrax toxin receptor 1 protein-coding ANTXR1 anthrax toxin receptor 1 O 2310008J16Rik|2810405N18Rik|tumor endothelial marker 8 20121230 -9606 84171 LOXL4 - LOXC HGNC:17171|MIM:607318|Ensembl:ENSG00000138131|HPRD:09538|Vega:OTTHUMG00000018874 10 10q24 lysyl oxidase-like 4 protein-coding LOXL4 lysyl oxidase-like 4 O lysyl oxidase homolog 4|lysyl oxidase related C|lysyl oxidase-like 4 pseudogene|lysyl oxidase-like protein 4|lysyl oxidase-related protein C 20121230 -9606 84172 POLR1B - RPA135|RPA2|Rpo1-2 HGNC:20454|MIM:602000|Ensembl:ENSG00000125630|HPRD:06852|Vega:OTTHUMG00000131314 2 2q13 polymerase (RNA) I polypeptide B, 128kDa protein-coding POLR1B polymerase (RNA) I polypeptide B, 128kDa O DNA-directed RNA polymerase I 135 kDa polypeptide|DNA-directed RNA polymerase I 135kDa polypeptide|DNA-directed RNA polymerase I subunit RPA2|RNA polymerase I subunit 2 20121230 -9606 84173 ELMOD3 PP4068 LST3|RBED1|RBM29 HGNC:26158|Ensembl:ENSG00000115459|HPRD:07973|Vega:OTTHUMG00000130170 2 2p11.2 ELMO/CED-12 domain containing 3 protein-coding ELMOD3 ELMO/CED-12 domain containing 3 O C330008I15Rik|ELMO domain-containing protein 3|RNA binding motif and ELMO domain 1|RNA binding motif and ELMO/CED-12 domain 1|RNA binding motif protein 29|RNA-binding motif and ELMO domain-containing protein 1|RNA-binding motif protein 29|RNA-binding protein 29|liver-specific organic anion transporter 3TM12|organic anion transporter LST-3b 20121230 -9606 84174 SLA2 - C20orf156|MARS|SLAP-2|SLAP2 HGNC:17329|MIM:606577|Ensembl:ENSG00000101082|HPRD:05955|Vega:OTTHUMG00000032393 20 20q11.23 Src-like-adaptor 2 protein-coding SLA2 Src-like-adaptor 2 O Src-like adapter protein-2|modulator of antigen receptor signaling|src-like-adapter 2 20121230 -9606 84176 MYH16 - MHC20|MYH16P|MYH5 HGNC:31038|MIM:608580 7 7q22.1 myosin, heavy chain 16 pseudogene pseudo MYH16 myosin, heavy chain 16 pseudogene O - 20121230 -9606 84179 MFSD7 LP2561 - HGNC:26177|Ensembl:ENSG00000169026|HPRD:08650|Vega:OTTHUMG00000119001 4 4p16.3 major facilitator superfamily domain containing 7 protein-coding MFSD7 major facilitator superfamily domain containing 7 O MYL5|major facilitator superfamily domain-containing protein 7|myosin light polypeptide 5 regulatory protein 20121230 -9606 84181 CHD6 RP4-620E11.2 CHD5|RIGB HGNC:19057|Ensembl:ENSG00000124177|HPRD:13049|Vega:OTTHUMG00000032487 20 20q12 chromodomain helicase DNA binding protein 6 protein-coding CHD6 chromodomain helicase DNA binding protein 6 O ATP-dependent helicase CHD6|CHD-6|chromodomain-helicase-DNA-binding protein 6|helicase C-terminal domain- and SNF2 N-terminal domain-containing protein|radiation-induced gene B protein 20121230 -9606 84182 FAM188B - C7orf67 HGNC:21916|Ensembl:ENSG00000106125|HPRD:13387|Vega:OTTHUMG00000152800 7 7p14.3 family with sequence similarity 188, member B protein-coding FAM188B family with sequence similarity 188, member B O protein FAM188B 20121230 -9606 84186 ZCCHC7 HSPC086 AIR1|RP11-397D12.1 HGNC:26209|Ensembl:ENSG00000147905|HPRD:15703|Vega:OTTHUMG00000019915 9 9p13.2 zinc finger, CCHC domain containing 7 protein-coding ZCCHC7 zinc finger, CCHC domain containing 7 O zinc finger CCHC domain-containing protein 7 20121230 -9606 84187 TMEM164 RP13-360B22.2 bB360B22.3 HGNC:26217|Ensembl:ENSG00000157600|HPRD:06539|Vega:OTTHUMG00000022192 X Xq22.3 transmembrane protein 164 protein-coding TMEM164 transmembrane protein 164 O - 20121230 -9606 84188 FAR1 UNQ2423/PRO4981 MLSTD2|SDR10E1 HGNC:26222|Ensembl:ENSG00000197601|HPRD:14724|Vega:OTTHUMG00000165743 11 11p15.2 fatty acyl CoA reductase 1 protein-coding FAR1 fatty acyl CoA reductase 1 O fatty acyl-CoA reductase 1|male sterility domain containing 2|male sterility domain-containing protein 2|putative fatty acyl reductase|short chain dehydrogenase/reductase family 10E, member 1 20121230 -9606 84189 SLITRK6 RP11-272M24.2 - HGNC:23503|MIM:609681|Ensembl:ENSG00000184564|HPRD:15403|Vega:OTTHUMG00000017157 13 13q31.1 SLIT and NTRK-like family, member 6 protein-coding SLITRK6 SLIT and NTRK-like family, member 6 O 4832410J21Rik|SLIT and NTRK-like protein 6|slit and trk like gene 6 20121230 -9606 84190 METTL25 - C12orf26 HGNC:26228|Ensembl:ENSG00000127720|HPRD:10979|Vega:OTTHUMG00000170252 12 12q21.31 methyltransferase like 25 protein-coding METTL25 methyltransferase like 25 O methyltransferase-like protein 25 20121230 -9606 84191 FAM96A - - HGNC:26235|Ensembl:ENSG00000166797|HPRD:08010|Vega:OTTHUMG00000132961 15 15q22.31 family with sequence similarity 96, member A protein-coding FAM96A family with sequence similarity 96, member A O MIP18 family protein FAM96A 20121230 -9606 84193 SETD3 - C14orf154 HGNC:20493|Ensembl:ENSG00000183576|HPRD:08664|Vega:OTTHUMG00000028970 14 14q32.2 SET domain containing 3 protein-coding SETD3 SET domain containing 3 O SET domain-containing protein 3|histone-lysine N-methyltransferase setd3 20121230 -9606 84196 USP48 - RAP1GA1|USP31 HGNC:18533|Ensembl:ENSG00000090686|HPRD:15637|Vega:OTTHUMG00000007798 1 1p36.12 ubiquitin specific peptidase 48 protein-coding USP48 ubiquitin specific peptidase 48 O deubiquitinating enzyme 48|ubiquitin carboxyl-terminal hydrolase 48|ubiquitin specific protease 31|ubiquitin specific protease 48|ubiquitin thioesterase 48|ubiquitin thiolesterase 48|ubiquitin-specific-processing protease 48 20121230 -9606 84197 SGK196 - - Ensembl:ENSG00000185900|HPRD:08668|Vega:OTTHUMG00000164100 8 8p11.21 protein kinase-like protein SgK196 protein-coding - - - Sugen kinase 196 20121230 -9606 84200 FLJ23519 - - - 11 11p15.5 uncharacterized protein FLJ23519 unknown - - - - 20111025 -9606 84203 TXNDC2 - SPTRX|SPTRX1 HGNC:16470|Ensembl:ENSG00000168454|HPRD:11654|Vega:OTTHUMG00000131602 18 - thioredoxin domain containing 2 (spermatozoa) protein-coding TXNDC2 thioredoxin domain containing 2 (spermatozoa) O sperm-specific thioredoxin 1|spermatid-specific thioredoxin-1|sptrx-1|thioredoxin domain-containing 2 (spermatozoa)|thioredoxin domain-containing protein 2 20121230 -9606 84206 MEX3B - MEX-3B|RKHD3|RNF195 HGNC:25297|MIM:611008|Ensembl:ENSG00000183496|HPRD:15256|Vega:OTTHUMG00000147356 15 15q25.2 mex-3 homolog B (C. elegans) protein-coding MEX3B mex-3 homolog B (C. elegans) O RING finger protein 195|RNA-binding protein MEX3B|ring finger and KH domain containing 3 20121230 -9606 84210 ANKRD20A1 - ANKRD20A HGNC:23665|Ensembl:ENSG00000196774|HPRD:10649|Vega:OTTHUMG00000034629 9 9q13 ankyrin repeat domain 20 family, member A1 protein-coding ANKRD20A1 ankyrin repeat domain 20 family, member A1 O ankyrin repeat domain 20A|ankyrin repeat domain-containing protein 20A1 20121230 -9606 84214 DKFZP434F142 - - - 7 7q11.21 uncharacterized DKFZp434F142 unknown - - - - 20121230 -9606 84215 ZNF541 - - HGNC:25294|Ensembl:ENSG00000118156|HPRD:10337|Vega:OTTHUMG00000141262 19 19q13.33 zinc finger protein 541 protein-coding ZNF541 zinc finger protein 541 O - 20121230 -9606 84216 TMEM117 - - HGNC:25308|Ensembl:ENSG00000139173|HPRD:13193|Vega:OTTHUMG00000169427 12 12q12 transmembrane protein 117 protein-coding TMEM117 transmembrane protein 117 O - 20121230 -9606 84217 ZMYND12 - - HGNC:21192|Ensembl:ENSG00000066185|HPRD:15740|Vega:OTTHUMG00000007333 1 1p34.2 zinc finger, MYND-type containing 12 protein-coding ZMYND12 zinc finger, MYND-type containing 12 O zinc finger MYND domain-containing protein 12|zinc finger, MYND domain containing 12 20121230 -9606 84218 TBC1D3F - TBC1D3 HGNC:18257|MIM:610809|Ensembl:ENSG00000185128|HPRD:09667|Vega:OTTHUMG00000132741 17 17q12 TBC1 domain family, member 3F protein-coding TBC1D3F TBC1 domain family, member 3F O TBC1 domain family member 3|TBC1 domain family member 3F|prostate cancer gene 17 protein|protein TRE17-alpha 20121230 -9606 84219 WDR24 LA16c-313D11.2 C16orf21|JFP7 HGNC:20852|Ensembl:ENSG00000127580|HPRD:15665|Vega:OTTHUMG00000090421 16 16p13.3 WD repeat domain 24 protein-coding WDR24 WD repeat domain 24 O WD repeat-containing protein 24 20121230 -9606 84220 RGPD5 - BS-63|BS63|RGP5 HGNC:32418|MIM:612708|Ensembl:ENSG00000015568|HPRD:04128|Vega:OTTHUMG00000130985 2 2q13 RANBP2-like and GRIP domain containing 5 protein-coding RGPD5 RANBP2-like and GRIP domain containing 5 O RANBP2-like and GRIP domain-containing protein 5|RANBP2-like and GRIP domain-containing protein 5/6|ran-binding protein 2-like 1|ran-binding protein 2-like 1/2|ranBP2-like 1|ranBP2-like 1/2|ranBP2L1|sperm membrane protein BS-63 20121209 -9606 84221 SPATC1L - C21orf56 HGNC:1298|MIM:612412|Ensembl:ENSG00000160284|HPRD:10753|Vega:OTTHUMG00000090487 21 21q22.3 spermatogenesis and centriole associated 1-like protein-coding SPATC1L spermatogenesis and centriole associated 1-like O uncharacterized protein C21orf56 20121230 -9606 84222 TMEM191A - TMEM191AP HGNC:25317|HPRD:13197 22 22q11.21 transmembrane protein 191A (pseudogene) pseudo TMEM191A transmembrane protein 191A (pseudogene) O - 20121230 -9606 84223 IQCG - - HGNC:25251|MIM:612477|Ensembl:ENSG00000114473|HPRD:13746|Vega:OTTHUMG00000155408 3 3q29 IQ motif containing G protein-coding IQCG IQ motif containing G O IQ domain-containing protein G 20121230 -9606 84224 NBPF3 RP11-293F5.5 AE2 HGNC:25076|MIM:612992|Ensembl:ENSG00000142794|HPRD:10633|Vega:OTTHUMG00000002944 1 1p36.12 neuroblastoma breakpoint family, member 3 protein-coding NBPF3 neuroblastoma breakpoint family, member 3 O neuroblastoma breakpoint family member 3|protein SHIIIa4 20121230 -9606 84225 ZMYND15 - - HGNC:20997|MIM:614312|Ensembl:ENSG00000141497|HPRD:15741|Vega:OTTHUMG00000090760 17 17p13.2 zinc finger, MYND-type containing 15 protein-coding ZMYND15 zinc finger, MYND-type containing 15 O zinc finger MYND domain-containing protein 15|zinc finger, MYND domain containing 15 20121230 -9606 84226 C2orf16 - - HGNC:25275|Ensembl:ENSG00000221843|HPRD:09849|Vega:OTTHUMG00000159099 2 2p23.3 chromosome 2 open reading frame 16 protein-coding C2orf16 chromosome 2 open reading frame 16 O uncharacterized protein C2orf16 20121230 -9606 84229 CCDC135 - C16orf50|FAP50 HGNC:25289|Ensembl:ENSG00000159625|HPRD:10902|Vega:OTTHUMG00000133473 16 16q21 coiled-coil domain containing 135 protein-coding CCDC135 coiled-coil domain containing 135 O coiled-coil domain-containing protein 135|coiled-coil domain-containing protein lobo homolog 20121230 -9606 84230 LRRC8C - AD158|FAD158 HGNC:25075|MIM:612889|Ensembl:ENSG00000171488|HPRD:13284|Vega:OTTHUMG00000010305 1 1p22.2 leucine rich repeat containing 8 family, member C protein-coding LRRC8C leucine rich repeat containing 8 family, member C O factor for adipocyte differentiation 158|hypothetical protein AD158|leucine rich repeat containing 8C|leucine-rich repeat-containing protein 8C 20121230 -9606 84231 TRAF7 - RFWD1|RNF119 HGNC:20456|MIM:606692|Ensembl:ENSG00000131653|HPRD:06977|Vega:OTTHUMG00000128826 16 16p13.3 TNF receptor-associated factor 7, E3 ubiquitin protein ligase protein-coding TRAF7 TNF receptor-associated factor 7, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase TRAF7|RING finger and WD repeat-containing protein 1|RING finger protein 119|ring finger and WD repeat domain 1 20121230 -9606 84232 MAF1 - - HGNC:24966|MIM:610210|Ensembl:ENSG00000179632|HPRD:14345|Vega:OTTHUMG00000165244 8 8q24.3 MAF1 homolog (S. cerevisiae) protein-coding MAF1 MAF1 homolog (S. cerevisiae) O homolog of yeast MAF1|repressor of RNA polymerase III transcription MAF1 homolog 20121230 -9606 84233 TMEM126A - OPA7 HGNC:25382|MIM:612988|Ensembl:ENSG00000171202|HPRD:13216|Vega:OTTHUMG00000166975 11 11q14.1 transmembrane protein 126A protein-coding TMEM126A transmembrane protein 126A O - 20121230 -9606 84236 RHBDD1 HSD50 RRP4 HGNC:23081|Ensembl:ENSG00000144468|HPRD:13206|Vega:OTTHUMG00000133178 2 2q36.3 rhomboid domain containing 1 protein-coding RHBDD1 rhomboid domain containing 1 O rhomboid domain-containing protein 1|rhomboid-like protein 4|rhomboid-related protein 4 20121230 -9606 84237 DKFZp547J222 - - - 4 4p15.33 uncharacterized LOC84237 unknown - - - - 20120508 -9606 84239 ATP13A4 UNQ3052/PRO9871 - HGNC:25422|MIM:609556|Ensembl:ENSG00000127249|HPRD:12502|Vega:OTTHUMG00000074067 3 3q29 ATPase type 13A4 protein-coding ATP13A4 ATPase type 13A4 O P5-ATPase|cation-transporting P5-ATPase|probable cation-transporting ATPase 13A4 20121230 -9606 84240 ZCCHC9 - PPP1R41 HGNC:25424|Ensembl:ENSG00000131732|HPRD:15704|Vega:OTTHUMG00000119014 5 5q14.1 zinc finger, CCHC domain containing 9 protein-coding ZCCHC9 zinc finger, CCHC domain containing 9 O protein phosphatase 1, regulatory subunit 41|zinc finger CCHC domain-containing protein 9 20121230 -9606 84243 ZDHHC18 RP1-50O24.3 DHHC-18|DHHC18 HGNC:20712|Ensembl:ENSG00000204160|HPRD:15713|Vega:OTTHUMG00000004092 1 1p36.11 zinc finger, DHHC-type containing 18 protein-coding ZDHHC18 zinc finger, DHHC-type containing 18 O palmitoyltransferase ZDHHC18|zinc finger DHHC domain-containing protein 18|zinc finger, DHHC domain containing 18 20121230 -9606 84245 MRI1 UNQ6390/PRO21135 MTNA|Ypr118w HGNC:28469|Ensembl:ENSG00000037757|HPRD:14548|Vega:OTTHUMG00000180867 19 19p13.2 methylthioribose-1-phosphate isomerase homolog (S. cerevisiae) protein-coding MRI1 methylthioribose-1-phosphate isomerase homolog (S. cerevisiae) O M1Pi|MTR-1-P isomerase|S-methyl-5-thioribose-1-phosphate isomerase|mediator of RhoA-dependent invasion|methylthioribose-1-phosphate isomerase|translation initiation factor eIF-2B subunit alpha/beta/delta-like protein 20121230 -9606 84246 MED10 L6 NUT2|TRG20 HGNC:28760|MIM:612382|Ensembl:ENSG00000133398|HPRD:14680|Vega:OTTHUMG00000161682 5 5p15.31 mediator complex subunit 10 protein-coding MED10 mediator complex subunit 10 O TRG-17|TRG-20|mediator of RNA polymerase II transcription subunit 10|mediator of RNA polymerase II transcription, subunit 10|transformation-related gene 17 protein|transformation-related gene 20 protein 20121230 -9606 84247 LDOC1L - Mar6|Mart6|dJ1033E15.2 HGNC:13343|Ensembl:ENSG00000188636|HPRD:13982|Vega:OTTHUMG00000150465 22 22q13.31 leucine zipper, down-regulated in cancer 1-like protein-coding LDOC1L leucine zipper, down-regulated in cancer 1-like O leucine zipper protein down-regulated in cancer cells-like|mammalian retrotransposon-derived protein 6|protein LDOC1L 20121230 -9606 84248 FYTTD1 - UIF HGNC:25407|Ensembl:ENSG00000122068|HPRD:10909|Vega:OTTHUMG00000155453 3 3q29 forty-two-three domain containing 1 protein-coding FYTTD1 forty-two-three domain containing 1 O UAP56-interacting factor|forty-two-three domain-containing protein 1|protein 40-2-3 20121230 -9606 84249 PSD2 - - HGNC:19092|Ensembl:ENSG00000146005|HPRD:15190|Vega:OTTHUMG00000129240 5 5q31.2 pleckstrin and Sec7 domain containing 2 protein-coding PSD2 pleckstrin and Sec7 domain containing 2 O 6330404E20Rik|PH and SEC7 domain-containing protein 2|pleckstrin homology and SEC7 domain-containing protein 2 20121230 -9606 84250 ANKRD32 - BRCTD1|BRCTx HGNC:25408|Ensembl:ENSG00000133302|HPRD:08538|Vega:OTTHUMG00000121133 5 5q15 ankyrin repeat domain 32 protein-coding ANKRD32 ankyrin repeat domain 32 O BRCT domain containing 1|BRCT domain-containing protein 1|ankyrin repeat domain-containing protein 32 20121230 -9606 84251 SGIP1 RP11-266I14.1 - HGNC:25412|MIM:611540|Ensembl:ENSG00000118473|HPRD:10910|Vega:OTTHUMG00000009161 1 1p31.3 SH3-domain GRB2-like (endophilin) interacting protein 1 protein-coding SGIP1 SH3-domain GRB2-like (endophilin) interacting protein 1 O SH3-containing GRB2-like protein 3-interacting protein 1|endophilin-3-interacting protein 20121230 -9606 84253 GARNL3 RP11-356B19.1 bA356B19.1 HGNC:25425|Ensembl:ENSG00000136895|HPRD:13567|Vega:OTTHUMG00000020700 9 9q33.3 GTPase activating Rap/RanGAP domain-like 3 protein-coding GARNL3 GTPase activating Rap/RanGAP domain-like 3 O GTPase activating RANGAP domain-like 3|GTPase-activating Rap/Ran-GAP domain-like protein 3 20121230 -9606 84254 CAMKK1 - CAMKKA HGNC:1469|MIM:611411|Ensembl:ENSG00000004660|HPRD:13000|Vega:OTTHUMG00000090725 17 17p13.2 calcium/calmodulin-dependent protein kinase kinase 1, alpha protein-coding CAMKK1 calcium/calmodulin-dependent protein kinase kinase 1, alpha O CAMKK alpha protein|caM-KK 1|caM-KK alpha|caM-kinase IV kinase|caM-kinase kinase 1|caM-kinase kinase alpha|caMKK 1|calcium/calmodulin-dependent protein kinase kinase 1|calcium/calmodulin-dependent protein kinase kinase alpha 20121230 -9606 84255 SLC37A3 - - HGNC:20651|Ensembl:ENSG00000157800|HPRD:15381|Vega:OTTHUMG00000157343 7 7q34 solute carrier family 37 (glycerol-3-phosphate transporter), member 3 protein-coding SLC37A3 solute carrier family 37 (glycerol-3-phosphate transporter), member 3 O solute carrier family 37 member 3|sugar phosphate exchanger 3 20121230 -9606 84256 FLYWCH1 - - HGNC:25404|Ensembl:ENSG00000059122|HPRD:13222|Vega:OTTHUMG00000177364 16 16p13.3 FLYWCH-type zinc finger 1 protein-coding FLYWCH1 FLYWCH-type zinc finger 1 O FLYWCH-type zinc finger-containing protein 1 20121230 -9606 84258 SYT3 - SytIII HGNC:11511|MIM:600327|Ensembl:ENSG00000213023|HPRD:08977 19 19q13.33 synaptotagmin III protein-coding SYT3 synaptotagmin III O synaptotagmin-3 20121230 -9606 84259 DCUN1D5 - - HGNC:28409|Ensembl:ENSG00000137692|HPRD:14520|Vega:OTTHUMG00000165822 11 11q22.3 DCN1, defective in cullin neddylation 1, domain containing 5 (S. cerevisiae) protein-coding DCUN1D5 DCN1, defective in cullin neddylation 1, domain containing 5 (S. cerevisiae) O DCN1-like protein 5|DCUN1 domain-containing protein 5|defective in cullin neddylation protein 1-like protein 5 20121230 -9606 84260 TCHP - TpMs HGNC:28135|MIM:612654|Ensembl:ENSG00000139437|HPRD:14403|Vega:OTTHUMG00000169281 12 12q24.11 trichoplein, keratin filament binding protein-coding TCHP trichoplein, keratin filament binding O mitochondrial protein with oncostatic activity|mitostatin|trichoplein keratin filament-binding protein|tumor suppressor protein 20121230 -9606 84261 FBXW9 - Fbw9 HGNC:28136|MIM:609074|Ensembl:ENSG00000132004|HPRD:12361|Vega:OTTHUMG00000150152 19 19p13.2 F-box and WD repeat domain containing 9 protein-coding FBXW9 F-box and WD repeat domain containing 9 O F-box and WD-40 domain protein 9|F-box and WD-40 domain-containing protein 9|F-box and WD-40 repeat containing protein 9|F-box/WD repeat-containing protein 9|specificity factor for SCF ubiquitin ligase 20121230 -9606 84262 PSMG3 - C7orf48|PAC3 HGNC:22420|Ensembl:ENSG00000157778|HPRD:14404|Vega:OTTHUMG00000119043 7 7p22.3 proteasome (prosome, macropain) assembly chaperone 3 protein-coding PSMG3 proteasome (prosome, macropain) assembly chaperone 3 O PAC-3|hPAC3|proteasome assembling chaperone 3|proteasome assembly chaperone 3 20121230 -9606 84263 HSDL2 RP11-32M23.1 C9orf99|SDR13C1 HGNC:18572|Ensembl:ENSG00000119471|HPRD:13679|Vega:OTTHUMG00000020504 9 9q32 hydroxysteroid dehydrogenase like 2 protein-coding HSDL2 hydroxysteroid dehydrogenase like 2 O hydroxysteroid dehydrogenase-like protein 2|short chain dehydrogenase/reductase family 13C, member 1 20121230 -9606 84264 HAGHL - - HGNC:14177|Ensembl:ENSG00000103253|HPRD:17087|Vega:OTTHUMG00000170560 16 16p13.3 hydroxyacylglutathione hydrolase-like protein-coding HAGHL hydroxyacylglutathione hydrolase-like O GLO2-like/ RJD12|hydroxyacylglutathione hydrolase-like protein 20121230 -9606 84265 POLR3GL - RPC32HOM|flj32422 HGNC:28466|Ensembl:ENSG00000121851|HPRD:14546|Vega:OTTHUMG00000013739 1 1q21.1 polymerase (RNA) III (DNA directed) polypeptide G (32kD)-like protein-coding POLR3GL polymerase (RNA) III (DNA directed) polypeptide G (32kD)-like O DNA-directed RNA polymerase III subunit G-like|DNA-directed RNA polymerase III subunit RPC7-like|RNA polymerase III subunit C7-like|RPC32-like protein|alternative RNA polymerase III subunit 32 20121230 -9606 84266 ALKBH7 UNQ6002/PRO34564 ABH7|SPATA11|UNQ6002 HGNC:21306|MIM:613305|Ensembl:ENSG00000125652|HPRD:15425 19 19p13.3 alkB, alkylation repair homolog 7 (E. coli) protein-coding ALKBH7 alkB, alkylation repair homolog 7 (E. coli) O alkylated DNA repair protein alkB homolog 7|probable alpha-ketoglutarate-dependent dioxygenase ABH7|spermatogenesis associated 11|spermatogenesis cell proliferation related protein|spermatogenesis cell proliferation-related protein|spermatogenesis-associated protein 11 20121230 -9606 84267 C9orf64 RP11-575L7.5 - HGNC:28144|MIM:611342|Ensembl:ENSG00000165118|HPRD:12969|Vega:OTTHUMG00000020111 9 9q21.32 chromosome 9 open reading frame 64 protein-coding C9orf64 chromosome 9 open reading frame 64 O UPF0553 protein C9orf64 20121230 -9606 84268 RPAIN - HRIP|RIP HGNC:28641|Ensembl:ENSG00000129197|HPRD:14615|Vega:OTTHUMG00000177872 17 17p13.2 RPA interacting protein protein-coding RPAIN RPA interacting protein O RAP interaction protein|RPA-interacting protein|nuclear transporter 20121230 -9606 84269 CHCHD5 - C2orf9|MIC14 HGNC:17840|Ensembl:ENSG00000125611|HPRD:13046|Vega:OTTHUMG00000131312 2 2q13 coiled-coil-helix-coiled-coil-helix domain containing 5 protein-coding CHCHD5 coiled-coil-helix-coiled-coil-helix domain containing 5 O coiled-coil-helix-coiled-coil-helix domain-containing protein 5|mitochondrial intermembrane space cysteine motif protein of 14 kDa homolog 20121230 -9606 84270 C9orf89 - BinCARD|bA370F5.1 HGNC:28148|Ensembl:ENSG00000165233|HPRD:12985|Vega:OTTHUMG00000020243 9 9q22.31 chromosome 9 open reading frame 89 protein-coding C9orf89 chromosome 9 open reading frame 89 O Bcl10-interacting protein with CARD|bcl10-interacting CARD protein 20121230 -9606 84271 POLDIP3 RP1-222E13.9 PDIP46|SKAR HGNC:23782|MIM:611520|Ensembl:ENSG00000100227|HPRD:17875|Vega:OTTHUMG00000150887 22 22q13.2 polymerase (DNA-directed), delta interacting protein 3 protein-coding POLDIP3 polymerase (DNA-directed), delta interacting protein 3 O 46 kDa DNA polymerase delta interaction protein|RNA-binding protein P46|S6K1 Aly/REF-like target|p46|polymerase delta interacting protein 46|polymerase delta-interacting protein 3 20121230 -9606 84272 YIPF4 Nbla11189 FinGER4 HGNC:28145|Ensembl:ENSG00000119820|HPRD:14410|Vega:OTTHUMG00000128452 2 2p22.3 Yip1 domain family, member 4 protein-coding YIPF4 Yip1 domain family, member 4 O YIP1 family member 4|protein YIPF4|putative protein product of Nbla11189 20121230 -9606 84273 NOA1 - C4orf14|hAtNOS1|hNOA1|mAtNOS1 HGNC:28473|MIM:614919|Ensembl:ENSG00000084092|HPRD:12823|Vega:OTTHUMG00000128773 4 4q12 nitric oxide associated 1 protein-coding NOA1 nitric oxide associated 1 O nitric oxide associated-1|nitric oxide synthase, mitochondrial (putative)|nitric oxide-associated protein 1|putative ortholog of Arabidopsis mitochondrial nitric oxide synthase 20121230 -9606 84274 COQ5 - - HGNC:28722|Ensembl:ENSG00000110871|HPRD:17560|Vega:OTTHUMG00000169375 12 12q24.31 coenzyme Q5 homolog, methyltransferase (S. cerevisiae) protein-coding COQ5 coenzyme Q5 homolog, methyltransferase (S. cerevisiae) O 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial|ubiquinone biosynthesis methyltransferase COQ5, mitochondrial 20121230 -9606 84275 SLC25A33 - BMSC-MCP|PNC1 HGNC:29681|MIM:610816|Ensembl:ENSG00000171612|HPRD:14631|Vega:OTTHUMG00000001322 1 1p36.22 solute carrier family 25 (pyrimidine nucleotide carrier), member 33 protein-coding SLC25A33 solute carrier family 25 (pyrimidine nucleotide carrier), member 33 O PNC1 protein|bone marrow stromal cell mitochondrial carrier protein|huBMSC-MCP|mitochondrial carrier protein|novel mitochondrial carrier protein|solute carrier family 25 member 33|solute carrier family 25, member 33 20121230 -9606 84276 NICN1 - - HGNC:18317|MIM:611516|Ensembl:ENSG00000145029|HPRD:17631|Vega:OTTHUMG00000156848 3 3p21.31 nicolin 1 protein-coding NICN1 nicolin 1 O NPCEDRG|PGs5|nicolin-1|tubulin polyglutamylase complex subunit 5 20121230 -9606 84277 DNAJC30 - WBSCR18 HGNC:16410|Ensembl:ENSG00000176410|HPRD:10303|Vega:OTTHUMG00000023290 7 7q11.23 DnaJ (Hsp40) homolog, subfamily C, member 30 protein-coding DNAJC30 DnaJ (Hsp40) homolog, subfamily C, member 30 O Williams Beuren syndrome chromosome region 18|dnaJ homolog subfamily C member 30|williams-Beuren syndrome chromosomal region 18 protein 20121230 -9606 84278 HIATL2 RP11-330M2.2 - HGNC:23672|HPRD:17102 9 9q22.33 hippocampus abundant transcript-like 2 pseudo HIATL2 hippocampus abundant transcript-like 2 O - 20121230 -9606 84279 PRADC1 UNQ833/PRO1760 C2orf7|PAP21 HGNC:16047|Ensembl:ENSG00000135617|HPRD:12815|Vega:OTTHUMG00000129773 2 2p13.2 protease-associated domain containing 1 protein-coding PRADC1 protease-associated domain containing 1 O hPAP21|protease-associated domain-containing glycoprotein 21 kDa|protease-associated domain-containing protein 1|protease-associated domain-containing protein of 21 kDa 20121230 -9606 84280 BTBD10 - GMRP-1|GMRP1 HGNC:21445|Ensembl:ENSG00000148925|HPRD:17045|Vega:OTTHUMG00000165787 11 11p15.2 BTB (POZ) domain containing 10 protein-coding BTBD10 BTB (POZ) domain containing 10 O BTB (broad-complex tramtrack and bric-a-brac/pox virus and zinc finger) domain-containing protein 10|BTB/POZ domain-containing protein 10|K+ channel tetramerization protein 20121230 -9606 84281 C2orf88 - smAKAP HGNC:28191|Ensembl:ENSG00000187699|HPRD:14436|Vega:OTTHUMG00000154361 2 2q32.2 chromosome 2 open reading frame 88 protein-coding C2orf88 chromosome 2 open reading frame 88 O Uncharacterized protein FLJ90687|small A-kinase anchoring protein 20121230 -9606 84282 RNF135 L13 MMFD|REUL|Riplet HGNC:21158|MIM:611358|Ensembl:ENSG00000181481|HPRD:11506|Vega:OTTHUMG00000132867 17 17q11.2 ring finger protein 135 protein-coding RNF135 ring finger protein 135 O E3 ubiquitin-protein ligase RNF135|RIG-I E3 ubiquitin ligase 20121230 -9606 84283 TMEM79 RP11-443G18.1 - HGNC:28196|Ensembl:ENSG00000163472|HPRD:17481|Vega:OTTHUMG00000019788 1 1q22 transmembrane protein 79 protein-coding TMEM79 transmembrane protein 79 O - 20121230 -9606 84284 NTPCR RP4-659I19.2 C1orf57|HCR-NTPase|RP4-678E16.2 HGNC:28204|Ensembl:ENSG00000135778|HPRD:17486|Vega:OTTHUMG00000037822 1 1q42.2 nucleoside-triphosphatase, cancer-related protein-coding NTPCR nucleoside-triphosphatase, cancer-related O NTPase|cancer-related nucleoside-triphosphatase|human cancer-related NTPase|nucleoside triphosphate phosphohydrolase|nucleoside-triphosphatase C1orf57 20121230 -9606 84285 EIF1AD - haponin HGNC:28147|Ensembl:ENSG00000175376|HPRD:14411|Vega:OTTHUMG00000166671 11 11q13.1 eukaryotic translation initiation factor 1A domain containing protein-coding EIF1AD eukaryotic translation initiation factor 1A domain containing O eukaryotic translation initiation factor 1A domain-containing protein|probable RNA-binding protein EIF1AD 20121230 -9606 84286 TMEM175 - - HGNC:28709|Ensembl:ENSG00000127419|HPRD:14648|Vega:OTTHUMG00000118996 4 4p16.3 transmembrane protein 175 protein-coding TMEM175 transmembrane protein 175 O - 20121230 -9606 84287 ZDHHC16 RP11-452K12.10-003 APH2 HGNC:20714|Ensembl:ENSG00000171307|HPRD:15712|Vega:OTTHUMG00000018847 10 10q24.1 zinc finger, DHHC-type containing 16 protein-coding ZDHHC16 zinc finger, DHHC-type containing 16 O Abl-philin 2|DHHC-16|probable palmitoyltransferase ZDHHC16|zinc finger DHHC domain-containing protein 16|zinc finger, DHHC domain containing 16 20121230 -9606 84288 EFCAB2 - - HGNC:28166|Ensembl:ENSG00000203666|HPRD:14423|Vega:OTTHUMG00000040474 1 1q44 EF-hand calcium binding domain 2 protein-coding EFCAB2 EF-hand calcium binding domain 2 O EF-hand calcium-binding domain-containing protein 2 20121230 -9606 84289 ING5 - p28ING5 HGNC:19421|MIM:608525|Ensembl:ENSG00000168395|HPRD:16348|Vega:OTTHUMG00000151501 2 2q37.3 inhibitor of growth family, member 5 protein-coding ING5 inhibitor of growth family, member 5 O inhibitor of growth protein 5 20121230 -9606 84290 CAPNS2 - - HGNC:16371|Ensembl:ENSG00000256812|HPRD:16682|Vega:OTTHUMG00000167812 16 16q12.2 calpain, small subunit 2 protein-coding CAPNS2 calpain, small subunit 2 O CSS2|calcium-dependent protease small subunit 2|calpain small subunit 2 20121230 -9606 84292 WDR83 - MORG1 HGNC:32672|Ensembl:ENSG00000123154|HPRD:14730|Vega:OTTHUMG00000169356 19 19p13.2 WD repeat domain 83 protein-coding WDR83 WD repeat domain 83 O MAPK organizer 1|WD repeat domain-containing protein 83|mitogen-activated protein kinase organizer 1 20121230 -9606 84293 FAM213A PRO2290 C10orf58|PAMM HGNC:28651|Ensembl:ENSG00000122378|HPRD:12580|Vega:OTTHUMG00000018614 10 10q23.1 family with sequence similarity 213, member A protein-coding FAM213A family with sequence similarity 213, member A O UPF0765 protein C10orf58|peroxiredoxin (PRX)-like 2 activated in M-CSF stimulated monocytes|peroxiredoxin-like 2 activated in M-CSF stimulated monocytes|redox-regulatory protein FAM213A|redox-regulatory protein PAMM 20121230 -9606 84294 UTP23 - C8orf53 HGNC:28224|Ensembl:ENSG00000147679|HPRD:17499|Vega:OTTHUMG00000164958 8 8q24.11 UTP23, small subunit (SSU) processome component, homolog (yeast) protein-coding UTP23 UTP23, small subunit (SSU) processome component, homolog (yeast) O rRNA-processing protein UTP23 homolog 20121230 -9606 84295 PHF6 AC004383.6 BFLS|BORJ|CENP-31 HGNC:18145|MIM:300414|Ensembl:ENSG00000156531|HPRD:02330|Vega:OTTHUMG00000022453 X Xq26.3 PHD finger protein 6 protein-coding PHF6 PHD finger protein 6 O PHD-like zinc finger protein|centromere protein 31 20121230 -9606 84296 GINS4 - SLD5 HGNC:28226|MIM:610611|Ensembl:ENSG00000147536|HPRD:11583|Vega:OTTHUMG00000164079 8 8p11.21 GINS complex subunit 4 (Sld5 homolog) protein-coding GINS4 GINS complex subunit 4 (Sld5 homolog) O DNA replication complex GINS protein SLD5|SLD5 homolog 20121230 -9606 84298 LLPH - C12orf31|hLLP HGNC:28229|Ensembl:ENSG00000139233|HPRD:11308|Vega:OTTHUMG00000168959 12 12q14.3 LLP homolog, long-term synaptic facilitation (Aplysia) protein-coding LLPH LLP homolog, long-term synaptic facilitation (Aplysia) O human LAPS18-like protein|protein LLP homolog 20121230 -9606 84299 MIEN1 - C17orf37|C35|ORB3|RDX12|XTP4 HGNC:28230|MIM:611802|Ensembl:ENSG00000141741|HPRD:12681|Vega:OTTHUMG00000133252 17 17q12 migration and invasion enhancer 1 protein-coding MIEN1 migration and invasion enhancer 1 O HBV X-transactivated gene 4 protein|HBV XAg-transactivated protein 4|protein C17orf37 20121230 -9606 84300 MNF1 RP11-6B20.2 C6orf125|Cbp6|M19|bA6B20.2 HGNC:21237|MIM:614461|Ensembl:ENSG00000137288|HPRD:12847|Vega:OTTHUMG00000014534 6 6p21.31 mitochondrial nucleoid factor 1 protein-coding MNF1 mitochondrial nucleoid factor 1 O breast cancer associated protein SGA-81M|breast cancer-associated protein SGA-81M|cytochrome B protein synthesis 6 homolog|mitochondrial protein M19 20121230 -9606 84301 DDI2 - RP4-680D5.5 HGNC:24578|Ensembl:ENSG00000197312|HPRD:18702|Vega:OTTHUMG00000002381 1 1p36.21 DNA-damage inducible 1 homolog 2 (S. cerevisiae) protein-coding DDI2 DNA-damage inducible 1 homolog 2 (S. cerevisiae) O DDI1, DNA-damage inducible 1, homolog 2|DNA-damage inducible protein 2 (DDI2)|protein DDI1 homolog 2 20121230 -9606 84302 TMEM246 - C9orf125 HGNC:28180|Ensembl:ENSG00000165152|HPRD:12940|Vega:OTTHUMG00000020381 9 9q31.1 transmembrane protein 246 protein-coding TMEM246 transmembrane protein 246 O transmembrane protein C9orf125 20121230 -9606 84303 CHCHD6 - CHCM1|PPP1R23 HGNC:28184|Ensembl:ENSG00000159685|HPRD:13047|Vega:OTTHUMG00000159601 3 3q21.3 coiled-coil-helix-coiled-coil-helix domain containing 6 protein-coding CHCHD6 coiled-coil-helix-coiled-coil-helix domain containing 6 O coiled coil helix cristae morphology 1|coiled coil helix cristae morphology protein 1|coiled-coil-helix cristae morphology 1|coiled-coil-helix-coiled-coil-helix domain-containing protein 6, mitochondrial|protein phosphatase 1, regulatory subunit 23 20121230 -9606 84304 NUDT22 PP11246 - HGNC:28189|Ensembl:ENSG00000149761|HPRD:14434|Vega:OTTHUMG00000167791 11 11q13.1 nudix (nucleoside diphosphate linked moiety X)-type motif 22 protein-coding NUDT22 nudix (nucleoside diphosphate linked moiety X)-type motif 22 O nucleoside diphosphate-linked moiety X motif 22|nudix motif 22 20121230 -9606 84305 WIBG - PYM HGNC:30258|Ensembl:ENSG00000170473|HPRD:17940|Vega:OTTHUMG00000170220 12 12q13.2 within bgcn homolog (Drosophila) protein-coding WIBG within bgcn homolog (Drosophila) O partner of Y14 and mago|protein wibg homolog 20121230 -9606 84306 PDCD2L - - HGNC:28194|Ensembl:ENSG00000126249|HPRD:17480|Vega:OTTHUMG00000182089 19 19q13.11 programmed cell death 2-like protein-coding PDCD2L programmed cell death 2-like O programmed cell death protein 2-like 20121230 -9606 84307 ZNF397 - ZNF47|ZSCAN15 HGNC:18818|MIM:609601|Ensembl:ENSG00000186812|HPRD:18335|Vega:OTTHUMG00000178532 18 18q12.2 zinc finger protein 397 protein-coding ZNF397 zinc finger protein 397 O zinc finger and SCAN domain-containing protein 15|zinc finger protein 47 20121230 -9606 84309 NUDT16L1 - SDOS HGNC:28154|Ensembl:ENSG00000168101|HPRD:15309|Vega:OTTHUMG00000129471 16 16p13.3 nudix (nucleoside diphosphate linked moiety X)-type motif 16-like 1 protein-coding NUDT16L1 nudix (nucleoside diphosphate linked moiety X)-type motif 16-like 1 O NUDT16-like protein 1|protein syndesmos 20121230 -9606 84310 C7orf50 FP15621 YCR016W HGNC:22421|Ensembl:ENSG00000146540|HPRD:14413|Vega:OTTHUMG00000151477 7 7p22.3 chromosome 7 open reading frame 50 protein-coding C7orf50 chromosome 7 open reading frame 50 O uncharacterized protein C7orf50 20121230 -9606 84311 MRPL45 - L45mt|MRP-L45 HGNC:16651|MIM:611850|Ensembl:ENSG00000174100|HPRD:14764|Vega:OTTHUMG00000133120 17 17q21.2 mitochondrial ribosomal protein L45 protein-coding MRPL45 mitochondrial ribosomal protein L45 O 39S ribosomal protein L45, mitochondrial 20121230 -9606 84312 BRMS1L - BRMS1 HGNC:20512|Ensembl:ENSG00000100916|HPRD:16564|Vega:OTTHUMG00000170559 14 14q13.2 breast cancer metastasis-suppressor 1-like protein-coding BRMS1L breast cancer metastasis-suppressor 1-like O BRMS1-homolog protein p40|BRMS1-like protein p40|breast cancer metastasis-suppressor 1-like protein 20121230 -9606 84313 VPS25 - DERP9|EAP20|FAP20 HGNC:28122|MIM:610907|Ensembl:ENSG00000131475|HPRD:14396|Vega:OTTHUMG00000180649 17 17q21.31 vacuolar protein sorting 25 homolog (S. cerevisiae) protein-coding VPS25 vacuolar protein sorting 25 homolog (S. cerevisiae) O ELL-associated protein of 20 kDa|ESCRT-II complex subunit VPS25|dermal papilla-derived protein 9|vacuolar protein-sorting-associated protein 25 20121230 -9606 84314 TMEM107 DC20 GRVS638|PRO1268 HGNC:28128|Ensembl:ENSG00000179029|HPRD:14400|Vega:OTTHUMG00000166276 17 17p13.1 transmembrane protein 107 protein-coding TMEM107 transmembrane protein 107 O - 20121230 -9606 84315 MON1A - SAND1 HGNC:28207|MIM:611464|Ensembl:ENSG00000164077|HPRD:17586|Vega:OTTHUMG00000156737 3 3p21.31 MON1 homolog A (yeast) protein-coding MON1A MON1 homolog A (yeast) O vacuolar fusion protein MON1 homolog A 20121230 -9606 84316 LSMD1 - PFAAP2 HGNC:28212|Ensembl:ENSG00000183011|HPRD:17491|Vega:OTTHUMG00000178023 17 17p13.1 LSM domain containing 1 protein-coding LSMD1 LSM domain containing 1 O LSM domain-containing protein 1|phosphonoformate immuno-associated protein 2|regulated by phosphonoformate 20121230 -9606 84317 CCDC115 - ccp1 HGNC:28178|MIM:613734|Ensembl:ENSG00000136710|HPRD:14428|Vega:OTTHUMG00000131631 2 2q21.1 coiled-coil domain containing 115 protein-coding CCDC115 coiled-coil domain containing 115 O coiled-coil domain-containing protein 115 20121230 -9606 84318 CCDC77 - - HGNC:28203|Ensembl:ENSG00000120647|HPRD:17485|Vega:OTTHUMG00000129214 12 12p13.33 coiled-coil domain containing 77 protein-coding CCDC77 coiled-coil domain containing 77 O coiled-coil domain-containing protein 77 20121230 -9606 84319 CMSS1 - C3orf26 HGNC:28666|Ensembl:ENSG00000184220|HPRD:11351|Vega:OTTHUMG00000159054 3 3q12.1 cms1 ribosomal small subunit homolog (yeast) protein-coding CMSS1 cms1 ribosomal small subunit homolog (yeast) O uncharacterized protein C3orf26 20121230 -9606 84320 ACBD6 - - HGNC:23339|Ensembl:ENSG00000135847|HPRD:12416|Vega:OTTHUMG00000035117 1 1q25.1 acyl-CoA binding domain containing 6 protein-coding ACBD6 acyl-CoA binding domain containing 6 O acyl-CoA-binding domain-containing protein 6|acyl-Coenzyme A binding domain containing 6 20121230 -9606 84321 THOC3 - TEX1 HGNC:19072|MIM:606929|Ensembl:ENSG00000051596|HPRD:09497|Vega:OTTHUMG00000130658 5 5q35.2 THO complex 3 protein-coding THOC3 THO complex 3 O TEX1 homolog|THO complex subunit 3|hTREX45|tho3 20121230 -9606 84322 C18orf12 - HEIL1|HsT2508 HGNC:24918 18 18q21.1 chromosome 18 open reading frame 12 unknown C18orf12 chromosome 18 open reading frame 12 O - 20121230 -9606 84324 SARNP - CIP29|HCC1|HSPC316|THO1 HGNC:24432|MIM:610049|Ensembl:ENSG00000205323|HPRD:16716|Vega:OTTHUMG00000170441 12 12q13.2 SAP domain containing ribonucleoprotein protein-coding SARNP SAP domain containing ribonucleoprotein O SAP domain-containing ribonucleoprotein|cytokine induced protein 29 kDa|cytokine-induced protein of 29 kDa|hepatocellular carcinoma 1|nuclear protein Hcc-1|proliferation associated cytokine-inducible protein CIP29|proliferation-associated cytokine-inducible protein CIP29 20121230 -9606 84326 C16orf13 JFP2 - HGNC:14141|Ensembl:ENSG00000130731|HPRD:17482|Vega:OTTHUMG00000047855 16 16p13.3 chromosome 16 open reading frame 13 protein-coding C16orf13 chromosome 16 open reading frame 13 O UPF0585 protein C16orf13 20121230 -9606 84327 ZBED3 - - HGNC:20711|Ensembl:ENSG00000132846|HPRD:15687|Vega:OTTHUMG00000102131 5 5q13.3 zinc finger, BED-type containing 3 protein-coding ZBED3 zinc finger, BED-type containing 3 O 2610005H11Rik|zinc finger BED domain-containing protein 3|zinc finger, BED domain containing 3 20121230 -9606 84328 LZIC - - HGNC:17497|MIM:610458|Ensembl:ENSG00000162441|HPRD:14340|Vega:OTTHUMG00000001804 1 1p36.22 leucine zipper and CTNNBIP1 domain containing protein-coding LZIC leucine zipper and CTNNBIP1 domain containing O leucine zipper and CTNNBIP1 domain-containing protein|leucine zipper and ICAT homologous domain-containing protein|leucine zipper domain and ICAT homologous domain containing|protein LZIC 20121230 -9606 84329 HVCN1 UNQ578/PRO1140 HV1|VSOP HGNC:28240|MIM:611227|Ensembl:ENSG00000122986|HPRD:17507|Vega:OTTHUMG00000169530 12 12q24.11 hydrogen voltage-gated channel 1 protein-coding HVCN1 hydrogen voltage-gated channel 1 O voltage sensor domain-only protein|voltage-gated hydrogen channel 1 20121230 -9606 84330 ZNF414 - ZFP414 HGNC:20630|Ensembl:ENSG00000133250|HPRD:17511 19 19p13.2 zinc finger protein 414 protein-coding ZNF414 zinc finger protein 414 O - 20121230 -9606 84331 FAM195A - C16orf14|c349E10.1 HGNC:14142|Ensembl:ENSG00000172366|HPRD:17503|Vega:OTTHUMG00000048042 16 16p13.3 family with sequence similarity 195, member A protein-coding FAM195A family with sequence similarity 195, member A O protein FAM195A 20121230 -9606 84332 DYDC2 - - HGNC:23468|Ensembl:ENSG00000133665|HPRD:11311|Vega:OTTHUMG00000018610 10 10q23.1 DPY30 domain containing 2 protein-coding DYDC2 DPY30 domain containing 2 O DPY30 domain-containing protein 2 20121230 -9606 84333 PCGF5 - RNF159 HGNC:28264|Ensembl:ENSG00000180628|HPRD:17825|Vega:OTTHUMG00000018740 10 10q23.32 polycomb group ring finger 5 protein-coding PCGF5 polycomb group ring finger 5 O RING finger protein 159|polycomb group RING finger protein 5|ring finger protein (C3HC4 type) 159 20121230 -9606 84334 APOPT1 - APOP1|C14orf153 HGNC:20492|Ensembl:ENSG00000256053|Ensembl:ENSG00000256500|HPRD:12637|Vega:OTTHUMG00000153929 14 14q32.33 apoptogenic 1, mitochondrial protein-coding APOPT1 apoptogenic 1, mitochondrial O UPF0671 protein C14orf153|apoptogenic protein 1, mitochondrial 20121230 -9606 84335 AKT1S1 - Lobe|PRAS40 HGNC:28426|MIM:610221|Ensembl:ENSG00000204673|HPRD:12441|Vega:OTTHUMG00000150246 19 19q13.33 AKT1 substrate 1 (proline-rich) protein-coding AKT1S1 AKT1 substrate 1 (proline-rich) O 40 kDa proline-rich AKT substrate|proline-rich AKT1 substrate 1|proline-rich Akt substrate, 40 kDa 20121230 -9606 84336 TMEM101 - - HGNC:28653|Ensembl:ENSG00000091947|HPRD:14623|Vega:OTTHUMG00000181803 17 17q21.31 transmembrane protein 101 protein-coding TMEM101 transmembrane protein 101 O putative NF-kappa-B-activating protein 130 20121230 -9606 84337 ELOF1 - ELF1 HGNC:28691|Ensembl:ENSG00000130165|HPRD:14639|Vega:OTTHUMG00000182034 19 19p13.2 elongation factor 1 homolog (S. cerevisiae) protein-coding ELOF1 elongation factor 1 homolog (S. cerevisiae) O elongation factor 1 homolog (ELF1, S. cerevisiae)|transcription elongation factor 1 homolog 20121230 -9606 84340 GFM2 MSTP027 EF-G2mt|EFG2|MRRF2|MST027|RRF2|RRF2mt|hEFG2|mEF-G 2 HGNC:29682|MIM:606544|Ensembl:ENSG00000164347|HPRD:09413|Vega:OTTHUMG00000102058 5 5q13 G elongation factor, mitochondrial 2 protein-coding GFM2 G elongation factor, mitochondrial 2 O MSTP027|elongation factor G 2, mitochondrial|mitochondrial elongation factor G2|mitochondrial ribosome recycling factor 2|ribosome-releasing factor 2, mitochondrial 20121230 -9606 84342 COG8 hCG_2027080 CDG2H|DOR1 HGNC:18623|MIM:606979|Ensembl:ENSG00000213380|HPRD:07374|Vega:OTTHUMG00000154277 16 16q22.1 component of oligomeric golgi complex 8 protein-coding COG8 component of oligomeric golgi complex 8 O COG complex subunit 8|conserved oligomeric Golgi complex subunit 8|conserved oligomeric golgi complex component 8|dependent on RIC1 20121230 -9606 84343 HPS3 - SUTAL HGNC:15597|MIM:606118|Ensembl:ENSG00000163755|HPRD:05835|Vega:OTTHUMG00000159548 3 3q24 Hermansky-Pudlak syndrome 3 protein-coding HPS3 Hermansky-Pudlak syndrome 3 O Hermansky-Pudlak syndrome 3 protein 20121230 -9606 84364 ARFGAP2 Nbla10535 IRZ|NBLA10535|ZFP289|ZNF289 HGNC:13504|MIM:606908|Ensembl:ENSG00000149182|HPRD:06069|Vega:OTTHUMG00000166773 11 11p11.2-p11.12 ADP-ribosylation factor GTPase activating protein 2 protein-coding ARFGAP2 ADP-ribosylation factor GTPase activating protein 2 O ADP-ribosylation factor GTPase-activating protein 2|GTPase-activating protein ZNF289|zinc finger protein 289, ID1 regulated 20121230 -9606 84365 MKI67IP - NIFK|Nopp34 HGNC:17838|MIM:611970|Ensembl:ENSG00000155438|HPRD:17576|Vega:OTTHUMG00000131442 2 2q14.3 MKI67 (FHA domain) interacting nucleolar phosphoprotein protein-coding MKI67IP MKI67 (FHA domain) interacting nucleolar phosphoprotein O MKI67 FHA domain-interacting nucleolar phosphoprotein|hNIFK|nucleolar phosphoprotein Nopp34|nucleolar protein interacting with the FHA domain of pKi-67 20121230 -9606 84366 PRAC - C17orf92 HGNC:30591|MIM:609819|Ensembl:ENSG00000159182|HPRD:17897|Vega:OTTHUMG00000159899 17 17q21 prostate cancer susceptibility candidate protein-coding PRAC prostate cancer susceptibility candidate O prostate, rectum and colon expressed gene protein|small nuclear protein PRAC 20121230 -9606 84376 HOOK3 - HK3 HGNC:23576|MIM:607825|Ensembl:ENSG00000168172|HPRD:09699|Vega:OTTHUMG00000165278 8 8p11.21 hook homolog 3 (Drosophila) protein-coding HOOK3 hook homolog 3 (Drosophila) O h-hook3|hHK3|protein Hook homolog 3 20121230 -9606 84417 C2orf40 UNQ761/PRO1508 ECRG4 HGNC:24642|MIM:611752|Ensembl:ENSG00000119147|HPRD:13261|Vega:OTTHUMG00000130921 2 2q12.2 chromosome 2 open reading frame 40 protein-coding C2orf40 chromosome 2 open reading frame 40 O augurin|esophageal cancer related gene 4 protein|esophageal cancer-related gene 4 protein 20121230 -9606 84418 CYSTM1 ORF1-FL49 C5orf32 HGNC:30239|Ensembl:ENSG00000120306|HPRD:15091|Vega:OTTHUMG00000129243 5 5q31.3 cysteine-rich transmembrane module containing 1 protein-coding CYSTM1 cysteine-rich transmembrane module containing 1 O UPF0467 protein C5orf32|cysteine-rich and transmembrane domain-containing protein 1|putative nuclear protein ORF1-FL49 20121230 -9606 84419 C15orf48 - FOAP-11|NMES1 HGNC:29898|MIM:608409|Ensembl:ENSG00000166920|HPRD:16332|Vega:OTTHUMG00000131424 15 15q21.1 chromosome 15 open reading frame 48 protein-coding C15orf48 chromosome 15 open reading frame 48 O normal mucosa of esophagus specific 1|normal mucosa of esophagus-specific gene 1 protein 20121230 -9606 84432 PROK1 UNQ600/PRO1186 EGVEGF|PK1|PRK1 HGNC:18454|MIM:606233|Ensembl:ENSG00000143125|HPRD:06946|Vega:OTTHUMG00000011569 1 1p21 prokineticin 1 protein-coding PROK1 prokineticin 1 O EG-VEGF|black mamba toxin-related protein|endocrine-gland-derived vascular endothelial growth factor|mambakine|prokineticin-1 20121230 -9606 84433 CARD11 - BIMP3|CARMA1 HGNC:16393|MIM:607210|Ensembl:ENSG00000198286|HPRD:06234|Vega:OTTHUMG00000023023 7 7p22 caspase recruitment domain family, member 11 protein-coding CARD11 caspase recruitment domain family, member 11 O CARD-containing MAGUK protein 1|bcl10-interacting maguk protein 3|card-maguk protein 1|carma 1|caspase recruitment domain-containing protein 11 20121230 -9606 84434 THCYTX - FTX MIM:300331 X - Thrombocytosis, familial X-linked unknown - - - - 20120622 -9606 84435 GPR123 RP13-439H18.10-002 - HGNC:13838|MIM:612302|Ensembl:ENSG00000197177|HPRD:17058|Vega:OTTHUMG00000019304 10 10q26 G protein-coupled receptor 123 protein-coding GPR123 G protein-coupled receptor 123 O probable G-protein coupled receptor 123 20121230 -9606 84436 ZNF528 - - HGNC:29384|Ensembl:ENSG00000167555|HPRD:15820|Vega:OTTHUMG00000156494 19 19q13 zinc finger protein 528 protein-coding ZNF528 zinc finger protein 528 O - 20121230 -9606 84437 MSANTD4 DC25 KIAA1826 HGNC:29383|Ensembl:ENSG00000170903|HPRD:11163|Vega:OTTHUMG00000166240 11 11q22 Myb/SANT-like DNA-binding domain containing 4 with coiled-coils protein-coding MSANTD4 Myb/SANT-like DNA-binding domain containing 4 with coiled-coils O myb/SANT-like DNA-binding domain-containing protein 4 20121230 -9606 84439 HHIPL1 UNQ9245/PRO34761 KIAA1822|UNQ9245 HGNC:19710|Ensembl:ENSG00000182218|HPRD:13895|Vega:OTTHUMG00000171509 14 14q32 HHIP-like 1 protein-coding HHIPL1 HHIP-like 1 O ARAR9245|HHIP-like protein 1 20121230 -9606 84440 RAB11FIP4 - RAB11-FIP4 HGNC:30267|MIM:611999|Ensembl:ENSG00000131242|HPRD:11466|Vega:OTTHUMG00000132787 17 17q11.2 RAB11 family interacting protein 4 (class II) protein-coding RAB11FIP4 RAB11 family interacting protein 4 (class II) O FIP4-Rab11|arfophilin-2|rab11 family-interacting protein 4 20121230 -9606 84441 MAML2 - MAM-3|MAM2|MAM3|MLL-MAML2 HGNC:16259|MIM:607537|Ensembl:ENSG00000184384|HPRD:09608|Vega:OTTHUMG00000167677 11 11q21 mastermind-like 2 (Drosophila) protein-coding MAML2 mastermind-like 2 (Drosophila) O mam-2|mastermind-like protein 2 20121230 -9606 84443 FRMPD3 RP5-1070B1.1 - HGNC:29382|Ensembl:ENSG00000147234|Vega:OTTHUMG00000022165 X Xq22 FERM and PDZ domain containing 3 protein-coding FRMPD3 FERM and PDZ domain containing 3 O FERM and PDZ domain-containing protein 3 20121230 -9606 84444 DOT1L - DOT1|KMT4 HGNC:24948|MIM:607375|Ensembl:ENSG00000104885|HPRD:10455|Vega:OTTHUMG00000150431 19 19p13.3 DOT1-like, histone H3 methyltransferase (S. cerevisiae) protein-coding DOT1L DOT1-like, histone H3 methyltransferase (S. cerevisiae) O DOT1-like protein|H3-K79-HMTase|histone H3-K79 methyltransferase|histone methyltransferase DOT1L|histone-lysine N-methyltransferase, H3 lysine-79 specific|lysine N-methyltransferase 4 20121230 -9606 84445 LZTS2 RP11-108L7.8 LAPSER1 HGNC:29381|MIM:610454|Ensembl:ENSG00000107816|HPRD:14341|Vega:OTTHUMG00000018914 10 10q24 leucine zipper, putative tumor suppressor 2 protein-coding LZTS2 leucine zipper, putative tumor suppressor 2 O hLZTS2|leucine zipper putative tumor suppressor 2 20121230 -9606 84446 BRSK1 - hSAD1 HGNC:18994|MIM:609235|Ensembl:ENSG00000160469|HPRD:12533|Vega:OTTHUMG00000180735 19 19q13.4 BR serine/threonine kinase 1 protein-coding BRSK1 BR serine/threonine kinase 1 O BR serine/threonine-protein kinase 1|SAD1 homolog|SAD1 kinase|SadB kinase short isoform|brain-selective kinase 1|brain-specific serine/threonine-protein kinase 1|protein kinase SAD1A|serine/threonine-protein kinase BRSK1|serine/threonine-protein kinase SAD-B|synapses of Amphids Defective homolog 1 20121230 -9606 84447 SYVN1 - DER3|HRD1 HGNC:20738|MIM:608046|Ensembl:ENSG00000162298|HPRD:07618|Vega:OTTHUMG00000165607 11 11q13 synovial apoptosis inhibitor 1, synoviolin protein-coding SYVN1 synovial apoptosis inhibitor 1, synoviolin O E3 ubiquitin-protein ligase synoviolin|HMG-coA reductase degradation 1 homolog 20121230 -9606 84448 ABLIM2 - - HGNC:19195|MIM:612544|Ensembl:ENSG00000163995|Vega:OTTHUMG00000057427 4 4p16.1 actin binding LIM protein family, member 2 protein-coding ABLIM2 actin binding LIM protein family, member 2 O abLIM-2|actin binding LIM protein 2|actin-binding LIM protein 2|actin-binding LIM protein family member 2 20121230 -9606 84449 ZNF333 - - HGNC:15624|MIM:611811|Ensembl:ENSG00000160961|HPRD:15776 19 19p13 zinc finger protein 333 protein-coding ZNF333 zinc finger protein 333 O - 20121230 -9606 84450 ZNF512 - - HGNC:29380|Ensembl:ENSG00000243943|HPRD:10336|Vega:OTTHUMG00000097786 2 2p23 zinc finger protein 512 protein-coding ZNF512 zinc finger protein 512 O - 20121230 -9606 84451 KIAA1804 - MLK4|RP5-862P8.2|dJ862P8.3 MIM:614793|Ensembl:ENSG00000143674|HPRD:10087|Vega:OTTHUMG00000037889 1 1q42 mixed lineage kinase 4 protein-coding - - - mitogen-activated protein kinase kinase kinase MLK4 20121230 -9606 84455 EFCAB7 - RP4-534K7.1 HGNC:29379|Ensembl:ENSG00000203965|HPRD:17226|Vega:OTTHUMG00000008983 1 1p31.3 EF-hand calcium binding domain 7 protein-coding EFCAB7 EF-hand calcium binding domain 7 O EF-hand calcium-binding domain-containing protein 7 20121230 -9606 84456 L3MBTL3 - MBT-1|MBT1|RP11-73O6.1 HGNC:23035|Ensembl:ENSG00000198945|HPRD:11222|Vega:OTTHUMG00000015554 6 6q23 l(3)mbt-like 3 (Drosophila) protein-coding L3MBTL3 l(3)mbt-like 3 (Drosophila) O H-l(3)mbt-like protein 3|l(3)mbt-like protein 3|lethal(3)malignant brain tumor-like protein 3 20121230 -9606 84457 PHYHIPL UNQ6309/PRO20934 - HGNC:29378|Ensembl:ENSG00000165443|HPRD:15131|Vega:OTTHUMG00000018276 10 10q11 phytanoyl-CoA 2-hydroxylase interacting protein-like protein-coding PHYHIPL phytanoyl-CoA 2-hydroxylase interacting protein-like O phytanoyl-CoA hydroxylase-interacting protein-like 20121230 -9606 84458 LCOR - MLR2 HGNC:29503|MIM:607698|Ensembl:ENSG00000196233|HPRD:07609|Vega:OTTHUMG00000018841 10 10q24 ligand dependent nuclear receptor corepressor protein-coding LCOR ligand dependent nuclear receptor corepressor O ligand-dependent corepressor|mblk1-related protein 2 20121230 -9606 84460 ZMAT1 GHc-311G7.1 - HGNC:29377|Ensembl:ENSG00000166432|HPRD:10029|Vega:OTTHUMG00000022044 X Xq21 zinc finger, matrin-type 1 protein-coding ZMAT1 zinc finger, matrin-type 1 O zinc finger matrin-type protein 1 20121230 -9606 84461 NEURL4 - - HGNC:34410|Ensembl:ENSG00000215041|HPRD:13894|Vega:OTTHUMG00000132319 17 17p13 neuralized homolog 4 (Drosophila) protein-coding NEURL4 neuralized homolog 4 (Drosophila) O neuralized-like protein 4 20121230 -9606 84464 SLX4 - BTBD12|FANCP|MUS312 HGNC:23845|MIM:613278|Ensembl:ENSG00000188827|HPRD:12537|Vega:OTTHUMG00000074089 16 16p13.3 SLX4 structure-specific endonuclease subunit homolog (S. cerevisiae) protein-coding SLX4 SLX4 structure-specific endonuclease subunit homolog (S. cerevisiae) O BTB (POZ) domain containing 12|BTB/POZ domain-containing protein 12|structure-specific endonuclease subunit SLX4 20121230 -9606 84465 MEGF11 UNQ1949 - HGNC:29635|MIM:612454|Ensembl:ENSG00000157890|HPRD:14385|Vega:OTTHUMG00000133175 15 15q22.31 multiple EGF-like-domains 11 protein-coding MEGF11 multiple EGF-like-domains 11 O multiple EGF-like domains protein 11|multiple epidermal growth factor-like domains protein 11 20121230 -9606 84466 MEGF10 - EMARDD HGNC:29634|MIM:612453|Ensembl:ENSG00000145794|HPRD:14384|Vega:OTTHUMG00000128984 5 5q33 multiple EGF-like-domains 10 protein-coding MEGF10 multiple EGF-like-domains 10 O multiple epidermal growth factor-like domains protein 10 20121230 -9606 84467 FBN3 - - HGNC:18794|MIM:608529|Ensembl:ENSG00000142449|HPRD:10538 19 19p13 fibrillin 3 protein-coding FBN3 fibrillin 3 O fibrillin-3 20121230 -9606 84498 FAM120B - CCPG|KIAA1838|PGCC1|dJ894D12.1 HGNC:21109|MIM:612266|Ensembl:ENSG00000112584|HPRD:11165|Vega:OTTHUMG00000016080 6 6q27 family with sequence similarity 120B protein-coding FAM120B family with sequence similarity 120B O PPARG constitutive coactivator 1|PPARgamma constitutive coactivator 1|constitutive coactivator of PPAR-gamma|constitutive coactivator of PPARG|constitutive coactivator of peroxisome proliferator-activated receptor gamma 20121230 -9606 84501 SPIRE2 - Spir-2 HGNC:30623|MIM:609217|Ensembl:ENSG00000204991|HPRD:18099|Vega:OTTHUMG00000173039 16 16q24 spire homolog 2 (Drosophila) protein-coding SPIRE2 spire homolog 2 (Drosophila) O protein spire homolog 2 20121230 -9606 84502 JPH4 - JP4|JPHL1 HGNC:20156|Ensembl:ENSG00000092051|HPRD:17170|Vega:OTTHUMG00000028769 14 14q11 junctophilin 4 protein-coding JPH4 junctophilin 4 O JP-4|junctophilin like 1|junctophilin-4|junctophilin-like 1 protein 20121230 -9606 84503 ZNF527 - - HGNC:29385|Ensembl:ENSG00000189164|Vega:OTTHUMG00000048173 19 19q13.1 zinc finger protein 527 protein-coding ZNF527 zinc finger protein 527 O - 20121230 -9606 84504 NKX6-2 RP11-288G11.2 GTX|NKX6.2|NKX6B HGNC:19321|MIM:605955|Ensembl:ENSG00000148826|HPRD:09336|Vega:OTTHUMG00000019294 10 10q26 NK6 homeobox 2 protein-coding NKX6-2 NK6 homeobox 2 O NK homeobox family 6, B|NK6 transcription factor related, locus 2|glial and testis-specific homeobox protein|homeobox 6B|homeobox protein NK-6 homolog B|homeobox protein Nkx-6.2 20121230 -9606 84513 PPAPDC1B - DPPL1|HTPAP HGNC:25026|MIM:610626|Ensembl:ENSG00000147535|HPRD:13720|Vega:OTTHUMG00000165104 8 8p11.23 phosphatidic acid phosphatase type 2 domain containing 1B protein-coding PPAPDC1B phosphatidic acid phosphatase type 2 domain containing 1B O diacylglycerol pyrophosphate like 1|phosphatidate phosphatase PPAPDC1B|phosphatidic acid phosphatase type 2 domain-containing protein 1B 20121230 -9606 84514 GHDC - D11LGP1|LGP1 HGNC:24438|MIM:608587|Ensembl:ENSG00000167925|HPRD:16352|Vega:OTTHUMG00000180108 17 17q21.2 GH3 domain containing protein-coding GHDC GH3 domain containing O GH3 domain-containing protein|homolog of mouse LGP1 20121230 -9606 84515 MCM8 - C20orf154|REC|dJ967N21.5 HGNC:16147|MIM:608187|Ensembl:ENSG00000125885|HPRD:12186|Vega:OTTHUMG00000031822 20 20p12.3 minichromosome maintenance complex component 8 protein-coding MCM8 minichromosome maintenance complex component 8 O DNA helicase MCM8|DNA replication licensing factor MCM8|MCM8 minichromosome maintenance deficient 8|REC homolog|minichromosome maintenance 8 20121230 -9606 84516 DCTN5 - - HGNC:24594|MIM:612962|Ensembl:ENSG00000166847|HPRD:14551|Vega:OTTHUMG00000131610 16 16p12.2 dynactin 5 (p25) protein-coding DCTN5 dynactin 5 (p25) O dynactin 4|dynactin subunit 5|dynactin subunit p25 20121230 -9606 84517 ACTRT3 - ARP-T3|ARPM1 HGNC:24022|MIM:608534|Ensembl:ENSG00000184378|HPRD:12253 3 3q26.2 actin-related protein T3 protein-coding ACTRT3 actin-related protein T3 O actin related protein M1|actin-related protein M1 20121230 -9606 84518 CNFN - PLAC8L2 HGNC:30183|MIM:611764|Ensembl:ENSG00000105427|HPRD:16729 19 19q13.2 cornifelin protein-coding CNFN cornifelin O cornefied envelope protein cornefilin 20121230 -9606 84519 ACRBP - CT23|OY-TES-1|SP32 HGNC:17195|MIM:608352|Ensembl:ENSG00000111644|HPRD:16322|Vega:OTTHUMG00000168715 12 12p13.31 acrosin binding protein protein-coding ACRBP acrosin binding protein O acrosin-binding protein|cancer/testis antigen 23|cancer/testis antigen OY-TES-1|proacrosin binding protein sp32 20121230 -9606 84520 C14orf142 - PNAS-127 HGNC:20356|Ensembl:ENSG00000170270|HPRD:16608|Vega:OTTHUMG00000171267 14 14q32.12 chromosome 14 open reading frame 142 protein-coding C14orf142 chromosome 14 open reading frame 142 O uncharacterized protein C14orf142 20121230 -9606 84522 JAGN1 - GL009 HGNC:26926|Ensembl:ENSG00000171135|HPRD:13749|Vega:OTTHUMG00000128523 3 3p25.2 jagunal homolog 1 (Drosophila) protein-coding JAGN1 jagunal homolog 1 (Drosophila) O protein jagunal homolog 1 20121230 -9606 84524 ZC3H8 - Fliz1|ZC3HDC8 HGNC:30941|Ensembl:ENSG00000144161|HPRD:11695|Vega:OTTHUMG00000153270 2 2q13 zinc finger CCCH-type containing 8 protein-coding ZC3H8 zinc finger CCCH-type containing 8 O zinc finger CCCH domain-containing protein 8|zinc finger CCCH type domain containing 8|zinc finger CCCH-type domain containing 8 20121230 -9606 84525 HOPX - CAMEO|HOD|HOP|LAGY|NECC1|OB1|SMAP31|TOTO HGNC:24961|MIM:607275|Ensembl:ENSG00000171476|HPRD:06280|Vega:OTTHUMG00000128768 4 4q12 HOP homeobox protein-coding HOPX HOP homeobox O homeodomain-only protein|lung cancer-associated Y protein|not expressed in choriocarcinoma clone 1|not expressed in choriocarcinoma protein 1|odd homeobox 1 protein|odd homeobox protein 1 20121230 -9606 84527 ZNF559 - NBLA00121 HGNC:28197|Ensembl:ENSG00000188321|HPRD:18352|Vega:OTTHUMG00000179942 19 19p13.2 zinc finger protein 559 protein-coding ZNF559 zinc finger protein 559 O putative protein product of Nbla00121 20121230 -9606 84528 RHOXF2 - CT107|PEPP-2|PEPP2|THG1 HGNC:30011|MIM:300447|Ensembl:ENSG00000131721|Vega:OTTHUMG00000022296 X Xq24 Rhox homeobox family, member 2 protein-coding RHOXF2 Rhox homeobox family, member 2 O PEPP subfamily gene 2|cancer/testis antigen 107|homeobox protein from AL590526|paired-like homeobox protein PEPP-2|rhox homeobox family member 2|testis homeobox gene 1 20121230 -9606 84529 C15orf41 - HH114 HGNC:26929|Ensembl:ENSG00000186073|HPRD:13650|Vega:OTTHUMG00000172659 15 15q14 chromosome 15 open reading frame 41 protein-coding C15orf41 chromosome 15 open reading frame 41 O uncharacterized protein C15orf41 20121230 -9606 84530 SRRM4 - KIAA1853|MU-MB-2.76|nSR100 HGNC:29389|MIM:613103|Ensembl:ENSG00000139767|HPRD:13897|Vega:OTTHUMG00000168928 12 12q24.23 serine/arginine repetitive matrix 4 protein-coding SRRM4 serine/arginine repetitive matrix 4 O medulloblastoma antigen MU-MB-2.76|neural-specific SR-related protein of 100 kDa|neural-specific serine/arginine repetitive splicing factor of 100 kDa|serine/arginine repetitive matrix protein 4 20121230 -9606 84532 ACSS1 RP4-568C11.1 ACAS2L|ACECS1|AceCS2L HGNC:16091|MIM:614355|Ensembl:ENSG00000154930|HPRD:12413|Vega:OTTHUMG00000032112 20 20p11.23-p11.21 acyl-CoA synthetase short-chain family member 1 protein-coding ACSS1 acyl-CoA synthetase short-chain family member 1 O acetate--CoA ligase 2|acetyl-coenzyme A synthetase 2-like, mitochondrial 20121230 -9606 84536 C21orf67 - C21orf69|PRED54 HGNC:15707|HPRD:10762 21 21q22.3 chromosome 21 open reading frame 67 miscRNA C21orf67 chromosome 21 open reading frame 67 O - 20121230 -9606 84539 MCHR2 - GPR145|GPRv17|MCH-2R|MCH-R2|MCH2|MCH2R|MCHR-2|SLT HGNC:20867|MIM:606111|Ensembl:ENSG00000152034|HPRD:12088|Vega:OTTHUMG00000015270 6 6q16 melanin-concentrating hormone receptor 2 protein-coding MCHR2 melanin-concentrating hormone receptor 2 O G protein-coupled receptor 145|G protein-coupled receptor slt|G-protein coupled receptor 145|MCH receptor 2|melanin-concentrating hormone 2 20121230 -9606 84541 KBTBD8 - TA-KRP HGNC:30691|Ensembl:ENSG00000163376|HPRD:18138|Vega:OTTHUMG00000158779 3 3p14 kelch repeat and BTB (POZ) domain containing 8 protein-coding KBTBD8 kelch repeat and BTB (POZ) domain containing 8 O T-cell activation kelch repeat protein|kelch repeat and BTB domain-containing protein 8 20121230 -9606 84542 KIAA1841 - - HGNC:29387|Ensembl:ENSG00000162929|HPRD:13896|Vega:OTTHUMG00000129421 2 2q14 KIAA1841 protein-coding KIAA1841 KIAA1841 O uncharacterized protein KIAA1841 20121230 -9606 84545 MRPL43 RP11-108L7.13-001 bMRP36a HGNC:14517|MIM:611848|Ensembl:ENSG00000055950|HPRD:14762|Vega:OTTHUMG00000018920 10 10q24.31 mitochondrial ribosomal protein L43 protein-coding MRPL43 mitochondrial ribosomal protein L43 O 39S ribosomal protein L43, mitochondrial|L43mt|MRP-L43|mitochondrial ribosomal protein bMRP36a 20121230 -9606 84546 SNORD35B - RNU35B|U35B HGNC:17365 19 19q13.3 small nucleolar RNA, C/D box 35B snoRNA SNORD35B small nucleolar RNA, C/D box 35B O - 20121230 -9606 84547 PGBD1 hucep-4 HUCEP-4|SCAND4|dJ874C20.4 HGNC:19398|Ensembl:ENSG00000137338|HPRD:11426|Vega:OTTHUMG00000014520 6 6p22.1 piggyBac transposable element derived 1 protein-coding PGBD1 piggyBac transposable element derived 1 O cerebral protein 4|cerebral protein-4|piggyBac transposable element-derived protein 1 20121230 -9606 84548 TMEM185A - CXorf13|FAM11A|FRAXF HGNC:17125|MIM:300031|Ensembl:ENSG00000155984|HPRD:06504|Vega:OTTHUMG00000022625 X Xq28 transmembrane protein 185A protein-coding TMEM185A transmembrane protein 185A O ee3|family with sequence similarity 11, member A|fragile site, folic acid type, rare, fra(X)(q28) F 20121230 -9606 84549 MAK16 - MAK16L|RBM13 HGNC:13703|Ensembl:ENSG00000198042|HPRD:15223|Vega:OTTHUMG00000163957 8 8p12 MAK16 homolog (S. cerevisiae) protein-coding MAK16 MAK16 homolog (S. cerevisiae) O NNP78|RNA binding motif protein 13|RNA binding protein|protein MAK16 homolog 20121230 -9606 84552 PARD6G - PAR-6G|PAR6gamma HGNC:16076|MIM:608976|Ensembl:ENSG00000178184|HPRD:10138|Vega:OTTHUMG00000132922 18 18q23 par-6 partitioning defective 6 homolog gamma (C. elegans) protein-coding PARD6G par-6 partitioning defective 6 homolog gamma (C. elegans) O PAR-6 gamma protein|PAR6D|partitioning defective 6 homolog gamma 20121230 -9606 84553 FAXC - C6orf168|dJ273F20 HGNC:20742|Ensembl:ENSG00000146267|HPRD:12866|Vega:OTTHUMG00000015261 6 6q16.2 failed axon connections homolog (Drosophila) protein-coding FAXC failed axon connections homolog (Drosophila) O failed axon connections homolog 20121230 -9606 84557 MAP1LC3A RP11-346K17.1 ATG8E|LC3|LC3A|MAP1ALC3|MAP1BLC3 HGNC:6838|MIM:601242|Ensembl:ENSG00000101460|HPRD:03144|Vega:OTTHUMG00000032306 20 20q11.22 microtubule-associated protein 1 light chain 3 alpha protein-coding MAP1LC3A microtubule-associated protein 1 light chain 3 alpha O MAP1 light chain 3-like protein 1|MAP1A/1B light chain 3 A|MAP1A/MAP1B LC3 A|MAP1A/MAP1B light chain 3 A|autophagy-related ubiquitin-like modifier LC3 A|microtubule-associated proteins 1A/1B light chain 3|microtubule-associated proteins 1A/1B light chain 3A 20121230 -9606 84559 GOLGA2P2Y - GOLGA2LY|GOLGA2LY1|GOLGA2P2 HGNC:16479|MIM:400035 Y Yq11.23 golgin A2 pseudogene 2, Y-linked pseudo GOLGA2P2Y golgin A2 pseudogene 2, Y-linked O - 20121209 -9606 84560 MT4 - MT-4|MT-IV|MTIV HGNC:18705|MIM:606206|Ensembl:ENSG00000102891|HPRD:12092|Vega:OTTHUMG00000176863 16 16q13 metallothionein 4 protein-coding MT4 metallothionein 4 O metallothionein IV|metallothionein-4|metallothionein-IV 20121230 -9606 84561 SLC12A8 - CCC9 HGNC:15595|MIM:611316|Ensembl:ENSG00000221955|HPRD:11563|Vega:OTTHUMG00000159483 3 3q21.2 solute carrier family 12 (potassium/chloride transporters), member 8 protein-coding SLC12A8 solute carrier family 12 (potassium/chloride transporters), member 8 O cation-chloride cotransporter 9|solute carrier family 12 (sodium/potassium/chloride transporters), member 8|solute carrier family 12 member 8 20121230 -9606 84565 LCS1 - CHLS|CHSL|LCS HGNC:15737|MIM:214900 15 15q lymphedema-cholestasis syndrome 1 unknown LCS1 lymphedema-cholestasis syndrome 1 O - 20120622 -9606 84569 LYZL1 UNQ648/PRO1278 KAAG648|LYC2|PRO1278|bA534G20.1 HGNC:30502|Ensembl:ENSG00000120563|HPRD:14336|Vega:OTTHUMG00000017880 10 10p12.1 lysozyme-like 1 protein-coding LYZL1 lysozyme-like 1 O lysozyme-like protein 1 20121230 -9606 84570 COL25A1 - AMY|CLAC|CLAC-P|CLACP HGNC:18603|MIM:610004|Ensembl:ENSG00000188517|HPRD:09886|Vega:OTTHUMG00000150039 4 4q25 collagen, type XXV, alpha 1 protein-coding COL25A1 collagen, type XXV, alpha 1 O alzheimer disease amyloid-associated protein|collagen alpha-1(XXV) chain|collagen-like Alzheimer amyloid plaque component|collagenous Alzheimer amyloid plaque component 20121230 -9606 84572 GNPTG CAB56184 C16orf27|GNPTAG|LP2537|RJD9 HGNC:23026|MIM:607838|Ensembl:ENSG00000090581|HPRD:06384|Vega:OTTHUMG00000047835 16 16p13.3 N-acetylglucosamine-1-phosphate transferase, gamma subunit protein-coding GNPTG N-acetylglucosamine-1-phosphate transferase, gamma subunit O N-acetylglucosamine-1-phosphotransferase subunit gamma|UDP-N-acetylglucosamine-1-phosphotransferase subunit gamma|glcNAc-1-phosphotransferase subunit gamma 20121230 -9606 84612 PARD6B - PAR6B HGNC:16245|MIM:608975|Ensembl:ENSG00000124171|HPRD:18703|Vega:OTTHUMG00000032732 20 20q13.13 par-6 partitioning defective 6 homolog beta (C. elegans) protein-coding PARD6B par-6 partitioning defective 6 homolog beta (C. elegans) O PAR-6 beta|partitioning defective 6 homolog beta 20121230 -9606 84614 ZBTB37 - D430004I08Rik|ZNF908 HGNC:28365|Ensembl:ENSG00000185278|HPRD:15694|Vega:OTTHUMG00000037274 1 1q25.1 zinc finger and BTB domain containing 37 protein-coding ZBTB37 zinc finger and BTB domain containing 37 O zinc finger and BTB domain-containing protein 37 20121230 -9606 84616 KRTAP4-4 - KAP4.13|KAP4.4|KRTAP4-13|KRTAP4.13|KRTAP4.4 HGNC:16928|Ensembl:ENSG00000171396|HPRD:13945|Vega:OTTHUMG00000133428 17 17q12-q21 keratin associated protein 4-4 protein-coding KRTAP4-4 keratin associated protein 4-4 O keratin associated protein 4-13|keratin associated protein 4.4|keratin-associated protein 4-13|keratin-associated protein 4-4|keratin-associated protein 4.13|keratin-associated protein 4.4|ultrahigh sulfur keratin-associated protein 4.13|ultrahigh sulfur keratin-associated protein 4.4 20121230 -9606 84617 TUBB6 - HsT1601|TUBB-5 HGNC:20776|Ensembl:ENSG00000176014|HPRD:11349|Vega:OTTHUMG00000131692 18 18p11.21 tubulin, beta 6 class V protein-coding TUBB6 tubulin, beta 6 class V O class V beta-tubulin|tubulin beta MGC4083|tubulin beta-6 chain 20121230 -9606 84618 NT5C1A - CN-I|CN-IA|CN1|CN1A HGNC:17819|MIM:610525|Ensembl:ENSG00000116981|HPRD:14844|Vega:OTTHUMG00000009244 1 1p34.3-p33 5'-nucleotidase, cytosolic IA protein-coding NT5C1A 5'-nucleotidase, cytosolic IA O AMP-specific 5'-NT|cytosolic 5' nucleotidase, type 1A|cytosolic 5'-nucleotidase 1A|cytosolic 5'-nucleotidase IA 20121230 -9606 84619 ZGPAT RP4-583P15.3 GPATC6|GPATCH6|KIAA1847|ZC3H9|ZC3HDC9|ZIP HGNC:15948|Ensembl:ENSG00000197114|HPRD:15736|Vega:OTTHUMG00000032998 20 20q13.3 zinc finger, CCCH-type with G patch domain protein-coding ZGPAT zinc finger, CCCH-type with G patch domain O g patch domain-containing protein 6|zinc finger CCCH domain-containing protein 9|zinc finger CCCH-type with G patch domain-containing protein|zinc finger and G patch domain-containing protein 20121230 -9606 84620 ST6GAL2 - SIAT2|ST6GalII HGNC:10861|MIM:608472|Ensembl:ENSG00000144057|HPRD:12237|Vega:OTTHUMG00000130923 2 2q11.2-q12.1 ST6 beta-galactosamide alpha-2,6-sialyltranferase 2 protein-coding ST6GAL2 ST6 beta-galactosamide alpha-2,6-sialyltranferase 2 O CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,6-sialyltransferase 2|alpha 2,6-ST 2|beta-galactoside alpha-2,6-sialyltransferase 2|beta-galactoside alpha-2,6-sialyltransferase II|sialyltransferase 2 (monosialoganglioside sialyltransferase) 20121230 -9606 84622 ZNF594 hCG_1775942 - HGNC:29392|Ensembl:ENSG00000180626|Vega:OTTHUMG00000132059 17 17p13 zinc finger protein 594 protein-coding ZNF594 zinc finger protein 594 O zinc finger protein HZF18 20121230 -9606 84623 KIRREL3 UNQ5923/PRO4502/PRO19814 KIRRE|MRD4|NEPH2|PRO4502 HGNC:23204|MIM:607761|Ensembl:ENSG00000149571|HPRD:09679|Vega:OTTHUMG00000165831 11 11q24 kin of IRRE like 3 (Drosophila) protein-coding KIRREL3 kin of IRRE like 3 (Drosophila) O kin of IRRE-like protein 3|kin of irregular chiasm-like protein 3|nephrin-like 2|nephrin-like protein 2 20121230 -9606 84624 FNDC1 RP11-243O10.1 AGS8|FNDC2|MEL4B3|RP11-243O10.2|bA243O10.1|dJ322A24.1 HGNC:21184|MIM:609991|Ensembl:ENSG00000164694|HPRD:13547|Vega:OTTHUMG00000015927 6 6q25 fibronectin type III domain containing 1 protein-coding FNDC1 fibronectin type III domain containing 1 O activation-associated cDNA protein|expressed in synovial lining protein|fibronectin type III domain containing 2|fibronectin type III domain-containing protein 1 20121230 -9606 84626 KRBA1 - - HGNC:22228|Ensembl:ENSG00000133619|HPRD:11167|Vega:OTTHUMG00000157886 7 7q36 KRAB-A domain containing 1 protein-coding KRBA1 KRAB-A domain containing 1 O protein KRBA1 20121230 -9606 84627 ZNF469 - BCS HGNC:23216|MIM:612078|Ensembl:ENSG00000225614 16 16q24 zinc finger protein 469 protein-coding ZNF469 zinc finger protein 469 O - 20121230 -9606 84628 NTNG2 RP11-479K20.2 LHLL9381|Lmnt2|NTNG1|bA479K20.1 HGNC:14288|Ensembl:ENSG00000196358|HPRD:17650|Vega:OTTHUMG00000020835 9 9q34 netrin G2 protein-coding NTNG2 netrin G2 O bA479K20.1 (novel protein)|laminet 2|laminet-2|netrin G1|netrin-G2 20121230 -9606 84629 TNRC18 hCG_96198 CAGL79|TNRC18A HGNC:11962|Ensembl:ENSG00000182095|Vega:OTTHUMG00000151831 7 7p22.1 trinucleotide repeat containing 18 protein-coding TNRC18 trinucleotide repeat containing 18 O long CAG trinucleotide repeat-containing gene 79 protein|trinucleotide repeat-containing gene 18 protein 20121230 -9606 84630 TTBK1 RP3-330M21.4 BDTK HGNC:19140|Ensembl:ENSG00000146216|HPRD:11653|Vega:OTTHUMG00000014725 6 6p21.1 tau tubulin kinase 1 protein-coding TTBK1 tau tubulin kinase 1 O brain-derived tau kinase|tau-tubulin kinase 1 20121230 -9606 84631 SLITRK2 UNQ9197/PRO34756 CXorf2|SLITL1 HGNC:13449|MIM:300561|Ensembl:ENSG00000185985|HPRD:06603|Vega:OTTHUMG00000022595 X Xq27.3 SLIT and NTRK-like family, member 2 protein-coding SLITRK2 SLIT and NTRK-like family, member 2 O SLIT and NTRK-like protein 2|slit and trk like gene 2|slit-like 1 20121230 -9606 84632 AFAP1L2 CTB-1144G6.4 KIAA1914|XB130 HGNC:25901|MIM:612420|Ensembl:ENSG00000169129|HPRD:13902|Vega:OTTHUMG00000019086 10 10q25.3 actin filament associated protein 1-like 2 protein-coding AFAP1L2 actin filament associated protein 1-like 2 O AFAP1-like protein 2|CTB-1144G6.4|actin filament-associated protein 1-like 2 20121230 -9606 84634 KISS1R - AXOR12|GPR54|HH8|HOT7T175|KISS-1R HGNC:4510|MIM:604161|Ensembl:ENSG00000116014|HPRD:09167|Vega:OTTHUMG00000181900 19 19p13.3 KISS1 receptor protein-coding KISS1R KISS1 receptor O G protein-coupled receptor 54|G-protein coupled receptor OT7T175|hypogonadotropin-1|kiSS-1 receptor|kisspeptins receptor|metastin receptor 20121230 -9606 84636 GPR174 FKSG79 - HGNC:30245|Ensembl:ENSG00000147138|HPRD:06512|Vega:OTTHUMG00000021898 X Xq21.1 G protein-coupled receptor 174 protein-coding GPR174 G protein-coupled receptor 174 O probable G-protein coupled receptor 174 20121230 -9606 84639 IL1F10 FKSG75 FIL1-theta|IL-1HY2|IL-38|IL1-theta HGNC:15552|Ensembl:ENSG00000136697|HPRD:17144|Vega:OTTHUMG00000131339 2 2q13 interleukin 1 family, member 10 (theta) protein-coding IL1F10 interleukin 1 family, member 10 (theta) O FIL1 theta|IL-1 theta|IL-1F10 (canonical form IL-1F10a)|interleukin-1 HY2|interleukin-1 family member 10|interleukin-1 receptor antagonist FKSG75|interleukin-1 receptor antagonist-like FIL1 theta 20121230 -9606 84640 USP38 - HP43.8KD HGNC:20067|Ensembl:ENSG00000170185|HPRD:15635|Vega:OTTHUMG00000161420 4 - ubiquitin specific peptidase 38 protein-coding USP38 ubiquitin specific peptidase 38 O deubiquitinating enzyme 38|ubiquitin carboxyl-terminal hydrolase 38|ubiquitin specific protease 38|ubiquitin thioesterase 38|ubiquitin thiolesterase 38|ubiquitin-specific-processing protease 38 20121230 -9606 84641 HIATL1 - - HGNC:23376|Ensembl:ENSG00000148110|HPRD:07869|Vega:OTTHUMG00000020265 9 9q22.32 hippocampus abundant transcript-like 1 protein-coding HIATL1 hippocampus abundant transcript-like 1 O hippocampus abundant transcript-like protein 1 20121230 -9606 84643 KIF2B - - HGNC:29443|Ensembl:ENSG00000141200|HPRD:10053|Vega:OTTHUMG00000177756 17 17q22 kinesin family member 2B protein-coding KIF2B kinesin family member 2B O kinesin protein|kinesin-like protein KIF2B 20121230 -9606 84645 C22orf23 AL031587.1 EVG1|dJ1039K5.6 HGNC:18589|Ensembl:ENSG00000128346|HPRD:12799|Vega:OTTHUMG00000150672 22 22q13.1 chromosome 22 open reading frame 23 protein-coding C22orf23 chromosome 22 open reading frame 23 O UPF0193 protein EVG1 20121230 -9606 84647 PLA2G12B FKSG71 GXIIB|GXIIIsPLA2|PLA2G13 HGNC:18555|MIM:611653|Ensembl:ENSG00000138308|HPRD:10155|Vega:OTTHUMG00000018446 10 10q22.1 phospholipase A2, group XIIB protein-coding PLA2G12B phospholipase A2, group XIIB O group XIIB secretory phospholipase A2-like protein|group XIII secreted phospholipase A2|group XIII secretory phospholipase A2-like protein|phospholipase A2, group XIII|sPLA2-GXIIB 20121230 -9606 84648 LCE3D - LEP16|SPRL6A|SPRL6B HGNC:16615|MIM:612616|Ensembl:ENSG00000163202|HPRD:17263|Vega:OTTHUMG00000012384 1 1q21 late cornified envelope 3D protein-coding LCE3D late cornified envelope 3D O late cornified envelope protein 3D|late envelope protein 16|small proline rich-like (epidermal differentiation complex) 6A|small proline rich-like (epidermal differentiation complex) 6B|small proline-rich-like epidermal differentiation complex protein 6A|small proline-rich-like epidermal differentiation complex protein 6B 20121230 -9606 84649 DGAT2 HMFN1045 ARAT|GS1999FULL HGNC:16940|MIM:606983|Ensembl:ENSG00000062282|HPRD:07376 11 11q13.5 diacylglycerol O-acyltransferase 2 protein-coding DGAT2 diacylglycerol O-acyltransferase 2 O acyl-CoA retinol O-fatty-acyltransferase|diacylglycerol O-acyltransferase homolog 2|diacylglycerol O-acyltransferase-like protein 2|diglyceride acyltransferase 2|retinol O-fatty-acyltransferase 20121230 -9606 84650 EBPL RP11-432M24.2 EBRP HGNC:18061|Ensembl:ENSG00000123179|HPRD:13258|Vega:OTTHUMG00000016920 13 13q12-q13 emopamil binding protein-like protein-coding EBPL emopamil binding protein-like O emopamil binding related protein, delta8-delta7 sterol isomerase related protein|emopamil-binding protein-like|emopamil-binding-related protein 20121230 -9606 84651 SPINK7 UNQ745/PRO1474 ECG2|ECRG2 HGNC:24643|Ensembl:ENSG00000145879|HPRD:16850|Vega:OTTHUMG00000163522 5 5q32 serine peptidase inhibitor, Kazal type 7 (putative) protein-coding SPINK7 serine peptidase inhibitor, Kazal type 7 (putative) O ECRG-2|esophagus cancer related gene 2|esophagus cancer-related gene 2 protein|esophagus cancer-related gene-2|serine protease inhibitor Kazal-type 7 20121230 -9606 84654 SPZ1 - NYD-TSP1 HGNC:30721|Ensembl:ENSG00000164299|HPRD:15440|Vega:OTTHUMG00000162514 5 5q14.1 spermatogenic leucine zipper 1 protein-coding SPZ1 spermatogenic leucine zipper 1 O spermatogenic leucine zipper protein 1|spermatogenic zip 1|testis-specific protein 1 20121230 -9606 84656 GLYR1 - BM045|HIBDL|N-PAC|NP60 HGNC:24434|MIM:610660|Ensembl:ENSG00000140632|HPRD:17625|Vega:OTTHUMG00000129530 16 16p13.3 glyoxylate reductase 1 homolog (Arabidopsis) protein-coding GLYR1 glyoxylate reductase 1 homolog (Arabidopsis) O 3-hydroxyisobutyrate dehydrogenase-like protein|cytokine-like nuclear factor n-pac|nuclear protein 60 kDa|nuclear protein 60kDa|nuclear protein NP60|nuclear protein of 60 kDa|putative oxidoreductase GLYR1 20121230 -9606 84657 GHRLOS2 - C3orf42|GHRL-AS2|NAG73 HGNC:29904 3 3p25.3 ghrelin opposite strand/antisense RNA 2 (tail to tail) miscRNA GHRLOS2 ghrelin opposite strand/antisense RNA 2 (tail to tail) O - 20121230 -9606 84658 EMR3 UNQ683/PRO1562 - HGNC:23647|MIM:606101|Ensembl:ENSG00000131355|HPRD:07309 19 19p13.1 egf-like module containing, mucin-like, hormone receptor-like 3 protein-coding EMR3 egf-like module containing, mucin-like, hormone receptor-like 3 O EGF-like module receptor 3|EGF-like module-containing mucin-like hormone receptor-like 3|egf-like module-containing mucin-like receptor 3 20121230 -9606 84659 RNASE7 UNQ2516/PRO6006 - HGNC:19278|MIM:612484|Ensembl:ENSG00000165799|HPRD:17981|Vega:OTTHUMG00000171358 14 14q11.2 ribonuclease, RNase A family, 7 protein-coding RNASE7 ribonuclease, RNase A family, 7 O RNase 7|SAP-2|ribonuclease 7|skin-derived antimicrobial protein 2 20121230 -9606 84660 CCDC62 - CT109|ERAP75|TSP-NY HGNC:30723|MIM:613481|Ensembl:ENSG00000130783|HPRD:15575|Vega:OTTHUMG00000168764 12 12q24.31 coiled-coil domain containing 62 protein-coding CCDC62 coiled-coil domain containing 62 O aaa-protein|cancer/testis antigen 109|coiled-coil domain-containing protein 60|coiled-coil domain-containing protein 62|testis-specific protein TSP-NY 20121230 -9606 84661 DPY30 - HDPY-30|Saf19 HGNC:24590|MIM:612032|Ensembl:ENSG00000162961|HPRD:17434|Vega:OTTHUMG00000128457 2 2p22.3 dpy-30 homolog (C. elegans) protein-coding DPY30 dpy-30 homolog (C. elegans) O dpy-30-like protein|dpy-30L|protein dpy-30 homolog 20121230 -9606 84662 GLIS2 - NKL|NPHP7 HGNC:29450|MIM:608539|Ensembl:ENSG00000126603|HPRD:12256|Vega:OTTHUMG00000129467 16 16p13.3 GLIS family zinc finger 2 protein-coding GLIS2 GLIS family zinc finger 2 O GLI-similar 2|GLI-similar protein 2|Kruppel-like zinc finger protein GLIS2|nephrocystin-7|neuronal Krueppel-like protein|zinc finger protein GLIS2 20121230 -9606 84664 CSPG4P2Y - CSPG4LYP2|CSPG4P2|CSPG4PY2 HGNC:32424 Y Yq11.23 chondroitin sulfate proteoglycan 4 pseudogene 2, Y-linked pseudo CSPG4P2Y chondroitin sulfate proteoglycan 4 pseudogene 2, Y-linked O - 20121209 -9606 84665 MYPN - MYOP HGNC:23246|MIM:608517|Ensembl:ENSG00000138347|HPRD:10536|Vega:OTTHUMG00000018344 10 10q21.3 myopalladin protein-coding MYPN myopalladin O sarcomeric protein myopalladin, 145 kDa (MYOP) 20121230 -9606 84666 RETNLB UNQ408/PRO770 FIZZ1|FIZZ2|HXCP2|RELM-beta|RELMb|RELMbeta|XCP2 HGNC:20388|MIM:605645|Ensembl:ENSG00000163515|HPRD:05734|Vega:OTTHUMG00000159393 3 3q13.1 resistin like beta protein-coding RETNLB resistin like beta O C/EBP-epsilon regulated myeloid-specific secreted cysteine-rich protein precursor 2|colon and small intestine-specific cysteine-rich protein|colon carcinoma-related gene protein|cysteine-rich secreted A12-alpha-like protein 1|cysteine-rich secreted protein A12-alpha-like 1|cysteine-rich secreted protein FIZZ2|found in inflammatory zone 1|resistin-like beta 20121230 -9606 84667 HES7 - SCDO4|bHLHb37 HGNC:15977|MIM:608059|Ensembl:ENSG00000179111|HPRD:09729|Vega:OTTHUMG00000178316 17 17p13.1 hairy and enhancer of split 7 (Drosophila) protein-coding HES7 hairy and enhancer of split 7 (Drosophila) O bHLH factor Hes7|class B basic helix-loop-helix protein 37|hHes7|transcription factor HES-7 20121230 -9606 84668 FAM126A - DRCTNNB1A|HCC|HLD5|HYCC1 HGNC:24587|MIM:610531|Ensembl:ENSG00000122591|HPRD:16837|Vega:OTTHUMG00000128435 7 7p15.3 family with sequence similarity 126, member A protein-coding FAM126A family with sequence similarity 126, member A O down regulated by Ctnnb1, a|down-regulated by CTNNB1 protein A|hyccin 20121230 -9606 84669 USP32 - NY-REN-60|USP10 HGNC:19143|MIM:607740|Ensembl:ENSG00000170832|HPRD:07612|Vega:OTTHUMG00000180001 17 17q23.3 ubiquitin specific peptidase 32 protein-coding USP32 ubiquitin specific peptidase 32 O deubiquitinating enzyme 32|renal carcinoma antigen NY-REN-60|ubiquitin carboxyl-terminal hydrolase 32|ubiquitin specific protease 32|ubiquitin thioesterase 32|ubiquitin thiolesterase 32|ubiquitin-specific-processing protease 32 20121230 -9606 84671 ZNF347 - ZNF1111 HGNC:16447|Ensembl:ENSG00000197937|HPRD:15783 19 19q13.42 zinc finger protein 347 protein-coding ZNF347 zinc finger protein 347 O zinc finger 1111|zinc finger protein 1111 20121230 -9606 84672 TTTY6 - LINC00127|NCRNA00127|TTTY6A|TTY6 HGNC:16483|MIM:400039 Y Yq11.223 testis-specific transcript, Y-linked 6 (non-protein coding) miscRNA TTTY6 testis-specific transcript, Y-linked 6 (non-protein coding) O - 20121230 -9606 84673 TTTY8 - LINC00130|NCRNA00130|TTY8 HGNC:18489 Y Yp11.2 testis-specific transcript, Y-linked 8 (non-protein coding) miscRNA TTTY8 testis-specific transcript, Y-linked 8 (non-protein coding) O - 20121209 -9606 84674 CARD6 - CINCIN1 HGNC:16394|MIM:609986|Ensembl:ENSG00000132357|HPRD:09871|Vega:OTTHUMG00000094775 5 5p13.1 caspase recruitment domain family, member 6 protein-coding CARD6 caspase recruitment domain family, member 6 O CARD-containing inhibitor of Nod1 and Cardiak-induced NF-kB activation|caspase recruitment domain protein 6|caspase recruitment domain-containing protein 6 20121230 -9606 84675 TRIM55 - MURF-2|RNF29|muRF2 HGNC:14215|MIM:606469|Ensembl:ENSG00000147573|HPRD:05927|Vega:OTTHUMG00000164473 8 8q13.1 tripartite motif containing 55 protein-coding TRIM55 tripartite motif containing 55 O muscle specific ring finger 2|muscle-specific RING finger protein 2|ring finger protein 29|tripartite motif-containing 55|tripartite motif-containing protein 55 20121230 -9606 84676 TRIM63 - IRF|MURF1|MURF2|RNF28|SMRZ HGNC:16007|MIM:606131|Ensembl:ENSG00000158022|HPRD:05843|Vega:OTTHUMG00000007510 1 1p34-p33 tripartite motif containing 63, E3 ubiquitin protein ligase protein-coding TRIM63 tripartite motif containing 63, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase TRIM63|iris ring finger protein|muscle specific ring finger protein 2|muscle-specific RING finger protein 1|ring finger protein 28|striated muscle RING zinc finger protein|tripartite motif-containing 63|tripartite motif-containing protein 63 20121230 -9606 84677 DSCR8 - C21orf65|CT25.1a|CT25.1b|MMA-1|MMA-1a|MMA-1b|MMA1|MTAG2 HGNC:16707|MIM:613396|HPRD:10924 21 21q22.2 Down syndrome critical region gene 8 miscRNA DSCR8 Down syndrome critical region gene 8 O - 20121230 -9606 84678 KDM2B - CXXC2|FBXL10|Fbl10|JHDM1B|PCCX2 HGNC:13610|MIM:609078|Ensembl:ENSG00000089094|HPRD:12362|Vega:OTTHUMG00000169071 12 12q24.31 lysine (K)-specific demethylase 2B protein-coding KDM2B lysine (K)-specific demethylase 2B O CXXC-type zinc finger protein 2|F-box and leucine-rich repeat protein 10|F-box protein FBL10|F-box/LRR-repeat protein 10|JEMMA (Jumonji domain, EMSY-interactor, methyltransferase motif) protein|[Histone-H3]-lysine-36 demethylase 1B|jmjC domain-containing histone demethylation protein 1B|jumonji C domain-containing histone demethylase 1B|jumonji domain-containing EMSY-interactor methyltransferase motif protein|lysine-specific demethylase 2B|protein-containing CXXC domain 2 20121230 -9606 84679 SLC9A7 - NHE-7|NHE7|SLC9A6 HGNC:17123|MIM:300368|Ensembl:ENSG00000065923|HPRD:02297|Vega:OTTHUMG00000021428 X Xp11.3|Xp11.3 solute carrier family 9, subfamily A (NHE7, cation proton antiporter 7), member 7 protein-coding SLC9A7 solute carrier family 9, subfamily A (NHE7, cation proton antiporter 7), member 7 O Na(+)/H(+) exchanger 7|nonselective sodium potassium/proton exchanger|sodium/hydrogen exchanger 7|solute carrier family 9 (sodium/hydrogen exchanger) 20121230 -9606 84680 ACCS - ACS|PHACS HGNC:23989|MIM:608405|Ensembl:ENSG00000110455|HPRD:10524|Vega:OTTHUMG00000166427 11 11p11 1-aminocyclopropane-1-carboxylate synthase homolog (Arabidopsis)(non-functional) protein-coding ACCS 1-aminocyclopropane-1-carboxylate synthase homolog (Arabidopsis)(non-functional) O 1-aminocyclopropane-1-carboxylate synthase-like protein 1|ACC synthase-like protein 1 20121230 -9606 84681 HINT2 - HIT-17 HGNC:18344|MIM:609997|Ensembl:ENSG00000137133|HPRD:17106|Vega:OTTHUMG00000019886 9 9p13.3 histidine triad nucleotide binding protein 2 protein-coding HINT2 histidine triad nucleotide binding protein 2 O HINT-2|HINT-3|HIT-17kDa|PKCI-1-related HIT protein|histidine triad nucleotide-binding protein 2, mitochondrial|protein kinase C inhibitor-2 20121230 -9606 84684 INSM2 Nbla106 IA-6|IA6|mlt1 HGNC:17539|MIM:614027|Ensembl:ENSG00000168348|HPRD:17152|Vega:OTTHUMG00000140223 14 14q13.2 insulinoma-associated 2 protein-coding INSM2 insulinoma-associated 2 O insulinoma-associated protein 2|insulinoma-associated protein IA-6|zinc finger protein IA-6 20121230 -9606 84687 PPP1R9B - PPP1R6|PPP1R9|SPINO|Spn HGNC:9298|MIM:603325|HPRD:04506 17 17q21.33 protein phosphatase 1, regulatory subunit 9B protein-coding PPP1R9B protein phosphatase 1, regulatory subunit 9B O neurabin II|neurabin-2|neurabin-II|protein phosphatase 1, regulatory (inhibitor) subunit 9B|protein phosphatase 1, regulatory subunit 9B, spinophilin|spinophilin 20121230 -9606 84688 C9orf24 RP11-573M23.4 CBE1|NYD-SP22|SMRP1|bA573M23.4 HGNC:19919|Ensembl:ENSG00000164972|HPRD:12949|Vega:OTTHUMG00000000437 9 9p13.3 chromosome 9 open reading frame 24 protein-coding C9orf24 chromosome 9 open reading frame 24 O ciliated bronchial epithelial protein 1|ciliated bronchial epithelium 1|spermatid-specific manchette-related protein 1|testis development protein NYD-SP22 20121230 -9606 84689 MS4A14 - MS4A16|NYD-SP21 HGNC:30706|Ensembl:ENSG00000166928|HPRD:14863|Vega:OTTHUMG00000167357 11 11q12.2 membrane-spanning 4-domains, subfamily A, member 14 protein-coding MS4A14 membrane-spanning 4-domains, subfamily A, member 14 O MS4A13 protein|membrane-spanning 4-domains subfamily A member 14|membrane-spanning 4-domains, subfamily A, member 16|testes development-related NYD-SP21|testis development protein NYD-SP21 20121230 -9606 84690 SPATA22 - NYD-SP20|NYDSP20 HGNC:30705|Ensembl:ENSG00000141255|Ensembl:ENSG00000262314|HPRD:14862|Vega:OTTHUMG00000177609|Vega:OTTHUMG00000177648 17 17p13.3 spermatogenesis associated 22 protein-coding SPATA22 spermatogenesis associated 22 O spermatogenesis-associated protein 22|testes development-related NYD-SP20|testis development protein NYD-SP20 20121230 -9606 84691 FAM71F1 - FAM137A|NYD-SP18 HGNC:30704|Ensembl:ENSG00000135248|HPRD:14861|Vega:OTTHUMG00000158276 7 7q32.1 family with sequence similarity 71, member F1 protein-coding FAM71F1 family with sequence similarity 71, member F1 O family with sequence similarity 137, member A|protein FAM71F1|testes development-related NYD-SP18|testis development protein NYD-SP18 20121230 -9606 84692 CCDC54 - NYD-SP17 HGNC:30703|Ensembl:ENSG00000138483|HPRD:14860|Vega:OTTHUMG00000159169 3 3q13.12 coiled-coil domain containing 54 protein-coding CCDC54 coiled-coil domain containing 54 O coiled-coil domain-containing protein 54|testes development-related NYD-SP17|testis development protein NYD-SP17 20121230 -9606 84693 MCEE - GLOD2 HGNC:16732|MIM:608419|Ensembl:ENSG00000124370|HPRD:12229|Vega:OTTHUMG00000129709 2 2p13.3 methylmalonyl CoA epimerase protein-coding MCEE methylmalonyl CoA epimerase O DL-methylmalonyl-CoA racemase|glyoxalase domain containing 2|methylmalonyl-CoA epimerase, mitochondrial 20121230 -9606 84694 GJA10 - CX62|RP11-63K6.6 HGNC:16995|MIM:611924|Ensembl:ENSG00000135355|HPRD:13104|Vega:OTTHUMG00000015210 6 6q15-q16 gap junction protein, alpha 10, 62kDa protein-coding GJA10 gap junction protein, alpha 10, 62kDa O connexin 62|connexin-62|gap junction alpha-10 protein 20121230 -9606 84695 LOXL3 - LOXL HGNC:13869|MIM:607163|Ensembl:ENSG00000115318|HPRD:06200|Vega:OTTHUMG00000129953 2 2p13 lysyl oxidase-like 3 protein-coding LOXL3 lysyl oxidase-like 3 O lysyl oxidase homolog 3|lysyl oxidase-like protein 3 20121230 -9606 84696 ABHD1 - LABH1 HGNC:17553|MIM:612195|Ensembl:ENSG00000143994|HPRD:07468|Vega:OTTHUMG00000097072 2 2p23.3 abhydrolase domain containing 1 protein-coding ABHD1 abhydrolase domain containing 1 O abhydrolase domain-containing protein 1|lung alpha/beta hydrolase 1 20121230 -9606 84698 CAPS2 UG0636c06 - HGNC:16471|MIM:607724|Ensembl:ENSG00000180881|HPRD:09659|Vega:OTTHUMG00000152787 12 12q14.1 calcyphosine 2 protein-coding CAPS2 calcyphosine 2 O calcyphosin-2|calcyphosine-2|calcyphosphine 2 20121230 -9606 84699 CREB3L3 HYST1481 CREB-H|CREBH HGNC:18855|MIM:611998|Ensembl:ENSG00000060566|HPRD:16752 19 19p13.3 cAMP responsive element binding protein 3-like 3 protein-coding CREB3L3 cAMP responsive element binding protein 3-like 3 O CREB/ATF family transcription factor|cyclic AMP-responsive element-binding protein 3-like protein 3 20121230 -9606 84700 MYO18B CTA-109D1.1 - HGNC:18150|MIM:607295|Ensembl:ENSG00000133454|HPRD:09529|Vega:OTTHUMG00000151129 22 22q12.1 myosin XVIIIB protein-coding MYO18B myosin XVIIIB O myosin 18B|myosin-XVIIIb|unconventional myosin-XVIIIb 20121230 -9606 84701 COX4I2 - COX4|COX4-2|COX4B|COX4L2|COXIV-2|dJ857M17.2 HGNC:16232|MIM:607976|Ensembl:ENSG00000131055|HPRD:12143|Vega:OTTHUMG00000032180 20 20q11.21 cytochrome c oxidase subunit IV isoform 2 (lung) protein-coding COX4I2 cytochrome c oxidase subunit IV isoform 2 (lung) O COX IV-2|cytochrome c oxidase subunit 4 isoform 2, mitochondrial|cytochrome c oxidase subunit IV-like 2 20121230 -9606 84705 GTPBP3 - GTPBG3|MSS1|MTGP1|THDF1 HGNC:14880|MIM:608536|Ensembl:ENSG00000130299|HPRD:12255 19 19p13.11 GTP binding protein 3 (mitochondrial) protein-coding GTPBP3 GTP binding protein 3 (mitochondrial) O mitochondrial GTP-binding protein 1|tRNA modification GTPase GTPBP3, mitochondrial 20121230 -9606 84706 GPT2 - ALT2 HGNC:18062|MIM:138210|Ensembl:ENSG00000166123|HPRD:06307|Vega:OTTHUMG00000132541 16 16q12.1 glutamic pyruvate transaminase (alanine aminotransferase) 2 protein-coding GPT2 glutamic pyruvate transaminase (alanine aminotransferase) 2 O GPT 2|alanine aminotransferase 2|glutamate pyruvate transaminase 2|glutamic--alanine transaminase 2|glutamic--pyruvic transaminase 2|glutamic-pyruvate transaminase 2 20121230 -9606 84707 BEX2 RP1-79P11.1 BEX1|DJ79P11.1 HGNC:30933|MIM:300691|Ensembl:ENSG00000133134|HPRD:06484|Vega:OTTHUMG00000022095 X Xq22 brain expressed X-linked 2 protein-coding BEX2 brain expressed X-linked 2 O brain-expressed X-linked protein 2|hBex2|protein BEX2 20121230 -9606 84708 LNX1 UNQ574/PRO1136 LNX|MPDZ|PDZRN2 HGNC:6657|MIM:609732|Ensembl:ENSG00000072201|HPRD:17287|Vega:OTTHUMG00000102099 4 4q12 ligand of numb-protein X 1, E3 ubiquitin protein ligase protein-coding LNX1 ligand of numb-protein X 1, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase LNX|PDZ domain-containing ring finger protein 2|multi-PDZ-domain-containing protein, E3 ubiquitin-protein ligase LNX|numb-binding protein 1 20121230 -9606 84709 MGARP GS3582 C4orf49|CESP-1|HUMMR|OSAP HGNC:29969|Ensembl:ENSG00000137463|HPRD:17805|Vega:OTTHUMG00000161325 4 4q31.1 mitochondria-localized glutamic acid-rich protein protein-coding MGARP mitochondria-localized glutamic acid-rich protein O corneal endothelium-specific protein 1|hypoxia up-regulated mitochondrial movement regulator protein|ovary-specific acidic protein|protein MGARP 20121230 -9606 84717 HDGFRP2 UNQ785/PRO1604 HDGF2 Ensembl:ENSG00000167674|HPRD:13639|Vega:OTTHUMG00000182007 19 19p13.3 hepatoma-derived growth factor-related protein 2 protein-coding - - - HDGF-2|HRP-2|hepatoma-derived growth factor 2 20121230 -9606 84719 LINC00260 - C1orf217|NCRNA00260 HGNC:28770 1 1q32.1 long intergenic non-protein coding RNA 260 miscRNA LINC00260 long intergenic non-protein coding RNA 260 O - 20121230 -9606 84720 PIGO UNQ632/PRO1249 HPMRS2|RP11-182N22.4 HGNC:23215|MIM:614730|Ensembl:ENSG00000165282|HPRD:15134|Vega:OTTHUMG00000019854 9 9p13.3 phosphatidylinositol glycan anchor biosynthesis, class O protein-coding PIGO phosphatidylinositol glycan anchor biosynthesis, class O O GPI ethanolamine phosphate transferase 3|phosphatidylinositol-glycan biosynthesis class O protein 20121230 -9606 84722 PSRC1 RP11-297O4.2 DDA3|FP3214 HGNC:24472|MIM:613126|Ensembl:ENSG00000134222|HPRD:13127|Vega:OTTHUMG00000012000 1 1p13.3 proline/serine-rich coiled-coil 1 protein-coding PSRC1 proline/serine-rich coiled-coil 1 O differential display and activated by p53|p53-regulated DDA3|proline/serine-rich coiled-coil protein 1 20121230 -9606 84725 PLEKHA8 - FAPP2 HGNC:30037|MIM:608639|Ensembl:ENSG00000106086|HPRD:10555|Vega:OTTHUMG00000097751 7 7p21-p11.2 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 8 protein-coding PLEKHA8 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 8 O PH domain-containing family A member 8|phosphatidylinositol-four-phosphate adapter protein 2|phosphoinositol 4-phosphate adapter protein 2|pleckstrin homology domain-containing family A member 8|serologically defined breast cancer antigen NY-BR-86 20121230 -9606 84726 PRRC2B RP11-334J6.1 BAT2L|BAT2L1|KIAA0515|LQFBS-1 HGNC:28121|Ensembl:ENSG00000130723|Vega:OTTHUMG00000020827 9 9q34.13 proline-rich coiled-coil 2B protein-coding PRRC2B proline-rich coiled-coil 2B O HLA-B associated transcript 2-like 1|HLA-B-associated transcript 2-like 1|proline-rich coiled-coil protein 2B|protein BAT2-like 1|protein PRRC2B 20121230 -9606 84727 SPSB2 - GRCC9|SSB2 HGNC:29522|MIM:611658|Ensembl:ENSG00000111671|HPRD:13610|Vega:OTTHUMG00000156665 12 12p13.31 splA/ryanodine receptor domain and SOCS box containing 2 protein-coding SPSB2 splA/ryanodine receptor domain and SOCS box containing 2 O SPRY domain-containing SOCS box protein 2|SPRY domain-containing SOCS box protein SSB-2|gene-rich cluster protein C9 20121230 -9606 84733 CBX2 - CDCA6|M33|SRXY5 HGNC:1552|MIM:602770|Ensembl:ENSG00000173894|HPRD:14397|Vega:OTTHUMG00000177463 17 17q25.3 chromobox homolog 2 protein-coding CBX2 chromobox homolog 2 O Pc class homolog|cell division cycle associated 6|chromobox homolog 2 (Pc class homolog, Drosophila)|chromobox protein homolog 2|modifier 3 20121230 -9606 84734 FAM167B - C1orf90 HGNC:28133|Ensembl:ENSG00000183615|HPRD:14401|Vega:OTTHUMG00000007462 1 1p35.1 family with sequence similarity 167, member B protein-coding FAM167B family with sequence similarity 167, member B O protein FAM167B 20121230 -9606 84735 CNDP1 UNQ1915/PRO4380 CN1|CPGL2|HsT2308 HGNC:20675|MIM:609064|Ensembl:ENSG00000150656|HPRD:09883|HPRD:09894|Vega:OTTHUMG00000132852 18 18q22.3 carnosine dipeptidase 1 (metallopeptidase M20 family) protein-coding CNDP1 carnosine dipeptidase 1 (metallopeptidase M20 family) O CNDP dipeptidase 1|beta-Ala-His dipeptidase|carnosinase 1|glutamate carboxypeptidase-like protein 2|serum carnosinase 20121230 -9606 84740 AFAP1-AS1 - AFAP1-AS|AFAP1AS HGNC:28141 4 4p16.1 AFAP1 antisense RNA 1 miscRNA AFAP1-AS1 AFAP1 antisense RNA 1 O - 20121230 -9606 84747 UNC119B hCG_27366 POC7B HGNC:16488|Ensembl:ENSG00000175970|Vega:OTTHUMG00000169201 12 12q24.31 unc-119 homolog B (C. elegans) protein-coding UNC119B unc-119 homolog B (C. elegans) O POC7 centriolar protein homolog B|protein unc-119 homolog B 20121230 -9606 84749 USP30 - - HGNC:20065|MIM:612492|Ensembl:ENSG00000135093|HPRD:15633|Vega:OTTHUMG00000133613 12 12q24.11 ubiquitin specific peptidase 30 protein-coding USP30 ubiquitin specific peptidase 30 O deubiquitinating enzyme 30|ub-specific protease 30|ubiquitin carboxyl-terminal hydrolase 30|ubiquitin specific protease 30|ubiquitin thioesterase 30|ubiquitin thiolesterase 30|ubiquitin-specific protease 30|ubiquitin-specific-processing protease 30 20121230 -9606 84750 FUT10 - - HGNC:19234|Ensembl:ENSG00000172728|Vega:OTTHUMG00000163954 8 8p12 fucosyltransferase 10 (alpha (1,3) fucosyltransferase) protein-coding FUT10 fucosyltransferase 10 (alpha (1,3) fucosyltransferase) O alpha 1,3-fucosyl transferase|alpha-(1,3)-fucosyltransferase 10|fuc-TX|fucT-X|fucosyltransferase X|galactoside 3-L-fucosyltransferase 10 20121230 -9606 84752 B3GNT9 UNQ1922/PRO4397 - HGNC:28714|Ensembl:ENSG00000237172|HPRD:14651|Vega:OTTHUMG00000173315 16 16q22.1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 protein-coding B3GNT9 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 O BGnT-9|beta-1,3-Gn-T9|beta-1,3-N-acetylglucosaminyltransferase 9|beta-1,3-galactosyltransferase-related protein|beta3Gn-T9 20121230 -9606 84757 MGC10814 - - - 19 19p13.11 uncharacterized protein MGC10814 unknown - - - - 20121018 -9606 84759 PCGF1 - 2010002K04Rik|NSPC1|RNF3A-2|RNF68 HGNC:17615|MIM:610231|Ensembl:ENSG00000115289|HPRD:11404|Vega:OTTHUMG00000129954 2 2p13.1 polycomb group ring finger 1 protein-coding PCGF1 polycomb group ring finger 1 O RING finger protein 68|nervous system Polycomb-1|polycomb group RING finger protein 1 20121230 -9606 84765 ZNF577 - - HGNC:28673|Ensembl:ENSG00000161551|HPRD:15856|Vega:OTTHUMG00000157045 19 19q13.41 zinc finger protein 577 protein-coding ZNF577 zinc finger protein 577 O - 20121230 -9606 84766 EFCAB4B - CRACR2A HGNC:28657|MIM:614178|Ensembl:ENSG00000130038|HPRD:10079|Vega:OTTHUMG00000168185 12 12p13.32 EF-hand calcium binding domain 4B protein-coding EFCAB4B EF-hand calcium binding domain 4B O CRAC channel regulator 2A|EF-hand calcium-binding domain-containing protein 4B|calcium release-activated calcium channel regulator 2A 20121230 -9606 84767 TRIM51 - SPRYD5|TRIM51A HGNC:19023|Ensembl:ENSG00000124900|HPRD:10282|Vega:OTTHUMG00000156437 11 11q11 tripartite motif-containing 51 protein-coding TRIM51 tripartite motif-containing 51 O SPRY domain containing 5|SPRY domain-containing protein 5|tripartite motif-containing protein 51 20121230 -9606 84769 MPV17L2 - FKSG24 HGNC:28177|Ensembl:ENSG00000254858|HPRD:13324|Vega:OTTHUMG00000165628 19 19p13.11 MPV17 mitochondrial membrane protein-like 2 protein-coding MPV17L2 MPV17 mitochondrial membrane protein-like 2 O mpv17-like protein 2 20121230 -9606 84771 DDX11L2 RP11-395L14.8 - HGNC:37103 2 2q13 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 2 pseudo DDX11L2 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 2 O - 20121230 -9606 84775 ZNF607 - - HGNC:28192|Ensembl:ENSG00000198182|HPRD:18356|Vega:OTTHUMG00000182108 19 19q13.1 zinc finger protein 607 protein-coding ZNF607 zinc finger protein 607 O - 20121230 -9606 84777 DLGAP1-AS2 - - HGNC:28146 18 18p11.31 DLGAP1 antisense RNA 2 miscRNA DLGAP1-AS2 DLGAP1 antisense RNA 2 O - 20121230 -9606 84779 NAA11 - ARD1B|ARD2|hARD2 HGNC:28125|Ensembl:ENSG00000156269|Vega:OTTHUMG00000160913 4 4q21.21 N(alpha)-acetyltransferase 11, NatA catalytic subunit protein-coding NAA11 N(alpha)-acetyltransferase 11, NatA catalytic subunit O =N-terminal acetyltransferase complex ARD1 subunit homolog B|ARD1 homolog B|N-alpha-acetyltransferase 11|N-alpha-acetyltransferase 11, NatA catalytic subunit|N-terminal acetyltransferase complex ARD1 subunit homolog B|human arrest defective 2|natA catalytic subunit 20121230 -9606 84786 MGC12488 - - - - - uncharacterized protein MGC12488 other - - - - 20111025 -9606 84787 SUV420H2 PP7130 KMT5C HGNC:28405|MIM:613198|Ensembl:ENSG00000133247|HPRD:15454|Vega:OTTHUMG00000150483 19 19q13.42 suppressor of variegation 4-20 homolog 2 (Drosophila) protein-coding SUV420H2 suppressor of variegation 4-20 homolog 2 (Drosophila) O histone-lysine N-methyltransferase SUV420H2|lysine N-methyltransferase 5C|su(var)4-20 homolog 2|suv4-20h2 20121230 -9606 84789 MGC2889 - - - 3 3q29 uncharacterized protein MGC2889 miscRNA - - - - 20121230 -9606 84790 TUBA1C - TUBA6|bcm948 HGNC:20768|Ensembl:ENSG00000167553|HPRD:06747|Vega:OTTHUMG00000169497 12 12q13.12 tubulin, alpha 1c protein-coding TUBA1C tubulin, alpha 1c O alpha-tubulin 6|tubulin alpha-1C chain|tubulin alpha-6 chain|tubulin, alpha 6 20121230 -9606 84791 LINC00467 - C1orf97|RP11-318L16.3 HGNC:28227|HPRD:17500 1 1q32.3 long intergenic non-protein coding RNA 467 miscRNA LINC00467 long intergenic non-protein coding RNA 467 O - 20121230 -9606 84792 FAM220A - C7orf70|SIPAR HGNC:22422|Ensembl:ENSG00000178397|HPRD:14427|Vega:OTTHUMG00000122091 7 7p22.1 family with sequence similarity 220, member A protein-coding FAM220A family with sequence similarity 220, member A O STAT3-interacting protein as a repressor|protein FAM220A 20121230 -9606 84793 FOXD2-AS1 - - HGNC:44256 1 1p33 FOXD2 antisense RNA 1 (head to head) miscRNA FOXD2-AS1 FOXD2 antisense RNA 1 (head to head) O - 20121230 -9606 84795 PYROXD2 - C10orf33|FP3420 HGNC:23517|Ensembl:ENSG00000119943|HPRD:12572|Vega:OTTHUMG00000018877 10 10q24.2 pyridine nucleotide-disulphide oxidoreductase domain 2 protein-coding PYROXD2 pyridine nucleotide-disulphide oxidoreductase domain 2 O pyridine nucleotide-disulfide oxidoreductase domain-containing protein 2 20121230 -9606 84796 MGC13053 - - HPRD:14435 11 11q23.3 uncharacterized MGC13053 unknown - - - - 20121230 -9606 84798 C19orf48 - - HGNC:29667|Ensembl:ENSG00000167747|HPRD:14437 19 19q13.33 chromosome 19 open reading frame 48 protein-coding C19orf48 chromosome 19 open reading frame 48 O multidrug resistance-related protein|uncharacterized protein C19orf48 20121230 -9606 84803 AGPAT9 HMFN0839 AGPAT8|GPAT3|LPAAT-theta|MAG1 HGNC:28157|MIM:610958|Ensembl:ENSG00000138678|HPRD:14417|Vega:OTTHUMG00000130431 4 4q21.23 1-acylglycerol-3-phosphate O-acyltransferase 9 protein-coding AGPAT9 1-acylglycerol-3-phosphate O-acyltransferase 9 O 1-AGP acyltransferase 9|1-AGPAT 9|1-acylglycerol-3-phosphate O-acyltransferase 8|GPAT-3|MAG-1|acyl-CoA:glycerol-3-phosphate acyltransferase 3|endoplasmic reticulum associated GPAT|glycerol-3-phosphate acyltransferase 3|hGPAT3|lung cancer metastasis-associated protein 1|lysophosphatidic acid acyltransferase theta|lysophosphatidic acid acyltransferase, theta 20121230 -9606 84804 MFSD9 PSEC0066 - HGNC:28158|Ensembl:ENSG00000135953|HPRD:14418|Vega:OTTHUMG00000130781 2 2q12.1 major facilitator superfamily domain containing 9 protein-coding MFSD9 major facilitator superfamily domain containing 9 O major facilitator superfamily domain-containing protein 9 20121230 -9606 84807 NFKBID - IkappaBNS|TA-NFKBH HGNC:15671|Ensembl:ENSG00000167604|HPRD:18140|Vega:OTTHUMG00000180760 19 19q13.12 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, delta protein-coding NFKBID nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, delta O I-kappa-B-delta|NF-kappa-B inhibitor delta|T-cell activation NFKB-like protein|ikB-delta|ikappaBdelta 20121230 -9606 84808 C1orf170 - RP11-54O7.8 HGNC:28208 1 1p36.33 chromosome 1 open reading frame 170 miscRNA C1orf170 chromosome 1 open reading frame 170 O - 20121230 -9606 84809 CROCCP2 - CROCCL1 HGNC:28170 1 1p36.13 ciliary rootlet coiled-coil, rootletin pseudogene 2 pseudo CROCCP2 ciliary rootlet coiled-coil, rootletin pseudogene 2 O - 20121230 -9606 84811 BUD13 - Cwc26|fSAP71 HGNC:28199|Ensembl:ENSG00000137656|HPRD:11307|Vega:OTTHUMG00000045136 11 11q23.3 BUD13 homolog (S. cerevisiae) protein-coding BUD13 BUD13 homolog (S. cerevisiae) O BUD13 homolog|functional spliceosome-associated protein 71 20121230 -9606 84812 PLCD4 - - HGNC:9062|MIM:605939|Ensembl:ENSG00000115556|HPRD:07296|Vega:OTTHUMG00000154743 2 2q35 phospholipase C, delta 4 protein-coding PLCD4 phospholipase C, delta 4 O 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase delta-4|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase delta-4|PLC delta4|phosphoinositide phospholipase C-delta-4 20121230 -9606 84814 PPAPDC3 RP11-643E14.1 C9orf67|NET39 HGNC:28174|Ensembl:ENSG00000160539|HPRD:12972|Vega:OTTHUMG00000020822 9 9q34.13 phosphatidic acid phosphatase type 2 domain containing 3 protein-coding PPAPDC3 phosphatidic acid phosphatase type 2 domain containing 3 O phosphatidic acid phosphatase type 2 domain-containing protein 3|probable lipid phosphate phosphatase PPAPDC3 20121230 -9606 84815 MGC12916 - - - 17 17p12 uncharacterized protein MGC12916 miscRNA - - - - 20121230 -9606 84816 RTN4IP1 - NIMP HGNC:18647|MIM:610502|Ensembl:ENSG00000130347|HPRD:18008|Vega:OTTHUMG00000015304 6 6q21 reticulon 4 interacting protein 1 protein-coding RTN4IP1 reticulon 4 interacting protein 1 O NOGO-interacting mitochondrial protein|reticulon-4-interacting protein 1, mitochondrial 20121230 -9606 84817 TXNDC17 - TRP14|TXNL5 HGNC:28218|Ensembl:ENSG00000129235|HPRD:11656|Vega:OTTHUMG00000102053 17 17p13.1 thioredoxin domain containing 17 protein-coding TXNDC17 thioredoxin domain containing 17 O 14 kDa thioredoxin-related protein|protein 42-9-9|thioredoxin (Trx)-related protein, 14 kDa|thioredoxin domain-containing protein 17|thioredoxin-like 5|thioredoxin-like protein 5 20121230 -9606 84818 IL17RC UNQ6118/PRO20040/PRO38901 IL17-RL|IL17RL HGNC:18358|MIM:610925|Ensembl:ENSG00000163702|HPRD:17142|Vega:OTTHUMG00000128648 3 3p25.3|3p25.3-p24.1 interleukin 17 receptor C protein-coding IL17RC interleukin 17 receptor C O IL-17 receptor C|IL-17RL|IL17F receptor|IL17Rhom|interleukin-17 receptor C|interleukin-17 receptor homolog|interleukin-17 receptor-like protein|zcytoR14 20121230 -9606 84820 POLR2J4 - RPB11-phi HGNC:28195 7 7p13 polymerase (RNA) II (DNA directed) polypeptide J4, pseudogene pseudo POLR2J4 polymerase (RNA) II (DNA directed) polypeptide J4, pseudogene O - 20121230 -9606 84823 LMNB2 - LAMB2|LMN2 HGNC:6638|MIM:150341|Ensembl:ENSG00000176619|HPRD:01037|Vega:OTTHUMG00000150626 19 19p13.3 lamin B2 protein-coding LMNB2 lamin B2 O lamin-B2 20121230 -9606 84824 FCRLA RP11-474I16.5 FCRL|FCRL1|FCRLM1|FCRLX|FCRLb|FCRLc1|FCRLc2|FCRLd|FCRLe|FCRX|FREB HGNC:18504|MIM:606891|Ensembl:ENSG00000132185|Vega:OTTHUMG00000034537 1 1q23.3 Fc receptor-like A protein-coding FCRLA Fc receptor-like A O Fc receptor homolog expressed in B cells (FREB)|Fc receptor related protein X|Fc receptor-like and mucin-like 1|fc receptor homolog expressed in B-cells|fc receptor-like and mucin-like protein 1|fc receptor-like protein|fc receptor-related protein X 20121230 -9606 84826 SFT2D3 - - HGNC:28767|Ensembl:ENSG00000173349|HPRD:14683|Vega:OTTHUMG00000131532 2 2q14.3 SFT2 domain containing 3 protein-coding SFT2D3 SFT2 domain containing 3 O SFT2 domain-containing protein 3|vesicle transport protein SFT2C 20121230 -9606 84830 ADTRP RP3-413H6.1 AIG1L|C6orf105|dJ413H6.1 HGNC:21214|MIM:614348|Ensembl:ENSG00000111863|HPRD:12836|Vega:OTTHUMG00000014260 6 6p24.1 androgen-dependent TFPI-regulating protein protein-coding ADTRP androgen-dependent TFPI-regulating protein O androgen-dependent TPF1-regulating protein 20121230 -9606 84832 ANKRD36BP1 RP4-747L4.3 ANKRD26L1|ANKRD36BL1 HGNC:28169 1 1q24.2 ankyrin repeat domain 36B pseudogene 1 pseudo ANKRD36BP1 ankyrin repeat domain 36B pseudogene 1 O - 20121230 -9606 84833 USMG5 PD04912 DAPIT|HCVFTP2|bA792D24.4 HGNC:30889|Ensembl:ENSG00000173915|HPRD:18277|Vega:OTTHUMG00000018984 10 10q24.33 up-regulated during skeletal muscle growth 5 homolog (mouse) protein-coding USMG5 up-regulated during skeletal muscle growth 5 homolog (mouse) O HCV F-transactivated protein 2|diabetes-associated protein in insulin-sensitive tissues|up-regulated during skeletal muscle growth protein 5|upregulated during skeletal muscle growth 5 homolog 20121230 -9606 84836 ABHD14B - CIB HGNC:28235|Ensembl:ENSG00000114779|HPRD:17504|Vega:OTTHUMG00000157816 3 3p21.2 abhydrolase domain containing 14B protein-coding ABHD14B abhydrolase domain containing 14B O CCG1-interacting factor B|abhydrolase domain-containing protein 14B|cell cycle gene 1-interacting factor B 20121230 -9606 84837 ARHGAP5-AS1 - C14orf128 HGNC:20279 14 14q12 ARHGAP5 antisense RNA 1 (head to head) miscRNA ARHGAP5-AS1 ARHGAP5 antisense RNA 1 (head to head) O - 20121230 -9606 84838 ZNF496 - NIZP1|ZFP496|ZKSCAN17 HGNC:23713|MIM:613911|Ensembl:ENSG00000162714|HPRD:15805|Vega:OTTHUMG00000041164 1 1q44 zinc finger protein 496 protein-coding ZNF496 zinc finger protein 496 O NSD1 (nuclear receptor binding SET-domain containing 1)-interacting zinc finger protein 1|zinc finger protein with KRAB and SCAN domains 17 20121230 -9606 84839 RAX2 - ARMD6|CORD11|QRX|RAXL1 HGNC:18286|MIM:610362|Ensembl:ENSG00000173976|HPRD:17508|Vega:OTTHUMG00000171148 19 19p13.3 retina and anterior neural fold homeobox 2 protein-coding RAX2 retina and anterior neural fold homeobox 2 O Q50-type retinal homeobox protein|retina and anterior neural fold homeobox like 1|retina and anterior neural fold homeobox protein 2|retina and anterior neural fold homeobox-like protein 1 20121230 -9606 84842 HPDL - 4-HPPD-L|GLOXD1|RP4-534D1.1 HGNC:28242|Ensembl:ENSG00000186603|HPRD:17509|Vega:OTTHUMG00000007681 1 1p34.1 4-hydroxyphenylpyruvate dioxygenase-like protein-coding HPDL 4-hydroxyphenylpyruvate dioxygenase-like O 4-hydroxyphenylpyruvate dioxygenase-like protein|glyoxalase domain containing 1|glyoxalase domain-containing protein 1 20121230 -9606 84843 MGC15705 - - - 22 22q12.2 uncharacterized protein MGC15705 unknown - - - - 20121230 -9606 84844 PHF5A - INI|Rds3|SAP14b|SF3b14b|bK223H9.2 HGNC:18000|Ensembl:ENSG00000100410|HPRD:15126|Vega:OTTHUMG00000150966 22 22q13.2 PHD finger protein 5A protein-coding PHF5A PHD finger protein 5A O PHD finger-like domain protein 5A|PHD finger-like domain-containing protein 5A|PHD-finger 5a|splicing factor 3B associated 14 kDa protein|splicing factor 3B-associated 14 kDa protein 20121230 -9606 84847 LINC00525 tcag7.1266 - HGNC:40290 7 7p12.3 long intergenic non-protein coding RNA 525 miscRNA LINC00525 long intergenic non-protein coding RNA 525 O - 20121230 -9606 84848 MGC16121 - - HPRD:06638 X Xq26.3 uncharacterized protein MGC16121 miscRNA - - - - 20121230 -9606 84849 MGC16142 - - - 7 7q21.2 uncharacterized protein MGC16142 miscRNA - - - - 20121230 -9606 84850 GLIS3-AS1 - C9orf70 HGNC:28260 9 9p24.2 GLIS3 antisense RNA 1 miscRNA GLIS3-AS1 GLIS3 antisense RNA 1 O - 20121230 -9606 84851 TRIM52 - RNF102 HGNC:19024|Ensembl:ENSG00000183718|HPRD:10283|Vega:OTTHUMG00000130964 5 5q35.3 tripartite motif containing 52 protein-coding TRIM52 tripartite motif containing 52 O RING finger protein 102|tripartite motif-containing 52|tripartite motif-containing protein 52 20121230 -9606 84852 ATP1A1OS RP4-655J12.2 C1orf203 HGNC:28262 1 1p13.1 ATP1A1 opposite strand miscRNA ATP1A1OS ATP1A1 opposite strand O - 20121230 -9606 84856 LINC00839 - - HGNC:28269|HPRD:17516 10 10q11.21 long intergenic non-protein coding RNA 839 miscRNA LINC00839 long intergenic non-protein coding RNA 839 O - 20121230 -9606 84858 ZNF503 - NOLZ-1|NOLZ1 HGNC:23589|MIM:613902|Ensembl:ENSG00000165655|HPRD:15811|Vega:OTTHUMG00000018526 10 10q22.2 zinc finger protein 503 protein-coding ZNF503 zinc finger protein 503 O - 20121230 -9606 84859 LRCH3 - - HGNC:28637|Ensembl:ENSG00000186001|HPRD:14308|Vega:OTTHUMG00000155378 3 3q29 leucine-rich repeats and calponin homology (CH) domain containing 3 protein-coding LRCH3 leucine-rich repeats and calponin homology (CH) domain containing 3 O leucine-rich repeat and calponin homology domain-containing protein 3 20121230 -9606 84861 KLHL22 - KELCHL HGNC:25888|Ensembl:ENSG00000099910|HPRD:07858|Vega:OTTHUMG00000150778 22 22q11.21 kelch-like 22 (Drosophila) protein-coding KLHL22 kelch-like 22 (Drosophila) O kelch-like protein 22 20121230 -9606 84864 MINA - MDIG|MINA53|NO52 HGNC:19441|MIM:612049|Ensembl:ENSG00000170854|HPRD:17575|Vega:OTTHUMG00000160107 3 3q11.2 MYC induced nuclear antigen protein-coding MINA MYC induced nuclear antigen O MYC-induced nuclear antigen|mineral dust induced gene protein|mineral dust-induced gene protein|myc-induced nuclear antigen, 53 kDa|nucleolar protein 52 20121230 -9606 84865 CCDC142 PSEC0243 - HGNC:25889|Ensembl:ENSG00000135637|HPRD:08598|Vega:OTTHUMG00000129962 2 2p13.1 coiled-coil domain containing 142 protein-coding CCDC142 coiled-coil domain containing 142 O coiled-coil domain-containing protein 142 20121230 -9606 84866 TMEM25 UNQ2531/PRO6030 - HGNC:25890|MIM:613934|Ensembl:ENSG00000149582|HPRD:11635|Vega:OTTHUMG00000166339 11 11q23.3 transmembrane protein 25 protein-coding TMEM25 transmembrane protein 25 O 0610039J01Rik 20121230 -9606 84867 PTPN5 - PTPSTEP|STEP HGNC:9657|MIM:176879|Ensembl:ENSG00000110786|HPRD:01472|Vega:OTTHUMG00000134304 11 11p15.1 protein tyrosine phosphatase, non-receptor type 5 (striatum-enriched) protein-coding PTPN5 protein tyrosine phosphatase, non-receptor type 5 (striatum-enriched) O neural-specific protein-tyrosine phosphatase|protein-tyrosine phosphatase striatum-enriched|striatum-enriched protein-tyrosine phosphatase|tyrosine-protein phosphatase non-receptor type 5 20121230 -9606 84868 HAVCR2 - HAVcr-2|KIM-3|TIM3|TIMD-3|TIMD3|Tim-3 HGNC:18437|MIM:606652|Ensembl:ENSG00000135077|HPRD:16227|Vega:OTTHUMG00000130249 5 5q33.3 hepatitis A virus cellular receptor 2 protein-coding HAVCR2 hepatitis A virus cellular receptor 2 O T cell immunoglobulin mucin 3|T cell immunoglobulin mucin-3|T-cell immunoglobulin and mucin domain-containing protein 3|T-cell membrane protein 3|kidney injury molecule-3 20121230 -9606 84869 CBR4 - SDR45C1 HGNC:25891|Ensembl:ENSG00000145439|HPRD:07859|Vega:OTTHUMG00000161025 4 4q32.3 carbonyl reductase 4 protein-coding CBR4 carbonyl reductase 4 O 3-oxoacyl-[acyl-carrier-protein] reductase|carbonic reductase 4|carbonyl reductase family member 4|quinone reductase CBR4|short chain dehydrogenase/reductase family 45C, member 1 20121230 -9606 84870 RSPO3 - CRISTIN1|PWTSR|THSD2 HGNC:20866|MIM:610574|Ensembl:ENSG00000146374|HPRD:18181|Vega:OTTHUMG00000015521 6 6q22.33 R-spondin 3 protein-coding RSPO3 R-spondin 3 O R-spondin 3 homolog|R-spondin-3|protein with TSP type-1 repeat|roof plate-specific spondin-3|thrombospondin type-1 domain-containing protein 2|thrombospondin, type I, domain containing 2 20121230 -9606 84871 AGBL4 RP11-342A17.1 CCP6 HGNC:25892|Ensembl:ENSG00000186094|HPRD:07487|Vega:OTTHUMG00000007793 1 1p33 ATP/GTP binding protein-like 4 protein-coding AGBL4 ATP/GTP binding protein-like 4 O ATP/GTP-binding protein-like 4|cytosolic carboxypeptidase 6 20121230 -9606 84872 ZC3H10 - ZC3HDC10 HGNC:25893|Ensembl:ENSG00000135482|HPRD:07860|Vega:OTTHUMG00000170184 12 12q13.2 zinc finger CCCH-type containing 10 protein-coding ZC3H10 zinc finger CCCH-type containing 10 O zinc finger CCCH domain-containing protein 10|zinc finger CCCH-type domain containing 10 20121230 -9606 84873 GPR128 - - HGNC:19241|MIM:612307|Ensembl:ENSG00000144820|HPRD:17060|Vega:OTTHUMG00000159083 3 3q12.2 G protein-coupled receptor 128 protein-coding GPR128 G protein-coupled receptor 128 O probable G-protein coupled receptor 128 20121230 -9606 84874 ZNF514 - - HGNC:25894|Ensembl:ENSG00000144026|HPRD:15814|Vega:OTTHUMG00000130391 2 2q11.1 zinc finger protein 514 protein-coding ZNF514 zinc finger protein 514 O - 20121230 -9606 84875 PARP10 - ARTD10 HGNC:25895|MIM:609564|Ensembl:ENSG00000178685|HPRD:15100|Vega:OTTHUMG00000165408 8 8q24.3 poly (ADP-ribose) polymerase family, member 10 protein-coding PARP10 poly (ADP-ribose) polymerase family, member 10 O ADP-ribosyltransferase diphtheria toxin-like 10|PARP-10|poly [ADP-ribose] polymerase 10 20121230 -9606 84876 ORAI1 - CRACM1|ORAT1|TMEM142A HGNC:25896|MIM:610277|Ensembl:ENSG00000182500|HPRD:08599|Vega:OTTHUMG00000169073 12 12q24.31 ORAI calcium release-activated calcium modulator 1 protein-coding ORAI1 ORAI calcium release-activated calcium modulator 1 O calcium release-activated calcium channel protein 1|calcium release-activated calcium modulator 1|protein orai-1|transmembrane protein 142A 20121230 -9606 84878 ZBTB45 - ZNF499 HGNC:23715|Ensembl:ENSG00000119574|HPRD:15808 19 19q13.43 zinc finger and BTB domain containing 45 protein-coding ZBTB45 zinc finger and BTB domain containing 45 O zinc finger and BTB domain-containing protein 45|zinc finger protein 499 20121230 -9606 84879 MFSD2A HMFN0656 MFSD2 HGNC:25897|MIM:614397|Ensembl:ENSG00000168389|HPRD:07861|Vega:OTTHUMG00000009293 1 1p34.2 major facilitator superfamily domain containing 2A protein-coding MFSD2A major facilitator superfamily domain containing 2A O major facilitator superfamily domain containing 2|major facilitator superfamily domain-containing protein 2A 20121230 -9606 84881 RPUSD4 - - HGNC:25898|Ensembl:ENSG00000165526|HPRD:07862|Vega:OTTHUMG00000165815 11 11q24.2 RNA pseudouridylate synthase domain containing 4 protein-coding RPUSD4 RNA pseudouridylate synthase domain containing 4 O RNA pseudouridylate synthase domain-containing protein 4 20121230 -9606 84883 AIFM2 - AMID|PRG3|RP11-367H5.2 HGNC:21411|MIM:605159|Ensembl:ENSG00000042286|HPRD:09797|Vega:OTTHUMG00000018398 10 10q22.1 apoptosis-inducing factor, mitochondrion-associated, 2 protein-coding AIFM2 apoptosis-inducing factor, mitochondrion-associated, 2 O apoptosis-inducing factor (AIF)-homologous mitochondrion-associated inducer of death|apoptosis-inducing factor (AIF)-like mitochondrion-associated inducer of death|apoptosis-inducing factor 2|p53-responsive gene 3 protein 20121230 -9606 84885 ZDHHC12 RP11-545E17.12-002 ZNF400 HGNC:19159|Ensembl:ENSG00000160446|HPRD:15709|Vega:OTTHUMG00000020756 9 9q34.11 zinc finger, DHHC-type containing 12 protein-coding ZDHHC12 zinc finger, DHHC-type containing 12 O DHHC-12|probable palmitoyltransferase ZDHHC12|zinc finger DHHC domain-containing protein 12|zinc finger protein 400|zinc finger, DHHC domain containing 12 20121230 -9606 84886 C1orf198 - - HGNC:25900|Ensembl:ENSG00000119280|HPRD:13359|Vega:OTTHUMG00000037790 1 1q42.2 chromosome 1 open reading frame 198 protein-coding C1orf198 chromosome 1 open reading frame 198 O uncharacterized protein C1orf198 20121230 -9606 84888 SPPL2A PSEC0147 IMP3|PSL2 HGNC:30227|MIM:608238|Ensembl:ENSG00000138600|HPRD:09742|Vega:OTTHUMG00000131647 15 15q21.2 signal peptide peptidase like 2A protein-coding SPPL2A signal peptide peptidase like 2A O IMP-3|SPP-like 2A|intramembrane cleaving protease|intramembrane protease 3|presenilin-like protein 2|signal peptide peptidase-like 2A 20121230 -9606 84889 SLC7A3 - ATRC3|CAT-3|CAT3 HGNC:11061|MIM:300443|Ensembl:ENSG00000165349|HPRD:02343|Vega:OTTHUMG00000021780 X Xq13.1 solute carrier family 7 (cationic amino acid transporter, y+ system), member 3 protein-coding SLC7A3 solute carrier family 7 (cationic amino acid transporter, y+ system), member 3 O cationic amino acid transporter 3 20121230 -9606 84890 ADO - C10orf22 HGNC:23506|MIM:611392|Ensembl:ENSG00000181915|HPRD:12566|Vega:OTTHUMG00000018306 10 10q21.3 2-aminoethanethiol (cysteamine) dioxygenase protein-coding ADO 2-aminoethanethiol (cysteamine) dioxygenase O 2-aminoethanethiol dioxygenase|cysteamine (2-aminoethanethiol) dioxygenase (ADO)|cysteamine dioxygenase 20121230 -9606 84891 ZSCAN10 - ZNF206 HGNC:12997|Ensembl:ENSG00000130182|HPRD:15747|Vega:OTTHUMG00000177478 16 16p13.3 zinc finger and SCAN domain containing 10 protein-coding ZSCAN10 zinc finger and SCAN domain containing 10 O zinc finger and SCAN domain-containing protein 10|zinc finger protein 206 20121230 -9606 84892 GTDC2 - AGO61|C3orf39|MDDGA8 HGNC:25902|MIM:614828|Ensembl:ENSG00000144647|HPRD:07863|Vega:OTTHUMG00000133038 3 3p22.1 glycosyltransferase-like domain containing 2 protein-coding GTDC2 glycosyltransferase-like domain containing 2 O glycosyltransferase-like domain-containing protein 2 20121230 -9606 84893 FBXO18 RP11-536K7.6 FBH1|Fbx18 HGNC:13620|MIM:607222|Ensembl:ENSG00000134452|HPRD:06243|Vega:OTTHUMG00000017609 10 10p15.1 F-box protein, helicase, 18 protein-coding FBXO18 F-box protein, helicase, 18 O F-box DNA helicase 1|F-box only protein 18|F-box only protein, helicase, 18 20121230 -9606 84894 LINGO1 - LERN1|LRRN6A|UNQ201 HGNC:21205|MIM:609791|Ensembl:ENSG00000169783|HPRD:14322|Vega:OTTHUMG00000172629 15 15q24.3 leucine rich repeat and Ig domain containing 1 protein-coding LINGO1 leucine rich repeat and Ig domain containing 1 O leucine rich repeat neuronal 6A|leucine-rich repeat and immunoglobilin domain-containing protein 1|leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 1|leucine-rich repeat neuronal protein 1|leucine-rich repeat neuronal protein 6A 20121230 -9606 84895 FAM73B RP11-167N5.1 C9orf54 HGNC:23621|Ensembl:ENSG00000148343|HPRD:12965|Vega:OTTHUMG00000020770 9 9q34.11 family with sequence similarity 73, member B protein-coding FAM73B family with sequence similarity 73, member B O protein FAM73B 20121230 -9606 84896 ATAD1 FNP001 AFDC1|THORASE HGNC:25903|MIM:614452|Ensembl:ENSG00000138138|HPRD:12499|Vega:OTTHUMG00000018685 10 10q23.31 ATPase family, AAA domain containing 1 protein-coding ATAD1 ATPase family, AAA domain containing 1 O ATPase family AAA domain-containing protein 1 20121230 -9606 84897 TBRG1 - NIAM|TB-5 HGNC:29551|MIM:610614|Ensembl:ENSG00000154144|HPRD:15477|Vega:OTTHUMG00000153024 11 11q24.2 transforming growth factor beta regulator 1 protein-coding TBRG1 transforming growth factor beta regulator 1 O nuclear interactor of ARF and MDM2 20121230 -9606 84898 PLXDC2 UNQ2514/PRO6003 TEM7R HGNC:21013|MIM:606827|Ensembl:ENSG00000120594|HPRD:08440|Vega:OTTHUMG00000017781 10 10p12.31 plexin domain containing 2 protein-coding PLXDC2 plexin domain containing 2 O 1200007L24Rik|plexin domain-containing protein 2|tumor endothelial marker 7-related protein 20121230 -9606 84899 TMTC4 RP11-113J24.1 - HGNC:25904|Ensembl:ENSG00000125247|HPRD:07864|Vega:OTTHUMG00000017289 13 13q32.3 transmembrane and tetratricopeptide repeat containing 4 protein-coding TMTC4 transmembrane and tetratricopeptide repeat containing 4 O transmembrane and TPR repeat-containing protein 4 20121230 -9606 84900 RNFT2 UNQ514 TMEM118 HGNC:25905|Ensembl:ENSG00000135119|HPRD:08600|Vega:OTTHUMG00000150882 12 12q24.22 ring finger protein, transmembrane 2 protein-coding RNFT2 ring finger protein, transmembrane 2 O RING finger and transmembrane domain-containing protein 2|transmembrane protein 118 20121230 -9606 84901 NFATC2IP - ESC2|NIP45|RAD60 HGNC:25906|MIM:614525|Ensembl:ENSG00000176953|HPRD:10971|Vega:OTTHUMG00000097763 16 16p11.2 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2 interacting protein protein-coding NFATC2IP nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2 interacting protein O 45 kDa NF-AT-interacting protein|45 kDa NFAT-interacting protein|NFATC2-interacting protein|nuclear factor of activated T-cells, cytoplasmic 2-interacting protein 20121230 -9606 84902 CEP89 - CCDC123 HGNC:25907|Ensembl:ENSG00000121289|HPRD:08601|Vega:OTTHUMG00000180424 19 19q13.11 centrosomal protein 89kDa protein-coding CEP89 centrosomal protein 89kDa O centrosomal protein of 89 kDa|coiled-coil domain containing 123|coiled-coil domain-containing protein 123, mitochondrial 20121230 -9606 84904 ARHGEF39 - C9orf100|RP11-331F9.7 HGNC:25909|Ensembl:ENSG00000137135|HPRD:12929|Vega:OTTHUMG00000019869 9 9p13.3 Rho guanine nucleotide exchange factor (GEF) 39 protein-coding ARHGEF39 Rho guanine nucleotide exchange factor (GEF) 39 O rho guanine nucleotide exchange factor 39|vav-like protein C9orf100 20121230 -9606 84905 ZNF341 RP4-553F4.1 - HGNC:15992|Ensembl:ENSG00000131061|HPRD:15781|Vega:OTTHUMG00000032275 20 20q11.22 zinc finger protein 341 protein-coding ZNF341 zinc finger protein 341 O - 20121230 -9606 84908 FAM136A - - HGNC:25911|Ensembl:ENSG00000035141|HPRD:07866|Vega:OTTHUMG00000129668 2 2p13.3 family with sequence similarity 136, member A protein-coding FAM136A family with sequence similarity 136, member A O protein FAM136A 20121230 -9606 84909 C9orf3 RP11-80I15.5 AOPEP|AP-O|APO|C90RF3|ONPEP HGNC:1361|Ensembl:ENSG00000148120|HPRD:07476|Vega:OTTHUMG00000020276 9 9q22.32 chromosome 9 open reading frame 3 protein-coding C9orf3 chromosome 9 open reading frame 3 O aminopeptidase O 20121230 -9606 84910 TMEM87B - - HGNC:25913|Ensembl:ENSG00000153214|HPRD:07867|Vega:OTTHUMG00000153266 2 2q13 transmembrane protein 87B protein-coding TMEM87B transmembrane protein 87B O - 20121230 -9606 84911 ZNF382 - KS1 HGNC:17409|MIM:609516|Ensembl:ENSG00000161298|HPRD:18331|Vega:OTTHUMG00000048153 19 19q13.12 zinc finger protein 382 protein-coding ZNF382 zinc finger protein 382 O KRAB/zinc finger suppressor protein 1|multiple zinc finger and krueppel-associated box protein KS1 20121230 -9606 84912 SLC35B4 PSEC0055 YEA|YEA4 HGNC:20584|MIM:610923|Ensembl:ENSG00000205060|HPRD:11578|Vega:OTTHUMG00000155321 7 7q33 solute carrier family 35, member B4 protein-coding SLC35B4 solute carrier family 35, member B4 O UDP-Xylose/N-Acetylglucosamine transporter|UDP-xylose and UDP-N-acetylglucosamine transporter|YEA4 homolog 20121230 -9606 84913 ATOH8 - HATH6|bHLHa21 HGNC:24126|Ensembl:ENSG00000168874|HPRD:09813|Vega:OTTHUMG00000130178 2 2p11.2 atonal homolog 8 (Drosophila) protein-coding ATOH8 atonal homolog 8 (Drosophila) O atonal homolog 6|basic helix loop helix transcription factor 6|basic helix-loop-helix transcription factor 6|class A basic helix-loop-helix protein 21|helix-loop-helix protein hATH-6|protein atonal homolog 8 20121230 -9606 84914 ZNF587 - ZF6 HGNC:30955|Ensembl:ENSG00000198466|HPRD:15864|Vega:OTTHUMG00000154901 19 19q13.43 zinc finger protein 587 protein-coding ZNF587 zinc finger protein 587 O zinc finger protein zfp6 20121230 -9606 84915 FAM222A - C12orf34 HGNC:25915|Ensembl:ENSG00000139438|HPRD:07868|Vega:OTTHUMG00000169260 12 12q24.11 family with sequence similarity 222, member A protein-coding FAM222A family with sequence similarity 222, member A O protein FAM222A|uncharacterized protein C12orf34 20121230 -9606 84916 CIRH1A - CIRHIN|NAIC|TEX292|UTP4 HGNC:1983|MIM:607456|Ensembl:ENSG00000141076|HPRD:08468|Vega:OTTHUMG00000137570 16 16q22.1 cirrhosis, autosomal recessive 1A (cirhin) protein-coding CIRH1A cirrhosis, autosomal recessive 1A (cirhin) O UTP4, small subunit (SSU) processome component, homolog|cirhin|testis expressed gene 292 20121230 -9606 84918 LRP11 RP11-350J20.11-002 MANSC3|bA350J20.3 HGNC:16936|Ensembl:ENSG00000120256|HPRD:17446|Vega:OTTHUMG00000015801 6 6q25.1 low density lipoprotein receptor-related protein 11 protein-coding LRP11 low density lipoprotein receptor-related protein 11 O LRP-11|low-density lipoprotein receptor-related protein 11 20121230 -9606 84919 PPP1R15B - CREP HGNC:14951|MIM:613257|Ensembl:ENSG00000158615|HPRD:17892|Vega:OTTHUMG00000036105 1 1q32.1 protein phosphatase 1, regulatory subunit 15B protein-coding PPP1R15B protein phosphatase 1, regulatory subunit 15B O protein phosphatase 1 regulatory subunit 15B|protein phosphatase 1, regulatory (inhibitor) subunit 15B 20121230 -9606 84920 ALG10 - DIE2|KCR1 HGNC:23162|MIM:603313|Ensembl:ENSG00000139133|Vega:OTTHUMG00000169285 12 12p11.1 asparagine-linked glycosylation 10, alpha-1,2-glucosyltransferase homolog (S. pombe) protein-coding ALG10 asparagine-linked glycosylation 10, alpha-1,2-glucosyltransferase homolog (S. pombe) O alpha-1,2-glucosyltransferase ALG10-A|alpha-2-glucosyltransferase ALG10-A|alpha2-glucosyltransferase|asparagine-linked glycosylation 10 homolog (yeast, alpha-1,2-glucosyltransferase)|asparagine-linked glycosylation protein 10 homolog A|derepression of ITR1 expression 2 homolog|dol-P-Glc:Glc(2)Man(9)GlcNAc(2)-PP-Dol alpha-1,2-glucosyltransferase|potassium channel regulator 1 20121230 -9606 84922 FIZ1 - ZNF798 HGNC:25917|MIM:609133|Ensembl:ENSG00000179943|HPRD:07870|Vega:OTTHUMG00000180858 19 19q13.42 FLT3-interacting zinc finger 1 protein-coding FIZ1 FLT3-interacting zinc finger 1 O flt3-interacting zinc finger protein 1|zinc finger protein 798 20121230 -9606 84923 FAM104A - - HGNC:25918|Ensembl:ENSG00000133193|HPRD:08602|Vega:OTTHUMG00000150564 17 17q25.1 family with sequence similarity 104, member A protein-coding FAM104A family with sequence similarity 104, member A O protein FAM104A 20121230 -9606 84924 ZNF566 - - HGNC:25919|Ensembl:ENSG00000186017|HPRD:15847|Vega:OTTHUMG00000048148 19 19q13.12 zinc finger protein 566 protein-coding ZNF566 zinc finger protein 566 O - 20121230 -9606 84925 DIRC2 - RCC4 HGNC:16628|MIM:602773|Ensembl:ENSG00000138463|HPRD:04142|Vega:OTTHUMG00000159553 3 3q21.1 disrupted in renal carcinoma 2 protein-coding DIRC2 disrupted in renal carcinoma 2 O disrupted in renal cancer protein 2|disrupted in renal carcinoma protein 2|renal cell carcinoma 4 20121230 -9606 84926 SPRYD3 - - HGNC:25920|Ensembl:ENSG00000167778|HPRD:08603|Vega:OTTHUMG00000170101 12 12q13.13 SPRY domain containing 3 protein-coding SPRYD3 SPRY domain containing 3 O SPRY domain-containing protein 3 20121230 -9606 84928 TMEM209 - NET31 HGNC:21898|Ensembl:ENSG00000146842|HPRD:07871|Vega:OTTHUMG00000157653 7 7q32.2 transmembrane protein 209 protein-coding TMEM209 transmembrane protein 209 O - 20121230 -9606 84929 FIBCD1 RP11-83J21.2 - HGNC:25922|MIM:613357|Ensembl:ENSG00000130720|HPRD:16895|Vega:OTTHUMG00000020814 9 9q34.12 fibrinogen C domain containing 1 protein-coding FIBCD1 fibrinogen C domain containing 1 O fibrinogen C domain-containing protein 1 20121230 -9606 84930 MASTL - GREATWALL|GW|GWL|MAST-L|RP11-85G18.2|THC2|hGWL HGNC:19042|MIM:608221|Ensembl:ENSG00000120539|HPRD:10499|Vega:OTTHUMG00000017855 10 10p12.1 microtubule associated serine/threonine kinase-like protein-coding MASTL microtubule associated serine/threonine kinase-like O greatwall protein kinase|microtubule-associated serine/threonine-protein kinase-like|serine/threonine-protein kinase greatwall 20121230 -9606 84931 LOC84931 - - HPRD:08604 2 2q14.2 uncharacterized LOC84931 miscRNA - - - - 20121230 -9606 84932 RAB2B - - HGNC:20246|MIM:607466|Ensembl:ENSG00000129472|HPRD:06312|Vega:OTTHUMG00000029693 14 14q11.2 RAB2B, member RAS oncogene family protein-coding RAB2B RAB2B, member RAS oncogene family O GTP-binding protein RAB2B|RAS family, member RAB2B|ras-related protein Rab-2B 20121230 -9606 84933 C8orf76 - - HGNC:25924|Ensembl:ENSG00000189376|HPRD:08605|Vega:OTTHUMG00000165087|Vega:OTTHUMG00000172562 8 8q24.13 chromosome 8 open reading frame 76 protein-coding C8orf76 chromosome 8 open reading frame 76 O uncharacterized protein C8orf76 20121230 -9606 84934 C12orf52 PSEC0043 RITA HGNC:25925|Ensembl:ENSG00000139405|HPRD:08606|Vega:OTTHUMG00000169643 12 12q24.13 chromosome 12 open reading frame 52 protein-coding C12orf52 chromosome 12 open reading frame 52 O RBP-J interacting and tubulin associated|RBPJ-interacting and tubulin-associated protein 20121230 -9606 84935 MEDAG RP11-252M21.2 AWMS3|C13orf33|MEDA-4|MEDA4|hAWMS3 HGNC:25926|Ensembl:ENSG00000102802|HPRD:07872|Vega:OTTHUMG00000016679 13 13q12.3 mesenteric estrogen-dependent adipogenesis protein-coding MEDAG mesenteric estrogen-dependent adipogenesis O activated in W/Wv mouse stomach 3 homolog|mesenteric estrogen-dependent adipose 4|uncharacterized protein C13orf33 20121230 -9606 84936 ZFYVE19 - MPFYVE HGNC:20758|Ensembl:ENSG00000166140|HPRD:15731|Vega:OTTHUMG00000172537 15 15q15.1 zinc finger, FYVE domain containing 19 protein-coding ZFYVE19 zinc finger, FYVE domain containing 19 O MLL partner containing FYVE domain|zinc finger FYVE domain-containing protein 19 20121230 -9606 84937 ZNRF1 - NIN283 HGNC:18452|MIM:612060|Ensembl:ENSG00000186187|HPRD:15893|Vega:OTTHUMG00000137606 16 16q23.1 zinc and ring finger 1, E3 ubiquitin protein ligase protein-coding ZNRF1 zinc and ring finger 1, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase ZNRF1|nerve injury gene 283|nerve injury-induced gene 283 protein|zinc and ring finger protein 1|zinc/RING finger protein 1 20121230 -9606 84938 ATG4C - APG4-C|APG4C|AUTL1|AUTL3 HGNC:16040|MIM:611339|Ensembl:ENSG00000125703|HPRD:07473|Vega:OTTHUMG00000009142 1 1p31.3 autophagy related 4C, cysteine peptidase protein-coding ATG4C autophagy related 4C, cysteine peptidase O APG4 autophagy 4 homolog C|ATG4 autophagy related 4 homolog C|AUT-like 1, cysteine endopeptidase|AUT-like 3 cysteine endopeptidase|autophagin-3|autophagy-related cysteine endopeptidase 3|autophagy-related protein 4 homolog C|cysteine protease ATG4C 20121230 -9606 84939 MUM1 - EXPAND1|HSPC211|MUM-1 HGNC:29641|Ensembl:ENSG00000160953|HPRD:14789|Vega:OTTHUMG00000180055 19 19p13.3 melanoma associated antigen (mutated) 1 protein-coding MUM1 melanoma associated antigen (mutated) 1 O PWWP domain-containing protein MUM1|melanoma ubiquitous mutated protein|mutated melanoma-associated antigen 1|protein expandere 20121230 -9606 84940 CORO6 PP1009 - HGNC:21356|Ensembl:ENSG00000167549|HPRD:08607|Vega:OTTHUMG00000132732 17 17q11.2 coronin 6 protein-coding CORO6 coronin 6 O clipin-E|coronin, actin binding protein 6|coronin-6|coronin-like protein E 20121230 -9606 84941 HSH2D - ALX|HSH2 HGNC:24920|MIM:608349|Ensembl:ENSG00000196684|HPRD:12219|Vega:OTTHUMG00000182256 19 19p13.12 hematopoietic SH2 domain containing protein-coding HSH2D hematopoietic SH2 domain containing O adaptor in lymphocytes of unknown function X|hematopoietic SH2 domain-containing protein|hematopoietic SH2 protein 20121230 -9606 84942 WDR73 HSPC264 - HGNC:25928|Ensembl:ENSG00000177082|HPRD:08608|Vega:OTTHUMG00000172375 15 15q25.2 WD repeat domain 73 protein-coding WDR73 WD repeat domain 73 O FLJ00296 protein|WD repeat-containing protein 73 20121230 -9606 84944 MAEL - CT128|RP11-102C16.1|SPATA35 HGNC:25929|MIM:611368|Ensembl:ENSG00000143194|HPRD:08609|Vega:OTTHUMG00000034432 1 1q24.1 maelstrom spermatogenic transposon silencer protein-coding MAEL maelstrom spermatogenic transposon silencer O cancer/testis antigen 128|maelstrom homolog|protein maelstrom homolog|spermatogenesis associated 35 20121230 -9606 84945 ABHD13 - BEM46L1|C13orf6|RP11-153I24.2|bA153I24.2 HGNC:20293|Ensembl:ENSG00000139826|HPRD:12618|Vega:OTTHUMG00000017330 13 13q33.3 abhydrolase domain containing 13 protein-coding ABHD13 abhydrolase domain containing 13 O abhydrolase domain-containing protein 13 20121230 -9606 84946 LTV1 - C6orf93|dJ468K18.4 HGNC:21173|Ensembl:ENSG00000135521|HPRD:12906|Vega:OTTHUMG00000015733 6 6q24.2 LTV1 homolog (S. cerevisiae) protein-coding LTV1 LTV1 homolog (S. cerevisiae) O protein LTV1 homolog 20121230 -9606 84947 SERAC1 RP1-257C19.1 - HGNC:21061|MIM:614725|Ensembl:ENSG00000122335|HPRD:10223|Vega:OTTHUMG00000015905 6 6q25.3 serine active site containing 1 protein-coding SERAC1 serine active site containing 1 O protein SERAC1|serine active site-containing protein 1 20121230 -9606 84948 TIGD5 - - HGNC:18336|Ensembl:ENSG00000179886|HPRD:18189|Vega:OTTHUMG00000162260 8 8q24.3 tigger transposable element derived 5 protein-coding TIGD5 tigger transposable element derived 5 O tigger transposable element-derived protein 5 20121230 -9606 84950 PRPF38A - Prp38|RP5-965L7.1 HGNC:25930|Ensembl:ENSG00000134748|HPRD:10972|Vega:OTTHUMG00000008199 1 1p32.3 PRP38 pre-mRNA processing factor 38 (yeast) domain containing A protein-coding PRPF38A PRP38 pre-mRNA processing factor 38 (yeast) domain containing A O pre-mRNA-splicing factor 38A 20121230 -9606 84951 TNS4 PP14434 CTEN HGNC:24352|MIM:608385|Ensembl:ENSG00000131746|HPRD:12223|Vega:OTTHUMG00000133330 17 17q21.2 tensin 4 protein-coding TNS4 tensin 4 O C terminal tensin like|C-terminal tensin-like protein|tensin-4 20121230 -9606 84952 CGNL1 - JACOP HGNC:25931|MIM:607856|Ensembl:ENSG00000128849|HPRD:09708|Vega:OTTHUMG00000166485 15 15q21.3 cingulin-like 1 protein-coding CGNL1 cingulin-like 1 O cingulin-like protein 1|junction-associated coiled-coil protein|paracingulin 20121230 -9606 84953 MICALCL - Ebitein1 HGNC:25933|MIM:612355|Ensembl:ENSG00000133808|HPRD:08610|Vega:OTTHUMG00000165777 11 11p15.3 MICAL C-terminal like protein-coding MICALCL MICAL C-terminal like O ERK2-binding testicular protein 1|MICAL C-terminal-like protein|ebitein-1 20121230 -9606 84954 MPND - - HGNC:25934|Ensembl:ENSG00000008382|HPRD:07873 19 19p13.3 MPN domain containing protein-coding MPND MPN domain containing O MPN domain-containing protein 20121230 -9606 84955 NUDCD1 - CML66|OVA66 HGNC:24306|MIM:606109|Ensembl:ENSG00000120526|HPRD:16200|Vega:OTTHUMG00000164931 8 8q23 NudC domain containing 1 protein-coding NUDCD1 NudC domain containing 1 O chronic myelogenous leukemia tumor antigen 66|nudC domain-containing protein 1|tumor antigen CML66 20121230 -9606 84957 RELT - TNFRSF19L|TRLT HGNC:13764|MIM:611211|Ensembl:ENSG00000054967|HPRD:15544|Vega:OTTHUMG00000167973 11 11q13.4 RELT tumor necrosis factor receptor protein-coding RELT RELT tumor necrosis factor receptor O receptor expressed in lymphoid tissues|tumor necrosis factor receptor superfamily member 19L 20121230 -9606 84958 SYTL1 RP11-4K3__A.6 JFC1|SLP1 HGNC:15584|MIM:608042|Ensembl:ENSG00000142765|Vega:OTTHUMG00000005770 1 1p36.11 synaptotagmin-like 1 protein-coding SYTL1 synaptotagmin-like 1 O NADPH oxidase-related, C2 domain-containing protein|exophilin-7|synaptotagmin-like protein 1 20121230 -9606 84959 UBASH3B - STS-1|STS1|TULA-2|p70 HGNC:29884|MIM:609201|Ensembl:ENSG00000154127|HPRD:16463|Vega:OTTHUMG00000166025 11 11q24.1 ubiquitin associated and SH3 domain containing B protein-coding UBASH3B ubiquitin associated and SH3 domain containing B O Cbl-interacting protein Sts-1|SH3 domain-containing 70 kDa protein, suppressor of T-cell receptor signaling 1, nm23-phosphorylated unknown substrate|T-cell ubiquitin ligand 2|cbl-interacting protein p70|nm23-phosphorylated unknown substrate|suppressor of T-cell receptor signaling 1|tyrosine-protein phosphatase STS1/TULA2|ubiquitin-associated and SH3 domain-containing protein B 20121230 -9606 84960 KIAA1984 RP11-216L13.7 PARF|RP11-216L13.9|bA216L13.7 HGNC:28236|Ensembl:ENSG00000213213|HPRD:17234|Vega:OTTHUMG00000159445 9 9q34.3 KIAA1984 protein-coding KIAA1984 KIAA1984 O uncharacterized coiled-coil domain-containing protein KIAA1984 20121230 -9606 84961 FBXL20 - Fbl2|Fbl20 HGNC:24679|MIM:609086|Ensembl:ENSG00000108306|HPRD:10951|Vega:OTTHUMG00000179002 17 17q12 F-box and leucine-rich repeat protein 20 protein-coding FBXL20 F-box and leucine-rich repeat protein 20 O F-box protein FBL2|F-box/LRR-repeat protein 20 20121230 -9606 84962 AJUBA - JUB HGNC:20250|MIM:609066|Ensembl:ENSG00000129474|HPRD:16426|Vega:OTTHUMG00000028711 14 14q11.2 ajuba LIM protein protein-coding AJUBA ajuba LIM protein O LIM domain-containing protein ajuba|jub, ajuba homolog|protein ajuba 20121230 -9606 84964 ALKBH6 - ABH6 HGNC:28243|MIM:613304|Ensembl:ENSG00000239382|HPRD:17510|Vega:OTTHUMG00000048137 19 19q13.12 alkB, alkylation repair homolog 6 (E. coli) protein-coding ALKBH6 alkB, alkylation repair homolog 6 (E. coli) O alkylated DNA repair protein alkB homolog 6|alkylation repair homolog 6|probable alpha-ketoglutarate-dependent dioxygenase ABH6 20121230 -9606 84966 IGSF21 RP11-121A23.1 - HGNC:28246|Ensembl:ENSG00000117154|HPRD:11309|Vega:OTTHUMG00000002432 1 1p36.13 immunoglobin superfamily, member 21 protein-coding IGSF21 immunoglobin superfamily, member 21 O immunoglobulin superfamily member 21 20121230 -9606 84967 LSM10 - MST074|MSTP074 HGNC:17562|Ensembl:ENSG00000181817|HPRD:14326|Vega:OTTHUMG00000008140 1 1p34.3 LSM10, U7 small nuclear RNA associated protein-coding LSM10 LSM10, U7 small nuclear RNA associated O U7 snRNA-associated Sm-like protein LSm10|U7 snRNP-specific Sm-like protein LSM10 20121230 -9606 84968 PNMA6A - MA6|PNMA6 HGNC:28248|Ensembl:ENSG00000224201|HPRD:06637|Vega:OTTHUMG00000024191 X Xq28 paraneoplastic Ma antigen family member 6A protein-coding PNMA6A paraneoplastic Ma antigen family member 6A O paraneoplastic antigen like 6A|paraneoplastic antigen-like protein 6A 20121230 -9606 84969 TOX2 RP5-1108D11.1 C20orf100|GCX-1|dJ1108D11.2|dJ495O3.1 HGNC:16095|MIM:611163|Ensembl:ENSG00000124191|HPRD:12734|Vega:OTTHUMG00000032517 20 20q13.12 TOX high mobility group box family member 2 protein-coding TOX2 TOX high mobility group box family member 2 O granulosa cell HMG box 1 20121230 -9606 84970 C1orf94 - - HGNC:28250|Ensembl:ENSG00000142698|HPRD:11310|Vega:OTTHUMG00000004012 1 1p34.3 chromosome 1 open reading frame 94 protein-coding C1orf94 chromosome 1 open reading frame 94 O uncharacterized protein C1orf94 20121230 -9606 84971 ATG4D - APG4-D|APG4D|AUTL4 HGNC:20789|MIM:611340|Ensembl:ENSG00000130734|HPRD:07005|Vega:OTTHUMG00000180582 19 19p13.2 autophagy related 4D, cysteine peptidase protein-coding ATG4D autophagy related 4D, cysteine peptidase O APG4 autophagy 4 homolog D|ATG4 autophagy related 4 homolog D|AUT-like 4 cysteine endopeptidase|AUT-like 4, cysteine endopeptidase|autophagin-4|autophagy-related cysteine endopeptidase 4|autophagy-related protein 4 homolog D|cysteine protease ATG4D|cysteine protease involved in autophagy 20121230 -9606 84973 SNHG7 - NCRNA00061 HGNC:28254 9 9q34.3 small nucleolar RNA host gene 7 (non-protein coding) miscRNA SNHG7 small nucleolar RNA host gene 7 (non-protein coding) O - 20121230 -9606 84975 MFSD5 UNQ832/PRO1759 - HGNC:28156|Ensembl:ENSG00000182544|HPRD:14416|Vega:OTTHUMG00000170028 12 12q13.13 major facilitator superfamily domain containing 5 protein-coding MFSD5 major facilitator superfamily domain containing 5 O major facilitator superfamily domain-containing protein 5 20121230 -9606 84976 DISP1 - DISPA HGNC:19711|MIM:607502|Ensembl:ENSG00000154309|HPRD:06326|Vega:OTTHUMG00000037893 1 1q41 dispatched homolog 1 (Drosophila) protein-coding DISP1 dispatched homolog 1 (Drosophila) O dispatched A|protein dispatched homolog 1 20121230 -9606 84978 FRMD5 - - HGNC:28214|Ensembl:ENSG00000171877|HPRD:17493|Vega:OTTHUMG00000060475 15 15q15.3 FERM domain containing 5 protein-coding FRMD5 FERM domain containing 5 O FERM domain-containing protein 5 20121230 -9606 84981 MIR22HG - C17orf91 HGNC:28219|HPRD:17497 17 17p13.3 MIR22 host gene (non-protein coding) miscRNA MIR22HG MIR22 host gene (non-protein coding) O - 20121230 -9606 84983 FAM222A-AS1 - - HGNC:28223 12 12q24.11 FAM222A antisense RNA 1 miscRNA FAM222A-AS1 FAM222A antisense RNA 1 O - 20121230 -9606 84984 CEP19 HSD5 C3orf34 HGNC:28209|Ensembl:ENSG00000174007|HPRD:17488|Vega:OTTHUMG00000153933 3 3q29 centrosomal protein 19kDa protein-coding CEP19 centrosomal protein 19kDa O centrosomal protein of 19 kDa 20121230 -9606 84985 FAM83A - BJ-TSA-9 HGNC:28210|Ensembl:ENSG00000147689|HPRD:17489|Vega:OTTHUMG00000165083 8 8q24.13 family with sequence similarity 83, member A protein-coding FAM83A family with sequence similarity 83, member A O protein FAM83A|tumor antigen BJ-TSA-9|tumor-specific gene expressed in prostate protein 20121230 -9606 84986 ARHGAP19 - - HGNC:23724|MIM:611587|Ensembl:ENSG00000213390|HPRD:12475|Vega:OTTHUMG00000018845 10 10q24.1 Rho GTPase activating protein 19 protein-coding ARHGAP19 Rho GTPase activating protein 19 O putative RhoGAP protein|rho GTPase-activating protein 19|rho-type GTPase-activating protein 19 20121230 -9606 84987 COX14 - C12orf62 HGNC:28216|MIM:614478|Ensembl:ENSG00000178449|HPRD:17495|Vega:OTTHUMG00000170084 12 12q13.12 cytochrome c oxidase assembly homolog 14 (S. cerevisiae) protein-coding COX14 cytochrome c oxidase assembly homolog 14 (S. cerevisiae) O COX14 cytochrome c oxidase assembly homolog|cytochrome c oxidase assembly protein COX14 20121230 -9606 84988 PPP1R16A - MYPT3 HGNC:14941|MIM:609172|Ensembl:ENSG00000160972|HPRD:16454|Vega:OTTHUMG00000165173 8 8q24.3 protein phosphatase 1, regulatory subunit 16A protein-coding PPP1R16A protein phosphatase 1, regulatory subunit 16A O likley ortholog of mouse myosin phosphatase targeting subunit 3|myosin phosphatase-targeting subunit 3|protein phosphatase 1 regulatory subunit 16A|protein phosphatase 1, regulatory (inhibitor) subunit 16A 20121230 -9606 84989 LOC84989 - - - 10 10q21.3 uncharacterized LOC84989 miscRNA - - - - 20121230 -9606 84991 RBM17 RP11-414H17.9 SPF45 HGNC:16944|MIM:606935|Ensembl:ENSG00000134453|HPRD:09501|Vega:OTTHUMG00000017618 10 10p15.1 RNA binding motif protein 17 protein-coding RBM17 RNA binding motif protein 17 O 45 kDa-splicing factor|RNA-binding motif protein 17|splicing factor 45|splicing factor 45kDa 20121230 -9606 84992 PIGY - PIG-Y HGNC:28213|MIM:610662|Ensembl:ENSG00000255072|HPRD:17492 4 4q22.1 phosphatidylinositol glycan anchor biosynthesis, class Y protein-coding PIGY phosphatidylinositol glycan anchor biosynthesis, class Y O phosphatidylinositol N-acetylglucosaminyltransferase subunit Y|phosphatidylinositol-glycan biosynthesis class Y protein 20121230 -9606 84993 UBL7 SB132 BMSC-UbP|TCBA1 HGNC:28221|MIM:609748|Ensembl:ENSG00000138629|HPRD:16556|Vega:OTTHUMG00000139001 15 15q24.1 ubiquitin-like 7 (bone marrow stromal cell-derived) protein-coding UBL7 ubiquitin-like 7 (bone marrow stromal cell-derived) O bone marrow stromal cell ubiquitin-like protein|ubiquitin-like protein 7|ubiquitin-like protein SB132 20121230 -9606 84996 C21orf119 PRED84 - HGNC:23128|HPRD:12792 21 21q22.11 chromosome 21 open reading frame 119 miscRNA C21orf119 chromosome 21 open reading frame 119 O - 20121230 -9606 85001 MGC16275 - - - 17 17q25.1 uncharacterized protein MGC16275 miscRNA - - - - 20121230 -9606 85002 FAM86B1 - - HGNC:28268|Ensembl:ENSG00000186523|HPRD:17515|Vega:OTTHUMG00000165298 8 8p23.1 family with sequence similarity 86, member B1 protein-coding FAM86B1 family with sequence similarity 86, member B1 O protein FAM86B1 20121230 -9606 85003 MGC2848 - - - 3 3q22.1 uncharacterized protein MGC2848 unknown - - - - 20120508 -9606 85004 RERG - - HGNC:15980|MIM:612664|Ensembl:ENSG00000134533|HPRD:15238|Vega:OTTHUMG00000168745 12 12p12.3 RAS-like, estrogen-regulated, growth inhibitor protein-coding RERG RAS-like, estrogen-regulated, growth inhibitor O ras-related and estrogen-regulated growth inhibitor 20121230 -9606 85007 AGXT2L2 PP9286 - HGNC:28249|MIM:614683|Ensembl:ENSG00000175309|HPRD:18482|Vega:OTTHUMG00000130892 5 5q35.3 alanine-glyoxylate aminotransferase 2-like 2 protein-coding AGXT2L2 alanine-glyoxylate aminotransferase 2-like 2 O 5-phosphohydroxy-L-lysine phospho-lyase|alanine--glyoxylate aminotransferase 2-like 2 20121230 -9606 85009 MGC16025 - - - 2 2q37.3 uncharacterized LOC85009 miscRNA - - - - 20121230 -9606 85012 TCEAL3 RP5-1055C14.5 - HGNC:28247|Ensembl:ENSG00000196507|HPRD:06636|Vega:OTTHUMG00000022106 X Xq22.2 transcription elongation factor A (SII)-like 3 protein-coding TCEAL3 transcription elongation factor A (SII)-like 3 O TCEA-like protein 3|transcription elongation factor A protein-like 3|transcription elongation factor S-II protein-like 3 20121230 -9606 85013 TMEM128 - - HGNC:28201|Ensembl:ENSG00000132406|HPRD:17483|Vega:OTTHUMG00000125475 4 4p16.3 transmembrane protein 128 protein-coding TMEM128 transmembrane protein 128 O - 20121230 -9606 85014 TMEM141 - RP11-216L13.7 HGNC:28211|Ensembl:ENSG00000244187|HPRD:17490|Vega:OTTHUMG00000020945 9 9q34.3 transmembrane protein 141 protein-coding TMEM141 transmembrane protein 141 O - 20121230 -9606 85015 USP45 RP11-98I9.5 - HGNC:20080|Ensembl:ENSG00000123552|Vega:OTTHUMG00000015267 6 6q16.2 ubiquitin specific peptidase 45 protein-coding USP45 ubiquitin specific peptidase 45 O deubiquitinating enzyme 45|ubiquitin carboxyl-terminal hydrolase 45|ubiquitin specific protease 45|ubiquitin thioesterase 45|ubiquitin thiolesterase 45|ubiquitin-specific-processing protease 45 20121230 -9606 85016 C11orf70 - - HGNC:28188|Ensembl:ENSG00000137691|HPRD:14433|Vega:OTTHUMG00000167320 11 11q22.1 chromosome 11 open reading frame 70 protein-coding C11orf70 chromosome 11 open reading frame 70 O uncharacterized protein C11orf70 20121230 -9606 85019 TMEM241 - C18orf45|hVVT HGNC:31723|Ensembl:ENSG00000134490|HPRD:12692|Vega:OTTHUMG00000131771 18 18q11.2 transmembrane protein 241 protein-coding TMEM241 transmembrane protein 241 O putative vertebrate vrg4-like nucleotide-sugar transporter truncated variant2|putative vertebrate vrg4-like nucleotide-sugar transporter variant1|transmembrane protein C18orf45 20121230 -9606 85021 REPS1 RP3-509I19.2 RALBP1 HGNC:15578|MIM:614825|Ensembl:ENSG00000135597|HPRD:09687|Vega:OTTHUMG00000015685 6 6q24.1 RALBP1 associated Eps domain containing 1 protein-coding REPS1 RALBP1 associated Eps domain containing 1 O ralBP1-associated Eps domain-containing protein 1|ralBP1-interacting protein 1 20121230 -9606 85025 TMEM60 DC32 C7orf35 HGNC:21754|Ensembl:ENSG00000135211|HPRD:12923|Vega:OTTHUMG00000130689 7 7q11.23 transmembrane protein 60 protein-coding TMEM60 transmembrane protein 60 O - 20121230 -9606 85026 C9orf37 AD038 - HGNC:23395|Ensembl:ENSG00000203993|HPRD:12955|Vega:OTTHUMG00000020988 9 9q34.3 chromosome 9 open reading frame 37 protein-coding C9orf37 chromosome 9 open reading frame 37 O AD038|uncharacterized protein C9orf37 20121230 -9606 85027 SMIM3 - C5orf62|MST150|NID67 HGNC:30248|MIM:608324|Ensembl:ENSG00000256235|HPRD:12212|Vega:OTTHUMG00000163646 5 5q33.1 small integral membrane protein 3 protein-coding SMIM3 small integral membrane protein 3 O NGF-induced differentiation clone 67 protein|putative small membrane protein NID67 20121230 -9606 85028 SNHG12 PNAS-123 C1orf79|LINC00100|NCRNA00100|RP4-669K10.5 HGNC:30062 1 1p35.3 small nucleolar RNA host gene 12 (non-protein coding) miscRNA SNHG12 small nucleolar RNA host gene 12 (non-protein coding) O - 20121230 -9606 85235 HIST1H2AH - H2A/S|H2AFALii|dJ86C11.1 HGNC:13671|Ensembl:ENSG00000184825|HPRD:13655|Vega:OTTHUMG00000014468 6 6p21.33 histone cluster 1, H2ah protein-coding HIST1H2AH histone cluster 1, H2ah O H2A histone family member|histone H2A type 1-H|histone H2A/s 20121230 -9606 85236 HIST1H2BK - H2B/S|H2BFAiii|H2BFT HGNC:13954|Ensembl:ENSG00000197903|HPRD:13658 6 6p21.33 histone cluster 1, H2bk protein-coding HIST1H2BK histone cluster 1, H2bk O H2B K|H2B histone family, member T|HIRA-interacting protein 1|histone 1, H2bk|histone H2B type 1-K|histone family member 20121230 -9606 85280 KRTAP9-4 - KAP9.4|KRTAP9.4 HGNC:18902|Ensembl:ENSG00000241595|HPRD:13951|Vega:OTTHUMG00000133438 17 17q12-q21 keratin associated protein 9-4 protein-coding KRTAP9-4 keratin associated protein 9-4 O keratin-associated protein 9-4|keratin-associated protein 9.4|ultrahigh sulfur keratin-associated protein 9.4 20121230 -9606 85285 KRTAP4-1 - KAP4.1|KAP4.10|KRTAP4-10|KRTAP4.10 HGNC:18907|HPRD:13940 17 17q12-q21 keratin associated protein 4-1 protein-coding KRTAP4-1 keratin associated protein 4-1 O keratin associated protein 4-10|keratin-associated protein 4-1|keratin-associated protein 4-10|keratin-associated protein 4.1|keratin-associated protein 4.10|ultrahigh sulfur keratin-associated protein 4.10 20121230 -9606 85289 KRTAP4-5 - KAP4.5|KRTAP4.5 HGNC:18899|Ensembl:ENSG00000198271|HPRD:13946|Vega:OTTHUMG00000133638 17 17q12-q21 keratin associated protein 4-5 protein-coding KRTAP4-5 keratin associated protein 4-5 O keratin-associated protein 4-5|keratin-associated protein 4.5|ultrahigh sulfur keratin-associated protein 4.5 20121230 -9606 85290 KRTAP4-3 - KAP4.3 HGNC:18908|Ensembl:ENSG00000196156|Vega:OTTHUMG00000133639 17 17q12-q21 keratin associated protein 4-3 protein-coding KRTAP4-3 keratin associated protein 4-3 O keratin-associated protein 4-3|keratin-associated protein 4.3|ultrahigh sulfur keratin-associated protein 4.3 20121230 -9606 85291 KRTAP4-2 - KAP4.2|KRTAP4.2 HGNC:18900|Ensembl:ENSG00000244537|HPRD:13944|Vega:OTTHUMG00000133437 17 17q12-q21 keratin associated protein 4-2 protein-coding KRTAP4-2 keratin associated protein 4-2 O keratin-associated protein 4-2|keratin-associated protein 4.2|ultrahigh sulfur keratin-associated protein 4.2 20121230 -9606 85293 KRTAP3-3 - KAP3.3|KRTAP3.3 HGNC:18890|Ensembl:ENSG00000212899|HPRD:13939|Vega:OTTHUMG00000133591 17 17q12-q21 keratin associated protein 3-3 protein-coding KRTAP3-3 keratin associated protein 3-3 O high sulfur keratin-associated protein 3.3|keratin-associated protein 3-3|keratin-associated protein 3.3 20121230 -9606 85294 KRTAP2-4 hCG_1645697 KAP2.1B|KAP2.4|KRTAP2.4 HGNC:18891|Ensembl:ENSG00000213417|HPRD:13936|Vega:OTTHUMG00000133594 17 17q21.2 keratin associated protein 2-4 protein-coding KRTAP2-4 keratin associated protein 2-4 O high sulfur keratin-associated protein 2.4|keratin associated protein 2.1B|keratin-associated protein 2-4|keratin-associated protein 2.4 20121230 -9606 85300 ATCAY - BNIP-H|CLAC HGNC:779|MIM:608179|Ensembl:ENSG00000167654|HPRD:10491 19 19p13.3 ataxia, cerebellar, Cayman type protein-coding ATCAY ataxia, cerebellar, Cayman type O BNIP-2-homolgy|Cayman ataxia|ataxia cayman type protein|caytaxin 20121230 -9606 85301 COL27A1 RP11-82I1.1 - HGNC:22986|MIM:608461|Ensembl:ENSG00000196739|HPRD:09767|Vega:OTTHUMG00000020537 9 9q32 collagen, type XXVII, alpha 1 protein-coding COL27A1 collagen, type XXVII, alpha 1 O collagen alpha-1(XXVII) chain 20121230 -9606 85302 FBF1 - Alb|FBF-1 HGNC:24674|Ensembl:ENSG00000188878|Vega:OTTHUMG00000179919 17 17q25.1 Fas (TNFRSF6) binding factor 1 protein-coding FBF1 Fas (TNFRSF6) binding factor 1 O Fas binding protein 1|albatross|fas-binding factor 1|protein albatross 20121230 -9606 85303 HIST1H2APS2 - H2A/T|H2AFTP|dJ139G21.2 HGNC:18804 6 6p22 histone cluster 1, H2a, pseudogene 2 pseudo HIST1H2APS2 histone cluster 1, H2a, pseudogene 2 O - 20121230 -9606 85313 PPIL4 RP11-703H16.1 HDCME13P HGNC:15702|MIM:607609|Ensembl:ENSG00000131013|HPRD:07606|Vega:OTTHUMG00000015788 6 6q25.1 peptidylprolyl isomerase (cyclophilin)-like 4 protein-coding PPIL4 peptidylprolyl isomerase (cyclophilin)-like 4 O PPIase|cyclophilin-like protein PPIL4|cyclophilin-type peptidyl-prolyl cis-trans isomerase|peptidyl-prolyl cis-trans isomerase-like 4|rotamase PPIL4|serologically defined breast cancer antigen NY-BR-18 20121230 -9606 85314 ERVE-1 - ERVE1|HERV-E1|HERVE1 HGNC:14602|MIM:606601 17 17q11.2 endogenous retrovirus group E, member 1 unknown ERVE-1 endogenous retrovirus group E, member 1 O - 20121017 -9606 85315 PAQR8 - C6orf33|LMPB1|MPRB HGNC:15708|MIM:607780|Ensembl:ENSG00000170915|HPRD:07415|Vega:OTTHUMG00000014846 6 6p12.1 progestin and adipoQ receptor family member VIII protein-coding PAQR8 progestin and adipoQ receptor family member VIII O lysosomal membrane protein in brain 1|lysosomal membrane protein in brain-1|mPR beta|membrane progestin receptor beta|progestin and adipoQ receptor family member 8 20121230 -9606 85316 BAGE5 - CT2.5 HGNC:15732|HPRD:16537 13 13cen B melanoma antigen family, member 5 protein-coding BAGE5 B melanoma antigen family, member 5 O B melanoma antigen 5|cancer/testis antigen 2.5|cancer/testis antigen family 2, member 5 20120508 -9606 85317 BAGE4 - CT2.4|MLL3P HGNC:15730|HPRD:16536 21 21p11.1 B melanoma antigen family, member 4 protein-coding BAGE4 B melanoma antigen family, member 4 O B melanoma antigen 4|MLL3 pseudogene|cancer/testis antigen 2.4|cancer/testis antigen family 2, member 4 20121230 -9606 85318 BAGE3 - CT2.3 HGNC:15728|HPRD:10685 21 21p11.2 B melanoma antigen family, member 3 protein-coding BAGE3 B melanoma antigen family, member 3 O B melanoma antigen 3|cancer/testis antigen 2.3|cancer/testis antigen family 2, member 3 20120508 -9606 85319 BAGE2 - CT2.2 HGNC:15723|HPRD:16535 21 21p B melanoma antigen family, member 2 protein-coding BAGE2 B melanoma antigen family, member 2 O B melanoma antigen 2|cancer/testis antigen 2.2|cancer/testis antigen family 2, member 2 20121230 -9606 85320 ABCC11 - EWWD|MRP8|WW HGNC:14639|MIM:607040|Ensembl:ENSG00000121270|HPRD:06127|Vega:OTTHUMG00000133146 16 16q12.1 ATP-binding cassette, sub-family C (CFTR/MRP), member 11 protein-coding ABCC11 ATP-binding cassette, sub-family C (CFTR/MRP), member 11 O ATP-binding cassette protein C11|ATP-binding cassette sub-family C member 11|ATP-binding cassette transporter MRP8|ATP-binding cassette transporter sub-family C member 11|multi-resistance protein 8|multidrug resistance-associated protein 8 20121230 -9606 85329 LGALS12 - GAL12|GRIP1 HGNC:15788|MIM:606096|Ensembl:ENSG00000133317|HPRD:16196|Vega:OTTHUMG00000167807 11 11q13 lectin, galactoside-binding, soluble, 12 protein-coding LGALS12 lectin, galactoside-binding, soluble, 12 O galectin 12|galectin-12|galectin-related inhibitor of proliferation 20121230 -9606 85340 KRT124P - HBA|KRTHBP1 HGNC:30195 12 12q13 keratin 124 pseudogene pseudo KRT124P keratin 124 pseudogene O - 20121230 -9606 85343 KRTAP2-5P - KAP2A|KRTAP2P1 HGNC:18920 17 17q21.2 keratin associated protein 2-5, pseudogene pseudo KRTAP2-5P keratin associated protein 2-5, pseudogene O - 20121230 -9606 85344 KRT123P - HBB|KRTHBP2 HGNC:30196 12 12q13 keratin 123 pseudogene pseudo KRT123P keratin 123 pseudogene O - 20121230 -9606 85345 KRTAP3-4P - KAP3A|KRTAP3P1 HGNC:18919 17 17q21.2 keratin associated protein 3-4, pseudogene pseudo KRTAP3-4P keratin associated protein 3-4, pseudogene O - 20121230 -9606 85347 KRTAP9-11P - KAP9A|KRTAP9P1 HGNC:18918 17 17q21.2 keratin associated protein 9-11, pseudogene pseudo KRTAP9-11P keratin associated protein 9-11, pseudogene O - 20121230 -9606 85348 KRT122P - HBC|KRTHBP3 HGNC:30197 12 12q13 keratin 122 pseudogene pseudo KRT122P keratin 122 pseudogene O - 20121230 -9606 85349 KRT121P - HBD|KRTHBP4 HGNC:30198 12 12q13 keratin 121 pseudogene pseudo KRT121P keratin 121 pseudogene O - 20121230 -9606 85352 KIAA1644 LL22NC03-75B3.6 - HGNC:29335|Ensembl:ENSG00000138944|Vega:OTTHUMG00000030991 22 - KIAA1644 protein-coding KIAA1644 KIAA1644 O uncharacterized protein KIAA1644 20121230 -9606 85354 KRTAP4-16P - KAP4A|KRTAP4P1 HGNC:18921 17 17q12-q21 keratin associated protein 4-16, pseudogene pseudo KRTAP4-16P keratin associated protein 4-16, pseudogene O - 20121230 -9606 85358 SHANK3 - DEL22q13.3|PROSAP2|PSAP2|SCZD15|SPANK-2 HGNC:14294|MIM:606230|Ensembl:ENSG00000251322|Vega:OTTHUMG00000150169 22 22q13.3 SH3 and multiple ankyrin repeat domains 3 protein-coding SHANK3 SH3 and multiple ankyrin repeat domains 3 O SH3 and multiple ankyrin repeat domains protein 3|proline rich synapse associated protein 2|shank postsynaptic density protein 20121230 -9606 85359 DGCR6L - - HGNC:18551|MIM:609459|Ensembl:ENSG00000128185|HPRD:16800|Vega:OTTHUMG00000150583 22 22q11 DiGeorge syndrome critical region gene 6-like protein-coding DGCR6L DiGeorge syndrome critical region gene 6-like O DiGeorge syndrome critical region gene 6 like|diGeorge syndrome critical region 6-like protein|protein DGCR6L 20121230 -9606 85360 SYDE1 - 7h3 HGNC:25824|Ensembl:ENSG00000105137|HPRD:07830 19 19p13.12 synapse defective 1, Rho GTPase, homolog 1 (C. elegans) protein-coding SYDE1 synapse defective 1, Rho GTPase, homolog 1 (C. elegans) O protein syd-1 homolog 1|rho GTPase-activating protein SYDE1|synapse defective protein 1 homolog 1 20121230 -9606 85363 TRIM5 - RNF88|TRIM5alpha HGNC:16276|MIM:608487|Ensembl:ENSG00000132256|HPRD:07004|Vega:OTTHUMG00000066893 11 11p15 tripartite motif containing 5 protein-coding TRIM5 tripartite motif containing 5 O ring finger protein 88|tripartite motif containing 5 transcript variant iota|tripartite motif containing 5 transcript variant kappa|tripartite motif protein TRIM5|tripartite motif-containing protein 5 20121230 -9606 85364 ZCCHC3 - C20orf99 HGNC:16230|Ensembl:ENSG00000177764|HPRD:15701|Vega:OTTHUMG00000031629 20 20p13-p12.2 zinc finger, CCHC domain containing 3 protein-coding ZCCHC3 zinc finger, CCHC domain containing 3 O zinc finger CCHC domain-containing protein 3 20121230 -9606 85365 ALG2 RP11-13B9.1 CDGIi|NET38|hALPG2 HGNC:23159|MIM:607905|Ensembl:ENSG00000119523|HPRD:09716|Vega:OTTHUMG00000020355 9 9q22.33 asparagine-linked glycosylation 2, alpha-1,3-mannosyltransferase homolog (S. cerevisiae) protein-coding ALG2 asparagine-linked glycosylation 2, alpha-1,3-mannosyltransferase homolog (S. cerevisiae) O GDP-Man:Man(1)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase|GDP-Man:Man(1)GlcNAc(2)-PP-dolichol mannosyltransferase|GDP-Man:Man(2)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase|alpha-1,3-mannosyltransferase ALG2|alpha-1,3/1,6-mannosyltransferase ALG2|asparagine-linked glycosylation 2 homolog (S. cerevisiae, alpha-1,3-mannosyltransferase)|asparagine-linked glycosylation 2 homolog (yeast, alpha-1,3-mannosyltransferase)|asparagine-linked glycosylation protein 2 homolog|homolog of yeast ALG2 20121230 -9606 85366 MYLK2 - KMLC|MLCK|MLCK2|skMLCK HGNC:16243|MIM:606566|Ensembl:ENSG00000101306|HPRD:05953|Vega:OTTHUMG00000032194 20 20q13.31 myosin light chain kinase 2 protein-coding MYLK2 myosin light chain kinase 2 O myosin light chain kinase 2, skeletal muscle|myosin light chain kinase 2, skeletal/cardiac muscle 20121230 -9606 85367 KIAA1652 - - - 22 - KIAA1652 protein unknown - - - - 20120710 -9606 85368 KIAA1654 - - - 22 - KIAA1654 protein unknown - - - - 20120508 -9606 85369 STRIP1 - FAM40A|FAR11A HGNC:25916|Ensembl:ENSG00000143093|Vega:OTTHUMG00000170607 1 1p13.3 striatin interacting protein 1 protein-coding STRIP1 striatin interacting protein 1 O FAR11 factor arrest 11 homolog A|family with sequence similarity 40, member A|homolog of yeast FAR11 protein 1|protein FAM40A 20121230 -9606 85371 KIAA1656 - - - 22 - KIAA1656 protein miscRNA - - - - 20121230 -9606 85375 KIAA1661 - - - 22 - KIAA1661 protein unknown - - - - 20120710 -9606 85376 RIMBP3 - RIM-BP3|RIM-BP3.1|RIM-BP3.A|RIMBP3.1|RIMBP3A HGNC:29344|MIM:612699|Ensembl:ENSG00000196622|Vega:OTTHUMG00000150568 22 22q11.21 RIMS binding protein 3 protein-coding RIMBP3 RIMS binding protein 3 O RIMS binding protein 3.1|RIMS-binding protein 3A 20121230 -9606 85377 MICALL1 AL022311.2 MICAL-L1|MIRAB13 HGNC:29804|Ensembl:ENSG00000100139|HPRD:11363|Vega:OTTHUMG00000150670 22 22q13.1 MICAL-like 1 protein-coding MICALL1 MICAL-like 1 O MICAL-like protein 1|molecule interacting with Rab13 20121230 -9606 85378 TUBGCP6 RP3-402G11.6 GCP-6|GCP6|MCCRP HGNC:18127|MIM:610053|Ensembl:ENSG00000128159|HPRD:15589|Vega:OTTHUMG00000030150 22 22q13.31-q13.33 tubulin, gamma complex associated protein 6 protein-coding TUBGCP6 tubulin, gamma complex associated protein 6 O gamma-tubulin complex component 6 20121230 -9606 85379 KIAA1671 CTA-221G9.4 - HGNC:29345|Ensembl:ENSG00000197077|Vega:OTTHUMG00000150841 22 22q11.23 KIAA1671 protein-coding KIAA1671 KIAA1671 O CTA-221G9.5|uncharacterized protein KIAA1671 20121230 -9606 85388 SNORD14B - RNU14B|U14|U14B HGNC:31803 11 11p15 small nucleolar RNA, C/D box 14B snoRNA SNORD14B small nucleolar RNA, C/D box 14B O - 20121230 -9606 85389 SNORD14C - - HGNC:30352 11 11q23.3-q25 small nucleolar RNA, C/D box 14C snoRNA SNORD14C small nucleolar RNA, C/D box 14C O - 20121230 -9606 85390 SNORD14D - - HGNC:30353 11 11q23.3-q25 small nucleolar RNA, C/D box 14D snoRNA SNORD14D small nucleolar RNA, C/D box 14D O - 20121230 -9606 85391 SNORD14E - - HGNC:30354 11 11q23.3-q25 small nucleolar RNA, C/D box 14E snoRNA SNORD14E small nucleolar RNA, C/D box 14E O - 20121230 -9606 85395 FAM207A PRED56 C21orf70 HGNC:15811|Ensembl:ENSG00000160256|HPRD:10765|Vega:OTTHUMG00000090293 21 21q22.3 family with sequence similarity 207, member A protein-coding FAM207A family with sequence similarity 207, member A O protein FAM207A 20121230 -9606 85397 RGS8 RP11-317P15.2 - HGNC:16810|MIM:607189|Ensembl:ENSG00000135824|HPRD:06221|Vega:OTTHUMG00000035219 1 1q25 regulator of G-protein signaling 8 protein-coding RGS8 regulator of G-protein signaling 8 O regulator of G-protein signalling 8 20121230 -9606 85403 EAF1 - - HGNC:20907|MIM:608315|Ensembl:ENSG00000144597|HPRD:12209|Vega:OTTHUMG00000162544 3 3p25.1 ELL associated factor 1 protein-coding EAF1 ELL associated factor 1 O ELL (eleven nineteen lysine-rich leukemia gene)-associated factor 1|ELL-associated factor 1 20121230 -9606 85406 DNAJC14 hCG_2016179 DNAJ|DRIP78|HDJ3|LIP6 HGNC:24581|MIM:606092|Ensembl:ENSG00000135392|HPRD:12082|Vega:OTTHUMG00000170427 12 12q13.2 DnaJ (Hsp40) homolog, subfamily C, member 14 protein-coding DNAJC14 DnaJ (Hsp40) homolog, subfamily C, member 14 O LYST-interacting protein LIP6|dnaJ homolog subfamily C member 14|dnaJ protein homolog 3|dopamine receptor interacting protein|dopamine receptor-interacting protein of 78 kDa|hDj-3|human DnaJ protein 3 20121230 -9606 85407 NKD1 PP7246 Naked1 HGNC:17045|MIM:607851|Ensembl:ENSG00000140807|HPRD:08482|Vega:OTTHUMG00000133169 16 16q12.1 naked cuticle homolog 1 (Drosophila) protein-coding NKD1 naked cuticle homolog 1 (Drosophila) O Dvl-binding protein|naked cuticle-1|naked-1|protein naked cuticle homolog 1 20121230 -9606 85409 NKD2 - Naked2 HGNC:17046|MIM:607852|Ensembl:ENSG00000145506|HPRD:08483|Vega:OTTHUMG00000090348 5 5p15.3 naked cuticle homolog 2 (Drosophila) protein-coding NKD2 naked cuticle homolog 2 (Drosophila) O Dvl-binding protein NKD2|protein naked cuticle homolog 2 20121230 -9606 85413 SLC22A16 RP1-261K5.1 CT2|FLIPT2|OAT6|OCT6|OKB1|dJ261K5.1 HGNC:20302|MIM:608276|Ensembl:ENSG00000004809|HPRD:12202|Vega:OTTHUMG00000016171 6 6q22.1|6q21-q22.1 solute carrier family 22 (organic cation/carnitine transporter), member 16 protein-coding SLC22A16 solute carrier family 22 (organic cation/carnitine transporter), member 16 O WUGSC:RG331P03.1|carnitine transporter 2|flipt 2|fly-like putative organic ion transporter 2|fly-like putative transporter 2|organic cation transporter 6|organic cation transporter OKB1|organic cation/carnitine transporter 6|solute carrier family 22 (organic cation transporter), member 16|solute carrier family 22 member 16 20121230 -9606 85414 SLC45A3 - IPCA-2|IPCA-6|IPCA-8|IPCA6|PCANAP2|PCANAP6|PCANAP8|PRST HGNC:8642|MIM:605097|Ensembl:ENSG00000158715|HPRD:16312|Vega:OTTHUMG00000037223 1 1q32.1 solute carrier family 45, member 3 protein-coding SLC45A3 solute carrier family 45, member 3 O prostate cancer associated protein 2|prostate cancer associated protein 6|prostate cancer associated protein 8|prostate cancer-associated gene 2|prostate cancer-associated gene 6|prostate cancer-associated gene 8|prostate cancer-associated protein 6|prostein|solute carrier family 45 member 3 20121230 -9606 85415 RHPN2 - P76RBE|RHOBP HGNC:19974|Ensembl:ENSG00000131941|HPRD:10192|Vega:OTTHUMG00000180340 19 19q13.11 rhophilin, Rho GTPase binding protein 2 protein-coding RHPN2 rhophilin, Rho GTPase binding protein 2 O 76 kDa RhoB effector protein|GTP-Rho-binding protein 2|rhophilin 2|rhophilin-2|rhophilin-like Rho-GTPase binding protein 20121230 -9606 85416 ZIC5 - - HGNC:20322|Ensembl:ENSG00000139800|HPRD:15737|Vega:OTTHUMG00000017280 13 13q32.3 Zic family member 5 protein-coding ZIC5 Zic family member 5 O Zic family member 5 (odd-paired homolog, Drosophila)|zinc family member 5 protein|zinc finger protein ZIC 5|zinc finger protein of the cerebellum 5 20121230 -9606 85417 CCNB3 RP11-805H4.3 - HGNC:18709|MIM:300456|Ensembl:ENSG00000147082|HPRD:02350|Vega:OTTHUMG00000021519 X Xp11 cyclin B3 protein-coding CCNB3 cyclin B3 O G2/mitotic-specific cyclin-B3 20121230 -9606 85437 ZCRB1 - MADP-1|MADP1|RBM36|SNRNP31|ZCCHC19 HGNC:29620|MIM:610750|Ensembl:ENSG00000139168|HPRD:14344|Vega:OTTHUMG00000169382 12 12q12 zinc finger CCHC-type and RNA binding motif 1 protein-coding ZCRB1 zinc finger CCHC-type and RNA binding motif 1 O U11/U12 small nuclear ribonucleoprotein 31 kDa protein|U11/U12 snRNP 31 kDa protein|U11/U12 snRNP 31K|U11/U12-31K|zinc finger CCHC-type and RNA-binding motif-containing protein 1 20121230 -9606 85438 CABS1 - C4orf35|CLPH|NYD-SP26 HGNC:30710|Ensembl:ENSG00000145309|HPRD:14865|Vega:OTTHUMG00000129405 4 4q13.3 calcium-binding protein, spermatid-specific 1 protein-coding CABS1 calcium-binding protein, spermatid-specific 1 O calcium-binding and spermatid-specific protein 1|calcium-binding protein, sperm-specific 1|casein-like phosphoprotein|testis development protein NYD-SP26 20121230 -9606 85439 STON2 - STN2|STNB|STNB2 HGNC:30652|MIM:608467|Ensembl:ENSG00000140022|HPRD:10531|Vega:OTTHUMG00000171416 14 14q31.1 stonin 2 protein-coding STON2 stonin 2 O homolog of stoned B|stoned B homolog 2|stonin-2 20121230 -9606 85440 DOCK7 RP4-740B20.2 ZIR2 HGNC:19190|Ensembl:ENSG00000116641|HPRD:16833|Vega:OTTHUMG00000013131 1 1p31.3 dedicator of cytokinesis 7 protein-coding DOCK7 dedicator of cytokinesis 7 O dedicator of cytokinesis protein 7 20121230 -9606 85441 HELZ2 RP4-697K14.11-001 PDIP-1|PRIC285 HGNC:30021|MIM:611265|Ensembl:ENSG00000130589|HPRD:11459|Vega:OTTHUMG00000032969 20 20q13.33 helicase with zinc finger 2, transcriptional coactivator protein-coding HELZ2 helicase with zinc finger 2, transcriptional coactivator O ATP-dependent helicase PRIC285|PDIP1|PPAR gamma DBD-interacting protein 1|PPAR-alpha-interacting complex protein 285|PPAR-gamma DBD-interacting protein 1|PPAR-gamma DNA-binding domain-interacting protein 1|PPARG-DBD-interacting protein 1|PPARgamma-DNA-binding domain-interacting protein1|PRIC complex|peroxisomal proliferator activated receptor A interacting complex 285|peroxisomal proliferator-activated receptor A interacting complex 285|peroxisomal proliferator-activated receptor A-interacting complex 285 kDa protein|peroxisomal proliferator-activated receptor alpha-interacting cofactor complex, 285 kD subunit 20121230 -9606 85442 KNDC1 RP13-439H18.3 C10orf23|RASGEF2|bB439H18.3 HGNC:29374|Ensembl:ENSG00000171798|HPRD:13931|Vega:OTTHUMG00000019303 10 10q26.3 kinase non-catalytic C-lobe domain (KIND) containing 1 protein-coding KNDC1 kinase non-catalytic C-lobe domain (KIND) containing 1 O KIND domain-containing protein 1|RasGEF domain family, member 2|cerebral protein 9|kinase non-catalytic C-lobe domain-containing protein 1|protein very KIND|ras-GEF domain-containing family member 2 20121230 -9606 85443 DCLK3 hCG_16695 CLR|DCAMKL3|DCDC3C|DCK3 HGNC:19005|MIM:613167|Ensembl:ENSG00000163673|Vega:OTTHUMG00000155805 3 3p22.2 doublecortin-like kinase 3 protein-coding DCLK3 doublecortin-like kinase 3 O CLICK-I,II-related|doublecortin and CaM kinase-like 3|doublecortin domain-containing protein 3C|doublecortin-like and CAM kinase-like 3|serine/threonine-protein kinase DCLK3 20121230 -9606 85444 LRRCC1 - CLERC|SAP2|VFL1 HGNC:29373|Ensembl:ENSG00000133739|HPRD:11160|Vega:OTTHUMG00000164784 8 8q21.2 leucine rich repeat and coiled-coil centrosomal protein 1 protein-coding LRRCC1 leucine rich repeat and coiled-coil centrosomal protein 1 O centrosomal leucine-rich repeat and coiled-coil containing protein|centrosomal leucine-rich repeat and coiled-coil domain-containing protein|leucine rich repeat and coiled-coil domain containing 1|leucine-rich repeat and coiled-coil domain-containing protein 1|sodium channel associated protein 2|variable number of flagella 1 homolog 20121230 -9606 85445 CNTNAP4 - CASPR4 HGNC:18747|MIM:610518|Ensembl:ENSG00000152910|HPRD:13079|Vega:OTTHUMG00000137617 16 16q23.1 contactin associated protein-like 4 protein-coding CNTNAP4 contactin associated protein-like 4 O cell recognition molecule Caspr4|cell recognition protein CASPR4|contactin-associated protein-like 4 20121230 -9606 85446 ZFHX2 - ZFH-5|ZNF409 HGNC:20152|Ensembl:ENSG00000136367|HPRD:18318|Vega:OTTHUMG00000156894 14 14q11.2 zinc finger homeobox 2 protein-coding ZFHX2 zinc finger homeobox 2 O ZFH-2|zinc finger homeobox protein 2|zinc finger homeodomain protein 2|zinc finger protein 409 20121230 -9606 85449 KIAA1755 RP5-1054A22.3 - HGNC:29372|Ensembl:ENSG00000149633|Vega:OTTHUMG00000032436 20 20q11.23 KIAA1755 protein-coding KIAA1755 KIAA1755 O uncharacterized protein KIAA1755 20121230 -9606 85450 ITPRIP RP11-127L20.4 DANGER|KIAA1754|bA127L20|bA127L20.2 HGNC:29370|Ensembl:ENSG00000148841|HPRD:13892|Vega:OTTHUMG00000019003 10 10q25.1 inositol 1,4,5-trisphosphate receptor interacting protein protein-coding ITPRIP inositol 1,4,5-trisphosphate receptor interacting protein O inositol 1,4,5-triphosphate receptor-interacting protein|inositol 1,4,5-trisphosphate receptor-interacting protein 20121230 -9606 85451 UNK - ZC3H5|ZC3HDC5 HGNC:29369|Ensembl:ENSG00000132478|Vega:OTTHUMG00000179892 17 17q25.1 unkempt homolog (Drosophila) protein-coding UNK unkempt homolog (Drosophila) O RING finger protein unkempt homolog|zinc finger CCCH domain-containing protein 5|zinc finger CCCH type domain containing 5|zinc finger CCCH-type containing 5|zinc finger CCCH-type domain containing 5 20121230 -9606 85452 KIAA1751 RP1-140A9.6 - HGNC:29368|Ensembl:ENSG00000142609 1 1p36.33 KIAA1751 protein-coding KIAA1751 KIAA1751 O uncharacterized protein KIAA1751 20121230 -9606 85453 TSPYL5 - - HGNC:29367|MIM:614721|Ensembl:ENSG00000180543|HPRD:15576|Vega:OTTHUMG00000164857 8 8q22.1 TSPY-like 5 protein-coding TSPYL5 TSPY-like 5 O TSPY-like protein 5|testis-specific Y-encoded-like protein 5 20121230 -9606 85455 DISP2 - DISPB|HsT16908 HGNC:19712|MIM:607503|Ensembl:ENSG00000140323|HPRD:06327|Vega:OTTHUMG00000129983 15 15q15.1 dispatched homolog 2 (Drosophila) protein-coding DISP2 dispatched homolog 2 (Drosophila) O dispatched B|protein dispatched homolog 2 20121230 -9606 85456 TNKS1BP1 - TAB182 HGNC:19081|MIM:607104|Ensembl:ENSG00000149115|HPRD:06164|Vega:OTTHUMG00000167022 11 11q12.1 tankyrase 1 binding protein 1, 182kDa protein-coding TNKS1BP1 tankyrase 1 binding protein 1, 182kDa O 182 kDa tankyrase-1-binding protein|tankyrase 1-binding protein of 182 kDa 20121230 -9606 85457 KIAA1737 - - HGNC:20365|Ensembl:ENSG00000198894|HPRD:13890|Vega:OTTHUMG00000171573 14 14q24.3 KIAA1737 protein-coding KIAA1737 KIAA1737 O uncharacterized protein KIAA1737 20121230 -9606 85458 DIXDC1 - CCD1 HGNC:23695|MIM:610493|Ensembl:ENSG00000150764|HPRD:16804 11 11q23.1 DIX domain containing 1 protein-coding DIXDC1 DIX domain containing 1 O DIX domain-containing protein 1|coiled-coil protein DIX1|coiled-coil-DIX1|dixin 20121230 -9606 85459 KIAA1731 hCG_2036584 - HGNC:29366|Ensembl:ENSG00000166004|Vega:OTTHUMG00000167449 11 11q21 KIAA1731 protein-coding KIAA1731 KIAA1731 O centrosomal protein KIAA1731 20121230 -9606 85460 ZNF518B - - HGNC:29365|Ensembl:ENSG00000178163|HPRD:13889|Vega:OTTHUMG00000160060 4 4p16.1 zinc finger protein 518B protein-coding ZNF518B zinc finger protein 518B O - 20121230 -9606 85461 TANC1 - ROLSB|TANC HGNC:29364|MIM:611397|Ensembl:ENSG00000115183|HPRD:18146|Vega:OTTHUMG00000153945 2 2q24.2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 protein-coding TANC1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 O TPR domain, ankyrin-repeat and coiled-coil-containing|protein TANC1|rolling pebbles homolog B|tetratricopeptide repeat, ankyrin repeat and coiled-coil domain-containing protein 1 20121230 -9606 85462 FHDC1 - - HGNC:29363|Ensembl:ENSG00000137460|HPRD:13888|Vega:OTTHUMG00000161452 4 4q31.3 FH2 domain containing 1 protein-coding FHDC1 FH2 domain containing 1 O FH2 domain-containing protein 1 20121230 -9606 85463 ZC3H12C - MCPIP3 HGNC:29362|MIM:615001|Ensembl:ENSG00000149289|Vega:OTTHUMG00000166572 11 11q22.3 zinc finger CCCH-type containing 12C protein-coding ZC3H12C zinc finger CCCH-type containing 12C O MCP induced protein 3|MCP-induced protein 3|probable ribonuclease ZC3H12C|zinc finger CCCH domain-containing protein 12C 20121230 -9606 85464 SSH2 - SSH-2 HGNC:30580|MIM:606779|Ensembl:ENSG00000141298|HPRD:09487|Vega:OTTHUMG00000132752 17 17q11.2 slingshot homolog 2 (Drosophila) protein-coding SSH2 slingshot homolog 2 (Drosophila) O SSH-2L|SSH-like protein 2|hSSH-2L|protein phosphatase Slingshot homolog 2|slingshot 2 20121230 -9606 85465 EPT1 - SELI|SEPI HGNC:29361|MIM:607915|Ensembl:ENSG00000138018|HPRD:07616|Vega:OTTHUMG00000151931 2 2p23.3 ethanolaminephosphotransferase 1 (CDP-ethanolamine-specific) protein-coding EPT1 ethanolaminephosphotransferase 1 (CDP-ethanolamine-specific) O ethanolaminephosphotransferase 1|ethanolaminephosphotransferase1|hEPT1|selenoprotein I 20121230 -9606 85474 LBX2 LP3727 - HGNC:15525|MIM:607164|Ensembl:ENSG00000179528|HPRD:16235|Vega:OTTHUMG00000170595 2 2p13.1 ladybird homeobox 2 protein-coding LBX2 ladybird homeobox 2 O lady bird-like homeobox 2|ladybird homeobox homolog 2|ladybird homeobox protein homolog 2|ladybird-like homeobox 2|ladybird-like homeodomain protein 2|transcription factor LBX2 20121230 -9606 85476 GFM1 - COXPD1|EFG|EFG1|EFGM|EGF1|GFM|hEFG1 HGNC:13780|MIM:606639|Ensembl:ENSG00000168827|HPRD:07365|Vega:OTTHUMG00000158804 3 3q25 G elongation factor, mitochondrial 1 protein-coding GFM1 G elongation factor, mitochondrial 1 O EF-Gmt|G translation elongation factor, mitochondrial|elongation factor G 1, mitochondrial|elongation factor G, mitochondrial|elongation factor G1|mEF-G 1|mitochondrial elongation factor G|mitochondrial elongation factor G1 20121230 -9606 85477 SCIN - - HGNC:21695|MIM:613416|Ensembl:ENSG00000006747|HPRD:11539|Vega:OTTHUMG00000152385 7 7p21.3 scinderin protein-coding SCIN scinderin O adseverin 20121230 -9606 85478 CCDC65 - NYD-SP28 HGNC:29937|MIM:611088|Ensembl:ENSG00000139537|HPRD:14867|Vega:OTTHUMG00000170401 12 12q13.12 coiled-coil domain containing 65 protein-coding CCDC65 coiled-coil domain containing 65 O coiled-coil domain-containing protein 65|testis development protein NYD-SP28 20121230 -9606 85479 DNAJC5B - CSP-beta HGNC:24138|MIM:613945|Ensembl:ENSG00000147570|HPRD:07474|Vega:OTTHUMG00000164470 8 8q13.1 DnaJ (Hsp40) homolog, subfamily C, member 5 beta protein-coding DNAJC5B DnaJ (Hsp40) homolog, subfamily C, member 5 beta O beta cysteine string protein|beta-CSP|cysteine string protein beta|dnaJ homolog subfamily C member 5B|dnaJ homolog subfamily C member X 20121230 -9606 85480 TSLP - - HGNC:30743|MIM:607003|Ensembl:ENSG00000145777|HPRD:06108|Vega:OTTHUMG00000128791 5 5q22.1 thymic stromal lymphopoietin protein-coding TSLP thymic stromal lymphopoietin O - 20121230 -9606 85481 PSKH2 - - HGNC:18997|Ensembl:ENSG00000147613|HPRD:15192|Vega:OTTHUMG00000163638 8 8q21.3 protein serine kinase H2 protein-coding PSKH2 protein serine kinase H2 O PSK-H2|serine/threonine kinase PSKH2|serine/threonine-protein kinase H2 20121230 -9606 85486 RPS19P1 - RPS19_3_1688|bA189K21.7 HGNC:16534 20 20p11.23 ribosomal protein S19 pseudogene 1 pseudo RPS19P1 ribosomal protein S19 pseudogene 1 O - 20121230 -9606 85487 RPS19P2 - RPS19_1_86 HGNC:17047 1 1p13.2 ribosomal protein S19 pseudogene 2 pseudo RPS19P2 ribosomal protein S19 pseudogene 2 O - 20121230 -9606 85495 RPPH1 - H1RNA HGNC:19273|MIM:608513 14 14q11.2 ribonuclease P RNA component H1 miscRNA RPPH1 ribonuclease P RNA component H1 O - 20121230 -9606 85502 SCAR3 - SCABD HGNC:32976|MIM:271250 6 6p23-p21 spinocerebellar ataxia, autosomal recessive 3 unknown SCAR3 spinocerebellar ataxia, autosomal recessive 3 O - 20120622 -9606 85503 MOPCB1 - MCOPCB1|MOPCB MIM:300345 X - Microphthalmia, colobomatous, 1 unknown - - - - 20120622 -9606 85504 BDET - - MIM:605913 1 1q23 Bleeding disorder, east Texas type unknown - - - - 20120622 -9606 85505 ACRPS - - MIM:605967 7 7q36 Acropectoral syndrome unknown - - - - 20120622 -9606 85507 DFNA18 - - HGNC:13268|MIM:606012 3 3q22 deafness, autosomal dominant 18 unknown DFNA18 deafness, autosomal dominant 18 O - 20120622 -9606 85508 SCRT2 FP7030 ZNF898B HGNC:15952|Ensembl:ENSG00000215397|HPRD:15305|Vega:OTTHUMG00000130829 20 20p13 scratch homolog 2, zinc finger protein (Drosophila) protein-coding SCRT2 scratch homolog 2, zinc finger protein (Drosophila) O scratch 2 protein|scratch homolog 2 zinc finger protein|transcriptional repressor scratch 2 20121230 -9606 85509 MBD3L1 - MBD3L HGNC:15774|MIM:607963|Ensembl:ENSG00000170948|HPRD:12138 19 19p13.2 methyl-CpG binding domain protein 3-like 1 protein-coding MBD3L1 methyl-CpG binding domain protein 3-like 1 O MBD3-like protein 1|methyl-CpG-binding domain protein 3-like 1 20121230 -9606 85569 GALP - - HGNC:24840|MIM:611178|Ensembl:ENSG00000197487|HPRD:17027|Vega:OTTHUMG00000181826 19 19q13.43 galanin-like peptide protein-coding GALP galanin-like peptide O alarin|gal-like peptide 20121230 -9606 85824 RPL12P12 - RPL12L3|RPL12_16_1689|dJ999L4.1 HGNC:15951 20 20p11.23 ribosomal protein L12 pseudogene 12 pseudo RPL12P12 ribosomal protein L12 pseudogene 12 O - 20121230 -9606 85865 GTPBP10 UG0751c10 ObgH2 HGNC:25106|MIM:610920|Ensembl:ENSG00000105793|HPRD:14262|Vega:OTTHUMG00000023655 7 7q21.13 GTP-binding protein 10 (putative) protein-coding GTPBP10 GTP-binding protein 10 (putative) O GTP-binding protein 10|protein obg homolog 2 20121230 -9606 86123 YWHAZP5 - - HGNC:30564 10 10q25.1 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 5 pseudo YWHAZP5 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 5 O - 20121230 -9606 86614 HSFY1 - HSF2L|HSFY HGNC:18568|MIM:400029|Ensembl:ENSG00000172468|HPRD:11850|Vega:OTTHUMG00000041980 Y Yq11.222 heat shock transcription factor, Y-linked 1 protein-coding HSFY1 heat shock transcription factor, Y-linked 1 O heat shock transcription factor 2-like protein|heat shock transcription factor, Y-linked 20121220 -9606 86781 RPS2P7 - RPS2L1|RPS2_27_1706|dJ688G8.1 HGNC:15838 20 20q13.12 ribosomal protein S2 pseudogene 7 pseudo RPS2P7 ribosomal protein S2 pseudogene 7 O - 20121230 -9606 87171 ARPC3P1 - ARPC3B|dJ470L14.3 HGNC:16092 20 20q13.13 actin related protein 2/3 complex, subunit 3 pseudogene 1 pseudo ARPC3P1 actin related protein 2/3 complex, subunit 3 pseudogene 1 O - 20121230 -9606 87178 PNPT1 - COXPD13|DFNB70|OLD35|PNPASE|old-35 HGNC:23166|MIM:610316|Ensembl:ENSG00000138035|HPRD:18493|Vega:OTTHUMG00000129335 2 2p15 polyribonucleotide nucleotidyltransferase 1 protein-coding PNPT1 polyribonucleotide nucleotidyltransferase 1 O 3'-5' RNA exonuclease OLD35|PNPase 1|PNPase old-35|polynucleotide phosphorylase 1|polynucleotide phosphorylase-like protein|polyribonucleotide nucleotidyltransferase 1, mitochondrial 20121230 -9606 87688 RPL7AP50 - RPL7A_23_1048 HGNC:36117 10 10q21.3 ribosomal protein L7a pseudogene 50 pseudo RPL7AP50 ribosomal protein L7a pseudogene 50 O - 20121230 -9606 87769 GGACT RP11-151A6.2 A2LD1 HGNC:25100|MIM:613378|Ensembl:ENSG00000134864 13 13q32.3 gamma-glutamylamine cyclotransferase protein-coding GGACT gamma-glutamylamine cyclotransferase O AIG2-like domain 1|AIG2-like domain-containing protein 1|gamma-glutamylaminecyclotransferase 20121230 -9606 88455 ANKRD13A - ANKRD13|NY-REN-25 HGNC:21268|Ensembl:ENSG00000076513|HPRD:12458|Vega:OTTHUMG00000169314 12 12q24.11 ankyrin repeat domain 13A protein-coding ANKRD13A ankyrin repeat domain 13A O NY-REN-25 antigen|ankyrin repeat domain-containing protein 13A 20121230 -9606 88745 RRP36 HSPC253 C6orf153|dJ20C7.4 HGNC:21374|MIM:613475|Ensembl:ENSG00000124541|HPRD:12859|Vega:OTTHUMG00000014715 6 6p21.1 ribosomal RNA processing 36 homolog (S. cerevisiae) protein-coding RRP36 ribosomal RNA processing 36 homolog (S. cerevisiae) O RNA processing factor|ribosomal RNA processing protein 36 homolog 20121230 -9606 89122 TRIM4 - RNF87 HGNC:16275|Ensembl:ENSG00000146833|HPRD:15556|Vega:OTTHUMG00000156648 7 7q22-q31.1 tripartite motif containing 4 protein-coding TRIM4 tripartite motif containing 4 O RING finger protein 87|tripartite motif protein 4|tripartite motif-containing 4|tripartite motif-containing protein 4 20121230 -9606 89758 C6orf7 - - HGNC:14109 6 6q14 chromosome 6 open reading frame 7 protein-coding C6orf7 chromosome 6 open reading frame 7 O uncharacterized protein LOC89758 20121230 -9606 89760 MRX75 - - HGNC:7309 X Xq24-q26 mental retardation, X-linked 75 unknown MRX75 mental retardation, X-linked 75 O - 20110215 -9606 89761 NUFIP1P - - HGNC:8058 6 6q12 nuclear fragile X mental retardation protein interacting protein 1 pseudogene pseudo NUFIP1P nuclear fragile X mental retardation protein interacting protein 1 pseudogene O - 20121230 -9606 89765 RSPH1 - RSP44|RSPH10A|TSA2|TSGA2 HGNC:12371|MIM:609314|Ensembl:ENSG00000160188|HPRD:11651|Vega:OTTHUMG00000086804 21 21q22.3 radial spoke head 1 homolog (Chlamydomonas) protein-coding RSPH1 radial spoke head 1 homolog (Chlamydomonas) O CT79|cancer/testis antigen 79|h-meichroacidin|male meiotic metaphase chromosome-associated acidic protein|meichroacidin|radial spoke head 1 homolog|testes specific A2 homolog|testes specific gene A2 homolog|testis specific A2 homolog|testis-specific gene A2 protein 20121230 -9606 89766 UMODL1 - - HGNC:12560|MIM:613859|Ensembl:ENSG00000177398|HPRD:08775|HPRD:15610|Vega:OTTHUMG00000086788 21 21q22.3 uromodulin-like 1 protein-coding UMODL1 uromodulin-like 1 O olfactorin 20121230 -9606 89770 IGHV3-30-5 - IGHV3-3|IGHV3305 HGNC:5594|IMGT/GENE-DB:IGHV3-30-5 14 14q32.33 immunoglobulin heavy variable 3-30-5 other IGHV3-30-5 immunoglobulin heavy variable 3-30-5 O - 20120114 -9606 89777 SERPINB12 - YUKOPIN HGNC:14220|Ensembl:ENSG00000166634|HPRD:11548|Vega:OTTHUMG00000132789 18 - serpin peptidase inhibitor, clade B (ovalbumin), member 12 protein-coding SERPINB12 serpin peptidase inhibitor, clade B (ovalbumin), member 12 O serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 12|serpin B12 20121230 -9606 89778 SERPINB11 - EPIPIN|SERPIN11 HGNC:14221|Ensembl:ENSG00000206072|HPRD:11547|Vega:OTTHUMG00000060404 18 - serpin peptidase inhibitor, clade B (ovalbumin), member 11 (gene/pseudogene) protein-coding SERPINB11 serpin peptidase inhibitor, clade B (ovalbumin), member 11 (gene/pseudogene) O serine (or cysteine) proteinase inhibitor, clade B (ovalbumin), member 11|serpin B11 20121230 -9606 89780 WNT3A - - HGNC:15983|MIM:606359|Ensembl:ENSG00000154342|HPRD:05897|Vega:OTTHUMG00000037593 1 1q42 wingless-type MMTV integration site family, member 3A protein-coding WNT3A wingless-type MMTV integration site family, member 3A O protein Wnt-3a 20121230 -9606 89781 HPS4 CTB-1048E9.4 LE HGNC:15844|MIM:606682|Ensembl:ENSG00000100099|HPRD:05983|Vega:OTTHUMG00000030459 22 22cen-q12.3 Hermansky-Pudlak syndrome 4 protein-coding HPS4 Hermansky-Pudlak syndrome 4 O Hermansky-Pudlak syndrome 4 protein|light-ear protein homolog 20121230 -9606 89782 LMLN - GP63|INV|IX14|MSP HGNC:15991|MIM:609380|Ensembl:ENSG00000185621|HPRD:07023|Vega:OTTHUMG00000155375 3 3q29 leishmanolysin-like (metallopeptidase M8 family) protein-coding LMLN leishmanolysin-like (metallopeptidase M8 family) O invadolysin|leishmanolysin-2|leishmanolysin-like peptidase 20121230 -9606 89790 SIGLEC10 UNQ477/PRO940 PRO940|SIGLEC-10|SLG2 HGNC:15620|MIM:606091|Ensembl:ENSG00000142512|HPRD:07307|Vega:OTTHUMG00000165521 19 19q13.3 sialic acid binding Ig-like lectin 10 protein-coding SIGLEC10 sialic acid binding Ig-like lectin 10 O sialic acid binding Ig-like lectin 10 Ig-like lectin 7|sialic acid-binding Ig-like lectin 10|siglec-like gene 2|siglec-like protein 2 20121230 -9606 89792 GAL3ST3 - GAL3ST-3|GAL3ST2 HGNC:24144|MIM:608234|Ensembl:ENSG00000175229|HPRD:10501|Vega:OTTHUMG00000166667 11 11q13.1 galactose-3-O-sulfotransferase 3 protein-coding GAL3ST3 galactose-3-O-sulfotransferase 3 O beta-galactose-3-O-sulfotransferase 3|gal-beta-1, 3-GalNAc 3'-sulfotransferase 3|galactose 3'-sulfotransferase|galbeta1-3GalNAc 3'-sulfotransferase 3 20121230 -9606 89795 NAV3 - POMFIL1|STEERIN3|unc53H3 HGNC:15998|MIM:611629|Ensembl:ENSG00000067798|HPRD:10114|Vega:OTTHUMG00000170001 12 12q14.3 neuron navigator 3 protein-coding NAV3 neuron navigator 3 O pore membrane and/or filament interacting like protein 1|pore membrane and/or filament-interacting-like protein 1|steerin 3|steerin-3|unc-53 homolog 3 20121230 -9606 89796 NAV1 - POMFIL3|STEERIN1|UNC53H1 HGNC:15989|MIM:611628|Ensembl:ENSG00000134369|HPRD:10113|Vega:OTTHUMG00000035766 1 1q32.3 neuron navigator 1 protein-coding NAV1 neuron navigator 1 O neuron navigator-1|pore membrane and/or filament interacting like protein 3|pore membrane and/or filament-interacting-like protein 3|unc-53 homolog 1 20121230 -9606 89797 NAV2 - HELAD1|POMFIL2|RAINB1|STEERIN2|UNC53H2 HGNC:15997|MIM:607026|Ensembl:ENSG00000166833|HPRD:07385|Vega:OTTHUMG00000151837 11 11p15.1 neuron navigator 2 protein-coding NAV2 neuron navigator 2 O helicase, APC down-regulated 1|pore membrane and/or filament-interacting-like protein 2|retinoic acid inducible gene in neuroblastoma 1|steerin-2|unc-53 homolog 2 20121230 -9606 89801 PPP1R3F - HB2E|R3F HGNC:14944|Ensembl:ENSG00000049769|HPRD:15170|Vega:OTTHUMG00000024139 X Xp11.23 protein phosphatase 1, regulatory subunit 3F protein-coding PPP1R3F protein phosphatase 1, regulatory subunit 3F O protein phosphatase 1 regulatory subunit 3F|protein phosphatase 1, regulatory (inhibitor) subunit 3F 20121230 -9606 89822 KCNK17 UNQ5816/PRO19634 K2p17.1|TALK-2|TALK2|TASK-4|TASK4 HGNC:14465|MIM:607370|Ensembl:ENSG00000124780|HPRD:09566|Vega:OTTHUMG00000014646 6 6p21.1 potassium channel, subfamily K, member 17 protein-coding KCNK17 potassium channel, subfamily K, member 17 O 2P domain potassium channel Talk-2|TWIK-related acid-sensitive K(+) channel 4|TWIK-related alkaline pH-activated K(+) channel 2|acid-sensitive potassium channel protein TASK-4|potassium channel subfamily K member 17 20121230 -9606 89832 CHRFAM7A - CHRNA7|CHRNA7-DR1|D-10 HGNC:15781|MIM:609756|Ensembl:ENSG00000166664|HPRD:18704|Vega:OTTHUMG00000175645 15 15q13.1 CHRNA7 (cholinergic receptor, nicotinic, alpha 7, exons 5-10) and FAM7A (family with sequence similarity 7A, exons A-E) fusion protein-coding CHRFAM7A CHRNA7 (cholinergic receptor, nicotinic, alpha 7, exons 5-10) and FAM7A (family with sequence similarity 7A, exons A-E) fusion O CHRNA7 (cholinergic receptor, nicotinic, alpha polypeptide 7, exons 5-10) and FAM7A (family with sequence similarity 7A, exons A-E) fusion|CHRNA7-FAM7A fusion protein|alpha 7 neuronal nicotinic acetylcholine receptor-FAM7A hybrid|alpha-7 nicotinic cholinergic receptor subunit 20121230 -9606 89837 ULK4P3 - D-X|FAM7A3 HGNC:15777 15 15q13.2 unc-51-like kinase 4 (C. elegans) pseudogene 3 pseudo ULK4P3 unc-51-like kinase 4 (C. elegans) pseudogene 3 O - 20121230 -9606 89838 ULK4P1 - D-X|FAM7A1 HGNC:15775 15 15q13.3 unc-51-like kinase 4 (C. elegans) pseudogene 1 pseudo ULK4P1 unc-51-like kinase 4 (C. elegans) pseudogene 1 O - 20121230 -9606 89839 ARHGAP11B - B'-T|FAM7B1 HGNC:15782|Ensembl:ENSG00000187951|Vega:OTTHUMG00000175656 15 15q13.2 Rho GTPase activating protein 11B protein-coding ARHGAP11B Rho GTPase activating protein 11B O GAP (1-8)|family with sequence similarity 7, member B1|rho GTPase-activating protein 11B|rho-type GTPase-activating protein 11B 20121230 -9606 89844 LOC89844 - - - 19 19p13.1 mitochondrial RNA polymerase pseudogene pseudo - - - - 20121230 -9606 89845 ABCC10 RP5-895C5.1 EST182763|MRP7|SIMRP7 HGNC:52|MIM:612509|Ensembl:ENSG00000124574|HPRD:07623|Vega:OTTHUMG00000014733 6 6p21.1 ATP-binding cassette, sub-family C (CFTR/MRP), member 10 protein-coding ABCC10 ATP-binding cassette, sub-family C (CFTR/MRP), member 10 O ATP-binding cassette sub-family C member 10|multidrug resistance-associated protein 7 20121230 -9606 89846 FGD3 RP11-274J16.4 ZFYVE5 HGNC:16027|Ensembl:ENSG00000127084|HPRD:10957|Vega:OTTHUMG00000021032 9 - FYVE, RhoGEF and PH domain containing 3 protein-coding FGD3 FYVE, RhoGEF and PH domain containing 3 O FGD1 family, member 3|FYVE, RhoGEF and PH domain-containing protein 3|faciogenital dysplasia 3|zinc finger FYVE domain-containing protein 5 20121230 -9606 89848 FCHSD1 UNQ737/PRO1431 NWK2 HGNC:25463|Ensembl:ENSG00000197948|HPRD:13320|Vega:OTTHUMG00000163762 5 5q31.3 FCH and double SH3 domains 1 protein-coding FCHSD1 FCH and double SH3 domains 1 O FCH and double SH3 domains protein 1|nervous wreck homolog 2 20121230 -9606 89849 ATG16L2 - ATG16B|WDR80 HGNC:25464|Ensembl:ENSG00000168010|HPRD:10959|Vega:OTTHUMG00000167961 11 11q13.4 autophagy related 16-like 2 (S. cerevisiae) protein-coding ATG16L2 autophagy related 16-like 2 (S. cerevisiae) O APG16-like 2|ATG16 autophagy related 16-like 2|WD repeat-containing protein 80|autophagy-related protein 16-2 20121230 -9606 89853 MVB12B - C9orf28|FAM125B HGNC:23368|Ensembl:ENSG00000196814|HPRD:12952|Vega:OTTHUMG00000020687 9 9q33.3 multivesicular body subunit 12B protein-coding MVB12B multivesicular body subunit 12B O ESCRT-I complex subunit MVB12B|family with sequence similarity 125, member B 20121230 -9606 89857 KLHL6 - - HGNC:18653|MIM:614214|Ensembl:ENSG00000172578|HPRD:10035|Vega:OTTHUMG00000148673 3 3q27.3 kelch-like 6 (Drosophila) protein-coding KLHL6 kelch-like 6 (Drosophila) O kelch-like protein 6|kelch-like protein KLHL6 20121230 -9606 89858 SIGLEC12 UNQ9215/PRO34042 S2V|SIGLECL1|SLG|Siglec-XII HGNC:15482|MIM:606094|Ensembl:ENSG00000254521|HPRD:16195|Vega:OTTHUMG00000165524 19 19q13.4 sialic acid binding Ig-like lectin 12 (gene/pseudogene) protein-coding SIGLEC12 sialic acid binding Ig-like lectin 12 (gene/pseudogene) O SIGLEC-like 1|sialic acid-binding Ig-like lectin 12|sialic acid-binding Ig-like lectin-like 1 20121230 -9606 89866 SEC16B - LZTR2|PGPR-p117|RGPR|SEC16S HGNC:30301|MIM:612855|Ensembl:ENSG00000120341|HPRD:11491|Vega:OTTHUMG00000167206 1 1q25.2 SEC16 homolog B (S. cerevisiae) protein-coding SEC16B SEC16 homolog B (S. cerevisiae) O RGPR-p117|leucine zipper transcription regulator 2|protein SEC16 homolog B|protein transport protein Sec16B|regucalcin gene promoter region-related protein p117|regucalcin gene promotor region related protein 20121230 -9606 89869 PLCZ1 - NYD-SP27|PLC-zeta-1|PLCzeta HGNC:19218|MIM:608075|Ensembl:ENSG00000139151|HPRD:06996|Vega:OTTHUMG00000168937 12 12p12.3 phospholipase C, zeta 1 protein-coding PLCZ1 phospholipase C, zeta 1 O 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase zeta-1|PI-phospholipase C zeta 1|phosphoinositide phospholipase C-zeta-1|testis-development related NYD-SP27 20121230 -9606 89870 TRIM15 DAAP-200B17.1 RNF93|ZNF178|ZNFB7 HGNC:16284|Ensembl:ENSG00000204610|HPRD:15551|Vega:OTTHUMG00000031031 6 6p21.3 tripartite motif containing 15 protein-coding TRIM15 tripartite motif containing 15 O RING finger protein 93|tripartite motif-containing 15|tripartite motif-containing protein 15|zinc finger protein 178|zinc finger protein B7 20121230 -9606 89872 AQP10 - AQPA_HUMAN HGNC:16029|MIM:606578|Ensembl:ENSG00000143595|HPRD:07361|Vega:OTTHUMG00000035980 1 1q21.3 aquaporin 10 protein-coding AQP10 aquaporin 10 O AQP-10|aquaglyceroporin-10|aquaporin-10|small intestine aquaporin 20121230 -9606 89873 PPH2 - - HGNC:15733 2 2q31-q32 primary pulmonary hypertension 2 unknown PPH2 primary pulmonary hypertension 2 O - 20110215 -9606 89874 SLC25A21 - ODC|ODC1 HGNC:14411|MIM:607571|Ensembl:ENSG00000183032|HPRD:12124|Vega:OTTHUMG00000140250 14 14q11.2 solute carrier family 25 (mitochondrial oxoadipate carrier), member 21 protein-coding SLC25A21 solute carrier family 25 (mitochondrial oxoadipate carrier), member 21 O mitochondrial 2-oxodicarboxylate carrier|oxodicarboxylate carrier|solute carrier family 25 (mitochondrial oxodicarboxylate carrier), member 21|solute carrier family 25 member 21 20121230 -9606 89876 MAATS1 - AAT1|AAT1alpha|C3orf15|SPATA26 HGNC:24010|MIM:609910|Ensembl:ENSG00000183833|HPRD:10782|Vega:OTTHUMG00000159422 3 3q12-q13.3 MYCBP-associated, testis expressed 1 protein-coding MAATS1 MYCBP-associated, testis expressed 1 O AAT-1|AAT1-alpha|AMY-1-associating protein expressed in testis 1|MYCBP-binding protein|MYCBP/AMY-1-associated, testis expressed 1|spermatogenesis associated 26 20121230 -9606 89882 TPD52L3 - NYDSP25|hD55 HGNC:23382|Ensembl:ENSG00000170777|HPRD:14864|Vega:OTTHUMG00000019518 9 9p24.1 tumor protein D52-like 3 protein-coding TPD52L3 tumor protein D52-like 3 O protein kinase NYD-SP25|testis development protein NYD-SP25|tumor protein D55 20121230 -9606 89883 OR6W1P - OR6W1|sdolf HGNC:15091 7 7q34 olfactory receptor, family 6, subfamily W, member 1 pseudogene pseudo OR6W1P olfactory receptor, family 6, subfamily W, member 1 pseudogene O - 20121230 -9606 89884 LHX4 - CPHD4 HGNC:21734|MIM:602146|Ensembl:ENSG00000121454|HPRD:03686|Vega:OTTHUMG00000035115 1 1q25.2 LIM homeobox 4 protein-coding LHX4 LIM homeobox 4 O LIM homeobox protein 4|LIM/homeobox protein Lhx4 20121230 -9606 89885 FATE1 - CT43|FATE HGNC:24683|MIM:300450|Ensembl:ENSG00000147378|HPRD:02346|Vega:OTTHUMG00000024172 X Xq28 fetal and adult testis expressed 1 protein-coding FATE1 fetal and adult testis expressed 1 O BJ-HCC-2 antigen|cancer/testis antigen 43|fetal and adult testis expressed transcript protein|fetal and adult testis-expressed transcript protein|tumor antigen BJ-HCC-2 20121230 -9606 89886 SLAMF9 RP11-48O20.3 CD2F-10|CD2F10|CD84-H1|CD84H1|SF2001 HGNC:18430|MIM:608589|Ensembl:ENSG00000162723|HPRD:12263|Vega:OTTHUMG00000024074 1 1q23.2 SLAM family member 9 protein-coding SLAMF9 SLAM family member 9 O CD2 family member 10|CD84 homolog 1|cluster of differentiation 2 antigen family member 10|cluster of differentiation 84 homolog 1|signaling lymphocytic activation molecule family member 2001|signaling lymphocytic activation molecule family member 9 20121230 -9606 89887 ZNF628 - ZEC|Zfp628 HGNC:28054|MIM:610671|HPRD:18317 19 19q13.42 zinc finger protein 628 protein-coding ZNF628 zinc finger protein 628 O zinc finger protein Zec 20121230 -9606 89890 KBTBD6 - - HGNC:25340|Ensembl:ENSG00000165572|HPRD:13758|Vega:OTTHUMG00000016786 13 13q14.11 kelch repeat and BTB (POZ) domain containing 6 protein-coding KBTBD6 kelch repeat and BTB (POZ) domain containing 6 O kelch repeat and BTB domain-containing protein 6 20121230 -9606 89891 WDR34 RP11-216B9.5 bA216B9.3 HGNC:28296|MIM:613363|Ensembl:ENSG00000119333|HPRD:15666|Vega:OTTHUMG00000020750 9 9q34.11 WD repeat domain 34 protein-coding WDR34 WD repeat domain 34 O WD repeat-containing protein 34 20121230 -9606 89894 TMEM116 - - HGNC:25084|Ensembl:ENSG00000198270|HPRD:11275|Vega:OTTHUMG00000169606 12 12q24.13 transmembrane protein 116 protein-coding TMEM116 transmembrane protein 116 O - 20121230 -9606 89910 UBE3B - - HGNC:13478|MIM:608047|Ensembl:ENSG00000151148|HPRD:06993|Vega:OTTHUMG00000169254 12 12q24.11 ubiquitin protein ligase E3B protein-coding UBE3B ubiquitin protein ligase E3B O ubiquitin-protein ligase E3B 20121230 -9606 89927 C16orf45 - - HGNC:19213|Ensembl:ENSG00000166780|HPRD:12382|Vega:OTTHUMG00000129883 16 16p13.11 chromosome 16 open reading frame 45 protein-coding C16orf45 chromosome 16 open reading frame 45 O uncharacterized protein C16orf45 20121230 -9606 89932 PAPLN UNQ2420/PRO4977 - HGNC:19262|Ensembl:ENSG00000100767|HPRD:15099|Vega:OTTHUMG00000171366 14 14q24.2 papilin, proteoglycan-like sulfated glycoprotein protein-coding PAPLN papilin, proteoglycan-like sulfated glycoprotein O papilin 20121230 -9606 89941 RHOT2 LA16c-313D11.4 ARHT2|C16orf39|MIRO-2|MIRO2|RASL HGNC:21169|MIM:613889|Ensembl:ENSG00000140983|HPRD:15248|Vega:OTTHUMG00000121139 16 16p13.3 ras homolog family member T2 protein-coding RHOT2 ras homolog family member T2 O mitochondrial Rho (MIRO) GTPase 2|mitochondrial Rho GTPase 2|ras homolog gene family, member T2 20121230 -9606 89944 GLB1L2 MSTP014 MST114|MSTP114 HGNC:25129|Ensembl:ENSG00000149328|HPRD:14265|Vega:OTTHUMG00000167179 11 11q25 galactosidase, beta 1-like 2 protein-coding GLB1L2 galactosidase, beta 1-like 2 O beta-galactosidase-1-like protein 2 20121230 -9606 89953 KLC4 - KNSL8|bA387M24.3 HGNC:21624|Ensembl:ENSG00000137171|HPRD:13932|Vega:OTTHUMG00000014720 6 6p21.1 kinesin light chain 4 protein-coding KLC4 kinesin light chain 4 O KLC 4|kinesin-like 8|kinesin-like protein 8 20121230 -9606 89958 SAPCD2 - C9orf140|p42.3 HGNC:28055|MIM:612057|Ensembl:ENSG00000186193|HPRD:12943|Vega:OTTHUMG00000020961 9 9q34.3 suppressor APC domain containing 2 protein-coding SAPCD2 suppressor APC domain containing 2 O 2010317E24Rik|TS/MDEP|protein C9orf140|suppressor APC domain-containing protein 2|tumor specificity and mitosis phase-dependent expression protein 20121230 -9606 89970 RSPRY1 UNQ328/PRO444 - HGNC:29420|Ensembl:ENSG00000159579|HPRD:13908|Vega:OTTHUMG00000133462 16 16q13 ring finger and SPRY domain containing 1 protein-coding RSPRY1 ring finger and SPRY domain containing 1 O RING finger and SPRY domain-containing protein 1 20121230 -9606 89978 ATPBD4 - - HGNC:30543|Ensembl:ENSG00000134146|HPRD:14443|Vega:OTTHUMG00000129759 15 15q14 ATP binding domain 4 protein-coding ATPBD4 ATP binding domain 4 O ATP-binding domain-containing protein 4 20121230 -9606 90007 MIDN - - HGNC:16298|MIM:606700|Ensembl:ENSG00000167470|HPRD:16230|Vega:OTTHUMG00000180144 19 19p13.3 midnolin protein-coding MIDN midnolin O midbrain nucleolar protein 20121230 -9606 90011 KIR3DX1 XXbac-BCX85G21.1 KIR3DL0|LENG12 HGNC:25043|HPRD:13328 19 19q13.42 killer cell immunoglobulin-like receptor, three domains, X1 pseudo KIR3DX1 killer cell immunoglobulin-like receptor, three domains, X1 O - 20121230 -9606 90019 SYT8 - - HGNC:19264|MIM:607719|Ensembl:ENSG00000149043|HPRD:09655|Vega:OTTHUMG00000009026 11 11p15.5 synaptotagmin VIII protein-coding SYT8 synaptotagmin VIII O synaptotagmin 8|synaptotagmin-8|sytVIII 20121230 -9606 90024 FLJ20021 - - - 4 4q24 uncharacterized LOC90024 miscRNA - - - - 20121230 -9606 90025 UBE3D RP4-751H9.1 C6orf157|H10BH|UBE2CBP|YJR141W HGNC:21381|MIM:612495|Ensembl:ENSG00000118420|HPRD:12861|Vega:OTTHUMG00000015108 6 6q14.1 ubiquitin protein ligase E3D protein-coding UBE3D ubiquitin protein ligase E3D O E3 ubiquitin-protein ligase E3D|UBCH10 binding protein with a hect-like domain|ubcH10-binding protein with a HECT-like domain|ubiquitin-conjugating enzyme E2C binding protein|ubiquitin-conjugating enzyme E2C-binding protein 20121230 -9606 90050 FAM181A HSD31 C14orf152 HGNC:20491|Ensembl:ENSG00000140067|HPRD:12636|Vega:OTTHUMG00000171297 14 14q32.12 family with sequence similarity 181, member A protein-coding FAM181A family with sequence similarity 181, member A O protein FAM181A 20121230 -9606 90060 CCDC120 JM11 - HGNC:28910|Ensembl:ENSG00000147144|HPRD:06595|Vega:OTTHUMG00000021509 X Xp11.23 coiled-coil domain containing 120 protein-coding CCDC120 coiled-coil domain containing 120 O coiled-coil domain-containing protein 120 20121230 -9606 90070 LACRT - - HGNC:16430|MIM:607360|Ensembl:ENSG00000135413|HPRD:06302|Vega:OTTHUMG00000169936 12 12q13 lacritin protein-coding LACRT lacritin O extracellular glycoprotein lacritin 20121230 -9606 90075 ZNF30 - KOX28 HGNC:13090|Ensembl:ENSG00000168661|HPRD:15763 19 19q13.11 zinc finger protein 30 protein-coding ZNF30 zinc finger protein 30 O zinc finger protein 30 (KOX 28)|zinc finger protein KOX28 20121230 -9606 90102 PHLDB2 - LL5b|LL5beta HGNC:29573|MIM:610298|Ensembl:ENSG00000144824|HPRD:06611|Vega:OTTHUMG00000159282 3 3q13.2 pleckstrin homology-like domain, family B, member 2 protein-coding PHLDB2 pleckstrin homology-like domain, family B, member 2 O LL5 beta|pleckstrin homology-like domain family B member 2|protein LL5-beta 20121230 -9606 90113 VWA5B2 - - HGNC:25144|Ensembl:ENSG00000145198|Vega:OTTHUMG00000156820 3 3q27.1 von Willebrand factor A domain containing 5B2 protein-coding VWA5B2 von Willebrand factor A domain containing 5B2 O von Willebrand factor A domain-containing protein 5B2 20121230 -9606 90120 C9orf69 - bA83N9.1 HGNC:31009|Ensembl:ENSG00000238227|Vega:OTTHUMG00000020922 9 9q34.3 chromosome 9 open reading frame 69 protein-coding C9orf69 chromosome 9 open reading frame 69 O uncharacterized protein LOC90120 20121230 -9606 90121 TSR2 RP1-112K5.2 DT1P1A10|WGG1 HGNC:25455|Ensembl:ENSG00000158526|HPRD:06493|Vega:OTTHUMG00000021628 X Xp11.22 TSR2, 20S rRNA accumulation, homolog (S. cerevisiae) protein-coding TSR2 TSR2, 20S rRNA accumulation, homolog (S. cerevisiae) O WGG motif containing 1|pre-rRNA-processing protein TSR2 homolog 20121230 -9606 90133 KRT8P12 - KRT8L2 HGNC:28057 3 3q25.33 keratin 8 pseudogene 12 pseudo KRT8P12 keratin 8 pseudogene 12 O - 20121230 -9606 90134 KCNH7 - ERG3|HERG3|Kv11.3 HGNC:18863|MIM:608169|Ensembl:ENSG00000184611|HPRD:16295|Vega:OTTHUMG00000132069 2 2q24.2 potassium voltage-gated channel, subfamily H (eag-related), member 7 protein-coding KCNH7 potassium voltage-gated channel, subfamily H (eag-related), member 7 O ERG-3|eag related protein 3|eag-related protein 3|ether-a-go-go related gene potassium channel 3|ether-a-go-go-related gene potassium channel 3|ether-a-go-go-related protein 3|potassium channel subunit HERG-3|potassium voltage-gated channel subfamily H member 7|voltage-gated potassium channel subunit Kv11.3 20121230 -9606 90135 BTBD6 - BDPL HGNC:19897|Ensembl:ENSG00000184887|HPRD:12540|Vega:OTTHUMG00000029887 14 14q32 BTB (POZ) domain containing 6 protein-coding BTBD6 BTB (POZ) domain containing 6 O BTB domain protein BDPL|BTB/POZ domain-containing protein 6|glucocorticoid receptor AF-1 coactivator-1|lens BTB domain protein 20121230 -9606 90139 TSPAN18 UNQ3042/PRO9858 TSPAN HGNC:20660|Ensembl:ENSG00000157570|HPRD:17435|Vega:OTTHUMG00000163883 11 11p11.2 tetraspanin 18 protein-coding TSPAN18 tetraspanin 18 O tetraspanin-18|tspan-18 20121230 -9606 90141 EFCAB11 - C14orf143 HGNC:20357|Ensembl:ENSG00000140025|HPRD:16609|Vega:OTTHUMG00000148671 14 14q32.11 EF-hand calcium binding domain 11 protein-coding EFCAB11 EF-hand calcium binding domain 11 O EF-hand calcium-binding domain-containing protein 11|EF-hand domain-containing protein C14orf143 20121230 -9606 90161 HS6ST2 RP3-435D1.3 - HGNC:19133|MIM:300545|Ensembl:ENSG00000171004|HPRD:06590|Vega:OTTHUMG00000022430 X Xq26.2 heparan sulfate 6-O-sulfotransferase 2 protein-coding HS6ST2 heparan sulfate 6-O-sulfotransferase 2 O HS6ST-2|heparan-sulfate 6-O-sulfotransferase 2 20121230 -9606 90167 FRMD7 RP6-213H19.2 NYS|NYS1|XIPAN HGNC:8079|MIM:300628|Ensembl:ENSG00000165694|HPRD:06624|Vega:OTTHUMG00000022421 X Xq26.2 FERM domain containing 7 protein-coding FRMD7 FERM domain containing 7 O FERM domain-containing protein 7 20121230 -9606 90187 EMILIN3 RP4-620E11.1 C20orf130|EMILIN5|dJ620E11.4 HGNC:16123|MIM:608929|Ensembl:ENSG00000183798|HPRD:12335|Vega:OTTHUMG00000046304 20 20q12 elastin microfibril interfacer 3 protein-coding EMILIN3 elastin microfibril interfacer 3 O EMILIN-3|EMILIN-5|elastin microfibril interface-located protein 3|elastin microfibril interface-located protein 5|elastin microfibril interfacer 5 20121230 -9606 90193 RPL7P6 - RPL7_20_1216 HGNC:32430 12 12p12.3 ribosomal protein L7 pseudogene 6 pseudo RPL7P6 ribosomal protein L7 pseudogene 6 O - 20121230 -9606 90196 SYS1 RP3-453C12.12-005 C20orf169|dJ453C12.4|dJ453C12.4.1 HGNC:16162|MIM:612979|Ensembl:ENSG00000204070|Vega:OTTHUMG00000032579 20 20q13.12 SYS1 Golgi-localized integral membrane protein homolog (S. cerevisiae) protein-coding SYS1 SYS1 Golgi-localized integral membrane protein homolog (S. cerevisiae) O protein SYS1 homolog 20121230 -9606 90199 WFDC8 RP3-461P17.3 C20orf170|WAP8|dJ461P17.1 HGNC:16163|Ensembl:ENSG00000158901|HPRD:11685|Vega:OTTHUMG00000046342 20 20q13.12 WAP four-disulfide core domain 8 protein-coding WFDC8 WAP four-disulfide core domain 8 O WAP four-disulfide core domain protein 8|WAP motif protein 1|protease inhibitor WAP8|putative protease inhibitor WAP8 20121230 -9606 90203 SNX21 RP3-337O18.7 C20orf161|PP3993|SNX-L|dJ337O18.4 HGNC:16154|Ensembl:ENSG00000124104|HPRD:16641|Vega:OTTHUMG00000032624 20 20q13.12 sorting nexin family member 21 protein-coding SNX21 sorting nexin family member 21 O sorting nexin 21|sorting nexin L|sorting nexin-21 20121230 -9606 90204 ZSWIM1 - C20orf162 HGNC:16155|Ensembl:ENSG00000168612|HPRD:15901|Vega:OTTHUMG00000074023 20 20q13.12 zinc finger, SWIM-type containing 1 protein-coding ZSWIM1 zinc finger, SWIM-type containing 1 O zinc finger SWIM domain-containing protein 1|zinc finger, SWIM domain containing 1 20121230 -9606 90226 UCN2 - SRP|UCN-II|UCNI|UR|URP HGNC:18414|MIM:605902|Ensembl:ENSG00000145040|HPRD:16171|Vega:OTTHUMG00000133533 3 3p21.3 urocortin 2 protein-coding UCN2 urocortin 2 O stresscopin-related peptide|ucn II|urocortin II|urocortin-2|urocortin-related peptide 20121230 -9606 90231 KIAA2013 RP5-1077B9.1 - HGNC:28513|Ensembl:ENSG00000116685|HPRD:14576|Vega:OTTHUMG00000002391 1 1p36.22 KIAA2013 protein-coding KIAA2013 KIAA2013 O uncharacterized protein KIAA2013 20121230 -9606 90233 ZNF551 - - HGNC:25108|Ensembl:ENSG00000204519|HPRD:11727 19 19q13.43 zinc finger protein 551 protein-coding ZNF551 zinc finger protein 551 O KOX 23 protein (56 AA)|zinc finger protein KOX23 20121230 -9606 90246 LOC90246 - - - 3 3q21.3 uncharacterized LOC90246 miscRNA - - - - 20121230 -9606 90249 UNC5A - UNC5H1 HGNC:12567|MIM:607869|Ensembl:ENSG00000113763|Vega:OTTHUMG00000163225 5 5q35.2 unc-5 homolog A (C. elegans) protein-coding UNC5A unc-5 homolog A (C. elegans) O netrin receptor UNC5A|netrin receptor Unc5h1|protein unc-5 homolog 1|protein unc-5 homolog A|unc-5 homolog 1|unc5 (C.elegans homolog) a 20121230 -9606 90268 FAM105B - - HGNC:25118|Ensembl:ENSG00000154124|HPRD:14266|Vega:OTTHUMG00000161762 5 5p15.2 family with sequence similarity 105, member B protein-coding FAM105B family with sequence similarity 105, member B O protein FAM105B 20121230 -9606 90271 LINC00263 - C10orf75|NCRNA00263 HGNC:28060 10 10q24.31 long intergenic non-protein coding RNA 263 miscRNA LINC00263 long intergenic non-protein coding RNA 263 O - 20121230 -9606 90273 CEACAM21 UNQ3098/PRO10075 CEACAM3|R29124_1 HGNC:28834|Ensembl:ENSG00000007129|HPRD:10179|Vega:OTTHUMG00000151062 19 19q13.2 carcinoembryonic antigen-related cell adhesion molecule 21 protein-coding CEACAM21 carcinoembryonic antigen-related cell adhesion molecule 21 O - 20121230 -9606 90288 EFCAB12 - C3orf25 HGNC:28061|Ensembl:ENSG00000172771|HPRD:11276|Vega:OTTHUMG00000159464 3 3q21.3 EF-hand calcium binding domain 12 protein-coding EFCAB12 EF-hand calcium binding domain 12 O EF-hand calcium-binding domain-containing protein 12|EF-hand domain-containing protein C3orf25 20121230 -9606 90293 KLHL13 - BKLHD2 HGNC:22931|MIM:300655|Ensembl:ENSG00000003096|HPRD:06461|Vega:OTTHUMG00000022252 X Xq23-q24 kelch-like 13 (Drosophila) protein-coding KLHL13 kelch-like 13 (Drosophila) O BTB and kelch domain containing 2|kelch-like protein 13 20121230 -9606 90313 TP53I13 - DSCP1 HGNC:25102|Ensembl:ENSG00000167543|HPRD:14267|Vega:OTTHUMG00000179723 17 17q11.2 tumor protein p53 inducible protein 13 protein-coding TP53I13 tumor protein p53 inducible protein 13 O damage-stimulated cytoplasmic protein 1|tumor protein p53-inducible protein 13 20121230 -9606 90316 TGIF2LX - TGIFLX HGNC:18570|MIM:300411|Ensembl:ENSG00000153779|HPRD:02328|Vega:OTTHUMG00000021954 X Xq21.31 TGFB-induced factor homeobox 2-like, X-linked protein-coding TGIF2LX TGFB-induced factor homeobox 2-like, X-linked O TGF-beta-induced transcription factor 2-like protein|TGFB-induced factor 2-like protein, X-linked|TGFB-induced factor 2-like, X-linked|TGIF-like on the X|homeobox protein TGIF2LX 20121230 -9606 90317 ZNF616 - - HGNC:28062|Ensembl:ENSG00000204611|HPRD:15876 19 19q13.41 zinc finger protein 616 protein-coding ZNF616 zinc finger protein 616 O - 20121230 -9606 90321 ZNF766 - - HGNC:28063|Ensembl:ENSG00000196214|HPRD:14268 19 19q13.41 zinc finger protein 766 protein-coding ZNF766 zinc finger protein 766 O - 20121230 -9606 90324 CCDC97 - - HGNC:28289|Ensembl:ENSG00000142039|HPRD:14467 19 19q13.2 coiled-coil domain containing 97 protein-coding CCDC97 coiled-coil domain containing 97 O coiled-coil domain-containing protein 97 20121230 -9606 90326 THAP3 - - HGNC:20855|MIM:612532|Ensembl:ENSG00000041988|HPRD:18178|Vega:OTTHUMG00000001440 1 1p36.31 THAP domain containing, apoptosis associated protein 3 protein-coding THAP3 THAP domain containing, apoptosis associated protein 3 O THAP domain-containing protein 3 20121230 -9606 90332 EXOC3L2 - XTP7 HGNC:30162|Ensembl:ENSG00000130201|HPRD:10311|Vega:OTTHUMG00000155018 19 19q13.32 exocyst complex component 3-like 2 protein-coding EXOC3L2 exocyst complex component 3-like 2 O HBV X-transactivated gene 7 protein|HBV XAg-transactivated protein 7|exocyst complex component 3-like protein 2|protein 7 transactivated by hepatitis B virus X antigen (HBxAg) 20121230 -9606 90333 ZNF468 - - HGNC:33105|Ensembl:ENSG00000204604|HPRD:18344 19 19q13.41 zinc finger protein 468 protein-coding ZNF468 zinc finger protein 468 O zinc finger protein ZNF468 20121230 -9606 90338 ZNF160 - F11|HKr18|HZF5|KR18 HGNC:12948|MIM:600398|Ensembl:ENSG00000170949|HPRD:11856 19 19q13.42 zinc finger protein 160 protein-coding ZNF160 zinc finger protein 160 O KRAB zinc finger protein KR18|zinc finger protein 5|zinc finger protein HZF5|zinc finger protein Kr18 20121230 -9606 90342 FER1L5 hCG_1810857 - HGNC:19044 2 2q11.2 fer-1-like 5 (C. elegans) protein-coding FER1L5 fer-1-like 5 (C. elegans) O fer-1-like protein 5 20121230 -9606 90352 MAGOH3P - MAGOHP|MAGOHP1 HGNC:20020 14 14q24.1 mago-nashi homolog 2, proliferation-associated (Drosophila), pseudogene pseudo MAGOH3P mago-nashi homolog 2, proliferation-associated (Drosophila), pseudogene O - 20121230 -9606 90353 CTU1 - ATPBD3|NCS6 HGNC:29590|MIM:612694|Ensembl:ENSG00000142544|HPRD:14270 19 19q13.41 cytosolic thiouridylase subunit 1 homolog (S. pombe) protein-coding CTU1 cytosolic thiouridylase subunit 1 homolog (S. pombe) O ATP binding domain 3|ATP-binding domain-containing protein 3|cancer-associated gene protein|cancer-associated protein|cytoplasmic tRNA 2-thiolation protein 1|cytoplasmic tRNA adenylyltransferase 1 20121230 -9606 90355 C5orf30 - - HGNC:25052|Ensembl:ENSG00000181751|HPRD:12383|Vega:OTTHUMG00000128738 5 5q21.1 chromosome 5 open reading frame 30 protein-coding C5orf30 chromosome 5 open reading frame 30 O UNC119-binding protein C5orf30|UPF0684 protein C5orf30 20121230 -9606 90362 FAM110B - C8orf72 HGNC:28587|MIM:611394|Ensembl:ENSG00000169122|HPRD:14609|Vega:OTTHUMG00000164282 8 8q12.1 family with sequence similarity 110, member B protein-coding FAM110B family with sequence similarity 110, member B O protein FAM110B 20121230 -9606 90378 SAMD1 - - HGNC:17958|Ensembl:ENSG00000141858|HPRD:18011|Vega:OTTHUMG00000166628 19 19p13.12 sterile alpha motif domain containing 1 protein-coding SAMD1 sterile alpha motif domain containing 1 O SAM domain containing 1|atherin|sterile alpha motif domain-containing protein 1 20121230 -9606 90379 DCAF15 - C19orf72 HGNC:25095|Ensembl:ENSG00000132017|Vega:OTTHUMG00000181882 19 19p13.12 DDB1 and CUL4 associated factor 15 protein-coding DCAF15 DDB1 and CUL4 associated factor 15 O DDB1- and CUL4-associated factor 15 20121230 -9606 90381 TICRR - C15orf42|SLD3|Treslin HGNC:28704|MIM:613298|Ensembl:ENSG00000140534|HPRD:11357|Vega:OTTHUMG00000149648 15 15q26.1 TOPBP1-interacting checkpoint and replication regulator protein-coding TICRR TOPBP1-interacting checkpoint and replication regulator O SLD3 homolog|topBP1-interacting replication-stimulating protein|topBP1-interacting, replication-stimulating protein|treslin 20121230 -9606 90390 MED30 - MED30S|THRAP6|TRAP25 HGNC:23032|MIM:610237|Ensembl:ENSG00000164758|HPRD:11631|Vega:OTTHUMG00000164920 8 8q24.11 mediator complex subunit 30 protein-coding MED30 mediator complex subunit 30 O TRAP/Mediator complex component TRAP25|mediator of RNA polymerase II transcription subunit 30|putative mediator of RNA polymerase II transcription subunit 30|thyroid hormone receptor associated protein 6|thyroid hormone receptor-associated protein 6|thyroid hormone receptor-associated protein complex 25 kDa component 20121230 -9606 90407 TMEM41A UNQ168/PRO194 2900010K02Rik HGNC:30544|Ensembl:ENSG00000163900|HPRD:15539|Vega:OTTHUMG00000156660 3 3q27.2 transmembrane protein 41A protein-coding TMEM41A transmembrane protein 41A O - 20121230 -9606 90410 IFT20 - - HGNC:30989|MIM:614394|Ensembl:ENSG00000109083|HPRD:17137|Vega:OTTHUMG00000179412 17 17q11.2 intraflagellar transport 20 homolog (Chlamydomonas) protein-coding IFT20 intraflagellar transport 20 homolog (Chlamydomonas) O intraflagellar transport protein 20 homolog|intraflagellar transport protein IFT20 20121230 -9606 90411 MCFD2 - F5F8D|F5F8D2|LMAN1IP|SDNSF HGNC:18451|MIM:607788|Ensembl:ENSG00000180398|HPRD:09693|Vega:OTTHUMG00000153100 2 2p21 multiple coagulation factor deficiency 2 protein-coding MCFD2 multiple coagulation factor deficiency 2 O multiple coagulation factor deficiency protein 2|neural stem cell derived neuronal survival protein|neural stem cell-derived neuronal survival protein 20121230 -9606 90416 C15orf57 - CCDC32 HGNC:28295|Ensembl:ENSG00000128891|HPRD:14473|Vega:OTTHUMG00000129993 15 15q15.1 chromosome 15 open reading frame 57 protein-coding C15orf57 chromosome 15 open reading frame 57 O coiled-coil domain containing 32|uncharacterized protein C15orf57 20121230 -9606 90417 KNSTRN HSD11 C15orf23|SKAP|TRAF4AF1 HGNC:30767|MIM:614718|Ensembl:ENSG00000128944|HPRD:12669|Vega:OTTHUMG00000172454 15 15q15.1 kinetochore-localized astrin/SPAG5 binding protein protein-coding KNSTRN kinetochore-localized astrin/SPAG5 binding protein O TRAF4 associated factor 1|TRAF4-associated factor 1|kinastrin|kinetochore-localized astrin-binding protein|putative TRAF4-associated factor 1|small kinetochore associated protein|small kinetochore-associated protein|small kinetochore-associated protein, kinetochore-localized astrin-binding protein, TRAF4 associated factor 1 20121230 -9606 90423 ATP6V1E2 - ATP6E1|ATP6EL2|ATP6V1EL2|VMA4 HGNC:18125|Ensembl:ENSG00000250565|HPRD:16525|Vega:OTTHUMG00000128819 2 2p21 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E2 protein-coding ATP6V1E2 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E2 O V-ATPase subunit E 2|V-type proton ATPase subunit E 2|vacuolar proton pump subunit E 2|vacuolar-type proton-translocating ATPase subunit E1 20121230 -9606 90427 BMF - - HGNC:24132|MIM:606266|Ensembl:ENSG00000104081|HPRD:05881|Vega:OTTHUMG00000129875 15 15q14 Bcl2 modifying factor protein-coding BMF Bcl2 modifying factor O bcl-2-modifying factor 20121230 -9606 90441 ZNF622 - ZPR9 HGNC:30958|MIM:608694|Ensembl:ENSG00000173545|HPRD:12278|Vega:OTTHUMG00000090567 5 5p15.1 zinc finger protein 622 protein-coding ZNF622 zinc finger protein 622 O zinc finger-like protein 9 20121230 -9606 90459 ERI1 - 3'HEXO|HEXO|THEX1 HGNC:23994|MIM:608739|Ensembl:ENSG00000104626|HPRD:11784|Vega:OTTHUMG00000129328 8 8p23.1 exoribonuclease 1 protein-coding ERI1 exoribonuclease 1 O 3' exoribonuclease|3'-5' exonuclease ERI1|3'-5' exoribonuclease 1|Eri-1 homolog|enhanced RNAi three prime mRNA exonuclease homolog 1|histone mRNA 3' end-specific exonuclease|histone mRNA 3'-end-specific exoribonuclease|histone mRNA 3'-exonuclease 1|protein 3'hExo|three prime histone mRNA exonuclease 1|three prime mRNA exonuclease 1 20121230 -9606 90462 LOC90462 - - HPRD:15870 12 12q24.33 zinc finger protein 605-like unknown - - - - 20121209 -9606 90480 GADD45GIP1 - CKBBP2|CRIF1|PLINP|PLINP-1|PRG6|Plinp1 HGNC:29996|MIM:605162|Ensembl:ENSG00000179271|HPRD:05519|Vega:OTTHUMG00000180724 19 19p13.2 growth arrest and DNA-damage-inducible, gamma interacting protein 1 protein-coding GADD45GIP1 growth arrest and DNA-damage-inducible, gamma interacting protein 1 O CKII beta binding protein 2|CKII beta-associating protein|CR6 interacting factor 1|growth arrest and DNA damage-inducible proteins-interacting protein 1|growth arrest- and DNA damage-inducible GADD45G-interacting protein|p53-responsive gene 6 protein|papillomavirus L2 interacting nuclear protein 1 20121230 -9606 90485 ZNF835 - BC37295_3 HGNC:34332|Ensembl:ENSG00000127903|HPRD:12521 19 19q13.43 zinc finger protein 835 protein-coding ZNF835 zinc finger protein 835 O - 20121230 -9606 90488 C12orf23 - - HGNC:28281|Ensembl:ENSG00000151135|HPRD:14462|Vega:OTTHUMG00000170014 12 12q23.3 chromosome 12 open reading frame 23 protein-coding C12orf23 chromosome 12 open reading frame 23 O UPF0444 transmembrane protein C12orf23 20121230 -9606 90499 LOC90499 - - - 2 2q11.1 uncharacterized LOC90499 miscRNA - - - - 20121230 -9606 90506 LRRC46 - - HGNC:25047|Ensembl:ENSG00000141294|HPRD:08320|Vega:OTTHUMG00000178289 17 17q21.32 leucine rich repeat containing 46 protein-coding LRRC46 leucine rich repeat containing 46 O leucine-rich repeat-containing protein 46 20121230 -9606 90507 SCRN2 - Ses2 HGNC:30381|MIM:614966|Ensembl:ENSG00000141295|HPRD:10213|Vega:OTTHUMG00000178290 17 17q21.32 secernin 2 protein-coding SCRN2 secernin 2 O secernin-2 20121230 -9606 90522 YIF1B hCG_1785221 FinGER8 HGNC:30511|Ensembl:ENSG00000167645|HPRD:11277|Vega:OTTHUMG00000182324 19 19q13.2 Yip1 interacting factor homolog B (S. cerevisiae) protein-coding YIF1B Yip1 interacting factor homolog B (S. cerevisiae) O YIP1-interacting factor homolog B|protein YIF1B 20121230 -9606 90523 MLIP RP11-642N5.1 C6orf142 HGNC:21355|MIM:614106|Ensembl:ENSG00000146147|HPRD:12853|Vega:OTTHUMG00000014891 6 6p12.1 muscular LMNA-interacting protein protein-coding MLIP muscular LMNA-interacting protein O muscle-enriched A-type lamin interacting protein|muscular-enriched A-type laminin-interacting protein 20121230 -9606 90525 SHF - - HGNC:25116|Ensembl:ENSG00000138606|HPRD:14272|Vega:OTTHUMG00000131353 15 15q21.1 Src homology 2 domain containing F protein-coding SHF Src homology 2 domain containing F O SH2 domain-containing adapter protein F 20121230 -9606 90527 DUOXA1 - NIP|NUMBIP|mol HGNC:26507|MIM:612771|Ensembl:ENSG00000140254|HPRD:14829|Vega:OTTHUMG00000131352 15 15q21.1 dual oxidase maturation factor 1 protein-coding DUOXA1 dual oxidase maturation factor 1 O dual oxidase activator 1|dual oxidase maturation factor 1 alpha|dual oxidase maturation factor 1 beta|dual oxidase maturation factor 1 delta|dual oxidase maturation factor 1 gamma|homolog of Drosophila Numb-interacting protein|numb-interacting protein 20121230 -9606 90529 STPG1 RP3-462O23.2 C1orf201|MAPO2 HGNC:28070|Ensembl:ENSG00000001460|HPRD:14273|Vega:OTTHUMG00000003297 1 1p36.11 sperm-tail PG-rich repeat containing 1 protein-coding STPG1 sperm-tail PG-rich repeat containing 1 O O6-methylguanine-induced apoptosis 2|UPF0490 protein C1orf201|sperm-tail PG-rich repeat-containing protein 1 20121230 -9606 90550 MCU - C10orf42|CCDC109A HGNC:23526|MIM:614197|Ensembl:ENSG00000156026|HPRD:10696|Vega:OTTHUMG00000018443 10 10q22.1 mitochondrial calcium uniporter protein-coding MCU mitochondrial calcium uniporter O calcium uniporter protein, mitochondrial|coiled-coil domain-containing protein 109A 20121230 -9606 90557 CCDC74A - - HGNC:25197|Ensembl:ENSG00000163040|HPRD:14274|Vega:OTTHUMG00000131667 2 2q21.1 coiled-coil domain containing 74A protein-coding CCDC74A coiled-coil domain containing 74A O coiled-coil domain-containing protein 74A 20121230 -9606 90576 ZNF799 - HIT-40|ZNF842 HGNC:28071|Ensembl:ENSG00000196466|Vega:OTTHUMG00000156408 19 19p13.2 zinc finger protein 799 protein-coding ZNF799 zinc finger protein 799 O protein for MGC71805|zinc finger protein 14|zinc finger protein 842|zinc finger protein HIT-40 20121230 -9606 90580 C19orf52 - - HGNC:25152|Ensembl:ENSG00000142444|HPRD:14275|Vega:OTTHUMG00000180700 19 19p13.2 chromosome 19 open reading frame 52 protein-coding C19orf52 chromosome 19 open reading frame 52 O uncharacterized protein C19orf52 20121230 -9606 90586 AOC4 - - - 17 17q21.31 amine oxidase, copper containing 3 (vascular adhesion protein 1) pseudogene pseudo - - - - 20121230 -9606 90589 ZNF625 - - HGNC:30571|Ensembl:ENSG00000257591|HPRD:15880|Vega:OTTHUMG00000156407 19 19p13.2 zinc finger protein 625 protein-coding ZNF625 zinc finger protein 625 O - 20121230 -9606 90592 ZNF700 - - HGNC:25292|Ensembl:ENSG00000196757|HPRD:10903|Vega:OTTHUMG00000156421 19 19p13.2 zinc finger protein 700 protein-coding ZNF700 zinc finger protein 700 O - 20121230 -9606 90594 ZNF439 - - HGNC:20873|Ensembl:ENSG00000171291|HPRD:11717|Vega:OTTHUMG00000156527 19 19p13.2 zinc finger protein 439 protein-coding ZNF439 zinc finger protein 439 O - 20121230 -9606 90624 LYRM7 - C5orf31 HGNC:28072|Ensembl:ENSG00000186687|HPRD:14276|Vega:OTTHUMG00000128994 5 5q23.3 LYR motif containing 7 protein-coding LYRM7 LYR motif containing 7 O LYR motif-containing protein 7|Lyrm7 homolog 20121230 -9606 90625 ERVH48-1 - C21orf105|NDUFV3-AS1 HGNC:17216 21 21q22.3 endogenous retrovirus group 48, member 1 unknown ERVH48-1 endogenous retrovirus group 48, member 1 O - 20121021 -9606 90627 STARD13 RP11-81F11.1 ARHGAP37|DLC2|GT650|LINC00464 HGNC:19164|MIM:609866|Ensembl:ENSG00000133121|HPRD:11607|Vega:OTTHUMG00000016708 13 13q12-q13 StAR-related lipid transfer (START) domain containing 13 protein-coding STARD13 StAR-related lipid transfer (START) domain containing 13 O 46H23.2|DLC-2|Rho GTPase activating protein on chromosome 13q12|deleted in liver cancer 2 protein|long intergenic non-protein coding RNA 464|stAR-related lipid transfer protein 13 20121230 -9606 90632 LINC00473 - C6orf176|bA142J11.1 HGNC:21160 6 6q27 long intergenic non-protein coding RNA 473 miscRNA LINC00473 long intergenic non-protein coding RNA 473 O - 20121230 -9606 90634 N4BP2L1 RP11-298P3.2 CG018 HGNC:25037|Ensembl:ENSG00000139597|HPRD:12384|Vega:OTTHUMG00000016697 13 13q13.1 NEDD4 binding protein 2-like 1 protein-coding N4BP2L1 NEDD4 binding protein 2-like 1 O NEDD4-binding protein 2-like 1|hypothetical gene CG018 20121230 -9606 90637 ZFAND2A - AIRAP HGNC:28073|MIM:610699|Ensembl:ENSG00000178381|HPRD:14277|Vega:OTTHUMG00000119019 7 7p22.3 zinc finger, AN1-type domain 2A protein-coding ZFAND2A zinc finger, AN1-type domain 2A O AN1-type zinc finger protein 2A|arsenite inducible RNA associated protein 20121230 -9606 90639 COX19 - - HGNC:28074|MIM:610429|Ensembl:ENSG00000240230|Vega:OTTHUMG00000151476 7 7p22.3 cytochrome c oxidase assembly homolog 19 (S. cerevisiae) protein-coding COX19 cytochrome c oxidase assembly homolog 19 (S. cerevisiae) O COX19 cytochrome c oxidase assembly homolog|cytochrome c oxidase assembly protein COX19|hCOX19 20121230 -9606 90649 ZNF486 - KRBO2 HGNC:20807|Ensembl:ENSG00000256229|Vega:OTTHUMG00000179731 19 19p12 zinc finger protein 486 protein-coding ZNF486 zinc finger protein 486 O KRAB box only protein 2|KRAB domain only 2|KRAB domain only protein 2 20121230 -9606 90655 TGIF2LY - TGIFLY HGNC:18569|MIM:400025|Ensembl:ENSG00000176679|HPRD:18512|Vega:OTTHUMG00000036153 Y Yp11.2 TGFB-induced factor homeobox 2-like, Y-linked protein-coding TGIF2LY TGFB-induced factor homeobox 2-like, Y-linked O TGF-beta-induced transcription factor 2-like protein|TGFB-induced factor 2-like protein, Y-linked|TGFB-induced factor 2-like, Y-linked|TGIF-like on the Y|homeobox protein TGIF2LY 20121230 -9606 90665 TBL1Y - TBL1 HGNC:18502|MIM:400033|Ensembl:ENSG00000092377|HPRD:15962|Vega:OTTHUMG00000035299 Y Yp11.2 transducin (beta)-like 1, Y-linked protein-coding TBL1Y transducin (beta)-like 1, Y-linked O F-box-like/WD repeat-containing protein TBL1Y|transducin beta-like 1|transducin beta-like protein 1Y|transducin-beta-like protein 1, Y-linked 20121230 -9606 90668 LRRC16B - C14orf121|CARMIL3|crml-1 HGNC:20272|MIM:614716|Ensembl:ENSG00000186648|HPRD:11278|Vega:OTTHUMG00000172023 14 14q11.2 leucine rich repeat containing 16B protein-coding LRRC16B leucine rich repeat containing 16B O leucine-rich repeat-containing protein 16B 20121230 -9606 90673 PPP1R3E - - HGNC:14943 14 14q11.2 protein phosphatase 1, regulatory subunit 3E miscRNA PPP1R3E protein phosphatase 1, regulatory subunit 3E O - 20121230 -9606 90678 LRSAM1 UNQ6496/PRO21356 CMT2P|RIFLE|TAL HGNC:25135|MIM:610933|Ensembl:ENSG00000148356|HPRD:14325|Vega:OTTHUMG00000020701 9 9q33.3 leucine rich repeat and sterile alpha motif containing 1 protein-coding LRSAM1 leucine rich repeat and sterile alpha motif containing 1 O E3 ubiquitin-protein ligase LRSAM1|Tsg101-associated ligase 20121230 -9606 90693 CCDC126 UNQ786/PRO1605 - HGNC:22398|Ensembl:ENSG00000169193|HPRD:14278|Vega:OTTHUMG00000128461 7 7p15.3 coiled-coil domain containing 126 protein-coding CCDC126 coiled-coil domain containing 126 O coiled-coil domain-containing protein 126 20121230 -9606 90701 SEC11C - SEC11L3|SPC21|SPCS4C HGNC:23400|Ensembl:ENSG00000166562|HPRD:15310|Vega:OTTHUMG00000132762 18 18q21.32 SEC11 homolog C (S. cerevisiae) protein-coding SEC11C SEC11 homolog C (S. cerevisiae) O SEC11-like 3|SEC11-like protein 3|SPase 21 kDa subunit|microsomal signal peptidase 21 kDa subunit|signal peptidase complex catalytic subunit SEC11C 20121230 -9606 90736 FAM104B RP11-266I3.4 CXorf44 HGNC:25085|Ensembl:ENSG00000182518|HPRD:06457|Vega:OTTHUMG00000021646 X Xp11.21 family with sequence similarity 104, member B protein-coding FAM104B family with sequence similarity 104, member B O protein FAM104B 20121230 -9606 90737 PAGE5 RP11-382F24.4 CT16|CT16.1|CT16.2|GAGEE1|PAGE-5 HGNC:29992|Ensembl:ENSG00000158639|HPRD:06672|Vega:OTTHUMG00000021650 X Xp11.21 P antigen family, member 5 (prostate associated) protein-coding PAGE5 P antigen family, member 5 (prostate associated) O G antigen family E member 1|G antigen, family E, 1|cancer/testis antigen 16.1|cancer/testis antigen family 16, member 1|cancer/testis antigen family 16, member 2|prostate-associated gene 5 protein 20121230 -9606 90768 MGC45800 - - HPRD:14643 4 4q34.3 uncharacterized LOC90768 miscRNA - - - - 20121230 -9606 90780 PYGO2 PP7910 1190004M21Rik HGNC:30257|MIM:606903|Ensembl:ENSG00000163348|HPRD:06065|Vega:OTTHUMG00000037370 1 1q21.3 pygopus homolog 2 (Drosophila) protein-coding PYGO2 pygopus homolog 2 (Drosophila) O pygopus 2|pygopus homolog 2 20121230 -9606 90784 LOC90784 - - - 2 2p11.2 uncharacterized LOC90784 miscRNA - - - - 20121230 -9606 90799 CEP95 - CCDC45 HGNC:25141|Ensembl:ENSG00000258890|HPRD:11279|Vega:OTTHUMG00000179174 17 17q23.3 centrosomal protein 95kDa protein-coding CEP95 centrosomal protein 95kDa O centrosomal protein of 95 kDa|coiled-coil domain containing 45|coiled-coil domain-containing protein 45 20121230 -9606 90806 ANGEL2 - KIAA0759L HGNC:30534|Ensembl:ENSG00000174606|HPRD:14279|Vega:OTTHUMG00000036927 1 1q32.3 angel homolog 2 (Drosophila) protein-coding ANGEL2 angel homolog 2 (Drosophila) O protein angel homolog 2 20121230 -9606 90809 TMEM55B - C14orf9 HGNC:19299|MIM:609865|Ensembl:ENSG00000165782|HPRD:12660|Vega:OTTHUMG00000029545 14 14q11.2 transmembrane protein 55B protein-coding TMEM55B transmembrane protein 55B O PtdIns-4,5-P(2) 4-phosphatase type I|ptdIns-4,5-P2 4-Ptase I|type I phosphatidylinositol 4,5-bisphosphate 4-phosphatase 20121230 -9606 90826 PRMT10 - - HGNC:25099|Ensembl:ENSG00000164169|HPRD:14280|Vega:OTTHUMG00000161361 4 4q31.23 protein arginine methyltransferase 10 (putative) protein-coding PRMT10 protein arginine methyltransferase 10 (putative) O putative protein arginine N-methyltransferase 10 20121230 -9606 90827 ZNF479 - KR19 HGNC:23258|Ensembl:ENSG00000185177|Vega:OTTHUMG00000156682 7 7p11.2 zinc finger protein 479 protein-coding ZNF479 zinc finger protein 479 O HKr19|KRAB zinc finger protein KR19|zinc finger protein Kr19 20121230 -9606 90834 LOC90834 - - - 22 22q13.33 uncharacterized protein BC001742 miscRNA - - - - 20121230 -9606 90835 C16orf93 - - HGNC:28078|Ensembl:ENSG00000196118|HPRD:18705|Vega:OTTHUMG00000167926 16 16p11.2 chromosome 16 open reading frame 93 protein-coding C16orf93 chromosome 16 open reading frame 93 O coiled-coil domain-containing protein C16orf93 20121230 -9606 90843 TCEAL8 LL0XNC01-177E8.3 - HGNC:28683|Ensembl:ENSG00000180964|HPRD:06656|Vega:OTTHUMG00000022094 X Xq22.1 transcription elongation factor A (SII)-like 8 protein-coding TCEAL8 transcription elongation factor A (SII)-like 8 O TCEA-like protein 8|transcription elongation factor A protein-like 8|transcription elongation factor S-II protein-like 8 20121230 -9606 90850 ZNF598 - - HGNC:28079|Ensembl:ENSG00000167962|HPRD:11732|Vega:OTTHUMG00000176955 16 16p13.3 zinc finger protein 598 protein-coding ZNF598 zinc finger protein 598 O - 20121230 -9606 90853 SPOCD1 RP11-84A19.1 - HGNC:26338|Ensembl:ENSG00000134668|HPRD:08057|Vega:OTTHUMG00000003879 1 1p35.2 SPOC domain containing 1 protein-coding SPOCD1 SPOC domain containing 1 O SPOC domain-containing protein 1 20121230 -9606 90859 NT5C3P1 - UMPH1P HGNC:18530 4 4q26 5'-nucleotidase, cytosolic III pseudogene 1 pseudo NT5C3P1 5'-nucleotidase, cytosolic III pseudogene 1 O - 20121230 -9606 90861 HN1L LA16c-431H6.1 C16orf34|L11 HGNC:14137|Ensembl:ENSG00000206053|HPRD:12674|Vega:OTTHUMG00000047859 16 16p13.3 hematological and neurological expressed 1-like protein-coding HN1L hematological and neurological expressed 1-like O CRAMP_1 like|HN1 like|HN1-like protein|hematological and neurological expressed 1-like protein 20121230 -9606 90864 SPSB3 - C16orf31|SSB3 HGNC:30629|MIM:611659|Ensembl:ENSG00000162032|HPRD:18107|Vega:OTTHUMG00000176746 16 16p13.3 splA/ryanodine receptor domain and SOCS box containing 3 protein-coding SPSB3 splA/ryanodine receptor domain and SOCS box containing 3 O SPRY domain-containing SOCS box protein 3|SPRY domain-containing SOCS box protein SSB-3 20121230 -9606 90865 IL33 - C9orf26|DVS27|IL1F11|NF-HEV|NFEHEV|RP11-575C20.2 HGNC:16028|MIM:608678|Ensembl:ENSG00000137033|HPRD:12275|Vega:OTTHUMG00000019516 9 9p24.1 interleukin 33 protein-coding IL33 interleukin 33 O DVS27-related protein|IL-1F11|IL-33|interleukin-1 family member 11|interleukin-33|nuclear factor for high endothelial venules|nuclear factor from high endothelial venules 20121230 -9606 90871 C9orf123 - - HGNC:30536|Ensembl:ENSG00000137038|HPRD:12939|Vega:OTTHUMG00000019539 9 9p24.1 chromosome 9 open reading frame 123 protein-coding C9orf123 chromosome 9 open reading frame 123 O transmembrane protein C9orf123 20121230 -9606 90874 ZNF697 - - HGNC:32034|Ensembl:ENSG00000143067|Vega:OTTHUMG00000012962 1 1p12 zinc finger protein 697 protein-coding ZNF697 zinc finger protein 697 O - 20121230 -9606 90933 TRIM41 - RINCK HGNC:19013|MIM:610530|Ensembl:ENSG00000146063|HPRD:15558|Vega:OTTHUMG00000130965 5 5q35.3 tripartite motif containing 41 protein-coding TRIM41 tripartite motif containing 41 O E3 ubiquitin-protein ligase TRIM41|RING finger-interacting protein with C kinase|RING-finger protein that interacts with C kinase 20121230 -9606 90952 ESAM UNQ220/PRO246 W117m HGNC:17474|MIM:614281|Ensembl:ENSG00000149564|HPRD:13280|Vega:OTTHUMG00000151986 11 11q24.2 endothelial cell adhesion molecule protein-coding ESAM endothelial cell adhesion molecule O 2310008D05Rik|HUEL (C4orf1)-interacting protein|LP4791 protein|endothelial cell-selective adhesion molecule 20121230 -9606 90956 ADCK2 - AARF HGNC:19039|Ensembl:ENSG00000133597|HPRD:10631|Vega:OTTHUMG00000157409 7 7q34 aarF domain containing kinase 2 protein-coding ADCK2 aarF domain containing kinase 2 O putative ubiquinone biosynthesis protein AarF|uncharacterized aarF domain-containing protein kinase 2 20121230 -9606 90957 DHX57 - DDX57 HGNC:20086|Ensembl:ENSG00000163214|HPRD:09919|Vega:OTTHUMG00000102103 2 2p22.1 DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57 protein-coding DHX57 DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57 O DEAH box protein 57|DEAH-box RNA/DNA helicase AAM73547|putative ATP-dependent RNA helicase DHX57 20121230 -9606 90987 ZNF251 - - HGNC:13045|Ensembl:ENSG00000198169|Vega:OTTHUMG00000165189 8 8q24.3 zinc finger protein 251 protein-coding ZNF251 zinc finger protein 251 O - 20121230 -9606 90990 KIFC2 - - HGNC:29530|Ensembl:ENSG00000167702|HPRD:13916|Vega:OTTHUMG00000165133 8 8q24.3 kinesin family member C2 protein-coding KIFC2 kinesin family member C2 O kinesin-like protein KIFC2 20121230 -9606 90993 CREB3L1 PSEC0238 OASIS HGNC:18856|Ensembl:ENSG00000157613|HPRD:16751|Vega:OTTHUMG00000166423 11 11p11.2 cAMP responsive element binding protein 3-like 1 protein-coding CREB3L1 cAMP responsive element binding protein 3-like 1 O BBF-2 homolog|cAMP-responsive element-binding protein 3-like protein 1|cyclic AMP-responsive element-binding protein 3-like protein 1|old astrocyte specifically induced substance|old astrocyte specifically-induced substance 20121230 -9606 91010 FMNL3 - FHOD3|WBP-3|WBP3 HGNC:23698|Ensembl:ENSG00000161791|HPRD:17007|Vega:OTTHUMG00000169651 12 12q13.12 formin-like 3 protein-coding FMNL3 formin-like 3 O WW domain binding protein 3|WW domain-binding protein 3|formin homology 2 domain-containing protein 3|formin-like protein 3 20121230 -9606 91012 CERS5 - LASS5|Trh4 HGNC:23749|Ensembl:ENSG00000139624|HPRD:13963|Vega:OTTHUMG00000169819 12 12q13.12 ceramide synthase 5 protein-coding CERS5 ceramide synthase 5 O LAG1 homolog, ceramide synthase 5|LAG1 longevity assurance homolog 5 20121230 -9606 91039 DPP9 - DP9|DPLP9|DPRP-2|DPRP2 HGNC:18648|MIM:608258|Ensembl:ENSG00000142002|HPRD:07001 19 19p13.3 dipeptidyl-peptidase 9 protein-coding DPP9 dipeptidyl-peptidase 9 O DPP IX|dipeptidyl peptidase 9|dipeptidyl peptidase IV-related protein 2|dipeptidyl peptidase IV-related protein-2|dipeptidyl peptidase IX|dipeptidyl peptidase-like protein 9|dipeptidylpeptidase 9 20121230 -9606 91050 CCDC149 - - HGNC:25405|Ensembl:ENSG00000181982|HPRD:10908|Vega:OTTHUMG00000160308 4 4p15.2 coiled-coil domain containing 149 protein-coding CCDC149 coiled-coil domain containing 149 O coiled-coil domain-containing protein 149 20121230 -9606 91056 AP5B1 - AP-5|PP1030 HGNC:25104|MIM:614367|Ensembl:ENSG00000254470|HPRD:13223|Vega:OTTHUMG00000166593 11 11q13.1 adaptor-related protein complex 5, beta 1 subunit protein-coding AP5B1 adaptor-related protein complex 5, beta 1 subunit O AP-5 complex subunit beta|AP-5 complex subunit beta-1|beta5 20121230 -9606 91057 CCDC34 L15 NY-REN-41|RAMA3 HGNC:25079|MIM:612324|Ensembl:ENSG00000109881|HPRD:14868|Vega:OTTHUMG00000166211 11 11p14.1 coiled-coil domain containing 34 protein-coding CCDC34 coiled-coil domain containing 34 O NY-REN-41 antigen|coiled-coil domain-containing protein 34|renal carcinoma antigen NY-REN-41 20121230 -9606 91074 ANKRD30A RP11-20F24.1 NY-BR-1 HGNC:17234|MIM:610856|Ensembl:ENSG00000148513|HPRD:10125|Vega:OTTHUMG00000017968 10 10p11.21 ankyrin repeat domain 30A protein-coding ANKRD30A ankyrin repeat domain 30A O ankyrin repeat domain-containing protein 30A|breast cancer antigen NY-BR-1|serologically defined breast cancer antigen NY-BR-1 20121230 -9606 91107 TRIM47 - GOA|RNF100 HGNC:19020|MIM:611041|Ensembl:ENSG00000132481|HPRD:15564|Vega:OTTHUMG00000179916 17 17q25 tripartite motif containing 47 protein-coding TRIM47 tripartite motif containing 47 O RING finger protein 100|gene overexpressed in astrocytoma protein|tripartite motif-containing 47|tripartite motif-containing protein 47 20121230 -9606 91120 ZNF682 - BC39498_3 HGNC:28857|Ensembl:ENSG00000197124|HPRD:14282 19 19p12 zinc finger protein 682 protein-coding ZNF682 zinc finger protein 682 O - 20121230 -9606 91133 L3MBTL4 - HsT1031 HGNC:26677|Ensembl:ENSG00000154655|HPRD:08198|Vega:OTTHUMG00000178980 18 18p11.31 l(3)mbt-like 4 (Drosophila) protein-coding L3MBTL4 l(3)mbt-like 4 (Drosophila) O H-l(3)mbt-like protein 4|l(3)mbt-like protein 4|lethal(3)malignant brain tumor-like protein 4 20121230 -9606 91137 SLC25A46 - - HGNC:25198|MIM:610826|Ensembl:ENSG00000164209|HPRD:14283|Vega:OTTHUMG00000128794 5 5q22.1 solute carrier family 25, member 46 protein-coding SLC25A46 solute carrier family 25, member 46 O solute carrier family 25 member 46 20121230 -9606 91147 TMEM67 - JBTS6|MECKELIN|MKS3|NPHP11|TNEM67 HGNC:28396|MIM:609884|Ensembl:ENSG00000164953|HPRD:11324|Vega:OTTHUMG00000153119 8 8q22.1 transmembrane protein 67 protein-coding TMEM67 transmembrane protein 67 O Meckelin|meckel syndrome type 3 protein 20121230 -9606 91149 RAPGEF4-AS1 - - HGNC:28081 2 2q31.1 RAPGEF4 antisense RNA 1 miscRNA RAPGEF4-AS1 RAPGEF4 antisense RNA 1 O - 20121230 -9606 91151 TIGD7 - Sancho HGNC:18331|MIM:612969|Ensembl:ENSG00000140993|HPRD:11632|Vega:OTTHUMG00000129325 16 16p13.3 tigger transposable element derived 7 protein-coding TIGD7 tigger transposable element derived 7 O tigger transposable element-derived protein 7 20121230 -9606 91156 IGFN1 - EEF1A2BP1 HGNC:24607|Ensembl:ENSG00000163395|HPRD:16812 1 1q32.1 immunoglobulin-like and fibronectin type III domain containing 1 protein-coding IGFN1 immunoglobulin-like and fibronectin type III domain containing 1 O EEF1A2-binding protein 1|KY-interacting protein 1|eEF1A2 binding protein|immunoglobulin-like and fibronectin type III domain-containing protein 1 20121230 -9606 91179 SCARF2 - NSR1|SREC-II|SREC2|SRECRP-1|VDEGS HGNC:19869|MIM:613619|Ensembl:ENSG00000244486|HPRD:15299|Vega:OTTHUMG00000150779 22 22q11.21 scavenger receptor class F, member 2 protein-coding SCARF2 scavenger receptor class F, member 2 O scavenger receptor class F member 2|scavenger receptor expressed by endothelial cells 2 protein 20121230 -9606 91181 NUP210L - RP11-144B19.1 HGNC:29915|Ensembl:ENSG00000143552|HPRD:14852|Vega:OTTHUMG00000035852 1 1q21.3 nucleoporin 210kDa-like protein-coding NUP210L nucleoporin 210kDa-like O nuclear pore membrane glycoprotein 210-like|nuclear pore membrane glycoprotein 210-like (LOC91181)|nucleoporin Nup210-like 20121230 -9606 91219 FAM108A6P - FAM108A6 HGNC:34043 22 22q11.22 family with sequence similarity 108, member A1 pseudogene pseudo FAM108A6P family with sequence similarity 108, member A6, pseudogene O - 20121230 -9606 91227 GGTLC2 - GGTL4 HGNC:18596|MIM:612339|Ensembl:ENSG00000100121|HPRD:09971|Vega:OTTHUMG00000151177 22 22q11.22 gamma-glutamyltransferase light chain 2 protein-coding GGTLC2 gamma-glutamyltransferase light chain 2 O gamma-glutamyltransferase-like 4|gamma-glutamyltransferase-like protein 4 20121230 -9606 91252 SLC39A13 - - HGNC:20859|MIM:608735|Ensembl:ENSG00000165915|Vega:OTTHUMG00000166890 11 11p11.2 solute carrier family 39 (zinc transporter), member 13 protein-coding SLC39A13 solute carrier family 39 (zinc transporter), member 13 O LIV-1 subfamily of ZIP zinc transporter 9|LZT-Hs9|solute carrier family 39 (metal ion transporter), member 13|zinc transporter ZIP13|zrt- and Irt-like protein 13 20121230 -9606 91272 BOD1 - FAM44B HGNC:25114|Ensembl:ENSG00000145919|HPRD:13309|Vega:OTTHUMG00000130540 5 5q35.2 biorientation of chromosomes in cell division 1 protein-coding BOD1 biorientation of chromosomes in cell division 1 O biorientation defective 1|biorientation of chromosomes in cell division protein 1|family with sequence similarity 44, member B 20121230 -9606 91283 MSANTD3 L8 C9orf30 HGNC:23370|Ensembl:ENSG00000066697|HPRD:14459|Vega:OTTHUMG00000020365 9 9q31.1 Myb/SANT-like DNA-binding domain containing 3 protein-coding MSANTD3 Myb/SANT-like DNA-binding domain containing 3 O UPF0439 protein C9orf30|myb/SANT-like DNA-binding domain-containing protein 3 20121230 -9606 91289 LMF2 - TMEM112B|TMEM153 HGNC:25096|Ensembl:ENSG00000100258|HPRD:12519|Vega:OTTHUMG00000150206 22 22q13.33 lipase maturation factor 2 protein-coding LMF2 lipase maturation factor 2 O transmembrane protein 112B|transmembrane protein 153 20121230 -9606 91298 C12orf29 - - HGNC:25322|Ensembl:ENSG00000133641|HPRD:13199|Vega:OTTHUMG00000169870 12 12q21.32 chromosome 12 open reading frame 29 protein-coding C12orf29 chromosome 12 open reading frame 29 O uncharacterized protein C12orf29 20121230 -9606 91300 R3HDM4 - C19orf22 HGNC:28270|Ensembl:ENSG00000198858|HPRD:16625|Vega:OTTHUMG00000181899 19 19p13.3 R3H domain containing 4 protein-coding R3HDM4 R3H domain containing 4 O R3H domain-containing protein 4|R3H domain-containing protein C19orf22 20121230 -9606 91304 C19orf6 - ASBABP1|MBRL|MEMBRALIN|R32184_3 HGNC:17039|MIM:611011|Ensembl:ENSG00000182087|HPRD:12710|Vega:OTTHUMG00000181905 19 19p13.3 chromosome 19 open reading frame 6 protein-coding C19orf6 chromosome 19 open reading frame 6 O aspecific BCL2 ARE-binding protein 1|membralin 20121230 -9606 91316 GUSBP11 - - HGNC:42325 22 22q11.23 glucuronidase, beta pseudogene 11 pseudo GUSBP11 glucuronidase, beta pseudogene 11 O - 20121230 -9606 91319 DERL3 - C22orf14|IZP6|LLN2|derlin-3 HGNC:14236|MIM:610305|Ensembl:ENSG00000099958|HPRD:13139|Vega:OTTHUMG00000150743 22 22q11.23 derlin 3 protein-coding DERL3 derlin 3 O DERtrin 3|DERtrin-3|Der1-like domain family, member 3|degradation in endoplasmic reticulum protein 3|der1-like protein 3|derlin-3 20121230 -9606 91351 DDX60L - - HGNC:26429|Ensembl:ENSG00000181381|Vega:OTTHUMG00000161412 4 4q32.3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 60-like protein-coding DDX60L DEAD (Asp-Glu-Ala-Asp) box polypeptide 60-like O DEAD box protein 60-like|probable ATP-dependent RNA helicase DDX60-like 20121230 -9606 91353 IGLL3P CTA-246H3.1 16.1|IGLL3 HGNC:5872|HPRD:18481 22 22q11.23 immunoglobulin lambda-like polypeptide 3, pseudogene pseudo IGLL3P immunoglobulin lambda-like polypeptide 3, pseudogene O - 20121230 -9606 91355 LRP5L CTA-246H3.10-004 - HGNC:25323|Ensembl:ENSG00000100068|HPRD:13200|Vega:OTTHUMG00000150900 22 22q11.23 low density lipoprotein receptor-related protein 5-like protein-coding LRP5L low density lipoprotein receptor-related protein 5-like O LRP-5-like|low-density lipoprotein receptor-related protein 5-like protein 20121230 -9606 91368 CDKN2AIPNL - - HGNC:30545|Ensembl:ENSG00000237190|HPRD:14430|Vega:OTTHUMG00000129123 5 5q31.1 CDKN2A interacting protein N-terminal like protein-coding CDKN2AIPNL CDKN2A interacting protein N-terminal like O CDKN2A-interacting protein N-terminal-like protein|CDKN2AIP N-terminal-like protein 20121230 -9606 91369 ANKRD40 - - HGNC:28233|Ensembl:ENSG00000154945|HPRD:17502|Vega:OTTHUMG00000162255 17 17q21.33 ankyrin repeat domain 40 protein-coding ANKRD40 ankyrin repeat domain 40 O ankyrin repeat domain-containing protein 40 20121230 -9606 91370 MGC20647 - - - 22 22q12.1 uncharacterized protein MGC20647 unknown - - - - 20120710 -9606 91373 UAP1L1 RP11-229P13.18-004 RP11-229P13.18 HGNC:28082|Ensembl:ENSG00000197355|HPRD:15596|Vega:OTTHUMG00000020962 9 9q34.3 UDP-N-acteylglucosamine pyrophosphorylase 1-like 1 protein-coding UAP1L1 UDP-N-acteylglucosamine pyrophosphorylase 1-like 1 O UDP-N-acetylhexosamine pyrophosphorylase-like protein 1 20121230 -9606 91380 SNORD107 - HBII-436 HGNC:32771 15 15q11.2 small nucleolar RNA, C/D box 107 snoRNA SNORD107 small nucleolar RNA, C/D box 107 O - 20121230 -9606 91392 ZNF502 - - HGNC:23718|Ensembl:ENSG00000196653|HPRD:15810|Vega:OTTHUMG00000133086 3 3p21.31 zinc finger protein 502 protein-coding ZNF502 zinc finger protein 502 O - 20121230 -9606 91404 SESTD1 - SOLO HGNC:18379|Ensembl:ENSG00000187231|HPRD:11549|Vega:OTTHUMG00000154554 2 2q31.2 SEC14 and spectrin domains 1 protein-coding SESTD1 SEC14 and spectrin domains 1 O SEC14 domain and spectrin repeat-containing protein 1|huntingtin-interacting protein-like protein|protein Solo 20121230 -9606 91405 PLEKHA3P1 - PLEKHA3P HGNC:19648 19 19q13.2 pleckstrin homology domain containing, family A member 3 pseudogene 1 pseudo PLEKHA3P1 pleckstrin homology domain containing, family A member 3 pseudogene 1 O - 20121230 -9606 91408 BTF3L4 RP4-800M22.5 - HGNC:30547|Ensembl:ENSG00000134717|HPRD:17521|Vega:OTTHUMG00000008960 1 1p32.3 basic transcription factor 3-like 4 protein-coding BTF3L4 basic transcription factor 3-like 4 O transcription factor BTF3 homolog 4 20121230 -9606 91409 CCDC74B - - HGNC:25267|Ensembl:ENSG00000152076|HPRD:08534|Vega:OTTHUMG00000131629 2 2q21.1 coiled-coil domain containing 74B protein-coding CCDC74B coiled-coil domain containing 74B O coiled-coil domain-containing protein 74B 20121230 -9606 91419 XRCC6BP1 - KUB3 HGNC:29452|Ensembl:ENSG00000166896|HPRD:17256|Vega:OTTHUMG00000170493 12 12q14.1 XRCC6 binding protein 1 protein-coding XRCC6BP1 XRCC6 binding protein 1 O Ku70 binding protein 3|Ku70-binding protein 3|XRCC6-binding protein 1|mitochondrial inner membrane protease ATP23 homolog 20121230 -9606 91433 RCCD1 - - HGNC:30457|Ensembl:ENSG00000166965|HPRD:18706|Vega:OTTHUMG00000171684 15 15q26.1 RCC1 domain containing 1 protein-coding RCCD1 RCC1 domain containing 1 O RCC1 domain-containing protein 1 20121230 -9606 91442 C19orf40 - FAAP24 HGNC:28467|MIM:610884|Ensembl:ENSG00000131944|HPRD:14547|Vega:OTTHUMG00000180339 19 19q13.11 chromosome 19 open reading frame 40 protein-coding C19orf40 chromosome 19 open reading frame 40 O Fanconi anemia-associated protein of 24 kDa|Fanconi anemia-associated protein, 24 kDa 20121230 -9606 91445 RNF185 - - HGNC:26783|Ensembl:ENSG00000138942|HPRD:08790|Vega:OTTHUMG00000151253 22 22q12.2 ring finger protein 185 protein-coding RNF185 ring finger protein 185 O BSK65-MONO1|BSK65-MONO2|BSK65-PANC1|BSK65-PANC2|BSK65-TEST1|BSK65-TEST2|BSK65-TEST3|E3 ubiquitin-protein ligase RNF185 20121230 -9606 91450 LOC91450 - - - 15 15q24.3 uncharacterized LOC91450 miscRNA - - - - 20121230 -9606 91452 ACBD5 RP11-85G18.5 - HGNC:23338|Ensembl:ENSG00000107897|HPRD:12415|Vega:OTTHUMG00000017854 10 10p12.1 acyl-CoA binding domain containing 5 protein-coding ACBD5 acyl-CoA binding domain containing 5 O acyl-CoA-binding domain-containing protein 5|acyl-Coenzyme A binding domain containing 5|endozepine-related protein|membrane-associated diazepam binding inhibitor 20121230 -9606 91461 PKDCC - SGK493|Vlk HGNC:25123|MIM:614150|Ensembl:ENSG00000162878|HPRD:18707|Vega:OTTHUMG00000152303 2 2p21 protein kinase domain containing, cytoplasmic protein-coding PKDCC protein kinase domain containing, cytoplasmic O protein kinase domain containing, cytoplasmic homolog|protein kinase domain-containing protein, cytoplasmic|protein kinase-like protein SgK493|sugen kinase 493|vertebrate lonesome kinase 20121230 -9606 91464 ISX - Pix-1|RAXLX HGNC:28084|MIM:612019|Ensembl:ENSG00000175329|HPRD:17957|Vega:OTTHUMG00000150962 22 22q12.3 intestine-specific homeobox protein-coding ISX intestine-specific homeobox O RAX-like homeobox|pancreas-intestine homeodomain transcription factor 20121230 -9606 91522 COL23A1 - - HGNC:22990|MIM:610043|Ensembl:ENSG00000050767|HPRD:16733|Vega:OTTHUMG00000130890 5 5q35.3 collagen, type XXIII, alpha 1 protein-coding COL23A1 collagen, type XXIII, alpha 1 O collagen alpha-1(XXIII) chain|procollagen, type XXIII, alpha 1 20121230 -9606 91523 PCED1B - FAM113B HGNC:28255|Ensembl:ENSG00000179715|HPRD:17513|Vega:OTTHUMG00000169617 12 12q13.11 PC-esterase domain containing 1B protein-coding PCED1B PC-esterase domain containing 1B O PC-esterase domain-containing protein 1B|family with sequence similarity 113, member B|protein FAM113B 20121230 -9606 91526 ANKRD44 - PP6-ARS-B HGNC:25259|Ensembl:ENSG00000065413|HPRD:14284|Vega:OTTHUMG00000154411 2 2q33.1 ankyrin repeat domain 44 protein-coding ANKRD44 ankyrin repeat domain 44 O ankyrin repeat domain-containing protein 44|protein phosphatase 6 ankyrin repeat subunit B|serine/threonine-protein phosphatase 6 regulatory ankyrin repeat subunit B|serine/threonine-protein phosphatase 6 regulatory subunit ARS-B 20121230 -9606 91543 RSAD2 - 2510004L01Rik|cig33|cig5|vig1 HGNC:30908|MIM:607810|Ensembl:ENSG00000134321|HPRD:07423|Vega:OTTHUMG00000090352 2 2p25.2 radical S-adenosyl methionine domain containing 2 protein-coding RSAD2 radical S-adenosyl methionine domain containing 2 O cytomegalovirus-induced gene 5 protein|radical S-adenosyl methionine domain-containing protein 2|viperin|virus inhibitory protein, endoplasmic reticulum-associated, interferon-inducible 20121230 -9606 91544 UBXN11 PP2243 COA-1|SOC|SOCI|UBXD5 HGNC:30600|MIM:609151|Ensembl:ENSG00000158062|HPRD:10245|Vega:OTTHUMG00000003382 1 1p36.11 UBX domain protein 11 protein-coding UBXN11 UBX domain protein 11 O UBX domain-containing protein 11|UBX domain-containing protein 5|colorectal tumor-associated antigen COA-1|colorectal tumor-associated antigen-1|socius 20121230 -9606 91548 LOC91548 - - - 1 1q32.3 uncharacterized LOC91548 unknown - - - - 20120508 -9606 91561 RPS2P40 hCG_1992539 RPS2_17_1125 HGNC:35541 11 11p15.1 ribosomal protein S2 pseudogene 40 pseudo RPS2P40 ribosomal protein S2 pseudogene 40 O - 20121230 -9606 91574 C12orf65 My030 COXPD7 HGNC:26784|MIM:613541|Ensembl:ENSG00000130921|HPRD:08791|Vega:OTTHUMG00000168852 12 12q24.31 chromosome 12 open reading frame 65 protein-coding C12orf65 chromosome 12 open reading frame 65 O probable peptide chain release factor C12orf65, mitochondrial 20121230 -9606 91582 RPS19BP1 RP5-1104E15.4 AROS|S19BP|dJ1104E15.4 HGNC:28749|MIM:610225|Ensembl:ENSG00000187051|HPRD:14674|Vega:OTTHUMG00000151101 22 22q13.1 ribosomal protein S19 binding protein 1 protein-coding RPS19BP1 ribosomal protein S19 binding protein 1 O 40S ribosomal protein S19-binding protein 1|RPS19-binding protein 1|active regulator of SIRT1|homolog of mouse S19 binding protein 20121230 -9606 91584 PLXNA4 tcag7.1291 FAYV2820|PLEXA4|PLXNA4A|PLXNA4B|PRO34003 HGNC:9102|MIM:604280|Ensembl:ENSG00000221866|HPRD:10901|Vega:OTTHUMG00000155108 7 7q32.3 plexin A4 protein-coding PLXNA4 plexin A4 O plexin-A4 20121230 -9606 91603 ZNF830 - CCDC16|OMCG1|SEL13 HGNC:28291|Ensembl:ENSG00000198783|HPRD:14469|Vega:OTTHUMG00000179771 17 17q12 zinc finger protein 830 protein-coding ZNF830 zinc finger protein 830 O coiled-coil domain containing 16|coiled-coil domain-containing protein 16|hypothetical protein MGC20398|sel-13 suppressor of lin-12 homolog 20121230 -9606 91607 SLFN11 - SLFN8/9 HGNC:26633|MIM:614953|Ensembl:ENSG00000172716|HPRD:08178|Vega:OTTHUMG00000132948 17 17q12 schlafen family member 11 protein-coding SLFN11 schlafen family member 11 O - 20121230 -9606 91608 RASL10B - RRP17|VTS58635 HGNC:30295|MIM:612128|Ensembl:ENSG00000141150|HPRD:15215|Vega:OTTHUMG00000132954 17 17q12 RAS-like, family 10, member B protein-coding RASL10B RAS-like, family 10, member B O Ras-related protein 17|ras-like protein VTS58635|ras-like protein family member 10B 20121230 -9606 91612 CHURC1 My015 C14orf52|chch HGNC:20099|MIM:608577|Ensembl:ENSG00000258289|HPRD:12262|Vega:OTTHUMG00000170218 14 14q23.3 churchill domain containing 1 protein-coding CHURC1 churchill domain containing 1 O protein Churchill 20121230 -9606 91614 DEPDC7 - TR2|dJ85M6.4 HGNC:29899|MIM:612294|Ensembl:ENSG00000121690|HPRD:11280|Vega:OTTHUMG00000166242 11 11p13 DEP domain containing 7 protein-coding DEPDC7 DEP domain containing 7 O DEP domain-containing protein 7|dJ85M6.4 (novel 58.3 KDA protein)|novel 58.3 KDA protein 20121230 -9606 91624 NEXN - CMH20|NELIN HGNC:29557|MIM:613121|Ensembl:ENSG00000162614|HPRD:11388|Vega:OTTHUMG00000040533 1 1p31.1 nexilin (F actin binding protein) protein-coding NEXN nexilin (F actin binding protein) O nexilin 20121230 -9606 91646 TDRD12 - ECAT8 HGNC:25044|Ensembl:ENSG00000173809|Vega:OTTHUMG00000177230 19 19q13.11 tudor domain containing 12 protein-coding TDRD12 tudor domain containing 12 O ES cell associated transcript 8|ES cell-associated transcript 8 protein|tudor domain-containing protein 12 20121230 -9606 91647 ATPAF2 LP3663 ATP12|ATP12p|MC5DN1 HGNC:18802|MIM:608918|Ensembl:ENSG00000171953|HPRD:10599|Vega:OTTHUMG00000059354 17 17p11.2 ATP synthase mitochondrial F1 complex assembly factor 2 protein-coding ATPAF2 ATP synthase mitochondrial F1 complex assembly factor 2 O ATP12 homolog 20121230 -9606 91653 BOC UNQ604/PRO1190 CDON2 HGNC:17173|MIM:608708|Ensembl:ENSG00000144857|Vega:OTTHUMG00000159305 3 3q13.2 BOC cell adhesion associated, oncogene regulated protein-coding BOC BOC cell adhesion associated, oncogene regulated O Boc homolog|brother of CDO|brother of CDON|cell adhesion associated, oncogene regulated 2 20121230 -9606 91661 ZNF765 - - HGNC:25092|Ensembl:ENSG00000196417|HPRD:14285|Vega:OTTHUMG00000163079 19 19q13.42 zinc finger protein 765 protein-coding ZNF765 zinc finger protein 765 O - 20121230 -9606 91662 NLRP12 - CLR19.3|FCAS2|NALP12|PAN6|PYPAF7|RNO|RNO2 HGNC:22938|MIM:609648|Ensembl:ENSG00000142405|HPRD:14803|Vega:OTTHUMG00000060776 19 19q13.42 NLR family, pyrin domain containing 12 protein-coding NLRP12 NLR family, pyrin domain containing 12 O NACHT, LRR and PYD containing protein 12|NACHT, LRR and PYD domains-containing protein 12|NACHT, leucine rich repeat and PYD containing 12|PYRIN-containing APAF1-like protein 7|monarch 1|monarch-1|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 12|regulated by nitric oxide 20121230 -9606 91663 MYADM UNQ553/PRO1110 SB135 HGNC:7544|MIM:609959|Ensembl:ENSG00000179820|HPRD:14792|Vega:OTTHUMG00000060775 19 19q13.42 myeloid-associated differentiation marker protein-coding MYADM myeloid-associated differentiation marker O myeloid upregulated protein 20121230 -9606 91664 ZNF845 - - HGNC:25112|Ensembl:ENSG00000213799 19 19q13.42 zinc finger protein 845 protein-coding ZNF845 zinc finger protein 845 O - 20121230 -9606 91683 SYT12 - SYT11|sytXII HGNC:18381|MIM:606436|Ensembl:ENSG00000173227|HPRD:07337|Vega:OTTHUMG00000167101 11 11q13.2 synaptotagmin XII protein-coding SYT12 synaptotagmin XII O synaptotagmin-12|synaptotagmin-XII 20121230 -9606 91687 CENPL - C1orf155|CENP-L|RP3-383J4.1|dJ383J4.3 HGNC:17879|MIM:611503|Ensembl:ENSG00000120334|HPRD:15909|Vega:OTTHUMG00000034802 1 1q25.1 centromere protein L protein-coding CENPL centromere protein L O interphase centromere complex protein 33 20121230 -9606 91689 C22orf32 - DDDD|dJ186O1.1 HGNC:25055|Ensembl:ENSG00000183172|HPRD:12385|Vega:OTTHUMG00000151286 22 22q13.2 chromosome 22 open reading frame 32 protein-coding C22orf32 chromosome 22 open reading frame 32 O UPF0466 protein C22orf32, mitochondrial 20121230 -9606 91694 LONRF1 - RNF191 HGNC:26302|Ensembl:ENSG00000154359|HPRD:08674|Vega:OTTHUMG00000165475 8 8p23.1 LON peptidase N-terminal domain and ring finger 1 protein-coding LONRF1 LON peptidase N-terminal domain and ring finger 1 O LON peptidase N-terminal domain and RING finger protein 1|RING finger protein 191 20121230 -9606 91695 RRP7B - dJ222E13.2 HGNC:30454 22 22q13.2 ribosomal RNA processing 7 homolog B (S. cerevisiae) pseudo RRP7B ribosomal RNA processing 7 homolog B (S. cerevisiae) O - 20121230 -9606 91703 ACY3 - ACY-3|HCBP1 HGNC:24104|MIM:614413|Ensembl:ENSG00000132744|HPRD:12422|Vega:OTTHUMG00000167283 11 11q13.2 aspartoacylase (aminocyclase) 3 protein-coding ACY3 aspartoacylase (aminocyclase) 3 O HCV core-binding protein 1|acylase III|aminoacylase-3|aspartoacylase-2|hepatitis C virus core-binding protein 1 20121230 -9606 91734 IDI2 - IPPI2 HGNC:23487|Ensembl:ENSG00000148377|HPRD:17127|Vega:OTTHUMG00000017537 10 10p15.3 isopentenyl-diphosphate delta isomerase 2 protein-coding IDI2 isopentenyl-diphosphate delta isomerase 2 O IPP isomerase 2|diphosphate dimethylallyl diphosphate isomerase 2|isopentenyl pyrophosphate isomerase 2|isopentenyl-diphosphate Delta-isomerase 2 20121230 -9606 91746 YTHDC1 - YT521|YT521-B HGNC:30626|Ensembl:ENSG00000083896|HPRD:11689|Vega:OTTHUMG00000129306 4 4q13.2 YTH domain containing 1 protein-coding YTHDC1 YTH domain containing 1 O YTH domain-containing protein 1|putative splicing factor YT521|splicing factor YT521-B 20121230 -9606 91748 ELMSAN1 - C14orf117|C14orf43|LSR68|c14_5541 HGNC:19853|Ensembl:ENSG00000156030|HPRD:12648|Vega:OTTHUMG00000150359 14 14q24.3 ELM2 and Myb/SANT-like domain containing 1 protein-coding ELMSAN1 ELM2 and Myb/SANT-like domain containing 1 O uncharacterized protein C14orf43 20121230 -9606 91749 KIAA1919 RP5-1112D6.6 MFSD4B|NaGLT1 HGNC:21053|Ensembl:ENSG00000173214|HPRD:13904|Vega:OTTHUMG00000015372 6 6q22 KIAA1919 protein-coding KIAA1919 KIAA1919 O sodium-dependent glucose transporter 1 20121230 -9606 91750 LIN52 - C14orf46|c14_5549 HGNC:19856|Ensembl:ENSG00000205659|HPRD:18708|Vega:OTTHUMG00000171204 14 14q24.3 lin-52 homolog (C. elegans) protein-coding LIN52 lin-52 homolog (C. elegans) O protein lin-52 homolog 20121230 -9606 91752 ZNF804A - C2orf10 HGNC:21711|MIM:612282|Ensembl:ENSG00000170396|HPRD:12804|Vega:OTTHUMG00000132625 2 2q32.1 zinc finger protein 804A protein-coding ZNF804A zinc finger protein 804A O - 20121230 -9606 91754 NEK9 - NERCC|NERCC1|Nek8 HGNC:18591|MIM:609798|Ensembl:ENSG00000119638|HPRD:11386|Vega:OTTHUMG00000171768 14 14q24.3 NIMA-related kinase 9 protein-coding NEK9 NIMA-related kinase 9 O NIMA (never in mitosis gene a)- related kinase 9|NIMA-related kinase Nek8|nercc1 kinase|never in mitosis A-related kinase 9|nimA-related kinase 8|nimA-related protein kinase 9|serine/threonine-protein kinase Nek9 20121230 -9606 91768 CABLES1 - CABL1|CABLES|HsT2563|IK3-1 HGNC:25097|MIM:609194|Ensembl:ENSG00000134508|HPRD:16461|Vega:OTTHUMG00000179186 18 18q11.2 Cdk5 and Abl enzyme substrate 1 protein-coding CABLES1 Cdk5 and Abl enzyme substrate 1 O CDK5 and ABL1 enzyme substrate 1|interactor with CDK3 1 20121230 -9606 91775 NXPE3 MSTP115 FAM55C|MST115 HGNC:28238|Ensembl:ENSG00000144815|HPRD:10073|Vega:OTTHUMG00000159179 3 3q12.3 neurexophilin and PC-esterase domain family, member 3 protein-coding NXPE3 neurexophilin and PC-esterase domain family, member 3 O NXPE family member 3|family with sequence similarity 55, member C|protein FAM55C 20121230 -9606 91782 CHMP7 - - HGNC:28439|MIM:611130|Ensembl:ENSG00000147457|HPRD:14534|Vega:OTTHUMG00000131785 8 8p21.3 charged multivesicular body protein 7 protein-coding CHMP7 charged multivesicular body protein 7 O CHMP family, member 7|chromatin-modifying protein 7 20121230 -9606 91801 ALKBH8 - ABH8 HGNC:25189|MIM:613306|Ensembl:ENSG00000137760|HPRD:14287|Vega:OTTHUMG00000157008 11 11q22.3 alkB, alkylation repair homolog 8 (E. coli) protein-coding ALKBH8 alkB, alkylation repair homolog 8 (E. coli) O AlkB homologue 8|S-adenosyl-L-methionine-dependent tRNA methyltransferase ABH8|alkylated DNA repair protein alkB homolog 8|probable alpha-ketoglutarate-dependent dioxygenase ABH8|tRNA (carboxymethyluridine(34)-5-O)-methyltransferase ABH8 20121230 -9606 91807 MYLK3 - MLCK|MLCK2|caMLCK HGNC:29826|MIM:612147|Ensembl:ENSG00000140795|HPRD:11281|Vega:OTTHUMG00000132543 16 16q11.2 myosin light chain kinase 3 protein-coding MYLK3 myosin light chain kinase 3 O MLC kinase|cardiac-MLCK|cardiac-MyBP-C associated Ca/CaM kinase|cardiac-MyBP-C-associated Ca/CaM kinase|putative myosin light chain kinase 3 20121230 -9606 91828 EXOC3L4 - C14orf73 HGNC:20120|Ensembl:ENSG00000205436|Vega:OTTHUMG00000171888 14 14q32.32 exocyst complex component 3-like 4 protein-coding EXOC3L4 exocyst complex component 3-like 4 O SEC6-like protein C14orf73|exocyst complex component 3-like protein 4 20121230 -9606 91833 WDR20 - DMR HGNC:19667|Ensembl:ENSG00000140153|HPRD:11679|Vega:OTTHUMG00000171753 14 14q32.31 WD repeat domain 20 protein-coding WDR20 WD repeat domain 20 O WD repeat-containing protein 20 20121230 -9606 91851 CHRDL1 RP6-141H5.1 CHL|NRLN1|VOPT|dA141H5.1 HGNC:29861|MIM:300350|Ensembl:ENSG00000101938|HPRD:02285|Vega:OTTHUMG00000022199 X Xq23 chordin-like 1 protein-coding CHRDL1 chordin-like 1 O chordin-like protein 1|neuralin 1|neuralin-1|neurogenesin-1|ventroptin 20121230 -9606 91860 CALML4 - NY-BR-20 HGNC:18445|Ensembl:ENSG00000129007|HPRD:12998|Vega:OTTHUMG00000133287 15 15q23 calmodulin-like 4 protein-coding CALML4 calmodulin-like 4 O calmodulin-like protein 4|serologically defined breast cancer antigen NY-BR-20 20121230 -9606 91862 MARVELD3 - MARVD3|MRVLDC3 HGNC:30525|MIM:614094|Ensembl:ENSG00000140832|HPRD:14365|Vega:OTTHUMG00000137591 16 16q22.2 MARVEL domain containing 3 protein-coding MARVELD3 MARVEL domain containing 3 O MARVEL (membrane-associating) domain containing 3|MARVEL domain-containing protein 3 20121230 -9606 91869 RFT1 - CDG1N HGNC:30220|MIM:611908|Ensembl:ENSG00000163933|HPRD:15239|Vega:OTTHUMG00000074035 3 3p21.1 RFT1 homolog (S. cerevisiae) protein-coding RFT1 RFT1 homolog (S. cerevisiae) O RFT1, requiring fifty three 1 homolog|protein RFT1 homolog|putative endoplasmic reticulum multispan transmembrane protein 20121230 -9606 91875 TTC5 - Strap HGNC:19274|Ensembl:ENSG00000136319|HPRD:15584|Vega:OTTHUMG00000029506 14 14q11.2 tetratricopeptide repeat domain 5 protein-coding TTC5 tetratricopeptide repeat domain 5 O TPR repeat protein 5|stress-responsive activator of p300|tetratricopeptide repeat protein 5 20121230 -9606 91893 FDXACB1 hCG_2033039 - HGNC:25110|Ensembl:ENSG00000255561|Vega:OTTHUMG00000166795 11 11q23.1 ferredoxin-fold anticodon binding domain containing 1 protein-coding FDXACB1 ferredoxin-fold anticodon binding domain containing 1 O FDX-ACDB domain-containing protein 1|ferredoxin-fold anticodon-binding domain-containing protein 1|hypothetical protein BC006136 20121230 -9606 91894 C11orf52 - - HGNC:30531|Ensembl:ENSG00000149300|HPRD:14444|Vega:OTTHUMG00000166888 11 11q23.1 chromosome 11 open reading frame 52 protein-coding C11orf52 chromosome 11 open reading frame 52 O uncharacterized protein C11orf52 20121230 -9606 91937 TIMD4 - SMUCKLER|TIM4 HGNC:25132|MIM:610096|Ensembl:ENSG00000145850|HPRD:15508|Vega:OTTHUMG00000130244 5 5q33.3 T-cell immunoglobulin and mucin domain containing 4 protein-coding TIMD4 T-cell immunoglobulin and mucin domain containing 4 O T-cell immunoglobulin and mucin domain-containing protein 4|T-cell membrane protein 4|TIM-4|TIMD-4 20121230 -9606 91942 NDUFAF2 - B17.2L|MMTN|NDUFA12L|mimitin HGNC:28086|MIM:609653|Ensembl:ENSG00000164182|HPRD:14288|Vega:OTTHUMG00000131221 5 5q12.1 NADH dehydrogenase (ubiquinone) complex I, assembly factor 2 protein-coding NDUFAF2 NADH dehydrogenase (ubiquinone) complex I, assembly factor 2 O Myc-induced mitochondrial protein|NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 2|NDUFA12-like protein|mimitin, mitochondrial 20121230 -9606 91947 ARRDC4 - - HGNC:28087|Ensembl:ENSG00000140450|HPRD:10664|Vega:OTTHUMG00000149849 15 15q26.3 arrestin domain containing 4 protein-coding ARRDC4 arrestin domain containing 4 O arrestin domain-containing protein 4 20121230 -9606 91948 LOC91948 - - - 15 15q26.2 uncharacterized LOC91948 miscRNA - - - - 20121230 -9606 91949 COG7 UNQ3082/PRO10013 CDG2E HGNC:18622|MIM:606978|Ensembl:ENSG00000168434|HPRD:07373|Vega:OTTHUMG00000094807 16 16p12.2 component of oligomeric golgi complex 7 protein-coding COG7 component of oligomeric golgi complex 7 O COG complex subunit 7|conserved oligomeric Golgi complex subunit 7 20121230 -9606 91966 CXorf40A XX-FW81066F1.1 CXorf40|EOLA1 HGNC:28089|Ensembl:ENSG00000197620|HPRD:06625|Vega:OTTHUMG00000022622 X Xq28 chromosome X open reading frame 40A protein-coding CXorf40A chromosome X open reading frame 40A O endothelial-overexpressed lipopolysaccharide-associated factor 1|protein CXorf40A 20121230 -9606 91975 ZNF300 - - HGNC:13091|MIM:612429|Ensembl:ENSG00000145908|HPRD:15764|Vega:OTTHUMG00000130076 5 5q33.1 zinc finger protein 300 protein-coding ZNF300 zinc finger protein 300 O kruppel-like zinc finger protein 20121230 -9606 91977 MYOZ3 - CS-3|CS3|FRP3 HGNC:18565|MIM:610735|Ensembl:ENSG00000164591|HPRD:17624|Vega:OTTHUMG00000130077 5 5q33.1 myozenin 3 protein-coding MYOZ3 myozenin 3 O FATZ-related protein 3|calsarcin-3|myozenin-3 20121230 -9606 91978 TPGS1 - C19orf20|GTRGEO22|PGs1 HGNC:25058|Ensembl:ENSG00000141933|HPRD:12701|Vega:OTTHUMG00000180557 19 19p13.3 tubulin polyglutamylase complex subunit 1 protein-coding TPGS1 tubulin polyglutamylase complex subunit 1 O gene trap ROSA b-geo 22 20121230 -9606 92002 FAM58A - STAR HGNC:28434|MIM:300708|Ensembl:ENSG00000147382|HPRD:06645|Vega:OTTHUMG00000024206 X Xq28 family with sequence similarity 58, member A protein-coding FAM58A family with sequence similarity 58, member A O cyclin M|cyclin-M|cyclin-related protein FAM58A 20121230 -9606 92014 SLC25A51 - CG7943|MCART1 HGNC:23323|Ensembl:ENSG00000122696|HPRD:14370|Vega:OTTHUMG00000019935 9 9p13.3-p12 solute carrier family 25, member 51 protein-coding SLC25A51 solute carrier family 25, member 51 O mitochondrial carrier triple repeat 1|mitochondrial carrier triple repeat protein 1|solute carrier family 25 member 51 20121230 -9606 92017 SNX29 - A-388D4.1|RUNDC2A HGNC:30542|Ensembl:ENSG00000048471|HPRD:17437|Vega:OTTHUMG00000129827 16 16p13.13-p13.12 sorting nexin 29 protein-coding SNX29 sorting nexin 29 O RUN domain containing 2A|RUN domain-containing protein 2A|sorting nexin-29 20121230 -9606 92070 CTBP1-AS1 - C4orf42 HGNC:28307|HPRD:14480 4 4p16.3 CTBP1 antisense RNA 1 miscRNA CTBP1-AS1 CTBP1 antisense RNA 1 O - 20121230 -9606 92086 GGTLC1 RP5-831C21.2 GGTL6|GGTLA3|GGTLA4|dJ831C21.1|dJ831C21.2 HGNC:16437|MIM:612338|Ensembl:ENSG00000149435|HPRD:17037|Vega:OTTHUMG00000032095 20 20p11.1 gamma-glutamyltransferase light chain 1 protein-coding GGTLC1 gamma-glutamyltransferase light chain 1 O gamma-glutamyl transpeptidase|gamma-glutamyltransferase-like activity 3|gamma-glutamyltransferase-like activity 4|gamma-glutamyltransferase-like protein 6 20121230 -9606 92092 ZC3HAV1L - C7orf39 HGNC:22423|Ensembl:ENSG00000146858|HPRD:14440|Vega:OTTHUMG00000157229 7 7q34 zinc finger CCCH-type, antiviral 1-like protein-coding ZC3HAV1L zinc finger CCCH-type, antiviral 1-like O zinc finger CCCH-type antiviral protein 1-like 20121230 -9606 92104 TTC30A - - HGNC:25853|Ensembl:ENSG00000197557|HPRD:08590|Vega:OTTHUMG00000132528 2 2q31.2 tetratricopeptide repeat domain 30A protein-coding TTC30A tetratricopeptide repeat domain 30A O TPR repeat protein 30A|tetratricopeptide repeat protein 30A 20121230 -9606 92105 INTS4 MSTP093 INT4|MST093 HGNC:25048|MIM:611348|Ensembl:ENSG00000149262|HPRD:12386|Vega:OTTHUMG00000166629 11 11q14.1 integrator complex subunit 4 protein-coding INTS4 integrator complex subunit 4 O MSTP093 20121230 -9606 92106 OXNAD1 - - HGNC:25128|Ensembl:ENSG00000154814|HPRD:14446|Vega:OTTHUMG00000129867 3 3p25-p24 oxidoreductase NAD-binding domain containing 1 protein-coding OXNAD1 oxidoreductase NAD-binding domain containing 1 O oxidoreductase NAD-binding domain-containing protein 1 20121230 -9606 92126 DSEL - C18orf4 HGNC:18144|MIM:611125|Ensembl:ENSG00000171451|HPRD:10720|Vega:OTTHUMG00000132804 18 18q22.1 dermatan sulfate epimerase-like protein-coding DSEL dermatan sulfate epimerase-like O NCAG1|dermatan-sulfate epimerase-like protein 20121230 -9606 92129 RIPPLY1 RP11-321G1.2 - HGNC:25117|MIM:300575|Ensembl:ENSG00000147223|Vega:OTTHUMG00000022153 X Xq22.3 ripply1 homolog (zebrafish) protein-coding RIPPLY1 ripply1 homolog (zebrafish) O protein ripply1 20121230 -9606 92140 MTDH - 3D3|AEG-1|AEG1|LYRIC|LYRIC/3D3 HGNC:29608|MIM:610323|Ensembl:ENSG00000147649|HPRD:17459|Vega:OTTHUMG00000164692 8 8q22.1 metadherin protein-coding MTDH metadherin O 3D3/LYRIC|astrocyte elevated gene-1 protein|lysine-rich CEACAM1 co-isolated protein|metastasis adhesion protein|protein LYRIC 20121230 -9606 92154 MTSS1L - ABBA-1 HGNC:25094|Ensembl:ENSG00000132613|HPRD:14289|Vega:OTTHUMG00000177023 16 16q22.1 metastasis suppressor 1-like protein-coding MTSS1L metastasis suppressor 1-like O MTSS1-like protein|actin-bundling protein with BAIAP2 homology|actin-bundling with BAIAP2 homology protein 1 20121230 -9606 92162 TMEM88 - - HGNC:32371|Ensembl:ENSG00000167874|HPRD:17438|Vega:OTTHUMG00000178022 17 17p13.1 transmembrane protein 88 protein-coding TMEM88 transmembrane protein 88 O - 20121230 -9606 92170 MTG1 - GTP|GTPBP7|RP11-108K14.2 HGNC:32159|Ensembl:ENSG00000148824|Ensembl:ENSG00000254536|HPRD:11602|Vega:OTTHUMG00000019323|Vega:OTTHUMG00000166564 10 10q26.3 mitochondrial GTPase 1 homolog (S. cerevisiae) protein-coding MTG1 mitochondrial GTPase 1 homolog (S. cerevisiae) O GTP-binding protein 7 (putative)|mitochondrial GTPase 1 20121230 -9606 92181 UBTD2 SB72 DCUBP HGNC:24463|MIM:610174|Ensembl:ENSG00000168246|HPRD:13118|Vega:OTTHUMG00000130519 5 5q35.1 ubiquitin domain containing 2 protein-coding UBTD2 ubiquitin domain containing 2 O ubiquitin domain-containing protein 2|ubiquitin-like protein SB72 20121230 -9606 92196 DAPL1 - - HGNC:21490|Ensembl:ENSG00000163331|HPRD:18709|Vega:OTTHUMG00000153970 2 2q24.1 death associated protein-like 1 protein-coding DAPL1 death associated protein-like 1 O death-associated protein-like 1|early epithelial differentiation-associated protein 20121230 -9606 92211 CDHR1 - CORD15|PCDH21|PRCAD|RP65 HGNC:14550|MIM:609502|Ensembl:ENSG00000148600|HPRD:15106|Vega:OTTHUMG00000018634 10 10q23.1 cadherin-related family member 1 protein-coding CDHR1 cadherin-related family member 1 O MT-protocadherin|photoreceptor cadherin|protocadherin-21 20121230 -9606 92235 DUSP27 - - HGNC:25034|Ensembl:ENSG00000198842|Vega:OTTHUMG00000034434 1 1q22-q24 dual specificity phosphatase 27 (putative) protein-coding DUSP27 dual specificity phosphatase 27 (putative) O inactive dual specificity phosphatase 27 20121230 -9606 92241 RCSD1 RP3-503M14.1 CAPZIP|MK2S4 HGNC:28310|MIM:610579|Ensembl:ENSG00000198771|HPRD:10077|Vega:OTTHUMG00000035318 1 1q24.2 RCSD domain containing 1 protein-coding RCSD1 RCSD domain containing 1 O RCSD domain-containing protein 1|capZ-interacting protein|protein kinase substrate CapZIP|protein kinase substrate MK2S4 20121230 -9606 92249 LOC92249 - - - X Xq11.1 uncharacterized LOC92249 miscRNA - - - - 20121230 -9606 92255 LMBRD2 - - HGNC:25287|Ensembl:ENSG00000164187|HPRD:16813|Vega:OTTHUMG00000162150 5 5p13.2 LMBR1 domain containing 2 protein-coding LMBRD2 LMBR1 domain containing 2 O LMBR1 domain-containing protein 2 20121230 -9606 92259 MRPS36 DC47 MRP-S36 HGNC:16631|MIM:611996|Ensembl:ENSG00000134056|HPRD:17600|Vega:OTTHUMG00000162443 5 5q13.2 mitochondrial ribosomal protein S36 protein-coding MRPS36 mitochondrial ribosomal protein S36 O 28S ribosomal protein S36, mitochondrial|S36mt 20121230 -9606 92270 ATP6AP1L - - HGNC:28091|Ensembl:ENSG00000205464|HPRD:18710 5 5q14.2 ATPase, H+ transporting, lysosomal accessory protein 1-like protein-coding ATP6AP1L ATPase, H+ transporting, lysosomal accessory protein 1-like O V-type proton ATPase subunit S1-like protein|vacuolar proton pump subunit S1-like protein 20121230 -9606 92283 ZNF461 - GIOT-1|GIOT1 HGNC:21629|MIM:608640|Ensembl:ENSG00000197808|HPRD:16358|Vega:OTTHUMG00000180832 19 19q13.12 zinc finger protein 461 protein-coding ZNF461 zinc finger protein 461 O gonadotropin inducible transcription repressor 1|gonadotropin-inducible ovary transcription repressor 1 20121230 -9606 92285 ZNF585B - SZFP41 HGNC:30948|Ensembl:ENSG00000245680|HPRD:18354|Vega:OTTHUMG00000048165 19 19q13.12 zinc finger protein 585B protein-coding ZNF585B zinc finger protein 585B O zinc finger protein 41-like protein 20121230 -9606 92291 CAPN13 - - HGNC:16663|MIM:610228|Ensembl:ENSG00000162949|HPRD:07008|Vega:OTTHUMG00000152053 2 2p22-p21 calpain 13 protein-coding CAPN13 calpain 13 O CANP 13|calcium-activated neutral proteinase 13|calpain-13 20121230 -9606 92292 GLYATL1 - GATF-C|GNAT HGNC:30519|MIM:614761|Ensembl:ENSG00000166840|HPRD:14447|Vega:OTTHUMG00000167221 11 11q12.1 glycine-N-acyltransferase-like 1 protein-coding GLYATL1 glycine-N-acyltransferase-like 1 O acyl-CoA:glycine N-acyltransferase-like protein 1|glutamine N-acyltransferase|glycine N-acyltransferase-like protein 1 20121230 -9606 92293 TMEM132C - - HGNC:25436|Ensembl:ENSG00000181234|Vega:OTTHUMG00000163736 12 12q24.32 transmembrane protein 132C protein-coding TMEM132C transmembrane protein 132C O - 20121230 -9606 92304 SCGB3A1 UNQ629/PRO1245 HIN-1|HIN1|LU105|PnSP-2|UGRP2 HGNC:18384|MIM:606500|Ensembl:ENSG00000161055|HPRD:05932|Vega:OTTHUMG00000130936 5 5q35-qter secretoglobin, family 3A, member 1 protein-coding SCGB3A1 secretoglobin, family 3A, member 1 O cytokine HIN-1|cytokine high in normal-1|high in normal 1|pneumo secretory protein 2|secretoglobin family 3A member 1|uteroglobin-related protein 2 20121230 -9606 92305 TMEM129 - D4S2561E HGNC:25137|Ensembl:ENSG00000168936|HPRD:14290|Vega:OTTHUMG00000121150 4 4p16.3 transmembrane protein 129 protein-coding TMEM129 transmembrane protein 129 O - 20121230 -9606 92312 MEX3A - MEX-3A|RKHD4 HGNC:33482|MIM:611007|Ensembl:ENSG00000254726|Vega:OTTHUMG00000017465 1 1q22 mex-3 homolog A (C. elegans) protein-coding MEX3A mex-3 homolog A (C. elegans) O RING finger and KH domain-containing protein 4|RNA-binding protein MEX3A|ring finger and KH domain containing 4|ring finger and KH domain containing protein 20121230 -9606 92335 STRADA - LYK5|NY-BR-96|PMSE|STRAD|Stlk HGNC:30172|MIM:608626|Ensembl:ENSG00000266173|HPRD:14332|Vega:OTTHUMG00000178908 17 17q23.3 STE20-related kinase adaptor alpha protein-coding STRADA STE20-related kinase adaptor alpha O STE20-like pseudokinase|STE20-related kinase adapter protein alpha|STRAD alpha|protein kinase LYK5|serologically defined breast cancer antigen NY-BR-96 20121230 -9606 92340 C17orf72 - - HGNC:25673|Ensembl:ENSG00000224383|Vega:OTTHUMG00000178594 17 17q23.3 chromosome 17 open reading frame 72 protein-coding C17orf72 chromosome 17 open reading frame 72 O uncharacterized protein C17orf72 20121230 -9606 92342 METTL18 RP1-117P20.4 AsTP2|C1orf156|HPM1 HGNC:28793|Ensembl:ENSG00000171806|HPRD:14713|Vega:OTTHUMG00000035813 1 1q24.2 methyltransferase like 18 protein-coding METTL18 methyltransferase like 18 O arsenic-transactivated protein 2|histidine protein methyltransferase 1 homolog|methyltransferase-like protein 18 20121230 -9606 92344 GORAB - GO|NTKLBP1|SCYL1BP1 HGNC:25676|MIM:607983|Ensembl:ENSG00000120370|HPRD:12144|Vega:OTTHUMG00000035228 1 1q24.2 golgin, RAB6-interacting protein-coding GORAB golgin, RAB6-interacting O N-terminal kinase-like-binding protein 1|NTKL-binding protein 1|RAB6-interacting golgin|SCY1-like 1 binding protein 1|SCY1-like 1-binding protein 1|SCYL1-BP1|SCYL1-binding protein 1|hNTKL-BP1 20121230 -9606 92345 NAF1 - - HGNC:25126|Ensembl:ENSG00000145414|HPRD:10054|Vega:OTTHUMG00000161370 4 4q32.2 nuclear assembly factor 1 homolog (S. cerevisiae) protein-coding NAF1 nuclear assembly factor 1 homolog (S. cerevisiae) O H/ACA ribonucleoprotein complex non-core subunit NAF1 20121230 -9606 92346 C1orf105 RP1-106H8.1 - HGNC:29591|Ensembl:ENSG00000180999|HPRD:14291|Vega:OTTHUMG00000034750 1 1q24.3 chromosome 1 open reading frame 105 protein-coding C1orf105 chromosome 1 open reading frame 105 O uncharacterized protein C1orf105 20121230 -9606 92359 CRB3 UNQ588/PRO1158 - HGNC:20237|MIM:609737|Ensembl:ENSG00000130545|HPRD:16749 19 19p13.3 crumbs homolog 3 (Drosophila) protein-coding CRB3 crumbs homolog 3 (Drosophila) O crumbs protein homolog 3 20121230 -9606 92369 SPSB4 - SSB-4|SSB4 HGNC:30630|MIM:611660|Ensembl:ENSG00000175093|HPRD:18108|Vega:OTTHUMG00000160223 3 3q23 splA/ryanodine receptor domain and SOCS box containing 4 protein-coding SPSB4 splA/ryanodine receptor domain and SOCS box containing 4 O SPRY domain-containing SOCS box protein 4|SPRY domain-containing SOCS box protein SSB-4 20121230 -9606 92370 ACPL2 UNQ370/PRO706 - HGNC:26303|Ensembl:ENSG00000155893|HPRD:08675|Vega:OTTHUMG00000160171 3 3q23 acid phosphatase-like 2 protein-coding ACPL2 acid phosphatase-like 2 O acid phosphatase-like protein 2 20121230 -9606 92399 MRRF - MRFF|MTRRF|RRF HGNC:7234|MIM:604602|Ensembl:ENSG00000148187|HPRD:06856|Vega:OTTHUMG00000020600 9 9q33.2 mitochondrial ribosome recycling factor protein-coding MRRF mitochondrial ribosome recycling factor O ribosome-recycling factor, mitochondrial|ribosome-releasing factor, mitochondrial 20121230 -9606 92400 RBM18 - - HGNC:28413|Ensembl:ENSG00000119446|HPRD:15224|Vega:OTTHUMG00000020602 9 9q33.2 RNA binding motif protein 18 protein-coding RBM18 RNA binding motif protein 18 O RNA-binding motif protein 18|probable RNA-binding protein 18 20121230 -9606 92421 CHMP4C - SNF7-3|Shax3|VPS32C HGNC:30599|MIM:610899|Ensembl:ENSG00000164695|HPRD:18135|Vega:OTTHUMG00000164726 8 8q21.13 charged multivesicular body protein 4C protein-coding CHMP4C charged multivesicular body protein 4C O SNF7 homolog associated with Alix 3|Snf7 homologue associated with Alix 3|charged multivesicular body protein 4c|chromatin modifying protein 4C|chromatin-modifying protein 4c|hSnf7-3|hVps32-3|vacuolar protein sorting-associated protein 32-3|vps32-3 20121230 -9606 92427 RPS2P4 - RPS2_20_1415 HGNC:19814 14 14q32.33 ribosomal protein S2 pseudogene 4 pseudo RPS2P4 ribosomal protein S2 pseudogene 4 O - 20121230 -9606 92482 BBIP1 - BBIP10|NCRNA00081|bA348N5.3 HGNC:28093|MIM:613605|Ensembl:ENSG00000214413|Vega:OTTHUMG00000019046 10 10q25.2 BBSome interacting protein 1 protein-coding BBIP1 BBSome interacting protein 1 O BBSome-interacting protein 1|BBSome-interacting protein of 10 kDa|UPF0604 protein 20121230 -9606 92483 LDHAL6B - LDH6B|LDHAL6|LDHL HGNC:21481|Ensembl:ENSG00000171989|HPRD:13981|Vega:OTTHUMG00000132714 15 15q22.2 lactate dehydrogenase A-like 6B protein-coding LDHAL6B lactate dehydrogenase A-like 6B O L-lactate dehydrogenase A-like 6B|lactate dehydrogenase A-like 6 20121230 -9606 92507 RPS4XP2 - RPS4L2|RPS4P2|RPS4Y_2_1680|dJ189G13.2 HGNC:16563 20 20p13 ribosomal protein S4X pseudogene 2 pseudo RPS4XP2 ribosomal protein S4X pseudogene 2 O - 20121230 -9606 92521 SPECC1 - CYTSB|HCMOGT-1|HCMOGT1|NSP HGNC:30615|MIM:608793|Ensembl:ENSG00000128487|HPRD:12301|Vega:OTTHUMG00000179808 17 17p11.2 sperm antigen with calponin homology and coiled-coil domains 1 protein-coding SPECC1 sperm antigen with calponin homology and coiled-coil domains 1 O NSP5|cytokinesis and spindle organization B|cytospin-B|nuclear structure protein 5|sperm antigen HCMOGT-1|sperm antigen with calponin-like and coiled coil domains 1|structure protein NSP5a3a|structure protein NSP5a3b|structure protein NSP5b3a|structure protein NSP5b3b 20121230 -9606 92552 ATXN3L - MJDL HGNC:24173|Ensembl:ENSG00000123594|Vega:OTTHUMG00000021146 X Xp22.2 ataxin 3-like protein-coding ATXN3L ataxin 3-like O machado-Joseph disease protein 1-like|putative ataxin-3-like protein 20121230 -9606 92558 CCDC64 - BICDR-1|H_267D11.1 HGNC:28095|Ensembl:ENSG00000135127|HPRD:14292|Vega:OTTHUMG00000169311 12 12q24.23 coiled-coil domain containing 64 protein-coding CCDC64 coiled-coil domain containing 64 O BICD-related protein 1|WUGSC:H_267D11.1|bicaudal D-related protein 1|coiled-coil domain-containing protein 64A 20121230 -9606 92565 FANK1 HSD13 - HGNC:23527|MIM:611640|Ensembl:ENSG00000203780|HPRD:09945|Vega:OTTHUMG00000019241 10 10q26.2 fibronectin type III and ankyrin repeat domains 1 protein-coding FANK1 fibronectin type III and ankyrin repeat domains 1 O 1700007B22Rik|fibronectin type 3 and ankyrin repeat domains 1|fibronectin type 3 and ankyrin repeat domains protein 1 20121230 -9606 92579 G6PC3 - SCN4|UGRP HGNC:24861|MIM:611045|Ensembl:ENSG00000141349|HPRD:13556|Vega:OTTHUMG00000181805 17 17q21.31 glucose 6 phosphatase, catalytic, 3 protein-coding G6PC3 glucose 6 phosphatase, catalytic, 3 O G-6-Pase 3|G6Pase 3|G6Pase-beta|glucose-6-phosphatase 3|glucose-6-phosphatase catalytic subunit 3|ubiquitous glucose-6-phosphatase catalytic subunit-related protein|ubiquitously expressed G6Pase catalytic subunit-related protein 20121230 -9606 92591 ASB16 - - HGNC:19768|Ensembl:ENSG00000161664|HPRD:10670|Vega:OTTHUMG00000181809 17 17q21.31 ankyrin repeat and SOCS box containing 16 protein-coding ASB16 ankyrin repeat and SOCS box containing 16 O ankyrin repeat and SOCS box protein 16|ankyrin repeat and SOCS box-containing 16|ankyrin repeat and SOCS box-containing protein 16 20121230 -9606 92595 ZNF764 - - HGNC:28200|Ensembl:ENSG00000169951|HPRD:10072|Vega:OTTHUMG00000132406 16 16p11.2 zinc finger protein 764 protein-coding ZNF764 zinc finger protein 764 O - 20121230 -9606 92597 MOB1B - MATS2|MOB4A|MOBKL1A HGNC:29801|MIM:609282|Ensembl:ENSG00000173542|HPRD:17582|Vega:OTTHUMG00000160844 4 4q13.3 MOB kinase activator 1B protein-coding MOB1B MOB kinase activator 1B O MOB1 Mps One Binder homolog B|MOB1, Mps One Binder kinase activator-like 1A|mob1 homolog 1A|mob1A|mps one binder kinase activator-like 1A 20121230 -9606 92609 TIMM50 PRO1512 TIM50|TIM50L HGNC:23656|MIM:607381|Ensembl:ENSG00000105197|HPRD:12118 19 19q13.2 translocase of inner mitochondrial membrane 50 homolog (S. cerevisiae) protein-coding TIMM50 translocase of inner mitochondrial membrane 50 homolog (S. cerevisiae) O Tim50-like protein|homolog of yeast Tim50|mitochondrial import inner membrane translocase subunit TIM50 20121230 -9606 92610 TIFA - T2BP|T6BP|TIFAA HGNC:19075|MIM:609028|Ensembl:ENSG00000145365|HPRD:09835|Vega:OTTHUMG00000161066 4 4q25 TRAF-interacting protein with forkhead-associated domain protein-coding TIFA TRAF-interacting protein with forkhead-associated domain O TRAF-interacting protein with FHA domain-containing protein A|TRAF-interacting protein with a forkhead-associated domain|TRAF2 binding protein|TRAF2-binding protein|TRAF6 binding protein|putative MAPK-activating protein PM14|putative NF-kappa-B-activating protein 20 20121230 -9606 92659 MAFG-AS1 - - HGNC:43649 17 17q25.3 MAFG antisense RNA 1 (head to head) miscRNA MAFG-AS1 MAFG antisense RNA 1 (head to head) O - 20121230 -9606 92667 C20orf72 RP11-504H3.1 bA504H3.4 HGNC:16205|Ensembl:ENSG00000125871|HPRD:12783|Vega:OTTHUMG00000031955 20 20p11.23 chromosome 20 open reading frame 72 protein-coding C20orf72 chromosome 20 open reading frame 72 O uncharacterized protein C20orf72 20121230 -9606 92675 DTD1 - C20orf88|DUEB|HARS2|bA379J5.3|bA555E18.1|pqn-68 HGNC:16219|MIM:610996|Ensembl:ENSG00000125821|Vega:OTTHUMG00000031980 20 20p11.23 D-tyrosyl-tRNA deacylase 1 protein-coding DTD1 D-tyrosyl-tRNA deacylase 1 O D-tyrosyl-tRNA deacylase 1 homolog|D-tyrosyl-tRNA(Tyr) deacylase 1|DNA-unwinding element-binding protein|histidyl-tRNA synthase-related|histidyl-tRNA synthetase 2 20121230 -9606 92682 RPS15AP1 - RPS15A_24_1692|dJ872K7.6 HGNC:16598 20 20p11.23 ribosomal protein S15a pseudogene 1 pseudo RPS15AP1 ribosomal protein S15a pseudogene 1 O - 20121230 -9606 92689 FAM114A1 - Noxp20 HGNC:25087|Ensembl:ENSG00000197712|HPRD:11282|Vega:OTTHUMG00000128583 4 4p14 family with sequence similarity 114, member A1 protein-coding FAM114A1 family with sequence similarity 114, member A1 O nervous system over-expressed protein 20|nervous system overexpressed protein 20|protein NOXP20 20121230 -9606 92691 TMEM169 - - HGNC:25130|Ensembl:ENSG00000163449|HPRD:14293|Vega:OTTHUMG00000133053 2 2q35 transmembrane protein 169 protein-coding TMEM169 transmembrane protein 169 O - 20121230 -9606 92703 TMEM183A - C1orf37 HGNC:20173|Ensembl:ENSG00000163444|HPRD:12727|Vega:OTTHUMG00000042051 1 1q32.1 transmembrane protein 183A protein-coding TMEM183A transmembrane protein 183A O - 20121230 -9606 92714 ARRDC1 RP11-48C7.5 - HGNC:28633|Ensembl:ENSG00000197070|HPRD:12491|Vega:OTTHUMG00000020993 9 9q34.3 arrestin domain containing 1 protein-coding ARRDC1 arrestin domain containing 1 O arrestin domain-containing protein 1 20121230 -9606 92715 WDR85 - C9orf112|RP11-48C7.3|RRT2 HGNC:25199|MIM:613210|Ensembl:ENSG00000148399|HPRD:12934|Vega:OTTHUMG00000020991 9 9q34.3 WD repeat domain 85 protein-coding WDR85 WD repeat domain 85 O WD repeat-containing protein 85 20121230 -9606 92736 OTOP2 - - HGNC:19657|MIM:607827|Ensembl:ENSG00000183034|HPRD:07614|Vega:OTTHUMG00000179215 17 17q25.1 otopetrin 2 protein-coding OTOP2 otopetrin 2 O otopetrin-2 20121230 -9606 92737 DNER UNQ262/PRO299 UNQ26|bet HGNC:24456|MIM:607299|Ensembl:ENSG00000187957|HPRD:09531|Vega:OTTHUMG00000153637 2 2q36.3 delta/notch-like EGF repeat containing protein-coding DNER delta/notch-like EGF repeat containing O H_NH0150O02.1|WUGSC:H_NH0150O02.1|delta and Notch-like epidermal growth factor-related receptor|delta-notch-like EGF repeat-containing transmembrane 20121230 -9606 92745 SLC38A5 PP7194 JM24|SN2|SNAT5|pp7194 HGNC:18070|MIM:300649|Ensembl:ENSG00000017483|HPRD:06718|Vega:OTTHUMG00000024117 X Xp11.23 solute carrier family 38, member 5 protein-coding SLC38A5 solute carrier family 38, member 5 O sodium-coupled neutral amino acid transporter 5|system N transporter 2 20121230 -9606 92747 BPIFB1 RP5-1187J4.9 C20orf114|LPLUNC1 HGNC:16108|Ensembl:ENSG00000125999|HPRD:12740|Vega:OTTHUMG00000032252 20 20q11.21 BPI fold containing family B, member 1 protein-coding BPIFB1 BPI fold containing family B, member 1 O BPI fold-containing family B member 1|VEMSGP|long palate, lung and nasal epithelium carcinoma associated 1|long palate, lung and nasal epithelium carcinoma-associated protein 1|von Ebner minor salivary gland protein 20121230 -9606 92749 CCDC164 - C2orf39 HGNC:24245|Ensembl:ENSG00000157856|HPRD:11312|Vega:OTTHUMG00000125531 2 2p23.3 coiled-coil domain containing 164 protein-coding CCDC164 coiled-coil domain containing 164 O coiled-coil domain-containing protein 164 20121230 -9606 92755 TUBBP1 - - HGNC:12414 8 8p12 tubulin, beta pseudogene 1 pseudo TUBBP1 tubulin, beta pseudogene 1 O - 20121230 -9606 92797 HELB - hDHB HGNC:17196|MIM:614539|Ensembl:ENSG00000127311|HPRD:09979|Vega:OTTHUMG00000169006 12 12q14.3|12q helicase (DNA) B protein-coding HELB helicase (DNA) B O DNA helicase B|helicase B 20121230 -9606 92799 SHKBP1 PP203 Sb1 HGNC:19214|Ensembl:ENSG00000160410|HPRD:15338 19 19q13.2 SH3KBP1 binding protein 1 protein-coding SHKBP1 SH3KBP1 binding protein 1 O SH3KBP1-binding protein 1 20121230 -9606 92806 CENPBD1 - - HGNC:28272|Ensembl:ENSG00000177946|HPRD:08321|Vega:OTTHUMG00000173040 16 16q24.3 CENPB DNA-binding domains containing 1 protein-coding CENPBD1 CENPB DNA-binding domains containing 1 O CENPB DNA-binding domain-containing protein 1 20121230 -9606 92815 HIST3H2A - - HGNC:20507|Ensembl:ENSG00000181218|HPRD:13660|Vega:OTTHUMG00000040046 1 1q42.13 histone cluster 3, H2a protein-coding HIST3H2A histone cluster 3, H2a O histone 3, H2a|histone H2A type 3 20121230 -9606 92822 ZNF276 - CENP-Z|CENPZ|ZFP276|ZNF477 HGNC:23330|MIM:608460|Ensembl:ENSG00000158805|HPRD:12235|Vega:OTTHUMG00000138050 16 16q24.3 zinc finger protein 276 protein-coding ZNF276 zinc finger protein 276 O centromere protein Z|zfp-276|zinc finger protein 276 homolog|zinc finger protein 477 20121230 -9606 92840 REEP6 - C19orf32|DP1L1|TB2L1 HGNC:30078|MIM:609346|Ensembl:ENSG00000115255|HPRD:16629|Vega:OTTHUMG00000180072 19 19p13.3 receptor accessory protein 6 protein-coding REEP6 receptor accessory protein 6 O deleted in polyposis 1-like 1|polyposis locus protein 1-like 1|receptor expression enhancing protein 6|receptor expression-enhancing protein 6 20121230 -9606 92856 IMP4 - BXDC4 HGNC:30856|MIM:612981|Ensembl:ENSG00000136718|HPRD:10002|Vega:OTTHUMG00000131627 2 2q21.1 IMP4, U3 small nucleolar ribonucleoprotein, homolog (yeast) protein-coding IMP4 IMP4, U3 small nucleolar ribonucleoprotein, homolog (yeast) O U3 small nucleolar ribonucleoprotein protein IMP4|U3 snoRNP protein 4 homolog|U3 snoRNP protein IMP4|brix domain-containing protein 4 20121230 -9606 92906 HNRPLL BLOCK24 SRRF|hnRNPLL HGNC:25127|MIM:611208|Ensembl:ENSG00000143889|HPRD:13667|Vega:OTTHUMG00000102075 2 2p22.1 heterogeneous nuclear ribonucleoprotein L-like protein-coding HNRPLL heterogeneous nuclear ribonucleoprotein L-like O stromal RNA regulating factor|stromal RNA-regulating factor 20121230 -9606 92912 UBE2Q2 - - HGNC:19248|MIM:612501|Ensembl:ENSG00000140367|HPRD:14294|Vega:OTTHUMG00000142839 15 15q24.2 ubiquitin-conjugating enzyme E2Q family member 2 protein-coding UBE2Q2 ubiquitin-conjugating enzyme E2Q family member 2 O ubiquitin carrier protein Q2|ubiquitin-conjugating enzyme E2 Q2|ubiquitin-protein ligase Q2 20121230 -9606 92922 CCDC102A - - HGNC:28097|Ensembl:ENSG00000135736|HPRD:14408|Vega:OTTHUMG00000133472 16 16q21 coiled-coil domain containing 102A protein-coding CCDC102A coiled-coil domain containing 102A O coiled-coil domain-containing protein 102A 20121230 -9606 92935 MARS2 - MetRS|mtMetRS HGNC:25133|MIM:609728|Ensembl:ENSG00000247626|HPRD:14363|Vega:OTTHUMG00000154487 2 2q33.1 methionyl-tRNA synthetase 2, mitochondrial protein-coding MARS2 methionyl-tRNA synthetase 2, mitochondrial O methionine tRNA ligase 2, mitochondrial|methionine--tRNA ligase 2|methionine--tRNA ligase, mitochondrial|methionine-tRNA ligase|methionine-tRNA synthetase 2 (mitochondrial)|methionine-tRNA synthetase 2, mitochondrial|methionyl-tRNA synthetase, mitochondrial|mitochondrial methionine--tRNA ligase|mitochondrial methionyl-tRNA synthetase 20121230 -9606 92949 ADAMTSL1 RP11-220B22.2 ADAMTSL-1|ADAMTSR1|C9orf94|PUNCTIN HGNC:14632|MIM:609198|Ensembl:ENSG00000178031|HPRD:16462|Vega:OTTHUMG00000019604 9 9p21.3 ADAMTS-like 1 protein-coding ADAMTSL1 ADAMTS-like 1 O ADAM-TS related protein 1|ADAMTS-like protein 1|punctin-1 20121230 -9606 92960 PEX11G - - HGNC:20208|MIM:607583|Ensembl:ENSG00000104883|HPRD:16250 19 19p13.2 peroxisomal biogenesis factor 11 gamma protein-coding PEX11G peroxisomal biogenesis factor 11 gamma O PEX11-gamma|Pex11pgamma|peroxin Pex11p gamma|peroxin-11C|peroxisomal biogenesis factor 11C|peroxisomal biogenesis factor 11G|peroxisomal membrane protein 11C|protein PEX11 homolog gamma 20121230 -9606 92973 FP588 - - - 9 9p13.3 uncharacterized LOC92973 miscRNA - - - - 20121230 -9606 92979 MARCH9 - MARCH-IX|RNF179 HGNC:25139|MIM:613336|Ensembl:ENSG00000139266|HPRD:14360|Vega:OTTHUMG00000170456 12 12q14.1 membrane-associated ring finger (C3HC4) 9 protein-coding MARCH9 membrane-associated ring finger (C3HC4) 9 O E3 ubiquitin-protein ligase MARCH9|RING finger protein 179|membrane-associated RING finger protein 9|membrane-associated RING-CH protein IX 20121230 -9606 92999 ZBTB47 - ZNF651 HGNC:26955|Ensembl:ENSG00000114853|HPRD:15888|Vega:OTTHUMG00000156207 3 3p22.1 zinc finger and BTB domain containing 47 protein-coding ZBTB47 zinc finger and BTB domain containing 47 O zinc finger and BTB domain-containing protein 47|zinc finger protein 651 20121230 -9606 93010 B3GNT7 - beta3GnT7 HGNC:18811|Ensembl:ENSG00000156966|HPRD:12512|Vega:OTTHUMG00000153880 2 2q37.1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 protein-coding B3GNT7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 O BGnT-7|beta 1,3-N-acetylglucosaminyltransferase 7|beta-1,3-Gn-T7|beta-1,3-N-acetylglucosaminyltransferase 7|beta3Gn-T7 20121230 -9606 93034 NT5C1B FKSG85 AIRP|CN-IB|CN1B HGNC:17818|MIM:610526|Ensembl:ENSG00000185013|HPRD:11405|Vega:OTTHUMG00000151765 2 2p24.2 5'-nucleotidase, cytosolic IB protein-coding NT5C1B 5'-nucleotidase, cytosolic IB O autoimmune infertility-related protein|cytosolic 5'-nucleotidase 1B 20121230 -9606 93035 PKHD1L1 - PKHDL1 HGNC:20313|MIM:607843|Ensembl:ENSG00000205038|HPRD:09703|Vega:OTTHUMG00000164934 8 8q23 polycystic kidney and hepatic disease 1 (autosomal recessive)-like 1 protein-coding PKHD1L1 polycystic kidney and hepatic disease 1 (autosomal recessive)-like 1 O PKHD1-like protein 1|fibrocystin L|fibrocystin-L|polycystic kidney and hepatic disease 1-like protein 1|polycystic kidney and hepatic disease-like 1 20121230 -9606 93058 COQ10A UNQ6192/PRO20219 - HGNC:26515|Ensembl:ENSG00000135469|HPRD:08726|Vega:OTTHUMG00000170283 12 12q13.3 coenzyme Q10 homolog A (S. cerevisiae) protein-coding COQ10A coenzyme Q10 homolog A (S. cerevisiae) O coenzyme Q-binding protein COQ10 homolog A, mitochondrial 20121230 -9606 93081 TEX30 RP11-484I6.3 C13orf27 HGNC:25188|Ensembl:ENSG00000151287|HPRD:14295|Vega:OTTHUMG00000017306 13 13q33.1 testis expressed 30 protein-coding TEX30 testis expressed 30 O testis-expressed sequence 30 protein 20121230 -9606 93082 NEURL3 hCG_1641111 LINCR HGNC:25162|HPRD:14296 2 2q11.2 neuralized homolog 3 (Drosophila) pseudogene pseudo NEURL3 neuralized homolog 3 (Drosophila) pseudogene O - 20121230 -9606 93099 DMKN UNQ729/PRO1411 UNQ729|ZD52F10 HGNC:25063|Ensembl:ENSG00000161249|HPRD:12387|Vega:OTTHUMG00000048101 19 19q13.12 dermokine protein-coding DMKN dermokine O epidermis-specific secreted protein SK30/SK89 20121230 -9606 93100 NAPRT1 - PP3856 HGNC:30450|MIM:611552|Ensembl:ENSG00000147813|HPRD:15161|Vega:OTTHUMG00000156942 8 8q24.3 nicotinate phosphoribosyltransferase domain containing 1 protein-coding NAPRT1 nicotinate phosphoribosyltransferase domain containing 1 O FHA-HIT-interacting protein|NAPRTase|nicotinate phosphoribosyltransferase|nicotinate phosphoribosyltransferase domain-containing protein 1|nicotinic acid phosphoribosyltransferase 20121230 -9606 93107 KCNG4 - KV6.3|KV6.4 HGNC:19697|MIM:607603|Ensembl:ENSG00000168418|HPRD:16253|Vega:OTTHUMG00000137638 16 16q24.1 potassium voltage-gated channel, subfamily G, member 4 protein-coding KCNG4 potassium voltage-gated channel, subfamily G, member 4 O potassium voltage-gated channel subfamily G member 4|voltage-gated potassium channel Kv6.3|voltage-gated potassium channel subunit Kv6.4 20121230 -9606 93109 TMEM44 - - HGNC:25120|Ensembl:ENSG00000145014|HPRD:14297|Vega:OTTHUMG00000156023 3 3q29 transmembrane protein 44 protein-coding TMEM44 transmembrane protein 44 O - 20121230 -9606 93129 ORAI3 - TMEM142C HGNC:28185|MIM:610930|Ensembl:ENSG00000175938|HPRD:14431|Vega:OTTHUMG00000176768 16 16p11.2 ORAI calcium release-activated calcium modulator 3 protein-coding ORAI3 ORAI calcium release-activated calcium modulator 3 O protein orai-3|transmembrane protein 142C 20121230 -9606 93134 ZNF561 - - HGNC:28684|Ensembl:ENSG00000171469|HPRD:15843|Vega:OTTHUMG00000157054 19 19p13.2 zinc finger protein 561 protein-coding ZNF561 zinc finger protein 561 O - 20121230 -9606 93144 RPS10P5 - RPS10L|RPS10_13_1677|bA371L19.2 HGNC:15795 20 20p13 ribosomal protein S10 pseudogene 5 pseudo RPS10P5 ribosomal protein S10 pseudogene 5 O - 20121230 -9606 93145 OLFM2 - NOE2|NOELIN2|NOELIN2_V1|OlfC HGNC:17189|Ensembl:ENSG00000105088|HPRD:10127|Vega:OTTHUMG00000180390 19 19p13.2 olfactomedin 2 protein-coding OLFM2 olfactomedin 2 O neuronal olfactomedin related ER localized protein 2|noelin 2|noelin-2|olfactomedin-2 20121230 -9606 93164 HTR7P1 - HTR7P HGNC:30411 12 12p13.1 5-hydroxytryptamine (serotonin) receptor 7 pseudogene 1 pseudo HTR7P1 5-hydroxytryptamine (serotonin) receptor 7 pseudogene 1 O - 20121230 -9606 93166 PRDM6 - - HGNC:9350|Ensembl:ENSG00000061455|Vega:OTTHUMG00000150469 5 5q23.2 PR domain containing 6 protein-coding PRDM6 PR domain containing 6 O PR domain zinc finger protein 6|PR domain-containing protein 6|PR-domain zinc finger protein 6|putative histone-lysine N-methyltransferase PRDM6 20121230 -9606 93183 PIGM - GPI-MT-I HGNC:18858|MIM:610273|Ensembl:ENSG00000143315|HPRD:15133|Vega:OTTHUMG00000024081 1 1q23.2 phosphatidylinositol glycan anchor biosynthesis, class M protein-coding PIGM phosphatidylinositol glycan anchor biosynthesis, class M O GPI mannosyltransferase 1|GPI mannosyltransferase I|PIG-M mannosyltransferase|phosphatidylinositol-glycan biosynthesis class M protein 20121230 -9606 93185 IGSF8 RP11-536C5.3 CD316|CD81P3|EWI-2|EWI2|KCT-4|LIR-D1|PGRL HGNC:17813|MIM:606644|Ensembl:ENSG00000162729|HPRD:09438|Vega:OTTHUMG00000024075 1 1q23.1 immunoglobulin superfamily, member 8 protein-coding IGSF8 immunoglobulin superfamily, member 8 O CD81 partner 3|glu-Trp-Ile EWI motif-containing protein 2|immunoglobulin superfamily member 8|keratinocytes-associated transmembrane protein 4|prostaglandin regulatory-like protein 20121230 -9606 93190 C1orf158 RP11-474O21.4 - HGNC:28567|Ensembl:ENSG00000157330|HPRD:14604|Vega:OTTHUMG00000001888 1 1p36.21 chromosome 1 open reading frame 158 protein-coding C1orf158 chromosome 1 open reading frame 158 O uncharacterized protein C1orf158 20121230 -9606 93202 LOC93202 - - - 10 10q26.11 thioredoxin pseudogene pseudo - - - - 20121230 -9606 93210 PGAP3 UNQ546/PRO1100 AGLA546|CAB2|PER1|PERLD1|PP1498 HGNC:23719|MIM:611801|Ensembl:ENSG00000161395|HPRD:15118|Vega:OTTHUMG00000179110 17 17q12 post-GPI attachment to proteins 3 protein-coding PGAP3 post-GPI attachment to proteins 3 O COS16 homolog|PER1-like domain-containing protein 1|gene coamplified with ERBB2 protein|hCOS16|per1-like domain containing 1|post-GPI attachment to proteins factor 3 20121230 -9606 93233 CCDC114 - - HGNC:26560|Ensembl:ENSG00000105479|HPRD:08149|Vega:OTTHUMG00000156161 19 19q13.33 coiled-coil domain containing 114 protein-coding CCDC114 coiled-coil domain containing 114 O coiled-coil domain-containing protein 114 20121230 -9606 93273 LEMD1 - CT50|LEMP-1 HGNC:18725|MIM:610480|Ensembl:ENSG00000186007|HPRD:13983|Vega:OTTHUMG00000037201 1 1q32.1 LEM domain containing 1 protein-coding LEMD1 LEM domain containing 1 O LEM domain protein 1|LEM domain-containing protein 1|cancer/testis antigen 50 20121230 -9606 93323 HAUS8 - DGT4|HICE1|NY-SAR-48 HGNC:30532|MIM:613434|Ensembl:ENSG00000131351|HPRD:11318 19 19p13.11 HAUS augmin-like complex, subunit 8 protein-coding HAUS8 HAUS augmin-like complex, subunit 8 O HAUS augmin-like complex subunit 8|HEC1/NDC80 interacting, centrosome associated 1|HEC1/NDC80-interacting centrosome-associated protein 1|Hec1-interacting and centrosome-associated 1|sarcoma antigen NY-SAR-48 20121230 -9606 93343 MVB12A - CFBP|FAM125A HGNC:25153|Ensembl:ENSG00000141971|HPRD:14298|Vega:OTTHUMG00000166252 19 19p13.11 multivesicular body subunit 12A protein-coding MVB12A multivesicular body subunit 12A O CIN85/CD2AP family binding protein|CIN85/CD2AP family-binding protein|ESCRT-I complex subunit MVB12A|family with sequence similarity 125, member A 20121230 -9606 93349 SP140L - - HGNC:25105|Ensembl:ENSG00000185404|HPRD:14299|Vega:OTTHUMG00000153730 2 2q37.1 SP140 nuclear body protein-like protein-coding SP140L SP140 nuclear body protein-like O nuclear body protein SP140-like protein 20121230 -9606 93377 OPALIN RP11-35J23.6 HTMP10|TMEM10|TMP10 HGNC:20707|Ensembl:ENSG00000197430|HPRD:15521|Vega:OTTHUMG00000018831 10 10q23-q24 oligodendrocytic myelin paranodal and inner loop protein protein-coding OPALIN oligodendrocytic myelin paranodal and inner loop protein O opalin|transmembrane protein 10|transmembrane protein TMP10 20121230 -9606 93380 MMGT1 RP11-274K13.3 EMC5|TMEM32 HGNC:28100|Ensembl:ENSG00000169446|HPRD:06626|Vega:OTTHUMG00000022499 X Xq26.3 membrane magnesium transporter 1 protein-coding MMGT1 membrane magnesium transporter 1 O ER membrane protein complex subunit 5|transmembrane protein 32 20121230 -9606 93408 MYL10 - MYLC2PL|PLRLC HGNC:29825|Ensembl:ENSG00000106436|HPRD:17620|Vega:OTTHUMG00000157137 7 7q22.1 myosin, light chain 10, regulatory protein-coding MYL10 myosin, light chain 10, regulatory O myosin light chain 2, lymphocyte-specific|myosin light chain 2, precursor lymphocyte-specific|myosin regulatory light chain 10|precursor lymphocyte-specific regulatory light chain 20121230 -9606 93426 SYCE1 RP11-108K14.6 C10orf94|CT76 HGNC:28852|MIM:611486|Ensembl:ENSG00000171772|HPRD:12598|Vega:OTTHUMG00000019321 10 10q26.3 synaptonemal complex central element protein 1 protein-coding SYCE1 synaptonemal complex central element protein 1 O cancer/testis antigen 76 20121230 -9606 93429 DKFZp434J0226 - - - 19 19q13.32 uncharacterized LOC93429 miscRNA - - - - 20121230 -9606 93432 LOC93432 - - - 7 7q34 maltase-glucoamylase (alpha-glucosidase) pseudogene pseudo - - - - 20121230 -9606 93436 ARMC6 - R30923_1 HGNC:25049|Ensembl:ENSG00000105676|HPRD:12488|Vega:OTTHUMG00000169271 19 19p13.11 armadillo repeat containing 6 protein-coding ARMC6 armadillo repeat containing 6 O armadillo repeat-containing protein 6 20121230 -9606 93444 LOC93444 - - - 15 15q22.32 uncharacterized LOC93444 unknown - - - - 20120508 -9606 93463 LOC93463 - - - 2 2q37.3 uncharacterized LOC93463 unknown - - - - 20121230 -9606 93474 ZNF670 - - HGNC:28167|Ensembl:ENSG00000135747|HPRD:11305|Vega:OTTHUMG00000040868 1 1q44 zinc finger protein 670 protein-coding ZNF670 zinc finger protein 670 O - 20121230 -9606 93487 MAPK1IP1L - C14orf32|MISS|c14_5346 HGNC:19840|Ensembl:ENSG00000168175|HPRD:12647|Vega:OTTHUMG00000171029 14 14q22.3 mitogen-activated protein kinase 1 interacting protein 1-like protein-coding MAPK1IP1L mitogen-activated protein kinase 1 interacting protein 1-like O MAPK-interacting and spindle-stabilizing protein|MAPK-interacting and spindle-stabilizing protein-like|mitogen activated protein kinase 1 interacting protein 1-like|mitogen-activated protein kinase 1-interacting protein 1-like 20121230 -9606 93492 TPTE2 RP11-408K19.2 TPIP HGNC:17299|MIM:606791|Ensembl:ENSG00000132958|HPRD:06003|Vega:OTTHUMG00000016493 13 13q12.11 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 protein-coding TPTE2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 O PTEN-like inositol lipid phosphatase|TPIP lipid phosphatase|TPTE and PTEN homologous inositol lipid phosphatase|lipid phosphatase TPIP|phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase TPTE2|phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase TPTE2 20121230 -9606 93517 SDR42E1 HSPC105 - HGNC:29834|Ensembl:ENSG00000184860|HPRD:17118|Vega:OTTHUMG00000166148 16 16q23.3 short chain dehydrogenase/reductase family 42E, member 1 protein-coding SDR42E1 short chain dehydrogenase/reductase family 42E, member 1 O short-chain dehydrogenase/reductase family 42E member 1 20121230 -9606 93550 ZFAND4 RP11-358L16.1 ANUBL1 HGNC:23504|Ensembl:ENSG00000172671|HPRD:16494|Vega:OTTHUMG00000018085 10 10q11.22 zinc finger, AN1-type domain 4 protein-coding ZFAND4 zinc finger, AN1-type domain 4 O AN1, ubiquitin-like, homolog|AN1-type zinc finger and ubiquitin domain-containing protein 1|AN1-type zinc finger and ubiquitin domain-containing protein-like 1|AN1-type zinc finger protein 4 20121230 -9606 93556 EGFEM1P hCG_1786642 C3orf50|NCRNA00259 HGNC:25149 3 3q26.2 EGF-like and EMI domain containing 1, pseudogene pseudo EGFEM1P EGF-like and EMI domain containing 1, pseudogene O - 20121230 -9606 93587 TRMT10A - RG9MTD2|TRM10 HGNC:28403|Ensembl:ENSG00000145331|HPRD:15241|Vega:OTTHUMG00000131025 4 4q23 tRNA methyltransferase 10 homolog A (S. cerevisiae) protein-coding TRMT10A tRNA methyltransferase 10 homolog A (S. cerevisiae) O RNA (guanine-9-) methyltransferase domain containing 2|RNA (guanine-9-)-methyltransferase domain-containing protein 2|tRNA methyltransferase 10 homolog A 20121230 -9606 93589 CACNA2D4 - RCD4 HGNC:20202|MIM:608171|Ensembl:ENSG00000151062|HPRD:12182|Vega:OTTHUMG00000168111 12 12p13.33 calcium channel, voltage-dependent, alpha 2/delta subunit 4 protein-coding CACNA2D4 calcium channel, voltage-dependent, alpha 2/delta subunit 4 O voltage-dependent calcium channel subunit alpha-2/delta-4|voltage-gated calcium channel alpha(2)delta-4 subunit|voltage-gated calcium channel subunit alpha-2/delta-4 20121230 -9606 93594 WDR67 - Gm85 HGNC:30888|Ensembl:ENSG00000156787|HPRD:11319|Vega:OTTHUMG00000165081 8 8q24.13 WD repeat domain 67 protein-coding WDR67 WD repeat domain 67 O WD repeat-containing protein 67 20121230 -9606 93611 FBXO44 RP3-330O12.2 FBG3|FBX30|FBX6A|Fbx44|Fbxo6a HGNC:24847|MIM:609111|Ensembl:ENSG00000132879|HPRD:16445|Vega:OTTHUMG00000002071 1 1p36.22 F-box protein 44 protein-coding FBXO44 F-box protein 44 O F-box gene 3|F-box only protein 44|F-box protein FBX30|F-box/G-domain protein 3 20121230 -9606 93621 MRFAP1 - PAM14|PGR1 HGNC:24549|Ensembl:ENSG00000179010|HPRD:17589|Vega:OTTHUMG00000125504 4 4p16.1 Morf4 family associated protein 1 protein-coding MRFAP1 Morf4 family associated protein 1 O MORF4 family-associated protein 1|Mof4 family associated protein 1|T-cell activation protein|protein associated with MRG of 14 kDa|protein associated with MRG, 14 kDa 20121230 -9606 93622 LOC93622 - - HPRD:14300 4 4p16.1 Morf4 family associated protein 1-like 1 pseudogene pseudo - - - - 20121230 -9606 93624 TADA2B - ADA2(beta)|ADA2B HGNC:30781|MIM:608790|Ensembl:ENSG00000173011|Vega:OTTHUMG00000159983 4 4p16.1 transcriptional adaptor 2B protein-coding TADA2B transcriptional adaptor 2B O ADA2-beta|ADA2-like protein beta|transcriptional adapter 2-beta|transcriptional adaptor 2 (ADA2 homolog, yeast)-beta 20121230 -9606 93627 TBCK HSPC302 TBCKL HGNC:28261|Ensembl:ENSG00000145348|HPRD:17514|Vega:OTTHUMG00000131214 4 4q24 TBC1 domain containing kinase protein-coding TBCK TBC1 domain containing kinase O TBC domain-containing protein kinase-like protein 20121230 -9606 93643 TJAP1 RP3-337H4.1 PILT|TJP4 HGNC:17949|MIM:612658|Ensembl:ENSG00000137221|HPRD:10269|Vega:OTTHUMG00000014736 6 6p21.1 tight junction associated protein 1 (peripheral) protein-coding TJAP1 tight junction associated protein 1 (peripheral) O protein incorporated later into tight junctions|tight junction protein 4 (peripheral)|tight junction-associated protein 1 20121230 -9606 93649 MYOCD - MYCD HGNC:16067|MIM:606127|Ensembl:ENSG00000141052|HPRD:09362|Vega:OTTHUMG00000058767 17 17p11.2 myocardin protein-coding MYOCD myocardin O - 20121230 -9606 93650 ACPT - - HGNC:14376|MIM:606362|Ensembl:ENSG00000142513|HPRD:06964 19 19q13.4 acid phosphatase, testicular protein-coding ACPT acid phosphatase, testicular O testicular acid phosphatase 20121230 -9606 93653 ST7-AS1 - ST7AS1|ST7OT1 HGNC:16000 7 7q31.2 ST7 antisense RNA 1 miscRNA ST7-AS1 ST7 antisense RNA 1 O - 20121230 -9606 93654 ST7-AS2 - ST7AS2|ST7OT2 HGNC:16044 7 7q31.2 ST7 antisense RNA 2 miscRNA ST7-AS2 ST7 antisense RNA 2 O - 20121230 -9606 93655 ST7-OT3 - NCRNA00026|ST7|ST7OT3 HGNC:16045 7 7q31.3 ST7 overlapping transcript 3 (non-protein coding) miscRNA ST7-OT3 ST7 overlapping transcript 3 (non-protein coding) O - 20121230 -9606 93659 CGB5 - HCG HGNC:16452|MIM:608825|Ensembl:ENSG00000189052|HPRD:12309 19 19q13.32 chorionic gonadotropin, beta polypeptide 5 protein-coding CGB5 chorionic gonadotropin, beta polypeptide 5 O chorionic gonadotropin beta 5 subunit 20121230 -9606 93661 CAPZA3 - CAPPA3|Gsg3 HGNC:24205|MIM:608722|Ensembl:ENSG00000177938|HPRD:12282|Vega:OTTHUMG00000169001 12 12p12.3 capping protein (actin filament) muscle Z-line, alpha 3 protein-coding CAPZA3 capping protein (actin filament) muscle Z-line, alpha 3 O CP-alpha-3|CapZ alpha-3|F-actin capping protein alpha-3 subunit|F-actin-capping protein subunit alpha-3|germ cell-specific protein 3 20121230 -9606 93663 ARHGAP18 - MacGAP|SENEX|bA307O14.2 HGNC:21035|MIM:613351|Ensembl:ENSG00000146376|HPRD:12474|Vega:OTTHUMG00000015547 6 6q22.33 Rho GTPase activating protein 18 protein-coding ARHGAP18 Rho GTPase activating protein 18 O rho GTPase-activating protein 18|rho-type GTPase-activating protein 18 20121230 -9606 93664 CADPS2 - - HGNC:16018|MIM:609978|Ensembl:ENSG00000081803|HPRD:12996|Vega:OTTHUMG00000157093 7 7q31.3 Ca++-dependent secretion activator 2 protein-coding CADPS2 Ca++-dependent secretion activator 2 O CAPS-2|Ca2+-dependent activator protein for secretion 2|calcium-dependent activator protein for secretion 2|calcium-dependent secretion activator 2 20121230 -9606 93668 HPYR1 - HPRG1|LINC00027|NCRNA00027 HGNC:16071 8 8q24.22 Helicobacter pylori responsive 1 (non-protein coding) miscRNA HPYR1 Helicobacter pylori responsive 1 (non-protein coding) O - 20121230 -9606 93669 C12orf9 - LPP-LRFT HGNC:15949 12 - chromosome 12 open reading frame 9 protein-coding C12orf9 chromosome 12 open reading frame 9 O - 20121130 -9606 93948 RPS23P1 - RPS23_3_930 HGNC:16043 8 8q23 ribosomal protein S23 pseudogene 1 pseudo RPS23P1 ribosomal protein S23 pseudogene 1 O - 20121230 -9606 93953 ACRC - NAAR1 HGNC:15805|MIM:300369|Ensembl:ENSG00000147174|HPRD:02298|Vega:OTTHUMG00000033327 X Xq13.1 acidic repeat containing protein-coding ACRC acidic repeat containing O acidic repeat-containing protein|putative nuclear protein 20121230 -9606 93956 AOCH - - MIM:606049 11 - Acromegaloid features, overgrowth, cleft palate, and hernia unknown - - - - 20120622 -9606 93973 ACTR8 - ARP8|INO80N|hArp8 HGNC:14672|Ensembl:ENSG00000113812|HPRD:09792|Vega:OTTHUMG00000158279 3 - ARP8 actin-related protein 8 homolog (yeast) protein-coding ACTR8 ARP8 actin-related protein 8 homolog (yeast) O INO80 complex subunit N|actin-related protein 8 20121230 -9606 93974 ATPIF1 RP5-1092A3.1 ATPI|ATPIP|IP HGNC:871|MIM:614981|Ensembl:ENSG00000130770|HPRD:16529|Vega:OTTHUMG00000003533 1 1p35.3 ATPase inhibitory factor 1 protein-coding ATPIF1 ATPase inhibitory factor 1 O ATP synthase inhibitor protein|ATPase inhibitor protein|ATPase inhibitor, mitochondrial|IF(1)|IF1|inhibitor of F(1)F(o)-ATPase 20121230 -9606 93978 CLEC6A - CLEC4N|CLECSF10 HGNC:14556|MIM:613579|Ensembl:ENSG00000205846|HPRD:16722|Vega:OTTHUMG00000168672 12 12p13 C-type lectin domain family 6, member A protein-coding CLEC6A C-type lectin domain family 6, member A O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 10|C-type lectin domain family 6 member A|C-type lectin superfamily member 10|DC-associated C-type lectin 2|dectin 2|dectin-2|dendritic cell-associated C-type lectin 2 20121230 -9606 93979 CPA5 - - HGNC:15722|MIM:609561|Ensembl:ENSG00000158525|HPRD:07097|Vega:OTTHUMG00000157824 7 7q32 carboxypeptidase A5 protein-coding CPA5 carboxypeptidase A5 O - 20121230 -9606 93980 DYRK1AIP1 - - HGNC:14401 - - DYRK1A interacting protein 1 protein-coding DYRK1AIP1 DYRK1A interacting protein 1 O - 20080828 -9606 93981 DYRK1AIP2 - - HGNC:14459 - - DYRK1A interacting protein 2 protein-coding DYRK1AIP2 DYRK1A interacting protein 2 O - 20080828 -9606 93983 DYT13 - - HGNC:3101|MIM:607671 1 1p36 dystonia 13, torsion unknown DYT13 dystonia 13, torsion O - 20120622 -9606 93985 FGS3 - - HGNC:15596|MIM:300406 X Xp22.3 FG syndrome 3 unknown FGS3 FG syndrome 3 O - 20120622 -9606 93986 FOXP2 - CAGH44|SPCH1|TNRC10 HGNC:13875|MIM:605317|Ensembl:ENSG00000128573|HPRD:05611|Vega:OTTHUMG00000023131 7 7q31 forkhead box P2 protein-coding FOXP2 forkhead box P2 O CAG repeat protein 44|forkhead box protein P2|forkhead/winged-helix transcription factor|trinucleotide repeat containing 10|trinucleotide repeat-containing gene 10 protein 20121230 -9606 93991 MRX77 - - HGNC:15824|MIM:300454 X - mental retardation, X-linked 77 unknown MRX77 mental retardation, X-linked 77 O - 20120622 -9606 93993 NDUFB3P1 - - HGNC:13673 1 1p13.3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa pseudogene 1 pseudo NDUFB3P1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa pseudogene 1 O - 20121230 -9606 93994 NDUFB3P2 - - HGNC:13674 9 9q33.3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa pseudogene 2 pseudo NDUFB3P2 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa pseudogene 2 O - 20121230 -9606 93995 NDUFB3P4 - - HGNC:13676 14 - NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa pseudogene 4 pseudo NDUFB3P4 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa pseudogene 4 O - 20121230 -9606 93996 NDUFB3P3 - - HGNC:13675 14 14q22.1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa pseudogene 3 pseudo NDUFB3P3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa pseudogene 3 O - 20121230 -9606 93997 NDUFB3P5 - - HGNC:13677 X - NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa pseudogene 5 pseudo NDUFB3P5 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa pseudogene 5 O - 20121230 -9606 93999 OTSC2 - - HGNC:8520|MIM:605727 7 7q34-q36 otosclerosis 2 unknown OTSC2 otosclerosis 2 O - 20120622 -9606 94003 PDB4 - - HGNC:16033|MIM:606263 5 5q31 Paget disease of bone 4 unknown PDB4 Paget disease of bone 4 O - 20120622 -9606 94005 PIGS UNQ1873/PRO4316 - HGNC:14937|MIM:610271|Ensembl:ENSG00000087111|HPRD:15135|Vega:OTTHUMG00000132604 17 17p13.2 phosphatidylinositol glycan anchor biosynthesis, class S protein-coding PIGS phosphatidylinositol glycan anchor biosynthesis, class S O GPI transamidase component PIG-S|GPI transamidase subunit|phosphatidylinositol glycan, class S|phosphatidylinositol-glycan biosynthesis class S protein 20121230 -9606 94008 SCA18 - SMNA HGNC:15744|MIM:607458 7 7q22-q32 spinocerebellar ataxia 18 (sensory with neurogenic muscular atrophy) unknown SCA18 spinocerebellar ataxia 18 (sensory with neurogenic muscular atrophy) O - 20120622 -9606 94009 SERHL CTA-126B4.2 BK126B4.1|BK126B4.2|HS126B42|dJ222E13.1 HGNC:14408|MIM:607979|HPRD:10465 22 22q13.2-q13.31 serine hydrolase-like pseudo SERHL serine hydrolase-like O - 20121230 -9606 94014 TRICY1 - - HGNC:12302|MIM:609649 3 3p24.1-p22.1 trichilemmal cyst 1 unknown TRICY1 trichilemmal cyst 1 O - 20120622 -9606 94015 TTYH2 - C17orf29 HGNC:13877|MIM:608855|Ensembl:ENSG00000141540|HPRD:16394|Vega:OTTHUMG00000166018 17 17q25.1 tweety homolog 2 (Drosophila) protein-coding TTYH2 tweety homolog 2 (Drosophila) O hTTY2|protein tweety homolog 2 20121230 -9606 94017 TRNAS1 - TRS1 HGNC:16292|MIM:606171 6 6p22.1 transfer RNA serine 1 (anticodon UGA) tRNA TRNAS1 transfer RNA serine 1 (anticodon UGA) O - 20121230 -9606 94023 DKFZp566F0947 - - - 19 19q12 uncharacterized LOC94023 miscRNA - - - - 20121230 -9606 94025 MUC16 - CA125 HGNC:15582|MIM:606154|Ensembl:ENSG00000181143 19 19p13.2 mucin 16, cell surface associated protein-coding MUC16 mucin 16, cell surface associated O CA-125|CA125 ovarian cancer antigen|MUC-16|mucin-16|ovarian cancer-related tumor marker CA125|ovarian carcinoma antigen CA125 20121230 -9606 94026 POM121L2 - POM121-L|POM121L HGNC:13973|Ensembl:ENSG00000158553|Vega:OTTHUMG00000014475 6 6p22.1 POM121 transmembrane nucleoporin-like 2 protein-coding POM121L2 POM121 transmembrane nucleoporin-like 2 O OM121 membrane glycoprotein (rat homolog)-like 2|POM121 membrane glycoprotein (rat homolog)-like 2|POM121 membrane glycoprotein-like 2|POM121-like protein 2 20121230 -9606 94027 CGB7 - CG-beta-a|CGB6 HGNC:16451|MIM:608826|Ensembl:ENSG00000196337|HPRD:12310 19 19q13.32 chorionic gonadotropin, beta polypeptide 7 protein-coding CGB7 chorionic gonadotropin, beta polypeptide 7 O chorionic gonadotropin beta 7 subunit 20121230 -9606 94030 LRRC4B - HSM|LRIG4 HGNC:25042|Ensembl:ENSG00000131409 19 19q13.33 leucine rich repeat containing 4B protein-coding LRRC4B leucine rich repeat containing 4B O NGL-3|leucine-rich repeat-containing protein 4B|leucine-rich repeats and immunoglobulin-like domains 4|netrin-G3 ligand 20121230 -9606 94031 HTRA3 - Prsp|Tasp HGNC:30406|MIM:608785|Ensembl:ENSG00000170801|HPRD:08821|Vega:OTTHUMG00000090561 4 4p16.1 HtrA serine peptidase 3 protein-coding HTRA3 HtrA serine peptidase 3 O high-temperature requirement factor A3|pregnancy-related serine protease|probable serine protease HTRA3|serine protease HTRA3 20121230 -9606 94032 CAMK2N2 - CAM-KIIN|CAMKIIN HGNC:24197|MIM:608721|Ensembl:ENSG00000163888|HPRD:16377|Vega:OTTHUMG00000156821 3 3q27.1 calcium/calmodulin-dependent protein kinase II inhibitor 2 protein-coding CAMK2N2 calcium/calmodulin-dependent protein kinase II inhibitor 2 O CaM-KII inhibitory protein 20121230 -9606 94033 FTMT - MTF HGNC:17345|MIM:608847|Ensembl:ENSG00000181867|HPRD:12316|Vega:OTTHUMG00000128912 5 5q21.3 ferritin mitochondrial protein-coding FTMT ferritin mitochondrial O ferritin H subunit|ferritin, mitochondrial|mitochondrial ferritin 20121230 -9606 94039 ZNF101 - HZF12 HGNC:12881|MIM:603983|Ensembl:ENSG00000181896|HPRD:11963|Vega:OTTHUMG00000167736 19 19p13.11 zinc finger protein 101 protein-coding ZNF101 zinc finger protein 101 O zinc finger protein 101 (Y2)|zinc finger protein 12|zinc finger protein HZF12 20121230 -9606 94056 SYAP1 PRO3113 - HGNC:16273|Ensembl:ENSG00000169895|HPRD:06733|Vega:OTTHUMG00000021192 X Xp22.2 synapse associated protein 1 protein-coding SYAP1 synapse associated protein 1 O SAP47 homolog|synapse associated protein 1, SAP47 homolog|synapse-associated protein 1 20121230 -9606 94059 LENG9 XXbac-BCX535A19.4 - HGNC:16306|Ensembl:ENSG00000182909|HPRD:13986|Vega:OTTHUMG00000065700 19 19q13.4 leukocyte receptor cluster (LRC) member 9 protein-coding LENG9 leukocyte receptor cluster (LRC) member 9 O leukocyte receptor cluster member 9 20121230 -9606 94081 SFXN1 - - HGNC:16085|Ensembl:ENSG00000164466|HPRD:18044|Vega:OTTHUMG00000130555 5 - sideroflexin 1 protein-coding SFXN1 sideroflexin 1 O TCC|sideroflexin-1|tricarboxylate carrier protein 20121230 -9606 94086 HSPB9 - CT51 HGNC:30589|MIM:608344|Ensembl:ENSG00000197723|HPRD:16319|Vega:OTTHUMG00000133500 17 17q21.2 heat shock protein, alpha-crystallin-related, B9 protein-coding HSPB9 heat shock protein, alpha-crystallin-related, B9 O cancer/testis antigen 51|heat shock protein beta-9|small heat shock protein B9 20121230 -9606 94097 SFXN5 - BBG-TCC HGNC:16073|Ensembl:ENSG00000144040|HPRD:18047|Vega:OTTHUMG00000129775 2 - sideroflexin 5 protein-coding SFXN5 sideroflexin 5 O sideroflexin-5 20121230 -9606 94101 ORMDL1 HSPC202 - HGNC:16036|MIM:610073|Ensembl:ENSG00000128699|HPRD:15092|Vega:OTTHUMG00000132661 2 2q32 ORM1-like 1 (S. cerevisiae) protein-coding ORMDL1 ORM1-like 1 (S. cerevisiae) O ORM1-like protein 1|adoplin-1 20121230 -9606 94103 ORMDL3 - - HGNC:16038|MIM:610075|Ensembl:ENSG00000172057|HPRD:17803|Vega:OTTHUMG00000133249 17 17q12 ORM1-like 3 (S. cerevisiae) protein-coding ORMDL3 ORM1-like 3 (S. cerevisiae) O ORM1-like protein 3 20121230 -9606 94104 GCFC1 - BM020|C21orf66|FSAP105|GCFC HGNC:13579|Ensembl:ENSG00000159086|HPRD:10761|Vega:OTTHUMG00000064980 21 21q21.3 GC-rich sequence DNA-binding factor 1 protein-coding GCFC1 GC-rich sequence DNA-binding factor 1 O GC-rich sequence DNA-binding factor candidate|functional spliceosome-associated protein 105 20121230 -9606 94107 TMEM203 - HBEBP1 HGNC:28217|Ensembl:ENSG00000187713|HPRD:17496|Vega:OTTHUMG00000020985 9 9q34.3 transmembrane protein 203 protein-coding TMEM203 transmembrane protein 203 O HBeAg-binding protein 1 20121230 -9606 94115 CGB8 - - HGNC:16453|MIM:608827|Ensembl:ENSG00000213030|HPRD:12311|Vega:OTTHUMG00000180609 19 19q13.32 chorionic gonadotropin, beta polypeptide 8 protein-coding CGB8 chorionic gonadotropin, beta polypeptide 8 O chorionic gonadotropin beta 8 subunit 20121230 -9606 94120 SYTL3 - SLP3 HGNC:15587|Ensembl:ENSG00000164674|HPRD:15462|Vega:OTTHUMG00000015916 6 6q25.3 synaptotagmin-like 3 protein-coding SYTL3 synaptotagmin-like 3 O exophilin-6|synaptotagmin-like protein 3 20121230 -9606 94121 SYTL4 RP11-524D16__A.2 SLP4 HGNC:15588|MIM:300723|Ensembl:ENSG00000102362|HPRD:06735|Vega:OTTHUMG00000022004 X Xq21.33 synaptotagmin-like 4 protein-coding SYTL4 synaptotagmin-like 4 O exophilin-2|granuphilin-a|synaptotagmin-like protein 4 20121230 -9606 94122 SYTL5 - slp5 HGNC:15589|Ensembl:ENSG00000147041|HPRD:06736|Vega:OTTHUMG00000033176 X Xp21.1 synaptotagmin-like 5 protein-coding SYTL5 synaptotagmin-like 5 O exophilin 9|synaptotagmin-like protein 5 20121230 -9606 94134 ARHGAP12 - - HGNC:16348|MIM:610577|Ensembl:ENSG00000165322|HPRD:06446|Vega:OTTHUMG00000017911 10 10p11.22 Rho GTPase activating protein 12 protein-coding ARHGAP12 Rho GTPase activating protein 12 O rho GTPase-activating protein 12|rho-type GTPase-activating protein 12 20121230 -9606 94137 RP1L1 - DCDC4B HGNC:15946|MIM:608581|Ensembl:ENSG00000183638|HPRD:10546|Vega:OTTHUMG00000163806 8 8p23.1 retinitis pigmentosa 1-like 1 protein-coding RP1L1 retinitis pigmentosa 1-like 1 O retinitis pigmentosa 1-like 1 protein 20121230 -9606 94138 DFNA32 - - HGNC:2804 11 11p15 deafness, autosomal dominant 32 unknown DFNA32 deafness, autosomal dominant 32 O - 20110215 -9606 94139 DFNA34 - - HGNC:2806 1 1q44 deafness, autosomal dominant 34 unknown DFNA34 deafness, autosomal dominant 34 O - 20110215 -9606 94140 DFNA35 - - HGNC:2807 - - deafness, autosomal dominant 35 unknown DFNA35 deafness, autosomal dominant 35 O - 20110215 -9606 94142 DFNA41 - - HGNC:15575|MIM:608224 12 12q24.1-q24.3 deafness, autosomal dominant 41 unknown DFNA41 deafness, autosomal dominant 41 O - 20120622 -9606 94144 CDRT2 - - HGNC:14381 17 17p12 CMT1A duplicated region transcript 2 unknown CDRT2 CMT1A duplicated region transcript 2 O - 20110702 -9606 94145 CDRT3 - - HGNC:14382 17 17p12 CMT1A duplicated region transcript 3 unknown CDRT3 CMT1A duplicated region transcript 3 O - 20120508 -9606 94148 CDRT5 - - HGNC:14384 17 17p12 CMT1A duplicated region transcript 5 unknown CDRT5 CMT1A duplicated region transcript 5 O - 20110702 -9606 94150 CDRT7 - LINC00025|NCRNA00025 HGNC:14386 17 17p12 CMT1A duplicated region transcript 7 (non-protein coding) miscRNA CDRT7 CMT1A duplicated region transcript 7 (non-protein coding) O - 20121230 -9606 94151 CDRT8 - - HGNC:14387 17 17p12 CMT1A duplicated region transcript 8 unknown CDRT8 CMT1A duplicated region transcript 8 O - 20120508 -9606 94153 CDRT10 - - HGNC:14390 17 17p12 CMT1A duplicated region transcript 10 unknown CDRT10 CMT1A duplicated region transcript 10 O - 20110702 -9606 94154 CDRT11 - - HGNC:14391 17 17p12 CMT1A duplicated region transcript 11 unknown CDRT11 CMT1A duplicated region transcript 11 O - 20110702 -9606 94155 CDRT12 - - HGNC:14392 17 17p12 CMT1A duplicated region transcript 12 unknown CDRT12 CMT1A duplicated region transcript 12 O - 20110702 -9606 94156 CDRT13 - - HGNC:14393 17 17p12 CMT1A duplicated region transcript 13 unknown CDRT13 CMT1A duplicated region transcript 13 O - 20110702 -9606 94158 CDRT15P1 - CDRT15P HGNC:33168 17 17p12 CMT1A duplicated region transcript 15 pseudogene 1 pseudo CDRT15P1 CMT1A duplicated region transcript 15 pseudogene 1 O - 20121230 -9606 94160 ABCC12 - MRP9 HGNC:14640|MIM:607041|Ensembl:ENSG00000140798|HPRD:06128|Vega:OTTHUMG00000133143 16 16q12.1 ATP-binding cassette, sub-family C (CFTR/MRP), member 12 protein-coding ABCC12 ATP-binding cassette, sub-family C (CFTR/MRP), member 12 O ATP-binding cassette sub-family C member 12|ATP-binding cassette transporter sub-family C member 12|multidrug resistance-associated protein 9 20121230 -9606 94161 SNORD46 - RNU40|RNU46|U40|U46 HGNC:10186 1 1p34.1 small nucleolar RNA, C/D box 46 snoRNA SNORD46 small nucleolar RNA, C/D box 46 O - 20121230 -9606 94162 SNORD38A - RNU38A|U38A HGNC:30355 1 1p34.1 small nucleolar RNA, C/D box 38A snoRNA SNORD38A small nucleolar RNA, C/D box 38A O - 20121230 -9606 94163 SNORD38B - RNU38B|U38B HGNC:30356 1 1p34.1 small nucleolar RNA, C/D box 38B snoRNA SNORD38B small nucleolar RNA, C/D box 38B O - 20121230 -9606 94233 OPN4 - MOP HGNC:14449|MIM:606665|Ensembl:ENSG00000122375|HPRD:05977|Vega:OTTHUMG00000018654 10 10q22 opsin 4 protein-coding OPN4 opsin 4 O melanopsin|opsin-4 20121230 -9606 94234 FOXQ1 - HFH1 HGNC:20951|MIM:612788|Ensembl:ENSG00000164379|HPRD:17015|Vega:OTTHUMG00000016160 6 6p25 forkhead box Q1 protein-coding FOXQ1 forkhead box Q1 O HFH-1|HNF-3/forkhead-like protein 1|forkhead box protein Q1|hepatocyte nuclear factor 3 forkhead homolog 1|winged helix/forkhead transcription factor 20121230 -9606 94235 GNG8 - - HGNC:19664|Ensembl:ENSG00000167414|HPRD:13593 19 19q13.32 guanine nucleotide binding protein (G protein), gamma 8 protein-coding GNG8 guanine nucleotide binding protein (G protein), gamma 8 O gamma-9|guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-8 20121230 -9606 94236 DNAJA1P5 - HEJ1 HGNC:39341 1 1p22 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 5 pseudo DNAJA1P5 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 5 O - 20121230 -9606 94239 H2AFV - H2AV HGNC:20664|Ensembl:ENSG00000105968|HPRD:13623|Vega:OTTHUMG00000129217 7 7p13 H2A histone family, member V protein-coding H2AFV H2A histone family, member V O H2A.F/Z|histone H2A.F/Z|histone H2A.V|purine-rich binding element protein B 20121230 -9606 94240 EPSTI1 RP11-145J3.1 BRESI1 HGNC:16465|MIM:607441|Ensembl:ENSG00000133106|HPRD:06309|Vega:OTTHUMG00000016814 13 13q13.3 epithelial stromal interaction 1 (breast) protein-coding EPSTI1 epithelial stromal interaction 1 (breast) O epithelial stromal interaction protein 1|epithelial-stromal interaction protein 1 20121230 -9606 94241 TP53INP1 - SIP|TP53DINP1|TP53INP1A|TP53INP1B|Teap|p53DINP1 HGNC:18022|MIM:606185|Ensembl:ENSG00000164938|HPRD:09367|Vega:OTTHUMG00000164697 8 8q22 tumor protein p53 inducible nuclear protein 1 protein-coding TP53INP1 tumor protein p53 inducible nuclear protein 1 O p53-dependent damage-inducible nuclear protein 1|p53-inducible p53DINP1|stress-induced protein|tumor protein p53-inducible nuclear protein 1 20121230 -9606 94274 PPP1R14A - CPI-17|CPI17|PPP1INL HGNC:14871|MIM:608153|Ensembl:ENSG00000167641|HPRD:16291|Vega:OTTHUMG00000181892 19 19q13.1 protein phosphatase 1, regulatory (inhibitor) subunit 14A protein-coding PPP1R14A protein phosphatase 1, regulatory (inhibitor) subunit 14A O 17 kDa PKC-potentiated inhibitory protein of PP1|17-KDa protein|17-kDa PKC-potentiated inhibitory protein of PP1|PKC-potentiated inhibitory protein of PP1|protein kinase C-potentiated inhibitor protein of 17 kDa|protein phosphatase 1 regulatory subunit 14A 20121230 -9606 94297 PPP1R11P1 - - HGNC:16326 1 1p36.12 protein phosphatase 1, regulatory (inhibitor) subunit 11 pseudogene 1 pseudo PPP1R11P1 protein phosphatase 1, regulatory (inhibitor) subunit 11 pseudogene 1 O - 20121230 -9606 94298 PPP1R11P2 RP3-453A3.1 - HGNC:16327 X Xp11.21 protein phosphatase 1, regulatory (inhibitor) subunit 11 pseudogene 2 pseudo PPP1R11P2 protein phosphatase 1, regulatory (inhibitor) subunit 11 pseudogene 2 O - 20121230 -9606 94299 TP53BP2P1 - PPP1R13AP HGNC:16328 8 8p21.3 tumor protein p53 binding protein, 2 pseudogene 1 pseudo TP53BP2P1 tumor protein p53 binding protein, 2 pseudogene 1 O - 20111005 -9606 94302 PPP1R14BP4 - - HGNC:16331 7 7p14.2 protein phosphatase 1, regulatory (inhibitor) subunit 14B pseudogene 4 pseudo PPP1R14BP4 protein phosphatase 1, regulatory (inhibitor) subunit 14B pseudogene 4 O - 20121230 -9606 94304 PPP1R1AP1 - - HGNC:16316 11 11q13.5 protein phosphatase 1, regulatory (inhibitor) subunit 1A pseudogene 1 pseudo PPP1R1AP1 protein phosphatase 1, regulatory (inhibitor) subunit 1A pseudogene 1 O - 20121230 -9606 94309 PPP1R2P7 - - HGNC:16322 4 - protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 7 pseudo PPP1R2P7 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 7 O - 20090331 -9606 94310 PPP1R2P8 - - HGNC:16323 5 - protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 8 pseudo PPP1R2P8 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 8 O - 20121230 -9606 94313 AUTS5 - - MIM:606053 2 2q Autism, susceptibility to, 5 unknown - - - - 20120622 -9606 94337 MNG3 - - MIM:606082 3 3q26.1-q26.3 Multinodular goiter-3 unknown - - - - 20120622 -9606 95681 CEP41 - JBTS15|TSGA14 HGNC:12370|MIM:610523|Ensembl:ENSG00000106477|HPRD:15574|Vega:OTTHUMG00000157823 7 7q32 centrosomal protein 41kDa protein-coding CEP41 centrosomal protein 41kDa O centrosomal protein 41 kDa|centrosomal protein of 41 kDa|testis specific protein A14|testis specific, 14|testis-specific gene A14 protein 20121230 -9606 96459 FNIP1 - - HGNC:29418|MIM:610594|Ensembl:ENSG00000217128|HPRD:17233|Vega:OTTHUMG00000162686 5 5q23.3 folliculin interacting protein 1 protein-coding FNIP1 folliculin interacting protein 1 O folliculin-interacting protein 1 20121230 -9606 96597 TBC1D27 - - HGNC:28104 17 17p11.2 TBC1 domain family, member 27 protein-coding TBC1D27 TBC1 domain family, member 27 O - 20121230 -9606 96610 LOC96610 - - HPRD:14302 22 22q11.22 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121230 -9606 96626 LIMS3 - PINCH-3 HGNC:30047|Ensembl:ENSG00000256977|HPRD:17277|Vega:OTTHUMG00000131197 2 2q13 LIM and senescent cell antigen-like domains 3 protein-coding LIMS3 LIM and senescent cell antigen-like domains 3 O LIM and senescent cell antigen-like-containing domain protein 3|particularly interesting new Cys-His protein 3|pinch 2 20121230 -9606 96764 TGS1 - NCOA6IP|PIMT|PIPMT HGNC:17843|MIM:606461|Ensembl:ENSG00000137574|HPRD:07567|Vega:OTTHUMG00000164294 8 8q11 trimethylguanosine synthase 1 protein-coding TGS1 trimethylguanosine synthase 1 O CLL-associated antigen KW-2|PRIP-interacting protein PIPMT|PRIP-interacting protein with methyltransferase domain|PRIP-interacting protein with methyltransferase motif|SEREX-defined|cap-specific guanine-N2 methyltransferase|hepatocellular carcinoma-associated antigen 137|nuclear receptor coactivator 6 interacting protein|nuclear receptor coactivator 6-interacting protein|trimethylguanosine synthase|trimethylguanosine synthase homolog 20121230 -9606 100917 VWSM - - MIM:604547 17 17p11.2-p11.2 Van der Woude syndrome modifier unknown - - - - 20110215 -9606 100918 NRCLP - NRCLP2 MIM:605841 4 4p13-q21 Narcolepsy, HLA-associated unknown - - - - 20120622 -9606 103910 MYL12B - MLC-B|MRLC2 HGNC:29827|MIM:609211|Ensembl:ENSG00000118680|HPRD:10095|Vega:OTTHUMG00000131510 18 18p11.31 myosin, light chain 12B, regulatory protein-coding MYL12B myosin, light chain 12B, regulatory O MLC-2|MLC-2A|MLC20|SHUJUN-1|myosin regulatory light chain 12B|myosin regulatory light chain 2|myosin regulatory light chain 2-B, smooth muscle isoform|myosin regulatory light chain 20 kDa|myosin regulatory light chain MRLC2 20121230 -9606 103911 RPS27AP1 - RPS27AP|RPS27A_6_1513 HGNC:17121 17 17p13.1 ribosomal protein S27a pseudogene 1 pseudo RPS27AP1 ribosomal protein S27a pseudogene 1 O - 20121230 -9606 112398 EGLN2 - EIT6|HIF-PH1|HIFPH1|HPH-1|HPH-3|PHD1 HGNC:14660|MIM:606424|Ensembl:ENSG00000171570|HPRD:06970 19 19q13.2 egl nine homolog 2 (C. elegans) protein-coding EGLN2 egl nine homolog 2 (C. elegans) O HIF-prolyl hydroxylase 1|egl nine homolog 2|estrogen-induced tag 6|hypoxia-inducible factor prolyl hydroxylase 1|prolyl hydroxylase domain-containing protein 1 20121230 -9606 112399 EGLN3 - HIFP4H3|HIFPH3|PHD3 HGNC:14661|MIM:606426|Ensembl:ENSG00000129521|HPRD:06972|Vega:OTTHUMG00000029498 14 14q13.1 egl nine homolog 3 (C. elegans) protein-coding EGLN3 egl nine homolog 3 (C. elegans) O HIF prolyl hydroxylase 3|HIF-PH3|HIF-prolyl hydroxylase 3|HPH-1|HPH-3|egl nine homolog 3|egl nine-like protein 3 isoform|hypoxia-inducible factor prolyl hydroxylase 3|prolyl hydroxylase domain-containing protein 3 20121230 -9606 112401 BIRC8 - ILP-2|ILP2|hILP2 HGNC:14878|Ensembl:ENSG00000163098|HPRD:12525 19 - baculoviral IAP repeat containing 8 protein-coding BIRC8 baculoviral IAP repeat containing 8 O IAP-like protein 2|baculoviral IAP repeat-containing 8|baculoviral IAP repeat-containing protein 8|inhibitor of apoptosis-like protein 2|testis-specific inhibitor of apoptosis 20121230 -9606 112464 PRKCDBP - CAVIN3|HSRBC|SRBC|cavin-3 HGNC:9400|Ensembl:ENSG00000170955|HPRD:17908|Vega:OTTHUMG00000133378 11 11p15.4 protein kinase C, delta binding protein protein-coding PRKCDBP protein kinase C, delta binding protein O protein kinase C delta-binding protein|sdr-related gene product that binds to c-kinase|serum deprivation response factor-related gene product that binds to C-kinase 20121230 -9606 112476 PRRT2 - BFIC2|BFIS2|DSPB3|DYT10|EKD1|ICCA|IFITMD1|PKC HGNC:30500|MIM:614386|Ensembl:ENSG00000167371|HPRD:13995|Vega:OTTHUMG00000177142 16 16p11.2 proline-rich transmembrane protein 2 protein-coding PRRT2 proline-rich transmembrane protein 2 O dispanin subfamily B member 3|interferon induced transmembrane protein domain containing 1 20121230 -9606 112479 ERI2 - EXOD1 HGNC:30541|Ensembl:ENSG00000196678|HPRD:14456|Vega:OTTHUMG00000131557 16 16p12.3 ERI1 exoribonuclease family member 2 protein-coding ERI2 ERI1 exoribonuclease family member 2 O ERI1 exoribonuclease 2|enhanced RNAi three prime mRNA exonuclease homolog 2|exonuclease domain containing 1|exonuclease domain-containing protein 1|exoribonuclease 2 20121230 -9606 112483 SAT2 - SSAT2 HGNC:23160|MIM:611463|Ensembl:ENSG00000141504|HPRD:15296|Vega:OTTHUMG00000108152 17 17p13.1 spermidine/spermine N1-acetyltransferase family member 2 protein-coding SAT2 spermidine/spermine N1-acetyltransferase family member 2 O diamine N-acetyltransferase 2|diamine acetyltransferase 2|polyamine N-acetyltransferase 2|spermidine/spermine N(1)-acetyltransferase 2|spermidine/spermine N1-acetyltransferase 2|thialysine N-epsilon-acetyltransferase 20121230 -9606 112487 DTD2 - C14orf126 HGNC:20277|Ensembl:ENSG00000129480|HPRD:16599|Vega:OTTHUMG00000140205 14 14q12 D-tyrosyl-tRNA deacylase 2 (putative) protein-coding DTD2 D-tyrosyl-tRNA deacylase 2 (putative) O probable D-tyrosyl-tRNA(Tyr) deacylase 2 20121230 -9606 112495 GTF3C6 NPD020 C6orf51|TFIIIC35|bA397G5.3 HGNC:20872|MIM:611784|Ensembl:ENSG00000155115|HPRD:12886|Vega:OTTHUMG00000015370 6 6q21 general transcription factor IIIC, polypeptide 6, alpha 35kDa protein-coding GTF3C6 general transcription factor IIIC, polypeptide 6, alpha 35kDa O TFIIIC 35 kDa subunit|general transcription factor 3C polypeptide 6|transcription factor IIIC 35 kDa subunit|transcription factor IIIC 35kDa|transcription factor IIIC subunit 6 20121230 -9606 112574 SNX18 - SH3PX2|SH3PXD3B|SNAG1 HGNC:19245|Ensembl:ENSG00000178996|HPRD:15407|Vega:OTTHUMG00000096994 5 5q11.2 sorting nexin 18 protein-coding SNX18 sorting nexin 18 O SH3 and PX domain-containing protein 3B|sorting nexin associated golgi protein 1|sorting nexin-18|sorting nexin-associated Golgi protein 1 20121230 -9606 112597 LINC00152 - C2orf59|NCRNA00152 HGNC:28717|HPRD:14654 2 2p11.2 long intergenic non-protein coding RNA 152 miscRNA LINC00152 long intergenic non-protein coding RNA 152 O - 20121230 -9606 112609 MRAP2 - C6orf117|RP11-51G5.2|bA51G5.2 HGNC:21232|Ensembl:ENSG00000135324|HPRD:12843|Vega:OTTHUMG00000015121 6 6q14.2 melanocortin 2 receptor accessory protein 2 protein-coding MRAP2 melanocortin 2 receptor accessory protein 2 O melanocortin-2 receptor accessory protein 2 20121230 -9606 112611 RWDD2A - RWDD2|dJ747H23.2 HGNC:21385|Ensembl:ENSG00000013392|HPRD:15287|Vega:OTTHUMG00000015109 6 6q14.2 RWD domain containing 2A protein-coding RWDD2A RWD domain containing 2A O RWD domain containing 2|RWD domain-containing protein 2A 20121230 -9606 112616 CMTM7 - CKLFSF7 HGNC:19178|MIM:607890|Ensembl:ENSG00000153551|HPRD:06988|Vega:OTTHUMG00000155869 3 3p22.3 CKLF-like MARVEL transmembrane domain containing 7 protein-coding CMTM7 CKLF-like MARVEL transmembrane domain containing 7 O CKLF-like MARVEL transmembrane domain-containing protein 7|chemokine-like factor super family 7|chemokine-like factor super family member 7 variant 2|chemokine-like factor superfamily 7|chemokine-like factor superfamily member 7 20121230 -9606 112703 FAM71E1 - - HGNC:25107|Ensembl:ENSG00000142530|HPRD:18718 19 19q13.33 family with sequence similarity 71, member E1 protein-coding FAM71E1 family with sequence similarity 71, member E1 O protein FAM71E1 20121230 -9606 112714 TUBA3E - - HGNC:20765|Ensembl:ENSG00000152086|HPRD:17288|Vega:OTTHUMG00000131626 2 2q21.1 tubulin, alpha 3e protein-coding TUBA3E tubulin, alpha 3e O alpha-tubulin 3E|tubulin alpha-3E chain 20121230 -9606 112724 RDH13 PSEC0082 SDR7C3 HGNC:19978|Ensembl:ENSG00000160439|HPRD:17963|Vega:OTTHUMG00000180478 19 19q13.42 retinol dehydrogenase 13 (all-trans/9-cis) protein-coding RDH13 retinol dehydrogenase 13 (all-trans/9-cis) O retinol dehydrogenase 13|retinol dehydrogenase 13 (all-trans and 9-cis)|short chain dehydrogenase/reductase family 7C, member 3 20121230 -9606 112744 IL17F - CANDF6|IL-17F|ML-1|ML1 HGNC:16404|MIM:606496|Ensembl:ENSG00000112116|HPRD:16224|Vega:OTTHUMG00000014845 6 6p12 interleukin 17F protein-coding IL17F interleukin 17F O IL-24|cytokine ML-1|interleukin-17F|interleukin-24|mutant IL-17F 20121230 -9606 112752 IFT43 - C14orf179|CED3 HGNC:29669|MIM:614068|Ensembl:ENSG00000119650|HPRD:14449|Vega:OTTHUMG00000171613 14 14q24.3 intraflagellar transport 43 homolog (Chlamydomonas) protein-coding IFT43 intraflagellar transport 43 homolog (Chlamydomonas) O IFT complex A subunit|intraflagellar transport protein 43 homolog 20121230 -9606 112755 STX1B - STX1B1|STX1B2 HGNC:18539|MIM:601485|Ensembl:ENSG00000099365|HPRD:18126|Vega:OTTHUMG00000132391 16 16p11.2 syntaxin 1B protein-coding STX1B syntaxin 1B O FP17469|syntaxin 1B1|syntaxin 1B2|syntaxin-1B|syntaxin-1B1|syntaxin-1B2 20121230 -9606 112770 C1orf85 RP11-443G18.2 NCU-G1 HGNC:29436|Ensembl:ENSG00000198715|HPRD:14544|Vega:OTTHUMG00000019789 1 1q22 chromosome 1 open reading frame 85 protein-coding C1orf85 chromosome 1 open reading frame 85 O kidney predominant protein NCU-G1|lysosomal protein NCU-G1 20121230 -9606 112802 KRT71 - K6IRS1|KRT6IRS|KRT6IRS1 HGNC:28927|MIM:608245|Ensembl:ENSG00000139648|HPRD:09745|Vega:OTTHUMG00000167831 12 12q13.13 keratin 71 protein-coding KRT71 keratin 71 O CK-71|K71|cytokeratin-71|hK6irs|hK6irs1|keratin 6 irs|keratin, type II cytoskeletal 71|keratin-71|type II inner root sheath-specific keratin-K6irs1|type-II keratin Kb34 20121230 -9606 112812 FDX1L - FDX2 HGNC:30546|MIM:614585|Ensembl:ENSG00000267673|HPRD:14465|Vega:OTTHUMG00000141299 19 19p13.2 ferredoxin 1-like protein-coding FDX1L ferredoxin 1-like O adrenodoxin-like protein, mitochondrial|ferredoxin-1-like protein 20121230 -9606 112817 HOGA1 RP11-548K23.9 C10orf65|DHDPS2|DHDPSL|HP3|NPL2 HGNC:25155|MIM:613597|Ensembl:ENSG00000241935|HPRD:12584|Vega:OTTHUMG00000018859 10 10q24.2 4-hydroxy-2-oxoglutarate aldolase 1 protein-coding HOGA1 4-hydroxy-2-oxoglutarate aldolase 1 O DHDPS-like protein|N-acetylneuraminate pyruvate lyase 2 (putative)|dihydrodipicolinate synthase-like, mitochondrial|dihydrodipicolinate synthetase homolog 2|probable 2-keto-4-hydroxyglutarate aldolase|probable 4-hydroxy-2-oxoglutarate aldolase, mitochondrial|probable KHG-aldolase|protein 569272 20121230 -9606 112840 WDR89 MSTP050 C14orf150 HGNC:20489|Ensembl:ENSG00000140006|HPRD:12635|Vega:OTTHUMG00000140340 14 14q23.2 WD repeat domain 89 protein-coding WDR89 WD repeat domain 89 O WD repeat-containing protein 89 20121230 -9606 112846 RBM8B - - HGNC:13426 14 14q23.1 RNA binding motif protein 8B pseudogene pseudo RBM8B RNA binding motif protein 8B pseudogene O - 20121230 -9606 112849 L3HYPDH - C14orf149 HGNC:20488|MIM:614811|Ensembl:ENSG00000126790|HPRD:08065|Vega:OTTHUMG00000028941 14 14q23.1 L-3-hydroxyproline dehydratase (trans-) protein-coding L3HYPDH L-3-hydroxyproline dehydratase (trans-) O probable proline racemase|trans-3-hydroxy-l-proline dehydratase|trans-3-hydroxyl-L-proline dehydratase|trans-L-3-hydroxyproline dehydratase 20121230 -9606 112858 TP53RK RP1-28H20.1 BUD32|C20orf64|Nori-2|Nori-2p|PRPK|dJ101A2 HGNC:16197|MIM:608679|Ensembl:ENSG00000172315|HPRD:12276|Vega:OTTHUMG00000085887 20 20q13.2 TP53 regulating kinase protein-coding TP53RK TP53 regulating kinase O TP53-regulating kinase|p53-related protein kinase 20121230 -9606 112869 CCDC101 - SGF29|STAF36 HGNC:25156|MIM:613374|Ensembl:ENSG00000176476|HPRD:13996|Vega:OTTHUMG00000131763 16 16p11.2 coiled-coil domain containing 101 protein-coding CCDC101 coiled-coil domain containing 101 O SAGA-associated factor 29 homolog|coiled-coil domain-containing protein 101 20121230 -9606 112885 PHF21B AL049760.6 BHC80L|PHF4 HGNC:25161|Ensembl:ENSG00000056487|HPRD:13997|Vega:OTTHUMG00000151199 22 22q13.31 PHD finger protein 21B protein-coding PHF21B PHD finger protein 21B O PHD finger protein 4 20121230 -9606 112936 VPS26B - Pep8b HGNC:28119|MIM:610027|Ensembl:ENSG00000151502|HPRD:14395|Vega:OTTHUMG00000167175 11 11q25 vacuolar protein sorting 26 homolog B (S. pombe) protein-coding VPS26B vacuolar protein sorting 26 homolog B (S. pombe) O vacuolar protein sorting-associated protein 26B|vesicle protein sorting 26B 20121230 -9606 112937 GLB1L3 - - HGNC:25147|Ensembl:ENSG00000166105|HPRD:08814|HPRD:13998|Vega:OTTHUMG00000133524 11 11q25 galactosidase, beta 1-like 3 protein-coding GLB1L3 galactosidase, beta 1-like 3 O beta-galactosidase-1-like protein 3|galactosidase, beta 1 like 3 20121230 -9606 112939 NACC1 - BEND8|BTBD14B|NAC-1|NAC1 HGNC:20967|MIM:610672|Ensembl:ENSG00000160877|HPRD:10692|Vega:OTTHUMG00000180748 19 19p13.2 nucleus accumbens associated 1, BEN and BTB (POZ) domain containing protein-coding NACC1 nucleus accumbens associated 1, BEN and BTB (POZ) domain containing O BEN domain containing 8|BTB/POZ domain-containing protein 14B|nucleus accumbens-associated protein 1|transcriptional repressor NAC1 20121230 -9606 112942 CCDC104 UNQ163/PRO189 - HGNC:30540|Ensembl:ENSG00000163001|HPRD:14445|Vega:OTTHUMG00000129339 2 2p16.1 coiled-coil domain containing 104 protein-coding CCDC104 coiled-coil domain containing 104 O coiled-coil domain-containing protein 104 20121230 -9606 112950 MED8 RP1-92O14.5 ARC32 HGNC:19971|MIM:607956|Ensembl:ENSG00000159479|HPRD:06991|Vega:OTTHUMG00000007421 1 1p34.2 mediator complex subunit 8 protein-coding MED8 mediator complex subunit 8 O activator-recruited cofactor 32 kDa component|mediator of RNA polymerase II transcription subunit 8|mediator of RNA polymerase II transcription subunit MED8|mediator of RNA polymerase II transcription, subunit 8 homolog 20121230 -9606 112970 KTI12 SBBI81 RP11-91A18.3|TOT4 HGNC:25160|Ensembl:ENSG00000198841|HPRD:14471|Vega:OTTHUMG00000008630 1 1p32.3 KTI12 homolog, chromatin associated (S. cerevisiae) protein-coding KTI12 KTI12 homolog, chromatin associated (S. cerevisiae) O protein KTI12 homolog 20121230 -9606 113000 RPUSD1 - C16orf40|RLUCL HGNC:14173|Ensembl:ENSG00000007376|HPRD:08507|Vega:OTTHUMG00000047840 16 16p13.3 RNA pseudouridylate synthase domain containing 1 protein-coding RPUSD1 RNA pseudouridylate synthase domain containing 1 O RNA pseudouridylate synthase domain-containing protein 1|ribosomal large subunit pseudouridine synthase C like|ribosomal large subunit pseudouridine synthase C-like protein 20121230 -9606 113026 PLCD3 - - HGNC:9061|MIM:608795|Ensembl:ENSG00000161714|HPRD:07146 17 17q21.31 phospholipase C, delta 3 protein-coding PLCD3 phospholipase C, delta 3 O 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase delta-3|1-phosphatidylinositol-4,5-bisphosphate phosphodiesterase delta-3|PLC delta3|PLC-delta-3|phosphoinositide phospholipase C-delta-3|phospholipase C-delta-3 20121230 -9606 113091 PTH2 - TIP39 HGNC:30828|MIM:608386|Ensembl:ENSG00000142538|HPRD:16328 19 19q13.33 parathyroid hormone 2 protein-coding PTH2 parathyroid hormone 2 O tuberoinfundibular 39 residue protein|tuberoinfundibular 39 residues|tuberoinfundibular peptide of 39 residues 20121230 -9606 113115 MTFR2 RP11-472E5.1 DUFD1|FAM54A HGNC:21115|Ensembl:ENSG00000146410|HPRD:16884|Vega:OTTHUMG00000015643 6 6q23.3 mitochondrial fission regulator 2 protein-coding MTFR2 mitochondrial fission regulator 2 O DUF729 domain containing 1|DUF729 domain-containing protein 1|family with sequence similarity 54, member A|protein FAM54A 20121230 -9606 113130 CDCA5 - SORORIN HGNC:14626|MIM:609374|Ensembl:ENSG00000146670|HPRD:13016|Vega:OTTHUMG00000150420 11 11q12.1 cell division cycle associated 5 protein-coding CDCA5 cell division cycle associated 5 O cell division cycle-associated protein 5|p35|sororin 20121230 -9606 113146 AHNAK2 - C14orf78 HGNC:20125|MIM:608570|Ensembl:ENSG00000185567|Vega:OTTHUMG00000170765 14 14q32.33 AHNAK nucleoprotein 2 protein-coding AHNAK2 AHNAK nucleoprotein 2 O protein AHNAK2 20121230 -9606 113157 RPLP0P2 - RPLP0L2|RPLP0_3_1146 HGNC:17960 11 11cen-q12 ribosomal protein, large, P0 pseudogene 2 pseudo RPLP0P2 ribosomal protein, large, P0 pseudogene 2 O - 20121230 -9606 113174 SAAL1 - SPACIA1 HGNC:25158|Ensembl:ENSG00000166788|HPRD:13999|Vega:OTTHUMG00000166428 11 11p15.1 serum amyloid A-like 1 protein-coding SAAL1 serum amyloid A-like 1 O protein SAAL1|synoviocyte proliferation-associated in collagen-induced arthritis 1 20121230 -9606 113177 IZUMO4 UNQ831/PRO1758 C19orf36|IMAGE:4215339 HGNC:26950|Ensembl:ENSG00000099840|HPRD:12708|Vega:OTTHUMG00000141290 19 19p13.3 IZUMO family member 4 protein-coding IZUMO4 IZUMO family member 4 O izumo sperm-egg fusion protein 4|putative SAMP14 binding protein variant 1|putative SAMP14 binding protein variant 2|sperm 22 kDa protein c113 20121230 -9606 113178 SCAMP4 - SCAMP-4 HGNC:30385|MIM:613764|Ensembl:ENSG00000227500|HPRD:11536|Vega:OTTHUMG00000154590 19 19p13.3 secretory carrier membrane protein 4 protein-coding SCAMP4 secretory carrier membrane protein 4 O secretory carrier-associated membrane protein 4 20121230 -9606 113179 ADAT3 - FWP005|MST121|MSTP121|S863-5|TAD3 HGNC:25151|Ensembl:ENSG00000213638|HPRD:14000|Vega:OTTHUMG00000154591 19 19p13.3 adenosine deaminase, tRNA-specific 3 protein-coding ADAT3 adenosine deaminase, tRNA-specific 3 O adenosine deaminase, tRNA-specific 3, TAD3 homolog|tRNA-specific adenosine deaminase 3 homolog|tRNA-specific adenosine deaminase-like protein 3|tRNA-specific adenosine-34 deaminase subunit ADAT3 20121230 -9606 113189 CHST14 UNQ1925/PRO4400 ATCS|D4ST1|HNK1ST HGNC:24464|MIM:608429|Ensembl:ENSG00000169105|HPRD:16780|Vega:OTTHUMG00000129985 15 15q15.1 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 14 protein-coding CHST14 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 14 O carbohydrate sulfotransferase 14|dermatan 4 sulfotransferase 1 20121230 -9606 113201 CASC4 UNQ2573/PRO6308 H63 HGNC:24892|Ensembl:ENSG00000166734|HPRD:11018|Vega:OTTHUMG00000131133 15 15q15.3 cancer susceptibility candidate 4 protein-coding CASC4 cancer susceptibility candidate 4 O cancer susceptibility candidate gene 4 protein|gene associated with HER-2/neu overexpression|protein CASC4 20121230 -9606 113220 KIF12 - RP11-56P10.3 HGNC:21495|MIM:611278|Ensembl:ENSG00000136883|HPRD:13914|Vega:OTTHUMG00000020533 9 9q32 kinesin family member 12 protein-coding KIF12 kinesin family member 12 O kinesin-like protein KIF12 20121230 -9606 113230 LOC113230 - - - 19 19p13.12 uncharacterized LOC113230 miscRNA - - - - 20121230 -9606 113235 SLC46A1 - HCP1|PCFT HGNC:30521|MIM:611672|Ensembl:ENSG00000076351|HPRD:14715 17 17q11.2 solute carrier family 46 (folate transporter), member 1 protein-coding SLC46A1 solute carrier family 46 (folate transporter), member 1 O G21|PCFT/HCP1|heme carrier protein 1|proton-coupled folate transporter|solute carrier family 46 member 1 20121230 -9606 113246 C12orf57 - C10|GRCC10 HGNC:29521|Ensembl:ENSG00000111678|HPRD:13609|Vega:OTTHUMG00000169017 12 12p13.31 chromosome 12 open reading frame 57 protein-coding C12orf57 chromosome 12 open reading frame 57 O likely ortholog of mouse gene rich cluster, C10|protein C10 20121230 -9606 113251 LARP4 PP13296 - HGNC:24320|Ensembl:ENSG00000161813|HPRD:17289|Vega:OTTHUMG00000163724 12 12q13.12 La ribonucleoprotein domain family, member 4 protein-coding LARP4 La ribonucleoprotein domain family, member 4 O c-Mpl binding protein|la-related protein 4 20121230 -9606 113263 GLCCI1 - FAM117C|GCTR|GIG18|TSSN1 HGNC:18713|MIM:614283|Ensembl:ENSG00000106415|HPRD:17043|Vega:OTTHUMG00000151984 7 7p21.3 glucocorticoid induced transcript 1 protein-coding GLCCI1 glucocorticoid induced transcript 1 O glucocorticoid-induced transcript 1 protein 20121230 -9606 113277 TMEM106A - - HGNC:28288|Ensembl:ENSG00000184988|HPRD:11315|Vega:OTTHUMG00000180879 17 17q21.31 transmembrane protein 106A protein-coding TMEM106A transmembrane protein 106A O - 20121230 -9606 113278 SLC52A3 - BVVLS|BVVLS1|C20orf54|RFT2|RFVT3|bA371L19.1|hRFT2 HGNC:16187|MIM:613350|Ensembl:ENSG00000101276|HPRD:09843|Vega:OTTHUMG00000031647 20 20p13 solute carrier family 52, riboflavin transporter, member 3 protein-coding SLC52A3 solute carrier family 52, riboflavin transporter, member 3 O riboflavin transporter 2|solute carrier family 52 member 3 20121230 -9606 113402 SFT2D1 - C6orf83|pRGR1 HGNC:21102|Ensembl:ENSG00000198818|HPRD:12903|Vega:OTTHUMG00000016001 6 6q27 SFT2 domain containing 1 protein-coding SFT2D1 SFT2 domain containing 1 O SFT2 domain-containing protein 1|vesicle transport protein SFT2A 20121230 -9606 113419 TEX261 UNQ1882/PRO4325 TEG-261 HGNC:30712|Ensembl:ENSG00000144043|HPRD:15491|Vega:OTTHUMG00000170601 2 2p13.3 testis expressed 261 protein-coding TEX261 testis expressed 261 O protein TEX261|testis expressed sequence 261 20121230 -9606 113444 SMIM12 - C1orf212 HGNC:25154|Ensembl:ENSG00000163866|HPRD:14002|Vega:OTTHUMG00000004375 1 1p34.3 small integral membrane protein 12 protein-coding SMIM12 small integral membrane protein 12 O UPF0767 protein C1orf212 20121230 -9606 113451 ADC - AZI2|ODC-p|ODC1L HGNC:29957|MIM:608353|Ensembl:ENSG00000142920|HPRD:17657|Vega:OTTHUMG00000004130 1 1p35.1 arginine decarboxylase protein-coding ADC arginine decarboxylase O ARGDC|ODC antizyme inhibitor-2|ODC-paralogue|antizyme inhibitor 2|ornithine decarboxylase like|ornithine decarboxylase-like protein|ornithine decarboxylase-paralog 20121230 -9606 113452 TMEM54 - BCLP|CAC-1|CAC1 HGNC:24143|Ensembl:ENSG00000121900|HPRD:12524|Vega:OTTHUMG00000004016 1 1p35-p34 transmembrane protein 54 protein-coding TMEM54 transmembrane protein 54 O beta-casein-like protein|protein CAC-1 20121230 -9606 113457 TUBA3D - H2-ALPHA HGNC:24071|Ensembl:ENSG00000075886|HPRD:17085|Vega:OTTHUMG00000153600 2 2q21.1 tubulin, alpha 3d protein-coding TUBA3D tubulin, alpha 3d O alpha-tubulin isotype H2-alpha|tubulin alpha-2 chain|tubulin alpha-3C/D chain 20121230 -9606 113510 HELQ - HEL308 HGNC:18536|MIM:606769|Ensembl:ENSG00000163312|HPRD:08422|Vega:OTTHUMG00000130423 4 4q21.23 helicase, POLQ-like protein-coding HELQ helicase, POLQ-like O DNA helicase HEL308|POLQ-like helicase|helicase POLQ-like|mus308-like helicase 20121230 -9606 113540 CMTM1 - CKLFH|CKLFH1|CKLFSF1 HGNC:19172|MIM:607884|Ensembl:ENSG00000089505|HPRD:07433|Vega:OTTHUMG00000137502 16 16q21 CKLF-like MARVEL transmembrane domain containing 1 protein-coding CMTM1 CKLF-like MARVEL transmembrane domain containing 1 O CKLF-like MARVEL transmembrane domain-containing protein 1|chemokine-like factor super family 1|chemokine-like factor superfamily 1|chemokine-like factor superfamily member 1|chemokine-like factor-like protein CKLFH1 20121230 -9606 113612 CYP2U1 - P450TEC|SPG49 HGNC:20582|MIM:610670|Ensembl:ENSG00000155016|HPRD:13109|Vega:OTTHUMG00000161084 4 4q25 cytochrome P450, family 2, subfamily U, polypeptide 1 protein-coding CYP2U1 cytochrome P450, family 2, subfamily U, polypeptide 1 O cytochrome P450 2U1|spastic paraplegia 49 20121230 -9606 113622 ADPRHL1 RP11-102K13.1 ARH2 HGNC:21303|MIM:610620|Ensembl:ENSG00000153531|HPRD:12431|Vega:OTTHUMG00000017386 13 13q34 ADP-ribosylhydrolase like 1 protein-coding ADPRHL1 ADP-ribosylhydrolase like 1 O ADP-ribosyl-hydrolase|ADP-ribosylhydrolase 2|[Protein ADP-ribosylarginine] hydrolase-like protein 1 20121230 -9606 113655 MFSD3 - - HGNC:25157|Ensembl:ENSG00000167700|HPRD:14003|Vega:OTTHUMG00000165177 8 8q24.3 major facilitator superfamily domain containing 3 protein-coding MFSD3 major facilitator superfamily domain containing 3 O major facilitator superfamily domain-containing protein 3 20121230 -9606 113675 SDSL - SDH 2|SDS-RS1|TDH HGNC:30404|Ensembl:ENSG00000139410|HPRD:11542|Vega:OTTHUMG00000169551 12 12q24.13 serine dehydratase-like protein-coding SDSL serine dehydratase-like O L-serine deaminase|L-serine dehydratase/L-threonine deaminase|L-threonine dehydratase|SDH|serine dehydratase 2|serine dehydratase related sequence 1 20121230 -9606 113691 TUBA3FP - - HGNC:24067|HPRD:17517 22 22q11.21 tubulin, alpha 3f, pseudogene pseudo TUBA3FP tubulin, alpha 3f, pseudogene O - 20121230 -9606 113730 KLHDC7B - - HGNC:25145|Ensembl:ENSG00000130487|HPRD:14453|Vega:OTTHUMG00000150250 22 22q13.33 kelch domain containing 7B protein-coding KLHDC7B kelch domain containing 7B O kelch domain-containing protein 7B 20121230 -9606 113746 ODF3 - CT135|SHIPPO1|TISP50|hSHIPPO HGNC:19905|MIM:608356|HPRD:16323 11 11p15.5 outer dense fiber of sperm tails 3 protein-coding ODF3 outer dense fiber of sperm tails 3 O cancer/testis antigen 135|outer dense fiber of sperm tails protein 3|outer dense fiber protein 3|sperm tail protein SHIPPO 1|sperm tail protein SHIPPO1|transcript induced in spermiogenesis protein 50 20121230 -9606 113763 C7orf29 - - HGNC:21720|Ensembl:ENSG00000188707|HPRD:12917|Vega:OTTHUMG00000158328 7 7q36.1 chromosome 7 open reading frame 29 protein-coding C7orf29 chromosome 7 open reading frame 29 O uncharacterized protein C7orf29 20121230 -9606 113791 PIK3IP1 - HGFL|hHGFL(S) HGNC:24942|Ensembl:ENSG00000100100|HPRD:17518|Vega:OTTHUMG00000151256 22 22q12.2 phosphoinositide-3-kinase interacting protein 1 protein-coding PIK3IP1 phosphoinositide-3-kinase interacting protein 1 O kringle domain-containing protein HGFL|phosphoinositide-3-kinase-interacting protein 1 20121230 -9606 113802 HENMT1 RP11-256E16.2 C1orf59|HEN1 HGNC:26400|MIM:612178|Ensembl:ENSG00000162639|HPRD:08086|Vega:OTTHUMG00000011123 1 1p13.3 HEN1 methyltransferase homolog 1 (Arabidopsis) protein-coding HENMT1 HEN1 methyltransferase homolog 1 (Arabidopsis) O small RNA 2'-O-methyltransferase 20121230 -9606 113828 FAM83F RP3-496C20.4 - HGNC:25148|Ensembl:ENSG00000133477|HPRD:11228|Vega:OTTHUMG00000150688 22 22q13.1 family with sequence similarity 83, member F protein-coding FAM83F family with sequence similarity 83, member F O protein FAM83F 20121230 -9606 113829 SLC35A4 - - HGNC:20753|Ensembl:ENSG00000176087|HPRD:11574|Vega:OTTHUMG00000129495 5 5q31.3 solute carrier family 35, member A4 protein-coding SLC35A4 solute carrier family 35, member A4 O probable UDP-sugar transporter protein SLC35A4|solute carrier family 35 (UDP-galactose transporter), member A4|tumor rejection antigen 20121230 -9606 113835 ZNF257 - BMZF-4|BMZF4 HGNC:13498|MIM:606957|Ensembl:ENSG00000197134|HPRD:06096 19 19q13 zinc finger protein 257 protein-coding ZNF257 zinc finger protein 257 O bone marrow zinc finger 4 20121230 -9606 113877 DFNB32 - - HGNC:16360|MIM:608653 1 1p22.1-p13.3 deafness, autosomal recessive 32 unknown DFNB32 deafness, autosomal recessive 32 O - 20120622 -9606 113878 DTX2 - RNF58 HGNC:15973|MIM:613141|Ensembl:ENSG00000091073|HPRD:16841|Vega:OTTHUMG00000162594 7 7q11.23 deltex homolog 2 (Drosophila) protein-coding DTX2 deltex homolog 2 (Drosophila) O deltex2|hDTX2|probable E3 ubiquitin-protein ligase DTX2|protein deltex-2|ring finger protein 58|zinc ion binding protein 20121230 -9606 114026 ZIM3 - ZNF657 HGNC:16366|Ensembl:ENSG00000141946|HPRD:15738 19 - zinc finger, imprinted 3 protein-coding ZIM3 zinc finger, imprinted 3 O zinc finger imprinted 3|zinc finger protein 657 20121230 -9606 114034 TOE1 - - HGNC:15954|MIM:613931|Ensembl:ENSG00000132773|HPRD:18212|Vega:OTTHUMG00000007678 1 1p33 target of EGR1, member 1 (nuclear) protein-coding TOE1 target of EGR1, member 1 (nuclear) O target of EGR1 protein 1 20121230 -9606 114036 LINC00310 hCG_2036845 C21orf82|NCRNA00310 HGNC:16414 21 21q22.11 long intergenic non-protein coding RNA 310 miscRNA LINC00310 long intergenic non-protein coding RNA 310 O - 20121230 -9606 114038 LINC00313 - C21orf84|NCRNA00313 HGNC:16416|HPRD:10770 21 21q22.3 long intergenic non-protein coding RNA 313 miscRNA LINC00313 long intergenic non-protein coding RNA 313 O - 20121230 -9606 114041 C21orf88 hCG_1812842 - HGNC:16424|HPRD:09847 21 21q22.2 chromosome 21 open reading frame 88 miscRNA C21orf88 chromosome 21 open reading frame 88 O - 20121230 -9606 114042 LINC00334 - C21orf89|NCRNA00334 HGNC:16425 21 21q22.3 long intergenic non-protein coding RNA 334 unknown LINC00334 long intergenic non-protein coding RNA 334 O - 20121021 -9606 114043 C21orf90 - - HGNC:16428|HPRD:10775 21 21q22.3 chromosome 21 open reading frame 90 miscRNA C21orf90 chromosome 21 open reading frame 90 O - 20121230 -9606 114044 MCM3AP-AS1 - C21orf85|MCM3AP-AS|MCM3APAS|MCM3APASB|NCRNA00031 HGNC:16417 21 21q22.3 MCM3AP antisense RNA 1 miscRNA MCM3AP-AS1 MCM3AP antisense RNA 1 O - 20121230 -9606 114049 WBSCR22 HUSSY-03 HASJ4442|HUSSY-3|MERM1|PP3381|WBMT HGNC:16405|Ensembl:ENSG00000071462|HPRD:15659|Vega:OTTHUMG00000023306 7 - Williams Beuren syndrome chromosome region 22 protein-coding WBSCR22 Williams Beuren syndrome chromosome region 22 O Williams-Beuren candidate region putative methyltransferase|Williams-Beuren syndrome chromosomal region 22 protein|metastasis-related methyltransferase 1|uncharacterized methyltransferase WBSCR22 20121230 -9606 114086 DBA2 - - MIM:606129 8 8p23.3-p22 Diamond-Blackfan anemia 2 unknown - - - - 20120622 -9606 114088 TRIM9 - RNF91|SPRING HGNC:16288|MIM:606555|Ensembl:ENSG00000100505|HPRD:05947|Vega:OTTHUMG00000140291 14 14q22.1 tripartite motif containing 9 protein-coding TRIM9 tripartite motif containing 9 O E3 ubiquitin-protein ligase TRIM9|RING finger protein 91|homolog of rat RING finger Spring|tripartite motif-containing 9|tripartite motif-containing protein 9 20121230 -9606 114112 TXNRD3 - TGR|TR2|TRXR3 HGNC:20667|MIM:606235|Ensembl:ENSG00000197763|Vega:OTTHUMG00000162733 3 3q21.3 thioredoxin reductase 3 protein-coding TXNRD3 thioredoxin reductase 3 O thioredoxin and glutathione reductase|thioredoxin glutathione reductase|thioredoxin reductase 2|thioredoxin reductase TR2 20121230 -9606 114131 UCN3 - SCP|SPC|UCNIII HGNC:17781|MIM:605901|Ensembl:ENSG00000178473|HPRD:12066|Vega:OTTHUMG00000017594 10 10p15.1 urocortin 3 protein-coding UCN3 urocortin 3 O stresscopin|ucn III|urocortin III|urocortin-3 20121230 -9606 114132 SIGLEC11 UNQ9222/PRO28718 - HGNC:15622|MIM:607157|Ensembl:ENSG00000161640|HPRD:06196|Vega:OTTHUMG00000157077 19 19q13.33 sialic acid binding Ig-like lectin 11 protein-coding SIGLEC11 sialic acid binding Ig-like lectin 11 O sialic acid-binding Ig-like lectin 11|siglec-11 20121230 -9606 114134 SLC2A13 - HMIT HGNC:15956|MIM:611036|Ensembl:ENSG00000151229|HPRD:15363|Vega:OTTHUMG00000059743 12 12q12 solute carrier family 2 (facilitated glucose transporter), member 13 protein-coding SLC2A13 solute carrier family 2 (facilitated glucose transporter), member 13 O H(+)-myo-inositol symporter|h(+)-myo-inositol cotransporter|proton (H+) myo-inositol symporter|proton myo-inositol cotransporter 20121230 -9606 114181 FAM8A5P - - HGNC:16376 6 - family with sequence similarity 8, member A5 pseudogene pseudo FAM8A5P family with sequence similarity 8, member A5 pseudogene O - 20121230 -9606 114182 FAM8A6P - - HGNC:16377 6 - family with sequence similarity 8, member A1 pseudogene pseudo FAM8A6P family with sequence similarity 8, member A6 pseudogene O - 20121230 -9606 114184 SIGLEC18P - SIGLECP1 HGNC:15491 19 19q13.41 sialic acid binding Ig-like lectin 18, pseudogene pseudo SIGLEC18P sialic acid binding Ig-like lectin 18, pseudogene O - 20121230 -9606 114185 SIGLEC26P - SIGLECP10 HGNC:15615 19 19q13.41 sialic acid binding Ig-like lectin 26, pseudogene pseudo SIGLEC26P sialic acid binding Ig-like lectin 26, pseudogene O - 20121230 -9606 114186 SIGLEC27P - SIGLECP11 HGNC:15617 19 19q13.41 sialic acid binding Ig-like lectin 27, pseudogene pseudo SIGLEC27P sialic acid binding Ig-like lectin 27, pseudogene O - 20121230 -9606 114187 SIGLEC28P - SIGLECP12 HGNC:15618 19 19q13.41 sialic acid binding Ig-like lectin 28, pseudogene pseudo SIGLEC28P sialic acid binding Ig-like lectin 28, pseudogene O - 20121230 -9606 114188 SIGLEC29P - SIGLECP13 HGNC:15619 19 19q13.41 sialic acid binding Ig-like lectin 29, pseudogene pseudo SIGLEC29P sialic acid binding Ig-like lectin 29, pseudogene O - 20121230 -9606 114189 SIGLEC31P - SIGLECP15 HGNC:16072 19 19q13.43 sialic acid binding Ig-like lectin 31, pseudogene pseudo SIGLEC31P sialic acid binding Ig-like lectin 31, pseudogene O - 20121230 -9606 114190 SIGLEC30P - SIGLECP14 HGNC:15623 1 1q24.2 sialic acid binding Ig-like lectin 30, pseudogene pseudo SIGLEC30P sialic acid binding Ig-like lectin 30, pseudogene O - 20121230 -9606 114191 SIGLEC19P - SIGLECP2 HGNC:15603 19 19q13.41 sialic acid binding Ig-like lectin 19, pseudogene pseudo SIGLEC19P sialic acid binding Ig-like lectin 19, pseudogene O - 20121230 -9606 114192 SIGLEC20P - SIGLECP1|SIGLECP4 HGNC:15609 19 19q13.41 sialic acid binding Ig-like lectin 20, pseudogene pseudo SIGLEC20P sialic acid binding Ig-like lectin 20, pseudogene O - 20121230 -9606 114194 SIGLEC21P - SIGLECP5 HGNC:15610 19 19q13.3 sialic acid binding Ig-like lectin 21, pseudogene pseudo SIGLEC21P sialic acid binding Ig-like lectin 21, pseudogene O - 20121230 -9606 114195 SIGLEC22P - SIGLECP6 HGNC:15611 19 19q13.41 sialic acid binding Ig-like lectin 22, pseudogene pseudo SIGLEC22P sialic acid binding Ig-like lectin 22, pseudogene O - 20121230 -9606 114196 SIGLEC24P - SIGLECP8 HGNC:15613 19 19q13.41 sialic acid binding Ig-like lectin 24, pseudogene pseudo SIGLEC24P sialic acid binding Ig-like lectin 24, pseudogene O - 20121230 -9606 114197 SIGLEC23P - SIGLECP7 HGNC:15612 19 19q13.41 sialic acid binding Ig-like lectin 23, pseudogene pseudo SIGLEC23P sialic acid binding Ig-like lectin 23, pseudogene O - 20121230 -9606 114198 SIGLEC25P - SIGLECP9 HGNC:15614 19 19q13.41 sialic acid binding Ig-like lectin 25, pseudogene pseudo SIGLEC25P sialic acid binding Ig-like lectin 25, pseudogene O - 20121230 -9606 114224 PRO2852 - - - 9 - uncharacterized protein PRO2852 unknown - - - - 20121230 -9606 114293 ANBC - - MIM:606179 16 16q22 Aneurysmal bone cysts unknown - - - - 20120622 -9606 114294 LACTB UNQ843/PRO1781 G24|MRPL56 HGNC:16468|MIM:608440|Ensembl:ENSG00000103642|HPRD:07466|Vega:OTTHUMG00000132807 15 15q22.1 lactamase, beta protein-coding LACTB lactamase, beta O mitochondrial 39S ribosomal protein L56|mitochondrial ribosomal protein L56|serine beta lactamase-like protein LACTB|serine beta-lactamase-like protein LACTB, mitochondrial 20121230 -9606 114299 PALM2 - AKAP2 HGNC:15845|Ensembl:ENSG00000157654|Ensembl:ENSG00000243444|HPRD:17817|Vega:OTTHUMG00000020479|Vega:OTTHUMG00000156812 9 9q31.3 paralemmin 2 protein-coding PALM2 paralemmin 2 O A kinase (PRKA) anchor protein 2|paralemmin-2 20121230 -9606 114327 EFHC1 - dJ304B14.2 HGNC:16406|MIM:608815|Ensembl:ENSG00000096093|HPRD:10583|Vega:OTTHUMG00000014848 6 6p12.3 EF-hand domain (C-terminal) containing 1 protein-coding EFHC1 EF-hand domain (C-terminal) containing 1 O EF-hand domain-containing protein 1|myoclonin-1 20121230 -9606 114335 CGB1 hCG_2000350 - HGNC:16721|MIM:608823|Ensembl:ENSG00000267631|HPRD:12307|Vega:OTTHUMG00000150186 19 19q13.32 chorionic gonadotropin, beta polypeptide 1 protein-coding CGB1 chorionic gonadotropin, beta polypeptide 1 O choriogonadotropin subunit beta variant 1 20121230 -9606 114336 CGB2 hCG_1998038 - HGNC:16722|MIM:608824|Ensembl:ENSG00000104818|HPRD:12308|Vega:OTTHUMG00000150185 19 19q13.32 chorionic gonadotropin, beta polypeptide 2 protein-coding CGB2 chorionic gonadotropin, beta polypeptide 2 O choriogonadotropin subunit beta variant 2|product of CGB2 20121230 -9606 114475 AD7 - - MIM:606187 10 10p13 Alzheimer disease 7 unknown - - - - 20120622 -9606 114477 ATOD6 - - MIM:605845 5 5q31-q33 Dermatitis, atopic, 6 unknown - - - - 20120622 -9606 114548 NLRP3 - AGTAVPRL|AII|AVP|C1orf7|CIAS1|CLR1.1|FCAS|FCU|MWS|NALP3|PYPAF1 HGNC:16400|MIM:606416|Ensembl:ENSG00000162711|HPRD:05915|Vega:OTTHUMG00000040647 1 1q44 NLR family, pyrin domain containing 3 protein-coding NLRP3 NLR family, pyrin domain containing 3 O NACHT domain-, leucine-rich repeat-, and PYD-containing protein 3|NACHT, LRR and PYD containing protein 3|NACHT, LRR and PYD domains-containing protein 3|PYRIN-containing APAF1-like protein 1|caterpiller protein 1.1|cold autoinflammatory syndrome 1 protein|cryopyrin|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 3 20121230 -9606 114568 NMTC1 - - MIM:606240 2 2q21 Nonmedullary thyroid carcinoma 1 unknown - - - - 20120622 -9606 114569 MAL2 - - HGNC:13634|MIM:609684|HPRD:14351 8 8q23 mal, T-cell differentiation protein 2 (gene/pseudogene) protein-coding MAL2 mal, T-cell differentiation protein 2 (gene/pseudogene) O MAL proteolipid protein 2|MAL2 proteolipid protein|protein MAL2 20121230 -9606 114571 SLC22A9 - HOAT4|OAT4|OAT7|UST3H|ust3 HGNC:16261|MIM:607579|Ensembl:ENSG00000149742|HPRD:06982|Vega:OTTHUMG00000167805 11 11q13.1 solute carrier family 22 (organic anion transporter), member 9 protein-coding SLC22A9 solute carrier family 22 (organic anion transporter), member 9 O organic anion transporter 4|organic anion transporter 7|solute carrier family 22 (organic anion/cation transporter), member 9|solute carrier family 22 member 9 20121230 -9606 114599 SNORD15B - RNU15B|U15B HGNC:16649 11 11q13.4 small nucleolar RNA, C/D box 15B snoRNA SNORD15B small nucleolar RNA, C/D box 15B O - 20121230 -9606 114609 TIRAP - BACTS1|Mal|wyatt HGNC:17192|MIM:606252|Ensembl:ENSG00000150455|Vega:OTTHUMG00000140373 11 11q24.2 toll-interleukin 1 receptor (TIR) domain containing adaptor protein protein-coding TIRAP toll-interleukin 1 receptor (TIR) domain containing adaptor protein O MyD88 adapter-like protein|Toll-like receptor adaptor protein|adapter protein wyatt|adaptor protein Wyatt|toll/interleukin-1 receptor domain-containing adapter protein 20121230 -9606 114610 SAX1 - SPAX1 HGNC:16474|MIM:108600 12 12p13 spastic ataxia 1 (autosomal dominant) unknown SAX1 spastic ataxia 1 (autosomal dominant) O - 20120622 -9606 114614 MIR155HG - BIC|MIRHG2|NCRNA00172 HGNC:35460 21 - MIR155 host gene (non-protein coding) miscRNA MIR155HG MIR155 host gene (non-protein coding) O - 20121230 -9606 114625 ERMAP - PRO2801|RD|SC HGNC:15743|MIM:609017|Ensembl:ENSG00000164010|HPRD:12355|Vega:OTTHUMG00000007619 1 1p34.2 erythroblast membrane-associated protein (Scianna blood group) protein-coding ERMAP erythroblast membrane-associated protein (Scianna blood group) O Radin blood group (Rd)|Scianna blood group (Sc)|erythroid membrane-associated protein|radin blood group antigen|scianna blood group antigen 20121230 -9606 114655 SNORD73B - RNU73B|U73B HGNC:30357 4 4q31.3 small nucleolar RNA, C/D box U73B (pseudogene) pseudo SNORD73B small nucleolar RNA, C/D box U73B (pseudogene) O - 20121230 -9606 114657 COX7BP1 - bK714B7.1 HGNC:16529 22 22q13 cytochrome c oxidase subunit VIIb pseudogene 1 pseudo COX7BP1 cytochrome c oxidase subunit VIIb pseudogene 1 O - 20121230 -9606 114659 LRRC37B - - HGNC:29070|Ensembl:ENSG00000185158|HPRD:14004|Vega:OTTHUMG00000132785 17 - leucine rich repeat containing 37B protein-coding LRRC37B leucine rich repeat containing 37B O C66 SLIT-like testicular protein|leucine-rich repeat-containing protein 37B 20121230 -9606 114757 CYGB - HGB|STAP HGNC:16505|MIM:608759|Ensembl:ENSG00000161544|HPRD:06479|Vega:OTTHUMG00000180289 17 17q25 cytoglobin protein-coding CYGB cytoglobin O histoglobin|stellate cell activation-associated protein 20121230 -9606 114758 CSPG4P1Y - CSPG4LY|CSPG4LYP1|CSPG4P1|CSPG4PY1 HGNC:16478|MIM:400034 Y Yq11.23 chondroitin sulfate proteoglycan 4 pseudogene 1, Y-linked pseudo CSPG4P1Y chondroitin sulfate proteoglycan 4 pseudogene 1, Y-linked O - 20121209 -9606 114760 TTTY3 - LINC00121|NCRNA00121|TTTY3A|TTY3 HGNC:16480|MIM:400036 Y Yq11.23 testis-specific transcript, Y-linked 3 (non-protein coding) miscRNA TTTY3 testis-specific transcript, Y-linked 3 (non-protein coding) O - 20121209 -9606 114761 TTTY4 - LINC00123|NCRNA00123|TTTY4A|TTY4 HGNC:16481|MIM:400037 Y Yq11.2 testis-specific transcript, Y-linked 4 (non-protein coding) miscRNA TTTY4 testis-specific transcript, Y-linked 4 (non-protein coding) O - 20121230 -9606 114769 CARD16 - COP|COP1|PSEUDO-ICE HGNC:33701|Ensembl:ENSG00000204397|HPRD:16740|Vega:OTTHUMG00000166157 11 - caspase recruitment domain family, member 16 protein-coding CARD16 caspase recruitment domain family, member 16 O CARD only domain-containing protein 1|CARD only protein|caspase recruitment domain-containing protein 16|caspase-1 dominant-negative inhibitor pseudo-ICE|caspase-1 inhibitor COP|pseudo interleukin-1 beta converting enzyme|pseudo interleukin-1beta converting enzyme 20121230 -9606 114770 PGLYRP2 UNQ3103/PRO10102 HMFT0141|PGLYRPL|PGRP-L|PGRPL|TAGL-like|tagL|tagL-alpha|tagl-beta HGNC:30013|MIM:608199|Ensembl:ENSG00000161031|HPRD:10495|Vega:OTTHUMG00000150690 19 19p13.12 peptidoglycan recognition protein 2 protein-coding PGLYRP2 peptidoglycan recognition protein 2 O N-acetylmuramoyl-L-alanine amidase|peptidoglycan recognition protein L|peptidoglycan recognition protein long 20121230 -9606 114771 PGLYRP3 - PGRP-Ialpha|PGRPIA HGNC:30014|MIM:608197|Ensembl:ENSG00000159527|HPRD:16297|Vega:OTTHUMG00000014044 1 1q21 peptidoglycan recognition protein 3 protein-coding PGLYRP3 peptidoglycan recognition protein 3 O PGLYRPIalpha|PGRP-I-alpha|peptidoglycan recognition protein I alpha|peptidoglycan recognition protein I-alpha|peptidoglycan recognition protein intermediate alpha|peptidoglycan recognition protein-I-alpha 20121230 -9606 114780 PKD1L2 - PC1L2 HGNC:21715|MIM:607894|Ensembl:ENSG00000166473|HPRD:06990|Vega:OTTHUMG00000166126 16 16q23.2 polycystic kidney disease 1-like 2 protein-coding PKD1L2 polycystic kidney disease 1-like 2 O PC1-like 2 protein|polycystic kidney disease protein 1-like 2|polycystin-1L2 20121230 -9606 114781 BTBD9 RP3-322I12.1 dJ322I12.1 HGNC:21228|MIM:611237|Ensembl:ENSG00000183826|HPRD:12543|Vega:OTTHUMG00000014634 6 6p21 BTB (POZ) domain containing 9 protein-coding BTBD9 BTB (POZ) domain containing 9 O BTB/POZ domain-containing protein 9 20121230 -9606 114783 LMTK3 - LMR3|TYKLM3 HGNC:19295|Ensembl:ENSG00000142235 19 19q13.33 lemur tyrosine kinase 3 protein-coding LMTK3 lemur tyrosine kinase 3 O serine/threonine-protein kinase LMTK3 20121230 -9606 114784 CSMD2 RP11-26F12.1 dJ1007G16.1|dJ1007G16.2|dJ947L8.1 HGNC:19290|MIM:608398|Ensembl:ENSG00000121904|HPRD:13094|Vega:OTTHUMG00000011135 1 1p34.3 CUB and Sushi multiple domains 2 protein-coding CSMD2 CUB and Sushi multiple domains 2 O CUB and Sushi (SCR repeat) domain|CUB and sushi domain-containing protein 2|CUB and sushi multiple domains protein 2 20121230 -9606 114785 MBD6 - - HGNC:20445|Ensembl:ENSG00000166987|HPRD:11296|Vega:OTTHUMG00000170099 12 - methyl-CpG binding domain protein 6 protein-coding MBD6 methyl-CpG binding domain protein 6 O methyl-CpG-binding domain protein 6|methyl-CpG-binding protein MBD6 20121230 -9606 114786 XKR4 - XRG4 HGNC:29394|Ensembl:ENSG00000206579|HPRD:17228|Vega:OTTHUMG00000164288 8 8q12.1 XK, Kell blood group complex subunit-related family, member 4 protein-coding XKR4 XK, Kell blood group complex subunit-related family, member 4 O X Kell blood group precursor-related family, member 4|XK-related protein 4 20121230 -9606 114787 GPRIN1 - GRIN1 HGNC:24835|MIM:611239|Ensembl:ENSG00000169258|HPRD:11169|Vega:OTTHUMG00000130659 5 5q35.2 G protein regulated inducer of neurite outgrowth 1 protein-coding GPRIN1 G protein regulated inducer of neurite outgrowth 1 O G protein-regulated inducer of neurite outgrowth 1 20121230 -9606 114788 CSMD3 - - HGNC:19291|MIM:608399|Ensembl:ENSG00000164796|HPRD:16329|Vega:OTTHUMG00000157027 8 8q23.3 CUB and Sushi multiple domains 3 protein-coding CSMD3 CUB and Sushi multiple domains 3 O CUB and sushi domain-containing protein 3|CUB and sushi multiple domains protein 3 20121230 -9606 114789 SLC25A25 UNQ549/PRO1106 MCSC|PCSCL|RP11-395P17.4|SCAMC-2 HGNC:20663|MIM:608745|Ensembl:ENSG00000148339|HPRD:10573|Vega:OTTHUMG00000020736 9 9q34.11 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 25 protein-coding SLC25A25 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 25 O calcium-binding mitochondrial carrier protein SCaMC-2|mitochondrial ATP-Mg/Pi carrier protein 3|mitochondrial Ca(2+)-dependent solute carrier protein 3|short calcium-binding mitochondrial carrier 2|small calcium-binding mitochondrial carrier 2|solute carrier family 25, member 25 20121230 -9606 114790 STK11IP - LIP1|LKB1IP|STK11IP1 HGNC:19184|MIM:607172|Ensembl:ENSG00000144589|HPRD:06207|Vega:OTTHUMG00000059239 2 2q35 serine/threonine kinase 11 interacting protein protein-coding STK11IP serine/threonine kinase 11 interacting protein O LKB1 interacting protein|LKB1-interacting protein 1|STK11 interacting protein|serine/threonine kinase 11-interacting protein|serine/threonine-protein kinase 11-interacting protein 20121230 -9606 114791 TUBGCP5 - GCP5 HGNC:18600|MIM:608147|Ensembl:ENSG00000153575|HPRD:12177|Vega:OTTHUMG00000129007 15 15q11.2 tubulin, gamma complex associated protein 5 protein-coding TUBGCP5 tubulin, gamma complex associated protein 5 O GCP-5|gamma-tubulin complex component 5|gamma-tubulin complex component GCP5 20121230 -9606 114792 KLHL32 RP1-39B17.1 BKLHD5|KIAA1900|UG0030H05|dJ21F7.1 HGNC:21221|Ensembl:ENSG00000186231|HPRD:13898|Vega:OTTHUMG00000015247 6 6q16.1 kelch-like 32 (Drosophila) protein-coding KLHL32 kelch-like 32 (Drosophila) O BTB and kelch domain containing 5|BTB and kelch domain-containing protein 5|kelch-like protein 32 20121230 -9606 114793 FMNL2 - FHOD2 HGNC:18267|Ensembl:ENSG00000157827|HPRD:13545|Vega:OTTHUMG00000154035 2 2q23.3 formin-like 2 protein-coding FMNL2 formin-like 2 O formin homology 2 domain containing 2|formin homology 2 domain-containing protein 2|formin-like protein 2 20121230 -9606 114794 ELFN2 - LRRC62|PPP1R29|dJ63G5.3 HGNC:29396|Ensembl:ENSG00000166897|HPRD:17229 22 22q13.1 extracellular leucine-rich repeat and fibronectin type III domain containing 2 protein-coding ELFN2 extracellular leucine-rich repeat and fibronectin type III domain containing 2 O dJ63G5.3 (putative Leucine rich protein)|extracellular leucine-rich repeat and fibronectin type III containing 2|extracellular leucine-rich repeat and fibronectin type III domain-containing protein 2|leucine rich repeat containing 62|leucine-rich repeat and fibronectin type-III domain-containing protein 6|leucine-rich repeat-containing protein 62|protein phosphatase 1 regulatory subunit 29|protein phosphatase 1, regulatory subunit 29 20121230 -9606 114795 TMEM132B - - HGNC:29397|Ensembl:ENSG00000139364|HPRD:17230|Vega:OTTHUMG00000168520 12 12q24.31 transmembrane protein 132B protein-coding TMEM132B transmembrane protein 132B O - 20121230 -9606 114796 PSMG3-AS1 - - HGNC:22230 7 7p22.3 PSMG3 antisense RNA 1 (head to head) miscRNA PSMG3-AS1 PSMG3 antisense RNA 1 (head to head) O - 20121230 -9606 114798 SLITRK1 UNQ233/PRO266 LRRC12|RP11-395N17.1|TTM HGNC:20297|MIM:609678|Ensembl:ENSG00000178235|HPRD:18063|Vega:OTTHUMG00000017149 13 13q31.1 SLIT and NTRK-like family, member 1 protein-coding SLITRK1 SLIT and NTRK-like family, member 1 O SLIT and NTRK-like protein 1|leucine-rich repeat-containing protein 12|slit and trk like gene 1 20121230 -9606 114799 ESCO1 - A930014I12Rik|CTF|ECO1|EFO1|ESO1 HGNC:24645|MIM:609674|Ensembl:ENSG00000141446|HPRD:16868|Vega:OTTHUMG00000178919 18 18q11.2 establishment of cohesion 1 homolog 1 (S. cerevisiae) protein-coding ESCO1 establishment of cohesion 1 homolog 1 (S. cerevisiae) O CTF7 homolog 1|ECO1 homolog 1|EFO1p|ESO1 homolog 1|N-acetyltransferase ESCO1|establishment factor-like protein 1|hEFO1 20121230 -9606 114800 CCDC85A - - HGNC:29400|Ensembl:ENSG00000055813|Vega:OTTHUMG00000152033 2 2p16.1 coiled-coil domain containing 85A protein-coding CCDC85A coiled-coil domain containing 85A O coiled-coil domain-containing protein 85A 20121230 -9606 114801 TMEM200A HBE61 KIAA1913|TTMA|TTMC HGNC:21075|Ensembl:ENSG00000164484|HPRD:13901|Vega:OTTHUMG00000015557 6 6q23.1 transmembrane protein 200A protein-coding TMEM200A transmembrane protein 200A O two transmembrane C 20121230 -9606 114803 MYSM1 - 2A-DUB|2ADUB|RP4-592A1.1 HGNC:29401|MIM:612176|Ensembl:ENSG00000162601|Vega:OTTHUMG00000009533 1 1p32.1 Myb-like, SWIRM and MPN domains 1 protein-coding MYSM1 Myb-like, SWIRM and MPN domains 1 O histone H2A deubiquitinase MYSM1|myb-like, SWIRM and MPN domain-containing protein 1 20121230 -9606 114804 RNF157 - - HGNC:29402|Ensembl:ENSG00000141576|HPRD:15259|Vega:OTTHUMG00000132627 17 17q25.1 ring finger protein 157 protein-coding RNF157 ring finger protein 157 O RING finger protein 157 20121230 -9606 114805 GALNT13 - GalNAc-T13|H_NH0187G20.1|WUGSC:H_NH0187G20.1 HGNC:23242|MIM:608369|Ensembl:ENSG00000144278|HPRD:16325|Vega:OTTHUMG00000131917 2 2q24.1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 13 (GalNAc-T13) protein-coding GALNT13 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 13 (GalNAc-T13) O GalNAc transferase 13|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 13|polypeptide GalNAc transferase 13|polypeptide N-acetylgalactosaminyltransferase 13|pp-GaNTase 13|protein-UDP acetylgalactosaminyltransferase 13 20121230 -9606 114814 GNRHR2 - GnRH-II-R HGNC:16341|MIM:612875|HPRD:11780 1 1q12 gonadotropin-releasing hormone (type 2) receptor 2 pseudo GNRHR2 gonadotropin-releasing hormone (type 2) receptor 2 O - 20121230 -9606 114815 SORCS1 RP11-446H13.1 hSorCS HGNC:16697|MIM:606283|Ensembl:ENSG00000108018|HPRD:12098|Vega:OTTHUMG00000019018 10 10q23-q25 sortilin-related VPS10 domain containing receptor 1 protein-coding SORCS1 sortilin-related VPS10 domain containing receptor 1 O VPS10 domain receptor protein SORCS 1|VPS10 domain-containing receptor SorCS1 20121230 -9606 114817 CSPG4P5 - - HGNC:29403|HPRD:17231 15 15q25.2 chondroitin sulfate proteoglycan 4 pseudogene 5 pseudo CSPG4P5 chondroitin sulfate proteoglycan 4 pseudogene 5 O - 20121230 -9606 114818 KLHL29 - KBTBD9 HGNC:29404|Ensembl:ENSG00000119771|Vega:OTTHUMG00000151899 2 2p24.1 kelch-like 29 (Drosophila) protein-coding KLHL29 kelch-like 29 (Drosophila) O kelch repeat and BTB (POZ) domain containing 9|kelch repeat and BTB domain-containing protein 9|kelch-like protein 29 20121230 -9606 114819 CROCCP3 - CROCCL2|dJ798A10.2 HGNC:29405 1 1p36.13 ciliary rootlet coiled-coil, rootletin pseudogene 3 pseudo CROCCP3 ciliary rootlet coiled-coil, rootletin pseudogene 3 O - 20121230 -9606 114821 SCAND3 - ZFP38-L|ZNF305P2|ZNF452|dJ1186N24.3 HGNC:13851|Ensembl:ENSG00000232040|HPRD:11720|Vega:OTTHUMG00000016237 6 6p22.1 SCAN domain containing 3 protein-coding SCAND3 SCAN domain containing 3 O SCAN domain-containing protein 3|dJ1186N24.3 (novel zinc finger protein)|zinc finger protein 305 pseudogene 2|zinc finger protein 452 20121230 -9606 114822 RHPN1 - ODF5|RHOPHILIN|RHPN HGNC:19973|MIM:601031|Ensembl:ENSG00000158106|HPRD:17973|Vega:OTTHUMG00000165006 8 8q24.3 rhophilin, Rho GTPase binding protein 1 protein-coding RHPN1 rhophilin, Rho GTPase binding protein 1 O GTP-Rho-binding protein 1|outer dense fiber of sperm tails 5|rhophilin 1|rhophilin-1 20121230 -9606 114823 LENG8 XXbac-BCX535A19.3 pp13842 HGNC:15500|Ensembl:ENSG00000167615|HPRD:11226|Vega:OTTHUMG00000065548 19 19q13.42 leukocyte receptor cluster (LRC) member 8 protein-coding LENG8 leukocyte receptor cluster (LRC) member 8 O leukocyte receptor cluster member 8 20121230 -9606 114824 PNMA5 - - HGNC:18743|Ensembl:ENSG00000198883|HPRD:06678|Vega:OTTHUMG00000024184 X Xq28 paraneoplastic Ma antigen family member 5 protein-coding PNMA5 paraneoplastic Ma antigen family member 5 O paraneoplastic antigen-like protein 5|tumor antigen BJ-HCC-25 20121230 -9606 114825 PWWP2A - MST101 HGNC:29406|Ensembl:ENSG00000170234|Vega:OTTHUMG00000163546 5 5q33.3 PWWP domain containing 2A protein-coding PWWP2A PWWP domain containing 2A O MSTP101|PWWP domain-containing protein 2A 20121230 -9606 114826 SMYD4 - ZMYND21 HGNC:21067|Ensembl:ENSG00000186532|HPRD:18079|Vega:OTTHUMG00000090570 17 17p13.3 SET and MYND domain containing 4 protein-coding SMYD4 SET and MYND domain containing 4 O SET and MYND domain-containing protein 4 20121230 -9606 114827 FHAD1 RP3-467K16.1 - HGNC:29408|Ensembl:ENSG00000142621|Vega:OTTHUMG00000002088 1 1p36.21 forkhead-associated (FHA) phosphopeptide binding domain 1 protein-coding FHAD1 forkhead-associated (FHA) phosphopeptide binding domain 1 O FHA domain-containing protein 1|forkhead-associated domain-containing protein 1 20121230 -9606 114836 SLAMF6 RP11-528G1.1 CD352|KALI|KALIb|Ly108|NTB-A|NTBA|SF2000 HGNC:21392|MIM:606446|Ensembl:ENSG00000162739|HPRD:05920|Vega:OTTHUMG00000022729 1 1q23.2 SLAM family member 6 protein-coding SLAMF6 SLAM family member 6 O NK-T-B-antigen|NTBA receptor|activating NK receptor|natural killer-, T- and B-cell antigen 20121230 -9606 114876 OSBPL1A - ORP-1|ORP1|OSBPL1B HGNC:16398|MIM:606730|Ensembl:ENSG00000141447|HPRD:09472|Vega:OTTHUMG00000131944 18 18q11.1 oxysterol binding protein-like 1A protein-coding OSBPL1A oxysterol binding protein-like 1A O OSBP-related protein 1|oxysterol binding protein-like 1B|oxysterol-binding protein-related protein 1|oxysterol-binding protein-related protein 1 variant 1|oxysterol-binding protein-related protein 1 variant 2 20121230 -9606 114879 OSBPL5 - OBPH1|ORP5 HGNC:16392|MIM:606733|Ensembl:ENSG00000021762|HPRD:09475|Vega:OTTHUMG00000011702 11 11p15.4 oxysterol binding protein-like 5 protein-coding OSBPL5 oxysterol binding protein-like 5 O ORP-5|OSBP-related protein 5|oxysterol-binding protein homolog 1|oxysterol-binding protein homologue 1|oxysterol-binding protein-related protein 5 20121230 -9606 114880 OSBPL6 - ORP6 HGNC:16388|MIM:606734|Ensembl:ENSG00000079156|HPRD:09476|Vega:OTTHUMG00000132579 2 2q32.1 oxysterol binding protein-like 6 protein-coding OSBPL6 oxysterol binding protein-like 6 O ORP-6|OSBP-related protein 6|oxysterol-binding protein-related protein 6 20121230 -9606 114881 OSBPL7 - ORP7 HGNC:16387|MIM:606735|Ensembl:ENSG00000006025|HPRD:09477|Vega:OTTHUMG00000178288 17 17q21 oxysterol binding protein-like 7 protein-coding OSBPL7 oxysterol binding protein-like 7 O ORP-7|OSBP-related protein 7|oxysterol-binding protein-related protein 7 20121230 -9606 114882 OSBPL8 - MST120|MSTP120|ORP8|OSBP10 HGNC:16396|MIM:606736|Ensembl:ENSG00000091039|HPRD:09478|Vega:OTTHUMG00000169876 12 12q14 oxysterol binding protein-like 8 protein-coding OSBPL8 oxysterol binding protein-like 8 O ORP-8|OSBP-related protein 8|oxysterol-binding protein-related protein 8 20121230 -9606 114883 OSBPL9 RP4-657D16.1 ORP-9|ORP9 HGNC:16386|MIM:606737|Ensembl:ENSG00000117859|HPRD:09479|Vega:OTTHUMG00000008234 1 1p32.3 oxysterol binding protein-like 9 protein-coding OSBPL9 oxysterol binding protein-like 9 O OSBP-related protein 9|oxysterol-binding protein-related protein 9 20121230 -9606 114884 OSBPL10 - ORP10|OSBP9 HGNC:16395|MIM:606738|Ensembl:ENSG00000144645|HPRD:09480|Vega:OTTHUMG00000130672 3 3p22.3 oxysterol binding protein-like 10 protein-coding OSBPL10 oxysterol binding protein-like 10 O ORP-10|OSBP-related protein 10|oxysterol-binding protein-related protein 10 20121230 -9606 114885 OSBPL11 - ORP-11|ORP11|OSBP12|TCCCIA00292 HGNC:16397|MIM:606739|Ensembl:ENSG00000144909|HPRD:09481|Vega:OTTHUMG00000159571 3 3q21 oxysterol binding protein-like 11 protein-coding OSBPL11 oxysterol binding protein-like 11 O OSBP-related protein 11|oxysterol-binding protein-related protein 11 20121230 -9606 114890 MRSS - - MIM:300360 X Xq24 Mental retardation, X-linked, with short stature unknown - - - - 20120622 -9606 114897 C1QTNF1 UNQ310/PRO353 CTRP1|GIP|ZSIG37 HGNC:14324|MIM:610365|Ensembl:ENSG00000173918|Vega:OTTHUMG00000177533 17 17q25.3 C1q and tumor necrosis factor related protein 1 protein-coding C1QTNF1 C1q and tumor necrosis factor related protein 1 O G protein coupled receptor interacting protein|complement C1q tumor necrosis factor-related protein 1|g protein-coupled receptor-interacting protein 20121230 -9606 114898 C1QTNF2 UNQ6349/PRO21054 CTRP2|zacrp2 HGNC:14325|Ensembl:ENSG00000145861|HPRD:12715|Vega:OTTHUMG00000130323 5 5q33.3 C1q and tumor necrosis factor related protein 2 protein-coding C1QTNF2 C1q and tumor necrosis factor related protein 2 O complement C1q tumor necrosis factor-related protein 2|complement-c1q tumor necrosis factor-related protein 2 20121230 -9606 114899 C1QTNF3 UNQ753/PRO1484 C1ATNF3|CORCS|CORS|CORS-26|CORS26|CTRP3 HGNC:14326|MIM:612045|Ensembl:ENSG00000082196|HPRD:12716|Vega:OTTHUMG00000090735 5 5p13 C1q and tumor necrosis factor related protein 3 protein-coding C1QTNF3 C1q and tumor necrosis factor related protein 3 O cartonectin|collagenous repeat-containing sequence 26 kDa protein|collagenous repeat-containing sequence of 26-kDa|complement C1q tumor necrosis factor-related protein 3|secretory protein CORS26 20121230 -9606 114900 C1QTNF4 - CTRP4|ZACRP4 HGNC:14346|MIM:614911|Ensembl:ENSG00000172247|HPRD:12717|Vega:OTTHUMG00000166895 11 11q11 C1q and tumor necrosis factor related protein 4 protein-coding C1QTNF4 C1q and tumor necrosis factor related protein 4 O complement C1q tumor necrosis factor-related protein 4|complement-c1q tumor necrosis factor-related protein 4 20121230 -9606 114902 C1QTNF5 UNQ303/PRO344 CTRP5|LORD HGNC:14344|MIM:608752|Ensembl:ENSG00000223953|HPRD:10575 11 11q23.3 C1q and tumor necrosis factor related protein 5 protein-coding C1QTNF5 C1q and tumor necrosis factor related protein 5 O complement C1q tumor necrosis factor-related protein 5 20121230 -9606 114904 C1QTNF6 UNQ581/PRO1151 CTFP6|CTRP6|ZACRP6 HGNC:14343|MIM:614910|Ensembl:ENSG00000133466|HPRD:12718|Vega:OTTHUMG00000150538 22 22q13.1 C1q and tumor necrosis factor related protein 6 protein-coding C1QTNF6 C1q and tumor necrosis factor related protein 6 O complement C1q tumor necrosis factor-related protein 6|complement-c1q tumor necrosis factor-related protein 6 20121230 -9606 114905 C1QTNF7 - CTRP7|ZACRP7 HGNC:14342|Ensembl:ENSG00000163145|HPRD:16633|Vega:OTTHUMG00000097095 4 4p15.3 C1q and tumor necrosis factor related protein 7 protein-coding C1QTNF7 C1q and tumor necrosis factor related protein 7 O complement C1q tumor necrosis factor-related protein 7|complement-c1q tumor necrosis factor-related protein 7 20121230 -9606 114907 FBXO32 - Fbx32|MAFbx HGNC:16731|MIM:606604|Ensembl:ENSG00000156804|HPRD:05966|Vega:OTTHUMG00000164981 8 8q24.13 F-box protein 32 protein-coding FBXO32 F-box protein 32 O F-box only protein 32|atrogin 1|atrogin-1|muscle atrophy F-box protein 20121230 -9606 114908 TMEM123 PSEC0111 KCT3|PORIMIN|PORMIN HGNC:30138|MIM:606356|Ensembl:ENSG00000152558|Vega:OTTHUMG00000167326 11 11q22.1 transmembrane protein 123 protein-coding TMEM123 transmembrane protein 123 O KCT-3|keratinocytes associated transmembrane protein 3|keratinocytes-associated transmembrane protein 3|porimin|pro oncosis receptor inducing membrane injury|pro-oncosis receptor inducing membrane injury|serine/threonine-rich receptor 20121230 -9606 114915 EPB41L4A-AS1 - C5orf26|NCRNA00219|TIGA1 HGNC:30749|HPRD:18184 5 5q22.2 EPB41L4A antisense RNA 1 miscRNA EPB41L4A-AS1 EPB41L4A antisense RNA 1 O - 20121230 -9606 114926 C8orf40 - - HGNC:25166|Ensembl:ENSG00000176209|HPRD:14005|Vega:OTTHUMG00000157060 8 8p11.21 chromosome 8 open reading frame 40 protein-coding C8orf40 chromosome 8 open reading frame 40 O UPF0697 protein C8orf40 20121230 -9606 114928 GPRASP2 RP4-769N13.4 GASP2 HGNC:25169|Ensembl:ENSG00000158301|HPRD:06612|Vega:OTTHUMG00000022059 X Xq22.1 G protein-coupled receptor associated sorting protein 2 protein-coding GPRASP2 G protein-coupled receptor associated sorting protein 2 O G-protein coupled receptor-associated sorting protein 2 20121230 -9606 114932 MRFAP1L1 PP784 - HGNC:28796|Ensembl:ENSG00000178988|HPRD:15162|Vega:OTTHUMG00000125507 4 4p16.1 Morf4 family associated protein 1-like 1 protein-coding MRFAP1L1 Morf4 family associated protein 1-like 1 O MORF4 family-associated protein 1-like 1 20121230 -9606 114960 TSGA13 - - HGNC:12369|Ensembl:ENSG00000213265|HPRD:11650|Vega:OTTHUMG00000154999 7 7q32 testis specific, 13 protein-coding TSGA13 testis specific, 13 O testis-specific A13|testis-specific gene 13 protein 20121230 -9606 114971 PTPMT1 PNAS-129 DUSP23|MOSP|PLIP HGNC:26965|MIM:609538|Ensembl:ENSG00000110536|Vega:OTTHUMG00000166892 11 11p11.2 protein tyrosine phosphatase, mitochondrial 1 protein-coding PTPMT1 protein tyrosine phosphatase, mitochondrial 1 O NB4 apoptosis/differentiation related protein|PTEN-like phosphatase|phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1|phosphoinositide lipid phosphatase|protein-tyrosine phosphatase mitochondrial 1 20121230 -9606 114984 FLYWCH2 - - HGNC:25178|Ensembl:ENSG00000162076|HPRD:14007|Vega:OTTHUMG00000128962 16 16p13.3 FLYWCH family member 2 protein-coding FLYWCH2 FLYWCH family member 2 O - 20121230 -9606 114987 WDR31 - - HGNC:21421|Ensembl:ENSG00000148225|HPRD:18299|Vega:OTTHUMG00000020525 9 9q32 WD repeat domain 31 protein-coding WDR31 WD repeat domain 31 O WD repeat-containing protein 31 20121230 -9606 114990 VASN UNQ314/PRO357/PRO1282 SLITL2 HGNC:18517|MIM:608843|Ensembl:ENSG00000168140|HPRD:10587|Vega:OTTHUMG00000129469 16 16p13.3 vasorin protein-coding VASN vasorin O protein slit-like 2|slit-like 2 20121230 -9606 114991 ZNF618 RP11-56P10.2 FP13169|NEDD10 HGNC:29416|Ensembl:ENSG00000157657|HPRD:18719|Vega:OTTHUMG00000020532 9 9q32 zinc finger protein 618 protein-coding ZNF618 zinc finger protein 618 O neural precursor cell expressed, developmentally down-regulated 10 20121230 -9606 115004 MB21D1 RP11-398K22.2 C6orf150 HGNC:21367|MIM:613973|Ensembl:ENSG00000164430|HPRD:12857|Vega:OTTHUMG00000015034 6 6q13 Mab-21 domain containing 1 protein-coding MB21D1 Mab-21 domain containing 1 O mab-21 domain-containing protein 1|protein MB21D1 20121230 -9606 115019 SLC26A9 - - HGNC:14469|MIM:608481|Ensembl:ENSG00000174502|HPRD:12242|Vega:OTTHUMG00000036001 1 1q32.1 solute carrier family 26, member 9 protein-coding SLC26A9 solute carrier family 26, member 9 O anion transporter/exchanger protein 9|anion transporter/exchanger-9|solute carrier family 26 member 9 20121230 -9606 115024 NT5C3L - - HGNC:28300|Ensembl:ENSG00000141698|HPRD:14475|Vega:OTTHUMG00000133499 17 17q21.2 5'-nucleotidase, cytosolic III-like protein-coding NT5C3L 5'-nucleotidase, cytosolic III-like O cN-III-like protein|cytosolic 5'-nucleotidase III-like protein 20121230 -9606 115098 CCDC124 - - HGNC:25171|Ensembl:ENSG00000007080|HPRD:14008 19 19p13.11 coiled-coil domain containing 124 protein-coding CCDC124 coiled-coil domain containing 124 O coiled-coil domain-containing protein 124 20121230 -9606 115106 HAUS1 - CCDC5|HEI-C|HEIC|HsT1461 HGNC:25174|MIM:608775|Ensembl:ENSG00000152240|HPRD:16385|Vega:OTTHUMG00000132638 18 18q21.1 HAUS augmin-like complex, subunit 1 protein-coding HAUS1 HAUS augmin-like complex, subunit 1 O HAUS augmin-like complex subunit 1|coiled-coil domain containing 5 (spindle associated)|coiled-coil domain-containing protein 5|enhancer of invasion-cluster 20121230 -9606 115110 LOC115110 - - - 1 1p36.32 uncharacterized LOC115110 miscRNA - - - - 20121230 -9606 115111 SLC26A7 - SUT2 HGNC:14467|MIM:608479|Ensembl:ENSG00000147606|HPRD:10533|Vega:OTTHUMG00000164062 8 8q23 solute carrier family 26, member 7 protein-coding SLC26A7 solute carrier family 26, member 7 O anion exchange transporter|sulfate anion transporter 20121230 -9606 115123 MARCH3 - MARCH-III|RNF173 HGNC:28728|MIM:613333|Ensembl:ENSG00000173926|HPRD:14362|Vega:OTTHUMG00000128968 5 5q23.2 membrane-associated ring finger (C3HC4) 3, E3 ubiquitin protein ligase protein-coding MARCH3 membrane-associated ring finger (C3HC4) 3, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase MARCH3|RING finger protein 173|membrane-associated RING finger protein 3|membrane-associated RING-CH protein III 20121230 -9606 115196 ZNF554 - - HGNC:26629|Ensembl:ENSG00000172006|HPRD:15837|Vega:OTTHUMG00000180493 19 19p13.3 zinc finger protein 554 protein-coding ZNF554 zinc finger protein 554 O - 20121230 -9606 115201 ATG4A RP5-889N15.2 APG4A|AUTL2 HGNC:16489|MIM:300663|Ensembl:ENSG00000101844|HPRD:06455|Vega:OTTHUMG00000022176 X Xq22.1-q22.3 autophagy related 4A, cysteine peptidase protein-coding ATG4A autophagy related 4A, cysteine peptidase O APG4 autophagy 4 homolog A|ATG4 autophagy related 4 homolog A|AUT-like 2 cysteine endopeptidase|AUT-like 2, cysteine endopeptidase|autophagin 2|autophagin-2|autophagy-related cysteine endopeptidase 2|autophagy-related protein 4 homolog A|cysteine protease ATG4A|hAPG4A 20121230 -9606 115207 KCTD12 - C13orf2|PFET1|PFETIN HGNC:14678|MIM:610521|Ensembl:ENSG00000178695|HPRD:11060|Vega:OTTHUMG00000017096 13 13q22.3 potassium channel tetramerisation domain containing 12 protein-coding KCTD12 potassium channel tetramerisation domain containing 12 O BTB/POZ domain-containing protein KCTD12|predominantly fetal expressed T1 domain 20121230 -9606 115209 OMA1 - 2010001O09Rik|DAB1|MPRP-1|YKR087C|ZMPOMA1 HGNC:29661|Ensembl:ENSG00000162600|HPRD:14879|Vega:OTTHUMG00000010068 1 1p32.2-p32.1 OMA1 zinc metallopeptidase homolog (S. cerevisiae) protein-coding OMA1 OMA1 zinc metallopeptidase homolog (S. cerevisiae) O OMA1 homolog, zinc metallopeptidase|metalloendopeptidase OMA1, mitochondrial|metalloprotease related protein 1|metalloprotease-related protein 1|overlapping activity with M-AAA protease|overlapping with the m-AAA protease 1 homolog|zinc metallopeptidase OMA1 20121230 -9606 115265 DDIT4L - REDD2|Rtp801L HGNC:30555|MIM:607730|Ensembl:ENSG00000145358|HPRD:09663|Vega:OTTHUMG00000161019 4 4q24 DNA-damage-inducible transcript 4-like protein-coding DDIT4L DNA-damage-inducible transcript 4-like O DNA damage-inducible transcript 4-like protein|HIF-1 responsive protein RTP801-like|REDD-2|homolog of mouse SMHS1|protein regulated in development and DNA damage response 2|regulated in development and DNA damage response 2 20121230 -9606 115273 RAB42 - RP4-669K10.6 HGNC:28702|Ensembl:ENSG00000188060|HPRD:14644|Vega:OTTHUMG00000003656 1 1p35.3 RAB42, member RAS oncogene family protein-coding RAB42 RAB42, member RAS oncogene family O RAB42, member RAS homolog family|putative Ras-related protein Rab-42 20121230 -9606 115286 SLC25A26 - SAMC HGNC:20661|MIM:611037|Ensembl:ENSG00000144741|HPRD:15357|Vega:OTTHUMG00000149917 3 3p14.1 solute carrier family 25 (S-adenosylmethionine carrier), member 26 protein-coding SLC25A26 solute carrier family 25 (S-adenosylmethionine carrier), member 26 O S-adenosylmethionine mitochondrial carrier protein|mitochondrial S-adenosylmethionine transporter|solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 26|solute carrier family 25, member 26 20121230 -9606 115290 FBXO17 - FBG4|FBX26|FBXO26|Fbx17 HGNC:18754|MIM:609094|Ensembl:ENSG00000104835|HPRD:16436 19 19q13.2 F-box protein 17 protein-coding FBXO17 F-box protein 17 O F-box only protein 17|F-box only protein 26|F-box protein FBG4 20121230 -9606 115294 PCMTD1 - - HGNC:30483|Ensembl:ENSG00000168300|HPRD:08313|Vega:OTTHUMG00000164246 8 8q11.23 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 protein-coding PCMTD1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 O protein-L-isoaspartate O-methyltransferase domain-containing protein 1 20121230 -9606 115330 GPR146 - PGR8 HGNC:21718|Ensembl:ENSG00000164849|HPRD:17064 7 7p22.3 G protein-coupled receptor 146 protein-coding GPR146 G protein-coupled receptor 146 O G protein-coupled receptor PGR8|G-protein coupled receptor PGR8|probable G-protein coupled receptor 146 20121230 -9606 115350 FCRL1 - CD307a|FCRH1|IFGP1|IRTA5 HGNC:18509|MIM:606508|Ensembl:ENSG00000163534|HPRD:07350|Vega:OTTHUMG00000019398 1 1q21-q22 Fc receptor-like 1 protein-coding FCRL1 Fc receptor-like 1 O Fc receptor-like protein 1|IFGP family protein 1|fc receptor homolog 1|fcR-like protein 1|hIFGP1|immune receptor translocation-associated protein 5|immunoglobulin superfamily Fc receptor, gp42 20121230 -9606 115352 FCRL3 - CD307c|FCRH3|IFGP3|IRTA3|SPAP2 HGNC:18506|MIM:606510|Ensembl:ENSG00000160856|HPRD:07352|Vega:OTTHUMG00000019400 1 1q21-q22 Fc receptor-like 3 protein-coding FCRL3 Fc receptor-like 3 O Fc receptor homolog 3|Fc receptor-like protein 3|IFGP family protein 3|SH2 domain-containing phosphatase anchor protein 2|fcR-like protein 3|hIFGP3|immune receptor translocation-associated protein 3|immunoglobulin superfamily receptor translocation associated protein 3 20121230 -9606 115353 LRRC42 - dJ167A19.4 HGNC:28792|Ensembl:ENSG00000116212|HPRD:14711|Vega:OTTHUMG00000008436 1 1p33-p32.1 leucine rich repeat containing 42 protein-coding LRRC42 leucine rich repeat containing 42 O leucine-rich repeat-containing protein 42 20121230 -9606 115361 GBP4 - Mpa2 HGNC:20480|MIM:612466|Ensembl:ENSG00000162654|HPRD:13570|Vega:OTTHUMG00000010663 1 1p22.2 guanylate binding protein 4 protein-coding GBP4 guanylate binding protein 4 O GBP-4|GTP-binding protein 4|guanine nucleotide-binding protein 4|guanylate-binding protein 4 20121230 -9606 115362 GBP5 UNQ2427/PRO4987 GBP-5 HGNC:19895|MIM:611467|Ensembl:ENSG00000154451|HPRD:13571|Vega:OTTHUMG00000010006 1 1p22.2 guanylate binding protein 5 protein-coding GBP5 guanylate binding protein 5 O GBP-TA antigen|GTP-binding protein 5|guanine nucleotide-binding protein 5|guanylate-binding protein 5 20121230 -9606 115399 LRRC56 - - HGNC:25430|Ensembl:ENSG00000161328|HPRD:13227|Vega:OTTHUMG00000132003 11 11p15.5 leucine rich repeat containing 56 protein-coding LRRC56 leucine rich repeat containing 56 O leucine-rich repeat-containing protein 56 20121230 -9606 115416 MALSU1 - C7orf30 HGNC:21721|MIM:614624|Ensembl:ENSG00000156928|HPRD:12918|Vega:OTTHUMG00000128443 7 7p15.3 mitochondrial assembly of ribosomal large subunit 1 protein-coding MALSU1 mitochondrial assembly of ribosomal large subunit 1 O mitochondrial assembly of ribosomal large subunit protein 1 20121230 -9606 115426 UHRF2 RP11-472F14.2 NIRF|RNF107|URF2 HGNC:12557|Ensembl:ENSG00000147854|HPRD:18257|Vega:OTTHUMG00000019521 9 9p24.1 ubiquitin-like with PHD and ring finger domains 2, E3 ubiquitin protein ligase protein-coding UHRF2 ubiquitin-like with PHD and ring finger domains 2, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase UHRF2|Np95-like ring finger protein|RING finger protein 107|np95/ICBP90-like RING finger protein|nuclear protein 97|nuclear zinc finger protein NP97|ubiquitin-like PHD and RING finger domain-containing protein 2|ubiquitin-like, containing PHD and RING finger domains, 2|ubiquitin-like-containing PHD and RING finger domains protein 2 20121230 -9606 115509 ZNF689 - TIPUH1 HGNC:25173|Ensembl:ENSG00000156853|HPRD:14009|Vega:OTTHUMG00000132415 16 16p11.2 zinc finger protein 689 protein-coding ZNF689 zinc finger protein 689 O transcription-involved protein upregulated in HCC 1 20121230 -9606 115548 FCHO2 - - HGNC:25180|MIM:613438|Ensembl:ENSG00000157107|HPRD:13319|Vega:OTTHUMG00000162413 5 5q13.2 FCH domain only 2 protein-coding FCHO2 FCH domain only 2 O FCH domain only protein 2 20121230 -9606 115557 ARHGEF25 - GEFT|p63RhoGEF HGNC:30275|MIM:610215|Ensembl:ENSG00000240771|HPRD:13573|Vega:OTTHUMG00000152516 12 12q13.3 Rho guanine nucleotide exchange factor (GEF) 25 protein-coding ARHGEF25 Rho guanine nucleotide exchange factor (GEF) 25 O RAC/CDC42 exchange factor|RhoA/RAC/CDC42 exchange factor|guanine nucleotide exchange factor GEFT|rac/Cdc42/Rho exchange factor GEFT|rho guanine nucleotide exchange factor 25|rhoA/Rac/Cdc42 guanine nucleotide exchange factor GEFT 20121230 -9606 115560 ZNF501 - ZNF|ZNF52 HGNC:23717|Ensembl:ENSG00000186446|HPRD:15809|Vega:OTTHUMG00000133048 3 3p21.31 zinc finger protein 501 protein-coding ZNF501 zinc finger protein 501 O zinc finger protein 52 20121230 -9606 115572 FAM46B - RP11-344H11.8 HGNC:28273|Ensembl:ENSG00000158246|HPRD:16882|Vega:OTTHUMG00000004278 1 1p36.11 family with sequence similarity 46, member B protein-coding FAM46B family with sequence similarity 46, member B O protein FAM46B 20121230 -9606 115584 SLC5A11 - KST1|RKST1|SGLT6|SMIT2 HGNC:23091|MIM:610238|Ensembl:ENSG00000158865|Vega:OTTHUMG00000097003 16 16p12.1 solute carrier family 5 (sodium/glucose cotransporter), member 11 protein-coding SLC5A11 solute carrier family 5 (sodium/glucose cotransporter), member 11 O Na(+)/myo-inositol cotransporter 2|homolog of rabbit KST1|putative sodium-coupled cotransporter RKST1|sodium-dependent glucose cotransporter|sodium/glucose cotransporter KST1|sodium/myo-inositol cotransporter 2|sodium/myo-inositol transporter 2 20121230 -9606 115650 TNFRSF13C CTA-250D10.7 BAFF-R|BAFFR|BROMIX|CD268|CVID4|prolixin HGNC:17755|MIM:606269|Ensembl:ENSG00000159958|HPRD:05883|Vega:OTTHUMG00000151271 22 22q13.1-q13.31 tumor necrosis factor receptor superfamily, member 13C protein-coding TNFRSF13C tumor necrosis factor receptor superfamily, member 13C O B cell-activating factor receptor|B-cell-activating factor receptor|BAFF receptor|BLyS receptor 3|tumor necrosis factor receptor superfamily member 13C 20121230 -9606 115653 KIR3DL3 XXbac-BCX360G3.1 CD158Z|KIR3DL7|KIR44|KIRC1 HGNC:16312|MIM:610095|Ensembl:ENSG00000242019|HPRD:17236|Vega:OTTHUMG00000065884 19 19q13.42 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 3 protein-coding KIR3DL3 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 3 O CD158 antigen-like family member Z|killer cell Ig-like receptor KIR3DL7|killer cell immunoglobulin-like receptor 3DL3|killer cell inhibitory receptor 1 20121230 -9606 115677 NOSTRIN - DaIP2 HGNC:20203|MIM:607496|Ensembl:ENSG00000163072|HPRD:06324|Vega:OTTHUMG00000153990 2 2q31.1 nitric oxide synthase trafficker protein-coding NOSTRIN nitric oxide synthase trafficker O BM247 homolog|ENOS traffic inducer|eNOS-trafficking inducer|endothelial nitric oxide synthase traffic inducer|nitric oxide synthase traffic inducer|nitric oxide synthase trafficking|nostrin|ortholog of mouse disabled 2 interacting proein 2 20121230 -9606 115701 ALPK2 - HAK HGNC:20565|Ensembl:ENSG00000198796|HPRD:11019|Vega:OTTHUMG00000132755 18 18q21.31 alpha-kinase 2 protein-coding ALPK2 alpha-kinase 2 O alpha-protein kinase 2|heart alpha-kinase|heart alpha-protein kinase 20121230 -9606 115703 ARHGAP33 - NOMA-GAP|SNX26|TCGAP HGNC:23085|MIM:614902|Ensembl:ENSG00000004777|HPRD:15415|Vega:OTTHUMG00000182071 19 19q13.12 Rho GTPase activating protein 33 protein-coding ARHGAP33 Rho GTPase activating protein 33 O neurite outgrowth multiadaptor RhoGAP protein|rho GTPase-activating protein 33|rho-type GTPase-activating protein 33|sorting nexin 26|sorting nexin-26|tc10/CDC42 GTPase-activating protein 20121230 -9606 115704 EVI5L - - HGNC:30464|Ensembl:ENSG00000142459|HPRD:10044 19 19p13.2 ecotropic viral integration site 5-like protein-coding EVI5L ecotropic viral integration site 5-like O EVI5-like protein|ecotropic viral integration site 5-like protein 20121230 -9606 115708 TRMT61A hCG_25505 C14orf172|GCD14|Gcd14p|TRM61|hTRM61 HGNC:23790|Ensembl:ENSG00000166166|HPRD:08810|Vega:OTTHUMG00000171762 14 14q32 tRNA methyltransferase 61 homolog A (S. cerevisiae) protein-coding TRMT61A tRNA methyltransferase 61 homolog A (S. cerevisiae) O tRNA (adenine(58)-N(1))-methyltransferase catalytic subunit TRMT61A|tRNA (adenine-N(1)-)-methyltransferase catalytic subunit TRM61|tRNA (adenine-N(1)-)-methyltransferase catalytic subunit TRMT61A|tRNA(m1A58)-methyltransferase subunit TRM61|tRNA(m1A58)-methyltransferase subunit TRMT61A|tRNA(m1A58)MTase subunit TRM61|tRNA(m1A58)MTase subunit TRMT61A 20121230 -9606 115727 RASGRP4 - - HGNC:18958|MIM:607320|Ensembl:ENSG00000171777|HPRD:09540|Vega:OTTHUMG00000182327 19 19q13.1 RAS guanyl releasing protein 4 protein-coding RASGRP4 RAS guanyl releasing protein 4 O RAS guanyl-releasing protein 4|guanyl nucleotide releasing protein 4 20121230 -9606 115749 C12orf56 - - HGNC:26967|Ensembl:ENSG00000185306|Vega:OTTHUMG00000168782 12 12q14.2 chromosome 12 open reading frame 56 protein-coding C12orf56 chromosome 12 open reading frame 56 O uncharacterized protein C12orf56 20121230 -9606 115752 DIS3L - DIS3L1 HGNC:28698|MIM:614183|Ensembl:ENSG00000166938|HPRD:11355|Vega:OTTHUMG00000133181 15 15q22.31 DIS3 mitotic control homolog (S. cerevisiae)-like protein-coding DIS3L DIS3 mitotic control homolog (S. cerevisiae)-like O DIS3-like exonuclease 1 20121230 -9606 115761 ARL11 RP11-432M24.1 ARLTS1 HGNC:24046|MIM:609351|Ensembl:ENSG00000152213|HPRD:12484|Vega:OTTHUMG00000016919 13 13q14.2 ADP-ribosylation factor-like 11 protein-coding ARL11 ADP-ribosylation factor-like 11 O ADP-ribosylation factor-like protein 11|ADP-ribosylation factor-like tumor suppressor protein 1 20121230 -9606 115795 FANCD2OS HSD19 C3orf24 HGNC:28623|Ensembl:ENSG00000163705|HPRD:17552|Vega:OTTHUMG00000128669 3 3p25.3 FANCD2 opposite strand protein-coding FANCD2OS FANCD2 opposite strand O uncharacterized protein C3orf24 20121230 -9606 115811 IQCD - 4933433C09Rik HGNC:25168|Ensembl:ENSG00000166578|HPRD:13744|Vega:OTTHUMG00000169659 12 12q24.13 IQ motif containing D protein-coding IQCD IQ motif containing D O IQ domain-containing protein D 20121230 -9606 115817 DHRS1 - SDR19C1 HGNC:16445|MIM:610410|Ensembl:ENSG00000157379|HPRD:09914|Vega:OTTHUMG00000029333 14 14q12 dehydrogenase/reductase (SDR family) member 1 protein-coding DHRS1 dehydrogenase/reductase (SDR family) member 1 O dehydrogenase/reductase SDR family member 1|short chain dehydrogenase/reductase family 19C, member 1 20121230 -9606 115825 WDFY2 - PROF|RP11-147H23.1|WDF2|ZFYVE22 HGNC:20482|MIM:610418|Ensembl:ENSG00000139668|HPRD:18294|Vega:OTTHUMG00000017407 13 13q14.3 WD repeat and FYVE domain containing 2 protein-coding WDFY2 WD repeat and FYVE domain containing 2 O WD repeat and FYVE domain-containing protein 2|WD40 and FYVE domain containing 2|WD40- and FYVE domain-containing protein 2|propeller-FYVE protein|zinc finger FYVE domain-containing protein 22 20121230 -9606 115827 RAB3C - - HGNC:30269|MIM:612829|Ensembl:ENSG00000152932|HPRD:06704|Vega:OTTHUMG00000097053 5 5q13 RAB3C, member RAS oncogene family protein-coding RAB3C RAB3C, member RAS oncogene family O ras-related protein Rab-3C 20121230 -9606 115861 NXNL1 - RDCVF|TXNL6 HGNC:25179|MIM:608791|Ensembl:ENSG00000171773|HPRD:12300 19 19p13.11 nucleoredoxin-like 1 protein-coding NXNL1 nucleoredoxin-like 1 O nucleoredoxin-like protein 1|rod-derived cone viability factor|thioredoxin-like 6|thioredoxin-like protein 6 20121230 -9606 115908 CTHRC1 UNQ762/PRO1550 - HGNC:18831|MIM:610635|Ensembl:ENSG00000164932|HPRD:16772|Vega:OTTHUMG00000164887 8 8q22.3 collagen triple helix repeat containing 1 protein-coding CTHRC1 collagen triple helix repeat containing 1 O collagen triple helix repeat-containing protein 1 20121230 -9606 115939 TSR3 - C16orf42 HGNC:14175|Ensembl:ENSG00000007520|HPRD:14496|Vega:OTTHUMG00000047834 16 16p13.3 TSR3, 20S rRNA accumulation, homolog (S. cerevisiae) protein-coding TSR3 TSR3, 20S rRNA accumulation, homolog (S. cerevisiae) O probable ribosome biogenesis protein C16orf42|ribosome biogenesis protein TSR3 homolog 20121230 -9606 115948 CCDC151 - - HGNC:28303|Ensembl:ENSG00000198003|HPRD:10076|Vega:OTTHUMG00000182028 19 19p13.2 coiled-coil domain containing 151 protein-coding CCDC151 coiled-coil domain containing 151 O coiled-coil domain-containing protein 151 20121230 -9606 115950 ZNF653 - E430039K05Rik|ZIP67 HGNC:25196|MIM:611371|Ensembl:ENSG00000161914|HPRD:15889|Vega:OTTHUMG00000182032 19 19p13.2 zinc finger protein 653 protein-coding ZNF653 zinc finger protein 653 O 67 kDa zinc finger protein|zinc finger protein Zip67 20121230 -9606 115992 RNF166 - - HGNC:28856|Ensembl:ENSG00000158717|HPRD:15260|Vega:OTTHUMG00000137863 16 16q24.3 ring finger protein 166 protein-coding RNF166 ring finger protein 166 O RING finger protein 166 20121230 -9606 116028 RMI2 - BLAP18|C16orf75 HGNC:28349|MIM:612426|Ensembl:ENSG00000175643|HPRD:14497|Vega:OTTHUMG00000129793 16 16p13.13 RMI2, RecQ mediated genome instability 2, homolog (S. cerevisiae) protein-coding RMI2 RMI2, RecQ mediated genome instability 2, homolog (S. cerevisiae) O BLM-associated protein of 18 kDa|RecQ-mediated genome instability 2, S. cerevisiae, homolog of|hRMI2|recQ-mediated genome instability protein 2 20121230 -9606 116039 OSR2 - - HGNC:15830|MIM:611297|Ensembl:ENSG00000164920|HPRD:17806|Vega:OTTHUMG00000164640 8 8q22.2 odd-skipped related 2 (Drosophila) protein-coding OSR2 odd-skipped related 2 (Drosophila) O protein odd-skipped-related 2 20121230 -9606 116064 LRRC58 - - HGNC:26968|Ensembl:ENSG00000163428|Vega:OTTHUMG00000159407 3 3q13.33 leucine rich repeat containing 58 protein-coding LRRC58 leucine rich repeat containing 58 O leucine-rich repeat-containing protein 58 20121230 -9606 116068 LYSMD3 - - HGNC:26969|Ensembl:ENSG00000176018|Ensembl:ENSG00000259141|Vega:OTTHUMG00000162667 5 5q14.3 LysM, putative peptidoglycan-binding, domain containing 3 protein-coding LYSMD3 LysM, putative peptidoglycan-binding, domain containing 3 O lysM and putative peptidoglycan-binding domain-containing protein 3 20121230 -9606 116071 BATF2 - SARI HGNC:25163|MIM:614983|Ensembl:ENSG00000168062|HPRD:14470|Vega:OTTHUMG00000165633 11 11q13.1 basic leucine zipper transcription factor, ATF-like 2 protein-coding BATF2 basic leucine zipper transcription factor, ATF-like 2 O B-ATF-2|basic leucine zipper transcriptional factor ATF-like 2|suppressor of AP-1 regulated by IFN 20121230 -9606 116085 SLC22A12 UNQ6453/PRO34004 OAT4L|RST|URAT1 HGNC:17989|MIM:607096|Ensembl:ENSG00000197891|HPRD:06160|Vega:OTTHUMG00000045213 11 11q13.1 solute carrier family 22 (organic anion/urate transporter), member 12 protein-coding SLC22A12 solute carrier family 22 (organic anion/urate transporter), member 12 O organic anion transporter 4-like protein|renal-specific transporter|solute carrier family 22 (organic anion/cation transporter), member 12|solute carrier family 22 member 12|urate anion exchanger 1|urate transporter 1 20121230 -9606 116092 DNTTIP1 RP3-447F3.5 C20orf167|Tdif1|dJ447F3.4 HGNC:16160|MIM:611388|Ensembl:ENSG00000101457|HPRD:16831|Vega:OTTHUMG00000032610 20 20q13.12 deoxynucleotidyltransferase, terminal, interacting protein 1 protein-coding DNTTIP1 deoxynucleotidyltransferase, terminal, interacting protein 1 O TdT binding protein|deoxynucleotidyltransferase terminal-interacting protein 1|tdT-interacting factor 1|terminal deoxynucleotidyltransferase-interacting factor 1 20121230 -9606 116093 DIRC1 - - HGNC:15760|MIM:606423|Ensembl:ENSG00000174325|HPRD:16219|Vega:OTTHUMG00000132646 2 2q33 disrupted in renal carcinoma 1 protein-coding DIRC1 disrupted in renal carcinoma 1 O disrupted in renal cancer protein|disrupted in renal carcinoma protein 1 20121230 -9606 116113 FOXP4 RP11-328M4.1 hFKHLA HGNC:20842|MIM:608924|Ensembl:ENSG00000137166|HPRD:10600|Vega:OTTHUMG00000014679 6 6p21.1 forkhead box P4 protein-coding FOXP4 forkhead box P4 O fork head-related protein like A|fork head-related protein-like A|forkhead box protein P4|winged-helix repressor FOXP4 20121230 -9606 116115 ZNF526 - - HGNC:29415|MIM:614387|Ensembl:ENSG00000167625|HPRD:15818 19 19q13.2 zinc finger protein 526 protein-coding ZNF526 zinc finger protein 526 O - 20121230 -9606 116123 FMO9P RP11-45J16.2 - HGNC:32210|HPRD:14011 1 1q24.1 flavin containing monooxygenase 9 pseudogene pseudo FMO9P flavin containing monooxygenase 9 pseudogene O - 20121230 -9606 116135 LRRC3B UNQ195/PRO221 LRP15 HGNC:28105|Ensembl:ENSG00000179796|HPRD:14318|Vega:OTTHUMG00000130572 3 3p24 leucine rich repeat containing 3B protein-coding LRRC3B leucine rich repeat containing 3B O leucine-rich repeat protein LRP15|leucine-rich repeat-containing protein 3B 20121230 -9606 116138 KLHDC3 - PEAS|RP1-20C7.3|dJ20C7.3 HGNC:20704|MIM:611248|Ensembl:ENSG00000124702|HPRD:13922|Vega:OTTHUMG00000014714 6 6p21.1 kelch domain containing 3 protein-coding KLHDC3 kelch domain containing 3 O kelch domain-containing protein 3|testis intracellular mediator protein 20121230 -9606 116143 WDR92 - - HGNC:25176|MIM:610729|Ensembl:ENSG00000243667|HPRD:14012|Vega:OTTHUMG00000152561 2 2p14 WD repeat domain 92 protein-coding WDR92 WD repeat domain 92 O WD repeat-containing protein 92|WD repeat-containing protein Monad|monad 20121230 -9606 116149 RPL12P4 - RPL12_23_1714|dJ800C24.1 HGNC:16587 20 20q13.2 ribosomal protein L12 pseudogene 4 pseudo RPL12P4 ribosomal protein L12 pseudogene 4 O - 20121230 -9606 116150 NUS1 - C6orf68|MGC:7199|NgBR|TANGO14 HGNC:21042|MIM:610463|Ensembl:ENSG00000153989|HPRD:12894|Vega:OTTHUMG00000015458 6 6q22.1 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) protein-coding NUS1 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) O nogo-B receptor|transport and golgi organization 14 homolog 20121230 -9606 116151 FAM210B PSEC0265 5A3|C20orf108|dJ1167H4.1 HGNC:16102|Ensembl:ENSG00000124098|HPRD:12737|Vega:OTTHUMG00000032793 20 20q13.2 family with sequence similarity 210, member B protein-coding FAM210B family with sequence similarity 210, member B O protein FAM210B|transmembrane protein C20orf108 20121230 -9606 116154 PHACTR3 RP5-899C14.1 C20orf101|H17739|SCAPIN1|SCAPININ HGNC:15833|MIM:608725|Ensembl:ENSG00000087495|HPRD:10571|Vega:OTTHUMG00000032869 20 20q13.32-q13.33 phosphatase and actin regulator 3 protein-coding PHACTR3 phosphatase and actin regulator 3 O scaffold-associated PP1-inhibiting protein 20121230 -9606 116159 CYYR1 - C21orf95 HGNC:16274|Ensembl:ENSG00000166265|Vega:OTTHUMG00000078689 21 21q21.2 cysteine/tyrosine-rich 1 protein-coding CYYR1 cysteine/tyrosine-rich 1 O cysteine and tyrosine-rich 1|cysteine and tyrosine-rich protein 1|proline-rich domain-containing protein 20121230 -9606 116166 SORDL - - - 15 15q21.1 sorbitol dehydrogenase-like unknown - - - - 20100404 -9606 116173 CMTM5 - CKLFSF5 HGNC:19176|MIM:607888|Ensembl:ENSG00000166091|HPRD:06986|Vega:OTTHUMG00000028751 14 14q11.2 CKLF-like MARVEL transmembrane domain containing 5 protein-coding CMTM5 CKLF-like MARVEL transmembrane domain containing 5 O CKLF-like MARVEL transmembrane domain-containing protein 5|chemokine-like factor super family 5|chemokine-like factor superfamily member 5 20121230 -9606 116179 TGM7 - TGMZ HGNC:30790|MIM:606776|Ensembl:ENSG00000159495|HPRD:09485|Vega:OTTHUMG00000176547 15 15q15.2 transglutaminase 7 protein-coding TGM7 transglutaminase 7 O TG(Z)|TGZ|TGase Z|TGase-7|protein-glutamine gamma-glutamyltransferase Z|transglutaminase Z|transglutaminase-7 20121230 -9606 116211 TM4SF19 OCTM4 - HGNC:25167|Ensembl:ENSG00000145107|HPRD:14013|Vega:OTTHUMG00000155675 3 3q29 transmembrane 4 L six family member 19 protein-coding TM4SF19 transmembrane 4 L six family member 19 O osteoclast maturation-associated gene 4 protein|tetraspan membrane protein OCTM4|transmembrane 4 L6 family member 19 20121230 -9606 116224 FAM122A - C9orf42 HGNC:23490|Ensembl:ENSG00000187866|HPRD:10074|Vega:OTTHUMG00000019971 9 9q21.11 family with sequence similarity 122A protein-coding FAM122A family with sequence similarity 122A O protein FAM122A 20121230 -9606 116225 ZMYND19 - MIZIP|RP11-48C7.4 HGNC:21146|MIM:611424|Ensembl:ENSG00000165724|HPRD:15743|Vega:OTTHUMG00000020992 9 9q34.3 zinc finger, MYND-type containing 19 protein-coding ZMYND19 zinc finger, MYND-type containing 19 O MCH-R1-interacting zinc finger protein|melanin-concentrating hormone receptor 1 interacting zinc-finger protein|melanin-concentrating hormone receptor 1-interacting zinc finger protein|zinc finger MYND domain-containing protein 19|zinc finger, MYND domain containing 19 20121230 -9606 116228 COX20 - FAM36A HGNC:26970|MIM:614698|Ensembl:ENSG00000203667|HPRD:13307|Vega:OTTHUMG00000040401 1 1q44 COX20 Cox2 chaperone homolog (S. cerevisiae) protein-coding COX20 COX20 Cox2 chaperone homolog (S. cerevisiae) O cytochrome c oxidase protein 20 homolog|family with sequence similarity 36, member A|protein FAM36A 20121230 -9606 116236 ABHD15 UNQ6510/PRO21435 - HGNC:26971|Ensembl:ENSG00000168792|HPRD:14014|Vega:OTTHUMG00000179721 17 17q11.2 abhydrolase domain containing 15 protein-coding ABHD15 abhydrolase domain containing 15 O abhydrolase domain-containing protein 15 20121230 -9606 116238 TLCD1 - - HGNC:25177|Ensembl:ENSG00000160606|HPRD:14015|Vega:OTTHUMG00000132683 17 17q11.2 TLC domain containing 1 protein-coding TLCD1 TLC domain containing 1 O TLC domain-containing protein 1 20121230 -9606 116254 GINM1 RP1-12G14.8 C6orf72|dJ12G14.2 HGNC:21074|Ensembl:ENSG00000055211|HPRD:12896|Vega:OTTHUMG00000015789 6 6q25.1 glycoprotein integral membrane 1 protein-coding GINM1 glycoprotein integral membrane 1 O glycoprotein integral membrane protein 1 20121230 -9606 116255 MOGAT1 - DGAT2L|DGAT2L1|MGAT1 HGNC:18210|MIM:610268|Ensembl:ENSG00000124003|HPRD:14729|Vega:OTTHUMG00000153394 2 2q36.1 monoacylglycerol O-acyltransferase 1 protein-coding MOGAT1 monoacylglycerol O-acyltransferase 1 O 2-acylglycerol O-acyltransferase 1|acyl-CoA:monoacylglycerol acyltransferase 1|diacylglycerol O-acyltransferase 2 like 1|diacylglycerol O-acyltransferase candidate 2|diacylglycerol acyltransferase 2-like protein 1|hDC2 20121230 -9606 116285 ACSM1 - BUCS1|MACS1 HGNC:18049|MIM:614357|Ensembl:ENSG00000166743|HPRD:12551|Vega:OTTHUMG00000131550 16 16p12.3 acyl-CoA synthetase medium-chain family member 1 protein-coding ACSM1 acyl-CoA synthetase medium-chain family member 1 O Butyrate CoA ligase|acyl-coenzyme A synthetase ACSM1, mitochondrial|butyrate--CoA ligase 1|butyryl Coenzyme A synthetase 1|butyryl-coenzyme A synthetase 1|lipoate-activating enzyme|medium-chain acyl-CoA synthetase|middle-chain acyl-CoA synthetase 1 20121230 -9606 116328 C8orf34 - VEST-1|VEST1 HGNC:30905|Ensembl:ENSG00000165084|HPRD:18281|Vega:OTTHUMG00000164438 8 8q13 chromosome 8 open reading frame 34 protein-coding C8orf34 chromosome 8 open reading frame 34 O protein VEST-1|uncharacterized protein C8orf34|vestibule 1|vestibule-1 protein 20121230 -9606 116337 PANX3 - PX3 HGNC:20573|MIM:608422|Ensembl:ENSG00000154143|HPRD:16334|Vega:OTTHUMG00000165925 11 11q24.2 pannexin 3 protein-coding PANX3 pannexin 3 O gap junction protein pannexin 3|pannexin-3 20121230 -9606 116349 C5orf55 - - HGNC:25175|Ensembl:ENSG00000221990|Vega:OTTHUMG00000162235 5 5p15.33 chromosome 5 open reading frame 55 protein-coding C5orf55 chromosome 5 open reading frame 55 O uncharacterized protein C5orf55 20121230 -9606 116362 RBP7 RP11-496H15.1 CRBP4|CRBPIV HGNC:30316|MIM:608604|Ensembl:ENSG00000162444|HPRD:16355|Vega:OTTHUMG00000001798 1 1p36.22 retinol binding protein 7, cellular protein-coding RBP7 retinol binding protein 7, cellular O CRABP-IV|CRABP4|cellular retinoic acid-binding protein 4|cellular retinoic acid-binding protein IV|putative cellular retinol-binding protein CRBP IV|retinoid binding protein 7|retinoid-binding protein 7 20121230 -9606 116369 SLC26A8 RP11-482O9.1 TAT1 HGNC:14468|MIM:608480|Ensembl:ENSG00000112053|HPRD:12241|Vega:OTTHUMG00000014586 6 6p21 solute carrier family 26, member 8 protein-coding SLC26A8 solute carrier family 26, member 8 O anion exchange transporter|anion transporter/exchanger-8|testis anion transporter 1 20121230 -9606 116372 LYPD1 PSEC0181 LYPDC1|PHTS HGNC:28431|MIM:610450|Ensembl:ENSG00000150551|HPRD:14333|Vega:OTTHUMG00000153609 2 2q21.2 LY6/PLAUR domain containing 1 protein-coding LYPD1 LY6/PLAUR domain containing 1 O ly6/PLAUR domain-containing protein 1|putative HeLa tumor suppressor 20121230 -9606 116379 IL22RA2 UNQ5793/PRO19598/PRO19822 CRF2-10|CRF2-S1|CRF2X|IL-22BP|IL-22RA2 HGNC:14901|MIM:606648|Ensembl:ENSG00000164485|HPRD:05973|Vega:OTTHUMG00000015655 6 6q25.1 interleukin 22 receptor, alpha 2 protein-coding IL22RA2 interleukin 22 receptor, alpha 2 O IL-22 receptor subunit alpha-2|IL-22R-alpha-2|class II cytokine receptor|cytokine receptor class-II member 10|cytokine receptor family 2 member 10|cytokine receptor family type 2, soluble 1|interleukin 22-binding protein|interleukin-22 receptor subunit alpha-2|interleukin-22-binding protein|zcytoR16 20121230 -9606 116412 ZNF837 - - HGNC:25164|Ensembl:ENSG00000152475 19 19q13.43 zinc finger protein 837 protein-coding ZNF837 zinc finger protein 837 O - 20121230 -9606 116437 LOC116437 - - - 12 12q24.33 uncharacterized LOC116437 miscRNA - - - - 20121230 -9606 116441 TM4SF18 - L6D HGNC:25181|Ensembl:ENSG00000163762|HPRD:14018|Vega:OTTHUMG00000159582 3 3q25.1 transmembrane 4 L six family member 18 protein-coding TM4SF18 transmembrane 4 L six family member 18 O transmembrane 4 L6 family member 18 20121230 -9606 116442 RAB39B RP13-228J13.2 MRX72 HGNC:16499|MIM:300774|Ensembl:ENSG00000155961|HPRD:06703|Vega:OTTHUMG00000022659 X Xq28 RAB39B, member RAS oncogene family protein-coding RAB39B RAB39B, member RAS oncogene family O ras-related protein Rab-39B 20121230 -9606 116443 GRIN3A - GluN3A|NMDAR-L|NR3A HGNC:16767|MIM:606650|Ensembl:ENSG00000198785|HPRD:09443|Vega:OTTHUMG00000020387 9 9q31.1 glutamate receptor, ionotropic, N-methyl-D-aspartate 3A protein-coding GRIN3A glutamate receptor, ionotropic, N-methyl-D-aspartate 3A O N-methyl-D-aspartate receptor subtype 3A|NMDAR3A|glutamate [NMDA] receptor subunit 3A 20121230 -9606 116444 GRIN3B - GluN3B|NR3B HGNC:16768|MIM:606651|Ensembl:ENSG00000116032|Vega:OTTHUMG00000181904 19 19p13.3 glutamate receptor, ionotropic, N-methyl-D-aspartate 3B protein-coding GRIN3B glutamate receptor, ionotropic, N-methyl-D-aspartate 3B O N-methyl-D-aspartate receptor subtype 3B|NMDA receptor subunit 3B|NMDA type glutamate receptor subunit NR3B|NMDAR3B|glutamate [NMDA] receptor subunit 3B 20121230 -9606 116447 TOP1MT - - HGNC:29787|MIM:606387|Ensembl:ENSG00000184428|HPRD:16214|Vega:OTTHUMG00000164979 8 8q24.3 topoisomerase (DNA) I, mitochondrial protein-coding TOP1MT topoisomerase (DNA) I, mitochondrial O DNA topoisomerase I, mitochondrial|mitochondrial topoisomerase IB 20121230 -9606 116448 OLIG1 - BHLHB6|BHLHE21 HGNC:16983|MIM:606385|Ensembl:ENSG00000184221|HPRD:07333|Vega:OTTHUMG00000065064 21 21q22.11 oligodendrocyte transcription factor 1 protein-coding OLIG1 oligodendrocyte transcription factor 1 O basic domain, helix-loop-helix protein, class B, 6|class B basic helix-loop-helix protein 6|class E basic helix-loop-helix protein 21|oligo1|oligodendrocyte lineage transcription factor 1|oligodendrocyte-specific bHLH transcription factor 1 20121230 -9606 116449 CLNK - MIST HGNC:17438|MIM:611434|Ensembl:ENSG00000109684|HPRD:14720|Vega:OTTHUMG00000160062 4 4p16.1 cytokine-dependent hematopoietic cell linker protein-coding CLNK cytokine-dependent hematopoietic cell linker O mast cell immunoreceptor signal transducer 20121230 -9606 116461 TSEN15 - C1orf19|sen15 HGNC:16791|MIM:608756|Ensembl:ENSG00000198860|HPRD:12292|Vega:OTTHUMG00000035461 1 1q25 tRNA splicing endonuclease 15 homolog (S. cerevisiae) protein-coding TSEN15 tRNA splicing endonuclease 15 homolog (S. cerevisiae) O SEN15 homolog|hsSen15|tRNA-intron endonuclease Sen15|tRNA-splicing endonuclease subunit Sen15 20121230 -9606 116496 FAM129A GIG39 C1orf24|NIBAN HGNC:16784|Ensembl:ENSG00000135842|HPRD:10725|Vega:OTTHUMG00000035388 1 1q25 family with sequence similarity 129, member A protein-coding FAM129A family with sequence similarity 129, member A O cell growth inhibiting protein 39|cell growth-inhibiting gene 39 protein|protein Niban 20121230 -9606 116511 MAS1L DAAP-341G9.4 MAS-L|MRG|dJ994E9.2 HGNC:13961|MIM:607235|Ensembl:ENSG00000204687|HPRD:06251|Vega:OTTHUMG00000031089 6 6p21 MAS1 oncogene-like protein-coding MAS1L MAS1 oncogene-like O MAS-R|MAS1-like|mas-related G protein-coupled MRG|mas-related G-protein coupled receptor MRG 20121230 -9606 116512 MRGPRD - MRGD|TGR7 HGNC:29626|MIM:607231|Ensembl:ENSG00000172938|HPRD:06250|Vega:OTTHUMG00000167896 11 11q13.3 MAS-related GPR, member D protein-coding MRGPRD MAS-related GPR, member D O G-protein coupled receptor TGR7|beta-alanine receptor|mas-related G protein-coupled MRGD|mas-related G-protein coupled receptor member D 20121230 -9606 116519 APOA5 UNQ411/PRO773 APOAV|RAP3 HGNC:17288|MIM:606368|Ensembl:ENSG00000110243|HPRD:06966|Vega:OTTHUMG00000046116 11 11q23 apolipoprotein A-V protein-coding APOA5 apolipoprotein A-V O apo-AV|apolipoprotein A5|regeneration-associated protein 3 20121230 -9606 116534 MRGPRE - GPR167|MRGE HGNC:30694|MIM:607232|Ensembl:ENSG00000184350|Vega:OTTHUMG00000011708 11 11p15.4 MAS-related GPR, member E protein-coding MRGPRE MAS-related GPR, member E O G protein-coupled receptor 167|G-protein coupled receptor 167|mas-related G protein-coupled MRGE|mas-related G-protein coupled receptor member E 20121230 -9606 116535 MRGPRF hCG_27986 GPR140|GPR168|MRGF|RTA HGNC:24828|MIM:607233|Ensembl:ENSG00000172935|Vega:OTTHUMG00000167897 11 11q13.3 MAS-related GPR, member F protein-coding MRGPRF MAS-related GPR, member F O G protein-coupled receptor 140|G protein-coupled receptor 168|G protein-coupled receptor MrgF|G-protein coupled receptor 140|G-protein coupled receptor 168|mas-related G protein-coupled MRGF|mas-related G-protein coupled receptor member F|mas-related gene F protein|seven transmembrane helix receptor 20121230 -9606 116540 MRPL53 - L53MT HGNC:16684|MIM:611857|Ensembl:ENSG00000204822|HPRD:14771|Vega:OTTHUMG00000129961 2 2p13.1 mitochondrial ribosomal protein L53 protein-coding MRPL53 mitochondrial ribosomal protein L53 O 39S ribosomal protein L53, mitochondrial 20121230 -9606 116541 MRPL54 - L54mt|MRP-L54 HGNC:16685|MIM:611858|Ensembl:ENSG00000183617|HPRD:14772|Vega:OTTHUMG00000180873 19 19p13.3 mitochondrial ribosomal protein L54 protein-coding MRPL54 mitochondrial ribosomal protein L54 O 39S ribosomal protein L54, mitochondrial 20121230 -9606 116629 HTX3 - - MIM:606325 6 6q21 Heterotaxy, visceral, 3 unknown - - - - 20110215 -9606 116710 FRA18C - - HGNC:16929 18 18q22.2 fragile site, aphidicolin type, common, fra(18)(q22.2) other FRA18C fragile site, aphidicolin type, common, fra(18)(q22.2) O - 20110702 -9606 116729 PPP1R27 - DYSFIP1 HGNC:16813|Ensembl:ENSG00000182676|HPRD:17334|Vega:OTTHUMG00000177916 17 17q25.3 protein phosphatase 1, regulatory subunit 27 protein-coding PPP1R27 protein phosphatase 1, regulatory subunit 27 O dysferlin interacting protein 1|dysferlin-interacting protein 1 (toonin)|protein phosphatase 1 regulatory subunit 27|toonin 20121230 -9606 116730 RPL37P2 - PSANK1|RPL37_9_1150 HGNC:17092 11 11q13 ribosomal protein L37 pseudogene 2 pseudo RPL37P2 ribosomal protein L37 pseudogene 2 O - 20121230 -9606 116809 RPL38P1 - RPL38_1_417 HGNC:17093 3 3q21-q25 ribosomal protein L38 pseudogene 1 pseudo RPL38P1 ribosomal protein L38 pseudogene 1 O - 20121230 -9606 116828 N4BP2L2-IT2 - CG030 HGNC:25038 13 13q13.1 N4BPL2 intronic transcript 2 (non-protein coding) miscRNA N4BP2L2-IT2 N4BPL2 intronic transcript 2 (non-protein coding) O - 20121230 -9606 116832 RPL39L - RPL39L1 HGNC:17094|MIM:607547|Ensembl:ENSG00000163923|HPRD:09610|Vega:OTTHUMG00000156465 3 3q27 ribosomal protein L39-like protein-coding RPL39L ribosomal protein L39-like O 60S ribosomal protein L39-2|60S ribosomal protein L39-like|L39-2|ribosomal protein L39-like 1|ribosomal protein L39-like protein 20121230 -9606 116833 ANIB1 - AIB|AIB1 HGNC:17627|MIM:105800 7 7q11.2 aneurysm, intracranial berry 1 unknown ANIB1 aneurysm, intracranial berry 1 O - 20121209 -9606 116835 HSPA12B RP5-1009E24.4 C20orf60|dJ1009E24.2 HGNC:16193|MIM:610702|Ensembl:ENSG00000132622|HPRD:13683|Vega:OTTHUMG00000031755 20 20p13 heat shock 70kD protein 12B protein-coding HSPA12B heat shock 70kD protein 12B O heat shock 70 kDa protein 12B 20121230 -9606 116840 CNTROB PP1221 LIP8 HGNC:29616|MIM:611425|Ensembl:ENSG00000170037|HPRD:13991|Vega:OTTHUMG00000172932 17 17p13.1 centrobin, centrosomal BRCA2 interacting protein protein-coding CNTROB centrobin, centrosomal BRCA2 interacting protein O LYST-interacting protein 8|LYST-interacting protein LIP8|centrobin|centrosomal BRCA2-interacting protein 20121230 -9606 116841 SNAP47 RP5-870F10.2 C1orf142|HEL170|SNAP-47|SVAP1 HGNC:30669|Ensembl:ENSG00000143740|HPRD:17148|Vega:OTTHUMG00000037697 1 1q42.13 synaptosomal-associated protein, 47kDa protein-coding SNAP47 synaptosomal-associated protein, 47kDa O epididymis luminal protein 170|synaptosomal-associated 47 kDa protein|synaptosomal-associated protein 47 20121230 -9606 116842 LEAP2 - LEAP-2 HGNC:29571|MIM:611373|Ensembl:ENSG00000164406|HPRD:17269|Vega:OTTHUMG00000059837 5 5q31.1 liver expressed antimicrobial peptide 2 protein-coding LEAP2 liver expressed antimicrobial peptide 2 O liver-expressed antimicrobial peptide 2 20121230 -9606 116843 SLC18B1 RP1-55C23.6 C6orf192|dJ55C23.6 HGNC:21573|MIM:613361|Ensembl:ENSG00000146409|HPRD:12869|Vega:OTTHUMG00000015595 6 6q22.3-q23.3 solute carrier family 18, subfamily B, member 1 protein-coding SLC18B1 solute carrier family 18, subfamily B, member 1 O MFS-type transporter C6orf192|MFS-type transporter SLC18B1|solute carrier family 18 member B1 20121230 -9606 116844 LRG1 - HMFT1766|LRG HGNC:29480|MIM:611289|Ensembl:ENSG00000171236|HPRD:10056|Vega:OTTHUMG00000182010 19 19p13.3 leucine-rich alpha-2-glycoprotein 1 protein-coding LRG1 leucine-rich alpha-2-glycoprotein 1 O 1300008B03Rik|2310031E04Rik|leucine rich alpha 2 glycoprotein|leucine-rich alpha-2-glycoprotein 20121230 -9606 116931 MED12L PRO0314 NOPAR|TNRC11L|TRALP|TRALPUSH HGNC:16050|MIM:611318|Ensembl:ENSG00000144893|HPRD:10278|Vega:OTTHUMG00000159844 3 3q25.1 mediator complex subunit 12-like protein-coding MED12L mediator complex subunit 12-like O mediator of RNA polymerase II transcription subunit 12-like protein|mediator of RNA polymerase II transcription, subunit 12 homolog-like|no opposite paired repeat protein|thyroid hormone receptor-associated-like protein|trinucleotide repeat-containing gene 11 protein-like 20121230 -9606 116933 CLRN1-AS1 - CLRN1OS|UCRP HGNC:30895 3 3q25.1 CLRN1 antisense RNA 1 pseudo CLRN1-AS1 CLRN1 antisense RNA 1 O - 20121230 -9606 116935 RPL3P2 - RPL3-Hom|RPL3_1_679 HGNC:17834 6 6p21.3 ribosomal protein L3 pseudogene 2 pseudo RPL3P2 ribosomal protein L3 pseudogene 2 O - 20121230 -9606 116936 RNU86 - U82|U86 MIM:611069 22 22q13 RNA, U86 small nucleolar snoRNA - - - - 20121230 -9606 116937 SNORD83A - RNU83A|U83A HGNC:17131|MIM:611070 22 22q13 small nucleolar RNA, C/D box 83A snoRNA SNORD83A small nucleolar RNA, C/D box 83A O - 20121230 -9606 116938 SNORD83B - RNU83B|U83B HGNC:17132|MIM:611071 22 22q13 small nucleolar RNA, C/D box 83B snoRNA SNORD83B small nucleolar RNA, C/D box 83B O - 20121230 -9606 116966 WDR17 - - HGNC:16661|MIM:609005|Ensembl:ENSG00000150627|HPRD:16417|Vega:OTTHUMG00000160791 4 4q34 WD repeat domain 17 protein-coding WDR17 WD repeat domain 17 O WD repeat-containing protein 17 20121230 -9606 116969 ART5 UNQ575/PRO1137 ARTC5 HGNC:24049|MIM:610625|Ensembl:ENSG00000167311|HPRD:12493|Vega:OTTHUMG00000011842 11 11p15.4 ADP-ribosyltransferase 5 protein-coding ART5 ADP-ribosyltransferase 5 O ADP-ribosyltransferase C2 and C3 toxin-like 5|NAD(P)(+)--arginine ADP-ribosyltransferase 5|ecto-ADP-ribosyltransferase 5|mono(ADP-ribosyl)transferase 5 20121230 -9606 116983 ACAP3 - CENTB5 HGNC:16754|Ensembl:ENSG00000131584|HPRD:10820|Vega:OTTHUMG00000002235 1 - ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 protein-coding ACAP3 ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 O arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 3|centaurin, beta 5|centaurin-beta-5|cnt-b5 20121230 -9606 116984 ARAP2 - CENTD1|PARX HGNC:16924|MIM:606645|Ensembl:ENSG00000047365|HPRD:09439|Vega:OTTHUMG00000097811 4 4p14 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 protein-coding ARAP2 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 O Arf and Rho GAP adapter protein 2|arf-GAP with Rho-GAP domain, ANK repeat and PH domain-containing protein 2|centaurin, delta 1|centaurin-delta-1|cnt-d1 20121230 -9606 116985 ARAP1 - CENTD2 HGNC:16925|MIM:606646|Ensembl:ENSG00000186635|HPRD:09440|Vega:OTTHUMG00000157102 11 11q13.4 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 protein-coding ARAP1 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 O ARF-GAP, RHO-GAP, ankyrin repeat, and pleckstrin homology domains-containing protein 1|arf-GAP with Rho-GAP domain, ANK repeat and PH domain-containing protein 1|centaurin, delta 2|centaurin-delta-2|cnt-d2 20121230 -9606 116986 AGAP2 - CENTG1|GGAP2|PIKE HGNC:16921|MIM:605476|Ensembl:ENSG00000135439|HPRD:05687|Vega:OTTHUMG00000170285 12 12q14.1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 protein-coding AGAP2 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 O Arf GAP with GTP-binding protein-like, ANK repeat and PH domains 2|GTP-binding and GTPase activating protein 2|arf-GAP with GTPase, ANK repeat and PH domain-containing protein 2|centaurin, gamma 1|cnt-g1|phosphatidylinositol 3-kinase enhancer|phosphatidylinositol-3-kinase enhancer|phosphoinositide 3-kinase enhancer 20121230 -9606 116987 AGAP1 - AGAP-1|CENTG2|GGAP1|cnt-g2 HGNC:16922|MIM:608651|Ensembl:ENSG00000157985|HPRD:16359|Vega:OTTHUMG00000133293 2 2q37 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 protein-coding AGAP1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 O Arf GAP with GTP-binding protein-like, ANK repeat and PH domains 1|GTP-binding and GTPase-activating protein 1|arf-GAP with GTPase, ANK repeat and PH domain-containing protein 1|centaurin, gamma 2|centaurin-gamma-2 20121230 -9606 116988 AGAP3 - AGAP-3|CENTG3|CRAG|MRIP-1|cnt-g3 HGNC:16923|Ensembl:ENSG00000133612|HPRD:16707|Vega:OTTHUMG00000158724 7 7q36.1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 protein-coding AGAP3 ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 O CRAM-associated GTPase|CRMP (collapsin response mediator protein) associated|MR1-interacting protein|arf-GAP with GTPase, ANK repeat and PH domain-containing protein 3|centaurin, gamma 3|centaurin-gamma-3 20121230 -9606 117084 CANDF1 - CMCT MIM:114580 2 2p22.3-p21 candidiasis, familial 1 unknown - - - - 20120622 -9606 117143 TADA1 - ADA1|HFI1|RP1-9E21.4|STAF42|TADA1L|hADA1 HGNC:30631|MIM:612763|Ensembl:ENSG00000152382|HPRD:18114|Vega:OTTHUMG00000034321 1 1q24.1 transcriptional adaptor 1 protein-coding TADA1 transcriptional adaptor 1 O SPT3-associated factor 42 (STAF42)|transcriptional adapter 1|transcriptional adapter 1-like protein|transcriptional adaptor 1 (HFI1 homolog, yeast) 20121230 -9606 117144 CATSPER1 - CATSPER|SPGF7 HGNC:17116|MIM:606389|Ensembl:ENSG00000175294|HPRD:09396|Vega:OTTHUMG00000166668 11 11q12.1 cation channel, sperm associated 1 protein-coding CATSPER1 cation channel, sperm associated 1 O cation channel sperm-associated protein 1|hCatSper|sperm ion channel|sperm-associated cation channel 1 20121230 -9606 117145 THEM4 - CTMP HGNC:17947|MIM:606388|Ensembl:ENSG00000159445|HPRD:16215|Vega:OTTHUMG00000013049 1 1q21 thioesterase superfamily member 4 protein-coding THEM4 thioesterase superfamily member 4 O C-terminal modulator protein|carboxyl-terminal modulator protein 20121230 -9606 117151 SLC31A1P1 - CTR1P|CTR1psi|SLC31A1P HGNC:17124 3 3q26.31 solute carrier family 31 (copper transporters), member 1 pseudogene 1 pseudo SLC31A1P1 solute carrier family 31 (copper transporters), member 1 pseudogene 1 O - 20121230 -9606 117153 MIA2 - - HGNC:18432|MIM:608001|Ensembl:ENSG00000150526|HPRD:12149|Vega:OTTHUMG00000028831 14 14q13.2 melanoma inhibitory activity 2 protein-coding MIA2 melanoma inhibitory activity 2 O melanoma inhibitory activity protein 2 20121230 -9606 117154 DACH2 RP11-345E19.1 - HGNC:16814|MIM:300608|Ensembl:ENSG00000126733|HPRD:06481|Vega:OTTHUMG00000021944 X Xq21.3 dachshund homolog 2 (Drosophila) protein-coding DACH2 dachshund homolog 2 (Drosophila) O dachshund homolog 2 20121230 -9606 117155 CATSPER2 - - HGNC:18810|MIM:607249|Ensembl:ENSG00000166762|HPRD:16236|Vega:OTTHUMG00000059902 15 15q15.3 cation channel, sperm associated 2 protein-coding CATSPER2 cation channel, sperm associated 2 O cation channel sperm-associated protein 2|sperm ion channel 20121230 -9606 117156 SCGB3A2 UNQ566/PRO1128 LU103|PNSP1|UGRP1|pnSP-1 HGNC:18391|MIM:606531|Ensembl:ENSG00000164265|HPRD:05940|Vega:OTTHUMG00000129729 5 5q32 secretoglobin, family 3A, member 2 protein-coding SCGB3A2 secretoglobin, family 3A, member 2 O pneumo secretory protein 1|secretoglobin family 3A member 2|uteroglobin-related protein 1 20121230 -9606 117157 SH2D1B - EAT2 HGNC:30416|MIM:608510|Ensembl:ENSG00000198574|HPRD:12248|Vega:OTTHUMG00000031377 1 1q23.3 SH2 domain containing 1B protein-coding SH2D1B SH2 domain containing 1B O EAT-2|EWS/FLI1-activated transcript 2|SH2 domain-containing molecule EAT2|SH2 domain-containing protein 1B 20121230 -9606 117159 DCD - AIDD|DCD-1|DSEP|HCAP|PIF HGNC:14669|MIM:606634|Ensembl:ENSG00000161634|HPRD:07363|Vega:OTTHUMG00000169937 12 12q13.1 dermcidin protein-coding DCD dermcidin O diffusible survival/evasion peptide|preproteolysin|proteolysis inducing factor|survival promoting peptide 20121230 -9606 117166 WFIKKN1 PSEC0040 C16orf12|RJD2|WFIKKN HGNC:30912|MIM:608021|Ensembl:ENSG00000127578|HPRD:12153|Vega:OTTHUMG00000090359 16 16p13.3 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 1 protein-coding WFIKKN1 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 1 O GASP-2|WAP, FS, Ig, KU, and NTR-containing protein|WAP, follistatin, immunoglobulin, kunitz and NTR domain-containing protein|WAP, kazal, immunoglobulin, kunitz and NTR domain-containing protein 1|growth and differentiation factor-associated serum protein 2|hGASP-2 20121230 -9606 117177 RAB3IP - RABIN3 HGNC:16508|MIM:608686|Ensembl:ENSG00000127328|HPRD:10565|Vega:OTTHUMG00000169437 12 12q14.3 RAB3A interacting protein (rabin3) protein-coding RAB3IP RAB3A interacting protein (rabin3) O SSX2 interacting protein|SSX2-interacting protein|rab-3A-interacting protein|rab3A-interacting protein|rabin-3 20121230 -9606 117178 SSX2IP - ADIP HGNC:16509|MIM:608690|Ensembl:ENSG00000117155|HPRD:10566|Vega:OTTHUMG00000009926 1 1p22.3 synovial sarcoma, X breakpoint 2 interacting protein protein-coding SSX2IP synovial sarcoma, X breakpoint 2 interacting protein O SSX2-interacting protein|afadin DIL domain-interacting protein|afadin- and alpha-actinin-binding protein 20121230 -9606 117187 ATOD3 - - MIM:605804 20 20p Dermatitis, atopic, 3 unknown - - - - 20120622 -9606 117188 ATOD5 - ATPD5 MIM:605844 13 13q12-q14 Dermatitis, atopic, 5 unknown - - - - 20120622 -9606 117189 GRDX - GD3 MIM:300351 X Xp11 Graves disease, susceptibility to, X-linked unknown - - - - 20120622 -9606 117190 HPE6 - - MIM:605934 2 2q37.1 holoprosencephaly 6 unknown - - - - 20120622 -9606 117191 HYT1 - - MIM:603918 17 17q Hypertension, essential, susceptibility to, 1 unknown - - - - 20120622 -9606 117192 MNRI - - MIM:606190 1 1p11 meningioma, radiation-induced unknown - - - - 20120622 -9606 117193 THMA - THM MIM:275220 8 8q24.1 Tibial hemimelia unknown - - - - 20110215 -9606 117194 MRGPRX2 - MRGX2 HGNC:17983|MIM:607228|Ensembl:ENSG00000183695|HPRD:06247|Vega:OTTHUMG00000166098 11 11p15.1 MAS-related GPR, member X2 protein-coding MRGPRX2 MAS-related GPR, member X2 O G protein-coupled receptor MRGX2|mas-related G-protein coupled receptor member X2 20121230 -9606 117195 MRGPRX3 - GPCR|MRGX3|SNSR1|SNSR2 HGNC:17980|MIM:607229|Ensembl:ENSG00000179826|HPRD:06248|Vega:OTTHUMG00000166435 11 11p15.1 MAS-related GPR, member X3 protein-coding MRGPRX3 MAS-related GPR, member X3 O G protein-coupled receptor MRGX3|G protein-coupled receptor SNSR1|G protein-coupled receptor SNSR2|mas-related G-protein coupled receptor member X3|mas-related GPCR member X3|sensory neuron-specific G-protein coupled receptor 1/2 20121230 -9606 117196 MRGPRX4 - GPCR|MRGX4|SNSR6 HGNC:17617|MIM:607230|Ensembl:ENSG00000179817|HPRD:06249|Vega:OTTHUMG00000166442 11 11p15.1 MAS-related GPR, member X4 protein-coding MRGPRX4 MAS-related GPR, member X4 O G protein-coupled receptor MRGX4|G protein-coupled receptor SNSR5|G protein-coupled receptor SNSR6|mas-related G-protein coupled receptor member X4|sensory neuron-specific G-protein coupled receptor 5/6 20121230 -9606 117237 SXI2 - - MIM:300179 X Xq25-q26 X inactivation, familial skewed, 2 unknown - - - - 20120622 -9606 117245 HRASLS5 - HRLP5|RLP1|iNAT HGNC:24978|MIM:611474|Ensembl:ENSG00000168004|HPRD:13672|Vega:OTTHUMG00000167806 11 11q13.2 HRAS-like suppressor family, member 5 protein-coding HRASLS5 HRAS-like suppressor family, member 5 O H-rev107-like protein 5|HRAS-like suppressor 5|calcium-independent phosphatidylethanolamine N-acyltransferase|lecithin-retinol acyltransferase (LRAT)-like protein-1 20121230 -9606 117246 FTSJ3 SB92 EPCS3|SPB1 HGNC:17136|Ensembl:ENSG00000108592|HPRD:17024|Vega:OTTHUMG00000179012 17 17q23.3 FtsJ homolog 3 (E. coli) protein-coding FTSJ3 FtsJ homolog 3 (E. coli) O SPB1 RNA methyltransferase homolog|pre-rRNA processing protein FTSJ3|protein ftsJ homolog 3|putative rRNA methyltransferase 3|rRNA (uridine-2'-O-)-methyltransferase 3 20121230 -9606 117247 SLC16A10 RP11-428F8.3 MCT10|PRO0813|TAT1 HGNC:17027|MIM:607550|Ensembl:ENSG00000112394|HPRD:09613|Vega:OTTHUMG00000015371 6 6q21-q22 solute carrier family 16, member 10 (aromatic amino acid transporter) protein-coding SLC16A10 solute carrier family 16, member 10 (aromatic amino acid transporter) O MCT 10|T-type amino acid transporter 1|aromatic amino acid transporter 1|monocarboxylate transporter 10|solute carrier family 16 (monocarboxylic acid transporters), member 10|solute carrier family 16 member 10 20121230 -9606 117248 GALNTL2 UNQ770/PRO1564 GALNT13|GALNT15|GALNT7|PIH5 HGNC:21531|Ensembl:ENSG00000131386|HPRD:13563|Vega:OTTHUMG00000156893 3 3p25.1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 2 protein-coding GALNTL2 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 2 O UDP-GalNAc transferase T15|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase-like protein 2|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 7|galNAc-T-like protein 2|polypeptide GalNAc transferase-like protein 2|polypeptide N-acetylgalactosaminyltransferase 13|polypeptide N-acetylgalactosaminyltransferase-like protein 2|pp-GaNTase-like protein 2|pregnancy-induced hypertension syndrome-related protein 5|protein-UDP acetylgalactosaminyltransferase-like protein 2 20121230 -9606 117283 IP6K3 RP11-6B20.3 IHPK3|INSP6K3 HGNC:17269|MIM:606993|Ensembl:ENSG00000161896|HPRD:07381|Vega:OTTHUMG00000014531 6 6p21.31 inositol hexakisphosphate kinase 3 protein-coding IP6K3 inositol hexakisphosphate kinase 3 O ATP:1D-myo-inositol-hexakisphosphate phosphotransferase|InsP6 kinase 3|inositol hexaphosphate kinase 3 20121230 -9606 117285 DEFB118 - C20orf63|DEFB-18|ESC42|ESP13.6 HGNC:16196|MIM:607650|Ensembl:ENSG00000131068|HPRD:09629|Vega:OTTHUMG00000032161 20 20q11.21 defensin, beta 118 protein-coding DEFB118 defensin, beta 118 O beta-defensin 118|defensin, beta 18|epididymal secretory protein 13.6|epididymus specific clone 42 20121230 -9606 117286 CIB3 - KIP3 HGNC:24580|MIM:610645|Ensembl:ENSG00000141977|HPRD:16713 19 19p13.12 calcium and integrin binding family member 3 protein-coding CIB3 calcium and integrin binding family member 3 O DNA-dependent protein kinase catalytic subunit-interacting protein 3|KIP 3|calcium and integrin-binding family member 3|kinase-interacting protein 3 20121230 -9606 117289 TAGAP FKSG15 ARHGAP47|IDDM21|TAGAP1 HGNC:15669|MIM:609667|Ensembl:ENSG00000164691|HPRD:18143|Vega:OTTHUMG00000015923 6 6q25.3 T-cell activation RhoGTPase activating protein protein-coding TAGAP T-cell activation RhoGTPase activating protein O T-cell activation GTPase-activating protein|T-cell activation Rho GTPase-activating protein 20121230 -9606 117531 TMC1 RP11-296H15.1 DFNA36|DFNB11|DFNB7 HGNC:16513|MIM:606706|Ensembl:ENSG00000165091|HPRD:05988|Vega:OTTHUMG00000020014 9 9q21.12 transmembrane channel-like 1 protein-coding TMC1 transmembrane channel-like 1 O transmembrane channel-like protein 1|transmembrane cochlear-expressed protein 1|transmembrane, cochlear expressed, 1 20121230 -9606 117532 TMC2 RP4-686C3.3 C20orf145|dJ686C3.3 HGNC:16527|MIM:606707|Ensembl:ENSG00000149488|HPRD:09463|Vega:OTTHUMG00000031698 20 20p13 transmembrane channel-like 2 protein-coding TMC2 transmembrane channel-like 2 O transmembrane channel-like protein 2|transmembrane cochlear-expressed protein 2|transmembrane, cochlear expressed, 2 20121230 -9606 117579 RLN3 UNQ6188/PRO20213 H3|RXN3|ZINS4|insl7 HGNC:17135|MIM:606855|Ensembl:ENSG00000171136|HPRD:06031|Vega:OTTHUMG00000181986 19 19p13.2 relaxin 3 protein-coding RLN3 relaxin 3 O insulin-like 7|insulin-like peptide 7|insulin-like peptide INSL7|prorelaxin H3|relaxin-3 20121230 -9606 117581 TWIST2 - DERMO1|SETLSS|bHLHa39 HGNC:20670|MIM:607556|Ensembl:ENSG00000233608|HPRD:09616|Vega:OTTHUMG00000152836 2 2q37.3 twist basic helix-loop-helix transcription factor 2 protein-coding TWIST2 twist basic helix-loop-helix transcription factor 2 O class A basic helix-loop-helix protein 39|dermis-expressed protein 1|twist homolog 2|twist-related bHLH protein Dermo1|twist-related protein 2 20121230 -9606 117583 PARD3B - ALS2CR19|PAR3B|PAR3L|PAR3LC|PAR3beta|Par3Lb HGNC:14446|Ensembl:ENSG00000116117|HPRD:09795|Vega:OTTHUMG00000154562 2 2q33.3 par-3 partitioning defective 3 homolog B (C. elegans) protein-coding PARD3B par-3 partitioning defective 3 homolog B (C. elegans) O PAR3-L protein|PAR3-beta|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 19|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 19 protein|partitioning defective 3 homolog B|partitioning defective 3-like protein|partitioning-defective 3-beta 20121230 -9606 117584 RFFL - CARP-2|CARP2|FRING|RIFIFYLIN|RNF189|RNF34L HGNC:24821|MIM:609735|Ensembl:ENSG00000092871|HPRD:11489|Vega:OTTHUMG00000132933 17 17q12 ring finger and FYVE-like domain containing E3 ubiquitin protein ligase protein-coding RFFL ring finger and FYVE-like domain containing E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase rififylin|FYVE-RING finger protein SAKURA|RING finger and FYVE-like domain-containing protein 1|RING finger protein 189|caspase regulator CARP2|caspases-8 and -10-associated RING finger protein 2|ring finger and FYVE-like domain containing 1 20121230 -9606 117608 ZNF354B - KID2 HGNC:17197|Ensembl:ENSG00000178338|HPRD:15784|Vega:OTTHUMG00000130896 5 5q35.3 zinc finger protein 354B protein-coding ZNF354B zinc finger protein 354B O - 20121230 -9606 117852 TRIM78P - TRIMP1 HGNC:17232 11 11p15 tripartite motif containing 78, pseudogene pseudo TRIM78P tripartite motif containing 78, pseudogene O - 20121017 -9606 117854 TRIM6 - RNF89 HGNC:16277|MIM:607564|Ensembl:ENSG00000121236|HPRD:12123|Vega:OTTHUMG00000150029 11 11p15.4 tripartite motif containing 6 protein-coding TRIM6 tripartite motif containing 6 O RING finger protein 89|tripartite motif-containing 6|tripartite motif-containing protein 6 20121230 -9606 118421 LINC00161 - C21orf100|NCRNA00161 HGNC:17138|HPRD:10733 21 21q21.3 long intergenic non-protein coding RNA 161 miscRNA LINC00161 long intergenic non-protein coding RNA 161 O - 20121230 -9606 118424 UBE2J2 RP5-902P8.8 NCUBE-2|NCUBE2|PRO2121 HGNC:19268|Ensembl:ENSG00000160087|HPRD:15600|Vega:OTTHUMG00000001911 1 1p36.33 ubiquitin-conjugating enzyme E2, J2 protein-coding UBE2J2 ubiquitin-conjugating enzyme E2, J2 O non-canonical ubiquitin-conjugating enzyme 2|ubiquitin conjugating enzyme 6|ubiquitin conjugating enzyme E2, J2|ubiquitin-conjugating enzyme E2 J2|ubiquitin-conjugating enzyme E2, J2 (UBC6 homolog, yeast)|yeast UBC6 homolog 20121230 -9606 118425 GDEP - PCAN1 MIM:609717|HPRD:17035 4 4q21.1 gene differentially expressed in prostate miscRNA - - - - 20121230 -9606 118426 LOH12CR1 - LOH1CR12 HGNC:17950|Ensembl:ENSG00000165714|HPRD:17439|Vega:OTTHUMG00000168542 12 12p12 loss of heterozygosity, 12, chromosomal region 1 protein-coding LOH12CR1 loss of heterozygosity, 12, chromosomal region 1 O loss of heterozygosity 12 chromosomal region 1 protein 20121230 -9606 118427 OLFM3 RP11-556K13.2 NOE3|NOELIN3|NOELIN3_V1|NOELIN3_V2|NOELIN3_V3|NOELIN3_V4|NOELIN3_V5|NOELIN3_V6|OPTIMEDIN HGNC:17990|MIM:607567|Ensembl:ENSG00000118733|Vega:OTTHUMG00000010941 1 1p22 olfactomedin 3 protein-coding OLFM3 olfactomedin 3 O noelin 3|noelin-3|olfactomedin related ER localized protein 3|olfactomedin-3 20121230 -9606 118429 ANTXR2 - CMG-2|CMG2|ISH|JHF HGNC:21732|MIM:608041|Ensembl:ENSG00000163297|HPRD:07452|Vega:OTTHUMG00000151982 4 4q21.21 anthrax toxin receptor 2 protein-coding ANTXR2 anthrax toxin receptor 2 O capillary morphogenesis gene 2 protein|capillary morphogenesis protein 2 20121230 -9606 118430 MUCL1 UNQ590/PRO1160 SBEM HGNC:30588|MIM:610857|Ensembl:ENSG00000172551|HPRD:17290|Vega:OTTHUMG00000169815 12 12q mucin-like 1 protein-coding MUCL1 mucin-like 1 O mucin-like protein 1|small breast epithelial mucin 20121230 -9606 118432 RPL29P2 - RPL29_10_1510 HGNC:17334 17 17p13 ribosomal protein L29 pseudogene 2 pseudo RPL29P2 ribosomal protein L29 pseudogene 2 O - 20121230 -9606 118433 RPL23AP7 - RPL23AL1|RPL23A_6_267|bA395L14.9 HGNC:17336 2 2q14 ribosomal protein L23a pseudogene 7 pseudo RPL23AP7 ribosomal protein L23a pseudogene 7 O - 20121230 -9606 118442 GPR62 - GPCR8|KPG_005 HGNC:13301|MIM:606917|Ensembl:ENSG00000180929|HPRD:06078|Vega:OTTHUMG00000157367 3 3p21.1 G protein-coupled receptor 62 protein-coding GPR62 G protein-coupled receptor 62 O G-protein coupled receptor GPCR8|G-protein coupled receptor KPG_005|hGPCR8|probable G-protein coupled receptor 62 20121230 -9606 118460 EXOSC6 - EAP4|MTR3|Mtr3p|hMtr3p|p11 HGNC:19055|MIM:606490|Ensembl:ENSG00000223496|HPRD:12107|Vega:OTTHUMG00000137578 16 16q22.1 exosome component 6 protein-coding EXOSC6 exosome component 6 O Mtr3 (mRNA transport regulator 3)-homolog|exosome complex component MTR3|exosome complex exonuclease MTR3|hMtr3|homolog of yeast mRNA transport regulator 3|mRNA transport regulator 3 homolog 20121230 -9606 118461 C10orf71 - - HGNC:26973|Ensembl:ENSG00000177354|HPRD:10699|Vega:OTTHUMG00000018190 10 10q11.23 chromosome 10 open reading frame 71 protein-coding C10orf71 chromosome 10 open reading frame 71 O uncharacterized protein C10orf71 20121230 -9606 118471 PRAP1 UNQ608/PRO1195 PRO1195|RP11-122K13.6|UPA HGNC:23304|MIM:609776|Ensembl:ENSG00000165828|HPRD:17898|Vega:OTTHUMG00000019312 10 10q26.3 proline-rich acidic protein 1 protein-coding PRAP1 proline-rich acidic protein 1 O epididymis tissue protein Li 178 20121230 -9606 118472 ZNF511 - - HGNC:28445|Ensembl:ENSG00000198546|HPRD:15812|Vega:OTTHUMG00000019317 10 10q26.3 zinc finger protein 511 protein-coding ZNF511 zinc finger protein 511 O - 20121230 -9606 118487 CHCHD1 - C10orf34|C2360 HGNC:23518|MIM:608842|Ensembl:ENSG00000172586|HPRD:12313|Vega:OTTHUMG00000018475 10 10q22.2 coiled-coil-helix-coiled-coil-helix domain containing 1 protein-coding CHCHD1 coiled-coil-helix-coiled-coil-helix domain containing 1 O coiled-coil-helix-coiled-coil-helix domain-containing protein 1|nuclear protein C2360 20121230 -9606 118490 MSS51 RP11-345K20.3 ZMYND17 HGNC:21000|MIM:614773|Ensembl:ENSG00000166343|HPRD:15742|Vega:OTTHUMG00000018464 10 10q22.2 MSS51 mitochondrial translational activator homolog (S. cerevisiae) protein-coding MSS51 MSS51 mitochondrial translational activator homolog (S. cerevisiae) O putative protein MSS51 homolog, mitochondrial|zinc finger MYND domain-containing protein 17|zinc finger, MYND domain containing 17|zinc finger, MYND-type containing 17 20121230 -9606 118491 TTC18 RP11-152N13.6 - HGNC:30726|Ensembl:ENSG00000156042|HPRD:15583|Vega:OTTHUMG00000018459 10 10q22.2 tetratricopeptide repeat domain 18 protein-coding TTC18 tetratricopeptide repeat domain 18 O TPR repeat protein 18|tetratricopeptide repeat protein 18|tetratricopeptide repeat-containing protein (LOC118491) 20121230 -9606 118611 C10orf90 RP11-422P15.2 FATS|bA422P15.2 HGNC:26563|Ensembl:ENSG00000154493|HPRD:16587|Vega:OTTHUMG00000019245 10 10q26.2 chromosome 10 open reading frame 90 protein-coding C10orf90 chromosome 10 open reading frame 90 O centrosomal protein C10orf90|fragile-site associated tumor suppressor homolog 20121230 -9606 118663 BTBD16 - C10orf87 HGNC:26340|Ensembl:ENSG00000138152|HPRD:12594|Vega:OTTHUMG00000019182 10 10q26.13 BTB (POZ) domain containing 16 protein-coding BTBD16 BTB (POZ) domain containing 16 O BTB/POZ domain-containing protein 16 20121230 -9606 118670 FAM24A - - HGNC:23470|Ensembl:ENSG00000203795|HPRD:18720|Vega:OTTHUMG00000019193 10 10q26.13 family with sequence similarity 24, member A protein-coding FAM24A family with sequence similarity 24, member A O protein FAM24A 20121230 -9606 118672 PSTK - C10orf89 HGNC:28578|MIM:611310|Ensembl:ENSG00000179988|HPRD:16586|Vega:OTTHUMG00000019191 10 10q26.13 phosphoseryl-tRNA kinase protein-coding PSTK phosphoseryl-tRNA kinase O L-seryl-tRNA(Sec) kinase|O-phosphoseryl-tRNA(Sec) kinase 20121230 -9606 118738 ZNF488 RP11-463P17.6 - HGNC:23535|Ensembl:ENSG00000165388|HPRD:15801|Vega:OTTHUMG00000018148 10 10q11.22 zinc finger protein 488 protein-coding ZNF488 zinc finger protein 488 O - 20121230 -9606 118788 PIK3AP1 - BCAP|RP11-34E5.3 HGNC:30034|MIM:607942|Ensembl:ENSG00000155629|HPRD:06401|Vega:OTTHUMG00000018838 10 10q24.1 phosphoinositide-3-kinase adaptor protein 1 protein-coding PIK3AP1 phosphoinositide-3-kinase adaptor protein 1 O B cell adaptor protein|B-cell adapter for phosphoinositide 3-kinase|B-cell phosphoinositide 3-kinase adapter protein 1|phosphoinositide 3-kinase adapter protein 1 20121230 -9606 118812 MORN4 RP11-548K23.4 C10orf83|bA548K23.4 HGNC:24001|Ensembl:ENSG00000171160|HPRD:16584|Vega:OTTHUMG00000018861 10 10q24.2 MORN repeat containing 4 protein-coding MORN4 MORN repeat containing 4 O 44050 protein|MORN repeat-containing protein 4|protein 44050|retinophilin 20121230 -9606 118813 ZFYVE27 - PROTRUDIN|RP11-459F3.2|SPG33 HGNC:26559|MIM:610243|Ensembl:ENSG00000155256|HPRD:15735|Vega:OTTHUMG00000018867 10 10q24.2 zinc finger, FYVE domain containing 27 protein-coding ZFYVE27 zinc finger, FYVE domain containing 27 O protrudin 20121230 -9606 118856 MMP21 - - HGNC:14357|MIM:608416|Ensembl:ENSG00000154485|HPRD:07003|Vega:OTTHUMG00000019235 10 10q26.13 matrix metallopeptidase 21 protein-coding MMP21 matrix metallopeptidase 21 O MMP-21|matrix metalloproteinase 21|matrix metalloproteinase-21 20121230 -9606 118881 COMTD1 UNQ766/PRO1558 - HGNC:26309|Ensembl:ENSG00000165644|HPRD:08678|Vega:OTTHUMG00000018518 10 10q22.2 catechol-O-methyltransferase domain containing 1 protein-coding COMTD1 catechol-O-methyltransferase domain containing 1 O catechol O-methyltransferase domain-containing protein 1 20121230 -9606 118924 FRA10AC1 PRO2972 C10orf4|F26C11.1-like|FRA10A HGNC:1162|MIM:608866|Ensembl:ENSG00000148690|HPRD:12319|Vega:OTTHUMG00000018776 10 10q23.33 fragile site, folic acid type, rare, fra(10)(q23.3) or fra(10)(q24.2) candidate 1 protein-coding FRA10AC1 fragile site, folic acid type, rare, fra(10)(q23.3) or fra(10)(q24.2) candidate 1 O fragile site 10q23.3|protein FRA10AC1|rare folic acid-type fragile site, FRA(10)(q23.3), candidate gene 1 20121230 -9606 118932 ANKRD22 - - HGNC:28321|Ensembl:ENSG00000152766|HPRD:12461|Vega:OTTHUMG00000018699 10 10q23.31 ankyrin repeat domain 22 protein-coding ANKRD22 ankyrin repeat domain 22 O ankyrin repeat domain-containing protein 22 20121230 -9606 118945 CTSL1P1 - CTSLL|CTSLL1 HGNC:2539 10 10q23.2 cathepsin L1 pseudogene 1 pseudo CTSL1P1 cathepsin L1 pseudogene 1 O - 20121230 -9606 118980 SFXN2 RP11-47A8.2 - HGNC:16086|Ensembl:ENSG00000156398|HPRD:18045|Vega:OTTHUMG00000018967 10 10q24.32 sideroflexin 2 protein-coding SFXN2 sideroflexin 2 O sideroflexin-2 20121230 -9606 118987 PDZD8 - PDZK8|bA129M16.2 HGNC:26974|MIM:614235|Ensembl:ENSG00000165650|HPRD:11423|Vega:OTTHUMG00000019122 10 10q26.12 PDZ domain containing 8 protein-coding PDZD8 PDZ domain containing 8 O PDZ domain-containing protein 8|sarcoma antigen NY-SAR-104|sarcoma antigen NY-SAR-84|sarcoma antigen NY-SAR-84/NY-SAR-104 20121230 -9606 119016 AGAP4 - CTGLF1|MRIP2 HGNC:23459|Ensembl:ENSG00000188234|HPRD:16771|Vega:OTTHUMG00000018088 10 10q11.22 ArfGAP with GTPase domain, ankyrin repeat and PH domain 4 protein-coding AGAP4 ArfGAP with GTPase domain, ankyrin repeat and PH domain 4 O AGAP-4|ARF GTPase-activating protein|arf-GAP with GTPase, ANK repeat and PH domain-containing protein 4|centaurin, gamma-like family, member 1|centaurin-gamma-like family member 1 20121230 -9606 119032 C10orf32 RP11-753C18.9 RP11-753C18.6 HGNC:23516|Ensembl:ENSG00000166275|HPRD:12571|Vega:OTTHUMG00000018975 10 10q24.32 chromosome 10 open reading frame 32 protein-coding C10orf32 chromosome 10 open reading frame 32 O UPF0693 protein C10orf32 20121230 -9606 119180 LYZL2 - - HGNC:29613|MIM:612748|Ensembl:ENSG00000151033|HPRD:14337|Vega:OTTHUMG00000017898 10 10p11.23 lysozyme-like 2 protein-coding LYZL2 lysozyme-like 2 O lysozyme 2|lysozyme-2|lysozyme-like protein 2 20121230 -9606 119358 SNRPD2P1 - SNRPD2P|bA478K7.1 HGNC:31459 10 10q23.31 small nuclear ribonucleoprotein D2 pseudogene 1 pseudo SNRPD2P1 small nuclear ribonucleoprotein D2 pseudogene 1 O - 20121230 -9606 119369 NUDT9P1 - C10orf98|bA56M3.1 HGNC:28523 10 10q23.32 nudix (nucleoside diphosphate linked moiety X)-type motif 9 pseudogene 1 pseudo NUDT9P1 nudix (nucleoside diphosphate linked moiety X)-type motif 9 pseudogene 1 O - 20121230 -9606 119385 AGAP11 - - HGNC:29421 10 10q23.2 ankyrin repeat and GTPase domain Arf GTPase activating protein 11 protein-coding AGAP11 ankyrin repeat and GTPase domain Arf GTPase activating protein 11 O AGAP-11|arf-GAP with GTPase, ANK repeat and PH domain-containing protein 11 20121230 -9606 119391 GSTO2 RP11-127L20.2 GSTO 2-2|bA127L20.1 HGNC:23064|MIM:612314|Ensembl:ENSG00000065621|HPRD:13614|Vega:OTTHUMG00000019006 10 10q25.1 glutathione S-transferase omega 2 protein-coding GSTO2 glutathione S-transferase omega 2 O GSTO-2|MMA(V) reductase|bA127L20.1 (novel glutathione-S-transferase)|glutathione S-transferase omega 2-2|glutathione S-transferase omega-2|glutathione-S-transferase-like protein|glutathione-dependent dehydroascorbate reductase|monomethylarsonic acid reductase 20121230 -9606 119392 SFR1 RP11-373N18.1 C10orf78|MEI5|MEIR5|bA373N18.1 HGNC:29574|Ensembl:ENSG00000156384|HPRD:12590|Vega:OTTHUMG00000019000 10 10q25.1 SWI5-dependent recombination repair 1 protein-coding SFR1 SWI5-dependent recombination repair 1 O MEI5 recombination repair protein homolog|SWI5-dependent recombination repair protein 1|meiosis protein 5 homolog|swi5-dependent recombination DNA repair protein 1 homolog 20121230 -9606 119395 CALHM3 - FAM26A|bA225H22.7 HGNC:23458|Ensembl:ENSG00000183128|HPRD:13300|Vega:OTTHUMG00000018989 10 10q24.33 calcium homeostasis modulator 3 protein-coding CALHM3 calcium homeostasis modulator 3 O calcium homeostasis modulator protein 3|family with sequence similarity 26, member A 20121230 -9606 119437 CTAGE7P - CTAGE7|CTAGEP|bA500G10.2|rcCTAGE5 HGNC:25111 10 10q26.3 CTAGE family, member 7, pseudogene pseudo CTAGE7P CTAGE family, member 7, pseudogene O - 20121230 -9606 119467 CLRN3 - TMEM12|USH3AL1 HGNC:20795|Ensembl:ENSG00000180745|HPRD:14553|Vega:OTTHUMG00000019253 10 10q26.2 clarin 3 protein-coding CLRN3 clarin 3 O clarin-3|transmembrane protein 12|usher syndrome type-3A-like protein 1 20121230 -9606 119504 ANAPC16 - APC16|C10orf104|CENP-27|MSAG|bA570G20.3 HGNC:26976|MIM:613427|Ensembl:ENSG00000166295|HPRD:12554|Vega:OTTHUMG00000018433 10 10q22.1 anaphase promoting complex subunit 16 protein-coding ANAPC16 anaphase promoting complex subunit 16 O anaphase-promoting complex subunit 16|centromere protein 27|cyclosome subunit 16|metabolic syndrome-associated protein 20121230 -9606 119548 PNLIPRP3 - - HGNC:23492|Ensembl:ENSG00000203837|HPRD:18542|Vega:OTTHUMG00000019100 10 10q25.3 pancreatic lipase-related protein 3 protein-coding PNLIPRP3 pancreatic lipase-related protein 3 O PL-RP3 20121230 -9606 119559 SFXN4 - BCRM1 HGNC:16088|Ensembl:ENSG00000183605|HPRD:18046|Vega:OTTHUMG00000019147 10 10q26.11 sideroflexin 4 protein-coding SFXN4 sideroflexin 4 O breast cancer resistance marker 1|sideroflexin-4 20121230 -9606 119587 CPXM2 UNQ676/PRO1310 CPX2|UNQ676 HGNC:26977|Ensembl:ENSG00000121898|HPRD:08517|Vega:OTTHUMG00000019206 10 10q26.13 carboxypeptidase X (M14 family), member 2 protein-coding CPXM2 carboxypeptidase X (M14 family), member 2 O 4632435C11Rik|carboxypeptidase Hlo|carboxypeptidase-like protein X2|cytosolic carboxypeptidase|inactive carboxypeptidase-like protein X2 20121230 -9606 119678 OR52E2 - - HGNC:14769|Ensembl:ENSG00000176787|HPRD:15009|Vega:OTTHUMG00000066608 11 11p15.4 olfactory receptor, family 52, subfamily E, member 2 protein-coding OR52E2 olfactory receptor, family 52, subfamily E, member 2 O olfactory receptor 52E2|olfactory receptor, family 10, subfamily AC, member 1 pseudogene 20121230 -9606 119679 OR52J3 - OR11-32 HGNC:14799|Ensembl:ENSG00000205495|HPRD:15017|Vega:OTTHUMG00000066600 11 11p15.4 olfactory receptor, family 52, subfamily J, member 3 protein-coding OR52J3 olfactory receptor, family 52, subfamily J, member 3 O olfactory receptor 52J3|olfactory receptor OR11-32 20121230 -9606 119682 OR51L1 - OR11-31 HGNC:14759|Ensembl:ENSG00000176798|HPRD:11810|Vega:OTTHUMG00000066605 11 11p15.4 olfactory receptor, family 51, subfamily L, member 1 protein-coding OR51L1 olfactory receptor, family 51, subfamily L, member 1 O olfactory receptor 51L1|olfactory receptor OR11-31 20121230 -9606 119687 OR51A7 - OR11-27 HGNC:15188|Ensembl:ENSG00000176895|HPRD:14992|Vega:OTTHUMG00000066502 11 11p15.4 olfactory receptor, family 51, subfamily A, member 7 protein-coding OR51A7 olfactory receptor, family 51, subfamily A, member 7 O olfactory receptor 51A7|olfactory receptor OR11-27 20121230 -9606 119692 OR51S1 - OR11-24 HGNC:15204|Ensembl:ENSG00000176922|HPRD:17739|Vega:OTTHUMG00000066506 11 11p15.4 olfactory receptor, family 51, subfamily S, member 1 protein-coding OR51S1 olfactory receptor, family 51, subfamily S, member 1 O olfactory receptor 51S1|olfactory receptor OR11-24 20121230 -9606 119694 OR51F2 - OR11-23 HGNC:15197|Ensembl:ENSG00000176925|HPRD:17738|Vega:OTTHUMG00000066508 11 11p15.4 olfactory receptor, family 51, subfamily F, member 2 protein-coding OR51F2 olfactory receptor, family 51, subfamily F, member 2 O olfactory receptor 51F2|olfactory receptor OR11-23 20121230 -9606 119695 OR52R1 - OR11-22 HGNC:15235|Ensembl:ENSG00000176937|HPRD:15024|Vega:OTTHUMG00000066510 11 11p15.4 olfactory receptor, family 52, subfamily R, member 1 protein-coding OR52R1 olfactory receptor, family 52, subfamily R, member 1 O olfactory receptor 52R1|olfactory receptor OR11-22 20121230 -9606 119696 OR51N1P - - HGNC:14757 11 11p15.4 olfactory receptor, family 51, subfamily N, member 1 pseudogene pseudo OR51N1P olfactory receptor, family 51, subfamily N, member 1 pseudogene O - 20121230 -9606 119710 C11orf74 - - HGNC:25142|Ensembl:ENSG00000166352|HPRD:14019|Vega:OTTHUMG00000166397 11 11p12 chromosome 11 open reading frame 74 protein-coding C11orf74 chromosome 11 open reading frame 74 O HEPIS|uncharacterized protein C11orf74 20121230 -9606 119722 KRT18P14 - KRT18L4 HGNC:6433 11 11p13 keratin 18 pseudogene 14 pseudo KRT18P14 keratin 18 pseudogene 14 O - 20121230 -9606 119749 OR4C46 - - HGNC:31271|MIM:614273|Ensembl:ENSG00000185926|HPRD:14964|Vega:OTTHUMG00000166705 11 11p11.12 olfactory receptor, family 4, subfamily C, member 46 protein-coding OR4C46 olfactory receptor, family 4, subfamily C, member 46 O olfactory receptor 4C46 20121230 -9606 119750 OR4C2P - OR4C8P HGNC:14696 11 11p11.2 olfactory receptor, family 4, subfamily C, member 2 pseudogene pseudo OR4C2P olfactory receptor, family 4, subfamily C, member 2 pseudogene O - 20121230 -9606 119764 OR4X2 - OR11-105 HGNC:15184|Ensembl:ENSG00000172208|HPRD:14990|Vega:OTTHUMG00000165302 11 11p11.2 olfactory receptor, family 4, subfamily X, member 2 protein-coding OR4X2 olfactory receptor, family 4, subfamily X, member 2 O olfactory receptor 4X2|olfactory receptor OR11-105 20121230 -9606 119765 OR4B1 - OR11-106|OST208 HGNC:8290|Ensembl:ENSG00000175619|HPRD:14960|Vega:OTTHUMG00000166576 11 11p11.2 olfactory receptor, family 4, subfamily B, member 1 protein-coding OR4B1 olfactory receptor, family 4, subfamily B, member 1 O olfactory receptor 4B1|olfactory receptor OR11-106 20121230 -9606 119772 OR52M1 - OR11-11|OR52M1P|OR52M3P HGNC:15225|Ensembl:ENSG00000197790|HPRD:15020|Vega:OTTHUMG00000165706 11 11p15.4 olfactory receptor, family 52, subfamily M, member 1 protein-coding OR52M1 olfactory receptor, family 52, subfamily M, member 1 O olfactory receptor 52M1|olfactory receptor OR11-11|olfactory receptor, family 52, subfamily M, member 1 pseudogene|olfactory receptor, family 52, subfamily M, member 3 pseudogene 20121230 -9606 119774 OR52K2 - OR11-7 HGNC:15223|Ensembl:ENSG00000181963|HPRD:15019|Vega:OTTHUMG00000165703 11 11p15.4 olfactory receptor, family 52, subfamily K, member 2 protein-coding OR52K2 olfactory receptor, family 52, subfamily K, member 2 O olfactory receptor 52K2|olfactory receptor OR11-7 20121230 -9606 119775 OR52P2P - - HGNC:15233 11 11p15.4 olfactory receptor, family 52, subfamily P, member 2 pseudogene pseudo OR52P2P olfactory receptor, family 52, subfamily P, member 2 pseudogene O - 20121230 -9606 120065 OR5P2 - JCG3|JCG4 HGNC:14783|Ensembl:ENSG00000183303|HPRD:17769|Vega:OTTHUMG00000165668 11 11p15.4 olfactory receptor, family 5, subfamily P, member 2 protein-coding OR5P2 olfactory receptor, family 5, subfamily P, member 2 O olfactory receptor 5P2|olfactory receptor OR11-93|olfactory receptor-like protein JCG3 20121230 -9606 120066 OR5P3 - JCG1 HGNC:14784|Ensembl:ENSG00000182334|HPRD:17770|Vega:OTTHUMG00000165669 11 11p15.4 olfactory receptor, family 5, subfamily P, member 3 protein-coding OR5P3 olfactory receptor, family 5, subfamily P, member 3 O olfactory receptor 5P3|olfactory receptor OR11-94|olfactory receptor-like protein JCG1 20121230 -9606 120071 GYLTL1B PP5656 LARGE2 HGNC:16522|MIM:609709|Ensembl:ENSG00000165905|HPRD:13618|Vega:OTTHUMG00000167037 11 11p11.2 glycosyltransferase-like 1B protein-coding GYLTL1B glycosyltransferase-like 1B O glycosyltransferase-like protein LARGE2|like-glycosyltransferase 2|ortholog of mouse glycosyltransferase-like 1B 20121230 -9606 120103 SLC36A4 - PAT4 HGNC:19660|MIM:613760|Ensembl:ENSG00000180773|HPRD:15379|Vega:OTTHUMG00000167368 11 11q21 solute carrier family 36 (proton/amino acid symporter), member 4 protein-coding SLC36A4 solute carrier family 36 (proton/amino acid symporter), member 4 O proton-coupled amino acid transporter 4|proton/amino acid transporter 4|solute carrier family 36 member 4 20121230 -9606 120114 FAT3 - CDHF15|CDHR10 HGNC:23112|MIM:612483|Ensembl:ENSG00000165323|Vega:OTTHUMG00000154468 11 11q14.3 FAT tumor suppressor homolog 3 (Drosophila) protein-coding FAT3 FAT tumor suppressor homolog 3 (Drosophila) O cadherin family member 15|cadherin-related family member 10|hFat3|protocadherin Fat 3 20121230 -9606 120126 UBTFL2 - - HGNC:35169 11 11q14.3 upstream binding transcription factor, RNA polymerase I-like 2 (pseudogene) pseudo UBTFL2 upstream binding transcription factor, RNA polymerase I-like 2 (pseudogene) O - 20121230 -9606 120146 TRIM64 - C11orf28|TRIM64A HGNC:14663 11 11q14.3 tripartite motif containing 64 protein-coding TRIM64 tripartite motif containing 64 O tripartite motif-containing 64|tripartite motif-containing protein 64 20121211 -9606 120224 TMEM45B - - HGNC:25194|Ensembl:ENSG00000151715|HPRD:14020|Vega:OTTHUMG00000165760 11 11q24.3 transmembrane protein 45B protein-coding TMEM45B transmembrane protein 45B O - 20121230 -9606 120227 CYP2R1 - - HGNC:20580|MIM:608713|Ensembl:ENSG00000186104|HPRD:10569|Vega:OTTHUMG00000165900 11 11p15.2 cytochrome P450, family 2, subfamily R, polypeptide 1 protein-coding CYP2R1 cytochrome P450, family 2, subfamily R, polypeptide 1 O cytochrome P450 2R1|cytochrome P450, family 2, R1|vitamin D 25-hydroxylase 20121230 -9606 120237 DBX1 - - HGNC:33185|Ensembl:ENSG00000109851|HPRD:18721|Vega:OTTHUMG00000166043 11 11p15.1 developing brain homeobox 1 protein-coding DBX1 developing brain homeobox 1 O developing brain homeobox protein 1|homeobox protein DBX1 20121230 -9606 120318 RPS6P17 - RPS6_7_1168 HGNC:36669 11 11q22.2 ribosomal protein S6 pseudogene 17 pseudo RPS6P17 ribosomal protein S6 pseudogene 17 O - 20121230 -9606 120321 CSNK1A1P2 - - HGNC:30445 11 11q22.2 casein kinase 1, alpha 1 pseudogene 2 pseudo CSNK1A1P2 casein kinase 1, alpha 1 pseudogene 2 O - 20121230 -9606 120364 LOC120364 - - - 11 11q23.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 120376 C11orf93 - - HGNC:26978|Ensembl:ENSG00000214290|Vega:OTTHUMG00000166657 11 11q23.1 chromosome 11 open reading frame 93 protein-coding C11orf93 chromosome 11 open reading frame 93 O uncharacterized protein C11orf93 20121230 -9606 120379 PIH1D2 - - HGNC:25210|Ensembl:ENSG00000150773|HPRD:14021|Vega:OTTHUMG00000166925 11 11q23.1 PIH1 domain containing 2 protein-coding PIH1D2 PIH1 domain containing 2 O PIH1 domain-containing protein 2 20121230 -9606 120400 NXPE1 - FAM55A HGNC:28527|Ensembl:ENSG00000095110|HPRD:13315|Vega:OTTHUMG00000168284 11 11q23.2 neurexophilin and PC-esterase domain family, member 1 protein-coding NXPE1 neurexophilin and PC-esterase domain family, member 1 O NXPE family member 1|family with sequence similarity 55, member A|protein FAM55A 20121230 -9606 120406 NXPE2 - FAM55B HGNC:26331|Ensembl:ENSG00000204361|HPRD:08055|Vega:OTTHUMG00000168293 11 11q23.3 neurexophilin and PC-esterase domain family, member 2 protein-coding NXPE2 neurexophilin and PC-esterase domain family, member 2 O NXPE family member 2|family with sequence similarity 55, member B|protein FAM55B 20121230 -9606 120425 AMICA1 UNQ722/PRO1387 AMICA|CREA7-1|CREA7-4|Gm638|JAML HGNC:19084|MIM:609770|Ensembl:ENSG00000160593|HPRD:16482|Vega:OTTHUMG00000166965 11 11q23.3 adhesion molecule, interacts with CXADR antigen 1 protein-coding AMICA1 adhesion molecule, interacts with CXADR antigen 1 O adhesion molecule AMICA|adhesion molecule interacting with CXADR antigen 1|adhesion molecule that interacts with CXADR antigen 1|dendritic cell-specific protein CREA7-1|dendritic-cell specific protein CREA7-1|dendritic-cell specific protein CREA7-4|junctional adhesion molecule|junctional adhesion molecule-like 20121230 -9606 120449 LOC120449 - - - 11 11p11.2 C-terminal binding protein 2 pseudogene pseudo - - - - 20121230 -9606 120526 DNAJC24 AC108456.1 DPH4|JJJ3|ZCSL3 HGNC:26979|MIM:611072|Ensembl:ENSG00000170946|HPRD:15705|Vega:OTTHUMG00000133712 11 11p13 DnaJ (Hsp40) homolog, subfamily C, member 24 protein-coding DNAJC24 DnaJ (Hsp40) homolog, subfamily C, member 24 O 1700030A21Rik|CSL-type zinc finger-containing protein 3|DPH4 homolog (JJJ3, S. cerevisiae)|DPH4, JJJ3 homolog|dnaJ homolog subfamily C member 24|zinc finger, CSL domain containing 3|zinc finger, CSL-type containing 3 20121230 -9606 120528 CYCSP25 - HC10|HCP25 HGNC:24399 11 11p13 cytochrome c, somatic pseudogene 25 pseudo CYCSP25 cytochrome c, somatic pseudogene 25 O - 20121230 -9606 120534 ARL14EP - ARF7EP|C11orf46|dJ299F11.1 HGNC:26798|MIM:612295|Ensembl:ENSG00000152219|HPRD:08796|Vega:OTTHUMG00000166154 11 11p14.1 ADP-ribosylation factor-like 14 effector protein protein-coding ARL14EP ADP-ribosylation factor-like 14 effector protein O ARF7 effector protein|ARL14 effector protein 20121230 -9606 120586 OR8I2 - OR11-170 HGNC:15310|Ensembl:ENSG00000172154|HPRD:15084|Vega:OTTHUMG00000166831 11 11q12.1 olfactory receptor, family 8, subfamily I, member 2 protein-coding OR8I2 olfactory receptor, family 8, subfamily I, member 2 O olfactory receptor 8I2|olfactory receptor OR11-170 20121230 -9606 120775 OR2D3 - OR11-89 HGNC:15146|Ensembl:ENSG00000178358|HPRD:17698|Vega:OTTHUMG00000165742 11 11p15.4 olfactory receptor, family 2, subfamily D, member 3 protein-coding OR2D3 olfactory receptor, family 2, subfamily D, member 3 O olfactory receptor 2D3|olfactory receptor OR11-89 20121230 -9606 120776 OR2D2 - OR11-610|OR2D1|hg27 HGNC:8244|MIM:608494|Ensembl:ENSG00000166368|HPRD:12247|Vega:OTTHUMG00000165741 11 11p15.4 olfactory receptor, family 2, subfamily D, member 2 protein-coding OR2D2 olfactory receptor, family 2, subfamily D, member 2 O HB2|olfactory receptor 11-610|olfactory receptor 2D1|olfactory receptor 2D2|olfactory receptor OR11-88|olfactory receptor, family 2, subfamily D, member 1 20121230 -9606 120787 OR52W1 - OR11-71|OR52W1P HGNC:15239|Ensembl:ENSG00000175485|HPRD:15025|Vega:OTTHUMG00000165378 11 11p15.4 olfactory receptor, family 52, subfamily W, member 1 protein-coding OR52W1 olfactory receptor, family 52, subfamily W, member 1 O olfactory receptor 52W1|olfactory receptor OR11-71|olfactory receptor, family 52, subfamily W, member 1 pseudogene 20121230 -9606 120793 OR56A4 - OR11-49 HGNC:14791|Ensembl:ENSG00000183389|HPRD:15026|Vega:OTTHUMG00000165376 11 11p15.4 olfactory receptor, family 56, subfamily A, member 4 protein-coding OR56A4 olfactory receptor, family 56, subfamily A, member 4 O olfactory receptor 56A4|olfactory receptor OR11-49 20121230 -9606 120796 OR56A1 - OR11-75 HGNC:14781|Ensembl:ENSG00000180934|HPRD:17746|Vega:OTTHUMG00000165377 11 11p15.4 olfactory receptor, family 56, subfamily A, member 1 protein-coding OR56A1 olfactory receptor, family 56, subfamily A, member 1 O olfactory receptor 56A1|olfactory receptor OR11-75 20121230 -9606 120824 TRIM51GP - - HGNC:43972 11 11p11.12 tripartite motif-containing 51G, pseudogene pseudo TRIM51GP tripartite motif-containing 51G, pseudogene O - 20121230 -9606 120863 DEPDC4 - DEP.4 HGNC:22952|Ensembl:ENSG00000166153|HPRD:13136|Vega:OTTHUMG00000170318 12 12q23.1 DEP domain containing 4 protein-coding DEPDC4 DEP domain containing 4 O DEP domain-containing protein 4 20121230 -9606 120872 RPL7P38 - RPL7_24_1261 HGNC:36731 12 12q21.31 ribosomal protein L7 pseudogene 38 pseudo RPL7P38 ribosomal protein L7 pseudogene 38 O - 20121230 -9606 120892 LRRK2 - AURA17|DARDARIN|PARK8|RIPK7|ROCO2 HGNC:18618|MIM:609007|Ensembl:ENSG00000188906|Vega:OTTHUMG00000059742 12 12q12 leucine-rich repeat kinase 2 protein-coding LRRK2 leucine-rich repeat kinase 2 O augmented in rheumatoid arthritis 17|leucine-rich repeat serine/threonine-protein kinase 2 20121230 -9606 120935 CCDC38 - - HGNC:26843|Ensembl:ENSG00000165972|HPRD:08268|Vega:OTTHUMG00000170352 12 12q23.1 coiled-coil domain containing 38 protein-coding CCDC38 coiled-coil domain containing 38 O coiled-coil domain-containing protein 38 20121230 -9606 120939 TMEM52B UNQ5927/PRO19821 C12orf59 HGNC:26438|Ensembl:ENSG00000165685|HPRD:08709|Vega:OTTHUMG00000168410 12 12p13.2 transmembrane protein 52B protein-coding TMEM52B transmembrane protein 52B O - 20121230 -9606 121006 FAM186A - - HGNC:26980|Ensembl:ENSG00000185958|Vega:OTTHUMG00000167889 12 12q13.12 family with sequence similarity 186, member A protein-coding FAM186A family with sequence similarity 186, member A O protein FAM186A 20121230 -9606 121014 LOC121014 - - - 12 12p11 tubulin, beta 2B class IIb pseudogene pseudo - - - - 20121230 -9606 121026 CYCSP30 - HCP30 HGNC:24405 12 12q21.32 cytochrome c, somatic pseudogene 30 pseudo CYCSP30 cytochrome c, somatic pseudogene 30 O - 20121230 -9606 121053 C12orf45 - - HGNC:28628|Ensembl:ENSG00000151131|HPRD:17556|Vega:OTTHUMG00000169822 12 12q23.3 chromosome 12 open reading frame 45 protein-coding C12orf45 chromosome 12 open reading frame 45 O uncharacterized protein C12orf45 20121230 -9606 121054 KRT18P20 - - HGNC:33388 12 12q23.3 keratin 18 pseudogene 20 pseudo KRT18P20 keratin 18 pseudogene 20 O - 20121230 -9606 121129 OR2AP1 - OR2AP1P HGNC:15335|Ensembl:ENSG00000179615|Vega:OTTHUMG00000169960 12 12q13.2 olfactory receptor, family 2, subfamily AP, member 1 protein-coding OR2AP1 olfactory receptor, family 2, subfamily AP, member 1 O olfactory receptor 2AP1|olfactory receptor OR12-9|olfactory receptor, family 2, subfamily AP, member 1 pseudogene|seven transmembrane helix receptor 20121230 -9606 121130 OR10P1 - OR10P1P|OR10P2P|OR10P3P|OR12-7|OST701 HGNC:15378|Ensembl:ENSG00000175398|HPRD:14895|Vega:OTTHUMG00000169961 12 12q13.2 olfactory receptor, family 10, subfamily P, member 1 protein-coding OR10P1 olfactory receptor, family 10, subfamily P, member 1 O olfactory receptor 10P1|olfactory receptor 10P2|olfactory receptor 10P3|olfactory receptor OR12-7|olfactory receptor, family 10, subfamily P, member 1 pseudogene|olfactory receptor, family 10, subfamily P, member 2 pseudogene|olfactory receptor, family 10, subfamily P, member 3 pseudogene|seven transmembrane helix receptor 20121230 -9606 121131 PSMB3P - - HGNC:20633 12 12q13.2 proteasome (prosome, macropain) subunit, beta type, 3 pseudogene pseudo PSMB3P proteasome (prosome, macropain) subunit, beta type, 3 pseudogene O - 20121230 -9606 121214 SDR9C7 - RDHS|SDR-O|SDRO HGNC:29958|MIM:609769|Ensembl:ENSG00000170426|HPRD:15235|Vega:OTTHUMG00000171004 12 12q13.3 short chain dehydrogenase/reductase family 9C, member 7 protein-coding SDR9C7 short chain dehydrogenase/reductase family 9C, member 7 O RDH-S|orphan short-chain dehydrogenase / reductase|orphan short-chain dehydrogenase/reductase|retinol dehydrogenase similar protein|short-chain dehydrogenase/reductase family 9C member 7 20121230 -9606 121227 LRIG3 UNQ287/PRO326/PRO335 LIG3 HGNC:30991|MIM:608870|Ensembl:ENSG00000139263|HPRD:08317|Vega:OTTHUMG00000169940 12 12q14.1 leucine-rich repeats and immunoglobulin-like domains 3 protein-coding LRIG3 leucine-rich repeats and immunoglobulin-like domains 3 O LIG-3|leucine-rich repeats and immunoglobulin-like domains protein 3 20121230 -9606 121256 TMEM132D - MOLT HGNC:29411|MIM:611257|Ensembl:ENSG00000151952|HPRD:13906|Vega:OTTHUMG00000168400 12 12q24.33 transmembrane protein 132D protein-coding TMEM132D transmembrane protein 132D O mature OL transmembrane protein|mature oligodendrocytes transmembrane protein 20121230 -9606 121260 SLC15A4 FP12591 PHT1|PTR4 HGNC:23090|Ensembl:ENSG00000139370|Vega:OTTHUMG00000168415 12 12q24.32 solute carrier family 15, member 4 protein-coding SLC15A4 solute carrier family 15, member 4 O hPHT1|peptide transporter 4|peptide-histidine transporter 4|peptide/histidine transporter 1|solute carrier family 15 member 4 20121230 -9606 121268 RHEBL1 - RHEBL1c HGNC:21166|Ensembl:ENSG00000167550|HPRD:15245|Vega:OTTHUMG00000170407 12 12q13.12 Ras homolog enriched in brain like 1 protein-coding RHEBL1 Ras homolog enriched in brain like 1 O GTPase RhebL1|Ras homolog enriched in brain like 1 c|ras homolog enriched in brain like-1 c|ras homolog enriched in brain-like protein 1|rheb-like protein 1|rheb2 20121230 -9606 121270 OR11M1P - - HGNC:15333 12 12q13.11 olfactory receptor, family 11, subfamily M, member 1 pseudogene pseudo OR11M1P olfactory receptor, family 11, subfamily M, member 1 pseudogene O - 20121230 -9606 121273 C12orf54 HSD29 HSD-29|HSD-30 HGNC:28553|Ensembl:ENSG00000177627|HPRD:14596|Vega:OTTHUMG00000170019 12 12q13.11 chromosome 12 open reading frame 54 protein-coding C12orf54 chromosome 12 open reading frame 54 O uncharacterized protein C12orf54 20121230 -9606 121274 ZNF641 - - HGNC:31834|MIM:613906|Ensembl:ENSG00000167528|HPRD:08711|Vega:OTTHUMG00000169906 12 12q13.11 zinc finger protein 641 protein-coding ZNF641 zinc finger protein 641 O - 20121230 -9606 121275 OR10AD1 - OR10AD1P|OR12-1 HGNC:14819|Ensembl:ENSG00000172640|HPRD:11812|HPRD:14884|Vega:OTTHUMG00000168027 12 12q13.11 olfactory receptor, family 10, subfamily AD, member 1 protein-coding OR10AD1 olfactory receptor, family 10, subfamily AD, member 1 O olfactory receptor 10AD1|olfactory receptor OR12-1|olfactory receptor, family 10, subfamily AD, member 1 pseudogene 20121230 -9606 121278 TPH2 - ADHD7|NTPH HGNC:20692|MIM:607478|Ensembl:ENSG00000139287|HPRD:09594|Vega:OTTHUMG00000169677 12 12q21.1 tryptophan hydroxylase 2 protein-coding TPH2 tryptophan hydroxylase 2 O neuronal tryptophan hydroxylase|tryptophan 5-hydroxylase 2|tryptophan 5-monooxygenase 2 20121230 -9606 121296 LOC121296 - - - 12 12q24.32 transmembrane protein 132B pseudogene pseudo - - - - 20121230 -9606 121328 GGTA2P - GGTA1P|GLYT2L|GLYT3|HGT2 HGNC:4254 12 12q14.3 glycoprotein, alpha-galactosyltransferase 2, pseudogene pseudo GGTA2P glycoprotein, alpha-galactosyltransferase 2, pseudogene O - 20121230 -9606 121340 SP7 - OI11|OI12|OSX|osterix HGNC:17321|MIM:606633|Ensembl:ENSG00000170374|HPRD:05971|Vega:OTTHUMG00000170031 12 12q13.13 Sp7 transcription factor protein-coding SP7 Sp7 transcription factor O transcription factor Sp7|zinc finger protein osterix 20121230 -9606 121355 GTSF1 - FAM112B HGNC:26565|Ensembl:ENSG00000170627|HPRD:08150|Vega:OTTHUMG00000169842 12 12q13.13 gametocyte specific factor 1 protein-coding GTSF1 gametocyte specific factor 1 O family with sequence similarity 112, member B|gametocyte-specific factor 1 20121230 -9606 121360 OR9K1P - OR12-4 HGNC:15338 12 12q13.2 olfactory receptor, family 9, subfamily K, member 1 pseudogene pseudo OR9K1P olfactory receptor, family 9, subfamily K, member 1 pseudogene O - 20121230 -9606 121364 OR10A7 - OR12-6 HGNC:15329|Ensembl:ENSG00000179919|HPRD:14883|Vega:OTTHUMG00000169860 12 12q13.2 olfactory receptor, family 10, subfamily A, member 7 protein-coding OR10A7 olfactory receptor, family 10, subfamily A, member 7 O olfactory receptor 10A7|olfactory receptor OR12-6 20121230 -9606 121391 KRT74 - HTSS2|K6IRS4|KRT5C|KRT6IRS4 HGNC:28929|MIM:608248|Ensembl:ENSG00000170484|HPRD:10504|Vega:OTTHUMG00000169658 12 12q13.13 keratin 74 protein-coding KRT74 keratin 74 O CK-74|K5C|K74|cytokeratin-74|keratin 5c|keratin 6 irs4|keratin, type II cytoskeletal 74|keratin-5c|keratin-74|type II inner root sheath-specific keratin-K6irs4|type-II keratin Kb37 20121230 -9606 121441 NEDD1 - GCP-WD|TUBGCP7 HGNC:7723|MIM:600372|Ensembl:ENSG00000139350|HPRD:02655|Vega:OTTHUMG00000170604 12 12q23.1 neural precursor cell expressed, developmentally down-regulated 1 protein-coding NEDD1 neural precursor cell expressed, developmentally down-regulated 1 O NEDD-1|neural precursor cell expressed developmentally down-regulated protein 1|protein NEDD1 20121230 -9606 121456 SLC9A7P1 - - HGNC:32679 12 12q23.1 solute carrier family 9, subfamily A (NHE7, cation proton antiporter 7), member 7 pseudogene 1 pseudo SLC9A7P1 solute carrier family 9, subfamily A (NHE7, cation proton antiporter 7), member 7 pseudogene 1 O - 20121230 -9606 121457 IKBIP - IKIP HGNC:26430|MIM:609861|Ensembl:ENSG00000166130|HPRD:08092|Vega:OTTHUMG00000170213 12 12q23.1 IKBKB interacting protein protein-coding IKBIP IKBKB interacting protein O I kappa B kinase interacting protein|IKBKB-interacting protein|IKK interacting protein|IKK-interacting protein|i kappa-B kinase-interacting protein|inhibitor of nuclear factor kappa-B kinase-interacting protein 20121230 -9606 121498 LDHAL6CP - LDH6C HGNC:39423 12 12q14.2 lactate dehydrogenase A-like 6C, pseudogene pseudo LDHAL6CP lactate dehydrogenase A-like 6C, pseudogene O - 20121230 -9606 121504 HIST4H4 - H4/p HGNC:20510|Ensembl:ENSG00000197837|HPRD:13662|Vega:OTTHUMG00000168735 12 12p12.3 histone cluster 4, H4 protein-coding HIST4H4 histone cluster 4, H4 O histone 4, H4|histone H4 20121230 -9606 121506 ERP27 UNQ781/PRO1575 C12orf46|PDIA8 HGNC:26495|MIM:610642|Ensembl:ENSG00000139055|HPRD:08723|Vega:OTTHUMG00000168741 12 12p12.3 endoplasmic reticulum protein 27 protein-coding ERP27 endoplasmic reticulum protein 27 O ER protein 27|endoplasmic reticulum protein 27 kDa|endoplasmic reticulum resident protein 27|protein disulfide isomerase family A, member 8 20121230 -9606 121512 FGD4 - CMT4H|FRABP|ZFYVE6 HGNC:19125|MIM:611104|Ensembl:ENSG00000139132|HPRD:16891|Vega:OTTHUMG00000137374 12 12p11.21 FYVE, RhoGEF and PH domain containing 4 protein-coding FGD4 FYVE, RhoGEF and PH domain containing 4 O FGD1 family, member 4|FGD1-related F-actin-binding protein|FYVE, RhoGEF and PH domain-containing protein 4|actin-filament binding protein frabin|zinc finger FYVE domain-containing protein 6 20121230 -9606 121520 GOT2P4 - GOT2L4 HGNC:22936 12 12p12.3 glutamic-oxaloacetic transaminase 2 pseudogene 4 pseudo GOT2P4 glutamic-oxaloacetic transaminase 2 pseudogene 4 O - 20121230 -9606 121536 AEBP2 - - HGNC:24051|Ensembl:ENSG00000139154|HPRD:16477|Vega:OTTHUMG00000168906 12 12p12.3 AE binding protein 2 protein-coding AEBP2 AE binding protein 2 O AE(adipocyte enhancer)-binding protein 2|AE-binding protein 2|adipocyte enhancer-binding protein 2|zinc finger protein AEBP2 20121230 -9606 121549 ASCL4 - HASH4|bHLHa44 HGNC:24311|MIM:609155|Ensembl:ENSG00000187855|HPRD:12374|Vega:OTTHUMG00000156964 12 12q23.3 achaete-scute complex homolog 4 (Drosophila) protein-coding ASCL4 achaete-scute complex homolog 4 (Drosophila) O ASH-4|achaete-scute complex-like 4|achaete-scute homolog 4|achaete-scute-like protein 4|class A basic helix-loop-helix protein 44|class II bHLH protein ASCL4 20121230 -9606 121551 BTBD11 - - HGNC:23844|Ensembl:ENSG00000151136|HPRD:12536|Vega:OTTHUMG00000150413 12 12q23.3 BTB (POZ) domain containing 11 protein-coding BTBD11 BTB (POZ) domain containing 11 O ANK-repeat BTB domain containing protein|BTB/POZ domain-containing protein 11|ankyrin repeat and BTB/POZ domain-containing protein BTBD11 20121230 -9606 121599 SPIC - SPI-C HGNC:29549|MIM:612568|Ensembl:ENSG00000166211|HPRD:15438|Vega:OTTHUMG00000170273 12 12q23.2 Spi-C transcription factor (Spi-1/PU.1 related) protein-coding SPIC Spi-C transcription factor (Spi-1/PU.1 related) O transcription factor Spi-C 20121230 -9606 121601 ANO4 - TMEM16D HGNC:23837|MIM:610111|Ensembl:ENSG00000151572|HPRD:15527|Vega:OTTHUMG00000170465 12 12q23.1 anoctamin 4 protein-coding ANO4 anoctamin 4 O anoctamin-4|transmembrane protein 16D 20121230 -9606 121642 ALKBH2 - ABH2 HGNC:32487|MIM:610602|Ensembl:ENSG00000189046|HPRD:14712|Vega:OTTHUMG00000169246 12 12q24.11 alkB, alkylation repair homolog 2 (E. coli) protein-coding ALKBH2 alkB, alkylation repair homolog 2 (E. coli) O 2OG-Fe(II) oxy DC1|DNA oxidative demethylase ALKBH2|alkylated DNA repair protein alkB homolog 2|alpha-ketoglutarate-dependent dioxygenase alkB homolog 2|oxy DC1 20121230 -9606 121643 FOXN4 - - HGNC:21399|MIM:609429|Ensembl:ENSG00000139445|HPRD:13550|Vega:OTTHUMG00000152868 12 12q24.11 forkhead box N4 protein-coding FOXN4 forkhead box N4 O forkhead box protein N4|forkhead/winged helix transcription factor FOXN4 20121230 -9606 121665 SPPL3 UNQ1887 IMP2|MDHV1887|PRO4332|PSH1|PSL4 HGNC:30424|MIM:608240|Ensembl:ENSG00000157837|HPRD:09744|Vega:OTTHUMG00000169232 12 12q24.31 signal peptide peptidase like 3 protein-coding SPPL3 signal peptide peptidase like 3 O SPP-like 3|intramembrane protease 2|presenilin homologous protein 1|presenilin-like protein 4|signal peptide peptidase-like 3 20121230 -9606 121727 PEX12P1 RP11-388D4.1 - HGNC:39678 13 13q31.3 peroxisomal biogenesis factor 12 pseudogene 1 pseudo PEX12P1 peroxisomal biogenesis factor 12 pseudogene 1 O - 20121230 -9606 121775 CHDM - - MIM:215400 7 7q33 Chordoma unknown - - - - 20121018 -9606 121793 TEX29 - C13orf16|bA474D23.1 HGNC:20370|Ensembl:ENSG00000153495|HPRD:14603|Vega:OTTHUMG00000017358 13 13q34 testis expressed 29 protein-coding TEX29 testis expressed 29 O testis-expressed sequence 29 protein 20121230 -9606 121838 LINC00284 - NCRNA00284 HGNC:26981 13 13q14.11 long intergenic non-protein coding RNA 284 miscRNA LINC00284 long intergenic non-protein coding RNA 284 O - 20121230 -9606 121906 PSMA6P4 - - HGNC:39609 13 13q32.1 proteasome (prosome, macropain) subunit, alpha type, 6 pseudogene 4 pseudo PSMA6P4 proteasome (prosome, macropain) subunit, alpha type, 6 pseudogene 4 O - 20121230 -9606 121916 CYCSP35 - HC8|HCP35 HGNC:24409 13 13q32.2 cytochrome c, somatic pseudogene 35 pseudo CYCSP35 cytochrome c, somatic pseudogene 35 O - 20121230 -9606 121952 METTL21EP - METTL21CP1 HGNC:41948 13 13q33.1 methyltransferase like 21E, pseudogene pseudo METTL21EP methyltransferase like 21E, pseudogene O - 20121230 -9606 121981 PPIAP26 RP11-431O22.2 - HGNC:39271 13 13q14.3 peptidylprolyl isomerase A (cyclophilin A) pseudogene 26 pseudo PPIAP26 peptidylprolyl isomerase A (cyclophilin A) pseudogene 26 O - 20121230 -9606 122011 CSNK1A1L - CK1 HGNC:20289|Ensembl:ENSG00000180138|HPRD:13095|Vega:OTTHUMG00000016748 13 13q13.3 casein kinase 1, alpha 1-like protein-coding CSNK1A1L casein kinase 1, alpha 1-like O CKI-alpha-like|casein kinase I alpha S-like|casein kinase I isoform alpha-like 20121230 -9606 122038 TOMM22P3 hCG_1643176 - HGNC:38739 13 13q13.1 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 3 pseudo TOMM22P3 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 3 O - 20121230 -9606 122042 RXFP2 - GPR106|GREAT|INSL3R|LGR8|LGR8.1|RXFPR2 HGNC:17318|MIM:606655|Ensembl:ENSG00000133105|HPRD:05976|Vega:OTTHUMG00000016690 13 13q13.1 relaxin/insulin-like family peptide receptor 2 protein-coding RXFP2 relaxin/insulin-like family peptide receptor 2 O G protein coupled receptor affecting testicular descent|G-protein coupled receptor 106|G-protein coupled receptor affecting testicular descent|leucine-rich repeat-containing G protein-coupled receptor 8|leucine-rich repeat-containing G-protein coupled receptor 8|relaxin family peptide receptor 2|relaxin receptor 2 20121230 -9606 122046 TEX26 - C13orf26 HGNC:28622|Ensembl:ENSG00000175664|HPRD:17551|Vega:OTTHUMG00000016682 13 13q12.3 testis expressed 26 protein-coding TEX26 testis expressed 26 O testis-expressed sequence 26 protein 20121230 -9606 122060 SLAIN1 RP11-188A23.1 C13orf32 HGNC:26387|MIM:610491|Ensembl:ENSG00000139737|HPRD:13400|Vega:OTTHUMG00000017110 13 13q22.3 SLAIN motif family, member 1 protein-coding SLAIN1 SLAIN motif family, member 1 O SLAIN motif-containing protein 1 20121230 -9606 122145 RIOK3P1 - - HGNC:39714 13 13q22.2 RIO kinase 3 pseudogene 1 pseudo RIOK3P1 RIO kinase 3 pseudogene 1 O - 20121230 -9606 122183 PRR20A - PRR20 HGNC:24754|Ensembl:ENSG00000204919|HPRD:13445|Vega:OTTHUMG00000160602 13 13q21.1 proline rich 20A protein-coding PRR20A proline rich 20A O proline rich 20|proline-rich protein 20|proline-rich protein 20A 20121230 -9606 122199 LGMNP1 - LGMN2P HGNC:23079 13 13q21.31 legumain pseudogene 1 pseudo LGMNP1 legumain pseudogene 1 O - 20121230 -9606 122258 SPACA7 RP11-480K16.1 C13orf28 HGNC:29575|Ensembl:ENSG00000153498|HPRD:14022|Vega:OTTHUMG00000017365 13 13q34 sperm acrosome associated 7 protein-coding SPACA7 sperm acrosome associated 7 O protein SPACA7|sperm acrosome-associated protein 7 20121230 -9606 122335 PPIAP24 RP11-282A11.1 - HGNC:39269 13 13q33.3 peptidylprolyl isomerase A (cyclophilin A) pseudogene 24 pseudo PPIAP24 peptidylprolyl isomerase A (cyclophilin A) pseudogene 24 O - 20121230 -9606 122402 TDRD9 - C14orf75|HIG-1|NET54 HGNC:20122|Ensembl:ENSG00000156414|HPRD:15484|Vega:OTTHUMG00000152876 14 14q32.33 tudor domain containing 9 protein-coding TDRD9 tudor domain containing 9 O hypoxia-inducible HIG-1|putative ATP-dependent RNA helicase TDRD9|tudor domain-containing protein 9 20121230 -9606 122409 RPL21P12 - - HGNC:19810 14 14q32.32 ribosomal protein L21 pseudogene 12 pseudo RPL21P12 ribosomal protein L21 pseudogene 12 O - 20121230 -9606 122416 ANKRD9 - - HGNC:20096|Ensembl:ENSG00000156381|HPRD:12467|Vega:OTTHUMG00000171777 14 14q32.31 ankyrin repeat domain 9 protein-coding ANKRD9 ankyrin repeat domain 9 O ankyrin repeat domain-containing protein 9 20121230 -9606 122449 RPS29P1 - RPS29_5_1384 HGNC:19783 14 14q24.1 ribosomal protein S29 pseudogene 1 pseudo RPS29P1 ribosomal protein S29 pseudogene 1 O - 20121230 -9606 122481 AK7 - - HGNC:20091|Ensembl:ENSG00000140057|HPRD:10640|Vega:OTTHUMG00000171421 14 14q32.2 adenylate kinase 7 protein-coding AK7 adenylate kinase 7 O putative adenylate kinase 7 20121230 -9606 122509 IFI27L1 - FAM14B|ISG12C HGNC:19754|MIM:611320|Ensembl:ENSG00000165948|HPRD:13292|Vega:OTTHUMG00000171302 14 14q32.12 interferon, alpha-inducible protein 27-like 1 protein-coding IFI27L1 interferon, alpha-inducible protein 27-like 1 O ISG12(c) protein|family with sequence similarity 14, member B|interferon alpha-inducible protein 27-like protein 1|interferon-stimulated gene 12c protein 20121230 -9606 122525 C14orf28 - DRIP-1|DRIP1|c14_5270 HGNC:19834|Ensembl:ENSG00000179476|HPRD:18544|Vega:OTTHUMG00000170722 14 14q21.2 chromosome 14 open reading frame 28 protein-coding C14orf28 chromosome 14 open reading frame 28 O dopamine receptor interacting protein 1|dopamine receptor-interacting protein 1|uncharacterized protein C14orf28 20121230 -9606 122552 PPIAP4 - - HGNC:19935 14 14q21.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene 4 pseudo PPIAP4 peptidylprolyl isomerase A (cyclophilin A) pseudogene 4 O - 20121230 -9606 122553 TRAPPC6B - TPC6 HGNC:23066|MIM:610397|Ensembl:ENSG00000182400|HPRD:18221|Vega:OTTHUMG00000140259 14 14q21.1 trafficking protein particle complex 6B protein-coding TRAPPC6B trafficking protein particle complex 6B O trafficking protein particle complex subunit 6B 20121230 -9606 122589 RPLP0P3 - RPLP0_4_1355 HGNC:23558 14 14q13.2 ribosomal protein, large, P0 pseudogene 3 pseudo RPLP0P3 ribosomal protein, large, P0 pseudogene 3 O - 20121230 -9606 122592 KRT18P6 - - HGNC:20280 14 14q13.2 keratin 18 pseudogene 6 pseudo KRT18P6 keratin 18 pseudogene 6 O - 20121230 -9606 122616 C14orf79 - - HGNC:20126|Ensembl:ENSG00000140104|HPRD:12656|Vega:OTTHUMG00000170474 14 14q32.33 chromosome 14 open reading frame 79 protein-coding C14orf79 chromosome 14 open reading frame 79 O uncharacterized protein C14orf79 20121230 -9606 122618 PLD4 UNQ2488/PRO5775 C14orf175 HGNC:23792|Ensembl:ENSG00000166428|HPRD:11230|Vega:OTTHUMG00000144167 14 14q32.33 phospholipase D family, member 4 protein-coding PLD4 phospholipase D family, member 4 O PLD 4|choline phosphatase 4|phosphatidylcholine-hydrolyzing phospholipase D4|phospholipase D4 20121230 -9606 122622 ADSSL1 - - HGNC:20093|MIM:612498|Ensembl:ENSG00000185100|HPRD:12433|Vega:OTTHUMG00000170818 14 14q32.33 adenylosuccinate synthase like 1 protein-coding ADSSL1 adenylosuccinate synthase like 1 O AMPSase 1|IMP--aspartate ligase 1|M-type adenylosuccinate synthetase|adSS 1|adenylosuccinate synthetase isozyme 1|adenylosuccinate synthetase, basic isozyme|adenylosuccinate synthetase, muscle isozyme 20121230 -9606 122631 CEND1P1 - - HGNC:43674 14 14q32 cell cycle exit and neuronal differentiation 1 pseudogene 1 pseudo CEND1P1 cell cycle exit and neuronal differentiation 1 pseudogene 1 O - 20121230 -9606 122651 RNASE11 UNQ5832/PRO19669 C14orf6 HGNC:19269|Ensembl:ENSG00000173464|HPRD:15257|Vega:OTTHUMG00000170990 14 14q11.2 ribonuclease, RNase A family, 11 (non-active) protein-coding RNASE11 ribonuclease, RNase A family, 11 (non-active) O RNase 11|probable ribonuclease 11|ribonuclease 11 20121230 -9606 122664 TPPP2 - C14orf8|P18|p25beta HGNC:19293|Ensembl:ENSG00000179636|HPRD:12657|Vega:OTTHUMG00000171071 14 14q11.2 tubulin polymerization-promoting protein family member 2 protein-coding TPPP2 tubulin polymerization-promoting protein family member 2 O TPPP/p18|protein p25-beta 20121230 -9606 122665 RNASE8 - - HGNC:19277|MIM:612485|Ensembl:ENSG00000173431|HPRD:17982|Vega:OTTHUMG00000029645 14 14q11.2 ribonuclease, RNase A family, 8 protein-coding RNASE8 ribonuclease, RNase A family, 8 O RNase 8, placental|ribonuclease 8 20121230 -9606 122704 MRPL52 - - HGNC:16655|MIM:611856|Ensembl:ENSG00000172590|HPRD:14770|Vega:OTTHUMG00000028703 14 14q11.2 mitochondrial ribosomal protein L52 protein-coding MRPL52 mitochondrial ribosomal protein L52 O 39S ribosomal protein L52, mitochondrial|L52mt|MRP-L52 20121230 -9606 122706 PSMB11 - BETA5T HGNC:31963|MIM:611137|Ensembl:ENSG00000222028|Vega:OTTHUMG00000170279 14 14q11.2 proteasome (prosome, macropain) subunit, beta type, 11 protein-coding PSMB11 proteasome (prosome, macropain) subunit, beta type, 11 O proteasome subunit beta 5T|proteasome subunit beta type-11|proteasome subunit beta-5t 20121230 -9606 122740 OR4K14 - OR14-18|OR14-22 HGNC:15352|Ensembl:ENSG00000169484|HPRD:14977|Vega:OTTHUMG00000170780 14 14q11.2 olfactory receptor, family 4, subfamily K, member 14 protein-coding OR4K14 olfactory receptor, family 4, subfamily K, member 14 O olfactory receptor 4K14|olfactory receptor OR14-18 pseudogene|olfactory receptor OR14-22 20121230 -9606 122742 OR4L1 - OR14-28|OR4L2P HGNC:15356|Ensembl:ENSG00000176246|HPRD:14982|Vega:OTTHUMG00000169492 14 14q11.2 olfactory receptor, family 4, subfamily L, member 1 protein-coding OR4L1 olfactory receptor, family 4, subfamily L, member 1 O olfactory receptor 4L1|olfactory receptor 4L2|olfactory receptor OR14-28|olfactory receptor, family 4, subfamily L, member 2 pseudogene 20121230 -9606 122748 OR11H6 - - HGNC:15349|Ensembl:ENSG00000176219|HPRD:14903|Vega:OTTHUMG00000170850 14 14q11.2 olfactory receptor, family 11, subfamily H, member 6 protein-coding OR11H6 olfactory receptor, family 11, subfamily H, member 6 O olfactory receptor 11H6|olfactory receptor OR14-35 20121230 -9606 122769 LRR1 - 4-1BBLRR|LRR-1|PPIL5 HGNC:19742|MIM:609193|Ensembl:ENSG00000165501|HPRD:15164|Vega:OTTHUMG00000140273 14 14q21.3 leucine rich repeat protein 1 protein-coding LRR1 leucine rich repeat protein 1 O 4-1BB-mediated signaling molecule|4-1BB-mediated-signaling molecule|LRR-repeat protein 1|cyclophilin-like 5|leucine-rich repeat protein 1|peptidylprolyl isomerase (cyclophilin)-like 5|peptidylprolyl isomerase-like 5 20121230 -9606 122773 KLHDC1 MSTP025 MST025 HGNC:19836|MIM:611281|Ensembl:ENSG00000197776|HPRD:13921|Vega:OTTHUMG00000140295 14 14q21.3 kelch domain containing 1 protein-coding KLHDC1 kelch domain containing 1 O kelch domain-containing protein 1 20121230 -9606 122786 FRMD6 - C14orf31|EX1|Willin|c14_5320 HGNC:19839|MIM:614555|Ensembl:ENSG00000139926|HPRD:12646|Vega:OTTHUMG00000140294 14 14q22.1 FERM domain containing 6 protein-coding FRMD6 FERM domain containing 6 O 4.1 ezrin radixin moesin (FERM)-containing protein|FERM domain-containing protein 6|expanded homolog 20121230 -9606 122809 SOCS4 - SOCS7 HGNC:19392|Ensembl:ENSG00000180008|HPRD:18084|Vega:OTTHUMG00000140311 14 14q22.1 suppressor of cytokine signaling 4 protein-coding SOCS4 suppressor of cytokine signaling 4 O SH2 domain containing SOCS box protein|SOCS-4|SOCS-7|suppressor of cytokine signaling 7 20121230 -9606 122830 NAA30 - C14orf35|MAK3|Mak3p|NAT12 HGNC:19844|Ensembl:ENSG00000139977|HPRD:16619|Vega:OTTHUMG00000171311 14 14q22.3 N(alpha)-acetyltransferase 30, NatC catalytic subunit protein-coding NAA30 N(alpha)-acetyltransferase 30, NatC catalytic subunit O N-acetyltransferase 12 (GCN5-related, putative)|N-acetyltransferase MAK3 homolog|N-alpha-acetyltransferase 30|N-alpha-acetyltransferase 30, NatC catalytic subunit|natC catalytic subunit|putative N-acetyltransferase 20121230 -9606 122837 UBA52P3 - RPL40_5_1373 HGNC:20056 14 14q23.1 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 3 pseudo UBA52P3 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 3 O - 20121230 -9606 122842 PPIAP5 - - HGNC:20027 14 14q23.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene 5 pseudo PPIAP5 peptidylprolyl isomerase A (cyclophilin A) pseudogene 5 O - 20121230 -9606 122867 COX4I1P1 - COX4L1|COX4P1 HGNC:2266 14 14q23.2 cytochrome c oxidase subunit IV isoform 1 pseudogene 1 pseudo COX4I1P1 cytochrome c oxidase subunit IV isoform 1 pseudogene 1 O - 20121230 -9606 122876 GPHB5 - B5|GPB5|ZLUT1 HGNC:18055|MIM:609652|HPRD:17053 14 14q23.2 glycoprotein hormone beta 5 protein-coding GPHB5 glycoprotein hormone beta 5 O glycoprotein beta 5|glycoprotein hormone beta subunit|glycoprotein hormone beta-5|thyrostimulin subunit beta 20121230 -9606 122888 PTBP1P - HNRNPIP HGNC:20030 14 14q23.3 polypyrimidine tract binding protein 1 pseudogene pseudo PTBP1P polypyrimidine tract binding protein 1 pseudogene O - 20121230 -9606 122942 FRDAP - - HGNC:20012 14 14q24.3 Friedreich ataxia pseudogene pseudo FRDAP Friedreich ataxia pseudogene O - 20121230 -9606 122945 NOXRED1 - C14orf148 HGNC:20487|Ensembl:ENSG00000165555|HPRD:08140|Vega:OTTHUMG00000171554 14 14q24.3 NADP-dependent oxidoreductase domain containing 1 protein-coding NOXRED1 NADP-dependent oxidoreductase domain containing 1 O NADP-dependent oxidoreductase domain-containing protein 1|pyrroline-5-carboxylate reductase-like protein C14orf148 20121230 -9606 122950 CYCSP1 - HC5|HCP36 HGNC:20095 14 14q24.3 cytochrome c, somatic pseudogene 1 pseudo CYCSP1 cytochrome c, somatic pseudogene 1 O - 20121230 -9606 122953 JDP2 - JUNDM2 HGNC:17546|MIM:608657|Ensembl:ENSG00000140044|HPRD:16360|Vega:OTTHUMG00000171869 14 14q24.3 Jun dimerization protein 2 protein-coding JDP2 Jun dimerization protein 2 O jun dimerization protein 2|progesterone receptor co-activator 20121230 -9606 122961 ISCA2 - HBLD1|ISA2|c14_5557 HGNC:19857|Ensembl:ENSG00000165898|HPRD:17090|Vega:OTTHUMG00000171214 14 14q24.3 iron-sulfur cluster assembly 2 homolog (S. cerevisiae) protein-coding ISCA2 iron-sulfur cluster assembly 2 homolog (S. cerevisiae) O HESB-like domain-containing protein 1|iron-sulfur cluster assembly 2 homolog, mitochondrial 20121230 -9606 122970 ACOT4 - PTE-Ib|PTE1B|PTE2B HGNC:19748|MIM:614314|Ensembl:ENSG00000177465|HPRD:17928|Vega:OTTHUMG00000169485 14 14q24.3 acyl-CoA thioesterase 4 protein-coding ACOT4 acyl-CoA thioesterase 4 O PTE-2b|acyl-coenzyme A thioesterase 4|peroxisomal acyl coenzyme A thioester hydrolase Ib|peroxisomal acyl-CoA thioesterase 2B|peroxisomal long-chain acyl-CoA thioesterase Ib 20121230 -9606 123016 TTC8 - BBS8|RP51 HGNC:20087|MIM:608132|Ensembl:ENSG00000165533|Vega:OTTHUMG00000170884 14 14q31.3 tetratricopeptide repeat domain 8 protein-coding TTC8 tetratricopeptide repeat domain 8 O Bardet-Biedl syndrome type 8|TPR repeat protein 8|bardet-Biedl syndrome 8 protein|tetratricopeptide repeat protein 8 20121230 -9606 123036 TC2N - C14orf47|C2CD1|MTAC2D1|Tac2-N HGNC:19859|Ensembl:ENSG00000165929|HPRD:11375|Vega:OTTHUMG00000171121 14 14q32.12 tandem C2 domains, nuclear protein-coding TC2N tandem C2 domains, nuclear O C2 calcium-dependent domain containing 1|membrane targeting (tandem) C2 domain containing 1|membrane targeting tandem C2 domain-containing protein 1|tandem C2 domains nuclear protein|tandem C2 protein in nucleus 20121230 -9606 123041 SLC24A4 - NCKX4|SHEP6|SLC24A2 HGNC:10978|MIM:609840|Ensembl:ENSG00000140090|HPRD:15353|Vega:OTTHUMG00000167589 14 14q32.12 solute carrier family 24 (sodium/potassium/calcium exchanger), member 4 protein-coding SLC24A4 solute carrier family 24 (sodium/potassium/calcium exchanger), member 4 O Na(+)/K(+)/Ca(2+)-exchange protein 4|sodium/potassium/calcium exchanger 4 20121230 -9606 123096 SLC25A29 - C14orf69|CACL HGNC:20116|Ensembl:ENSG00000197119|HPRD:15360|Vega:OTTHUMG00000171569 14 14q32.2 solute carrier family 25 (mitochondrial carnitine/acylcarnitine carrier), member 29 protein-coding SLC25A29 solute carrier family 25 (mitochondrial carnitine/acylcarnitine carrier), member 29 O carnitine-acylcarnitine translocase like|mitochondrial carnitine/acylcarnitine carrier protein CACL|solute carrier family 25, member 29 20121230 -9606 123099 DEGS2 - C14orf66|DES2|FADS8 HGNC:20113|MIM:610862|Ensembl:ENSG00000168350|HPRD:13134|Vega:OTTHUMG00000171537 14 14q32.2 delta(4)-desaturase, sphingolipid 2 protein-coding DEGS2 delta(4)-desaturase, sphingolipid 2 O degenerative spermatocyte homolog 2, lipid desaturase|sphingolipid C4-hydroxylase/delta 4-desaturase|sphingolipid delta 4 desaturase/C-4 hydroxylase|sphingolipid delta(4)-desaturase 2|sphingolipid delta(4)-desaturase/C4-hydroxylase DES2 20121230 -9606 123103 KLHL33 - - HGNC:31952|Ensembl:ENSG00000185271|Vega:OTTHUMG00000170982 14 14q11.2 kelch-like 33 (Drosophila) protein-coding KLHL33 kelch-like 33 (Drosophila) O kelch-like protein 33 20121230 -9606 123169 LEO1 - RDL HGNC:30401|MIM:610507|Ensembl:ENSG00000166477|HPRD:11231|Vega:OTTHUMG00000131843 15 15q21.2 Leo1, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) protein-coding LEO1 Leo1, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) O RNA polymerase-associated protein LEO1|replicative senescence down-regulated leo1-like protein 20121230 -9606 123207 C15orf40 - - HGNC:28443|Ensembl:ENSG00000169609|HPRD:14538|Vega:OTTHUMG00000160473 15 15q25.2 chromosome 15 open reading frame 40 protein-coding C15orf40 chromosome 15 open reading frame 40 O UPF0235 protein C15orf40 20121230 -9606 123228 SENP8 FKSG8 DEN1|NEDP1|PRSC2 HGNC:22992|MIM:608659|Ensembl:ENSG00000166192|HPRD:09784|Vega:OTTHUMG00000133441 15 15q23 SUMO/sentrin specific peptidase family member 8 protein-coding SENP8 SUMO/sentrin specific peptidase family member 8 O NEDD8 specific-protease cysteine 2|NEDD8-specific protease 1|SUMO sentrin specific protease family member 8|deneddylase 1|deneddylase-1|protease, cysteine 2|sentrin-specific protease 8 20121230 -9606 123263 MTFMT - COXPD15|FMT1 HGNC:29666|MIM:611766|Ensembl:ENSG00000103707|HPRD:14799|Vega:OTTHUMG00000172371 15 15q22.31 mitochondrial methionyl-tRNA formyltransferase protein-coding MTFMT mitochondrial methionyl-tRNA formyltransferase O methionyl-tRNA formyltransferase, mitochondrial 20121230 -9606 123264 SLC51B - OSTB|OSTBETA HGNC:29956|MIM:612085|Ensembl:ENSG00000186198|HPRD:17811|Vega:OTTHUMG00000133116 15 15q22.31 solute carrier family 51, beta subunit protein-coding SLC51B solute carrier family 51, beta subunit O OST-beta|organic solute transporter beta subunit|organic solute transporter subunit beta|solute carrier family 51 subunit beta 20121230 -9606 123283 TARSL2 - - HGNC:24728|Ensembl:ENSG00000185418|HPRD:15469|Vega:OTTHUMG00000149869 15 15q26.3 threonyl-tRNA synthetase-like 2 protein-coding TARSL2 threonyl-tRNA synthetase-like 2 O probable threonine--tRNA ligase 2, cytoplasmic|probable threonyl-tRNA synthetase 2, cytoplasmic|thrRS|threonine--tRNA ligase|threonyl-tRNA synthetase|threonyl-tRNA synthetase-like protein 2 20121230 -9606 123346 HIGD2B - HIGD2BP HGNC:26984 15 15q24.1 HIG1 hypoxia inducible domain family, member 2B pseudo HIGD2B HIG1 hypoxia inducible domain family, member 2B O - 20121230 -9606 123355 LRRC28 UNQ436/PRO867 - HGNC:28355|Ensembl:ENSG00000168904|HPRD:14316|Vega:OTTHUMG00000149854 15 15q26.3 leucine rich repeat containing 28 protein-coding LRRC28 leucine rich repeat containing 28 O leucine-rich repeat-containing protein 28 20121230 -9606 123591 C15orf27 - - HGNC:26763|Ensembl:ENSG00000169758|HPRD:08235|Vega:OTTHUMG00000142918 15 15q24.2 chromosome 15 open reading frame 27 protein-coding C15orf27 chromosome 15 open reading frame 27 O transmembrane protein C15orf27 20121230 -9606 123606 NIPA1 - FSP3|SPG6 HGNC:17043|MIM:608145|Ensembl:ENSG00000170113|HPRD:10487|Vega:OTTHUMG00000129099 15 15q11.2 non imprinted in Prader-Willi/Angelman syndrome 1 protein-coding NIPA1 non imprinted in Prader-Willi/Angelman syndrome 1 O magnesium transporter NIPA1|non-imprinted in Prader-Willi/Angelman syndrome 1|non-imprinted in Prader-Willi/Angelman syndrome region protein 1|spastic paraplegia 6 protein 20121230 -9606 123624 AGBL1 - - HGNC:26504|Ensembl:ENSG00000166748|HPRD:07115|Vega:OTTHUMG00000149978 15 15q25.3 ATP/GTP binding protein-like 1 protein-coding AGBL1 ATP/GTP binding protein-like 1 O ATP/GTP-binding protein-like 1|cytosolic carboxypeptidase 4 20121230 -9606 123688 AGPHD1 - - HGNC:34403|MIM:614681|Ensembl:ENSG00000188266|HPRD:12515|Vega:OTTHUMG00000177204 15 15q25.1 aminoglycoside phosphotransferase domain containing 1 protein-coding AGPHD1 aminoglycoside phosphotransferase domain containing 1 O 5-hydroxy-L-lysine kinase|5-hydroxylysine kinase|aminoglycoside phosphotransferase domain-containing protein 1|hydroxylysine kinase 20121230 -9606 123720 WHAMM - WHDC1 HGNC:30493|MIM:612393|Ensembl:ENSG00000156232|Vega:OTTHUMG00000172422 15 15q25.2 WAS protein homolog associated with actin, golgi membranes and microtubules protein-coding WHAMM WAS protein homolog associated with actin, golgi membranes and microtubules O WAS protein homology region 2 domain containing 1|WAS protein homology region 2 domain-containing protein 1|WASP homolog-associated protein with actin, membranes and microtubules|WH2 domain-containing protein 1 20121230 -9606 123722 FSD2 - RP11-127F21|SPRYD1 HGNC:18024|Ensembl:ENSG00000186628|HPRD:17291|Vega:OTTHUMG00000172400 15 15q25.2 fibronectin type III and SPRY domain containing 2 protein-coding FSD2 fibronectin type III and SPRY domain containing 2 O SPRY domain containing 1|SPRY domain-containing protein 1|fibronectin type III and SPRY domain-containing protein 2 20121230 -9606 123745 PLA2G4E - - HGNC:24791|Ensembl:ENSG00000188089|HPRD:13510|Vega:OTTHUMG00000130371 15 15q15.1 phospholipase A2, group IVE protein-coding PLA2G4E phospholipase A2, group IVE O cPLA2-epsilon|cytosolic phospholipase A2 epsilon 20121230 -9606 123775 C16orf46 - - HGNC:26525|Ensembl:ENSG00000166455|HPRD:08730|Vega:OTTHUMG00000137629 16 16q23.2 chromosome 16 open reading frame 46 protein-coding C16orf46 chromosome 16 open reading frame 46 O uncharacterized protein C16orf46 20121230 -9606 123787 PRSS29P - ISP2 HGNC:17542 16 16p13.3 protease, serine, 29, pseudogene pseudo PRSS29P protease, serine, 29, pseudogene O - 20121230 -9606 123803 NTAN1 - PNAA|PNAD HGNC:29909|Ensembl:ENSG00000157045|HPRD:17649|Vega:OTTHUMG00000129849 16 16p13.11 N-terminal asparagine amidase protein-coding NTAN1 N-terminal asparagine amidase O protein N-terminal Asn amidase|protein N-terminal asparagine amidohydrolase|protein NH2-terminal asparagine deamidase|protein NTN-amidase 20121230 -9606 123811 FOPNL - C16orf63|FOR20|PHSECRG2 HGNC:26435|Ensembl:ENSG00000133393|HPRD:08096|Vega:OTTHUMG00000129923 16 16p13.11 FGFR1OP N-terminal like protein-coding FOPNL FGFR1OP N-terminal like O FGFR1OP N-terminal-like protein|FOP-related protein of 20 kDa|lisH domain-containing protein C16orf63|lisH domain-containing protein FOPNL|pluripotent embryonic stem cell-related protein 20121230 -9606 123862 LOC123862 - - - 16 16q24.1 interferon induced transmembrane protein pseudogene pseudo - - - - 20121230 -9606 123872 DNAAF1 - CILD13|LRRC50|ODA7 HGNC:30539|MIM:613190|Ensembl:ENSG00000154099|HPRD:14023|Vega:OTTHUMG00000128517 16 16q24.1 dynein, axonemal, assembly factor 1 protein-coding DNAAF1 dynein, axonemal, assembly factor 1 O dynein assembly factor 1, axonemal|leucine rich repeat containing 50|leucine-rich repeat-containing protein 50|outer row dynein assembly 7 homolog 20121230 -9606 123876 ACSM2A - A-923A4.1|ACSM2 HGNC:32017|MIM:614358|Ensembl:ENSG00000183747|HPRD:17292|Vega:OTTHUMG00000177401 16 16p12.3 acyl-CoA synthetase medium-chain family member 2A protein-coding ACSM2A acyl-CoA synthetase medium-chain family member 2A O Homolog of rat kidney-specific (KS)|acyl-coenzyme A synthetase ACSM2A, mitochondrial|butyrate--CoA ligase 2A|butyryl-coenzyme A synthetase 2A|middle-chain acyl-CoA synthetase 2A 20121230 -9606 123879 DCUN1D3 - 44M2.4 HGNC:28734|Ensembl:ENSG00000188215|HPRD:14660|Vega:OTTHUMG00000131553 16 16p12.3 DCN1, defective in cullin neddylation 1, domain containing 3 (S. cerevisiae) protein-coding DCUN1D3 DCN1, defective in cullin neddylation 1, domain containing 3 (S. cerevisiae) O DCN1-like protein 3|DCUN1 domain-containing protein 3|defective in cullin neddylation protein 1-like protein 3 20121230 -9606 123904 NRN1L UNQ2446/PRO5725 UNQ2446 HGNC:29811|Ensembl:ENSG00000188038|HPRD:18261|Vega:OTTHUMG00000137541 16 16q22.1 neuritin 1-like protein-coding NRN1L neuritin 1-like O MRCC2446|neuritin-like protein 20121230 -9606 123920 CMTM3 - BNAS2|CKLFSF3 HGNC:19174|MIM:607886|Ensembl:ENSG00000140931|HPRD:16259|Vega:OTTHUMG00000137503 16 16q21 CKLF-like MARVEL transmembrane domain containing 3 protein-coding CMTM3 CKLF-like MARVEL transmembrane domain containing 3 O CKLF-like MARVEL transmembrane domain-containing protein 3|chemokine-like factor superfamily member 3 20121230 -9606 123970 C16orf78 - - HGNC:28479|Ensembl:ENSG00000166152|HPRD:14560|Vega:OTTHUMG00000133149 16 16q12.1 chromosome 16 open reading frame 78 protein-coding C16orf78 chromosome 16 open reading frame 78 O uncharacterized protein C16orf78 20121230 -9606 124044 SPATA2L - C16orf76|tamo HGNC:28393|Ensembl:ENSG00000158792|HPRD:14515|Vega:OTTHUMG00000138047 16 16q24.3 spermatogenesis associated 2-like protein-coding SPATA2L spermatogenesis associated 2-like O SPATA2-like protein|spermatogenesis-associated protein 2-like protein 20121230 -9606 124045 C16orf55 - - HGNC:26463|Ensembl:ENSG00000167523|HPRD:08105|Vega:OTTHUMG00000138048 16 16q24.3 chromosome 16 open reading frame 55 protein-coding C16orf55 chromosome 16 open reading frame 55 O uncharacterized protein C16orf55 20121230 -9606 124056 NOXO1 - P41NOX|P41NOXA|P41NOXB|P41NOXC|SH3PXD5|SNX28 HGNC:19404|MIM:611256|Ensembl:ENSG00000196408|HPRD:14834|Vega:OTTHUMG00000128707 16 16p13.3 NADPH oxidase organizer 1 protein-coding NOXO1 NADPH oxidase organizer 1 O NADPH oxidase regulatory protein|Nox organizer 1|SH3 and PX domain-containing protein 5|nox-organizing protein 1|regulatory protein P41NOX 20121230 -9606 124093 CCDC78 LA16c-444G9.2 C16orf25|CNM4|JFP10 HGNC:14153|MIM:614666|Ensembl:ENSG00000162004|HPRD:08174|Vega:OTTHUMG00000121176 16 16p13.3 coiled-coil domain containing 78 protein-coding CCDC78 coiled-coil domain containing 78 O coiled-coil domain-containing protein 78 20121230 -9606 124149 ANKRD26P1 hCG_24312 - HGNC:32955|HPRD:13482 16 16q11.2 ankyrin repeat domain 26 pseudogene 1 pseudo ANKRD26P1 ankyrin repeat domain 26 pseudogene 1 O - 20121230 -9606 124152 IQCK - - HGNC:28556|Ensembl:ENSG00000174628|HPRD:11340|Vega:OTTHUMG00000131453 16 16p12.3 IQ motif containing K protein-coding IQCK IQ motif containing K O IQ domain-containing protein K 20121230 -9606 124199 EEF1A1P38 - - HGNC:37916 16 16p12.1 eukaryotic translation elongation factor 1 alpha 1 pseudogene 38 pseudo EEF1A1P38 eukaryotic translation elongation factor 1 alpha 1 pseudogene 38 O - 20121230 -9606 124220 ZG16B UNQ773/PRO1567 EECP|HRPE773|JCLN2|PAUF|PRO1567 HGNC:30456|Ensembl:ENSG00000162078|HPRD:14024|Vega:OTTHUMG00000128933 16 16p13.3 zymogen granule protein 16B protein-coding ZG16B zymogen granule protein 16B O endocrine and exocrine protein|jacalin-like lectin domain containing 2|pancreatic adenocarcinoma upregulated factor|zymogen granule protein 16 homolog B 20121230 -9606 124221 PRSS30P - Disp|TMPRSS8|TMPRSS8P HGNC:28753|HPRD:07132 16 16p13.3 protease, serine, 30, pseudogene pseudo PRSS30P protease, serine, 30, pseudogene O - 20121230 -9606 124222 PAQR4 - - HGNC:26386|MIM:614578|Ensembl:ENSG00000162073|HPRD:08697|Vega:OTTHUMG00000128977 16 16p13.3 progestin and adipoQ receptor family member IV protein-coding PAQR4 progestin and adipoQ receptor family member IV O progestin and adipoQ receptor family member 4 20121230 -9606 124245 ZC3H18 - NHN1 HGNC:25091|Ensembl:ENSG00000158545|HPRD:11232|Vega:OTTHUMG00000137679 16 16q24.2 zinc finger CCCH-type containing 18 protein-coding ZC3H18 zinc finger CCCH-type containing 18 O conserved nuclear protein NHN1|nuclear protein NHN1|zinc finger CCCH domain-containing protein 18 20121230 -9606 124274 GPR139 - GPRg1|PGR3 HGNC:19995|Ensembl:ENSG00000180269|HPRD:17062|Vega:OTTHUMG00000177690 16 16p12.3 G protein-coupled receptor 139 protein-coding GPR139 G protein-coupled receptor 139 O G protein-coupled receptor PGR3|G-protein-coupled receptor PGR3|g(q)-coupled orphan receptor GPRg1|probable G-protein coupled receptor 139 20121230 -9606 124359 CDYL2 - PCCP1 HGNC:23030|Ensembl:ENSG00000166446|HPRD:10819|Vega:OTTHUMG00000177004 16 16q23.2 chromodomain protein, Y-like 2 protein-coding CDYL2 chromodomain protein, Y-like 2 O CDY-like 2|chromodomain Y-like protein 2|prostate cancer candidate protein 1, PCCP1 20121230 -9606 124401 ANKS3 - - HGNC:29422|Ensembl:ENSG00000168096|HPRD:13909|Vega:OTTHUMG00000129478 16 16p13.3 ankyrin repeat and sterile alpha motif domain containing 3 protein-coding ANKS3 ankyrin repeat and sterile alpha motif domain containing 3 O ankyrin repeat and SAM domain-containing protein 3 20121230 -9606 124402 UBALD1 PP11303 FAM100A HGNC:29576|Ensembl:ENSG00000153443|HPRD:14025|Vega:OTTHUMG00000129472 16 16p13.3 UBA-like domain containing 1 protein-coding UBALD1 UBA-like domain containing 1 O family with sequence similarity 100, member A|protein FAM100A 20121230 -9606 124404 SEPT12 - SPGF10 HGNC:26348|MIM:611562|Ensembl:ENSG00000140623|HPRD:08061|Vega:OTTHUMG00000129481 16 16p13.3 septin 12 protein-coding SEPT12 septin 12 O septin-12 20121230 -9606 124411 ZNF720 - - HGNC:26987|Ensembl:ENSG00000197302|HPRD:14026|Vega:OTTHUMG00000167515 16 16p11.2 zinc finger protein 720 protein-coding ZNF720 zinc finger protein 720 O putative protein ZNF720 20121230 -9606 124446 TMEM219 - IGFBP-3R HGNC:25201|Ensembl:ENSG00000149932|HPRD:18546|Vega:OTTHUMG00000177105 16 16p11.2 transmembrane protein 219 protein-coding TMEM219 transmembrane protein 219 O insulin-like growth factor binding protein-3 receptor|insulin-like growth factor-binding protein 3 receptor 20121230 -9606 124454 EARS2 - COXPD12|MSE1 HGNC:29419|MIM:612799|Ensembl:ENSG00000103356|Vega:OTTHUMG00000177018 16 16p12.2 glutamyl-tRNA synthetase 2, mitochondrial protein-coding EARS2 glutamyl-tRNA synthetase 2, mitochondrial O gluRS|glutamate tRNA ligase 2, mitochondrial|glutamate--tRNA ligase|glutamyl-tRNA synthetase 2, mitochondrial (putative)|probable glutamate--tRNA ligase, mitochondrial|probable glutamyl-tRNA synthetase, mitochondrial 20121230 -9606 124460 SNX20 - SLIC1 HGNC:30390|MIM:613281|Ensembl:ENSG00000167208|HPRD:15401|Vega:OTTHUMG00000133173 16 16q12.1 sorting nexin 20 protein-coding SNX20 sorting nexin 20 O selectin ligand interactor cytoplasmic 1|selectin ligand interactor cytoplasmic-1|selectin ligand-interactor cytoplasmic 1|sorting nexin-20 20121230 -9606 124491 TMEM170A - TMEM170 HGNC:29577|Ensembl:ENSG00000166822|HPRD:14027|Vega:OTTHUMG00000137614 16 16q23.1 transmembrane protein 170A protein-coding TMEM170A transmembrane protein 170A O transmembrane protein 170 20121230 -9606 124496 ATP5F1P7 - - HGNC:39748 16 16q23.1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 7 pseudo ATP5F1P7 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 7 O - 20121230 -9606 124512 METTL23 - C17orf95 HGNC:26988|Ensembl:ENSG00000181038|Vega:OTTHUMG00000180371 17 17q25.1 methyltransferase like 23 protein-coding METTL23 methyltransferase like 23 O methyltransferase-like protein 23 20121230 -9606 124535 HSF5 - HSF 5|HSTF 5 HGNC:26862|Ensembl:ENSG00000176160|Vega:OTTHUMG00000179078 17 17q22 heat shock transcription factor family member 5 protein-coding HSF5 heat shock transcription factor family member 5 O heat shock factor protein 5|heat shock transcription factor 5 20121230 -9606 124538 OR4D2 - BC2009|OR17-24 HGNC:8294|Ensembl:ENSG00000255713|HPRD:14967|Vega:OTTHUMG00000178801 17 17q22 olfactory receptor, family 4, subfamily D, member 2 protein-coding OR4D2 olfactory receptor, family 4, subfamily D, member 2 O B-lymphocyte membrane protein BC2009|G-protein coupled membrane protein|olfactory receptor 4D2|olfactory receptor OR17-24 20121230 -9606 124540 MSI2 - MSI2H HGNC:18585|MIM:607897|Ensembl:ENSG00000153944|HPRD:07438|Vega:OTTHUMG00000178398 17 17q22 musashi RNA-binding protein 2 protein-coding MSI2 musashi RNA-binding protein 2 O RNA-binding protein Musashi homolog 2|musashi homolog 2|musashi-2 20121230 -9606 124565 SLC38A10 PP1744 - HGNC:28237|Ensembl:ENSG00000157637|HPRD:17506|Vega:OTTHUMG00000168049 17 17q25.3 solute carrier family 38, member 10 protein-coding SLC38A10 solute carrier family 38, member 10 O putative sodium-coupled neutral amino acid transporter 10 20121230 -9606 124583 CANT1 - DBQD|SCAN-1|SCAN1|SHAPY HGNC:19721|MIM:613165|Ensembl:ENSG00000171302|HPRD:13003|Vega:OTTHUMG00000177570 17 17q25.3 calcium activated nucleotidase 1 protein-coding CANT1 calcium activated nucleotidase 1 O Ca2+-dependent endoplasmic reticulum nucleoside diphosphatase|apyrase homolog|micromelic dwarfism with vertebral and metaphyseal abnormalities and advanced carpotarsal ossification|putative MAPK-activating protein PM09|putative NF-kappa-B-activating protein 107|soluble Ca-activated nucleotidase, isozyme 1|soluble calcium-activated nucleotidase 1|soluble calcium-activated nucleotidase SCAN-1 20121230 -9606 124590 USH1G - ANKS4A|SANS HGNC:16356|MIM:607696|Ensembl:ENSG00000182040|HPRD:09648|Vega:OTTHUMG00000178864 17 17q25.1 Usher syndrome 1G (autosomal recessive) protein-coding USH1G Usher syndrome 1G (autosomal recessive) O Usher syndrome type-1G protein|scaffold protein containing ankyrin repeats and SAM domain 20121230 -9606 124599 CD300LB UNQ2530/PRO6029 CD300b|CLM-7|CLM7|CMRF35-A2|IREM-3|IREM3|TREM-5|TREM5 HGNC:30811|MIM:610705|Ensembl:ENSG00000178789|HPRD:18223|Vega:OTTHUMG00000067606 17 17q25.1 CD300 molecule-like family member b protein-coding CD300LB CD300 molecule-like family member b O CD300 antigen like family member B|CD300 antigen-like family member B|CD300 molecule like family member b|CMRF35-like molecule 7|immune receptor expressed on myeloid cells 3|leukocyte mono-Ig-like receptor 5|triggering receptor expressed on myeloid cells 5 20121230 -9606 124602 KIF19 - KIF19A HGNC:26735|Ensembl:ENSG00000196169|HPRD:08782|Vega:OTTHUMG00000150694 17 17q25.1 kinesin family member 19 protein-coding KIF19 kinesin family member 19 O kinesin-like protein KIF19 20121230 -9606 124626 ZPBP2 - ZPBPL HGNC:20678|MIM:608499|Ensembl:ENSG00000186075|HPRD:18365|Vega:OTTHUMG00000133022 17 17q12 zona pellucida binding protein 2 protein-coding ZPBP2 zona pellucida binding protein 2 O ZPBP-like protein|zona pellucida-binding protein 2 20121230 -9606 124637 CYB5D1 - - HGNC:26516|Ensembl:ENSG00000182224|HPRD:13408|Vega:OTTHUMG00000178175 17 17p13.1 cytochrome b5 domain containing 1 protein-coding CYB5D1 cytochrome b5 domain containing 1 O cytochrome b5 domain-containing protein 1 20121230 -9606 124641 OVCA2 - - HGNC:24203|MIM:607896|Ensembl:ENSG00000214014|Ensembl:ENSG00000262664|HPRD:07437|Vega:OTTHUMG00000132471 17 17p13.3 ovarian tumor suppressor candidate 2 protein-coding OVCA2 ovarian tumor suppressor candidate 2 O candidate tumor suppressor in ovarian cancer 2|ovarian cancer gene-2 protein|ovarian cancer-associated gene 2 protein 20121230 -9606 124685 LOC124685 hCG_1644301 - - 17 17q24.3 myosin, light chain 6, alkali, smooth muscle and non-muscle pseudogene pseudo - - - - 20121230 -9606 124739 USP43 - - HGNC:20072|Ensembl:ENSG00000154914|Vega:OTTHUMG00000177942 17 17p13.1 ubiquitin specific peptidase 43 protein-coding USP43 ubiquitin specific peptidase 43 O deubiquitinating enzyme 43|ubiquitin carboxyl-terminal hydrolase 43|ubiquitin specific protease 43|ubiquitin thioesterase 43|ubiquitin thiolesterase 43|ubiquitin-specific-processing protease 43 20121230 -9606 124751 KRBA2 - - HGNC:26989|Ensembl:ENSG00000184619|HPRD:14028|Vega:OTTHUMG00000132864 17 17p13.1 KRAB-A domain containing 2 protein-coding KRBA2 KRAB-A domain containing 2 O KRAB A domain containing 2|KRAB-A domain-containing protein 2 20121230 -9606 124773 C17orf64 - - HGNC:26990|Ensembl:ENSG00000141371|HPRD:14029|Vega:OTTHUMG00000157171 17 17q23.2 chromosome 17 open reading frame 64 protein-coding C17orf64 chromosome 17 open reading frame 64 O uncharacterized protein C17orf64 20121230 -9606 124783 SPATA32 - AEP2|C17orf46|TEX34|VAD1.2 HGNC:26349|Ensembl:ENSG00000184361|HPRD:08690|Vega:OTTHUMG00000180363 17 17q21.31 spermatogenesis associated 32 protein-coding SPATA32 spermatogenesis associated 32 O acrosome expressed 2|testis expressed 34|testis-expressed sequence 34 protein 20121230 -9606 124790 HEXIM2 L3 - HGNC:28591|Ensembl:ENSG00000168517|HPRD:08129|Vega:OTTHUMG00000180193 17 17q21.31 hexamethylene bis-acetamide inducible 2 protein-coding HEXIM2 hexamethylene bis-acetamide inducible 2 O MAQ1 paralog|hexamethylene bis-acetamide-inducible protein 2|hexamethylene-bis-acetamide-inducible transcript 2|hexamthylene bis-acetamide inducible 2|protein HEXIM2 20121230 -9606 124801 LSM12 - PNAS-135 HGNC:26407|MIM:611793|Ensembl:ENSG00000161654|HPRD:08701|Vega:OTTHUMG00000181804 17 17q21.31 LSM12 homolog (S. cerevisiae) protein-coding LSM12 LSM12 homolog (S. cerevisiae) O protein LSM12 homolog 20121230 -9606 124808 CCDC43 - - HGNC:26472|Ensembl:ENSG00000180329|HPRD:08107|Vega:OTTHUMG00000181822 17 17q21.31 coiled-coil domain containing 43 protein-coding CCDC43 coiled-coil domain containing 43 O coiled-coil domain-containing protein 43 20121230 -9606 124817 CNTD1 - CNTD HGNC:26847|Ensembl:ENSG00000176563|HPRD:08271|Vega:OTTHUMG00000180652 17 17q21.31 cyclin N-terminal domain containing 1 protein-coding CNTD1 cyclin N-terminal domain containing 1 O cyclin N-terminal domain-containing protein 1 20121230 -9606 124842 TMEM132E - - HGNC:26991|Ensembl:ENSG00000181291|HPRD:14030|Vega:OTTHUMG00000132927 17 17q12 transmembrane protein 132E protein-coding TMEM132E transmembrane protein 132E O - 20121230 -9606 124857 WFIKKN2 UNQ9235/PRO31996 GASP-1|WFIKKNRP|hGASP-1 HGNC:30916|MIM:610895|Ensembl:ENSG00000173714|HPRD:18303|Vega:OTTHUMG00000162274 17 17q21.33 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 protein-coding WFIKKN2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 O WAP, FS, Ig, two KU and NTR module related protein|WAP, follistatin, immunoglobulin, kunitz and NTR domain-containing-related protein|WAP, kazal, immunoglobulin, kunitz and NTR domain-containing protein 2|WFIKKN-related protein|growth and differentiation factor-associated serum protein 1|multivalent protease inhibitor protein 20121230 -9606 124865 LOC124865 - - - 17 17q21.33 mRNA turnover 4 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 124871 FLJ40194 - - HPRD:16950 17 17q21.32 uncharacterized FLJ40194 miscRNA - - - - 20121230 -9606 124872 B4GALNT2 - B4GALT|GALGT2 HGNC:24136|MIM:111730|Ensembl:ENSG00000167080|HPRD:13558|Vega:OTTHUMG00000161307 17 17q21.32 beta-1,4-N-acetyl-galactosaminyl transferase 2 protein-coding B4GALNT2 beta-1,4-N-acetyl-galactosaminyl transferase 2 O UDP-GalNAc:Neu5Aca2-3Galb-R b1,4-N-acetylgalactosaminyltransferase|UDP-GalNAc:Neu5Acalpha2-3Galbeta-R beta1,4-N-acetylgalactosaminyltransferase|beta 1,4 N-acetylgalactosaminyltransferase/betal,4 GalNAcT/Sda-GalNAcT|beta-1,4 N-acetylgalactosaminyltransferase 2|beta-4-N-acetylgalactosaminyltransferase|sd(a) beta-1,4-GalNAc transferase|sda beta-1,4-GalNAc transferase 20121230 -9606 124912 SPACA3 UNQ424/PRO862 1700025M08Rik|ALLP17|CT54|LYC3|LYZL3|SLLP1 HGNC:16260|MIM:612749|Ensembl:ENSG00000141316|HPRD:15420|Vega:OTTHUMG00000132886 17 17q11.2 sperm acrosome associated 3 protein-coding SPACA3 sperm acrosome associated 3 O cancer/testis antigen 54|lysozyme-like acrosomal sperm-specific secretory protein ALLP-17|lysozyme-like protein 3|lysozyme-like sperm-specific secretory protein ALLP17|sperm acrosome membrane-associated protein 3|sperm lysozyme like protein 1|sperm lysozyme-like protein 1|sperm protein reactive with ASA|sperm protein reactive with antisperm antibodies 20121230 -9606 124923 SGK494 - - Ensembl:ENSG00000167524|HPRD:08680|Vega:OTTHUMG00000179342 17 17q11.2 uncharacterized serine/threonine-protein kinase SgK494 protein-coding - - - sugen kinase 494 20121230 -9606 124925 SEZ6 - - HGNC:15955|Ensembl:ENSG00000063015|HPRD:18041|Vega:OTTHUMG00000168010 17 17q11.2 seizure related 6 homolog (mouse) protein-coding SEZ6 seizure related 6 homolog (mouse) O SEZ-6|hSEZ-6|seizure protein 6 homolog 20121230 -9606 124930 ANKRD13B - - HGNC:26363|Ensembl:ENSG00000198720|HPRD:08694|Vega:OTTHUMG00000132731 17 17q11.2 ankyrin repeat domain 13B protein-coding ANKRD13B ankyrin repeat domain 13B O ankyrin repeat domain-containing protein 13B 20121230 -9606 124935 SLC43A2 PP7664 LAT4 HGNC:23087|MIM:610791|Ensembl:ENSG00000167703|HPRD:15390|Vega:OTTHUMG00000090345 17 17p13.3 solute carrier family 43, member 2 protein-coding SLC43A2 solute carrier family 43, member 2 O L-type amino acid transporter 4|amino acid transporter|large neutral amino acids transporter small subunit 4 20121230 -9606 124936 CYB5D2 - - HGNC:28471|Ensembl:ENSG00000167740|HPRD:14549|Vega:OTTHUMG00000177726 17 17p13.2 cytochrome b5 domain containing 2 protein-coding CYB5D2 cytochrome b5 domain containing 2 O cytochrome b5 domain-containing protein 2|neuferricin 20121230 -9606 124944 C17orf49 - BAP18 HGNC:28737|Ensembl:ENSG00000161939|Ensembl:ENSG00000258315|HPRD:14662|Vega:OTTHUMG00000170146|Vega:OTTHUMG00000170147 17 17p13.1 chromosome 17 open reading frame 49 protein-coding C17orf49 chromosome 17 open reading frame 49 O BPTF associated protein of 18 kDa|BPTF-associated protein of 18 kDa|MLL1/MLL complex subunit C17orf49|chromatin complexes subunit BAP18 20121230 -9606 124961 ZFP3 - ZNF752 HGNC:12861|MIM:194480|Ensembl:ENSG00000180787|HPRD:08705|Vega:OTTHUMG00000177799 17 17p13.2 ZFP3 zinc finger protein protein-coding ZFP3 ZFP3 zinc finger protein O zfp-3|zinc finger protein 3 homolog|zinc finger protein 752|zinc finger protein homologous to Zfp-3 in mouse|zinc finger protein-3 20121230 -9606 124974 LOC124974 - - - 17 17p13.2 thioredoxin pseudogene pseudo - - - - 20121230 -9606 124975 GGT6 - - HGNC:26891|MIM:612341|Ensembl:ENSG00000167741|HPRD:08293|Vega:OTTHUMG00000177827 17 17p13.2 gamma-glutamyltransferase 6 protein-coding GGT6 gamma-glutamyltransferase 6 O GGT 6|gamma-glutamyltransferase 6 homolog|gamma-glutamyltranspeptidase 6|glutathione hydrolase 6 20121230 -9606 124976 SPNS2 - - HGNC:26992|MIM:612584|Ensembl:ENSG00000183018|Vega:OTTHUMG00000177739 17 17p13.2 spinster homolog 2 (Drosophila) protein-coding SPNS2 spinster homolog 2 (Drosophila) O protein spinster homolog 2 20121230 -9606 124989 EFCAB13 - C17orf57 HGNC:26864|Ensembl:ENSG00000178852|HPRD:08278|Vega:OTTHUMG00000164767 17 17q21.32 EF-hand calcium binding domain 13 protein-coding EFCAB13 EF-hand calcium binding domain 13 O EF-hand calcium-binding domain-containing protein 13|EF-hand domain-containing protein C17orf57 20121230 -9606 124995 MRPL10 - L10MT|MRP-L10|MRP-L8|MRPL8|RPML8 HGNC:14055|MIM:611825|Ensembl:ENSG00000159111|HPRD:14738|Vega:OTTHUMG00000156302 17 17q21.32 mitochondrial ribosomal protein L10 protein-coding MRPL10 mitochondrial ribosomal protein L10 O 39S ribosomal protein L10, mitochondrial|39S ribosomal protein L8, mitochondrial|L8mt 20121230 -9606 124997 WDR81 - CAMRQ2 HGNC:26600|MIM:614218|Ensembl:ENSG00000167716|HPRD:08748|Vega:OTTHUMG00000153941 17 17p13.3 WD repeat domain 81 protein-coding WDR81 WD repeat domain 81 O WD repeat-containing protein 81 20121230 -9606 125050 RN7SK - 7SK HGNC:10037|MIM:606515 6 6p12.2 RNA, 7SK small nuclear snRNA RN7SK RNA, 7SK small nuclear O - 20121230 -9606 125058 TBC1D16 - - HGNC:28356|Ensembl:ENSG00000167291|HPRD:10261|Vega:OTTHUMG00000177489 17 17q25.3 TBC1 domain family, member 16 protein-coding TBC1D16 TBC1 domain family, member 16 O TBC1 domain family member 16 20121230 -9606 125061 AFMID - FKF|KF|KFA HGNC:20910|Ensembl:ENSG00000183077|HPRD:16478|Vega:OTTHUMG00000153957 17 17q25.3 arylformamidase protein-coding AFMID arylformamidase O KFase|N-formylkynurenine formamidase|kynurenine formamidase|probable arylformamidase 20121230 -9606 125111 GJD3 - CX31.9|Cx30.2|GJA11|GJC1 HGNC:19147|MIM:607425|Ensembl:ENSG00000183153|HPRD:08461|Vega:OTTHUMG00000179634 17 17q21.2 gap junction protein, delta 3, 31.9kDa protein-coding GJD3 gap junction protein, delta 3, 31.9kDa O connexin 31.9|connexin-31.9|gap junction alpha-11 protein|gap junction chi-1 protein|gap junction delta-3 protein 20121230 -9606 125113 KRT222 - KA21|KRT222P HGNC:28695|Ensembl:ENSG00000213424|HPRD:11354|Vega:OTTHUMG00000133374 17 17q21.2 keratin 222 protein-coding KRT222 keratin 222 O keratin 222 pseudogene|keratin-222 pseudogene|keratin-like protein KRT222 20121230 -9606 125115 KRT40 - CK-40|K40|KA36 HGNC:26707|Ensembl:ENSG00000204889|HPRD:08304|Vega:OTTHUMG00000133596 17 17q21.2 keratin 40 protein-coding KRT40 keratin 40 O cytokeratin-40|keratin, type I cytoskeletal 40|keratin-40|type I hair keratin KA36 20121230 -9606 125144 C17orf76-AS1 - C17orf45|NCRNA00188|TSAP19 HGNC:28619|HPRD:17549 17 17p11.2 C17orf76 antisense RNA 1 miscRNA C17orf76-AS1 C17orf76 antisense RNA 1 O - 20121230 -9606 125150 ZSWIM7 - SWS1 HGNC:26993|MIM:614535|Ensembl:ENSG00000214941|Vega:OTTHUMG00000059308 17 17p12 zinc finger, SWIM-type containing 7 protein-coding ZSWIM7 zinc finger, SWIM-type containing 7 O SWIM domain containing Srs2 interacting protein 1|SWIM domain-containing and Srs2-interacting protein 1 homolog|SWIM-domain containing Srs2 interacting protein 1|SWIM-type zinc finger domain-containing protein 7|zinc finger SWIM domain-containing protein 7 20121230 -9606 125168 RIBIN - - - 22 - rRNA promoter binding protein protein-coding - - - - 20100615 -9606 125170 SMCR7 - MID49 HGNC:17920|Ensembl:ENSG00000177427|HPRD:18074|Vega:OTTHUMG00000059392 17 17p11.2 Smith-Magenis syndrome chromosome region, candidate 7 protein-coding SMCR7 Smith-Magenis syndrome chromosome region, candidate 7 O Smith-Magenis syndrome chromosomal region candidate gene 7 protein|mitochondrial dynamic protein MID49|mitochondrial dynamic protein of 49 kDa 20121230 -9606 125206 SLC5A10 - SGLT-5|SGLT5 HGNC:23155|Ensembl:ENSG00000154025|HPRD:15394|Vega:OTTHUMG00000178143 17 17p11.2 solute carrier family 5 (sodium/glucose cotransporter), member 10 protein-coding SLC5A10 solute carrier family 5 (sodium/glucose cotransporter), member 10 O Na(+)/glucose cotransporter 5|sodium/glucose cotransporter 5 20121230 -9606 125208 RPS2P46 - RPS2_22_1525 HGNC:35839 17 17p11 ribosomal protein S2 pseudogene 46 pseudo RPS2P46 ribosomal protein S2 pseudogene 46 O - 20121230 -9606 125228 FAM210A - C18orf19|HsT2329 HGNC:28346|Ensembl:ENSG00000177150|HPRD:10717|Vega:OTTHUMG00000131719 18 18p11.21 family with sequence similarity 210, member A protein-coding FAM210A family with sequence similarity 210, member A O protein FAM210A|uncharacterized protein C18orf19 20121230 -9606 125242 KRT18P8 - - HGNC:31093 18 18p11.22 keratin 18 pseudogene 8 pseudo KRT18P8 keratin 18 pseudogene 8 O - 20121230 -9606 125336 LOXHD1 - DFNB77|LH2D1 HGNC:26521|MIM:613072|Ensembl:ENSG00000167210|HPRD:08316|Vega:OTTHUMG00000132644 18 18q21.1 lipoxygenase homology domains 1 protein-coding LOXHD1 lipoxygenase homology domains 1 O lipoxygenase homology domain-containing protein 1 20121230 -9606 125371 RPL22P1 - RPL22_5_435 HGNC:17998 3 3q26.2 ribosomal protein L22 pseudogene 1 pseudo RPL22P1 ribosomal protein L22 pseudogene 1 O - 20121230 -9606 125476 INO80C - C18orf37|IES6|hIes6 HGNC:26994|Ensembl:ENSG00000153391|HPRD:10719|Vega:OTTHUMG00000132564 18 18q12.2 INO80 complex subunit C protein-coding INO80C INO80 complex subunit C O IES6 homolog 20121230 -9606 125488 TTC39C - C18orf17|HsT2697 HGNC:26595|Ensembl:ENSG00000168234|HPRD:08745|Vega:OTTHUMG00000179403 18 18q11.2 tetratricopeptide repeat domain 39C protein-coding TTC39C tetratricopeptide repeat domain 39C O TPR repeat protein 39C|tetratricopeptide repeat protein 39C 20121230 -9606 125704 FAM69C - C18orf51 HGNC:31729|MIM:614544|Ensembl:ENSG00000187773|Vega:OTTHUMG00000156984 18 18q22.3 family with sequence similarity 69, member C protein-coding FAM69C family with sequence similarity 69, member C O protein FAM69C 20121230 -9606 125875 CLDND2 - - HGNC:28511|Ensembl:ENSG00000160318|HPRD:14574 19 19q13.41 claudin domain containing 2 protein-coding CLDND2 claudin domain containing 2 O claudin domain-containing protein 2 20121230 -9606 125893 ZNF816 - ZNF816A HGNC:26995|Ensembl:ENSG00000180257|HPRD:18722|Vega:OTTHUMG00000167761 19 19q13.41 zinc finger protein 816 protein-coding ZNF816 zinc finger protein 816 O zinc finger protein 816A 20121230 -9606 125919 ZNF543 - - HGNC:25281|Ensembl:ENSG00000178229|HPRD:15829 19 19q13.43 zinc finger protein 543 protein-coding ZNF543 zinc finger protein 543 O - 20121230 -9606 125931 CEACAM20 UNQ9366/PRO34155 UNQ9366 HGNC:24879|HPRD:18273 19 19q13.31 carcinoembryonic antigen-related cell adhesion molecule 20 protein-coding CEACAM20 carcinoembryonic antigen-related cell adhesion molecule 20 O GPAD9366 20121230 -9606 125950 RAVER1 hCG_2033729 - HGNC:30296|MIM:609950|Ensembl:ENSG00000161847|HPRD:11484|Vega:OTTHUMG00000180409 19 19p13.2 ribonucleoprotein, PTB-binding 1 protein-coding RAVER1 ribonucleoprotein, PTB-binding 1 O protein raver-1|ribonucleoprotein PTB-binding 1 20121230 -9606 125958 OR7D4 - OR19-7|OR19-B|OR19B|OR7D4P|hg105 HGNC:8380|MIM:611538|Ensembl:ENSG00000174667|HPRD:15073|Vega:OTTHUMG00000179936 19 19p13.2 olfactory receptor, family 7, subfamily D, member 4 protein-coding OR7D4 olfactory receptor, family 7, subfamily D, member 4 O odorant receptor family 7 subfamily D member 4 RT|olfactory receptor 7D4|olfactory receptor OR19-7|olfactory receptor, family 7, subfamily D, member 4 pseudogene 20121230 -9606 125962 OR7G1 - OR19-15|OR19-8|OR7G1P HGNC:8465|Ensembl:ENSG00000161807|HPRD:15074|Vega:OTTHUMG00000168067 19 19p13.2 olfactory receptor, family 7, subfamily G, member 1 protein-coding OR7G1 olfactory receptor, family 7, subfamily G, member 1 O olfactory receptor 19-15|olfactory receptor 7G1|olfactory receptor OR19-8 20121230 -9606 125963 OR1M1 - OR19-5|OR19-6 HGNC:8220|Ensembl:ENSG00000170929|HPRD:17689|Vega:OTTHUMG00000179930 19 19p13.2 olfactory receptor, family 1, subfamily M, member 1 protein-coding OR1M1 olfactory receptor, family 1, subfamily M, member 1 O olfactory receptor 19-6|olfactory receptor 1M1|olfactory receptor OR19-5 20121230 -9606 125965 COX6B2 - COXVIB2|CT59 HGNC:24380|Ensembl:ENSG00000160471|HPRD:13088|Vega:OTTHUMG00000180774 19 19q13.42 cytochrome c oxidase subunit VIb polypeptide 2 (testis) protein-coding COX6B2 cytochrome c oxidase subunit VIb polypeptide 2 (testis) O COX VIb-2|cancer/testis antigen 59|cytochrome c oxidase subunit 6B2|cytochrome c oxidase subunit VIb, testes specific|cytochrome c oxidase subunit VIb, testes-specific|cytochrome c oxidase subunit VIb, testis-specific isoform 20121230 -9606 125972 CALR3 - CMH19|CRT2|CT93 HGNC:20407|MIM:611414|Ensembl:ENSG00000141979|HPRD:12999 19 19p13.11 calreticulin 3 protein-coding CALR3 calreticulin 3 O calreticulin-2|calreticulin-3|calsperin|cancer/testis antigen 93 20121230 -9606 125981 ACER1 - ALKCDase1|ASAH3 HGNC:18356|MIM:613491|Ensembl:ENSG00000167769|HPRD:12496 19 19p13.3 alkaline ceramidase 1 protein-coding ACER1 alkaline ceramidase 1 O N-acylsphingosine amidohydrolase (alkaline ceramidase) 3|N-acylsphingosine amidohydrolase 3|acylsphingosine deacylase 3|alkCDase 1|alkaline CDase 1 20121230 -9606 125988 C19orf70 - P117|QIL1 HGNC:33702|Ensembl:ENSG00000174917|HPRD:15198|Vega:OTTHUMG00000180503 19 19p13.3 chromosome 19 open reading frame 70 protein-coding C19orf70 chromosome 19 open reading frame 70 O protein QIL1 20121230 -9606 125997 MBD3L2 - - HGNC:18532|MIM:607964|Ensembl:ENSG00000230522|HPRD:12139 19 19p13.2 methyl-CpG binding domain protein 3-like 2 protein-coding MBD3L2 methyl-CpG binding domain protein 3-like 2 O MBD3-like protein 2|methyl-CpG-binding domain protein 3-like 2 20121230 -9606 126003 TRAPPC5 - TRS31 HGNC:23067|Ensembl:ENSG00000181029 19 19p13.2 trafficking protein particle complex 5 protein-coding TRAPPC5 trafficking protein particle complex 5 O trafficking protein particle complex subunit 5 20121230 -9606 126006 PCP2 - GPSM4 HGNC:30209|Ensembl:ENSG00000174788|HPRD:18723 19 19p13.2 Purkinje cell protein 2 protein-coding PCP2 Purkinje cell protein 2 O Purkinje cell protein 2 homolog|Purkinje cell-specific protein L7 20121230 -9606 126014 OSCAR - PIGR3 HGNC:29960|MIM:606862|Ensembl:ENSG00000170909|HPRD:06035|Vega:OTTHUMG00000064966 19 19q13.42 osteoclast associated, immunoglobulin-like receptor protein-coding OSCAR osteoclast associated, immunoglobulin-like receptor O PIgR-3|hOSCAR|osteoclast associated receptor OSCAR-S1|osteoclast associated receptor OSCAR-S2|osteoclast-associated immunoglobulin-like receptor|osteoclast-associated receptor|poly-Ig receptor 3|polymeric immunoglobulin receptor 3 20121230 -9606 126017 ZNF813 - - HGNC:33257|Ensembl:ENSG00000198346|HPRD:13367|Vega:OTTHUMG00000158309 19 19q13.42 zinc finger protein 813 protein-coding ZNF813 zinc finger protein 813 O - 20121230 -9606 126037 EEF1DP1 hCG_2000329 - HGNC:32474 19 19p13.12 eukaryotic translation elongation factor 1 delta pseudogene 1 pseudo EEF1DP1 eukaryotic translation elongation factor 1 delta pseudogene 1 O - 20121230 -9606 126052 TGIF1P1 - - HGNC:30730 19 19q13.32 TGFB-induced factor homeobox 1 pseudogene 1 pseudo TGIF1P1 TGFB-induced factor homeobox 1 pseudogene 1 O - 20121230 -9606 126068 ZNF441 - - HGNC:20875|Ensembl:ENSG00000197044|HPRD:15794|Vega:OTTHUMG00000154449 19 19p13.2 zinc finger protein 441 protein-coding ZNF441 zinc finger protein 441 O - 20121230 -9606 126069 ZNF491 - - HGNC:23706|Ensembl:ENSG00000177599|HPRD:15803|Vega:OTTHUMG00000156529 19 19p13.2 zinc finger protein 491 protein-coding ZNF491 zinc finger protein 491 O - 20121230 -9606 126070 ZNF440 - - HGNC:20874|Ensembl:ENSG00000171295|HPRD:11718|Vega:OTTHUMG00000156403 19 19p13.2 zinc finger protein 440 protein-coding ZNF440 zinc finger protein 440 O - 20121230 -9606 126074 SWSAP1 - C19orf39|SWS1AP1|ZSWIM7AP1 HGNC:26638|MIM:614536|Ensembl:ENSG00000173928|HPRD:08179|Vega:OTTHUMG00000182025 19 19p13.2 SWIM-type zinc finger 7 associated protein 1 protein-coding SWSAP1 SWIM-type zinc finger 7 associated protein 1 O ATPase SWSAP1|SWIM-type zinc finger 7-associated protein 1|SWS1-associated protein 1|ZSWIM7-associated protein 1|zinc finger, SWIM-type containing 7 associated protein 1 20121230 -9606 126075 CCDC159 hCG_29977 - HGNC:26996|Ensembl:ENSG00000183401|Vega:OTTHUMG00000182022 19 19p13.2 coiled-coil domain containing 159 protein-coding CCDC159 coiled-coil domain containing 159 O coiled-coil domain-containing protein 159 20121230 -9606 126119 JOSD2 SBBI54 - HGNC:28853|Ensembl:ENSG00000161677|HPRD:15297 19 19q13.33 Josephin domain containing 2 protein-coding JOSD2 Josephin domain containing 2 O Josephin-2|josephin domain-containing protein 2 20121230 -9606 126123 IZUMO2 UNQ6978/PRO21961 C19orf41|PLAL6978|PRO21961|SCRL HGNC:28518|Ensembl:ENSG00000161652|HPRD:14578|Vega:OTTHUMG00000074063 19 19q13.33 IZUMO family member 2 protein-coding IZUMO2 IZUMO family member 2 O izumo sperm-egg fusion protein 2 20121230 -9606 126129 CPT1C - CATL1|CPT1-B|CPT1P|CPTI-B|CPTIC HGNC:18540|MIM:608846|Ensembl:ENSG00000169169|HPRD:12315 19 19q13.33 carnitine palmitoyltransferase 1C protein-coding CPT1C carnitine palmitoyltransferase 1C O carnitine O-palmitoyltransferase 1, brain isoform|carnitine O-palmitoyltransferase I, brain isoform|carnitine palmitoyltransferase I related C 20121230 -9606 126133 ALDH16A1 - - HGNC:28114|MIM:613358|Ensembl:ENSG00000161618|HPRD:14394 19 19q13.33 aldehyde dehydrogenase 16 family, member A1 protein-coding ALDH16A1 aldehyde dehydrogenase 16 family, member A1 O aldehyde dehydrogenase family 16 member A1 20121230 -9606 126147 NTN5 - - HGNC:25208|Ensembl:ENSG00000142233|HPRD:14031 19 19q13.33 netrin 5 protein-coding NTN5 netrin 5 O netrin-1-like protein|netrin-5 20121230 -9606 126170 LOC126170 - - - 19 19q12 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 126204 NLRP13 - CLR19.7|NALP13|NOD14|PAN13 HGNC:22937|MIM:609660|Ensembl:ENSG00000173572|HPRD:14804|Vega:OTTHUMG00000167839 19 19q13.43 NLR family, pyrin domain containing 13 protein-coding NLRP13 NLR family, pyrin domain containing 13 O NACHT, LRR and PYD containing protein 13|NACHT, LRR and PYD domains-containing protein 13|NACHT, leucine rich repeat and PYD containing 13|nucleotide-binding oligomerization domain protein 14|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 13 20121230 -9606 126205 NLRP8 - CLR19.2|NALP8|NOD16|PAN4 HGNC:22940|MIM:609659|Ensembl:ENSG00000179709|HPRD:14807|Vega:OTTHUMG00000181754 19 19q13.43 NLR family, pyrin domain containing 8 protein-coding NLRP8 NLR family, pyrin domain containing 8 O NACHT, LRR and PYD containing protein 8|NACHT, LRR and PYD domains-containing protein 8|NACHT, leucine rich repeat and PYD containing 8|PYRIN and NACHT-containing protein 4|nucleotide-binding oligomerization domain protein 16|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 8 20121230 -9606 126206 NLRP5 - CLR19.8|MATER|NALP5|PAN11|PYPAF8 HGNC:21269|MIM:609658|Ensembl:ENSG00000171487|HPRD:10111|Vega:OTTHUMG00000149887 19 19q13.43 NLR family, pyrin domain containing 5 protein-coding NLRP5 NLR family, pyrin domain containing 5 O NACHT, LRR and PYD domains-containing protein 5|NACHT, leucine rich repeat and PYD containing 5|mater protein homolog|maternal antigen that embryos require|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 5 20121230 -9606 126208 ZNF787 - TIP20 HGNC:26998|Ensembl:ENSG00000142409|HPRD:14032|Vega:OTTHUMG00000181760 19 19q13.43 zinc finger protein 787 protein-coding ZNF787 zinc finger protein 787 O TTF-I interacting peptide 20|TTF-I-interacting peptide 20|transcription termination factor I interacting peptide 20 20121230 -9606 126231 ZNF573 - - HGNC:26420|Ensembl:ENSG00000189144|HPRD:15852|Vega:OTTHUMG00000048183 19 19q13.12 zinc finger protein 573 protein-coding ZNF573 zinc finger protein 573 O - 20121230 -9606 126235 RPS4XP21 - RPS4P21|RPS4X_10_1649 HGNC:36228 19 19q13.11 ribosomal protein S4X pseudogene 21 pseudo RPS4XP21 ribosomal protein S4X pseudogene 21 O - 20121230 -9606 126242 AKR1B1P7 - - HGNC:33497 19 19q13.11 aldo-keto reductase family 1, member B1 pseudogene 7 pseudo AKR1B1P7 aldo-keto reductase family 1, member B1 pseudogene 7 O - 20121230 -9606 126248 WDR88 - PQWD HGNC:26999|Ensembl:ENSG00000166359|HPRD:14033|Vega:OTTHUMG00000180342 19 19q13.11 WD repeat domain 88 protein-coding WDR88 WD repeat domain 88 O PQQ repeat and WD repeat domain containing|PQQ repeat and WD repeat-containing protein|WD repeat-containing protein 88 20121230 -9606 126259 TMIGD2 UNQ3059/PRO9879 IGPR-1|IGPR1 HGNC:28324|MIM:614715|Ensembl:ENSG00000167664|HPRD:14487 19 19p13.3 transmembrane and immunoglobulin domain containing 2 protein-coding TMIGD2 transmembrane and immunoglobulin domain containing 2 O immunoglobulin and proline-rich receptor 1|immunoglobulin-containing and proline-rich receptor 1|transmembrane and immunoglobulin domain-containing protein 2|transmembrane and immunoglobulin domain-containing protein 2 variant 2|transmembrane and immunoglobulin domain-containing protein 2 variant 3 20121230 -9606 126272 EID2B - EID-3 HGNC:26796|Ensembl:ENSG00000176401|HPRD:08795 19 19q13.2 EP300 interacting inhibitor of differentiation 2B protein-coding EID2B EP300 interacting inhibitor of differentiation 2B O EID-2-like inhibitor of differentiation 3|EID-2-like inhibitor of differentiation-3|EID-2B|EP300-interacting inhibitor of differentiation 2B 20121230 -9606 126282 TNFAIP8L1 - TIPE1 HGNC:28279|Ensembl:ENSG00000185361|HPRD:11314 19 19p13.3 tumor necrosis factor, alpha-induced protein 8-like 1 protein-coding TNFAIP8L1 tumor necrosis factor, alpha-induced protein 8-like 1 O TNF alpha-induced protein 8-like protein 1|TNFAIP8-like protein 1|tumor necrosis factor alpha-induced protein 8-like protein 1|tumor necrosis factor, alpha-induced protein 8-like protein 1 20121230 -9606 126295 ZNF57 - ZNF424 HGNC:13125|Ensembl:ENSG00000171970|HPRD:14034|Vega:OTTHUMG00000164485 19 19p13.3 zinc finger protein 57 protein-coding ZNF57 zinc finger protein 57 O zinc finger protein 424 20121230 -9606 126298 IRGQ FKSG27 IRGQ1 HGNC:24868|Ensembl:ENSG00000167378|HPRD:17161 19 19q13.31 immunity-related GTPase family, Q protein-coding IRGQ immunity-related GTPase family, Q O immunity-related GTPase family Q protein|immunity-related GTPase family, Q1 20121230 -9606 126299 ZNF428 - C19orf37|Zfp428 HGNC:20804|Ensembl:ENSG00000131116|HPRD:14671 19 19q13.31 zinc finger protein 428 protein-coding ZNF428 zinc finger protein 428 O enzyme-like protein PIT13 20121230 -9606 126306 JSRP1 - JP-45|JP45 HGNC:24963|MIM:608743|Ensembl:ENSG00000167476|HPRD:08724|Vega:OTTHUMG00000180413 19 19p13.3 junctional sarcoplasmic reticulum protein 1 protein-coding JSRP1 junctional sarcoplasmic reticulum protein 1 O 2310032K21Rik|homolog of mouse skeletal muscle sarcoplasmic reticulum protein JP-45|junctional-face membrane protein of 45 kDa homolog|skeletal muscle sarcoplasmic reticulum protein JP-45 20121230 -9606 126308 MOB3A - MOB1C|MOBKL2A|moblak HGNC:29802|Ensembl:ENSG00000172081|HPRD:17583|Vega:OTTHUMG00000180353 19 19p13.3 MOB kinase activator 3A protein-coding MOB3A MOB kinase activator 3A O MOB LAK|MOB-LAK|MOB1, Mps One Binder kinase activator-like 2A|mob1 homolog 2A|mps one binder kinase activator-like 2A 20121230 -9606 126321 MFSD12 - C19orf28|PP3501 HGNC:28299|Ensembl:ENSG00000161091|HPRD:12704|Vega:OTTHUMG00000180766 19 19p13.3 major facilitator superfamily domain containing 12 protein-coding MFSD12 major facilitator superfamily domain containing 12 O major facilitator superfamily domain-containing protein 12 20121230 -9606 126326 GIPC3 - C19orf64|DFNB15|DFNB72|DFNB95 HGNC:18183|MIM:608792|Ensembl:ENSG00000179855|HPRD:16386|Vega:OTTHUMG00000167425 19 19p13.3 GIPC PDZ domain containing family, member 3 protein-coding GIPC3 GIPC PDZ domain containing family, member 3 O PDZ domain-containing protein GIPC3 20121230 -9606 126328 NDUFA11 - B14.7|CI-B14.7 HGNC:20371|MIM:612638|Ensembl:ENSG00000174886|Ensembl:ENSG00000267740|HPRD:14818|Vega:OTTHUMG00000180617|Vega:OTTHUMG00000180627 19 19p13.3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 11, 14.7kDa protein-coding NDUFA11 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 11, 14.7kDa O NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11|NADH-ubiquinone oxidoreductase subunit B14.7|complex I B14.7 subunit 20121230 -9606 126353 C19orf21 - - HGNC:27000|Ensembl:ENSG00000099812|HPRD:12695|Vega:OTTHUMG00000181786 19 19p13.3 chromosome 19 open reading frame 21 protein-coding C19orf21 chromosome 19 open reading frame 21 O uncharacterized protein C19orf21 20121230 -9606 126364 LRRC25 UNQ6169/PRO20174 MAPA HGNC:29806|MIM:607518|Ensembl:ENSG00000175489|HPRD:09597 19 19p13.11 leucine rich repeat containing 25 protein-coding LRRC25 leucine rich repeat containing 25 O leucine-rich repeat-containing protein 25|monocyte and plasmacytoid activated molecule|monocyte and plasmacytoid-activated protein 20121230 -9606 126370 OR1I1 - OR19-20|OR1I1P|OR1I1Q HGNC:8207|Ensembl:ENSG00000094661|HPRD:14915 19 19p13.12 olfactory receptor, family 1, subfamily I, member 1 protein-coding OR1I1 olfactory receptor, family 1, subfamily I, member 1 O olfactory receptor 19-20|olfactory receptor 1I1 20121230 -9606 126374 WTIP - - HGNC:20964|MIM:614790|Ensembl:ENSG00000142279|Vega:OTTHUMG00000182099 19 19q13.11 Wilms tumor 1 interacting protein protein-coding WTIP Wilms tumor 1 interacting protein O WT1-interacting protein|Wilms tumor protein 1-interacting protein 20121230 -9606 126375 ZNF792 - - HGNC:24751|Ensembl:ENSG00000180884|HPRD:13430|Vega:OTTHUMG00000150339 19 19q13.11 zinc finger protein 792 protein-coding ZNF792 zinc finger protein 792 O - 20121230 -9606 126382 NR2C2AP - TRA16 HGNC:30763|MIM:608719|Ensembl:ENSG00000184162|HPRD:16376|Vega:OTTHUMG00000169225 19 19p13.11 nuclear receptor 2C2-associated protein protein-coding NR2C2AP nuclear receptor 2C2-associated protein O TR4 orphan receptor associated protein TRA16|TR4 orphan receptor-associated 16 kDa protein|repressor for TR4 transactivation 20121230 -9606 126393 HSPB6 - Hsp20 HGNC:26511|MIM:610695|Ensembl:ENSG00000004776|HPRD:08130|Vega:OTTHUMG00000048122 19 19q13.12 heat shock protein, alpha-crystallin-related, B6 protein-coding HSPB6 heat shock protein, alpha-crystallin-related, B6 O heat shock 20 kDa-like protein p20|heat shock protein beta-6 20121230 -9606 126402 CCDC105 - - HGNC:26866|Ensembl:ENSG00000160994|HPRD:08280 19 19p13.12 coiled-coil domain containing 105 protein-coding CCDC105 coiled-coil domain containing 105 O coiled-coil domain-containing protein 105 20121230 -9606 126410 CYP4F22 - LI3 HGNC:26820|MIM:611495|Ensembl:ENSG00000171954|HPRD:08256 19 19p13.12 cytochrome P450, family 4, subfamily F, polypeptide 22 protein-coding CYP4F22 cytochrome P450, family 4, subfamily F, polypeptide 22 O cytochrome P450 4F22|cytochrome P450, family 2, subfamily E, polypeptide 2 homolog 20121230 -9606 126432 RINL - - HGNC:24795|Ensembl:ENSG00000187994|HPRD:13517|Vega:OTTHUMG00000182299 19 19q13.2 Ras and Rab interactor-like protein-coding RINL Ras and Rab interactor-like O ras and Rab interactor-like protein 20121230 -9606 126433 FBXO27 - FBG5|Fbx27 HGNC:18753|MIM:609099|Ensembl:ENSG00000161243|HPRD:16440 19 19q13.2 F-box protein 27 protein-coding FBXO27 F-box protein 27 O F-box only protein 27|F-box protein FBG5|F-box/G-domain protein 5 20121230 -9606 126506 SNX6P1 - - HGNC:41511 19 19p12 sorting nexin 6 pseudogene 1 pseudo SNX6P1 sorting nexin 6 pseudogene 1 O - 20121230 -9606 126520 PLK5 - PLK-5|PLK5P|SgK384ps HGNC:27001|Ensembl:ENSG00000185988|Vega:OTTHUMG00000180073 19 19p13.3 polo-like kinase 5 protein-coding PLK5 polo-like kinase 5 O inactive serine/threonine-protein kinase PLK5|polo-like kinase 5, pseudogene 20121230 -9606 126526 C19orf47 - - HGNC:26723|Ensembl:ENSG00000160392|HPRD:08216|Vega:OTTHUMG00000179028 19 19q13.2 chromosome 19 open reading frame 47 protein-coding C19orf47 chromosome 19 open reading frame 47 O uncharacterized protein C19orf47 20121230 -9606 126536 LINC00661 - - HGNC:27002|HPRD:18725 19 19p13.12 long intergenic non-protein coding RNA 661 miscRNA LINC00661 long intergenic non-protein coding RNA 661 O - 20121230 -9606 126541 OR10H4 - OR19-28 HGNC:15388|Ensembl:ENSG00000176231|HPRD:14891|Vega:OTTHUMG00000182268 19 19p13.12 olfactory receptor, family 10, subfamily H, member 4 protein-coding OR10H4 olfactory receptor, family 10, subfamily H, member 4 O olfactory receptor 10H4|olfactory receptor OR19-28 20121230 -9606 126549 ANKLE1 - ANKRD41|LEM3|LEMD6 HGNC:26812|Ensembl:ENSG00000160117|HPRD:08801|Vega:OTTHUMG00000150839 19 19p13.11 ankyrin repeat and LEM domain containing 1 protein-coding ANKLE1 ankyrin repeat and LEM domain containing 1 O LEM domain containing 6|LEM-domain containing 3|LEM-domain containing protein 3|ankyrin repeat and LEM domain-containing protein 1|ankyrin repeat domain 41|ankyrin repeat domain-containing protein 41 20121230 -9606 126567 C2CD4C - FAM148C|KIAA1957|NLF3 HGNC:29417|MIM:610336|Ensembl:ENSG00000183186|Vega:OTTHUMG00000180534 19 19p13.3 C2 calcium-dependent domain containing 4C protein-coding C2CD4C C2 calcium-dependent domain containing 4C O C2 calcium-dependent domain-containing protein 4C|family with sequence similarity 148, member C|nuclear localized factor 3|nuclear-localized factor 3 20121230 -9606 126581 MRP63P1 - - HGNC:29686 1 1p13.1 mitochondrial ribosomal protein 63 pseudogene 1 pseudo MRP63P1 mitochondrial ribosomal protein 63 pseudogene 1 O - 20121230 -9606 126626 GABPB2 RP11-68I18.1 - HGNC:28441|Ensembl:ENSG00000143458|HPRD:14536|Vega:OTTHUMG00000012193 1 1q21.3 GA binding protein transcription factor, beta subunit 2 protein-coding GABPB2 GA binding protein transcription factor, beta subunit 2 O GA-binding protein subunit beta-2|GABP subunit beta-2|GABPB-2 20121230 -9606 126637 TCHHL1 - S100A17|THHL1|basalin HGNC:31796|Ensembl:ENSG00000182898|HPRD:18179|Vega:OTTHUMG00000013058 1 1q21.3 trichohyalin-like 1 protein-coding TCHHL1 trichohyalin-like 1 O S100 calcium binding protein A17|S100 calcium-binding protein A17|intermediate filament-associated protein|trichohyalin-like protein 1 20121230 -9606 126638 RPTN RP11-107M16.6 - HGNC:26809|MIM:613259|Ensembl:ENSG00000215853|Vega:OTTHUMG00000154095 1 1q21.3 repetin protein-coding RPTN repetin O intermediate filament-associated protein 20121230 -9606 126661 CCDC163P - C1orf231 HGNC:27003 1 1p34.1 coiled-coil domain containing 163, pseudogene pseudo CCDC163P coiled-coil domain containing 163, pseudogene O - 20121230 -9606 126668 TDRD10 RP11-61L14.3 - HGNC:25316|Ensembl:ENSG00000163239|HPRD:13196|Vega:OTTHUMG00000037264 1 1q21.3 tudor domain containing 10 protein-coding TDRD10 tudor domain containing 10 O tudor domain-containing protein 10 20121230 -9606 126669 SHE - RP11-350G8.8 HGNC:27004|MIM:610482|Ensembl:ENSG00000169291|HPRD:17293|Vega:OTTHUMG00000036072 1 1q21.3 Src homology 2 domain containing E protein-coding SHE Src homology 2 domain containing E O SH2 domain-containing adapter protein E 20121230 -9606 126695 C1orf172 - RP11-344H11.3 HGNC:26624|Ensembl:ENSG00000175707|HPRD:08754|Vega:OTTHUMG00000004272 1 1p36.11 chromosome 1 open reading frame 172 protein-coding C1orf172 chromosome 1 open reading frame 172 O uncharacterized protein C1orf172 20121230 -9606 126731 CCSAP RP4-803J11.3 C1orf96|CSAP HGNC:29578|Ensembl:ENSG00000154429|HPRD:14035|Vega:OTTHUMG00000037663 1 1q42.13 centriole, cilia and spindle-associated protein protein-coding CCSAP centriole, cilia and spindle-associated protein O centriole and spindle-associated protein 20121230 -9606 126755 LRRC38 - RP4-597A16.1 HGNC:27005|Ensembl:ENSG00000162494|Vega:OTTHUMG00000007918 1 1p36.21 leucine rich repeat containing 38 protein-coding LRRC38 leucine rich repeat containing 38 O BK channel auxilliary gamma subunit LRRC38|leucine-rich repeat-containing protein 38 20121230 -9606 126767 AADACL3 RP11-474O21.3 - HGNC:32037|Ensembl:ENSG00000188984|Vega:OTTHUMG00000001887 1 1p36.21 arylacetamide deacetylase-like 3 protein-coding AADACL3 arylacetamide deacetylase-like 3 O - 20121230 -9606 126789 PUSL1 - - HGNC:26914|Ensembl:ENSG00000169972|HPRD:08301|Vega:OTTHUMG00000003361 1 1p36.33 pseudouridylate synthase-like 1 protein-coding PUSL1 pseudouridylate synthase-like 1 O tRNA pseudouridine synthase-like 1|tRNA pseudouridylate synthase-like 1|tRNA-uridine isomerase-like 1 20121230 -9606 126792 B3GALT6 - beta3GalT6 HGNC:17978|Ensembl:ENSG00000176022|HPRD:12509|Vega:OTTHUMG00000001813 1 1p36.33 UDP-Gal:betaGal beta 1,3-galactosyltransferase polypeptide 6 protein-coding B3GALT6 UDP-Gal:betaGal beta 1,3-galactosyltransferase polypeptide 6 O GAG GalTII|UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 6|beta-1,3-GalTase 6|beta-1,3-galactosyltransferase 6|beta3Gal-T6|galactosyltransferase II|galactosylxylosylprotein 3-beta-galactosyltransferase 20121230 -9606 126811 KRT8P21 - - HGNC:33373 1 1p31.1 keratin 8 pseudogene 21 pseudo KRT8P21 keratin 8 pseudogene 21 O - 20121230 -9606 126820 WDR63 - NYD-SP29|RP11-507C22.2 HGNC:30711|Ensembl:ENSG00000162643|HPRD:11409|Vega:OTTHUMG00000009953 1 1p22.3 WD repeat domain 63 protein-coding WDR63 WD repeat domain 63 O WD repeat-containing protein 63|testis development protein NYD-SP29 (NYD-SP29) 20121230 -9606 126823 KLHDC9 RP11-544M22.9 KARCA1 HGNC:28489|Ensembl:ENSG00000162755|HPRD:13751|Vega:OTTHUMG00000031479 1 1q23.3 kelch domain containing 9 protein-coding KLHDC9 kelch domain containing 9 O kelch domain-containing protein 9|kelch/ankyrin repeat-containing cyclin A1-interacting protein 20121230 -9606 126826 TGIF2P1 - - HGNC:33317 1 1q44 TGFB-induced factor homeobox 2 pseudogene 1 pseudo TGIF2P1 TGFB-induced factor homeobox 2 pseudogene 1 O - 20121230 -9606 126859 AXDND1 - C1orf125|RP11-215I23.2 HGNC:26564|Ensembl:ENSG00000162779|HPRD:08740|Vega:OTTHUMG00000035266 1 1q25.2 axonemal dynein light chain domain containing 1 protein-coding AXDND1 axonemal dynein light chain domain containing 1 O axonemal dynein light chain domain-containing protein 1 20121230 -9606 126860 LOC126860 - - - 1 1q25.2 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 pseudogene pseudo - - - - 20121230 -9606 126868 MAB21L3 - C1orf161|RP5-1185H19.1 HGNC:26787|Ensembl:ENSG00000173212|HPRD:08245|Vega:OTTHUMG00000012110 1 1p13.1 mab-21-like 3 (C. elegans) protein-coding MAB21L3 mab-21-like 3 (C. elegans) O protein mab-21-like 3 20121230 -9606 126917 IFFO2 RP1-93P18.1 - HGNC:27006|Ensembl:ENSG00000169991|Vega:OTTHUMG00000002499 1 1p36.13 intermediate filament family orphan 2 protein-coding IFFO2 intermediate filament family orphan 2 O - 20121230 -9606 126961 HIST2H3C - H3|H3.2|H3/M|H3F2|H3FM|H3FN HGNC:20503|MIM:142780|Ensembl:ENSG00000203811|HPRD:11822|Vega:OTTHUMG00000012190 1 1q21.2 histone cluster 2, H3c protein-coding HIST2H3C histone cluster 2, H3c O H3 histone family, member M|H3 histone, family 2|histone 2, H3c|histone H3.2|histone H3/m 20121230 -9606 126969 SLC44A3 UNQ558/PRO1115 CTL3 HGNC:28689|Ensembl:ENSG00000143036|HPRD:14637|Vega:OTTHUMG00000010700 1 1p21.3 solute carrier family 44, member 3 protein-coding SLC44A3 solute carrier family 44, member 3 O choline transporter-like protein 3 20121230 -9606 126987 LOC126987 - - - 1 1p21.1 tight junction protein 3 (zona occludens 3) pseudogene pseudo - - - - 20121230 -9606 127002 ATXN7L2 - - HGNC:28713|Ensembl:ENSG00000162650|HPRD:12506|Vega:OTTHUMG00000011027 1 1p13.3 ataxin 7-like 2 protein-coding ATXN7L2 ataxin 7-like 2 O ataxin 7-like 1|ataxin-7-like protein 2 20121230 -9606 127003 C1orf194 RP5-1065J22.5 - HGNC:32331|Ensembl:ENSG00000179902|Vega:OTTHUMG00000011735 1 1p13.3 chromosome 1 open reading frame 194 protein-coding C1orf194 chromosome 1 open reading frame 194 O uncharacterized protein C1orf194 20121230 -9606 127011 LOC127011 - - - 1 1q31.3 ATPase, H+ transporting, lysosomal accessory protein 2 pseudogene pseudo - - - - 20121230 -9606 127018 LYPLAL1 - - HGNC:20440|Ensembl:ENSG00000143353|HPRD:14335|Vega:OTTHUMG00000037141 1 1q41 lysophospholipase-like 1 protein-coding LYPLAL1 lysophospholipase-like 1 O lysophospholipase-like protein 1 20121230 -9606 127059 OR2M5 RP11-230L4.2 OR2M5P HGNC:19576|Ensembl:ENSG00000162727|HPRD:14947|Vega:OTTHUMG00000040447 1 1q44 olfactory receptor, family 2, subfamily M, member 5 protein-coding OR2M5 olfactory receptor, family 2, subfamily M, member 5 O olfactory receptor 2M5|olfactory receptor, family 2, subfamily M, member 5 pseudogene 20121230 -9606 127062 OR2M3 - OR1-54|OR2M3P|OR2M6|OST003 HGNC:8269|Ensembl:ENSG00000228198|HPRD:14945|Vega:OTTHUMG00000040459 1 1q44 olfactory receptor, family 2, subfamily M, member 3 protein-coding OR2M3 olfactory receptor, family 2, subfamily M, member 3 O novel 7 transmembrane receptor (rhodopsin family) protein|olfactory receptor 2M3|olfactory receptor 2M6|olfactory receptor OR1-54|olfactory receptor, family 2, subfamily M, member 3 pseudogene|olfactory receptor, family 2, subfamily M, member 6 20121230 -9606 127064 OR2T12 - OR1-57 HGNC:19592|Ensembl:ENSG00000177201|HPRD:14951|Vega:OTTHUMG00000040457 1 1q44 olfactory receptor, family 2, subfamily T, member 12 protein-coding OR2T12 olfactory receptor, family 2, subfamily T, member 12 O novel 7 transmembrane receptor (rhodopsin family) protein|olfactory receptor 2T12|olfactory receptor OR1-57 20121230 -9606 127066 OR14C36 - OR5BF1 HGNC:15026|Ensembl:ENSG00000177174|HPRD:17754|Vega:OTTHUMG00000040463 1 1q44 olfactory receptor, family 14, subfamily C, member 36 protein-coding OR14C36 olfactory receptor, family 14, subfamily C, member 36 O olfactory receptor 14C36|olfactory receptor 5BF1|olfactory receptor OR1-59|olfactory receptor, family 5, subfamily BF, member 1 20121230 -9606 127068 OR2T34 - - HGNC:31256|Ensembl:ENSG00000183310|HPRD:14954|Vega:OTTHUMG00000040387 1 1q44 olfactory receptor, family 2, subfamily T, member 34 protein-coding OR2T34 olfactory receptor, family 2, subfamily T, member 34 O olfactory receptor 2T34|olfactory receptor OR1-63 20121230 -9606 127069 OR2T10 - OR1-64 HGNC:19573|Ensembl:ENSG00000184022|HPRD:14950|Vega:OTTHUMG00000040388 1 1q44 olfactory receptor, family 2, subfamily T, member 10 protein-coding OR2T10 olfactory receptor, family 2, subfamily T, member 10 O olfactory receptor 2T10|olfactory receptor OR1-64 20121230 -9606 127074 OR2T4 - OR1-60|OR2T4Q HGNC:15016|Ensembl:ENSG00000196944|HPRD:14955|Vega:OTTHUMG00000040453 1 1q44 olfactory receptor, family 2, subfamily T, member 4 protein-coding OR2T4 olfactory receptor, family 2, subfamily T, member 4 O olfactory receptor 2T4|olfactory receptor OR1-60 20121230 -9606 127077 OR2T11 - OR2T11Q HGNC:19574|Ensembl:ENSG00000183130|HPRD:17705|Vega:OTTHUMG00000040384 1 1q44 olfactory receptor, family 2, subfamily T, member 11 protein-coding OR2T11 olfactory receptor, family 2, subfamily T, member 11 O olfactory receptor 2T11|olfactory receptor OR1-65 20121230 -9606 127086 LOC127086 - - - 1 1q41 X-ray repair complementing defective repair in Chinese hamster cells 6 pseudogene pseudo - - - - 20121230 -9606 127099 RPLP1P3 - RPLP1_1_124 HGNC:36870 1 1q24.3 ribosomal protein, large, P1 pseudogene 3 pseudo RPLP1P3 ribosomal protein, large, P1 pseudogene 3 O - 20121230 -9606 127124 ATP6V1G3 - ATP6G3|Vma10 HGNC:18265|Ensembl:ENSG00000151418|HPRD:16526|Vega:OTTHUMG00000035661 1 1q31.3 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G3 protein-coding ATP6V1G3 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G3 O ATPase, H+ transporting, lysosomal (vacuolar proton pump) subunit G3|V-ATPase 13 kDa subunit 3|V-ATPase G subunit 3|V-ATPase G3 subunit|V-ATPase subunit G 3|V-type proton ATPase subunit G 3|vacuolar ATP synthase subunit G 3|vacuolar proton pump G subunit 3|vacuolar proton pump subunit G 3|vacuolar proton pump, subunit G3 20121230 -9606 127247 ASB17 - Asb-17 HGNC:19769|Ensembl:ENSG00000154007|HPRD:10671|Vega:OTTHUMG00000009787 1 1p31.1 ankyrin repeat and SOCS box containing 17 protein-coding ASB17 ankyrin repeat and SOCS box containing 17 O ankyrin repeat and SOCS box protein 17|ankyrin repeat and SOCS box-containing 17 20121230 -9606 127253 TYW3 - C1orf171 HGNC:24757|MIM:611245|Ensembl:ENSG00000162623|HPRD:14036|Vega:OTTHUMG00000009641 1 1p31.1 tRNA-yW synthesizing protein 3 homolog (S. cerevisiae) protein-coding TYW3 tRNA-yW synthesizing protein 3 homolog (S. cerevisiae) O tRNA wybutosine-synthesizing protein 3 homolog|tRNA-yW-synthesizing protein 3 20121230 -9606 127254 C1orf173 - RP11-653A5.1 HGNC:25346|Ensembl:ENSG00000178965|HPRD:16816|Vega:OTTHUMG00000009622 1 1p31.1 chromosome 1 open reading frame 173 protein-coding C1orf173 chromosome 1 open reading frame 173 O uncharacterized protein C1orf173 20121230 -9606 127255 LRRIQ3 - LRRC44 HGNC:28318|Ensembl:ENSG00000162620|HPRD:14485|Vega:OTTHUMG00000009508 1 1p31.1 leucine-rich repeats and IQ motif containing 3 protein-coding LRRIQ3 leucine-rich repeats and IQ motif containing 3 O leucine rich repeat containing 44|leucine-rich repeat and IQ domain-containing protein 3|leucine-rich repeat-containing protein 44 20121230 -9606 127262 TPRG1L - FAM79A|RP11-46F15.3|h-mover|mover HGNC:27007|MIM:611460|Ensembl:ENSG00000158109|HPRD:14037|Vega:OTTHUMG00000000609 1 1p36.32 tumor protein p63 regulated 1-like protein-coding TPRG1L tumor protein p63 regulated 1-like O family with sequence similarity 79, member A|mossy fiber terminal-associated vertebrate-specific presynaptic protein|tumor protein p63-regulated gene 1-like protein 20121230 -9606 127281 FAM213B RP3-395M20.10 C1orf93 HGNC:28390|Ensembl:ENSG00000157870|HPRD:14513|Vega:OTTHUMG00000000847 1 1p36.32 family with sequence similarity 213, member B protein-coding FAM213B family with sequence similarity 213, member B O prostamide/PG F synthase|prostamide/PGF synthase|prostamide/prostaglandin F synthase 20121230 -9606 127294 MYOM3 - RP11-293P20.1 HGNC:26679|Ensembl:ENSG00000142661|HPRD:08200|Vega:OTTHUMG00000002969 1 1p36.11 myomesin 3 protein-coding MYOM3 myomesin 3 O myomesin family, member 3|myomesin-3 20121230 -9606 127295 RPL36P5 - RPL36_1_21 HGNC:35567 1 1p36.11 ribosomal protein L36 pseudogene 5 pseudo RPL36P5 ribosomal protein L36 pseudogene 5 O - 20121230 -9606 127343 DMBX1 - MBX|OTX3|PAXB HGNC:19026|MIM:607410|Ensembl:ENSG00000197587|HPRD:07593|Vega:OTTHUMG00000007982 1 1p33 diencephalon/mesencephalon homeobox 1 protein-coding DMBX1 diencephalon/mesencephalon homeobox 1 O diencephalon/mesencephalon homeobox protein 1|homeoprotein MBX|orthodenticle homolog 3|paired-like homeobox protein DMBX1 20121230 -9606 127385 OR10J5 - OR1-28 HGNC:14993|Ensembl:ENSG00000184155|HPRD:14892|Vega:OTTHUMG00000022738 1 1q23.2 olfactory receptor, family 10, subfamily J, member 5 protein-coding OR10J5 olfactory receptor, family 10, subfamily J, member 5 O olfactory receptor 10J5|olfactory receptor OR1-28 20121230 -9606 127391 TMCO2 - dJ39G22.2 HGNC:23312|Ensembl:ENSG00000188800|HPRD:18369|Vega:OTTHUMG00000005764 1 1p34.2 transmembrane and coiled-coil domains 2 protein-coding TMCO2 transmembrane and coiled-coil domains 2 O dJ39G22.2 (novel protein)|transmembrane and coiled-coil domain-containing protein 2 20121230 -9606 127396 ZNF684 RP1-63P18.1 - HGNC:28418|Ensembl:ENSG00000117010|HPRD:11328|Vega:OTTHUMG00000007359 1 1p34.2 zinc finger protein 684 protein-coding ZNF684 zinc finger protein 684 O hypothetical protein MGC27466 20121230 -9606 127406 RPSAP20 - RPSA_1_53 HGNC:35595 1 1p32.2 ribosomal protein SA pseudogene 20 pseudo RPSAP20 ribosomal protein SA pseudogene 20 O - 20121230 -9606 127428 TCEANC2 - C1orf83|RP4-758J24.3 HGNC:26494|Ensembl:ENSG00000116205|HPRD:08722|Vega:OTTHUMG00000008434 1 1p32.3 transcription elongation factor A (SII) N-terminal and central domain containing 2 protein-coding TCEANC2 transcription elongation factor A (SII) N-terminal and central domain containing 2 O transcription elongation factor A N-terminal and central domain-containing protein 2 20121230 -9606 127435 PODN UNQ293/PRO332 PCAN|SLRR5A HGNC:23174|MIM:608661|Ensembl:ENSG00000174348|HPRD:10557|Vega:OTTHUMG00000008934 1 1p32.3 podocan protein-coding PODN podocan O podocan proteoglycan 20121230 -9606 127481 S100A7P1 - S100A7L3|s100a7d HGNC:21654 1 1q21.3 S100 calcium binding protein A7 pseudogene 1 pseudo S100A7P1 S100 calcium binding protein A7 pseudogene 1 O - 20121230 -9606 127495 LRRC39 RP11-305E17.2 - HGNC:28228|Ensembl:ENSG00000122477|HPRD:17501|Vega:OTTHUMG00000010839 1 1p21.2 leucine rich repeat containing 39 protein-coding LRRC39 leucine rich repeat containing 39 O densin hlg|leucine-rich repeat-containing protein 39 20121230 -9606 127534 GJB4 - CX30.3|EKV HGNC:4286|MIM:605425|Ensembl:ENSG00000189433|HPRD:05666|Vega:OTTHUMG00000004052 1 1p34.3 gap junction protein, beta 4, 30.3kDa protein-coding GJB4 gap junction protein, beta 4, 30.3kDa O connexin 30.3|connexin-30.3|gap junction beta-4 protein 20121230 -9606 127540 HMGB4 - dJ1007G16.5 HGNC:24954|Ensembl:ENSG00000176256|HPRD:14038|Vega:OTTHUMG00000013143 1 1p35.1 high mobility group box 4 protein-coding HMGB4 high mobility group box 4 O HMG2 like|high mobility group protein B4 20121230 -9606 127544 RNF19B - IBRDC3|NKLAM HGNC:26886|MIM:610872|Ensembl:ENSG00000116514|HPRD:13725|Vega:OTTHUMG00000004013 1 1p35.1 ring finger protein 19B protein-coding RNF19B ring finger protein 19B O E3 ubiquitin-protein ligase RNF19B|IBR domain containing 3|IBR domain-containing protein 3|natural killer lytic-associated molecule 20121230 -9606 127545 RPL18AP4 hCG_1641703 RPL18A_2_30 HGNC:36556 1 1p35.1 ribosomal protein L18a pseudogene 4 pseudo RPL18AP4 ribosomal protein L18a pseudogene 4 O - 20121230 -9606 127550 A3GALT2P RP11-415J8.2 A3GALT2|IGBS3S HGNC:30005 1 1p35.1 alpha 1,3-galactosyltransferase 2, pseudogene pseudo A3GALT2P alpha 1,3-galactosyltransferase 2, pseudogene O - 20121230 -9606 127579 DCST2 RP11-307C12.4 - HGNC:26562|Ensembl:ENSG00000163354|HPRD:08739|Vega:OTTHUMG00000037371 1 1q22 DC-STAMP domain containing 2 protein-coding DCST2 DC-STAMP domain containing 2 O DC-STAMP domain-containing protein 2 20121230 -9606 127602 DNAH14 RP11-328N1.1 C1orf67|Dnahc14|HL-18|HL18 HGNC:2945|MIM:603341|Ensembl:ENSG00000185842|Vega:OTTHUMG00000037447 1 1q42.12 dynein, axonemal, heavy chain 14 protein-coding DNAH14 dynein, axonemal, heavy chain 14 O axonemal beta dynein heavy chain 14|ciliary dynein heavy chain 14|dynein heavy chain 14, axonemal|dynein, axonemal, heavy polypeptide 14 20121230 -9606 127608 OR2AJ1 - OR2AJ1P|OR2AJ1Q HGNC:15001 1 1q44 olfactory receptor, family 2, subfamily AJ, member 1 pseudo OR2AJ1 olfactory receptor, family 2, subfamily AJ, member 1 O - 20121230 -9606 127617 OR14L1P RP11-978I15.6 OR1-35|OR1-36|OR5AV1|OR5AV1P HGNC:15023 1 1q44 olfactory receptor, family 14, subfamily L, member 1 pseudogene pseudo OR14L1P olfactory receptor, family 14, subfamily L, member 1 pseudogene O - 20121230 -9606 127623 OR2B11 RP11-978I15.1 - HGNC:31249|Ensembl:ENSG00000177535|HPRD:14937|Vega:OTTHUMG00000040572 1 1q44 olfactory receptor, family 2, subfamily B, member 11 protein-coding OR2B11 olfactory receptor, family 2, subfamily B, member 11 O novel 7 transmembrane receptor (rhodopsin family) protein|olfactory receptor 2B11 20121230 -9606 127665 ZNF648 - - HGNC:18190|Ensembl:ENSG00000179930|HPRD:18361|Vega:OTTHUMG00000037302 1 1q25.3 zinc finger protein 648 protein-coding ZNF648 zinc finger protein 648 O - 20121230 -9606 127670 TEDDM1 - EDDM9|Epdd1|HE9|RP1-223H12.2|TMEM45C HGNC:30233|Ensembl:ENSG00000203730|HPRD:13642|Vega:OTTHUMG00000037398 1 1q25.3 transmembrane epididymal protein 1 protein-coding TEDDM1 transmembrane epididymal protein 1 O epididymal protein 9|human epididymis-specific protein 9|putative membrane protein HE9|transmembrane protein 45C 20121230 -9606 127671 TEDDM1P1 - - HGNC:42447 1 1q25.3 transmembrane epididymal protein 1 pseudogene 1 pseudo TEDDM1P1 transmembrane epididymal protein 1 pseudogene 1 O - 20121230 -9606 127687 C1orf122 RP11-109P14.5 ALAESM HGNC:24789|Ensembl:ENSG00000197982|HPRD:13508|Vega:OTTHUMG00000004319 1 1p34.3 chromosome 1 open reading frame 122 protein-coding C1orf122 chromosome 1 open reading frame 122 O uncharacterized protein C1orf122 20121230 -9606 127700 OSCP1 - C1orf102|NOR1 HGNC:29971|MIM:608854|Ensembl:ENSG00000116885|HPRD:16393|Vega:OTTHUMG00000008139 1 1p34.3 organic solute carrier partner 1 protein-coding OSCP1 organic solute carrier partner 1 O hOSCP1|organic solute carrier protein 1|organic solute transport protein 1|oxidored nitro domain containing protein|oxidored-nitro domain-containing protein 1|protein OSCP1 20121230 -9606 127703 C1orf216 - - HGNC:26800|Ensembl:ENSG00000142686|HPRD:08798|Vega:OTTHUMG00000004167 1 1p34.3 chromosome 1 open reading frame 216 protein-coding C1orf216 chromosome 1 open reading frame 216 O UPF0500 protein C1orf216 20121230 -9606 127707 KLHDC7A - RP11-422P22.2 HGNC:26791|Ensembl:ENSG00000179023|HPRD:08246|Vega:OTTHUMG00000002431 1 1p36.13 kelch domain containing 7A protein-coding KLHDC7A kelch domain containing 7A O kelch domain-containing protein 7A 20121230 -9606 127731 VWA5B1 - - HGNC:26538|Ensembl:ENSG00000158816|HPRD:08732|Vega:OTTHUMG00000002835 1 1p36.12 von Willebrand factor A domain containing 5B1 protein-coding VWA5B1 von Willebrand factor A domain containing 5B1 O von Willebrand factor A domain-containing protein 5B1 20121230 -9606 127733 UBXN10 - UBXD3 HGNC:26354|Ensembl:ENSG00000162543|HPRD:18255|Vega:OTTHUMG00000002708 1 1p36.12 UBX domain protein 10 protein-coding UBXN10 UBX domain protein 10 O UBX domain containing 3|UBX domain-containing protein 10|UBX domain-containing protein 3 20121230 -9606 127795 C1orf87 - - HGNC:28547|Ensembl:ENSG00000162598|HPRD:11338|Vega:OTTHUMG00000008992 1 1p32.1 chromosome 1 open reading frame 87 protein-coding C1orf87 chromosome 1 open reading frame 87 O uncharacterized protein C1orf87 20121230 -9606 127829 ARL8A - ARL10B|GIE2 HGNC:25192|Ensembl:ENSG00000143862|HPRD:09807|Vega:OTTHUMG00000035923 1 1q32.1 ADP-ribosylation factor-like 8A protein-coding ARL8A ADP-ribosylation factor-like 8A O ADP-ribosylation factor-like 10B|ADP-ribosylation factor-like protein 8A|novel small G protein indispensable for equal chromosome segregation 2 20121230 -9606 127833 SYT2 - SytII HGNC:11510|MIM:600104|Ensembl:ENSG00000143858|HPRD:02520|Vega:OTTHUMG00000041388 1 1q32.1 synaptotagmin II protein-coding SYT2 synaptotagmin II O synaptotagmin 2|synaptotagmin-2 20121230 -9606 127841 LINC00628 - - HGNC:27008 1 1q32.1 long intergenic non-protein coding RNA 628 miscRNA LINC00628 long intergenic non-protein coding RNA 628 O - 20121230 -9606 127845 GOLT1A - CGI-141|GOT1|HMFN1187|RP11-203F10.3|YMR292W HGNC:24766|Ensembl:ENSG00000174567|HPRD:13465|Vega:OTTHUMG00000036056 1 1q32.1 golgi transport 1A protein-coding GOLT1A golgi transport 1A O hGOT1b|putative protein product of HMFN1187|vesicle transport protein GOT1A 20121230 -9606 127933 UHMK1 - KIS|KIST HGNC:19683|MIM:608849|Ensembl:ENSG00000152332|HPRD:12318|Vega:OTTHUMG00000031373 1 1q23.3 U2AF homology motif (UHM) kinase 1 protein-coding UHMK1 U2AF homology motif (UHM) kinase 1 O KIS protein kinase|kinase interacting with leukemia-associated gene (stathmin)|serine/threonine-protein kinase Kist 20121230 -9606 127943 FCRLB RP11-474I16.6 FCRL2|FCRLM2|FCRLY|FREB-2|FcRY HGNC:26431|MIM:609251|Ensembl:ENSG00000162746|HPRD:08093|Vega:OTTHUMG00000133629 1 1q23.3 Fc receptor-like B protein-coding FCRLB Fc receptor-like B O Fc receptor homolog expressed in B-cells protein 2|Fc receptor like 2|Fc receptor-like and mucin-like 2|fc receptor homolog expressed in B cells protein 2|fc receptor-like and mucin-like protein 2|fc receptor-like protein 2|fc receptor-related protein Y 20121230 -9606 128025 WDR64 RP11-543A11.1 - HGNC:26570|Ensembl:ENSG00000162843|HPRD:13412 1 1q43 WD repeat domain 64 protein-coding WDR64 WD repeat domain 64 O WD repeat-containing protein 64 20121230 -9606 128061 C1orf131 RP4-609B14.1 - HGNC:25332|Ensembl:ENSG00000143633|HPRD:13204|Vega:OTTHUMG00000038023 1 1q42.2 chromosome 1 open reading frame 131 protein-coding C1orf131 chromosome 1 open reading frame 131 O uncharacterized protein C1orf131 20121230 -9606 128077 LIX1L - - HGNC:28715|Ensembl:ENSG00000152022|HPRD:14653|Vega:OTTHUMG00000013741 1 1q21.1 Lix1 homolog (mouse)-like protein-coding LIX1L Lix1 homolog (mouse)-like O LIX1-like protein 20121230 -9606 128102 HSD3BP4 - - HGNC:5222 1 1p13.1 hydroxy-delta-5-steroid dehydrogenase, 3 beta, pseudogene 4 pseudo HSD3BP4 hydroxy-delta-5-steroid dehydrogenase, 3 beta, pseudogene 4 O - 20121230 -9606 128136 LOC128136 - - - 1 1q43 3-hydroxy-3-methylglutaryl-Coenzyme A synthase 1 (soluble) pseudogene pseudo - - - - 20121230 -9606 128153 SPATA17 - IQCH|MSRG-11|MSRG11|RP11-144C20.1 HGNC:25184|MIM:611032|Ensembl:ENSG00000162814|HPRD:14039|Vega:OTTHUMG00000037875 1 1q41 spermatogenesis associated 17 protein-coding SPATA17 spermatogenesis associated 17 O IQ motif containing H|spermatogenesis-associated protein 17|spermatogenesis-related protein 11 20121230 -9606 128178 EDARADD RP4-670F13.1 ECTD11A|ECTD11B|ED3|EDA3 HGNC:14341|MIM:606603|Ensembl:ENSG00000186197|HPRD:05965|Vega:OTTHUMG00000039954 1 1q42.3 EDAR-associated death domain protein-coding EDARADD EDAR-associated death domain O EDAR-associated death domain protein|crinkled homolog|ectodysplasia A receptor associated death domain|ectodysplasin A receptor associated adapter protein|ectodysplasin-A receptor-associated adapter protein 20121230 -9606 128192 LOC128192 - - - 1 1p34.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 128209 KLF17 RP4-675G8.1 ZNF393|Zfp393 HGNC:18830|MIM:609602|Ensembl:ENSG00000171872|HPRD:08272|Vega:OTTHUMG00000009664 1 1p34.1 Kruppel-like factor 17 protein-coding KLF17 Kruppel-like factor 17 O Krueppel-like factor 17|novel zinc-finger protein|zinc finger protein 393 20121230 -9606 128218 TMEM125 - - HGNC:28275|Ensembl:ENSG00000179178|HPRD:14457|Vega:OTTHUMG00000007288 1 1p34.2 transmembrane protein 125 protein-coding TMEM125 transmembrane protein 125 O - 20121230 -9606 128229 TSACC - C1orf182|RP11-443G18.5|SIP|SSTK-IP HGNC:30636|Ensembl:ENSG00000163467|HPRD:10252|Vega:OTTHUMG00000024060 1 1q22 TSSK6 activating co-chaperone protein-coding TSACC TSSK6 activating co-chaperone O SSTK-interacting protein (SSTK-IP)|TSSK6-activating co-chaperone protein 20121230 -9606 128239 IQGAP3 - - HGNC:20669|Ensembl:ENSG00000183856|HPRD:11051|Vega:OTTHUMG00000033114 1 1q21.3 IQ motif containing GTPase activating protein 3 protein-coding IQGAP3 IQ motif containing GTPase activating protein 3 O ras GTPase-activating-like protein IQGAP3 20121230 -9606 128240 APOA1BP RP11-284F21.3 AIBP|YJEFN1 HGNC:18453|MIM:608862|Ensembl:ENSG00000163382|HPRD:16397|Vega:OTTHUMG00000033206 1 1q21 apolipoprotein A-I binding protein protein-coding APOA1BP apolipoprotein A-I binding protein O AI-BP|NAD(P)H-hydrate epimerase|NAD(P)HX epimerase|apoA-I binding protein|apolipoprotein A-I-binding protein|yjeF N-terminal domain-containing protein 1|yjeF_N1 20121230 -9606 128272 ARHGEF19 RP4-733M16.1 WGEF HGNC:26604|MIM:612496|Ensembl:ENSG00000142632|HPRD:10659|Vega:OTTHUMG00000002219 1 1p36.13 Rho guanine nucleotide exchange factor (GEF) 19 protein-coding ARHGEF19 Rho guanine nucleotide exchange factor (GEF) 19 O ephexin-2|rho guanine nucleotide exchange factor 19|weakly similar to Rho GEF 20121230 -9606 128308 MRPL55 UNQ5835/PRO19675 AAVG5835|L55nt|MRP-L55|PRO19675 HGNC:16686|MIM:611859|Ensembl:ENSG00000162910|HPRD:14773|Vega:OTTHUMG00000037965 1 1q42.13 mitochondrial ribosomal protein L55 protein-coding MRPL55 mitochondrial ribosomal protein L55 O 39S ribosomal protein L55, mitochondrial|L55mt 20121230 -9606 128312 HIST3H2BB - - HGNC:20514|Ensembl:ENSG00000196890|HPRD:13661|Vega:OTTHUMG00000040045 1 1q42.13 histone cluster 3, H2bb protein-coding HIST3H2BB histone cluster 3, H2bb O H2B type 12|histone 3, H2bb|histone H2B type 3-B 20121230 -9606 128322 LOC128322 - - - 1 1p13.2 nuclear transport factor 2-like protein-coding - - - - 20121209 -9606 128338 DRAM2 PSEC0031 PRO180|RP5-1180E21.1|TMEM77|WWFQ154 HGNC:28769|MIM:613360|Ensembl:ENSG00000156171|HPRD:14685|Vega:OTTHUMG00000011911 1 1p13.3 DNA-damage regulated autophagy modulator 2 protein-coding DRAM2 DNA-damage regulated autophagy modulator 2 O DNA damage-regulated autophagy modulator protein 2|damage regulated autophagy modulator 2|transmembrane protein 77 20121230 -9606 128344 PIFO RP5-1125M8.4 C1orf88|pitchfork HGNC:27009|MIM:614234|Ensembl:ENSG00000173947|HPRD:14040|Vega:OTTHUMG00000011168 1 1p13.2 primary cilia formation protein-coding PIFO primary cilia formation O protein pitchfork 20121230 -9606 128346 C1orf162 - - HGNC:28344|Ensembl:ENSG00000143110|HPRD:14495|Vega:OTTHUMG00000011750 1 1p13.2 chromosome 1 open reading frame 162 protein-coding C1orf162 chromosome 1 open reading frame 162 O transmembrane protein C1orf162 20121230 -9606 128360 OR10T2 - OR1-3 HGNC:14816|Ensembl:ENSG00000186306|HPRD:14896|Vega:OTTHUMG00000017521 1 1q23.1 olfactory receptor, family 10, subfamily T, member 2 protein-coding OR10T2 olfactory receptor, family 10, subfamily T, member 2 O olfactory receptor 10T2|olfactory receptor OR1-3 20121230 -9606 128366 OR6P1 RP11-317F9.1 - HGNC:15036|Ensembl:ENSG00000186440|Vega:OTTHUMG00000019633 1 1q23.1 olfactory receptor, family 6, subfamily P, member 1 protein-coding OR6P1 olfactory receptor, family 6, subfamily P, member 1 O olfactory receptor 6P1|olfactory receptor OR1-12|seven transmembrane helix receptor 20121230 -9606 128367 OR10X1 - OR1-13|OR1-14|OR10X1P HGNC:14995|Ensembl:ENSG00000186400|HPRD:14897|Vega:OTTHUMG00000019635 1 1q23.1 olfactory receptor, family 10, subfamily X, member 1 protein-coding OR10X1 olfactory receptor, family 10, subfamily X, member 1 O olfactory receptor 10X1|olfactory receptor OR1-13 pseudogene|olfactory receptor OR1-14|olfactory receptor, family 10, subfamily X, member 1 pseudogene 20121230 -9606 128368 OR10Z1 - OR1-15 HGNC:14996|Ensembl:ENSG00000198967|HPRD:14898|Vega:OTTHUMG00000019637 1 1q23.1 olfactory receptor, family 10, subfamily Z, member 1 protein-coding OR10Z1 olfactory receptor, family 10, subfamily Z, member 1 O olfactory receptor 10Z1|olfactory receptor OR1-15 20121230 -9606 128370 OR6K4P hCG_39951 - HGNC:15031 1 1q23.1 olfactory receptor, family 6, subfamily K, member 4 pseudogene pseudo OR6K4P olfactory receptor, family 6, subfamily K, member 4 pseudogene O - 20121230 -9606 128371 OR6K6 - OR1-21 HGNC:15033|Ensembl:ENSG00000180433|HPRD:17778|Vega:OTTHUMG00000022772 1 1q23.1 olfactory receptor, family 6, subfamily K, member 6 protein-coding OR6K6 olfactory receptor, family 6, subfamily K, member 6 O olfactory receptor 6K6|olfactory receptor OR1-21 20121230 -9606 128372 OR6N1 - OR1-22 HGNC:15034|Ensembl:ENSG00000197403|HPRD:15066|Vega:OTTHUMG00000022774 1 1q23.1 olfactory receptor, family 6, subfamily N, member 1 protein-coding OR6N1 olfactory receptor, family 6, subfamily N, member 1 O olfactory receptor 6N1|olfactory receptor OR1-22 20121230 -9606 128387 TATDN3 - - HGNC:27010|Ensembl:ENSG00000203705|Vega:OTTHUMG00000036805 1 1q32.3 TatD DNase domain containing 3 protein-coding TATDN3 TatD DNase domain containing 3 O putative deoxyribonuclease TATDN3 20121230 -9606 128408 BHLHE23 - BETA4|BHLHB4|bA305P22.3 HGNC:16093|MIM:609331|Ensembl:ENSG00000125533|HPRD:16550|Vega:OTTHUMG00000032948 20 20q13.33 basic helix-loop-helix family, member e23 protein-coding BHLHE23 basic helix-loop-helix family, member e23 O basic helix-loop-helix domain containing, class B, 4|class B basic helix-loop-helix protein 4|class E basic helix-loop-helix protein 23 20121230 -9606 128414 NKAIN4 RP11-261N11.9 C20orf58|FAM77A|bA261N11.2 HGNC:16191|MIM:612873|Ensembl:ENSG00000101198|HPRD:12776|Vega:OTTHUMG00000032959 20 20q13.33 Na+/K+ transporting ATPase interacting 4 protein-coding NKAIN4 Na+/K+ transporting ATPase interacting 4 O Na(+)/K(+)-transporting ATPase subunit beta-1-interacting protein 4|sodium/potassium-transporting ATPase subunit beta-1-interacting protein 4 20121230 -9606 128434 VSTM2L RP5-1118M15.2 C20orf102|dJ1118M15.2 HGNC:16096|Ensembl:ENSG00000132821|HPRD:12735|Vega:OTTHUMG00000032430 20 20q11.23 V-set and transmembrane domain containing 2 like protein-coding VSTM2L V-set and transmembrane domain containing 2 like O V-set and transmembrane domain-containing protein 2-like protein 20121230 -9606 128439 SNHG11 - C20orf198|LINC00101|NCRNA00101 HGNC:25046|HPRD:11814 20 20q11.23 small nucleolar RNA host gene 11 (non-protein coding) miscRNA SNHG11 small nucleolar RNA host gene 11 (non-protein coding) O - 20121230 -9606 128467 RPL12P11 - RPL12L2|RPL12_22_1703|dJ661I20.1 HGNC:15835 20 20q12 ribosomal protein L12 pseudogene 11 pseudo RPL12P11 ribosomal protein L12 pseudogene 11 O - 20121230 -9606 128481 RPL27AP - dJ1028D15.2 HGNC:16250 20 20q13.12 ribosomal protein L27a pseudogene pseudo RPL27AP ribosomal protein L27a pseudogene O - 20121230 -9606 128486 FITM2 - C20orf142|Fit2|dJ881L22.2 HGNC:16135|MIM:612029|Ensembl:ENSG00000197296|Vega:OTTHUMG00000032522 20 20q13.12 fat storage-inducing transmembrane protein 2 protein-coding FITM2 fat storage-inducing transmembrane protein 2 O fat inducing transcript 2|fat-inducing protein 2|fat-inducing transcript 2 20121230 -9606 128488 WFDC12 UNQ544/PRO844 C20orf122|SWAM2|WAP2|dJ211D12.4 HGNC:16115|MIM:609872|Ensembl:ENSG00000168703|HPRD:15674|Vega:OTTHUMG00000046412 20 20q13.12 WAP four-disulfide core domain 12 protein-coding WFDC12 WAP four-disulfide core domain 12 O WAP four-disulfide core domain protein 12|protease inhibitor WAP2|putative protease inhibitor WAP12|single WAP motif protein 2|whey acidic protein 2 20121230 -9606 128497 SPATA25 - C20orf165|TSG23|dJ337O18.8 HGNC:16158|Ensembl:ENSG00000149634|HPRD:12754|Vega:OTTHUMG00000032628 20 20q13.12 spermatogenesis associated 25 protein-coding SPATA25 spermatogenesis associated 25 O spermatogenesis-associated protein 25|testis-specific gene 23 protein 20121230 -9606 128500 RPL13P2 - RPL13P3|RPL13_7_1707|dJ599F21.2 HGNC:16342 20 20q13.12 ribosomal protein L13 pseudogene 2 pseudo RPL13P2 ribosomal protein L13 pseudogene 2 O - 20121230 -9606 128506 OCSTAMP RP1-257E24.2 C20orf123|OC-STAMP|dJ257E24.3 HGNC:16116|Ensembl:ENSG00000149635|Vega:OTTHUMG00000032652 20 20q13.12 osteoclast stimulatory transmembrane protein protein-coding OCSTAMP osteoclast stimulatory transmembrane protein O transmembrane protein C20orf123 20121230 -9606 128553 TSHZ2 RP5-823G15.3 C20orf17|OVC10-2|TSH2|ZABC2|ZNF218 HGNC:13010|MIM:614118|Ensembl:ENSG00000182463|HPRD:10730|Vega:OTTHUMG00000033058 20 20q13.2 teashirt zinc finger homeobox 2 protein-coding TSHZ2 teashirt zinc finger homeobox 2 O cell growth-inhibiting protein 7|ovarian cancer-related protein 10-2|serologically defined colon cancer antigen 33 like|teashirt family zinc finger 2|teashirt homolog 2|zinc finger protein 218 20121230 -9606 128580 RPS4XP3 - RPS4L|RPS4P3|dJ843L14.2 HGNC:16251 20 20q13.31 ribosomal protein S4X pseudogene 3 pseudo RPS4XP3 ribosomal protein S4X pseudogene 3 O - 20121230 -9606 128602 C20orf85 - LLC1|bA196N14.1 HGNC:16216|Ensembl:ENSG00000124237|HPRD:12787|Vega:OTTHUMG00000032836 20 20q13.32 chromosome 20 open reading frame 85 protein-coding C20orf85 chromosome 20 open reading frame 85 O low in lung cancer 1|uncharacterized protein C20orf85 20121230 -9606 128609 MRPS16P2 - MRPS16P|bA379F14.1 HGNC:16541 20 20q13.32 mitochondrial ribosomal protein S16 pseudogene 2 pseudo MRPS16P2 mitochondrial ribosomal protein S16 pseudogene 2 O - 20121230 -9606 128611 ZNF831 - C20orf174|dJ492J12.1 HGNC:16167|Ensembl:ENSG00000124203|Vega:OTTHUMG00000032864 20 20q13.32 zinc finger protein 831 protein-coding ZNF831 zinc finger protein 831 O - 20121230 -9606 128615 PIEZO1P1 - C20orf83|FAM38CP|bA164D18.1 HGNC:16214 20 20q13.32 piezo-type mechanosensitive ion channel component 1 pseudogene 1 pseudo PIEZO1P1 piezo-type mechanosensitive ion channel component 1 pseudogene 1 O - 20121230 -9606 128637 TBC1D20 RP5-852M4.5 C20orf140 HGNC:16133|MIM:611663|Ensembl:ENSG00000125875|HPRD:15472|Vega:OTTHUMG00000031637 20 20p13 TBC1 domain family, member 20 protein-coding TBC1D20 TBC1 domain family, member 20 O TBC1 domain family member 20 20121230 -9606 128646 SIRPD RP4-576H24.3 PTPNS1L2|dJ576H24.4 HGNC:16248|Ensembl:ENSG00000125900|HPRD:17931|Vega:OTTHUMG00000031674 20 20p13 signal-regulatory protein delta protein-coding SIRPD signal-regulatory protein delta O SIRP-delta|protein tyrosine phosphatase non-receptor type substrate 1-like 2|protein tyrosine phosphatase, non-receptor type substrate 1-like 2 20121230 -9606 128653 C20orf141 RP5-860F19.6 dJ860F19.4 HGNC:16134|Ensembl:ENSG00000258713|HPRD:12748|Vega:OTTHUMG00000031707 20 20p13 chromosome 20 open reading frame 141 protein-coding C20orf141 chromosome 20 open reading frame 141 O uncharacterized protein C20orf141 20121230 -9606 128668 RPL7AP12 - RPL7AL2|dJ189G13.1 HGNC:16562 20 20p13 ribosomal protein L7a pseudogene 12 pseudo RPL7AP12 ribosomal protein L7a pseudogene 12 O - 20121230 -9606 128674 PROKR2 - GPR73L1|GPR73b|GPRg2|HH3|KAL3|PKR2|dJ680N4.3 HGNC:15836|MIM:607123|Ensembl:ENSG00000101292|HPRD:08453|Vega:OTTHUMG00000031800 20 20p12.3 prokineticin receptor 2 protein-coding PROKR2 prokineticin receptor 2 O G protein-coupled receptor 73-like 1|PK-R2 20121230 -9606 128676 RPS18P1 - RPS18_9_1682|dJ1022P6.1 HGNC:16550 20 20p12.3 ribosomal protein S18 pseudogene 1 pseudo RPS18P1 ribosomal protein S18 pseudogene 1 O - 20121230 -9606 128709 RPL23AP6 - RPL23A_36_1683|dJ1068F16.1 HGNC:16555 20 20p12.2 ribosomal protein L23a pseudogene 6 pseudo RPL23AP6 ribosomal protein L23a pseudogene 6 O - 20121230 -9606 128710 SLX4IP RP5-1099D15.1 C20orf94|bA204H22.1|bA254M13.1|dJ1099D15.3 HGNC:16225|Ensembl:ENSG00000149346|HPRD:12516|Vega:OTTHUMG00000031873 20 20p12.2 SLX4 interacting protein protein-coding SLX4IP SLX4 interacting protein O UPF0492 protein C20orf94 20121230 -9606 128718 RPS11P1 - RPS11_3_1684|dJ1060K6.1 HGNC:16553 20 20p12.2 ribosomal protein S11 pseudogene 1 pseudo RPS11P1 ribosomal protein S11 pseudogene 1 O - 20121230 -9606 128745 RPLP0P1 - dJ777L9.2 HGNC:16585 20 20p12.1 ribosomal protein, large, P0 pseudogene 1 pseudo RPLP0P1 ribosomal protein, large, P0 pseudogene 1 O - 20121230 -9606 128748 RPL7AP13 - RPL7AL3|dJ348M17.1 HGNC:16565 20 20p12.1 ribosomal protein L7a pseudogene 13 pseudo RPL7AP13 ribosomal protein L7a pseudogene 13 O - 20121230 -9606 128756 RPL15P1 - RPL15_9_1687|dJ726N1.3 HGNC:16583 20 20p11.23 ribosomal protein L15 pseudogene 1 pseudo RPL15P1 ribosomal protein L15 pseudogene 1 O - 20121230 -9606 128760 RPL21P3 - bA189K21.4 HGNC:16533 20 20p11.23 ribosomal protein L21 pseudogene 3 pseudo RPL21P3 ribosomal protein L21 pseudogene 3 O - 20121230 -9606 128770 EIF4E2P1 RP5-1049G11.3 EIF4EL4|dJ1049G11.3 HGNC:16237 20 20p11.23 eukaryotic translation initiation factor 4E family member 2 pseudogene 1 pseudo EIF4E2P1 eukaryotic translation initiation factor 4E family member 2 pseudogene 1 O - 20121230 -9606 128774 MRPS11P1 - dJ746H2.1 HGNC:16584 20 20p11.23 mitochondrial ribosomal protein S11 pseudogene 1 pseudo MRPS11P1 mitochondrial ribosomal protein S11 pseudogene 1 O - 20121230 -9606 128790 SLC25A6P1 - SLC25A5L|dJ1065O2.2 HGNC:16554 20 20p11.22 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6, pseudogene 1 pseudo SLC25A6P1 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6, pseudogene 1 O - 20121230 -9606 128817 CSTL1 - CTES1|RCET11|dJ322G13.4 HGNC:15958|Ensembl:ENSG00000125823|HPRD:16770|Vega:OTTHUMG00000032068 20 20p11.21 cystatin-like 1 protein-coding CSTL1 cystatin-like 1 O - 20121230 -9606 128820 CST9LP1 - CTES7C HGNC:39552 20 20p11.21 cystatin 9-like pseudogene 1 pseudo CST9LP1 cystatin 9-like pseudogene 1 O - 20121230 -9606 128821 CST9L UNQ1835/PRO3543 CTES7B|bA218C14.1 HGNC:16233|Ensembl:ENSG00000101435|HPRD:16769|Vega:OTTHUMG00000032073 20 20p11.21 cystatin 9-like protein-coding CST9L cystatin 9-like O cystatin-9-like|testatin 20121230 -9606 128822 CST9 - CLM|CTES7A HGNC:13261|Ensembl:ENSG00000173335|HPRD:16768|Vega:OTTHUMG00000032076 20 20p11.21 cystatin 9 (testatin) protein-coding CST9 cystatin 9 (testatin) O cystatin-9|cystatin-like molecule 20121230 -9606 128826 C20orf166 RP3-353C17.2 dJ353C17.1 HGNC:16159|Ensembl:ENSG00000174407|HPRD:12755|Vega:OTTHUMG00000048000 20 20q13.33 chromosome 20 open reading frame 166 protein-coding C20orf166 chromosome 20 open reading frame 166 O uncharacterized protein C20orf166 20121230 -9606 128848 DKKL1P1 RP5-854E16.1 DKKL2|dJ854E16.1 HGNC:16593 20 20q11.21 dickkopf-like 1 pseudogene 1 pseudo DKKL1P1 dickkopf-like 1 pseudogene 1 O - 20121230 -9606 128853 DUSP15 RP11-243J16.11-006 VHY HGNC:16236|Ensembl:ENSG00000149599|HPRD:13252|Vega:OTTHUMG00000032182 20 20q11.21 dual specificity phosphatase 15 protein-coding DUSP15 dual specificity phosphatase 15 O VH1-related member Y|dual specificity phosphatase-like 15|dual specificity protein phosphatase 15|vaccinia virus VH1-related dual-specific protein phosphatase Y 20121230 -9606 128854 TSPY26P - TSPYL3|bA392M18.1 HGNC:16256|HPRD:18235 20 20q11.21 testis specific protein, Y-linked 26, pseudogene pseudo TSPY26P testis specific protein, Y-linked 26, pseudogene O - 20121230 -9606 128859 BPIFB6 - BPIL3|LPLUNC6 HGNC:16504|MIM:614110|Ensembl:ENSG00000167104|HPRD:16561|Vega:OTTHUMG00000032238 20 20q11.21 BPI fold containing family B, member 6 protein-coding BPIFB6 BPI fold containing family B, member 6 O BPI fold-containing family B member 6|bactericidal/permeability-increasing protein-like 3 20121230 -9606 128861 BPIFA3 RP11-49G10.9 C20orf71|SPLUNC3 HGNC:16204|Ensembl:ENSG00000131059|HPRD:12782|Vega:OTTHUMG00000032245 20 20q11.21 BPI fold containing family A, member 3 protein-coding BPIFA3 BPI fold containing family A, member 3 O BPI fold-containing family A member 3|short long palate, lung and nasal epithelium carcinoma associated 3|short palate, lung and nasal epithelium carcinoma-associated protein 3 20121230 -9606 128862 RPL12P3 - RPL12_17_1694|bA49G10.7 HGNC:16335 20 20q11.21 ribosomal protein L12 pseudogene 3 pseudo RPL12P3 ribosomal protein L12 pseudogene 3 O - 20121230 -9606 128864 C20orf144 - dJ63M2.6 HGNC:16137|Ensembl:ENSG00000149609|HPRD:12749|Vega:OTTHUMG00000032263 20 20q11.22 chromosome 20 open reading frame 144 protein-coding C20orf144 chromosome 20 open reading frame 144 O bcl-2-like protein from testis|bclt|uncharacterized protein C20orf144 20121230 -9606 128866 CHMP4B - C20orf178|CHMP4A|CTPP3|SNF7|SNF7-2|Shax1|VPS32B|Vps32-2|dJ553F4.4 HGNC:16171|MIM:610897|Ensembl:ENSG00000101421|HPRD:16642|Vega:OTTHUMG00000032272 20 20q11.22 charged multivesicular body protein 4B protein-coding CHMP4B charged multivesicular body protein 4B O SNF7 homolog associated with Alix 1|Snf7 homologue associated with Alix 1|charged multivesicular body protein 4b|chromatin modifying protein 4B|chromatin-modifying protein 4b|hSnf7-2|hVps32-2|vacuolar protein sorting-associated protein 32-2|vacuolar protein-sorting-associated protein 32-2 20121230 -9606 128869 PIGU RP11-346K17.2 CDC91L1|GAB1 HGNC:15791|MIM:608528|Ensembl:ENSG00000101464|HPRD:12250|Vega:OTTHUMG00000032304 20 20q11.22 phosphatidylinositol glycan anchor biosynthesis, class U protein-coding PIGU phosphatidylinositol glycan anchor biosynthesis, class U O CDC91 (cell division cycle 91, S. cerevisiae, homolog)-like 1|GPI transamidase component PIG-U|GPI transamidase subunit|cell division cycle 91-like 1 protein|cell division cycle protein 91-like 1|phosphatidylinositol glycan anchor biosynthesis class U protein|protein CDC91-like 1 20121230 -9606 128872 HMGB3P1 - HMG4L|HMGB3L1|dJ18C9.3 HGNC:16240 20 20q11.22 high mobility group box 3 pseudogene 1 pseudo HMGB3P1 high mobility group box 3 pseudogene 1 O - 20121230 -9606 128876 FAM83C - C20orf128|dJ614O4.7 HGNC:16121|Ensembl:ENSG00000125998|HPRD:12743|Vega:OTTHUMG00000032332 20 20q11.22 family with sequence similarity 83, member C protein-coding FAM83C family with sequence similarity 83, member C O protein FAM83C 20121230 -9606 128879 HMGB3P2 - HMG4L2|HMGB3L2|dJ550H1.1 HGNC:16574 20 20q11.23 high mobility group box 3 pseudogene 2 pseudo HMGB3P2 high mobility group box 3 pseudogene 2 O - 20121230 -9606 128954 GAB4 - - HGNC:18325 22 22q11.1 GRB2-associated binding protein family, member 4 protein-coding GAB4 GRB2-associated binding protein family, member 4 O GRB2-associated binder 2-like protein|GRB2-associated binder 4|GRB2-associated-binding protein 4|growth factor receptor bound protein 2-associated protein 4 20121230 -9606 128977 C22orf39 - - HGNC:27012|Ensembl:ENSG00000242259|HPRD:14041|Vega:OTTHUMG00000150137 22 22q11.21 chromosome 22 open reading frame 39 protein-coding C22orf39 chromosome 22 open reading frame 39 O UPF0545 protein C22orf39 20121230 -9606 128989 TANGO2 - C22orf25 HGNC:25439|Ensembl:ENSG00000183597|HPRD:13229|Vega:OTTHUMG00000150510 22 22q11.21 transport and golgi organization 2 homolog (Drosophila) protein-coding TANGO2 transport and golgi organization 2 homolog (Drosophila) O uncharacterized protein C22orf25 20121230 -9606 128997 SLC9A3P2 - - HGNC:19325 22 22q11.21 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 pseudogene 2 pseudo SLC9A3P2 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 pseudogene 2 O - 20121230 -9606 129025 ZNF280A - 3'OY11.1|SUHW1|ZNF280|ZNF636 HGNC:18597|Ensembl:ENSG00000169548|HPRD:18129|Vega:OTTHUMG00000030545 22 22q11.22 zinc finger protein 280A protein-coding ZNF280A zinc finger protein 280A O suppressor of hairy wing homolog 1|zinc finger protein 280|zinc finger protein 636 20121230 -9606 129026 LOC129026 - - - 22 22q11.22 gamma-glutamyltransferase-like activity 1 pseudogene pseudo - - - - 20121230 -9606 129049 SGSM1 RP5-930L11.1 RUTBC2 HGNC:29410|MIM:611417|Ensembl:ENSG00000167037|Vega:OTTHUMG00000150837 22 22q11.23 small G protein signaling modulator 1 protein-coding SGSM1 small G protein signaling modulator 1 O RUN and TBC1 domain containing 2|RUN and TBC1 domain-containing protein 2|small G protein signaling modulator 1 protein 20121230 -9606 129080 EMID1 CTA-984G1.2 EMI5|EMU1 HGNC:18036|MIM:608926|Ensembl:ENSG00000186998|HPRD:09936|Vega:OTTHUMG00000151013 22 22q12.2 EMI domain containing 1 protein-coding EMID1 EMI domain containing 1 O EMI domain-containing protein 1|emilin and multimerin domain-containing protein 1 20121230 -9606 129099 CPSF1P1 - dJ90G24.5 HGNC:19251 22 22q12.3 cleavage and polyadenylation specific factor 1, 160kDa pseudogene 1 pseudo CPSF1P1 cleavage and polyadenylation specific factor 1, 160kDa pseudogene 1 O - 20121230 -9606 129138 ANKRD54 - LIAR HGNC:25185|MIM:613383|Ensembl:ENSG00000100124|HPRD:14042|Vega:OTTHUMG00000150663 22 22q13.1 ankyrin repeat domain 54 protein-coding ANKRD54 ankyrin repeat domain 54 O ankyrin repeat domain-containing protein 54|lyn-interacting ankyrin repeat protein 20121230 -9606 129285 PPP1R21 - CCDC128|KLRAQ1 HGNC:30595|Ensembl:ENSG00000162869|HPRD:17294|Vega:OTTHUMG00000129167 2 2p16.3 protein phosphatase 1, regulatory subunit 21 protein-coding PPP1R21 protein phosphatase 1, regulatory subunit 21 O KLRAQ motif containing 1|KLRAQ motif-containing protein 1|coiled-coil domain containing 128|coiled-coil domain-containing protein 128|protein phosphatase 1 regulatory subunit 21 20121230 -9606 129293 TRABD2A - C2orf89|TIKI1 HGNC:27013|MIM:614912|Ensembl:ENSG00000186854|Vega:OTTHUMG00000152922 2 2p11.2 TraB domain containing 2A protein-coding TRABD2A TraB domain containing 2A O TRAB domain-containing protein 2A|UPF0632 protein C2orf89|metalloprotease TIKI1 20121230 -9606 129303 TMEM150A - TM6P1|TMEM150 HGNC:24677|Ensembl:ENSG00000168890|HPRD:17006|Vega:OTTHUMG00000130168 2 2p11.2 transmembrane protein 150A protein-coding TMEM150A transmembrane protein 150A O fasting-inducible integral membrane protein TM6P1|transmembrane protein 150 20121230 -9606 129401 NUP35 - MP44|NP44|NUP53 HGNC:29797|MIM:608140|Ensembl:ENSG00000163002|HPRD:10486|Vega:OTTHUMG00000132621 2 2q32.1 nucleoporin 35kDa protein-coding NUP35 nucleoporin 35kDa O 35 kDa nucleoporin|MP-44|mitotic phosphoprotein 44|nuclear pore complex protein Nup53|nucleoporin NUP53|nucleoporin Nup35 20121230 -9606 129402 LIN28AP1 - - HGNC:38055 2 2q32.1 lin-28 homolog A (C. elegans) pseudogene 1 pseudo LIN28AP1 lin-28 homolog A (C. elegans) pseudogene 1 O - 20121230 -9606 129446 XIRP2 - CMYA3 HGNC:14303|MIM:609778|Ensembl:ENSG00000163092|HPRD:10267|Vega:OTTHUMG00000154027 2 2q24.3 xin actin-binding repeat containing 2 protein-coding XIRP2 xin actin-binding repeat containing 2 O beta-xin|cardiomyopathy associated 3|cardiomyopathy-associated protein 3|myomaxin|xeplin|xin actin-binding repeat-containing protein 2|xin repeat protein 2 20121230 -9606 129450 TYW5 - C2orf60|hTYW5 HGNC:26754|Ensembl:ENSG00000162971|HPRD:08232|Vega:OTTHUMG00000132770 2 2q33.1 tRNA-yW synthesizing protein 5 protein-coding TYW5 tRNA-yW synthesizing protein 5 O jmjC domain-containing protein C2orf60|tRNA wybutosine-synthesizing protein 5|tRNA yW-synthesizing enzyme 5 20121230 -9606 129521 NMS - - HGNC:32203|Ensembl:ENSG00000204640|HPRD:17638|Vega:OTTHUMG00000153142 2 2q11.2 neuromedin S protein-coding NMS neuromedin S O neuromedin-S 20121230 -9606 129522 LOC129522 - - - 2 2q11.2 ralA binding protein 1 pseudogene pseudo - - - - 20121230 -9606 129530 LYG1 UNQ1939/PRO4422 SALW1939 HGNC:27014|Ensembl:ENSG00000144214|HPRD:14043|Vega:OTTHUMG00000130639 2 2q11.2 lysozyme G-like 1 protein-coding LYG1 lysozyme G-like 1 O lysozyme g-like protein 1 20121230 -9606 129531 MITD1 - - HGNC:25207|Ensembl:ENSG00000158411|HPRD:14044|Vega:OTTHUMG00000130638 2 2q11.2 MIT, microtubule interacting and transport, domain containing 1 protein-coding MITD1 MIT, microtubule interacting and transport, domain containing 1 O MIT domain-containing protein 1 20121230 -9606 129560 LOC129560 - - - 2 2q22.1 adenosylhomocysteinase pseudogene pseudo - - - - 20121230 -9606 129563 DIS3L2 - FAM6A|PRLMNS HGNC:28648|MIM:614184|Ensembl:ENSG00000144535|HPRD:14619|Vega:OTTHUMG00000153385 2 2q37.1 DIS3 mitotic control homolog (S. cerevisiae)-like 2 protein-coding DIS3L2 DIS3 mitotic control homolog (S. cerevisiae)-like 2 O DIS3-like exonuclease 2|family with sequence similarity 6, member A 20121230 -9606 129607 CMPK2 - TMPK2|TYKi|UMP-CMPK2 HGNC:27015|MIM:611787|Ensembl:ENSG00000134326|HPRD:11233|Vega:OTTHUMG00000151629 2 2p25.2 cytidine monophosphate (UMP-CMP) kinase 2, mitochondrial protein-coding CMPK2 cytidine monophosphate (UMP-CMP) kinase 2, mitochondrial O UMP-CMP kinase 2, mitochondrial|cytidylate kinase 2|mitochondrial UMP-CMP kinase|thymidine monophosphate kinase 2|thymidylate kinase family LPS-inducible member 20121230 -9606 129642 MBOAT2 - LPCAT4|OACT2 HGNC:25193|MIM:611949|Ensembl:ENSG00000143797|HPRD:11410|Vega:OTTHUMG00000090363 2 2p25.1 membrane bound O-acyltransferase domain containing 2 protein-coding MBOAT2 membrane bound O-acyltransferase domain containing 2 O 1-acylglycerophosphate O-acyltransferase|1-acylglycerophosphoethanolamine O-acyltransferase|LPAAT|LPEAT|LPLAT 2|O-acyltransferase (membrane bound) domain containing 2|O-acyltransferase domain-containing protein 2|lyso-PA acyltransferase|lyso-PE acyltransferase|lysophosphatidic acid acyltransferase|lysophosphatidylethanolamine acyltransferase|lysophospholipid acyltransferase 2|membrane-bound O-acyltransferase domain-containing protein 2 20121230 -9606 129656 LOC129656 - - - 2 2p16.3 CREB regulated transcription coactivator 1 pseudogene pseudo - - - - 20121230 -9606 129684 CNTNAP5 - caspr5 HGNC:18748|MIM:610519|Ensembl:ENSG00000155052|HPRD:16732|Vega:OTTHUMG00000153356 2 2q14.3 contactin associated protein-like 5 protein-coding CNTNAP5 contactin associated protein-like 5 O cell recognition molecule Caspr5|contactin-associated protein-like 5 20121230 -9606 129685 TAF8 - 43|II|TAF|TAFII-43|TAFII43|TBN HGNC:17300|MIM:609514|Ensembl:ENSG00000137413|HPRD:18167|Vega:OTTHUMG00000014692 6 6p21.1 TAF8 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 43kDa protein-coding TAF8 TAF8 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 43kDa O TAF(II)43|TATA box binding protein (TBP)-associated factor, RNA polymerase II, A, 45/50kDa|TBP-associated factor 43 kDa|TBP-associated factor 8|TBP-associated factor TAFII43|TBP-associated factor, RNA polymerase II, 43 kD|hTAFII43|protein taube nuss|taube nuss homolog|transcription initiation factor TFIID 43 kDa subunit|transcription initiation factor TFIID subunit 8 20121230 -9606 129787 TMEM18 - - HGNC:25257|MIM:613220|Ensembl:ENSG00000151353|HPRD:15529|Vega:OTTHUMG00000151381 2 2p25.3 transmembrane protein 18 protein-coding TMEM18 transmembrane protein 18 O - 20121230 -9606 129790 C7orf13 tcag7.556 MY040 HGNC:17126|MIM:610242|HPRD:12908 7 7q36.3 chromosome 7 open reading frame 13 miscRNA C7orf13 chromosome 7 open reading frame 13 O - 20121230 -9606 129804 FBLN7 - TM14 HGNC:26740|MIM:611551|Ensembl:ENSG00000144152|HPRD:08783|Vega:OTTHUMG00000153267 2 2q13 fibulin 7 protein-coding FBLN7 fibulin 7 O FIBL-7|fibulin-7 20121230 -9606 129807 NEU4 LP5125 - HGNC:21328|MIM:608527|Ensembl:ENSG00000204099|HPRD:12249|Vega:OTTHUMG00000133412 2 2q37.3 sialidase 4 protein-coding NEU4 sialidase 4 O N-acetyl-alpha-neuraminidase 4|neuraminidase 4|sialidase-4 20121230 -9606 129831 RBM45 - DRB1 HGNC:24468|MIM:608888|Ensembl:ENSG00000155636|HPRD:09927|Vega:OTTHUMG00000154202 2 2q31.2 RNA binding motif protein 45 protein-coding RBM45 RNA binding motif protein 45 O RB-1|RNA-binding motif protein 45|RNA-binding protein 45|developmentally regulated RNA-binding protein 1|developmentally-regulated RNA-binding protein 1|putative RNA binding protein RB-1 20121230 -9606 129841 RPSAP25 - RPSA_7_299 HGNC:36405 2 2q31.1 ribosomal protein SA pseudogene 25 pseudo RPSAP25 ribosomal protein SA pseudogene 25 O - 20121230 -9606 129852 C2orf73 - - HGNC:26861|Ensembl:ENSG00000177994|HPRD:13446|Vega:OTTHUMG00000151826 2 2p16.2 chromosome 2 open reading frame 73 protein-coding C2orf73 chromosome 2 open reading frame 73 O uncharacterized protein C2orf73 20121230 -9606 129868 TRIM43 - TRIM43A HGNC:19015|Ensembl:ENSG00000144015|HPRD:15560|Vega:OTTHUMG00000130401 2 2q11.1 tripartite motif containing 43 protein-coding TRIM43 tripartite motif containing 43 O tripartite motif-containing 43|tripartite motif-containing protein 43 20121230 -9606 129870 UBTFL3 - UBTFL5 HGNC:35402 2 2q11.1 upstream binding transcription factor, RNA polymerase I-like 3 (pseudogene) pseudo UBTFL3 upstream binding transcription factor, RNA polymerase I-like 3 (pseudogene) O - 20121209 -9606 129880 BBS5 - - HGNC:970|MIM:603650|Ensembl:ENSG00000163093|Ensembl:ENSG00000251569|HPRD:10353|Vega:OTTHUMG00000132207|Vega:OTTHUMG00000162280 2 2q31.1 Bardet-Biedl syndrome 5 protein-coding BBS5 Bardet-Biedl syndrome 5 O Bardet-Biedl syndrome 5 protein 20121230 -9606 129881 CCDC173 - C2orf77 HGNC:25064|Ensembl:ENSG00000154479|Vega:OTTHUMG00000154116 2 2q31.1 coiled-coil domain containing 173 protein-coding CCDC173 coiled-coil domain containing 173 O coiled-coil domain-containing protein 173 20121230 -9606 130013 ACMSD - - HGNC:19288|MIM:608889|Ensembl:ENSG00000153086|HPRD:12326|Vega:OTTHUMG00000131711 2 2q21.3 aminocarboxymuconate semialdehyde decarboxylase protein-coding ACMSD aminocarboxymuconate semialdehyde decarboxylase O 2-amino-3-carboxymuconate-6-semialdehyde decarboxylase|picolinate carboxylase 20121230 -9606 130026 ICA1L - ALS2CR14|ALS2CR15 HGNC:14442|Ensembl:ENSG00000163596|HPRD:12446|HPRD:12447|Vega:OTTHUMG00000132856 2 2q33.2 islet cell autoantigen 1,69kDa-like protein-coding ICA1L islet cell autoantigen 1,69kDa-like O Ica69-related protein|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 14|amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 15|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 14 protein|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 15 protein|islet cell autoantigen 1-like protein 20121230 -9606 130074 FAM168B - MANI HGNC:27016|Ensembl:ENSG00000152102|HPRD:17295|Vega:OTTHUMG00000153473 2 2q21.1 family with sequence similarity 168, member B protein-coding FAM168B family with sequence similarity 168, member B O myelin-associated neurite-outgrowth inhibitor|p20|protein FAM168B 20121230 -9606 130075 OR9A4 - - HGNC:15095|Ensembl:ENSG00000258083|HPRD:17797|Vega:OTTHUMG00000158370 7 7q34 olfactory receptor, family 9, subfamily A, member 4 protein-coding OR9A4 olfactory receptor, family 9, subfamily A, member 4 O olfactory receptor 9A4|olfactory receptor OR7-1 20121230 -9606 130106 CIB4 - KIP4 HGNC:33703|MIM:610646|Ensembl:ENSG00000157884|HPRD:18726|Vega:OTTHUMG00000151993 2 2p23.3 calcium and integrin binding family member 4 protein-coding CIB4 calcium and integrin binding family member 4 O calcium and integrin-binding family member 4 20121230 -9606 130120 REG3G UNQ429/PRO162 LPPM429|PAP IB|PAP-1B|PAP1B|PAPIB|REG-III|UNQ429 HGNC:29595|MIM:609933|Ensembl:ENSG00000143954|HPRD:10137|Vega:OTTHUMG00000130018 2 2p12 regenerating islet-derived 3 gamma protein-coding REG3G regenerating islet-derived 3 gamma O REG-3-gamma|pancreatitis-associated protein 1B|pancreatitis-associated protein IB|reg III-gamma|regenerating gene III|regenerating islet-derived protein 3-gamma|regenerating islet-derived protein III-gamma 20121230 -9606 130132 RFTN2 - C2orf11|Raftlin-2 HGNC:26402|Ensembl:ENSG00000162944|HPRD:12805|Vega:OTTHUMG00000132746 2 2q33.1 raftlin family member 2 protein-coding RFTN2 raftlin family member 2 O raft-linking protein 2|raftlin-2 20121230 -9606 130162 CLHC1 - C2orf63 HGNC:26453|Ensembl:ENSG00000162994|HPRD:08100|Vega:OTTHUMG00000151918 2 2p16.1 clathrin heavy chain linker domain containing 1 protein-coding CLHC1 clathrin heavy chain linker domain containing 1 O clathrin heavy chain linker domain-containing protein 1 20121230 -9606 130195 HSPA8P6 - - HGNC:44921 2 2q34 heat shock 70kDa protein 8 pseudogene 6 pseudo HSPA8P6 heat shock 70kDa protein 8 pseudogene 6 O - 20121230 -9606 130271 PLEKHH2 - PLEKHH1L HGNC:30506|MIM:612723|Ensembl:ENSG00000152527|HPRD:15149|Vega:OTTHUMG00000128657 2 2p21 pleckstrin homology domain containing, family H (with MyTH4 domain) member 2 protein-coding PLEKHH2 pleckstrin homology domain containing, family H (with MyTH4 domain) member 2 O pleckstrin homology domain-containing family H member 2 20121230 -9606 130340 AP1S3 - - HGNC:18971|Ensembl:ENSG00000152056|HPRD:16495|Vega:OTTHUMG00000133165 2 2q36.1 adaptor-related protein complex 1, sigma 3 subunit protein-coding AP1S3 adaptor-related protein complex 1, sigma 3 subunit O AP-1 complex subunit sigma-3|adapter-related protein complex 1 sigma-1C subunit|adaptor protein complex AP-1 sigma-1C subunit|clathrin assembly protein complex 1 sigma-1C small chain|golgi adaptor HA1/AP1 adaptin sigma-1C subunit|sigma 1C adaptin|sigma 1C subunit of AP-1 clathrin|sigma-adaptin 1C|sigma1C-adaptin 20121230 -9606 130355 C2orf76 - AIM29 HGNC:27017|Ensembl:ENSG00000186132|HPRD:18547|Vega:OTTHUMG00000153298 2 2q14.2 chromosome 2 open reading frame 76 protein-coding C2orf76 chromosome 2 open reading frame 76 O UPF0538 protein C2orf76 20121230 -9606 130367 SGPP2 - SPP2 HGNC:19953|MIM:612827|Ensembl:ENSG00000163082|HPRD:18048|Vega:OTTHUMG00000133156 2 2q36.1 sphingosine-1-phosphate phosphatase 2 protein-coding SGPP2 sphingosine-1-phosphate phosphatase 2 O SPPase2|hSPP2|sphingosine 1-phosphate phosphohydrolase 2|sphingosine-1-phosphatase 2|sphingosine-1-phosphate phosphotase 2 20121230 -9606 130399 ACVR1C - ACVRLK7|ALK7 HGNC:18123|MIM:608981|Ensembl:ENSG00000123612|HPRD:10608|Vega:OTTHUMG00000131964 2 2q24.1 activin A receptor, type IC protein-coding ACVR1C activin A receptor, type IC O ACTR-IC|ALK-7|activin receptor type IC|activin receptor type-1C|activin receptor-like kinase 7 20121230 -9606 130429 RPSAP27 - RPSA_8_320 HGNC:36650 2 2q34 ribosomal protein SA pseudogene 27 pseudo RPSAP27 ribosomal protein SA pseudogene 27 O - 20121230 -9606 130497 OSR1 - ODD HGNC:8111|MIM:608891|Ensembl:ENSG00000143867|HPRD:16401|Vega:OTTHUMG00000088793 2 2p24.1 odd-skipped related 1 (Drosophila) protein-coding OSR1 odd-skipped related 1 (Drosophila) O odd-skipped homolog|protein odd-skipped-related 1 20121230 -9606 130500 CISD1P1 - CISD1B|ZCD1B HGNC:29611 2 2p24.1 CDGSH iron sulfur domain 1 pseudogene 1 pseudo CISD1P1 CDGSH iron sulfur domain 1 pseudogene 1 O - 20121230 -9606 130502 TTC32 - - HGNC:32954|Ensembl:ENSG00000183891|HPRD:17296|Vega:OTTHUMG00000151776 2 2p24.1 tetratricopeptide repeat domain 32 protein-coding TTC32 tetratricopeptide repeat domain 32 O TPR repeat protein 32|tetratricopeptide repeat protein 32 20121230 -9606 130507 UBR3 - ZNF650 HGNC:30467|MIM:613831|Ensembl:ENSG00000144357|HPRD:15887|Vega:OTTHUMG00000132229 2 2q31.1 ubiquitin protein ligase E3 component n-recognin 3 (putative) protein-coding UBR3 ubiquitin protein ligase E3 component n-recognin 3 (putative) O E3 ubiquitin-protein ligase UBR3|N-recognin-3|ubiquitin-protein ligase E3-alpha-3|ubiquitin-protein ligase E3-alpha-III|zinc finger protein 650 20121230 -9606 130535 KCTD18 - 6530404F10Rik HGNC:26446|Ensembl:ENSG00000155729|HPRD:08098|Vega:OTTHUMG00000132781 2 2q33.1 potassium channel tetramerisation domain containing 18 protein-coding KCTD18 potassium channel tetramerisation domain containing 18 O BTB/POZ domain-containing protein KCTD18 20121230 -9606 130540 ALS2CR12 - - HGNC:14439|Ensembl:ENSG00000155749|HPRD:12444|Vega:OTTHUMG00000132824 2 2q33.1 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 12 protein-coding ALS2CR12 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 12 O amyotrophic lateral sclerosis 2 chromosomal region candidate gene 12 protein 20121230 -9606 130557 ZNF513 - HMFT0656|RP58 HGNC:26498|MIM:613598|Ensembl:ENSG00000163795|HPRD:15813|Vega:OTTHUMG00000097783 2 2p23.3 zinc finger protein 513 protein-coding ZNF513 zinc finger protein 513 O - 20121230 -9606 130560 SPATA3 - TSARG1 HGNC:17884|Ensembl:ENSG00000173699|HPRD:15428|Vega:OTTHUMG00000133221 2 2q37.1 spermatogenesis associated 3 protein-coding SPATA3 spermatogenesis associated 3 O spermatogenesis-associated protein 3|testis and spermatogenesis cell apoptosis related gene 1|testis and spermatogenesis cell-related protein 1|testis spermatocyte apoptosis-related protein 1 20121230 -9606 130574 LYPD6 UNQ3023/PRO9821 - HGNC:28751|MIM:613359|Ensembl:ENSG00000187123|HPRD:14676|Vega:OTTHUMG00000131852 2 2q23.2 LY6/PLAUR domain containing 6 protein-coding LYPD6 LY6/PLAUR domain containing 6 O ly6/PLAUR domain-containing protein 6 20121230 -9606 130576 LYPD6B - CT116|LYPD7 HGNC:27018|Ensembl:ENSG00000150556|HPRD:14045|Vega:OTTHUMG00000153743 2 2q23.2 LY6/PLAUR domain containing 6B protein-coding LYPD6B LY6/PLAUR domain containing 6B O cancer/testis antigen 116|ly6/PLAUR domain-containing protein 6B 20121230 -9606 130589 GALM BLOCK25 IBD1 HGNC:24063|MIM:608883|Ensembl:ENSG00000143891|HPRD:13559|Vega:OTTHUMG00000102077 2 2p22.1 galactose mutarotase (aldose 1-epimerase) protein-coding GALM galactose mutarotase (aldose 1-epimerase) O aldose 1-epimerase|galactomutarotase 20121230 -9606 130612 TMEM198 - TMEM198A HGNC:33704|Ensembl:ENSG00000188760|HPRD:14718|Vega:OTTHUMG00000059156 2 2q35 transmembrane protein 198 protein-coding TMEM198 transmembrane protein 198 O - 20121230 -9606 130617 ZFAND2B - AIRAPL HGNC:25206|MIM:613474|Ensembl:ENSG00000158552|HPRD:11234|Vega:OTTHUMG00000133135 2 2q35 zinc finger, AN1-type domain 2B protein-coding ZFAND2B zinc finger, AN1-type domain 2B O AIRAP-like protein|AN1-type zinc finger protein 2B|arsenite-inducible RNA-associated protein-like protein 20121230 -9606 130678 RPLP1P5 - RPLP1_1_196 HGNC:35842 2 2p24.3 ribosomal protein, large, P1 pseudogene 5 pseudo RPLP1P5 ribosomal protein, large, P1 pseudogene 5 O - 20121230 -9606 130700 PSMB3P2 - - HGNC:30150 2 2q35 proteasome (prosome, macropain) subunit, beta type, 3 pseudogene 2 pseudo PSMB3P2 proteasome (prosome, macropain) subunit, beta type, 3 pseudogene 2 O - 20121230 -9606 130728 RPL7P13 - RPL7_4_218 HGNC:36861 2 2p16.3 ribosomal protein L7 pseudogene 13 pseudo RPL7P13 ribosomal protein L7 pseudogene 13 O - 20121230 -9606 130733 TMEM178A PSEC0131 TMEM178 HGNC:28517|Ensembl:ENSG00000152154|HPRD:14577|Vega:OTTHUMG00000128591 2 2p22.1 transmembrane protein 178A protein-coding TMEM178A transmembrane protein 178A O transmembrane protein 178 20121230 -9606 130749 CPO - - HGNC:21011|MIM:609563|Ensembl:ENSG00000144410|HPRD:07098|Vega:OTTHUMG00000088987 2 2q33.3 carboxypeptidase O protein-coding CPO carboxypeptidase O O metallocarboxypeptidase C|metallocarboxypeptidase O 20121230 -9606 130752 MDH1B - RP11-95H11 HGNC:17836|Ensembl:ENSG00000138400|HPRD:14375|Vega:OTTHUMG00000132918 2 2q33.3 malate dehydrogenase 1B, NAD (soluble) protein-coding MDH1B malate dehydrogenase 1B, NAD (soluble) O putative malate dehydrogenase 1B 20121230 -9606 130773 RPL23AP37 - RPL23A_5_234 HGNC:35664 2 2p14 ribosomal protein L23a pseudogene 37 pseudo RPL23AP37 ribosomal protein L23a pseudogene 37 O - 20121230 -9606 130802 DNMT3AP1 - - HGNC:23164 2 2p14 DNA methyltransferase 3A pseudogene 1 pseudo DNMT3AP1 DNA methyltransferase 3A pseudogene 1 O - 20121230 -9606 130813 C2orf50 - - HGNC:26324|Ensembl:ENSG00000150873|HPRD:08051|Vega:OTTHUMG00000119057 2 2p25.1 chromosome 2 open reading frame 50 protein-coding C2orf50 chromosome 2 open reading frame 50 O uncharacterized protein C2orf50 20121230 -9606 130814 PQLC3 - C2orf22 HGNC:28503|Ensembl:ENSG00000162976|HPRD:12810|Vega:OTTHUMG00000119055 2 2p25.1 PQ loop repeat containing 3 protein-coding PQLC3 PQ loop repeat containing 3 O PQ-loop repeat-containing protein 3 20121230 -9606 130827 TMEM182 UNQ6974/PRO21957 - HGNC:26391|Ensembl:ENSG00000170417|HPRD:08698|Vega:OTTHUMG00000130779 2 2q12.1 transmembrane protein 182 protein-coding TMEM182 transmembrane protein 182 O - 20121230 -9606 130865 RPL26P13 - RPL26_6_221 HGNC:36639 2 2p16.1 ribosomal protein L26 pseudogene 13 pseudo RPL26P13 ribosomal protein L26 pseudogene 13 O - 20121230 -9606 130872 AHSA2 - Hch1 HGNC:20437|Ensembl:ENSG00000173209|HPRD:16479|Vega:OTTHUMG00000129437 2 2p15 AHA1, activator of heat shock 90kDa protein ATPase homolog 2 (yeast) protein-coding AHSA2 AHA1, activator of heat shock 90kDa protein ATPase homolog 2 (yeast) O activator of 90 kDa heat shock protein ATPase homolog 2 20121230 -9606 130888 FBXO36 - Fbx36 HGNC:27020|MIM:609105|Ensembl:ENSG00000153832|HPRD:16443|Vega:OTTHUMG00000133206 2 2q36.3 F-box protein 36 protein-coding FBXO36 F-box protein 36 O F-box only protein 36 20121230 -9606 130916 MTERFD2 HSPC096 - HGNC:28785|Ensembl:ENSG00000122085|HPRD:14699|Vega:OTTHUMG00000133393 2 2q37.3 MTERF domain containing 2 protein-coding MTERFD2 MTERF domain containing 2 O mTERF domain-containing protein 2 20121230 -9606 130940 CCDC148 - - HGNC:25191|Ensembl:ENSG00000153237|HPRD:14046|Vega:OTTHUMG00000153973 2 2q24.1 coiled-coil domain containing 148 protein-coding CCDC148 coiled-coil domain containing 148 O coiled-coil domain-containing protein 148 20121230 -9606 130951 C2orf65 - D6Mm5e HGNC:25183|Ensembl:ENSG00000159374|HPRD:14047|Vega:OTTHUMG00000152918 2 2p13.1 chromosome 2 open reading frame 65 protein-coding C2orf65 chromosome 2 open reading frame 65 O uncharacterized protein C2orf65 20121230 -9606 131034 CPNE4 - COPN4|CPN4 HGNC:2317|MIM:604208|Ensembl:ENSG00000196353|HPRD:05017|Vega:OTTHUMG00000159631 3 3q22.1 copine IV protein-coding CPNE4 copine IV O copine 8|copine-4|copine-8 20121230 -9606 131054 LOC131054 - - - 3 3q26.33 ralA binding protein 1 pseudogene pseudo - - - - 20121230 -9606 131055 LOC131055 - - - 3 3q26.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 131076 CCDC58 - - HGNC:31136|Ensembl:ENSG00000160124|HPRD:18548|Vega:OTTHUMG00000159490 3 3q21.1 coiled-coil domain containing 58 protein-coding CCDC58 coiled-coil domain containing 58 O coiled-coil domain-containing protein 58 20121230 -9606 131096 KCNH8 - ELK|ELK1|Kv12.1|elk3 HGNC:18864|MIM:608260|Ensembl:ENSG00000183960|HPRD:10006|Vega:OTTHUMG00000129891 3 3p24.3 potassium voltage-gated channel, subfamily H (eag-related), member 8 protein-coding KCNH8 potassium voltage-gated channel, subfamily H (eag-related), member 8 O ELK channel 3|ether-a-go-go-like potassium channel 1|ether-a-go-go-like potassium channel 3|hElk1|potassium voltage-gated channel subfamily H member 8|voltage-gated potassium channel subunit Kv12.1 20121230 -9606 131118 DNAJC19 - PAM18|TIM14|TIMM14 HGNC:30528|MIM:608977|Ensembl:ENSG00000205981|HPRD:12349|Vega:OTTHUMG00000158180 3 3q26.33 DnaJ (Hsp40) homolog, subfamily C, member 19 protein-coding DNAJC19 DnaJ (Hsp40) homolog, subfamily C, member 19 O homolog of yeast TIM14|mitochondrial import inner membrane translocase subunit TIM14 20121230 -9606 131149 OTOL1 - C1QTNF15 HGNC:34071|Ensembl:ENSG00000182447|Vega:OTTHUMG00000159074 3 3q26.1 otolin 1 protein-coding OTOL1 otolin 1 O C1q and tumor necrosis factor related protein 15|otolin 1 homolog|otolin-1 20121230 -9606 131177 FAM3D UNQ567/PRO1130 EF7|OIT1 HGNC:18665|MIM:608619|Ensembl:ENSG00000198643|HPRD:12271|Vega:OTTHUMG00000159148 3 3p14.2 family with sequence similarity 3, member D protein-coding FAM3D family with sequence similarity 3, member D O cytokine-like protein EF-7|protein FAM3D 20121230 -9606 131185 RAD23BP1 - - HGNC:44509 3 3p24.3 RAD23 homolog B (S. cerevisiae) pseudogene 1 pseudo RAD23BP1 RAD23 homolog B (S. cerevisiae) pseudogene 1 O - 20121230 -9606 131368 ZPLD1 - - HGNC:27022|Ensembl:ENSG00000170044|HPRD:14048|Vega:OTTHUMG00000159229 3 3q12.3 zona pellucida-like domain containing 1 protein-coding ZPLD1 zona pellucida-like domain containing 1 O ZP domain-containing protein 1|zona pellucida-like domain-containing protein 1 20121230 -9606 131375 LYZL4 - 1810009N24Rik|LYC4 HGNC:28387|MIM:612750|Ensembl:ENSG00000157093|HPRD:14338|Vega:OTTHUMG00000131793 3 3p22.1 lysozyme-like 4 protein-coding LYZL4 lysozyme-like 4 O lysozyme-4|lysozyme-like protein 4 20121230 -9606 131377 KBTBD5 - SRYP HGNC:30372|Ensembl:ENSG00000157119|HPRD:11058|Vega:OTTHUMG00000133045 3 3p22.1 kelch repeat and BTB (POZ) domain containing 5 protein-coding KBTBD5 kelch repeat and BTB (POZ) domain containing 5 O kelch repeat and BTB domain-containing protein 5|sarcosynapsin 20121230 -9606 131405 TRIM71 - LIN-41|LIN41 HGNC:32669|Ensembl:ENSG00000206557|Vega:OTTHUMG00000155778 3 3p22.3 tripartite motif containing 71, E3 ubiquitin protein ligase protein-coding TRIM71 tripartite motif containing 71, E3 ubiquitin protein ligase O abnormal cell LINeage LIN-41|homolog of C. elegans Lin-41|protein lin-41 homolog|tripartite motif-containing 71|tripartite motif-containing protein 71 20121230 -9606 131408 FAM131A UNQ715 C3orf40|FLAT715|PRO1378 HGNC:28308|Ensembl:ENSG00000175182|HPRD:14481|Vega:OTTHUMG00000156206 3 3q27.1 family with sequence similarity 131, member A protein-coding FAM131A family with sequence similarity 131, member A O protein FAM131A 20121230 -9606 131450 CD200R1 UNQ2522/PRO6015 CD200R|HCRTR2|MOX2R|OX2R HGNC:24235|MIM:607546|Ensembl:ENSG00000163606|HPRD:09609|Vega:OTTHUMG00000159298 3 3q13.2 CD200 receptor 1 protein-coding CD200R1 CD200 receptor 1 O CD200 cell surface glycoprotein receptor|MOX2 receptor|cell surface glycoprotein CD200 receptor 1|cell surface glycoprotein OX2 receptor 1|cell surface glycoprotein receptor CD200 20121230 -9606 131474 CHCHD4 - MIA40|TIMM40 HGNC:26467|MIM:611077|Ensembl:ENSG00000163528|HPRD:13045|Vega:OTTHUMG00000129805 3 3p25.1 coiled-coil-helix-coiled-coil-helix domain containing 4 protein-coding CHCHD4 coiled-coil-helix-coiled-coil-helix domain containing 4 O coiled-coil-helix-coiled-coil-helix domain-containing protein 4|mitochondrial intermembrane space import and assembly 40 homolog|mitochondrial intermembrane space import and assembly protein 40|translocase of inner mitochondrial membrane 40 homolog 20121230 -9606 131540 ZDHHC19 - DHHC19 HGNC:20713|Ensembl:ENSG00000163958|HPRD:15714|Vega:OTTHUMG00000133642 3 3q29 zinc finger, DHHC-type containing 19 protein-coding ZDHHC19 zinc finger, DHHC-type containing 19 O DHHC-19|probable palmitoyltransferase ZDHHC19|zinc finger DHHC domain-containing protein 19|zinc finger, DHHC domain containing 19 20121230 -9606 131544 CRYBG3 - DKFZp667G2110 HGNC:34427|Ensembl:ENSG00000080200|Vega:OTTHUMG00000159187 3 3q11.2 beta-gamma crystallin domain containing 3 protein-coding CRYBG3 beta-gamma crystallin domain containing 3 O beta/gamma crystallin domain-containing protein 3 20121230 -9606 131566 DCBLD2 - CLCP1|ESDN HGNC:24627|MIM:608698|Ensembl:ENSG00000057019|HPRD:10567|Vega:OTTHUMG00000151985 3 3q12.1|3 discoidin, CUB and LCCL domain containing 2 protein-coding DCBLD2 discoidin, CUB and LCCL domain containing 2 O 1700055P21Rik|CUB, LCCL and coagulation factor V/VIII-homology domains protein 1|coagulation factor V/VIII-homology domains protein 1|discoidin, CUB and LCCL domain-containing protein 2|endothelial and smooth muscle cell-derived neuropilin-like protein 20121230 -9606 131572 MESTP4 - - HGNC:38554 3 3p24.1 mesoderm specific transcript pseudogene 4 pseudo MESTP4 mesoderm specific transcript pseudogene 4 O - 20121230 -9606 131578 LRRC15 - LIB HGNC:20818|Ensembl:ENSG00000172061|HPRD:10058|Vega:OTTHUMG00000156048 3 3q29 leucine rich repeat containing 15 protein-coding LRRC15 leucine rich repeat containing 15 O hLib|leucine-rich repeat protein induced by beta amyloid|leucine-rich repeat protein induced by beta-amyloid homolog|leucine-rich repeat-containing protein 15 20121230 -9606 131583 FAM43A PP7298 - HGNC:26888|Ensembl:ENSG00000185112|HPRD:13308|Vega:OTTHUMG00000156016 3 3q29 family with sequence similarity 43, member A protein-coding FAM43A family with sequence similarity 43, member A O protein FAM43A 20121230 -9606 131601 TPRA1 PP6566 GPR175|TMEM227|TPRA40 HGNC:30413|MIM:608336|Ensembl:ENSG00000163870|HPRD:16318|Vega:OTTHUMG00000159639 3 3q21.2 transmembrane protein, adipocyte asscociated 1 protein-coding TPRA1 transmembrane protein, adipocyte asscociated 1 O G protein-coupled receptor 175|integral membrane protein GPR175|seven transmembrane domain orphan receptor|transmembrane domain protein regulated in adipocytes 40 kDa|transmembrane protein 227|transmembrane protein adipocyte-associated 1|transmembrane protein, adipocyte associated 1 20121230 -9606 131616 TMEM42 - - HGNC:28444|Ensembl:ENSG00000169964|HPRD:15540|Vega:OTTHUMG00000133092 3 3p21.31 transmembrane protein 42 protein-coding TMEM42 transmembrane protein 42 O - 20121230 -9606 131669 UROC1 - HMFN0320 HGNC:26444|MIM:613012|Ensembl:ENSG00000159650|HPRD:08712|Vega:OTTHUMG00000162753 3 3q21.3 urocanate hydratase 1 protein-coding UROC1 urocanate hydratase 1 O imidazolonepropionate hydrolase|urocanase 1|urocanase domain containing 1|urocanate hydratase 20121230 -9606 131831 FAM194A - C3orf44 HGNC:28602|Ensembl:ENSG00000163645|HPRD:17543|Vega:OTTHUMG00000133569 3 3q25.1 family with sequence similarity 194, member A protein-coding FAM194A family with sequence similarity 194, member A O protein FAM194A 20121230 -9606 131870 NUDT16 - - HGNC:26442|Ensembl:ENSG00000198585|HPRD:08097|Vega:OTTHUMG00000159623 3 3q22.1 nudix (nucleoside diphosphate linked moiety X)-type motif 16 protein-coding NUDT16 nudix (nucleoside diphosphate linked moiety X)-type motif 16 O U8 snoRNA-binding protein H29K|U8 snoRNA-decapping enzyme|m7GpppN-mRNA hydrolase|nucleoside diphosphate-linked moiety X motif 16|nudix motif 16 20121230 -9606 131873 COL6A6 - - HGNC:27023|Ensembl:ENSG00000206384|Vega:OTTHUMG00000159653 3 3q22.1 collagen, type VI, alpha 6 protein-coding COL6A6 collagen, type VI, alpha 6 O collagen alpha-6(VI) chain 20121230 -9606 131890 GRK7 - GPRK7 HGNC:17031|MIM:606987|Ensembl:ENSG00000114124|HPRD:07378|Vega:OTTHUMG00000159068 3 3q24 G protein-coupled receptor kinase 7 protein-coding GRK7 G protein-coupled receptor kinase 7 O g protein-coupled receptor kinase GRK7 20121230 -9606 131909 FAM172BP - FAM172B HGNC:34336 3 3q12.3 family with sequence similarity 172, member B pseudogene pseudo FAM172BP family with sequence similarity 172, member B, pseudogene O - 20121230 -9606 131920 TMEM207 UNQ846/PRO1784 UNQ846 HGNC:33705|MIM:614786|Ensembl:ENSG00000198398|HPRD:15621|Vega:OTTHUMG00000156213 3 3q28 transmembrane protein 207 protein-coding TMEM207 transmembrane protein 207 O SRSR846 20121230 -9606 131961 IMPDH1P8 - - HGNC:33963 3 3p25.1 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 8 pseudo IMPDH1P8 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 8 O - 20121230 -9606 131965 METTL6 - - HGNC:28343|Ensembl:ENSG00000206562|HPRD:14494|Vega:OTTHUMG00000156431 3 3p25.1 methyltransferase like 6 protein-coding METTL6 methyltransferase like 6 O methyltransferase-like protein 6 20121230 -9606 131973 RHBDF1P1 - - HGNC:44499 3 3p25.1 rhomboid 5 homolog 1 (Drosophila) pseudogene 1 pseudo RHBDF1P1 rhomboid 5 homolog 1 (Drosophila) pseudogene 1 O - 20121230 -9606 132001 TAMM41 - C3orf31|RAM41|TAM41 HGNC:25187|MIM:614948|Ensembl:ENSG00000144559|HPRD:14452|Vega:OTTHUMG00000129741 3 3p25.2 TAM41, mitochondrial translocator assembly and maintenance protein, homolog (S. cerevisiae) protein-coding TAMM41 TAM41, mitochondrial translocator assembly and maintenance protein, homolog (S. cerevisiae) O MMP37-like protein, mitochondrial|mitochondrial translocator assembly and maintenance protein 41 homolog 20121230 -9606 132014 IL17RE UNQ3056/PRO9877 - HGNC:18439|MIM:614995|Ensembl:ENSG00000163701|HPRD:17143|Vega:OTTHUMG00000128649 3 3p25.3 interleukin 17 receptor E protein-coding IL17RE interleukin 17 receptor E O IL-17 receptor E|interleukin-17 receptor E 20121230 -9606 132112 RTP1 - - HGNC:28580|MIM:609137|Ensembl:ENSG00000175077|HPRD:16449|Vega:OTTHUMG00000149886 3 3q27.3 receptor (chemosensory) transporter protein 1 protein-coding RTP1 receptor (chemosensory) transporter protein 1 O receptor transporter protein 1|receptor transporting protein 1|receptor-transporting protein 1 20121230 -9606 132141 IQCF1 - - HGNC:28607|Ensembl:ENSG00000173389|HPRD:17155|Vega:OTTHUMG00000156908 3 3p21.2 IQ motif containing F1 protein-coding IQCF1 IQ motif containing F1 O IQ domain-containing protein F1 20121230 -9606 132158 GLYCTK LP5910 HBEBP2|HBEBP4|HBeAgBP4A HGNC:24247|MIM:610516|Ensembl:ENSG00000168237|HPRD:13586|Vega:OTTHUMG00000158380 3 3p21.1 glycerate kinase protein-coding GLYCTK glycerate kinase O HBeAg binding protein 4|HBeAg-binding protein 2 20121230 -9606 132160 PPM1M - PP2C-eta|PP2CE|PP2Ceta HGNC:26506|MIM:608979|Ensembl:ENSG00000164088|HPRD:12350|Vega:OTTHUMG00000153046 3 3p21.2 protein phosphatase, Mg2+/Mn2+ dependent, 1M protein-coding PPM1M protein phosphatase, Mg2+/Mn2+ dependent, 1M O protein phosphatase 1M|protein phosphatase 1M (PP2C domain containing)|protein phosphatase 2C eta-2|protein phosphatase 2C isoform eta 20121230 -9606 132200 C3orf49 - - HGNC:25190 3 3p14.1 chromosome 3 open reading frame 49 miscRNA C3orf49 chromosome 3 open reading frame 49 O - 20121230 -9606 132203 SNTN - S100A1L|S100AL|sentan HGNC:33706|Ensembl:ENSG00000188817|Vega:OTTHUMG00000158766 3 3p14.2 sentan, cilia apical structure protein protein-coding SNTN sentan, cilia apical structure protein O S100A-like protein|sentan 20121230 -9606 132204 SYNPR - SPO HGNC:16507|Ensembl:ENSG00000163630|HPRD:15458|Vega:OTTHUMG00000158699 3 3p14.2 synaptoporin protein-coding SYNPR synaptoporin O - 20121230 -9606 132228 C3orf45 - - HGNC:26781|Ensembl:ENSG00000179564|HPRD:08789|Vega:OTTHUMG00000156938 3 3p21.31 chromosome 3 open reading frame 45 protein-coding C3orf45 chromosome 3 open reading frame 45 O uncharacterized protein C3orf45 20121230 -9606 132241 RPL32P3 - - HGNC:27024 3 3q21.3 ribosomal protein L32 pseudogene 3 pseudo RPL32P3 ribosomal protein L32 pseudogene 3 O - 20121230 -9606 132243 H1FOO - osH1 HGNC:18463|Ensembl:ENSG00000178804|HPRD:13621|Vega:OTTHUMG00000159541 3 3q22.1 H1 histone family, member O, oocyte-specific protein-coding H1FOO H1 histone family, member O, oocyte-specific O histone H1oo|oocyte-specific histone H1|oocyte-specific linker histone H1 20121230 -9606 132250 DAP4C - - - 3 3p12.3 death-associated protein 4C protein-coding - - - - 20100404 -9606 132299 OCIAD2 - - HGNC:28685|Ensembl:ENSG00000145247|HPRD:14873|Vega:OTTHUMG00000128626 4 4p11 OCIA domain containing 2 protein-coding OCIAD2 OCIA domain containing 2 O OCIA domain-containing protein 2|ovarian carcinoma immunoreactive antigen|ovarian carcinoma immunoreactive antigen-like protein 20121230 -9606 132320 SCLT1 - CAP-1A|CAP1A|hCAP-1A HGNC:26406|MIM:611399|Ensembl:ENSG00000151466|HPRD:08700|Vega:OTTHUMG00000133346 4 4q28.2 sodium channel and clathrin linker 1 protein-coding SCLT1 sodium channel and clathrin linker 1 O sodium channel-associated protein 1 20121230 -9606 132321 C4orf33 - - HGNC:27025|Ensembl:ENSG00000151470|HPRD:14049|Vega:OTTHUMG00000133347 4 4q28.2 chromosome 4 open reading frame 33 protein-coding C4orf33 chromosome 4 open reading frame 33 O UPF0462 protein C4orf33 20121230 -9606 132332 TMEM155 - - HGNC:26418|Ensembl:ENSG00000164112|HPRD:08089|Vega:OTTHUMG00000133035 4 4q27 transmembrane protein 155 protein-coding TMEM155 transmembrane protein 155 O protein TMEM155 20121230 -9606 132386 LOC132386 - - - 4 4q34.3 epithelial cell adhesion molecule pseudogene pseudo - - - - 20121230 -9606 132391 KRT18P21 - - HGNC:33389 4 4q26 keratin 18 pseudogene 21 pseudo KRT18P21 keratin 18 pseudogene 21 O - 20121230 -9606 132430 PABPC4L hCG_1647909 - HGNC:31955|Ensembl:ENSG00000254535|Vega:OTTHUMG00000161292 4 4q28.3 poly(A) binding protein, cytoplasmic 4-like protein-coding PABPC4L poly(A) binding protein, cytoplasmic 4-like O PABP-4-like|polyadenylate-binding protein 4-like 20121230 -9606 132556 BTF3P13 - BTF3L3|HUMBTFD HGNC:1128|MIM:603739 4 4q23 basic transcription factor 3 pseudogene 13 pseudo BTF3P13 basic transcription factor 3 pseudogene 13 O - 20121230 -9606 132612 ADAD1 - Tenr HGNC:30713|MIM:614130|Ensembl:ENSG00000164113|HPRD:15594|Vega:OTTHUMG00000150128 4 4q27 adenosine deaminase domain containing 1 (testis-specific) protein-coding ADAD1 adenosine deaminase domain containing 1 (testis-specific) O adenosine deaminase domain-containing protein 1|testis nuclear RNA-binding protein 20121230 -9606 132625 ZFP42 - REX1|ZNF754 HGNC:30949|MIM:614572|Ensembl:ENSG00000179059|HPRD:15726|Vega:OTTHUMG00000160235 4 4q35.2 ZFP42 zinc finger protein protein-coding ZFP42 ZFP42 zinc finger protein O REX-1|REX1 transcription factor|hREX-1|reduced expression protein 1|zfp-42|zinc finger protein 42 homolog|zinc finger protein 754 20121230 -9606 132660 LIN54 - CXCDC1|JC8.6|MIP120 HGNC:25397|MIM:613367|Ensembl:ENSG00000189308|HPRD:13218|Vega:OTTHUMG00000130287 4 4q21.22 lin-54 homolog (C. elegans) protein-coding LIN54 lin-54 homolog (C. elegans) O CXC domain containing 1|CXC domain-containing protein 1|protein lin-54 homolog 20121230 -9606 132671 SPATA18 - Mieap|SPETEX1 HGNC:29579|MIM:612814|Ensembl:ENSG00000163071|HPRD:14050|Vega:OTTHUMG00000128698 4 4q12 spermatogenesis associated 18 protein-coding SPATA18 spermatogenesis associated 18 O mitochondria-eating protein|spermatogenesis associated 18 homolog|spermatogenesis-associated protein 18 20121230 -9606 132719 LOC132719 - - - 4 4q25 tubulin, beta 8 class VIII pseudogene pseudo - - - - 20121230 -9606 132720 C4orf32 - - HGNC:26813|Ensembl:ENSG00000174749|HPRD:08252|Vega:OTTHUMG00000132851 4 4q25 chromosome 4 open reading frame 32 protein-coding C4orf32 chromosome 4 open reading frame 32 O uncharacterized protein C4orf32 20121230 -9606 132724 TMPRSS11B - - HGNC:25398|Ensembl:ENSG00000185873|HPRD:13219|Vega:OTTHUMG00000129301 4 4q13.2 transmembrane protease, serine 11B protein-coding TMPRSS11B transmembrane protease, serine 11B O airway trypsin-like protease 5|transmembrane protease serine 11B 20121230 -9606 132789 GNPDA2 - GNP2|SB52 HGNC:21526|MIM:613222|Ensembl:ENSG00000163281|HPRD:13594|Vega:OTTHUMG00000099415 4 4p12 glucosamine-6-phosphate deaminase 2 protein-coding GNPDA2 glucosamine-6-phosphate deaminase 2 O glcN6P deaminase 2|glucosamine-6-phosphate isomerase 2|glucosamine-6-phosphate isomerase SB52 20121230 -9606 132817 RBM48P1 - - HGNC:44054 4 4q28.1 RNA binding motif protein 48 pseudogene 1 pseudo RBM48P1 RNA binding motif protein 48 pseudogene 1 O - 20121230 -9606 132851 SPATA4 - SPEF1B|TSARG2 HGNC:17333|MIM:609879|Ensembl:ENSG00000150628|HPRD:15429|Vega:OTTHUMG00000160788 4 4q34.2 spermatogenesis associated 4 protein-coding SPATA4 spermatogenesis associated 4 O spermatogenesis-associated protein 4|testis and spermatogenesis cell related protein 2|testis and spermatogenesis cell-related protein 2|testis spermatocyte apoptosis-related gene 2 protein 20121230 -9606 132864 CPEB2 - CPE-BP2|CPEB-2|hCPEB-2 HGNC:21745|MIM:610605|Ensembl:ENSG00000137449|HPRD:16744|Vega:OTTHUMG00000090669 4 4p15.33 cytoplasmic polyadenylation element binding protein 2 protein-coding CPEB2 cytoplasmic polyadenylation element binding protein 2 O CPE-binding protein 2|cytoplasmic polyadenylation element-binding protein 2 20121230 -9606 132884 EVC2 - LBN HGNC:19747|MIM:607261|Ensembl:ENSG00000173040|HPRD:06269|Vega:OTTHUMG00000125493 4 4p16.2-p16.1 Ellis van Creveld syndrome 2 protein-coding EVC2 Ellis van Creveld syndrome 2 O ellis-van Creveld syndrome protein 2|limbin 20121230 -9606 132946 ARL9 - - HGNC:23592|MIM:612405|Ensembl:ENSG00000196503|HPRD:12486 4 4q12 ADP-ribosylation factor-like 9 protein-coding ARL9 ADP-ribosylation factor-like 9 O ADP-ribosylation factor-like protein 9 20121230 -9606 132949 AASDH HSPC318 ACSF4|LYS2|NRPS1098|NRPS998 HGNC:23993|MIM:614365|Ensembl:ENSG00000157426|HPRD:12398|Vega:OTTHUMG00000128841 4 4q12 aminoadipate-semialdehyde dehydrogenase protein-coding AASDH aminoadipate-semialdehyde dehydrogenase O 2-aminoadipic 6-semialdehyde dehydrogenase|acyl-CoA synthetase family member 4|non-ribosomal peptide synthetase 1098|non-ribosomal peptide synthetase 998 20121230 -9606 132954 PDCL2 - GCPHLP HGNC:29524|MIM:611676|Ensembl:ENSG00000163440|HPRD:15109|Vega:OTTHUMG00000160674 4 4q12 phosducin-like 2 protein-coding PDCL2 phosducin-like 2 O phosducin-like protein 2 20121230 -9606 132989 C4orf36 - - HGNC:28386|Ensembl:ENSG00000163633|HPRD:14511|Vega:OTTHUMG00000130597 4 4q21.3 chromosome 4 open reading frame 36 protein-coding C4orf36 chromosome 4 open reading frame 36 O uncharacterized protein C4orf36 20121230 -9606 133015 PACRGL - C4orf28 HGNC:28442|Ensembl:ENSG00000163138|HPRD:14537|Vega:OTTHUMG00000128550 4 4p15.31 PARK2 co-regulated-like protein-coding PACRGL PARK2 co-regulated-like O PACRG-like protein 20121230 -9606 133022 TRAM1L1 - - HGNC:28371|Ensembl:ENSG00000174599|HPRD:11643|Vega:OTTHUMG00000132956 4 4q26 translocation associated membrane protein 1-like 1 protein-coding TRAM1L1 translocation associated membrane protein 1-like 1 O translocating chain-associated membrane protein 1-like 1 20121230 -9606 133060 OTOP1 - - HGNC:19656|MIM:607806|Ensembl:ENSG00000163982|HPRD:07421|Vega:OTTHUMG00000090301 4 4p16.3 otopetrin 1 protein-coding OTOP1 otopetrin 1 O otopetrin-1 20121230 -9606 133083 LOC133083 - - - 4 4q22.1 peptidase (mitochondrial processing) alpha pseudogene pseudo - - - - 20121230 -9606 133121 ENPP6 UNQ1889/PRO4334 NPP6 HGNC:23409|Ensembl:ENSG00000164303|HPRD:16863|Vega:OTTHUMG00000160617 4 4q35.1 ectonucleotide pyrophosphatase/phosphodiesterase 6 protein-coding ENPP6 ectonucleotide pyrophosphatase/phosphodiesterase 6 O B830047L21Rik|E-NPP 6|NPP-6|choline-specific glycerophosphodiester phosphodiesterase|ectonucleotide pyrophosphatase/phosphodiesterase family member 6|glycerophosphocholine cholinephosphodiesterase 20121230 -9606 133150 SULT1D1P - SULT1D1 HGNC:30659 4 4q13.3 sulfotransferase family, cytosolic, 1D, member 1, pseudogene pseudo SULT1D1P sulfotransferase family, cytosolic, 1D, member 1, pseudogene O - 20121230 -9606 133283 EEF1A1P13 - EEF1AL11 HGNC:3196 5 5p15.1 eukaryotic translation elongation factor 1 alpha 1 pseudogene 13 pseudo EEF1A1P13 eukaryotic translation elongation factor 1 alpha 1 pseudogene 13 O - 20121230 -9606 133308 SLC9B2 - NHA2|NHE10|NHEDC2 HGNC:25143|MIM:611789|Ensembl:ENSG00000164038|HPRD:14051|Vega:OTTHUMG00000131125 4 4q24 solute carrier family 9, subfamily B (NHA2, cation proton antiporter 2), member 2 protein-coding SLC9B2 solute carrier family 9, subfamily B (NHA2, cation proton antiporter 2), member 2 O NHE domain-containing protein 2|Na(+)/H(+) exchanger-like domain-containing protein 2|Na+/H+ exchanger domain containing 2|mitochondrial Na(+)/H(+) exchanger NHA2|mitochondrial sodium/hydrogen exchanger 9B2|mitochondrial sodium/hydrogen exchanger NHA2|sodium/hydrogen exchanger-like domain-containing protein 2|solute carrier family 9 subfamily B member 2|solute carrier family 9, subfamily B (cation proton antiporter 2), member 2 20121230 -9606 133332 LOC133332 - - - 4 4q32.2 mitochondrial ribosomal protein S5 pseudogene pseudo - - - - 20121230 -9606 133383 SETD9 - C5orf35 HGNC:28508|Ensembl:ENSG00000155542|HPRD:14572|Vega:OTTHUMG00000059485 5 5q11.2 SET domain containing 9 protein-coding SETD9 SET domain containing 9 O SET domain-containing protein 9 20121230 -9606 133396 IL31RA UNQ6368/PRO21073/PRO21384 CRL|CRL3|GLM-R|GLMR|GPL|IL-31RA|PLCA2|PRO21384|hGLM-R HGNC:18969|MIM:609510|Ensembl:ENSG00000164509|HPRD:17145|Vega:OTTHUMG00000097045 5 5q11.2 interleukin 31 receptor A protein-coding IL31RA interleukin 31 receptor A O IL-31 receptor subunit alpha|IL-31R subunit alpha|class I cytokine receptor|cytokine receptor-like 3|gp130-like monocyte receptor|interleukin-31 receptor subunit alpha|soluble type I cytokine receptor CRL3|zcytoR17 20121230 -9606 133418 EMB - - HGNC:30465|Ensembl:ENSG00000170571|HPRD:13271|Vega:OTTHUMG00000131161 5 5q11.1 embigin protein-coding EMB embigin O embigin homolog 20121230 -9606 133482 SLCO6A1 - CT48|GST|OATP6A1|OATPY HGNC:23613|MIM:613365|Ensembl:ENSG00000205359|HPRD:15400|Vega:OTTHUMG00000162759 5 5q21.1 solute carrier organic anion transporter family, member 6A1 protein-coding SLCO6A1 solute carrier organic anion transporter family, member 6A1 O OATP-I|cancer/testis antigen 48|gonad-specific transporter|organic anion-transporting polypeptide 6A1|organic anion-transporting polypeptide I|solute carrier family 21 member 19|solute carrier organic anion transporter family member 6A1|testis-specific organic anion transporter 20121230 -9606 133491 C5orf47 - - HGNC:27026|Ensembl:ENSG00000185056|Vega:OTTHUMG00000163349 5 5q35.2 chromosome 5 open reading frame 47 protein-coding C5orf47 chromosome 5 open reading frame 47 O uncharacterized protein C5orf47 20121230 -9606 133522 PPARGC1B - ERRL1|PERC|PGC-1(beta)|PGC1B HGNC:30022|MIM:608886|Ensembl:ENSG00000155846|HPRD:10594|Vega:OTTHUMG00000130055 5 5q32 peroxisome proliferator-activated receptor gamma, coactivator 1 beta protein-coding PPARGC1B peroxisome proliferator-activated receptor gamma, coactivator 1 beta O PGC-1-related estrogen receptor alpha coactivator|PPAR-gamma coactivator 1-beta|PPARGC-1-beta|peroxisome proliferator-activated receptor gamma coactivator 1-beta 20121230 -9606 133558 MROH2B - HEATR7B2 HGNC:26857|Ensembl:ENSG00000171495|HPRD:08808|Vega:OTTHUMG00000162151 5 5p13.1 maestro heat-like repeat family member 2B protein-coding MROH2B maestro heat-like repeat family member 2B O HEAT repeat family member 7B2|HEAT repeat family member B2|HEAT repeat-containing protein 7B2 20121230 -9606 133569 RPS10P12 - RPS10_5_559 HGNC:36662 5 5q11.1 ribosomal protein S10 pseudogene 12 pseudo RPS10P12 ribosomal protein S10 pseudogene 12 O - 20121230 -9606 133584 EGFLAM - AGRINL|AGRNL HGNC:26810|Ensembl:ENSG00000164318|HPRD:13433|Vega:OTTHUMG00000131139 5 5p13.2-p13.1 EGF-like, fibronectin type III and laminin G domains protein-coding EGFLAM EGF-like, fibronectin type III and laminin G domains O EGF-like, fibronectin type-III and laminin G-like domain-containing protein|agrin-like protein|pikachurin 20121230 -9606 133609 RPLP1P7 hCG_1818237 RPLP1_4_611 HGNC:36156 5 5q23.2 ribosomal protein, large, P1 pseudogene 7 pseudo RPLP1P7 ribosomal protein, large, P1 pseudogene 7 O - 20121230 -9606 133615 MRPS5P3 - - HGNC:29778 5 5q23.2 mitochondrial ribosomal protein S5 pseudogene 3 pseudo MRPS5P3 mitochondrial ribosomal protein S5 pseudogene 3 O - 20121230 -9606 133619 PRRC1 - - HGNC:28164|Ensembl:ENSG00000164244|HPRD:14052|Vega:OTTHUMG00000128982 5 5q23.2 proline-rich coiled-coil 1 protein-coding PRRC1 proline-rich coiled-coil 1 O proline-rich and coiled-coil-containing protein 1|protein PRRC1 20121230 -9606 133629 RPL11P2 - RPL11_1_612 HGNC:36983 5 5q23.3 ribosomal protein L11 pseudogene 2 pseudo RPL11P2 ribosomal protein L11 pseudogene 2 O - 20121230 -9606 133686 NADKD1 - C5orf33 HGNC:26404|Ensembl:ENSG00000152620|HPRD:08088|Vega:OTTHUMG00000131105 5 5p13.2 NAD kinase domain containing 1 protein-coding NADKD1 NAD kinase domain containing 1 O NAD kinase domain-containing protein 1 20121230 -9606 133688 UGT3A1 - - HGNC:26625|Ensembl:ENSG00000145626|HPRD:08175|Vega:OTTHUMG00000131107 5 5p13.2 UDP glycosyltransferase 3 family, polypeptide A1 protein-coding UGT3A1 UDP glycosyltransferase 3 family, polypeptide A1 O UDP-glucuronosyltransferase 3A1|UDPGT 3A1 20121230 -9606 133690 CAPSL - - HGNC:28375|Ensembl:ENSG00000152611|HPRD:14506|Vega:OTTHUMG00000131109 5 5p13.2 calcyphosine-like protein-coding CAPSL calcyphosine-like O calcyphosin-like protein 20121230 -9606 133746 JMY - WHDC1L3 HGNC:28916|MIM:604279|Ensembl:ENSG00000152409|HPRD:05045|Vega:OTTHUMG00000131301 5 5q14.1 junction mediating and regulatory protein, p53 cofactor protein-coding JMY junction mediating and regulatory protein, p53 cofactor O WAS protein homology region 2 domain containing 1-like 3|junction-mediating and -regulatory protein|junction-mediating and regulatory protein 20121230 -9606 133748 RPL7AP32 - RPL7A_8_583 HGNC:36415 5 5q14.1 ribosomal protein L7a pseudogene 32 pseudo RPL7AP32 ribosomal protein L7a pseudogene 32 O - 20121230 -9606 133789 LOC133789 - - - 5 5q14.3 RAB5C, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 133790 RPS18P7 - RPS18_4_595 HGNC:35874 5 5q14.3 ribosomal protein S18 pseudogene 7 pseudo RPS18P7 ribosomal protein S18 pseudogene 7 O - 20121230 -9606 133874 C5orf58 - - HGNC:37272|Ensembl:ENSG00000234511|Vega:OTTHUMG00000163122 5 5q35.1 chromosome 5 open reading frame 58 protein-coding C5orf58 chromosome 5 open reading frame 58 O putative uncharacterized protein C5orf58 20121230 -9606 133923 ZNF474 - - HGNC:23245|Ensembl:ENSG00000164185|HPRD:13411|Vega:OTTHUMG00000128911 5 5q23.2 zinc finger protein 474 protein-coding ZNF474 zinc finger protein 474 O 4933409D10Rik|TSZFP|testis-specific zinc finger protein 20121230 -9606 133957 CCDC127 - - HGNC:30520|HPRD:14053 5 5p15.33 coiled-coil domain containing 127 protein-coding CCDC127 coiled-coil domain containing 127 O coiled-coil domain-containing protein 127 20121230 -9606 134008 MRPL11P2 - - HGNC:29694 5 5q31.3 mitochondrial ribosomal protein L11 pseudogene 2 pseudo MRPL11P2 mitochondrial ribosomal protein L11 pseudogene 2 O - 20121230 -9606 134082 OR2AI1P - - HGNC:15063 5 5q35.3 olfactory receptor, family 2, subfamily AI, member 1 pseudogene pseudo OR2AI1P olfactory receptor, family 2, subfamily AI, member 1 pseudogene O - 20121230 -9606 134083 OR2Y1 - OR5-2 HGNC:14837|Ensembl:ENSG00000174339|HPRD:17716|Vega:OTTHUMG00000162237 5 5q35.3 olfactory receptor, family 2, subfamily Y, member 1 protein-coding OR2Y1 olfactory receptor, family 2, subfamily Y, member 1 O olfactory receptor 2Y1|olfactory receptor OR5-2 20121230 -9606 134111 UBE2QL1 - - HGNC:37269|Ensembl:ENSG00000215218|Vega:OTTHUMG00000161683 5 5p15.31 ubiquitin-conjugating enzyme E2Q family-like 1 protein-coding UBE2QL1 ubiquitin-conjugating enzyme E2Q family-like 1 O ubiquitin-conjugating enzyme E2Q-like protein 1 20121230 -9606 134121 C5orf49 - - HGNC:27028|Ensembl:ENSG00000215217|Vega:OTTHUMG00000161897 5 5p15.31 chromosome 5 open reading frame 49 protein-coding C5orf49 chromosome 5 open reading frame 49 O uncharacterized protein C5orf49 20121230 -9606 134145 FAM173B - JS-2 HGNC:27029|Ensembl:ENSG00000150756|HPRD:14054|Vega:OTTHUMG00000161771 5 5p15.2 family with sequence similarity 173, member B protein-coding FAM173B family with sequence similarity 173, member B O protein FAM173B 20121230 -9606 134147 CMBL - JS-1 HGNC:25090|MIM:613379|Ensembl:ENSG00000164237|HPRD:14055|Vega:OTTHUMG00000131043 5 5p15.2 carboxymethylenebutenolidase homolog (Pseudomonas) protein-coding CMBL carboxymethylenebutenolidase homolog (Pseudomonas) O carboxymethylenebutenolidase homolog|carboxymethylenebutenolidase-like (Pseudomonas) 20121230 -9606 134187 POU5F2 - SPRM-1 HGNC:26367|Ensembl:ENSG00000248483|HPRD:08695|Vega:OTTHUMG00000162644 5 5q15 POU domain class 5, transcription factor 2 protein-coding POU5F2 POU domain class 5, transcription factor 2 O POU domain, class 5, transcription factor 2|sperm 1 POU domain transcription factor 20121230 -9606 134218 DNAJC21 - DNAJA5|GS3|JJJ1 HGNC:27030|Ensembl:ENSG00000168724|HPRD:14056|Vega:OTTHUMG00000074103 5 5p13.2 DnaJ (Hsp40) homolog, subfamily C, member 21 protein-coding DNAJC21 DnaJ (Hsp40) homolog, subfamily C, member 21 O DnaJ homology subfamily A member 5|JJJ1 DnaJ domain protein homolog|dnaJ homolog subfamily A member 5|dnaJ homolog subfamily C member 21 20121230 -9606 134265 AFAP1L1 - - HGNC:26714|MIM:614410|Ensembl:ENSG00000157510|HPRD:16943|Vega:OTTHUMG00000163441 5 5q32 actin filament associated protein 1-like 1 protein-coding AFAP1L1 actin filament associated protein 1-like 1 O AFAP1-like protein 1|actin filament-associated protein 1-like 1 20121230 -9606 134266 GRPEL2 - Mt-GrpE#2 HGNC:21060|Ensembl:ENSG00000164284|HPRD:17079|Vega:OTTHUMG00000130048 5 5q32 GrpE-like 2, mitochondrial (E. coli) protein-coding GRPEL2 GrpE-like 2, mitochondrial (E. coli) O grpE protein homolog 2, mitochondrial 20121230 -9606 134285 TMEM171 - PRP2 HGNC:27031|Ensembl:ENSG00000157111|HPRD:14057|Vega:OTTHUMG00000131269 5 5q13.2 transmembrane protein 171 protein-coding TMEM171 transmembrane protein 171 O proline-rich protein PRP2 20121230 -9606 134288 TMEM174 - - HGNC:28187|MIM:614909|Ensembl:ENSG00000164325|HPRD:14432|Vega:OTTHUMG00000131268 5 5q13.2 transmembrane protein 174 protein-coding TMEM174 transmembrane protein 174 O - 20121230 -9606 134353 LSM11 - - HGNC:30860|Ensembl:ENSG00000155858|HPRD:11289|Vega:OTTHUMG00000130255 5 5q33.3 LSM11, U7 small nuclear RNA associated protein-coding LSM11 LSM11, U7 small nuclear RNA associated O 2210404M20Rik|LSM11 homolog, U7 small nuclear RNA associated|U7 snRNA-associated Sm-like protein LSm11 20121230 -9606 134359 POC5 - C5orf37 HGNC:26658|Ensembl:ENSG00000152359|HPRD:08188|Vega:OTTHUMG00000162487 5 5q13.3 POC5 centriolar protein homolog (Chlamydomonas) protein-coding POC5 POC5 centriolar protein homolog (Chlamydomonas) O centrosomal protein POC5|hPOC5|protein of centriole 5|proteome of centriole 5 20121230 -9606 134391 GPR151 - GALR4|GALRL|GPCR|PGR7 HGNC:23624|Ensembl:ENSG00000173250|HPRD:17065|Vega:OTTHUMG00000163444 5 5q32 G protein-coupled receptor 151 protein-coding GPR151 G protein-coupled receptor 151 O G-protein coupled receptor PGR7|GPCR-2037|galanin receptor 4|probable G-protein coupled receptor 151|putative G-protein coupled receptor 20121230 -9606 134429 STARD4 - - HGNC:18058|MIM:607049|Ensembl:ENSG00000164211|HPRD:06133|Vega:OTTHUMG00000128793 5 5q22.1 StAR-related lipid transfer (START) domain containing 4 protein-coding STARD4 StAR-related lipid transfer (START) domain containing 4 O START domain containing 4 sterol-regulated|START domain containing 4, sterol regulated|START domain-containing protein 4|stAR-related lipid transfer protein 4 20121230 -9606 134430 WDR36 - GLC1G|TA-WDRP|TAWDRP|UTP21 HGNC:30696|MIM:609669|Ensembl:ENSG00000134987|HPRD:10305|Vega:OTTHUMG00000128790 5 5q22.1 WD repeat domain 36 protein-coding WDR36 WD repeat domain 36 O T-cell activation WD repeat protein|T-cell activation WD repeat-containing protein|WD repeat-containing protein 36 20121230 -9606 134466 ZNF300P1 - - HGNC:27032 5 5q33.1 zinc finger protein 300 pseudogene 1 pseudo ZNF300P1 zinc finger protein 300 pseudogene 1 O - 20121230 -9606 134490 MRP63P6 - - HGNC:29689 5 5q34 mitochondrial ribosomal protein 63 pseudogene 6 pseudo MRP63P6 mitochondrial ribosomal protein 63 pseudogene 6 O - 20121230 -9606 134492 NUDCD2 - - HGNC:30535|Ensembl:ENSG00000170584|HPRD:14058|Vega:OTTHUMG00000130378 5 5q34 NudC domain containing 2 protein-coding NUDCD2 NudC domain containing 2 O NudC-like protein 2|nudC domain-containing protein 2 20121230 -9606 134505 EIF3KP1 - - HGNC:44016 5 5q21.1 eukaryotic translation initiation factor 3, subunit K pseudogene 1 pseudo EIF3KP1 eukaryotic translation initiation factor 3, subunit K pseudogene 1 O - 20121230 -9606 134510 UBLCP1 - CPUB1 HGNC:28110|MIM:609867|Ensembl:ENSG00000164332|HPRD:08318|Vega:OTTHUMG00000130305 5 5q33.3 ubiquitin-like domain containing CTD phosphatase 1 protein-coding UBLCP1 ubiquitin-like domain containing CTD phosphatase 1 O CTD phosphatase-like with ubiquitin domain 1|CTD-like phosphatase domain-containing protein|nuclear proteasome inhibitor UBLCP1|ubiquitin-like domain-containing CTD phosphatase 1 20121230 -9606 134526 ACOT12 - CACH-1|Cach|STARD15|THEAL HGNC:24436|MIM:614315|Ensembl:ENSG00000172497|HPRD:16680|Vega:OTTHUMG00000131305 5 5q14.1 acyl-CoA thioesterase 12 protein-coding ACOT12 acyl-CoA thioesterase 12 O START domain-containing protein 15|StAR-related lipid transfer (START) domain containing 15|acyl-CoA thioester hydrolase 12|acyl-coenzyme A thioesterase 12|cytoplasmic acetyl-CoA hydrolase 1|cytosolic acetyl-CoA hydrolase|hCACH-1 20121230 -9606 134548 SOWAHA - ANKRD43 HGNC:27033|Ensembl:ENSG00000198944|HPRD:14059|Vega:OTTHUMG00000059844 5 5q31.1 sosondowah ankyrin repeat domain family member A protein-coding SOWAHA sosondowah ankyrin repeat domain family member A O ankyrin repeat domain 43|ankyrin repeat domain-containing protein 43|ankyrin repeat domain-containing protein SOWAHA|protein sosondowah homolog A 20121230 -9606 134549 SHROOM1 - APXL2 HGNC:24084|MIM:611179|Ensembl:ENSG00000164403|HPRD:10655|Vega:OTTHUMG00000059835 5 5q31.1 shroom family member 1 protein-coding SHROOM1 shroom family member 1 O apical protein 2|protein Shroom1 20121230 -9606 134553 C5orf24 - - HGNC:26746|Ensembl:ENSG00000181904|HPRD:08226|Vega:OTTHUMG00000129121 5 5q31.1 chromosome 5 open reading frame 24 protein-coding C5orf24 chromosome 5 open reading frame 24 O UPF0461 protein C5orf24 20121230 -9606 134637 ADAT2 hCG_18099 DEADC1|TAD2|dJ20N2|dJ20N2.1 HGNC:21172|Ensembl:ENSG00000189007|Vega:OTTHUMG00000015725 6 6q24.2 adenosine deaminase, tRNA-specific 2 protein-coding ADAT2 adenosine deaminase, tRNA-specific 2 O adenosine deaminase, tRNA-specific 2, TAD2 homolog|deaminase domain containing 1|deaminase domain-containing protein 1|tRNA-specific adenosine deaminase 2|tRNA-specific adenosine deaminase 2 homolog|tRNA-specific adenosine-34 deaminase subunit ADAT2 20121230 -9606 134701 RIPPLY2 - C6orf159|dJ237I15.1 HGNC:21390|MIM:609891|Ensembl:ENSG00000203877|HPRD:16658|Vega:OTTHUMG00000015117 6 6q14.2 ripply2 homolog (zebrafish) protein-coding RIPPLY2 ripply2 homolog (zebrafish) O protein ripply2 20121230 -9606 134728 IRAK1BP1 - AIP70|SIMPL HGNC:17368|Ensembl:ENSG00000146243|HPRD:17157|Vega:OTTHUMG00000015070 6 6q14-q15 interleukin-1 receptor-associated kinase 1 binding protein 1 protein-coding IRAK1BP1 interleukin-1 receptor-associated kinase 1 binding protein 1 O 4921528N06Rik|ActA binding protein 3|interleukin-1 receptor-associated kinase 1-binding protein 1 20121230 -9606 134756 RPL29P1 - RPL29_5_654|dJ336K20B.2 HGNC:21593 6 6p24.3 ribosomal protein L29 pseudogene 1 pseudo RPL29P1 ribosomal protein L29 pseudogene 1 O - 20121230 -9606 134829 CLVS2 RP11-160A10.4 C6orf212|C6orf213|RLBP1L2|bA160A10.4 HGNC:23046|Ensembl:ENSG00000146352|HPRD:16666|Vega:OTTHUMG00000015495 6 6q22.31 clavesin 2 protein-coding CLVS2 clavesin 2 O clavesin-2|retinaldehyde binding protein 1-like 2|retinaldehyde-binding protein 1-like 2 20121230 -9606 134860 TAAR9 - TA3|TAR3|TAR9|TRAR3 HGNC:20977|MIM:608282|Ensembl:ENSG00000237110|HPRD:16308|Vega:OTTHUMG00000015578 6 6q23.2 trace amine associated receptor 9 (gene/pseudogene) protein-coding TAAR9 trace amine associated receptor 9 (gene/pseudogene) O trace amine receptor 3|trace amine receptor 9|trace amine-associated receptor 9 20121230 -9606 134864 TAAR1 - RP11-295F4.9|TA1|TAR1|TRAR1 HGNC:17734|MIM:609333|Ensembl:ENSG00000146399|HPRD:18142|Vega:OTTHUMG00000015583 6 6q23.2 trace amine associated receptor 1 protein-coding TAAR1 trace amine associated receptor 1 O taR-1|trace amine receptor 1|trace amine-associated receptor 1 20121230 -9606 134957 STXBP5 RP11-361F15.4 LGL3|LLGL3|Nbla04300 HGNC:19665|MIM:604586|Ensembl:ENSG00000164506|HPRD:06845|Vega:OTTHUMG00000015766 6 6q24.3 syntaxin binding protein 5 (tomosyn) protein-coding STXBP5 syntaxin binding protein 5 (tomosyn) O lethal(2) giant larvae protein homolog 3|putative protein product of Nbla04300|syntaxin-binding protein 5|tomosyn|tomosyn-1 20121230 -9606 134997 PPIAP29 - - HGNC:43021 6 6p22.3 peptidylprolyl isomerase A (cyclophilin A) pseudogene 29 pseudo PPIAP29 peptidylprolyl isomerase A (cyclophilin A) pseudogene 29 O - 20121230 -9606 135112 NCOA7 RP1-187J11.1 ERAP140|ESNA1|Nbla00052|Nbla10993|dJ187J11.3 HGNC:21081|MIM:609752|Ensembl:ENSG00000111912|HPRD:14814|Vega:OTTHUMG00000015513 6 6q22.32 nuclear receptor coactivator 7 protein-coding NCOA7 nuclear receptor coactivator 7 O 140 kDa estrogen receptor-associated protein|estrogen nuclear receptor coactivator 1|estrogen receptor associated protein 140 kDa|putative protein product of Nbla00052|putative protein product of Nbla10993 20121230 -9606 135114 HINT3 - HINT4 HGNC:18468|MIM:609998|Ensembl:ENSG00000111911|HPRD:17107|Vega:OTTHUMG00000015514 6 6q22.32 histidine triad nucleotide binding protein 3 protein-coding HINT3 histidine triad nucleotide binding protein 3 O HINT-3|HIT-like protein|histidine triad nucleotide-binding protein 3 20121230 -9606 135138 PACRG hCG_1810756 GLUP|HAK005771|PARK2CRG|RP3-495O10.2 HGNC:19152|MIM:608427|Ensembl:ENSG00000112530|HPRD:07465|Vega:OTTHUMG00000016116 6 6q26 PARK2 co-regulated protein-coding PACRG PARK2 co-regulated O molecular chaperone/chaperonin-binding protein|parkin co-regulated gene protein|parkin coregulated gene protein 20121230 -9606 135152 B3GAT2 RP1-104A17.2 GLCATS HGNC:922|MIM:607497|Ensembl:ENSG00000112309|HPRD:06325|Vega:OTTHUMG00000014997 6 6q13 beta-1,3-glucuronyltransferase 2 (glucuronosyltransferase S) protein-coding B3GAT2 beta-1,3-glucuronyltransferase 2 (glucuronosyltransferase S) O UDP-glucuronosyltransferase S|UDP-glucuronyltransferase S|galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase 2|glcAT-D|glucuronosyltransferase S|uridine diphosphate glucuronic acid:acceptor glucuronosyltransferase 20121230 -9606 135154 C6orf57 - - HGNC:20957|Ensembl:ENSG00000154079|HPRD:12888|Vega:OTTHUMG00000014992 6 6q13 chromosome 6 open reading frame 57 protein-coding C6orf57 chromosome 6 open reading frame 57 O UPF0369 protein C6orf57 20121230 -9606 135228 CD109 - CPAMD7|RP11-525G3.1 HGNC:21685|MIM:608859|Ensembl:ENSG00000156535|HPRD:10590|Vega:OTTHUMG00000015040 6 6q13 CD109 molecule protein-coding CD109 CD109 molecule O 150 kDa TGF-beta-1-binding protein|C3 and PZP-like alpha-2-macroglobulin domain-containing protein 7|CD109 antigen|Gov platelet alloantigens|activated T-cell marker CD109|p180|platelet-specific Gov antigen|r150 20121230 -9606 135250 RAET1E UNQ1867/PRO4303 LETAL|N2DL-4|NKG2DL4|RAET1E2|RL-4|ULBP4|bA350J20.7 HGNC:16793|MIM:609243|Ensembl:ENSG00000164520|HPRD:16466|Vega:OTTHUMG00000015796 6 6q25.1 retinoic acid early transcript 1E protein-coding RAET1E retinoic acid early transcript 1E O NKG2D ligand 4|RAE-1-like transcript 4|lymphocyte effector toxicity activation ligand 20121230 -9606 135270 COPS5P - - HGNC:24332 6 6q16.1 COP9 constitutive photomorphogenic homolog subunit 5 (Arabidopsis) pseudogene pseudo COPS5P COP9 constitutive photomorphogenic homolog subunit 5 (Arabidopsis) pseudogene O - 20121230 -9606 135293 PM20D2 - ACY1L2|bA63L7.3 HGNC:21408|Ensembl:ENSG00000146281|HPRD:16473|Vega:OTTHUMG00000015193 6 6q15 peptidase M20 domain containing 2 protein-coding PM20D2 peptidase M20 domain containing 2 O aminoacylase 1-like 2|aminoacylase 1-like protein 2|aminoacylase-1-like protein 2|peptidase M20 domain-containing protein 2 20121230 -9606 135295 SRSF12 - RP11-63L7.3|SFRS13B|SFRS19|SRrp35 HGNC:21220|Ensembl:ENSG00000154548|HPRD:11605|Vega:OTTHUMG00000015192 6 6q15 serine/arginine-rich splicing factor 12 protein-coding SRSF12 serine/arginine-rich splicing factor 12 O 35 kDa SR repressor protein|SR splicing factor 12|serine-arginine repressor protein (35 kDa)|splicing factor, arginine/serine-rich 13B|splicing factor, arginine/serine-rich 19 20121230 -9606 135398 C6orf141 - - HGNC:21351|Ensembl:ENSG00000197261|HPRD:12852|Vega:OTTHUMG00000014820 6 6p12.3 chromosome 6 open reading frame 141 protein-coding C6orf141 chromosome 6 open reading frame 141 O uncharacterized protein C6orf141 20121230 -9606 135458 HUS1B - RP11-532F6.1 HGNC:16485|MIM:609713|HPRD:13722 6 6p25.3 HUS1 checkpoint homolog b (S. pombe) protein-coding HUS1B HUS1 checkpoint homolog b (S. pombe) O checkpoint protein HUS1B|hHUS1B 20121230 -9606 135644 TRIM40 DAAP-200B17.3 RNF35 HGNC:18736|Ensembl:ENSG00000204614|HPRD:15557|Vega:OTTHUMG00000031083 6 6p22.1 tripartite motif containing 40 protein-coding TRIM40 tripartite motif containing 40 O RING finger protein 35|probable E3 NEDD8-protein ligase|ring finger RNF35|ring finger protein 40|tripartite motif-containing 40|tripartite motif-containing protein 40 20121230 -9606 135656 DPCR1 DADB-160J14.5 PBLT HGNC:21666|MIM:613928|Ensembl:ENSG00000168631|HPRD:16073|Vega:OTTHUMG00000031104 6 6p21.33 diffuse panbronchiolitis critical region 1 protein-coding DPCR1 diffuse panbronchiolitis critical region 1 O diffuse panbronchiolitis critical region protein 1 20121230 -9606 135886 WBSCR28 - - HGNC:23018|MIM:612547|Ensembl:ENSG00000175877|HPRD:15662|Vega:OTTHUMG00000157243 7 7q11.23 Williams-Beuren syndrome chromosome region 28 protein-coding WBSCR28 Williams-Beuren syndrome chromosome region 28 O Williams-Beuren syndrome chromosomal region 28 protein|Williams-Beuren syndrome critical region 28 20121230 -9606 135892 TRIM50 - TRIM50A HGNC:19017|MIM:612548|Ensembl:ENSG00000146755|HPRD:15566|Vega:OTTHUMG00000156805 7 7q11.23 tripartite motif containing 50 protein-coding TRIM50 tripartite motif containing 50 O E3 ubiquitin ligase|E3 ubiquitin-protein ligase TRIM50|tripartite motif protein 50|tripartite motif-containing 50|tripartite motif-containing 50A|tripartite motif-containing protein 50 20121230 -9606 135924 OR9A2 - - HGNC:15093|Ensembl:ENSG00000179468|HPRD:15088|Vega:OTTHUMG00000158386 7 7q34 olfactory receptor, family 9, subfamily A, member 2 protein-coding OR9A2 olfactory receptor, family 9, subfamily A, member 2 O olfactory receptor 9A2|olfactory receptor OR7-2 20121230 -9606 135927 C7orf34 - ctm-1 HGNC:21750|Ensembl:ENSG00000165131|HPRD:12922|Vega:OTTHUMG00000152664 7 7q34 chromosome 7 open reading frame 34 protein-coding C7orf34 chromosome 7 open reading frame 34 O MSSP-binding protein CTM-1|uncharacterized protein C7orf34 20121230 -9606 135932 TMEM139 UNQ1932/PRO4407 - HGNC:22058|Ensembl:ENSG00000178826|HPRD:08298|Vega:OTTHUMG00000152652 7 7q34 transmembrane protein 139 protein-coding TMEM139 transmembrane protein 139 O - 20121230 -9606 135935 NOBOX hCG_20958 OG-2|OG2|OG2X|POF5|TCAG_12042 HGNC:22448|MIM:610934|Ensembl:ENSG00000106410|Vega:OTTHUMG00000158051 7 7q35 NOBOX oogenesis homeobox protein-coding NOBOX NOBOX oogenesis homeobox O homeobox protein NOBOX|newborn ovary homeobox-encoding 20121230 -9606 135941 OR2A14 - OR2A14P|OR2A6|OST182 HGNC:15084|Ensembl:ENSG00000221938|HPRD:14930|Vega:OTTHUMG00000158003 7 7q35 olfactory receptor, family 2, subfamily A, member 14 protein-coding OR2A14 olfactory receptor, family 2, subfamily A, member 14 O olfactory receptor 2A14|olfactory receptor 2A6|olfactory receptor OR7-12|olfactory receptor, family 2, subfamily A, member 14 pseudogene|olfactory receptor, family 2, subfamily A, member 6 20121230 -9606 135942 OR2A15P - OR2A23P|OR2A28P HGNC:15085 7 7q35 olfactory receptor, family 2, subfamily A, member 15 pseudogene pseudo OR2A15P olfactory receptor, family 2, subfamily A, member 15 pseudogene O - 20121230 -9606 135946 OR6B1 - OR7-3|OR7-9 HGNC:8354|Ensembl:ENSG00000221813|HPRD:15055|Vega:OTTHUMG00000157765 7 7q35 olfactory receptor, family 6, subfamily B, member 1 protein-coding OR6B1 olfactory receptor, family 6, subfamily B, member 1 O olfactory receptor 6B1|olfactory receptor 7-3|olfactory receptor OR7-9 20121230 -9606 135948 OR2F2 - OR7-1 HGNC:8247|Ensembl:ENSG00000221910|HPRD:14939|Vega:OTTHUMG00000157768 7 7q35 olfactory receptor, family 2, subfamily F, member 2 protein-coding OR2F2 olfactory receptor, family 2, subfamily F, member 2 O olfactory receptor 2F2|olfactory receptor 7-1|olfactory receptor OR7-6 20121230 -9606 136051 ZNF786 - - HGNC:21806|Ensembl:ENSG00000197362|HPRD:13232|Vega:OTTHUMG00000158975 7 7q36.1 zinc finger protein 786 protein-coding ZNF786 zinc finger protein 786 O - 20121230 -9606 136157 SSU72P8 hCG_1651160 - HGNC:43627 7 7q31.33 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 8 pseudo SSU72P8 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 8 O - 20121230 -9606 136227 EMID2 - COL26A1|EMI6|EMU2|SH2B HGNC:18038|MIM:608927|Ensembl:ENSG00000160963|HPRD:16405|Vega:OTTHUMG00000150033 7 7q22.1 EMI domain containing 2 protein-coding EMID2 EMI domain containing 2 O collagen alpha-1(XXVI) chain|collagen, type XXVI, alpha 1|emilin and multimerin domain-containing protein 2|putative emu2 20121230 -9606 136242 PRSS37 - TRYX2 HGNC:29211|Ensembl:ENSG00000165076|HPRD:17297|Vega:OTTHUMG00000157174 7 7q34 protease, serine, 37 protein-coding PRSS37 protease, serine, 37 O Peptidase S1 domain-containing protein LOC136242|probable inactive serine protease 37|probable inactive trypsin-X2 20121230 -9606 136259 KLF14 - BTEB5 HGNC:23025|MIM:609393|Ensembl:ENSG00000174595|HPRD:13919|Vega:OTTHUMG00000155002 7 7q32.3 Kruppel-like factor 14 protein-coding KLF14 Kruppel-like factor 14 O BTE-binding protein 5|Krueppel-like factor 14|basic transcription element-binding protein 5|transcription factor BTEB5 20121230 -9606 136263 C7orf45 - - HGNC:29580|Ensembl:ENSG00000165120|HPRD:14060|Vega:OTTHUMG00000157844 7 7q32.2 chromosome 7 open reading frame 45 protein-coding C7orf45 chromosome 7 open reading frame 45 O uncharacterized protein C7orf45 20121230 -9606 136288 C7orf57 - - HGNC:22247|Ensembl:ENSG00000164746|Vega:OTTHUMG00000155808 7 7p12.3 chromosome 7 open reading frame 57 protein-coding C7orf57 chromosome 7 open reading frame 57 O uncharacterized protein C7orf57 20121230 -9606 136306 SVOPL - - HGNC:27034|MIM:611700|Ensembl:ENSG00000157703|HPRD:11235|Vega:OTTHUMG00000155870 7 7q34 SVOP-like protein-coding SVOPL SVOP-like O SV2 related protein homolog-like|SV2-related protein-like|SVOP-like protein|putative transporter SVOPL 20121230 -9606 136307 IMPDH1P3 - - HGNC:33958 7 7q33 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 3 pseudo IMPDH1P3 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 3 O - 20121230 -9606 136319 MTPN - GCDP|V-1 HGNC:15667|MIM:606484|Ensembl:ENSG00000105887|HPRD:07574|Vega:OTTHUMG00000155627 7 7q33 myotrophin protein-coding MTPN myotrophin O granule cell differentiation protein|protein V-1 20121230 -9606 136332 LRGUK - - HGNC:21964|Ensembl:ENSG00000155530|HPRD:08734|Vega:OTTHUMG00000155320 7 7q33 leucine-rich repeats and guanylate kinase domain containing protein-coding LRGUK leucine-rich repeats and guanylate kinase domain containing O leucine-rich repeat and guanylate kinase domain-containing protein 20121230 -9606 136371 ASB10 - - HGNC:17185|Ensembl:ENSG00000146926|Vega:OTTHUMG00000157013 7 7q36.1 ankyrin repeat and SOCS box containing 10 protein-coding ASB10 ankyrin repeat and SOCS box containing 10 O ankyrin repeat and SOCS box protein 10 20121230 -9606 136540 PRSS3P3 - TRY3 HGNC:43790 7 7q34 protease, serine, 3 pseudogene 3 pseudo PRSS3P3 protease, serine, 3 pseudogene 3 O - 20121230 -9606 136541 PRSS58 UNQ2540/PRO6090 PRSS1|TRY1|TRYX3|UNQ2540 HGNC:39125|Ensembl:ENSG00000258223|HPRD:15572|Vega:OTTHUMG00000158565 7 7q34 protease, serine, 58 protein-coding PRSS58 protease, serine, 58 O serine protease 58|trypsin X3|trypsin-X3 20121230 -9606 136647 MPLKIP - ABHS|C7orf11|ORF20 HGNC:16002|MIM:609188|Ensembl:ENSG00000168303|HPRD:12907|Vega:OTTHUMG00000128797 7 7p14.1 M-phase specific PLK1 interacting protein protein-coding MPLKIP M-phase specific PLK1 interacting protein O M-phase-specific PLK1-interacting protein|Russell-Silver syndrome region|TTD non-photosensitive 1 protein 20121230 -9606 136853 SRCRB4D - S4D-SRCRB|SRCRB-S4D|SSC4D HGNC:14461|MIM:607639|Ensembl:ENSG00000146700|HPRD:06364|Vega:OTTHUMG00000022864 7 7q11.23 scavenger receptor cysteine rich domain containing, group B (4 domains) protein-coding SRCRB4D scavenger receptor cysteine rich domain containing, group B (4 domains) O S4-SRCRB|scavenger receptor cysteine-rich domain-containing group B protein|scavenger receptor cysteine-rich protein SRCRB-S4D 20121230 -9606 136895 C7orf31 - - HGNC:21722|Ensembl:ENSG00000153790|HPRD:12919|Vega:OTTHUMG00000128497 7 7p15.3 chromosome 7 open reading frame 31 protein-coding C7orf31 chromosome 7 open reading frame 31 O uncharacterized protein C7orf31 20121230 -9606 136991 ASZ1 - ALP1|ANKL1|C7orf7|CT1.19|GASZ|Orf3 HGNC:1350|MIM:605797|Ensembl:ENSG00000154438|HPRD:10677|Vega:OTTHUMG00000064565 7 7q31.2 ankyrin repeat, SAM and basic leucine zipper domain containing 1 protein-coding ASZ1 ankyrin repeat, SAM and basic leucine zipper domain containing 1 O 4933400N19Rik|ankyrin repeat, SAM and basic leucine zipper domain-containing protein 1|ankyrin-like 1|ankyrin-like protein 1|germ cell-specific ankyrin, SAM and basic leucine zipper domain-containing protein 20121230 -9606 137012 PPM1AP1 - - HGNC:30175 8 8p22 protein phosphatase, Mg2+/Mn2+ dependent 1A, pseudogene 1 pseudo PPM1AP1 protein phosphatase, Mg2+/Mn2+ dependent 1A, pseudogene 1 O - 20121230 -9606 137075 CLDN23 hCG_1646163 CLDNL|hCG1646163 HGNC:17591|MIM:609203|Ensembl:ENSG00000253958|HPRD:13069|Vega:OTTHUMG00000163674 8 8p23.1 claudin 23 protein-coding CLDN23 claudin 23 O 2310014B08Rik|claudin-23 20121230 -9606 137107 RPL10AP3 - HsT23218|RPL10A_5_891 HGNC:29803 8 8p12 ribosomal protein L10a pseudogene 3 pseudo RPL10AP3 ribosomal protein L10a pseudogene 3 O - 20121230 -9606 137133 PSAT1P1 - C8orf62 HGNC:15785 8 8q11.21 phosphoserine aminotransferase 1 pseudogene 1 pseudo PSAT1P1 phosphoserine aminotransferase 1 pseudogene 1 O - 20121230 -9606 137196 CCDC26 - RAM HGNC:28416|MIM:613040|HPRD:14523 8 8q24.21 coiled-coil domain containing 26 other CCDC26 coiled-coil domain containing 26 O - 20121221 -9606 137209 ZNF572 - - HGNC:26758|Ensembl:ENSG00000180938|HPRD:15851|Vega:OTTHUMG00000164988 8 8q24.13 zinc finger protein 572 protein-coding ZNF572 zinc finger protein 572 O - 20121230 -9606 137290 MRPL9P1 - - HGNC:29726 8 8q21.11 mitochondrial ribosomal protein L9 pseudogene 1 pseudo MRPL9P1 mitochondrial ribosomal protein L9 pseudogene 1 O - 20121230 -9606 137362 GOT1L1 - - HGNC:28487|Ensembl:ENSG00000169154|HPRD:14558|Vega:OTTHUMG00000164027 8 8p11.23 glutamic-oxaloacetic transaminase 1-like 1 protein-coding GOT1L1 glutamic-oxaloacetic transaminase 1-like 1 O glutamate oxaloacetate transaminase 1-like protein 1|putative aspartate aminotransferase, cytoplasmic 2|transaminase A-like protein 1 20121230 -9606 137392 FAM92A1 - - HGNC:30452|Ensembl:ENSG00000188343|HPRD:14061|Vega:OTTHUMG00000164238 8 8q22.1 family with sequence similarity 92, member A1 protein-coding FAM92A1 family with sequence similarity 92, member A1 O protein FAM92A1 20121230 -9606 137406 MRPS16P1 - - HGNC:29732 8 8q21.3 mitochondrial ribosomal protein S16 pseudogene 1 pseudo MRPS16P1 mitochondrial ribosomal protein S16 pseudogene 1 O - 20121230 -9606 137492 VPS37A - HCRP1|PQBP2|SPG53 HGNC:24928|MIM:609927|Ensembl:ENSG00000155975|HPRD:13410|Vega:OTTHUMG00000130785 8 8p22 vacuolar protein sorting 37 homolog A (S. cerevisiae) protein-coding VPS37A vacuolar protein sorting 37 homolog A (S. cerevisiae) O ESCRT-I complex subunit VPS37A|hepatocellular carcinoma-related protein 1|polyglutamine binding protein 2|vacuolar protein sorting-associated protein 37A 20121230 -9606 137529 CKS1BP7 - CKS1|CKS1A HGNC:1999 8 8q21.13 CDC28 protein kinase regulatory subunit 1B pseudogene 7 pseudo CKS1BP7 CDC28 protein kinase regulatory subunit 1B pseudogene 7 O CDC28 protein kinase regulatory subunit 1A 20121230 -9606 137682 NDUFAF6 - C8orf38 HGNC:28625|MIM:612392|Ensembl:ENSG00000156170|HPRD:17553|Vega:OTTHUMG00000150173 8 8q22.1 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 protein-coding NDUFAF6 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 O UPF0551 protein C8orf38, mitochondrial|putative phytoene synthase 20121230 -9606 137695 TMEM68 - - HGNC:26510|Ensembl:ENSG00000167904|HPRD:08128|Vega:OTTHUMG00000164293 8 8q12.1 transmembrane protein 68 protein-coding TMEM68 transmembrane protein 68 O - 20121230 -9606 137735 ABRA - STARS HGNC:30655|MIM:609747|Ensembl:ENSG00000174429|HPRD:11608|Vega:OTTHUMG00000164809 8 8q23.1 actin-binding Rho activating protein protein-coding ABRA actin-binding Rho activating protein O actin-binding Rho-activating protein|striated muscle activator of Rho-dependent signaling 20121230 -9606 137797 LYPD2 UNQ430/PRO788 LYPDC2|UNQ430 HGNC:25215|Ensembl:ENSG00000197353|HPRD:14334|Vega:OTTHUMG00000164686 8 8q24.3 LY6/PLAUR domain containing 2 protein-coding LYPD2 LY6/PLAUR domain containing 2 O RGTR430|ly6/PLAUR domain-containing protein 2 20121230 -9606 137814 NKX2-6 - CSX2|NKX2F|NKX4-2 HGNC:32940|MIM:611770|Ensembl:ENSG00000180053|Vega:OTTHUMG00000163867 8 8p21.2 NK2 homeobox 6 protein-coding NKX2-6 NK2 homeobox 6 O NK2 transcription factor related, locus 6|homeobox protein NK2 homolog F|homeobox protein NKX2.6|homeobox protein Nkx-2.6|tinman paralog 20121230 -9606 137835 TMEM71 - - HGNC:26572|Ensembl:ENSG00000165071|HPRD:08154|Vega:OTTHUMG00000164647 8 8q24.22 transmembrane protein 71 protein-coding TMEM71 transmembrane protein 71 O - 20121230 -9606 137868 SGCZ - ZSG1 HGNC:14075|MIM:608113|Ensembl:ENSG00000185053|HPRD:12165|Vega:OTTHUMG00000090827 8 8p22 sarcoglycan, zeta protein-coding SGCZ sarcoglycan, zeta O zeta-SG|zeta-sarcoglycan 20121230 -9606 137872 ADHFE1 HMFT2263 ADH8|HOT HGNC:16354|MIM:611083|Ensembl:ENSG00000147576|HPRD:12428|Vega:OTTHUMG00000150215 8 8q13.1 alcohol dehydrogenase, iron containing, 1 protein-coding ADHFE1 alcohol dehydrogenase, iron containing, 1 O Fe-containing alcohol dehydrogenase 1|alcohol dehydrogenase 8|alcohol dehydrogenase iron-containing protein 1|hydroxyacid-oxoacid transhydrogenase, mitochondrial 20121230 -9606 137886 UBXN2B - p37 HGNC:27035|MIM:610686|Ensembl:ENSG00000215114|Vega:OTTHUMG00000164300 8 8q12.1 UBX domain protein 2B protein-coding UBXN2B UBX domain protein 2B O NSFL1 cofactor p37|UBX domain-containing protein 2B|p97 cofactor p37 20121230 -9606 137902 PXDNL - PRM1|VPO2 HGNC:26359|Ensembl:ENSG00000147485|HPRD:08693|Vega:OTTHUMG00000164244 8 8q11.22-q11.23 peroxidasin homolog (Drosophila)-like protein-coding PXDNL peroxidasin homolog (Drosophila)-like O cardiac peroxidase|cardiovascular peroxidase 2|peroxidasin homolog-like|peroxidasin-like protein|polysomal ribonuclease 1|vascular peroxidase 2 20121230 -9606 137964 AGPAT6 UNQ551/PRO1108 1-AGPAT 6|LPAAT-zeta|LPAATZ|TSARG7 HGNC:20880|MIM:608143|Ensembl:ENSG00000158669|HPRD:12175|Vega:OTTHUMG00000164082 8 8p11.21 1-acylglycerol-3-phosphate O-acyltransferase 6 (lysophosphatidic acid acyltransferase, zeta) protein-coding AGPAT6 1-acylglycerol-3-phosphate O-acyltransferase 6 (lysophosphatidic acid acyltransferase, zeta) O 1-AGP acyltransferase 6|1-acyl-sn-glycerol-3-phosphate acyltransferase zeta|glycerol-3-phosphate acyltransferase 6|lysophosphatidic acid acyltransferase zeta|testis spermatogenesis apoptosis-related protein 7 20121230 -9606 137970 UNC5D UNQ6012/PRO34692 PRO34692|Unc5h4 HGNC:18634|Ensembl:ENSG00000156687|HPRD:11661|Vega:OTTHUMG00000157145 8 8p12 unc-5 homolog D (C. elegans) protein-coding UNC5D unc-5 homolog D (C. elegans) O netrin receptor UNC5D|netrin receptor Unc5h4|protein unc-5 homolog 4|protein unc-5 homolog D|unc-5 homolog 4 20121230 -9606 137994 LETM2 - - HGNC:14648|Ensembl:ENSG00000165046|HPRD:08060|Vega:OTTHUMG00000165059 8 8p11.23 leucine zipper-EF-hand containing transmembrane protein 2 protein-coding LETM2 leucine zipper-EF-hand containing transmembrane protein 2 O LETM1 and EF-hand domain-containing protein 2|LETM1 domain-containing protein LETM2, mitochondrial|leucine zipper-EF-hand containing transmembrane protein 1-like protein 20121230 -9606 138009 DCAF4L2 - WDR21C HGNC:26657|Ensembl:ENSG00000176566|HPRD:08187|Vega:OTTHUMG00000163767 8 8q21.3 DDB1 and CUL4 associated factor 4-like 2 protein-coding DCAF4L2 DDB1 and CUL4 associated factor 4-like 2 O DDB1- and CUL4-associated factor 4-like protein 2|WD repeat domain 21C|WD repeat-containing protein 21C 20121230 -9606 138046 RALYL - HNRPCL3 HGNC:27036|MIM:614648|Ensembl:ENSG00000184672|HPRD:11236|Vega:OTTHUMG00000164628 8 8q21.2 RALY RNA binding protein-like protein-coding RALYL RALY RNA binding protein-like O RNA-binding Raly-like protein|hRALYL|heterogeneous nuclear ribonucleoprotein C-like 3|hnRNP core protein C-like 3 20121230 -9606 138050 HGSNAT - HGNAT|MPS3C|TMEM76 HGNC:26527|MIM:610453|Ensembl:ENSG00000165102|Vega:OTTHUMG00000164102 8 8p11.1 heparan-alpha-glucosaminide N-acetyltransferase protein-coding HGSNAT heparan-alpha-glucosaminide N-acetyltransferase O transmembrane protein 76 20121230 -9606 138065 RNF183 - - HGNC:28721|Ensembl:ENSG00000165188|HPRD:10082|Vega:OTTHUMG00000020520 9 9q32 ring finger protein 183 protein-coding RNF183 ring finger protein 183 O RING finger protein 183 20121230 -9606 138151 NACC2 - BEND9|BTBD14|BTBD14A HGNC:23846|Ensembl:ENSG00000148411|HPRD:09831|Vega:OTTHUMG00000020921 9 9q34.3 NACC family member 2, BEN and BTB (POZ) domain containing protein-coding NACC2 NACC family member 2, BEN and BTB (POZ) domain containing O BEN domain containing 9|BTB (POZ) domain containing 14A|BTB/POZ domain-containing protein 14A|NAC-2|nucleus accumbens-associated protein 2 20121230 -9606 138159 LOC138159 - - - 9 9q34.3 progestagen-associated endometrial protein pseudogene pseudo - - - - 20121230 -9606 138162 C9orf116 RP11-426A6.4 PIERCE1|RbEST47 HGNC:28435|MIM:614502|Ensembl:ENSG00000160345|HPRD:12937|Vega:OTTHUMG00000020902 9 9q34.3 chromosome 9 open reading frame 116 protein-coding C9orf116 chromosome 9 open reading frame 116 O UPF0691 protein C9orf116|p53-induced expression 1 in Rb−/− cells|p53-induced expression in RB-null cells protein 1|pierce 1 20121230 -9606 138199 C9orf41 RP11-197P3.7 - HGNC:23435|Ensembl:ENSG00000156017|HPRD:12958|Vega:OTTHUMG00000020032 9 9q21.13 chromosome 9 open reading frame 41 protein-coding C9orf41 chromosome 9 open reading frame 41 O UPF0586 protein C9orf41 20121230 -9606 138234 LOC138234 - - - 9 9p24.2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit d pseudogene pseudo - - - - 20121230 -9606 138240 C9orf57 - RP11-346E17.3 HGNC:27037|Ensembl:ENSG00000204669|Vega:OTTHUMG00000020003 9 9q21.13 chromosome 9 open reading frame 57 protein-coding C9orf57 chromosome 9 open reading frame 57 O uncharacterized protein C9orf57 20121230 -9606 138241 C9orf85 RP11-346E17.2 - HGNC:28784|Ensembl:ENSG00000155621|HPRD:12983|Vega:OTTHUMG00000020002 9 9q21.13 chromosome 9 open reading frame 85 protein-coding C9orf85 chromosome 9 open reading frame 85 O uncharacterized protein C9orf85 20121230 -9606 138255 C9orf135 - - HGNC:31422|Ensembl:ENSG00000204711|HPRD:17298|Vega:OTTHUMG00000019985 9 9q21.12 chromosome 9 open reading frame 135 protein-coding C9orf135 chromosome 9 open reading frame 135 O uncharacterized protein C9orf135 20121230 -9606 138307 LCN8 - EP17|LCN5 HGNC:27038|MIM:612902|Ensembl:ENSG00000204001|HPRD:18549|Vega:OTTHUMG00000020942 9 9q34.3 lipocalin 8 protein-coding LCN8 lipocalin 8 O epididymal-specific lipocalin-8|lipocalin 5 20121230 -9606 138311 FAM69B PP6977 C9orf136|pp6977 HGNC:28290|MIM:614543|Ensembl:ENSG00000165716|HPRD:14468|Vega:OTTHUMG00000020940 9 9q34.3 family with sequence similarity 69, member B protein-coding FAM69B family with sequence similarity 69, member B O protein FAM69B 20121230 -9606 138412 SLC25A6P2 - - HGNC:43850 9 9p21.1 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene 2 pseudo SLC25A6P2 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene 2 O - 20121230 -9606 138428 PTRH1 - C9orf115|PTH1 HGNC:27039|Ensembl:ENSG00000187024|HPRD:12936|Vega:OTTHUMG00000020710 9 9q34.11 peptidyl-tRNA hydrolase 1 homolog (S. cerevisiae) protein-coding PTRH1 peptidyl-tRNA hydrolase 1 homolog (S. cerevisiae) O PTH|probable peptidyl-tRNA hydrolase 20121230 -9606 138429 PIP5KL1 RP11-203J24.5 PIPKH|bA203J24.5 HGNC:28711|MIM:612865|Ensembl:ENSG00000167103|HPRD:15139|Vega:OTTHUMG00000020719 9 9q34.11 phosphatidylinositol-4-phosphate 5-kinase-like 1 protein-coding PIP5KL1 phosphatidylinositol-4-phosphate 5-kinase-like 1 O PI(4)P 5-kinase-like protein 1|phosphatidylinositol 4-phosphate 5-kinase-like protein 1|phosphatidylinositol phosphate kinase homolog|phosphatidylinositol-4-phosphate 5-kinase-like protein 1|ptdIns(4)P-5-kinase-like protein 1 20121230 -9606 138474 TAF1L - TAF2A2 HGNC:18056|MIM:607798|Ensembl:ENSG00000122728|HPRD:09696|Vega:OTTHUMG00000019747 9 9p21.1 TAF1 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 210kDa-like protein-coding TAF1L TAF1 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 210kDa-like O TAF(II)210|TBP-associated factor 1-like|TBP-associated factor 210 kDa|TBP-associated factor RNA polymerase 1-like|transcription initiation factor TFIID 210 kDa subunit|transcription initiation factor TFIID subunit 1-like 20121230 -9606 138639 PTPDC1 RP11-490F3.2 PTP9Q22 HGNC:30184|Ensembl:ENSG00000158079|HPRD:06689|Vega:OTTHUMG00000020258 9 9q22.32 protein tyrosine phosphatase domain containing 1 protein-coding PTPDC1 protein tyrosine phosphatase domain containing 1 O protein tyrosine phosphatase PTP9Q22|protein tyrosine phosphatase domain-containing protein 1 20121230 -9606 138649 ANKRD19P RP11-526D8.10-001 ANKRD19|bA526D8.2 HGNC:22567|HPRD:16490 9 9q22.31 ankyrin repeat domain 19, pseudogene pseudo ANKRD19P ankyrin repeat domain 19, pseudogene O - 20121230 -9606 138652 PRSS47 - - HGNC:37326 9 9q22.31 protease, serine, 47 unknown PRSS47 protease, serine, 47 O - 20120610 -9606 138715 ARID3C - - HGNC:21209|Ensembl:ENSG00000205143|HPRD:18550|Vega:OTTHUMG00000000445 9 9p13.3 AT rich interactive domain 3C (BRIGHT-like) protein-coding ARID3C AT rich interactive domain 3C (BRIGHT-like) O ARID domain-containing protein 3C|AT-rich interactive domain-containing protein 3C 20121230 -9606 138716 RPP25L - C9orf23|bA296L22.5 HGNC:19909|Ensembl:ENSG00000164967|HPRD:12948|Vega:OTTHUMG00000000443 9 9p13.3 ribonuclease P/MRP 25kDa subunit-like protein-coding RPP25L ribonuclease P/MRP 25kDa subunit-like O RNase P protein subunit-like p25|alba-like protein C9orf23|ribonuclease P protein subunit p25-like protein|rpp25-like protein 20121230 -9606 138724 C9orf131 - - HGNC:31418|Ensembl:ENSG00000174038|HPRD:14616|Vega:OTTHUMG00000019853 9 9p13.3 chromosome 9 open reading frame 131 protein-coding C9orf131 chromosome 9 open reading frame 131 O uncharacterized protein C9orf131 20121230 -9606 138799 OR13C5 - OR9-11 HGNC:15100|Ensembl:ENSG00000255800|HPRD:14907|Vega:OTTHUMG00000020408 9 9q31.1 olfactory receptor, family 13, subfamily C, member 5 protein-coding OR13C5 olfactory receptor, family 13, subfamily C, member 5 O olfactory receptor 13C5|olfactory receptor OR9-11 20121230 -9606 138802 OR13C8 - OR37H|OR9-10 HGNC:15103|Ensembl:ENSG00000186943|HPRD:14908|Vega:OTTHUMG00000020409 9 9q31.1 olfactory receptor, family 13, subfamily C, member 8 protein-coding OR13C8 olfactory receptor, family 13, subfamily C, member 8 O olfactory receptor 13C8|olfactory receptor OR9-10 pseudogene 20121230 -9606 138803 OR13C3 - OR37G|OR9-8 HGNC:14704|Ensembl:ENSG00000204246|HPRD:14906|Vega:OTTHUMG00000020406 9 9q31.1 olfactory receptor, family 13, subfamily C, member 3 protein-coding OR13C3 olfactory receptor, family 13, subfamily C, member 3 O olfactory receptor 13C3|olfactory receptor OR9-8 20121230 -9606 138804 OR13C4 - HSHTPCRX17|HTPCRX17|OR2K1|OR37F|OR9-7 HGNC:14722|Ensembl:ENSG00000148136|HPRD:11411|Vega:OTTHUMG00000020407 9 9q31.1 olfactory receptor, family 13, subfamily C, member 4 protein-coding OR13C4 olfactory receptor, family 13, subfamily C, member 4 O olfactory receptor 13C4|olfactory receptor OR9-7|olfactory receptor, family 2, subfamily K, member 1 20121230 -9606 138805 OR13F1 - OR9-6 HGNC:14723|Ensembl:ENSG00000186881|HPRD:14911|Vega:OTTHUMG00000020404 9 9q31.1 olfactory receptor, family 13, subfamily F, member 1 protein-coding OR13F1 olfactory receptor, family 13, subfamily F, member 1 O olfactory receptor 13F1|olfactory receptor OR9-6 20121230 -9606 138864 LOC138864 - - - 9 9p23 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit d pseudogene pseudo - - - - 20121230 -9606 138881 OR1L8 RP11-542K23.8 OR9-24 HGNC:15110|Ensembl:ENSG00000171496|HPRD:14923|Vega:OTTHUMG00000020609 9 9q33.2 olfactory receptor, family 1, subfamily L, member 8 protein-coding OR1L8 olfactory receptor, family 1, subfamily L, member 8 O olfactory receptor 1L8|olfactory receptor OR9-24 20121230 -9606 138882 OR1N2 RP11-542K23.2 OR9-23 HGNC:15111|Ensembl:ENSG00000171501|HPRD:14925|Vega:OTTHUMG00000020607 9 9q33.2 olfactory receptor, family 1, subfamily N, member 2 protein-coding OR1N2 olfactory receptor, family 1, subfamily N, member 2 O olfactory receptor 1N2|olfactory receptor OR9-23 20121230 -9606 138883 OR1N1 RP11-542K23.3 OR1-26|OR1N3|OR9-22 HGNC:8221|Ensembl:ENSG00000171505|HPRD:14924|Vega:OTTHUMG00000020608 9 9q33.2 olfactory receptor, family 1, subfamily N, member 1 protein-coding OR1N1 olfactory receptor, family 1, subfamily N, member 1 O olfactory receptor 1-26|olfactory receptor 1N1|olfactory receptor 1N3|olfactory receptor OR9-22|olfactory receptor, family 1, subfamily N, member 3 20121230 -9606 138916 SYNGR2P2 - - HGNC:33947 9 9q21.2 synaptogyrin 2 pseudogene 2 pseudo SYNGR2P2 synaptogyrin 2 pseudogene 2 O - 20121230 -9606 138948 DBH-AS1 - NCRNA00118 HGNC:24155 9 9q34.2 DBH antisense RNA 1 miscRNA DBH-AS1 DBH antisense RNA 1 O - 20121230 -9606 138971 LOC138971 - - - 9 9q21.13 dipeptidyl-peptidase 3 pseudogene pseudo - - - - 20121230 -9606 139041 PSMAGEA - - - X Xq28 melanoma antigen family A, 4 pseudogene pseudo - - - - 20121230 -9606 139060 LOC139060 - - - X Xp11.3 keratin, type I cytoskeletal 18-like pseudo - - - - 20121230 -9606 139061 LOC139061 - - - X Xp11.3 plasmolipin pseudogene pseudo - - - - 20121230 -9606 139065 SLITRK4 - - HGNC:23502|MIM:300562|Ensembl:ENSG00000179542|HPRD:06486|Vega:OTTHUMG00000022580 X Xq27.3 SLIT and NTRK-like family, member 4 protein-coding SLITRK4 SLIT and NTRK-like family, member 4 O SLIT and NTRK-like protein 4|slit and trk like gene 4 20121230 -9606 139067 SPANXN3 - CT11.8|SPANX-N3 HGNC:33176|MIM:300666|Ensembl:ENSG00000189252|HPRD:18092|Vega:OTTHUMG00000022582 X Xq27.3 SPANX family, member N3 protein-coding SPANXN3 SPANX family, member N3 O cancer/testis antigen family 11, member 8|nuclear-associated protein SPAN-Xn3|sperm protein associated with the nucleus on the X chromosome N3 20121230 -9606 139081 MAGEC3 RP6-232G24.3 CT7.2|HCA2|MAGE-C3|MAGEC4 HGNC:23798|MIM:300469|Ensembl:ENSG00000165509|HPRD:06629|Vega:OTTHUMG00000022570 X Xq27.2 melanoma antigen family C, 3 protein-coding MAGEC3 melanoma antigen family C, 3 O MAGE family testis and tumor-specific protein|MAGE-C3 antigen|cancer/testis antigen 7.2|cancer/testis antigen family 7, member 2|hepatocellular carcinoma-associated antigen 2|hepatocellular carcinoma-associated protein HCA2|melanoma-associated antigen C3 20121230 -9606 139105 BEND2 RP5-1129A6.2 CXorf20 HGNC:28509|Ensembl:ENSG00000177324|HPRD:06646|Vega:OTTHUMG00000021211 X Xp22.13 BEN domain containing 2 protein-coding BEND2 BEN domain containing 2 O BEN domain-containing protein 2 20121230 -9606 139135 PASD1 - CT63|OXTES1 HGNC:20686|Ensembl:ENSG00000166049|HPRD:06613|Vega:OTTHUMG00000024169 X Xq28 PAS domain containing 1 protein-coding PASD1 PAS domain containing 1 O PAS domain-containing protein 1|cancer/testis antigen 63 20121230 -9606 139163 SALL1P1 - SALL1P HGNC:10525 X Xp11.23 sal-like 1 (Drosophila) pseudogene 1 pseudo SALL1P1 sal-like 1 (Drosophila) pseudogene 1 O - 20121230 -9606 139170 DCAF12L1 - KIAA1892L|WDR40B HGNC:29395|Ensembl:ENSG00000198889|HPRD:06604|Vega:OTTHUMG00000022353 X Xq25 DDB1 and CUL4 associated factor 12-like 1 protein-coding DCAF12L1 DDB1 and CUL4 associated factor 12-like 1 O DDB1- and CUL4-associated factor 12-like protein 1|WD repeat domain 40B|WD repeat-containing protein 40B 20121230 -9606 139189 DGKK - - HGNC:32395|MIM:300837|HPRD:10299 X Xp11.22 diacylglycerol kinase, kappa protein-coding DGKK diacylglycerol kinase, kappa O 142 kDa diacylglycerol kinase|DAG kinase kappa|DGK-kappa|diacylglycerol kinase kappa|diglyceride kinase kappa 20121230 -9606 139201 MAP2K4P1 - - HGNC:43837 X Xq13.2 mitogen-activated protein kinase kinase 4 pseudogene 1 pseudo MAP2K4P1 mitogen-activated protein kinase kinase 4 pseudogene 1 O - 20121230 -9606 139212 PIH1D3 - CXorf41|NYSAR97 HGNC:28570|Ensembl:ENSG00000080572|HPRD:06650|Vega:OTTHUMG00000022160 X Xq22.3 PIH1 domain containing 3 protein-coding PIH1D3 PIH1 domain containing 3 O PIH1 domain-containing protein 3|protein PIH1D3|sarcoma antigen NY-SAR-97 20121230 -9606 139221 MUM1L1 LL0XNC01-50F11.1 - HGNC:26583|Ensembl:ENSG00000157502|HPRD:06555|Vega:OTTHUMG00000022146 X Xq22.3 melanoma associated antigen (mutated) 1-like 1 protein-coding MUM1L1 melanoma associated antigen (mutated) 1-like 1 O MUM1-like protein 1|PWWP domain-containing protein MUM1L1|mutated melanoma-associated antigen 1-like protein 1 20121230 -9606 139231 FAM199X RP1-233G16.2 CXorf39 HGNC:25195|Ensembl:ENSG00000123575|HPRD:10045|Vega:OTTHUMG00000022126 X Xq22.2 family with sequence similarity 199, X-linked protein-coding FAM199X family with sequence similarity 199, X-linked O protein FAM199X 20121230 -9606 139249 FAM47DP - - HGNC:34342 X Xp21.1 family with sequence similarity 47, member D (pseudogene) pseudo FAM47DP family with sequence similarity 47, member D, pseudogene O - 20121230 -9606 139285 AMER1 RP11-403E24.2 FAM123B|OSCS|WTX HGNC:26837|MIM:300647|Ensembl:ENSG00000184675|HPRD:06565|Vega:OTTHUMG00000021703 X Xq11.2 APC membrane recruitment protein 1 protein-coding AMER1 APC membrane recruitment protein 1 O Wilms tumor gene on the X chromosome protein|Wilms tumor on the X|adenomatous polyposis coli membrane recruitment 1|family with sequence similarity 123B|protein FAM123B 20121230 -9606 139322 APOOL RP1-215K18.3 CXorf33|FAM121A|UNQ8193 HGNC:24009|Ensembl:ENSG00000155008|HPRD:16775|Vega:OTTHUMG00000021930 X Xq21.1 apolipoprotein O-like protein-coding APOOL apolipoprotein O-like O AAIR8193|family with sequence similarity 121A 20121230 -9606 139324 HDX RP6-162O13.1 CXorf43|D030011N01Rik HGNC:26411|Ensembl:ENSG00000165259|HPRD:06550|Vega:OTTHUMG00000021926 X Xq21.1 highly divergent homeobox protein-coding HDX highly divergent homeobox O - 20121230 -9606 139334 IMPDH1P4 - - HGNC:33959 X Xp11.3 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 4 pseudo IMPDH1P4 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 4 O - 20121230 -9606 139341 FUNDC1 RP4-551E13.3 - HGNC:28746|MIM:300871|Ensembl:ENSG00000069509|HPRD:06658|Vega:OTTHUMG00000021399 X Xp11.3 FUN14 domain containing 1 protein-coding FUNDC1 FUN14 domain containing 1 O FUN14 domain-containing protein 1 20121230 -9606 139363 MAGEA13P LL0XNC01-244G10.1 - HGNC:35154 X Xq26.3 melanoma antigen family A, 13 pseudogene pseudo MAGEA13P melanoma antigen family A, 13 pseudogene O - 20121230 -9606 139378 GPR112 RP11-51D15.1 PGR17|RP1-299I16 HGNC:18992|Ensembl:ENSG00000156920|HPRD:06578|Vega:OTTHUMG00000022508 X Xq26.3 G protein-coupled receptor 112 protein-coding GPR112 G protein-coupled receptor 112 O probable G-protein coupled receptor 112 20121230 -9606 139411 PTCHD1 - - HGNC:26392|MIM:300828|Ensembl:ENSG00000165186|HPRD:06548|Vega:OTTHUMG00000021251 X Xp22.11 patched domain containing 1 protein-coding PTCHD1 patched domain containing 1 O patched domain-containing protein 1 20121230 -9606 139420 SMEK3P - FLFL3P|smk1 HGNC:33146|HPRD:09960 X Xp21.3 SMEK homolog 3, suppressor of mek1 (Dictyostelium) pseudogene pseudo SMEK3P SMEK homolog 3, suppressor of mek1 (Dictyostelium) pseudogene O - 20121230 -9606 139422 MAGEB10 - - HGNC:25377|MIM:300761|Ensembl:ENSG00000177689|HPRD:06554|Vega:OTTHUMG00000046084 X Xp21.3 melanoma antigen family B, 10 protein-coding MAGEB10 melanoma antigen family B, 10 O MAGE family testis and tumor-specific protein|MAGE-B10 antigen|melanoma-associated antigen B10 20121230 -9606 139425 DCAF8L1 - WDR42B HGNC:31810|Ensembl:ENSG00000226372|HPRD:18551|Vega:OTTHUMG00000021312 X Xp21.3 DDB1 and CUL4 associated factor 8-like 1 protein-coding DCAF8L1 DDB1 and CUL4 associated factor 8-like 1 O DDB1- and CUL4-associated factor 8-like protein 1|WD repeat domain 42B|WD repeat-containing protein 42B 20121230 -9606 139431 FTH1P14 - - HGNC:39090 X Xp21.1 ferritin, heavy polypeptide 1 pseudogene 14 pseudo FTH1P14 ferritin, heavy polypeptide 1 pseudogene 14 O - 20121230 -9606 139452 RPL6P30 - RPL6_11_1767 HGNC:36171 X Xp22.2 ribosomal protein L6 pseudogene 30 pseudo RPL6P30 ribosomal protein L6 pseudogene 30 O - 20121230 -9606 139516 AKAP16BP - AKAP16B HGNC:38514 X Xq24 A kinase (PRKA) anchor protein 16B, pseudogene pseudo AKAP16BP A kinase (PRKA) anchor protein 16B, pseudogene O - 20121230 -9606 139538 VENTXP1 - CT18|NA88A|VENTX2P1 HGNC:30900 X Xp21.3 VENT homeobox pseudogene 1 pseudo VENTXP1 VENT homeobox pseudogene 1 O - 20121230 -9606 139542 LOC139542 hCG_1660138 - - X Xq26.3 E2F transcription factor 6 pseudogene pseudo - - - - 20121230 -9606 139562 OTUD6A - DUBA2|HSHIN6 HGNC:32312|MIM:300714|Ensembl:ENSG00000189401|HPRD:13681|Vega:OTTHUMG00000159996 X Xq13.1 OTU domain containing 6A protein-coding OTUD6A OTU domain containing 6A O DUBA-2|HIN-6 protease|OTU domain-containing protein 6A 20121230 -9606 139596 UPRT RP11-311P8.3 FUR1|UPP HGNC:28334|MIM:300656|Ensembl:ENSG00000094841|HPRD:06640|Vega:OTTHUMG00000021864 X Xq13.3 uracil phosphoribosyltransferase (FUR1) homolog (S. cerevisiae) protein-coding UPRT uracil phosphoribosyltransferase (FUR1) homolog (S. cerevisiae) O UMP pyrophosphorylase|UPRTase|uracil phosphoribosyltransferase homolog 20121230 -9606 139599 MAGEE2 - HCA3 HGNC:24935|MIM:300760|Ensembl:ENSG00000186675|HPRD:06585|Vega:OTTHUMG00000021870 X Xq13.3 melanoma antigen family E, 2 protein-coding MAGEE2 melanoma antigen family E, 2 O MAGE-E2 antigen|hepatocellular carcinoma-associated protein 3|hepatocellular carcinoma-associated protein HCA3|melanoma-associated antigen E2 20121230 -9606 139604 MAGEB16 RP11-497J7.3 - HGNC:21188|MIM:300762|Ensembl:ENSG00000189023|Vega:OTTHUMG00000021348 X Xp21.1 melanoma antigen family B, 16 protein-coding MAGEB16 melanoma antigen family B, 16 O MAGE-B16 antigen|melanoma antigen family B, 16 (pseudogene)|melanoma-associated antigen B16 20121230 -9606 139628 FOXR2 - FOXN6 HGNC:30469|Ensembl:ENSG00000189299|HPRD:13552|Vega:OTTHUMG00000021661 X Xp11.21 forkhead box R2 protein-coding FOXR2 forkhead box R2 O forkhead box protein N6|forkhead box protein R2 20121230 -9606 139629 XAGE-4 RP11-167P23.2 - - X Xp11.21 XAGE-4 protein unknown - - - - 20121230 -9606 139716 GAB3 - - HGNC:17515|MIM:300482|Ensembl:ENSG00000160219|HPRD:06571|Vega:OTTHUMG00000024245 X Xq28 GRB2-associated binding protein 3 protein-coding GAB3 GRB2-associated binding protein 3 O DOS/Gab family member 3|GRB2-associated binder 3|GRB2-associated-binding protein 3|Gab3 scaffolding protein|growth factor receptor bound protein 2-associated protein 3 20121230 -9606 139728 PNCK - BSTK3|CaMK1b HGNC:13415|MIM:300680|Ensembl:ENSG00000130822|Vega:OTTHUMG00000024216 X Xq28 pregnancy up-regulated non-ubiquitously expressed CaM kinase protein-coding PNCK pregnancy up-regulated non-ubiquitously expressed CaM kinase O caM kinase I beta|caM kinase IB|caM-KI beta|caMKI-beta|calcium/calmodulin-dependent protein kinase type 1B|pregnancy up-regulated non-ubiquitously-expressed CaM kinase|pregnancy upregulated non-ubiquitously expressed CaM kinase 20121230 -9606 139735 ZFP92 - ZNF897 HGNC:12865|Ensembl:ENSG00000189420|Vega:OTTHUMG00000024198 X Xq28 ZFP92 zinc finger protein protein-coding ZFP92 ZFP92 zinc finger protein O zfp-92|zinc finger protein 92 homolog|zinc finger protein homologous to Zfp92 in mouse 20121230 -9606 139741 ACTRT1 RP1-203C2.1 AIP1|ARIP1|ARPT1|HSD27 HGNC:24027|MIM:300487|Ensembl:ENSG00000123165|HPRD:06439|Vega:OTTHUMG00000022359 X Xq25 actin-related protein T1 protein-coding ACTRT1 actin-related protein T1 O - 20121230 -9606 139748 KRT18P44 RP5-1032F13.1 - HGNC:33414 X Xq25 keratin 18 pseudogene 44 pseudo KRT18P44 keratin 18 pseudogene 44 O - 20121230 -9606 139760 GPR119 RP1-20I3.4 GPCR2 HGNC:19060|MIM:300513|Ensembl:ENSG00000147262|HPRD:06579|Vega:OTTHUMG00000022397 X Xq26.1 G protein-coupled receptor 119 protein-coding GPR119 G protein-coupled receptor 119 O G-protein coupled receptor 2|glucose-dependent insulinotropic receptor 20121230 -9606 139793 PAGE3 RP11-382F24.5 CT16.6|GAGED1|PAGE-3 HGNC:4110|MIM:300739|HPRD:18552 X Xp11.21 P antigen family, member 3 (prostate associated) pseudo PAGE3 P antigen family, member 3 (prostate associated) O - 20121230 -9606 139804 RBMXL3 - CXorf55 HGNC:26859|Ensembl:ENSG00000175718|HPRD:06567|Vega:OTTHUMG00000022230 X Xq23 RNA binding motif protein, X-linked-like 3 protein-coding RBMXL3 RNA binding motif protein, X-linked-like 3 O RNA-binding motif protein, X-linked-like-3 20121230 -9606 139818 DOCK11 RP13-128O4.1 ACG|ZIZ2|bB128O4.1 HGNC:23483|MIM:300681|Ensembl:ENSG00000147251|HPRD:06492|Vega:OTTHUMG00000022256 X Xq24 dedicator of cytokinesis 11 protein-coding DOCK11 dedicator of cytokinesis 11 O Activated Cdc42-associated guanine nucleotide exchange factor, ACG|bB128O4.1.1 (novel protein)|dedicator of cytokinesis protein 11|zizimin-2|zizimin2 20121230 -9606 139886 SPIN4 RP11-93B10.1 - HGNC:27040|Ensembl:ENSG00000186767|HPRD:12556|Vega:OTTHUMG00000021696 X Xq11.1 spindlin family, member 4 protein-coding SPIN4 spindlin family, member 4 O spindlin-4 20121230 -9606 139952 LOC139952 - - - X Xp22.2 LIM domain kinase 2 pseudogene pseudo - - - - 20121230 -9606 139957 LOC139957 - - - X Xp21.3 platelet-activating factor acetylhydrolase 1b, catalytic subunit 2 (30kDa) pseudogene pseudo - - - - 20121230 -9606 140004 TUBB1P2 - - HGNC:23981 Y Yq11.221 tubulin, beta 1 pseudogene 2 pseudo TUBB1P2 tubulin, beta 1 pseudogene 2 O - 20121209 -9606 140028 GAPDHP19 - - HGNC:23947 Y Yq11.222 glyceraldehyde 3 phosphate dehydrogenase pseudogene 19 pseudo GAPDHP19 glyceraldehyde 3 phosphate dehydrogenase pseudogene 19 O - 20121230 -9606 140032 RPS4Y2 - RPS4Y2P HGNC:18501|MIM:400030|Ensembl:ENSG00000157828|HPRD:15960|Vega:OTTHUMG00000036540 Y Yq11.223 ribosomal protein S4, Y-linked 2 protein-coding RPS4Y2 ribosomal protein S4, Y-linked 2 O 40S ribosomal protein S4, Y|40S ribosomal protein S4, Y isoform 2|ribosomal protein S4, Y-linked 2 pseudogene 20121230 -9606 140043 CDY10P - - HGNC:23848 Y Yq11.223 chromodomain protein, Y-linked 10 pseudogene pseudo CDY10P chromodomain protein, Y-linked 10 pseudogene O - 20121209 -9606 140100 RBMY2KP - - HGNC:23888 Y Yp11.2 RNA binding motif protein, Y-linked, family 2, member K pseudogene pseudo RBMY2KP RNA binding motif protein, Y-linked, family 2, member K pseudogene O - 20121230 -9606 140101 RBMY2MP - - HGNC:23889 Y Yp11.2 RNA binding motif protein, Y-linked, family 2, member M pseudogene pseudo RBMY2MP RNA binding motif protein, Y-linked, family 2, member M pseudogene O - 20121230 -9606 140123 RBMY2CP - RBMY2 HGNC:23260 Y Yq11.223 RNA binding motif protein, Y-linked, family 2, member C pseudogene pseudo RBMY2CP RNA binding motif protein, Y-linked, family 2, member C pseudogene O - 20121209 -9606 140258 KRTAP13-1 - KAP13.1|KRTAP13.1 HGNC:18924|MIM:608718|Ensembl:ENSG00000198390|HPRD:10570|Vega:OTTHUMG00000057800 21 21q22.1 keratin associated protein 13-1 protein-coding KRTAP13-1 keratin associated protein 13-1 O high sulfur keratin associated protein 13.1|high sulfur keratin-associated protein 13.1|keratin-associated protein 13-1 20121230 -9606 140290 TCP10L PRED77 C21orf77|TCP10A-2 HGNC:11657|MIM:608365|Ensembl:ENSG00000242220|Ensembl:ENSG00000265590|HPRD:10518|Vega:OTTHUMG00000064901|Vega:OTTHUMG00000064928 21 21q22.11 t-complex 10-like protein-coding TCP10L t-complex 10-like O T-complex 10A-2|T-complex protein 10A homolog 2|T-complex protein 10A-2|TCP10-like|t-complex 10 (a murine tcp homolog)-like 20121230 -9606 140432 RNF113B - RNF161|ZNF183L1|bA10G5.1 HGNC:17267|Ensembl:ENSG00000139797|HPRD:15745|Vega:OTTHUMG00000017245 13 13q32.2 ring finger protein 113B protein-coding RNF113B ring finger protein 113B O RING finger protein 113B|zinc finger protein 183-like 1 20121230 -9606 140451 SCA9 - - HGNC:13440|MIM:612876 - - spinocerebellar ataxia 9 unknown SCA9 spinocerebellar ataxia 9 O - 20110215 -9606 140452 SCA19 - - HGNC:17033|MIM:607346 1 1p21-q21 spinocerebellar ataxia 19 unknown SCA19 spinocerebellar ataxia 19 O - 20120622 -9606 140453 MUC17 - MUC3 HGNC:16800|MIM:608424|Ensembl:ENSG00000169876|HPRD:16335|Vega:OTTHUMG00000157030 7 7q22.1 mucin 17, cell surface associated protein-coding MUC17 mucin 17, cell surface associated O MUC-17|MUC-3|membrane mucin MUC17|mucin-17|secreted mucin MUC17|small intestinal mucin MUC3|small intestinal mucin-3 20121230 -9606 140454 PSORS8 - - HGNC:17322|MIM:610707 16 16q psoriasis susceptibility 8 unknown PSORS8 psoriasis susceptibility 8 O - 20120622 -9606 140456 ASB11 - - HGNC:17186|MIM:300626|Ensembl:ENSG00000165192|HPRD:06450|Vega:OTTHUMG00000021173 X Xp22.31 ankyrin repeat and SOCS box containing 11 protein-coding ASB11 ankyrin repeat and SOCS box containing 11 O ASB-11|ankyrin repeat and SOCS box protein 11|ankyrin repeat domain-containing SOCS box protein ASB11 20121230 -9606 140458 ASB5 - ASB-5 HGNC:17180|Ensembl:ENSG00000164122|HPRD:10672|Vega:OTTHUMG00000160793 4 4q34.2 ankyrin repeat and SOCS box containing 5 protein-coding ASB5 ankyrin repeat and SOCS box containing 5 O SOCS box protein ASB-5|ankyrin repeat and SOCS box protein 5|ankyrin repeat and SOCS box-containing 5 20121230 -9606 140459 ASB6 RP11-483H20.7 - HGNC:17181|Ensembl:ENSG00000148331|HPRD:10673|Vega:OTTHUMG00000020787 9 - ankyrin repeat and SOCS box containing 6 protein-coding ASB6 ankyrin repeat and SOCS box containing 6 O ankyrin repeat and SOCS box protein 6|ankyrin repeat and SOCS box-containing 6 20121230 -9606 140460 ASB7 - - HGNC:17182|Ensembl:ENSG00000183475|HPRD:10674|Vega:OTTHUMG00000149868 15 - ankyrin repeat and SOCS box containing 7 protein-coding ASB7 ankyrin repeat and SOCS box containing 7 O ASB-7|ankyrin repeat and SOCS box protein 7|ankyrin repeat and SOCS box-containing 7 20121230 -9606 140461 ASB8 PP14212 - HGNC:17183|Ensembl:ENSG00000177981|HPRD:10675|Vega:OTTHUMG00000167834 12 12q13.11 ankyrin repeat and SOCS box containing 8 protein-coding ASB8 ankyrin repeat and SOCS box containing 8 O ASB-8|ankyrin repeat and SOCS box protein 8|ankyrin repeat and SOCS box-containing 8 20121230 -9606 140462 ASB9 - - HGNC:17184|Ensembl:ENSG00000102048|HPRD:06452|Vega:OTTHUMG00000021172 X - ankyrin repeat and SOCS box containing 9 protein-coding ASB9 ankyrin repeat and SOCS box containing 9 O ASB-9|ankyrin repeat and SOCS box protein 9|ankyrin repeat and SOCS box-containing 9|ankyrin repeat and suppressor of cytokine signaling box protein 9 20121230 -9606 140464 PISRT1 - NCRNA00195 HGNC:16671 3 3q23 polled intersex syndrome regulated transcript 1 (non-protein coding RNA) miscRNA PISRT1 polled intersex syndrome regulated transcript 1 (non-protein coding RNA) O - 20121230 -9606 140465 MYL6B - MLC1SA HGNC:29823|MIM:609930|Ensembl:ENSG00000196465|HPRD:14721|Vega:OTTHUMG00000170199 12 12q13.13 myosin, light chain 6B, alkali, smooth muscle and non-muscle protein-coding MYL6B myosin, light chain 6B, alkali, smooth muscle and non-muscle O myosin alkali light chain 1 slow a|myosin light chain 1 slow a|myosin light chain 1 slow-twitch muscle A isoform|myosin light chain 1, slow-twitch muscle A isoform|myosin light chain 6B|myosin, light polypeptide 6B, alkali, smooth muscle and non-muscle|smooth muscle and non-muscle myosin alkali light chain 6B|smooth muscle and nonmuscle myosin light chain alkali 6B 20121230 -9606 140467 ZNF358 - ZFEND HGNC:16838|HPRD:10331 19 19p13.2 zinc finger protein 358 protein-coding ZNF358 zinc finger protein 358 O - 20121230 -9606 140468 COX11P1 - COX11|COX11P HGNC:2262 6 6p23-p22 COX11 cytochrome c oxidase assembly homolog (yeast) pseudogene 1 pseudo COX11P1 COX11 cytochrome c oxidase assembly homolog (yeast) pseudogene 1 O - 20121230 -9606 140469 MYO3B - - HGNC:15576|MIM:610040|Ensembl:ENSG00000071909|HPRD:17623|Vega:OTTHUMG00000154002 2 2q31.1-q31.2 myosin IIIB protein-coding MYO3B myosin IIIB O myosin-IIIb 20121230 -9606 140545 RNF32 tcag7.575 FKSG33|HSD15 HGNC:17118|MIM:610241|Ensembl:ENSG00000105982|HPRD:11517|Vega:OTTHUMG00000151440 7 7q36 ring finger protein 32 protein-coding RNF32 ring finger protein 32 O RING finger protein 32 20121230 -9606 140560 LI5 - - MIM:606545 17 17p13.2-p13.1 Lamellar ichthyosis 5 unknown - - - - 20120622 -9606 140564 APOBEC3D - APOBEC3DE|APOBEC3E|ARP6 HGNC:17354|MIM:609900|Ensembl:ENSG00000243811|HPRD:16501|Vega:OTTHUMG00000151084 22 22q13.1 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3D protein-coding APOBEC3D apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3D O DNA dC->dU-editing enzyme APOBEC-3D|apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3E pseudogene|probable DNA dC->dU-editing enzyme APOBEC-3D 20121230 -9606 140575 SCA22 - - HGNC:17320 1 1p21-q23 spinocerebellar ataxia 22 unknown SCA22 spinocerebellar ataxia 22 O - 20110215 -9606 140576 S100A16 AAG13 DT1P1A7|S100F HGNC:20441|Ensembl:ENSG00000188643|HPRD:11529|Vega:OTTHUMG00000013545 1 1q21 S100 calcium binding protein A16 protein-coding S100A16 S100 calcium binding protein A16 O S100 calcium-binding protein A16|aging-associated gene 13 protein|aging-associated protein 13|protein S100-A16|protein S100-F 20121230 -9606 140578 CHODL PRED12 C21orf68|MT75 HGNC:17807|MIM:607247|Ensembl:ENSG00000154645|HPRD:06261|Vega:OTTHUMG00000074519 21 21q11.2 chondrolectin protein-coding CHODL chondrolectin O transmembrane protein MT75 20121230 -9606 140596 DEFB104A - BD-4|DEFB-4|DEFB104|DEFB4|hBD-4 HGNC:18115|Ensembl:ENSG00000176782|HPRD:10870|Vega:OTTHUMG00000150014 8 8p23.1 defensin, beta 104A protein-coding DEFB104A defensin, beta 104A O beta-defensin 104|defensin, beta 4 20121230 -9606 140597 TCEAL2 My048 MY0876G05|my048 HGNC:29818|Ensembl:ENSG00000184905|HPRD:06761|Vega:OTTHUMG00000022048 X Xq22.1-q22.3 transcription elongation factor A (SII)-like 2 protein-coding TCEAL2 transcription elongation factor A (SII)-like 2 O TCEA-like protein 2|transcription elongation factor A protein-like 2|transcription elongation factor S-II protein-like 2 20121230 -9606 140603 COX6B1P1 - COX6BP-1|COX6BP1 HGNC:2281 7 7q36.1 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 1 pseudo COX6B1P1 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 1 O - 20121230 -9606 140606 SELM - SEPM MIM:610918|Ensembl:ENSG00000198832|HPRD:15320|Vega:OTTHUMG00000151207 22 22q12.2 selenoprotein M protein-coding - - - selenoprotein SelM 20121230 -9606 140609 NEK7 - - HGNC:13386|MIM:606848|Ensembl:ENSG00000151414|HPRD:06027|Vega:OTTHUMG00000035658 1 1q31.3 NIMA-related kinase 7 protein-coding NEK7 NIMA-related kinase 7 O NIMA (never in mitosis gene a)-related kinase 7|never in mitosis A-related kinase 7|nimA-related protein kinase 7|serine/threonine-protein kinase Nek7 20121230 -9606 140612 ZFP28 - mkr5 HGNC:17801|Ensembl:ENSG00000196867|HPRD:15725|Vega:OTTHUMG00000181944 19 - ZFP28 zinc finger protein protein-coding ZFP28 ZFP28 zinc finger protein O krueppel-like zinc finger factor X6|zfp-28|zinc finger factor X6|zinc finger protein 28 homolog 20121230 -9606 140623 FAUP1 - FAU1P|RPS30_2_1613 HGNC:17984 18 18q22.3 FBR-MuSV-associated ubiquitously expressed (fox derived) pseudogene 1 pseudo FAUP1 FBR-MuSV-associated ubiquitously expressed (fox derived) pseudogene 1 O - 20121230 -9606 140625 ACTRT2 - ARPM2|ARPT2|Arp-T2|HARPM2 HGNC:24026|MIM:608535|Ensembl:ENSG00000169717|HPRD:12254|Vega:OTTHUMG00000000562 1 1p36.32 actin-related protein T2 protein-coding ACTRT2 actin-related protein T2 O actin-related protein M2|actin-related protein hArpM2 20121230 -9606 140628 GATA5 - bB379O24.1 HGNC:15802|MIM:611496|Ensembl:ENSG00000130700|HPRD:17029|Vega:OTTHUMG00000032919 20 20q13.33 GATA binding protein 5 protein-coding GATA5 GATA binding protein 5 O GATA binding factor-5|GATA-binding factor 5|GATA-binding protein 5|transcription factor GATA-5 20121230 -9606 140660 RPL21P4 - RPL21_58_1548 HGNC:17959 17 17q21 ribosomal protein L21 pseudogene 4 pseudo RPL21P4 ribosomal protein L21 pseudogene 4 O - 20121230 -9606 140678 MLLT10P1 - MLLT10L|bA348I14.3 HGNC:15794 20 - myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10 pseudogene 1 pseudo MLLT10P1 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10 pseudogene 1 O - 20121230 -9606 140679 SLC32A1 - VGAT|VIAAT HGNC:11018|Ensembl:ENSG00000101438|HPRD:18058|Vega:OTTHUMG00000032457 20 20q11.23 solute carrier family 32 (GABA vesicular transporter), member 1 protein-coding SLC32A1 solute carrier family 32 (GABA vesicular transporter), member 1 O GABA and glycine transporter|hVIAAT|solute carrier family 32 member 1|vesicular GABA transporter|vesicular inhibitory amino acid transporter 20121230 -9606 140680 C20orf96 RP5-1103G7.6 dJ1103G7.2 HGNC:16227|Ensembl:ENSG00000196476|HPRD:12790|Vega:OTTHUMG00000031626 20 20p13 chromosome 20 open reading frame 96 protein-coding C20orf96 chromosome 20 open reading frame 96 O uncharacterized protein C20orf96 20121230 -9606 140683 BPIFA2 UNQ510/PRO1025 C20orf70|PSP|SPLUNC2|bA49G10.1 HGNC:16203|Ensembl:ENSG00000131050|HPRD:12781|Vega:OTTHUMG00000032244 20 20q11.21 BPI fold containing family A, member 2 protein-coding BPIFA2 BPI fold containing family A, member 2 O BPI fold-containing family A member 2|parotid secretory protein|short palate, lung and nasal epithelium carcinoma associated 2|short palate, lung and nasal epithelium carcinoma-associated protein 2 20121230 -9606 140685 ZBTB46 - BTBD4|BZEL|RINZF|ZNF340|dJ583P15.7|dJ583P15.8 HGNC:16094|MIM:614639|Ensembl:ENSG00000130584|HPRD:16567|Vega:OTTHUMG00000033001 20 20q13.33 zinc finger and BTB domain containing 46 protein-coding ZBTB46 zinc finger and BTB domain containing 46 O BTB (POZ) domain containing 4|BTB-ZF protein expressed in effector lymphocytes|BTB/POZ domain-containing protein 4|zinc finger and BTB domain-containing protein 46|zinc finger protein 340 20121230 -9606 140686 WFDC3 RP3-447F3.3 WAP14|dJ447F3.3 HGNC:15957|Ensembl:ENSG00000124116|HPRD:15676|Vega:OTTHUMG00000032614 20 20q13.12 WAP four-disulfide core domain 3 protein-coding WFDC3 WAP four-disulfide core domain 3 O WAP four-disulfide core domain protein 3|protease inhibitor WAP14|putative protease inhibitor WAP14|whey acidic protein 14 20121230 -9606 140687 GCNT7 RP5-1153D9.2 C20orf105|dJ1153D9.2|gcnt HGNC:16099|Ensembl:ENSG00000124091|Vega:OTTHUMG00000032798 20 20q13.2 glucosaminyl (N-acetyl) transferase family member 7 protein-coding GCNT7 glucosaminyl (N-acetyl) transferase family member 7 O beta 1,6-N-acetylglucosaminyltransferase|beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase 7 20121230 -9606 140688 C20orf112 RP5-1184F4.6 C20orf113|dJ1184F4.2|dJ1184F4.4 HGNC:16106|Ensembl:ENSG00000197183|HPRD:10728|Vega:OTTHUMG00000032219 20 20q11.21 chromosome 20 open reading frame 112 protein-coding C20orf112 chromosome 20 open reading frame 112 O uncharacterized protein C20orf112 20121230 -9606 140689 CBLN4 UNQ718/PRO1382 CBLNL1 HGNC:16231|Ensembl:ENSG00000054803|HPRD:16685|Vega:OTTHUMG00000032782 20 20q13 cerebellin 4 precursor protein-coding CBLN4 cerebellin 4 precursor O cerebellin precursor-like 1|cerebellin-4|cerebellin-like glycoprotein 1 20121230 -9606 140690 CTCFL - BORIS|CT27|CTCF-T|HMGB1L1|dJ579F20.2 HGNC:16234|MIM:607022|Ensembl:ENSG00000124092|HPRD:09512|Vega:OTTHUMG00000032829 20 20q13.31 CCCTC-binding factor (zinc finger protein)-like protein-coding CTCFL CCCTC-binding factor (zinc finger protein)-like O BORIS-like protein|CTCF paralog|CTCF-like protein|HMG-1L1|brother of the regulator of imprinted sites|cancer/testis antigen 27|putative high mobility group protein 1-like 1|putative high mobility group protein B1-like 1|transcriptional repressor CTCFL|zinc finger protein CTCF-T 20121230 -9606 140691 TRIM69 hCG_39321 HSD34|RNF36|Trif HGNC:17857|Ensembl:ENSG00000185880|HPRD:11518|Vega:OTTHUMG00000131246 15 15q21.1 tripartite motif containing 69 protein-coding TRIM69 tripartite motif containing 69 O RFP-like domain-containing protein trimless|ring finger protein 36|trimless|tripartite motif protein 69|tripartite motif-containing 69|tripartite motif-containing protein 69 20121230 -9606 140692 COX7BP2 - dJ901O8.2 HGNC:16601 20 20q11.1-q11.23 cytochrome c oxidase subunit VIIb pseudogene 2 pseudo COX7BP2 cytochrome c oxidase subunit VIIb pseudogene 2 O - 20121230 -9606 140695 RPL7P2 - bA550O8.1 HGNC:16336 20 20p13 ribosomal protein L7 pseudogene 2 pseudo RPL7P2 ribosomal protein L7 pseudogene 2 O - 20121230 -9606 140696 RPL37P1 - RPL37_9_1698|bA563A22B.2 HGNC:16337 20 20q11.2 ribosomal protein L37 pseudogene 1 pseudo RPL37P1 ribosomal protein L37 pseudogene 1 O - 20121230 -9606 140697 RPL36P1 - RPL36_9_1713|bA80K6.3 HGNC:16338 20 20q13 ribosomal protein L36 pseudogene 1 pseudo RPL36P1 ribosomal protein L36 pseudogene 1 O - 20121230 -9606 140699 MROH8 RP4-621N11.1 C20orf131|C20orf132|dJ621N11.3|dJ621N11.4 HGNC:16125|Ensembl:ENSG00000101353|HPRD:12745|Vega:OTTHUMG00000032407 20 20q11.22 maestro heat-like repeat family member 8 protein-coding MROH8 maestro heat-like repeat family member 8 O uncharacterized protein C20orf132 20121230 -9606 140700 SAMD10 RP4-591C20.8 C20orf136|dJ591C20|dJ591C20.7 HGNC:16129|Ensembl:ENSG00000130590|HPRD:15292|Vega:OTTHUMG00000033011 20 20q13.33 sterile alpha motif domain containing 10 protein-coding SAMD10 sterile alpha motif domain containing 10 O D930033N23Rik|SAM domain-containing protein 10|sterile alpha motif domain-containing protein 10 20121230 -9606 140701 ABHD16B - C20orf135|dJ591C20.1 HGNC:16128|Ensembl:ENSG00000183260|HPRD:12746|Vega:OTTHUMG00000033010 20 20q13.33 abhydrolase domain containing 16B protein-coding ABHD16B abhydrolase domain containing 16B O abhydrolase domain-containing protein 16B 20121230 -9606 140706 CCM2L RP1-310O13.9 C20orf160|dJ310O13.5 HGNC:16153|Ensembl:ENSG00000101331|HPRD:12753|Vega:OTTHUMG00000032197 20 20q11.2 cerebral cavernous malformation 2-like protein-coding CCM2L cerebral cavernous malformation 2-like O uncharacterized protein C20orf160 20121230 -9606 140707 BRI3BP - BNAS1|HCCR-1|HCCR-2|HCCRBP-1|KG19 HGNC:14251|Ensembl:ENSG00000184992|HPRD:09829|Vega:OTTHUMG00000168548 12 12q24.31 BRI3 binding protein protein-coding BRI3BP BRI3 binding protein O BRI3-binding protein|I3-binding protein|cervical cancer 1 proto-oncogene-binding protein KG19|cervical cancer oncogene binding protein 20121230 -9606 140710 SOGA1 RP3-469A13.2 C20orf117|KIAA0889|SOGA HGNC:16111|Ensembl:ENSG00000149639|HPRD:11116|HPRD:13493|HPRD:18553|Vega:OTTHUMG00000032395 20 20q11.23 suppressor of glucose, autophagy associated 1 protein-coding SOGA1 suppressor of glucose, autophagy associated 1 O SOGA family member 1|protein SOGA1|suppressor of glucose by autophagy|suppressor of glucose from autophagy|suppressor of glucose, autophagy-associated protein 1 20121230 -9606 140711 C20orf118 RP1-132F21.2 dJ132F21.2 HGNC:16112|Ensembl:ENSG00000101342|HPRD:18554|Vega:OTTHUMG00000032400 20 20q11.23 chromosome 20 open reading frame 118 protein-coding C20orf118 chromosome 20 open reading frame 118 O uncharacterized protein C20orf118 20121230 -9606 140713 RPS3AP3 - bA332A4.2 HGNC:16537 20 20q11.2 ribosomal protein S3A pseudogene 3 pseudo RPS3AP3 ribosomal protein S3A pseudogene 3 O - 20121230 -9606 140714 RPS27AP3 - RPS27AP|RPS27A_8_1699|bA332A4.3 HGNC:16538 20 20q11.2 ribosomal protein S27a pseudogene 3 pseudo RPS27AP3 ribosomal protein S27a pseudogene 3 O - 20121230 -9606 140715 RPL21P2 - RPL21_65_1679|bA352D3.1 HGNC:16539 20 20p13 ribosomal protein L21 pseudogene 2 pseudo RPL21P2 ribosomal protein L21 pseudogene 2 O - 20121230 -9606 140716 RPL35AP - RPL35A_15_1710|bA456N23.1 HGNC:16546 20 20q12-q13.1 ribosomal protein L35a pseudogene pseudo RPL35AP ribosomal protein L35a pseudogene O - 20121230 -9606 140717 RPL37AP1 - RPL37A_5_1704|dJ1013A22.4 HGNC:16548 20 20q12 ribosomal protein L37a pseudogene 1 pseudo RPL37AP1 ribosomal protein L37a pseudogene 1 O - 20121230 -9606 140718 RPL31P3 - RPL31_24_1693|dJ1018D12.4 HGNC:16549 20 20p11-q11 ribosomal protein L31 pseudogene 3 pseudo RPL31P3 ribosomal protein L31 pseudogene 3 O - 20121230 -9606 140719 RPL39P - RPL39_20_1715|dJ1167H4.5 HGNC:16558 20 20q13.2 ribosomal protein L39 pseudogene pseudo RPL39P ribosomal protein L39 pseudogene O - 20121230 -9606 140730 RIMS4 - C20orf190|RIM 4|RIM-4|RIM4|RIM4-gamma|RIM4gamma HGNC:16183|MIM:611601|Ensembl:ENSG00000101098|HPRD:17977|Vega:OTTHUMG00000032546 20 20q13.12 regulating synaptic membrane exocytosis 4 protein-coding RIMS4 regulating synaptic membrane exocytosis 4 O RIM4 gamma|rab3-interacting molecule 4|regulating synaptic membrane exocytosis protein 4 20121230 -9606 140731 ANKRD60 - C20orf86|bA196N14.3 HGNC:16217|Ensembl:ENSG00000124227|HPRD:12788|Vega:OTTHUMG00000032837 20 20q13.32 ankyrin repeat domain 60 protein-coding ANKRD60 ankyrin repeat domain 60 O ankyrin repeat domain-containing protein 60 20121230 -9606 140732 SUN5 RP11-60H7.1 SPAG4L|TSARG4|dJ726C3.1 HGNC:16252|MIM:613942|Ensembl:ENSG00000167098|HPRD:15422|Vega:OTTHUMG00000032239 20 20q11.21 Sad1 and UNC84 domain containing 5 protein-coding SUN5 Sad1 and UNC84 domain containing 5 O SUN domain-containing protein 5|sad1 and UNC84 domain-containing protein 5|sperm-associated antigen 4-like protein|testis and spermatogenesis related gene 4|testis and spermatogenesis-related gene 4 protein 20121230 -9606 140733 MACROD2 RP11-189J1.1 C20orf133 HGNC:16126|MIM:611567|Ensembl:ENSG00000172264|HPRD:16640|Vega:OTTHUMG00000031919 20 20p12.1 MACRO domain containing 2 protein-coding MACROD2 MACRO domain containing 2 O MACRO domain-containing protein 2|O-acetyl-ADP-ribose deacetylase MACROD2 20121230 -9606 140735 DYNLL2 - DNCL1B|Dlc2|RSPH22 HGNC:24596|MIM:608942|Ensembl:ENSG00000121083|HPRD:06489|Vega:OTTHUMG00000178783 17 17q22 dynein, light chain, LC8-type 2 protein-coding DYNLL2 dynein, light chain, LC8-type 2 O 8 kDa dynein light chain b|DLC8b|dynein light chain 2, cytoplasmic|radial spoke 22 homolog 20121230 -9606 140738 TMEM37 - PR|PR1 HGNC:18216|Ensembl:ENSG00000171227|HPRD:15536|Vega:OTTHUMG00000153304 2 2q14.2 transmembrane protein 37 protein-coding TMEM37 transmembrane protein 37 O neuronal voltage-gated calcium channel gamma-like subunit|voltage-dependent calcium channel gamma subunit-like protein|voltage-dependent calcium channel gamma-like subunit 20121230 -9606 140739 UBE2F - NCE2 HGNC:12480|Ensembl:ENSG00000184182|HPRD:14812|Vega:OTTHUMG00000133341 2 2q37.3 ubiquitin-conjugating enzyme E2F (putative) protein-coding UBE2F ubiquitin-conjugating enzyme E2F (putative) O NEDD8 carrier protein UBE2F|NEDD8 protein ligase UBE2F|NEDD8-conjugating enzyme 2|NEDD8-conjugating enzyme UBE2F|ubiquitin-conjugating enzyme E2 F 20121230 -9606 140748 RPL17P1 - RPL17_18_1690|dJ1178H5.1 HGNC:16559 20 20p11.2 ribosomal protein L17 pseudogene 1 pseudo RPL17P1 ribosomal protein L17 pseudogene 1 O - 20121230 -9606 140749 RPL5P2 - RPL5_14_1705|dJ461P17.5 HGNC:16568 20 20q12 ribosomal protein L5 pseudogene 2 pseudo RPL5P2 ribosomal protein L5 pseudogene 2 O - 20121230 -9606 140750 RPL36P4 - RPL36_7_1697|dJ477O4.3 HGNC:16569 20 20q11.2 ribosomal protein L36 pseudogene 4 pseudo RPL36P4 ribosomal protein L36 pseudogene 4 O - 20121230 -9606 140751 RPL36P2 - RPL36_8_1711|dJ530I15.5 HGNC:16570 20 20q13.1 ribosomal protein L36 pseudogene 2 pseudo RPL36P2 ribosomal protein L36 pseudogene 2 O - 20121230 -9606 140752 RPS27AP2 - RPS27A_7_1686|dJ531H16.4 HGNC:16572 20 20p11.2 ribosomal protein S27a pseudogene 2 pseudo RPS27AP2 ribosomal protein S27a pseudogene 2 O - 20121230 -9606 140753 RPL31P2 - RPL31_25_1695|dJ553F4.5 HGNC:16575 20 20q11.2 ribosomal protein L31 pseudogene 2 pseudo RPL31P2 ribosomal protein L31 pseudogene 2 O - 20121230 -9606 140754 RPS3P1 - dJ631M13.3 HGNC:16579 20 20p12 ribosomal protein S3 pseudogene 1 pseudo RPS3P1 ribosomal protein S3 pseudogene 1 O - 20121230 -9606 140755 RPS2P1 - RPS2_26_1696|dJ64K7.1 HGNC:16580 20 20q11.2 ribosomal protein S2 pseudogene 1 pseudo RPS2P1 ribosomal protein S2 pseudogene 1 O - 20121230 -9606 140756 RPL7AP14 - RPL7AL4|RPL7A_32_1700|dJ823N20.2 HGNC:16590 20 20q11.2 ribosomal protein L7a pseudogene 14 pseudo RPL7AP14 ribosomal protein L7a pseudogene 14 O - 20121230 -9606 140757 RSL24D1P6 - RPL24P1|dJ836N17.3 HGNC:37876 20 20q11 ribosomal L24 domain containing 1 pseudogene 6 pseudo RSL24D1P6 ribosomal L24 domain containing 1 pseudogene 6 O - 20121230 -9606 140758 RPS10P2 - RPS10_15_1685|dJ858M22.1 HGNC:16594 20 20p12 ribosomal protein S10 pseudogene 2 pseudo RPS10P2 ribosomal protein S10 pseudogene 2 O - 20121230 -9606 140759 RPL19P1 - RPL19_11_1678|dJ860F19.2 HGNC:16595 20 20p13 ribosomal protein L19 pseudogene 1 pseudo RPL19P1 ribosomal protein L19 pseudogene 1 O - 20121230 -9606 140760 RPL24P2 - RPL24_5_1691|dJ872K7.2 HGNC:16597 20 20p11.23 ribosomal protein L24 pseudogene 2 pseudo RPL24P2 ribosomal protein L24 pseudogene 2 O - 20121230 -9606 140761 RPS3P2 - RPS3_4_1701|dJ927M24.3 HGNC:16603 20 20q11.2 ribosomal protein S3 pseudogene 2 pseudo RPS3P2 ribosomal protein S3 pseudogene 2 O - 20121230 -9606 140766 ADAMTS14 RP11-399N22.5 - HGNC:14899|MIM:607506|Ensembl:ENSG00000138316|HPRD:06329|Vega:OTTHUMG00000018414 10 10q21 ADAM metallopeptidase with thrombospondin type 1 motif, 14 protein-coding ADAMTS14 ADAM metallopeptidase with thrombospondin type 1 motif, 14 O A disintegrin and metalloproteinase with thrombospondin motifs 14|ADAM-TS 14|ADAM-TS14|ADAMTS-14|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 14|metalloprotease-disintegrin protease 20121230 -9606 140767 NRSN1 RP11-176J5.1 VMP|p24 HGNC:17881|Ensembl:ENSG00000152954|HPRD:18285|Vega:OTTHUMG00000016406 6 6p22.3 neurensin 1 protein-coding NRSN1 neurensin 1 O neurensin-1|neuro-p24|vesicular membrain protein p24|vesicular membrane protein of 24 kDa|vesicular membrane protein p24 20121230 -9606 140768 SMCR2 - - HGNC:17914 17 - Smith-Magenis syndrome chromosome region, candidate 2 (non-protein coding) unknown SMCR2 Smith-Magenis syndrome chromosome region, candidate 2 (non-protein coding) O - 20121021 -9606 140769 SMCR3 - - HGNC:17915 17 - Smith-Magenis syndrome chromosome region, candidate 3 unknown SMCR3 Smith-Magenis syndrome chromosome region, candidate 3 O - 20120508 -9606 140771 SMCR5 - NCRNA00034 HGNC:17918 17 - Smith-Magenis syndrome chromosome region, candidate 5 (non-protein coding) miscRNA SMCR5 Smith-Magenis syndrome chromosome region, candidate 5 (non-protein coding) O - 20121230 -9606 140772 SMCR6 - - HGNC:17919 17 - Smith-Magenis syndrome chromosome region, candidate 6 unknown SMCR6 Smith-Magenis syndrome chromosome region, candidate 6 O - 20120508 -9606 140775 SMCR8 - - HGNC:17921|Ensembl:ENSG00000176994|HPRD:18075|Vega:OTTHUMG00000059394 17 17p11.2 Smith-Magenis syndrome chromosome region, candidate 8 protein-coding SMCR8 Smith-Magenis syndrome chromosome region, candidate 8 O Smith-Magenis syndrome chromosomal region candidate gene 8 protein 20121230 -9606 140776 SMCR9 - - HGNC:17913 17 17p11.2 Smith-Magenis syndrome chromosome region, candidate 9 protein-coding SMCR9 Smith-Magenis syndrome chromosome region, candidate 9 O uncharacterized protein LOC140776 20121230 -9606 140777 PDB5 - - HGNC:17951 2 2q36 Paget disease of bone 5 unknown PDB5 Paget disease of bone 5 O - 20110215 -9606 140778 PDB6 - - HGNC:17952 10 10p13 Paget disease of bone 6 unknown PDB6 Paget disease of bone 6 O - 20110215 -9606 140801 RPL10L - RPL10_5_1358 HGNC:17976|Ensembl:ENSG00000165496|HPRD:11753|Vega:OTTHUMG00000157869 14 14q21.2 ribosomal protein L10-like protein-coding RPL10L ribosomal protein L10-like O 60S ribosomal protein L10-like|ribosomal protein L10-like protein 20121230 -9606 140802 LGV1 - - MIM:152430 4 4q25 longevity 1 unknown - - - - 20120622 -9606 140803 TRPM6 RP11-174B4.1 CHAK2|HMGX|HOMG|HOMG1|HSH HGNC:17995|MIM:607009|Ensembl:ENSG00000119121|HPRD:06112|Vega:OTTHUMG00000020027 9 9q21.13 transient receptor potential cation channel, subfamily M, member 6 protein-coding TRPM6 transient receptor potential cation channel, subfamily M, member 6 O channel kinase 2|melastatin-related TRP cation channel 6|transient receptor potential cation channel subfamily M member 6 20121230 -9606 140805 HT - - MIM:140300 8 8q23-q24 Hashimoto thyroiditis unknown - - - - 20120622 -9606 140807 KRT72 - K6IRS2|K6irs|KRT6|KRT6IRS2 HGNC:28932|MIM:608246|Ensembl:ENSG00000170486|HPRD:09746|Vega:OTTHUMG00000169744 12 12q13.13 keratin 72 protein-coding KRT72 keratin 72 O CK-72|K72|cytokeratin-72|keratin 6, inner root sheath, 2|keratin protein K6irs|keratin, type II cytoskeletal 72|keratin-72|type II inner root sheath-specific keratin-K6irs2|type-II keratin Kb35 20121230 -9606 140809 SRXN1 - C20orf139|Npn3|SRX|SRX1 HGNC:16132|Ensembl:ENSG00000172070|HPRD:12747|Vega:OTTHUMG00000031644 20 20p13 sulfiredoxin 1 protein-coding SRXN1 sulfiredoxin 1 O sulfiredoxin-1 20121230 -9606 140821 RSS - SRS HGNC:10462|MIM:180860 17 17q25 Russell Silver syndrome unknown RSS Russell Silver syndrome O - 20120622 -9606 140823 ROMO1 RP11-353C18.54-005 C20orf52|MTGM|MTGMP|bA353C18.2 HGNC:16185|Ensembl:ENSG00000125995|HPRD:12774|Vega:OTTHUMG00000032360 20 20q11.22 reactive oxygen species modulator 1 protein-coding ROMO1 reactive oxygen species modulator 1 O ROS modulator 1|epididymis tissue protein Li 175|glyrichin|mitochondrial targeting GXXXG protein|mitochondrial targeting GxxxG motif protein|protein MGR2 homolog 20121230 -9606 140825 NEURL2 - C20orf163|OZZ|Ozz-E3 HGNC:16156|MIM:608597|Ensembl:ENSG00000124257|HPRD:16353|Vega:OTTHUMG00000032626 20 20q13.12 neuralized homolog 2 (Drosophila) protein-coding NEURL2 neuralized homolog 2 (Drosophila) O neuralized-like 2|neuralized-like protein 2 20121230 -9606 140828 LINC00261 hCG_2045836 C20orf56|NCRNA00261|bA216C10.1|dJ788L20.2 HGNC:16189 20 20p11.21 long intergenic non-protein coding RNA 261 miscRNA LINC00261 long intergenic non-protein coding RNA 261 O - 20121230 -9606 140831 ZSWIM3 - C20orf164 HGNC:16157|Ensembl:ENSG00000132801|HPRD:15903|Vega:OTTHUMG00000032627 20 20q13.12 zinc finger, SWIM-type containing 3 protein-coding ZSWIM3 zinc finger, SWIM-type containing 3 O zinc finger SWIM domain-containing protein 3|zinc finger, SWIM domain containing 3 20121230 -9606 140832 WFDC10A - C20orf146|WAP10|dJ688G8.3 HGNC:16139|Ensembl:ENSG00000180305|HPRD:15671|Vega:OTTHUMG00000046331 20 20q13.12 WAP four-disulfide core domain 10A protein-coding WFDC10A WAP four-disulfide core domain 10A O WAP four-disulfide core domain protein 10A|putative protease inhibitor WAP10A 20121230 -9606 140834 C20orf62 - dJ1013A22.3 HGNC:16195|HPRD:18555 20 20q13.12 chromosome 20 open reading frame 62 other C20orf62 chromosome 20 open reading frame 62 O - 20121021 -9606 140836 BANF2 RP4-803K15.1 BAF-L|BAF2|BAFL|C20orf179 HGNC:16172|Ensembl:ENSG00000125888|HPRD:12759|Vega:OTTHUMG00000031949 20 20p12.1 barrier to autointegration factor 2 protein-coding BANF2 barrier to autointegration factor 2 O barrier-to-autointegration factor 2|barrier-to-autointegration factor-like protein 20121230 -9606 140838 NANP - C20orf147|HDHD4|dJ694B14.3 HGNC:16140|MIM:610763|Ensembl:ENSG00000170191|HPRD:17097|Vega:OTTHUMG00000032132 20 20p11.1 N-acetylneuraminic acid phosphatase protein-coding NANP N-acetylneuraminic acid phosphatase O N-acylneuraminate-9-phosphatase|Neu5Ac-9-Pase|haloacid dehalogenase-like hydrolase domain containing 4|haloacid dehalogenase-like hydrolase domain-containing protein 4 20121230 -9606 140846 FAM83C-AS1 - C20orf120|NCRNA00154|dJ614O4.3 HGNC:16113 20 - FAM83C antisense RNA 1 miscRNA FAM83C-AS1 FAM83C antisense RNA 1 O - 20121021 -9606 140848 MACROD2-IT1 - C20orf68|NCRNA00227|bA467D7.4 HGNC:16201 20 - MACROD2 intronic transcript 1 (non-protein coding) miscRNA MACROD2-IT1 MACROD2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 140849 LINC00266-1 - C20orf69|NCRNA00266|NCRNA00266-1|bA476I15.3 HGNC:16202 20 20q13.33 long intergenic non-protein coding RNA 266-1 miscRNA LINC00266-1 long intergenic non-protein coding RNA 266-1 O - 20121230 -9606 140850 DEFB127 UNQ1956/PRO6071 C20orf73|DEF-27|DEFB-27|DEFB27|bA530N10.2|hBD-27 HGNC:16206|Ensembl:ENSG00000088782|HPRD:10877|Vega:OTTHUMG00000031617 20 20p13 defensin, beta 127 protein-coding DEFB127 defensin, beta 127 O beta defensin 27|beta-defensin 127|beta-defensin 27 20121230 -9606 140851 MT1P3 - C20orf127|MTL4|dJ614O4.6 HGNC:16120|HPRD:16639 20 20q11.2 metallothionein 1 pseudogene 3 pseudo MT1P3 metallothionein 1 pseudogene 3 O - 20121230 -9606 140856 SCP2D1 - C20orf79|HSD22|dJ1068E13.2 HGNC:16211|Ensembl:ENSG00000132631|HPRD:12785|Vega:OTTHUMG00000031983 20 20p11.23 SCP2 sterol-binding domain containing 1 protein-coding SCP2D1 SCP2 sterol-binding domain containing 1 O sterol carrier protein 2-like protein|uncharacterized protein C20orf79 20121230 -9606 140857 RPL7P3 - dJ353C17.2 HGNC:16566 20 20q13.33 ribosomal protein L7 pseudogene 3 pseudo RPL7P3 ribosomal protein L7 pseudogene 3 O - 20121230 -9606 140862 ISM1 RP11-149I18.1 C20orf82|ISM|Isthmin|bA149I18.1|dJ1077I2.1 HGNC:16213|Ensembl:ENSG00000101230|Vega:OTTHUMG00000031902 20 20p12.1 isthmin 1 homolog (zebrafish) protein-coding ISM1 isthmin 1 homolog (zebrafish) O isthmin-1 20121230 -9606 140863 SPINT5P hCG_1647457 C20orf168|dJ447F3.6 HGNC:16161 20 - serine peptidase inhibitor, Kunitz type 5, pseudogene pseudo SPINT5P serine peptidase inhibitor, Kunitz type 5, pseudogene O - 20121021 -9606 140865 LINC00686 RP11-93B14.7 C20orf90|bA93B14.2 HGNC:16221 20 - long intergenic non-protein coding RNA 686 miscRNA LINC00686 long intergenic non-protein coding RNA 686 O - 20121110 -9606 140870 WFDC6 RP3-461P17.11-002 C20orf171|WAP6|dJ461P17.11 HGNC:16164|Ensembl:ENSG00000243543|HPRD:15677|Vega:OTTHUMG00000046354 20 20q13.12 WAP four-disulfide core domain 6 protein-coding WFDC6 WAP four-disulfide core domain 6 O WAP four-disulfide core domain protein 6|protease inhibitor WAP6 20121230 -9606 140871 CFTRP1 - C20orf189|dJ760C5.1 HGNC:16182 20 20p11.1 cystic fibrosis transmembrane conductance regulator pseudogene 1 pseudo CFTRP1 cystic fibrosis transmembrane conductance regulator pseudogene 1 O - 20121230 -9606 140873 C20orf173 RP3-477O4.3 dJ477O4.4 HGNC:16166|Ensembl:ENSG00000125975|HPRD:12756|Vega:OTTHUMG00000032340 20 20q11.22 chromosome 20 open reading frame 173 protein-coding C20orf173 chromosome 20 open reading frame 173 O uncharacterized protein C20orf173 20121230 -9606 140875 LINC00028 - C20orf93|NCRNA00028|dJ1093G12.6 HGNC:16224 20 20q11.21 long intergenic non-protein coding RNA 28 miscRNA LINC00028 long intergenic non-protein coding RNA 28 O - 20121230 -9606 140876 FAM65C - C20orf175|C20orf176|dJ530I15.2|dJ530I15.3 HGNC:16168|Ensembl:ENSG00000042062|HPRD:12757|Vega:OTTHUMG00000032724 20 20q13.13 family with sequence similarity 65, member C protein-coding FAM65C family with sequence similarity 65, member C O protein FAM65C 20121230 -9606 140879 C20orf176 - dJ530I15.3 HGNC:16169 20 20q13.13 chromosome 20 open reading frame 176 unknown C20orf176 chromosome 20 open reading frame 176 O - 20081012 -9606 140880 CST11 - CST8L|CTES2|SC13|dJ322G13.6 HGNC:15959|MIM:609731|Ensembl:ENSG00000125831|HPRD:16767|Vega:OTTHUMG00000032060 20 20p11.21 cystatin 11 protein-coding CST11 cystatin 11 O SC13delta|cystatin-11|cystatin-related epididymal-specific protein 20121230 -9606 140881 DEFB129 UNQ5794/PRO19599 C20orf87|DEFB-29|DEFB29|bA530N10.3|hBD-29 HGNC:16218|HPRD:10878 20 20p13 defensin, beta 129 protein-coding DEFB129 defensin, beta 129 O beta defensin 29|beta-defensin 129|beta-defensin 29 20121230 -9606 140883 ZNF280B - 5'OY11.1|D87009.C22.3|SUHW2|ZNF279|ZNF632 HGNC:23022|Ensembl:ENSG00000198477|HPRD:11615|Vega:OTTHUMG00000151066 22 22q11.22 zinc finger protein 280B protein-coding ZNF280B zinc finger protein 280B O suppressor of hairy wing homolog 2|zinc finger protein 279|zinc finger protein 632 20121230 -9606 140885 SIRPA RP4-684O24.2 BIT|CD172A|MFR|MYD-1|P84|PTPNS1|SHPS1|SIRP HGNC:9662|MIM:602461|Ensembl:ENSG00000198053|HPRD:03912|Vega:OTTHUMG00000031682 20 20p13 signal-regulatory protein alpha protein-coding SIRPA signal-regulatory protein alpha O CD172 antigen-like family member A|brain-immunoglobulin-like molecule with tyrosine-based activation motifs|inhibitory receptor SHPS-1|macrophage fusion receptor|myd-1 antigen|tyrosine phosphatase SHP substrate 1|tyrosine-protein phosphatase non-receptor type substrate 1 20121230 -9606 140886 PABPC5 RP13-24G8.3 PABP5 HGNC:13629|MIM:300407|Ensembl:ENSG00000174740|HPRD:02324|Vega:OTTHUMG00000021959 X Xq21.3 poly(A) binding protein, cytoplasmic 5 protein-coding PABPC5 poly(A) binding protein, cytoplasmic 5 O polyadenylate-binding protein 5 20121230 -9606 140890 SREK1 - SFRS12|SRrp508|SRrp86 HGNC:17882|MIM:609268|Ensembl:ENSG00000153914|HPRD:18043|Vega:OTTHUMG00000097809 5 5q12.3 splicing regulatory glutamine/lysine-rich protein 1 protein-coding SREK1 splicing regulatory glutamine/lysine-rich protein 1 O serine-arginine-rich splicing regulatory protein 508|serine/arginine-rich-splicing regulatory protein 86|splicing factor, arginine/serine-rich 12|splicing regulatory protein 508 20121230 -9606 140892 TCPT - - MIM:188025 11 11q23 thrombocytopenia, Paris-Trousseau type unknown - - - - 20110215 -9606 140893 RBBP8NL RP5-908M14.6 C20orf151 HGNC:16144|Ensembl:ENSG00000130701|HPRD:12751|Vega:OTTHUMG00000032913 20 20q13.33 RBBP8 N-terminal like protein-coding RBBP8NL RBBP8 N-terminal like O uncharacterized protein C20orf151 20121230 -9606 140894 CNBD2 RP5-954P9.1 C20orf152|CNMPD1|dJ954P9.1 HGNC:16145|Ensembl:ENSG00000149646|HPRD:09838|Vega:OTTHUMG00000032371 20 20q11.23 cyclic nucleotide binding domain containing 2 protein-coding CNBD2 cyclic nucleotide binding domain containing 2 O cyclic nucleotide (cNMP) binding domain containing 1|uncharacterized protein C20orf152 20121230 -9606 140895 HSPE1P1 - HSPEP1|bA101E14.1 HGNC:16530 20 20q12 heat shock 10kDa protein 1 (chaperonin 10) pseudogene 1 pseudo HSPE1P1 heat shock 10kDa protein 1 (chaperonin 10) pseudogene 1 O - 20121230 -9606 140901 STK35 - CLIK1|STK35L1 HGNC:16254|MIM:609370|Ensembl:ENSG00000125834|HPRD:11612|Vega:OTTHUMG00000031688 20 20p13 serine/threonine kinase 35 protein-coding STK35 serine/threonine kinase 35 O CLIK-1|CLP-36 interacting kinase|CLP-36-interacting kinase 1|PDLIM1-interacting kinase 1|serine threonine kinase 35 long form|serine/threonine-protein kinase 35|serine/threonine-protein kinase 35 L1 20121230 -9606 140902 R3HDML - dJ881L22.3 HGNC:16249|Ensembl:ENSG00000101074|HPRD:17945|Vega:OTTHUMG00000032524 20 20q13.12 R3H domain containing-like protein-coding R3HDML R3H domain containing-like O R3H domain (binds single-stranded nucleic acids) containing-like|cysteine-rich secretory protein R3HDML|peptidase inhibitor R3HDML 20121230 -9606 140906 SPG18 - - HGNC:18009|MIM:611225 - - spastic paraplegia 18 (autosomal dominant) unknown SPG18 spastic paraplegia 18 (autosomal dominant) O - 20120622 -9606 140907 SPG19 - - HGNC:16706|MIM:607152 9 9q spastic paraplegia 19 (autosomal dominant) unknown SPG19 spastic paraplegia 19 (autosomal dominant) O - 20120622 -9606 140909 MTCO2P1 - MTCO2L|dJ342K12.1 HGNC:16564 20 20q13.33 MT-CO2 pseudogene 1 pseudo MTCO2P1 MT-CO2 pseudogene 1 O - 20121230 -9606 140913 PPIAP10 - CRP|PPIAL2|PPIP10|dJ823G15.1 HGNC:9264 20 20q13.2 peptidylprolyl isomerase A (cyclophilin A) pseudogene 10 pseudo PPIAP10 peptidylprolyl isomerase A (cyclophilin A) pseudogene 10 O - 20121230 -9606 140921 PPP2R5CP - - HGNC:17835 3 3p21.3 protein phosphatase 2, regulatory subunit B', gamma pseudogene pseudo PPP2R5CP protein phosphatase 2, regulatory subunit B', gamma pseudogene O - 20121230 -9606 140947 C5orf20 - DCNP1 HGNC:24459|MIM:609710|Ensembl:ENSG00000251380|HPRD:16786|Vega:OTTHUMG00000163308 5 5q31.1 chromosome 5 open reading frame 20 protein-coding C5orf20 chromosome 5 open reading frame 20 O dendritic cell nuclear protein 1 20121230 -9606 142678 MIB2 RP11-345P4.1 ZZANK1|ZZZ5 HGNC:30577|MIM:611141|Ensembl:ENSG00000197530|HPRD:15905|Vega:OTTHUMG00000074647 1 1p36.33 mindbomb E3 ubiquitin protein ligase 2 protein-coding MIB2 mindbomb E3 ubiquitin protein ligase 2 O E3 ubiquitin-protein ligase MIB2|mind bomb homolog 2|mindbomb homolog 2|novel zinc finger protein|novelzin|putative NF-kappa-B-activating protein 002N|skeletrophin|zinc finger ZZ type with ankyrin repeat domain protein 1|zinc finger, ZZ type with ankyrin repeat domain 1 20121230 -9606 142679 DUSP19 - DUSP17|LMWDSP3|SKRP1|TS-DSP1 HGNC:18894|MIM:611437|Ensembl:ENSG00000162999|HPRD:13254|Vega:OTTHUMG00000132622 2 2q32.1 dual specificity phosphatase 19 protein-coding DUSP19 dual specificity phosphatase 19 O LMW-DSP3|SAPK pathway-regulating phosphatase 1|dual specificity phosphatase TS-DSP1|dual specificity protein phosphatase 19|low molecular weight dual specificity phosphatase 3|protein phosphatase SKRP1|stress-activated protein kinase pathway-regulating phosphatase 1 20121230 -9606 142680 SLC34A3 - HHRH|NPTIIc HGNC:20305|MIM:609826|Ensembl:ENSG00000198569|HPRD:10236|Vega:OTTHUMG00000131780 9 9q34 solute carrier family 34 (sodium phosphate), member 3 protein-coding SLC34A3 solute carrier family 34 (sodium phosphate), member 3 O Na(+)-dependent phosphate cotransporter 2C|Na(+)/Pi cotransporter 2C|naPi-2c|sodium-dependent phosphate transport protein 2C|sodium-phosphate transport protein 2C|sodium/inorganic phosphate cotransporter IIC|type IIc Na+/Pi cotransporter 20121230 -9606 142683 ITLN2 UNQ2789/PRO7179 HL-2|HL2 HGNC:20599|MIM:609874|Ensembl:ENSG00000158764|HPRD:17166|Vega:OTTHUMG00000028605 1 1q22-q23 intelectin 2 protein-coding ITLN2 intelectin 2 O endothelial lectin HL-2|intelectin-2 20121230 -9606 142684 RAB40A LL0XNC01-250H12.1 RAR2|RAR2A HGNC:18283|Ensembl:ENSG00000172476|HPRD:06705|Vega:OTTHUMG00000022100 X Xq22.1 RAB40A, member RAS oncogene family protein-coding RAB40A RAB40A, member RAS oncogene family O SOCS box containing protein RAR2A|SOCS box-containing protein RAR2A|protein Rar-2|ras-related protein Rab-40A 20121230 -9606 142685 ASB15 - - HGNC:19767|Ensembl:ENSG00000146809|HPRD:10669|Vega:OTTHUMG00000157114 7 7q31.31 ankyrin repeat and SOCS box containing 15 protein-coding ASB15 ankyrin repeat and SOCS box containing 15 O ASB-15|ankyrin repeat and SOCS box protein 15|ankyrin repeat and SOCS box-containing 15 20121230 -9606 142686 ASB14 - - HGNC:19766|Ensembl:ENSG00000239388|HPRD:10668|Vega:OTTHUMG00000158602 3 3p21.1 ankyrin repeat and SOCS box containing 14 protein-coding ASB14 ankyrin repeat and SOCS box containing 14 O ankyrin repeat and SOCS box protein 14|ankyrin repeat and SOCS box-containing 14|ankyrin repeat domain-containing SOCS box protein Asb-14 20121230 -9606 142689 ASB12 RP11-284B18.4 - HGNC:19763|Ensembl:ENSG00000198881|HPRD:06451|Vega:OTTHUMG00000021705 X Xq11.2 ankyrin repeat and SOCS box containing 12 protein-coding ASB12 ankyrin repeat and SOCS box containing 12 O ankyrin repeat and SOCS box protein 12|ankyrin repeat and SOCS box-containing 12|ankyrin repeat domain-containing SOCS box protein Asb-12 20121230 -9606 142827 C10orf129 - ACSM6|bA310E22.3 HGNC:31665|Ensembl:ENSG00000173124|HPRD:12565|Vega:OTTHUMG00000018808 10 10q23.33 chromosome 10 open reading frame 129 protein-coding C10orf129 chromosome 10 open reading frame 129 O AMP-binding enzyme|acyl-coenzyme A synthetase ACSM6, mitochondrial 20121230 -9606 142891 SAMD8 RP11-487I5.5 SMSr HGNC:26320|MIM:611575|Ensembl:ENSG00000156671|HPRD:18014|Vega:OTTHUMG00000018515 10 10q22.2 sterile alpha motif domain containing 8 protein-coding SAMD8 sterile alpha motif domain containing 8 O CPE synthase|SAM domain-containing protein 8|ceramide phosphoethanolamine synthase|sphingomyelin synthase related|sphingomyelin synthase-related protein 1|sterile alpha motif domain-containing protein 8 20121230 -9606 142910 LIPJ - LIPL1|bA425M17.2 HGNC:21773|MIM:613921|Ensembl:ENSG00000204022|HPRD:17281|Vega:OTTHUMG00000018691 10 10q23.31 lipase, family member J protein-coding LIPJ lipase, family member J O lipase J|lipase member J|lipase-like abhydrolase domain-containing protein 1|lipase-like, ab-hydrolase domain containing 1 20121230 -9606 142913 CFL1P1 - CFLP1 HGNC:28560 10 10q23.31 cofilin 1 (non-muscle) pseudogene 1 pseudo CFL1P1 cofilin 1 (non-muscle) pseudogene 1 O - 20121230 -9606 142937 LOC142937 - - - 10 10p15.1 uncharacterized protein BC008131 unknown - - - - 20120511 -9606 142940 TRUB1 - PUS4 HGNC:16060|MIM:610726|Ensembl:ENSG00000165832|HPRD:18229|Vega:OTTHUMG00000019094 10 10q25.3 TruB pseudouridine (psi) synthase homolog 1 (E. coli) protein-coding TRUB1 TruB pseudouridine (psi) synthase homolog 1 (E. coli) O probable tRNA pseudouridine synthase 1 20121230 -9606 143098 MPP7 RP11-218D6.5 - HGNC:26542|MIM:610973|Ensembl:ENSG00000150054|HPRD:14733|Vega:OTTHUMG00000017868 10 10p12.1 membrane protein, palmitoylated 7 (MAGUK p55 subfamily member 7) protein-coding MPP7 membrane protein, palmitoylated 7 (MAGUK p55 subfamily member 7) O MAGUK p55 subfamily member 7 20121230 -9606 143153 FLJ31958 - - HPRD:08114 10 10q11.23 uncharacterized LOC143153 unknown - - - - 20120508 -9606 143162 FRMPD2 - PDZD5C|PDZK4|PDZK5C HGNC:28572|MIM:613323|Ensembl:ENSG00000170324|HPRD:17019|Vega:OTTHUMG00000018171 10 10q11.22 FERM and PDZ domain containing 2 protein-coding FRMPD2 FERM and PDZ domain containing 2 O FERM and PDZ domain-containing protein 2|PDZ domain containing 5C|PDZ domain-containing protein 4 20121230 -9606 143187 VTI1A RP11-25C19.2 MVti1|VTI1RP2|Vti1-rp2 HGNC:17792|MIM:614316|Ensembl:ENSG00000151532|HPRD:18290|Vega:OTTHUMG00000019063 10 10q25.2 vesicle transport through interaction with t-SNAREs 1A protein-coding VTI1A vesicle transport through interaction with t-SNAREs 1A O SNARE Vti1a-beta protein|vesicle transport through interaction with t-SNAREs homolog 1A|vesicle transport v-SNARE protein Vti1-like 2 20121230 -9606 143188 LOC143188 - - - 10 10q25.2 uncharacterized LOC143188 miscRNA - - - - 20121017 -9606 143241 DYDC1 RSD9 DPY30D1 HGNC:23460|Ensembl:ENSG00000170788|HPRD:14062|Vega:OTTHUMG00000018609 10 10q23.1 DPY30 domain containing 1 protein-coding DYDC1 DPY30 domain containing 1 O DPY30 domain-containing protein 1 20121230 -9606 143244 EIF5AL1 RP11-342M3.3 EIF5AP1|bA342M3.3 HGNC:17419|Ensembl:ENSG00000253626|Vega:OTTHUMG00000018563 10 10q22.3 eukaryotic translation initiation factor 5A-like 1 protein-coding EIF5AL1 eukaryotic translation initiation factor 5A-like 1 O eukaryotic translation initiation factor 5A pseudogene 1|eukaryotic translation initiation factor 5A-1-like 20121230 -9606 143279 HECTD2 RP11-108M11.2 - HGNC:26736|Ensembl:ENSG00000165338|HPRD:13643|Vega:OTTHUMG00000018742 10 10q23.32 HECT domain containing E3 ubiquitin protein ligase 2 protein-coding HECTD2 HECT domain containing E3 ubiquitin protein ligase 2 O HECT domain containing 2|HECT domain-containing protein 2|probable E3 ubiquitin-protein ligase HECTD2 20121230 -9606 143282 FGFBP3 PSEC0101 C10orf13|FGF-BP3 HGNC:23428|Ensembl:ENSG00000174721|HPRD:08499|Vega:OTTHUMG00000018751 10 10q23.32 fibroblast growth factor binding protein 3 protein-coding FGFBP3 fibroblast growth factor binding protein 3 O FGF-binding protein 3|FGFBP-3|fibroblast growth factor-binding protein 3 20121230 -9606 143286 LOC143286 - - - 10 10q24.32 uncharacterized LOC143286 protein-coding - - - - 20111113 -9606 143341 EIF3LP2 - EIF3EIPP2|EIF3S6IPP2 HGNC:24657 10 10q11.21 eukaryotic translation initiation factor 3, subunit L pseudogene 2 pseudo EIF3LP2 eukaryotic translation initiation factor 3, subunit L pseudogene 2 O - 20121230 -9606 143371 YWHAZP3 - - HGNC:31101 10 10p12.2 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 3 pseudo YWHAZP3 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 3 O - 20121230 -9606 143379 C10orf82 - - HGNC:28500|Ensembl:ENSG00000165863|HPRD:12592|Vega:OTTHUMG00000019105 10 10q25.3 chromosome 10 open reading frame 82 protein-coding C10orf82 chromosome 10 open reading frame 82 O uncharacterized protein C10orf82 20121230 -9606 143384 CACUL1 - C10orf46|CAC1 HGNC:23727|Ensembl:ENSG00000151893|HPRD:12576|Vega:OTTHUMG00000019138 10 10q26.11 CDK2-associated, cullin domain 1 protein-coding CACUL1 CDK2-associated, cullin domain 1 O CDK2-associated and cullin domain-containing protein 1|Cdk-Associated Cullin1|cullin 20121230 -9606 143425 SYT9 - - HGNC:19265|MIM:613528|Ensembl:ENSG00000170743|HPRD:11618|Vega:OTTHUMG00000165499 11 11p15.4 synaptotagmin IX protein-coding SYT9 synaptotagmin IX O synaptotagmin-9|sytIX 20121230 -9606 143458 LDLRAD3 - LRAD3 HGNC:27046|Ensembl:ENSG00000179241|HPRD:14063|Vega:OTTHUMG00000166313 11 11p13 low density lipoprotein receptor class A domain containing 3 protein-coding LDLRAD3 low density lipoprotein receptor class A domain containing 3 O low-density lipoprotein receptor class A domain-containing protein 3 20121230 -9606 143471 PSMA8 - PSMA7L HGNC:22985|Ensembl:ENSG00000154611|HPRD:11322|Vega:OTTHUMG00000179426 18 18q11.2 proteasome (prosome, macropain) subunit, alpha type, 8 protein-coding PSMA8 proteasome (prosome, macropain) subunit, alpha type, 8 O proteasome subunit alpha type-7-like 20121230 -9606 143496 OR52B4 - OR11-3 HGNC:15209|Ensembl:ENSG00000221996|HPRD:15007|Vega:OTTHUMG00000154222 11 11p15.4 olfactory receptor, family 52, subfamily B, member 4 protein-coding OR52B4 olfactory receptor, family 52, subfamily B, member 4 O olfactory receptor 52B4|olfactory receptor OR11-3 20121230 -9606 143501 C11orf40 - NOV1 HGNC:23986|Ensembl:ENSG00000171987|HPRD:17643|Vega:OTTHUMG00000165345 11 11p15.5 chromosome 11 open reading frame 40 protein-coding C11orf40 chromosome 11 open reading frame 40 O putative uncharacterized protein C11orf40|ro/SSA1-related protein 20121230 -9606 143502 OR52I2 - OR11-12 HGNC:15221|Ensembl:ENSG00000226288|HPRD:15016|Vega:OTTHUMG00000165721 11 11p15.4 olfactory receptor, family 52, subfamily I, member 2 protein-coding OR52I2 olfactory receptor, family 52, subfamily I, member 2 O olfactory receptor 52I2|olfactory receptor OR11-12 20121230 -9606 143503 OR51E1 - D-GPCR|GPR136|GPR164|OR51E1P|OR52A3P|POGR|PSGR2 HGNC:15194|MIM:611267|Ensembl:ENSG00000180785|HPRD:14996|Vega:OTTHUMG00000157024 11 11p15.4 olfactory receptor, family 51, subfamily E, member 1 protein-coding OR51E1 olfactory receptor, family 51, subfamily E, member 1 O Dresden-G-protein-coupled receptor|G-protein coupled receptor 164|olfactory receptor 51E1|olfactory receptor 52A3|olfactory receptor OR11-15|olfactory receptor, family 51, subfamily E, member 1 pseudogene|olfactory receptor, family 52, subfamily A, member 3 pseudogene|prostate overexpressed G protein-coupled receptor|prostate-overexpressed G protein-coupled receptor|prostate-specific G protein-coupled receptor 2 20121230 -9606 143506 SSU72P3 - - HGNC:43622 11 11p15.4 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 3 pseudo SSU72P3 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 3 O - 20121230 -9606 143543 RBMXP3 - - HGNC:33949 11 11q14.1 RNA binding motif protein, X-linked pseudogene 3 pseudo RBMXP3 RNA binding motif protein, X-linked pseudogene 3 O - 20121230 -9606 143570 XRRA1 - - HGNC:18868|MIM:609788|Ensembl:ENSG00000166435|Vega:OTTHUMG00000165515 11 11q13.4 X-ray radiation resistance associated 1 protein-coding XRRA1 X-ray radiation resistance associated 1 O X-ray radiation resistance-associated protein 1 20121230 -9606 143630 UBQLNL - - HGNC:28294|Ensembl:ENSG00000175518|HPRD:14472|Vega:OTTHUMG00000066903 11 11p15.4 ubiquilin-like protein-coding UBQLNL ubiquilin-like O ubiquilin-like protein 20121230 -9606 143662 MUC15 UNQ750/PRO1481 MUC-15|PAS3|PASIII HGNC:14956|MIM:608566|Ensembl:ENSG00000169550|HPRD:16349|Vega:OTTHUMG00000166112 11 11p14.3 mucin 15, cell surface associated protein-coding MUC15 mucin 15, cell surface associated O mucin-15 20121230 -9606 143666 LOC143666 - - - 11 11p15.5 uncharacterized LOC143666 miscRNA - - - - 20121230 -9606 143678 C11orf94 - - HGNC:37213|Ensembl:ENSG00000234776|Vega:OTTHUMG00000167004 11 11p11.2 chromosome 11 open reading frame 94 protein-coding C11orf94 chromosome 11 open reading frame 94 O uncharacterized protein C11orf94 20121230 -9606 143684 FAM76B - - HGNC:28492|Ensembl:ENSG00000077458|HPRD:11333|Vega:OTTHUMG00000167739 11 11q21 family with sequence similarity 76, member B protein-coding FAM76B family with sequence similarity 76, member B O protein FAM76B 20121230 -9606 143686 SESN3 - SEST3 HGNC:23060|MIM:607768|Ensembl:ENSG00000149212|HPRD:09682|Vega:OTTHUMG00000167829 11 11q21 sestrin 3 protein-coding SESN3 sestrin 3 O sestrin-3 20121230 -9606 143689 PIWIL4 - HIWI2|MIWI2 HGNC:18444|MIM:610315|Ensembl:ENSG00000134627|HPRD:11435|Vega:OTTHUMG00000167811 11 11q21 piwi-like 4 (Drosophila) protein-coding PIWIL4 piwi-like 4 (Drosophila) O piwi-like protein 4 20121230 -9606 143872 ARHGAP42 - GRAF3 HGNC:26545|Ensembl:ENSG00000165895|Vega:OTTHUMG00000167530 11 11q22.1 Rho GTPase activating protein 42 protein-coding ARHGAP42 Rho GTPase activating protein 42 O rho GTPase-activating protein 42|rho-type GTPase-activating protein 42 20121230 -9606 143879 KBTBD3 - BKLHD3 HGNC:22934|Ensembl:ENSG00000182359|HPRD:10005|Vega:OTTHUMG00000166251 11 11q22.3 kelch repeat and BTB (POZ) domain containing 3 protein-coding KBTBD3 kelch repeat and BTB (POZ) domain containing 3 O BTB and kelch domain containing 3|BTB and kelch domain-containing protein 3|kelch repeat and BTB domain-containing protein 3 20121230 -9606 143884 CWF19L2 - - HGNC:26508|Ensembl:ENSG00000152404|HPRD:13102|Vega:OTTHUMG00000152975 11 11q22.3 CWF19-like 2, cell cycle control (S. pombe) protein-coding CWF19L2 CWF19-like 2, cell cycle control (S. pombe) O CWF19-like protein 2 20121230 -9606 143888 KDELC2 UNQ1904/PRO4350 - HGNC:28496|Ensembl:ENSG00000178202|HPRD:13773|Vega:OTTHUMG00000166535 11 11q22.3 KDEL (Lys-Asp-Glu-Leu) containing 2 protein-coding KDELC2 KDEL (Lys-Asp-Glu-Leu) containing 2 O KDEL motif-containing protein 2 20121230 -9606 143903 LAYN UNQ208/PRO234 - HGNC:29471|Ensembl:ENSG00000204381|HPRD:17299|Vega:OTTHUMG00000166721 11 11q23.1 layilin protein-coding LAYN layilin O - 20121230 -9606 143941 TTC36 - HBP21 HGNC:33708|Ensembl:ENSG00000172425|Vega:OTTHUMG00000166338 11 11q23.3 tetratricopeptide repeat domain 36 protein-coding TTC36 tetratricopeptide repeat domain 36 O HSP70 binding protein 21|HSP70-binding protein 21|TPR repeat protein 36|tetratricopeptide repeat protein 36 20121230 -9606 144017 LOC144017 - - - 11 11p15.3 uncharacterized LOC144017 unknown - - - - 20120508 -9606 144097 C11orf84 - - HGNC:25115|Ensembl:ENSG00000168005|HPRD:14064|Vega:OTTHUMG00000167746 11 11q13.1 chromosome 11 open reading frame 84 protein-coding C11orf84 chromosome 11 open reading frame 84 O hypothetical protein BC007540|uncharacterized protein C11orf84 20121230 -9606 144100 PLEKHA7 hCG_2040524 - HGNC:27049|MIM:612686|Ensembl:ENSG00000166689|HPRD:15142|Vega:OTTHUMG00000165954 11 11p15.1 pleckstrin homology domain containing, family A member 7 protein-coding PLEKHA7 pleckstrin homology domain containing, family A member 7 O PH domain-containing family A member 7|pleckstrin homology domain containing, family A member 2|pleckstrin homology domain-containing family A member 7 20121230 -9606 144106 ST13P5 - FAM10A5 HGNC:18556|HPRD:13288 11 11p15.1 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 5 pseudo ST13P5 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 5 O - 20121230 -9606 144108 SPTY2D1 - - HGNC:26818|Ensembl:ENSG00000179119|HPRD:13436|Vega:OTTHUMG00000167733 11 11p15.1 SPT2, Suppressor of Ty, domain containing 1 (S. cerevisiae) protein-coding SPTY2D1 SPT2, Suppressor of Ty, domain containing 1 (S. cerevisiae) O SPT2 domain-containing protein 1|protein SPT2 homolog 20121230 -9606 144110 TMEM86A - - HGNC:26890|Ensembl:ENSG00000151117|HPRD:08292|Vega:OTTHUMG00000167680 11 11p15.1 transmembrane protein 86A protein-coding TMEM86A transmembrane protein 86A O lysoplasmalogenase-like protein TMEM86A 20121230 -9606 144124 OR10A5 - JCG6|OR10A1|OR11-403 HGNC:15131|MIM:608493|Ensembl:ENSG00000166363|HPRD:16339|Vega:OTTHUMG00000165738 11 11p15.4 olfactory receptor, family 10, subfamily A, member 5 protein-coding OR10A5 olfactory receptor, family 10, subfamily A, member 5 O HP3|olfactory receptor 10A1|olfactory receptor 10A5|olfactory receptor 11-403|olfactory receptor OR11-85|olfactory receptor, family 10, subfamily A, member 1|olfactory receptor-like protein JCG6 20121230 -9606 144125 OR2AG1 - OR11-79|OR2AG3 HGNC:15142|Ensembl:ENSG00000170803|HPRD:14935|Vega:OTTHUMG00000165735 11 11p15.4 olfactory receptor, family 2, subfamily AG, member 1 protein-coding OR2AG1 olfactory receptor, family 2, subfamily AG, member 1 O hT3 olfactory receptor|olfactory receptor 2AG1|olfactory receptor 2AG3|olfactory receptor OR11-79|olfactory receptor, family 2, subfamily AG, member 3 20121230 -9606 144132 DNHD1 UNQ5781/PRO12970 C11orf47|CCDC35|DHCD1|DNHD1L HGNC:26532|Ensembl:ENSG00000179532|HPRD:08137|Vega:OTTHUMG00000133403 11 11p15.4 dynein heavy chain domain 1 protein-coding DNHD1 dynein heavy chain domain 1 O DNHD1 variant protein|coiled-coil domain containing 35|dynein heavy chain domain 1-like protein|dynein heavy chain domain-containing protein 1 20121230 -9606 144165 PRICKLE1 - EPM1B|RILP HGNC:17019|MIM:608500|Ensembl:ENSG00000139174|HPRD:16341|Vega:OTTHUMG00000169443 12 12q12 prickle homolog 1 (Drosophila) protein-coding PRICKLE1 prickle homolog 1 (Drosophila) O REST (RE-1 silencing transcription factor)/NRSF (neuron-restrictive silencer factor)-interacting LIM domain protein|REST/NRSF-interacting LIM domain protein 1|prickle-like 1|prickle-like protein 1 20121230 -9606 144193 AMDHD1 HMFT1272 - HGNC:28577|Ensembl:ENSG00000139344|HPRD:14605|Vega:OTTHUMG00000170353 12 12q23.1 amidohydrolase domain containing 1 protein-coding AMDHD1 amidohydrolase domain containing 1 O amidohydrolase domain-containing protein 1|probable imidazolonepropionase 20121230 -9606 144195 SLC2A14 - GLUT14|SLC2A3P3 HGNC:18301|MIM:611039|Ensembl:ENSG00000173262|HPRD:11573|Vega:OTTHUMG00000168463 12 12p13.31 solute carrier family 2 (facilitated glucose transporter), member 14 protein-coding SLC2A14 solute carrier family 2 (facilitated glucose transporter), member 14 O GLUT-14|glucose transporter 14|glucose transporter type 14|solute carrier family 2 (facilitated glucose transporter), member 3 pseudogene 3|solute carrier family 2, facilitated glucose transporter member 14 20121230 -9606 144203 OVOS2 - - - 12 12p11.21 ovostatin 2 protein-coding - - - ovostatin homolog 2 20121230 -9606 144233 BCDIN3D - - HGNC:27050|Ensembl:ENSG00000186666|HPRD:14065|Vega:OTTHUMG00000169807 12 12q13.12 BCDIN3 domain containing protein-coding BCDIN3D BCDIN3 domain containing O BCDIN3 domain-containing protein|probable methyltransferase BCDIN3D 20121230 -9606 144245 ALG10B - ALG10|KCR1 HGNC:31088|Ensembl:ENSG00000175548|HPRD:11923|Vega:OTTHUMG00000169298 12 12q12 asparagine-linked glycosylation 10, alpha-1,2-glucosyltransferase homolog B (yeast) protein-coding ALG10B asparagine-linked glycosylation 10, alpha-1,2-glucosyltransferase homolog B (yeast) O alpha-1,2-glucosyltransferase ALG10-A|alpha-2-glucosyltransferase ALG10-B|asparagine-linked glycosylation 10 homolog B (yeast, alpha-1,2-glucosyltransferase)|asparagine-linked glycosylation protein 10 homolog B|modifier of the HERG potassium channel|potassium channel regulator 1|putative Dol-P-Glc:Glc(2)Man(9)GlcNAc(2)-PP-Dol alpha-1,2-glucosyltransferase|putative alpha-1,2-glucosyltransferase ALG10-B 20121230 -9606 144321 GLIPR1L2 - - HGNC:28592|MIM:610394|Ensembl:ENSG00000180481|HPRD:17538|Vega:OTTHUMG00000169756 12 12q21.2 GLI pathogenesis-related 1 like 2 protein-coding GLIPR1L2 GLI pathogenesis-related 1 like 2 O GLIPR1-like protein 2 20121230 -9606 144347 FAM101A - - HGNC:27051|Ensembl:ENSG00000178882|HPRD:14066|Vega:OTTHUMG00000168609 12 12q24.31 family with sequence similarity 101, member A protein-coding FAM101A family with sequence similarity 101, member A O protein FAM101A 20121230 -9606 144348 ZNF664 - ZFOC1|ZNF176 HGNC:25406|Ensembl:ENSG00000179195|HPRD:15723|Vega:OTTHUMG00000168596 12 12q24.31 zinc finger protein 664 protein-coding ZNF664 zinc finger protein 664 O zinc finger Organ of Corti 1|zinc finger protein 176|zinc finger protein from organ of Corti 20121230 -9606 144360 LINC00477 - C12orf67|FAM191B HGNC:26557|HPRD:08738 12 12p12.1 long intergenic non-protein coding RNA 477 miscRNA LINC00477 long intergenic non-protein coding RNA 477 O - 20121230 -9606 144363 LYRM5 - - HGNC:27052|Ensembl:ENSG00000205707|HPRD:14067|Vega:OTTHUMG00000171190 12 12p12.1 LYR motif containing 5 protein-coding LYRM5 LYR motif containing 5 O LYR motif-containing protein 5 20121230 -9606 144383 LOC144383 - - - 12 12p11.21 interferon induced transmembrane protein 3 pseudogene pseudo - - - - 20121230 -9606 144402 CPNE8 - - HGNC:23498|Ensembl:ENSG00000139117|HPRD:16747|Vega:OTTHUMG00000169396 12 12q12 copine VIII protein-coding CPNE8 copine VIII O copine-8 20121230 -9606 144404 TMEM120B - - HGNC:32008|Ensembl:ENSG00000188735|Vega:OTTHUMG00000169076 12 12q24.31 transmembrane protein 120B protein-coding TMEM120B transmembrane protein 120B O - 20121230 -9606 144406 WDR66 - - HGNC:28506|Ensembl:ENSG00000158023|HPRD:14570|Vega:OTTHUMG00000168948 12 12q24.31 WD repeat domain 66 protein-coding WDR66 WD repeat domain 66 O WD repeat-containing protein 66 20121230 -9606 144423 GLT1D1 - - HGNC:26483|Ensembl:ENSG00000151948|HPRD:08115|Vega:OTTHUMG00000168437 12 12q24.33 glycosyltransferase 1 domain containing 1 protein-coding GLT1D1 glycosyltransferase 1 domain containing 1 O glycosyltransferase 1 domain-containing protein 1 20121230 -9606 144448 TSPAN19 - - HGNC:31886|Ensembl:ENSG00000231738|Vega:OTTHUMG00000166181 12 12q21.31 tetraspanin 19 protein-coding TSPAN19 tetraspanin 19 O putative tetraspanin-19|tspan-19 20121230 -9606 144453 BEST3 - VMD2L3 HGNC:17105|MIM:607337|Ensembl:ENSG00000127325|HPRD:17484|Vega:OTTHUMG00000149919 12 12q14.2-q15 bestrophin 3 protein-coding BEST3 bestrophin 3 O bestrophin-3|vitelliform macular dystrophy 2-like 3|vitelliform macular dystrophy 2-like protein 3 20121230 -9606 144455 E2F7 - - HGNC:23820|MIM:612046|Ensembl:ENSG00000165891|HPRD:10929|Vega:OTTHUMG00000169969 12 12q21.2 E2F transcription factor 7 protein-coding E2F7 E2F transcription factor 7 O E2F-7|transcription factor E2F7 20121230 -9606 144481 SOCS2-AS1 - - HGNC:27054 12 12q22 SOCS2 antisense RNA 1 miscRNA SOCS2-AS1 SOCS2 antisense RNA 1 O - 20121230 -9606 144486 LOC144486 - - - 12 12q22 uncharacterized LOC144486 miscRNA - - - - 20121230 -9606 144501 KRT80 - KB20 HGNC:27056|MIM:611161|Ensembl:ENSG00000167767|HPRD:14068|Vega:OTTHUMG00000150193 12 12q13.13 keratin 80 protein-coding KRT80 keratin 80 O CK-80|K80|cytokeratin-80|keratin b20|keratin, type II cytoskeletal 80|keratin-80|type II keratin|type-II keratin Kb20 20121230 -9606 144535 C12orf55 - - HGNC:26456 12 12q23.1 chromosome 12 open reading frame 55 protein-coding C12orf55 chromosome 12 open reading frame 55 O uncharacterized protein C12orf55 20121230 -9606 144568 A2ML1 - CPAMD9 HGNC:23336|MIM:610627|Ensembl:ENSG00000166535|HPRD:08684|Vega:OTTHUMG00000128499 12 12p13.31 alpha-2-macroglobulin-like 1 protein-coding A2ML1 alpha-2-macroglobulin-like 1 O C3 and PZP-like, alpha-2-macroglobulin domain containing 9|alpha-2-macroglobulin-like protein 1 20121230 -9606 144571 A2M-AS1 - - HGNC:27057 12 12p13.31 A2M antisense RNA 1 miscRNA A2M-AS1 A2M antisense RNA 1 O - 20121230 -9606 144577 C12orf66 - - HGNC:26517|Ensembl:ENSG00000174206|HPRD:08727|Vega:OTTHUMG00000168763 12 12q14.2 chromosome 12 open reading frame 66 protein-coding C12orf66 chromosome 12 open reading frame 66 O UPF0536 protein C12orf66 20121230 -9606 144581 RPL14P1 - RPL14L|RPL14_1_1246|bcm1298 HGNC:31384 12 12q14.2 ribosomal protein L14 pseudogene 1 pseudo RPL14P1 ribosomal protein L14 pseudogene 1 O - 20121230 -9606 144608 C12orf60 - - HGNC:28726|Ensembl:ENSG00000182993|HPRD:11358|Vega:OTTHUMG00000167473 12 12p12.3 chromosome 12 open reading frame 60 protein-coding C12orf60 chromosome 12 open reading frame 60 O uncharacterized protein C12orf60 20121230 -9606 144638 ST13P3 - FAM10A3|FAM10A3P HGNC:18552 12 12q23.3 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 3 pseudo ST13P3 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 3 O - 20121230 -9606 144699 FBXL14 - Fbl14 HGNC:28624|MIM:609081|Ensembl:ENSG00000171823|HPRD:10949|Vega:OTTHUMG00000090369 12 12p13.33 F-box and leucine-rich repeat protein 14 protein-coding FBXL14 F-box and leucine-rich repeat protein 14 O F-box/LRR-repeat protein 14 20121230 -9606 144712 HMGA1P3 - HMGA1L3|HMGIYL3 HGNC:13323 12 12q24.11 high mobility group AT-hook 1 pseudogene 3 pseudo HMGA1P3 high mobility group AT-hook 1 pseudogene 3 O - 20121230 -9606 144715 RAD9B - - HGNC:21700|MIM:608368|Ensembl:ENSG00000151164|Vega:OTTHUMG00000152952 12 12q24.11 RAD9 homolog B (S. pombe) protein-coding RAD9B RAD9 homolog B (S. pombe) O DNA repair exonuclease rad9 homolog B|cell cycle checkpoint control protein RAD9B|cell cycle checkpoint control protein RAD9B homolog|hRAD9B 20121230 -9606 144717 FAM109A - IPIP27A|SES1 HGNC:26509|MIM:614239|Ensembl:ENSG00000198324|HPRD:08127|Vega:OTTHUMG00000169547 12 12q24.12 family with sequence similarity 109, member A protein-coding FAM109A family with sequence similarity 109, member A O 27 kDa inositol polyphosphate phosphatase-interacting protein A|protein FAM109A|sesquipedalian-1 20121230 -9606 144742 LOC144742 - - - 12 12q24.23 uncharacterized LOC144742 miscRNA - - - - 20121230 -9606 144766 LINC00355 - - HGNC:27061 13 13q21.31 long intergenic non-protein coding RNA 355 unknown LINC00355 long intergenic non-protein coding RNA 355 O - 20121021 -9606 144776 LINC00410 hCG_2038428 - HGNC:42742 13 13q31.3 long intergenic non-protein coding RNA 410 miscRNA LINC00410 long intergenic non-protein coding RNA 410 O - 20121230 -9606 144809 FAM216B RP11-366O17.1 C13orf30 HGNC:26883|Ensembl:ENSG00000179813|HPRD:08289|Vega:OTTHUMG00000016809 13 13q14.11 family with sequence similarity 216, member B protein-coding FAM216B family with sequence similarity 216, member B O protein FAM216B|uncharacterized protein C13orf30 20121230 -9606 144811 LACC1 RP11-5G9.2 C13orf31 HGNC:26789|MIM:613409|Ensembl:ENSG00000179630|HPRD:08793|Vega:OTTHUMG00000016826 13 13q14.11 laccase (multicopper oxidoreductase) domain containing 1 protein-coding LACC1 laccase (multicopper oxidoreductase) domain containing 1 O laccase domain-containing protein 1 20121230 -9606 144817 LINC00330 - NCRNA00330 HGNC:42047 13 13q14.11 long intergenic non-protein coding RNA 330 miscRNA LINC00330 long intergenic non-protein coding RNA 330 O - 20121230 -9606 144832 ESRRAP2 - ESTRRA HGNC:24647 13 13q12.11 estrogen-related receptor alpha pseudogene 2 pseudo ESRRAP2 estrogen-related receptor alpha pseudogene 2 O - 20121230 -9606 144847 ESRRAP1 - ESRRAP|bA76K19.2 HGNC:3472 13 13q12.1 estrogen-related receptor alpha pseudogene 1 pseudo ESRRAP1 estrogen-related receptor alpha pseudogene 1 O - 20121230 -9606 144920 LINC00343 - NCRNA00343 HGNC:42500 13 13q33.2 long intergenic non-protein coding RNA 343 miscRNA LINC00343 long intergenic non-protein coding RNA 343 O - 20121230 -9606 144983 HNRNPA1L2 RP11-78J21.1 - HGNC:27067|Ensembl:ENSG00000139675|HPRD:17300 13 13q14.3 heterogeneous nuclear ribonucleoprotein A1-like 2 protein-coding HNRNPA1L2 heterogeneous nuclear ribonucleoprotein A1-like 2 O hnRNP A1-like 2|hnRNP core protein A1-like 2 20121230 -9606 145165 ST13P4 - FAM10A4|FAM10A4P HGNC:18487 13 13q14.3 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 4 pseudo ST13P4 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 4 O - 20121230 -9606 145173 B3GALTL RP11-367C11.1 B3GLCT|B3GTL|B3Glc-T|Gal-T|beta3Glc-T HGNC:20207|MIM:610308|Ensembl:ENSG00000187676|HPRD:12513|Vega:OTTHUMG00000016688 13 13q12.3 beta 1,3-galactosyltransferase-like protein-coding B3GALTL beta 1,3-galactosyltransferase-like O UDP-GAL:beta-GlcNAc beta-1,3-galactosyltransferase-like|beta 3-glycosyltransferase-like|beta-1,3-glucosyltransferase|beta-3-glycosyltransferase-like 20121230 -9606 145195 C14orf144 - - HGNC:20358 14 14q32.33 chromosome 14 open reading frame 144 unknown C14orf144 chromosome 14 open reading frame 144 O - 20121021 -9606 145200 LINC00239 hCG_1814227 C14orf72|NCRNA00239 HGNC:20119 14 14q32.31 long intergenic non-protein coding RNA 239 miscRNA LINC00239 long intergenic non-protein coding RNA 239 O - 20121230 -9606 145216 LINC00637 - - HGNC:27069 14 14q32.33 long intergenic non-protein coding RNA 637 miscRNA LINC00637 long intergenic non-protein coding RNA 637 O - 20121230 -9606 145226 RDH12 - LCA13|LCA3|SDR7C2 HGNC:19977|MIM:608830|Ensembl:ENSG00000139988|HPRD:10585|Vega:OTTHUMG00000170032 14 14q24.1 retinol dehydrogenase 12 (all-trans/9-cis/11-cis) protein-coding RDH12 retinol dehydrogenase 12 (all-trans/9-cis/11-cis) O all-trans and 9-cis retinol dehydrogenase|retinol dehydrogenase 12|retinol dehydrogenase 12, all-trans and 9-cis|short chain dehydrogenase/reductase family 7C, member 2 20121230 -9606 145235 RPL24P3 - RPL24_2_1385 HGNC:19784 14 14q24.1 ribosomal protein L24 pseudogene 3 pseudo RPL24P3 ribosomal protein L24 pseudogene 3 O - 20121230 -9606 145241 ADAM21P1 - ADAM21P HGNC:19822 14 14q24.2 ADAM metallopeptidase domain 21 pseudogene 1 pseudo ADAM21P1 ADAM metallopeptidase domain 21 pseudogene 1 O - 20121230 -9606 145249 LINC00618 - C14orf63 HGNC:20110 14 14q32.31 long intergenic non-protein coding RNA 618 miscRNA LINC00618 long intergenic non-protein coding RNA 618 O - 20121110 -9606 145258 GSC - - HGNC:4612|MIM:138890|Ensembl:ENSG00000133937|HPRD:15928|Vega:OTTHUMG00000170864 14 14q32.1 goosecoid homeobox protein-coding GSC goosecoid homeobox O homeobox protein goosecoid 20121230 -9606 145259 RPSAP4 - LAMR1P4|RPSA_27_1403 HGNC:20018 14 14q32.13 ribosomal protein SA pseudogene 4 pseudo RPSAP4 ribosomal protein SA pseudogene 4 O - 20121230 -9606 145264 SERPINA12 - OL-64 HGNC:18359|Ensembl:ENSG00000165953|HPRD:18038|Vega:OTTHUMG00000171349 14 14q32.13 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 12 protein-coding SERPINA12 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 12 O serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 12|serpin A12|vaspin|visceral adipose tissue-derived serine protease inhibitor|visceral adipose-specific SERPIN 20121230 -9606 145270 PRIMA1 - PRIMA HGNC:18319|MIM:613851|Ensembl:ENSG00000175785|HPRD:17907|Vega:OTTHUMG00000141313 14 14q32.12 proline rich membrane anchor 1 protein-coding PRIMA1 proline rich membrane anchor 1 O acetylcholinesterase membrane anchor precursor PRiMA|proline-rich membrane anchor 1 20121230 -9606 145282 MIPOL1 - - HGNC:21460|MIM:606850|Ensembl:ENSG00000151338|HPRD:06029|Vega:OTTHUMG00000140252 14 14q13.3 mirror-image polydactyly 1 protein-coding MIPOL1 mirror-image polydactyly 1 O mirror-image polydactyly gene 1 protein 20121230 -9606 145370 RPL21P7 hCG_2028654 - HGNC:19772 14 14q23.3 ribosomal protein L21 pseudogene 7 pseudo RPL21P7 ribosomal protein L21 pseudogene 7 O - 20121230 -9606 145375 NUP50P1 - NUP50P HGNC:20025 14 14q23.3 nucleoporin 50 pseudogene 1 pseudo NUP50P1 nucleoporin 50 pseudogene 1 O - 20121230 -9606 145376 PPP1R36 - C14orf50 HGNC:20097|Ensembl:ENSG00000165807|HPRD:08505|Vega:OTTHUMG00000141316 14 14q23.3 protein phosphatase 1, regulatory subunit 36 protein-coding PPP1R36 protein phosphatase 1, regulatory subunit 36 O protein phosphatase 1 regulatory subunit 36 20121230 -9606 145389 SLC38A6 - NAT-1 HGNC:19863|Ensembl:ENSG00000139974|HPRD:15382|Vega:OTTHUMG00000140335 14 14q23.1 solute carrier family 38, member 6 protein-coding SLC38A6 solute carrier family 38, member 6 O N system amino acid transporter NAT-1|N-system amino acid transporter 1|Na(+)-coupled neutral amino acid transporter 6|probable sodium-coupled neutral amino acid transporter 6 20121230 -9606 145407 C14orf37 - c14_5376 HGNC:19846|Ensembl:ENSG00000139971|HPRD:10712|Vega:OTTHUMG00000171173 14 14q23.1 chromosome 14 open reading frame 37 protein-coding C14orf37 chromosome 14 open reading frame 37 O uncharacterized protein C14orf37 20121230 -9606 145438 FRMD6-AS1 hCG_2013199 C14orf82 HGNC:20129 14 14q22.1 FRMD6 antisense RNA 1 miscRNA FRMD6-AS1 FRMD6 antisense RNA 1 O - 20121230 -9606 145447 ABHD12B - BEM46L3|C14orf29|c14_5314 HGNC:19837|Ensembl:ENSG00000131969|Vega:OTTHUMG00000140286 14 14q22.1 abhydrolase domain containing 12B protein-coding ABHD12B abhydrolase domain containing 12B O abhydrolase domain-containing protein 12B 20121230 -9606 145474 LOC145474 - - - 14 14q24.2 uncharacterized LOC145474 miscRNA - - - - 20121230 -9606 145482 PTGR2 - PGR2|ZADH1 HGNC:20149|MIM:608642|Ensembl:ENSG00000140043|Ensembl:ENSG00000258653|HPRD:09782|Vega:OTTHUMG00000171255|Vega:OTTHUMG00000171256 14 14q24.3 prostaglandin reductase 2 protein-coding PTGR2 prostaglandin reductase 2 O 15-oxoprostaglandin 13-reductase|15-oxoprostaglandin-delta13-reductase|PRG-2|zinc binding alcohol dehydrogenase, domain containing 1|zinc-binding alcohol dehydrogenase domain-containing protein 1 20121230 -9606 145483 FAM161B - C14orf44|c14_5547 HGNC:19854|Ensembl:ENSG00000156050|HPRD:12649|Vega:OTTHUMG00000171259 14 14q24.3 family with sequence similarity 161, member B protein-coding FAM161B family with sequence similarity 161, member B O protein FAM161B 20121230 -9606 145497 C14orf166B - - HGNC:23346|Ensembl:ENSG00000100565|HPRD:12621|Vega:OTTHUMG00000150153 14 14q24.3 chromosome 14 open reading frame 166B protein-coding C14orf166B chromosome 14 open reading frame 166B O uncharacterized protein C14orf166B 20121230 -9606 145499 RPLP1P1 - RPLP1_4_1394 HGNC:19793 14 14q24.3 ribosomal protein, large, P1 pseudogene 1 pseudo RPLP1P1 ribosomal protein, large, P1 pseudogene 1 O - 20121230 -9606 145501 ISM2 PSEC0137 TAIL1|THSD3 HGNC:23176|MIM:612684|Ensembl:ENSG00000100593|HPRD:18182|Vega:OTTHUMG00000158563 14 14q24.3 isthmin 2 homolog (zebrafish) protein-coding ISM2 isthmin 2 homolog (zebrafish) O isthmin-2|thrombospondin and AMOP containing isthmin-like 1|thrombospondin and AMOP domain-containing isthmin-like protein 1|thrombospondin type-1 domain-containing protein 3|thrombospondin, type I domain-containing 3|thrombospondin, type I, domain containing 3 20121230 -9606 145508 CEP128 - C14orf145|C14orf61|LEDP/132 HGNC:20359|Ensembl:ENSG00000100629|HPRD:09834|Vega:OTTHUMG00000171442 14 14q31.1 centrosomal protein 128kDa protein-coding CEP128 centrosomal protein 128kDa O centrosomal protein of 128 kDa|lens epithelium-derived protein 20121230 -9606 145553 MDP1 - FN6PASE|MDP-1 HGNC:28781|Ensembl:ENSG00000213920|HPRD:14695|Vega:OTTHUMG00000133477 14 14q12 magnesium-dependent phosphatase 1 protein-coding MDP1 magnesium-dependent phosphatase 1 O fructosamine-6-phosphatase 20121230 -9606 145567 TTC7B - TTC7L1|c14_5685 HGNC:19858|Ensembl:ENSG00000165914|HPRD:18503|Vega:OTTHUMG00000171047 14 14q32.11 tetratricopeptide repeat domain 7B protein-coding TTC7B tetratricopeptide repeat domain 7B O TPR repeat protein 7-like-1|TPR repeat protein 7B|tetratricopeptide repeat domain 7 like 1|tetratricopeptide repeat protein 7-like-1|tetratricopeptide repeat protein 7B 20121230 -9606 145581 LRFN5 - C14orf146|FIGLER8|SALM5 HGNC:20360|MIM:612811|Ensembl:ENSG00000165379|HPRD:17445|Vega:OTTHUMG00000140261 14 14q21.1 leucine rich repeat and fibronectin type III domain containing 5 protein-coding LRFN5 leucine rich repeat and fibronectin type III domain containing 5 O fibronectin type III, immunoglobulin and leucine rich repeat domains 8|leucine-rich repeat and fibronectin type-III domain-containing protein 5 20121230 -9606 145624 PAR1 - D15S227E MIM:600161 15 15q11.2 Prader-Willi/Angelman region-1 miscRNA - - - - 20121230 -9606 145645 C15orf43 - - HGNC:28520|Ensembl:ENSG00000167014|HPRD:17528|Vega:OTTHUMG00000131264 15 15q21.1 chromosome 15 open reading frame 43 protein-coding C15orf43 chromosome 15 open reading frame 43 O uncharacterized protein C15orf43 20121230 -9606 145663 GATM-AS1 - - HGNC:27073 15 15q15.1 GATM antisense RNA 1 miscRNA GATM-AS1 GATM antisense RNA 1 O - 20121230 -9606 145678 LOC145678 - - - 15 15q24.3 uncharacterized LOC145678 unknown - - - - 20120508 -9606 145694 LOC145694 - - - 15 15q22.31 uncharacterized LOC145694 unknown - - - - 20121230 -9606 145741 C2CD4A - FAM148A|NLF1 HGNC:33627|MIM:610343|Ensembl:ENSG00000198535|HPRD:14830|Vega:OTTHUMG00000171942 15 15q22.2 C2 calcium-dependent domain containing 4A protein-coding C2CD4A C2 calcium-dependent domain containing 4A O C2 calcium-dependent domain-containing protein 4A|family with sequence similarity 148, member A|nuclear localized factor 1|nuclear-localized factor 1 20121230 -9606 145748 LYSMD4 - - HGNC:26571|Ensembl:ENSG00000183060|HPRD:08153|Vega:OTTHUMG00000149853 15 15q26.3 LysM, putative peptidoglycan-binding, domain containing 4 protein-coding LYSMD4 LysM, putative peptidoglycan-binding, domain containing 4 O lysM and putative peptidoglycan-binding domain-containing protein 4 20121230 -9606 145757 LOC145757 - - HPRD:18728 15 15q26.3 uncharacterized LOC145757 unknown - - - - 20121230 -9606 145767 RPS3AP6 - RPS3A-like|RPS3A_20_1440 HGNC:18630 15 15q21.3 ribosomal protein S3A pseudogene 6 pseudo RPS3AP6 ribosomal protein S3A pseudogene 6 O - 20121230 -9606 145773 FAM81A - - HGNC:28379|Ensembl:ENSG00000157470|HPRD:14508|Vega:OTTHUMG00000171915 15 15q22.2 family with sequence similarity 81, member A protein-coding FAM81A family with sequence similarity 81, member A O protein FAM81A 20121230 -9606 145781 GCOM1 - GRINL1A|Gcom2|MYZAP|MYZAP-POLR2M|gcom HGNC:26424|Ensembl:ENSG00000137878|HPRD:08091|Vega:OTTHUMG00000176411 15 15q21.3 GRINL1A complex locus 1 protein-coding GCOM1 GRINL1A complex locus 1 O GRINL1A combined protein|GRINL1A combined protein Gcom12|GRINL1A complex locus protein 1|MYZAP-POLR2M protein|MYZAP-POLR2M readthrough|NMDAR1 subunit-interacting protein|glutamate receptor, ionotropic, N-methyl D-aspartate-like 1A combined protein|myocardial zonula adherens protein 20121230 -9606 145783 LOC145783 - - - 15 15q21.3 uncharacterized LOC145783 miscRNA - - - - 20121230 -9606 145788 FLJ27352 - - Ensembl:ENSG00000261652|Vega:OTTHUMG00000172679 15 15q21.3 uncharacterized LOC145788 protein-coding - - - uncharacterized protein LOC145788 20121230 -9606 145814 PGPEP1L - - HGNC:27080|Ensembl:ENSG00000183571|Vega:OTTHUMG00000171896 15 15q26.3 pyroglutamyl-peptidase I-like protein-coding PGPEP1L pyroglutamyl-peptidase I-like O pyroglutamyl-peptidase 1-like protein 20121230 -9606 145820 LOC145820 - - - 15 15q26.2 uncharacterized LOC145820 miscRNA - - - - 20121230 -9606 145837 LOC145837 - - - 15 15q23 uncharacterized LOC145837 miscRNA - - - - 20121230 -9606 145845 LOC145845 - - - 15 15q14 uncharacterized LOC145845 miscRNA - - - - 20121230 -9606 145853 C15orf61 - - HGNC:34453|Ensembl:ENSG00000189227|Vega:OTTHUMG00000172248 15 15q23 chromosome 15 open reading frame 61 protein-coding C15orf61 chromosome 15 open reading frame 61 O uncharacterized protein C15orf61 20121230 -9606 145858 C15orf32 - - HGNC:26549|Ensembl:ENSG00000183643|HPRD:08143|Vega:OTTHUMG00000149844 15 15q26.1 chromosome 15 open reading frame 32 protein-coding C15orf32 chromosome 15 open reading frame 32 O uncharacterized protein C15orf32 20121230 -9606 145864 HAPLN3 UNQ238/PRO271 EXLD1|HsT19883 HGNC:21446|Ensembl:ENSG00000140511|HPRD:13629|Vega:OTTHUMG00000148680 15 15q26.1 hyaluronan and proteoglycan link protein 3 protein-coding HAPLN3 hyaluronan and proteoglycan link protein 3 O extracellular link domain containing, 1 20121230 -9606 145873 MESP2 - SCDO2|bHLHc6 HGNC:29659|MIM:605195|Ensembl:ENSG00000188095|Vega:OTTHUMG00000172016 15 15q26.1 mesoderm posterior 2 homolog (mouse) protein-coding MESP2 mesoderm posterior 2 homolog (mouse) O class C basic helix-loop-helix protein 6|mesoderm posterior protein 2 20121230 -9606 145942 TMCO5A - TMCO5 HGNC:28558|Ensembl:ENSG00000166069|HPRD:11341|Vega:OTTHUMG00000129787 15 15q14 transmembrane and coiled-coil domains 5A protein-coding TMCO5A transmembrane and coiled-coil domains 5A O transmembrane and coiled-coil domain-containing protein 5A|transmembrane and coiled-coil domains 5 20121230 -9606 145945 LOC145945 - - - 15 15q26.2 uncharacterized LOC145945 unknown - - - - 20120508 -9606 145946 SPATA8 - SRG8 HGNC:28676|MIM:613948|Ensembl:ENSG00000185594|HPRD:15432|Vega:OTTHUMG00000149847 15 15q26.2 spermatogenesis associated 8 protein-coding SPATA8 spermatogenesis associated 8 O spermatogenesis-associated protein 8|spermatogenesis-related protein 8 20121230 -9606 145957 NRG4 - HRG4 HGNC:29862|MIM:610894|Ensembl:ENSG00000169752|HPRD:14871|Vega:OTTHUMG00000142917 15 15q24.2 neuregulin 4 protein-coding NRG4 neuregulin 4 O heregulin 4|pro-NRG4|pro-neuregulin-4, membrane-bound isoform 20121230 -9606 145978 LINC00052 - NCRNA00052|TMEM83 HGNC:26455|HPRD:08101 15 15q25.3 long intergenic non-protein coding RNA 52 miscRNA LINC00052 long intergenic non-protein coding RNA 52 O - 20121230 -9606 145989 LOC145989 - - - 15 15q14 fascin homolog 1, actin-bundling protein (Strongylocentrotus purpuratus) pseudogene pseudo - - - - 20121230 -9606 146050 ZSCAN29 - ZNF690|Zfp690 HGNC:26673|Ensembl:ENSG00000140265|HPRD:08766|Vega:OTTHUMG00000130767 15 15q15.3 zinc finger and SCAN domain containing 29 protein-coding ZSCAN29 zinc finger and SCAN domain containing 29 O KOX31-like zinc finger protein|zinc finger and SCAN domain-containing protein 29|zinc finger protein 690 20121230 -9606 146053 RPS3AP47 - RPS3A_22_1428 HGNC:36744 15 15q15.2 ribosomal protein S3a pseudogene 47 pseudo RPS3AP47 ribosomal protein S3a pseudogene 47 O - 20121230 -9606 146057 TTBK2 - SCA11|TTBK HGNC:19141|MIM:611695|Ensembl:ENSG00000128881|HPRD:10288|Vega:OTTHUMG00000175802 15 15q15.2 tau tubulin kinase 2 protein-coding TTBK2 tau tubulin kinase 2 O tau-tubulin kinase 2 20121230 -9606 146059 CDAN1 UNQ664/PRO1295 CDA1|CDAI|DLT|PRO1295 HGNC:1713|MIM:607465|Ensembl:ENSG00000140326|HPRD:08470|Vega:OTTHUMG00000175801 15 15q15.2 codanin 1 protein-coding CDAN1 codanin 1 O codanin-1|congenital dyserythropoietic anemia, type I|discs lost homolog 20121230 -9606 146110 RPL7P47 - RPL7_27_1478 HGNC:35913 16 16p12.3 ribosomal protein L7 pseudogene 47 pseudo RPL7P47 ribosomal protein L7 pseudogene 47 O - 20121230 -9606 146167 SLC38A8 - - HGNC:32434|Ensembl:ENSG00000166558|Vega:OTTHUMG00000176588 16 16q23.3 solute carrier family 38, member 8 protein-coding SLC38A8 solute carrier family 38, member 8 O putative sodium-coupled neutral amino acid transporter 8 20121230 -9606 146177 VWA3A hCG_2039627 - HGNC:27088|Ensembl:ENSG00000175267|Vega:OTTHUMG00000175461 16 16p12.2 von Willebrand factor A domain containing 3A protein-coding VWA3A von Willebrand factor A domain containing 3A O von Willebrand factor A domain-containing protein 3A 20121230 -9606 146183 OTOA - CT108|DFNB22 HGNC:16378|MIM:607038|Ensembl:ENSG00000155719|HPRD:06126|Vega:OTTHUMG00000090721 16 16p12.2|16p12.2 otoancorin protein-coding OTOA otoancorin O cancer/testis antigen 108 20121230 -9606 146198 ZFP90 - NK10|ZNF756 HGNC:23329|MIM:609451|Ensembl:ENSG00000184939|HPRD:18729|Vega:OTTHUMG00000177312 16 16q22.1 ZFP90 zinc finger protein protein-coding ZFP90 ZFP90 zinc finger protein O zfp-90|zinc finger protein 476|zinc finger protein 756|zinc finger protein 90 homolog 20121230 -9606 146206 RLTPR - CARMIL2|CARMIL2b|LRRC16C HGNC:27089|MIM:610859|Ensembl:ENSG00000159753|HPRD:18556 16 16q22.1 RGD motif, leucine rich repeats, tropomodulin domain and proline-rich containing protein-coding RLTPR RGD motif, leucine rich repeats, tropomodulin domain and proline-rich containing O RGD, leucine-rich repeat, tropomodulin and proline-rich containing protein|RGD, leucine-rich repeat, tropomodulin and proline-rich-containing protein|leucine rich repeat containing 16C|leucine-rich repeat-containing protein 16C 20121230 -9606 146212 KCTD19 - - HGNC:24753|Ensembl:ENSG00000168676|Vega:OTTHUMG00000173075 16 16q22.1 potassium channel tetramerisation domain containing 19 protein-coding KCTD19 potassium channel tetramerisation domain containing 19 O BTB/POZ domain-containing protein KCTD19 20121230 -9606 146223 CMTM4 - CKLFSF4 HGNC:19175|MIM:607887|Ensembl:ENSG00000183723|HPRD:07435|Vega:OTTHUMG00000137500 16 16q21-q22.1 CKLF-like MARVEL transmembrane domain containing 4 protein-coding CMTM4 CKLF-like MARVEL transmembrane domain containing 4 O CKLF-like MARVEL transmembrane domain-containing protein 4|chemokine-like factor super family 4|chemokine-like factor superfamily member 4 20121230 -9606 146225 CMTM2 - CKLFSF2 HGNC:19173|MIM:607885|Ensembl:ENSG00000140932|HPRD:07434|Vega:OTTHUMG00000137501 16 16q21 CKLF-like MARVEL transmembrane domain containing 2 protein-coding CMTM2 CKLF-like MARVEL transmembrane domain containing 2 O CKLF-like MARVEL transmembrane domain-containing protein 2|chemokine-like factor superfamily 2|chemokine-like factor superfamily member 2 20121230 -9606 146227 BEAN1 - BEAN|SCA31 HGNC:24160|MIM:612051|Ensembl:ENSG00000166546|Vega:OTTHUMG00000173370 16 16q21 brain expressed, associated with NEDD4, 1 protein-coding BEAN1 brain expressed, associated with NEDD4, 1 O brain-expressed protein associating with Nedd4 homolog|protein BEAN1 20121230 -9606 146253 LOC146253 - - - 16 16q12.2 tropomyosin-like pseudo - - - - 20121230 -9606 146279 TEKT5 - - HGNC:26554|Ensembl:ENSG00000153060|HPRD:08736|Vega:OTTHUMG00000129750 16 16p13.13 tektin 5 protein-coding TEKT5 tektin 5 O tektin-5 20121230 -9606 146310 RNF151 - - HGNC:23235|Ensembl:ENSG00000179580|Vega:OTTHUMG00000176852 16 16p13.3 ring finger protein 151 protein-coding RNF151 ring finger protein 151 O RING finger protein 151 20121230 -9606 146325 C16orf11 LA16c-366D1.2 - HGNC:14139|Ensembl:ENSG00000161992|HPRD:10046|Vega:OTTHUMG00000154104 16 16p13.3 chromosome 16 open reading frame 11 protein-coding C16orf11 chromosome 16 open reading frame 11 O uncharacterized protein C16orf11|uncharacterized protein RJD1 20121230 -9606 146330 FBXL16 - C16orf22|Fbl16|c380A1.1 HGNC:14150|MIM:609082|Ensembl:ENSG00000127585|HPRD:12365|Vega:OTTHUMG00000090420 16 16p13.3 F-box and leucine-rich repeat protein 16 protein-coding FBXL16 F-box and leucine-rich repeat protein 16 O F-box/LRR-repeat protein 16|c380A1.1 (novel protein) 20121230 -9606 146336 SSTR5-AS1 - - HGNC:26502|HPRD:08125 16 16p13.3 SSTR5 antisense RNA 1 miscRNA SSTR5-AS1 SSTR5 antisense RNA 1 O - 20121230 -9606 146378 C16orf92 - - HGNC:26346|Ensembl:ENSG00000167194|Vega:OTTHUMG00000177107 16 16p11.2 chromosome 16 open reading frame 92 protein-coding C16orf92 chromosome 16 open reading frame 92 O uncharacterized protein C16orf92 20121230 -9606 146395 GSG1L UNQ5831 PRO19651 HGNC:28283|Ensembl:ENSG00000169181|HPRD:14464|Vega:OTTHUMG00000131676 16 16p12.1 GSG1-like protein-coding GSG1L GSG1-like O GSG1-like protein|KTSR5831|germ cell-specific gene 1-like protein 20121230 -9606 146429 SLC22A31 - - HGNC:27091 16 16q24.3 solute carrier family 22, member 31 protein-coding SLC22A31 solute carrier family 22, member 31 O putative solute carrier family 22 member 31|putative solute carrier family 22 member ENSG00000182157 20121230 -9606 146433 IL34 - C16orf77|IL-34 HGNC:28529|MIM:612081|Ensembl:ENSG00000157368|HPRD:14582|Vega:OTTHUMG00000137581 16 16q22.1 interleukin 34 protein-coding IL34 interleukin 34 O interleukin-34 20121230 -9606 146434 ZNF597 - - HGNC:26573|MIM:614685|Ensembl:ENSG00000167981|HPRD:15869|Vega:OTTHUMG00000129359 16 16p13.3 zinc finger protein 597 protein-coding ZNF597 zinc finger protein 597 O - 20121230 -9606 146439 CCDC64B - BICDR-2 HGNC:33584|Ensembl:ENSG00000162069|Vega:OTTHUMG00000177452 16 16p13.3 coiled-coil domain containing 64B protein-coding CCDC64B coiled-coil domain containing 64B O BICD-related protein 2|bicaudal D-related protein 2|coiled-coil domain-containing protein 64B 20121230 -9606 146456 TMED6 UNQ9146/PRO34237 PRO34237|SPLL9146 HGNC:28331|Ensembl:ENSG00000157315|HPRD:15520|Vega:OTTHUMG00000137571 16 16q22.1 transmembrane emp24 protein transport domain containing 6 protein-coding TMED6 transmembrane emp24 protein transport domain containing 6 O p24 family protein gamma-5|p24gamma5|transmembrane emp24 domain-containing protein 6 20121230 -9606 146481 LOC146481 - - - 16 16p11.1 FSHD region gene 2 family, member C pseudogene pseudo - - - - 20121230 -9606 146512 FLJ30679 - - - 16 16q24.1 uncharacterized protein FLJ30679 miscRNA - - - - 20121230 -9606 146513 LOC146513 - - - 16 16q24.1 uncharacterized LOC146513 miscRNA - - - - 20121230 -9606 146540 ZNF785 - - HGNC:26496|Ensembl:ENSG00000197162|HPRD:08120|Vega:OTTHUMG00000176950 16 16p11.2 zinc finger protein 785 protein-coding ZNF785 zinc finger protein 785 O - 20121230 -9606 146542 ZNF688 - - HGNC:30489|Ensembl:ENSG00000229809|HPRD:14070|Vega:OTTHUMG00000132408 16 16p11.2 zinc finger protein 688 protein-coding ZNF688 zinc finger protein 688 O - 20121230 -9606 146547 PRSS36 - - HGNC:26906|MIM:610560|Ensembl:ENSG00000178226|HPRD:07119|Vega:OTTHUMG00000176751 16 16p11.2 protease, serine, 36 protein-coding PRSS36 protease, serine, 36 O polyserase 2|polyserase-2|polyserine protease 2|polyserine protease-2|serine protease 36 20121230 -9606 146556 C16orf89 UNQ904/PRO1925 - HGNC:28687|Ensembl:ENSG00000153446|HPRD:11353|Vega:OTTHUMG00000159314 16 16p13.3 chromosome 16 open reading frame 89 protein-coding C16orf89 chromosome 16 open reading frame 89 O UPF0764 protein C16orf89 20121230 -9606 146562 C16orf71 - - HGNC:25081|Ensembl:ENSG00000166246|HPRD:11238|Vega:OTTHUMG00000129480 16 16p13.3 chromosome 16 open reading frame 71 protein-coding C16orf71 chromosome 16 open reading frame 71 O uncharacterized protein C16orf71 20121230 -9606 146664 MGAT5B - GnT-IX|GnT-VB HGNC:24140|MIM:612441|Ensembl:ENSG00000167889|HPRD:14392|Vega:OTTHUMG00000177278 17 17q25.2 mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isozyme B protein-coding MGAT5B mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isozyme B O N-acetylglucosaminyl-transferase Vb|N-acetylglucosaminyltransferase IX|alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase B|alpha-mannoside beta-1,6-N-acetylglucosaminyltransferase B|beta(1,6)-N-acetylglucosaminyltransferase V|glcNAc-T Vb|hGnTVb|mannoside acetylglucosaminyltransferase 5B|mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isoenzyme B 20121230 -9606 146691 TOM1L2 UNQ3124 - HGNC:11984|Ensembl:ENSG00000175662|HPRD:18213|Vega:OTTHUMG00000059353 17 17p11.2 target of myb1-like 2 (chicken) protein-coding TOM1L2 target of myb1-like 2 (chicken) O TOM1-like protein 2|target of Myb-like protein 2 20121230 -9606 146705 ENTHD2 - C17orf56 HGNC:26458|Ensembl:ENSG00000167302|HPRD:08103|Vega:OTTHUMG00000177866 17 17q25.3 ENTH domain containing 2 protein-coding ENTHD2 ENTH domain containing 2 O AP-4 complex accessory subunit tepsin|ENTH domain-containing protein 2|epsin for AP-4|tetra-epsin 20121230 -9606 146712 B3GNTL1 - B3GNT8 HGNC:21727|Ensembl:ENSG00000175711|HPRD:14071|HPRD:18527|Vega:OTTHUMG00000177788 17 17q25.3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like 1 protein-coding B3GNTL1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like 1 O BGnT-8|BGnT-like protein 1|UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8|UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like protein 1|beta-1,3-Gn-T8|beta-1,3-N-acetylglucosaminyltransferase 8|beta1,3-N-acetylglucosaminyltransferase-like protein 1|beta3Gn-T-like protein 1|beta3Gn-T8|beta3GnTL1 20121230 -9606 146713 RBFOX3 hCG_1776007 FOX-3|FOX3|HRNBP3|NEUN HGNC:27097|Ensembl:ENSG00000167281|HPRD:18730|Vega:OTTHUMG00000150183 17 17q25.3 RNA binding protein, fox-1 homolog (C. elegans) 3 protein-coding RBFOX3 RNA binding protein, fox-1 homolog (C. elegans) 3 O RNA binding protein fox-1 homolog 3|fox-1 homolog C|hexaribonucleotide binding protein 3|neuronal nuclei 20121230 -9606 146722 CD300LF UNQ3105/PRO10111 CD300f|CLM-1|CLM1|IREM-1|IREM1|IgSF13|NKIR HGNC:29883|MIM:609807|Ensembl:ENSG00000186074|HPRD:17635|Vega:OTTHUMG00000067609 17 17q25.1 CD300 molecule-like family member f protein-coding CD300LF CD300 molecule-like family member f O CD300 antigen like family member F|CD300 antigen-like family member F|CD300 molecule like family member f|CMRF35-like molecule 1|NK inhibitory receptor|immune receptor expressed on myeloid cells 1|immunoglobin superfamily member 13|immunoglobulin superfamily member 13|inhibitory receptor IREM1 20121230 -9606 146723 C17orf77 - - HGNC:26480|Ensembl:ENSG00000182352|HPRD:08112|Vega:OTTHUMG00000067611 17 17q25.1 chromosome 17 open reading frame 77 protein-coding C17orf77 chromosome 17 open reading frame 77 O uncharacterized protein C17orf77 20121230 -9606 146754 DNAH2 - DNAHC2|DNHD3 HGNC:2948|MIM:603333|Ensembl:ENSG00000183914|HPRD:17214|Vega:OTTHUMG00000178020 17 17p13.1 dynein, axonemal, heavy chain 2 protein-coding DNAH2 dynein, axonemal, heavy chain 2 O axonemal beta dynein heavy chain 2|ciliary dynein heavy chain 2|dynein heavy chain 2, axonemal|dynein heavy chain domain 3|dynein heavy chain domain-containing protein 3|dynein, axonemal, heavy chain-2|dynein, axonemal, heavy polypeptide 2 20121230 -9606 146760 RTN4RL1 - NGRH2|NgR3 HGNC:21329|MIM:610461|Ensembl:ENSG00000185924|HPRD:11523|Vega:OTTHUMG00000180184 17 17p13.3 reticulon 4 receptor-like 1 protein-coding RTN4RL1 reticulon 4 receptor-like 1 O Nogo-66 receptor homolog 2|Nogo-66 receptor-related protein 3|nogo receptor-like 2|reticulon-4 receptor-like 1 20121230 -9606 146771 TCAM1P - TCAM1 HGNC:30707|MIM:612756 17 17q23.3 testicular cell adhesion molecule 1, pseudogene pseudo TCAM1P testicular cell adhesion molecule 1, pseudogene O - 20121230 -9606 146779 EFCAB3 - - HGNC:26379|Ensembl:ENSG00000172421|HPRD:08077|Vega:OTTHUMG00000179175 17 17q23.2 EF-hand calcium binding domain 3 protein-coding EFCAB3 EF-hand calcium binding domain 3 O EF-hand calcium-binding domain-containing protein 3 20121230 -9606 146795 LOC146795 - - - 17 17q24.3 uncharacterized LOC146795 unknown - - - - 20120508 -9606 146802 SLC47A2 - MATE2|MATE2-B|MATE2-K|MATE2K HGNC:26439|MIM:609833|Ensembl:ENSG00000180638|HPRD:08710|Vega:OTTHUMG00000059464 17 17p11.2 solute carrier family 47, member 2 protein-coding SLC47A2 solute carrier family 47, member 2 O H+/organic cation antiporter|MATE-2|hMATE-2|kidney-specific H(+)/organic cation antiporter|multidrug and toxin extrusion 2|multidrug and toxin extrusion protein 2 20121230 -9606 146822 CDRT15 - - HGNC:14395|Ensembl:ENSG00000223510|HPRD:16700|Vega:OTTHUMG00000179686 17 17p12 CMT1A duplicated region transcript 15 protein-coding CDRT15 CMT1A duplicated region transcript 15 O CMT1A duplicated region transcript 15 protein 20121230 -9606 146845 WDR16 - WDRPUH HGNC:16053|MIM:609804|Ensembl:ENSG00000166596|HPRD:14072|Vega:OTTHUMG00000150149 17 17p13.1 WD repeat domain 16 protein-coding WDR16 WD repeat domain 16 O WD repeat-containing protein 16|WD40-repeat protein up-regulated in HCC|WD40-repeat protein upregulated in HCC 20121230 -9606 146849 CCDC42 - CCDC42A HGNC:26528|Ensembl:ENSG00000161973|HPRD:08731|Vega:OTTHUMG00000178565 17 17p13.1 coiled-coil domain containing 42 protein-coding CCDC42 coiled-coil domain containing 42 O coiled-coil domain-containing protein 42A 20121230 -9606 146850 PIK3R6 - C17orf38|HsT41028|p84|p84 PIKAP|p87(PIKAP)|p87PIKAP HGNC:27101|MIM:611462|HPRD:12682 17 17p13.1 phosphoinositide-3-kinase, regulatory subunit 6 protein-coding PIK3R6 phosphoinositide-3-kinase, regulatory subunit 6 O PI3Kgamma adapter protein of 87 kDa|p84 PI3K adapter protein|p87 PI3K adapter protein|p87 phosphoinositide 3-kinase gamma (PI3Kg) adapter protein|phosphoinositide 3-kinase gamma adapter protein of 87 kDa|phosphoinositide 3-kinase regulatory subunit 6 20121230 -9606 146852 ODF4 - CT134|CT136|OPPO1 HGNC:19056|MIM:610097|Ensembl:ENSG00000184650|HPRD:17658|Vega:OTTHUMG00000108190 17 17p13.1 outer dense fiber of sperm tails 4 protein-coding ODF4 outer dense fiber of sperm tails 4 O cancer/testis antigen 134|cancer/testis antigen 136|hOPPO1|outer dense fiber 4|outer dense fiber of sperm tails protein 4|outer dense fiber protein 4|testis-specific protein oppo 1 20121230 -9606 146853 C17orf50 - - HGNC:29581|Ensembl:ENSG00000154768|HPRD:11239|Vega:OTTHUMG00000179971 17 17q12 chromosome 17 open reading frame 50 protein-coding C17orf50 chromosome 17 open reading frame 50 O uncharacterized protein C17orf50 20121230 -9606 146857 SLFN13 - SLFN10 HGNC:26481|MIM:614957|Ensembl:ENSG00000154760|HPRD:08716|Vega:OTTHUMG00000165108 17 17q12 schlafen family member 13 protein-coding SLFN13 schlafen family member 13 O - 20121230 -9606 146861 SLC35G3 - AMAC1|TMEM21A HGNC:26848|Ensembl:ENSG00000164729|HPRD:12450|Vega:OTTHUMG00000132929 17 17q12 solute carrier family 35, member G3 protein-coding SLC35G3 solute carrier family 35, member G3 O acyl-malonyl condensing enzyme 1|acyl-malonyl-condensing enzyme 1|protein AMAC1|solute carrier family 35 member G3|transmembrane protein 21A 20121230 -9606 146862 UNC45B - CMYA4|SMUNC45|UNC45 HGNC:14304|MIM:611220|Ensembl:ENSG00000141161|HPRD:10840|Vega:OTTHUMG00000132931 17 17q12 unc-45 homolog B (C. elegans) protein-coding UNC45B unc-45 homolog B (C. elegans) O UNC-45B|cardiomyopathy associated 4|protein unc-45 homolog B|striated muscle UNC45 20121230 -9606 146880 LOC146880 - - - 17 17q24 Rho GTPase activating protein 27 pseudogene pseudo - - - - 20121230 -9606 146894 CD300LG UNQ422/PRO846 CLM-9|CLM9|NEPMUCIN|TREM-4|TREM4 HGNC:30455|MIM:610520|Ensembl:ENSG00000161649|HPRD:18222|Vega:OTTHUMG00000181796 17 17q21.31 CD300 molecule-like family member g protein-coding CD300LG CD300 molecule-like family member g O CD300 antigen like family member G|CD300 antigen-like family member G|CD300 molecule like family member g|CMRF35-like molecule 9|triggering receptor expressed on myeloid cells 4 20121230 -9606 146909 KIF18B - - HGNC:27102|MIM:614570|Ensembl:ENSG00000186185|Vega:OTTHUMG00000179867 17 17q21.31 kinesin family member 18B protein-coding KIF18B kinesin family member 18B O kinesin-like protein KIF18B 20121230 -9606 146923 RUNDC1 LP5161 - HGNC:25418|Ensembl:ENSG00000198863|HPRD:15283|Vega:OTTHUMG00000180659 17 17q21.31 RUN domain containing 1 protein-coding RUNDC1 RUN domain containing 1 O RUN domain-containing protein 1 20121230 -9606 146956 EME1 - MMS4L|SLX2A HGNC:24965|MIM:610885|Ensembl:ENSG00000154920|Vega:OTTHUMG00000164974 17 17q21.33 essential meiotic endonuclease 1 homolog 1 (S. pombe) protein-coding EME1 essential meiotic endonuclease 1 homolog 1 (S. pombe) O MMS4 homolog|SLX2 structure-specific endonuclease subunit homolog A|crossover junction endonuclease EME1|essential meiotic endonuclease 1 homolog 2|hMMS4|homolog of yeast EME1 endonuclease 20121230 -9606 147004 LOC147004 - - - 17 17q12 uncharacterized LOC147004 unknown - - - - 20120508 -9606 147007 TMEM199 - C17orf32 HGNC:18085|Ensembl:ENSG00000244045|HPRD:12679|Vega:OTTHUMG00000132498 17 17q11.2 transmembrane protein 199 protein-coding TMEM199 transmembrane protein 199 O - 20121230 -9606 147011 PROCA1 - - HGNC:28600|Ensembl:ENSG00000167525|HPRD:07131|Vega:OTTHUMG00000132682 17 17q11.2 protein interacting with cyclin A1 protein-coding PROCA1 protein interacting with cyclin A1 O proline-rich cyclin A1-interacting protein|protein PROCA1 20121230 -9606 147015 DHRS13 UNQ419/PRO853 SDR7C5 HGNC:28326|Ensembl:ENSG00000167536|HPRD:14488|Vega:OTTHUMG00000132678 17 17q11.2 dehydrogenase/reductase (SDR family) member 13 protein-coding DHRS13 dehydrogenase/reductase (SDR family) member 13 O dehydrogenase/reductase SDR family member 13|short chain dehydrogenase/reductase family 7C, member 5 20121230 -9606 147040 KCTD11 - C17orf36|KCASH1|REN|REN/KCTD11 HGNC:21302|MIM:609848|Ensembl:ENSG00000213859|HPRD:13763|Vega:OTTHUMG00000132061 17 17p13.1 potassium channel tetramerisation domain containing 11 protein-coding KCTD11 potassium channel tetramerisation domain containing 11 O BTB/POZ domain-containing protein KCTD11|potassium channel tetramerization domain containing 11|retinoic acid, EGF, NGF induced gene protein|retinoic acid, EGF, NGF induced gene/potassium channel tetramerization domain containing 11 20121230 -9606 147081 CRHR1-IT1 - C17orf69 HGNC:26327|HPRD:08052 17 17q21.31 CRHR1 intronic transcript 1 (non-protein coding) miscRNA CRHR1-IT1 CRHR1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 147093 LOC147093 - - - 17 17q21.31 uncharacterized LOC147093 miscRNA - - - - 20121230 -9606 147111 NOTUM OK/SW-CL.30 - HGNC:27106|MIM:609847|Ensembl:ENSG00000185269|HPRD:14073|Vega:OTTHUMG00000154416 17 17q25.3 notum pectinacetylesterase homolog (Drosophila) protein-coding NOTUM notum pectinacetylesterase homolog (Drosophila) O protein notum homolog 20121230 -9606 147138 TMC8 - EV2|EVER2|EVIN2 HGNC:20474|MIM:605829|Ensembl:ENSG00000167895|HPRD:08387|Vega:OTTHUMG00000177436 17 17q25.3 transmembrane channel-like 8 protein-coding TMC8 transmembrane channel-like 8 O epidermodysplasia verruciformis 2|epidermodysplasia verruciformis protein 2|transmembrane channel-like protein 8 20121230 -9606 147150 UPF3AP2 - - HGNC:30567 17 17p11.2 UPF3 regulator of nonsense transcripts homolog A (yeast) pseudogene 2 pseudo UPF3AP2 UPF3 regulator of nonsense transcripts homolog A (yeast) pseudogene 2 O - 20121230 -9606 147166 TRIM16L - TRIM70 HGNC:32670|Ensembl:ENSG00000108448|HPRD:18731|Vega:OTTHUMG00000059050 17 17p11.2 tripartite motif containing 16-like protein-coding TRIM16L tripartite motif containing 16-like O tripartite motif protein 70|tripartite motif-containing 16-like|tripartite motif-containing protein 16-like protein|tripartite motif-containing protein 70 20121230 -9606 147172 LRRC37BP1 hCG_1774989 LRRC37B2 HGNC:25390|HPRD:13217 17 17q11.2 leucine rich repeat containing 37B pseudogene 1 pseudo LRRC37BP1 leucine rich repeat containing 37B pseudogene 1 O - 20121230 -9606 147179 WIPF2 PP10631 WICH|WIRE HGNC:30923|MIM:609692|Ensembl:ENSG00000171475|HPRD:18304|Vega:OTTHUMG00000133331 17 17q21.2 WAS/WASL interacting protein family, member 2 protein-coding WIPF2 WAS/WASL interacting protein family, member 2 O WAS/WASL-interacting protein family member 2|WASP-binding protein|WASP-interacting protein-related protein|WIP- and CR16-homologous protein|WIP-related protein 20121230 -9606 147183 KRT25 - KRT25A HGNC:30839|Ensembl:ENSG00000204897|HPRD:17242|Vega:OTTHUMG00000133373 17 17q21.2 keratin 25 protein-coding KRT25 keratin 25 O CK-25|K25|K25A|cytokeratin-25|keratin 25A|keratin, type I cytoskeletal 25|keratin-25|keratin-25A|type I inner root sheath specific keratin 25 irs1|type I inner root sheath-specific keratin-K25irs1 20121230 -9606 147184 TMEM99 - - HGNC:28305|Ensembl:ENSG00000167920|HPRD:14478|Vega:OTTHUMG00000133579 17 17q21.2 transmembrane protein 99 protein-coding TMEM99 transmembrane protein 99 O - 20121230 -9606 147199 SCGB1C1 - RYD5 HGNC:18394|MIM:610176|HPRD:18024 11 11p15.5 secretoglobin, family 1C, member 1 protein-coding SCGB1C1 secretoglobin, family 1C, member 1 O ligand binding protein RYD5|secretoglobin RYD5|secretoglobin family 1C member 1 20121230 -9606 147226 UPF3AP1 - - HGNC:30568 17 17p11.2 UPF3 regulator of nonsense transcripts homolog A (yeast) pseudogene 1 pseudo UPF3AP1 UPF3 regulator of nonsense transcripts homolog A (yeast) pseudogene 1 O - 20121230 -9606 147228 KRT17P1 - - HGNC:6428 17 17p11.2 keratin 17 pseudogene 1 pseudo KRT17P1 keratin 17 pseudogene 1 O - 20121230 -9606 147276 C18orf15 - HsT3231 HGNC:26447 18 18p11.21 chromosome 18 open reading frame 15 unknown C18orf15 chromosome 18 open reading frame 15 O - 20120622 -9606 147323 STARD6 - - HGNC:18066|MIM:607051|Ensembl:ENSG00000174448|HPRD:09518|Vega:OTTHUMG00000132702 18 18q21.2 StAR-related lipid transfer (START) domain containing 6 protein-coding STARD6 StAR-related lipid transfer (START) domain containing 6 O START domain containing 6|START domain-containing protein 6|stAR-related lipid transfer protein 6 20121230 -9606 147339 C18orf25 - ARKL1 HGNC:28172|Ensembl:ENSG00000152242|HPRD:12690|Vega:OTTHUMG00000179190 18 18q21.1 chromosome 18 open reading frame 25 protein-coding C18orf25 chromosome 18 open reading frame 25 O ARKadia-like 1|uncharacterized protein C18orf25 20121230 -9606 147372 CCBE1 UNQ1921/PRO4395 - HGNC:29426|MIM:612753|Ensembl:ENSG00000183287|HPRD:08703|Vega:OTTHUMG00000180087 18 18q21.32 collagen and calcium binding EGF domains 1 protein-coding CCBE1 collagen and calcium binding EGF domains 1 O collagen and calcium-binding EGF domain-containing protein 1|full of fluid protein homolog 20121230 -9606 147381 CBLN2 UNQ1892/PRO4338 - HGNC:1544|MIM:600433|Ensembl:ENSG00000141668|HPRD:15970|Vega:OTTHUMG00000132825 18 18q22.3 cerebellin 2 precursor protein-coding CBLN2 cerebellin 2 precursor O cerebellin-2 20121230 -9606 147407 SLC25A52 - MCART2 HGNC:23324|Ensembl:ENSG00000141437|HPRD:18732|Vega:OTTHUMG00000179617 18 18q12.1 solute carrier family 25, member 52 protein-coding SLC25A52 solute carrier family 25, member 52 O mitochondrial carrier triple repeat 2|mitochondrial carrier triple repeat protein 2|solute carrier family 25 member 52 20121230 -9606 147409 DSG4 - CDGF13|CDHF13|LAH HGNC:21307|MIM:607892|Ensembl:ENSG00000175065|HPRD:06387|Vega:OTTHUMG00000131979 18 18q12.1 desmoglein 4 protein-coding DSG4 desmoglein 4 O CDH family member 13|cadherin family member 13|desmoglein-4 20121230 -9606 147429 AQP4-AS1 - C18orf16|CHST9-AS1 HGNC:26399|HPRD:08510 18 18q11.2 AQP4 antisense RNA 1 miscRNA AQP4-AS1 AQP4 antisense RNA 1 O - 20121230 -9606 147463 ANKRD29 - - HGNC:27110|Ensembl:ENSG00000154065|HPRD:12464|Vega:OTTHUMG00000131875 18 18q11.2 ankyrin repeat domain 29 protein-coding ANKRD29 ankyrin repeat domain 29 O ankyrin repeat domain-containing protein 29 20121230 -9606 147468 WBP2P1 hCG_1643692 - HGNC:31695 18 18q11.2 WW domain binding protein 2 pseudogene 1 pseudo WBP2P1 WW domain binding protein 2 pseudogene 1 O - 20121230 -9606 147495 APCDD1 FP7019 B7323|DRAPC1|HHS|HTS HGNC:15718|MIM:607479|Ensembl:ENSG00000154856|HPRD:09595|Vega:OTTHUMG00000131635 18 18p11.22 adenomatosis polyposis coli down-regulated 1 protein-coding APCDD1 adenomatosis polyposis coli down-regulated 1 O adenomatosis polyposis coli down-regulated 1 protein|hypoptrichosis simplex|protein APCDD1 20121230 -9606 147525 LINC00526 - C18orf18|HsT959 HGNC:28278 18 18p11.31 long intergenic non-protein coding RNA 526 miscRNA LINC00526 long intergenic non-protein coding RNA 526 O - 20121230 -9606 147645 VSIG10L - - HGNC:27111|Ensembl:ENSG00000186806 19 19q13.41 V-set and immunoglobulin domain containing 10 like protein-coding VSIG10L V-set and immunoglobulin domain containing 10 like O V-set and immunoglobulin domain-containing protein 10-like 20121230 -9606 147646 LOC147646 - - Ensembl:ENSG00000262874|Vega:OTTHUMG00000177322 19 19q13.41 uncharacterized LOC147646 protein-coding - - - uncharacterized protein LOC147646 20121230 -9606 147650 LINC00085 - NCRNA00085|SPACA6 HGNC:27113|HPRD:17301 19 19q13.41 long intergenic non-protein coding RNA 85 miscRNA LINC00085 long intergenic non-protein coding RNA 85 O - 20121230 -9606 147657 ZNF480 - - HGNC:23305|MIM:613910|Ensembl:ENSG00000198464|HPRD:15799|Vega:OTTHUMG00000157507 19 19q13.41 zinc finger protein 480 protein-coding ZNF480 zinc finger protein 480 O - 20121230 -9606 147658 ZNF534 - KRBO3 HGNC:26337|Ensembl:ENSG00000198633|Vega:OTTHUMG00000156493 19 19q13.41 zinc finger protein 534 protein-coding ZNF534 zinc finger protein 534 O KRAB domain only 3|KRAB domain only protein 3 20121230 -9606 147660 ZNF578 - - HGNC:26449|Ensembl:ENSG00000258405|HPRD:15857|Vega:OTTHUMG00000156468 19 19q13.41 zinc finger protein 578 protein-coding ZNF578 zinc finger protein 578 O - 20121230 -9606 147664 ERVV-1 - ENVV1|ERVV-2|HERV-V1 HGNC:26501|HPRD:08124 19 19q13.41 endogenous retrovirus group V, member 1 protein-coding ERVV-1 endogenous retrovirus group V, member 1 O HERV-V_19q13.41 provirus ancestral Env polyprotein 1|endogenous retrovirus group V, member 2|envelope glycoprotein ENVV1 20121230 -9606 147670 SMIM17 - - HGNC:27114 19 19q13.43 small integral membrane protein 17 protein-coding SMIM17 small integral membrane protein 17 O uncharacterized protein LOC147670 20121230 -9606 147685 C19orf18 - - HGNC:28642|Ensembl:ENSG00000177025|HPRD:12699 19 19q13.43 chromosome 19 open reading frame 18 protein-coding C19orf18 chromosome 19 open reading frame 18 O uncharacterized protein C19orf18 20121230 -9606 147686 ZNF418 - - HGNC:20647|Ensembl:ENSG00000196724|HPRD:11714 19 19q13.43 zinc finger protein 418 protein-coding ZNF418 zinc finger protein 418 O - 20121230 -9606 147687 ZNF417 - - HGNC:20646|Ensembl:ENSG00000173480|HPRD:18341 19 19q13.43 zinc finger protein 417 protein-coding ZNF417 zinc finger protein 417 O - 20121230 -9606 147694 ZNF548 - - HGNC:26561|Ensembl:ENSG00000188785|HPRD:15832 19 19q13.43 zinc finger protein 548 protein-coding ZNF548 zinc finger protein 548 O - 20121230 -9606 147699 PPM1N - - HGNC:26845|Ensembl:ENSG00000213889|HPRD:08270|Vega:OTTHUMG00000140397 19 19q13.32 protein phosphatase, Mg2+/Mn2+ dependent, 1N (putative) protein-coding PPM1N protein phosphatase, Mg2+/Mn2+ dependent, 1N (putative) O probable protein phosphatase 1N 20121230 -9606 147700 KLC3 - KLC2|KLC2L|KLCt|KNS2B HGNC:20717|MIM:601334|Ensembl:ENSG00000104892|HPRD:03212|Vega:OTTHUMG00000143722 19 19q13 kinesin light chain 3 protein-coding KLC3 kinesin light chain 3 O kinesin light chain 2 20121230 -9606 147710 IGSF23 - - HGNC:40040|Ensembl:ENSG00000216588|Vega:OTTHUMG00000151531 19 19q13.31 immunoglobulin superfamily, member 23 protein-coding IGSF23 immunoglobulin superfamily, member 23 O immunoglobulin superfamily member 23 20121230 -9606 147711 ZNF285B - - HGNC:33262 19 19q13.31 zinc finger protein 285B, pseudogene pseudo ZNF285B zinc finger protein 285B, pseudogene O - 20121230 -9606 147719 LYPD4 UNQ2552/PRO6181 SMR HGNC:28659|Ensembl:ENSG00000183103|HPRD:14626 19 19q13.2 LY6/PLAUR domain containing 4 protein-coding LYPD4 LY6/PLAUR domain containing 4 O ly6/PLAUR domain-containing protein 4|sperm membrane receptor 20121230 -9606 147727 ILF3-AS1 - - HGNC:27115 19 19p13.2 ILF3 antisense RNA 1 (head to head) miscRNA ILF3-AS1 ILF3 antisense RNA 1 (head to head) O - 20121230 -9606 147741 ZNF560 - - HGNC:26484|Ensembl:ENSG00000198028|HPRD:15842|Vega:OTTHUMG00000180130 19 19p13.2 zinc finger protein 560 protein-coding ZNF560 zinc finger protein 560 O - 20121230 -9606 147744 TMEM190 - MDAC1 HGNC:29632|Ensembl:ENSG00000160472|HPRD:14373|Vega:OTTHUMG00000180794 19 19q13.42 transmembrane protein 190 protein-coding TMEM190 transmembrane protein 190 O - 20121230 -9606 147746 HIPK4 - - HGNC:19007|MIM:611712|Ensembl:ENSG00000160396|HPRD:13652 19 19q13.2 homeodomain interacting protein kinase 4 protein-coding HIPK4 homeodomain interacting protein kinase 4 O homeodomain-interacting protein kinase 4 20121230 -9606 147791 LOC147791 - - - 19 19p13.3 uncharacterized LOC147791 unknown - - - - 20121209 -9606 147798 TMC4 XXbac-BCX105G6.3 - HGNC:22998|Ensembl:ENSG00000167608|HPRD:15515|Vega:OTTHUMG00000066485 19 19q13.42 transmembrane channel-like 4 protein-coding TMC4 transmembrane channel-like 4 O transmembrane channel-like protein 4 20121230 -9606 147804 TPM3P9 - - HGNC:44142|HPRD:14075 19 19q13.42 tropomyosin 3 pseudogene 9 pseudo TPM3P9 tropomyosin 3 pseudogene 9 O - 20121230 -9606 147807 ZNF524 - - HGNC:28322|Ensembl:ENSG00000171443|HPRD:15817|Vega:OTTHUMG00000180859 19 19q13.42 zinc finger protein 524 protein-coding ZNF524 zinc finger protein 524 O - 20121230 -9606 147808 ZNF784 - - HGNC:33111|Ensembl:ENSG00000179922|HPRD:14076|Vega:OTTHUMG00000180860 19 19q13.42 zinc finger protein 784 protein-coding ZNF784 zinc finger protein 784 O - 20121230 -9606 147837 ZNF563 - - HGNC:30498|Ensembl:ENSG00000188868|HPRD:15845|Vega:OTTHUMG00000156413 19 19p13.2 zinc finger protein 563 protein-coding ZNF563 zinc finger protein 563 O - 20121230 -9606 147841 SPC24 - SPBC24 HGNC:26913|MIM:609394|Ensembl:ENSG00000161888|HPRD:15464|Vega:OTTHUMG00000180798 19 19p13.2 SPC24, NDC80 kinetochore complex component, homolog (S. cerevisiae) protein-coding SPC24 SPC24, NDC80 kinetochore complex component, homolog (S. cerevisiae) O hSpc24|kinetochore protein Spc24|spindle pole body component 24 homolog 20121230 -9606 147872 CCDC155 - KASH5 HGNC:26520|Ensembl:ENSG00000161609|HPRD:08134 19 19q13.33 coiled-coil domain containing 155 protein-coding CCDC155 coiled-coil domain containing 155 O coiled-coil domain-containing protein 155 20121230 -9606 147906 DACT3 - RRR1 HGNC:30745|MIM:611112|Ensembl:ENSG00000197380|HPRD:17505|Vega:OTTHUMG00000153070 19 19q13.32 dapper, antagonist of beta-catenin, homolog 3 (Xenopus laevis) protein-coding DACT3 dapper, antagonist of beta-catenin, homolog 3 (Xenopus laevis) O antagonist of beta-catenin Dapper homolog 3|arginine rich region 1|arginine-rich region 1 protein|dapper antagonist of catenin 3|dapper homolog 3 20121230 -9606 147912 SIX5 - BOR2|DMAHP HGNC:10891|MIM:600963|Ensembl:ENSG00000177045|HPRD:09024|Vega:OTTHUMG00000172208 19 19q13.32 SIX homeobox 5 protein-coding SIX5 SIX homeobox 5 O DM locus-associated homeodomain protein|dystrophia myotonica-associated homeodomain protein|homeobox protein SIX5|sine oculis homeobox homolog 5 20121230 -9606 147920 IGFL2 UNQ645/PRO1275 UNQ645|VPRI645 HGNC:32929|MIM:610545|Ensembl:ENSG00000204866|HPRD:13729 19 19q13.32 IGF-like family member 2 protein-coding IGFL2 IGF-like family member 2 O insulin growth factor-like family member 2 20121230 -9606 147923 ZNF420 - APAK HGNC:20649|Ensembl:ENSG00000197050|HPRD:08122|Vega:OTTHUMG00000048168 19 19q13.12 zinc finger protein 420 protein-coding ZNF420 zinc finger protein 420 O ATM and p53-associated KZNF protein 20121230 -9606 147929 ZNF565 - - HGNC:26726|MIM:614275|Ensembl:ENSG00000196357|HPRD:15846|Vega:OTTHUMG00000180508 19 19q13.12 zinc finger protein 565 protein-coding ZNF565 zinc finger protein 565 O - 20121230 -9606 147945 NLRP4 - CLR19.5|CT58|NALP4|PAN2|PYPAF4|RNH2 HGNC:22943|MIM:609645|Ensembl:ENSG00000160505|HPRD:09619|Vega:OTTHUMG00000181734 19 19q13.43 NLR family, pyrin domain containing 4 protein-coding NLRP4 NLR family, pyrin domain containing 4 O NACHT, LRR and PYD containing protein 4|NACHT, LRR and PYD domains-containing protein 4|NACHT, leucine rich repeat and PYD containing 4|PAAD and NACHT-containing protein 2|PYRIN and NACHT-containing protein 2|PYRIN-containing APAF1-like protein 4|cancer/testis antigen 58|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 4|ribonuclease inhibitor 2 20121230 -9606 147947 ZNF542 - - HGNC:25393|HPRD:15828 19 19q13.43 zinc finger protein 542 pseudo ZNF542 zinc finger protein 542 O - 20121230 -9606 147948 ZNF582 - - HGNC:26421|Ensembl:ENSG00000018869|HPRD:15859|Vega:OTTHUMG00000181939 19 19q13.43 zinc finger protein 582 protein-coding ZNF582 zinc finger protein 582 O - 20121230 -9606 147949 ZNF583 - - HGNC:26427|Ensembl:ENSG00000198440|HPRD:15860|Vega:OTTHUMG00000168874 19 19q13.43 zinc finger protein 583 protein-coding ZNF583 zinc finger protein 583 O zinc finger protein L3-5 20121230 -9606 147965 FAM98C - - HGNC:27119|Ensembl:ENSG00000130244|HPRD:14077|Vega:OTTHUMG00000182084 19 19q13.2 family with sequence similarity 98, member C protein-coding FAM98C family with sequence similarity 98, member C O protein FAM98C 20121230 -9606 147968 CAPN12 - - HGNC:13249|MIM:608839|Ensembl:ENSG00000182472|HPRD:07007 19 19q13.2 calpain 12 protein-coding CAPN12 calpain 12 O CANP 12|calcium-activated neutral proteinase 12|calpain-12 20121230 -9606 147991 DPY19L3 - - HGNC:27120|MIM:613894|Ensembl:ENSG00000178904|HPRD:14078|Vega:OTTHUMG00000180222 19 19q13.11 dpy-19-like 3 (C. elegans) protein-coding DPY19L3 dpy-19-like 3 (C. elegans) O dpy-19-like protein 3|protein dpy-19 homolog 3 20121230 -9606 148003 LGALS16 - - HGNC:40039|Ensembl:ENSG00000249861 19 19q13.2 lectin, galactoside-binding, soluble, 16 protein-coding LGALS16 lectin, galactoside-binding, soluble, 16 O beta-galactoside-binding lectin|galectin-16 20121230 -9606 148014 TTC9B - - HGNC:26395|Ensembl:ENSG00000174521|HPRD:08329 19 19q13.2 tetratricopeptide repeat domain 9B protein-coding TTC9B tetratricopeptide repeat domain 9B O TPR repeat protein 9B|tetratricopeptide repeat protein 9B 20121230 -9606 148022 TICAM1 - IIAE6|PRVTIRB|TICAM-1|TRIF HGNC:18348|MIM:607601|Ensembl:ENSG00000127666|HPRD:06350|Vega:OTTHUMG00000180248 19 19p13.3 toll-like receptor adaptor molecule 1 protein-coding TICAM1 toll-like receptor adaptor molecule 1 O TIR domain containing adaptor inducing interferon-beta|TIR domain-containing adapter molecule 1|TIR domain-containing adapter protein inducing IFN-beta|proline-rich, vinculin and TIR domain-containing protein B|putative NF-kappa-B-activating protein 502H|toll-interleukin-1 receptor domain-containing adapter protein inducing interferon beta 20121230 -9606 148046 CIRBP-AS1 - C19orf23 HGNC:28588|HPRD:16626 19 19p13.3 CIRBP antisense RNA 1 miscRNA CIRBP-AS1 CIRBP antisense RNA 1 O - 20121230 -9606 148066 ZNRF4 - RNF204|SPERIZIN|Ssrzf1|spzn HGNC:17726|MIM:612063|Ensembl:ENSG00000105428|HPRD:15895|Vega:OTTHUMG00000180356 19 19p13.3 zinc and ring finger 4 protein-coding ZNRF4 zinc and ring finger 4 O RING finger protein 204|zinc/RING finger protein 4 20121230 -9606 148103 ZNF599 - - HGNC:26408|Ensembl:ENSG00000153896|HPRD:18355|Vega:OTTHUMG00000182346 19 19q13.11 zinc finger protein 599 protein-coding ZNF599 zinc finger protein 599 O - 20121230 -9606 148109 FAM187B - TMEM162 HGNC:26366|Ensembl:ENSG00000177558|HPRD:08071|Vega:OTTHUMG00000164450 19 19q13.12 family with sequence similarity 187, member B protein-coding FAM187B family with sequence similarity 187, member B O protein FAM187B|transmembrane protein 162 20121230 -9606 148113 CILP2 - CLIP-2 HGNC:24213|MIM:612419|Ensembl:ENSG00000160161|HPRD:16714|Vega:OTTHUMG00000182148 19 19p13.11 cartilage intermediate layer protein 2 protein-coding CILP2 cartilage intermediate layer protein 2 O CILP-2|cartilage intermediate layer protein-like protein 2 20121230 -9606 148137 C19orf55 - - HGNC:25204|Ensembl:ENSG00000167595|HPRD:14079|Vega:OTTHUMG00000168103 19 19q13.12 chromosome 19 open reading frame 55 protein-coding C19orf55 chromosome 19 open reading frame 55 O uncharacterized protein C19orf55 20121230 -9606 148145 LOC148145 - - - 19 19q12 uncharacterized LOC148145 miscRNA - - - - 20121230 -9606 148156 ZNF558 - - HGNC:26422|Ensembl:ENSG00000167785|HPRD:15841 19 19p13.2 zinc finger protein 558 protein-coding ZNF558 zinc finger protein 558 O - 20121230 -9606 148170 CDC42EP5 XXbac-BCX535A19.5 Borg3|CEP5 HGNC:17408|MIM:609171|Ensembl:ENSG00000167617|HPRD:13023|Vega:OTTHUMG00000065699 19 19q13.42 CDC42 effector protein (Rho GTPase binding) 5 protein-coding CDC42EP5 CDC42 effector protein (Rho GTPase binding) 5 O 1700027J19Rik|2010007O02Rik|binder of Rho GTPases 3|cdc42 effector protein 5 20121230 -9606 148189 LINC00662 - - HGNC:27122 19 19q11 long intergenic non-protein coding RNA 662 miscRNA LINC00662 long intergenic non-protein coding RNA 662 O - 20121230 -9606 148198 ZNF98 hCG_1780278 F7175|ZNF739 HGNC:13174|MIM:603980|Ensembl:ENSG00000197360 19 19p12 zinc finger protein 98 protein-coding ZNF98 zinc finger protein 98 O zinc finger protein 739|zinc finger protein F7175 20121230 -9606 148203 ZNF738 - - HGNC:32469 19 19p12 zinc finger protein 738 pseudo ZNF738 zinc finger protein 738 O - 20121230 -9606 148206 ZNF714 - - HGNC:27124|Ensembl:ENSG00000160352|HPRD:18733 19 19p12 zinc finger protein 714 protein-coding ZNF714 zinc finger protein 714 O - 20121230 -9606 148213 ZNF681 - - HGNC:26457|Ensembl:ENSG00000196172|HPRD:08102|Vega:OTTHUMG00000150831 19 19p12 zinc finger protein 681 protein-coding ZNF681 zinc finger protein 681 O - 20121230 -9606 148223 C19orf25 - - HGNC:26711|Ensembl:ENSG00000119559|HPRD:12703|Vega:OTTHUMG00000180092 19 19p13.3 chromosome 19 open reading frame 25 protein-coding C19orf25 chromosome 19 open reading frame 25 O UPF0449 protein C19orf25 20121230 -9606 148229 ATP8B3 - ATPIK HGNC:13535|MIM:605866|Ensembl:ENSG00000130270|HPRD:05793|Vega:OTTHUMG00000166189 19 19p13.3 ATPase, aminophospholipid transporter, class I, type 8B, member 3 protein-coding ATP8B3 ATPase, aminophospholipid transporter, class I, type 8B, member 3 O ATPase, class I, type 8B, member 3|aminophospholipid translocase ATP8B3|potential phospholipid-transporting ATPase IK|probable phospholipid-transporting ATPase IK 20121230 -9606 148231 FLJ25328 - - HPRD:08056 19 19p13.12 uncharacterized LOC148231 miscRNA - - - - 20121230 -9606 148252 DIRAS1 - Di-Ras1|GBTS1|RIG HGNC:19127|MIM:607862|Ensembl:ENSG00000176490|HPRD:09710|Vega:OTTHUMG00000180439 19 19p13.3 DIRAS family, GTP-binding RAS-like 1 protein-coding DIRAS1 DIRAS family, GTP-binding RAS-like 1 O GTP-binding protein Di-Ras1|distinct subgroup of the Ras family member 1|ras-related inhibitor of cell growth|small GTP-binding tumor suppressor 1 20121230 -9606 148254 ZNF555 - - HGNC:28382|Ensembl:ENSG00000186300|HPRD:15838|Vega:OTTHUMG00000180500 19 19p13.3 zinc finger protein 555 protein-coding ZNF555 zinc finger protein 555 O - 20121230 -9606 148266 ZNF569 - ZAP1|ZNF HGNC:24737|MIM:613904|Ensembl:ENSG00000196437|HPRD:15849|Vega:OTTHUMG00000048172 19 19q13.12 zinc finger protein 569 protein-coding ZNF569 zinc finger protein 569 O DNA-binding protein 20121230 -9606 148268 ZNF570 - - HGNC:26416|Ensembl:ENSG00000171827|HPRD:11729|Vega:OTTHUMG00000048176 19 19q13.12 zinc finger protein 570 protein-coding ZNF570 zinc finger protein 570 O - 20121230 -9606 148281 SYT6 RP5-1037B23.1 sytVI HGNC:18638|MIM:607718|Ensembl:ENSG00000134207|HPRD:09654|Vega:OTTHUMG00000011755 1 1p13.2 synaptotagmin VI protein-coding SYT6 synaptotagmin VI O synaptotagmin-6 20121230 -9606 148300 SONP1 - - HGNC:30608 1 1q23.1 SON pseudogene 1 pseudo SONP1 SON pseudogene 1 O - 20121230 -9606 148304 C1orf74 - - HGNC:26319|Ensembl:ENSG00000162757|HPRD:08682|Vega:OTTHUMG00000036483 1 1q32.2 chromosome 1 open reading frame 74 protein-coding C1orf74 chromosome 1 open reading frame 74 O UPF0739 protein C1orf74 20121230 -9606 148327 CREB3L4 RP11-422P24.8 AIBZIP|ATCE1|CREB3|CREB4|JAL|hJAL HGNC:18854|MIM:607138|Ensembl:ENSG00000143578|HPRD:06323|Vega:OTTHUMG00000037159 1 1q21.3 cAMP responsive element binding protein 3-like 4 protein-coding CREB3L4 cAMP responsive element binding protein 3-like 4 O CREB-4|androgen-induced basic leucine zipper protein|attaching to CRE-like 1|cAMP responsive element binding protein 1|cAMP-responsive element-binding protein 3-like protein 4|cAMP-responsive element-binding protein 4|cyclic AMP-responsive element-binding protein 3-like protein 4|cyclic AMP-responsive element-binding protein 4|tisp40|transcript induced in spermiogenesis protein 40 20121230 -9606 148330 MRPS33P1 - - HGNC:29764 1 1q21.3 mitochondrial ribosomal protein S33 pseudogene 1 pseudo MRPS33P1 mitochondrial ribosomal protein S33 pseudogene 1 O - 20121230 -9606 148345 C1orf127 - - HGNC:26730|Ensembl:ENSG00000175262|HPRD:08780|Vega:OTTHUMG00000002032 1 1p36.22 chromosome 1 open reading frame 127 protein-coding C1orf127 chromosome 1 open reading frame 127 O uncharacterized protein C1orf127 20121230 -9606 148362 BROX hCG_25336 C1orf58|RP11-452F19.1 HGNC:26512|Ensembl:ENSG00000162819|HPRD:08725|Vega:OTTHUMG00000037650 1 1q41 BRO1 domain and CAAX motif containing protein-coding BROX BRO1 domain and CAAX motif containing O BRO1 domain containing protein|BRO1 domain- and CAAX motif-containing protein|BRO1 domain-containing protein BROX|Bro1-domain-containing protein 20121230 -9606 148398 SAMD11 RP11-54O7.4 - HGNC:28706|Ensembl:ENSG00000187634|HPRD:10081|Vega:OTTHUMG00000040719 1 1p36.33 sterile alpha motif domain containing 11 protein-coding SAMD11 sterile alpha motif domain containing 11 O SAM domain-containing protein 11|sterile alpha motif domain containing 11 splice variant ASV1|sterile alpha motif domain containing 11 splice variant ASV10|sterile alpha motif domain containing 11 splice variant ASV11|sterile alpha motif domain containing 11 splice variant ASV12|sterile alpha motif domain containing 11 splice variant ASV13|sterile alpha motif domain containing 11 splice variant ASV14|sterile alpha motif domain containing 11 splice variant ASV15|sterile alpha motif domain containing 11 splice variant ASV16|sterile alpha motif domain containing 11 splice variant ASV17|sterile alpha motif domain containing 11 splice variant ASV18|sterile alpha motif domain containing 11 splice variant ASV19|sterile alpha motif domain containing 11 splice variant ASV2|sterile alpha motif domain containing 11 splice variant ASV20|sterile alpha motif domain containing 11 splice variant ASV21|sterile alpha motif domain containing 11 splice variant ASV22|sterile alpha motif domain containing 11 splice variant ASV23|sterile alpha motif domain containing 11 splice variant ASV24|sterile alpha motif domain containing 11 splice variant ASV25|sterile alpha motif domain containing 11 splice variant ASV26|sterile alpha motif domain containing 11 splice variant ASV27|sterile alpha motif domain containing 11 splice variant ASV28|sterile alpha motif domain containing 11 splice variant ASV29|sterile alpha motif domain containing 11 splice variant ASV3|sterile alpha motif domain containing 11 splice variant ASV30|sterile alpha motif domain containing 11 splice variant ASV31|sterile alpha motif domain containing 11 splice variant ASV32|sterile alpha motif domain containing 11 splice variant ASV33|sterile alpha motif domain containing 11 splice variant ASV34|sterile alpha motif domain containing 11 splice variant ASV35|sterile alpha motif domain containing 11 splice variant ASV36|sterile alpha motif domain containing 11 splice variant ASV37|sterile alpha motif domain containing 11 splice variant ASV38|sterile alpha motif domain containing 11 splice variant ASV39|sterile alpha motif domain containing 11 splice variant ASV4|sterile alpha motif domain containing 11 splice variant ASV40|sterile alpha motif domain containing 11 splice variant ASV41|sterile alpha motif domain containing 11 splice variant ASV42|sterile alpha motif domain containing 11 splice variant ASV43|sterile alpha motif domain containing 11 splice variant ASV44|sterile alpha motif domain containing 11 splice variant ASV45|sterile alpha motif domain containing 11 splice variant ASV5|sterile alpha motif domain containing 11 splice variant ASV6|sterile alpha motif domain containing 11 splice variant ASV7|sterile alpha motif domain containing 11 splice variant ASV8|sterile alpha motif domain containing 11 splice variant ASV9|sterile alpha motif domain-containing protein 11 20121230 -9606 148413 LOC148413 - - - 1 1p36.33 uncharacterized LOC148413 miscRNA - - - - 20121230 -9606 148418 SAMD13 HSD42 RP11-376N17.1 HGNC:24582|Ensembl:ENSG00000203943|HPRD:17302|Vega:OTTHUMG00000009859 1 1p31.1 sterile alpha motif domain containing 13 protein-coding SAMD13 sterile alpha motif domain containing 13 O SAM domain-containing protein 13|dnaj-like protein (LOC148418)|sterile alpha motif domain-containing protein 13 20121230 -9606 148423 C1orf52 GM117 RP11-234D19.1|gm117 HGNC:24871|Ensembl:ENSG00000162642|HPRD:16637|Vega:OTTHUMG00000009966 1 1p22.3 chromosome 1 open reading frame 52 protein-coding C1orf52 chromosome 1 open reading frame 52 O BCL10-associated gene protein|UPF0690 protein C1orf52 20121230 -9606 148430 LOC148430 - - - 1 1q23.3 ribosomal protein S2 pseudogene pseudo - - - - 20121230 -9606 148479 PHF13 - PHF5|SPOC1 HGNC:22983|Ensembl:ENSG00000116273|HPRD:10150|Vega:OTTHUMG00000001439 1 1p36.31 PHD finger protein 13 protein-coding PHF13 PHD finger protein 13 O PHD zinc finger protein PHF5|survival time-associated PHD finger protein in ovarian cancer 1|survival time-associated PHD protein in ovarian cancer 20121230 -9606 148523 C1orf51 RP4-790G17.5 - HGNC:25200|Ensembl:ENSG00000159208|HPRD:14081|Vega:OTTHUMG00000012548 1 1q21.2 chromosome 1 open reading frame 51 protein-coding C1orf51 chromosome 1 open reading frame 51 O uncharacterized protein C1orf51 20121230 -9606 148534 TMEM56 - - HGNC:26477|Ensembl:ENSG00000152078|HPRD:08110|Vega:OTTHUMG00000010847 1 1p21.3 transmembrane protein 56 protein-coding TMEM56 transmembrane protein 56 O - 20121230 -9606 148545 NBPF4 RP11-483I13.1 - HGNC:26550|MIM:613994|Ensembl:ENSG00000196427|HPRD:08144|Vega:OTTHUMG00000011318 1 1p13.3 neuroblastoma breakpoint family, member 4 protein-coding NBPF4 neuroblastoma breakpoint family, member 4 O neuroblastoma breakpoint family member 4 20121230 -9606 148581 UBE2U - RP4-636O23.1 HGNC:28559|Ensembl:ENSG00000177414|HPRD:14599|Vega:OTTHUMG00000009023 1 1p31.3 ubiquitin-conjugating enzyme E2U (putative) protein-coding UBE2U ubiquitin-conjugating enzyme E2U (putative) O ubiquitin carrier protein U|ubiquitin-conjugating enzyme E2 U|ubiquitin-protein ligase U 20121230 -9606 148638 LOC148638 - - - 1 1q42.3 uncharacterized LOC148638 protein-coding - - - - 20120508 -9606 148641 SLC35F3 - - HGNC:23616|Ensembl:ENSG00000183780|HPRD:15378|Vega:OTTHUMG00000037929 1 1q42.2 solute carrier family 35, member F3 protein-coding SLC35F3 solute carrier family 35, member F3 O solute carrier family 35 member F3 20121230 -9606 148645 LINC00337 - C1orf211|NCRNA00337 HGNC:28620|HPRD:17550 1 1p36.31 long intergenic non-protein coding RNA 337 unknown LINC00337 long intergenic non-protein coding RNA 337 O - 20121230 -9606 148696 LOC148696 - - - 1 1q32.2 uncharacterized LOC148696 miscRNA - - - - 20121230 -9606 148709 LOC148709 - - - 1 1q32.1 actin pseudogene pseudo - - - - 20121230 -9606 148713 PTPRVP - ESP|OST-PTP|PTPRV HGNC:13421 1 1q32.1 protein tyrosine phosphatase, receptor type, V, pseudogene pseudo PTPRVP protein tyrosine phosphatase, receptor type, V, pseudogene O - 20121230 -9606 148738 HFE2 - HFE2A|HJV|JH|RGMC HGNC:4887|MIM:608374|Ensembl:ENSG00000168509|HPRD:10521|Vega:OTTHUMG00000013748 1 1q21.1 hemochromatosis type 2 (juvenile) protein-coding HFE2 hemochromatosis type 2 (juvenile) O RGM domain family member C|haemojuvelin|hemochromatosis type 2 protein|hemojuvelin|repulsive guidance molecule c 20121230 -9606 148741 ANKRD35 - - HGNC:26323|Ensembl:ENSG00000198483|HPRD:08050|Vega:OTTHUMG00000013743 1 1q21.1 ankyrin repeat domain 35 protein-coding ANKRD35 ankyrin repeat domain 35 O ankyrin repeat domain-containing protein 35 20121230 -9606 148753 FAM163A - C1orf76|NDSP|RP11-12M5.2 HGNC:28274|MIM:611727|Ensembl:ENSG00000143340|HPRD:14454|Vega:OTTHUMG00000035262 1 1q25.2 family with sequence similarity 163, member A protein-coding FAM163A family with sequence similarity 163, member A O cebelin|neuroblastoma derived secretory protein|neuroblastoma-derived secretory protein|protein FAM163A 20121230 -9606 148789 B3GALNT2 - B3GalNAc-T2 HGNC:28596|MIM:610194|Ensembl:ENSG00000162885|HPRD:16533|Vega:OTTHUMG00000040468 1 1q42.3 beta-1,3-N-acetylgalactosaminyltransferase 2 protein-coding B3GALNT2 beta-1,3-N-acetylgalactosaminyltransferase 2 O UDP-GalNAc:beta-1,3-N-acetylgalactosaminyltransferase 2|UDP-GalNAc:betaGlcNAc beta 1,3-galactosaminyltransferase, polypeptide 2|UDP-GalNAc:betaGlcNAc beta-1,3-galactosaminyltransferase, polypeptide 2|beta 1,3-N-acetylgalactosaminyltransferase-II (MGC39558)|beta-1,3-GalNAc-T2|beta-1,3-N-acetylgalactosaminyltransferase II|beta-1,3-galactosaminyltransferase 2 20121230 -9606 148808 MFSD4 UNQ3064/PRO9894 UNQ3064 HGNC:25433|Ensembl:ENSG00000174514|HPRD:13228|Vega:OTTHUMG00000037197 1 1q32.1 major facilitator superfamily domain containing 4 protein-coding MFSD4 major facilitator superfamily domain containing 4 O major facilitator superfamily domain-containing protein 4 20121230 -9606 148811 PM20D1 - Cps1 HGNC:26518|Ensembl:ENSG00000162877|HPRD:08133|Vega:OTTHUMG00000035999 1 1q32.1 peptidase M20 domain containing 1 protein-coding PM20D1 peptidase M20 domain containing 1 O peptidase M20 domain-containing protein 1|probable carboxypeptidase PM20D1 20121230 -9606 148818 HSD17B7P1 - - HGNC:18689 1 1q44 hydroxysteroid (17-beta) dehydrogenase 7 pseudogene 1 pseudo HSD17B7P1 hydroxysteroid (17-beta) dehydrogenase 7 pseudogene 1 O - 20121230 -9606 148823 GCSAML RP11-978I15.8 C1orf150 HGNC:29583|Ensembl:ENSG00000169224|HPRD:14082|Vega:OTTHUMG00000040648 1 1q44 germinal center-associated, signaling and motility-like protein-coding GCSAML germinal center-associated, signaling and motility-like O germinal center-associated signaling and motility-like protein 20121230 -9606 148824 GCSAML-AS1 - - HGNC:41244 1 1q44 GCSAML antisense RNA 1 miscRNA GCSAML-AS1 GCSAML antisense RNA 1 O - 20121230 -9606 148867 SLC30A7 RP11-30G24.1 ZNT7|ZnT-7|ZnTL2 HGNC:19306|MIM:611149|Ensembl:ENSG00000162695|HPRD:15369|Vega:OTTHUMG00000011815 1 1p21.2 solute carrier family 30 (zinc transporter), member 7 protein-coding SLC30A7 solute carrier family 30 (zinc transporter), member 7 O solute carrier family 30 member 7|zinc transporter 7|zinc transporter ZnT-7|zinc transporter like 2|znt-like transporter 2 20121230 -9606 148870 CCDC27 RP1-286D6.1 - HGNC:26546|Ensembl:ENSG00000162592|HPRD:08141|Vega:OTTHUMG00000003504 1 1p36.32 coiled-coil domain containing 27 protein-coding CCDC27 coiled-coil domain containing 27 O coiled-coil domain-containing protein 27 20121230 -9606 148898 C1orf213 - - HGNC:25122|HPRD:14083 1 1p36.12 chromosome 1 open reading frame 213 miscRNA C1orf213 chromosome 1 open reading frame 213 O - 20121230 -9606 148930 KNCN RP11-49P4.2 Kino|L5 HGNC:26488|MIM:611455|Ensembl:ENSG00000162456|HPRD:08117|Vega:OTTHUMG00000007987 1 1p33 kinocilin protein-coding KNCN kinocilin O - 20121230 -9606 148932 MOB3C - MOB1E|MOBKL2C HGNC:29800|Ensembl:ENSG00000142961|HPRD:17584|Vega:OTTHUMG00000007989 1 1p33 MOB kinase activator 3C protein-coding MOB3C MOB kinase activator 3C O MOB1, Mps One Binder kinase activator-like 2C|mob1 homolog 2C 20121230 -9606 148979 GLIS1 - - HGNC:29525|MIM:610378|Ensembl:ENSG00000174332|HPRD:13581|Vega:OTTHUMG00000008079 1 1p32.3 GLIS family zinc finger 1 protein-coding GLIS1 GLIS family zinc finger 1 O GLI-similar 1|zinc finger protein GLIS1 20121230 -9606 149013 NBPF12 RP4-704D21.1 COAS1|KIAA1245 HGNC:24297|MIM:608607 1 1q21 neuroblastoma breakpoint family, member 12 protein-coding NBPF12 neuroblastoma breakpoint family, member 12 O chomosome one amplified sequence 1 cyclophilin|chromosome 1 amplified sequence 1|neuroblastoma breakpoint family member 12 20121230 -9606 149018 LELP1 - - HGNC:32046|MIM:611042|Ensembl:ENSG00000203784|HPRD:17303|Vega:OTTHUMG00000013935 1 1q21.3 late cornified envelope-like proline-rich 1 protein-coding LELP1 late cornified envelope-like proline-rich 1 O late cornified envelope-like proline-rich protein 1|novel small proline rich protein|novel small proline-rich protein 20121230 -9606 149041 RC3H1 RP5-1198E17.5 RNF198|ROQUIN HGNC:29434|MIM:609424|Ensembl:ENSG00000135870|HPRD:13913|Vega:OTTHUMG00000037275 1 1q25.1 ring finger and CCCH-type domains 1 protein-coding RC3H1 ring finger and CCCH-type domains 1 O RING finger and C3H zinc finger protein 1|RING finger protein 198|ring finger and CCCH-type zinc finger domains 1|roquin 20121230 -9606 149047 MGC27382 - - - 1 1p31.1 uncharacterized MGC27382 miscRNA - - - - 20121230 -9606 149069 DCDC2B - - HGNC:32576|Ensembl:ENSG00000222046|Vega:OTTHUMG00000005741 1 1p35.1 doublecortin domain containing 2B protein-coding DCDC2B doublecortin domain containing 2B O doublecortin domain-containing protein 2B 20121230 -9606 149076 ZNF362 RP11-415J8.1 RN|lin-29 HGNC:18079|Ensembl:ENSG00000160094|HPRD:13394|Vega:OTTHUMG00000004124 1 1p35.1 zinc finger protein 362 protein-coding ZNF362 zinc finger protein 362 O rotund homolog 20121230 -9606 149086 LOC149086 - - - 1 1p35.2 ornithine decarboxylase 1 pseudogene pseudo - - - - 20121230 -9606 149095 DCST1 RP11-307C12.10-003 - HGNC:26539|Ensembl:ENSG00000163357|HPRD:08733|Vega:OTTHUMG00000041314 1 1q22 DC-STAMP domain containing 1 protein-coding DCST1 DC-STAMP domain containing 1 O DC-STAMP domain-containing protein 1 20121230 -9606 149111 CNIH3 RP11-3L21.1 CNIH-3 HGNC:26802|Ensembl:ENSG00000143786|HPRD:08799|Vega:OTTHUMG00000037634 1 1q42.12 cornichon homolog 3 (Drosophila) protein-coding CNIH3 cornichon homolog 3 (Drosophila) O protein cornichon homolog 3 20121230 -9606 149134 LOC149134 - - HPRD:14084 1 1q44 uncharacterized LOC149134 miscRNA - - - - 20121230 -9606 149175 MANEAL - RP11-109P14.3 HGNC:26452|Ensembl:ENSG00000185090|HPRD:08713|Vega:OTTHUMG00000004317 1 1p34.3 mannosidase, endo-alpha-like protein-coding MANEAL mannosidase, endo-alpha-like O glycoprotein endo-alpha-1,2-mannosidase-like protein 20121230 -9606 149194 LOC149194 - - - 1 1p36.13 uncharacterized LOC149194 unknown - - - - 20120508 -9606 149224 RPS7P4 - RPS7_1_61 HGNC:36000 1 1p31.3 ribosomal protein S7 pseudogene 4 pseudo RPS7P4 ribosomal protein S7 pseudogene 4 O - 20121230 -9606 149233 IL23R - - HGNC:19100|MIM:607562|Ensembl:ENSG00000162594|HPRD:16249|Vega:OTTHUMG00000009092 1 1p31.3 interleukin 23 receptor protein-coding IL23R interleukin 23 receptor O IL-23 receptor|interleukin-23 receptor 20121230 -9606 149281 METTL11B RP11-297H3.1 C1orf184|HOMT1B|NTM1B HGNC:31932|Ensembl:ENSG00000203740|Vega:OTTHUMG00000035959 1 1q24.2 methyltransferase like 11B protein-coding METTL11B methyltransferase like 11B O X-Pro-Lys N-terminal protein methyltransferase 1B|alpha N-terminal protein methyltransferase 1B|methyltransferase-like protein 11B 20121230 -9606 149297 FAM78B RP11-375H19.1 - HGNC:13495|Ensembl:ENSG00000188859|HPRD:18557|Vega:OTTHUMG00000034705 1 1q24.1 family with sequence similarity 78, member B protein-coding FAM78B family with sequence similarity 78, member B O protein FAM78B 20121230 -9606 149345 SHISA4 UNQ583/PRO1153 C1orf40|TMEM58 HGNC:27139|Ensembl:ENSG00000198892|HPRD:12729|Vega:OTTHUMG00000035807 1 1q32.1 shisa homolog 4 (Xenopus laevis) protein-coding SHISA4 shisa homolog 4 (Xenopus laevis) O protein shisa-4|transmembrane protein 58 20121230 -9606 149351 LOC149351 - - - 1 1p22.2 uncharacterized LOC149351 unknown - - - - 20121230 -9606 149371 EXOC8 - EXO84|Exo84p|SEC84 HGNC:24659|Ensembl:ENSG00000116903|HPRD:09943|Vega:OTTHUMG00000038025 1 1q42.2 exocyst complex component 8 protein-coding EXOC8 exocyst complex component 8 O exocyst complex 84 kDa subunit|exocyst complex 84-kDa subunit 20121230 -9606 149373 LOC149373 - - - 1 1q42.2 uncharacterized LOC149373 protein-coding - - - uncharacterized protein LOC149373 20121230 -9606 149401 LOC149401 - - - 1 1q32.1 uncharacterized LOC149401 protein-coding - - - - 20120909 -9606 149420 PDIK1L RP11-96L14.4 CLIK1L|STK35L2 HGNC:18981|MIM:610785|Ensembl:ENSG00000175087|HPRD:15110|Vega:OTTHUMG00000007511 1 1p36.11 PDLIM1 interacting kinase 1 like protein-coding PDIK1L PDLIM1 interacting kinase 1 like O PDLIM1-interacting kinase 1-like|casein kinase|serine/threonine-protein kinase PDIK1L 20121230 -9606 149428 BNIPL RP11-316M1.7 BNIP-S|BNIPL-1|BNIPL-2|BNIPL1|BNIPL2|BNIPS|PP753 HGNC:16976|MIM:611275|Ensembl:ENSG00000163141|HPRD:16557|Vega:OTTHUMG00000035157 1 1q21.3 BCL2/adenovirus E1B 19kD interacting protein like protein-coding BNIPL BCL2/adenovirus E1B 19kD interacting protein like O BNIP-2 similar|bcl-2/adenovirus E1B 19 kDa-interacting protein 2-like protein 20121230 -9606 149461 CLDN19 - HOMG5 HGNC:2040|MIM:610036|Ensembl:ENSG00000164007|HPRD:10834|Vega:OTTHUMG00000007524 1 1p34.2 claudin 19 protein-coding CLDN19 claudin 19 O claudin-19 20121230 -9606 149465 WDR65 - VWS2 HGNC:26485|MIM:614259|Ensembl:ENSG00000243710|HPRD:08717|Vega:OTTHUMG00000007285 1 1p34.2 WD repeat domain 65 protein-coding WDR65 WD repeat domain 65 O WD repeat-containing protein 65 20121230 -9606 149466 C1orf210 - - HGNC:28755|Ensembl:ENSG00000253313|HPRD:14677|Vega:OTTHUMG00000007289 1 1p34.2 chromosome 1 open reading frame 210 protein-coding C1orf210 chromosome 1 open reading frame 210 O putative uncharacterized protein C1orf210 20121230 -9606 149473 CCDC24 - RP5-1198O20.2 HGNC:28688|Ensembl:ENSG00000159214|HPRD:14636|Vega:OTTHUMG00000008299 1 1p34.1 coiled-coil domain containing 24 protein-coding CCDC24 coiled-coil domain containing 24 O coiled-coil domain-containing protein 24 20121230 -9606 149478 BTBD19 RP11-269F19.7 - HGNC:27145|Ensembl:ENSG00000222009|Vega:OTTHUMG00000008493 1 1p34.1 BTB (POZ) domain containing 19 protein-coding BTBD19 BTB (POZ) domain containing 19 O BTB/POZ domain-containing protein 19|novel BTB domain containing protein 20121230 -9606 149483 CCDC17 RP4-697E16.4 - HGNC:26574|Ensembl:ENSG00000159588|HPRD:08155|Vega:OTTHUMG00000007822 1 1p34.1 coiled-coil domain containing 17 protein-coding CCDC17 coiled-coil domain containing 17 O coiled-coil domain-containing protein 17 20121230 -9606 149499 LRRC71 - C1orf92|RP11-356J7.1 HGNC:26556|Ensembl:ENSG00000160838|HPRD:08737|Vega:OTTHUMG00000041298 1 1q23.1 leucine rich repeat containing 71 protein-coding LRRC71 leucine rich repeat containing 71 O leucine-rich repeat-containing protein 71|leucine-rich repeat-containing protein C10orf92 20121230 -9606 149501 KRT8P45 - - HGNC:39879 1 1q23.1 keratin 8 pseudogene 45 pseudo KRT8P45 keratin 8 pseudogene 45 O - 20121230 -9606 149563 C1orf64 - ERRF|RP11-5P18.4 HGNC:28339|Ensembl:ENSG00000183888|HPRD:14492|Vega:OTTHUMG00000009523 1 1p36.13 chromosome 1 open reading frame 64 protein-coding C1orf64 chromosome 1 open reading frame 64 O ER-related factor|uncharacterized protein C1orf64 20121230 -9606 149603 RNF187 - RACO-1|RACO1 HGNC:27146|MIM:613754|Ensembl:ENSG00000168159|Vega:OTTHUMG00000040043 1 1q42.13 ring finger protein 187 protein-coding RNF187 ring finger protein 187 O E3 ubiquitin-protein ligase RNF187|RING domain AP1 coactivator 1|protein RNF187 20121230 -9606 149620 CHIAP2 RP11-165H20.1 - HGNC:44463|HPRD:12595 1 1p13.2 chitinase, acidic pseudogene 2 pseudo CHIAP2 chitinase, acidic pseudogene 2 O - 20121230 -9606 149628 PYHIN1 - IFIX|RP11-520H16.1 HGNC:28894|MIM:612677|Ensembl:ENSG00000163564|HPRD:09999|Vega:OTTHUMG00000037109 1 1q23.1 pyrin and HIN domain family, member 1 protein-coding PYHIN1 pyrin and HIN domain family, member 1 O interferon-inducible protein X|pyrin and HIN domain-containing protein 1 20121230 -9606 149643 C1orf227 HSD44 - HGNC:33709|Ensembl:ENSG00000185523|HPRD:18558|Vega:OTTHUMG00000036920 1 1q32.3 chromosome 1 open reading frame 227 protein-coding C1orf227 chromosome 1 open reading frame 227 O UPF0732 protein C1orf227 20121230 -9606 149647 FAM71A - RP11-338C15.4 HGNC:26541|Ensembl:ENSG00000162771|HPRD:08735|Vega:OTTHUMG00000041084 1 1q32.3 family with sequence similarity 71, member A protein-coding FAM71A family with sequence similarity 71, member A O protein FAM71A 20121230 -9606 149650 FLJ32154 RP11-93B14.6 - HPRD:08121 20 20q13.33 uncharacterized protein FLJ32154 unknown - - - uncharacterized protein LOC149650 20121230 -9606 149684 LOC149684 - - - 20 20q12 uncharacterized LOC149684 protein-coding - - - - 20120508 -9606 149685 ADIG RP5-1100H13.2 SMAF1 HGNC:28606|MIM:611396|Ensembl:ENSG00000182035|HPRD:18068|Vega:OTTHUMG00000032451 20 20q11.23 adipogenin protein-coding ADIG adipogenin O adipogenesis associated|small adipocyte factor 1 (SMAF1) 20121230 -9606 149699 GTSF1L RP5-1028D15.3 C20orf65|FAM112A|dJ1028D15.4 HGNC:16198|Ensembl:ENSG00000124196|HPRD:12778|Vega:OTTHUMG00000032510 20 20q13.12 gametocyte specific factor 1-like protein-coding GTSF1L gametocyte specific factor 1-like O family with sequence similarity 112, member A|gametocyte-specific factor 1-like 20121230 -9606 149703 LOC149703 - - - 20 20q13.12 uncharacterized LOC149703 unknown - - - - 20120508 -9606 149708 WFDC5 UNQ3036/PRO9842 PRG5|WAP1|dJ211D12.5 HGNC:20477|MIM:605161|Ensembl:ENSG00000175121|Vega:OTTHUMG00000046411 20 20q13.12 WAP four-disulfide core domain 5 protein-coding WFDC5 WAP four-disulfide core domain 5 O WAP four-disulfide core domain protein 5|p53-responsive gene 5 protein|protease inhibitor WAP1|putative protease inhibitor WAP1 20121230 -9606 149773 APCDD1L-AS1 - - HGNC:27152 20 20q13.32 APCDD1L antisense RNA 1 (head to head) miscRNA APCDD1L-AS1 APCDD1L antisense RNA 1 (head to head) O - 20121230 -9606 149775 GNAS-AS1 - GNAS-AS|GNAS1AS|GNASAS|NCRNA00075|NESP-AS|NESPAS|SANG HGNC:24872|MIM:610540 20 20q13.32 GNAS antisense RNA 1 miscRNA GNAS-AS1 GNAS antisense RNA 1 O - 20121230 -9606 149830 PRNT RP5-1068H6.5 M8 HGNC:18046|HPRD:14086 20 20p13 prion protein (testis specific) miscRNA PRNT prion protein (testis specific) O - 20121230 -9606 149837 LINC00654 RP5-1022P6.6 - HGNC:27154 20 20p12.3 long intergenic non-protein coding RNA 654 miscRNA LINC00654 long intergenic non-protein coding RNA 654 O - 20121230 -9606 149840 C20orf196 RP4-784N16.1 - HGNC:26318|Ensembl:ENSG00000171984|HPRD:08681|Vega:OTTHUMG00000031813 20 20p12.3 chromosome 20 open reading frame 196 protein-coding C20orf196 chromosome 20 open reading frame 196 O uncharacterized protein C20orf196 20121230 -9606 149844 LOC149844 - - - 20 20p12.3 synaptotagmin binding, cytoplasmic RNA interacting protein pseudogene pseudo - - - - 20121230 -9606 149934 NCOR1P1 - C20orf191|bB329D4.2 HGNC:16724 20 20p11.1 nuclear receptor corepressor 1 pseudogene 1 pseudo NCOR1P1 nuclear receptor corepressor 1 pseudogene 1 O - 20121230 -9606 149935 LOC149935 RP5-854E16.2 - - 20 20q11.21 CDK5 regulatory subunit associated protein 3 pseudogene pseudo - - - - 20121230 -9606 149950 LOC149950 RP11-410N8.4 - HPRD:17304 20 20q11.21 uncharacterized LOC149950 miscRNA - - - - 20121230 -9606 149951 COMMD7 RP11-503P21.3 C20orf92|dJ1085F17.3 HGNC:16223|Ensembl:ENSG00000149600|HPRD:13085|Vega:OTTHUMG00000032229 20 20q11.21 COMM domain containing 7 protein-coding COMMD7 COMM domain containing 7 O COMM domain-containing protein 7 20121230 -9606 149954 BPIFB4 - C20orf186|LPLUNC4|RY2G5|dJ726C3.5 HGNC:16179|Ensembl:ENSG00000186191|HPRD:16645|Vega:OTTHUMG00000032235 20 20q11.21 BPI fold containing family B, member 4 protein-coding BPIFB4 BPI fold containing family B, member 4 O BPI fold-containing family B member 4|ligand-binding protein RY2G5|likely ortholog of rat probable ligand-binding protein RY2G5|long palate, lung and nasal epithelium carcinoma associated 4|long palate, lung and nasal epithelium carcinoma-associated protein 4 20121230 -9606 149986 LSM14B FT005 C20orf40|FAM61B|LSM13|RAP55B|bA11M20.3 HGNC:15887|Ensembl:ENSG00000149657|HPRD:12768|Vega:OTTHUMG00000032901 20 20q13.33 LSM14B, SCD6 homolog B (S. cerevisiae) protein-coding LSM14B LSM14B, SCD6 homolog B (S. cerevisiae) O LSM14 homolog B|RNA-associated protein 55B|family with sequence similarity 61, member B|hRAP55B|protein LSM14 homolog B 20121230 -9606 149992 ANKRD30BP2 - C21orf99|CT85|CTSP-1|CTSP1 HGNC:16620|HPRD:10779 21 21q11.2 ankyrin repeat domain 30B pseudogene 2 pseudo ANKRD30BP2 ankyrin repeat domain 30B pseudogene 2 O - 20121230 -9606 149998 LIPI PRED5 CT17|LPDL|PLA1C HGNC:18821|MIM:609252|Ensembl:ENSG00000188992|HPRD:14193|Vega:OTTHUMG00000074258 21 21q11.2 lipase, member I protein-coding LIPI lipase, member I O LPD lipase|cancer/testis antigen 17|lipase member I|mPA-PLA1 beta|membrane-associated phosphatidic acid-selective phospholipase A1-beta|membrane-associated phospholipase A1 beta 7B+|membrane-associated phospholipase A1 beta deltaE2-3|membrane-associated phospholipase A1 beta deltaE5|membrane-associated phospholipase A1 beta deltaE6.1|membrane-associated phospholipase A1 beta deltaE7.2|membrane-associated phospholipase A1 beta deltaE8-9|membrane-associated phospholipase A1 beta fl 20121230 -9606 150000 ABCC13 - C21orf73|PRED6 HGNC:16022|MIM:608835|HPRD:10586 21 21q11.2 ATP-binding cassette, sub-family C (CFTR/MRP), member 13, pseudogene pseudo ABCC13 ATP-binding cassette, sub-family C (CFTR/MRP), member 13, pseudogene O ATP-binding cassette protein C13 20121230 -9606 150005 LOC150005 - - - 21 21q21.1 uncharacterized LOC150005 unknown - - - - 20120508 -9606 150051 LOC150051 - - - 21 21q22.11 uncharacterized LOC150051 unknown - - - - 20121230 -9606 150082 LCA5L - C21orf13 HGNC:1255|Ensembl:ENSG00000157578|HPRD:10742|Vega:OTTHUMG00000066280 21 21q22.2 Leber congenital amaurosis 5-like protein-coding LCA5L Leber congenital amaurosis 5-like O Lebercilin-like protein|leber congenital amaurosis 5-like protein 20121230 -9606 150084 IGSF5 - GSF5|JAM4 HGNC:5952|MIM:610638|Ensembl:ENSG00000183067|Vega:OTTHUMG00000086724 21 21q22.2 immunoglobulin superfamily, member 5 protein-coding IGSF5 immunoglobulin superfamily, member 5 O JAM-4|immunoglobulin superfamily 5 like|immunoglobulin superfamily member 5|junctional adhesion molecule 4 20121230 -9606 150094 SIK1 - MSK|SIK|SNF1LK HGNC:11142|MIM:605705|Ensembl:ENSG00000142178|HPRD:09301|Vega:OTTHUMG00000086874 21 21q22.3 salt-inducible kinase 1 protein-coding SIK1 salt-inducible kinase 1 O SIK-1|SNF1-like kinase|myocardial SNF1-like kinase|salt-inducible protein kinase 1|serine/threonine protein kinase|serine/threonine-protein kinase SIK1|serine/threonine-protein kinase SNF1-like kinase 1|serine/threonine-protein kinase SNF1LK 20121230 -9606 150135 LINC00479 PRED76 C21orf129 HGNC:19727|HPRD:10741 21 21q22.3 long intergenic non-protein coding RNA 479 miscRNA LINC00479 long intergenic non-protein coding RNA 479 O - 20121230 -9606 150142 ZNF295-AS1 PRED87 C21orf121|NCRNA00318 HGNC:23130|HPRD:10735 21 21q22.3 ZNF295 antisense RNA 1 miscRNA ZNF295-AS1 ZNF295 antisense RNA 1 O - 20121230 -9606 150147 C21orf128 - - HGNC:23821|HPRD:10740 21 21q22.3 chromosome 21 open reading frame 128 miscRNA C21orf128 chromosome 21 open reading frame 128 O - 20121230 -9606 150159 SLC9B1 - NHA1|NHEDC1 HGNC:24244|MIM:611527|Ensembl:ENSG00000164037|HPRD:11240|Vega:OTTHUMG00000161114 4 4q24 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 protein-coding SLC9B1 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 O NHE domain-containing protein 1|Na(+)/H(+) exchanger-like domain-containing protein 1|sodium/hydrogen exchanger 9B1|sodium/hydrogen exchanger-like domain-containing protein 1|solute carrier family 9, subfamily B (cation proton antiporter 2), member 1 20121230 -9606 150160 CCT8L2 - CESK1 HGNC:15553|Ensembl:ENSG00000198445|HPRD:16708|Vega:OTTHUMG00000141302 22 22q11.1 chaperonin containing TCP1, subunit 8 (theta)-like 2 protein-coding CCT8L2 chaperonin containing TCP1, subunit 8 (theta)-like 2 O T-complex protein 1|putative T-complex protein 1 subunit theta-like 2 20121230 -9606 150165 XKR3 - XRG3|XTES HGNC:28778|MIM:611674|Ensembl:ENSG00000172967|HPRD:14692|Vega:OTTHUMG00000143726 22 22q11.1 XK, Kell blood group complex subunit-related family, member 3 protein-coding XKR3 XK, Kell blood group complex subunit-related family, member 3 O X Kell blood group precursor-related family, member 3|XK-related protein 3|expressed in testis|x Kell blood group-related 3 20121230 -9606 150185 LOC150185 - - - 22 22q11.21 uncharacterized LOC150185 miscRNA - - - - 20121230 -9606 150197 LOC150197 - - - 22 22q11.21 uncharacterized LOC150197 miscRNA - - - - 20121230 -9606 150209 AIFM3 - AIFL HGNC:26398|Ensembl:ENSG00000183773|HPRD:08085|Vega:OTTHUMG00000150804 22 22q11.21 apoptosis-inducing factor, mitochondrion-associated, 3 protein-coding AIFM3 apoptosis-inducing factor, mitochondrion-associated, 3 O apoptosis-inducing factor 3|apoptosis-inducing factor like 20121230 -9606 150221 RIMBP3C - RIM-BP3.3|RIMBP3.3 HGNC:33892|MIM:612701|Ensembl:ENSG00000183246|Vega:OTTHUMG00000150825 22 22q11.21 RIMS binding protein 3C protein-coding RIMBP3C RIMS binding protein 3C O RIM-BP3.C|RIMS binding protein 3.3|RIMS-binding protein 3.3|RIMS-binding protein 3C 20121230 -9606 150223 YDJC - - HGNC:27158|Ensembl:ENSG00000161179|HPRD:18559|Vega:OTTHUMG00000150822 22 22q11.21 YdjC homolog (bacterial) protein-coding YDJC YdjC homolog (bacterial) O UPF0249 protein ydjC homolog 20121230 -9606 150244 ZDHHC8P1 - ZDHHC8P HGNC:26461|HPRD:08104 22 22q11.23 zinc finger, DHHC-type containing 8 pseudogene 1 pseudo ZDHHC8P1 zinc finger, DHHC-type containing 8 pseudogene 1 O - 20121230 -9606 150248 C22orf15 - N27C7-3 HGNC:15558|Ensembl:ENSG00000169314|HPRD:08778|Vega:OTTHUMG00000150740 22 22q11.23 chromosome 22 open reading frame 15 protein-coding C22orf15 chromosome 22 open reading frame 15 O protein N27C7-3|uncharacterized protein C22orf15 20121230 -9606 150274 HSCB RP3-366L4.2 DNAJC20|HSC20|JAC1|dJ366L4.2 HGNC:28913|MIM:608142|Ensembl:ENSG00000100209|HPRD:16289|Vega:OTTHUMG00000151092 22 22q12.1 HscB iron-sulfur cluster co-chaperone homolog (E. coli) protein-coding HSCB HscB iron-sulfur cluster co-chaperone homolog (E. coli) O DnaJ (Hsp40) homolog, subfamily C, member 20|J-type co-chaperone HSC20|dnaJ homolog subfamily C member 20|iron-sulfur cluster co-chaperone protein HscB, mitochondrial 20121230 -9606 150275 CCDC117 CTA-292E10.4 dJ366L4.1 HGNC:26599|Ensembl:ENSG00000159873|HPRD:08167|Vega:OTTHUMG00000151091 22 22q12.1 coiled-coil domain containing 117 protein-coding CCDC117 coiled-coil domain containing 117 O coiled-coil domain-containing protein 117 20121230 -9606 150280 HORMAD2 - - HGNC:28383|Ensembl:ENSG00000176635|HPRD:13668|Vega:OTTHUMG00000150881 22 22q12.2 HORMA domain containing 2 protein-coding HORMAD2 HORMA domain containing 2 O HORMA domain-containing protein 2 20121230 -9606 150290 DUSP18 - DSP18|DUSP20|LMWDSP20|bK963H5.1 HGNC:18484|MIM:611446|Ensembl:ENSG00000167065|HPRD:13253|Vega:OTTHUMG00000151115 22 22q12.2 dual specificity phosphatase 18 protein-coding DUSP18 dual specificity phosphatase 18 O LMW-DSP20|dual specificity protein phosphatase 18|low molecular weight dual specificity phosphatase 20 20121230 -9606 150291 MORC2-AS1 - C22orf27|NCRNA00325 HGNC:26662|HPRD:08191 22 22q12.2 MORC2 antisense RNA 1 miscRNA MORC2-AS1 MORC2 antisense RNA 1 O - 20121230 -9606 150297 C22orf42 RP1-127L4.6 dJ90G24.6 HGNC:27160|Ensembl:ENSG00000205856|HPRD:14087|Vega:OTTHUMG00000030380 22 22q12.3 chromosome 22 open reading frame 42 protein-coding C22orf42 chromosome 22 open reading frame 42 O uncharacterized protein C22orf42 20121230 -9606 150350 ENTHD1 RP1-172B20.3 CACNA1I|dJ370M22.3 HGNC:26352|Ensembl:ENSG00000176177|HPRD:08063|Vega:OTTHUMG00000151098 22 22q13.1 ENTH domain containing 1 protein-coding ENTHD1 ENTH domain containing 1 O ENTH domain-containing protein 1|dJ370M22.3 (EPSIN 2B)|epsin-2B 20121230 -9606 150353 DNAJB7 - DJ5|HSC3 HGNC:24986|MIM:611336|Ensembl:ENSG00000172404|HPRD:07010|Vega:OTTHUMG00000151202 22 22q13.2 DnaJ (Hsp40) homolog, subfamily B, member 7 protein-coding DNAJB7 DnaJ (Hsp40) homolog, subfamily B, member 7 O dnaJ homolog subfamily B member 7|novel DnaJ domain protein 20121230 -9606 150356 CHADL RP4-756G23.1 SLRR4B HGNC:25165|Ensembl:ENSG00000100399|Vega:OTTHUMG00000150936 22 22q13.2 chondroadherin-like protein-coding CHADL chondroadherin-like O chondroadherin-like protein 20121230 -9606 150365 MEI1 RP5-821D11.2 - HGNC:28613|MIM:608797|Ensembl:ENSG00000167077|Vega:OTTHUMG00000030083 22 22q13.2 meiosis inhibitor 1 protein-coding MEI1 meiosis inhibitor 1 O meiosis defective 1|meiosis defective protein 1|meiosis inhibitor protein 1 20121230 -9606 150368 FAM109B CTA-250D10.2 IPIP27B|Ses2 HGNC:27161|MIM:614240|Ensembl:ENSG00000177096|HPRD:17305|Vega:OTTHUMG00000151285 22 22q13.2 family with sequence similarity 109, member B protein-coding FAM109B family with sequence similarity 109, member B O 27 kDa inositol polyphosphate phosphatase interacting protein B|sesquipedalian-2 20121230 -9606 150372 NFAM1 CTA-126B4.4 CNAIP|bK126B4.4 HGNC:29872|MIM:608740|Ensembl:ENSG00000235568|HPRD:16380|Vega:OTTHUMG00000150923 22 22q13.2 NFAT activating protein with ITAM motif 1 protein-coding NFAM1 NFAT activating protein with ITAM motif 1 O NFAT activation molecule 1|NFAT-activating protein with ITAM motif 1|calcinerin/NFAT-activating ITAM-containing protein|calcineurin/NFAT-activating ITAM-containing protein 20121230 -9606 150378 FLJ30901 - - - 22 22q13.31 uncharacterized protein FLJ30901 protein-coding - - - uncharacterized protein LOC150378 20111025 -9606 150379 PNPLA5 RP3-388M5.5 GS2L|dJ388M5|dJ388M5.4 HGNC:24888|MIM:611589|Ensembl:ENSG00000100341|HPRD:17870|Vega:OTTHUMG00000030779 22 22q13.31 patatin-like phospholipase domain containing 5 protein-coding PNPLA5 patatin-like phospholipase domain containing 5 O GS2-like protein|patatin-like phospholipase domain-containing protein 5 20121230 -9606 150381 LOC150381 - - - 22 22q13.31 uncharacterized LOC150381 miscRNA - - - - 20121230 -9606 150383 CDPF1 - C22orf40 HGNC:33710|Ensembl:ENSG00000205643|HPRD:11241|Vega:OTTHUMG00000030672 22 22q13.31 cysteine-rich, DPF motif domain containing 1 protein-coding CDPF1 cysteine-rich, DPF motif domain containing 1 O UPF0595 protein C22orf40|cysteine-rich DPF motif domain-containing protein 1 20121230 -9606 150384 CN5H6.4 - - - 22 22q13.31 uncharacterized LOC150384 miscRNA - - - - 20121230 -9606 150417 LOC150417 - - - 22 22q13.33 small nuclear ribonucleoprotein polypeptide A' pseudogene pseudo - - - - 20121230 -9606 150465 TTL - - HGNC:21586|MIM:608291|Ensembl:ENSG00000114999|HPRD:12206|Vega:OTTHUMG00000131316 2 2q13 tubulin tyrosine ligase protein-coding TTL tubulin tyrosine ligase O 2410003M22Rik|tubulin--tyrosine ligase|tubulin-tyrosine ligase 20121230 -9606 150468 CKAP2L - - HGNC:26877|Ensembl:ENSG00000169607|HPRD:08285|Vega:OTTHUMG00000131313 2 2q13 cytoskeleton associated protein 2-like protein-coding CKAP2L cytoskeleton associated protein 2-like O cytoskeleton-associated protein 2-like 20121230 -9606 150472 CBWD2 - - HGNC:17907|MIM:611079|Ensembl:ENSG00000136682|HPRD:16687|Vega:OTTHUMG00000131360 2 2q13 COBW domain containing 2 protein-coding CBWD2 COBW domain containing 2 O COBW domain-containing protein 2|cobalamin synthase W domain-containing protein 2|cobalamin synthetase W domain-containing protein 2 20121230 -9606 150478 bA395L14.12 RP11-395L14.12-001 - - 2 2q14.1 small nuclear ribonucleoprotein polypeptide A' pseudogene pseudo - - - - 20121230 -9606 150483 TEKT4 - - HGNC:31012|Ensembl:ENSG00000163060|HPRD:14518|Vega:OTTHUMG00000130396 2 2q11.1 tektin 4 protein-coding TEKT4 tektin 4 O tektin-4 20121230 -9606 150519 LOC150519 - - - 2 2q21.1 uncharacterized LOC150519 unknown - - - - 20120511 -9606 150527 TISP43 - - - 2 2q21.1 uncharacterized LOC150527 pseudo - - - - 20121230 -9606 150538 SATB2-AS1 - - HGNC:26490|HPRD:08118 2 2q33.1 SATB2 antisense RNA 1 miscRNA SATB2-AS1 SATB2 antisense RNA 1 O - 20121230 -9606 150554 YWHAZP2 - - HGNC:31078 2 2q14.3 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 2 pseudo YWHAZP2 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 2 O - 20121230 -9606 150568 LOC150568 - - - 2 2q12.1 uncharacterized LOC150568 miscRNA - - - - 20121230 -9606 150572 SMYD1 - BOP|KMT3D|ZMYND18|ZMYND22 HGNC:20986|MIM:606846|Ensembl:ENSG00000115593|HPRD:06025|Vega:OTTHUMG00000155045 2 2p11.2 SET and MYND domain containing 1 protein-coding SMYD1 SET and MYND domain containing 1 O CD8 beta opposite|SET and MYND domain-containing protein 1|zinc finger, MYND domain containing 18 20121230 -9606 150577 LOC150577 - - - 2 2q11.2 uncharacterized LOC150577 miscRNA - - - - 20121230 -9606 150590 C2orf15 - - HGNC:28436|Ensembl:ENSG00000241962|HPRD:12806|Vega:OTTHUMG00000130635 2 2q11.2 chromosome 2 open reading frame 15 protein-coding C2orf15 chromosome 2 open reading frame 15 O uncharacterized protein C2orf15 20121230 -9606 150596 FLJ32955 - - HPRD:08152 2 2q23.3 uncharacterized protein FLJ32955 unknown - - - - 20121230 -9606 150622 LOC150622 - - HPRD:08087 2 2p25.2 uncharacterized LOC150622 miscRNA - - - - 20121230 -9606 150677 OTOS - OTOSP HGNC:22644|MIM:607877|Ensembl:ENSG00000178602|HPRD:09714|Vega:OTTHUMG00000133351 2 2q37.3 otospiralin protein-coding OTOS otospiralin O - 20121230 -9606 150678 MYEOV2 - - HGNC:21314|Ensembl:ENSG00000172428|HPRD:17306|Vega:OTTHUMG00000133352 2 2q37.3 myeloma overexpressed 2 protein-coding MYEOV2 myeloma overexpressed 2 O helicase/primase complex protein|myeloma-overexpressed gene 2 protein 20121230 -9606 150681 OR6B3 - OR6B3P|OR6B3Q HGNC:15042|Ensembl:ENSG00000178586|HPRD:17772|Vega:OTTHUMG00000152399 2 2q37.3 olfactory receptor, family 6, subfamily B, member 3 protein-coding OR6B3 olfactory receptor, family 6, subfamily B, member 3 O olfactory receptor 6B3|olfactory receptor OR2-2|olfactory receptor, family 6, subfamily B, member 3 pseudogene 20121230 -9606 150684 COMMD1 - C2orf5|MURR1 HGNC:23024|MIM:607238|Ensembl:ENSG00000173163|HPRD:06253|Vega:OTTHUMG00000129445 2 2p15 copper metabolism (Murr1) domain containing 1 protein-coding COMMD1 copper metabolism (Murr1) domain containing 1 O COMM domain-containing protein 1|copper metabolism gene MURR1|protein Murr1 20121230 -9606 150696 PROM2 UNQ2521/PRO6014 PROML2 HGNC:20685|Ensembl:ENSG00000155066|HPRD:17912|Vega:OTTHUMG00000130393 2 2q11.1 prominin 2 protein-coding PROM2 prominin 2 O hPROML2|prominin-2|prominin-like protein 2|prominin-related protein 20121230 -9606 150709 ANKAR - - HGNC:26350|MIM:609803|Ensembl:ENSG00000151687|Vega:OTTHUMG00000154398 2 2q32.2 ankyrin and armadillo repeat containing protein-coding ANKAR ankyrin and armadillo repeat containing O ankyrin and armadillo repeat-containing protein 20121230 -9606 150726 FBXO41 - FBX41 HGNC:29409|MIM:609108|Ensembl:ENSG00000163013|Vega:OTTHUMG00000164127 2 2p13.2 F-box protein 41 protein-coding FBXO41 F-box protein 41 O F-box only protein 41 20121230 -9606 150737 TTC30B - IFT70|fleer HGNC:26425|Ensembl:ENSG00000196659|HPRD:08706|Vega:OTTHUMG00000154166 2 2q31.2 tetratricopeptide repeat domain 30B protein-coding TTC30B tetratricopeptide repeat domain 30B O TPR repeat protein 30B|tetratricopeptide repeat protein 30B 20121230 -9606 150759 LINC00342 - NCRNA00342 HGNC:42470 2 2q11.2 long intergenic non-protein coding RNA 342 miscRNA LINC00342 long intergenic non-protein coding RNA 342 O - 20121230 -9606 150763 GPAT2 - CT123 HGNC:27168|Ensembl:ENSG00000186281|HPRD:14089|Vega:OTTHUMG00000155208 2 2q11.1 glycerol-3-phosphate acyltransferase 2, mitochondrial protein-coding GPAT2 glycerol-3-phosphate acyltransferase 2, mitochondrial O GPAT-2|cancer/testis antigen 123|xGPAT1 20121230 -9606 150771 ITPRIPL1 - KIAA1754L HGNC:29371|Ensembl:ENSG00000198885|HPRD:13893|Vega:OTTHUMG00000155230 2 2q11.2 inositol 1,4,5-trisphosphate receptor interacting protein-like 1 protein-coding ITPRIPL1 inositol 1,4,5-trisphosphate receptor interacting protein-like 1 O inositol 1,4,5-triphosphate receptor interacting protein-like 1|inositol 1,4,5-triphosphate receptor-interacting protein-like 1|inositol 1,4,5-trisphosphate receptor-interacting protein-like 1 20121230 -9606 150776 LOC150776 - - - 2 2q21.1 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) pseudogene pseudo - - - - 20121230 -9606 150786 WTH3DI - - - 2 2q21.1 RAB6C-like protein-coding - - - - 20121230 -9606 150864 FAM117B - ALS2CR13 HGNC:14440|Ensembl:ENSG00000138439|HPRD:12445|Vega:OTTHUMG00000154550 2 2q33.2 family with sequence similarity 117, member B protein-coding FAM117B family with sequence similarity 117, member B O amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 13|amyotrophic lateral sclerosis 2 chromosomal region candidate gene 13 protein|protein FAM117B 20121230 -9606 150921 TCF23 - OUT|TCF-23|bHLHa24 HGNC:18602|MIM:609635|Ensembl:ENSG00000163792|HPRD:18734|Vega:OTTHUMG00000152031 2 2p23.3 transcription factor 23 protein-coding TCF23 transcription factor 23 O class A basic helix-loop-helix protein 24|class II basic helix-loop-helix protein TCF23 20121230 -9606 150928 PTMAP5 RP11-193G17.1 - HGNC:9628 13 13q31.1 prothymosin, alpha pseudogene 5 pseudo PTMAP5 prothymosin, alpha pseudogene 5 O - 20121230 -9606 150935 LOC150935 - - - 2 2q37.3 uncharacterized LOC150935 miscRNA - - - - 20121230 -9606 150946 GAREML HRIHFB2063 FAM59B HGNC:27172|Ensembl:ENSG00000157833|Vega:OTTHUMG00000151935 2 2p23.3 GRB2 associated, regulator of MAPK1-like protein-coding GAREML GRB2 associated, regulator of MAPK1-like O family with sequence similarity 59, member B|protein FAM59B 20121230 -9606 150947 PPIL1P1 - - HGNC:20865 2 2p23.3 peptidylprolyl isomerase (cyclophilin)-like 1 pseudogene 1 pseudo PPIL1P1 peptidylprolyl isomerase (cyclophilin)-like 1 pseudogene 1 O - 20121230 -9606 150962 PUS10 - CCDC139|DOBI HGNC:26505|MIM:612787|Ensembl:ENSG00000162927|HPRD:08126|Vega:OTTHUMG00000129423 2 2p16.1 pseudouridylate synthase 10 protein-coding PUS10 pseudouridylate synthase 10 O coiled-coil domain containing 139|coiled-coil domain-containing protein 139|pseudouridine synthase 10|psi55 synthase|putative tRNA pseudouridine synthase Pus10|tRNA pseudouridine 55 synthase|tRNA pseudouridylate synthase|tRNA-uridine isomerase 20121230 -9606 150967 PKI55 - - - 2 2q35 DKFZp434H1419 miscRNA - - - - 20121230 -9606 150992 LINC00309 - NCRNA00309 HGNC:25279 2 2p15 long intergenic non-protein coding RNA 309 miscRNA LINC00309 long intergenic non-protein coding RNA 309 O - 20121230 -9606 151009 LOC151009 - - HPRD:08239 2 2q13 uncharacterized LOC151009 miscRNA - - - - 20121230 -9606 151011 SEPT10 - - HGNC:14349|MIM:611737|Ensembl:ENSG00000186522|HPRD:15325|Vega:OTTHUMG00000154957 2 2q13 septin 10 protein-coding SEPT10 septin 10 O septin-10 20121230 -9606 151050 KANSL1L - C2orf67|MSL1v2 HGNC:26310|MIM:613833|Ensembl:ENSG00000144445|HPRD:08679|Vega:OTTHUMG00000154697 2 2q34 KAT8 regulatory NSL complex subunit 1-like protein-coding KANSL1L KAT8 regulatory NSL complex subunit 1-like O KAT8 regulatory NSL complex subunit 1-like protein|male-specific lethal 1 homolog 20121230 -9606 151056 PLB1 - PLB|PLB/LIP|hPLB HGNC:30041|MIM:610179|Ensembl:ENSG00000163803|HPRD:15141|Vega:OTTHUMG00000152014 2 2p23.2 phospholipase B1 protein-coding PLB1 phospholipase B1 O lysophospholipase|phospholipase A2|phospholipase B|phospholipase B/lipase|phospholipase B1, membrane-associated 20121230 -9606 151112 ZSWIM2 - MEX|ZZZ2 HGNC:30990|Ensembl:ENSG00000163012|HPRD:15902|Vega:OTTHUMG00000154259 2 2q32.1 zinc finger, SWIM-type containing 2 protein-coding ZSWIM2 zinc finger, SWIM-type containing 2 O E3 ubiquitin-protein ligase ZSWIM2|MEKK1-related protein X|ZZ-type zinc finger-containing protein 2|zinc finger SWIM domain-containing protein 2|zinc finger, SWIM domain containing 2 20121230 -9606 151121 LOC151121 - - - 2 2q21.1 uncharacterized LOC151121 unknown - - - - 20121230 -9606 151126 ZNF385B - ZFN533|ZNF533 HGNC:26332|MIM:612344|Ensembl:ENSG00000144331|HPRD:15823|Vega:OTTHUMG00000154559 2 2q31.2-q31.3 zinc finger protein 385B protein-coding ZNF385B zinc finger protein 385B O zinc finger protein 533 20121230 -9606 151171 LOC151171 - - - 2 2q37.3 uncharacterized LOC151171 miscRNA - - - - 20121230 -9606 151174 LOC151174 - - - 2 2q37.3 uncharacterized LOC151174 miscRNA - - - - 20121230 -9606 151176 FAM132B - C1QTNF15|CTRP15 HGNC:26727|Ensembl:ENSG00000178752|Vega:OTTHUMG00000152901 2 2q37.3 family with sequence similarity 132, member B protein-coding FAM132B family with sequence similarity 132, member B O myonectin|protein FAM132B 20121209 -9606 151188 ARL6IP6 - AIP-6|PFAAP1 HGNC:24048|Ensembl:ENSG00000177917|HPRD:12485|Vega:OTTHUMG00000131901 2 2q23.3 ADP-ribosylation-like factor 6 interacting protein 6 protein-coding ARL6IP6 ADP-ribosylation-like factor 6 interacting protein 6 O ADP-ribosylation factor-like protein 6-interacting protein 6|ARL-6-interacting protein 6|phosphonoformate immuno-associated protein 1|regulated by phosphonoformate 20121230 -9606 151194 METTL21A - FAM119A|HCA557b HGNC:30476|Ensembl:ENSG00000144401|HPRD:14090|Vega:OTTHUMG00000132934 2 2q33.3 methyltransferase like 21A protein-coding METTL21A methyltransferase like 21A O family with sequence similarity 119, member A|hepatocellular carcinoma-associated antigen 557b|methyltransferase-like protein 21A 20121230 -9606 151195 CCNYL1 - - HGNC:26868|Ensembl:ENSG00000163249|HPRD:08809|Vega:OTTHUMG00000132946 2 2q33.3 cyclin Y-like 1 protein-coding CCNYL1 cyclin Y-like 1 O cyclin-Y-like protein 1 20121230 -9606 151230 KLHL23 - DITHP HGNC:27506|Ensembl:ENSG00000213160|HPRD:11320|Vega:OTTHUMG00000132213 2 2q31.1 kelch-like 23 (Drosophila) protein-coding KLHL23 kelch-like 23 (Drosophila) O kelch-like protein 23 20121230 -9606 151234 SULT1C2P1 - SULT1C1P HGNC:33545 2 2q12.3 sulfotransferase family, cytosolic, 1C, member 2 pseudogene 1 pseudo SULT1C2P1 sulfotransferase family, cytosolic, 1C, member 2 pseudogene 1 O - 20121230 -9606 151242 PPP1R1C - IPP5 HGNC:14940|MIM:613240|Ensembl:ENSG00000150722|Vega:OTTHUMG00000154326 2 2q31.3 protein phosphatase 1, regulatory (inhibitor) subunit 1C protein-coding PPP1R1C protein phosphatase 1, regulatory (inhibitor) subunit 1C O PP1 inhibitor protein 5|inhibitor-5 of protein phosphatase 1|protein phosphatase 1 regulatory subunit 1A|protein phosphatase 1 regulatory subunit 1C 20121230 -9606 151246 SGOL2 - SGO2|TRIPIN HGNC:30812|MIM:612425|Ensembl:ENSG00000163535|HPRD:11555|Vega:OTTHUMG00000154535 2 2q33.1 shugoshin-like 2 (S. pombe) protein-coding SGOL2 shugoshin-like 2 (S. pombe) O shugoshin-2|shugoshin-like 2 20121230 -9606 151254 ALS2CR11 - - HGNC:14438|Ensembl:ENSG00000155754|HPRD:08687|Vega:OTTHUMG00000132830 2 2q33.1 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 11 protein-coding ALS2CR11 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 11 O amyotrophic lateral sclerosis 2 chromosomal region candidate gene 11 protein 20121230 -9606 151258 SLC38A11 - AVT2 HGNC:26836|Ensembl:ENSG00000169507|HPRD:08267|Vega:OTTHUMG00000132144 2 2q24.3 solute carrier family 38, member 11 protein-coding SLC38A11 solute carrier family 38, member 11 O putative sodium-coupled neutral amino acid transporter 11 20121230 -9606 151276 LOC151276 - - - 2 2q23.2 thioredoxin pseudogene pseudo - - - - 20121230 -9606 151278 CCDC140 - - HGNC:26514|Ensembl:ENSG00000163081|HPRD:08132|Vega:OTTHUMG00000133154 2 2q36.1 coiled-coil domain containing 140 protein-coding CCDC140 coiled-coil domain containing 140 O coiled-coil domain-containing protein 140 20121230 -9606 151295 SLC23A3 hCG_1811885 E2BP3|SVCT3|Yspl1 HGNC:20601|Ensembl:ENSG00000213901|HPRD:15350|Vega:OTTHUMG00000154616 2 2q35 solute carrier family 23 (nucleobase transporters), member 3 protein-coding SLC23A3 solute carrier family 23 (nucleobase transporters), member 3 O E2-binding protein 3|HPC E2-binding protein 3|Na(+)/L-ascorbic acid transporter 3|sodium-dependent vitamin C transporter 3|solute carrier family 23 member 3 20121230 -9606 151300 LINC00608 - - HGNC:27179 2 2q35 long intergenic non-protein coding RNA 608 miscRNA LINC00608 long intergenic non-protein coding RNA 608 O - 20121230 -9606 151306 GPBAR1 - BG37|GPCR19|GPR131|M-BAR|TGR5 HGNC:19680|MIM:610147|Ensembl:ENSG00000179921|HPRD:17050|Vega:OTTHUMG00000155203 2 2q35 G protein-coupled bile acid receptor 1 protein-coding GPBAR1 G protein-coupled bile acid receptor 1 O G-protein coupled bile acid receptor 1|G-protein coupled bile acid receptor BG37|G-protein coupled receptor GPCR19|hBG37|hGPCR19|membrane bile acid receptor|membrane-type receptor for bile acids 20121230 -9606 151313 FAHD2B - - HGNC:25318|Ensembl:ENSG00000144199|HPRD:13198|Vega:OTTHUMG00000130533 2 2q11.2 fumarylacetoacetate hydrolase domain containing 2B protein-coding FAHD2B fumarylacetoacetate hydrolase domain containing 2B O fumarylacetoacetate hydrolase domain-containing protein 2B 20121230 -9606 151325 MYADML - - HGNC:31019|HPRD:14793 2 2p22.3 myeloid-associated differentiation marker-like (pseudogene) pseudo MYADML myeloid-associated differentiation marker-like (pseudogene) O - 20121230 -9606 151354 FAM84A - NSE1|PP11517 HGNC:20743|MIM:611234|Ensembl:ENSG00000162981|HPRD:17647|Vega:OTTHUMG00000119093 2 2p24.3 family with sequence similarity 84, member A protein-coding FAM84A family with sequence similarity 84, member A O neurologic sensory protein 1|neurological/sensory 1|protein FAM84A 20121230 -9606 151393 FAM82A1 BLOCK18 FAM82A|PRO34163|PYST9371|RMD-2|RMD2|RMD4 HGNC:26567|MIM:611872|Ensembl:ENSG00000115841|HPRD:08741|Vega:OTTHUMG00000128487 2 2p22.2 family with sequence similarity 82, member A1 protein-coding FAM82A1 family with sequence similarity 82, member A1 O family with sequence similarity 82, member A|microtubule-associated protein|regulator of microtubule dynamics protein 2 20121230 -9606 151449 GDF7 - BMP12 HGNC:4222|MIM:604651|Ensembl:ENSG00000143869|HPRD:06873|Vega:OTTHUMG00000090781 2 2p24.1 growth differentiation factor 7 protein-coding GDF7 growth differentiation factor 7 O GDF-7|growth/differentiation factor 7 20121230 -9606 151457 LOC151457 - - - 2 2p24.1 developmentally regulated GTP binding protein 1 pseudogene pseudo - - - - 20121230 -9606 151473 SLC16A14 - MCT14 HGNC:26417|Ensembl:ENSG00000163053|HPRD:15347|Vega:OTTHUMG00000133205 2 2q36.3 solute carrier family 16, member 14 (monocarboxylic acid transporter 14) protein-coding SLC16A14 solute carrier family 16, member 14 (monocarboxylic acid transporter 14) O MCT 14|monocarboxylate transporter 14|solute carrier family 16 (monocarboxylic acid transporters), member 14|solute carrier family 16 member 14 20121230 -9606 151475 LOC151475 - - - 2 2q37.1 uncharacterized LOC151475 miscRNA - - - - 20121230 -9606 151477 LINC00471 - C2orf52 HGNC:28668|HPRD:14629 2 2q37.1 long intergenic non-protein coding RNA 471 miscRNA LINC00471 long intergenic non-protein coding RNA 471 O - 20121230 -9606 151484 LOC151484 - - - 2 2q37.1 uncharacterized LOC151484 miscRNA - - - - 20121230 -9606 151507 MSL3P1 - MSL3L2 HGNC:17837 2 2q37.1 male-specific lethal 3 homolog (Drosophila) pseudogene 1 pseudo MSL3P1 male-specific lethal 3 homolog (Drosophila) pseudogene 1 O - 20121230 -9606 151516 ASPRV1 - MUNO|SASP|SASPase|Taps HGNC:26321|MIM:611765|Ensembl:ENSG00000244617|HPRD:08683|Vega:OTTHUMG00000129647 2 2p13.3 aspartic peptidase, retroviral-like 1 protein-coding ASPRV1 aspartic peptidase, retroviral-like 1 O TPA-inducible aspartic proteinase-like protein|retroviral-like aspartic protease 1|skin aspartic protease|skin-specific retroviral-like aspartic protease 20121230 -9606 151525 WDSUB1 - UBOX6|WDSAM1 HGNC:26697|Ensembl:ENSG00000196151|HPRD:08773|Vega:OTTHUMG00000132028 2 2q24.2 WD repeat, sterile alpha motif and U-box domain containing 1 protein-coding WDSUB1 WD repeat, sterile alpha motif and U-box domain containing 1 O 2610014F08Rik|WD repeat and SAM domain containing 1|WD repeat, SAM and U-box domain containing 1|WD repeat, SAM and U-box domain-containing protein 1 20121230 -9606 151531 UPP2 - UDRPASE2|UP2|UPASE2 HGNC:23061|Ensembl:ENSG00000007001|HPRD:15627|Vega:OTTHUMG00000131969 2 2q24.1 uridine phosphorylase 2 protein-coding UPP2 uridine phosphorylase 2 O UPase 2|liver-specific uridine phosphorylase|urdPase 2|uridine phosphorylase-2 20121230 -9606 151534 LBX2-AS1 hCG_1811732 - HGNC:25136|HPRD:14091 2 2p13.1 LBX2 antisense RNA 1 miscRNA LBX2-AS1 LBX2 antisense RNA 1 O - 20121230 -9606 151556 GPR155 - DEP.7|DEPDC3|PGR22 HGNC:22951|Ensembl:ENSG00000163328|HPRD:17066|Vega:OTTHUMG00000132336 2 2q31.1 G protein-coupled receptor 155 protein-coding GPR155 G protein-coupled receptor 155 O G-protein coupled receptor PGR22|integral membrane protein GPR155 20121230 -9606 151579 BZW1P2 - BZW1L1 HGNC:33954 3 3q13.31 basic leucine zipper and W2 domains 1 pseudogene 2 pseudo BZW1P2 basic leucine zipper and W2 domains 1 pseudogene 2 O - 20121230 -9606 151613 TTC14 UNQ5813 DRDL5813|PRO19630 HGNC:24697|Ensembl:ENSG00000163728|HPRD:15579|Vega:OTTHUMG00000157859 3 3q26.33 tetratricopeptide repeat domain 14 protein-coding TTC14 tetratricopeptide repeat domain 14 O TPR repeat protein 14|tetratricopeptide repeat protein 14 20121230 -9606 151636 DTX3L - BBAP HGNC:30323|MIM:613143|Ensembl:ENSG00000163840|HPRD:16843|Vega:OTTHUMG00000159524 3 3q21.1 deltex 3-like (Drosophila) protein-coding DTX3L deltex 3-like (Drosophila) O B-lymphoma- and BAL-associated protein|E3 ubiquitin-protein ligase DTX3L|rhysin 2|rhysin-2|rhysin2 20121230 -9606 151645 PSMC1P1 - PSMC1P|bcm3415 HGNC:30147 3 3p14.1 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 1 pseudo PSMC1P1 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 1 O - 20121230 -9606 151647 FAM19A4 - TAFA-4|TAFA4 HGNC:21591|Ensembl:ENSG00000163377|HPRD:08343|Vega:OTTHUMG00000158744 3 3p14.1 family with sequence similarity 19 (chemokine (C-C motif)-like), member A4 protein-coding FAM19A4 family with sequence similarity 19 (chemokine (C-C motif)-like), member A4 O chemokine-like protein TAFA-4|protein FAM19A4 20121230 -9606 151648 SGOL1 - NY-BR-85|SGO|Sgo1 HGNC:25088|MIM:609168|Ensembl:ENSG00000129810|HPRD:12377|Vega:OTTHUMG00000130479 3 3p24.3 shugoshin-like 1 (S. pombe) protein-coding SGOL1 shugoshin-like 1 (S. pombe) O hSgo1|serologically defined breast cancer antigen NY-BR-85|shugoshin 1AB protein|shugoshin 1CD protein|shugoshin 1EF protein|shugoshin 1GH protein|shugoshin 1KL protein|shugoshin-like 1 20121230 -9606 151649 PP2D1 - C3orf48 HGNC:28406|Ensembl:ENSG00000183977|HPRD:08066|Vega:OTTHUMG00000155393 3 3p24.3 protein phosphatase 2C-like domain containing 1 protein-coding PP2D1 protein phosphatase 2C-like domain containing 1 O protein phosphatase 2C-like domain-containing protein 1 20121230 -9606 151651 EFHB - - HGNC:26330|Ensembl:ENSG00000163576|HPRD:08054|Vega:OTTHUMG00000150505 3 3p24.3 EF-hand domain family, member B protein-coding EFHB EF-hand domain family, member B O EF-hand domain-containing family member B 20121230 -9606 151657 LOC151657 - - - 3 3q13.12 uncharacterized LOC151657 unknown - - - - 20120508 -9606 151658 LINC00635 - - HGNC:27184 3 3q13.12 long intergenic non-protein coding RNA 635 miscRNA LINC00635 long intergenic non-protein coding RNA 635 O - 20121230 -9606 151742 PPM1L - PP2C-epsilon|PP2CE|PPM1-LIKE HGNC:16381|MIM:611931|Ensembl:ENSG00000163590|HPRD:17889|Vega:OTTHUMG00000159048 3 3q26.1 protein phosphatase, Mg2+/Mn2+ dependent, 1L protein-coding PPM1L protein phosphatase, Mg2+/Mn2+ dependent, 1L O PP2C epsilon|Protein phosphatase 2C epsilon isoform|protein phosphatase 1L|protein phosphatase 2C isoform epsilon 20121230 -9606 151760 LOC151760 - - - 3 3q13.13 uncharacterized LOC151760 unknown - - - - 20121230 -9606 151790 WDR49 - - HGNC:26587|Ensembl:ENSG00000174776|HPRD:08160|Vega:OTTHUMG00000158290 3 3q26.1 WD repeat domain 49 protein-coding WDR49 WD repeat domain 49 O WD repeat-containing protein 49 20121230 -9606 151825 KRT18P43 - - HGNC:33413 3 3q26.2 keratin 18 pseudogene 43 pseudo KRT18P43 keratin 18 pseudogene 43 O - 20121230 -9606 151827 LRRC34 - - HGNC:28408|Ensembl:ENSG00000171757|HPRD:14519|Vega:OTTHUMG00000164419 3 3q26.2 leucine rich repeat containing 34 protein-coding LRRC34 leucine rich repeat containing 34 O leucine-rich repeat-containing protein 34 20121230 -9606 151835 CPNE9 - - HGNC:24336|Ensembl:ENSG00000144550|HPRD:17307|Vega:OTTHUMG00000128418 3 3p25.3 copine family member IX protein-coding CPNE9 copine family member IX O copine IX|copine-9|copine-like protein 20121230 -9606 151842 PP1P - - HGNC:28884 3 3p24.3 pyrophosphatase (inorganic) 1 pseudogene pseudo PP1P pyrophosphatase (inorganic) 1 pseudogene O - 20121230 -9606 151871 DPPA2 - CT100|ECAT15-2|PESCRG1 HGNC:19197|MIM:614445|Ensembl:ENSG00000163530|HPRD:13248|Vega:OTTHUMG00000159227 3 3q13.13 developmental pluripotency associated 2 protein-coding DPPA2 developmental pluripotency associated 2 O cancer/testis antigen 100|developmental pluripotency-associated protein 2|embryonic stem cell (ESC) associated transcript 15-2|pluripotent embryonic stem cell-related gene 1 protein 20121230 -9606 151877 MAGI1-IT1 - - HGNC:42436 3 3p14.3 MAGI1 intronic transcript 1 (non-protein coding) unknown MAGI1-IT1 MAGI1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 151887 CCDC80 HBE245 DRO1|SSG1|URB|okuribin HGNC:30649|MIM:608298|Ensembl:ENSG00000091986|HPRD:10508|Vega:OTTHUMG00000159265 3 3q13.2 coiled-coil domain containing 80 protein-coding CCDC80 coiled-coil domain containing 80 O coiled-coil domain-containing protein 80|down-regulated by oncogenes protein 1|nuclear envelope protein okuribin|steroid sensitive gene 1|up-regulated in BRS-3 deficient mouse homolog 20121230 -9606 151888 BTLA - BTLA1|CD272 HGNC:21087|MIM:607925|Ensembl:ENSG00000186265|HPRD:06392|Vega:OTTHUMG00000159255 3 3q13.2 B and T lymphocyte associated protein-coding BTLA B and T lymphocyte associated O B and T lymphocyte attenuator|B- and T-lymphocyte attenuator|B- and T-lymphocyte-associated protein 20121230 -9606 151903 CCDC12 - - HGNC:28332|Ensembl:ENSG00000160799|HPRD:13007|Vega:OTTHUMG00000133513 3 3p21.31 coiled-coil domain containing 12 protein-coding CCDC12 coiled-coil domain containing 12 O coiled-coil domain-containing protein 12 20121230 -9606 151963 MB21D2 - C3orf59 HGNC:30438|Ensembl:ENSG00000180611|HPRD:14092|Vega:OTTHUMG00000155768 3 3q29 Mab-21 domain containing 2 protein-coding MB21D2 Mab-21 domain containing 2 O mab-21 domain-containing protein 2|protein MB21D2 20121230 -9606 151987 PPP4R2 SBBI57 PP4R2 HGNC:18296|MIM:613822|Ensembl:ENSG00000163605|HPRD:11453|Vega:OTTHUMG00000158816 3 3p13 protein phosphatase 4, regulatory subunit 2 protein-coding PPP4R2 protein phosphatase 4, regulatory subunit 2 O serine/threonine-protein phosphatase 4 regulatory subunit 2 20121230 -9606 152002 XXYLT1 PSEC0251 C3orf21 HGNC:26639|MIM:614552|Ensembl:ENSG00000173950|HPRD:08757|Vega:OTTHUMG00000155915 3 3q29 xyloside xylosyltransferase 1 protein-coding XXYLT1 xyloside xylosyltransferase 1 O UDP-xylose:alpha-xyloside alpha-1,3-xylosyltransferase 20121230 -9606 152006 RNF38 RP11-84P7.4 - HGNC:18052|MIM:612488|Ensembl:ENSG00000137075|HPRD:11519|Vega:OTTHUMG00000019905 9 9p13 ring finger protein 38 protein-coding RNF38 ring finger protein 38 O RING finger protein 38 20121230 -9606 152007 GLIPR2 RP11-421H8.5 C9orf19|GAPR-1 HGNC:18007|MIM:607141|Ensembl:ENSG00000122694|HPRD:06187|Vega:OTTHUMG00000019900 9 9p13.3 GLI pathogenesis-related 2 protein-coding GLIPR2 GLI pathogenesis-related 2 O 17kD fetal brain protein|Golgi-associated plant pathogenesis-related protein 1|gliPR 2|glioma pathogenesis-related protein 2|golgi-associated PR-1 protein 20121230 -9606 152015 ROPN1B - - HGNC:31927|Ensembl:ENSG00000114547|HPRD:17985|Vega:OTTHUMG00000162651 3 3q21.2 rhophilin associated tail protein 1B protein-coding ROPN1B rhophilin associated tail protein 1B O AKAP-binding sperm protein ropporin|rhophilin-associated protein 1B|ropporin, rhophilin associated protein 1B|ropporin-1B 20121230 -9606 152024 LINC00691 - - HGNC:44514 3 3p24.2 long intergenic non-protein coding RNA 691 miscRNA LINC00691 long intergenic non-protein coding RNA 691 O - 20121230 -9606 152048 FLJ31715 - - - 3 3p22.1 uncharacterized FLJ31715 unknown - - - - 20120710 -9606 152065 C3orf22 - - HGNC:28534|Ensembl:ENSG00000180697|HPRD:14585|Vega:OTTHUMG00000162731 3 3q21.3 chromosome 3 open reading frame 22 protein-coding C3orf22 chromosome 3 open reading frame 22 O uncharacterized protein C3orf22 20121230 -9606 152078 C3orf55 - - HGNC:25146|Ensembl:ENSG00000174899|Vega:OTTHUMG00000158748 3 3q25.32 chromosome 3 open reading frame 55 protein-coding C3orf55 chromosome 3 open reading frame 55 O putative uncharacterized protein C3orf55 20121230 -9606 152098 ZCWPW2 - ZCW2 HGNC:23574|Ensembl:ENSG00000206559|Vega:OTTHUMG00000155705 3 3p24.1 zinc finger, CW type with PWWP domain 2 protein-coding ZCWPW2 zinc finger, CW type with PWWP domain 2 O zinc finger CW-type PWWP domain protein 2 20121230 -9606 152100 CMC1 - C3orf68 HGNC:28783|Ensembl:ENSG00000187118|HPRD:14698|Vega:OTTHUMG00000155660 3 3p24.1 COX assembly mitochondrial protein 1 homolog (S. cerevisiae) protein-coding CMC1 COX assembly mitochondrial protein 1 homolog (S. cerevisiae) O COX assembly mitochondrial protein homolog|CX9C mitochondrial protein required for full expression of COX 1|cmc1p|mitochondrial metallochaperone-like protein 20121230 -9606 152101 VENTXP4 - VENTX2P4 HGNC:30903 3 3p24.2 VENT homeobox pseudogene 4 pseudo VENTXP4 VENT homeobox pseudogene 4 O - 20121230 -9606 152110 NEK10 - - HGNC:18592|Ensembl:ENSG00000163491|HPRD:08135|Vega:OTTHUMG00000130571 3 3p24.1 NIMA-related kinase 10 protein-coding NEK10 NIMA-related kinase 10 O NIMA (never in mitosis gene a)- related kinase 10|never in mitosis A-related kinase 10|nimA-related protein kinase 10|serine/threonine-protein kinase Nek10 20121230 -9606 152118 C3orf79 - - HGNC:37259|Ensembl:ENSG00000237787|Vega:OTTHUMG00000159629 3 3q25.2 chromosome 3 open reading frame 79 protein-coding C3orf79 chromosome 3 open reading frame 79 O putative uncharacterized protein C3orf79 20121230 -9606 152137 CCDC50 - C3orf6|DFNA44|YMER HGNC:18111|MIM:611051|Ensembl:ENSG00000152492|HPRD:06463|Vega:OTTHUMG00000156177 3 3q28 coiled-coil domain containing 50 protein-coding CCDC50 coiled-coil domain containing 50 O coiled-coil domain-containing protein 50|protein Ymer 20121230 -9606 152138 PYDC2 - POP2|cPOP2 HGNC:33512|Ensembl:ENSG00000253548|Vega:OTTHUMG00000156167 3 3q28 pyrin domain containing 2 protein-coding PYDC2 pyrin domain containing 2 O pyrin domain-containing protein 2|pyrin-only protein 2 20121230 -9606 152185 SPICE1 - CCDC52|SPICE HGNC:25083|MIM:613447|Ensembl:ENSG00000163611|HPRD:11242|Vega:OTTHUMG00000159261 3 3q13.2 spindle and centriole associated protein 1 protein-coding SPICE1 spindle and centriole associated protein 1 O coiled-coil domain containing 52|coiled-coil domain-containing protein 52|spindle and centriole protein|spindle and centriole-associated protein 1 20121230 -9606 152189 CMTM8 - CKLFSF8|CKLFSF8-V2 HGNC:19179|MIM:607891|Ensembl:ENSG00000170293|HPRD:06989|Vega:OTTHUMG00000130753 3 3p22.3 CKLF-like MARVEL transmembrane domain containing 8 protein-coding CMTM8 CKLF-like MARVEL transmembrane domain containing 8 O CKLF-like MARVEL transmembrane domain-containing protein 8|chemokine-like factor super family 8|chemokine-like factor superfamily 8|chemokine-like factor superfamily member 8 20121230 -9606 152195 NUDT16P1 - NUDT16P HGNC:27189|HPRD:14093 3 3q22.1 nudix (nucleoside diphosphate linked moiety X)-type motif 16 pseudogene 1 pseudo NUDT16P1 nudix (nucleoside diphosphate linked moiety X)-type motif 16 pseudogene 1 O - 20121230 -9606 152206 CCDC13 - - HGNC:26358|Ensembl:ENSG00000244607|HPRD:08692|Vega:OTTHUMG00000133046 3 3p22.1 coiled-coil domain containing 13 protein-coding CCDC13 coiled-coil domain containing 13 O coiled-coil domain-containing protein 13 20121230 -9606 152217 LOC152217 - - HPRD:14094 3 3q29 uncharacterized LOC152217 miscRNA - - - - 20121230 -9606 152225 LOC152225 - - - 3 3q12.3 uncharacterized LOC152225 miscRNA - - - - 20121230 -9606 152273 FGD5 - ZFYVE23 HGNC:19117|MIM:614788|Ensembl:ENSG00000154783|HPRD:13322|Vega:OTTHUMG00000155556 3 3p25.1 FYVE, RhoGEF and PH domain containing 5 protein-coding FGD5 FYVE, RhoGEF and PH domain containing 5 O FYVE, RhoGEF and PH domain-containing protein 5|zinc finger FYVE domain-containing protein 23 20121230 -9606 152274 LOC152274 - - - 3 3p25.1 uncharacterized LOC152274 unknown - - - - 20120508 -9606 152286 LOC152286 - - - 3 3p25.2 uncharacterized LOC152286 protein-coding - - - - 20111113 -9606 152302 CIDECP - CICE HGNC:24230 3 3p25.3 cell death-inducing DFFA-like effector c pseudogene pseudo CIDECP cell death-inducing DFFA-like effector c pseudogene O - 20121230 -9606 152330 CNTN4 - AXCAM|BIG-2 HGNC:2174|MIM:607280|Ensembl:ENSG00000144619|HPRD:16239|Vega:OTTHUMG00000119031 3 3p26.3 contactin 4 protein-coding CNTN4 contactin 4 O axonal-associated cell adhesion molecule|brain-derived immunoglobulin superfamily protein 2|contactin-4|neural cell adhesion protein BIG-2 20121230 -9606 152404 IGSF11 - BT-IgSF|CT119|CXADRL1|Igsf13|VSIG3 HGNC:16669|MIM:608351|Ensembl:ENSG00000144847|HPRD:16321|Vega:OTTHUMG00000159387 3 3q13.32 immunoglobulin superfamily, member 11 protein-coding IGSF11 immunoglobulin superfamily, member 11 O CXADR like 1|V-set and immunoglobulin domain containing 3|V-set and immunoglobulin domain-containing protein 3|brain and testis-specific immunoglobin superfamily protein|brain and testis-specific immunoglobulin superfamily protein|cancer/testis antigen 119|immunoglobulin superfamily member 11 20121230 -9606 152405 C3orf30 - - HGNC:26553|Ensembl:ENSG00000163424|HPRD:08146|Vega:OTTHUMG00000159349 3 3q13.32 chromosome 3 open reading frame 30 protein-coding C3orf30 chromosome 3 open reading frame 30 O uncharacterized protein C3orf30 20121230 -9606 152485 ZNF827 - - HGNC:27193|Ensembl:ENSG00000151612|HPRD:14095|Vega:OTTHUMG00000161362 4 4q31.22 zinc finger protein 827 protein-coding ZNF827 zinc finger protein 827 O - 20121230 -9606 152503 SH3D19 - EBP|EVE1|Kryn|SH3P19 HGNC:30418|MIM:608674|Ensembl:ENSG00000109686|HPRD:16364|Vega:OTTHUMG00000154051 4 4q31.3 SH3 domain containing 19 protein-coding SH3D19 SH3 domain containing 19 O ADAM-binding protein Eve-1|EEN-binding protein|SH3 domain protein D19|SH3 domain-containing protein 19 20121230 -9606 152518 NFXL1 - HOZFP|URCC5 HGNC:18726|Ensembl:ENSG00000170448|HPRD:11025|Vega:OTTHUMG00000128621 4 4p12 nuclear transcription factor, X-box binding-like 1 protein-coding NFXL1 nuclear transcription factor, X-box binding-like 1 O NF-X1-type zinc finger protein NFXL1|ovarian zinc finger protein|up-regulated in colon cancer 5 20121230 -9606 152519 NIPAL1 - NPAL1 HGNC:27194|Ensembl:ENSG00000163293|HPRD:14096|Vega:OTTHUMG00000128622 4 4p12 NIPA-like domain containing 1 protein-coding NIPAL1 NIPA-like domain containing 1 O NIPA-like protein 1|magnesium transporter NIPA3|non-imprinted in Prader-Willi/Angelman syndrome region protein 3 20121230 -9606 152559 PAQR3 - RKTG HGNC:30130|MIM:614577|Ensembl:ENSG00000163291|HPRD:17819|Vega:OTTHUMG00000161026 4 4q21.21 progestin and adipoQ receptor family member III protein-coding PAQR3 progestin and adipoQ receptor family member III O Raf kinase trapping to Golgi|progestin and adipoQ receptor family member 3 20121230 -9606 152573 SHISA3 - hShisa3 HGNC:25159|Ensembl:ENSG00000178343|Vega:OTTHUMG00000161043 4 4p13 shisa homolog 3 (Xenopus laevis) protein-coding SHISA3 shisa homolog 3 (Xenopus laevis) O protein shisa-3 homolog 20121230 -9606 152578 LOC152578 - - - 4 4q12 uncharacterized LOC152578 miscRNA - - - - 20121230 -9606 152579 SCFD2 - STXBP1L1 HGNC:30676|Ensembl:ENSG00000184178|HPRD:15300|Vega:OTTHUMG00000160588 4 4q12 sec1 family domain containing 2 protein-coding SCFD2 sec1 family domain containing 2 O sec1 family domain-containing protein 2|syntaxin binding protein 1-like 1|syntaxin-binding protein 1-like 1 20121230 -9606 152586 LOC152586 - - MIM:610310|Ensembl:ENSG00000205301|HPRD:18736|Vega:OTTHUMG00000161376 4 4q31.1 glycosyltransferase 54 domain-containing protein protein-coding - - - - 20121230 -9606 152594 LOC152594 - - - 4 4q28.3 NIN1/RPN12 binding protein 1 pseudogene pseudo - - - - 20121230 -9606 152641 WWC2-AS2 - C4orf38 HGNC:26390|HPRD:08082 4 4q35.1 WWC2 antisense RNA 2 miscRNA WWC2-AS2 WWC2 antisense RNA 2 O - 20121230 -9606 152663 RPL7AP27 - RPL7A_11_540 HGNC:36806 4 4q35.2 ribosomal protein L7a pseudogene 27 pseudo RPL7AP27 ribosomal protein L7a pseudogene 27 O - 20121230 -9606 152667 FAM192BP - FAM192B|rcNIP30 HGNC:37194 4 4q31.3 family with sequence similarity 192, member B pseudogene pseudo FAM192BP family with sequence similarity 192, member B, pseudogene O - 20121230 -9606 152687 ZNF595 - - HGNC:27196|HPRD:15868 4 4p16.3 zinc finger protein 595 protein-coding ZNF595 zinc finger protein 595 O - 20121230 -9606 152709 ARL4P2 - - HGNC:32379 4 4p14 ADP-ribosylation factor-like 4 pseudogene 2 pseudo ARL4P2 ADP-ribosylation factor-like 4 pseudogene 2 O - 20121230 -9606 152742 LOC152742 - - - 4 4p15.33 uncharacterized LOC152742 miscRNA - - - - 20121230 -9606 152756 FAM218A - C4orf39 HGNC:26466|Ensembl:ENSG00000250486|HPRD:08714|Vega:OTTHUMG00000161252 4 4q32.3 family with sequence similarity 218, member A protein-coding FAM218A family with sequence similarity 218, member A O protein FAM218A|uncharacterized protein C4orf39 20121230 -9606 152789 JAKMIP1 - Gababrbp|JAMIP1|MARLIN1 HGNC:26460|MIM:611195|Ensembl:ENSG00000152969|HPRD:11292|Vega:OTTHUMG00000125491 4 4p16.1 janus kinase and microtubule interacting protein 1 protein-coding JAKMIP1 janus kinase and microtubule interacting protein 1 O GABA-B receptor-binding protein|Jak and microtubule interacting protein 1|janus kinase and microtubule-interacting protein 1|marlin-1|multiple alpha-helices and RNA-linker protein 1|multiple coiled-coil GABABR1-binding protein 20121230 -9606 152815 THAP6 - - HGNC:23189|MIM:612535|Ensembl:ENSG00000174796|HPRD:15499|Vega:OTTHUMG00000130108 4 4q21.1 THAP domain containing 6 protein-coding THAP6 THAP domain containing 6 O THAP domain-containing protein 6 20121230 -9606 152816 C4orf26 - - HGNC:26300|MIM:614829|Ensembl:ENSG00000174792|HPRD:08040|Vega:OTTHUMG00000130104 4 4q21.1 chromosome 4 open reading frame 26 protein-coding C4orf26 chromosome 4 open reading frame 26 O uncharacterized protein C4orf26 20121230 -9606 152831 KLB - BKL HGNC:15527|MIM:611135|Ensembl:ENSG00000134962|HPRD:14097|Vega:OTTHUMG00000128577 4 4p14 klotho beta protein-coding KLB klotho beta O beta-klotho|betaKlotho|klotho beta like|klotho beta-like protein 20121230 -9606 152845 LOC152845 - - - 4 4q21.23 pleiomorphic adenoma gene-like 2 pseudogene pseudo - - - - 20121230 -9606 152877 FAM53A - DNTNP HGNC:31860|Ensembl:ENSG00000174137|HPRD:12900|Vega:OTTHUMG00000159855 4 4p16.3 family with sequence similarity 53, member A protein-coding FAM53A family with sequence similarity 53, member A O dorsal neural-tube nuclear protein|protein FAM53A 20121230 -9606 152905 RTN3P1 - NSPLII|RTN3PS HGNC:19212 4 4q31.21 reticulon 3 pseudogene 1 pseudo RTN3P1 reticulon 3 pseudogene 1 O - 20121230 -9606 152926 PPM1K - BDP|PP2Ckappa|PP2Cm|PTMP|UG0882E07 HGNC:25415|MIM:611065|Ensembl:ENSG00000163644|HPRD:15167|Vega:OTTHUMG00000130952 4 4q22.1 protein phosphatase, Mg2+/Mn2+ dependent, 1K protein-coding PPM1K protein phosphatase, Mg2+/Mn2+ dependent, 1K O PP2C domain-containing protein phosphatase 1K|PP2C-kappa|PP2C-type mitochondrial phosphoprotein phosphatase|branched-chain alpha-ketoacid dehydrogenase phosphatase|protein phosphatase 1K, mitochondrial|protein phosphatase 2C kappa 20121230 -9606 152940 C4orf45 - - HGNC:26342|Ensembl:ENSG00000164123|HPRD:08058|Vega:OTTHUMG00000161988 4 4q32.1 chromosome 4 open reading frame 45 protein-coding C4orf45 chromosome 4 open reading frame 45 O uncharacterized protein C4orf45 20121230 -9606 152956 FLJ12425 - - - 4 4q22.3 uncharacterized protein FLJ12425 protein-coding - - - - 20111025 -9606 152992 TRMT44 - C4orf23|METTL19|TRM44 HGNC:26653|MIM:614309|Ensembl:ENSG00000155275|HPRD:08760|Vega:OTTHUMG00000160935 4 4p16.1 tRNA methyltransferase 44 homolog (S. cerevisiae) protein-coding TRMT44 tRNA methyltransferase 44 homolog (S. cerevisiae) O methyltransferase like 19|methyltransferase-like protein 19|probable tRNA (uracil-O(2)-)-methyltransferase 20121230 -9606 153020 RASGEF1B - GPIG4 HGNC:24881|MIM:614532|Ensembl:ENSG00000138670|HPRD:17955|Vega:OTTHUMG00000160890 4 4q21.21 RasGEF domain family, member 1B protein-coding RASGEF1B RasGEF domain family, member 1B O GPI gamma-4|GPI-gamma 4|ras-GEF domain-containing family member 1B 20121230 -9606 153090 DAB2IP RP11-298A17.1 AF9Q34|AIP1|DIP1/2 HGNC:17294|MIM:609205|Ensembl:ENSG00000136848|HPRD:09903|Vega:OTTHUMG00000020595 9 9q33.1-q33.3 DAB2 interacting protein protein-coding DAB2IP DAB2 interacting protein O ASK-interacting protein 1|ASK1-interacting protein 1|DAB2 interaction protein|DAB2-interacting protein|DOC-2/DAB2 interactive protein|disabled homolog 2-interacting protein|nGAP-like protein 20121230 -9606 153129 SLC38A9 - - HGNC:26907|Ensembl:ENSG00000177058|HPRD:08817|Vega:OTTHUMG00000131189 5 5q11.2 solute carrier family 38, member 9 protein-coding SLC38A9 solute carrier family 38, member 9 O putative sodium-coupled neutral amino acid transporter 9 20121230 -9606 153163 MGC32805 - - - 5 5q23.2 uncharacterized LOC153163 miscRNA - - - - 20121230 -9606 153201 SLC36A2 - PAT2|TRAMD1 HGNC:18762|MIM:608331|Ensembl:ENSG00000186335|HPRD:12215|Vega:OTTHUMG00000130129 5 5q33.1 solute carrier family 36 (proton/amino acid symporter), member 2 protein-coding SLC36A2 solute carrier family 36 (proton/amino acid symporter), member 2 O proton-coupled amino acid transporter 2|tramdorin-1 20121230 -9606 153218 SPINK13 - HBVDNAPTP1|HESPINTOR|LiESP6|SPINK5L3 HGNC:27200|Ensembl:ENSG00000214510|Vega:OTTHUMG00000163426 5 5q32 serine peptidase inhibitor, Kazal type 13 (putative) protein-coding SPINK13 serine peptidase inhibitor, Kazal type 13 (putative) O hepatitis B virus DNA polymerase transactivated human serine protease inhibitor|hepatitis B virus DNA polymerase transactivated serine protease inhibitor|serine protease inhibitor Kazal-type 13|serine protease inhibitor Kazal-type 5-like 3 20121230 -9606 153222 CREBRF - C5orf41|LRF HGNC:24050|Ensembl:ENSG00000164463|HPRD:17308|Vega:OTTHUMG00000163322 5 5q35.1 CREB3 regulatory factor protein-coding CREBRF CREB3 regulatory factor O UPF0474 protein C5orf41|adult retina protein|luman recruitment factor|luman-recruiting factor|luman/CREB3 recruitment factor 20121230 -9606 153241 CEP120 - CCDC100 HGNC:26690|MIM:613446|Ensembl:ENSG00000168944|HPRD:08769|Vega:OTTHUMG00000128922 5 5q23.2 centrosomal protein 120kDa protein-coding CEP120 centrosomal protein 120kDa O centrosomal protein of 120 kDa|coiled-coil domain containing 100|coiled-coil domain-containing protein 100 20121230 -9606 153328 SLC25A48 - HDMCP HGNC:30451|Ensembl:ENSG00000145832|HPRD:14098|Vega:OTTHUMG00000157007 5 5q31.1 solute carrier family 25, member 48 protein-coding SLC25A48 solute carrier family 25, member 48 O HCC-down-regulated mitochondrial carrier protein|solute carrier family 25 member 48 20121230 -9606 153339 TMEM167A - TMEM167 HGNC:28330|Ensembl:ENSG00000174695|HPRD:14490|Vega:OTTHUMG00000162570 5 5q14.2 transmembrane protein 167A protein-coding TMEM167A transmembrane protein 167A O protein kish-A|transmembrane protein 167 20121230 -9606 153364 MBLAC2 - - HGNC:33711|Ensembl:ENSG00000176055|Ensembl:ENSG00000259131|HPRD:14099|Vega:OTTHUMG00000131327 5 5q14.3 metallo-beta-lactamase domain containing 2 protein-coding MBLAC2 metallo-beta-lactamase domain containing 2 O metallo-beta-lactamase domain-containing protein 2 20121230 -9606 153396 TMEM161B UNQ679/PRO1313 FLB3342|PRO1313 HGNC:28483|Ensembl:ENSG00000164180|HPRD:14555|Vega:OTTHUMG00000131323 5 5q14.3 transmembrane protein 161B protein-coding TMEM161B transmembrane protein 161B O - 20121230 -9606 153443 SRFBP1 - BUD22|P49|Rlb1|STRAP|p49/STRAP HGNC:26333|MIM:610479|Ensembl:ENSG00000151304|HPRD:08685|Vega:OTTHUMG00000162970 5 5q23.1 serum response factor binding protein 1 protein-coding SRFBP1 serum response factor binding protein 1 O BUD22 homolog|SRF-dependent transcription regulation associated protein|SRF-dependent transcription regulation-associated protein|serum response factor-binding protein 1 20121230 -9606 153469 JAKMIP2-AS1 - - HGNC:27203 5 5q32 JAKMIP2 antisense RNA 1 miscRNA JAKMIP2-AS1 JAKMIP2 antisense RNA 1 O - 20121230 -9606 153478 PLEKHG4B - - HGNC:29399|HPRD:13900 5 5p15.33 pleckstrin homology domain containing, family G (with RhoGef domain) member 4B protein-coding PLEKHG4B pleckstrin homology domain containing, family G (with RhoGef domain) member 4B O PH domain-containing family G member 4B|pleckstrin homology domain-containing family G member 4B 20121230 -9606 153527 ZMAT2 - Ptg-12|Snu23|hSNU23 HGNC:26433|Ensembl:ENSG00000146007|HPRD:08094|Vega:OTTHUMG00000129503 5 5q31.3 zinc finger, matrin-type 2 protein-coding ZMAT2 zinc finger, matrin-type 2 O zinc finger matrin-type protein 2|zinc finger, matrin type 2 20121230 -9606 153546 LOC153546 - - - 5 5p13.3 uncharacterized LOC153546 unknown - - - - 20120508 -9606 153562 MARVELD2 - DFNB49|MARVD2|MRVLDC2|Tric HGNC:26401|MIM:610572|Ensembl:ENSG00000152939|HPRD:11293|Vega:OTTHUMG00000162512 5 5q13.2 MARVEL domain containing 2 protein-coding MARVELD2 MARVEL domain containing 2 O MARVEL (membrane-associating) domain containing 2|MARVEL domain-containing protein 2|tricellulin 20121230 -9606 153571 C5orf38 - CEI|IRX2NB HGNC:24226|MIM:610522|Ensembl:ENSG00000186493|HPRD:16706|Vega:OTTHUMG00000161741 5 5p15.33 chromosome 5 open reading frame 38 protein-coding C5orf38 chromosome 5 open reading frame 38 O IRX2 neighbor|coordinated expression to IRX2|coordinated expression to IRXA2 homeobox|coordinated expression to IRXA2 protein|protein CEI 20121230 -9606 153572 IRX2 - IRXA2 HGNC:14359|MIM:606198|Ensembl:ENSG00000170561|HPRD:09368|Vega:OTTHUMG00000090377 5 5p15.33 iroquois homeobox 2 protein-coding IRX2 iroquois homeobox 2 O homeodomain protein IRXA2|iroquois homeobox protein 2|iroquois-class homeodomain protein IRX-2 20121230 -9606 153577 LOC153577 - - - 5 5q35.3 uncharacterized LOC153577 unknown - - - - 20120508 -9606 153579 BTNL9 UNQ1900/PRO4346 BTN3|VDLS1900 HGNC:24176|Ensembl:ENSG00000165810|HPRD:12550|Vega:OTTHUMG00000133152 5 5q35.3 butyrophilin-like 9 protein-coding BTNL9 butyrophilin-like 9 O butyrophilin 3|butyrophilin-like protein 9 20121230 -9606 153642 ARSK UNQ630/PRO1246 TSULF HGNC:25239|MIM:610011|Ensembl:ENSG00000164291|HPRD:13183|Vega:OTTHUMG00000121166 5 5q15 arylsulfatase family, member K protein-coding ARSK arylsulfatase family, member K O ASK|arylsulfatase K|telethon sulfatase 20121230 -9606 153643 FAM81B - - HGNC:26335|Ensembl:ENSG00000153347|HPRD:08686|Vega:OTTHUMG00000162837 5 5q15 family with sequence similarity 81, member B protein-coding FAM81B family with sequence similarity 81, member B O protein FAM81B 20121230 -9606 153657 TTC23L - MC25-1 HGNC:26355|Ensembl:ENSG00000205838|HPRD:08691|Vega:OTTHUMG00000162020 5 5p13.2 tetratricopeptide repeat domain 23-like protein-coding TTC23L tetratricopeptide repeat domain 23-like O tetratricopeptide repeat protein 23-like 20121230 -9606 153682 LOC153682 - - - 5 5p13.1 uncharacterized LOC153682 protein-coding - - - - 20111113 -9606 153684 LOC153684 - - HPRD:14101 5 5p12 uncharacterized LOC153684 miscRNA - - - - 20121230 -9606 153733 CCDC112 - MBC1 HGNC:28599|Ensembl:ENSG00000164221|HPRD:11346|Vega:OTTHUMG00000128894 5 5q22.3 coiled-coil domain containing 112 protein-coding CCDC112 coiled-coil domain containing 112 O coiled-coil domain-containing protein 112|mutated in bladder cancer 1|mutated in bladder cancer protein 1 20121230 -9606 153743 PPP1R2P3 - - HGNC:16318 5 5q33.3 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 3 pseudo PPP1R2P3 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 3 O - 20121230 -9606 153745 FAM71B HSD51 - HGNC:28397|Ensembl:ENSG00000170613|HPRD:14516|Vega:OTTHUMG00000130246 5 5q33.3 family with sequence similarity 71, member B protein-coding FAM71B family with sequence similarity 71, member B O protein FAM71B 20121230 -9606 153768 PRELID2 - - HGNC:28306|Ensembl:ENSG00000186314|HPRD:14479|Vega:OTTHUMG00000163384 5 5q32 PRELI domain containing 2 protein-coding PRELID2 PRELI domain containing 2 O PRELI domain-containing protein 2 20121230 -9606 153769 SH3RF2 - HEPP1|POSHER|PPP1R39|RNF158 HGNC:26299|MIM:613377|Ensembl:ENSG00000156463|HPRD:10229|Vega:OTTHUMG00000129685 5 5q32 SH3 domain containing ring finger 2 protein-coding SH3RF2 SH3 domain containing ring finger 2 O POSH-eliminating RING protein|RING finger protein 158|SH3 domain-containing RING finger protein 2|heart protein phosphatase 1-binding protein|protein phosphatase 1 regulatory subunit 39|protein phosphatase 1, regulatory subunit 39|putative E3 ubiquitin-protein ligase SH3RF2 20121230 -9606 153770 PLAC8L1 - - HGNC:31746|Ensembl:ENSG00000173261|HPRD:18737|Vega:OTTHUMG00000163418 5 5q32 PLAC8-like 1 protein-coding PLAC8L1 PLAC8-like 1 O PLAC8-like protein 1 20121230 -9606 153811 LOC153811 - - - 5 5q35.3 uncharacterized LOC153811 unknown - - - - 20120508 -9606 153830 RNF145 - - HGNC:20853|Ensembl:ENSG00000145860|HPRD:08113|Vega:OTTHUMG00000130306 5 5q33.3 ring finger protein 145 protein-coding RNF145 ring finger protein 145 O RING finger protein 145 20121230 -9606 153842 SHFM1P1 - DSS1P1|SHFM1P HGNC:24454 5 5q14.1 split hand/foot malformation (ectrodactyly) type 1 pseudogene 1 pseudo SHFM1P1 split hand/foot malformation (ectrodactyly) type 1 pseudogene 1 O - 20121230 -9606 153893 LOC153893 - - - 6 6q16.3 DCN1, defective in cullin neddylation 1, domain containing 1 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 153910 LOC153910 - - - 6 6q24.2 uncharacterized LOC153910 miscRNA - - - - 20121230 -9606 153918 ZC2HC1B RP3-468K18.4 C6orf94|FAM164B|dJ468K18.5 HGNC:21174|Ensembl:ENSG00000118491|HPRD:10178 6 6q24.2 zinc finger, C2HC-type containing 1B protein-coding ZC2HC1B zinc finger, C2HC-type containing 1B O family with sequence similarity 164, member B|protein FAM164B|zinc finger C2HC domain-containing protein 1B 20121230 -9606 153932 SRP72P2 - dJ274L14.2 HGNC:31096 6 6q25.3 signal recognition particle 72kDa pseudogene 2 pseudo SRP72P2 signal recognition particle 72kDa pseudogene 2 O - 20121230 -9606 154007 SNRNP48 RP3-336K20__B.1 C6orf151|dJ336K20B.1|dJ512B11.2 HGNC:21368|Ensembl:ENSG00000168566|HPRD:12858|Vega:OTTHUMG00000014213 6 6p24.3 small nuclear ribonucleoprotein 48kDa (U11/U12) protein-coding SNRNP48 small nuclear ribonucleoprotein 48kDa (U11/U12) O U11/U12 small nuclear ribonucleoprotein 48 kDa protein|U11/U12 snRNP 48 kDa protein|U11/U12 snRNP 48K|U11/U12-48K 20121230 -9606 154043 CNKSR3 RP11-486M3.1 MAGI1 HGNC:23034|Ensembl:ENSG00000153721|HPRD:14349|Vega:OTTHUMG00000015873 6 6q25.2 CNKSR family member 3 protein-coding CNKSR3 CNKSR family member 3 O CNK homolog protein 3|CNK3|connector enhancer of KSR 3|connector enhancer of kinase suppressor of ras 3|maguin-like protein|membrane associated guanylate kinase interacting protein-like 1|membrane associated guanylate kinase, WW and PDZ domain containing 1|membrane-associated guanylate kinase-interacting protein-like 1 20121230 -9606 154064 RAET1L - ULBP6 HGNC:16798|MIM:611047|Ensembl:ENSG00000155918|HPRD:17949|Vega:OTTHUMG00000015809 6 6q25.1 retinoic acid early transcript 1L protein-coding RAET1L retinoic acid early transcript 1L O UL16 binding protein 6|retinoic acid early transcript 1L protein 20121230 -9606 154075 SAMD3 RP11-73O6.2 - HGNC:21574|Ensembl:ENSG00000164483|HPRD:11530|Vega:OTTHUMG00000015556 6 6q23.1 sterile alpha motif domain containing 3 protein-coding SAMD3 sterile alpha motif domain containing 3 O SAM domain-containing protein 3|sterile alpha motif domain-containing protein 3 20121230 -9606 154089 MGC34034 RP4-662A9.2 - - 6 6q23.2 uncharacterized protein MGC34034 miscRNA - - - - 20121230 -9606 154091 SLC2A12 - GLUT12|GLUT8 HGNC:18067|MIM:610372|Ensembl:ENSG00000146411|HPRD:11572|Vega:OTTHUMG00000015611 6 6q23.2 solute carrier family 2 (facilitated glucose transporter), member 12 protein-coding SLC2A12 solute carrier family 2 (facilitated glucose transporter), member 12 O GLUT-12|glucose transporter type 12|solute carrier family 2, facilitated glucose transporter member 12 20121230 -9606 154092 LOC154092 - - - 6 6q23.2 uncharacterized LOC154092 miscRNA - - - - 20121230 -9606 154141 MBOAT1 RP1-130G2.2 1|LPEAT1|LPLAT|LPLAT 1|LPSAT|OACT1|dJ434O11.1 HGNC:21579|MIM:611732|Ensembl:ENSG00000172197|Vega:OTTHUMG00000014334 6 6p22.3 membrane bound O-acyltransferase domain containing 1 protein-coding MBOAT1 membrane bound O-acyltransferase domain containing 1 O 1-acylglycerophosphoserine O-acyltransferase|O-acyltransferase (membrane bound) domain containing 1|O-acyltransferase domain-containing protein 1|lyso-PS acyltransferase|lysophosphatidylethanolamine acyltransferase 1|lysophosphatidylserine acyltransferase|lysophospholipid acyltransferase 1|membrane-bound O-acyltransferase domain-containing protein 1 20121230 -9606 154150 HDGFL1 - PWWP1|dJ309H15.1 HGNC:21095|Ensembl:ENSG00000112273|HPRD:17935|Vega:OTTHUMG00000016206 6 6p22.3 hepatoma derived growth factor-like 1 protein-coding HDGFL1 hepatoma derived growth factor-like 1 O HDGF (hepatoma-derived growth factor) like|PWWP domain containing 1|PWWP domain-containing protein 1|hepatoma-derived growth factor-like protein 1 20121230 -9606 154197 PNLDC1 RP1-195P10.1 - HGNC:21185|Ensembl:ENSG00000146453|HPRD:17868|Vega:OTTHUMG00000015941 6 6q25.3 poly(A)-specific ribonuclease (PARN)-like domain containing 1 protein-coding PNLDC1 poly(A)-specific ribonuclease (PARN)-like domain containing 1 O poly(A)-specific ribonuclease PARN-like domain-containing protein 1 20121230 -9606 154214 RNF217 RP1-84N20.1 C6orf172|IBRDC1|dJ84N20.1 HGNC:21487|Ensembl:ENSG00000146373|HPRD:17125|Vega:OTTHUMG00000015504 6 6q22.31 ring finger protein 217 protein-coding RNF217 ring finger protein 217 O IBR domain containing 1|IBR domain-containing protein 1|probable E3 ubiquitin-protein ligase RNF217 20121230 -9606 154215 NKAIN2 RP1-305A19.1 FAM77B|NKAIP2|TCBA|TCBA1 HGNC:16443|MIM:609758|Ensembl:ENSG00000188580|HPRD:18168|Vega:OTTHUMG00000015500 6 6q21 Na+/K+ transporting ATPase interacting 2 protein-coding NKAIN2 Na+/K+ transporting ATPase interacting 2 O Na(+)/K(+)-transporting ATPase subunit beta-1-interacting protein 2|T-cell lymphoma breakpoint-associated target protein 1|sodium/potassium-transporting ATPase subunit beta-1-interacting protein 2 20121230 -9606 154288 KHDC3L - C6orf221|ECAT1|HYDM2 HGNC:33699|MIM:611687|Ensembl:ENSG00000203908|HPRD:18560|Vega:OTTHUMG00000015024 6 6q13 KH domain containing 3-like, subcortical maternal complex member protein-coding KHDC3L KH domain containing 3-like, subcortical maternal complex member O ES cell-associated transcript 1 protein|KHDC3-like protein 20121230 -9606 154313 C6orf165 - dJ382I10.1 HGNC:21405|Ensembl:ENSG00000213204|HPRD:12863|Vega:OTTHUMG00000015173 6 6q15 chromosome 6 open reading frame 165 protein-coding C6orf165 chromosome 6 open reading frame 165 O UPF0704 protein C6orf165 20121230 -9606 154386 C6orf195 - RP11-145H9.2|bA145H9.2 HGNC:21600|Ensembl:ENSG00000164385|HPRD:12870|Vega:OTTHUMG00000014122 6 6p25.2 chromosome 6 open reading frame 195 protein-coding C6orf195 chromosome 6 open reading frame 195 O uncharacterized protein C6orf195 20121230 -9606 154442 BVES-AS1 RP11-99L11.2 C6orf112|bA99L11.2 HGNC:21223 6 6q21 BVES antisense RNA 1 miscRNA BVES-AS1 BVES antisense RNA 1 O - 20121230 -9606 154449 LOC154449 - - - 6 6q27 uncharacterized LOC154449 miscRNA - - - - 20121230 -9606 154467 CCDC167 RP1-153P14.2 C6orf129|HSPC265 HGNC:21239|Ensembl:ENSG00000198937|HPRD:18561|Vega:OTTHUMG00000014625 6 6p21.2 coiled-coil domain containing 167 protein-coding CCDC167 coiled-coil domain containing 167 O coiled-coil domain-containing protein 167|transmembrane and coiled-coil domain-containing protein C6orf129 20121230 -9606 154661 RUNDC3B - RPIB9|RPIP9 HGNC:30286|Ensembl:ENSG00000105784|HPRD:15274|Vega:OTTHUMG00000131035 7 7q21.12 RUN domain containing 3B protein-coding RUNDC3B RUN domain containing 3B O RPIP-9|RUN domain-containing protein 3B|Rap2 binding protein 9|Rap2-binding protein 9|Rap2-interacting protein 9 20121230 -9606 154664 ABCA13 - - HGNC:14638|MIM:607807|Ensembl:ENSG00000179869|HPRD:07422|Vega:OTTHUMG00000155840 7 7p12.3 ATP-binding cassette, sub-family A (ABC1), member 13 protein-coding ABCA13 ATP-binding cassette, sub-family A (ABC1), member 13 O ATP binding cassette transporter A13|ATP-binding cassette sub-family A member 13 20121230 -9606 154743 C7orf60 - - HGNC:26475|Ensembl:ENSG00000164603|HPRD:08108|Vega:OTTHUMG00000155233 7 7q31.1 chromosome 7 open reading frame 60 protein-coding C7orf60 chromosome 7 open reading frame 60 O UPF0532 protein C7orf60 20121230 -9606 154754 PRSS3P2 - T6|TRY6 HGNC:43788 7 7q34 protease, serine, 3 pseudogene 2 pseudo PRSS3P2 protease, serine, 3 pseudogene 2 O - 20121230 -9606 154761 LOC154761 - - - 7 7q35 family with sequence similarity 115, member C pseudogene pseudo - - - - 20121230 -9606 154790 CLEC2L hCG_16425 - HGNC:21969|Ensembl:ENSG00000236279|Vega:OTTHUMG00000164900 7 7q34 C-type lectin domain family 2, member L protein-coding CLEC2L C-type lectin domain family 2, member L O C-type lectin domain family 2 member L 20121230 -9606 154791 C7orf55 HSPC268 FMC1 HGNC:26946|Ensembl:ENSG00000164898|HPRD:13714|Vega:OTTHUMG00000151719 7 7q34 chromosome 7 open reading frame 55 protein-coding C7orf55 chromosome 7 open reading frame 55 O UPF0562 protein C7orf55|formation of mitochondrial complexes 1 homolog 20121230 -9606 154796 AMOT - - HGNC:17810|MIM:300410|Ensembl:ENSG00000126016|HPRD:02327|Vega:OTTHUMG00000022216 X Xq23 angiomotin protein-coding AMOT angiomotin O angiomotin p130 isoform|angiomotin p80 isoform 20121230 -9606 154807 VKORC1L1 - - HGNC:21492|MIM:608838|Ensembl:ENSG00000196715|HPRD:12312|Vega:OTTHUMG00000129449 7 7q11.21 vitamin K epoxide reductase complex, subunit 1-like 1 protein-coding VKORC1L1 vitamin K epoxide reductase complex, subunit 1-like 1 O VKORC1-like protein 1|vitamin K epoxide reductase complex subunit 1-like protein 1 20121230 -9606 154810 AMOTL1 - JEAP HGNC:17811|MIM:614657|Ensembl:ENSG00000166025|HPRD:12451|Vega:OTTHUMG00000167828 11 11q14.3 angiomotin like 1 protein-coding AMOTL1 angiomotin like 1 O angiomotin-like protein 1|junction-enriched and associated protein 20121230 -9606 154822 LINC00689 tcag7.1307 - HGNC:27217 7 7q36.3 long intergenic non-protein coding RNA 689 miscRNA LINC00689 long intergenic non-protein coding RNA 689 O - 20121230 -9606 154860 FEZF1-AS1 - - HGNC:41001 7 7q31.32 FEZF1 antisense RNA 1 miscRNA FEZF1-AS1 FEZF1 antisense RNA 1 O - 20121230 -9606 154865 IQUB - - HGNC:21995|Ensembl:ENSG00000164675|HPRD:08194|Vega:OTTHUMG00000157347 7 7q31.32 IQ motif and ubiquitin domain containing protein-coding IQUB IQ motif and ubiquitin domain containing O IQ and ubiquitin-like domain-containing protein 20121230 -9606 154872 LOC154872 - - HPRD:18562 7 7q31.33 uncharacterized protein LOC154872 protein-coding - - - - 20121230 -9606 154881 KCTD7 - CLN14|EPM3 HGNC:21957|MIM:611725|Ensembl:ENSG00000243335|HPRD:13770|Vega:OTTHUMG00000129543 7 7q11.21 potassium channel tetramerisation domain containing 7 protein-coding KCTD7 potassium channel tetramerisation domain containing 7 O BTB/POZ domain-containing protein KCTD7 20121230 -9606 154907 C7orf66 - - HGNC:33712|Ensembl:ENSG00000205174|HPRD:18563|Vega:OTTHUMG00000154867 7 7q31.1 chromosome 7 open reading frame 66 protein-coding C7orf66 chromosome 7 open reading frame 66 O Putative uncharacterized protein LOC154907|uncharacterized protein C7orf66 20121230 -9606 154937 LOC154937 - - - 7 7p11.2 protein phosphatase 2, regulatory subunit B', epsilon isoform pseudogene pseudo - - - - 20121230 -9606 155006 TMEM213 - - HGNC:27220|Ensembl:ENSG00000214128|Vega:OTTHUMG00000157182 7 7q34 transmembrane protein 213 protein-coding TMEM213 transmembrane protein 213 O - 20121230 -9606 155019 ST13P7 - FAM10A7|FAM10A7P HGNC:18558 7 7q33 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 7 pseudo ST13P7 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 7 O - 20121230 -9606 155038 GIMAP8 - IAN-9|IAN6|IANT|hIAN6 HGNC:21792|Ensembl:ENSG00000171115|HPRD:13577|Vega:OTTHUMG00000158327 7 7q36.1 GTPase, IMAP family member 8 protein-coding GIMAP8 GTPase, IMAP family member 8 O GTPase IMAP family member 8|human immune associated nucleotide 6|immune associated nucleotide|immune-associated nucleotide-binding protein 9|protein IanT 20121230 -9606 155051 CRYGN - - HGNC:20458|MIM:609603|Ensembl:ENSG00000127377|HPRD:16761|Vega:OTTHUMG00000157353 7 7q36.1 crystallin, gamma N protein-coding CRYGN crystallin, gamma N O gamma-N-crystallin|gamma-crystallin N|gammaN-crystallin 20121230 -9606 155054 ZNF425 - - HGNC:20690|Ensembl:ENSG00000204947|HPRD:11715|Vega:OTTHUMG00000158971 7 7q36.1 zinc finger protein 425 protein-coding ZNF425 zinc finger protein 425 O - 20121230 -9606 155060 LOC155060 - - HPRD:17309 7 7q36.1 AI894139 pseudogene pseudo - - - - 20121230 -9606 155061 ZNF746 - PARIS HGNC:21948|MIM:613914|Ensembl:ENSG00000181220|HPRD:08099|Vega:OTTHUMG00000158972 7 7q36.1 zinc finger protein 746 protein-coding ZNF746 zinc finger protein 746 O parkin-interacting substrate|parkin-interacting sustrate 20121230 -9606 155066 ATP6V0E2 - ATP6V0E2L|C7orf32 HGNC:21723|MIM:611019|Ensembl:ENSG00000171130|HPRD:12920|Vega:OTTHUMG00000158094 7 7q36.1 ATPase, H+ transporting V0 subunit e2 protein-coding ATP6V0E2 ATPase, H+ transporting V0 subunit e2 O H+-ATPase e2 subunit|V-ATPase subunit e 2|V-type proton ATPase subunit e 2|lysosomal 9 kDa H(+)-transporting ATPase V0 subunit e2|vacuolar proton pump subunit e 2|vacuolar proton-ATPase subunit 20121230 -9606 155100 CCT8L1P - CCT8L1 HGNC:32153|HPRD:18738 7 7q36.1 chaperonin containing TCP1, subunit 8 (theta)-like 1, pseudogene pseudo CCT8L1P chaperonin containing TCP1, subunit 8 (theta)-like 1, pseudogene O - 20121230 -9606 155184 SLC2A7 RP5-963K15.3 GLUT7 HGNC:13445|MIM:610371|Ensembl:ENSG00000197241|HPRD:15365|Vega:OTTHUMG00000057499 1 1p36.2 solute carrier family 2 (facilitated glucose transporter), member 7 protein-coding SLC2A7 solute carrier family 2 (facilitated glucose transporter), member 7 O GLUT-7|glucose transporter type 7|intestinal facilitative glucose transporter 7|solute carrier family 2, facilitated glucose transporter member 7 20121230 -9606 155185 AMZ1 - - HGNC:22231|Ensembl:ENSG00000174945|HPRD:17232|Vega:OTTHUMG00000152111 7 7p22.3 archaelysin family metallopeptidase 1 protein-coding AMZ1 archaelysin family metallopeptidase 1 O archaemetzincin-1|archeobacterial metalloproteinase-like protein 1|metalloproteinase-like protein 20121230 -9606 155340 OR7E136P - OR7E139P|OR7E147P HGNC:19557 7 7p22.1 olfactory receptor, family 7, subfamily E, member 136 pseudogene pseudo OR7E136P olfactory receptor, family 7, subfamily E, member 136 pseudogene O - 20121230 -9606 155368 WBSCR27 - - HGNC:19068|MIM:612546|Ensembl:ENSG00000165171|HPRD:15661|Vega:OTTHUMG00000130033 7 7q11.23 Williams Beuren syndrome chromosome region 27 protein-coding WBSCR27 Williams Beuren syndrome chromosome region 27 O Williams-Beuren syndrome chromosomal region 27 protein 20121230 -9606 155370 SBDSP1 - SBDSP HGNC:21646 7 7q11.23 Shwachman-Bodian-Diamond syndrome pseudogene 1 pseudo SBDSP1 Shwachman-Bodian-Diamond syndrome pseudogene 1 O - 20121230 -9606 155382 VPS37D - WBSCR24 HGNC:18287|MIM:610039|Ensembl:ENSG00000176428|Vega:OTTHUMG00000157227 7 7q11.23 vacuolar protein sorting 37 homolog D (S. cerevisiae) protein-coding VPS37D vacuolar protein sorting 37 homolog D (S. cerevisiae) O ESCRT-I complex subunit VPS37D|Williams Beuren syndrome chromosome region 24|Williams-Beuren syndrome critical region protein 24|vacuolar protein sorting 37D|vacuolar protein sorting-associated protein 37D|williams-Beuren syndrome chromosomal region 24 protein|williams-Beuren syndrome region protein 24 20121230 -9606 155400 NSUN5P1 - NSUN5B|WBSCR20B HGNC:19146|HPRD:15656 7 7q11.23 NOP2/Sun domain family, member 5 pseudogene 1 pseudo NSUN5P1 NOP2/Sun domain family, member 5 pseudogene 1 O - 20121230 -9606 155435 RBM33 hCG_20114 PRR8 HGNC:27223|Ensembl:ENSG00000184863|HPRD:17310|Vega:OTTHUMG00000150260 7 7q36.3 RNA binding motif protein 33 protein-coding RBM33 RNA binding motif protein 33 O RNA-binding motif protein 33|RNA-binding protein 33|hypothetical protein MGC20460|proline rich 8|proline-rich protein 8 20121230 -9606 155465 AGR3 UNQ642/PRO1272 AG3|BCMP11|HAG3|PDIA18|hAG-3 HGNC:24167|MIM:609482|Ensembl:ENSG00000173467|HPRD:16545|Vega:OTTHUMG00000128411 7 7p21.1 anterior gradient 3 homolog (Xenopus laevis) protein-coding AGR3 anterior gradient 3 homolog (Xenopus laevis) O AG-3|anterior gradient homolog 3|anterior gradient protein 3 homolog|breast cancer membrane protein 11|protein disulfide isomerase family A, member 18 20121230 -9606 157206 RPL21P11 - RPL21_50_1399 HGNC:19800 14 14q32.11 ribosomal protein L21 pseudogene 11 pseudo RPL21P11 ribosomal protein L21 pseudogene 11 O - 20121230 -9606 157247 MGC27345 - - - 7 7q32.1 uncharacterized protein MGC27345 miscRNA - - - - 20121230 -9606 157273 LOC157273 - - - 8 8p23.1 uncharacterized LOC157273 miscRNA - - - - 20121230 -9606 157285 SGK223 - PRAGMIN Ensembl:ENSG00000182319|Vega:OTTHUMG00000163709 8 8p23.1 homolog of rat pragma of Rnd2 protein-coding - - - sugen kinase 223|tyrosine-protein kinase SgK223 20121230 -9606 157310 PEBP4 UNQ1933/PRO4408 CORK-1|CORK1|GWTM1933|PEBP-4|PRO4408|hPEBP4 HGNC:28319|MIM:612473|Ensembl:ENSG00000134020|HPRD:11424|Vega:OTTHUMG00000163749 8 8p21.3 phosphatidylethanolamine-binding protein 4 protein-coding PEBP4 phosphatidylethanolamine-binding protein 4 O cousin-of-RKIP 1 protein|protein cousin-of-RKIP 1 20121230 -9606 157313 CDCA2 - Repo-Man HGNC:14623|Ensembl:ENSG00000184661|HPRD:13014|Vega:OTTHUMG00000099429 8 8p21.2 cell division cycle associated 2 protein-coding CDCA2 cell division cycle associated 2 O cell division cycle-associated protein 2|protein phosphatase 1 [gamma] (PPP1R3A) binding protein Repo-Man|recruits PP1 onto mitotic chromatin at anaphase protein 20121230 -9606 157317 CYCSP55 - CYCSL1|HCP15|HS11|bA513I15.3 HGNC:21252 6 6p21.31 cytochrome c, somatic pseudogene 55 pseudo CYCSP55 cytochrome c, somatic pseudogene 55 O - 20121230 -9606 157376 FER1L6-AS2 - C8orf78 HGNC:26534|HPRD:08138 8 8q24.13 FER1L6 antisense RNA 2 unknown FER1L6-AS2 FER1L6 antisense RNA 2 O - 20121021 -9606 157378 TMEM65 - - HGNC:25203|Ensembl:ENSG00000164983|HPRD:14102|Vega:OTTHUMG00000165021 8 8q24.13 transmembrane protein 65 protein-coding TMEM65 transmembrane protein 65 O - 20121230 -9606 157381 LOC157381 - - - 8 8q24.13 uncharacterized LOC157381 miscRNA - - - - 20121230 -9606 157489 SDAD1P1 - - HGNC:31403 8 8p21.2 SDA1 domain containing 1 pseudogene 1 pseudo SDAD1P1 SDA1 domain containing 1 pseudogene 1 O - 20121230 -9606 157503 LOC157503 - - - 8 8q11.23 uncharacterized LOC157503 protein-coding - - - - 20120508 -9606 157506 RDH10 UNQ9375/PRO34191 SDR16C4 HGNC:19975|MIM:607599|Ensembl:ENSG00000121039|HPRD:07605|Vega:OTTHUMG00000164492 8 8q21.11 retinol dehydrogenase 10 (all-trans) protein-coding RDH10 retinol dehydrogenase 10 (all-trans) O retinol dehydrogenase 10|short chain dehydrogenase/reductase family 16C, member 4 20121230 -9606 157530 ST13P6 - FAM10A6|FAM10A6P HGNC:18557 8 8q24.22 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 6 pseudo ST13P6 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 6 O - 20121230 -9606 157556 C8orf56 - - HGNC:28595 8 8q22.3 chromosome 8 open reading frame 56 miscRNA C8orf56 chromosome 8 open reading frame 56 O - 20121230 -9606 157562 LOC157562 - - - 8 8q22.3 uncharacterized LOC157562 protein-coding - - - - 20120508 -9606 157567 ANKRD46 - ANK-S|GENX-115279 HGNC:27229|Ensembl:ENSG00000186106|HPRD:14103|Vega:OTTHUMG00000164724 8 8q22.2 ankyrin repeat domain 46 protein-coding ANKRD46 ankyrin repeat domain 46 O ankyrin repeat domain-containing protein 46|ankyrin repeat small protein 20121230 -9606 157570 ESCO2 - 2410004I17Rik|EFO2|RBS HGNC:27230|MIM:609353|Ensembl:ENSG00000171320|HPRD:18564|Vega:OTTHUMG00000163901 8 8p21.1 establishment of cohesion 1 homolog 2 (S. cerevisiae) protein-coding ESCO2 establishment of cohesion 1 homolog 2 (S. cerevisiae) O ECO1 homolog 2|N-acetyltransferase ESCO2 20121230 -9606 157574 FBXO16 - FBX16 HGNC:13618|MIM:608519|Ensembl:ENSG00000214050|HPRD:16347|Vega:OTTHUMG00000102147 8 8p21.1 F-box protein 16 protein-coding FBXO16 F-box protein 16 O F-box only protein 16 20121230 -9606 157627 LINC00599 - Rncr3 HGNC:27231 8 8p23.1 long intergenic non-protein coding RNA 599 miscRNA LINC00599 long intergenic non-protein coding RNA 599 O - 20121230 -9606 157638 FAM84B - BCMP101|NSE2 HGNC:24166|MIM:609483|Ensembl:ENSG00000168672|HPRD:11403|Vega:OTTHUMG00000165034 8 8q24.21 family with sequence similarity 84, member B protein-coding FAM84B family with sequence similarity 84, member B O breast cancer membrane protein 101|breast cancer membrane-associated protein 101|neurological/sensory 2|protein FAM84B 20121230 -9606 157657 C8orf37 - CORD16|RP64|smalltalk HGNC:27232|MIM:614477|Ensembl:ENSG00000156172|HPRD:14104|Vega:OTTHUMG00000164663 8 8q22.1 chromosome 8 open reading frame 37 protein-coding C8orf37 chromosome 8 open reading frame 37 O protein C8orf37 20121230 -9606 157667 LOC157667 - - - 8 8q22.1 myosin, light chain 12A, regulatory, non-sarcomeric pseudogene pseudo - - - - 20121230 -9606 157680 VPS13B - CHS1|COH1 HGNC:2183|MIM:607817|Ensembl:ENSG00000132549|HPRD:06379|Vega:OTTHUMG00000140383 8 8q22.2 vacuolar protein sorting 13 homolog B (yeast) protein-coding VPS13B vacuolar protein sorting 13 homolog B (yeast) O cohen syndrome protein 1|vacuolar protein sorting-associated protein 13B 20121230 -9606 157693 FAM87A - - HGNC:27233 8 8p23.3 family with sequence similarity 87, member A unknown FAM87A family with sequence similarity 87, member A O - 20121230 -9606 157695 C8orf42 - Inm01|Tdrp HGNC:26951|Ensembl:ENSG00000180190|HPRD:13740|Vega:OTTHUMG00000163593 8 8p23.3 chromosome 8 open reading frame 42 protein-coding C8orf42 chromosome 8 open reading frame 42 O testis development-related protein|uncharacterized protein C8orf42 20121230 -9606 157697 ERICH1 HSPC319 - HGNC:27234|Ensembl:ENSG00000104714|HPRD:14105|Vega:OTTHUMG00000129163 8 8p23.3 glutamate-rich 1 protein-coding ERICH1 glutamate-rich 1 O glutamate-rich protein 1 20121230 -9606 157708 SEC11B - SEC11L2|SPCS4B HGNC:31884 8 8q11.23 SEC11 homolog B (S. cerevisiae) pseudo SEC11B SEC11 homolog B (S. cerevisiae) O - 20121230 -9606 157713 LYPLA1P3 - - HGNC:44007 6 6q13 lysophospholipase I pseudogene 3 pseudo LYPLA1P3 lysophospholipase I pseudogene 3 O - 20121230 -9606 157724 SLC7A13 - AGT-1|AGT1|XAT2 HGNC:23092|Ensembl:ENSG00000164893|HPRD:15397|Vega:OTTHUMG00000163663 8 8q21.3 solute carrier family 7 (anionic amino acid transporter), member 13 protein-coding SLC7A13 solute carrier family 7 (anionic amino acid transporter), member 13 O X-amino acid transporter 2|amino acid transporter XAT2|sodium-independent aspartate/glutamate transporter 1|solute carrier family 7 member 13|solute carrier family 7, (cationic amino acid transporter, y+ system) member 13 20121230 -9606 157739 TDH - SDR14E1P HGNC:15547|HPRD:10264 8 8p23.1 L-threonine dehydrogenase pseudo TDH L-threonine dehydrogenase O - 20121230 -9606 157740 LOC157740 - - - 8 8p23.1 uncharacterized protein C8orf9 unknown - - - - 20120710 -9606 157753 TMEM74 - NET36 HGNC:26409|MIM:613935|Ensembl:ENSG00000164841|HPRD:08702|Vega:OTTHUMG00000164881 8 8q23.1 transmembrane protein 74 protein-coding TMEM74 transmembrane protein 74 O - 20121230 -9606 157769 FAM91A1 - - HGNC:26306|Ensembl:ENSG00000176853|HPRD:08676|Vega:OTTHUMG00000133021 8 8q24.13 family with sequence similarity 91, member A1 protein-coding FAM91A1 family with sequence similarity 91, member A1 O protein FAM91A1|skeletal muscle cells re-entry induced 20121230 -9606 157773 C8orf48 - - HGNC:26345|Ensembl:ENSG00000164743|HPRD:16922|Vega:OTTHUMG00000165482 8 8p22 chromosome 8 open reading frame 48 protein-coding C8orf48 chromosome 8 open reading frame 48 O uncharacterized protein C8orf48 20121230 -9606 157777 MCMDC2 - C8orf45 HGNC:26368|Ensembl:ENSG00000178460|HPRD:08072|Vega:OTTHUMG00000157068 8 8q13.1 minichromosome maintenance domain containing 2 protein-coding MCMDC2 minichromosome maintenance domain containing 2 O MCM domain-containing protein 2|MCM domain-containing protein C8orf45 20121230 -9606 157807 CLVS1 - CRALBPL|RLBP1L1 HGNC:23139|MIM:611292|Ensembl:ENSG00000177182|HPRD:14581|Vega:OTTHUMG00000164334 8 8q12.3 clavesin 1 protein-coding CLVS1 clavesin 1 O clavesin-1|retinaldehyde binding protein 1-like 1|retinaldehyde-binding protein 1-like 1 20121230 -9606 157848 NKX6-3 - NKX6.3 HGNC:26328|MIM:610772|Ensembl:ENSG00000165066|HPRD:08053|Vega:OTTHUMG00000164083 8 8p11.21 NK6 homeobox 3 protein-coding NKX6-3 NK6 homeobox 3 O NK6 transcription factor related, locus 3|homeobox protein Nkx-6.3 20121230 -9606 157855 KCNU1 - KCNMC1|KCa5|KCa5.1|Kcnma3|Slo3 HGNC:18867|Ensembl:ENSG00000215262|Vega:OTTHUMG00000163981 8 8p11.23 potassium channel, subfamily U, member 1 protein-coding KCNU1 potassium channel, subfamily U, member 1 O Calcium-activated potassium channel subunit alpha-3|Calcium-activated potassium channel, subfamily M subunit alpha-3|Slowpoke homolog 3|potassium channel subfamily U member 1 20121230 -9606 157860 LOC157860 - - - 8 8p11.23 uncharacterized LOC157860 protein-coding - - - - 20120508 -9606 157869 SBSPON - C8orf84|RPESP HGNC:30362|Ensembl:ENSG00000164764|HPRD:15271|Vega:OTTHUMG00000157144 8 8q21.11 somatomedin B and thrombospondin, type 1 domain containing protein-coding SBSPON somatomedin B and thrombospondin, type 1 domain containing O RPE spondin|RPE-spondin|somatomedin-B and thrombospondin type-1 domain-containing protein 20121230 -9606 157916 IL6RP1 - IL6RL1 HGNC:6020 9 9q22.2 interleukin 6 receptor pseudogene 1 pseudo IL6RP1 interleukin 6 receptor pseudogene 1 O - 20121230 -9606 157922 CAMSAP1 RP11-100C15.2 PRO2405|bA100C15.1 HGNC:19946|MIM:613774|Ensembl:ENSG00000130559|HPRD:13001|Vega:OTTHUMG00000020918 9 9q34.3 calmodulin regulated spectrin-associated protein 1 protein-coding CAMSAP1 calmodulin regulated spectrin-associated protein 1 O bA100C15.1 (novel protein)|calmodulin-regulated spectrin-associated protein 1 20121230 -9606 157927 C9orf62 RP11-555H7.1 - HGNC:28581|Ensembl:ENSG00000178243|Vega:OTTHUMG00000020900 9 9q34.3 chromosome 9 open reading frame 62 protein-coding C9orf62 chromosome 9 open reading frame 62 O putative uncharacterized protein C9orf62 20121230 -9606 157931 LOC157931 - - - 9 9q34.3 uncharacterized LOC157931 protein-coding - - - - 20120508 -9606 157956 CDC20P1 - CDC20P HGNC:29487|Vega:OTTHUMG00000020142 9 9q21.33 cell division cycle 20 homolog (S. cerevisiae) pseudogene 1 pseudo CDC20P1 cell division cycle 20 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 157983 C9orf66 - RP11-59O6.1 HGNC:26436|Ensembl:ENSG00000183784|HPRD:12971|Vega:OTTHUMG00000021017 9 9p24.3 chromosome 9 open reading frame 66 protein-coding C9orf66 chromosome 9 open reading frame 66 O uncharacterized protein C9orf66 20121230 -9606 158011 IFNA12P - IFNP12|IFNWP12 HGNC:5443 9 9p21.3 interferon, alpha 12, pseudogene pseudo IFNA12P interferon, alpha 12, pseudogene O - 20121230 -9606 158035 LINC00032 - C9orf14|NCRNA00032 HGNC:16506 9 9p21 long intergenic non-protein coding RNA 32 miscRNA LINC00032 long intergenic non-protein coding RNA 32 O - 20121230 -9606 158038 LINGO2 UNQ9234/PRO31993 LERN3|LRRN6C HGNC:21207|MIM:609793|Ensembl:ENSG00000174482|HPRD:08715|Vega:OTTHUMG00000019721 9 9p21.2 leucine rich repeat and Ig domain containing 2 protein-coding LINGO2 leucine rich repeat and Ig domain containing 2 O leucine rich repeat neuronal 6C|leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 2|leucine-rich repeat neuronal protein 3|leucine-rich repeat neuronal protein 6C 20121230 -9606 158046 NXNL2 RP13-60M5.1 C9orf121|RDCVF2 HGNC:30482|Ensembl:ENSG00000130045|HPRD:12938|Vega:OTTHUMG00000020170 9 9q22.1 nucleoredoxin-like 2 protein-coding NXNL2 nucleoredoxin-like 2 O nucleoredoxin-like protein 2 20121230 -9606 158055 C9orf163 RP11-413M3.11-001 RP11-413M3.11 HGNC:26718|Ensembl:ENSG00000196366|HPRD:08211|Vega:OTTHUMG00000131725 9 9q34.3 chromosome 9 open reading frame 163 protein-coding C9orf163 chromosome 9 open reading frame 163 O uncharacterized protein C9orf163 20121230 -9606 158056 MAMDC4 RP11-216L13.11-002 AEGP HGNC:24083|Ensembl:ENSG00000177943|HPRD:12434|Vega:OTTHUMG00000020951 9 9q34.3 MAM domain containing 4 protein-coding MAMDC4 MAM domain containing 4 O MAM domain-containing protein 4|apical early endosomal glycoprotein|apical endosomal glycoprotein 20121230 -9606 158062 LCN6 RP11-216L13.2 LCN5|UNQ643|hLcn5 HGNC:17337|MIM:609379|Ensembl:ENSG00000267206|HPRD:17268|Vega:OTTHUMG00000020941 9 9q34.3 lipocalin 6 protein-coding LCN6 lipocalin 6 O epididymal-specific lipocalin LCN6|epididymal-specific lipocalin-6|lipocalin 5|lipocalin-5 20121230 -9606 158067 AK8 - C9orf98|DDX31|RP11-143F18.1 HGNC:26526|Ensembl:ENSG00000165695|HPRD:12991|Vega:OTTHUMG00000021009 9 9q34.13 adenylate kinase 8 protein-coding AK8 adenylate kinase 8 O putative adenylate kinase-like protein C9orf98 20121230 -9606 158078 EEF1A1P5 - EEF1AL3 HGNC:3200 9 9q34.13 eukaryotic translation elongation factor 1 alpha 1 pseudogene 5 pseudo EEF1A1P5 eukaryotic translation elongation factor 1 alpha 1 pseudogene 5 O - 20121230 -9606 158104 RPS10P3 - RPS10_10_994 HGNC:23684 9 9q22.1 ribosomal protein S10 pseudogene 3 pseudo RPS10P3 ribosomal protein S10 pseudogene 3 O - 20121230 -9606 158131 OR1Q1 - HSTPCR106|OR1Q2|OR1Q3|OR9-25|OR9-A|OST226|OST226OR9-A|TPCR106 HGNC:8223|Ensembl:ENSG00000165202|HPRD:14926|Vega:OTTHUMG00000020615 9 9q33.2 olfactory receptor, family 1, subfamily Q, member 1 protein-coding OR1Q1 olfactory receptor, family 1, subfamily Q, member 1 O olfactory receptor 1Q1|olfactory receptor 1Q2|olfactory receptor 1Q3|olfactory receptor 9-A|olfactory receptor OR9-25|olfactory receptor TPCR106|olfactory receptor, family 1, subfamily Q, member 2|olfactory receptor, family 1, subfamily Q, member 3 20121230 -9606 158135 TTLL11 RP11-429D3.1 C9orf20|bA244O19.1 HGNC:18113|Ensembl:ENSG00000175764|HPRD:10047|Vega:OTTHUMG00000020597 9 9q33.2 tubulin tyrosine ligase-like family, member 11 protein-coding TTLL11 tubulin tyrosine ligase-like family, member 11 O tubulin polyglutamylase TTLL11|tubulin--tyrosine ligase-like protein 11 20121230 -9606 158158 RASEF - RAB45 HGNC:26464|MIM:611344|Ensembl:ENSG00000165105|HPRD:08337|Vega:OTTHUMG00000020100 9 9q21.32 RAS and EF-hand domain containing protein-coding RASEF RAS and EF-hand domain containing O ras and EF-hand domain-containing protein|ras-related protein Rab-45 20121230 -9606 158160 HSD17B7P2 RP11-291L22.1 HSD17B7|Hsd17b_2|bA291L22.1 HGNC:28120|HPRD:14106 10 10p11.1 hydroxysteroid (17-beta) dehydrogenase 7 pseudogene 2 pseudo HSD17B7P2 hydroxysteroid (17-beta) dehydrogenase 7 pseudogene 2 O - 20121230 -9606 158172 SERPINH1P1 - SERPINHP1|bA571F15.6|pshsp47 HGNC:19917 9 9p13.3 serpin peptidase inhibitor, clade H1, pseudogene 1 pseudo SERPINH1P1 serpin peptidase inhibitor, clade H1, pseudogene 1 O - 20121230 -9606 158219 TTC39B RP11-224J22.1 C9orf52 HGNC:23704|MIM:613574|Ensembl:ENSG00000155158|HPRD:10801|Vega:OTTHUMG00000019581 9 9p22.3 tetratricopeptide repeat domain 39B protein-coding TTC39B tetratricopeptide repeat domain 39B O TPR repeat protein 39B|tetratricopeptide repeat protein 39B 20121230 -9606 158222 LDHAP4 - LDHAL4 HGNC:6539 9 9p22.3 lactate dehydrogenase A pseudogene 4 pseudo LDHAP4 lactate dehydrogenase A pseudogene 4 O - 20121230 -9606 158228 FAM201A - C9orf122 HGNC:27239 9 9p13.1 family with sequence similarity 201, member A miscRNA FAM201A family with sequence similarity 201, member A O - 20121230 -9606 158234 TRMT10B - RG9MTD3|RP11-3J10.9|bA3J10.9 HGNC:26454|Ensembl:ENSG00000165275|HPRD:15242|Vega:OTTHUMG00000019933 9 9p13.2 tRNA methyltransferase 10 homolog B (S. cerevisiae) protein-coding TRMT10B tRNA methyltransferase 10 homolog B (S. cerevisiae) O RNA (guanine-9-) methyltransferase domain containing 3|RNA (guanine-9-)-methyltransferase domain-containing protein 3|tRNA methyltransferase 10 homolog B 20121230 -9606 158248 TTC16 RP11-56D16.6 - HGNC:26536|Ensembl:ENSG00000167094|HPRD:15581|Vega:OTTHUMG00000020711 9 9q34.11 tetratricopeptide repeat domain 16 protein-coding TTC16 tetratricopeptide repeat domain 16 O TPR repeat protein 16|tetratricopeptide repeat protein 16 20121230 -9606 158257 MIRLET7DHG - - HGNC:37186 9 9q22.32 MIRLET7D host gene (non-protein coding) miscRNA MIRLET7DHG MIRLET7D host gene (non-protein coding) O - 20121230 -9606 158263 FLJ31713 - - - 9 9q32 uncharacterized protein FLJ31713 unknown - - - - 20120511 -9606 158293 FAM120AOS RP11-165J3.1 C9orf10OS HGNC:23389|Ensembl:ENSG00000188938|HPRD:12931|Vega:OTTHUMG00000020251 9 9q22.31 family with sequence similarity 120A opposite strand protein-coding FAM120AOS family with sequence similarity 120A opposite strand O putative FAM120A opposite strand protein 20121230 -9606 158295 MGC24103 - - - 9 9p22.3 uncharacterized MGC24103 unknown - - - - 20121230 -9606 158297 FAM154A RP11-220B22.3 C9orf138 HGNC:28566|Ensembl:ENSG00000155875|HPRD:16676|Vega:OTTHUMG00000019609 9 9p22.1 family with sequence similarity 154, member A protein-coding FAM154A family with sequence similarity 154, member A O 4930500O09Rik|protein FAM154A 20121230 -9606 158314 LINC00475 - C9orf44 HGNC:23569 9 9q22.31 long intergenic non-protein coding RNA 475 miscRNA LINC00475 long intergenic non-protein coding RNA 475 O - 20121230 -9606 158326 FREM1 RP11-265B7.2 BNAR|C9orf143|C9orf145|C9orf154|MOTA|TILRR|TRIGNO2 HGNC:23399|MIM:608944|Ensembl:ENSG00000164946|HPRD:09865|Vega:OTTHUMG00000019575 9 9p22.3 FRAS1 related extracellular matrix 1 protein-coding FREM1 FRAS1 related extracellular matrix 1 O FRAS1-related extracellular matrix protein 1|extracellular matrix protein QBRICK 20121230 -9606 158345 RPL4P5 - RPL4_3_960 HGNC:35699 9 9p24.1 ribosomal protein L4 pseudogene 5 pseudo RPL4P5 ribosomal protein L4 pseudogene 5 O - 20121230 -9606 158358 KIAA2026 - - HGNC:23378|Ensembl:ENSG00000183354|HPRD:18566|Vega:OTTHUMG00000019507 9 9p24.1 KIAA2026 protein-coding KIAA2026 KIAA2026 O Putative uncharacterized protein ENSP00000382813|uncharacterized protein KIAA2026 20121230 -9606 158373 YBX1P10 - BA327L3.4 HGNC:42432 9 9p13.1 Y box binding protein 1 pseudogene 10 pseudo YBX1P10 Y box binding protein 1 pseudogene 10 O - 20121230 -9606 158376 LOC158376 - - - 9 9p13.3 uncharacterized LOC158376 miscRNA - - - - 20121230 -9606 158381 ATP8B5P - FetA HGNC:27245|HPRD:18739 9 9p13.3 ATPase, class I, type 8B, member 5, pseudogene pseudo ATP8B5P ATPase, class I, type 8B, member 5, pseudogene O - 20121230 -9606 158383 YWHAZP6 - - HGNC:30849 9 9p13.3 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 6 pseudo YWHAZP6 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 6 O - 20121230 -9606 158399 ZNF483 RP11-16L21.9 ZKSCAN16 HGNC:23384|Ensembl:ENSG00000173258|HPRD:18345|Vega:OTTHUMG00000020490 9 9q31.3 zinc finger protein 483 protein-coding ZNF483 zinc finger protein 483 O zinc finger protein HIT-10|zinc finger protein with KRAB and SCAN domains 16 20121230 -9606 158401 C9orf84 RP11-16L21.4 - HGNC:26535|Ensembl:ENSG00000165181|HPRD:12982|Vega:OTTHUMG00000020495 9 9q31.3 chromosome 9 open reading frame 84 protein-coding C9orf84 chromosome 9 open reading frame 84 O uncharacterized protein C9orf84 20121230 -9606 158402 LOC158402 - - - 9 9q32 uncharacterized LOC158402 miscRNA - - - - 20120722 -9606 158405 KIAA1958 RP11-276E15.5 - HGNC:23427|Ensembl:ENSG00000165185|HPRD:11173|Vega:OTTHUMG00000020508 9 9q32 KIAA1958 protein-coding KIAA1958 KIAA1958 O uncharacterized protein KIAA1958 20121230 -9606 158427 TSTD2 RP11-244N9.5 C9orf97 HGNC:30087|Ensembl:ENSG00000136925|HPRD:16679|Vega:OTTHUMG00000020328 9 9q22.33 thiosulfate sulfurtransferase (rhodanese)-like domain containing 2 protein-coding TSTD2 thiosulfate sulfurtransferase (rhodanese)-like domain containing 2 O PP4189|rhodanese domain-containing protein 2|thiosulfate sulfurtransferase/rhodanese-like domain-containing protein 2 20121230 -9606 158431 ZNF782 - - HGNC:33110|Ensembl:ENSG00000196597|HPRD:16914|Vega:OTTHUMG00000020310 9 9q22.33 zinc finger protein 782 protein-coding ZNF782 zinc finger protein 782 O - 20121230 -9606 158434 LOC158434 - - - 9 9q22.33 uncharacterized LOC158434 protein-coding - - - uncharacterized protein LOC158434 20121230 -9606 158435 LOC158435 - - - 9 9q22.32 uncharacterized LOC158435 miscRNA - - - uncharacterized protein LOC158435 20121230 -9606 158441 PSMA7P - - HGNC:20631 9 9q22.32 proteasome (prosome, macropain) subunit, alpha type, 7 pseudogene pseudo PSMA7P proteasome (prosome, macropain) subunit, alpha type, 7 pseudogene O - 20121230 -9606 158452 ASS1P3 - ASSP3 HGNC:766 9 9q21.2 argininosuccinate synthetase 1 pseudogene 3 pseudo ASS1P3 argininosuccinate synthetase 1 pseudogene 3 O - 20121230 -9606 158471 PRUNE2 RP11-214N16.3 A214N16.3|BMCC1|BNIPXL|C9orf65|KIAA0367|RP11-58J3.2|bA214N16.3 HGNC:25209|MIM:610691|Ensembl:ENSG00000106772|HPRD:12970|Vega:OTTHUMG00000020047 9 9q21.2 prune homolog 2 (Drosophila) protein-coding PRUNE2 prune homolog 2 (Drosophila) O BCH motif-containing molecule at the carboxyl terminal region 1|BNIP2 motif containing molecule at the carboxyl terminal region 1|BNIP2 motif-containing molecule at the C-terminal region 1|protein prune homolog 2|truncated PRUNE2 20121230 -9606 158506 ZNF645 - HAKAIL HGNC:26371|Ensembl:ENSG00000175809|HPRD:06545|Vega:OTTHUMG00000021242 X Xp22.11 zinc finger protein 645 protein-coding ZNF645 zinc finger protein 645 O E3 ubiquitin ligase|E3 ubiquitin-protein ligase ZNF645 20121230 -9606 158511 CSAG1 - CSAGE|CT24.1 HGNC:24294|Ensembl:ENSG00000198930|HPRD:06475|Vega:OTTHUMG00000022648 X Xq28 chondrosarcoma associated gene 1 protein-coding CSAG1 chondrosarcoma associated gene 1 O cancer/testis antigen 24.1|cancer/testis antigen CSAGE|cancer/testis antigen family 24, member 1|putative chondrosarcoma-associated gene 1 protein 20121230 -9606 158521 FMR1NB - CT37|NY-SAR-35|NYSAR35 HGNC:26372|Ensembl:ENSG00000176988|HPRD:06546|Vega:OTTHUMG00000022608 X Xq28 fragile X mental retardation 1 neighbor protein-coding FMR1NB fragile X mental retardation 1 neighbor O cancer/testis antigen 37|fragile X mental retardation 1 neighbor protein|sarcoma antigen NY-SAR-35 20121230 -9606 158572 LOC158572 - - HPRD:18740 X Xp11.23 uncharacterized LOC158572 miscRNA - - - - 20121230 -9606 158584 FAAH2 RP11-479E16.1 AMDD HGNC:26440|MIM:300654|Ensembl:ENSG00000165591|HPRD:06551|Vega:OTTHUMG00000021684 X Xp11.21 fatty acid amide hydrolase 2 protein-coding FAAH2 fatty acid amide hydrolase 2 O amidase domain containing|amidase domain-containing protein|anandamide amidohydrolase 2|fatty-acid amide hydrolase 2|oleamide hydrolase 2 20121230 -9606 158586 ZXDB - ZNF905|dJ83L6.1 HGNC:13199|MIM:300236|Ensembl:ENSG00000198455|HPRD:11777|Vega:OTTHUMG00000021685 X Xp11.21 zinc finger, X-linked, duplicated B protein-coding ZXDB zinc finger, X-linked, duplicated B O zinc finger X-linked protein ZXDB 20121230 -9606 158674 RPSAP3 - LAMR1P3|RPSA_21_1392 HGNC:19792 14 14q24.3 ribosomal protein SA pseudogene 3 pseudo RPSAP3 ribosomal protein SA pseudogene 3 O - 20121230 -9606 158696 LOC158696 - - HPRD:06549 X Xq26.3 uncharacterized LOC158696 miscRNA - - - - 20121230 -9606 158724 FAM47A RP13-202B6.1 - HGNC:29962|Ensembl:ENSG00000185448|HPRD:10947|Vega:OTTHUMG00000021339 X Xp21.1 family with sequence similarity 47, member A protein-coding FAM47A family with sequence similarity 47, member A O protein FAM47A 20121230 -9606 158747 MOSPD2 - - HGNC:28381|Ensembl:ENSG00000130150|HPRD:06642|Vega:OTTHUMG00000021170 X Xp22.2 motile sperm domain containing 2 protein-coding MOSPD2 motile sperm domain containing 2 O motile sperm domain-containing protein 2 20121230 -9606 158763 ARHGAP36 RP13-102H20.1 - HGNC:26388|Ensembl:ENSG00000147256|HPRD:06547|Vega:OTTHUMG00000022402 X Xq26.1 Rho GTPase activating protein 36 protein-coding ARHGAP36 Rho GTPase activating protein 36 O rho GTPase-activating protein 36 20121230 -9606 158781 LOC158781 - - - X Xp11.4 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta polypeptide pseudogene pseudo - - - - 20121230 -9606 158787 RIBC1 RP3-339A18.5 2610028I09Rik HGNC:26537|Ensembl:ENSG00000158423|HPRD:06553|Vega:OTTHUMG00000021615 X Xp11.22 RIB43A domain with coiled-coils 1 protein-coding RIBC1 RIB43A domain with coiled-coils 1 O RIB43A-like with coiled-coils protein 1 20121230 -9606 158798 AKAP14 - AKAP28|PRKA14 HGNC:24061|MIM:300462|Ensembl:ENSG00000186471|HPRD:02353|Vega:OTTHUMG00000022285 X Xq24 A kinase (PRKA) anchor protein 14 protein-coding AKAP14 A kinase (PRKA) anchor protein 14 O A-kinase anchor protein 14|A-kinase anchor protein 28 kDa|A-kinase anchoring protein 28|AKAP 28|AKAP-14|protein kinase A-anchoring protein 14 20121230 -9606 158800 RHOXF1 - OTEX|PEPP1 HGNC:29993|MIM:300446|Ensembl:ENSG00000101883|HPRD:02345|HPRD:15954|Vega:OTTHUMG00000022290 X Xq24 Rhox homeobox family, member 1 protein-coding RHOXF1 Rhox homeobox family, member 1 O PEPP subfamily gene 1|ovary-, testis- and epididymis-expressed gene protein|paired-like homeobox protein PEPP-1|rhox homeobox family member 1 20121230 -9606 158801 NKAPP1 - CXorf42 HGNC:26706|HPRD:06560 X Xq24 NFKB activating protein pseudogene 1 pseudo NKAPP1 NFKB activating protein pseudogene 1 O - 20121230 -9606 158809 MAGEB6 - CT3.4|MAGE-B6|MAGEB6A HGNC:23796|MIM:300467|Ensembl:ENSG00000176746|HPRD:06628|Vega:OTTHUMG00000021285 X Xp21.3 melanoma antigen family B, 6 protein-coding MAGEB6 melanoma antigen family B, 6 O MAGE-B6 antigen|cancer/testis antigen 3.4|cancer/testis antigen family 3, member 4|melanoma-associated antigen B6 20121230 -9606 158830 CXorf65 - - HGNC:33713|Ensembl:ENSG00000204165|HPRD:18741|Vega:OTTHUMG00000021785 X Xq13.1 chromosome X open reading frame 65 protein-coding CXorf65 chromosome X open reading frame 65 O uncharacterized protein CXorf65 20121230 -9606 158833 AWAT1 RP13-26D14.7 DGA2|DGAT2L3 HGNC:23252|Ensembl:ENSG00000204195|HPRD:10296|Vega:OTTHUMG00000021773 X Xq13.1 acyl-CoA wax alcohol acyltransferase 1 protein-coding AWAT1 acyl-CoA wax alcohol acyltransferase 1 O diacyl-glycerol acyltransferase 2|diacylglycerol O-acyltransferase 2-like 3|diacylglycerol O-acyltransferase 2-like protein 3|diacylglycerol acyltransferase 2|long-chain-alcohol O-fatty-acyltransferase 1 20121230 -9606 158835 AWAT2 - ARAT|DC4|DGAT2L4|MFAT|WS HGNC:23251|Ensembl:ENSG00000147160|HPRD:16799|Vega:OTTHUMG00000021763 X Xq13.1 acyl-CoA wax alcohol acyltransferase 2 protein-coding AWAT2 acyl-CoA wax alcohol acyltransferase 2 O acyl-CoA retinol O-fatty-acyltransferase|diacylglycerol O-acyltransferase 2-like protein 4|diacylglycerol O-acyltransferase candidate 4|long-chain-alcohol O-fatty-acyltransferase 2|multifunctional O-acyltransferase|retinol O-fatty-acyltransferase 20121230 -9606 158863 LOC158863 - - - X Xq13.1 uncharacterized LOC158863 protein-coding - - - - 20111113 -9606 158866 ZDHHC15 UNQ1969 MRX91 HGNC:20342|MIM:300576|Ensembl:ENSG00000102383|HPRD:06758|Vega:OTTHUMG00000021866 X Xq13.3 zinc finger, DHHC-type containing 15 protein-coding ZDHHC15 zinc finger, DHHC-type containing 15 O DHHC-15|palmitoyltransferase ZDHHC15|zinc finger DHHC domain-containing protein 15|zinc finger, DHHC domain containing 15 20121230 -9606 158880 USP51 - - HGNC:23086|Ensembl:ENSG00000247746|HPRD:07167|Vega:OTTHUMG00000021656 X Xp11.21 ubiquitin specific peptidase 51 protein-coding USP51 ubiquitin specific peptidase 51 O deubiquitinating enzyme 51|ubiquitin carboxyl-terminal hydrolase 51|ubiquitin thioesterase 51|ubiquitin thiolesterase 51|ubiquitin-specific-processing protease 51 20121230 -9606 158905 PHF10P1 - XAP135P HGNC:23210 X Xq28 PHD finger protein 10 pseudogene 1 pseudo PHF10P1 PHD finger protein 10 pseudogene 1 O - 20121230 -9606 158931 TCEAL6 GHc-351F8.2 Tceal3 HGNC:24553|Ensembl:ENSG00000204071|HPRD:17311|Vega:OTTHUMG00000022050 X Xq22.1 transcription elongation factor A (SII)-like 6 protein-coding TCEAL6 transcription elongation factor A (SII)-like 6 O TCEA-like protein 6|transcription elongation factor A (SII)-like 3|transcription elongation factor A protein-like 6|transcription elongation factor S-II protein-like 6 20121230 -9606 158948 LOC158948 - - - X Xq22.1 protein kinase C, iota pseudogene pseudo - - - - 20121230 -9606 158960 LOC158960 - - - X Xq28 uncharacterized protein BC009467 miscRNA - - - - 20120722 -9606 158983 H2BFWT - - HGNC:27252|MIM:300507|Ensembl:ENSG00000123569|HPRD:15956|Vega:OTTHUMG00000022120 X Xq22.2 H2B histone family, member W, testis-specific protein-coding H2BFWT H2B histone family, member W, testis-specific O histone H2B type W-T 20121230 -9606 159007 LOC159007 - - - X Xq24 aldo-keto reductase family 7, member A2 (aflatoxin aldehyde reductase) pseudogene pseudo - - - - 20121230 -9606 159013 CXorf38 - - HGNC:28589|Ensembl:ENSG00000185753|HPRD:06651|Vega:OTTHUMG00000024104 X Xp11.4 chromosome X open reading frame 38 protein-coding CXorf38 chromosome X open reading frame 38 O uncharacterized protein CXorf38 20121230 -9606 159090 FAM122B RP11-308B5.5 SPACIA2 HGNC:30490|Ensembl:ENSG00000156504|HPRD:06614|Vega:OTTHUMG00000022461 X Xq26.3 family with sequence similarity 122B protein-coding FAM122B family with sequence similarity 122B O protein FAM122B|synoviocyte proliferation associated in collagen-induced arthritis 2 20121230 -9606 159091 FAM122C RP3-473B4.1 - HGNC:25202|Ensembl:ENSG00000156500|HPRD:06615|Vega:OTTHUMG00000022716 X Xq26.3 family with sequence similarity 122C protein-coding FAM122C family with sequence similarity 122C O protein FAM122C 20121230 -9606 159119 HSFY2 - HSF2L|HSFY HGNC:23950|Ensembl:ENSG00000169953|HPRD:13680|Vega:OTTHUMG00000041947 Y Yq11.222 heat shock transcription factor, Y linked 2 protein-coding HSFY2 heat shock transcription factor, Y linked 2 O heat shock transcription factor 2-like protein|heat shock transcription factor, Y-linked 20121230 -9606 159125 RBMY2EP - - HGNC:23890 Y Yq11.223 RNA binding motif protein, Y-linked, family 2, member E pseudogene pseudo RBMY2EP RNA binding motif protein, Y-linked, family 2, member E pseudogene O - 20121230 -9606 159162 RBMY2FP - - HGNC:23891 Y Yq11.223 RNA binding motif protein, Y-linked, family 2, member F pseudogene pseudo RBMY2FP RNA binding motif protein, Y-linked, family 2, member F pseudogene O - 20121230 -9606 159163 RBMY1F - YRRM2 HGNC:23974|Ensembl:ENSG00000169800|HPRD:15232|Vega:OTTHUMG00000043593 Y Yq11.223 RNA binding motif protein, Y-linked, family 1, member F protein-coding RBMY1F RNA binding motif protein, Y-linked, family 1, member F O RNA-binding motif protein, Y chromosome, family 1 member F/J|y chromosome RNA recognition motif 2 20121209 -9606 159195 USP54 RP11-137L10.4 C10orf29|bA137L10.3|bA137L10.4 HGNC:23513|Ensembl:ENSG00000166348|HPRD:15641|Vega:OTTHUMG00000018469 10 10q22.2 ubiquitin specific peptidase 54 protein-coding USP54 ubiquitin specific peptidase 54 O inactive ubiquitin carboxyl-terminal hydrolase 54|inactive ubiquitin-specific peptidase 54|ubiquitin specific protease 54|ubiquitin specific proteinase 54 20121230 -9606 159296 NKX2-3 RP11-85A1.2 CSX3|NK2.3|NKX2.3|NKX2C|NKX4-3 HGNC:7836|MIM:606727|Ensembl:ENSG00000119919|HPRD:05992|Vega:OTTHUMG00000018887 10 10q24.2 NK2 homeobox 3 protein-coding NKX2-3 NK2 homeobox 3 O NK2 transcription factor related, locus 3|homeobox protein NK-2 homolog C|homeobox protein Nkx-2.3 20121230 -9606 159371 SLC35G1 - C10orf60|TMEM20 HGNC:26607|Ensembl:ENSG00000176273|HPRD:15531|Vega:OTTHUMG00000018779 10 10q23.33 solute carrier family 35, member G1 protein-coding SLC35G1 solute carrier family 35, member G1 O solute carrier family 35 member G1|transmembrane protein 20 20121230 -9606 159686 CCDC147 RP11-554P13.1 C10orf80|bA127L20.4|bA127L20.5|bA554P13.1 HGNC:26676|Ensembl:ENSG00000120051|HPRD:16583|Vega:OTTHUMG00000019007 10 10q25.1 coiled-coil domain containing 147 protein-coding CCDC147 coiled-coil domain containing 147 O bA127L20.4 (novel protein)|bA127L20.5 (novel protein)|coiled-coil domain-containing protein 147 20121230 -9606 159770 CBX3P1 - - HGNC:33950 11 11p14.1 chromobox homolog 3 pseudogene 1 pseudo CBX3P1 chromobox homolog 3 pseudogene 1 O - 20121230 -9606 159963 SLC5A12 - SMCT2 HGNC:28750|MIM:612455|Ensembl:ENSG00000148942|HPRD:15395|Vega:OTTHUMG00000150706 11 11p14.2 solute carrier family 5 (sodium/glucose cotransporter), member 12 protein-coding SLC5A12 solute carrier family 5 (sodium/glucose cotransporter), member 12 O electroneutral sodium monocarboxylate cotransporter|low-affinity sodium-lactate cotransporter|sodium-coupled monocarboxylate transporter 2|sodium-iodide related cotransporter|solute carrier family 5 member 12 20121230 -9606 159989 CCDC67 - - HGNC:26344|Ensembl:ENSG00000165325|HPRD:08689|Vega:OTTHUMG00000167441 11 11q21 coiled-coil domain containing 67 protein-coding CCDC67 coiled-coil domain containing 67 O coiled-coil domain-containing protein 67 20121230 -9606 160065 PATE1 - PATE HGNC:24664|MIM:606861|Ensembl:ENSG00000171053|HPRD:06034|Vega:OTTHUMG00000165855 11 11q24.2 prostate and testis expressed 1 protein-coding PATE1 prostate and testis expressed 1 O expressed in prostate and testis|prostate and testis expressed protein 1 20121230 -9606 160140 C11orf65 - - HGNC:28519|Ensembl:ENSG00000166323|HPRD:14579|Vega:OTTHUMG00000166489 11 11q22.3 chromosome 11 open reading frame 65 protein-coding C11orf65 chromosome 11 open reading frame 65 O uncharacterized protein C11orf65 20121230 -9606 160287 LDHAL6A - LDH6A HGNC:28335|Ensembl:ENSG00000166800|HPRD:13980|Vega:OTTHUMG00000167724 11 11p15.1 lactate dehydrogenase A-like 6A protein-coding LDHAL6A lactate dehydrogenase A-like 6A O L-lactate dehydrogenase A-like 6A 20121230 -9606 160298 C11orf42 - - HGNC:28541|Ensembl:ENSG00000180878|HPRD:14590|Vega:OTTHUMG00000133377 11 11p15.4 chromosome 11 open reading frame 42 protein-coding C11orf42 chromosome 11 open reading frame 42 O uncharacterized protein C11orf42 20121230 -9606 160313 KRT19P2 - - HGNC:33423 12 12q22 keratin 19 pseudogene 2 pseudo KRT19P2 keratin 19 pseudogene 2 O - 20121230 -9606 160335 TMTC2 - IBDBP1 HGNC:25440|Ensembl:ENSG00000179104|HPRD:13230|Vega:OTTHUMG00000169736 12 12q21.31 transmembrane and tetratricopeptide repeat containing 2 protein-coding TMTC2 transmembrane and tetratricopeptide repeat containing 2 O IBDBP1 transcript 2|IBDBP1, transcript 1|transmembrane and TPR repeat-containing protein 2 20121230 -9606 160364 CLEC12A - CLL-1|CLL1|DCAL-2|MICL HGNC:31713|MIM:612088|Ensembl:ENSG00000172322|HPRD:14719|Vega:OTTHUMG00000168396 12 12p13.2 C-type lectin domain family 12, member A protein-coding CLEC12A C-type lectin domain family 12, member A O C-type lectin domain family 12 member A|C-type lectin protein CLL-1|C-type lectin superfamily|C-type lectin-like molecule-1|dendritic cell-associated lectin 2|myeloid inhibitory C-type lectin-like receptor 20121230 -9606 160365 CLECL1 - DCAL-1|DCAL1 HGNC:24462|MIM:607467|Ensembl:ENSG00000184293|HPRD:16247|Vega:OTTHUMG00000168459 12 12p13.31 C-type lectin-like 1 protein-coding CLECL1 C-type lectin-like 1 O C-type lectin-like domain family 1|DC-associated lectin-1|dendritic cell associated lectin 1|dendritic cell-associated lectin 1|dendritic cell-associated lectin-1|type II transmembrane protein DCAL1 20121230 -9606 160410 PSMC6P2 - - HGNC:30149 12 12q15 proteasome 26S subunit, ATPase, 6 pseudogene 2 pseudo PSMC6P2 proteasome 26S subunit, ATPase, 6 pseudogene 2 O - 20121230 -9606 160418 TMTC3 - SMILE HGNC:26899|Ensembl:ENSG00000139324|HPRD:10243|Vega:OTTHUMG00000169887 12 12q21.32 transmembrane and tetratricopeptide repeat containing 3 protein-coding TMTC3 transmembrane and tetratricopeptide repeat containing 3 O transmembrane and TPR repeat-containing protein 3 20121230 -9606 160419 C12orf50 - - HGNC:26665|Ensembl:ENSG00000165805|HPRD:08764|Vega:OTTHUMG00000169869 12 12q21.32 chromosome 12 open reading frame 50 protein-coding C12orf50 chromosome 12 open reading frame 50 O uncharacterized protein C12orf50 20121230 -9606 160428 ALDH1L2 - mtFDH HGNC:26777|MIM:613584|Ensembl:ENSG00000136010|HPRD:18742|Vega:OTTHUMG00000169823 12 12q23.3 aldehyde dehydrogenase 1 family, member L2 protein-coding ALDH1L2 aldehyde dehydrogenase 1 family, member L2 O 10-formyltetrahydrofolate dehydrogenase ALDH1L2|aldehyde dehydrogenase family 1 member L2, mitochondrial|mitochondrial 10-FTHFDH|mitochondrial 10-formyltetrahydrofolate dehydrogenase|probable 10-formyltetrahydrofolate dehydrogenase ALDH1L2 20121230 -9606 160492 IFLTD1 - PAS1C1 HGNC:26683|Ensembl:ENSG00000152936|HPRD:08768|Vega:OTTHUMG00000169052 12 12p12.1 intermediate filament tail domain containing 1 protein-coding IFLTD1 intermediate filament tail domain containing 1 O intermediate filament tail domain-containing protein 1 20121230 -9606 160518 DENND5B - - HGNC:28338|Ensembl:ENSG00000170456|HPRD:11321|Vega:OTTHUMG00000169034 12 12p11.21 DENN/MADD domain containing 5B protein-coding DENND5B DENN/MADD domain containing 5B O DENN domain-containing protein 5B|rab6IP1-like protein 20121230 -9606 160622 GRASP - TAMALIN HGNC:18707|MIM:612027|Ensembl:ENSG00000161835|HPRD:17077|Vega:OTTHUMG00000169595 12 12q13.13 GRP1 (general receptor for phosphoinositides 1)-associated scaffold protein protein-coding GRASP GRP1 (general receptor for phosphoinositides 1)-associated scaffold protein O GRP1-associated scaffold protein|general receptor for phosphoinositides 1-associated scaffold protein 20121230 -9606 160728 SLC5A8 - AIT|SMCT|SMCT1 HGNC:19119|MIM:608044|Ensembl:ENSG00000256870|HPRD:10475|Vega:OTTHUMG00000170499 12 12q23.1 solute carrier family 5 (iodide transporter), member 8 protein-coding SLC5A8 solute carrier family 5 (iodide transporter), member 8 O apical iodide transporter|electrogenic sodium monocarboxylate cotransporter|sodium iodide-related cotransporter|sodium-coupled monocarboxylate transporter 1|solute carrier family 5 member 8 20121230 -9606 160760 PPTC7 - TA-PP2C|TAPP2C HGNC:30695|MIM:609668|Ensembl:ENSG00000196850|HPRD:18141|Vega:OTTHUMG00000169529 12 12q24.11 PTC7 protein phosphatase homolog (S. cerevisiae) protein-coding PPTC7 PTC7 protein phosphatase homolog (S. cerevisiae) O protein phosphatase PTC7 homolog 20121230 -9606 160762 CCDC63 - - HGNC:26669|Ensembl:ENSG00000173093|HPRD:08765|Vega:OTTHUMG00000169534 12 12q24.11 coiled-coil domain containing 63 protein-coding CCDC63 coiled-coil domain containing 63 O coiled-coil domain-containing protein 63 20121230 -9606 160777 CCDC60 - - HGNC:28610|Ensembl:ENSG00000183273|HPRD:11347|Vega:OTTHUMG00000168943 12 12q24.23 coiled-coil domain containing 60 protein-coding CCDC60 coiled-coil domain containing 60 O coiled-coil domain-containing protein 60 20121230 -9606 160824 SP3P RP11-114G1.1 - HGNC:35430 13 13q31.3 Sp3 transcription factor pseudogene pseudo SP3P Sp3 transcription factor pseudogene O - 20121230 -9606 160851 DGKH RP11-215B13.1 DGKeta HGNC:2854|MIM:604071|Ensembl:ENSG00000102780|HPRD:07237|Vega:OTTHUMG00000016804 13 13q14.11 diacylglycerol kinase, eta protein-coding DGKH diacylglycerol kinase, eta O DAG kinase eta|DGK-eta|diacylglycerol kinase eta|diglyceride kinase eta 20121230 -9606 160857 CCDC122 RP11-5G9.1 - HGNC:26478|MIM:613408|Ensembl:ENSG00000151773|HPRD:13406|Vega:OTTHUMG00000017413 13 13q14.11 coiled-coil domain containing 122 protein-coding CCDC122 coiled-coil domain containing 122 O coiled-coil domain-containing protein 122 20121230 -9606 160897 GPR180 - ITR HGNC:28899|MIM:607787|Ensembl:ENSG00000152749|HPRD:16258|Vega:OTTHUMG00000017207 13 13q32.1 G protein-coupled receptor 180 protein-coding GPR180 G protein-coupled receptor 180 O integral membrane protein GPR180|intimal thickness-related receptor 20121230 -9606 161003 STOML3 RP11-50D16.1 Epb7.2l|SRO HGNC:19420|MIM:608327|Ensembl:ENSG00000133115|HPRD:16315|Vega:OTTHUMG00000016763 13 13q13.3 stomatin (EPB72)-like 3 protein-coding STOML3 stomatin (EPB72)-like 3 O SLP-3|erythrocyte band 7 integral membrane protein|protein 7.2B|stomatin-like protein 3 20121230 -9606 161142 FAM71D - C14orf54 HGNC:20101|Ensembl:ENSG00000172717|HPRD:12653|Vega:OTTHUMG00000142819 14 14q23.3 family with sequence similarity 71, member D protein-coding FAM71D family with sequence similarity 71, member D O protein FAM71D 20121230 -9606 161145 TMEM229B - C14orf83 HGNC:20130|Ensembl:ENSG00000198133|HPRD:08157|Vega:OTTHUMG00000171270 14 14q24.1 transmembrane protein 229B protein-coding TMEM229B transmembrane protein 229B O - 20121230 -9606 161159 ACTN1-AS1 - C14orf84 HGNC:20131 14 14q24.1 ACTN1 antisense RNA 1 miscRNA ACTN1-AS1 ACTN1 antisense RNA 1 O - 20121110 -9606 161176 SYNE3 - C14orf49|NET53|Nesp3 HGNC:19861|MIM:610861|Ensembl:ENSG00000176438|HPRD:12652|Vega:OTTHUMG00000171632 14 14q32.13 spectrin repeat containing, nuclear envelope family member 3 protein-coding SYNE3 spectrin repeat containing, nuclear envelope family member 3 O nesprin-3|nuclear envelope spectrin repeat protein 3 20121230 -9606 161198 CLEC14A UNQ236/PRO269 C14orf27|CEG1|EGFR-5 HGNC:19832|Ensembl:ENSG00000176435|HPRD:10711|Vega:OTTHUMG00000140248 14 14q21.1 C-type lectin domain family 14, member A protein-coding CLEC14A C-type lectin domain family 14, member A O C-type lectin domain family 14 member A|ClECT and EGF-like domain containing protein|epidermal growth factor receptor 5 20121230 -9606 161247 FITM1 - FIT1 HGNC:33714|MIM:612028|Ensembl:ENSG00000139914|HPRD:17312|Vega:OTTHUMG00000133476 14 14q12 fat storage-inducing transmembrane protein 1 protein-coding FITM1 fat storage-inducing transmembrane protein 1 O fat-inducing protein 1|fat-inducing transcript 1 20121230 -9606 161253 REM2 hCG_41987 - HGNC:20248|Ensembl:ENSG00000139890|HPRD:08248|Vega:OTTHUMG00000170277 14 14q11.2 RAS (RAD and GEM)-like GTP binding 2 protein-coding REM2 RAS (RAD and GEM)-like GTP binding 2 O GTP-binding protein REM 2|Rad and Gem-related 2 (rat homolog)|rad and Gem-like GTP-binding protein 2 20121230 -9606 161271 OR4H12P - C14orf14|OR4H12|c14_5009 HGNC:19433 14 14q11.2 olfactory receptor, family 4, subfamily H, member 12 pseudogene pseudo OR4H12P olfactory receptor, family 4, subfamily H, member 12 pseudogene O - 20121230 -9606 161291 TMEM30B - CDC50B HGNC:27254|MIM:611029|Ensembl:ENSG00000182107|HPRD:18567|Vega:OTTHUMG00000171426 14 14q23.1 transmembrane protein 30B protein-coding TMEM30B transmembrane protein 30B O cell cycle control protein 50B 20121230 -9606 161342 LINC00519 - C14orf30|c14_5317 HGNC:19838 14 14q21.3 long intergenic non-protein coding RNA 519 unknown LINC00519 long intergenic non-protein coding RNA 519 O - 20121021 -9606 161357 MDGA2 UNQ8188/PRO23197 MAMDC1|c14_5286 HGNC:19835|MIM:611128|Ensembl:ENSG00000139915|HPRD:14352|Vega:OTTHUMG00000029429 14 14q21.3 MAM domain containing glycosylphosphatidylinositol anchor 2 protein-coding MDGA2 MAM domain containing glycosylphosphatidylinositol anchor 2 O MAM domain containing 1|MAM domain-containing glycosylphosphatidylinositol anchor protein 2 20121230 -9606 161394 SAMD15 - C14orf174|FAM15A HGNC:18631|Ensembl:ENSG00000100583|HPRD:16618|Vega:OTTHUMG00000167428 14 14q24.3 sterile alpha motif domain containing 15 protein-coding SAMD15 sterile alpha motif domain containing 15 O SAM domain-containing protein 15|SAM domain-containing protein C14orf174|family with sequence similarity 15, member A|sterile alpha motif domain-containing protein 15 20121230 -9606 161406 RPL7AP10 - RPL7AP3|RPL7AP68|RPL7A_31_1637|rpL7a HGNC:32433 19 19p12 ribosomal protein L7a pseudogene 10 pseudo RPL7AP10 ribosomal protein L7a pseudogene 10 O - 20121230 -9606 161424 NOP9 - C14orf21 HGNC:19826|Ensembl:ENSG00000196943|HPRD:12643|Vega:OTTHUMG00000029342 14 14q12 NOP9 nucleolar protein protein-coding NOP9 NOP9 nucleolar protein O NOP9 nucleolar protein homolog|nucleolar protein 9|pumilio domain-containing protein C14orf21 20121230 -9606 161436 EML5 - EMAP-2 HGNC:18197|Ensembl:ENSG00000165521|HPRD:16861|Vega:OTTHUMG00000170811 14 14q31.3 echinoderm microtubule associated protein like 5 protein-coding EML5 echinoderm microtubule associated protein like 5 O EMAP-5|echinoderm microtubule-associated protein-like 5 20121230 -9606 161497 STRC - DFNB16 HGNC:16035|MIM:606440|Ensembl:ENSG00000242866|HPRD:08403|Vega:OTTHUMG00000059899 15 15q15.3 stereocilin protein-coding STRC stereocilin O - 20121230 -9606 161502 C15orf26 - - HGNC:26782|Ensembl:ENSG00000156206|HPRD:08243|Vega:OTTHUMG00000172263 15 15q25.1 chromosome 15 open reading frame 26 protein-coding C15orf26 chromosome 15 open reading frame 26 O uncharacterized protein C15orf26 20121230 -9606 161514 TBC1D21 - MgcRabGAP HGNC:28536|Ensembl:ENSG00000167139|HPRD:15473|Vega:OTTHUMG00000137594 15 15q24.1 TBC1 domain family, member 21 protein-coding TBC1D21 TBC1 domain family, member 21 O TBC1 domain family member 21|male germ cell-specific expressed, containing a RabGAP domain 20121230 -9606 161582 DYX1C1 - DYX1|DYXC1|EKN1|RD HGNC:21493|MIM:608706|Ensembl:ENSG00000256061|HPRD:10568|Vega:OTTHUMG00000132008 15 15q21.3 dyslexia susceptibility 1 candidate 1 protein-coding DYX1C1 dyslexia susceptibility 1 candidate 1 O dyslexia susceptibility 1 candidate gene 1 protein 20121230 -9606 161635 CSNK1A1P1 - CSNK1A1P HGNC:30446 15 15q14 casein kinase 1, alpha 1 pseudogene 1 pseudo CSNK1A1P1 casein kinase 1, alpha 1 pseudogene 1 O - 20121230 -9606 161725 OTUD7A - C15orf16|C16ORF15|CEZANNE2|OTUD7 HGNC:20718|MIM:612024|Ensembl:ENSG00000169918|HPRD:12666|Vega:OTTHUMG00000129275 15 15q13.3 OTU domain containing 7A protein-coding OTUD7A OTU domain containing 7A O OTU domain-containing protein 7A|cezanne 2|zinc finger protein Cezanne 2 20121230 -9606 161742 SPRED1 - NFLS|hSpred1|spred-1 HGNC:20249|MIM:609291|Ensembl:ENSG00000166068|HPRD:11601|Vega:OTTHUMG00000172377 15 15q14 sprouty-related, EVH1 domain containing 1 protein-coding SPRED1 sprouty-related, EVH1 domain containing 1 O sprouty-related, EVH1 domain-containing protein 1|suppressor of Ras/MAPK activation 20121230 -9606 161753 ODF3L1 - - HGNC:28735|Ensembl:ENSG00000182950|HPRD:11360|Vega:OTTHUMG00000142837 15 15q24.2 outer dense fiber of sperm tails 3-like 1 protein-coding ODF3L1 outer dense fiber of sperm tails 3-like 1 O outer dense fiber protein 3-like protein 1 20121230 -9606 161779 PGBD4 - - HGNC:19401|Ensembl:ENSG00000182405|HPRD:17839|Vega:OTTHUMG00000129370 15 15q14 piggyBac transposable element derived 4 protein-coding PGBD4 piggyBac transposable element derived 4 O piggyBac transposable element-derived protein 4 20121230 -9606 161823 ADAL - - HGNC:31853|Ensembl:ENSG00000168803|HPRD:11779|Vega:OTTHUMG00000176646 15 15q15.3 adenosine deaminase-like protein-coding ADAL adenosine deaminase-like O adenosine deaminase-like protein 20121230 -9606 161829 EXD1 - EXDL1 HGNC:28507|Ensembl:ENSG00000178997|HPRD:14571|Vega:OTTHUMG00000130232 15 15q15.1 exonuclease 3'-5' domain containing 1 protein-coding EXD1 exonuclease 3'-5' domain containing 1 O exonuclease 3'-5' domain-containing protein 1|exonuclease 3'-5' domain-like 1|exonuclease 3'-5' domain-like-containing protein 1 20121230 -9606 161835 FSIP1 HSD10 - HGNC:21674|Ensembl:ENSG00000150667|HPRD:08201|Vega:OTTHUMG00000172456 15 15q14 fibrous sheath interacting protein 1 protein-coding FSIP1 fibrous sheath interacting protein 1 O fibrous sheath-interacting protein 1 20121230 -9606 161882 ZFPM1 - FOG|FOG1|ZNF408|ZNF89A HGNC:19762|MIM:601950|Ensembl:ENSG00000179588|HPRD:11800|Vega:OTTHUMG00000173152 16 16q24.2 zinc finger protein, FOG family member 1 protein-coding ZFPM1 zinc finger protein, FOG family member 1 O FOG-1|friend of GATA 1|friend of GATA protein 1|friend of GATA-1|zinc finger protein 89A|zinc finger protein ZFPM1|zinc finger protein, multitype 1 20121230 -9606 161931 ADAD2 - TENRL HGNC:30714|Ensembl:ENSG00000140955|HPRD:14107|Vega:OTTHUMG00000137637 16 16q24.1 adenosine deaminase domain containing 2 protein-coding ADAD2 adenosine deaminase domain containing 2 O adenosine deaminase domain-containing protein 2 20121230 -9606 162073 ITPRIPL2 - - HGNC:27257|Ensembl:ENSG00000205730|HPRD:18743|Vega:OTTHUMG00000177199 16 16p12.3 inositol 1,4,5-trisphosphate receptor interacting protein-like 2 protein-coding ITPRIPL2 inositol 1,4,5-trisphosphate receptor interacting protein-like 2 O inositol 1,4,5-triphosphate receptor interacting protein-like 2|inositol 1,4,5-triphosphate receptor-interacting protein-like 2|inositol 1,4,5-trisphosphate receptor-interacting protein-like 2 20121230 -9606 162083 C16orf82 - TNT HGNC:30755|HPRD:18211 16 16p12.1 chromosome 16 open reading frame 82 protein-coding C16orf82 chromosome 16 open reading frame 82 O protein TNT 20121230 -9606 162137 MGC34800 - - - 16 16p11.2 uncharacterized protein MGC34800 unknown - - - - 20121230 -9606 162239 ZFP1 - ZNF475 HGNC:23328|Ensembl:ENSG00000184517|HPRD:15724|Vega:OTTHUMG00000137602 16 16q23.1 ZFP1 zinc finger protein protein-coding ZFP1 ZFP1 zinc finger protein O zfp-1|zinc finger protein 1 homolog|zinc finger protein 475 20121230 -9606 162282 ANKFN1 - - HGNC:26766|Ensembl:ENSG00000153930|HPRD:08238|Vega:OTTHUMG00000155010 17 17q22 ankyrin-repeat and fibronectin type III domain containing 1 protein-coding ANKFN1 ankyrin-repeat and fibronectin type III domain containing 1 O ankyrin repeat and fibronectin type-III domain-containing protein 1 20121230 -9606 162333 MARCH10 - MARCH-X|RNF190 HGNC:26655|MIM:613337|Ensembl:ENSG00000173838|HPRD:08762|Vega:OTTHUMG00000179192 17 17q23.2 membrane-associated ring finger (C3HC4) 10, E3 ubiquitin protein ligase protein-coding MARCH10 membrane-associated ring finger (C3HC4) 10, E3 ubiquitin protein ligase O membrane-associated RING finger protein 10|membrane-associated RING-CH protein X|probable E3 ubiquitin-protein ligase MARCH10|ring finger protein 190 20121230 -9606 162387 MFSD6L FP7072 - HGNC:26656|Ensembl:ENSG00000185156|HPRD:08186|Vega:OTTHUMG00000178584 17 17p13.1 major facilitator superfamily domain containing 6-like protein-coding MFSD6L major facilitator superfamily domain containing 6-like O major facilitator superfamily domain-containing protein 6-like 20121230 -9606 162394 SLFN5 - - HGNC:28286|MIM:614952|Ensembl:ENSG00000166750|HPRD:17519|Vega:OTTHUMG00000179858 17 17q12 schlafen family member 5 protein-coding SLFN5 schlafen family member 5 O - 20121230 -9606 162417 NAGS - AGAS|ARGA HGNC:17996|MIM:608300|Ensembl:ENSG00000161653|HPRD:10510|Vega:OTTHUMG00000181802 17 17q21.31 N-acetylglutamate synthase protein-coding NAGS N-acetylglutamate synthase O N-acetylglutamate synthase, mitochondrial|amino-acid acetyltransferase 20121230 -9606 162427 FAM134C - - HGNC:27258|Ensembl:ENSG00000141699|HPRD:14108|Vega:OTTHUMG00000180275 17 17q21.2 family with sequence similarity 134, member C protein-coding FAM134C family with sequence similarity 134, member C O protein FAM134C 20121230 -9606 162461 TMEM92 UNQ5801/PRO19608 - HGNC:26579|Ensembl:ENSG00000167105|HPRD:08743|Vega:OTTHUMG00000162060 17 17q21.33 transmembrane protein 92 protein-coding TMEM92 transmembrane protein 92 O - 20121230 -9606 162466 PHOSPHO1 - - HGNC:16815|Ensembl:ENSG00000173868|HPRD:17847|Vega:OTTHUMG00000161305 17 17q21.32 phosphatase, orphan 1 protein-coding PHOSPHO1 phosphatase, orphan 1 O phosphoethanolamine/phosphocholine phosphatase 20121230 -9606 162494 RHBDL3 - RHBDL4|VRHO HGNC:16502|Ensembl:ENSG00000141314|HPRD:07501|Vega:OTTHUMG00000179568 17 17q11.2 rhomboid, veinlet-like 3 (Drosophila) protein-coding RHBDL3 rhomboid, veinlet-like 3 (Drosophila) O rhomboid, veinlet-like 4|rhomboid-related protein 3|ventrhoid transmembrane protein 20121230 -9606 162514 TRPV3 - OLMS|VRL3 HGNC:18084|MIM:607066|Ensembl:ENSG00000167723|HPRD:06141|Vega:OTTHUMG00000090695 17 17p13.2 transient receptor potential cation channel, subfamily V, member 3 protein-coding TRPV3 transient receptor potential cation channel, subfamily V, member 3 O VRL-3|transient receptor potential cation channel subfamily V member 3|vanilloid receptor-like 3|vanilloid receptor-related osmotically activated channel protein 20121230 -9606 162515 SLC16A11 - MCT11 HGNC:23093|Ensembl:ENSG00000174326|HPRD:11567|Vega:OTTHUMG00000102087 17 17p13.1 solute carrier family 16, member 11 (monocarboxylic acid transporter 11) protein-coding SLC16A11 solute carrier family 16, member 11 (monocarboxylic acid transporter 11) O MCT 11|monocarboxylate transporter 11|solute carrier family 16 (monocarboxylic acid transporters), member 11|solute carrier family 16 member 11 20121230 -9606 162517 FBXO39 - Fbx39 HGNC:28565|MIM:609106|Ensembl:ENSG00000177294|HPRD:16444|Vega:OTTHUMG00000102062 17 17p13.1 F-box protein 39 protein-coding FBXO39 F-box protein 39 O F-box only protein 39 20121230 -9606 162540 SPPL2C - IMP5 HGNC:28902|MIM:608284|Ensembl:ENSG00000185294|HPRD:07085|Vega:OTTHUMG00000178247 17 17q21.31 signal peptide peptidase like 2C protein-coding SPPL2C signal peptide peptidase like 2C O IMP-5|SPP-like 2C|intramembrane protease 5|signal peptide peptidase-like 2C 20121230 -9606 162605 KRT28 - KRT25D HGNC:30842|Ensembl:ENSG00000173908|HPRD:17245|Vega:OTTHUMG00000133365 17 17q21.2 keratin 28 protein-coding KRT28 keratin 28 O CK-28|K25D|K28|cytokeratin-28|keratin 25D|keratin, type I cytoskeletal 28|keratin-25D|keratin-28|type I inner root sheath specific keratin 25 irs4|type I inner root sheath-specific keratin-K25irs4 20121230 -9606 162632 USP32P1 - - HGNC:43570 17 17p11.2 ubiquitin specific peptidase 32 pseudogene 1 pseudo USP32P1 ubiquitin specific peptidase 32 pseudogene 1 O - 20121230 -9606 162655 ZNF519 - HsT2362 HGNC:30574|Ensembl:ENSG00000175322|HPRD:15816|Vega:OTTHUMG00000182055 18 18p11.21 zinc finger protein 519 protein-coding ZNF519 zinc finger protein 519 O - 20121230 -9606 162681 C18orf54 - LAS2 HGNC:13796|MIM:613258|Ensembl:ENSG00000166845|HPRD:11334|Vega:OTTHUMG00000132703 18 18q21.2 chromosome 18 open reading frame 54 protein-coding C18orf54 chromosome 18 open reading frame 54 O hypothetical protein V1|hypothetical protein V3|hypothetical protein V4|hypothetical protein V5|lung adenoma susceptibility protein 2 20121230 -9606 162699 TCEB3C - HsT829|TCEB3L2 HGNC:24617|Ensembl:ENSG00000183791|HPRD:15479|Vega:OTTHUMG00000132651 18 18q21.1 transcription elongation factor B polypeptide 3C (elongin A3) protein-coding TCEB3C transcription elongation factor B polypeptide 3C (elongin A3) O RNA polymerase II transcription factor SIII subunit A3|eloA3|elongin-A3 20121230 -9606 162962 ZNF836 - - HGNC:34333|Ensembl:ENSG00000196267 19 19q13.41 zinc finger protein 836 protein-coding ZNF836 zinc finger protein 836 O - 20121230 -9606 162963 ZNF610 - - HGNC:26687|Ensembl:ENSG00000167554|HPRD:11735 19 19q13.41 zinc finger protein 610 protein-coding ZNF610 zinc finger protein 610 O zink finger protein 20121230 -9606 162966 ZNF600 - KR-ZNF1 HGNC:30951|Ensembl:ENSG00000189190|HPRD:11733 19 19q13.41 zinc finger protein 600 protein-coding ZNF600 zinc finger protein 600 O zinc finger protein KR-ZNF1 20121230 -9606 162967 ZNF320 - ZFPL HGNC:13842|MIM:606427|Ensembl:ENSG00000182986|HPRD:18506 19 19q13.41 zinc finger protein 320 protein-coding ZNF320 zinc finger protein 320 O zinc finger gene 320|zinc finger protein like 20121230 -9606 162968 ZNF497 - - HGNC:23714|Ensembl:ENSG00000174586|HPRD:15806 19 19q13.43 zinc finger protein 497 protein-coding ZNF497 zinc finger protein 497 O zinc finger-like protein 20121230 -9606 162972 ZNF550 - - HGNC:28643|Ensembl:ENSG00000251369|HPRD:15834 19 19q13.43 zinc finger protein 550 protein-coding ZNF550 zinc finger protein 550 O - 20121230 -9606 162979 ZNF296 - ZFP296|ZNF342 HGNC:15981|MIM:613226|Ensembl:ENSG00000170684|HPRD:15782|Vega:OTTHUMG00000181766 19 19q13.32 zinc finger protein 296 protein-coding ZNF296 zinc finger protein 296 O zinc finger protein 342 20121230 -9606 162989 DEDD2 PSEC0004 FLAME-3 HGNC:24450|Ensembl:ENSG00000160570|HPRD:10868 19 19q13.2 death effector domain containing 2 protein-coding DEDD2 death effector domain containing 2 O DED-containing protein FLAME-3|DNA-binding death effector domain-containing protein 2|FADD-like anti-apoptotic molecule 3 20121230 -9606 162993 ZNF846 - - HGNC:27260|Ensembl:ENSG00000196605|Vega:OTTHUMG00000180208 19 19p13.2 zinc finger protein 846 protein-coding ZNF846 zinc finger protein 846 O - 20121230 -9606 162998 OR7D2 - HTPCRH03|OR19-10|OR19-4 HGNC:8378|Ensembl:ENSG00000188000|HPRD:17784|Vega:OTTHUMG00000179934 19 19p13.2 olfactory receptor, family 7, subfamily D, member 2 protein-coding OR7D2 olfactory receptor, family 7, subfamily D, member 2 O olfactory receptor 19-4|olfactory receptor 7D2|olfactory receptor OR19-10 20121230 -9606 163007 CYP2T3P - - HGNC:18853 19 19q13.2 cytochrome P450, family 2, subfamily T, polypeptide 3 pseudogene pseudo CYP2T3P cytochrome P450, family 2, subfamily T, polypeptide 3 pseudogene O - 20121230 -9606 163033 ZNF579 - - HGNC:26646|Ensembl:ENSG00000218891|HPRD:11730|Vega:OTTHUMG00000180857 19 19q13.42 zinc finger protein 579 protein-coding ZNF579 zinc finger protein 579 O - 20121230 -9606 163049 ZNF791 - - HGNC:26895|Ensembl:ENSG00000173875|HPRD:08295|Vega:OTTHUMG00000156426 19 19p13.2 zinc finger protein 791 protein-coding ZNF791 zinc finger protein 791 O - 20121230 -9606 163050 ZNF564 - - HGNC:31106|Ensembl:ENSG00000249709|HPRD:10338|Vega:OTTHUMG00000156418 19 19p13.2 zinc finger protein 564 protein-coding ZNF564 zinc finger protein 564 O - 20121230 -9606 163051 ZNF709 - - HGNC:20629|Ensembl:ENSG00000196826|Ensembl:ENSG00000242852|HPRD:08236|Vega:OTTHUMG00000156406|Vega:OTTHUMG00000162246 19 19p13.2 zinc finger protein 709 protein-coding ZNF709 zinc finger protein 709 O - 20121230 -9606 163059 ZNF433 - - HGNC:20811|Ensembl:ENSG00000197647|HPRD:15790|Vega:OTTHUMG00000156427 19 19p13.2 zinc finger protein 433 protein-coding ZNF433 zinc finger protein 433 O - 20121230 -9606 163071 ZNF114 - - HGNC:12894|MIM:603996|Ensembl:ENSG00000178150|HPRD:14463 19 19q13.33 zinc finger protein 114 protein-coding ZNF114 zinc finger protein 114 O zinc finger protein 114 (Y18) 20121230 -9606 163081 ZNF567 - - HGNC:28696|Ensembl:ENSG00000189042|HPRD:11728|Vega:OTTHUMG00000180898 19 19q13.12 zinc finger protein 567 protein-coding ZNF567 zinc finger protein 567 O - 20121230 -9606 163087 ZNF383 HSD17 - HGNC:18609|Ensembl:ENSG00000188283|HPRD:15786|Vega:OTTHUMG00000181890 19 19q13.12 zinc finger protein 383 protein-coding ZNF383 zinc finger protein 383 O - 20121230 -9606 163088 TAF9P3 - TAF2GL HGNC:30678 19 19q12 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa pseudogene 3 pseudo TAF9P3 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa pseudogene 3 O - 20121230 -9606 163115 ZNF781 - - HGNC:26745|Ensembl:ENSG00000196381|HPRD:08225|Vega:OTTHUMG00000182106 19 19q13.12 zinc finger protein 781 protein-coding ZNF781 zinc finger protein 781 O - 20121230 -9606 163126 EID2 - CRI2|EID-2 HGNC:28292|MIM:609773|Ensembl:ENSG00000176396|HPRD:16754|Vega:OTTHUMG00000074073 19 19q13.2 EP300 interacting inhibitor of differentiation 2 protein-coding EID2 EP300 interacting inhibitor of differentiation 2 O CREBBP/EP300 inhibitor 2|CREBBP/EP300 inhibitory protein 2|E1A like inhibitor of differentiation 2|EID-1-like inhibitor of differentiation 2|EP300-interacting inhibitor of differentiation 2 20121230 -9606 163131 ZNF780B - ZNF779 HGNC:33109|Ensembl:ENSG00000128000|HPRD:11243|Vega:OTTHUMG00000155118 19 19q13.2 zinc finger protein 780B protein-coding ZNF780B zinc finger protein 780B O zinc finger protein 779 20121230 -9606 163154 PRR22 - - HGNC:28354|Ensembl:ENSG00000212123|HPRD:14501|Vega:OTTHUMG00000180553 19 19p13.3 proline rich 22 protein-coding PRR22 proline rich 22 O proline-rich protein 22 20121230 -9606 163175 LGI4 UNQ6515/PRO21485 LGIL3 HGNC:18712|MIM:608303|Ensembl:ENSG00000153902|HPRD:06433|Vega:OTTHUMG00000044558 19 19q13.12|19q13.11 leucine-rich repeat LGI family, member 4 protein-coding LGI4 leucine-rich repeat LGI family, member 4 O LGI1-like protein 3|leucine-rich glioma-inactivated gene 4|leucine-rich glioma-inactivated protein 4|leucine-rich repeat LGI family member 4 20121230 -9606 163183 SYNE4 - C19orf46|Nesp4 HGNC:26703|Ensembl:ENSG00000181392|HPRD:08776|Vega:OTTHUMG00000048135 19 19q13.12 spectrin repeat containing, nuclear envelope family member 4 protein-coding SYNE4 spectrin repeat containing, nuclear envelope family member 4 O nesprin-4|nuclear envelope spectrin repeat protein 4 20121230 -9606 163223 ZNF676 - - HGNC:20429|Ensembl:ENSG00000196109|HPRD:17313 19 19p12 zinc finger protein 676 protein-coding ZNF676 zinc finger protein 676 O - 20121230 -9606 163227 ZNF100 - - HGNC:12880|MIM:603982|Ensembl:ENSG00000197020|HPRD:10359 19 19p12 zinc finger protein 100 protein-coding ZNF100 zinc finger protein 100 O zinc finger protein 100 (Y1) 20121230 -9606 163255 ZNF540 - Nbla10512 HGNC:25331|MIM:613903|Ensembl:ENSG00000171817|HPRD:15827|Vega:OTTHUMG00000182053 19 19q13.12 zinc finger protein 540 protein-coding ZNF540 zinc finger protein 540 O putative protein product of Nbla10512 20121230 -9606 163259 DENND2C RP5-1156J9.1 dJ1156J9.1 HGNC:24748|Ensembl:ENSG00000175984|HPRD:13425|Vega:OTTHUMG00000011893 1 1p13.2 DENN/MADD domain containing 2C protein-coding DENND2C DENN/MADD domain containing 2C O DENN domain-containing protein 2C 20121230 -9606 163351 GBP6 - - HGNC:25395|MIM:612467|Ensembl:ENSG00000183347|HPRD:13572|Vega:OTTHUMG00000010123 1 1p22.2 guanylate binding protein family, member 6 protein-coding GBP6 guanylate binding protein family, member 6 O GBP-6|GTP-binding protein 6|guanine nucleotide-binding protein 6|guanylate-binding protein 6 20121230 -9606 163404 LPPR5 - PAP2|PAP2D|PRG5 Ensembl:ENSG00000117598|HPRD:12966|Vega:OTTHUMG00000010738 1 1p21.3 lipid phosphate phosphatase-related protein type 5 protein-coding - - - PRG-5|phosphatidic acid phosphatase 2d|phosphatidic acid phosphatase type 2|plasticity-related gene 5 protein|plasticity-related protein 5 20121230 -9606 163479 FNDC7 - RP11-293A10.2 HGNC:26668|Ensembl:ENSG00000143107|HPRD:08195|Vega:OTTHUMG00000011120 1 1p13.3 fibronectin type III domain containing 7 protein-coding FNDC7 fibronectin type III domain containing 7 O fibronectin type III domain-containing protein 7 20121230 -9606 163486 DENND1B RP11-53I24.2 C1ORF18|C1orf218|FAM31B HGNC:28404|MIM:613292|Ensembl:ENSG00000213047|HPRD:13303|Vega:OTTHUMG00000035653 1 1q31.3 DENN/MADD domain containing 1B protein-coding DENND1B DENN/MADD domain containing 1B O DENN domain-containing protein 1B|connecdenn 2|family with sequence similarity 31, member B 20121230 -9606 163589 TDRD5 - RP11-427G13.1|TUDOR3 HGNC:20614|Ensembl:ENSG00000162782|HPRD:15483|Vega:OTTHUMG00000035259 1 1q25.2 tudor domain containing 5 protein-coding TDRD5 tudor domain containing 5 O tudor domain-containing protein 5 20121230 -9606 163590 TOR1AIP2 - IFRG15|LULL1|NET9|RP11-12M5.5 HGNC:24055|MIM:614513|Ensembl:ENSG00000169905|HPRD:10048|Vega:OTTHUMG00000035265 1 1q25.2 torsin A interacting protein 2 protein-coding TOR1AIP2 torsin A interacting protein 2 O interferon responsive gene 15|lumenal domain like LAP1|lumenal domain-like LAP1|torsin-1A-interacting protein 2 20121230 -9606 163688 CALML6 RP1-140A9.2 CAGLP HGNC:24193|MIM:610171|Ensembl:ENSG00000169885|HPRD:12997|Vega:OTTHUMG00000000943 1 1p36.33 calmodulin-like 6 protein-coding CALML6 calmodulin-like 6 O EF-hand protein|calglandulin-like protein|calmodulin-like protein 6 20121230 -9606 163702 IFNLR1 RP11-10N16.1 CRF2/12|IFNLR|IL-28R1|IL28RA|LICR2 HGNC:18584|MIM:607404|Ensembl:ENSG00000185436|HPRD:09589|Vega:OTTHUMG00000003036 1 1p36.11 interferon, lambda receptor 1 protein-coding IFNLR1 interferon, lambda receptor 1 O CRF2-12|IFN-lambda receptor 1|IFN-lambda-R1|IL-28 receptor subunit alpha|IL-28R-alpha|IL-28RA|class II cytokine receptor CRF2/12|cytokine receptor class-II member 12|cytokine receptor family 2 member 12|interferon lambda receptor 1|interferon lambda, receptor 1|interleukin 28 alpha receptor|interleukin 28 receptor A|interleukin 28 receptor, alpha (interferon, lambda receptor)|interleukin or cytokine receptor 2|interleukin-28 receptor subunit alpha|likely interleukin or cytokine receptor 2 20121230 -9606 163720 CYP4Z2P - - HGNC:24426 1 1p33 cytochrome P450, family 4, subfamily Z, polypeptide 2 pseudogene pseudo CYP4Z2P cytochrome P450, family 4, subfamily Z, polypeptide 2 pseudogene O - 20121230 -9606 163732 CITED4 - - HGNC:18696|MIM:606815|Ensembl:ENSG00000179862|HPRD:06011|Vega:OTTHUMG00000007728 1 1p34.2|1p35-p34 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 4 protein-coding CITED4 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 4 O MRG-2|MSG1-related protein 2|cbp/p300-interacting transactivator 4|transcriptional co-activator 4 20121230 -9606 163742 SLC25A3P1 - - HGNC:26869 1 1p32.3 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 pseudogene 1 pseudo SLC25A3P1 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 pseudogene 1 O - 20121230 -9606 163747 C1orf177 - - HGNC:26854|Ensembl:ENSG00000162398|HPRD:08807|Vega:OTTHUMG00000009986 1 1p32.3 chromosome 1 open reading frame 177 protein-coding C1orf177 chromosome 1 open reading frame 177 O uncharacterized protein C1orf177 20121230 -9606 163778 SPRR4 - - HGNC:23173|Ensembl:ENSG00000184148|HPRD:18101|Vega:OTTHUMG00000012450 1 1q21.3 small proline-rich protein 4 protein-coding SPRR4 small proline-rich protein 4 O small proline rich protein 4 20121230 -9606 163782 KANK4 - ANKRD38|RP5-1155K23.5|dJ1078M7.1 HGNC:27263|MIM:614612|Ensembl:ENSG00000132854|HPRD:14109|Vega:OTTHUMG00000008971 1 1p31.3 KN motif and ankyrin repeat domains 4 protein-coding KANK4 KN motif and ankyrin repeat domains 4 O KN motif and ankyrin repeat domain-containing protein 4|ankyrin repeat domain 38|ankyrin repeat domain-containing protein 38|kidney ankyrin repeat-containing protein 4 20121230 -9606 163786 SASS6 - SAS-6|SAS6 HGNC:25403|MIM:609321|Ensembl:ENSG00000156876|HPRD:10907|Vega:OTTHUMG00000010754 1 1p21.2 spindle assembly 6 homolog (C. elegans) protein-coding SASS6 spindle assembly 6 homolog (C. elegans) O hsSAS-6|spindle assembly abnormal protein 6 homolog 20121230 -9606 163859 SDE2 - C1orf55|RP4-671D7.1|dJ671D7.1 HGNC:26643|Ensembl:ENSG00000143751|HPRD:08180|Vega:OTTHUMG00000037504 1 1q42.12 SDE2 telomere maintenance homolog (S. pombe) protein-coding SDE2 SDE2 telomere maintenance homolog (S. pombe) O UPF0667 protein C1orf55|protein SDE2 homolog 20121230 -9606 163882 CNST RP11-452J6.1 C1orf71|PPP1R64 HGNC:26486|MIM:613439|Ensembl:ENSG00000162852|HPRD:08718|Vega:OTTHUMG00000040090 1 1q44 consortin, connexin sorting protein protein-coding CNST consortin, connexin sorting protein O consortin|protein phosphatase 1, regulatory subunit 64 20121230 -9606 163933 FAM43B - - HGNC:31791|Ensembl:ENSG00000183114|HPRD:16881|Vega:OTTHUMG00000057491 1 1p36.12 family with sequence similarity 43, member B protein-coding FAM43B family with sequence similarity 43, member B O protein FAM43B 20121230 -9606 164022 PPIAL4A - COAS2|PPIAL4 HGNC:24369|Ensembl:ENSG00000255963|HPRD:09781|Vega:OTTHUMG00000013920 1 1q21.2 peptidylprolyl isomerase A (cyclophilin A)-like 4A protein-coding PPIAL4A peptidylprolyl isomerase A (cyclophilin A)-like 4A O COAS-2|PPIase A-like 4A|PPIase A-like 4B|PPIase A-like 4G|chromosome 1 amplified sequence 2|chromosome 1-amplified sequence 2|cyclophilin homolog overexpressed in liver cancer|cyclophilin-LC (COAS2)|peptidyl-prolyl cis-trans isomerase A-like 4A/B/C|peptidylprolyl cis-trans isomerase A-like 4|peptidylprolyl cis-trans isomerase A-like 4A|peptidylprolyl cis-trans isomerase A-like 4B|peptidylprolyl isomerase A (cyclophilin A)-like 4|peptidylprolyl isomerase A-like 4A 20121230 -9606 164045 HFM1 RP11-509K22.1 MER3|RP11-539G11.1|SEC63D1|Si-11|Si-11-6|helicase HGNC:20193|Ensembl:ENSG00000162669|HPRD:13423|HPRD:18568|Vega:OTTHUMG00000010093 1 1p22.2 HFM1, ATP-dependent DNA helicase homolog (S. cerevisiae) protein-coding HFM1 HFM1, ATP-dependent DNA helicase homolog (S. cerevisiae) O SEC63 domain containing 1|SEC63 domain-containing protein 1|helicase-like protein HFM1|probable ATP-dependent DNA helicase HFM1 20121230 -9606 164091 PAQR7 RP1-125I3.1 MPRA|PGLP|mSR HGNC:23146|MIM:607779|Ensembl:ENSG00000182749|HPRD:09692|Vega:OTTHUMG00000007373 1 1p36.11 progestin and adipoQ receptor family member VII protein-coding PAQR7 progestin and adipoQ receptor family member VII O 2310021M12Rik|mPR alpha|membrane progestin receptor alpha|progestin and adipoQ receptor family member 7 20121230 -9606 164118 TTC24 RP11-284F21.2 - HGNC:32348|Ensembl:ENSG00000187862|Vega:OTTHUMG00000033202 1 1q23.1 tetratricopeptide repeat domain 24 protein-coding TTC24 tetratricopeptide repeat domain 24 O TPR repeat protein 24|tetratricopeptide repeat protein 24 20121230 -9606 164127 C1orf65 - RP11-76K24.1 HGNC:26654|Ensembl:ENSG00000178395|HPRD:08761|Vega:OTTHUMG00000037987 1 1q41 chromosome 1 open reading frame 65 protein-coding C1orf65 chromosome 1 open reading frame 65 O uncharacterized protein C1orf65 20121230 -9606 164153 UBL4B - - HGNC:32309|MIM:611127|Ensembl:ENSG00000186150|HPRD:17314|Vega:OTTHUMG00000166989 1 1p13.3 ubiquitin-like 4B protein-coding UBL4B ubiquitin-like 4B O ubiquitin-like protein 4B 20121230 -9606 164237 WFDC13 - C20orf138|WAP13|dJ601O1.3 HGNC:16131|Ensembl:ENSG00000168634|HPRD:15675|Vega:OTTHUMG00000046333 20 20q13.12 WAP four-disulfide core domain 13 protein-coding WFDC13 WAP four-disulfide core domain 13 O WAP four-disulfide core domain protein 13|protease inhibitor WAP13|protein WFDC13 20121230 -9606 164284 APCDD1L RP4-685L9.2 - HGNC:26892|Ensembl:ENSG00000198768|HPRD:08294|Vega:OTTHUMG00000032845 20 20q13.32 adenomatosis polyposis coli down-regulated 1-like protein-coding APCDD1L adenomatosis polyposis coli down-regulated 1-like O adenomatosis polyposis coli down-regulated 1 protein-like|protein APCDD1-like 20121230 -9606 164312 LRRN4 RP5-967N21.9 C20orf75|NLRR-4|NLRR4|dJ1056H1.1 HGNC:16208|Ensembl:ENSG00000125872|HPRD:12784|Vega:OTTHUMG00000031825 20 20p12.3 leucine rich repeat neuronal 4 protein-coding LRRN4 leucine rich repeat neuronal 4 O leucine-rich repeat neuronal protein 4|neuronal leucine-rich repeat protein 4 20121230 -9606 164380 CST13P RP11-218C14.6 CSTT|CTES6 HGNC:44335 20 20p11.21 cystatin 13, pseudogene pseudo CST13P cystatin 13, pseudogene O - 20121230 -9606 164395 TTLL9 RP1-310O13.10-004 C20orf125|dJ310O13.1 HGNC:16118|Ensembl:ENSG00000131044|HPRD:16638 20 20q11.21 tubulin tyrosine ligase-like family, member 9 protein-coding TTLL9 tubulin tyrosine ligase-like family, member 9 O probable tubulin polyglutamylase TTLL9|tubulin--tyrosine ligase-like protein 9 20121230 -9606 164592 CCDC116 - - HGNC:26688|Ensembl:ENSG00000161180|HPRD:08203|Vega:OTTHUMG00000150821 22 22q11.21 coiled-coil domain containing 116 protein-coding CCDC116 coiled-coil domain containing 116 O coiled-coil domain-containing protein 116 20121230 -9606 164633 CABP7 - CALN2 HGNC:20834|Ensembl:ENSG00000100314|HPRD:12995|Vega:OTTHUMG00000151282 22 22q12.2 calcium binding protein 7 protein-coding CABP7 calcium binding protein 7 O calcium-binding protein 7|calneuron 2|calneuron II|calneuron-2 20121230 -9606 164656 TMPRSS6 RP5-1170K4.5 IRIDA HGNC:16517|MIM:609862|Ensembl:ENSG00000187045|HPRD:10270|Vega:OTTHUMG00000150541 22 22q12.3 transmembrane protease, serine 6 protein-coding TMPRSS6 transmembrane protease, serine 6 O matriptase-2|membrane-bound mosaic serine proteinase matriptase-2|transmembrane protease serine 6|type II transmembrane serine protease 6 20121230 -9606 164668 APOBEC3H RP4-742C19.10-002 ARP10 HGNC:24100|MIM:610976|Ensembl:ENSG00000100298|HPRD:16508|Vega:OTTHUMG00000151082 22 22q13.1 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3H protein-coding APOBEC3H apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3H O APOBEC-related protein 10|ARP-10|DNA dC->dU-editing enzyme APOBEC-3H|apolipoprotein B mRNA-editing enzyme catalytic polypeptide-like 3H 20121230 -9606 164684 WBP2NL CTA-250D10.11-006 PAWP HGNC:28389|MIM:610981|Ensembl:ENSG00000183066|HPRD:14512|Vega:OTTHUMG00000151270 22 22q13.2 WBP2 N-terminal like protein-coding WBP2NL WBP2 N-terminal like O WW domain-binding protein 2-like|postacrosomal sheath WW domain-binding protein 20121230 -9606 164714 TTLL8 RP3-355C18.2 - HGNC:34000|Ensembl:ENSG00000138892|Vega:OTTHUMG00000150241 22 22q13.33 tubulin tyrosine ligase-like family, member 8 protein-coding TTLL8 tubulin tyrosine ligase-like family, member 8 O protein monoglycylase TTLL8|tubulin--tyrosine ligase-like protein 8 20121230 -9606 164781 WDR69 - ODA16 HGNC:26383|Ensembl:ENSG00000123977|HPRD:08079|Vega:OTTHUMG00000133190 2 2q36.3 WD repeat domain 69 protein-coding WDR69 WD repeat domain 69 O WD repeat-containing protein 69|outer row dynein assembly 16 homolog|outer row dynein assembly protein 16 homolog 20121230 -9606 164832 LONRF2 - RNF192 HGNC:24788|Ensembl:ENSG00000170500|HPRD:13503|Vega:OTTHUMG00000130668 2 2q11.2 LON peptidase N-terminal domain and ring finger 2 protein-coding LONRF2 LON peptidase N-terminal domain and ring finger 2 O LON peptidase N-terminal domain and RING finger protein 2|RING finger protein 192|neuroblastoma apoptosis-related protease 20121230 -9606 164837 CYCSP7 - HCP7 HGNC:24422 2 2q11.2 cytochrome c, somatic pseudogene 7 pseudo CYCSP7 cytochrome c, somatic pseudogene 7 O - 20121230 -9606 165055 CCDC138 - - HGNC:26531|Ensembl:ENSG00000163006|HPRD:08136|Vega:OTTHUMG00000130980 2 2q12.3 coiled-coil domain containing 138 protein-coding CCDC138 coiled-coil domain containing 138 O coiled-coil domain-containing protein 138 20121230 -9606 165057 FLJ39061 - - - 2 2q33.1 uncharacterized protein FLJ39061 unknown - - - - 20120726 -9606 165082 GPR113 UNQ9196 PGR23|hGPCR37 HGNC:18989|Ensembl:ENSG00000173567|HPRD:11009|Vega:OTTHUMG00000150225 2 2p23.3 G protein-coupled receptor 113 protein-coding GPR113 G protein-coupled receptor 113 O G protein-coupled receptor PGR23|G-protein coupled receptor 113|G-protein coupled receptor PGR23|probable G-protein coupled receptor 113|seven transmembrane helix receptor 20121230 -9606 165100 C2orf57 - - HGNC:28563|Ensembl:ENSG00000177673|HPRD:14602|Vega:OTTHUMG00000133226 2 2q37.1 chromosome 2 open reading frame 57 protein-coding C2orf57 chromosome 2 open reading frame 57 O uncharacterized protein C2orf57 20121230 -9606 165140 OXER1 - GPCR|GPR170|TG1019 HGNC:24884|Ensembl:ENSG00000162881|HPRD:17812|Vega:OTTHUMG00000128643 2 2p21 oxoeicosanoid (OXE) receptor 1 protein-coding OXER1 oxoeicosanoid (OXE) receptor 1 O 5-oxo-ETE G-protein coupled receptor|5-oxo-ETE acid G-protein-coupled receptor 1|G-protein coupled receptor 170|G-protein coupled receptor R527|G-protein coupled receptor TG1019|oxoeicosanoid receptor 1 20121230 -9606 165186 FAM179A - - HGNC:33715|Ensembl:ENSG00000189350|HPRD:14110|Vega:OTTHUMG00000128432 2 2p23.2 family with sequence similarity 179, member A protein-coding FAM179A family with sequence similarity 179, member A O protein FAM179A 20121230 -9606 165215 FAM171B NPD019 KIAA1946 HGNC:29412|Ensembl:ENSG00000144369|HPRD:13907|Vega:OTTHUMG00000154278 2 2q32.1 family with sequence similarity 171, member B protein-coding FAM171B family with sequence similarity 171, member B O protein FAM171B 20121230 -9606 165257 C1QL2 - C1QTNF10|CTRP10 HGNC:24181|MIM:614330|Ensembl:ENSG00000144119|HPRD:12713|Vega:OTTHUMG00000153271 2 2q14.2 complement component 1, q subcomponent-like 2 protein-coding C1QL2 complement component 1, q subcomponent-like 2 O C1q and tumor necrosis factor related protein 10|C1q-domain containing protein|complement C1q-like protein 2 20121230 -9606 165324 UBXN2A - UBXD4 HGNC:27265|Ensembl:ENSG00000173960|HPRD:10292|Vega:OTTHUMG00000125497 2 2p23.3 UBX domain protein 2A protein-coding UBXN2A UBX domain protein 2A O UBX domain containing 4|UBX domain-containing protein 2A|UBX domain-containing protein 4 20121230 -9606 165530 CLEC4F - CLECSF13|KCLR HGNC:25357|Ensembl:ENSG00000152672|HPRD:13073|Vega:OTTHUMG00000129713 2 2p13.3 C-type lectin domain family 4, member F protein-coding CLEC4F C-type lectin domain family 4, member F O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 13|C-type lectin 13|C-type lectin domain family 4 member F|C-type lectin superfamily member 13 20121230 -9606 165545 DQX1 - - HGNC:20410|Ensembl:ENSG00000144045|HPRD:13249|Vega:OTTHUMG00000129965 2 2p13.1 DEAQ box RNA-dependent ATPase 1 protein-coding DQX1 DEAQ box RNA-dependent ATPase 1 O ATP-dependent RNA helicase DQX1|DEAQ RNA-dependent ATPase DQX1|DEAQ box polypeptide 1 (RNA-dependent ATPase) 20121230 -9606 165631 PARP15 - ARTD7|BAL3|pART7 HGNC:26876|MIM:612066|Ensembl:ENSG00000173200|HPRD:08811|Vega:OTTHUMG00000159523 3 3q21.1 poly (ADP-ribose) polymerase family, member 15 protein-coding PARP15 poly (ADP-ribose) polymerase family, member 15 O ADP-ribosyltransferase diphtheria toxin-like 7|B-aggressive lymphoma 3|B-aggressive lymphoma protein 3|PARP-15|poly [ADP-ribose] polymerase 15 20121230 -9606 165679 SPTSSB - ADMP|C3orf57|SSSPTB HGNC:24045|MIM:610412|Ensembl:ENSG00000196542|HPRD:16476|Vega:OTTHUMG00000159073 3 3q26.1 serine palmitoyltransferase, small subunit B protein-coding SPTSSB serine palmitoyltransferase, small subunit B O androgen down regulated in mouse prostate|likely ortholog of androgen down regulated gene expressed in mouse prostate|serine palmitoyltransferase small subunit B|small subunit of serine palmitoyltransferase B 20121230 -9606 165721 DNAJB8 - DJ6 HGNC:23699|MIM:611337|Ensembl:ENSG00000179407|HPRD:06684|HPRD:09921|Vega:OTTHUMG00000159690 3 3q21.3 DnaJ (Hsp40) homolog, subfamily B, member 8 protein-coding DNAJB8 DnaJ (Hsp40) homolog, subfamily B, member 8 O dnaJ homolog subfamily B member 8 20121230 -9606 165829 GPR156 - GABABL|PGR28 HGNC:20844|MIM:610464|Ensembl:ENSG00000175697|HPRD:17067|Vega:OTTHUMG00000159406 3 3q13.33 G protein-coupled receptor 156 protein-coding GPR156 G protein-coupled receptor 156 O G protein-coupled receptor PGR28|G-protein coupled receptor PGR28|GABAB-related G-protein coupled receptor|probable G-protein coupled receptor 156 20121230 -9606 165904 XIRP1 - CMYA1|Xin HGNC:14301|MIM:609777|Ensembl:ENSG00000168334|HPRD:16727|Vega:OTTHUMG00000131297 3 3p22.2 xin actin-binding repeat containing 1 protein-coding XIRP1 xin actin-binding repeat containing 1 O cardiomyopathy associated 1|cardiomyopathy-associated protein 1|xin actin-binding repeat-containing protein 1 20121230 -9606 165918 RNF168 - hRNF168 HGNC:26661|MIM:612688|Ensembl:ENSG00000163961|HPRD:08190|Vega:OTTHUMG00000155582 3 3q29 ring finger protein 168, E3 ubiquitin protein ligase protein-coding RNF168 ring finger protein 168, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase RNF168 20121230 -9606 166012 CHST13 - C4ST3 HGNC:21755|MIM:610124|Ensembl:ENSG00000180767|HPRD:13057|Vega:OTTHUMG00000162721 3 3q21.3 carbohydrate (chondroitin 4) sulfotransferase 13 protein-coding CHST13 carbohydrate (chondroitin 4) sulfotransferase 13 O C4ST-3|carbohydrate sulfotransferase 13|chondroitin 4-O-sulfotransferase 3|chondroitin 4-sulfotransferase 3 20121230 -9606 166070 DDX50P2 - RH_II/GuBp2 HGNC:18975 3 3q25.2 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 50 pseudogene 2 pseudo DDX50P2 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 50 pseudogene 2 O - 20121230 -9606 166336 PRICKLE2 - EPM5 HGNC:20340|MIM:608501|Ensembl:ENSG00000163637|HPRD:16342|Vega:OTTHUMG00000158789 3 3p14.1 prickle homolog 2 (Drosophila) protein-coding PRICKLE2 prickle homolog 2 (Drosophila) O prickle-like protein 2 20121230 -9606 166348 KBTBD12 - KLHDC6 HGNC:25731|Ensembl:ENSG00000187715|HPRD:17001|Vega:OTTHUMG00000150508 3 3q21.3 kelch repeat and BTB (POZ) domain containing 12 protein-coding KBTBD12 kelch repeat and BTB (POZ) domain containing 12 O kelch domain containing 6|kelch domain-containing protein 6|kelch repeat and BTB domain-containing protein 12 20121230 -9606 166378 SPATA5 - AFG2|SPAF HGNC:18119|MIM:613940|Ensembl:ENSG00000145375|HPRD:11595|Vega:OTTHUMG00000133074 4 4q28.1 spermatogenesis associated 5 protein-coding SPATA5 spermatogenesis associated 5 O ATPase family gene 2 homolog|ATPase family protein 2 homolog|spermatogenesis associated factor SPAF|spermatogenesis-associated factor protein|spermatogenesis-associated protein 5 20121230 -9606 166379 BBS12 - C4orf24 HGNC:26648|MIM:610683|Ensembl:ENSG00000181004|HPRD:08759|Vega:OTTHUMG00000133070 4 4q27 Bardet-Biedl syndrome 12 protein-coding BBS12 Bardet-Biedl syndrome 12 O Bardet-Biedl syndrome 12 protein 20121230 -9606 166614 DCLK2 - CL2|CLICK-II|CLICK2|CLIK2|DCAMKL2|DCDC3|DCDC3B|DCK2 HGNC:19002|MIM:613166|Ensembl:ENSG00000170390|HPRD:13122|Vega:OTTHUMG00000161444 4 4q31.3 doublecortin-like kinase 2 protein-coding DCLK2 doublecortin-like kinase 2 O CaMK-like CREB regulatory kinase 2|doublecortin and CaM kinase-like 2|doublecortin domain-containing protein 3B|doublecortin-like and CAM kinase-like 2|serine/threonine-protein kinase DCLK2 20121230 -9606 166647 GPR125 UNQ556/PRO1113 PGR21|TEM5L HGNC:13839|MIM:612303|Ensembl:ENSG00000152990|HPRD:11011|Vega:OTTHUMG00000160926 4 4p15.2 G protein-coupled receptor 125 protein-coding GPR125 G protein-coupled receptor 125 O probable G-protein coupled receptor 125 20121230 -9606 166655 TRIM60 - RNF129|RNF33 HGNC:21162|Ensembl:ENSG00000176979|HPRD:11502|Vega:OTTHUMG00000161262 4 4q32.3 tripartite motif containing 60 protein-coding TRIM60 tripartite motif containing 60 O ring finger protein 129|ring finger protein 33|tripartite motif-containing 60|tripartite motif-containing protein 60 20121230 -9606 166752 FREM3 - - HGNC:25172|MIM:608946|Ensembl:ENSG00000183090|Vega:OTTHUMG00000161577 4 4q31.21 FRAS1 related extracellular matrix 3 protein-coding FREM3 FRAS1 related extracellular matrix 3 O FRAS1-related extracellular matrix protein 3 20121230 -9606 166785 MMAA - cblA HGNC:18871|MIM:607481|Ensembl:ENSG00000151611|HPRD:07394|Vega:OTTHUMG00000161369 4 4q31.21 methylmalonic aciduria (cobalamin deficiency) cblA type protein-coding MMAA methylmalonic aciduria (cobalamin deficiency) cblA type O methylmalonic aciduria type A protein, mitochondrial 20121230 -9606 166793 ZBTB49 - ZNF509 HGNC:19883|Ensembl:ENSG00000168826|HPRD:10335|Vega:OTTHUMG00000090325 4 4p16.3 zinc finger and BTB domain containing 49 protein-coding ZBTB49 zinc finger and BTB domain containing 49 O zinc finger and BTB domain-containing protein 49|zinc finger protein 509 20121230 -9606 166815 TIGD2 - - HGNC:18333|MIM:612973|Ensembl:ENSG00000180346|HPRD:18186|Vega:OTTHUMG00000130946 4 4q22.1 tigger transposable element derived 2 protein-coding TIGD2 tigger transposable element derived 2 O tigger transposable element-derived protein 2 20121230 -9606 166824 RASSF6 - - HGNC:20796|MIM:612620|Ensembl:ENSG00000169435|HPRD:15220|Vega:OTTHUMG00000130007 4 4q13.3 Ras association (RalGDS/AF-6) domain family member 6 protein-coding RASSF6 Ras association (RalGDS/AF-6) domain family member 6 O Ras association (RalGDS/AF-6) domain family 6|putative RAS binding protein|ras association domain-containing protein 6 20121230 -9606 166863 RBM46 - CT68 HGNC:28401|Ensembl:ENSG00000151962|HPRD:14517|Vega:OTTHUMG00000161543 4 4q32.1 RNA binding motif protein 46 protein-coding RBM46 RNA binding motif protein 46 O RNA-binding motif protein 46|cancer/testis antigen 68|probable RNA-binding protein 46 20121230 -9606 166929 SGMS2 - SMS2 HGNC:28395|MIM:611574|Ensembl:ENSG00000164023|HPRD:11323|Vega:OTTHUMG00000131811 4 4q25 sphingomyelin synthase 2 protein-coding SGMS2 sphingomyelin synthase 2 O SM synthase|phosphatidylcholine:ceramide cholinephosphotransferase 2 20121230 -9606 166968 MIER3 - - HGNC:26678|Ensembl:ENSG00000155545|HPRD:08199|Vega:OTTHUMG00000059589 5 5q11.2 mesoderm induction early response 1, family member 3 protein-coding MIER3 mesoderm induction early response 1, family member 3 O mesoderm induction early response protein 3|mi-er3 20121230 -9606 166979 CDC20B G6VTS76519 - HGNC:24222|Ensembl:ENSG00000164287|HPRD:13428|Vega:OTTHUMG00000131185 5 5q11.2 cell division cycle 20 homolog B (S. cerevisiae) protein-coding CDC20B cell division cycle 20 homolog B (S. cerevisiae) O CDC20 cell division cycle 20 homolog B|CDC20-like protein|cell division cycle protein 20 homolog B 20121230 -9606 166994 LOC166994 - - - 6 6p22.1 integral membrane glycoprotein-like unknown - - - - 20100404 -9606 167127 UGT3A2 PSEC0073 - HGNC:27266|Ensembl:ENSG00000168671|HPRD:14111|Vega:OTTHUMG00000131108 5 5p13.2 UDP glycosyltransferase 3 family, polypeptide A2 protein-coding UGT3A2 UDP glycosyltransferase 3 family, polypeptide A2 O UDP-glucuronosyltransferase 3A2|UDPGT 3A2 20121230 -9606 167153 PAPD4 - GLD2 HGNC:26776|MIM:614121|Ensembl:ENSG00000164329|HPRD:15098|Vega:OTTHUMG00000108163 5 5q14.1 PAP associated domain containing 4 protein-coding PAPD4 PAP associated domain containing 4 O PAP-associated domain-containing protein 4|TUTase 2|hGLD-2|poly(A) RNA polymerase GLD2|terminal uridylyltransferase 2 20121230 -9606 167227 DCP2 - NUDT20 HGNC:24452|MIM:609844|Ensembl:ENSG00000172795|HPRD:13125|Vega:OTTHUMG00000162853 5 5q22.2 DCP2 decapping enzyme homolog (S. cerevisiae) protein-coding DCP2 DCP2 decapping enzyme homolog (S. cerevisiae) O hDpc|m7GpppN-mRNA hydrolase|mRNA-decapping enzyme 2|nudix (nucleoside diphosphate linked moiety X)-type motif 20 20121230 -9606 167359 NIM1 - - Ensembl:ENSG00000177453|HPRD:14618|Vega:OTTHUMG00000131147 5 5p12 serine/threonine-protein kinase NIM1 protein-coding - - - - 20121230 -9606 167410 LIX1 - C5orf11 HGNC:18581|MIM:610466|Ensembl:ENSG00000145721|HPRD:08069|Vega:OTTHUMG00000128720 5 5q15 Lix1 homolog (chicken) protein-coding LIX1 Lix1 homolog (chicken) O limb expression 1|protein limb expression 1 homolog 20121230 -9606 167465 ZNF366 - DCSCRIPT HGNC:18316|MIM:610159|Ensembl:ENSG00000178175|HPRD:18329|Vega:OTTHUMG00000100965 5 5q13.2|5q13.2 zinc finger protein 366 protein-coding ZNF366 zinc finger protein 366 O - 20121230 -9606 167555 FAM151B UNQ9217/PRO28685 UNQ9217 HGNC:33716|Ensembl:ENSG00000152380|HPRD:18272|Vega:OTTHUMG00000131303 5 5q14.1 family with sequence similarity 151, member B protein-coding FAM151B family with sequence similarity 151, member B O AASA9217|protein FAM151B 20121230 -9606 167681 PRSS35 UNQ522/PRO1057 C6orf158|dJ223E3.1 HGNC:21387|Ensembl:ENSG00000146250|HPRD:07095|Vega:OTTHUMG00000015113 6 6q14.2 protease, serine, 35 protein-coding PRSS35 protease, serine, 35 O inactive serine protease 35 20121230 -9606 167691 LCA5 - C6orf152 HGNC:31923|MIM:611408|Ensembl:ENSG00000135338|HPRD:10791|Vega:OTTHUMG00000015080 6 6q14.1 Leber congenital amaurosis 5 protein-coding LCA5 Leber congenital amaurosis 5 O Lebercilin|leber congenital amaurosis 5 protein 20121230 -9606 167826 OLIG3 RP3-372K1.2 Bhlhb7|bHLHe20 HGNC:18003|MIM:609323|Ensembl:ENSG00000177468|HPRD:17662|Vega:OTTHUMG00000015657 6 6q23.3 oligodendrocyte transcription factor 3 protein-coding OLIG3 oligodendrocyte transcription factor 3 O class B basic helix-loop-helix protein 7|class E basic helix-loop-helix protein 20|oligo3 20121230 -9606 167838 TXLNB RP3-522B19.2 C6orf198|LST001|MDP77|dJ522B19.2 HGNC:21617|MIM:611438|Ensembl:ENSG00000164440|HPRD:10793|Vega:OTTHUMG00000015688 6 6q24.1 taxilin beta protein-coding TXLNB taxilin beta O beta-taxilin|muscle-derived protein 77 20121230 -9606 168002 DACT2 PP13671 C6orf116|DAPPER2|DPR2|RP11-503C24.7|bA503C24.7 HGNC:21231|MIM:608966|Ensembl:ENSG00000164488|HPRD:12345|Vega:OTTHUMG00000016046 6 6q27 dapper, antagonist of beta-catenin, homolog 2 (Xenopus laevis) protein-coding DACT2 dapper, antagonist of beta-catenin, homolog 2 (Xenopus laevis) O dapper antagonist of catenin 2|dapper homolog 2|dapper homolog 2, antagonist of beta-catenin 20121230 -9606 168090 C6orf118 - bA85G2.1|dJ416F21.2 HGNC:21233|Ensembl:ENSG00000112539|HPRD:12844|Vega:OTTHUMG00000015984 6 6q27 chromosome 6 open reading frame 118 protein-coding C6orf118 chromosome 6 open reading frame 118 O dJ416F21.2 (novel protein)|uncharacterized protein C6orf118 20121230 -9606 168330 PRSS3P1 - TRY5 HGNC:43787 7 7q34 protease, serine, 3 pseudogene 1 pseudo PRSS3P1 protease, serine, 3 pseudogene 1 O - 20121230 -9606 168374 ZNF92 - HPF12|HTF12|TF12 HGNC:13168|MIM:603974|Ensembl:ENSG00000146757|HPRD:04919|Vega:OTTHUMG00000156557 7 7q11.21 zinc finger protein 92 protein-coding ZNF92 zinc finger protein 92 O zinc finger protein HTF12 20121230 -9606 168391 GALNTL5 - GALNT15 HGNC:21725|Ensembl:ENSG00000106648|HPRD:13565|Vega:OTTHUMG00000157306 7 7q36.1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 5 protein-coding GALNTL5 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 5 O UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 15|galNAc-T15|polypeptide GalNAc transferase 15|pp-GaNTase 15|protein-UDP acetylgalactosaminyltransferase 15|putative polypeptide N-acetylgalactosaminyltransferase-like protein 5 20121230 -9606 168400 DDX53 - CAGE|CT26 HGNC:20083|Ensembl:ENSG00000184735|HPRD:06466|Vega:OTTHUMG00000021248 X Xp22.11 DEAD (Asp-Glu-Ala-Asp) box polypeptide 53 protein-coding DDX53 DEAD (Asp-Glu-Ala-Asp) box polypeptide 53 O DEAD box protein 53|DEAD-box protein CAGE|cancer-associated gene protein|cancer/testis antigen 26|probable ATP-dependent RNA helicase DDX53 20121230 -9606 168417 ZNF679 - - HGNC:28650|Ensembl:ENSG00000197123|HPRD:14621|Vega:OTTHUMG00000156486 7 7q11.21 zinc finger protein 679 protein-coding ZNF679 zinc finger protein 679 O hypothetical protein MGC42415 20121230 -9606 168433 RNF133 - - HGNC:21154|Ensembl:ENSG00000188050|HPRD:11505|Vega:OTTHUMG00000157092 7 7q31.32 ring finger protein 133 protein-coding RNF133 ring finger protein 133 O E3 ubiquitin-protein ligase RNF133 20121230 -9606 168448 CDC14C - CDC14B2|CDC14Bretro HGNC:22427 7 7p12.3 CDC14 cell division cycle 14 homolog C (S. cerevisiae) pseudo CDC14C CDC14 cell division cycle 14 homolog C (S. cerevisiae) O - 20121230 -9606 168451 THAP5 - - HGNC:23188|MIM:612534|Ensembl:ENSG00000177683|HPRD:15498|Vega:OTTHUMG00000154951 7 7q31.1 THAP domain containing 5 protein-coding THAP5 THAP domain containing 5 O THAP domain-containing protein 5 20121230 -9606 168455 CCDC71L - C7orf74 HGNC:26685|Ensembl:ENSG00000253276|HPRD:08202|Vega:OTTHUMG00000164150 7 7q22.3 coiled-coil domain containing 71-like protein-coding CCDC71L coiled-coil domain containing 71-like O coiled-coil domain-containing protein 71L 20121230 -9606 168474 SEPHS1P1 - SEPHS1P HGNC:42161 7 7q11.21 selenophosphate synthetase 1 pseudogene 1 pseudo SEPHS1P1 selenophosphate synthetase 1 pseudogene 1 O - 20121230 -9606 168507 PKD1L1 UNQ5785/PRO19563 PRO19563 HGNC:18053|MIM:609721|Ensembl:ENSG00000158683|HPRD:10154|Vega:OTTHUMG00000155649 7 7p12.3 polycystic kidney disease 1 like 1 protein-coding PKD1L1 polycystic kidney disease 1 like 1 O PC1-like 1 protein|polycystic kidney disease protein 1-like 1|polycystin-1L1 20121230 -9606 168537 GIMAP7 - IAN7|hIAN7 HGNC:22404|Ensembl:ENSG00000179144|HPRD:17039|Vega:OTTHUMG00000157626 7 7q36.1 GTPase, IMAP family member 7 protein-coding GIMAP7 GTPase, IMAP family member 7 O GTPase IMAP family member 7|IAN-7|immune associated nucleotide|immunity-associated nucleotide 7 protein 20121230 -9606 168544 ZNF467 - EZI|Zfp467 HGNC:23154|MIM:614040|Ensembl:ENSG00000181444|HPRD:18343|Vega:OTTHUMG00000157883 7 7q36.1 zinc finger protein 467 protein-coding ZNF467 zinc finger protein 467 O zinc finger protein EZI 20121230 -9606 168620 BHLHA15 - BHLHB8|MIST1 HGNC:22265|MIM:608606|Ensembl:ENSG00000180535|HPRD:16356|Vega:OTTHUMG00000154289 7 7q21.3 basic helix-loop-helix family, member a15 protein-coding BHLHA15 basic helix-loop-helix family, member a15 O MIST-1|basic helix-loop-helix domain containing, class B, 8|class A basic helix-loop-helix protein 15|class B basic helix-loop-helix protein 8|class II bHLH protein MIST1|muscle, intestine and stomach expression 1 20121230 -9606 168667 BMPER - CRIM3|CV-2|CV2 HGNC:24154|MIM:608699|Ensembl:ENSG00000164619|HPRD:16368|Vega:OTTHUMG00000128675 7 7p14.3 BMP binding endothelial regulator protein-coding BMPER BMP binding endothelial regulator O BMP-binding endothelial regulator precursor protein|BMP-binding endothelial regulator protein|bone morphogenetic protein-binding endothelial cell precursor-derived regulator|crossveinless 2|crossveinless-2|hCV2 20121230 -9606 168741 PER4 - - - 7 7p21.3 period homolog 3 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 168850 ZNF800 PP902 - HGNC:27267|Ensembl:ENSG00000048405|HPRD:14112|Vega:OTTHUMG00000023456 7 7q31.33 zinc finger protein 800 protein-coding ZNF800 zinc finger protein 800 O - 20121230 -9606 168975 CNBD1 - - HGNC:26663|Ensembl:ENSG00000176571|HPRD:08192|Vega:OTTHUMG00000163743 8 8q21.3 cyclic nucleotide binding domain containing 1 protein-coding CNBD1 cyclic nucleotide binding domain containing 1 O cyclic nucleotide-binding domain-containing protein 1 20121230 -9606 169026 SLC30A8 - ZNT8|ZnT-8 HGNC:20303|MIM:611145|Ensembl:ENSG00000164756|HPRD:15370|Vega:OTTHUMG00000164962 8 8q24.11 solute carrier family 30 (zinc transporter), member 8 protein-coding SLC30A8 solute carrier family 30 (zinc transporter), member 8 O zinc transporter 8|zinc transporter ZnT-8 20121230 -9606 169044 COL22A1 - - HGNC:22989|MIM:610026|Ensembl:ENSG00000169436|HPRD:09885|Vega:OTTHUMG00000150035 8 8q24.3 collagen, type XXII, alpha 1 protein-coding COL22A1 collagen, type XXII, alpha 1 O collagen alpha-1(XXII) chain 20121230 -9606 169166 SNX31 - - HGNC:28605|Ensembl:ENSG00000174226|HPRD:17545|Vega:OTTHUMG00000164725 8 8q22.3 sorting nexin 31 protein-coding SNX31 sorting nexin 31 O sorting nexin-31 20121230 -9606 169200 TMEM64 - - HGNC:25441|Ensembl:ENSG00000180694|HPRD:16822|Vega:OTTHUMG00000157185 8 8q21.3 transmembrane protein 64 protein-coding TMEM64 transmembrane protein 64 O - 20121230 -9606 169270 ZNF596 - - HGNC:27268|Ensembl:ENSG00000172748|HPRD:11731|Vega:OTTHUMG00000086931 8 8p23.3 zinc finger protein 596 protein-coding ZNF596 zinc finger protein 596 O - 20121230 -9606 169355 IDO2 - INDOL1 HGNC:27269|MIM:612129|Ensembl:ENSG00000188676|HPRD:14113|Vega:OTTHUMG00000141271 8 8p11.21 indoleamine 2,3-dioxygenase 2 protein-coding IDO2 indoleamine 2,3-dioxygenase 2 O IDO-2|indoleamine 2,3-dioxygenase-like 1 protein|indoleamine 2,3-dioxygenase-like protein 1|indoleamine-pyrrole 2,3 dioxygenase-like 1|indoleamine-pyrrole 2,3-dioxygenase-like protein 1 20121230 -9606 169436 C9orf96 - RP11-244N20.8|SgK071|Sk521 HGNC:28669|Ensembl:ENSG00000198870|HPRD:12990|Vega:OTTHUMG00000020862 9 9q34.2 chromosome 9 open reading frame 96 protein-coding C9orf96 chromosome 9 open reading frame 96 O protein kinase-like protein SgK071|sugen kinase 071 20121230 -9606 169522 KCNV2 - KV11.1|Kv8.2|RCD3B HGNC:19698|MIM:607604|Ensembl:ENSG00000168263|HPRD:12126|Vega:OTTHUMG00000019449 9 9p24.2 potassium channel, subfamily V, member 2 protein-coding KCNV2 potassium channel, subfamily V, member 2 O potassium voltage-gated channel subfamily V member 2|voltage-gated potassium channel subunit Kv8.2 20121230 -9606 169611 OLFML2A RP11-175D17.4 PRO34319 HGNC:27270|Ensembl:ENSG00000185585|HPRD:14876|Vega:OTTHUMG00000020663 9 9q33.3 olfactomedin-like 2A protein-coding OLFML2A olfactomedin-like 2A O olfactomedin-like protein 2A|photomedin-1 20121230 -9606 169693 TMEM252 - C9orf71|RP11-274B18.1 HGNC:28537|Ensembl:ENSG00000181778|HPRD:18569|Vega:OTTHUMG00000019967 9 9q21.11 transmembrane protein 252 protein-coding TMEM252 transmembrane protein 252 O transmembrane protein C9orf71 20121230 -9606 169714 QSOX2 RP11-83N9.4 QSCN6L1|SOXN HGNC:30249|MIM:612860|Ensembl:ENSG00000165661|HPRD:17942|Vega:OTTHUMG00000020923 9 9q34.3 quiescin Q6 sulfhydryl oxidase 2 protein-coding QSOX2 quiescin Q6 sulfhydryl oxidase 2 O neuroblastoma-derived sulfhydryl oxidase|quiescin Q6-like 1|quiescin Q6-like protein 1|sulfhydryl oxidase 2 20121230 -9606 169792 GLIS3 - ZNF515 HGNC:28510|MIM:610192|Ensembl:ENSG00000107249|HPRD:13582|Vega:OTTHUMG00000019463 9 9p24.2 GLIS family zinc finger 3 protein-coding GLIS3 GLIS family zinc finger 3 O GLI-similar 3|OK/KNS-cl.4|zinc finger protein 515|zinc finger protein GLIS3 20121230 -9606 169834 ZNF883 - - HGNC:27271 9 9q32 zinc finger protein 883 protein-coding ZNF883 zinc finger protein 883 O - 20121230 -9606 169841 ZNF169 RP11-307E17.10-001 - HGNC:12957|MIM:603404|Ensembl:ENSG00000175787|HPRD:04554|Vega:OTTHUMG00000020264 9 9q22.32 zinc finger protein 169 protein-coding ZNF169 zinc finger protein 169 O - 20121230 -9606 169966 FAM46D - CT1.26|CT112 HGNC:28399|Ensembl:ENSG00000174016|HPRD:06643|Vega:OTTHUMG00000021902 X Xq21.1 family with sequence similarity 46, member D protein-coding FAM46D family with sequence similarity 46, member D O cancer/testis antigen 112|protein FAM46D 20121230 -9606 169981 SPIN3 - SPIN-3|bA445O16.1 HGNC:27272|Ensembl:ENSG00000204271|HPRD:18097|Vega:OTTHUMG00000021677 X Xp11.21 spindlin family, member 3 protein-coding SPIN3 spindlin family, member 3 O bA445O16.1 (DXF34)|spindlin-3|spindlin-like protein 3 20121230 -9606 170062 FAM47B RP13-520K9.1 - HGNC:26659|Ensembl:ENSG00000189132|HPRD:06559|Vega:OTTHUMG00000021345 X Xp21.1 family with sequence similarity 47, member B protein-coding FAM47B family with sequence similarity 47, member B O protein FAM47B 20121230 -9606 170063 CXorf22 RP11-307A17.1 - HGNC:28546|Ensembl:ENSG00000165164|HPRD:06649|Vega:OTTHUMG00000021350 X Xp21.1 chromosome X open reading frame 22 protein-coding CXorf22 chromosome X open reading frame 22 O uncharacterized protein CXorf22 20121230 -9606 170067 SUPT20HL2 - FAM48B1|FAM48B2 HGNC:31797 X Xp22.11 suppressor of Ty 20 homolog (S. cerevisiae)-like 2 protein-coding SUPT20HL2 suppressor of Ty 20 homolog (S. cerevisiae)-like 2 O family with sequence similarity 48, member B1|family with sequence similarity 48, member B2|putative protein FAM48B2 20121230 -9606 170082 TCEANC - - HGNC:28277|Ensembl:ENSG00000176896 X Xp22.2 transcription elongation factor A (SII) N-terminal and central domain containing protein-coding TCEANC transcription elongation factor A (SII) N-terminal and central domain containing O TFIIS central domain-containing protein 1|TFS2-M domain-containing protein 1|transcription elongation factor A N-terminal and central domain-containing protein 20121230 -9606 170261 ZCCHC12 - PNMA7A|SIZN|SIZN1 HGNC:27273|MIM:300701|Ensembl:ENSG00000174460|HPRD:06616|Vega:OTTHUMG00000022261 X Xq24 zinc finger, CCHC domain containing 12 protein-coding ZCCHC12 zinc finger, CCHC domain containing 12 O 2810028A01Rik|paraneoplastic Ma antigen family member 7A|smad-interacting zinc finger protein 1|zinc finger CCHC domain-containing protein 12 20121230 -9606 170302 ARX - CT121|EIEE1|ISSX|MRX29|MRX32|MRX33|MRX36|MRX38|MRX43|MRX54|MRX76|MRX87|MRXS1|PRTS HGNC:18060|MIM:300382|Ensembl:ENSG00000004848|HPRD:02307|Vega:OTTHUMG00000021275 X Xp21.3 aristaless related homeobox protein-coding ARX aristaless related homeobox O aristaless-related homeobox, X-linked|cancer/testis antigen 121|homeobox protein ARX 20121230 -9606 170370 FAM170B - C10orf73 HGNC:19736|Ensembl:ENSG00000172538|Vega:OTTHUMG00000018187 10 10q11.23 family with sequence similarity 170, member B protein-coding FAM170B family with sequence similarity 170, member B O putative protein FAM170B 20121230 -9606 170371 C10orf128 RP11-507P23.5 - HGNC:27274|Ensembl:ENSG00000204161|Vega:OTTHUMG00000018188 10 10q11.23 chromosome 10 open reading frame 128 protein-coding C10orf128 chromosome 10 open reading frame 128 O putative uncharacterized protein C10orf128 20121230 -9606 170384 FUT11 - - HGNC:19233|Ensembl:ENSG00000196968|HPRD:13555|Vega:OTTHUMG00000018483 10 10q22.2 fucosyltransferase 11 (alpha (1,3) fucosyltransferase) protein-coding FUT11 fucosyltransferase 11 (alpha (1,3) fucosyltransferase) O alpha-(1,3)-fucosyltransferase 11|fuc-TXI|fucT-XI|fucosyltransferase XI|galactoside 3-L-fucosyltransferase 11 20121230 -9606 170392 OIT3 UNQ826/PRO1753 LZP HGNC:29953|MIM:609330|Ensembl:ENSG00000138315|HPRD:17660|Vega:OTTHUMG00000018444 10 10q22.1 oncoprotein induced transcript 3 protein-coding OIT3 oncoprotein induced transcript 3 O liver-specific ZP domain-containing protein|liver-specific zona pellucida domain-containing protein|oncoprotein-induced transcript 3 protein 20121230 -9606 170393 C10orf91 - RP11-432J24.4|bA432J24.4 HGNC:27275|Ensembl:ENSG00000180066|HPRD:12557|Vega:OTTHUMG00000019289 10 10q26.3 chromosome 10 open reading frame 91 protein-coding C10orf91 chromosome 10 open reading frame 91 O uncharacterized protein C10orf91 20121230 -9606 170394 PWWP2B - PWWP2|RP11-273H7.1|bA432J24.1|pp8607 HGNC:25150|Ensembl:ENSG00000171813|HPRD:11465|Vega:OTTHUMG00000019286 10 10q26.3 PWWP domain containing 2B protein-coding PWWP2B PWWP domain containing 2B O PWWP domain containing 2|PWWP domain-containing protein 2B 20121230 -9606 170425 LOC170425 - - - 10 10q23.1 uncharacterized LOC170425 miscRNA - - - - 20121230 -9606 170463 SSBP4 - - HGNC:15676|MIM:607391|Ensembl:ENSG00000130511|HPRD:09579 19 19p13.1 single stranded DNA binding protein 4 protein-coding SSBP4 single stranded DNA binding protein 4 O single-stranded DNA-binding protein 4 20121230 -9606 170474 HFM - - MIM:164210 14 14q32 Hemifacial microsomia unknown - - - - 20120622 -9606 170482 CLEC4C UNQ9361/PRO34150 BDCA2|CD303|CLECSF11|CLECSF7|DLEC|HECL|PRO34150 HGNC:13258|MIM:606677|Ensembl:ENSG00000198178|HPRD:09453|Vega:OTTHUMG00000168441 12 12p13.2-p12.3 C-type lectin domain family 4, member C protein-coding CLEC4C C-type lectin domain family 4, member C O BDCA-2|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 11|C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 7|C-type lectin domain family 4 member C|C-type lectin superfamily member 7|blood dendritic cell antigen 2 protein|dendritic cell lectin b|dendritic lectin 20121230 -9606 170485 ARF4P2 - dJ885L7.7 HGNC:16599 20 20q13.33 ADP-ribosylation factor 4 pseudogene 2 pseudo ARF4P2 ADP-ribosylation factor 4 pseudogene 2 O - 20121230 -9606 170487 ACTL10 - C20orf134|dJ63M2.2 HGNC:16127|Ensembl:ENSG00000182584|HPRD:18570|Vega:OTTHUMG00000032262 20 20q11.22 actin-like 10 protein-coding ACTL10 actin-like 10 O actin-like protein 10 20121230 -9606 170503 CDC42P1 - bK3216D2.3 HGNC:16339 20 20q11.22 cell division cycle 42 pseudogene 1 pseudo CDC42P1 cell division cycle 42 pseudogene 1 O - 20121230 -9606 170504 COX6CP2 - dJ894K16.1 HGNC:16600 20 20q13.13 cytochrome c oxidase subunit VIc pseudogene 2 pseudo COX6CP2 cytochrome c oxidase subunit VIc pseudogene 2 O - 20121230 -9606 170506 DHX36 - DDX36|G4R1|MLEL1|RHAU HGNC:14410|MIM:612767|Ensembl:ENSG00000174953|HPRD:09918|Vega:OTTHUMG00000159109 3 3q25.2 DEAH (Asp-Glu-Ala-His) box polypeptide 36 protein-coding DHX36 DEAH (Asp-Glu-Ala-His) box polypeptide 36 O DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 36|DEAH box protein 36|G4 resolvase-1|MLE-like protein 1|RNA helicase associated with AU-rich element ARE|probable ATP-dependent RNA helicase DHX36 20121230 -9606 170507 DFNA52 - DFNA42 HGNC:15821|MIM:607683 5 5q31.1-q32 deafness, autosomal dominant 52 unknown DFNA52 deafness, autosomal dominant 52 O - 20120622 -9606 170508 DFNB33 - - HGNC:16359|MIM:607239 10 10p11.23-q21.1 deafness, autosomal recessive 33 unknown DFNB33 deafness, autosomal recessive 33 O - 20120622 -9606 170510 EIF4EBP2P - dJ862K6.3 HGNC:16596 20 20q13.11 eukaryotic translation initiation factor 4E binding protein 2 pseudogene pseudo EIF4EBP2P eukaryotic translation initiation factor 4E binding protein 2 pseudogene O - 20121230 -9606 170511 ENSAP1 - ENSAP|dJ822J19.1 HGNC:16588 20 20p12.1 endosulfine alpha pseudogene 1 pseudo ENSAP1 endosulfine alpha pseudogene 1 O - 20121230 -9606 170513 FAT1P1 - dJ697P8.1 HGNC:16582 20 20p12.2 FAT tumor suppressor homolog 1 (Drosophila) pseudogene 1 pseudo FAT1P1 FAT tumor suppressor homolog 1 (Drosophila) pseudogene 1 O - 20121230 -9606 170514 FTLP1 - FTLP|bA465L10.3 HGNC:16547 20 20q13.12 ferritin, light polypeptide pseudogene 1 pseudo FTLP1 ferritin, light polypeptide pseudogene 1 O - 20121230 -9606 170516 GAPDHP2 - GAPDP2|dJ585I14.1 HGNC:16577 20 20p12.1 glyceraldehyde-3-phosphate dehydrogenase pseudogene 2 pseudo GAPDHP2 glyceraldehyde-3-phosphate dehydrogenase pseudogene 2 O - 20121230 -9606 170517 GCNT1P1 - GCNT1P|bA189K21.2 HGNC:16532 20 20p11.23 glucosaminyl (N-acetyl) transferase 1, core 2 pseudogene 1 pseudo GCNT1P1 glucosaminyl (N-acetyl) transferase 1, core 2 pseudogene 1 O - 20121230 -9606 170522 GLRXP1 - GLRXP|bA425M5.1 HGNC:16544 20 20q11.2 glutaredoxin (thioltransferase) pseudogene 1 pseudo GLRXP1 glutaredoxin (thioltransferase) pseudogene 1 O - 20121230 -9606 170523 GSTM3P1 - GSTM3P|dJ984P4.2 HGNC:16606 20 20p11.22 glutathione S-transferase mu 3 pseudogene 1 pseudo GSTM3P1 glutathione S-transferase mu 3 pseudogene 1 O - 20121230 -9606 170524 HNRNPA1P3 - HNRPA1P3|dJ447F3.1 HGNC:16567 20 20q13.12 heterogeneous nuclear ribonucleoprotein A1 pseudogene 3 pseudo HNRNPA1P3 heterogeneous nuclear ribonucleoprotein A1 pseudogene 3 O - 20121230 -9606 170526 HNRNPA3P2 - HNRPA3P|HNRPA3P2|dJ977B1.2 HGNC:16605 20 20q11.23 heterogeneous nuclear ribonucleoprotein A3 pseudogene 2 pseudo HNRNPA3P2 heterogeneous nuclear ribonucleoprotein A3 pseudogene 2 O - 20121230 -9606 170527 KRT18P3 - bA359G22.1 HGNC:16540|Vega:OTTHUMG00000032046 20 20p11.21 keratin 18 pseudogene 3 pseudo KRT18P3 keratin 18 pseudogene 3 O - 20121230 -9606 170529 RPSAP1 - LAMR1P|LAMR1P1|RPSA_24_1712|dJ1193N1.1 HGNC:16560 20 20q13.13 ribosomal protein SA pseudogene 1 pseudo RPSAP1 ribosomal protein SA pseudogene 1 O - 20121230 -9606 170530 MRX78 - - HGNC:17942|MIM:300551 X Xp11.4-q21.1 mental retardation, X-linked 78 unknown MRX78 mental retardation, X-linked 78 O - 20120622 -9606 170532 OTSC3 - - HGNC:17831|MIM:608244 6 6p22.3-p21.2 otosclerosis 3 unknown OTSC3 otosclerosis 3 O - 20120622 -9606 170533 PA2G4P2 - PA2G4L5|bA102J14.2 HGNC:16531 20 20p12.1 proliferation-associated 2G4 pseudogene 2 pseudo PA2G4P2 proliferation-associated 2G4 pseudogene 2 O - 20121230 -9606 170534 PARK10 - AAOPD HGNC:17833|MIM:606852 1 1p Parkinson disease 10 (susceptibility) unknown PARK10 Parkinson disease 10 (susceptibility) O - 20120622 -9606 170535 PGAM3P - dJ1128N12.1 HGNC:16557 20 20p12.2 phosphoglycerate mutase 3, pseudogene pseudo PGAM3P phosphoglycerate mutase 3, pseudogene O - 20121230 -9606 170536 PPIAP21 - PPIAL|dJ269M15.1 HGNC:16246 20 20q12 peptidylprolyl isomerase A (cyclophilin A) pseudogene 21 pseudo PPIAP21 peptidylprolyl isomerase A (cyclophilin A) pseudogene 21 O - 20121230 -9606 170537 PPIAP2 - bA384D7.2 HGNC:16542 20 20p11.21 peptidylprolyl isomerase A (cyclophilin A) pseudogene 2 pseudo PPIAP2 peptidylprolyl isomerase A (cyclophilin A) pseudogene 2 O - 20121230 -9606 170539 PPIAP3 - bA425M5.2 HGNC:16545 20 20q11.23 peptidylprolyl isomerase A (cyclophilin A) pseudogene 3 pseudo PPIAP3 peptidylprolyl isomerase A (cyclophilin A) pseudogene 3 O - 20121230 -9606 170540 PPIAP17 - PPIP11|bA494B22.1 HGNC:16334 20 20p12.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene 17 pseudo PPIAP17 peptidylprolyl isomerase A (cyclophilin A) pseudogene 17 O - 20121230 -9606 170541 PSMD10P1 - PSMD10P|dJ914P20.4 HGNC:16602 20 20q13.13 proteasome 26S subunit, non-ATPase, 10 pseudogene 1 pseudo PSMD10P1 proteasome 26S subunit, non-ATPase, 10 pseudogene 1 O - 20121230 -9606 170542 PTMAP6 - dJ539E24.2 HGNC:16573 20 20q13.31 prothymosin, alpha pseudogene 6 pseudo PTMAP6 prothymosin, alpha pseudogene 6 O - 20121230 -9606 170543 RNF11P2 - RNF11B|bA280O9.1 HGNC:16535 20 20p12.1 ring finger protein 11 pseudogene 2 pseudo RNF11P2 ring finger protein 11 pseudogene 2 O - 20121230 -9606 170545 SCA21 - - HGNC:17172|MIM:607454 7 7p21.3-p15.1 spinocerebellar ataxia 21 unknown SCA21 spinocerebellar ataxia 21 O - 20120622 -9606 170547 AIMP1P1 - SCYE1P|bA400P21.1 HGNC:16543 20 20p12.1 aminoacyl tRNA synthetase complex-interacting multifunctional protein 1 pseudogene 1 pseudo AIMP1P1 aminoacyl tRNA synthetase complex-interacting multifunctional protein 1 pseudogene 1 O - 20121230 -9606 170548 SF3A3P1 - SF3A3P|dJ581P3.1 HGNC:16576 20 20p13 splicing factor 3a, subunit 3 pseudogene 1 pseudo SF3A3P1 splicing factor 3a, subunit 3 pseudogene 1 O - 20121230 -9606 170549 SNAP23P - dJ155G6.3 HGNC:16561 20 20q13.13 synaptosomal-associated protein, 23kDa pseudogene pseudo SNAP23P synaptosomal-associated protein, 23kDa pseudogene O - 20121230 -9606 170550 SNRPFP1 - dJ1041C10.2 HGNC:16551 20 20q13.13 small nuclear ribonucleoprotein polypeptide F pseudogene 1 pseudo SNRPFP1 small nuclear ribonucleoprotein polypeptide F pseudogene 1 O - 20121230 -9606 170552 SRMP1 - dJ1057D4.1 HGNC:16552 20 20q13.13 spermidine synthase pseudogene 1 pseudo SRMP1 spermidine synthase pseudogene 1 O - 20121230 -9606 170554 DYNLT3P1 - TCTE1P|dJ531H16.2 HGNC:16571 20 20p12.1 dynein, light chain, Tctex-type 3 pseudogene 1 pseudo DYNLT3P1 dynein, light chain, Tctex-type 3 pseudogene 1 O - 20121230 -9606 170555 TPM3P2 - TPM5P|dJ1125A11.2 HGNC:16556 20 20q11.22 tropomyosin 3 pseudogene 2 pseudo TPM3P2 tropomyosin 3 pseudogene 2 O - 20121230 -9606 170556 UBE2V1P1 - dJ687F11.3 HGNC:16581 20 20p13 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 1 pseudo UBE2V1P1 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 1 O - 20121230 -9606 170557 UBL6 - - HGNC:15953 20 - ubiquitin-like 6 protein-coding UBL6 ubiquitin-like 6 O - 20080828 -9606 170559 XPOTP1 - XPO3P1|dJ785G19.1 HGNC:16586 20 20q11.22 exportin, tRNA (nuclear export receptor for tRNAs) pseudogene 1 pseudo XPOTP1 exportin, tRNA (nuclear export receptor for tRNAs) pseudogene 1 O - 20121230 -9606 170572 HTR3C - - HGNC:24003|MIM:610121|Ensembl:ENSG00000178084|HPRD:17120|Vega:OTTHUMG00000156862 3 3q27.1 5-hydroxytryptamine (serotonin) receptor 3C, ionotropic protein-coding HTR3C 5-hydroxytryptamine (serotonin) receptor 3C, ionotropic O 5-HT3-C|5-HT3C|5-hydroxytryptamine (serotonin) receptor 3, family member C|5-hydroxytryptamine receptor 3 subunit C|5-hydroxytryptamine receptor 3C|serotonin receptor 3C 20121230 -9606 170575 GIMAP1 - HIMAP1|IMAP1|IMAP38 HGNC:23237|MIM:608084|Ensembl:ENSG00000213203|HPRD:16278|Vega:OTTHUMG00000157489 7 7q36.1 GTPase, IMAP family member 1 protein-coding GIMAP1 GTPase, IMAP family member 1 O GTPase IMAP family member 1|immunity associated protein 1 20121230 -9606 170589 GPHA2 - A2|GPA2|ZSIG51 HGNC:18054|MIM:609651|Ensembl:ENSG00000149735|HPRD:17052|Vega:OTTHUMG00000165631 11 11q13.1 glycoprotein hormone alpha 2 protein-coding GPHA2 glycoprotein hormone alpha 2 O cysteine knot protein|glycoprotein alpha 2|glycoprotein hormone alpha-2|putative secreted protein Zsig51|thyrostimulin subunit alpha 20121230 -9606 170591 S100Z - Gm625|S100-zeta HGNC:30367|MIM:610103|Ensembl:ENSG00000171643|HPRD:15291|Vega:OTTHUMG00000162441 5 5q13.3 S100 calcium binding protein Z protein-coding S100Z S100 calcium binding protein Z O S100 calcium binding protein, zeta|S100 calcium-binding protein Z|protein S100-Z 20121230 -9606 170592 UVM1 - - MIM:606660 3 3q24-q26 Melanoma, uveal, susceptibility to, 1 unknown - - - - 20120622 -9606 170593 UBM2 - - MIM:606661 3 3p25.2-p25.1 Melanoma, uveal, susceptibility to, 2 unknown - - - - 20120622 -9606 170594 WS2C - - MIM:606662 8 8p23 Waardenburg syndrome, type IIC unknown - - - - 20120622 -9606 170595 IBD8 - - HGNC:20235|MIM:606668 16 16p inflammatory bowel disease 8 unknown IBD8 inflammatory bowel disease 8 O - 20120622 -9606 170622 COMMD6 RP11-173B14.2 Acrg HGNC:24015|MIM:612377|Ensembl:ENSG00000188243|HPRD:13084|Vega:OTTHUMG00000017089 13 13q22 COMM domain containing 6 protein-coding COMMD6 COMM domain containing 6 O Acrg embryonic lethality minimal region ortholog|COMM domain-containing protein 6 20121230 -9606 170626 XAGE3 RP13-77O11.6 CT12.3a|CT12.3b|GAGED4|PLAC6|XAGE-3|pp9012 HGNC:14618|MIM:300740|Ensembl:ENSG00000171402|HPRD:06676|Vega:OTTHUMG00000021587 X Xp11.22 X antigen family, member 3 protein-coding XAGE3 X antigen family, member 3 O CT12.3|G antigen family D member 4|G antigen, family D, 4|cancer/testis antigen 12.3|cancer/testis antigen family 12, member 3a|cancer/testis antigen family 12, member 3b|placenta-specific 6|placenta-specific gene 6 protein|protein XAGE-3 20121230 -9606 170627 XAGE5 RP13-77O11.4 CT12.5|GAGED5|XAGE-5 HGNC:30930|Ensembl:ENSG00000171405|HPRD:06754|Vega:OTTHUMG00000021589 X Xp11.22 X antigen family, member 5 protein-coding XAGE5 X antigen family, member 5 O G antigen family D member 5|G antigen, family D, 5|cancer/testis antigen 12.5|cancer/testis antigen family 12, member 5|protein XAGE-5 20121230 -9606 170679 PSORS1C1 DADB-141O4.2 C6orf16|SEEK1 HGNC:17202|MIM:613525|Ensembl:ENSG00000204540|HPRD:17920|Vega:OTTHUMG00000031077 6 6p21.3 psoriasis susceptibility 1 candidate 1 protein-coding PSORS1C1 psoriasis susceptibility 1 candidate 1 O psoriasis susceptibility 1 candidate gene 1 protein 20121230 -9606 170680 PSORS1C2 DADB-141O4.1 C6orf17|SPR1 HGNC:17199|MIM:613526|Ensembl:ENSG00000204538|HPRD:17921|Vega:OTTHUMG00000031081 6 6p21.3 psoriasis susceptibility 1 candidate 2 protein-coding PSORS1C2 psoriasis susceptibility 1 candidate 2 O psoriasis susceptibility 1 candidate gene 2 protein 20121230 -9606 170682 SLEH1 - - HGNC:17420|MIM:607279 11 11q14 systemic lupus erythematosus with hemolytic anemia 1 unknown SLEH1 systemic lupus erythematosus with hemolytic anemia 1 O - 20120622 -9606 170685 NUDT10 RP11-348F1.4 APS2|DIPP3a|hDIPP3alpha HGNC:17621|MIM:300527|Ensembl:ENSG00000122824|HPRD:17651|Vega:OTTHUMG00000021530 X Xp11.23 nudix (nucleoside diphosphate linked moiety X)-type motif 10 protein-coding NUDT10 nudix (nucleoside diphosphate linked moiety X)-type motif 10 O DIPP-3-alpha|DIPP3-alpha|diadenosine 5',5'''-P1,P6-hexaphosphate hydrolase 3-alpha|diadenosine hexaphosphate hydrolase (AMP-forming)|diphosphoinositol polyphosphate phosphohydrolase 3-alpha|diphosphoinositol polyphosphate phosphohydrolase type 3 alpha|hAps2|nucleoside diphosphate-linked moiety X motif 10|nudix motif 10 20121230 -9606 170689 ADAMTS15 - - HGNC:16305|MIM:607509|Ensembl:ENSG00000166106|HPRD:06330|Vega:OTTHUMG00000165657 11 11q25 ADAM metallopeptidase with thrombospondin type 1 motif, 15 protein-coding ADAMTS15 ADAM metallopeptidase with thrombospondin type 1 motif, 15 O A disintegrin and metalloproteinase with thrombospondin motifs 15|ADAM-TS 15|ADAM-TS15|ADAMTS-15|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 15, preproprotein|metalloprotease disintegrin 15 with thrombospondin domains 20121230 -9606 170690 ADAMTS16 - ADAMTS16s HGNC:17108|MIM:607510|Ensembl:ENSG00000145536|HPRD:06331|Vega:OTTHUMG00000161663 5 5p15 ADAM metallopeptidase with thrombospondin type 1 motif, 16 protein-coding ADAMTS16 ADAM metallopeptidase with thrombospondin type 1 motif, 16 O A disintegrin and metalloproteinase with thrombospondin motifs 16|ADAM-TS 16|ADAM-TS16|ADAMTS-16|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 16 20121230 -9606 170691 ADAMTS17 - - HGNC:17109|MIM:607511|Ensembl:ENSG00000140470|HPRD:06332|Vega:OTTHUMG00000149867 15 15q24 ADAM metallopeptidase with thrombospondin type 1 motif, 17 protein-coding ADAMTS17 ADAM metallopeptidase with thrombospondin type 1 motif, 17 O A disintegrin and metalloproteinase with thrombospondin motifs 17|ADAM-TS 17|ADAM-TS17|ADAMTS-17|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 17 20121230 -9606 170692 ADAMTS18 - ADAMTS21|KNO2 HGNC:17110|MIM:607512|Ensembl:ENSG00000140873|HPRD:06333|Vega:OTTHUMG00000137619 16 16q23 ADAM metallopeptidase with thrombospondin type 1 motif, 18 protein-coding ADAMTS18 ADAM metallopeptidase with thrombospondin type 1 motif, 18 O A disintegrin and metalloproteinase with thrombospondin motifs 18|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 18|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 21|disintegrin and metalloprotease-like protein 20121230 -9606 170712 COX7B2 - - HGNC:24381|MIM:609811|Ensembl:ENSG00000170516|HPRD:13089|Vega:OTTHUMG00000099423 4 4p12 cytochrome c oxidase subunit VIIb2 protein-coding COX7B2 cytochrome c oxidase subunit VIIb2 O cytochrome c oxidase polypeptide VIIb2|cytochrome c oxidase subunit 7B2, mitochondrial 20121230 -9606 170815 BMIQ1 - - HGNC:23827|MIM:606641 7 7q32.3 body mass index QTL 1 unknown BMIQ1 body mass index QTL 1 O - 20120622 -9606 170825 GSX2 - GSH2 HGNC:24959|Ensembl:ENSG00000180613|HPRD:13612|Vega:OTTHUMG00000128696 4 4q12 GS homeobox 2 protein-coding GSX2 GS homeobox 2 O homeobox protein GSH-2 20121230 -9606 170850 KCNG3 - KV10.1|KV6.3 HGNC:18306|MIM:606767|Ensembl:ENSG00000171126|HPRD:16232|Vega:OTTHUMG00000128604 2 2p21 potassium voltage-gated channel, subfamily G, member 3 protein-coding KCNG3 potassium voltage-gated channel, subfamily G, member 3 O potassium voltage-gated channel subfamily G member 3|voltage-gated potassium channel 6.3|voltage-gated potassium channel Kv10.1|voltage-gated potassium channel subunit Kv10.1|voltage-gated potassium channel subunit Kv6.3|voltage-gated potassium channel subunit Kv6.4 20121230 -9606 170949 DEFT1P - DEFQ1|DEFT1 HGNC:18339 8 8p23.1 defensin, theta 1 pseudogene pseudo DEFT1P defensin, theta 1 pseudogene O - 20121230 -9606 170954 PPP1R18 DAAP-285E11.2 HKMT1098|KIAA1949 HGNC:29413|MIM:610990|Ensembl:ENSG00000146112|Vega:OTTHUMG00000031237 6 6p21.3 protein phosphatase 1, regulatory subunit 18 protein-coding PPP1R18 protein phosphatase 1, regulatory subunit 18 O phostensin|protein phosphatase 1 F-actin cytoskeleton targeting subunit|protein phosphatase 1 regulatory subunit 18 20121230 -9606 170958 ZNF525 - - HGNC:29423 19 19q13.42 zinc finger protein 525 pseudo ZNF525 zinc finger protein 525 O - 20121230 -9606 170959 ZNF431 - - HGNC:20809|Ensembl:ENSG00000196705|HPRD:15789 19 19p12 zinc finger protein 431 protein-coding ZNF431 zinc finger protein 431 O - 20121230 -9606 170960 ZNF721 - - HGNC:29425|Ensembl:ENSG00000182903|HPRD:13910|Vega:OTTHUMG00000112450 4 4p16.3 zinc finger protein 721 protein-coding ZNF721 zinc finger protein 721 O - 20121230 -9606 170961 ANKRD24 - - HGNC:29424|Ensembl:ENSG00000089847 19 19p13.3 ankyrin repeat domain 24 protein-coding ANKRD24 ankyrin repeat domain 24 O ankyrin repeat domain-containing protein 24 20121230 -9606 171013 SLI1 - - MIM:606711 16 16q Specific language impairment QTL, 1 unknown - - - - 20120622 -9606 171014 SLI2 - - MIM:606712 19 19q Specific language impairment QTL, 2 unknown - - - - 20120622 -9606 171017 ZNF384 - CAGH1|CAGH1A|CIZ|ERDA2|NMP4|NP|TNRC1 HGNC:11955|MIM:609951|Ensembl:ENSG00000126746|HPRD:18332|Vega:OTTHUMG00000168716 12 12p12 zinc finger protein 384 protein-coding ZNF384 zinc finger protein 384 O CAG repeat protein 1|Cas-interacting zinc finger protein|expanded repeat domain, CAG/CTG 2|nuclear matrix transcription factor 4|trinucleotide repeat-containing gene 1 protein 20121230 -9606 171019 ADAMTS19 - - HGNC:17111|MIM:607513|Ensembl:ENSG00000145808|HPRD:06334|Vega:OTTHUMG00000128990 5 5q23.3 ADAM metallopeptidase with thrombospondin type 1 motif, 19 protein-coding ADAMTS19 ADAM metallopeptidase with thrombospondin type 1 motif, 19 O A disintegrin and metalloproteinase with thrombospondin motifs 19|ADAM-TS 19|ADAM-TS19|ADAMTS-19|a disintegrin-like and metalloprotease (reprolysin type) with thrombospondin type 1 motif, 19 20121230 -9606 171022 ABHD11-AS1 - NCRNA00035|WBSCR26 HGNC:18289|MIM:612545 7 7q11.23 ABHD11 antisense RNA 1 (tail to tail) miscRNA ABHD11-AS1 ABHD11 antisense RNA 1 (tail to tail) O - 20121230 -9606 171023 ASXL1 RP11-358N2.1 BOPS|MDS HGNC:18318|MIM:612990|Ensembl:ENSG00000171456|HPRD:16516|Vega:OTTHUMG00000032218 20 20q11 additional sex combs like 1 (Drosophila) protein-coding ASXL1 additional sex combs like 1 (Drosophila) O additional sex combs-like protein 1|putative Polycomb group protein ASXL1 20121230 -9606 171024 SYNPO2 - - HGNC:17732|Ensembl:ENSG00000172403|HPRD:15456|Vega:OTTHUMG00000161165 4 4q26 synaptopodin 2 protein-coding SYNPO2 synaptopodin 2 O genethonin 2|genethonin-2|myopodin|synaptopodin-2 20121230 -9606 171089 DYX5 - - HGNC:18343|MIM:606896 3 3p12-q13 dyslexia susceptibility 5 unknown DYX5 dyslexia susceptibility 5 O - 20120622 -9606 171157 SHFM5 - - HGNC:35421|MIM:606708 2 2q31 split hand/foot malformation (ectrodactyly) type 5 unknown SHFM5 split hand/foot malformation (ectrodactyly) type 5 O - 20120622 -9606 171169 SPACA4 UNQ3046/PRO9862 SAMP14 HGNC:16441|MIM:609932|Ensembl:ENSG00000177202|HPRD:15421 19 19q13.33 sperm acrosome associated 4 protein-coding SPACA4 sperm acrosome associated 4 O sperm acrosomal membrane protein 14|sperm acrosomal membrane-associated protein 14|sperm acrosome membrane-associated protein 4 20121230 -9606 171176 NICN2P - - HGNC:18322 X Xp11.3-p11.22 nicolin 2, pseudogene pseudo NICN2P nicolin 2, pseudogene O - 20121230 -9606 171177 RHOV - ARHV|CHP|WRCH2 HGNC:18313|Ensembl:ENSG00000104140|HPRD:10191|Vega:OTTHUMG00000130134 15 15q13.3 ras homolog family member V protein-coding RHOV ras homolog family member V O CDC42-like GTPase 2|GTP-binding protein-like 2|Rho GTPase-like protein ARHV|WRCH-2|WRCH1-related GTPase|Wnt-1 regulated Cdc42 homolog 2|Wnt-1 responsive Cdc42 homolog 2|ras homolog gene family, member V|rho-related GTP-binding protein RhoV 20121230 -9606 171220 DSTNP2 - - HGNC:34546 12 12p13 destrin (actin depolymerizing factor) pseudogene 2 pseudo DSTNP2 destrin (actin depolymerizing factor) pseudogene 2 O - 20121230 -9606 171221 DNAJB1P1 - DNAJB1P|HSP40|psiHSP40 HGNC:24988 2 2q32.3 DnaJ (Hsp40) homolog, subfamily B, member 1 pseudogene 1 pseudo DNAJB1P1 DnaJ (Hsp40) homolog, subfamily B, member 1 pseudogene 1 O - 20121230 -9606 171222 UBE2L5P RP11-223E19.1 UBCH7N2|UBE2L5 HGNC:13477 13 13q12.3 ubiquitin-conjugating enzyme E2L 5 (pseudogene) pseudo UBE2L5P ubiquitin-conjugating enzyme E2L 5 (pseudogene) O - 20121230 -9606 171389 NLRP6 - CLR11.4|NALP6|PAN3|PYPAF5 HGNC:22944|MIM:609650|Ensembl:ENSG00000174885|HPRD:14806|Vega:OTTHUMG00000119070 11 11p15 NLR family, pyrin domain containing 6 protein-coding NLRP6 NLR family, pyrin domain containing 6 O NACHT, LRR and PYD containing protein 6|NACHT, LRR and PYD domains-containing protein 6|NACHT, leucine rich repeat and PYD containing 6|PYRIN-containing APAF1-like protein 5|angiotensin II/vasopressin receptor|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 6 20121230 -9606 171391 NS3BP - - - 11 11p15.5 NS3BP miscRNA - - - - 20121230 -9606 171392 ZNF675 - TBZF|TIZ HGNC:30768|Ensembl:ENSG00000197372|HPRD:18193 19 19p12 zinc finger protein 675 protein-coding ZNF675 zinc finger protein 675 O TRAF6 inhibitory zinc finger|TRAF6-binding zinc finger protein|TRAF6-inhibitory zinc finger protein 20121230 -9606 171416 AF357533 - - - 1 1q31.3 thioredoxin pseudogene pseudo - - - - 20121230 -9606 171417 LOC171417 - - - 2 2q31.1 thioredoxin 1 pseudogene 7 pseudo - - - - 20121230 -9606 171418 GLRXP2 - - HGNC:18376 14 14q32.11 glutaredoxin (thioltransferase) pseudogene 2 pseudo GLRXP2 glutaredoxin (thioltransferase) pseudogene 2 O - 20121230 -9606 171419 LOC171419 - - - 1 1q12 thioredoxin pseudogene pseudo - - - - 20121230 -9606 171420 EPF5 - - - 9 9q32 EPF5 pseudogene pseudo - - - - 20121230 -9606 171421 EPF8 - - - 16 16p12.1 heat shock 10kDa protein 1 (chaperonin 10) pseudogene pseudo - - - - 20121230 -9606 171422 CRPP1 - - HGNC:2368 1 1q23.2 C-reactive protein pseudogene 1 pseudo CRPP1 C-reactive protein pseudogene 1 O - 20121230 -9606 171423 PDIA3P - ERp60|GRP58P HGNC:4607 1 1q21.1 protein disulfide isomerase family A, member 3 pseudogene pseudo PDIA3P protein disulfide isomerase family A, member 3 pseudogene O - 20121230 -9606 171424 SPA17P1 - Sp17-2 HGNC:23224 10 10q22.2 sperm autoantigenic protein 17 pseudogene 1 pseudo SPA17P1 sperm autoantigenic protein 17 pseudogene 1 O - 20121230 -9606 171425 CLYBL RP11-134O15.1 CLB|bA134O15.1 HGNC:18355|MIM:609686|Ensembl:ENSG00000125246|HPRD:10838|Vega:OTTHUMG00000017278 13 13q32 citrate lyase beta like protein-coding CLYBL citrate lyase beta like O citrate lyase beta-like|citrate lyase subunit beta-like protein, mitochondrial 20121230 -9606 171427 CYP2F1P - - HGNC:18851 19 19q13.2 cytochrome P450, family 2, subfamily F, polypeptide 1 pseudogene pseudo CYP2F1P cytochrome P450, family 2, subfamily F, polypeptide 1 pseudogene O - 20121230 -9606 171472 SRSF10P2 - FUSIP1P2|SFRS13AP2|dJ836E8.1|pFUSIP1 HGNC:24823 20 20p12.3 serine/arginine-rich splicing factor 10 pseudogene 2 pseudo SRSF10P2 serine/arginine-rich splicing factor 10 pseudogene 2 O - 20121230 -9606 171482 FAM9A - TEX39A HGNC:18403|MIM:300477|Ensembl:ENSG00000183304|HPRD:06506|Vega:OTTHUMG00000021110 X Xp22.32 family with sequence similarity 9, member A protein-coding FAM9A family with sequence similarity 9, member A O protein FAM9A|testis expressed 39A 20121230 -9606 171483 FAM9B - TEX39B HGNC:18404|MIM:300478|Ensembl:ENSG00000177138|HPRD:06566|HPRD:15955|Vega:OTTHUMG00000021114 X Xp22.32 family with sequence similarity 9, member B protein-coding FAM9B family with sequence similarity 9, member B O protein FAM9B|testis expressed 39B 20121230 -9606 171484 FAM9C - TEX39C HGNC:18405|MIM:300479|Ensembl:ENSG00000187268|HPRD:06507|Vega:OTTHUMG00000021143 X Xp22.2 family with sequence similarity 9, member C protein-coding FAM9C family with sequence similarity 9, member C O protein FAM9C|testis expressed 39C 20121230 -9606 171489 SPANXE - SPANX-E HGNC:18408|MIM:300671|HPRD:06723 X Xq27.2 SPANX family, member E protein-coding SPANXE SPANX family, member E O nuclear-associated protein SPAN-Xe|sperm protein associated with the nucleus on the X chromosome E|sperm protein associated with the nucleus, X chromosome, family member E 20121114 -9606 171490 SPANXF1 - - HGNC:18409 X Xq27.1 SPANX family, member F1 protein-coding SPANXF1 SPANX family, member F1 O CT11.2|SPAN-Xf|SPANX family member B/F|SPANX-F|cancer/testis antigen 11.2|nuclear-associated protein SPAN-Xb|nuclear-associated protein SPAN-Xf|sperm protein associated with the nucleus on the X chromosome B/F 20120728 -9606 171491 SPANXF2 - - HGNC:18447 X Xq27.1 SPANX family, member F2 protein-coding SPANXF2 SPANX family, member F2 O - 20080828 -9606 171511 CAQ5 - - MIM:606770 5 - Circulating adiponectin QTL on chromosome 5 unknown - - - - 20120622 -9606 171512 CAQ14 - - MIM:606771 14 - Circulating adiponectin QTL on chromosome 14 unknown - - - - 20120622 -9606 171513 PAOD1 - - MIM:606787 1 1p31 Peripheral arterial occlusive disease 1 unknown - - - - 20120622 -9606 171514 ANON1 - - MIM:606788 1 1p Anorexia nervosa, susceptibility to, 1 unknown - - - - 20120622 -9606 171515 FHQTL - - MIM:606789 8 8q Fetal hemoglobin QTL on chromosome 8 unknown - - - - 20121104 -9606 171523 CYP2T2P - - HGNC:18852 19 19q13.2 cytochrome P450, family 2, subfamily T, polypeptide 2, pseudogene pseudo CYP2T2P cytochrome P450, family 2, subfamily T, polypeptide 2, pseudogene O - 20121230 -9606 171546 SPTSSA - C14orf147|SSSPTA HGNC:20361|MIM:613540|Ensembl:ENSG00000165389|HPRD:16610|Vega:OTTHUMG00000140212 14 14q13.1 serine palmitoyltransferase, small subunit A protein-coding SPTSSA serine palmitoyltransferase, small subunit A O serine palmitoyltransferase small subunit A|small subunit of serine palmitoyltransferase A 20121230 -9606 171558 PTCRA RP3-475N16.3 PT-ALPHA|PTA HGNC:21290|MIM:606817|Ensembl:ENSG00000171611|HPRD:08435|Vega:OTTHUMG00000014709 6 6p21.3 pre T-cell antigen receptor alpha protein-coding PTCRA pre T-cell antigen receptor alpha O pT-alpha-TCR|pre-T-cell receptor alpha chain 20121230 -9606 171559 HMGA1P2 - HMGA1L2|HMGIYL2 HGNC:13322 4 4q13.3 high mobility group AT-hook 1 pseudogene 2 pseudo HMGA1P2 high mobility group AT-hook 1 pseudogene 2 O - 20121230 -9606 171560 AF357530 - - - 4 4q21.1 thioredoxin pseudogene pseudo - - - - 20121230 -9606 171568 POLR3H RP3-347H13.9 RPC22.9|RPC8 HGNC:30349|Ensembl:ENSG00000100413|HPRD:15157|Vega:OTTHUMG00000150971 22 22q13.2 polymerase (RNA) III (DNA directed) polypeptide H (22.9kD) protein-coding POLR3H polymerase (RNA) III (DNA directed) polypeptide H (22.9kD) O DNA-directed RNA polymerase III subunit 22.9 kDa polypeptide|DNA-directed RNA polymerase III subunit H|DNA-directed RNA polymerase III subunit RPC8|RNA nucleotidyltransferase (DNA-directed)|RNA polymerase III subunit 22.9 kDa subunit|RNA polymerase III subunit C8|RNA polymerase III subunit RPC8 20121230 -9606 171586 ABHD3 - LABH3 HGNC:18718|MIM:612197|Ensembl:ENSG00000158201|HPRD:12405|Vega:OTTHUMG00000179099 18 18q11.2 abhydrolase domain containing 3 protein-coding ABHD3 abhydrolase domain containing 3 O abhydrolase domain-containing protein 3|alpha/beta hydrolase domain containing protein 3|lung alpha/beta hydrolase 3 20121230 -9606 191585 PLAC4 PP1416 C21orf115|PRED78 HGNC:14616|MIM:613770 21 21q22.2 placenta-specific 4 protein-coding PLAC4 placenta-specific 4 O placenta-specific protein 4 20121230 -9606 192111 PGAM5 - BXLBV68 HGNC:28763|MIM:614939|Ensembl:ENSG00000247077|HPRD:14681|Vega:OTTHUMG00000168021 12 12q24.33 phosphoglycerate mutase family member 5 protein-coding PGAM5 phosphoglycerate mutase family member 5 O Bcl-XL-binding protein v68|serine/threonine-protein phosphatase PGAM5, mitochondrial 20121230 -9606 192115 MA - MGAU|MGR1 MIM:157300 4 4q24 Migraine with aura, susceptibility to unknown - - - - 20120622 -9606 192127 SLC20A1P1 - - HGNC:20051 14 14q32.33 solute carrier family 20 (phosphate transporter), member 1 pseudogene 1 pseudo SLC20A1P1 solute carrier family 20 (phosphate transporter), member 1 pseudogene 1 O - 20121230 -9606 192128 SLC20A1P2 - - HGNC:42539 14 14q32.33 solute carrier family 20 (phosphate transporter), member 1 pseudogene 2 pseudo SLC20A1P2 solute carrier family 20 (phosphate transporter), member 1 pseudogene 2 O - 20121230 -9606 192130 GOLGA4P3 - - HGNC:43786 14 14q32.33 golgin A4 pseudogene 3 pseudo GOLGA4P3 golgin A4 pseudogene 3 O - 20121230 -9606 192131 GOLGA4P1 - - HGNC:18660 14 14q32.33 golgin A4 pseudogene 1 pseudo GOLGA4P1 golgin A4 pseudogene 1 O - 20121230 -9606 192132 GOLGA4P2 - - HGNC:20727 14 14q32.33 golgin A4 pseudogene 2 pseudo GOLGA4P2 golgin A4 pseudogene 2 O - 20121230 -9606 192133 RPS8P1 - RPS8_5_1417 HGNC:19789 14 14q32.33 ribosomal protein S8 pseudogene 1 pseudo RPS8P1 ribosomal protein S8 pseudogene 1 O - 20121230 -9606 192134 B3GNT6 - B3Gn-T6|IMAGE:4907098 HGNC:24141|Ensembl:ENSG00000198488|HPRD:16534|Vega:OTTHUMG00000165221 11 11q13.4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6 (core 3 synthase) protein-coding B3GNT6 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6 (core 3 synthase) O BGnT-6|UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6|beta-1,3-Gn-T6|beta-1,3-N-acetylglucosaminyltransferase 6|beta-1,3-N-acetylglucosaminyltransferase protein|beta3Gn-T6|core 3 synthase 20121230 -9606 192142 RLS - - MIM:102300 12 12q12-q21 Restless legs syndrome, susceptibility to unknown - - - - 20120622 -9606 192143 STQTL2 - - MIM:606256 7 7q31.3 stature quantitative trait locus 2 unknown - - - - 20120622 -9606 192144 HDLCQ1 - HDLC1 HGNC:30996|MIM:606613 9 9p high density lipoprotein cholesterol level QTL 1 unknown HDLCQ1 high density lipoprotein cholesterol level QTL 1 O - 20120622 -9606 192146 DDX50P1 - RH-II/GuBp1 HGNC:18974 2 2p22.3 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 50 pseudogene 1 pseudo DDX50P1 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 50 pseudogene 1 O - 20121230 -9606 192149 BMIQ2 - - HGNC:23828|MIM:606643 13 13q14 body mass index QTL 2 unknown BMIQ2 body mass index QTL 2 O - 20120622 -9606 192217 OXCT2P1 - OXCT2P HGNC:21627 1 1p34.3 3-oxoacid CoA transferase 2 pseudogene 1 pseudo OXCT2P1 3-oxoacid CoA transferase 2 pseudogene 1 O - 20121230 -9606 192221 TLR7-like - - - X Xp22.3 toll-like receptor 7-like pseudo - - - - 20121230 -9606 192286 HIGD2A - - HGNC:28311|Ensembl:ENSG00000146066|HPRD:14483|Vega:OTTHUMG00000130657 5 5q35.2 HIG1 hypoxia inducible domain family, member 2A protein-coding HIGD2A HIG1 hypoxia inducible domain family, member 2A O HIG1 domain family member 2A|HIG1 domain family, member 2A 20121230 -9606 192343 NEWENTRY - - - - - Record to support submission of GeneRIFs for a gene not in Gene (human; man). other - - - - 20121222 -9606 192644 DFNA21 - - HGNC:2794|MIM:607017 6 6p24.1-p22.3 deafness, autosomal dominant 21 unknown DFNA21 deafness, autosomal dominant 21 O - 20120622 -9606 192666 KRT24 - K24|KA24 HGNC:18527|MIM:607742|Ensembl:ENSG00000167916|HPRD:09668|Vega:OTTHUMG00000133372 17 17q21.2 keratin 24 protein-coding KRT24 keratin 24 O CK-24|cytokeratin-24|keratin, type I cytoskeletal 24|keratin-24|type I keratin-24 20121230 -9606 192668 CYS1 - - HGNC:18525|Ensembl:ENSG00000205795|HPRD:18744|Vega:OTTHUMG00000151703 2 2p25.1 cystin 1 protein-coding CYS1 cystin 1 O cilia-associated protein|cystin-1 20121230 -9606 192669 EIF2C3 RP4-789D17.2 AGO3 HGNC:18421|MIM:607355|Ensembl:ENSG00000126070|HPRD:09558|Vega:OTTHUMG00000007533 1 1p34 eukaryotic translation initiation factor 2C, 3 protein-coding EIF2C3 eukaryotic translation initiation factor 2C, 3 O argonaute 3|argonaute3|eIF-2C 3|eIF2C 3|hAgo3|protein argonaute-3 20121230 -9606 192670 EIF2C4 - AGO4 HGNC:18424|MIM:607356|Ensembl:ENSG00000134698|HPRD:09559|Vega:OTTHUMG00000004243 1 1p34 eukaryotic translation initiation factor 2C, 4 protein-coding EIF2C4 eukaryotic translation initiation factor 2C, 4 O argonaute 4|argonaute4|eIF-2C 4|eIF2C 4|hAgo4|protein argonaute-4 20121230 -9606 192676 DFNA43 - - HGNC:17243|MIM:608394 2 2p12-p11.1 deafness, autosomal dominant 43 unknown DFNA43 deafness, autosomal dominant 43 O - 20120622 -9606 192677 SLEN1 - - HGNC:18542|MIM:607965 10 10q22.3 systemic lupus erythematosus with nephritis 1 unknown SLEN1 systemic lupus erythematosus with nephritis 1 O - 20120622 -9606 192679 SLEN2 - - HGNC:18543|MIM:607966 2 2q34-q35 systemic lupus erythematosus with nephritis 2 unknown SLEN2 systemic lupus erythematosus with nephritis 2 O - 20120622 -9606 192683 SCAMP5 - - HGNC:30386|MIM:613766|Ensembl:ENSG00000198794|HPRD:18020|Vega:OTTHUMG00000172704 15 15q24.2 secretory carrier membrane protein 5 protein-coding SCAMP5 secretory carrier membrane protein 5 O hSCAMP5|secretory carrier-associated membrane protein 5 20121230 -9606 193629 LINC00189 - C21orf109|NCRNA00189 HGNC:18461 21 21q22.11 long intergenic non-protein coding RNA 189 miscRNA LINC00189 long intergenic non-protein coding RNA 189 O - 20121230 -9606 195814 SDR16C5 - RDH#2|RDH-E2|RDHE2 HGNC:30311|MIM:608989|Ensembl:ENSG00000170786|HPRD:12351|Vega:OTTHUMG00000164311 8 8q12.1 short chain dehydrogenase/reductase family 16C, member 5 protein-coding SDR16C5 short chain dehydrogenase/reductase family 16C, member 5 O EPHD-2|epidermal retinal dehydrogenase 2|epidermal retinol dehydrogenase 2|retSDR2|retinal short chain dehydrogenase reductase|retinal short-chain dehydrogenase reductase 2|short-chain dehydrogenase/reductase family 16C member 5 20121230 -9606 195827 AAED1 RP11-392G7.2 C9orf21 HGNC:16881|Ensembl:ENSG00000158122|HPRD:18571|Vega:OTTHUMG00000020299 9 9q22.32 AhpC/TSA antioxidant enzyme domain containing 1 protein-coding AAED1 AhpC/TSA antioxidant enzyme domain containing 1 O UPF0308 protein C9orf21 20121230 -9606 195828 ZNF367 RP11-172F4.6 CDC14B|ZFF29 HGNC:18320|MIM:610160|Ensembl:ENSG00000165244|HPRD:18330|Vega:OTTHUMG00000020295 9 9q22|9q22.32 zinc finger protein 367 protein-coding ZNF367 zinc finger protein 367 O C2H2 zinc finger protein ZFF29|C2H2 zinc finger protein ZFF29a|CDC14 cell division cycle 14 homolog B 20121230 -9606 195977 ANTXRL - - HGNC:27277 10 10q11.22 anthrax toxin receptor-like pseudo ANTXRL anthrax toxin receptor-like O - 20121230 -9606 196047 EMX2OS - EMX2-AS1|NCRNA00045 HGNC:18511|MIM:607637 10 10q26.1 EMX2 opposite strand/antisense RNA miscRNA EMX2OS EMX2 opposite strand/antisense RNA O - 20121230 -9606 196051 PPAPDC1A RP11-257O17.1 DPPL2|PPAPDC1 HGNC:23531|Ensembl:ENSG00000203805|HPRD:18745|Vega:OTTHUMG00000019168 10 10q26.12 phosphatidic acid phosphatase type 2 domain containing 1A protein-coding PPAPDC1A phosphatidic acid phosphatase type 2 domain containing 1A O diacylglycerol pyrophosphate like 2|phosphatidate phosphatase PPAPDC1A|phosphatidic acid phosphatase type 2 domain-containing protein 1A 20121230 -9606 196074 METTL15 - METT5D1 HGNC:26606|Ensembl:ENSG00000169519|HPRD:08750|Vega:OTTHUMG00000150448 11 11p14.1 methyltransferase like 15 protein-coding METTL15 methyltransferase like 15 O methyltransferase 5 domain containing 1|methyltransferase 5 domain-containing protein 1|probable S-adenosyl-L-methionine-dependent methyltransferase METT5D1|probable methyltransferase-like protein 15|putative S-adenosyl-L-methionine-dependent methyltransferase METT5D1 20121230 -9606 196120 SSU72P5 - - HGNC:43624 11 11p15.4 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 5 pseudo SSU72P5 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 5 O - 20121230 -9606 196188 RPS2P38 - RPS2_18_1126 HGNC:36584 11 11p14.3 ribosomal protein S2 pseudogene 38 pseudo RPS2P38 ribosomal protein S2 pseudogene 38 O - 20121230 -9606 196264 MPZL3 UNQ2966/PRO7425 - HGNC:27279|MIM:611707|Ensembl:ENSG00000160588|HPRD:14114|Vega:OTTHUMG00000166966 11 11q23.3 myelin protein zero-like 3 protein-coding MPZL3 myelin protein zero-like 3 O myelin protein zero-like protein 3 20121230 -9606 196294 IMMP1L - IMP1|IMP1-LIKE HGNC:26317|MIM:612323|Ensembl:ENSG00000148950|HPRD:08048|Vega:OTTHUMG00000166226 11 11p13 IMP1 inner mitochondrial membrane peptidase-like (S. cerevisiae) protein-coding IMMP1L IMP1 inner mitochondrial membrane peptidase-like (S. cerevisiae) O mitochondrial inner membrane protease subunit 1 20121230 -9606 196335 OR56B4 - OR11-67 HGNC:15248|Ensembl:ENSG00000180919|HPRD:15027|Vega:OTTHUMG00000165531 11 11p15.4 olfactory receptor, family 56, subfamily B, member 4 protein-coding OR56B4 olfactory receptor, family 56, subfamily B, member 4 O olfactory receptor 56B4|olfactory receptor OR11-67 20121230 -9606 196374 KRT78 - K5B|Kb40 HGNC:28926|MIM:611159|Ensembl:ENSG00000170423|HPRD:17171|Vega:OTTHUMG00000169880 12 12q13.13 keratin 78 protein-coding KRT78 keratin 78 O CK-78|K78|cytokeratin-78|keratin 5b|keratin, type II cytoskeletal 78|keratin-5b|keratin-78|type-II keratin Kb40 20121230 -9606 196383 RILPL2 - RLP2 HGNC:28787|MIM:614093|Ensembl:ENSG00000150977|HPRD:10084 12 12q24.31 Rab interacting lysosomal protein-like 2 protein-coding RILPL2 Rab interacting lysosomal protein-like 2 O RILP-like protein 2|p40phox-binding protein|rab-interacting lysosomal protein-like 2 20121230 -9606 196385 DNAH10 hCG_1811879 - HGNC:2941|MIM:605884|Ensembl:ENSG00000197653|HPRD:13473|HPRD:13477|Vega:OTTHUMG00000154477 12 12q24.31 dynein, axonemal, heavy chain 10 protein-coding DNAH10 dynein, axonemal, heavy chain 10 O axonemal beta dynein heavy chain 10|ciliary dynein heavy chain 10|dynein heavy chain 10, axonemal|dynein, axonemal, heavy polypeptide 10 20121230 -9606 196394 AMN1 - - HGNC:27281|Ensembl:ENSG00000151743|HPRD:14115|Vega:OTTHUMG00000169192 12 12p11.21 antagonist of mitotic exit network 1 homolog (S. cerevisiae) protein-coding AMN1 antagonist of mitotic exit network 1 homolog (S. cerevisiae) O protein AMN1 homolog 20121230 -9606 196403 DTX3 - RNF154 HGNC:24457|MIM:613142|Ensembl:ENSG00000178498|HPRD:16842|Vega:OTTHUMG00000170189 12 12q13.3 deltex homolog 3 (Drosophila) protein-coding DTX3 deltex homolog 3 (Drosophila) O RING finger protein 154|deltex 3 homolog|deltex3|probable E3 ubiquitin-protein ligase DTX3|protein deltex-3 20121230 -9606 196410 METTL7B UNQ594/PRO1180 ALDI HGNC:28276|Ensembl:ENSG00000170439|HPRD:14458|Vega:OTTHUMG00000152665 12 12q13.2 methyltransferase like 7B protein-coding METTL7B methyltransferase like 7B O associated with lipid droplets 1|methyltransferase-like protein 7B 20121230 -9606 196415 C12orf77 - - HGNC:27282|Ensembl:ENSG00000226397|Vega:OTTHUMG00000170185 12 12p12.1 chromosome 12 open reading frame 77 protein-coding C12orf77 chromosome 12 open reading frame 77 O putative uncharacterized protein C12orf77 20121230 -9606 196441 ZFC3H1 - CCDC131|PSRC2 HGNC:28328|Ensembl:ENSG00000133858|HPRD:14489|Vega:OTTHUMG00000169545 12 12q21.1 zinc finger, C3H1-type containing protein-coding ZFC3H1 zinc finger, C3H1-type containing O coiled-coil domain containing 131|coiled-coil domain-containing protein 131|proline/serine-rich coiled-coil 2|proline/serine-rich coiled-coil protein 2|zinc finger C3H1 domain-containing protein 20121230 -9606 196446 MYRFL - C12orf15|C12orf28|bcm1377 HGNC:26316|Ensembl:ENSG00000166268|HPRD:08047|Vega:OTTHUMG00000169438 12 12q15 myelin regulatory factor-like protein-coding MYRFL myelin regulatory factor-like O uncharacterized protein C12orf28 20121230 -9606 196463 PLBD2 - P76 HGNC:27283|Ensembl:ENSG00000151176|HPRD:14116|Vega:OTTHUMG00000169567 12 12q24.13 phospholipase B domain containing 2 protein-coding PLBD2 phospholipase B domain containing 2 O 76 kDa protein|LAMA-like protein 2|PLB homolog 2|lamina ancestor homolog 2|mannose-6-phosphate protein associated protein p76|phospholipase B domain-containing protein 2|phospholipase B-like 2 32 kDa form|phospholipase B-like 2 45 kDa form|putative phospholipase B-like 2 20121230 -9606 196469 LOC196469 - - - 12 12q23.3 DNA dC->dU-editing enzyme APOBEC-3G-like pseudo - - - - 20121230 -9606 196472 FAM71C - - HGNC:28594|Ensembl:ENSG00000180219|HPRD:17539|Vega:OTTHUMG00000170311 12 12q23.1 family with sequence similarity 71, member C protein-coding FAM71C family with sequence similarity 71, member C O protein FAM71C 20121230 -9606 196475 RMST - LINC00054|NCRMS|NCRNA00054 HGNC:29893|MIM:607045 12 12q23.1|12q21 rhabdomyosarcoma 2 associated transcript (non-protein coding) miscRNA RMST rhabdomyosarcoma 2 associated transcript (non-protein coding) O - 20121230 -9606 196477 CCER1 - C12orf12 HGNC:28373|Ensembl:ENSG00000197651|HPRD:14505|Vega:OTTHUMG00000170070 12 12q21.33 coiled-coil glutamate-rich protein 1 protein-coding CCER1 coiled-coil glutamate-rich protein 1 O coiled-coil domain-containing glutamate-rich protein 1 20121230 -9606 196483 FAM86A SB153 - HGNC:32221|Ensembl:ENSG00000118894|HPRD:18018|Vega:OTTHUMG00000129527 16 16p13.3 family with sequence similarity 86, member A protein-coding FAM86A family with sequence similarity 86, member A O protein FAM86A 20121230 -9606 196500 PIANP UNQ828/PRO1755 C12orf53|PANP HGNC:25338|Ensembl:ENSG00000139200|HPRD:13205|Vega:OTTHUMG00000168664 12 12p13.31 PILR alpha associated neural protein protein-coding PIANP PILR alpha associated neural protein O PILR alpha-associated neural protein|PILR-associating neural protein|paired immunoglobin-like type 2 receptor-associating neural protein 20121230 -9606 196513 DCP1B - DCP1|hDcp1b HGNC:24451|MIM:609843|Ensembl:ENSG00000151065|Vega:OTTHUMG00000168113 12 12p13.33 DCP1 decapping enzyme homolog B (S. cerevisiae) protein-coding DCP1B DCP1 decapping enzyme homolog B (S. cerevisiae) O decapping enzyme hDcp1b|mRNA-decapping enzyme 1B 20121230 -9606 196527 ANO6 - BDPLT7|SCTS|TMEM16F HGNC:25240|MIM:608663|Ensembl:ENSG00000177119|HPRD:18746|Vega:OTTHUMG00000169564 12 12q12 anoctamin 6 protein-coding ANO6 anoctamin 6 O anoctamin-6|transmembrane protein 16F 20121230 -9606 196528 ARID2 - BAF200|p200 HGNC:18037|MIM:609539|Ensembl:ENSG00000189079|HPRD:16505|Vega:OTTHUMG00000150487 12 12q12 AT rich interactive domain 2 (ARID, RFX-like) protein-coding ARID2 AT rich interactive domain 2 (ARID, RFX-like) O ARID domain-containing protein 2|AT-rich interactive domain-containing protein 2|BRG1-associated factor 200|zinc finger protein with activation potential|zipzap|zipzap/p200 20121230 -9606 196541 METTL21C - C13orf39 HGNC:33717|Ensembl:ENSG00000139780|HPRD:17315|Vega:OTTHUMG00000017304 13 13q33.1 methyltransferase like 21C protein-coding METTL21C methyltransferase like 21C O methyltransferase-like protein 21C 20121230 -9606 196549 EEF1DP3 - - HGNC:30486|HPRD:08314 13 13q13.1 eukaryotic translation elongation factor 1 delta pseudogene 3 pseudo EEF1DP3 eukaryotic translation elongation factor 1 delta pseudogene 3 O - 20121230 -9606 196740 VSTM4 - C10orf72 HGNC:26470|Ensembl:ENSG00000165633|HPRD:08503|Vega:OTTHUMG00000018184 10 10q11.23 V-set and transmembrane domain containing 4 protein-coding VSTM4 V-set and transmembrane domain containing 4 O V-set and transmembrane domain-containing protein 4 20121230 -9606 196743 PAOX RP11-122K13.11-002 PAO HGNC:20837|Ensembl:ENSG00000148832|HPRD:10136|Vega:OTTHUMG00000019318 10 10q26.3 polyamine oxidase (exo-N4-amino) protein-coding PAOX polyamine oxidase (exo-N4-amino) O peroxisomal N(1)-acetyl-spermine/spermidine oxidase|peroxisomal N1-acetyl-spermine/spermidine oxidase 20121230 -9606 196792 FAM24B - - HGNC:23475|Ensembl:ENSG00000213185|HPRD:13299|Vega:OTTHUMG00000019194 10 10q26.13 family with sequence similarity 24, member B protein-coding FAM24B family with sequence similarity 24, member B O protein FAM24B 20121230 -9606 196872 LINC00638 - - HGNC:28325 14 14q32.33 long intergenic non-protein coding RNA 638 miscRNA LINC00638 long intergenic non-protein coding RNA 638 O - 20121230 -9606 196883 ADCY4 - AC4 HGNC:235|MIM:600292|Ensembl:ENSG00000129467|HPRD:11614|Vega:OTTHUMG00000029347 14 14q12 adenylate cyclase 4 protein-coding ADCY4 adenylate cyclase 4 O ATP pyrophosphate-lyase 4|adenylate cyclase type 4|adenylate cyclase type IV|adenylyl cyclase 4 20121230 -9606 196913 C14orf183 - - HGNC:27285|Ensembl:ENSG00000168260|HPRD:18572|Vega:OTTHUMG00000170858 14 14q21.3 chromosome 14 open reading frame 183 protein-coding C14orf183 chromosome 14 open reading frame 183 O putative uncharacterized protein C14orf183 20121230 -9606 196951 FAM227B - C15orf33 HGNC:26543|Ensembl:ENSG00000166262|HPRD:08139|Vega:OTTHUMG00000172328 15 15q21.2 family with sequence similarity 227, member B protein-coding FAM227B family with sequence similarity 227, member B O protein FAM227B 20121230 -9606 196968 DNM1P46 - C15orf51|DNM1DN14.2|DNM1DN14@ HGNC:35199|HPRD:13192 15 15q26.3 DNM1 pseudogene 46 pseudo DNM1P46 DNM1 pseudogene 46 O - 20121230 -9606 196993 CT62 - - HGNC:27286|Ensembl:ENSG00000225362|Vega:OTTHUMG00000172836 15 15q23 cancer/testis antigen 62 protein-coding CT62 cancer/testis antigen 62 O - 20121230 -9606 196996 GRAMD2 - - HGNC:27287|Ensembl:ENSG00000175318|HPRD:13161|Vega:OTTHUMG00000172708 15 15q23 GRAM domain containing 2 protein-coding GRAMD2 GRAM domain containing 2 O GRAM domain-containing protein 2 20121230 -9606 197003 MGC15885 - - - 15 15q22.2 uncharacterized protein MGC15885 miscRNA - - - - 20121230 -9606 197021 LCTL UNQ3022/PRO9820 KLG|KLPH HGNC:15583|Ensembl:ENSG00000188501|HPRD:13930|Vega:OTTHUMG00000133207 15 15q22.31 lactase-like protein-coding LCTL lactase-like O KL lactase phlorizin hydrolase|klotho gamma|klotho/lactase-phlorizin hydrolase-related protein|lactase-like protein 20121230 -9606 197131 UBR1 - JBS HGNC:16808|MIM:605981|Ensembl:ENSG00000159459|HPRD:09342|Vega:OTTHUMG00000130702 15 15q13 ubiquitin protein ligase E3 component n-recognin 1 protein-coding UBR1 ubiquitin protein ligase E3 component n-recognin 1 O E3 ubiquitin-protein ligase UBR1|E3a ligase|N-recognin-1|ubiquitin ligase E3 alpha-I|ubiquitin-protein ligase E3-alpha|ubiquitin-protein ligase E3-alpha-1|ubiquitin-protein ligase E3-alpha-I 20121230 -9606 197135 PATL2 - Pat1a|hPat1a HGNC:33630|MIM:614661|Ensembl:ENSG00000229474|Vega:OTTHUMG00000171932 15 15q21.1 protein associated with topoisomerase II homolog 2 (yeast) protein-coding PATL2 protein associated with topoisomerase II homolog 2 (yeast) O PAT1-like protein 2|protein PAT1 homolog 2|protein PAT1 homolog a 20121230 -9606 197187 SNAI3-AS1 - - HGNC:28327 16 16q24.3 SNAI3 antisense RNA 1 miscRNA SNAI3-AS1 SNAI3 antisense RNA 1 O - 20121230 -9606 197196 LINC00311 - NCRNA00311|TMEM148 HGNC:28312|HPRD:14484 16 16q24.1 long intergenic non-protein coding RNA 311 miscRNA LINC00311 long intergenic non-protein coding RNA 311 O - 20121230 -9606 197257 LDHD - DLD HGNC:19708|MIM:607490|Ensembl:ENSG00000166816|HPRD:06318|Vega:OTTHUMG00000137605 16 16q23.1 lactate dehydrogenase D protein-coding LDHD lactate dehydrogenase D O D-lactate dehydrogenase|probable D-lactate dehydrogenase, mitochondrial 20121230 -9606 197258 FUK UNQ5838 1110046B12Rik HGNC:29500|MIM:608675|Ensembl:ENSG00000157353|HPRD:16365|Vega:OTTHUMG00000074085 16 16q22.1 fucokinase protein-coding FUK fucokinase O L-fucose kinase 20121230 -9606 197259 MLKL - - HGNC:26617|Ensembl:ENSG00000168404|HPRD:08752|Vega:OTTHUMG00000177356 16 16q23.1 mixed lineage kinase domain-like protein-coding MLKL mixed lineage kinase domain-like O mixed lineage kinase domain-like protein 20121230 -9606 197320 ZNF778 hCG_2039013 - HGNC:26479|Ensembl:ENSG00000170100|HPRD:08111|Vega:OTTHUMG00000175526 16 16q24.3 zinc finger protein 778 protein-coding ZNF778 zinc finger protein 778 O - 20121230 -9606 197322 ACSF3 PSEC0197 - HGNC:27288|MIM:614245|Ensembl:ENSG00000176715|HPRD:14117|Vega:OTTHUMG00000138044 16 16q24.3 acyl-CoA synthetase family member 3 protein-coding ACSF3 acyl-CoA synthetase family member 3 O acyl-CoA synthetase family member 3, mitochondrial 20121230 -9606 197331 LOC197331 - - - 16 16q24.3 HSA16q24 beta-tubulin 4Q pseudogene pseudo - - - - 20121230 -9606 197335 WDR90 - C16orf15|C16orf16|C16orf17|C16orf18|C16orf19 HGNC:26960|Ensembl:ENSG00000161996|HPRD:08311|HPRD:14118|Vega:OTTHUMG00000048040 16 16p13.3 WD repeat domain 90 protein-coding WDR90 WD repeat domain 90 O WD repeat-containing protein 90 20121230 -9606 197342 EME2 - SLX2B|gs125 HGNC:27289|MIM:610886|Ensembl:ENSG00000197774|HPRD:16859|Vega:OTTHUMG00000176706 16 16p13.3 essential meiotic endonuclease 1 homolog 2 (S. pombe) protein-coding EME2 essential meiotic endonuclease 1 homolog 2 (S. pombe) O SLX2 structure-specific endonuclease subunit homolog B|homolog of yeast EME1 endonuclease 2|probable crossover junction endonuclease EME2 20121230 -9606 197350 CASP16 - CASP14L HGNC:27290|Ensembl:ENSG00000228146|Vega:OTTHUMG00000177520 16 16p13.3 caspase 16, apoptosis-related cysteine peptidase (putative) protein-coding CASP16 caspase 16, apoptosis-related cysteine peptidase (putative) O putative caspase-14-like protein|putative caspase-16 20121230 -9606 197358 NLRC3 - CLR16.2|NOD3 HGNC:29889|Ensembl:ENSG00000167984|HPRD:17639|Vega:OTTHUMG00000177561 16 16p13.3 NLR family, CARD domain containing 3 protein-coding NLRC3 NLR family, CARD domain containing 3 O CARD15-like protein|NOD-like receptor C3|caterpiller 16.2|caterpiller protein 16.2|nucleotide-binding oligomerization domain protein 3|nucleotide-binding oligomerization domain, leucine rich repeat and CARD domain containing 3|protein NLRC3 20121230 -9606 197370 NSMCE1 HSPC333 NSE1 HGNC:29897|Ensembl:ENSG00000169189|HPRD:17648|Vega:OTTHUMG00000131674 16 16p12.1 non-SMC element 1 homolog (S. cerevisiae) protein-coding NSMCE1 non-SMC element 1 homolog (S. cerevisiae) O non-structural maintenance of chromosomes element 1 homolog 20121230 -9606 197387 LOC197387 - - - 16 16p11.1 uncharacterized LOC197387 protein-coding - - - - 20111025 -9606 197407 ZNF48 - ZNF553 HGNC:13114|Ensembl:ENSG00000180035|HPRD:15836|Vega:OTTHUMG00000048195 16 16p11.2 zinc finger protein 48 protein-coding ZNF48 zinc finger protein 48 O zinc finger protein 553 20121230 -9606 198437 C20orf201 - - HGNC:33718|Ensembl:ENSG00000171695|HPRD:17317|Vega:OTTHUMG00000033021 20 20q13.33 chromosome 20 open reading frame 201 protein-coding C20orf201 chromosome 20 open reading frame 201 O bA299N6.3|uncharacterized protein C20orf201 20121230 -9606 199221 DZIP1L - DZIP2 HGNC:26551|Ensembl:ENSG00000158163|HPRD:08145|Vega:OTTHUMG00000159819 3 3q22.3 DAZ interacting protein 1-like protein-coding DZIP1L DAZ interacting protein 1-like O DAZ-interacting protein 1-like protein|zinc finger protein DZIP1L 20121230 -9606 199223 TTC21A - STI2 HGNC:30761|MIM:611430|Ensembl:ENSG00000168026|HPRD:10254|Vega:OTTHUMG00000155973 3 3p22.2 tetratricopeptide repeat domain 21A protein-coding TTC21A tetratricopeptide repeat domain 21A O TPR domain containing STI2|TPR repeat protein 21A|stress-inducible protein 2|tetratricopeptide repeat protein 21A 20121230 -9606 199675 C19orf59 - MCEMP1 HGNC:27291|MIM:609565|Ensembl:ENSG00000183019|HPRD:14119 19 19p13.2 chromosome 19 open reading frame 59 protein-coding C19orf59 chromosome 19 open reading frame 59 O mast cell-expressed membrane protein 1 20121230 -9606 199692 ZNF627 - - HGNC:30570|MIM:612248|Ensembl:ENSG00000198551|HPRD:18360|Vega:OTTHUMG00000182035 19 19p13.2 zinc finger protein 627 protein-coding ZNF627 zinc finger protein 627 O - 20121230 -9606 199699 DAND5 - CER2|CERL2|CKTSF1B3|COCO|CRL2|DANTE|GREM3|SP1 HGNC:26780|MIM:609068|Ensembl:ENSG00000179284|HPRD:08788|Vega:OTTHUMG00000180725 19 19p13.2 DAN domain family, member 5 protein-coding DAND5 DAN domain family, member 5 O DAN domain family member 5|cerberus 2|cerberus-like 2|cerberus-like protein 2|cerl-2|cysteine knot superfamily 1, BMP antagonist 3|gremlin-3 20121230 -9606 199704 ZNF585A - - HGNC:26305|Ensembl:ENSG00000196967|HPRD:15862|Vega:OTTHUMG00000181857 19 19q13.12 zinc finger protein 585A protein-coding ZNF585A zinc finger protein 585A O - 20121230 -9606 199713 NLRP7 XXbac-BCX195L8.11-001 CLR19.4|HYDM|NALP7|NOD12|PAN7|PYPAF3 HGNC:22947|MIM:609661|Ensembl:ENSG00000167634|HPRD:10112|Vega:OTTHUMG00000180428 19 19q13.42 NLR family, pyrin domain containing 7 protein-coding NLRP7 NLR family, pyrin domain containing 7 O NACHT, LRR and PYD containing protein 7|NACHT, LRR and PYD domains-containing protein 7|NACHT, leucine rich repeat and PYD containing 7|PYRIN-containing Apaf1-like protein 3|nucleotide-binding oligomerization domain protein 12|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 7 20121230 -9606 199720 GGN - - HGNC:18869|MIM:609966|Ensembl:ENSG00000179168|HPRD:17036|Vega:OTTHUMG00000182080 19 19q13.2 gametogenetin protein-coding GGN gametogenetin O - 20121230 -9606 199731 CADM4 - IGSF4C|NECL4|Necl-4|TSLL2|synCAM4 HGNC:30825|MIM:609744|Ensembl:ENSG00000105767|HPRD:17141 19 19q13.31 cell adhesion molecule 4 protein-coding CADM4 cell adhesion molecule 4 O TSLC1-like 2|TSLC1-like protein 2|immunoglobulin superfamily member 4C|immunoglobulin superfamily, member 4C|nectin-like 4|nectin-like protein 4 20121230 -9606 199745 THAP8 - - HGNC:23191|MIM:612536|Ensembl:ENSG00000161277|HPRD:15501|Vega:OTTHUMG00000048138 19 19q13.12 THAP domain containing 8 protein-coding THAP8 THAP domain containing 8 O THAP domain-containing protein 8 20121230 -9606 199746 U2AF1L4 - U2AF1-RS3|U2AF1L3|U2AF1L3V1|U2AF1RS3|U2af26 HGNC:23020|MIM:601080|Ensembl:ENSG00000161265|HPRD:03050|Vega:OTTHUMG00000182066 19 19q13.12 U2 small nuclear RNA auxiliary factor 1-like 4 protein-coding U2AF1L4 U2 small nuclear RNA auxiliary factor 1-like 4 O U2 auxiliary factor 26|U2 small nuclear RNA auxiliary factor 1-like 3|U2 small nuclear RNA auxiliary factor 1-like protein 3|U2 small nuclear RNA auxiliary factor 1-like protein 4|U2(RNU2) small nuclear RNA auxiliary factor 1-like 3|U2(RNU2) small nuclear RNA auxiliary factor 1-like protein 3|U2AF1-like protein 3|splicing factor U2AF 26 kDa subunit 20121230 -9606 199777 ZNF626 - - HGNC:30461|Ensembl:ENSG00000188171|HPRD:15881|Vega:OTTHUMG00000179733 19 19p12 zinc finger protein 626 protein-coding ZNF626 zinc finger protein 626 O - 20121230 -9606 199786 FAM129C - BCNP1 HGNC:24130|MIM:609967|Ensembl:ENSG00000167483|HPRD:16546 19 19p13.11 family with sequence similarity 129, member C protein-coding FAM129C family with sequence similarity 129, member C O B-cell novel protein 1|niban-like protein 2 20121230 -9606 199800 ADM5 - AM5|C19orf76 HGNC:27293|Ensembl:ENSG00000224420 19 19q13.33 adrenomedullin 5 (putative) protein-coding ADM5 adrenomedullin 5 (putative) O adrenomedullin 5 homolog (pig)|putative adrenomedullin-5-like protein 20121230 -9606 199827 RNASEH1P3 - - HGNC:18716 1 1q32.2 ribonuclease H1 pseudogene 3 pseudo RNASEH1P3 ribonuclease H1 pseudogene 3 O - 20121230 -9606 199834 LCE4A - LEP8|SPRL4A HGNC:16613|MIM:612618|Ensembl:ENSG00000187170|HPRD:17264 1 1q21.3 late cornified envelope 4A protein-coding LCE4A late cornified envelope 4A O late cornified envelope protein 4A|late envelope protein 8|small proline rich-like (epidermal differentiation complex) 4A|small proline-rich-like epidermal differentiation complex protein 4A 20121230 -9606 199857 ALG14 - - HGNC:28287|MIM:612866|Ensembl:ENSG00000172339|HPRD:14466|Vega:OTTHUMG00000010781 1 1p21.3 asparagine-linked glycosylation 14 homolog (S. cerevisiae) protein-coding ALG14 asparagine-linked glycosylation 14 homolog (S. cerevisiae) O UDP-N-acetylglucosamine transferase subunit ALG14 homolog 20121230 -9606 199870 FAM76A RP3-426I6.1 - HGNC:28530|Ensembl:ENSG00000009780|HPRD:14583|Vega:OTTHUMG00000003729 1 1p35.3 family with sequence similarity 76, member A protein-coding FAM76A family with sequence similarity 76, member A O protein FAM76A 20121230 -9606 199882 LOC199882 RP11-353N4.5 - Vega:OTTHUMG00000013955 1 1q21.2 phosphodiesterase 4D interacting protein-like protein-coding - - - - 20111118 -9606 199897 LOC199897 - - - 1 1p31.3 uncharacterized LOC199897 protein-coding - - - - 20121102 -9606 199899 LINC00466 - - HGNC:27294 1 1p31.3 long intergenic non-protein coding RNA 466 miscRNA LINC00466 long intergenic non-protein coding RNA 466 O - 20121230 -9606 199900 MRPS21P1 - - HGNC:29748 1 1p31.3 mitochondrial ribosomal protein S21 pseudogene 1 pseudo MRPS21P1 mitochondrial ribosomal protein S21 pseudogene 1 O - 20121230 -9606 199920 C1orf168 RP4-758N20.2 - HGNC:27295|Ensembl:ENSG00000187889|HPRD:14120|Vega:OTTHUMG00000008281 1 1p32.2 chromosome 1 open reading frame 168 protein-coding C1orf168 chromosome 1 open reading frame 168 O uncharacterized protein C1orf168 20121230 -9606 199953 TMEM201 RP13-15M17.2 NET5 HGNC:33719|Ensembl:ENSG00000188807|HPRD:17991|Vega:OTTHUMG00000057457 1 1p36.22 transmembrane protein 201 protein-coding TMEM201 transmembrane protein 201 O spindle-associated membrane protein 1 20121230 -9606 199964 TMEM61 - - HGNC:27296|Ensembl:ENSG00000143001|HPRD:14121|Vega:OTTHUMG00000009991 1 1p32.3 transmembrane protein 61 protein-coding TMEM61 transmembrane protein 61 O - 20121230 -9606 199974 CYP4Z1 UNQ3060/PRO9882 CYP4A20 HGNC:20583|Ensembl:ENSG00000186160|HPRD:13111|Vega:OTTHUMG00000008019 1 1p33 cytochrome P450, family 4, subfamily Z, polypeptide 1 protein-coding CYP4Z1 cytochrome P450, family 4, subfamily Z, polypeptide 1 O CYPIVZ1|cytochrome P450 4Z1 20121230 -9606 199990 C1orf86 RP11-181G12.3 FAAP20|FP7162 HGNC:26428|Ensembl:ENSG00000162585|HPRD:08707|Vega:OTTHUMG00000001404 1 1p36.33 chromosome 1 open reading frame 86 protein-coding C1orf86 chromosome 1 open reading frame 86 O Fanconi anemia-associated protein of 20 kDa 20121230 -9606 200008 CDCP2 - - HGNC:27297|MIM:612320|Ensembl:ENSG00000157211|HPRD:14122|Vega:OTTHUMG00000155307 1 1p32.3 CUB domain containing protein 2 protein-coding CDCP2 CUB domain containing protein 2 O CUB domain-containing protein 2 20121230 -9606 200010 SLC5A9 - SGLT4 HGNC:22146|Ensembl:ENSG00000117834|HPRD:18060|Vega:OTTHUMG00000007959 1 1p33 solute carrier family 5 (sodium/glucose cotransporter), member 9 protein-coding SLC5A9 solute carrier family 5 (sodium/glucose cotransporter), member 9 O Na(+)/glucose cotransporter 4|hSGLT4|sodium/glucose cotransporter 4|solute carrier family 5 member 9 20121230 -9606 200014 CC2D1B RP11-155O18.2 - HGNC:29386|Ensembl:ENSG00000154222|HPRD:12393|Vega:OTTHUMG00000008102 1 1p32.3 coiled-coil and C2 domain containing 1B protein-coding CC2D1B coiled-coil and C2 domain containing 1B O FRE under dual repression-binding protein 2|coiled-coil and C2 domain-containing protein 1B|five prime repressor element under dual repression-binding protein 2|freud-2 20121230 -9606 200025 PFN1P3 - COAS-3|COAS3 HGNC:42987 1 1q21.2 profilin 1 pseudogene 3 pseudo PFN1P3 profilin 1 pseudogene 3 O - 20121230 -9606 200030 NBPF11 RP11-94I2.2 - HGNC:31993|MIM:614001|Ensembl:ENSG00000152042|HPRD:14123|Vega:OTTHUMG00000013880 1 1q21.1 neuroblastoma breakpoint family, member 11 protein-coding NBPF11 neuroblastoma breakpoint family, member 11 O neuroblastoma breakpoint family member 11 20121230 -9606 200035 NUDT17 - - HGNC:26618|Ensembl:ENSG00000186364|HPRD:18573|Vega:OTTHUMG00000013752 1 1q21.1 nudix (nucleoside diphosphate linked moiety X)-type motif 17 protein-coding NUDT17 nudix (nucleoside diphosphate linked moiety X)-type motif 17 O nucleoside diphosphate-linked moiety X motif 17|nudix motif 17 20121230 -9606 200058 FLJ23867 - - - 1 1q25.2 uncharacterized protein FLJ23867 miscRNA - - - - 20121230 -9606 200081 TXLNA - IL14|RP4-622L5.4|TXLN HGNC:30685|MIM:608676|Ensembl:ENSG00000084652|HPRD:09408|Vega:OTTHUMG00000004423 1 1p35.1 taxilin alpha protein-coding TXLNA taxilin alpha O alpha-taxilin|interleukin 14 20121230 -9606 200132 TCTEX1D1 - RP11-266I14.2 HGNC:26882|Ensembl:ENSG00000152760|HPRD:08287|Vega:OTTHUMG00000009162 1 1p31.3 Tctex1 domain containing 1 protein-coding TCTEX1D1 Tctex1 domain containing 1 O tctex1 domain-containing protein 1 20121230 -9606 200149 LOC200149 - - - 1 1q43 tubulin, beta 8 pseudogene pseudo - - - - 20121230 -9606 200150 PLD5 - PLDC HGNC:26879|Ensembl:ENSG00000180287|HPRD:08812|Vega:OTTHUMG00000039867 1 1q43 phospholipase D family, member 5 protein-coding PLD5 phospholipase D family, member 5 O inactive PLD 5|inactive choline phosphatase 5|inactive phosphatidylcholine-hydrolyzing phospholipase D5|inactive phospholipase D5 20121230 -9606 200159 C1orf100 RP11-518L10.1 - HGNC:30435|Ensembl:ENSG00000173728|HPRD:13168|Vega:OTTHUMG00000040104 1 1q44 chromosome 1 open reading frame 100 protein-coding C1orf100 chromosome 1 open reading frame 100 O uncharacterized protein C1orf100 20121230 -9606 200162 SPAG17 - PF6|RP4-776P7.2 HGNC:26620|Ensembl:ENSG00000155761|HPRD:10146|Vega:OTTHUMG00000012198 1 1p12 sperm associated antigen 17 protein-coding SPAG17 sperm associated antigen 17 O projection protein PF6 homolog|sperm-associated antigen 17 20121230 -9606 200172 SLFNL1 RP11-348A7.4 - HGNC:26313|Ensembl:ENSG00000171790|HPRD:08044|Vega:OTTHUMG00000005719 1 1p34.2 schlafen-like 1 protein-coding SLFNL1 schlafen-like 1 O schlafen-like protein 1 20121230 -9606 200185 KRTCAP2 - KCP2 HGNC:28942|Ensembl:ENSG00000163463|HPRD:17253|Vega:OTTHUMG00000013904 1 1q22 keratinocyte associated protein 2 protein-coding KRTCAP2 keratinocyte associated protein 2 O KCP-2|keratinocyte-associated protein 2|keratinocytes associated protein 2 20121230 -9606 200186 CRTC2 RP11-422P24.6 TORC-2|TORC2 HGNC:27301|MIM:608972|Ensembl:ENSG00000160741|HPRD:12347|Vega:OTTHUMG00000037156 1 1q21.3 CREB regulated transcription coactivator 2 protein-coding CRTC2 CREB regulated transcription coactivator 2 O CREB-regulated transcription coactivator 2|transducer of regulated cAMP response element-binding protein (CREB) 2 20121230 -9606 200197 C1orf126 - RP1-21O18.2 HGNC:26301|HPRD:08673 1 1p36.21 chromosome 1 open reading frame 126 miscRNA C1orf126 chromosome 1 open reading frame 126 O - 20121230 -9606 200205 IBA57 RP11-520H14.5 C1orf69 HGNC:27302|Ensembl:ENSG00000181873|HPRD:17318|Vega:OTTHUMG00000039769 1 1q42.13 IBA57, iron-sulfur cluster assembly homolog (S. cerevisiae) protein-coding IBA57 IBA57, iron-sulfur cluster assembly homolog (S. cerevisiae) O iron-sulfur cluster assembly factor for biotin synthase- and aconitase-like mitochondrial proteins, with a mass of 57kDa|iron-sulfur cluster assembly factor homolog|putative transferase C1orf69, mitochondrial|putative transferase CAF17, mitochondrial 20121230 -9606 200232 FAM209A RP5-1153D9.4 C20orf106|dJ1153D9.3 HGNC:16100|Ensembl:ENSG00000124103|HPRD:18536|Vega:OTTHUMG00000032799 20 20q13.31 family with sequence similarity 209, member A protein-coding FAM209A family with sequence similarity 209, member A O protein FAM209A|uncharacterized protein C20orf106 20121230 -9606 200261 LINC00656 - - HGNC:27304|HPRD:14124 20 20p11.21 long intergenic non-protein coding RNA 656 miscRNA LINC00656 long intergenic non-protein coding RNA 656 O - 20121230 -9606 200298 LINC00528 - C22orf37 HGNC:26875 22 22q11.21 long intergenic non-protein coding RNA 528 unknown LINC00528 long intergenic non-protein coding RNA 528 O - 20121230 -9606 200312 RNF215 - - HGNC:33434|Ensembl:ENSG00000099999|HPRD:18747|Vega:OTTHUMG00000151016 22 22q12.2 ring finger protein 215 protein-coding RNF215 ring finger protein 215 O RING finger protein 215 20121230 -9606 200315 APOBEC3A - ARP3|PHRBN|bK150C2.1 HGNC:17343|MIM:607109|Ensembl:ENSG00000128383|HPRD:06168|Vega:OTTHUMG00000151004 22 22q13.1-q13.2 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3A protein-coding APOBEC3A apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3A O phorbolin 1|phorbolin-1|probable DNA dC->dU-editing enzyme APOBEC-3A 20121230 -9606 200316 APOBEC3F CTA-150C2.19-001 ARP8|BK150C2.4.MRNA|KA6 HGNC:17356|MIM:608993|Ensembl:ENSG00000128394|HPRD:16415|Vega:OTTHUMG00000151080 22 22q13.1 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3F protein-coding APOBEC3F apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3F O DNA dC->dU-editing enzyme APOBEC-3F|apolipoprotein B mRNA editing enzyme cytidine deaminase|apolipoprotein B mRNA-editing enzyme catalytic polypeptide-like 3F|induced upon T-cell activation 20121230 -9606 200350 FOXD4L1 - FOXD5|bA395L14.1 HGNC:18521|MIM:611084|Ensembl:ENSG00000184492|HPRD:17010|Vega:OTTHUMG00000131359 2 2q13 forkhead box D4-like 1 protein-coding FOXD4L1 forkhead box D4-like 1 O FOXD4-like 1|forkhead box D4 like 1|forkhead box protein D4-like 1 20121230 -9606 200373 PCDP1 hCG_17324 - Ensembl:ENSG00000163075|HPRD:18748|Vega:OTTHUMG00000153310 2 2q14.2 primary ciliary dyskinesia protein 1 protein-coding - - - - 20121230 -9606 200403 VWA3B - - HGNC:28385|Ensembl:ENSG00000168658|HPRD:14510|Vega:OTTHUMG00000153104 2 2q11.2 von Willebrand factor A domain containing 3B protein-coding VWA3B von Willebrand factor A domain containing 3B O von Willebrand factor A domain-containing protein 3B 20121230 -9606 200407 CREG2 - - HGNC:14272|Ensembl:ENSG00000175874|HPRD:16753|Vega:OTTHUMG00000130692 2 2q11.2 cellular repressor of E1A-stimulated genes 2 protein-coding CREG2 cellular repressor of E1A-stimulated genes 2 O protein CREG2 20121230 -9606 200420 ALMS1P - ALMS1L HGNC:29586|HPRD:11245 2 2p13.1 Alstrom syndrome 1 pseudogene pseudo ALMS1P Alstrom syndrome 1 pseudogene O - 20121230 -9606 200424 TET3 hCG_40738 - HGNC:28313|MIM:613555|Ensembl:ENSG00000187605|Vega:OTTHUMG00000152823 2 2p13.1 tet methylcytosine dioxygenase 3 protein-coding TET3 tet methylcytosine dioxygenase 3 O methylcytosine dioxygenase TET3|probable methylcytosine dioxygenase TET3|tet oncogene family member 3 20121230 -9606 200504 GKN2 UNQ465/PRO813 BRICD1B|GDDR|PRO813|TFIZ1|VLTI465 HGNC:24588|Ensembl:ENSG00000183607|HPRD:17034|Vega:OTTHUMG00000152655 2 2p13.3 gastrokine 2 protein-coding GKN2 gastrokine 2 O BRICHOS domain containing 1B|blottin|down regulated in gastric cancer GDDR|down-regulated in gastric cancer GDDR|gastrokine-2|trefoil factor interactions(z) 1 20121230 -9606 200523 TEX37 - C2orf51|TSC21 HGNC:26341|Ensembl:ENSG00000172073|HPRD:08688|Vega:OTTHUMG00000130332 2 2p11.2 testis expressed 37 protein-coding TEX37 testis expressed 37 O Testis-Specific Conserved gene 21kDa|protein TSC21|testis-specific conserved protein of 21 kDa 20121230 -9606 200539 ANKRD23 - DARP|MARP3 HGNC:24470|MIM:610736|Ensembl:ENSG00000163126|HPRD:12462|Vega:OTTHUMG00000130534 2 2q11.2 ankyrin repeat domain 23 protein-coding ANKRD23 ankyrin repeat domain 23 O ankyrin repeat domain-containing protein 23|diabetes related ankyrin repeat protein|diabetes-related ankyrin repeat protein|muscle ankyrin repeat protein 3 20121230 -9606 200558 APLF - APFL|C2orf13|PALF|Xip1 HGNC:28724|MIM:611035|Ensembl:ENSG00000169621|HPRD:09848|Vega:OTTHUMG00000129566 2 2p13.3 aprataxin and PNKP like factor protein-coding APLF aprataxin and PNKP like factor O PNK and APTX-like FHA domain-containing protein|PNK and APTX-like FHA protein|XRCC1-interacting protein 1|aprataxin and PNK-like factor|aprataxin- and PNK-like factor|apurinic-apyrimidinic endonuclease APLF 20121230 -9606 200575 CRYGEP - CCL|CRYG5|CRYGEP1|D2S1472|G2 HGNC:2412 2 2q33.3 crystallin, gamma E, pseudogene pseudo CRYGEP crystallin, gamma E, pseudogene O - 20121230 -9606 200576 PIKFYVE - CFD|FAB1|PIP5K|PIP5K3|ZFYVE29 HGNC:23785|MIM:609414|Ensembl:ENSG00000115020|HPRD:17852|Vega:OTTHUMG00000132945 2 2q34 phosphoinositide kinase, FYVE finger containing protein-coding PIKFYVE phosphoinositide kinase, FYVE finger containing O 1-phosphatidylinositol 3-phosphate 5-kinase|1-phosphatidylinositol-3-phosphate 5-kinase|PIPkin-III|phosphatidylinositol 3-phosphate 5-kinase type III|phosphatidylinositol-3-phosphate/phosphatidylinositol 5-kinase, type III|type III PIP kinase|zinc finger, FYVE domain containing 29 20121230 -9606 200609 LOC200609 - - - 2 2q37.3 uncharacterized LOC200609 protein-coding - - - - 20111113 -9606 200634 KRTCAP3 UNQ3066/PRO9898 KCP3|MRV222|PRO9898 HGNC:28943|Ensembl:ENSG00000157992|HPRD:17254|Vega:OTTHUMG00000097782 2 2p23.3 keratinocyte associated protein 3 protein-coding KRTCAP3 keratinocyte associated protein 3 O KCP-3|keratinocyte-associated protein 3|keratinocytes associated protein 3 20121230 -9606 200726 LOC200726 hCG_1657980 - - 2 2q33.3 hCG1657980 protein-coding - - - uncharacterized protein LOC200726 20121230 -9606 200728 TMEM17 - - HGNC:26623|MIM:614950|Ensembl:ENSG00000186889|HPRD:15528|Vega:OTTHUMG00000129455 2 2p15 transmembrane protein 17 protein-coding TMEM17 transmembrane protein 17 O - 20121230 -9606 200734 SPRED2 - Spred-2 HGNC:17722|MIM:609292|Ensembl:ENSG00000198369|HPRD:18100|Vega:OTTHUMG00000152737 2 2p14 sprouty-related, EVH1 domain containing 2 protein-coding SPRED2 sprouty-related, EVH1 domain containing 2 O sprouty protein with EVH-1 domain 2, related sequence|sprouty-related, EVH1 domain-containing protein 2 20121230 -9606 200765 TIGD1 - EEYORE HGNC:14523|MIM:612972|Ensembl:ENSG00000221944|HPRD:18185|Vega:OTTHUMG00000133260 2 2q37.1 tigger transposable element derived 1 protein-coding TIGD1 tigger transposable element derived 1 O tigger transposable element-derived protein 1 20121230 -9606 200772 LOC200772 - - - 2 2q37.3 uncharacterized LOC200772 miscRNA - - - - 20121230 -9606 200810 ALG1L - ALG1L1 HGNC:33721|Ensembl:ENSG00000189366|HPRD:18574|Vega:OTTHUMG00000159588 3 3q21.2 asparagine-linked glycosylation 1-like protein-coding ALG1L asparagine-linked glycosylation 1-like O asparagine-linked glycosylation 1-like 1|beta-1,4-mannosyltransferase-like|putative glycosyltransferase ALG1-like 20121230 -9606 200830 LOC200830 - - - 3 3q26.1 uncharacterized LOC200830 protein-coding - - - - 20120508 -9606 200844 C3orf67 - - HGNC:24763|Ensembl:ENSG00000163689|HPRD:13458|Vega:OTTHUMG00000159151 3 3p14.2 chromosome 3 open reading frame 67 protein-coding C3orf67 chromosome 3 open reading frame 67 O uncharacterized protein C3orf67 20121230 -9606 200845 KCTD6 - KCASH3 HGNC:22235|Ensembl:ENSG00000168301|HPRD:13769|Vega:OTTHUMG00000159161 3 3p14.3 potassium channel tetramerisation domain containing 6 protein-coding KCTD6 potassium channel tetramerisation domain containing 6 O BTB/POZ domain-containing protein KCTD6 20121230 -9606 200860 DKFZp547K1610 - - - 3 3q21.3 uncharacterized protein DKFZp547K1610 protein-coding - - - - 20111025 -9606 200879 LIPH - AH|ARWH2|LAH2|LPDLR|PLA1B|mPA-PLA1 HGNC:18483|MIM:607365|Ensembl:ENSG00000163898|HPRD:07392|Vega:OTTHUMG00000156657 3 3q27 lipase, member H protein-coding LIPH lipase, member H O LPD lipase-related protein|lipase H|lipase member H|mPA-PLA1 alpha|membrane-associated phosphatidic acid-selective phospholipase A1-alpha|membrane-bound phosphatidic acid-selective phospholipase A1|phospholipase A1 member B 20121230 -9606 200894 ARL13B - ARL2L1|JBTS8 HGNC:25419|MIM:608922|Ensembl:ENSG00000169379|HPRD:12334|Vega:OTTHUMG00000159012 3 3q11.1 ADP-ribosylation factor-like 13B protein-coding ARL13B ADP-ribosylation factor-like 13B O ADP-ribosylation factor-like 2-like 1|ADP-ribosylation factor-like protein 13B|ARL2-like protein 1 20121230 -9606 200895 DHFRL1 - DHFRP4 HGNC:27309|Ensembl:ENSG00000178700|HPRD:11246|Vega:OTTHUMG00000159014 3 3q11.1 dihydrofolate reductase-like 1 protein-coding DHFRL1 dihydrofolate reductase-like 1 O dihydrofolate reductase pseudogene 4|dihydrofolate reductase, mitochondrial|dihydrofolate reductase-like protein 1 20121230 -9606 200909 HTR3D - 5HT3D HGNC:24004|MIM:610122|Ensembl:ENSG00000186090|HPRD:17121|Vega:OTTHUMG00000156858 3 3q27.1 5-hydroxytryptamine (serotonin) receptor 3D, ionotropic protein-coding HTR3D 5-hydroxytryptamine (serotonin) receptor 3D, ionotropic O 5-hydroxytryptamine (serotonin) receptor 3 family member D|5-hydroxytryptamine receptor 3 subunit D|5-hydroxytryptamine receptor 3D|serotonin 5-HT-3D receptor|serotonin receptor 3D 20121230 -9606 200916 RPL22L1 - - HGNC:27610|Ensembl:ENSG00000163584|Vega:OTTHUMG00000158957 3 3q26.2 ribosomal protein L22-like 1 protein-coding RPL22L1 ribosomal protein L22-like 1 O 60S ribosomal protein L22-like 1 20121230 -9606 200931 SLC51A - OSTA|OSTalpha HGNC:29955|MIM:612084|Ensembl:ENSG00000163959|HPRD:17810|Vega:OTTHUMG00000155684 3 3q29 solute carrier family 51, alpha subunit protein-coding SLC51A solute carrier family 51, alpha subunit O OST-alpha|organic solute transporter alpha|organic solute transporter subunit alpha|organic solute transporter, alpha subunit|solute carrier family 51 subunit alpha 20121230 -9606 200933 FBXO45 - Fbx45 HGNC:29148|MIM:609112|Ensembl:ENSG00000174013|Vega:OTTHUMG00000155571 3 3q29 F-box protein 45 protein-coding FBXO45 F-box protein 45 O F-box only protein 45|F-box/SPRY domain-containing protein 1|hFbxo45 20121230 -9606 200942 KLHDC8B FP17659 - HGNC:28557|MIM:613169|Ensembl:ENSG00000185909|HPRD:14598|Vega:OTTHUMG00000156814 3 3p21.31 kelch domain containing 8B protein-coding KLHDC8B kelch domain containing 8B O kelch domain-containing protein 8B 20121230 -9606 200958 MUC20 UNQ2782/PRO7170 MUC-20 HGNC:23282|MIM:610360|Ensembl:ENSG00000176945|HPRD:17615|Vega:OTTHUMG00000155823 3 3q29 mucin 20, cell surface associated protein-coding MUC20 mucin 20, cell surface associated O mucin-20|transmembrane mucin MUC20S 20121230 -9606 200959 GABRR3 - - HGNC:17969 3 3q11.2 gamma-aminobutyric acid (GABA) A receptor, rho 3 protein-coding GABRR3 gamma-aminobutyric acid (GABA) A receptor, rho 3 O GABA(A) receptor subunit rho-3|GABA(C) receptor|gamma-aminobutyric acid (GABA) receptor, rho 3|gamma-aminobutyric acid receptor subunit rho-3 20121230 -9606 201134 CEP112 - CCDC46|MACOCO HGNC:28514|Ensembl:ENSG00000154240|HPRD:11336|Vega:OTTHUMG00000179474 17 17q24.1 centrosomal protein 112kDa protein-coding CEP112 centrosomal protein 112kDa O centrosomal protein of 112 kDa|coiled-coil domain containing 46|coiled-coil domain-containing protein 46 20121230 -9606 201140 DHRS7C - SDR32C2 HGNC:32423|Ensembl:ENSG00000184544|Vega:OTTHUMG00000177944 17 17p13.1 dehydrogenase/reductase (SDR family) member 7C protein-coding DHRS7C dehydrogenase/reductase (SDR family) member 7C O dehydrogenase/reductase SDR family member 7C|short chain dehydrogenase/reductase family 32C, member 2 20121230 -9606 201158 TVP23C Nbla10383 FAM18B2 HGNC:30453|Ensembl:ENSG00000175106|HPRD:14125|Vega:OTTHUMG00000171461 17 17p12 trans-golgi network vesicle protein 23 homolog C (S. cerevisiae) protein-coding TVP23C trans-golgi network vesicle protein 23 homolog C (S. cerevisiae) O family with sequence similarity 18, member B2|protein FAM18B2 20121230 -9606 201161 CENPV - 3110013H01Rik|CENP-V|PRR6|p30 HGNC:29920|MIM:608139|Ensembl:ENSG00000166582|Vega:OTTHUMG00000059345 17 17p11.2 centromere protein V protein-coding CENPV centromere protein V O nuclear protein p30|proline rich 6|proline-rich protein 6 20121230 -9606 201163 FLCN - BHD|FLCL HGNC:27310|MIM:607273|Ensembl:ENSG00000154803|HPRD:06278|Vega:OTTHUMG00000059275 17 17p11.2 folliculin protein-coding FLCN folliculin O BHD skin lesion fibrofolliculoma protein|birt-Hogg-Dube syndrome protein 20121230 -9606 201164 PLD6 - ZUC HGNC:30447|MIM:614960|Ensembl:ENSG00000179598|HPRD:14126|Vega:OTTHUMG00000059278 17 17p11.2 phospholipase D family, member 6 protein-coding PLD6 phospholipase D family, member 6 O PLD 6|choline phosphatase 6|mitoPLD|mitochondrial cardiolipin hydrolase|mitochondrial phospholipase|phosphatidylcholine-hydrolyzing phospholipase D6|phospholipase D6|protein zucchini homolog 20121230 -9606 201176 ARHGAP27 hCG_1992862 CAMGAP1|PP905|SH3D20|SH3P20 HGNC:31813|MIM:610591|Ensembl:ENSG00000159314|HPRD:12477|Vega:OTTHUMG00000166982 17 17q21.31 Rho GTPase activating protein 27 protein-coding ARHGAP27 Rho GTPase activating protein 27 O CIN85-associated multi-domain-containing Rho GTPase-activating protein 1|SH3 domain containing 20|SH3 domain-containing protein 20|rho GTPase-activating protein 27|rho-type GTPase-activating protein 27 20121230 -9606 201181 ZNF385C - - HGNC:33722|Ensembl:ENSG00000187595|HPRD:13245|Vega:OTTHUMG00000132073 17 17q21.2 zinc finger protein 385C protein-coding ZNF385C zinc finger protein 385C O - 20121230 -9606 201191 SAMD14 - - HGNC:27312|Ensembl:ENSG00000167100|HPRD:14127|Vega:OTTHUMG00000161992 17 17q21.33 sterile alpha motif domain containing 14 protein-coding SAMD14 sterile alpha motif domain containing 14 O SAM domain-containing protein 14|sterile alpha motif domain-containing protein 14 20121230 -9606 201229 LYRM9 HSD24 C17orf108 HGNC:27314|Ensembl:ENSG00000232859|Vega:OTTHUMG00000132829 17 17q11.2 LYR motif containing 9 protein-coding LYRM9 LYR motif containing 9 O UPF0631 protein C17orf108 20121230 -9606 201232 SLC16A13 - MCT13 HGNC:31037|Ensembl:ENSG00000174327|HPRD:18054|Vega:OTTHUMG00000102089 17 17p13.1 solute carrier family 16, member 13 (monocarboxylic acid transporter 13) protein-coding SLC16A13 solute carrier family 16, member 13 (monocarboxylic acid transporter 13) O MCT 13|monocarboxylate transporter 13|solute carrier family 16 (monocarboxylic acid transporters), member 13|solute carrier family 16 member 13 20121230 -9606 201243 C17orf74 - - HGNC:27315|Ensembl:ENSG00000184560|HPRD:14128|Vega:OTTHUMG00000178190 17 17p13.1 chromosome 17 open reading frame 74 protein-coding C17orf74 chromosome 17 open reading frame 74 O uncharacterized protein C17orf74 20121230 -9606 201254 STRA13 - CENP-X|FAAP10|MHF2 HGNC:11422|Ensembl:ENSG00000169689|HPRD:18121|Vega:OTTHUMG00000132129 17 17q25.3 stimulated by retinoic acid 13 homolog (mouse) protein-coding STRA13 stimulated by retinoic acid 13 homolog (mouse) O FANCM-interacting histone fold protein 2|Fanconi anemia-associated polypeptide of 10 kDa|centromere protein X|retinoic acid-inducible gene D9 protein homolog|stimulated by retinoic acid gene 13 protein homolog 20121230 -9606 201255 LRRC45 - - HGNC:28302|Ensembl:ENSG00000169683|HPRD:14476|Vega:OTTHUMG00000178454 17 17q25.3 leucine rich repeat containing 45 protein-coding LRRC45 leucine rich repeat containing 45 O leucine-rich repeat-containing protein 45 20121230 -9606 201259 RPL32P31 - RPL32_21_1577 HGNC:37035 17 17q25.3 ribosomal protein L32 pseudogene 31 pseudo RPL32P31 ribosomal protein L32 pseudogene 31 O - 20121230 -9606 201266 SLC39A11 - C17orf26|ZIP11 HGNC:14463|Ensembl:ENSG00000133195|HPRD:15383|Vega:OTTHUMG00000178306 17 17q21.31 solute carrier family 39 (metal ion transporter), member 11 protein-coding SLC39A11 solute carrier family 39 (metal ion transporter), member 11 O ZIP-11|Zrt- and Irt-like protein 11|solute carrier family 39 member 11|zinc transporter ZIP11 20121230 -9606 201283 AMZ2P1 - - HGNC:26491|HPRD:08720 17 17q24.1 archaelysin family metallopeptidase 2 pseudogene 1 pseudo AMZ2P1 archaelysin family metallopeptidase 2 pseudogene 1 O - 20121230 -9606 201288 NOS2P2 - NOS2B HGNC:7874|MIM:600719 17 17p11.2 nitric oxide synthase 2 pseudogene 2 pseudo NOS2P2 nitric oxide synthase 2 pseudogene 2 O - 20121230 -9606 201292 TRIM65 - 4732463G12Rik HGNC:27316|Ensembl:ENSG00000141569|HPRD:15569|Vega:OTTHUMG00000132127 17 17q25.1 tripartite motif containing 65 protein-coding TRIM65 tripartite motif containing 65 O tripartite motif-containing protein 65 20121230 -9606 201294 UNC13D - FHL3|HLH3|HPLH3|Munc13-4 HGNC:23147|MIM:608897|Ensembl:ENSG00000092929|HPRD:10598|Vega:OTTHUMG00000179895 17 17q25.1 unc-13 homolog D (C. elegans) protein-coding UNC13D unc-13 homolog D (C. elegans) O protein unc-13 homolog D 20121230 -9606 201299 RDM1 - RAD52B HGNC:19950|MIM:612896|Ensembl:ENSG00000187456|HPRD:15205|Vega:OTTHUMG00000133003 17 17q11.2 RAD52 motif 1 protein-coding RDM1 RAD52 motif 1 O RAD52 homolog B|RAD52 motif-containing protein 1 20121230 -9606 201305 SPNS3 - - HGNC:28433|MIM:611701|Ensembl:ENSG00000182557|HPRD:14531|Vega:OTTHUMG00000177737 17 17p13.2 spinster homolog 3 (Drosophila) protein-coding SPNS3 spinster homolog 3 (Drosophila) O protein spinster homolog 3 20121230 -9606 201456 FBXO15 - FBX15 HGNC:13617|MIM:609093|Ensembl:ENSG00000141665|HPRD:16435|Vega:OTTHUMG00000132842 18 18q22.3 F-box protein 15 protein-coding FBXO15 F-box protein 15 O F-box only protein 15 20121230 -9606 201475 RAB12 - - HGNC:31332|Ensembl:ENSG00000206418|Vega:OTTHUMG00000178949 18 18p11.22 RAB12, member RAS oncogene family protein-coding RAB12 RAB12, member RAS oncogene family O putative Ras-related protein Rab-12|ras-related protein Rab-12 20121230 -9606 201477 DLGAP1-AS3 - - HGNC:27317 18 18p11.31 DLGAP1 antisense RNA 3 miscRNA DLGAP1-AS3 DLGAP1 antisense RNA 3 O - 20121230 -9606 201501 ZBTB7C - APM-1|APM1|ZBTB36|ZNF857C HGNC:31700|Ensembl:ENSG00000184828|Vega:OTTHUMG00000180322 18 18q21.1 zinc finger and BTB domain containing 7C protein-coding ZBTB7C zinc finger and BTB domain containing 7C O B230208J24Rik|affected by papillomavirus DNA integration in ME180 cells protein 1|zinc finger and BTB domain containing 36|zinc finger and BTB domain-containing protein 36|zinc finger and BTB domain-containing protein 7C|zinc finger protein 857C 20121230 -9606 201514 ZNF584 - - HGNC:27318|Ensembl:ENSG00000171574|HPRD:15861 19 19q13.43 zinc finger protein 584 protein-coding ZNF584 zinc finger protein 584 O - 20121230 -9606 201516 ZSCAN4 - ZNF494 HGNC:23709|MIM:613419|Ensembl:ENSG00000180532|HPRD:15899 19 19q13.43 zinc finger and SCAN domain containing 4 protein-coding ZSCAN4 zinc finger and SCAN domain containing 4 O zinc finger and SCAN domain-containing protein 4|zinc finger protein 494 20121230 -9606 201562 PTPLB - HACD2 HGNC:9640|Ensembl:ENSG00000206527|HPRD:17930|Vega:OTTHUMG00000159529 3 3q21.1 protein tyrosine phosphatase-like (proline instead of catalytic arginine), member b protein-coding PTPLB protein tyrosine phosphatase-like (proline instead of catalytic arginine), member b O 3-hydroxyacyl-CoA dehydratase 2|protein-tyrosine phosphatase-like member B 20121230 -9606 201595 STT3B - SIMP|STT3-B HGNC:30611|MIM:608605|Ensembl:ENSG00000163527|HPRD:12268|Vega:OTTHUMG00000130673 3 3p23 STT3, subunit of the oligosaccharyltransferase complex, homolog B (S. cerevisiae) protein-coding STT3B STT3, subunit of the oligosaccharyltransferase complex, homolog B (S. cerevisiae) O dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3B|homolog of yeast STT3|oligosaccharyl transferase subunit STT3B|source of immunodominant MHC associated peptides|source of immunodominant MHC-associated peptides homolog 20121230 -9606 201617 LOC201617 - - - 3 3p14.2 uncharacterized LOC201617 miscRNA - - - - 20121230 -9606 201625 DNAH12 hCG_1779312 DHC3|DLP12|DNAH12L|DNAH7L|DNAHC12|DNAHC3|DNHD2|HDHC3|HL-19|HL19 HGNC:2943|MIM:603340|Ensembl:ENSG00000174844|HPRD:08281|Vega:OTTHUMG00000158598 3 3p14.3 dynein, axonemal, heavy chain 12 protein-coding DNAH12 dynein, axonemal, heavy chain 12 O axonemal beta dynein heavy chain 12|axonemal dynein heavy chain isotype3|ciliary dynein heavy chain 12|dynein heavy chain 12, axonemal|dynein heavy chain domain-containing protein 2|dynein, axonemal, heavy polypeptide 12|dynein, heavy chain-5 20121230 -9606 201626 PDE12 - 2'-PDE HGNC:25386|Ensembl:ENSG00000174840|HPRD:11842|Vega:OTTHUMG00000158599 3 3p14.3 phosphodiesterase 12 protein-coding PDE12 phosphodiesterase 12 O 2',5'-phosphodiesterase 12|2'-phosphodiesterase|2-PDE 20121230 -9606 201627 DENND6A - AFI1A|FAM116A HGNC:26635|Ensembl:ENSG00000174839|HPRD:08756|Vega:OTTHUMG00000158639 3 3p14.3 DENN/MADD domain containing 6A protein-coding DENND6A DENN/MADD domain containing 6A O family with sequence similarity 116, member A|protein FAM116A 20121230 -9606 201633 TIGIT - VSIG9|VSTM3|WUCAM HGNC:26838|MIM:612859|Ensembl:ENSG00000181847|HPRD:08804|Vega:OTTHUMG00000159331 3 3q13.31 T cell immunoreceptor with Ig and ITIM domains protein-coding TIGIT T cell immunoreceptor with Ig and ITIM domains O T-cell immunoreceptor with Ig and ITIM domains|V-set and immunoglobulin domain containing 9|V-set and immunoglobulin domain-containing protein 9|V-set and transmembrane domain containing 3|V-set and transmembrane domain-containing protein 3|Washington University cell adhesion molecule 20121230 -9606 201651 LOC201651 - - - 3 3q25.1 arylacetamide deacetylase (esterase) pseudogene pseudo - - - - 20121230 -9606 201725 C4orf46 - - HGNC:27320|Ensembl:ENSG00000205208|HPRD:17319|Vega:OTTHUMG00000161919 4 4q32.1 chromosome 4 open reading frame 46 protein-coding C4orf46 chromosome 4 open reading frame 46 O uncharacterized protein C4orf46 20121230 -9606 201780 SLC10A4 - P4 HGNC:22980|Ensembl:ENSG00000145248|HPRD:11562|Vega:OTTHUMG00000102092 4 4p11 solute carrier family 10 (sodium/bile acid cotransporter family), member 4 protein-coding SLC10A4 solute carrier family 10 (sodium/bile acid cotransporter family), member 4 O Na(+)/bile acid cotransporter 4|bile acid transporter SLC10A4|sodium/bile acid cotransporter 4|solute carrier family 10 member 4 20121230 -9606 201798 TIGD4 - - HGNC:18335|Ensembl:ENSG00000169989|HPRD:18188|Vega:OTTHUMG00000161464 4 4q31.3 tigger transposable element derived 4 protein-coding TIGD4 tigger transposable element derived 4 O tigger transposable element-derived protein 4 20121230 -9606 201799 TMEM154 - - HGNC:26489|Ensembl:ENSG00000170006|HPRD:08719|Vega:OTTHUMG00000161463 4 4q31.3 transmembrane protein 154 protein-coding TMEM154 transmembrane protein 154 O - 20121230 -9606 201895 SMIM14 - C4orf34 HGNC:27321|Ensembl:ENSG00000163683|HPRD:14129|Vega:OTTHUMG00000128581 4 4p14 small integral membrane protein 14 protein-coding SMIM14 small integral membrane protein 14 O uncharacterized protein C4orf34 20121230 -9606 201931 TMEM192 - - HGNC:26775|Ensembl:ENSG00000170088|HPRD:08787|Vega:OTTHUMG00000161254 4 4q32.3 transmembrane protein 192 protein-coding TMEM192 transmembrane protein 192 O - 20121230 -9606 201965 RWDD4 - FAM28A|RWDD4A HGNC:23750|Ensembl:ENSG00000182552|HPRD:14393|Vega:OTTHUMG00000160632 4 4q35.1 RWD domain containing 4 protein-coding RWDD4 RWD domain containing 4 O RWD domain containing 4A|RWD domain-containing protein 4|RWD domain-containing protein 4A|family with sequence similarity 28, member A 20121230 -9606 201973 CCDC111 - - HGNC:26575|Ensembl:ENSG00000164306|HPRD:08742|Vega:OTTHUMG00000160495 4 4q35.1 coiled-coil domain containing 111 protein-coding CCDC111 coiled-coil domain containing 111 O coiled-coil domain-containing protein 111 20121230 -9606 201989 GK6P - GK7P|GKP1 HGNC:23263 4 4q26 glycerol kinase 6 pseudogene pseudo GK6P glycerol kinase 6 pseudogene O - 20121230 -9606 202018 TAPT1 - CMVFR HGNC:26887|MIM:612758|Ensembl:ENSG00000169762|Vega:OTTHUMG00000160177 4 4p15.32 transmembrane anterior posterior transformation 1 protein-coding TAPT1 transmembrane anterior posterior transformation 1 O cytomegalovirus partial fusion receptor|transmembrane anterior posterior transformation protein 1 homolog 20121230 -9606 202020 TAPT1-AS1 - - HGNC:26832|HPRD:08263 4 4p15.32 TAPT1 antisense RNA 1 (head to head) miscRNA TAPT1-AS1 TAPT1 antisense RNA 1 (head to head) O - 20121230 -9606 202025 LOC202025 - - - 4 4p16.1 uncharacterized LOC202025 unknown - - - - 20120622 -9606 202051 SPATA24 - CCDC161|T6441 HGNC:27322|Ensembl:ENSG00000170469|Vega:OTTHUMG00000163388 5 5q31.2 spermatogenesis associated 24 protein-coding SPATA24 spermatogenesis associated 24 O coiled-coil domain containing 161|spermatogenesis-associated protein 24|testis protein T6441 homolog 20121230 -9606 202052 DNAJC18 - - HGNC:28429|Ensembl:ENSG00000170464|HPRD:07130|Vega:OTTHUMG00000129225 5 5q31.2 DnaJ (Hsp40) homolog, subfamily C, member 18 protein-coding DNAJC18 DnaJ (Hsp40) homolog, subfamily C, member 18 O dnaJ homolog subfamily C member 18 20121230 -9606 202122 RPL27P10 - RPL27_5_551 HGNC:35494 5 5p13.3 ribosomal protein L27 pseudogene 10 pseudo RPL27P10 ribosomal protein L27 pseudogene 10 O - 20121230 -9606 202134 FAM153B - - HGNC:27323|Ensembl:ENSG00000182230|Vega:OTTHUMG00000163181 5 5q35.2 family with sequence similarity 153, member B protein-coding FAM153B family with sequence similarity 153, member B O protein FAM153B 20121230 -9606 202151 RANBP3L - - HGNC:26353|Ensembl:ENSG00000164188|HPRD:08064|Vega:OTTHUMG00000131110 5 5p13.2 RAN binding protein 3-like protein-coding RANBP3L RAN binding protein 3-like O ran-binding protein 3-like 20121230 -9606 202181 LOC202181 - - - 5 5q35.3 SUMO-interacting motifs containing 1 pseudogene pseudo - - - - 20121230 -9606 202227 LOC202227 - - - 5 5q12.3 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 202243 CCDC125 - KENAE HGNC:28924|MIM:613781|Ensembl:ENSG00000183323|HPRD:13774|Vega:OTTHUMG00000131259 5 5q13.2 coiled-coil domain containing 125 protein-coding CCDC125 coiled-coil domain containing 125 O Kenae|coiled-coil domain-containing protein 125 20121230 -9606 202299 C5orf27 - FIS HGNC:24687|HPRD:16896 5 5q15 chromosome 5 open reading frame 27 miscRNA C5orf27 chromosome 5 open reading frame 27 O - 20121230 -9606 202309 GAPT - C5orf29 HGNC:26588|Ensembl:ENSG00000175857|HPRD:08161|Vega:OTTHUMG00000131219 5 5q11.2 GRB2-binding adaptor protein, transmembrane protein-coding GAPT GRB2-binding adaptor protein, transmembrane O GRB2-binding transmembrane adaptor|growth factor receptor-bound protein 2-binding adapter protein, transmembrane|protein GAPT 20121230 -9606 202319 LOC202319 - - - 5 5q11.1 peptidylprolyl isomerase A (cyclophilin A)-like 4G pseudogene pseudo - - - - 20121230 -9606 202333 CMYA5 - C5orf10|SPRYD2|TRIM76 HGNC:14305|MIM:612193|Ensembl:ENSG00000164309|HPRD:16728|Vega:OTTHUMG00000162548 5 5q14.1 cardiomyopathy associated 5 protein-coding CMYA5 cardiomyopathy associated 5 O 2310076E16Rik|SPRY domain-containing protein 2|cardiomyopathy-associated protein 5|dystrobrevin-binding protein 2|genethonin-3|myospryn|tripartite motif-containing 76|tripartite motif-containing protein 76 20121230 -9606 202374 STK32A - YANK1 HGNC:28317|Ensembl:ENSG00000169302|HPRD:15445|Vega:OTTHUMG00000163411 5 5q32 serine/threonine kinase 32A protein-coding STK32A serine/threonine kinase 32A O A930015B13Rik|serine/threonine-protein kinase 32A 20121230 -9606 202459 OSTCP1 - DC2L|OSTCL HGNC:30530|HPRD:14130 6 6q25.3 oligosaccharyltransferase complex subunit pseudogene 1 pseudo OSTCP1 oligosaccharyltransferase complex subunit pseudogene 1 O - 20121230 -9606 202500 TCTE1 RP11-444E17.2 D6S46 HGNC:11693|MIM:186975|Ensembl:ENSG00000146221|HPRD:14568|Vega:OTTHUMG00000014763 6 6p21.1 t-complex-associated-testis-expressed 1 protein-coding TCTE1 t-complex-associated-testis-expressed 1 O T-complex-associated testis-expressed protein 1|tcte-1 20121230 -9606 202559 KHDRBS2 - SLM-1|SLM1|bA535F17.1 HGNC:18114|MIM:610487|Ensembl:ENSG00000112232|HPRD:13775|Vega:OTTHUMG00000014936 6 6q11.1 KH domain containing, RNA binding, signal transduction associated 2 protein-coding KHDRBS2 KH domain containing, RNA binding, signal transduction associated 2 O KH domain-containing, RNA-binding, signal transduction-associated protein 2|Sam68-like mammalian protein 1|hSLM-1 20121230 -9606 202658 TRIM39-RPP21 - TRIM39R HGNC:38845|Ensembl:ENSG00000248167|Vega:OTTHUMG00000161144 6 - TRIM39-RPP21 readthrough protein-coding TRIM39-RPP21 TRIM39-RPP21 readthrough O Rpp21 domain-containing TRIM protein|TRIM39-RPP21 protein|TRIM39-RPP21 read-through transcript 20121230 -9606 202781 LOC202781 - - - 7 7q36.2 uncharacterized LOC202781 miscRNA - - - - 20121230 -9606 202789 RPL17P27 tcag7.1263 RPL17_17_857 HGNC:36038 7 7q34 ribosomal protein L17 pseudogene 27 pseudo RPL17P27 ribosomal protein L17 pseudogene 27 O - 20121230 -9606 202861 OR2A3P - OR2A18P HGNC:8231 7 7q35 olfactory receptor, family 2, subfamily A, member 3 pseudogene pseudo OR2A3P olfactory receptor, family 2, subfamily A, member 3 pseudogene O - 20121230 -9606 202865 C7orf33 - - HGNC:21724|Ensembl:ENSG00000170279|HPRD:12921|Vega:OTTHUMG00000152756 7 7q36.1 chromosome 7 open reading frame 33 protein-coding C7orf33 chromosome 7 open reading frame 33 O uncharacterized protein C7orf33 20121230 -9606 202915 TMEM184A tcag7.540 - HGNC:28797|Ensembl:ENSG00000164855|HPRD:14716|Vega:OTTHUMG00000119025 7 7p22.3 transmembrane protein 184A protein-coding TMEM184A transmembrane protein 184A O - 20121230 -9606 203054 ADCK5 - - HGNC:21738|Ensembl:ENSG00000173137|HPRD:12427|Vega:OTTHUMG00000165190 8 8q24.3 aarF domain containing kinase 5 protein-coding ADCK5 aarF domain containing kinase 5 O uncharacterized aarF domain-containing protein kinase 5 20121230 -9606 203062 TSNARE1 - - HGNC:26437|Ensembl:ENSG00000171045|HPRD:08708|Vega:OTTHUMG00000164867 8 8q24.3 t-SNARE domain containing 1 protein-coding TSNARE1 t-SNARE domain containing 1 O t-SNARE domain-containing protein 1 20121230 -9606 203068 TUBB DAAP-285E11.4 M40|OK/SW-cl.56|TUBB1|TUBB5 HGNC:20778|MIM:191130|Ensembl:ENSG00000196230|Vega:OTTHUMG00000031059 6 6p21.33 tubulin, beta class I protein-coding TUBB tubulin, beta class I O beta 5-tubulin|beta Ib tubulin|beta-4 tubulin|beta1-tubulin|class I beta-tubulin|tubulin beta chain|tubulin beta polypeptide|tubulin beta-1 chain|tubulin beta-5 chain|tubulin, beta polypeptide 20121230 -9606 203069 R3HCC1 - - HGNC:27329|Ensembl:ENSG00000104679|Vega:OTTHUMG00000163786 8 8p21.3 R3H domain and coiled-coil containing 1 protein-coding R3HCC1 R3H domain and coiled-coil containing 1 O R3H and coiled-coil domain-containing protein 1 20121230 -9606 203074 PRSS55 UNQ9391/PRO34284 T-SP1|UNQ9391 HGNC:30824|Ensembl:ENSG00000184647|HPRD:07162|Vega:OTTHUMG00000129345 8 8p23.1 protease, serine, 55 protein-coding PRSS55 protease, serine, 55 O probable serine protease UNQ9391/PRO34284|serine protease 55|testis serine protease 1|tryptophan/serine protease 20121230 -9606 203076 C8orf74 - - HGNC:32296|Ensembl:ENSG00000171060|Vega:OTTHUMG00000163807 8 8p23.1 chromosome 8 open reading frame 74 protein-coding C8orf74 chromosome 8 open reading frame 74 O uncharacterized protein C8orf74 20121230 -9606 203100 HTRA4 - - HGNC:26909|MIM:610700|Ensembl:ENSG00000169495|HPRD:08818|Vega:OTTHUMG00000164070 8 8p11.22 HtrA serine peptidase 4 protein-coding HTRA4 HtrA serine peptidase 4 O high-temperature requirement factor A4|probable serine protease HTRA4|serine protease HTRA4 20121230 -9606 203102 ADAM32 UNQ5982/PRO21340 - HGNC:15479|Ensembl:ENSG00000197140|HPRD:16475|Vega:OTTHUMG00000164071 8 8p11.22 ADAM metallopeptidase domain 32 protein-coding ADAM32 ADAM metallopeptidase domain 32 O ADAM 32|a disintegrin and metalloprotease domain 32|a disintegrin and metalloproteinase domain 32|disintegrin and metalloproteinase domain-containing protein 32|metalloproteinase 12-like protein 20121230 -9606 203111 C8orf47 - - HGNC:26823|Ensembl:ENSG00000177459|HPRD:08802|Vega:OTTHUMG00000164819 8 8q22.2 chromosome 8 open reading frame 47 protein-coding C8orf47 chromosome 8 open reading frame 47 O uncharacterized protein C8orf47 20121230 -9606 203190 LGI3 UNQ8190/PRO23199 LGIL4 HGNC:18711|MIM:608302|Ensembl:ENSG00000168481|HPRD:06432|Vega:OTTHUMG00000131599 8 8p21.3 leucine-rich repeat LGI family, member 3 protein-coding LGI3 leucine-rich repeat LGI family, member 3 O LGI1-like protein 4|leucine-rich glioma-inactivated protein 3|leucine-rich repeat LGI family member 3 20121230 -9606 203197 C9orf91 - RP11-402G3.2 HGNC:24513|Ensembl:ENSG00000157693|HPRD:12988|Vega:OTTHUMG00000020541 9 9q32 chromosome 9 open reading frame 91 protein-coding C9orf91 chromosome 9 open reading frame 91 O transmembrane protein C9orf91 20121230 -9606 203228 C9orf72 - ALSFTD|FTDALS HGNC:28337|MIM:614260|Ensembl:ENSG00000147894|HPRD:12975|Vega:OTTHUMG00000019716 9 9p21.2 chromosome 9 open reading frame 72 protein-coding C9orf72 chromosome 9 open reading frame 72 O uncharacterized protein C9orf72 20121230 -9606 203235 C9orf141 RP11-229P13.5 - HGNC:18147 9 9q34.3 chromosome 9 open reading frame 141 unknown C9orf141 chromosome 9 open reading frame 141 O - 20121216 -9606 203238 CCDC171 RP11-536D16.1 C9orf93|bA536D16.1|bA778P13.1 HGNC:29828|Ensembl:ENSG00000164989|HPRD:10805|Vega:OTTHUMG00000019584 9 9p22.3 coiled-coil domain containing 171 protein-coding CCDC171 coiled-coil domain containing 171 O coiled-coil domain-containing protein 171|myosin tail domain containing protein 20121230 -9606 203245 NAIF1 - C9orf90|RP11-379C10.2|bA379C10.2 HGNC:25446|MIM:610673|Ensembl:ENSG00000171169|HPRD:12987|Vega:OTTHUMG00000020727 9 9q34.11 nuclear apoptosis inducing factor 1 protein-coding NAIF1 nuclear apoptosis inducing factor 1 O nuclear apoptosis-inducing factor 1 20121230 -9606 203259 FAM219A RP11-573M23.5 C9orf25|bA573M23.5 HGNC:19920|Ensembl:ENSG00000164970|HPRD:12950|Vega:OTTHUMG00000019822 9 9p13.3 family with sequence similarity 219, member A protein-coding FAM219A family with sequence similarity 219, member A O protein FAM219A|uncharacterized protein C9orf25 20121230 -9606 203260 CCDC107 RP11-331F9.6 PSEC0222 HGNC:28465|Ensembl:ENSG00000159884|HPRD:14545|Vega:OTTHUMG00000019868 9 9p13.3 coiled-coil domain containing 107 protein-coding CCDC107 coiled-coil domain containing 107 O coiled-coil domain-containing protein 107 20121230 -9606 203274 LINC00537 - - HGNC:43654 9 9q21.11 long intergenic non-protein coding RNA 537 protein-coding LINC00537 long intergenic non-protein coding RNA 537 O uncharacterized protein LOC203274 20120909 -9606 203286 ANKS6 RP11-207C11.3 ANKRD14|SAMD6 HGNC:26724|Ensembl:ENSG00000165138|HPRD:18012|Vega:OTTHUMG00000020346|Vega:OTTHUMG00000020347 9 9q22.33 ankyrin repeat and sterile alpha motif domain containing 6 protein-coding ANKS6 ankyrin repeat and sterile alpha motif domain containing 6 O SAM domain-containing protein 6|ankyrin repeat and SAM domain-containing protein 6|ankyrin repeat domain 14|ankyrin repeat domain-containing protein 14|samCystin|sterile alpha motif domain containing 6|sterile alpha motif domain-containing protein 6 20121230 -9606 203328 SUSD3 UNQ9387/PRO34275 - HGNC:28391|Ensembl:ENSG00000157303|HPRD:15453|Vega:OTTHUMG00000020241 9 9q22.31 sushi domain containing 3 protein-coding SUSD3 sushi domain containing 3 O sushi domain-containing protein 3 20121230 -9606 203413 CXorf61 RP3-452H17.2 CT83|KK-LC-1|KKLC1 HGNC:33494|MIM:300625|Ensembl:ENSG00000204019|HPRD:18577|Vega:OTTHUMG00000022244 X Xq23 chromosome X open reading frame 61 protein-coding CXorf61 chromosome X open reading frame 61 O cancer/testis antigen 83|kita-kyushu lung cancer antigen 1 20121230 -9606 203414 CXorf24 RP1-230G1.6 - HGNC:27333 X Xp11.23 chromosome X open reading frame 24 unknown CXorf24 chromosome X open reading frame 24 O - 20121230 -9606 203427 SLC25A43 - - HGNC:30557|MIM:300641|Ensembl:ENSG00000077713|HPRD:06617|Vega:OTTHUMG00000022272 X Xq24 solute carrier family 25, member 43 protein-coding SLC25A43 solute carrier family 25, member 43 O solute carrier family 25 member 43 20121230 -9606 203429 FAM226A - CXorf50|LINC00246A|NCRNA00246|NCRNA00246A HGNC:28544|HPRD:06648 X Xq13.2 family with sequence similarity 226, member A (non-protein coding) miscRNA FAM226A family with sequence similarity 226, member A (non-protein coding) O - 20121230 -9606 203430 ZCCHC5 - Mar3|Mart3|ZHC5 HGNC:22997|Ensembl:ENSG00000179300|HPRD:06756|Vega:OTTHUMG00000021892 X Xq21.1 zinc finger, CCHC domain containing 5 protein-coding ZCCHC5 zinc finger, CCHC domain containing 5 O mammalian retrotransposon-derived 3|zinc finger CCHC domain-containing protein 5 20121230 -9606 203447 NRK RP1-82J11.1 NESK HGNC:25391|MIM:300791|Ensembl:ENSG00000123572|HPRD:14841|Vega:OTTHUMG00000022143 X Xq22.3 Nik related kinase protein-coding NRK Nik related kinase O nik-related protein kinase 20121230 -9606 203477 HMGA1P1 - HMGA1L1|HMGIYL1 HGNC:13321 X Xp22 high mobility group AT-hook 1 pseudogene 1 pseudo HMGA1P1 high mobility group AT-hook 1 pseudogene 1 O - 20121230 -9606 203510 HMGB3P30 - - HGNC:39333 X Xq23 high mobility group box 3 pseudogene 30 pseudo HMGB3P30 high mobility group box 3 pseudogene 30 O - 20121230 -9606 203522 DDX26B RP11-432N13.1 - HGNC:27334|Ensembl:ENSG00000165359|HPRD:06618|Vega:OTTHUMG00000022484 X Xq26.3 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 26B protein-coding DDX26B DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 26B O protein DDX26B 20121230 -9606 203523 ZNF449 - ZSCAN19 HGNC:21039|MIM:300627|Ensembl:ENSG00000173275|HPRD:06543|Vega:OTTHUMG00000022478 X Xq26.3 zinc finger protein 449 protein-coding ZNF449 zinc finger protein 449 O zinc finger and SCAN domain-containing protein 19 20121230 -9606 203547 VMA21 - MEAX|XMEA HGNC:22082|MIM:310440|Ensembl:ENSG00000160131|HPRD:18578|Vega:OTTHUMG00000024168 X Xq28 VMA21 vacuolar H+-ATPase homolog (S. cerevisiae) protein-coding VMA21 VMA21 vacuolar H+-ATPase homolog (S. cerevisiae) O myopathy with excessive autophagy protein|vacuolar ATPase assembly integral membrane protein VMA21 20121230 -9606 203562 TMEM31 RP5-1055C14.8 - HGNC:28601|Ensembl:ENSG00000179363|HPRD:06652|Vega:OTTHUMG00000022109 X Xq22.2 transmembrane protein 31 protein-coding TMEM31 transmembrane protein 31 O - 20121230 -9606 203569 PAGE2 RP11-266I3.6 CT16.4|GAGEC2|GAGEE2|PAGE-2 HGNC:31804|MIM:300738|Ensembl:ENSG00000234068|HPRD:17565|Vega:OTTHUMG00000021648 X Xp11.21 P antigen family, member 2 (prostate associated) protein-coding PAGE2 P antigen family, member 2 (prostate associated) O G antigen family E member 2|G antigen, family C, 2|G antigen, family E, 2|prostate-associated gene 2 protein 20121230 -9606 203611 CDY2B - CDY HGNC:23921|Ensembl:ENSG00000129873|HPRD:16701|Vega:OTTHUMG00000041652 Y Yq11.222 chromodomain protein, Y-linked, 2B protein-coding CDY2B chromodomain protein, Y-linked, 2B O Y chromosome chromodomain protein 2B|chromodomain protein, Y chromosome, 2 related|testis-specific chromodomain protein Y 2|testis-specific chromodomain protein Y protein 2 related 20121209 -9606 203859 ANO5 - GDD1|LGMD2L|TMEM16E HGNC:27337|MIM:608662|Ensembl:ENSG00000171714|HPRD:10558|Vega:OTTHUMG00000166051 11 11p14.3 anoctamin 5 protein-coding ANO5 anoctamin 5 O anoctamin-5|gnathodiaphyseal dysplasia 1 protein|integral membrane protein GDD1|limb girdle muscular dystrophy 2L (autosomal recessive)|transmembrane protein 16E 20121230 -9606 203930 LOC203930 - - - 11 11q22.3 sorting nexin 7 pseudogene pseudo - - - - 20121230 -9606 204010 RPSAP52 - RPSA_17_1251 HGNC:35752 12 12q14.3 ribosomal protein SA pseudogene 52 pseudo RPSAP52 ribosomal protein SA pseudogene 52 O - 20121230 -9606 204219 CERS3 - LASS3 HGNC:23752|Ensembl:ENSG00000154227|HPRD:13961|Vega:OTTHUMG00000172568 15 15q26.3 ceramide synthase 3 protein-coding CERS3 ceramide synthase 3 O LAG1 homolog, ceramide synthase 3|LAG1 longevity assurance homolog 3 20121230 -9606 204474 PDILT - PDIA7 HGNC:27338|Ensembl:ENSG00000169340|HPRD:15111|Vega:OTTHUMG00000131487 16 16p12.3 protein disulfide isomerase-like, testis expressed protein-coding PDILT protein disulfide isomerase-like, testis expressed O protein disulfide isomerase family A, member 7|protein disulfide isomerase-like protein of the testis|protein disulfide-isomerase-like protein of the testis 20121230 -9606 204777 IGLJCOR18 - IGLJ-C/OR18|IGLJ-COR18 HGNC:28614|IMGT/GENE-DB:IGLJ-C/OR18 18 18p11.31 immunoglobulin lambda joining-constant/OR18 (pseudogene) pseudo IGLJCOR18 immunoglobulin lambda joining-constant/OR18 (pseudogene) O - 20121230 -9606 204800 LOC204800 - - - 19 19q13.41 actin related protein 2/3 complex, subunit 1A, 41kDa pseudogene pseudo - - - - 20121230 -9606 204801 NLRP11 - CLR19.6|NALP11|NOD17|PAN10|PYPAF6|PYPAF7 HGNC:22945|MIM:609664|Ensembl:ENSG00000179873|HPRD:10110|Vega:OTTHUMG00000180921 19 19q13.43 NLR family, pyrin domain containing 11 protein-coding NLRP11 NLR family, pyrin domain containing 11 O NACHT, LRR and PYD containing protein 11|NACHT, LRR and PYD domains-containing protein 11|NACHT, leucine rich repeat and PYD containing 11|PAAD- and NACHT-containing protein 10|PAAD- and NACHT-containing protein 10B|PAAD-and NACHT domain-containing protein 10|PYRIN-containing APAF1-like protein 6|nucleotide-binding oligomerization domain protein 17|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 11 20121230 -9606 204851 HIPK1 RP4-786G8.2 Myak|Nbak2 HGNC:19006|MIM:608003|Ensembl:ENSG00000163349|HPRD:06418|Vega:OTTHUMG00000011983 1 1p13.2 homeodomain interacting protein kinase 1 protein-coding HIPK1 homeodomain interacting protein kinase 1 O homeodomain interacting protein kinase 1-like protein|homeodomain-interacting protein kinase 1|nuclear body associated kinase 2b|nuclear body-associated kinase 2 20121230 -9606 204962 SLC44A5 - CTL5 HGNC:28524|Ensembl:ENSG00000137968|HPRD:14580|Vega:OTTHUMG00000009721 1 1p31.1 solute carrier family 44, member 5 protein-coding SLC44A5 solute carrier family 44, member 5 O choline transporter-like protein 5 20121230 -9606 205147 AMER3 - FAM123C HGNC:26771|Ensembl:ENSG00000178171|HPRD:08241|Vega:OTTHUMG00000131637 2 2q21.1 APC membrane recruitment protein 3 protein-coding AMER3 APC membrane recruitment protein 3 O family with sequence similarity 123C|protein FAM123C 20121230 -9606 205251 LINC00116 - NCRNA00116 HGNC:27339|HPRD:14131 2 2q13 long intergenic non-protein coding RNA 116 miscRNA LINC00116 long intergenic non-protein coding RNA 116 O - 20121230 -9606 205272 CNN2P8 - - HGNC:39533 2 2q11.1 calponin 2 pseudogene 8 pseudo CNN2P8 calponin 2 pseudogene 8 O - 20121230 -9606 205327 C2orf69 - - HGNC:26799|Ensembl:ENSG00000178074|HPRD:08797|Vega:OTTHUMG00000154480 2 2q33.1 chromosome 2 open reading frame 69 protein-coding C2orf69 chromosome 2 open reading frame 69 O UPF0565 protein C2orf69 20121230 -9606 205428 C3orf58 - DIA1 HGNC:28490|MIM:612200|Ensembl:ENSG00000181744|HPRD:14559|Vega:OTTHUMG00000159380 3 3q24 chromosome 3 open reading frame 58 protein-coding C3orf58 chromosome 3 open reading frame 58 O Golgi protein GoPro49|UPF0672 protein C3orf58|deleted in autism 1|deleted in autism protein 1 20121230 -9606 205564 SENP5 FKSG45 - HGNC:28407|MIM:612845|Ensembl:ENSG00000119231|HPRD:10222|Vega:OTTHUMG00000155527 3 3q29 SUMO1/sentrin specific peptidase 5 protein-coding SENP5 SUMO1/sentrin specific peptidase 5 O SUMO1/sentrin specific protease 5|sentrin-specific protease 5|sentrin/SUMO-specific protease SENP5 20121230 -9606 205655 NBPF21P - - HGNC:32001 3 3p22.2 neuroblastoma breakpoint family, member 21, pseudogene pseudo NBPF21P neuroblastoma breakpoint family, member 21, pseudogene O - 20121230 -9606 205717 KIAA2018 hCG_1642841 - HGNC:30494|Ensembl:ENSG00000176542|HPRD:13912|Vega:OTTHUMG00000159322 3 3q13.2 KIAA2018 protein-coding KIAA2018 KIAA2018 O basic helix-loop-helix domain-containing protein KIAA2018 20121230 -9606 205860 TRIML2 - SPRYD6 HGNC:26378|Ensembl:ENSG00000179046|HPRD:08696|Vega:OTTHUMG00000160225 4 4q35.2 tripartite motif family-like 2 protein-coding TRIML2 tripartite motif family-like 2 O SPRY domain containing 6|SPRY domain-containing protein 6|probable E3 ubiquitin-protein ligase TRIML2|tripartite motif family-like protein 2 20121230 -9606 206338 AQPEP - APQ|LVRN MIM:610046|Ensembl:ENSG00000172901|HPRD:07118|Vega:OTTHUMG00000128890 5 5q23.1 laeverin protein-coding - - - AP-Q|CHL2 antigen|aminopeptidase Q 20121230 -9606 206358 SLC36A1 - Dct1|LYAAT1|PAT1|TRAMD3 HGNC:18761|MIM:606561|Ensembl:ENSG00000123643|HPRD:07584|Vega:OTTHUMG00000130125 5 5q33.1 solute carrier family 36 (proton/amino acid symporter), member 1 protein-coding SLC36A1 solute carrier family 36 (proton/amino acid symporter), member 1 O hPAT1|lysosomal amino acid transporter 1|proton-coupled amino acid transporter 1|proton/amino acid transporter 1|solute carrier family 36 member 1 20121230 -9606 206412 C6orf163 - - HGNC:21403|Ensembl:ENSG00000203872|HPRD:16659 6 6q15 chromosome 6 open reading frame 163 protein-coding C6orf163 chromosome 6 open reading frame 163 O uncharacterized protein C6orf163 20121230 -9606 206426 PIP5K1P1 - - HGNC:28372 6 6p24.3 phosphatidylinositol-4-phosphate 5-kinase, type I, pseudogene 1 pseudo PIP5K1P1 phosphatidylinositol-4-phosphate 5-kinase, type I, pseudogene 1 O - 20121230 -9606 207032 RPL36AP52 - dJ507I15.1 - X Xq27.1 ribosomal protein L36a pseudogene pseudo - - - - 20121230 -9606 207063 DHRSX RP11-325D5.2 CXorf11|DHRS5X|DHRS5Y|DHRSXY|DHRSY|SDR46C1 HGNC:18399|Ensembl:ENSG00000169084|HPRD:16803|Vega:OTTHUMG00000021068 X|Y Xp22.33; Yp11.2 dehydrogenase/reductase (SDR family) X-linked protein-coding DHRSX dehydrogenase/reductase (SDR family) X-linked O dehydrogenase/reductase (SDR family) X chromosome|dehydrogenase/reductase (SDR family) Y-linked|dehydrogenase/reductase SDR family member on chromosome X|short chain dehydrogenase/reductase family 46C, member 1 20121230 -9606 207107 SFTA1P - SFTPF HGNC:18383 10 10p14 surfactant associated 1, pseudogene pseudo SFTA1P surfactant associated 1, pseudogene O - 20121230 -9606 207115 LATD - - MIM:601086 6 6p21 Laterality defects, autosomal dominant unknown - - - - 20110714 -9606 207147 TRY2P - - - 7 7q34 trypsinogen-like pseudogene pseudo - - - - 20121230 -9606 207148 TRY7 - - - 7 7q34 trypsinogen D pseudo - - - - 20121230 -9606 219285 SAMD9L - C7orf6|DRIF2|UEF1 HGNC:1349|MIM:611170|Ensembl:ENSG00000177409|HPRD:10798|Vega:OTTHUMG00000155807 7 7q21.2 sterile alpha motif domain containing 9-like protein-coding SAMD9L sterile alpha motif domain containing 9-like O SAM domain-containing protein 9-like|sterile alpha motif domain-containing protein 9-like 20121230 -9606 219287 AMER2 - FAM123A HGNC:26360|MIM:614659|Ensembl:ENSG00000165566|HPRD:08067|Vega:OTTHUMG00000016602 13 13q12.13 APC membrane recruitment protein 2 protein-coding AMER2 APC membrane recruitment protein 2 O family with sequence similarity 123A|protein FAM123A 20121230 -9606 219293 ATAD3C RP4-628J24.1 - HGNC:32151|Ensembl:ENSG00000215915|HPRD:13426|Vega:OTTHUMG00000000531 1 1p36.33 ATPase family, AAA domain containing 3C protein-coding ATAD3C ATPase family, AAA domain containing 3C O ATPase family AAA domain-containing protein 3C|ATPase family, AAA domain containing 3A 20121230 -9606 219333 USP12 - UBH1|USP12L1 HGNC:20485|Ensembl:ENSG00000152484|HPRD:15631|Vega:OTTHUMG00000016626 13 13q12.13 ubiquitin specific peptidase 12 protein-coding USP12 ubiquitin specific peptidase 12 O deubiquitinating enzyme 12|ubiquitin carboxyl-terminal hydrolase 12|ubiquitin specific protease 12 like 1|ubiquitin thioesterase 12|ubiquitin thiolesterase 12|ubiquitin-hydrolyzing enzyme 1|ubiquitin-specific-processing protease 12 20121230 -9606 219347 TMEM254-AS1 - - HGNC:27340 10 10q23.1 TMEM254 antisense RNA 1 miscRNA TMEM254-AS1 TMEM254 antisense RNA 1 O - 20121230 -9606 219348 PLAC9 RP11-369J21.8 - HGNC:19255|MIM:612857|Ensembl:ENSG00000189129|HPRD:18491|Vega:OTTHUMG00000018596 10 10q22.3 placenta-specific 9 protein-coding PLAC9 placenta-specific 9 O placenta-specific protein 9 20121230 -9606 219402 MTIF3 DC38 IF3mt HGNC:29788|Ensembl:ENSG00000122033|HPRD:17609|Vega:OTTHUMG00000016633 13 13q12.2 mitochondrial translational initiation factor 3 protein-coding MTIF3 mitochondrial translational initiation factor 3 O IF-3(Mt)|translation initiation factor IF-3, mitochondrial 20121230 -9606 219409 GSX1 - GSH1|Gsh-1 HGNC:20374|Ensembl:ENSG00000169840|HPRD:11016|Vega:OTTHUMG00000016637 13 13q12.2 GS homeobox 1 protein-coding GSX1 GS homeobox 1 O GS homeo box protein 1|genomic screened homeo box 1|homeobox protein Gsh-1 20121230 -9606 219417 OR8U1 - - HGNC:19611|Ensembl:ENSG00000172199|HPRD:17796|Vega:OTTHUMG00000166860 11 11q12.1 olfactory receptor, family 8, subfamily U, member 1 protein-coding OR8U1 olfactory receptor, family 8, subfamily U, member 1 O olfactory receptor 8U1 20121230 -9606 219428 OR4C16 - OR11-135 HGNC:15172|Ensembl:ENSG00000181935|HPRD:17721|Vega:OTTHUMG00000165198 11 11q11 olfactory receptor, family 4, subfamily C, member 16 protein-coding OR4C16 olfactory receptor, family 4, subfamily C, member 16 O olfactory receptor 4C16|olfactory receptor OR11-135 20121230 -9606 219429 OR4C11 - OR11-136|OR4C11P HGNC:15167|Ensembl:ENSG00000172188|HPRD:14961|Vega:OTTHUMG00000165290 11 11q11 olfactory receptor, family 4, subfamily C, member 11 protein-coding OR4C11 olfactory receptor, family 4, subfamily C, member 11 O olfactory receptor 4C11|olfactory receptor OR11-136|olfactory receptor, family 4, subfamily C, member 11 pseudogene 20121230 -9606 219431 OR4S2 - OR11-137|OR4S2P|OST725 HGNC:15183|Ensembl:ENSG00000174982|HPRD:14988|Vega:OTTHUMG00000166799 11 11q11 olfactory receptor, family 4, subfamily S, member 2 protein-coding OR4S2 olfactory receptor, family 4, subfamily S, member 2 O olfactory receptor 4S2|olfactory receptor OR11-137|olfactory receptor, family 4, subfamily S, member 2 pseudogene 20121230 -9606 219432 OR4C6 - OR11-138 HGNC:14743|Ensembl:ENSG00000181903|HPRD:17724|Vega:OTTHUMG00000166800 11 11q11 olfactory receptor, family 4, subfamily C, member 6 protein-coding OR4C6 olfactory receptor, family 4, subfamily C, member 6 O olfactory receptor 4C6|olfactory receptor OR11-138 20121230 -9606 219436 OR5D14 - OR11-141|OR11-150 HGNC:15281|Ensembl:ENSG00000186113|HPRD:17756|Vega:OTTHUMG00000166809 11 11q11 olfactory receptor, family 5, subfamily D, member 14 protein-coding OR5D14 olfactory receptor, family 5, subfamily D, member 14 O olfactory receptor 5D14|olfactory receptor OR11-141|olfactory receptor OR11-150 20121230 -9606 219437 OR5L1 - OR11-151|OST262 HGNC:8350|Ensembl:ENSG00000186117|HPRD:15045|Vega:OTTHUMG00000166810 11 11q11 olfactory receptor, family 5, subfamily L, member 1 protein-coding OR5L1 olfactory receptor, family 5, subfamily L, member 1 O olfactory receptor 5L1|olfactory receptor OR11-151 20121230 -9606 219438 OR5D18 - OR11-143 HGNC:15285|Ensembl:ENSG00000186119|HPRD:17758|Vega:OTTHUMG00000166811 11 11q11 olfactory receptor, family 5, subfamily D, member 18 protein-coding OR5D18 olfactory receptor, family 5, subfamily D, member 18 O olfactory receptor 5D18|olfactory receptor OR11-143|olfactory receptor OR11-152 20121230 -9606 219445 OR7E5P - OR11-12|OR11-156|OR7F5P HGNC:8435 11 11q12.1 olfactory receptor, family 7, subfamily E, member 5 pseudogene pseudo OR7E5P olfactory receptor, family 7, subfamily E, member 5 pseudogene O - 20121230 -9606 219447 OR5AS1 - OR11-168 HGNC:15261|Ensembl:ENSG00000181785|HPRD:17751|Vega:OTTHUMG00000166830 11 11q12.1 olfactory receptor, family 5, subfamily AS, member 1 protein-coding OR5AS1 olfactory receptor, family 5, subfamily AS, member 1 O olfactory receptor 5AS1|olfactory receptor OR11-168 20121230 -9606 219453 OR8K5 - OR11-174 HGNC:15315|Ensembl:ENSG00000181752|HPRD:17795|Vega:OTTHUMG00000166820 11 11q12.1 olfactory receptor, family 8, subfamily K, member 5 protein-coding OR8K5 olfactory receptor, family 8, subfamily K, member 5 O olfactory receptor 8K5|olfactory receptor OR11-174 20121230 -9606 219464 OR5T2 - OR11-177 HGNC:15296|Ensembl:ENSG00000181718|HPRD:15051|Vega:OTTHUMG00000166851 11 11q12.1 olfactory receptor, family 5, subfamily T, member 2 protein-coding OR5T2 olfactory receptor, family 5, subfamily T, member 2 O olfactory receptor 5T2|olfactory receptor OR11-177 20121230 -9606 219469 OR8H1 - OR11-180 HGNC:14824|Ensembl:ENSG00000181693|HPRD:17791|Vega:OTTHUMG00000162671 11 11q12.1 olfactory receptor, family 8, subfamily H, member 1 protein-coding OR8H1 olfactory receptor, family 8, subfamily H, member 1 O olfactory receptor 8H1|olfactory receptor OR11-180 20121230 -9606 219473 OR8K3 - OR11-181 HGNC:15313|Ensembl:ENSG00000181689|HPRD:17794|Vega:OTTHUMG00000166855 11 11q12.1 olfactory receptor, family 8, subfamily K, member 3 protein-coding OR8K3 olfactory receptor, family 8, subfamily K, member 3 O olfactory receptor 8K3|olfactory receptor OR11-181 20121230 -9606 219477 OR8J1 - OR11-183 HGNC:14855|Ensembl:ENSG00000172487|HPRD:17793|Vega:OTTHUMG00000166859 11 11q12.1 olfactory receptor, family 8, subfamily J, member 1 protein-coding OR8J1 olfactory receptor, family 8, subfamily J, member 1 O olfactory receptor 8J1|olfactory receptor OR11-183 20121230 -9606 219479 OR5R1 - OR11-185|OR5R1P HGNC:14841|Ensembl:ENSG00000174942|HPRD:15049|Vega:OTTHUMG00000154219 11 11q12.1 olfactory receptor, family 5, subfamily R, member 1 protein-coding OR5R1 olfactory receptor, family 5, subfamily R, member 1 O olfactory receptor 5R1|olfactory receptor OR11-185|olfactory receptor, family 5, subfamily R, member 1 pseudogene 20121230 -9606 219482 OR5M3 - OR11-191 HGNC:14806|Ensembl:ENSG00000174937|HPRD:17767|Vega:OTTHUMG00000166875 11 11q12.1 olfactory receptor, family 5, subfamily M, member 3 protein-coding OR5M3 olfactory receptor, family 5, subfamily M, member 3 O olfactory receptor 5M3|olfactory receptor OR11-191 20121230 -9606 219484 OR5M8 - OR11-194 HGNC:14846|Ensembl:ENSG00000181371|HPRD:17768|Vega:OTTHUMG00000166877 11 11q12.1 olfactory receptor, family 5, subfamily M, member 8 protein-coding OR5M8 olfactory receptor, family 5, subfamily M, member 8 O olfactory receptor 5M8|olfactory receptor OR11-194 20121230 -9606 219487 OR5M11 - OR11-199 HGNC:15291|Ensembl:ENSG00000255223|HPRD:17766|Vega:OTTHUMG00000166861 11 11q12.1 olfactory receptor, family 5, subfamily M, member 11 protein-coding OR5M11 olfactory receptor, family 5, subfamily M, member 11 O olfactory receptor 5M11|olfactory receptor OR11-199 pseudogene 20121230 -9606 219493 OR5AR1 - OR11-209 HGNC:15260|Ensembl:ENSG00000172459|HPRD:17750|Vega:OTTHUMG00000154213 11 11q12.1 olfactory receptor, family 5, subfamily AR, member 1 protein-coding OR5AR1 olfactory receptor, family 5, subfamily AR, member 1 O olfactory receptor 5AR1|olfactory receptor OR11-209 20121230 -9606 219525 OR5AK4P - PJCG3 HGNC:15253 11 11q12.1 olfactory receptor, family 5, subfamily AK, member 4 pseudogene pseudo OR5AK4P olfactory receptor, family 5, subfamily AK, member 4 pseudogene O - 20121230 -9606 219527 LRRC55 - - HGNC:32324|Ensembl:ENSG00000183908|HPRD:16990|Vega:OTTHUMG00000159309 11 11q12.1 leucine rich repeat containing 55 protein-coding LRRC55 leucine rich repeat containing 55 O BK channel auxilliary gamma snit LRRC55|leucine-rich repeat-containing protein 55 20121230 -9606 219537 SMTNL1 - CHASM HGNC:32394|MIM:613664|Ensembl:ENSG00000214872|Vega:OTTHUMG00000167046 11 11q12.1 smoothelin-like 1 protein-coding SMTNL1 smoothelin-like 1 O calponin homology-associated smooth muscle protein|smoothelin-like protein 1 20121230 -9606 219539 YPEL4 - - HGNC:18328|MIM:609725|Ensembl:ENSG00000166793|HPRD:08081|Vega:OTTHUMG00000167138 11 11q12.1 yippee-like 4 (Drosophila) protein-coding YPEL4 yippee-like 4 (Drosophila) O protein yippee-like 4 20121230 -9606 219541 MED19 - DT2P1G7|LCMR1 HGNC:29600|MIM:612385|Ensembl:ENSG00000156603|HPRD:17477|Vega:OTTHUMG00000167199 11 11q12.1 mediator complex subunit 19 protein-coding MED19 mediator complex subunit 19 O lung cancer metastasis-related protein 1|mediator of RNA polymerase II transcription subunit 19|mediator of RNA polymerase II transcription, subunit 19 homolog 20121230 -9606 219557 C7orf62 - - HGNC:22402|Ensembl:ENSG00000164645|HPRD:14507|Vega:OTTHUMG00000153859 7 7q21.13 chromosome 7 open reading frame 62 protein-coding C7orf62 chromosome 7 open reading frame 62 O uncharacterized protein C7orf62 20121230 -9606 219578 ZNF804B - - HGNC:21958|Ensembl:ENSG00000182348|HPRD:08721|Vega:OTTHUMG00000131037 7 7q21.13 zinc finger protein 804B protein-coding ZNF804B zinc finger protein 804B O zinc finger 804B 20121230 -9606 219595 FOLH1B GIG26 FOLH2|FOLHP|GCP3|GCPIII|PSM|PSMA-LIKE|PSMAL HGNC:13636|MIM:609020|HPRD:07150 11 11q14.3 folate hydrolase 1B protein-coding FOLH1B folate hydrolase 1B O N-acetylated-alpha-linked-acidic dipeptidase|NAALADase|cell growth-inhibiting gene 26 protein|folate hydrolase 2|folate hydrolase pseudogene|glutamate carboxypeptidase III|prostate-specific membrane antigen-like protein|putative N-acetylated-alpha-linked acidic dipeptidase|putative folate hydrolase 1B 20121230 -9606 219621 C10orf107 RP11-63A2.1 bA63A2.1 HGNC:28678|Ensembl:ENSG00000183346|HPRD:12559|Vega:OTTHUMG00000018295 10 10q21.2 chromosome 10 open reading frame 107 protein-coding C10orf107 chromosome 10 open reading frame 107 O uncharacterized protein C10orf107 20121230 -9606 219623 TMEM26 - - HGNC:28550|Ensembl:ENSG00000196932|HPRD:15534|Vega:OTTHUMG00000018293 10 10q21.2 transmembrane protein 26 protein-coding TMEM26 transmembrane protein 26 O - 20121230 -9606 219654 ZCCHC24 RP11-342M3.6 C10orf56 HGNC:26911|Ensembl:ENSG00000165424|HPRD:08299|Vega:OTTHUMG00000018561 10 10q22.3 zinc finger, CCHC domain containing 24 protein-coding ZCCHC24 zinc finger, CCHC domain containing 24 O zinc finger CCHC domain-containing protein 24 20121230 -9606 219670 ENKUR RP11-165A20.2 C10orf63 HGNC:28388|MIM:611025|Ensembl:ENSG00000151023|HPRD:12583|Vega:OTTHUMG00000017827 10 10p12.1 enkurin, TRPC channel interacting protein protein-coding ENKUR enkurin, TRPC channel interacting protein O enkurin 20121230 -9606 219681 ARMC3 RP11-300B11.1 CT81|KU-CT-1 HGNC:30964|MIM:611226|Ensembl:ENSG00000165309|HPRD:12487|Vega:OTTHUMG00000017811 10 10p12.31 armadillo repeat containing 3 protein-coding ARMC3 armadillo repeat containing 3 O armadillo repeat-containing protein 3|beta-catenin-like protein|cancer/testis antigen 81 20121230 -9606 219688 LOC219688 - - - 10 10p12.33 uncharacterized LOC219688 protein-coding - - - - 20120508 -9606 219690 LOC219690 - - - 10 10q22.2 uncharacterized LOC219690 miscRNA - - - - 20120508 -9606 219699 UNC5B RP11-58O1.1 UNC5H2|p53RDL1 HGNC:12568|MIM:607870|Ensembl:ENSG00000107731|HPRD:08487|Vega:OTTHUMG00000018422 10 10q22.1 unc-5 homolog B (C. elegans) protein-coding UNC5B unc-5 homolog B (C. elegans) O netrin receptor UNC5B|p53-regulated receptor for death and life protein 1|protein unc-5 homolog 2|protein unc-5 homolog B|transmembrane receptor Unc5H2|unc-5 homolog 2 20121230 -9606 219731 PROSER2-AS1 - - HGNC:27343 10 10p14 PROSER2 antisense RNA 1 miscRNA PROSER2-AS1 PROSER2 antisense RNA 1 O - 20121230 -9606 219736 STOX1 RP11-314J18.7 C10orf24|PEE4 HGNC:23508|MIM:609397|Ensembl:ENSG00000165730|HPRD:18579|Vega:OTTHUMG00000018367 10 10q22.1 storkhead box 1 protein-coding STOX1 storkhead box 1 O storkhead-box protein 1|winged-helix domain-containing protein 20121230 -9606 219738 C10orf35 RP11-343J3.9 - HGNC:23519|Ensembl:ENSG00000171224|HPRD:12573|Vega:OTTHUMG00000018383 10 10q22.1 chromosome 10 open reading frame 35 protein-coding C10orf35 chromosome 10 open reading frame 35 O uncharacterized protein C10orf35 20121230 -9606 219743 TYSND1 - NET41 HGNC:28531|MIM:611017|Ensembl:ENSG00000156521|HPRD:15593|Vega:OTTHUMG00000018397 10 10q22.1 trypsin domain containing 1 protein-coding TYSND1 trypsin domain containing 1 O peroxisomal leader peptide-processing protease|trypsin domain-containing protein 1 20121230 -9606 219749 ZNF25 - KOX19|Zfp9 HGNC:13043|MIM:194528|Ensembl:ENSG00000175395|HPRD:01916|Vega:OTTHUMG00000019344 10 10p11.1 zinc finger protein 25 protein-coding ZNF25 zinc finger protein 25 O zinc finger protein 25 (KOX 19)|zinc finger protein KOX19 20121230 -9606 219752 TACC1P1 - - HGNC:44974 10 10p11.21 transforming, acidic coiled-coil containing protein 1 pseudogene 1 pseudo TACC1P1 transforming, acidic coiled-coil containing protein 1 pseudogene 1 O - 20121230 -9606 219770 GJD4 - CX40.1|RP11-425A6.2 HGNC:23296|MIM:611922|Ensembl:ENSG00000177291|HPRD:13103|Vega:OTTHUMG00000017957 10 10p11.21 gap junction protein, delta 4, 40.1kDa protein-coding GJD4 gap junction protein, delta 4, 40.1kDa O connexin 40.1|connexin-40.1|connexin40.1|gap junction delta-4 protein 20121230 -9606 219771 CCNY - C10orf9|CBCP1|CCNX|CFP1 HGNC:23354|MIM:612786|Ensembl:ENSG00000108100|HPRD:10700|Vega:OTTHUMG00000017955 10 10p11.21 cyclin Y protein-coding CCNY cyclin Y O cyc-Y|cyclin box protein 1|cyclin fold protein 1|cyclin-X|cyclin-Y|cyclin-box carrying protein 1 20121230 -9606 219790 RTKN2 RP11-531F24.1 PLEKHK1|bA531F24.1 HGNC:19364|Ensembl:ENSG00000182010|HPRD:17863|Vega:OTTHUMG00000018299 10 10q21.2 rhotekin 2 protein-coding RTKN2 rhotekin 2 O PH domain-containing family K member 1|pleckstrin homology domain containing, family K member 1|pleckstrin homology domain-containing family K member 1|rhotekin-2 20121230 -9606 219793 TBATA RP11-399N22.4 C10orf27|spatial HGNC:23511|MIM:612640|Ensembl:ENSG00000166220|HPRD:08500|Vega:OTTHUMG00000018413 10 10q22.1 thymus, brain and testes associated protein-coding TBATA thymus, brain and testes associated O protein SPATIAL|protein TBATA|stromal protein associated with thymii and lymph node homolog|thymus, brain and testes-associated protein 20121230 -9606 219833 C11orf45 - - HGNC:28584|Ensembl:ENSG00000174370|HPRD:11344|Vega:OTTHUMG00000165796 11 11q24.3 chromosome 11 open reading frame 45 protein-coding C11orf45 chromosome 11 open reading frame 45 O putative uncharacterized protein C11orf45 20121230 -9606 219844 HYLS1 - HLS HGNC:26558|MIM:610693|Ensembl:ENSG00000198331|HPRD:08148|Vega:OTTHUMG00000165858 11 11q24.2 hydrolethalus syndrome 1 protein-coding HYLS1 hydrolethalus syndrome 1 O hydrolethalus syndrome protein 1 20121230 -9606 219854 TMEM218 - - HGNC:27344|Ensembl:ENSG00000150433|Vega:OTTHUMG00000165880 11 11q24.2 transmembrane protein 218 protein-coding TMEM218 transmembrane protein 218 O - 20121230 -9606 219855 SLC37A2 - pp11662 HGNC:20644|Ensembl:ENSG00000134955|HPRD:15380|Vega:OTTHUMG00000165879 11 11q24.2 solute carrier family 37 (glycerol-3-phosphate transporter), member 2 protein-coding SLC37A2 solute carrier family 37 (glycerol-3-phosphate transporter), member 2 O solute carrier family 37 member 2|sugar phosphate exchanger 2 20121230 -9606 219858 OR8B12 - OR11-317 HGNC:15307|Ensembl:ENSG00000170953|HPRD:17785|Vega:OTTHUMG00000165922 11 11q24.2 olfactory receptor, family 8, subfamily B, member 12 protein-coding OR8B12 olfactory receptor, family 8, subfamily B, member 12 O olfactory receptor 8B12|olfactory receptor OR11-317 20121230 -9606 219865 OR8G5 - OR11-298|OR8G5P|OR8G6 HGNC:19622|HPRD:17790 11 11q24.2 olfactory receptor, family 8, subfamily G, member 5 protein-coding OR8G5 olfactory receptor, family 8, subfamily G, member 5 O olfactory receptor 8G5|olfactory receptor 8G6|olfactory receptor OR11-298|olfactory receptor, family 8, subfamily G, member 5 pseudogene|olfactory receptor, family 8, subfamily G, member 6 20121230 -9606 219869 OR10G8 - OR11-274|OR11-282 HGNC:14845|Ensembl:ENSG00000234560|HPRD:17665|Vega:OTTHUMG00000165968 11 11q24.2 olfactory receptor, family 10, subfamily G, member 8 protein-coding OR10G8 olfactory receptor, family 10, subfamily G, member 8 O olfactory receptor 10G8|olfactory receptor OR11-274 pseudogene|olfactory receptor OR11-282 20121230 -9606 219870 OR10G9 - OR10G10P HGNC:15129|Ensembl:ENSG00000236981|HPRD:17666|Vega:OTTHUMG00000165967 11 11q24.1 olfactory receptor, family 10, subfamily G, member 9 protein-coding OR10G9 olfactory receptor, family 10, subfamily G, member 9 O olfactory receptor 10G10|olfactory receptor 10G9|olfactory receptor OR11-272 20121230 -9606 219873 OR10S1 - OR11-279 HGNC:14807|Ensembl:ENSG00000196248|HPRD:17675|Vega:OTTHUMG00000165963 11 11q24.1 olfactory receptor, family 10, subfamily S, member 1 protein-coding OR10S1 olfactory receptor, family 10, subfamily S, member 1 O olfactory receptor 10S1|olfactory receptor OR11-279 20121230 -9606 219874 OR6T1 - OR11-277 HGNC:14848|Ensembl:ENSG00000181499|HPRD:15069|Vega:OTTHUMG00000165962 11 11q24.1 olfactory receptor, family 6, subfamily T, member 1 protein-coding OR6T1 olfactory receptor, family 6, subfamily T, member 1 O olfactory receptor 6T1|olfactory receptor OR11-277 20121230 -9606 219875 OR4D5 - OR11-276 HGNC:14852|Ensembl:ENSG00000171014|HPRD:17726|Vega:OTTHUMG00000165961 11 11q24.1 olfactory receptor, family 4, subfamily D, member 5 protein-coding OR4D5 olfactory receptor, family 4, subfamily D, member 5 O olfactory receptor 4D5|olfactory receptor OR11-276 20121230 -9606 219899 TBCEL - El|LRRC35 HGNC:28115|MIM:610451|Ensembl:ENSG00000154114|HPRD:11302|Vega:OTTHUMG00000166061 11 11q23.3 tubulin folding cofactor E-like protein-coding TBCEL tubulin folding cofactor E-like O E-like|catastrophin|leucine rich repeat containing 35|leucine-rich repeat-containing protein 35|tubulin-specific chaperone cofactor E-like protein|tubulin-specific chaperone e-like 20121230 -9606 219902 TMEM136 - - HGNC:28280|Ensembl:ENSG00000181264|HPRD:14461|Vega:OTTHUMG00000166142 11 11q23.3 transmembrane protein 136 protein-coding TMEM136 transmembrane protein 136 O - 20121230 -9606 219927 MRPL21 - L21mt|MRP-L21 HGNC:14479|MIM:611834|Ensembl:ENSG00000197345|HPRD:14747|Vega:OTTHUMG00000167893 11 11q13.3 mitochondrial ribosomal protein L21 protein-coding MRPL21 mitochondrial ribosomal protein L21 O 39S ribosomal protein L21, mitochondrial 20121230 -9606 219931 TPCN2 - SHEP10|TPC2 HGNC:20820|MIM:612163|Ensembl:ENSG00000162341|HPRD:18218|Vega:OTTHUMG00000167898 11 11q13.3 two pore segment channel 2 protein-coding TPCN2 two pore segment channel 2 O two pore calcium channel protein 2|two-pore calcium channel protein 2|voltage-dependent calcium channel protein TPC2 20121230 -9606 219938 SPATA19 - CT132|SPAS1|spergen1 HGNC:30614|MIM:609805|Ensembl:ENSG00000166118|HPRD:11594|Vega:OTTHUMG00000167120 11 11q25 spermatogenesis associated 19 protein-coding SPATA19 spermatogenesis associated 19 O cancer/testis antigen 132|spergen 1|spergen-1|spermatogenesis-associated protein 19, mitochondrial|spermatogenic cell-specific gene 1 protein|spermatogenic specific-gene1 20121230 -9606 219952 OR6Q1 - OR11-226 HGNC:15302|Ensembl:ENSG00000172381|HPRD:15068|Vega:OTTHUMG00000168831 11 11q12.1 olfactory receptor, family 6, subfamily Q, member 1 protein-coding OR6Q1 olfactory receptor, family 6, subfamily Q, member 1 O olfactory receptor 6Q1|olfactory receptor OR11-226 20121230 -9606 219954 OR9I1 - OR11-228 HGNC:14718|Ensembl:ENSG00000172377|HPRD:17799|Vega:OTTHUMG00000167404 11 11q12.1 olfactory receptor, family 9, subfamily I, member 1 protein-coding OR9I1 olfactory receptor, family 9, subfamily I, member 1 O olfactory receptor 9I1|olfactory receptor OR11-228 20121230 -9606 219956 OR9Q1 - - HGNC:14724|Ensembl:ENSG00000186509|HPRD:17800|Vega:OTTHUMG00000167413 11 11q12.1 olfactory receptor, family 9, subfamily Q, member 1 protein-coding OR9Q1 olfactory receptor, family 9, subfamily Q, member 1 O olfactory receptor 9Q1 20121230 -9606 219957 OR9Q2 - OR9Q2P HGNC:15328|Ensembl:ENSG00000186513|HPRD:17801|Vega:OTTHUMG00000167414 11 11q12.1 olfactory receptor, family 9, subfamily Q, member 2 protein-coding OR9Q2 olfactory receptor, family 9, subfamily Q, member 2 O olfactory receptor 9Q2|olfactory receptor, family 9, subfamily Q, member 2 pseudogene 20121230 -9606 219958 OR1S2 - OR11-231 HGNC:15141|Ensembl:ENSG00000197887|HPRD:14927|Vega:OTTHUMG00000167541 11 11q12.1 olfactory receptor, family 1, subfamily S, member 2 protein-coding OR1S2 olfactory receptor, family 1, subfamily S, member 2 O olfactory receptor 1S2|olfactory receptor OR11-231 20121230 -9606 219959 OR1S1 - OR11-232|OST034 HGNC:8227|Ensembl:ENSG00000172774|HPRD:17690|Vega:OTTHUMG00000167463 11 11q12.1 olfactory receptor, family 1, subfamily S, member 1 protein-coding OR1S1 olfactory receptor, family 1, subfamily S, member 1 O olfactory receptor 1S1|olfactory receptor OR11-232 20121230 -9606 219960 OR10Q1 - OR11-233 HGNC:15134|Ensembl:ENSG00000180475|HPRD:17673|Vega:OTTHUMG00000167542 11 11q12.1 olfactory receptor, family 10, subfamily Q, member 1 protein-coding OR10Q1 olfactory receptor, family 10, subfamily Q, member 1 O olfactory receptor 10Q1|olfactory receptor OR11-233 20121230 -9606 219965 OR5B17 - OR11-237|OR5B20P HGNC:15267|Ensembl:ENSG00000197786|HPRD:15036|Vega:OTTHUMG00000167465 11 11q12.1 olfactory receptor, family 5, subfamily B, member 17 protein-coding OR5B17 olfactory receptor, family 5, subfamily B, member 17 O olfactory receptor 5B17|olfactory receptor 5B20|olfactory receptor OR11-237|olfactory receptor, family 5, subfamily B, member 20 pseudogene 20121230 -9606 219968 OR5B21 - - HGNC:19616|Ensembl:ENSG00000198283|HPRD:17753|Vega:OTTHUMG00000167519 11 11q12.1 olfactory receptor, family 5, subfamily B, member 21 protein-coding OR5B21 olfactory receptor, family 5, subfamily B, member 21 O olfactory receptor 5B21 20121230 -9606 219970 GLYATL2 - BXMAS2-10|GATF-B HGNC:24178|MIM:614762|Ensembl:ENSG00000156689|HPRD:16568|Vega:OTTHUMG00000167432 11 11q12.1 glycine-N-acyltransferase-like 2 protein-coding GLYATL2 glycine-N-acyltransferase-like 2 O acyl-CoA:glycine N-acyltransferase-like protein 2|glycine N-acyltransferase-like protein 2|glycine acyltransferase family-B 20121230 -9606 219972 MPEG1 - MPG1|MPS1|Mpg-1 HGNC:29619|MIM:610390|Ensembl:ENSG00000197629|Vega:OTTHUMG00000162676 11 11q12.1 macrophage expressed 1 protein-coding MPEG1 macrophage expressed 1 O macrophage expressed gene 1|macrophage gene 1 protein|macrophage-expressed gene 1 protein 20121230 -9606 219981 OR5A2 - - HGNC:15249|Ensembl:ENSG00000172324|HPRD:15029|Vega:OTTHUMG00000167419 11 11q12.1 olfactory receptor, family 5, subfamily A, member 2 protein-coding OR5A2 olfactory receptor, family 5, subfamily A, member 2 O olfactory receptor 5A2|olfactory receptor OR11-248 20121230 -9606 219982 OR5A1 - OR11-249|OR5A1P|OST181 HGNC:8319|Ensembl:ENSG00000172320|HPRD:15028|Vega:OTTHUMG00000167339 11 11q12.1 olfactory receptor, family 5, subfamily A, member 1 protein-coding OR5A1 olfactory receptor, family 5, subfamily A, member 1 O olfactory receptor 5A1|olfactory receptor OR11-249|olfactory receptor, family 5, subfamily A, member 1 pseudogene 20121230 -9606 219983 OR4D6 - OR11-250 HGNC:15175|Ensembl:ENSG00000166884|HPRD:17727|Vega:OTTHUMG00000167340 11 11q12.1 olfactory receptor, family 4, subfamily D, member 6 protein-coding OR4D6 olfactory receptor, family 4, subfamily D, member 6 O olfactory receptor 4D6|olfactory receptor OR11-250 20121230 -9606 219986 OR4D11 - OR4D11P HGNC:15174|Ensembl:ENSG00000176200|HPRD:17725|Vega:OTTHUMG00000167342 11 11q12.1 olfactory receptor, family 4, subfamily D, member 11 protein-coding OR4D11 olfactory receptor, family 4, subfamily D, member 11 O olfactory receptor 4D11|olfactory receptor OR11-252 pseudogene|olfactory receptor, family 4, subfamily D, member 11 pseudogene 20121230 -9606 219988 PATL1 OK/KNS-cl.5 Pat1b|hPat1b HGNC:26721|MIM:614660|Ensembl:ENSG00000166889|HPRD:08214|Vega:OTTHUMG00000167423 11 11q12.1 protein associated with topoisomerase II homolog 1 (yeast) protein-coding PATL1 protein associated with topoisomerase II homolog 1 (yeast) O PAT1-like protein 1|protein PAT1 homolog 1|protein PAT1 homolog b 20121230 -9606 219990 PLAC1L - TMEM122 HGNC:26699|Ensembl:ENSG00000149507|HPRD:08207|Vega:OTTHUMG00000167379 11 11q12.1 placenta-specific 1-like protein-coding PLAC1L placenta-specific 1-like O placenta-specific 1-like protein|transmembrane protein 122 20121230 -9606 219995 MS4A15 hCG_1659319 - HGNC:28573|Ensembl:ENSG00000166961|HPRD:17532|Vega:OTTHUMG00000167688 11 11q12.2 membrane-spanning 4-domains, subfamily A, member 15 protein-coding MS4A15 membrane-spanning 4-domains, subfamily A, member 15 O membrane-spanning 4-domains subfamily A member 15 20121230 -9606 220001 VWCE - URG11|VWC1 HGNC:26487|MIM:611115|Ensembl:ENSG00000167992|HPRD:08116|Vega:OTTHUMG00000168208 11 11q12.2 von Willebrand factor C and EGF domains protein-coding VWCE von Willebrand factor C and EGF domains O HBV X protein up-regulated gene 11 protein|HBxAg up-regulated gene 11 protein|von Willebrand factor C and EGF domain-containing protein 20121230 -9606 220002 CYBASC3 PSEC0259 LCYTB HGNC:23014|Ensembl:ENSG00000162144|HPRD:11316|Vega:OTTHUMG00000157187 11 11q12.2 cytochrome b, ascorbate dependent 3 protein-coding CYBASC3 cytochrome b, ascorbate dependent 3 O cytochrome b ascorbate-dependent protein 3|lysosomal cytochrome b 20121230 -9606 220004 PPP1R32 - C11orf66|IIIG9 HGNC:28869|Ensembl:ENSG00000162148|HPRD:16933|Vega:OTTHUMG00000168176 11 11q12.2 protein phosphatase 1, regulatory subunit 32 protein-coding PPP1R32 protein phosphatase 1, regulatory subunit 32 O protein phosphatase 1 regulatory subunit 32 20121230 -9606 220032 GDPD4 - GDE6 HGNC:24849|Ensembl:ENSG00000178795|HPRD:17320|Vega:OTTHUMG00000165136 11 11q13.5 glycerophosphodiester phosphodiesterase domain containing 4 protein-coding GDPD4 glycerophosphodiester phosphodiesterase domain containing 4 O GDPD domain containing protein|glycerophosphodiester phosphodiesterase 6|glycerophosphodiester phosphodiesterase domain-containing protein 4|ugpQ 20121230 -9606 220042 C11orf82 - noxin HGNC:26351|Ensembl:ENSG00000165490|HPRD:08062|Vega:OTTHUMG00000166929 11 11q14.1 chromosome 11 open reading frame 82 protein-coding C11orf82 chromosome 11 open reading frame 82 O nitric oxide-inducible gene protein 20121230 -9606 220047 CCDC83 HSD9 - HGNC:28535|Ensembl:ENSG00000150676|HPRD:14586|Vega:OTTHUMG00000166978 11 11q14.1-q14.2 coiled-coil domain containing 83 protein-coding CCDC83 coiled-coil domain containing 83 O coiled-coil domain-containing protein 83 20121230 -9606 220064 ORAOV1 - TAOS1 HGNC:17589|MIM:607224|Ensembl:ENSG00000149716|HPRD:06245|Vega:OTTHUMG00000167885 11 11q13.3 oral cancer overexpressed 1 protein-coding ORAOV1 oral cancer overexpressed 1 O oral cancer overexpressed protein 1-A|oral cancer-overexpressed protein 1|tumor-amplified and overexpressed sequence 1 20121230 -9606 220070 SHANK2-AS3 - C11orf76 HGNC:25098|HPRD:14132 11 11q13.4 SHANK2 antisense RNA 3 miscRNA SHANK2-AS3 SHANK2 antisense RNA 3 O - 20121230 -9606 220074 LRTOMT PP7517 DFNB63|LRRC51 HGNC:25033|MIM:612414|Ensembl:ENSG00000184154|HPRD:11839|Vega:OTTHUMG00000154887 11 11q13.4 leucine rich transmembrane and 0-methyltransferase domain containing protein-coding LRTOMT leucine rich transmembrane and 0-methyltransferase domain containing O transmembrane O-methyltransferase 20121230 -9606 220077 LOC220077 - - - 11 11q13.4 dedicator of cytokinesis 1 pseudogene pseudo - - - - 20121230 -9606 220081 FAM194B - - HGNC:26523|Ensembl:ENSG00000165837|HPRD:08729|Vega:OTTHUMG00000016856 13 13q14.13 family with sequence similarity 194, member B protein-coding FAM194B family with sequence similarity 194, member B O protein FAM194B 20121230 -9606 220082 SPERT - CBY2|NURIT HGNC:30720|Ensembl:ENSG00000174015|HPRD:14856|Vega:OTTHUMG00000016861 13 13q14.13 spermatid associated protein-coding SPERT spermatid associated O chibby homolog 2|novel leucine zipper testicular protein|protein chibby homolog 2|spermatid flower-like structure protein|spermatid-associated protein|testis specific leucine zipper protein nurit|testis-specific leucine zipper protein nurit 20121230 -9606 220107 DLEU7 - - HGNC:17567|Ensembl:ENSG00000186047|HPRD:16825|Vega:OTTHUMG00000016936 13 13q14.3 deleted in lymphocytic leukemia, 7 protein-coding DLEU7 deleted in lymphocytic leukemia, 7 O leukemia-associated protein 7 20121230 -9606 220108 FAM124A RP11-457D13.2 - HGNC:26413|Ensembl:ENSG00000150510|HPRD:08704|Vega:OTTHUMG00000016942 13 13q14.3 family with sequence similarity 124A protein-coding FAM124A family with sequence similarity 124A O protein FAM124A 20121230 -9606 220112 CTAGE3P - CTAGE-3|CTAGE3 HGNC:24348|MIM:608857 13 13q14.3 CTAGE family, member 3, pseudogene pseudo CTAGE3P CTAGE family, member 3, pseudogene O - 20121230 -9606 220115 TPTE2P3 - TPTEps1 HGNC:27345 13 13q14.3 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 3 pseudo TPTE2P3 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 3 O - 20121230 -9606 220134 SKA1 - C18orf24 HGNC:28109|Ensembl:ENSG00000154839|HPRD:12689|Vega:OTTHUMG00000132685 18 18q21.1 spindle and kinetochore associated complex subunit 1 protein-coding SKA1 spindle and kinetochore associated complex subunit 1 O spindle and KT (kinetochore) associated 1|spindle and kinetochore-associated protein 1 20121230 -9606 220136 CCDC11 - HTX6 HGNC:26530|MIM:614759|Ensembl:ENSG00000172361|HPRD:09958|Vega:OTTHUMG00000132668 18 18q21.1 coiled-coil domain containing 11 protein-coding CCDC11 coiled-coil domain containing 11 O coiled-coil domain-containing protein 11 20121230 -9606 220147 LOC220147 - - - 18 18q21.32 C-terminal binding protein 2 pseudogene pseudo - - - - 20121230 -9606 220158 GTSCR1 - - HGNC:18406 18 18q22.2 Gilles de la Tourette syndrome chromosome region, candidate 1 unknown GTSCR1 Gilles de la Tourette syndrome chromosome region, candidate 1 O - 20120610 -9606 220164 DOK6 - DOK5L|HsT3226 HGNC:28301|MIM:611402|Ensembl:ENSG00000206052|HPRD:13244|Vega:OTTHUMG00000178688 18 18q22.2 docking protein 6 protein-coding DOK6 docking protein 6 O downstream of tyrosine kinase 6 20121230 -9606 220202 ATOH7 - Math5|bHLHa13 HGNC:13907|MIM:609875|Ensembl:ENSG00000179774|HPRD:09812|Vega:OTTHUMG00000018346 10 10q21.3|10q21.3-q22.1 atonal homolog 7 (Drosophila) protein-coding ATOH7 atonal homolog 7 (Drosophila) O class A basic helix-loop-helix protein 13|helix-loop-helix protein hATH-5|protein atonal homolog 7 20121230 -9606 220213 OTUD1 - DUBA7|OTDC1 HGNC:27346|MIM:612022|Ensembl:ENSG00000165312|Vega:OTTHUMG00000017819 10 10p12.2 OTU domain containing 1 protein-coding OTUD1 OTU domain containing 1 O DUBA-7|OTU domain-containing protein 1 20121230 -9606 220296 HEPACAM - GlialCAM|MLC2A|MLC2B HGNC:26361|MIM:611642|Ensembl:ENSG00000165478|HPRD:08068|Vega:OTTHUMG00000165938 11 11q24.2 hepatic and glial cell adhesion molecule protein-coding HEPACAM hepatic and glial cell adhesion molecule O hepatocyte cell adhesion molecule|protein hepaCAM 20121230 -9606 220323 OAF - NS5ATP13TP2 HGNC:28752|Ensembl:ENSG00000184232|HPRD:17646|Vega:OTTHUMG00000166139 11 11q23.3 OAF homolog (Drosophila) protein-coding OAF OAF homolog (Drosophila) O HCV NS5A-transactivated protein 13 target protein 2|out at first protein homolog 20121230 -9606 220359 TIGD3 - - HGNC:18334|Ensembl:ENSG00000173825|HPRD:18187|Vega:OTTHUMG00000165986 11 11q13.1 tigger transposable element derived 3 protein-coding TIGD3 tigger transposable element derived 3 O tigger transposable element-derived protein 3 20121230 -9606 220382 FAM181B - - HGNC:28512|Ensembl:ENSG00000182103|HPRD:14575|Vega:OTTHUMG00000166869 11 11q14.1 family with sequence similarity 181, member B protein-coding FAM181B family with sequence similarity 181, member B O protein FAM181B 20121230 -9606 220388 CCDC89 - - HGNC:26762|Ensembl:ENSG00000179071|HPRD:08234|Vega:OTTHUMG00000166976 11 11q14.1 coiled-coil domain containing 89 protein-coding CCDC89 coiled-coil domain containing 89 O bc8 orange-interacting protein|coiled-coil domain-containing protein 89 20121230 -9606 220416 LRRC63 RP11-139H14.4 - HGNC:34296|Ensembl:ENSG00000173988|HPRD:18580|Vega:OTTHUMG00000016866 13 13q14.13 leucine rich repeat containing 63 protein-coding LRRC63 leucine rich repeat containing 63 O RP11-139H14.4|leucine-rich repeat-containing protein 63 20121230 -9606 220429 CTAGE10P - - HGNC:37288 13 13q14.2 CTAGE family, member 10, pseudogene pseudo CTAGE10P CTAGE family, member 10, pseudogene O - 20121230 -9606 220433 RPS4XP16 - RPS4P16|RPS4X_8_1313 HGNC:36365 13 13q14.3 ribosomal protein S4X pseudogene 16 pseudo RPS4XP16 ribosomal protein S4X pseudogene 16 O - 20121230 -9606 220441 RNF152 - - HGNC:26811|Ensembl:ENSG00000176641|HPRD:11514|Vega:OTTHUMG00000132774 18 18q21.33 ring finger protein 152 protein-coding RNF152 ring finger protein 152 O E3 ubiquitin-protein ligase RNF152 20121230 -9606 220594 USP32P2 - TL132 HGNC:30751|HPRD:17321 17 17p11.2 ubiquitin specific peptidase 32 pseudogene 2 pseudo USP32P2 ubiquitin specific peptidase 32 pseudogene 2 O - 20121230 -9606 220717 RPLP0P6 - RPLP0_2_209 HGNC:36404 2 2p22.1 ribosomal protein, large, P0 pseudogene 6 pseudo RPLP0P6 ribosomal protein, large, P0 pseudogene 6 O - 20121230 -9606 220729 LOC220729 - - - 3 3q29 succinate dehydrogenase complex, subunit A, flavoprotein (Fp) pseudogene pseudo - - - - 20121230 -9606 220786 CDK7PS - - HGNC:18614 2 2q24.1 cyclin-dependent kinase 7 pseudogene pseudo CDK7PS cyclin-dependent kinase 7 pseudogene O - 20121230 -9606 220793 FUNDC2P1 - FUNDC2P HGNC:17253 5 5q13.2 FUN14 domain containing 2 pseudogene 1 pseudo FUNDC2P1 FUN14 domain containing 2 pseudogene 1 O - 20121230 -9606 220832 FABP5P3 - FABP5L3 HGNC:22573 7 7q36.1 fatty acid binding protein 5 pseudogene 3 pseudo FABP5P3 fatty acid binding protein 5 pseudogene 3 O - 20121230 -9606 220869 CBWD5 RP11-460E7.3 DC36 HGNC:24584|Ensembl:ENSG00000147996|HPRD:14134|Vega:OTTHUMG00000013336 9 9q21.11 COBW domain containing 5 protein-coding CBWD5 COBW domain containing 5 O COBW domain-containing protein 5|COBW-like placental protein|cobalamin synthase W domain-containing protein 5|cobalamin synthetase W domain-containing protein 5|dopamine responsive protein 20121230 -9606 220885 RPSAP15 - LAMR1P15|LAMRL5|RPSA_25_1791 HGNC:31464 X Xq21.31 ribosomal protein SA pseudogene 15 pseudo RPSAP15 ribosomal protein SA pseudogene 15 O - 20121230 -9606 220906 WAC-AS1 - - HGNC:27347 10 10p11.23 WAC antisense RNA 1 (head to head) miscRNA WAC-AS1 WAC antisense RNA 1 (head to head) O - 20121230 -9606 220929 ZNF438 RP11-330O11.1 bA330O11.1 HGNC:21029|Ensembl:ENSG00000183621|HPRD:11247|Vega:OTTHUMG00000017904 10 10p11.23 zinc finger protein 438 protein-coding ZNF438 zinc finger protein 438 O - 20121230 -9606 220930 ZEB1-AS1 - - HGNC:42354 10 10p11.22 ZEB1 antisense RNA 1 miscRNA ZEB1-AS1 ZEB1 antisense RNA 1 O - 20121230 -9606 220959 KRT8P16 - - HGNC:33368 10 10p14 keratin 8 pseudogene 16 pseudo KRT8P16 keratin 8 pseudogene 16 O - 20121230 -9606 220963 SLC16A9 - C10orf36|MCT9 HGNC:23520|MIM:614242|Ensembl:ENSG00000165449|HPRD:15348|Vega:OTTHUMG00000018283 10 10q21.2 solute carrier family 16, member 9 (monocarboxylic acid transporter 9) protein-coding SLC16A9 solute carrier family 16, member 9 (monocarboxylic acid transporter 9) O MCT 9|monocarboxylate transporter 9|solute carrier family 16 (monocarboxylic acid transporters), member 9|solute carrier family 16 member 9 20121230 -9606 220965 FAM13C RP11-443O13.2 FAM13C1 HGNC:19371|Ensembl:ENSG00000148541|HPRD:16875|Vega:OTTHUMG00000018277 10 10q21.1 family with sequence similarity 13, member C protein-coding FAM13C family with sequence similarity 13, member C O family with sequence similarity 13, member C1|protein FAM13C 20121230 -9606 220972 MARCH8 RP11-67C2.1 MARCH-VIII|MIR|RNF178|c-MIR HGNC:23356|MIM:613335|Ensembl:ENSG00000165406|HPRD:17466|Vega:OTTHUMG00000019345 10 10q11.21 membrane-associated ring finger (C3HC4) 8, E3 ubiquitin protein ligase protein-coding MARCH8 membrane-associated ring finger (C3HC4) 8, E3 ubiquitin protein ligase O E3 ubiquitin-protein ligase MARCH8|RING finger protein 178|c-mir, cellular modulator of immune recognition|cellular modulator of immune recognition (c-MIR)|membrane-associated RING finger protein 8|membrane-associated RING-CH protein VIII 20121230 -9606 220974 OR6D1P - OR6D2P HGNC:14849 10 10q11.21 olfactory receptor, family 6, subfamily D, member 1 pseudogene pseudo OR6D1P olfactory receptor, family 6, subfamily D, member 1 pseudogene O - 20121230 -9606 220979 C10orf25 RP11-285G1.11-001 - HGNC:23509|Ensembl:ENSG00000165511|Vega:OTTHUMG00000018066 10 10q11.21 chromosome 10 open reading frame 25 protein-coding C10orf25 chromosome 10 open reading frame 25 O uncharacterized protein C10orf25 20121230 -9606 220980 TMEM72-AS1 - - HGNC:27349 10 10q11.21 TMEM72 antisense RNA 1 miscRNA TMEM72-AS1 TMEM72 antisense RNA 1 O - 20121230 -9606 220988 HNRNPA3 - 2610510D13Rik|D10S102|FBRNP|HNRPA3 HGNC:24941|MIM:605372|Ensembl:ENSG00000170144|Vega:OTTHUMG00000132529 2 2q31.2 heterogeneous nuclear ribonucleoprotein A3 protein-coding HNRNPA3 heterogeneous nuclear ribonucleoprotein A3 O hnRNP A3 20121230 -9606 220992 ZNF485 - - HGNC:23440|Ensembl:ENSG00000198298|HPRD:15800|Vega:OTTHUMG00000018040 10 10q11.21 zinc finger protein 485 protein-coding ZNF485 zinc finger protein 485 O Zinc finger protein 93 (Zinc finger protein HTF34) 20121230 -9606 221002 RASGEF1A - CG4853 HGNC:24246|MIM:614531|Ensembl:ENSG00000198915|HPRD:15211|Vega:OTTHUMG00000018025 10 10q11.21 RasGEF domain family, member 1A protein-coding RASGEF1A RasGEF domain family, member 1A O CG4853 gene product|ras-GEF domain-containing family member 1A 20121230 -9606 221016 CCDC7 RP11-195O1.4 BioT2-A|BioT2-B|BioT2-C|RP11-479G22.1 HGNC:26533|Ensembl:ENSG00000216937|HPRD:10812|Vega:OTTHUMG00000150517 10 10p11.22 coiled-coil domain containing 7 protein-coding CCDC7 coiled-coil domain containing 7 O coiled-coil domain-containing protein 7 20121230 -9606 221017 CEP57L1P1 - C10orf37|C6orf182P HGNC:23521 10 10q22.1 centrosomal protein 57kDa-like 1 pseudogene 1 pseudo CEP57L1P1 centrosomal protein 57kDa-like 1 pseudogene 1 O - 20121230 -9606 221035 REEP3 RP11-439F7.1 C10orf74 HGNC:23711|MIM:609348|Ensembl:ENSG00000165476|HPRD:16582|Vega:OTTHUMG00000018318 10 10q21.3 receptor accessory protein 3 protein-coding REEP3 receptor accessory protein 3 O receptor expression enhancing protein 3|receptor expression-enhancing protein 3 20121230 -9606 221037 JMJD1C RP11-144G16.3 RP11-10C13.2|TRIP8 HGNC:12313|MIM:604503|Ensembl:ENSG00000171988|HPRD:05141|Vega:OTTHUMG00000018311 10 10q21.3 jumonji domain containing 1C protein-coding JMJD1C jumonji domain containing 1C O TR-interacting protein 8|TRIP-8|jumonji domain-containing protein 1C|probable JmjC domain-containing histone demethylation protein 2C|thyroid hormone receptor interactor 8|thyroid receptor interacting protein 8|thyroid receptor-interacting protein 8 20121230 -9606 221044 UCMA - C10orf49|GRP HGNC:25205|Ensembl:ENSG00000165623|HPRD:12578|Vega:OTTHUMG00000017692 10 10p13 upper zone of growth plate and cartilage matrix associated protein-coding UCMA upper zone of growth plate and cartilage matrix associated O Gla-rich protein|unique cartilage matrix-associated protein 20121230 -9606 221060 C10orf111 - bA455B2.4 HGNC:28582|Ensembl:ENSG00000176236|HPRD:16572|Vega:OTTHUMG00000017727 10 10p13 chromosome 10 open reading frame 111 protein-coding C10orf111 chromosome 10 open reading frame 111 O uncharacterized protein C10orf111 20121230 -9606 221061 FAM171A1 RP11-455B2.10-002 C10orf38 HGNC:23522|Ensembl:ENSG00000148468|HPRD:18581|Vega:OTTHUMG00000017732 10 10p13 family with sequence similarity 171, member A1 protein-coding FAM171A1 family with sequence similarity 171, member A1 O astroprincin|protein FAM171A1 20121230 -9606 221074 SLC39A12 - LZT-Hs8|ZIP-12|bA570F3.1 HGNC:20860|MIM:608734|Ensembl:ENSG00000148482|HPRD:15384|Vega:OTTHUMG00000017759 10 10p12.33 solute carrier family 39 (zinc transporter), member 12 protein-coding SLC39A12 solute carrier family 39 (zinc transporter), member 12 O LIV-1 subfamily of ZIP zinc transporter 8|solute carrier family 39 (metal ion transporter), member 12|solute carrier family 39 member 12|zinc transporter ZIP12|zrt- and Irt-like protein 12 20121230 -9606 221078 NSUN6 - 4933414E04Rik|NOPD1 HGNC:23529|Ensembl:ENSG00000241058|HPRD:14843|Vega:OTTHUMG00000017767 10 10p12.31 NOP2/Sun domain family, member 6 protein-coding NSUN6 NOP2/Sun domain family, member 6 O NOL1/NOP2/Sun and PUA domain-containing protein 1|NOL1/NOP2/Sun domain family 6|NOL1/NOP2/Sun domain family member 6|NOL1/NOP2/Sun domain family, member 6|nucleolar protein (NOL1/NOP2/sun) and PUA domains 1|putative methyltransferase NSUN6 20121230 -9606 221079 ARL5B - ARL8 HGNC:23052|MIM:608909|Ensembl:ENSG00000165997|HPRD:12328|Vega:OTTHUMG00000017765 10 10p12.31 ADP-ribosylation factor-like 5B protein-coding ARL5B ADP-ribosylation factor-like 5B O ADP-ribosylation factor-like 8|ADP-ribosylation factor-like protein 5B|ADP-ribosylation factor-like protein 8|ADP-ribosylation-like factor 8 20121230 -9606 221091 LRRN4CL UNQ728/PRO1410 - HGNC:33724|Ensembl:ENSG00000177363|HPRD:17322|Vega:OTTHUMG00000167581 11 11q12.3 LRRN4 C-terminal like protein-coding LRRN4CL LRRN4 C-terminal like O LRRN4 C-terminal-like protein 20121230 -9606 221092 HNRNPUL2 - HNRPUL2|SAF-A2 HGNC:25451|Ensembl:ENSG00000214753|Vega:OTTHUMG00000167773 11 11q12.3 heterogeneous nuclear ribonucleoprotein U-like 2 protein-coding HNRNPUL2 heterogeneous nuclear ribonucleoprotein U-like 2 O heterogeneous nuclear ribonucleoprotein U-like protein 2|scaffold-attachment factor A2 20121230 -9606 221120 ALKBH3 - ABH3|DEPC-1|DEPC1|PCA1 HGNC:30141|MIM:610603|Ensembl:ENSG00000166199|HPRD:16793|Vega:OTTHUMG00000166417 11 11p11.2 alkB, alkylation repair homolog 3 (E. coli) protein-coding ALKBH3 alkB, alkylation repair homolog 3 (E. coli) O alkylated DNA repair protein alkB homolog 3|alpha-ketoglutarate-dependent dioxygenase alkB homolog 3|prostate cancer antigen 1|prostate cancer antigen-1 20121230 -9606 221122 LOC221122 - - - 11 11p11.2 uncharacterized LOC221122 miscRNA - - - - 20121230 -9606 221143 N6AMT2 - ESP13 HGNC:27351|Ensembl:ENSG00000150456|HPRD:14135|Vega:OTTHUMG00000016519 13 13q12.11 N-6 adenine-specific DNA methyltransferase 2 (putative) protein-coding N6AMT2 N-6 adenine-specific DNA methyltransferase 2 (putative) O N(6)-adenine-specific DNA methyltransferase 2 20121230 -9606 221150 SKA3 RP11-101P17.12-002 C13orf3|RAMA1 HGNC:20262|Ensembl:ENSG00000165480|HPRD:10706|Vega:OTTHUMG00000016539 13 13q12.11 spindle and kinetochore associated complex subunit 3 protein-coding SKA3 spindle and kinetochore associated complex subunit 3 O spindle and kinetochore-associated protein 3 20121230 -9606 221154 EFHA1 - 1110008L20Rik HGNC:31830|MIM:610632|Ensembl:ENSG00000165487|HPRD:16852|Vega:OTTHUMG00000067414 13 13q12.11 EF-hand domain family, member A1 protein-coding EFHA1 EF-hand domain family, member A1 O EF hand domain family A1|EF hand domain family, member A1|EF-hand domain-containing family member A1|Smhs2 homolog 20121230 -9606 221178 SPATA13 RP11-307N16.3 ARHGEF29|ASEF2 HGNC:23222|MIM:613324|Ensembl:ENSG00000182957|HPRD:15427|Vega:OTTHUMG00000016578 13 13q12.12 spermatogenesis associated 13 protein-coding SPATA13 spermatogenesis associated 13 O APC-stimulated guanine nucleotide exchange factor 2|adenomatous polyposis coli stimulated exchange factor 2|spermatogenesis-associated protein 13 20121230 -9606 221180 CYCSP33 - HCP33 HGNC:24407 13 13q12.12 cytochrome c, somatic pseudogene 33 pseudo CYCSP33 cytochrome c, somatic pseudogene 33 O - 20121230 -9606 221184 CPNE2 - COPN2|CPN2 HGNC:2315|MIM:604206|Ensembl:ENSG00000140848|HPRD:05015|Vega:OTTHUMG00000133471 16 16q13 copine II protein-coding CPNE2 copine II O copine-2 20121230 -9606 221188 GPR114 UNQ2524/PRO6017 PGR27 HGNC:19010|Ensembl:ENSG00000159618|HPRD:17056|Vega:OTTHUMG00000133461 16 16q21 G protein-coupled receptor 114 protein-coding GPR114 G protein-coupled receptor 114 O G protein-coupled receptor PGR27|G-protein coupled receptor 114|G-protein coupled receptor PGR27|probable G-protein coupled receptor 114 20121230 -9606 221191 PRSS54 - KLKBL4 HGNC:26336|Ensembl:ENSG00000103023|Vega:OTTHUMG00000173231 16 16q21 protease, serine, 54 protein-coding PRSS54 protease, serine, 54 O CT67|cancer/testis antigen 67|inactive serine protease 54|plasma kallikrein-like protein 4 20121230 -9606 221223 CES5A - CAUXIN|CES4C1|CES5|CES7 HGNC:26459|Ensembl:ENSG00000159398|HPRD:07016|Vega:OTTHUMG00000133236 16 16q12.2 carboxylesterase 5A protein-coding CES5A carboxylesterase 5A O carboxylesterase 5|carboxylesterase 7|carboxylesterase-like urinary excreted protein homolog 20121230 -9606 221241 LINC00305 - C18orf20|HsT1235|NCRNA00305 HGNC:28597|HPRD:16624 18 18q22.1 long intergenic non-protein coding RNA 305 miscRNA LINC00305 long intergenic non-protein coding RNA 305 O - 20121230 -9606 221262 CCDC162P RP11-425D10.3 C6orf184|C6orf185|CCDC162|bA425D10.3|bA425D10.7 HGNC:21565 6 6q21 coiled-coil domain containing 162, pseudogene pseudo CCDC162P coiled-coil domain containing 162, pseudogene O - 20121230 -9606 221264 AKD1 hCG_2030702 AKD2|C6orf199|C6orf224|RP1-70A9.1|dJ70A9.1 HGNC:33814|Ensembl:ENSG00000155085|HPRD:12871|Vega:OTTHUMG00000157658 6 6q21 adenylate kinase domain containing 1 protein-coding AKD1 adenylate kinase domain containing 1 O adenylate kinase domain containing 2|adenylate kinase domain-containing protein 1 20121230 -9606 221272 LOC221272 - - - 6 6q22.1 uncharacterized LOC221272 unknown - - - - 20120508 -9606 221294 NT5DC1 RP3-486I3.1 C6orf200|LP2642|NT5C2L1 HGNC:21556|Ensembl:ENSG00000178425|HPRD:14845|Vega:OTTHUMG00000015428 6 6q22.1 5'-nucleotidase domain containing 1 protein-coding NT5DC1 5'-nucleotidase domain containing 1 O 5'-nucleotidase domain-containing protein 1|5'-nucleotidase, cytosolic II-like 1 protein 20121230 -9606 221301 FAM26D RP3-493F7.4 C6orf78 HGNC:21094|Ensembl:ENSG00000164451|HPRD:12899|Vega:OTTHUMG00000015443 6 6q22.1 family with sequence similarity 26, member D protein-coding FAM26D family with sequence similarity 26, member D O protein FAM26D 20121230 -9606 221302 ZUFSP RP3-412I7.3 C6orf113|dJ412I7.3 HGNC:21224|Ensembl:ENSG00000153975|HPRD:12840|Vega:OTTHUMG00000015445 6 6q22.1 zinc finger with UFM1-specific peptidase domain protein-coding ZUFSP zinc finger with UFM1-specific peptidase domain O zinc finger with UFM1-specific peptidase domain protein 20121230 -9606 221303 FAM162B - C6orf189|bA86F4.2 HGNC:21549|Ensembl:ENSG00000183807|Vega:OTTHUMG00000015446 6 6q22.1 family with sequence similarity 162, member B protein-coding FAM162B family with sequence similarity 162, member B O protein FAM162B 20121230 -9606 221322 C6orf170 RP1-310J6.1 BROMI|C6orf171|bA301B7.2|bA57L9.1|dJ310J6.1 HGNC:21485|Ensembl:ENSG00000146350|HPRD:12867|Vega:OTTHUMG00000015474 6 6q22.31 chromosome 6 open reading frame 170 protein-coding C6orf170 chromosome 6 open reading frame 170 O bA301B7.2 (novel protein)|broad-minded homolog|dJ310J6.1 (novel protein)|protein broad-minded 20121230 -9606 221336 BEND6 RP11-203B9.5 C6orf65|bA203B9.1 HGNC:20871|Ensembl:ENSG00000151917|HPRD:12893|Vega:OTTHUMG00000014914 6 6p12.1 BEN domain containing 6 protein-coding BEND6 BEN domain containing 6 O BEN domain-containing protein 6 20121230 -9606 221357 GSTA5 - - HGNC:19662|MIM:607605|Ensembl:ENSG00000182793|HPRD:09620|Vega:OTTHUMG00000014857 6 6p12.2 glutathione S-transferase alpha 5 protein-coding GSTA5 glutathione S-transferase alpha 5 O GST class-alpha member 5|glutathione S-transferase A5|glutathione S-transferase A5-5|glutathione transferase A5 20121230 -9606 221391 OPN5 - GPR136|PGR12|TMEM13 HGNC:19992|MIM:609042|Ensembl:ENSG00000124818|HPRD:12358|Vega:OTTHUMG00000014803 6 6p12.3 opsin 5 protein-coding OPN5 opsin 5 O G-protein coupled receptor 136|neuropsin|opsin-5|transmembrane protein 13 20121230 -9606 221393 GPR115 - PGR18 HGNC:19011|MIM:614268|Ensembl:ENSG00000153294|HPRD:17057|Vega:OTTHUMG00000014800 6 6p12.3 G protein-coupled receptor 115 protein-coding GPR115 G protein-coupled receptor 115 O G-protein coupled receptor 115|G-protein coupled receptor PGR18|probable G-protein coupled receptor 115|seven transmembrane helix receptor 20121230 -9606 221395 GPR116 - KPG_001 HGNC:19030|Ensembl:ENSG00000069122|HPRD:11010|Vega:OTTHUMG00000014793 6 6p12.3 G protein-coupled receptor 116 protein-coding GPR116 G protein-coupled receptor 116 O Ig-Hepta homolog|probable G-protein coupled receptor 116 20121230 -9606 221400 TDRD6 RP11-446F17.4 CT41.2|NY-CO-45|SPATA36|TDR2|bA446F17.4 HGNC:21339|MIM:611200|Ensembl:ENSG00000180113|HPRD:18172|Vega:OTTHUMG00000014788 6 6p12.3 tudor domain containing 6 protein-coding TDRD6 tudor domain containing 6 O antigen NY-CO-45|cancer/testis antigen 41.2|spermatogenesis associated 36|tudor domain-containing protein 6|tudor repeat 2 20121230 -9606 221409 SPATS1 RP11-444E17.3 DDIP|SPATA8|SRSP1 HGNC:22957|Ensembl:ENSG00000249481|HPRD:10248|Vega:OTTHUMG00000014764 6 6p21.1 spermatogenesis associated, serine-rich 1 protein-coding SPATS1 spermatogenesis associated, serine-rich 1 O spermatogenesis-associated serine-rich protein 1 20121230 -9606 221416 C6orf223 - - HGNC:28692|Ensembl:ENSG00000181577|HPRD:14640|Vega:OTTHUMG00000014753 6 6p21.1 chromosome 6 open reading frame 223 protein-coding C6orf223 chromosome 6 open reading frame 223 O uncharacterized protein C6orf223 20121230 -9606 221421 RSPH9 RP1-261G23.3 C6orf206|CILD12|MRPS18AL1 HGNC:21057|MIM:612648|Ensembl:ENSG00000172426|HPRD:12875|Vega:OTTHUMG00000014746 6 6p21.1 radial spoke head 9 homolog (Chlamydomonas) protein-coding RSPH9 radial spoke head 9 homolog (Chlamydomonas) O radial spoke head protein 9 homolog 20121230 -9606 221424 LRRC73 RP3-337H4.2 C6orf154 HGNC:21375|Ensembl:ENSG00000204052|HPRD:10167|Vega:OTTHUMG00000014737 6 6p21.1 leucine rich repeat containing 73 protein-coding LRRC73 leucine rich repeat containing 73 O leucine-rich repeat-containing protein 73 20121230 -9606 221438 TREML5P - TLT5|TREML2P|TREML2P1 HGNC:30808 6 6p21.1 triggering receptor expressed on myeloid cells-like 5, pseudogene pseudo TREML5P triggering receptor expressed on myeloid cells-like 5, pseudogene O - 20121230 -9606 221442 ADCY10P1 - - HGNC:44143|HPRD:17323 6 6p21.1 adenylate cyclase 10 (soluble) pseudogene 1 pseudo ADCY10P1 adenylate cyclase 10 (soluble) pseudogene 1 O - 20121230 -9606 221443 OARD1 - C6orf130|dJ34B21.3 HGNC:21257|MIM:614393|Ensembl:ENSG00000124596|HPRD:12849|Vega:OTTHUMG00000014667 6 6p21.1 O-acyl-ADP-ribose deacylase 1 protein-coding OARD1 O-acyl-ADP-ribose deacylase 1 O O-acetyl-ADP-ribose deacetylase C6orf130 20121230 -9606 221458 KIF6 RP1-137F1.4 C6orf102|dJ1043E3.1|dJ137F1.4|dJ188D3.1 HGNC:21202|MIM:613919|Ensembl:ENSG00000164627|HPRD:10786|Vega:OTTHUMG00000014648 6 6p21.2 kinesin family member 6 protein-coding KIF6 kinesin family member 6 O kinesin-like protein KIF6 20121230 -9606 221468 TMEM217 - C6orf128|dJ355M6.2 HGNC:21238|Ensembl:ENSG00000172738|HPRD:12848|Vega:OTTHUMG00000014618 6 6p21.2 transmembrane protein 217 protein-coding TMEM217 transmembrane protein 217 O - 20121230 -9606 221472 FGD2 RP3-405J24.2 ZFYVE4 HGNC:3664|MIM:605091|Ensembl:ENSG00000146192|HPRD:05478|Vega:OTTHUMG00000014616 6 6p21.2 FYVE, RhoGEF and PH domain containing 2 protein-coding FGD2 FYVE, RhoGEF and PH domain containing 2 O FGD1 family, member 2|FLJ00276 protein|FYVE, RhoGEF and PH domain-containing protein 2|zinc finger FYVE domain-containing protein 4 20121230 -9606 221476 PI16 PSEC0164 CRISP9|MSMBBP|PSPBP HGNC:21245|Ensembl:ENSG00000164530|Vega:OTTHUMG00000014611 6 6p21.2 peptidase inhibitor 16 protein-coding PI16 peptidase inhibitor 16 O PSP94-binding protein|cysteine-rich secretory protein 9|microseminoprotein, beta-binding protein|protease inhibitor 16 20121230 -9606 221477 C6orf89 RP1-90K10.6 - HGNC:21114|Ensembl:ENSG00000198663|HPRD:12905|Vega:OTTHUMG00000014613 6 6p21.2 chromosome 6 open reading frame 89 protein-coding C6orf89 chromosome 6 open reading frame 89 O amfion|bombesin receptor-activated protein C6orf89 20121230 -9606 221481 ARMC12 - C6orf81 HGNC:21099|Ensembl:ENSG00000157343|HPRD:12901|Vega:OTTHUMG00000014577 6 6p21.31 armadillo repeat containing 12 protein-coding ARMC12 armadillo repeat containing 12 O armadillo repeat-containing protein 12 20121230 -9606 221491 C6orf1 - LBH HGNC:1340|MIM:611419|Ensembl:ENSG00000186577|HPRD:12834|Vega:OTTHUMG00000159754 6 6p21.31 chromosome 6 open reading frame 1 protein-coding C6orf1 chromosome 6 open reading frame 1 O uncharacterized protein C6orf1 20121230 -9606 221496 LEMD2 RP3-482C21.2 NET25|dJ482C21.1 HGNC:21244|Ensembl:ENSG00000161904|HPRD:13984|Vega:OTTHUMG00000014535 6 6p21.31 LEM domain containing 2 protein-coding LEMD2 LEM domain containing 2 O LEM domain-containing protein 2|hLEM2 20121230 -9606 221504 ZBTB9 DASS-97D12.7 ZNF919 HGNC:28323|Ensembl:ENSG00000213588|HPRD:15695|Vega:OTTHUMG00000140180 6 6p21.32 zinc finger and BTB domain containing 9 protein-coding ZBTB9 zinc finger and BTB domain containing 9 O zinc finger and BTB domain-containing protein 9 20121230 -9606 221527 ZBTB12 DADB-122G4.2 Bat9|C6orf46|D6S59E|G10|NG35 HGNC:19066|Ensembl:ENSG00000204366|HPRD:15691|Vega:OTTHUMG00000031169 6 6p21.33 zinc finger and BTB domain containing 12 protein-coding ZBTB12 zinc finger and BTB domain containing 12 O HLA-B-associated transcript 9|zinc finger and BTB domain-containing protein 12 20121230 -9606 221545 C6orf136 DADB-129D20.1 - HGNC:21301|Ensembl:ENSG00000204564|HPRD:12851|Vega:OTTHUMG00000031221 6 6p21.33 chromosome 6 open reading frame 136 protein-coding C6orf136 chromosome 6 open reading frame 136 O uncharacterized protein C6orf136 20121230 -9606 221547 RANP1 - Ras-like|TC4 HGNC:21631 6 6p21.33 RAN, member RAS oncogene family pseudogene 1 pseudo RANP1 RAN, member RAS oncogene family pseudogene 1 O - 20121230 -9606 221584 ZSCAN12P1 - ZNF187p1|ZNF305P1|ZNF96L1|ZNF96P1|ZSCAN12L1|dJ313I6.7 HGNC:13850 6 6p22.1 zinc finger and SCAN domain containing 12 pseudogene 1 pseudo ZSCAN12P1 zinc finger and SCAN domain containing 12 pseudogene 1 O - 20121230 -9606 221613 HIST1H2AA - H2AA|H2AFR|bA317E16.2 HGNC:18729|MIM:613499|Ensembl:ENSG00000164508|HPRD:13653|Vega:OTTHUMG00000014407 6 6p22.2 histone cluster 1, H2aa protein-coding HIST1H2AA histone cluster 1, H2aa O H2A histone family, member R|histone 1, H2aa|histone H2A type 1-A|histone H2A/r 20121230 -9606 221656 KDM1B RP1-298J15.1 AOF1|C6orf193|LSD2|bA204B7.3|dJ298J15.2 HGNC:21577|MIM:613081|Ensembl:ENSG00000165097|HPRD:18524|Vega:OTTHUMG00000014316 6 6p22.3 lysine (K)-specific demethylase 1B protein-coding KDM1B lysine (K)-specific demethylase 1B O amine oxidase (flavin containing) domain 1|amine oxidase, flavin containing 1|flavin-containing amine oxidase domain-containing protein 1|lysine-specific histone demethylase 1B|lysine-specific histone demethylase 2 20121230 -9606 221662 RBM24 - RNPC6|dJ259A10.1 HGNC:21539|Ensembl:ENSG00000112183|HPRD:15228|Vega:OTTHUMG00000014306 6 6p22.3 RNA binding motif protein 24 protein-coding RBM24 RNA binding motif protein 24 O RNA-binding motif protein 24|RNA-binding protein 24|RNA-binding region (RNP1, RRM) containing 6|RNA-binding region-containing protein 6 20121230 -9606 221687 RNF182 - - HGNC:28522|Ensembl:ENSG00000180537|HPRD:15264|Vega:OTTHUMG00000014280 6 6p23 ring finger protein 182 protein-coding RNF182 ring finger protein 182 O E3 ubiquitin-protein ligase RNF182 20121230 -9606 221692 PHACTR1 RP1-257A7.1 RPEL|RPEL1|dJ257A7.2 HGNC:20990|MIM:608723|Ensembl:ENSG00000112137|HPRD:12283|Vega:OTTHUMG00000014270 6 6p24.1 phosphatase and actin regulator 1 protein-coding PHACTR1 phosphatase and actin regulator 1 O RPEL repeat containing 1 20121230 -9606 221710 SMIM13 - C6orf228 HGNC:27356|Ensembl:ENSG00000224531|Vega:OTTHUMG00000014253 6 6p24.2 small integral membrane protein 13 protein-coding SMIM13 small integral membrane protein 13 O UPF0766 protein C6orf228 20121230 -9606 221711 SYCP2L - C6orf177|NO145|dJ62D2.1 HGNC:21537|Ensembl:ENSG00000153157|HPRD:11248|Vega:OTTHUMG00000014250 6 6p24.2 synaptonemal complex protein 2-like protein-coding SYCP2L synaptonemal complex protein 2-like O 145 kDa nucleolar protein homolog|SCP-2-like 20121230 -9606 221717 MRPL48P1 - MRPL48L1|dJ290I10.4 HGNC:21379 6 6p24.3 mitochondrial ribosomal protein L48 pseudogene 1 pseudo MRPL48P1 mitochondrial ribosomal protein L48 pseudogene 1 O - 20121230 -9606 221718 LINC00518 - C6orf218 HGNC:28626|HPRD:17554 6 6p24.3 long intergenic non-protein coding RNA 518 miscRNA LINC00518 long intergenic non-protein coding RNA 518 O - 20121230 -9606 221749 PXDC1 - C6orf145 HGNC:21361|Ensembl:ENSG00000168994|HPRD:12854|Vega:OTTHUMG00000014146 6 6p25.2 PX domain containing 1 protein-coding PXDC1 PX domain containing 1 O PX domain-containing protein 1|PX domain-containing protein C6orf145 20121230 -9606 221756 MGC39372 - - - 6 6p25.2 serpin peptidase inhibitor, clade B (ovalbumin), member 9 pseudogene pseudo - - - - 20121230 -9606 221785 ZNF498 - ZSCAN25 HGNC:21961|Ensembl:ENSG00000197037|HPRD:15807|Vega:OTTHUMG00000074055 7 7q22.1 zinc finger protein 498 protein-coding ZNF498 zinc finger protein 498 O zinc finger and SCAN domain containing 25|zinc finger and SCAN domain-containing protein 25 20121230 -9606 221786 FAM200A - C7orf38 HGNC:25401|Ensembl:ENSG00000221909|HPRD:13221|Vega:OTTHUMG00000156723 7 7q22.1 family with sequence similarity 200, member A protein-coding FAM200A family with sequence similarity 200, member A O protein FAM200A 20121230 -9606 221806 VWDE - - HGNC:21897|Ensembl:ENSG00000146530|Vega:OTTHUMG00000152315 7 7p21.3 von Willebrand factor D and EGF domains protein-coding VWDE von Willebrand factor D and EGF domains O von Willebrand factor D and EGF domain-containing protein 20121230 -9606 221814 LOC221814 - - - 7 7p21.3 uncharacterized LOC221814 protein-coding - - - - 20111113 -9606 221823 PRPS1L1 hCG_1643027 PRPS1|PRPS3|PRPSL|PRS-III HGNC:9463|MIM:611566|Ensembl:ENSG00000229937|HPRD:17914|Vega:OTTHUMG00000152742 7 7p21.1 phosphoribosyl pyrophosphate synthetase 1-like 1 protein-coding PRPS1L1 phosphoribosyl pyrophosphate synthetase 1-like 1 O PRPS1-like 1|phosphoribosyl pyrophosphate synthase 1-like 1|phosphoribosyl pyrophosphate synthase III|phosphoribosylpyrophosphate synthetase subunit III|ribose-phosphate diphosphokinase catalytic chain III|ribose-phosphate pyrophosphokinase 3|ribose-phosphate pyrophosphokinase III 20121230 -9606 221830 TWISTNB - - HGNC:18027|MIM:608312|Ensembl:ENSG00000105849|HPRD:16311|Vega:OTTHUMG00000152497 7 7p21.1 TWIST neighbor protein-coding TWISTNB TWIST neighbor O DNA-directed RNA polymerase I subunit RPA43|twist neighbor protein 20121230 -9606 221833 SP8 - BTD HGNC:19196|MIM:608306|Ensembl:ENSG00000164651|HPRD:12208|Vega:OTTHUMG00000094788 7 7p21.2 Sp8 transcription factor protein-coding SP8 Sp8 transcription factor O specificity protein 8|transcription factor Sp8 20121230 -9606 221838 EEF1A1P6 - EEF1AL4 HGNC:3201 7 7p15.3 eukaryotic translation elongation factor 1 alpha 1 pseudogene 6 pseudo EEF1A1P6 eukaryotic translation elongation factor 1 alpha 1 pseudogene 6 O - 20121230 -9606 221883 HOXA11-AS tcag7.1238 HOXA-AS5|HOXA11-AS1|HOXA11AS|HOXA11S|NCRNA00076 HGNC:24957|MIM:607530 7 7p15.2 HOXA11 antisense RNA miscRNA HOXA11-AS HOXA11 antisense RNA O - 20121230 -9606 221895 JAZF1 tcag7.981 TIP27|ZNF802 HGNC:28917|MIM:606246|Ensembl:ENSG00000153814|HPRD:09373|Vega:OTTHUMG00000128545 7 7p15.2-p15.1 JAZF zinc finger 1 protein-coding JAZF1 JAZF zinc finger 1 O TAK1-interacting protein 27|juxtaposed with another zinc finger gene 1|juxtaposed with another zinc finger protein 1|zinc finger protein 802 20121230 -9606 221908 PPP1R35 - C7orf47 HGNC:28320|Ensembl:ENSG00000160813|HPRD:14486|Vega:OTTHUMG00000159540 7 7q22.1 protein phosphatase 1, regulatory subunit 35 protein-coding PPP1R35 protein phosphatase 1, regulatory subunit 35 O UPF0683 protein C7orf47|protein phosphatase 1 regulatory subunit 35 20121230 -9606 221914 GPC2 - - HGNC:4450|Ensembl:ENSG00000213420|HPRD:17051|Vega:OTTHUMG00000154894 7 7q22.1 glypican 2 protein-coding GPC2 glypican 2 O cerebroglycan|glypican proteoglycan 2, cerebroglycan proteoglycan|glypican-2 20121230 -9606 221927 BRAT1 - BAAT1|C7orf27|RMFSL HGNC:21701|MIM:614506|Ensembl:ENSG00000106009|HPRD:12914|Vega:OTTHUMG00000119091 7 7p22.3 BRCA1-associated ATM activator 1 protein-coding BRAT1 BRCA1-associated ATM activator 1 O BRCA1-associated protein required for ATM activation protein 1|HEAT repeat-containing protein C7orf27 20121230 -9606 221935 SDK1 - - HGNC:19307|MIM:607216|Ensembl:ENSG00000146555|HPRD:07388|Vega:OTTHUMG00000151733 7 7p22.2 sidekick cell adhesion molecule 1 protein-coding SDK1 sidekick cell adhesion molecule 1 O protein sidekick-1|sidekick homolog 1, cell adhesion molecule 20121230 -9606 221937 FOXK1 - FOXK1L HGNC:23480|Ensembl:ENSG00000164916|HPRD:18750|Vega:OTTHUMG00000151739 7 7p22.1 forkhead box K1 protein-coding FOXK1 forkhead box K1 O MNF|forkhead box protein K1|myocyte nuclear factor 20121230 -9606 221938 MMD2 - PAQR10 HGNC:30133|MIM:614581|Ensembl:ENSG00000136297|HPRD:17578|Vega:OTTHUMG00000151844 7 7p22.1 monocyte to macrophage differentiation-associated 2 protein-coding MMD2 monocyte to macrophage differentiation-associated 2 O monocyte to macrophage differentiation factor 2|monocyte-to-macrophage differentiation factor 2|monocyte-to-macrophage differentiation-associated protein 2|progestin and adipoQ receptor family member 10|progestin and adipoQ receptor family member X 20121230 -9606 221946 LOC221946 - - - 7 7p22.2 uncharacterized LOC221946 miscRNA - - - - 20120508 -9606 221955 DAGLB tcag7.842 DAGLBETA|KCCR13L HGNC:28923|MIM:614016|Ensembl:ENSG00000164535|HPRD:17324|Vega:OTTHUMG00000125513 7 7p22.1 diacylglycerol lipase, beta protein-coding DAGLB diacylglycerol lipase, beta O DGL-beta|sn1-specific diacylglycerol lipase beta 20121230 -9606 221960 CCZ1B - C7orf28B|H_NH0577018.2 HGNC:21717|Ensembl:ENSG00000146574|HPRD:12916|Vega:OTTHUMG00000152441 7 7p22.1 CCZ1 vacuolar protein trafficking and biogenesis associated homolog B (S. cerevisiae) protein-coding CCZ1B CCZ1 vacuolar protein trafficking and biogenesis associated homolog B (S. cerevisiae) O H_DJ1163J12.2|vacuolar fusion protein CCZ1 homolog B 20121230 -9606 221981 THSD7A - - HGNC:22207|MIM:612249|Ensembl:ENSG00000005108|Vega:OTTHUMG00000152346 7 7p21.3 thrombospondin, type I, domain containing 7A protein-coding THSD7A thrombospondin, type I, domain containing 7A O thrombospondin type-1 domain-containing protein 7A 20121230 -9606 222005 SLC25A5P3 - ANTP1 HGNC:507 7 7p11.2 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 3 pseudo SLC25A5P3 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 3 O - 20121230 -9606 222008 VSTM2A tcag7.1200 VSTM2 HGNC:28499|Ensembl:ENSG00000170419|HPRD:14566|Vega:OTTHUMG00000129271 7 7p11.2 V-set and transmembrane domain containing 2A protein-coding VSTM2A V-set and transmembrane domain containing 2A O V-set and transmembrane domain containing 2|V-set and transmembrane domain-containing protein 2A|hypothetical protein MGC33530 20121230 -9606 222029 DKFZp434L192 - - - 7 7p11.2 uncharacterized protein DKFZp434L192 miscRNA - - - - 20121230 -9606 222052 TTC4P1 - TTC4P HGNC:12395 7 7p13 tetratricopeptide repeat domain 4 pseudogene 1 pseudo TTC4P1 tetratricopeptide repeat domain 4 pseudogene 1 O - 20121230 -9606 222068 TMED4 - ERS25|HNLF HGNC:22301|MIM:612038|Ensembl:ENSG00000158604|HPRD:13666|Vega:OTTHUMG00000129210 7 7p13 transmembrane emp24 protein transport domain containing 4 protein-coding TMED4 transmembrane emp24 protein transport domain containing 4 O GMP25iso|endoplasmic reticulum stress-response protein 25 kDa|p24 family protein alpha-3|p24alpha3|putative NF-kappa-B-activating protein 156|putative NFkB activating protein HNLF|transmembrane emp24 domain-containing protein 4 20121230 -9606 222161 DKFZP586I1420 - - - 7 7p14.3 uncharacterized protein DKFZp586I1420 pseudo - - - - 20121230 -9606 222166 C7orf41 - Ells1 HGNC:25457|Ensembl:ENSG00000180354|HPRD:07635|Vega:OTTHUMG00000128559 7 7p14.3 chromosome 7 open reading frame 41 protein-coding C7orf41 chromosome 7 open reading frame 41 O UPF0452 protein C7orf41|protein Ells1 20121230 -9606 222171 PRR15 - - HGNC:22310|Ensembl:ENSG00000176532|HPRD:14136|Vega:OTTHUMG00000128555 7 7p14.3 proline rich 15 protein-coding PRR15 proline rich 15 O proline-rich protein 15 20121230 -9606 222183 SRRM3 - - HGNC:26729|Ensembl:ENSG00000177679|HPRD:08219|Vega:OTTHUMG00000130489 7 7q11.23 serine/arginine repetitive matrix 3 protein-coding SRRM3 serine/arginine repetitive matrix 3 O SRRM2-like protein|serine/arginine repetitive matrix protein 3 20121230 -9606 222194 RSBN1L - - HGNC:24765|Ensembl:ENSG00000187257|HPRD:15278|Vega:OTTHUMG00000155517 7 7q11.23 round spermatid basic protein 1-like protein-coding RSBN1L round spermatid basic protein 1-like O round spermatid basic protein 1-like protein 20121230 -9606 222223 KIAA1324L - EIG121L HGNC:21945|MIM:614048|Ensembl:ENSG00000164659|HPRD:13405|Vega:OTTHUMG00000153995 7 7q21.12 KIAA1324-like protein-coding KIAA1324L KIAA1324-like O EIG121-like|UPF0577 protein KIAA1324-like|estrogen-induced gene 121-like protein 20121230 -9606 222229 LRWD1 - CENP-33|ORCA HGNC:21769|Ensembl:ENSG00000161036|HPRD:10904|Vega:OTTHUMG00000157718 7 7q22.1 leucine-rich repeats and WD repeat domain containing 1 protein-coding LRWD1 leucine-rich repeats and WD repeat domain containing 1 O ORC-associated protein|centromere protein 33|leucine-rich repeat and WD repeat-containing protein 1|origin recognition complex associated|origin recognition complex-associated protein 20121230 -9606 222234 FAM185A - - HGNC:22412|Ensembl:ENSG00000222011|HPRD:11343|Vega:OTTHUMG00000154140 7 7q22.1 family with sequence similarity 185, member A protein-coding FAM185A family with sequence similarity 185, member A O protein FAM185A 20121230 -9606 222235 FBXL13 - Fbl13 HGNC:21658|MIM:609080|Ensembl:ENSG00000161040|HPRD:12364|Vega:OTTHUMG00000157224 7 7q22.1 F-box and leucine-rich repeat protein 13 protein-coding FBXL13 F-box and leucine-rich repeat protein 13 O F-box/LRR-repeat protein 13 20121230 -9606 222236 NAPEPLD - FMP30|NAPE-PLD HGNC:21683|MIM:612334|Ensembl:ENSG00000161048|HPRD:14809|Vega:OTTHUMG00000157204 7 7q22.1 N-acyl phosphatidylethanolamine phospholipase D protein-coding NAPEPLD N-acyl phosphatidylethanolamine phospholipase D O N-acyl-phosphatidylethanolamine-hydrolyzing phospholipase D|NAPE-hydrolyzing phospholipase D 20121230 -9606 222255 ATXN7L1 tcag7.1150 ATXN7L4 HGNC:22210|Ensembl:ENSG00000146776|HPRD:12508|Vega:OTTHUMG00000157521 7 7q22.3 ataxin 7-like 1 protein-coding ATXN7L1 ataxin 7-like 1 O ataxin 7-like 4|ataxin-7-like protein 1|ataxin-7-like protein 4 20121230 -9606 222256 CDHR3 - CDH28 HGNC:26308|Ensembl:ENSG00000128536|HPRD:08042|Vega:OTTHUMG00000157520 7 7q22.3 cadherin-related family member 3 protein-coding CDHR3 cadherin-related family member 3 O cadherin-like protein 28 20121230 -9606 222344 LOC222344 - - - 10 10q22.1 TNF receptor-associated factor 6 protein-coding - - - - 20100404 -9606 222389 BEND7 - C10orf30 HGNC:23514|Ensembl:ENSG00000165626|HPRD:12570|Vega:OTTHUMG00000017699 10 10p13 BEN domain containing 7 protein-coding BEND7 BEN domain containing 7 O BEN domain-containing protein 7 20121230 -9606 222484 LNX2 - PDZRN1 HGNC:20421|MIM:609733|Ensembl:ENSG00000139517|HPRD:10042|Vega:OTTHUMG00000016634 13 13q12.2 ligand of numb-protein X 2 protein-coding LNX2 ligand of numb-protein X 2 O PDZ domain containing ring finger 1|PDZ domain-containing RING finger protein 1|ligand of Numb protein X 2|numb-binding protein 2 20121230 -9606 222487 GPR97 - PB99|PGR26 HGNC:13728|Ensembl:ENSG00000182885|HPRD:17073|Vega:OTTHUMG00000133458 16 16q21 G protein-coupled receptor 97 protein-coding GPR97 G protein-coupled receptor 97 O G-protein coupled receptor PGR26|probable G-protein coupled receptor 97 20121230 -9606 222537 HS3ST5 - 3-OST-5|3OST5|HS3OST5|NBLA04021 HGNC:19419|MIM:609407|Ensembl:ENSG00000249853|HPRD:13674 6 6q21 heparan sulfate (glucosamine) 3-O-sulfotransferase 5 protein-coding HS3ST5 heparan sulfate (glucosamine) 3-O-sulfotransferase 5 O h3-OST-5|heparan sulfate 3-O-sulfotransferase 5|heparan sulfate 3-OST-5|heparan sulfate D-glucosaminyl 3-O-sulfotransferase 5|heparan sulfate glucosamine 3-O-sulfotransferase 5 20121230 -9606 222545 GPRC6A - GPCR|bA86F4.3 HGNC:18510|MIM:613572|Ensembl:ENSG00000173612|HPRD:17074|Vega:OTTHUMG00000015447 6 6q22.1 G protein-coupled receptor, family C, group 6, member A protein-coding GPRC6A G protein-coupled receptor, family C, group 6, member A O G-protein coupled receptor GPCR33|G-protein coupled receptor family C group 6 member A|hGPCR33|hGPRC6A|predicted with SOSUI analysis|seven transmembrane helix receptor 20121230 -9606 222546 RFX6 RP5-955L16.1 MTFS|RFXDC1|dJ955L16.1 HGNC:21478|MIM:612659|Ensembl:ENSG00000185002|HPRD:11490|Vega:OTTHUMG00000015449 6 6q22.1 regulatory factor X, 6 protein-coding RFX6 regulatory factor X, 6 O DNA-binding protein RFX6|regulatory factor X domain-containing protein 1 20121230 -9606 222553 SLC35F1 RP1-230I3.1 C6orf169|dJ230I3.1 HGNC:21483|Ensembl:ENSG00000196376|HPRD:18751|Vega:OTTHUMG00000015460 6 6q22.31 solute carrier family 35, member F1 protein-coding SLC35F1 solute carrier family 35, member F1 O solute carrier family 35 member F1 20121230 -9606 222584 FAM83B - C6orf143 HGNC:21357|Ensembl:ENSG00000168143|HPRD:10158|Vega:OTTHUMG00000014899 6 6p12.1 family with sequence similarity 83, member B protein-coding FAM83B family with sequence similarity 83, member B O protein FAM83B 20121230 -9606 222611 GPR111 - PGR20|hGPCR35 HGNC:18991|Ensembl:ENSG00000164393|HPRD:17055|Vega:OTTHUMG00000046168 6 6p12.3 G protein-coupled receptor 111 protein-coding GPR111 G protein-coupled receptor 111 O G protein-coupled receptor PGR20|probable G-protein coupled receptor 111 20121230 -9606 222642 TSPO2 - BZRPL1 HGNC:21256|Ensembl:ENSG00000112212|HPRD:16569|Vega:OTTHUMG00000014666 6 6p21.1 translocator protein 2 protein-coding TSPO2 translocator protein 2 O benzodiazapine receptor (peripheral)-like 1|peripheral-type benzodiazepine receptor-like protein 1 20121230 -9606 222643 UNC5CL - MUXA|ZUD HGNC:21203|Ensembl:ENSG00000124602|HPRD:09844|Vega:OTTHUMG00000014665 6 6p21.1 unc-5 homolog C (C. elegans)-like protein-coding UNC5CL unc-5 homolog C (C. elegans)-like O UNC5C-like protein|ZU5 and death domain containing|protein unc-5 homolog C-like 20121230 -9606 222658 KCTD20 RP1-108K11.2 C6orf69|dJ108K11.3 HGNC:21052|Ensembl:ENSG00000112078|HPRD:12895|Vega:OTTHUMG00000014597 6 6p21.31 potassium channel tetramerisation domain containing 20 protein-coding KCTD20 potassium channel tetramerisation domain containing 20 O BTB/POZ domain-containing protein KCTD20 20121230 -9606 222659 PXT1 - STEPP HGNC:18312|Ensembl:ENSG00000179165|HPRD:17937|Vega:OTTHUMG00000159815 6 6p21.31 peroxisomal, testis specific 1 protein-coding PXT1 peroxisomal, testis specific 1 O peroxisomal testis-specific protein 1|small testis-specific peroxisomal protein 20121230 -9606 222662 LHFPL5 - DFNB67|TMHS|dJ510O8.8 HGNC:21253|MIM:609427|Ensembl:ENSG00000197753|HPRD:13989|Vega:OTTHUMG00000014584 6 6p21.31 lipoma HMGIC fusion partner-like 5 protein-coding LHFPL5 lipoma HMGIC fusion partner-like 5 O LHFP-like protein 5|lipoma HMGIC fusion partner-like 5 protein|tetraspan membrane protein of hair cell stereocilia 20121230 -9606 222663 SCUBE3 - CEGF3 HGNC:13655|MIM:614708|Ensembl:ENSG00000146197|HPRD:18031|Vega:OTTHUMG00000014562 6 6p21.3 signal peptide, CUB domain, EGF-like 3 protein-coding SCUBE3 signal peptide, CUB domain, EGF-like 3 O CUB and EGF containing protein 3|CUB domain and EGF-like repeat containing 3|signal peptide, CUB and EGF-like domain containing protein 3|signal peptide, CUB and EGF-like domain-containing protein 3 20121230 -9606 222696 ZSCAN23 - ZNF390|ZNF453|dJ29K1.3|dJ29K1.3.1 HGNC:21193|Ensembl:ENSG00000187987|Vega:OTTHUMG00000016346 6 6p22.1 zinc finger and SCAN domain containing 23 protein-coding ZSCAN23 zinc finger and SCAN domain containing 23 O zinc finger and SCAN domain-containing protein 23|zinc finger protein 390|zinc finger protein 453 20121230 -9606 222698 NKAPL - C6orf194|bA424I5.1 HGNC:21584|Ensembl:ENSG00000189134|HPRD:16664|Vega:OTTHUMG00000014517 6 6p22.1 NFKB activating protein-like protein-coding NKAPL NFKB activating protein-like O NKAP-like protein 20121230 -9606 222699 TOB2P1 - TOB2P|TOB4p|p373c6.3 HGNC:13986 6 6p22.1 transducer of ERBB2, 2 pseudogene 1 pseudo TOB2P1 transducer of ERBB2, 2 pseudogene 1 O - 20121230 -9606 222701 ZNF192P2 - - HGNC:42862 6 6p22.1 zinc finger protein 192 pseudogene 2 pseudo ZNF192P2 zinc finger protein 192 pseudogene 2 O - 20121230 -9606 222826 FAM217A RP5-1013A10.4 C6orf146 HGNC:21362|Ensembl:ENSG00000145975|HPRD:10789|Vega:OTTHUMG00000014159 6 6p25.2 family with sequence similarity 217, member A protein-coding FAM217A family with sequence similarity 217, member A O protein FAM217A|uncharacterized protein C6orf146 20121230 -9606 222865 TMEM130 UNQ719/PRO1383 - HGNC:25429|Ensembl:ENSG00000166448|HPRD:13226|Vega:OTTHUMG00000154419 7 7q22.1 transmembrane protein 130 protein-coding TMEM130 transmembrane protein 130 O - 20121230 -9606 222894 FERD3L - N-TWIST|NATO3|NTWIST|bHLHa31 HGNC:16660|Ensembl:ENSG00000146618|HPRD:16890|Vega:OTTHUMG00000090823 7 7p21.1 Fer3-like (Drosophila) protein-coding FERD3L Fer3-like (Drosophila) O basic helix-loop-helix protein N-twist|class A basic helix-loop-helix protein 31|fer3-like protein|nephew of atonal 3|neuronal twist 20121230 -9606 222901 RPL23P8 - RPL23_4_790 HGNC:36225 7 7p21.1 ribosomal protein L23 pseudogene 8 pseudo RPL23P8 ribosomal protein L23 pseudogene 8 O - 20121230 -9606 222950 NYAP1 - C7orf51 HGNC:22009|Ensembl:ENSG00000166924|HPRD:13427|Vega:OTTHUMG00000155290 7 7q22.1 neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adaptor 1 protein-coding NYAP1 neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adaptor 1 O neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adapter 1 20121230 -9606 222962 SLC29A4 PSEC0113 ENT4|PMAT HGNC:23097|MIM:609149|Ensembl:ENSG00000164638|HPRD:15362|Vega:OTTHUMG00000023797 7 7p22.1 solute carrier family 29 (nucleoside transporters), member 4 protein-coding SLC29A4 solute carrier family 29 (nucleoside transporters), member 4 O equilibrative nucleoside transporter 4|hENT4|plasma membrane monoamine transporter|solute carrier family 29 member 4 20121230 -9606 222967 RSPH10B - - HGNC:27362|Ensembl:ENSG00000155026|HPRD:11249|Vega:OTTHUMG00000152378 7 7p22.1 radial spoke head 10 homolog B (Chlamydomonas) protein-coding RSPH10B radial spoke head 10 homolog B (Chlamydomonas) O radial spoke head 10 homolog B|radial spoke head 10 homolog B2 20121230 -9606 223075 CCDC129 - - HGNC:27363|Ensembl:ENSG00000180347|HPRD:14137|Vega:OTTHUMG00000128611 7 7p14.3 coiled-coil domain containing 129 protein-coding CCDC129 coiled-coil domain containing 129 O coiled-coil domain-containing protein 129 20121230 -9606 223082 ZNRF2 - RNF202 HGNC:22316|MIM:612061|Ensembl:ENSG00000180233|HPRD:15894|Vega:OTTHUMG00000097759 7 7p14.3 zinc and ring finger 2 protein-coding ZNRF2 zinc and ring finger 2 O E3 ubiquitin-protein ligase ZNRF2|RING finger protein 202|protein Ells2|zinc finger/RING finger 2|zinc/RING finger protein 2 20121230 -9606 223117 SEMA3D UNQ760/PRO1491 Sema-Z2|coll-2 HGNC:10726|MIM:609907|Ensembl:ENSG00000153993|HPRD:15321|Vega:OTTHUMG00000154569 7 7q21.11 sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3D protein-coding SEMA3D sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3D O collapsin 2|semaphorin-3D 20121230 -9606 225689 MAPK15 - ERK7|ERK8 HGNC:24667|Ensembl:ENSG00000181085|HPRD:16867|Vega:OTTHUMG00000146450 8 - mitogen-activated protein kinase 15 protein-coding MAPK15 mitogen-activated protein kinase 15 O ERK-7|ERK-8|MAP kinase 15|MAPK 15|extracellular regulated kinase 8 delta|extracellular signal regulated kinase 8|extracellular signal-regulated kinase 7|extracellular signal-regulated kinase 8 20121230 -9606 245711 SPDYA - RINGO3|RINGOA|SPDY1|SPY1 HGNC:30613|MIM:614029|Ensembl:ENSG00000163806|HPRD:18095|Vega:OTTHUMG00000074041 2 2p23.2 speedy homolog A (Xenopus laevis) protein-coding SPDYA speedy homolog A (Xenopus laevis) O RINGO A|hSpy/Ringo A|rapid inducer of G2/M progression in oocytes A|speedy protein A|speedy-1 20121230 -9606 245802 MS4A6E - - HGNC:14285|MIM:608402|Ensembl:ENSG00000166926|HPRD:12227|Vega:OTTHUMG00000167355 11 11q12.2 membrane-spanning 4-domains, subfamily A, member 6E protein-coding MS4A6E membrane-spanning 4-domains, subfamily A, member 6E O membrane-spanning 4-domains subfamily A member 6E 20121230 -9606 245806 VGLL2 RP1-179P9.2 VGL2|VITO1 HGNC:20232|MIM:609979|Ensembl:ENSG00000170162|HPRD:18282|Vega:OTTHUMG00000015451 6 6q22.1 vestigial like 2 (Drosophila) protein-coding VGLL2 vestigial like 2 (Drosophila) O Vestigial and Tondu related protein 1|transcription cofactor vestigial-like protein 2 20121230 -9606 245812 CNPY4 PSEC0237 PRAT4B HGNC:28631|MIM:610047|Ensembl:ENSG00000166997|HPRD:14611|Vega:OTTHUMG00000154817 7 7q22.1 canopy 4 homolog (zebrafish) protein-coding CNPY4 canopy 4 homolog (zebrafish) O PRotein Associated with Tlr4|protein canopy homolog 4 20121230 -9606 245821 DFNB34 - - HGNC:17143 3 3p22.1 deafness, autosomal recessive 34 unknown DFNB34 deafness, autosomal recessive 34 O - 20110215 -9606 245908 DEFB105A - BD-5|DEFB-5|DEFB105 HGNC:18087|Ensembl:ENSG00000186562|HPRD:10871|Vega:OTTHUMG00000150011 8 8p23.1 defensin, beta 105A protein-coding DEFB105A defensin, beta 105A O beta defensin 5|beta-defensin 105|beta-defensin 5|defensin, beta 5 20121230 -9606 245909 DEFB106A - BD-6|DEFB-6|DEFB106 HGNC:18088|Ensembl:ENSG00000186579|HPRD:10872|Vega:OTTHUMG00000150012 8 8p23.1 defensin, beta 106A protein-coding DEFB106A defensin, beta 106A O beta-defensin 106|beta-defensin 6|defensin, beta 6 20121230 -9606 245910 DEFB107A - BD-7|DEFB-7|DEFB107 HGNC:18086|Ensembl:ENSG00000186572|Vega:OTTHUMG00000150013 8 8p23.1 defensin, beta 107A protein-coding DEFB107A defensin, beta 107A O beta-defensin 107|beta-defensin 7|defensin, beta 7 20121230 -9606 245911 DEFB108B - - HGNC:29966|Ensembl:ENSG00000184276|HPRD:16790|Vega:OTTHUMG00000167533 11 11q13.4 defensin, beta 108B protein-coding DEFB108B defensin, beta 108B O BD-8|DEFB-8|beta-defensin 108B|beta-defensin 8|defensin, beta 108, pseudogene 1|defensin, beta 8|hBD-8 20121230 -9606 245912 DEFB109P1 - DEFB-9|DEFB109|DEFB109A HGNC:18090 8 8p23.1 defensin, beta 109, pseudogene 1 pseudo DEFB109P1 defensin, beta 109, pseudogene 1 O - 20121209 -9606 245913 DEFB110 - DEFB-10|DEFB-11|DEFB111 HGNC:18091|Ensembl:ENSG00000203970|Vega:OTTHUMG00000160208 6 6p12.3 defensin, beta 110 locus protein-coding DEFB110 defensin, beta 110 locus O beta-defensin 10|beta-defensin 11|beta-defensin 110|beta-defensin 111|defensin, beta 10 20121230 -9606 245915 DEFB112 - DEFB-12 HGNC:18093|Ensembl:ENSG00000180872|HPRD:18757|Vega:OTTHUMG00000160215 6 6p12.3 defensin, beta 112 protein-coding DEFB112 defensin, beta 112 O beta-defensin 112|beta-defensin 12|defensin, beta 12 20121230 -9606 245927 DEFB113 - DEFB-13 HGNC:18094|Ensembl:ENSG00000214642|Vega:OTTHUMG00000160210 6 6p12.3 defensin, beta 113 protein-coding DEFB113 defensin, beta 113 O beta-defensin 113|beta-defensin 13|defensin, beta 13 20121230 -9606 245928 DEFB114 - DEFB-14 HGNC:18095|Ensembl:ENSG00000177684|HPRD:18758|Vega:OTTHUMG00000160209 6 6p12.3 defensin, beta 114 protein-coding DEFB114 defensin, beta 114 O beta-defensin 114|beta-defensin 14|defensin, beta 14 20121230 -9606 245929 DEFB115 - DEFB-15 HGNC:18096|Ensembl:ENSG00000215547|Vega:OTTHUMG00000159284 20 20q11.1 defensin, beta 115 protein-coding DEFB115 defensin, beta 115 O beta-defensin 115|beta-defensin 15|defensin, beta 15 20121230 -9606 245930 DEFB116 - DEFB-16 HGNC:18097|Ensembl:ENSG00000215545|Vega:OTTHUMG00000159285 20 20q11.21 defensin, beta 116 protein-coding DEFB116 defensin, beta 116 O beta-defensin 116|beta-defensin 16|defensin, beta 16 20121230 -9606 245931 DEFB117 - DEFB-17 HGNC:18098 20 20q11.21 defensin, beta 117 pseudo DEFB117 defensin, beta 117 O - 20121116 -9606 245932 DEFB119 RP5-1018D12.9 DEFB-19|DEFB-20|DEFB120|ESC42-RELA|ESC42-RELB HGNC:18099|Ensembl:ENSG00000180483|HPRD:10873|Vega:OTTHUMG00000032172 20 20q11.21 defensin, beta 119 protein-coding DEFB119 defensin, beta 119 O beta-defensin 119|defensin, beta 120|defensin, beta 19|defensin, beta 20 20121230 -9606 245934 DEFB121 - ESC42RELC HGNC:18101|Ensembl:ENSG00000204548|HPRD:16791|Vega:OTTHUMG00000032171 20 20q11.1 defensin, beta 121 protein-coding DEFB121 defensin, beta 121 O beta-defensin 121|beta-defensin 21|defensin, beta 21 20121230 -9606 245935 DEFB122 - DEFB-22|DEFB122P HGNC:18102 20 20q11.21 defensin, beta 122 (pseudogene) pseudo DEFB122 defensin, beta 122 (pseudogene) O - 20121230 -9606 245936 DEFB123 UNQ1963/PRO4485 DEFB-23|ESC42-RELD HGNC:18103|Ensembl:ENSG00000180424|HPRD:10874|Vega:OTTHUMG00000032170 20 20q11.1 defensin, beta 123 protein-coding DEFB123 defensin, beta 123 O beta defensin 23|beta-defensin 123|beta-defensin 23|specific to testis and epididymis 20121230 -9606 245937 DEFB124 - DEFB-24 HGNC:18104|Ensembl:ENSG00000180383|HPRD:18759|Vega:OTTHUMG00000159287 20 20q11.1 defensin, beta 124 protein-coding DEFB124 defensin, beta 124 O beta-defensin 124|beta-defensin 24|defensin, beta 24 20121230 -9606 245938 DEFB125 RP11-530N10.2 DEFB-25 HGNC:18105 20 20p13 defensin, beta 125 protein-coding DEFB125 defensin, beta 125 O beta defensin 25|beta-defensin 125|beta-defensin 25 20121230 -9606 245939 DEFB128 - DEFB-28|DEFB28|hBD-28 HGNC:18106|Ensembl:ENSG00000185982|Vega:OTTHUMG00000043057 20 20p13 defensin, beta 128 protein-coding DEFB128 defensin, beta 128 O beta-defensin 128|beta-defensin 28|defensin, beta 28 20121230 -9606 245940 DEFB130 - DEFB-30 HGNC:18107|Ensembl:ENSG00000232948|Vega:OTTHUMG00000158742 8 8p23.1 defensin, beta 130 protein-coding DEFB130 defensin, beta 130 O beta-defensin 130|beta-defensin 30|defensin, beta 30 20121230 -9606 245972 ATP6V0D2 - ATP6D2|VMA6 HGNC:18266|Ensembl:ENSG00000147614|HPRD:16522|Vega:OTTHUMG00000163637 8 - ATPase, H+ transporting, lysosomal 38kDa, V0 subunit d2 protein-coding ATP6V0D2 ATPase, H+ transporting, lysosomal 38kDa, V0 subunit d2 O V-ATPase subunit d 2|V-type proton ATPase subunit d 2|vacuolar proton pump subunit d 2 20121230 -9606 245973 ATP6V1C2 - ATP6C2|VMA5 HGNC:18264|Ensembl:ENSG00000143882|HPRD:16523|Vega:OTTHUMG00000090459 2 - ATPase, H+ transporting, lysosomal 42kDa, V1 subunit C2 protein-coding ATP6V1C2 ATPase, H+ transporting, lysosomal 42kDa, V1 subunit C2 O V-ATPase C2 subunit|V-ATPase subunit C 2|V-type proton ATPase subunit C 2|vacuolar proton pump subunit C 2 20121230 -9606 246100 CTAG1A - ESO1|LAGE2A HGNC:24198|MIM:300657|Ensembl:ENSG00000183678|HPRD:06607|Vega:OTTHUMG00000024238 X Xq28 cancer/testis antigen 1A protein-coding CTAG1A cancer/testis antigen 1A O CT6.1|LAGE-2|autoimmunogenic cancer/testis antigen NY-ESO-1|cancer/testis antigen 1|cancer/testis antigen 1-A|cancer/testis antigen 6.1|l antigen family member 2 20121230 -9606 246112 TAF13P1 - TAF13P HGNC:18699 6 6q14.3-q15 TAF13 RNA polymerase II, TATA box binding protein (TBP)-associated factor pseudogene 1 pseudo TAF13P1 TAF13 RNA polymerase II, TATA box binding protein (TBP)-associated factor pseudogene 1 O - 20121230 -9606 246119 TTTY10 - NCRNA00133|TTY10 HGNC:18491 Y Yq11.221 testis-specific transcript, Y-linked 10 (non-protein coding) miscRNA TTTY10 testis-specific transcript, Y-linked 10 (non-protein coding) O - 20121230 -9606 246122 TTTY7 - CLONE795723|LINC00129|NCRNA00129|TTTY7A|TTTY7B|TTY7 HGNC:18488 Y Yp11.2 testis-specific transcript, Y-linked 7 (non-protein coding) miscRNA TTTY7 testis-specific transcript, Y-linked 7 (non-protein coding) O - 20121230 -9606 246123 ZNF736P3Y - ZNF381P|ZNF736P3|ZNF736PY3 HGNC:37728 Y Yq11.223 zinc finger protein 736 pseudogene 3, Y-linked pseudo ZNF736P3Y zinc finger protein 736 pseudogene 3, Y-linked O - 20121209 -9606 246126 TXLNG2P hCG_1987333 CYorf15A|CYorf15B HGNC:18473|MIM:400031|HPRD:10618 Y Yq11.222 taxilin gamma 2, pseudogene pseudo TXLNG2P taxilin gamma 2, pseudogene O - 20121230 -9606 246132 HCHOLA4 - - HGNC:18573 16 16q22.1 hypercholesterolemia, autosomal dominant 4 unknown HCHOLA4 hypercholesterolemia, autosomal dominant 4 O - 20110305 -9606 246135 TAF9BP1 - - HGNC:30687 3 3p24.2 TAF9B RNA polymerase II, TATA box binding protein (TBP)-associated factor, 31kDa pseudogene 1 pseudo TAF9BP1 TAF9B RNA polymerase II, TATA box binding protein (TBP)-associated factor, 31kDa pseudogene 1 O - 20121230 -9606 246175 CNOT6L - CCR4b HGNC:18042|Ensembl:ENSG00000138767|HPRD:10841|Vega:OTTHUMG00000160832 4 4q13.3 CCR4-NOT transcription complex, subunit 6-like protein-coding CNOT6L CCR4-NOT transcription complex, subunit 6-like O CCR4-NOT transcription complex subunit 6-like|carbon catabolite repressor protein 4 homolog B 20121230 -9606 246176 GAS2L2 - GAR17 HGNC:24846|MIM:611398|Ensembl:ENSG00000132139|HPRD:11000|Vega:OTTHUMG00000132953 17 17q12 growth arrest-specific 2 like 2 protein-coding GAS2L2 growth arrest-specific 2 like 2 O GAS2-like protein 2|GAS2-related protein on chromosome 17 20121230 -9606 246181 AKR7L - AFAR3|AFB1-AR3|AKR7A4 HGNC:24056|MIM:608478|HPRD:12240 1 1p36.13|1p35-p36.1 aldo-keto reductase family 7-like pseudo AKR7L aldo-keto reductase family 7-like O - 20121230 -9606 246182 AKR7A2P1 - AFARP1 HGNC:24062 1 1p12 aldo-keto reductase family 7, member A2 pseudogene 1 pseudo AKR7A2P1 aldo-keto reductase family 7, member A2 pseudogene 1 O - 20121230 -9606 246184 CDC26 - ANAPC12|APC12|C9orf17 HGNC:17839|MIM:614533|Ensembl:ENSG00000176386|HPRD:13012|Vega:OTTHUMG00000020521 9 9q32 cell division cycle 26 homolog (S. cerevisiae) protein-coding CDC26 cell division cycle 26 homolog (S. cerevisiae) O CDC26 subunit of anaphase promoting complex|anaphase-promoting complex subunit 12|anaphase-promoting complex subunit CDC26|cell division cycle protein 26 homolog 20121230 -9606 246210 IKBKGP1 - IKBKGP|deltaNEMO HGNC:24455 X Xq28 inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase gamma pseudogene 1 pseudo IKBKGP1 inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase gamma pseudogene 1 O - 20121230 -9606 246213 SLC17A8 - DFNA25|VGLUT3 HGNC:20151|MIM:607557|Ensembl:ENSG00000179520|HPRD:10457|Vega:OTTHUMG00000170358 12 12q23.1 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 8 protein-coding SLC17A8 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 8 O solute carrier family 17 member 8|vesicular glutamate transporter 3 20121230 -9606 246230 CMAL - - MIM:163000 5 5q13-q22 Capillary malformations, hereditary unknown - - - - 20120622 -9606 246243 RNASEH1 - H1RNA|RNH1 HGNC:18466|MIM:604123|Ensembl:ENSG00000171865|HPRD:04989|Vega:OTTHUMG00000090279 2 2p25 ribonuclease H1 protein-coding RNASEH1 ribonuclease H1 O RNase H1|ribonuclease H type II 20121230 -9606 246259 BMND3 - - MIM:606928 1 1p36 Bone mineral density variability 3 unknown - - - - 20120622 -9606 246260 BDA1B - - MIM:607004 5 5p13.3-p13.2 Brachydactyly, type A1, locus B unknown - - - - 20120622 -9606 246269 LACE1 RP3-479O19.1 AFG1 HGNC:16411|Ensembl:ENSG00000135537|HPRD:11223|Vega:OTTHUMG00000015324 6 6q22.1 lactation elevated 1 protein-coding LACE1 lactation elevated 1 O ATPase family gene 1 homolog|CG8520 gene product|lactation elevated protein 1|protein AFG1 homolog 20121230 -9606 246283 TRBV22OR9-2 - TCRBV22S2|TCRBV29S2O HGNC:18740|IMGT/GENE-DB:TRBV22/OR9-2 9 9p21 T cell receptor beta variable 22/OR9-2 (pseudogene) pseudo TRBV22OR9-2 T cell receptor beta variable 22/OR9-2 (pseudogene) O - 20121230 -9606 246285 TRBV26OR9-2 - TCRBV26S2|TCRBV28S2|TCRBV28S2O HGNC:15485|IMGT/GENE-DB:TRBV26/OR9-2 9 9p21 T cell receptor beta variable 26/OR9-2 (pseudogene) pseudo TRBV26OR9-2 T cell receptor beta variable 26/OR9-2 (pseudogene) O - 20121230 -9606 246286 TRBVAOR9-2 - TCRBV33S2|TRBVA/OR9-2 HGNC:18741|IMGT/GENE-DB:TRBVA/OR9-2 9 9p21 T cell receptor beta variable A/OR9-2 (pseudogene) pseudo TRBVAOR9-2 T cell receptor beta variable A/OR9-2 (pseudogene) O - 20121230 -9606 246287 DFNA45 - - HGNC:18691 - - deafness, autosomal dominant 45 unknown DFNA45 deafness, autosomal dominant 45 O - 20110215 -9606 246288 DFNA46 - - HGNC:18692 - - deafness, autosomal dominant 46 unknown DFNA46 deafness, autosomal dominant 46 O - 20110215 -9606 246289 DFNA47 - DFNB83 HGNC:18693|MIM:608652 9 9p22-p21 deafness, autosomal dominant 47 unknown DFNA47 deafness, autosomal dominant 47 O - 20120622 -9606 246312 C21orf91-OT1 - D21S2089E|NCRNA00285 HGNC:16729 21 21q21.1 C21orf91 overlapping transcript 1 (non-protein coding) miscRNA C21orf91-OT1 C21orf91 overlapping transcript 1 (non-protein coding) O - 20121230 -9606 246318 FLJ13773 - - - 17 - uncharacterized LOC246318 protein-coding - - - - 20121018 -9606 246319 VTLG - - MIM:193200 6 6p21.3 Vitiligo unknown - - - - 20120622 -9606 246321 HSCRS2 - - MIM:606874 3 3p21 Hirschsprung disease, short-segment, 2 unknown - - - - 20120622 -9606 246322 HSCRS3 - - MIM:606875 19 19q12 Hirschsprung disease, short-segment, 3 unknown - - - - 20120622 -9606 246329 STAC3 - - HGNC:28423|Ensembl:ENSG00000185482|HPRD:11606|Vega:OTTHUMG00000171271 12 12q13.3 SH3 and cysteine rich domain 3 protein-coding STAC3 SH3 and cysteine rich domain 3 O SH3 and cysteine-rich domain-containing protein 3 20121230 -9606 246330 PELI3 - - HGNC:30010|MIM:609827|Ensembl:ENSG00000174516|HPRD:17535|Vega:OTTHUMG00000167109 11 11q13.2 pellino E3 ubiquitin protein ligase family member 3 protein-coding PELI3 pellino E3 ubiquitin protein ligase family member 3 O E3 ubiquitin-protein ligase pellino homolog 3|pellino homolog 3|protein pellino homolog 3 20121230 -9606 246704 LINC00315 - C21orf93|NCRNA00315 HGNC:16621|HPRD:10777 21 21q22.3 long intergenic non-protein coding RNA 315 miscRNA LINC00315 long intergenic non-protein coding RNA 315 O - 20121230 -9606 246705 LINC00314 - C21orf94|NCRNA00314 HGNC:16622|HPRD:10778 21 21q21.3 long intergenic non-protein coding RNA 314 miscRNA LINC00314 long intergenic non-protein coding RNA 314 O - 20121230 -9606 246714 CKS1BP2 - bA192N10.2 HGNC:24232 10 10q11.1 CDC28 protein kinase regulatory subunit 1B pseudogene 2 pseudo CKS1BP2 CDC28 protein kinase regulatory subunit 1B pseudogene 2 O - 20121230 -9606 246715 CKS1BP3 - - HGNC:24233 5 5q12.2 CDC28 protein kinase regulatory subunit 1B pseudogene 3 pseudo CKS1BP3 CDC28 protein kinase regulatory subunit 1B pseudogene 3 O - 20121230 -9606 246716 YWHAQP2 - - HGNC:23211 22 22q13.2 YWHAQ pseudogene 2 pseudo YWHAQP2 YWHAQ pseudogene 2 O - 20121230 -9606 246717 TCEB2P1 - - HGNC:39719 13 13q12 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) pseudogene 1 pseudo TCEB2P1 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) pseudogene 1 O - 20121230 -9606 246719 UBE2SP1 - - HGNC:30864 17 17p11.2 ubiquitin-conjugating enzyme E2S pseudogene 1 pseudo UBE2SP1 ubiquitin-conjugating enzyme E2S pseudogene 1 O - 20121230 -9606 246720 DYNLL1P1 - DNCL1P1 HGNC:20723 14 14q31.1 dynein, light chain, LC8-type 1 pseudogene 1 pseudo DYNLL1P1 dynein, light chain, LC8-type 1 pseudogene 1 O - 20121230 -9606 246721 POLR2J2 - HRPB11B|RPB11b1 HGNC:23208|MIM:609881|Ensembl:ENSG00000228049|Ensembl:ENSG00000267645|HPRD:17878|Vega:OTTHUMG00000180801 7 7q22.1 polymerase (RNA) II (DNA directed) polypeptide J2 protein-coding POLR2J2 polymerase (RNA) II (DNA directed) polypeptide J2 O DNA directed RNA polymerase II polypeptide J-related|DNA-directed RNA polymerase II subunit J2|DNA-directed RNA polymerase II subunit RPB11-b1|RNA polymerase II subunit B11-b1 20121230 -9606 246723 LOC246723 - - - 12 12q14 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit d pseudogene pseudo - - - - 20121230 -9606 246724 LOC246724 - - - 7 7p15 DNA directed RNA polymerase II polypeptide J-related gene protein-coding - - - - 20100404 -9606 246725 LOC246725 - - - 7 7q11.2 DNA directed RNA polymerase II polypeptide J-related gene protein-coding - - - - 20100404 -9606 246731 PPIHP1 - - HGNC:31355 11 11q23 peptidylprolyl isomerase H (cyclophilin H) pseudogene 1 pseudo PPIHP1 peptidylprolyl isomerase H (cyclophilin H) pseudogene 1 O - 20121230 -9606 246734 NPCDR1 - NPCDRG|NPCR HGNC:13392 3 3p21.1 nasopharyngeal carcinoma, down-regulated 1 unknown NPCDR1 nasopharyngeal carcinoma, down-regulated 1 O - 20121230 -9606 246737 YWHAZP4 - - HGNC:30851 6 6q23.1 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 4 pseudo YWHAZP4 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 4 O - 20121230 -9606 246744 STH - MAPTIT HGNC:18839|MIM:607067|Ensembl:ENSG00000256762|HPRD:06142|Vega:OTTHUMG00000168633 17 17q21.1 saitohin protein-coding STH saitohin O microtubule-associated protein tau (MAPT) intronic transcript 20121230 -9606 246750 MYAS1 - - MIM:607085 6 6p21.3 Myasthenia gravis with thymus hyperplasia unknown - - - - 20120622 -9606 246751 SMAR - - MIM:607088 11 11q13 Spinal muscular atrophy, chronic distal, autosomal recessive unknown - - - - 20120622 -9606 246754 MTVR2 - - - 17 17q23 mouse mammary tumor virus receptor homolog 2 pseudo - - - - 20121230 -9606 246777 SPESP1 UNQ732/PRO1418 ESP|SP-ESP HGNC:15570|MIM:609399|Ensembl:ENSG00000258484|HPRD:15436|Vega:OTTHUMG00000133321 15 15q23 sperm equatorial segment protein 1 protein-coding SPESP1 sperm equatorial segment protein 1 O equatorial segment protein|glycosylated 38 kDa sperm protein C-7/8 20121230 -9606 246778 IL27 - IL-27|IL-27A|IL27A|IL27p28|IL30|p28 HGNC:19157|MIM:608273|Ensembl:ENSG00000197272|HPRD:16307|Vega:OTTHUMG00000097023 16 16p11 interleukin 27 protein-coding IL27 interleukin 27 O IL-27 p28 subunit|IL-27 subunit alpha|IL-27-A|IL27-A|interleukin 30|interleukin-27 subunit alpha 20121230 -9606 246784 LOC246784 - - - 1 1q21.3 homolog of C. elegans smu-1 pseudogene pseudo - - - - 20121230 -9606 246785 LOC246785 - - - 22 22q13.2 Obg-like ATPase 1 pseudogene pseudo - - - - 20121230 -9606 252839 TMEM9 RP5-894H24.1 TMEM9A HGNC:18823|Ensembl:ENSG00000116857|HPRD:15542|Vega:OTTHUMG00000035831 1 - transmembrane protein 9 protein-coding TMEM9 transmembrane protein 9 O dermal papilla-derived protein 4 20121230 -9606 252840 SRP68P2 - SRPSMCR HGNC:30426 17 17p11.1 signal recognition particle 68kDa pseudogene 2 pseudo SRP68P2 signal recognition particle 68kDa pseudogene 2 O - 20121230 -9606 252841 SRP68P1 - SRPSMCR HGNC:30427 17 17p11.2 signal recognition particle 68kDa pseudogene 1 pseudo SRP68P1 signal recognition particle 68kDa pseudogene 1 O - 20121230 -9606 252842 AAT1 - FAA1 MIM:607086 11 11q23.3-q24 Aortic aneurysm, familial thoracic 1 unknown - - - - 20120622 -9606 252843 AAT2 - FAA2 MIM:607087 5 5q13-q14 Aortic aneurysm, familial thoracic 2 unknown - - - - 20120622 -9606 252862 LOC252862 - - - 7 7q31.1 CDC26 subunit of anaphase promoting complex-related gene protein-coding - - - - 20100404 -9606 252884 ZNF396 - ZSCAN14 HGNC:18824|MIM:609600|Ensembl:ENSG00000186496|HPRD:18334|Vega:OTTHUMG00000132562 18 18q12 zinc finger protein 396 protein-coding ZNF396 zinc finger protein 396 O zinc finger and SCAN domain-containing protein 14 20121230 -9606 252946 FAM197Y2 - CYorf16|FAM197Y2P HGNC:18848 Y Yp11.2 family with sequence similarity 197, Y-linked, member 2, pseudogene pseudo FAM197Y2 family with sequence similarity 197, Y-linked, member 2 O - 20121209 -9606 252948 TTTY16 - NCRNA00139 HGNC:18840 Y Yp11.2 testis-specific transcript, Y-linked 16 (non-protein coding) miscRNA TTTY16 testis-specific transcript, Y-linked 16 (non-protein coding) O - 20121209 -9606 252949 TTTY17A - NCRNA00140|TTTY17 HGNC:18841|MIM:400040 Y Yq11.2 testis-specific transcript, Y-linked 17A (non-protein coding) miscRNA TTTY17A testis-specific transcript, Y-linked 17A (non-protein coding) O - 20121209 -9606 252950 TTTY18 - NCRNA00143 HGNC:18842 Y Yp11.2 testis-specific transcript, Y-linked 18 (non-protein coding) miscRNA TTTY18 testis-specific transcript, Y-linked 18 (non-protein coding) O - 20121230 -9606 252951 TTTY20 - NCRNA00145 HGNC:18844 Y Yp11.2 testis-specific transcript, Y-linked 20 (non-protein coding) miscRNA TTTY20 testis-specific transcript, Y-linked 20 (non-protein coding) O - 20121209 -9606 252952 TTTY19 - NCRNA00144 HGNC:18843 Y Yp11.2 testis-specific transcript, Y-linked 19 (non-protein coding) miscRNA TTTY19 testis-specific transcript, Y-linked 19 (non-protein coding) O - 20121230 -9606 252953 TTTY21 - NCRNA00146 HGNC:18845 Y Yp11.2 testis-specific transcript, Y-linked 21 (non-protein coding) miscRNA TTTY21 testis-specific transcript, Y-linked 21 (non-protein coding) O - 20121209 -9606 252954 TTTY22 - NCRNA00147 HGNC:18846 Y Yp11.2 testis-specific transcript, Y-linked 22 (non-protein coding) miscRNA TTTY22 testis-specific transcript, Y-linked 22 (non-protein coding) O - 20121209 -9606 252955 TTTY23 - NCRNA00148 HGNC:18847 Y Yp11.2 testis-specific transcript, Y-linked 23 (non-protein coding) miscRNA TTTY23 testis-specific transcript, Y-linked 23 (non-protein coding) O - 20121230 -9606 252956 TPM3P1 - TPM3L2 HGNC:16350 7 7q31.3 tropomyosin 3 pseudogene 1 pseudo TPM3P1 tropomyosin 3 pseudogene 1 O - 20121230 -9606 252968 LOC252968 - - - 17 17p11.2 karyopherin (importin) beta 2 pseudogene pseudo - - - - 20121230 -9606 252969 NEIL2 - NEH2|NEI2 HGNC:18956|MIM:608933|Ensembl:ENSG00000154328|HPRD:16406|Vega:OTTHUMG00000090753 8 8p23.1 nei endonuclease VIII-like 2 (E. coli) protein-coding NEIL2 nei endonuclease VIII-like 2 (E. coli) O DNA glycosylase/AP lyase Neil2|DNA-(apurinic or apyrimidinic site) lyase Neil2|endonuclease 8-like 2|endonuclease VIII-like 2|nei homolog 2|nei like 2|nei-like protein 2 20121230 -9606 252983 STXBP4 - Synip HGNC:19694|MIM:610415|Ensembl:ENSG00000166263|HPRD:18127|Vega:OTTHUMG00000074043 17 17q22 syntaxin binding protein 4 protein-coding STXBP4 syntaxin binding protein 4 O STX4-interacting protein|syntaxin 4 interacting protein|syntaxin 4-interacting protein|syntaxin-binding protein 4 20121230 -9606 252995 FNDC5 - FRCP2 HGNC:20240|MIM:611906|Ensembl:ENSG00000160097|HPRD:17009|Vega:OTTHUMG00000004015 1 1p35.1 fibronectin type III domain containing 5 protein-coding FNDC5 fibronectin type III domain containing 5 O fibronectin type III domain-containing protein 5|fibronectin type III repeat-containing protein 2|irisin 20121230 -9606 253012 HEPACAM2 UNQ305/PRO346 MIKI HGNC:27364|MIM:614133|Ensembl:ENSG00000188175|HPRD:14138|Vega:OTTHUMG00000131732 7 7q21.3 HEPACAM family member 2 protein-coding HEPACAM2 HEPACAM family member 2 O mitotic kinetics regulator 20121230 -9606 253013 RPL31P8 - RPL31_8_567 HGNC:31324 5 5q12.1 ribosomal protein L31 pseudogene 8 pseudo RPL31P8 ribosomal protein L31 pseudogene 8 O - 20121230 -9606 253017 TECRL - GPSN2L|SRD5A2L2|TERL HGNC:27365|Ensembl:ENSG00000205678|HPRD:18104|Vega:OTTHUMG00000160680 4 4q13.1 trans-2,3-enoyl-CoA reductase-like protein-coding TECRL trans-2,3-enoyl-CoA reductase-like O glycoprotein, synaptic 2-like|steroid 5 alpha-reductase 2-like 2|steroid 5-alpha-reductase 2-like 2 protein 20121230 -9606 253018 HCG27 - bCX101P6.9|bPG299F13.9|bQB115I13.2 HGNC:27366|HPRD:13637 6 6p21.33 HLA complex group 27 (non-protein coding) miscRNA HCG27 HLA complex group 27 (non-protein coding) O - 20121230 -9606 253039 LOC253039 - - - 9 9q33.2 uncharacterized LOC253039 miscRNA - - - - 20121230 -9606 253044 LOC253044 - - - 15 15q24.1 uncharacterized LOC253044 miscRNA - - - - 20121230 -9606 253128 LINC00612 - C12orf33 HGNC:28621 12 12p13.31 long intergenic non-protein coding RNA 612 miscRNA LINC00612 long intergenic non-protein coding RNA 612 O - 20121230 -9606 253143 PRR14L RP4-694E4.2 C22orf30 HGNC:28738|Ensembl:ENSG00000183530|HPRD:14665|Vega:OTTHUMG00000030139 22 22q12.2 proline rich 14-like protein-coding PRR14L proline rich 14-like O proline rich 14-like protein|protein PRR14L 20121230 -9606 253152 EPHX4 - ABHD7|EPHXRP HGNC:23758|Ensembl:ENSG00000172031|HPRD:12408|Vega:OTTHUMG00000010114 1 1p22.1 epoxide hydrolase 4 protein-coding EPHX4 epoxide hydrolase 4 O abhydrolase domain containing 7|abhydrolase domain-containing protein 7|epoxide hydrolase-related protein 20121230 -9606 253175 CDY1B - CDY HGNC:23920|Ensembl:ENSG00000172352|HPRD:16702|Vega:OTTHUMG00000045037 Y Yq11.223 chromodomain protein, Y-linked, 1B protein-coding CDY1B chromodomain protein, Y-linked, 1B O chromodomain protein, Y chromosome, 1, centromeric|testis-specific chromodomain protein Y 1|testis-specific chromodomain protein on Y, centromeric 20121230 -9606 253190 SERHL2 RP1-222E13.11-003 dJ222E13.1 HGNC:29446|Ensembl:ENSG00000183569|HPRD:15908|Vega:OTTHUMG00000150892 22 22q13 serine hydrolase-like 2 protein-coding SERHL2 serine hydrolase-like 2 O serine hydrolase-like protein 2 20121230 -9606 253260 RICTOR - PIA|mAVO3 HGNC:28611|MIM:609022|Ensembl:ENSG00000164327|HPRD:10682|Vega:OTTHUMG00000162037 5 5p13.1 RPTOR independent companion of MTOR, complex 2 protein-coding RICTOR RPTOR independent companion of MTOR, complex 2 O AVO3 homolog|TORC2-specific protein AVO3|hAVO3|pianissimo|rapamycin-insensitive companion of mTOR 20121230 -9606 253264 ZNF503-AS1 - - HGNC:27370 10 10q22.2 ZNF503 antisense RNA 1 miscRNA ZNF503-AS1 ZNF503 antisense RNA 1 O - 20121230 -9606 253272 PCGF7P - RNF134P1 HGNC:30341 19 19p12 polycomb group ring finger 7 pseudogene pseudo PCGF7P polycomb group ring finger 7 pseudogene O - 20121230 -9606 253314 EIF4E1B - - HGNC:33179|Ensembl:ENSG00000175766|Vega:OTTHUMG00000163227 5 5q35.2 eukaryotic translation initiation factor 4E family member 1B protein-coding EIF4E1B eukaryotic translation initiation factor 4E family member 1B O eukaryotic translation initiation factor 4E type 1B 20121230 -9606 253430 IPMK - - HGNC:20739|MIM:609851|Ensembl:ENSG00000151151|HPRD:17153|Vega:OTTHUMG00000018268 10 10q21.1 inositol polyphosphate multikinase protein-coding IPMK inositol polyphosphate multikinase O inositol 1,3,4,6-tetrakisphosphate 5-kinase 20121230 -9606 253461 ZBTB38 - CIBZ|ZNF921 HGNC:26636|MIM:612218|Ensembl:ENSG00000177311|Vega:OTTHUMG00000160128 3 3q23 zinc finger and BTB domain containing 38 protein-coding ZBTB38 zinc finger and BTB domain containing 38 O zinc finger and BTB domain-containing protein 38 20121230 -9606 253512 SLC25A30 - KMCP1 HGNC:27371|MIM:610793|Ensembl:ENSG00000174032|HPRD:18056|Vega:OTTHUMG00000016853 13 13q14.13 solute carrier family 25, member 30 protein-coding SLC25A30 solute carrier family 25, member 30 O kidney mitochondrial carrier protein 1|kidney mitochondrial carrier protein-1 20121230 -9606 253558 LCLAT1 UNQ1849/PRO3579 1AGPAT8|AGPAT8|ALCAT1|HSRG1849|LYCAT|UNQ1849 HGNC:26756|MIM:614241|Ensembl:ENSG00000172954|HPRD:17458|Vega:OTTHUMG00000099349 2 2p23.1 lysocardiolipin acyltransferase 1 protein-coding LCLAT1 lysocardiolipin acyltransferase 1 O 1-AGP acyltransferase 8|1-AGPAT 8|1-acylglycerol-3-phosphate O-acyltransferase 8|acyl-CoA:lysocardiolipin acyltransferase 1 20121230 -9606 253559 CADM2 - IGSF4D|NECL3|Necl-3|SynCAM 2|synCAM2 HGNC:29849|MIM:609938|Ensembl:ENSG00000175161|HPRD:11046|Vega:OTTHUMG00000158990 3 3p12.1 cell adhesion molecule 2 protein-coding CADM2 cell adhesion molecule 2 O immunoglobulin superfamily member 4D|immunoglobulin superfamily, member 4D|nectin-like 3|nectin-like protein 3|synaptic cell adhesion molecule 2 20121230 -9606 253573 LOC253573 - - - 3 3q27.3 uncharacterized LOC253573 miscRNA - - - - 20121230 -9606 253582 TMEM244 - C6orf191|bA174C7.4 HGNC:21571|Ensembl:ENSG00000203756|HPRD:16663|Vega:OTTHUMG00000015553 6 6q22.33 transmembrane protein 244 protein-coding TMEM244 transmembrane protein 244 O putative transmembrane protein C6orf191 20121230 -9606 253635 CCDC75 - CENP-Y|CENPY|GPATCH11 HGNC:26768|Ensembl:ENSG00000152133|HPRD:08785|Vega:OTTHUMG00000128469 2 2p22.2 coiled-coil domain containing 75 protein-coding CCDC75 coiled-coil domain containing 75 O G patch domain containing 11|centromere protein Y|coiled-coil domain-containing protein 75|g patch domain-containing protein 11 20121230 -9606 253639 ZNF620 - - HGNC:28742|Ensembl:ENSG00000177842|HPRD:15878|Vega:OTTHUMG00000156044 3 3p22.1 zinc finger protein 620 protein-coding ZNF620 zinc finger protein 620 O - 20121230 -9606 253650 ANKRD18A - - HGNC:23643|Ensembl:ENSG00000180071|HPRD:13419|Vega:OTTHUMG00000019950 9 9p13.1 ankyrin repeat domain 18A protein-coding ANKRD18A ankyrin repeat domain 18A O ankyrin repeat domain-containing protein 18A 20121230 -9606 253665 TCEB2P2 - - HGNC:39720 11 11q24.3 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) pseudogene 2 pseudo TCEB2P2 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) pseudogene 2 O - 20121230 -9606 253714 MMS22L - C6orf167|dJ39B17.2 HGNC:21475|Ensembl:ENSG00000146263|HPRD:12865|Vega:OTTHUMG00000015248 6 6q16.1 MMS22-like, DNA repair protein protein-coding MMS22L MMS22-like, DNA repair protein O protein MMS22-like 20121230 -9606 253724 GNN - - - 12 12q23.3 Grp94 neighboring nucleotidase pseudogene pseudo - - - - 20121230 -9606 253725 FAM21C RP11-175I17.5 FAM21A|VPEF HGNC:23414|MIM:613631|Ensembl:ENSG00000172661|HPRD:11094|Vega:OTTHUMG00000018089 10 10q11.1 family with sequence similarity 21, member C protein-coding FAM21C family with sequence similarity 21, member C O WASH complex subunit FAM21C|vaccinia virus penetration factor 20121230 -9606 253738 EBF3 RP11-234G16.3 COE3|EBF-3|O/E-2|OE-2 HGNC:19087|MIM:607407|Ensembl:ENSG00000108001|HPRD:16818|Vega:OTTHUMG00000019265 10 10q26.3 early B-cell factor 3 protein-coding EBF3 early B-cell factor 3 O olf-1/EBF-like 2|transcription factor COE3 20121230 -9606 253769 WDR27 - - HGNC:21248|Ensembl:ENSG00000184465|HPRD:11352|Vega:OTTHUMG00000016061 6 6q27 WD repeat domain 27 protein-coding WDR27 WD repeat domain 27 O WD repeat-containing protein 27 20121230 -9606 253782 CERS6 - CERS5|LASS6 HGNC:23826|Ensembl:ENSG00000172292|HPRD:17258|Vega:OTTHUMG00000132183 2 2q24.3 ceramide synthase 6 protein-coding CERS6 ceramide synthase 6 O LAG1 homolog, ceramide synthase 6|longevity assurance homolog 6 20121230 -9606 253805 LOC253805 - - - 11 11q25 uncharacterized LOC253805 unknown - - - - 20120508 -9606 253827 MSRB3 UNQ1965/PRO4487 DFNB74 HGNC:27375|MIM:613719|Ensembl:ENSG00000174099|HPRD:14785|Vega:OTTHUMG00000168866 12 12q14.3 methionine sulfoxide reductase B3 protein-coding MSRB3 methionine sulfoxide reductase B3 O methionine-R-sulfoxide reductase B3|methionine-R-sulfoxide reductase B3, mitochondrial 20121230 -9606 253832 ZDHHC20 - - HGNC:20749|Ensembl:ENSG00000180776|HPRD:08078|Vega:OTTHUMG00000017410 13 13q12.11 zinc finger, DHHC-type containing 20 protein-coding ZDHHC20 zinc finger, DHHC-type containing 20 O 4933421L13Rik|DHHC-20|DHHC-containing protein 20|probable palmitoyltransferase ZDHHC20|zinc finger DHHC domain-containing protein 20|zinc finger, DHHC domain containing 20 20121230 -9606 253842 LOC253842 - - - 9 9q34.11 uncharacterized LOC253842 protein-coding - - - - 20120508 -9606 253868 C20orf166-AS1 - C20orf200|NCRNA00335 HGNC:26393|HPRD:08083 20 20q13.33 C20orf166 antisense RNA 1 miscRNA C20orf166-AS1 C20orf166 antisense RNA 1 O - 20121230 -9606 253933 OR7E39P - OR7E138P|hg611 HGNC:8412 7 7p22.1 olfactory receptor, family 7, subfamily E, member 39 pseudogene pseudo OR7E39P olfactory receptor, family 7, subfamily E, member 39 pseudogene O - 20121230 -9606 253935 ANGPTL5 UNQ5795/PRO19600 - HGNC:19705|MIM:607666|Ensembl:ENSG00000187151|HPRD:09638|Vega:OTTHUMG00000167318 11 11q22.1 angiopoietin-like 5 protein-coding ANGPTL5 angiopoietin-like 5 O angiopoietin-like protein 5|angiopoietin-related protein 5 20121230 -9606 253943 YTHDF3 - - HGNC:26465|HPRD:08106 8 8q12.3 YTH domain family, member 3 protein-coding YTHDF3 YTH domain family, member 3 O YTH domain family 3|YTH domain family protein 3 20121230 -9606 253959 RALGAPA1 - GARNL1|GRIPE|TULIP1 HGNC:17770|MIM:608884|Ensembl:ENSG00000174373|HPRD:12324|Vega:OTTHUMG00000170619 14 14q13.2 Ral GTPase activating protein, alpha subunit 1 (catalytic) protein-coding RALGAPA1 Ral GTPase activating protein, alpha subunit 1 (catalytic) O GAP-related interacting protein to E12|GAP-related-interacting partner to E12|GTPase activating RANGAP domain-like 1|GTPase activating Rap/RanGAP domain-like 1|GTPase-activating Rap/Ran-GAP domain-like 1|RalGAPalpha1|p240|ral GTPase-activating protein alpha subunit 1|ral GTPase-activating protein subunit alpha-1|tuberin-like protein 1 20121230 -9606 253962 CACNA1G-AS1 - - HGNC:27377 17 17q21.33 CACNA1G antisense RNA 1 miscRNA CACNA1G-AS1 CACNA1G antisense RNA 1 O - 20121230 -9606 253970 SFTA3 hCG_2013488 SFTPH HGNC:18387|Ensembl:ENSG00000229415|Vega:OTTHUMG00000170540 14 14q13.3 surfactant associated 3 protein-coding SFTA3 surfactant associated 3 O putative protein SFTA3|surfactant associated protein H|surfactant-associated protein 3|surfactant-associated protein H 20121230 -9606 253980 KCTD13 FKSG86 PDIP1|POLDIP1|hBACURD1 HGNC:22234|MIM:608947|Ensembl:ENSG00000174943|HPRD:12339|Vega:OTTHUMG00000132120 16 16p11.2 potassium channel tetramerisation domain containing 13 protein-coding KCTD13 potassium channel tetramerisation domain containing 13 O BTB/POZ domain-containing adapter for CUL3-mediated RhoA degradation protein 1|BTB/POZ domain-containing protein KCTD13|TNFAIP1-like protein|polymerase delta-interacting protein 1 20121230 -9606 253982 ASPHD1 - - HGNC:27380|Ensembl:ENSG00000174939|HPRD:14139|Vega:OTTHUMG00000132121 16 16p11.2 aspartate beta-hydroxylase domain containing 1 protein-coding ASPHD1 aspartate beta-hydroxylase domain containing 1 O aspartate beta-hydroxylase domain-containing protein 1 20121230 -9606 253986 RPL10AP2 - RPL10A_5_900 HGNC:31081 8 8q11.1 ribosomal protein L10a pseudogene 2 pseudo RPL10AP2 ribosomal protein L10a pseudogene 2 O - 20121230 -9606 254013 METTL20 - C12orf72 HGNC:28739|Ensembl:ENSG00000139160|HPRD:14666|Vega:OTTHUMG00000169085 12 12p11.21 methyltransferase like 20 protein-coding METTL20 methyltransferase like 20 O methyltransferase-like protein 20 20121230 -9606 254028 LOC254028 - - - 14 14q11.2 uncharacterized LOC254028 unknown - - - - 20120710 -9606 254042 METAP1D - MAP1D|Metap1l HGNC:32583|MIM:610267|Ensembl:ENSG00000172878|HPRD:17462|Vega:OTTHUMG00000132283 2 2q31.1 methionyl aminopeptidase type 1D (mitochondrial) protein-coding METAP1D methionyl aminopeptidase type 1D (mitochondrial) O CDS of metAP-3 within PCR fragment|methionine aminopeptidase 1D, mitochondrial|methionyl aminopeptidase type 1D, mitochondrial 20121230 -9606 254048 UBN2 tcag7.1228 - HGNC:21931|MIM:613841|Ensembl:ENSG00000157741|Vega:OTTHUMG00000157623 7 7q34 ubinuclein 2 protein-coding UBN2 ubinuclein 2 O ubinuclein-2 20121230 -9606 254050 LRRC43 - - HGNC:28562|Ensembl:ENSG00000158113|HPRD:14601|Vega:OTTHUMG00000168915 12 12q24.31 leucine rich repeat containing 43 protein-coding LRRC43 leucine rich repeat containing 43 O leucine-rich repeat-containing protein 43 20121230 -9606 254057 LOC254057 - - - 3 3q21.3 uncharacterized LOC254057 protein-coding - - - - 20120508 -9606 254065 BRWD3 RP11-325E14.4 BRODL|MRX93 HGNC:17342|MIM:300553|Ensembl:ENSG00000165288|HPRD:06564|Vega:OTTHUMG00000021908 X Xq21.1 bromodomain and WD repeat domain containing 3 protein-coding BRWD3 bromodomain and WD repeat domain containing 3 O bromo domain-containing protein disrupted in leukemia|bromodomain and WD repeat-containing protein 3|novel WD repeat domain protein 20121230 -9606 254099 LOC254099 - - - 1 1p36.33 uncharacterized LOC254099 miscRNA - - - - 20121230 -9606 254100 LOC254100 - - - 11 11q13.1 uncharacterized LOC254100 miscRNA - - - - 20121230 -9606 254102 EHBP1L1 - - HGNC:30682|Ensembl:ENSG00000173442|Vega:OTTHUMG00000166520 11 11q13.1 EH domain binding protein 1-like 1 protein-coding EHBP1L1 EH domain binding protein 1-like 1 O EH domain-binding protein 1-like protein 1|tangerin 20121230 -9606 254122 SNX32 - SNX6B HGNC:26423|Ensembl:ENSG00000172803|HPRD:08090|Vega:OTTHUMG00000128491 11 11q13.1 sorting nexin 32 protein-coding SNX32 sorting nexin 32 O sorting nexin 6B|sorting nexin-32|sorting nexin-6B 20121230 -9606 254128 LOC254128 - - - 2 2q14.2 uncharacterized LOC254128 miscRNA - - - - 20121230 -9606 254158 CXorf58 - - HGNC:26356|Ensembl:ENSG00000165182|HPRD:06544|Vega:OTTHUMG00000021258 X Xp22.11 chromosome X open reading frame 58 protein-coding CXorf58 chromosome X open reading frame 58 O putative uncharacterized protein CXorf58 20121230 -9606 254170 FBXO33 - BMND12|Fbx33|c14_5247 HGNC:19833|MIM:609103|Ensembl:ENSG00000165355|HPRD:16441|Vega:OTTHUMG00000140257 14 14q21.1 F-box protein 33 protein-coding FBXO33 F-box protein 33 O F-box only protein 33 20121230 -9606 254173 TTLL10 RP5-902P8.1 TTLL5 HGNC:26693|Ensembl:ENSG00000162571|HPRD:08771|Vega:OTTHUMG00000000851 1 1p36.33 tubulin tyrosine ligase-like family, member 10 protein-coding TTLL10 tubulin tyrosine ligase-like family, member 10 O inactive polyglycylase TTLL10|tubulin tyrosine ligase-like family, member 5|tubulin--tyrosine ligase-like protein 10 20121230 -9606 254187 TSGA10IP - FAM161C HGNC:26555|HPRD:08147 11 11q13.1 testis specific, 10 interacting protein protein-coding TSGA10IP testis specific, 10 interacting protein O testis-specific protein 10-interacting protein|tsga10-interacting protein 20121230 -9606 254225 RNF169 - - HGNC:26961|Ensembl:ENSG00000166439|Vega:OTTHUMG00000165516 11 11q13.4 ring finger protein 169 protein-coding RNF169 ring finger protein 169 O E3 ubiquitin-protein ligase RNF169 20121230 -9606 254228 FAM26E RP3-493F7.3 C6orf188|dJ493F7.3 HGNC:21568|Ensembl:ENSG00000178033|HPRD:12868|Vega:OTTHUMG00000015442 6 6q22.1 family with sequence similarity 26, member E protein-coding FAM26E family with sequence similarity 26, member E O protein FAM26E 20121230 -9606 254240 BPIFC RP1-149A16.10-011 BPIL2 HGNC:16503|MIM:614109|Ensembl:ENSG00000184459|HPRD:16560|Vega:OTTHUMG00000058273 22 22q12.3 BPI fold containing family C protein-coding BPIFC BPI fold containing family C O BPI fold-containing family C protein|BPI-like 2|bactericidal/permeability-increasing protein-like 2 20121230 -9606 254251 LCORL - MLR1 HGNC:30776|MIM:611799|Ensembl:ENSG00000178177|HPRD:10088|Vega:OTTHUMG00000128538 4 4p15.31 ligand dependent nuclear receptor corepressor-like protein-coding LCORL ligand dependent nuclear receptor corepressor-like O LCOR-like protein|MBLK1-related protein|ligand-dependent nuclear receptor corepressor-like protein|transcription factor MLR1 20121230 -9606 254263 CNIH2 - CNIH-2|Cnil HGNC:28744|MIM:611288|Ensembl:ENSG00000174871|HPRD:13078|Vega:OTTHUMG00000166919 11 11q13.2 cornichon homolog 2 (Drosophila) protein-coding CNIH2 cornichon homolog 2 (Drosophila) O protein cornichon homolog 2 20121230 -9606 254268 AKNAD1 RP11-475E11.3 C1orf62 HGNC:28398|Ensembl:ENSG00000162641|HPRD:11325|Vega:OTTHUMG00000011231 1 1p13.3 AKNA domain containing 1 protein-coding AKNAD1 AKNA domain containing 1 O protein AKNAD1 20121230 -9606 254272 TBC1D28 - - HGNC:26858|Ensembl:ENSG00000189375|Vega:OTTHUMG00000059054 17 17p11.2 TBC1 domain family, member 28 protein-coding TBC1D28 TBC1 domain family, member 28 O TBC1 domain family member 28 20121230 -9606 254295 PHYHD1 RP11-101E3.2 - HGNC:23396|Ensembl:ENSG00000175287|HPRD:17850|Vega:OTTHUMG00000020764 9 9q34.11 phytanoyl-CoA dioxygenase domain containing 1 protein-coding PHYHD1 phytanoyl-CoA dioxygenase domain containing 1 O phytanoyl-CoA dioxygenase domain-containing protein 1 20121230 -9606 254299 LINC00677 - C14orf74 HGNC:20121 14 14q32.33 long intergenic non-protein coding RNA 677 miscRNA LINC00677 long intergenic non-protein coding RNA 677 O - 20121110 -9606 254312 LINC00710 - - HGNC:27386 10 10p14 long intergenic non-protein coding RNA 710 miscRNA LINC00710 long intergenic non-protein coding RNA 710 O - 20121230 -9606 254359 ZDHHC24 UNQ2528/PRO6027 - HGNC:27387|Ensembl:ENSG00000174165|HPRD:17325|Vega:OTTHUMG00000167096 11 11q13.2 zinc finger, DHHC-type containing 24 protein-coding ZDHHC24 zinc finger, DHHC-type containing 24 O DHHC-24|probable palmitoyltransferase ZDHHC24|zinc finger DHHC domain-containing protein 24|zinc finger, DHHC domain containing 24 20121230 -9606 254394 MCM9 RP3-329L24.2 C6orf61|MCMDC1|dJ329L24.1|dJ329L24.3 HGNC:21484|MIM:610098|Ensembl:ENSG00000111877|HPRD:17472|Vega:OTTHUMG00000015468 6 6q22.31 minichromosome maintenance complex component 9 protein-coding MCM9 minichromosome maintenance complex component 9 O DNA helicase MCM9|DNA replication licensing factor MCM9|mini-chromosome maintenance deficient domain-containing protein 1|minichromosome maintenance deficient domain containing 1 20121230 -9606 254398 ARHGAP42P4 - - HGNC:43941 14 14q11.2 Rho GTPase activating protein 42 pseudogene 4 pseudo ARHGAP42P4 Rho GTPase activating protein 42 pseudogene 4 O - 20121230 -9606 254427 PROSER2 - C10orf47 HGNC:23728|Ensembl:ENSG00000148426|HPRD:10697|Vega:OTTHUMG00000017673 10 10p14 proline and serine-rich protein 2 protein-coding PROSER2 proline and serine-rich protein 2 O uncharacterized protein C10orf47 20121230 -9606 254428 SLC41A1 - MgtE HGNC:19429|MIM:610801|Ensembl:ENSG00000133065|HPRD:15388|Vega:OTTHUMG00000036000 1 1q32.1 solute carrier family 41, member 1 protein-coding SLC41A1 solute carrier family 41, member 1 O solute carrier family 41 member 1 20121230 -9606 254439 C11orf86 - - HGNC:34442|Ensembl:ENSG00000173237|Vega:OTTHUMG00000153671 11 11q13.2 chromosome 11 open reading frame 86 protein-coding C11orf86 chromosome 11 open reading frame 86 O uncharacterized protein C11orf86 20121230 -9606 254528 MEIOB AC012180.11-001 C16orf73|gs129 HGNC:28569|Ensembl:ENSG00000162039|HPRD:17530|Vega:OTTHUMG00000128683 16 16p13.3 meiosis specific with OB domains protein-coding MEIOB meiosis specific with OB domains O meiosis-specific with OB domain-containing protein 20121230 -9606 254531 LPCAT4 - AGPAT7|AYTL3|LPAAT-eta|LPEAT2 HGNC:30059|MIM:612039|Ensembl:ENSG00000176454|HPRD:08315|Vega:OTTHUMG00000172349 15 15q14 lysophosphatidylcholine acyltransferase 4 protein-coding LPCAT4 lysophosphatidylcholine acyltransferase 4 O 1-AGP acyltransferase 7|1-AGPAT 7|1-acylglycerol-3-phosphate O-acyltransferase 7 (lysophosphatidic acid acyltransferase, eta)|PLSC domain containing protein|acyl-CoA:lysophosphatidylethanolamine acyltransferase 2|acyltransferase like 3|acyltransferase-like 3|lysophosphatidylethanolamine acyltransferase 2|lysophospholipid acyltransferase LPCAT4 20121230 -9606 254552 NUDT8 - - HGNC:8055|Ensembl:ENSG00000167799|HPRD:17652|Vega:OTTHUMG00000167292 11 11q13.2 nudix (nucleoside diphosphate linked moiety X)-type motif 8 protein-coding NUDT8 nudix (nucleoside diphosphate linked moiety X)-type motif 8 O nucleoside diphosphate-linked moiety X motif 8, mitochondrial|nudix motif 8 20121230 -9606 254559 LOC254559 - - - 15 15q26.1 uncharacterized LOC254559 miscRNA - - - - 20121230 -9606 254664 MAPK6PS2 - - HGNC:16756 21 21q21.1 mitogen-activated protein kinase 6 pseudogene 2 pseudo MAPK6PS2 mitogen-activated protein kinase 6 pseudogene 2 O - 20121230 -9606 254700 USP12PX - USP12P2 HGNC:21410 X Xq21.31 ubiquitin specific peptidase 12 pseudogene, X-linked pseudo USP12PX ubiquitin specific peptidase 12 pseudogene, X-linked O - 20121230 -9606 254773 LYG2 - LYGH HGNC:29615|Ensembl:ENSG00000185674|HPRD:14331|Vega:OTTHUMG00000130643 2 2q11.2 lysozyme G-like 2 protein-coding LYG2 lysozyme G-like 2 O lysozyme g-like protein 2 20121230 -9606 254778 C8orf46 - - HGNC:28498|Ensembl:ENSG00000169085|HPRD:14565|Vega:OTTHUMG00000156998 8 8q13.1 chromosome 8 open reading frame 46 protein-coding C8orf46 chromosome 8 open reading frame 46 O uncharacterized protein C8orf46 20121230 -9606 254783 OR6C74 - - HGNC:31303|Ensembl:ENSG00000197706|HPRD:15060|Vega:OTTHUMG00000165162 12 12q13.2 olfactory receptor, family 6, subfamily C, member 74 protein-coding OR6C74 olfactory receptor, family 6, subfamily C, member 74 O olfactory receptor 6C74 20121230 -9606 254786 OR6C3 - OST709 HGNC:15437|Ensembl:ENSG00000205329|HPRD:15057|Vega:OTTHUMG00000169861 12 12q13.2 olfactory receptor, family 6, subfamily C, member 3 protein-coding OR6C3 olfactory receptor, family 6, subfamily C, member 3 O HSA8|olfactory receptor 6C3 20121230 -9606 254827 NAALADL2 - - HGNC:23219|MIM:608806|Ensembl:ENSG00000177694|HPRD:16388|Vega:OTTHUMG00000157120 3 3q26.31 N-acetylated alpha-linked acidic dipeptidase-like 2 protein-coding NAALADL2 N-acetylated alpha-linked acidic dipeptidase-like 2 O N-acetylated alpha-linked acidic dipeptidase 2|NAALADase L2|glutamate carboxypeptidase II-type non-peptidase homologue|inactive N-acetylated-alpha-linked acidic dipeptidase-like protein 2 20121230 -9606 254863 TMEM256 - C17orf61 HGNC:28618|Ensembl:ENSG00000205544|HPRD:17548|Vega:OTTHUMG00000132900 17 17p13.1 transmembrane protein 256 protein-coding TMEM256 transmembrane protein 256 O UPF0451 protein C17orf61 20121230 -9606 254879 OR2T6 - OR2T6P|OR2T9|OST703 HGNC:15018|Ensembl:ENSG00000198104|HPRD:17711|Vega:OTTHUMG00000040448 1 1q44 olfactory receptor, family 2, subfamily T, member 6 protein-coding OR2T6 olfactory receptor, family 2, subfamily T, member 6 O olfactory receptor 2T6|olfactory receptor 2T9|olfactory receptor, family 2, subfamily T, member 6 pseudogene|seven transmembrane helix receptor 20121230 -9606 254887 ZDHHC23 - NIDD HGNC:28654|Ensembl:ENSG00000184307|HPRD:15717|Vega:OTTHUMG00000159335 3 3q13.31 zinc finger, DHHC-type containing 23 protein-coding ZDHHC23 zinc finger, DHHC-type containing 23 O DHHC-23|probable palmitoyltransferase ZDHHC23|zinc finger DHHC domain-containing protein 23|zinc finger, DHHC domain containing 23 20121230 -9606 254896 LOC254896 - - - 8 8p21.2 uncharacterized LOC254896 miscRNA - - - - 20121230 -9606 254910 LCE5A - LEP18|SPRL5A HGNC:16614|MIM:612619|Ensembl:ENSG00000186207|HPRD:17265|Vega:OTTHUMG00000014401 1 1q21.3 late cornified envelope 5A protein-coding LCE5A late cornified envelope 5A O late cornified envelope protein 5A|late envelope protein 18|small proline rich-like (epidermal differentiation complex) 5A|small proline-rich-like epidermal differentiation complex protein 5A 20121230 -9606 254948 RPL9P8 - RPL9_15_1459 HGNC:30334 15 15q25.2 ribosomal protein L9 pseudogene 8 pseudo RPL9P8 ribosomal protein L9 pseudogene 8 O - 20121230 -9606 254950 KRTAP15-1 - KAP15.1 HGNC:18927|Ensembl:ENSG00000186970|HPRD:11204|Vega:OTTHUMG00000057784 21 21q22.1 keratin associated protein 15-1 protein-coding KRTAP15-1 keratin associated protein 15-1 O keratin-associated protein 15-1 20121230 -9606 254956 MORN5 RP11-498E2.5 C9orf113|C9orf18 HGNC:17841|Ensembl:ENSG00000185681|HPRD:12947|Vega:OTTHUMG00000020599 9 9q33.2 MORN repeat containing 5 protein-coding MORN5 MORN repeat containing 5 O MORN repeat-containing protein 5 20121230 -9606 254958 REXO1L1 - GOR HGNC:24660|Ensembl:ENSG00000205176|HPRD:17049|Vega:OTTHUMG00000164949 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 1 protein-coding REXO1L1 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 1 O GOR antigen|RNA exonuclease 1 homolog-like 1|antigen GOR homolog|exonuclease GOR 20121230 -9606 254973 OR1L4 - OR1L5|OR9-29|OR9-E|OST046 HGNC:8216|Ensembl:ENSG00000136939|HPRD:14922|Vega:OTTHUMG00000020620 9 9q33.2 olfactory receptor, family 1, subfamily L, member 4 protein-coding OR1L4 olfactory receptor, family 1, subfamily L, member 4 O olfactory receptor 1L4|olfactory receptor 1L5|olfactory receptor 9-E|olfactory receptor OR9-29|olfactory receptor, family 1, subfamily L, member 5 20121230 -9606 255022 CALHM1 - FAM26C HGNC:23494|MIM:612234|Ensembl:ENSG00000185933|HPRD:16879|Vega:OTTHUMG00000018991 10 10q24.33 calcium homeostasis modulator 1 protein-coding CALHM1 calcium homeostasis modulator 1 O calcium homeostasis modulator protein 1|family with sequence similarity 26, member C 20121230 -9606 255025 LOC255025 - - - 3 3q11.2 uncharacterized LOC255025 miscRNA - - - - 20121230 -9606 255027 MPV17L - M-LPH|MLPH1|MLPH2|MPV17L1 HGNC:26827|Ensembl:ENSG00000156968|HPRD:08803|Vega:OTTHUMG00000129882 16 16p13.11 MPV17 mitochondrial membrane protein-like protein-coding MPV17L MPV17 mitochondrial membrane protein-like O M-LP homolog|Mpv17-like protein type 1|Mpv17-like protein type 2|mpv17-like protein 20121230 -9606 255031 FLJ35390 - - - 7 7p13 uncharacterized LOC255031 miscRNA - - - - 20121230 -9606 255042 MGC16723 - - - 19 19q13.42 uncharacterized protein MGC16723 protein-coding - - - uncharacterized protein LOC255042 20111025 -9606 255043 TMEM86B - - HGNC:28448|Ensembl:ENSG00000180089|HPRD:14540|Vega:OTTHUMG00000180703 19 19q13.42 transmembrane protein 86B protein-coding TMEM86B transmembrane protein 86B O lysoplasmalogenase 20121230 -9606 255057 C19orf26 - DOS HGNC:28617|Ensembl:ENSG00000099625|HPRD:16627|Vega:OTTHUMG00000180141 19 19p13.3 chromosome 19 open reading frame 26 protein-coding C19orf26 chromosome 19 open reading frame 26 O downstream of Stk11|protein Dos 20121230 -9606 255061 TAC4 - EK|HK-1|HK1|PPT-C HGNC:16641|MIM:607833|Ensembl:ENSG00000176358|HPRD:09701|Vega:OTTHUMG00000161830 17 17q21.33 tachykinin 4 (hemokinin) protein-coding TAC4 tachykinin 4 (hemokinin) O endokinin|preprotachykinin-C|tachykinin-4 20121230 -9606 255082 CASC2 - C10orf5 HGNC:22933|MIM:608598|HPRD:12266 10 10q26.11 cancer susceptibility candidate 2 (non-protein coding) miscRNA CASC2 cancer susceptibility candidate 2 (non-protein coding) O - 20121230 -9606 255101 CCDC108 - - HGNC:25325|MIM:614270|Ensembl:ENSG00000181378|HPRD:13201|HPRD:17534|Vega:OTTHUMG00000133013 2 2q35 coiled-coil domain containing 108 protein-coding CCDC108 coiled-coil domain containing 108 O coiled-coil domain-containing protein 108 20121230 -9606 255104 TMCO4 - RP5-1056L3.6 HGNC:27393|Ensembl:ENSG00000162542|HPRD:14140|Vega:OTTHUMG00000002697 1 1p36.13 transmembrane and coiled-coil domains 4 protein-coding TMCO4 transmembrane and coiled-coil domains 4 O transmembrane and coiled-coil domain-containing protein 4 20121230 -9606 255119 C4orf22 - - HGNC:28554|Ensembl:ENSG00000197826|HPRD:14597|Vega:OTTHUMG00000130289 4 4q21.21 chromosome 4 open reading frame 22 protein-coding C4orf22 chromosome 4 open reading frame 22 O uncharacterized protein C4orf22 20121230 -9606 255130 LOC255130 - - - 4 4q12 uncharacterized LOC255130 miscRNA - - - - 20121230 -9606 255167 LOC255167 - - - 5 5p15.31 uncharacterized LOC255167 miscRNA - - - - 20121230 -9606 255177 LOC255177 - - - 15 15q22.2 uncharacterized LOC255177 unknown - - - - 20120508 -9606 255180 FLJ38723 - - HPRD:08792 15 15q22.2 uncharacterized FLJ38723 miscRNA - - - - 20121230 -9606 255187 LOC255187 hCG_1980447 - - 5 5q33.1 hCG1980447 unknown - - - - 20121230 -9606 255189 PLA2G4F - PLA2G4FZ HGNC:27396|Ensembl:ENSG00000168907|HPRD:17326|Vega:OTTHUMG00000172782 15 15q15.1 phospholipase A2, group IVF protein-coding PLA2G4F phospholipase A2, group IVF O cPLA2-zeta|cytosolic phospholipase A2 zeta 20121230 -9606 255193 CSNK1G2-AS1 - C19orf34 HGNC:28604|HPRD:16630 19 19p13.3 CSNK1G2 antisense RNA 1 miscRNA CSNK1G2-AS1 CSNK1G2 antisense RNA 1 O - 20121230 -9606 255208 LOC255208 - - - 1 1q42.13 tubulin, beta 8 class VIII pseudogene pseudo - - - - 20121230 -9606 255220 TXNDC8 RP11-427L11.2 SPTRX-3|TRX6|bA427L11.2 HGNC:31454|Ensembl:ENSG00000204193|HPRD:18251|Vega:OTTHUMG00000020481 9 9q31.3 thioredoxin domain containing 8 (spermatozoa) protein-coding TXNDC8 thioredoxin domain containing 8 (spermatozoa) O sperm-specific thioredoxin 3|spermatid-specific thioredoxin-3|spermatocyte/spermatid-specific thioredoxin-3|thioredoxin 6|thioredoxin domain-containing protein 8|thioredoxin-6 20121230 -9606 255231 MCOLN2 - TRP-ML2|TRPML2 HGNC:13357|MIM:607399|Ensembl:ENSG00000153898|HPRD:09584|Vega:OTTHUMG00000009954 1 1p22 mucolipin 2 protein-coding MCOLN2 mucolipin 2 O mucolipin-2 20121230 -9606 255239 ANKK1 - PKK2 HGNC:21027|MIM:608774|Ensembl:ENSG00000170209|HPRD:10580|Vega:OTTHUMG00000167715 11 11q23.2 ankyrin repeat and kinase domain containing 1 protein-coding ANKK1 ankyrin repeat and kinase domain containing 1 O X-kinase|ankyrin repeat and protein kinase domain-containing protein 1|protein kinase PKK2|sgK288|sugen kinase 288 20121230 -9606 255252 LRRC57 - - HGNC:26719|Ensembl:ENSG00000180979|HPRD:08212|Vega:OTTHUMG00000130679 15 15q15.2 leucine rich repeat containing 57 protein-coding LRRC57 leucine rich repeat containing 57 O leucine-rich repeat-containing protein 57 20121230 -9606 255275 MYADML2 hCG_1645289 - HGNC:34548|Ensembl:ENSG00000185105|Vega:OTTHUMG00000154388 17 17q25.3 myeloid-associated differentiation marker-like 2 protein-coding MYADML2 myeloid-associated differentiation marker-like 2 O myeloid-associated differentiation marker-like protein 2 20121230 -9606 255308 LOC255308 - - - 12 12p13.2 eukaryotic translation initiation factor 2, subunit 3 gamma, 52kDa pseudogene pseudo - - - - 20121230 -9606 255313 CT47A11 RP6-166C19.11-001 CT47.11 HGNC:27397|MIM:300592|Ensembl:ENSG00000226929|HPRD:06619|Vega:OTTHUMG00000022310 X Xq24 cancer/testis antigen family 47, member A11 protein-coding CT47A11 cancer/testis antigen family 47, member A11 O cancer/testis CT47 family, member 11|cancer/testis antigen 47A 20121212 -9606 255320 SPCS2P - - HGNC:31885 15 15q15.2 signal peptidase complex subunit 2 homolog (S. cerevisiae) pseudogene pseudo SPCS2P signal peptidase complex subunit 2 homolog (S. cerevisiae) pseudogene O - 20090331 -9606 255324 EPGN UNQ3072 ALGV3072|EPG|PRO9904 HGNC:17470|Ensembl:ENSG00000182585|HPRD:10866|Vega:OTTHUMG00000160869 4 4q13.3 epithelial mitogen homolog (mouse) protein-coding EPGN epithelial mitogen homolog (mouse) O epigen 20121230 -9606 255330 NUP210P1 - C3orf46 HGNC:27399 3 3q21.3 nucleoporin 210kDa pseudogene 1 pseudo NUP210P1 nucleoporin 210kDa pseudogene 1 O - 20121230 -9606 255349 TMEM211 - bA9F11.1 HGNC:33725|Ensembl:ENSG00000206069|HPRD:17327|Vega:OTTHUMG00000150790 22 22q11.23 transmembrane protein 211 protein-coding TMEM211 transmembrane protein 211 O - 20121230 -9606 255374 MBLAC1 - - HGNC:22180|Ensembl:ENSG00000214309|HPRD:18584|Vega:OTTHUMG00000154846 7 7q22.1 metallo-beta-lactamase domain containing 1 protein-coding MBLAC1 metallo-beta-lactamase domain containing 1 O metallo-beta-lactamase domain-containing protein 1 20121230 -9606 255394 TCP11L2 - - HGNC:28627|Ensembl:ENSG00000166046|HPRD:17555|Vega:OTTHUMG00000170087 12 12q23.3 t-complex 11, testis-specific-like 2 protein-coding TCP11L2 t-complex 11, testis-specific-like 2 O T-complex protein 11-like protein 2|t-complex 11-like 2 20121230 -9606 255403 ZNF718 - - HGNC:26889|HPRD:08291 4 4p16.3 zinc finger protein 718 protein-coding ZNF718 zinc finger protein 718 O - 20121230 -9606 255411 LOC255411 - - - 12 12q13.12 uncharacterized LOC255411 miscRNA - - - - 20121230 -9606 255426 RASGEF1C - - HGNC:27400|Ensembl:ENSG00000146090|HPRD:15212|Vega:OTTHUMG00000130914 5 5q35.3 RasGEF domain family, member 1C protein-coding RASGEF1C RasGEF domain family, member 1C O ras-GEF domain-containing family member 1C 20121230 -9606 255480 TBX5-AS1 - - HGNC:27402 12 12q24.21 TBX5 antisense RNA 1 miscRNA TBX5-AS1 TBX5 antisense RNA 1 O - 20121230 -9606 255488 RNF144B - IBRDC2|PIR2|bA528A10.3|p53RFP HGNC:21578|Ensembl:ENSG00000137393|HPRD:17126|Vega:OTTHUMG00000014322 6 6p22.3 ring finger protein 144B protein-coding RNF144B ring finger protein 144B O E3 ubiquitin-protein ligase RNF144B|IBR domain containing 2|IBR domain-containing protein 2|p53-inducible RING finger protein 20121230 -9606 255512 LOC255512 - - - 11 11p15.5 uncharacterized LOC255512 miscRNA - - - - 20121230 -9606 255520 ELMOD2 - 9830169G11Rik HGNC:28111|MIM:610196|Ensembl:ENSG00000179387|HPRD:13267|Vega:OTTHUMG00000133417 4 4q31.1 ELMO/CED-12 domain containing 2 protein-coding ELMOD2 ELMO/CED-12 domain containing 2 O ELMO domain containing 2|ELMO domain-containing protein 2 20121230 -9606 255620 UNC93B6 - - HGNC:34053 11 11q13.4 unc-93 homolog B6 (C. elegans) pseudo UNC93B6 unc-93 homolog B6 (C. elegans) O - 20121230 -9606 255626 HIST1H2BA - H2BFU|STBP|TSH2B|bA317E16.3 HGNC:18730|MIM:609904|Ensembl:ENSG00000146047|HPRD:11024|Vega:OTTHUMG00000014408 6 6p22.2 histone cluster 1, H2ba protein-coding HIST1H2BA histone cluster 1, H2ba O H2B histone family, member U, (testis-specific)|histone 1, H2ba|histone H2B type 1-A|histone H2B, testis|testis-specific histone H2B 20121230 -9606 255631 COL24A1 - - HGNC:20821|MIM:610025|Ensembl:ENSG00000171502|HPRD:10846|Vega:OTTHUMG00000010629 1 1p22.3 collagen, type XXIV, alpha 1 protein-coding COL24A1 collagen, type XXIV, alpha 1 O collagen alpha-1(XXIV) chain 20121230 -9606 255649 OOSP1 - - - 11 11q12.1 oocyte-secreted protein 1 homolog protein-coding - - - - 20120511 -9606 255654 LOC255654 - - - 1 1q44 uncharacterized LOC255654 miscRNA - - - - 20121230 -9606 255725 OR52B2 - OR11-70 HGNC:15207|Ensembl:ENSG00000255307|HPRD:15006|Vega:OTTHUMG00000165732 11 11p15.4 olfactory receptor, family 52, subfamily B, member 2 protein-coding OR52B2 olfactory receptor, family 52, subfamily B, member 2 O olfactory receptor 52B2|olfactory receptor OR11-70 20121230 -9606 255738 PCSK9 PSEC0052 FH3|HCHOLA3|LDLCQ1|NARC-1|NARC1|PC9 HGNC:20001|MIM:607786|Ensembl:ENSG00000169174|HPRD:07080|Vega:OTTHUMG00000008136 1 1p32.3 proprotein convertase subtilisin/kexin type 9 protein-coding PCSK9 proprotein convertase subtilisin/kexin type 9 O convertase subtilisin/kexin type 9 preproprotein|neural apoptosis regulated convertase 1|subtilisin/kexin-like protease PC9 20121230 -9606 255743 NPNT UNQ295/PRO334 EGFL6L|POEM HGNC:27405|MIM:610306|Ensembl:ENSG00000168743|HPRD:14141|Vega:OTTHUMG00000161189 4 4q24 nephronectin protein-coding NPNT nephronectin O preosteoblast EGF-like repeat protein with MAM domain 20121230 -9606 255758 TCTEX1D2 - - HGNC:28482|Ensembl:ENSG00000213123|HPRD:14554|Vega:OTTHUMG00000155672 3 3q29 Tctex1 domain containing 2 protein-coding TCTEX1D2 Tctex1 domain containing 2 O tctex1 domain-containing protein 2 20121230 -9606 255762 PDZD9 - C16orf65 HGNC:28740|Ensembl:ENSG00000155714|HPRD:14667|Vega:OTTHUMG00000131586 16 16p12.2 PDZ domain containing 9 protein-coding PDZD9 PDZ domain containing 9 O PDZ domain-containing protein 9|PDZ domain-containing protein C16orf65 20121230 -9606 255783 PRR24 hCG_1820496 - HGNC:27406|Ensembl:ENSG00000257704|Vega:OTTHUMG00000170128 19 19q13.32 proline rich 24 protein-coding PRR24 proline rich 24 O proline-rich protein 24 20121230 -9606 255798 C3orf43 - - HGNC:27407|Ensembl:ENSG00000214097|Vega:OTTHUMG00000155581 3 3q29 chromosome 3 open reading frame 43 protein-coding C3orf43 chromosome 3 open reading frame 43 O uncharacterized protein C3orf43 20121230 -9606 255809 C19orf38 - HIDE1 HGNC:34073|Ensembl:ENSG00000214212|Vega:OTTHUMG00000180697 19 19p13.2 chromosome 19 open reading frame 38 protein-coding C19orf38 chromosome 19 open reading frame 38 O Highly expressed in immature dendritic cell transcript 1|protein HIDE1 20121230 -9606 255812 SDHAP1 - SDHAL1|SDHALP1 HGNC:32455 3 3q29 succinate dehydrogenase complex, subunit A, flavoprotein pseudogene 1 pseudo SDHAP1 succinate dehydrogenase complex, subunit A, flavoprotein pseudogene 1 O - 20121230 -9606 255877 BCL6B - BAZF|ZBTB28|ZNF62 HGNC:1002|MIM:608992|Ensembl:ENSG00000161940|HPRD:16414|Vega:OTTHUMG00000177882 17 17p13.1 B-cell CLL/lymphoma 6, member B protein-coding BCL6B B-cell CLL/lymphoma 6, member B O B-cell CLL/lymphoma 6 member B protein|B-cell CLL/lymphoma 6, member B (zinc finger protein)|bcl6-associated zinc finger protein|zinc finger protein 62 20121230 -9606 255919 CNEP1R1 - C16orf69|NEP1-R1|TMEM188|TMP125 HGNC:26759|Ensembl:ENSG00000205423|HPRD:08784|Vega:OTTHUMG00000173447 16 16q12.1 CTD nuclear envelope phosphatase 1 regulatory subunit 1 protein-coding CNEP1R1 CTD nuclear envelope phosphatase 1 regulatory subunit 1 O nuclear envelope phosphatase 1-regulatory subunit 1|nuclear envelope phosphatase-regulatory subunit 1|transmembrane protein 188 20121230 -9606 255926 ADAM5 - ADAM5P|TMDCII HGNC:212 8 8p11.22 ADAM metallopeptidase domain 5, pseudogene pseudo ADAM5 ADAM metallopeptidase domain 5, pseudogene O - 20121230 -9606 255928 SYT14 - SCAR11|sytXIV HGNC:23143|MIM:610949|Ensembl:ENSG00000143469|HPRD:11617|Vega:OTTHUMG00000036652 1 1q32.2 synaptotagmin XIV protein-coding SYT14 synaptotagmin XIV O synaptotagmin-14 20121230 -9606 255967 PAN3 RP11-179F17.3 - HGNC:29991|Ensembl:ENSG00000152520|HPRD:17818|Vega:OTTHUMG00000016645 13 13q12.2 PAN3 poly(A) specific ribonuclease subunit homolog (S. cerevisiae) protein-coding PAN3 PAN3 poly(A) specific ribonuclease subunit homolog (S. cerevisiae) O PAB-dependent poly(A)-specific ribonuclease subunit 3|PABP-dependent poly(A) nuclease 3|PABP1-dependent poly A-specific ribonuclease subunit PAN3 20121230 -9606 256006 ANKRD31 - - HGNC:26853|Ensembl:ENSG00000145700 5 5q13.3 ankyrin repeat domain 31 protein-coding ANKRD31 ankyrin repeat domain 31 O ankyrin repeat domain-containing protein 31|putative ankyrin repeat domain-containing protein 31 20121230 -9606 256021 LOC256021 - - Ensembl:ENSG00000257242|Vega:OTTHUMG00000170091 12 12q21.33 uncharacterized LOC256021 protein-coding - - - uncharacterized protein LOC256021 20121230 -9606 256051 ZNF549 - - HGNC:26632|Ensembl:ENSG00000121406|HPRD:15833 19 19q13.43 zinc finger protein 549 protein-coding ZNF549 zinc finger protein 549 O - 20121230 -9606 256076 COL6A5 - COL29A1|VWA4 HGNC:26674|MIM:611916|Ensembl:ENSG00000172752|HPRD:08196|Vega:OTTHUMG00000159712 3 3q22.1 collagen, type VI, alpha 5 protein-coding COL6A5 collagen, type VI, alpha 5 O collagen alpha-5(VI) chain|collagen, type XXIX, alpha 1|von Willebrand factor A domain-containing protein 4 20121230 -9606 256085 WRBP1 hCG_1790950 - HGNC:44010 4 4q25 tryptophan rich basic protein pseudogene 1 pseudo WRBP1 tryptophan rich basic protein pseudogene 1 O - 20121230 -9606 256126 SYCE2 - CESC1 HGNC:27411|MIM:611487|Ensembl:ENSG00000161860|Vega:OTTHUMG00000180562 19 19p13.2 synaptonemal complex central element protein 2 protein-coding SYCE2 synaptonemal complex central element protein 2 O - 20121230 -9606 256130 TMEM196 - - HGNC:22431|Ensembl:ENSG00000173452|HPRD:14617|Vega:OTTHUMG00000152504 7 7p21.1 transmembrane protein 196 protein-coding TMEM196 transmembrane protein 196 O - 20121230 -9606 256144 OR4C3 - OR11-98 HGNC:14697|Ensembl:ENSG00000176547|HPRD:17722|Vega:OTTHUMG00000166579 11 11p11.2 olfactory receptor, family 4, subfamily C, member 3 protein-coding OR4C3 olfactory receptor, family 4, subfamily C, member 3 O olfactory receptor 4C3|olfactory receptor OR11-98 20121230 -9606 256148 OR4S1 - OR11-100 HGNC:14705|Ensembl:ENSG00000176555|HPRD:14987|Vega:OTTHUMG00000166578 11 11p11.2 olfactory receptor, family 4, subfamily S, member 1 protein-coding OR4S1 olfactory receptor, family 4, subfamily S, member 1 O olfactory receptor 4S1|olfactory receptor OR11-100 20121230 -9606 256158 HMCN2 - - HGNC:21293 9 9q34.11 hemicentin 2 protein-coding HMCN2 hemicentin 2 O hemicentin-2 20121230 -9606 256190 OR4C50P - - HGNC:31274 11 11p11.12 olfactory receptor, family 4, subfamily C, member 50 pseudogene pseudo OR4C50P olfactory receptor, family 4, subfamily C, member 50 pseudogene O - 20121230 -9606 256223 CDRT15L2 - - HGNC:34075|Ensembl:ENSG00000214819|Vega:OTTHUMG00000059557 17 17p11.2 CMT1A duplicated region transcript 15-like 2 protein-coding CDRT15L2 CMT1A duplicated region transcript 15-like 2 O CMT1A duplicated region transcript 15 protein-like protein 20121230 -9606 256227 STEAP1B - - HGNC:41907|Ensembl:ENSG00000105889|Vega:OTTHUMG00000152529 7 7p15.3 STEAP family member 1B protein-coding STEAP1B STEAP family member 1B O STEAP family protein MGC87042 20121230 -9606 256236 NAPSB - NAP1L|NAP2|NAPB|NAPSBP HGNC:13396 19 19q13.33 napsin B aspartic peptidase, pseudogene pseudo NAPSB napsin B aspartic peptidase, pseudogene O - 20121230 -9606 256281 NUDT14 - UGPP|UGPPase HGNC:20141|MIM:609219|Ensembl:ENSG00000183828|HPRD:14847|Vega:OTTHUMG00000170372 14 14q32.33 nudix (nucleoside diphosphate linked moiety X)-type motif 14 protein-coding NUDT14 nudix (nucleoside diphosphate linked moiety X)-type motif 14 O UDP-sugar diphosphatase|UDPG pyrophosphatase|uridine diphosphate glucose pyrophosphatase 20121230 -9606 256297 PTF1A - PTF1-p48|bHLHa29 HGNC:23734|MIM:607194|Ensembl:ENSG00000168267|HPRD:09526|Vega:OTTHUMG00000017815 10 10p12.2 pancreas specific transcription factor, 1a protein-coding PTF1A pancreas specific transcription factor, 1a O bHLH transcription factor p48|class A basic helix-loop-helix protein 29|class II bHLH protein PTF1A|exocrine pancreas-specific transcription factor p48|p48 DNA-binding subunit of transcription factor PTF1|pancreas transcription factor 1 subunit alpha|pancreas-specific transcription factor 1a 20121230 -9606 256302 C17orf103 - Gtlf3b HGNC:30770|Ensembl:ENSG00000154035|HPRD:17527|Vega:OTTHUMG00000130764 17 17p11.2 chromosome 17 open reading frame 103 protein-coding C17orf103 chromosome 17 open reading frame 103 O gene trap locus F3b|protein GTLF3B|transcript expressed during hematopoiesis 2 20121230 -9606 256309 CCDC110 - CT52|KM-HN-1|KMHN1 HGNC:28504|MIM:609488|Ensembl:ENSG00000168491|HPRD:11335|Vega:OTTHUMG00000160415 4 4q35.1 coiled-coil domain containing 110 protein-coding CCDC110 coiled-coil domain containing 110 O cancer/testis antigen 52|cancer/testis antigen KM-HN-1|coiled-coil domain-containing protein 110 20121230 -9606 256329 C11orf35 - - HGNC:28561|Ensembl:ENSG00000185522|HPRD:14600|Vega:OTTHUMG00000132005 11 11p15.5 chromosome 11 open reading frame 35 protein-coding C11orf35 chromosome 11 open reading frame 35 O uncharacterized protein C11orf35 20121230 -9606 256355 RPS2P32 - RPS2_14_794 HGNC:30518 7 7p15.3 ribosomal protein S2 pseudogene 32 pseudo RPS2P32 ribosomal protein S2 pseudogene 32 O - 20121230 -9606 256356 GK5 - - HGNC:28635|Ensembl:ENSG00000175066|HPRD:14612|Vega:OTTHUMG00000133572 3 3q23 glycerol kinase 5 (putative) protein-coding GK5 glycerol kinase 5 (putative) O ATP:glycerol 3-phosphotransferase 5|GK 5|glycerokinase 5|putative glycerol kinase 5 20121230 -9606 256364 EML3 - ELP95 HGNC:26666|Ensembl:ENSG00000149499|HPRD:08193|Vega:OTTHUMG00000149817 11 11q12.3 echinoderm microtubule associated protein like 3 protein-coding EML3 echinoderm microtubule associated protein like 3 O EMAP-3|echinoderm microtubule-associated protein-like 3 20121230 -9606 256369 LINC00521 - C14orf48|c14_5713 HGNC:19860|HPRD:12651 14 14q32.12 long intergenic non-protein coding RNA 521 miscRNA LINC00521 long intergenic non-protein coding RNA 521 O - 20121230 -9606 256374 LOC256374 - - - 3 3q22.3 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 256380 SCML4 RP1-47M23.1 dJ47M23.1 HGNC:21397|Ensembl:ENSG00000146285|HPRD:10212|Vega:OTTHUMG00000015313 6 6q21 sex comb on midleg-like 4 (Drosophila) protein-coding SCML4 sex comb on midleg-like 4 (Drosophila) O sex comb on midleg-like protein 4 20121230 -9606 256394 SERPINA11 - - HGNC:19193|Ensembl:ENSG00000186910|Vega:OTTHUMG00000171348 14 14q32.13 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 11 protein-coding SERPINA11 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 11 O antiproteinase-like 2|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 11|serpin A11 20121230 -9606 256435 ST6GALNAC3 UNQ2787/PRO7177 PRO7177|SIAT7C|ST6GALNACIII|STY HGNC:19343|MIM:610133|Ensembl:ENSG00000184005|HPRD:15341|Vega:OTTHUMG00000009615 1 1p31.1 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 protein-coding ST6GALNAC3 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 O GalNAc alpha-2,6-sialyltransferase III|SIAT7-C|ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltran|ST6GALNAC III|alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3|alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase III|sialyltransferase 7 ((alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl galactosaminide alpha-2,6-sialyltransferase) C|sialyltransferase 7C 20121230 -9606 256471 MFSD8 - CLN7 HGNC:28486|MIM:611124|Ensembl:ENSG00000164073|HPRD:14557|Vega:OTTHUMG00000133303 4 4q28.2 major facilitator superfamily domain containing 8 protein-coding MFSD8 major facilitator superfamily domain containing 8 O ceroid-lipofuscinosis neuronal protein 7|ceroid-lipofuscinosis, neuronal 7, late infantile|major facilitator superfamily domain-containing protein 8 20121230 -9606 256472 TMEM151A - TMEM151 HGNC:28497|Ensembl:ENSG00000179292|HPRD:14564|Vega:OTTHUMG00000166920 11 11q13.2 transmembrane protein 151A protein-coding TMEM151A transmembrane protein 151A O transmembrane protein 151 20121230 -9606 256536 TCERG1L - - HGNC:23533|Ensembl:ENSG00000176769|HPRD:18170|Vega:OTTHUMG00000019276 10 10q26.3 transcription elongation regulator 1-like protein-coding TCERG1L transcription elongation regulator 1-like O 5730476P14Rik|transcription elongation regulator 1-like protein 20121230 -9606 256586 LYSMD2 - - HGNC:28571|Ensembl:ENSG00000140280|HPRD:17531|Vega:OTTHUMG00000131804 15 15q21.2 LysM, putative peptidoglycan-binding, domain containing 2 protein-coding LYSMD2 LysM, putative peptidoglycan-binding, domain containing 2 O lysM and putative peptidoglycan-binding domain-containing protein 2 20121230 -9606 256643 CXorf23 RP11-24O6.3 - HGNC:27413|Ensembl:ENSG00000173681|HPRD:06620|Vega:OTTHUMG00000021226 X Xp22.12 chromosome X open reading frame 23 protein-coding CXorf23 chromosome X open reading frame 23 O uncharacterized protein CXorf23 20121230 -9606 256646 C15orf55 - FAM22H|NUT HGNC:29919|MIM:608963|Ensembl:ENSG00000184507|HPRD:10606|Vega:OTTHUMG00000172348 15 15q14 chromosome 15 open reading frame 55 protein-coding C15orf55 chromosome 15 open reading frame 55 O nuclear protein in testis|protein NUT 20121230 -9606 256676 LOC256676 - - - 11 11q13.1 uncharacterized LOC256676 unknown - - - - 20120710 -9606 256691 MAMDC2 RP11-373A9.2 - HGNC:23673|MIM:612879|Ensembl:ENSG00000165072|HPRD:14353|Vega:OTTHUMG00000019990 9 9q21.12 MAM domain containing 2 protein-coding MAMDC2 MAM domain containing 2 O MAM domain containing 1|MAM domain-containing protein 2|MAM domain-containing proteoglycan|mamcan 20121230 -9606 256710 GLIPR1L1 UNQ2972/PRO7434 ALKN2972|PRO7434 HGNC:28392|MIM:610395|Ensembl:ENSG00000173401|HPRD:14514|Vega:OTTHUMG00000169755 12 12q21.2 GLI pathogenesis-related 1 like 1 protein-coding GLIPR1L1 GLI pathogenesis-related 1 like 1 O GLIPR1-like protein 1 20121230 -9606 256714 MAP7D2 RP11-393H10.2 - HGNC:25899|Ensembl:ENSG00000184368|HPRD:06525|Vega:OTTHUMG00000021228 X Xp22.12 MAP7 domain containing 2 protein-coding MAP7D2 MAP7 domain containing 2 O MAP7 domain containing 2 protein varaint 1|MAP7 domain containing 2 protein varaint 2|MAP7 domain-containing protein 2 20121230 -9606 256764 WDR72 - AI2A3 HGNC:26790|MIM:613214|Ensembl:ENSG00000166415|HPRD:10987|Vega:OTTHUMG00000131939 15 15q21.3 WD repeat domain 72 protein-coding WDR72 WD repeat domain 72 O WD repeat-containing protein 72 20121230 -9606 256815 C10orf67 RP11-792P23.2 - HGNC:28716|Ensembl:ENSG00000179133|HPRD:12585|Vega:OTTHUMG00000017818 10 10p12.2 chromosome 10 open reading frame 67 protein-coding C10orf67 chromosome 10 open reading frame 67 O uncharacterized protein C10orf67 20121230 -9606 256824 LOC256824 - - - 2 - cryptic gene protein-coding - - - - 20100404 -9606 256880 LOC256880 - - - 4 4q23 uncharacterized LOC256880 miscRNA - - - - 20121230 -9606 256892 OR51F1 - OR11-21|OR51F1P HGNC:15196|Ensembl:ENSG00000188069|HPRD:17737|Vega:OTTHUMG00000066503 11 11p15.4 olfactory receptor, family 51, subfamily F, member 1 protein-coding OR51F1 olfactory receptor, family 51, subfamily F, member 1 O olfactory receptor 51F1|olfactory receptor OR11-21 pseudogene|olfactory receptor, family 51, subfamily F, member 1 pseudogene 20121230 -9606 256933 NPB - L7|PPL7|PPNPB HGNC:30099|MIM:607996|Ensembl:ENSG00000183979|HPRD:16267|Vega:OTTHUMG00000177983 17 17q25.3 neuropeptide B protein-coding NPB neuropeptide B O preproneuropeptide B|preproprotein L7 20121230 -9606 256949 KANK3 - ANKRD47 HGNC:24796|MIM:614611|Ensembl:ENSG00000186994|HPRD:13520 19 19p13.2 KN motif and ankyrin repeat domains 3 protein-coding KANK3 KN motif and ankyrin repeat domains 3 O KN motif and ankyrin repeat domain-containing protein 3|ankyrin repeat domain 47|ankyrin repeat domain-containing protein 47|kidney ankyrin repeat-containing protein 3 20121230 -9606 256957 C17orf66 - - HGNC:26548|Ensembl:ENSG00000172653|HPRD:08142|Vega:OTTHUMG00000132950 17 17q12 chromosome 17 open reading frame 66 protein-coding C17orf66 chromosome 17 open reading frame 66 O uncharacterized protein C17orf66 20121230 -9606 256979 SUN3 tcag7.707 SUNC1 HGNC:22429|Ensembl:ENSG00000164744|HPRD:15451|Vega:OTTHUMG00000155646 7 7p12.3 Sad1 and UNC84 domain containing 3 protein-coding SUN3 Sad1 and UNC84 domain containing 3 O SUN domain-containing protein 3|Sad1 and UNC84 domain containing 1|hypothetical protein MGC33329|sad1/unc-84 domain-containing protein 1 20121230 -9606 256987 SERINC5 - C5orf12|TPO1 HGNC:18825|MIM:614551|Ensembl:ENSG00000164300|HPRD:12828|Vega:OTTHUMG00000162563 5 5q14.1 serine incorporator 5 protein-coding SERINC5 serine incorporator 5 O - 20121230 -9606 257000 TINCR PP10933 LINC00036|NCRNA00036|PLAC2 HGNC:14607|HPRD:17859 19 19p13.3 tissue differentiation-inducing non-protein coding RNA miscRNA TINCR tissue differentiation-inducing non-protein coding RNA O - 20121230 -9606 257019 FRMD3 RP11-439K3.2 4.1O|EPB41L4O|EPB41LO|P410 HGNC:24125|MIM:607619|Ensembl:ENSG00000172159|HPRD:07402|Vega:OTTHUMG00000020103 9 9q21.32 FERM domain containing 3 protein-coding FRMD3 FERM domain containing 3 O FERM domain-containing protein 3|band 4.1-like protein 4|band 4.1-like protein 4O|ovary type protein 4.1|protein 4.1O 20121230 -9606 257044 C1orf101 - RP11-523K4.1 HGNC:28491|Ensembl:ENSG00000179397|HPRD:14561|Vega:OTTHUMG00000040103 1 1q44 chromosome 1 open reading frame 101 protein-coding C1orf101 chromosome 1 open reading frame 101 O uncharacterized protein C1orf101 20121230 -9606 257062 CATSPERD - TMEM146 HGNC:28598|Ensembl:ENSG00000174898|HPRD:17541|Vega:OTTHUMG00000143036 19 19p13.3 catsper channel auxiliary subunit delta protein-coding CATSPERD catsper channel auxiliary subunit delta O catSper-delta|catSperdelta|cation channel sperm-associated protein subunit delta|transmembrane protein 146 20121230 -9606 257068 PLCXD2 - - HGNC:26462|Ensembl:ENSG00000240891|HPRD:07114|Vega:OTTHUMG00000159279 3 3q13.2 phosphatidylinositol-specific phospholipase C, X domain containing 2 protein-coding PLCXD2 phosphatidylinositol-specific phospholipase C, X domain containing 2 O PI-PLC X domain-containing protein 2 20121230 -9606 257093 PSME2P1 - PSME2P HGNC:20632 5 5q21 proteasome activator subunit 2 pseudogene 1 pseudo PSME2P1 proteasome activator subunit 2 pseudogene 1 O - 20121230 -9606 257101 ZNF683 RP11-569G9.6 - HGNC:28495|Ensembl:ENSG00000176083|HPRD:14563|Vega:OTTHUMG00000003521 1 1p36.11 zinc finger protein 683 protein-coding ZNF683 zinc finger protein 683 O hypothetical protein MGC33414 20121230 -9606 257103 LINC00205 - C21orf86|NCRNA00205 HGNC:16420|HPRD:10771 21 21q22.3 long intergenic non-protein coding RNA 205 unknown LINC00205 long intergenic non-protein coding RNA 205 O - 20121021 -9606 257106 ARHGAP30 RP11-544M22.6 - HGNC:27414|MIM:614264|Ensembl:ENSG00000186517|HPRD:11250|Vega:OTTHUMG00000031477 1 1q23.3 Rho GTPase activating protein 30 protein-coding ARHGAP30 Rho GTPase activating protein 30 O rho GTPase-activating protein 30|rho-type GTPase-activating protein 30 20121230 -9606 257144 GCSAM - GCAT2|GCET2|HGAL HGNC:20253|MIM:607792|Ensembl:ENSG00000174500|HPRD:09695|Vega:OTTHUMG00000159231 3 3q13.2 germinal center-associated, signaling and motility protein-coding GCSAM germinal center-associated, signaling and motility O germinal center B-cell-expressed transcript 2 protein|germinal center expressed transcript 2|germinal center-associated lymphoma protein|germinal center-associated signaling and motility protein|human germinal center-associated lymphoma 20121230 -9606 257152 LOC257152 - - - 8 8q22.3 uncharacterized LOC257152 protein-coding - - - - 20120508 -9606 257160 RNF214 - - HGNC:25335|Ensembl:ENSG00000167257|HPRD:16815|Vega:OTTHUMG00000167069 11 11q23.3 ring finger protein 214 protein-coding RNF214 ring finger protein 214 O RING finger protein 214 20121230 -9606 257169 C9orf43 - - HGNC:23570|Ensembl:ENSG00000157653|HPRD:12959|Vega:OTTHUMG00000020526 9 9q32 chromosome 9 open reading frame 43 protein-coding C9orf43 chromosome 9 open reading frame 43 O uncharacterized protein C9orf43 20121230 -9606 257177 C1orf192 RP11-122G18.4 - HGNC:32325|Ensembl:ENSG00000188931|HPRD:13257|Vega:OTTHUMG00000034462 1 1q23.3 chromosome 1 open reading frame 192 protein-coding C1orf192 chromosome 1 open reading frame 192 O UPF0740 protein C1orf192 20121230 -9606 257194 NEGR1 UNQ2433 DMML2433|IGLON4|KILON|Ntra HGNC:17302|MIM:613173|Ensembl:ENSG00000172260|HPRD:14820|Vega:OTTHUMG00000009698 1 1p31.1 neuronal growth regulator 1 protein-coding NEGR1 neuronal growth regulator 1 O IgLON family member 4|a kindred of IgLON|neurotractin 20121230 -9606 257202 GPX6 - GPX5p|GPXP3|GPx-6|GSHPx-6|dJ1186N24|dJ1186N24.1 HGNC:4558|MIM:607913|Ensembl:ENSG00000198704|HPRD:12132|Vega:OTTHUMG00000044828 6 6p22.1 glutathione peroxidase 6 (olfactory) protein-coding GPX6 glutathione peroxidase 6 (olfactory) O glutathione peroxidase 6|glutathione peroxidase pseudogene 3 20121230 -9606 257203 DSCR9 - NCRNA00038 HGNC:16301|HPRD:10925 21 21q22.13 Down syndrome critical region gene 9 (non-protein coding) miscRNA DSCR9 Down syndrome critical region gene 9 (non-protein coding) O - 20121230 -9606 257218 SHPRH RP11-545I5.1 bA545I5.2 HGNC:19336|MIM:608048|Ensembl:ENSG00000146414|HPRD:10476|Vega:OTTHUMG00000015750 6 6q24.3 SNF2 histone linker PHD RING helicase, E3 ubiquitin protein ligase protein-coding SHPRH SNF2 histone linker PHD RING helicase, E3 ubiquitin protein ligase O 2610103K11Rik|E3 ubiquitin-protein ligase SHPRH|SNF2, histone-linker, PHD and RING finger domain-containing helicase 20121230 -9606 257236 CCDC96 - - HGNC:26900|Ensembl:ENSG00000173013|HPRD:08297|Vega:OTTHUMG00000125511 4 4p16.1 coiled-coil domain containing 96 protein-coding CCDC96 coiled-coil domain containing 96 O coiled-coil domain-containing protein 96 20121230 -9606 257240 KLHL34 RP11-450P7.3 - HGNC:26634|Ensembl:ENSG00000185915|HPRD:06558|Vega:OTTHUMG00000021234 X Xp22.12 kelch-like 34 (Drosophila) protein-coding KLHL34 kelch-like 34 (Drosophila) O kelch-like protein 34 20121230 -9606 257313 UTS2D - U2B|URP HGNC:30894|Ensembl:ENSG00000188958|HPRD:15630|Vega:OTTHUMG00000156192 3 3q28 urotensin 2 domain containing protein-coding UTS2D urotensin 2 domain containing O U-IIB|UIIB|urotensin II-related peptide|urotensin IIB|urotensin-2 domain-containing protein|urotensin-2B 20121230 -9606 257357 BRWD1-IT2 - C21orf87|NCRNA00257 HGNC:16423 21 21q22.2 BRWD1 intronic transcript 2 (non-protein coding) miscRNA BRWD1-IT2 BRWD1 intronic transcript 2 (non-protein coding) O - 20121230 -9606 257358 LOC257358 - - - 5 5q35.1 uncharacterized LOC257358 miscRNA - - - - 20121230 -9606 257364 SNX33 - SH3PX3|SH3PXD3C|SNX30 HGNC:28468|Ensembl:ENSG00000173548|HPRD:11331|Vega:OTTHUMG00000142835 15 15q24.2 sorting nexin 33 protein-coding SNX33 sorting nexin 33 O SH3 and PX domain containing 3|SH3 and PX domain-containing protein 3|sorting nexin-33 20121230 -9606 257396 LOC257396 - - - 5 5q11.2 uncharacterized LOC257396 miscRNA - - - - 20121230 -9606 257397 TAB3 - MAP3K7IP3|NAP1 HGNC:30681|MIM:300480|Ensembl:ENSG00000157625|HPRD:06738|Vega:OTTHUMG00000021329 X Xp21.2 TGF-beta activated kinase 1/MAP3K7 binding protein 3 protein-coding TAB3 TGF-beta activated kinase 1/MAP3K7 binding protein 3 O NF-kappa-B-activating protein 1|NFkB activating protein 1|TAB-3|TAK1-binding protein 3|TGF-beta-activated kinase 1 and MAP3K7-binding protein 3|TGF-beta-activated kinase 1-binding protein 3|mitogen-activated protein kinase kinase kinase 7 interacting protein 3 20121230 -9606 257407 C2orf72 - - HGNC:27418|Ensembl:ENSG00000204128|Vega:OTTHUMG00000153996 2 2q37.1 chromosome 2 open reading frame 72 protein-coding C2orf72 chromosome 2 open reading frame 72 O uncharacterized protein C2orf72 20121230 -9606 257415 FAM133B - - HGNC:28629|Ensembl:ENSG00000234545|HPRD:17557|Vega:OTTHUMG00000155863 7 7q21.2 family with sequence similarity 133, member B protein-coding FAM133B family with sequence similarity 133, member B O protein FAM133B 20121230 -9606 257468 MEIS3P2 - - HGNC:17638 17 17p11.2 Meis homeobox 3 pseudogene 2 pseudo MEIS3P2 Meis homeobox 3 pseudogene 2 O - 20121230 -9606 257629 ANKS4B - HARP HGNC:26795|MIM:609901|Ensembl:ENSG00000175311|HPRD:08794|Vega:OTTHUMG00000177371 16 16p12.2 ankyrin repeat and sterile alpha motif domain containing 4B protein-coding ANKS4B ankyrin repeat and sterile alpha motif domain containing 4B O ankyrin repeat and SAM domain-containing protein 4B|harmonin-interacting ankyrin repeat-containing protein|harmonin-interacting ankyrin-repeat containing protein 20121230 -9606 257641 NPCA1 - NPC1 MIM:607107 4 4p15.1-q12 Nasopharyngeal carcinoma 1 unknown - - - - 20121212 -9606 258010 SVIP - - HGNC:25238|Ensembl:ENSG00000198168|Vega:OTTHUMG00000166072 11 11p14.2 small VCP/p97-interacting protein protein-coding SVIP small VCP/p97-interacting protein O - 20121230 -9606 259173 ALS2CL - RN49018 HGNC:20605|MIM:612402|Ensembl:ENSG00000178038|HPRD:10643|Vega:OTTHUMG00000128673 3 3p21.31 ALS2 C-terminal like protein-coding ALS2CL ALS2 C-terminal like O ALS2 C-terminal-like protein 20121230 -9606 259197 NCR3 DAAP-90L16.3 1C7|CD337|LY117|MALS|NKp30 HGNC:19077|MIM:611550|Ensembl:ENSG00000204475|HPRD:11384|Vega:OTTHUMG00000031123 6 6p21.3 natural cytotoxicity triggering receptor 3 protein-coding NCR3 natural cytotoxicity triggering receptor 3 O NK-p30|activating NK-A1 receptor|activating natural killer receptor p30|lymphocyte antigen 117|natural killer cell p30-related protein 20121230 -9606 259215 LY6G6F DADB-127H9.8 C6orf21|G6f|LY6G6D|NG32 HGNC:13933|MIM:611404|Ensembl:ENSG00000204424|HPRD:12878|Vega:OTTHUMG00000031252 6 6p21 lymphocyte antigen 6 complex, locus G6F protein-coding LY6G6F lymphocyte antigen 6 complex, locus G6F O lymphocyte antigen 6 complex locus protein G6f|lymphocyte antigen 6 complex, locus G6D 20121230 -9606 259217 HSPA12A - - HGNC:19022|MIM:610701|Ensembl:ENSG00000165868|Vega:OTTHUMG00000019107 10 10q26.12 heat shock 70kDa protein 12A protein-coding HSPA12A heat shock 70kDa protein 12A O heat shock 70 kDa protein 12A|heat shock 70kD protein 12A 20121230 -9606 259230 SGMS1 - MOB|MOB1|SMS1|TMEM23|hmob33 HGNC:29799|MIM:611573|Ensembl:ENSG00000198964|HPRD:18203|Vega:OTTHUMG00000018231 10 10q11.2 sphingomyelin synthase 1 protein-coding SGMS1 sphingomyelin synthase 1 O medulla oblongata-derived protein|phosphatidylcholine:ceramide cholinephosphotransferase 1|protein Mob|transmembrane protein 23 20121230 -9606 259232 NALCN - CanIon|VGCNL1|bA430M15.1 HGNC:19082|MIM:611549|Ensembl:ENSG00000102452|HPRD:15647|Vega:OTTHUMG00000017295 13 13q32.3 sodium leak channel, non-selective protein-coding NALCN sodium leak channel, non-selective O four repeat voltage-gated ion channel|sodium leak channel non-selective protein|voltage gated channel like 1|voltage gated channel-like protein 1 20121230 -9606 259234 DSCR10 - - HGNC:16302|HPRD:10922 21 21q22.13 Down syndrome critical region gene 10 (non-protein coding) miscRNA DSCR10 Down syndrome critical region gene 10 (non-protein coding) O - 20121230 -9606 259236 TMIE - DFNB6 HGNC:30800|MIM:607237|Ensembl:ENSG00000181585|HPRD:06252|Vega:OTTHUMG00000149909 3 3p21 transmembrane inner ear protein-coding TMIE transmembrane inner ear O transmembrane inner ear expressed protein|transmembrane inner ear protein 20121230 -9606 259239 WFDC11 - WAP11 HGNC:20478|Ensembl:ENSG00000180083|HPRD:15673|Vega:OTTHUMG00000046330 20 20q13.12 WAP four-disulfide core domain 11 protein-coding WFDC11 WAP four-disulfide core domain 11 O protease inhibitor WAP11|protein WFDC11 20121230 -9606 259240 WFDC9 - WAP9|dJ688G8.2 HGNC:20380|Ensembl:ENSG00000180205|HPRD:15678|Vega:OTTHUMG00000046332 20 20q13.12 WAP four-disulfide core domain 9 protein-coding WFDC9 WAP four-disulfide core domain 9 O protein WFDC9 20121230 -9606 259249 MRGPRX1 - GPCR|MRGX1|SNSR4 HGNC:17962|MIM:607227|Ensembl:ENSG00000170255|HPRD:06246|Vega:OTTHUMG00000162655 11 11p15.1|11 MAS-related GPR, member X1 protein-coding MRGPRX1 MAS-related GPR, member X1 O G protein-coupled receptor MRGX1|G protein-coupled receptor SNSR3|mas-related G-protein coupled receptor member X1|sensory neuron-specific G-protein coupled receptor 3/4 20121230 -9606 259265 bA255A11.4 - - - 9 9p13.3 melanoma antigen pseudogene pseudo - - - - 20121230 -9606 259266 ASPM RP11-32D17.1 ASP|Calmbp1|MCPH5 HGNC:19048|MIM:605481|Ensembl:ENSG00000066279|HPRD:08384|Vega:OTTHUMG00000036277 1 1q31 asp (abnormal spindle) homolog, microcephaly associated (Drosophila) protein-coding ASPM asp (abnormal spindle) homolog, microcephaly associated (Drosophila) O abnormal spindle-like microcephaly-associated protein 20121230 -9606 259282 BOD1L1 - BOD1L|FAM44A HGNC:31792|Ensembl:ENSG00000038219|HPRD:08156|Vega:OTTHUMG00000090659 4 4p16.1 biorientation of chromosomes in cell division 1-like 1 protein-coding BOD1L1 biorientation of chromosomes in cell division 1-like 1 O biorientation of chromosomes in cell division protein 1-like 1|family with sequence similarity 44, member A 20121230 -9606 259283 MDS2 RP11-223J15.1 - HGNC:29633|MIM:607305 1 1p36 myelodysplastic syndrome 2 translocation associated miscRNA MDS2 myelodysplastic syndrome 2 translocation associated O - 20121230 -9606 259285 TAS2R39 - T2R39|T2R57 HGNC:18886|Ensembl:ENSG00000236398|HPRD:18149|Vega:OTTHUMG00000152636 7 7q34 taste receptor, type 2, member 39 protein-coding TAS2R39 taste receptor, type 2, member 39 O taste receptor type 2 member 39|taste receptor type 2 member 57 20121230 -9606 259286 TAS2R40 - GPR60|T2R40|T2R58 HGNC:18885|MIM:613964|Ensembl:ENSG00000221937|HPRD:18150|Vega:OTTHUMG00000152638 7 7q34 taste receptor, type 2, member 40 protein-coding TAS2R40 taste receptor, type 2, member 40 O G protein-coupled receptor 60|G-protein coupled receptor 60|taste receptor type 2 member 40|taste receptor type 2 member 58 20121230 -9606 259287 TAS2R41 - T2R41|T2R59 HGNC:18883|MIM:613965|Ensembl:ENSG00000221855|HPRD:18151|Vega:OTTHUMG00000155892 7 7q35 taste receptor, type 2, member 41 protein-coding TAS2R41 taste receptor, type 2, member 41 O taste receptor type 2 member 41|taste receptor type 2 member 59 20121230 -9606 259289 TAS2R43 - T2R43|T2R52 HGNC:18875|MIM:612668|Ensembl:ENSG00000255374|HPRD:18152|Vega:OTTHUMG00000165352 12 12p13.2 taste receptor, type 2, member 43 protein-coding TAS2R43 taste receptor, type 2, member 43 O taste receptor type 2 member 43|taste receptor type 2 member 52 20121230 -9606 259290 TAS2R31 - T2R31|T2R44|T2R53|TAS2R44 HGNC:19113|MIM:612669|Ensembl:ENSG00000256436|HPRD:18153|Vega:OTTHUMG00000168558 12 12p13.2 taste receptor, type 2, member 31 protein-coding TAS2R31 taste receptor, type 2, member 31 O taste receptor type 2 member 31|taste receptor type 2 member 44|taste receptor type 2 member 53|taste receptor, type 2, member 44 20121230 -9606 259291 TAS2R45 - GPR59|T2R45|ZG24P HGNC:18876|MIM:613967|HPRD:18154 12 - taste receptor, type 2, member 45 protein-coding TAS2R45 taste receptor, type 2, member 45 O G protein-coupled receptor 59|G-protein coupled receptor 59|taste receptor type 2 member 45 20121230 -9606 259292 TAS2R46 - T2R46|T2R54 HGNC:18877|MIM:612774|Ensembl:ENSG00000226761|HPRD:18155|Vega:OTTHUMG00000165351 12 12p13.2 taste receptor, type 2, member 46 protein-coding TAS2R46 taste receptor, type 2, member 46 O taste receptor type 2 member 46|taste receptor type 2 member 54 20121230 -9606 259293 TAS2R30 - T2R30|T2R47|TAS2R47 HGNC:19112|MIM:613963|Ensembl:ENSG00000256188|Vega:OTTHUMG00000168562 12 12p13.2 taste receptor, type 2, member 30 protein-coding TAS2R30 taste receptor, type 2, member 30 O taste receptor T2R47|taste receptor type 2 member 30|taste receptor type 2 member 47|taste receptor, type 2, member 47|type 2 taste receptor member 30|type 2 taste receptor member 47 20121230 -9606 259294 TAS2R19 - MSTP058|T2R19|T2R23|T2R48|TAS2R23|TAS2R48 HGNC:19108|MIM:613961|Ensembl:ENSG00000212124|HPRD:18156|Vega:OTTHUMG00000162687 12 12p13.2 taste receptor, type 2, member 19 protein-coding TAS2R19 taste receptor, type 2, member 19 O taste receptor type 2 member 19|taste receptor type 2 member 23|taste receptor type 2 member 48|taste receptor, type 2, member 23|taste receptor, type 2, member 48 20121230 -9606 259295 TAS2R20 - T2R20|T2R49|T2R56|TAS2R49 HGNC:19109|MIM:613962|Ensembl:ENSG00000255837|HPRD:18157|Vega:OTTHUMG00000162695 12 12p13.2 taste receptor, type 2, member 20 protein-coding TAS2R20 taste receptor, type 2, member 20 O taste receptor type 2 member 20|taste receptor type 2 member 49|taste receptor type 2 member 56|taste receptor, type 2, member 49 20121230 -9606 259296 TAS2R50 - T2R50|T2R51|TAS2R51 HGNC:18882|MIM:609627|Ensembl:ENSG00000212126|HPRD:18158|Vega:OTTHUMG00000162719 12 12p13.2 taste receptor, type 2, member 50 protein-coding TAS2R50 taste receptor, type 2, member 50 O taste receptor type 2 member 50|taste receptor type 2 member 51 20121230 -9606 259307 IL4I1 UNQ636/PRO1265 FIG1|LAAO|LAO HGNC:19094|MIM:609742|Ensembl:ENSG00000104951|HPRD:17146 19 19q13.3-q13.4 interleukin 4 induced 1 protein-coding IL4I1 interleukin 4 induced 1 O Fig-1 protein|IL4-induced protein 1|L-amino-acid oxidase|interleukin four induced 1 20121230 -9606 259308 FAM205A - C9orf144B HGNC:41911|Ensembl:ENSG00000205108|Vega:OTTHUMG00000000448 9 9p12 family with sequence similarity 205, member A protein-coding FAM205A family with sequence similarity 205, member A O protein FAM205A|transmembrane protein C9orf144B 20121230 -9606 260293 CYP4X1 RP11-184J23.1 CYPIVX1 HGNC:20244|MIM:614999|Ensembl:ENSG00000186377|HPRD:13110|Vega:OTTHUMG00000008017 1 1p33|1 cytochrome P450, family 4, subfamily X, polypeptide 1 protein-coding CYP4X1 cytochrome P450, family 4, subfamily X, polypeptide 1 O cytochrome P450 4X1 20121230 -9606 260294 NSUN5P2 - NOL1R2|NSUN5C|WBSCR20B|WBSCR20C HGNC:16609|HPRD:15657 7 7q11.23 NOP2/Sun domain family, member 5 pseudogene 2 pseudo NSUN5P2 NOP2/Sun domain family, member 5 pseudogene 2 O - 20121230 -9606 260328 ALRH - - MIM:607154 - - Allergic rhinitis unknown - - - - 20110215 -9606 260330 ALPPP - - HGNC:14016 2 2q37.1 alkaline phosphatase, pseudogene pseudo ALPPP alkaline phosphatase, pseudogene O - 20090331 -9606 260331 ECEL1P1 - - HGNC:14017 2 2q37.1 endothelin converting enzyme-like 1, pseudogene 1 pseudo ECEL1P1 endothelin converting enzyme-like 1, pseudogene 1 O - 20090331 -9606 260332 ECEL1P3 - - HGNC:14018 2 2q37.1 endothelin converting enzyme-like 1, pseudogene 3 pseudo ECEL1P3 endothelin converting enzyme-like 1, pseudogene 3 O - 20121230 -9606 260334 LOC260334 - - - 18 18p11 HSA18p11 beta-tubulin 4Q pseudogene pseudo - - - - 20121230 -9606 260335 ELF2P2 - - HGNC:24610 6 6p25.3 E74-like factor 2 pseudogene 2 pseudo ELF2P2 E74-like factor 2 pseudogene 2 O - 20121230 -9606 260336 ELF2P3 - - HGNC:24611 9 9q21 E74-like factor 2 pseudogene 3 pseudo ELF2P3 E74-like factor 2 pseudogene 3 O - 20121230 -9606 260337 UHRF2P1 - - HGNC:39565 X Xq13.2 ubiquitin-like with PHD and ring finger domains 2 pseudogene 1 pseudo UHRF2P1 ubiquitin-like with PHD and ring finger domains 2 pseudogene 1 O - 20121230 -9606 260338 LOC260338 - - - 12 12p11.1 tubulin, beta 2B class IIb pseudogene pseudo - - - - 20121230 -9606 260339 LOC260339 - - - 6 6q22.31 transcription factor A, mitochondrial pseudogene pseudo - - - - 20121230 -9606 260340 TFAMP2 - MTTF1|TCF6L3 HGNC:11638 11 11q22.3 transcription factor A, mitochondrial pseudogene 2 pseudo TFAMP2 transcription factor A, mitochondrial pseudogene 2 O - 20121230 -9606 260341 TFAMP1 - MTTF1|TCF6L1 HGNC:11636 7 7p22.3 transcription factor A, mitochondrial pseudogene 1 pseudo TFAMP1 transcription factor A, mitochondrial pseudogene 1 O - 20121230 -9606 260342 BA345E19.2 - - - X Xq21.2 COP9 constitutive photomorphogenic homolog subunit 8 (Arabidopsis) pseudogene pseudo - - - - 20121230 -9606 260402 AIS - AIS1|IS1 MIM:181800 19 19p13.3 Adolescent idiopathic scoliosis unknown - - - - 20120622 -9606 260403 MMEDF - - MIM:607131 15 15q26.1 Macrocephaly with multiple epiphyseal dysplasia and distinctive facies unknown - - - - 20120622 -9606 260404 LOC260404 - - - 17 17p11.2 DKFZp434F1819 related gene protein-coding - - - - 20100404 -9606 260415 SCASI - SCA24|SCAR4 HGNC:19186|MIM:607317 1 1p36 spinocerebellar ataxia with saccadic intrusions unknown SCASI spinocerebellar ataxia with saccadic intrusions O - 20120622 -9606 260421 LOC260421 - - - 5 5q13 actin related protein 2/3 complex subunit 1A pseudogene pseudo - - - - 20121230 -9606 260422 LOC260422 - - - 4 4q21.3 actin related protein 2/3 complex subunit 1A pseudogene pseudo - - - - 20121230 -9606 260425 MAGI3 - MAGI-3|RP4-730K3.1|dJ730K3.2 HGNC:29647|Ensembl:ENSG00000081026|HPRD:11290|Vega:OTTHUMG00000011737 1 1p12-p11.2 membrane associated guanylate kinase, WW and PDZ domain containing 3 protein-coding MAGI3 membrane associated guanylate kinase, WW and PDZ domain containing 3 O membrane-associated guanylate kinase inverted 3|membrane-associated guanylate kinase, WW and PDZ domain-containing protein 3|membrane-associated guanylate kinase-related 3 20121230 -9606 260429 PRSS33 - EOS HGNC:30405|MIM:613797|Ensembl:ENSG00000103355|HPRD:07109|Vega:OTTHUMG00000177360 16 16p13.3 protease, serine, 33 protein-coding PRSS33 protease, serine, 33 O serine protease 33|serine protease EOS 20121230 -9606 260431 COPD - - MIM:606963 2 2q Pulmonary disease, chronic obstructive, severe early-onset unknown - - - - 20120622 -9606 260432 SLSN3 - - MIM:606995 3 3q22 Senior-Loken syndrome 3 unknown - - - - 20120622 -9606 260434 PYDC1 - ASC2|POP1|PYC1 HGNC:30261|Ensembl:ENSG00000169900|HPRD:17938|Vega:OTTHUMG00000132407 16 16p11.2 PYD (pyrin domain) containing 1 protein-coding PYDC1 PYD (pyrin domain) containing 1 O PAAD-only protein 1|pyrin domain containing 1|pyrin domain-containing protein 1|pyrin-domain containing protein 1|pyrin-only protein 1 20121230 -9606 260436 FDCSP UNQ733/PRO1419 C4orf7|FDC-SP HGNC:19215|MIM:607241|Ensembl:ENSG00000181617|HPRD:06255|Vega:OTTHUMG00000129393 4 4q13|4q13 follicular dendritic cell secreted protein protein-coding FDCSP follicular dendritic cell secreted protein O FDC secreted protein|follicular dendritic cell secreted peptide 20121230 -9606 261726 TIPRL RP1-69E11.1 TIP|TIP41|dJ69E11.3 HGNC:30231|MIM:611807|Ensembl:ENSG00000143155|HPRD:14608|Vega:OTTHUMG00000034646 1 1q23.2 TIP41, TOR signaling pathway regulator-like (S. cerevisiae) protein-coding TIPRL TIP41, TOR signaling pathway regulator-like (S. cerevisiae) O TIP41-like protein|putative MAPK activating protein|putative MAPK-activating protein PM10|type 2A-interacting protein 20121230 -9606 261727 CRCL - - MIM:607135 3 3p Creatinine clearance QTL unknown - - - - 20120622 -9606 261729 STEAP2 UNQ6507/PRO23203 IPCA1|PCANAP1|PUMPCn|STAMP1|STMP HGNC:17885|MIM:605094|Ensembl:ENSG00000157214|HPRD:05481|Vega:OTTHUMG00000023341 7 7q21.13 STEAP family member 2, metalloreductase protein-coding STEAP2 STEAP family member 2, metalloreductase O SixTransMembrane Protein of Prostate 1|metalloreductase STEAP2|prostate cancer associated protein 1|prostate cancer-associated protein 1|protein up-regulated in metastatic prostate cancer|protein upregulated in metastatic prostate cancer|six transmembrane epithelial antigen of prostate 2|six transmembrane epithelial antigen of the prostate 2|six-transmembrane epithelial antigen of prostate 2 20121230 -9606 261734 NPHP4 RP11-33M12.1 POC10|SLSN4 HGNC:19104|MIM:607215|Ensembl:ENSG00000131697|HPRD:06238|Vega:OTTHUMG00000000701 1 1p36 nephronophthisis 4 protein-coding NPHP4 nephronophthisis 4 O POC10 centriolar protein homolog|nephrocystin-4|nephroretinin 20121230 -9606 261735 TVP23CP2 - CGI-148P HGNC:44647 16 16p13 trans-golgi network vesicle protein 23 homolog C (S. cerevisiae) pseudogene 2 pseudo TVP23CP2 trans-golgi network vesicle protein 23 homolog C (S. cerevisiae) pseudogene 2 O - 20121230 -9606 266553 OFCC1 - MRDS1 HGNC:21017|MIM:614287|HPRD:17659 6 6p24.3 orofacial cleft 1 candidate 1 protein-coding OFCC1 orofacial cleft 1 candidate 1 O orofacial cleft 1 candidate gene 1 protein|orofacial clefting chromosomal breakpoint region candidate 1 protein 20121230 -9606 266619 LOC266619 - - - 17 17p11.2 nitric oxide synthase 2, inducible pseudogene pseudo - - - - 20121230 -9606 266621 DGCR7 - - HGNC:19249 22 22q11 DiGeorge syndrome critical region gene 7 unknown DGCR7 DiGeorge syndrome critical region gene 7 O - 20120508 -9606 266623 SLC25A5P1 CTA-250D10.22-001 ANTP3|bK250D10.4 HGNC:19250 22 22q13.2 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 1 pseudo SLC25A5P1 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 1 O - 20121230 -9606 266625 NDUFA9P1 - dJ106I20.2 HGNC:19252 22 22q12.3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 9, pseudogene 1 pseudo NDUFA9P1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 9, pseudogene 1 O - 20121230 -9606 266626 CLCP1 - - HGNC:19257 22 22q11.2 Charcot-Leyden crystal protein pseudogene 1 pseudo CLCP1 Charcot-Leyden crystal protein pseudogene 1 O - 20121230 -9606 266629 SEC14L3 - TAP2 HGNC:18655|MIM:612824|Ensembl:ENSG00000100012|HPRD:15311|Vega:OTTHUMG00000151259 22 22q12.2 SEC14-like 3 (S. cerevisiae) protein-coding SEC14L3 SEC14-like 3 (S. cerevisiae) O SEC14-like protein 3|SEC14p-like protein TAP2|tocopherol-associated protein 2 20121230 -9606 266643 EDDM3CP - FAM12CP|HE3-GAMMA HGNC:19224 2 2q21 epididymal protein 3C, pseudogene pseudo EDDM3CP epididymal protein 3C, pseudogene O - 20121230 -9606 266655 LINC00094 - LP2477|NCRNA00094|bA374P20.3 HGNC:24742 9 9q34 long intergenic non-protein coding RNA 94 miscRNA LINC00094 long intergenic non-protein coding RNA 94 O - 20121230 -9606 266656 TAS2R12P - PS10|T2R12|TAS2R12|TAS2R26 HGNC:19103 12 12p13.2 taste receptor, type 2, member 12 pseudogene pseudo TAS2R12P taste receptor, type 2, member 12 pseudogene O - 20121230 -9606 266657 TAS2R15 - PS8|T2R15 HGNC:19106 12 12p13.2 taste receptor, type 2, member 15 pseudogene pseudo TAS2R15 taste receptor, type 2, member 15 pseudogene O - 20121230 -9606 266661 TAS2R22 - T2R22 HGNC:19110 12 - taste receptor, type 2, member 22 unknown TAS2R22 taste receptor, type 2, member 22 O - 20100310 -9606 266665 TAS2R33 - T2R33 HGNC:19114 12 - taste receptor, type 2, member 33 protein-coding TAS2R33 taste receptor, type 2, member 33 O - 20080828 -9606 266666 TAS2R36 - T2R36 HGNC:19115 12 - taste receptor, type 2, member 36 protein-coding TAS2R36 taste receptor, type 2, member 36 O - 20080828 -9606 266667 TAS2R37 - T2R37 HGNC:19116 12 - taste receptor, type 2, member 37 protein-coding TAS2R37 taste receptor, type 2, member 37 O - 20080828 -9606 266671 MAGI2-IT1 - MAGI2-IT|MAGI2IT|MAGI2IT1|PR47 HGNC:30058|MIM:608950 7 7q21.11 MAGI2 intronic transcript 1 (non-protein coding) unknown MAGI2-IT1 MAGI2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 266673 ZNF402P - - HGNC:19292 22 22q11.1 zinc finger protein 402, pseudogene pseudo ZNF402P zinc finger protein 402, pseudogene O - 20121230 -9606 266675 BEST4 RP11-269F19.5 VMD2L2 HGNC:17106|MIM:607336|Ensembl:ENSG00000142959|HPRD:09549|Vega:OTTHUMG00000008488 1 1p33-p32.3 bestrophin 4 protein-coding BEST4 bestrophin 4 O bestrophin-4|vitelliform macular dystrophy 2-like 2|vitelliform macular dystrophy 2-like protein 2 20121230 -9606 266678 MRX81 - - HGNC:19301|MIM:300433 X Xp11.2-q12 mental retardation, X-linked 81 unknown MRX81 mental retardation, X-linked 81 O - 20120622 -9606 266683 LOC266683 - - - X Xq13.3 dendritic cell protein pseudogene pseudo - - - - 20121230 -9606 266691 DYX6 - DYXQTL18 HGNC:19352|MIM:606616 18 18p11.2 dyslexia susceptibility 6 unknown DYX6 dyslexia susceptibility 6 O - 20120622 -9606 266693 EZH2P1 - - HGNC:39918 21 21q22.2 enhancer of zeste homolog 2 (Drosophila) pseudogene 1 pseudo EZH2P1 enhancer of zeste homolog 2 (Drosophila) pseudogene 1 O - 20121230 -9606 266694 LOC266694 - - - X Xq27.1 embryonic ectoderm development pseudogene pseudo - - - - 20121230 -9606 266695 PHF2P1 - DKFZp686A1627 HGNC:30241 13 13q11 PHD finger protein 2 pseudogene 1 pseudo PHF2P1 PHD finger protein 2 pseudogene 1 O - 20121017 -9606 266697 POM121L4P - - HGNC:19326 22 22q11.2 POM121 transmembrane nucleoporin-like 4 pseudogene pseudo POM121L4P POM121 transmembrane nucleoporin-like 4 pseudogene O - 20121230 -9606 266698 ARHGAP42P3 - OPHN1P1 HGNC:19327 22 22q11.1 Rho GTPase activating protein 42 pseudogene 3 pseudo ARHGAP42P3 Rho GTPase activating protein 42 pseudogene 3 O - 20121230 -9606 266699 FABP5P11 - FABP5L11|FABP5P1 HGNC:19328 22 22q11 fatty acid binding protein 5 pseudogene 11 pseudo FABP5P11 fatty acid binding protein 5 pseudogene 11 O - 20121230 -9606 266700 BMP6P1 - TGF-beta1P|TGFB1P HGNC:19329 22 22q11.2 bone morphogenetic protein 6 pseudogene 1 pseudo BMP6P1 bone morphogenetic protein 6 pseudogene 1 O - 20121230 -9606 266701 SOCS2P2 - - HGNC:19330 22 22q11.2 suppressor of cytokine signaling 2 pseudogene 2 pseudo SOCS2P2 suppressor of cytokine signaling 2 pseudogene 2 O - 20121230 -9606 266703 ASH2LP1 - - HGNC:19332 22 22q11.22 ash2 (absent, small, or homeotic)-like (Drosophila) pseudogene 1 pseudo ASH2LP1 ash2 (absent, small, or homeotic)-like (Drosophila) pseudogene 1 O - 20121230 -9606 266710 COMA - - MIM:257550 2 2q13 Cogan-type congential oculomotor apraxia unknown - - - - 20120622 -9606 266719 RRDX - - MIM:300378 X Xq24-q25 Radial ray deficiency unknown - - - - 20120622 -9606 266722 HS6ST3 RP11-235O20.1 HS6ST-3 HGNC:19134|MIM:609401|Ensembl:ENSG00000185352|HPRD:11030|Vega:OTTHUMG00000017232 13 13q32.1 heparan sulfate 6-O-sulfotransferase 3 protein-coding HS6ST3 heparan sulfate 6-O-sulfotransferase 3 O heparan-sulfate 6-O-sulfotransferase 3 20121230 -9606 266723 PSMC6P1 - PSMC6P HGNC:20634 8 8q12.1 proteasome 26S subunit, ATPase, 6 pseudogene 1 pseudo PSMC6P1 proteasome 26S subunit, ATPase, 6 pseudogene 1 O - 20121230 -9606 266724 HSPA9P1 - HSPA9BP|HSPA9P HGNC:24915 2 2q36.3 heat shock 70kDa protein 9 pseudogene 1 pseudo HSPA9P1 heat shock 70kDa protein 9 pseudogene 1 O - 20121230 -9606 266726 DYX7 - - HGNC:19324 11 11p15.5 dyslexia susceptibility 7 unknown DYX7 dyslexia susceptibility 7 O - 20110215 -9606 266727 MDGA1 RP3-402N21.1 GPIM|MAMDC3 HGNC:19267|MIM:609626|Ensembl:ENSG00000112139|HPRD:14374|Vega:OTTHUMG00000014626 6 6p21 MAM domain containing glycosylphosphatidylinositol anchor 1 protein-coding MDGA1 MAM domain containing glycosylphosphatidylinositol anchor 1 O GPI and MAM protein|MAM domain-containing glycosylphosphatidylinositol anchor protein 1|MAM domain-containing protein 3|glycosyl-phosphatidyl-inositol-MAM|glycosylphosphatidylinositol-MAM 20121230 -9606 266740 MAGEA2B - MAGE2|MAGEA2 HGNC:19340|MIM:300549|HPRD:14347 X Xq28 melanoma antigen family A, 2B protein-coding MAGEA2B melanoma antigen family A, 2B O CT1.2|MAGE-2 antigen|cancer/testis antigen 1.2|melanoma antigen 2|melanoma antigen, family A, 2, copy b|melanoma-associated antigen 2 20121230 -9606 266743 NPAS4 - Le-PAS|NXF|PASD10|bHLHe79 HGNC:18983|MIM:608554|Ensembl:ENSG00000174576|HPRD:12260|Vega:OTTHUMG00000167045 11 11q13 neuronal PAS domain protein 4 protein-coding NPAS4 neuronal PAS domain protein 4 O HLH-PAS transcription factor NXF|PAS domain-containing protein 10|class E basic helix-loop-helix protein 79|neuronal PAS domain-containing protein 4|neuronal PAS4 20121230 -9606 266747 RGL4 - Rgr HGNC:31911|MIM:612214|Ensembl:ENSG00000159496|HPRD:11528|Vega:OTTHUMG00000150711 22 22q11.23 ral guanine nucleotide dissociation stimulator-like 4 protein-coding RGL4 ral guanine nucleotide dissociation stimulator-like 4 O Ral-GDS related protein Rgr|RalGDS related oncogene|hRGR|ral-GDS-related protein|ralGDS-like 4 20121230 -9606 266783 PSMD2P1 - - HGNC:30154 1 1q43 proteasome 26S subunit, non-ATPase, 2 pseudogene 1 pseudo PSMD2P1 proteasome 26S subunit, non-ATPase, 2 pseudogene 1 O - 20121230 -9606 266785 NUP50P2 - - HGNC:29928 6 6p22 nucleoporin 50 pseudogene 2 pseudo NUP50P2 nucleoporin 50 pseudogene 2 O - 20121230 -9606 266786 NUP50P3 - - HGNC:29927 5 5p14 nucleoporin 50 pseudogene 3 pseudo NUP50P3 nucleoporin 50 pseudogene 3 O - 20121230 -9606 266789 EPPS - - MIM:607221 4 4p15 Epilepsy, partial, with pericentral spikes unknown - - - - 20120622 -9606 266790 HCA1 - AH|HCA MIM:607258 4 4q33-qter Hypercalciuria, absorptive, 1 unknown - - - - 20120622 -9606 266811 NPSA - - - - - novel prostate-specific antigen protein-coding - - - - 20121007 -9606 266812 NAP1L5 - DRLM HGNC:19968|MIM:612203|Ensembl:ENSG00000177432|HPRD:17626|Vega:OTTHUMG00000130950 4 4q22.1|4q21-q22 nucleosome assembly protein 1-like 5 protein-coding NAP1L5 nucleosome assembly protein 1-like 5 O down-regulated in liver malignancy 20121230 -9606 266917 D21S2088E - - - 21 - D21S2088E miscRNA - - - - 20121230 -9606 266918 D21S2090E - - - - - uncharacterized D21S2090E protein-coding - - - - 20120508 -9606 266919 LINC00307 - D21S2091E|NCRNA00307 HGNC:16727 21 21q22.11 long intergenic non-protein coding RNA 307 miscRNA LINC00307 long intergenic non-protein coding RNA 307 O - 20121230 -9606 266920 AK2P1 - AK2B HGNC:24037 1 1p32.1 adenylate kinase 2 pseudogene 1 pseudo AK2P1 adenylate kinase 2 pseudogene 1 O - 20121230 -9606 266954 CABYRP1 - CABYRP HGNC:31902 3 3p21.1 calcium binding tyrosine-(Y)-phosphorylation regulated pseudogene 1 pseudo CABYRP1 calcium binding tyrosine-(Y)-phosphorylation regulated pseudogene 1 O - 20121230 -9606 266971 PIPSL RP11-429H9.6 PIP5K1L1|PIP5K1P3|PSMD4P2|bA429H9.1 HGNC:23733 10 10q23.33 PIP5K1A and PSMD4-like, pseudogene pseudo PIPSL PIP5K1A and PSMD4-like, pseudogene O - 20121230 -9606 266977 GPR110 RP11-39C2.1 KPG_012|PGR19|hGPCR36 HGNC:18990|Ensembl:ENSG00000153292|HPRD:08661|Vega:OTTHUMG00000014795 6 6p12.3 G protein-coupled receptor 110 protein-coding GPR110 G protein-coupled receptor 110 O G protein-coupled receptor PGR19|G-protein coupled receptor 110|G-protein coupled receptor KPG_012|G-protein coupled receptor PGR19|probable G-protein coupled receptor 110|seven transmembrane helix receptor 20121230 -9606 266979 CCNP - - MIM:607304 2 2p12 Cataract, congenital, nuclear progressive unknown - - - - 20120622 -9606 267002 PGBD2 - - HGNC:19399|Ensembl:ENSG00000185220|HPRD:17837|Vega:OTTHUMG00000040424 1 1q44 piggyBac transposable element derived 2 protein-coding PGBD2 piggyBac transposable element derived 2 O piggyBac transposable element-derived protein 2 20121230 -9606 267004 PGBD3 RP11-123B3.3 - HGNC:19400|Ensembl:ENSG00000243251|HPRD:17838|Vega:OTTHUMG00000018193 10 10q11 piggyBac transposable element derived 3 protein-coding PGBD3 piggyBac transposable element derived 3 O piggyBac transposable element-derived protein 3 20121230 -9606 267005 PGBD3P1 - - HGNC:19402 12 12q13.12 piggyBac transposable element derived 3 pseudogene 1 pseudo PGBD3P1 piggyBac transposable element derived 3 pseudogene 1 O - 20121230 -9606 267006 PGBD3P2 - - HGNC:19397 5 5p13.3 piggyBac transposable element derived 3 pseudogene 2 pseudo PGBD3P2 piggyBac transposable element derived 3 pseudogene 2 O - 20121230 -9606 267007 PGBD3P3 - - HGNC:19396 12 12q24.2 piggyBac transposable element derived 3 pseudogene 3 pseudo PGBD3P3 piggyBac transposable element derived 3 pseudogene 3 O - 20121230 -9606 267008 PGBD3P4 - - HGNC:19379 4 4p14 piggyBac transposable element derived 3 pseudogene 4 pseudo PGBD3P4 piggyBac transposable element derived 3 pseudogene 4 O - 20121230 -9606 267009 RPS9P2 - RPS9_3_1753|bA12M9.1 HGNC:19428 22 22q13.2 ribosomal protein S9 pseudogene 2 pseudo RPS9P2 ribosomal protein S9 pseudogene 2 O - 20121230 -9606 267010 RNU12 - RNU12-1|RNU12L|RNU12P|dJ222E13.7 HGNC:19380 22 22q13.2 RNA, U12 small nuclear snRNA RNU12 RNA, U12 small nuclear O - 20121230 -9606 267012 DAOA RP11-166E2.2 G72|LG72|SG72 HGNC:21191|MIM:607408|Ensembl:ENSG00000182346|HPRD:07591|Vega:OTTHUMG00000041333 13 13q33.2|13q34 D-amino acid oxidase activator protein-coding DAOA D-amino acid oxidase activator O G72 transcript|schizophrenia- and bipolar disorder-associated protein G72 20121230 -9606 267013 HLA-DPA3 - dJ1033B10.14 HGNC:19393 6 6p21.3 major histocompatibility complex, class II, DP alpha 3 (pseudogene) pseudo HLA-DPA3 major histocompatibility complex, class II, DP alpha 3 (pseudogene) O - 20121230 -9606 267014 HLA-N - HLA-30 HGNC:19406 6 6p21.3 major histocompatibility complex, class I, N (pseudogene) pseudo HLA-N major histocompatibility complex, class I, N (pseudogene) O - 20121230 -9606 267015 HLA-S - HLA-17 HGNC:19395 6 6p21.3 major histocompatibility complex, class I, S (pseudogene) pseudo HLA-S major histocompatibility complex, class I, S (pseudogene) O - 20121230 -9606 267016 HLA-X - - HGNC:19385 6 6p21.3 major histocompatibility complex, class I, X (pseudogene) pseudo HLA-X major histocompatibility complex, class I, X (pseudogene) O - 20121230 -9606 267017 HLA-Z - HLA-Z1 HGNC:19394 6 6p21.3 major histocompatibility complex, class I, Z (pseudogene) pseudo HLA-Z major histocompatibility complex, class I, Z (pseudogene) O - 20121230 -9606 267020 ATP5L2 - ATP5K2 HGNC:13213|Ensembl:ENSG00000249222|Vega:OTTHUMG00000150890 22 22q13.2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit G2 protein-coding ATP5L2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit G2 O ATP synthase subunit g 2, mitochondrial|ATP synthase, H+ transporting, mitochondrial F0 complex, subunit G2 pseudogene|ATP synthase, H+ transporting, mitochondrial F1F0, subunit g|ATPase subunit g 2 20121230 -9606 268276 LOC268276 - - - 11 11q13 musashi 1 pseudogene pseudo - - - - 20121230 -9606 276719 SOCS2P1 - - HGNC:16069 20 20q11.21 suppressor of cytokine signaling 2 pseudogene 1 pseudo SOCS2P1 suppressor of cytokine signaling 2 pseudogene 1 O - 20121230 -9606 280636 C11orf31 - C17orf10|SELH HGNC:18251|MIM:607914|Ensembl:ENSG00000211450|HPRD:07447|Vega:OTTHUMG00000167202 11 11q12.1 chromosome 11 open reading frame 31 protein-coding C11orf31 chromosome 11 open reading frame 31 O selenoprotein H 20121230 -9606 280637 PSMD7P1 - MOV34L|PSMD7L HGNC:7202 17 17q24.1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 pseudogene 1 pseudo PSMD7P1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 pseudogene 1 O - 20121230 -9606 280644 PSMD10P2 - - HGNC:30151 3 3q27.3 proteasome 26S subunit, non-ATPase, 10 pseudogene 2 pseudo PSMD10P2 proteasome 26S subunit, non-ATPase, 10 pseudogene 2 O - 20121230 -9606 280655 IGBP1P1 - C14orf19 HGNC:19709 14 14q13.2 immunoglobulin (CD79A) binding protein 1 pseudogene 1 pseudo IGBP1P1 immunoglobulin (CD79A) binding protein 1 pseudogene 1 O - 20121230 -9606 280657 SSX6 RP11-38O23.6 SSXP2|dJ54B20.1|psiSSX2 HGNC:19652|MIM:300541|HPRD:18109 X Xp11.2 synovial sarcoma, X breakpoint 6 (pseudogene) pseudo SSX6 synovial sarcoma, X breakpoint 6 (pseudogene) O - 20121230 -9606 280658 SSX7 RP11-552J9.7 - HGNC:19653|MIM:300542|Ensembl:ENSG00000187754|HPRD:06727|Vega:OTTHUMG00000021572 X Xp11.23 synovial sarcoma, X breakpoint 7 protein-coding SSX7 synovial sarcoma, X breakpoint 7 O protein SSX7 20121230 -9606 280659 SSX8 RP11-552J9.8 - HGNC:19654|MIM:300543|HPRD:06728 X Xp11.23 synovial sarcoma, X breakpoint 8 pseudo SSX8 synovial sarcoma, X breakpoint 8 O - 20121230 -9606 280660 SSX9 RP11-344N17.10-001 - HGNC:19655|MIM:300544|HPRD:06729 X Xp11.23 synovial sarcoma, X breakpoint 9 pseudo SSX9 synovial sarcoma, X breakpoint 9 O - 20121230 -9606 280661 EIF1AXP1 - EIF1AP1 HGNC:19900 1 1p36.13 eukaryotic translation initiation factor 1A, X-linked pseudogene 1 pseudo EIF1AXP1 eukaryotic translation initiation factor 1A, X-linked pseudogene 1 O - 20121230 -9606 280664 WFDC10B RP4-688G8.4 WAP12 HGNC:20479|Ensembl:ENSG00000182931|HPRD:15672|Vega:OTTHUMG00000130227 20 20q13.12 WAP four-disulfide core domain 10B protein-coding WFDC10B WAP four-disulfide core domain 10B O protease inhibitor WAP12|protein WFDC10B 20121230 -9606 280665 LOC280665 - - - 4 - anti-CNG alpha 1 cation channel translation product-like miscRNA - - - - 20110512 -9606 282549 STQTL3 - - MIM:606257 12 12p11.2-q14 stature quantitative trait locus 3 unknown - - - - 20120622 -9606 282550 STQTL4 - - MIM:606258 13 13q32-q33 stature quantitative trait locus 4 unknown - - - - 20120622 -9606 282551 ITS - - MIM:606960 22 22q12.1-q12.2 Insulinoma tumor suppressor gene locus other - - - - 20120622 -9606 282552 IS2 - AIS2 MIM:607354 17 17p11.2 Scoliosis, idiopathic 2 unknown - - - - 20120622 -9606 282553 AUTS8 - AUTS2 MIM:607373 3 3q25-q27 Autism, susceptibility to, 8 unknown - - - - 20120622 -9606 282566 LINC00515 - C21orf71|PRED21 HGNC:16019 21 21q21.3 long intergenic non-protein coding RNA 515 miscRNA LINC00515 long intergenic non-protein coding RNA 515 O - 20121230 -9606 282569 BACE2-IT1 - C21orf75|NCRNA00228|PRED43 HGNC:16024 21 21q22.2 BACE2 intronic transcript 1 (non-protein coding) miscRNA BACE2-IT1 BACE2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 282616 IFNL2 - IL-28A|IL28A HGNC:18364|MIM:607401|Ensembl:ENSG00000183709|HPRD:09586 19 19q13.13 interferon, lambda 2 protein-coding IFNL2 interferon, lambda 2 O IFN-lambda-2|cytokine Zcyto20|interferon lambda 2|interferon lambda-2|interferon-lambda 2|interleukin 28A (interferon, lambda 2)|interleukin-28A 20121230 -9606 282617 IFNL3 - IL-28B|IL28B|IL28C HGNC:18365|MIM:607402|Ensembl:ENSG00000197110|HPRD:09587 19 19q13.13 interferon, lambda 3 protein-coding IFNL3 interferon, lambda 3 O IFN-lambda-3|IFN-lambda-4|IL-28C|cytokine Zcyto22|interferon lambda-3|interferon lambda-4|interferon, lambda 4|interleukin 28B (interferon, lambda 3)|interleukin 28C|interleukin-28B|interleukin-28C 20121230 -9606 282618 IFNL1 - IL-29|IL29 HGNC:18363|MIM:607403|Ensembl:ENSG00000182393|HPRD:09588 19 19q13.13 interferon, lambda 1 protein-coding IFNL1 interferon, lambda 1 O IFN-lambda-1|cytokine Zcyto21|interferon lambda-1|interferon-lambda-1|interleukin 29 (interferon, lambda 1)|interleukin-29 20121230 -9606 282631 GCCD2 - GCCD3 MIM:607398 - - Glucocorticoid deficiency 2 unknown - - - - 20110714 -9606 282679 AQP11 PSEC0027 AQPX1 HGNC:19940|MIM:609914|Ensembl:ENSG00000178301|HPRD:16503|Vega:OTTHUMG00000165194 11 11q14.1 aquaporin 11 protein-coding AQP11 aquaporin 11 O AQP-11|aquaporin-11 20121230 -9606 282694 NASPP1 - - HGNC:29910 8 8q12 nuclear autoantigenic sperm protein pseudogene 1 pseudo NASPP1 nuclear autoantigenic sperm protein pseudogene 1 O - 20121230 -9606 282697 DIS3L2P1 - DIS3L2P|FAM6B HGNC:14021 2 2q37.1 DIS3 mitotic control homolog (S. cerevisiae)-like 2 pseudogene 1 pseudo DIS3L2P1 DIS3 mitotic control homolog (S. cerevisiae)-like 2 pseudogene 1 O - 20121230 -9606 282706 DAOA-AS1 - DAOA-AS|DAOAAS|G30 HGNC:30243|MIM:607415|HPRD:07597 13 13q33.2|13q34 DAOA antisense RNA 1 miscRNA DAOA-AS1 DAOA antisense RNA 1 O - 20121230 -9606 282754 OR4D12P - OR7E103P HGNC:19587 4 4p16.3 olfactory receptor, family 4, subfamily D, member 12 pseudogene pseudo OR4D12P olfactory receptor, family 4, subfamily D, member 12 pseudogene O - 20121230 -9606 282756 OR7E149P - - HGNC:19589 12 12p13.31 olfactory receptor, family 7, subfamily E, member 149 pseudogene pseudo OR7E149P olfactory receptor, family 7, subfamily E, member 149 pseudogene O - 20121230 -9606 282763 OR51B5 - HOR5'Beta5|OR11-37 HGNC:19599|HPRD:14993 11 11p15.4 olfactory receptor, family 51, subfamily B, member 5 protein-coding OR51B5 olfactory receptor, family 51, subfamily B, member 5 O odorant receptor HOR5'beta5|olfactory receptor 51B5|olfactory receptor OR11-37 20121230 -9606 282769 OR10AF1P - - HGNC:19606 11 11q12 olfactory receptor, family 10, subfamily AF, member 1 pseudogene pseudo OR10AF1P olfactory receptor, family 10, subfamily AF, member 1 pseudogene O - 20121230 -9606 282770 OR10AG1 - OR11-160 HGNC:19607|Ensembl:ENSG00000174970|HPRD:14885|Vega:OTTHUMG00000166824 11 11q11 olfactory receptor, family 10, subfamily AG, member 1 protein-coding OR10AG1 olfactory receptor, family 10, subfamily AG, member 1 O olfactory receptor 10AG1|olfactory receptor OR11-160 20121230 -9606 282775 OR5J2 - OR11-266 HGNC:19612|Ensembl:ENSG00000174957|HPRD:17762|Vega:OTTHUMG00000166835 11 11q11 olfactory receptor, family 5, subfamily J, member 2 protein-coding OR5J2 olfactory receptor, family 5, subfamily J, member 2 O olfactory receptor 5J2|olfactory receptor OR11-266 20121230 -9606 282776 OR8V1P - OR11-267 HGNC:19613 11 11q olfactory receptor, family 8, subfamily V, member 1 pseudogene pseudo OR8V1P olfactory receptor, family 8, subfamily V, member 1 pseudogene O - 20121230 -9606 282786 OR8G7P - - HGNC:19625 11 11q24.2 olfactory receptor, family 8, subfamily G, member 7 pseudogene pseudo OR8G7P olfactory receptor, family 8, subfamily G, member 7 pseudogene O - 20121230 -9606 282790 OR5BT1P - - HGNC:19629 12 12q13.2 olfactory receptor, family 5, subfamily BT, member 1 pseudogene pseudo OR5BT1P olfactory receptor, family 5, subfamily BT, member 1 pseudogene O - 20121230 -9606 282791 OR8T1P - - HGNC:19630 12 12q13.2 olfactory receptor, family 8, subfamily T, member 1 pseudogene pseudo OR8T1P olfactory receptor, family 8, subfamily T, member 1 pseudogene O - 20121230 -9606 282795 OR11P1P - - HGNC:19636 14 14q11 olfactory receptor, family 11, subfamily P, member 1 pseudogene pseudo OR11P1P olfactory receptor, family 11, subfamily P, member 1 pseudogene O - 20121230 -9606 282801 OR7E148P - OR7E150P HGNC:19642 12 12p13.31 olfactory receptor, family 7, subfamily E, member 148 pseudogene pseudo OR7E148P olfactory receptor, family 7, subfamily E, member 148 pseudogene O - 20121230 -9606 282808 RAB40AL LL0XNC01-237H1.1 MRXSMP|RAR2|RLGP HGNC:25410|MIM:300405|Ensembl:ENSG00000102128|Vega:OTTHUMG00000022084 X Xq22.2 RAB40A, member RAS oncogene family-like protein-coding RAB40AL RAB40A, member RAS oncogene family-like O Ras like GTPase|SOCS box containing protein RAR2|ras-like GTPase|ras-related protein Rab-40A-like 20121230 -9606 282809 POC1B - PIX1|TUWD12|WDR51B HGNC:30836|MIM:614784|Ensembl:ENSG00000139323|HPRD:18301|Vega:OTTHUMG00000169944 12 12q21.33 POC1 centriolar protein homolog B (Chlamydomonas) protein-coding POC1B POC1 centriolar protein homolog B (Chlamydomonas) O POC1 centriolar protein homolog B|WD repeat-containing protein 51B 20121230 -9606 282849 SLEN3 - - HGNC:18544|MIM:607967 11 11p15.5 systemic lupus erythematosus with nephritis 3 unknown SLEN3 systemic lupus erythematosus with nephritis 3 O - 20120622 -9606 282890 ZNF311 DAAP-223O5.4 zf31 HGNC:13847|Ensembl:ENSG00000197935|HPRD:18325|Vega:OTTHUMG00000031292 6 6p22.1 zinc finger protein 311 protein-coding ZNF311 zinc finger protein 311 O zinc finger protein zfp-31|zinc finger protein zfp31 20121230 -9606 282966 C10orf53 - - HGNC:27421|Ensembl:ENSG00000178645|HPRD:12579|Vega:OTTHUMG00000018199 10 10q11.23 chromosome 10 open reading frame 53 protein-coding C10orf53 chromosome 10 open reading frame 53 O UPF0728 protein C10orf53 20121230 -9606 282967 MAPK6PS6 - - HGNC:18978 10 10q11.23 mitogen-activated protein kinase 6 pseudogene 6 pseudo MAPK6PS6 mitogen-activated protein kinase 6 pseudogene 6 O - 20121230 -9606 282969 FUOM RP11-122K13.9 C10orf125|FUCU|FucM HGNC:24733|Ensembl:ENSG00000148803|HPRD:12564|Vega:OTTHUMG00000019315 10 10q26.3 fucose mutarotase protein-coding FUOM fucose mutarotase O protein fucU homolog 20121230 -9606 282973 JAKMIP3 RP11-140A10.6 C10orf14|C10orf39|Jamip3|NECC2|bA140A10.5 HGNC:23523|MIM:611198|Ensembl:ENSG00000188385|HPRD:12574|Vega:OTTHUMG00000150167 10 10q26.3 Janus kinase and microtubule interacting protein 3 protein-coding JAKMIP3 Janus kinase and microtubule interacting protein 3 O janus kinase and microtubule-interacting protein 3|neuroendocrine long coiled-coil 2|neuroendocrine long coiled-coil protein 2 20121230 -9606 282974 STK32C - PKE|RP11-140A10.1|YANK3 HGNC:21332|Ensembl:ENSG00000165752|HPRD:18119|Vega:OTTHUMG00000019285 10 10q26.3 serine/threonine kinase 32C protein-coding STK32C serine/threonine kinase 32C O PKE protein kinase|protein kinase (PKE)|serine/threonine-protein kinase 32C 20121230 -9606 282980 LINC00700 - - HGNC:27422 10 10p15.3 long intergenic non-protein coding RNA 700 miscRNA LINC00700 long intergenic non-protein coding RNA 700 O - 20121230 -9606 282991 BLOC1S2 - BLOS2|RP11-316M21.4 HGNC:20984|MIM:609768|Ensembl:ENSG00000196072|HPRD:12526|Vega:OTTHUMG00000018908 10 10q24.31 biogenesis of lysosomal organelles complex-1, subunit 2 protein-coding BLOC1S2 biogenesis of lysosomal organelles complex-1, subunit 2 O BLOC-1 subunit 2|biogenesis of lysosome-related organelles complex 1 subunit 2|centrosomal 10 kDa protein|centrosome protein oncogene|centrosome-associated protein 20121230 -9606 282996 RBM20 RP11-313D6.1 - HGNC:27424|MIM:613171|Ensembl:ENSG00000203867|Vega:OTTHUMG00000019043 10 10q25.2 RNA binding motif protein 20 protein-coding RBM20 RNA binding motif protein 20 O RNA-binding motif protein 20|RNA-binding protein 20|probable RNA-binding protein 20 20121230 -9606 282997 LOC282997 - - - 10 10q25.2 uncharacterized LOC282997 miscRNA - - - - 20121230 -9606 283008 FAM22E RP11-182L21.1 - HGNC:23448|HPRD:16878 10 10q22.3 family with sequence similarity 22, member E pseudo FAM22E family with sequence similarity 22, member E O - 20121230 -9606 283011 FLJ37201 - - - 10 10q23.31 tigger transposable element derived 2 pseudogene pseudo - - - - 20121230 -9606 283014 EIF2S2P3 - - HGNC:31664 10 10q23.33 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 3 pseudo EIF2S2P3 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 3 O - 20121230 -9606 283025 C10orf40 - - HGNC:23524 10 10q21.2 chromosome 10 open reading frame 40 miscRNA C10orf40 chromosome 10 open reading frame 40 O - 20121230 -9606 283028 LOC283028 - - - 10 10q11.21 uncharacterized LOC283028 unknown - - - - 20121230 -9606 283033 LOC283033 - - - 10 10q11.21 uncharacterized LOC283033 miscRNA - - - - 20121230 -9606 283038 LOC283038 - - - 10 10q26.2 uncharacterized LOC283038 miscRNA - - - - 20121230 -9606 283045 LOC283045 - - - 10 10q21.3 uncharacterized LOC283045 protein-coding - - - - 20120508 -9606 283050 LOC283050 - - - 10 10q22.3 uncharacterized LOC283050 miscRNA - - - - 20121230 -9606 283070 LOC283070 - - - 10 10p13 uncharacterized LOC283070 miscRNA - - - - 20121230 -9606 283075 LOC283075 - - - 10 10p12.31 uncharacterized LOC283075 protein-coding - - - - 20120508 -9606 283078 MKX - C10orf48|IFRX|IRXL1 HGNC:23729|MIM:601332|Ensembl:ENSG00000150051|HPRD:12577|Vega:OTTHUMG00000017862 10 10p12.1 mohawk homeobox protein-coding MKX mohawk homeobox O Iroquois family related homeodomain protein|homeobox protein Mohawk|iroquois homeobox protein-like 1 20121230 -9606 283080 C10orf126 RP11-492M23.1 bA492M23.1 HGNC:28693 10 10p12.1 chromosome 10 open reading frame 126 unknown C10orf126 chromosome 10 open reading frame 126 O - 20121230 -9606 283089 WDR11-AS1 - - HGNC:27437 10 10q26.13 WDR11 antisense RNA 1 miscRNA WDR11-AS1 WDR11 antisense RNA 1 O - 20121230 -9606 283092 OR4C13 - - HGNC:15169|Ensembl:ENSG00000258817|HPRD:17720|Vega:OTTHUMG00000166686 11 11p11.12 olfactory receptor, family 4, subfamily C, member 13 protein-coding OR4C13 olfactory receptor, family 4, subfamily C, member 13 O olfactory receptor 4C13|olfactory receptor OR11-260 20121230 -9606 283093 OR4C12 - OR11-259 HGNC:15168|Ensembl:ENSG00000221954|HPRD:14962|Vega:OTTHUMG00000166687 11 11p11.12 olfactory receptor, family 4, subfamily C, member 12 protein-coding OR4C12 olfactory receptor, family 4, subfamily C, member 12 O olfactory receptor 4C12|olfactory receptor OR11-259|seven transmembrane helix receptor 20121230 -9606 283102 KRT8P41 - - HGNC:39875 11 11p15.4 keratin 8 pseudogene 41 pseudo KRT8P41 keratin 8 pseudogene 41 O - 20121230 -9606 283104 SBF2-AS1 - - HGNC:27438 11 11p15.4 SBF2 antisense RNA 1 miscRNA SBF2-AS1 SBF2 antisense RNA 1 O - 20121230 -9606 283106 CSNK2A1P hCG_21984 - HGNC:2458 11 11p15.3 casein kinase 2, alpha 1 polypeptide pseudogene protein-coding CSNK2A1P casein kinase 2, alpha 1 polypeptide pseudogene O casein kinase 2, alpha 1 polypeptide-like 20121230 -9606 283110 OR52Z1 - OR52Z1P HGNC:19596 11 11p15.4 olfactory receptor, family 52, subfamily Z, member 1 (gene/pseudogene) pseudo OR52Z1 olfactory receptor, family 52, subfamily Z, member 1 (gene/pseudogene) O - 20121230 -9606 283111 OR51V1 - OR11-36|OR51A12 HGNC:19597|Ensembl:ENSG00000176742|HPRD:17741|Vega:OTTHUMG00000066671 11 11p15.4 olfactory receptor, family 51, subfamily V, member 1 protein-coding OR51V1 olfactory receptor, family 51, subfamily V, member 1 O odorant receptor HOR3'beta1|olfactory receptor 51A12|olfactory receptor 51V1|olfactory receptor OR11-36 20121230 -9606 283112 LOC283112 - - - 11 11p15.1 uncharacterized LOC283112 protein-coding - - - - 20120508 -9606 283114 RPS25P1 - RPS25_2_1129 HGNC:34027 11 11p14.1 ribosomal protein S25 pseudogene 1 pseudo RPS25P1 ribosomal protein S25 pseudogene 1 O - 20121230 -9606 283116 TRIM49B - - HGNC:42955|Ensembl:ENSG00000182053 11 11p11.12 tripartite motif containing 49B protein-coding TRIM49B tripartite motif containing 49B O tripartite motif-containing protein 20121230 -9606 283120 H19 - ASM|ASM1|BWS|D11S813E|LINC00008|NCRNA00008|PRO2605|WT2 HGNC:4713|MIM:103280 11 11p15.5 H19, imprinted maternally expressed transcript (non-protein coding) miscRNA H19 H19, imprinted maternally expressed transcript (non-protein coding) O - 20121230 -9606 283129 C11orf85 - - HGNC:27441|Ensembl:ENSG00000168070|HPRD:18761|Vega:OTTHUMG00000165632 11 11q13.1 chromosome 11 open reading frame 85 protein-coding C11orf85 chromosome 11 open reading frame 85 O uncharacterized protein C11orf85 20121230 -9606 283130 SLC25A45 - - HGNC:27442|MIM:610825|Ensembl:ENSG00000162241|HPRD:14142|Vega:OTTHUMG00000166255 11 11q13.1 solute carrier family 25, member 45 protein-coding SLC25A45 solute carrier family 25, member 45 O solute carrier family 25 member 45 20121230 -9606 283131 NEAT1 - LINC00084|NCRNA00084|TncRNA HGNC:30815|MIM:612769 11 11q13.1 nuclear paraspeckle assembly transcript 1 (non-protein coding) miscRNA NEAT1 nuclear paraspeckle assembly transcript 1 (non-protein coding) O - 20121230 -9606 283140 LOC283140 - - - 11 11q23.1 uncharacterized LOC283140 protein-coding - - - - 20120508 -9606 283143 LOC283143 - - - 11 11q23.3 uncharacterized LOC283143 miscRNA - - - - 20121230 -9606 283149 BCL9L - BCL9-2|DLNB11 HGNC:23688|MIM:609004|Ensembl:ENSG00000186174|HPRD:10612|Vega:OTTHUMG00000166414 11 11q23.3 B-cell CLL/lymphoma 9-like protein-coding BCL9L B-cell CLL/lymphoma 9-like O B-cell CLL/lymphoma 9-like protein|B-cell lymphoma 9-like protein|BCL9-like protein|nuclear co-factor of beta-catenin signalling|protein BCL9-2 20121230 -9606 283150 FOXR1 DLNB13 FOXN5 HGNC:29980|Ensembl:ENSG00000176302|HPRD:13551|Vega:OTTHUMG00000166347 11 11q23.3 forkhead box R1 protein-coding FOXR1 forkhead box R1 O forkhead box R1 variant 1|forkhead box protein N5|forkhead box protein R1 20121230 -9606 283152 CCDC153 - - HGNC:27446|Ensembl:ENSG00000248712|HPRD:18762|Vega:OTTHUMG00000156903 11 11q23.3 coiled-coil domain containing 153 protein-coding CCDC153 coiled-coil domain containing 153 O coiled-coil domain-containing protein 153 20121230 -9606 283159 OR8D1 - JCG9|OR8D3|OST004|PDJ9J14 HGNC:8481|Ensembl:ENSG00000196341|HPRD:17787|Vega:OTTHUMG00000165977 11 11q24.2 olfactory receptor, family 8, subfamily D, member 1 protein-coding OR8D1 olfactory receptor, family 8, subfamily D, member 1 O olfactory receptor 8D1|olfactory receptor 8D3|olfactory receptor OR11-301|olfactory receptor, family 8, subfamily D, member 3|olfactory receptor-like protein JCG9|olfactory-like receptor JCG9 20121230 -9606 283160 OR8D2 - JCG2 HGNC:8482|Ensembl:ENSG00000197263|HPRD:15081|Vega:OTTHUMG00000165978 11 11q24.2 olfactory receptor, family 8, subfamily D, member 2 protein-coding OR8D2 olfactory receptor, family 8, subfamily D, member 2 O olfactory receptor 8D2|olfactory receptor OR11-303|olfactory receptor-like protein JCG2 20121230 -9606 283162 OR8B4 - OR11-315|OR8B4P HGNC:8473|Ensembl:ENSG00000198657|HPRD:17786|Vega:OTTHUMG00000165916 11 11q24.2 olfactory receptor, family 8, subfamily B, member 4 protein-coding OR8B4 olfactory receptor, family 8, subfamily B, member 4 O olfactory receptor 8B4|olfactory receptor OR11-315|olfactory receptor, family 8, subfamily B, member 4 pseudogene 20121230 -9606 283165 KIRREL3-AS3 - NCRNA00288|PRR10 HGNC:26855|HPRD:08274 11 11q24.2 KIRREL3 antisense RNA 3 miscRNA KIRREL3-AS3 KIRREL3 antisense RNA 3 O - 20121230 -9606 283171 C11orf44 - - HGNC:26805|HPRD:08250 11 11q24.3 chromosome 11 open reading frame 44 protein-coding C11orf44 chromosome 11 open reading frame 44 O uncharacterized protein C11orf44 20121230 -9606 283172 LOC283172 - - - 11 11q25 calponin 2 pseudogene pseudo - - - - 20121230 -9606 283174 LOC283174 - - HPRD:17328 11 11q25 uncharacterized LOC283174 miscRNA - - - - 20121230 -9606 283177 LOC283177 - - - 11 11q25 uncharacterized LOC283177 miscRNA - - - - 20121230 -9606 283189 OR9G4 - OR11-216 HGNC:15322|Ensembl:ENSG00000172457|HPRD:17798|Vega:OTTHUMG00000166932 11 11q12.1 olfactory receptor, family 9, subfamily G, member 4 protein-coding OR9G4 olfactory receptor, family 9, subfamily G, member 4 O olfactory receptor 9G4|olfactory receptor OR11-216 20121230 -9606 283193 OR5AZ1P - - HGNC:15262 11 11q12.1 olfactory receptor, family 5, subfamily AZ, member 1 pseudogene pseudo OR5AZ1P olfactory receptor, family 5, subfamily AZ, member 1 pseudogene O - 20121230 -9606 283194 LOC283194 - - - 11 11q12.2 uncharacterized LOC283194 miscRNA - - - - 20121230 -9606 283197 LINC00301 - C11orf64|NCRNA00301 HGNC:28603|HPRD:17544 11 11q12.2 long intergenic non-protein coding RNA 301 miscRNA LINC00301 long intergenic non-protein coding RNA 301 O - 20121230 -9606 283208 P4HA3 UNQ711/PRO1374 - HGNC:30135|MIM:608987|Ensembl:ENSG00000149380|HPRD:16413|Vega:OTTHUMG00000165254 11 11q13.4 prolyl 4-hydroxylase, alpha polypeptide III protein-coding P4HA3 prolyl 4-hydroxylase, alpha polypeptide III O 4-PH alpha-3|C-P4H alpha III|collagen prolyl 4-hydroxylase alpha(III)|procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide III|procollagen-proline,2-oxoglutarate-4-dioxygenase subunit alpha-3|prolyl 4-hydroxylase subunit alpha-3 20121230 -9606 283209 PGM2L1 - BM32A HGNC:20898|MIM:611610|Ensembl:ENSG00000165434|HPRD:11427|Vega:OTTHUMG00000168132 11 11q13.4 phosphoglucomutase 2-like 1 protein-coding PGM2L1 phosphoglucomutase 2-like 1 O PMMLP|glucose 1,6-bisphosphate synthase|glucose-1,6-bisphosphate synthase|phosphoglucomutase-2-like 1 20121230 -9606 283212 KLHL35 - - HGNC:26597|Ensembl:ENSG00000149243|HPRD:08747|Vega:OTTHUMG00000133573 11 11q13.4 kelch-like 35 (Drosophila) protein-coding KLHL35 kelch-like 35 (Drosophila) O kelch-like protein 35 20121230 -9606 283214 LOC283214 - - - 11 11q13.5 uncharacterized LOC283214 miscRNA - - - - 20121230 -9606 283218 DKFZp434E1119 - - - 11 11q14.1 uncharacterized DKFZp434E1119 unknown - - - - 20121102 -9606 283219 KCTD21 - KCASH2 HGNC:27452|Ensembl:ENSG00000188997|HPRD:18763|Vega:OTTHUMG00000166497 11 11q14.1 potassium channel tetramerisation domain containing 21 protein-coding KCTD21 potassium channel tetramerisation domain containing 21 O BTB/POZ domain-containing protein KCTD21 20121230 -9606 283226 FNTAP1 - FNTAL1 HGNC:3783 11 11q14.2 farnesyltransferase, CAAX box, alpha pseudogene 1 pseudo FNTAP1 farnesyltransferase, CAAX box, alpha pseudogene 1 O - 20121230 -9606 283229 EFCAB4A - CRACR2B HGNC:28703|MIM:614177|Ensembl:ENSG00000177685|HPRD:14645|Vega:OTTHUMG00000165267 11 11p15.5 EF-hand calcium binding domain 4A protein-coding EFCAB4A EF-hand calcium binding domain 4A O CRAC channel regulator 2B|EF-hand calcium-binding domain-containing protein 4A|calcium release-activated calcium channel regulator 2B 20121230 -9606 283232 TMEM80 - - HGNC:27453|Ensembl:ENSG00000177042|HPRD:14143|Vega:OTTHUMG00000133307 11 11p15.5 transmembrane protein 80 protein-coding TMEM80 transmembrane protein 80 O - 20121230 -9606 283234 CCDC88B - BRLZ|CCDC88|HKRP3|gipie HGNC:26757|MIM:611205|Ensembl:ENSG00000168071|HPRD:10986|Vega:OTTHUMG00000045419 11 11q12.3 coiled-coil domain containing 88B protein-coding CCDC88B coiled-coil domain containing 88B O 78 kDa glucose-regulated protein [GRP78]-interacting protein induced by ER stress|brain leucine zipper domain-containing protein|brain leucine zipper protein|coiled-coil domain-containing protein 88B|hook-related protein 3 20121230 -9606 283236 LOC283236 - - - 11 11q12.3 eukaryotic translation elongation factor 1 delta (guanine nucleotide exchange protein) pseudogene pseudo - - - - 20121230 -9606 283237 TTC9C - - HGNC:28432|Ensembl:ENSG00000162222|HPRD:14530|Vega:OTTHUMG00000167607 11 11q12.3 tetratricopeptide repeat domain 9C protein-coding TTC9C tetratricopeptide repeat domain 9C O TPR repeat protein 9C|tetratricopeptide repeat protein 9C 20121230 -9606 283238 SLC22A24 - NET46 HGNC:28542|MIM:611698|Ensembl:ENSG00000197658|HPRD:14591|Vega:OTTHUMG00000165372 11 11q12.3 solute carrier family 22, member 24 protein-coding SLC22A24 solute carrier family 22, member 24 O solute carrier family 22 member 24 20121230 -9606 283248 RCOR2 - - HGNC:27455|Ensembl:ENSG00000167771|HPRD:15234|Vega:OTTHUMG00000150472 11 11q13.1 REST corepressor 2 protein-coding RCOR2 REST corepressor 2 O - 20121230 -9606 283254 HARBI1 - C11orf77 HGNC:26522|Ensembl:ENSG00000180423|HPRD:08728|Vega:OTTHUMG00000166537 11 11p11.2 harbinger transposase derived 1 protein-coding HARBI1 harbinger transposase derived 1 O harbinger transposase-derived nuclease|putative nuclease HARBI1 20121230 -9606 283257 TRIM51FP - RNF18B|TRIM49B HGNC:43966 11 11p11.12 tripartite motif-containing 51F, pseudogene pseudo TRIM51FP tripartite motif-containing 51F, pseudogene O - 20121230 -9606 283267 LINC00294 - NCRNA00294 HGNC:27456|MIM:612296 11 11p13 long intergenic non-protein coding RNA 294 miscRNA LINC00294 long intergenic non-protein coding RNA 294 O - 20121230 -9606 283270 LOC283270 - - - 11 11p13 uncharacterized LOC283270 protein-coding - - - - 20120508 -9606 283278 LOC283278 - - - 11 11p15.1 uncharacterized LOC283278 protein-coding - - - - 20120508 -9606 283284 IGSF22 - - HGNC:26750|Ensembl:ENSG00000179057|HPRD:08229|Vega:OTTHUMG00000160502 11 11p15.1 immunoglobulin superfamily, member 22 protein-coding IGSF22 immunoglobulin superfamily, member 22 O immunoglobulin superfamily member 22 20121230 -9606 283297 OR10A4 - JCG5|OR10A4P HGNC:15130|Ensembl:ENSG00000170782|HPRD:17664|Vega:OTTHUMG00000165740 11 11p15.4 olfactory receptor, family 10, subfamily A, member 4 protein-coding OR10A4 olfactory receptor, family 10, subfamily A, member 4 O hP2 olfactory receptor|olfactory receptor 10A4|olfactory receptor OR11-87|olfactory receptor, family 10, subfamily A, member 4 pseudogene|olfactory receptor-like protein JCG5 20121230 -9606 283298 OLFML1 UNQ564/PRO1126 UNQ564 HGNC:24473|Ensembl:ENSG00000183801|HPRD:17661|Vega:OTTHUMG00000165527 11 11p15.4 olfactomedin-like 1 protein-coding OLFML1 olfactomedin-like 1 O MVAL564|olfactomedin-like protein 1 20121230 -9606 283299 LOC283299 - - - 11 11p15.4 uncharacterized LOC283299 miscRNA - - - - 20121230 -9606 283303 MRGPRG-AS1 HSD40 C11orf36|HSD-40 HGNC:26691|HPRD:08770 11 11p15.4 MRGPRG antisense RNA 1 miscRNA MRGPRG-AS1 MRGPRG antisense RNA 1 O - 20121230 -9606 283310 OTOGL - C12orf64|DFNB84B HGNC:26901|MIM:614925|Ensembl:ENSG00000165899|HPRD:08815|Vega:OTTHUMG00000150509 12 12q21.31 otogelin-like protein-coding OTOGL otogelin-like O otogelin-like protein 20121230 -9606 283314 C1RL-AS1 UNQ2963 MATL2963 HGNC:27461 12 12p13.31 C1RL antisense RNA 1 miscRNA C1RL-AS1 C1RL antisense RNA 1 O - 20121230 -9606 283316 CD163L1 UNQ6434/PRO23202 CD163B|M160 HGNC:30375|MIM:606079|Ensembl:ENSG00000177675|HPRD:07301|Vega:OTTHUMG00000168325 12 12p13.3 CD163 molecule-like 1 protein-coding CD163L1 CD163 molecule-like 1 O CD163 antigen B|CD163 antigen-like 1|scavenger receptor cysteine-rich type 1 protein M160 20121230 -9606 283320 HSPD1P12 - HSPD1-10P HGNC:35140 12 12p13.31 heat shock 60kDa protein 1 (chaperonin) pseudogene 12 pseudo HSPD1P12 heat shock 60kDa protein 1 (chaperonin) pseudogene 12 O - 20121230 -9606 283332 LOC283332 - - - 12 12q13.12 uncharacterized LOC283332 miscRNA - - - - 20121230 -9606 283335 LOC283335 - - - 12 12q13.13 uncharacterized LOC283335 miscRNA - - - - 20121230 -9606 283337 ZNF740 - Zfp740 HGNC:27465|Ensembl:ENSG00000139651|HPRD:17329|Vega:OTTHUMG00000170027 12 12q13.13 zinc finger protein 740 protein-coding ZNF740 zinc finger protein 740 O oriLyt TD-element-binding protein 7 20121230 -9606 283345 RPL13P5 - RPL13-2|RPL13L|RPL13_4_1199|RRPL13L HGNC:30363 12 12p13.31 ribosomal protein L13 pseudogene 5 pseudo RPL13P5 ribosomal protein L13 pseudogene 5 O - 20121230 -9606 283349 RASSF3 - RASSF5 HGNC:14271|MIM:607019|Ensembl:ENSG00000153179|HPRD:08448|Vega:OTTHUMG00000168812 12 12q14.2 Ras association (RalGDS/AF-6) domain family member 3 protein-coding RASSF3 Ras association (RalGDS/AF-6) domain family member 3 O Ras association (RalGDS/AF-6) domain family 3|ras association domain-containing protein 3 20121230 -9606 283352 LOC283352 - - - 12 12q24.33 uncharacterized LOC283352 protein-coding - - - - 20120508 -9606 283357 LOC283357 - - - 12 12p13.33 uncharacterized LOC283357 protein-coding - - - - 20120622 -9606 283358 B4GALNT3 - - HGNC:24137|MIM:612220|Ensembl:ENSG00000139044|HPRD:12514|Vega:OTTHUMG00000129283 12 12p13.33 beta-1,4-N-acetyl-galactosaminyl transferase 3 protein-coding B4GALNT3 beta-1,4-N-acetyl-galactosaminyl transferase 3 O B4GalNAcT3|Beta4GalNAc-T3|N-acetyl-beta-glucosaminyl-glycoprotein 4-beta-N- acetylgalactosaminyltransferase|N-acetyl-beta-glucosaminyl-glycoprotein 4-beta-N-acetylgalactosaminyltransferase 2|NGalNAc-T2|beta-1,4-N-acetylgalactosaminyltransferase 3|beta-1,4-N-acetylgalactosaminyltransferase III|beta4GalNAcT3 20121230 -9606 283365 OR6C6 - - HGNC:31293|Ensembl:ENSG00000188324|HPRD:17775|Vega:OTTHUMG00000168101 12 12q13.2 olfactory receptor, family 6, subfamily C, member 6 protein-coding OR6C6 olfactory receptor, family 6, subfamily C, member 6 O olfactory receptor 6C6 20121230 -9606 283372 FLJ25613 - - - 12 12q13.13 uncharacterized protein FLJ25613 protein-coding - - - uncharacterized protein LOC283372 20120710 -9606 283373 ANKRD52 UNQ5837 ANKRD33 HGNC:26614|Ensembl:ENSG00000139645|Vega:OTTHUMG00000170329 12 12q13.3 ankyrin repeat domain 52 protein-coding ANKRD52 ankyrin repeat domain 52 O CVWG5837|PP6-ARS-C|ankyrin repeat domain 33|ankyrin repeat domain-containing protein 52|protein phosphatase 6 ankyrin repeat subunit C|serine/threonine-protein phosphatase 6 regulatory ankyrin repeat subunit C|serine/threonine-protein phosphatase 6 regulatory subunit ARS-C 20121230 -9606 283375 SLC39A5 - LZT-Hs7|ZIP5 HGNC:20502|MIM:608730|Ensembl:ENSG00000139540|Vega:OTTHUMG00000156962 12 12q13.3 solute carrier family 39 (metal ion transporter), member 5 protein-coding SLC39A5 solute carrier family 39 (metal ion transporter), member 5 O ZIP-5|solute carrier family 39 member 5|zinc transporter ZIP5|zrt- and Irt-like protein 5 20121230 -9606 283377 SPRYD4 - - HGNC:27468|Ensembl:ENSG00000176422|HPRD:11251 12 12q13.3 SPRY domain containing 4 protein-coding SPRYD4 SPRY domain containing 4 O SPRY domain-containing protein 4 20121230 -9606 283383 GPR133 - PGR25 HGNC:19893|MIM:613639|Ensembl:ENSG00000111452|HPRD:17061|Vega:OTTHUMG00000168339 12 12q24.33 G protein-coupled receptor 133 protein-coding GPR133 G protein-coupled receptor 133 O G-protein coupled receptor PGR25|probable G-protein coupled receptor 133 20121230 -9606 283385 MORN3 - - HGNC:29807|Ensembl:ENSG00000139714|HPRD:17330|Vega:OTTHUMG00000169075 12 12q24.31 MORN repeat containing 3 protein-coding MORN3 MORN repeat containing 3 O MORN repeat-containing protein 3|membrane occupation and recognition nexus repeat containing protein 20121230 -9606 283387 LOC283387 - - - 12 12q13.2 uncharacterized LOC283387 unknown - - - - 20120508 -9606 283392 TRHDE-AS1 - - HGNC:27471|HPRD:18764 12 12q21.1 TRHDE antisense RNA 1 miscRNA TRHDE-AS1 TRHDE antisense RNA 1 O - 20121230 -9606 283398 SUCLG2P2 - - HGNC:43997 12 12q22 succinate-CoA ligase, GDP-forming, beta subunit pseudogene 2 pseudo SUCLG2P2 succinate-CoA ligase, GDP-forming, beta subunit pseudogene 2 O - 20121230 -9606 283403 LOC283403 hCG_2038621 - - 12 12q13.13 uncharacterized LOC283403 protein-coding - - - uncharacterized protein LOC283403 20121230 -9606 283404 LINC00592 - - HGNC:27474 12 12q13.13 long intergenic non-protein coding RNA 592 miscRNA LINC00592 long intergenic non-protein coding RNA 592 O - 20121230 -9606 283412 RPL29P12 - RPL29_6_558 HGNC:36608 5 5p12 ribosomal protein L29 pseudogene 12 pseudo RPL29P12 ribosomal protein L29 pseudogene 12 O - 20121230 -9606 283416 C12orf61 - - HGNC:26364|Ensembl:ENSG00000221949|HPRD:08070|Vega:OTTHUMG00000169983 12 12q14.1 chromosome 12 open reading frame 61 protein-coding C12orf61 chromosome 12 open reading frame 61 O putative uncharacterized protein C12orf61 20121230 -9606 283417 DPY19L2 UNQ3127/PRO10284 SPATA34|SPGF9 HGNC:19414|MIM:613893|Ensembl:ENSG00000177990|HPRD:08151|Vega:OTTHUMG00000168712 12 12q14.2 dpy-19-like 2 (C. elegans) protein-coding DPY19L2 dpy-19-like 2 (C. elegans) O protein dpy-19 homolog 2|spermatogenesis associated 34 20121230 -9606 283420 CLEC9A UNQ9341/PRO34046 DNGR1|UNQ9341 HGNC:26705|MIM:612252|Ensembl:ENSG00000197992|HPRD:16723|Vega:OTTHUMG00000168398 12 12p13.2 C-type lectin domain family 9, member A protein-coding CLEC9A C-type lectin domain family 9, member A O C-type lectin domain family 9 member A|HEEE9341 20121230 -9606 283422 C12orf36 - - HGNC:26598|HPRD:08166 12 12p13.1 chromosome 12 open reading frame 36 miscRNA C12orf36 chromosome 12 open reading frame 36 O - 20121230 -9606 283431 GAS2L3 - G2L3 HGNC:27475|Ensembl:ENSG00000139354|HPRD:13568|Vega:OTTHUMG00000170439 12 12q23.1 growth arrest-specific 2 like 3 protein-coding GAS2L3 growth arrest-specific 2 like 3 O GAS2-like protein 3|growth arrest-specific protein 2-like 3 20121230 -9606 283432 LINC00485 - - HGNC:27476 12 12q23.2 long intergenic non-protein coding RNA 485 miscRNA LINC00485 long intergenic non-protein coding RNA 485 O - 20121230 -9606 283435 LOC283435 - - - 12 12q24.32 uncharacterized LOC283435 unknown - - - - 20120508 -9606 283440 LOC283440 - - - 12 12p13.33 uncharacterized LOC283440 miscRNA - - - - 20121230 -9606 283446 MYO1H - - HGNC:13879|MIM:614636|Ensembl:ENSG00000174527|HPRD:08227|Vega:OTTHUMG00000169252 12 12q24.11 myosin IH protein-coding MYO1H myosin IH O myosin-1H|myosin-Ih|unconventional myosin-Ih 20121230 -9606 283450 HECTD4 - C12orf51 HGNC:26611|Ensembl:ENSG00000173064|HPRD:08170|Vega:OTTHUMG00000150719 12 12q24.13 HECT domain containing E3 ubiquitin protein ligase 4 protein-coding HECTD4 HECT domain containing E3 ubiquitin protein ligase 4 O AF-1 specific protein phosphatase|HECT domain-containing protein 4|probable E3 ubiquitin-protein ligase C12orf51|probable E3 ubiquitin-protein ligase HECTD4|transmembrane protein C12orf51 20121230 -9606 283454 LOC283454 - - - 12 12q24.23 uncharacterized LOC283454 protein-coding - - - - 20120508 -9606 283455 KSR2 - - HGNC:18610|MIM:610737|Ensembl:ENSG00000171435|HPRD:13952|Vega:OTTHUMG00000169020 12 12q24.22-q24.23 kinase suppressor of ras 2 protein-coding KSR2 kinase suppressor of ras 2 O kinase suppressor of Ras 2 20121230 -9606 283458 NME2P1 - - HGNC:31358 12 12q24.31 NME/NM23 nucleoside diphosphate kinase 2 pseudogene 1 pseudo NME2P1 NME/NM23 nucleoside diphosphate kinase 2 pseudogene 1 O - 20121230 -9606 283459 GATC - 15E1.2 HGNC:25068|Ensembl:ENSG00000257218|HPRD:15934|Vega:OTTHUMG00000047788 12 12q24.31 glutamyl-tRNA(Gln) amidotransferase, subunit C protein-coding GATC glutamyl-tRNA(Gln) amidotransferase, subunit C O glu-AdT subunit C|glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial|glutamyl-tRNA(Gln) amidotransferase, subunit C homolog 20121230 -9606 283460 HNF1A-AS1 - C12orf27|NCRNA00262 HGNC:26785 12 12q24.31 HNF1A antisense RNA 1 miscRNA HNF1A-AS1 HNF1A antisense RNA 1 O - 20121230 -9606 283461 C12orf40 - - HGNC:26846|Ensembl:ENSG00000180116|HPRD:08806|Vega:OTTHUMG00000133567 12 12q12 chromosome 12 open reading frame 40 protein-coding C12orf40 chromosome 12 open reading frame 40 O uncharacterized protein C12orf40 20121230 -9606 283463 MUC19 - MUC-19 HGNC:14362|MIM:612170 12 12q12 mucin 19, oligomeric protein-coding MUC19 mucin 19, oligomeric O mucin-19 20121230 -9606 283464 GXYLT1 - GLT8D3 HGNC:27482|MIM:613321|Ensembl:ENSG00000151233|Vega:OTTHUMG00000169379 12 12q12 glucoside xylosyltransferase 1 protein-coding GXYLT1 glucoside xylosyltransferase 1 O glycosyltransferase 8 domain containing 3|glycosyltransferase 8 domain-containing protein 3 20121230 -9606 283471 TMPRSS12 - - HGNC:28779|Ensembl:ENSG00000186452|HPRD:07133|Vega:OTTHUMG00000169483 12 12q13.12 transmembrane (C-terminal) protease, serine 12 protein-coding TMPRSS12 transmembrane (C-terminal) protease, serine 12 O transmembrane protease serine 12|transmembrane protease, serine 12 20121230 -9606 283475 LOC283475 - - - 13 13q32.2 uncharacterized LOC283475 protein-coding - - - - 20111113 -9606 283480 FGF14-IT1 - - HGNC:42774 13 13q33.1 FGF14 intronic transcript 1 (non-protein coding) miscRNA FGF14-IT1 FGF14 intronic transcript 1 (non-protein coding) O - 20121230 -9606 283481 FGF14-AS2 - - HGNC:44368 13 13q33.1 FGF14 antisense RNA 2 miscRNA FGF14-AS2 FGF14 antisense RNA 2 O - 20121230 -9606 283482 LOC283482 - - - 13 13q33.1 uncharacterized LOC283482 unknown - - - - 20120508 -9606 283483 LINC00551 - - HGNC:43691 13 13q33.3 long intergenic non-protein coding RNA 551 miscRNA LINC00551 long intergenic non-protein coding RNA 551 O - 20121230 -9606 283484 LOC283484 - - - 13 13q33.3 uncharacterized LOC283484 protein-coding - - - - 20120508 -9606 283485 LOC283485 - - - 13 13q34 uncharacterized LOC283485 protein-coding - - - - 20120508 -9606 283486 LINC00567 - - HGNC:43711 13 13q34 long intergenic non-protein coding RNA 567 unknown LINC00567 long intergenic non-protein coding RNA 567 O - 20120511 -9606 283487 LINC00346 - C13orf29|NCRNA00346 HGNC:27492|HPRD:14144 13 13q34 long intergenic non-protein coding RNA 346 miscRNA LINC00346 long intergenic non-protein coding RNA 346 O - 20121230 -9606 283489 CHAMP1 - C13orf8|CAMP|CHAMP|ZNF828 HGNC:20311|Ensembl:ENSG00000198824|HPRD:10707|Vega:OTTHUMG00000017404 13 13q34 chromosome alignment maintaining phosphoprotein 1 protein-coding CHAMP1 chromosome alignment maintaining phosphoprotein 1 O chromosome alignment-maintaining phosphoprotein 1|zinc finger protein 828 20121230 -9606 283491 OR7E156P - - HGNC:31311 13 13q21.31 olfactory receptor, family 7, subfamily E, member 156 pseudogene pseudo OR7E156P olfactory receptor, family 7, subfamily E, member 156 pseudogene O - 20121230 -9606 283501 LOC283501 - - - 13 13q34 uncharacterized LOC283501 protein-coding - - - - 20120508 -9606 283507 SUGT1P3 RP11-2P5.2 SUGT1L1 HGNC:20513 13 13q14.11 suppressor of G2 allele of SKP1 (S. cerevisiae) pseudogene 3 pseudo SUGT1P3 suppressor of G2 allele of SKP1 (S. cerevisiae) pseudogene 3 O - 20121230 -9606 283508 LOC283508 - - - 13 13q13.3 uncharacterized LOC283508 miscRNA - - - - 20120622 -9606 283514 SIAH3 RP11-480G1.1 - HGNC:30553|Ensembl:ENSG00000215475|HPRD:14145|Vega:OTTHUMG00000016862 13 13q14.13 siah E3 ubiquitin protein ligase family member 3 protein-coding SIAH3 siah E3 ubiquitin protein ligase family member 3 O seven in absentia homolog 3|siah-3 20121230 -9606 283516 LOC283516 - - - 13 13q14.11 uncharacterized LOC283516 protein-coding - - - - 20120508 -9606 283518 KCNRG RP11-34F20.6 DLTET HGNC:18893|MIM:607947|Ensembl:ENSG00000198553|HPRD:06404|Vega:OTTHUMG00000140140 13 13q14.2 potassium channel regulator protein-coding KCNRG potassium channel regulator O potassium channel regulatory protein|putative potassium channel regulatory protein 20121230 -9606 283521 LINC00282 RP11-327P2.4 NCRNA00282 HGNC:26737 13 13q14.3 long intergenic non-protein coding RNA 282 miscRNA LINC00282 long intergenic non-protein coding RNA 282 O - 20121230 -9606 283523 TERF1P5 RP11-484H12.6 - HGNC:39686 13 13q11 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene 5 pseudo TERF1P5 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene 5 O - 20121230 -9606 283537 SLC46A3 RP11-97E23.2 FKSG16 HGNC:27501|Ensembl:ENSG00000139508|HPRD:14146|Vega:OTTHUMG00000016650 13 13q12.3 solute carrier family 46, member 3 protein-coding SLC46A3 solute carrier family 46, member 3 O solute carrier family 46 member 3 20121230 -9606 283547 LINC00639 - - HGNC:27502 14 14q21.1 long intergenic non-protein coding RNA 639 miscRNA LINC00639 long intergenic non-protein coding RNA 639 O - 20121230 -9606 283551 C14orf182 - - HGNC:27503|Ensembl:ENSG00000214900|HPRD:13397|Vega:OTTHUMG00000167699 14 14q21.3 chromosome 14 open reading frame 182 protein-coding C14orf182 chromosome 14 open reading frame 182 O uncharacterized protein C14orf182 20121230 -9606 283553 LINC00640 - - HGNC:44291 14 14q22.1 long intergenic non-protein coding RNA 640 miscRNA LINC00640 long intergenic non-protein coding RNA 640 O - 20121230 -9606 283554 GPR137C - TM7SF1L2 HGNC:25445|Ensembl:ENSG00000180998|Vega:OTTHUMG00000171104 14 14q22.1 G protein-coupled receptor 137C protein-coding GPR137C G protein-coupled receptor 137C O G protein-coupled receptor TM7SF1L2|integral membrane protein GPR137C|transmembrane 7 superfamily member 1-like 2 protein 20121230 -9606 283556 UBE2L1 - L-UBC|UBC4|UBCH7N3|UBCL|UBE2L7|UBE2L7P|UBEL1 HGNC:12486|MIM:600012 14 14q22.3 ubiquitin-conjugating enzyme E2L 1 (pseudogene) pseudo UBE2L1 ubiquitin-conjugating enzyme E2L 1 (pseudogene) O - 20121230 -9606 283562 RPL21P9 - - HGNC:19780 14 14q24.1 ribosomal protein L21 pseudogene 9 pseudo RPL21P9 ribosomal protein L21 pseudogene 9 O - 20121230 -9606 283571 PROX2 - PROX-2 HGNC:26715|Ensembl:ENSG00000119608|Vega:OTTHUMG00000171481 14 14q24.3 prospero homeobox 2 protein-coding PROX2 prospero homeobox 2 O homeobox prospero-like protein PROX2|prospero homeobox protein 2 20121230 -9606 283575 LOC283575 - - - 14 14q24.3 uncharacterized LOC283575 unknown - - - - 20121230 -9606 283576 ZDHHC22 hCG_1643587 C14orf59 HGNC:20106|Ensembl:ENSG00000177108|HPRD:12655|Vega:OTTHUMG00000171575 14 14q24.3 zinc finger, DHHC-type containing 22 protein-coding ZDHHC22 zinc finger, DHHC-type containing 22 O DHHC-22|putative palmitoyltransferase ZDHHC22|zinc finger DHHC domain-containing protein 22|zinc finger, DHHC domain containing 22 20121230 -9606 283578 TMED8 L10 FAM15B HGNC:18633|Ensembl:ENSG00000100580|HPRD:18201|Vega:OTTHUMG00000171552 14 14q24.3 transmembrane emp24 protein transport domain containing 8 protein-coding TMED8 transmembrane emp24 protein transport domain containing 8 O family with sequence similarity 15, member B|protein TMED8|transmembrane emp24 domain containing 8 20121230 -9606 283579 C14orf178 - - HGNC:26385|Ensembl:ENSG00000197734|HPRD:08080|Vega:OTTHUMG00000171528 14 14q24.3 chromosome 14 open reading frame 178 protein-coding C14orf178 chromosome 14 open reading frame 178 O uncharacterized protein C14orf178 20121230 -9606 283585 LOC283585 - - - 14 14q31.3 uncharacterized LOC283585 miscRNA - - - - 20121230 -9606 283587 LOC283587 - - - 14 14q31.3 uncharacterized LOC283587 miscRNA - - - - 20121230 -9606 283588 LOC283588 - - - 14 14q32.11 uncharacterized LOC283588 unknown - - - - 20121230 -9606 283592 FAM181A-AS1 - C14orf86 HGNC:20133 14 14q32.12 FAM181A antisense RNA 1 miscRNA FAM181A-AS1 FAM181A antisense RNA 1 O - 20121230 -9606 283596 SNHG10 - C14orf62|LINC00063|NCRNA00063 HGNC:27510 14 14q32.13 small nucleolar RNA host gene 10 (non-protein coding) miscRNA SNHG10 small nucleolar RNA host gene 10 (non-protein coding) O - 20121230 -9606 283598 C14orf177 - - HGNC:26375|Ensembl:ENSG00000176605|HPRD:08075|Vega:OTTHUMG00000167745 14 14q32.2 chromosome 14 open reading frame 177 protein-coding C14orf177 chromosome 14 open reading frame 177 O putative uncharacterized protein C14orf177 20121230 -9606 283600 SLC25A47 HMFN1655 C14orf68|HDMCP HGNC:20115|MIM:609911|Ensembl:ENSG00000140107|HPRD:16620|Vega:OTTHUMG00000171571 14 14q32.2 solute carrier family 25, member 47 protein-coding SLC25A47 solute carrier family 25, member 47 O hepatocellular carcinoma down-regulated mitochondrial carrier protein|hepatocellular carcinoma-downregulated mitochondrial carrier protein|solute carrier family 25 member 47 20121230 -9606 283601 LINC00523 - C14orf70 HGNC:20117|HPRD:16621 14 14q32.2 long intergenic non-protein coding RNA 523 miscRNA LINC00523 long intergenic non-protein coding RNA 523 O - 20121230 -9606 283603 RPL26P4 - RPL26_18_1407 HGNC:19807 14 14q32.31 ribosomal protein L26 pseudogene 4 pseudo RPL26P4 ribosomal protein L26 pseudogene 4 O - 20121230 -9606 283617 OR4K3 - OR14-10|OR4K3P HGNC:14731 14 14q11.2 olfactory receptor, family 4, subfamily K, member 3 (gene/pseudogene) pseudo OR4K3 olfactory receptor, family 4, subfamily K, member 3 (gene/pseudogene) O - 20121230 -9606 283624 LINC00641 - - HGNC:27511 14 14q11.2 long intergenic non-protein coding RNA 641 miscRNA LINC00641 long intergenic non-protein coding RNA 641 O - 20121230 -9606 283629 TSSK4 - C14orf20|STK22E|TSK-4|TSK4|TSSK5 HGNC:19825|MIM:610711|Ensembl:ENSG00000139908|HPRD:12642|Vega:OTTHUMG00000029323 14 14q12 testis-specific serine kinase 4 protein-coding TSSK4 testis-specific serine kinase 4 O serine/threonine kinase 22E|serine/threonine-protein kinase 22E|testis-specific serine/threonine-protein kinase 4 20121230 -9606 283631 BTF3P2 - - HGNC:19924 14 14q12 basic transcription factor 3, pseudogene 2 pseudo BTF3P2 basic transcription factor 3, pseudogene 2 O - 20121230 -9606 283635 FAM177A1 - C14orf24 HGNC:19829|Ensembl:ENSG00000151327|HPRD:12644|Vega:OTTHUMG00000140217 14 14q13.2 family with sequence similarity 177, member A1 protein-coding FAM177A1 family with sequence similarity 177, member A1 O protein FAM177A1 20121230 -9606 283638 CEP170B - CEP170R|FAM68C|KIAA0284 HGNC:20362|Ensembl:ENSG00000099814|HPRD:12388|Vega:OTTHUMG00000170763 14 14q32.33 centrosomal protein 170B protein-coding CEP170B centrosomal protein 170B O Cep170-related|protein KIAA0284 20121230 -9606 283643 C14orf80 - - HGNC:20127|Ensembl:ENSG00000185347|HPRD:12658|Vega:OTTHUMG00000170426 14 14q32.33 chromosome 14 open reading frame 80 protein-coding C14orf80 chromosome 14 open reading frame 80 O uncharacterized protein C14orf80 20121230 -9606 283651 HMGN2P46 - C15orf21|D-PCa-2 HGNC:26817|MIM:611314|HPRD:16622 15 15q21.1 high mobility group nucleosomal binding domain 2 pseudogene 46 pseudo HMGN2P46 high mobility group nucleosomal binding domain 2 pseudogene 46 O - 20121230 -9606 283652 SLC24A5 - JSX|NCKX5|SHEP4 HGNC:20611|MIM:609802|Ensembl:ENSG00000188467|HPRD:18055|Vega:OTTHUMG00000131494 15 15q21.1 solute carrier family 24, member 5 protein-coding SLC24A5 solute carrier family 24, member 5 O Na(+)/K(+)/Ca(2+)-exchange protein 5|ion transporter JSX|sodium/potassium/calcium exchanger 5|solute carrier family 24 (sodium/potassium/calcium exchanger), member 5 20121230 -9606 283658 LOC283658 - - - 15 15q21.1 uncharacterized LOC283658 protein-coding - - - - 20120508 -9606 283659 PRTG - IGDCC5 HGNC:26373|MIM:613261|Ensembl:ENSG00000166450|HPRD:18765|Vega:OTTHUMG00000172591 15 15q21.3 protogenin protein-coding PRTG protogenin O immunoglobulin superfamily, DCC subclass, member 5|protein Shen-Dan|protogenin homolog (Gallus gallus)|shen-dan 20121230 -9606 283663 LOC283663 - - - 15 15q21.3 uncharacterized LOC283663 miscRNA - - - - 20121230 -9606 283665 LOC283665 - - - 15 15q21.2 uncharacterized LOC283665 protein-coding - - - - 20120508 -9606 283673 LINC00277 - NCRNA00277|TMEM84 HGNC:26596|HPRD:08746 15 15q23 long intergenic non-protein coding RNA 277 miscRNA LINC00277 long intergenic non-protein coding RNA 277 O - 20121230 -9606 283674 LOC283674 - - - 15 15q22.32 uncharacterized LOC283674 protein-coding - - - - 20120508 -9606 283677 C15orf60 - - HGNC:25065|Ensembl:ENSG00000183324|Vega:OTTHUMG00000172549 15 15q22 chromosome 15 open reading frame 60 protein-coding C15orf60 chromosome 15 open reading frame 60 O meiotic recombination protein REC114-like 20121230 -9606 283682 LOC283682 - - - 15 15q26.1-q26.2 uncharacterized LOC283682 unknown - - - - 20120511 -9606 283683 LOC283683 - - - 15 15q11.2 uncharacterized LOC283683 miscRNA - - - - 20121230 -9606 283685 GOLGA6L2 - CT105 HGNC:26695|Ensembl:ENSG00000174450|HPRD:08206|Vega:OTTHUMG00000176417 15 15q11.2 golgin A6 family-like 2 protein-coding GOLGA6L2 golgin A6 family-like 2 O cancer/testis antigen 105|golgi autoantigen, golgin subfamily a, 6-like 2|golgin subfamily A member 6-like protein 2 20121230 -9606 283687 C15orf37 - - HGNC:27521|HPRD:14147 15 15q25.1 chromosome 15 open reading frame 37 miscRNA C15orf37 chromosome 15 open reading frame 37 O - 20121230 -9606 283688 LOC283688 - - - 15 15q25.1 uncharacterized LOC283688 miscRNA - - - - 20121230 -9606 283692 LOC283692 - - - 15 15q25.1 uncharacterized LOC283692 miscRNA - - - - 20121230 -9606 283693 LOC283693 - - - 15 15q25.2 actin, alpha 2, smooth muscle, aorta pseudogene pseudo - - - - 20121230 -9606 283694 OR4N4 - OR15-1|OR15-5 HGNC:15375|Ensembl:ENSG00000183706|HPRD:17731|Vega:OTTHUMG00000171739 15 15q11.2 olfactory receptor, family 4, subfamily N, member 4 protein-coding OR4N4 olfactory receptor, family 4, subfamily N, member 4 O olfactory receptor 4N4|olfactory receptor OR15-1|olfactory receptor OR15-5 20121230 -9606 283698 SYNGR2P1 - SYNGR2P HGNC:11500 15 15q13.2 synaptogyrin 2 pseudogene 1 pseudo SYNGR2P1 synaptogyrin 2 pseudogene 1 O - 20121230 -9606 283701 LOC283701 - - - 15 15q13.1 uncharacterized LOC283701 unknown - - - - 20120710 -9606 283710 LOC283710 - - - 15 15q13.3 uncharacterized LOC283710 protein-coding - - - uncharacterized protein LOC283710 20121230 -9606 283711 UBE2CP4 - - HGNC:43553 15 15q13.3 ubiquitin-conjugating enzyme E2C pseudogene 4 pseudo UBE2CP4 ubiquitin-conjugating enzyme E2C pseudogene 4 O - 20121230 -9606 283713 LOC283713 - - - 15 15q13.1 uncharacterized LOC283713 protein-coding - - - - 20120508 -9606 283726 FAM154B - - HGNC:33727|Ensembl:ENSG00000188659|HPRD:16817|Vega:OTTHUMG00000172646 15 15q25.2 family with sequence similarity 154, member B protein-coding FAM154B family with sequence similarity 154, member B O protein FAM154B 20121230 -9606 283728 LOC283728 - - - 15 15q25.2 uncharacterized LOC283728 protein-coding - - - - 20120508 -9606 283731 LOC283731 - - - 15 15q24.1 uncharacterized LOC283731 miscRNA - - - - 20121230 -9606 283737 LOC283737 - - - 15 15q25.3 uncharacterized LOC283737 protein-coding - - - - 20121018 -9606 283738 NTRK3-AS1 - - HGNC:27532 15 15q25.3 NTRK3 antisense RNA 1 miscRNA NTRK3-AS1 NTRK3 antisense RNA 1 O - 20121230 -9606 283742 FAM98B - - HGNC:26773|Ensembl:ENSG00000171262|HPRD:08786|Vega:OTTHUMG00000129831 15 15q14 family with sequence similarity 98, member B protein-coding FAM98B family with sequence similarity 98, member B O protein FAM98B 20121230 -9606 283745 LOC283745 - - - 15 15q14 uncharacterized LOC283745 protein-coding - - - - 20120508 -9606 283747 TCEB1P2 - - HGNC:17762 15 15q15.1 transcription elongation factor B (SIII), polypeptide 1 pseudogene 2 pseudo TCEB1P2 transcription elongation factor B (SIII), polypeptide 1 pseudogene 2 O - 20121230 -9606 283748 PLA2G4D - cPLA2delta HGNC:30038|MIM:612864|Ensembl:ENSG00000159337|HPRD:07145|Vega:OTTHUMG00000172587 15 15q15.1 phospholipase A2, group IVD (cytosolic) protein-coding PLA2G4D phospholipase A2, group IVD (cytosolic) O cPLA2-delta|cytosolic phospholipase A2 delta|phospholipase A2 delta, cytosolic|phospholipase A2 group IVD 20121230 -9606 283755 HERC2P3 - D15F37S4 HGNC:4871|HPRD:18766 15 15q11.1 hect domain and RLD 2 pseudogene 3 pseudo HERC2P3 hect domain and RLD 2 pseudogene 3 O - 20121230 -9606 283761 LOC283761 - - - 15 15q26.1 uncharacterized LOC283761 miscRNA - - - - 20121230 -9606 283767 GOLGA6L1 - - HGNC:37444|Ensembl:ENSG00000197414|Vega:OTTHUMG00000171883 15 15q11.2 golgin A6 family-like 1 protein-coding GOLGA6L1 golgin A6 family-like 1 O Golgin subfamily A member 6-like protein 1|golgi autoantigen, golgin subfamily a, 6-like 1 20121230 -9606 283768 GOLGA8G - - HGNC:25328|HPRD:17331 15 15q13.1 golgin A8 family, member G pseudo GOLGA8G golgin A8 family, member G O - 20121230 -9606 283777 FAM169B - - HGNC:26835|Ensembl:ENSG00000185087|HPRD:08265|Vega:OTTHUMG00000171863 15 15q26.3 family with sequence similarity 169, member B protein-coding FAM169B family with sequence similarity 169, member B O protein FAM169B 20121230 -9606 283788 LOC283788 - - - 15 - FSHD region gene 1 pseudogene pseudo - - - - 20121230 -9606 283796 GOLGA8I - GOLGA8IP|GOLGA9P HGNC:26660|HPRD:08189 15 15q11.2 golgin A8 family, member I pseudo GOLGA8I golgin A8 family, member I O - 20121230 -9606 283804 LOC283804 - - - 15 15q11.2 disintegrin and metalloproteinase domain-containing protein 21-like pseudo - - - - 20121209 -9606 283807 FBXL22 - Fbl22 HGNC:27537|MIM:609088|Ensembl:ENSG00000197361|Ensembl:ENSG00000259662|HPRD:16432|Vega:OTTHUMG00000132905 15 15q22.31 F-box and leucine-rich repeat protein 22 protein-coding FBXL22 F-box and leucine-rich repeat protein 22 O F-box/LRR-repeat protein 22 20121230 -9606 283820 NOMO2 - Nomo|PM5 HGNC:22652|MIM:609158|Ensembl:ENSG00000185164|HPRD:12375|Vega:OTTHUMG00000131366 16 16p12.3 NODAL modulator 2 protein-coding NOMO2 NODAL modulator 2 O nodal modulator 2|pM5 protein 2|pM5 protein, centromeric copy 20121230 -9606 283847 CCDC79 - - HGNC:26675|Ensembl:ENSG00000249961|HPRD:08197|Vega:OTTHUMG00000133562 16 16q22.1 coiled-coil domain containing 79 protein-coding CCDC79 coiled-coil domain containing 79 O coiled-coil domain-containing protein 79 20121230 -9606 283848 CES4A UNQ440/PRO873 CES6|CES8 HGNC:26741|Ensembl:ENSG00000172824|HPRD:07116|Vega:OTTHUMG00000167866 16 16q22.1 carboxylesterase 4A protein-coding CES4A carboxylesterase 4A O carboxylesterase 6|carboxylesterase 8 (putative) 20121230 -9606 283849 EXOC3L1 - EXOC3L HGNC:27540|MIM:614117|Ensembl:ENSG00000179044|HPRD:14148|Vega:OTTHUMG00000137508 16 16q22.1 exocyst complex component 3-like 1 protein-coding EXOC3L1 exocyst complex component 3-like 1 O exocyst complex component 3-like protein|protein Jiangli 20121230 -9606 283854 LOC283854 - - - 16 16q12.1 uncharacterized LOC283854 unknown - - - - 20120508 -9606 283856 LOC283856 - - - 16 16q12.2 uncharacterized LOC283856 miscRNA - - - - 20121230 -9606 283860 LINC00304 - C16orf81|NCRNA00304 HGNC:26713|HPRD:08209 16 16q24.3 long intergenic non-protein coding RNA 304 miscRNA LINC00304 long intergenic non-protein coding RNA 304 O - 20121230 -9606 283861 LOC283861 - - - 16 16q24.3 uncharacterized LOC283861 unknown - - - - 20120508 -9606 283867 LOC283867 - - - 16 16q21 uncharacterized LOC283867 miscRNA - - - - 20121230 -9606 283869 NPW - L8|L8C|PPL8|PPNPW HGNC:30509|MIM:607997|Ensembl:ENSG00000183971|Vega:OTTHUMG00000176914 16 16p13.3 neuropeptide W protein-coding NPW neuropeptide W O hPPL8|preproprotein L8 20121230 -9606 283870 BRICD5 - C16orf79 HGNC:28309|Ensembl:ENSG00000182685|HPRD:14482|Vega:OTTHUMG00000128831 16 16p13.3 BRICHOS domain containing 5 protein-coding BRICD5 BRICHOS domain containing 5 O BRICHOS domain-containing protein C16orf79|chromosome 16 open reading frame 79 20121230 -9606 283871 PGP - - HGNC:8909|MIM:172280|Ensembl:ENSG00000184207|Vega:OTTHUMG00000177047 16 16p13.3 phosphoglycolate phosphatase protein-coding PGP phosphoglycolate phosphatase O PGPase 20121230 -9606 283875 LINC00514 - - HGNC:27549 16 16p13.3 long intergenic non-protein coding RNA 514 miscRNA LINC00514 long intergenic non-protein coding RNA 514 O - 20121230 -9606 283876 FLJ39639 - - - 16 16p13.3 uncharacterized protein FLJ39639 miscRNA - - - - 20121230 -9606 283887 LOC283887 - - - 16 16p12.1 uncharacterized LOC283887 unknown - - - - 20121230 -9606 283888 IL21R-AS1 - - HGNC:27551 16 16p12.2 IL21R antisense RNA 1 miscRNA IL21R-AS1 IL21R antisense RNA 1 O - 20121230 -9606 283897 C16orf54 hCG_1644884 - HGNC:26649|Ensembl:ENSG00000185905|HPRD:08183|Vega:OTTHUMG00000132116 16 16p11.2 chromosome 16 open reading frame 54 protein-coding C16orf54 chromosome 16 open reading frame 54 O transmembrane protein C16orf54 20121230 -9606 283899 INO80E - CCDC95 HGNC:26905|Ensembl:ENSG00000169592|HPRD:08816|Vega:OTTHUMG00000132114 16 16p11.2 INO80 complex subunit E protein-coding INO80E INO80 complex subunit E O coiled-coil domain containing 95|coiled-coil domain-containing protein 95 20121230 -9606 283902 HTA - - - 16 16q22.3 uncharacterized LOC283902 miscRNA - - - - 20121230 -9606 283911 LOC283911 - - - 16 16p11.2 uncharacterized LOC283911 protein-coding - - - - 20120508 -9606 283914 LOC283914 - - - 16 16p11.2-p11.1 uncharacterized LOC283914 miscRNA - - - - 20121230 -9606 283922 LOC283922 - - - 16 16q23.1 pyruvate dehydrogenase phosphatase regulatory subunit pseudogene pseudo - - - - 20121230 -9606 283927 NUDT7 - - HGNC:8054|MIM:609231|Ensembl:ENSG00000140876|Vega:OTTHUMG00000176808 16 16q23.1 nudix (nucleoside diphosphate linked moiety X)-type motif 7 protein-coding NUDT7 nudix (nucleoside diphosphate linked moiety X)-type motif 7 O peroxisomal coenzyme A diphosphatase NUDT7 20121230 -9606 283932 FBXL19-AS1 - NCRNA00095 HGNC:27557|HPRD:14149 16 16p11.2 FBXL19 antisense RNA 1 (head to head) miscRNA FBXL19-AS1 FBXL19 antisense RNA 1 (head to head) O - 20121230 -9606 283933 ZNF843 - - HGNC:28710|Ensembl:ENSG00000176723|Vega:OTTHUMG00000176616 16 16p11.2 zinc finger protein 843 protein-coding ZNF843 zinc finger protein 843 O - 20121230 -9606 283948 NHLRC4 - - HGNC:26700|Ensembl:ENSG00000257108|HPRD:11681|Vega:OTTHUMG00000047857 16 16p13.3 NHL repeat containing 4 protein-coding NHLRC4 NHL repeat containing 4 O NHL-repeat-containing protein 4 20121230 -9606 283951 C16orf91 - CCSMST1|gs103 HGNC:27558|Ensembl:ENSG00000174109|HPRD:17332 16 16p13.3 chromosome 16 open reading frame 91 protein-coding C16orf91 chromosome 16 open reading frame 91 O cattle cerebrum and skeletal muscle-specific protein 1 family member|protein CCSMST1 20121230 -9606 283953 TMEM114 hCG_15406 - HGNC:33227|MIM:611579|Ensembl:ENSG00000232258|Vega:OTTHUMG00000172868 16 16p13.2 transmembrane protein 114 protein-coding TMEM114 transmembrane protein 114 O - 20121230 -9606 283955 PKD1P2 - HG2 HGNC:30066 16 16p13.11 polycystic kidney disease 1 (autosomal dominant) pseudogene 2 pseudo PKD1P2 polycystic kidney disease 1 (autosomal dominant) pseudogene 2 O - 20121230 -9606 283970 PDXDC2P - PDXDC2 HGNC:27559 16 16q22.1 pyridoxal-dependent decarboxylase domain containing 2, pseudogene pseudo PDXDC2P pyridoxal-dependent decarboxylase domain containing 2, pseudogene O - 20121230 -9606 283971 CLEC18C - MRCL|MRCL3 HGNC:28538|Ensembl:ENSG00000157335|HPRD:14587|Vega:OTTHUMG00000176982 16 16q22.1 C-type lectin domain family 18, member C protein-coding CLEC18C C-type lectin domain family 18, member C O C-type lectin domain family 18 member C|mannose receptor-like 3|mannose receptor-like protein 3 20121230 -9606 283981 LINC00685 - CXYorf10|NCRNA00107|PPP2R3B-AS1 HGNC:27560 X|Y Xp22.33; Yp11.3 long intergenic non-protein coding RNA 685 miscRNA LINC00685 long intergenic non-protein coding RNA 685 O - 20121230 -9606 283982 LINC00469 - C17orf54 HGNC:26863|HPRD:08277 17 17q25.1 long intergenic non-protein coding RNA 469 miscRNA LINC00469 long intergenic non-protein coding RNA 469 O - 20121230 -9606 283985 FADS6 FP18279 - HGNC:30459|Ensembl:ENSG00000172782|HPRD:13285|Vega:OTTHUMG00000179188 17 17q25.1 fatty acid desaturase domain family, member 6 protein-coding FADS6 fatty acid desaturase domain family, member 6 O fatty acid desaturase 6 20121230 -9606 283987 HID1 - C17orf28|DMC1|HID-1 HGNC:15736|MIM:605752|Ensembl:ENSG00000167861|HPRD:05766|Vega:OTTHUMG00000166490 17 17q25.1 HID1 domain containing protein-coding HID1 HID1 domain containing O UPF0663 transmembrane protein C17orf28|down-regulated in multiple cancers 1|downregulated in multiple cancer 1|protein hid-1 homolog 20121230 -9606 283989 TSEN54 - PCH2A|PCH4|SEN54L|sen54 HGNC:27561|MIM:608755|Ensembl:ENSG00000182173|HPRD:12291|Vega:OTTHUMG00000179684 17 17q25.1 tRNA splicing endonuclease 54 homolog (S. cerevisiae) protein-coding TSEN54 tRNA splicing endonuclease 54 homolog (S. cerevisiae) O SEN54 homolog|hsSen54|tRNA-intron endonuclease Sen54|tRNA-splicing endonuclease subunit Sen54 20121230 -9606 283991 UBALD2 - FAM100B HGNC:28438|Ensembl:ENSG00000185262|HPRD:14533|Vega:OTTHUMG00000132666 17 17q25.1 UBA-like domain containing 2 protein-coding UBALD2 UBA-like domain containing 2 O family with sequence similarity 100, member B|protein FAM100B 20121230 -9606 283994 C17orf52 - - HGNC:27562 17 17q25.2 chromosome 17 open reading frame 52 unknown C17orf52 chromosome 17 open reading frame 52 O - 20120508 -9606 283999 TMEM235 - ARGM1 HGNC:27563|Ensembl:ENSG00000204278|Vega:OTTHUMG00000170345 17 17q25.3 transmembrane protein 235 protein-coding TMEM235 transmembrane protein 235 O transmembrane protein ENSP00000364084 20121230 -9606 284001 CCDC57 - - HGNC:27564|Ensembl:ENSG00000176155|HPRD:08041|HPRD:14150|Vega:OTTHUMG00000140396 17 17q25.3 coiled-coil domain containing 57 protein-coding CCDC57 coiled-coil domain containing 57 O coiled-coil domain-containing protein 57 20121230 -9606 284004 HEXDC - - HGNC:26307|Ensembl:ENSG00000169660|HPRD:08677|Vega:OTTHUMG00000178836 17 17q25.3 hexosaminidase (glycosyl hydrolase family 20, catalytic domain) containing protein-coding HEXDC hexosaminidase (glycosyl hydrolase family 20, catalytic domain) containing O N-acetyl-beta-galactosaminidase|beta-N-acetylhexosaminidase|beta-hexosaminidase D|hexosaminidase D|hexosaminidase domain-containing protein 20121230 -9606 284009 LOC284009 - - HPRD:18767 17 17p13.3 uncharacterized LOC284009 miscRNA - - - - 20121230 -9606 284013 VMO1 UNQ6350/PRO21055 ERGA6350|PRO21055 HGNC:30387|Ensembl:ENSG00000182853|HPRD:17333|Vega:OTTHUMG00000177898 17 17p13.2 vitelline membrane outer layer 1 homolog (chicken) protein-coding VMO1 vitelline membrane outer layer 1 homolog (chicken) O vitelline membrane outer layer protein 1 homolog 20121230 -9606 284014 LOC284014 - - - 17 17p13.3 uncharacterized LOC284014 unknown - - - - 20121209 -9606 284018 C17orf58 - - HGNC:27568|Ensembl:ENSG00000186665|HPRD:14151|Vega:OTTHUMG00000179782 17 17q24.2 chromosome 17 open reading frame 58 protein-coding C17orf58 chromosome 17 open reading frame 58 O UPF0450 protein C17orf58 20121230 -9606 284021 MILR1 - Allergin-1|C17orf60|MCA-32|MCA32 HGNC:27570 17 17q23.3 mast cell immunoglobulin-like receptor 1 protein-coding MILR1 mast cell immunoglobulin-like receptor 1 O ALLERGIN-1L|ALLERGIN-1S1|allergin-1|allergy inhibitory receptor 1|mast cell antigen 32|probable mast cell antigen 32 homolog 20121230 -9606 284023 LOC284023 - - - 17 17p13.1 uncharacterized LOC284023 miscRNA - - - - 20121230 -9606 284029 LINC00324 - C17orf44|NCRNA00324 HGNC:26628|HPRD:08755 17 17p13.1 long intergenic non-protein coding RNA 324 miscRNA LINC00324 long intergenic non-protein coding RNA 324 O - 20121230 -9606 284034 LINC00670 - - HGNC:44338|HPRD:08176 17 17p12 long intergenic non-protein coding RNA 670 miscRNA LINC00670 long intergenic non-protein coding RNA 670 O - 20121230 -9606 284040 CDRT4 - - HGNC:14383|Ensembl:ENSG00000239704|HPRD:08208|Vega:OTTHUMG00000059070 17 17p12 CMT1A duplicated region transcript 4 protein-coding CDRT4 CMT1A duplicated region transcript 4 O CMT1A duplicated region transcript 4 protein 20121230 -9606 284047 CCDC144B - - HGNC:26704|HPRD:08777 17 17p11.2 coiled-coil domain containing 144B (pseudogene) pseudo CCDC144B coiled-coil domain containing 144B (pseudogene) O - 20121230 -9606 284048 LOC284048 - - - 17 17p11.2 FLJ11800 related gene protein-coding - - - - 20100404 -9606 284058 KANSL1 - CENP-36|KDVS|KIAA1267|MSL1v1|NSL1|hMSL1v1 HGNC:24565|MIM:612452|Ensembl:ENSG00000120071|HPRD:11254|Vega:OTTHUMG00000178026 17 17q21.31 KAT8 regulatory NSL complex subunit 1 protein-coding KANSL1 KAT8 regulatory NSL complex subunit 1 O MLL1/MLL complex subunit KANSL1|MSL1 homolog 1|NSL complex protein NSL1|centromere protein 36|male-specific lethal 1 homolog|non-specific lethal 1 homolog 20121230 -9606 284064 RPL29P31 - RPL29_11_1549 HGNC:35944 17 17q21.31 ribosomal protein L29 pseudogene 31 pseudo RPL29P31 ribosomal protein L29 pseudogene 31 O - 20121230 -9606 284067 C17orf105 - - HGNC:37241|Ensembl:ENSG00000231256|Vega:OTTHUMG00000180890 17 17q21.31 chromosome 17 open reading frame 105 protein-coding C17orf105 chromosome 17 open reading frame 105 O uncharacterized protein C17orf105 20121230 -9606 284069 FAM171A2 - - HGNC:30480|Ensembl:ENSG00000161682|Vega:OTTHUMG00000132421 17 17q21.31 family with sequence similarity 171, member A2 protein-coding FAM171A2 family with sequence similarity 171, member A2 O protein FAM171A2 20121230 -9606 284071 C17orf104 - - HGNC:26670|Ensembl:ENSG00000180336|HPRD:18768|Vega:OTTHUMG00000153039 17 17q21.31 chromosome 17 open reading frame 104 protein-coding C17orf104 chromosome 17 open reading frame 104 O uncharacterized protein C17orf104 20121230 -9606 284072 LOC284072 - - - 17 17q24.3 uncharacterized LOC284072 unknown - - - - 20120511 -9606 284076 TTLL6 - TTL.6 HGNC:26664|MIM:610849|Ensembl:ENSG00000170703|HPRD:08763|Vega:OTTHUMG00000156978 17 17q21.32 tubulin tyrosine ligase-like family, member 6 protein-coding TTLL6 tubulin tyrosine ligase-like family, member 6 O tubulin polyglutamylase TTLL6|tubulin--tyrosine ligase-like protein 6 20121230 -9606 284080 LOC284080 - - - 17 17q21.33 uncharacterized LOC284080 miscRNA - - - - 20121230 -9606 284083 C17orf47 - - HGNC:26844|Ensembl:ENSG00000181013|HPRD:08269|Vega:OTTHUMG00000179244 17 17q22 chromosome 17 open reading frame 47 protein-coding C17orf47 chromosome 17 open reading frame 47 O uncharacterized protein C17orf47 20121230 -9606 284085 KRT18P55 - - HGNC:26874|HPRD:08284 17 17q11.2 keratin 18 pseudogene 55 pseudo KRT18P55 keratin 18 pseudogene 55 O - 20121230 -9606 284086 NEK8 - JCK|NEK12A|NPHP9 HGNC:13387|MIM:609799|Ensembl:ENSG00000160602|HPRD:14822|Vega:OTTHUMG00000179454 17 17q11.1 NIMA-related kinase 8 protein-coding NEK8 NIMA-related kinase 8 O NIMA (never in mitosis gene a)- related kinase 8|NIMA-family kinase NEK8|NIMA-related kinase 12a|nephrocystin 9|never in mitosis A-related kinase 8|nimA-related protein kinase 8|nima-related protein kinase 12a|serine/threonine-protein kinase Nek8|serine/thrionine-protein kinase NEK8 20121230 -9606 284098 PIGW - Gwt1 HGNC:23213|MIM:610275|Ensembl:ENSG00000184886|HPRD:11432|Vega:OTTHUMG00000133067 17 17q12 phosphatidylinositol glycan anchor biosynthesis, class W protein-coding PIGW phosphatidylinositol glycan anchor biosynthesis, class W O PIG-W|phosphatidylinositol glycan, class W|phosphatidylinositol-glycan biosynthesis class W protein 20121230 -9606 284099 C17orf78 - - HGNC:26831|Ensembl:ENSG00000167230|HPRD:08262|Vega:OTTHUMG00000180490 17 17q12 chromosome 17 open reading frame 78 protein-coding C17orf78 chromosome 17 open reading frame 78 O uncharacterized protein C17orf78 20121230 -9606 284100 LOC284100 - - - 17 17q12 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide pseudogene pseudo - - - - 20121230 -9606 284106 CISD3 - Miner2 HGNC:27578|MIM:611933|Ensembl:ENSG00000230055|Vega:OTTHUMG00000178426 17 17q12 CDGSH iron sulfur domain 3 protein-coding CISD3 CDGSH iron sulfur domain 3 O CDGSH iron sulfur domain-containing protein 3, mitochondrial|CDGSH iron-sulfur domain-containing protein 3, mitochondrial|mitoNEET related 2|mitoNEET-related protein 2 20121230 -9606 284108 LOC284108 - - - 17 17q21.2 uncharacterized LOC284108 protein-coding - - - - 20120508 -9606 284110 GSDMA FKSG9 GSDM|GSDM1 HGNC:13311|MIM:611218|Ensembl:ENSG00000167914|HPRD:17081|Vega:OTTHUMG00000179522 17 17q21.1 gasdermin A protein-coding GSDMA gasdermin A O gasdermin 1|gasdermin-1|gasdermin-A 20121230 -9606 284111 SLC13A5 - NACT HGNC:23089|MIM:608305|Ensembl:ENSG00000141485|HPRD:10512|Vega:OTTHUMG00000102052 17 17p13.1 solute carrier family 13 (sodium-dependent citrate transporter), member 5 protein-coding SLC13A5 solute carrier family 13 (sodium-dependent citrate transporter), member 5 O Na(+)/citrate cotransporter|sodium-coupled citrate transporter|sodium-dependent citrate transporter|solute carrier family 13 member 5|solute carrier family 13, member 5 20121230 -9606 284112 LOC284112 - - - 17 17p13.2 uncharacterized LOC284112 protein-coding - - - - 20111113 -9606 284114 TMEM102 - CBAP HGNC:26722|MIM:613936|Ensembl:ENSG00000181284|HPRD:08215|Vega:OTTHUMG00000132901 17 17p13.1 transmembrane protein 102 protein-coding TMEM102 transmembrane protein 102 O common beta-chain associated protein 20121230 -9606 284116 KRT42P - - HGNC:27581 17 17q21.2 keratin 42 pseudogene pseudo KRT42P keratin 42 pseudogene O - 20121230 -9606 284119 PTRF FKSG13 CAVIN|CAVIN1|CGL4|cavin-1 HGNC:9688|MIM:603198|Ensembl:ENSG00000177469|HPRD:04433|Vega:OTTHUMG00000180137 17 17q21.2 polymerase I and transcript release factor protein-coding PTRF polymerase I and transcript release factor O RNA polymerase I and transcript release factor|TTF-I interacting peptide 12 20121230 -9606 284123 FAM27L - - HGNC:32410|HPRD:17335 17 17p11.2 family with sequence similarity 27-like miscRNA FAM27L family with sequence similarity 27-like O - 20121230 -9606 284124 FLJ36000 - - - 17 17p11.2 uncharacterized FLJ36000 miscRNA - - - - 20121230 -9606 284129 SLC26A11 - - HGNC:14471|MIM:610117|Ensembl:ENSG00000181045|HPRD:11569|Vega:OTTHUMG00000133419 17 17q25.3 solute carrier family 26, member 11 protein-coding SLC26A11 solute carrier family 26, member 11 O sodium-independent sulfate anion transporter 20121230 -9606 284131 ENDOV - - HGNC:26640|Ensembl:ENSG00000173818|HPRD:08758|Vega:OTTHUMG00000164638 17 17q25.3 endonuclease V protein-coding ENDOV endonuclease V O - 20121230 -9606 284161 GDPD1 - GDE4 HGNC:20883|Ensembl:ENSG00000153982|HPRD:08223|Vega:OTTHUMG00000179376 17 17q22 glycerophosphodiester phosphodiesterase domain containing 1 protein-coding GDPD1 glycerophosphodiester phosphodiesterase domain containing 1 O glycerophosphodiester phosphodiesterase 4|glycerophosphodiester phosphodiesterase domain-containing protein 1 20121230 -9606 284167 POLRMTP1 - POLRMTL HGNC:28865 17 17q23.2 polymerase (RNA) mitochondrial (DNA directed) pseudogene 1 pseudo POLRMTP1 polymerase (RNA) mitochondrial (DNA directed) pseudogene 1 O - 20121230 -9606 284184 C17orf89 - - HGNC:33551|Ensembl:ENSG00000224877|Vega:OTTHUMG00000177867 17 17q25.3 chromosome 17 open reading frame 89 protein-coding C17orf89 chromosome 17 open reading frame 89 O uncharacterized protein C17orf89 20121230 -9606 284185 LINC00482 - C17orf55 HGNC:26816|HPRD:08254 17 17q25.3 long intergenic non-protein coding RNA 482 miscRNA LINC00482 long intergenic non-protein coding RNA 482 O - 20121230 -9606 284186 TMEM105 - - HGNC:26794|Ensembl:ENSG00000185332|HPRD:08247|Vega:OTTHUMG00000177905 17 17q25.3 transmembrane protein 105 protein-coding TMEM105 transmembrane protein 105 O - 20121230 -9606 284187 DKFZp761P0212 - - - 17 17q25.3 uncharacterized protein DKFZp761P0212 protein-coding - - - - 20120909 -9606 284191 LOC284191 - - - 17 17p11.2 uncharacterized LOC284191 unknown - - - - 20120508 -9606 284194 LGALS9B - - HGNC:24842|Ensembl:ENSG00000170298|Vega:OTTHUMG00000130730 17 17p11.2 lectin, galactoside-binding, soluble, 9B protein-coding LGALS9B lectin, galactoside-binding, soluble, 9B O gal-9B|galectin-9 like|galectin-9 pseudogene|galectin-9-like protein A|galectin-9B 20121230 -9606 284196 LOC284196 - - - 17 17p11.2 keratin pseudogene pseudo - - - - 20121209 -9606 284203 RNASEH1P1 - RNASEH1|RNASEH1P|RNH1 HGNC:10049 17 17p11.2 ribonuclease H1 pseudogene 1 pseudo RNASEH1P1 ribonuclease H1 pseudogene 1 O - 20121230 -9606 284207 METRNL - - HGNC:27584|Ensembl:ENSG00000176845|HPRD:11255|Vega:OTTHUMG00000177771 17 17q25.3 meteorin, glial cell differentiation regulator-like protein-coding METRNL meteorin, glial cell differentiation regulator-like O meteorin-like protein 20121230 -9606 284215 DLGAP1-AS5 - - HGNC:27586 18 18p11.31 DLGAP1 antisense RNA 5 miscRNA DLGAP1-AS5 DLGAP1 antisense RNA 5 O - 20121230 -9606 284217 LAMA1 - LAMA|S-LAM-alpha HGNC:6481|MIM:150320|Ensembl:ENSG00000101680|HPRD:01033|Vega:OTTHUMG00000133478 18 18p11.3 laminin, alpha 1 protein-coding LAMA1 laminin, alpha 1 O S-LAM alpha|S-laminin subunit alpha|laminin A chain|laminin subunit alpha-1|laminin-3 subunit alpha 20121230 -9606 284219 LOC284219 - - - 18 18p11.22 uncharacterized LOC284219 unknown - - - - 20120508 -9606 284230 RPL36AP49 - RPL36A_23_1584 HGNC:36274 18 18p11.21 ribosomal protein L36a pseudogene 49 pseudo RPL36AP49 ribosomal protein L36a pseudogene 49 O - 20121230 -9606 284232 ANKRD20A9P - - HGNC:42023 13 13q11 ankyrin repeat domain 20 family, member A9, pseudogene pseudo ANKRD20A9P ankyrin repeat domain 20 family, member A9, pseudogene O - 20121230 -9606 284233 CYP4F35P - - HGNC:39954 18 18p11.21 cytochrome P450, family 4, subfamily F, polypeptide 35, pseudogene pseudo CYP4F35P cytochrome P450, family 4, subfamily F, polypeptide 35, pseudogene O - 20121230 -9606 284240 LOC284240 - - - 18 18q23 uncharacterized LOC284240 unknown - - - - 20120508 -9606 284241 FLJ25715 - - HPRD:08074 18 18q23 uncharacterized protein FLJ25715 unknown - - - - 20121230 -9606 284242 LOC284242 - - - 18 18q12.1 uncharacterized LOC284242 unknown - - - - 20120511 -9606 284244 LOC284244 - - - 18 18q12.1 uncharacterized LOC284244 unknown - - - - 20120508 -9606 284252 KCTD1 hCG_38480 C18orf5 HGNC:18249|MIM:613420|Ensembl:ENSG00000134504|HPRD:11059|Vega:OTTHUMG00000131947 18 18q11.2 potassium channel tetramerisation domain containing 1 protein-coding KCTD1 potassium channel tetramerisation domain containing 1 O BTB/POZ domain-containing protein KCTD1|potassium channel tetramerization domain-containing protein 1 20121230 -9606 284254 DYNAP - C18orf26 HGNC:26808|Ensembl:ENSG00000178690|HPRD:08251|Vega:OTTHUMG00000132709 18 18q21.2 dynactin associated protein protein-coding DYNAP dynactin associated protein O dynactin-associated protein|uncharacterized protein C18orf26 20121230 -9606 284257 BOD1L2 - BOD1P|FAM44C HGNC:28505|Ensembl:ENSG00000228075|Vega:OTTHUMG00000180124 18 18q21.31 biorientation of chromosomes in cell division 1-like 2 protein-coding BOD1L2 biorientation of chromosomes in cell division 1-like 2 O biorientation of chromosomes in cell division 1 pseudogene|biorientation of chromosomes in cell division protein 1-like 2|family with sequence similarity 44, member C|putative biorientation of chromosomes in cell division protein 1 pseudogene|putative biorientation of chromosomes in cell division protein 1-like 2|putative protein FAM44C 20121230 -9606 284260 LOC284260 hCG_1815375 - - 18 18q12.3 uncharacterized LOC284260 miscRNA - - - - 20121230 -9606 284263 LOC284263 - - - 18 18q21.1 uncharacterized LOC284263 unknown - - - - 20120508 -9606 284266 SIGLEC15 - CD33L3|HsT1361|SIGLEC-15 HGNC:27596|Ensembl:ENSG00000197046|HPRD:13011|Vega:OTTHUMG00000170870 18 18q12.3 sialic acid binding Ig-like lectin 15 protein-coding SIGLEC15 sialic acid binding Ig-like lectin 15 O CD33 antigen-like 3|CD33 molecule-like 3|sialic acid-binding Ig-like lectin 15 20121230 -9606 284269 LOC284269 - - - 18 18p11.21 chromosome 9 open reading frame 86 pseudogene 1 pseudo - - - - 20121230 -9606 284273 ZADH2 - - HGNC:28697|Ensembl:ENSG00000180011|HPRD:15685|Vega:OTTHUMG00000132858 18 18q22.3 zinc binding alcohol dehydrogenase domain containing 2 protein-coding ZADH2 zinc binding alcohol dehydrogenase domain containing 2 O zinc-binding alcohol dehydrogenase domain-containing protein 2 20121230 -9606 284274 C18orf62 - - HGNC:27598|Ensembl:ENSG00000206026|HPRD:18769|Vega:OTTHUMG00000179126 18 18q23 chromosome 18 open reading frame 62 protein-coding C18orf62 chromosome 18 open reading frame 62 O putative uncharacterized protein C18orf62 20121230 -9606 284276 LOC284276 - - - 18 18q23 uncharacterized LOC284276 miscRNA - - - - 20121230 -9606 284288 RSL24D1P11 - - HGNC:37881 18 18q21.31 ribosomal L24 domain containing 1 pseudogene 11 pseudo RSL24D1P11 ribosomal L24 domain containing 1 pseudogene 11 O - 20121230 -9606 284293 HMSD - ACC-6|C18orf53|HSMD-v HGNC:23037|MIM:612086|Ensembl:ENSG00000221887|Vega:OTTHUMG00000060593 18 18q22.1 histocompatibility (minor) serpin domain containing protein-coding HMSD histocompatibility (minor) serpin domain containing O minor histocompatibility protein HMSD|serpin-like protein HMSD 20121230 -9606 284294 LOC284294 - - - 18 18q22.1 uncharacterized LOC284294 miscRNA - - - - 20121230 -9606 284297 SSC5D - - HGNC:26641|Ensembl:ENSG00000179954|HPRD:11444|Vega:OTTHUMG00000180855 19 19q13.42 scavenger receptor cysteine rich domain containing (5 domains) protein-coding SSC5D scavenger receptor cysteine rich domain containing (5 domains) O scavenger receptor cysteine-rich glycoprotein|soluble scavenger protein with 5 SRCR domains|soluble scavenger receptor cysteine-rich domain-containing protein SSC5D|soluble scavenger with 5 domains 20121230 -9606 284306 ZNF547 - - HGNC:26432|Ensembl:ENSG00000152433|HPRD:15831 19 19q13.43 zinc finger protein 547 protein-coding ZNF547 zinc finger protein 547 O - 20121230 -9606 284307 ZIK1 - ZNF762 HGNC:33104|Ensembl:ENSG00000171649|HPRD:18321 19 19q13.43 zinc finger protein interacting with K protein 1 homolog (mouse) protein-coding ZIK1 zinc finger protein interacting with K protein 1 homolog (mouse) O zinc finger protein 762|zinc finger protein interacting with ribonucleoprotein K 20121230 -9606 284309 ZNF776 - - HGNC:26765|Ensembl:ENSG00000152443|HPRD:08237|Vega:OTTHUMG00000156943 19 19q13.43 zinc finger protein 776 protein-coding ZNF776 zinc finger protein 776 O - 20121230 -9606 284312 ZSCAN1 - MZF-1|ZNF915 HGNC:23712|Ensembl:ENSG00000152467|HPRD:15897 19 19q13.43 zinc finger and SCAN domain containing 1 protein-coding ZSCAN1 zinc finger and SCAN domain containing 1 O zinc finger and SCAN domain-containing protein 1|zinc finger with SCAN domain 1 20121230 -9606 284323 ZNF780A - ZNF780 HGNC:27603|Ensembl:ENSG00000197782|HPRD:17336|Vega:OTTHUMG00000155119 19 19q13.2 zinc finger protein 780A protein-coding ZNF780A zinc finger protein 780A O - 20121230 -9606 284325 C19orf54 - - HGNC:24758|Ensembl:ENSG00000188493|HPRD:13449|Vega:OTTHUMG00000150174 19 19q13.2 chromosome 19 open reading frame 54 protein-coding C19orf54 chromosome 19 open reading frame 54 O UPF0692 protein C19orf54 20121230 -9606 284336 LOC284336 - - - 19 19q13.31 uncharacterized LOC284336 protein-coding - - - - 20120126 -9606 284338 PRR19 - - HGNC:33728|Ensembl:ENSG00000188368|HPRD:14703 19 19q13.2 proline rich 19 protein-coding PRR19 proline rich 19 O proline-rich protein 19 20121230 -9606 284339 TMEM145 - - HGNC:26912|Ensembl:ENSG00000167619|HPRD:08300 19 19q13.2 transmembrane protein 145 protein-coding TMEM145 transmembrane protein 145 O - 20121230 -9606 284340 CXCL17 UNQ473/PRO842 DMC|Dcip1|UNQ473|VCC-1|VCC1 HGNC:19232|MIM:611387|Ensembl:ENSG00000189377|HPRD:18264 19 19q13.2 chemokine (C-X-C motif) ligand 17 protein-coding CXCL17 chemokine (C-X-C motif) ligand 17 O C-X-C motif chemokine 17|VEGF co-regulated chemokine 1|dendritic cell and monocyte chemokine-like protein 20121230 -9606 284344 LOC284344 - - - 19 19q13.32 uncharacterized LOC284344 miscRNA - - - - 20121230 -9606 284346 ZNF575 - - HGNC:27606|Ensembl:ENSG00000176472|HPRD:15854 19 19q13.31 zinc finger protein 575 protein-coding ZNF575 zinc finger protein 575 O - 20121230 -9606 284348 LYPD5 UNQ1908/PRO4356 PRO4356 HGNC:26397|Ensembl:ENSG00000159871|HPRD:08084 19 19q13.31 LY6/PLAUR domain containing 5 protein-coding LYPD5 LY6/PLAUR domain containing 5 O ly6/PLAUR domain-containing protein 5|metastasis-associated protein 20121230 -9606 284349 ZNF283 - HZF41 HGNC:13077|Ensembl:ENSG00000167637|Vega:OTTHUMG00000182186 19 19q13.31 zinc finger protein 283 protein-coding ZNF283 zinc finger protein 283 O HZF19|zinc finger protein 41|zinc finger protein HZF19 20121230 -9606 284352 PPP1R37 - LRRC68 HGNC:27607|Ensembl:ENSG00000104866|Vega:OTTHUMG00000168143 19 19q13.32 protein phosphatase 1, regulatory subunit 37 protein-coding PPP1R37 protein phosphatase 1, regulatory subunit 37 O leucine rich repeat containing 68|leucine-rich repeat-containing protein 68|protein phosphatase 1 regulatory subunit 37 20121230 -9606 284353 NKPD1 - - HGNC:24739|Ensembl:ENSG00000179846|HPRD:11393 19 19q13.32 NTPase, KAP family P-loop domain containing 1 protein-coding NKPD1 NTPase, KAP family P-loop domain containing 1 O NTPase KAP family P-loop domain-containing protein 1 20121230 -9606 284355 TPRX1 - TPRX HGNC:32174|MIM:611166|Ensembl:ENSG00000178928|HPRD:13447|Vega:OTTHUMG00000170628 19 19q13.33 tetra-peptide repeat homeobox 1 protein-coding TPRX1 tetra-peptide repeat homeobox 1 O CRX like homeobox 2|tetra-peptide repeat homeobox protein 1 20121230 -9606 284358 MAMSTR - MASTR HGNC:26689|MIM:610349|Ensembl:ENSG00000176909|HPRD:08204 19 19q13.33 MEF2 activating motif and SAP domain containing transcriptional regulator protein-coding MAMSTR MEF2 activating motif and SAP domain containing transcriptional regulator O MEF2-activating SAP transcriptional regulator|MEF2-activating SAP transcriptional regulatory protein|MEF2-activating motif and SAP domain-containing transcriptional regulator|likely ortholog of MEF2-activating SAP transcriptional regulator 20121230 -9606 284359 IZUMO1 - IZUMO HGNC:28539|MIM:609278|Ensembl:ENSG00000182264|HPRD:14589 19 19q13.33 izumo sperm-egg fusion 1 protein-coding IZUMO1 izumo sperm-egg fusion 1 O OBF|izumo sperm-egg fusion protein 1|oocyte binding/fusion factor|sperm-specific protein Izumo 20121230 -9606 284361 EMC10 UNQ764/PRO1556 C19orf63|HSM1|HSS1|INM02 HGNC:27609|MIM:614545|Ensembl:ENSG00000161671|HPRD:14153 19 19q13.33 ER membrane protein complex subunit 10 protein-coding EMC10 ER membrane protein complex subunit 10 O UPF0510 protein INM02|hematopoietic signal peptide-containing membrane domain-containing 1|hematopoietic signal peptide-containing membrane domain-containing protein 1|hematopoietic signal peptide-containing secreted 1 20121230 -9606 284365 MGC45922 - - - 19 19q13.33 uncharacterized LOC284365 miscRNA - - - - 20121230 -9606 284366 KLK9 - KLK-L3|KLKL3 HGNC:6370|MIM:605504|Ensembl:ENSG00000213022|HPRD:05692 19 19q13.41 kallikrein-related peptidase 9 protein-coding KLK9 kallikrein-related peptidase 9 O kallikrein-9|kallikrein-like protein 3 20121230 -9606 284367 SIGLEC17P - HSPC078|SIGLECP2|SIGLECP3 HGNC:15604 19 19q13.3 sialic acid binding Ig-like lectin 17, pseudogene pseudo SIGLEC17P sialic acid binding Ig-like lectin 17, pseudogene O - 20121230 -9606 284369 SIGLECL1 - C19orf75 HGNC:26856|Ensembl:ENSG00000179213|HPRD:08275 19 19q13.41 SIGLEC family like 1 protein-coding SIGLECL1 SIGLEC family like 1 O SIGLEC family-like protein 1 20121230 -9606 284370 ZNF615 - - HGNC:24740|Ensembl:ENSG00000197619|HPRD:15875 19 19q13.41 zinc finger protein 615 protein-coding ZNF615 zinc finger protein 615 O - 20121230 -9606 284371 ZNF841 - - HGNC:27611|Ensembl:ENSG00000197608 19 19q13.41 zinc finger protein 841 protein-coding ZNF841 zinc finger protein 841 O - 20121230 -9606 284373 LOC284373 - - - 19 19q13.41 uncharacterized LOC284373 miscRNA - - - - 20121018 -9606 284379 LOC284379 - - - 19 19q13.42 solute carrier family 7 (cationic amino acid transporter, y+ system), member 3 pseudogene pseudo - - - - 20121230 -9606 284382 ACTL9 HSD21 - HGNC:28494|Ensembl:ENSG00000181786|HPRD:14562 19 19p13.2 actin-like 9 protein-coding ACTL9 actin-like 9 O actin-like protein 9 20121230 -9606 284383 OR2Z1 - OR19-4|OR2Z2 HGNC:15391|Ensembl:ENSG00000181733|HPRD:17717 19 19p13.2 olfactory receptor, family 2, subfamily Z, member 1 protein-coding OR2Z1 olfactory receptor, family 2, subfamily Z, member 1 O olfactory receptor 2Z1|olfactory receptor 2Z2|olfactory receptor OR19-4|olfactory receptor, family 2, subfamily Z, member 2 20121230 -9606 284385 LOC284385 - - Ensembl:ENSG00000267106|Vega:OTTHUMG00000180135 19 19p13.2 uncharacterized LOC284385 protein-coding - - - uncharacterized protein LOC284385 20121230 -9606 284390 ZNF763 - ZNF|ZNF440L HGNC:27614|Ensembl:ENSG00000197054|HPRD:18509|Vega:OTTHUMG00000156430 19 19p13.2 zinc finger protein 763 protein-coding ZNF763 zinc finger protein 763 O DNA-binding protein|zinc finger protein 440 like 20121230 -9606 284391 ZNF844 - - HGNC:25932|Ensembl:ENSG00000223547|Vega:OTTHUMG00000156405 19 19p13.2 zinc finger protein 844 protein-coding ZNF844 zinc finger protein 844 O - 20121230 -9606 284393 RPL10P16 - RPL10_6_1628 HGNC:36882 19 19p13.2 ribosomal protein L10 pseudogene 16 pseudo RPL10P16 ribosomal protein L10 pseudogene 16 O - 20121230 -9606 284395 LOC284395 - - - 19 19q12 uncharacterized LOC284395 miscRNA - - - - 20121230 -9606 284402 SCGB2B2 - SCGB4A2|SCGBL HGNC:27616|Ensembl:ENSG00000205209|HPRD:18770 19 19q13.11 secretoglobin, family 2B, member 2 protein-coding SCGB2B2 secretoglobin, family 2B, member 2 O secretoglobin family 2B member 2|secretoglobin-like protein 20121230 -9606 284403 WDR62 - C19orf14|MCPH2 HGNC:24502|MIM:613583|Ensembl:ENSG00000075702|HPRD:10721|Vega:OTTHUMG00000048139 19 19q13.12 WD repeat domain 62 protein-coding WDR62 WD repeat domain 62 O WD repeat-containing protein 62|microcephaly, primary autosomal recessive 2 20121230 -9606 284406 ZFP82 - ZNF545 HGNC:28682|Ensembl:ENSG00000181007|HPRD:11725|Vega:OTTHUMG00000048146 19 19q13.12 ZFP82 zinc finger protein protein-coding ZFP82 ZFP82 zinc finger protein O zfp-82|zinc finger protein 545|zinc finger protein 82 homolog|zinc finger protein 85 20121230 -9606 284408 ZNF790-AS1 - - HGNC:27617 19 19q13.13 ZNF790 antisense RNA 1 miscRNA ZNF790-AS1 ZNF790 antisense RNA 1 O - 20121230 -9606 284412 LOC284412 - - - 19 19q13.12 uncharacterized LOC284412 miscRNA - - - - 20121230 -9606 284415 VSTM1 UNQ3033/PRO9835 SIRL1|UNQ3033 HGNC:29455|Ensembl:ENSG00000189068|HPRD:15615|Vega:OTTHUMG00000064906 19 19q13.42 V-set and transmembrane domain containing 1 protein-coding VSTM1 V-set and transmembrane domain containing 1 O LAIR homolog|OSCAR-like transcript-1|V-set and transmembrane domain-containing protein 1|signal inhibitory receptor on leukocytes-1 20121230 -9606 284417 TMEM150B - TMEM224 HGNC:34415|Ensembl:ENSG00000180061|Vega:OTTHUMG00000180709 19 19q13.42 transmembrane protein 150B protein-coding TMEM150B transmembrane protein 150B O hCG1651476|transmembrane protein 224|transmembrane protein LOC284417 20121230 -9606 284418 FAM71E2 - C19orf16 HGNC:25278|Ensembl:ENSG00000180043|Vega:OTTHUMG00000170357 19 19q13.42 family with sequence similarity 71, member E2 protein-coding FAM71E2 family with sequence similarity 71, member E2 O protein FAM71E2|putative protein FAM71E2 20121230 -9606 284422 C19orf77 HSPC323 - HGNC:37244|Ensembl:ENSG00000095932|Vega:OTTHUMG00000180761 19 19p13.3 chromosome 19 open reading frame 77 protein-coding C19orf77 chromosome 19 open reading frame 77 O transmembrane protein C19orf77|transmembrane protein HSPC323 20121230 -9606 284424 MIR7-3HG - C19orf30|LINC00306|NCRNA00306|PGSF1 HGNC:30049|HPRD:16628 19 19p13.3 MIR7-3 host gene (non-protein coding) miscRNA MIR7-3HG MIR7-3 host gene (non-protein coding) O - 20121230 -9606 284427 SLC25A41 - APC4 HGNC:28533|MIM:610822|Ensembl:ENSG00000181240|HPRD:14584 19 19p13.3 solute carrier family 25, member 41 protein-coding SLC25A41 solute carrier family 25, member 41 O solute carrier family 25 member 41 20121230 -9606 284428 MBD3L5 - - HGNC:37204|Ensembl:ENSG00000237247 19 19p13.2 methyl-CpG binding domain protein 3-like 5 protein-coding MBD3L5 methyl-CpG binding domain protein 3-like 5 O MBD3-like 5|MBD3-like protein 5|putative methyl-CpG-binding domain protein 3-like 5 20121230 -9606 284433 OR10H5 - OR19-25|OR19-26 HGNC:15389|Ensembl:ENSG00000172519|HPRD:17670|Vega:OTTHUMG00000182284 19 19p13.12 olfactory receptor, family 10, subfamily H, member 5 protein-coding OR10H5 olfactory receptor, family 10, subfamily H, member 5 O olfactory receptor 10H5|olfactory receptor OR19-25|olfactory receptor OR19-26 20121230 -9606 284434 NWD1 - - HGNC:27619|Ensembl:ENSG00000188039|HPRD:17337|Vega:OTTHUMG00000164507 19 19p13.11 NACHT and WD repeat domain containing 1 protein-coding NWD1 NACHT and WD repeat domain containing 1 O NACHT and WD repeat domain-containing protein 1 20121230 -9606 284439 SLC25A42 - - HGNC:28380|MIM:610823|Ensembl:ENSG00000181035|HPRD:17523 19 19p13.11 solute carrier family 25, member 42 protein-coding SLC25A42 solute carrier family 25, member 42 O mitochondrial coenzyme A transporter SLC25A42 20121230 -9606 284440 LINC00663 - - HGNC:28609 19 19p13.11 long intergenic non-protein coding RNA 663 miscRNA LINC00663 long intergenic non-protein coding RNA 663 O - 20121230 -9606 284441 LOC284441 - - - 19 19p12 actin-related protein 2 pseudogene pseudo - - - - 20121230 -9606 284443 ZNF493 - - HGNC:23708|Ensembl:ENSG00000196268|HPRD:10043|HPRD:15804|Vega:OTTHUMG00000141297 19 19p12 zinc finger protein 493 protein-coding ZNF493 zinc finger protein 493 O - 20121230 -9606 284451 ODF3L2 - C19orf19 HGNC:26841|Ensembl:ENSG00000181781|HPRD:12700|Vega:OTTHUMG00000180547 19 19p13.3 outer dense fiber of sperm tails 3-like 2 protein-coding ODF3L2 outer dense fiber of sperm tails 3-like 2 O outer dense fiber protein 3-like protein 2 20121230 -9606 284454 LOC284454 - - - 19 19p13.13 uncharacterized LOC284454 miscRNA - - - - 20121230 -9606 284459 HKR1 - ZNF875 HGNC:4928|MIM:165250|Ensembl:ENSG00000181666|HPRD:01314|Vega:OTTHUMG00000181937 19 19q13.12 HKR1, GLI-Kruppel zinc finger family member protein-coding HKR1 HKR1, GLI-Kruppel zinc finger family member O GLI-Kruppel family member HKR1|Krueppel-related zinc finger protein 1|oncogene HKR1|zinc finger protein 875 20121230 -9606 284467 FAM19A3 RP11-426L16.6 TAFA-3|TAFA3 HGNC:21590|Ensembl:ENSG00000184599|HPRD:16877|Vega:OTTHUMG00000012020 1 1p13.2 family with sequence similarity 19 (chemokine (C-C motif)-like), member A3 protein-coding FAM19A3 family with sequence similarity 19 (chemokine (C-C motif)-like), member A3 O chemokine-like protein TAFA-3|protein FAM19A3 20121230 -9606 284485 RIIAD1 - C1orf230|NCRNA00166 HGNC:26686|Ensembl:ENSG00000178796|Vega:OTTHUMG00000013055 1 1q21.3 regulatory subunit of type II PKA R-subunit (RIIa) domain containing 1 protein-coding RIIAD1 regulatory subunit of type II PKA R-subunit (RIIa) domain containing 1 O RIIa domain-containing protein 1|RIIa domain-containing protein C1orf230|RIIa domain-containing protein ENSP00000357824 20121230 -9606 284486 THEM5 RP11-139D23.1 - HGNC:26755|Ensembl:ENSG00000196407|HPRD:08233|Vega:OTTHUMG00000013070 1 1q21.3 thioesterase superfamily member 5 protein-coding THEM5 thioesterase superfamily member 5 O - 20121230 -9606 284498 C1orf167 RP11-56N19.2 - HGNC:25262 1 1p36.22 chromosome 1 open reading frame 167 protein-coding C1orf167 chromosome 1 open reading frame 167 O uncharacterized protein C1orf167 20121230 -9606 284513 LOC284513 - - - 1 1p36.13 uncharacterized LOC284513 protein-coding - - - - 20120508 -9606 284521 OR2L13 - OR2L14 HGNC:19578|Ensembl:ENSG00000196071|HPRD:17702 1 1q44 olfactory receptor, family 2, subfamily L, member 13 protein-coding OR2L13 olfactory receptor, family 2, subfamily L, member 13 O olfactory receptor 2L13|olfactory receptor 2L14|olfactory receptor, family 2, subfamily L, member 14 20121230 -9606 284525 SLC9C2 - RP3-436N22.2|SLC9A11 HGNC:28664|Ensembl:ENSG00000162753|HPRD:15398|Vega:OTTHUMG00000034800 1 1q25.1 solute carrier family 9, member C2 (putative) protein-coding SLC9C2 solute carrier family 9, member C2 (putative) O NHE-11|Na(+)/H(+) exchanger 11|sodium/hydrogen exchanger 11|solute carrier family 9|solute carrier family 9 member C2|solute carrier family 9, member 11 20121230 -9606 284532 OR14A16 - OR5AT1 HGNC:15022|Ensembl:ENSG00000196772|HPRD:15033|Vega:OTTHUMG00000040199 1 1q44 olfactory receptor, family 14, subfamily A, member 16 protein-coding OR14A16 olfactory receptor, family 14, subfamily A, member 16 O olfactory receptor 14A16|olfactory receptor 5AT1|olfactory receptor OR1-45|olfactory receptor, family 5, subfamily AT, member 1 20121230 -9606 284541 CYP4A22 RP1-18D14.1 - HGNC:20575|Ensembl:ENSG00000162365|HPRD:16776|Vega:OTTHUMG00000007845 1 1p33 cytochrome P450, family 4, subfamily A, polypeptide 22 protein-coding CYP4A22 cytochrome P450, family 4, subfamily A, polypeptide 22 O CYPIVA22|cytochrome P450 4A22|cytochrome P450 4A22K|fatty acid omega-hydroxylase|lauric acid omega-hydroxylase 20121230 -9606 284546 C1orf185 RP11-296A18.1 - HGNC:28096|Ensembl:ENSG00000204006|Vega:OTTHUMG00000008084 1 1p32.3 chromosome 1 open reading frame 185 protein-coding C1orf185 chromosome 1 open reading frame 185 O uncharacterized protein C1orf185 20121230 -9606 284551 LOC284551 - - - 1 1p35.2 uncharacterized LOC284551 miscRNA - - - - 20121230 -9606 284561 LOC284561 - - - 1 1q21.3 uncharacterized LOC284561 unknown - - - - 20121230 -9606 284565 NBPF15 - AB14 HGNC:28791|MIM:610414|Ensembl:ENSG00000243452|HPRD:14710|Vega:OTTHUMG00000013634 1 1q21.2 neuroblastoma breakpoint family, member 15 protein-coding NBPF15 neuroblastoma breakpoint family, member 15 O neuroblastoma breakpoint family member 15 20121230 -9606 284570 LOC284570 - - - 1 1q32.1 uncharacterized LOC284570 protein-coding - - - - 20120508 -9606 284573 LINC00303 - C1orf157|NCRNA00303 HGNC:26865|HPRD:08279 1 1q32.1 long intergenic non-protein coding RNA 303 miscRNA LINC00303 long intergenic non-protein coding RNA 303 O - 20121230 -9606 284576 LEMD1-AS1 - - HGNC:44132 1 1q32.1 LEMD1 antisense RNA 1 miscRNA LEMD1-AS1 LEMD1 antisense RNA 1 O - 20121230 -9606 284577 LOC284577 - - - 1 1q32.1 uncharacterized LOC284577 unknown - - - - 20120511 -9606 284578 LOC284578 - - - 1 1q32.1 uncharacterized LOC284578 miscRNA - - - - 20121230 -9606 284581 LOC284581 - - HPRD:17338 1 1q32.1 uncharacterized LOC284581 miscRNA - - - - 20121230 -9606 284593 FAM41C - - HGNC:27635 1 1p36.33 family with sequence similarity 41, member C miscRNA FAM41C family with sequence similarity 41, member C O - 20121230 -9606 284600 LOC284600 - - - 1 1p36.33 uncharacterized LOC284600 unknown - - - - 20121230 -9606 284611 FAM102B RP11-256E16.1 SYM-3B HGNC:27637|Ensembl:ENSG00000162636|HPRD:17339|Vega:OTTHUMG00000010967 1 1p13.3 family with sequence similarity 102, member B protein-coding FAM102B family with sequence similarity 102, member B O protein FAM102B|sym-3 homolog B 20121230 -9606 284612 SYPL2 UNQ6348 MG29 HGNC:27638|Ensembl:ENSG00000143028|HPRD:17478|Vega:OTTHUMG00000010969 1 1p13.3 synaptophysin-like 2 protein-coding SYPL2 synaptophysin-like 2 O mitsugumin 29|mitsugumin-29|synaptophysin-like protein 2 20121230 -9606 284613 CYB561D1 RP5-831G13.3 - HGNC:26804|Ensembl:ENSG00000174151|HPRD:09902|Vega:OTTHUMG00000011051 1 1p13.3 cytochrome b-561 domain containing 1 protein-coding CYB561D1 cytochrome b-561 domain containing 1 O cytochrome b561 domain-containing protein 1 20121230 -9606 284615 ANKRD34A - ANKRD34 HGNC:27639|Ensembl:ENSG00000181039|Vega:OTTHUMG00000013740 1 1q21.1 ankyrin repeat domain 34A protein-coding ANKRD34A ankyrin repeat domain 34A O ankyrin repeat domain 34|ankyrin repeat domain-containing protein 34A 20121230 -9606 284618 RUSC1-AS1 - C1orf104|RP11-21N7.3 HGNC:26680|HPRD:08767 1 1q22 RUSC1 antisense RNA 1 protein-coding RUSC1-AS1 RUSC1 antisense RNA 1 O RUSC1 antisense RNA 1 (non-protein coding)|RUSC1 antisense gene protein 1|putative uncharacterized protein RUSC1-AS1 20121230 -9606 284620 LOC284620 - - - 1 1q22 claudin 6 pseudogene pseudo - - - - 20121230 -9606 284628 LOC284628 - - - 1 1p36.32 uncharacterized LOC284628 unknown - - - - 20120508 -9606 284630 LOC284630 - - - 1 1p36.32 uncharacterized LOC284630 protein-coding - - - - 20120508 -9606 284632 LOC284632 - - - 1 1p36.11 uncharacterized LOC284632 miscRNA - - - - 20121230 -9606 284648 LOC284648 - - - 1 1q25.3 uncharacterized LOC284648 miscRNA - - - - 20121230 -9606 284649 SMG7-AS1 - DKFZP564C196 HGNC:24518 1 1q25.3 SMG7 antisense RNA 1 miscRNA SMG7-AS1 SMG7 antisense RNA 1 O - 20121230 -9606 284654 RSPO1 RP11-566C13.1 CRISTIN3|RSPO HGNC:21679|MIM:609595|Ensembl:ENSG00000169218|HPRD:08288|Vega:OTTHUMG00000004321 1 1p34.3 R-spondin 1 protein-coding RSPO1 R-spondin 1 O R-spondin homolog|R-spondin-1|roof plate-specific spondin-1 20121230 -9606 284656 EPHA10 - - HGNC:19987|MIM:611123|Ensembl:ENSG00000183317|HPRD:08163|Vega:OTTHUMG00000004325 1 1p34.3 EPH receptor A10 protein-coding EPHA10 EPH receptor A10 O EphA10s protein|ephrin type-A receptor 10 20121230 -9606 284661 LOC284661 - - - 1 1p36.32 uncharacterized LOC284661 miscRNA - - - - 20121230 -9606 284669 LOC284669 - - - 1 1q32.3 uncharacterized LOC284669 protein-coding - - - - 20120508 -9606 284672 PTGES3P1 hCG_2028557 PTGES3P HGNC:43824 1 1p22.2 prostaglandin E synthase 3 (cytosolic) pseudogene 1 pseudo PTGES3P1 prostaglandin E synthase 3 (cytosolic) pseudogene 1 O - 20121230 -9606 284677 C1orf204 RP11-190A12.4 - HGNC:27647|Ensembl:ENSG00000188004|Vega:OTTHUMG00000035430 1 1q23.2 chromosome 1 open reading frame 204 protein-coding C1orf204 chromosome 1 open reading frame 204 O uncharacterized protein LOC284677 20121230 -9606 284680 C1orf111 HSD20 RP11-565P22.3 HGNC:27648|Ensembl:ENSG00000171722|HPRD:14154|Vega:OTTHUMG00000031375 1 1q23.3 chromosome 1 open reading frame 111 protein-coding C1orf111 chromosome 1 open reading frame 111 O uncharacterized protein C1orf111 20121230 -9606 284685 LOC284685 - - - 1 1q24.1 Ewing sarcoma breakpoint region 1 pseudogene pseudo - - - - 20121230 -9606 284688 LOC284688 RP11-297H3.4 - - 1 1q24.2 uncharacterized LOC284688 miscRNA - - - - 20121230 -9606 284695 ZNF326 - ZAN75|ZIRD|Zfp326|dJ871E2.1 HGNC:14104|MIM:614601|Ensembl:ENSG00000162664|HPRD:15774|Vega:OTTHUMG00000010675 1 1p22.2 zinc finger protein 326 protein-coding ZNF326 zinc finger protein 326 O DBIRD complex subunit ZNF326|ZNF-protein interacting with nuclear mRNPs and DBC1|dJ871E2.1 (novel protein (ortholog of mouse zinc finger protein Zan75))|zinc finger protein interacting with mRNPs and DBC1 20121230 -9606 284697 BTBD8 - - HGNC:21019|Ensembl:ENSG00000189195|HPRD:12542|Vega:OTTHUMG00000010289 1 1p22.1 BTB (POZ) domain containing 8 protein-coding BTBD8 BTB (POZ) domain containing 8 O BTB/POZ domain-containing protein 8|double BTB/POZ domain containing protein 20121230 -9606 284702 HNRNPU-AS1 RP11-11N7.2 C1orf199|NCRNA00201 HGNC:27651 1 1q44 HNRNPU antisense RNA 1 miscRNA HNRNPU-AS1 HNRNPU antisense RNA 1 O - 20121230 -9606 284716 RIMKLA RP11-157D18.1 FAM80A|NAAGS|NAAGS-II HGNC:28725|Ensembl:ENSG00000177181|HPRD:14656|Vega:OTTHUMG00000007335 1 1p34.2 ribosomal modification protein rimK-like family member A protein-coding RIMKLA ribosomal modification protein rimK-like family member A O N-acetylaspartyl-glutamate synthetase A|N-acetylaspartylglutamate synthetase II|NAAG synthetase A|family with sequence similarity 80, member A|ribosomal protein S6 modification-like protein A 20121230 -9606 284723 SLC25A34 - RP11-169K16.2 HGNC:27653|MIM:610817|Ensembl:ENSG00000162461|HPRD:17340|Vega:OTTHUMG00000003063 1 1p36.21 solute carrier family 25, member 34 protein-coding SLC25A34 solute carrier family 25, member 34 O solute carrier family 25 member 34 20121230 -9606 284729 ESPNP - RP1-163M9.1|dJ1182A14.1 HGNC:23285 1 1p36.13 espin pseudogene pseudo ESPNP espin pseudogene O - 20121230 -9606 284739 LINC00176 - NCRNA00176|PRR17 HGNC:27655|HPRD:17341 20 20q13.33 long intergenic non-protein coding RNA 176 miscRNA LINC00176 long intergenic non-protein coding RNA 176 O - 20121230 -9606 284749 LINC00494 - - HGNC:27657 20 20q13.13 long intergenic non-protein coding RNA 494 miscRNA LINC00494 long intergenic non-protein coding RNA 494 O - 20121230 -9606 284751 LOC284751 - - HPRD:18771 20 20q13.13 uncharacterized LOC284751 miscRNA - - - - 20121230 -9606 284756 C20orf197 UNQ3000 RP5-1017F8.1 HGNC:26601|Ensembl:ENSG00000176659|HPRD:08749|Vega:OTTHUMG00000032880 20 20q13.33 chromosome 20 open reading frame 197 protein-coding C20orf197 chromosome 20 open reading frame 197 O uncharacterized protein C20orf197 20121230 -9606 284757 LOC284757 - - HPRD:17342 20 20q13.33 uncharacterized LOC284757 miscRNA - - - - 20121230 -9606 284759 SIRPB2 RP4-776F14.1 PTPN1L|PTPNS1L3|dJ776F14.2 HGNC:16247|Ensembl:ENSG00000196209|Vega:OTTHUMG00000031670 20 20p13 signal-regulatory protein beta 2 protein-coding SIRPB2 signal-regulatory protein beta 2 O SIRP-beta-2|protein tyrosine phosphatase non-receptor type substrate 1-like 3|protein tyrosine phosphatase non-receptor type substrate protein|protein tyrosine phosphatase, non-receptor type substrate 1-like 3|signal-regulatory protein beta-2 20121230 -9606 284764 FTLP3 - FTLL1|dJ681N20.2 HGNC:4000 20 20p13 ferritin, light polypeptide pseudogene 3 pseudo FTLP3 ferritin, light polypeptide pseudogene 3 O - 20121230 -9606 284788 LOC284788 - - - 20 20p11.21 uncharacterized LOC284788 miscRNA - - - - 20121230 -9606 284798 LOC284798 - - - 20 20p11.21 uncharacterized LOC284798 miscRNA - - - - 20121230 -9606 284800 FAM182A RP13-329D4.5 C20orf91|bB329D4.1 HGNC:16222|HPRD:08240 20 20p11.1 family with sequence similarity 182, member A miscRNA FAM182A family with sequence similarity 182, member A O - 20121230 -9606 284801 LOC284801 - - - 20 20p11.1 uncharacterized LOC284801 miscRNA - - - - 20121230 -9606 284802 FRG1B RP11-348I14.5 C20orf80|bA348I14.2 HGNC:15792|HPRD:17570 20 20q11.21 FSHD region gene 1 family, member B pseudo FRG1B FSHD region gene 1 family, member B O - 20121230 -9606 284805 C20orf203 - - HGNC:26592|HPRD:08164 20 20q11.21 chromosome 20 open reading frame 203 protein-coding C20orf203 chromosome 20 open reading frame 203 O alugen|uncharacterized protein C20orf203 20121230 -9606 284808 FLJ38773 - - - 20 20q11.22 uncharacterized protein FLJ38773 unknown - - - - 20111109 -9606 284821 RPL13AP7 - RPL13A_12_1722 HGNC:23755 21 21q21.2 ribosomal protein L13a pseudogene 7 pseudo RPL13AP7 ribosomal protein L13a pseudogene 7 O - 20121230 -9606 284825 LOC284825 - - - 21 21q21.3 uncharacterized LOC284825 protein-coding - - - - 20120508 -9606 284827 KRTAP13-4 - KAP13.4 HGNC:18926|Ensembl:ENSG00000186971|HPRD:11203|Vega:OTTHUMG00000057770 21 21q22.1 keratin associated protein 13-4 protein-coding KRTAP13-4 keratin associated protein 13-4 O keratin-associated protein 13-4 20121230 -9606 284835 LINC00323 - C21orf130|NCRNA00323|PRED42 HGNC:19720 21 21q22.2 long intergenic non-protein coding RNA 323 miscRNA LINC00323 long intergenic non-protein coding RNA 323 O - 20121230 -9606 284836 LINC00319 - C21orf125|NCRNA00319|PRED49 HGNC:19730|HPRD:10738 21 21q22.3 long intergenic non-protein coding RNA 319 miscRNA LINC00319 long intergenic non-protein coding RNA 319 O - 20121230 -9606 284837 LOC284837 - - HPRD:11256 21 21q22.3 uncharacterized LOC284837 miscRNA - - - - 20121230 -9606 284861 LOC284861 - - HPRD:17343 22 22q11.21 uncharacterized LOC284861 unknown - - - - 20121209 -9606 284865 LOC284865 hCG_1820679 - - 22 22q11.21 uncharacterized LOC284865 miscRNA - - - - 20121230 -9606 284889 LOC284889 - - - 22 22q11.23 uncharacterized LOC284889 miscRNA - - - - 20121230 -9606 284898 LOC284898 - - - 22 22q12.1 uncharacterized LOC284898 unknown - - - - 20121102 -9606 284900 TTC28-AS1 - TTC28-AS|TTC28AS|dJ353E16.2 HGNC:29336 22 22q12.1 TTC28 antisense RNA 1 miscRNA TTC28-AS1 TTC28 antisense RNA 1 O - 20121230 -9606 284904 SEC14L4 - TAP3 HGNC:20627|MIM:612825|Ensembl:ENSG00000133488|HPRD:15312|Vega:OTTHUMG00000151258 22 22q12.2 SEC14-like 4 (S. cerevisiae) protein-coding SEC14L4 SEC14-like 4 (S. cerevisiae) O SEC14-like protein 4|SEC14p-like protein TAP3|tocopherol-associated protein 3 20121230 -9606 284912 LOC284912 - - HPRD:14155 22 22q12.3 uncharacterized LOC284912 unknown - - - - 20120815 -9606 284926 LOC284926 - - - 22 22q13.31 uncharacterized LOC284926 unknown - - - - 20120508 -9606 284930 LOC284930 - - - 22 22q13.32 uncharacterized LOC284930 unknown - - - - 20120508 -9606 284933 LOC284933 CTA-299D3.8 - - 22 22q13.32 uncharacterized LOC284933 miscRNA - - - - 20121230 -9606 284939 LOC284939 - - - 22 22q13.33 uncharacterized LOC284939 unknown - - - - 20120508 -9606 284942 RPL23AP82 - RPL23A_43_1761 HGNC:33730|HPRD:14701 22 22q13.33 ribosomal protein L23a pseudogene 82 pseudo RPL23AP82 ribosomal protein L23a pseudogene 82 O - 20121230 -9606 284948 SH2D6 - - HGNC:30439|Ensembl:ENSG00000152292|HPRD:14156|Vega:OTTHUMG00000130176 2 2p11.2 SH2 domain containing 6 protein-coding SH2D6 SH2 domain containing 6 O SH2 domain-containing protein 6 20121230 -9606 284950 LOC284950 - - - 2 2p11.2 uncharacterized LOC284950 miscRNA - - - - 20121230 -9606 284958 NT5DC4 - - HGNC:27678|Ensembl:ENSG00000144130|Vega:OTTHUMG00000153308 2 2q13 5'-nucleotidase domain containing 4 protein-coding NT5DC4 5'-nucleotidase domain containing 4 O - 20121230 -9606 284967 bA395L14.13 - - - 2 2q14.1 acrosin-like protease protein-coding - - - - 20100404 -9606 284988 RHOQP3 - - HGNC:37837 2 2q21.1 ras homolog family member Q pseudogene 3 pseudo RHOQP3 ras homolog family member Q pseudogene 3 O - 20121230 -9606 284992 CCDC150 - - HGNC:26834|Ensembl:ENSG00000144395|HPRD:08264|HPRD:08537|Vega:OTTHUMG00000154475 2 2q33.1 coiled-coil domain containing 150 protein-coding CCDC150 coiled-coil domain containing 150 O coiled-coil domain-containing protein 150 20121230 -9606 284996 RNF149 - DNAPTP2 HGNC:23137|Ensembl:ENSG00000163162|HPRD:11513|Vega:OTTHUMG00000130685 2 2q11.2 ring finger protein 149 protein-coding RNF149 ring finger protein 149 O DNA polymerase-transactivated protein 2|E3 ubiquitin-protein ligase RNF149 20121230 -9606 284998 LOC284998 - - - 2 2q12.1 uncharacterized LOC284998 miscRNA - - - - 20121230 -9606 285000 LOC285000 - - - 2 2q12.2 uncharacterized LOC285000 miscRNA - - - - 20121230 -9606 285003 MRPL36P1 - - HGNC:29708 2 2p13.2 mitochondrial ribosomal protein L36 pseudogene 1 pseudo MRPL36P1 mitochondrial ribosomal protein L36 pseudogene 1 O - 20121230 -9606 285016 FAM150B hCG_1990170 PRO1097|RGPG542 HGNC:27683|Ensembl:ENSG00000189292|HPRD:17344|Vega:OTTHUMG00000151366 2 2p25.3 family with sequence similarity 150, member B protein-coding FAM150B family with sequence similarity 150, member B O protein FAM150B 20121230 -9606 285025 CCDC141 - CAMDI HGNC:26821|Ensembl:ENSG00000163492|HPRD:08257|Vega:OTTHUMG00000132578 2 2q31.2 coiled-coil domain containing 141 protein-coding CCDC141 coiled-coil domain containing 141 O coiled-coil domain-containing protein 141|coiled-coil protein associated with myosin II and DISC1 20121230 -9606 285033 LOC285033 - - HPRD:18772 2 2q11.2 uncharacterized LOC285033 miscRNA - - - - 20121230 -9606 285043 LOC285043 - - - 2 2p23.3 uncharacterized LOC285043 unknown - - - - 20120508 -9606 285045 LINC00486 - - HGNC:42946 2 2p22.3 long intergenic non-protein coding RNA 486 miscRNA LINC00486 long intergenic non-protein coding RNA 486 O - 20121230 -9606 285051 C2orf61 - - HGNC:26850|Ensembl:ENSG00000239605|HPRD:08273|Vega:OTTHUMG00000128851 2 2p21 chromosome 2 open reading frame 61 protein-coding C2orf61 chromosome 2 open reading frame 61 O uncharacterized protein C2orf61 20121230 -9606 285053 RPL18AP6 - RPL18A_1_215 HGNC:36266 2 2p16.3 ribosomal protein L18a pseudogene 6 pseudo RPL18AP6 ribosomal protein L18a pseudogene 6 O - 20121230 -9606 285074 LOC285074 - - HPRD:17345 2 2p11.2 anaphase promoting complex subunit 1 pseudogene pseudo - - - - 20121230 -9606 285084 LOC285084 - - - 2 2q31.1 uncharacterized LOC285084 miscRNA - - - - 20121230 -9606 285093 CXXC11 - C2orf85 HGNC:26585|Ensembl:ENSG00000188011|HPRD:08159|Vega:OTTHUMG00000151341 2 2q37.3 CXXC finger protein 11 protein-coding CXXC11 CXXC finger protein 11 O CXXC-type zinc finger protein 11 20121230 -9606 285095 LOC285095 - - - 2 2q37.3 uncharacterized LOC285095 protein-coding - - - - 20121209 -9606 285097 FLJ38379 - - HPRD:08242 2 2q37.3 uncharacterized FLJ38379 unknown - - - - 20121209 -9606 285103 CCDC74B-AS1 - - HGNC:44130 2 2q21.2 CCDC74B antisense RNA 1 miscRNA CCDC74B-AS1 CCDC74B antisense RNA 1 O - 20121230 -9606 285116 AHCTF1P1 - AHCTF1P|ELYS-like HGNC:24620 2 2q24.2 AT hook containing transcription factor 1 pseudogene 1 pseudo AHCTF1P1 AT hook containing transcription factor 1 pseudogene 1 O - 20121230 -9606 285126 DNAJC5G - CSP-gamma HGNC:24844|MIM:613946|Ensembl:ENSG00000163793|HPRD:07108|Vega:OTTHUMG00000097079 2 2p23.3 DnaJ (Hsp40) homolog, subfamily C, member 5 gamma protein-coding DNAJC5G DnaJ (Hsp40) homolog, subfamily C, member 5 gamma O cysteine string protein-gamma|dnaJ homolog subfamily C member 5G|gamma cysteine string protein|gamma-CSP|gamma-cysteine string protein 20121230 -9606 285141 ERICH2 - - HGNC:44395|Ensembl:ENSG00000204334|Vega:OTTHUMG00000154074 2 2q31.1 glutamate-rich 2 protein-coding ERICH2 glutamate-rich 2 O glutamate-rich protein 2 20121230 -9606 285147 LOC285147 - - - 2 2p25.2 uncharacterized LOC285147 unknown - - - - 20120508 -9606 285148 IAH1 - - HGNC:27696|Ensembl:ENSG00000134330|Vega:OTTHUMG00000159076 2 2p25.1 isoamyl acetate-hydrolyzing esterase 1 homolog (S. cerevisiae) protein-coding IAH1 isoamyl acetate-hydrolyzing esterase 1 homolog (S. cerevisiae) O isoamyl acetate-hydrolyzing esterase 1 homolog 20121230 -9606 285150 FLJ33534 - - HPRD:08158 2 2p25.1 uncharacterized LOC285150 miscRNA - - - - 20121230 -9606 285154 CYP1B1-AS1 - C2orf58 HGNC:28543|HPRD:14592 2 2p22.2 CYP1B1 antisense RNA 1 miscRNA CYP1B1-AS1 CYP1B1 antisense RNA 1 O - 20121230 -9606 285172 FAM126B - HYCC2 HGNC:28593|Ensembl:ENSG00000155744|HPRD:11345|Vega:OTTHUMG00000132823 2 2q33.1 family with sequence similarity 126, member B protein-coding FAM126B family with sequence similarity 126, member B O protein FAM126B 20121230 -9606 285173 LOC285173 - - - 2 2q33.3-q34 uncharacterized LOC285173 protein-coding - - - - 20120508 -9606 285175 UNC80 - C2orf21|UNC-80 HGNC:26582|MIM:612636|Ensembl:ENSG00000144406|HPRD:12809|Vega:OTTHUMG00000132963 2 2q35 unc-80 homolog (C. elegans) protein-coding UNC80 unc-80 homolog (C. elegans) O WUGSC:H_NH0436C12.1|protein unc-80 homolog 20121230 -9606 285176 RPL10P6 - - - 2 2q35 ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 285178 LOC285178 - - - 2 2q35 uncharacterized LOC285178 protein-coding - - - - 20120508 -9606 285180 RUFY4 - - HGNC:24804|Ensembl:ENSG00000188282|HPRD:13539|Vega:OTTHUMG00000155235 2 2q35 RUN and FYVE domain containing 4 protein-coding RUFY4 RUN and FYVE domain containing 4 O RUN and FYVE domain-containing protein 4 20121230 -9606 285181 LOC285181 - - - 2 2q36.1 uncharacterized LOC285181 protein-coding - - - - 20120508 -9606 285189 PLGLA - PLGLA1|PLGP2|PRGA HGNC:9074|MIM:612212 2 2q12.2 plasminogen-like A pseudo PLGLA plasminogen-like A O - 20121230 -9606 285190 RGPD4 - RGP4 HGNC:32417|MIM:612707|Ensembl:ENSG00000196862|Vega:OTTHUMG00000153208 2 2q12.3 RANBP2-like and GRIP domain containing 4 protein-coding RGPD4 RANBP2-like and GRIP domain containing 4 O ranBP2-like and GRIP domain-containing protein 4 20121230 -9606 285191 LOC285191 - - - 2 2q37.3 uncharacterized LOC285191 unknown - - - - 20120508 -9606 285193 DUSP28 - DUSP26|VHP HGNC:33237|Ensembl:ENSG00000188542|HPRD:18773|Vega:OTTHUMG00000152310 2 2q37.3 dual specificity phosphatase 28 protein-coding DUSP28 dual specificity phosphatase 28 O - 20121230 -9606 285194 LSAMP-AS3 - LSAMP-AS1|NCRNA00295 HGNC:27701 3 3q13.31 LSAMP antisense RNA 3 miscRNA LSAMP-AS3 LSAMP antisense RNA 3 O - 20121230 -9606 285195 SLC9A9 Nbla00118 AUTS16|NHE9 HGNC:20653|MIM:608396|Ensembl:ENSG00000181804|HPRD:12226|Vega:OTTHUMG00000159373 3 3q24 solute carrier family 9, subfamily A (NHE9, cation proton antiporter 9), member 9 protein-coding SLC9A9 solute carrier family 9, subfamily A (NHE9, cation proton antiporter 9), member 9 O Na(+)/H(+) exchanger 9|putative protein product of Nbla00118|sodium/hydrogen exchanger 9|sodium/proton exchanger NHE9|solute carrier family 9 (sodium/hydrogen exchanger) 20121230 -9606 285203 EOGT - AER61|C3orf64|EOGT1 HGNC:28526|MIM:614789|Ensembl:ENSG00000163378|HPRD:12435|Vega:OTTHUMG00000156279 3 3p14.1 EGF domain-specific O-linked N-acetylglucosamine (GlcNAc) transferase protein-coding EOGT EGF domain-specific O-linked N-acetylglucosamine (GlcNAc) transferase O AER61 glycosyltransferase|EGF domain-specific O-linked N-acetylglucosamine transferase|extracellular O-linked N-acetylglucosamine transferase 20121230 -9606 285205 LINC00636 - - HGNC:27702 3 3q13.12 long intergenic non-protein coding RNA 636 miscRNA LINC00636 long intergenic non-protein coding RNA 636 O - 20121230 -9606 285220 EPHA6 UNQ6114 EK12|EPA6|PRO57066 HGNC:19296|MIM:600066|Ensembl:ENSG00000080224|Vega:OTTHUMG00000159208 3 3q11.2 EPH receptor A6 protein-coding EPHA6 EPH receptor A6 O EHK-2|EPH homology kinase 2|EPH-like kinase 12|ephrin receptor EphA6|ephrin type-A receptor 6 20121230 -9606 285224 DNAJB8-AS1 - - HGNC:41029 3 3q21.3 DNAJB8 antisense RNA 1 miscRNA DNAJB8-AS1 DNAJB8 antisense RNA 1 O - 20121230 -9606 285231 FBXW12 - FBW12|FBXO12|FBXO35 HGNC:20729|MIM:609075|Ensembl:ENSG00000164049|HPRD:16428|Vega:OTTHUMG00000133530 3 3p21.31 F-box and WD repeat domain containing 12 protein-coding FBXW12 F-box and WD repeat domain containing 12 O F-box and WD-40 domain protein 12|F-box and WD-40 domain-containing protein 12|F-box only protein 35|F-box- and WD40-repeat-containing protein|F-box/WD repeat-containing protein 12 20121230 -9606 285232 LOC285232 - - - 3 3p12.1 phosphoribosyl pyrophosphate amidotransferase pseudogene pseudo - - - - 20121230 -9606 285237 C3orf38 - - HGNC:28384|Ensembl:ENSG00000179021|HPRD:14509|Vega:OTTHUMG00000155752 3 3p11.1 chromosome 3 open reading frame 38 protein-coding C3orf38 chromosome 3 open reading frame 38 O uncharacterized protein C3orf38 20121230 -9606 285242 HTR3E - 5-HT3-E|5-HT3E|5-HT3c1 HGNC:24005|MIM:610123|Ensembl:ENSG00000186038|HPRD:17122|Vega:OTTHUMG00000156857 3 3q27.1 5-hydroxytryptamine (serotonin) receptor 3E, ionotropic protein-coding HTR3E 5-hydroxytryptamine (serotonin) receptor 3E, ionotropic O 5-hydroxytryptamine (serotonin) receptor 3, family member E|5-hydroxytryptamine receptor 3 subunit E|5-hydroxytryptamine receptor 3E 20121230 -9606 285260 RPL31P18 - RPL31_7_358 HGNC:35833 3 3p22.3 ribosomal protein L31 pseudogene 18 pseudo RPL31P18 ribosomal protein L31 pseudogene 18 O - 20121230 -9606 285266 ENTPD3-AS1 - - HGNC:26710 3 3p21.33 ENTPD3 antisense RNA 1 miscRNA ENTPD3-AS1 ENTPD3 antisense RNA 1 O - 20121230 -9606 285267 ZNF619 - - HGNC:26910|Ensembl:ENSG00000177873|HPRD:15877|Vega:OTTHUMG00000131391 3 3p22.1 zinc finger protein 619 protein-coding ZNF619 zinc finger protein 619 O - 20121230 -9606 285268 ZNF621 - - HGNC:24787|Ensembl:ENSG00000172888|HPRD:15879|Vega:OTTHUMG00000131389 3 3p22.1 zinc finger protein 621 protein-coding ZNF621 zinc finger protein 621 O - 20121230 -9606 285281 LOC285281 - - - 3 3p21.33 uncharacterized LOC285281 protein-coding - - - - 20120508 -9606 285282 RABL3 - - HGNC:18072|Ensembl:ENSG00000144840|HPRD:15203|Vega:OTTHUMG00000159668 3 3q13.33 RAB, member of RAS oncogene family-like 3 protein-coding RABL3 RAB, member of RAS oncogene family-like 3 O rab-like protein 3 20121230 -9606 285286 LOC285286 - - - 3 3p14.2 uncharacterized LOC285286 miscRNA - - - - 20121102 -9606 285296 UNC93B3 - UNC93B3P HGNC:13483 3 3p12.3 unc-93 homolog B3 pseudogene (C. elegans) pseudo UNC93B3 unc-93 homolog B3 pseudogene (C. elegans) O - 20121230 -9606 285299 LOC285299 - - - 3 3p12.3 FSHD region gene 2 family, member C-like protein-coding - - - - 20121102 -9606 285300 LOC285300 - - - 3 3p14.1 uncharacterized LOC285300 unknown - - - - 20120508 -9606 285303 LOC285303 - - - 3 3q29 family with sequence similarity 151, member A pseudogene pseudo - - - - 20121230 -9606 285311 C3orf56 - - HGNC:32481|HPRD:16949 3 3q21.3 chromosome 3 open reading frame 56 unknown C3orf56 chromosome 3 open reading frame 56 O - 20121230 -9606 285313 IGSF10 - CMF608 HGNC:26384|Ensembl:ENSG00000152580|HPRD:13732|Vega:OTTHUMG00000159856 3 3q25.1 immunoglobulin superfamily, member 10 protein-coding IGSF10 immunoglobulin superfamily, member 10 O calvaria mechanical force protein 608|immunoglobulin superfamily member 10 20121230 -9606 285314 PABPC1P10 - D3S3192|PAB1|PABPL1 HGNC:37992|MIM:173865 3 3q25.2 poly(A) binding protein, cytoplasmic 1 pseudogene 10 pseudo PABPC1P10 poly(A) binding protein, cytoplasmic 1 pseudogene 10 O - 20121230 -9606 285315 C3orf33 MSTP052 AC3-33 HGNC:26434|Ensembl:ENSG00000174928|HPRD:08095|Vega:OTTHUMG00000158496 3 3q25.31 chromosome 3 open reading frame 33 protein-coding C3orf33 chromosome 3 open reading frame 33 O AP-1 activity suppressor|uncharacterized protein C3orf33 20121230 -9606 285326 LINC00692 - - HGNC:27708 3 3p24.2 long intergenic non-protein coding RNA 692 miscRNA LINC00692 long intergenic non-protein coding RNA 692 O - 20121230 -9606 285329 UBQLN4P1 - C3orf12|UBQLN4P HGNC:31133 3 3q24 ubiquilin 4 pseudogene 1 pseudo UBQLN4P1 ubiquilin 4 pseudogene 1 O - 20121230 -9606 285331 CCDC66 - - HGNC:27709|Ensembl:ENSG00000180376|HPRD:14569|Vega:OTTHUMG00000155748 3 3p14.3 coiled-coil domain containing 66 protein-coding CCDC66 coiled-coil domain containing 66 O coiled-coil domain-containing protein 66 20121230 -9606 285335 SLC9C1 - SLC9A10|sperm-NHE HGNC:31401|MIM:612738|Ensembl:ENSG00000172139|HPRD:11257|Vega:OTTHUMG00000159245 3 3q13.2 solute carrier family 9, subfamily C (Na+-transporting carboxylic acid decarboxylase), member 1 protein-coding SLC9C1 solute carrier family 9, subfamily C (Na+-transporting carboxylic acid decarboxylase), member 1 O NHE-10|Na(+)/H(+) exchanger 10|sNHE|sodium/hydrogen exchanger 10|solute carrier family 10 member 10|solute carrier family 9|solute carrier family 9 member C1|solute carrier family 9, member 10|sperm-specific Na(+)/H(+) exchanger|sperm-specific sodium proton exchanger 20121230 -9606 285343 TCAIM - C3orf23|TOAG-1|TOAG1 HGNC:25241|Ensembl:ENSG00000179152|HPRD:13184|Vega:OTTHUMG00000133049 3 3p21.31 T cell activation inhibitor, mitochondrial protein-coding TCAIM T cell activation inhibitor, mitochondrial O tolerance associated gene-1|uncharacterized protein C3orf23 20121230 -9606 285346 ZNF852 - - HGNC:27713|Ensembl:ENSG00000178917|Vega:OTTHUMG00000156453 3 3p21.31 zinc finger protein 852 protein-coding ZNF852 zinc finger protein 852 O putative zinc finger protein 852 20121230 -9606 285349 ZNF660 - - HGNC:26720|Ensembl:ENSG00000144792|HPRD:08213|Vega:OTTHUMG00000133097 3 3p21.31 zinc finger protein 660 protein-coding ZNF660 zinc finger protein 660 O - 20121230 -9606 285352 KIF9-AS1 - - HGNC:26822 3 3p21.31 KIF9 antisense RNA 1 miscRNA KIF9-AS1 KIF9 antisense RNA 1 O - 20121230 -9606 285359 PDCL3P4 - - HGNC:44505 3 3q12.3 phosducin-like 3 pseudogene 4 pseudo PDCL3P4 phosducin-like 3 pseudogene 4 O - 20121230 -9606 285362 SUMF1 UNQ3037 AAPA3037|FGE HGNC:20376|MIM:607939|Ensembl:ENSG00000144455|HPRD:06399|Vega:OTTHUMG00000090269 3 3p26.1 sulfatase modifying factor 1 protein-coding SUMF1 sulfatase modifying factor 1 O C-alpha-formylglycine-generating enzyme 1|FGly-generating enzyme|sulfatase-modifying factor 1 20121230 -9606 285367 RPUSD3 - - HGNC:28437|Ensembl:ENSG00000156990|HPRD:14532|Vega:OTTHUMG00000128441 3 3p25.3 RNA pseudouridylate synthase domain containing 3 protein-coding RPUSD3 RNA pseudouridylate synthase domain containing 3 O RNA pseudouridylate synthase domain-containing protein 3 20121230 -9606 285368 PRRT3 UNQ5823/PRO19642 - HGNC:26591|Ensembl:ENSG00000163704|HPRD:16935|Vega:OTTHUMG00000155285 3 3p25.3 proline-rich transmembrane protein 3 protein-coding PRRT3 proline-rich transmembrane protein 3 O - 20121230 -9606 285370 LINC00606 - - HGNC:43931 3 3p25.3 long intergenic non-protein coding RNA 606 miscRNA LINC00606 long intergenic non-protein coding RNA 606 O - 20121230 -9606 285375 LINC00620 - - HGNC:44223 3 3p25.1 long intergenic non-protein coding RNA 620 miscRNA LINC00620 long intergenic non-protein coding RNA 620 O - 20121230 -9606 285378 LOC285378 - - - 3 3p25.1 uncharacterized LOC285378 protein-coding - - - - 20120508 -9606 285381 DPH3 - DELGIP|DELGIP1|DESR1|DPH3A|KTI11|ZCSL2 HGNC:27717|MIM:608959|Ensembl:ENSG00000154813|HPRD:16412|Vega:OTTHUMG00000129866 3 3p25.1 DPH3, KTI11 homolog (S. cerevisiae) protein-coding DPH3 DPH3, KTI11 homolog (S. cerevisiae) O CSL-type zinc finger-containing protein 2|DPH3 homolog|DPH3 homolog (KTI11, S. cerevisiae)|DPH3A, KTI11 homolog A|Del-GEF interacting protein|deafness locus putative guanine nucleotide exchange factor interacting protein 1|delGEF-interacting protein 1|diphtheria toxin and Pseudomonas exotoxin A sensitivity required gene 1|zinc finger, CSL domain containing 2|zinc finger, CSL-type containing 2 20121230 -9606 285382 C3orf70 - - HGNC:33731|Ensembl:ENSG00000187068|HPRD:18774|Vega:OTTHUMG00000156696 3 3q27.2 chromosome 3 open reading frame 70 protein-coding C3orf70 chromosome 3 open reading frame 70 O UPF0524 protein C3orf70 20121230 -9606 285386 TPRG1 - FAM79B HGNC:24759|Ensembl:ENSG00000188001|HPRD:13451|Vega:OTTHUMG00000156321 3 3q28 tumor protein p63 regulated 1 protein-coding TPRG1 tumor protein p63 regulated 1 O family with sequence similarity 79, member B|tumor protein p63-regulated gene 1 protein 20121230 -9606 285389 LOC285389 - - - 3 3q29 uncharacterized LOC285389 unknown - - - - 20120508 -9606 285401 LINC00698 - - HGNC:27720 3 3p14.2 long intergenic non-protein coding RNA 698 miscRNA LINC00698 long intergenic non-protein coding RNA 698 O - 20121230 -9606 285407 ALG1L9P - - HGNC:44378 11 11q13.4 asparagine-linked glycosylation 1-like 9, pseudogene pseudo ALG1L9P asparagine-linked glycosylation 1-like 9, pseudogene O - 20121230 -9606 285412 TOX4P1 - - HGNC:44009 4 4q25 TOX high mobility group box family member 4 pseudogene 1 pseudo TOX4P1 TOX high mobility group box family member 4 pseudogene 1 O - 20121230 -9606 285415 MRPL42P1 - - HGNC:29710 4 4q26 mitochondrial ribosomal protein L42 pseudogene 1 pseudo MRPL42P1 mitochondrial ribosomal protein L42 pseudogene 1 O - 20121230 -9606 285419 LOC285419 - - - 4 4q28.1 uncharacterized LOC285419 miscRNA - - - - 20121230 -9606 285422 LOC285422 - - - 4 4q31.21 uncharacterized LOC285422 unknown - - - - 20120508 -9606 285423 LOC285423 - - - 4 4q31.23 uncharacterized LOC285423 protein-coding - - - - 20121230 -9606 285429 DCAF4L1 - WDR21B HGNC:27723|Ensembl:ENSG00000182308|HPRD:18775|Vega:OTTHUMG00000160527 4 4p13 DDB1 and CUL4 associated factor 4-like 1 protein-coding DCAF4L1 DDB1 and CUL4 associated factor 4-like 1 O DDB1- and CUL4-associated factor 4-like protein 1|WD repeat domain 21B|WD repeat-containing protein 21B 20121230 -9606 285431 LOC285431 - - - 4 4q35.1 uncharacterized LOC285431 protein-coding - - - - 20120508 -9606 285440 CYP4V2 UNQ2560 BCD|CYP4AH1 HGNC:23198|MIM:608614|Ensembl:ENSG00000145476|HPRD:16777|Vega:OTTHUMG00000160379 4 4q35.2 cytochrome P450, family 4, subfamily V, polypeptide 2 protein-coding CYP4V2 cytochrome P450, family 4, subfamily V, polypeptide 2 O cytochrome P450 4V2 20121230 -9606 285441 LOC285441 - - - 4 4q35.2 uncharacterized LOC285441 miscRNA - - - - 20121230 -9606 285442 LOC285442 - - - 4 4q35.2 mitochondrial translational release factor 1-like pseudogene pseudo - - - - 20121230 -9606 285453 LOC285453 - - - 4 4q12 TXNDC9 pseudogene pseudo - - - - 20121230 -9606 285456 RPL34-AS1 - - HGNC:26749|HPRD:08228 4 4q25 RPL34 antisense RNA 1 (head to head) miscRNA RPL34-AS1 RPL34 antisense RNA 1 (head to head) O - 20121230 -9606 285463 LOC285463 - - - 4 4p16.3 uncharacterized LOC285463 unknown - - - - 20121230 -9606 285464 CRIPAK - - HGNC:26619|MIM:610203|Ensembl:ENSG00000179979|HPRD:08753|Vega:OTTHUMG00000121131 4 4p16.3 cysteine-rich PAK1 inhibitor protein-coding CRIPAK cysteine-rich PAK1 inhibitor O cysteine-rich inhibitor of PAK1 20121230 -9606 285484 LOC285484 - - - 4 4p16.1 uncharacterized LOC285484 miscRNA - - - - 20121230 -9606 285489 DOK7 RP11-529E10.4 C4orf25|CMS1B HGNC:26594|MIM:610285|Ensembl:ENSG00000175920|HPRD:08744|Vega:OTTHUMG00000122087 4 4p16.3 docking protein 7 protein-coding DOK7 docking protein 7 O downstream of tyrosine kinase 7|protein Dok-7 20121230 -9606 285492 FLJ35424 - - HPRD:08181 4 4p16.3 uncharacterized FLJ35424 miscRNA - - - - 20121230 -9606 285498 RNF212 - ZHP3 HGNC:27729|MIM:612041|Ensembl:ENSG00000178222|HPRD:14158|Vega:OTTHUMG00000118997 4 4p16.3 ring finger protein 212 protein-coding RNF212 ring finger protein 212 O RING finger protein 212 20121230 -9606 285500 LOC285500 - - - 4 4q34.3 uncharacterized LOC285500 protein-coding - - - - 20120508 -9606 285501 LOC285501 - - - 4 4q34.3 uncharacterized LOC285501 miscRNA - - - - 20121230 -9606 285505 LOC285505 - - - 4 4q32.1 uncharacterized LOC285505 miscRNA - - - - 20121017 -9606 285512 FAM13A-AS1 - FAM13A1OS|FAM13AOS|NCRNA00039 HGNC:19370|MIM:613300 4 4q22.1 FAM13A antisense RNA 1 miscRNA FAM13A-AS1 FAM13A antisense RNA 1 O - 20121230 -9606 285513 GPRIN3 - GRIN3 HGNC:27733|MIM:611241|Ensembl:ENSG00000185477|HPRD:14159|Vega:OTTHUMG00000161044 4 4q22.1 GPRIN family member 3 protein-coding GPRIN3 GPRIN family member 3 O G protein-regulated inducer of neurite outgrowth 3 20121230 -9606 285521 COX18 - COX18HS HGNC:26801|MIM:610428|Ensembl:ENSG00000163626|HPRD:08249|Vega:OTTHUMG00000129917 4 4q13.3 cytochrome c oxidase assembly homolog 18 (yeast) protein-coding COX18 cytochrome c oxidase assembly homolog 18 (yeast) O COX18 cytochrome c oxidase assembly homolog|Cox18Hs1 protein|Cox18Hs2 protein|Cox18Hs3 protein|cytochrome c oxidase assembly protein 18|mitochondrial COX18|mitochondrial inner membrane protein COX18 20121230 -9606 285525 YIPF7 - FinGER9 HGNC:26825|Ensembl:ENSG00000177752|HPRD:08259|Vega:OTTHUMG00000160467 4 4p12 Yip1 domain family, member 7 protein-coding YIPF7 Yip1 domain family, member 7 O YIP1 family member 7|five-pass transmembrane protein localizing in the Golgi apparatus and the endoplasmic reticulum 9|protein YIPF7 20121230 -9606 285527 FRYL - KIAA0826 HGNC:29127|Ensembl:ENSG00000075539|Vega:OTTHUMG00000160608 4 4p11 FRY-like protein-coding FRYL FRY-like O ALL1-fused gene from chromosome 4p12 protein|furry homolog-like|furry-like|protein furry homolog-like 20121230 -9606 285533 RNF175 - - HGNC:27735|Ensembl:ENSG00000145428|HPRD:15262|Vega:OTTHUMG00000161557 4 4q31.3 ring finger protein 175 protein-coding RNF175 ring finger protein 175 O RING finger protein 175 20121230 -9606 285540 LOC285540 - - - 4 4p15.31 uncharacterized LOC285540 miscRNA - - - - 20121230 -9606 285547 LOC285547 - - - 4 4p15.33 uncharacterized LOC285547 miscRNA - - - - 20121230 -9606 285548 LOC285548 - - - 4 4p15.33 uncharacterized LOC285548 miscRNA - - - - 20121230 -9606 285550 FAM200B - - HGNC:27740|Ensembl:ENSG00000237765|Vega:OTTHUMG00000160279 4 4p15.32 family with sequence similarity 200, member B protein-coding FAM200B family with sequence similarity 200, member B O putative protein FAM200B 20121230 -9606 285555 STPG2 - C4orf37 HGNC:28712|Ensembl:ENSG00000163116|HPRD:14650|Vega:OTTHUMG00000131009 4 4q22.3-q23 sperm-tail PG-rich repeat containing 2 protein-coding STPG2 sperm-tail PG-rich repeat containing 2 O sperm-tail PG-rich repeat-containing protein 2 20121230 -9606 285556 LOC285556 - - - 4 4q23 uncharacterized LOC285556 protein-coding - - - - 20121230 -9606 285577 LOC285577 - - - 5 5p15.33 uncharacterized LOC285577 miscRNA - - - - 20121230 -9606 285588 EFCAB9 hCG_1645086 - HGNC:34530|Ensembl:ENSG00000214360|Vega:OTTHUMG00000163271 5 5q35.1 EF-hand calcium binding domain 9 protein-coding EFCAB9 EF-hand calcium binding domain 9 O EF-hand calcium-binding domain-containing protein 9|EF-hand domain-containing protein 20121230 -9606 285590 SH3PXD2B - FAD49|FTHS|HOFI|KIAA1295|TKS4|TSK4 HGNC:29242|MIM:613293|Ensembl:ENSG00000174705|HPRD:18591|Vega:OTTHUMG00000163280 5 5q35.1 SH3 and PX domains 2B protein-coding SH3PXD2B SH3 and PX domains 2B O SH3 and PX domain-containing protein 2B|adapter protein HOFI|adaptor protein HOFI|factor for adipocyte differentiation 49|tyrosine kinase substrate with four SH3 domains 20121230 -9606 285591 LOC285591 - - - 5 5q35.1 pyrophosphatase (inorganic) 1 pseudogene pseudo - - - - 20121230 -9606 285593 LOC285593 - - - 5 5q35.2 uncharacterized LOC285593 miscRNA - - - - 20121230 -9606 285596 FAM153A - NY-REN-7 HGNC:29940|Ensembl:ENSG00000170074|HPRD:14870|Vega:OTTHUMG00000163394 5 5q35.3 family with sequence similarity 153, member A protein-coding FAM153A family with sequence similarity 153, member A O NY REN 7 antigen|protein FAM153A|renal carcinoma antigen NY-REN-7 20121230 -9606 285598 ARL10 - ARL10A HGNC:22042|Ensembl:ENSG00000175414|HPRD:12482|Vega:OTTHUMG00000130655 5 5q35.2 ADP-ribosylation factor-like 10 protein-coding ARL10 ADP-ribosylation factor-like 10 O ADP-ribosylation factor-like 10A|ADP-ribosylation factor-like membrane-associated protein|ADP-ribosylation factor-like protein 10 20121230 -9606 285600 KIAA0825 hCG_2016227 C5orf36 HGNC:28532|Ensembl:ENSG00000185261|HPRD:11337|Vega:OTTHUMG00000131331 5 5q15 KIAA0825 protein-coding KIAA0825 KIAA0825 O uncharacterized protein KIAA0825 20121230 -9606 285601 GPR150 - PGR11 HGNC:23628|Ensembl:ENSG00000178015|HPRD:11012|Vega:OTTHUMG00000121170 5 5q15 G protein-coupled receptor 150 protein-coding GPR150 G protein-coupled receptor 150 O probable G-protein coupled receptor 150|seven transmembrane helix receptor 20121230 -9606 285605 DTWD2 - - HGNC:19334|Ensembl:ENSG00000169570|HPRD:08168|Vega:OTTHUMG00000162956 5 5q23.1 DTW domain containing 2 protein-coding DTWD2 DTW domain containing 2 O DTW domain-containing protein 2 20121230 -9606 285613 RELL2 UNQ9423/PRO34565 C5orf16 HGNC:26902|MIM:611213|Ensembl:ENSG00000164620|HPRD:12830|Vega:OTTHUMG00000129612 5 5q31.3 RELT-like 2 protein-coding RELL2 RELT-like 2 O RELT-like protein 2|receptor expressed in lymphoid tissues like 2 20121230 -9606 285622 NBPF22P RP5-964H19.3 - HGNC:28731 5 5q14.3 neuroblastoma breakpoint family, member 22, pseudogene pseudo NBPF22P neuroblastoma breakpoint family, member 22, pseudogene O - 20121230 -9606 285626 LOC285626 - - - 5 5q33.3 uncharacterized LOC285626 miscRNA - - - - 20121230 -9606 285627 LOC285627 - - - 5 5q33.3 uncharacterized LOC285627 miscRNA - - - - 20121230 -9606 285628 LOC285628 - - - 5 5q34 uncharacterized LOC285628 protein-coding - - - - 20120508 -9606 285629 LOC285629 - - - 5 5q34 uncharacterized LOC285629 miscRNA - - - - 20121230 -9606 285634 INTS6P1 - - HGNC:43921 5 5p13.1 integrator complex subunit 6 pseudogene 1 pseudo INTS6P1 integrator complex subunit 6 pseudogene 1 O - 20121230 -9606 285636 C5orf51 - - HGNC:27750|Ensembl:ENSG00000205765|HPRD:11258|Vega:OTTHUMG00000162084 5 5p13.1 chromosome 5 open reading frame 51 protein-coding C5orf51 chromosome 5 open reading frame 51 O UPF0600 protein C5orf51 20121230 -9606 285638 LOC285638 - - - 5 5q21.3 uncharacterized LOC285638 unknown - - - - 20120508 -9606 285641 SLC36A3 - PAT3|TRAMD2|tramdorin2 HGNC:19659|MIM:608332|Ensembl:ENSG00000186334|HPRD:12216|Vega:OTTHUMG00000130128 5 5q33.1 solute carrier family 36 (proton/amino acid symporter), member 3 protein-coding SLC36A3 solute carrier family 36 (proton/amino acid symporter), member 3 O proton-coupled amino acid transporter 3|proton/amino acid transporter 3|solute carrier family 36 member 3|solute carrier family 36, member 3|tramdorin 2|tramdorin-2 20121230 -9606 285643 KIF4B - - HGNC:6322|MIM:609184|Ensembl:ENSG00000226650|Vega:OTTHUMG00000164143 5 5q33.1 kinesin family member 4B protein-coding KIF4B kinesin family member 4B O chromokinesin-B|chromosome-associated kinesin KIF4B 20121230 -9606 285647 SUDS3P1 - - HGNC:44000 5 5q35.3 suppressor of defective silencing 3 homolog (S. cerevisiae) pseudogene 1 pseudo SUDS3P1 suppressor of defective silencing 3 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 285659 OR2V2 - OR2V3|OST713 HGNC:15341|Ensembl:ENSG00000182613|HPRD:14956|Vega:OTTHUMG00000130933 5 5q35.3 olfactory receptor, family 2, subfamily V, member 2 protein-coding OR2V2 olfactory receptor, family 2, subfamily V, member 2 O olfactory receptor 2V2|olfactory receptor 2V3|olfactory receptor OR5-3|olfactory receptor, family 2, subfamily V, member 3 20121230 -9606 285668 C5orf64 - - HGNC:26744|Ensembl:ENSG00000178722|HPRD:09962|Vega:OTTHUMG00000162412 5 5q12.1 chromosome 5 open reading frame 64 protein-coding C5orf64 chromosome 5 open reading frame 64 O uncharacterized protein C5orf64 20121230 -9606 285671 RNF180 - - HGNC:27752|Ensembl:ENSG00000164197|HPRD:15263|Vega:OTTHUMG00000162278 5 5q12.3 ring finger protein 180 protein-coding RNF180 ring finger protein 180 O E3 ubiquitin-protein ligase RNF180 20121230 -9606 285672 SREK1IP1 - P18SRP|SFRS12IP1 HGNC:26716|Ensembl:ENSG00000153006|HPRD:08210|Vega:OTTHUMG00000162291 5 5q12.3 SREK1-interacting protein 1 protein-coding SREK1IP1 SREK1-interacting protein 1 O SFRS12-interacting protein 1|p18 splicing regulatory protein|protein SFRS12IP1|protein SREK1IP1|splicing regulatory protein of 18 kDa 20121230 -9606 285676 ZNF454 - - HGNC:21200|Ensembl:ENSG00000178187|HPRD:15796|Vega:OTTHUMG00000130891 5 5q35.3 zinc finger protein 454 protein-coding ZNF454 zinc finger protein 454 O - 20121230 -9606 285679 C5orf60 - - HGNC:27753|Ensembl:ENSG00000204661|Vega:OTTHUMG00000163221 5 5q35.3 chromosome 5 open reading frame 60 protein-coding C5orf60 chromosome 5 open reading frame 60 O putative uncharacterized protein C5orf60|putative uncharacterized protein FLJ35723 20121230 -9606 285690 LOC285690 - - - 5 5p15.32 uncharacterized LOC285690 protein-coding - - - - 20120508 -9606 285692 LOC285692 - - - 5 5p15.31 uncharacterized LOC285692 miscRNA - - - - 20121230 -9606 285696 LOC285696 - - HPRD:08169 5 5p15.1 uncharacterized LOC285696 miscRNA - - - - 20121230 -9606 285697 LOC285697 - - - 5 5p15.1 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa pseudogene pseudo - - - - 20121230 -9606 285704 RGMB - DRAGON HGNC:26896|MIM:612687|Ensembl:ENSG00000174136|HPRD:15243|Vega:OTTHUMG00000162745 5 5q15 RGM domain family, member B protein-coding RGMB RGM domain family, member B O DRG11-responsive axonal guidance and outgrowth of neurite|RGM domain family member B|repulsive guidance molecule B 20121230 -9606 285706 LOC285706 - - - 5 5q21.1 cytokine receptor-like factor 3 pseudogene pseudo - - - - 20121230 -9606 285708 LINC00491 - - HGNC:43428 5 5q21.2 long intergenic non-protein coding RNA 491 miscRNA LINC00491 long intergenic non-protein coding RNA 491 O - 20121021 -9606 285735 LINC00326 - NCRNA00326 HGNC:41926|HPRD:18776 6 6q23.2 long intergenic non-protein coding RNA 326 miscRNA LINC00326 long intergenic non-protein coding RNA 326 O - 20121230 -9606 285736 FLJ35700 - - - 6 6q23.2 uncharacterized protein FLJ35700 protein-coding - - - uncharacterized protein LOC285736 20111025 -9606 285737 CCRL1P1 - CCRL1P|dJ509I19.4 HGNC:21142 6 6q24.1 chemokine (C-C motif) receptor-like 1 pseudogene pseudo CCRL1P1 chemokine (C-C motif) receptor-like 1 pseudogene O - 20121230 -9606 285740 LOC285740 - - - 6 6q24.2 uncharacterized LOC285740 miscRNA - - - - 20121230 -9606 285741 LOC285741 - - - 6 6q24.2 tumor protein, translationally-controlled 1 pseudogene pseudo - - - - 20121230 -9606 285753 CEP57L1 RP11-487F23.2 C6orf182|bA487F23.2|cep57R HGNC:21561|Ensembl:ENSG00000183137|HPRD:10792|Vega:OTTHUMG00000015336 6 6q21 centrosomal protein 57kDa-like 1 protein-coding CEP57L1 centrosomal protein 57kDa-like 1 O centrosomal protein 57kDa-like protein 1|centrosomal protein CEP57L1|centrosomal protein of 57 kDa-related protein|cep57-related protein 20121230 -9606 285755 PPIL6 RP11-425D10.6 RSPH12|bA425D10.6|dJ919F19.1 HGNC:21557|Ensembl:ENSG00000185250|HPRD:15165|Vega:OTTHUMG00000036593 6 6q21 peptidylprolyl isomerase (cyclophilin)-like 6 protein-coding PPIL6 peptidylprolyl isomerase (cyclophilin)-like 6 O PPIase|cyclophilin-like protein PPIL6|peptidyl-prolyl cis-trans isomerase-like 6|peptidyl-prolyl cis-trans isomerase-like variant a|radial spoke 12 homolog|rotamase PPIL6 20121230 -9606 285758 LOC285758 - - - 6 6q21 uncharacterized LOC285758 miscRNA - - - - 20121230 -9606 285759 FLJ34503 - - HPRD:08173 6 6q21 uncharacterized FLJ34503 miscRNA - - - - 20121230 -9606 285761 DCBLD1 RP1-94G16.1 dJ94G16.1 HGNC:21479|Ensembl:ENSG00000164465|HPRD:16784|Vega:OTTHUMG00000015455 6 6q22.1 discoidin, CUB and LCCL domain containing 1 protein-coding DCBLD1 discoidin, CUB and LCCL domain containing 1 O discoidin, CUB and LCCL domain-containing protein 1 20121230 -9606 285762 LOC285762 - - - 6 6q22.31 uncharacterized LOC285762 miscRNA - - - - 20121230 -9606 285766 LOC285766 - - HPRD:17346 6 6p25.3 uncharacterized LOC285766 miscRNA - - - - 20120508 -9606 285768 LOC285768 - - - 6 6p25.3 uncharacterized LOC285768 miscRNA - - - - 20121230 -9606 285778 LOC285778 - - - 6 6p25.1 uncharacterized LOC285778 protein-coding - - - - 20120508 -9606 285780 LY86-AS1 RP3-398D13.1 LY86-AS|LY86AS HGNC:26593|HPRD:08165 6 6p25.1 LY86 antisense RNA 1 miscRNA LY86-AS1 LY86 antisense RNA 1 O - 20121230 -9606 285782 CAGE1 RP11-69L16.7 CT3|CT95|CTAG3|bA69L16.7 HGNC:21622|MIM:608304|Ensembl:ENSG00000164304|HPRD:10511|Vega:OTTHUMG00000014200 6 6p24.3 cancer antigen 1 protein-coding CAGE1 cancer antigen 1 O cancer-associated gene 1 protein|cancer/testis antigen 3|cancer/testis antigen 95|cancer/testis antigen gene 1 20121230 -9606 285785 RPL39P3 - RPL39_9_712 HGNC:21383 6 6q13 ribosomal protein L39 pseudogene 3 pseudo RPL39P3 ribosomal protein L39 pseudogene 3 O - 20121230 -9606 285796 PACRG-AS1 - - HGNC:27772 6 6q26 PACRG antisense RNA 1 miscRNA PACRG-AS1 PACRG antisense RNA 1 O - 20121230 -9606 285800 PRR18 - - HGNC:28574|Ensembl:ENSG00000176381|HPRD:17533|Vega:OTTHUMG00000167034 6 6q27 proline rich 18 protein-coding PRR18 proline rich 18 O proline rich region 18|proline-rich protein 18 20121230 -9606 285804 LOC285804 - - - 6 6q27 uncharacterized LOC285804 miscRNA - - - - 20120508 -9606 285812 LOC285812 - - - 6 6p23 uncharacterized LOC285812 protein-coding - - - - 20120508 -9606 285819 LOC285819 - - - 6 6p22.1 uncharacterized LOC285819 miscRNA - - - - 20121230 -9606 285829 SUMO2P1 - SMT3Bp|SMT3H2P|SUMO2P|dJ271M21 HGNC:13985 6 6p22.1 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 1 pseudo SUMO2P1 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 1 O - 20121230 -9606 285830 HLA-F-AS1 RP3-377H14.5 - HGNC:26645|HPRD:16938 6 6p22.1 HLA-F antisense RNA 1 miscRNA HLA-F-AS1 HLA-F antisense RNA 1 O - 20121230 -9606 285834 HCG22 XXbac-BPG118E17.6 PBMUCL2 HGNC:27780|MIM:613918 6 6p21.33 HLA complex group 22 (non-protein coding) miscRNA HCG22 HLA complex group 22 (non-protein coding) O - 20121230 -9606 285835 LOC285835 - - - 6 6p21.32 uncharacterized LOC285835 protein-coding - - - - 20120508 -9606 285847 LOC285847 - - - 6 6p21.31 uncharacterized LOC285847 miscRNA - - - - 20121230 -9606 285848 PNPLA1 RP1-50J22.1 dJ50J22.1 HGNC:21246|MIM:612121|Ensembl:ENSG00000180316|HPRD:17869|Vega:OTTHUMG00000014590 6 6p21.31 patatin-like phospholipase domain containing 1 protein-coding PNPLA1 patatin-like phospholipase domain containing 1 O patatin-like phospholipase domain-containing protein 1 20121230 -9606 285849 COX6A1P2 RP3-405J24.3 - HGNC:35239 6 6p21.2 cytochrome c oxidase subunit VIa polypeptide 1 pseudogene 2 pseudo COX6A1P2 cytochrome c oxidase subunit VIa polypeptide 1 pseudogene 2 O - 20121230 -9606 285852 TREML4 UNQ9425/PRO34675 TLT-4|TLT4 HGNC:30807|MIM:614664|Ensembl:ENSG00000188056|HPRD:15548|Vega:OTTHUMG00000016408 6 6p21.1 triggering receptor expressed on myeloid cells-like 4 protein-coding TREML4 triggering receptor expressed on myeloid cells-like 4 O TREM like transcript 4|trem-like transcript 4 protein|triggering receptor expressed on myeloid cells-like protein 4 20121230 -9606 285855 RPL7L1 - dJ475N16.4 HGNC:21370|Ensembl:ENSG00000146223|HPRD:18000|Vega:OTTHUMG00000014710 6 6p21.1 ribosomal protein L7-like 1 protein-coding RPL7L1 ribosomal protein L7-like 1 O 60S ribosomal protein L7-like 1 20121230 -9606 285857 LOC285857 - - - 6 6p21.1 uncharacterized LOC285857 protein-coding - - - - 20120508 -9606 285872 THAP5P1 tcag7.565 - HGNC:22340 7 7q36.3 THAP domain containing 5 pseudogene 1 pseudo THAP5P1 THAP domain containing 5 pseudogene 1 O - 20121230 -9606 285877 POM121L12 - - HGNC:25369|Ensembl:ENSG00000221900|HPRD:13212|Vega:OTTHUMG00000155995 7 7p12.1 POM121 transmembrane nucleoporin-like 12 protein-coding POM121L12 POM121 transmembrane nucleoporin-like 12 O POM121 membrane glycoprotein-like 12|POM121-like protein 12 20121230 -9606 285878 LOC285878 - - - 7 7p11.2 uncharacterized LOC285878 miscRNA - - - - 20121230 -9606 285888 CNPY1 tcag7.570 - HGNC:27786|MIM:612493|Ensembl:ENSG00000146910|Vega:OTTHUMG00000151353 7 7q36.3 canopy 1 homolog (zebrafish) protein-coding CNPY1 canopy 1 homolog (zebrafish) O protein canopy homolog 1 20121230 -9606 285889 LOC285889 tcag7.571 - - 7 7q36.3 uncharacterized LOC285889 miscRNA - - - - 20121230 -9606 285893 ARAF3P - ARAFPS2 HGNC:35474 7 7q11.21 v-raf murine sarcoma 3611 viral oncogene homolog 3, pseudogene pseudo ARAF3P v-raf murine sarcoma 3611 viral oncogene homolog 3, pseudogene O - 20121230 -9606 285900 RPL6P20 - RPL6_6_811 HGNC:36543 7 7q11.21 ribosomal protein L6 pseudogene 20 pseudo RPL6P20 ribosomal protein L6 pseudogene 20 O - 20121230 -9606 285902 LOC285902 - - - 7 7q11.21 uncharacterized LOC285902 unknown - - - - 20120508 -9606 285905 INTS4L1 - - HGNC:21925|HPRD:08045 7 7q11.21 integrator complex subunit 4-like 1 pseudo INTS4L1 integrator complex subunit 4-like 1 O - 20121230 -9606 285908 LINC00174 - NCRNA00174 HGNC:27788|HPRD:14160 7 7q11.21 long intergenic non-protein coding RNA 174 miscRNA LINC00174 long intergenic non-protein coding RNA 174 O - 20121230 -9606 285941 C7orf71 - - HGNC:22364|Ensembl:ENSG00000222004|Vega:OTTHUMG00000152860 7 7p15.2 chromosome 7 open reading frame 71 protein-coding C7orf71 chromosome 7 open reading frame 71 O putative uncharacterized protein C7orf71 20121230 -9606 285943 HOXA-AS2 - - HGNC:43745 7 7p15.2 HOXA cluster antisense RNA 2 unknown HOXA-AS2 HOXA cluster antisense RNA 2 O - 20121230 -9606 285954 INHBA-AS1 - - HGNC:40303 7 7p14.1 INHBA antisense RNA 1 miscRNA INHBA-AS1 INHBA antisense RNA 1 O - 20121230 -9606 285955 SPDYE1 - Ringo1|SPDYE|WBSCR19 HGNC:16408|Ensembl:ENSG00000136206|HPRD:11677|Vega:OTTHUMG00000128985 7 7p13 speedy homolog E1 (Xenopus laevis) protein-coding SPDYE1 speedy homolog E1 (Xenopus laevis) O Speedy E|Williams Beuren syndrome chromosome region 19 protein|putative WBSCR19-like protein 6|speedy protein E1|williams-Beuren syndrome chromosomal region 19 protein 20121230 -9606 285957 LOC285957 - - - 7 7p13 uncharacterized LOC285957 protein-coding - - - - 20120508 -9606 285958 SNHG15 tcag7.814 C7orf40 HGNC:27797 7 7p13 small nucleolar RNA host gene 15 (non-protein coding) miscRNA SNHG15 small nucleolar RNA host gene 15 (non-protein coding) O - 20121230 -9606 285961 SEPT7L RP11-291L22.2 CDC10L|bA291L22.2 HGNC:30810 10 10p11.1 septin 7-like pseudo SEPT7L septin 7-like O - 20121230 -9606 285962 FLJ40852 - - HPRD:08286 7 7q34 uncharacterized LOC285962 miscRNA - - - - 20121230 -9606 285965 EPHA1-AS1 - - HGNC:27799 7 7q35 EPHA1 antisense RNA 1 miscRNA EPHA1-AS1 EPHA1 antisense RNA 1 O - 20121230 -9606 285966 FAM115C - FAM139A HGNC:26878|Ensembl:ENSG00000170379|HPRD:07117|Vega:OTTHUMG00000153232 7 7q35 family with sequence similarity 115, member C protein-coding FAM115C family with sequence similarity 115, member C O family with sequence similarity 139, member A|protein FAM115C 20121230 -9606 285971 ZNF775 - - HGNC:28501|Ensembl:ENSG00000196456|HPRD:14567|Vega:OTTHUMG00000158324 7 7q36.1 zinc finger protein 775 protein-coding ZNF775 zinc finger protein 775 O - 20121230 -9606 285972 LOC285972 - - - 7 7q36.1 uncharacterized LOC285972 miscRNA - - - - 20121230 -9606 285973 ATG9B - APG9L2|NOS3AS|SONE HGNC:21899|MIM:612205|HPRD:08253 7 7q36.1 autophagy related 9B protein-coding ATG9B autophagy related 9B O APG9-like 2|ATG9 autophagy related 9 homolog B|autophagy 9-like 2 protein|autophagy-related protein 9B|endothelial nitric oxide synthase antisense|nitric oxide synthase 3-overlapping antisense gene protein|protein sONE 20121230 -9606 285987 DLX6-AS1 - DLX6-AS|DLX6AS|Evf-2|NCRNA00212 HGNC:37151 7 7q21.3 DLX6 antisense RNA 1 miscRNA DLX6-AS1 DLX6 antisense RNA 1 O - 20121230 -9606 285989 ZNF789 - - HGNC:27801|Ensembl:ENSG00000198556|HPRD:14161|Vega:OTTHUMG00000154601 7 7q22.1 zinc finger protein 789 protein-coding ZNF789 zinc finger protein 789 O - 20121230 -9606 286002 SLC26A4-AS1 - - HGNC:22385 7 7q22.3 SLC26A4 antisense RNA 1 miscRNA SLC26A4-AS1 SLC26A4 antisense RNA 1 O - 20121230 -9606 286006 C7orf53 - - HGNC:22036|Ensembl:ENSG00000181016|HPRD:08258|Vega:OTTHUMG00000155190 7 7q31.1 chromosome 7 open reading frame 53 protein-coding C7orf53 chromosome 7 open reading frame 53 O coiled-coil domain-containing transmembrane protein C7orf53 20121230 -9606 286009 LOC286009 tcag7.929 - - 7 7q31.2 uncharacterized LOC286009 other - - - - 20111105 -9606 286016 TPI1P2 tcag7.1015 - HGNC:38069 7 7q32.1 triosephosphate isomerase 1 pseudogene 2 pseudo TPI1P2 triosephosphate isomerase 1 pseudogene 2 O - 20121230 -9606 286023 FLJ40288 - - HPRD:08276 7 7q32.3 uncharacterized FLJ40288 miscRNA - - - - 20121230 -9606 286042 FAM86B3P hCG_1990547 - HGNC:44371 8 8p23.1 family with sequence similarity 86, member A pseudogene pseudo FAM86B3P family with sequence similarity 86, member B3, pseudogene O - 20121230 -9606 286043 MRPS18CP2 - - HGNC:29743 8 8p23.1 mitochondrial ribosomal protein S18C pseudogene 2 pseudo MRPS18CP2 mitochondrial ribosomal protein S18C pseudogene 2 O - 20121230 -9606 286046 XKR6 hCG_1991046 C8orf21|C8orf5|C8orf7|XRG6 HGNC:27806|Ensembl:ENSG00000171044|HPRD:12926|Vega:OTTHUMG00000129351 8 8p23.1 XK, Kell blood group complex subunit-related family, member 6 protein-coding XKR6 XK, Kell blood group complex subunit-related family, member 6 O Transmembrane protein C8orf5|X Kell blood group precursor-related family, member 6|XK-related protein 6 20121230 -9606 286052 LOC286052 - - - 8 8q24.13 uncharacterized LOC286052 protein-coding - - - - 20120508 -9606 286053 NSMCE2 - C8orf36|MMS21|NSE2 HGNC:26513|Ensembl:ENSG00000156831|HPRD:08131|Vega:OTTHUMG00000164993 8 8q24.13 non-SMC element 2, MMS21 homolog (S. cerevisiae) protein-coding NSMCE2 non-SMC element 2, MMS21 homolog (S. cerevisiae) O E3 SUMO-protein ligase NSE2|MMS21 homolog|hMMS21|methyl methanesulfonate sensitivity gene 21|non-SMC element 2 homolog|non-structural maintenance of chromosomes element 2 homolog 20121230 -9606 286058 LOC286058 - - - 8 8p21.2 uncharacterized LOC286058 protein-coding - - - - 20120508 -9606 286059 LOC286059 - - - 8 8p21.2 tumor necrosis factor receptor superfamily, member 10d, decoy with truncated death domain pseudogene pseudo - - - - 20121230 -9606 286063 LOC286063 - - - 8 8q11.21 uncharacterized LOC286063 protein-coding - - - - 20120508 -9606 286065 MAPK6PS4 - Erk3ps4 HGNC:18456 8 8q11.1 mitogen-activated protein kinase 6 pseudogene 4 pseudo MAPK6PS4 mitogen-activated protein kinase 6 pseudogene 4 O - 20121230 -9606 286068 LOC286068 - - - 8 8q11.21 uncharacterized LOC286068 protein-coding - - - - 20120508 -9606 286071 LOC286071 - - - 8 8q11.22 uncharacterized LOC286071 protein-coding - - - - 20120508 -9606 286075 ZNF707 - - HGNC:27815|Ensembl:ENSG00000181135|HPRD:14162|Vega:OTTHUMG00000165146 8 8q24.3 zinc finger protein 707 protein-coding ZNF707 zinc finger protein 707 O - 20121230 -9606 286076 BREA2 - - HPRD:18592 8 8q24.3 breast cancer estrogen-induced apoptosis 2 miscRNA - - - - 20121230 -9606 286077 FAM83H - AI3 HGNC:24797|MIM:611927|Ensembl:ENSG00000180921|HPRD:13521|Vega:OTTHUMG00000133559 8 8q24.3 family with sequence similarity 83, member H protein-coding FAM83H family with sequence similarity 83, member H O FAM83H variant 1|protein FAM83H 20121230 -9606 286083 LOC286083 - - - 8 8p23.3 uncharacterized LOC286083 miscRNA - - - - 20121230 -9606 286087 LOC286087 - - - 8 8p23.2 uncharacterized LOC286087 protein-coding - - - - 20120508 -9606 286094 LOC286094 - - - 8 8q24.22 uncharacterized LOC286094 miscRNA - - - - 20121230 -9606 286097 EFHA2 - - HGNC:27820|MIM:610633|Ensembl:ENSG00000155970|HPRD:13264|Vega:OTTHUMG00000096965 8 8p22 EF-hand domain family, member A2 protein-coding EFHA2 EF-hand domain family, member A2 O EF hand domain family A2|EF hand domain family, member A2|EF-hand domain-containing family member A2 20121230 -9606 286101 ZNF252P - ZNF252 HGNC:13046 8 8q24.3 zinc finger protein 252, pseudogene pseudo ZNF252P zinc finger protein 252, pseudogene O - 20121230 -9606 286102 TMED10P1 - TMED10P|Tmp21-II HGNC:30754 8 8q24.3 transmembrane emp24-like trafficking protein 10 (yeast) pseudogene 1 pseudo TMED10P1 transmembrane emp24-like trafficking protein 10 (yeast) pseudogene 1 O - 20121230 -9606 286103 ZNF252P-AS1 - C8orf77 HGNC:27821 8 8q24.3 ZNF252P antisense RNA 1 miscRNA ZNF252P-AS1 ZNF252P antisense RNA 1 O - 20121230 -9606 286109 LOC286109 - - - 8 8q24.3 uncharacterized LOC286109 protein-coding - - - - 20120508 -9606 286114 LOC286114 - - - 8 8p21.3 uncharacterized LOC286114 miscRNA - - - - 20121230 -9606 286121 LOC286121 - - - 8 8q24.3 uncharacterized LOC286121 protein-coding - - - - 20120508 -9606 286122 C8orf31 - - HGNC:26731|Ensembl:ENSG00000177335|HPRD:08781|Vega:OTTHUMG00000164771 8 8q24.3 chromosome 8 open reading frame 31 protein-coding C8orf31 chromosome 8 open reading frame 31 O uncharacterized protein C8orf31 20121230 -9606 286128 ZFP41 - ZNF753 HGNC:26786|Ensembl:ENSG00000181638|HPRD:08244|Vega:OTTHUMG00000164951 8 8q24.3 ZFP41 zinc finger protein protein-coding ZFP41 ZFP41 zinc finger protein O zfp-41|zinc finger protein 41 homolog 20121230 -9606 286133 SCARA5 UNQ2938/PRO28700 NET33|Tesr HGNC:28701|MIM:611306|Ensembl:ENSG00000168079|HPRD:11356|Vega:OTTHUMG00000132172 8 8p21.1 scavenger receptor class A, member 5 (putative) protein-coding SCARA5 scavenger receptor class A, member 5 (putative) O scavenger receptor class A member 5|scavenger receptor hlg|testis expressed scavenger receptor 20121230 -9606 286135 LOC286135 - - - 8 8p12 uncharacterized LOC286135 miscRNA - - - - 20121230 -9606 286140 RNF5P1 - - HGNC:31053 8 8p11.22 ring finger protein 5, E3 ubiquitin protein ligase pseudogene 1 pseudo RNF5P1 ring finger protein 5, E3 ubiquitin protein ligase pseudogene 1 O - 20121230 -9606 286144 TRIQK - C8orf83|PRO0845|UPF0599 HGNC:27828|Ensembl:ENSG00000205133|Vega:OTTHUMG00000164162 8 8q22.1 triple QxxK/R motif containing protein-coding TRIQK triple QxxK/R motif containing O protein TRIQK|triple QxxK/R motif-containing protein|triple repetitive-sequence of QXXK/R protein homolog 20121230 -9606 286148 DPY19L4 - - HGNC:27829|MIM:613895|Ensembl:ENSG00000156162|HPRD:11259|Vega:OTTHUMG00000164589 8 8q22.1 dpy-19-like 4 (C. elegans) protein-coding DPY19L4 dpy-19-like 4 (C. elegans) O dpy-19-like protein 4|protein dpy-19 homolog 4 20121230 -9606 286149 LOC286149 - - - 8 8q22.1 uncharacterized LOC286149 unknown - - - - 20121230 -9606 286150 RPS2P33 - RPS2_11_929 HGNC:35549 8 8q22.1 ribosomal protein S2 pseudogene 33 pseudo RPS2P33 ribosomal protein S2 pseudogene 33 O - 20121230 -9606 286151 FBXO43 - EMI2|ERP1|FBX43 HGNC:28521|MIM:609110|Ensembl:ENSG00000156509|HPRD:18777|Vega:OTTHUMG00000164803 8 8q22.2 F-box protein 43 protein-coding FBXO43 F-box protein 43 O F-box only protein 43|early mitotic inhibitor 2|endogenous meiotic inhibitor 2 20121230 -9606 286154 LOC286154 - - - 8 8q22.3 uncharacterized LOC286154 protein-coding - - - - 20120508 -9606 286156 MAPK6PS5 - - HGNC:18979 8 8q23.1 mitogen-activated protein kinase 6 pseudogene 5 pseudo MAPK6PS5 mitogen-activated protein kinase 6 pseudogene 5 O - 20121230 -9606 286157 PCBP2P2 - - HGNC:8650 8 8q21-q22 poly(rC) binding protein 2 pseudogene 2 pseudo PCBP2P2 poly(rC) binding protein 2 pseudogene 2 O - 20121230 -9606 286161 LOC286161 - - - 8 8p23.3 uncharacterized LOC286161 unknown - - - - 20120508 -9606 286177 LOC286177 - - - 8 8q12.1 uncharacterized LOC286177 miscRNA - - - - 20121230 -9606 286178 LOC286178 - - - 8 8q12.1 uncharacterized LOC286178 unknown - - - - 20121230 -9606 286183 NKAIN3 - FAM77D HGNC:26829|MIM:612872|Ensembl:ENSG00000185942|HPRD:08261|Vega:OTTHUMG00000164361 8 8q12.3 Na+/K+ transporting ATPase interacting 3 protein-coding NKAIN3 Na+/K+ transporting ATPase interacting 3 O Na(+)/K(+)-transporting ATPase subunit beta-1-interacting protein 3|family with sequence similarity 77, member D|sodium/potassium-transporting ATPase subunit beta-1-interacting protein 3 20121230 -9606 286184 LOC286184 - - - 8 8q12.3 uncharacterized LOC286184 miscRNA - - - - 20121230 -9606 286186 LOC286186 - - - 8 8q13.1 uncharacterized LOC286186 miscRNA - - - - 20121230 -9606 286187 PPP1R42 - LRRC67|TLLR|dtr HGNC:33732|Ensembl:ENSG00000178125|HPRD:14573|Vega:OTTHUMG00000164745 8 8q13.1 protein phosphatase 1, regulatory subunit 42 protein-coding PPP1R42 protein phosphatase 1, regulatory subunit 42 O leucine rich repeat containing 67|leucine-rich repeat-containing protein 67|protein phosphatase 1 regulatory subunit 42|testis leucine-rich repeat 20121230 -9606 286189 LOC286189 - - - 8 8q13.1 uncharacterized LOC286189 miscRNA - - - - 20121230 -9606 286190 LOC286190 - - - 8 8q13.2 uncharacterized LOC286190 miscRNA - - - - 20121230 -9606 286191 LOC286191 - - - 8 8q13.3 uncharacterized LOC286191 protein-coding - - - - 20120508 -9606 286204 CRB2 RP11-230L22.2 - HGNC:18688|MIM:609720|Ensembl:ENSG00000148204|HPRD:13093|Vega:OTTHUMG00000020638 9 9q33.3 crumbs homolog 2 (Drosophila) protein-coding CRB2 crumbs homolog 2 (Drosophila) O crumbs homolog 2|crumbs-like protein 2 20121230 -9606 286205 SCAI - C9orf126|NET40 HGNC:26709|Ensembl:ENSG00000173611|HPRD:12941|Vega:OTTHUMG00000020667 9 9q33.3 suppressor of cancer cell invasion protein-coding SCAI suppressor of cancer cell invasion O protein SCAI|suppressor of cancer cell invasion protein 20121230 -9606 286207 C9orf117 RP11-56D16.5 - HGNC:27843|Ensembl:ENSG00000160401|HPRD:16673|Vega:OTTHUMG00000020709 9 9q34.11 chromosome 9 open reading frame 117 protein-coding C9orf117 chromosome 9 open reading frame 117 O uncharacterized protein C9orf117 20121230 -9606 286223 C9orf47 - C9orf108|bA791O21.3 HGNC:23669|Ensembl:ENSG00000186354|HPRD:12962|Vega:OTTHUMG00000020172 9 9q22.1 chromosome 9 open reading frame 47 protein-coding C9orf47 chromosome 9 open reading frame 47 O uncharacterized protein C9orf47 20121230 -9606 286234 SPATA31E1 - C9orf79|FAM75E1 HGNC:26672|Ensembl:ENSG00000177992|HPRD:12979|Vega:OTTHUMG00000020157 9 9q22.1 SPATA31 subfamily E, member 1 protein-coding SPATA31E1 SPATA31 subfamily E, member 1 O FAM75-like protein C9orf79|XXyac-YM21GA2.5|family with sequence similarity 75, member E1|protein FAM75E1 20121230 -9606 286238 LOC286238 - - - 9 9q22.1 uncharacterized LOC286238 protein-coding - - - uncharacterized protein LOC286238 20121230 -9606 286239 LOC286239 - - - 9 9p21.1 malic enzyme 2, NAD(+)-dependent, mitochondrial pseudogene pseudo - - - - 20121230 -9606 286254 LOC286254 - - - 9 9q34.3 uncharacterized LOC286254 protein-coding - - - - 20120508 -9606 286256 LCN12 RP11-229P13.4 - HGNC:28733|MIM:612905|Ensembl:ENSG00000184925|HPRD:13978|Vega:OTTHUMG00000020968 9 9q34.3 lipocalin 12 protein-coding LCN12 lipocalin 12 O epididymal-specific lipocalin-12|lipocalcin 12 20121230 -9606 286257 C9orf142 - - HGNC:27849|Ensembl:ENSG00000148362|HPRD:14163|Vega:OTTHUMG00000020971 9 9q34.3 chromosome 9 open reading frame 142 protein-coding C9orf142 chromosome 9 open reading frame 142 O uncharacterized protein C9orf142 20121230 -9606 286262 TPRN - C9orf75|DFNB79|RP11-350O14.7 HGNC:26894|MIM:613354|Ensembl:ENSG00000176058|HPRD:12977|Vega:OTTHUMG00000020984 9 9q34.3 taperin protein-coding TPRN taperin O - 20121230 -9606 286272 LOC286272 - - - 9 9q12 uncharacterized LOC286272 protein-coding - - - - 20120508 -9606 286297 LOC286297 - - - 9 9q12 uncharacterized LOC286297 miscRNA - - - - 20121230 -9606 286310 LCN1P1 RP11-430N14.1 LCN1L1|bA430N14.2 HGNC:23412 9 9q34.2 lipocalin 1 pseudogene 1 pseudo LCN1P1 lipocalin 1 pseudogene 1 O - 20121230 -9606 286319 TUSC1 - TSG-9|TSG9 HGNC:31010|MIM:610529|Ensembl:ENSG00000198680|HPRD:18247|Vega:OTTHUMG00000159591 9 9p21.2 tumor suppressor candidate 1 protein-coding TUSC1 tumor suppressor candidate 1 O tumor suppressor candidate gene 1 protein 20121230 -9606 286333 FAM225A - C9orf109|LINC00256A|NCRNA00256A HGNC:27855 9 9q32 family with sequence similarity 225, member A (non-protein coding) miscRNA FAM225A family with sequence similarity 225, member A (non-protein coding) O - 20121230 -9606 286336 FAM78A RP11-544A12.6 C9orf59 HGNC:25465|Ensembl:ENSG00000126882|HPRD:12968|Vega:OTTHUMG00000020821 9 9q34 family with sequence similarity 78, member A protein-coding FAM78A family with sequence similarity 78, member A O protein FAM78A 20121230 -9606 286343 LURAP1L HYST0841 C9orf150|bA3L8.2 HGNC:31452|Ensembl:ENSG00000153714|HPRD:12944|Vega:OTTHUMG00000019557 9 9p23 leucine rich adaptor protein 1-like protein-coding LURAP1L leucine rich adaptor protein 1-like O - 20121230 -9606 286348 RPL7P33 - RPL7_16_965 HGNC:35937 9 9p22.3 ribosomal protein L7 pseudogene 33 pseudo RPL7P33 ribosomal protein L7 pseudogene 33 O - 20121230 -9606 286359 LOC286359 hCG_2045089 - - 9 9q22.33 uncharacterized LOC286359 miscRNA - - - - 20121230 -9606 286362 OR13C9 - OR37L|OR9-13 HGNC:15104|Ensembl:ENSG00000136839|HPRD:14909|Vega:OTTHUMG00000020416 9 9q31.1 olfactory receptor, family 13, subfamily C, member 9 protein-coding OR13C9 olfactory receptor, family 13, subfamily C, member 9 O olfactory receptor 13C9|olfactory receptor OR9-13 20121230 -9606 286365 OR13D1 - OR9-15 HGNC:14695|Ensembl:ENSG00000179055|HPRD:14910|Vega:OTTHUMG00000020412 9 9q31.1 olfactory receptor, family 13, subfamily D, member 1 protein-coding OR13D1 olfactory receptor, family 13, subfamily D, member 1 O olfactory receptor 13D1|olfactory receptor OR9-15 20121230 -9606 286367 LOC286367 - - - 9 9q31.1 FP944 miscRNA - - - - 20121230 -9606 286370 LOC286370 - - - 9 9q22.2 uncharacterized LOC286370 miscRNA - - - - 20121230 -9606 286380 FOXD4L3 RP11-561O23.3 FOXD4L2|FOXD6 HGNC:18523|MIM:611086|Ensembl:ENSG00000187559|HPRD:17011|Vega:OTTHUMG00000019959 9 9q21.11 forkhead box D4-like 3 protein-coding FOXD4L3 forkhead box D4-like 3 O FOXD4-like 2|FOXD4-like 3|Forkhead box protein D4-like 3|forkhead box D4 like 3|forkhead box protein D4-like 2 20121230 -9606 286382 LOC286382 - - - 9 9q21.13 uncharacterized LOC286382 protein-coding - - - - 20120508 -9606 286410 ATP11C RP11-197K18.1 ATPIG|ATPIQ HGNC:13554|MIM:300516|Ensembl:ENSG00000101974|HPRD:09814|Vega:OTTHUMG00000022538 X Xq27.1 ATPase, class VI, type 11C protein-coding ATP11C ATPase, class VI, type 11C O phospholipid-transporting ATPase IG|probable phospholipid-transporting ATPase IG 20121230 -9606 286411 RP1-177G6.2 RP1-177G6.2 - - X Xq27.1 uncharacterized LOC286411 miscRNA - - - - 20121230 -9606 286423 MRRFP1 RP1-57A13.2 MRRFP HGNC:35238 X Xq25 mitochondrial ribosome recycling factor pseudogene 1 pseudo MRRFP1 mitochondrial ribosome recycling factor pseudogene 1 O - 20121230 -9606 286430 NLRP2P - NALP2P|NOD24 HGNC:29887 X Xp11.21 NLR family, pyrin domain containing 2 pseudogene pseudo NLRP2P NLR family, pyrin domain containing 2 pseudogene O - 20121230 -9606 286436 H2BFM LL0XNC01-240C2.2 - HGNC:27867|Ensembl:ENSG00000101812|Vega:OTTHUMG00000022122 X Xq22.2 H2B histone family, member M protein-coding H2BFM H2B histone family, member M O H2B/s|histone H2B type F-M|histone H2B.s 20121230 -9606 286437 LOC286437 - - - X Xq22.2 uncharacterized LOC286437 miscRNA - - - - 20121230 -9606 286442 LOC286442 - - - X Xp11.4 uncharacterized LOC286442 miscRNA - - - - 20121230 -9606 286444 RPS2P55 - RPS2_29_1773 HGNC:36140 X Xp11.4 ribosomal protein S2 pseudogene 55 pseudo RPS2P55 ribosomal protein S2 pseudogene 55 O - 20121230 -9606 286451 YIPF6 RP13-253K9.1 FinGER6 HGNC:28304|Ensembl:ENSG00000181704|HPRD:06639|Vega:OTTHUMG00000021745 X Xq12 Yip1 domain family, member 6 protein-coding YIPF6 Yip1 domain family, member 6 O YIP1 family member 6|protein YIPF6 20121230 -9606 286453 LOC286453 - - HPRD:18368 X Xq22.1 chondroitin sulfate N-acetylgalactosaminyltransferase 2 pseudogene pseudo - - - - 20121230 -9606 286456 LOC286456 - - - X Xq28 NGFI-A binding protein 1 (EGR1 binding protein 1) pseudogene pseudo - - - - 20121230 -9606 286460 FAM3C2 - - HGNC:34501 X Xp22.11 FAM3C pseudogene pseudo FAM3C2 family with sequence similarity 3, member C2 (pseudogene) O - 20121230 -9606 286463 LOC286463 - - - X Xp21.3 ferritin, light polypeptide pseudogene pseudo - - - - 20100721 -9606 286464 CHDC2 RP13-11B7.1 CXorf59 HGNC:26708|Ensembl:ENSG00000176034|HPRD:06561|Vega:OTTHUMG00000021351 X Xp21.1 calponin homology domain containing 2 protein-coding CHDC2 calponin homology domain containing 2 O uncharacterized protein CXorf59 20121230 -9606 286467 LOC286467 - - - X Xq26.2 family with sequence similarity 195, member A pseudogene pseudo - - - - 20121230 -9606 286472 RAC1P4 - Psi4Rac1|RAC4 HGNC:31113 X Xq26.3 ras-related C3 botulinum toxin substrate 1 pseudogene 4 pseudo RAC1P4 ras-related C3 botulinum toxin substrate 1 pseudogene 4 O - 20121230 -9606 286480 UBE2E4P - UbcM2 HGNC:32199 X Xp22.2 ubiquitin-conjugating enzyme E2E 4 pseudogene pseudo UBE2E4P ubiquitin-conjugating enzyme E2E 4 pseudogene O - 20121230 -9606 286494 BRAFP1 - BRAF2|BRAFPS2 HGNC:18615 X Xq13.3 v-raf murine sarcoma viral oncogene homolog B1 pseudogene 1 pseudo BRAFP1 v-raf murine sarcoma viral oncogene homolog B1 pseudogene 1 O - 20121230 -9606 286495 TTC3P1 - RNF105L|TTC3L HGNC:23318 X Xq13.3 tetratricopeptide repeat domain 3 pseudogene 1 pseudo TTC3P1 tetratricopeptide repeat domain 3 pseudogene 1 O - 20121230 -9606 286499 FAM133A RP1-32F7.2 CT115 HGNC:26748|Ensembl:ENSG00000179083|HPRD:06562|Vega:OTTHUMG00000021975 X Xq21.32 family with sequence similarity 133, member A protein-coding FAM133A family with sequence similarity 133, member A O cancer/testis antigen 115|protein FAM133A 20121230 -9606 286512 LOC286512 - - - X Xp11.22 eukaryotic translation initiation factor 4A2 pseudogene pseudo - - - - 20121230 -9606 286514 MAGEB18 - - HGNC:28515|Ensembl:ENSG00000176774|HPRD:06647|Vega:OTTHUMG00000021282 X Xp21.3 melanoma antigen family B, 18 protein-coding MAGEB18 melanoma antigen family B, 18 O MAGE-B18 antigen|melanoma-associated antigen B18 20121230 -9606 286527 TMSB15B - Tbeta15b HGNC:28612|Ensembl:ENSG00000158427|HPRD:17546|Vega:OTTHUMG00000022117 X Xq22.2 thymosin beta 15B protein-coding TMSB15B thymosin beta 15B O thymosin beta-15B 20121230 -9606 286528 SSU72P1 - - HGNC:43620 X Xq23 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 1 pseudo SSU72P1 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 286530 P2RY8 RP11-261P4.4 P2Y8 HGNC:15524|MIM:300525|Ensembl:ENSG00000182162|HPRD:06671|Vega:OTTHUMG00000021060 X|Y Xp22.33; Yp11.3 purinergic receptor P2Y, G-protein coupled, 8 protein-coding P2RY8 purinergic receptor P2Y, G-protein coupled, 8 O G-protein coupled purinergic receptor P2Y8|P2Y purinoceptor 8 20121230 -9606 286544 MXRA5P1 - ADLICANP|MXRA5P HGNC:23932 Y Yq11.21 matrix-remodelling associated 5 pseudogene 1 pseudo MXRA5P1 matrix-remodelling associated 5 pseudogene 1 O - 20121230 -9606 286550 CYCSP46 - HCP46|HCP47 HGNC:23941 Y Yq11.221 cytochrome c, somatic pseudogene 46 pseudo CYCSP46 cytochrome c, somatic pseudogene 46 O - 20121230 -9606 286554 BCORP1 - BCORL2 HGNC:23953|HPRD:08266 Y Yq11.222 BCL6 corepressor pseudogene 1 pseudo BCORP1 BCL6 corepressor pseudogene 1 O putative BCoR-like protein 2 20121230 -9606 286555 TBL1YP1 - TBL1YP HGNC:23979 Y Yq11.223 transducin (beta)-like 1, Y-linked pseudogene 1 pseudo TBL1YP1 transducin (beta)-like 1, Y-linked pseudogene 1 O - 20121230 -9606 286556 CDY3P - - HGNC:23849 Y Yp11.2 chromodomain protein, Y-linked 3 pseudogene pseudo CDY3P chromodomain protein, Y-linked 3 pseudogene O - 20121230 -9606 286557 RBMY1A3P - - HGNC:18849 Y Yp11.2 RNA binding motif protein, Y-linked, family 1, member A3 pseudogene pseudo RBMY1A3P RNA binding motif protein, Y-linked, family 1, member A3 pseudogene O - 20121230 -9606 286568 RPL41P6 - - HGNC:37655 Y Yq11.23 ribosomal protein L41 pseudogene 6 pseudo RPL41P6 ribosomal protein L41 pseudogene 6 O - 20121209 -9606 286570 RPL41P7 - - HGNC:37656 Y Yq11.23 ribosomal protein L41 pseudogene 7 pseudo RPL41P7 ribosomal protein L41 pseudogene 7 O - 20121209 -9606 286573 TPTE2P4 - TPTEP HGNC:38077 Y Yq11.23 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 4 pseudo TPTE2P4 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 4 O - 20121209 -9606 286676 ILDR1 - DFNB42|ILDR1alpha|ILDR1alpha'|ILDR1beta HGNC:28741|MIM:609739|Ensembl:ENSG00000145103|HPRD:13735|Vega:OTTHUMG00000159481 3 3q13.33 immunoglobulin-like domain containing receptor 1 protein-coding ILDR1 immunoglobulin-like domain containing receptor 1 O immunoglobulin-like domain-containing receptor 1|immunoglobulin-like domain-containing receptor 1 alpha|immunoglobulin-like domain-containing receptor 1 beta 20121230 -9606 286749 STON1-GTF2A1L - SALF HGNC:30651|Ensembl:ENSG00000068781|HPRD:18496|Vega:OTTHUMG00000152037 2 2p16.3 STON1-GTF2A1L readthrough protein-coding STON1-GTF2A1L STON1-GTF2A1L readthrough O STON1-GTF2A1L protein|stoned B/TFIIA-alpha/beta-like factor 20121230 -9606 286751 OTSC4 - - HGNC:19981|MIM:611571 16 16q21-q23.2 otosclerosis 4 unknown OTSC4 otosclerosis 4 O - 20120622 -9606 286753 TUSC5 - DSPB1|IFITMD3|LOST1 HGNC:29592|MIM:612211|Ensembl:ENSG00000184811|HPRD:18248|Vega:OTTHUMG00000132196 17 17p13.3 tumor suppressor candidate 5 protein-coding TUSC5 tumor suppressor candidate 5 O dispanin subfamily B member 1|interferon induced transmembrane protein domain containing 3|interferon-induced transmembrane domain-containing protein D3|located at seventeen p thirteen point three 1|protein located at seventeen-p-thirteen point three 1 20121230 -9606 286754 LEFTY3 - - - 1 1q42.1 left-right determination factor 2 pseudogene pseudo - - - - 20121230 -9606 286756 SCAMPER - - - - - sphingolipid Ca2+ release mediating protein of endoplasmic reticulum unknown - - - - 20120710 -9606 286826 LIN9 - BARA|BARPsv|Lin-9|TGS|TGS1|TGS2 HGNC:30830|MIM:609375|Ensembl:ENSG00000183814|HPRD:13990|Vega:OTTHUMG00000037557 1 1q42.12 lin-9 homolog (C. elegans) protein-coding LIN9 lin-9 homolog (C. elegans) O TUDOR gene similar protein|beta subunit-associated regulator of apoptosis|pRB-associated protein|protein lin-9 homolog|rb related pathway actor|type I interferon receptor beta chain-associated protein 20121230 -9606 286827 TRIM59 - MRF1|RNF104|TRIM57|TSBF1 HGNC:30834|Ensembl:ENSG00000213186|HPRD:15568|Vega:OTTHUMG00000159034 3 3q25.33 tripartite motif containing 59 protein-coding TRIM59 tripartite motif containing 59 O RING finger protein 104|tripartite motif-containing 57|tripartite motif-containing 59|tripartite motif-containing protein 59|tumor suppressor TSBF-1|tumor suppressor TSBF1 20121230 -9606 286828 CSN1S2AP - CSN1S2A HGNC:20230 4 4q13.3 casein alpha s2-like A, pseudogene pseudo CSN1S2AP casein alpha s2-like A, pseudogene O - 20121230 -9606 286887 KRT6C - K6E|KRT6E HGNC:20406|MIM:612315|Ensembl:ENSG00000170465|HPRD:17247|Vega:OTTHUMG00000169596 12 12q13.13 keratin 6C protein-coding KRT6C keratin 6C O CK-6C|CK-6E|K6C|cytokeratin-6C|cytokeratin-6E|keratin 6E|keratin K6h|keratin, type II cytoskeletal 6C|keratin-6C|type-II keratin Kb12 20121230 -9606 286967 FAM223B - CXorf52|CXorf52B|LINC00204B|NCRNA00204B HGNC:34048|HPRD:06724 X Xq28 family with sequence similarity 223, member B (non-protein coding) miscRNA FAM223B family with sequence similarity 223, member B (non-protein coding) O - 20121230 -9606 287015 TRIM42 - PPP1R40 HGNC:19014|Ensembl:ENSG00000155890|HPRD:15559|Vega:OTTHUMG00000160170 3 3q23 tripartite motif containing 42 protein-coding TRIM42 tripartite motif containing 42 O protein phosphatase 1, regulatory subunit 40|tripartite motif-containing 42|tripartite motif-containing protein 42 20121230 -9606 317647 FLJ11857 - - - 2 2q21 uncharacterized protein FLJ11857 protein-coding - - - - 20111025 -9606 317648 NOP14-AS1 - C4orf10|RES4-24 HGNC:20205 4 4p16.3 NOP14 antisense RNA 1 miscRNA NOP14-AS1 NOP14 antisense RNA 1 O - 20121230 -9606 317649 EIF4E3 - - HGNC:31837|MIM:609896|Ensembl:ENSG00000163412|HPRD:10687|Vega:OTTHUMG00000158797 3 3p14 eukaryotic translation initiation factor 4E family member 3 protein-coding EIF4E3 eukaryotic translation initiation factor 4E family member 3 O eIF-4E type 3|eIF-4E3|eIF4E type 3|eIF4E-3|eukaryotic translation initiation factor 4E member 3|eukaryotic translation initiation factor 4E type 3 20121230 -9606 317662 FAM149B1 - KIAA0974 HGNC:29162|Ensembl:ENSG00000138286|Vega:OTTHUMG00000067794 10 10q22.2 family with sequence similarity 149, member B1 protein-coding FAM149B1 family with sequence similarity 149, member B1 O protein FAM149B1 20121230 -9606 317664 DFNA49 - - HGNC:18820|MIM:608372 1 1q21-q23 deafness, autosomal dominant 49 unknown DFNA49 deafness, autosomal dominant 49 O - 20120622 -9606 317668 MCDR3 - - HGNC:20206|MIM:608850 5 5p15.33-p13.1 macular dystrophy, retinal 3 unknown MCDR3 macular dystrophy, retinal 3 O - 20120622 -9606 317669 IBD9 - - HGNC:20236|MIM:608448 3 3p26 inflammatory bowel disease 9 unknown IBD9 inflammatory bowel disease 9 O - 20120622 -9606 317671 RFESD - - HGNC:29587|Ensembl:ENSG00000175449|HPRD:14164|Vega:OTTHUMG00000121168 5 5q15 Rieske (Fe-S) domain containing protein-coding RFESD Rieske (Fe-S) domain containing O Rieske domain-containing protein 20121230 -9606 317682 OTSC5 - - HGNC:20238|MIM:608787 3 3q22.1-q24 otosclerosis 5 unknown OTSC5 otosclerosis 5 O - 20120622 -9606 317684 MAPK6PS3 - - HGNC:18977 13 13q14.13 mitogen-activated protein kinase 6 pseudogene 3 pseudo MAPK6PS3 mitogen-activated protein kinase 6 pseudogene 3 O - 20121230 -9606 317685 NYS4 - - HGNC:19188|MIM:193003 13 13q31-q33 nystagmus 4, congenital autosomal dominant unknown NYS4 nystagmus 4, congenital autosomal dominant O - 20120622 -9606 317686 MAPK6PS1 - Erk3ps1 HGNC:18980 8 8q11.23 mitogen-activated protein kinase 6 pseudogene 1 pseudo MAPK6PS1 mitogen-activated protein kinase 6 pseudogene 1 O - 20121230 -9606 317687 BANF1P1 - BCRG1|BCRP1|D14S1460|D14S1460E HGNC:20252 14 14q24.1 barrier to autointegration factor 1 pseudogene 1 pseudo BANF1P1 barrier to autointegration factor 1 pseudogene 1 O - 20121230 -9606 317691 VN1R9P - VN1R22-1P HGNC:20257 22 22q11.1 vomeronasal 1 receptor 9 pseudogene pseudo VN1R9P vomeronasal 1 receptor 9 pseudogene O - 20121230 -9606 317701 VN1R2 - V1RL2 HGNC:19872|Ensembl:ENSG00000196131|HPRD:18286 19 19q13.42 vomeronasal 1 receptor 2 protein-coding VN1R2 vomeronasal 1 receptor 2 O G-protein coupled receptor GPCR25|V1R-like 2|V1r-like receptor 2|hGPCR25|pheromone receptor|vomeronasal type-1 receptor 2 20121230 -9606 317702 VN1R3 FKSG46 V1RL3|V1RL3p HGNC:19867 16 16p11.2 vomeronasal 1 receptor 3 (gene/pseudogene) pseudo VN1R3 vomeronasal 1 receptor 3 (gene/pseudogene) O - 20121230 -9606 317703 VN1R4 - V1RL4 HGNC:19871|Ensembl:ENSG00000228567|HPRD:18287 19 19q13.42 vomeronasal 1 receptor 4 protein-coding VN1R4 vomeronasal 1 receptor 4 O G-protein coupled receptor GPCR27|V1R-like 4|V1r-like receptor 4|hGPCR27|pheromone receptor|vomeronasal type-1 receptor 4 20121230 -9606 317705 VN1R5 - V1RL5 HGNC:19870|HPRD:18288 1 1q44 vomeronasal 1 receptor 5 (gene/pseudogene) protein-coding VN1R5 vomeronasal 1 receptor 5 (gene/pseudogene) O G-protein coupled receptor GPCR26|V1R-like 5|V1r-like receptor 5|hGPCR26|pheromone receptor|vomeronasal type-1 receptor 5 20121230 -9606 317714 DYT15 - - HGNC:31376|MIM:607488 18 18p11 dystonia 15, myoclonic unknown DYT15 dystonia 15, myoclonic O - 20120622 -9606 317716 BPIFA4P RP11-49G10.8 BASE HGNC:20469|MIM:607627|HPRD:06359 20 20q11.21 BPI fold containing family A, member 4, pseudogene pseudo BPIFA4P BPI fold containing family A, member 4, pseudogene O - 20121230 -9606 317718 DFNA37 - - HGNC:18545 1 1p21 deafness, autosomal dominant 37 unknown DFNA37 deafness, autosomal dominant 37 O - 20110215 -9606 317719 KLHL10 - - HGNC:18829|MIM:608778|Ensembl:ENSG00000161594|HPRD:12296|Vega:OTTHUMG00000152510 17 17q21.2 kelch-like 10 (Drosophila) protein-coding KLHL10 kelch-like 10 (Drosophila) O kelch-like protein 10 20121230 -9606 317726 HMGN2P2 - HMGN2L2 HGNC:20016 14 14q31.1 high mobility group nucleosomal binding domain 2 pseudogene 2 pseudo HMGN2P2 high mobility group nucleosomal binding domain 2 pseudogene 2 O - 20121230 -9606 317727 LOC317727 - - - 7 7p21 ataxin 2 related protein pseudogene pseudo - - - - 20121230 -9606 317729 BLZF2P - - HGNC:20049 14 14q24.1 basic leucine zipper nuclear factor 2 pseudogene pseudo BLZF2P basic leucine zipper nuclear factor 2 pseudogene O - 20121230 -9606 317730 C14orf99 - - - 14 14q32.33 uncharacterized LOC317730 unknown - - - - 20121230 -9606 317749 DHRS4L2 - SDR25C3 HGNC:19731|Ensembl:ENSG00000187630|HPRD:10880|Vega:OTTHUMG00000028778 14 14q11.2 dehydrogenase/reductase (SDR family) member 4 like 2 protein-coding DHRS4L2 dehydrogenase/reductase (SDR family) member 4 like 2 O dehydrogenase/reductase (SDR family) member 4 like 2A3|dehydrogenase/reductase SDR family member 4-like 2|short chain dehydrogenase/reductase family 25C, member 3 20121230 -9606 317751 MESTIT1 - MEST-AS1|MEST-IT|MEST-IT1|NCRNA00040|PEG1-AS HGNC:17991|MIM:607794 7 7q32.2 MEST intronic transcript 1, antisense RNA miscRNA MESTIT1 MEST intronic transcript 1, antisense RNA O - 20121230 -9606 317753 PSMD12P - - HGNC:30153 3 3p14 proteasome 26S subunit, non-ATPase, 12 pseudogene pseudo PSMD12P proteasome 26S subunit, non-ATPase, 12 pseudogene O - 20121230 -9606 317754 POTED - A26B3|ANKRD21|CT104.1|POTE|POTE-21|POTE21 HGNC:23822|MIM:607549|HPRD:09612 21 21q11.2 POTE ankyrin domain family, member D protein-coding POTED POTE ankyrin domain family, member D O ANKRD26-like family B member 3|ANKRD26-like family B, member 3|Expressed in prostate, ovary, testis, and placenta|POTE ankyrin domain family member D|ankyrin repeat domain 21|ankyrin repeat domain-containing protein 21|cancer/testis antigen family 104, member 1|prostate, ovary, testis-expressed protein 20121209 -9606 317760 ADAM20P1 - C14orf55 HGNC:20102 14 14q24.2 ADAM metallopeptidase domain 20 pseudogene 1 pseudo ADAM20P1 ADAM metallopeptidase domain 20 pseudogene 1 O - 20121230 -9606 317761 C14orf39 - Six6os1 HGNC:19849|Ensembl:ENSG00000179008|HPRD:08504|Vega:OTTHUMG00000140332 14 14q23.1 chromosome 14 open reading frame 39 protein-coding C14orf39 chromosome 14 open reading frame 39 O protein SIX6OS1|six6 opposite strand transcript 1 20121230 -9606 317762 CCDC85C hCG_2030155 - HGNC:35459|Ensembl:ENSG00000205476|Vega:OTTHUMG00000171506 14 14q32.31 coiled-coil domain containing 85C protein-coding CCDC85C coiled-coil domain containing 85C O coiled-coil domain-containing protein 85C 20121230 -9606 317767 SCOCP1 - - HGNC:20339 14 - short coiled-coil protein pseudogene 1 pseudo SCOCP1 short coiled-coil protein pseudogene 1 O - 20121230 -9606 317768 HOMER2P1 - - HGNC:20336 14 - homer homolog 2 (Drosophila) pseudogene 1 pseudo HOMER2P1 homer homolog 2 (Drosophila) pseudogene 1 O - 20121230 -9606 317769 HOMER2P2 - - HGNC:20334 14 - homer homolog 2 (Drosophila) pseudogene 2 pseudo HOMER2P2 homer homolog 2 (Drosophila) pseudogene 2 O - 20121230 -9606 317772 HIST2H2AB - - HGNC:20508|Ensembl:ENSG00000184270|HPRD:13659|Vega:OTTHUMG00000012085 1 1q21 histone cluster 2, H2ab protein-coding HIST2H2AB histone cluster 2, H2ab O histone 2, H2ab|histone H2A type 2-B 20121230 -9606 317773 MGR - FHM3|MGR6 MIM:607516 1 1q31 Migraine, several forms unknown - - - - 20120622 -9606 317774 SEPT7P1 - CDC10P HGNC:19926 14 14q13.2 septin 7 pseudogene 1 pseudo SEPT7P1 septin 7 pseudogene 1 O - 20121230 -9606 317775 CHORDC2P - - HGNC:20050 14 14q32.11 cysteine and histidine-rich domain (CHORD) containing 2 pseudogene pseudo CHORDC2P cysteine and histidine-rich domain (CHORD) containing 2 pseudogene O - 20121230 -9606 317778 SYF2P1 - CBPINP|SYF2P HGNC:19925 14 14q12 SYF2 homolog, RNA splicing factor (S. cerevisiae) pseudogene 1 pseudo SYF2P1 SYF2 homolog, RNA splicing factor (S. cerevisiae) pseudogene 1 O - 20121230 -9606 317780 CKS1BP1 - CKS1BP HGNC:20004 14 14q32.2 CDC28 protein kinase regulatory subunit 1B pseudogene 1 pseudo CKS1BP1 CDC28 protein kinase regulatory subunit 1B pseudogene 1 O - 20121230 -9606 317781 DDX51 - - HGNC:20082|Ensembl:ENSG00000185163|HPRD:10865|Vega:OTTHUMG00000168254 12 12q24.33 DEAD (Asp-Glu-Ala-Asp) box polypeptide 51 protein-coding DDX51 DEAD (Asp-Glu-Ala-Asp) box polypeptide 51 O ATP-dependent RNA helicase DDX51|DEAD box protein 51 20121230 -9606 317782 CELIAC2 - CD|GSE HGNC:19378|MIM:609754 5 5q31-q33 celiac disease 2 unknown CELIAC2 celiac disease 2 O - 20120622 -9606 317784 COILP1 - COILP HGNC:19927 14 14q21.1 coilin pseudogene 1 pseudo COILP1 coilin pseudogene 1 O - 20121230 -9606 319085 ITPK1-AS1 - C14orf85|ITPK1-AS|ITPK1AS|NCRNA00203 HGNC:20132 14 14q32.12 ITPK1 antisense RNA 1 miscRNA ITPK1-AS1 ITPK1 antisense RNA 1 O - 20121230 -9606 319087 COX5AP2 - - HGNC:20005 14 14q22.1 cytochrome c oxidase subunit Va pseudogene 2 pseudo COX5AP2 cytochrome c oxidase subunit Va pseudogene 2 O - 20121230 -9606 319089 TTC6 hCG_20713 C14orf25|NCRNA00291 HGNC:19739 14 14q21.1 tetratricopeptide repeat domain 6 protein-coding TTC6 tetratricopeptide repeat domain 6 O TPR repeat protein 6|tetratricopeptide repeat protein 6 20121230 -9606 319090 OTSC6 - - HGNC:20375 - - otosclerosis 6 unknown OTSC6 otosclerosis 6 O - 20110215 -9606 319093 RHOQP1 - ARHQP|RHOQP HGNC:20003 14 14q21.3 ras homolog family member Q pseudogene 1 pseudo RHOQP1 ras homolog family member Q pseudogene 1 O - 20121230 -9606 319098 COX7A2P1 - COX7A3P|COX7AP1 HGNC:20006 14 14q24.1 cytochrome c oxidase subunit VIIa polypeptide 2 (liver) pseudogene 1 pseudo COX7A2P1 cytochrome c oxidase subunit VIIa polypeptide 2 (liver) pseudogene 1 O - 20121230 -9606 319099 DDX18P1 - - HGNC:20007 14 14q24.1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 1 pseudo DDX18P1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 1 O - 20121230 -9606 319100 TAAR6 - RP11-295F4.3|TA4|TAR4|TAR6|TRAR4|taR-4|taR-6 HGNC:20978|MIM:608923|Ensembl:ENSG00000146383|HPRD:16404|Vega:OTTHUMG00000015579 6 6q23.2 trace amine associated receptor 6 protein-coding TAAR6 trace amine associated receptor 6 O trace amine receptor 4|trace amine receptor 6|trace amine-associated receptor 6 20121230 -9606 319101 KRT73 - IRT6IRS3|K6IRS3|KRT6IRS3 HGNC:28928|MIM:608247|Ensembl:ENSG00000186049|HPRD:16304|Vega:OTTHUMG00000169746 12 12q13.3 keratin 73 protein-coding KRT73 keratin 73 O CK-73|K73|cytokeratin-73|keratin 6 irs3|keratin, type II cytoskeletal 73|keratin-73|type II inner root sheath-specific keratin-K6irs3|type-II keratin Kb36 20121230 -9606 319102 ARHGAP16P - ARHGAP15P HGNC:19921 14 14q21.2 Rho GTPase activating protein 16 pseudogene pseudo ARHGAP16P Rho GTPase activating protein 16 pseudogene O - 20121230 -9606 319103 SNORD8 - RNU6C|mgU6-53 HGNC:20159 14 14q11.2 small nucleolar RNA, C/D box 8 snoRNA SNORD8 small nucleolar RNA, C/D box 8 O - 20121230 -9606 319111 DNAJC8P1 - - HGNC:19928 14 14q13.2 DnaJ (Hsp40) homolog, subfamily C, member 8 pseudogene 1 pseudo DNAJC8P1 DnaJ (Hsp40) homolog, subfamily C, member 8 pseudogene 1 O - 20121230 -9606 319112 EEF1A1P2 - - HGNC:20008 14 14q31.1 eukaryotic translation elongation factor 1 alpha 1 pseudogene 2 pseudo EEF1A1P2 eukaryotic translation elongation factor 1 alpha 1 pseudogene 2 O - 20121230 -9606 319114 ENSAP2 - - HGNC:20011 14 14q31.1 endosulfine alpha pseudogene 2 pseudo ENSAP2 endosulfine alpha pseudogene 2 O - 20121230 -9606 319115 EIF2S2P1 - EIF2S2P HGNC:20009 14 14q23.2 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 1 pseudo EIF2S2P1 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 1 O - 20121230 -9606 319116 ATP6V1G1P1 - ATP6V1GP1 HGNC:19816 14 14q32.33 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 1 pseudo ATP6V1G1P1 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 1 O - 20121230 -9606 319117 EIF3LP1 - EIF3EIPP1|EIF3S6IPP HGNC:20010 14 14q31.1 eukaryotic translation initiation factor 3, subunit L pseudogene 1 pseudo EIF3LP1 eukaryotic translation initiation factor 3, subunit L pseudogene 1 O - 20121230 -9606 319118 EIF4BP1 - EIF4BP HGNC:19929 14 14q21.2 eukaryotic translation initiation factor 4B pseudogene 1 pseudo EIF4BP1 eukaryotic translation initiation factor 4B pseudogene 1 O - 20121230 -9606 319119 ATP5G2P2 - ATP5GP2 HGNC:19672 14 14q21.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) pseudogene 2 pseudo ATP5G2P2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) pseudogene 2 O - 20121230 -9606 319120 YWHAZP1 - YWHAZP HGNC:19938 14 14q21.2 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 1 pseudo YWHAZP1 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 1 O - 20121230 -9606 319121 YWHAQP1 - YWHAQP HGNC:19937 14 14q21.1 YWHAQ pseudogene 1 pseudo YWHAQP1 YWHAQ pseudogene 1 O - 20121230 -9606 319122 UNGP3 - - HGNC:20036 14 14q31.1 uracil-DNA glycosylase pseudogene 3 pseudo UNGP3 uracil-DNA glycosylase pseudogene 3 O - 20121230 -9606 319123 ZFP64P1 - ZNF405P HGNC:19820 14 14q22.1 ZFP64 zinc finger protein pseudogene 1 pseudo ZFP64P1 ZFP64 zinc finger protein pseudogene 1 O - 20121230 -9606 319127 NARSP1 - NARSP HGNC:19933 14 14q12 asparaginyl-tRNA synthetase pseudogene 1 pseudo NARSP1 asparaginyl-tRNA synthetase pseudogene 1 O - 20121230 -9606 319128 PPIAP6 - PPIAP12|PPIP2 HGNC:20028 14 14q24.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene 6 pseudo PPIAP6 peptidylprolyl isomerase A (cyclophilin A) pseudogene 6 O - 20121230 -9606 319129 RPSAP5 - LAMR1P5|RPSA_22_1412 HGNC:20139 14 14q32.32 ribosomal protein SA pseudogene 5 pseudo RPSAP5 ribosomal protein SA pseudogene 5 O - 20121230 -9606 319130 HMGB1P14 - HMGB1L14|HMGB1P HGNC:20014 14 14q23.1 high mobility group box 1 pseudogene 14 pseudo HMGB1P14 high mobility group box 1 pseudogene 14 O - 20121230 -9606 319131 HMGN1P1 - HMGN1L1 HGNC:20015 14 14q22.3 high mobility group nucleosome binding domain 1 pseudogene 1 pseudo HMGN1P1 high mobility group nucleosome binding domain 1 pseudogene 1 O - 20121230 -9606 319132 HMGN2P1 - HMGN2L1|HMGN2P HGNC:19930 14 14q11.2 high mobility group nucleosomal binding domain 2 pseudogene 1 pseudo HMGN2P1 high mobility group nucleosomal binding domain 2 pseudogene 1 O - 20121230 -9606 319133 HNRPCP - - HGNC:20017 14 14q23.1 heterogeneous nuclear ribonucleoprotein C pseudogene pseudo HNRPCP heterogeneous nuclear ribonucleoprotein C pseudogene O - 20121230 -9606 319134 HNRPUP - - HGNC:19931 14 14q21.2 heterogeneous nuclear ribonucleoprotein U pseudogene pseudo HNRPUP heterogeneous nuclear ribonucleoprotein U pseudogene O - 20121230 -9606 319135 RPL10AP1 - RPL10A_6_1413 HGNC:19813 14 14q32.32 ribosomal protein L10a pseudogene 1 pseudo RPL10AP1 ribosomal protein L10a pseudogene 1 O - 20121230 -9606 319136 ATP5G1P1 - ATP5GP3 HGNC:19815 14 14q32.33 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 1 pseudo ATP5G1P1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 1 O - 20121230 -9606 319137 ATP5G1P2 - ATP5GP4 HGNC:19817 14 14q12 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 2 pseudo ATP5G1P2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 2 O - 20121230 -9606 319138 BNIP3P1 - BNIP3P HGNC:19922 14 14q12 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 1 pseudo BNIP3P1 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 1 O - 20121230 -9606 319139 SNORD56B - RNU56B HGNC:19771 14 14q24.2 small nucleolar RNA, C/D box 56B snoRNA SNORD56B small nucleolar RNA, C/D box 56B O - 20121230 -9606 319140 GCATP1 - GCATP HGNC:20013 14 14q23.2 glycine C-acetyltransferase pseudogene 1 pseudo GCATP1 glycine C-acetyltransferase pseudogene 1 O - 20121230 -9606 319142 RPL12P5 - RPL12_15_1346 HGNC:19669 14 14q12 ribosomal protein L12 pseudogene 5 pseudo RPL12P5 ribosomal protein L12 pseudogene 5 O - 20121230 -9606 319143 RPL21P10 - RPL21_49_1395 HGNC:19795 14 14q24.3 ribosomal protein L21 pseudogene 10 pseudo RPL21P10 ribosomal protein L21 pseudogene 10 O - 20121230 -9606 319144 RPL21P13 - RPL21_52_1410 HGNC:19812 14 14q32.32 ribosomal protein L21 pseudogene 13 pseudo RPL21P13 ribosomal protein L21 pseudogene 13 O - 20121230 -9606 319145 RPL21P8 - RPL21_48_1381 HGNC:19779 14 14q23.3 ribosomal protein L21 pseudogene 8 pseudo RPL21P8 ribosomal protein L21 pseudogene 8 O - 20121230 -9606 326105 UBE2CP1 - - HGNC:19670 14 14q12 ubiquitin-conjugating enzyme E2C pseudogene 1 pseudo UBE2CP1 ubiquitin-conjugating enzyme E2C pseudogene 1 O - 20121230 -9606 326106 TUBBP3 - - HGNC:18192 14 14q21.2 tubulin, beta pseudogene 3 pseudo TUBBP3 tubulin, beta pseudogene 3 O - 20121230 -9606 326107 STK16P1 - STK16P HGNC:19283 14 14q21.3 serine/threonine kinase 16 pseudogene 1 pseudo STK16P1 serine/threonine kinase 16 pseudogene 1 O - 20121230 -9606 326268 ABI1P1 - ABI1P|SSH3BP1P HGNC:20035 14 14q22.3 abl-interactor 1 pseudogene 1 pseudo ABI1P1 abl-interactor 1 pseudogene 1 O - 20121230 -9606 326269 SRMP2 - - HGNC:20034 14 14q23.1 spermidine synthase pseudogene 2 pseudo SRMP2 spermidine synthase pseudogene 2 O - 20121230 -9606 326272 SNRPGP1 - SNRPGP HGNC:20033 14 14q22.1 small nuclear ribonucleoprotein polypeptide G pseudogene 1 pseudo SNRPGP1 small nuclear ribonucleoprotein polypeptide G pseudogene 1 O - 20121230 -9606 326275 RPL12P7 - RPL12_16_1383 HGNC:19782 14 14q24.1 ribosomal protein L12 pseudogene 7 pseudo RPL12P7 ribosomal protein L12 pseudogene 7 O - 20121230 -9606 326276 SF3B4P1 - SF3B4P HGNC:19821 14 14q23.3 splicing factor 3b, subunit 4 pseudogene 1 pseudo SF3B4P1 splicing factor 3b, subunit 4 pseudogene 1 O - 20121230 -9606 326277 SETP2 - - HGNC:20032 14 14q22.1 SET pseudogene 2 pseudo SETP2 SET pseudogene 2 O - 20121230 -9606 326278 RPL13AP2 - RPL13A_12_1359 HGNC:19675 14 14q21.3 ribosomal protein L13a pseudogene 2 pseudo RPL13AP2 ribosomal protein L13a pseudogene 2 O - 20121230 -9606 326279 RPL15P2 - RPL15_6_1404 HGNC:19803 14 14q32.13 ribosomal protein L15 pseudogene 2 pseudo RPL15P2 ribosomal protein L15 pseudogene 2 O - 20121230 -9606 326286 RPL17P3 - - HGNC:19796 14 14q31.1 ribosomal protein L17 pseudogene 3 pseudo RPL17P3 ribosomal protein L17 pseudogene 3 O - 20121230 -9606 326288 RPL17P4 - RPL17_23_1411 HGNC:19811 14 14q32.32 ribosomal protein L17 pseudogene 4 pseudo RPL17P4 ribosomal protein L17 pseudogene 4 O - 20121230 -9606 326289 RPL18AP1 - RPL18A_3_1401 HGNC:19778 14 14q32.12 ribosomal protein L18a pseudogene 1 pseudo RPL18AP1 ribosomal protein L18a pseudogene 1 O - 20121230 -9606 326291 RPL18P1 - RPL18_7_1361 HGNC:19673 14 14q21.3 ribosomal protein L18 pseudogene 1 pseudo RPL18P1 ribosomal protein L18 pseudogene 1 O - 20121230 -9606 326292 RPL22P2 - RPL22_9_1393 HGNC:19794 14 14q24.3 ribosomal protein L22 pseudogene 2 pseudo RPL22P2 ribosomal protein L22 pseudogene 2 O - 20121230 -9606 326293 RPL23AP10 - RPL23A_28_1405 HGNC:19804 14 14q32.2 ribosomal protein L23a pseudogene 10 pseudo RPL23AP10 ribosomal protein L23a pseudogene 10 O - 20121230 -9606 326294 RPL23AP11 - RPL23A_29_1408 HGNC:19808 14 14q32.31 ribosomal protein L23a pseudogene 11 pseudo RPL23AP11 ribosomal protein L23a pseudogene 11 O - 20121230 -9606 326295 EIF4EBP1P1 - EIF4EBP1P HGNC:20160 14 14q11.2 eukaryotic translation initiation factor 4E binding protein 1 pseudogene 1 pseudo EIF4EBP1P1 eukaryotic translation initiation factor 4E binding protein 1 pseudogene 1 O - 20121230 -9606 326296 HSBP1P1 - - HGNC:20053 14 14q23.1 heat shock factor binding protein 1 pseudogene 1 pseudo HSBP1P1 heat shock factor binding protein 1 pseudogene 1 O - 20121230 -9606 326297 RPL26P2 - RPL26_14_1341 HGNC:19773 14 14q11.2 ribosomal protein L26 pseudogene 2 pseudo RPL26P2 ribosomal protein L26 pseudogene 2 O - 20121230 -9606 326298 RPL26P3 - RPL26_17_1344 HGNC:19776 14 14q12 ribosomal protein L26 pseudogene 3 pseudo RPL26P3 ribosomal protein L26 pseudogene 3 O - 20121230 -9606 326299 RPL27P1 - RPL27_7_1347 HGNC:19668 14 14q12 ribosomal protein L27 pseudogene 1 pseudo RPL27P1 ribosomal protein L27 pseudogene 1 O - 20121230 -9606 326300 HSPE1P2 - HSPEP2 HGNC:20052 14 14q23.2 heat shock 10kDa protein 1 (chaperonin 10) pseudogene 2 pseudo HSPE1P2 heat shock 10kDa protein 1 (chaperonin 10) pseudogene 2 O - 20121230 -9606 326301 RPL36AP2 - RPL36A_18_1380 HGNC:19777 14 14q23.3 ribosomal protein L36a pseudogene 2 pseudo RPL36AP2 ribosomal protein L36a pseudogene 2 O - 20121230 -9606 326302 NEK2P1 - NEK2P HGNC:19272 14 14q11.2 NEK2 pseudogene 1 pseudo NEK2P1 NEK2 pseudogene 1 O - 20121230 -9606 326303 RPL36P3 - RPL36AP3|RPL36_6_1387 HGNC:19786 14 14q24.2 ribosomal protein L36 pseudogene 3 pseudo RPL36P3 ribosomal protein L36 pseudogene 3 O - 20121230 -9606 326304 RPL36AP4 - RPL36A_19_1402 HGNC:19802 14 14q32.12 ribosomal protein L36a pseudogene 4 pseudo RPL36AP4 ribosomal protein L36a pseudogene 4 O - 20121230 -9606 326305 MOCS3P1 - MOCS3P HGNC:20021 14 14q23.1 molybdenum cofactor synthesis 3 pseudogene 1 pseudo MOCS3P1 molybdenum cofactor synthesis 3 pseudogene 1 O - 20121230 -9606 326306 RPL39P2 - RPL39_16_1342 HGNC:19774 14 14q11.2 ribosomal protein L39 pseudogene 2 pseudo RPL39P2 ribosomal protein L39 pseudogene 2 O - 20121230 -9606 326307 RPL3P4 - - HGNC:19805 14 14q32.2 ribosomal protein L3 pseudogene 4 pseudo RPL3P4 ribosomal protein L3 pseudogene 4 O - 20121230 -9606 326308 RPL41P4 - - HGNC:19788 14 14q24.3 ribosomal protein L41 pseudogene 4 pseudo RPL41P4 ribosomal protein L41 pseudogene 4 O - 20121230 -9606 326309 RPL7AP5 - RPL7A_26_1382 HGNC:19781 14 14q24.1 ribosomal protein L7a pseudogene 5 pseudo RPL7AP5 ribosomal protein L7a pseudogene 5 O - 20121230 -9606 326310 RPL7AP6 - RPL7A_27_1386 HGNC:19785 14 14q24.2 ribosomal protein L7a pseudogene 6 pseudo RPL7AP6 ribosomal protein L7a pseudogene 6 O - 20121230 -9606 326311 RPL9P6 - RPL9_10_1398 HGNC:19798 14 14q31.1 ribosomal protein L9 pseudogene 6 pseudo RPL9P6 ribosomal protein L9 pseudogene 6 O - 20121230 -9606 326312 RPS12P1 - RPS12_13_1388 HGNC:19787 14 14q24.2 ribosomal protein S12 pseudogene 1 pseudo RPS12P1 ribosomal protein S12 pseudogene 1 O - 20121230 -9606 326315 PTTG4P - - HGNC:20055 14 14q24.2 pituitary tumor-transforming 4 pseudogene pseudo PTTG4P pituitary tumor-transforming 4 pseudogene O - 20121230 -9606 326316 RPS15AP2 - RPS15A_11_1364 HGNC:19671 14 14q21.3 ribosomal protein S15a pseudogene 2 pseudo RPS15AP2 ribosomal protein S15a pseudogene 2 O - 20121230 -9606 326317 RPS15AP3 - RPS15A_19_1360 HGNC:19674 14 14q21.3 ribosomal protein S15a pseudogene 3 pseudo RPS15AP3 ribosomal protein S15a pseudogene 3 O - 20121230 -9606 326320 RPS18P2 - RPS18_7_1400 HGNC:19801 14 14q32.11 ribosomal protein S18 pseudogene 2 pseudo RPS18P2 ribosomal protein S18 pseudogene 2 O - 20121230 -9606 326321 RPS24P2 - RPS24_8_1390 HGNC:19791 14 14q24.3 ribosomal protein S24 pseudogene 2 pseudo RPS24P2 ribosomal protein S24 pseudogene 2 O - 20121230 -9606 326322 RPS24P3 - RPS24_9_1397 HGNC:19797 14 14q31.1 ribosomal protein S24 pseudogene 3 pseudo RPS24P3 ribosomal protein S24 pseudogene 3 O - 20121230 -9606 326323 RPS27AP4 - RPS27A_7_1343 HGNC:19775 14 14q12 ribosomal protein S27a pseudogene 4 pseudo RPS27AP4 ribosomal protein S27a pseudogene 4 O - 20121230 -9606 326325 RPS2P2 - RPS2_17_1389 HGNC:19790 14 14q24.3 ribosomal protein S2 pseudogene 2 pseudo RPS2P2 ribosomal protein S2 pseudogene 2 O - 20121230 -9606 326326 RPS2P3 - RPS2_19_1406 HGNC:19806 14 14q32.2 ribosomal protein S2 pseudogene 3 pseudo RPS2P3 ribosomal protein S2 pseudogene 3 O - 20121230 -9606 326332 FLJ31813 - - - 10 10q11.22 FAM21B pseudogene pseudo - - - - 20120726 -9606 326336 SSXP1 - psiSSX1 HGNC:30637 X Xp11.2 SSX family pseudogene 1 pseudo SSXP1 SSX family pseudogene 1 O - 20121230 -9606 326337 SSXP4 - psiSSX4 HGNC:30641 X Xp11.2 SSX family pseudogene 4 pseudo SSXP4 SSX family pseudogene 4 O - 20121230 -9606 326339 SSXP5 - psiSSX5 HGNC:30642 X Xp11.2 SSX family pseudogene 5 pseudo SSXP5 SSX family pseudogene 5 O - 20121230 -9606 326340 ZAR1 - - HGNC:20436|MIM:607520|Ensembl:ENSG00000182223|HPRD:09599|Vega:OTTHUMG00000102093 4 4p11 zygote arrest 1 protein-coding ZAR1 zygote arrest 1 O oocyte-specific maternal effect factor|zygote arrest protein 1 20121230 -9606 326341 SSXP3 - psiSSX3 HGNC:30640 X Xp11.2 SSX family pseudogene 3 pseudo SSXP3 SSX family pseudogene 3 O - 20121230 -9606 326342 EMR4P hCG_1811451 EMR4|FIRE|GPR127|PGR16 HGNC:19240|MIM:612305 19 19p13.3 egf-like module containing, mucin-like, hormone receptor-like 4 pseudogene pseudo EMR4P egf-like module containing, mucin-like, hormone receptor-like 4 pseudogene O - 20121230 -9606 326343 MT1DP - MTM HGNC:7396|HPRD:17610 16 16q13 metallothionein 1D, pseudogene pseudo MT1DP metallothionein 1D, pseudogene O - 20121230 -9606 326585 SSXP8 - psiSSX8 HGNC:30199 X Xp11.2 SSX family pseudogene 8 pseudo SSXP8 SSX family pseudogene 8 O - 20121230 -9606 326586 SSXP9 - psiSSX9 HGNC:30645 X Xp11.2 SSX family pseudogene 9 pseudo SSXP9 SSX family pseudogene 9 O - 20121230 -9606 326587 SSXP6 - psiSSX6 HGNC:30643 X Xp11.2 SSX family pseudogene 6 pseudo SSXP6 SSX family pseudogene 6 O - 20121230 -9606 326590 SSXP7 - psiSSX7 HGNC:30644 X Xp11.2 SSX family pseudogene 7 pseudo SSXP7 SSX family pseudogene 7 O - 20121230 -9606 326591 MORF4L1P1 - MORF4LP1|MRG1 HGNC:20400 1 1q41 mortality factor 4 like 1 pseudogene 1 pseudo MORF4L1P1 mortality factor 4 like 1 pseudogene 1 O - 20121230 -9606 326593 MORF4L1P3 - MORF4LP3|MRG11 HGNC:20402 11 11p15 mortality factor 4 like 1 pseudogene 3 pseudo MORF4L1P3 mortality factor 4 like 1 pseudogene 3 O - 20121230 -9606 326594 MORF4L1P2 - MORF4LP2|MORF4LP4|MRG5 HGNC:20401 12 12p13.2 mortality factor 4 like 1 pseudogene 2 pseudo MORF4L1P2 mortality factor 4 like 1 pseudogene 2 O - 20121230 -9606 326596 MAD2L1P1 - MAD2L1P HGNC:20019 14 14q23.1 MAD2 mitotic arrest deficient-like 1 (yeast) pseudogene 1 pseudo MAD2L1P1 MAD2 mitotic arrest deficient-like 1 (yeast) pseudogene 1 O - 20121230 -9606 326603 MTCO1P2 - - HGNC:19932 14 14q12 MT-CO1 pseudogene 2 pseudo MTCO1P2 MT-CO1 pseudogene 2 O - 20121209 -9606 326605 NCOA4P1 - NCOA4P HGNC:20022 14 14q23.3 nuclear receptor coactivator 4 pseudogene 1 pseudo NCOA4P1 nuclear receptor coactivator 4 pseudogene 1 O - 20121230 -9606 326606 NDUFB8P1 - - HGNC:20023 14 14q24.3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, pseudogene 1 pseudo NDUFB8P1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, pseudogene 1 O - 20121230 -9606 326607 NMNATP - - HGNC:20024 14 14q31.1 nicotinamide nucleotide adenylyltransferase pseudogene pseudo NMNATP nicotinamide nucleotide adenylyltransferase pseudogene O - 20121230 -9606 326608 NPM1P20 - - HGNC:20140 14 14q32.31 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 20 pseudo NPM1P20 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 20 O - 20121230 -9606 326609 NT5CP1 - - HGNC:20046 14 14q24.3 5',3'-nucleotidase, cytosolic pseudogene 1 pseudo NT5CP1 5',3'-nucleotidase, cytosolic pseudogene 1 O - 20121230 -9606 326611 NT5CP2 - - HGNC:20047 14 14q24.3 5',3'-nucleotidase, cytosolic pseudogene 2 pseudo NT5CP2 5',3'-nucleotidase, cytosolic pseudogene 2 O - 20121230 -9606 326613 NUTF2P2 - - HGNC:19934 14 14q13.2 nuclear transport factor 2 pseudogene 2 pseudo NUTF2P2 nuclear transport factor 2 pseudogene 2 O - 20121230 -9606 326614 PEBP1P1 - PBPP1 HGNC:20054 14 14q32.2 phosphatidylethanolamine binding protein 1 pseudogene 1 pseudo PEBP1P1 phosphatidylethanolamine binding protein 1 pseudogene 1 O - 20121230 -9606 326615 MED15P1 - MED15P|PCQAPP HGNC:19271 14 14q11.2 mediator complex subunit 15 pseudogene 1 pseudo MED15P1 mediator complex subunit 15 pseudogene 1 O - 20121230 -9606 326616 PDLIM1P - - HGNC:20026 14 14q21.3 PDZ and LIM domain 1 pseudogene pseudo PDLIM1P PDZ and LIM domain 1 pseudogene O - 20121230 -9606 326617 PSMA3P - - HGNC:20029 14 14q23.1 proteasome (prosome, macropain) subunit, alpha type, 3 pseudogene pseudo PSMA3P proteasome (prosome, macropain) subunit, alpha type, 3 pseudogene O - 20121230 -9606 326624 RAB37 - - HGNC:30268|MIM:609956|Ensembl:ENSG00000172794|HPRD:06702|Vega:OTTHUMG00000134282 17 17q25.1 RAB37, member RAS oncogene family protein-coding RAB37 RAB37, member RAS oncogene family O RAB37, member of RAS oncogene family|ras-related protein Rab-37 20121230 -9606 326625 MMAB - ATR|cblB|cob HGNC:19331|MIM:607568|Ensembl:ENSG00000139428|HPRD:07398|Vega:OTTHUMG00000169255 12 12q24 methylmalonic aciduria (cobalamin deficiency) cblB type protein-coding MMAB methylmalonic aciduria (cobalamin deficiency) cblB type O ATP:cob(I)alamin adenosyltransferase|ATP:corrinoid adenosyltransferase|aquocob(I)alamin vitamin B12s adenosyltransferase|cob(I)yrinic acid a,c-diamide adenosyltransferase, mitochondrial|methylmalonic aciduria type B protein 20121230 -9606 326626 PTMAP7 - - HGNC:20031 14 14q32 prothymosin, alpha pseudogene 7 pseudo PTMAP7 prothymosin, alpha pseudogene 7 O - 20121230 -9606 326627 RANBP20P - - HGNC:19734 14 14q11.2 RAN binding protein 20 pseudogene pseudo RANBP20P RAN binding protein 20 pseudogene O - 20121230 -9606 326628 RPA2P - - HGNC:19676 14 14q21.3 replication protein A2 pseudogene pseudo RPA2P replication protein A2 pseudogene O - 20121230 -9606 327657 SERPINA9 UNQ692/PRO1337 GCET1|SERPINA11|SERPINA11b HGNC:15995|Ensembl:ENSG00000170054|HPRD:11546|Vega:OTTHUMG00000167710 14 14q32.13 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 9 protein-coding SERPINA9 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 9 O centerin|germinal center B cell-expressed transcript 1|germinal center B-cell-expressed transcript 1 protein|serine (or cysteine) proteinase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 9|serine proteinase inhibitor A11|serpin A9 20121230 -9606 327658 HDHD1P1 - FAM16AY|HDHD1BP HGNC:20200 Y Yq11.221 haloacid dehalogenase-like hydrolase domain containing 1 pseudogene 1 pseudo HDHD1P1 haloacid dehalogenase-like hydrolase domain containing 1 pseudogene 1 O - 20121230 -9606 327659 HDHD1P2 - FAM16B|HDHD1CP HGNC:20195 1 1q21.3 haloacid dehalogenase-like hydrolase domain containing 1 pseudogene 2 pseudo HDHD1P2 haloacid dehalogenase-like hydrolase domain containing 1 pseudogene 2 O - 20121230 -9606 333926 PPM1J RP11-426L16.5 PP2CZ|PP2Czeta|PPP2CZ HGNC:20785|MIM:609957|Ensembl:ENSG00000155367|HPRD:15171|Vega:OTTHUMG00000012019 1 1p13.2 protein phosphatase, Mg2+/Mn2+ dependent, 1J protein-coding PPM1J protein phosphatase, Mg2+/Mn2+ dependent, 1J O PP2C-zeta|protein phosphatase 1J|protein phosphatase 1J (PP2C domain containing)|protein phosphatase 2C isoform zeta|protein phosphatase 2C zeta|protein phosphatase 2a, catalytic subunit, zeta isoform 20121230 -9606 333929 SNAI3 - SMUC|SNAIL3|ZNF293|Zfp293 HGNC:18411|MIM:612741|Ensembl:ENSG00000185669|HPRD:18781|Vega:OTTHUMG00000173243 16 16q24.3 snail homolog 3 (Drosophila) protein-coding SNAI3 snail homolog 3 (Drosophila) O protein snail homolog 3|zinc finger protein 293|zinc finger protein SNAI3 20121230 -9606 333932 HIST2H3A - H3/n|H3/o HGNC:20505|Ensembl:ENSG00000203852|HPRD:13626|Vega:OTTHUMG00000012094 1 1q21.2 histone cluster 2, H3a protein-coding HIST2H3A histone cluster 2, H3a O histone 2, H3a|histone H3.2|histone H3/o 20121230 -9606 337867 UBAC2 RP11-178C10.1 PHGDHL1 HGNC:20486|Ensembl:ENSG00000134882|Vega:OTTHUMG00000017267 13 13q32.3 UBA domain containing 2 protein-coding UBAC2 UBA domain containing 2 O RP11-178C10.1|UBA domain-containing protein 2|phosphoglycerate dehydrogenase like 1|phosphoglycerate dehydrogenase-like protein 1|ubiquitin-associated domain-containing protein 2 20121230 -9606 337872 HIST3H2BA - - HGNC:20515 1 1q42.13 histone cluster 3, H2ba, pseudogene pseudo HIST3H2BA histone cluster 3, H2ba, pseudogene O - 20121230 -9606 337873 HIST2H2BC - H2B/t|HIST2H2BD HGNC:20516 1 1q21.2 histone cluster 2, H2bc (pseudogene) pseudo HIST2H2BC histone cluster 2, H2bc (pseudogene) O - 20121230 -9606 337874 HIST2H2BD - H2B/o|H2B/s|H2BFO HGNC:20517 1 1q21.2 histone cluster 2, H2bd (pseudogene) pseudo HIST2H2BD histone cluster 2, H2bd (pseudogene) O - 20121230 -9606 337875 HIST2H2BA - - HGNC:20560 1 1p12-p11.2 histone cluster 2, H2ba (pseudogene) pseudo HIST2H2BA histone cluster 2, H2ba (pseudogene) O - 20121230 -9606 337876 CHSY3 - CHSY2|CSS3 HGNC:24293|MIM:609963|Ensembl:ENSG00000198108|HPRD:16766|Vega:OTTHUMG00000163043 5 5q23.3 chondroitin sulfate synthase 3 protein-coding CHSY3 chondroitin sulfate synthase 3 O N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase 3|N-acetylgalactosaminyltransferase 3|carbohydrate synthase 2|chSy-2|chondroitin glucuronyltransferase 3|chondroitin synthase 2|chondroitin synthase-2|glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase II 20121230 -9606 337878 KRTAP7-1 - KAP7.1 HGNC:18934 21 21q22.1 keratin associated protein 7-1 (gene/pseudogene) protein-coding KRTAP7-1 keratin associated protein 7-1 (gene/pseudogene) O high tyrosine-glycine keratin-associated protein 7.1|keratin-associated protein 7-1 20121230 -9606 337879 KRTAP8-1 - KAP8.1 HGNC:18935|Ensembl:ENSG00000183640|HPRD:11221|Vega:OTTHUMG00000057771 21 21q22.1 keratin associated protein 8-1 protein-coding KRTAP8-1 keratin associated protein 8-1 O high glycine-tyrosine keratin-associated protein 8.1|keratin-associated protein 8-1 20121230 -9606 337880 KRTAP11-1 - HACL-1|HACL1|KAP11.1 HGNC:18922|MIM:600064|Ensembl:ENSG00000182591|HPRD:11196|Vega:OTTHUMG00000057773 21 21q22.1 keratin associated protein 11-1 protein-coding KRTAP11-1 keratin associated protein 11-1 O high sulfur keratin-associated protein 11.1|keratin-associated protein 11-1 20121230 -9606 337882 KRTAP19-1 - KAP19.1 HGNC:18936|Ensembl:ENSG00000184351|HPRD:11205|Vega:OTTHUMG00000057768 21 21q22.1 keratin associated protein 19-1 protein-coding KRTAP19-1 keratin associated protein 19-1 O high tyrosine-glycine keratin-associated protein 19.1|keratin-associated protein 19-1 20121230 -9606 337892 MGR3 - - MIM:607498 6 6p21.1-p12.2 Migraine, familial, with or without aura, susceptibility to unknown - - - - 20120622 -9606 337893 BULN - - MIM:607499 10 10p Bulimia nervosa, susceptibility to unknown - - - - 20120622 -9606 337895 BMIQ3 - - HGNC:23829|MIM:607446 6 6q23-q25 body mass index QTL 3 unknown BMIQ3 body mass index QTL 3 O - 20120622 -9606 337940 STRM - STRN2 HGNC:13462 14 14q24.1 striamin protein-coding STRM striamin O striatin 2 20080828 -9606 337959 KRTAP13-2 - KAP13-2 HGNC:18923|Ensembl:ENSG00000182816|HPRD:11201|Vega:OTTHUMG00000057793 21 21q22.1 keratin associated protein 13-2 protein-coding KRTAP13-2 keratin associated protein 13-2 O keratin-associated protein 13-2 20121230 -9606 337960 KRTAP13-3 - KAP13.3 HGNC:18925|Ensembl:ENSG00000240432|HPRD:11202|Vega:OTTHUMG00000057776 21 21q22.1 keratin associated protein 13-3 protein-coding KRTAP13-3 keratin associated protein 13-3 O keratin-associated protein 13-3 20121230 -9606 337963 KRTAP23-1 - KAP23.1 HGNC:18928|Ensembl:ENSG00000186980|HPRD:11217|Vega:OTTHUMG00000057792 21 21q22.1 keratin associated protein 23-1 protein-coding KRTAP23-1 keratin associated protein 23-1 O keratin-associated protein 23-1 20121230 -9606 337964 KRTAP13-5P - KAP13A|KRTAP13P1 HGNC:18929 21 21q22.1 keratin associated protein 13-5, pseudogene pseudo KRTAP13-5P keratin associated protein 13-5, pseudogene O - 20121230 -9606 337965 KRTAP13-6P - KAP13B|KRTAP13P2 HGNC:18930 21 21q22.1 keratin associated protein 13-6, pseudogene pseudo KRTAP13-6P keratin associated protein 13-6, pseudogene O - 20121230 -9606 337966 KRTAP6-1 - C21orf103|KAP6.1 HGNC:18931|Ensembl:ENSG00000184724|HPRD:11218|Vega:OTTHUMG00000057788 21 21q22.1 keratin associated protein 6-1 protein-coding KRTAP6-1 keratin associated protein 6-1 O keratin-associated protein 6-1 20121230 -9606 337967 KRTAP6-2 - KAP6.2 HGNC:18932|Ensembl:ENSG00000186930|HPRD:11219|Vega:OTTHUMG00000057794 21 21q22.1 keratin associated protein 6-2 protein-coding KRTAP6-2 keratin associated protein 6-2 O keratin-associated protein 6-2 20121230 -9606 337968 KRTAP6-3 - KAP6.3 HGNC:18933|Ensembl:ENSG00000212938|HPRD:11220|Vega:OTTHUMG00000057791 21 21q22.1 keratin associated protein 6-3 protein-coding KRTAP6-3 keratin associated protein 6-3 O keratin-associated protein 6-3 20121230 -9606 337969 KRTAP19-2 - KAP19.2 HGNC:18937|Ensembl:ENSG00000186965|HPRD:11206|Vega:OTTHUMG00000057772 21 21q22.1 keratin associated protein 19-2 protein-coding KRTAP19-2 keratin associated protein 19-2 O keratin-associated protein 19-2 20121230 -9606 337970 KRTAP19-3 - GTRHP|KAP19.3 HGNC:18938|Ensembl:ENSG00000244025|HPRD:11207|Vega:OTTHUMG00000057782 21 21q22.1 keratin associated protein 19-3 protein-coding KRTAP19-3 keratin associated protein 19-3 O GTHRP|glycine/tyrosine-rich protein|keratin-associated protein 19-3 20121230 -9606 337971 KRTAP19-4 - KAP19.4 HGNC:18939|Ensembl:ENSG00000186967|HPRD:11208|Vega:OTTHUMG00000057767 21 21q22.1 keratin associated protein 19-4 protein-coding KRTAP19-4 keratin associated protein 19-4 O keratin-associated protein 19-4 20121230 -9606 337972 KRTAP19-5 - KAP19.5 HGNC:18940|Ensembl:ENSG00000186977|HPRD:11209|Vega:OTTHUMG00000057774 21 21q22.1 keratin associated protein 19-5 protein-coding KRTAP19-5 keratin associated protein 19-5 O keratin-associated protein 19-5 20121230 -9606 337973 KRTAP19-6 - KAP19.6 HGNC:18941|Ensembl:ENSG00000186925|HPRD:11210|Vega:OTTHUMG00000057779 21 21q22.1 keratin associated protein 19-6 protein-coding KRTAP19-6 keratin associated protein 19-6 O KRTAP19-6-V1|KRTAP19-6-V2|keratin-associated protein 19-6 20121230 -9606 337974 KRTAP19-7 - KAP19.7 HGNC:18942|Ensembl:ENSG00000244362|HPRD:11211|Vega:OTTHUMG00000057785 21 21q22.1 keratin associated protein 19-7 protein-coding KRTAP19-7 keratin associated protein 19-7 O keratin-associated protein 19-7 20121230 -9606 337975 KRTAP20-1 - KAP20.1 HGNC:18943|Ensembl:ENSG00000244624|HPRD:11212|Vega:OTTHUMG00000057801 21 21q22.1 keratin associated protein 20-1 protein-coding KRTAP20-1 keratin associated protein 20-1 O keratin-associated protein 20-1 20121230 -9606 337976 KRTAP20-2 - KAP20.2 HGNC:18944|Ensembl:ENSG00000184032|HPRD:11213|Vega:OTTHUMG00000057786 21 21q22.1 keratin associated protein 20-2 protein-coding KRTAP20-2 keratin associated protein 20-2 O keratin-associated protein 20-2 20121230 -9606 337977 KRTAP21-1 - KAP21.1 HGNC:18945|Ensembl:ENSG00000187005|HPRD:11214|Vega:OTTHUMG00000057777 21 21q22.1 keratin associated protein 21-1 protein-coding KRTAP21-1 keratin associated protein 21-1 O keratin-associated protein 21-1 20121230 -9606 337978 KRTAP21-2 - KAP21.2 HGNC:18946|Ensembl:ENSG00000187026|HPRD:11215|Vega:OTTHUMG00000057769 21 21q22.1 keratin associated protein 21-2 protein-coding KRTAP21-2 keratin associated protein 21-2 O keratin-associated protein 21-2 20121230 -9606 337979 KRTAP22-1 - KAP22.1 HGNC:18947|Ensembl:ENSG00000186924|HPRD:11216|Vega:OTTHUMG00000057778 21 21q22.1 keratin associated protein 22-1 protein-coding KRTAP22-1 keratin associated protein 22-1 O keratin-associated protein 22-1 20121230 -9606 337980 KRTAP8-2P - KAP8A|KRTAP8P1 HGNC:18948 21 21q22.1 keratin associated protein 8-2, pseudogene pseudo KRTAP8-2P keratin associated protein 8-2, pseudogene O - 20121230 -9606 337981 KRTAP8-3P - KAP8B|KRTAP8P2 HGNC:18949 21 21q22.1 keratin associated protein 8-3, pseudogene pseudo KRTAP8-3P keratin associated protein 8-3, pseudogene O - 20121230 -9606 337982 KRTAP19-9P - KAP19A|KRTAP19P1 HGNC:18950 21 21q22.1 keratin associated protein 19-9, pseudogene pseudo KRTAP19-9P keratin associated protein 19-9, pseudogene O - 20121230 -9606 337983 KRTAP19-10P - KAP19B|KRTAP19P2 HGNC:18951 21 21q22.1 keratin associated protein 19-10, pseudogene pseudo KRTAP19-10P keratin associated protein 19-10, pseudogene O - 20121230 -9606 337984 KRTAP19-11P - KAP19C|KRTAP19P3 HGNC:18952 21 21q22.1 keratin associated protein 19-11, pseudogene pseudo KRTAP19-11P keratin associated protein 19-11, pseudogene O - 20121230 -9606 337985 KRTAP20-3 - KAP19D|KAP20.3|KRTAP19P4 HGNC:34001|Ensembl:ENSG00000206104|Vega:OTTHUMG00000057798 21 21q22.11 keratin associated protein 20-3 protein-coding KRTAP20-3 keratin associated protein 20-3 O keratin associated protein 19 pseudogene 4|keratin-associated protein 20-3 20121230 -9606 337986 KRTAP21-4P - KAP21A|KRTAP21P1 HGNC:18954 21 21q22.1 keratin associated protein 21-4, pseudogene pseudo KRTAP21-4P keratin associated protein 21-4, pseudogene O - 20121230 -9606 337991 DFNB38 - - HGNC:19210|MIM:608219 6 6q25.3-q27 deafness, autosomal recessive 38 unknown DFNB38 deafness, autosomal recessive 38 O - 20120622 -9606 338002 LINC00524 - C14orf71 HGNC:20118 14 14q32.31 long intergenic non-protein coding RNA 524 miscRNA LINC00524 long intergenic non-protein coding RNA 524 O - 20121021 -9606 338004 LINC00226 - C14orf97|NCRNA00226 HGNC:20168 14 14q32.33 long intergenic non-protein coding RNA 226 miscRNA LINC00226 long intergenic non-protein coding RNA 226 O - 20121230 -9606 338005 LINC00221 hCG_2042090 C14orf98|NCRNA00221 HGNC:20169 14 - long intergenic non-protein coding RNA 221 miscRNA LINC00221 long intergenic non-protein coding RNA 221 O chromosome 14 open reading frame 98 20121230 -9606 338017 KRT8P1 - - HGNC:20281 14 14q21.1 keratin 8 pseudogene 1 pseudo KRT8P1 keratin 8 pseudogene 1 O - 20121230 -9606 338026 BMIQ4 - - HGNC:23830|MIM:607447 11 11q24 body mass index QTL 4 unknown BMIQ4 body mass index QTL 4 O - 20120622 -9606 338027 BMND2 - - MIM:605833 1 1q21-q23 Bone mineral density variation 2 unknown - - - - 20120622 -9606 338030 GLM1 - - MIM:607248 15 15q23-q26.3 Glioma, familial, 1 unknown - - - - 20120622 -9606 338069 ST7-OT4 - NCRNA00042|ST7OT4 HGNC:18835 7 7q31.2 ST7 overlapping transcript 4 (non-protein coding) miscRNA ST7-OT4 ST7 overlapping transcript 4 (non-protein coding) O - 20121230 -9606 338090 SPG24 - - HGNC:22993|MIM:607584 13 13q14 spastic paraplegia 24 (autosomal recessive) unknown SPG24 spastic paraplegia 24 (autosomal recessive) O - 20120622 -9606 338091 PSMD10P3 - - HGNC:30152 13 13q21 proteasome 26S subunit, non-ATPase, 10 pseudogene 3 pseudo PSMD10P3 proteasome 26S subunit, non-ATPase, 10 pseudogene 3 O - 20121230 -9606 338094 FAM151A UNQ3034/PRO9836 C1orf179 HGNC:25032|Ensembl:ENSG00000162391|HPRD:11326|Vega:OTTHUMG00000009888 1 - family with sequence similarity 151, member A protein-coding FAM151A family with sequence similarity 151, member A O hyporthetical protein MGC27169|protein FAM151A 20121230 -9606 338095 PSME2P3 - - HGNC:30156 4 4q32 proteasome activator subunit 2 pseudogene 3 pseudo PSME2P3 proteasome activator subunit 2 pseudogene 3 O - 20121230 -9606 338096 PSME2P4 - - HGNC:30157 4 4p14 proteasome activator subunit 2 pseudogene 4 pseudo PSME2P4 proteasome activator subunit 2 pseudogene 4 O - 20121230 -9606 338097 PSME2P5 - - HGNC:30158 8 8p21 proteasome activator subunit 2 pseudogene 5 pseudo PSME2P5 proteasome activator subunit 2 pseudogene 5 O - 20121230 -9606 338098 PSME2P6 - - HGNC:30159 10 10p12 proteasome activator subunit 2 pseudogene 6 pseudo PSME2P6 proteasome activator subunit 2 pseudogene 6 O - 20121230 -9606 338099 PSME2P2 - - HGNC:30160 13 13q13 proteasome activator subunit 2 pseudogene 2 pseudo PSME2P2 proteasome activator subunit 2 pseudogene 2 O - 20121230 -9606 338321 NLRP9 - CLR19.1|NALP9|NOD6|PAN12 HGNC:22941|MIM:609663|Ensembl:ENSG00000185792|HPRD:14808|Vega:OTTHUMG00000180920 19 19q13.42 NLR family, pyrin domain containing 9 protein-coding NLRP9 NLR family, pyrin domain containing 9 O NACHT, LRR and PYD containing protein 9|NACHT, LRR and PYD domains-containing protein 9|NACHT, leucine rich repeat and PYD containing 9|PYRIN and NACHT-containing protein 12|nucleotide-binding oligomerization domain protein 6|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 9 20121230 -9606 338322 NLRP10 - CLR11.1|NALP10|NOD8|PAN5|PYNOD HGNC:21464|MIM:609662|Ensembl:ENSG00000182261|HPRD:14802|Vega:OTTHUMG00000165673 11 11p15.4 NLR family, pyrin domain containing 10 protein-coding NLRP10 NLR family, pyrin domain containing 10 O NACHT, LRR and PYD domains-containing protein 10|NACHT, leucine rich repeat and PYD containing 10|nucleotide-binding oligomerization domain protein 8|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 10 20121230 -9606 338323 NLRP14 - CLR11.2|GC-LRR|NALP14|NOD5|PAN8 HGNC:22939|MIM:609665|Ensembl:ENSG00000158077|HPRD:11383|Vega:OTTHUMG00000165508 11 11p15.4 NLR family, pyrin domain containing 14 protein-coding NLRP14 NLR family, pyrin domain containing 14 O NACHT, LRR and PYD containing protein 14|NACHT, LRR and PYD domains-containing protein 14|NACHT, leucine rich repeat and PYD containing 14|nucleotide-binding oligomerization domain protein 5|nucleotide-binding oligomerization domain, leucine rich repeat and pyrin domain containing 14 20121230 -9606 338324 S100A7A - NICE-2|S100A15|S100A7L1|S100A7f HGNC:21657|Ensembl:ENSG00000184330|HPRD:15290|Vega:OTTHUMG00000013122 1 1q21.3 S100 calcium binding protein A7A protein-coding S100A7A S100 calcium binding protein A7A O S100 calcium binding protein A15|S100 calcium binding protein A7-like 1|S100 calcium-binding protein A15|S100 calcium-binding protein A7-like 1|S100 calcium-binding protein A7A|protein S100-A7A 20121230 -9606 338328 GPIHBP1 - GPI-HBP1 HGNC:24945|MIM:612757|Ensembl:ENSG00000182851|HPRD:17347|Vega:OTTHUMG00000164950 8 8q24.3 glycosylphosphatidylinositol anchored high density lipoprotein binding protein 1 protein-coding GPIHBP1 glycosylphosphatidylinositol anchored high density lipoprotein binding protein 1 O GPI anchored high density lipoprotein binding protein 1|GPI-anchored HDL-binding protein 1|glycosylphosphatidylinositol-anchored high density lipoprotein-binding protein 1|high density lipoprotein-binding protein 1 20121230 -9606 338331 AZON - - MIM:606766 6 6p21.3 Azoospremia, nonobstructive unknown - - - - 20120622 -9606 338332 CELIAC5 - GSES MIM:607202 15 15q11-q13 Celiac disease, susceptibility to, 5 unknown - - - - 20120622 -9606 338333 PAPA3 - - MIM:607324 19 19p13.2-p13.1 Polydactyly, postaxial, type A3 unknown - - - - 20120622 -9606 338334 CHDS1 - - MIM:607339 16 16pter-p13 Coronary heart disease, susceptibility to, 1 unknown - - - - 20120622 -9606 338339 CLEC4D - CLEC-6|CLEC6|CLECSF8|MCL|MPCL HGNC:14554|MIM:609964|Ensembl:ENSG00000166527|HPRD:13074|Vega:OTTHUMG00000168674 12 12p13.31 C-type lectin domain family 4, member D protein-coding CLEC4D C-type lectin domain family 4, member D O C-type (calcium dependent, carbohydrate-recognition domain) lectin, superfamily member 8|C-type lectin domain family 4 member D|C-type lectin receptor|C-type lectin superfamily member 8|C-type lectin-like receptor 6|macrophage C-type lectin 20121230 -9606 338340 MMS - - MIM:156240 9 9p Malignant mesothelioma, susceptibility to unknown - - - - 20120622 -9606 338342 MGR4 - MGOA MIM:607501 14 14q21.2-q22.3 Migraine, susceptibility to, 4 unknown - - - - 20120622 -9606 338376 IFNE UNQ360/PRO655 IFN-E|IFNE1|IFNT1|PRO655 HGNC:18163|Ensembl:ENSG00000184995|HPRD:17132|Vega:OTTHUMG00000019672 9 9p21.3 interferon, epsilon protein-coding IFNE interferon, epsilon O IFN-epsilon|interferon epsilon|interferon epsilon 1|interferon epsilon-1|interferon tau-1|interferon-epsilon 20121230 -9606 338377 CRAC1 - C15DUPq|CRCS4|DUP15q|HMPS|HMPS1|MPSH HGNC:20574|MIM:601228 15 15q13-q21 colorectal adenoma and carcinoma 1 unknown CRAC1 colorectal adenoma and carcinoma 1 O - 20120922 -9606 338382 RAB7B - RAB7 HGNC:30513|HPRD:15202 1 1q32 RAB7B, member RAS oncogene family protein-coding RAB7B RAB7B, member RAS oncogene family O Ras-related protein Rab-7|ras-related protein Rab-7b 20121230 -9606 338386 HSR - - MIM:139900 2 2p12-q22 Hand skill, relative unknown - - - - 20120622 -9606 338388 MRPS16P3 - - HGNC:29733 22 22q12.3 mitochondrial ribosomal protein S16 pseudogene 3 pseudo MRPS16P3 mitochondrial ribosomal protein S16 pseudogene 3 O - 20121230 -9606 338389 MRPS24P1 - - HGNC:29759 11 11p15.4 mitochondrial ribosomal protein S24 pseudogene 1 pseudo MRPS24P1 mitochondrial ribosomal protein S24 pseudogene 1 O - 20121230 -9606 338390 MRPS25P1 - - HGNC:29760 4 4q21.23 mitochondrial ribosomal protein S25 pseudogene 1 pseudo MRPS25P1 mitochondrial ribosomal protein S25 pseudogene 1 O - 20121230 -9606 338391 HIST2H2BB - - HGNC:20654 1 1q21 histone cluster 2, H2bb (pseudogene) pseudo HIST2H2BB histone cluster 2, H2bb (pseudogene) O - 20121230 -9606 338396 TAS2R2P - PS9|T2R02|T2R2|TAS2R2 HGNC:20615 7 7p21.3 taste receptor, type 2, member 2 pseudogene pseudo TAS2R2P taste receptor, type 2, member 2 pseudogene O - 20121230 -9606 338398 TAS2R60 - T2R56|T2R60 HGNC:20639|MIM:613968|Ensembl:ENSG00000185899|HPRD:18159|Vega:OTTHUMG00000154891 7 7q35 taste receptor, type 2, member 60 protein-coding TAS2R60 taste receptor, type 2, member 60 O taste receptor type 2 member 56|taste receptor type 2 member 60 20121230 -9606 338399 TAS2R62P - PS1|T2R62|TAS2R62 HGNC:20640 7 7q35 taste receptor, type 2, member 62, pseudogene pseudo TAS2R62P taste receptor, type 2, member 62, pseudogene O - 20121230 -9606 338411 TELAB1 - - HGNC:20680|MIM:187260 5 5q14 telangiectasia, benign 1 unknown TELAB1 telangiectasia, benign 1 O - 20110215 -9606 338412 TAS2R64P - PS2|T2R64|T2R64P HGNC:20642 12 12p13.2 taste receptor, type 2, member 64 pseudogene pseudo TAS2R64P taste receptor, type 2, member 64 pseudogene O - 20121230 -9606 338413 TAS2R63P - PS6|T2R63 HGNC:20641 12 12p13.2 taste receptor, type 2, member 63 pseudogene pseudo TAS2R63P taste receptor, type 2, member 63 pseudogene O - 20121230 -9606 338414 TAS2R18 - PS4|T2R18|T2R65|TAS2R65|TAS2R65P HGNC:19107 12 12p13.2 taste receptor, type 2, member 18 pseudogene pseudo TAS2R18 taste receptor, type 2, member 18 pseudogene O - 20121230 -9606 338427 SNORD108 - HBII-437 HGNC:32772 15 15q11.2 small nucleolar RNA, C/D box 108 snoRNA SNORD108 small nucleolar RNA, C/D box 108 O - 20121230 -9606 338428 SNORD109A - HBII-438A HGNC:32773 15 15q11.2 small nucleolar RNA, C/D box 109A snoRNA SNORD109A small nucleolar RNA, C/D box 109A O - 20121230 -9606 338429 SNORD109B - HBII-438B HGNC:32774 15 15q11.2 small nucleolar RNA, C/D box 109B snoRNA SNORD109B small nucleolar RNA, C/D box 109B O - 20121230 -9606 338433 SNORD115-1 - HBII-52-1|RNHBII52 HGNC:33020|MIM:609837 15 15q11.2 small nucleolar RNA, C/D box 115-1 snoRNA SNORD115-1 small nucleolar RNA, C/D box 115-1 O - 20121230 -9606 338434 CANDN1 - CANDF3|FCNC HGNC:20683|MIM:607644 11 11p12-q12.1 candidiasis, nail 1 (with ICAM1 deficiency) unknown CANDN1 candidiasis, nail 1 (with ICAM1 deficiency) O - 20120622 -9606 338435 SCA25 - - HGNC:20684|MIM:608703 2 2p21-p15 spinocerebellar ataxia 25 unknown SCA25 spinocerebellar ataxia 25 O - 20120622 -9606 338436 BLACE - - HGNC:20484|MIM:608450 7 7q36 B-cell acute lymphoblastic leukemia expressed unknown BLACE B-cell acute lymphoblastic leukemia expressed O - 20121021 -9606 338440 ANO9 - PIG5|TMEM16J|TP53I5 HGNC:20679|Ensembl:ENSG00000185101|HPRD:18214|Vega:OTTHUMG00000165446 11 11p15.5 anoctamin 9 protein-coding ANO9 anoctamin 9 O anoctamin-9|p53-induced gene 5 protein|transmembrane protein 16J|tumor protein p53 inducible protein 5|tumor protein p53-inducible protein 5 20121230 -9606 338442 HCAR2 - GPR109A|HCA2|HM74a|HM74b|NIACR1|PUMAG|Puma-g HGNC:24827|MIM:609163|Ensembl:ENSG00000182782|HPRD:16453|Vega:OTTHUMG00000162722 12 12q24.31 hydroxycarboxylic acid receptor 2 protein-coding HCAR2 hydroxycarboxylic acid receptor 2 O G protein-coupled receptor 109A|G protein-coupled receptor HM74a|G-protein coupled receptor 109A|G-protein coupled receptor HM74A|hydroxy-carboxylic acid receptor 2|niacin receptor 1|nicotinic acid receptor 20121230 -9606 338448 GTF2IP2 - - HGNC:16082 21 21q11.2 general transcription factor IIi, pseudogene 2 pseudo GTF2IP2 general transcription factor IIi, pseudogene 2 O - 20121230 -9606 338470 MESTP1 - - HGNC:29660 6 6q22-q23 mesoderm specific transcript pseudogene 1 pseudo MESTP1 mesoderm specific transcript pseudogene 1 O - 20121230 -9606 338557 FFAR4 - BMIQ10|GPR120|GPR129|GT01|O3FAR1|PGR4 HGNC:19061|MIM:609044|Ensembl:ENSG00000186188|HPRD:16422|Vega:OTTHUMG00000034409 10 10q23.33 free fatty acid receptor 4 protein-coding FFAR4 free fatty acid receptor 4 O G-protein coupled receptor 120|G-protein coupled receptor 129|G-protein coupled receptor GT01|G-protein coupled receptor PGR4|omega-3 fatty acid receptor 1 20121230 -9606 338567 KCNK18 - K2p18.1|MGR13|TRESK|TRESK-2|TRESK2|TRIK HGNC:19439|MIM:613655|Ensembl:ENSG00000186795|HPRD:17173|Vega:OTTHUMG00000019120 10 10q25.3 potassium channel, subfamily K, member 18 protein-coding KCNK18 potassium channel, subfamily K, member 18 O TWIK-related individual K+ channel|TWIK-related individual potassium channel|TWIK-related spinal cord K+ channel|TWIK-related spinal cord potassium channel|potassium channel subfamily K member 18 20121230 -9606 338579 LOC338579 - - - 10 10q11.21 ankyrin repeat domain-containing protein 30B pseudogene pseudo - - - - 20121230 -9606 338588 LINC00705 - - HGNC:27874 10 10p15.1 long intergenic non-protein coding RNA 705 miscRNA LINC00705 long intergenic non-protein coding RNA 705 O - 20121230 -9606 338591 CHCHD3P1 - - HGNC:44697 10 10p14 coiled-coil-helix-coiled-coil-helix domain containing 3 pseudogene 1 pseudo CHCHD3P1 coiled-coil-helix-coiled-coil-helix domain containing 3 pseudogene 1 O - 20121230 -9606 338596 ST8SIA6 - SIA8F|SIAT8F|ST8SIA-VI HGNC:23317|MIM:610139|Ensembl:ENSG00000148488|HPRD:15344|Vega:OTTHUMG00000017748 10 10p12.33 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 protein-coding ST8SIA6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 O SIAT8-F|ST8SiaVI|alpha-2,8-sialyltransferase 8F|alpha-2,8-sialyltransferase 8F variant 2|alpha-2,8-sialyltransferase 8F variant 3|sialyltransferase 8F (alpha-2, 8-sialyltransferase)|sialytransferase St8Sia VI 20121230 -9606 338598 LOC338598 - - - 10 10q11.22 family with sequence similarity 35, member A pseudogene pseudo - - - - 20121230 -9606 338599 DUPD1 - DUSP27|FMDSP HGNC:23481|Ensembl:ENSG00000188716|HPRD:16846|Vega:OTTHUMG00000018512 10 10q22.2 dual specificity phosphatase and pro isomerase domain containing 1 protein-coding DUPD1 dual specificity phosphatase and pro isomerase domain containing 1 O atypical dual-specific protein phosphatase|dual specificity phosphatase 27|dual specificity phosphatase DUPD1 20121230 -9606 338611 RPS26P40 - RPS26_20_1061 HGNC:36906 10 10q22.1 ribosomal protein S26 pseudogene 40 pseudo RPS26P40 ribosomal protein S26 pseudogene 40 O - 20121230 -9606 338620 LOC338620 - - - 10 10p11.23 uncharacterized LOC338620 protein-coding - - - - 20120508 -9606 338637 OR52M2P - OR52M4 HGNC:15226 11 11p15.4 olfactory receptor, family 52, subfamily M, member 2 pseudogene pseudo OR52M2P olfactory receptor, family 52, subfamily M, member 2 pseudogene O - 20121230 -9606 338645 LUZP2 UNQ2566/PRO6246 KFSP2566|PRO6246 HGNC:23206|MIM:608178|Ensembl:ENSG00000187398|HPRD:17348|Vega:OTTHUMG00000166109 11 11p14.3 leucine zipper protein 2 protein-coding LUZP2 leucine zipper protein 2 O - 20121230 -9606 338651 LOC338651 - - - 11 11p15.5 uncharacterized LOC338651 miscRNA - - - - 20121230 -9606 338653 KCNQ1-AS1 - - HGNC:42790 11 11p15.5 KCNQ1 antisense RNA 1 miscRNA KCNQ1-AS1 KCNQ1 antisense RNA 1 O - 20121021 -9606 338657 CCDC84 DLNB14 - HGNC:30460|Ensembl:ENSG00000186166|HPRD:13234|Vega:OTTHUMG00000166348 11 11q23.3 coiled-coil domain containing 84 protein-coding CCDC84 coiled-coil domain containing 84 O coiled-coil domain-containing protein 84 20121230 -9606 338661 TMEM225 - PMP22CD HGNC:32390|Ensembl:ENSG00000204300|HPRD:18492|Vega:OTTHUMG00000165959 11 11q24.1 transmembrane protein 225 protein-coding TMEM225 transmembrane protein 225 O PMP22 claudin domain containing|PMP22 claudin domain-containing protein 20121230 -9606 338662 OR8D4 - OR11-275 HGNC:14840|Ensembl:ENSG00000181518|HPRD:17788|Vega:OTTHUMG00000165960 11 11q24.1 olfactory receptor, family 8, subfamily D, member 4 protein-coding OR8D4 olfactory receptor, family 8, subfamily D, member 4 O olfactory receptor 8D4|olfactory receptor OR11-275 20121230 -9606 338667 LOC338667 - - - 11 11q24.2 uncharacterized LOC338667 protein-coding - - - uncharacterized protein LOC338667 20121230 -9606 338674 OR5F1 - OR11-10 HGNC:8343|MIM:608492|Ensembl:ENSG00000149133|HPRD:12246|Vega:OTTHUMG00000166825 11 11q12.1 olfactory receptor, family 5, subfamily F, member 1 protein-coding OR5F1 olfactory receptor, family 5, subfamily F, member 1 O olfactory receptor 11-10|olfactory receptor 5F1|olfactory receptor OR11-167 20121230 -9606 338675 OR5AP2 - OR9J1 HGNC:15258|Ensembl:ENSG00000172464|HPRD:17749|Vega:OTTHUMG00000166865 11 11q12.1 olfactory receptor, family 5, subfamily AP, member 2 protein-coding OR5AP2 olfactory receptor, family 5, subfamily AP, member 2 O olfactory receptor 5AP2|olfactory receptor, family 9, subfamily J, member 1 20121230 -9606 338692 ANKRD13D - - HGNC:27880|Ensembl:ENSG00000172932|HPRD:17349|Vega:OTTHUMG00000162929 11 11q13.2 ankyrin repeat domain 13 family, member D protein-coding ANKRD13D ankyrin repeat domain 13 family, member D O ankyrin repeat domain-containing protein 13D 20121230 -9606 338694 LOC338694 - - - 11 11q13.2 uncharacterized LOC338694 miscRNA - - - - 20120508 -9606 338699 ANKRD42 - SARP HGNC:26752|Ensembl:ENSG00000137494|HPRD:08230|Vega:OTTHUMG00000167075 11 11q14.1 ankyrin repeat domain 42 protein-coding ANKRD42 ankyrin repeat domain 42 O ankyrin repeat domain-containing protein 42|several ankyrin repeat protein 20121230 -9606 338707 B4GALNT4 - - HGNC:26315|Ensembl:ENSG00000182272|HPRD:08046|Vega:OTTHUMG00000119075 11 11p15.5 beta-1,4-N-acetyl-galactosaminyl transferase 4 protein-coding B4GALNT4 beta-1,4-N-acetyl-galactosaminyl transferase 4 O N-acetyl-beta-glucosaminyl-glycoprotein 4-beta-N-acetylgalactosaminyltransferase 1|NGalNAc-T1|beta-1,4-N-acetylgalactosaminyltransferase IV|beta1,4-N-acetylgalactosaminyltransferases IV|beta4GalNAc-T4|beta4GalNAcT4|betaGT4 20121230 -9606 338739 LOC338739 - - - 11 11p13 uncharacterized LOC338739 miscRNA - - - - 20121230 -9606 338751 OR52L1 - OR11-50 HGNC:14785|Ensembl:ENSG00000183313|HPRD:17744|Vega:OTTHUMG00000165374 11 11p15.4 olfactory receptor, family 52, subfamily L, member 1 protein-coding OR52L1 olfactory receptor, family 52, subfamily L, member 1 O olfactory receptor 52L1|olfactory receptor OR11-50 20121230 -9606 338755 OR2AG2 - OR11-76|OR2AG2P HGNC:15143|Ensembl:ENSG00000188124|HPRD:14936|Vega:OTTHUMG00000165868 11 11p15.4 olfactory receptor, family 2, subfamily AG, member 2 protein-coding OR2AG2 olfactory receptor, family 2, subfamily AG, member 2 O olfactory receptor 2AG2|olfactory receptor OR11-76 pseudogene|olfactory receptor, family 2, subfamily AG, member 2 pseudogene 20121230 -9606 338758 LOC338758 - - - 12 12q21.33 uncharacterized LOC338758 miscRNA - - - - 20121230 -9606 338761 C1QL4 - C1QTNF11|CTRP11 HGNC:31416|Ensembl:ENSG00000186897|HPRD:17350|Vega:OTTHUMG00000169515 12 12q13.12 complement component 1, q subcomponent-like 4 protein-coding C1QL4 complement component 1, q subcomponent-like 4 O complement C1q-like protein 4 20121230 -9606 338773 TMEM119 PSEC0199 - HGNC:27884|Ensembl:ENSG00000183160|HPRD:11260|Vega:OTTHUMG00000169410 12 12q23.3 transmembrane protein 119 protein-coding TMEM119 transmembrane protein 119 O - 20121230 -9606 338785 KRT79 - K6L|KRT6L HGNC:28930|MIM:611160|Ensembl:ENSG00000185640|HPRD:11183|Vega:OTTHUMG00000169878 12 12q13.13 keratin 79 protein-coding KRT79 keratin 79 O CK-79|K79|cytokeratin-79|keratin 6L|keratin, type II cytoskeletal 79|keratin-6L|keratin-79|type-II keratin Kb38 20121230 -9606 338797 LOC338797 - - HPRD:18782 12 12q24.33 uncharacterized LOC338797 miscRNA - - - - 20121230 -9606 338799 LOC338799 - - - 12 12q24.31 uncharacterized LOC338799 miscRNA - - - - 20121230 -9606 338805 ST13P8 - - HGNC:38743 12 12q14.1 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 8 pseudo ST13P8 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 8 O - 20121230 -9606 338809 C12orf74 - - HGNC:27887|Ensembl:ENSG00000214215|Vega:OTTHUMG00000170105 12 12q22 chromosome 12 open reading frame 74 protein-coding C12orf74 chromosome 12 open reading frame 74 O uncharacterized protein C12orf74 20121230 -9606 338811 FAM19A2 - TAFA-2|TAFA2 HGNC:21589|Ensembl:ENSG00000198673|HPRD:16876|Vega:OTTHUMG00000170207 12 12q14.1 family with sequence similarity 19 (chemokine (C-C motif)-like), member A2 protein-coding FAM19A2 family with sequence similarity 19 (chemokine (C-C motif)-like), member A2 O chemokine-like protein TAFA-2|protein FAM19A2 20121230 -9606 338817 LOC338817 - - - 12 12p13.2 uncharacterized LOC338817 miscRNA - - - - 20121230 -9606 338821 SLCO1B7 - LST-3|LST-3TM12|LST3|SLC21A21 HGNC:32934|Ensembl:ENSG00000205754|Ensembl:ENSG00000257046|HPRD:17455|Vega:OTTHUMG00000169018|Vega:OTTHUMG00000169045 12 12p12.2 solute carrier organic anion transporter family, member 1B7 (non-functional) protein-coding SLCO1B7 solute carrier organic anion transporter family, member 1B7 (non-functional) O liver-specific organic anion transporter 3|liver-specific organic anion transporter 3TM12|organic anion transporter LST-3b|putative solute carrier organic anion transporter family member 1B7 20121230 -9606 338862 LINC00550 - - HGNC:43688 13 13q21.33 long intergenic non-protein coding RNA 550 miscRNA LINC00550 long intergenic non-protein coding RNA 550 O - 20121230 -9606 338864 LINC00347 - - HGNC:27890 13 13q21.33 long intergenic non-protein coding RNA 347 miscRNA LINC00347 long intergenic non-protein coding RNA 347 O - 20121230 -9606 338870 RPS12P23 - RPS12_11_1301 HGNC:35573 13 13q12.11 ribosomal protein S12 pseudogene 23 pseudo RPS12P23 ribosomal protein S12 pseudogene 23 O - 20121230 -9606 338872 C1QTNF9 RP11-307N16.1 AQL1|C1QTNF9A|CTRP9 HGNC:28732|MIM:614285|Ensembl:ENSG00000240654|HPRD:14659|Vega:OTTHUMG00000016576 13 13q12.12 C1q and tumor necrosis factor related protein 9 protein-coding C1QTNF9 C1q and tumor necrosis factor related protein 9 O complement C1q and tumor necrosis factor-related protein 9|complement C1q and tumor necrosis factor-related protein 9A|complement C1q tumor necrosis factor-related protein 9|complement C1q tumor necrosis factor-related protein 9A 20121230 -9606 338879 RNASE10 - RNASE9 HGNC:19275|Ensembl:ENSG00000182545|HPRD:18495|Vega:OTTHUMG00000170986 14 14q11.2 ribonuclease, RNase A family, 10 (non-active) protein-coding RNASE10 ribonuclease, RNase A family, 10 (non-active) O ribonuclease 10|ribonuclease-like protein 10 20121230 -9606 338917 VSX2 - CHX10|HOX10|MCOP2|MCOPCB3|RET1 HGNC:1975|MIM:142993|Ensembl:ENSG00000119614|HPRD:08852|Vega:OTTHUMG00000171206 14 14q24.3 visual system homeobox 2 protein-coding VSX2 visual system homeobox 2 O ceh-10 homeo domain containing homolog|ceh-10 homeodomain-containing homolog|homeobox protein CHX10 20121230 -9606 338949 TMEM202 - - HGNC:33733|Ensembl:ENSG00000187806|Vega:OTTHUMG00000172716 15 15q24.1 transmembrane protein 202 protein-coding TMEM202 transmembrane protein 202 O - 20121230 -9606 338963 LOC338963 - - - 15 15q25.2 epididymal protein pseudogene pseudo - - - - 20121230 -9606 339005 WHAMMP3 - WHAMML1|WHDC1L1 HGNC:27892 15 15q11.2 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 3 pseudo WHAMMP3 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 3 O - 20121230 -9606 339010 POTEB - A26B1|CT104.5|POTE-15|POTE15 HGNC:33734|MIM:608912|HPRD:17882 15 15q11.2 POTE ankyrin domain family, member B protein-coding POTEB POTE ankyrin domain family, member B O ANKRD26-like family B member 1|ANKRD26-like family B, member 1|POTE ankyrin domain family member B|cancer/testis antigen family 104, member 5|prostate, ovary, testis-expressed protein on chromosome 15|protein expressed in prostate, ovary, testis, and placenta 15 20121209 -9606 339039 PKD1P3 - HG3 HGNC:30067 16 16p13.11 polycystic kidney disease 1 (autosomal dominant) pseudogene 3 pseudo PKD1P3 polycystic kidney disease 1 (autosomal dominant) pseudogene 3 O - 20121230 -9606 339044 PKD1P1 - HG1 HGNC:30065 16 16p13.11 polycystic kidney disease 1 (autosomal dominant) pseudogene 1 pseudo PKD1P1 polycystic kidney disease 1 (autosomal dominant) pseudogene 1 O - 20121230 -9606 339059 FLJ40448 - - HPRD:08282 16 16q24.3 uncharacterized protein FLJ40448 unknown - - - - 20121230 -9606 339105 PRSS53 - POL3S|UNQ308 HGNC:34407|MIM:610561|Ensembl:ENSG00000151006|Vega:OTTHUMG00000047358 16 16p11.2 protease, serine, 53 protein-coding PRSS53 protease, serine, 53 O EDTP308|polyserase 3|polyserase-3|polyserine protease 3|serine protease 53 20121230 -9606 339122 RAB43 - RAB11B|RAB41 HGNC:19983|Ensembl:ENSG00000172780|HPRD:17947|Vega:OTTHUMG00000137364 3 3q21.3 RAB43, member RAS oncogene family protein-coding RAB43 RAB43, member RAS oncogene family O ras-related protein Rab-41|ras-related protein Rab-43 20121230 -9606 339123 JMJD8 PP14397 C16orf20 HGNC:14148|Ensembl:ENSG00000161999|HPRD:17351|Vega:OTTHUMG00000172950 16 16p13.3 jumonji domain containing 8 protein-coding JMJD8 jumonji domain containing 8 O jmjC domain-containing protein 8|jumonji domain-containing protein 8 20121230 -9606 339145 FAM92B - - HGNC:24781|Ensembl:ENSG00000153789|HPRD:13488 16 16q24.1 family with sequence similarity 92, member B protein-coding FAM92B family with sequence similarity 92, member B O protein FAM92B 20121230 -9606 339166 LOC339166 - - - 17 17p13.3-p13.2 uncharacterized LOC339166 miscRNA - - - - 20121230 -9606 339168 TMEM95 UNQ9390/PRO34281 UNQ9390 HGNC:27898|Ensembl:ENSG00000182896|HPRD:14165|Vega:OTTHUMG00000132899 17 17p13.1 transmembrane protein 95 protein-coding TMEM95 transmembrane protein 95 O - 20121230 -9606 339175 METTL2A HSPC266 METTL2 HGNC:25755|Ensembl:ENSG00000087995|HPRD:07795|Vega:OTTHUMG00000164527 17 17q23.2 methyltransferase like 2A protein-coding METTL2A methyltransferase like 2A O methyltransferase-like protein 2A 20121230 -9606 339184 CCDC144NL - - HGNC:33735|Ensembl:ENSG00000205212|HPRD:17572|Vega:OTTHUMG00000132271 17 17p11.2 coiled-coil domain containing 144 family, N-terminal like protein-coding CCDC144NL coiled-coil domain containing 144 family, N-terminal like O putative coiled-coil domain-containing protein 144 N-terminal-like 20121230 -9606 339186 LOC339186 - - - 17 17p11.2 keratin 17 pseudogene pseudo - - - - 20121230 -9606 339192 LOC339192 - - - 17 17q21.31 uncharacterized LOC339192 miscRNA - - - - 20121230 -9606 339201 ASB16-AS1 - C17orf65 HGNC:25442|HPRD:13231 17 17q21.31 ASB16 antisense RNA 1 miscRNA ASB16-AS1 ASB16 antisense RNA 1 O - 20121230 -9606 339210 C17orf67 - - HGNC:27900|Ensembl:ENSG00000214226|Vega:OTTHUMG00000132083 17 17q22 chromosome 17 open reading frame 67 protein-coding C17orf67 chromosome 17 open reading frame 67 O uncharacterized protein C17orf67 20121230 -9606 339221 ENPP7 UNQ3077/PRO9912 ALK-SMase HGNC:23764|Ensembl:ENSG00000182156|Vega:OTTHUMG00000177462 17 17q25.3 ectonucleotide pyrophosphatase/phosphodiesterase 7 protein-coding ENPP7 ectonucleotide pyrophosphatase/phosphodiesterase 7 O E-NPP 7|NPP-7|alkaline sphingomyelin phosphodiesterase|alkaline sphingomyelinase|ectonucleotide pyrophosphatase/phosphodiesterase family member 7|intestinal alkaline sphingomyelinase 20121230 -9606 339229 OXLD1 - C17orf90 HGNC:27901|Ensembl:ENSG00000204237|Vega:OTTHUMG00000178063 17 17q25.3 oxidoreductase-like domain containing 1 protein-coding OXLD1 oxidoreductase-like domain containing 1 O oxidoreductase-like domain-containing protein 1 20121230 -9606 339230 CCDC137 - - HGNC:33451|MIM:614271|Ensembl:ENSG00000185298|Vega:OTTHUMG00000178064 17 17q25.3 coiled-coil domain containing 137 protein-coding CCDC137 coiled-coil domain containing 137 O coiled-coil domain-containing protein 137|hepatocellular carcinoma related protein 2 20121230 -9606 339231 ARL16 - - HGNC:27902|Ensembl:ENSG00000214087|Vega:OTTHUMG00000178103 17 17q25.3 ADP-ribosylation factor-like 16 protein-coding ARL16 ADP-ribosylation factor-like 16 O ADP-ribosylation factor-like protein 16 20121230 -9606 339240 LOC339240 - - - 17 17p11.2 keratin 17 pseudogene pseudo - - - - 20121230 -9606 339241 KRT17P2 - - HGNC:6429 17 17p11.2 keratin 17 pseudogene 2 pseudo KRT17P2 keratin 17 pseudogene 2 O - 20121230 -9606 339244 KRT16P4 - - HGNC:37809 17 17p11.2 keratin 16 pseudogene 4 pseudo KRT16P4 keratin 16 pseudogene 4 O - 20121230 -9606 339256 NOS2P3 - - HGNC:35124 17 17p11.2 nitric oxide synthase 2 pseudogene 3 pseudo NOS2P3 nitric oxide synthase 2 pseudogene 3 O - 20121230 -9606 339257 LOC339257 - - - 17 17p11.2 karyopherin (importin) beta 2 pseudogene pseudo - - - - 20121230 -9606 339258 LOC339258 - - - 17 17p11.2 keratin 17 pseudogene pseudo - - - - 20121230 -9606 339260 LOC339260 - - - 17 17p11.2 uncharacterized LOC339260 miscRNA - - - - 20121230 -9606 339263 C17orf51 - - HGNC:27904|Ensembl:ENSG00000212719|Vega:OTTHUMG00000132832 17 17p11.2 chromosome 17 open reading frame 51 protein-coding C17orf51 chromosome 17 open reading frame 51 O uncharacterized protein C17orf51 20121230 -9606 339287 MSL1 - MSL-1|hMSL1 HGNC:27905|MIM:614801|Ensembl:ENSG00000188895|Vega:OTTHUMG00000179629 17 17q21.1 male-specific lethal 1 homolog (Drosophila) protein-coding MSL1 male-specific lethal 1 homolog (Drosophila) O MSL1-like 1|male-specific lethal 1 homolog|male-specific lethal 1-like 1|male-specific lethal-1 homolog 1 20121230 -9606 339290 LINC00667 - - HGNC:27906 18 18p11.31 long intergenic non-protein coding RNA 667 miscRNA LINC00667 long intergenic non-protein coding RNA 667 O - 20121230 -9606 339291 LRRC30 - - HGNC:30219|Ensembl:ENSG00000206422|Vega:OTTHUMG00000178479 18 18p11.23 leucine rich repeat containing 30 protein-coding LRRC30 leucine rich repeat containing 30 O leucine-rich repeat-containing protein 30 20121230 -9606 339298 LOC339298 - - - 18 18q23 uncharacterized LOC339298 miscRNA - - - - 20121230 -9606 339302 CPLX4 - CPX-IV|CPXIV HGNC:24330|MIM:609586|Ensembl:ENSG00000166569|HPRD:13091|Vega:OTTHUMG00000132756 18 18q21.32 complexin 4 protein-coding CPLX4 complexin 4 O CPX IV|complexin IV|complexin-4 20121230 -9606 339316 LOC339316 - - - 19 19q12 uncharacterized LOC339316 protein-coding - - - - 20120508 -9606 339318 ZNF181 - HHZ181 HGNC:12971|MIM:606741|Ensembl:ENSG00000197841|HPRD:18783|Vega:OTTHUMG00000157508 19 19q13.11 zinc finger protein 181 protein-coding ZNF181 zinc finger protein 181 O - 20121230 -9606 339324 ZNF260 - OZRF1|PEX1|ZFP260 HGNC:13499|MIM:613749|Ensembl:ENSG00000254004|HPRD:18505|Vega:OTTHUMG00000048155 19 19q13.12 zinc finger protein 260 protein-coding ZNF260 zinc finger protein 260 O zfp-260 20121230 -9606 339327 ZNF546 - ZNF49 HGNC:28671|Ensembl:ENSG00000187187|HPRD:11726 19 19q13.2 zinc finger protein 546 protein-coding ZNF546 zinc finger protein 546 O zinc finger protein 49 20121230 -9606 339344 MYPOP - P42pop HGNC:20178|Ensembl:ENSG00000176182|HPRD:17352 19 19q13.32 Myb-related transcription factor, partner of profilin protein-coding MYPOP Myb-related transcription factor, partner of profilin O myb-related protein p42POP|myb-related transcription factor, partner of profilin|p42 Myb-related transcription factor, partner of profilin|partner of profilin 20121230 -9606 339345 NANOS2 - NOS2 HGNC:23292|MIM:608228|Ensembl:ENSG00000188425|HPRD:18784 19 19q13.32 nanos homolog 2 (Drosophila) protein-coding NANOS2 nanos homolog 2 (Drosophila) O NOS-2|nanos homolog 2 20121230 -9606 339352 LOC339352 - - - 19 19q13.41 cytosolic thiouridylase subunit 1 homolog (S. pombe) pseudogene pseudo - - - - 20121230 -9606 339366 ADAMTSL5 - THSD6 HGNC:27912|Ensembl:ENSG00000185761|HPRD:15504|Vega:OTTHUMG00000180093 19 19p13.3 ADAMTS-like 5 protein-coding ADAMTSL5 ADAMTS-like 5 O ADAMTS-like protein 5|ADAMTSL-5|thrombospondin type-1 domain-containing protein 6|thrombospondin, type I, domain containing 6 20121230 -9606 339390 CLEC4G UNQ431/PRO792 DTTR431|LP2698|LSECtin|UNQ431 HGNC:24591|Ensembl:ENSG00000182566|HPRD:16721 19 19p13.2 C-type lectin domain family 4, member G protein-coding CLEC4G C-type lectin domain family 4, member G O C-type lectin domain family 4 member G|C-type lectin superfamily 4, member G|liver and lymph node sinusoidal endothelial cell C-type lectin 20121230 -9606 339396 NEFHP1 - NEFHL HGNC:7738 1 1p13.1 neurofilament, heavy polypeptide pseudogene 1 pseudo NEFHP1 neurofilament, heavy polypeptide pseudogene 1 O - 20121230 -9606 339398 LINGO4 UNQ9248/PRO34002 DAAT9248|LRRN6D|PRO34002 HGNC:31814|MIM:609794|Ensembl:ENSG00000213171|HPRD:17453|Vega:OTTHUMG00000013059 1 1q21.3 leucine rich repeat and Ig domain containing 4 protein-coding LINGO4 leucine rich repeat and Ig domain containing 4 O leucine rich repeat neuronal 6D|leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 4|leucine-rich repeat neuronal protein 6D 20121230 -9606 339400 FLG-AS1 - - HGNC:27913 1 1q21.3 FLG antisense RNA 1 miscRNA FLG-AS1 FLG antisense RNA 1 O - 20121230 -9606 339403 RXFP4 - GPCR142|GPR100|RLN3R2|RXFPR4 HGNC:14666|MIM:609043|Ensembl:ENSG00000173080|HPRD:16421|Vega:OTTHUMG00000017463 1 1q22 relaxin/insulin-like family peptide receptor 4 protein-coding RXFP4 relaxin/insulin-like family peptide receptor 4 O G protein-coupled receptor 100|G-protein coupled receptor 100|G-protein coupled receptor GPCR142|RLN3 receptor 2|insulin-like peptide INSL5 receptor|relaxin 3 receptor 2|relaxin family peptide receptor 4|relaxin-3 receptor 2 20121230 -9606 339416 ANKRD45 - CT117|RP3-436N22.4 HGNC:24786|Ensembl:ENSG00000183831|HPRD:13501|Vega:OTTHUMG00000040546 1 1q25.1 ankyrin repeat domain 45 protein-coding ANKRD45 ankyrin repeat domain 45 O ankyrin repeat domain-containing protein 45|cancer/testis antigen 117 20121230 -9606 339442 LOC339442 - - - 1 1p34.3 uncharacterized LOC339442 miscRNA - - - - 20121230 -9606 339448 C1orf174 - RP13-531C17.2 HGNC:27915|Ensembl:ENSG00000198912|HPRD:17353|Vega:OTTHUMG00000003739 1 1p36.32 chromosome 1 open reading frame 174 protein-coding C1orf174 chromosome 1 open reading frame 174 O UPF0688 protein C1orf174 20121230 -9606 339451 KLHL17 - RP11-54O7.6 HGNC:24023|Ensembl:ENSG00000187961|HPRD:13926|Vega:OTTHUMG00000040721 1 1p36.33 kelch-like 17 (Drosophila) protein-coding KLHL17 kelch-like 17 (Drosophila) O actinfilin|kelch-like protein 17 20121230 -9606 339453 TMEM240 hCG_19301 C1orf70 HGNC:25186|Ensembl:ENSG00000205090|Vega:OTTHUMG00000042193 1 1p36.33 transmembrane protein 240 protein-coding TMEM240 transmembrane protein 240 O transmembrane protein C1orf70 20121230 -9606 339456 TMEM52 RP1-140A9.3 - HGNC:27916|Ensembl:ENSG00000178821|HPRD:14166|Vega:OTTHUMG00000000944 1 1p36.33 transmembrane protein 52 protein-coding TMEM52 transmembrane protein 52 O - 20121230 -9606 339457 C1orf222 - - HGNC:27917|HPRD:14167 1 1p36.33 chromosome 1 open reading frame 222 protein-coding C1orf222 chromosome 1 open reading frame 222 O uncharacterized protein C1orf222 20121230 -9606 339468 LOC339468 - - - 1 1p31.1 uncharacterized LOC339468 unknown - - - - 20120508 -9606 339476 ERVMER61-1 - C1orf99|RP11-393M18.3 HGNC:27919|HPRD:17354 1 1q31.1 endogenous retrovirus group MER61, member 1 unknown ERVMER61-1 endogenous retrovirus group MER61, member 1 O - 20121021 -9606 339479 FAM5C RP11-445K1.1 BRINP3|DBCCR1L|DBCCR1L1 HGNC:22393|Ensembl:ENSG00000162670|HPRD:16782|Vega:OTTHUMG00000035533 1 1q31.1 family with sequence similarity 5, member C protein-coding FAM5C family with sequence similarity 5, member C O DBCCR1-like protein 1|protein FAM5C 20121230 -9606 339483 MTMR9LP - MTMR9L HGNC:27920|HPRD:14168 1 1p35.1 myotubularin related protein 9-like, pseudogene pseudo MTMR9LP myotubularin related protein 9-like, pseudogene O - 20121230 -9606 339487 ZBTB8OS - ARCH|ARCH2 HGNC:24094|Ensembl:ENSG00000176261|HPRD:12470|Vega:OTTHUMG00000007856 1 1p35.1 zinc finger and BTB domain containing 8 opposite strand protein-coding ZBTB8OS zinc finger and BTB domain containing 8 opposite strand O archease (ARCH)|archease-like protein|protein archease|zinc finger and BTB domain-containing opposite strand protein 8 20121230 -9606 339488 TFAP2E - AP2E HGNC:30774|MIM:614428|Ensembl:ENSG00000116819|HPRD:18174|Vega:OTTHUMG00000004388 1 1p34.3 transcription factor AP-2 epsilon (activating enhancer binding protein 2 epsilon) protein-coding TFAP2E transcription factor AP-2 epsilon (activating enhancer binding protein 2 epsilon) O AP2-epsilon|activating enhancer-binding protein 2-epsilon|adaptor-related protein complex 2, epsilon subunit|transcription factor AP-2-epsilon 20121230 -9606 339500 ZNF678 RP4-566D2.2 - HGNC:28652|Ensembl:ENSG00000181450|HPRD:14622|Vega:OTTHUMG00000037700 1 1q42.13 zinc finger protein 678 protein-coding ZNF678 zinc finger protein 678 O hypothetical protein MGC42493 20121230 -9606 339501 PRSS38 - MPN2 HGNC:29625|Ensembl:ENSG00000185888|HPRD:07134|Vega:OTTHUMG00000037701 1 1q42.13 protease, serine, 38 protein-coding PRSS38 protease, serine, 38 O marapsin 2|marapsin-2|serine protease 38|serine protease MPN2 20121230 -9606 339505 LOC339505 - - - 1 1p36.12 uncharacterized LOC339505 miscRNA - - - - 20121230 -9606 339512 C1orf110 RP11-331H2.2 - HGNC:28736|Ensembl:ENSG00000185860|HPRD:14661|Vega:OTTHUMG00000034421 1 1q23.3 chromosome 1 open reading frame 110 protein-coding C1orf110 chromosome 1 open reading frame 110 O coiled-coil domain-containing protein C1orf110 20121230 -9606 339521 FAM58BP - FAM58B HGNC:27373 1 1q32.1 cyclin-related protein FAM58B pseudo FAM58BP family with sequence similarity 58, member B, pseudogene O - 20121230 -9606 339524 LOC339524 - - HPRD:14169 1 1p22.3 uncharacterized LOC339524 miscRNA - - - - 20121230 -9606 339529 LOC339529 - - - 1 1q44 uncharacterized LOC339529 miscRNA - - - - 20121230 -9606 339535 LOC339535 - - - 1 1q43 uncharacterized LOC339535 miscRNA - - - - 20121230 -9606 339539 LOC339539 - - - 1 1p34.2 uncharacterized LOC339539 miscRNA - - - - 20120508 -9606 339541 C1orf228 - NCRNA00082|p40 HGNC:34345|Ensembl:ENSG00000198520|HPRD:17525|Vega:OTTHUMG00000007834 1 1p34.1 chromosome 1 open reading frame 228 protein-coding C1orf228 chromosome 1 open reading frame 228 O uncharacterized protein C1orf228 20121230 -9606 339559 ZFP69 - RP11-656D10.2|ZFP69A|ZNF642 HGNC:24708|Ensembl:ENSG00000187815|HPRD:15883|Vega:OTTHUMG00000007303 1 1p34.2 ZFP69 zinc finger protein protein-coding ZFP69 ZFP69 zinc finger protein O ZFP69 zinc finger protein A|zinc finger protein 642 20121230 -9606 339562 IGKV1OR2-118 - - HGNC:37488|IMGT/GENE-DB:IGKV1OR2-118 2 2p11.1 immunoglobulin kappa variable 1/OR2-118 (pseudogene) pseudo IGKV1OR2-118 immunoglobulin kappa variable 1/OR2-118 (pseudogene) O - 20121230 -9606 339568 LOC339568 - - - 20 20q12 uncharacterized LOC339568 miscRNA - - - - 20121230 -9606 339593 LOC339593 - - Vega:OTTHUMG00000031883 20 20p12.2 uncharacterized LOC339593 miscRNA - - - - 20121230 -9606 339622 LOC339622 - - - 21 21q21.1-q21.2 uncharacterized LOC339622 miscRNA - - - - 20121230 -9606 339665 SLC35E4 - - HGNC:17058|Ensembl:ENSG00000100036|HPRD:15376|Vega:OTTHUMG00000151110 22 22q12.2 solute carrier family 35, member E4 protein-coding SLC35E4 solute carrier family 35, member E4 O solute carrier family 35 member E4 20121230 -9606 339666 LOC339666 - - - 22 22q12.3 uncharacterized LOC339666 miscRNA - - - - 20121230 -9606 339669 TEX33 LL22NC01-81G9.2 C22orf33|EAN57|cE81G9.2 HGNC:28568|Ensembl:ENSG00000185264|HPRD:17529|Vega:OTTHUMG00000150531 22 22q12.3 testis expressed 33 protein-coding TEX33 testis expressed 33 O protein EAN57|testis-expressed sequence 33 protein 20121230 -9606 339674 LINC00634 - BK250D10.8 HGNC:27930 22 22q13.2 long intergenic non-protein coding RNA 634 miscRNA LINC00634 long intergenic non-protein coding RNA 634 O - 20121230 -9606 339685 LOC339685 - - - 22 22q13.31 uncharacterized LOC339685 miscRNA - - - - 20121017 -9606 339736 AK2P2 - - HGNC:33542 2 2p23.1 adenylate kinase 2 pseudogene 2 pseudo AK2P2 adenylate kinase 2 pseudogene 2 O - 20121230 -9606 339742 FAM201B - - HGNC:27933 2 2q21.2 family with sequence similarity 201, member B unknown FAM201B family with sequence similarity 201, member B O - 20121230 -9606 339745 SPOPL - - HGNC:27934|Ensembl:ENSG00000144228|HPRD:11261|Vega:OTTHUMG00000153635 2 2q22.1 speckle-type POZ protein-like protein-coding SPOPL speckle-type POZ protein-like O HIB homolog 2|roadkill homolog 2 20121230 -9606 339751 MLK7-AS1 - - HGNC:27935 2 2q31.1 MLK7 antisense RNA 1 miscRNA MLK7-AS1 MLK7 antisense RNA 1 O - 20121230 -9606 339760 LOC339760 - - - 2 2q14.3 uncharacterized LOC339760 protein-coding - - - - 20121209 -9606 339761 CYP27C1 - - HGNC:33480|Ensembl:ENSG00000186684|HPRD:13360|Vega:OTTHUMG00000153400 2 2q14.3 cytochrome P450, family 27, subfamily C, polypeptide 1 protein-coding CYP27C1 cytochrome P450, family 27, subfamily C, polypeptide 1 O cytochrome P450 27C1|cytochrome P450, family 27, subfamily C, polypeptide 13 20121230 -9606 339766 MROH2A - HEATR7B1 HGNC:27936|Ensembl:ENSG00000185038|Vega:OTTHUMG00000059037 2 2q37.1 maestro heat-like repeat family member 2A protein-coding MROH2A maestro heat-like repeat family member 2A O HEAT repeat containing 7B1|HEAT repeat-containing protein 7B1 20121230 -9606 339768 ESPNL UNQ3125 - HGNC:27937|Ensembl:ENSG00000144488|HPRD:14170|Vega:OTTHUMG00000133335 2 2q37.3 espin-like protein-coding ESPNL espin-like O espin-like protein 20121230 -9606 339778 C2orf70 - - HGNC:27938|Ensembl:ENSG00000173557|Vega:OTTHUMG00000151994 2 2p23.3 chromosome 2 open reading frame 70 protein-coding C2orf70 chromosome 2 open reading frame 70 O UPF0573 protein C2orf70 20121230 -9606 339779 C2orf53 - - HGNC:28677|Ensembl:ENSG00000186143|HPRD:14633|Vega:OTTHUMG00000128408 2 2p23.3 chromosome 2 open reading frame 53 protein-coding C2orf53 chromosome 2 open reading frame 53 O uncharacterized protein C2orf53 20121230 -9606 339781 KRT18P19 - - HGNC:33387 2 2q32.2 keratin 18 pseudogene 19 pseudo KRT18P19 keratin 18 pseudogene 19 O - 20121230 -9606 339788 LOC339788 - - - 2 2p25.1 uncharacterized LOC339788 miscRNA - - - - 20121230 -9606 339789 LINC00299 - C2orf46|NCRNA00299 HGNC:27940|HPRD:14171 2 2p25.1 long intergenic non-protein coding RNA 299 miscRNA LINC00299 long intergenic non-protein coding RNA 299 O - 20121230 -9606 339799 EIF3FP3 hCG_15200 - HGNC:37625 2 2p16.1 eukaryotic translation initiation factor 3, subunit F pseudogene 3 pseudo EIF3FP3 eukaryotic translation initiation factor 3, subunit F pseudogene 3 O - 20121230 -9606 339803 LOC339803 hCG_1783888 - - 2 2p15 uncharacterized LOC339803 miscRNA - - - - 20121230 -9606 339804 C2orf74 - - HGNC:34439|Ensembl:ENSG00000237651 2 2p15 chromosome 2 open reading frame 74 protein-coding C2orf74 chromosome 2 open reading frame 74 O uncharacterized protein C2orf74 20121230 -9606 339807 LOC339807 - - - 2 2p14 uncharacterized LOC339807 miscRNA - - - - 20121230 -9606 339822 LOC339822 - - - 2 2p25.3 uncharacterized LOC339822 miscRNA - - - - 20121230 -9606 339829 CCDC39 - CILD14|FAP59 HGNC:25244|MIM:613798|Ensembl:ENSG00000145075|Vega:OTTHUMG00000157857 3 3q26.33 coiled-coil domain containing 39 protein-coding CCDC39 coiled-coil domain containing 39 O coiled-coil domain-containing protein 39 20121230 -9606 339834 CCDC36 - CT74 HGNC:27945|Ensembl:ENSG00000173421|HPRD:14172|Vega:OTTHUMG00000155920 3 3p21.31 coiled-coil domain containing 36 protein-coding CCDC36 coiled-coil domain containing 36 O cancer/testis antigen 74|coiled-coil domain-containing protein 36 20121230 -9606 339843 LOC339843 - - - 3 3q12.1 WW domain containing E3 ubiquitin protein ligase 1 pseudogene pseudo - - - - 20121230 -9606 339845 ASS1P7 - ASSP7 HGNC:770 3 3q26.32 argininosuccinate synthetase 1 pseudogene 7 pseudo ASS1P7 argininosuccinate synthetase 1 pseudogene 7 O - 20121230 -9606 339855 KY - - HGNC:26576|MIM:605739|Ensembl:ENSG00000174611|HPRD:13953|Vega:OTTHUMG00000159788 3 3q22.2 kyphoscoliosis peptidase protein-coding KY kyphoscoliosis peptidase O - 20121230 -9606 339862 LOC339862 hCG_1807427 - - 3 3p24.3 uncharacterized LOC339862 protein-coding - - - uncharacterized protein LOC339862 20121230 -9606 339874 LOC339874 - - - 3 3q22.1 uncharacterized LOC339874 miscRNA - - - - 20121230 -9606 339879 ALG1L6P - - HGNC:44375 3 3p12.3 asparagine-linked glycosylation 1-like 6, pseudogene pseudo ALG1L6P asparagine-linked glycosylation 1-like 6, pseudogene O - 20121230 -9606 339881 EIF4BP8 - - HGNC:37941 3 3q21.1 eukaryotic translation initiation factor 4B pseudogene 8 pseudo EIF4BP8 eukaryotic translation initiation factor 4B pseudogene 8 O - 20121230 -9606 339883 C3orf35 - APRG1 HGNC:24082|MIM:611429|Ensembl:ENSG00000198590|HPRD:16502|Vega:OTTHUMG00000155923 3 3p22.2 chromosome 3 open reading frame 35 protein-coding C3orf35 chromosome 3 open reading frame 35 O AP20 region protein 1|AP20 region protein1 20121230 -9606 339894 LOC339894 - - - 3 3q25.31 uncharacterized LOC339894 miscRNA - - - - 20121230 -9606 339896 GADL1 - - HGNC:27949|Ensembl:ENSG00000144644|HPRD:13557|Vega:OTTHUMG00000130621 3 3p24.1-p23 glutamate decarboxylase-like 1 protein-coding GADL1 glutamate decarboxylase-like 1 O glutamate decarboxylase-like protein 1 20121230 -9606 339897 CNN2P6 - - HGNC:39531 3 3p23 calponin 2 pseudogene 6 pseudo CNN2P6 calponin 2 pseudogene 6 O - 20121230 -9606 339902 LOC339902 hCG_1813818 - - 3 3p14.2 hCG1813818 unknown - - - - 20121017 -9606 339906 PRSS42 - TESSP2 HGNC:30716|Ensembl:ENSG00000178055|HPRD:07156|Vega:OTTHUMG00000156496 3 3p21.31 protease, serine, 42 protein-coding PRSS42 protease, serine, 42 O putative testis serine protease 2|serine protease 42|testis serine protease 2 20121230 -9606 339910 MRPS35P1 - - HGNC:29768 3 3p25.3 mitochondrial ribosomal protein S35 pseudogene 1 pseudo MRPS35P1 mitochondrial ribosomal protein S35 pseudogene 1 O - 20121230 -9606 339926 EHHADH-AS1 - - HGNC:44133 3 3q27.2 EHHADH antisense RNA 1 miscRNA EHHADH-AS1 EHHADH antisense RNA 1 O - 20121230 -9606 339929 LPP-AS2 - - HGNC:27952 3 3q27.3 LPP antisense RNA 2 miscRNA LPP-AS2 LPP antisense RNA 2 O - 20121230 -9606 339942 H1FX-AS1 - C3orf47 HGNC:27953|HPRD:18785 3 3q21.3 H1FX antisense RNA 1 miscRNA H1FX-AS1 H1FX antisense RNA 1 O - 20121230 -9606 339965 CCDC158 - - HGNC:26374|Ensembl:ENSG00000163749|HPRD:13395|Vega:OTTHUMG00000160916 4 4q21.1 coiled-coil domain containing 158 protein-coding CCDC158 coiled-coil domain containing 158 O coiled-coil domain-containing protein 158 20121230 -9606 339966 LOC339966 - - - 4 4q21.1 ubiquitin family domain containing 1 pseudogene pseudo - - - - 20121230 -9606 339967 TMPRSS11A - ECRG1 HGNC:27954|MIM:611704|Ensembl:ENSG00000187054|HPRD:07123|Vega:OTTHUMG00000129303 4 4q13.2 transmembrane protease, serine 11A protein-coding TMPRSS11A transmembrane protease, serine 11A O airway trypsin-like protease 1|epidermal type II transmembrane serine protease|epidermal type-II transmembrane serine protease|esophageal cancer-susceptibility gene 1 protein|transmembrane protease serine 11A 20121230 -9606 339970 GCOM2 - GLURR2|GRINL1B HGNC:15712|MIM:608311 4 4q12 GRINL1B complex locus 2, pseudogene pseudo GCOM2 GRINL1B complex locus 2, pseudogene O - 20121230 -9606 339975 LOC339975 - - - 4 4q35.2 uncharacterized LOC339975 miscRNA - - - - 20121230 -9606 339976 TRIML1 - RNF209 HGNC:26698|Ensembl:ENSG00000184108|HPRD:08774|Vega:OTTHUMG00000160237 4 4q35.2 tripartite motif family-like 1 protein-coding TRIML1 tripartite motif family-like 1 O RING finger protein 209|probable E3 ubiquitin-protein ligase TRIML1|tripartite motif family-like protein 1 20121230 -9606 339977 LRRC66 - - HGNC:34299|Ensembl:ENSG00000188993|HPRD:18593|Vega:OTTHUMG00000160623 4 4q12 leucine rich repeat containing 66 protein-coding LRRC66 leucine rich repeat containing 66 O leucine-rich repeat-containing protein 66 20121230 -9606 339978 LOC339978 - - - 4 4q12 uncharacterized LOC339978 unknown - - - - 20120508 -9606 339983 NAT8L - CML3|NACED|NAT8-LIKE HGNC:26742|MIM:610647|Ensembl:ENSG00000185818|HPRD:08224 4 4p16.3 N-acetyltransferase 8-like (GCN5-related, putative) protein-coding NAT8L N-acetyltransferase 8-like (GCN5-related, putative) O N-acetylaspartate synthetase|NAA synthetase|camello-like protein 3 20121230 -9606 339988 LOC339988 - - - 4 4p16.1 uncharacterized LOC339988 unknown - - - - 20120508 -9606 340017 LOC340017 - - - 4 4q32.1 uncharacterized LOC340017 miscRNA - - - - 20121230 -9606 340024 SLC6A19 - B0AT1|HND HGNC:27960|MIM:608893|Ensembl:ENSG00000174358|HPRD:10596|Vega:OTTHUMG00000161636 5 5p15.33 solute carrier family 6 (neutral amino acid transporter), member 19 protein-coding SLC6A19 solute carrier family 6 (neutral amino acid transporter), member 19 O sodium-dependent amino acid transporter system B0|sodium-dependent neutral amino acid transporter B(0)AT1|solute carrier family 6 (neurotransmitter transporter), member 19|solute carrier family 6 member 19|system B(0) neutral amino acid transporter AT1|system B0 neutral amino acid transporter 20121230 -9606 340037 PRR7-AS1 - - HGNC:27961 5 5q35.3 PRR7 antisense RNA 1 miscRNA PRR7-AS1 PRR7 antisense RNA 1 O - 20121230 -9606 340061 TMEM173 - ERIS|MITA|MPYS|NET23|STING HGNC:27962|MIM:612374|Ensembl:ENSG00000184584|HPRD:14173|Vega:OTTHUMG00000129239 5 5q31.2 transmembrane protein 173 protein-coding TMEM173 transmembrane protein 173 O N-terminal methionine-proline-tyrosine-serine plasma membrane tetraspanner|endoplasmic reticulum IFN stimulator|endoplasmic reticulum interferon stimulator|hMITA|hSTING|mediator of IRF3 activation|mitochondrial mediator of IRF3 activation|stimulator of interferon genes protein 20121230 -9606 340069 FAM170A - ZNFD HGNC:27963|Ensembl:ENSG00000164334|HPRD:14174|Vega:OTTHUMG00000162946 5 5q23.1 family with sequence similarity 170, member A protein-coding FAM170A family with sequence similarity 170, member A O Znf domain containing protein|protein FAM170A|zinc finger domain-containing protein|zinc finger protein ZNFD 20121230 -9606 340073 LOC340073 - - - 5 5q31.2 uncharacterized LOC340073 miscRNA - - - - 20121230 -9606 340074 LOC340074 - - - 5 5q31.1 uncharacterized LOC340074 miscRNA - - - - 20121230 -9606 340075 ARSI - - HGNC:32521|MIM:610009|Ensembl:ENSG00000183876|HPRD:16510|Vega:OTTHUMG00000163479 5 5q32 arylsulfatase family, member I protein-coding ARSI arylsulfatase family, member I O ASI|arylsulfatase I 20121230 -9606 340085 LOC340085 - - - 5 5q11.2 uncharacterized LOC340085 protein-coding - - - - 20120508 -9606 340089 LOC340089 - - - 5 5q13.2 POM121 membrane glycoprotein (rat) pseudogene pseudo - - - - 20121230 -9606 340090 LOC340090 - - - 5 5q13.3 uncharacterized LOC340090 unknown - - - - 20120508 -9606 340094 LOC340094 - - - 5 5p15.32 uncharacterized LOC340094 miscRNA - - - - 20121230 -9606 340096 H3.X - - - 5 5p15.1 histone cluster 2, H3d pseudogene pseudo - - - - 20121230 -9606 340107 LOC340107 - - - 5 5p14.1 uncharacterized LOC340107 miscRNA - - - - 20121230 -9606 340113 LOC340113 - - - 5 5p13.3 uncharacterized LOC340113 miscRNA - - - - 20121230 -9606 340120 ANKRD34B - DP58 HGNC:33736|Ensembl:ENSG00000189127|HPRD:13246|Vega:OTTHUMG00000162541 5 5q14.1 ankyrin repeat domain 34B protein-coding ANKRD34B ankyrin repeat domain 34B O ankyrin repeat domain-containing protein 34B|cytosolic phosphoprotein DP58|dendritic phosphoprotein 58 kDa 20121230 -9606 340146 SLC35D3 - FRCL1|bA55K22.3 HGNC:15621|MIM:612519|Ensembl:ENSG00000182747|HPRD:18059|Vega:OTTHUMG00000015651 6 6q23.3 solute carrier family 35, member D3 protein-coding SLC35D3 solute carrier family 35, member D3 O frc, fringe-like 1|fringe connection-like protein 1|solute carrier family 35 member D3 20121230 -9606 340152 ZC3H12D RP1-281H8.5 C6orf95|MCPIP4|TFL|dJ281H8.1|p34 HGNC:21175|MIM:611106|Ensembl:ENSG00000178199|Vega:OTTHUMG00000015786 6 6q25.1 zinc finger CCCH-type containing 12D protein-coding ZC3H12D zinc finger CCCH-type containing 12D O MCP-induced protein 4|Zinc finger CCCH domain-containing protein 12D|probable ribonuclease ZC3H12D|transformed follicular lymphoma|tumor suppressor TFL 20121230 -9606 340156 MYLK4 RP11-145H9.1 SgK085 HGNC:27972|Ensembl:ENSG00000145949|HPRD:17355|Vega:OTTHUMG00000014121 6 6p25.2 myosin light chain kinase family, member 4 protein-coding MYLK4 myosin light chain kinase family, member 4 O caMLCK like|myosin light chain kinase family member 4|sugen kinase 85 20121230 -9606 340168 DPPA5 - ESG1 HGNC:19201|MIM:611111|Ensembl:ENSG00000203909|HPRD:18786|Vega:OTTHUMG00000015025 6 6q13 developmental pluripotency associated 5 protein-coding DPPA5 developmental pluripotency associated 5 O developmental pluripotency-associated 5 protein|embryonal stem cell specific gene 1 20121230 -9606 340178 LOC340178 - - - 6 6q27 uncharacterized LOC340178 protein-coding - - - - 20120508 -9606 340184 LOC340184 - - - 6 6p24.1 uncharacterized LOC340184 protein-coding - - - - 20120508 -9606 340192 IQCB2P - IQCB1P1|dJ313I6.1 HGNC:17727 6 6p22.1 IQ motif containing B2 pseudogene pseudo IQCB2P IQ motif containing B2 pseudogene O - 20121230 -9606 340198 IFITM4P - dJ377H14.5 HGNC:21669 6 6p22.1 interferon induced transmembrane protein 4 pseudogene pseudo IFITM4P interferon induced transmembrane protein 4 pseudogene O - 20121230 -9606 340204 CLPSL1 - C6orf127|ESP32|dJ510O8.6 HGNC:21251|Ensembl:ENSG00000204140|HPRD:17356|Vega:OTTHUMG00000014582 6 6p21.31 colipase-like 1 protein-coding CLPSL1 colipase-like 1 O colipase-like protein 1|colipase-like protein C6orf127 20121230 -9606 340205 TREML1 UNQ1825/PRO3438 GLTL1825|PRO3438|TLT-1|TLT1|dJ238O23.3 HGNC:20434|MIM:609714|Ensembl:ENSG00000161911|HPRD:11645|Vega:OTTHUMG00000016231 6 6p21.1 triggering receptor expressed on myeloid cells-like 1 protein-coding TREML1 triggering receptor expressed on myeloid cells-like 1 O trem-like transcript 1 protein|triggering receptor expressed on myeloid cells-like protein 1 20121230 -9606 340206 TREML3P - TLT3|TREML3 HGNC:30806|MIM:609716 6 6p21.1 triggering receptor expressed on myeloid cells-like 3, pseudogene pseudo TREML3P triggering receptor expressed on myeloid cells-like 3, pseudogene O - 20121230 -9606 340217 NANOGP3 - - HGNC:23101 6 6p12.1 Nanog homeobox pseudogene 3 pseudo NANOGP3 Nanog homeobox pseudogene 3 O - 20121230 -9606 340221 TNRC18P3 - TNRC18C HGNC:34015 7 7p11.2 trinucleotide repeat containing 18 pseudogene 3 pseudo TNRC18P3 trinucleotide repeat containing 18 pseudogene 3 O - 20121230 -9606 340239 LOC340239 - - - 7 7q11.21 uncharacterized LOC340239 miscRNA - - - - 20120511 -9606 340252 ZNF680 - - HGNC:26897|Ensembl:ENSG00000173041|HPRD:08296|Vega:OTTHUMG00000156542 7 7q11.21 zinc finger protein 680 protein-coding ZNF680 zinc finger protein 680 O - 20121230 -9606 340260 UNCX tcag7.1272 UNCX4.1 HGNC:33194|Ensembl:ENSG00000164853|Vega:OTTHUMG00000152022 7 7p22.3 UNC homeobox protein-coding UNCX UNC homeobox O Unc4.1 homeobox|homeobox protein Uncx4.1|homeobox protein unc-4 homolog 20121230 -9606 340267 COL28A1 tcag7.1160 COL28 HGNC:22442|MIM:609996|Ensembl:ENSG00000215018|Vega:OTTHUMG00000150034 7 7p21.3 collagen, type XXVIII, alpha 1 protein-coding COL28A1 collagen, type XXVIII, alpha 1 O collagen alpha-1(XXVIII) chain 20121230 -9606 340268 LOC340268 tcag7.893 - - 7 7p21.3 C3 and PZP-like, alpha-2-macroglobulin domain containing 8 pseudogene pseudo - - - - 20121230 -9606 340273 ABCB5 tcag7.1091 ABCB5alpha|ABCB5beta|EST422562 HGNC:46|MIM:611785|Ensembl:ENSG00000004846|Vega:OTTHUMG00000094789 7 7p21.1 ATP-binding cassette, sub-family B (MDR/TAP), member 5 protein-coding ABCB5 ATP-binding cassette, sub-family B (MDR/TAP), member 5 O ABCB5 P-gp|ATP-binding cassette protein|ATP-binding cassette sub-family B member 5|P-glycoprotein ABCB5 20121230 -9606 340274 ASS1P11 - ASSP11 HGNC:761 7 7p15.3 argininosuccinate synthetase 1 pseudogene 11 pseudo ASS1P11 argininosuccinate synthetase 1 pseudogene 11 O - 20121230 -9606 340277 FAM221A - C7orf46 HGNC:27977|Ensembl:ENSG00000188732|HPRD:14706|Vega:OTTHUMG00000128463 7 7p15.3 family with sequence similarity 221, member A protein-coding FAM221A family with sequence similarity 221, member A O protein FAM221A|uncharacterized protein C7orf46 20121230 -9606 340286 FAM183B - - HGNC:34511 7 7p14.1 acyloxyacyl hydrolase (neutrophil) pseudo FAM183B family with sequence similarity 183, member B O - 20121230 -9606 340307 CTAGE6P - CTAGE6 HGNC:28644 7 7q35 CTAGE family, member 6, pseudogene protein-coding CTAGE6P CTAGE family, member 6, pseudogene O protein cTAGE-6|putative protein cTAGE-6 20121230 -9606 340335 LOC340335 - - - 7 7q22.1 uncharacterized LOC340335 protein-coding - - - - 20120508 -9606 340340 LOC340340 tcag7.1188 - - 7 7q22.3 uncharacterized LOC340340 unknown - - - - 20120508 -9606 340348 TSPAN33 - PEN HGNC:28743|MIM:610120|Ensembl:ENSG00000158457|HPRD:14669|Vega:OTTHUMG00000158420 7 7q32.1 tetraspanin 33 protein-coding TSPAN33 tetraspanin 33 O hPen|penumbra|proerythroblast new membrane|tetraspanin-33|tspan-33 20121230 -9606 340351 AGBL3 - - HGNC:27981|Ensembl:ENSG00000146856|HPRD:14175|Vega:OTTHUMG00000155406 7 7q33 ATP/GTP binding protein-like 3 protein-coding AGBL3 ATP/GTP binding protein-like 3 O ATP/GTP-binding protein-like 3|cytosolic carboxypeptidase 3 20121230 -9606 340357 LOC340357 - - - 8 8p23.1 uncharacterized LOC340357 miscRNA - - - - 20121230 -9606 340359 KLHL38 - C8ORFK36 HGNC:34435|Ensembl:ENSG00000175946|Vega:OTTHUMG00000164983 8 8q24.13 kelch-like 38 (Drosophila) protein-coding KLHL38 kelch-like 38 (Drosophila) O kelch-like protein 38 20121230 -9606 340371 NRBP2 PP9320 TRG16|pp9320 HGNC:19339|Ensembl:ENSG00000185189|HPRD:14838|Vega:OTTHUMG00000165157 8 8q24.3 nuclear receptor binding protein 2 protein-coding NRBP2 nuclear receptor binding protein 2 O nuclear receptor-binding protein 2|transformation-related protein 16 20121230 -9606 340385 ZNF517 - - HGNC:27984|Ensembl:ENSG00000197363|HPRD:15815|Vega:OTTHUMG00000165199 8 8q24.3 zinc finger protein 517 protein-coding ZNF517 zinc finger protein 517 O - 20121230 -9606 340390 KIAA1875 - - HGNC:26959|HPRD:11168 8 8q24.3 KIAA1875 miscRNA KIAA1875 KIAA1875 O - 20121230 -9606 340393 TMEM249 - C8ORFK29 HGNC:44155|Ensembl:ENSG00000214597|Vega:OTTHUMG00000165167 8 8q24.3 transmembrane protein 249 protein-coding TMEM249 transmembrane protein 249 O putative transmembrane protein C8orfK29 20121230 -9606 340414 EXTL3-AS1 - C8orf50 HGNC:27985 8 8p21.1 EXTL3 antisense RNA 1 miscRNA EXTL3-AS1 EXTL3 antisense RNA 1 O - 20121021 -9606 340419 RSPO2 UNQ9384/PRO34209 CRISTIN2 HGNC:28583|MIM:610575|Ensembl:ENSG00000147655|HPRD:17536|Vega:OTTHUMG00000164893 8 8q23.1 R-spondin 2 protein-coding RSPO2 R-spondin 2 O R-spondin 2 homolog|R-spondin-2|roof plate-specific spondin-2 20121230 -9606 340441 POTEA - A26A1|CT104.3|POTE-8|POTE8 HGNC:33893|MIM:608915|HPRD:12330 8 8p11.1 POTE ankyrin domain family, member A protein-coding POTEA POTE ankyrin domain family, member A O ANKRD26-like family A member 1|ANKRD26-like family A, member 1|POTE ankyrin domain family member A|cancer/testis antigen family 104, member 3|prostate, ovary, testis-expressed protein on chromosome 8|protein expressed in prostate, ovary, testis, and placenta 8 20121230 -9606 340443 RPS5P5 - RPS5_2_920 HGNC:35626 8 8q21.13 ribosomal protein S5 pseudogene 5 pseudo RPS5P5 ribosomal protein S5 pseudogene 5 O - 20121230 -9606 340451 CPP - - HGNC:2322 8 8q21.3 ceruloplasmin (ferroxidase) pseudogene pseudo CPP ceruloplasmin (ferroxidase) pseudogene O - 20121230 -9606 340460 KRT18P24 - - HGNC:33393 9 9q21.31 keratin 18 pseudogene 24 pseudo KRT18P24 keratin 18 pseudogene 24 O - 20121230 -9606 340481 ZDHHC21 - 9130404H11Rik|DHHC-21|DHHC21|DNZ1|HSPC097 HGNC:20750|MIM:614605|Ensembl:ENSG00000175893|HPRD:15716|Vega:OTTHUMG00000019573 9 9p22.3 zinc finger, DHHC-type containing 21 protein-coding ZDHHC21 zinc finger, DHHC-type containing 21 O palmitoyltransferase ZDHHC21|probable palmitoyltransferase ZDHHC21|zinc finger DHHC domain-containing protein 21|zinc finger, DHHC domain containing 21 20121230 -9606 340485 ACER2 RP11-363E7.1 ALKCDase2|ASAH3L HGNC:23675|MIM:613492|Ensembl:ENSG00000177076|HPRD:16512|Vega:OTTHUMG00000019644 9 9p22.1 alkaline ceramidase 2 protein-coding ACER2 alkaline ceramidase 2 O alkCDase 2|alkaline CDase 2|ceramide hydrolase|haCER2 20121230 -9606 340499 IMPDH1P1 - bA537H15.4 HGNC:19912 9 9p13.3 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 1 pseudo IMPDH1P1 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 1 O - 20121230 -9606 340501 TCEA1P3 - - HGNC:30569 9 9p13.1 transcription elongation factor A (SII), 1 pseudogene 3 pseudo TCEA1P3 transcription elongation factor A (SII), 1 pseudogene 3 O - 20121230 -9606 340508 LOC340508 - - - 9 9q22.33 growth arrest-specific 2 like 1 pseudogene pseudo - - - - 20121230 -9606 340512 LOC340512 - - - 9 9q31.3 uncharacterized LOC340512 miscRNA - - - - 20120622 -9606 340515 LOC340515 - - - 9 9q22.2 uncharacterized LOC340515 miscRNA - - - - 20121230 -9606 340526 RGAG4 RP11-262D11.3 6430402L03Rik|MAR5|MART5 HGNC:29430|Ensembl:ENSG00000242732|HPRD:18594|Vega:OTTHUMG00000021808 X Xq13.1 retrotransposon gag domain containing 4 protein-coding RGAG4 retrotransposon gag domain containing 4 O retrotransposon gag domain-containing protein 4 20121230 -9606 340527 NHSL2 RP11-262D11.5 - HGNC:33737|Ensembl:ENSG00000204131|HPRD:15001 X Xq13.1 NHS-like 2 protein-coding NHSL2 NHS-like 2 O NHS-like protein 2 20121230 -9606 340529 PABPC1L2A RP11-493K23.3 RBM32A HGNC:27989|Ensembl:ENSG00000186288|HPRD:15178|Vega:OTTHUMG00000021824 X Xq13.2 poly(A) binding protein, cytoplasmic 1-like 2A protein-coding PABPC1L2A poly(A) binding protein, cytoplasmic 1-like 2A O RNA binding motif protein 32A|RNA-binding motif protein 32|RNA-binding protein 32|polyadenylate-binding protein 1-like 2 20121230 -9606 340533 KIAA2022 RP11-130N24.1 - HGNC:29433|MIM:300524|Ensembl:ENSG00000050030|HPRD:15957|Vega:OTTHUMG00000021860 X Xq13.3 KIAA2022 protein-coding KIAA2022 KIAA2022 O uncharacterized protein KIAA2022 20121230 -9606 340542 BEX5 GHc-351F8.1 NGFRAP1L1 HGNC:27990|MIM:300693|Ensembl:ENSG00000184515|HPRD:18484|Vega:OTTHUMG00000022049 X Xq22.1 brain expressed, X-linked 5 protein-coding BEX5 brain expressed, X-linked 5 O BEX family member 5|NGFRAP1-like 1|NGFRAP1-like protein 1|brain-expressed X-linked protein 5|nerve growth factor receptor-associated protein 2|protein BEX5 20121230 -9606 340543 TCEAL5 LL0XNC01-177E8.1 - HGNC:22282|Ensembl:ENSG00000204065|HPRD:18502|Vega:OTTHUMG00000022092 X Xq22.1 transcription elongation factor A (SII)-like 5 protein-coding TCEAL5 transcription elongation factor A (SII)-like 5 O TCEA-like protein 5|transcription elongation factor A protein-like 5|transcription elongation factor S-II protein-like 5 20121230 -9606 340544 MORF4L2-AS1 - - HGNC:27991 X Xq22.2 MORF4L2 antisense RNA 1 miscRNA MORF4L2-AS1 MORF4L2 antisense RNA 1 O - 20121230 -9606 340547 VSIG1 RP5-889N15.1 1700062D20Rik|GPA34|dJ889N15.1 HGNC:28675|MIM:300620|Ensembl:ENSG00000101842|HPRD:06655|Vega:OTTHUMG00000022175 X Xq22.3 V-set and immunoglobulin domain containing 1 protein-coding VSIG1 V-set and immunoglobulin domain containing 1 O V-set and immunoglobulin domain-containing protein 1|cell surface A33 antigen|glycoprotein A34 20121230 -9606 340554 ZC3H12B RP3-475B7.1 CXorf32|MCPIP2 HGNC:17407|MIM:300889|Ensembl:ENSG00000102053|HPRD:16774|Vega:OTTHUMG00000021719 X Xq12 zinc finger CCCH-type containing 12B protein-coding ZC3H12B zinc finger CCCH-type containing 12B O MCP-induced protein 2|probable ribonuclease ZC3H12B|zinc finger CCCH domain-containing protein 12B 20121230 -9606 340562 SATL1 RP3-388N15.1 - HGNC:27992|Ensembl:ENSG00000184788|HPRD:18497|Vega:OTTHUMG00000021931 X Xq21.1 spermidine/spermine N1-acetyl transferase-like 1 protein-coding SATL1 spermidine/spermine N1-acetyl transferase-like 1 O spermidine/spermine N(1)-acetyltransferase-like protein 1 20121230 -9606 340569 LOC340569 - - - X Xp21.3 origin recognition complex, subunit 1 pseudogene pseudo - - - - 20121230 -9606 340571 SIAH1P1 RP11-69O16.1 SIAH1L HGNC:30966 X Xp21.1 siah E3 ubiquitin protein ligase 1 pseudogene 1 pseudo SIAH1P1 siah E3 ubiquitin protein ligase 1 pseudogene 1 O - 20121230 -9606 340578 DCAF12L2 RP11-13E5.1 WDR40C HGNC:32950|Ensembl:ENSG00000198354|HPRD:15323|Vega:OTTHUMG00000022348 X Xq25 DDB1 and CUL4 associated factor 12-like 2 protein-coding DCAF12L2 DDB1 and CUL4 associated factor 12-like 2 O DDB1- and CUL4-associated factor 12-like protein 2|WD repeat-containing protein 40C 20121230 -9606 340581 LOC340581 - - - X Xq26.3 uncharacterized LOC340581 unknown - - - - 20120508 -9606 340591 CA5BP1 - CA5BL|CA5BP|PRO2325 HGNC:29544 X Xp22.2 carbonic anhydrase VB pseudogene 1 pseudo CA5BP1 carbonic anhydrase VB pseudogene 1 O - 20121230 -9606 340595 ZCCHC16 - Mar4|Mart4 HGNC:25214|HPRD:17003 X Xq23 zinc finger, CCHC domain containing 16 protein-coding ZCCHC16 zinc finger, CCHC domain containing 16 O mammalian retrotransposon-derived protein 4|zinc finger CCHC domain-containing protein 16 20121230 -9606 340596 LHFPL1 UNQ5824/PRO19643 - HGNC:6587|MIM:300566|Ensembl:ENSG00000182508|HPRD:06610|Vega:OTTHUMG00000022214 X Xq23 lipoma HMGIC fusion partner-like 1 protein-coding LHFPL1 lipoma HMGIC fusion partner-like 1 O LHFP-like protein 1|lipoma HMGIC fusion partner-like 1 protein 20121230 -9606 340598 KRT18P48 - - HGNC:33418 X Xq28 keratin 18 pseudogene 48 pseudo KRT18P48 keratin 18 pseudogene 48 O - 20121230 -9606 340600 ATF4P2 - - HGNC:34025 X Xq28 activating transcription factor 4 pseudogene 2 pseudo ATF4P2 activating transcription factor 4 pseudogene 2 O - 20121230 -9606 340602 CXorf67 - - HGNC:33738|HPRD:14176 X Xp11.22 chromosome X open reading frame 67 unknown CXorf67 chromosome X open reading frame 67 O - 20121230 -9606 340618 FAM41AY1 - FAM41AY HGNC:23955 Y Yq11.221 family with sequence similarity 41, member A, Y-linked 1 miscRNA FAM41AY1 family with sequence similarity 41, member A, Y-linked 1 O - 20121209 -9606 340654 LIPM RP11-304I5.1 LIPL3|bA304I5.1 HGNC:23455|MIM:613923|Ensembl:ENSG00000173239|Vega:OTTHUMG00000018698 10 10q23.31 lipase, family member M protein-coding LIPM lipase, family member M O lipase M|lipase member M|lipase-like abhydrolase domain-containing protein 3|lipase-like, ab-hydrolase domain containing 3 20121230 -9606 340665 CYP26C1 - - HGNC:20577|MIM:608428|Ensembl:ENSG00000187553|HPRD:12230|Vega:OTTHUMG00000018766 10 10q23.33 cytochrome P450, family 26, subfamily C, polypeptide 1 protein-coding CYP26C1 cytochrome P450, family 26, subfamily C, polypeptide 1 O cytochrome P450 26C1 20121230 -9606 340706 VWA2 - AMACO|CCSP-2|NET42 HGNC:24709|Ensembl:ENSG00000165816|HPRD:16481|Vega:OTTHUMG00000019082 10 10q25.3 von Willebrand factor A domain containing 2 protein-coding VWA2 von Willebrand factor A domain containing 2 O A-domain containing protein similar to matrilin and collagen|a domain-containing protein similar to matrilin and collagen|colon cancer diagnostic marker|colon cancer secreted protein 2|colon cancer secreted protein-2|von Willebrand factor A domain-containing protein 2 20121230 -9606 340719 NANOS1 RP11-498J9.3 NOS1 HGNC:23044|MIM:608226|Ensembl:ENSG00000188613|HPRD:16302|Vega:OTTHUMG00000019141 10 10q26.11 nanos homolog 1 (Drosophila) protein-coding NANOS1 nanos homolog 1 (Drosophila) O EC_Rep1a|NOS-1|nanos homolog 1 20121230 -9606 340745 LRIT2 - LRRC22 HGNC:23443|Ensembl:ENSG00000204033|HPRD:18595|Vega:OTTHUMG00000018633 10 10q23.1 leucine-rich repeat, immunoglobulin-like and transmembrane domains 2 protein-coding LRIT2 leucine-rich repeat, immunoglobulin-like and transmembrane domains 2 O leucine rich repeat containing 22|leucine-rich repeat, immunoglobulin-like domain and transmembrane domain-containing protein 2|leucine-rich repeat-containing protein 22 20121230 -9606 340749 RPL7AP8 - RPL7A_24_1075|bA141D8.1 HGNC:23738 10 10q23.2 ribosomal protein L7a pseudogene 8 pseudo RPL7AP8 ribosomal protein L7a pseudogene 8 O - 20121230 -9606 340780 IMPDH1P5 - - HGNC:33960 10 10q22.3 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 5 pseudo IMPDH1P5 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 5 O - 20121230 -9606 340784 HMX3 - NKX-5.1|NKX5.1|Nkx5-1 HGNC:5019|MIM:613380|Ensembl:ENSG00000188620|Vega:OTTHUMG00000019199 10 10q26.13 H6 family homeobox 3 protein-coding HMX3 H6 family homeobox 3 O homeo box (H6 family) 3|homeobox (H6 family) 3|homeobox protein H6 family member 3|homeobox protein HMX3|homeobox protein Nkx-5.1 20121230 -9606 340811 AKR1CL1 - - HGNC:23469|HPRD:16480 10 10p15.1 aldo-keto reductase family 1, member C-like 1 pseudo AKR1CL1 aldo-keto reductase family 1, member C-like 1 O - 20121230 -9606 340844 LOC340844 - - - 10 10q11.22 adenosylhomocysteinase pseudogene pseudo - - - - 20121230 -9606 340888 LOC340888 - - - 10 10q21.3 aldo-keto reductase family 1, member B10 (aldose reductase) pseudogene pseudo - - - - 20121230 -9606 340895 C10orf112 - bA265G8.2 HGNC:24331 10 10p12.31 chromosome 10 open reading frame 112 protein-coding C10orf112 chromosome 10 open reading frame 112 O MAM and LDL-receptor class A domain-containing protein C10orf112|MAM and LDL-receptor class A domain-containing protein C10orf112-like|novel MAM domain containing protein 20121230 -9606 340900 EBLN1 - EBLN-1 HGNC:39430|MIM:613249 10 10p12.31 endogenous Bornavirus-like nucleoprotein 1 protein-coding EBLN1 endogenous Bornavirus-like nucleoprotein 1 O endogenous Borna-like N element 1|endogenous Borna-like N element-1|endogenous Borna-like N element-containing protein 1 20121230 -9606 340947 EIF3LP3 - - HGNC:44976 10 10p11.1 eukaryotic translation initiation factor 3, subunit L pseudogene 3 pseudo EIF3LP3 eukaryotic translation initiation factor 3, subunit L pseudogene 3 O - 20121230 -9606 340970 TRIM53CP - - HGNC:43979 11 11p11.12 tripartite motif containing 53C, pseudogene pseudo TRIM53CP tripartite motif containing 53C, pseudogene O - 20121230 -9606 340980 OR52B6 - OR11-47 HGNC:15211|Ensembl:ENSG00000187747|HPRD:17743|Vega:OTTHUMG00000066906 11 11p15.4 olfactory receptor, family 52, subfamily B, member 6 protein-coding OR52B6 olfactory receptor, family 52, subfamily B, member 6 O olfactory receptor 52B6|olfactory receptor OR11-47 20121230 -9606 340990 OTOG - DFNB18B|OTGN|mlemp HGNC:8516|MIM:604487|Ensembl:ENSG00000188162|Vega:OTTHUMG00000149905 11 11p15.1 otogelin protein-coding OTOG otogelin O - 20121230 -9606 341019 DCDC1 RP4-535H23.2 - HGNC:20625|MIM:608062|Ensembl:ENSG00000188682|HPRD:12158|Vega:OTTHUMG00000150144 11 11p13 doublecortin domain containing 1 protein-coding DCDC1 doublecortin domain containing 1 O doublecortin domain-containing protein 1 20121230 -9606 341032 C11orf53 - - HGNC:30527|Ensembl:ENSG00000150750|HPRD:14663|Vega:OTTHUMG00000166656 11 11q23.1 chromosome 11 open reading frame 53 protein-coding C11orf53 chromosome 11 open reading frame 53 O uncharacterized protein C11orf53 20121230 -9606 341056 LOC341056 - - - 11 11q24.1 SUMO1 activating enzyme subunit 1 pseudogene pseudo - - - - 20121230 -9606 341112 LOC341112 - - - 11 11q12.1 tryptophanyl-tRNA synthetase, cytoplasmic-like protein-coding - - - - 20120818 -9606 341116 MS4A10 - CD20L7|MS4A9 HGNC:13368|MIM:608403|Ensembl:ENSG00000172689|HPRD:16330|Vega:OTTHUMG00000167689 11 11q12.2 membrane-spanning 4-domains, subfamily A, member 10 protein-coding MS4A10 membrane-spanning 4-domains, subfamily A, member 10 O CD20 antigen-like 7|membrane-spanning 4-domains subfamily A member 10 20121230 -9606 341128 OR7E1P - - HGNC:8391 11 11q13.2 olfactory receptor, family 7, subfamily E, member 1 pseudogene pseudo OR7E1P olfactory receptor, family 7, subfamily E, member 1 pseudogene O - 20121230 -9606 341148 CYCSP27 - HCP27 HGNC:24401 11 11q13.4 cytochrome c, somatic pseudogene 27 pseudo CYCSP27 cytochrome c, somatic pseudogene 27 O - 20121230 -9606 341152 OR2AT4 - OR11-265 HGNC:19620|Ensembl:ENSG00000171561|HPRD:17694|Vega:OTTHUMG00000165370 11 11q13.4 olfactory receptor, family 2, subfamily AT, member 4 protein-coding OR2AT4 olfactory receptor, family 2, subfamily AT, member 4 O olfactory receptor 2AT4|olfactory receptor OR11-265 pseudogene 20121230 -9606 341208 HEPHL1 - - HGNC:30477|Ensembl:ENSG00000181333|Vega:OTTHUMG00000167751 11 11q21 hephaestin-like 1 protein-coding HEPHL1 hephaestin-like 1 O hephaestin-like protein 1 20121230 -9606 341230 ASS1P13 - ASSP13 HGNC:763 11 11q22.3 argininosuccinate synthetase 1 pseudogene 13 pseudo ASS1P13 argininosuccinate synthetase 1 pseudogene 13 O - 20121230 -9606 341276 OR10A2 - OR10A2P|OR11-82|OR11-86|OST363 HGNC:8161|Ensembl:ENSG00000170790|HPRD:17663|Vega:OTTHUMG00000165739 11 11p15.4 olfactory receptor, family 10, subfamily A, member 2 protein-coding OR10A2 olfactory receptor, family 10, subfamily A, member 2 O hP4 olfactory receptor|olfactory receptor 10A2|olfactory receptor OR11-82 pseudogene|olfactory receptor OR11-86|olfactory receptor, family 10, subfamily A, member 2 pseudogene 20121230 -9606 341277 OVCH2 - OVTN HGNC:29970|Ensembl:ENSG00000183378|HPRD:07139|Vega:OTTHUMG00000165418 11 11p15.4 ovochymase 2 (gene/pseudogene) protein-coding OVCH2 ovochymase 2 (gene/pseudogene) O oviductin protease|ovochymase-2 20121230 -9606 341315 PABPC1P4 - PABPCP5|PABPL2 HGNC:8563|MIM:604681 12 12q14.2 poly(A) binding protein, cytoplasmic 1 pseudogene 4 pseudo PABPC1P4 poly(A) binding protein, cytoplasmic 1 pseudogene 4 O - 20121230 -9606 341333 LOC341333 - - - 12 12q15 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 341346 C12orf70 - - HGNC:34448|Ensembl:ENSG00000165935|Vega:OTTHUMG00000169205 12 12p11.23 chromosome 12 open reading frame 70 protein-coding C12orf70 chromosome 12 open reading frame 70 O uncharacterized protein C12orf70 20121230 -9606 341350 OVCH1 - OVCH HGNC:23080|Ensembl:ENSG00000187950|HPRD:07138|Vega:OTTHUMG00000167741 12 12p11.22 ovochymase 1 protein-coding OVCH1 ovochymase 1 O ovochymase-1 20121230 -9606 341356 RPL31P50 hCG_1644239 RPL31_16_1224 HGNC:36799 12 12p11.21 ribosomal protein L31 pseudogene 50 pseudo RPL31P50 ribosomal protein L31 pseudogene 50 O - 20121230 -9606 341359 SYT10 - - HGNC:19266|Ensembl:ENSG00000110975|HPRD:15460|Vega:OTTHUMG00000169269 12 12p11.1 synaptotagmin X protein-coding SYT10 synaptotagmin X O synaptotagmin 10|synaptotagmin-10|sytX 20121230 -9606 341378 LOC341378 - - - 12 12q23.3 thyroid hormone receptor interactor 11 pseudogene pseudo - - - - 20121230 -9606 341392 ACSM4 - - HGNC:32016|MIM:614360|Ensembl:ENSG00000215009|Vega:OTTHUMG00000154975 12 12p13.31 acyl-CoA synthetase medium-chain family member 4 protein-coding ACSM4 acyl-CoA synthetase medium-chain family member 4 O acyl-coenzyme A synthetase ACSM4, mitochondrial 20121230 -9606 341405 ANKRD33 - C12orf7|PANKY HGNC:13788|Ensembl:ENSG00000167612|HPRD:12465|Vega:OTTHUMG00000169506 12 12q13.13 ankyrin repeat domain 33 protein-coding ANKRD33 ankyrin repeat domain 33 O ankyrin repeat domain-containing protein 33 20121230 -9606 341416 OR6C2 - OR6C67 HGNC:15436|Ensembl:ENSG00000179695|HPRD:17773|Vega:OTTHUMG00000169957 12 12q13.2 olfactory receptor, family 6, subfamily C, member 2 protein-coding OR6C2 olfactory receptor, family 6, subfamily C, member 2 O HSA3|olfactory receptor 6C2 20121230 -9606 341418 OR6C4 - OR12-10 HGNC:19632|Ensembl:ENSG00000179626|HPRD:17774|Vega:OTTHUMG00000169959 12 12q13.2 olfactory receptor, family 6, subfamily C, member 4 protein-coding OR6C4 olfactory receptor, family 6, subfamily C, member 4 O olfactory receptor 6C4|olfactory receptor OR12-10 20121230 -9606 341457 PPIAP8 - PPIP8 HGNC:9271 12 12q23.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene 8 pseudo PPIAP8 peptidylprolyl isomerase A (cyclophilin A) pseudogene 8 O - 20121230 -9606 341469 MRPS7P2 - - HGNC:29784 12 12p13.1 mitochondrial ribosomal protein S7 pseudogene 2 pseudo MRPS7P2 mitochondrial ribosomal protein S7 pseudogene 2 O - 20121230 -9606 341511 RPL23AP14 hCG_1642354 RPL23A_29_1192 HGNC:21007 12 12p13.33 ribosomal protein L23a pseudogene 14 pseudo RPL23AP14 ribosomal protein L23a pseudogene 14 O - 20121230 -9606 341567 H1FNT - H1T2 HGNC:24893|Ensembl:ENSG00000187166|HPRD:17084|Vega:OTTHUMG00000169904 12 12q13.11 H1 histone family, member N, testis-specific protein-coding H1FNT H1 histone family, member N, testis-specific O HANP1|haploid germ cell-specific nuclear protein 1|histone H1t2|testis-specific H1 histone 20121230 -9606 341568 OR8S1 - - HGNC:19628|Ensembl:ENSG00000197376|HPRD:15087|Vega:OTTHUMG00000170021 12 12q13.11 olfactory receptor, family 8, subfamily S, member 1 protein-coding OR8S1 olfactory receptor, family 8, subfamily S, member 1 O olfactory receptor 8S1 20121230 -9606 341604 RPL35P7 - RPL35_2_1335 HGNC:35740 13 13q33.3 ribosomal protein L35 pseudogene 7 pseudo RPL35P7 ribosomal protein L35 pseudogene 7 O - 20121230 -9606 341640 FREM2 - - HGNC:25396|MIM:608945|Ensembl:ENSG00000150893|HPRD:10602|Vega:OTTHUMG00000016759 13 13q13.3 FRAS1 related extracellular matrix protein 2 protein-coding FREM2 FRAS1 related extracellular matrix protein 2 O ECM3 homolog|FRAS1-related extracellular matrix protein 2 20121230 -9606 341674 RPL5P31 - - HGNC:42036 13 13q14.3 ribosomal protein L5 pseudogene 31 pseudo RPL5P31 ribosomal protein L5 pseudogene 31 O - 20121230 -9606 341676 NEK5 - - HGNC:7748|Ensembl:ENSG00000197168|Vega:OTTHUMG00000016957 13 13q14.3 NIMA-related kinase 5 protein-coding NEK5 NIMA-related kinase 5 O NIMA (never in mitosis gene a)-related kinase 5|never in mitosis A-related kinase 5|nimA-related protein kinase 5|serine/threonine-protein kinase Nek5 20121230 -9606 341689 CTAGE16P - - HGNC:41967 13 13q21.1 CTAGE family, member 16, pseudogene pseudo CTAGE16P CTAGE family, member 16, pseudogene O - 20121230 -9606 341757 MRPS31P2 - - HGNC:39252 13 13q12.11 mitochondrial ribosomal protein S31 pseudogene 2 pseudo MRPS31P2 mitochondrial ribosomal protein S31 pseudogene 2 O - 20121230 -9606 341784 EIF4A1P7 - - HGNC:37926 13 13q12.3 eukaryotic translation initiation factor 4A1 pseudogene 7 pseudo EIF4A1P7 eukaryotic translation initiation factor 4A1 pseudogene 7 O - 20121230 -9606 341799 OR6S1 - OR14-37|OR6S1Q HGNC:15363|Ensembl:ENSG00000181803|HPRD:17779|Vega:OTTHUMG00000171010 14 14q11.2 olfactory receptor, family 6, subfamily S, member 1 protein-coding OR6S1 olfactory receptor, family 6, subfamily S, member 1 O olfactory receptor 6S1|olfactory receptor OR14-37 20121230 -9606 341880 SLC35F4 - C14orf36|c14_5373 HGNC:19845|Ensembl:ENSG00000151812|Vega:OTTHUMG00000171317 14 14q22.2 solute carrier family 35, member F4 protein-coding SLC35F4 solute carrier family 35, member F4 O solute carrier family 35 member F4 20121230 -9606 341883 LRRC9 - - HGNC:19848|HPRD:13525 14 14q23.1 leucine rich repeat containing 9 miscRNA LRRC9 leucine rich repeat containing 9 O - 20121230 -9606 341947 COX8C - COX8-3 HGNC:24382|Ensembl:ENSG00000187581|HPRD:13090|Vega:OTTHUMG00000171279 14 14q32.12 cytochrome c oxidase subunit VIIIC protein-coding COX8C cytochrome c oxidase subunit VIIIC O COX VIII-3|cytochrome c oxidase polypeptide 8|cytochrome c oxidase polypeptide VIII|cytochrome c oxidase subunit 8-3|cytochrome c oxidase subunit 8C, mitochondrial|cytochrome c oxidase subunit VIII 20121230 -9606 341965 VDAC3P1 - VDAC3P HGNC:20722 14 14q32.2 voltage-dependent anion channel 3 pseudogene 1 pseudo VDAC3P1 voltage-dependent anion channel 3 pseudogene 1 O - 20121230 -9606 342035 GLDN UNQ9339/PRO34011 CLOM|COLM|CRG-L2|CRGL2|UNC-112 HGNC:29514|MIM:608603|Ensembl:ENSG00000186417|HPRD:12267|Vega:OTTHUMG00000131746 15 15q21.2 gliomedin protein-coding GLDN gliomedin O collomin|colmedin 20121230 -9606 342096 GOLGA6A - GLP|GOLGA6 HGNC:13567|MIM:610288|Ensembl:ENSG00000159289|Vega:OTTHUMG00000173035 15 15q24.1 golgin A6 family, member A protein-coding GOLGA6A golgin A6 family, member A O Golgin linked to PML|Golgin subfamily A member 6A|golgi autoantigen, golgin subfamily a, 6|golgi autoantigen, golgin subfamily a, 6A|golgi autoantigen, golgin subfamily a, member 6|golgin-like protein 20121230 -9606 342125 TMC3 - - HGNC:22995|Ensembl:ENSG00000188869|Vega:OTTHUMG00000172314 15 15q25.1 transmembrane channel-like 3 protein-coding TMC3 transmembrane channel-like 3 O transmembrane channel-like protein 3 20121230 -9606 342132 ZNF774 - - HGNC:33108|Ensembl:ENSG00000196391|HPRD:17571|Vega:OTTHUMG00000172359 15 15q26.1 zinc finger protein 774 protein-coding ZNF774 zinc finger protein 774 O - 20121230 -9606 342184 FMN1 - FMN|LD HGNC:3768|MIM:136535|Ensembl:ENSG00000248905|HPRD:07031|Vega:OTTHUMG00000172201 15 15q13.3 formin 1 protein-coding FMN1 formin 1 O formin (limb deformity)|formin-1|limb deformity protein homolog 20121230 -9606 342293 LOC342293 - - - 16 16p12.2 ATP-binding cassette, sub-family A (ABC1), member 3 pseudogene pseudo - - - - 20121230 -9606 342346 C16orf96 - - HGNC:40031|Ensembl:ENSG00000205832|Vega:OTTHUMG00000176519 16 16p13.3 chromosome 16 open reading frame 96 protein-coding C16orf96 chromosome 16 open reading frame 96 O putative uncharacterized protein C16orf96 20121230 -9606 342357 ZKSCAN2 - ZNF694|ZSCAN31 HGNC:25677|Ensembl:ENSG00000155592|HPRD:11268|Vega:OTTHUMG00000177180 16 16p12.1 zinc finger with KRAB and SCAN domains 2 protein-coding ZKSCAN2 zinc finger with KRAB and SCAN domains 2 O zinc finger and SCAN domain containing 31|zinc finger protein 694|zinc finger protein with KRAB and SCAN domains 2 20121230 -9606 342358 CYCSP39 - HC1|HCP39 HGNC:24412 16 16p12.1 cytochrome c, somatic pseudogene 39 pseudo CYCSP39 cytochrome c, somatic pseudogene 39 O - 20121230 -9606 342371 ATXN1L hCG_1646491 BOAT|BOAT1 HGNC:33279|MIM:614301|Ensembl:ENSG00000224470|Vega:OTTHUMG00000176872 16 16q22.2 ataxin 1-like protein-coding ATXN1L ataxin 1-like O ataxin-1-like|brother of ATXN1|brother of ataxin-1 20121230 -9606 342372 PKD1L3 - - HGNC:21716|MIM:607895|HPRD:07436 16 16q22.2 polycystic kidney disease 1-like 3 protein-coding PKD1L3 polycystic kidney disease 1-like 3 O PC1-like 3 protein|polycystic kidney disease protein 1-like 3|polycystin-1L3 20121230 -9606 342374 KRT18P18 - - HGNC:33386 16 16q22.2 keratin 18 pseudogene 18 pseudo KRT18P18 keratin 18 pseudogene 18 O - 20121230 -9606 342419 KRT8P22 - - HGNC:33374 16 16q23.1 keratin 8 pseudogene 22 pseudo KRT8P22 keratin 8 pseudogene 22 O - 20121230 -9606 342426 ZNF720P1 - - HGNC:34505 16 16p11.2 zinc finger protein 720 pseudogene 1 pseudo ZNF720P1 zinc finger protein 720 pseudogene 1 O - 20121230 -9606 342443 LOC342443 - - - 16 16p11.2 ADAM metallopeptidase domain 21 pseudogene pseudo - - - - 20121230 -9606 342510 CD300E - CD300LE|CLM-2|CLM2|CMRF35-A5|IREM-2|IREM2|PIgR-2|PIgR2 HGNC:28874|MIM:609801|Ensembl:ENSG00000186407|HPRD:17158|Vega:OTTHUMG00000067605 17 17q25.1 CD300e molecule protein-coding CD300E CD300e molecule O CD300 antigen like family member E|CD300 antigen-like family member E|CD300e antigen|CMRF35-like molecule 2|immune receptor expressed on myeloid cells 2|poly-Ig receptor 2|polymeric immunoglobulin receptor 2 20121230 -9606 342527 SMTNL2 - - HGNC:24764|Ensembl:ENSG00000188176|HPRD:13463|Vega:OTTHUMG00000132938 17 17p13.2 smoothelin-like 2 protein-coding SMTNL2 smoothelin-like 2 O smoothelin-like protein 2 20121230 -9606 342538 NACA2 - ANAC|NACAL HGNC:23290|MIM:609274|Ensembl:ENSG00000253506|HPRD:16487|Vega:OTTHUMG00000132321 17 17q23.2 nascent polypeptide-associated complex alpha subunit 2 protein-coding NACA2 nascent polypeptide-associated complex alpha subunit 2 O IgE autoantigen alpha-nascent polypeptide-associated complex|alpha-NAC protein|hom s 2.01 protein|nascent polypeptide-associated complex subunit alpha-2|nascent polypeptide-associated complex, alpha polypeptide, 2 20121230 -9606 342541 LOC342541 - - - 17 17q23.3 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 342574 KRT27 - KRT25C HGNC:30841|Ensembl:ENSG00000171446|HPRD:17244|Vega:OTTHUMG00000133371 17 17q21.2 keratin 27 protein-coding KRT27 keratin 27 O CK-27|K25C|K27|cytokeratin-27|keratin 25C|keratin, type I cytoskeletal 27|keratin-25C|keratin-27|type I inner root sheath specific keratin 25 irs3|type I inner root sheath-specific keratin-K25irs3 20121230 -9606 342618 SLFN14 - - HGNC:32689|MIM:614958|Ensembl:ENSG00000236320|Vega:OTTHUMG00000179912 17 17q12 schlafen family member 14 protein-coding SLFN14 schlafen family member 14 O - 20121230 -9606 342666 LRRC37A11P - - HGNC:43815|HPRD:13478 17 17q12 leucine rich repeat containing 37, member A11, pseudogene pseudo LRRC37A11P leucine rich repeat containing 37, member A11, pseudogene O - 20121230 -9606 342667 STAC2 - 24b2|24b2/STAC2 HGNC:23990|Ensembl:ENSG00000141750|HPRD:18113|Vega:OTTHUMG00000179039 17 17q12 SH3 and cysteine rich domain 2 protein-coding STAC2 SH3 and cysteine rich domain 2 O SH3 and cysteine-rich domain-containing protein 2|SRC homology 3 and cysteine-rich domain-containing protein 2 20121230 -9606 342705 PGDP1 - PGDL1 HGNC:8892 18 18q12.1 phosphogluconate dehydrogenase pseudogene 1 pseudo PGDP1 phosphogluconate dehydrogenase pseudogene 1 O - 20121230 -9606 342732 KRT8P5 - - HGNC:31094 18 18q12.3 keratin 8 pseudogene 5 pseudo KRT8P5 keratin 8 pseudogene 5 O - 20121230 -9606 342776 MRPS17P7 - MRPS17P4|MRPS17P8 HGNC:29735 18 18q21.31 mitochondrial ribosomal protein S17 pseudogene 7 pseudo MRPS17P7 mitochondrial ribosomal protein S17 pseudogene 7 O - 20121230 -9606 342784 LOC342784 - - - 18 18q21.32 general transcription factor IIH, polypeptide 1, 62kDa pseudogene pseudo - - - - 20121230 -9606 342808 RPS2P6 - RPS2_22_1612 HGNC:25485 18 18q22.2 ribosomal protein S2 pseudogene 6 pseudo RPS2P6 ribosomal protein S2 pseudogene 6 O - 20121230 -9606 342850 ANKRD62 - DKFZp779B1634 HGNC:35241|Ensembl:ENSG00000181626|Vega:OTTHUMG00000180673 18 18p11.21 ankyrin repeat domain 62 protein-coding ANKRD62 ankyrin repeat domain 62 O ankyrin repeat domain-containing protein 62 20121230 -9606 342865 VSTM2B - - HGNC:33595|Ensembl:ENSG00000187135|Vega:OTTHUMG00000182002 19 19q12 V-set and transmembrane domain containing 2B protein-coding VSTM2B V-set and transmembrane domain containing 2B O V-set and transmembrane domain-containing protein 2B 20121230 -9606 342892 ZNF850 - ZNF850P HGNC:27994|Ensembl:ENSG00000267041|Vega:OTTHUMG00000180899 19 19q13.12 zinc finger protein 850 protein-coding ZNF850 zinc finger protein 850 O putative zinc finger protein ENSP00000330994 20121230 -9606 342897 NCCRP1 - FBXO50|NCCRP-1 HGNC:33739|Ensembl:ENSG00000188505|HPRD:17357 19 19q13.2 non-specific cytotoxic cell receptor protein 1 homolog (zebrafish) protein-coding NCCRP1 non-specific cytotoxic cell receptor protein 1 homolog (zebrafish) O non-specific cytotoxic cell receptor protein 1 homolog|nonspecific cytotoxic cell receptor protein 1 homolog 20121230 -9606 342898 SYCN - INSSA1|SYL HGNC:18442|Ensembl:ENSG00000179751 19 19q13.2 syncollin protein-coding SYCN syncollin O insulin synthesis associated 1|insulin synthesis-associated protein 1 20121230 -9606 342900 LEUTX hCG_1657112 - HGNC:31953|Ensembl:ENSG00000213921 19 19q13.2 leucine twenty homeobox protein-coding LEUTX leucine twenty homeobox O arginine-fifty homeobox-like pseudogene|leucine-twenty homeobox|putative leucine-twenty homeobox 20121230 -9606 342908 ZNF404 - - HGNC:19417|Ensembl:ENSG00000176222|HPRD:18787|Vega:OTTHUMG00000182206 19 19q13.31 zinc finger protein 404 protein-coding ZNF404 zinc finger protein 404 O - 20121230 -9606 342909 ZNF284 - ZNF284L HGNC:13078|Ensembl:ENSG00000186026|Vega:OTTHUMG00000182312 19 19q13.31 zinc finger protein 284 protein-coding ZNF284 zinc finger protein 284 O - 20121230 -9606 342918 C19orf81 - - HGNC:40041|Ensembl:ENSG00000235034|Vega:OTTHUMG00000154593 19 19q13.33 chromosome 19 open reading frame 81 protein-coding C19orf81 chromosome 19 open reading frame 81 O putative uncharacterized protein C19orf81 20121230 -9606 342926 ZNF677 - - HGNC:28730|Ensembl:ENSG00000197928|HPRD:14658 19 19q13.42 zinc finger protein 677 protein-coding ZNF677 zinc finger protein 677 O hypothetical protein MGC48625 20121230 -9606 342931 RFPL4A - RFPL4|RNF210 HGNC:16449|MIM:612601|Ensembl:ENSG00000223638|Vega:OTTHUMG00000165449 19 19q13.42 ret finger protein-like 4A protein-coding RFPL4A ret finger protein-like 4A O RING finger protein 210|ret finger protein-like 4 20121230 -9606 342933 ZSCAN5B hCG_2042202 ZNF371|ZNF495B HGNC:34246|Ensembl:ENSG00000197213|Vega:OTTHUMG00000181827 19 19q13.43 zinc finger and SCAN domain containing 5B protein-coding ZSCAN5B zinc finger and SCAN domain containing 5B O zinc finger and SCAN domain-containing protein 5B 20121230 -9606 342945 ZSCAN22 - HKR2|ZNF50 HGNC:4929|MIM:165260|Ensembl:ENSG00000182318|HPRD:01315 19 19q13.43 zinc finger and SCAN domain containing 22 protein-coding ZSCAN22 zinc finger and SCAN domain containing 22 O GLI-Kruppel family member HKR2|krueppel-related zinc finger protein 2|zinc finger and SCAN domain-containing protein 22|zinc finger protein 50 20121230 -9606 342977 NANOS3 - NANOS1L|NOS3 HGNC:22048|MIM:608229|Ensembl:ENSG00000187556|Vega:OTTHUMG00000181850 19 19p13.13 nanos homolog 3 (Drosophila) protein-coding NANOS3 nanos homolog 3 (Drosophila) O nanos homolog 3 20121230 -9606 342979 PALM3 - - HGNC:33274|Ensembl:ENSG00000187867|Vega:OTTHUMG00000181991 19 19p13.12 paralemmin 3 protein-coding PALM3 paralemmin 3 O paralemmin-3 20121230 -9606 342994 RPL34P34 - RPL34_15_1639 HGNC:35848 19 19p12 ribosomal protein L34 pseudogene 34 pseudo RPL34P34 ribosomal protein L34 pseudogene 34 O - 20121230 -9606 343035 RD3 - C1orf36|LCA12 HGNC:19689|MIM:180040|Ensembl:ENSG00000198570|HPRD:12726|Vega:OTTHUMG00000037002 1 1q32.3 retinal degeneration 3 protein-coding RD3 retinal degeneration 3 O protein RD3|retinal degeneration protein 3 20121230 -9606 343045 CYCSP51 - HCP1 HGNC:24383 1 1q21.3 cytochrome c, somatic pseudogene 51 pseudo CYCSP51 cytochrome c, somatic pseudogene 51 O - 20121230 -9606 343052 LOC343052 - - - 1 1q21.3 immunoglobulin superfamily, DCC subclass, member 3 pseudogene pseudo - - - - 20121230 -9606 343066 AADACL4 RP11-474O21.1 - HGNC:32038|Ensembl:ENSG00000204518|HPRD:15402|Vega:OTTHUMG00000001889 1 1p36.21 arylacetamide deacetylase-like 4 protein-coding AADACL4 arylacetamide deacetylase-like 4 O - 20121230 -9606 343068 PRAMEF5 - - HGNC:27995|Ensembl:ENSG00000204502|Vega:OTTHUMG00000009505 1 1p36.21 PRAME family member 5 protein-coding PRAMEF5 PRAME family member 5 O - 20121230 -9606 343069 HNRNPCL1 RP5-845O24.4 HNRPCL1 HGNC:29295|Ensembl:ENSG00000179172|HPRD:15466|Vega:OTTHUMG00000001931 1 1p36.21 heterogeneous nuclear ribonucleoprotein C-like 1 protein-coding HNRNPCL1 heterogeneous nuclear ribonucleoprotein C-like 1 O hnRNP C-like-1|hnRNP core protein C-like 1 20121230 -9606 343070 PRAMEF9 - - HGNC:27996|Ensembl:ENSG00000204501|HPRD:18596|Vega:OTTHUMG00000008035 1 1p36.21 PRAME family member 9 protein-coding PRAMEF9 PRAME family member 9 O PRAME family member 9/15 20121230 -9606 343071 PRAMEF10 - RP5-845O24.7 HGNC:27997|Ensembl:ENSG00000187545|Vega:OTTHUMG00000001981 1 1p36.21 PRAME family member 10 protein-coding PRAMEF10 PRAME family member 10 O - 20121230 -9606 343099 CCDC18 RP4-717I23.1 NY-SAR-41|dJ717I23.1 HGNC:30370|Ensembl:ENSG00000122483|Vega:OTTHUMG00000010598 1 1p22.1 coiled-coil domain containing 18 protein-coding CCDC18 coiled-coil domain containing 18 O coiled-coil domain-containing protein 18|sarcoma antigen NY-SAR-24|sarcoma antigen NY-SAR-41 20121230 -9606 343165 LOC343165 - - - 1 1q44 heat shock 70kDa protein 8 pseudogene pseudo - - - - 20121230 -9606 343169 OR6F1 - OR1-34|OR1-38|OST731 HGNC:15027|Ensembl:ENSG00000169214|HPRD:17777|Vega:OTTHUMG00000040213 1 1q44 olfactory receptor, family 6, subfamily F, member 1 protein-coding OR6F1 olfactory receptor, family 6, subfamily F, member 1 O olfactory receptor 6F1|olfactory receptor OR1-34 pseudogene|olfactory receptor OR1-38 20121230 -9606 343170 OR14K1 - OR1-39|OR1.5.9|OR5AY1 HGNC:15025|HPRD:17752 1 1q44 olfactory receptor, family 14, subfamily K, member 1 pseudo OR14K1 olfactory receptor, family 14, subfamily K, member 1 O - 20121230 -9606 343171 OR2W3 - OR2W3P|OR2W8P|OST718 HGNC:15021|Ensembl:ENSG00000238243|HPRD:17714|Vega:OTTHUMG00000040204 1 1q44 olfactory receptor, family 2, subfamily W, member 3 protein-coding OR2W3 olfactory receptor, family 2, subfamily W, member 3 O olfactory receptor 2W3|olfactory receptor 2W8|olfactory receptor OR1-49|olfactory receptor, family 2, subfamily W, member 3 pseudogene|olfactory receptor, family 2, subfamily W, member 8 pseudogene 20121230 -9606 343172 OR2T8 - OR2T8P HGNC:15020|Ensembl:ENSG00000177462|HPRD:17712|Vega:OTTHUMG00000040205 1 1q44 olfactory receptor, family 2, subfamily T, member 8 protein-coding OR2T8 olfactory receptor, family 2, subfamily T, member 8 O olfactory receptor 2T8|olfactory receptor, family 2, subfamily T, member 8 pseudogene 20121230 -9606 343173 OR2T3 - - HGNC:14727|Ensembl:ENSG00000196539|HPRD:17708|Vega:OTTHUMG00000040452 1 1q44 olfactory receptor, family 2, subfamily T, member 3 protein-coding OR2T3 olfactory receptor, family 2, subfamily T, member 3 O olfactory receptor 2T3|seven transmembrane helix receptor 20121230 -9606 343184 RPS2P11 - RPS2_3_47 HGNC:36350 1 1p32.3 ribosomal protein S2 pseudogene 11 pseudo RPS2P11 ribosomal protein S2 pseudogene 11 O - 20121230 -9606 343263 MYBPHL - - HGNC:30434|Ensembl:ENSG00000221986|HPRD:17616|Vega:OTTHUMG00000012002 1 1p13.3 myosin binding protein H-like protein-coding MYBPHL myosin binding protein H-like O myosin-binding protein H-like 20121230 -9606 343296 ADH5P2 - - HGNC:22976 1 1p31.1 alcohol dehydrogenase 5 (class III), chi polypeptide, pseudogene 2 pseudo ADH5P2 alcohol dehydrogenase 5 (class III), chi polypeptide, pseudogene 2 O - 20121230 -9606 343301 RPL10AP4 - RPL10A_1_67 HGNC:35873 1 1p31.1 ribosomal protein L10a pseudogene 4 pseudo RPL10AP4 ribosomal protein L10a pseudogene 4 O - 20121230 -9606 343326 KRT18P28 - - HGNC:33397 1 1q25.3 keratin 18 pseudogene 28 pseudo KRT18P28 keratin 18 pseudogene 28 O - 20121230 -9606 343332 FDPSP1 - CHR39A|FDPSL1|FPSL1 HGNC:3632 1 1q31 farnesyl diphosphate synthase pseudogene 1 pseudo FDPSP1 farnesyl diphosphate synthase pseudogene 1 O - 20121230 -9606 343338 GAPDHP20 - - HGNC:37772 1 1p35.1 glyceraldehyde 3 phosphate dehydrogenase pseudogene 20 pseudo GAPDHP20 glyceraldehyde 3 phosphate dehydrogenase pseudogene 20 O - 20121230 -9606 343381 NBPF2P - - HGNC:31987 1 1p36.12 neuroblastoma breakpoint family, member 2, pseudogene pseudo NBPF2P neuroblastoma breakpoint family, member 2, pseudogene O - 20121230 -9606 343406 OR10R2 - OR1-8|OR10R2Q HGNC:14820|Ensembl:ENSG00000198965|HPRD:17674|Vega:OTTHUMG00000019632 1 1q23.1 olfactory receptor, family 10, subfamily R, member 2 protein-coding OR10R2 olfactory receptor, family 10, subfamily R, member 2 O olfactory receptor 10R2|olfactory receptor OR1-8 20121230 -9606 343409 OR10J8P - - HGNC:19638 1 1q23.2 olfactory receptor, family 10, subfamily J, member 8 pseudogene pseudo OR10J8P olfactory receptor, family 10, subfamily J, member 8 pseudogene O - 20121230 -9606 343413 FCRL6 RP11-190A12.2 FcRH6 HGNC:31910|MIM:613562|Ensembl:ENSG00000181036|HPRD:14177|Vega:OTTHUMG00000035351 1 1q23.2 Fc receptor-like 6 protein-coding FCRL6 Fc receptor-like 6 O Fc receptor-like protein 6|Fc receptor-like protein 7|IFGP6|IgSF type I transmembrane receptor|fc receptor homolog 6|fcR-like protein 6|leukocyte receptor 20121230 -9606 343450 KCNT2 RP11-58O13.1 KCa4.2|SLICK|SLO2.1 HGNC:18866|MIM:610044|Ensembl:ENSG00000162687|HPRD:11584|Vega:OTTHUMG00000035611 1 1q31.3 potassium channel, subfamily T, member 2 protein-coding KCNT2 potassium channel, subfamily T, member 2 O potassium channel subfamily T member 2|sequence like an intermediate conductance potassium channel subunit|sodium activated potassium channel|sodium and chloride activated ATP sensitive potassium channel|sodium and chloride-activated ATP-sensitive potassium channel Slo2.1|sodium- and chloride-activated ATP-sensitive potassium channel|sodium-and chloride-activated ATP-sensitive potassium channel (SLICK) 20121230 -9606 343472 BARHL2 - - HGNC:954|MIM:605212|Ensembl:ENSG00000143032|HPRD:05555|Vega:OTTHUMG00000010020 1 1p22.2 BarH-like homeobox 2 protein-coding BARHL2 BarH-like homeobox 2 O barH-like 2 homeobox protein 20121230 -9606 343477 HSP90B3P - GRP94C|TRA1P2|TRAP2 HGNC:12100 1 1p22.1 heat shock protein 90kDa beta (Grp94), member 3, pseudogene pseudo HSP90B3P heat shock protein 90kDa beta (Grp94), member 3, pseudogene O - 20121230 -9606 343495 RPL6P2 - RPL6_1_93 HGNC:35964 1 1p12 ribosomal protein L6 pseudogene 2 pseudo RPL6P2 ribosomal protein L6 pseudogene 2 O - 20121230 -9606 343505 NBPF7 - - HGNC:31989|MIM:613997 1 1p12 neuroblastoma breakpoint family, member 7 protein-coding NBPF7 neuroblastoma breakpoint family, member 7 O putative neuroblastoma breakpoint family member 7 20121230 -9606 343508 LOC343508 - - - 1 1q42.3 aconitase 2, mitochondrial pseudogene pseudo - - - - 20121230 -9606 343515 ATP6V1E1P1 - ATP6EP1|ATP6V1EP1 HGNC:859 1 1p34.2 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1 pseudogene 1 pseudo ATP6V1E1P1 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1 pseudogene 1 O - 20121230 -9606 343521 TCTEX1D4 RP11-269F19.9 - HGNC:32315|MIM:611713|Ensembl:ENSG00000188396|HPRD:15762|Vega:OTTHUMG00000008586 1 1p34.1 Tctex1 domain containing 4 protein-coding TCTEX1D4 Tctex1 domain containing 4 O Tctex2 beta|novel Tctex-1 family domain-containing protein|protein N22.1|tctex-2-beta|tctex1 domain-containing protein 4 20121230 -9606 343563 OR2T29 - - HGNC:31253|Ensembl:ENSG00000182783|HPRD:17707|Vega:OTTHUMG00000040382 1 1q44 olfactory receptor, family 2, subfamily T, member 29 protein-coding OR2T29 olfactory receptor, family 2, subfamily T, member 29 O olfactory receptor 2T29 20121230 -9606 343578 ARHGAP40 RP5-1100H13.4 C20orf95|dJ1100H13.4 HGNC:16226|Ensembl:ENSG00000124143|Vega:OTTHUMG00000032453 20 20q11.23 Rho GTPase activating protein 40 protein-coding ARHGAP40 Rho GTPase activating protein 40 O rho GTPase-activating protein 40|rho-type GTPase-activating protein 40 20121230 -9606 343637 RSPO4 RP5-824F16.1 C20orf182|CRISTIN4 HGNC:16175|MIM:610573|Ensembl:ENSG00000101282|Vega:OTTHUMG00000031651 20 20p13 R-spondin 4 protein-coding RSPO4 R-spondin 4 O R-spondin family, member 4|R-spondin-4|hRspo4|roof plate-specific spondin-4 20121230 -9606 343641 TGM6 RP4-734P14.2 SCA35|TG6|TGM3L|TGY|dJ734P14.3 HGNC:16255|MIM:613900|Ensembl:ENSG00000166948|HPRD:15495|Vega:OTTHUMG00000031692 20 20p13 transglutaminase 6 protein-coding TGM6 transglutaminase 6 O TGase Y|TGase-6|protein-glutamine gamma-glutamyltransferase 6|transglutaminase y 20121230 -9606 343702 XKR7 RP1-310O13.11-001 C20orf159|dJ310O13.4 HGNC:23062|Ensembl:ENSG00000101321|HPRD:17359|Vega:OTTHUMG00000032198 20 20q11.21 XK, Kell blood group complex subunit-related family, member 7 protein-coding XKR7 XK, Kell blood group complex subunit-related family, member 7 O X Kell blood group precursor-related family, member 7|XK-related protein 7 20121230 -9606 343727 CYCSP42 - CYC1LP5|HCP42 HGNC:2581 21 21q21.1 cytochrome c, somatic pseudogene 42 pseudo CYCSP42 cytochrome c, somatic pseudogene 42 O - 20121230 -9606 343819 MRPL51P2 - - HGNC:29724 21 21q22.3 mitochondrial ribosomal protein L51 pseudogene 2 pseudo MRPL51P2 mitochondrial ribosomal protein L51 pseudogene 2 O - 20121230 -9606 343851 RPS10P30 - RPS10_14_1741 HGNC:35593 22 22q11.23 ribosomal protein S10 pseudogene 30 pseudo RPS10P30 ribosomal protein S10 pseudogene 30 O - 20121230 -9606 343901 MRPS18CP6 - - HGNC:29747 22 22q13.31 mitochondrial ribosomal protein S18C pseudogene 6 pseudo MRPS18CP6 mitochondrial ribosomal protein S18C pseudogene 6 O - 20121230 -9606 343930 MSGN1 hCG_1648308 MSOG HGNC:14907|MIM:612209|Ensembl:ENSG00000151379|Vega:OTTHUMG00000159089 2 2p24.2 mesogenin 1 protein-coding MSGN1 mesogenin 1 O mesogenin-1|pMesogenin1|pMsgn1|paraxial mesoderm-specific mesogenin1|paraxial mesogenin 20121230 -9606 343981 GLULP6 - - HGNC:37990 2 2q32.3 glutamate-ammonia ligase (glutamine synthetase) pseudogene 6 pseudo GLULP6 glutamate-ammonia ligase (glutamine synthetase) pseudogene 6 O - 20121230 -9606 343990 KIAA1211L - C2orf55 HGNC:33454|Ensembl:ENSG00000196872|HPRD:14620|Vega:OTTHUMG00000153171 2 2q11.2 KIAA1211-like protein-coding KIAA1211L KIAA1211-like O uncharacterized protein C2orf55|uncharacterized protein KIAA1211-like 20121230 -9606 344018 FIGLA - BHLHC8|FIGALPHA|POF6 HGNC:24669|MIM:608697|Ensembl:ENSG00000183733|HPRD:12279|Vega:OTTHUMG00000153440 2 2p13.3 folliculogenesis specific basic helix-loop-helix protein-coding FIGLA folliculogenesis specific basic helix-loop-helix O class C basic helix-loop-helix protein 8|factor in the germline alpha|folliculogenesis-specific basic helix-loop-helix protein|transcription factor FIGa 20121230 -9606 344022 NOTO - - HGNC:31839|Ensembl:ENSG00000214513|Vega:OTTHUMG00000164128 2 2p13.2 notochord homeobox protein-coding NOTO notochord homeobox O homeobox protein notochord|notochord homolog 20121230 -9606 344065 LOC344065 - - - 2 2q11.1 zinc finger protein 184 pseudogene pseudo - - - - 20121230 -9606 344148 NCKAP5 - ERIH1|ERIH2|NAP5 HGNC:29847|MIM:608789|Ensembl:ENSG00000176771|HPRD:16936|Vega:OTTHUMG00000153573 2 2q21.2 NCK-associated protein 5 protein-coding NCKAP5 NCK-associated protein 5 O NAP-5|Nck associated protein 5|nck-associated protein 5|peripheral clock protein 2 20121230 -9606 344167 FOXI3 - - HGNC:35123|MIM:612351 2 2p11.2 forkhead box I3 protein-coding FOXI3 forkhead box I3 O forkhead box protein I3 20121230 -9606 344178 RPL5P7 - RPL5_2_294 HGNC:36583 2 2q31.1 ribosomal protein L5 pseudogene 7 pseudo RPL5P7 ribosomal protein L5 pseudogene 7 O - 20121230 -9606 344191 EVX2 - EVX-2 HGNC:3507|MIM:142991|Ensembl:ENSG00000174279|Vega:OTTHUMG00000154173 2 2q31.1 even-skipped homeobox 2 protein-coding EVX2 even-skipped homeobox 2 O eve, even-skipped homeo box homolog 2|even-skipped homeo box 2 (homolog of Drosophila eve)|homeobox even-skipped homolog protein 2 20121230 -9606 344320 KRT8P10 - - HGNC:33364 2 2q32.1 keratin 8 pseudogene 10 pseudo KRT8P10 keratin 8 pseudogene 10 O - 20121230 -9606 344328 ST13P2 - - HGNC:38716 2 2q32.1 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 2 pseudo ST13P2 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 2 O - 20121230 -9606 344332 FABP5P10 - FABP5L10 HGNC:31066 2 2q23.3 fatty acid binding protein 5 pseudogene 10 pseudo FABP5P10 fatty acid binding protein 5 pseudogene 10 O - 20121230 -9606 344371 SLC25A5P2 - - HGNC:35470 2 2p22.3 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 2 pseudo SLC25A5P2 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 2 O - 20121230 -9606 344382 LOC344382 - - - 2 2p22.2 serine/threonine kinase receptor associated protein pseudogene pseudo - - - - 20121230 -9606 344387 CDKL4 - - HGNC:19287|Ensembl:ENSG00000205111|HPRD:16698|Vega:OTTHUMG00000133574 2 2p22.1 cyclin-dependent kinase-like 4 protein-coding CDKL4 cyclin-dependent kinase-like 4 O - 20121230 -9606 344405 PRORSD1P - NCRNA00117|PRDXDD1P|Prdxdd1|Ybakd1 HGNC:34379 2 2p16.1 prolyl-tRNA synthetase associated domain containing 1, pseudogene pseudo PRORSD1P prolyl-tRNA synthetase associated domain containing 1, pseudogene O - 20121230 -9606 344423 RPS12P3 - RPS12_2_223 HGNC:35500 2 2p16.1 ribosomal protein S12 pseudogene 3 pseudo RPS12P3 ribosomal protein S12 pseudogene 3 O - 20121230 -9606 344454 AOX2P - AOH2|AOX2 HGNC:18450 2 2q33.1 aldehyde oxidase 2 pseudogene pseudo AOX2P aldehyde oxidase 2 pseudogene O - 20121230 -9606 344462 KRT18P39 - - HGNC:33408 2 2q33.2 keratin 18 pseudogene 39 pseudo KRT18P39 keratin 18 pseudogene 39 O - 20121230 -9606 344471 RPL12P17 - RPL12_2_319 HGNC:36263 2 2q33.3 ribosomal protein L12 pseudogene 17 pseudo RPL12P17 ribosomal protein L12 pseudogene 17 O - 20121230 -9606 344558 SH3RF3 - POSH2|SH3MD4 HGNC:24699|Ensembl:ENSG00000172985|Vega:OTTHUMG00000153439 2 2q13 SH3 domain containing ring finger 3 protein-coding SH3RF3 SH3 domain containing ring finger 3 O SH3 domain-containing RING finger protein 3|SH3 multiple domains 4|SH3 multiple domains protein 4|plenty of SH3s 2|plenty of SH3s-2 20121230 -9606 344561 GPR148 - BTR|PGR6 HGNC:23623|Ensembl:ENSG00000173302|HPRD:13598|Vega:OTTHUMG00000131655 2 2q21.1 G protein-coupled receptor 148 protein-coding GPR148 G protein-coupled receptor 148 O G protein-coupled receptor PGR6|G-protein coupled receptor PGR6|brain and testis restricted GPCR|probable G-protein coupled receptor 148 20121230 -9606 344593 LOC344593 - - - 3 3q13.12 protein tyrosine phosphatase, non-receptor type 11 pseudogene pseudo - - - - 20121230 -9606 344595 LOC344595 - - - 3 3q13.12 uncharacterized LOC344595 miscRNA - - - - 20121230 -9606 344653 LOC344653 - - - 3 3p11.1 ATP-binding cassette, sub-family F (GCN20), member 2 pseudogene pseudo - - - - 20121230 -9606 344657 LRRIQ4 - LRRC64 HGNC:34298|Ensembl:ENSG00000188306|Vega:OTTHUMG00000164420 3 3q26.2 leucine-rich repeats and IQ motif containing 4 protein-coding LRRIQ4 leucine-rich repeats and IQ motif containing 4 O leucine rich repeat containing 64|leucine-rich repeat and IQ domain-containing protein 4|leucine-rich repeat-containing protein 64 20121230 -9606 344658 SAMD7 - - HGNC:25394|Ensembl:ENSG00000187033|HPRD:18013|Vega:OTTHUMG00000158730 3 3q26.2 sterile alpha motif domain containing 7 protein-coding SAMD7 sterile alpha motif domain containing 7 O SAM domain-containing protein 7|sterile alpha motif domain-containing protein 7 20121230 -9606 344697 HNRNPA1P21 - HNRNPA1P HGNC:39539 3 3p22.2 heterogeneous nuclear ribonucleoprotein A1 pseudogene 21 pseudo HNRNPA1P21 heterogeneous nuclear ribonucleoprotein A1 pseudogene 21 O - 20121230 -9606 344709 CCDC75P1 - - HGNC:42659 3 3p13 coiled-coil domain containing 75 pseudogene 1 pseudo CCDC75P1 coiled-coil domain containing 75 pseudogene 1 O - 20121230 -9606 344729 OR7E140P - - HGNC:19561 12 12p13.31 olfactory receptor, family 7, subfamily E, member 140 pseudogene pseudo OR7E140P olfactory receptor, family 7, subfamily E, member 140 pseudogene O - 20121230 -9606 344741 HNRNPA1P20 - - HGNC:39538 3 3q24 heterogeneous nuclear ribonucleoprotein A1 pseudogene 20 pseudo HNRNPA1P20 heterogeneous nuclear ribonucleoprotein A1 pseudogene 20 O - 20121230 -9606 344752 AADACL2 - - HGNC:24427|Ensembl:ENSG00000197953|HPRD:14705|Vega:OTTHUMG00000155914 3 3q25.1 arylacetamide deacetylase-like 2 protein-coding AADACL2 arylacetamide deacetylase-like 2 O - 20121230 -9606 344758 GPR149 - IEDA|PGR10 HGNC:23627|Ensembl:ENSG00000174948|Vega:OTTHUMG00000159131 3 3q25.2 G protein-coupled receptor 149 protein-coding GPR149 G protein-coupled receptor 149 O G protein-coupled receptor PGR10|G-protein coupled receptor PGR10|probable G-protein coupled receptor 149 20121230 -9606 344760 VN2R1P - CASRL1|GPRC2B HGNC:30344 3 3q25.31 vomeronasal 2 receptor 1 pseudogene pseudo VN2R1P vomeronasal 2 receptor 1 pseudogene O - 20121230 -9606 344787 ZNF860 - - HGNC:34513|Ensembl:ENSG00000197385|Vega:OTTHUMG00000155838 3 3p23 zinc finger protein 860 protein-coding ZNF860 zinc finger protein 860 O - 20121230 -9606 344805 TMPRSS7 - - HGNC:30846|Ensembl:ENSG00000176040|Vega:OTTHUMG00000157148 3 3q13.2 transmembrane protease, serine 7 protein-coding TMPRSS7 transmembrane protease, serine 7 O matriptase-3|transmembrane protease serine 7|transmembrane serine protease 7|type II transmembrane serine protease 7 20121230 -9606 344807 CD200R1L - CD200R2|CD200RLa HGNC:24665|Ensembl:ENSG00000206531|HPRD:16691|Vega:OTTHUMG00000159283 3 3q13.2 CD200 receptor 1-like protein-coding CD200R1L CD200 receptor 1-like O CD200 cell surface glycoprotein receptor 2|CD200 cell surface glycoprotein receptor-like 2|CD200 cell surface glycoprotein receptor-like a|CD200 receptor 2|CD200 receptor-like 2|cell surface glycoprotein CD200 receptor 1-like|cell surface glycoprotein CD200 receptor 2|cell surface glycoprotein OX2 receptor 2|huCD200R2 20121230 -9606 344813 GSTO3P - GSTO3P1 HGNC:23065 3 3q22.1 glutathione S-transferase omega 3, pseudogene pseudo GSTO3P glutathione S-transferase omega 3, pseudogene O - 20121230 -9606 344838 PAQR9 - - HGNC:30131|MIM:614580|Ensembl:ENSG00000188582|HPRD:17821|Vega:OTTHUMG00000159313 3 3q23 progestin and adipoQ receptor family member IX protein-coding PAQR9 progestin and adipoQ receptor family member IX O progestin and adipoQ receptor family member 9 20121230 -9606 344866 KRT18P17 - - HGNC:33385 3 3p25.2 keratin 18 pseudogene 17 pseudo KRT18P17 keratin 18 pseudogene 17 O - 20121230 -9606 344875 COL6A4P1 - COL6A4|COL6A4P|DIVA|DVWA|VWA6 HGNC:33484|MIM:612397 3 3p25.1 collagen, type VI, alpha 4 pseudogene 1 pseudo COL6A4P1 collagen, type VI, alpha 4 pseudogene 1 O - 20121230 -9606 344887 LOC344887 - - - 3 3q27.2 NmrA-like family domain containing 1 pseudogene pseudo - - - - 20121230 -9606 344892 RTP2 - - HGNC:32486|MIM:609138|Ensembl:ENSG00000198471|HPRD:12371|Vega:OTTHUMG00000156458 3 3q27.3 receptor (chemosensory) transporter protein 2 protein-coding RTP2 receptor (chemosensory) transporter protein 2 O receptor transporter protein 2|receptor transporting protein 2|receptor-transporting protein 2 20121230 -9606 344901 OSTN - MUSCLIN HGNC:29961|MIM:610280|Ensembl:ENSG00000188729|HPRD:17809|Vega:OTTHUMG00000156190 3 3q28 osteocrin protein-coding OSTN osteocrin O - 20121230 -9606 344905 ATP13A5 UNQ488/PRO1004 - HGNC:31789|Ensembl:ENSG00000187527|HPRD:18597|Vega:OTTHUMG00000156101 3 3q29 ATPase type 13A5 protein-coding ATP13A5 ATPase type 13A5 O P5-ATPase|probable cation-transporting ATPase 13A5 20121230 -9606 344967 LOC344967 - - MIM:611963 4 4p14 acyl-CoA thioesterase 7 pseudogene pseudo - - - - 20121230 -9606 344978 ACTN4P1 - - HGNC:44028 4 4q26 actinin, alpha 4 pseudogene 1 pseudo ACTN4P1 actinin, alpha 4 pseudogene 1 O - 20121230 -9606 344988 SAR1AP3 - SAR1P3 HGNC:32317 4 4q27 SAR1 homolog A (S. cerevisiae) pseudogene 3 pseudo SAR1AP3 SAR1 homolog A (S. cerevisiae) pseudogene 3 O - 20121230 -9606 345016 PES1P1 - - HGNC:44058 4 4q28.3 pescadillo ribosomal biogenesis factor 1 pseudogene 1 pseudo PES1P1 pescadillo ribosomal biogenesis factor 1 pseudogene 1 O - 20121230 -9606 345041 HSPD1P5 - HSPD1-8P|HSPDP5 HGNC:5266 4 4q31.21 heat shock 60kDa protein 1 (chaperonin) pseudogene 5 pseudo HSPD1P5 heat shock 60kDa protein 1 (chaperonin) pseudogene 5 O - 20121230 -9606 345051 LOC345051 hCG_38984 - - 4 4q31.22 hCG38984 unknown - - - - 20121230 -9606 345062 PRSS48 - ESSPL HGNC:24635|Ensembl:ENSG00000189099|HPRD:07110|Vega:OTTHUMG00000161673 4 4q31.3 protease, serine, 48 protein-coding PRSS48 protease, serine, 48 O epidermis-specific serine protease-like protein|serine protease 48 20121230 -9606 345079 SOWAHB - ANKRD56 HGNC:32958|Ensembl:ENSG00000186212|HPRD:18789|Vega:OTTHUMG00000160876 4 4q21.1 sosondowah ankyrin repeat domain family member B protein-coding SOWAHB sosondowah ankyrin repeat domain family member B O ankyrin repeat domain 56|ankyrin repeat domain-containing protein 56|ankyrin repeat domain-containing protein SOWAHB|protein sosondowah homolog B 20121230 -9606 345193 LRIT3 - FIGLER4 HGNC:24783|Ensembl:ENSG00000183423|HPRD:13495|Vega:OTTHUMG00000132043 4 4q25 leucine-rich repeat, immunoglobulin-like and transmembrane domains 3 protein-coding LRIT3 leucine-rich repeat, immunoglobulin-like and transmembrane domains 3 O fibronectin type III, immunoglobulin and leucine rich repeat domains 4|leucine-rich repeat, immunoglobulin-like domain and transmembrane domain-containing protein 3 20121230 -9606 345222 MSANTD1 - C4orf44 HGNC:33741|Ensembl:ENSG00000188981|HPRD:16084|Vega:OTTHUMG00000159977 4 4p16.3 Myb/SANT-like DNA-binding domain containing 1 protein-coding MSANTD1 Myb/SANT-like DNA-binding domain containing 1 O myb/SANT-like DNA-binding domain-containing protein 1 20121230 -9606 345258 BIN2P1 - - HGNC:43660 4 4q21.22 bridging integrator 2 pseudogene 1 pseudo BIN2P1 bridging integrator 2 pseudogene 1 O - 20121230 -9606 345274 SLC10A6 - SOAT HGNC:30603|MIM:613366|Ensembl:ENSG00000145283|HPRD:11593|Vega:OTTHUMG00000130596 4 4q21.3 solute carrier family 10 (sodium/bile acid cotransporter family), member 6 protein-coding SLC10A6 solute carrier family 10 (sodium/bile acid cotransporter family), member 6 O sodium-dependent organic anion transporter|solute carrier family 10 member 6 20121230 -9606 345275 HSD17B13 HMFN0376 NIIL497|SCDR9|SDR16C3 HGNC:18685|MIM:612127|Ensembl:ENSG00000170509|HPRD:18023|Vega:OTTHUMG00000130602 4 4q22.1 hydroxysteroid (17-beta) dehydrogenase 13 protein-coding HSD17B13 hydroxysteroid (17-beta) dehydrogenase 13 O 17-beta hydroxysteroid dehydrogenase|17-beta-HSD 13|17-beta-hydroxysteroid dehydrogenase 13|short chain dehydrogenase/reductase family 16C, member 3|short-chain dehydrogenase/reductase 9 20121230 -9606 345430 KRT18P41 - - HGNC:33411 5 5q35.1 keratin 18 pseudogene 41 pseudo KRT18P41 keratin 18 pseudogene 41 O - 20121230 -9606 345456 PFN3 - - HGNC:18627|MIM:612812|Ensembl:ENSG00000196570|Vega:OTTHUMG00000163408 5 5q35.3 profilin 3 protein-coding PFN3 profilin 3 O profilin III|profilin-3 20121230 -9606 345462 ZNF879 - DKFZp686E2433 HGNC:37273|Ensembl:ENSG00000234284|Vega:OTTHUMG00000163596 5 5q35.3 zinc finger protein 879 protein-coding ZNF879 zinc finger protein 879 O - 20121230 -9606 345471 LOC345471 - - - 5 5q33.3 cell division cycle 37 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 345557 PLCXD3 - - HGNC:31822|Ensembl:ENSG00000182836|HPRD:17860|Vega:OTTHUMG00000162076 5 5p13.1 phosphatidylinositol-specific phospholipase C, X domain containing 3 protein-coding PLCXD3 phosphatidylinositol-specific phospholipase C, X domain containing 3 O PI-PLC X domain-containing protein 3 20121230 -9606 345571 LOC345571 - - - 5 5q21.3 RUN and FYVE domain containing 3 pseudogene pseudo - - - - 20121230 -9606 345576 LOC345576 - - - 5 5q21.3 ubiquitin specific peptidase 7 (herpes virus-associated) pseudogene pseudo - - - - 20121230 -9606 345611 IRGM - IFI1|IRGM1|LRG-47|LRG47 HGNC:29597|MIM:608212|Ensembl:ENSG00000237693|Vega:OTTHUMG00000163647 5 5q33.1 immunity-related GTPase family, M protein-coding IRGM immunity-related GTPase family, M O LPS-stimulated RAW 264.7 macrophage protein 47 homolog|LRG-47-like protein|immunity-related GTPase family M protein|immunity-related GTPase family, M1|interferon-inducible protein 1 20121230 -9606 345630 FBLL1 - - HGNC:35458 5 5q34 fibrillarin-like 1 pseudo FBLL1 fibrillarin-like 1 O - 20121230 -9606 345643 MCIN - IDAS|MCI HGNC:40050|MIM:614086|Ensembl:ENSG00000234602|Vega:OTTHUMG00000162600 5 5q11.2 multiciliate cell differentiation 1 protein-coding MCIN multiciliate cell differentiation 1 O multicilin|protein Idas 20121230 -9606 345645 PSMC1P4 - - HGNC:39779 5 5q11.2 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 4 pseudo PSMC1P4 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 4 O - 20121230 -9606 345651 ACTBL2 - ACT HGNC:17780|MIM:614835|Ensembl:ENSG00000169067|HPRD:18598|Vega:OTTHUMG00000162330 5 5q11.2 actin, beta-like 2 protein-coding ACTBL2 actin, beta-like 2 O actin-like protein|beta-actin-like protein 2|kappa-actin 20121230 -9606 345757 FAM174A UNQ1912/PRO4371 TMEM157|UNQ1912 HGNC:24943|Ensembl:ENSG00000174132|HPRD:18260|Vega:OTTHUMG00000128726 5 5q21.1 family with sequence similarity 174, member A protein-coding FAM174A family with sequence similarity 174, member A O HCV NS5A-transactivated protein 6|HGS_RE408|hepatitis C virus NS5A-transactivated protein 6|membrane protein FAM174A|transmembrane protein 157 20121230 -9606 345778 MTX3 - - HGNC:24812|Ensembl:ENSG00000177034|HPRD:17614|Vega:OTTHUMG00000162547 5 5q14.1 metaxin 3 protein-coding MTX3 metaxin 3 O metaxin-3 20121230 -9606 345829 BTF3P10 - RAET1J HGNC:38570 6 6q25.1 basic transcription factor 3 pseudogene 10 pseudo BTF3P10 basic transcription factor 3 pseudogene 10 O - 20121230 -9606 345895 RSPH4A - CILD11|RSHL3|RSPH6B|dJ412I7.1 HGNC:21558|MIM:612647|Ensembl:ENSG00000111834|HPRD:18005|Vega:OTTHUMG00000015444 6 6q22.1 radial spoke head 4 homolog A (Chlamydomonas) protein-coding RSPH4A radial spoke head 4 homolog A (Chlamydomonas) O radial spoke head protein 4 homolog A|radial spoke head-like protein 3|radial spokehead-like 3 20121230 -9606 345930 ECT2L RP3-509I19.3 ARHGEF32|C6orf91|FBXO49|LFDH|dJ509I19.2|dJ509I19.3|dJ509I19.5 HGNC:21118|Ensembl:ENSG00000203734|Vega:OTTHUMG00000015679 6 6q24.1 epithelial cell transforming sequence 2 oncogene-like protein-coding ECT2L epithelial cell transforming sequence 2 oncogene-like O ECT2-like|F-box protein 49|epithelial cell-transforming sequence 2 oncogene-like|lung specific F-box and DH domain containing protein|lung-specific F-box and DH domain-containing protein|putative guanine nucleotide exchange factor LFDH 20121230 -9606 346007 EYS RP1-22I17.2 C6orf178|C6orf179|C6orf180|EGFL10|EGFL11|RP25|SPAM|bA166P24.2|bA307F22.3|bA74E24.1|dJ1018A4.2|dJ22I17.2|dJ303F19.1 HGNC:21555|MIM:612424|Ensembl:ENSG00000188107|HPRD:16853|Vega:OTTHUMG00000014971 6 6q12 eyes shut homolog (Drosophila) protein-coding EYS eyes shut homolog (Drosophila) O EGF-like-domain, multiple 10|EGF-like-domain, multiple 11|epidermal growth factor-like protein 10|epidermal growth factor-like protein 11|protein eyes shut homolog|protein spacemaker homolog 20121230 -9606 346085 GAPDHP72 - GAPDHL18|GAPDL18 HGNC:22955 6 6q27 glyceraldehyde-3-phosphate dehydrogenase pseudogene 72 pseudo GAPDHP72 glyceraldehyde-3-phosphate dehydrogenase pseudogene 72 O - 20121230 -9606 346116 MRPL42P2 - - HGNC:29711 6 6p22.3 mitochondrial ribosomal protein L42 pseudogene 2 pseudo MRPL42P2 mitochondrial ribosomal protein L42 pseudogene 2 O - 20121230 -9606 346157 ZNF391 RP1-153G14.3 dJ153G14.3 HGNC:18779|Ensembl:ENSG00000124613|HPRD:18461|Vega:OTTHUMG00000014477 6 6p22.1 zinc finger protein 391 protein-coding ZNF391 zinc finger protein 391 O - 20121230 -9606 346171 ZFP57 DADB-25P22.4 C6orf40|TNDM1|ZNF698|bA145L22|bA145L22.2 HGNC:18791|MIM:612192|Ensembl:ENSG00000204644|Vega:OTTHUMG00000031158 6 6p22.1 ZFP57 zinc finger protein protein-coding ZFP57 ZFP57 zinc finger protein O zfp-57|zinc finger protein 57 homolog|zinc finger protein 698 20121230 -9606 346288 SEPT14 - - HGNC:33280|MIM:612140|Ensembl:ENSG00000154997|HPRD:16972|Vega:OTTHUMG00000129341 7 7p11.2 septin 14 protein-coding SEPT14 septin 14 O septin-14 20121230 -9606 346296 LOC346296 - - - 7 7p11.2 insulin-like growth factor 2 mRNA binding protein 3 pseudogene pseudo - - - - 20121230 -9606 346329 LOC346329 - - - 7 7q11.21 guanine nucleotide binding protein (G protein), alpha 11 (Gq class) pseudogene pseudo - - - - 20121230 -9606 346389 MACC1 - 7A5|SH3BP4L HGNC:30215|MIM:612646|Ensembl:ENSG00000183742|HPRD:12381|Vega:OTTHUMG00000128415 7 7p21.1 metastasis associated in colon cancer 1 protein-coding MACC1 metastasis associated in colon cancer 1 O SH3 domain-containing protein 7a5|metastasis-associated in colon cancer protein 1|putative binding protein 7a5 20121230 -9606 346470 MRPL42P4 - - HGNC:29713 7 7p12.3 mitochondrial ribosomal protein L42 pseudogene 4 pseudo MRPL42P4 mitochondrial ribosomal protein L42 pseudogene 4 O - 20121230 -9606 346517 OR6V1 - GPR138 HGNC:15090|Ensembl:ENSG00000225781|HPRD:11417|Vega:OTTHUMG00000158385 7 7q34 olfactory receptor, family 6, subfamily V, member 1 protein-coding OR6V1 olfactory receptor, family 6, subfamily V, member 1 O olfactory receptor 6V1|olfactory receptor OR7-3 20121230 -9606 346524 OR2Q1P - OR7-2 HGNC:8273 7 7q35 olfactory receptor, family 2, subfamily Q, member 1 pseudogene pseudo OR2Q1P olfactory receptor, family 2, subfamily Q, member 1 pseudogene O - 20121230 -9606 346525 OR2A12 - OR2A12P|OR2A16P HGNC:15082|Ensembl:ENSG00000221858|HPRD:14929|Vega:OTTHUMG00000157996 7 7q35 olfactory receptor, family 2, subfamily A, member 12 protein-coding OR2A12 olfactory receptor, family 2, subfamily A, member 12 O olfactory receptor 2A12|olfactory receptor OR7-10|olfactory receptor, family 2, subfamily A, member 12 pseudogene|olfactory receptor, family 2, subfamily A, member 16 pseudogene 20121230 -9606 346528 OR2A1 - - HGNC:8229|Ensembl:ENSG00000221970|HPRD:14928|Vega:OTTHUMG00000158005 7 7q35 olfactory receptor, family 2, subfamily A, member 1 protein-coding OR2A1 olfactory receptor, family 2, subfamily A, member 1 O olfactory receptor 2A1/2A42|olfactory receptor OR7-16|olfactory receptor OR7-19 20121230 -9606 346547 ERVFC1-1 - envF(c)2 HGNC:38137|HPRD:16961 7 7q36.2 endogenous retrovirus group FC1, member 1 unknown ERVFC1-1 endogenous retrovirus group FC1, member 1 O - 20120710 -9606 346562 GNAT3 tcag7.1053 GDCA HGNC:22800|MIM:139395|Ensembl:ENSG00000214415|Vega:OTTHUMG00000155401 7 7q21.11 guanine nucleotide binding protein, alpha transducing 3 protein-coding GNAT3 guanine nucleotide binding protein, alpha transducing 3 O guanine nucleotide-binding protein G(t) subunit alpha-3|gustducin alpha-3 chain 20121230 -9606 346606 MOGAT3 UNQ9383/PRO34208 DC7|DGAT2L7|MGAT3 HGNC:23249|MIM:610184|Ensembl:ENSG00000106384|HPRD:11368|Vega:OTTHUMG00000023328 7 7q22.1 monoacylglycerol O-acyltransferase 3 protein-coding MOGAT3 monoacylglycerol O-acyltransferase 3 O 2-acylglycerol O-acyltransferase 3|acyl coenzyme A:monoacylglycerol acyltransferase 3|acyl-CoA:monoacylglycerol acyltransferase 3|diacylglycerol O-acyltransferase candidate 7|diacylglycerol acyltransferase 2-like protein 7|hDC7 20121230 -9606 346653 FAM71F2 tcag7.1070 FAM137B HGNC:27998|Ensembl:ENSG00000205085|HPRD:17840|Vega:OTTHUMG00000158275 7 7q32.1 family with sequence similarity 71, member F2 protein-coding FAM71F2 family with sequence similarity 71, member F2 O family with sequence similarity 137, member B|protein FAM71F2 20121230 -9606 346671 LOC346671 - - - 7 7q33 ring finger protein 14 pseudogene pseudo - - - - 20101019 -9606 346673 STRA8 - - HGNC:30653|MIM:609987|Ensembl:ENSG00000146857|HPRD:18123|Vega:OTTHUMG00000155415 7 7q33 stimulated by retinoic acid 8 protein-coding STRA8 stimulated by retinoic acid 8 O stimulated by retinoic acid 8 homolog|stimulated by retinoic acid gene 8 homolog|stimulated by retinoic acid gene 8 protein homolog 20121230 -9606 346689 KLRG2 - CLEC15B HGNC:24778|Ensembl:ENSG00000188883|HPRD:13485|Vega:OTTHUMG00000157705 7 7q34 killer cell lectin-like receptor subfamily G, member 2 protein-coding KLRG2 killer cell lectin-like receptor subfamily G, member 2 O C-type lectin domain family 15 member B|C-type lectin domain family 15, member B|killer cell lectin-like receptor subfamily G member 2 20121230 -9606 346702 PRSS51 - - HGNC:37321 8 8p23.1 protease, serine, 51 protein-coding PRSS51 protease, serine, 51 O - 20120901 -9606 346708 OR7E8P - OR11-11a HGNC:8458 8 8p23.1 olfactory receptor, family 7, subfamily E, member 8 pseudogene pseudo OR7E8P olfactory receptor, family 7, subfamily E, member 8 pseudogene O similar to seven transmembrane helix receptor 20121230 -9606 346711 MRPL49P2 - - HGNC:29718 8 8p22 mitochondrial ribosomal protein L49 pseudogene 2 pseudo MRPL49P2 mitochondrial ribosomal protein L49 pseudogene 2 O - 20121230 -9606 346950 RPL37P6 - RPL37_5_905 HGNC:31080 8 8q12.1 ribosomal protein L37 pseudogene 6 pseudo RPL37P6 ribosomal protein L37 pseudogene 6 O - 20121230 -9606 346990 H2AFZP2 - - HGNC:32279 8 8q13.3 H2A histone family, member Z pseudogene 2 pseudo H2AFZP2 H2A histone family, member Z pseudogene 2 O - 20121230 -9606 347028 AFG3L2P1 - AFG3L2P HGNC:24169 8 8p11.1 AFG3 ATPase family member 3-like 2 (S. cerevisiae) pseudogene 1 pseudo AFG3L2P1 AFG3 ATPase family member 3-like 2 (S. cerevisiae) pseudogene 1 O - 20121230 -9606 347051 SLC10A5 - P5 HGNC:22981|Ensembl:ENSG00000253598|HPRD:18053|Vega:OTTHUMG00000164683 8 8q21.13 solute carrier family 10 (sodium/bile acid cotransporter family), member 5 protein-coding SLC10A5 solute carrier family 10 (sodium/bile acid cotransporter family), member 5 O Na(+)/bile acid cotransporter 5|sodium/bile acid cotransporter 5|solute carrier family 10 member 5 20121230 -9606 347088 GPR144 RP11-101K10.9 PGR24 HGNC:18651|Ensembl:ENSG00000180264|HPRD:17063|Vega:OTTHUMG00000020652 9 9q33.3 G protein-coupled receptor 144 protein-coding GPR144 G protein-coupled receptor 144 O G protein-coupled receptor PGR24|G-protein coupled receptor GPR144|G-protein coupled receptor PGR24|probable G-protein coupled receptor 144 20121230 -9606 347097 LOC347097 - - - 9 9q21.11 dermatan sulfate epimerase pseudogene pseudo - - - - 20121230 -9606 347127 SPATA31D5P - FAM75D5|FAM75D5P HGNC:38602 9 9q21.32 SPATA31 subfamily D, member 5, pseudogene pseudo SPATA31D5P SPATA31 subfamily D, member 5, pseudogene O - 20121230 -9606 347148 QRFP RP11-618A20.5 26RFa|P518 HGNC:29982|MIM:609795|Ensembl:ENSG00000188710|HPRD:17813|Vega:OTTHUMG00000131663 9 9q34.12 pyroglutamylated RFamide peptide protein-coding QRFP pyroglutamylated RFamide peptide O P518 precursor protein|RF(Arg-Phe)amide family 26 amino acid peptide (P518)|orexigenic neuropeptide QRFP 20121230 -9606 347168 OR1J1 RP11-542K23.1 OR9-18|hg32 HGNC:8208|Ensembl:ENSG00000136834|HPRD:14916|Vega:OTTHUMG00000020603 9 9q33.2 olfactory receptor, family 1, subfamily J, member 1 protein-coding OR1J1 olfactory receptor, family 1, subfamily J, member 1 O olfactory receptor 1J1|olfactory receptor OR9-18 20121230 -9606 347169 OR1B1 - OR9-26|OR9-B HGNC:8181|Ensembl:ENSG00000171484|HPRD:14913|Vega:OTTHUMG00000020616 9 9q33.2 olfactory receptor, family 1, subfamily B, member 1 protein-coding OR1B1 olfactory receptor, family 1, subfamily B, member 1 O olfactory receptor 1B1|olfactory receptor 9-B|olfactory receptor OR9-26 20121230 -9606 347193 PES1P2 - - HGNC:44059 9 9p23 pescadillo ribosomal biogenesis factor 1 pseudogene 2 pseudo PES1P2 pescadillo ribosomal biogenesis factor 1 pseudogene 2 O - 20121230 -9606 347240 KIF24 RP11-571F15.7 C9orf48|bA571F15.4 HGNC:19916|MIM:613747|Ensembl:ENSG00000186638|HPRD:12963|Vega:OTTHUMG00000019810 9 9p13.3 kinesin family member 24 protein-coding KIF24 kinesin family member 24 O kinesin-like protein KIF24 20121230 -9606 347252 IGFBPL1 - IGFBP-RP4|IGFBPRP4|bA113O24.1 HGNC:20081|MIM:610413|Ensembl:ENSG00000137142|HPRD:17138|Vega:OTTHUMG00000019937 9 9p13.1 insulin-like growth factor binding protein-like 1 protein-coding IGFBPL1 insulin-like growth factor binding protein-like 1 O IGFBP-related protein 10|insulin-like growth factor binding protein related protein 4|insulin-like growth factor-binding protein-like 1|insulin-like growth factor-binding-related protein 4 20121230 -9606 347265 KRT8P11 RP11-13B9.3 KRT8L1 HGNC:31058 9 9q22.33 keratin 8 pseudogene 11 pseudo KRT8P11 keratin 8 pseudogene 11 O - 20121230 -9606 347273 MURC - CAVIN4|cavin-4 HGNC:33742|Ensembl:ENSG00000170681|HPRD:18599|Vega:OTTHUMG00000020368 9 9q31.1 muscle-related coiled-coil protein protein-coding MURC muscle-related coiled-coil protein O muscle-restricted coiled-coil protein 20121230 -9606 347275 BAATP1 - ACNATP HGNC:34504 9 9q31.1 bile acid CoA: amino acid N-acyltransferase pseudogene 1 pseudo BAATP1 bile acid CoA: amino acid N-acyltransferase pseudogene 1 O - 20121230 -9606 347281 LOC347281 - - - 9 9q31.1 topoisomerase I binding, arginine/serine-rich pseudogene pseudo - - - - 20121230 -9606 347292 RPL36P14 - RPL36_5_1005 HGNC:35734 9 9q31.3 ribosomal protein L36 pseudogene 14 pseudo RPL36P14 ribosomal protein L36 pseudogene 14 O - 20121230 -9606 347333 KRT8P14 - - HGNC:33366 X Xp11.3 keratin 8 pseudogene 14 pseudo KRT8P14 keratin 8 pseudogene 14 O - 20121230 -9606 347344 ZNF81 RP1-54B20.8 HFZ20|MRX45|dJ54B20.6 HGNC:13156|MIM:314998|Ensembl:ENSG00000197779|Vega:OTTHUMG00000021462 X Xp11.23 zinc finger protein 81 protein-coding ZNF81 zinc finger protein 81 O - 20121230 -9606 347359 BMP2KL RP3-368A4.2 - HGNC:17080 X Xq13.2 BMP2 inducible kinase-like pseudo BMP2KL BMP2 inducible kinase-like O - 20121230 -9606 347363 KIF4CP - KIF4P1 HGNC:13340 X Xq21.1 kinesin family member 4C pseudogene pseudo KIF4CP kinesin family member 4C pseudogene O - 20121230 -9606 347365 ITIH6 RP1-159A15.1 ITIH5L|UNQ6369|dJ14O9.1 HGNC:28907|Ensembl:ENSG00000102313|HPRD:17164|Vega:OTTHUMG00000021634 X Xp11.22-p11.21 inter-alpha-trypsin inhibitor heavy chain family, member 6 protein-coding ITIH6 inter-alpha-trypsin inhibitor heavy chain family, member 6 O ITI-like protein|inter-alpha inhibitor H5-like protein|inter-alpha-trypsin inhibitor heavy chain H5-like protein|inter-alpha-trypsin inhibitor heavy chain H6 20121230 -9606 347376 H3F3AP5 hCG_1749005 p55 HGNC:42981 X Xp11.22 H3 histone, family 3A, pseudogene 5 pseudo H3F3AP5 H3 histone, family 3A, pseudogene 5 O - 20121230 -9606 347381 LOC347381 - - - X Xp22.32 hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), beta subunit pseudogene pseudo - - - - 20121230 -9606 347402 NLRP3P - NOD13 HGNC:29886 X Xq22.3 NLR family, pyrin domain containing 3 pseudogene pseudo NLRP3P NLR family, pyrin domain containing 3 pseudogene O - 20121230 -9606 347404 LANCL3 - - HGNC:24767|Ensembl:ENSG00000147036|HPRD:13957|Vega:OTTHUMG00000033177 X Xp21.1 LanC lantibiotic synthetase component C-like 3 (bacterial) protein-coding LANCL3 LanC lantibiotic synthetase component C-like 3 (bacterial) O lanC-like protein 3 20121230 -9606 347411 MPC1L - - HGNC:44205 X Xp11.4 mitochondrial pyruvate carrier 1-like protein-coding MPC1L mitochondrial pyruvate carrier 1-like O brain protein 44-like protein 2|mitochondrial pyruvate carrier 1-like protein 20121230 -9606 347422 LOC347422 - - - X Xq27.3 tRNA methyltransferase 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 347442 DCAF8L2 - WDR42C HGNC:31811 X Xp21.3 DDB1 and CUL4 associated factor 8-like 2 protein-coding DCAF8L2 DDB1 and CUL4 associated factor 8-like 2 O DDB1- and CUL4-associated factor 8-like protein 2|WD repeat domain 42C|WD repeat-containing protein 42C 20121230 -9606 347454 SOWAHD - ANKRD58 HGNC:32960|Ensembl:ENSG00000187808|Vega:OTTHUMG00000159606 X Xq24 sosondowah ankyrin repeat domain family member D protein-coding SOWAHD sosondowah ankyrin repeat domain family member D O ankyrin repeat domain 58|ankyrin repeat domain-containing protein 58|ankyrin repeat domain-containing protein SOWAHD|protein sosondowah homolog D 20121230 -9606 347468 OR13H1 - ORX1 HGNC:14755|Ensembl:ENSG00000171054|HPRD:18600|Vega:OTTHUMG00000022411 X Xq26.2 olfactory receptor, family 13, subfamily H, member 1 protein-coding OR13H1 olfactory receptor, family 13, subfamily H, member 1 O olfactory receptor 13H1|olfactory receptor ORX-1|olfactory receptor ORX1 20121230 -9606 347475 CCDC160 - - HGNC:37286|Ensembl:ENSG00000203952 X Xq26.2 coiled-coil domain containing 160 protein-coding CCDC160 coiled-coil domain containing 160 O UPF0625 coiled-coil domain-containing protein ENSP00000359845|coiled-coil domain-containing protein 160 20121230 -9606 347487 CXorf66 RP11-35F15.2 - HGNC:33743|Ensembl:ENSG00000203933|HPRD:18139|Vega:OTTHUMG00000022539 X Xq27.1 chromosome X open reading frame 66 protein-coding CXorf66 chromosome X open reading frame 66 O RP11-35F15.2|uncharacterized protein CXorf66 20121230 -9606 347509 RPL7L1P11 - - HGNC:39493 X Xq28 ribosomal protein L7-like 1 pseudogene 11 pseudo RPL7L1P11 ribosomal protein L7-like 1 pseudogene 11 O - 20121230 -9606 347516 DGAT2L6 RP13-26D14.8 DC3 HGNC:23250|Ensembl:ENSG00000184210|HPRD:13141|Vega:OTTHUMG00000021774 X Xq13.1 diacylglycerol O-acyltransferase 2-like 6 protein-coding DGAT2L6 diacylglycerol O-acyltransferase 2-like 6 O diacylglycerol O-acyltransferase 2 like 6|diacylglycerol O-acyltransferase 2-like protein 6|diacylglycerol O-acyltransferase candidate 3|hDC3 20121230 -9606 347517 RAB41 RP13-26D14.4 - HGNC:18293|Ensembl:ENSG00000147127|Vega:OTTHUMG00000021772 X Xq13.1 RAB41, member RAS oncogene family protein-coding RAB41 RAB41, member RAS oncogene family O RAB41, member RAS homolog family|ras-related protein Rab-41 20121230 -9606 347527 ARSH - sulfatase HGNC:32488|MIM:300586|Ensembl:ENSG00000205667|HPRD:16509|Vega:OTTHUMG00000159612 X Xp22.33 arylsulfatase family, member H protein-coding ARSH arylsulfatase family, member H O ASH|arylsulfatase H 20121230 -9606 347541 MAGEB5 - CT3.3|MAGE-B5 HGNC:23795|MIM:300466 X Xp21.3 melanoma antigen family B, 5 protein-coding MAGEB5 melanoma antigen family B, 5 O MAGE family testis and tumor-specific protein|MAGE-B5 antigen|cancer/testis antigen 3.3|cancer/testis antigen family 3, member 3|melanoma-associated antigen B5 20121208 -9606 347544 RPL18AP16 hCG_2040224 RPL18A_10_1821 HGNC:36288 X Xq28 ribosomal protein L18a pseudogene 16 pseudo RPL18AP16 ribosomal protein L18a pseudogene 16 O - 20121230 -9606 347549 CENPVP3 - - HGNC:43880 X Xp11.22 centromere protein V pseudogene 3 pseudo CENPVP3 centromere protein V pseudogene 3 O - 20121230 -9606 347584 TSPY11P - TSPYP1 HGNC:23903 Y Yp11.2 testis specific protein, Y-linked 11, pseudogene pseudo TSPY11P testis specific protein, Y-linked 11, pseudogene O - 20121209 -9606 347587 MRP63P10 - - HGNC:23965 Y Yp11.2 mitochondrial ribosomal protein 63 pseudogene 10 pseudo MRP63P10 mitochondrial ribosomal protein 63 pseudogene 10 O - 20121230 -9606 347598 RBMY2DP - RBM|RBMY2 HGNC:23259 Y Yq11.23 RNA binding motif protein, Y-linked, family 2, member D pseudogene pseudo RBMY2DP RNA binding motif protein, Y-linked, family 2, member D pseudogene O - 20121209 -9606 347613 PARP4P1 - ADPRTL1P|PARP4P|PARP4PY1 HGNC:18500 Y Yq11.23 poly (ADP-ribose) polymerase family, member 4 pseudogene 1 pseudo PARP4P1 poly (ADP-ribose) polymerase family, member 4 pseudogene 1 O - 20121230 -9606 347673 EIF2S2P2 - bcm2636 HGNC:24654 3 3q27.2 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 2 pseudo EIF2S2P2 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 2 O - 20121230 -9606 347674 LOC347674 - - - 7 7q32 armadillo repeat containing, X-linked 2 pseudogene pseudo - - - - 20121230 -9606 347675 EIF2S2P5 - - HGNC:37793 1 1p13.1 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 5 pseudo EIF2S2P5 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 5 O - 20121230 -9606 347686 SNORD64 - HBII-13 HGNC:32725 15 15q12 small nucleolar RNA, C/D box 64 snoRNA SNORD64 small nucleolar RNA, C/D box 64 O - 20121230 -9606 347687 GNG5P2 RP3-364I1.1 GNG5ps|dJ364I1.1 HGNC:24826 X Xq23 guanine nucleotide binding protein (G protein), gamma 5 pseudogene 2 pseudo GNG5P2 guanine nucleotide binding protein (G protein), gamma 5 pseudogene 2 O - 20121230 -9606 347688 TUBB8 RP11-631M21.2 bA631M21.2 HGNC:20773|Ensembl:ENSG00000173876|HPRD:18244|Vega:OTTHUMG00000017524 10 10p15.3 tubulin, beta 8 class VIII protein-coding TUBB8 tubulin, beta 8 class VIII O HSA10p15 beta-tubulin 4Q|class VIII beta-tubulin|tubulin beta-8 chain 20121230 -9606 347689 SOX2-OT - NCRNA00043|SOX2OT HGNC:20209 3 3q26.33 SOX2 overlapping transcript (non-protein coding) miscRNA SOX2-OT SOX2 overlapping transcript (non-protein coding) O - 20121230 -9606 347694 ECEL1P2 - ECEL2 HGNC:14019 2 2q37.1 endothelin converting enzyme-like 1, pseudogene 2 pseudo ECEL1P2 endothelin converting enzyme-like 1, pseudogene 2 O - 20121230 -9606 347701 S100A11P2 - - HGNC:37840 7 7p14.2 S100 calcium binding protein A11 pseudogene 2 pseudo S100A11P2 S100 calcium binding protein A11 pseudogene 2 O - 20121230 -9606 347702 MRPS36P4 - - HGNC:29774 11 11q23.2 mitochondrial ribosomal protein S36 pseudogene 4 pseudo MRPS36P4 mitochondrial ribosomal protein S36 pseudogene 4 O - 20121230 -9606 347703 MRPS36P5 - - HGNC:29775 12 12q12 mitochondrial ribosomal protein S36 pseudogene 5 pseudo MRPS36P5 mitochondrial ribosomal protein S36 pseudogene 5 O - 20121230 -9606 347704 MRPS36P3 - - HGNC:29773 8 8q24.13 mitochondrial ribosomal protein S36 pseudogene 3 pseudo MRPS36P3 mitochondrial ribosomal protein S36 pseudogene 3 O - 20121230 -9606 347705 MRPS36P1 - - HGNC:29771 3 3p25.3 mitochondrial ribosomal protein S36 pseudogene 1 pseudo MRPS36P1 mitochondrial ribosomal protein S36 pseudogene 1 O - 20121230 -9606 347706 MRPS36P2 - - HGNC:29772 4 4q35.1 mitochondrial ribosomal protein S36 pseudogene 2 pseudo MRPS36P2 mitochondrial ribosomal protein S36 pseudogene 2 O - 20121230 -9606 347707 MRPS36P6 - - HGNC:29776 20 20p12.1 mitochondrial ribosomal protein S36 pseudogene 6 pseudo MRPS36P6 mitochondrial ribosomal protein S36 pseudogene 6 O - 20121230 -9606 347713 DFNA42 - DFNA52 HGNC:20791 5 5q31.1-q32 deafness, autosomal dominant 42 unknown DFNA42 deafness, autosomal dominant 42 O - 20110215 -9606 347715 LOC347715 - - - 17 17p11.1 FLJ11800 related gene protein-coding - - - - 20100404 -9606 347716 USP32P3 - - HGNC:43576 17 17p11.1 ubiquitin specific peptidase 32 pseudogene 3 pseudo USP32P3 ubiquitin specific peptidase 32 pseudogene 3 O - 20121230 -9606 347717 SRP68P3 - SRPSMCR HGNC:30428 17 17p11.1 signal recognition particle 68kDa pseudogene 3 pseudo SRP68P3 signal recognition particle 68kDa pseudogene 3 O - 20121230 -9606 347720 COTL1P2 - CLPSMCR HGNC:24322 17 17p11.1 coactosin-like 1 (Dictyostelium) pseudogene 2 pseudo COTL1P2 coactosin-like 1 (Dictyostelium) pseudogene 2 O - 20121230 -9606 347730 LRRTM1 UNQ675/PRO1309 - HGNC:19408|MIM:610867|Ensembl:ENSG00000162951|HPRD:14323|Vega:OTTHUMG00000130021 2 2p12 leucine rich repeat transmembrane neuronal 1 protein-coding LRRTM1 leucine rich repeat transmembrane neuronal 1 O leucine-rich repeat transmembrane neuronal 1 protein|leucine-rich repeat transmembrane neuronal protein 1 20121230 -9606 347731 LRRTM3 UNQ803/PRO1693 - HGNC:19410|MIM:610869|Ensembl:ENSG00000198739|HPRD:14324|Vega:OTTHUMG00000018332 10 10q21.3 leucine rich repeat transmembrane neuronal 3 protein-coding LRRTM3 leucine rich repeat transmembrane neuronal 3 O leucine-rich repeat transmembrane neuronal protein 3 20121230 -9606 347732 CATSPER3 - CACRC HGNC:20819|MIM:609120|Ensembl:ENSG00000152705|HPRD:16447|Vega:OTTHUMG00000129137 5 5q31.1 cation channel, sperm associated 3 protein-coding CATSPER3 cation channel, sperm associated 3 O ca(v)-like protein|calcium channel repeat containing 1|cation channel sperm-associated protein 3|one-repeat calcium channel-like protein|putative ion channel CatSper3 20121230 -9606 347733 TUBB2B RP11-506K6.1 PMGYSA|bA506K6.1 HGNC:30829|MIM:612850|Ensembl:ENSG00000137285|HPRD:14707|Vega:OTTHUMG00000014143 6 6p25 tubulin, beta 2B class IIb protein-coding TUBB2B tubulin, beta 2B class IIb O class II beta-tubulin isotype|class IIb beta-tubulin|tubulin beta-2B chain|tubulin, beta polypeptide paralog 20121230 -9606 347734 SLC35B2 RP1-302G2.3 PAPST1|SLL|UGTrel4 HGNC:16872|MIM:610788|Ensembl:ENSG00000157593|HPRD:11576|Vega:OTTHUMG00000014760 6 6p12.1-p11.2 solute carrier family 35, member B2 protein-coding SLC35B2 solute carrier family 35, member B2 O 3'-phosphoadenosine 5'-phosphosulfate transporter|PAPS transporter 1|adenosine 3'-phospho 5'-phosphosulfate transporter 1|putative MAPK-activating protein PM15|putative NF-kappa-B-activating protein 48|solute carrier family 35 member B2 variant 2 20121230 -9606 347735 SERINC2 FKSG84 PRO0899|TDE2|TDE2L HGNC:23231|MIM:614549|Ensembl:ENSG00000168528|HPRD:15481|Vega:OTTHUMG00000003796 1 1p35.1 serine incorporator 2 protein-coding SERINC2 serine incorporator 2 O tumor differentially expressed protein 2 20121230 -9606 347736 NME9 - NM23-H9|TXL-2|TXL2|TXNDC6 HGNC:21343|Ensembl:ENSG00000181322|HPRD:18250|Vega:OTTHUMG00000159823 3 3q22.3 NME/NM23 family member 9 protein-coding NME9 NME/NM23 family member 9 O NME family member 9|NME gene family member 9|thioredoxin domain containing 6|thioredoxin domain-containing protein 6|thioredoxin-like 2|thioredoxin-like protein 2 20121230 -9606 347737 DFNA31 - - HGNC:2803|MIM:608645 6 6p21 deafness, autosomal dominant 31 unknown DFNA31 deafness, autosomal dominant 31 O - 20120622 -9606 347741 OTOP3 - - HGNC:19658|MIM:607828|Ensembl:ENSG00000182938|HPRD:09700|Vega:OTTHUMG00000179216 17 17q25.1 otopetrin 3 protein-coding OTOP3 otopetrin 3 O otopetrin-3 20121230 -9606 347744 C6orf52 - - HGNC:20881|Ensembl:ENSG00000137434|Vega:OTTHUMG00000014240 6 6p24.1 chromosome 6 open reading frame 52 protein-coding C6orf52 chromosome 6 open reading frame 52 O putative uncharacterized protein C6orf52 20121230 -9606 347745 PAR4 - - - 15 15q11.2 Prader-Willi/Angelman region gene 4 miscRNA - - - - 20121230 -9606 347746 PAR-SN - - - 15 15q11.2 paternally expressed transcript PAR-SN miscRNA - - - - 20121230 -9606 347747 HPCQTL19 - - MIM:607592 19 19q Prostate cancer aggressiveness quantitative trait locus on chromosome 19 unknown - - - - 20120622 -9606 347853 TBX10 - TBX13|TBX7 HGNC:11593|MIM:604648|Ensembl:ENSG00000167800|HPRD:06872|Vega:OTTHUMG00000167291 11 11q13.2 T-box 10 protein-coding TBX10 T-box 10 O T-box 7|T-box protein 10|T-box transcription factor TBX10|T-box-containing transcriptional activator 20121230 -9606 347862 PDDC1 - - HGNC:26616|Ensembl:ENSG00000177225|HPRD:08172|Vega:OTTHUMG00000133315 11 11p15.5 Parkinson disease 7 domain containing 1 protein-coding PDDC1 Parkinson disease 7 domain containing 1 O Parkinson disease 7 domain-containing protein 1 20121230 -9606 347894 MRPL2P1 - - HGNC:29698 12 12q21.33 mitochondrial ribosomal protein L2 pseudogene 1 pseudo MRPL2P1 mitochondrial ribosomal protein L2 pseudogene 1 O - 20121230 -9606 347902 AMIGO2 - ALI1|AMIGO-2|DEGA HGNC:24073|Ensembl:ENSG00000139211|HPRD:16483|Vega:OTTHUMG00000169616 12 12q13.11 adhesion molecule with Ig-like domain 2 protein-coding AMIGO2 adhesion molecule with Ig-like domain 2 O alivin 1|amphoterin induced gene 2|amphoterin-induced protein 2|differentially expressed in gastric adenocarcinoma|differentially expressed in gastric adenocarcinomas|transmembrane protein AMIGO2 20121230 -9606 347918 EP400NL - - HGNC:26602|HPRD:13413 12 12q24.33 EP400 N-terminal like pseudo EP400NL EP400 N-terminal like O - 20121230 -9606 347933 NLRP9P - NOD25 HGNC:29888 12 12q24.33 NLR family, pyrin domain containing 9 pseudogene pseudo NLRP9P NLR family, pyrin domain containing 9 pseudogene O - 20121230 -9606 347975 VENTXP2 - VENTX2P2 HGNC:30901 13 13q31.1 VENT homeobox pseudogene 2 pseudo VENTXP2 VENT homeobox pseudogene 2 O - 20121230 -9606 348013 TMEM255B RP11-199F6.1 FAM70B HGNC:28297|Ensembl:ENSG00000184497|HPRD:14474|Vega:OTTHUMG00000017398 13 13q34 transmembrane protein 255B protein-coding TMEM255B transmembrane protein 255B O family with sequence similarity 70, member B|protein FAM70B 20121230 -9606 348021 LINC00442 - - HGNC:42779 13 13q12.11 long intergenic non-protein coding RNA 442 miscRNA LINC00442 long intergenic non-protein coding RNA 442 O - 20121230 -9606 348035 MGC40069 - - HPRD:17547 14 14q11.2 uncharacterized protein MGC40069 other - - - - 20111109 -9606 348040 LOC348040 - - - 14 14q22.1 uncharacterized LOC348040 protein-coding - - - - 20111113 -9606 348093 RBPMS2 - - HGNC:19098|Ensembl:ENSG00000166831|HPRD:18601|Vega:OTTHUMG00000172423 15 15q22.31 RNA binding protein with multiple splicing 2 protein-coding RBPMS2 RNA binding protein with multiple splicing 2 O RNA-binding protein with multiple splicing 2 20121230 -9606 348094 ANKDD1A - - HGNC:28002|Ensembl:ENSG00000166839|HPRD:14178|Vega:OTTHUMG00000133051 15 15q22.31 ankyrin repeat and death domain containing 1A protein-coding ANKDD1A ankyrin repeat and death domain containing 1A O ankyrin repeat and death domain-containing protein 1A 20121230 -9606 348110 C15orf38 - - HGNC:28782|Ensembl:ENSG00000242498|HPRD:14697|Vega:OTTHUMG00000154515 15 15q26.1 chromosome 15 open reading frame 38 protein-coding C15orf38 chromosome 15 open reading frame 38 O UPF0552 protein C15orf38 20121230 -9606 348120 CT60 - - HGNC:28003 15 15q11.2 cancer/testis antigen 60 (non-protein coding) miscRNA CT60 cancer/testis antigen 60 (non-protein coding) O - 20121230 -9606 348156 PKD1P5 - HG5 HGNC:30069 16 16p12.3 polycystic kidney disease 1 (autosomal dominant) pseudogene 5 pseudo PKD1P5 polycystic kidney disease 1 (autosomal dominant) pseudogene 5 O - 20121230 -9606 348158 ACSM2B HYST1046 ACSM2|HXMA HGNC:30931|MIM:614359|Ensembl:ENSG00000066813|HPRD:17124|Vega:OTTHUMG00000131555 16 16p12.3 acyl-CoA synthetase medium-chain family member 2B protein-coding ACSM2B acyl-CoA synthetase medium-chain family member 2B O acyl-CoA synthetase medium-chain family member 2|acyl-coenzyme A synthetase ACSM2B, mitochondrial|butyrate--CoA ligase 2B|butyryl-coenzyme A synthetase 2B|middle-chain acyl-CoA synthetase 2B|xenobiotic/medium-chain fatty acid-CoA ligase HXM-A|xenobiotic/medium-chain fatty acid:CoA ligase 20121230 -9606 348162 LOC348162 - - - 16 16p11.2 uncharacterized protein 348162 protein-coding - - - PI-3-kinase-related kinase SMG-1 isoform 1homolog|putative NPIP-like protein ENSP00000342480 20111025 -9606 348174 CLEC18A - MRCL|MRCL1|MRLP2 HGNC:30388|Ensembl:ENSG00000157322|HPRD:17360|Vega:OTTHUMG00000137574 16 16q22.1 C-type lectin domain family 18, member A protein-coding CLEC18A C-type lectin domain family 18, member A O C-type lectin domain family 18 member A|mannose receptor-like 1|mannose receptor-like protein 2|mannose receptor-like protein 3 20121230 -9606 348180 CTU2 - C16orf84|NCS2|UPF0432 HGNC:28005|Ensembl:ENSG00000174177|HPRD:18372|Vega:OTTHUMG00000173417 16 16q24.3 cytosolic thiouridylase subunit 2 homolog (S. pombe) protein-coding CTU2 cytosolic thiouridylase subunit 2 homolog (S. pombe) O cytoplasmic tRNA 2-thiolation protein 2 20121230 -9606 348210 LOC348210 - - - 16 16p11.2 mitochondrial ribosomal protein 63 pseudogene pseudo - - - - 20121230 -9606 348235 SKA2 - FAM33A HGNC:28006|Ensembl:ENSG00000182628|HPRD:13306|Vega:OTTHUMG00000179361 17 17q22 spindle and kinetochore associated complex subunit 2 protein-coding SKA2 spindle and kinetochore associated complex subunit 2 O family with sequence similarity 33, member A|spindle and KT (kinetochore) associated 2|spindle and kinetochore-associated protein 2 20121230 -9606 348249 CCL15-CCL14 - - HGNC:44436 17 17q12 CCL15-CCL14 readthrough (non-protein coding) miscRNA CCL15-CCL14 CCL15-CCL14 readthrough (non-protein coding) O - 20121230 -9606 348254 CCDC144C - - HGNC:29073 17 17p11.2 coiled-coil domain containing 144C pseudo CCDC144C coiled-coil domain containing 144C O - 20121230 -9606 348262 FAM195B - - HGNC:28007|Ensembl:ENSG00000225663|HPRD:14179|Vega:OTTHUMG00000177915 17 17q25.3 family with sequence similarity 195, member B protein-coding FAM195B family with sequence similarity 195, member B O protein FAM195B 20121230 -9606 348303 SELV - - MIM:607919|Ensembl:ENSG00000186838|HPRD:12134|Vega:OTTHUMG00000166446 19 19q13.2 selenoprotein V protein-coding - - - - 20121230 -9606 348327 ZNF530 - - HGNC:29297|Ensembl:ENSG00000183647|HPRD:15822 19 19q13.43 zinc finger protein 530 protein-coding ZNF530 zinc finger protein 530 O - 20121230 -9606 348378 FAM159A UNQ2783/PRO7171 PRO7171|WWLS2783 HGNC:28757|Ensembl:ENSG00000182183|HPRD:14678|Vega:OTTHUMG00000008330 1 1p32.3 family with sequence similarity 159, member A protein-coding FAM159A family with sequence similarity 159, member A O membrane protein FAM159A 20121230 -9606 348487 FAM131C - C1orf117|RP11-5P18.9 HGNC:26717|Ensembl:ENSG00000185519|HPRD:08779|Vega:OTTHUMG00000009525 1 1p36.13 family with sequence similarity 131, member C protein-coding FAM131C family with sequence similarity 131, member C O protein FAM131C 20121230 -9606 348567 TERF1P1 - TERF1P HGNC:16733 21 21q11.2 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene 1 pseudo TERF1P1 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene 1 O - 20121230 -9606 348645 C22orf34 RP1-29C18.7 - HGNC:28010|HPRD:14180 22 22q13.33 chromosome 22 open reading frame 34 miscRNA C22orf34 chromosome 22 open reading frame 34 O - 20121230 -9606 348654 GEN1 - Gen HGNC:26881|MIM:612449|Ensembl:ENSG00000178295|HPRD:08813|Vega:OTTHUMG00000121173 2 2p24.2 Gen endonuclease homolog 1 (Drosophila) protein-coding GEN1 Gen endonuclease homolog 1 (Drosophila) O Gen homolog 1, endonuclease|flap endonuclease GEN homolog 1 20121230 -9606 348738 C2orf48 - - HGNC:26322|Ensembl:ENSG00000163009|HPRD:08049|Vega:OTTHUMG00000119017 2 2p25.1 chromosome 2 open reading frame 48 protein-coding C2orf48 chromosome 2 open reading frame 48 O uncharacterized protein C2orf48 20121230 -9606 348751 FONG - - MIM:614308 2 2q33.1 uncharacterized LOC348751 miscRNA - - - - 20121230 -9606 348761 LOC348761 - - - 2 2q37.1 uncharacterized LOC348761 miscRNA - - - - 20121230 -9606 348793 WDR53 - - HGNC:28786|Ensembl:ENSG00000185798|HPRD:14700|Vega:OTTHUMG00000155572 3 3q29 WD repeat domain 53 protein-coding WDR53 WD repeat domain 53 O WD domain, G-beta repeat-containing protein|WD repeat-containing protein 53 20121230 -9606 348801 LNP1 - - HGNC:28014|Ensembl:ENSG00000206535|Vega:OTTHUMG00000159082 3 3q12.2 leukemia NUP98 fusion partner 1 protein-coding LNP1 leukemia NUP98 fusion partner 1 O - 20121230 -9606 348807 CCDC37 - - HGNC:26842|Ensembl:ENSG00000163885|HPRD:08805|Vega:OTTHUMG00000162691 3 3q21.3 coiled-coil domain containing 37 protein-coding CCDC37 coiled-coil domain containing 37 O coiled-coil domain-containing protein 37 20121230 -9606 348808 NPHP3-AS1 - NCRNA00119 HGNC:24129 3 3q22.1 NPHP3 antisense RNA 1 miscRNA NPHP3-AS1 NPHP3 antisense RNA 1 O - 20121230 -9606 348817 LOC348817 - - - 3 3p21.33 uncharacterized LOC348817 unknown - - - - 20120508 -9606 348825 TPRXL - - HGNC:32178|MIM:611167 3 3p25.1 tetra-peptide repeat homeobox-like pseudo TPRXL tetra-peptide repeat homeobox-like O - 20121230 -9606 348840 ANKRD18DP - - HGNC:28016|HPRD:14181 3 3q29 ankyrin repeat domain 18D, pseudogene pseudo ANKRD18DP ankyrin repeat domain 18D, pseudogene O - 20121230 -9606 348910 RAF1P1 - - HGNC:9830 4 4p16.1 v-raf-1 murine leukemia viral oncogene homolog 1 pseudogene 1 pseudo RAF1P1 v-raf-1 murine leukemia viral oncogene homolog 1 pseudogene 1 O - 20121230 -9606 348926 FAM86EP - - HGNC:28017 4 4p16.3 family with sequence similarity 86, member A pseudogene pseudo FAM86EP family with sequence similarity 86, member E, pseudogene O - 20121230 -9606 348932 SLC6A18 - Xtrp2 HGNC:26441|MIM:610300|Ensembl:ENSG00000164363|HPRD:15396|Vega:OTTHUMG00000090356 5 5p15.33 solute carrier family 6, member 18 protein-coding SLC6A18 solute carrier family 6, member 18 O sodium channel-like protein|sodium- and chloride-dependent transporter XTRP2|sodium-dependent neutral amino acid transporter B(0)AT3|solute carrier family 6 (neurotransmitter transporter), member 18|system B(0) neutral amino acid transporter AT3 20121230 -9606 348938 NIPAL4 - ICHTHYIN|ICHYN HGNC:28018|MIM:609383|Ensembl:ENSG00000172548|Vega:OTTHUMG00000163497 5 5q33.3 NIPA-like domain containing 4 protein-coding NIPAL4 NIPA-like domain containing 4 O NIPA-like protein 4|magnesium transporter NIPA4|non-imprinted in Prader-Willi/Angelman syndrome region protein 4 20121230 -9606 348958 LOC348958 - - - 5 5q23.1 mitochondrial ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 348980 HCN1 - BCNG-1|BCNG1|HAC-2 HGNC:4845|MIM:602780|Ensembl:ENSG00000164588|HPRD:09099|Vega:OTTHUMG00000131155 5 5p12 hyperpolarization activated cyclic nucleotide-gated potassium channel 1 protein-coding HCN1 hyperpolarization activated cyclic nucleotide-gated potassium channel 1 O brain cyclic nucleotide gated channel 1|brain cyclic nucleotide-gated channel 1|potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 1 20121230 -9606 348995 NUP43 - bA350J20.1|p42 HGNC:21182|MIM:608141|Ensembl:ENSG00000120253|HPRD:12174|Vega:OTTHUMG00000015795 6 6q25.1 nucleoporin 43kDa protein-coding NUP43 nucleoporin 43kDa O nucleoporin Nup43|nup107-160 subcomplex subunit Nup43 20121230 -9606 349075 ZNF713 - - HGNC:22043|Ensembl:ENSG00000178665|HPRD:13440|Vega:OTTHUMG00000156175 7 7p11.2 zinc finger protein 713 protein-coding ZNF713 zinc finger protein 713 O - 20121230 -9606 349114 LINC00265 - NCRNA00265 HGNC:28019|HPRD:14182 7 7p14.1 long intergenic non-protein coding RNA 265 miscRNA LINC00265 long intergenic non-protein coding RNA 265 O - 20121230 -9606 349136 WDR86 - - HGNC:28020|Ensembl:ENSG00000187260|HPRD:14183|Vega:OTTHUMG00000150764 7 7q36.1 WD repeat domain 86 protein-coding WDR86 WD repeat domain 86 O WD repeat-containing protein 86 20121230 -9606 349149 GJC3 - CX29|CX30.2|CX31.3|GJE1 HGNC:17495|MIM:611925|Ensembl:ENSG00000176402|HPRD:13580|Vega:OTTHUMG00000156649 7 7q22.1 gap junction protein, gamma 3, 30.2kDa protein-coding GJC3 gap junction protein, gamma 3, 30.2kDa O connexin 29|connexin-30.2|connexin-31.3|gap junction epsilon-1 protein|gap junction gamma-3 protein 20121230 -9606 349152 DPY19L2P2 - - HGNC:21764|HPRD:08772 7 7q22.1 dpy-19-like 2 pseudogene 2 (C. elegans) pseudo DPY19L2P2 dpy-19-like 2 pseudogene 2 (C. elegans) O - 20121230 -9606 349158 CYCSP20 - HCP20 HGNC:24394 7 7q32.1 cytochrome c, somatic pseudogene 20 pseudo CYCSP20 cytochrome c, somatic pseudogene 20 O - 20121230 -9606 349160 LOC349160 - - - 7 7q34 uncharacterized LOC349160 miscRNA - - - - 20121230 -9606 349196 LOC349196 - - - 8 8p23.1 uncharacterized LOC349196 miscRNA - - - - 20121209 -9606 349198 CYCSP3 - HCP21|HS7 HGNC:24395 8 8p12 cytochrome c, somatic pseudogene 3 pseudo CYCSP3 cytochrome c, somatic pseudogene 3 O - 20121230 -9606 349334 FOXD4L4 - FOXD4b|bA460E7.2 HGNC:23762|Ensembl:ENSG00000184659|HPRD:17013|Vega:OTTHUMG00000013337 9 9q21.11 forkhead box D4-like 4 protein-coding FOXD4L4 forkhead box D4-like 4 O FOXD4-like 4|forkhead box protein D4-like 4|forkhead box protein D4b|myeloid factor-gamma|winged helix factor-1|winged helix transcription factor beta 20121216 -9606 349372 NANOGP10 - NANOGP5 HGNC:23108 X Xp11.3 Nanog homeobox pseudogene 10 pseudo NANOGP10 Nanog homeobox pseudogene 10 O - 20121230 -9606 349386 NANOGP9 - NANOGP6 HGNC:23107 X Xq12 Nanog homeobox pseudogene 9 pseudo NANOGP9 Nanog homeobox pseudogene 9 O - 20121230 -9606 349391 CYCSP44 - HCP44 HGNC:24418 X Xq27.3 cytochrome c, somatic pseudogene 44 pseudo CYCSP44 cytochrome c, somatic pseudogene 44 O - 20121230 -9606 349408 TLR8-AS1 - - HGNC:40720 X Xp22.31 TLR8 antisense RNA 1 miscRNA TLR8-AS1 TLR8 antisense RNA 1 O - 20121230 -9606 349448 TUBB1P1 - - HGNC:23982 Y Yq11.222 tubulin, beta 1 pseudogene 1 pseudo TUBB1P1 tubulin, beta 1 pseudogene 1 O - 20121209 -9606 349565 NMNAT3 FKSG76 PNAT-3|PNAT3 HGNC:20989|MIM:608702|Ensembl:ENSG00000163864|HPRD:16370|Vega:OTTHUMG00000159951 3 3q23 nicotinamide nucleotide adenylyltransferase 3 protein-coding NMNAT3 nicotinamide nucleotide adenylyltransferase 3 O NMN adenylyltransferase 3|NaMN adenylyltransferase 3|nicotinamide mononucleotide adenylyltransferase 3|nicotinate-nucleotide adenylyltransferase 3|pyridine nucleotide adenylyltransferase 3 20121230 -9606 349633 C11orf34 - PLET1 HGNC:30053|MIM:611904|Ensembl:ENSG00000188771|Vega:OTTHUMG00000167189 11 11q23.1 chromosome 11 open reading frame 34 protein-coding C11orf34 chromosome 11 open reading frame 34 O placenta expressed transcript 1|placenta-expressed transcript 1 protein 20121230 -9606 349667 RTN4RL2 - NGRH1|NgR2 HGNC:23053|MIM:610462|Ensembl:ENSG00000186907|HPRD:11524|Vega:OTTHUMG00000167028 11 11q12.1 reticulon 4 receptor-like 2 protein-coding RTN4RL2 reticulon 4 receptor-like 2 O Nogo-66 receptor homolog 1|nogo receptor-like 3|nogo-66 receptor-related protein 2|reticulon-4 receptor-like 2 20121230 -9606 349814 VENTXP3 - VENTX2P3 HGNC:30902 12 12q21.1 VENT homeobox pseudogene 3 pseudo VENTXP3 VENT homeobox pseudogene 3 O - 20121230 -9606 349842 MRPS18CP4 - - HGNC:29745 12 12p13.31 mitochondrial ribosomal protein S18C pseudogene 4 pseudo MRPS18CP4 mitochondrial ribosomal protein S18C pseudogene 4 O - 20121230 -9606 350297 MRPS21P8 - - HGNC:29755 16 16q12.1 mitochondrial ribosomal protein S21 pseudogene 8 pseudo MRPS21P8 mitochondrial ribosomal protein S21 pseudogene 8 O - 20121230 -9606 350383 GPR142 - PGR2 HGNC:20088|MIM:609046|Ensembl:ENSG00000257008|HPRD:16424|Vega:OTTHUMG00000178581 17 17q25.1 G protein-coupled receptor 142 protein-coding GPR142 G protein-coupled receptor 142 O G-protein coupled receptor PGR2|probable G-protein coupled receptor 142 20121230 -9606 351143 MRPL50P1 - - HGNC:29719 2 2p22.3 mitochondrial ribosomal protein L50 pseudogene 1 pseudo MRPL50P1 mitochondrial ribosomal protein L50 pseudogene 1 O - 20121230 -9606 351355 LOC351355 - - - 2 2q34 replication factor C (activator 1) 2, 40kDa pseudogene pseudo - - - - 20100721 -9606 351449 MRPS31P1 - - HGNC:29763 3 3p21.33 mitochondrial ribosomal protein S31 pseudogene 1 pseudo MRPS31P1 mitochondrial ribosomal protein S31 pseudogene 1 O - 20121230 -9606 351773 MRPL51P1 - - HGNC:29723 4 4p15.2 mitochondrial ribosomal protein L51 pseudogene 1 pseudo MRPL51P1 mitochondrial ribosomal protein L51 pseudogene 1 O - 20121230 -9606 352290 MRPS23P1 - - HGNC:29758 7 7p13 mitochondrial ribosomal protein S23 pseudogene 1 pseudo MRPS23P1 mitochondrial ribosomal protein S23 pseudogene 1 O - 20121230 -9606 352852 CYCSP45 - HCP45 HGNC:24419 X Xq28 cytochrome c, somatic pseudogene 45 pseudo CYCSP45 cytochrome c, somatic pseudogene 45 O - 20121230 -9606 352887 GYG2P1 - GYG2P HGNC:4701 Y Yq11.21 glycogenin 2 pseudogene 1 pseudo GYG2P1 glycogenin 2 pseudogene 1 O - 20121230 -9606 352896 GPR143P - OA1P HGNC:18499 Y Yp11.2 G protein-coupled receptor 143 pseudogene pseudo GPR143P G protein-coupled receptor 143 pseudogene O - 20121230 -9606 352905 CTBP2P1 - - HGNC:23940 Y Yq12 C-terminal binding protein 2 pseudogene 1 pseudo CTBP2P1 C-terminal binding protein 2 pseudogene 1 O - 20121209 -9606 352909 DNAAF3 - C19orf51|CILD2|DAB1|PCD|PF22 HGNC:30492|MIM:614566|Ensembl:ENSG00000167646|HPRD:14185|Vega:OTTHUMG00000128547 19 19q13.4 dynein, axonemal, assembly factor 3 protein-coding DNAAF3 dynein, axonemal, assembly factor 3 O UPF0470 protein C19orf51|ciliary dyskinesia, primary 2|dynein assembly factor 3, axonemal 20121230 -9606 352954 GATS tcag7.1177 STAG3OS HGNC:29954|Ensembl:ENSG00000160844|HPRD:17030 7 7q22.1 GATS, stromal antigen 3 opposite strand protein-coding GATS GATS, stromal antigen 3 opposite strand O STAG3 opposite strand transcript protein|opposite strand transcription unit to STAG3|putative protein GATS|stromal antigen 3 opposite strand 20121230 -9606 352956 MMVP2 - - HGNC:19145|MIM:607829 11 11p15.4 myxomatous mitral valve prolapse 2 unknown MMVP2 myxomatous mitral valve prolapse 2 O - 20120622 -9606 352957 MICF - - HGNC:16801 6 6p21.3 MHC class I polypeptide-related sequence F (pseudogene) pseudo MICF MHC class I polypeptide-related sequence F (pseudogene) O - 20121230 -9606 352961 HCG26 - 3.8-1|NCRNA00191|bCX205D4.4|bPG181B23.4 HGNC:29671 6 6p21.3 HLA complex group 26 (non-protein coding) miscRNA HCG26 HLA complex group 26 (non-protein coding) O - 20121230 -9606 352962 HLA-V XXbac-BCX209H21.4 HLA-75|dJ377H14.4 HGNC:23482 6 6p21.3 major histocompatibility complex, class I, V (pseudogene) pseudo HLA-V major histocompatibility complex, class I, V (pseudogene) O - 20121230 -9606 352963 HLA-P - C6orf101|HLA-90|dJ377H14.3 HGNC:21196 6 6p21.2 major histocompatibility complex, class I, P (pseudogene) pseudo HLA-P major histocompatibility complex, class I, P (pseudogene) O - 20121230 -9606 352964 HLA-T - HLA-16 HGNC:23478 6 6p21.3 major histocompatibility complex, class I, T (pseudogene) pseudo HLA-T major histocompatibility complex, class I, T (pseudogene) O - 20121230 -9606 352965 HLA-U - HLA-21 HGNC:23477 6 6p21.3 major histocompatibility complex, class I, U (pseudogene) pseudo HLA-U major histocompatibility complex, class I, U (pseudogene) O - 20121230 -9606 352966 HLA-W - HLA-80 HGNC:23425 6 6p21.3 major histocompatibility complex, class I, W (pseudogene) pseudo HLA-W major histocompatibility complex, class I, W (pseudogene) O - 20121230 -9606 352967 MICG - - HGNC:16802 6 6p21.3 MHC class I polypeptide-related sequence G (pseudogene) pseudo MICG MHC class I polypeptide-related sequence G (pseudogene) O - 20121230 -9606 352990 HCP5B - HCP5P10|P5-10|P5.9 HGNC:30984 6 6p21.3 HLA complex P5B (non-protein coding) unknown HCP5B HLA complex P5B (non-protein coding) O - 20120726 -9606 352999 C6orf58 - - HGNC:20960|Ensembl:ENSG00000184530|HPRD:17379|Vega:OTTHUMG00000015530 6 6q22.33 chromosome 6 open reading frame 58 protein-coding C6orf58 chromosome 6 open reading frame 58 O UPF0762 protein C6orf58 20121230 -9606 353000 HCGVIII-2 - - - 6 6p21.3 HCGVIII-2 pseudogene pseudo - - - - 20121230 -9606 353001 HCG4P3 - HCGIV-03|HCGIV-3|HCGIV.2 HGNC:22922 6 6p21.3 HLA complex group 4 pseudogene 3 pseudo HCG4P3 HLA complex group 4 pseudogene 3 O - 20121230 -9606 353002 HCG4P4 - HCGIV-04|HCGIV-4|HCGIV.3 HGNC:22924 6 6p21.3 HLA complex group 4 pseudogene 4 pseudo HCG4P4 HLA complex group 4 pseudogene 4 O - 20121230 -9606 353003 HCG4P5 - HCGIV-05|HCGIV-5|HCGIV.4 HGNC:22925 6 6p21.3 HLA complex group 4 pseudogene 5 pseudo HCG4P5 HLA complex group 4 pseudogene 5 O - 20121230 -9606 353004 HCG4P7 - HCGIV-07|HCGIV-7|HCGIV.C HGNC:22926 6 6p21.3 HLA complex group 4 pseudogene 7 pseudo HCG4P7 HLA complex group 4 pseudogene 7 O - 20121230 -9606 353005 HCG4P8 - HCGIV-08|HCGIV-8|HCGIV.7 HGNC:22927 6 6p21.3 HLA complex group 4 pseudogene 8 pseudo HCG4P8 HLA complex group 4 pseudogene 8 O - 20121230 -9606 353007 3.8-1.2 - - - 6 6p21.3 HLA complex group 26 (non-protein coding) pseudogene pseudo - - - - 20120815 -9606 353008 3.8-1.3 - - - 6 6p21.3 HLA complex group 26 (non-protein coding) pseudogene pseudo - - - - 20121230 -9606 353009 3.8-1.4 - - - 6 6p21.3 HLA complex group 26 (non-protein coding) pseudogene pseudo - - - - 20121230 -9606 353010 3.8-1.5 - - - 6 6p21.3 HLA complex group 26 (non-protein coding) pseudogene pseudo - - - - 20121230 -9606 353013 RPL7AP7 - RPL7A_13_677|RPL7B|dJ377H14.2 HGNC:21395 6 6p21.3 ribosomal protein L7a pseudogene 7 pseudo RPL7AP7 ribosomal protein L7a pseudogene 7 O - 20121230 -9606 353014 HCG4P9 - HCGIV-09|HCGIV-9 HGNC:22928 6 6p21.3 HLA complex group 4 pseudogene 9 pseudo HCG4P9 HLA complex group 4 pseudogene 9 O - 20121230 -9606 353019 HCG9P5 - HCGIX-5|dJ377H14.6 HGNC:30983 6 6p21.3 HLA complex group 9 pseudogene 5 pseudo HCG9P5 HLA complex group 9 pseudogene 5 O - 20121230 -9606 353020 HCG4P11 - HCGIV-11|HCGIV.10 HGNC:22930 6 6p21.3 HLA complex group 4 pseudogene 11 pseudo HCG4P11 HLA complex group 4 pseudogene 11 O - 20121230 -9606 353088 ZNF429 - - HGNC:20817|Ensembl:ENSG00000197013|HPRD:18342 19 19p13.1 zinc finger protein 429 protein-coding ZNF429 zinc finger protein 429 O - 20121230 -9606 353089 RAET1F - - HGNC:16794 6 6q24.1-q25.1 retinoic acid early transcript 1F pseudogene pseudo RAET1F retinoic acid early transcript 1F pseudogene O - 20121230 -9606 353091 RAET1G - ULBP5 HGNC:16795|MIM:609244|Ensembl:ENSG00000203722|HPRD:16467|Vega:OTTHUMG00000015802 6 6q24.1-q25.1 retinoic acid early transcript 1G protein-coding RAET1G retinoic acid early transcript 1G O retinoic acid early transcript 1G protein|retinoic acid early transcript 1G pseudogene 20121230 -9606 353094 RAET1M - - HGNC:16799 6 6q25.1 retinoic acid early transcript 1M pseudogene pseudo RAET1M retinoic acid early transcript 1M pseudogene O - 20121230 -9606 353116 RILPL1 - GOSPEL|RLP1 HGNC:26814|MIM:614092|Ensembl:ENSG00000188026|HPRD:13435|Vega:OTTHUMG00000168686 12 12q24.31 Rab interacting lysosomal protein-like 1 protein-coding RILPL1 Rab interacting lysosomal protein-like 1 O RILP-like protein 1|rab-interacting lysosomal-like protein 1 20121230 -9606 353124 EIG2 - EGI14 MIM:606972 14 14q23 Epilepsy, idiopathic generalized, susceptibility to 2 unknown - - - - 20120622 -9606 353125 HDLC3 - - MIM:607687 16 16q24.1 High density lipoprotein cholesterol, low serum, 3 unknown - - - - 20120622 -9606 353126 OB10Q - - MIM:607514 10 10q Obesity, susceptibility to, on chromosome 10q unknown - - - - 20120622 -9606 353127 HDLC2 - - MIM:607053 8 8q23 High density lipoprotein cholesterol level QTL on chromosome 8 unknown - - - - 20121219 -9606 353128 AD8 - - MIM:607116 20 20p Alzheimer disease 8 unknown - - - - 20120622 -9606 353131 LCE1A - LEP1 HGNC:29459|MIM:612603|Ensembl:ENSG00000186844|HPRD:13966 1 1q21.3 late cornified envelope 1A protein-coding LCE1A late cornified envelope 1A O late cornified envelope protein 1A|late envelope protein 1 20121230 -9606 353132 LCE1B - LEP2|SPRL2A HGNC:16611|MIM:612604|Ensembl:ENSG00000196734|HPRD:17259|Vega:OTTHUMG00000014402 1 1q21.3 late cornified envelope 1B protein-coding LCE1B late cornified envelope 1B O late cornified envelope protein 1B|late envelope protein 2|small proline rich-like (epidermal differentiation complex) 2A|small proline-rich-like epidermal differentiation complex protein 2A 20121230 -9606 353133 LCE1C - LEP3 HGNC:29464|MIM:612605|Ensembl:ENSG00000197084|HPRD:13967|Vega:OTTHUMG00000012445 1 1q21.3 late cornified envelope 1C protein-coding LCE1C late cornified envelope 1C O late cornified envelope protein 1C|late envelope protein 3 20121230 -9606 353134 LCE1D - LEP4 HGNC:29465|MIM:612606|Ensembl:ENSG00000172155|HPRD:13968|Vega:OTTHUMG00000012444 1 1q21.3 late cornified envelope 1D protein-coding LCE1D late cornified envelope 1D O late cornified envelope protein 1D|late envelope protein 4 20121230 -9606 353135 LCE1E - LEP5 HGNC:29466|MIM:612607|Ensembl:ENSG00000186226|HPRD:13969|Vega:OTTHUMG00000012405 1 1q21.3 late cornified envelope 1E protein-coding LCE1E late cornified envelope 1E O late cornified envelope protein 1E|late envelope protein 5 20121230 -9606 353137 LCE1F - LEP6 HGNC:29467|MIM:612608|Ensembl:ENSG00000240386|HPRD:13970|Vega:OTTHUMG00000012403 1 1q21.3 late cornified envelope 1F protein-coding LCE1F late cornified envelope 1F O late cornified envelope protein 1F|late envelope protein 6 20121230 -9606 353138 LEP7 - - - 1 1q21.3 late envelope protein 7 protein-coding - - - uncharacterized protein LOC353138 20111026 -9606 353139 LCE2A - LEP9 HGNC:29469|MIM:612609|Ensembl:ENSG00000187173|HPRD:13971|Vega:OTTHUMG00000012392 1 1q21.3 late cornified envelope 2A protein-coding LCE2A late cornified envelope 2A O late cornified envelope protein 2A|late envelope protein 9 20121230 -9606 353140 LCE2C - LEP11 HGNC:29460|MIM:612611|Ensembl:ENSG00000187180|HPRD:13972|Vega:OTTHUMG00000012389 1 1q21.3 late cornified envelope 2C protein-coding LCE2C late cornified envelope 2C O late cornified envelope protein 2C|late envelope protein 11 20121230 -9606 353141 LCE2D - LEP12|SPRL1A HGNC:16518|MIM:612612|Ensembl:ENSG00000187223|HPRD:17261|Vega:OTTHUMG00000014400 1 1q21.3 late cornified envelope 2D protein-coding LCE2D late cornified envelope 2D O late cornified envelope protein 2D|late envelope protein 12|small proline rich-like (epidermal differentiation complex) 1A|small proline-rich-like epidermal differentiation complex protein 1A 20121230 -9606 353142 LCE3A - LEP13 HGNC:29461|MIM:612613|Ensembl:ENSG00000185962|HPRD:13973|Vega:OTTHUMG00000012397 1 1q21.3 late cornified envelope 3A protein-coding LCE3A late cornified envelope 3A O late cornified envelope protein 3A|late envelope protein 13 20121230 -9606 353143 LCE3B - LEP14 HGNC:29462|MIM:612614|Ensembl:ENSG00000187238|HPRD:13974|Vega:OTTHUMG00000012395 1 1q21.3 late cornified envelope 3B protein-coding LCE3B late cornified envelope 3B O late cornified envelope protein 3B|late envelope protein 14 20121230 -9606 353144 LCE3C - LEP15|SPRL3A HGNC:16612|MIM:612615|Ensembl:ENSG00000244057|HPRD:17262|Vega:OTTHUMG00000014403 1 1q21.3 late cornified envelope 3C protein-coding LCE3C late cornified envelope 3C O late cornified envelope protein 3C|late envelope protein 15|small proline rich-like (epidermal differentiation complex) 3A|small proline-rich-like epidermal differentiation complex protein 3A 20121230 -9606 353145 LCE3E - LEP17 HGNC:29463|MIM:612617|Ensembl:ENSG00000185966|HPRD:13975|Vega:OTTHUMG00000012393 1 1q21.3 late cornified envelope 3E protein-coding LCE3E late cornified envelope 3E O late cornified envelope protein 3E|late envelope protein 17 20121230 -9606 353147 DSAP2 - - MIM:607728 15 15q25.1-q26.1 disseminated superficial actinic porokeratosis 2 unknown - - - - 20120622 -9606 353149 TBC1D26 - - HGNC:28745|Ensembl:ENSG00000214946|HPRD:14670|Vega:OTTHUMG00000059071 17 17p11.2 TBC1 domain family, member 26 protein-coding TBC1D26 TBC1 domain family, member 26 O TBC1 domain family member 26 20121230 -9606 353163 CAP2P1 - - HGNC:20142 14 14q31.3 CAP, adenylate cyclase-associated protein, 2 (yeast) pseudogene 1 pseudo CAP2P1 CAP, adenylate cyclase-associated protein, 2 (yeast) pseudogene 1 O - 20121230 -9606 353164 TAS2R42 - T2R24|T2R55|TAS2R55|hT2R55 HGNC:18888|MIM:613966|Ensembl:ENSG00000186136|HPRD:18137|Vega:OTTHUMG00000168567 12 12p13 taste receptor, type 2, member 42 protein-coding TAS2R42 taste receptor, type 2, member 42 O T2R42|candidate taste receptor hT2R55|taste receptor T2R55|taste receptor type 2 member 42|taste receptor type 2 member 55 20121230 -9606 353173 ZLS - - MIM:135500 3 3p21.2 Zimmerman-Laband Syndrome unknown - - - - 20110215 -9606 353174 ZACN - L2|LGICZ|LGICZ1|ZAC|ZAC1 HGNC:29504|MIM:610935|Ensembl:ENSG00000186919|HPRD:17271|Vega:OTTHUMG00000157186 17 17q25.3 zinc activated ligand-gated ion channel protein-coding ZACN zinc activated ligand-gated ion channel O ligand-gated ion channel subunit|ligand-gated ion channel zinc-activated 1|ligand-gated ion channel, zinc activated 1|ligand-gated ion-channel receptor L2|zinc activated ligand-gated ion channel 1|zinc-activated ligand-gated ion channel 20121230 -9606 353189 SLCO4C1 - OATP-H|OATP-M1|OATP4C1|OATPX|PRO2176|SLC21A20 HGNC:23612|MIM:609013|Ensembl:ENSG00000173930|HPRD:12354|Vega:OTTHUMG00000162757 5 5q21.2 solute carrier organic anion transporter family, member 4C1 protein-coding SLCO4C1 solute carrier organic anion transporter family, member 4C1 O organic anion transporter M1|solute carrier family 21 member 20|solute carrier organic anion transporter family member 4C1 20121230 -9606 353194 LOC353194 - - - 17 17p11.2 keratin pseudogene pseudo - - - - 20121230 -9606 353196 KRT16P5 - - HGNC:37810 17 17p11.1 keratin 16 pseudogene 5 pseudo KRT16P5 keratin 16 pseudogene 5 O - 20121230 -9606 353219 KAAG1 - RU2AS HGNC:21031|MIM:608211|Ensembl:ENSG00000146049|HPRD:09741|Vega:OTTHUMG00000014354 6 6p22.1 kidney associated antigen 1 protein-coding KAAG1 kidney associated antigen 1 O RU2 antisense gene protein|kidney-associated antigen 1 20121230 -9606 353238 PADI6 - hPADVI HGNC:20449|MIM:610363|HPRD:15095 1 1p36.13 peptidyl arginine deiminase, type VI protein-coding PADI6 peptidyl arginine deiminase, type VI O peptidyl arginine deiminase-like protein|peptidylarginine deiminase type 6|protein-arginine deiminase type-6 20121230 -9606 353267 FAM103A2P - C6orf119|dJ427A4.2 HGNC:21234 6 6q27 family with sequence similarity 103, member A2 pseudogene pseudo FAM103A2P family with sequence similarity 103, member A2 pseudogene O - 20121230 -9606 353274 ZNF445 - ZKSCAN15|ZNF168 HGNC:21018|Ensembl:ENSG00000185219|HPRD:11719|Vega:OTTHUMG00000133042 3 3p21.32 zinc finger protein 445 protein-coding ZNF445 zinc finger protein 445 O zinc finger protein 168|zinc finger protein with KRAB and SCAN domains 15 20121230 -9606 353288 KRT26 - CK26|K25IRS2|K26|KRT25B HGNC:30840|Ensembl:ENSG00000186393|HPRD:17243|Vega:OTTHUMG00000133370 17 17q21.2 keratin 26 protein-coding KRT26 keratin 26 O CK-26|K25B|cytokeratin-26|keratin 25B|keratin, type I cytoskeletal 26|keratin-25B|keratin-26|type I inner root sheath specific keratin 25 irs2|type I inner root sheath-specific keratin-K25irs2 20121230 -9606 353293 SPG23 - - HGNC:21340|MIM:270750 1 1q24-q32 spastic paraplegia 23 (autosomal recessive) unknown SPG23 spastic paraplegia 23 (autosomal recessive) O - 20110215 -9606 353299 RGSL1 RP11-20H6.2 RGSL|RGSL2 HGNC:18636|MIM:611012|Ensembl:ENSG00000121446|HPRD:17971|Vega:OTTHUMG00000035217 1 1q25 regulator of G-protein signaling like 1 protein-coding RGSL1 regulator of G-protein signaling like 1 O regulator of G-protein signaling like 2|regulator of G-protein signaling protein-like 20121230 -9606 353322 ANKRD37 - Lrp2bp HGNC:29593|Ensembl:ENSG00000186352|HPRD:17461|Vega:OTTHUMG00000160459 4 4q35.1 ankyrin repeat domain 37 protein-coding ANKRD37 ankyrin repeat domain 37 O ankyrin repeat domain-containing protein 37|hLrp2bp|low density lipoprotein receptor-related protein binding protein|low-density lipoprotein receptor-related protein 2-binding protein 20121230 -9606 353323 KRTAP12-2 - KAP12.2|KRTAP12.2 HGNC:20530|Ensembl:ENSG00000221864|HPRD:11198|Vega:OTTHUMG00000057636 21 21q22.3 keratin associated protein 12-2 protein-coding KRTAP12-2 keratin associated protein 12-2 O high sulfur keratin-associated protein 12.2|keratin-associated protein 12-2|keratin-associated protein 12.2 20121230 -9606 353324 SPATA12 - SRG5 HGNC:23221|MIM:609869|Ensembl:ENSG00000186451|HPRD:15426|Vega:OTTHUMG00000158862 3 3p14.3 spermatogenesis associated 12 protein-coding SPATA12 spermatogenesis associated 12 O spermatogenesis-associated protein 12|spermatogenesis-related protein 5 20121230 -9606 353329 PSIP1P1 - PSIP1P HGNC:31132 9 9p22.2 PC4 and SFRS1 interacting protein 1 pseudogene 1 pseudo PSIP1P1 PC4 and SFRS1 interacting protein 1 pseudogene 1 O - 20121230 -9606 353332 KRTAP12-1 - KAP12.1|KRTAP12.1 HGNC:20529|Ensembl:ENSG00000187175|HPRD:11197|Vega:OTTHUMG00000057639 21 21q22.3 keratin associated protein 12-1 protein-coding KRTAP12-1 keratin associated protein 12-1 O high sulfur keratin-associated protein 12.1|keratin-associated protein 12-1|keratin-associated protein 12.1 20121230 -9606 353333 KRTAP10-10 - KAP10.10|KAP18.10|KRTAP18-10|KRTAP18.10 HGNC:22972|Ensembl:ENSG00000221859|HPRD:11185|Vega:OTTHUMG00000057631 21 21q22.3 keratin associated protein 10-10 protein-coding KRTAP10-10 keratin associated protein 10-10 O high sulfur keratin-associated protein 10.10|keratin-associated protein 10-10|keratin-associated protein 10.10|keratin-associated protein 18-10|keratin-associated protein 18.10 20121230 -9606 353345 GPR141 - PGR13 HGNC:19997|MIM:609045|Ensembl:ENSG00000187037|HPRD:16423 7 7p14.1 G protein-coupled receptor 141 protein-coding GPR141 G protein-coupled receptor 141 O G-protein coupled receptor PGR13|probable G-protein coupled receptor 141 20121230 -9606 353347 DFNA53 - - HGNC:21402|MIM:609965 14 14q11-q12 deafness, autosomal dominant 53 unknown DFNA53 deafness, autosomal dominant 53 O - 20120622 -9606 353355 ZNF233 - - HGNC:30946|Ensembl:ENSG00000159915|HPRD:15756|Vega:OTTHUMG00000182354 19 19q13.31 zinc finger protein 233 protein-coding ZNF233 zinc finger protein 233 O - 20121230 -9606 353376 TICAM2 - TICAM-2|TIRAP3|TIRP|TRAM HGNC:21354|MIM:608321|Ensembl:ENSG00000243414|HPRD:16313|Vega:OTTHUMG00000162905 5 5q23.1 toll-like receptor adaptor molecule 2 protein-coding TICAM2 toll-like receptor adaptor molecule 2 O NF-kappa-B-activating protein 502|TIR domain-containing adapter molecule 2|TRIF-related adaptor molecule|cytoplasmic adaptor|putative NF-kappa-B-activating protein 502|toll-like receptor adaptor protein 3|toll/interleukin-1 receptor (TIR) domain-containing adapter protein 20121230 -9606 353497 POLN RP11-317B7.1 POL4P HGNC:18870|MIM:610887|Ensembl:ENSG00000130997|HPRD:17876|Vega:OTTHUMG00000090081 4 4p16.3 polymerase (DNA directed) nu protein-coding POLN polymerase (DNA directed) nu O DNA polymerase N|DNA polymerase POL4P|DNA polymerase nu 20121230 -9606 353500 BMP8A - - HGNC:21650|Ensembl:ENSG00000183682|HPRD:16555|Vega:OTTHUMG00000008394 1 1p34.3 bone morphogenetic protein 8a protein-coding BMP8A bone morphogenetic protein 8a O BMP-8A|bone morphogenetic protein 8A 20121230 -9606 353511 PKD1P6 - HG6 HGNC:30070 16 16p13.13 polycystic kidney disease 1 (autosomal dominant) pseudogene 6 pseudo PKD1P6 polycystic kidney disease 1 (autosomal dominant) pseudogene 6 O - 20121230 -9606 353512 PKD1P4 - HG4 HGNC:30068 16 16p13.12 polycystic kidney disease 1 (autosomal dominant) pseudogene 4 pseudo PKD1P4 polycystic kidney disease 1 (autosomal dominant) pseudogene 4 O - 20121209 -9606 353513 VCY1B - BPY1B HGNC:31751|Ensembl:ENSG00000129862|HPRD:18602|Vega:OTTHUMG00000036402 Y Yq11.21 variable charge, Y-linked 1B protein-coding VCY1B variable charge, Y-linked 1B O basic charge, Y-linked 1|basic protein on Y chromosome, 1|testis-specific basic protein Y 1|testis-specific basic protein on Y, 1|variably charged protein Y 20121230 -9606 353514 LILRA5 XXbac-BCX403H19.2 CD85|CD85F|ILT-11|ILT11|LILRB7|LIR-9|LIR9 HGNC:16309|MIM:606047|Ensembl:ENSG00000187116|HPRD:06924|Vega:OTTHUMG00000065357 19 19q13.4 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 5 protein-coding LILRA5 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 5 O CD85 antigen-like family member F|immunoglobulin-like transcript 11 protein|leukocyte Ig-like receptor 9|leukocyte immunoglobulin-like receptor 9|leukocyte immunoglobulin-like receptor subfamily A member 5|leukocyte immunoglobulin-like receptor subfamily A member 5 soluble|leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 7 20121230 -9606 353515 XKRY2 - XKRYP7 HGNC:23922|HPRD:18603 Y Yq11.221 XK, Kell blood group complex subunit-related, Y-linked 2 protein-coding XKRY2 XK, Kell blood group complex subunit-related, Y-linked 2 O X Kell blood group precursor-related, Y-linked 2|X Kell blood group precursor-related, Y-linked pseudogene 7|testis-specific XK-related protein, Y-linked 2 20121209 -9606 359710 BPIFB3 - C20orf185|LPLUNC3|RYA3|dJ726C3.4 HGNC:16178|Ensembl:ENSG00000186190|HPRD:16644|Vega:OTTHUMG00000032234 20 20q11.21 BPI fold containing family B, member 3 protein-coding BPIFB3 BPI fold containing family B, member 3 O BPI fold-containing family B member 3|ligand-binding protein RYA3|long palate, lung and nasal epithelium carcinoma associated 3|long palate, lung and nasal epithelium carcinoma-associated protein 3 20121230 -9606 359724 RNA18SP2 - RN18S2P HGNC:37658 Y Yp11.2 RNA, 18S ribosomal pseudogene 2 pseudo RNA18SP2 RNA, 18S ribosomal pseudogene 2 O - 20121209 -9606 359729 MRP63P2 - - HGNC:29687 1 1q42.13 mitochondrial ribosomal protein 63 pseudogene 2 pseudo MRP63P2 mitochondrial ribosomal protein 63 pseudogene 2 O - 20121230 -9606 359730 MRP63P3 - - HGNC:29688 3 3p21.31 mitochondrial ribosomal protein 63 pseudogene 3 pseudo MRP63P3 mitochondrial ribosomal protein 63 pseudogene 3 O - 20121230 -9606 359731 MRP63P7 - - HGNC:29690 8 8q22.2 mitochondrial ribosomal protein 63 pseudogene 7 pseudo MRP63P7 mitochondrial ribosomal protein 63 pseudogene 7 O - 20121230 -9606 359732 MRP63P8 - - HGNC:29691 14 14q13.2 mitochondrial ribosomal protein 63 pseudogene 8 pseudo MRP63P8 mitochondrial ribosomal protein 63 pseudogene 8 O - 20121230 -9606 359733 MRP63P9 - - HGNC:29692 14 14q22.1 mitochondrial ribosomal protein 63 pseudogene 9 pseudo MRP63P9 mitochondrial ribosomal protein 63 pseudogene 9 O - 20121230 -9606 359734 MRPL11P3 - - HGNC:29695 12 12q21.2 mitochondrial ribosomal protein L11 pseudogene 3 pseudo MRPL11P3 mitochondrial ribosomal protein L11 pseudogene 3 O - 20121230 -9606 359735 MRPL14P1 - - HGNC:29696 17 17p13.3 mitochondrial ribosomal protein L14 pseudogene 1 pseudo MRPL14P1 mitochondrial ribosomal protein L14 pseudogene 1 O - 20121230 -9606 359736 MRPL15P1 - MRPL15P2 HGNC:29697 15 15q26.1 mitochondrial ribosomal protein L15 pseudogene 1 pseudo MRPL15P1 mitochondrial ribosomal protein L15 pseudogene 1 O - 20121230 -9606 359737 MRPL20P1 - - HGNC:29699 21 21q22.2 mitochondrial ribosomal protein L20 pseudogene 1 pseudo MRPL20P1 mitochondrial ribosomal protein L20 pseudogene 1 O - 20121230 -9606 359738 MRPL22P1 - - HGNC:29700 4 4q12 mitochondrial ribosomal protein L22 pseudogene 1 pseudo MRPL22P1 mitochondrial ribosomal protein L22 pseudogene 1 O - 20121230 -9606 359739 MRPL3P1 - - HGNC:29701 13 13q12.11 mitochondrial ribosomal protein L3 pseudogene 1 pseudo MRPL3P1 mitochondrial ribosomal protein L3 pseudogene 1 O - 20121230 -9606 359740 MRPL30P1 - - HGNC:29702 6 6p12.1 mitochondrial ribosomal protein L30 pseudogene 1 pseudo MRPL30P1 mitochondrial ribosomal protein L30 pseudogene 1 O - 20121230 -9606 359741 MRPL32P1 - - HGNC:29704 X Xp11.23 mitochondrial ribosomal protein L32 pseudogene 1 pseudo MRPL32P1 mitochondrial ribosomal protein L32 pseudogene 1 O - 20121230 -9606 359742 MRPL35P1 - - HGNC:29705 6 6q23 mitochondrial ribosomal protein L35 pseudogene 1 pseudo MRPL35P1 mitochondrial ribosomal protein L35 pseudogene 1 O - 20121230 -9606 359743 MRPL35P2 - - HGNC:29706 10 10q21.3 mitochondrial ribosomal protein L35 pseudogene 2 pseudo MRPL35P2 mitochondrial ribosomal protein L35 pseudogene 2 O - 20121230 -9606 359744 MRPL35P3 - - HGNC:23731 10 10q22.2 mitochondrial ribosomal protein L35 pseudogene 3 pseudo MRPL35P3 mitochondrial ribosomal protein L35 pseudogene 3 O - 20121230 -9606 359745 MRPL35P4 - - HGNC:29707 X Xp22.31 mitochondrial ribosomal protein L35 pseudogene 4 pseudo MRPL35P4 mitochondrial ribosomal protein L35 pseudogene 4 O - 20121230 -9606 359746 MRPL42P3 - - HGNC:29712 6 6q24.2 mitochondrial ribosomal protein L42 pseudogene 3 pseudo MRPL42P3 mitochondrial ribosomal protein L42 pseudogene 3 O - 20121230 -9606 359747 MRPL45P1 - - HGNC:29715 2 2p11.2 mitochondrial ribosomal protein L45 pseudogene 1 pseudo MRPL45P1 mitochondrial ribosomal protein L45 pseudogene 1 O - 20121230 -9606 359748 MRPL49P1 - - HGNC:29717 5 5q12.1 mitochondrial ribosomal protein L49 pseudogene 1 pseudo MRPL49P1 mitochondrial ribosomal protein L49 pseudogene 1 O - 20121230 -9606 359749 MRPL50P2 - - HGNC:29720 2 2q34 mitochondrial ribosomal protein L50 pseudogene 2 pseudo MRPL50P2 mitochondrial ribosomal protein L50 pseudogene 2 O - 20121230 -9606 359750 MRPL50P3 - - HGNC:29721 5 5p12 mitochondrial ribosomal protein L50 pseudogene 3 pseudo MRPL50P3 mitochondrial ribosomal protein L50 pseudogene 3 O - 20121230 -9606 359751 MRPL50P4 - - HGNC:29722 10 10q23.1 mitochondrial ribosomal protein L50 pseudogene 4 pseudo MRPL50P4 mitochondrial ribosomal protein L50 pseudogene 4 O - 20121230 -9606 359752 MRPL53P1 - - HGNC:29725 1 1p13.2 mitochondrial ribosomal protein L53 pseudogene 1 pseudo MRPL53P1 mitochondrial ribosomal protein L53 pseudogene 1 O - 20121230 -9606 359753 MRPS10P1 - - HGNC:29728 1 1q23.2 mitochondrial ribosomal protein S10 pseudogene 1 pseudo MRPS10P1 mitochondrial ribosomal protein S10 pseudogene 1 O - 20121230 -9606 359754 MRPS10P5 - - HGNC:29729 9 9p12 mitochondrial ribosomal protein S10 pseudogene 5 pseudo MRPS10P5 mitochondrial ribosomal protein S10 pseudogene 5 O - 20121230 -9606 359755 MRPS15P1 - - HGNC:29730 15 15q22 mitochondrial ribosomal protein S15 pseudogene 1 pseudo MRPS15P1 mitochondrial ribosomal protein S15 pseudogene 1 O - 20121230 -9606 359756 MRPS15P2 - - HGNC:29731 19 19q13.32 mitochondrial ribosomal protein S15 pseudogene 2 pseudo MRPS15P2 mitochondrial ribosomal protein S15 pseudogene 2 O - 20121230 -9606 359757 MRPS17P3 - - HGNC:29736 3 3p12.1 mitochondrial ribosomal protein S17 pseudogene 3 pseudo MRPS17P3 mitochondrial ribosomal protein S17 pseudogene 3 O - 20121230 -9606 359758 MRPS17P5 - - HGNC:29737 6 6q22.33 mitochondrial ribosomal protein S17 pseudogene 5 pseudo MRPS17P5 mitochondrial ribosomal protein S17 pseudogene 5 O - 20121230 -9606 359759 MRPS17P6 - - HGNC:29738 14 14p11 mitochondrial ribosomal protein S17 pseudogene 6 pseudo MRPS17P6 mitochondrial ribosomal protein S17 pseudogene 6 O - 20121230 -9606 359760 MRPS17P9 - - HGNC:29739 X Xq24 mitochondrial ribosomal protein S17 pseudogene 9 pseudo MRPS17P9 mitochondrial ribosomal protein S17 pseudogene 9 O - 20121230 -9606 359761 MRPS18AP1 - - HGNC:29740 3 3p21.31 mitochondrial ribosomal protein S18A pseudogene 1 pseudo MRPS18AP1 mitochondrial ribosomal protein S18A pseudogene 1 O - 20121230 -9606 359762 MRPS18BP1 - - HGNC:29741 1 1q41 mitochondrial ribosomal protein S18B pseudogene 1 pseudo MRPS18BP1 mitochondrial ribosomal protein S18B pseudogene 1 O - 20121230 -9606 359763 MRPS18BP2 - - HGNC:29742 2 2q22.1 mitochondrial ribosomal protein S18B pseudogene 2 pseudo MRPS18BP2 mitochondrial ribosomal protein S18B pseudogene 2 O - 20121230 -9606 359764 MRPS18CP3 - - HGNC:29744 8 8p21.3 mitochondrial ribosomal protein S18C pseudogene 3 pseudo MRPS18CP3 mitochondrial ribosomal protein S18C pseudogene 3 O - 20121230 -9606 359765 MRPS18CP5 - - HGNC:29746 15 15q11.2 mitochondrial ribosomal protein S18C pseudogene 5 pseudo MRPS18CP5 mitochondrial ribosomal protein S18C pseudogene 5 O - 20121230 -9606 359766 MRPS21P2 - - HGNC:29749 1 1q22 mitochondrial ribosomal protein S21 pseudogene 2 pseudo MRPS21P2 mitochondrial ribosomal protein S21 pseudogene 2 O - 20121230 -9606 359767 MRPS21P3 - - HGNC:29750 1 1q31.2 mitochondrial ribosomal protein S21 pseudogene 3 pseudo MRPS21P3 mitochondrial ribosomal protein S21 pseudogene 3 O - 20121230 -9606 359768 MRPS21P4 - - HGNC:29751 9 9p13.1 mitochondrial ribosomal protein S21 pseudogene 4 pseudo MRPS21P4 mitochondrial ribosomal protein S21 pseudogene 4 O - 20121230 -9606 359769 MRPS21P5 - - HGNC:29752 10 10p12.1 mitochondrial ribosomal protein S21 pseudogene 5 pseudo MRPS21P5 mitochondrial ribosomal protein S21 pseudogene 5 O - 20121230 -9606 359770 MRPS21P6 - - HGNC:29753 10 10q26 mitochondrial ribosomal protein S21 pseudogene 6 pseudo MRPS21P6 mitochondrial ribosomal protein S21 pseudogene 6 O - 20121230 -9606 359771 MRPS21P7 - - HGNC:29754 16 16q12.1 mitochondrial ribosomal protein S21 pseudogene 7 pseudo MRPS21P7 mitochondrial ribosomal protein S21 pseudogene 7 O - 20121230 -9606 359772 MRPS21P9 - - HGNC:29756 17 17q21 mitochondrial ribosomal protein S21 pseudogene 9 pseudo MRPS21P9 mitochondrial ribosomal protein S21 pseudogene 9 O - 20121230 -9606 359773 MRPS22P1 - - HGNC:29757 X Xq21.31 mitochondrial ribosomal protein S22 pseudogene 1 pseudo MRPS22P1 mitochondrial ribosomal protein S22 pseudogene 1 O - 20121230 -9606 359774 DAP3P2 - MRPS29P2 HGNC:29762 2 2q31.2 death associated protein 3 pseudogene 2 pseudo DAP3P2 death associated protein 3 pseudogene 2 O - 20121230 -9606 359775 MRPS33P2 - - HGNC:29765 4 4p14 mitochondrial ribosomal protein S33 pseudogene 2 pseudo MRPS33P2 mitochondrial ribosomal protein S33 pseudogene 2 O - 20121230 -9606 359776 MRPS33P3 - - HGNC:29766 4 4q26 mitochondrial ribosomal protein S33 pseudogene 3 pseudo MRPS33P3 mitochondrial ribosomal protein S33 pseudogene 3 O - 20121230 -9606 359777 MRPS33P4 - - HGNC:29767 20 20q13.13 mitochondrial ribosomal protein S33 pseudogene 4 pseudo MRPS33P4 mitochondrial ribosomal protein S33 pseudogene 4 O - 20121230 -9606 359778 MRPS35P2 - - HGNC:29769 5 5q15 mitochondrial ribosomal protein S35 pseudogene 2 pseudo MRPS35P2 mitochondrial ribosomal protein S35 pseudogene 2 O - 20121230 -9606 359779 MRPS35P3 - - HGNC:29770 10 10q21 mitochondrial ribosomal protein S35 pseudogene 3 pseudo MRPS35P3 mitochondrial ribosomal protein S35 pseudogene 3 O - 20121230 -9606 359780 MRPS6P1 - MRPS6P3 HGNC:29780 1 1p35 mitochondrial ribosomal protein S6 pseudogene 1 pseudo MRPS6P1 mitochondrial ribosomal protein S6 pseudogene 1 O - 20121230 -9606 359781 MRPS6P2 - - HGNC:29781 1 1p33 mitochondrial ribosomal protein S6 pseudogene 2 pseudo MRPS6P2 mitochondrial ribosomal protein S6 pseudogene 2 O - 20121230 -9606 359782 MRPS6P4 - - HGNC:29782 12 12q21 mitochondrial ribosomal protein S6 pseudogene 4 pseudo MRPS6P4 mitochondrial ribosomal protein S6 pseudogene 4 O - 20121230 -9606 359783 MRPS7P1 - - HGNC:29783 8 8p11.22 mitochondrial ribosomal protein S7 pseudogene 1 pseudo MRPS7P1 mitochondrial ribosomal protein S7 pseudogene 1 O - 20121230 -9606 359787 DPPA3 - STELLA HGNC:19199|MIM:608408|Ensembl:ENSG00000187569|HPRD:16331|Vega:OTTHUMG00000168434 12 12p13.31 developmental pluripotency associated 3 protein-coding DPPA3 developmental pluripotency associated 3 O developmental pluripotency-associated protein 3|stella-related protein 20121230 -9606 359791 MED14P1 - CRSP2P|CXorf4P|MED14P HGNC:2371 Y Yq11.1 mediator complex subunit 14 pseudogene 1 pseudo MED14P1 mediator complex subunit 14 pseudogene 1 O - 20121230 -9606 359792 EIF4A1P2 - - HGNC:23946 Y Yp11.2 eukaryotic translation initiation factor 4A1 pseudogene 2 pseudo EIF4A1P2 eukaryotic translation initiation factor 4A1 pseudogene 2 O - 20121230 -9606 359793 AGKP1 - AGKY1 HGNC:37661 Y Yq11.21 acylglycerol kinase pseudogene 1 pseudo AGKP1 acylglycerol kinase pseudogene 1 O - 20121230 -9606 359794 TUSC2P1 - TUSC2P HGNC:23963 Y Yp11.2 tumor suppressor candidate 2 pseudogene 1 pseudo TUSC2P1 tumor suppressor candidate 2 pseudogene 1 O - 20121230 -9606 359795 NEFLP1 - - HGNC:37662 Y Yq11.2 neurofilament, light polypeptide pseudogene 1 pseudo NEFLP1 neurofilament, light polypeptide pseudogene 1 O - 20121230 -9606 359796 KDM5DP1 - SMCYP HGNC:23976 Y Yq11.221 lysine (K)-specific demethylase 5D pseudogene 1 pseudo KDM5DP1 lysine (K)-specific demethylase 5D pseudogene 1 O - 20121230 -9606 359797 MRPS5P4 - - HGNC:29779 18 18q21 mitochondrial ribosomal protein S5 pseudogene 4 pseudo MRPS5P4 mitochondrial ribosomal protein S5 pseudogene 4 O - 20121230 -9606 359798 UBE2V1P3 - - HGNC:23983 Y Yp11.2 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 3 pseudo UBE2V1P3 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 3 O - 20121230 -9606 359799 USP12PY - USP12P3 HGNC:23195 Y Yp11.2 ubiquitin specific peptidase 12 pseudogene, Y-linked pseudo USP12PY ubiquitin specific peptidase 12 pseudogene, Y-linked O - 20121230 -9606 359800 VDAC1P6 - - HGNC:37481 Y Yp11.2 voltage-dependent anion channel 1 pseudogene 6 pseudo VDAC1P6 voltage-dependent anion channel 1 pseudogene 6 O - 20121230 -9606 359802 MRPS10P2 - MRPS10P3|MRPS10P4 HGNC:29727 3 3p26 mitochondrial ribosomal protein S10 pseudogene 2 pseudo MRPS10P2 mitochondrial ribosomal protein S10 pseudogene 2 O - 20121230 -9606 359803 MRPS17P1 - MRPS17P2 HGNC:29734 1 1p34 mitochondrial ribosomal protein S17 pseudogene 1 pseudo MRPS17P1 mitochondrial ribosomal protein S17 pseudogene 1 O - 20121230 -9606 359804 DAP3P1 - DAP3P|MRPS29P1 HGNC:17624 1 1q21.3 death associated protein 3 pseudogene 1 pseudo DAP3P1 death associated protein 3 pseudogene 1 O - 20121230 -9606 359805 PCNAP2 - pF2PCNA HGNC:8733 4 4q24 proliferating cell nuclear antigen pseudogene 2 pseudo PCNAP2 proliferating cell nuclear antigen pseudogene 2 O - 20121230 -9606 359806 PCNAP1 - p1PCNA HGNC:8732 4 4q24 proliferating cell nuclear antigen pseudogene 1 pseudo PCNAP1 proliferating cell nuclear antigen pseudogene 1 O - 20121230 -9606 359817 MRPL30P2 - MRPL30P3 HGNC:29703 12 12p11.2 mitochondrial ribosomal protein L30 pseudogene 2 pseudo MRPL30P2 mitochondrial ribosomal protein L30 pseudogene 2 O - 20121230 -9606 359819 LOC359819 - - - 5 5q12.3 mitochondrial ribosomal protein L39 pseudogene pseudo - - - - 20121230 -9606 359821 MRPL42P5 - - HGNC:29714 15 15q13.3 mitochondrial ribosomal protein L42 pseudogene 5 pseudo MRPL42P5 mitochondrial ribosomal protein L42 pseudogene 5 O - 20121230 -9606 359822 KCNIP4-IT1 - NCRNA00099|UM9(5)|UM9-5 HGNC:29895 4 4p15.2 KCNIP4 intronic transcript 1 (non-protein coding) miscRNA KCNIP4-IT1 KCNIP4 intronic transcript 1 (non-protein coding) O - 20121230 -9606 359825 PSORS9 - - HGNC:31013|MIM:607857 4 4q31-q34 psoriasis susceptibility 9 unknown PSORS9 psoriasis susceptibility 9 O - 20120622 -9606 359844 PRDX2P1 - - HGNC:30020 13 13p12 peroxiredoxin 2 pseudogene 1 pseudo PRDX2P1 peroxiredoxin 2 pseudogene 1 O - 20121230 -9606 359845 FAM101B - - HGNC:28705|Ensembl:ENSG00000183688|HPRD:14646|Vega:OTTHUMG00000132483 17 17p13 family with sequence similarity 101, member B protein-coding FAM101B family with sequence similarity 101, member B O protein FAM101B 20121230 -9606 359940 CDK8PS - - HGNC:18995 2 2p25.1 cyclin-dependent kinase 8 pseudogene pseudo CDK8PS cyclin-dependent kinase 8 pseudogene O - 20090331 -9606 359941 CDK4PS - - HGNC:19040 1 1p21.1 cyclin-dependent kinase 4 pseudogene pseudo CDK4PS cyclin-dependent kinase 4 pseudogene O - 20121230 -9606 359948 IRF2BP2 - - HGNC:21729|Ensembl:ENSG00000168264|HPRD:17160|Vega:OTTHUMG00000037981 1 1q42.3 interferon regulatory factor 2 binding protein 2 protein-coding IRF2BP2 interferon regulatory factor 2 binding protein 2 O IRF-2-binding protein 2|interferon regulatory factor 2-binding protein 2 20121230 -9606 359996 SERBP1P2 - - HGNC:23967 Y Yp11.2 SERPINE1 mRNA binding protein 1 pseudogene 2 pseudo SERBP1P2 SERPINE1 mRNA binding protein 1 pseudogene 2 O - 20121230 -9606 359997 ATP5JP1 - - HGNC:23933 Y Yp11.2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F6 pseudogene 1 pseudo ATP5JP1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F6 pseudogene 1 O - 20121230 -9606 359998 CHRFAM7AP2 - - HGNC:23937 Y Yq11.2 CHRFAM7A pseudogene 2 pseudo CHRFAM7AP2 CHRFAM7A pseudogene 2 O - 20121209 -9606 359999 CHRFAM7AP1 - - HGNC:37766 Y Yq11.2 CHRFAM7A pseudogene 1 pseudo CHRFAM7AP1 CHRFAM7A pseudogene 1 O - 20121209 -9606 360001 IFNWP18 - LEIF-M HGNC:5450 9 9p22 interferon, omega 1 pseudogene 18 pseudo IFNWP18 interferon, omega 1 pseudogene 18 O - 20121230 -9606 360002 TAF9P1 - - HGNC:31743 Y Yq11.221 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa pseudogene 1 pseudo TAF9P1 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa pseudogene 1 O - 20121209 -9606 360003 TAF9P2 - - HGNC:31744 Y Yq11.221 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa pseudogene 2 pseudo TAF9P2 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa pseudogene 2 O - 20121209 -9606 360008 GAPDHP17 - GAPDHP18 HGNC:37765 Y Yq11.221 glyceraldehyde-3-phosphate dehydrogenase pseudogene 17 pseudo GAPDHP17 glyceraldehyde-3-phosphate dehydrogenase pseudogene 17 O - 20121230 -9606 360009 CYCSP49 - CYCSP54|HCP49 HGNC:23943 Y Yq11.223 cytochrome c, somatic pseudogene 49 pseudo CYCSP49 cytochrome c, somatic pseudogene 49 O - 20121230 -9606 360014 DLGAP5P1 - - HGNC:23945 Y Yp11.2 discs, large (Drosophila) homolog-associated protein 5 pseudogene 1 pseudo DLGAP5P1 discs, large (Drosophila) homolog-associated protein 5 pseudogene 1 O - 20121209 -9606 360015 RFTN1P1 - - HGNC:23971 Y Yp11.2 raftlin, lipid raft linker 1 pseudogene 1 pseudo RFTN1P1 raftlin, lipid raft linker 1 pseudogene 1 O - 20121230 -9606 360016 CICP2 - - HGNC:23935 Y Yq11.223 capicua homolog (Drosophila) pseudogene 2 pseudo CICP2 capicua homolog (Drosophila) pseudogene 2 O - 20121209 -9606 360017 CICP1 - - HGNC:23936 Y Yq11.223 capicua homolog (Drosophila) pseudogene 1 pseudo CICP1 capicua homolog (Drosophila) pseudogene 1 O - 20121209 -9606 360018 PRRC2CP1 - BAT2D1P1|BAT2L2P1 HGNC:23949 Y Yp11.2 proline-rich coiled-coil 2C pseudogene 1 pseudo PRRC2CP1 proline-rich coiled-coil 2C pseudogene 1 O - 20121230 -9606 360019 KRT18P10 - - HGNC:23962 Y Yp11.2 keratin 18 pseudogene 10 pseudo KRT18P10 keratin 18 pseudogene 10 O - 20121209 -9606 360020 PPP1R12BP2 - - HGNC:23970 Y Yq11.223 protein phosphatase 1, regulatory subunit 12B Y-linked pseudogene 2 pseudo PPP1R12BP2 protein phosphatase 1, regulatory subunit 12B Y-linked pseudogene 2 O - 20121209 -9606 360021 PPP1R12BP1 - PPP1R12BP|PPP1R12BPY1 HGNC:18498 Y Yq11.23 protein phosphatase 1, regulatory subunit 12B pseudogene, Y-linked 1 pseudo PPP1R12BP1 protein phosphatase 1, regulatory subunit 12B pseudogene, Y-linked 1 O - 20121209 -9606 360022 PSIP1P2 - - HGNC:23968 Y Yq11 PC4 and SFRS1 interacting protein 1 pseudogene 2 pseudo PSIP1P2 PC4 and SFRS1 interacting protein 1 pseudogene 2 O - 20121230 -9606 360023 ZBTB41 - FRBZ1|RP11-469L3.1|ZNF924 HGNC:24819|Ensembl:ENSG00000177888|HPRD:17017|Vega:OTTHUMG00000036275 1 1q31.3 zinc finger and BTB domain containing 41 protein-coding ZBTB41 zinc finger and BTB domain containing 41 O FRBZ1 protein (FRBZ1)|zinc finger and BTB domain-containing protein 41 20121230 -9606 360024 GOLGA6L11P - GOLGA6L15P HGNC:23958 Y Yq11.23 golgin A6 family-like 11, pseudogene pseudo GOLGA6L11P golgin A6 family-like 11, pseudogene O - 20121209 -9606 360025 GOLGA6L12P - - HGNC:23959 Y Yq11.223 golgin A6 family-like 12, pseudogene pseudo GOLGA6L12P golgin A6 family-like 12, pseudogene O - 20121209 -9606 360026 GOLGA6L13P - - HGNC:23960 Y Yq11.223 golgin A6 family-like 13, pseudogene pseudo GOLGA6L13P golgin A6 family-like 13, pseudogene O - 20121209 -9606 360027 GOLGA6L14P - - HGNC:23961 Y Yq11.223 golgin A6 family-like 14, pseudogene pseudo GOLGA6L14P golgin A6 family-like 14, pseudogene O - 20121209 -9606 360028 TMEM167AP1 - - HGNC:23956 Y Yq11.222 transmembrane protein 167A pseudogene 1 pseudo TMEM167AP1 transmembrane protein 167A pseudogene 1 O - 20121230 -9606 360029 FAM199YP - FAM199Y HGNC:23951 Y Yp11.2 family with sequence similarity 199, Y-linked, pseudogene pseudo FAM199YP family with sequence similarity 199, Y-linked, pseudogene O - 20121209 -9606 360030 NANOGNB - - HGNC:24958|Ensembl:ENSG00000205857|Vega:OTTHUMG00000165107 12 12p13.31 NANOG neighbor homeobox protein-coding NANOGNB NANOG neighbor homeobox O homeobox C14|homeobox protein C14 20121230 -9606 360132 FKBP9L - - HGNC:23568|HPRD:16900 7 7p11.1 FK506 binding protein 9-like pseudo FKBP9L FK506 binding protein 9-like O - 20121230 -9606 360155 CYCSP52 - HC6|HCP2 HGNC:24393 1 1q22 cytochrome c, somatic pseudogene 52 pseudo CYCSP52 cytochrome c, somatic pseudogene 52 O - 20121230 -9606 360156 CYCSP53 - HCP3 HGNC:24404 1 1q23.3 cytochrome c, somatic pseudogene 53 pseudo CYCSP53 cytochrome c, somatic pseudogene 53 O - 20121230 -9606 360157 CYCSP4 - HCP4 HGNC:24413 1 1q32.1 cytochrome c, somatic pseudogene 4 pseudo CYCSP4 cytochrome c, somatic pseudogene 4 O - 20121230 -9606 360158 CYCSP5 - HCP5 HGNC:24416 1 1q44 cytochrome c, somatic pseudogene 5 pseudo CYCSP5 cytochrome c, somatic pseudogene 5 O - 20121230 -9606 360159 CYCSP6 - HCP6 HGNC:24421 2 2p12 cytochrome c, somatic pseudogene 6 pseudo CYCSP6 cytochrome c, somatic pseudogene 6 O - 20121230 -9606 360160 CYCSP8 - HCP8 HGNC:24423 2 2q21.1 cytochrome c, somatic pseudogene 8 pseudo CYCSP8 cytochrome c, somatic pseudogene 8 O - 20121230 -9606 360163 CYCTP - HCP9 HGNC:24424 2 2q31.2 cytochrome c, testis, pseudogene pseudo CYCTP cytochrome c, testis, pseudogene O - 20121230 -9606 360165 NDUFA4P1 - NDUFA4 HGNC:29835 1 1p13.3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa, pseudogene 1 pseudo NDUFA4P1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa, pseudogene 1 O - 20121230 -9606 360166 CYCSP10 - HCP10 HGNC:24384 3 3p25.3 cytochrome c, somatic pseudogene 10 pseudo CYCSP10 cytochrome c, somatic pseudogene 10 O - 20121230 -9606 360167 CYCSP11 - HCP11 HGNC:24385 3 3p25.3 cytochrome c, somatic pseudogene 11 pseudo CYCSP11 cytochrome c, somatic pseudogene 11 O - 20121230 -9606 360168 CYCSP12 - CYCSP13|HCP12|HCP13 HGNC:24386 3 3p25.2 cytochrome c, somatic pseudogene 12 pseudo CYCSP12 cytochrome c, somatic pseudogene 12 O - 20121230 -9606 360170 CYCSP14 - HCP14 HGNC:24388 4 4q28.2 cytochrome c, somatic pseudogene 14 pseudo CYCSP14 cytochrome c, somatic pseudogene 14 O - 20121230 -9606 360171 CYCSP16 - HCP16 HGNC:24389 6 6q15 cytochrome c, somatic pseudogene 16 pseudo CYCSP16 cytochrome c, somatic pseudogene 16 O - 20121230 -9606 360172 CYCSP17 - HCP17 HGNC:24390 6 6q16.1 cytochrome c, somatic pseudogene 17 pseudo CYCSP17 cytochrome c, somatic pseudogene 17 O - 20121230 -9606 360173 CYCSP18 - HCP18 HGNC:24391 7 7q21.3 cytochrome c, somatic pseudogene 18 pseudo CYCSP18 cytochrome c, somatic pseudogene 18 O - 20121230 -9606 360174 CYCSP19 - HCP19 HGNC:24392 7 7q31.32 cytochrome c, somatic pseudogene 19 pseudo CYCSP19 cytochrome c, somatic pseudogene 19 O - 20121230 -9606 360175 CYCSP22 - HCP22 HGNC:24396 8 8q11.22 cytochrome c, somatic pseudogene 22 pseudo CYCSP22 cytochrome c, somatic pseudogene 22 O - 20121230 -9606 360176 CYCSP23 - HCP23 HGNC:24397 8 8q24.12 cytochrome c, somatic pseudogene 23 pseudo CYCSP23 cytochrome c, somatic pseudogene 23 O - 20121230 -9606 360177 CYCSP24 - HC3|HCP24|HCP31 HGNC:24398 9 9q22.32 cytochrome c, somatic pseudogene 24 pseudo CYCSP24 cytochrome c, somatic pseudogene 24 O - 20121230 -9606 360178 CYCSP26 - HCP26 HGNC:24400 11 11q12.1 cytochrome c, somatic pseudogene 26 pseudo CYCSP26 cytochrome c, somatic pseudogene 26 O - 20121230 -9606 360179 CYCSP28 - HCP28 HGNC:24402 11 11q14.1 cytochrome c, somatic pseudogene 28 pseudo CYCSP28 cytochrome c, somatic pseudogene 28 O - 20121230 -9606 360180 CYCSP29 - HCP29 HGNC:24403 11 11q22.3 cytochrome c, somatic pseudogene 29 pseudo CYCSP29 cytochrome c, somatic pseudogene 29 O - 20121230 -9606 360181 CYCSP32 - HCP32 HGNC:24406 13 13q12.11 cytochrome c, somatic pseudogene 32 pseudo CYCSP32 cytochrome c, somatic pseudogene 32 O - 20121230 -9606 360182 CYCSP34 - HCP34 HGNC:24408 13 13q14.11 cytochrome c, somatic pseudogene 34 pseudo CYCSP34 cytochrome c, somatic pseudogene 34 O - 20121230 -9606 360183 CYCSP2 - HCP37 HGNC:24410 15 15q15.1 cytochrome c, somatic pseudogene 2 pseudo CYCSP2 cytochrome c, somatic pseudogene 2 O - 20121230 -9606 360184 CYCSP38 - HC2|HCP38 HGNC:24411 15 15q21.3 cytochrome c, somatic pseudogene 38 pseudo CYCSP38 cytochrome c, somatic pseudogene 38 O - 20121230 -9606 360185 CYCSP40 - HC7|HCP40 HGNC:24414 17 17q25.3 cytochrome c, somatic pseudogene 40 pseudo CYCSP40 cytochrome c, somatic pseudogene 40 O - 20121230 -9606 360186 CYCSP41 - CYC1LP4|HCP41 HGNC:2580 21 21p11 cytochrome c, somatic pseudogene 41 pseudo CYCSP41 cytochrome c, somatic pseudogene 41 O - 20121230 -9606 360187 CYCSP43 - HCP43 HGNC:24417 X Xq13.1 cytochrome c, somatic pseudogene 43 pseudo CYCSP43 cytochrome c, somatic pseudogene 43 O - 20121230 -9606 360188 CYCSP48 - HCP48 HGNC:23942 Y Yq11.223 cytochrome c, somatic pseudogene 48 pseudo CYCSP48 cytochrome c, somatic pseudogene 48 O - 20121230 -9606 360200 TMPRSS9 - - HGNC:30079|MIM:610477|Ensembl:ENSG00000178297|HPRD:07124|Vega:OTTHUMG00000180431 19 19p13.3 transmembrane protease, serine 9 protein-coding TMPRSS9 transmembrane protease, serine 9 O polyserase 1|polyserase-1|polyserase-I|polyserine protease 1|transmembrane protease serine 9|transmembrane serine protease 9 20121230 -9606 360203 GLT6D1 RP11-98L5.1 GLTDC1|GT6M7 HGNC:23671|MIM:613699|Ensembl:ENSG00000204007|HPRD:13584|Vega:OTTHUMG00000020911 9 9q34.3 glycosyltransferase 6 domain containing 1 protein-coding GLT6D1 glycosyltransferase 6 domain containing 1 O galactosyltransferase family 6 domain containing 1|galactosyltransferase family 6 domain-containing 1|glycosyltransferase 6 domain-containing protein 1 20121230 -9606 360205 HOXB-AS5 - C17orf93|HOXB13-AS1|NCRNA00253|PRAC2 HGNC:30143|MIM:610787 17 17q21.3 HOXB cluster antisense RNA 5 miscRNA HOXB-AS5 HOXB cluster antisense RNA 5 O - 20121230 -9606 360219 GCRG224 - - MIM:610888 11 11q13-q14 GCRG-P224 unknown - - - - 20120508 -9606 360226 PRSS41 - TESSP1 HGNC:30715|HPRD:15488 16 16p13.3 protease, serine, 41 protein-coding PRSS41 protease, serine, 41 O putative serine protease 41|testis-specific serine protease 1 20121230 -9606 360227 HIN1L - - - 12 12p13.32 OTU domain containing 4 pseudogene pseudo - - - - 20121230 -9606 373071 AIS1 - - HGNC:16304|MIM:607836 1 1p31 autoimmune susceptibility 1 unknown AIS1 autoimmune susceptibility 1 O - 20120622 -9606 373073 CLAM - PCH3 HGNC:20394|MIM:608027 7 7q11-q21 cerebellar atrophy with progressive microcephaly unknown CLAM cerebellar atrophy with progressive microcephaly O - 20121209 -9606 373156 GSTK1 HDCMD47P GST|GST 13-13|GST13|GST13-13|GSTK1-1|hGSTK1 HGNC:16906|MIM:602321|Ensembl:ENSG00000197448|Vega:OTTHUMG00000152637 7 7q34 glutathione S-transferase kappa 1 protein-coding GSTK1 glutathione S-transferase kappa 1 O GST class-kappa|glutathione S-transferase k1|glutathione S-transferase subunit 13 homolog 20121230 -9606 373159 STK19P - RP2|bPG116M5.10 HGNC:21668 6 6p21.3 serine/threonine kinase 19 pseudogene pseudo STK19P serine/threonine kinase 19 pseudogene O - 20121230 -9606 373509 USP50 - - HGNC:20079|Ensembl:ENSG00000170236|HPRD:15639|Vega:OTTHUMG00000167591 15 15q21.1 ubiquitin specific peptidase 50 protein-coding USP50 ubiquitin specific peptidase 50 O inactive ubiquitin carboxyl-terminal hydrolase 50|inactive ubiquitin-specific peptidase 50|ubiquitin specific protease 50 20121230 -9606 373856 USP41 - - HGNC:20070|Ensembl:ENSG00000161133|Vega:OTTHUMG00000151317 22 22q11.21 ubiquitin specific peptidase 41 protein-coding USP41 ubiquitin specific peptidase 41 O deubiquitinating enzyme 41|putative ubiquitin carboxyl-terminal hydrolase 41|ubiquitin specific protease 41|ubiquitin specific proteinase 41|ubiquitin thioesterase 41|ubiquitin thiolesterase 41|ubiquitin-specific-processing protease 41 20121230 -9606 373861 HILS1 - - HGNC:30616|MIM:608101|HPRD:12164 17 17q21.33 histone linker H1 domain, spermatid-specific 1, pseudogene pseudo HILS1 histone linker H1 domain, spermatid-specific 1, pseudogene O - 20121230 -9606 373863 DND1 - RBMS4 HGNC:23799|MIM:609385|Ensembl:ENSG00000256453|HPRD:13240|Vega:OTTHUMG00000129499 5 5q31.3 dead end homolog 1 (zebrafish) protein-coding DND1 dead end homolog 1 (zebrafish) O RNA-binding motif, single-stranded-interacting protein 4|dead end protein homolog 1 20121230 -9606 374286 CDRT1 - C170RF1|C17ORF1|C17ORF1A|FBXW10B|FBXW10P1|HREP|SM25H2 HGNC:14379|MIM:604596|Ensembl:ENSG00000241322|HPRD:16699|Vega:OTTHUMG00000059074 17 17p12 CMT1A duplicated region transcript 1 protein-coding CDRT1 CMT1A duplicated region transcript 1 O CMT1A duplicated region transcript 1 protein|Charcot-Marie-Tooth duplicated region transcript 1|F-box and WD repeat domain containing 10 pseudogene 1|F-box and WD-40 domain protein 10 pseudogene 1 20121230 -9606 374291 NDUFS7 - CI-20|CI-20KD|MY017|PSST HGNC:7714|MIM:601825|Ensembl:ENSG00000115286|HPRD:03491|Vega:OTTHUMG00000168077 19 19p13.3 NADH dehydrogenase (ubiquinone) Fe-S protein 7, 20kDa (NADH-coenzyme Q reductase) protein-coding NDUFS7 NADH dehydrogenase (ubiquinone) Fe-S protein 7, 20kDa (NADH-coenzyme Q reductase) O NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial|NADH-coenzyme Q reductase|NADH-ubiquinone oxidoreductase 20 kDa subunit|NADH:ubiquinone oxidoreductase PSST subunit|PSST subunit|complex I 20kDa subunit|complex I, mitochondrial respiratory chain, 20-KD subunit|complex I-20kD 20121230 -9606 374308 PTCHD3 - PTR HGNC:24776|MIM:611791|Ensembl:ENSG00000182077|Vega:OTTHUMG00000017860 10 10p12.1 patched domain containing 3 protein-coding PTCHD3 patched domain containing 3 O patched domain-containing protein 3|patched-related protein 20121230 -9606 374354 NHLRC2 - - HGNC:24731|Ensembl:ENSG00000196865|HPRD:14827|Vega:OTTHUMG00000019078 10 10q25.3 NHL repeat containing 2 protein-coding NHLRC2 NHL repeat containing 2 O 1200003G01Rik|NHL repeat-containing protein 2|novel NHL repeat domain containing protein 20121230 -9606 374355 CCDC172 - C10orf96 HGNC:30524|Ensembl:ENSG00000182645|HPRD:18604|Vega:OTTHUMG00000019098 10 10q25.3 coiled-coil domain containing 172 protein-coding CCDC172 coiled-coil domain containing 172 O UPF0628 protein C10orf96|coiled-coil domain-containing protein 172 20121230 -9606 374378 GALNTL4 - GALNT15|GALNT18|GalNAc-T15 HGNC:30488|Ensembl:ENSG00000110328|HPRD:13564|Vega:OTTHUMG00000165707 11 11p15.3 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 4 protein-coding GALNTL4 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 4 O GalNAc-transferase 18|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase-like protein 4|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 15|galNAc-T-like protein 4|polypeptide GalNAc transferase-like protein 4|pp-GaNTase-like protein 4|protein-UDP acetylgalactosaminyltransferase-like protein 4|putative polypeptide N-acetylgalactosaminyltransferase-like protein 4 20121230 -9606 374383 NCR3LG1 - B7-H6|B7H6|DKFZp686O24166 HGNC:42400|MIM:613714|Ensembl:ENSG00000188211|HPRD:16820|Vega:OTTHUMG00000165913 11 11p15.1 natural killer cell cytotoxicity receptor 3 ligand 1 protein-coding NCR3LG1 natural killer cell cytotoxicity receptor 3 ligand 1 O B7 homolog 6|natural cytotoxicity triggering receptor 3 ligand 1|putative Ig-like domain-containing protein DKFZp686O24166/DKFZp686I21167 20121230 -9606 374387 DKFZp779M0652 - - - 11 11p11.2 uncharacterized DKFZp779M0652 miscRNA - - - - 20121230 -9606 374393 FAM111B hCG_1729960 CANP HGNC:24200|Ensembl:ENSG00000189057|HPRD:07096|Vega:OTTHUMG00000167279 11 11q12.1 family with sequence similarity 111, member B protein-coding FAM111B family with sequence similarity 111, member B O cancer-associated nucleoprotein|protein FAM111B 20121230 -9606 374395 TMEM179B - - HGNC:33744|Ensembl:ENSG00000185475|HPRD:14186|Vega:OTTHUMG00000167611 11 11q12.3 transmembrane protein 179B protein-coding TMEM179B transmembrane protein 179B O - 20121230 -9606 374403 TBC1D10C - CARABIN|EPI64C HGNC:24702|MIM:610831|Ensembl:ENSG00000175463|HPRD:13330|Vega:OTTHUMG00000167139 11 11q13.2 TBC1 domain family, member 10C protein-coding TBC1D10C TBC1 domain family, member 10C O carabin 20121230 -9606 374407 DNAJB13 - RSPH16A|TSARG5|TSARG6 HGNC:30718|MIM:610263|Ensembl:ENSG00000187726|HPRD:15573|Vega:OTTHUMG00000168093 11 11q13.4 DnaJ (Hsp40) homolog, subfamily B, member 13 protein-coding DNAJB13 DnaJ (Hsp40) homolog, subfamily B, member 13 O 1700014P03Rik|DnaJ (Hsp40) related, subfamily B, member 13|DnaJ-like protein|dnaJ homolog subfamily B member 13|radial spoke 16 homolog A|testis and spermatogenesis cell-related protein 6|testis spermatocyte apoptosis-related gene 6 protein|testis spermatogenesis apoptosis-related gene 3 protein|testis spermatogenesis apoptosis-related gene 6 protein|testis spermatogenesis apoptosis-related protein 6 20121230 -9606 374443 LOC374443 - - - 12 12p13.31 C-type lectin domain family 2, member D pseudogene pseudo - - - - 20121230 -9606 374454 KRT77 - K1B|KRT1B HGNC:20411|MIM:611158|Ensembl:ENSG00000189182|HPRD:13934|Vega:OTTHUMG00000169450 12 12q13.13 keratin 77 protein-coding KRT77 keratin 77 O CK-1B|K77|cytokeratin-1B|keratin 1B|keratin, type II cytoskeletal 1b|keratin-77|type-II keratin Kb39 20121230 -9606 374462 PTPRQ - DFNB84|DFNB84A|PTPGMC1|R-PTP-Q HGNC:9679|MIM:603317|Ensembl:ENSG00000139304|Vega:OTTHUMG00000170171 12 12q21.2 protein tyrosine phosphatase, receptor type, Q protein-coding PTPRQ protein tyrosine phosphatase, receptor type, Q O phosphotidylinositol phosphatase PTPRQ|protein-tyrosine phosphatase, receptor-type, expressed by glomerular mesangial cells|receptor-type tyrosine-protein phosphatase Q 20121230 -9606 374467 C12orf63 - - HGNC:24777|Ensembl:ENSG00000188596|HPRD:13484 12 12q23.1 chromosome 12 open reading frame 63 protein-coding C12orf63 chromosome 12 open reading frame 63 O putative uncharacterized protein C12orf63 20121230 -9606 374470 C12orf42 - - HGNC:24729|Ensembl:ENSG00000179088|HPRD:13393|Vega:OTTHUMG00000169988 12 12q23.2 chromosome 12 open reading frame 42 protein-coding C12orf42 chromosome 12 open reading frame 42 O uncharacterized protein C12orf42 20121230 -9606 374491 TPTE2P6 - - HGNC:42644 13 13q12.12 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 6 pseudo TPTE2P6 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 6 O - 20121230 -9606 374500 THSD1P1 - THSD1P HGNC:31375 13 13q14.3 thrombospondin, type I, domain containing 1 pseudogene 1 pseudo THSD1P1 thrombospondin, type I, domain containing 1 pseudogene 1 O - 20121230 -9606 374569 ASPG - C14orf76|GPA/WT HGNC:20123|Ensembl:ENSG00000166183|Vega:OTTHUMG00000170045 14 14q32.33 asparaginase homolog (S. cerevisiae) protein-coding ASPG asparaginase homolog (S. cerevisiae) O 60 kDa lysophospholipase|wild-type L-asparaginase 20121230 -9606 374618 TEX9 - - HGNC:29585|Ensembl:ENSG00000151575|HPRD:15493|Vega:OTTHUMG00000132035 15 15q21.3 testis expressed 9 protein-coding TEX9 testis expressed 9 O testis expressed sequence 9|testis-expressed sequence 9 protein 20121230 -9606 374650 GOLGA6L5 - GOLGA6L8 HGNC:30472|HPRD:13416|HPRD:13442 15 15q25.2 golgin A6 family-like 5 (pseudogene) pseudo GOLGA6L5 golgin A6 family-like 5 (pseudogene) O - 20121209 -9606 374654 KIF7 UNQ340/PRO539 ACLS|HLS2|JBTS12|UNQ340 HGNC:30497|MIM:611254|Ensembl:ENSG00000166813|HPRD:14187|Vega:OTTHUMG00000157177 15 15q26.1 kinesin family member 7 protein-coding KIF7 kinesin family member 7 O EQYK340|kinesin-like protein KIF7 20121230 -9606 374655 ZNF710 - - HGNC:25352|Ensembl:ENSG00000140548|HPRD:13329|Vega:OTTHUMG00000149812 15 15q26.1 zinc finger protein 710 protein-coding ZNF710 zinc finger protein 710 O - 20121230 -9606 374659 HDDC3 - MESH1 HGNC:30522|Ensembl:ENSG00000184508|HPRD:14635|Vega:OTTHUMG00000141260 15 15q26.1 HD domain containing 3 protein-coding HDDC3 HD domain containing 3 O (ppGpp)ase|HD domain-containing protein 3|guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1|metazoan SpoT homolog 1|metazoan SpoT homolog-1|penta-phosphate guanosine-3'-pyrophosphohydrolase 20121230 -9606 374666 WASH3P - FAM39DP HGNC:24362|HPRD:16921 15 15q26.3 WAS protein family homolog 3 pseudogene pseudo WASH3P WAS protein family homolog 3 pseudogene O - 20121230 -9606 374677 WASH4P - CXYorf1P|FAM39CP HGNC:14126 16 16p13.3 WAS protein family homolog 4 pseudogene pseudo WASH4P WAS protein family homolog 4 pseudogene O - 20121230 -9606 374739 TEPP - - HGNC:33745|MIM:610264|Ensembl:ENSG00000159648|HPRD:15486|Vega:OTTHUMG00000133463 16 16q21 testis, prostate and placenta expressed protein-coding TEPP testis, prostate and placenta expressed O testis, prostate and placenta-expressed protein|testis/prostate/placenta-expressed protein 20121230 -9606 374768 SPEM1 - C17orf83 HGNC:32429|Ensembl:ENSG00000181323|HPRD:14188|Vega:OTTHUMG00000178189 17 17p13.1 spermatid maturation 1 protein-coding SPEM1 spermatid maturation 1 O spermatid maturation protein 1 20121230 -9606 374786 EFCAB5 - - HGNC:24801|Ensembl:ENSG00000176927|HPRD:13528|Vega:OTTHUMG00000179743 17 17q11.2 EF-hand calcium binding domain 5 protein-coding EFCAB5 EF-hand calcium binding domain 5 O EF-hand calcium-binding domain-containing protein 5 20121230 -9606 374819 LRRC37A3 - LRRC37A HGNC:32427|Ensembl:ENSG00000176809|Vega:OTTHUMG00000132307 17 17q24.1 leucine rich repeat containing 37, member A3 protein-coding LRRC37A3 leucine rich repeat containing 37, member A3 O leucine-rich repeat-containing protein 37A3 20121230 -9606 374860 ANKRD30B - NY-BR-1.1 HGNC:24165|Ensembl:ENSG00000180777|Vega:OTTHUMG00000178841 18 18p11.21 ankyrin repeat domain 30B protein-coding ANKRD30B ankyrin repeat domain 30B O ankyrin repeat domain-containing protein 30B|breast cancer antigen NY-BR-1.1|serologically defined breast cancer antigen NY-BR-1.1 20121230 -9606 374864 CCDC178 - C18orf34 HGNC:29588|Ensembl:ENSG00000166960|HPRD:12691|Vega:OTTHUMG00000132279 18 18q12.1 coiled-coil domain containing 178 protein-coding CCDC178 coiled-coil domain containing 178 O uncharacterized protein C18orf34 20121230 -9606 374868 ATP9B HUSSY-20 ATPASEP|ATPIIB|NEO1L|hMMR1 HGNC:13541|MIM:614446|Ensembl:ENSG00000166377|HPRD:16528|Vega:OTTHUMG00000132898 18 18q23 ATPase, class II, type 9B protein-coding ATP9B ATPase, class II, type 9B O ATPase type IV, phospholipid transporting (P-type)|macrophage MHC receptor 1|probable phospholipid-transporting ATPase IIB 20121230 -9606 374872 C19orf35 - - HGNC:24793|Ensembl:ENSG00000188305|HPRD:12707|Vega:OTTHUMG00000178460 19 19p13.3 chromosome 19 open reading frame 35 protein-coding C19orf35 chromosome 19 open reading frame 35 O putative uncharacterized protein C19orf35 20121230 -9606 374875 HSD11B1L - 11-DH3|11-beta-HSD3|HSD3|SCDR10|SCDR10B|SDR26C2 HGNC:30419|Ensembl:ENSG00000167733|HPRD:18022|Vega:OTTHUMG00000178586 19 19p13.3 hydroxysteroid (11-beta) dehydrogenase 1-like protein-coding HSD11B1L hydroxysteroid (11-beta) dehydrogenase 1-like O 11-beta-hydroxysteroid dehydrogenase type 3|hydroxysteroid 11-beta-dehydrogenase 1-like protein|short chain dehydrogenase/reductase 10|short chain dehydrogenase/reductase family 26C, member 2 20121230 -9606 374877 C19orf45 - - HGNC:24745|Ensembl:ENSG00000198723|HPRD:13420 19 19p13.2 chromosome 19 open reading frame 45 protein-coding C19orf45 chromosome 19 open reading frame 45 O uncharacterized protein C19orf45 20121230 -9606 374879 ZNF699 - hang HGNC:24750|MIM:609571|Ensembl:ENSG00000196110|Vega:OTTHUMG00000179941 19 19p13.2 zinc finger protein 699 protein-coding ZNF699 zinc finger protein 699 O hangover homolog|hangover, Drosophila, homolog of 20121230 -9606 374882 TMEM205 UNQ501/PRO1018 UNQ501 HGNC:29631|MIM:613771|Ensembl:ENSG00000105518|HPRD:18605|Vega:OTTHUMG00000182021 19 19p13.2 transmembrane protein 205 protein-coding TMEM205 transmembrane protein 205 O MBC3205 20121230 -9606 374887 YJEFN3 - - HGNC:24785|Ensembl:ENSG00000250067|HPRD:13498|Vega:OTTHUMG00000162251 19 19p13.11 YjeF N-terminal domain containing 3 protein-coding YJEFN3 YjeF N-terminal domain containing 3 O apolipoprotein A1 binding protein|hYjeF_N3|hYjeF_N3-19p13.11|yjeF N-terminal domain-containing protein 3|yjeF_N3 20121230 -9606 374890 LOC374890 - - - 19 19p12 uncharacterized LOC374890 unknown - - - - 20121230 -9606 374897 SBSN UNQ698/PRO1343 UNQ698 HGNC:24950|MIM:609969|Ensembl:ENSG00000189001|HPRD:18498|Vega:OTTHUMG00000048102 19 19q13.13 suprabasin protein-coding SBSN suprabasin O HLAR698 20121230 -9606 374899 ZNF829 - - HGNC:34032|Ensembl:ENSG00000185869|Vega:OTTHUMG00000048161 19 19q13.12 zinc finger protein 829 protein-coding ZNF829 zinc finger protein 829 O - 20121230 -9606 374900 ZNF568 - - HGNC:25392|Ensembl:ENSG00000198453|HPRD:15848|Vega:OTTHUMG00000048160 19 19q13.12 zinc finger protein 568 protein-coding ZNF568 zinc finger protein 568 O - 20121230 -9606 374907 B3GNT8 - B3GALT7|BGALT15|beta3Gn-T8 HGNC:24139|Ensembl:ENSG00000177191|HPRD:12510 19 19q13.2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 protein-coding B3GNT8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 O BGnT-8|UDP-Gal:betaGal beta 1,3-galactosyltransferase polypeptide 7|beta galactosyltransferase BGALT15|beta-1,3-Gn-T8|beta-1,3-N-acetylglucosaminyltransferase 8|beta1,3-N-acetylglucosaminyltransferase 8 20121230 -9606 374918 IGFL1 UNQ644/PRO1274 APRG644|UNQ644 HGNC:24093|MIM:610544|Ensembl:ENSG00000188293|HPRD:17139 19 19q13.32 IGF-like family member 1 protein-coding IGFL1 IGF-like family member 1 O insulin growth factor-like family member 1 20121230 -9606 374920 C19orf68 - - HGNC:34495|Ensembl:ENSG00000185453|HPRD:14189 19 19q13.33 chromosome 19 open reading frame 68 protein-coding C19orf68 chromosome 19 open reading frame 68 O uncharacterized protein C19orf68 20121230 -9606 374928 ZNF773 - ZNF419B HGNC:30487|Ensembl:ENSG00000152439|HPRD:14655 19 19q13.43 zinc finger protein 773 protein-coding ZNF773 zinc finger protein 773 O zinc finger protein 419B 20121230 -9606 374946 DRAXIN PSEC0258 AGPA3119|C1orf187|UNQ3119|neucrin HGNC:25054|MIM:612682|Ensembl:ENSG00000162490|HPRD:11844|Vega:OTTHUMG00000002227 1 1p36.22 dorsal inhibitory axon guidance protein protein-coding DRAXIN dorsal inhibitory axon guidance protein O dorsal repulsive axon guidance protein|draxin|neural tissue-specific cysteine-rich protein 20121230 -9606 374955 SPATA21 RP11-430L17.3 spergen-2|spergen2 HGNC:28026|Ensembl:ENSG00000187144|HPRD:14190|Vega:OTTHUMG00000002312 1 1p36.13 spermatogenesis associated 21 protein-coding SPATA21 spermatogenesis associated 21 O spermatogenesis-associated protein 21 20121230 -9606 374969 CCDC23 - - HGNC:29204|Ensembl:ENSG00000177868|HPRD:14191|Vega:OTTHUMG00000007566 1 1p34.2 coiled-coil domain containing 23 protein-coding CCDC23 coiled-coil domain containing 23 O coiled-coil domain-containing protein 23 20121230 -9606 374973 TEX38 - ATPAF1-AS1|C1orf223|THEG4 HGNC:29589|Ensembl:ENSG00000186118|Vega:OTTHUMG00000007991 1 1p33 testis expressed 38 protein-coding TEX38 testis expressed 38 O ATPAF1 antisense RNA 1 (non-protein coding)|ATPAF1 antisense gene protein 1|testis highly expressed protein 4|uncharacterized protein ATPAF1-AS1 20121230 -9606 374977 MROH7 - C1orf175|HEATR8 HGNC:24802|Ensembl:ENSG00000184313|HPRD:10993|Vega:OTTHUMG00000009890 1 1p32.3 maestro heat-like repeat family member 7 protein-coding MROH7 maestro heat-like repeat family member 7 O HEAT repeat containing 8|HEAT repeat-containing protein 8 20121230 -9606 374986 FAM73A - - HGNC:24741|Ensembl:ENSG00000180488|HPRD:13415|Vega:OTTHUMG00000009766 1 1p31.1 family with sequence similarity 73, member A protein-coding FAM73A family with sequence similarity 73, member A O protein FAM73A 20121230 -9606 374987 NEXN-AS1 - C1orf118 HGNC:31983|HPRD:13542 1 1p31.1 NEXN antisense RNA 1 unknown NEXN-AS1 NEXN antisense RNA 1 O - 20121230 -9606 375027 S100A7P2 - S100A7L4|s100a7e HGNC:21656 1 1q21.3 S100 calcium binding protein A7 pseudogene 2 pseudo S100A7P2 S100 calcium binding protein A7 pseudogene 2 O - 20121230 -9606 375033 PEAR1 RP11-107D16.3 JEDI|MEGF12 HGNC:33631|MIM:610278|Ensembl:ENSG00000187800|Vega:OTTHUMG00000041293 1 1q23.1 platelet endothelial aggregation receptor 1 protein-coding PEAR1 platelet endothelial aggregation receptor 1 O hPEAR1|multiple EGF-like domains protein 12|multiple EGF-like-domains 12|multiple epidermal growth factor-like domains protein 12 20121230 -9606 375035 SFT2D2 RP4-747L4.1 UNQ512|dJ747L4.C1.2 HGNC:25140|Ensembl:ENSG00000213064|HPRD:14192|Vega:OTTHUMG00000034650 1 1q24.2 SFT2 domain containing 2 protein-coding SFT2D2 SFT2 domain containing 2 O SFT2 domain-containing protein 2|vesicle transport protein SFT2B 20121230 -9606 375056 MIA3 RP11-378J18.4 ARNT|D320|TANGO|TANGO1|UNQ6077 HGNC:24008|MIM:613455|Ensembl:ENSG00000154305|Vega:OTTHUMG00000037543 1 1q41 melanoma inhibitory activity family, member 3 protein-coding MIA3 melanoma inhibitory activity family, member 3 O C219 reactive peptide|C219-reactive peptide|melanoma inhibitory activity protein 3|transport and Golgi organization protein 1 20121230 -9606 375057 C1orf95 RP11-9C4.1 - HGNC:30491|Ensembl:ENSG00000203685|HPRD:16821|Vega:OTTHUMG00000037583 1 1q42.12 chromosome 1 open reading frame 95 protein-coding C1orf95 chromosome 1 open reading frame 95 O uncharacterized membrane protein C1orf95 20121230 -9606 375061 FAM89A - C1orf153|RP11-423F24.2 HGNC:25057|Ensembl:ENSG00000182118|HPRD:11845|Vega:OTTHUMG00000037960 1 1q42.2 family with sequence similarity 89, member A protein-coding FAM89A family with sequence similarity 89, member A O protein FAM89A 20121230 -9606 375133 PI4KAP2 - - HGNC:33577|HPRD:14194 22 22q11.21 phosphatidylinositol 4-kinase, catalytic, alpha pseudogene 2 pseudo PI4KAP2 phosphatidylinositol 4-kinase, catalytic, alpha pseudogene 2 O - 20121230 -9606 375189 PFN4 - - HGNC:31103|Ensembl:ENSG00000176732|HPRD:15120|Vega:OTTHUMG00000090816 2 2p23.3 profilin family, member 4 protein-coding PFN4 profilin family, member 4 O profilin IV|profilin-4 20121230 -9606 375190 FAM228B - - HGNC:24736|Ensembl:ENSG00000219626|HPRD:13403|Vega:OTTHUMG00000151901 2 2p23.3 family with sequence similarity 228, member B protein-coding FAM228B family with sequence similarity 228, member B O UPF0638 protein B|protein FAM228B 20121230 -9606 375196 LOC375196 - - - 2 2p22.3 uncharacterized LOC375196 miscRNA - - - - 20121230 -9606 375248 ANKRD36 UNQ2430/PRO499 UNQ2430 HGNC:24079|Ensembl:ENSG00000135976|HPRD:16492|Vega:OTTHUMG00000155256 2 2q11.2 ankyrin repeat domain 36 protein-coding ANKRD36 ankyrin repeat domain 36 O ankyrin repeat domain-containing protein 36|ankyrin repeat domain-containing protein 36A|ankyrin-related 20121230 -9606 375260 WASH2P - FAM39B HGNC:33145|HPRD:17562 2 2q13 WAS protein family homolog 2 pseudogene pseudo WASH2P WAS protein family homolog 2 pseudogene O - 20121230 -9606 375287 RBM43 - C2orf38 HGNC:24790|Ensembl:ENSG00000184898|HPRD:10992|Vega:OTTHUMG00000131866 2 2q23.3 RNA binding motif protein 43 protein-coding RBM43 RNA binding motif protein 43 O RNA-binding motif protein 43|RNA-binding protein 43 20121230 -9606 375295 LOC375295 - - - 2 2q31.1 uncharacterized LOC375295 miscRNA - - - - 20121230 -9606 375298 CERKL - RP26 HGNC:21699|MIM:608381|Ensembl:ENSG00000188452|HPRD:09757|Vega:OTTHUMG00000154315 2 2q31.3 ceramide kinase-like protein-coding CERKL ceramide kinase-like O ceramide kinase-like protein 20121230 -9606 375307 C2orf62 - - HGNC:25062|Ensembl:ENSG00000158428|HPRD:11846|Vega:OTTHUMG00000133106 2 2q35 chromosome 2 open reading frame 62 protein-coding C2orf62 chromosome 2 open reading frame 62 O uncharacterized protein C2orf62 20121230 -9606 375316 RBM44 - - HGNC:24756|Ensembl:ENSG00000177483|Vega:OTTHUMG00000152937 2 2q37.3 RNA binding motif protein 44 protein-coding RBM44 RNA binding motif protein 44 O RNA-binding motif protein 44|RNA-binding protein 44 20121230 -9606 375318 AQP12A - AQP-12|AQP12|AQPX2 HGNC:19941|MIM:609789|Ensembl:ENSG00000184945|HPRD:16504|Vega:OTTHUMG00000133353 2 2q37.3 aquaporin 12A protein-coding AQP12A aquaporin 12A O aquaporin X2|aquaporin-12A 20121230 -9606 375323 LHFPL4 - - HGNC:29568|MIM:610240|Ensembl:ENSG00000156959|HPRD:17361|Vega:OTTHUMG00000155066 3 3p25.3 lipoma HMGIC fusion partner-like 4 protein-coding LHFPL4 lipoma HMGIC fusion partner-like 4 O LHFP-like protein 4|lipoma HMGIC fusion partner-like 4 protein 20121230 -9606 375337 TOPAZ1 - C3orf77 HGNC:24746|MIM:614412|Ensembl:ENSG00000173769|Vega:OTTHUMG00000156172 3 3p21.31 testis and ovary specific PAZ domain containing 1 protein-coding TOPAZ1 testis and ovary specific PAZ domain containing 1 O testis and ovary-specific PAZ domain gene 1|testis- and ovary-specific PAZ domain-containing protein 1|topaz 1 20121230 -9606 375341 C3orf62 - - HGNC:24771|Ensembl:ENSG00000188315|HPRD:13475|Vega:OTTHUMG00000156819 3 3p21.31 chromosome 3 open reading frame 62 protein-coding C3orf62 chromosome 3 open reading frame 62 O uncharacterized protein C3orf62 20121230 -9606 375346 TMEM110 - - HGNC:30526|Ensembl:ENSG00000213533|HPRD:14675|Vega:OTTHUMG00000150346 3 3p21.1 transmembrane protein 110 protein-coding TMEM110 transmembrane protein 110 O - 20121230 -9606 375350 LOC375350 - - - 3 3p14.1 COP9 constitutive photomorphogenic homolog subunit 8 (Arabidopsis) pseudogene pseudo - - - - 20121230 -9606 375387 LRRC33 UNQ3030/PRO9833 GARPL1|UNQ3030 HGNC:24613|Ensembl:ENSG00000174004|HPRD:17452|Vega:OTTHUMG00000155569 3 3q29 leucine rich repeat containing 33 protein-coding LRRC33 leucine rich repeat containing 33 O ELLP3030|leucine-rich repeat-containing protein 33 20121230 -9606 375444 C5orf34 - - HGNC:24738|Ensembl:ENSG00000172244|HPRD:13407|Vega:OTTHUMG00000131151 5 5p12 chromosome 5 open reading frame 34 protein-coding C5orf34 chromosome 5 open reading frame 34 O uncharacterized protein C5orf34 20121230 -9606 375449 MAST4 - - HGNC:19037|Ensembl:ENSG00000069020|HPRD:14195|Vega:OTTHUMG00000152471 5 5q12.3 microtubule associated serine/threonine kinase family member 4 protein-coding MAST4 microtubule associated serine/threonine kinase family member 4 O microtubule-associated serine/threonine-protein kinase 4 20121230 -9606 375484 SIMC1 - C5orf25|OOMA1 HGNC:24779|Ensembl:ENSG00000170085|HPRD:13486|Vega:OTTHUMG00000130663 5 5q35.2 SUMO-interacting motifs containing 1 protein-coding SIMC1 SUMO-interacting motifs containing 1 O oocyte maturation associated 1|uncharacterized protein C5orf25 20121230 -9606 375513 GUSBP4 - C6orf216|GUSBL2|SMA3-L|SMAC3L|b55C20.2 HGNC:18220|HPRD:16667 6 6p11.2 glucuronidase, beta pseudogene 4 pseudo GUSBP4 glucuronidase, beta pseudogene 4 O - 20121230 -9606 375519 GJB7 - CX25|bA136M9.1|connexin25 HGNC:16690|MIM:611921|Ensembl:ENSG00000164411|HPRD:13579|Vega:OTTHUMG00000015166 6 6q15 gap junction protein, beta 7, 25kDa protein-coding GJB7 gap junction protein, beta 7, 25kDa O connexin 25|connexin-25|gap junction beta-7 protein 20121230 -9606 375567 VWC2 UNQ739/PRO1434 PSST739|UNQ739 HGNC:30200|MIM:611108|Ensembl:ENSG00000188730|HPRD:18271|Vega:OTTHUMG00000129265 7 7p12.2 von Willebrand factor C domain containing 2 protein-coding VWC2 von Willebrand factor C domain containing 2 O brain-specific chordin-like protein|brorin|von Willebrand factor C domain-containing protein 2 20121230 -9606 375593 TRIM73 - TRIM50B HGNC:18162|MIM:612549|Ensembl:ENSG00000178809|HPRD:18606|Vega:OTTHUMG00000156075 7 7q11.23 tripartite motif containing 73 protein-coding TRIM73 tripartite motif containing 73 O tripartite motif-containing 50B|tripartite motif-containing 73|tripartite motif-containing protein 50B|tripartite motif-containing protein 73 20121230 -9606 375601 OR7E31P - OR7E114P|OR7E32P|OR7E45P|OR9-4|OST016|OST049|OST205 HGNC:8404 9 9q22.2 olfactory receptor, family 7, subfamily E, member 31 pseudogene pseudo OR7E31P olfactory receptor, family 7, subfamily E, member 31 pseudogene O - 20121230 -9606 375607 NAT16 - C7orf52 HGNC:22030|Ensembl:ENSG00000167011|HPRD:13434|Vega:OTTHUMG00000157110 7 7q22.1 N-acetyltransferase 16 (GCN5-related, putative) protein-coding NAT16 N-acetyltransferase 16 (GCN5-related, putative) O putative N-acetyltransferase 16|putative N-acetyltransferase C7orf52 20121230 -9606 375611 SLC26A5 - DFNB61|PRES HGNC:9359|MIM:604943|Ensembl:ENSG00000170615|HPRD:09224|Vega:OTTHUMG00000149911 7 7q22.1 solute carrier family 26, member 5 (prestin) protein-coding SLC26A5 solute carrier family 26, member 5 (prestin) O prestin|prestin (motor protein) 20121230 -9606 375612 LHFPL3 - LHFPL4 HGNC:6589|MIM:609719|Ensembl:ENSG00000187416|HPRD:17273|Vega:OTTHUMG00000157273 7 7q22.2 lipoma HMGIC fusion partner-like 3 protein-coding LHFPL3 lipoma HMGIC fusion partner-like 3 O LHFP-like protein 3|lipoma HMGIC fusion partner-like 3 protein|lipoma HMGIC fusion partner-like 4 20121230 -9606 375616 KCP - CRIM2|KCP1|NET67 HGNC:17585|MIM:609344|HPRD:14196 7 7q32.1 kielin/chordin-like protein protein-coding KCP kielin/chordin-like protein O CRIM-2|KCP-1|cysteine rich BMP regulator 2 (chordin-like)|cysteine-rich BMP regulator 2|cysteine-rich motor neuron 2 protein|kielin|kielin/chordin-like protein 1 20121230 -9606 375686 SPATC1 - SPATA15 HGNC:30510|MIM:610874|Ensembl:ENSG00000186583|HPRD:15433|Vega:OTTHUMG00000156976 8 8q24.3 spermatogenesis and centriole associated 1 protein-coding SPATC1 spermatogenesis and centriole associated 1 O speriolin|spermatogenesis and centriole-associated protein 1|spermatogenesis-associated protein 15|spermatogenic cell-specific Cdc20-binding protein 20121230 -9606 375690 WASH5P - - HGNC:33884 19 19p13.3 WAS protein family homolog 5 pseudogene pseudo WASH5P WAS protein family homolog 5 pseudogene O - 20121209 -9606 375704 ENHO UNQ470/PRO830 C9orf165|UNQ470 HGNC:24838|Ensembl:ENSG00000168913|HPRD:18263|Vega:OTTHUMG00000159589 9 9p13.3 energy homeostasis associated protein-coding ENHO energy homeostasis associated O GAAI470|adropin|energy homeostasis-associated protein 20121230 -9606 375719 AQP7P1 - bA251O17.3 HGNC:32048 9 9q13 aquaporin 7 pseudogene 1 pseudo AQP7P1 aquaporin 7 pseudogene 1 O - 20121230 -9606 375743 PTAR1 RP11-109D9.2 - HGNC:30449|Ensembl:ENSG00000188647|Vega:OTTHUMG00000019982 9 9q21.12 protein prenyltransferase alpha subunit repeat containing 1 protein-coding PTAR1 protein prenyltransferase alpha subunit repeat containing 1 O 4930428J16Rik|protein prenyltransferase alpha subunit repeat-containing protein 1 20121230 -9606 375748 ERCC6L2 RP11-346B7.2 C9orf102|RAD26L|SR278 HGNC:26922|Ensembl:ENSG00000182150|HPRD:17362|Vega:OTTHUMG00000020289 9 9q22.32 excision repair cross-complementing rodent repair deficiency, complementation group 6-like 2 protein-coding ERCC6L2 excision repair cross-complementing rodent repair deficiency, complementation group 6-like 2 O RAD26L hypothetical protein|putative DNA repair and recombination protein RAD26-like|putative repair and recombination helicase RAD26L|stretch responsive protein 278 20121230 -9606 375757 SWI5 RP11-395P17.9 C9orf119|bA395P17.9 HGNC:31412|Ensembl:ENSG00000175854|Vega:OTTHUMG00000020729 9 9q34.11 SWI5 recombination repair homolog (yeast) protein-coding SWI5 SWI5 recombination repair homolog (yeast) O DNA repair protein SWI5 homolog|HBV DNAPTP1-transactivated protein A|protein SAE3 homolog 20121230 -9606 375759 C9orf50 - - HGNC:23677|Ensembl:ENSG00000179058|HPRD:14197|Vega:OTTHUMG00000020786 9 9q34.11 chromosome 9 open reading frame 50 protein-coding C9orf50 chromosome 9 open reading frame 50 O uncharacterized protein C9orf50 20121230 -9606 375775 PNPLA7 RP11-48C7.2 C9orf111|NTE-R1|NTEL1 HGNC:24768|MIM:612122|Ensembl:ENSG00000130653|HPRD:12933|Vega:OTTHUMG00000020990 9 9q34.3 patatin-like phospholipase domain containing 7 protein-coding PNPLA7 patatin-like phospholipase domain containing 7 O patatin-like phospholipase domain-containing protein 7 20121230 -9606 375790 AGRN RP11-54O7.13-009 - HGNC:329|MIM:103320|Ensembl:ENSG00000188157|HPRD:10550|Vega:OTTHUMG00000040778 1 1p36.33 agrin protein-coding AGRN agrin O agrin proteoglycan 20121230 -9606 375791 C9orf169 RP13-122B23.5 - HGNC:30529|Ensembl:ENSG00000197191|HPRD:14696 9 9q34.3 chromosome 9 open reading frame 169 protein-coding C9orf169 chromosome 9 open reading frame 169 O UPF0574 protein C9orf169 20121230 -9606 375850 RBMY2BP - RBMY2B HGNC:9918 Y Yq11.223 RNA binding motif protein, Y-linked, family 2, member B pseudogene pseudo RBMY2BP RNA binding motif protein, Y-linked, family 2, member B pseudogene O - 20121209 -9606 375940 FLJ46361 - - HPRD:09964 10 10q26.13 deleted in malignant brain tumors 1 pseudogene pseudo - - - - 20121230 -9606 376132 LRRC10 - HRLRRP|LRRC10A HGNC:20264|MIM:610846|Ensembl:ENSG00000198812|HPRD:17449|Vega:OTTHUMG00000169384 12 12q15 leucine rich repeat containing 10 protein-coding LRRC10 leucine rich repeat containing 10 O leucine-rich repeat-containing protein 10 20121230 -9606 376267 RAB15 - - HGNC:20150|Ensembl:ENSG00000139998|HPRD:11467|Vega:OTTHUMG00000142810 14 14q23.3 RAB15, member RAS oncogene family protein-coding RAB15 RAB15, member RAS oncogene family O RAB15, member RAS onocogene family|Ras-related protein Rab-15 isoform AN1|Ras-related protein Rab-15 isoform AN2|Ras-related protein Rab-15 isoform AN3|ras-related protein Rab-15 20121230 -9606 376412 RNF126P1 - - HGNC:30340 17 17q22 ring finger protein 126 pseudogene 1 pseudo RNF126P1 ring finger protein 126 pseudogene 1 O - 20121230 -9606 376413 LOC376413 - - - 17 17q23.2 PAD-like unknown - - - - 20100404 -9606 376497 SLC27A1 - ACSVL5|FATP|FATP1 HGNC:10995|MIM:600691|Ensembl:ENSG00000130304|HPRD:11863 19 19p13.11 solute carrier family 27 (fatty acid transporter), member 1 protein-coding SLC27A1 solute carrier family 27 (fatty acid transporter), member 1 O FATP-1|fatty acid transport protein 1|long-chain fatty acid transport protein 1|solute carrier family 27 member 1 20121230 -9606 376693 RPS10P7 - RPS10_2_147 HGNC:36423 1 1q32.1 ribosomal protein S10 pseudogene 7 pseudo RPS10P7 ribosomal protein S10 pseudogene 7 O - 20121230 -9606 376818 LOC376818 - - - 22 22q11.21 E2F transcription factor 6 pseudogene pseudo - - - - 20121230 -9606 376844 SDC4P - - HGNC:18903 22 22q12.2 syndecan 4 pseudogene pseudo SDC4P syndecan 4 pseudogene O - 20121230 -9606 376940 ZC3H6 - ZC3HDC6 HGNC:24762|Ensembl:ENSG00000188177|HPRD:15698|Vega:OTTHUMG00000153286 2 2q13 zinc finger CCCH-type containing 6 protein-coding ZC3H6 zinc finger CCCH-type containing 6 O zinc finger CCCH domain-containing protein 6|zinc finger CCCH type domain containing 6|zinc finger CCCH-type domain containing 6 20121230 -9606 377007 KLHL30 - - HGNC:24770|Ensembl:ENSG00000168427|HPRD:13472|Vega:OTTHUMG00000152905 2 2q37.3 kelch-like 30 (Drosophila) protein-coding KLHL30 kelch-like 30 (Drosophila) O kelch-like protein 30 20121230 -9606 377047 PRSS45 - TESSP5 HGNC:30717|Ensembl:ENSG00000188086|HPRD:07157|Vega:OTTHUMG00000133480 3 3p21.31 protease, serine, 45 protein-coding PRSS45 protease, serine, 45 O putative testis serine protease 5|serine protease 45|testis serine protease 5 20121230 -9606 377381 RPL24P4 RP1-125M3.2 RPL24_1_692|dJ125M3.1 HGNC:21371 6 6p21.1 ribosomal protein L24 pseudogene 4 pseudo RPL24P4 ribosomal protein L24 pseudogene 4 O - 20121230 -9606 377630 USP17L2 - DUB-3|DUB3 HGNC:34434|MIM:610186|Ensembl:ENSG00000223443|HPRD:16844|Vega:OTTHUMG00000165295 8 8p23.1 ubiquitin specific peptidase 17-like family member 2 protein-coding USP17L2 ubiquitin specific peptidase 17-like family member 2 O deubiquitinating enzyme 17-like protein 2|deubiquitinating enzyme 3|deubiquitinating protein 3|ubiquitin carboxyl-terminal hydrolase 17-like protein 2|ubiquitin specific peptidase 17-like 2|ubiquitin thioesterase 17-like protein 2|ubiquitin thiolesterase 17-like protein 2|ubiquitin-specific-processing protease 17-like protein 2 20121230 -9606 377677 CA13 - CAXIII HGNC:14914|MIM:611436|Ensembl:ENSG00000185015|HPRD:12992|Vega:OTTHUMG00000164940 8 8q21.2 carbonic anhydrase XIII protein-coding CA13 carbonic anhydrase XIII O CA-XIII|carbonate dehydratase XIII|carbonic anhydrase 13 20121230 -9606 377711 LOC377711 - - - 8 8q24.3 HEAT repeat-containing protein 7A-like protein-coding - - - KIAA1833-like|uncharacterized protein LOC377711 20121209 -9606 377841 ENTPD8 UNQ2492/PRO5779 GLSR2492|NTPDase-8|UNQ2492 HGNC:24860|Ensembl:ENSG00000188833|HPRD:16864|Vega:OTTHUMG00000131831 9 9q34.3 ectonucleoside triphosphate diphosphohydrolase 8 protein-coding ENTPD8 ectonucleoside triphosphate diphosphohydrolase 8 O E-NTPDase 8|NTPDase 8|NTPDase8|ecto-ATP-diphosphohydrolase|liver ecto-ATP-diphosphohydrolase|nucleoside triphosphate diphosphohydrolase-8 20121230 -9606 377997 TSPY12P - TSPYP2 HGNC:23904 Y Yp11.2 testis specific protein, Y-linked 12, pseudogene pseudo TSPY12P testis specific protein, Y-linked 12, pseudogene O - 20121230 -9606 378001 TSPY13P - TSPYP3 HGNC:23905 Y Yp11.2 testis specific protein, Y-linked 13, pseudogene pseudo TSPY13P testis specific protein, Y-linked 13, pseudogene O - 20121230 -9606 378008 CDY5P - - HGNC:23850 Y Yq11.222 chromodomain protein, Y-linked 5 pseudogene pseudo CDY5P chromodomain protein, Y-linked 5 pseudogene O - 20121209 -9606 378009 OFD1P1Y - OFD1P1|OFD1PY1|OFDYP1 HGNC:23873 Y Yq11.222 OFD1 pseudogene 1, Y-linked pseudo OFD1P1Y OFD1 pseudogene 1, Y-linked O - 20121209 -9606 378010 OFD1P2Y - OFD1P2|OFD1PY2|OFDYP2 HGNC:23874 Y Yq11.222 OFD1 pseudogene 2, Y-linked pseudo OFD1P2Y OFD1 pseudogene 2, Y-linked O - 20121209 -9606 378011 CDY9P - - HGNC:23851 Y Yq11.222 chromodomain protein, Y-linked 9 pseudogene pseudo CDY9P chromodomain protein, Y-linked 9 pseudogene O - 20121209 -9606 378013 TSPY14P - TSPYP4 HGNC:23906 Y Yq11.223 testis specific protein, Y-linked 14, pseudogene pseudo TSPY14P testis specific protein, Y-linked 14, pseudogene O - 20121209 -9606 378014 CDY11P - - HGNC:23852 Y Yq11.223 chromodomain protein, Y-linked 11 pseudogene pseudo CDY11P chromodomain protein, Y-linked 11 pseudogene O - 20121209 -9606 378108 TRIM74 - TRIM50C HGNC:17453|MIM:612550|Ensembl:ENSG00000155428|HPRD:15567|Vega:OTTHUMG00000129851 7 7q11.23 tripartite motif containing 74 protein-coding TRIM74 tripartite motif containing 74 O tripartite motif-containing 50C|tripartite motif-containing 74|tripartite motif-containing protein 50C|tripartite motif-containing protein 74 20121230 -9606 378426 AIS2 - VAMAS3 HGNC:23054|MIM:608391 7 - autoimmune susceptibility 2 unknown AIS2 autoimmune susceptibility 2 O - 20120622 -9606 378427 AIS3 - VAMAS4 HGNC:23083|MIM:608392 8 - autoimmune susceptibility 3 (vitiligo specific) unknown AIS3 autoimmune susceptibility 3 (vitiligo specific) O - 20120622 -9606 378483 MRX80 - - HGNC:18872 X Xq22-q24 mental retardation, X-linked 80 unknown MRX80 mental retardation, X-linked 80 O - 20110215 -9606 378484 MRX82 - - HGNC:21626|MIM:300518 X Xq24-q25 mental retardation, X-linked 82 unknown MRX82 mental retardation, X-linked 82 O - 20120622 -9606 378706 RN7SL2 - 7L1C|7L30.1|7SL1c|RNSRP2 HGNC:23134|MIM:612179 14 14q21.3 RNA, 7SL, cytoplasmic 2 snRNA RN7SL2 RNA, 7SL, cytoplasmic 2 O - 20121230 -9606 378707 RN7SL3 - 7L30.2|RNSRP3 HGNC:23135|MIM:612180 14 14q21.3 RNA, 7SL, cytoplasmic 3 pseudo RN7SL3 RNA, 7SL, cytoplasmic 3 O - 20121230 -9606 378708 APITD1 - CENP-S|CENPS|FAAP16|MHF1 HGNC:23163|MIM:609130|Ensembl:ENSG00000175279|Vega:OTTHUMG00000059085 1 1p36.22 apoptosis-inducing, TAF9-like domain 1 protein-coding APITD1 apoptosis-inducing, TAF9-like domain 1 O FANCM-interacting histone fold protein 1|Fanconi anemia-associated polypeptide of 16 kDa|apoptosis-inducing TAF9-like domain-containing protein 1|centromere protein S 20121230 -9606 378805 FLJ43663 - - - 7 7q32.3 uncharacterized LOC378805 miscRNA - - - - 20121230 -9606 378807 CATSPER4 - - HGNC:23220|MIM:609121|Ensembl:ENSG00000188782|HPRD:18607|Vega:OTTHUMG00000003383 1 1p35.3 cation channel, sperm associated 4 protein-coding CATSPER4 cation channel, sperm associated 4 O cation channel sperm-associated protein 4|ion channel CatSper4 20121230 -9606 378810 SNX19P1 - SNX19P HGNC:16765 21 21q11.2 sorting nexin 19 pseudogene 1 pseudo SNX19P1 sorting nexin 19 pseudogene 1 O - 20121230 -9606 378818 RPL37P3 - RL37P|RPL37_13_1720 HGNC:17238 21 21q21.1 ribosomal protein L37 pseudogene 3 pseudo RPL37P3 ribosomal protein L37 pseudogene 3 O - 20121230 -9606 378819 RPL37P4 - RL37P2|RPL37_10_1721 HGNC:17239 21 21q21.1 ribosomal protein L37 pseudogene 4 pseudo RPL37P4 ribosomal protein L37 pseudogene 4 O - 20121230 -9606 378825 LINC00162 - C21orf113|NCRNA00162|NLC1-C|NLC1C|PRED74 HGNC:19725 21 21q22.3 long intergenic non-protein coding RNA 162 miscRNA LINC00162 long intergenic non-protein coding RNA 162 O - 20121230 -9606 378828 LINC00317 - C21orf117|NCRNA00317|PRED89 HGNC:23126 21 - long intergenic non-protein coding RNA 317 miscRNA LINC00317 long intergenic non-protein coding RNA 317 O - 20121230 -9606 378832 COL18A1-AS1 - C21orf123|NCRNA00175|PRED80 HGNC:23132|HPRD:10736 21 21q22.3 COL18A1 antisense RNA 1 miscRNA COL18A1-AS1 COL18A1 antisense RNA 1 O - 20121230 -9606 378881 MIR381HG - C14orf89|NCRNA00225 HGNC:20136 14 14q32.31 MIR381 host gene (non-protein coding) miscRNA MIR381HG MIR381 host gene (non-protein coding) O - 20121021 -9606 378882 MRX84 - - HGNC:20228|MIM:300505 X Xp11.3-q22.3 mental retardation, X-linked 84 unknown MRX84 mental retardation, X-linked 84 O - 20120622 -9606 378884 NHLRC1 - EPM2A|EPM2B|MALIN|bA204B7.2 HGNC:21576|MIM:608072|Ensembl:ENSG00000187566|HPRD:06995|Vega:OTTHUMG00000014315 6 6p22.3 NHL repeat containing 1 protein-coding NHLRC1 NHL repeat containing 1 O E3 ubiquitin-protein ligase NHLRC1|NHL repeat-containing protein 1 20121230 -9606 378888 HSN1B - - MIM:608088 3 3p24-p22 Hereditary sensory neuropathy, type IB unknown - - - - 20120622 -9606 378925 RNF148 - - HGNC:22411|Ensembl:ENSG00000235631|HPRD:11512|Vega:OTTHUMG00000157099 7 7q31.33 ring finger protein 148 protein-coding RNF148 ring finger protein 148 O RING finger protein 148 20121230 -9606 378938 MALAT1 PRO1073 HCN|LINC00047|MALAT-1|NCRNA00047|NEAT2|PRO2853 HGNC:29665|MIM:607924 11 11q13.1 metastasis associated lung adenocarcinoma transcript 1 (non-protein coding) miscRNA MALAT1 metastasis associated lung adenocarcinoma transcript 1 (non-protein coding) O - 20121230 -9606 378948 RBMY1B - - HGNC:23914|Ensembl:ENSG00000242875|HPRD:17958|Vega:OTTHUMG00000042045 Y Yq11.223 RNA binding motif protein, Y-linked, family 1, member B protein-coding RBMY1B RNA binding motif protein, Y-linked, family 1, member B O RNA-binding motif protein, Y chromosome, family 1 member B 20121209 -9606 378949 RBMY1D - - HGNC:23915|Ensembl:ENSG00000244395|HPRD:17959|Vega:OTTHUMG00000043598 Y Yq11.223 RNA binding motif protein, Y-linked, family 1, member D protein-coding RBMY1D RNA binding motif protein, Y-linked, family 1, member D O RNA-binding motif protein, Y chromosome, family 1 member D 20121209 -9606 378950 RBMY1E - - HGNC:23916|Ensembl:ENSG00000242389|HPRD:17960|Vega:OTTHUMG00000043602 Y Yq11.223 RNA binding motif protein, Y-linked, family 1, member E protein-coding RBMY1E RNA binding motif protein, Y-linked, family 1, member E O RNA-binding motif protein, Y chromosome, family 1 member E 20121209 -9606 378951 RBMY1J - - HGNC:23917|Ensembl:ENSG00000226941|HPRD:15233|Vega:OTTHUMG00000043594 Y Yq11.223 RNA binding motif protein, Y-linked, family 1, member J protein-coding RBMY1J RNA binding motif protein, Y-linked, family 1, member J O RNA-binding motif protein, Y chromosome, family 1 member F/J|y chromosome RNA recognition motif 2 20121230 -9606 378952 RBMY2GP - - HGNC:23892 Y Yp11.2 RNA binding motif protein, Y-linked, family 2, member G pseudogene pseudo RBMY2GP RNA binding motif protein, Y-linked, family 2, member G pseudogene O - 20121209 -9606 378953 RBMY2HP - - HGNC:23893 Y Yp11.2 RNA binding motif protein, Y-linked, family 2, member H pseudogene pseudo RBMY2HP RNA binding motif protein, Y-linked, family 2, member H pseudogene O - 20121230 -9606 378955 RBMY2JP - - HGNC:23918 Y Yp11.2 RNA binding motif protein, Y-linked, family 2, member J pseudogene pseudo RBMY2JP RNA binding motif protein, Y-linked, family 2, member J pseudogene O - 20121209 -9606 378956 RBMY2NP - - HGNC:23919 Y Yp11.2 RNA binding motif protein, Y-linked, family 2, member N pseudogene pseudo RBMY2NP RNA binding motif protein, Y-linked, family 2, member N pseudogene O - 20121230 -9606 379003 DFNB40 - - HGNC:20408|MIM:608264 22 22q11.21-q12.1 deafness, autosomal recessive 40 unknown DFNB40 deafness, autosomal recessive 40 O - 20120622 -9606 379005 RBMY2OP - - HGNC:23894 Y Yp11.2 RNA binding motif protein, Y-linked, family 2, member O pseudogene pseudo RBMY2OP RNA binding motif protein, Y-linked, family 2, member O pseudogene O - 20121230 -9606 379006 RBMY2QP - - HGNC:23895 Y Yp11.2 RNA binding motif protein, Y-linked, family 2, member Q pseudogene pseudo RBMY2QP RNA binding motif protein, Y-linked, family 2, member Q pseudogene O - 20121230 -9606 379007 RBMY2SP - - HGNC:23896 Y Yq11.223 RNA binding motif protein, Y-linked, family 2, member S pseudogene pseudo RBMY2SP RNA binding motif protein, Y-linked, family 2, member S pseudogene O - 20121209 -9606 379008 RBMY2TP - - HGNC:23897 Y Yq11.222 RNA binding motif protein, Y-linked, family 2, member T pseudogene pseudo RBMY2TP RNA binding motif protein, Y-linked, family 2, member T pseudogene O - 20121209 -9606 379009 RBMY2UP - - HGNC:23898 Y Yq11.223 RNA binding motif protein, Y-linked, family 2, member U pseudogene pseudo RBMY2UP RNA binding motif protein, Y-linked, family 2, member U pseudogene O - 20121209 -9606 379010 RBMY2VP - - HGNC:23899 Y Yq11.223 RNA binding motif protein, Y-linked, family 2, member V pseudogene pseudo RBMY2VP RNA binding motif protein, Y-linked, family 2, member V pseudogene O - 20121209 -9606 379011 RBMY2WP - - HGNC:23900 Y Yq11.223 RNA binding motif protein, Y-linked, family 2, member W pseudogene pseudo RBMY2WP RNA binding motif protein, Y-linked, family 2, member W pseudogene O - 20121209 -9606 379012 RBMY2XP - - HGNC:23901 Y Yq11.223 RNA binding motif protein, Y-linked, family 2, member X pseudogene pseudo RBMY2XP RNA binding motif protein, Y-linked, family 2, member X pseudogene O - 20121209 -9606 379013 RNF138P1 - - HGNC:30342 5 5q11.2 ring finger protein 138, E3 ubiquitin protein ligase pseudogene 1 pseudo RNF138P1 ring finger protein 138, E3 ubiquitin protein ligase pseudogene 1 O - 20121230 -9606 379024 RBMY2YP - - HGNC:23902 Y Yq11.223 RNA binding motif protein, Y-linked, family 2, member Y pseudogene pseudo RBMY2YP RNA binding motif protein, Y-linked, family 2, member Y pseudogene O - 20121209 -9606 379025 FLJ31306 - - - 14 14q23.1 uncharacterized LOC379025 miscRNA - - - - 20121230 -9606 379027 TSPY5P - TSPYP5 HGNC:23907 Y Yp11.2 testis specific protein, Y-linked 5, pseudogene pseudo TSPY5P testis specific protein, Y-linked 5, pseudogene O - 20121230 -9606 379028 XKRYP1 - - HGNC:23908 Y Yq11.221 XK, Kell blood group complex subunit-related, Y-linked pseudogene 1 pseudo XKRYP1 XK, Kell blood group complex subunit-related, Y-linked pseudogene 1 O - 20121209 -9606 379029 XKRYP2 - - HGNC:23909 Y Yq11.222 XK, Kell blood group complex subunit-related, Y-linked pseudogene 2 pseudo XKRYP2 XK, Kell blood group complex subunit-related, Y-linked pseudogene 2 O - 20121209 -9606 379030 XKRYP3 - - HGNC:23910 Y Yq11.223 XK, Kell blood group complex subunit-related, Y-linked pseudogene 3 pseudo XKRYP3 XK, Kell blood group complex subunit-related, Y-linked pseudogene 3 O - 20121209 -9606 379031 XKRYP4 - - HGNC:23911 Y Yq11.223 XK, Kell blood group complex subunit-related, Y-linked pseudogene 4 pseudo XKRYP4 XK, Kell blood group complex subunit-related, Y-linked pseudogene 4 O - 20121209 -9606 379032 XKRYP5 - - HGNC:23912 Y Yq11.223 XK, Kell blood group complex subunit-related, Y-linked pseudogene 5 pseudo XKRYP5 XK, Kell blood group complex subunit-related, Y-linked pseudogene 5 O - 20121209 -9606 379033 XKRYP6 - - HGNC:23913 Y Yq11.23 XK, Kell blood group complex subunit-related, Y-linked pseudogene 6 pseudo XKRYP6 XK, Kell blood group complex subunit-related, Y-linked pseudogene 6 O - 20121209 -9606 379034 FLJ10489 - - - 8 8q22.3 uncharacterized protein FLJ10489 unknown - - - - 20120511 -9606 386593 CHKB-CPT1B - CHKL-CPT1B HGNC:41998|Ensembl:ENSG00000254413|Vega:OTTHUMG00000166282 22 22q13.33 CHKB-CPT1B readthrough (non-protein coding) miscRNA CHKB-CPT1B CHKB-CPT1B readthrough (non-protein coding) O - 20121230 -9606 386597 RNF144A-AS1 - - HGNC:30963 2 2p25.2 RNF144A antisense RNA 1 miscRNA RNF144A-AS1 RNF144A antisense RNA 1 O - 20121230 -9606 386607 ZFP91-CNTF - - HGNC:33441|Ensembl:ENSG00000255073|Vega:OTTHUMG00000166280 11 11q12.2 ZFP91-CNTF readthrough (non-protein coding) miscRNA ZFP91-CNTF ZFP91-CNTF readthrough (non-protein coding) O - 20121230 -9606 386608 RNASEH2CP1 - AYP1p1 HGNC:24117 Y Yp11.31 ribonuclease H2, subunit C pseudogene 1 pseudo RNASEH2CP1 ribonuclease H2, subunit C pseudogene 1 O - 20121230 -9606 386610 LOC386610 - - - 22 22q11.21 E2F transcription factor 6 pseudogene pseudo - - - - 20121230 -9606 386616 SCKL3 - - HGNC:20806|MIM:608664 14 14q23 Seckel syndrome 3 unknown SCKL3 Seckel syndrome 3 O - 20120622 -9606 386617 KCTD8 - - HGNC:22394|Ensembl:ENSG00000183783|HPRD:13771|Vega:OTTHUMG00000099409 4 4p13 potassium channel tetramerisation domain containing 8 protein-coding KCTD8 potassium channel tetramerisation domain containing 8 O BTB/POZ domain-containing protein KCTD8 20121230 -9606 386618 KCTD4 - bA321C24.3 HGNC:23227|Ensembl:ENSG00000180332|HPRD:13767 13 13q14.12 potassium channel tetramerisation domain containing 4 protein-coding KCTD4 potassium channel tetramerisation domain containing 4 O BTB/POZ domain-containing protein KCTD4 20121230 -9606 386627 FLJ38109 - - - 5 5q33.2 uncharacterized LOC386627 miscRNA - - - - 20121230 -9606 386653 IL31 - IL-31 HGNC:19372|MIM:609509|Ensembl:ENSG00000204671|HPRD:11877|Vega:OTTHUMG00000168916 12 12q24.31 interleukin 31 protein-coding IL31 interleukin 31 O interleukin-31 20121230 -9606 386654 OSTF1P1 - OSTF1P HGNC:31439 12 12q24.1-q24.2 osteoclast stimulating factor 1 pseudogene 1 pseudo OSTF1P1 osteoclast stimulating factor 1 pseudogene 1 O - 20121230 -9606 386665 AURKAPS2 - STK6LP HGNC:18612 10 10q25.3 aurora kinase A pseudogene 2 pseudo AURKAPS2 aurora kinase A pseudogene 2 O - 20121230 -9606 386671 FLJ44715 - - - 10 10q22.3 uncharacterized LOC386671 unknown - - - - 20120710 -9606 386672 KRTAP10-4 - KAP10.4|KAP18-4|KRTAP10.4|KRTAP18-4|KRTAP18.4 HGNC:20521|Ensembl:ENSG00000215454|HPRD:11190|Vega:OTTHUMG00000057641 21 21q22.3 keratin associated protein 10-4 protein-coding KRTAP10-4 keratin associated protein 10-4 O high sulfur keratin-associated protein 10.4|keratin associated protein 18-4|keratin-associated protein 10-4|keratin-associated protein 10.4|keratin-associated protein 18-4|keratin-associated protein 18.4 20121230 -9606 386674 KRTAP10-6 - KAP10.6|KAP18.6|KRTAP18-6|KRTAP18.6 HGNC:20523|Ensembl:ENSG00000188155|HPRD:11192|Vega:OTTHUMG00000057634 21 21q22.3 keratin associated protein 10-6 protein-coding KRTAP10-6 keratin associated protein 10-6 O high sulfur keratin-associated protein 10.6|keratin associated protein 18-6|keratin-associated protein 10-6|keratin-associated protein 10.6|keratin-associated protein 18-6|keratin-associated protein 18.6 20121230 -9606 386675 KRTAP10-7 - KAP10.7|KAP18.7|KRTAP18-7 HGNC:22970|Ensembl:ENSG00000205441|HPRD:11193|Vega:OTTHUMG00000057635 21 21q22.3 keratin associated protein 10-7 protein-coding KRTAP10-7 keratin associated protein 10-7 O high sulfur keratin-associated protein 10.7|keratin associated protein 18-7|keratin-associated protein 10-7|keratin-associated protein 18.7 20121230 -9606 386676 KRTAP10-9 - KAP10.9|KAP18.9|KRTAP18-9 HGNC:22971|Ensembl:ENSG00000221837|HPRD:11195|Vega:OTTHUMG00000057637 21 21q22.3 keratin associated protein 10-9 protein-coding KRTAP10-9 keratin associated protein 10-9 O high sulfur keratin-associated protein 10.9|keratin associated protein 18-9|keratin-associated protein 10-9|keratin-associated protein 10.9|keratin-associated protein 18-9|keratin-associated protein 18.9 20121230 -9606 386677 KRTAP10-1 - KAP10.1|KAP18-1|KAP18.1|KRTAP10.1|KRTAP18-1|KRTAP18.1 HGNC:22966|Ensembl:ENSG00000215455|HPRD:11184|Vega:OTTHUMG00000057627 21 21q22.3 keratin associated protein 10-1 protein-coding KRTAP10-1 keratin associated protein 10-1 O high sulfur keratin-associated protein 10.1|keratin-associated protein 10-1|keratin-associated protein 10.1|keratin-associated protein 18-1|keratin-associated protein 18.1 20121230 -9606 386678 KRTAP10-11 - KAP10.11|KAP18.11|KRTAP18-11|KRTAP18.11 HGNC:20528|Ensembl:ENSG00000243489|HPRD:11186|Vega:OTTHUMG00000057626 21 21q22.3 keratin associated protein 10-11 protein-coding KRTAP10-11 keratin associated protein 10-11 O high sulfur keratin-associated protein 10.11|keratin associated protein 18-11|keratin-associated protein 10-11|keratin-associated protein 10.11|keratin-associated protein 18-11|keratin-associated protein 18.11 20121230 -9606 386679 KRTAP10-2 - KAP10.2|KAP18-2|KAP18.2|KRTAP10.2|KRTAP18-2|KRTAP18.2 HGNC:22967|Ensembl:ENSG00000205445|HPRD:11188|Vega:OTTHUMG00000057625 21 21q22.3 keratin associated protein 10-2 protein-coding KRTAP10-2 keratin associated protein 10-2 O high sulfur keratin-associated protein 10.2|keratin-associated protein 10-2|keratin-associated protein 10.2|keratin-associated protein 18-2|keratin-associated protein 18.2 20121230 -9606 386680 KRTAP10-5 - KAP10.5|KAP18-5|KAP18.5|KRTAP10.5|KRTAP18-5|KRTAP18.1|KRTAP18.5 HGNC:22969|Ensembl:ENSG00000241123|HPRD:11191|Vega:OTTHUMG00000057638 21 21q22.3 keratin associated protein 10-5 protein-coding KRTAP10-5 keratin associated protein 10-5 O high sulfur keratin-associated protein 10.5|keratin-associated protein 10-5|keratin-associated protein 10.5|keratin-associated protein 18-5|keratin-associated protein 18.5 20121230 -9606 386681 KRTAP10-8 - KAP10.8|KRTAP18-8|KRTAP18.8 HGNC:20525|Ensembl:ENSG00000187766|HPRD:11194|Vega:OTTHUMG00000057632 21 21q22.3 keratin associated protein 10-8 protein-coding KRTAP10-8 keratin associated protein 10-8 O high sulfur keratin-associated protein 10.8|keratin associated protein 18-8|keratin-associated protein 10-8|keratin-associated protein 10.8|keratin-associated protein 18-8|keratin-associated protein 18.8 20121230 -9606 386682 KRTAP10-3 - KAP10.3|KAP18-3|KAP18.3|KRTAP10.3|KRTAP18-3|KRTAP18.3 HGNC:22968|Ensembl:ENSG00000212935|HPRD:11189|Vega:OTTHUMG00000057628 21 21q22.3 keratin associated protein 10-3 protein-coding KRTAP10-3 keratin associated protein 10-3 O high sulfur keratin-associated protein 10.3|keratin-associated protein 10-3|keratin-associated protein 10.3|keratin-associated protein 18-3|keratin-associated protein 18.3 20121230 -9606 386683 KRTAP12-3 - KRTAP12.3 HGNC:20531|Ensembl:ENSG00000205439|HPRD:11199|Vega:OTTHUMG00000057630 21 21q22.3 keratin associated protein 12-3 protein-coding KRTAP12-3 keratin associated protein 12-3 O high sulfur keratin-associated protein 12.3|keratin-associated protein 12-3|keratin-associated protein 12.3 20121230 -9606 386684 KRTAP12-4 - KRTAP12.4 HGNC:20532|Ensembl:ENSG00000212933|HPRD:11200|Vega:OTTHUMG00000057633 21 21q22.3 keratin associated protein 12-4 protein-coding KRTAP12-4 keratin associated protein 12-4 O high sulfur keratin-associated protein 12.4|keratin-associated protein 12-4|keratin-associated protein 12.4 20121230 -9606 386685 KRTAP10-12 - KAP10.12|KRTAP18-12|KRTAP18.12 HGNC:20533|Ensembl:ENSG00000189169|HPRD:11187|Vega:OTTHUMG00000057629 21 21q22.3 keratin associated protein 10-12 protein-coding KRTAP10-12 keratin associated protein 10-12 O high sulfur keratin-associated protein 10.12|keratin associated protein 18-12|keratin-associated protein 10-12|keratin-associated protein 10.12|keratin-associated protein 18-12|keratin-associated protein 18.12 20121230 -9606 386687 OFD1P3Y - OFD1P19|OFD1P19Y|OFD1P3|OFD1PY19|OFD1PY3|OFDYP3 HGNC:23875 Y Yp11.2 OFD1 pseudogene 3, Y-linked pseudo OFD1P3Y OFD1 pseudogene 3, Y-linked O - 20121230 -9606 386688 OFD1P4Y - OFD1P4|OFD1PY4|OFDYP4 HGNC:23876 Y Yq11.221 OFD1 pseudogene 4, Y-linked pseudo OFD1P4Y OFD1 pseudogene 4, Y-linked O - 20121209 -9606 386689 OFD1P5Y - OFD1P5|OFD1PY5|OFDYP5 HGNC:23877 Y Yq11.221 OFD1 pseudogene 5, Y-linked pseudo OFD1P5Y OFD1 pseudogene 5, Y-linked O - 20121209 -9606 386690 OFD1P6Y - OFD1P2|OFD1P6|OFD1PY6|OFDYP6 HGNC:13657 Y Yq11.22 OFD1 pseudogene 6, Y-linked pseudo OFD1P6Y OFD1 pseudogene 6, Y-linked O - 20121209 -9606 386691 OFD1P7Y - OFD1P7|OFD1PY7|OFDYP7 HGNC:23879 Y Yq11.222 OFD1 pseudogene 7, Y-linked pseudo OFD1P7Y OFD1 pseudogene 7, Y-linked O - 20121209 -9606 386692 OFD1P8Y - OFD1P8|OFD1PY8|OFDYP8 HGNC:23880 Y Yq11.223 OFD1 pseudogene 8, Y-linked pseudo OFD1P8Y OFD1 pseudogene 8, Y-linked O - 20121209 -9606 386693 OFD1P9Y - OFD1P9|OFD1PY9|OFDYP9 HGNC:23881 Y Yq11.223 OFD1 pseudogene 9, Y-linked pseudo OFD1P9Y OFD1 pseudogene 9, Y-linked O - 20121209 -9606 386694 OFD1P10Y - OFD1P10|OFD1PY10|OFDYP10 HGNC:23882 Y Yq11.223 OFD1 pseudogene 10, Y-linked pseudo OFD1P10Y OFD1 pseudogene 10, Y-linked O - 20121209 -9606 386695 OFD1P11Y - OFD1P11|OFD1PY11|OFDYP11 HGNC:23883 Y Yq11.223 OFD1 pseudogene 11, Y-linked pseudo OFD1P11Y OFD1 pseudogene 11, Y-linked O - 20121209 -9606 386696 OFD1P12Y - OFD1P12|OFD1PY12|OFDYP12 HGNC:23884 Y Yq11.223 OFD1 pseudogene 12, Y-linked pseudo OFD1P12Y OFD1 pseudogene 12, Y-linked O - 20121209 -9606 386697 OFD1P13Y - OFD1P13|OFD1PY13|OFDYP13 HGNC:23885 Y Yq11.223 OFD1 pseudogene 13, Y-linked pseudo OFD1P13Y OFD1 pseudogene 13, Y-linked O - 20121209 -9606 386698 OFD1P14Y - OFD1P14|OFD1PY14|OFDYP14 HGNC:23886 Y Yq11.23 OFD1 pseudogene 14, Y-linked pseudo OFD1P14Y OFD1 pseudogene 14, Y-linked O - 20121209 -9606 386699 OFD1P15Y - OFD1P15|OFD1PY15|OFDYP15 HGNC:23887 Y Yq11.23 OFD1 pseudogene 15, Y-linked pseudo OFD1P15Y OFD1 pseudogene 15, Y-linked O - 20121209 -9606 386724 AMIGO3 UNQ6084/PRO20089 AMIGO-3 HGNC:24075|Ensembl:ENSG00000176020|HPRD:16484|Vega:OTTHUMG00000158152 3 3p21 adhesion molecule with Ig-like domain 3 protein-coding AMIGO3 adhesion molecule with Ig-like domain 3 O alivin-3|amphoterin-induced gene and ORF 3|amphoterin-induced protein 3 20121230 -9606 386725 FAM8A7P - - HGNC:23868 Y Yp11.2 family with sequence similarity 8, member A1 pseudogene pseudo FAM8A7P family with sequence similarity 8, member A7 pseudogene O - 20121230 -9606 386726 FAM8A4P - FAM8A8P HGNC:16375 Y Yq11.21 family with sequence similarity 8, member A1 pseudogene pseudo FAM8A4P family with sequence similarity 8, member A4 pseudogene O - 20121230 -9606 386727 FAM8A9P - - HGNC:23870 Y Yq11.222 family with sequence similarity 8, member A1 pseudogene pseudo FAM8A9P family with sequence similarity 8, member A9 pseudogene O - 20121230 -9606 386728 FAM8A10P - - HGNC:23871 Y Yq11.223 family with sequence similarity 8, member A1 pseudogene pseudo FAM8A10P family with sequence similarity 8, member A10 pseudogene O - 20121209 -9606 386729 CDY4P - - HGNC:23872 Y Yq11.2 chromodomain protein, Y-linked 4 pseudogene pseudo CDY4P chromodomain protein, Y-linked 4 pseudogene O - 20121230 -9606 386730 CDY6P - - HGNC:23853 Y Yq11.221 chromodomain protein, Y-linked 6 pseudogene pseudo CDY6P chromodomain protein, Y-linked 6 pseudogene O - 20121209 -9606 386731 CDY7P - - HGNC:23854 Y Yq11.221 chromodomain protein, Y-linked 7 pseudogene pseudo CDY7P chromodomain protein, Y-linked 7 pseudogene O - 20121209 -9606 386732 CDY8P - - HGNC:23855 Y Yq11.221 chromodomain protein, Y-linked 8 pseudogene pseudo CDY8P chromodomain protein, Y-linked 8 pseudogene O - 20121207 -9606 386734 CDY12P - - HGNC:23856 Y Yq11.223 chromodomain protein, Y-linked 12 pseudogene pseudo CDY12P chromodomain protein, Y-linked 12 pseudogene O - 20121209 -9606 386735 CDY13P - - HGNC:23857 Y Yq11.223 chromodomain protein, Y-linked 13 pseudogene pseudo CDY13P chromodomain protein, Y-linked 13 pseudogene O - 20121209 -9606 386736 CDY14P - - HGNC:23858 Y Yq11.223 chromodomain protein, Y-linked 14 pseudogene pseudo CDY14P chromodomain protein, Y-linked 14 pseudogene O - 20121209 -9606 386737 CDY15P - - HGNC:23859 Y Yq11.223 chromodomain protein, Y-linked 15 pseudogene pseudo CDY15P chromodomain protein, Y-linked 15 pseudogene O - 20121209 -9606 386738 CDY16P - - HGNC:23860 Y Yq11.223 chromodomain protein, Y-linked 16 pseudogene pseudo CDY16P chromodomain protein, Y-linked 16 pseudogene O - 20121209 -9606 386739 CDY17P - - HGNC:23861 Y Yq11.223 chromodomain protein, Y-linked 17 pseudogene pseudo CDY17P chromodomain protein, Y-linked 17 pseudogene O - 20121230 -9606 386740 CDY18P - - HGNC:23862 Y Yq11.223 chromodomain protein, Y-linked 18 pseudogene pseudo CDY18P chromodomain protein, Y-linked 18 pseudogene O - 20121209 -9606 386741 CDY19P - - HGNC:23863 Y Yq11.223 chromodomain protein, Y-linked 19 pseudogene pseudo CDY19P chromodomain protein, Y-linked 19 pseudogene O - 20121209 -9606 386742 CDY20P - - HGNC:23864 Y Yq11.223 chromodomain protein, Y-linked 20 pseudogene pseudo CDY20P chromodomain protein, Y-linked 20 pseudogene O - 20121209 -9606 386743 CDY21P - - HGNC:23865 Y Yq11.223 chromodomain protein, Y-linked 21 pseudogene pseudo CDY21P chromodomain protein, Y-linked 21 pseudogene O - 20121209 -9606 386744 CDY22P - - HGNC:23866 Y Yq11.223 chromodomain protein, Y-linked 22 pseudogene pseudo CDY22P chromodomain protein, Y-linked 22 pseudogene O - 20121209 -9606 386745 CDY23P - - HGNC:23867 Y Yq11.23 chromodomain protein, Y-linked 23 pseudogene pseudo CDY23P chromodomain protein, Y-linked 23 pseudogene O - 20121209 -9606 386746 MRGPRG - GPR169|MRGG HGNC:24829|MIM:607234|Ensembl:ENSG00000182170|Vega:OTTHUMG00000011709 11 11p15.4 MAS-related GPR, member G protein-coding MRGPRG MAS-related GPR, member G O G protein-coupled receptor 169|G protein-coupled receptor MRGG|mas-related G-protein coupled receptor member G 20121230 -9606 386757 SLC6A10P - CT-2|CT2|SLC6A10|SLC6A10pB HGNC:11043|HPRD:13479 16 16p11.2 solute carrier family 6 (neurotransmitter transporter, creatine), member 10, pseudogene pseudo SLC6A10P solute carrier family 6 (neurotransmitter transporter, creatine), member 10, pseudogene O similar to sodium- and chloride-dependent creatine transporter 20121230 -9606 386758 ZNF582-AS1 - - HGNC:25213 19 19q13.43 ZNF582 antisense RNA 1 (head to head) miscRNA ZNF582-AS1 ZNF582 antisense RNA 1 (head to head) O - 20121230 -9606 387032 ZKSCAN4 - P1P373C6|ZNF307|ZNF427|p373c6.1 HGNC:13854|MIM:611643|Ensembl:ENSG00000187626|HPRD:15768|Vega:OTTHUMG00000014511 6 6p21 zinc finger with KRAB and SCAN domains 4 protein-coding ZKSCAN4 zinc finger with KRAB and SCAN domains 4 O p373c6.1 (novel C2H2 type zinc finger protein)|zinc finger protein 307|zinc finger protein 427|zinc finger protein with KRAB and SCAN domains 4 20121230 -9606 387036 GUSBP2 - GUSBL1|GUSBP4|SMA3-L|SMAC3L|SMAC3L2|b55C20.1|bA239L20.1|bA239L20.5|bGLU-Lp HGNC:18792 6 6p21 glucuronidase, beta pseudogene 2 pseudo GUSBP2 glucuronidase, beta pseudogene 2 O - 20121230 -9606 387039 HTATSF1P1 - HTATSF1P|TAT-SF1-L|dJ1033B10.6 HGNC:13959 6 6p21 HIV-1 Tat specific factor 1 pseudogene 1 pseudo HTATSF1P1 HIV-1 Tat specific factor 1 pseudogene 1 O - 20100622 -9606 387043 RPL13AP - RPL13A_5_675|dJ271M21.3 HGNC:13977 6 6p21.3 ribosomal protein L13a pseudogene pseudo RPL13AP ribosomal protein L13a pseudogene O - 20121230 -9606 387044 RPL13P - BBC1p|RPL13_3_673|dJ111M5.1 HGNC:13978 6 6p21 ribosomal protein L13 pseudogene pseudo RPL13P ribosomal protein L13 pseudogene O - 20121230 -9606 387046 RPL8P1 - RPL2p|RPL8P|dJ15D7.1 HGNC:13980 6 6p21 ribosomal protein L8 pseudogene 1 pseudo RPL8P1 ribosomal protein L8 pseudogene 1 O - 20121230 -9606 387055 LINC00533 - C6orf38|C6orf39|bA373N24.1 HGNC:18690 6 6p21 long intergenic non-protein coding RNA 533 unknown LINC00533 long intergenic non-protein coding RNA 533 O - 20120508 -9606 387063 HMGA1P5 - HMGA1L5 HGNC:19120 10 10q22.2 high mobility group AT-hook 1 pseudogene 5 pseudo HMGA1P5 high mobility group AT-hook 1 pseudogene 5 O - 20121230 -9606 387065 HMGA1P7 - HMGA1L7 HGNC:19122 6 6q23.2 high mobility group AT-hook 1 pseudogene 7 pseudo HMGA1P7 high mobility group AT-hook 1 pseudogene 7 O - 20121230 -9606 387066 SNHG5 - C6orf160|LINC00044|NCRNA00044|U50HG|bA33E24.2 HGNC:21026|MIM:613263 6 6q14.3 small nucleolar RNA host gene 5 (non-protein coding) miscRNA SNHG5 small nucleolar RNA host gene 5 (non-protein coding) O - 20121230 -9606 387071 FAM136BP RP1-40E16.9 C6orf87|FAM136B|dJ40E16.3 HGNC:21110 6 6p25.2 family with sequence similarity 136, member B, pseudogene pseudo FAM136BP family with sequence similarity 136, member B, pseudogene O - 20121230 -9606 387074 RPL35AP3 RP11-55K22.3 RPL35A_7_760|bA55K22.4 HGNC:21117 6 6q23.3 ribosomal protein L35a pseudogene 3 pseudo RPL35AP3 ribosomal protein L35a pseudogene 3 O - 20121230 -9606 387082 SUMO4 - IDDM5|SMT3H4|SUMO-4|dJ281H8.4 HGNC:21181|MIM:608829|Ensembl:ENSG00000177688|HPRD:10584|Vega:OTTHUMG00000015785 6 6q25 SMT3 suppressor of mif two 3 homolog 4 (S. cerevisiae) protein-coding SUMO4 SMT3 suppressor of mif two 3 homolog 4 (S. cerevisiae) O SMT3 suppressor of mif two 3 homolog 2|small ubiquitin-like modifier 4 protein|small ubiquitin-related modifier 4 20121230 -9606 387090 RPL36AP5 RP11-256G5.1 RPL36A_9_691|bA256G5.1 HGNC:21258 6 6p21.1 ribosomal protein L36a pseudogene 5 pseudo RPL36AP5 ribosomal protein L36a pseudogene 5 O - 20121230 -9606 387097 C6orf147 - - HGNC:21363 6 6q13 chromosome 6 open reading frame 147 miscRNA C6orf147 chromosome 6 open reading frame 147 O - 20121230 -9606 387101 RPL29P4 RP11-632C17__A.1 RPL29P3|RPL29_6_745|bA632C17A.1 HGNC:21482 6 6q22.2 ribosomal protein L29 pseudogene 4 pseudo RPL29P4 ribosomal protein L29 pseudogene 4 O - 20121230 -9606 387103 CENPW - C6orf173|CUG2 HGNC:21488|MIM:611264|Ensembl:ENSG00000203760|HPRD:16660|Vega:OTTHUMG00000015518 6 6q22.32 centromere protein W protein-coding CENPW centromere protein W O CENP-W|cancer-up-regulated gene 2 protein|cancer-upregulated gene 2 20121230 -9606 387104 SOGA3 - C6orf174|dJ403A15.3 HGNC:21494|Ensembl:ENSG00000214338|Ensembl:ENSG00000255330|HPRD:16661|Vega:OTTHUMG00000015528 6 6q22.33 SOGA family member 3 protein-coding SOGA3 SOGA family member 3 O protein SOGA3 20121230 -9606 387107 ATP5J2P2 - bA249L21.4 HGNC:21540 6 6q21 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene 2 pseudo ATP5J2P2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene 2 O - 20121230 -9606 387111 LINC00222 RP3-354J5.2 C6orf181|NCRNA00222|dJ354J5.2 HGNC:21560 6 - long intergenic non-protein coding RNA 222 miscRNA LINC00222 long intergenic non-protein coding RNA 222 O - 20121230 -9606 387117 UBQLN1P1 - UBQLN1P HGNC:21633 6 6p22.1 ubiquilin 1 pseudogene 1 pseudo UBQLN1P1 ubiquilin 1 pseudogene 1 O - 20121230 -9606 387119 CEP85L RP11-57K17.2 C6orf204|NY-BR-15|bA57K17.2 HGNC:21638|Ensembl:ENSG00000111860|HPRD:12874|Vega:OTTHUMG00000015465 6 6q22 centrosomal protein 85kDa-like protein-coding CEP85L centrosomal protein 85kDa-like O centrosomal protein of 85 kDa-like|serologically defined breast cancer antigen NY-BR-15 20121230 -9606 387122 WASF5P XXbac-BPG248L24.7 - HGNC:21665 6 6p21.33 WAS protein family, member 5, pseudogene pseudo WASF5P WAS protein family, member 5, pseudogene O - 20121230 -9606 387129 NPSR1 - ASRT2|GPR154|GPRA|NPSR|PGR14|VRR1 HGNC:23631|MIM:608595|Ensembl:ENSG00000187258|HPRD:10547|Vega:OTTHUMG00000099383 7 7p14.3 neuropeptide S receptor 1 protein-coding NPSR1 neuropeptide S receptor 1 O G protein-coupled receptor 154|G protein-coupled receptor for asthma susceptibility|G-protein coupled receptor 154|G-protein coupled receptor PGR14|G-protein coupled receptor for asthma susceptibility|neuropeptide S receptor|vasopressin receptor-related receptor 1 20121230 -9606 387254 SLC7A5P2 - IMAA|MMAA HGNC:24951|HPRD:13738 16 16p12.2 solute carrier family 7 (amino acid transporter light chain, L system), member 5 pseudogene 2 pseudo SLC7A5P2 solute carrier family 7 (amino acid transporter light chain, L system), member 5 pseudogene 2 O - 20121230 -9606 387263 C6orf120 - bA160E12.4 HGNC:21247|Ensembl:ENSG00000185127|Vega:OTTHUMG00000016057 6 6q27 chromosome 6 open reading frame 120 protein-coding C6orf120 chromosome 6 open reading frame 120 O UPF0669 protein C6orf120 20121230 -9606 387264 KRTAP5-1 - KRN1L|KRTAP5.1 HGNC:23596|MIM:148022|Ensembl:ENSG00000205869|HPRD:13948|Vega:OTTHUMG00000057557 11 11p15.5 keratin associated protein 5-1 protein-coding KRTAP5-1 keratin associated protein 5-1 O keratin-associated protein 5-1|keratin-associated protein 5.1|ultrahigh sulfur keratin-associated protein 5.1 20121230 -9606 387266 KRTAP5-3 - KRTAP5-9|KRTAP5.3 HGNC:23598|Ensembl:ENSG00000196224|HPRD:12395|Vega:OTTHUMG00000057559 11 11p15.5 keratin associated protein 5-3 protein-coding KRTAP5-3 keratin associated protein 5-3 O keratin-associated protein 5-3|keratin-associated protein 5-9|keratin-associated protein 5.3|keratin-associated protein 5.9|ultrahigh sulfur keratin-associated protein 5.3 20121230 -9606 387267 KRTAP5-4 - KRTAP5.4 HGNC:23599|Ensembl:ENSG00000241598|HPRD:12396|Vega:OTTHUMG00000057553 11 11p15.5 keratin associated protein 5-4 protein-coding KRTAP5-4 keratin associated protein 5-4 O keratin-associated protein 5-4|keratin-associated protein 5.4|ultrahigh sulfur keratin-associated protein 5.4 20121230 -9606 387273 KRTAP5-10 - KRTAP5.10 HGNC:23605|Ensembl:ENSG00000204572|HPRD:12394|Vega:OTTHUMG00000057585 11 11q13.4 keratin associated protein 5-10 protein-coding KRTAP5-10 keratin associated protein 5-10 O keratin-associated protein 5-10|keratin-associated protein 5.10|ultrahigh sulfur keratin-associated protein 5.10 20121230 -9606 387275 KRTAP5-13P - KRTAP5.P1|KRTAP5P1 HGNC:23607 11 11q13.4 keratin associated protein 5-13, pseudogene pseudo KRTAP5-13P keratin associated protein 5-13, pseudogene O - 20121230 -9606 387276 KRTAP5-14P - KRTAP5.P2|KRTAP5P2 HGNC:23608 11 11q13.4 keratin associated protein 5-14, pseudogene pseudo KRTAP5-14P keratin associated protein 5-14, pseudogene O - 20121230 -9606 387281 LCRB - - MIM:152424 11 11p15.5 locus control region, beta other - - - - 20121220 -9606 387315 MTND2P1 - - HGNC:7457 21 21q22.12 MT-ND2 pseudogene 1 pseudo MTND2P1 MT-ND2 pseudogene 1 O - 20121230 -9606 387316 VN1R10P hCG_1820928 FKSG83|VNR6I1P|b24o18.2|hs6V1-1p HGNC:13550 6 6p22.1 vomeronasal 1 receptor 10 pseudogene pseudo VN1R10P vomeronasal 1 receptor 10 pseudogene O - 20121230 -9606 387317 VN1R11P - VNR6I2P|dJ86C11.7|hs6V1-2p HGNC:13551 6 6p21 vomeronasal 1 receptor 11 pseudogene pseudo VN1R11P vomeronasal 1 receptor 11 pseudogene O - 20121230 -9606 387319 HIST1H2APS1 - H2AFSP|bA317E16.5 HGNC:18720 6 6p22.2 histone cluster 1, H2a, pseudogene 1 pseudo HIST1H2APS1 histone cluster 1, H2a, pseudogene 1 O - 20121230 -9606 387320 VN1R14P - VNR6I5P|bA457M11.4|hs6M1-5p HGNC:18721 6 6p22-p21 vomeronasal 1 receptor 14 pseudogene pseudo VN1R14P vomeronasal 1 receptor 14 pseudogene O - 20121230 -9606 387321 VN1R12P - VNR6I3P|bA373D17.2|hs6V1-3p HGNC:18722 6 6p21 vomeronasal 1 receptor 12 pseudogene pseudo VN1R12P vomeronasal 1 receptor 12 pseudogene O - 20121230 -9606 387322 VN1R13P - VNR6I4P|bA373D17.3|hs6V1-4p HGNC:18723 6 6p21 vomeronasal 1 receptor 13 pseudogene pseudo VN1R13P vomeronasal 1 receptor 13 pseudogene O - 20121230 -9606 387323 HIST1H2APS3 - H2AFUP|dJ34B20.8 HGNC:18805 6 6p22.1 histone cluster 1, H2a, pseudogene 3 pseudo HIST1H2APS3 histone cluster 1, H2a, pseudogene 3 O - 20121230 -9606 387325 HIST1H1PS1 - H1F6P|dJ34B20.16 HGNC:19163 6 6p22.1 histone cluster 1, H1, pseudogene 1 pseudo HIST1H1PS1 histone cluster 1, H1, pseudogene 1 O - 20121230 -9606 387328 ZNF322P1 - ZNF322|ZNF322B HGNC:14003|HPRD:15771 9 9q22.33 zinc finger protein 322 pseudogene 1 pseudo ZNF322P1 zinc finger protein 322 pseudogene 1 O - 20121230 -9606 387332 TBPL2 - TBP2|TRF3 HGNC:19841|MIM:608964|Ensembl:ENSG00000182521|HPRD:10607|Vega:OTTHUMG00000140313 14 14q22.3 TATA box binding protein like 2 protein-coding TBPL2 TATA box binding protein like 2 O TATA box-binding protein-like protein 2|TATA box-binding protein-related factor 3|TBP-like protein 2|TBP-related factor 3 20121230 -9606 387338 NSUN4 - RP4-603I14.2|SHTAP HGNC:31802|Ensembl:ENSG00000117481|HPRD:14842|Vega:OTTHUMG00000007808 1 1p34 NOP2/Sun domain family, member 4 protein-coding NSUN4 NOP2/Sun domain family, member 4 O NOL1/NOP2/Sun domain family member 4|putative methyltransferase NSUN4|sperm head and tail associated protein 20121230 -9606 387357 THEMIS - C6orf190|C6orf207|GASP|SPOT|TSEPA|bA325O24.3|bA325O24.4 HGNC:21569|MIM:613607|Ensembl:ENSG00000172673|HPRD:16662|Vega:OTTHUMG00000015534 6 6q22.33 thymocyte selection associated protein-coding THEMIS thymocyte selection associated O GRB2-associated protein|protein THEMIS|signaling phosphoprotein specific for T cells|thymocyte expressed molecule involved in selection|thymocyte selection pathway associated|thymocyte-expressed molecule involved in selection 20121230 -9606 387359 USP9YP4 - - HGNC:37740 Y Yp11.2 ubiquitin specific peptidase 9, Y-linked pseudogene 4 pseudo USP9YP4 ubiquitin specific peptidase 9, Y-linked pseudogene 4 O - 20121230 -9606 387361 USP9YP34 - - HGNC:38778 Y Yq11.221 ubiquitin specific peptidase 9, Y-linked pseudogene 34 pseudo USP9YP34 ubiquitin specific peptidase 9, Y-linked pseudogene 34 O - 20121209 -9606 387362 USP9YP1 - - HGNC:31741 Y Yq11.221 ubiquitin specific peptidase 9, Y-linked pseudogene 1 pseudo USP9YP1 ubiquitin specific peptidase 9, Y-linked pseudogene 1 O - 20121209 -9606 387363 USP9YP2 - - HGNC:31742 Y Yq11.221-q11.222 ubiquitin specific peptidase 9, Y-linked pseudogene 2 pseudo USP9YP2 ubiquitin specific peptidase 9, Y-linked pseudogene 2 O - 20121209 -9606 387364 USP9YP3 - - HGNC:37739 Y Yq11.223 ubiquitin specific peptidase 9, Y-linked pseudogene 3 pseudo USP9YP3 ubiquitin specific peptidase 9, Y-linked pseudogene 3 O - 20121209 -9606 387486 LINC00320 - C21orf131|NCRNA00320|PRED14 HGNC:19690 21 21q21.1 long intergenic non-protein coding RNA 320 miscRNA LINC00320 long intergenic non-protein coding RNA 320 O - 20121230 -9606 387491 GAPDHP16 - GAPDP16 HGNC:23768 21 21q11.2 glyceraldehyde-3-phosphate dehydrogenase pseudogene 16 pseudo GAPDHP16 glyceraldehyde-3-phosphate dehydrogenase pseudogene 16 O - 20121230 -9606 387492 DSTNP1 - - HGNC:23769 21 21q22.3 destrin (actin depolymerizing factor) pseudogene 1 pseudo DSTNP1 destrin (actin depolymerizing factor) pseudogene 1 O - 20121230 -9606 387494 RPL18AP2 - - HGNC:23774 21 21q22.3 ribosomal protein L18a pseudogene 2 pseudo RPL18AP2 ribosomal protein L18a pseudogene 2 O - 20121230 -9606 387495 RPS26P5 - RPS26_31_1718 HGNC:23776 21 21q21.1 ribosomal protein S26 pseudogene 5 pseudo RPS26P5 ribosomal protein S26 pseudogene 5 O - 20121230 -9606 387496 RASL11A - - HGNC:23802|MIM:612403|Ensembl:ENSG00000122035|HPRD:17956|Vega:OTTHUMG00000016627 13 13q12.2 RAS-like, family 11, member A protein-coding RASL11A RAS-like, family 11, member A O ras-like protein family member 11A 20121230 -9606 387503 HCG4P1 - HCGIV-01 HGNC:30978 6 6p21.3 HLA complex group 4 pseudogene 1 pseudo HCG4P1 HLA complex group 4 pseudogene 1 O - 20070912 -9606 387504 HCG4P2 - HCGIV-02 HGNC:30979 6 6p21.3 HLA complex group 4 pseudogene 2 pseudo HCG4P2 HLA complex group 4 pseudogene 2 O - 20070912 -9606 387505 HCG9P1 - HCGIX-1 HGNC:30980 6 6p21.3 HLA complex group 9 pseudogene 1 pseudo HCG9P1 HLA complex group 9 pseudogene 1 O - 20090331 -9606 387506 HCG9P2 - HCGIX-2 HGNC:30981 6 6p21.3 HLA complex group 9 pseudogene 2 pseudo HCG9P2 HLA complex group 9 pseudogene 2 O - 20090331 -9606 387507 HCG9P3 - HCGIX-3.2 HGNC:30982 6 6p21.3 HLA complex group 9 pseudogene 3 pseudo HCG9P3 HLA complex group 9 pseudogene 3 O - 20090331 -9606 387509 GPR153 - PGR1 HGNC:23618|MIM:614269|Ensembl:ENSG00000158292|HPRD:13600|Vega:OTTHUMG00000001272 1 1p36.31 G protein-coupled receptor 153 protein-coding GPR153 G protein-coupled receptor 153 O G-protein coupled receptor PGR1|probable G-protein coupled receptor 153 20121230 -9606 387521 TMEM189 RP5-1185N5.1 KUA HGNC:16735|MIM:610994|Ensembl:ENSG00000240849|HPRD:17257|Vega:OTTHUMG00000152625 20 20q13.2 transmembrane protein 189 protein-coding TMEM189 transmembrane protein 189 O - 20121230 -9606 387522 TMEM189-UBE2V1 - CROC-1B|CROC1B|KUA-UEV HGNC:33521|Ensembl:ENSG00000124208|Ensembl:ENSG00000240849|HPRD:04294|HPRD:11926|Vega:OTTHUMG00000033085 20 20q13.2 TMEM189-UBE2V1 readthrough protein-coding TMEM189-UBE2V1 TMEM189-UBE2V1 readthrough O TMEM189-UBE2V1 fusion protein|TMEM189-UBE2V1 readthrough transcript|transmembrane protein 189-ubiquitin-conjugating enzyme E2 variant 1 read-through 20121230 -9606 387535 HCRP1 - - - 6 6p21.1 hepatocellular carcinoma-related HCRP1 unknown - - - - 20121209 -9606 387553 DNM1P18 - DNM1DN18 HGNC:21135 22 22q13.2 DNM1 pseudogene 18 pseudo DNM1P18 DNM1 pseudogene 18 O - 20121230 -9606 387554 DNM1P19 - DNM1DN19 HGNC:21136 12 12q23.1 DNM1 pseudogene 19 pseudo DNM1P19 DNM1 pseudogene 19 O - 20121230 -9606 387559 FGF7P1 - HsT283 HGNC:21455 18 18p11.21 fibroblast growth factor 7 pseudogene 1 pseudo FGF7P1 fibroblast growth factor 7 pseudogene 1 O - 20121230 -9606 387569 ACF - - MIM:125520 22 22q11 Asymmetric crying facies (Cayler cardiofacial syndrome) unknown - - - - 20120622 -9606 387570 DUH - - MIM:127500 6 6q24.2-q25.2 Dyschromatosis universalis hereditaria unknown - - - - 20120622 -9606 387572 PAND1 - PAND MIM:167870 13 13q22-q32 Panic disorder 1 unknown - - - - 20120622 -9606 387573 CHDS3 - - MIM:300464 X Xq23-q26 Coronary heart disease, susceptibility to, 3 unknown - - - - 20120622 -9606 387574 CMTDI2 - - MIM:606483 10 10q24.1-q25.1 Charcot-Marie-Tooth disease, dominant intermediate 2 unknown - - - - 20120622 -9606 387575 HYT3 - - MIM:607329 2 2p25-p24 Hypertension, essential, susceptibility to, 3 unknown - - - - 20120622 -9606 387576 MGR5 - - MIM:607508 19 19p13 Migraine with or without aura, susceptibility to, 5 unknown - - - - 20120622 -9606 387577 AUTS3 - - MIM:608049 13 13q14.2-q14.1 Autism, susceptibility to, 3 unknown - - - - 20120622 -9606 387578 AITD1 - - MIM:608173 6 6p11 Autoimmune thyroid disease, susceptibility to, 1 unknown - - - - 20120622 -9606 387579 AITD2 - - MIM:608174 5 5q31-q33 Autoimmune thyroid disease, susceptibility to, 2 unknown - - - - 20120622 -9606 387581 AITD4 - - MIM:608176 10 10q Autoimmune thyroid disease, susceptibility to, 4 unknown - - - - 20120622 -9606 387582 KAZA - - MIM:608207 22 22q12 Kala-azar (visceral leishmaniasis), susceptibility to unknown - - - - 20120622 -9606 387583 SPG25 - - HGNC:25855|MIM:608220 6 6q23-q24.1 spastic paraplegia 25 (autosomal recessive, with disc herniation) unknown SPG25 spastic paraplegia 25 (autosomal recessive, with disc herniation) O - 20120622 -9606 387584 CHDS2 - - MIM:608316 2 2q21.1-q22 Coronary heart disease, susceptibility to, 2 unknown - - - - 20120622 -9606 387585 CHDS4 - - MIM:608318 14 14q32 Coronary heart disease, susceptibility to, 4 unknown - - - - 20120622 -9606 387590 TPTEP1 - psiTPTE22 HGNC:43648 22 22q11.1 transmembrane phosphatase with tensin homology pseudogene 1 pseudo TPTEP1 transmembrane phosphatase with tensin homology pseudogene 1 O - 20121230 -9606 387597 ILDR2 - C1orf32|RP4-782G3.2|dJ782G3.1 HGNC:18131|Ensembl:ENSG00000143195|HPRD:12724|Vega:OTTHUMG00000034320 1 1q24.1 immunoglobulin-like domain containing receptor 2 protein-coding ILDR2 immunoglobulin-like domain containing receptor 2 O immunoglobulin-like domain-containing receptor 2 20121230 -9606 387601 SLC22A25 - HIMTP|UST6 HGNC:32935|MIM:610792|Ensembl:ENSG00000196600|HPRD:14198|Vega:OTTHUMG00000165340 11 11q12.3 solute carrier family 22, member 25 protein-coding SLC22A25 solute carrier family 22, member 25 O organic anion transporter UST6|putative UST1-like organic anion transporter|solute carrier family 22 member 25 20121230 -9606 387612 RAC1P1 - HsT2789 HGNC:31001 18 18q11.2 ras-related C3 botulinum toxin substrate 1 pseudogene 1 pseudo RAC1P1 ras-related C3 botulinum toxin substrate 1 pseudogene 1 O - 20121230 -9606 387615 MAP1LC3P - HsT312 HGNC:31004 18 18q21.2 microtubule-associated protein 1 light chain 3 pseudogene pseudo MAP1LC3P microtubule-associated protein 1 light chain 3 pseudogene O - 20121230 -9606 387628 KGFLP1 - - HPRD:13402 9 9p11.2 fibroblast growth factor 7 pseudogene pseudo - - - - 20121230 -9606 387638 C10orf113 - bA165O3.1 HGNC:31447|Ensembl:ENSG00000204683|HPRD:16573|Vega:OTTHUMG00000017786 10 10p12.31 chromosome 10 open reading frame 113 protein-coding C10orf113 chromosome 10 open reading frame 113 O putative uncharacterized protein C10orf113 20121230 -9606 387640 SKIDA1 - C10orf140|DLN-1 HGNC:32697|Ensembl:ENSG00000180592|HPRD:16981|Vega:OTTHUMG00000017797 10 10p12.31 SKI/DACH domain containing 1 protein-coding SKIDA1 SKI/DACH domain containing 1 O SKI/DACH domain-containing protein 1|protein DLN-1 20121230 -9606 387642 C10orf115 - bA215C7.4 HGNC:31449 10 10p12.2 chromosome 10 open reading frame 115 unknown C10orf115 chromosome 10 open reading frame 115 O - 20121216 -9606 387644 LINC00202-1 - C10orf51|LINC00202|NCRNA00202|bB27G4.1 HGNC:24672 10 10p12.1 long intergenic non-protein coding RNA 202-1 miscRNA LINC00202-1 long intergenic non-protein coding RNA 202-1 O - 20121230 -9606 387646 LRRC37A6P - - HGNC:33746|HPRD:17363 10 10p12.1 leucine rich repeat containing 37, member A6, pseudogene pseudo LRRC37A6P leucine rich repeat containing 37, member A6, pseudogene O - 20121230 -9606 387647 PTCHD3P1 - - HGNC:44945 10 10p11.23 patched domain containing 3 pseudogene 1 pseudo PTCHD3P1 patched domain containing 3 pseudogene 1 O - 20121230 -9606 387680 FAM21A RP11-56A21.1 bA56A21.1 HGNC:23416|Ensembl:ENSG00000099290|HPRD:17364|Vega:OTTHUMG00000018225 10 10q11.23 family with sequence similarity 21, member A protein-coding FAM21A family with sequence similarity 21, member A O WASH complex subunit FAM21A 20121230 -9606 387684 ARL4P - ARL4B HGNC:17741 10 10q21.2 ADP-ribosylation factor-like 4 pseudogene pseudo ARL4P ADP-ribosylation factor-like 4 pseudogene O - 20121230 -9606 387694 SH2D4B RP11-514F8.1 - HGNC:31440|Ensembl:ENSG00000178217|HPRD:18050|Vega:OTTHUMG00000018617 10 10q23.1 SH2 domain containing 4B protein-coding SH2D4B SH2 domain containing 4B O SH2 domain-containing protein 4B|novel SH2 domain-containing protein 20121230 -9606 387695 C10orf99 UNQ1833/PRO3446 UNQ1833 HGNC:31428|Ensembl:ENSG00000188373|HPRD:12599|Vega:OTTHUMG00000018635 10 10q23.1 chromosome 10 open reading frame 99 protein-coding C10orf99 chromosome 10 open reading frame 99 O RLLV1833|putative uncharacterized protein C10orf99 20121230 -9606 387700 SLC16A12 RP11-168O10.10-001 CJMG|MCT12 HGNC:23094|MIM:611910|Ensembl:ENSG00000152779|HPRD:17365|Vega:OTTHUMG00000018714 10 10q23.31 solute carrier family 16, member 12 (monocarboxylic acid transporter 12) protein-coding SLC16A12 solute carrier family 16, member 12 (monocarboxylic acid transporter 12) O monocarboxylate transporter 12 20121230 -9606 387703 LOC387703 - - - 10 10q23.33 x-ray repair cross-complementing protein 6-like pseudo - - - - 20121230 -9606 387707 CC2D2B RP11-248J23.4 C10orf130|bA248J23.4 HGNC:31666|Ensembl:ENSG00000188649|HPRD:16578|Vega:OTTHUMG00000018820 10 10q24.1 coiled-coil and C2 domain containing 2B protein-coding CC2D2B coiled-coil and C2 domain containing 2B O protein CC2D2B 20121230 -9606 387712 ENO4 - AC023283.3|C10orf134 HGNC:31670|Ensembl:ENSG00000188316|Vega:OTTHUMG00000019113 10 10q25.3 enolase family member 4 protein-coding ENO4 enolase family member 4 O enolase-like protein ENO4 20121230 -9606 387715 ARMS2 - ARMD8 HGNC:32685|MIM:611313|Ensembl:ENSG00000254636|Vega:OTTHUMG00000048232 10 10q26.13 age-related maculopathy susceptibility 2 protein-coding ARMS2 age-related maculopathy susceptibility 2 O age-related maculopathy susceptibility protein 2 20121230 -9606 387718 TEX36 - C10orf122|bA383C5.1 HGNC:31653|Ensembl:ENSG00000175018|Vega:OTTHUMG00000019229 10 10q26.13 testis expressed 36 protein-coding TEX36 testis expressed 36 O testis-expressed sequence 36 protein 20121230 -9606 387720 LOC387720 - - HPRD:18373 10 10q26.2 uncharacterized LOC387720 unknown - - - - 20121230 -9606 387723 LOC387723 - - - 10 10q26.3 uncharacterized LOC387723 miscRNA - - - - 20121230 -9606 387733 IFITM5 - BRIL|DSPA1|Hrmp1|OI5|fragilis4 HGNC:16644|MIM:614757|Ensembl:ENSG00000206013|Vega:OTTHUMG00000165355 11 11p15.5 interferon induced transmembrane protein 5 protein-coding IFITM5 interferon induced transmembrane protein 5 O bone-restricted ifitm-like protein|bone-restricted interferon-induced transmembrane protein-like protein|dispanin subfamily A member 1|interferon-induced transmembrane protein 5 20121230 -9606 387742 FAM99A - - HGNC:32368|HPRD:18440 11 11p15.5 family with sequence similarity 99, member A (non-protein coding) miscRNA FAM99A family with sequence similarity 99, member A (non-protein coding) O - 20121230 -9606 387745 FAM86GP - - HGNC:42358 11 11p15.4 family with sequence similarity 86, member A pseudogene pseudo FAM86GP family with sequence similarity 86, member G, pseudogene O - 20121230 -9606 387747 OR52B3P - - HGNC:15208 11 11p15.4 olfactory receptor, family 52, subfamily B, member 3 pseudogene pseudo OR52B3P olfactory receptor, family 52, subfamily B, member 3 pseudogene O - 20121230 -9606 387748 OR56B1 - OR11-65|OR56B1P HGNC:15245|Ensembl:ENSG00000181023|HPRD:17748|Vega:OTTHUMG00000066891 11 11p15.4 olfactory receptor, family 56, subfamily B, member 1 protein-coding OR56B1 olfactory receptor, family 56, subfamily B, member 1 O olfactory receptor 56B1|olfactory receptor OR11-65|olfactory receptor, family 56, subfamily B, member 1 pseudogene 20121230 -9606 387751 GVINP1 - GVIN1|GVIN1P|VLIG-1|VLIG1 HGNC:25813 11 11p15.4 GTPase, very large interferon inducible pseudogene 1 pseudo GVINP1 GTPase, very large interferon inducible pseudogene 1 O - 20121230 -9606 387753 RPL21P97 - RPL21_40_1120 HGNC:36223 11 11p15.4 ribosomal protein L21 pseudogene 97 pseudo RPL21P97 ribosomal protein L21 pseudogene 97 O - 20121230 -9606 387755 INSC - - HGNC:33116|MIM:610668|Ensembl:ENSG00000188487|Vega:OTTHUMG00000165838 11 11p15.2 inscuteable homolog (Drosophila) protein-coding INSC inscuteable homolog (Drosophila) O protein inscuteable homolog 20121230 -9606 387758 FIBIN PSEC0235 - HGNC:33747|Ensembl:ENSG00000176971|HPRD:17366|Vega:OTTHUMG00000166120 11 11p14.2 fin bud initiation factor homolog (zebrafish) protein-coding FIBIN fin bud initiation factor homolog (zebrafish) O fin bud initiation factor homolog 20121230 -9606 387763 C11orf96 - AG2 HGNC:38675|Ensembl:ENSG00000187479|Vega:OTTHUMG00000166555 11 11p11.2 chromosome 11 open reading frame 96 protein-coding C11orf96 chromosome 11 open reading frame 96 O protein Ag2 homolog|uncharacterized protein C11orf96 20121230 -9606 387770 LOC387770 - - - 11 11p11.12 ring finger protein 18-like pseudogene pseudo - - - - 20121230 -9606 387775 SLC22A10 - OAT5|hOAT5 HGNC:18057|MIM:607580|Ensembl:ENSG00000184999|Vega:OTTHUMG00000165197 11 11q12.3 solute carrier family 22, member 10 protein-coding SLC22A10 solute carrier family 22, member 10 O organic anion transporter 5|solute carrier family 22 (organic anion/cation transporter), member 10|solute carrier family 22 member 10 20121230 -9606 387778 SPDYC - RINGOC|Ringo2 HGNC:32681|MIM:614030|Ensembl:ENSG00000204710|HPRD:17367|Vega:OTTHUMG00000165611 11 11q13.1 speedy homolog C (Xenopus laevis) protein-coding SPDYC speedy homolog C (Xenopus laevis) O RINGO C|hSpy/Ringo C|rapid inducer of G2/M progression in oocytes C|speedy C|speedy protein C 20121230 -9606 387787 LIPT2 - - HGNC:37216|Ensembl:ENSG00000175536|Vega:OTTHUMG00000165646 11 11q13.4 lipoyl(octanoyl) transferase 2 (putative) protein-coding LIPT2 lipoyl(octanoyl) transferase 2 (putative) O lipoate-protein ligase B|lipoyl/octanoyl transferase|octanoyl-[acyl-carrier-protein]-protein N-octanoyltransferase|putative lipoyltransferase 2, mitochondrial|putative octanoyltransferase, mitochondrial 20121230 -9606 387791 LOC387791 - - - 11 11q13.5 mitochondrial import receptor subunit TOM20 homolog pseudo - - - - 20121209 -9606 387804 VSTM5 - C11orf90 HGNC:34443|Ensembl:ENSG00000214376|Vega:OTTHUMG00000154159 11 11q21 V-set and transmembrane domain containing 5 protein-coding VSTM5 V-set and transmembrane domain containing 5 O V-set and transmembrane domain-containing protein 5 20121230 -9606 387810 LOC387810 - - - 11 11q23.1 uncharacterized LOC387810 miscRNA - - - - 20120508 -9606 387815 OR8G3P - - HGNC:14698 11 11q24.2 olfactory receptor, family 8, subfamily G, member 3 pseudogene pseudo OR8G3P olfactory receptor, family 8, subfamily G, member 3 pseudogene O - 20121230 -9606 387820 LOC387820 - - - 11 11q24.3 DnaJ (Hsp40) homolog, subfamily B, member 7 pseudogene pseudo - - - - 20121230 -9606 387836 CLEC2A UNQ5792/PRO19597 KACL|PILAR|UNQ5792 HGNC:24191|MIM:612087|Ensembl:ENSG00000188393|HPRD:16720|Vega:OTTHUMG00000140393 12 12p13.31 C-type lectin domain family 2, member A protein-coding CLEC2A C-type lectin domain family 2, member A O C-type lectin domain family 2 member A|INPE5792|keratinocyte-associated C-type lectin|proliferation-induced lymphocyte-associated receptor 20121230 -9606 387837 CLEC12B UNQ5782/PRO16089 UNQ5782 HGNC:31966|Ensembl:ENSG00000256660|HPRD:18266|Vega:OTTHUMG00000168397 12 12p13.2 C-type lectin domain family 12, member B protein-coding CLEC12B C-type lectin domain family 12, member B O C-type lectin domain family 12 member B|macrophage antigen h 20121230 -9606 387841 RPL13AP20 hCG_27695 RPL13A_9_1211 HGNC:35709 12 12p13.1 ribosomal protein L13a pseudogene 20 pseudo RPL13AP20 ribosomal protein L13a pseudogene 20 O - 20121230 -9606 387845 EEF1A1P16 - - HGNC:37889 12 12p12.3 eukaryotic translation elongation factor 1 alpha 1 pseudogene 16 pseudo EEF1A1P16 eukaryotic translation elongation factor 1 alpha 1 pseudogene 16 O - 20121230 -9606 387849 REP15 - RAB15EP HGNC:33748|MIM:610848|Ensembl:ENSG00000174236|Vega:OTTHUMG00000169212 12 12p11.22 RAB15 effector protein protein-coding REP15 RAB15 effector protein O rab15 effector protein 20121230 -9606 387853 OR7A19P - - HGNC:15337 12 12q13.11 olfactory receptor, family 7, subfamily A, member 19 pseudogene pseudo OR7A19P olfactory receptor, family 7, subfamily A, member 19 pseudogene O - 20121230 -9606 387856 C12orf68 - - HGNC:33749|Ensembl:ENSG00000177875|HPRD:18375|Vega:OTTHUMG00000169902 12 12q13.11 chromosome 12 open reading frame 68 protein-coding C12orf68 chromosome 12 open reading frame 68 O uncharacterized protein C12orf68 20121230 -9606 387867 RPSAP12 - LAMR1P12|LAMRL2|LAMRP2|RPSA_18_1254 HGNC:6504 12 12q15 ribosomal protein SA pseudogene 12 pseudo RPSAP12 ribosomal protein SA pseudogene 12 O - 20121230 -9606 387869 LOC387869 - - - 12 12q21.1 microtubule-associated protein 1 light chain 3 beta pseudogene pseudo - - - - 20121230 -9606 387882 C12orf75 - AGD3|OCC-1|OCC1 HGNC:35164|Ensembl:ENSG00000235162|HPRD:17368|Vega:OTTHUMG00000150129 12 12q23.3 chromosome 12 open reading frame 75 protein-coding C12orf75 chromosome 12 open reading frame 75 O overexpressed in colon carcinoma 1 protein|overexpressed in colon carcinoma-1|putative overexpressed in colon carcinoma-1 protein variant C 20121230 -9606 387885 CCDC42B - - HGNC:37100|Ensembl:ENSG00000186710|Vega:OTTHUMG00000169655 12 12q24.13 coiled-coil domain containing 42B protein-coding CCDC42B coiled-coil domain containing 42B O coiled-coil domain-containing protein 42B 20121230 -9606 387890 TMEM233 - DSPB2|IFITMD2 HGNC:37219|Ensembl:ENSG00000224982|Vega:OTTHUMG00000168944 12 12q24.23 transmembrane protein 233 protein-coding TMEM233 transmembrane protein 233 O dispanin subfamily B member 2|interferon induced transmembrane protein domain containing 2|interferon-induced transmembrane domain-containing protein D2 20121230 -9606 387893 SETD8 - KMT5A|PR-Set7|SET07|SET8 HGNC:29489|MIM:607240|Ensembl:ENSG00000183955|HPRD:06254|Vega:OTTHUMG00000150477 12 12q24.31 SET domain containing (lysine methyltransferase) 8 protein-coding SETD8 SET domain containing (lysine methyltransferase) 8 O H4-K20-HMTase SETD8|H4-K20-specific histone methyltransferase|H4K20-specific histone methyltransferase splice variant Set8b|N-lysine methyltransferase SETD8|PR/SET domain containing protein 8|PR/SET domain-containing protein 07|PR/SET07|SET domain-containing protein 8|histone-lysine N-methyltransferase SETD8|lysine N-methyltransferase 5A 20121230 -9606 387895 LOC387895 - - - 12 12q24.32 uncharacterized LOC387895 miscRNA - - - - 20121230 -9606 387911 C1QTNF9B RP11-45B20.2 CTRP9B HGNC:34072|MIM:614148|Ensembl:ENSG00000205863|HPRD:17369 13 13q12.12 C1q and tumor necrosis factor related protein 9B protein-coding C1QTNF9B C1q and tumor necrosis factor related protein 9B O C1q/TNF-related protein 9B|collagen triple helix repeat-containing|complement C1q and tumor necrosis factor-related protein 9B|complement C1q tumor necrosis factor-related protein 9B 20121230 -9606 387914 SHISA2 UNQ9166/PRO28631 C13orf13|PRO28631|TMEM46|WGAR9166|bA398O19.2|hShisa HGNC:20366|Ensembl:ENSG00000180730|HPRD:16589|Vega:OTTHUMG00000016612 13 13q12.13 shisa homolog 2 (Xenopus laevis) protein-coding SHISA2 shisa homolog 2 (Xenopus laevis) O protein shisa-2 homolog|transmembrane protein 46 20121230 -9606 387921 NHLRC3 RP11-50D16.3 - HGNC:33751|Ensembl:ENSG00000188811|HPRD:18377|Vega:OTTHUMG00000016765 13 13q13.3 NHL repeat containing 3 protein-coding NHLRC3 NHL repeat containing 3 O NHL repeat-containing protein 3 20121230 -9606 387923 SERP2 - C13orf21|RP11-269C23.1|bA269C23.1 HGNC:20607|Ensembl:ENSG00000151778|HPRD:16590|Vega:OTTHUMG00000016833 13 13q14.11 stress-associated endoplasmic reticulum protein family member 2 protein-coding SERP2 stress-associated endoplasmic reticulum protein family member 2 O ribosome-associated membrane protein RAMP4-2|stress-associated endoplasmic reticulum protein 2 20121230 -9606 387924 OGFOD1P1 RP11-203I16.3 - HGNC:39202 13 13q14.2 2-oxoglutarate and iron-dependent oxygenase domain containing 1 pseudogene 1 pseudo OGFOD1P1 2-oxoglutarate and iron-dependent oxygenase domain containing 1 pseudogene 1 O - 20121230 -9606 387933 HNRNPA3P5 - - HGNC:39774 13 13q21.32 heterogeneous nuclear ribonucleoprotein A3 pseudogene 5 pseudo HNRNPA3P5 heterogeneous nuclear ribonucleoprotein A3 pseudogene 5 O - 20121230 -9606 387934 FABP5P1 RP11-505F3.4 FABP5|FABP5L1 HGNC:31059 13 13q22.1 fatty acid binding protein 5 pseudogene 1 pseudo FABP5P1 fatty acid binding protein 5 pseudogene 1 O - 20121230 -9606 387939 LOC387939 hCG_2045417 - - 13 13q31.1 hCG2045417 unknown - - - - 20120511 -9606 387977 NOVA1-AS1 - C14orf22 HGNC:19827 14 14q12 NOVA1 antisense RNA 1 (head to head) unknown NOVA1-AS1 NOVA1 antisense RNA 1 (head to head) O - 20121021 -9606 387978 C14orf23 - c14_5148 HGNC:19828 14 14q12 chromosome 14 open reading frame 23 miscRNA C14orf23 chromosome 14 open reading frame 23 O - 20121230 -9606 387990 TOMM20L UNQ9438/PRO34772 UNQ9438 HGNC:33752|Ensembl:ENSG00000196860|HPRD:18275|Vega:OTTHUMG00000140323 14 14q23.1 translocase of outer mitochondrial membrane 20 homolog (yeast)-like protein-coding TOMM20L translocase of outer mitochondrial membrane 20 homolog (yeast)-like O TOMM20-like protein 1|translocase of outer mitochondrial membrane 20 homolog type I 20121230 -9606 388007 SERPINA13P - SERPINA13|UNQ6121 HGNC:30909|HPRD:18039 14 14q32.13 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 13, pseudogene pseudo SERPINA13P serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 13, pseudogene O - 20121230 -9606 388011 C14orf64 - - HGNC:20111 14 14q32.2 chromosome 14 open reading frame 64 miscRNA C14orf64 chromosome 14 open reading frame 64 O - 20121230 -9606 388015 RTL1 - MART1|Mar1|PEG11 HGNC:14665|MIM:611896|Ensembl:ENSG00000254656|Vega:OTTHUMG00000167573 14 14q32.2 retrotransposon-like 1 protein-coding RTL1 retrotransposon-like 1 O mammalian retrotransposon derived protein 1|paternally expressed gene 11 protein|retrotransposon-derived protein PEG11|retrotransposon-like protein 1 20121230 -9606 388021 TMEM179 - C14orf90|TMEM179A HGNC:20137|Ensembl:ENSG00000189203|Ensembl:ENSG00000258986|HPRD:13464|Vega:OTTHUMG00000170827|Vega:OTTHUMG00000170829 14 14q32.33 transmembrane protein 179 protein-coding TMEM179 transmembrane protein 179 O transmembrane protein 179A 20121230 -9606 388022 LOC388022 - - HPRD:18378 14 14q32.33 uncharacterized LOC388022 unknown - - - - 20120710 -9606 388076 RPS8P10 - RPS8_6_1418 HGNC:35628 15 15q11.2 ribosomal protein S8 pseudogene 10 pseudo RPS8P10 ribosomal protein S8 pseudogene 10 O - 20121230 -9606 388077 IGHV1OR15-1 - IGHV1/OR15-1|IGHV1OR151 HGNC:5563|IMGT/GENE-DB:IGHV1/OR15-1 15 15q11.2 immunoglobulin heavy variable 1/OR15-1 (non-functional) pseudo IGHV1OR15-1 immunoglobulin heavy variable 1/OR15-1 (non-functional) O - 20121230 -9606 388104 LOC388104 - - - 15 15q13.2 transmembrane protein 183A pseudogene pseudo - - - - 20121230 -9606 388112 NANOGP8 - NANOG|NANOGP1|PN8 HGNC:23106 15 15q14 Nanog homeobox pseudogene 8 pseudo NANOGP8 Nanog homeobox pseudogene 8 O - 20121230 -9606 388115 C15orf52 - - HGNC:33488|Ensembl:ENSG00000188549|HPRD:16964|Vega:OTTHUMG00000129981 15 15q15.1 chromosome 15 open reading frame 52 protein-coding C15orf52 chromosome 15 open reading frame 52 O uncharacterized protein C15orf52 20121230 -9606 388121 TNFAIP8L3 - - HGNC:20620|Ensembl:ENSG00000183578|HPRD:13452|Vega:OTTHUMG00000172460 15 15q21.2 tumor necrosis factor, alpha-induced protein 8-like 3 protein-coding TNFAIP8L3 tumor necrosis factor, alpha-induced protein 8-like 3 O TNF alpha-induced protein 8-like protein 3|TNFAIP8-like protein 3|tumor necrosis factor alpha-induced protein 8-like protein 3|tumor necrosis factor, alpha-induced protein 8-like protein 3 20121230 -9606 388122 RPSAP55 - RPSA_28_1433 HGNC:36921 15 15q21.3 ribosomal protein SA pseudogene 55 pseudo RPSAP55 ribosomal protein SA pseudogene 55 O - 20121230 -9606 388125 C2CD4B - FAM148B|NLF2 HGNC:33628|MIM:610344|Ensembl:ENSG00000205502|HPRD:17636|Vega:OTTHUMG00000171959 15 15q22.2 C2 calcium-dependent domain containing 4B protein-coding C2CD4B C2 calcium-dependent domain containing 4B O C2 calcium-dependent domain-containing protein 4B|family with sequence similarity 148, member B|nuclear localized factor 2|nuclear-localized factor 2 20121230 -9606 388132 RPL17P5 - RPL17_2_69 HGNC:35491|HPRD:16806 1 1p22.3 ribosomal protein L17 pseudogene 5 pseudo RPL17P5 ribosomal protein L17 pseudogene 5 O - 20121230 -9606 388135 C15orf59 - - HGNC:33753|Ensembl:ENSG00000205363 15 15q24.1 chromosome 15 open reading frame 59 protein-coding C15orf59 chromosome 15 open reading frame 59 O UPF0583 protein C15orf59 20121230 -9606 388147 RPL9P9 - RPL9_14_1458 HGNC:17251 15 15q25.2 ribosomal protein L9 pseudogene 9 pseudo RPL9P9 ribosomal protein L9 pseudogene 9 O - 20121209 -9606 388152 LOC388152 - - HPRD:14199 15 15q25.2 uncharacterized LOC388152 pseudo - - - - 20121230 -9606 388165 UBE2Q2P1 - UBE2QP1 HGNC:37439|HPRD:13471 15 15q25.2 ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 1 pseudo UBE2Q2P1 ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 1 O - 20121230 -9606 388181 FAM149B1P1 - FAM149B2|KIAA0974P HGNC:31735 15 15q26.2 family with sequence similarity 149, member B2 pseudo FAM149B1P1 family with sequence similarity 149, member B1 pseudogene 1 O - 20121230 -9606 388182 FLJ42289 HSD47 - HPRD:16960 15 15q26.3 uncharacterized LOC388182 miscRNA - - - - 20121230 -9606 388199 PRR25 - gs64 HGNC:37230|Ensembl:ENSG00000167945|HPRD:18379|Vega:OTTHUMG00000178117 16 16p13.3 proline rich 25 protein-coding PRR25 proline rich 25 O proline-rich protein 25 20121230 -9606 388210 LOC388210 - - - 16 16p13.13 uncharacterized LOC388210 protein-coding - - - - 20121209 -9606 388221 LOC388221 - - - 16 16p11.2 NPIP-like locus unknown - - - - 20120508 -9606 388228 SBK1 - SBK HGNC:17699|Ensembl:ENSG00000188322|HPRD:18608|Vega:OTTHUMG00000166066 16 16p11.2 SH3-binding domain kinase 1 protein-coding SBK1 SH3-binding domain kinase 1 O serine/threonine-protein kinase SBK1 20121230 -9606 388242 LOC388242 - - - 16 16p11.2 coiled-coil domain containing 101 pseudogene pseudo - - - - 20121230 -9606 388248 LOC388248 - - - 16 16p11.2 Rho GTPase activating protein 23 pseudogene pseudo - - - - 20121230 -9606 388254 HERC2P5 - D16F37S6 HGNC:4873 16 16p11.2 hect domain and RLD 2 pseudogene 5 pseudo HERC2P5 hect domain and RLD 2 pseudogene 5 O - 20121209 -9606 388255 IGHV3OR16-8 - IGHV3/OR16-8|IGHV3OR168 HGNC:5643|IMGT/GENE-DB:IGHV3/OR16-8 16 16p11.2 immunoglobulin heavy variable 3/OR16-8 (non-functional) other IGHV3OR16-8 immunoglobulin heavy variable 3/OR16-8 (non-functional) O - 20121230 -9606 388272 C16orf87 - - HGNC:33754|Ensembl:ENSG00000155330|HPRD:17370|Vega:OTTHUMG00000132538 16 16q11.2 chromosome 16 open reading frame 87 protein-coding C16orf87 chromosome 16 open reading frame 87 O UPF0547 protein C16orf87 20121230 -9606 388275 HNRNPA1P7 - HNRPA1L3 HGNC:31015 18 18q12.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene 7 pseudo HNRNPA1P7 heterogeneous nuclear ribonucleoprotein A1 pseudogene 7 O - 20121230 -9606 388276 C16orf97 hCG_2045437 - HGNC:44658|Ensembl:ENSG00000261190|Vega:OTTHUMG00000173232 16 16q12.1 chromosome 16 open reading frame 97 protein-coding C16orf97 chromosome 16 open reading frame 97 O hCG2045437|uncharacterized protein LOC388276 20121230 -9606 388282 LOC388282 - - - 16 16q13 uncharacterized LOC388282 miscRNA - - - - 20121230 -9606 388284 C16orf86 - - HGNC:33755|Ensembl:ENSG00000159761|HPRD:18380|Vega:OTTHUMG00000150527 16 16q22.1 chromosome 16 open reading frame 86 protein-coding C16orf86 chromosome 16 open reading frame 86 O uncharacterized protein C16orf86 20121230 -9606 388289 C16orf47 - - HGNC:28329|HPRD:16623 16 16q22.3 chromosome 16 open reading frame 47 unknown C16orf47 chromosome 16 open reading frame 47 O - 20121230 -9606 388323 GLTPD2 - - HGNC:33756|Ensembl:ENSG00000182327|HPRD:18609|Vega:OTTHUMG00000177929 17 17p13.2 glycolipid transfer protein domain containing 2 protein-coding GLTPD2 glycolipid transfer protein domain containing 2 O glycolipid transfer protein domain-containing protein 2 20121230 -9606 388324 INCA1 HSD45 - HGNC:32224|Ensembl:ENSG00000196388|HPRD:17150|Vega:OTTHUMG00000177768 17 17p13.2 inhibitor of CDK, cyclin A1 interacting protein 1 protein-coding INCA1 inhibitor of CDK, cyclin A1 interacting protein 1 O protein INCA1 20121230 -9606 388325 SCIMP UNQ5783/PRO16090 C17orf87|UNQ5783 HGNC:33504|MIM:614406|Ensembl:ENSG00000161929|HPRD:18267|Vega:OTTHUMG00000132914 17 17p13.2 SLP adaptor and CSK interacting membrane protein protein-coding SCIMP SLP adaptor and CSK interacting membrane protein O DTFT5783|SLP adapter and CSK-interacting membrane protein|SLP65/SLP76, Csk-interacting membrane protein|transmembrane protein C17orf87 20121230 -9606 388327 C17orf100 hCG_1985469 - HGNC:34494|Ensembl:ENSG00000212734|Vega:OTTHUMG00000132435 17 17p13.1 chromosome 17 open reading frame 100 protein-coding C17orf100 chromosome 17 open reading frame 100 O hCG1985469|uncharacterized protein C17orf100 20121230 -9606 388333 SPDYE4 - - HGNC:35463|Ensembl:ENSG00000183318|Vega:OTTHUMG00000178566 17 17p13.1 speedy homolog E4 (Xenopus laevis) protein-coding SPDYE4 speedy homolog E4 (Xenopus laevis) O putative Speedy protein E4|speedy protein E4 20121230 -9606 388335 TMEM220 - - HGNC:33757|Ensembl:ENSG00000187824|HPRD:17371|Vega:OTTHUMG00000178043 17 17p13.1 transmembrane protein 220 protein-coding TMEM220 transmembrane protein 220 O - 20121230 -9606 388336 SHISA6 - - HGNC:34491|Ensembl:ENSG00000188803|HPRD:13507|Vega:OTTHUMG00000154121 17 17p12 shisa homolog 6 (Xenopus laevis) protein-coding SHISA6 shisa homolog 6 (Xenopus laevis) O protein shisa-6 homolog 20121230 -9606 388339 RPS18P12 - RPS18_4_1516 HGNC:35967 17 17p12 ribosomal protein S18 pseudogene 12 pseudo RPS18P12 ribosomal protein S18 pseudogene 12 O - 20121230 -9606 388341 FAM211A - C17orf76 HGNC:32403|Ensembl:ENSG00000181350|HPRD:16939|Vega:OTTHUMG00000058988 17 17p11.2 family with sequence similarity 211, member A protein-coding FAM211A family with sequence similarity 211, member A O leucine-rich repeat-containing protein C17orf76|leucine-rich repeat-containing protein FAM211A 20121230 -9606 388344 RPL13P12 - RPL13_4_1521 HGNC:35701 17 17p11.2 ribosomal protein L13 pseudogene 12 pseudo RPL13P12 ribosomal protein L13 pseudogene 12 O - 20121230 -9606 388363 RPS7P1 - RPS7_4_1531 HGNC:17081 17 17q11.2 ribosomal protein S7 pseudogene 1 pseudo RPS7P1 ribosomal protein S7 pseudogene 1 O - 20121230 -9606 388364 TMIGD1 UNQ9372/PRO34164 TMIGD|UNQ9372 HGNC:32431|Ensembl:ENSG00000182271|HPRD:18274|Vega:OTTHUMG00000179757 17 17q11.2 transmembrane and immunoglobulin domain containing 1 protein-coding TMIGD1 transmembrane and immunoglobulin domain containing 1 O AWKS9372|transmembrane and immunoglobulin domain-containing protein 1 20121230 -9606 388372 CCL4L2 - AT744.2|CCL4L|SCYA4L HGNC:24066|MIM:610757|Ensembl:ENSG00000197262|HPRD:16689|Vega:OTTHUMG00000133066 17 17q12 chemokine (C-C motif) ligand 4-like 2 protein-coding CCL4L2 chemokine (C-C motif) ligand 4-like 2 O CC chemokine ligand 4L1d2|CC chemokine ligand 4L2|chemokine (C-C motif) ligand 4-like 1, telomeric|lymphocyte activation gene 1|macrophage inflammatory protein-1b2 20121230 -9606 388381 C17orf98 - - HGNC:34492|Ensembl:ENSG00000214556|Vega:OTTHUMG00000132347 17 17q12 chromosome 17 open reading frame 98 protein-coding C17orf98 chromosome 17 open reading frame 98 O uncharacterized protein C17orf98 20121230 -9606 388387 LINC00671 - - HGNC:44339|HPRD:13404 17 17q21.31 long intergenic non-protein coding RNA 671 miscRNA LINC00671 long intergenic non-protein coding RNA 671 O - 20121230 -9606 388389 CCDC103 - CILD17|PR46b|SMH HGNC:32700|MIM:614677|Ensembl:ENSG00000167131|HPRD:14200|Vega:OTTHUMG00000154264 17 17q21.31 coiled-coil domain containing 103 protein-coding CCDC103 coiled-coil domain containing 103 O coiled-coil domain-containing protein 103 20121230 -9606 388394 RPRML - - HGNC:32422|Ensembl:ENSG00000179673|HPRD:14201|Vega:OTTHUMG00000178187 17 17q21.32 reprimo-like protein-coding RPRML reprimo-like O reprimo-like protein 20121230 -9606 388401 RPL7P48 - RPL7_19_1558 HGNC:35540 17 17q21.33 ribosomal protein L7 pseudogene 48 pseudo RPL7P48 ribosomal protein L7 pseudogene 48 O - 20121230 -9606 388403 YPEL2 FKSG4 - HGNC:18326|MIM:609723|Ensembl:ENSG00000175155|HPRD:15682|Vega:OTTHUMG00000179378 17 17q22 yippee-like 2 (Drosophila) protein-coding YPEL2 yippee-like 2 (Drosophila) O DiGeorge syndrome-related protein|protein yippee-like 2 20121230 -9606 388406 FLJ27502 - - - 17 17q23.2 uncharacterized LOC388406 miscRNA - - - - 20120508 -9606 388407 C17orf82 - - HGNC:32699|Ensembl:ENSG00000187013|HPRD:14202|Vega:OTTHUMG00000180077 17 17q23.2 chromosome 17 open reading frame 82 protein-coding C17orf82 chromosome 17 open reading frame 82 O putative uncharacterized protein C17orf82 20121230 -9606 388414 LOC388414 - - - 17 17q24.3 uncharacterized LOC388414 miscRNA - - - - 20111025 -9606 388419 BTBD17 - BTBD17A|LGALS3BPL|TANGO10A HGNC:33758|Ensembl:ENSG00000204347|Vega:OTTHUMG00000178580 17 17q25.1 BTB (POZ) domain containing 17 protein-coding BTBD17 BTB (POZ) domain containing 17 O BTB/POZ and BACK domain-containing protein LOC388419|BTB/POZ domain-containing protein 17|transport and golgi organization 10 homolog A 20121230 -9606 388428 AATK-AS1 - - HGNC:40053|HPRD:16976 17 17q25.3 AATK antisense RNA 1 miscRNA AATK-AS1 AATK antisense RNA 1 O - 20121230 -9606 388436 LOC388436 - - - 17 17p11.2 uncharacterized LOC388436 unknown - - - - 20121209 -9606 388439 FLJ12120 - - - 17 17p13.3 uncharacterized LOC388439 protein-coding - - - - 20120508 -9606 388456 LOC388456 - - - 18 18p11.32 uncharacterized LOC388456 miscRNA - - - - 20120508 -9606 388460 RPL6P22 - RPL6_7_890 HGNC:36220 8 8p12 ribosomal protein L6 pseudogene 22 pseudo RPL6P22 ribosomal protein L6 pseudogene 22 O - 20121230 -9606 388468 POTEC - A26B2|CT104.6|POTE-18|POTE18 HGNC:33894|Ensembl:ENSG00000183206|Vega:OTTHUMG00000162963 18 18p11.21 POTE ankyrin domain family, member C protein-coding POTEC POTE ankyrin domain family, member C O ANKRD26-like family B member 2|ANKRD26-like family B, member 2|POTE ankyrin domain family member C|cancer/testis antigen family 104, member 6|prostate, ovary, testis-expressed protein on chromosome 18 20121230 -9606 388474 RPL7AP66 - RPL7A_30_1597 HGNC:35682 18 18q12.2 ribosomal protein L7a pseudogene 66 pseudo RPL7AP66 ribosomal protein L7a pseudogene 66 O - 20121230 -9606 388478 SDCCAG3P1 - SDCCAG3L HGNC:29375 18 18q21.32 serologically defined colon cancer antigen 3 pseudogene 1 pseudo SDCCAG3P1 serologically defined colon cancer antigen 3 pseudogene 1 O - 20121230 -9606 388499 LOC388499 hCG_2003956 - - 19 19p13.2 lysophospholipase II pseudogene pseudo - - - - 20121230 -9606 388503 C3P1 - CPLP HGNC:34414|HPRD:18382 19 19p13.2 complement component 3 precursor pseudogene pseudo C3P1 complement component 3 precursor pseudogene O - 20121230 -9606 388507 ZNF788 - - HGNC:33112|HPRD:17002 19 19p13.2 zinc finger family member 788 pseudo ZNF788 zinc finger family member 788 O - 20121230 -9606 388512 CLEC17A - - HGNC:34520|Ensembl:ENSG00000187912|HPRD:16993|Vega:OTTHUMG00000169312 19 19p13.12 C-type lectin domain family 17, member A protein-coding CLEC17A C-type lectin domain family 17, member A O prolectin 20121230 -9606 388514 CYP4F24P - - HGNC:39945 19 19p13.12 cytochrome P450, family 4, subfamily F, polypeptide 24, pseudogene pseudo CYP4F24P cytochrome P450, family 4, subfamily F, polypeptide 24, pseudogene O - 20121230 -9606 388523 ZNF728 - - HGNC:32463 19 19p12 zinc finger protein 728 protein-coding ZNF728 zinc finger protein 728 O zinc finger protein 43 20121230 -9606 388524 RPSAP58 - RPSA_30_1642 HGNC:36809|HPRD:14203 19 19p12 ribosomal protein SA pseudogene 58 pseudo RPSAP58 ribosomal protein SA pseudogene 58 O - 20121230 -9606 388531 RGS9BP - PERRS|R9AP|RGS9 HGNC:30304|MIM:607814|Ensembl:ENSG00000186326|HPRD:16991|Vega:OTTHUMG00000180227 19 19q13.11 regulator of G protein signaling 9 binding protein protein-coding RGS9BP regulator of G protein signaling 9 binding protein O RGS9 anchor protein|RGS9-anchoring protein|regulator of G-protein signaling 9-binding protein 20121230 -9606 388532 RPL21P131 - RPL21_64_1647 HGNC:36428 19 19q13.11 ribosomal protein L21 pseudogene 131 pseudo RPL21P131 ribosomal protein L21 pseudogene 131 O - 20121230 -9606 388533 KRTDAP UNQ467/PRO826 KDAP|UNQ467 HGNC:16313|Ensembl:ENSG00000188508|HPRD:18262|Vega:OTTHUMG00000155449 19 19q13.12 keratinocyte differentiation-associated protein protein-coding KRTDAP keratinocyte differentiation-associated protein O KIPV467 20121230 -9606 388536 ZNF790 - - HGNC:33114|Ensembl:ENSG00000197863|HPRD:17566|Vega:OTTHUMG00000165616 19 19q13.12 zinc finger protein 790 protein-coding ZNF790 zinc finger protein 790 O - 20121230 -9606 388550 CEACAM22P - - HGNC:38029 19 19q13.31 carcinoembryonic antigen-related cell adhesion molecule 2, pseudogene pseudo CEACAM22P carcinoembryonic antigen-related cell adhesion molecule 2, pseudogene O - 20121230 -9606 388551 CEACAM16 - CEAL2|DFNA4B HGNC:31948|MIM:614591|Ensembl:ENSG00000213892|Vega:OTTHUMG00000151519 19 19q13.32 carcinoembryonic antigen-related cell adhesion molecule 16 protein-coding CEACAM16 carcinoembryonic antigen-related cell adhesion molecule 16 O carcinoembryonic antigen like-2 protein 20121230 -9606 388552 BLOC1S3 - BLOS3|HPS8|RP HGNC:20914|MIM:609762|Ensembl:ENSG00000189114|HPRD:12527|Vega:OTTHUMG00000181776 19 19q13.32 biogenesis of lysosomal organelles complex-1, subunit 3 protein-coding BLOC1S3 biogenesis of lysosomal organelles complex-1, subunit 3 O BLOC-1 subunit 3|biogenesis of lysosome-related organelles complex 1 subunit 3|biogenesis of lysosome-related organelles complex-1, subunit 3|reduced pigmentation, mouse, homolog of 20121230 -9606 388553 LOC388553 - - - 19 19q13.32 uncharacterized LOC388553 miscRNA - - - - 20121230 -9606 388555 IGFL3 UNQ483/PRO982 UNQ483 HGNC:32930|MIM:610546|Ensembl:ENSG00000188624|HPRD:17140|Vega:OTTHUMG00000172904 19 19q13.32 IGF-like family member 3 protein-coding IGFL3 IGF-like family member 3 O RPRC483|insulin growth factor-like family member 3 20121230 -9606 388556 RPS9P4 - RPS9_1_1662 HGNC:36710 19 19q13.33 ribosomal protein S9 pseudogene 4 pseudo RPS9P4 ribosomal protein S9 pseudogene 4 O - 20121230 -9606 388558 ZNF808 - - HGNC:33230|Ensembl:ENSG00000198482|Vega:OTTHUMG00000158230 19 19q13.41 zinc finger protein 808 protein-coding ZNF808 zinc finger protein 808 O - 20121230 -9606 388559 ZNF888 - - HGNC:38695 19 19q13.41 zinc finger protein 888 protein-coding ZNF888 zinc finger protein 888 O - 20121230 -9606 388560 ERVFRD-2 - - HGNC:35201|HPRD:16994 19 19q13.41 endogenous retrovirus group FRD, member 2 unknown ERVFRD-2 endogenous retrovirus group FRD, member 2 O - 20120710 -9606 388561 ZNF761 - ZNF468 HGNC:23179|HPRD:16912 19 19q13.42 zinc finger protein 761 protein-coding ZNF761 zinc finger protein 761 O zinc finger protein 468 20121230 -9606 388564 TMEM238 - - HGNC:40042|Ensembl:ENSG00000233493|Vega:OTTHUMG00000180795 19 19q13.42 transmembrane protein 238 protein-coding TMEM238 transmembrane protein 238 O - 20121230 -9606 388566 ZNF470 - CZF-1 HGNC:22220|Ensembl:ENSG00000197016|HPRD:13398 19 19q13.43 zinc finger protein 470 protein-coding ZNF470 zinc finger protein 470 O chondrogenesis zinc finger protein 1 20121230 -9606 388567 ZNF749 - - HGNC:32783|Ensembl:ENSG00000186230|HPRD:18610|Vega:OTTHUMG00000150372 19 19q13.43 zinc finger protein 749 protein-coding ZNF749 zinc finger protein 749 O - 20121230 -9606 388569 ZNF324B - - HGNC:33107|Ensembl:ENSG00000249471|HPRD:13515 19 19q13.43 zinc finger protein 324B protein-coding ZNF324B zinc finger protein 324B O - 20121230 -9606 388572 LOC388572 - - - 11 11p15.5 uncharacterized LOC388572 unknown - - - - 20120511 -9606 388574 FLJ43681 - - - 17 17q25.3 ribosomal protein L23a pseudogene pseudo - - - - 20121230 -9606 388579 LOC388579 - - - 1 1p36.33 TUBB4Q pseudogene pseudo - - - - 20121230 -9606 388581 FAM132A RP5-902P8.4 C1QDC2|C1QTNF12|CTRP12 HGNC:32308|Ensembl:ENSG00000184163|Vega:OTTHUMG00000001412 1 1p36.33 family with sequence similarity 132, member A protein-coding FAM132A family with sequence similarity 132, member A O C1q domain containing 2|C1q/TNF-related protein 12|adipolin|adipose-derived insulin-sensitizing factor|protein FAM132A 20121230 -9606 388585 HES5 RP3-395M20.5 bHLHb38 HGNC:19764|MIM:607348|Ensembl:ENSG00000197921|HPRD:16240|Vega:OTTHUMG00000000793 1 1p36.32 hairy and enhancer of split 5 (Drosophila) protein-coding HES5 hairy and enhancer of split 5 (Drosophila) O class B basic helix-loop-helix protein 38|transcription factor HES-5 20121230 -9606 388588 SMIM1 - - HGNC:44204|Ensembl:ENSG00000235169|Vega:OTTHUMG00000003505 1 1p36.32 small integral membrane protein 1 protein-coding SMIM1 small integral membrane protein 1 O - 20121230 -9606 388591 RNF207 - C1orf188 HGNC:32947|Ensembl:ENSG00000158286|HPRD:08119|HPRD:13536|Vega:OTTHUMG00000001089 1 1p36.31 ring finger protein 207 protein-coding RNF207 ring finger protein 207 O RING finger protein 207 20121230 -9606 388595 TMEM82 RP11-169K16.3 - HGNC:32350|Ensembl:ENSG00000162460|HPRD:18383|Vega:OTTHUMG00000003065 1 1p36.21 transmembrane protein 82 protein-coding TMEM82 transmembrane protein 82 O - 20121230 -9606 388605 HS6ST1P1 - HS6ST1P HGNC:31835 1 1p36.12 heparan sulfate 6-O-sulfotransferase 1 pseudogene 1 pseudo HS6ST1P1 heparan sulfate 6-O-sulfotransferase 1 pseudogene 1 O - 20121230 -9606 388606 SDHDP7 - - HGNC:31410 1 1p36.11 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 7 pseudo SDHDP7 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 7 O - 20121230 -9606 388610 TRNP1 - C1orf225|TNRP HGNC:34348|Ensembl:ENSG00000253368|HPRD:18384|Vega:OTTHUMG00000004277 1 1p36.11 TMF1-regulated nuclear protein 1 protein-coding TRNP1 TMF1-regulated nuclear protein 1 O TMF regulated nuclear protein|TMF-regulated nuclear protein 1 20121230 -9606 388611 CD164L2 RP1-144C9.1 UNQ6122 HGNC:32043|Ensembl:ENSG00000174950|HPRD:15619|Vega:OTTHUMG00000003395 1 1p36.11 CD164 sialomucin-like 2 protein-coding CD164L2 CD164 sialomucin-like 2 O CD164 sialomucin-like 2 protein|EAPG6122 20121230 -9606 388621 RPL21P20 - RPL21_3_36 HGNC:36582 1 1p34.2 ribosomal protein L21 pseudogene 20 pseudo RPL21P20 ribosomal protein L21 pseudogene 20 O - 20121230 -9606 388630 TRABD2B - TIKI2 HGNC:44200|MIM:614913|Ensembl:ENSG00000204018|Vega:OTTHUMG00000007960 1 1p33 TraB domain containing 2B protein-coding TRABD2B TraB domain containing 2B O TRAB domain-containing protein 2B|UPF0632 protein A|metalloprotease TIKI2 20121230 -9606 388633 LDLRAD1 - - HGNC:32069|Ensembl:ENSG00000203985|HPRD:17372|Vega:OTTHUMG00000008433 1 1p32.3 low density lipoprotein receptor class A domain containing 1 protein-coding LDLRAD1 low density lipoprotein receptor class A domain containing 1 O low density lipoprotein receptor A domain containing 1|low-density lipoprotein receptor class A domain-containing protein 1 20121230 -9606 388646 GBP7 - GBP4L HGNC:29606|MIM:612468|Ensembl:ENSG00000213512|HPRD:13432|Vega:OTTHUMG00000010659 1 1p22.2 guanylate binding protein 7 protein-coding GBP7 guanylate binding protein 7 O GBP-7|GTP-binding protein 7|guanine nucleotide-binding protein 7|guanylate-binding protein 7 20121230 -9606 388649 C1orf146 RP11-163M2.3 RP11-163M2.4 HGNC:24032|Ensembl:ENSG00000203910|HPRD:17988|Vega:OTTHUMG00000010285 1 1p22.1 chromosome 1 open reading frame 146 protein-coding C1orf146 chromosome 1 open reading frame 146 O uncharacterized protein C1orf146 20121230 -9606 388650 FAM69A - - HGNC:32213|MIM:614542|Ensembl:ENSG00000154511|HPRD:14204|Vega:OTTHUMG00000010894 1 1p22.1 family with sequence similarity 69, member A protein-coding FAM69A family with sequence similarity 69, member A O protein FAM69A 20121230 -9606 388662 SLC6A17 - NTT4 HGNC:31399|MIM:610299|Ensembl:ENSG00000197106|HPRD:18061|Vega:OTTHUMG00000011761 1 1p13.3 solute carrier family 6, member 17 protein-coding SLC6A17 solute carrier family 6, member 17 O orphan sodium- and chloride-dependent neurotransmitter transporter NTT4|sodium-dependent neurotransmitter transporter NTT4|sodium-dependent neutral amino acid transporter SLC6A17|solute carrier family 6 (neurotransmitter transporter), member 17 20121230 -9606 388666 FLJ36116 - - - 1 1p13.2 uncharacterized LOC388666 unknown - - - - 20120511 -9606 388667 C1orf137 RP4-686J16.1 - HGNC:32040|HPRD:18385 1 1p13.1 chromosome 1 open reading frame 137 unknown C1orf137 chromosome 1 open reading frame 137 O - 20121021 -9606 388677 NOTCH2NL - N2N HGNC:31862|Ensembl:ENSG00000213240|HPRD:14833|Vega:OTTHUMG00000013754 1 1q21.2 notch 2 N-terminal like protein-coding NOTCH2NL notch 2 N-terminal like O Notch homolog 2 N-terminal like protein|notch homolog 2 N-terminal-like protein 20121230 -9606 388685 FLJ39739 - - HPRD:13438 1 1q21.1 uncharacterized FLJ39739 miscRNA - - - - 20121230 -9606 388692 LOC388692 - - HPRD:18386 1 1q21.2 uncharacterized LOC388692 miscRNA - - - - 20121230 -9606 388695 LYSMD1 SB145 RP11-68I18.5 HGNC:32070|Ensembl:ENSG00000163155|HPRD:18017|Vega:OTTHUMG00000012260 1 1q21.3 LysM, putative peptidoglycan-binding, domain containing 1 protein-coding LYSMD1 LysM, putative peptidoglycan-binding, domain containing 1 O lysM and putative peptidoglycan-binding domain-containing protein 1 20121230 -9606 388697 HRNR - FLG3|S100A16|S100a18 HGNC:20846|Ensembl:ENSG00000197915|HPRD:17114|Vega:OTTHUMG00000012243 1 1q21.3 hornerin protein-coding HRNR hornerin O filaggrin family member 3|intermediate filament-associated protein 20121230 -9606 388698 FLG2 RP1-14N1.3 IFPS HGNC:33276|Ensembl:ENSG00000143520|HPRD:11815|Vega:OTTHUMG00000012245 1 1q21.3 filaggrin family member 2 protein-coding FLG2 filaggrin family member 2 O FLG-2|filaggrin 2|filaggrin-2|ifapsoriasin|intermediate filament-associated and psoriasis susceptibility protein|intermediate filament-associated and psoriasis-susceptibility protein 20121230 -9606 388699 LINC00302 - C1orf46|NCRNA00302|xp33 HGNC:31825 1 1q21.3 long intergenic non-protein coding RNA 302 unknown LINC00302 long intergenic non-protein coding RNA 302 O - 20121021 -9606 388701 C1orf189 - - HGNC:32305|Ensembl:ENSG00000163263|HPRD:17373|Vega:OTTHUMG00000035982 1 1q21.3 chromosome 1 open reading frame 189 protein-coding C1orf189 chromosome 1 open reading frame 189 O uncharacterized protein C1orf189 20121230 -9606 388707 RPSAP18 - RPSA_4_107 HGNC:36106 1 1q23.2 ribosomal protein SA pseudogene 18 pseudo RPSAP18 ribosomal protein SA pseudogene 18 O - 20121230 -9606 388714 FMO6P RP1-127D3.2 FMO6 HGNC:24024|HPRD:18387 1 1q24.3 flavin containing monooxygenase 6 pseudogene pseudo FMO6P flavin containing monooxygenase 6 pseudogene O - 20121230 -9606 388719 LINC00272 - C1orf120|NCRNA00272|RP1-223H12.3 HGNC:26898|HPRD:17987 1 1q25.3 long intergenic non-protein coding RNA 272 miscRNA LINC00272 long intergenic non-protein coding RNA 272 O - 20121230 -9606 388722 C1orf53 RP11-255O17.1 - HGNC:30003|Ensembl:ENSG00000203724|HPRD:18611|Vega:OTTHUMG00000035659 1 1q31.3 chromosome 1 open reading frame 53 protein-coding C1orf53 chromosome 1 open reading frame 53 O uncharacterized protein C1orf53 20121230 -9606 388730 TMEM81 UNQ2788/PRO7178 HC3107|KVLA2788|UNQ2788 HGNC:32349|Ensembl:ENSG00000174529|HPRD:14205|Vega:OTTHUMG00000037103 1 1q32.1 transmembrane protein 81 protein-coding TMEM81 transmembrane protein 81 O - 20121230 -9606 388734 LOC388734 - - - 1 1q32.2 PRELI domain containing 1 pseudogene pseudo - - - - 20121230 -9606 388743 CAPN8 RP11-105I12.2 nCL-2 HGNC:1485 1 1q41 calpain 8 protein-coding CAPN8 calpain 8 O calpain-8|new calpain 2|stomach-specific M-type calpain 20121230 -9606 388753 COA6 RP5-827C21.3 C1orf31 HGNC:18025|MIM:614772|Ensembl:ENSG00000168275|HPRD:18535|Vega:OTTHUMG00000037945 1 1q42.2 cytochrome c oxidase assembly factor 6 homolog (S. cerevisiae) protein-coding COA6 cytochrome c oxidase assembly factor 6 homolog (S. cerevisiae) O uncharacterized protein C1orf31 20121230 -9606 388759 C1orf229 - - HGNC:33759|Ensembl:ENSG00000221953|HPRD:13511|Vega:OTTHUMG00000165196 1 1q44 chromosome 1 open reading frame 229 protein-coding C1orf229 chromosome 1 open reading frame 229 O putative uncharacterized protein C1orf229 20121230 -9606 388761 OR14A2 - OR5AX1|OR5AX1P HGNC:15024 1 1q44 olfactory receptor, family 14, subfamily A, member 2 pseudo OR14A2 olfactory receptor, family 14, subfamily A, member 2 O - 20121230 -9606 388762 OR2M1P - JCG10|OR2M1|OST037 HGNC:8267 1 1q44 olfactory receptor, family 2, subfamily M, member 1 pseudogene pseudo OR2M1P olfactory receptor, family 2, subfamily M, member 1 pseudogene O - 20121230 -9606 388780 LOC388780 - - - 20 20p13 uncharacterized LOC388780 miscRNA - - - - 20121209 -9606 388789 LINC00493 - - HGNC:43430 20 20p11.23 long intergenic non-protein coding RNA 493 miscRNA LINC00493 long intergenic non-protein coding RNA 493 O - 20121230 -9606 388795 EFCAB8 RP11-60H7.2 - HGNC:34532 20 20q11.21 EF-hand calcium binding domain 8 protein-coding EFCAB8 EF-hand calcium binding domain 8 O EF-hand calcium-binding domain-containing protein 8|EF-hand domain-containing protein ENSP00000383366 20121230 -9606 388796 LOC388796 - - - 20 20q11.23 uncharacterized LOC388796 miscRNA - - - - 20121230 -9606 388799 FAM209B RP5-1153D9.3 C20orf107|dJ1153D9.4 HGNC:16101|Ensembl:ENSG00000213714|HPRD:18388|Vega:OTTHUMG00000032800 20 20q13.31 family with sequence similarity 209, member B protein-coding FAM209B family with sequence similarity 209, member B O protein FAM209B|uncharacterized protein C20orf107 20121230 -9606 388813 LOC388813 - - Ensembl:ENSG00000243440|Vega:OTTHUMG00000074315 21 21q11.2 uncharacterized protein ENSP00000383407-like protein-coding - - - putative uncharacterized protein ENSP00000383407 20121230 -9606 388815 LINC00478 - C21orf34|C21orf35|FLJ38295 HGNC:1274|HPRD:10746 21 21q21.1 long intergenic non-protein coding RNA 478 miscRNA LINC00478 long intergenic non-protein coding RNA 478 O - 20121230 -9606 388818 KRTAP26-1 - - HGNC:33760|Ensembl:ENSG00000197683|HPRD:14206|Vega:OTTHUMG00000057766 21 21q22.11 keratin associated protein 26-1 protein-coding KRTAP26-1 keratin associated protein 26-1 O keratin-associated protein 26-1 20121230 -9606 388820 LOC388820 - - - 21 21q22.11 uncharacterized LOC388820 unknown - - - - 20121230 -9606 388830 LINC00316 - C21orf111|NCRNA00316|PRED59 HGNC:19723 21 21q22.3 long intergenic non-protein coding RNA 316 miscRNA LINC00316 long intergenic non-protein coding RNA 316 O - 20121230 -9606 388849 LOC388849 - - Ensembl:ENSG00000234409|Vega:OTTHUMG00000150751 22 22q11.21 uncharacterized LOC388849 protein-coding - - - uncharacterized protein LOC388849 20121230 -9606 388882 LOC388882 - - HPRD:14207 22 22q11.23 uncharacterized LOC388882 unknown - - - - 20121230 -9606 388885 RPS10P29 - - HGNC:37120 22 22q11.23 ribosomal protein S10 pseudogene 29 pseudo RPS10P29 ribosomal protein S10 pseudogene 29 O - 20121230 -9606 388886 FAM211B - C22orf36 HGNC:33155|Ensembl:ENSG00000178026|HPRD:14208|Vega:OTTHUMG00000150729 22 22q11.23 family with sequence similarity 211, member B protein-coding FAM211B family with sequence similarity 211, member B O leucine-rich repeat-containing protein C22orf36|leucine-rich repeat-containing protein FAM211B 20121230 -9606 388906 LOC388906 - - - 22 22q13.2 opioid growth factor receptor pseudogene pseudo - - - - 20121230 -9606 388907 RPL5P34 - RPL5_15_1754 HGNC:36463 22 22q13.2 ribosomal protein L5 pseudogene 34 pseudo RPL5P34 ribosomal protein L5 pseudogene 34 O - 20121230 -9606 388910 LINC00207 RP3-474I12.5 NCRNA00207 HGNC:37255|HPRD:18389 22 22q13.31 long intergenic non-protein coding RNA 207 miscRNA LINC00207 long intergenic non-protein coding RNA 207 O - 20121230 -9606 388925 PSMC1P10 - - HGNC:39785 2 2p24.2 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 10 pseudo PSMC1P10 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 10 O - 20121230 -9606 388931 MFSD2B - - HGNC:37207|Ensembl:ENSG00000205639|Vega:OTTHUMG00000090819 2 2p23.3 major facilitator superfamily domain containing 2B protein-coding MFSD2B major facilitator superfamily domain containing 2B O major facilitator superfamily domain-containing protein 2B 20121230 -9606 388939 C2orf71 - - HGNC:34383|MIM:613425|Ensembl:ENSG00000179270|Vega:OTTHUMG00000152024 2 2p23.2 chromosome 2 open reading frame 71 protein-coding C2orf71 chromosome 2 open reading frame 71 O uncharacterized protein C2orf71 20121230 -9606 388942 LOC388942 - - - 2 2p21 uncharacterized LOC388942 miscRNA - - - - 20121230 -9606 388946 TMEM247 - - HGNC:42967|Ensembl:ENSG00000187600|Vega:OTTHUMG00000153137 2 2p21 transmembrane protein 247 protein-coding TMEM247 transmembrane protein 247 O transmembrane protein ENSP00000343375 20121230 -9606 388948 LOC388948 - - - 2 2p21 uncharacterized LOC388948 miscRNA - - - - 20121230 -9606 388951 TSPYL6 - - HGNC:14521|Ensembl:ENSG00000178021|HPRD:11652|Vega:OTTHUMG00000151823 2 2p16.2 TSPY-like 6 protein-coding TSPYL6 TSPY-like 6 O TSPY-like protein 6|testis-specific Y-encoded-like protein 6 20121230 -9606 388955 LOC388955 - - - 2 2p15 PRELI domain-containing protein 1, mitochondrial pseudogene pseudo - - - - 20121230 -9606 388960 C2orf78 - COG5373|hCG1989538 HGNC:34349|Ensembl:ENSG00000187833|Vega:OTTHUMG00000152819 2 2p13.1 chromosome 2 open reading frame 78 protein-coding C2orf78 chromosome 2 open reading frame 78 O uncharacterized protein C2orf78 20121230 -9606 388962 BOLA3 - MMDS2 HGNC:24415|MIM:613183|Ensembl:ENSG00000163170|HPRD:14209|Vega:OTTHUMG00000152834 2 2p13.1 bolA homolog 3 (E. coli) protein-coding BOLA3 bolA homolog 3 (E. coli) O bolA-like protein 3 20121230 -9606 388963 C2orf81 - hCG40743 HGNC:34350|Ensembl:ENSG00000159239|Vega:OTTHUMG00000164184 2 2p13.1 chromosome 2 open reading frame 81 protein-coding C2orf81 chromosome 2 open reading frame 81 O Uncharacterized protein ENSP00000290390|uncharacterized protein C2orf81 20121230 -9606 388965 FUNDC2P2 - - HGNC:17247|HPRD:18390 2 2p11.2 FUN14 domain containing 2 pseudogene 2 pseudo FUNDC2P2 FUN14 domain containing 2 pseudogene 2 O - 20121230 -9606 388969 C2orf68 - - HGNC:34353|Ensembl:ENSG00000168887|HPRD:18391|Vega:OTTHUMG00000153088 2 2p11.2 chromosome 2 open reading frame 68 protein-coding C2orf68 chromosome 2 open reading frame 68 O UPF0561 protein C2orf68 20121230 -9606 388996 LOC388996 - - - 2 2p11.1 otopetrin 1 pseudogene pseudo - - - - 20121230 -9606 389000 SLC9B1P2 - NHEDC1P2 HGNC:37493 2 2p11.1 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 2 pseudo SLC9B1P2 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 2 O - 20121230 -9606 389015 SLC9A4 - NHE4 HGNC:11077|MIM:600531|Ensembl:ENSG00000180251|HPRD:15973|Vega:OTTHUMG00000153093 2 2q12.1 solute carrier family 9, subfamily A (NHE4, cation proton antiporter 4), member 4 protein-coding SLC9A4 solute carrier family 9, subfamily A (NHE4, cation proton antiporter 4), member 4 O NHE-4|Na(+)/H(+) exchanger 4|sodium/hydrogen exchanger 4|solute carrier family 9 (sodium/hydrogen exchanger)|solute carrier family 9 (sodium/hydrogen exchanger), member 4|solute carrier family 9 member 4 20121230 -9606 389023 LOC389023 - - - 2 2q14.1 uncharacterized LOC389023 miscRNA - - - - 20121230 -9606 389033 LOC389033 - - - 2 2q21.1 placenta-specific 9 pseudogene pseudo - - - - 20121230 -9606 389036 ACT - - - 2 2q21.1 actin-like protein (ACT) gene protein-coding - - - - 20111109 -9606 389043 LOC389043 - - - 2 2q21.1 uncharacterized LOC389043 miscRNA - - - - 20121230 -9606 389053 HNRNPKP2 - - HGNC:42375 2 2q22.1 heterogeneous nuclear ribonucleoprotein K pseudogene 2 pseudo HNRNPKP2 heterogeneous nuclear ribonucleoprotein K pseudogene 2 O - 20121230 -9606 389058 SP5 - - HGNC:14529|MIM:609391|Ensembl:ENSG00000204335|HPRD:18088|Vega:OTTHUMG00000154053 2 2q31.1 Sp5 transcription factor protein-coding SP5 Sp5 transcription factor O transcription factor Sp5 20121230 -9606 389064 FLJ46347 - - HPRD:13532 2 2q31.1 uncharacterized LOC389064 unknown - - - - 20111109 -9606 389072 PLEKHM3 - DAPR|PLEKHM1L HGNC:34006|Ensembl:ENSG00000178385|Vega:OTTHUMG00000154781 2 2q33.3 pleckstrin homology domain containing, family M, member 3 protein-coding PLEKHM3 pleckstrin homology domain containing, family M, member 3 O PH domain-containing family M member 3|differentiation associated protein|pleckstrin homology domain-containing family M member 3 20121230 -9606 389073 C2orf80 - - HGNC:34352|Ensembl:ENSG00000188674|Vega:OTTHUMG00000154751 2 2q34 chromosome 2 open reading frame 80 protein-coding C2orf80 chromosome 2 open reading frame 80 O uncharacterized protein C2orf80 20121230 -9606 389075 RESP18 - - HGNC:33762|MIM:612721|Ensembl:ENSG00000182698|HPRD:17968|Vega:OTTHUMG00000150223 2 2q35 regulated endocrine-specific protein 18 protein-coding RESP18 regulated endocrine-specific protein 18 O regulated endocrine-specific protein 18 homolog 20121230 -9606 389084 C2orf82 UNQ830/PRO1757 UNQ830 HGNC:33763|Ensembl:ENSG00000182600|HPRD:15620|Vega:OTTHUMG00000133273 2 2q37.1 chromosome 2 open reading frame 82 protein-coding C2orf82 chromosome 2 open reading frame 82 O ASCL830|uncharacterized protein C2orf82 20121230 -9606 389090 OR6B2 - OR2-1|OR6B2P HGNC:15041|Ensembl:ENSG00000182083|HPRD:15056|Vega:OTTHUMG00000152400 2 2q37.3 olfactory receptor, family 6, subfamily B, member 2 protein-coding OR6B2 olfactory receptor, family 6, subfamily B, member 2 O olfactory receptor 6B2|olfactory receptor OR2-1|olfactory receptor, family 6, subfamily B, member 2 pseudogene 20121230 -9606 389101 RPL23AP43 - RPL23A_16_360 HGNC:35751 3 3p22.3 ribosomal protein L23a pseudogene 43 pseudo RPL23AP43 ribosomal protein L23a pseudogene 43 O - 20121230 -9606 389102 YPLR6490 UNQ6490 PRO21339 - 3 3p22.3 uncharacterized LOC389102 unknown - - - - 20121230 -9606 389112 RPS27P4 - RPS27_5_366 HGNC:16694 3 3p22.1 ribosomal protein S27 pseudogene 4 pseudo RPS27P4 ribosomal protein S27 pseudogene 4 O - 20121230 -9606 389114 ZNF662 - - HGNC:31930|Ensembl:ENSG00000182983|HPRD:13516|Vega:OTTHUMG00000133041 3 3p22.1 zinc finger protein 662 protein-coding ZNF662 zinc finger protein 662 O - 20121230 -9606 389118 CDHR4 UNQ9392/PRO34300 CDH29|PRO34300 HGNC:34527|Ensembl:ENSG00000187492|HPRD:17378|Vega:OTTHUMG00000158198 3 3p21.31 cadherin-related family member 4 protein-coding CDHR4 cadherin-related family member 4 O Cadherin-like protein UNQ9392/PRO34300|VLLR9392|cadherin-like 29|cadherin-like protein 29 20121230 -9606 389119 FAM212A - C3orf54|INKA1 HGNC:32480|Ensembl:ENSG00000185614|HPRD:14210|Vega:OTTHUMG00000158268 3 3p21.31 family with sequence similarity 212, member A protein-coding FAM212A family with sequence similarity 212, member A O protein FAM212A 20121230 -9606 389120 ACTBP13 - - HGNC:44626 3 3p21.31 actin, beta pseudogene 13 pseudo ACTBP13 actin, beta pseudogene 13 O - 20121230 -9606 389123 IQCF2 - - HGNC:31815|Ensembl:ENSG00000184345|HPRD:13745|Vega:OTTHUMG00000156914 3 3p21.2 IQ motif containing F2 protein-coding IQCF2 IQ motif containing F2 O IQ domain-containing protein F2 20121230 -9606 389124 IQCF5 - - HGNC:35159|Ensembl:ENSG00000214681|Vega:OTTHUMG00000156913 3 3p21.2 IQ motif containing F5 protein-coding IQCF5 IQ motif containing F5 O IQ domain-containing protein F5 20121230 -9606 389125 MUSTN1 - MUSTANG HGNC:22144|Ensembl:ENSG00000243696|HPRD:14790|Vega:OTTHUMG00000159024 3 3p21.1 musculoskeletal, embryonic nuclear protein 1 protein-coding MUSTN1 musculoskeletal, embryonic nuclear protein 1 O musculoskeletal embryonic nuclear protein 1|musculoskeletal temporally activated novel 20121230 -9606 389127 RPS10P10 - RPS10_4_378 HGNC:37034 3 3p14.2 ribosomal protein S10 pseudogene 10 pseudo RPS10P10 ribosomal protein S10 pseudogene 10 O - 20121230 -9606 389136 VGLL3 - VGL-3|VGL3 HGNC:24327|MIM:609980|Ensembl:ENSG00000206538|HPRD:13431|Vega:OTTHUMG00000158984 3 3p12.1 vestigial like 3 (Drosophila) protein-coding VGLL3 vestigial like 3 (Drosophila) O colon carcinoma related protein|transcription cofactor vestigial-like protein 3|vestigial-like 3 20121230 -9606 389137 ARMC10P1 - - HGNC:43646 3 3q11.2 armadillo repeat containing 10 pseudogene 1 pseudo ARMC10P1 armadillo repeat containing 10 pseudogene 1 O - 20121230 -9606 389141 RPSAP29 - RPSA_6_392 HGNC:36680 3 3q13.13 ribosomal protein SA pseudogene 29 pseudo RPSAP29 ribosomal protein SA pseudogene 29 O - 20121230 -9606 389144 OR7E130P - OST702 HGNC:15053 3 3q21.2 olfactory receptor, family 7, subfamily E, member 130 pseudogene pseudo OR7E130P olfactory receptor, family 7, subfamily E, member 130 pseudogene O - 20121230 -9606 389151 PRR23B - - HGNC:33764|Ensembl:ENSG00000184814|HPRD:18392|Vega:OTTHUMG00000160633 3 3q23 proline rich 23B protein-coding PRR23B proline rich 23B O proline-rich protein 23B 20121230 -9606 389152 PRR23C - - HGNC:37173|Ensembl:ENSG00000233701|HPRD:13526|Vega:OTTHUMG00000160634 3 3q23 proline rich 23C protein-coding PRR23C proline rich 23C O proline-rich protein 23A|proline-rich protein 23C 20121230 -9606 389156 RPL21P39 - RPL21_14_415 HGNC:36127 3 3q24 ribosomal protein L21 pseudogene 39 pseudo RPL21P39 ribosomal protein L21 pseudogene 39 O - 20121230 -9606 389158 PLSCR5 - - HGNC:19952|Ensembl:ENSG00000231213|Vega:OTTHUMG00000159437 3 3q24 phospholipid scramblase family, member 5 protein-coding PLSCR5 phospholipid scramblase family, member 5 O phospholipid scramblase family member 5 20121230 -9606 389160 CPHL1P - CPHL1 HGNC:31714 3 3q25.1 ceruloplasmin and hephaestin-like 1 pseudogene pseudo CPHL1P ceruloplasmin and hephaestin-like 1 pseudogene O - 20121230 -9606 389161 ANKUB1 - C3orf16 HGNC:29642|Ensembl:ENSG00000206199|Vega:OTTHUMG00000159615 3 3q25.1 ankyrin repeat and ubiquitin domain containing 1 protein-coding ANKUB1 ankyrin repeat and ubiquitin domain containing 1 O ankyrin repeat and ubiquitin domain-containing 1|protein ANKUB1 20121230 -9606 389168 SETP14 - - HGNC:42933 3 3q25.31 SET pseudogene 14 pseudo SETP14 SET pseudogene 14 O - 20121230 -9606 389170 LEKR1 - - HGNC:33765|MIM:613536|Ensembl:ENSG00000178110|Ensembl:ENSG00000197980|HPRD:16915|Vega:OTTHUMG00000158648 3 3q25.31 leucine, glutamate and lysine rich 1 protein-coding LEKR1 leucine, glutamate and lysine rich 1 O leucine-, glutamate- and lysine-rich protein 1 20121230 -9606 389177 TMEM212 - - HGNC:34295|Ensembl:ENSG00000186329|Vega:OTTHUMG00000156839 3 3q26.31 transmembrane protein 212 protein-coding TMEM212 transmembrane protein 212 O - 20121230 -9606 389179 EEF1A1P8 - EEF1AL6 HGNC:3203 3 3q27.1 eukaryotic translation elongation factor 1 alpha 1 pseudogene 8 pseudo EEF1A1P8 eukaryotic translation elongation factor 1 alpha 1 pseudogene 8 O - 20121230 -9606 389180 5-HT3C2 - - - 3 3q27.1 5-hydroxytryptamine (serotonin) receptor 3, family member E pseudogene pseudo - - - - 20121230 -9606 389197 C4orf50 - - HGNC:33766|Ensembl:ENSG00000181215|HPRD:13538|Vega:OTTHUMG00000149971 4 4p16.2 chromosome 4 open reading frame 50 protein-coding C4orf50 chromosome 4 open reading frame 50 O uncharacterized protein C4orf50 20121230 -9606 389199 LOC389199 - - HPRD:14211 4 4p16.1 uncharacterized LOC389199 unknown - - - - 20121230 -9606 389203 C4orf52 - - HGNC:37260|Ensembl:ENSG00000250317|Vega:OTTHUMG00000160330 4 4p15.2 chromosome 4 open reading frame 52 protein-coding C4orf52 chromosome 4 open reading frame 52 O uncharacterized protein C4orf52 20121230 -9606 389206 BEND4 - CCDC4 HGNC:23815|Ensembl:ENSG00000188848|HPRD:13481|Vega:OTTHUMG00000160531 4 4p13 BEN domain containing 4 protein-coding BEND4 BEN domain containing 4 O BEN domain-containing protein 4|coiled-coil domain containing 4|coiled-coil domain-containing protein 4 20121230 -9606 389207 GRXCR1 - DFNB25 HGNC:31673|MIM:613283|Ensembl:ENSG00000215203|Vega:OTTHUMG00000160434 4 4p13 glutaredoxin, cysteine rich 1 protein-coding GRXCR1 glutaredoxin, cysteine rich 1 O glutaredoxin domain-containing cysteine-rich protein 1 20121230 -9606 389208 TMPRSS11F - - HGNC:29994|Ensembl:ENSG00000198092|HPRD:16908|Vega:OTTHUMG00000129307 4 4q13.2 transmembrane protease, serine 11F protein-coding TMPRSS11F transmembrane protease, serine 11F O airway trypsin-like protease 4|transmembrane protease serine 11F 20121230 -9606 389217 SETP20 - - HGNC:42939 4 4q25 SET pseudogene 20 pseudo SETP20 SET pseudogene 20 O - 20121230 -9606 389223 EEF1A1P35 - - HGNC:37913 4 4q28.3 eukaryotic translation elongation factor 1 alpha 1 pseudogene 35 pseudo EEF1A1P35 eukaryotic translation elongation factor 1 alpha 1 pseudogene 35 O - 20121230 -9606 389240 NACA3P - NACA3 HGNC:33442 4 4q32.3 NACA family member 3 pseudogene pseudo NACA3P NACA family member 3 pseudogene O - 20121230 -9606 389246 VTI1BP2 - - HGNC:43728 4 4q35.1 vesicle transport through interaction with t-SNAREs 1B pseudogene 2 pseudo VTI1BP2 vesicle transport through interaction with t-SNAREs 1B pseudogene 2 O - 20121230 -9606 389247 LOC389247 - - - 4 4q35.1 uncharacterized LOC389247 miscRNA - - - - 20121230 -9606 389249 LOC389249 - - - 4 4q35.2 peroxiredoxin 6 pseudogene pseudo - - - - 20121230 -9606 389257 LRRC14B - - HGNC:37268 5 5p15.33 leucine rich repeat containing 14B protein-coding LRRC14B leucine rich repeat containing 14B O leucine-rich repeat-containing protein 14B 20121230 -9606 389273 LOC389273 - - - 5 5p15.2 uncharacterized LOC389273 unknown - - - - 20120622 -9606 389289 ANXA2R - AX2R|AXIIR|C5orf39 HGNC:33463|MIM:611296|HPRD:18393 5 5p12 annexin A2 receptor protein-coding ANXA2R annexin A2 receptor O annexin II receptor|annexin-2 receptor 20121230 -9606 389293 ISCA1P1 - ISCA1L HGNC:33263 5 5q12.1 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 1 pseudo ISCA1P1 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 389320 C5orf48 - - HGNC:33767|Ensembl:ENSG00000196900|HPRD:13399|Vega:OTTHUMG00000128944 5 5q23.2 chromosome 5 open reading frame 48 protein-coding C5orf48 chromosome 5 open reading frame 48 O uncharacterized protein C5orf48 20121230 -9606 389322 HNRNPKP1 - - HGNC:42374 5 5q23.2 heterogeneous nuclear ribonucleoprotein K pseudogene 1 pseudo HNRNPKP1 heterogeneous nuclear ribonucleoprotein K pseudogene 1 O - 20121230 -9606 389332 LOC389332 - - - 5 5q31.1 uncharacterized LOC389332 miscRNA - - - - 20121230 -9606 389333 PROB1 - C5orf65 HGNC:41906|Ensembl:ENSG00000228672 5 5q31.2 proline-rich basic protein 1 protein-coding PROB1 proline-rich basic protein 1 O weakly similar to basic proline-rich protein 20121230 -9606 389336 C5orf46 UNQ472/PRO839 - HGNC:33768|Ensembl:ENSG00000178776|HPRD:14491|Vega:OTTHUMG00000163420 5 5q32 chromosome 5 open reading frame 46 protein-coding C5orf46 chromosome 5 open reading frame 46 O uncharacterized protein C5orf46 20121230 -9606 389337 ARHGEF37 - - HGNC:34430|Ensembl:ENSG00000183111|HPRD:13454|Vega:OTTHUMG00000163491 5 5q32 Rho guanine nucleotide exchange factor (GEF) 37 protein-coding ARHGEF37 Rho guanine nucleotide exchange factor (GEF) 37 O rho guanine nucleotide exchange factor 37 20121230 -9606 389342 RPL10P9 - RPL10_1_637 HGNC:35579 5 5q34 ribosomal protein L10 pseudogene 9 pseudo RPL10P9 ribosomal protein L10 pseudogene 9 O - 20121230 -9606 389362 PSMG4 RP11-506K6.3 C6orf86|PAC4|bA506K6.2 HGNC:21108|Ensembl:ENSG00000180822|Vega:OTTHUMG00000014142 6 6p25.2 proteasome (prosome, macropain) assembly chaperone 4 protein-coding PSMG4 proteasome (prosome, macropain) assembly chaperone 4 O PAC-4|hPAC4|proteasome assembly chaperone 4 20121230 -9606 389376 SFTA2 DADB-160J14.6 GSGL541|SFTPG|UNQ541 HGNC:18386|Ensembl:ENSG00000196260|HPRD:18265|Vega:OTTHUMG00000031183 6 6p21.33 surfactant associated 2 protein-coding SFTA2 surfactant associated 2 O surfactant associated protein G|surfactant-associated protein 2|surfactant-associated protein G 20121230 -9606 389383 CLPSL2 RP3-510O8.5 C6orf126|UNQ3045|dJ510O8.5 HGNC:21250|Ensembl:ENSG00000196748|HPRD:15616|Vega:OTTHUMG00000014581 6 6p21.31 colipase-like 2 protein-coding CLPSL2 colipase-like 2 O AAAL3045|colipase-like protein 2|colipase-like protein C6orf126 20121230 -9606 389384 C6orf222 - - HGNC:33769|Ensembl:ENSG00000189325|HPRD:16824|Vega:OTTHUMG00000014591 6 6p21.31 chromosome 6 open reading frame 222 protein-coding C6orf222 chromosome 6 open reading frame 222 O uncharacterized protein C6orf222 20121230 -9606 389386 LAP3P2 - - HGNC:42365 6 6p21.2 leucine aminopeptidase 3 pseudogene 2 pseudo LAP3P2 leucine aminopeptidase 3 pseudogene 2 O - 20121230 -9606 389395 HNRNPA3P4 - - HGNC:39773 6 6p12.3 heterogeneous nuclear ribonucleoprotein A3 pseudogene 4 pseudo HNRNPA3P4 heterogeneous nuclear ribonucleoprotein A3 pseudogene 4 O - 20121230 -9606 389396 GLYATL3 RP11-28H17.5 C6orf140|bA28H17.2 HGNC:21349|MIM:614763|Ensembl:ENSG00000203972|Vega:OTTHUMG00000014818 6 6p12.3 glycine-N-acyltransferase-like 3 protein-coding GLYATL3 glycine-N-acyltransferase-like 3 O glycine N-acyltransferase-like protein 3 20121230 -9606 389400 GFRAL UNQ9356/PRO34128 C6orf144|GRAL|UNQ9356|bA360D14.1 HGNC:32789|Ensembl:ENSG00000187871|HPRD:15622|Vega:OTTHUMG00000014900 6 6p12.1 GDNF family receptor alpha like protein-coding GFRAL GDNF family receptor alpha like O GDNF family receptor alpha-like|IVFI9356 20121230 -9606 389404 RPL9P18 - RPL9_6_709 HGNC:36954 6 6q12 ribosomal protein L9 pseudogene 18 pseudo RPL9P18 ribosomal protein L9 pseudogene 18 O - 20121230 -9606 389405 LOC389405 RP11-307F22.3 - - 6 6q12 notch 5-like protein-coding - - - EGF-like-domain, multiple 10 20120511 -9606 389416 BDH2P1 - DHRS6P1|bA758C21.1 HGNC:21476 6 6q16.2 3-hydroxybutyrate dehydrogenase, type 2 pseudogene 1 pseudo BDH2P1 3-hydroxybutyrate dehydrogenase, type 2 pseudogene 1 O - 20121230 -9606 389421 LIN28B RP3-522O2.2 CSDD2 HGNC:32207|MIM:611044|Ensembl:ENSG00000187772|HPRD:13366|Vega:OTTHUMG00000015290 6 6q21 lin-28 homolog B (C. elegans) protein-coding LIN28B lin-28 homolog B (C. elegans) O Lin-28.2|lin-28B|protein lin-28 homolog B 20121230 -9606 389422 C6orf183 RP11-487F23.3 bA487F23.3 HGNC:21562 6 6q21 chromosome 6 open reading frame 183 protein-coding C6orf183 chromosome 6 open reading frame 183 O transmembrane protein FLJ37396 20121230 -9606 389424 PA2G4P5 - PA2G4L2 HGNC:32218 6 6q21 proliferation-associated 2G4 pseudogene 5 pseudo PA2G4P5 proliferation-associated 2G4 pseudogene 5 O - 20121230 -9606 389428 RPL5P18 - RPL5_11_750 HGNC:36640 6 6q22.33 ribosomal protein L5 pseudogene 18 pseudo RPL5P18 ribosomal protein L5 pseudogene 18 O - 20121230 -9606 389432 SAMD5 RP5-875H10.1 dJ875H10.1 HGNC:21180|Ensembl:ENSG00000203727|Vega:OTTHUMG00000015767 6 6q24.3 sterile alpha motif domain containing 5 protein-coding SAMD5 sterile alpha motif domain containing 5 O SAM domain containing 1|SAM domain-containing protein 5|sterile alpha motif domain-containing protein 5 20121230 -9606 389434 IYD - C6orf71|DEHAL1|TDH4|dJ422F24.1 HGNC:21071|MIM:612025|Ensembl:ENSG00000009765|HPRD:16668|Vega:OTTHUMG00000016347 6 6q25.1 iodotyrosine deiodinase protein-coding IYD iodotyrosine deiodinase O IYD-1|iodotyrosine dehalogenase 1 20121230 -9606 389435 RPL27AP6 hCG_21078 RPL27A_4_770 HGNC:35977 6 6q25.2 ribosomal protein L27a pseudogene 6 pseudo RPL27AP6 ribosomal protein L27a pseudogene 6 O - 20121230 -9606 389458 LOC389458 - - HPRD:14212 7 7p22.1 uncharacterized LOC389458 miscRNA - - - - 20121230 -9606 389465 LOC389465 - - - 7 7p21.3 Sjogren syndrome antigen B pseudogene pseudo - - - - 20121230 -9606 389472 RPS26P32 - RPS26|RPS26_13_792 HGNC:35753 7 7p15.3 ribosomal protein S26 pseudogene 32 pseudo RPS26P32 ribosomal protein S26 pseudogene 32 O - 20121230 -9606 389473 LOC389473 - - - 7 7p15.3 chromosome 5 open reading frame 13 pseudogene pseudo - - - - 20121230 -9606 389493 NUPR1L - - HGNC:44164|Ensembl:ENSG00000185290|Vega:OTTHUMG00000156224 7 7p11.2 nuclear protein, transcriptional regulator, 1-like protein-coding NUPR1L nuclear protein, transcriptional regulator, 1-like O nuclear transcriptional regulator 1-like protein 20121230 -9606 389517 SPDYE8P - - HGNC:33771 7 7q11.23 speedy homolog E8 (Xenopus laevis), pseudogene pseudo SPDYE8P speedy homolog E8 (Xenopus laevis), pseudogene O - 20121230 -9606 389523 GATSL1 - - HGNC:37072|Ensembl:ENSG00000183086|Vega:OTTHUMG00000156202 7 7q11.23 GATS protein-like 1 protein-coding GATSL1 GATS protein-like 1 O GATS-like protein 1 20121230 -9606 389524 GTF2IRD2B - - HGNC:33125|MIM:608900|Ensembl:ENSG00000174428|HPRD:12327|Vega:OTTHUMG00000156015 7 7q11.23 GTF2I repeat domain containing 2B protein-coding GTF2IRD2B GTF2I repeat domain containing 2B O GTF2I repeat domain-containing protein 2B|GTF2IRD2 beta|general transcription factor 2 I repeat domain-containing 2 beta|general transcription factor II-I repeat domain-containing protein 2B|transcription factor GTF2IRD2-beta 20121230 -9606 389537 OR7E38P - OR7E76|OST127 HGNC:8411 7 7q21.3 olfactory receptor, family 7, subfamily E, member 38 pseudogene pseudo OR7E38P olfactory receptor, family 7, subfamily E, member 38 pseudogene O - 20121230 -9606 389538 MGC72080 - - - 7 7q21.3 MGC72080 pseudogene pseudo - - - - 20121230 -9606 389541 LAMTOR4 - C7orf59 HGNC:33772|Ensembl:ENSG00000188186|HPRD:17380|Vega:OTTHUMG00000154854 7 7q22.1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 protein-coding LAMTOR4 late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 O UPF0539 protein C7orf59 20121230 -9606 389549 FEZF1 - FEZ|ZNF312B HGNC:22788|MIM:613301|Ensembl:ENSG00000128610|HPRD:18614|Vega:OTTHUMG00000157091 7 7q31.32 FEZ family zinc finger 1 protein-coding FEZF1 FEZ family zinc finger 1 O fez family zinc finger protein 1|zinc finger protein 312B 20121230 -9606 389558 FAM180A UNQ1940/PRO4423 UNQ1940 HGNC:33773|Ensembl:ENSG00000189320|HPRD:15613|Vega:OTTHUMG00000155537 7 7q33 family with sequence similarity 180, member A protein-coding FAM180A family with sequence similarity 180, member A O HWKM1940|protein FAM180A 20121230 -9606 389599 STRADBP1 tcag7.875 ALS2CR2P1|STLK6ps1 HGNC:22478 7 7q36.1 STE20-related kinase adaptor beta pseudogene 1 pseudo STRADBP1 STE20-related kinase adaptor beta pseudogene 1 O - 20121230 -9606 389602 LOC389602 tcag7.1275 - - 7 7q36.3 uncharacterized LOC389602 unknown - - - - 20121230 -9606 389607 LOC389607 - - HPRD:18394 8 8p23.3 uncharacterized LOC389607 unknown - - - - 20121230 -9606 389610 XKR5 UNQ2754/PRO6493 HARL2754|UNQ2754|XRG5A|XRG5BM HGNC:20782|HPRD:18308 8 8p23.1 XK, Kell blood group complex subunit-related family, member 5 protein-coding XKR5 XK, Kell blood group complex subunit-related family, member 5 O X Kell blood group precursor-related family, member 5|XK-related protein 5|XK-related protein 5a 20121230 -9606 389611 FAM90A3P - FAM90A3 HGNC:32251|MIM:613042 8 8p23.1 family with sequence similarity 90, member A3, pseudogene pseudo FAM90A3P family with sequence similarity 90, member A3, pseudogene O - 20121209 -9606 389616 OR7E125P - PJCG6 HGNC:15098 8 8p23.1 olfactory receptor, family 7, subfamily E, member 125 pseudogene pseudo OR7E125P olfactory receptor, family 7, subfamily E, member 125 pseudogene O - 20121230 -9606 389618 FAM90A6P - - HGNC:32254 8 8p23.1 family with sequence similarity 90, member A6 pseudogene pseudo FAM90A6P family with sequence similarity 90, member A6, pseudogene O - 20121209 -9606 389626 OR7E161P - - HGNC:31234 8 8p23.1 olfactory receptor, family 7, subfamily E, member 161 pseudogene pseudo OR7E161P olfactory receptor, family 7, subfamily E, member 161 pseudogene O - 20121230 -9606 389630 FAM90A15P - FAM90A15 HGNC:32263|MIM:613051 8 8p23.1 putative protein FAM90A15 pseudo FAM90A15P family with sequence similarity 90, member A15, pseudogene O - 20121209 -9606 389631 ZNF705C - ZNF705CP HGNC:32283 8 8p23.1 zinc finger protein 705C, pseudogene pseudo ZNF705C zinc finger protein 705C, pseudogene O - 20121230 -9606 389633 FAM90A25P - - HGNC:32246 8 8p23.1 family with sequence similarity 90, member A7 pseudogene pseudo FAM90A25P family with sequence similarity 90, member A25, pseudogene O - 20121230 -9606 389634 LOC389634 - - HPRD:18395 12 12p13.31 uncharacterized LOC389634 miscRNA - - - - 20121230 -9606 389641 LOC389641 - - - 8 8p21.3 uncharacterized LOC389641 miscRNA - - - - 20121230 -9606 389643 NUGGC HMFN0672 C8orf80|SLIP-GC HGNC:33550|Ensembl:ENSG00000189233|Vega:OTTHUMG00000155970 8 8p21.1 nuclear GTPase, germinal center associated protein-coding NUGGC nuclear GTPase, germinal center associated O GTPase SLIP-GC|nuclear GTPase SLIP-GC|speckled-like pattern in the germinal center 20121230 -9606 389644 RPL5P22 - RPL5_12_886 HGNC:35695 8 8p21.1 ribosomal protein L5 pseudogene 22 pseudo RPL5P22 ribosomal protein L5 pseudogene 22 O - 20121230 -9606 389649 C8orf86 - - HGNC:33774|Ensembl:ENSG00000196166|HPRD:13474|Vega:OTTHUMG00000163992 8 8p11.22 chromosome 8 open reading frame 86 protein-coding C8orf86 chromosome 8 open reading frame 86 O uncharacterized protein C8orf86 20121230 -9606 389652 ASNSP1 - ASNSL1 HGNC:754 8 8q11.1 asparagine synthetase pseudogene 1 pseudo ASNSP1 asparagine synthetase pseudogene 1 O - 20121230 -9606 389655 RPL29P19 - RPL29_7_901 HGNC:35508 8 8q11.21 ribosomal protein L29 pseudogene 19 pseudo RPL29P19 ribosomal protein L29 pseudogene 19 O - 20121230 -9606 389658 FAM150A UNQ9433/PRO34745 UNQ9433 HGNC:33775|Ensembl:ENSG00000196711|HPRD:15623|Vega:OTTHUMG00000164256 8 8q11.23 family with sequence similarity 150, member A protein-coding FAM150A family with sequence similarity 150, member A O RPLK9433|protein FAM150A 20121230 -9606 389662 SEPT10P1 - DKFZP564M1416 HGNC:40018 8 8q12.1 septin 10 pseudogene 1 pseudo SEPT10P1 septin 10 pseudogene 1 O - 20121230 -9606 389668 XKR9 - XRG9 HGNC:20937|Ensembl:ENSG00000221947|HPRD:18309|Vega:OTTHUMG00000164431 8 8q13.3 XK, Kell blood group complex subunit-related family, member 9 protein-coding XKR9 XK, Kell blood group complex subunit-related family, member 9 O X Kell blood group precursor-related family, member 9|XK-related protein 9 20121230 -9606 389672 RPSAP47 hCG_1984468 RPSA_19_921 HGNC:36162 8 8q21.13 ribosomal protein SA pseudogene 47 pseudo RPSAP47 ribosomal protein SA pseudogene 47 O - 20121230 -9606 389674 HNRNPA1P4 - HNRPA1P4 HGNC:32234 8 8q21.13 heterogeneous nuclear ribonucleoprotein A1 pseudogene 4 pseudo HNRNPA1P4 heterogeneous nuclear ribonucleoprotein A1 pseudogene 4 O - 20121230 -9606 389676 C8orf87 - - HGNC:42974|Ensembl:ENSG00000254318|Vega:OTTHUMG00000164196 8 8q22.1 chromosome 8 open reading frame 87 protein-coding C8orf87 chromosome 8 open reading frame 87 O uncharacterized protein C8orf87 20121230 -9606 389677 RBM12B - MGC:33837 HGNC:32310|Ensembl:ENSG00000183808|HPRD:14213|Vega:OTTHUMG00000164317 8 8q22.1 RNA binding motif protein 12B protein-coding RBM12B RNA binding motif protein 12B O RNA-binding motif protein 12B|RNA-binding protein 12B 20121230 -9606 389690 MROH5 - - HGNC:42976|Ensembl:ENSG00000226807|HPRD:13480|Vega:OTTHUMG00000155944 8 8q24.3 maestro heat-like repeat family member 5 protein-coding MROH5 maestro heat-like repeat family member 5 O uncharacterized protein LOC389690 20121230 -9606 389692 MAFA - RIPE3b1|hMafA HGNC:23145|MIM:610303|Ensembl:ENSG00000182759|HPRD:14346|Vega:OTTHUMG00000165037 8 8q24.3 v-maf musculoaponeurotic fibrosarcoma oncogene homolog A (avian) protein-coding MAFA v-maf musculoaponeurotic fibrosarcoma oncogene homolog A (avian) O pancreatic beta-cell-specific transcriptional activator|transcription factor MafA|transcription factor RIPE3b1 20121230 -9606 389705 LOC389705 - - - 9 9p22.3 chromosome 4 open reading frame 27 pseudogene pseudo - - - - 20121230 -9606 389715 FAM205B RP11-251H13.2 C9orf144 HGNC:24504 9 9p13.2 transmembrane protein C9orf144B pseudogene pseudo FAM205B family with sequence similarity 205, member B O - 20121230 -9606 389727 LOC389727 - - - 9 9p12 FK506 binding protein 4, 59kDa pseudogene pseudo - - - - 20121209 -9606 389730 SPATA31A6 RP11-366N18.1 FAM75A6 HGNC:32006|Ensembl:ENSG00000185775|Vega:OTTHUMG00000013224 9 9p11.2 SPATA31 subfamily A, member 6 protein-coding SPATA31A6 SPATA31 subfamily A, member 6 O family with sequence similarity 75, member A6|protein FAM75A6 20121230 -9606 389740 GPR116P1 - - HGNC:32922 9 9q13 G protein-coupled receptor 116 pseudogene 1 pseudo GPR116P1 G protein-coupled receptor 116 pseudogene 1 O - 20121230 -9606 389741 MGC21881 - - HPRD:17520 9 9q21.11 uncharacterized locus MGC21881 miscRNA - - - - 20121209 -9606 389747 MEP1AP3 - - HGNC:39137 9 9p12 meprin A, alpha pseudogene 3 pseudo MEP1AP3 meprin A, alpha pseudogene 3 O - 20121230 -9606 389756 AQP7P2 - - HGNC:32049 9 9q21.11 aquaporin 7 pseudogene 2 pseudo AQP7P2 aquaporin 7 pseudogene 2 O - 20121230 -9606 389761 SPATA31D4 - FAM75D4 HGNC:38601 9 9q21.32 SPATA31 subfamily D, member 4 protein-coding SPATA31D4 SPATA31 subfamily D, member 4 O FAM75-like protein FLJ43859|family with sequence similarity 75, member D4|putative protein FAM75D4 20121230 -9606 389762 SPATA31D3 - FAM75D3 HGNC:38603 9 9q21.32 SPATA31 subfamily D, member 3 protein-coding SPATA31D3 SPATA31 subfamily D, member 3 O FAM75-like protein FLJ44082|Putative FAM75-like protein FLJ44082|family with sequence similarity 75, member D3|putative protein FAM75D3 20121230 -9606 389763 SPATA31D1 - FAM75D1 HGNC:37283|Ensembl:ENSG00000214929|HPRD:13531|Vega:OTTHUMG00000169122 9 9q21.32 SPATA31 subfamily D, member 1 protein-coding SPATA31D1 SPATA31 subfamily D, member 1 O FAM75-like protein FLJ46321|family with sequence similarity 75, member D1|protein FAM75D1 20121230 -9606 389765 LOC389765 - - - 9 9q21.33 kinesin family member 27 pseudogene pseudo - - - - 20121230 -9606 389766 C9orf153 - bA507D14.1 HGNC:31456|Ensembl:ENSG00000187753|HPRD:16677|Vega:OTTHUMG00000020134 9 9q21.33 chromosome 9 open reading frame 153 protein-coding C9orf153 chromosome 9 open reading frame 153 O uncharacterized protein C9orf153 20121230 -9606 389768 LOC389768 - - - 9 9q22.1 potassium channel tetramerisation domain containing 1 pseudogene pseudo - - - - 20121230 -9606 389787 LOC389787 - - - 9 9q33.1 tumor protein, translationally-controlled 1 pseudogene pseudo - - - - 20121230 -9606 389791 LOC389791 - - HPRD:18396 9 9q34.11 uncharacterized LOC389791 miscRNA - - - - 20121230 -9606 389792 IER5L - bA247A12.2 HGNC:23679|Ensembl:ENSG00000188483|HPRD:17128|Vega:OTTHUMG00000020773 9 9q34.11 immediate early response 5-like protein-coding IER5L immediate early response 5-like O immediate early response gene 5-like protein 20121230 -9606 389799 C9orf171 RP11-738I14.8 - HGNC:33776|Ensembl:ENSG00000188523|HPRD:13522|Vega:OTTHUMG00000131684 9 9q34.13 chromosome 9 open reading frame 171 protein-coding C9orf171 chromosome 9 open reading frame 171 O uncharacterized protein C9orf171 20121230 -9606 389812 LCN15 RP11-216L13.5 PRO6093|UNQ2541 HGNC:33777|Ensembl:ENSG00000177984|HPRD:15614|Vega:OTTHUMG00000020943 9 9q34.3 lipocalin 15 protein-coding LCN15 lipocalin 15 O MSFL2541|lipocalin-15 20121230 -9606 389813 C9orf172 - - HGNC:37284|Ensembl:ENSG00000232434 9 9q34.3 chromosome 9 open reading frame 172 protein-coding C9orf172 chromosome 9 open reading frame 172 O uncharacterized protein C9orf172 20121230 -9606 389816 LRRC26 RP11-350O14.10-001 CAPC|bA350O14.10 HGNC:31409|MIM:613505|Ensembl:ENSG00000184709|HPRD:18397|Vega:OTTHUMG00000020980 9 9q34.3 leucine rich repeat containing 26 protein-coding LRRC26 leucine rich repeat containing 26 O BK channel auxilliary gamma subunit LRRC26|cytokeratin associated protein|cytokeratin-associated protein in cancer|leucine-rich repeat-containing protein 26 20121230 -9606 389827 TMEM8C RP13-388O5.1 TMEM226 HGNC:33778|Ensembl:ENSG00000187616|Vega:OTTHUMG00000131685 9 9q34.2 transmembrane protein 8C protein-coding TMEM8C transmembrane protein 8C O transmembrane protein 226 20121230 -9606 389831 LOC389831 - - - 7 - uncharacterized LOC389831 protein-coding - - - uncharacterized protein LOC389831 20121230 -9606 389834 LOC389834 - - HPRD:18398 4 - ankyrin repeat domain 57 pseudogene pseudo - - - - 20121230 -9606 389840 MAP3K15 RP11-723P2.3 ASK3|bA723P2.3 HGNC:31689|MIM:300820|Ensembl:ENSG00000180815|HPRD:14359|Vega:OTTHUMG00000022724 X Xp22.12 mitogen-activated protein kinase kinase kinase 15 protein-coding MAP3K15 mitogen-activated protein kinase kinase kinase 15 O MAPK/ERK kinase kinase 15|MEK kinase 15|MEKK 15|apoptosis signal-regulating kinase 3 20121230 -9606 389842 LOC389842 - - - X Xp21.3 RAN binding protein 1 pseudogene pseudo - - - - 20121230 -9606 389844 FTH1P19 - FTHL19 HGNC:33525 X Xp21.1 ferritin, heavy polypeptide 1 pseudogene 19 pseudo FTH1P19 ferritin, heavy polypeptide 1 pseudogene 19 O - 20121230 -9606 389849 GAPDHP65 RP11-75A9.2 GAPDHL10|GAPDL10 HGNC:4143 X Xp11.3 glyceraldehyde 3 phosphate dehydrogenase pseudogene 65 pseudo GAPDHP65 glyceraldehyde 3 phosphate dehydrogenase pseudogene 65 O - 20121230 -9606 389852 SPACA5 RP11-38O23.2 LYC5|LYZL5|SLLP2|UNQ6288|dJ54B20.3 HGNC:31353|MIM:300593|Ensembl:ENSG00000171489|HPRD:10159|Vega:OTTHUMG00000021459 X Xp11.23 sperm acrosome associated 5 protein-coding SPACA5 sperm acrosome associated 5 O PNPK6288|SLLP-X|Sperm Lysozyme-Like Protein 2|lysozyme-like protein 5|sperm acrosome-associated protein 5|sperm-specific lysozyme-like protein X 20121230 -9606 389856 USP27X - USP22L|USP27 HGNC:13486 X Xp11.23 ubiquitin specific peptidase 27, X-linked protein-coding USP27X ubiquitin specific peptidase 27, X-linked O X-linked ubiquitin carboxyl-terminal hydrolase 27|deubiquitinating enzyme 27|ubiquitin carboxyl-terminal hydrolase 27|ubiquitin specific protease 27, X chromosome|ubiquitin thioesterase 27|ubiquitin thiolesterase 27|ubiquitin-specific-processing protease 27 20121230 -9606 389857 CENPVP1 - CENPVL1|PRR6L1 HGNC:31851 X Xp11.22 centromere protein V pseudogene 1 pseudo CENPVP1 centromere protein V pseudogene 1 O - 20121230 -9606 389860 PAGE2B RP11-266I3.3 CT16.5|GAGEE3|PAGE-2B HGNC:31805|Ensembl:ENSG00000238269|HPRD:18616|Vega:OTTHUMG00000021645 X Xp11.21 P antigen family, member 2B protein-coding PAGE2B P antigen family, member 2B O G antigen, family E, 3|prostate-associated gene 2B protein|putative G antigen family E member 3 20121230 -9606 389866 SERBP1P1 - SERBP1P HGNC:32247 X Xq13.1 SERPINE1 mRNA binding protein 1 pseudogene 1 pseudo SERBP1P1 SERPINE1 mRNA binding protein 1 pseudogene 1 O - 20121230 -9606 389873 SEPHS1P4 - - HGNC:42169 X Xq13.2 selenophosphate synthetase 1 pseudogene 4 pseudo SEPHS1P4 selenophosphate synthetase 1 pseudogene 4 O - 20121230 -9606 389874 ZCCHC13 - CNBP2|ZNF9L HGNC:31749|Ensembl:ENSG00000187969|HPRD:10050|Vega:OTTHUMG00000021851 X Xq13.2 zinc finger, CCHC domain containing 13 protein-coding ZCCHC13 zinc finger, CCHC domain containing 13 O zinc finger CCHC domain-containing protein 13 20121230 -9606 389884 PA2G4P1 - PA2G4P HGNC:8551 X Xq24 proliferation-associated 2G4 pseudogene 1 pseudo PA2G4P1 proliferation-associated 2G4 pseudogene 1 O - 20121230 -9606 389895 LOC389895 - - - X Xq27.1 chromosome 16 open reading frame 72-like protein-coding - - - uncharacterized protein LOC389895 20121230 -9606 389898 UBE2NL RP3-526F5.1 Li174 HGNC:31710|Ensembl:ENSG00000102069|HPRD:18504|Vega:OTTHUMG00000022586 X Xq27.3 ubiquitin-conjugating enzyme E2N-like protein-coding UBE2NL ubiquitin-conjugating enzyme E2N-like O epididymis tissue protein Li 174|putative ubiquitin-conjugating enzyme E2 N-like 20121230 -9606 389901 LOC389901 - - - X Xq28 X-ray repair cross-complementing protein 6-like pseudo - - - - 20121209 -9606 389903 CSAG3 hCG_1740678 CSAG3A|CT24.2 HGNC:26237|HPRD:14214 X Xq28 CSAG family, member 3 protein-coding CSAG3 CSAG family, member 3 O CSAG family, member 3A|cancer/testis antigen 24.2|chondrosarcoma-associated gene 2/3 protein|taxol-resistant-associated gene 3 protein 20121230 -9606 389906 LOC389906 - - - X Xp22.33 zinc finger protein 839 pseudogene pseudo - - - - 20121230 -9606 389908 LOC389908 - - - X Xp22.33 uncharacterized LOC389908 protein-coding - - - - 20111025 -9606 389932 AKR1C6P - TAKR HGNC:44680 10 10p15.1 aldo-keto reductase family 1, member C6, pseudogene pseudo AKR1C6P aldo-keto reductase family 1, member C6, pseudogene O - 20121230 -9606 389935 PRPF38AP1 - - HGNC:44692 10 10p14 PRP38 domain containing A pseudogene 1 pseudo PRPF38AP1 PRP38 domain containing A pseudogene 1 O - 20121230 -9606 389941 C1QL3 - C1QTNF13|C1ql|CTRP13|K100 HGNC:19359|Ensembl:ENSG00000165985|HPRD:16632|Vega:OTTHUMG00000017738 10 10p13 complement component 1, q subcomponent-like 3 protein-coding C1QL3 complement component 1, q subcomponent-like 3 O complement C1q-like protein 3 20121230 -9606 389948 MKNK2P1 - - HGNC:44970 10 10p11.21 MAP kinase interacting serine/threonine kinase 2 pseudogene 1 pseudo MKNK2P1 MAP kinase interacting serine/threonine kinase 2 pseudogene 1 O - 20121230 -9606 389963 SLC9A3P4 RP11-98I6.2 - HGNC:33493 10 10q11.22 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 pseudogene 4 pseudo SLC9A3P4 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 pseudogene 4 O - 20121230 -9606 389970 GAPDHP21 - - HGNC:37773 10 10q21.1 glyceraldehyde 3 phosphate dehydrogenase pseudogene 21 pseudo GAPDHP21 glyceraldehyde 3 phosphate dehydrogenase pseudogene 21 O - 20121230 -9606 389976 LOC389976 - - - 10 10q22.1 actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 389990 LOC389990 - - - 10 10q23.1 replication protein A2, 32kDa pseudogene pseudo - - - - 20121230 -9606 389992 RPL7P34 - RPL7_14_1078 HGNC:36181 10 10q23.31 ribosomal protein L7 pseudogene 34 pseudo RPL7P34 ribosomal protein L7 pseudogene 34 O - 20121230 -9606 389997 LOC389997 - - - 10 10q23.33 nuclear import 7 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 390003 GUCY2GP RP11-324O2.1 GUCY2G HGNC:31863 10 10q25.2 guanylate cyclase 2G, pseudogene pseudo GUCY2GP guanylate cyclase 2G, pseudogene O - 20121230 -9606 390006 PPIAP19 RP11-108K1.2 bA108K1.2 HGNC:31663 10 10q25.3 peptidylprolyl isomerase A (cyclophilin A) pseudogene 19 pseudo PPIAP19 peptidylprolyl isomerase A (cyclophilin A) pseudogene 19 O - 20121230 -9606 390007 TOMM22P5 - - HGNC:38741 10 10q26.11 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 5 pseudo TOMM22P5 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 5 O - 20121230 -9606 390010 NKX1-2 - C10orf121|NKX-1.1|bB238F13.2 HGNC:31652|Ensembl:ENSG00000229544|Vega:OTTHUMG00000019211 10 10q26.13 NK1 homeobox 2 protein-coding NKX1-2 NK1 homeobox 2 O NK1 transcription factor related, locus 2|NK1 transcription factor-related protein 2|homeobox protein SAX-1 20121230 -9606 390012 OR6L1P - - HGNC:15124 10 10q26.3 olfactory receptor, family 6, subfamily L, member 1 pseudogene pseudo OR6L1P olfactory receptor, family 6, subfamily L, member 1 pseudogene O - 20121230 -9606 390028 OR4F2P - HS191N21|OR4F2|S191N21|hs6M1-11 HGNC:8299 11 11p15.5 olfactory receptor, family 4, subfamily F, member 2 pseudogene pseudo OR4F2P olfactory receptor, family 4, subfamily F, member 2 pseudogene O - 20121230 -9606 390029 LOC390029 - - - 11 11p15.5 actin, beta pseudogene pseudo - - - - 20121230 -9606 390030 OR55B1P - OR55B2P|OR55C1P HGNC:15241 11 11p15.4 olfactory receptor, family 55, subfamily B, member 1 pseudogene pseudo OR55B1P olfactory receptor, family 55, subfamily B, member 1 pseudogene O - 20121230 -9606 390031 SSU72P2 - - HGNC:43621 11 11p15.4 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 2 pseudo SSU72P2 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 390033 SSU72P7 - - HGNC:43626 11 11p15.4 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 7 pseudo SSU72P7 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 7 O - 20121230 -9606 390034 OR51R1P - - HGNC:15203 11 11p15.4 olfactory receptor, family 51, subfamily R, member 1 pseudogene pseudo OR51R1P olfactory receptor, family 51, subfamily R, member 1 pseudogene O - 20121230 -9606 390035 OR52K3P - - HGNC:15224 11 11p15.4 olfactory receptor, family 52, subfamily K, member 3 pseudogene pseudo OR52K3P olfactory receptor, family 52, subfamily K, member 3 pseudogene O - 20121230 -9606 390036 OR52K1 - OR11-8 HGNC:15222|Ensembl:ENSG00000196778|HPRD:15018|Vega:OTTHUMG00000165705 11 11p15.4 olfactory receptor, family 52, subfamily K, member 1 protein-coding OR52K1 olfactory receptor, family 52, subfamily K, member 1 O olfactory receptor 52K1|olfactory receptor OR11-8 20121230 -9606 390037 OR52I1 - OR11-13 HGNC:15220|Ensembl:ENSG00000232268|HPRD:15015|Vega:OTTHUMG00000165722 11 11p15.4 olfactory receptor, family 52, subfamily I, member 1 protein-coding OR52I1 olfactory receptor, family 52, subfamily I, member 1 O olfactory receptor 52I1|olfactory receptor OR11-13 20121230 -9606 390038 OR51D1 - OR11-14|OR51D1Q HGNC:15193|Ensembl:ENSG00000197428|HPRD:14995|Vega:OTTHUMG00000165724 11 11p15.4 olfactory receptor, family 51, subfamily D, member 1 protein-coding OR51D1 olfactory receptor, family 51, subfamily D, member 1 O olfactory receptor 51D1|olfactory receptor OR11-14 20121230 -9606 390039 OR51A9P - - HGNC:15190 11 11p15.4 olfactory receptor, family 51, subfamily A, member 9 pseudogene pseudo OR51A9P olfactory receptor, family 51, subfamily A, member 9 pseudogene O - 20121230 -9606 390040 OR51F5P - - HGNC:31283 11 11p15.4 olfactory receptor, family 51, subfamily F, member 5 pseudogene pseudo OR51F5P olfactory receptor, family 51, subfamily F, member 5 pseudogene O - 20121230 -9606 390041 OR51C4P - - HGNC:31280 11 11p15.4 olfactory receptor, family 51, subfamily C, member 4 pseudogene pseudo OR51C4P olfactory receptor, family 51, subfamily C, member 4 pseudogene O - 20121230 -9606 390043 OR51F3P - - HGNC:31281 11 11p15.4 olfactory receptor, family 51, subfamily F, member 3 pseudogene pseudo OR51F3P olfactory receptor, family 51, subfamily F, member 3 pseudogene O - 20121230 -9606 390044 OR51F4P - - HGNC:31282 11 11p15.4 olfactory receptor, family 51, subfamily F, member 4 pseudogene pseudo OR51F4P olfactory receptor, family 51, subfamily F, member 4 pseudogene O - 20121230 -9606 390046 OR51A6P - - HGNC:15187 11 11p15.4 olfactory receptor, family 51, subfamily A, member 6 pseudogene pseudo OR51A6P olfactory receptor, family 51, subfamily A, member 6 pseudogene O - 20121230 -9606 390053 OR52A4 - - HGNC:19579|HPRD:15004 11 11p15.4 olfactory receptor, family 52, subfamily A, member 4 pseudo OR52A4 olfactory receptor, family 52, subfamily A, member 4 O - 20121230 -9606 390054 OR52A5 - OR11-33 HGNC:19580|Ensembl:ENSG00000171944|HPRD:15005|Vega:OTTHUMG00000066616 11 11p15.4 olfactory receptor, family 52, subfamily A, member 5 protein-coding OR52A5 olfactory receptor, family 52, subfamily A, member 5 O odorant receptor HOR3'beta5|olfactory receptor 52A5|olfactory receptor OR11-33 20121230 -9606 390058 OR51B6 - HOR5'Beta6 HGNC:19600|Ensembl:ENSG00000176239|HPRD:14994|Vega:OTTHUMG00000066669 11 11p15.4 olfactory receptor, family 51, subfamily B, member 6 protein-coding OR51B6 olfactory receptor, family 51, subfamily B, member 6 O odorant receptor HOR5'beta6|olfactory receptor 51B5|olfactory receptor 51B6 20121230 -9606 390059 OR51M1 - HOR5'Beta7|OR11-40 HGNC:14847|Ensembl:ENSG00000184698|HPRD:15002|Vega:OTTHUMG00000066680 11 11p15.4 olfactory receptor, family 51, subfamily M, member 1 protein-coding OR51M1 olfactory receptor, family 51, subfamily M, member 1 O odorant receptor HOR5'beta7|olfactory receptor 51M1|olfactory receptor OR11-40 20121230 -9606 390061 OR51Q1 - - HGNC:14851|Ensembl:ENSG00000167360|HPRD:15003|Vega:OTTHUMG00000066896 11 11p15.4 olfactory receptor, family 51, subfamily Q, member 1 protein-coding OR51Q1 olfactory receptor, family 51, subfamily Q, member 1 O olfactory receptor 51Q1 20121230 -9606 390063 OR51I1 - - HGNC:15200|Ensembl:ENSG00000167359|HPRD:14999|Vega:OTTHUMG00000066908 11 11p15.4 olfactory receptor, family 51, subfamily I, member 1 protein-coding OR51I1 olfactory receptor, family 51, subfamily I, member 1 O HOR5'Beta11|odorant receptor HOR5'beta11|olfactory receptor 51I1|olfactory receptor OR11-39 20121230 -9606 390064 OR51I2 - OR11-38 HGNC:15201|Ensembl:ENSG00000187918|HPRD:15000|Vega:OTTHUMG00000066902 11 11p15.4 olfactory receptor, family 51, subfamily I, member 2 protein-coding OR51I2 olfactory receptor, family 51, subfamily I, member 2 O HOR5'Beta12|odorant receptor HOR5'beta12|olfactory receptor 51I2|olfactory receptor OR11-38 20121230 -9606 390066 OR52D1 - OR11-43 HGNC:15212|Ensembl:ENSG00000181609|HPRD:15008|Vega:OTTHUMG00000066895 11 11p15.4 olfactory receptor, family 52, subfamily D, member 1 protein-coding OR52D1 olfactory receptor, family 52, subfamily D, member 1 O HOR 5'Beta14|odorant receptor HOR5'beta14|olfactory receptor 52D1|olfactory receptor OR11-43 20121230 -9606 390067 OR52H1 - OR11-41|OR11-45 HGNC:15218|Ensembl:ENSG00000181616|HPRD:15014|Vega:OTTHUMG00000066909 11 11p15.4 olfactory receptor, family 52, subfamily H, member 1 protein-coding OR52H1 olfactory receptor, family 52, subfamily H, member 1 O olfactory receptor 52H1|olfactory receptor OR11-41 pseudogene|olfactory receptor OR11-45 20121230 -9606 390072 OR52N4 - OR11-64 HGNC:15230|Ensembl:ENSG00000181074|HPRD:15022|Vega:OTTHUMG00000066887 11 11p15.4 olfactory receptor, family 52, subfamily N, member 4 protein-coding OR52N4 olfactory receptor, family 52, subfamily N, member 4 O olfactory receptor 52N4|olfactory receptor OR11-64 20121230 -9606 390073 OR56B2P - OR11-63|OR56B2 HGNC:15246 11 11p15.4 olfactory receptor, family 56, subfamily B, member 2 pseudogene pseudo OR56B2P olfactory receptor, family 56, subfamily B, member 2 pseudogene O - 20121230 -9606 390075 OR52N5 - OR11-62|OR52N5Q HGNC:15231|Ensembl:ENSG00000181009|HPRD:15023|Vega:OTTHUMG00000168799 11 11p15.4 olfactory receptor, family 52, subfamily N, member 5 protein-coding OR52N5 olfactory receptor, family 52, subfamily N, member 5 O olfactory receptor 52N5|olfactory receptor OR11-62 20121230 -9606 390077 OR52N2 - OR11-57 HGNC:15228|Ensembl:ENSG00000180988|HPRD:17745|Vega:OTTHUMG00000168801 11 11p15.4 olfactory receptor, family 52, subfamily N, member 2 protein-coding OR52N2 olfactory receptor, family 52, subfamily N, member 2 O olfactory receptor 52N2|olfactory receptor OR11-57 20121230 -9606 390078 OR52E6 - OR11-58 HGNC:15215|Ensembl:ENSG00000205409|HPRD:15012|Vega:OTTHUMG00000168802 11 11p15.4 olfactory receptor, family 52, subfamily E, member 6 protein-coding OR52E6 olfactory receptor, family 52, subfamily E, member 6 O olfactory receptor 52E6|olfactory receptor OR11-58 20121230 -9606 390079 OR52E8 - OR11-54 HGNC:15217|Ensembl:ENSG00000183269|HPRD:15013|Vega:OTTHUMG00000168803 11 11p15.4 olfactory receptor, family 52, subfamily E, member 8 protein-coding OR52E8 olfactory receptor, family 52, subfamily E, member 8 O olfactory receptor 52E8|olfactory receptor OR11-54|olfactory receptor, family 52, subfamily E, member 8 pseudogene 20121230 -9606 390081 OR52E4 - OR11-55 HGNC:15213|Ensembl:ENSG00000180974|HPRD:15010|Vega:OTTHUMG00000168804 11 11p15.4 olfactory receptor, family 52, subfamily E, member 4 protein-coding OR52E4 olfactory receptor, family 52, subfamily E, member 4 O olfactory receptor 52E4|olfactory receptor OR11-55 20121230 -9606 390082 OR52E5 - OR11-56 HGNC:15214|HPRD:15011 11 11p15.4 olfactory receptor, family 52, subfamily E, member 5 pseudo OR52E5 olfactory receptor, family 52, subfamily E, member 5 O - 20121230 -9606 390083 OR56A3 - OR56A2P|OR56A3P|OR56A6 HGNC:14786|Ensembl:ENSG00000184478|HPRD:17747|Vega:OTTHUMG00000165373 11 11p15.4 olfactory receptor, family 56, subfamily A, member 3 protein-coding OR56A3 olfactory receptor, family 56, subfamily A, member 3 O olfactory receptor 56A3|olfactory receptor 56A6|olfactory receptor OR11-51|olfactory receptor, family 56, subfamily A, member 2 pseudogene|olfactory receptor, family 56, subfamily A, member 3 pseudogene|olfactory receptor, family 56, subfamily A, member 6 20121230 -9606 390084 OR56A5 - OR56A5P HGNC:14792 11 11p15.4 olfactory receptor, family 56, subfamily A, member 5 protein-coding OR56A5 olfactory receptor, family 56, subfamily A, member 5 O olfactory receptor 56A5|olfactory receptor, family 56, subfamily A, member 5 pseudogene 20121230 -9606 390091 OR10AB1P - - HGNC:14804 11 11p15.4 olfactory receptor, family 10, subfamily AB, member 1 pseudogene pseudo OR10AB1P olfactory receptor, family 10, subfamily AB, member 1 pseudogene O - 20121230 -9606 390093 OR10A6 - OR11-96 HGNC:15132|Ensembl:ENSG00000175393|HPRD:14882|Vega:OTTHUMG00000165671 11 11p15.4 olfactory receptor, family 10, subfamily A, member 6 protein-coding OR10A6 olfactory receptor, family 10, subfamily A, member 6 O olfactory receptor 10A6|olfactory receptor OR11-96 20121230 -9606 390098 LOC390098 - - - 11 11p15.1 MAS-related GPR, member X1 pseudogene pseudo - - - - 20121230 -9606 390099 LOC390099 - - - 11 11p15.1 MAS-related GPR, member X3 pseudogene pseudo - - - - 20121230 -9606 390101 LOC390101 - - - 11 11p15.1 MAS-related GPR, member X1 pseudogene pseudo - - - - 20121230 -9606 390102 PCNAP4 - - HGNC:43737 11 11p15.1 proliferating cell nuclear antigen pseudogene 4 pseudo PCNAP4 proliferating cell nuclear antigen pseudogene 4 O - 20121230 -9606 390107 RPS24P15 - RPS24_5_1135 HGNC:35665 11 11p13 ribosomal protein S24 pseudogene 15 pseudo RPS24P15 ribosomal protein S24 pseudogene 15 O - 20121230 -9606 390110 ACCSL - - HGNC:34391|Ensembl:ENSG00000205126|Vega:OTTHUMG00000166426 11 11p11.2 1-aminocyclopropane-1-carboxylate synthase homolog (Arabidopsis)(non-functional)-like protein-coding ACCSL 1-aminocyclopropane-1-carboxylate synthase homolog (Arabidopsis)(non-functional)-like O 1-aminocyclopropane-1-carboxylate synthase-like protein 2|ACC synthase-like protein 2 20121230 -9606 390113 OR4X1 - OR11-104 HGNC:14854|Ensembl:ENSG00000176567|HPRD:14989|Vega:OTTHUMG00000165301 11 11p11.2 olfactory receptor, family 4, subfamily X, member 1 protein-coding OR4X1 olfactory receptor, family 4, subfamily X, member 1 O olfactory receptor 4X1|olfactory receptor OR11-104 20121230 -9606 390116 OR4A40P - - HGNC:31259 11 11p11.2 olfactory receptor, family 4, subfamily A, member 40 pseudogene pseudo OR4A40P olfactory receptor, family 4, subfamily A, member 40 pseudogene O - 20121230 -9606 390117 OR4A43P - - HGNC:31262 11 11p11.2 olfactory receptor, family 4, subfamily A, member 43 pseudogene pseudo OR4A43P olfactory receptor, family 4, subfamily A, member 43 pseudogene O - 20121230 -9606 390131 OR4A6P - - HGNC:15163 11 11p11.12 olfactory receptor, family 4, subfamily A, member 6 pseudogene pseudo OR4A6P olfactory receptor, family 4, subfamily A, member 6 pseudogene O - 20121230 -9606 390133 OR4A2P - - HGNC:15159 11 11p11.12 olfactory receptor, family 4, subfamily A, member 2 pseudogene pseudo OR4A2P olfactory receptor, family 4, subfamily A, member 2 pseudogene O - 20121230 -9606 390134 OR4A4P - OR4A4 HGNC:15161 11 11p11.12 olfactory receptor, family 4, subfamily A, member 4 pseudogene pseudo OR4A4P olfactory receptor, family 4, subfamily A, member 4 pseudogene O - 20121230 -9606 390136 OR4A11P - - HGNC:15148 11 11q11 olfactory receptor, family 4, subfamily A, member 11 pseudogene pseudo OR4A11P olfactory receptor, family 4, subfamily A, member 11 pseudogene O - 20121230 -9606 390137 OR4A9P - - HGNC:15166 11 11q11 olfactory receptor, family 4, subfamily A, member 9 pseudogene pseudo OR4A9P olfactory receptor, family 4, subfamily A, member 9 pseudogene O - 20121230 -9606 390138 OR4A10P - OR4A25P HGNC:15147 11 11q11 olfactory receptor, family 4, subfamily A, member 10 pseudogene pseudo OR4A10P olfactory receptor, family 4, subfamily A, member 10 pseudogene O - 20121230 -9606 390139 OR4A17P - OR4A22P HGNC:15154 11 11q11 olfactory receptor, family 4, subfamily A, member 17 pseudogene pseudo OR4A17P olfactory receptor, family 4, subfamily A, member 17 pseudogene O - 20121230 -9606 390142 OR5D13 - - HGNC:15280|Ensembl:ENSG00000198877|HPRD:15040|Vega:OTTHUMG00000166807 11 11q11 olfactory receptor, family 5, subfamily D, member 13 protein-coding OR5D13 olfactory receptor, family 5, subfamily D, member 13 O olfactory receptor 5D13|olfactory receptor OR11-142|olfactory receptor OR11-148 20121230 -9606 390144 OR5D16 - OR11-154 HGNC:15283|Ensembl:ENSG00000205029|HPRD:17757|Vega:OTTHUMG00000154233 11 11q11 olfactory receptor, family 5, subfamily D, member 16 protein-coding OR5D16 olfactory receptor, family 5, subfamily D, member 16 O olfactory receptor 5D16|olfactory receptor OR11-154 20121230 -9606 390148 OR5W2 - OR5W2P|OR5W3P HGNC:15299|Ensembl:ENSG00000187612|HPRD:15054|Vega:OTTHUMG00000166818 11 11q11 olfactory receptor, family 5, subfamily W, member 2 protein-coding OR5W2 olfactory receptor, family 5, subfamily W, member 2 O olfactory receptor 5W2|olfactory receptor 5W3|olfactory receptor OR11-155|olfactory receptor, family 5, subfamily W, member 3 pseudogene 20121230 -9606 390151 OR8H2 - OR11-171 HGNC:15308|Ensembl:ENSG00000181767|HPRD:15083|Vega:OTTHUMG00000166832 11 11q12.1 olfactory receptor, family 8, subfamily H, member 2 protein-coding OR8H2 olfactory receptor, family 8, subfamily H, member 2 O olfactory receptor 8H2|olfactory receptor OR11-171 20121230 -9606 390152 OR8H3 - OR11-172 HGNC:15309|Ensembl:ENSG00000181761|HPRD:17792|Vega:OTTHUMG00000166833 11 11q12.1 olfactory receptor, family 8, subfamily H, member 3 protein-coding OR8H3 olfactory receptor, family 8, subfamily H, member 3 O olfactory receptor 8H3|olfactory receptor OR11-172 20121230 -9606 390154 OR5T3 - OR11-178|OR5T3Q HGNC:15297|Ensembl:ENSG00000172489|HPRD:15052|Vega:OTTHUMG00000166852 11 11q12.1 olfactory receptor, family 5, subfamily T, member 3 protein-coding OR5T3 olfactory receptor, family 5, subfamily T, member 3 O olfactory receptor 5T3|olfactory receptor OR11-178 20121230 -9606 390155 OR5T1 - OR11-179|OR5T1P HGNC:14821|Ensembl:ENSG00000181698|HPRD:15050|Vega:OTTHUMG00000166853 11 11q12.1 olfactory receptor, family 5, subfamily T, member 1 protein-coding OR5T1 olfactory receptor, family 5, subfamily T, member 1 O olfactory receptor 5T1|olfactory receptor OR11-179|olfactory receptor, family 5, subfamily T, member 1 pseudogene 20121230 -9606 390157 OR8K1 - OR11-182|OR8N1P HGNC:14831|Ensembl:ENSG00000150261|HPRD:15086|Vega:OTTHUMG00000166858 11 11q12.1 olfactory receptor, family 8, subfamily K, member 1 protein-coding OR8K1 olfactory receptor, family 8, subfamily K, member 1 O olfactory receptor 8K1|olfactory receptor OR11-182|olfactory receptor, family 8, subfamily N, member 1 pseudogene 20121230 -9606 390158 RPL5P29 - RPL5_15_1144 HGNC:36335 11 11q12.1 ribosomal protein L5 pseudogene 29 pseudo RPL5P29 ribosomal protein L5 pseudogene 29 O - 20121230 -9606 390162 OR5M9 - OR11-190 HGNC:15294|Ensembl:ENSG00000150269|HPRD:15048|Vega:OTTHUMG00000166874 11 11q12.1 olfactory receptor, family 5, subfamily M, member 9 protein-coding OR5M9 olfactory receptor, family 5, subfamily M, member 9 O olfactory receptor 5M9|olfactory receptor OR11-190 20121230 -9606 390166 OR5M5P - - HGNC:14810 11 11q12.1 olfactory receptor, family 5, subfamily M, member 5 pseudogene pseudo OR5M5P olfactory receptor, family 5, subfamily M, member 5 pseudogene O - 20121230 -9606 390167 OR5M10 - OR11-207 HGNC:15290|Ensembl:ENSG00000254834|HPRD:15047|Vega:OTTHUMG00000166862 11 11q12.1 olfactory receptor, family 5, subfamily M, member 10 protein-coding OR5M10 olfactory receptor, family 5, subfamily M, member 10 O olfactory receptor 5M10|olfactory receptor OR11-207 20121230 -9606 390168 OR5M1 - OR11-208|OST050 HGNC:8352|Ensembl:ENSG00000255012|HPRD:17765|Vega:OTTHUMG00000166863 11 11q12.1 olfactory receptor, family 5, subfamily M, member 1 protein-coding OR5M1 olfactory receptor, family 5, subfamily M, member 1 O olfactory receptor 5M1|olfactory receptor OR11-208|seven transmembrane helix receptor 20121230 -9606 390174 OR9G1 - OR9G5 HGNC:15319|Ensembl:ENSG00000174914|HPRD:15089|Vega:OTTHUMG00000167112 11 11q12.1 olfactory receptor, family 9, subfamily G, member 1 protein-coding OR9G1 olfactory receptor, family 9, subfamily G, member 1 O olfactory receptor 9G1|olfactory receptor 9G5|olfactory receptor OR11-114|olfactory receptor OR11-210|olfactory receptor, family 9, subfamily G, member 5 20121230 -9606 390181 OR5AK2 - - HGNC:15251|Ensembl:ENSG00000181273|HPRD:15031|Vega:OTTHUMG00000167019 11 11q12.1 olfactory receptor, family 5, subfamily AK, member 2 protein-coding OR5AK2 olfactory receptor, family 5, subfamily AK, member 2 O olfactory receptor 5AK2 20121230 -9606 390183 RPS4XP13 - RPS4P13|RPS4X_3_1145 HGNC:36522 11 11q12.1 ribosomal protein S4X pseudogene 13 pseudo RPS4XP13 ribosomal protein S4X pseudogene 13 O - 20121230 -9606 390186 OR5B10P - OR13-34|OR13-64|OR13-67|OR5B10|OR5B11|OR5B11P|OR5B18P|OR5B4P HGNC:8320 11 11q12.1 olfactory receptor, family 5, subfamily B, member 10 pseudogene pseudo OR5B10P olfactory receptor, family 5, subfamily B, member 10 pseudogene O - 20121230 -9606 390190 OR5B2 - OR11-240|OST073 HGNC:8323|Ensembl:ENSG00000172365|HPRD:15037|Vega:OTTHUMG00000167517 11 11q12.1 olfactory receptor, family 5, subfamily B, member 2 protein-coding OR5B2 olfactory receptor, family 5, subfamily B, member 2 O olfactory receptor 5B2|olfactory receptor OR11-240 20121230 -9606 390191 OR5B12 - OR11-241|OR5B12P|OR5B16|OST743 HGNC:15432|Ensembl:ENSG00000172362|HPRD:15035|Vega:OTTHUMG00000167543 11 11q12.1 olfactory receptor, family 5, subfamily B, member 12 protein-coding OR5B12 olfactory receptor, family 5, subfamily B, member 12 O olfactory receptor 5B12|olfactory receptor 5B16|olfactory receptor OR11-241|olfactory receptor, family 5, subfamily B, member 12 pseudogene|olfactory receptor, family 5, subfamily B, member 16 20121230 -9606 390195 OR5AN1 - OR11-244 HGNC:15255|Ensembl:ENSG00000176495|HPRD:15032|Vega:OTTHUMG00000167337 11 11q12.1 olfactory receptor, family 5, subfamily AN, member 1 protein-coding OR5AN1 olfactory receptor, family 5, subfamily AN, member 1 O olfactory receptor 5AN1|olfactory receptor OR11-244 20121230 -9606 390197 OR4D10 - OR11-251|OR4D10P|OST711 HGNC:15173|Ensembl:ENSG00000254466|HPRD:14966|Vega:OTTHUMG00000167341 11 11q12.1 olfactory receptor, family 4, subfamily D, member 10 protein-coding OR4D10 olfactory receptor, family 4, subfamily D, member 10 O olfactory receptor 4D10|olfactory receptor OR11-251|olfactory receptor, family 4, subfamily D, member 10 pseudogene|seven transmembrane helix receptor 20121230 -9606 390199 OR4D9 - OR11-253 HGNC:15178|Ensembl:ENSG00000172742|HPRD:17728|Vega:OTTHUMG00000167343 11 11q12.1 olfactory receptor, family 4, subfamily D, member 9 protein-coding OR4D9 olfactory receptor, family 4, subfamily D, member 9 O olfactory receptor 4D9|olfactory receptor OR11-253|olfactory receptor, family 4, subfamily D, member 9 pseudogene 20121230 -9606 390201 OR10V1 - OR11-256 HGNC:15136|Ensembl:ENSG00000172289|HPRD:17676|Vega:OTTHUMG00000167406 11 11q12.1 olfactory receptor, family 10, subfamily V, member 1 protein-coding OR10V1 olfactory receptor, family 10, subfamily V, member 1 O olfactory receptor 10V1|olfactory receptor OR11-256 20121230 -9606 390203 LOC390203 - - - 11 11q12.1 steroid 5 alpha-reductase 3 pseudogene pseudo - - - - 20121230 -9606 390205 LRRC10B - - HGNC:37215|Ensembl:ENSG00000204950|Vega:OTTHUMG00000168178 11 11q12.2 leucine rich repeat containing 10B protein-coding LRRC10B leucine rich repeat containing 10B O LRRC10-like protein ENSP00000367315|leucine-rich repeat-containing protein 10B 20121230 -9606 390206 RPS2P37 - RPS2_14_1147 HGNC:36482 11 11q12.3 ribosomal protein S2 pseudogene 37 pseudo RPS2P37 ribosomal protein S2 pseudogene 37 O - 20121230 -9606 390211 KRT8P26 - - HGNC:33378 11 11q13.1 keratin 8 pseudogene 26 pseudo KRT8P26 keratin 8 pseudogene 26 O - 20121230 -9606 390212 GPR152 - PGR5 HGNC:23622|Ensembl:ENSG00000175514|HPRD:13599|Vega:OTTHUMG00000168032 11 11q13.2 G protein-coupled receptor 152 protein-coding GPR152 G protein-coupled receptor 152 O G protein-coupled receptor PGR5|probable G-protein coupled receptor 152 20121230 -9606 390213 DOC2GP - - HGNC:37962 11 11q13.2 double C2-like domains, gamma, pseudogene pseudo DOC2GP double C2-like domains, gamma, pseudogene O - 20121230 -9606 390215 OR7E145P - - HGNC:19618 11 11q13.2 olfactory receptor, family 7, subfamily E, member 145 pseudogene pseudo OR7E145P olfactory receptor, family 7, subfamily E, member 145 pseudogene O - 20121230 -9606 390218 IFITM9P - - HGNC:33972 11 11q13.3 interferon induced transmembrane protein 9 pseudogene pseudo IFITM9P interferon induced transmembrane protein 9 pseudogene O - 20121230 -9606 390221 FOLR1P1 - FOLR1P|KB-1 HGNC:3792 11 11q13.4 folate receptor 1 (adult) pseudogene 1 pseudo FOLR1P1 folate receptor 1 (adult) pseudogene 1 O - 20121230 -9606 390224 OR2AT2P - - HGNC:19619 11 11q13.4 olfactory receptor, family 2, subfamily AT, member 2 pseudogene pseudo OR2AT2P olfactory receptor, family 2, subfamily AT, member 2 pseudogene O - 20121230 -9606 390225 OR2AT1P - - HGNC:15145 11 11q13.4 olfactory receptor, family 2, subfamily AT, member 1 pseudogene pseudo OR2AT1P olfactory receptor, family 2, subfamily AT, member 1 pseudogene O - 20121230 -9606 390226 GUCY2EP - GC-E|GCD|GUCY2E HGNC:4690|MIM:601138 11 11q13.5 guanylate cyclase 2E, pseudogene pseudo GUCY2EP guanylate cyclase 2E, pseudogene O - 20121230 -9606 390228 RPL7AP54 - RPL7A_22_1161 HGNC:36264 11 11q14.1 ribosomal protein L7a pseudogene 54 pseudo RPL7AP54 ribosomal protein L7a pseudogene 54 O - 20121230 -9606 390231 TRIM77P - TRIM77 HGNC:34228 11 11q14.3 tripartite motif containing 77, pseudogene protein-coding TRIM77P tripartite motif containing 77, pseudogene O TRIM77-isoform|putative tripartite motif-containing protein 64D|putative tripartite motif-containing protein 77 20121230 -9606 390233 TRIM64FP - - HGNC:43976 2 2q11.1 tripartite motif containing 64F, pseudogene pseudo TRIM64FP tripartite motif containing 64F, pseudogene O - 20121230 -9606 390239 NDUFB11P1 - NDUFB11P HGNC:33980 11 11q14.3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 11, pseudogene 1 pseudo NDUFB11P1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 11, pseudogene 1 O - 20121230 -9606 390243 FOLR4 - Folbp3 HGNC:32565|Ensembl:ENSG00000183560|Vega:OTTHUMG00000167776 11 11q21 folate receptor 4, delta (putative) protein-coding FOLR4 folate receptor 4, delta (putative) O FR-delta|folate receptor 4 (delta) homolog|probable folate receptor delta 20121230 -9606 390245 KDM4E - JMJD2E|KDM4DL HGNC:37098|Ensembl:ENSG00000235268|Vega:OTTHUMG00000167858 11 11q21 lysine (K)-specific demethylase 4E protein-coding KDM4E lysine (K)-specific demethylase 4E O KDM4D-like protein|lysine-specific demethylase 4E 20121230 -9606 390250 LOC390250 - - - 11 11q22.3 polymerase (RNA) II (DNA directed) polypeptide E, 25kDa pseudogene pseudo - - - - 20121230 -9606 390251 LOC390251 - - - 11 11q23.2 SH3-domain GRB2-like 1 pseudogene pseudo - - - - 20121230 -9606 390255 LOC390255 - - - 11 11q23.3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39B pseudogene pseudo - - - - 20121230 -9606 390259 BSX - BSX1 HGNC:20450|MIM:611074|Ensembl:ENSG00000188909|Vega:OTTHUMG00000150247 11 11q24.1 brain-specific homeobox protein-coding BSX brain-specific homeobox O brain specific homeobox|brain-specific homeobox protein homolog 20121230 -9606 390260 OR6X1 - OR11-270 HGNC:14737|Ensembl:ENSG00000221931|HPRD:15070|Vega:OTTHUMG00000166011 11 11q24.1 olfactory receptor, family 6, subfamily X, member 1 protein-coding OR6X1 olfactory receptor, family 6, subfamily X, member 1 O olfactory receptor 6X1|olfactory receptor OR11-270 20121230 -9606 390261 OR6M1 - OR11-271 HGNC:14711|Ensembl:ENSG00000196099|HPRD:15065|Vega:OTTHUMG00000166012 11 11q24.1 olfactory receptor, family 6, subfamily M, member 1 protein-coding OR6M1 olfactory receptor, family 6, subfamily M, member 1 O olfactory receptor 6M1|olfactory receptor OR11-271|olfactory receptor, family 6, subfamily M, member 2 pseudogene 20121230 -9606 390264 OR10G4 - OR11-278 HGNC:14809|Ensembl:ENSG00000254737|HPRD:14889|Vega:OTTHUMG00000165966 11 11q24.1 olfactory receptor, family 10, subfamily G, member 4 protein-coding OR10G4 olfactory receptor, family 10, subfamily G, member 4 O olfactory receptor 10G4|olfactory receptor OR11-278 20121230 -9606 390265 OR10G7 - OR11-283 HGNC:14842|Ensembl:ENSG00000182634|HPRD:14890|Vega:OTTHUMG00000165969 11 11q24.2 olfactory receptor, family 10, subfamily G, member 7 protein-coding OR10G7 olfactory receptor, family 10, subfamily G, member 7 O olfactory receptor 10G7|olfactory receptor OR11-283 20121230 -9606 390266 OR10D4P - OR10D4|OR10D6P HGNC:14770 11 11q24.2 olfactory receptor, family 10, subfamily D, member 4 pseudogene pseudo OR10D4P olfactory receptor, family 10, subfamily D, member 4 pseudogene O - 20121230 -9606 390267 OR10N1P - - HGNC:14689 11 11q24.2 olfactory receptor, family 10, subfamily N, member 1 pseudogene pseudo OR10N1P olfactory receptor, family 10, subfamily N, member 1 pseudogene O - 20121230 -9606 390269 OR8F1P - - HGNC:14691 11 11q24.2 olfactory receptor, family 8, subfamily F, member 1 pseudogene pseudo OR8F1P olfactory receptor, family 8, subfamily F, member 1 pseudogene O - 20121230 -9606 390271 OR8B3 - OR11-311 HGNC:8472|Ensembl:ENSG00000196661|HPRD:15079|Vega:OTTHUMG00000165983 11 11q24.2 olfactory receptor, family 8, subfamily B, member 3 protein-coding OR8B3 olfactory receptor, family 8, subfamily B, member 3 O olfactory receptor 8B3|olfactory receptor OR11-311 20121230 -9606 390273 OR8A2P - - HGNC:15306 11 11q24.2 olfactory receptor, family 8, subfamily A, member 2 pseudogene pseudo OR8A2P olfactory receptor, family 8, subfamily A, member 2 pseudogene O - 20121230 -9606 390274 OR8B10P - - HGNC:14751 11 11q24.2 olfactory receptor, family 8, subfamily B, member 10 pseudogene pseudo OR8B10P olfactory receptor, family 8, subfamily B, member 10 pseudogene O - 20121230 -9606 390275 OR8A1 - OR11-318|OST025 HGNC:8469|Ensembl:ENSG00000196119|HPRD:15077|Vega:OTTHUMG00000165923 11 11q24.2 olfactory receptor, family 8, subfamily A, member 1 protein-coding OR8A1 olfactory receptor, family 8, subfamily A, member 1 O olfactory receptor 8A1|olfactory receptor OR11-318 20121230 -9606 390282 LOC390282 - - - 12 12p13.32 eukaryotic translation initiation factor 3, subunit F pseudogene pseudo - - - - 20121230 -9606 390283 RPL31P10 - RPL31_15_1198 HGNC:33180 12 12p13.31 ribosomal protein L31 pseudogene 10 pseudo RPL31P10 ribosomal protein L31 pseudogene 10 O - 20121230 -9606 390284 SRP14P1 - - HGNC:33181 12 12p13.31 signal recognition particle 14kDa (homologous Alu RNA binding protein) pseudogene 1 pseudo SRP14P1 signal recognition particle 14kDa (homologous Alu RNA binding protein) pseudogene 1 O - 20121230 -9606 390288 OR7E84P - OR7E54P|OST185 HGNC:14690 4 4p16.1 olfactory receptor, family 7, subfamily E, member 84 pseudogene pseudo OR7E84P olfactory receptor, family 7, subfamily E, member 84 pseudogene O - 20121230 -9606 390294 LOC390294 - - - 12 12p13.2 heterogeneous nuclear ribonucleoprotein A/B pseudogene pseudo - - - - 20121230 -9606 390297 PSMC1P8 - - HGNC:39783 12 12p12.3 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 8 pseudo PSMC1P8 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 8 O - 20121230 -9606 390298 LOC390298 - - - 12 12p12.3 translocase of inner mitochondrial membrane 17 homolog B (yeast) pseudogene pseudo - - - - 20121230 -9606 390301 ST13P9 - - HGNC:38744 12 12p11.1 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 9 pseudo ST13P9 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 9 O - 20121230 -9606 390306 LOC390306 - - - 12 12q12 ribosomal protein L7a pseudogene pseudo - - - - 20121230 -9606 390308 LOC390308 - - - 12 12q12 CDGSH iron sulfur domain 1 pseudogene pseudo - - - - 20121230 -9606 390311 LOC390311 - - - 12 12q13.11 prohibitin pseudogene pseudo - - - - 20121230 -9606 390313 OR5BS1P - OR5BS1 HGNC:19627 12 12q13.11 olfactory receptor, family 5, subfamily BS, member 1 pseudogene pseudo OR5BS1P olfactory receptor, family 5, subfamily BS, member 1 pseudogene O - 20121230 -9606 390314 LOC390314 - - - 12 12q13.12 chromosome 20 open reading frame 27 pseudogene pseudo - - - - 20121230 -9606 390318 OR10U1P - - HGNC:15332 12 12q13.2 olfactory receptor, family 10, subfamily U, member 1 pseudogene pseudo OR10U1P olfactory receptor, family 10, subfamily U, member 1 pseudogene O - 20121230 -9606 390320 OR6C5P - - HGNC:31292 12 12q13.2 olfactory receptor, family 6, subfamily C, member 5 pseudogene pseudo OR6C5P olfactory receptor, family 6, subfamily C, member 5 pseudogene O - 20121230 -9606 390321 OR6C1 - OST267 HGNC:8355|Ensembl:ENSG00000205330|HPRD:11416|Vega:OTTHUMG00000168102 12 12q13.2 olfactory receptor, family 6, subfamily C, member 1 protein-coding OR6C1 olfactory receptor, family 6, subfamily C, member 1 O olfactory receptor 6C1 20121230 -9606 390322 OR6C7P - - HGNC:31306 12 12q13.2 olfactory receptor, family 6, subfamily C, member 7 pseudogene pseudo OR6C7P olfactory receptor, family 6, subfamily C, member 7 pseudogene O - 20121230 -9606 390323 OR6C75 - - HGNC:31304|Ensembl:ENSG00000187857|HPRD:15061|Vega:OTTHUMG00000169886 12 12q13.2 olfactory receptor, family 6, subfamily C, member 75 protein-coding OR6C75 olfactory receptor, family 6, subfamily C, member 75 O olfactory receptor 6C75 20121230 -9606 390324 OR6C71P - - HGNC:31300 12 12q13.2 olfactory receptor, family 6, subfamily C, member 71 pseudogene pseudo OR6C71P olfactory receptor, family 6, subfamily C, member 71 pseudogene O - 20121230 -9606 390326 OR6C76 - - HGNC:31305|Ensembl:ENSG00000185821|HPRD:15062|Vega:OTTHUMG00000169956 12 12q13.2 olfactory receptor, family 6, subfamily C, member 76 protein-coding OR6C76 olfactory receptor, family 6, subfamily C, member 76 O olfactory receptor 6C76 20121230 -9606 390327 OR6C70 - - HGNC:31299|Ensembl:ENSG00000184954|HPRD:15059|Vega:OTTHUMG00000171127 12 12q13.2 olfactory receptor, family 6, subfamily C, member 70 protein-coding OR6C70 olfactory receptor, family 6, subfamily C, member 70 O olfactory receptor 6C70 20121230 -9606 390329 OR6U2P - OR6U1P HGNC:19631 12 12q13.2 olfactory receptor, family 6, subfamily U, member 2 pseudogene pseudo OR6U2P olfactory receptor, family 6, subfamily U, member 2 pseudogene O - 20121230 -9606 390332 LOC390332 - - - 12 12q13.3 retinol dehydrogenase 16 (all-trans) pseudogene pseudo - - - - 20121230 -9606 390340 PDCL3P7 - - HGNC:44508 12 12q14.3 phosducin-like 3 pseudogene 7 pseudo PDCL3P7 phosducin-like 3 pseudogene 7 O - 20121209 -9606 390345 RPL10P13 - - - 12 12q21.2 ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 390352 EEF1A1P33 - - HGNC:37911 12 12q23.1 eukaryotic translation elongation factor 1 alpha 1 pseudogene 33 pseudo EEF1A1P33 eukaryotic translation elongation factor 1 alpha 1 pseudogene 33 O - 20121230 -9606 390354 RPL18AP3 - RPL18A_6_1273|bcm182 HGNC:31387 12 12q23.3 ribosomal protein L18a pseudogene 3 pseudo RPL18AP3 ribosomal protein L18a pseudogene 3 O - 20121230 -9606 390358 LOC390358 - - - 12 12q23.3 ret finger protein-like 2 pseudogene pseudo - - - - 20121230 -9606 390363 CLIC1P1 - - HGNC:32691 12 12q24.31 chloride intracellular channel 1 pseudogene 1 pseudo CLIC1P1 chloride intracellular channel 1 pseudogene 1 O - 20121230 -9606 390378 PPIAP28 RP11-264J4.4 - HGNC:39902 13 13q12.11 peptidylprolyl isomerase A (cyclophilin A) pseudogene 28 pseudo PPIAP28 peptidylprolyl isomerase A (cyclophilin A) pseudogene 28 O - 20121230 -9606 390394 EIF4A1P5 RP11-421P11.6 - HGNC:37924 13 13q13.3 eukaryotic translation initiation factor 4A1 pseudogene 5 pseudo EIF4A1P5 eukaryotic translation initiation factor 4A1 pseudogene 5 O - 20121230 -9606 390402 AKR1B1P4 - ALDRL4 HGNC:423 13 13q14.13 aldo-keto reductase family 1, member B1 pseudogene 4 pseudo AKR1B1P4 aldo-keto reductase family 1, member B1 pseudogene 4 O - 20121230 -9606 390403 FAM206BP RP11-247M1.2 - HGNC:39851 13 13q14.13 family with sequence similarity 206, member B, pseudogene pseudo FAM206BP family with sequence similarity 206, member B, pseudogene O - 20121230 -9606 390407 EIF4A1P6 - - HGNC:37925 13 13q21.2 eukaryotic translation initiation factor 4A1 pseudogene 6 pseudo EIF4A1P6 eukaryotic translation initiation factor 4A1 pseudogene 6 O - 20121230 -9606 390411 NPM1P22 RP11-248N6.3 - HGNC:39679 13 13q21.32 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 22 pseudo NPM1P22 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 22 O - 20121230 -9606 390413 RPL7P44 - RPL7_17_1325 HGNC:36143 13 13q22.3 ribosomal protein L7 pseudogene 44 pseudo RPL7P44 ribosomal protein L7 pseudogene 44 O - 20121230 -9606 390415 CCT5P2 - CCT5-P1 HGNC:35139 13 13q31.1 chaperonin containing TCP1, subunit 5 (epsilon) pseudogene 2 pseudo CCT5P2 chaperonin containing TCP1, subunit 5 (epsilon) pseudogene 2 O - 20121230 -9606 390418 KRT18P27 - - HGNC:33396 13 13q31.3 keratin 18 pseudogene 27 pseudo KRT18P27 keratin 18 pseudogene 27 O - 20121230 -9606 390419 PPIAP23 RP11-430K10.1 - HGNC:39268 13 13q31.3 peptidylprolyl isomerase A (cyclophilin A) pseudogene 23 pseudo PPIAP23 peptidylprolyl isomerase A (cyclophilin A) pseudogene 23 O - 20121230 -9606 390421 GAPDHP22 RP11-122A8.1 - HGNC:37774 13 13q32.3 glyceraldehyde 3 phosphate dehydrogenase pseudogene 22 pseudo GAPDHP22 glyceraldehyde 3 phosphate dehydrogenase pseudogene 22 O - 20121230 -9606 390423 ARF4P3 - - HGNC:32380 13 13q32.3 ADP-ribosylation factor 4 pseudogene 3 pseudo ARF4P3 ADP-ribosylation factor 4 pseudogene 3 O - 20121230 -9606 390424 ATP5G1P5 - - HGNC:39508 13 13q33.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 5 pseudo ATP5G1P5 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 5 O - 20121230 -9606 390429 OR4N2 - OR14-13|OR14-8 HGNC:14742|Ensembl:ENSG00000176294|HPRD:17730|Vega:OTTHUMG00000170614 14 14q11.2 olfactory receptor, family 4, subfamily N, member 2 protein-coding OR4N2 olfactory receptor, family 4, subfamily N, member 2 O olfactory receptor 4N2|olfactory receptor OR14-13|olfactory receptor OR14-8 20121230 -9606 390431 OR4K2 - OR14-15 HGNC:14728|Ensembl:ENSG00000165762|HPRD:14980|Vega:OTTHUMG00000170624 14 14q11.2 olfactory receptor, family 4, subfamily K, member 2 protein-coding OR4K2 olfactory receptor, family 4, subfamily K, member 2 O olfactory receptor 4K2|olfactory receptor OR14-15 20121230 -9606 390432 OR4Q2 - OR4Q2P HGNC:15359 14 14q11.2 olfactory receptor, family 4, subfamily Q, member 2 (gene/pseudogene) pseudo OR4Q2 olfactory receptor, family 4, subfamily Q, member 2 (gene/pseudogene) O - 20121230 -9606 390433 OR4K13 - OR14-27 HGNC:15351|Ensembl:ENSG00000176253|HPRD:14976|Vega:OTTHUMG00000170781 14 14q11.2 olfactory receptor, family 4, subfamily K, member 13 protein-coding OR4K13 olfactory receptor, family 4, subfamily K, member 13 O olfactory receptor 4K13|olfactory receptor OR14-27 20121230 -9606 390434 OR4U1P - OR14-23 HGNC:15361 14 14q11.2 olfactory receptor, family 4, subfamily U, member 1 pseudogene pseudo OR4U1P olfactory receptor, family 4, subfamily U, member 1 pseudogene O - 20121230 -9606 390435 OR4T1P - - HGNC:15360 14 14q11.2 olfactory receptor, family 4, subfamily T, member 1 pseudogene pseudo OR4T1P olfactory receptor, family 4, subfamily T, member 1 pseudogene O - 20121230 -9606 390436 OR4K17 - OR14-29 HGNC:15355|Ensembl:ENSG00000176230|HPRD:14979|Vega:OTTHUMG00000170783 14 14q11.2 olfactory receptor, family 4, subfamily K, member 17 protein-coding OR4K17 olfactory receptor, family 4, subfamily K, member 17 O olfactory receptor 4K17|olfactory receptor OR14-29 20121230 -9606 390437 OR4N5 - - HGNC:15358|Ensembl:ENSG00000184394|HPRD:14985|Vega:OTTHUMG00000170784 14 14q11.2 olfactory receptor, family 4, subfamily N, member 5 protein-coding OR4N5 olfactory receptor, family 4, subfamily N, member 5 O olfactory receptor 4N5|olfactory receptor OR14-33 20121230 -9606 390438 OR11G1P - - HGNC:15345 14 14q11.2 olfactory receptor, family 11, subfamily G, member 1 pseudogene pseudo OR11G1P olfactory receptor, family 11, subfamily G, member 1 pseudogene O - 20121230 -9606 390439 OR11G2 - OR14-34 HGNC:15346|Ensembl:ENSG00000196832|HPRD:14900|Vega:OTTHUMG00000167700 14 14q11.2 olfactory receptor, family 11, subfamily G, member 2 protein-coding OR11G2 olfactory receptor, family 11, subfamily G, member 2 O olfactory receptor 11G2|olfactory receptor OR14-34 20121230 -9606 390440 OR11H5P - - HGNC:15348 14 14q11.2 olfactory receptor, family 11, subfamily H, member 5 pseudogene pseudo OR11H5P olfactory receptor, family 11, subfamily H, member 5 pseudogene O - 20121230 -9606 390441 OR11H7 - OR11H7P HGNC:15350 14 14q11.2 olfactory receptor, family 11, subfamily H, member 7 (gene/pseudogene) pseudo OR11H7 olfactory receptor, family 11, subfamily H, member 7 (gene/pseudogene) O - 20121230 -9606 390442 OR11H4 - OR14-36 HGNC:15347|Ensembl:ENSG00000176198|HPRD:14902|Vega:OTTHUMG00000170852 14 14q11.2 olfactory receptor, family 11, subfamily H, member 4 protein-coding OR11H4 olfactory receptor, family 11, subfamily H, member 4 O olfactory receptor 11H4|olfactory receptor OR14-36 20121230 -9606 390443 RNASE9 - HEL128|h461 HGNC:20673|MIM:614014|Ensembl:ENSG00000188655|HPRD:17983|Vega:OTTHUMG00000170989 14 14q11.2 ribonuclease, RNase A family, 9 (non-active) protein-coding RNASE9 ribonuclease, RNase A family, 9 (non-active) O inactive ribonuclease-like protein 9|ribonuclear enzyme|ribonuclease 9|ribonuclease-like protein 9 20121230 -9606 390445 OR5AU1 - OR14-38 HGNC:15362|Ensembl:ENSG00000169327|HPRD:15034|Vega:OTTHUMG00000170753 14 14q11.2 olfactory receptor, family 5, subfamily AU, member 1 protein-coding OR5AU1 olfactory receptor, family 5, subfamily AU, member 1 O olfactory receptor 5AU1|olfactory receptor OR14-38 20121230 -9606 390472 KRT8P2 - - HGNC:20282|Vega:OTTHUMG00000135122 14 14q21.2 keratin 8 pseudogene 2 pseudo KRT8P2 keratin 8 pseudogene 2 O - 20121230 -9606 390482 AKR1B1P5 - AKR1B1P HGNC:20002 14 14q23.1 aldo-keto reductase family 1, member B1 pseudogene 5 pseudo AKR1B1P5 aldo-keto reductase family 1, member B1 pseudogene 5 O - 20121230 -9606 390483 SALL4P7 - - HGNC:43900 14 14q23.1 sal-like 4 (Drosophila) pseudogene 7 pseudo SALL4P7 sal-like 4 (Drosophila) pseudogene 7 O - 20121230 -9606 390501 MPPE1P - - HGNC:20143 14 14q31.3 metallophosphoesterase 1 pseudogene pseudo MPPE1P metallophosphoesterase 1 pseudogene O - 20121230 -9606 390502 SERPINA2P - ARGS|ATR|PIL|SERPINA2|psiATR HGNC:8985|MIM:107410 14 14q32.13 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 2, pseudogene pseudo SERPINA2P serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 2, pseudogene O - 20121230 -9606 390503 ADIPOR1P2 - - HGNC:44911 14 14q32.13 adiponectin receptor 1 pseudogene 2 pseudo ADIPOR1P2 adiponectin receptor 1 pseudogene 2 O - 20121230 -9606 390530 IGHV1OR21-1 - - HGNC:38040|IMGT/GENE-DB:IGHV1OR21-1|Vega:OTTHUMG00000074130 21 21p11.2 immunoglobulin heavy variable 1/OR21-1 (non-functional) pseudo IGHV1OR21-1 immunoglobulin heavy variable 1/OR21-1 (non-functional) O - 20121230 -9606 390531 IGHV1OR15-9 - IGHV1OR159|VSIG7 HGNC:5569|IMGT/GENE-DB:IGHV1/OR15-9 15 15q11.1 immunoglobulin heavy variable 1/OR15-9 (non-functional) pseudo IGHV1OR15-9 immunoglobulin heavy variable 1/OR15-9 (non-functional) O - 20121230 -9606 390535 GOLGA8EP - GOLGA8E HGNC:32377|HPRD:17381 15 15q11.2 golgin A8 family, member E, pseudogene pseudo GOLGA8EP golgin A8 family, member E, pseudogene O - 20121230 -9606 390538 OR4M2 - OR15-3 HGNC:15373|Ensembl:ENSG00000182974|HPRD:14984|Vega:OTTHUMG00000171738 15 15q11.2 olfactory receptor, family 4, subfamily M, member 2 protein-coding OR4M2 olfactory receptor, family 4, subfamily M, member 2 O olfactory receptor 4M2|olfactory receptor OR15-3 20121230 -9606 390539 OR4N3P - OR15-2 HGNC:15374 15 15q11.2 olfactory receptor, family 4, subfamily N, member 3 pseudogene pseudo OR4N3P olfactory receptor, family 4, subfamily N, member 3 pseudogene O - 20121230 -9606 390560 DNM1DN4-1 - DNM1DN4.1 - 15 15q13.3 DNM1DN4.1 duplicon other - - - - 20100404 -9606 390561 HERC2P10 - - HGNC:39056 15 15q13.2 hect domain and RLD 2 pseudogene 10 pseudo HERC2P10 hect domain and RLD 2 pseudogene 10 O - 20121230 -9606 390572 PRELID1P4 - - HGNC:43889 15 15q14 PRELI domain containing 1 pseudogene 4 pseudo PRELID1P4 PRELI domain containing 1 pseudogene 4 O - 20121230 -9606 390576 RPS15P8 - RPS15_4_1425 HGNC:35847 15 15q14 ribosomal protein S15 pseudogene 8 pseudo RPS15P8 ribosomal protein S15 pseudogene 8 O - 20121230 -9606 390578 RPLP0P10 - RPLP0_5_1426 HGNC:35991 15 15q15.1 ribosomal protein, large, P0 pseudogene 10 pseudo RPLP0P10 ribosomal protein, large, P0 pseudogene 10 O - 20121230 -9606 390581 ATP5HP1 - HsT18164 HGNC:31021 15 15q15.2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit d, pseudogene 1 pseudo ATP5HP1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit d, pseudogene 1 O - 20121230 -9606 390586 LOC390586 - - - 15 15q21.3 hydroxyacyl-CoA dehydrogenase pseudogene pseudo - - - - 20121230 -9606 390594 KBTBD13 hCG_1645727 HCG1645727|NEM6 HGNC:37227|MIM:613727|Ensembl:ENSG00000234438|Vega:OTTHUMG00000172424 15 15q22.31 kelch repeat and BTB (POZ) domain containing 13 protein-coding KBTBD13 kelch repeat and BTB (POZ) domain containing 13 O kelch repeat and BTB domain-containing protein 13|nemaline myopathy type 6 20121230 -9606 390595 UBAP1L - UBAP-1L HGNC:40028|Ensembl:ENSG00000246922|Vega:OTTHUMG00000172425 15 15q22.31 ubiquitin associated protein 1-like protein-coding UBAP1L ubiquitin associated protein 1-like O ubiquitin-associated protein 1-like 20121230 -9606 390597 LETM1P1 - - HGNC:14649 15 15q22.31 leucine zipper-EF-hand containing transmembrane protein 1, pseudogene 1 pseudo LETM1P1 leucine zipper-EF-hand containing transmembrane protein 1, pseudogene 1 O - 20121230 -9606 390598 SKOR1 - CORL1|FUSSEL15|LBXCOR1 HGNC:21326|MIM:611273|Ensembl:ENSG00000188779|Vega:OTTHUMG00000170878 15 15q23 SKI family transcriptional corepressor 1 protein-coding SKOR1 SKI family transcriptional corepressor 1 O LBX1 corepressor 1|Lbxcor1 homolog|corepressor for LBX1|functional Smad-suppressing element on chromosome 15|functional smad suppressing element 15|fussel-15|ladybird homeobox corepressor 1|transcriptional corepressor CORL1 20121230 -9606 390600 LOC390600 - - - 15 15q23 cytokine induced apoptosis inhibitor 1 pseudogene pseudo - - - - 20121230 -9606 390601 KRT8P9 - - HGNC:33363 15 15q23 keratin 8 pseudogene 9 pseudo KRT8P9 keratin 8 pseudogene 9 O - 20121230 -9606 390610 KRT8P23 - - HGNC:33375 15 15q24.3 keratin 8 pseudogene 23 pseudo KRT8P23 keratin 8 pseudogene 23 O - 20121230 -9606 390612 RPL18P11 - RPL18_4_1455 HGNC:35742 15 15q25.1 ribosomal protein L18 pseudogene 11 pseudo RPL18P11 ribosomal protein L18 pseudogene 11 O - 20121230 -9606 390614 LOC390614 - - - 15 15q25.1 relaxin/insulin-like family peptide receptor 3 pseudogene pseudo - - - - 20121230 -9606 390616 ANKRD34C - - HGNC:33888|Ensembl:ENSG00000235711 15 15q25.1 ankyrin repeat domain 34C protein-coding ANKRD34C ankyrin repeat domain 34C O ankyrin repeat domain-containing protein 34C 20121230 -9606 390617 LOC390617 - - - 15 15q25.1 transcription factor Dp-1 pseudogene pseudo - - - - 20121230 -9606 390618 LOC390618 - - - 15 15q25.1 ribosomal protein L7-like 1 pseudogene pseudo - - - - 20121230 -9606 390627 LOC390627 - - - 15 15q25.2 chondroitin sulfate proteoglycan 4 pseudogene pseudo - - - - 20121230 -9606 390634 KRT18P47 - - HGNC:33417 15 15q26.1 keratin 18 pseudogene 47 pseudo KRT18P47 keratin 18 pseudogene 47 O - 20121230 -9606 390637 GDPGP1 - C15orf58|VTC2 HGNC:34360|Ensembl:ENSG00000183208|HPRD:18400|Vega:OTTHUMG00000172128 15 15q26.1 GDP-D-glucose phosphorylase 1 protein-coding GDPGP1 GDP-D-glucose phosphorylase 1 O GDP-D-glucose phosphorylase C15orf58 20121230 -9606 390638 LOC390638 - - - 15 15q26.1 golgin A2 pseudogene pseudo - - - - 20121230 -9606 390643 PGAM1P12 - - HGNC:42459 15 15q26.2 phosphoglycerate mutase 1 pseudogene 12 pseudo PGAM1P12 phosphoglycerate mutase 1 pseudogene 12 O - 20121230 -9606 390648 OR4F6 - OR15-15|OR4F12 HGNC:15372|Ensembl:ENSG00000184140|HPRD:11415|Vega:OTTHUMG00000172267 15 15q26.3 olfactory receptor, family 4, subfamily F, member 6 protein-coding OR4F6 olfactory receptor, family 4, subfamily F, member 6 O olfactory receptor 4F12|olfactory receptor 4F6|olfactory receptor OR15-15|olfactory receptor, family 4, subfamily F, member 12 20121230 -9606 390649 OR4F15 - - HGNC:15078|Ensembl:ENSG00000182854|HPRD:14968|Vega:OTTHUMG00000172268 15 15q26.3 olfactory receptor, family 4, subfamily F, member 15 protein-coding OR4F15 olfactory receptor, family 4, subfamily F, member 15 O olfactory receptor 4F15|olfactory receptor OR15-14 20121230 -9606 390650 OR4F14P - OR4F14 HGNC:15077 15 15q26.3 olfactory receptor, family 4, subfamily F, member 14 pseudogene pseudo OR4F14P olfactory receptor, family 4, subfamily F, member 14 pseudogene O - 20121230 -9606 390651 OR4F13P - GPCRLTM7 HGNC:15076 15 15q26.3 olfactory receptor, family 4, subfamily F, member 13 pseudogene pseudo OR4F13P olfactory receptor, family 4, subfamily F, member 13 pseudogene O - 20121230 -9606 390652 OR4F28P - - HGNC:31229 15 15q26.3 olfactory receptor, family 4, subfamily F, member 28 pseudogene pseudo OR4F28P olfactory receptor, family 4, subfamily F, member 28 pseudogene O - 20121230 -9606 390660 LOC390660 - - - 15 - FLJ00317 protein pseudo - - - - 20121230 -9606 390664 C1QTNF8 UNQ5829/PRO19648 CTRP8|UNQ5829 HGNC:31374|MIM:614147|Ensembl:ENSG00000184471|HPRD:12719|Vega:OTTHUMG00000167756 16 16p13.3 C1q and tumor necrosis factor related protein 8 protein-coding C1QTNF8 C1q and tumor necrosis factor related protein 8 O C1q/TNF-related protein 8|complement C1q tumor necrosis factor-related protein 8 20121230 -9606 390667 PTX4 - C16orf38 HGNC:14171|MIM:613442|Ensembl:ENSG00000251692|HPRD:18401 16 16p13.3 pentraxin 4, long protein-coding PTX4 pentraxin 4, long O neuronal pentraxin-like protein C16orf38|pentraxin-4 20121230 -9606 390671 RPL18P12 - RPL18_8_1468 HGNC:36115 16 16p13.3 ribosomal protein L18 pseudogene 12 pseudo RPL18P12 ribosomal protein L18 pseudogene 12 O - 20121230 -9606 390688 CDC37P1 - A-761H5.2 HGNC:34406 16 16p11.2 cell division cycle 37 homolog (S. cerevisiae) pseudogene 1 pseudo CDC37P1 cell division cycle 37 homolog (S. cerevisiae) pseudogene 1 O - 20121209 -9606 390705 LOC390705 - - - 16 16p11.2 protein phosphatase 2, regulatory subunit B'', beta pseudogene pseudo - - - - 20121230 -9606 390714 LOC390714 - - - 16 16p11.2 immunoglobulin heavy chain variable region other - - - - 20121230 -9606 390729 RPL10P14 - - HGNC:43897 16 16q12.1 ribosomal protein L10 pseudogene 14 pseudo RPL10P14 ribosomal protein L10 pseudogene 14 O - 20121230 -9606 390730 LOC390730 - - - 16 16q12.2 prohibitin pseudogene pseudo - - - - 20121230 -9606 390732 CES1P2 - - - 16 16q12.2 carboxylesterase 1 pseudogene pseudo - - - - 20121230 -9606 390735 RPS15AP34 hCG_1642987 RPS15A_22_1489 HGNC:35609 16 16q21 ribosomal protein S15a pseudogene 34 pseudo RPS15AP34 ribosomal protein S15a pseudogene 34 O - 20121230 -9606 390739 LOC390739 - - - 16 16q22.2 c-myc binding protein pseudogene pseudo - - - - 20121230 -9606 390748 PABPN1L - PABPNL1|ePABP2 HGNC:37237|Ensembl:ENSG00000205022|Vega:OTTHUMG00000170127 16 16q24.3 poly(A) binding protein, nuclear 1-like (cytoplasmic) protein-coding PABPN1L poly(A) binding protein, nuclear 1-like (cytoplasmic) O ePABP-2|embryonic poly(A) binding protein 2|embryonic poly(A)-binding protein 2|embryonic poly(A)-binding protein type II|embryonic polyadenylate-binding protein 2|poly(A)-binding protein nuclear-like 1 20121230 -9606 390756 OR3A4P - OLFRA05|OLFRA06|OR17-13|OR17-16|OR17-24|OR17-25|OR24|OR25|OR3A4|OR3A5P HGNC:15510|HPRD:14957 17 17p13.3 olfactory receptor, family 3, subfamily A, member 4 pseudogene pseudo OR3A4P olfactory receptor, family 3, subfamily A, member 4 pseudogene O - 20121230 -9606 390760 LOC390760 - - - 17 17p13.1 protein phosphatase inhibitor 2-like protein-coding - - - - 20120511 -9606 390766 RNASEH1P2 - - HGNC:18715 17 17p11.2 ribonuclease H1 pseudogene 2 pseudo RNASEH1P2 ribonuclease H1 pseudogene 2 O - 20121230 -9606 390788 CCL3P1 - CCL3L2|G0S19-3|LD78gamma|SCYA3L2 HGNC:10629|MIM:609467 17 17q12 chemokine (C-C motif) ligand 3 pseudogene 1 pseudo CCL3P1 chemokine (C-C motif) ligand 3 pseudogene 1 O - 20121209 -9606 390790 ARL5C - ARL12 HGNC:31111|Ensembl:ENSG00000141748|Vega:OTTHUMG00000179048 17 17q12 ADP-ribosylation factor-like 5C protein-coding ARL5C ADP-ribosylation factor-like 5C O ADP-ribosylation factor-like 12|ADP-ribosylation factor-like protein 12|putative ADP-ribosylation factor-like protein 5C 20121230 -9606 390791 LOC390791 - - - 17 17q21.2 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 390792 KRT39 - CK-39|K39|KA35 HGNC:32971|Ensembl:ENSG00000196859|HPRD:13750|Vega:OTTHUMG00000133424 17 17q21.2 keratin 39 protein-coding KRT39 keratin 39 O cytokeratin-39|keratin, type I cytoskeletal 39|keratin-39|type I hair keratin KA35 20121230 -9606 390800 RPL7L1P5 - - HGNC:39487 17 17q21.31 ribosomal protein L7-like 1 pseudogene 5 pseudo RPL7L1P5 ribosomal protein L7-like 1 pseudogene 5 O - 20121230 -9606 390806 LOC390806 - - - 17 17q23.3 family with sequence similarity 136, member A pseudogene pseudo - - - - 20121230 -9606 390811 POLR3KP2 - - HGNC:39578 17 17q25.1 polymerase (RNA) III (DNA directed) polypeptide K, 12.3 kDa pseudogene 2 pseudo POLR3KP2 polymerase (RNA) III (DNA directed) polypeptide K, 12.3 kDa pseudogene 2 O - 20121230 -9606 390816 THA1P - GLY1 HGNC:18004 17 17q25.3 threonine aldolase 1, pseudogene pseudo THA1P threonine aldolase 1, pseudogene O - 20121230 -9606 390831 PMM2P1 - - HGNC:9116 18 18p11.22 phosphomannomutase 2 pseudogene 1 pseudo PMM2P1 phosphomannomutase 2 pseudogene 1 O - 20121230 -9606 390834 FEM1AP2 - - HGNC:39830 18 18p11.21 fem-1 homolog a (C. elegans) pseudogene 2 pseudo FEM1AP2 fem-1 homolog a (C. elegans) pseudogene 2 O - 20121230 -9606 390836 OR4K8P - OR18-1|OR4K9P HGNC:14787 18 18p11.21 olfactory receptor, family 4, subfamily K, member 8 pseudogene pseudo OR4K8P olfactory receptor, family 4, subfamily K, member 8 pseudogene O - 20121230 -9606 390843 LOC390843 - - - 18 18q11.2 eukaryotic translation initiation factor 4A3 pseudogene pseudo - - - - 20121230 -9606 390844 ARIH2P1 - ARIH2P HGNC:31732 18 18q12.1 ariadne homolog 2 pseudogene 1 pseudo ARIH2P1 ariadne homolog 2 pseudogene 1 O - 20121230 -9606 390846 LOC390846 hCG_1642947 - - 18 18q12.1 golgi SNAP receptor complex member 2 pseudogene pseudo - - - - 20121230 -9606 390848 RPS15AP35 - RPS15A_23_1592 HGNC:36768 18 18q12.1 ribosomal protein S15a pseudogene 35 pseudo RPS15AP35 ribosomal protein S15a pseudogene 35 O - 20121230 -9606 390856 RPL29P32 - RPL29_21_1603 HGNC:35834 18 18q21.2 ribosomal protein L29 pseudogene 32 pseudo RPL29P32 ribosomal protein L29 pseudogene 32 O - 20121230 -9606 390857 RPSAP57 - RPSA_29_1604 HGNC:35889 18 18q21.2 ribosomal protein SA pseudogene 57 pseudo RPSAP57 ribosomal protein SA pseudogene 57 O - 20121230 -9606 390858 OACYLP hCG_33730 ACYL3P HGNC:44362 18 18q21.32 O-acyltransferase like, pseudogene pseudo OACYLP O-acyltransferase like, pseudogene O - 20121230 -9606 390860 LOC390860 - - - 18 18q21.32 ribosomal protein, large, P0 pseudogene pseudo - - - - 20121230 -9606 390872 OR4F8P - OR4F20P|OR4F9P HGNC:15395 19 19p13.3 olfactory receptor, family 4, subfamily F, member 8 pseudogene pseudo OR4F8P olfactory receptor, family 4, subfamily F, member 8 pseudogene O - 20121230 -9606 390874 ONECUT3 - OC3 HGNC:13399|MIM:611294|Ensembl:ENSG00000205922|Vega:OTTHUMG00000172429 19 19p13.3 one cut homeobox 3 protein-coding ONECUT3 one cut homeobox 3 O OC-3|one cut domain family member 3|one cut domain, family member 3|transcription factor ONECUT-3 20121230 -9606 390876 LOC390876 - - - 19 19p13.3 ribosomal protein L35 pseudogene pseudo - - - - 20121230 -9606 390877 LOC390877 - - - 19 19p13.3 adenylate kinase isoenzyme 1-like protein-coding - - - - 20121209 -9606 390882 OR7G2 - OR19-6|OST260 HGNC:8466|Ensembl:ENSG00000170923|HPRD:15075|Vega:OTTHUMG00000179931 19 19p13.2 olfactory receptor, family 7, subfamily G, member 2 protein-coding OR7G2 olfactory receptor, family 7, subfamily G, member 2 O OR19-13|olfactory receptor 19-13|olfactory receptor 7G2|olfactory receptor OR19-6 20121230 -9606 390883 OR7G3 - OST085 HGNC:8467|Ensembl:ENSG00000170920|HPRD:15076|Vega:OTTHUMG00000165520 19 19p13.2 olfactory receptor, family 7, subfamily G, member 3 protein-coding OR7G3 olfactory receptor, family 7, subfamily G, member 3 O olfactory receptor 7G3|olfactory receptor OR19-9 20121230 -9606 390885 OR7E18P - HSTPCR26P|OR19-14|OR7E61|OR7E98P|TPCR26 HGNC:8389 19 19p13.2 olfactory receptor, family 7, subfamily E, member 18 pseudogene pseudo OR7E18P olfactory receptor, family 7, subfamily E, member 18 pseudogene O - 20121230 -9606 390886 OR7H1P - OR7H1 HGNC:8468 19 19p13.2 olfactory receptor, family 7, subfamily H, member 1 pseudogene pseudo OR7H1P olfactory receptor, family 7, subfamily H, member 1 pseudogene O - 20121230 -9606 390892 OR7A10 - BC85395_3|OR19-18 HGNC:8356|Ensembl:ENSG00000127515|HPRD:17780 19 19p13.12 olfactory receptor, family 7, subfamily A, member 10 protein-coding OR7A10 olfactory receptor, family 7, subfamily A, member 10 O OST027|olfactory receptor 7A10|olfactory receptor OR19-18 20121230 -9606 390894 OR7A2P - OLF4p|OR19-18|OR7A2|OR7A7|hg1003 HGNC:8370 19 19p13.12 olfactory receptor, family 7, subfamily A, member 2 pseudogene pseudo OR7A2P olfactory receptor, family 7, subfamily A, member 2 pseudogene O - 20121230 -9606 390895 OR7A1P - OLF4p|OR19-3|OR7A6P|hg513 HGNC:8364 19 19p13.12 olfactory receptor, family 7, subfamily A, member 1 pseudogene pseudo OR7A1P olfactory receptor, family 7, subfamily A, member 1 pseudogene O - 20121230 -9606 390904 KRT18P40 - - HGNC:33409 19 19p12 keratin 18 pseudogene 40 pseudo KRT18P40 keratin 18 pseudogene 40 O - 20121230 -9606 390916 NUDT19 - RP2 HGNC:32036|Ensembl:ENSG00000213965|Vega:OTTHUMG00000180228 19 19q13.11 nudix (nucleoside diphosphate linked moiety X)-type motif 19 protein-coding NUDT19 nudix (nucleoside diphosphate linked moiety X)-type motif 19 O nucleoside diphosphate-linked moiety X motif 19, mitochondrial|nudix motif 19 20121230 -9606 390924 EEF1A1P7 - EEF1AL5 HGNC:3202 19 19q13.12 eukaryotic translation elongation factor 1 alpha 1 pseudogene 7 pseudo EEF1A1P7 eukaryotic translation elongation factor 1 alpha 1 pseudogene 7 O - 20121230 -9606 390927 ZNF793 - - HGNC:33115|Ensembl:ENSG00000188227|HPRD:18402|Vega:OTTHUMG00000182003 19 19q13.12 zinc finger protein 793 protein-coding ZNF793 zinc finger protein 793 O - 20121230 -9606 390928 PAPL - - MIM:610490|Ensembl:ENSG00000183760|HPRD:13361 19 19q13.2 iron/zinc purple acid phosphatase-like protein protein-coding - - - purple acid phosphatase long form 20121230 -9606 390933 LOC390933 - - - 19 19q13.2 protein associated with topoisomerase II homolog 1 (yeast) pseudogene pseudo - - - - 20121230 -9606 390937 LOC390937 - - - 19 19q13.2 Ets2 repressor factor-like protein-coding - - - - 20121216 -9606 390940 PINLYP - - HGNC:44206|Ensembl:ENSG00000234465|Vega:OTTHUMG00000175560 19 19q13.31 phospholipase A2 inhibitor and LY6/PLAUR domain containing protein-coding PINLYP phospholipase A2 inhibitor and LY6/PLAUR domain containing O phospholipase A2 inhibitor and Ly6/PLAUR domain-containing protein 20121230 -9606 390948 LOC390948 - - - 19 19q13.32 heterogeneous nuclear ribonucleoprotein M pseudogene pseudo - - - - 20121230 -9606 390949 RPL23AP80 - RPL23A_35_1661 HGNC:36956 19 19q13.33 ribosomal protein L23a pseudogene 80 pseudo RPL23AP80 ribosomal protein L23a pseudogene 80 O - 20121230 -9606 390956 LOC390956 - - - 19 19q13.41 peptidyl-prolyl cis-trans isomerase A-like protein-coding - - - - 20121209 -9606 390963 ZNF818P - ZNF818 HGNC:33265|HPRD:13537 19 19q13.42 zinc finger protein 818, pseudogene pseudo ZNF818P zinc finger protein 818, pseudogene O - 20121230 -9606 390980 ZNF805 - - HGNC:23272|Ensembl:ENSG00000204524|HPRD:18617 19 19q13.43 zinc finger protein 805 protein-coding ZNF805 zinc finger protein 805 O - 20121230 -9606 390992 HES3 RP1-120G22.7 bHLHb43 HGNC:26226|MIM:609971|Ensembl:ENSG00000173673|HPRD:18618|Vega:OTTHUMG00000001271 1 1p36.31 hairy and enhancer of split 3 (Drosophila) protein-coding HES3 hairy and enhancer of split 3 (Drosophila) O class B basic helix-loop-helix protein 43|transcription factor HES-3 20121230 -9606 390993 RPL7AP18 CTA-215D11.4 RPL7A_1_5 HGNC:35613 1 1p36.23 ribosomal protein L7a pseudogene 18 pseudo RPL7AP18 ribosomal protein L7a pseudogene 18 O - 20121230 -9606 390996 CFL1P6 - CFLP6 HGNC:34545 1 1p36.22 cofilin 1 (non-muscle) pseudogene 6 pseudo CFL1P6 cofilin 1 (non-muscle) pseudogene 6 O - 20121230 -9606 390997 LOC390997 - - - 1 1p36.22 SET binding factor 1 pseudogene pseudo - - - - 20121230 -9606 390998 LOC390998 - - - 1 1p36.22 ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 390999 PRAMEF12 - - HGNC:22125|Ensembl:ENSG00000116726|Vega:OTTHUMG00000001927 1 1p36.21 PRAME family member 12 protein-coding PRAMEF12 PRAME family member 12 O - 20121230 -9606 391001 PRAMEF21 RP11-219C24.1 - HGNC:22405|Ensembl:ENSG00000204486|Vega:OTTHUMG00000002919 1 1p36.21 PRAME family member 21 protein-coding PRAMEF21 PRAME family member 21 O OTTHUMT00000008157|PRAME family member 20/21 20121230 -9606 391002 PRAMEF8 - - HGNC:24074|Ensembl:ENSG00000182330|HPRD:17382|Vega:OTTHUMG00000008037 1 1p36.21 PRAME family member 8 protein-coding PRAMEF8 PRAME family member 8 O - 20121230 -9606 391003 PRAMEF18 RP11-219C24.3 - HGNC:30693|Ensembl:ENSG00000204491|Vega:OTTHUMG00000002932 1 1p36.21 PRAME family member 18 protein-coding PRAMEF18 PRAME family member 18 O - 20121216 -9606 391004 PRAMEF17 RP11-133N1.1 - HGNC:29485|Ensembl:ENSG00000204479|Vega:OTTHUMG00000007909 1 1p36.21 PRAME family member 17 protein-coding PRAMEF17 PRAME family member 17 O - 20121230 -9606 391012 LOC391012 - - - 1 1p36.13 dynein, light chain, LC8-type 1 pseudogene pseudo - - - - 20121230 -9606 391013 PLA2G2C RP3-340N1.3 - HGNC:9032|Ensembl:ENSG00000187980 1 1p36.12 phospholipase A2, group IIC protein-coding PLA2G2C phospholipase A2, group IIC O phosphatidylcholine 2-acylhydrolase-like protein GIIC|phospholipase A2, group IIC (possible pseudogene)|putative inactive group IIC secretory phospholipase A2 20121230 -9606 391019 RPL29P6 - RPL29_1_20 HGNC:36627 1 1p36.12 ribosomal protein L29 pseudogene 6 pseudo RPL29P6 ribosomal protein L29 pseudogene 6 O - 20121230 -9606 391020 LOC391020 - - - 1 1p36.11 interferon induced transmembrane protein 3 pseudogene pseudo - - - - 20121230 -9606 391026 ACTN4P2 - - HGNC:44032 1 1p34.3 actinin, alpha 4 pseudogene 2 pseudo ACTN4P2 actinin, alpha 4 pseudogene 2 O - 20121209 -9606 391033 MKRN8P - MKRNP4|ZNF127L4 HGNC:7120 1 1p34.2 makorin ring finger protein 8, pseudogene pseudo MKRN8P makorin ring finger protein 8, pseudogene O - 20121230 -9606 391037 SKINTL - SKINT1|SKINTP HGNC:33993 1 1p33 Skint-like, pseudogene pseudo SKINTL Skint-like, pseudogene O - 20121230 -9606 391039 CFL1P2 - CFLL2|CFLP2 HGNC:1878 1 1p32.3 cofilin 1 (non-muscle) pseudogene 2 pseudo CFL1P2 cofilin 1 (non-muscle) pseudogene 2 O - 20121230 -9606 391040 BTF3L4P3 - - HGNC:39647 6 6q23.3 basic transcription factor 3-like 4 pseudogene 3 pseudo BTF3L4P3 basic transcription factor 3-like 4 pseudogene 3 O - 20121230 -9606 391044 PHBP3 - - HGNC:8915 1 1p32.1 prohibitin pseudogene 3 pseudo PHBP3 prohibitin pseudogene 3 O - 20121230 -9606 391045 SLC2A3P2 - - HGNC:31074 1 1p31.3 solute carrier family 2 (facilitated glucose transporter), member 3 pseudogene 2 pseudo SLC2A3P2 solute carrier family 2 (facilitated glucose transporter), member 3 pseudogene 2 O - 20121230 -9606 391048 LOC391048 - - - 1 1p31.1 cysteine and histidine-rich domain (CHORD) containing 1 pseudogene pseudo - - - - 20121230 -9606 391051 UOX - UOXP|URICASE HGNC:12575|MIM:191540 1 1p22 urate oxidase, pseudogene pseudo UOX urate oxidase, pseudogene O - 20121230 -9606 391053 CAPNS1P1 - - HGNC:39562 1 1p22.2 calpain, small subunit 1 pseudogene 1 pseudo CAPNS1P1 calpain, small subunit 1 pseudogene 1 O - 20121230 -9606 391059 FRRS1 - SDFR2|SDR2 HGNC:27622|MIM:611578|Ensembl:ENSG00000156869|HPRD:18403|Vega:OTTHUMG00000010768 1 1p21.2 ferric-chelate reductase 1 protein-coding FRRS1 ferric-chelate reductase 1 O SDR-2|stromal cell derived factor receptor 2 homolog|stromal cell-derived receptor 2 20121230 -9606 391069 GAPDHP64 RP4-686J16.2 GAPDHL9|GAPDL9 HGNC:4158 1 1p13.1 glyceraldehyde-3-phosphate dehydrogenase pseudogene 64 pseudo GAPDHP64 glyceraldehyde-3-phosphate dehydrogenase pseudogene 64 O - 20121230 -9606 391073 LOC391073 - - - 1 1p12 glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20121230 -9606 391075 GAPDHP23 - - HGNC:37775 1 1p12 glyceraldehyde 3 phosphate dehydrogenase pseudogene 23 pseudo GAPDHP23 glyceraldehyde 3 phosphate dehydrogenase pseudogene 23 O - 20121230 -9606 391076 HSD3BP1 - - HGNC:5219 1 1p13.3 hydroxy-delta-5-steroid dehydrogenase, 3 beta, pseudogene 1 pseudo HSD3BP1 hydroxy-delta-5-steroid dehydrogenase, 3 beta, pseudogene 1 O - 20121230 -9606 391077 GAPDHP58 - GAPDHL1|GAPDL1 HGNC:4142 1 1p12 glyceraldehyde 3 phosphate dehydrogenase pseudogene 58 pseudo GAPDHP58 glyceraldehyde 3 phosphate dehydrogenase pseudogene 58 O - 20121230 -9606 391081 HSD3BP5 - - HGNC:5223 1 1p13.1 hydroxy-delta-5-steroid dehydrogenase, 3 beta, pseudogene 5 pseudo HSD3BP5 hydroxy-delta-5-steroid dehydrogenase, 3 beta, pseudogene 5 O - 20121230 -9606 391092 LOC391092 - - - 1 1q21.2 PRAME family member 17 pseudogene pseudo - - - - 20121230 -9606 391099 KRT8P28 - - HGNC:33380 1 1q21.3 keratin 8 pseudogene 28 pseudo KRT8P28 keratin 8 pseudogene 28 O - 20121230 -9606 391102 RPLP0P4 - RPLP0_1_100 HGNC:36489 1 1q21.3 ribosomal protein, large, P0 pseudogene 4 pseudo RPLP0P4 ribosomal protein, large, P0 pseudogene 4 O - 20121230 -9606 391104 VHLL - VHLP|VLP HGNC:30666|Ensembl:ENSG00000189030|HPRD:15648|Vega:OTTHUMG00000024058 1 1q22 von Hippel-Lindau tumor suppressor-like protein-coding VHLL von Hippel-Lindau tumor suppressor-like O VHL pseudogene|VHL-like protein|von Hippel-Lindau-like protein 20121230 -9606 391106 VDAC1P9 - - HGNC:37484 1 1q23.1 voltage-dependent anion channel 1 pseudogene 9 pseudo VDAC1P9 voltage-dependent anion channel 1 pseudogene 9 O - 20121230 -9606 391107 OR10K2 - OR1-4 HGNC:14826|Ensembl:ENSG00000180708|HPRD:14894|Vega:OTTHUMG00000019638 1 1q23.1 olfactory receptor, family 10, subfamily K, member 2 protein-coding OR10K2 olfactory receptor, family 10, subfamily K, member 2 O olfactory receptor 10K2|olfactory receptor OR1-4 20121230 -9606 391109 OR10K1 - OR1-6 HGNC:14693|Ensembl:ENSG00000173285|HPRD:14893|Vega:OTTHUMG00000017517 1 1q23.1 olfactory receptor, family 10, subfamily K, member 1 protein-coding OR10K1 olfactory receptor, family 10, subfamily K, member 1 O olfactory receptor 10K1|olfactory receptor OR1-6 20121230 -9606 391110 OR10R3P - OR1-9 HGNC:14829 1 1q23.1 olfactory receptor, family 10, subfamily R, member 3 pseudogene pseudo OR10R3P olfactory receptor, family 10, subfamily R, member 3 pseudogene O - 20121230 -9606 391112 OR6Y1 - OR1-11|OR6Y2 HGNC:14823|Ensembl:ENSG00000197532|HPRD:15071|Vega:OTTHUMG00000019629 1 1q23.1 olfactory receptor, family 6, subfamily Y, member 1 protein-coding OR6Y1 olfactory receptor, family 6, subfamily Y, member 1 O olfactory receptor 6Y1|olfactory receptor 6Y2|olfactory receptor OR1-11 20121230 -9606 391114 OR6K3 - OR1-18 HGNC:15030|Ensembl:ENSG00000203757|HPRD:15064|Vega:OTTHUMG00000022770 1 1q23.1 olfactory receptor, family 6, subfamily K, member 3 protein-coding OR6K3 olfactory receptor, family 6, subfamily K, member 3 O olfactory receptor 6K3|olfactory receptor OR1-18|seven transmembrane helix receptor 20121230 -9606 391115 OR6K5P - - HGNC:15032 1 1q23.1 olfactory receptor, family 6, subfamily K, member 5 pseudogene pseudo OR6K5P olfactory receptor, family 6, subfamily K, member 5 pseudogene O - 20121230 -9606 391117 OR10J2P - - HGNC:14991 1 1q23.2 olfactory receptor, family 10, subfamily J, member 2 pseudogene pseudo OR10J2P olfactory receptor, family 10, subfamily J, member 2 pseudogene O - 20121230 -9606 391119 OR10J7P - - HGNC:19637 1 1q23.2 olfactory receptor, family 10, subfamily J, member 7 pseudogene pseudo OR10J7P olfactory receptor, family 10, subfamily J, member 7 pseudogene O - 20121230 -9606 391120 OR10J9P - - HGNC:19639 1 1q23.2 olfactory receptor, family 10, subfamily J, member 9 pseudogene pseudo OR10J9P olfactory receptor, family 10, subfamily J, member 9 pseudogene O - 20121230 -9606 391121 OR10J4 - OR10J4P|OST717 HGNC:15408 1 1q23.2 olfactory receptor, family 10, subfamily J, member 4 (gene/pseudogene) pseudo OR10J4 olfactory receptor, family 10, subfamily J, member 4 (gene/pseudogene) O - 20121230 -9606 391123 VSIG8 RP11-190A12.5 - HGNC:32063|Ensembl:ENSG00000243284|HPRD:18404|Vega:OTTHUMG00000168834 1 1q23.2 V-set and immunoglobulin domain containing 8 protein-coding VSIG8 V-set and immunoglobulin domain containing 8 O V-set and immunoglobulin domain-containing protein 8 20121230 -9606 391124 RPL27AP2 hCG_2041321 RPL27A_1_106 HGNC:36238 1 1q23.2 ribosomal protein L27a pseudogene 2 pseudo RPL27AP2 ribosomal protein L27a pseudogene 2 O - 20121230 -9606 391126 RPL26P12 - RPL26_4_113 HGNC:36025 1 1q24.1 ribosomal protein L26 pseudogene 12 pseudo RPL26P12 ribosomal protein L26 pseudogene 12 O - 20121230 -9606 391130 RPS17P6 - RPS17_1_116 HGNC:36945 1 1q24.1 ribosomal protein S17 pseudogene 6 pseudo RPS17P6 ribosomal protein S17 pseudogene 6 O - 20121230 -9606 391135 RPL4P3 - RPL4_1_122 HGNC:35773 1 1q24.3 ribosomal protein L4 pseudogene 3 pseudo RPL4P3 ribosomal protein L4 pseudogene 3 O - 20121230 -9606 391136 LOC391136 - - - 1 1q24.3 RNA binding motif protein 3 pseudogene pseudo - - - - 20121230 -9606 391137 RPS15P3 - RPS15_2_123 HGNC:35563 1 1q24.3 ribosomal protein S15 pseudogene 3 pseudo RPS15P3 ribosomal protein S15 pseudogene 3 O - 20121230 -9606 391139 GOT2P2 RP3-395P12.1 GOT2L2 HGNC:4435 1 1q25.1 glutamic-oxaloacetic transaminase 2 pseudogene 2 pseudo GOT2P2 glutamic-oxaloacetic transaminase 2 pseudogene 2 O - 20121230 -9606 391140 RPL13P7 - RPL13_1_131 HGNC:35510 1 1q25.2 ribosomal protein L13 pseudogene 7 pseudo RPL13P7 ribosomal protein L13 pseudogene 7 O - 20121230 -9606 391151 RPL10P4 - - - 1 1q32.1 ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 391155 KRT8P29 - - HGNC:33381 1 1q32.1 keratin 8 pseudogene 29 pseudo KRT8P29 keratin 8 pseudogene 29 O - 20121230 -9606 391158 TFDP1P - - HGNC:11750 1 1q32.2 transcription factor Dp-1 pseudogene pseudo TFDP1P transcription factor Dp-1 pseudogene O - 20121230 -9606 391160 ARPC3P2 - - HGNC:39431 1 1q32.3 actin related protein 2/3 complex, subunit 3 pseudogene 2 pseudo ARPC3P2 actin related protein 2/3 complex, subunit 3 pseudogene 2 O - 20121230 -9606 391162 GAPDHP24 - - HGNC:37776 1 1q41 glyceraldehyde 3 phosphate dehydrogenase pseudogene 24 pseudo GAPDHP24 glyceraldehyde 3 phosphate dehydrogenase pseudogene 24 O - 20121230 -9606 391165 RPS26P17 - RPS26_2_165 HGNC:36681 1 1q41 ribosomal protein S26 pseudogene 17 pseudo RPS26P17 ribosomal protein S26 pseudogene 17 O - 20121230 -9606 391168 RPS3AP7 - RPS3A_5_169 HGNC:36376 1 1q42.12 ribosomal protein S3a pseudogene 7 pseudo RPS3AP7 ribosomal protein S3a pseudogene 7 O - 20121230 -9606 391169 CDKN2AIPNLP1 RP11-118H4.2 - HGNC:39854 1 1q42.12 CDKN2A interacting protein N-terminal like pseudogene 1 pseudo CDKN2AIPNLP1 CDKN2A interacting protein N-terminal like pseudogene 1 O - 20121230 -9606 391171 LOC391171 - - - 1 1q42.13 tubulin, beta 8 class VIII pseudogene pseudo - - - - 20121230 -9606 391174 FAM96AP2 - - HGNC:43862 1 1q42.13 family with sequence similarity 96, member A pseudogene 2 pseudo FAM96AP2 family with sequence similarity 96, member A pseudogene 2 O - 20121230 -9606 391175 RPL23AP15 RP5-915N17.3 RPL23A_4_173 HGNC:36486 1 1q42.13 ribosomal protein L23a pseudogene 15 pseudo RPL23AP15 ribosomal protein L23a pseudogene 15 O - 20121230 -9606 391179 KRT18P32 - - HGNC:33401 1 1q43 keratin 18 pseudogene 32 pseudo KRT18P32 keratin 18 pseudogene 32 O - 20121230 -9606 391181 RPL6P3 - RPL6_2_187 HGNC:35925 1 1q43 ribosomal protein L6 pseudogene 3 pseudo RPL6P3 ribosomal protein L6 pseudogene 3 O - 20121230 -9606 391183 RSL24D1P4 - RSL24D1P19 HGNC:37884 1 1q43 ribosomal L24 domain containing 1 pseudogene 4 pseudo RSL24D1P4 ribosomal L24 domain containing 1 pseudogene 4 O - 20121230 -9606 391189 OR11L1 - - HGNC:14998|Ensembl:ENSG00000197591|HPRD:17677|Vega:OTTHUMG00000040193 1 1q44 olfactory receptor, family 11, subfamily L, member 1 protein-coding OR11L1 olfactory receptor, family 11, subfamily L, member 1 O olfactory receptor 11L1|olfactory receptor OR1-50 20121230 -9606 391190 OR2L8 - - HGNC:15014|Ensembl:ENSG00000196936|HPRD:14944|Vega:OTTHUMG00000040196 1 1q44 olfactory receptor, family 2, subfamily L, member 8 protein-coding OR2L8 olfactory receptor, family 2, subfamily L, member 8 O olfactory receptor 2L8|olfactory receptor OR1-46 20121230 -9606 391191 OR2AK2 - OR1-47|OR2AK1P HGNC:19569|Ensembl:ENSG00000187080|HPRD:17693|Vega:OTTHUMG00000040201 1 1q44 olfactory receptor, family 2, subfamily AK, member 2 protein-coding OR2AK2 olfactory receptor, family 2, subfamily AK, member 2 O olfactory receptor 2AK1|olfactory receptor 2AK2|olfactory receptor OR1-47|olfactory receptor, family 2, subfamily AK, member 1 pseudogene 20121230 -9606 391192 OR2L3 - - HGNC:15009|Ensembl:ENSG00000198128|HPRD:14943|Vega:OTTHUMG00000040195 1 1q44 olfactory receptor, family 2, subfamily L, member 3 protein-coding OR2L3 olfactory receptor, family 2, subfamily L, member 3 O olfactory receptor 2L3 20121230 -9606 391194 OR2M2 RP11-230L4.3 OR2M2Q|OST423 HGNC:8268|Ensembl:ENSG00000198601|HPRD:17703|Vega:OTTHUMG00000040460 1 1q44 olfactory receptor, family 2, subfamily M, member 2 protein-coding OR2M2 olfactory receptor, family 2, subfamily M, member 2 O olfactory receptor 2M2 20121230 -9606 391195 OR2T33 - OR1-56 HGNC:31255|Ensembl:ENSG00000177212|HPRD:14953|Vega:OTTHUMG00000040458 1 1q44 olfactory receptor, family 2, subfamily T, member 33 protein-coding OR2T33 olfactory receptor, family 2, subfamily T, member 33 O novel 7 transmembrane receptor (rhodopsin family) protein|olfactory receptor 2T33|olfactory receptor OR1-56 20121230 -9606 391196 OR2M7 - OR1-58 HGNC:19594|Ensembl:ENSG00000177186|HPRD:14948|Vega:OTTHUMG00000040461 1 1q44 olfactory receptor, family 2, subfamily M, member 7 protein-coding OR2M7 olfactory receptor, family 2, subfamily M, member 7 O olfactory receptor 2M7|olfactory receptor OR1-58 20121230 -9606 391211 OR2G6 RP11-280A15.1 - HGNC:27019|Ensembl:ENSG00000188558|HPRD:18487|Vega:OTTHUMG00000040462 1 1q44 olfactory receptor, family 2, subfamily G, member 6 protein-coding OR2G6 olfactory receptor, family 2, subfamily G, member 6 O olfactory receptor 2G6 20121230 -9606 391230 LOC391230 - - - 20 20p12.3 KN motif and ankyrin repeat domain-containing protein 1-like protein-coding - - - - 20120825 -9606 391239 LOC391239 - - - 20 20p11.21 V-set domain containing T cell activation inhibitor 1 pseudogene pseudo - - - - 20121230 -9606 391242 HDHD1P3 - HDHD1DP HGNC:38118 20 20q11.21 haloacid dehalogenase-like hydrolase domain containing 1 pseudogene 3 pseudo HDHD1P3 haloacid dehalogenase-like hydrolase domain containing 1 pseudogene 3 O - 20121230 -9606 391247 LOC391247 - - - 20 20q11.23 GINS complex subunit 2 (Psf2 homolog) pseudogene pseudo - - - - 20121230 -9606 391253 SPINT4 - C20orf137|SPINT3|dJ601O1.1 HGNC:16130|Ensembl:ENSG00000149651|Vega:OTTHUMG00000130153 20 20q13.12 serine peptidase inhibitor, Kunitz type 4 protein-coding SPINT4 serine peptidase inhibitor, Kunitz type 4 O kunitz-type protease inhibitor 4|serine protease inhibitor, Kunitz type 1|serine protease inhibitor, Kunitz type 4 20121230 -9606 391256 KRT18P4 - dJ963K23.1 HGNC:16604|Vega:OTTHUMG00000032705 20 20q13.13 keratin 18 pseudogene 4 pseudo KRT18P4 keratin 18 pseudogene 4 O - 20121230 -9606 391257 SUMO1P1 - PIC1L|UBL2|UBL6 HGNC:33148 20 20q13.2 SUMO1 pseudogene 1 pseudo SUMO1P1 SUMO1 pseudogene 1 O - 20121230 -9606 391266 CNN2P7 - - HGNC:39532 21 21q11.2 calponin 2 pseudogene 7 pseudo CNN2P7 calponin 2 pseudogene 7 O - 20121230 -9606 391267 ANKRD20A11P - C21orf81 HGNC:42024 21 21q11.2 ankyrin repeat domain 20 family, member A11, pseudogene pseudo ANKRD20A11P ankyrin repeat domain 20 family, member A11, pseudogene O - 20121230 -9606 391269 ANKRD20A18P - C21orf126 HGNC:23756 21 21q11.2 ankyrin repeat domain 20 family, member A18, pseudogene pseudo ANKRD20A18P ankyrin repeat domain 20 family, member A18, pseudogene O - 20121230 -9606 391276 THUMPD1P1 - - HGNC:23808 21 21q21.3 THUMP domain containing 1 pseudogene 1 pseudo THUMPD1P1 THUMP domain containing 1 pseudogene 1 O - 20121230 -9606 391279 OR7E23P - OR21-1|OR21-3|OR7E92P HGNC:8395 21 21q22.11 olfactory receptor, family 7, subfamily E, member 23 pseudogene pseudo OR7E23P olfactory receptor, family 7, subfamily E, member 23 pseudogene O - 20121230 -9606 391282 RPL23AP12 - RPL23A_41_1732 HGNC:23840 21 21q22.2 ribosomal protein L23a pseudogene 12 pseudo RPL23AP12 ribosomal protein L23a pseudogene 12 O - 20121230 -9606 391322 LOC391322 - - - 22 22q11.23 D-dopachrome tautomerase-like protein-coding - - - D-dopachrome decarboxylase related protein 20121230 -9606 391334 LOC391334 - - - 22 22q13.2 actin, gamma 2, smooth muscle, enteric pseudogene pseudo - - - - 20121230 -9606 391343 C2orf90 - - HGNC:37251|HPRD:18405 2 2p25.3 chromosome 2 open reading frame 90 unknown C2orf90 chromosome 2 open reading frame 90 O - 20120511 -9606 391349 LOC391349 - - - 2 2p25.2 phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta pseudogene pseudo - - - - 20121230 -9606 391356 PTRHD1 - C2orf79 HGNC:33782|Ensembl:ENSG00000184924|HPRD:18406|Vega:OTTHUMG00000151978 2 2p23.3 peptidyl-tRNA hydrolase domain containing 1 protein-coding PTRHD1 peptidyl-tRNA hydrolase domain containing 1 O peptidyl-tRNA hydrolase domain-containing protein 1|putative peptidyl-tRNA hydrolase PTRHD1 20121230 -9606 391358 TRMT112P6 - - HGNC:44025 2 2p23.3 tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 6 pseudo TRMT112P6 tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 6 O - 20121230 -9606 391359 LOC391359 - - - 2 2p23.3 epithelial membrane protein 2 pseudogene pseudo - - - - 20121230 -9606 391365 SULT6B1 - - HGNC:33433|Ensembl:ENSG00000138068|Vega:OTTHUMG00000152160 2 2p22.2 sulfotransferase family, cytosolic, 6B, member 1 protein-coding SULT6B1 sulfotransferase family, cytosolic, 6B, member 1 O ST6B1|sulfotransferase 6B1|sulfotransferase SULT6B1|thyroxine sulfotransferase 20121230 -9606 391367 GAPDHP25 - - HGNC:37777 2 2p22.2 glyceraldehyde 3 phosphate dehydrogenase pseudogene 25 pseudo GAPDHP25 glyceraldehyde 3 phosphate dehydrogenase pseudogene 25 O - 20121230 -9606 391370 RPS12P4 - RPS12_1_210 HGNC:35670 2 2p21 ribosomal protein S12 pseudogene 4 pseudo RPS12P4 ribosomal protein S12 pseudogene 4 O - 20121230 -9606 391378 LOC391378 - - - 2 2p15 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 391383 LOC391383 - - - 2 2p13.3 WD repeat domain 4 pseudogene pseudo - - - - 20121230 -9606 391387 RPSAP28 - RPSA_4_242 HGNC:35612 2 2p13.1 ribosomal protein SA pseudogene 28 pseudo RPSAP28 ribosomal protein SA pseudogene 28 O - 20121230 -9606 391405 LOC391405 - - - 2 2p11.1 immunoglobulin kappa light chain variable region other - - - - 20121102 -9606 391428 SEPHS1P7 - - HGNC:42167 2 2q14.1 selenophosphate synthetase 1 pseudogene 7 pseudo SEPHS1P7 selenophosphate synthetase 1 pseudogene 7 O - 20121230 -9606 391436 LOC391436 - - - 2 2q21.1 mediator complex subunit 15 pseudogene pseudo - - - - 20121230 -9606 391448 LOC391448 - - - 2 2q21.3 mannosidase, endo-alpha-like pseudogene pseudo - - - - 20121230 -9606 391458 KRT18P46 - - HGNC:33416 2 2q24.2 keratin 18 pseudogene 46 pseudo KRT18P46 keratin 18 pseudogene 46 O - 20121230 -9606 391462 RPSAP24 - RPSA_6_295 HGNC:36362 2 2q31.1 ribosomal protein SA pseudogene 24 pseudo RPSAP24 ribosomal protein SA pseudogene 24 O - 20121230 -9606 391465 LOC391465 - - - 2 2q31.2 STIP1 homology and U-box containing protein 1, E3 ubiquitin protein ligase pseudogene pseudo - - - - 20121230 -9606 391467 IMPDH1P7 - - HGNC:33962 2 2q32.1 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 7 pseudo IMPDH1P7 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 7 O - 20121230 -9606 391470 LOC391470 - - - 2 2q32.3 adenosylhomocysteinase pseudogene pseudo - - - - 20121230 -9606 391472 LOC391472 - - - 2 2q33.1 bicaudal D homolog 1 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 391475 DYTN - - HGNC:23279|Ensembl:ENSG00000232125|Vega:OTTHUMG00000154729 2 2q33.3 dystrotelin protein-coding DYTN dystrotelin O - 20121230 -9606 391485 KRT8P30 - - HGNC:33382 2 2q35 keratin 8 pseudogene 30 pseudo KRT8P30 keratin 8 pseudogene 30 O - 20121230 -9606 391490 RPL23AP26 - RPL23A_14_334 HGNC:35592 2 2q37.1 ribosomal protein L23a pseudogene 26 pseudo RPL23AP26 ribosomal protein L23a pseudogene 26 O - 20121230 -9606 391491 GAMTP1 - GAMTP HGNC:33982 2 2q37.1 guanidinoacetate N-methyltransferase pseudogene 1 pseudo GAMTP1 guanidinoacetate N-methyltransferase pseudogene 1 O - 20121230 -9606 391496 OR5S1P - - HGNC:15040 2 2q37.3 olfactory receptor, family 5, subfamily S, member 1 pseudogene pseudo OR5S1P olfactory receptor, family 5, subfamily S, member 1 pseudogene O - 20121230 -9606 391504 RPL23AP38 - RPL23A_11_340 HGNC:36351 3 3p26.3 ribosomal protein L23a pseudogene 38 pseudo RPL23AP38 ribosomal protein L23a pseudogene 38 O - 20121230 -9606 391508 PGAM1P4 - - HGNC:42451 3 3p25.3 phosphoglycerate mutase 1 pseudogene 4 pseudo PGAM1P4 phosphoglycerate mutase 1 pseudogene 4 O - 20121230 -9606 391518 VENTXP7 - HPX42|VENTX1 HGNC:13638 3 3p24.3 VENT homeobox pseudogene 7 pseudo VENTXP7 VENT homeobox pseudogene 7 O - 20121230 -9606 391524 THRAP3P1 - THRAP3L HGNC:32386 3 3p24.1 thyroid hormone receptor associated protein 3 pseudogene 1 pseudo THRAP3P1 thyroid hormone receptor associated protein 3 pseudogene 1 O - 20121230 -9606 391526 IGBP1P3 - - HGNC:43612 3 3p22.3 immunoglobulin (CD79A) binding protein 1 pseudogene 3 pseudo IGBP1P3 immunoglobulin (CD79A) binding protein 1 pseudogene 3 O - 20121230 -9606 391530 SALL4P6 - - HGNC:39823 3 3p22.1 sal-like 4 (Drosophila) pseudogene 6 pseudo SALL4P6 sal-like 4 (Drosophila) pseudogene 6 O - 20121230 -9606 391532 LOC391532 - - - 15 15q24.2 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 391533 FLT1P1 - - HGNC:44609 3 3p21.31 fms-related tyrosine kinase 1 pseudogene 1 pseudo FLT1P1 fms-related tyrosine kinase 1 pseudogene 1 O - 20121230 -9606 391538 ALDOAP1 - - HGNC:415 3 3p21.2 aldolase A, fructose-bisphosphate pseudogene 1 pseudo ALDOAP1 aldolase A, fructose-bisphosphate pseudogene 1 O - 20121230 -9606 391539 RPS25P4 - RPS25_2_371 HGNC:35669 3 3p21.1 ribosomal protein S25 pseudogene 4 pseudo RPS25P4 ribosomal protein S25 pseudogene 4 O - 20121230 -9606 391548 OR7E55P - OR2DG|OR3.2|OR7E56P|OR7E57P|OST007|OST013 HGNC:8430 3 3p12.3 olfactory receptor, family 7, subfamily E, member 55 pseudogene pseudo OR7E55P olfactory receptor, family 7, subfamily E, member 55 pseudogene O - 20121230 -9606 391552 AGGF1P3 - - HGNC:38053 3 3p12.3 angiogenic factor with G patch and FHA domains 1 pseudogene 3 pseudo AGGF1P3 angiogenic factor with G patch and FHA domains 1 pseudogene 3 O - 20121230 -9606 391556 LOC391556 - - - 3 3q11.2 retinoblastoma binding protein 4 pseudogene pseudo - - - - 20121230 -9606 391559 VTI1BP1 - - HGNC:43727 3 3q12.1 vesicle transport through interaction with t-SNAREs 1B pseudogene 1 pseudo VTI1BP1 vesicle transport through interaction with t-SNAREs 1B pseudogene 1 O - 20121230 -9606 391560 RPL32P7 - RPL32_1_390 HGNC:35804 3 3q12.3 ribosomal protein L32 pseudogene 7 pseudo RPL32P7 ribosomal protein L32 pseudogene 7 O - 20121230 -9606 391562 LOC391562 - - - 3 3q13.11 ezrin pseudogene pseudo - - - - 20121230 -9606 391566 LOC391566 - - - 3 3q13.31 histone cluster 1, H2bj pseudogene pseudo - - - - 20121230 -9606 391576 OR7E129P - - HGNC:15052 3 3q22.1 olfactory receptor, family 7, subfamily E, member 129 pseudogene pseudo OR7E129P olfactory receptor, family 7, subfamily E, member 129 pseudogene O - 20121230 -9606 391578 LOC391578 - - - 3 3q22.1 MAF1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 391581 RPL31P23 - RPL31_5_407 HGNC:36096 3 3q22.3 ribosomal protein L31 pseudogene 23 pseudo RPL31P23 ribosomal protein L31 pseudogene 23 O - 20121230 -9606 391584 KRT18P35 - - HGNC:33404 3 3q23 keratin 18 pseudogene 35 pseudo KRT18P35 keratin 18 pseudogene 35 O - 20121230 -9606 391587 LOC391587 - - - 3 3q25.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 391589 KRT18P34 - - HGNC:33403 3 3q25.31 keratin 18 pseudogene 34 pseudo KRT18P34 keratin 18 pseudogene 34 O - 20121230 -9606 391592 BZW1P1 - - HGNC:31378 3 3q26.31 basic leucine zipper and W2 domains 1 pseudogene 1 pseudo BZW1P1 basic leucine zipper and W2 domains 1 pseudogene 1 O - 20121230 -9606 391595 RPL32P10 - RPL32_3_439 HGNC:35641 3 3q26.33 ribosomal protein L32 pseudogene 10 pseudo RPL32P10 ribosomal protein L32 pseudogene 10 O - 20121230 -9606 391598 RPSAP31 - RPSA_11_442 HGNC:35558 3 3q27.1 ribosomal protein SA pseudogene 31 pseudo RPSAP31 ribosomal protein SA pseudogene 31 O - 20121230 -9606 391600 LOC391600 - - - 3 3q27.1 transmembrane epididymal protein 1 pseudogene pseudo - - - - 20121230 -9606 391603 LOC391603 - - - 3 3q28 nicotinamide nucleotide adenylyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 391622 USP17L6P - DUB4|USP17L6|vDUB4 HGNC:37179 4 4p16.1 ubiquitin specific peptidase 17-like family member 6, pseudogene pseudo USP17L6P ubiquitin specific peptidase 17-like family member 6, pseudogene O - 20121230 -9606 391627 USP17L9P hCG_1807742 RS447|USP17|USP17A|USP17H|USP17I|USP17J|USP17K|USP17L|USP17M HGNC:12615|MIM:607011 4 4p15 ubiquitin specific peptidase 17-like family member 9, pseudogene pseudo USP17L9P ubiquitin specific peptidase 17-like family member 9, pseudogene O - 20121223 -9606 391630 OR7E83P - OR7E134P HGNC:14688 4 4p16.1 olfactory receptor, family 7, subfamily E, member 83 pseudogene pseudo OR7E83P olfactory receptor, family 7, subfamily E, member 83 pseudogene O - 20121230 -9606 391632 OR7E35P - OR7E120|OST018 HGNC:8408 4 4p16.1 olfactory receptor, family 7, subfamily E, member 35 pseudogene pseudo OR7E35P olfactory receptor, family 7, subfamily E, member 35 pseudogene O - 20121230 -9606 391634 HSP90AB2P - HSP90BB HGNC:32537|HPRD:11811 4 4p15.33 heat shock protein 90kDa alpha (cytosolic), class B member 2, pseudogene pseudo HSP90AB2P heat shock protein 90kDa alpha (cytosolic), class B member 2, pseudogene O - 20121230 -9606 391636 LOC391636 - - - 4 4p15.33 chromosome 9 open reading frame 78 pseudogene pseudo - - - - 20121230 -9606 391642 IGBP1P5 - - HGNC:43614 4 4p15.2 immunoglobulin (CD79A) binding protein 1 pseudogene 5 pseudo IGBP1P5 immunoglobulin (CD79A) binding protein 1 pseudogene 5 O - 20121230 -9606 391647 KRT18P25 - - HGNC:33394 4 4p14 keratin 18 pseudogene 25 pseudo KRT18P25 keratin 18 pseudogene 25 O - 20121230 -9606 391655 RPL17P20 - RPL17_10_481 HGNC:36015 4 4q12 ribosomal protein L17 pseudogene 20 pseudo RPL17P20 ribosomal protein L17 pseudogene 20 O - 20121230 -9606 391656 RPS15AP17 - RPS15A_8_485 HGNC:36888 4 4q13.1 ribosomal protein S15a pseudogene 17 pseudo RPS15AP17 ribosomal protein S15a pseudogene 17 O - 20121230 -9606 391657 LOC391657 - - - 4 4q13.1 dipeptidyl-peptidase 3 pseudogene pseudo - - - - 20121230 -9606 391670 LOC391670 - - - 4 4q21.21 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 391672 IGBP1P4 - - HGNC:43613 4 4q21.22 immunoglobulin (CD79A) binding protein 1 pseudogene 4 pseudo IGBP1P4 immunoglobulin (CD79A) binding protein 1 pseudogene 4 O - 20121230 -9606 391674 LOC391674 - - - 4 4q21.23 aminomethyltransferase pseudogene pseudo - - - - 20121230 -9606 391679 RPL6P14 - RPL6_2_505 HGNC:35661 4 4q24 ribosomal protein L6 pseudogene 14 pseudo RPL6P14 ribosomal protein L6 pseudogene 14 O - 20121230 -9606 391681 EXOC7P1 - - HGNC:43871 4 4q25 exocyst complex component 7 pseudogene 1 pseudo EXOC7P1 exocyst complex component 7 pseudogene 1 O - 20121230 -9606 391686 LYPLA1P2 - - HGNC:44006 4 4q25 lysophospholipase I pseudogene 2 pseudo LYPLA1P2 lysophospholipase I pseudogene 2 O - 20121230 -9606 391696 TECRP2 - - HGNC:44051 4 4q28.1 trans-2,3-enoyl-CoA reductase pseudogene 2 pseudo TECRP2 trans-2,3-enoyl-CoA reductase pseudogene 2 O - 20121230 -9606 391697 ZSWIM5P3 - - HGNC:43770 4 4q28.2 zinc finger, SWIM-type containing 5 pseudogene 3 pseudo ZSWIM5P3 zinc finger, SWIM-type containing 5 pseudogene 3 O - 20121230 -9606 391698 EEF1GP8 - - HGNC:44563 4 4q28.2 eukaryotic translation elongation factor 1 gamma pseudogene 8 pseudo EEF1GP8 eukaryotic translation elongation factor 1 gamma pseudogene 8 O - 20121230 -9606 391701 RPS23P2 - RPS23_2_521 HGNC:36568 4 4q28.3 ribosomal protein S23 pseudogene 2 pseudo RPS23P2 ribosomal protein S23 pseudogene 2 O - 20121230 -9606 391703 KRT18P51 - - HGNC:33421 4 4q31.21 keratin 18 pseudogene 51 pseudo KRT18P51 keratin 18 pseudogene 51 O - 20121230 -9606 391706 RPS3AP18 - RPS3A_5_528 HGNC:35893 4 4q31.3 ribosomal protein S3a pseudogene 18 pseudo RPS3AP18 ribosomal protein S3a pseudogene 18 O - 20121230 -9606 391707 LOC391707 - - - 4 4q32.1 chromatin accessibility complex 1 pseudogene pseudo - - - - 20121230 -9606 391710 LOC391710 - - - 4 4q32.3 tripartite motif-containing 75 pseudogene pseudo - - - - 20121230 -9606 391711 LOC391711 - - - 4 4q32.3 tripartite motif-containing protein 60-like pseudo - - - - 20121230 -9606 391712 TRIM61 - RNF35 HGNC:24339|Ensembl:ENSG00000183439|HPRD:18225|Vega:OTTHUMG00000161266 4 4q32.3 tripartite motif containing 61 protein-coding TRIM61 tripartite motif containing 61 O putative tripartite motif-containing protein 61|ring finger protein 35|tripartite motif-containing 61 20121230 -9606 391713 LOC391713 - - - 4 4q32.3 tripartite motif-containing 75 pseudogene pseudo - - - - 20121230 -9606 391714 TRIM75 - - HGNC:32686 4 4q32.3 tripartite motif containing 75 pseudo TRIM75 tripartite motif containing 75 O - 20121230 -9606 391718 TSEN2P1 - - HGNC:43965 4 4q34.2 tRNA splicing endonuclease 2 homolog (S. cerevisiae) pseudogene 1 pseudo TSEN2P1 tRNA splicing endonuclease 2 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 391719 RPL19P8 - RPL19_5_537 HGNC:36696 4 4q34.3 ribosomal protein L19 pseudogene 8 pseudo RPL19P8 ribosomal protein L19 pseudogene 8 O - 20121230 -9606 391722 LOC391722 - - - 4 4q35.1 uncharacterized LOC391722 protein-coding - - - - 20121209 -9606 391723 HELT - HCM1228|HESL|Mgn|bHLHb44 HGNC:33783|Ensembl:ENSG00000187821|Vega:OTTHUMG00000160484 4 4q35.1 helt bHLH transcription factor protein-coding HELT helt bHLH transcription factor O HES/HEY-like transcription factor|Heslike|Hey-like transcription factor|Hey-like transcriptional repressor|Megane bHLH factor|hairy and enhancer of split-related protein HELT 20121230 -9606 391738 RPL29P13 - RPL29_5_543 HGNC:36461 5 5p15.2 ribosomal protein L29 pseudogene 13 pseudo RPL29P13 ribosomal protein L29 pseudogene 13 O - 20121230 -9606 391739 CCT6P2 - CCT6-1P HGNC:35150 5 5p15.2 chaperonin containing TCP1, subunit 6 (zeta) pseudogene 2 pseudo CCT6P2 chaperonin containing TCP1, subunit 6 (zeta) pseudogene 2 O - 20121230 -9606 391741 LOC391741 - - - 5 5p15.1 actin, beta-like 2 pseudogene pseudo - - - - 20121230 -9606 391742 LOC391742 - - - 5 5p15.1 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa pseudogene pseudo - - - - 20121230 -9606 391744 LOC391744 - - - 5 5p15.1 H3 histone, family 3B (H3.3B) pseudogene pseudo - - - - 20121230 -9606 391746 LOC391746 - - - 5 5p15.1 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa pseudogene pseudo - - - - 20121230 -9606 391747 LOC391747 - - - 5 5p15.1 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa pseudogene pseudo - - - - 20121230 -9606 391765 LOC391765 - - - 5 5p15.1 H3 histone, family 3B (H3.3B) pseudogene pseudo - - - - 20121230 -9606 391768 LOC391768 - - - 5 5p15.1 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa pseudogene pseudo - - - - 20121230 -9606 391769 H3.Y - - - 5 5p15.1 histone cluster 2, H3d pseudogene pseudo - - - - 20121230 -9606 391771 LOC391771 - - - 5 5p14.2 protein tyrosine phosphatase, non-receptor type 11 pseudogene pseudo - - - - 20121230 -9606 391777 RPS4XP6 - RPS4P6|RPS4X_2_555 HGNC:36057 5 5p13.2 ribosomal protein S4X pseudogene 6 pseudo RPS4XP6 ribosomal protein S4X pseudogene 6 O - 20121230 -9606 391798 LOC391798 - - - 5 5q13.3 karyopherin alpha 7 (importin alpha 8) pseudogene pseudo - - - - 20121230 -9606 391803 KRT18P45 - - HGNC:33415 5 5q14.1 keratin 18 pseudogene 45 pseudo KRT18P45 keratin 18 pseudogene 45 O - 20121230 -9606 391804 RBMX2P5 - - HGNC:39927 5 5q14.1 RNA binding motif protein, X-linked 2 pseudogene 5 pseudo RBMX2P5 RNA binding motif protein, X-linked 2 pseudogene 5 O - 20121230 -9606 391811 POLD2P1 - - HGNC:41522 5 5q15 polymerase (DNA directed), delta 2, accessory subunit pseudogene 1 pseudo POLD2P1 polymerase (DNA directed), delta 2, accessory subunit pseudogene 1 O - 20121230 -9606 391813 LOC391813 - - - 5 5q15 zinc finger, DHHC-type containing 3 pseudogene pseudo - - - - 20121230 -9606 391819 KRT18P42 - - HGNC:33412 5 5q21.3 keratin 18 pseudogene 42 pseudo KRT18P42 keratin 18 pseudogene 42 O - 20121230 -9606 391825 RPL23AP44 - RPL23A_14_607 HGNC:35955 5 5q23.1 ribosomal protein L23a pseudogene 44 pseudo RPL23AP44 ribosomal protein L23a pseudogene 44 O - 20121230 -9606 391827 KRT18P16 - - HGNC:33384 5 5q23.2 keratin 18 pseudogene 16 pseudo KRT18P16 keratin 18 pseudogene 16 O - 20121230 -9606 391828 RPL28P3 - RPL28_3_609 HGNC:35973 5 5q23.2 ribosomal protein L28 pseudogene 3 pseudo RPL28P3 ribosomal protein L28 pseudogene 3 O - 20121230 -9606 391833 RPS10P11 - RPS10_6_615 HGNC:36775 5 5q31.1 ribosomal protein S10 pseudogene 11 pseudo RPS10P11 ribosomal protein S10 pseudogene 11 O - 20121230 -9606 391834 LOC391834 - - - 5 5q31.1 ankyrin repeat domain 49 pseudogene pseudo - - - - 20121230 -9606 391836 RPL10AP10 - RPL10A_4_618 HGNC:35971 5 5q31.2 ribosomal protein L10a pseudogene 10 pseudo RPL10AP10 ribosomal protein L10a pseudogene 10 O - 20121230 -9606 391845 RPS15P6 - RPS15_3_634 HGNC:36653 5 5q34 ribosomal protein S15 pseudogene 6 pseudo RPS15P6 ribosomal protein S15 pseudogene 6 O - 20121230 -9606 391850 RPL7AP33 - RPL7A_12_639 HGNC:36679 5 5q35.1 ribosomal protein L7a pseudogene 33 pseudo RPL7AP33 ribosomal protein L7a pseudogene 33 O - 20121230 -9606 392027 LOC392027 - - - 7 7p12.1 ribosome binding protein 1 homolog 180kDa (dog) pseudogene pseudo - - - - 20121230 -9606 392063 FDPSP2 - FDPSL2|FDPSL2A|FPSL2 HGNC:3633 7 7q11.23 farnesyl diphosphate synthase pseudogene 2 pseudo FDPSP2 farnesyl diphosphate synthase pseudogene 2 O - 20121230 -9606 392100 PSMC1P3 - - HGNC:39778 7 7q33 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 3 pseudo PSMC1P3 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 3 O - 20121230 -9606 392106 OR9A3P - OR9A6P HGNC:15094 7 7q34 olfactory receptor, family 9, subfamily A, member 3 pseudogene pseudo OR9A3P olfactory receptor, family 9, subfamily A, member 3 pseudogene O - 20121230 -9606 392132 OR2R1P - OR2R1|OST058 HGNC:8274 7 7q35 olfactory receptor, family 2, subfamily R, member 1, pseudogene pseudo OR2R1P olfactory receptor, family 2, subfamily R, member 1, pseudogene O - 20121230 -9606 392133 OR10AC1P - OR10AC1 HGNC:14758 7 7q35 olfactory receptor, family 10, subfamily AC, member 1 pseudogene pseudo OR10AC1P olfactory receptor, family 10, subfamily AC, member 1 pseudogene O - 20121230 -9606 392138 OR2A25 - OR2A24P|OR2A25P|OR2A27 HGNC:19562|Ensembl:ENSG00000221933|HPRD:17691|Vega:OTTHUMG00000158013 7 7q35 olfactory receptor, family 2, subfamily A, member 25 protein-coding OR2A25 olfactory receptor, family 2, subfamily A, member 25 O olfactory receptor 2A25|olfactory receptor 2A27|olfactory receptor, family 2, subfamily A, member 24 pseudogene|olfactory receptor, family 2, subfamily A, member 25 pseudogene|olfactory receptor, family 2, subfamily A, member 27 20121230 -9606 392140 OR2A13P - - HGNC:15083 7 7q35 olfactory receptor, family 2, subfamily A, member 13 pseudogene pseudo OR2A13P olfactory receptor, family 2, subfamily A, member 13 pseudogene O - 20121230 -9606 392145 LOC392145 tcag7.1231 - - 7 7q36.1 exosome component 6 pseudogene pseudo - - - - 20121230 -9606 392180 LOC392180 - - - 8 8p23.2 transcriptional adaptor 1 pseudogene pseudo - - - - 20121230 -9606 392181 LOC392181 - - - 8 8p23.1 ribosomal protein L23a pseudogene pseudo - - - - 20121230 -9606 392187 LOC392187 - - - 8 8p23.1 ubiquitin carboxyl-terminal hydrolase 17-like protein 2-like pseudo - - - - 20121230 -9606 392188 USP17L8 - - HGNC:37181 8 8p23.1 ubiquitin specific peptidase 17-like family member 8 protein-coding USP17L8 ubiquitin specific peptidase 17-like family member 8 O inactive ubiquitin carboxyl-terminal hydrolase 17-like protein 8|ubiquitin specific peptidase 17-like 8 20121230 -9606 392193 RPL19P13 - RPL19_8_875 HGNC:36879 8 8p23.1 ribosomal protein L19 pseudogene 13 pseudo RPL19P13 ribosomal protein L19 pseudogene 13 O - 20121230 -9606 392194 OR7E158P - - HGNC:31232 8 8p23.1 olfactory receptor, family 7, subfamily E, member 158 pseudogene pseudo OR7E158P olfactory receptor, family 7, subfamily E, member 158 pseudogene O - 20121230 -9606 392196 LOC392196 - - - 8 8p23.1 ubiquitin specific peptidase 17-like family member 2 pseudogene pseudo - - - - 20121230 -9606 392197 USP17L7 - - HGNC:37180 8 8p23.1 ubiquitin specific peptidase 17-like family member 7 protein-coding USP17L7 ubiquitin specific peptidase 17-like family member 7 O inactive ubiquitin carboxyl-terminal hydrolase 17-like protein 7|ubiquitin specific peptidase 17-like 7 20121230 -9606 392206 RPL10AP11 - RPL10A_4_880 HGNC:35875 8 8p22 ribosomal protein L10a pseudogene 11 pseudo RPL10AP11 ribosomal protein L10a pseudogene 11 O - 20121230 -9606 392209 HSPA8P11 - - HGNC:44926 8 8p12 heat shock 70kDa protein 8 pseudogene 11 pseudo HSPA8P11 heat shock 70kDa protein 8 pseudogene 11 O - 20121230 -9606 392214 KRT18P37 - - HGNC:33406 8 8p11.21 keratin 18 pseudogene 37 pseudo KRT18P37 keratin 18 pseudogene 37 O - 20121230 -9606 392221 CHCHD2P10 - - HGNC:39593 8 8q11.23 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 10 pseudo CHCHD2P10 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 10 O - 20121230 -9606 392225 PDCL3P1 - - HGNC:31826 8 8q12.1 phosducin-like 3 pseudogene 1 pseudo PDCL3P1 phosducin-like 3 pseudogene 1 O - 20121230 -9606 392226 LOC392226 - - - 8 8q12.3 serine/threonine-protein kinase PLK1-like pseudo - - - - 20121230 -9606 392232 LOC392232 - - - 8 8q13.3 transient receptor potential cation channel, subfamily A, member 1 pseudogene pseudo - - - - 20121230 -9606 392242 REXO1L8P - REXO1L8 HGNC:35429 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 8, pseudogene pseudo REXO1L8P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 8, pseudogene O - 20121230 -9606 392255 GDF6 - BMP13|CDMP2|KFM|KFS|KFS1|KFSL|MCOP4|MCOPCB6|SCDO4|SGM1 HGNC:4221|MIM:601147|Ensembl:ENSG00000156466|HPRD:11002|Vega:OTTHUMG00000164710 8 8q22.1 growth differentiation factor 6 protein-coding GDF6 growth differentiation factor 6 O GDF-6|Klip-Feil malformation|Klippel-Feil malformation|Klippel-Feil syndrome|growth/differentiation factor 16|growth/differentiation factor 6 20121230 -9606 392256 RPS26P6 - RPS26_10_933 HGNC:31090 8 8q22.3 ribosomal protein S26 pseudogene 6 pseudo RPS26P6 ribosomal protein S26 pseudogene 6 O - 20121230 -9606 392262 RPSAP48 - RPSA_15_943 HGNC:36646 8 8q23.2 ribosomal protein SA pseudogene 48 pseudo RPSAP48 ribosomal protein SA pseudogene 48 O - 20121230 -9606 392264 LOC392264 - - - 8 8q24.12 zinc finger protein 532 pseudogene pseudo - - - - 20121230 -9606 392265 CDK5PS - - HGNC:21261 8 8q24.13 cyclin-dependent kinase 5 pseudogene pseudo CDK5PS cyclin-dependent kinase 5 pseudogene O - 20121230 -9606 392266 LOC392266 - - - 8 8q24.13 17beta-hydroxysteroid dehydrogenase pseudogene pseudo - - - - 20121230 -9606 392267 IMPDH1P6 - - HGNC:33961 8 8q24.13 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 6 pseudo IMPDH1P6 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 6 O - 20121230 -9606 392268 LOC392268 - - - 8 8q24.13 neuropilin (NRP) and tolloid (TLL)-like 2 pseudogene pseudo - - - - 20121230 -9606 392271 RPL32P20 - RPL32_12_951 HGNC:35934 8 8q24.22 ribosomal protein L32 pseudogene 20 pseudo RPL32P20 ribosomal protein L32 pseudogene 20 O - 20121230 -9606 392275 SMPD5 - - - 8 8q24.3 sphingomyelin phosphodiesterase 5 protein-coding - - - - 20121230 -9606 392281 LOC392281 - - - 9 9p24.2 G protein pathway suppressor 2 pseudogene pseudo - - - - 20121230 -9606 392282 RPS5P6 - RPS5_2_957 HGNC:35960 9 9p24.1 ribosomal protein S5 pseudogene 6 pseudo RPS5P6 ribosomal protein S5 pseudogene 6 O - 20121230 -9606 392285 LOC392285 - - - 9 9p24.1 peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121209 -9606 392288 LOC392288 - - - 9 9p22.1 microtubule-associated proteins 1A/1B light chain 3B-like protein-coding - - - - 20121209 -9606 392292 IFNWP5 RP11-380P16.2 - HGNC:5454 9 9p21.3 interferon, omega 1 pseudogene 5 pseudo IFNWP5 interferon, omega 1 pseudogene 5 O - 20121230 -9606 392298 CTAGE12P - - HGNC:37297 9 9p21.2 CTAGE family, member 12, pseudogene pseudo CTAGE12P CTAGE family, member 12, pseudogene O - 20121230 -9606 392301 SLC25A5P8 RP11-550E18.1 - HGNC:35469 9 9p21.1 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 8 pseudo SLC25A5P8 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 8 O - 20121230 -9606 392302 ASS1P12 - ASSP12 HGNC:762 9 9p21.1 argininosuccinate synthetase 1 pseudogene 12 pseudo ASS1P12 argininosuccinate synthetase 1 pseudogene 12 O - 20121230 -9606 392305 GLULP4 - GLULP HGNC:4345 9 9p13.3 glutamate-ammonia ligase (glutamine synthetase) pseudogene 4 pseudo GLULP4 glutamate-ammonia ligase (glutamine synthetase) pseudogene 4 O - 20121230 -9606 392307 FAM221B RP11-112J3.9 C9orf128 HGNC:30762|Ensembl:ENSG00000204930|HPRD:16675|Vega:OTTHUMG00000019880 9 9p13.3 family with sequence similarity 221, member B protein-coding FAM221B family with sequence similarity 221, member B O protein FAM221B|uncharacterized protein C9orf128 20121230 -9606 392308 OR13E1P - OR13E2|OST741 HGNC:15107 9 9p13.3 olfactory receptor, family 13, subfamily E, member 1 pseudogene pseudo OR13E1P olfactory receptor, family 13, subfamily E, member 1 pseudogene O - 20121230 -9606 392309 OR13J1 - OR9-2 HGNC:15108|Ensembl:ENSG00000168828|HPRD:14912|Vega:OTTHUMG00000019879 9 9p13.3 olfactory receptor, family 13, subfamily J, member 1 protein-coding OR13J1 olfactory receptor, family 13, subfamily J, member 1 O olfactory receptor 13J1|olfactory receptor OR9-2 20121230 -9606 392310 PGAM1P2 - - HGNC:42449 9 9p13.3 phosphoglycerate mutase 1 pseudogene 2 pseudo PGAM1P2 phosphoglycerate mutase 1 pseudogene 2 O - 20121230 -9606 392311 OR13C6P - OR37B HGNC:15101 9 9p13.3 olfactory receptor, family 13, subfamily C, member 6 pseudogene pseudo OR13C6P olfactory receptor, family 13, subfamily C, member 6 pseudogene O - 20121230 -9606 392313 OR2S1P - OR37D|OST611 HGNC:8275 9 9p13.3 olfactory receptor, family 2, subfamily S, member 1 pseudogene pseudo OR2S1P olfactory receptor, family 2, subfamily S, member 1 pseudogene O - 20121230 -9606 392322 ATP5A1P8 - - HGNC:37666 9 9p12 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 8 pseudo ATP5A1P8 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 8 O - 20121209 -9606 392334 LOC392334 - - - 9 9p12 calponin 2 pseudogene pseudo - - - - 20121230 -9606 392335 MYO5BP2 - - HGNC:38496 9 9q13 myosin VB pseudogene 2 pseudo MYO5BP2 myosin VB pseudogene 2 O - 20121230 -9606 392343 CNN2P3 - - HGNC:39528 9 9q21.11 calponin 2 pseudogene 3 pseudo CNN2P3 calponin 2 pseudogene 3 O - 20121230 -9606 392350 BTF3P4 RP11-61E5.1 - HGNC:38566 9 9q21.13 basic transcription factor 3 pseudogene 4 pseudo BTF3P4 basic transcription factor 3 pseudogene 4 O - 20121230 -9606 392352 LOC392352 - - - 9 9q21.13 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 392358 RPS6P13 - RPS6_6_992 HGNC:35772 9 9q21.33 ribosomal protein S6 pseudogene 13 pseudo RPS6P13 ribosomal protein S6 pseudogene 13 O - 20121230 -9606 392360 CTSL3 - HCTSL-s HGNC:33132|HPRD:18619 9 9q21.33 cathepsin L family member 3 pseudo CTSL3 cathepsin L family member 3 O - 20121230 -9606 392364 LOC392364 - - - 9 9q22.1 nuclear pore associated protein 1 pseudogene pseudo - - - - 20121230 -9606 392368 LOC392368 - - - 9 9q22.31 BEN domain containing 3 pseudogene pseudo - - - - 20121230 -9606 392371 KRT18P13 RP11-546O6.3 KRT18L3 HGNC:6432 9 9q22.33 keratin 18 pseudogene 13 pseudo KRT18P13 keratin 18 pseudogene 13 O - 20121230 -9606 392374 GAPDHP26 - - HGNC:37778 9 9q31.1 glyceraldehyde 3 phosphate dehydrogenase pseudogene 26 pseudo GAPDHP26 glyceraldehyde 3 phosphate dehydrogenase pseudogene 26 O - 20121230 -9606 392375 OR13D2P - - HGNC:15105 9 9q31.1 olfactory receptor, family 13, subfamily D, member 2 pseudogene pseudo OR13D2P olfactory receptor, family 13, subfamily D, member 2 pseudogene O - 20121230 -9606 392376 OR13C2 - OR37K HGNC:14701|Ensembl:ENSG00000257019|HPRD:14905|Vega:OTTHUMG00000020415 9 9q31.1 olfactory receptor, family 13, subfamily C, member 2 protein-coding OR13C2 olfactory receptor, family 13, subfamily C, member 2 O olfactory receptor 13C2|olfactory receptor OR9-12 20121230 -9606 392377 OR13C1P - OR37M HGNC:14699 9 9q31.1 olfactory receptor, family 13, subfamily C, member 1 pseudogene pseudo OR13C1P olfactory receptor, family 13, subfamily C, member 1 pseudogene O - 20121230 -9606 392382 RPL31P43 - RPL31_21_1004 HGNC:36512 9 9q31.2 ribosomal protein L31 pseudogene 43 pseudo RPL31P43 ribosomal protein L31 pseudogene 43 O - 20121230 -9606 392387 LOC392387 - - - 9 9q33.2 adenosylhomocysteinase pseudogene pseudo - - - - 20121230 -9606 392390 OR1L6 - HG16|OR1L7|OR9-30 HGNC:8218|Ensembl:ENSG00000171459|HPRD:17688|Vega:OTTHUMG00000020621 9 9q33.2 olfactory receptor, family 1, subfamily L, member 6 protein-coding OR1L6 olfactory receptor, family 1, subfamily L, member 6 O olfactory receptor 1L6|olfactory receptor 1L7|olfactory receptor OR9-30|olfactory receptor, family 1, subfamily L, member 7 20121230 -9606 392391 OR5C1 - OR5C2P|OR9-31|OR9-F HGNC:8331|Ensembl:ENSG00000148215|HPRD:15039|Vega:OTTHUMG00000020622 9 9q33.2 olfactory receptor, family 5, subfamily C, member 1 protein-coding OR5C1 olfactory receptor, family 5, subfamily C, member 1 O hRPK-465_F_21|olfactory receptor 5C1|olfactory receptor 5C2|olfactory receptor 9-F|olfactory receptor, family 5, subfamily C, member 2 pseudogene 20121230 -9606 392392 OR1K1 - hg99 HGNC:8212|Ensembl:ENSG00000165204|HPRD:14919|Vega:OTTHUMG00000020625 9 9q33.2 olfactory receptor, family 1, subfamily K, member 1 protein-coding OR1K1 olfactory receptor, family 1, subfamily K, member 1 O olfactory receptor 1K1 20121230 -9606 392399 LCN9 - 9230102I19Rik HGNC:17442|MIM:612903|Ensembl:ENSG00000148386|HPRD:13979|Vega:OTTHUMG00000020916 9 9q34.3 lipocalin 9 protein-coding LCN9 lipocalin 9 O MUP-like lipocalin|epididymal-specific lipocalin-9 20121230 -9606 392424 RPS5P8 - RPS5_5_1762 HGNC:36531 X Xp22.31 ribosomal protein S5 pseudogene 8 pseudo RPS5P8 ribosomal protein S5 pseudogene 8 O - 20121230 -9606 392425 RPS27AP17 - RPS27A_9_1763 HGNC:36877 X Xp22.31 ribosomal protein S27a pseudogene 17 pseudo RPS27AP17 ribosomal protein S27a pseudogene 17 O - 20121230 -9606 392426 LOC392426 - - - X Xp22.31 nucleolar and coiled-body phosphoprotein 1 pseudogene pseudo - - - - 20121230 -9606 392428 NPM1P9 - - HGNC:7929 X Xp22.2 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 9 pseudo NPM1P9 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 9 O - 20121230 -9606 392433 MAGEB6P1 - MAGEB6B HGNC:28824 X Xp21.3 melanoma antigen family B, 6 pseudogene 1 pseudo MAGEB6P1 melanoma antigen family B, 6 pseudogene 1 O - 20121230 -9606 392435 LOC392435 - - - X Xp21.3 melanoma antigen family B, 3 pseudogene pseudo - - - - 20121230 -9606 392436 LOC392436 - - - X Xp21.3 melanoma antigen family B, 4 pseudogene pseudo - - - - 20121230 -9606 392437 FTLP2 - FTLL2 HGNC:4001 X Xp21.2 ferritin, light polypeptide pseudogene 2 pseudo FTLP2 ferritin, light polypeptide pseudogene 2 O - 20121230 -9606 392439 LOC392439 - - - X Xp21.1 serine/arginine-rich splicing factor 2 pseudogene pseudo - - - - 20121230 -9606 392440 LOC392440 - - - X Xp21.1 melanoma antigen family B, 18 pseudogene pseudo - - - - 20121230 -9606 392442 LOC392442 - - - X Xp11.4 BCL2-associated athanogene pseudogene pseudo - - - - 20121230 -9606 392447 RPL32P36 hCG_1644323 RPL32_24_1772 HGNC:36613 X Xp11.4 ribosomal protein L32 pseudogene 36 pseudo RPL32P36 ribosomal protein L32 pseudogene 36 O - 20121230 -9606 392451 RPL19P20 - RPL19_12_1775 HGNC:35713 X Xp11.3 ribosomal protein L19 pseudogene 20 pseudo RPL19P20 ribosomal protein L19 pseudogene 20 O - 20121230 -9606 392452 LOC392452 - - - X Xp11.3 mitochondrial fission factor pseudogene pseudo - - - - 20121230 -9606 392454 PCNAP3 - - HGNC:43736 X Xp11.3 proliferating cell nuclear antigen pseudogene 3 pseudo PCNAP3 proliferating cell nuclear antigen pseudogene 3 O - 20121230 -9606 392456 LOC392456 - - - X Xp11.3 catenin, beta like 1 pseudogene pseudo - - - - 20121230 -9606 392459 CXXC1P1 - CXorf25|NCRNA00236 HGNC:27864 X Xp11.23 CXXC finger protein 1 pseudogene 1 pseudo CXXC1P1 CXXC finger protein 1 pseudogene 1 O - 20121230 -9606 392465 GLOD5 - - HGNC:33358|Ensembl:ENSG00000171433|Vega:OTTHUMG00000024125 X Xp11.23 glyoxalase domain containing 5 protein-coding GLOD5 glyoxalase domain containing 5 O glyoxalase domain-containing protein 5 20121230 -9606 392477 LOC392477 - - - X Xp11.21 malate dehydrogenase 1, NAD (soluble) pseudogene pseudo - - - - 20121230 -9606 392479 KRT8P17 RP5-1158B12.1 - HGNC:33369 X Xp11.21 keratin 8 pseudogene 17 pseudo KRT8P17 keratin 8 pseudogene 17 O - 20121230 -9606 392485 LOC392485 - - - X Xq12 ataxin 7-like 3 pseudogene pseudo - - - - 20121230 -9606 392486 GPR165P - PGR15 HGNC:21462 X Xq12 G protein-coupled receptor 165 pseudogene pseudo GPR165P G protein-coupled receptor 165 pseudogene O - 20121230 -9606 392489 LOC392489 - - - X Xq13.1 ras homolog family member G pseudogene pseudo - - - - 20121230 -9606 392490 FLJ44635 - - HPRD:13491 X Xq13.1 TPT1-like protein protein-coding - - - - 20121230 -9606 392497 RPS6P26 - RPS6_11_1786 HGNC:36713 X Xq13.2 ribosomal protein S6 pseudogene 26 pseudo RPS6P26 ribosomal protein S6 pseudogene 26 O - 20121230 -9606 392501 RPL26P36 - RPL26_16_1792 HGNC:36685 X Xq21.32 ribosomal protein L26 pseudogene 36 pseudo RPL26P36 ribosomal protein L26 pseudogene 36 O - 20121230 -9606 392505 RPL6P29 - RPL6_17_1796 HGNC:36382 X Xq21.33 ribosomal protein L6 pseudogene 29 pseudo RPL6P29 ribosomal protein L6 pseudogene 29 O - 20121230 -9606 392508 LOC392508 - - - X Xq22.1 RAD21 homolog (S. pombe) pseudogene pseudo - - - - 20121230 -9606 392509 ARL13A RP3-341D10.2 ARL13|dJ341D10.2 HGNC:31709|Ensembl:ENSG00000174225|HPRD:18526|Vega:OTTHUMG00000022013 X Xq22.1 ADP-ribosylation factor-like 13A protein-coding ARL13A ADP-ribosylation factor-like 13A O ADP-ribosylation factor-like 13|ADP-ribosylation factor-like protein 13A 20121230 -9606 392510 YWHAQP8 - - HGNC:37687 X Xq22.1 YWHAQ pseudogene 8 pseudo YWHAQP8 YWHAQ pseudogene 8 O - 20121230 -9606 392516 KRT18P49 RP1-3D11.1 - HGNC:33419 X Xq22.3 keratin 18 pseudogene 49 pseudo KRT18P49 keratin 18 pseudogene 49 O - 20121230 -9606 392517 NCBP2L - dJ820B18.1 HGNC:31795 X Xq22.3 nuclear cap binding protein subunit 2-like pseudo NCBP2L nuclear cap binding protein subunit 2-like O - 20121230 -9606 392520 RPS5P7 - RPS5_3_1801 HGNC:36881 X Xq23 ribosomal protein S5 pseudogene 7 pseudo RPS5P7 ribosomal protein S5 pseudogene 7 O - 20121230 -9606 392522 RPL18AP15 - RPL18A_4_1802 HGNC:36010 X Xq23 ribosomal protein L18a pseudogene 15 pseudo RPL18AP15 ribosomal protein L18a pseudogene 15 O - 20121230 -9606 392525 AKR1B1P8 - - HGNC:33496 X Xq23 aldo-keto reductase family 1, member B1 pseudogene 8 pseudo AKR1B1P8 aldo-keto reductase family 1, member B1 pseudogene 8 O - 20121230 -9606 392529 LOC392529 - - - X Xq24 cordon-bleu homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 392536 LOC392536 - - - X Xq25 filamin binding LIM protein 1 pseudogene pseudo - - - - 20121230 -9606 392538 LOC392538 - - - X Xq25 RuvB-like 2 (E. coli) pseudogene pseudo - - - - 20121230 -9606 392539 LOC392539 - - - X Xq25 tight junction associated protein 1 pseudogene pseudo - - - - 20121230 -9606 392540 OR11N1P - - HGNC:19582 X Xq26.2 olfactory receptor, family 11, subfamily N, member 1 pseudogene pseudo OR11N1P olfactory receptor, family 11, subfamily N, member 1 pseudogene O - 20121230 -9606 392543 LOC392543 - - - X Xq26.2 acylglycerol kinase pseudogene pseudo - - - - 20121230 -9606 392545 HMGB3P31 - - HGNC:39334 X Xq26.3 high mobility group box 3 pseudogene 31 pseudo HMGB3P31 high mobility group box 3 pseudogene 31 O - 20121230 -9606 392547 CROCCP1 - CROCCP HGNC:33602 X Xq26.3 ciliary rootlet coiled-coil, rootletin pseudogene 1 pseudo CROCCP1 ciliary rootlet coiled-coil, rootletin pseudogene 1 O - 20121230 -9606 392552 KRT8P6 - - HGNC:33360 X Xq26.3 keratin 8 pseudogene 6 pseudo KRT8P6 keratin 8 pseudogene 6 O - 20121230 -9606 392555 LOC392555 - - - X Xq27.2 melanoma antigen family C, 2 pseudogene pseudo - - - - 20121230 -9606 392557 RPL19P21 - RPL19_13_1819 HGNC:35868 X Xq28 ribosomal protein L19 pseudogene 21 pseudo RPL19P21 ribosomal protein L19 pseudogene 21 O - 20121230 -9606 392561 OR3B1P - - HGNC:14839 X Xq28 olfactory receptor, family 3, subfamily B, member 1 pseudogene pseudo OR3B1P olfactory receptor, family 3, subfamily B, member 1 pseudogene O - 20121230 -9606 392597 TRAPPC2P7 - SEDLP7 HGNC:10716 Y Yq11.23 trafficking protein particle complex 2 pseudogene 7 pseudo TRAPPC2P7 trafficking protein particle complex 2 pseudogene 7 O - 20121209 -9606 392603 ZNF736P2Y - ZNF736P2|ZNF736PY2 HGNC:37727 Y Yq11.23 zinc finger protein 736 pseudogene 2, Y-linked pseudo ZNF736P2Y zinc finger protein 736 pseudogene 2, Y-linked O - 20121209 -9606 392617 ELFN1 - PPP1R28 HGNC:33154|MIM:614964|Ensembl:ENSG00000225968 7 7p22.3 extracellular leucine-rich repeat and fibronectin type III domain containing 1 protein-coding ELFN1 extracellular leucine-rich repeat and fibronectin type III domain containing 1 O extracellular leucine-rich repeat and fibronectin type III containing 1|extracellular leucine-rich repeat and fibronectin type-III domain-containing protein 1|protein phosphatase 1 regulatory subunit 28|protein phosphatase 1, regulatory subunit 28 20121230 -9606 392636 AGMO tcag7.1136 TMEM195 HGNC:33784|MIM:613738|Ensembl:ENSG00000187546|HPRD:13362|Vega:OTTHUMG00000152387 7 7p21.2 alkylglycerol monooxygenase protein-coding AGMO alkylglycerol monooxygenase O glyceryl-ether monooxygenase|transmembrane protein 195 20121230 -9606 392713 PMS2P12 - PMS2L12|PMSL12 HGNC:13641 7 7q22.1 postmeiotic segregation increased 2 pseudogene 12 pseudo PMS2P12 postmeiotic segregation increased 2 pseudogene 12 O - 20121230 -9606 392748 RPS27P17 - RPS27_5_819 HGNC:36291 7 7q21.3 ribosomal protein S27 pseudogene 17 pseudo RPS27P17 ribosomal protein S27 pseudogene 17 O - 20121230 -9606 392752 OR7E7P - - HGNC:8457 7 7q21.3 olfactory receptor, family 7, subfamily E, member 7 pseudogene pseudo OR7E7P olfactory receptor, family 7, subfamily E, member 7 pseudogene O - 20121230 -9606 392781 RPS2P31 tcag7.979 RPS2_15_841 HGNC:36965 7 7q31.33 ribosomal protein S2 pseudogene 31 pseudo RPS2P31 ribosomal protein S2 pseudogene 31 O - 20121230 -9606 392787 LOC392787 tcag7.1102 - - 7 7q32.1 filamin C pseudogene pseudo - - - - 20121230 -9606 392843 IQCA1P1 tcag7.1202 IQCA1L|TCAG_9762 HGNC:22831 7 7q36.1 IQ motif containing with AAA domain 1 pseudogene 1 pseudo IQCA1P1 IQ motif containing with AAA domain 1 pseudogene 1 O - 20121230 -9606 392862 GRID2IP tcag7.1041 DELPHILIN HGNC:18464|MIM:610639|Ensembl:ENSG00000215045|Vega:OTTHUMG00000155531 7 7p22.1 glutamate receptor, ionotropic, delta 2 (Grid2) interacting protein protein-coding GRID2IP glutamate receptor, ionotropic, delta 2 (Grid2) interacting protein O delphilin|glutamate receptor, ionotropic, delta 2 (Grid2) interacting protein 1|glutamate receptor, ionotropic, delta 2-interacting protein 1 20121230 -9606 392872 RPL12P10 - RPL12_8_793 HGNC:22583 7 7p15.3 ribosomal protein L12 pseudogene 10 pseudo RPL12P10 ribosomal protein L12 pseudogene 10 O - 20121230 -9606 392979 RPL18P4 tcag7.23 RPL18_1_838 HGNC:36144 7 7q31.31 ribosomal protein L18 pseudogene 4 pseudo RPL18P4 ribosomal protein L18 pseudogene 4 O - 20121230 -9606 393046 OR2A5 - OR2A11P|OR2A26|OR2A8|OR7-138|OR7-141 HGNC:8232|Ensembl:ENSG00000221836|HPRD:14932|Vega:OTTHUMG00000158006 7 7q35 olfactory receptor, family 2, subfamily A, member 5 protein-coding OR2A5 olfactory receptor, family 2, subfamily A, member 5 O olfactory receptor 2A26|olfactory receptor 2A5|olfactory receptor 2A8|olfactory receptor 7-138/7-141|olfactory receptor, family 2, subfamily A, member 11 pseudogene|olfactory receptor, family 2, subfamily A, member 26|olfactory receptor, family 2, subfamily A, member 8 20121230 -9606 393076 LOC393076 tcag7.1213 - - 7 7q36.3 uncharacterized LOC393076 unknown - - - - 20121103 -9606 393078 LOC393078 tcag7.1023 - - 7 7q36.3 uncharacterized LOC393078 unknown - - - - 20111025 -9606 393093 MYP4 - - HGNC:32549 7 7q36 myopia 4 (high grade, autosomal dominant) unknown MYP4 myopia 4 (high grade, autosomal dominant) O - 20120622 -9606 394214 COL11A2P - cD0826Q1.1 HGNC:13947 6 6p21 collagen, type XI, alpha 2 pseudogene pseudo COL11A2P collagen, type XI, alpha 2 pseudogene O - 20121230 -9606 394217 FGF7P2 - FGF7L|PRED3 HGNC:17193 21 21q11.2 fibroblast growth factor 7 pseudogene 2 pseudo FGF7P2 fibroblast growth factor 7 pseudogene 2 O - 20121230 -9606 394254 GPR89P RP1-97D16.1 C11H1.2-Lp|SH120P HGNC:13951 6 6p21 G protein-coupled receptor 89 pseudogene pseudo GPR89P G protein-coupled receptor 89 pseudogene O - 20121230 -9606 394255 RPS10P1 - RPS10_7_669|RPS10p|dJ34B20.13 HGNC:13981 6 6p21 ribosomal protein S10 pseudogene 1 pseudo RPS10P1 ribosomal protein S10 pseudogene 1 O - 20121230 -9606 394261 KLHL30-AS1 - C2orf19 HGNC:31018|HPRD:18620 2 2q37.3 KLHL30 antisense RNA 1 unknown KLHL30-AS1 KLHL30 antisense RNA 1 O - 20120816 -9606 394263 MUC21 DAAP-223I5.2 C6orf205|KMQK697|MUC-21|bCX31G15.2 HGNC:21661|Ensembl:ENSG00000204544|HPRD:16665|Vega:OTTHUMG00000031216 6 6p21.32 mucin 21, cell surface associated protein-coding MUC21 mucin 21, cell surface associated O epiglycanin|mucin-21 20121230 -9606 394269 BRCA1P1 - LBRCA1|PsiBRCA1|pseudo-BRCA1 HGNC:28470 17 17q21 BRCA1 pseudogene 1 pseudo BRCA1P1 BRCA1 pseudogene 1 O - 20121230 -9606 399473 SPRED3 - Eve-3|spred-3 HGNC:31041|MIM:609293|Ensembl:ENSG00000188766|Vega:OTTHUMG00000182082 19 19q13 sprouty-related, EVH1 domain containing 3 protein-coding SPRED3 sprouty-related, EVH1 domain containing 3 O sprouty-related, EVH1 domain-containing protein 3 20121230 -9606 399474 TMEM200B - TTMB HGNC:33785|Ensembl:ENSG00000253304|HPRD:13188|Vega:OTTHUMG00000003658 1 1p35 transmembrane protein 200B protein-coding TMEM200B transmembrane protein 200B O transmembrane protein TTMA|two transmembrane B|two transmembrane domain-containing family member B 20121230 -9606 399491 LOC399491 - - - 16 16p13.1 GPS, PLAT and transmembrane domain-containing protein miscRNA - - - - 20121117 -9606 399495 SLC2A3P4 - - HGNC:31076 8 8q21.3 solute carrier family 2 (facilitated glucose transporter), member 3 pseudogene 4 pseudo SLC2A3P4 solute carrier family 2 (facilitated glucose transporter), member 3 pseudogene 4 O - 20121230 -9606 399496 SLC2AXP1 - - HGNC:31077 2 2q11.1 solute carrier family 2 (facilitated glucose transporter), pseudogene 1 pseudo SLC2AXP1 solute carrier family 2 (facilitated glucose transporter), pseudogene 1 O - 20121230 -9606 399511 TCEA1P2 - - HGNC:29891 3 3p22 transcription elongation factor A (SII), 1 pseudogene 2 pseudo TCEA1P2 transcription elongation factor A (SII), 1 pseudogene 2 O - 20121230 -9606 399512 SLC25A35 - - HGNC:31921|MIM:610818|Ensembl:ENSG00000125434|HPRD:13444|Vega:OTTHUMG00000178480 17 17p13.1 solute carrier family 25, member 35 protein-coding SLC25A35 solute carrier family 25, member 35 O solute carrier family 25 member 35 20121230 -9606 399516 OTSC7 - - HGNC:31084|MIM:611572 6 6q13-q16.1 otosclerosis 7 unknown OTSC7 otosclerosis 7 O - 20120622 -9606 399520 TIMM8AP1 - DDPP|TIMM8AP HGNC:17802 2 2q24.2 translocase of inner mitochondrial membrane 8 homolog A (yeast) pseudogene 1 pseudo TIMM8AP1 translocase of inner mitochondrial membrane 8 homolog A (yeast) pseudogene 1 O - 20121230 -9606 399564 GLC1H - - HGNC:23256|MIM:611276 2 2p16.3-p15 glaucoma 1, open angle, H (adult-onset) unknown GLC1H glaucoma 1, open angle, H (adult-onset) O - 20120622 -9606 399565 GLC3C - - HGNC:30028|MIM:613085 14 14q24.3-q31.1 glaucoma 3, primary congenital, C unknown GLC3C glaucoma 3, primary congenital, C O - 20120622 -9606 399656 FAM32B - - HGNC:30945 22 22q11.1 family with sequence similarity 32, member B (pseudogene) pseudo FAM32B family with sequence similarity 32, member B (pseudogene) O - 20121230 -9606 399664 MEX3D - MEX-3D|MEX3|OK/SW-cl.4|RKHD1|RNF193|TINO HGNC:16734|MIM:611009|Ensembl:ENSG00000181588|HPRD:15254|Vega:OTTHUMG00000150369 19 19p13.3 mex-3 homolog D (C. elegans) protein-coding MEX3D mex-3 homolog D (C. elegans) O RING finger and KH domain-containing protein 1|RING finger protein 193|RNA-binding protein MEX3D|bcl-2 ARE RNA binding protein|ring finger (C3HC4 type) and KH domain containing 1|ring finger and KH domain containing 1 20121230 -9606 399665 FAM102A RP11-203J24.7 C9orf132|EEIG1|SYM-3A|bA203J24.7 HGNC:31419|MIM:610891|Ensembl:ENSG00000167106|HPRD:13262|Vega:OTTHUMG00000020720 9 9q34.11 family with sequence similarity 102, member A protein-coding FAM102A family with sequence similarity 102, member A O C230093N12Rik|early estrogen-induced gene 1 protein|protein FAM102A|sym-3 homolog A 20121230 -9606 399666 ARL2BPP1 - HsT2883 HGNC:17742 18 18q23 ADP-ribosylation factor-like 2 binding protein pseudogene 1 pseudo ARL2BPP1 ADP-ribosylation factor-like 2 binding protein pseudogene 1 O - 20121230 -9606 399668 LINC00086 - NCRNA00086 HGNC:34499|HPRD:14610 X Xq26.3 long intergenic non-protein coding RNA 86 miscRNA LINC00086 long intergenic non-protein coding RNA 86 O - 20121230 -9606 399669 ZNF321P - ZNF321 HGNC:13827|HPRD:14606 19 19q13.41 zinc finger protein 321, pseudogene pseudo ZNF321P zinc finger protein 321, pseudogene O - 20121230 -9606 399670 RPL13AP17 - RPL13A_6_816 HGNC:36167|HPRD:14588 7 7q21.11 ribosomal protein L13a pseudogene 17 pseudo RPL13AP17 ribosomal protein L13a pseudogene 17 O - 20121230 -9606 399671 HEATR4 - - HGNC:16761|Ensembl:ENSG00000187105|HPRD:14657|Vega:OTTHUMG00000171602 14 14q24.3 HEAT repeat containing 4 protein-coding HEATR4 HEAT repeat containing 4 O HEAT repeat-containing protein 4 20121230 -9606 399687 MYO18A - MYSPDZ|SPR210 HGNC:31104|MIM:610067|Ensembl:ENSG00000196535|HPRD:10106|Vega:OTTHUMG00000166360 17 17q11.2 myosin XVIIIA protein-coding MYO18A myosin XVIIIA O MAJN|SP-A receptor subunit SP-R210 alphaS|molecule associated with JAK3 N-terminus|myosin 18A|myosin containing PDZ domain|myosin containing a PDZ domain|myosin-XVIIIa|unconventional myosin-XVIIIa 20121230 -9606 399693 MGC50722 - - HPRD:14668 9 - uncharacterized MGC50722 protein-coding - - - uncharacterized protein LOC399693 20121230 -9606 399694 SHC4 UNQ6438/PRO21364 RaLP|SHCD HGNC:16743|Ensembl:ENSG00000185634|HPRD:15289|Vega:OTTHUMG00000131513 15 15q21.1-q21.2 SHC (Src homology 2 domain containing) family, member 4 protein-coding SHC4 SHC (Src homology 2 domain containing) family, member 4 O SH2 domain protein C4|SHC-transforming protein 4|SHC-transforming protein D|hShcD|rai-like protein|src homology 2 domain-containing-transforming protein C4 20121230 -9606 399697 CTXN2 - - HGNC:31109|Ensembl:ENSG00000233932|Vega:OTTHUMG00000172152 15 15q21.1 cortexin 2 protein-coding CTXN2 cortexin 2 O cortexin-2 20121230 -9606 399706 LINC00200 - C10orf139|NCRNA00200|RP11-529L18.1 HGNC:30974|HPRD:17990 10 10p15.3 long intergenic non-protein coding RNA 200 miscRNA LINC00200 long intergenic non-protein coding RNA 200 O - 20121230 -9606 399708 LINC00701 - - HGNC:44674 10 10p15.3 long intergenic non-protein coding RNA 701 miscRNA LINC00701 long intergenic non-protein coding RNA 701 O - 20121230 -9606 399715 LOC399715 - - - 10 10p15.1 uncharacterized LOC399715 miscRNA - - - - 20121230 -9606 399716 DKFZp667F0711 - - - 10 10p15.1 uncharacterized protein DKFZp667F0711 unknown - - - - 20121230 -9606 399717 GATA3-AS1 - - HGNC:33786|HPRD:13518 10 10p14 GATA3 antisense RNA 1 miscRNA GATA3-AS1 GATA3 antisense RNA 1 O - 20121230 -9606 399726 C10orf114 - bA418C1.3 HGNC:31448|Ensembl:ENSG00000204682|HPRD:16574|Vega:OTTHUMG00000017795 10 10p12.31 chromosome 10 open reading frame 114 protein-coding C10orf114 chromosome 10 open reading frame 114 O putative uncharacterized protein C10orf114 20121230 -9606 399744 LOC399744 - - HPRD:18408 10 10p11.1 uncharacterized LOC399744 miscRNA - - - - 20121230 -9606 399746 ACTR3BP5 - FKSG74 HGNC:38682 10 10p11.1 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 5 pseudo ACTR3BP5 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 5 O - 20121230 -9606 399748 CAP1P2 - - HGNC:31970 10 10q11.21 CAP1 pseudogene 2 pseudo CAP1P2 CAP1 pseudogene 2 O - 20121230 -9606 399753 LOC399753 RP11-144G6.7 - - 10 10q11.22 uncharacterized LOC399753 pseudo - - - - 20121018 -9606 399761 BMS1P5 RP11-508M1.10-001 BMS1LP5 HGNC:23653|Vega:OTTHUMG00000018157 10 10q11.22 BMS1 pseudogene 5 pseudo BMS1P5 BMS1 pseudogene 5 O - 20121230 -9606 399774 PRKRIRP3 - - HGNC:39567 10 10q21.1 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 3 pseudo PRKRIRP3 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 3 O - 20121230 -9606 399783 LOC399783 - - - 10 10q22.3 zinc finger protein 532 pseudogene pseudo - - - - 20121230 -9606 399804 LOC399804 - - - 10 10q24.1 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 399806 FLJ41350 - - - 10 10q24.31 uncharacterized LOC399806 miscRNA - - - - 20121230 -9606 399814 C10orf120 RP11-318C4.1 bA318C4.1 HGNC:25707|Ensembl:ENSG00000183559|HPRD:16577|Vega:OTTHUMG00000019187 10 10q26.13 chromosome 10 open reading frame 120 protein-coding C10orf120 chromosome 10 open reading frame 120 O uncharacterized protein C10orf120 20121230 -9606 399815 LOC399815 - - - 10 10q26.13 chromosome 10 open reading frame 88 pseudogene pseudo - - - - 20121230 -9606 399818 METTL10 - C10orf138|Em:AC068896.3 HGNC:33787|Ensembl:ENSG00000203791|HPRD:14216|Vega:OTTHUMG00000019217 10 10q26.13 methyltransferase like 10 protein-coding METTL10 methyltransferase like 10 O methyltransferase-like protein 10 20121230 -9606 399819 FLJ40536 - - - 10 10q26.13 FLJ40536 protein unknown - - - - 20110512 -9606 399821 FLJ37035 - - - 10 10q26.13 uncharacterized LOC399821 miscRNA - - - - 20121230 -9606 399823 FOXI2 - - HGNC:32448|Ensembl:ENSG00000186766|HPRD:13540|Vega:OTTHUMG00000019250 10 10q26.2 forkhead box I2 protein-coding FOXI2 forkhead box I2 O forkhead box protein I2|homolog of mouse Foxi2 20121230 -9606 399827 FLJ46300 - - HPRD:13530 10 10q26.3 FLJ46300 protein miscRNA - - - - 20121230 -9606 399829 LOC399829 - - - 10 10q26.3 uncharacterized LOC399829 miscRNA - - - FLJ43861 protein 20121230 -9606 399832 DKFZp686M1136 - - - 10 10q26.3 uncharacterized LOC399832 protein-coding - - - - 20120508 -9606 399833 SPRNP1 - - HGNC:37819|HPRD:13492 10 10q26.3 shadow of prion protein homolog (zebrafish) pseudogene 1 pseudo SPRNP1 shadow of prion protein homolog (zebrafish) pseudogene 1 O - 20121230 -9606 399839 DUX4L11 XX-2136C48.2 - HGNC:38687 10 10q26.3 double homeobox 4 like 11 pseudo DUX4L11 double homeobox 4 like 11 O - 20121230 -9606 399844 FLJ45445 - - HPRD:13506 19 19p13.3 uncharacterized LOC399844 miscRNA - - - - 20121230 -9606 399851 LOC399851 - - - 11 11p15.5 uncharacterized LOC399851 unknown - - - - 20120710 -9606 399857 OR7E117P - OST716 HGNC:15303 11 11p15.4 olfactory receptor, family 7, subfamily E, member 117 pseudogene pseudo OR7E117P olfactory receptor, family 7, subfamily E, member 117 pseudogene O - 20121230 -9606 399876 NAV2-AS4 - - HGNC:40741 11 11p15.1 NAV2 antisense RNA 4 miscRNA NAV2-AS4 NAV2 antisense RNA 4 O - 20121230 -9606 399879 LINC00610 - C11orf55 HGNC:23262|HPRD:13500 11 11p13 long intergenic non-protein coding RNA 610 other LINC00610 long intergenic non-protein coding RNA 610 O - 20121021 -9606 399881 HNRNPKP3 - - HGNC:42376 11 11p12 heterogeneous nuclear ribonucleoprotein K pseudogene 3 pseudo HNRNPKP3 heterogeneous nuclear ribonucleoprotein K pseudogene 3 O - 20121230 -9606 399884 LOC399884 - - - 11 11p11.2 uncharacterized LOC399884 protein-coding - - - - 20120508 -9606 399886 FLJ41423 - - HPRD:13453 11 11p11.2 uncharacterized LOC399886 unknown - - - - 20121230 -9606 399888 FAM180B - - HGNC:34451|Ensembl:ENSG00000196666|Vega:OTTHUMG00000167871 11 11p11.2 family with sequence similarity 180, member B protein-coding FAM180B family with sequence similarity 180, member B O hypothetical gene supported by BC065704|protein FAM180B 20121230 -9606 399898 LOC399898 - - HPRD:18409 11 11q12.1 uncharacterized LOC399898 unknown - - - - 20120508 -9606 399900 LOC399900 - - HPRD:18410 11 11q12.3 uncharacterized LOC399900 unknown - - - - 20121230 -9606 399904 LOC399904 - - HPRD:18411 11 11q13.1 uncharacterized LOC399904 unknown - - - - 20120511 -9606 399909 PCNXL3 - - HGNC:18760|Ensembl:ENSG00000197136|Vega:OTTHUMG00000166539 11 11q13.1 pecanex-like 3 (Drosophila) protein-coding PCNXL3 pecanex-like 3 (Drosophila) O pecanex-like protein 3 20121230 -9606 399923 FLJ42102 - - HPRD:13457 11 11q13.4 uncharacterized LOC399923 miscRNA - - - - 20121230 -9606 399937 TRIM51BP - SPRYD5P|SPRYD5P1 HGNC:37145 11 11q14.3 tripartite motif-containing 51B, pseudogene pseudo TRIM51BP tripartite motif-containing 51B, pseudogene O - 20121230 -9606 399939 TRIM49DP - TRIM49D HGNC:43973 11 11q14.3 tripartite motif containing 49D, pseudogene protein-coding TRIM49DP tripartite motif containing 49D, pseudogene O - 20121230 -9606 399940 TRIM51EP - - HGNC:43970 11 11q14.3 tripartite motif-containing 51E, pseudogene pseudo TRIM51EP tripartite motif-containing 51E, pseudogene O - 20121222 -9606 399942 TUBAP2 - - HGNC:14531 11 11q14.3 tubulin, alpha pseudogene 2 pseudo TUBAP2 tubulin, alpha pseudogene 2 O - 20121230 -9606 399947 C11orf87 - LOH11CR1A HGNC:33788|Ensembl:ENSG00000185742|HPRD:14218|Vega:OTTHUMG00000166559 11 11q22.3 chromosome 11 open reading frame 87 protein-coding C11orf87 chromosome 11 open reading frame 87 O uncharacterized protein C11orf87 20121230 -9606 399948 C11orf92 - - HGNC:33789|HPRD:13513 11 11q23.1 chromosome 11 open reading frame 92 miscRNA C11orf92 chromosome 11 open reading frame 92 O - 20121230 -9606 399949 C11orf88 - - HGNC:25061|Ensembl:ENSG00000183644|HPRD:13529|Vega:OTTHUMG00000166720 11 11q23.1 chromosome 11 open reading frame 88 protein-coding C11orf88 chromosome 11 open reading frame 88 O UPF0722 protein C11orf88|hypothetical gene supported by BC039505 20121230 -9606 399950 ST13P10 - - HGNC:38745 11 11q23.1 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 10 pseudo ST13P10 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 10 O - 20121230 -9606 399959 MIR100HG - - HGNC:39522 11 11q24.1 mir-100-let-7a-2 cluster host gene (non-protein coding) miscRNA MIR100HG mir-100-let-7a-2 cluster host gene (non-protein coding) O - 20121230 -9606 399965 LOC399965 - - - 11 11q24.2 keratin 18 pseudogene pseudo - - - - 20121230 -9606 399967 PATE2 UNQ3112/PRO10144 C11orf38|PATE-M|UNQ3112 HGNC:32249|Ensembl:ENSG00000196844|HPRD:15617|Vega:OTTHUMG00000165856 11 11q24.2 prostate and testis expressed 2 protein-coding PATE2 prostate and testis expressed 2 O LVLF3112|PATE-like protein M|prostate and testis expressed protein 2|prostate and testis expression M 20121230 -9606 399968 PATE4 - PATE-B HGNC:35427|Ensembl:ENSG00000237353|Vega:OTTHUMG00000165235 11 11q24.2 prostate and testis expressed 4 protein-coding PATE4 prostate and testis expressed 4 O PATE-like protein B|prostate and testis expressed protein 4|prostate and testis expression B 20121230 -9606 399972 FLJ39051 - - - 11 11q24.2 uncharacterized LOC399972 miscRNA - - - - 20121230 -9606 399975 FLJ45950 - - - 11 11q24.3 FLJ45950 protein unknown - - - - 20120710 -9606 399979 SNX19 - CHET8 HGNC:21532|Ensembl:ENSG00000120451|HPRD:18621|Vega:OTTHUMG00000165663 11 11q25 sorting nexin 19 protein-coding SNX19 sorting nexin 19 O sorting nexin-19 20121230 -9606 399988 HSPA8P5 - - HGNC:44920 12 12p13.32 heat shock 70kDa protein 8 pseudogene 5 pseudo HSPA8P5 heat shock 70kDa protein 8 pseudogene 5 O - 20121230 -9606 399990 FLJ44874 - - - 12 12p13.31 FLJ44874 protein unknown - - - - 20120126 -9606 399994 HADHAP2 - - HGNC:38585 12 12p13.31 hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), alpha subunit pseudogene 2 pseudo HADHAP2 hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), alpha subunit pseudogene 2 O - 20121230 -9606 400002 FLJ46363 - - HPRD:13534 12 12p13.31 uncharacterized FLJ46363 unknown - - - - 20111109 -9606 400011 SUPT16HP - bcm670 HGNC:31388 12 12p12.3 suppressor of Ty 16 homolog (S. cerevisiae) pseudogene pseudo SUPT16HP suppressor of Ty 16 homolog (S. cerevisiae) pseudogene O - 20121230 -9606 400013 TCP1P3 - CCT1-1P|TCP1L3 HGNC:21630 12 12p12.2 t-complex 1 pseudogene 3 pseudo TCP1P3 t-complex 1 pseudogene 3 O - 20121230 -9606 400026 LOC400026 - - - 12 12q12 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene pseudo - - - - 20121230 -9606 400027 LOC400027 - - - 12 12q12 uncharacterized LOC400027 miscRNA - - - - 20121230 -9606 400036 LOC400036 - - - 12 12q13.13 DEAD (Asp-Glu-Ala-Asp) box polypeptide 23 pseudogene pseudo - - - - 20121230 -9606 400043 LOC400043 - - - 12 12q13.13 uncharacterized LOC400043 miscRNA - - - - 20121230 -9606 400046 FLJ41278 - - - 12 12q14.3 uncharacterized LOC400046 miscRNA - - - - 20121230 -9606 400055 RPL26P32 hCG_26523 RPL26_12_1262 HGNC:36448 12 12q21.31 ribosomal protein L26 pseudogene 32 pseudo RPL26P32 ribosomal protein L26 pseudogene 32 O - 20121230 -9606 400058 MKRN9P - MKRN5|MKRN9|MKRNP6|RNF65|ZNF127L3 HGNC:7116 12 12q21.32 makorin ring finger protein 9, pseudogene pseudo MKRN9P makorin ring finger protein 9, pseudogene O - 20121230 -9606 400061 LOC400061 - - - 12 12q22 NSA2 ribosome biogenesis homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 400064 RPS4XP1 - RPS4P1|RPS4X_6_1269 HGNC:32444 12 12q23.1 ribosomal protein S4X pseudogene 1 pseudo RPS4XP1 ribosomal protein S4X pseudogene 1 O - 20121230 -9606 400070 DKFZp686F0839 - - - 12 12q23.3 uncharacterized LOC400070 miscRNA - - - - 20120508 -9606 400073 C12orf76 - - HGNC:33790|Ensembl:ENSG00000174456|HPRD:13443|Vega:OTTHUMG00000169315 12 12q24.11 chromosome 12 open reading frame 76 protein-coding C12orf76 chromosome 12 open reading frame 76 O uncharacterized protein C12orf76 20121230 -9606 400084 LOC400084 - - - 12 12q24.31 uncharacterized LOC400084 miscRNA - - - - 20121230 -9606 400087 FLJ37505 - - - 12 12q24.32 uncharacterized LOC400087 miscRNA - - - - 20121230 -9606 400094 SNX19P2 - - HGNC:38115 13 13q11 sorting nexin 19 pseudogene 2 pseudo SNX19P2 sorting nexin 19 pseudogene 2 O - 20121230 -9606 400099 LOC400099 - - - 13 13q12.11 uncharacterized LOC400099 unknown - - - - 20121017 -9606 400110 ANKRD20A19P - - HGNC:42737|HPRD:13533 13 13q12.12 ankyrin repeat domain 20 family, member A19, pseudogene pseudo ANKRD20A19P ankyrin repeat domain 20 family, member A19, pseudogene O - 20121230 -9606 400120 SERTM1 RP11-16L6.1 C13orf36 HGNC:33792|Ensembl:ENSG00000180440|HPRD:14219|Vega:OTTHUMG00000016735 13 13q13.3 serine-rich and transmembrane domain containing 1 protein-coding SERTM1 serine-rich and transmembrane domain containing 1 O serine-rich and transmembrane domain-containing 1|serine-rich and transmembrane domain-containing protein 1 20121230 -9606 400121 LINC00547 - - HGNC:43682 13 13q13.3 long intergenic non-protein coding RNA 547 miscRNA LINC00547 long intergenic non-protein coding RNA 547 O - 20121230 -9606 400123 LINC00548 - - HGNC:43683 13 13q14.11 long intergenic non-protein coding RNA 548 miscRNA LINC00548 long intergenic non-protein coding RNA 548 O - 20121230 -9606 400126 DGKZP1 - - HGNC:39263 13 13q14.11 diacylglycerol kinase, zeta pseudogene 1 pseudo DGKZP1 diacylglycerol kinase, zeta pseudogene 1 O - 20121230 -9606 400128 LOC400128 - - - 13 13q14.11 uncharacterized LOC400128 miscRNA - - - - 20120508 -9606 400129 SMARCE1P5 RP11-484D5.2 - HGNC:39734 13 13q14.11 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 5 pseudo SMARCE1P5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 5 O - 20121230 -9606 400141 RPSAP53 - RPSA_19_1317 HGNC:36641 13 13q21.32 ribosomal protein SA pseudogene 53 pseudo RPSAP53 ribosomal protein SA pseudogene 53 O - 20121230 -9606 400156 RPS26P47 - RPS26|RPS26L|RPS26_24_1332 HGNC:36368 13 13q32.3 ribosomal protein S26 pseudogene 47 pseudo RPS26P47 ribosomal protein S26 pseudogene 47 O - 20121230 -9606 400165 C13orf35 RP11-88E10.3 - HGNC:33793|Ensembl:ENSG00000197595|HPRD:16926|Vega:OTTHUMG00000056478 13 13q34 chromosome 13 open reading frame 35 protein-coding C13orf35 chromosome 13 open reading frame 35 O putative uncharacterized protein C13orf35 20121230 -9606 400169 DKFZp451A211 - - HPRD:13202 13 13q34 uncharacterized LOC400169 protein-coding - - - - 20121230 -9606 400174 LOC400174 - - - 14 14q11.2 single stranded DNA binding protein 4 pseudogene pseudo - - - - 20121230 -9606 400206 DPPA3P2 - STELLAR HGNC:20417 14 14q13.3 developmental pluripotency associated 3 pseudogene 2 pseudo DPPA3P2 developmental pluripotency associated 3 pseudogene 2 O - 20121230 -9606 400207 FLJ42220 - - - 14 14q13.3 FLJ42220 protein unknown - - - - 20111109 -9606 400208 LINC00517 - C14orf26 HGNC:19831 14 14q21.1 long intergenic non-protein coding RNA 517 unknown LINC00517 long intergenic non-protein coding RNA 517 O - 20121021 -9606 400209 YTHDF2P1 - HGRG8|NY-REN-2|YTHDF2P HGNC:19865 14 14q21.1 YTH domain family, member 2 pseudogene 1 pseudo YTHDF2P1 YTH domain family, member 2 pseudogene 1 O - 20121230 -9606 400212 FLJ45671 - - - 14 14q22.1 uncharacterized LOC400212 miscRNA - - - - 20120508 -9606 400221 FLJ22447 - - - 14 14q23.1 uncharacterized LOC400221 miscRNA - - - - 20121230 -9606 400224 PLEKHD1 - UPF0639 HGNC:20148|Ensembl:ENSG00000175985|Vega:OTTHUMG00000171233 14 14q24.1 pleckstrin homology domain containing, family D (with coiled-coil domains) member 1 protein-coding PLEKHD1 pleckstrin homology domain containing, family D (with coiled-coil domains) member 1 O PH domain-containing family D member 1|UPF0639 protein|pleckstrin homology domain containing, family D (with M protein repeats) member 1|pleckstrin homology domain-containing family D member 1 20121230 -9606 400236 FOXN3-AS1 - - HGNC:44290 14 14q32.11 FOXN3 antisense RNA 1 miscRNA FOXN3-AS1 FOXN3 antisense RNA 1 O - 20121230 -9606 400238 LINC00642 - - HGNC:44293 14 14q32.12 long intergenic non-protein coding RNA 642 miscRNA LINC00642 long intergenic non-protein coding RNA 642 O - 20121230 -9606 400242 DICER1-AS1 - DICER1-AS HGNC:43017|HPRD:13502 14 14q32.13 DICER1 antisense RNA 1 miscRNA DICER1-AS1 DICER1 antisense RNA 1 O - 20121230 -9606 400258 C14orf180 - C14orf77|NRAC HGNC:33795|Ensembl:ENSG00000184601|HPRD:17383|Vega:OTTHUMG00000029806 14 14q32.33 chromosome 14 open reading frame 180 protein-coding C14orf180 chromosome 14 open reading frame 180 O nutritionally-regulated adipose and cardiac-enriched|transmembrane protein C14orf180 20121230 -9606 400322 HERC2P2 - D15F37S3|MN7 HGNC:4870 15 15q11.2 hect domain and RLD 2 pseudogene 2 pseudo HERC2P2 hect domain and RLD 2 pseudogene 2 O - 20121230 -9606 400347 LOC400347 - - - 15 15q13.3 REX4, RNA exonuclease 4 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 400359 C15orf53 - - HGNC:33796|Ensembl:ENSG00000175779|HPRD:13418|Vega:OTTHUMG00000129841 15 15q14 chromosome 15 open reading frame 53 protein-coding C15orf53 chromosome 15 open reading frame 53 O uncharacterized protein C15orf53 20121230 -9606 400360 C15orf54 - - HGNC:33797|Ensembl:ENSG00000175746|HPRD:13437|Vega:OTTHUMG00000129843 15 15q14 chromosome 15 open reading frame 54 protein-coding C15orf54 chromosome 15 open reading frame 54 O putative uncharacterized protein C15orf54 20121230 -9606 400385 RPL5P3 - HsT18216|RPL5_13_1449 HGNC:31034 15 15q23 ribosomal protein L5 pseudogene 3 pseudo RPL5P3 ribosomal protein L5 pseudogene 3 O - 20121230 -9606 400389 RPL12P35 - RPL12_13_1452 HGNC:35969 15 15q23 ribosomal protein L12 pseudogene 35 pseudo RPL12P35 ribosomal protein L12 pseudogene 35 O - 20121230 -9606 400403 DNM1P9 - DNM1DN9|DNM1DN9-1|DNM1DN9@ HGNC:21126 15 15q24.3 DNM1 pseudogene 9 pseudo DNM1P9 DNM1 pseudogene 9 O - 20121230 -9606 400406 LOC400406 - - - 15 15q24.3 ADAM metallopeptidase with thrombospondin type 1 motif, 7 pseudogene pseudo - - - - 20121230 -9606 400410 ST20 - HCCS-1 HGNC:33520|Ensembl:ENSG00000180953|Vega:OTTHUMG00000172078 15 15q25.1 suppressor of tumorigenicity 20 protein-coding ST20 suppressor of tumorigenicity 20 O cervical cancer suppressor-1|human cervical cancer suppressor gene 1 protein|suppressor of tumorigenicity 20 protein 20121230 -9606 400419 LOC400419 - - - 15 15q25.2 ADAM metallopeptidase with thrombospondin type 1 motif, 7 pseudogene pseudo - - - - 20121209 -9606 400433 DNM1P40 - DNM1DN11-5|DNM1DN11.5|DNM1DN11@ HGNC:35190 15 15q25.2 DNM1 pseudogene 40 pseudo DNM1P40 DNM1 pseudogene 40 O - 20121230 -9606 400446 LOC400446 - - - 15 15q26.1 PERP, TP53 apoptosis effector pseudogene pseudo - - - - 20121230 -9606 400451 FAM174B - - HGNC:34339|Ensembl:ENSG00000185442|HPRD:14220|Vega:OTTHUMG00000171744 15 15q26.1 family with sequence similarity 174, member B protein-coding FAM174B family with sequence similarity 174, member B O membrane protein FAM174B 20121230 -9606 400454 UNQ9370 UNQ9370/PRO34162 - HPRD:17131 15 15q26.1 IFMQ9370 unknown - - - - 20121230 -9606 400456 LOC400456 - - - 15 15q26.2 uncharacterized LOC400456 miscRNA - - - - 20121230 -9606 400464 LOC400464 - - HPRD:18413 15 15q26.3 uncharacterized LOC400464 unknown - - - - 20121230 -9606 400499 LOC400499 - - Ensembl:ENSG00000188897|HPRD:18414 16 16p13.13 uncharacterized LOC400499 protein-coding - - - - 20121230 -9606 400500 BCAR4 - - HGNC:22170|MIM:613746 16 16p13.13 breast cancer anti-estrogen resistance 4 (non-protein coding) miscRNA BCAR4 breast cancer anti-estrogen resistance 4 (non-protein coding) O - 20121230 -9606 400506 C16orf88 - 101F10.1|FAM191A HGNC:34404|Ensembl:ENSG00000103550|HPRD:18415|Vega:OTTHUMG00000177249 16 16p12.3 chromosome 16 open reading frame 88 protein-coding C16orf88 chromosome 16 open reading frame 88 O family with sequence similarity 191, member A|protein C16orf88|testis-specific gene 118 protein 20121230 -9606 400508 CRYM-AS1 - NCRNA00169 HGNC:34405 16 16p12.2 CRYM antisense RNA 1 miscRNA CRYM-AS1 CRYM antisense RNA 1 O - 20121230 -9606 400511 FLJ45256 - - HPRD:16985 16 16p12.1 uncharacterized LOC400511 unknown - - - - 20121230 -9606 400512 FLJ21408 - - - 16 16p12.1 uncharacterized LOC400512 miscRNA - - - - 20121230 -9606 400533 FLJ26245 - - - 16 16p11.1 uncharacterized LOC400533 miscRNA - - - - 20121230 -9606 400535 FLJ44674 - - HPRD:13494 16 16q12.1 FLJ44674 protein unknown - - - - 20120511 -9606 400539 FLJ27243 - - - 16 16q21 FLJ27243 protein unknown - - - - 20121230 -9606 400541 LOC400541 - - - 16 16q22.1 uncharacterized LOC400541 miscRNA - - - - 20120909 -9606 400548 LOC400548 - - - 16 16q24.1 uncharacterized LOC400548 miscRNA - - - - 20121230 -9606 400550 FOXF1-AS1 - - HGNC:43894|MIM:614975 16 16q24.1 FOXF1 antisense RNA 1 (head to head) miscRNA FOXF1-AS1 FOXF1 antisense RNA 1 (head to head) O - 20121230 -9606 400553 LOC400553 - - - 16 16q24.2 uncharacterized LOC400553 unknown - - - FLJ44904 protein 20121230 -9606 400555 C16orf85 - - HGNC:33799|HPRD:13509 16 16q24.2 chromosome 16 open reading frame 85 unknown C16orf85 chromosome 16 open reading frame 85 O - 20121021 -9606 400558 LOC400558 - - - 16 16q24.3 uncharacterized LOC400558 miscRNA - - - - 20121230 -9606 400566 C17orf97 - - HGNC:33800|HPRD:18416 17 17p13.3 chromosome 17 open reading frame 97 protein-coding C17orf97 chromosome 17 open reading frame 97 O uncharacterized protein C17orf97 20121230 -9606 400568 LOC400568 - - - 17 17p13.2 uncharacterized LOC400568 unknown - - - - 20120508 -9606 400569 MED11 HSPC296 - HGNC:32687|MIM:612383|Ensembl:ENSG00000161920|HPRD:14709|Vega:OTTHUMG00000177896 17 17p13.2 mediator complex subunit 11 protein-coding MED11 mediator complex subunit 11 O mediator of RNA polymerase II transcription subunit 11|mediator of RNA polymerase II transcription, subunit 11 homolog 20121230 -9606 400576 FLJ45831 - - HPRD:13514 17 17p12 uncharacterized FLJ45831 unknown - - - - 20121230 -9606 400578 KRT16P2 - - HGNC:37807 17 17p11.2 keratin 16 pseudogene 2 pseudo KRT16P2 keratin 16 pseudogene 2 O - 20121230 -9606 400579 FLJ35934 - - HPRD:13421 17 17p11.2 FLJ35934 miscRNA - - - - 20120710 -9606 400581 GRAPL - - HGNC:37240|Ensembl:ENSG00000189152|Vega:OTTHUMG00000059435 17 17p11.2 GRB2-related adaptor protein-like protein-coding GRAPL GRB2-related adaptor protein-like O GRB2-related adapter protein LOC400581|GRB2-related adapter protein-like 20121230 -9606 400590 LOC400590 - - - 17 17q11.2 uncharacterized LOC400590 unknown - - - - 20121230 -9606 400591 C17orf102 - - HGNC:34412|Ensembl:ENSG00000197322|HPRD:16975|Vega:OTTHUMG00000156883 17 17q12 chromosome 17 open reading frame 102 protein-coding C17orf102 chromosome 17 open reading frame 102 O uncharacterized protein C17orf102 20121230 -9606 400593 FLJ43944 - - - 17 17q12 FLJ43944 protein unknown - - - - 20120622 -9606 400604 TOB1-AS1 - - HGNC:44340 17 17q21.33 TOB1 antisense RNA 1 miscRNA TOB1-AS1 TOB1 antisense RNA 1 O - 20121230 -9606 400612 FLJ37448 - - - 17 17q23.3 uncharacterized LOC400612 miscRNA - - - - 20120508 -9606 400617 KCNJ2-AS1 - - HGNC:43720 17 17q24.3 KCNJ2 antisense RNA 1 (head to head) miscRNA KCNJ2-AS1 KCNJ2 antisense RNA 1 (head to head) O - 20121230 -9606 400618 FLJ37644 - - - 17 17q24.3 uncharacterized LOC400618 miscRNA - - - - 20121230 -9606 400619 LINC00511 - - HGNC:43564 17 17q24.3 long intergenic non-protein coding RNA 511 miscRNA LINC00511 long intergenic non-protein coding RNA 511 O - 20121230 -9606 400620 LOC400620 - - - 17 17q25.1 uncharacterized LOC400620 miscRNA - - - - 20121230 -9606 400622 LOC400622 - - - 17 17q25.3 uncharacterized LOC400622 unknown - - - - 20120508 -9606 400624 FLJ45079 - - HPRD:16979 17 17q25.3 FLJ45079 protein miscRNA - - - - 20121230 -9606 400627 FLJ46026 - - HPRD:16999 17 17q25.3 FLJ46026 protein unknown - - - - 20121230 -9606 400629 TEX19 - - HGNC:33802|Ensembl:ENSG00000182459|HPRD:16940|Vega:OTTHUMG00000132857 17 17q25.3 testis expressed 19 protein-coding TEX19 testis expressed 19 O testis-expressed sequence 19 protein 20121230 -9606 400643 LINC00668 - - HGNC:44328 18 18p11.31 long intergenic non-protein coding RNA 668 miscRNA LINC00668 long intergenic non-protein coding RNA 668 O - 20121230 -9606 400644 FLJ44255 - - - 18 18p11.21 uncharacterized LOC400644 miscRNA - - - - 20120508 -9606 400645 RBM22P1 - - HGNC:31466 18 18q11.2-q12.1 RNA binding motif protein 22 pseudogene 1 pseudo RBM22P1 RNA binding motif protein 22 pseudogene 1 O - 20121230 -9606 400649 FLJ44087 - - - 18 18q12.3 uncharacterized LOC400649 miscRNA - - - - 20120508 -9606 400650 TPMTP1 - - HGNC:17490 18 18q21.1 thiopurine S-methyltransferase pseudogene 1 pseudo TPMTP1 thiopurine S-methyltransferase pseudogene 1 O - 20121230 -9606 400652 RPS3AP49 - RPS3A_23_1608 HGNC:36810 18 18q21.32 ribosomal protein S3a pseudogene 49 pseudo RPS3AP49 ribosomal protein S3a pseudogene 49 O - 20121230 -9606 400653 C18orf49 - - HGNC:25977 18 18q21.33 chromosome 18 open reading frame 49 unknown C18orf49 chromosome 18 open reading frame 49 O - 20120622 -9606 400654 LOC400654 - - - 18 18q22.1 uncharacterized LOC400654 miscRNA - - - - 20121230 -9606 400655 LOC400655 - - - 18 18q22.3 uncharacterized LOC400655 miscRNA - - - - 20121230 -9606 400657 LOC400657 - - HPRD:17385 18 18q22.3 uncharacterized LOC400657 miscRNA - - - - 20121230 -9606 400658 FLJ44313 - - HPRD:13489 18 18q23 FLJ44313 protein unknown - - - - 20121230 -9606 400660 LINC00683 - - HGNC:44467 18 18q23 long intergenic non-protein coding RNA 683 miscRNA LINC00683 long intergenic non-protein coding RNA 683 O - 20121230 -9606 400661 FLJ44881 - - HPRD:13497 18 18q23 FLJ44881 unknown - - - - 20121230 -9606 400662 LOC400662 - - - 18 18q23 uncharacterized LOC400662 unknown - - - - 20120508 -9606 400666 FLJ45684 - - HPRD:16989 19 19p13.3 FLJ45684 locus unknown - - - - 20111109 -9606 400668 PRSS57 UNQ782/PRO1599 PRSSL1|UNQ782 HGNC:31397|Ensembl:ENSG00000185198|HPRD:17916|Vega:OTTHUMG00000180662 19 19p13.3 protease, serine, 57 protein-coding PRSS57 protease, serine, 57 O GLGL782|protease, serine-like 1|serine protease 1-like protein 1|serine protease 57 20121230 -9606 400673 VMAC - - HGNC:33803|Ensembl:ENSG00000187650|HPRD:18623|Vega:OTTHUMG00000180618 19 19p13.3 vimentin-type intermediate filament associated coiled-coil protein protein-coding VMAC vimentin-type intermediate filament associated coiled-coil protein O vimentin-type IF-associated coiled-coil protein|vimentin-type intermediate filament-associated coiled-coil protein 20121230 -9606 400680 LOC400680 - - - 19 19p12 uncharacterized LOC400680 miscRNA - - - - 20121230 -9606 400682 LOC400682 - - - 19 19p12 zinc finger protein 100-like protein-coding - - - - 20121230 -9606 400684 LOC400684 - - - 19 19q13.11 uncharacterized LOC400684 miscRNA - - - - 20121230 -9606 400685 LOC400685 - - - 19 19q13.11 uncharacterized LOC400685 miscRNA - - - - 20121230 -9606 400692 LOC400692 - - - 19 19q13.12 uncharacterized LOC400692 unknown - - - - 20121230 -9606 400696 LGALS17A - - HPRD:14221 19 19q13.2 Charcot-Leyden crystal protein pseudogene pseudo - - - - 20121230 -9606 400706 LOC400706 - - - 19 19q13.32 uncharacterized LOC400706 miscRNA - - - - 20121230 -9606 400707 LOC400707 - - HPRD:18417 19 19q13.32 uncharacterized LOC400707 unknown - - - - 20120710 -9606 400709 SIGLEC16 - SIGLECP16|Siglec-P16 HGNC:24851 19 19q13.33 sialic acid binding Ig-like lectin 16 (gene/pseudogene) pseudo SIGLEC16 sialic acid binding Ig-like lectin 16 (gene/pseudogene) O - 20121230 -9606 400710 FLJ26850 - - HPRD:16927 19 19q13.33 FLJ26850 protein miscRNA - - - - 20121230 -9606 400713 ZNF880 - - HGNC:37249|Ensembl:ENSG00000221923|Vega:OTTHUMG00000167972 19 19q13.41 zinc finger protein 880 protein-coding ZNF880 zinc finger protein 880 O zinc finger protein LOC400713 20121230 -9606 400720 ZNF772 - - HGNC:33106|Ensembl:ENSG00000197128|HPRD:18624|Vega:OTTHUMG00000168007 19 19q13.43 zinc finger protein 772 protein-coding ZNF772 zinc finger protein 772 O - 20121230 -9606 400728 FAM87B - - HGNC:32236 1 1p36.33 family with sequence similarity 87, member B unknown FAM87B family with sequence similarity 87, member B O - 20121230 -9606 400735 PRAMEF4 - RP5-845O24.6 HGNC:31971|Ensembl:ENSG00000243073|HPRD:17992|Vega:OTTHUMG00000001987 1 1p36.21 PRAME family member 4 protein-coding PRAMEF4 PRAME family member 4 O - 20121230 -9606 400736 PRAMEF13 RP11-219C24.4 - HGNC:13262|Ensembl:ENSG00000204495|Vega:OTTHUMG00000008034 1 1p36.21 PRAME family member 13 protein-coding PRAMEF13 PRAME family member 13 O - 20121230 -9606 400743 LOC400743 - - - 1 1p36.13 uncharacterized LOC400743 unknown - - - - 20121230 -9606 400745 SH2D5 - - HGNC:28819|Ensembl:ENSG00000189410|Vega:OTTHUMG00000002620 1 1p36.12 SH2 domain containing 5 protein-coding SH2D5 SH2 domain containing 5 O SH2 domain-containing protein 5 20121230 -9606 400746 NCMAP - C1orf130|MP11 HGNC:29332|Ensembl:ENSG00000184454|HPRD:16963|Vega:OTTHUMG00000003317 1 1p36.11 noncompact myelin associated protein protein-coding NCMAP noncompact myelin associated protein O myelin protein of 11 kDa|noncompact myelin-associated protein 20121230 -9606 400748 LOC400748 - - - 1 1p35.2 uncharacterized LOC400748 unknown - - - - 20120508 -9606 400750 LOC400750 - - - 1 1p34.3 heat shock 70kDa protein 5 (glucose-regulated protein, 78kDa) pseudogene pseudo - - - - 20121230 -9606 400752 LOC400752 hCG_1820661 - - 1 1p34.1 uncharacterized LOC400752 miscRNA - - - - 20121230 -9606 400756 LOC400756 - - - 1 1p31.3 uncharacterized LOC400756 unknown - - - - 20121230 -9606 400757 C1orf141 RP4-547N15.2 - HGNC:32044|Ensembl:ENSG00000203963|HPRD:18418|Vega:OTTHUMG00000009406 1 1p31.3 chromosome 1 open reading frame 141 protein-coding C1orf141 chromosome 1 open reading frame 141 O uncharacterized protein C1orf141 20121230 -9606 400759 GBP1P1 - - HGNC:39561 1 1p22.2 guanylate binding protein 1, interferon-inducible pseudogene 1 pseudo GBP1P1 guanylate binding protein 1, interferon-inducible pseudogene 1 O - 20121230 -9606 400761 FLJ27354 - - - 1 1p22.2 uncharacterized LOC400761 miscRNA - - - - 20121230 -9606 400765 MIR137HG - - HGNC:42871|HPRD:16937 1 1p21.3 MIR137 host gene (non-protein coding) miscRNA MIR137HG MIR137 host gene (non-protein coding) O - 20121230 -9606 400768 LOC400768 - - - 1 1p13.3 uncharacterized LOC400768 unknown - - - - 20121209 -9606 400769 LOC400769 - - - 1 1p13.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 400793 C1orf226 hCG_2036738 - HGNC:34351|Ensembl:ENSG00000239887|Vega:OTTHUMG00000031376 1 1q23.3 chromosome 1 open reading frame 226 protein-coding C1orf226 chromosome 1 open reading frame 226 O uncharacterized protein C1orf226 20121230 -9606 400794 LOC400794 - - - 1 1q23.3-q24.1 uncharacterized LOC400794 miscRNA - - - - 20121230 -9606 400797 LINC00083 - NCRNA00083 HGNC:34521|HPRD:16970 1 1q25.2 long intergenic non-protein coding RNA 83 unknown LINC00083 long intergenic non-protein coding RNA 83 O - 20121230 -9606 400798 C1orf220 RP5-990P15.2 - HGNC:33805|HPRD:13417 1 1q25.2 chromosome 1 open reading frame 220 miscRNA C1orf220 chromosome 1 open reading frame 220 O - 20121230 -9606 400799 FLJ46134 - - - 1 1q25.3 uncharacterized LOC400799 miscRNA - - - - 20121018 -9606 400800 FLJ43585 - - - 1 1q31.3-q32.1 uncharacterized LOC400800 unknown - - - - 20120508 -9606 400804 C1orf140 - - HPRD:17386 1 1q41 uncharacterized LOC400804 miscRNA - - - - 20121230 -9606 400812 FLJ39095 - - - 1 1q44 uncharacterized LOC400812 unknown - - - - 20120508 -9606 400818 NBPF9 RP11-89F3.1 AE01|NBPF10 HGNC:31991|MIM:613999|Ensembl:ENSG00000168614|Vega:OTTHUMG00000013845 1 1q21.1 neuroblastoma breakpoint family, member 9 protein-coding NBPF9 neuroblastoma breakpoint family, member 9 O neuroblastoma breakpoint family, member 10|uncharacterized protein LOC400818 20121230 -9606 400823 FAM177B RP11-452F19.2 - HGNC:34395|Ensembl:ENSG00000197520|HPRD:16965|Vega:OTTHUMG00000037766 1 1q41 family with sequence similarity 177, member B protein-coding FAM177B family with sequence similarity 177, member B O protein FAM177B 20121230 -9606 400830 DEFB132 RP5-1103G7.1 DEFB32|UNQ827 HGNC:33806|Ensembl:ENSG00000186458|HPRD:16792|Vega:OTTHUMG00000043061 20 20p13 defensin, beta 132 protein-coding DEFB132 defensin, beta 132 O BD-32|DEFB-32|KFLL827|RP5-1103G7.6|beta-defensin 132|beta-defensin 32|defensin HEL-75|defensin, beta 32 20121230 -9606 400831 C20orf202 - - HGNC:37254|Ensembl:ENSG00000215595|HPRD:17387|Vega:OTTHUMG00000129375 20 20p13 chromosome 20 open reading frame 202 protein-coding C20orf202 chromosome 20 open reading frame 202 O uncharacterized protein C20orf202 20121230 -9606 400836 SDAD1P2 - - HGNC:31404 20 20p12.2 SDA1 domain containing 1 pseudogene 2 pseudo SDAD1P2 SDA1 domain containing 1 pseudogene 2 O - 20121230 -9606 400839 FLJ33581 - - - 20 20p11.21 uncharacterized LOC400839 miscRNA - - - - 20121230 -9606 400841 FLJ45832 - - HPRD:16992 20 20q11.1 FLJ45832 protein unknown - - - - 20121230 -9606 400850 FLJ44790 - - HPRD:16974 20 20q13.33 uncharacterized FLJ44790 unknown - - - - 20121230 -9606 400860 FLJ42200 - - HPRD:16958 21 21q21.2 FLJ42200 protein other - - - - 20121017 -9606 400863 LINC00650 - - HGNC:44306|HPRD:13519 21 21q22.11 long intergenic non-protein coding RNA 650 unknown LINC00650 long intergenic non-protein coding RNA 650 O - 20121230 -9606 400866 LINC00114 - C21orf24|NCRNA00114 HGNC:1265|MIM:611723|HPRD:10744 21 21q22.2 long intergenic non-protein coding RNA 114 miscRNA LINC00114 long intergenic non-protein coding RNA 114 O - 20121230 -9606 400867 FLJ45139 - - HPRD:16980 21 21q22.2 FLJ45139 protein unknown - - - - 20121230 -9606 400870 FLJ41733 - - HPRD:16955 21 21q22.3 FLJ41733 protein unknown - - - - 20121230 -9606 400879 LOC400879 - - - 22 22q11.1 uncharacterized LOC400879 unknown - - - - 20121209 -9606 400891 LOC400891 - - HPRD:18419 22 22q11.21 chromosome 14 open reading frame 166B pseudogene pseudo - - - - 20121230 -9606 400892 BCRP2 - BCR-2|BCR2|BCRL2 HGNC:1015|MIM:113630|HPRD:13467 22 22q11.21 breakpoint cluster region pseudogene 2 pseudo BCRP2 breakpoint cluster region pseudogene 2 O - 20121230 -9606 400916 CHCHD10 - C22orf16|N27C7-4 HGNC:15559|Ensembl:ENSG00000250479|HPRD:12797|Vega:OTTHUMG00000150736 22 22q11.23 coiled-coil-helix-coiled-coil-helix domain containing 10 protein-coding CHCHD10 coiled-coil-helix-coiled-coil-helix domain containing 10 O coiled-coil-helix-coiled-coil-helix domain-containing protein 10, mitochondrial|protein N27C7-4 20121230 -9606 400926 FLJ90680 - - HPRD:13543 22 22q12.3 FLJ90680 protein unknown - - - - 20120511 -9606 400927 LOC400927 - - - 22 22q13.1 TPTE and PTEN homologous inositol lipid phosphatase pseudogene pseudo - - - hypothetical protein LOC400927 20121230 -9606 400930 DKFZp547B139 - - - 22 22q13.31 uncharacterized protein DKFZp547B139 protein-coding - - - uncharacterized protein LOC400930 20111025 -9606 400931 MIRLET7BHG RP4-695O20__B.10-001 RP4-695O20__B.10 HGNC:37189|HPRD:16929 22 22q13.31 MIRLET7B host gene (non-protein coding) miscRNA MIRLET7BHG MIRLET7B host gene (non-protein coding) O - 20121230 -9606 400932 FLJ46257 RP11-191L9.1 - HPRD:17000 22 22q13.31 uncharacterized LOC400932 miscRNA - - - - 20121230 -9606 400934 FLJ44385 - - HPRD:13490 22 22q13.33 uncharacterized FLJ44385 unknown - - - - 20120809 -9606 400935 IL17REL RP3-355C18.6 - HGNC:33808|MIM:613414|Ensembl:ENSG00000188263|HPRD:13456|Vega:OTTHUMG00000150242 22 22q13.33 interleukin 17 receptor E-like protein-coding IL17REL interleukin 17 receptor E-like O IL-17 receptor E-like|IL-17RE-like|putative interleukin-17 receptor E-like 20121230 -9606 400940 LOC400940 - - HPRD:16952 2 2p25.2 uncharacterized LOC400940 miscRNA - - - - 20121230 -9606 400941 LINC00487 - - HGNC:42947|HPRD:13462 2 2p25.2 long intergenic non-protein coding RNA 487 miscRNA LINC00487 long intergenic non-protein coding RNA 487 O - 20121230 -9606 400943 LOC400943 UNQ5830/PRO19650/PRO19816 - HPRD:15618 2 2p25.1 uncharacterized LOC400943 unknown - - - - 20120511 -9606 400945 FLJ41481 - - - 2 2p24.2 uncharacterized LOC400945 unknown - - - - 20120511 -9606 400946 FLJ12334 - - - 2 2p24.1 uncharacterized LOC400946 miscRNA - - - - 20121230 -9606 400949 FKSG49 - FKSG52|FKSG55|FKSG56|FKSG57|FKSG60|FKSG61|FKSG64|FKSG65|FKSG66|FKSG67|FKSG68|FKSG70 - 5 5q13.3 FKSG49 other - - - - 20121018 -9606 400950 C2orf91 - - HGNC:42966|Ensembl:ENSG00000205086|Vega:OTTHUMG00000152307 2 2p21 chromosome 2 open reading frame 91 protein-coding C2orf91 chromosome 2 open reading frame 91 O uncharacterized protein C2orf91 20121230 -9606 400952 UNQ6975 UNQ6975/PRO21958 - - 2 2p21 putative uncharacterized protein UNQ6975/PRO21958 miscRNA - - - - 20121230 -9606 400954 EML6 - - HGNC:35412|Ensembl:ENSG00000214595|Vega:OTTHUMG00000152035 2 2p16.1 echinoderm microtubule associated protein like 6 protein-coding EML6 echinoderm microtubule associated protein like 6 O EMAP-6|echinoderm microtubule-associated protein-like 6 20121230 -9606 400955 FLJ30838 - - - 2 2p16.1 uncharacterized LOC400955 miscRNA - - - - 20121230 -9606 400957 FLJ16341 - - - 2 2p16.1 uncharacterized LOC400957 miscRNA - - - - 20121230 -9606 400958 LOC400958 - - - 2 2p14 uncharacterized LOC400958 miscRNA - - - - 20121230 -9606 400960 PCBP1-AS1 - - HGNC:42948 2 2p14 PCBP1 antisense RNA 1 miscRNA PCBP1-AS1 PCBP1 antisense RNA 1 O - 20121230 -9606 400961 PAIP2B - - HGNC:29200|MIM:611018|Ensembl:ENSG00000124374|Vega:OTTHUMG00000153284 2 2p13.3 poly(A) binding protein interacting protein 2B protein-coding PAIP2B poly(A) binding protein interacting protein 2B O PABP-interacting protein 2B|PAIP-2B|poly(A)-binding protein-interacting protein 2B|polyadenylate-binding protein-interacting protein 2B 20121230 -9606 400963 RPS2P17 - RPS2_6_247 HGNC:35764 2 2p11.2 ribosomal protein S2 pseudogene 17 pseudo RPS2P17 ribosomal protein S2 pseudogene 17 O - 20121230 -9606 400965 LOC400965 - - HPRD:18421 2 2p11.2 uncharacterized LOC400965 unknown - - - - 20120511 -9606 400966 RGPD1 - RGP1|RGPD2|RanBP2L2 HGNC:32414|MIM:612704|Ensembl:ENSG00000187627|Vega:OTTHUMG00000153248 2 2p11.2 RANBP2-like and GRIP domain containing 1 protein-coding RGPD1 RANBP2-like and GRIP domain containing 1 O RANBP2-like and GRIP domain-containing protein 1|RANBP2-like and GRIP domain-containing protein 1/2|ran-binding protein 2-like 2/6|ran-binding protein 2-like 6|ranBP2-like 2/6|ranBP2-like 6|ranBP2L6 20121230 -9606 400968 LOC400968 - - HPRD:18422 15 15q11.2 uncharacterized LOC400968 unknown - - - - 20120511 -9606 400984 OR7E102P - OR7E102 HGNC:15043 2 2q11.1 olfactory receptor, family 7, subfamily E, member 102 pseudogene pseudo OR7E102P olfactory receptor, family 7, subfamily E, member 102 pseudogene O - 20121230 -9606 400986 ANKRD36C - - HGNC:32946|Ensembl:ENSG00000174501|HPRD:17388|Vega:OTTHUMG00000155211 2 2q11.1 ankyrin repeat domain 36C protein-coding ANKRD36C ankyrin repeat domain 36C O ankyrin repeat domain-containing protein 36C|protein immuno-reactive with anti-PTH polyclonal antibodies 20121230 -9606 400997 FLJ44006 - - HPRD:16971 2 2q13 uncharacterized FLJ44006 unknown - - - - 20121230 -9606 400999 FLJ42351 - - - 2 2q13 uncharacterized LOC400999 miscRNA - - - - 20121230 -9606 401002 LOC401002 - - - 2 2q21.1 single stranded DNA binding protein 3 pseudogene pseudo - - - - 20121230 -9606 401007 NF1P8 - NF1L2 HGNC:7767 2 2q21.1 neurofibromin 1 pseudogene 8 pseudo NF1P8 neurofibromin 1 pseudogene 8 O - 20121230 -9606 401010 LOC401010 - - - 2 2q21.1 nucleolar complex associated 2 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 401014 DKFZp686O1327 - - - 2 2q22.3 uncharacterized LOC401014 miscRNA - - - - 20121230 -9606 401018 CTAGE14P - - HGNC:37299 2 2q24.3 CTAGE family, member 14, pseudogene pseudo CTAGE14P CTAGE family, member 14, pseudogene O - 20121230 -9606 401019 RPS15P4 hCG_1783417 RPS15_2_291 HGNC:35712 2 2q31.1 ribosomal protein S15 pseudogene 4 pseudo RPS15P4 ribosomal protein S15 pseudogene 4 O - 20121230 -9606 401021 LOC401021 - - - 2 2q31.1 uncharacterized LOC401021 miscRNA - - - - 20120511 -9606 401022 HOXD-AS1 - - HGNC:43755 2 2q31.2 HOXD cluster antisense RNA 1 miscRNA HOXD-AS1 HOXD cluster antisense RNA 1 O - 20121230 -9606 401024 FSIP2 hCG_1799183 - HGNC:21675|Ensembl:ENSG00000188738|HPRD:13483|Vega:OTTHUMG00000153874 2 2q32.1 fibrous sheath interacting protein 2 protein-coding FSIP2 fibrous sheath interacting protein 2 O fibrous sheath-interacting protein 2 20121230 -9606 401027 C2orf66 UNQ6411/PRO21186 UNQ6411 HGNC:33809|Ensembl:ENSG00000187944|HPRD:13734|Vega:OTTHUMG00000132742 2 2q33.1 chromosome 2 open reading frame 66 protein-coding C2orf66 chromosome 2 open reading frame 66 O IIDS6411|hypothetical protein LOC401027|uncharacterized protein C2orf66 20121230 -9606 401036 ASB18 - ASB-18 HGNC:19770|Ensembl:ENSG00000182177|HPRD:16514|Vega:OTTHUMG00000153086 2 2q37.2 ankyrin repeat and SOCS box containing 18 protein-coding ASB18 ankyrin repeat and SOCS box containing 18 O ankyrin repeat and SOCS box protein 18|ankyrin repeat and SOCS box-containing 18 20121230 -9606 401037 LOC401037 - - - 2 2q37.3 uncharacterized LOC401037 unknown - - - - 20120508 -9606 401039 FLJ43879 - - HPRD:16969 2 2q37.3 FLJ43879 protein miscRNA - - - - 20121230 -9606 401040 FLJ45964 - - HPRD:16995 2 2q37.3 uncharacterized FLJ45964 unknown - - - - 20121230 -9606 401044 FLJ40712 - - HPRD:10990 2 2q37.3 FLJ40712 protein unknown - - - - 20120511 -9606 401045 FLJ41327 - - HPRD:16953 2 2q37.3 FLJ41327 protein unknown - - - - 20120511 -9606 401052 LOC401052 - - HPRD:17389 3 3p25.3 uncharacterized LOC401052 protein-coding - - - uncharacterized protein LOC401052 20121230 -9606 401067 IQCF3 - - HGNC:31816|Ensembl:ENSG00000229972|Vega:OTTHUMG00000156910 3 3p21.2 IQ motif containing F3 protein-coding IQCF3 IQ motif containing F3 O IQ domain-containing protein F3 20121230 -9606 401068 LOC401068 - - - 3 3p21.1 uncharacterized LOC401068 unknown - - - - 20121230 -9606 401074 LOC401074 - - - 3 3p12.3 uncharacterized LOC401074 miscRNA - - - - 20121230 -9606 401076 CAP1P1 - - HGNC:31134 3 3p12.3 CAP1 pseudogene 1 pseudo CAP1P1 CAP1 pseudogene 1 O - 20121230 -9606 401081 FLJ22763 - - - 3 3q13.13 uncharacterized LOC401081 miscRNA - - - - 20121230 -9606 401082 FLJ25363 - - - 3 3q13.13 uncharacterized LOC401082 protein-coding - - - uncharacterized protein LOC401082 20121230 -9606 401089 C3orf72 - - HGNC:34428|Ensembl:ENSG00000206262|Vega:OTTHUMG00000159886 3 3q22.3 chromosome 3 open reading frame 72 protein-coding C3orf72 chromosome 3 open reading frame 72 O FLJ43329 protein|uncharacterized protein C3orf72 20121230 -9606 401093 MBNL1-AS1 hCG_1806964 - HGNC:44584 3 3q25.1 MBNL1 antisense RNA 1 miscRNA MBNL1-AS1 MBNL1 antisense RNA 1 O - 20121230 -9606 401097 C3orf80 hCG_2022062 - HGNC:40048|Ensembl:ENSG00000180044 3 3q25.33 chromosome 3 open reading frame 80 protein-coding C3orf80 chromosome 3 open reading frame 80 O uncharacterized membrane protein C3orf80 20121230 -9606 401098 LOC401098 - - - 3 3q25.33 uncharacterized LOC401098 unknown - - - - 20120511 -9606 401103 FLJ46066 - - - 3 3q26.33 uncharacterized LOC401103 miscRNA - - - - 20121230 -9606 401105 FLJ42393 UNQ1948 AVPC1948 HPRD:16962 3 3q27.3 uncharacterized LOC401105 miscRNA - - - - 20121230 -9606 401106 FLJ34208 - - - 3 3q29 uncharacterized LOC401106 miscRNA - - - - 20121230 -9606 401109 LOC401109 - - HPRD:16924 3 3q29 uncharacterized LOC401109 miscRNA - - - - 20121230 -9606 401113 FLJ41130 - - - 4 4p16.3 uncharacterized LOC401113 unknown - - - - 20120508 -9606 401114 FLJ35816 - - HPRD:16941 4 4p16.3 FLJ35816 protein unknown - - - - 20121230 -9606 401115 C4orf48 Chr4_55 CHR4_55 HGNC:34437|MIM:614690|Ensembl:ENSG00000243449|Vega:OTTHUMG00000154503 4 4p16.3 chromosome 4 open reading frame 48 protein-coding C4orf48 chromosome 4 open reading frame 48 O neuropeptide-like protein C4orf48 20121230 -9606 401123 FLJ45721 - - HPRD:13512 4 4p15.2 uncharacterized LOC401123 unknown - - - - 20120511 -9606 401124 DTHD1 - - HGNC:37261|Ensembl:ENSG00000197057|Vega:OTTHUMG00000160371 4 4p14 death domain containing 1 protein-coding DTHD1 death domain containing 1 O death domain-containing protein 1 20121230 -9606 401127 LOC401127 - - - 4 4p14 WD repeat domain 5 pseudogene pseudo - - - - 20121230 -9606 401131 LOC401131 - - - 1 1q12 uncharacterized LOC401131 unknown - - - - 20111025 -9606 401134 LOC401134 - - - 4 4q13.1 uncharacterized LOC401134 miscRNA - - - - 20121230 -9606 401135 SYT14L - CHR415SYT|SYTDEP HGNC:33429|MIM:610892|HPRD:18501 4 4q13.2 synaptotagmin XIV-like pseudo SYT14L synaptotagmin XIV-like O - 20121230 -9606 401136 TMPRSS11BNL - - HGNC:37262|Ensembl:ENSG00000226894 4 4q13.2 TMPRSS11B N terminal-like protein-coding TMPRSS11BNL TMPRSS11B N terminal-like O TMPRSS11B N-terminus-like protein|transmembrane protease serine 11B-like protein 20121230 -9606 401137 C4orf40 - - HGNC:33193|Ensembl:ENSG00000187533|HPRD:14222|Vega:OTTHUMG00000129402 4 4q13.3 chromosome 4 open reading frame 40 protein-coding C4orf40 chromosome 4 open reading frame 40 O uncharacterized protein C4orf40 20121230 -9606 401138 AMTN UNQ689/PRO1329 UNQ689 HGNC:33188|MIM:610912|Ensembl:ENSG00000187689|HPRD:18270|Vega:OTTHUMG00000129906 4 4q13.3 amelotin protein-coding AMTN amelotin O RSTI689 20121230 -9606 401145 CCSER1 - FAM190A HGNC:29349|Ensembl:ENSG00000184305|HPRD:17561|Vega:OTTHUMG00000160950 4 4q22.1 coiled-coil serine-rich protein 1 protein-coding CCSER1 coiled-coil serine-rich protein 1 O family with sequence similarity 190, member A|protein FAM190A 20121230 -9606 401149 FLJ14186 - - - 4 4q26 uncharacterized LOC401149 miscRNA - - - - 20121230 -9606 401152 C4orf3 - - HGNC:19225|Ensembl:ENSG00000164096|HPRD:14223|Vega:OTTHUMG00000161333 4 4q26 chromosome 4 open reading frame 3 protein-coding C4orf3 chromosome 4 open reading frame 3 O HCV F-transactivated protein 1|hepatitis C virus F protein-transactivated protein 1|uncharacterized protein C4orf3 20121230 -9606 401157 FLJ44477 - - - 4 4q31.21 FLJ44477 protein unknown - - - - 20120511 -9606 401164 LOC401164 - - - 4 4q35.2 uncharacterized LOC401164 miscRNA - - - - 20121230 -9606 401166 FLJ44896 - - - 5 5p15.33 FLJ44896 protein unknown - - - - 20120511 -9606 401172 FLJ33360 - - HPRD:16934 5 5p15.31 FLJ33360 protein miscRNA - - - - 20121230 -9606 401176 LOC401176 - - - 5 5p15.1 uncharacterized LOC401176 unknown - - - - 20121230 -9606 401177 LOC401177 - - - 5 5p15.1 uncharacterized LOC401177 miscRNA - - - - 20121230 -9606 401180 LOC401180 - - - 5 5p13.2 uncharacterized LOC401180 protein-coding - - - - 20121209 -9606 401188 LOC401188 - - - 5 5q11.2 uncharacterized LOC401188 unknown - - - - 20120508 -9606 401190 RGS7BP - R7BP HGNC:23271|MIM:610890|Ensembl:ENSG00000186479|Vega:OTTHUMG00000162293 5 5q12.3 regulator of G-protein signaling 7 binding protein protein-coding RGS7BP regulator of G-protein signaling 7 binding protein O R7 family-binding protein|regulator of G-protein signaling 7-binding protein 20121230 -9606 401191 FLJ46010 - - HPRD:16998 5 5q12.3 FLJ46010 protein unknown - - - - 20120909 -9606 401206 RPS25P6 hCG_1640785 RPS25_4_602 HGNC:35532 5 5q23.1 ribosomal protein S25 pseudogene 6 pseudo RPS25P6 ribosomal protein S25 pseudogene 6 O - 20121230 -9606 401207 C5orf63 - YDR286C HGNC:40051|Ensembl:ENSG00000164241 5 5q23.2 chromosome 5 open reading frame 63 protein-coding C5orf63 chromosome 5 open reading frame 63 O glutaredoxin-like protein C5orf63|glutaredoxin-like protein YDR286C homolog 20121230 -9606 401209 FLJ44796 - - HPRD:13496 5 5q31.1 uncharacterized FLJ44796 other - - - - 20120622 -9606 401218 LOC401218 - - - 5 5q35.1 family with sequence similarity 58, member A pseudogene pseudo - - - - 20121230 -9606 401220 LOC401220 - - - 5 5q35.3 uncharacterized LOC401220 unknown - - - - 20120511 -9606 401225 FLJ31183 - - - 5 5q35.3 uncharacterized LOC401225 unknown - - - - 20120508 -9606 401230 FLJ46552 - - - 6 6p25.3 FLJ46552 protein unknown - - - - 20120511 -9606 401232 DKFZP686I15217 - - HPRD:16819 6 6p25.2 uncharacterized LOC401232 miscRNA - - - - 20121230 -9606 401233 HTATSF1P2 - - HGNC:38586|HPRD:18424 6 6p25.2 HIV-1 Tat specific factor 1 pseudogene 2 pseudo HTATSF1P2 HIV-1 Tat specific factor 1 pseudogene 2 O - 20121230 -9606 401236 STMND1 - - HGNC:44668|Ensembl:ENSG00000230873|Vega:OTTHUMG00000014304 6 6p22.3 stathmin domain containing 1 protein-coding STMND1 stathmin domain containing 1 O uncharacterized protein LOC401236 20121230 -9606 401237 LINC00340 - - HGNC:28245 6 6p22.3 long intergenic non-protein coding RNA 340 miscRNA LINC00340 long intergenic non-protein coding RNA 340 O - 20121230 -9606 401242 LOC401242 - - - 6 6p22.1 uncharacterized LOC401242 miscRNA - - - - 20121230 -9606 401247 LINC00243 - C6orf214|NCRNA00243|bQB10J12.2|bQB230F21.2 HGNC:30956 6 6p21.33 long intergenic non-protein coding RNA 243 miscRNA LINC00243 long intergenic non-protein coding RNA 243 O - 20121230 -9606 401250 MCCD1 DAAP-97M17.2 - HGNC:20668|MIM:609624|Ensembl:ENSG00000204511|HPRD:17470|Vega:OTTHUMG00000134292 6 6p21.33 mitochondrial coiled-coil domain 1 protein-coding MCCD1 mitochondrial coiled-coil domain 1 O mitochondrial coiled-coil domain protein 1 20121230 -9606 401251 SAPCD1 DAAP-21F2.3 C6orf26|NG23 HGNC:13938|Ensembl:ENSG00000228727|Vega:OTTHUMG00000031131 6 6p21.33 suppressor APC domain containing 1 protein-coding SAPCD1 suppressor APC domain containing 1 O protein G7d|suppressor APC domain-containing protein 1 20121230 -9606 401253 LINC00336 - C6orf227|NCRNA00336 HGNC:33813|HPRD:16966 6 6p21.31 long intergenic non-protein coding RNA 336 miscRNA LINC00336 long intergenic non-protein coding RNA 336 O - 20121230 -9606 401258 RAB44 RP3-431A14.3 RASD3|RASL13|dJ431A14.3 HGNC:21068|HPRD:13470 6 6p21.31-p21.2 RAB44, member RAS oncogene family protein-coding RAB44 RAB44, member RAS oncogene family O RAS-like, family 13|RASD family, member 3|ras-related protein Rab-44 20121230 -9606 401260 FLJ41649 - - HPRD:16954 6 6p21.2 uncharacterized LOC401260 miscRNA - - - - 20121230 -9606 401261 FLJ38717 - - HPRD:16945 6 6p21.1 FLJ38717 protein unknown - - - - 20121230 -9606 401262 CRIP3 RP11-480N24.2 TLP|TLP-A|bA480N24.2 HGNC:17751|Ensembl:ENSG00000146215|HPRD:16755|Vega:OTTHUMG00000014727 6 6p21.1 cysteine-rich protein 3 protein-coding CRIP3 cysteine-rich protein 3 O CRP-3|chromosome 6 LIM domain only protein|h6LIMo|thymus LIM protein TLP-A 20121230 -9606 401264 FLJ37798 - - - 6 6p12.3 uncharacterized LOC401264 miscRNA - - - - 20121230 -9606 401265 KLHL31 - BKLHD6|KBTBD1|KLHL|bA345L23.2 HGNC:21353|MIM:610749|Ensembl:ENSG00000124743|HPRD:13923 6 6p12.1 kelch-like 31 (Drosophila) protein-coding KLHL31 kelch-like 31 (Drosophila) O BTB and kelch domain-containing protein 6|kelch repeat and BTB (POZ) domain containing 1|kelch repeat and BTB domain-containing protein 1|kelch-like protein 31|kelch-like protein KLHL 20121230 -9606 401281 FLJ27255 - - HPRD:16928 6 6q25.3 uncharacterized LOC401281 unknown - - - - 20121230 -9606 401282 DKFZp451B082 - - - 6 6q26 uncharacterized LOC401282 miscRNA - - - - 20121230 -9606 401285 TCP10L2 RP11-517H2.3 bA517H2.3 HGNC:21254|Ensembl:ENSG00000166984|HPRD:18427|Vega:OTTHUMG00000016014 6 6q27 t-complex 10-like 2 protein-coding TCP10L2 t-complex 10-like 2 O T-complex 10-like protein 2|putative t-complex protein 10A homolog 2 20121230 -9606 401286 LOC401286 - - HPRD:18625 6 6q27 uncharacterized LOC401286 unknown - - - - 20121230 -9606 401287 DKFZp686L13185 - - - 6 6q27 uncharacterized LOC401287 unknown - - - - 20120622 -9606 401288 LINC00242 - C6orf122|NCRNA00242|dJ266L20.5 HGNC:21249|HPRD:16657 6 6q27 long intergenic non-protein coding RNA 242 miscRNA LINC00242 long intergenic non-protein coding RNA 242 O - 20121230 -9606 401289 FLJ38122 - - - 6 6q27 uncharacterized LOC401289 miscRNA - - - - 20120622 -9606 401296 LOC401296 - - HPRD:18626 7 7p22.3 uncharacterized LOC401296 unknown - - - - 20121230 -9606 401303 ZNF815P - ZNF815 HGNC:22029 7 7p22.1 zinc finger protein 815, pseudogene pseudo ZNF815P zinc finger protein 815, pseudogene O - 20121230 -9606 401312 LOC401312 - - - 7 7p15.3 uncharacterized LOC401312 unknown - - - - 20121230 -9606 401316 LOC401316 - - - 7 7p15.2 eukaryotic translation initiation factor 4H pseudogene pseudo - - - - 20121230 -9606 401317 LOC401317 - - - 7 7p15.1 uncharacterized LOC401317 unknown - - - - 20121230 -9606 401320 LOC401320 - - - 7 7p15.1 uncharacterized LOC401320 miscRNA - - - - 20121230 -9606 401321 LOC401321 - - - 7 7p14.3 uncharacterized LOC401321 miscRNA - - - - 20121230 -9606 401324 LOC401324 - - - 7 7p14.2 uncharacterized LOC401324 miscRNA - - - - 20121230 -9606 401331 RASA4CP - RASA4P HGNC:44185 7 7p13 RAS p21 protein activator 4C, pseudogene pseudo RASA4CP RAS p21 protein activator 4C, pseudogene O - 20121230 -9606 401335 C7orf65 tcag7.1180 - HGNC:34432|Ensembl:ENSG00000221845|Vega:OTTHUMG00000155550 7 7p12.3 chromosome 7 open reading frame 65 protein-coding C7orf65 chromosome 7 open reading frame 65 O FLJ44108 protein|uncharacterized protein C7orf65 20121230 -9606 401337 FLJ45974 - - HPRD:16997 7 7p12.1 uncharacterized LOC401337 miscRNA - - - - 20121230 -9606 401357 LOC401357 - - HPRD:18429 7 7p11.2 uncharacterized LOC401357 pseudo - - - - 20121230 -9606 401375 GTF2IRD2P1 - GTF2IRD2P HGNC:33127 7 7q11.23 GTF2I repeat domain containing 2 pseudogene 1 pseudo GTF2IRD2P1 GTF2I repeat domain containing 2 pseudogene 1 O - 20121230 -9606 401387 LRRD1 - - HGNC:34300|Ensembl:ENSG00000240720|Vega:OTTHUMG00000155861 7 7q21.2 leucine-rich repeats and death domain containing 1 protein-coding LRRD1 leucine-rich repeats and death domain containing 1 O leucine-rich repeat and death domain-containing protein 1|leucine-rich repeat and death domain-containing protein LOC401387 20121230 -9606 401388 C7orf76 - - HGNC:33815|Ensembl:ENSG00000197851|HPRD:16959 7 7q21.3 chromosome 7 open reading frame 76 protein-coding C7orf76 chromosome 7 open reading frame 76 O putative uncharacterized protein FLJ42280 20121230 -9606 401393 AZGP1P2 - - HGNC:912 7 7q22.1 alpha-2-glycoprotein 1, zinc-binding pseudogene 2 pseudo AZGP1P2 alpha-2-glycoprotein 1, zinc-binding pseudogene 2 O - 20121230 -9606 401396 LOC401396 - - - 7 7q22.3 uncharacterized LOC401396 unknown - - - - 20111025 -9606 401397 LOC401397 - - - 7 7q31.1 uncharacterized LOC401397 miscRNA - - - - 20121230 -9606 401399 PRRT4 hCG_1651889 - HGNC:37280|Ensembl:ENSG00000224940|Vega:OTTHUMG00000157714 7 7q32.1 proline-rich transmembrane protein 4 protein-coding PRRT4 proline-rich transmembrane protein 4 O - 20121230 -9606 401400 LOC401400 - - - 7 7q32.2 uncharacterized LOC401400 protein-coding - - - uncharacterized protein LOC401400 20120508 -9606 401409 RAB19 tcag7.1187 RAB19B HGNC:19982|Ensembl:ENSG00000146955|HPRD:17946|Vega:OTTHUMG00000157410 7 7q34 RAB19, member RAS oncogene family protein-coding RAB19 RAB19, member RAS oncogene family O GTP-binding protein RAB19B|ras-related protein Rab-19 20121230 -9606 401410 LOC401410 - - HPRD:17390 7 7q34 uncharacterized LOC401410 unknown - - - - 20120511 -9606 401427 OR2A7 - HSDJ0798C17|OR2A21 HGNC:8234|Ensembl:ENSG00000243896|HPRD:14933|Vega:OTTHUMG00000158002 7 7q35 olfactory receptor, family 2, subfamily A, member 7 protein-coding OR2A7 olfactory receptor, family 2, subfamily A, member 7 O olfactory receptor 2A7|olfactory receptor OR7-18|olfactory receptor OR7-20|olfactory receptor, family 2, subfamily A, member 21 20121230 -9606 401428 OR2A20P - OR2A20 HGNC:15413 7 7q35 olfactory receptor, family 2, subfamily A, member 20 pseudogene pseudo OR2A20P olfactory receptor, family 2, subfamily A, member 20 pseudogene O - 20121230 -9606 401431 ATP6V0E2-AS1 - - HGNC:44180|HPRD:17391 7 7q36.1 ATP6V0E2 antisense RNA 1 miscRNA ATP6V0E2-AS1 ATP6V0E2 antisense RNA 1 O - 20121230 -9606 401433 LOC401433 - - - 7 7q36.1 uncharacterized LOC401433 unknown - - - - 20120622 -9606 401442 LOC401442 - - - 8 8p23.3 uncharacterized LOC401442 unknown - - - - 20121230 -9606 401445 LOC401445 - - - 8 8p23.2 uncharacterized LOC401445 unknown - - - - 20120508 -9606 401447 USP17L1P - USP17L1 HGNC:37182 8 8p23.1 ubiquitin specific peptidase 17-like family member 1, pseudogene protein-coding USP17L1P ubiquitin specific peptidase 17-like family member 1, pseudogene O deubiquitinating enzyme 17-like protein 1|putative ubiquitin carboxyl-terminal hydrolase 17-like protein 1|ubiquitin specific peptidase 17-like 1 (pseudogene)|ubiquitin specific peptidase 17-like 1, pseudogene|ubiquitin thioesterase 17-like protein 1|ubiquitin-specific-processing protease 17-like protein 1 20121230 -9606 401450 OR7E96P - - HGNC:14815 8 8p23.1 olfactory receptor, family 7, subfamily E, member 96 pseudogene pseudo OR7E96P olfactory receptor, family 7, subfamily E, member 96 pseudogene O - 20121230 -9606 401459 FLJ46365 - - HPRD:13535 8 8q11.21 uncharacterized LOC401459 unknown - - - - 20120710 -9606 401463 LOC401463 - - - 8 8q12.3 uncharacterized LOC401463 miscRNA - - - - 20121230 -9606 401466 C8orf59 - - HGNC:32235|Ensembl:ENSG00000176731|Vega:OTTHUMG00000164787 8 8q21.2 chromosome 8 open reading frame 59 protein-coding C8orf59 chromosome 8 open reading frame 59 O uncharacterized protein C8orf59 20121230 -9606 401470 RPS26P10 - RPS26_16_925 HGNC:32201 8 8q21.3 ribosomal protein S26 pseudogene 10 pseudo RPS26P10 ribosomal protein S26 pseudogene 10 O - 20121230 -9606 401471 FLJ43903 - - - 8 8q22.3 uncharacterized LOC401471 miscRNA - - - - 20121018 -9606 401472 FLJ45248 - - HPRD:16984 8 8q22.3 FLJ45248 protein unknown - - - - 20121230 -9606 401474 SAMD12 - - HGNC:31750|Ensembl:ENSG00000177570|HPRD:15293|Vega:OTTHUMG00000059817 8 8q24.12 sterile alpha motif domain containing 12 protein-coding SAMD12 sterile alpha motif domain containing 12 O SAM domain-containing protein 12|sterile alpha motif domain-containing protein 12 20121230 -9606 401475 SRRM1P1 - SRRM1L|SRRM1P HGNC:31861 8 8q24.21 serine/arginine repetitive matrix 1 pseudogene 1 pseudo SRRM1P1 serine/arginine repetitive matrix 1 pseudogene 1 O - 20121230 -9606 401478 FLJ45872 - - - 8 8q24.23 FLJ45872 protein unknown - - - - 20121230 -9606 401480 LOC401480 - - - 8 8q24.3 uncharacterized LOC401480 unknown - - - - 20120508 -9606 401490 LOC401490 - - - 9 9p24.3 uncharacterized LOC401490 unknown - - - - 20120508 -9606 401491 FLJ35024 - - - 9 9p24.2 uncharacterized LOC401491 miscRNA - - - - 20121230 -9606 401492 FLJ41200 - - - 9 9p23 uncharacterized LOC401492 miscRNA - - - - 20121230 -9606 401494 PTPLAD2 - HACD4 HGNC:20920|Ensembl:ENSG00000188921|HPRD:17392|Vega:OTTHUMG00000021016 9 9p21.3 protein tyrosine phosphatase-like A domain containing 2 protein-coding PTPLAD2 protein tyrosine phosphatase-like A domain containing 2 O 3-hydroxyacyl-CoA dehydratase 4|protein tyrosine phosphatase-like protein PTPLAD2|protein-tyrosine phosphatase-like A domain-containing protein 2 20121230 -9606 401497 LOC401497 - - - 9 9p21.1 uncharacterized LOC401497 miscRNA - - - - 20121230 -9606 401498 TMEM215 - - HGNC:33816|Ensembl:ENSG00000188133|HPRD:17393|Vega:OTTHUMG00000129521 9 9p21.1 transmembrane protein 215 protein-coding TMEM215 transmembrane protein 215 O - 20121230 -9606 401505 TOMM5 RP11-613M10.3 C9orf105|RP11-263I4.1|Tom5|bA613M10.3 HGNC:31369|Ensembl:ENSG00000175768|HPRD:16672|Vega:OTTHUMG00000019923 9 9p13.2 translocase of outer mitochondrial membrane 5 homolog (yeast) protein-coding TOMM5 translocase of outer mitochondrial membrane 5 homolog (yeast) O mitochondrial import receptor subunit TOM5 homolog|mitochondrial outer membrane protein TOM5 20121230 -9606 401507 FAM74A1 - - HGNC:32029|HPRD:17394 9 9p13.1 family with sequence similarity 74, member A1 miscRNA FAM74A1 family with sequence similarity 74, member A1 O - 20121209 -9606 401508 FAM74A4 - - HGNC:32032|HPRD:16982 9 9q12 family with sequence similarity 74, member A4 miscRNA FAM74A4 family with sequence similarity 74, member A4 O - 20121230 -9606 401509 ZNF658B CTD-2173L22.2 - HGNC:32033 9 9p12 zinc finger protein 658B, pseudogene pseudo ZNF658B zinc finger protein 658B, pseudogene O - 20121211 -9606 401522 LOC401522 RP11-160N1.10-001 - - 9 9p11.2 uncharacterized LOC401522 unknown - - - - 20121216 -9606 401525 CDK2AP2P3 - - HGNC:38494 9 9q13 cyclin-dependent kinase 2 associated protein 2 pseudogene 3 pseudo CDK2AP2P3 cyclin-dependent kinase 2 associated protein 2 pseudogene 3 O - 20121230 -9606 401533 DDX10P2 - - HGNC:44961 9 9q21.32 DEAD (Asp-Glu-Ala-Asp) box polypeptide 10 pseudogene 2 pseudo DDX10P2 DEAD (Asp-Glu-Ala-Asp) box polypeptide 10 pseudogene 2 O - 20121230 -9606 401535 C9orf170 - - HGNC:33817|Ensembl:ENSG00000204446|HPRD:16988|Vega:OTTHUMG00000159587 9 9q21.33 chromosome 9 open reading frame 170 protein-coding C9orf170 chromosome 9 open reading frame 170 O uncharacterized protein C9orf170 20121230 -9606 401537 RPSAP49 - RPSA_21_995 HGNC:35660 9 9q22.1 ribosomal protein SA pseudogene 49 pseudo RPSAP49 ribosomal protein SA pseudogene 49 O - 20121230 -9606 401540 OR7E109P - OR7E113P|OST721 HGNC:15118 9 9q22.2 olfactory receptor, family 7, subfamily E, member 109 pseudogene pseudo OR7E109P olfactory receptor, family 7, subfamily E, member 109 pseudogene O - 20121230 -9606 401541 CENPP RP11-19J3.3 CENP-P HGNC:32933|MIM:611505|Ensembl:ENSG00000188312|HPRD:17989|Vega:OTTHUMG00000020228 9 9q22.31 centromere protein P protein-coding CENPP centromere protein P O - 20121230 -9606 401546 C9orf152 RP11-470J20.2 bA470J20.2 HGNC:31455|Ensembl:ENSG00000188959|HPRD:10249|Vega:OTTHUMG00000020478 9 9q31.3 chromosome 9 open reading frame 152 protein-coding C9orf152 chromosome 9 open reading frame 152 O uncharacterized protein C9orf152 20121230 -9606 401548 SNX30 RP11-408O19.4 ATG24A HGNC:23685|Ensembl:ENSG00000148158|Vega:OTTHUMG00000020512 9 9q32 sorting nexin family member 30 protein-coding SNX30 sorting nexin family member 30 O sorting nexin-30 20121230 -9606 401550 TTLL11-IT1 - C9orf148 HGNC:24214 9 9q33.2 TTLL11 intronic transcript 1 (non-protein coding) unknown TTLL11-IT1 TTLL11 intronic transcript 1 (non-protein coding) O - 20121230 -9606 401551 WDR38 RP11-175D17.5 - HGNC:23745|Ensembl:ENSG00000136918|Vega:OTTHUMG00000020664 9 9q33.3 WD repeat domain 38 protein-coding WDR38 WD repeat domain 38 O WD repeat-containing protein 38 20121230 -9606 401554 FLJ46836 - - HPRD:13541 9 9q34.11 FLJ46836 protein unknown - - - - 20121230 -9606 401557 LOC401557 - - - 9 9q34.3 uncharacterized LOC401557 miscRNA - - - - 20121230 -9606 401561 LOC401561 - - - 9 9q34.3 FP7915 protein unknown - - - - 20121230 -9606 401562 LCNL1 - - HGNC:34436|Ensembl:ENSG00000214402|HPRD:16983|Vega:OTTHUMG00000159546 9 9q34.3 lipocalin-like 1 protein-coding LCNL1 lipocalin-like 1 O lipocalin-like 1 protein 20121230 -9606 401563 C9orf139 - - HGNC:31426|Ensembl:ENSG00000180539|HPRD:16942|Vega:OTTHUMG00000020959 9 9q34.3 chromosome 9 open reading frame 139 protein-coding C9orf139 chromosome 9 open reading frame 139 O uncharacterized protein C9orf139 20121230 -9606 401565 FAM166A HSD46 - HGNC:33818|Ensembl:ENSG00000188163|HPRD:13441|Vega:OTTHUMG00000159545 9 9q34.3 family with sequence similarity 166, member A protein-coding FAM166A family with sequence similarity 166, member A O protein FAM166A 20121230 -9606 401577 CD99P1 hCG_1653094 CD99L1|CXYorf12|MIC2R|NCRNA00103 HGNC:7083 X|Y Xp22.33;Yp11.31 CD99 molecule pseudogene 1 pseudo CD99P1 CD99 molecule pseudogene 1 O - 20121230 -9606 401585 FLJ25917 - - - X Xp11.3 uncharacterized LOC401585 miscRNA - - - - 20120622 -9606 401588 ZNF674-AS1 - - HGNC:44266 X Xp11.23 ZNF674 antisense RNA 1 (head to head) miscRNA ZNF674-AS1 ZNF674 antisense RNA 1 (head to head) O - 20121230 -9606 401589 LOC401589 RP11-114H20.1 - HPRD:18430 X Xp11.22 uncharacterized LOC401589 unknown - - - - 20121230 -9606 401602 LOC401602 - - - X Xq21.32 adaptor-related protein complex 2, beta 1 subunit pseudogene pseudo - - - - 20121230 -9606 401612 SLC25A53 LL0XNC01-46H11.2 MCART6 HGNC:31894|Ensembl:ENSG00000176274|HPRD:18628|Vega:OTTHUMG00000022124 X Xq22.2 solute carrier family 25, member 53 protein-coding SLC25A53 solute carrier family 25, member 53 O mitochondrial carrier triple repeat 6|mitochondrial carrier triple repeat protein 6|solute carrier family 25 member 53 20121230 -9606 401613 DKFZp686D0853 - - - X Xq23 uncharacterized LOC401613 miscRNA - - - - 20121230 -9606 401629 FAM224B - LINC00230B|NCRNA00230B HGNC:37737 Y Yq11.221 family with sequence similarity 224, member B (non-protein coding) miscRNA FAM224B family with sequence similarity 224, member B (non-protein coding) O - 20121209 -9606 401630 FAM224A - LINC00230A|NCRNA00230A HGNC:37736 Y Yq11.222 family with sequence similarity 224, member A (non-protein coding) miscRNA FAM224A family with sequence similarity 224, member A (non-protein coding) O - 20121230 -9606 401634 GOLGA2P3Y - GOLGA2LY2|GOLGA2P3 HGNC:32426 Y Yq11.223 golgin A2 pseudogene 3, Y-linked pseudo GOLGA2P3Y golgin A2 pseudogene 3, Y-linked O - 20121230 -9606 401637 OR7E26P - OR1-51|OR1-72|OR1-73|OR7E67P|OR7E68P|OR7E69P|OR7E70P|OR7E71P|OR7E72P|OR7E73P|OR7E74P|OR7E75P|OR912-108|OR912-109|OR912-110|OR912-46|OR912-95|hg523|hg674 HGNC:8398 10 10p13 olfactory receptor, family 7, subfamily E, member 26 pseudogene pseudo OR7E26P olfactory receptor, family 7, subfamily E, member 26 pseudogene O - 20121230 -9606 401638 RPSAP10 - LAMR1P10|RPSA_22_1026 HGNC:31460 10 10p12.1 ribosomal protein SA pseudogene 10 pseudo RPSAP10 ribosomal protein SA pseudogene 10 O - 20121230 -9606 401640 RPL7AP53 - RPL7A_22_1031 HGNC:36392 10 10p11.22 ribosomal protein L7a pseudogene 53 pseudo RPL7AP53 ribosomal protein L7a pseudogene 53 O - 20121230 -9606 401646 LOC401646 - - - 10 10q22.3 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 2 pseudogene pseudo - - - - 20121230 -9606 401647 GOLGA7B - C10orf132|C10orf133|bA451M19.3|bA459F3.4 HGNC:31668|MIM:614189|Ensembl:ENSG00000155265|HPRD:16579|Vega:OTTHUMG00000018869 10 10q24.2 golgin A7 family, member B protein-coding GOLGA7B golgin A7 family, member B O Golgin subfamily A member 7B|golgi autoantigen, golgin subfamily a, 7B 20121230 -9606 401648 ST13P13 - - HGNC:38788 10 10q24.33 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 13 pseudo ST13P13 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 13 O - 20121230 -9606 401661 OR51C1P - OR51C2P|OR51C3P|OST734 HGNC:15191 11 11p15.4 olfactory receptor, family 51, subfamily C, member 1 pseudogene pseudo OR51C1P olfactory receptor, family 51, subfamily C, member 1 pseudogene O - 20121230 -9606 401662 OR51A8P - - HGNC:15189 11 11p15.4 olfactory receptor, family 51, subfamily A, member 8 pseudogene pseudo OR51A8P olfactory receptor, family 51, subfamily A, member 8 pseudogene O - 20121230 -9606 401663 OR51H1P - OR51H1 HGNC:14833 11 11p15.4 olfactory receptor, family 51, subfamily H, member 1 pseudogene pseudo OR51H1P olfactory receptor, family 51, subfamily H, member 1 pseudogene O - 20121230 -9606 401664 OR51H2P - - HGNC:15199 11 11p15.4 olfactory receptor, family 51, subfamily H, member 2 pseudogene pseudo OR51H2P olfactory receptor, family 51, subfamily H, member 2 pseudogene O - 20121230 -9606 401665 OR51T1 - OR11-26 HGNC:15205|Ensembl:ENSG00000176900|HPRD:17740|Vega:OTTHUMG00000066507 11 11p15.4 olfactory receptor, family 51, subfamily T, member 1 protein-coding OR51T1 olfactory receptor, family 51, subfamily T, member 1 O olfactory receptor 51T1|olfactory receptor OR11-26 20121230 -9606 401666 OR51A4 - - HGNC:14795|Ensembl:ENSG00000205497|HPRD:14991|Vega:OTTHUMG00000066614 11 11p15.4 olfactory receptor, family 51, subfamily A, member 4 protein-coding OR51A4 olfactory receptor, family 51, subfamily A, member 4 O olfactory receptor 51A4 20121230 -9606 401667 OR51A2 - - HGNC:14764|Ensembl:ENSG00000205496|HPRD:17733|Vega:OTTHUMG00000066602 11 11p15.4 olfactory receptor, family 51, subfamily A, member 2 protein-coding OR51A2 olfactory receptor, family 51, subfamily A, member 2 O olfactory receptor 51A2 20121230 -9606 401675 OR56B3P - - HGNC:15247 11 11p15.4 olfactory receptor, family 56, subfamily B, member 3 pseudogene pseudo OR56B3P olfactory receptor, family 56, subfamily B, member 3 pseudogene O - 20121230 -9606 401676 LOC401676 - - - 11 11p15.2 60S ribosomal protein L13a-like pseudo - - - - 20121209 -9606 401677 LOC401677 - - - 11 11p14.1 eukaryotic translation elongation factor 1 alpha 2 pseudogene pseudo - - - - 20121230 -9606 401679 LOC401679 - - - 11 11p11.2 filamin binding LIM protein 1 pseudogene pseudo - - - - 20121230 -9606 401687 OR5J1P - HTPCRH02|OR11-169|OR5J1 HGNC:8348 11 11q12.1 olfactory receptor, family 5, subfamily J, member 1 pseudogene pseudo OR5J1P olfactory receptor, family 5, subfamily J, member 1 pseudogene O - 20121230 -9606 401692 OR5B1P - OR3-144|OR5B14P|OR5B5|OR5B5P|OR5B6|OR5B6P|OR5B7|OR5B7P|OR5B8|OR5B8P|OR5B9|OR5B9P|OR6-55|OR6-57|OR8-122|OR8-123|OR912-92 HGNC:8322 11 11q12.1 olfactory receptor, family 5, subfamily B, member 1 pseudogene pseudo OR5B1P olfactory receptor, family 5, subfamily B, member 1 pseudogene O - 20121230 -9606 401696 OR4D8P - - HGNC:15177 11 11q12.1 olfactory receptor, family 4, subfamily D, member 8 pseudogene pseudo OR4D8P olfactory receptor, family 4, subfamily D, member 8 pseudogene O - 20121230 -9606 401703 LOC401703 - - - 11 11q13.4 U2 small nuclear RNA auxiliary factor 1-like 4 pseudogene pseudo - - - - 20121230 -9606 401708 GLULP3 - GLULL3 HGNC:4344 11 11q24.1 glutamate-ammonia ligase (glutamine synthetase) pseudogene 3 pseudo GLULP3 glutamate-ammonia ligase (glutamine synthetase) pseudogene 3 O - 20121230 -9606 401717 EEF1A1P17 - - HGNC:37890 12 12q12 eukaryotic translation elongation factor 1 alpha 1 pseudogene 17 pseudo EEF1A1P17 eukaryotic translation elongation factor 1 alpha 1 pseudogene 17 O - 20121230 -9606 401718 OR5BK1P - - HGNC:14817 12 12q13.11 olfactory receptor, family 5, subfamily BK, member 1 pseudogene pseudo OR5BK1P olfactory receptor, family 5, subfamily BK, member 1 pseudogene O - 20121230 -9606 401720 FIGNL2 - - HGNC:13287|HPRD:18433 12 12q13.13 fidgetin-like 2 protein-coding FIGNL2 fidgetin-like 2 O putative fidgetin-like protein 2 20121230 -9606 401725 RPL6P25 - RPL6_15_1263 HGNC:36840 12 12q21.31 ribosomal protein L6 pseudogene 25 pseudo RPL6P25 ribosomal protein L6 pseudogene 25 O - 20121230 -9606 401730 IPMKP1 RP11-363G2.2 - HGNC:39354 13 13q12.12 inositol polyphosphate multikinase pseudogene 1 pseudo IPMKP1 inositol polyphosphate multikinase pseudogene 1 O - 20121230 -9606 401742 OR11K2P - - HGNC:19635 14 14q11.2 olfactory receptor, family 11, subfamily K, member 2 pseudogene pseudo OR11K2P olfactory receptor, family 11, subfamily K, member 2 pseudogene O - 20121230 -9606 401744 SMARCE1P3 - - HGNC:39733 14 14q11.2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 3 pseudo SMARCE1P3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 3 O - 20121230 -9606 401767 LOC401767 - - - 14 14q12 1-acylglycerol-3-phosphate O-acyltransferase 6 (lysophosphatidic acid acyltransferase, zeta) pseudogene pseudo - - - - 20121230 -9606 401770 LOC401770 - - - 14 14q21.2 DET1 and DDB1 associated 1 pseudogene pseudo - - - - 20121230 -9606 401777 LOC401777 - - - 14 14q22.3 serine/arginine-rich splicing factor 12 pseudogene pseudo - - - - 20121230 -9606 401805 LOC401805 - - - 15 15q11.2 ring finger protein 145 pseudogene pseudo - - - - 20121230 -9606 401817 RPS10P22 - RPS10_12_1442 HGNC:35814 15 15q22.2 ribosomal protein S10 pseudogene 22 pseudo RPS10P22 ribosomal protein S10 pseudogene 22 O - 20121230 -9606 401822 FDPSP9 - - HGNC:39086 15 15q25.1 farnesyl diphosphate synthase pseudogene 9 pseudo FDPSP9 farnesyl diphosphate synthase pseudogene 9 O - 20121230 -9606 401825 MKI67IPP1 - - HGNC:44949 10 10p11.23 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 1 pseudo MKI67IPP1 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 1 O - 20121230 -9606 401827 MSLNL - C16orf37|MPFL HGNC:14170 16 16p13.3 mesothelin-like pseudo MSLNL mesothelin-like O - 20121230 -9606 401863 RPL10AP12 - RPL10A_7_1502 HGNC:36108 16 16q24.1 ribosomal protein L10a pseudogene 12 pseudo RPL10AP12 ribosomal protein L10a pseudogene 12 O - 20121230 -9606 401864 LOC401864 - - - 16 16q24.1 chloride intracellular channel 1 pseudogene pseudo - - - - 20121230 -9606 401865 RPL7AP63 - RPL7A_28_1503 HGNC:35504 16 16q24.1 ribosomal protein L7a pseudogene 63 pseudo RPL7AP63 ribosomal protein L7a pseudogene 63 O - 20121230 -9606 401875 LOC401875 - - - 17 17p11.2 differentially expressed in FDCP 8 homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 401884 MGC57346 - - - 17 17q21.31 uncharacterized LOC401884 miscRNA - - - - 20121230 -9606 401895 RPS15P9 - RPS15_5_1616 HGNC:36440 19 19p13.3 ribosomal protein S15 pseudogene 9 pseudo RPS15P9 ribosomal protein S15 pseudogene 9 O - 20121230 -9606 401898 ZNF833P - ZNF833 HGNC:33819|HPRD:18434 19 19p13.2 zinc finger protein 833, pseudogene pseudo ZNF833P zinc finger protein 833, pseudogene O - 20121230 -9606 401903 OR10B1P - OR10B2 HGNC:8163 19 19p13.12 olfactory receptor, family 10, subfamily B, member 1 pseudogene pseudo OR10B1P olfactory receptor, family 10, subfamily B, member 1 pseudogene O - 20121230 -9606 401904 RPL23AP2 - RPL23A_38_1631 HGNC:10319 19 19p13.12 ribosomal protein L23a pseudogene 2 pseudo RPL23AP2 ribosomal protein L23a pseudogene 2 O - 20121230 -9606 401911 RPL29P33 - RPL29_22_1650 HGNC:36923 19 19q13.11 ribosomal protein L29 pseudogene 33 pseudo RPL29P33 ribosomal protein L29 pseudogene 33 O - 20121230 -9606 401913 LOC401913 - - - 19 19q13.11 ABO blood group (transferase A, alpha 1-3-N-acetylgalactosaminyltransferase; transferase B, alpha 1-3-galactosyltransferase) pseudogene pseudo - - - - 20121230 -9606 401914 LOC401914 - - - 19 19q13.12 C-terminal binding protein 2 pseudogene pseudo - - - - 20121230 -9606 401934 RNF223 - - HGNC:40020|Ensembl:ENSG00000237330 1 1p36.33 ring finger protein 223 protein-coding RNF223 ring finger protein 223 O RING finger protein 223 20121230 -9606 401940 PRAMEF3 RP11-248D7.1 - HGNC:14087|Ensembl:ENSG00000204503|HPRD:18435|Vega:OTTHUMG00000009404 1 1p36.21 PRAME family member 3 protein-coding PRAMEF3 PRAME family member 3 O - 20121230 -9606 401944 LDLRAD2 RP11-132G19.1 - HGNC:32071|Ensembl:ENSG00000187942|HPRD:18436|Vega:OTTHUMG00000002675 1 1p36.12 low density lipoprotein receptor class A domain containing 2 protein-coding LDLRAD2 low density lipoprotein receptor class A domain containing 2 O low density lipoprotein receptor A domain containing 2|low-density lipoprotein receptor class A domain-containing protein 2 20121230 -9606 401957 LOC401957 - - - 1 1p21.1 matrin 3 pseudogene pseudo - - - - 20121230 -9606 401959 LOC401959 - - - 1 1p12 voltage-dependent anion channel 2 pseudogene pseudo - - - - 20121230 -9606 401960 GAPDHP27 - - HGNC:37779 1 1p12 glyceraldehyde 3 phosphate dehydrogenase pseudogene 27 pseudo GAPDHP27 glyceraldehyde 3 phosphate dehydrogenase pseudogene 27 O - 20121230 -9606 401967 NBPF17P RP11-744H18.2 - HGNC:31997 1 1q21.2 neuroblastoma breakpoint family, member 17, pseudogene pseudo NBPF17P neuroblastoma breakpoint family, member 17, pseudogene O - 20121230 -9606 401973 OR10J6P - OR10J6 HGNC:14994 1 1q23.2 olfactory receptor, family 10, subfamily J, member 6 pseudogene pseudo OR10J6P olfactory receptor, family 10, subfamily J, member 6 pseudogene O - 20121230 -9606 401974 RPS2P10 - RPS2_4_110 HGNC:36892 1 1q24.1 ribosomal protein S2 pseudogene 10 pseudo RPS2P10 ribosomal protein S2 pseudogene 10 O - 20121230 -9606 401975 RPS3AP10 - RPS3A_2_114 HGNC:36036 1 1q24.1 ribosomal protein S3a pseudogene 10 pseudo RPS3AP10 ribosomal protein S3a pseudogene 10 O - 20121230 -9606 401980 LOC401980 - - - 1 1q32.1 4933406M09Rik pseudogene pseudo - - - - 20121115 -9606 401981 FDPSP8 - - HGNC:39085 1 1q32.3 farnesyl diphosphate synthase pseudogene 8 pseudo FDPSP8 farnesyl diphosphate synthase pseudogene 8 O - 20121230 -9606 401982 AKR1B1P1 - ALDRL1 HGNC:420 1 1q42.12 aldehyde reductase family 1, member B1 pseudogene 1 pseudo AKR1B1P1 aldehyde reductase family 1, member B1 pseudogene 1 O - 20121230 -9606 401983 ZNF847P RP5-870F10.1 gm127 HGNC:34384 1 1q42.13 zinc finger protein 847, pseudogene pseudo ZNF847P zinc finger protein 847, pseudogene O - 20121021 -9606 401992 OR2T2 - OR1-43|OR2T2P HGNC:14725|Ensembl:ENSG00000196240|HPRD:17706|Vega:OTTHUMG00000040480 1 1q44 olfactory receptor, family 2, subfamily T, member 2 protein-coding OR2T2 olfactory receptor, family 2, subfamily T, member 2 O olfactory receptor 2T2|olfactory receptor OR1-43|olfactory receptor, family 2, subfamily T, member 2 pseudogene 20121230 -9606 401993 OR2T5 - OR1-62 HGNC:15017|Ensembl:ENSG00000203661|HPRD:17710|Vega:OTTHUMG00000040481 1 1q44 olfactory receptor, family 2, subfamily T, member 5 protein-coding OR2T5 olfactory receptor, family 2, subfamily T, member 5 O olfactory receptor 2T5|olfactory receptor OR1-62 20121230 -9606 401994 OR14I1 - OR5BU1|OR5BU1P HGNC:19575|Ensembl:ENSG00000189181|HPRD:17755|Vega:OTTHUMG00000040378 1 1q44 olfactory receptor, family 14, subfamily I, member 1 protein-coding OR14I1 olfactory receptor, family 14, subfamily I, member 1 O olfactory receptor 14I1|olfactory receptor 5BU1|olfactory receptor, family 5, subfamily BU, member 1 pseudogene 20121230 -9606 402016 BPIFB9P - C20orf115|dJ1187J4.2|dJ1187J4.3 HGNC:16109 20 20q11.21 BPI fold containing family B, member 9, pseudogene pseudo BPIFB9P BPI fold containing family B, member 9, pseudogene O - 20121230 -9606 402036 LOC402036 - - - 22 22q11.21 hCG1646661-like protein-coding - - - - 20121018 -9606 402055 SRRD CTB-1048E9.5 HC/HCC|SRR1L HGNC:33910|MIM:602254|Ensembl:ENSG00000100104|HPRD:18437|Vega:OTTHUMG00000150885 22 22q12.1 SRR1 domain containing protein-coding SRRD SRR1 domain containing O SRR1 domain-containing protein|SRR1-like protein|hepatocellular carcinoma complicating hemochromatosis 20121230 -9606 402057 RPS17P16 SC22CB-1E7.1 RPS17_8_1748 HGNC:36821 22 22q12.3 ribosomal protein S17 pseudogene 16 pseudo RPS17P16 ribosomal protein S17 pseudogene 16 O - 20121230 -9606 402069 RPS16P2 - RPS16_1_197 HGNC:35928 2 2p24.1 ribosomal protein S16 pseudogene 2 pseudo RPS16P2 ribosomal protein S16 pseudogene 2 O - 20121230 -9606 402076 LOC402076 - - - 2 2p14 F-box and leucine-rich repeat protein 12 pseudogene pseudo - - - - 20121230 -9606 402077 OR7E46P - MCEEP|OST379 HGNC:8420 2 2p13.3 olfactory receptor, family 7, subfamily E, member 46 pseudogene pseudo OR7E46P olfactory receptor, family 7, subfamily E, member 46 pseudogene O - 20121230 -9606 402093 LOC402093 - - - 2 2q12.1 adenosylhomocysteinase pseudogene pseudo - - - - 20121230 -9606 402096 LOC402096 - - - 2 2q12.2 uncharacterized LOC402096 pseudo - - - - 20121209 -9606 402100 RPL22P11 - RPL22P15|RPL22P9|RPL22_3_260|RPL22_5_261 HGNC:35603 2 2q13 ribosomal protein L22 pseudogene 11 pseudo RPL22P11 ribosomal protein L22 pseudogene 11 O - 20121230 -9606 402112 LOC402112 - - - 2 2q31.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 402116 PKP4P1 - - HGNC:42661 2 2q34 plakophilin 4 pseudogene 1 pseudo PKP4P1 plakophilin 4 pseudogene 1 O - 20121230 -9606 402117 VWC2L - - HGNC:37203|Ensembl:ENSG00000174453|Vega:OTTHUMG00000154811 2 2q34-q35 von Willebrand factor C domain containing protein 2-like protein-coding VWC2L von Willebrand factor C domain containing protein 2-like O brorin-like|von Willebrand factor C domain-containing protein 2-like 20121230 -9606 402120 RPL23P5 - RPL23_3_328 HGNC:35747 2 2q36.1 ribosomal protein L23 pseudogene 5 pseudo RPL23P5 ribosomal protein L23 pseudogene 5 O - 20121230 -9606 402123 RPSAP32 - - - 3 3p26.3 ribosomal protein SA pseudogene 32 pseudo - - - - 20121230 -9606 402125 LOC402125 - - - 3 3p24.3 heat shock 70kDa protein 6 (HSP70B') pseudogene pseudo - - - - 20121230 -9606 402133 OR7E121P - - HGNC:15049 3 3p12.3 olfactory receptor, family 7, subfamily E, member 121 pseudogene pseudo OR7E121P olfactory receptor, family 7, subfamily E, member 121 pseudogene O - 20121230 -9606 402134 KRT8P25 - - HGNC:33377 3 3p11.2 keratin 8 pseudogene 25 pseudo KRT8P25 keratin 8 pseudogene 25 O - 20121230 -9606 402135 OR5K2 - OR3-9 HGNC:14774|Ensembl:ENSG00000231861|HPRD:15044|Vega:OTTHUMG00000160049 3 3q11.2 olfactory receptor, family 5, subfamily K, member 2 protein-coding OR5K2 olfactory receptor, family 5, subfamily K, member 2 O olfactory receptor 5K2|olfactory receptor OR3-9 20121230 -9606 402143 HSPA8P9 - - HGNC:44924 3 3q22.3 heat shock 70kDa protein 8 pseudogene 9 pseudo HSPA8P9 heat shock 70kDa protein 8 pseudogene 9 O - 20121230 -9606 402146 B3GAT3P1 - B3GAT3P|PSIGLCAT-I HGNC:35243 3 3q25.33 beta-1,3-glucuronyltransferase 3 pseudogene 1 pseudo B3GAT3P1 beta-1,3-glucuronyltransferase 3 pseudogene 1 O - 20121230 -9606 402149 RPL28P1 hCG_18247 RPL28_2_436|bcm2489 HGNC:31359 3 3q26.2 ribosomal protein L28 pseudogene 1 pseudo RPL28P1 ribosomal protein L28 pseudogene 1 O - 20121230 -9606 402150 RPL8P4 - RPL8_1_438 HGNC:35555 3 3q26.31 ribosomal protein L8 pseudogene 4 pseudo RPL8P4 ribosomal protein L8 pseudogene 4 O - 20121230 -9606 402152 RPL7L1P8 - - HGNC:39490 3 3q26.33 ribosomal protein L7-like 1 pseudogene 8 pseudo RPL7L1P8 ribosomal protein L7-like 1 pseudogene 8 O - 20121230 -9606 402160 LOC402160 - - - 4 4p16.3 uncharacterized LOC402160 protein-coding - - - uncharacterized protein LOC402160 20121230 -9606 402175 LOC402175 - - - 4 4p13 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 4, 15kDa pseudogene pseudo - - - - 20121230 -9606 402176 RPL21P44 - RPL21_17_477 HGNC:33820|HPRD:17396 4 4q12 ribosomal protein L21 pseudogene 44 pseudo RPL21P44 ribosomal protein L21 pseudogene 44 O - 20121230 -9606 402182 LOC402182 - - - 4 4q24 family with sequence similarity 64, member A pseudogene pseudo - - - - 20121230 -9606 402183 RAC1P5 - Psi1Rac1 HGNC:30593 4 4q25 ras-related C3 botulinum toxin substrate 1 pseudogene 5 pseudo RAC1P5 ras-related C3 botulinum toxin substrate 1 pseudogene 5 O - 20121230 -9606 402184 RPS12P8 - RPS12_4_508 HGNC:35945 4 4q25 ribosomal protein S12 pseudogene 8 pseudo RPS12P8 ribosomal protein S12 pseudogene 8 O - 20121230 -9606 402191 LOC402191 - - - 4 4q32.3 nucleolar protein 8 pseudogene pseudo - - - - 20121230 -9606 402192 LOC402192 - - - 4 4q33 chloride channel, nucleotide-sensitive, 1A pseudogene pseudo - - - - 20121230 -9606 402193 RPL5P11 - RPL5_6_536 HGNC:35483 4 4q34.1 ribosomal protein L5 pseudogene 11 pseudo RPL5P11 ribosomal protein L5 pseudogene 11 O - 20121230 -9606 402213 LOC402213 - - - 5 5p12 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 402214 RPL13AP13 - RPL13A_4_562 HGNC:36541 5 5q11.2 ribosomal protein L13a pseudogene 13 pseudo RPL13AP13 ribosomal protein L13a pseudogene 13 O - 20121230 -9606 402216 LOC402216 - - - 5 5q11.2 heterogeneous nuclear ribonucleoprotein H1 (H) pseudogene pseudo - - - - 20121230 -9606 402220 YTHDF1P1 - YTHDF1P HGNC:31681 5 5q15 YTH domain family, member 1 pseudogene 1 pseudo YTHDF1P1 YTH domain family, member 1 pseudogene 1 O - 20121230 -9606 402221 LOC402221 - - - 5 5q15 actin, beta pseudogene pseudo - - - - 20121230 -9606 402222 DDX18P4 - - HGNC:33967 5 5q15 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 4 pseudo DDX18P4 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 4 O - 20121230 -9606 402226 CCT5P1 - CCT5-3P HGNC:35135 5 5q22.3 chaperonin containing TCP1, subunit 5 (epsilon) pseudogene 1 pseudo CCT5P1 chaperonin containing TCP1, subunit 5 (epsilon) pseudogene 1 O - 20121230 -9606 402229 LOC402229 - - - 5 5q23.3 splicing factor 4 pseudogene pseudo - - - - 20121230 -9606 402230 LOC402230 - - - 5 5q31.1 small nuclear ribonucleoprotein 27kDa (U4/U6.U5) pseudogene pseudo - - - - 20121230 -9606 402236 OR1X1P - - HGNC:15062 5 5q35.2 olfactory receptor, family 1, subfamily X, member 1 pseudogene pseudo OR1X1P olfactory receptor, family 1, subfamily X, member 1 pseudogene O - 20121230 -9606 402240 OR1X5P - - HGNC:31245 5 5q35.3 olfactory receptor, family 1, subfamily X, member 5 pseudogene pseudo OR1X5P olfactory receptor, family 1, subfamily X, member 5 pseudogene O - 20121230 -9606 402246 OR10AH1P - - HGNC:19647 7 7p22.1 olfactory receptor, family 10, subfamily AH, member 1 pseudogene pseudo OR10AH1P olfactory receptor, family 10, subfamily AH, member 1 pseudogene O - 20121230 -9606 402249 OR7E59P - OR7E137P|OR7E59|OST119 HGNC:8434 7 7p22.1 olfactory receptor, family 7, subfamily E, member 59 pseudogene pseudo OR7E59P olfactory receptor, family 7, subfamily E, member 59 pseudogene O - 20121230 -9606 402269 LOC402269 - - - 7 7q11.21 equilibrative nucleoside transporter 4-like protein-coding - - - - 20121209 -9606 402273 VN1R37P - - HGNC:37357 7 7q11.21 vomeronasal 1 receptor 37 pseudogene pseudo VN1R37P vomeronasal 1 receptor 37 pseudogene O - 20121230 -9606 402279 LOC402279 - - - 7 7q11.21 glutamate receptor, metabotropic 8 pseudogene pseudo - - - - 20121230 -9606 402287 RPS3AP21 - RPS3A_7_600 HGNC:36841 5 5q22.1 ribosomal protein S3a pseudogene 21 pseudo RPS3AP21 ribosomal protein S3a pseudogene 21 O - 20121230 -9606 402317 OR2A42 - - HGNC:31230|Ensembl:ENSG00000212807|HPRD:18486|Vega:OTTHUMG00000157995 7 7q35 olfactory receptor, family 2, subfamily A, member 42 protein-coding OR2A42 olfactory receptor, family 2, subfamily A, member 42 O olfactory receptor 2A1/2A42|olfactory receptor OR7-16|olfactory receptor OR7-19 20121230 -9606 402329 LOC402329 - - - 8 8p23.1 ubiquitin carboxyl-terminal hydrolase 17-like protein 2-like pseudo - - - - 20121230 -9606 402333 OR7E160P - - HGNC:31233 8 8p23.1 olfactory receptor, family 7, subfamily E, member 160 pseudogene pseudo OR7E160P olfactory receptor, family 7, subfamily E, member 160 pseudogene O - 20121230 -9606 402342 RPL13AP18 - RPL13A_5_919 HGNC:36593 8 8q21.13 ribosomal protein L13a pseudogene 18 pseudo RPL13AP18 ribosomal protein L13a pseudogene 18 O - 20121230 -9606 402359 KHSRPP1 - - HGNC:39198 9 9p21.3 KH-type splicing regulatory protein pseudogene 1 pseudo KHSRPP1 KH-type splicing regulatory protein pseudogene 1 O - 20121230 -9606 402360 LOC402360 - - - 9 9p21.3 NOP56 ribonucleoprotein homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 402374 OR13D3P - - HGNC:15106 9 9q31.1 olfactory receptor, family 13, subfamily D, member 3 pseudogene pseudo OR13D3P olfactory receptor, family 13, subfamily D, member 3 pseudogene O - 20121230 -9606 402375 YBX1P6 - - HGNC:42427 9 9q31.3 Y box binding protein 1 pseudogene 6 pseudo YBX1P6 Y box binding protein 1 pseudogene 6 O - 20121230 -9606 402381 SOHLH1 RP11-100C15.3 C9orf157|NOHLH|SPATA27|TEB2|bA100C15.3|bHLHe80 HGNC:27845|MIM:610224|Ensembl:ENSG00000165643|HPRD:16678|Vega:OTTHUMG00000020915 9 9q34.3 spermatogenesis and oogenesis specific basic helix-loop-helix 1 protein-coding SOHLH1 spermatogenesis and oogenesis specific basic helix-loop-helix 1 O newborn ovary helix loop helix|spermatogenesis associated 27|spermatogenesis- and oogenesis-specific basic helix-loop-helix-containing protein 1 20121230 -9606 402394 IMPDH1P2 - - HGNC:33957 X Xp11.4 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 2 pseudo IMPDH1P2 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 2 O - 20121230 -9606 402408 PKMP2 - - HGNC:44244 X Xq12 pyruvate kinase, muscle pseudogene 2 pseudo PKMP2 pyruvate kinase, muscle pseudogene 2 O - 20121230 -9606 402415 XKRX LL0XNC01-131B10.1 XKR2|XPLAC|XRG2 HGNC:29845|MIM:300684|Ensembl:ENSG00000182489|HPRD:11687|Vega:OTTHUMG00000022010 X Xq22.1 XK, Kell blood group complex subunit-related, X-linked protein-coding XKRX XK, Kell blood group complex subunit-related, X-linked O X Kell blood group precursor-related, X-linked|XK-related protein 2|membrane protein XPLAC 20121230 -9606 402420 EEF1A1P30 - - HGNC:37906 X Xq24 eukaryotic translation elongation factor 1 alpha 1 pseudogene 30 pseudo EEF1A1P30 eukaryotic translation elongation factor 1 alpha 1 pseudogene 30 O - 20121230 -9606 402422 LOC402422 - - - X Xq25 tubulin, beta 4A class IVa pseudogene pseudo - - - - 20121230 -9606 402424 OR13K1P - - HGNC:14721 X Xq26.2 olfactory receptor, family 13, subfamily K, member 1 pseudogene pseudo OR13K1P olfactory receptor, family 13, subfamily K, member 1 pseudogene O - 20121230 -9606 402425 LOC402425 - - - X Xq26.2 5'-nucleotidase domain containing 1 pseudogene pseudo - - - - 20121230 -9606 402429 KRT8P8 - - HGNC:33362 X Xq28 keratin 8 pseudogene 8 pseudo KRT8P8 keratin 8 pseudogene 8 O - 20121230 -9606 402469 LOC402469 tcag7.1056 FKSG50|FKSG53|FKSG54 - 7 7q11.21 uncharacterized LOC402469 other - - - - 20120710 -9606 402481 PP13004 - - - 7 7p14.2 uncharacterized LOC402481 unknown - - - - 20121230 -9606 402483 FLJ45340 tcag7.907 - - 7 7q32.1 uncharacterized LOC402483 miscRNA - - - - 20121230 -9606 402509 SLC29A4P1 - - HGNC:43783 7 7p11.2 solute carrier family 29 (nucleoside transporters), member 4 pseudogene 1 pseudo SLC29A4P1 solute carrier family 29 (nucleoside transporters), member 4 pseudogene 1 O - 20121230 -9606 402562 HNRNPA1P8 hCG_2023776 - HGNC:39126 7 7q21.11 heterogeneous nuclear ribonucleoprotein A1 pseudogene 8 pseudo HNRNPA1P8 heterogeneous nuclear ribonucleoprotein A1 pseudogene 8 O - 20121230 -9606 402569 KPNA7 - - HGNC:21839|MIM:614107|Ensembl:ENSG00000185467|Vega:OTTHUMG00000154412 7 7q22.1 karyopherin alpha 7 (importin alpha 8) protein-coding KPNA7 karyopherin alpha 7 (importin alpha 8) O importin subunit alpha-8|karyopherin 7|karyopherin subunit alpha-7 20121230 -9606 402573 C7orf61 - - HGNC:22135|Ensembl:ENSG00000185955|HPRD:17558|Vega:OTTHUMG00000150234 7 7q22.1 chromosome 7 open reading frame 61 protein-coding C7orf61 chromosome 7 open reading frame 61 O uncharacterized protein C7orf61 20121230 -9606 402634 LOC402634 - - - 7 7p22.3 neugrin, neurite outgrowth associated pseudogene pseudo - - - - 20121230 -9606 402635 GRIFIN tcag7.945 - HGNC:4577 7 7p22.3 galectin-related inter-fiber protein pseudo GRIFIN galectin-related inter-fiber protein O - 20121230 -9606 402641 LOC402641 - - - 7 7p21.1 v-ral simian leukemia viral oncogene homolog A (ras related) pseudogene pseudo - - - - 20121230 -9606 402643 TPM3P4 - - HGNC:39167 7 7p15.2 tropomyosin 3 pseudogene 4 pseudo TPM3P4 tropomyosin 3 pseudogene 4 O - 20121230 -9606 402644 LOC402644 tcag7.873 - - 7 7p15.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 402665 IGLON5 - - HGNC:34550|Ensembl:ENSG00000142549|Vega:OTTHUMG00000154422 19 19q13.41 IgLON family member 5 protein-coding IGLON5 IgLON family member 5 O Ig-like domain-containing protein ENSP00000270642|hCG1651476|igLON family member 5 20121230 -9606 402676 NDUFAF4P2 - - HGNC:44541 7 7q21.3 NADH dehydrogenase (ubiquinone) complex I, assembly factor 4 pseudogene 2 pseudo NDUFAF4P2 NADH dehydrogenase (ubiquinone) complex I, assembly factor 4 pseudogene 2 O - 20121230 -9606 402679 MARK2P10 - - HGNC:39801 7 7q21.3 MAP/microtubule affinity-regulating kinase 2 pseudogene 10 pseudo MARK2P10 MAP/microtubule affinity-regulating kinase 2 pseudogene 10 O - 20121230 -9606 402682 UFSP1 tcag7.1226 UFSP HGNC:33821|MIM:611481|Ensembl:ENSG00000176125|HPRD:18630|Vega:OTTHUMG00000159662 7 7q22.1 UFM1-specific peptidase 1 (non-functional) protein-coding UFSP1 UFM1-specific peptidase 1 (non-functional) O inactive Ufm1-specific protease 1 20121230 -9606 402694 RPL15P11 tcag7.350 RPL15_5_851 HGNC:36093 7 7q33 ribosomal protein L15 pseudogene 11 pseudo RPL15P11 ribosomal protein L15 pseudogene 11 O - 20121230 -9606 402715 LOC402715 tcag7.926 - - 7 7q35 karyopherin alpha 2 (RAG cohort 1, importin alpha 1) pseudogene pseudo - - - - 20121230 -9606 402716 RPL32P17 tcag7.986 RPL32_9_862 HGNC:36251 7 7q36.1 ribosomal protein L32 pseudogene 17 pseudo RPL32P17 ribosomal protein L32 pseudogene 17 O - 20121230 -9606 402778 IFITM10 - DSPA3 HGNC:40022|Ensembl:ENSG00000244242|Vega:OTTHUMG00000043933 11 11p15.5 interferon induced transmembrane protein 10 protein-coding IFITM10 interferon induced transmembrane protein 10 O dispanin subfamily A member 3|interferon-induced transmembrane protein 10 20121230 -9606 402779 LOC402779 - - - 1 - uncharacterized LOC402779 miscRNA - - - - 20121230 -9606 403150 FLJ31356 - - - 2 2p23.3 uncharacterized protein FLJ31356 miscRNA - - - - 20121230 -9606 403219 OR7E157P - - HGNC:31231 8 8p23 olfactory receptor, family 7, subfamily E, member 157 pseudogene pseudo OR7E157P olfactory receptor, family 7, subfamily E, member 157 pseudogene O - 20121230 -9606 403223 OR10AE3P - - HGNC:31235 12 12q13.2 olfactory receptor, family 10, subfamily AE, member 3 pseudogene pseudo OR10AE3P olfactory receptor, family 10, subfamily AE, member 3 pseudogene O - 20121230 -9606 403224 OR10AK1P - - HGNC:31236 11 11q olfactory receptor, family 10, subfamily AK, member 1 pseudogene pseudo OR10AK1P olfactory receptor, family 10, subfamily AK, member 1 pseudogene O - 20121230 -9606 403225 OR10V7P - - HGNC:31237 14 14q21.1 olfactory receptor, family 10, subfamily V, member 7 pseudogene pseudo OR10V7P olfactory receptor, family 10, subfamily V, member 7 pseudogene O - 20121230 -9606 403226 OR11J5P - - HGNC:31238 15 15q11.2 olfactory receptor, family 11, subfamily J, member 5 pseudogene pseudo OR11J5P olfactory receptor, family 11, subfamily J, member 5 pseudogene O - 20121230 -9606 403227 OR11Q1P - - HGNC:31239 X Xq26.1 olfactory receptor, family 11, subfamily Q, member 1 pseudogene pseudo OR11Q1P olfactory receptor, family 11, subfamily Q, member 1 pseudogene O - 20121230 -9606 403228 OR13Z1P - - HGNC:31240 1 1q21.1 olfactory receptor, family 13, subfamily Z, member 1 pseudogene pseudo OR13Z1P olfactory receptor, family 13, subfamily Z, member 1 pseudogene O - 20121230 -9606 403229 OR13Z2P - - HGNC:31241 1 1q21.1 olfactory receptor, family 13, subfamily Z, member 2 pseudogene pseudo OR13Z2P olfactory receptor, family 13, subfamily Z, member 2 pseudogene O - 20121230 -9606 403230 OR13Z3P - - HGNC:31242 1 1q21.1 olfactory receptor, family 13, subfamily Z, member 3 pseudogene pseudo OR13Z3P olfactory receptor, family 13, subfamily Z, member 3 pseudogene O - 20121230 -9606 403231 OR1AC1P - - HGNC:31243 17 17p13.3 olfactory receptor, family 1, subfamily AC, member 1 pseudogene pseudo OR1AC1P olfactory receptor, family 1, subfamily AC, member 1 pseudogene O - 20121230 -9606 403232 OR1M4P - - HGNC:31244 19 19p13.2 olfactory receptor, family 1, subfamily M, member 4 pseudogene pseudo OR1M4P olfactory receptor, family 1, subfamily M, member 4 pseudogene O - 20121230 -9606 403234 OR2A41P - - HGNC:31246 7 7q35 olfactory receptor, family 2, subfamily A, member 41 pseudogene pseudo OR2A41P olfactory receptor, family 2, subfamily A, member 41 pseudogene O - 20121230 -9606 403235 OR2AO1P - - HGNC:31247 7 7q35 olfactory receptor, family 2, subfamily AO, member 1 pseudogene pseudo OR2AO1P olfactory receptor, family 2, subfamily AO, member 1 pseudogene O - 20121230 -9606 403236 OR2AS2P - - HGNC:31248 1 1q44 olfactory receptor, family 2, subfamily AS, member 2 pseudogene pseudo OR2AS2P olfactory receptor, family 2, subfamily AS, member 2 pseudogene O - 20121230 -9606 403238 OR2BH1P - - HGNC:31250 11 11p14.1 olfactory receptor, family 2, subfamily BH, member 1 pseudogene pseudo OR2BH1P olfactory receptor, family 2, subfamily BH, member 1 pseudogene O - 20121230 -9606 403239 OR2T27 - - HGNC:31252|Ensembl:ENSG00000187701|HPRD:14952|Vega:OTTHUMG00000040376 1 1q44 olfactory receptor, family 2, subfamily T, member 27 protein-coding OR2T27 olfactory receptor, family 2, subfamily T, member 27 O olfactory receptor 2T27|olfactory receptor OR1-67 20121230 -9606 403241 OR2T32P - - HGNC:31254 1 1q44 olfactory receptor, family 2, subfamily T, member 32 pseudogene pseudo OR2T32P olfactory receptor, family 2, subfamily T, member 32 pseudogene O - 20121230 -9606 403244 OR2T35 - - HGNC:31257|Ensembl:ENSG00000177151|HPRD:17709|Vega:OTTHUMG00000040380 1 1q44 olfactory receptor, family 2, subfamily T, member 35 protein-coding OR2T35 olfactory receptor, family 2, subfamily T, member 35 O olfactory receptor 2T35|olfactory receptor OR1-66 20121230 -9606 403245 OR2X1P - - HGNC:31258 1 1q44 olfactory receptor, family 2, subfamily X, member 1 pseudogene pseudo OR2X1P olfactory receptor, family 2, subfamily X, member 1 pseudogene O - 20121230 -9606 403247 OR4A41P - - HGNC:31260 11 11p11.2 olfactory receptor, family 4, subfamily A, member 41 pseudogene pseudo OR4A41P olfactory receptor, family 4, subfamily A, member 41 pseudogene O - 20121230 -9606 403248 OR4A42P - - HGNC:31261 11 11p11.2 olfactory receptor, family 4, subfamily A, member 42 pseudogene pseudo OR4A42P olfactory receptor, family 4, subfamily A, member 42 pseudogene O - 20121230 -9606 403250 OR4A44P - - HGNC:31263 11 11p11.2 olfactory receptor, family 4, subfamily A, member 44 pseudogene pseudo OR4A44P olfactory receptor, family 4, subfamily A, member 44 pseudogene O - 20121230 -9606 403251 OR4A45P - - HGNC:31264 11 11p11.2 olfactory receptor, family 4, subfamily A, member 45 pseudogene pseudo OR4A45P olfactory receptor, family 4, subfamily A, member 45 pseudogene O - 20121230 -9606 403252 OR4A46P - - HGNC:31265 11 11p11.2 olfactory receptor, family 4, subfamily A, member 46 pseudogene pseudo OR4A46P olfactory receptor, family 4, subfamily A, member 46 pseudogene O - 20121230 -9606 403253 OR4A47 - OR11-113 HGNC:31266|Ensembl:ENSG00000237388|HPRD:17718|Vega:OTTHUMG00000166581 11 11p11.2 olfactory receptor, family 4, subfamily A, member 47 protein-coding OR4A47 olfactory receptor, family 4, subfamily A, member 47 O olfactory receptor 4A47|olfactory receptor OR11-113 20121230 -9606 403254 OR4A48P - - HGNC:31267 11 11p11.2 olfactory receptor, family 4, subfamily A, member 48 pseudogene pseudo OR4A48P olfactory receptor, family 4, subfamily A, member 48 pseudogene O - 20121230 -9606 403255 OR4A49P - - HGNC:31268 11 11p11.12 olfactory receptor, family 4, subfamily A, member 49 pseudogene pseudo OR4A49P olfactory receptor, family 4, subfamily A, member 49 pseudogene O - 20121230 -9606 403256 OR4A50P - - HGNC:31269 11 11q11 olfactory receptor, family 4, subfamily A, member 50 pseudogene pseudo OR4A50P olfactory receptor, family 4, subfamily A, member 50 pseudogene O - 20121230 -9606 403257 OR4C45 - - HGNC:31270|HPRD:17723 11 11p11.12 olfactory receptor, family 4, subfamily C, member 45 protein-coding OR4C45 olfactory receptor, family 4, subfamily C, member 45 O olfactory receptor 4C45 20121230 -9606 403259 OR4C48P - - HGNC:31272 11 - olfactory receptor, family 4, subfamily C, member 48 pseudogene pseudo OR4C48P olfactory receptor, family 4, subfamily C, member 48 pseudogene O - 20121230 -9606 403260 OR4C49P - - HGNC:31273 11 - olfactory receptor, family 4, subfamily C, member 49 pseudogene pseudo OR4C49P olfactory receptor, family 4, subfamily C, member 49 pseudogene O - 20121230 -9606 403263 OR4G11P - - HGNC:31276 1 1p36.33 olfactory receptor, family 4, subfamily G, member 11 pseudogene pseudo OR4G11P olfactory receptor, family 4, subfamily G, member 11 pseudogene O - 20121230 -9606 403264 OR4X7P - - HGNC:31277 11 11q11 olfactory receptor, family 4, subfamily X, member 7 pseudogene pseudo OR4X7P olfactory receptor, family 4, subfamily X, member 7 pseudogene O - 20121230 -9606 403265 OR51AB1P - - HGNC:31278 11 11p15.4 olfactory receptor, family 51, subfamily AB, member 1 pseudogene pseudo OR51AB1P olfactory receptor, family 51, subfamily AB, member 1 pseudogene O - 20121230 -9606 403266 OR51B8P - - HGNC:31279 11 11p15.4 olfactory receptor, family 51, subfamily B, member 8 pseudogene pseudo OR51B8P olfactory receptor, family 51, subfamily B, member 8 pseudogene O - 20121230 -9606 403271 OR5AC4P - - HGNC:31284 3 3q11.2 olfactory receptor, family 5, subfamily AC, member 4 pseudogene pseudo OR5AC4P olfactory receptor, family 5, subfamily AC, member 4 pseudogene O - 20121230 -9606 403272 OR5AO1P - - HGNC:31285 11 11q olfactory receptor, family 5, subfamily AO, member 1 pseudogene pseudo OR5AO1P olfactory receptor, family 5, subfamily AO, member 1 pseudogene O - 20121230 -9606 403273 OR5H14 - - HGNC:31286|Ensembl:ENSG00000236032|HPRD:15041|Vega:OTTHUMG00000160079 3 3q12.1 olfactory receptor, family 5, subfamily H, member 14 protein-coding OR5H14 olfactory receptor, family 5, subfamily H, member 14 O olfactory receptor 5H14|seven transmembrane helix receptor 20121230 -9606 403274 OR5H15 - - HGNC:31287|Ensembl:ENSG00000233412|HPRD:17760|Vega:OTTHUMG00000160076 3 3q12.1 olfactory receptor, family 5, subfamily H, member 15 protein-coding OR5H15 olfactory receptor, family 5, subfamily H, member 15 O olfactory receptor 5H15 20121230 -9606 403275 OR9S24P - OR5J6P HGNC:31288 2 2q37.3 olfactory receptor, family 9, subfamily S, member 24 pseudogene pseudo OR9S24P olfactory receptor, family 9, subfamily S, member 24 pseudogene O - 20121230 -9606 403276 OR5J7P - - HGNC:31289 11 11q olfactory receptor, family 5, subfamily J, member 7 pseudogene pseudo OR5J7P olfactory receptor, family 5, subfamily J, member 7 pseudogene O - 20121230 -9606 403277 OR5K3 - - HGNC:31290|Ensembl:ENSG00000206536|HPRD:17763|Vega:OTTHUMG00000160077 3 3q12.1 olfactory receptor, family 5, subfamily K, member 3 protein-coding OR5K3 olfactory receptor, family 5, subfamily K, member 3 O olfactory receptor 5K3 20121230 -9606 403278 OR5K4 - - HGNC:31291|Ensembl:ENSG00000196098|HPRD:17764|Vega:OTTHUMG00000160081 3 3q12.1 olfactory receptor, family 5, subfamily K, member 4 protein-coding OR5K4 olfactory receptor, family 5, subfamily K, member 4 O olfactory receptor 5K4 20121230 -9606 403281 OR6C64P - - HGNC:31294 12 12q13.2 olfactory receptor, family 6, subfamily C, member 64 pseudogene pseudo OR6C64P olfactory receptor, family 6, subfamily C, member 64 pseudogene O - 20121230 -9606 403282 OR6C65 - - HGNC:31295|Ensembl:ENSG00000205328|HPRD:15058|Vega:OTTHUMG00000169955 12 12q13.2 olfactory receptor, family 6, subfamily C, member 65 protein-coding OR6C65 olfactory receptor, family 6, subfamily C, member 65 O olfactory receptor 6C65 20121230 -9606 403283 OR6C66P - - HGNC:31296 12 12q13.2 olfactory receptor, family 6, subfamily C, member 66 pseudogene pseudo OR6C66P olfactory receptor, family 6, subfamily C, member 66 pseudogene O - 20121230 -9606 403284 OR6C68 - - HGNC:31297|Ensembl:ENSG00000205327|HPRD:17776|Vega:OTTHUMG00000169958 12 12q13.2 olfactory receptor, family 6, subfamily C, member 68 protein-coding OR6C68 olfactory receptor, family 6, subfamily C, member 68 O olfactory receptor 6C68 20121230 -9606 403285 OR6C69P - - HGNC:31298 12 12q13.2 olfactory receptor, family 6, subfamily C, member 69 pseudogene pseudo OR6C69P olfactory receptor, family 6, subfamily C, member 69 pseudogene O - 20121230 -9606 403288 OR6C72P - - HGNC:31301 12 12q13.2 olfactory receptor, family 6, subfamily C, member 72 pseudogene pseudo OR6C72P olfactory receptor, family 6, subfamily C, member 72 pseudogene O - 20121230 -9606 403289 OR6C73P - - HGNC:31302 12 12q13.2 olfactory receptor, family 6, subfamily C, member 73 pseudogene pseudo OR6C73P olfactory receptor, family 6, subfamily C, member 73 pseudogene O - 20121230 -9606 403294 OR6R2P - - HGNC:31307 8 8p21.3 olfactory receptor, family 6, subfamily R, member 2 pseudogene pseudo OR6R2P olfactory receptor, family 6, subfamily R, member 2 pseudogene O - 20121230 -9606 403295 OR7D11P - - HGNC:31308 19 19p13.2 olfactory receptor, family 7, subfamily D, member 11 pseudogene pseudo OR7D11P olfactory receptor, family 7, subfamily D, member 11 pseudogene O - 20121230 -9606 403296 OR7E154P - - HGNC:31309 8 8p23 olfactory receptor, family 7, subfamily E, member 154 pseudogene pseudo OR7E154P olfactory receptor, family 7, subfamily E, member 154 pseudogene O - 20121230 -9606 403297 OR7E155P - - HGNC:31310 13 13q14.11 olfactory receptor, family 7, subfamily E, member 155 pseudogene pseudo OR7E155P olfactory receptor, family 7, subfamily E, member 155 pseudogene O - 20121230 -9606 403299 OR7E159P - - HGNC:31312 14 14q22.1 olfactory receptor, family 7, subfamily E, member 159 pseudogene pseudo OR7E159P olfactory receptor, family 7, subfamily E, member 159 pseudogene O - 20121230 -9606 403300 OR7G15P - - HGNC:31313 19 19p13.2 olfactory receptor, family 7, subfamily G, member 15 pseudogene pseudo OR7G15P olfactory receptor, family 7, subfamily G, member 15 pseudogene O - 20121230 -9606 403301 OR7H2P - - HGNC:31314 5 5q21.1 olfactory receptor, family 7, subfamily H, member 2 pseudogene pseudo OR7H2P olfactory receptor, family 7, subfamily H, member 2 pseudogene O - 20121230 -9606 403302 OR8A3P - - HGNC:31315 11 11q olfactory receptor, family 8, subfamily A, member 3 pseudogene pseudo OR8A3P olfactory receptor, family 8, subfamily A, member 3 pseudogene O - 20121230 -9606 403303 OR8I4P - - HGNC:31316 11 11q12.1 olfactory receptor, family 8, subfamily I, member 4 pseudogene pseudo OR8I4P olfactory receptor, family 8, subfamily I, member 4 pseudogene O - 20121230 -9606 403304 OR8S21P - - HGNC:31317 12 12q13.11 olfactory receptor, family 8, subfamily S, member 21 pseudogene pseudo OR8S21P olfactory receptor, family 8, subfamily S, member 21 pseudogene O - 20121230 -9606 403305 OR8X1P - - HGNC:31318 11 11q24.2 olfactory receptor, family 8, subfamily X, member 1 pseudogene pseudo OR8X1P olfactory receptor, family 8, subfamily X, member 1 pseudogene O - 20121230 -9606 403312 MGC39545 - - HPRD:17540 11 11q24.2 uncharacterized LOC403312 unknown - - - - 20121230 -9606 403313 PPAPDC2 RP11-6J24.2 PDP1|PSDP|bA6J24.6 HGNC:23682|MIM:611666|Ensembl:ENSG00000205808|HPRD:17397|Vega:OTTHUMG00000019466 9 9p24.1 phosphatidic acid phosphatase type 2 domain containing 2 protein-coding PPAPDC2 phosphatidic acid phosphatase type 2 domain containing 2 O PPAP2 domain-containing protein 2|phosphatidic acid phosphatase type 2 domain-containing protein 2|polyisoprenoid diphosphate phosphatase type 1|presqualene diphosphate phosphatase 20121230 -9606 403314 APOBEC4 - C1orf169 HGNC:32152|MIM:609908|Ensembl:ENSG00000173627|HPRD:17522|Vega:OTTHUMG00000035459 1 1q25.3 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 4 (putative) protein-coding APOBEC4 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 4 (putative) O apolipoprotein B mRNA-editing enzyme catalytic polypeptide-like 4|putative C->U-editing enzyme APOBEC-4 20121230 -9606 403315 FAM92A1P2 - FAM92A3 HGNC:32287 4 4q35.1 family with sequence similarity 92, member A3 pseudo FAM92A1P2 family with sequence similarity 92, member A1 pseudogene 2 O - 20121230 -9606 403323 FLJ20444 - - HPRD:16916 9 9q21 uncharacterized protein FLJ20444 unknown - - - - 20121209 -9606 403339 DEFB133 - - HGNC:31331|Ensembl:ENSG00000214643 6 6p12.3 defensin, beta 133 protein-coding DEFB133 defensin, beta 133 O beta-defensin 133 20121230 -9606 403340 MGC70870 - - HPRD:14702 17 - C-terminal binding protein 2 pseudogene pseudo - - - - 20121230 -9606 403341 ZBTB34 - RP11-106H5.1|ZNF918 HGNC:31446|MIM:611692|Ensembl:ENSG00000177125|Vega:OTTHUMG00000020694 9 9q33.3 zinc finger and BTB domain containing 34 protein-coding ZBTB34 zinc finger and BTB domain containing 34 O zinc finger and BTB domain-containing protein 34 20121230 -9606 404024 TRIM26BP - TRIM26P|TRIM26P1 HGNC:31338 6 6p21 tripartite motif containing 26B, pseudogene pseudo TRIM26BP tripartite motif containing 26B, pseudogene O - 20121230 -9606 404026 MTCO3P1 - U92032.1 HGNC:31342 6 6p21.3 MT-CO3 pseudogene 1 pseudo MTCO3P1 MT-CO3 pseudogene 1 O - 20121230 -9606 404037 HAPLN4 - BRAL2 HGNC:31357|Ensembl:ENSG00000187664|HPRD:13630|Vega:OTTHUMG00000182221 19 19p13.1 hyaluronan and proteoglycan link protein 4 protein-coding HAPLN4 hyaluronan and proteoglycan link protein 4 O brain link protein 2 20121230 -9606 404093 CUEDC1 - - HGNC:31350|Ensembl:ENSG00000180891|HPRD:13098|Vega:OTTHUMG00000178775 17 17q23.2 CUE domain containing 1 protein-coding CUEDC1 CUE domain containing 1 O CUE domain-containing protein 1 20121230 -9606 404199 PPIHP2 - - HGNC:31356 X Xq23 peptidylprolyl isomerase H (cyclophilin H) pseudogene 2 pseudo PPIHP2 peptidylprolyl isomerase H (cyclophilin H) pseudogene 2 O - 20121230 -9606 404201 WDFY3-AS2 - C4orf12|FBI4|NCRNA00247 HGNC:21603|HPRD:13317 4 4q21.3 WDFY3 antisense RNA 2 miscRNA WDFY3-AS2 WDFY3 antisense RNA 2 O - 20121230 -9606 404203 SPINK6 UNQ844/PRO1782 BUSI2|UNQ844 HGNC:29486|Ensembl:ENSG00000178172|HPRD:15439|Vega:OTTHUMG00000163425 5 5q32 serine peptidase inhibitor, Kazal type 6 protein-coding SPINK6 serine peptidase inhibitor, Kazal type 6 O acrosin inhibitor|kallikrein inhibitor|protease inhibitor H|serine protease inhibitor Kazal-type 6 20121230 -9606 404204 UGT1A13P - - HGNC:32191|Ensembl:ENSG00000234143 2 2q37 UDP glucuronosyltransferase 1 family, polypeptide A13 pseudogene pseudo UGT1A13P UDP glucuronosyltransferase 1 family, polypeptide A13 pseudogene O - 20121230 -9606 404216 C10orf85 - - HGNC:31365|HPRD:18530 10 10q26.12 chromosome 10 open reading frame 85 unknown C10orf85 chromosome 10 open reading frame 85 O - 20121230 -9606 404217 CTXN1 - CTXN HGNC:31108|MIM:600135|Ensembl:ENSG00000178531|HPRD:13097 19 19p13.2 cortexin 1 protein-coding CTXN1 cortexin 1 O cortexin-1 20121230 -9606 404220 C6orf201 RP5-1013A10.5 dJ1013A10.5 HGNC:21620|Ensembl:ENSG00000185689|HPRD:12872|Vega:OTTHUMG00000014160 6 6p25.2 chromosome 6 open reading frame 201 protein-coding C6orf201 chromosome 6 open reading frame 201 O protein MGC87625|uncharacterized protein C6orf201 20121230 -9606 404266 HOXB-AS3 hCG_2042068 - HGNC:40283 17 17q21.32 HOXB cluster antisense RNA 3 miscRNA HOXB-AS3 HOXB cluster antisense RNA 3 O - 20121230 -9606 404281 YY2 - ZNF631 HGNC:31684|MIM:300570|Ensembl:ENSG00000230797|HPRD:15684|Vega:OTTHUMG00000021236 X Xp22.2-p22.1 YY2 transcription factor protein-coding YY2 YY2 transcription factor O transcription factor YY2|transcription factor yin yang 2|yin and yang 2|zinc finger protein 631 20121230 -9606 404542 DFNB50 - - HGNC:31380 12 12q23-qter deafness, autosomal recessive 50 unknown DFNB50 deafness, autosomal recessive 50 O - 20110215 -9606 404544 COX8BP - COX8-1|COX8B|COX8H HGNC:31395 11 11p15.5 cytochrome c oxidase subunit VIIIB, pseudogene pseudo COX8BP cytochrome c oxidase subunit VIIIB, pseudogene O - 20121230 -9606 404550 C16orf74 - - HGNC:23362|Ensembl:ENSG00000154102|HPRD:14460 16 16q24.1 chromosome 16 open reading frame 74 protein-coding C16orf74 chromosome 16 open reading frame 74 O uncharacterized protein C16orf74 20121230 -9606 404551 RWDD1P1 - - HGNC:31055 15 15q25.1 RWD domain containing 1 pseudogene 1 pseudo RWDD1P1 RWD domain containing 1 pseudogene 1 O - 20121230 -9606 404552 SCGB1D4 UNQ517/PRO812 - HGNC:31748|Ensembl:ENSG00000197745|HPRD:15301|Vega:OTTHUMG00000167510 11 11q12.3 secretoglobin, family 1D, member 4 protein-coding SCGB1D4 secretoglobin, family 1D, member 4 O IFN-gamma inducible SCGB (IIS)|IFN-gamma-inducible secretoglobin|IIS|secretoglobin family 1D member 4 20121230 -9606 404635 NANOGP1 - NANOG2 HGNC:23099 12 12p13 Nanog homeobox pseudogene 1 pseudo NANOGP1 Nanog homeobox pseudogene 1 O - 20121230 -9606 404636 FAM45A - - HGNC:31793|Ensembl:ENSG00000119979|HPRD:13310|Vega:OTTHUMG00000019143 10 10q25 family with sequence similarity 45, member A protein-coding FAM45A family with sequence similarity 45, member A O protein FAM45A 20121230 -9606 404663 CT49 - TAG HGNC:37171 5 - cancer/testis antigen 49 (non-protein coding) miscRNA CT49 cancer/testis antigen 49 (non-protein coding) O - 20121230 -9606 404665 CACTIN-AS1 - C19orf29-AS1|C19orf29OS HGNC:31391 19 19p13.3 CACTIN antisense RNA 1 miscRNA CACTIN-AS1 CACTIN antisense RNA 1 O - 20121230 -9606 404672 GTF2H5 - C6orf175|TFB5|TFIIH|TGF2H5|TTD|TTD-A|TTDA|bA120J8.2 HGNC:21157|MIM:608780|Ensembl:ENSG00000185068|HPRD:10581|Vega:OTTHUMG00000015906 6 6q25.3 general transcription factor IIH, polypeptide 5 protein-coding GTF2H5 general transcription factor IIH, polypeptide 5 O TFB5 ortholog|TFIIH basal transcription factor complex TTD-A subunit|TFIIH basal transcription factor complex TTDA subunit|general transcription factor IIH subunit 5 20121230 -9606 404677 CIMT - - MIM:608447 12 12q24 Carotid intimal medial thickness unknown - - - - 20120622 -9606 404679 LGMD1F - - HGNC:33443|MIM:608423 7 7q32.1-q32.2 limb girdle muscular dystrophy 1F (autosomal dominant) unknown LGMD1F limb girdle muscular dystrophy 1F (autosomal dominant) O - 20120622 -9606 404682 MYP5 - - HGNC:35433|MIM:608474 17 17q21-q22 myopia 5 (high grade, autosomal dominant) unknown MYP5 myopia 5 (high grade, autosomal dominant) O - 20120622 -9606 404683 OB4 - - MIM:608410 4 4p15-p14 Obesity, susceptibility to, on chromosome 4 unknown - - - - 20120622 -9606 404684 PHOBS - - MIM:608251 14 - Phobia, specific unknown - - - - 20120622 -9606 404685 RTE1 - - MIM:608045 - - repressor of telomerase expression 1 unknown - - - - 20120622 -9606 404686 SCZD11 - - MIM:608078 10 10q22.3 Schizophrenia susceptibility locus, chromosome 10q-related unknown - - - - 20120622 -9606 404713 SSD - - MIM:608445 3 3p12-q13 Speech-sound disorder unknown - - - - 20120622 -9606 404714 SLEB4 - - MIM:608437 12 12q24 systemic lupus erythematosus, susceptibility to, 4 unknown - - - - 20120622 -9606 404715 PAFC - - MIM:128700 8 8q11.1-q13.3 Preauricular fistulae, congenital unknown - - - - 20110215 -9606 404716 MTBS1 - - MIM:607949 2 2q35 mycobacterium tuberculosis, susceptibility to infection by, 1 unknown - - - - 20120622 -9606 404718 GNRHR2P1 - - HGNC:39424 14 14q23.1 gonadotropin-releasing hormone (type 2) receptor 2 pseudogene 1 pseudo GNRHR2P1 gonadotropin-releasing hormone (type 2) receptor 2 pseudogene 1 O - 20121230 -9606 404719 HSCRM2 - - MIM:608462 9 9q31 Hirschsprung disease modifier 2 unknown - - - - 20120622 -9606 404720 HSCR5 - - MIM:600156 9 9q31 Hirschsprung disease, susceptibility to, 5 unknown - - - - 20120726 -9606 404734 ANKHD1-EIF4EBP3 - MASK-BP3|MASK-BP3ARF HGNC:33530|Ensembl:ENSG00000131503|Ensembl:ENSG00000254996|HPRD:17468|Vega:OTTHUMG00000166212 5 5q31.3 ANKHD1-EIF4EBP3 readthrough protein-coding ANKHD1-EIF4EBP3 ANKHD1-EIF4EBP3 readthrough O ANKHD1-EIF4EBP3 protein|MASK-4E-BP3 alternate reading frame 20121230 -9606 404744 NPSR1-AS1 - AAA1 HGNC:22128|MIM:608596|HPRD:12265 7 7p14.3 NPSR1 antisense RNA 1 miscRNA NPSR1-AS1 NPSR1 antisense RNA 1 O - 20121230 -9606 404766 FABP5P4 - FABP5L4 HGNC:31061 13 13q31.3 fatty acid binding protein 5 pseudogene 4 pseudo FABP5P4 fatty acid binding protein 5 pseudogene 4 O - 20121230 -9606 404770 SPATA31B1 RP11-388B24.2 C9orf36B|FAM75B|bA388B24.2 HGNC:31411 9 9q21.32 SPATA31 subfamily B, member 1 unknown SPATA31B1 SPATA31 subfamily B, member 1 O - 20121230 -9606 404785 POTEG - A26C2|ACTBL1|CT104.4|POTE-14|POTE14|POTE14alpha|POTE22 HGNC:33896|MIM:608916|Ensembl:ENSG00000222036|HPRD:12331|Vega:OTTHUMG00000170340 14 14q11.2 POTE ankyrin domain family, member G protein-coding POTEG POTE ankyrin domain family, member G O ANKRD26-like family C member 2|ANKRD26-like family C, member 2|POTE ankyrin domain family member G|cancer/testis antigen family 104, member 4|prostate, ovary, testis-expressed protein on chromosome 14|protein expressed in prostate, ovary, testis, and placenta 14 20121230 -9606 405753 DUOXA2 - SIMNIPHOM|TDH5 HGNC:32698|MIM:612772|Ensembl:ENSG00000140274|HPRD:14224|Vega:OTTHUMG00000131354 15 15q15.1 dual oxidase maturation factor 2 protein-coding DUOXA2 dual oxidase maturation factor 2 O - 20121230 -9606 405754 ERVFRD-1 UNQ6191/PRO20218 ERVFRDE1|GLLL6191|HERV-FRD|HERV-W/FRD|UNQ6191|envFRD HGNC:33823|MIM:610524|Ensembl:ENSG00000244476|HPRD:13648|Vega:OTTHUMG00000159193 6 6p24.1 endogenous retrovirus group FRD, member 1 protein-coding ERVFRD-1 endogenous retrovirus group FRD, member 1 O HERV-FRD provirus ancestral Env polyprotein|HERV-FRD_6p24.1 provirus ancestral Env polyprotein|endogenous retrovirus group FRD member 1|envelope polyprotein|syncytin 2 20121230 -9606 406214 LRSL - - MIM:608545 6 6p25 Larsen-like syndrome unknown - - - - 20120622 -9606 406215 KTCN3 - - MIM:608586 3 3p14-q13 Keratoconus 3 unknown - - - - 20120622 -9606 406216 ATFB1 - - MIM:608583 10 10q22-q24 Atrial fibrillation, familial 1 unknown - - - - 20120622 -9606 406237 PDLA - LAP MIM:608526 1 1q25 Periodontitis, localized aggressive unknown - - - - 20120622 -9606 406238 ALS7 - - HGNC:34539|MIM:608031 20 20p13 amyotrophic lateral sclerosis 7 unknown ALS7 amyotrophic lateral sclerosis 7 O - 20120622 -9606 406874 DYX8 - - HGNC:19951|MIM:608995 1 1p36-p34 dyslexia susceptibility 8 unknown DYX8 dyslexia susceptibility 8 O - 20120622 -9606 406875 FXYD6P3 RP13-216E22.2 FXYD8 HGNC:31124 X Xq13.2 FXYD domain containing ion transport regulator 6 pseudogene 3 pseudo FXYD6P3 FXYD domain containing ion transport regulator 6 pseudogene 3 O - 20121230 -9606 406881 MIRLET7A1 - LET7A1|MIRNLET7A1|let-7a-1 HGNC:31476|MIM:605386|miRBase:MI0000060 9 9q22.32 microRNA let-7a-1 miscRNA MIRLET7A1 microRNA let-7a-1 O - 20121230 -9606 406882 MIRLET7A2 - LET7A2|MIRNLET7A2|let-7a-2 HGNC:31477|MIM:612142|miRBase:MI0000061 11 11q24.1 microRNA let-7a-2 miscRNA MIRLET7A2 microRNA let-7a-2 O - 20121230 -9606 406883 MIRLET7A3 - LET7A3|MIRNLET7A3|let-7a-3 HGNC:31478|MIM:612143|miRBase:MI0000062 22 22q13.31 microRNA let-7a-3 miscRNA MIRLET7A3 microRNA let-7a-3 O - 20121230 -9606 406884 MIRLET7B - LET7B|MIRNLET7B|hsa-let-7b|let-7b HGNC:31479|MIM:611249|miRBase:MI0000063 22 22q13.31 microRNA let-7b miscRNA MIRLET7B microRNA let-7b O - 20121230 -9606 406885 MIRLET7C - LET7C|MIRNLET7C|hsa-let-7c|let-7c HGNC:31480|MIM:612144|miRBase:MI0000064 21 21q21.1 microRNA let-7c miscRNA MIRLET7C microRNA let-7c O - 20121230 -9606 406886 MIRLET7D - LET7D|MIRNLET7D|hsa-let-7d|let-7d HGNC:31481|MIM:612145|miRBase:MI0000065 9 9q22.32 microRNA let-7d miscRNA MIRLET7D microRNA let-7d O - 20121230 -9606 406887 MIRLET7E - MIRNLET7E|hsa-let-7e|let-7e HGNC:31482|MIM:611250|miRBase:MI0000066 19 19q13.41 microRNA let-7e miscRNA MIRLET7E microRNA let-7e O - 20121230 -9606 406888 MIRLET7F1 - LET7F1|MIRNLET7F1|let-7f-1 HGNC:31483|MIM:612146|miRBase:MI0000067 9 9q22.32 microRNA let-7f-1 miscRNA MIRLET7F1 microRNA let-7f-1 O - 20121230 -9606 406889 MIRLET7F2 - LET7F2|MIRNLET7F2|let-7f-2 HGNC:31484|MIM:300721|miRBase:MI0000068 X Xp11.22 microRNA let-7f-2 miscRNA MIRLET7F2 microRNA let-7f-2 O - 20121230 -9606 406890 MIRLET7G - LET7G|MIRNLET7G|hsa-let-7g HGNC:31485|MIM:612102|miRBase:MI0000433 3 3p21.1 microRNA let-7g miscRNA MIRLET7G microRNA let-7g O - 20121230 -9606 406891 MIRLET7I - LET7I|MIRNLET7I|hsa-let-7i HGNC:31486|MIM:612148|miRBase:MI0000434 12 12q14.1 microRNA let-7i miscRNA MIRLET7I microRNA let-7i O - 20121230 -9606 406892 MIR100 - MIRN100|miR-100 HGNC:31487|MIM:613186|miRBase:MI0000102 11 11q24.1 microRNA 100 miscRNA MIR100 microRNA 100 O - 20121230 -9606 406893 MIR101-1 - MIRN101-1 HGNC:31488|MIM:612511|miRBase:MI0000103 1 1p31.3 microRNA 101-1 miscRNA MIR101-1 microRNA 101-1 O - 20121230 -9606 406894 MIR101-2 - MIRN101-2 HGNC:31489|MIM:612512|miRBase:MI0000739 9 9p24.1 microRNA 101-2 miscRNA MIR101-2 microRNA 101-2 O - 20121230 -9606 406895 MIR103A1 - MIR103-1|MIRN103-1 HGNC:31490|MIM:613187|miRBase:MI0000109 5 5q34 microRNA 103a-1 miscRNA MIR103A1 microRNA 103a-1 O - 20121230 -9606 406896 MIR103A2 - MIR103-2|MIRN103-2 HGNC:31491|MIM:613188|miRBase:MI0000108 20 20p13 microRNA 103a-2 miscRNA MIR103A2 microRNA 103a-2 O - 20121230 -9606 406897 MIR105-1 - MIRN105-1 HGNC:31492|MIM:300811|miRBase:MI0000111 X Xq28 microRNA 105-1 miscRNA MIR105-1 microRNA 105-1 O - 20121230 -9606 406898 MIR105-2 - MIRN105-2 HGNC:31493|MIM:300812|miRBase:MI0000112 X Xq28 microRNA 105-2 miscRNA MIR105-2 microRNA 105-2 O - 20121230 -9606 406899 MIR106A - MIRN106A|mir-106 HGNC:31494|MIM:300792|miRBase:MI0000113 X Xq26.2 microRNA 106a miscRNA MIR106A microRNA 106a O - 20121230 -9606 406900 MIR106B - MIRN106B HGNC:31495|MIM:612983|miRBase:MI0000734 7 7q22.1 microRNA 106b miscRNA MIR106B microRNA 106b O - 20121230 -9606 406901 MIR107 - MIRN107|miR-107 HGNC:31496|MIM:613189|miRBase:MI0000114 10 10q23.31 microRNA 107 miscRNA MIR107 microRNA 107 O - 20121230 -9606 406902 MIR10A - MIRN10A|hsa-mir-10a|miRNA10A|mir-10a HGNC:31497|MIM:610173|miRBase:MI0000266 17 17q21.32 microRNA 10a miscRNA MIR10A microRNA 10a O - 20121230 -9606 406903 MIR10B - MIRN10B|hsa-mir-10b|miRNA10B|mir-10b HGNC:31498|MIM:611576|miRBase:MI0000267 2 2q31.1 microRNA 10b miscRNA MIR10B microRNA 10b O - 20121230 -9606 406904 MIR1-1 - MIRN1-1|hsa-mir-1-1|miRNA1-1 HGNC:31499|MIM:609326|miRBase:MI0000651 20 20q13.33 microRNA 1-1 miscRNA MIR1-1 microRNA 1-1 O - 20121230 -9606 406905 MIR1-2 - MIRN1-2|hsa-mir-1-2|miRNA1-2 HGNC:31500|MIM:610252|miRBase:MI0000437 18 18q11.2 microRNA 1-2 miscRNA MIR1-2 microRNA 1-2 O - 20121230 -9606 406906 MIR122 - MIR122A|MIRN122|MIRN122A|hsa-mir-122|miRNA122|miRNA122A HGNC:31501|MIM:609582|miRBase:MI0000442 18 18q21.31 microRNA 122 miscRNA MIR122 microRNA 122 O - 20121230 -9606 406907 MIR124-1 - MIR124A|MIR124A1|MIRN124-1|MIRN124A1 HGNC:31502|MIM:609327|miRBase:MI0000443 8 8p23.1 microRNA 124-1 miscRNA MIR124-1 microRNA 124-1 O - 20121230 -9606 406908 MIR124-2 - MIRN124-2|MIRN124A2 HGNC:31503|miRBase:MI0000444 8 8q12.3 microRNA 124-2 miscRNA MIR124-2 microRNA 124-2 O - 20121230 -9606 406909 MIR124-3 - MIRN124-3|MIRN124A3 HGNC:31504|miRBase:MI0000445 20 20q13.33 microRNA 124-3 miscRNA MIR124-3 microRNA 124-3 O - 20121230 -9606 406910 MIR125A - MIRN125A|miRNA125A HGNC:31505|MIM:611191|miRBase:MI0000469 19 19q13.41 microRNA 125a miscRNA MIR125A microRNA 125a O - 20121230 -9606 406911 MIR125B1 - MIRN125B1 HGNC:31506|MIM:610104|miRBase:MI0000446 11 11q24.1 microRNA 125b-1 miscRNA MIR125B1 microRNA 125b-1 O - 20121230 -9606 406912 MIR125B2 - MIRN125B2 HGNC:31507|MIM:610105|miRBase:MI0000470 21 21q21.1 microRNA 125b-2 miscRNA MIR125B2 microRNA 125b-2 O - 20121230 -9606 406913 MIR126 - MIRN126|miRNA126 HGNC:31508|MIM:611767|miRBase:MI0000471 9 9q34.3 microRNA 126 miscRNA MIR126 microRNA 126 O - 20121230 -9606 406914 MIR127 - MIRN127|miRNA127 HGNC:31509|MIM:611709|miRBase:MI0000472 14 14q32.2 microRNA 127 miscRNA MIR127 microRNA 127 O - 20121230 -9606 406915 MIR128-1 - MIR128A|MIRN128-1|MIRN128A HGNC:31510|MIM:611774|miRBase:MI0000447 2 2q21.3 microRNA 128-1 miscRNA MIR128-1 microRNA 128-1 O - 20121230 -9606 406916 MIR128-2 - MIR128B|MIRN128-2|MIRN128B|mir-128b HGNC:31511|MIM:611769|miRBase:MI0000727 3 3p22.3 microRNA 128-2 miscRNA MIR128-2 microRNA 128-2 O - 20121230 -9606 406917 MIR129-1 - MIR-129b|MIRN129-1 HGNC:31512|miRBase:MI0000252 7 7q32.1 microRNA 129-1 miscRNA MIR129-1 microRNA 129-1 O - 20121230 -9606 406918 MIR129-2 - MIR-129b|MIRN129-2|mir-129-2 HGNC:31513|miRBase:MI0000473 11 11p11.2 microRNA 129-2 miscRNA MIR129-2 microRNA 129-2 O - 20121230 -9606 406919 MIR130A - MIRN130A|miRNA130A HGNC:31514|MIM:610175|miRBase:MI0000448 11 11q12.1 microRNA 130a miscRNA MIR130A microRNA 130a O - 20121230 -9606 406920 MIR130B - MIRN130B|mir-130b HGNC:31515|MIM:613682|miRBase:MI0000748 22 - microRNA 130b miscRNA MIR130B microRNA 130b O - 20121230 -9606 406921 MIR132 - MIRN132|miRNA132 HGNC:31516|MIM:610016|miRBase:MI0000449 17 17p13.3 microRNA 132 miscRNA MIR132 microRNA 132 O - 20121230 -9606 406922 MIR133A1 - MIRN133A1 HGNC:31517|MIM:610254|miRBase:MI0000450 18 18q11.2 microRNA 133a-1 miscRNA MIR133A1 microRNA 133a-1 O - 20121230 -9606 406923 MIR133A2 - MIRN133A2 HGNC:31518|MIM:610255|miRBase:MI0000451 20 20q13.33 microRNA 133a-2 miscRNA MIR133A2 microRNA 133a-2 O - 20121230 -9606 406924 MIR134 - MIRN134 HGNC:31519|MIM:610164|miRBase:MI0000474 14 14q32.31 microRNA 134 miscRNA MIR134 microRNA 134 O - 20121230 -9606 406925 MIR135A1 - MIRN135-1|MIRN135A1 HGNC:31520|miRBase:MI0000452 3 3p21.1 microRNA 135a-1 miscRNA MIR135A1 microRNA 135a-1 O - 20121230 -9606 406926 MIR135A2 - MIRN135-2|MIRN135A2 HGNC:31521|miRBase:MI0000453 12 12q23.1 microRNA 135a-2 miscRNA MIR135A2 microRNA 135a-2 O - 20121230 -9606 406927 MIR136 - MIRN136|miRNA136 HGNC:31522|MIM:611710|miRBase:MI0000475 14 14q32.2 microRNA 136 miscRNA MIR136 microRNA 136 O - 20121230 -9606 406928 MIR137 - MIRN137|miR-137 HGNC:31523|MIM:614304|miRBase:MI0000454 1 1p21.3 microRNA 137 miscRNA MIR137 microRNA 137 O - 20121230 -9606 406929 MIR138-1 - MIRN138-1 HGNC:31524|MIM:613394|miRBase:MI0000476 3 3p21.32 microRNA 138-1 miscRNA MIR138-1 microRNA 138-1 O - 20121230 -9606 406930 MIR138-2 - MIRN138-2 HGNC:31525|MIM:613395|miRBase:MI0000455 16 16q13 microRNA 138-2 miscRNA MIR138-2 microRNA 138-2 O - 20121230 -9606 406931 MIR139 - MIRN139 HGNC:31526|miRBase:MI0000261 11 11q13.4 microRNA 139 miscRNA MIR139 microRNA 139 O - 20121230 -9606 406932 MIR140 - MIRN140|miRNA140 HGNC:31527|MIM:611894|miRBase:MI0000456 16 16q22.1 microRNA 140 miscRNA MIR140 microRNA 140 O - 20121230 -9606 406933 MIR141 - MIRN141 HGNC:31528|MIM:612093|miRBase:MI0000457 12 12p13.31 microRNA 141 miscRNA MIR141 microRNA 141 O - 20121230 -9606 406934 MIR142 - MIRN142 HGNC:31529|miRBase:MI0000458 17 17q22 microRNA 142 miscRNA MIR142 microRNA 142 O - 20121230 -9606 406935 MIR143 - MIRN143 HGNC:31530|MIM:612117|miRBase:MI0000459 5 5q32 microRNA 143 miscRNA MIR143 microRNA 143 O - 20121230 -9606 406936 MIR144 - MIRN144 HGNC:31531|MIM:612070|miRBase:MI0000460 17 17q11.2 microRNA 144 miscRNA MIR144 microRNA 144 O - 20121230 -9606 406937 MIR145 - MIRN145|miR-145|miRNA145 HGNC:31532|MIM:611795|miRBase:MI0000461 5 5q32 microRNA 145 miscRNA MIR145 microRNA 145 O - 20121230 -9606 406938 MIR146A - MIRN146|MIRN146A|miR-146a|miRNA146A HGNC:31533|MIM:610566|miRBase:MI0000477 5 5q34 microRNA 146a miscRNA MIR146A microRNA 146a O - 20121230 -9606 406939 MIR147A - MIR147|MIRN147|hsa-mir-147a HGNC:31534|miRBase:MI0000262 9 9q33.2 microRNA 147a miscRNA MIR147A microRNA 147a O - 20121230 -9606 406940 MIR148A - MIRN148|MIRN148A|hsa-mir-148 HGNC:31535|MIM:613786|miRBase:MI0000253 7 7p15.2 microRNA 148a miscRNA MIR148A microRNA 148a O - 20121230 -9606 406941 MIR149 - MIRN149 HGNC:31536|miRBase:MI0000478 2 2q37.3 microRNA 149 miscRNA MIR149 microRNA 149 O - 20121230 -9606 406942 MIR150 - MIRN150|miRNA150 HGNC:31537|MIM:611114|miRBase:MI0000479 19 19q13.33 microRNA 150 miscRNA MIR150 microRNA 150 O - 20121230 -9606 406943 MIR152 - MIRN152 HGNC:31538|MIM:613788|miRBase:MI0000462 17 17q21.32 microRNA 152 miscRNA MIR152 microRNA 152 O - 20121230 -9606 406944 MIR153-1 - MIRN153-1 HGNC:31539|miRBase:MI0000463 2 2q35 microRNA 153-1 miscRNA MIR153-1 microRNA 153-1 O - 20121230 -9606 406945 MIR153-2 - MIRN153-2 HGNC:31540|miRBase:MI0000464 7 7q36.3 microRNA 153-2 miscRNA MIR153-2 microRNA 153-2 O - 20121230 -9606 406946 MIR154 - MIRN154 HGNC:31541|miRBase:MI0000480 14 14q32.31 microRNA 154 miscRNA MIR154 microRNA 154 O - 20121230 -9606 406947 MIR155 - MIRN155|miRNA155 HGNC:31542|MIM:609337|miRBase:MI0000681 21 21q21.3 microRNA 155 miscRNA MIR155 microRNA 155 O - 20121230 -9606 406948 MIR15A - MIRN15A|hsa-mir-15a|miRNA15A HGNC:31543|MIM:609703|miRBase:MI0000069 13 13q14.2 microRNA 15a miscRNA MIR15A microRNA 15a O - 20121230 -9606 406949 MIR15B - MIRN15B|hsa-mir-15b|miR-15b HGNC:31544|miRBase:MI0000438 3 3q25.33 microRNA 15b miscRNA MIR15B microRNA 15b O - 20121230 -9606 406950 MIR16-1 - MIRN16-1|miRNA16-1 HGNC:31545|MIM:609704|miRBase:MI0000070 13 13q14.2 microRNA 16-1 miscRNA MIR16-1 microRNA 16-1 O - 20121230 -9606 406951 MIR16-2 - MIRN16-2|mir-16-3 HGNC:31546|miRBase:MI0000115 3 3q25.33 microRNA 16-2 miscRNA MIR16-2 microRNA 16-2 O - 20121230 -9606 406952 MIR17 - MIR17-5p|MIR91|MIRN17|MIRN91|hsa-mir-17|miR-17|miR17-3p|miRNA17|miRNA91 HGNC:31547|MIM:609416|miRBase:MI0000071 13 13q31.3 microRNA 17 miscRNA MIR17 microRNA 17 O - 20121230 -9606 406953 MIR18A - MIR18|MIRN18|MIRN18A|hsa-mir-18|hsa-mir-18a|miR-18|miRNA18A HGNC:31548|MIM:609417|miRBase:MI0000072 13 13q31.3 microRNA 18a miscRNA MIR18A microRNA 18a O - 20121230 -9606 406954 MIR181A2 - MIRN181A|MIRN181A2|hsa-mir-181a-2 HGNC:31549|MIM:612743|miRBase:MI0000269 9 9q33.3 microRNA 181a-2 miscRNA MIR181A2 microRNA 181a-2 O - 20121230 -9606 406955 MIR181B1 - MIRN181B1 HGNC:31550|MIM:612744|miRBase:MI0000270 1 1q32.1 microRNA 181b-1 miscRNA MIR181B1 microRNA 181b-1 O - 20121230 -9606 406956 MIR181B2 - MIRN181B2 HGNC:31551|MIM:612745|miRBase:MI0000683 9 9q33.3 microRNA 181b-2 miscRNA MIR181B2 microRNA 181b-2 O - 20121230 -9606 406957 MIR181C - MIRN181C|mir-181c HGNC:31552|MIM:612746|miRBase:MI0000271 19 19p13.13 microRNA 181c miscRNA MIR181C microRNA 181c O - 20121230 -9606 406958 MIR182 - MIRN182|miRNA182 HGNC:31553|MIM:611607|miRBase:MI0000272 7 7q32.2 microRNA 182 miscRNA MIR182 microRNA 182 O - 20121230 -9606 406959 MIR183 - MIRN183|miR-183|miRNA183 HGNC:31554|MIM:611608|miRBase:MI0000273 7 7q32.2 microRNA 183 miscRNA MIR183 microRNA 183 O - 20121230 -9606 406960 MIR184 - EDICT|MIRN184|miR-184 HGNC:31555|MIM:613146|miRBase:MI0000481 15 15q25.1 microRNA 184 miscRNA MIR184 microRNA 184 O - 20121230 -9606 406961 MIR185 - MIRN185|miR-185 HGNC:31556|miRBase:MI0000482 22 22q11.21 microRNA 185 miscRNA MIR185 microRNA 185 O - 20121230 -9606 406962 MIR186 - MIRN186|miR-186 HGNC:31557|miRBase:MI0000483 1 1p31.1 microRNA 186 miscRNA MIR186 microRNA 186 O - 20121230 -9606 406963 MIR187 - MIRN187|miR-187|miRNA187 HGNC:31558|MIM:612698|miRBase:MI0000274 18 18q12.2 microRNA 187 miscRNA MIR187 microRNA 187 O - 20121230 -9606 406964 MIR188 - MIRN188|miR-188 HGNC:31559|miRBase:MI0000484 X Xp11.23 microRNA 188 miscRNA MIR188 microRNA 188 O - 20121230 -9606 406965 MIR190A - MIR190|MIRN190|hsa-mir-190a|miR-190 HGNC:31560|miRBase:MI0000486 15 15q22.2 microRNA 190a miscRNA MIR190A microRNA 190a O - 20121230 -9606 406966 MIR191 - MIRN191|miR-191 HGNC:31561|miRBase:MI0000465 3 3p21.31 microRNA 191 miscRNA MIR191 microRNA 191 O - 20121230 -9606 406967 MIR192 - MIRN192|miR-192|miRNA192 HGNC:31562|MIM:610939|miRBase:MI0000234 11 11q13.1 microRNA 192 miscRNA MIR192 microRNA 192 O - 20121230 -9606 406968 MIR193A - MIRN193|MIRN193A HGNC:31563|MIM:614733|miRBase:MI0000487 17 17q11.2 microRNA 193a miscRNA MIR193A microRNA 193a O - 20121230 -9606 406969 MIR194-1 - MIRN194-1 HGNC:31564|MIM:610940|miRBase:MI0000488 1 1q41 microRNA 194-1 miscRNA MIR194-1 microRNA 194-1 O - 20121230 -9606 406970 MIR194-2 - MIRN194-2 HGNC:31565|MIM:610941|miRBase:MI0000732 11 11q13.1 microRNA 194-2 miscRNA MIR194-2 microRNA 194-2 O - 20121230 -9606 406971 MIR195 - MIRN195|miRNA195 HGNC:31566|MIM:610718|miRBase:MI0000489 17 17p13.1 microRNA 195 miscRNA MIR195 microRNA 195 O - 20121230 -9606 406972 MIR196A1 - MIRN196-1|MIRN196A1 HGNC:31567|MIM:608632|miRBase:MI0000238 17 17q21.32 microRNA 196a-1 miscRNA MIR196A1 microRNA 196a-1 O - 20121230 -9606 406973 MIR196A2 - MIRN196-2|MIRN196A2 HGNC:31568|MIM:609687|miRBase:MI0000279 12 12q13.13 microRNA 196a-2 miscRNA MIR196A2 microRNA 196a-2 O - 20121230 -9606 406974 MIR197 - MIRN197|miR-197|miRNA197 HGNC:31569|MIM:611189|miRBase:MI0000239 1 1p13.3 microRNA 197 miscRNA MIR197 microRNA 197 O - 20121230 -9606 406975 MIR198 - MIRN198|miR-198 HGNC:31570|miRBase:MI0000240 3 3q13.33 microRNA 198 miscRNA MIR198 microRNA 198 O - 20121230 -9606 406976 MIR199A1 - MIR-199-s|MIRN199A1 HGNC:31571|MIM:610719|miRBase:MI0000242 19 19p13.2 microRNA 199a-1 miscRNA MIR199A1 microRNA 199a-1 O - 20121230 -9606 406977 MIR199A2 - MIR-199-s|MIRN199A2 HGNC:31572|MIM:610720|miRBase:MI0000281 1 1q24.3 microRNA 199a-2 miscRNA MIR199A2 microRNA 199a-2 O - 20121230 -9606 406978 MIR199B - MIRN199B|mir-199b HGNC:31573|MIM:614791|miRBase:MI0000282 9 9q34.11 microRNA 199b miscRNA MIR199B microRNA 199b O - 20121230 -9606 406979 MIR19A - MIRN19A|hsa-mir-19a|miR-19a|miRNA19A HGNC:31574|MIM:609418|miRBase:MI0000073 13 13q31.3 microRNA 19a miscRNA MIR19A microRNA 19a O - 20121230 -9606 406980 MIR19B1 - MIRN19B1|miR-19b-1|miRNA19B1 HGNC:31575|MIM:609419|miRBase:MI0000074 13 13q31.3 microRNA 19b-1 miscRNA MIR19B1 microRNA 19b-1 O - 20121230 -9606 406981 MIR19B2 - MIRN19B2|miR-19b-2 HGNC:31576|MIM:300722|miRBase:MI0000075 X Xq26.2 microRNA 19b-2 miscRNA MIR19B2 microRNA 19b-2 O - 20121230 -9606 406982 MIR20A - MIR20|MIRN20|MIRN20A|hsa-mir-20|hsa-mir-20a|miR-20|miRNA20A HGNC:31577|MIM:609420|miRBase:MI0000076 13 13q31.3 microRNA 20a miscRNA MIR20A microRNA 20a O - 20121230 -9606 406983 MIR200A - MIRN200A HGNC:31578|MIM:612090|miRBase:MI0000737 1 1p36.33 microRNA 200a miscRNA MIR200A microRNA 200a O - 20121230 -9606 406984 MIR200B - MIRN200B HGNC:31579|MIM:612091|miRBase:MI0000342 1 1p36.33 microRNA 200b miscRNA MIR200B microRNA 200b O - 20121230 -9606 406985 MIR200C - MIRN200C HGNC:31580|MIM:612092|miRBase:MI0000650 12 12p13.31 microRNA 200c miscRNA MIR200C microRNA 200c O - 20121230 -9606 406986 MIR203 - MIRN203|miR-203|miRNA203 HGNC:31581|MIM:611899|miRBase:MI0000283 14 14q32.33 microRNA 203 miscRNA MIR203 microRNA 203 O - 20121230 -9606 406987 MIR204 - MIRN204|miRNA204 HGNC:31582|MIM:610942|miRBase:MI0000284 9 9q21.12 microRNA 204 miscRNA MIR204 microRNA 204 O - 20121230 -9606 406988 MIR205 - MIRN205 HGNC:31583|MIM:613147|miRBase:MI0000285 1 1q32.2 microRNA 205 miscRNA MIR205 microRNA 205 O - 20121230 -9606 406989 MIR206 - MIRN206|miRNA206 HGNC:31584|MIM:611599|miRBase:MI0000490 6 6p12.2 microRNA 206 miscRNA MIR206 microRNA 206 O - 20121230 -9606 406990 MIR208A - MIR208|MIRN208|MIRN208A|hsa-mir-208a|miRNA208 HGNC:31585|MIM:611116|miRBase:MI0000251 14 14q11.2 microRNA 208a miscRNA MIR208A microRNA 208a O - 20121230 -9606 406991 MIR21 - MIRN21|hsa-mir-21|miR-21|miRNA21 HGNC:31586|MIM:611020|miRBase:MI0000077 17 17q23.1 microRNA 21 miscRNA MIR21 microRNA 21 O - 20121230 -9606 406992 MIR210 - MIRN210|mir-210 HGNC:31587|MIM:612982|miRBase:MI0000286 11 11p15.5 microRNA 210 miscRNA MIR210 microRNA 210 O - 20121230 -9606 406993 MIR211 - MIRN211|mir-211 HGNC:31588|MIM:613753|miRBase:MI0000287 15 15q13.3 microRNA 211 miscRNA MIR211 microRNA 211 O - 20121230 -9606 406994 MIR212 - MIRN212|mir-212 HGNC:31589|MIM:613487|miRBase:MI0000288 17 17p13.3 microRNA 212 miscRNA MIR212 microRNA 212 O - 20121230 -9606 406995 MIR181A1 - MIR213|MIRN181A1|MIRN213|hsa-mir-181a-1|mir-213 HGNC:31590|MIM:612742|miRBase:MI0000289 1 1q32.1 microRNA 181a-1 miscRNA MIR181A1 microRNA 181a-1 O - 20121230 -9606 406996 MIR214 - MIRN214|miRNA214|mir-214 HGNC:31591|MIM:610721|miRBase:MI0000290 1 1q24.3 microRNA 214 miscRNA MIR214 microRNA 214 O - 20121230 -9606 406997 MIR215 - MIRN215|miRNA215|mir-215 HGNC:31592|MIM:610943|miRBase:MI0000291 1 1q41 microRNA 215 miscRNA MIR215 microRNA 215 O - 20121230 -9606 406998 MIR216A - MIR216|MIRN216|MIRN216A|miRNA216|mir-216 HGNC:31593|MIM:610944|miRBase:MI0000292 2 2p16.1 microRNA 216a miscRNA MIR216A microRNA 216a O - 20121230 -9606 406999 MIR217 - MIRN217|mir-217 HGNC:31594|miRBase:MI0000293 2 2p16.1 microRNA 217 miscRNA MIR217 microRNA 217 O - 20121230 -9606 407000 MIR218-1 - MIRN218-1|mir-218-1 HGNC:31595|miRBase:MI0000294 4 4p15.31 microRNA 218-1 miscRNA MIR218-1 microRNA 218-1 O - 20121230 -9606 407001 MIR218-2 - MIRN218-2|mir-218-2 HGNC:31596|miRBase:MI0000295 5 5q34 microRNA 218-2 miscRNA MIR218-2 microRNA 218-2 O - 20121230 -9606 407002 MIR219-1 - MIRN219-1|MRI219-1|mir-219 HGNC:31597|MIM:611500|miRBase:MI0000296 6 6p21.32 microRNA 219-1 miscRNA MIR219-1 microRNA 219-1 O - 20121230 -9606 407003 MIR219-2 - MIRN219-2 HGNC:31598|miRBase:MI0000740 9 9q34.11 microRNA 219-2 miscRNA MIR219-2 microRNA 219-2 O - 20121230 -9606 407004 MIR22 - MIRN22|hsa-mir-22|miR-22 HGNC:31599|MIM:612077|miRBase:MI0000078 17 17p13.3 microRNA 22 miscRNA MIR22 microRNA 22 O - 20121230 -9606 407006 MIR221 - MIRN221|miRNA221|mir-221 HGNC:31601|MIM:300568|miRBase:MI0000298 X Xp11.3 microRNA 221 miscRNA MIR221 microRNA 221 O - 20121230 -9606 407007 MIR222 - MIRN222|miRNA222|mir-222 HGNC:31602|MIM:300569|miRBase:MI0000299 X Xp11.3 microRNA 222 miscRNA MIR222 microRNA 222 O - 20121230 -9606 407008 MIR223 - MIRN223|miRNA223|mir-223 HGNC:31603|MIM:300694|miRBase:MI0000300 X Xq12 microRNA 223 miscRNA MIR223 microRNA 223 O - 20121230 -9606 407009 MIR224 - MIRN224|miRNA224 HGNC:31604|MIM:300769|miRBase:MI0000301 X Xq28 microRNA 224 miscRNA MIR224 microRNA 224 O - 20121230 -9606 407010 MIR23A - MIRN23A|hsa-mir-23a|miRNA23A HGNC:31605|MIM:607962|miRBase:MI0000079 19 19p13.13 microRNA 23a miscRNA MIR23A microRNA 23a O - 20121230 -9606 407011 MIR23B - MIRN23B|hsa-mir-23b|miRNA23B HGNC:31606|MIM:610723|miRBase:MI0000439 9 9q22.32 microRNA 23b miscRNA MIR23B microRNA 23b O - 20121230 -9606 407012 MIR24-1 - MIR189|MIRN24-1|miR-24-1|miRNA24-1 HGNC:31607|MIM:609705|miRBase:MI0000080 9 9q22.32 microRNA 24-1 miscRNA MIR24-1 microRNA 24-1 O - 20121230 -9606 407013 MIR24-2 - MIRN24-2|miR-24-2|miRNA24-2 HGNC:31608|MIM:610724|miRBase:MI0000081 19 19p13.13 microRNA 24-2 miscRNA MIR24-2 microRNA 24-2 O - 20121230 -9606 407014 MIR25 - MIRN25|hsa-mir-25|miR-25 HGNC:31609|MIM:612150|miRBase:MI0000082 7 7q22.1 microRNA 25 miscRNA MIR25 microRNA 25 O - 20121230 -9606 407015 MIR26A1 - MIR26A|MIRN26A1 HGNC:31610|MIM:612151|miRBase:MI0000083 3 3p22.2 microRNA 26a-1 miscRNA MIR26A1 microRNA 26a-1 O - 20121230 -9606 407016 MIR26A2 - MIRN26A2 HGNC:31611|MIM:613057|miRBase:MI0000750 12 12q14.1 microRNA 26a-2 miscRNA MIR26A2 microRNA 26a-2 O - 20121230 -9606 407017 MIR26B - MIRN26B|hsa-mir-26b|miR-26b HGNC:31612|MIM:612152|miRBase:MI0000084 2 2q35 microRNA 26b miscRNA MIR26B microRNA 26b O - 20121230 -9606 407018 MIR27A - MIR27|MIRN27A HGNC:31613|MIM:612153|miRBase:MI0000085 19 19p13.13 microRNA 27a miscRNA MIR27A microRNA 27a O - 20121230 -9606 407019 MIR27B - MIR-27b|MIRN27B|miRNA27B HGNC:31614|MIM:610636|miRBase:MI0000440 9 9q22.32 microRNA 27b miscRNA MIR27B microRNA 27b O - 20121230 -9606 407020 MIR28 - MIRN28|hsa-mir-28|miR-28 HGNC:31615|MIM:612154|miRBase:MI0000086 3 3q28 microRNA 28 miscRNA MIR28 microRNA 28 O - 20121230 -9606 407021 MIR29A - MIRN29|MIRN29A|hsa-mir-29|hsa-mir-29a|miRNA29A HGNC:31616|MIM:610782|miRBase:MI0000087 7 7q32.3 microRNA 29a miscRNA MIR29A microRNA 29a O - 20121230 -9606 407022 MIR296 - MIRN296|miRNA296 HGNC:31617|MIM:610945|miRBase:MI0000747 20 20q13.32 microRNA 296 miscRNA MIR296 microRNA 296 O - 20121230 -9606 407023 MIR299 - MIRN299 HGNC:31618|miRBase:MI0000744 14 14q32.31 microRNA 299 miscRNA MIR299 microRNA 299 O - 20121230 -9606 407024 MIR29B1 - MIRN29B1|miRNA29B1 HGNC:31619|MIM:610783|miRBase:MI0000105 7 7q32.3 microRNA 29b-1 miscRNA MIR29B1 microRNA 29b-1 O - 20121230 -9606 407025 MIR29B2 - MIRN29B2|mir-29b-2 HGNC:31620|miRBase:MI0000107 1 1q32.2 microRNA 29b-2 miscRNA MIR29B2 microRNA 29b-2 O - 20121230 -9606 407026 MIR29C - MIRN29C|miRNA29C HGNC:31621|MIM:610784|miRBase:MI0000735 1 1q32.2 microRNA 29c miscRNA MIR29C microRNA 29c O - 20121230 -9606 407027 MIR301A - MIRN301|MIRN301A HGNC:31622|miRBase:MI0000745 17 17q22 microRNA 301a miscRNA MIR301A microRNA 301a O - 20121230 -9606 407028 MIR302A - MIRN302|MIRN302A|hsa-mir-302 HGNC:31623|MIM:614596|miRBase:MI0000738 4 4q25 microRNA 302a miscRNA MIR302A microRNA 302a O - 20121230 -9606 407029 MIR30A - MIRN30A HGNC:31624|MIM:612329|miRBase:MI0000088 6 6q13 microRNA 30a miscRNA MIR30A microRNA 30a O - 20121230 -9606 407030 MIR30B - MIRN30B HGNC:31625|miRBase:MI0000441 8 8q24.22 microRNA 30b miscRNA MIR30B microRNA 30b O - 20121230 -9606 407031 MIR30C1 - MIRN30C1 HGNC:31626|miRBase:MI0000736 1 1p34.2 microRNA 30c-1 miscRNA MIR30C1 microRNA 30c-1 O - 20121230 -9606 407032 MIR30C2 - MIRN30C2 HGNC:31627|miRBase:MI0000254 6 6q13 microRNA 30c-2 miscRNA MIR30C2 microRNA 30c-2 O - 20121230 -9606 407033 MIR30D - MIRN30D HGNC:31628|miRBase:MI0000255 8 8q24.22 microRNA 30d miscRNA MIR30D microRNA 30d O - 20121230 -9606 407034 MIR30E - MIRN30E HGNC:31629|miRBase:MI0000749 1 1p34.2 microRNA 30e miscRNA MIR30E microRNA 30e O - 20121230 -9606 407035 MIR31 - MIRN31|hsa-mir-31|miR-31 HGNC:31630|MIM:612155|miRBase:MI0000089 9 9p21.3 microRNA 31 miscRNA MIR31 microRNA 31 O - 20121230 -9606 407036 MIR32 - MIRN32|hsa-mir-32|miR-32|miRNA32 HGNC:31631|MIM:609355|miRBase:MI0000090 9 9q31.3 microRNA 32 miscRNA MIR32 microRNA 32 O - 20121230 -9606 407037 MIR320A - MIRN320|MIRN320A|hsa-mir-320a HGNC:31632|MIM:614112|miRBase:MI0000542 8 8p21.3 microRNA 320a miscRNA MIR320A microRNA 320a O - 20121230 -9606 407039 MIR33A - MIR33|MIRN33|MIRN33A|hsa-mir-33|hsa-mir-33a|miR-33|miRNA33A HGNC:31634|MIM:612156|miRBase:MI0000091 22 22q13.2 microRNA 33a miscRNA MIR33A microRNA 33a O - 20121230 -9606 407040 MIR34A - MIRN34A|miRNA34A|mir-34 HGNC:31635|MIM:611172|miRBase:MI0000268 1 1p36.22|1p36.22 microRNA 34a miscRNA MIR34A microRNA 34a O - 20121230 -9606 407041 MIR34B - MIRN34B|miRNA34B HGNC:31636|MIM:611374|miRBase:MI0000742 11 11q23.1 microRNA 34b miscRNA MIR34B microRNA 34b O - 20121230 -9606 407042 MIR34C - MIRN34C|miRNA34C HGNC:31637|MIM:611375|miRBase:MI0000743 11 11q23.1 microRNA 34c miscRNA MIR34C microRNA 34c O - 20121230 -9606 407043 MIR7-1 - MIRN7-1|hsa-mir-7-1|mir-7-1 HGNC:31638|miRBase:MI0000263 9 9q21.32 microRNA 7-1 miscRNA MIR7-1 microRNA 7-1 O - 20121230 -9606 407044 MIR7-2 - MIRN7-2|hsa-mir-7-2|mir-7-2 HGNC:31639|miRBase:MI0000264 15 15q26.1 microRNA 7-2 miscRNA MIR7-2 microRNA 7-2 O - 20121230 -9606 407045 MIR7-3 - MIRN7-3|hsa-mir-7-3|mir-7-3 HGNC:31640|miRBase:MI0000265 19 19p13.3 microRNA 7-3 miscRNA MIR7-3 microRNA 7-3 O - 20121230 -9606 407046 MIR9-1 - MIRN9-1|hsa-mir-9-1|miRNA9-1 HGNC:31641|MIM:611186|miRBase:MI0000466 1 1q22 microRNA 9-1 miscRNA MIR9-1 microRNA 9-1 O - 20121230 -9606 407047 MIR9-2 - MIRN9-2|hsa-mir-9-2|miRNA9-2 HGNC:31642|MIM:611187|miRBase:MI0000467 5 5q14.3 microRNA 9-2 miscRNA MIR9-2 microRNA 9-2 O - 20121230 -9606 407048 MIR92A1 - MIR92-1|MIRN92-1|MIRN92A-1|MIRN92A1|miRNA92-1 HGNC:31643|MIM:609422|miRBase:MI0000093 13 13q31.3 microRNA 92a-1 miscRNA MIR92A1 microRNA 92a-1 O - 20121230 -9606 407049 MIR92A2 - MIRN92-2|MIRN92A-2|MIRN92A2 HGNC:31644|miRBase:MI0000094 X Xq26.2 microRNA 92a-2 miscRNA MIR92A2 microRNA 92a-2 O - 20121230 -9606 407050 MIR93 - MIRN9|MIRN93|hsa-mir-93|miR-93 HGNC:31645|MIM:612984|miRBase:MI0000095 7 7q22.1 microRNA 93 miscRNA MIR93 microRNA 93 O - 20121230 -9606 407051 MIR9-3 - MIRN9-3|hsa-mir-9-3|miRNA9-3 HGNC:31646|MIM:611188|miRBase:MI0000468 15 15q26.1 microRNA 9-3 miscRNA MIR9-3 microRNA 9-3 O - 20121230 -9606 407052 MIR95 - MIRN95|hsa-mir-95|miR-95 HGNC:31647|MIM:613185|miRBase:MI0000097 4 - microRNA 95 miscRNA MIR95 microRNA 95 O - 20121230 -9606 407053 MIR96 - DFNA50|MIRN96|hsa-mir-96|miR-96|miRNA96 HGNC:31648|MIM:611606|miRBase:MI0000098 7 7q32.2 microRNA 96 miscRNA MIR96 microRNA 96 O - 20121230 -9606 407054 MIR98 - MIRN98|hsa-mir-98|miR-98 HGNC:31649|MIM:300810|miRBase:MI0000100 X Xp11.22 microRNA 98 miscRNA MIR98 microRNA 98 O - 20121230 -9606 407055 MIR99A - MIRN99A HGNC:31650|MIM:614509|miRBase:MI0000101 21 21q21.1 microRNA 99a miscRNA MIR99A microRNA 99a O - 20121230 -9606 407056 MIR99B - MIRN99B HGNC:31651|MIM:614510|miRBase:MI0000746 19 19q13.41 microRNA 99b miscRNA MIR99B microRNA 99b O - 20121230 -9606 407738 FAM19A1 - TAFA-1|TAFA1 HGNC:21587|Ensembl:ENSG00000183662|HPRD:13294|Vega:OTTHUMG00000158745 3 3p14.1 family with sequence similarity 19 (chemokine (C-C motif)-like), member A1 protein-coding FAM19A1 family with sequence similarity 19 (chemokine (C-C motif)-like), member A1 O chemokine-like protein TAFA-1|protein FAM19A1 20121230 -9606 407835 LOC407835 - - - 7 7q32.3 mitogen-activated protein kinase kinase 2 pseudogene pseudo - - - - 20121230 -9606 407973 SCA20 - C11DUPq12|DUP11q12 HGNC:17204|MIM:608687 11 11p11.2-q13.3 spinocerebellar ataxia 20 unknown SCA20 spinocerebellar ataxia 20 O - 20120622 -9606 407975 MIR17HG RP11-121J7.2 C13orf25|FGLDS2|LINC00048|MIHG1|MIRH1|MIRHG1|NCRNA00048|miR-17-92 HGNC:23564|MIM:609415|HPRD:12617 13 13q31.3 miR-17-92 cluster host gene (non-protein coding) miscRNA MIR17HG miR-17-92 cluster host gene (non-protein coding) O - 20121230 -9606 407977 TNFSF12-TNFSF13 - TWE-PRIL HGNC:33537|Ensembl:ENSG00000239697|Ensembl:ENSG00000248871|HPRD:05128|HPRD:18205|Vega:OTTHUMG00000161573 17 17p13.1 TNFSF12-TNFSF13 readthrough protein-coding TNFSF12-TNFSF13 TNFSF12-TNFSF13 readthrough O TNFSF12-TNFSF13 protein|tumor necrosis factor (ligand) superfamily, member 12-member 13 20121230 -9606 408029 C2orf27B - - HGNC:33824|Ensembl:ENSG00000186825|HPRD:14664|Vega:OTTHUMG00000154614 2 2q21 chromosome 2 open reading frame 27B protein-coding C2orf27B chromosome 2 open reading frame 27B O uncharacterized protein LOC408029 20121230 -9606 408050 NOMO3 - Nomo HGNC:25242|MIM:609159|Ensembl:ENSG00000103226|HPRD:12376|Vega:OTTHUMG00000177317 16 16p13 NODAL modulator 3 protein-coding NOMO3 NODAL modulator 3 O nodal modulator 3|pM5 protein 3|pM5 protein, middle copy 20121230 -9606 408186 OVOS - - - 12 12p13 ovostatin protein-coding - - - - 20121230 -9606 408187 SPINK14 - SPINK5L2 HGNC:33825|Ensembl:ENSG00000196800|HPRD:18098|Vega:OTTHUMG00000129732 5 5q32 serine peptidase inhibitor, Kazal type 14 (putative) protein-coding SPINK14 serine peptidase inhibitor, Kazal type 14 (putative) O Kazal type serine protease inhibitor 5-like 2|serine protease inhibitor Kazal-type 14 20121230 -9606 408188 VTLGL1 - - - 5 5q32 vitellogenin-like 1 unknown - - - - 20120710 -9606 408221 SCA26 - - HGNC:31097|MIM:609306 19 19p13.3 spinocerebellar ataxia 26 unknown SCA26 spinocerebellar ataxia 26 O - 20120622 -9606 408257 CILD4 - - MIM:608646 15 15q13.1-q15.1 Ciliary dyskinesia, primary, 4 unknown - - - - 20120622 -9606 408258 CILD5 - - MIM:608647 - - Ciliary dyskinesia, primary, 5 unknown - - - - 20121027 -9606 408259 HPC3 - HPC20 MIM:608656 20 20q13 Prostate cancer, hereditary, 3 unknown - - - - 20121209 -9606 408260 HPC4 - HPC7 MIM:608658 7 7p11-q21 Prostate cancer, hereditary, 4 unknown - - - - 20120622 -9606 408263 FNDC9 - C5orf40 HGNC:33547|Ensembl:ENSG00000172568|HPRD:17524|Vega:OTTHUMG00000130248 5 5q33.3 fibronectin type III domain containing 9 protein-coding FNDC9 fibronectin type III domain containing 9 O fibronectin type III domain-containing protein 9|fibronectin type-III domain-containing protein C5orf40 20121230 -9606 414058 ACRPV - - MIM:102510 2 2q36 Acropectorovertebral dysplasia (F syndrome) unknown - - - - 20120622 -9606 414059 TBC1D3B - PRC17|TBC1D3I HGNC:27011|MIM:610144|Ensembl:ENSG00000224226|HPRD:11264|Vega:OTTHUMG00000132733 17 17q12 TBC1 domain family, member 3B protein-coding TBC1D3B TBC1 domain family, member 3B O Rab GTPase-activating protein PRC17 duplicate|TBC1 domain family member 3B|TBC1 domain family member 3B/I|TBC1 domain family, member 3I|prostate cancer gene 17 duplicate 20121230 -9606 414060 TBC1D3C - TBC1D3D HGNC:24889|MIM:610806|Ensembl:ENSG00000234972|HPRD:17559|Vega:OTTHUMG00000132734 17 17q12 TBC1 domain family, member 3C protein-coding TBC1D3C TBC1 domain family, member 3C O Rab GTPase-activating protein PRC17|TBC1 domain family member 3C-like protein ENSP00000341742|TBC1 domain family member 3C/3D 20121230 -9606 414061 DNAJB3 - HCG3 HGNC:32397|HPRD:13638 2 2q37 DnaJ (Hsp40) homolog, subfamily B, member 3 protein-coding DNAJB3 DnaJ (Hsp40) homolog, subfamily B, member 3 O dnaJ homolog subfamily B member 3 20121230 -9606 414062 CCL3L3 - 464.2|D17S1718|LD78|LD78BETA|SCYA3L|SCYA3L1 HGNC:30554|MIM:609468|Ensembl:ENSG00000256515|HPRD:14426|Vega:OTTHUMG00000180318 17 17q21.1 chemokine (C-C motif) ligand 3-like 3 protein-coding CCL3L3 chemokine (C-C motif) ligand 3-like 3 O C-C motif chemokine 3-like 1|G0/G1 switch regulatory protein 19-2|G0S19-2|LD78-beta(1-70)|PAT 464.2|chemokine (C-C motif) ligand 3-like, centromeric|small inducible cytokine A3-like 1|tonsillar lymphocyte LD78 beta protein 20121230 -9606 414130 NANOGP7 - NANOGP3 HGNC:23105 14 14q32 Nanog homeobox pseudogene 7 pseudo NANOGP7 Nanog homeobox pseudogene 7 O - 20121230 -9606 414131 NANOGP2 - NANOGP4 HGNC:23100 2 2q36 Nanog homeobox pseudogene 2 pseudo NANOGP2 Nanog homeobox pseudogene 2 O - 20121230 -9606 414132 NANOGP4 - NANOGP2 HGNC:23102 7 7p15 Nanog homeobox pseudogene 4 pseudo NANOGP4 Nanog homeobox pseudogene 4 O - 20121230 -9606 414133 NANOGP5 - - HGNC:23103 9 9q31 Nanog homeobox pseudogene 5 pseudo NANOGP5 Nanog homeobox pseudogene 5 O - 20121230 -9606 414134 NANOGP6 - - HGNC:23104 10 10q24 Nanog homeobox pseudogene 6 pseudo NANOGP6 Nanog homeobox pseudogene 6 O - 20121230 -9606 414135 NANOGP11 - - HGNC:32941 6 6q25 Nanog homeobox pseudogene 11 pseudo NANOGP11 Nanog homeobox pseudogene 11 O - 20121230 -9606 414149 ACBD7 RP11-455B2.6 bA455B2.2 HGNC:17715|Ensembl:ENSG00000176244|Vega:OTTHUMG00000017725 10 10p13 acyl-CoA binding domain containing 7 protein-coding ACBD7 acyl-CoA binding domain containing 7 O acyl-CoA-binding domain-containing protein 7|acyl-Coenzyme A binding domain containing 7 20121230 -9606 414152 C10orf105 RP11-472K8.2 - HGNC:20304|Ensembl:ENSG00000214688 10 10q22.1 chromosome 10 open reading frame 105 protein-coding C10orf105 chromosome 10 open reading frame 105 O uncharacterized protein C10orf105 20121230 -9606 414153 SNRPEP2 RP11-390F4.1 SNRPEL1|bA390F4.4 HGNC:20733 9 9p24.1 small nuclear ribonucleoprotein polypeptide E pseudogene 2 pseudo SNRPEP2 small nuclear ribonucleoprotein polypeptide E pseudogene 2 O - 20121230 -9606 414155 FAM25HP RP11-145E20.5 C10orf43|bA145E20.4|bA145E20.5 HGNC:23591 10 10q11.22 family with sequence similarity 25, member H pseudogene unknown FAM25HP family with sequence similarity 25, member H pseudogene O - 20121102 -9606 414157 C10orf62 - bA548K23.1 HGNC:23294|Ensembl:ENSG00000203942|HPRD:16581|Vega:OTTHUMG00000018858 10 10q24.2 chromosome 10 open reading frame 62 protein-coding C10orf62 chromosome 10 open reading frame 62 O uncharacterized protein C10orf62 20121230 -9606 414169 BANF1P2 - BANF1L1|bA122K13.8 HGNC:23426 10 10q26.3 barrier to autointegration factor 1 pseudogene 2 pseudo BANF1P2 barrier to autointegration factor 1 pseudogene 2 O - 20121230 -9606 414189 AGAP6 - CTGLF3|bA324H6.1 HGNC:23466|Ensembl:ENSG00000204149|Vega:OTTHUMG00000018220 10 10q11.23 ArfGAP with GTPase domain, ankyrin repeat and PH domain 6 protein-coding AGAP6 ArfGAP with GTPase domain, ankyrin repeat and PH domain 6 O AGAP-6|arf-GAP with GTPase, ANK repeat and PH domain-containing protein 6|centaurin, gamma-like family, member 3|centaurin-gamma-like family member 3 20121230 -9606 414194 CCNYL2 RP11-178A10.2 C10orf21|bA178A10.2 HGNC:23495|Ensembl:ENSG00000182632|Vega:OTTHUMG00000018009 10 10q11.21 cyclin Y-like 2 pseudo CCNYL2 cyclin Y-like 2 O - 20121230 -9606 414196 CELF2-AS1 - C10orf31 HGNC:23515|HPRD:18529 10 10p14 CELF2 antisense RNA 1 unknown CELF2-AS1 CELF2 antisense RNA 1 O - 20121230 -9606 414197 ZNF32-AS1 RP11-402L1.3 ZNF32OS1|bA402L1.8 HGNC:23577 10 10q11.21 ZNF32 antisense RNA 1 miscRNA ZNF32-AS1 ZNF32 antisense RNA 1 O - 20121230 -9606 414200 NHP2P1 - NOLA2P1|bA360G10.4 HGNC:23582 10 10q23.32 NHP2 ribonucleoprotein pseudogene 1 pseudo NHP2P1 NHP2 ribonucleoprotein pseudogene 1 O - 20121230 -9606 414201 ZNF32-AS3 - C10orf44|ZNF32-OT1|bA402L1.3 HGNC:23583 10 10q11.21 ZNF32 antisense RNA 3 miscRNA ZNF32-AS3 ZNF32 antisense RNA 3 O - 20121230 -9606 414208 ZNF32-AS2 - ZNF32OS2|b402L1.7 HGNC:23593 10 10q11.21 ZNF32 antisense RNA 2 miscRNA ZNF32-AS2 ZNF32 antisense RNA 2 O - 20121230 -9606 414209 GLUD1P6 - GLUDP6|bK2173J9.1 HGNC:23610 10 10q11.22 glutamate dehydrogenase 1 pseudogene 6 pseudo GLUD1P6 glutamate dehydrogenase 1 pseudogene 6 O - 20121230 -9606 414212 GLUD1P7 - GLUDP7|bA342C24.3 HGNC:23636 10 10q11.22 glutamate dehydrogenase 1 pseudogene 7 pseudo GLUD1P7 glutamate dehydrogenase 1 pseudogene 7 O - 20121230 -9606 414213 GLUD1P8 - GLUDP8|bA144G6.5 HGNC:23637 10 10q11.22 glutamate dehydrogenase 1 pseudogene 8 pseudo GLUD1P8 glutamate dehydrogenase 1 pseudogene 8 O - 20121230 -9606 414216 BMS1P2 RP11-144G6.2 BMS1LP2 HGNC:23650|Vega:OTTHUMG00000018113 10 10q11.22 BMS1 pseudogene 2 pseudo BMS1P2 BMS1 pseudogene 2 O - 20121230 -9606 414217 BMS1P3 RP11-96C23.3 BMS1LP3 HGNC:23651|Vega:OTTHUMG00000018662 10 10q23.2 BMS1 pseudogene 3 pseudo BMS1P3 BMS1 pseudogene 3 O - 20121230 -9606 414224 CTGLF12P - bA164N7.2 HGNC:23661 10 10q11.22 centaurin, gamma-like family, member 12 pseudogene pseudo CTGLF12P centaurin, gamma-like family, member 12 pseudogene O - 20121230 -9606 414228 RPS27P1 - RPS27_10_1079|bA108M11.3 HGNC:23740 10 10q23.32 ribosomal protein S27 pseudogene 1 pseudo RPS27P1 ribosomal protein S27 pseudogene 1 O - 20121230 -9606 414230 RPS15AP5 - RPS15A_9_1106 HGNC:23743 10 10q26.13 ribosomal protein S15a pseudogene 5 pseudo RPS15AP5 ribosomal protein S15a pseudogene 5 O - 20121230 -9606 414235 PRR26 RP11-809C18.2 C10orf108 HGNC:30724|HPRD:18528 10 10p15.3 proline rich 26 miscRNA PRR26 proline rich 26 O - 20121230 -9606 414236 C10orf55 - bA417O11.3 HGNC:31008|Ensembl:ENSG00000222047|HPRD:16580|Vega:OTTHUMG00000018496 10 10q22.2 chromosome 10 open reading frame 55 protein-coding C10orf55 chromosome 10 open reading frame 55 O uncharacterized protein C10orf55 20121230 -9606 414241 FAM35B RP11-38L15.1 bA38L15.1 HGNC:31425 10 10q11.22 family with sequence similarity 35, member A pseudogene pseudo FAM35B family with sequence similarity 35, member B O - 20121230 -9606 414242 NRG3-AS1 - C10orf100 HGNC:31429 10 10q23.1 NRG3 antisense RNA 1 protein-coding NRG3-AS1 NRG3 antisense RNA 1 O NRG3 antisense RNA 1 (non-protein coding) 20121021 -9606 414243 LINC00595 - C10orf101 HGNC:31430 10 10q22.3 long intergenic non-protein coding RNA 595 miscRNA LINC00595 long intergenic non-protein coding RNA 595 O - 20121122 -9606 414245 DNAJC9-AS1 - C10orf103|bA537A6.3 HGNC:31432 10 10q22.2 DNAJC9 antisense RNA 1 miscRNA DNAJC9-AS1 DNAJC9 antisense RNA 1 O - 20121230 -9606 414246 CDH23-AS1 - C10orf106|NCRNA00223|bA327E2.3 HGNC:31433 10 10q22.1 CDH23 antisense RNA 1 miscRNA CDH23-AS1 CDH23 antisense RNA 1 O - 20121021 -9606 414247 COX20P1 - FAM36B|bA119F7.2 HGNC:31435 10 10q21.3 COX20 Cox2 chaperone homolog (S. cerevisiae) pseudogene 1 protein-coding COX20P1 COX20 Cox2 chaperone homolog (S. cerevisiae) pseudogene 1 O family with sequence similarity 36, member B (pseudogene) 20120226 -9606 414254 RPSAP6 - LAMR1P6|RPSA_23_1065 HGNC:31458 10 10q22.2 ribosomal protein SA pseudogene 6 pseudo RPSAP6 ribosomal protein SA pseudogene 6 O - 20121230 -9606 414260 LINC00619 - C10orf136|bA168P8.1 HGNC:31657 10 10q11.21 long intergenic non-protein coding RNA 619 miscRNA LINC00619 long intergenic non-protein coding RNA 619 O - 20121230 -9606 414269 CYP17A1-AS1 RP11-753C18.3 CYP17A1OS|bA753C18.3 HGNC:31671 10 10q24.32 CYP17A1 antisense RNA 1 miscRNA CYP17A1-AS1 CYP17A1 antisense RNA 1 O - 20121230 -9606 414300 LOC414300 - - - 12 12q23 uncharacterized LOC414300 unknown - - - - 20120508 -9606 414301 DDI1 - - HGNC:18961|Ensembl:ENSG00000170967|HPRD:13128|Vega:OTTHUMG00000165990 11 11q22.3 DNA-damage inducible 1 homolog 1 (S. cerevisiae) protein-coding DDI1 DNA-damage inducible 1 homolog 1 (S. cerevisiae) O DDI1, DNA-damage inducible 1, homolog 1|DNA-damage inducible protein 1|protein DDI1 homolog 1 20121230 -9606 414312 C9orf118 RP11-342C23.2 bA342C23.1 HGNC:25943 9 9q22.32 chromosome 9 open reading frame 118 protein-coding C9orf118 chromosome 9 open reading frame 118 O Putative uncharacterized protein C9orf118 20121216 -9606 414316 COL5A1-AS1 RP11-54A22.4 C9orf104|bA54A22.4 HGNC:31368 9 9q34.3 COL5A1 antisense RNA 1 miscRNA COL5A1-AS1 COL5A1 antisense RNA 1 O - 20121216 -9606 414318 C9orf106 - bA65J3.5 HGNC:31370|HPRD:10207 9 9q34.11 chromosome 9 open reading frame 106 protein-coding C9orf106 chromosome 9 open reading frame 106 O putative uncharacterized protein C9orf106 20121230 -9606 414319 LINC00587 RP11-785H23.1 C9orf107|bA785H23.1 HGNC:31372 9 9q31.1 long intergenic non-protein coding RNA 587 miscRNA LINC00587 long intergenic non-protein coding RNA 587 O - 20121216 -9606 414322 IKBKAP-IT1 - C9orf120|NCRNA00298|bA3J11.5 HGNC:31413 9 9q31.3 IKBKAP intronic transcript 1 (non-protein coding) miscRNA IKBKAP-IT1 IKBKAP intronic transcript 1 (non-protein coding) O - 20121021 -9606 414325 DEFB103A - BD-3|DEFB-3|DEFB103|DEFB3|HBD3|HBP-3|HBP3|hBD-3 HGNC:15967|Ensembl:ENSG00000176797|Vega:OTTHUMG00000143855 8 8p23.1 defensin, beta 103A protein-coding DEFB103A defensin, beta 103A O beta-defensin 103|beta-defensin 3|defensin, beta 103|defensin, beta 3|defensin-like protein 20121230 -9606 414327 PS1TP4 - - - 2 - HBV preS1-transactivated protein 4 unknown - - - - 20120710 -9606 414328 IDNK RP11-522I20.2 C9orf103|bA522I20.2 HGNC:31367|MIM:611343|Ensembl:ENSG00000148057|HPRD:16671|Vega:OTTHUMG00000020105 9 9q21.32 idnK, gluconokinase homolog (E. coli) protein-coding IDNK idnK, gluconokinase homolog (E. coli) O glucokinase-like protein|gluconate kinase|gluconokinase-like protein|probable gluconokinase 20121230 -9606 414332 LCN10 RP11-216L13.3 - HGNC:20892|MIM:612904|Ensembl:ENSG00000187922|HPRD:13977|Vega:OTTHUMG00000150428 9 9q34.3 lipocalin 10 protein-coding LCN10 lipocalin 10 O epididymal-specific lipocalin-10 20121230 -9606 414351 LINC00229 - C22orf10|NCRNA00229|dJ474I12.C22.2 HGNC:13240 22 22q13.3 long intergenic non-protein coding RNA 229 miscRNA LINC00229 long intergenic non-protein coding RNA 229 O - 20121230 -9606 414355 VKORC1P1 - - HGNC:33182 X Xp22.11 VKORC1 pseudogene 1 pseudo VKORC1P1 VKORC1 pseudogene 1 O - 20121230 -9606 414357 VKORC1P2 - - HGNC:33183 1 1p32 VKORC1 pseudogene 2 pseudo VKORC1P2 VKORC1 pseudogene 2 O - 20121230 -9606 414751 TRAPPC2P8 - TRAPPC2P3B HGNC:37731 Y Yq11.221 trafficking protein particle complex 2 pseudogene 8 pseudo TRAPPC2P8 trafficking protein particle complex 2 pseudogene 8 O - 20121209 -9606 414752 TRAPPC2P10 - TRAPPC2P5B HGNC:37732 Y Yq11.223 trafficking protein particle complex 2 pseudogene 10 pseudo TRAPPC2P10 trafficking protein particle complex 2 pseudogene 10 O - 20121209 -9606 414753 TRAPPC2P9 - TRAPPC2P4B HGNC:37733 Y Yq11.223 trafficking protein particle complex 2 pseudogene 9 pseudo TRAPPC2P9 trafficking protein particle complex 2 pseudogene 9 O - 20121209 -9606 414754 ACTG1P11 - - HGNC:37651 Y Yq11.221 actin, gamma 1 pseudogene 11 pseudo ACTG1P11 actin, gamma 1 pseudogene 11 O - 20121209 -9606 414760 HCG14 XXbac-BPG322C17.4 dJ111M5.4 HGNC:18323 6 6p21 HLA complex group 14 (non-protein coding) miscRNA HCG14 HLA complex group 14 (non-protein coding) O - 20121122 -9606 414761 HCG15 XXbac-BPG258E24.2 dJ25J6.6 HGNC:18361 6 6p21 HLA complex group 15 (non-protein coding) unknown HCG15 HLA complex group 15 (non-protein coding) O - 20120420 -9606 414763 LINC00516 - C14orf17 HGNC:19436 14 14q11.2 long intergenic non-protein coding RNA 516 pseudo LINC00516 long intergenic non-protein coding RNA 516 O - 20121122 -9606 414764 HCG23 - dJ1077I5.3 HGNC:19713 6 6p21 HLA complex group 23 (non-protein coding) miscRNA HCG23 HLA complex group 23 (non-protein coding) O - 20121230 -9606 414765 HCG25 - dJ1033B10.16 HGNC:20196 6 6p21 HLA complex group 25 (non-protein coding) miscRNA HCG25 HLA complex group 25 (non-protein coding) O - 20121230 -9606 414766 HCG16 XXbac-BPG258E24.6 dJ25J6.7 HGNC:20424 6 6p21.3 HLA complex group 16 unknown HCG16 HLA complex group 16 O - 20071004 -9606 414767 LINC00596 - C14orf165|CNSLT1I7G HGNC:23167|HPRD:18533 14 14q11.2 long intergenic non-protein coding RNA 596 miscRNA LINC00596 long intergenic non-protein coding RNA 596 O - 20121021 -9606 414768 HCG24 - dJ1033B10.15 HGNC:23500 6 6p21 HLA complex group 24 (non-protein coding) miscRNA HCG24 HLA complex group 24 (non-protein coding) O - 20120420 -9606 414771 DDR1-AS1 - TIGD1L|bCX111D4.7|bPG70P20.2|bQB10J12.1 HGNC:28694 6 6p21.3 DDR1 antisense RNA 1 (head to head) unknown DDR1-AS1 DDR1 antisense RNA 1 (head to head) O - 20121018 -9606 414774 HCG20 - NCRNA00149 HGNC:31334 6 6p21 HLA complex group 20 (non-protein coding) miscRNA HCG20 HLA complex group 20 (non-protein coding) O - 20080918 -9606 414775 HCG21 - NCRNA00150 HGNC:31335 6 6p21 HLA complex group 21 (non-protein coding) miscRNA HCG21 HLA complex group 21 (non-protein coding) O - 20080918 -9606 414776 HCG19P - - HGNC:31336 6 6p21.3 HLA complex group 19 pseudogene pseudo HCG19P HLA complex group 19 pseudogene O - 20070912 -9606 414777 HCG18 - - HGNC:31337 6 6p21.3 HLA complex group 18 (non-protein coding) miscRNA HCG18 HLA complex group 18 (non-protein coding) O - 20121230 -9606 414778 HCG17 - LINC00046|NCRNA00046 HGNC:31339 6 6p21 HLA complex group 17 (non-protein coding) miscRNA HCG17 HLA complex group 17 (non-protein coding) O - 20121230 -9606 414886 SPG27 - - HGNC:26071|MIM:609041 10 10q22.1-q24.1 spastic paraplegia 27 (autosomal recessive) unknown SPG27 spastic paraplegia 27 (autosomal recessive) O - 20120622 -9606 414899 BLID - BRCC2 HGNC:33495|MIM:608853|Ensembl:ENSG00000259571|HPRD:16392|Vega:OTTHUMG00000166060 11 11q24.1 BH3-like motif containing, cell death inducer protein-coding BLID BH3-like motif containing, cell death inducer O BH3-like motif-containing cell death inducer|breast cancer cell 2|breast cancer cell protein 2 20121230 -9606 414918 DENND6B AA-C720C749L.1 AFI1B|FAM116B HGNC:32690|Ensembl:ENSG00000205593|HPRD:17526|Vega:OTTHUMG00000150210 22 22q13.33 DENN/MADD domain containing 6B protein-coding DENND6B DENN/MADD domain containing 6B O family with sequence similarity 116, member B|protein FAM116B 20121230 -9606 414919 C8orf82 - - HGNC:33826|Ensembl:ENSG00000213563|HPRD:17567|Vega:OTTHUMG00000165181 8 8q24 chromosome 8 open reading frame 82 protein-coding C8orf82 chromosome 8 open reading frame 82 O UPF0598 protein C8orf82 20121230 -9606 414926 LINC00593 - C15orf50 HGNC:32382 15 15q23 long intergenic non-protein coding RNA 593 miscRNA LINC00593 long intergenic non-protein coding RNA 593 O - 20121230 -9606 414927 MGC34796 - - - 1 1p32 sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase) pseudogene pseudo - - - - 20121230 -9606 415056 LOC415056 - - - 9 9p13 uncharacterized LOC415056 miscRNA - - - - 20121230 -9606 415116 PIM3 CITF22-49E9.1 pim-3 HGNC:19310|MIM:610580|Ensembl:ENSG00000198355|HPRD:15137|Vega:OTTHUMG00000150290 22 22q13 pim-3 oncogene protein-coding PIM3 pim-3 oncogene O serine/threonine kinase Pim-3|serine/threonine-protein kinase pim-3 20121230 -9606 415117 STX19 - - HGNC:19300|Ensembl:ENSG00000178750|HPRD:14477|Vega:OTTHUMG00000159013 3 3q11 syntaxin 19 protein-coding STX19 syntaxin 19 O syntaxin-19 20121230 -9606 425054 VCX3B - VCX-C|VCXC HGNC:31838|Ensembl:ENSG00000205642|HPRD:15646|Vega:OTTHUMG00000021106 X Xp22.31 variable charge, X-linked 3B protein-coding VCX3B variable charge, X-linked 3B O variable charge X-linked protein 3B|variably charged protein X-C 20121230 -9606 425057 TTTY9B - NCRNA00132|TTTY9|TTTY9A|TTY9 HGNC:32425 Y Yq11.221 testis-specific transcript, Y-linked 9B (non-protein coding) miscRNA TTTY9B testis-specific transcript, Y-linked 9B (non-protein coding) O - 20121207 -9606 431704 RGS21 - - HGNC:26839|MIM:612407|Ensembl:ENSG00000253148|Vega:OTTHUMG00000035594 1 1q31.1 regulator of G-protein signaling 21 protein-coding RGS21 regulator of G-protein signaling 21 O regulator of G-protein signalling 21 20121230 -9606 431705 ASTL - - HGNC:31704|MIM:608860|Ensembl:ENSG00000188886|HPRD:16396|Vega:OTTHUMG00000155212 2 2q11.1 astacin-like metallo-endopeptidase (M12 family) protein-coding ASTL astacin-like metallo-endopeptidase (M12 family) O astacin-like metalloendopeptidase|astacin-like metalloendopeptidase (M12 family)|oocyte astacin|ovastacin 20121230 -9606 431707 LHX8 - LHX7 HGNC:28838|MIM:604425|Ensembl:ENSG00000162624|HPRD:17275|Vega:OTTHUMG00000009692 1 1p31.1 LIM homeobox 8 protein-coding LHX8 LIM homeobox 8 O LIM-homeodomain protein Lhx8|LIM/homeobox protein Lhx8 20121230 -9606 431708 MDD1 - - MIM:608520 12 12q22-q23.2 Major depressive disorder unknown - - - - 20120622 -9606 431709 MDD2 - - MIM:608691 15 15q25.3-q26.2 Major depressive disorder 2 unknown - - - - 20120622 -9606 431710 ASPG1 - - MIM:608638 3 3q25-q27 Asperger syndrome, susceptibility to, 1 unknown - - - - 20120622 -9606 431711 ASPG2 - - MIM:608631 17 17p13 Asperger syndrome, susceptibility to, 2 unknown - - - - 20120622 -9606 431712 CMT2G - - MIM:608591 12 12q12-q13.3 Charcot-Marie-Tooth disease, axonal, type 2G unknown - - - - 20121018 -9606 432369 ATP5EP2 RP11-153M24.1 - HGNC:34026 13 13q12 ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit pseudogene 2 pseudo ATP5EP2 ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit pseudogene 2 O - 20121230 -9606 432400 EIG3 - - MIM:608762 9 9q32-q33 Epilepsy, idiopathic generalized, susceptibility to 3 unknown - - - - 20120622 -9606 439911 LOC439911 - - - 10 10q11.21 uncharacterized LOC439911 unknown - - - - 20121018 -9606 439915 KRTAP5-5 - KRTAP5-11|KRTAP5.5 HGNC:23601|Ensembl:ENSG00000185940|Vega:OTTHUMG00000057554 11 11p15.5 keratin associated protein 5-5 protein-coding KRTAP5-5 keratin associated protein 5-5 O keratin associated protein 5-11|keratin-associated protein 5-11|keratin-associated protein 5-5|keratin-associated protein 5.11|keratin-associated protein 5.5|ultrahigh sulfur keratin-associated protein 5.5 20121230 -9606 439916 LINC00615 - C12orf37 HGNC:26343 12 12q21.33 long intergenic non-protein coding RNA 615 miscRNA LINC00615 long intergenic non-protein coding RNA 615 O - 20121230 -9606 439921 MXRA7 - PS1TP1|TMAP1 HGNC:7541|Ensembl:ENSG00000182534|HPRD:18199|Vega:OTTHUMG00000180370 17 17q25.1 matrix-remodelling associated 7 protein-coding MXRA7 matrix-remodelling associated 7 O HBV PreS1-transactivated protein 1|matrix-remodeling-associated protein 7|transmembrane anchor protein 1 20121230 -9606 439927 C1orf180 - - HGNC:26647|HPRD:08182 1 1p22.3 chromosome 1 open reading frame 180 miscRNA C1orf180 chromosome 1 open reading frame 180 O - 20121230 -9606 439931 THAP7-AS1 - - HGNC:41013 22 22q11.21 THAP7 antisense RNA 1 miscRNA THAP7-AS1 THAP7 antisense RNA 1 O - 20121230 -9606 439933 MGC42157 - - - 4 4p14 uncharacterized locus MGC42157 unknown - - - - 20120511 -9606 439934 LINC00575 - C4orf11 HGNC:21342 4 4q21.3 long intergenic non-protein coding RNA 575 miscRNA LINC00575 long intergenic non-protein coding RNA 575 O - 20121230 -9606 439936 C5orf17 - - HGNC:26630 5 5p14.2 chromosome 5 open reading frame 17 unknown C5orf17 chromosome 5 open reading frame 17 O - 20121230 -9606 439938 LOC439938 - - - 6 6p21.33 uncharacterized LOC439938 unknown - - - - 20120622 -9606 439941 FER1L6-AS1 - C8orf54 HGNC:26652 8 8q24.13 FER1L6 antisense RNA 1 miscRNA FER1L6-AS1 FER1L6 antisense RNA 1 O - 20121230 -9606 439943 LINC00269 RP13-153N15.1 CXorf62|NCRNA00269 HGNC:26586 X Xq13.1 long intergenic non-protein coding RNA 269 unknown LINC00269 long intergenic non-protein coding RNA 269 O - 20121021 -9606 439944 FLJ32742 - - - X Xp21.3 uncharacterized locus FLJ32742 unknown - - - - 20120508 -9606 439945 IL9RP2 - - HGNC:6032 10 10p15.3 interleukin 9 receptor pseudogene 2 pseudo IL9RP2 interleukin 9 receptor pseudogene 2 O - 20121230 -9606 439949 PRKCQ-AS1 - - HGNC:44689 10 10p14 PRKCQ antisense RNA 1 miscRNA PRKCQ-AS1 PRKCQ antisense RNA 1 O - 20121230 -9606 439950 CELF2-AS2 - - HGNC:44703 10 10p14 CELF2 antisense RNA 2 miscRNA CELF2-AS2 CELF2 antisense RNA 2 O - 20121230 -9606 439951 LOC439951 - - - 10 10p14 uncharacterized LOC439951 unknown - - - - 20121230 -9606 439953 PPIAP31 - - HGNC:44962 10 10p11.22 peptidylprolyl isomerase A (cyclophilin A) pseudogene 31 pseudo PPIAP31 peptidylprolyl isomerase A (cyclophilin A) pseudogene 31 O - 20121230 -9606 439954 RPL7P37 - RPL7_17_1035 HGNC:36656 10 10p11.21 ribosomal protein L7 pseudogene 37 pseudo RPL7P37 ribosomal protein L7 pseudogene 37 O - 20121230 -9606 439957 IGKV1ORY-1 - IGKV1/ORY-1 HGNC:37729|IMGT/GENE-DB:IGKV1/ORY-1 Y Yq11.21 immunoglobulin kappa variable 1/ORY-1 (pseudogene) pseudo IGKV1ORY-1 immunoglobulin kappa variable 1/ORY-1 (pseudogene) O - 20120818 -9606 439965 FAM35B2 RP11-575L16.2 - HGNC:34038 10 10q11.22 family with sequence similarity 35, member A pseudogene pseudo FAM35B2 family with sequence similarity 35, member B2 (pseudogene) O - 20121230 -9606 439990 LOC439990 - - - 10 10q22.3 uncharacterized LOC439990 miscRNA - - - - 20121230 -9606 439992 RPS3AP5 - RPS3A_15_1074|bA486O22.3 HGNC:23744 10 10q23.1 ribosomal protein S3A pseudogene 5 pseudo RPS3AP5 ribosomal protein S3A pseudogene 5 O - 20121230 -9606 439994 LOC439994 - - - 10 10q23.2 uncharacterized LOC439994 miscRNA - - - - 20121230 -9606 439996 IFIT1B - IFIT1L|bA149I23.6 HGNC:23442|Ensembl:ENSG00000204010|HPRD:17129|Vega:OTTHUMG00000018709 10 10q23.31 interferon-induced protein with tetratricopeptide repeats 1B protein-coding IFIT1B interferon-induced protein with tetratricopeptide repeats 1B O interferon-induced protein with tetratricopeptide repeats 1-like protein 20121230 -9606 440013 DUX4L10 XX-2136C48.1 DUX10 HGNC:31354 10 10q26.3 double homeobox 4 like 10 pseudo DUX4L10 double homeobox 4 like 10 O - 20121230 -9606 440014 DUX4L12 XX-2136C48.3 - HGNC:38671 10 10q26.3 double homeobox 4 like 12 pseudo DUX4L12 double homeobox 4 like 12 O - 20121230 -9606 440017 DUX4L15 XX-2136C48.6 - HGNC:38674 10 10q26.3 double homeobox 4 like 15 pseudo DUX4L15 double homeobox 4 like 15 O - 20121209 -9606 440021 KRTAP5-2 - KRTAP5-8|KRTAP5.2 HGNC:23597|Ensembl:ENSG00000205867|HPRD:17249|Vega:OTTHUMG00000165547 11 11p15.5 keratin associated protein 5-2 protein-coding KRTAP5-2 keratin associated protein 5-2 O keratin-associated protein 5-2|keratin-associated protein 5-8|keratin-associated protein 5.2|keratin-associated protein 5.8|ultrahigh sulfur keratin-associated protein 5.2 20121230 -9606 440023 KRTAP5-6 - KRTAP5.6 HGNC:23600|Ensembl:ENSG00000205864|HPRD:17250|Vega:OTTHUMG00000043932 11 11p15.5 keratin associated protein 5-6 protein-coding KRTAP5-6 keratin associated protein 5-6 O keratin-associated protein 5-6|keratin-associated protein 5.6|ultrahigh sulfur keratin-associated protein 5.6 20121230 -9606 440026 TMEM41B - - HGNC:28948|Ensembl:ENSG00000166471|HPRD:18632|Vega:OTTHUMG00000165719 11 11p15.4 transmembrane protein 41B protein-coding TMEM41B transmembrane protein 41B O - 20121230 -9606 440027 RPL23AP65 - RPL23A_27_1119 HGNC:36289 11 11p15.4 ribosomal protein L23a pseudogene 65 pseudo RPL23AP65 ribosomal protein L23a pseudogene 65 O - 20121230 -9606 440028 LOC440028 - - - 11 11p15.4 uncharacterized LOC440028 miscRNA - - - - 20121230 -9606 440031 LOC440031 - - - 11 11p15.2 uncharacterized LOC440031 unknown - - - - 20120511 -9606 440034 DKFZp686K1684 - - - 11 11p13 uncharacterized LOC440034 miscRNA - - - - 20121230 -9606 440040 LOC440040 - - - 11 11p11.12 glutamate receptor, metabotropic 5 pseudogene pseudo - - - - 20121230 -9606 440041 TRIM51HP - - HGNC:43977 11 11q11 tripartite motif-containing 51H, pseudogene pseudo TRIM51HP tripartite motif-containing 51H, pseudogene O - 20121230 -9606 440043 PGAM1P8 - - HGNC:42455 11 11q13.1 phosphoglycerate mutase 1 pseudogene 8 pseudo PGAM1P8 phosphoglycerate mutase 1 pseudogene 8 O - 20121230 -9606 440044 SLC22A20 HC13567 Oat6 HGNC:29867|MIM:611696|HPRD:16913 11 11q13.1 solute carrier family 22, member 20 protein-coding SLC22A20 solute carrier family 22, member 20 O organic anion transporter 6|solute carrier family 22 member 20 20121230 -9606 440047 LOC440047 - - - 11 11q13.1 uncharacterized LOC440047 protein-coding - - - - 20120508 -9606 440049 FLJ42258 - - HPRD:13461 11 11q13.2 FLJ42258 protein unknown - - - - 20120710 -9606 440050 KRTAP5-7 - KRTAP5-3|KRTAP5.7 HGNC:23602|Ensembl:ENSG00000244411|HPRD:17251|Vega:OTTHUMG00000057570 11 11q13.4 keratin associated protein 5-7 protein-coding KRTAP5-7 keratin associated protein 5-7 O keratin-associated protein 5-3|keratin-associated protein 5-7|keratin-associated protein 5.3|keratin-associated protein 5.7|ultrahigh sulfur keratin-associated protein 5.7 20121230 -9606 440051 KRTAP5-11 - KRTAP5-5|KRTAP5-6|KRTAP5.11 HGNC:23606|Ensembl:ENSG00000204571|HPRD:17248|Vega:OTTHUMG00000057586 11 11q13.4 keratin associated protein 5-11 protein-coding KRTAP5-11 keratin associated protein 5-11 O keratin associated protein 5-5|keratin-associated protein 5-11|keratin-associated protein 5.11|ultrahigh sulfur keratin-associated protein 5.11 20121230 -9606 440055 RPS12P22 - RPS12_10_1156 HGNC:35671 11 11q13.4 ribosomal protein S12 pseudogene 22 pseudo RPS12P22 ribosomal protein S12 pseudogene 22 O - 20121230 -9606 440059 LOC440059 - - - 11 11q14.3 Cdon homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 440061 TRIM64EP - - HGNC:43975 11 11q14.3 tripartite motif containing 64E, pseudogene pseudo TRIM64EP tripartite motif containing 64E, pseudogene O - 20121230 -9606 440063 LOC440063 - - - 11 11q22.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 440067 CASP1P2 - - HGNC:43776 11 11q22.3 caspase 1, apoptosis-related cysteine peptidase pseudogene 2 pseudo CASP1P2 caspase 1, apoptosis-related cysteine peptidase pseudogene 2 O - 20121209 -9606 440068 CARD17 - INCA HGNC:33827|MIM:609490|Ensembl:ENSG00000255221|HPRD:17149|Vega:OTTHUMG00000166163 11 11q22.3 caspase recruitment domain family, member 17 protein-coding CARD17 caspase recruitment domain family, member 17 O Inhibitory CARD|caspase recruitment domain-containing protein 17|caspase-1 inhibitor INCA|inhibitory caspase recruitment domain (CARD) protein|inhibitory caspase recruitment domain protein 20121230 -9606 440072 LINC00167 - C11orf37|NCRNA00167 HGNC:30468|HPRD:16931 11 11q24.3 long intergenic non-protein coding RNA 167 miscRNA LINC00167 long intergenic non-protein coding RNA 167 O - 20121230 -9606 440073 IQSEC3 - - HGNC:29193|MIM:612118|Ensembl:ENSG00000120645|Vega:OTTHUMG00000167975 12 12p13.33 IQ motif and Sec7 domain 3 protein-coding IQSEC3 IQ motif and Sec7 domain 3 O IQ motif and SEC7 domain-containing protein 3 20121230 -9606 440077 ZNF705A - - HGNC:32281|Ensembl:ENSG00000196946|HPRD:13364|Vega:OTTHUMG00000168635 12 12p13.31 zinc finger protein 705A protein-coding ZNF705A zinc finger protein 705A O - 20121230 -9606 440078 FAM66C - - HGNC:21644 12 12p13.31 family with sequence similarity 66, member C miscRNA FAM66C family with sequence similarity 66, member C O - 20121230 -9606 440081 DDX12P - CHLR2|DDX12 HGNC:2737|MIM:601151 12 12p13.31 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 12, pseudogene pseudo DDX12P DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 12, pseudogene O - 20121230 -9606 440082 LOC440082 - - - 12 12p13.2 uncharacterized LOC440082 unknown - - - - 20120622 -9606 440084 LOC440084 hCG_1655019 - - 12 12p13.2 hCG1655019 unknown - - - - 20120511 -9606 440086 RPS6P1 - RPS6_9_1210 HGNC:32478 12 12p13.1 ribosomal protein S6 pseudogene 1 pseudo RPS6P1 ribosomal protein S6 pseudogene 1 O - 20121230 -9606 440087 C12orf69 - - HGNC:34401|Ensembl:ENSG00000179256|HPRD:18442|Vega:OTTHUMG00000167474 12 12p12.3 chromosome 12 open reading frame 69 protein-coding C12orf69 chromosome 12 open reading frame 69 O uncharacterized protein C12orf69 20121230 -9606 440093 H3F3C - H3.5 HGNC:33164|Ensembl:ENSG00000188375|HPRD:18443|Vega:OTTHUMG00000157811 12 12p11.21 H3 histone, family 3C protein-coding H3F3C H3 histone, family 3C O histone H3.3C|histone H3.5|histone variant H3.5 20121230 -9606 440097 DBX2 - - HGNC:33186|Ensembl:ENSG00000185610|HPRD:16910|Vega:OTTHUMG00000169559 12 12q12 developing brain homeobox 2 protein-coding DBX2 developing brain homeobox 2 O developing brain homeobox protein 2|homeobox protein DBX2 20121230 -9606 440101 FLJ12825 - - - 12 12q13.13 uncharacterized LOC440101 miscRNA - - - - 20121230 -9606 440104 TMEM198B UNQ1916 - HGNC:43629 12 12q13.2 transmembrane protein 198B, pseudogene pseudo TMEM198B transmembrane protein 198B, pseudogene O - 20121230 -9606 440107 PLEKHG7 - - HGNC:33829|Ensembl:ENSG00000187510|HPRD:17004|Vega:OTTHUMG00000170106 12 12q22 pleckstrin homology domain containing, family G (with RhoGef domain) member 7 protein-coding PLEKHG7 pleckstrin homology domain containing, family G (with RhoGef domain) member 7 O PH domain-containing family G member 7|pleckstrin homology domain-containing family G member 7 20121230 -9606 440117 LOC440117 - - - 12 12q24.32 uncharacterized LOC440117 miscRNA - - - - 20121230 -9606 440119 FLJ31485 - - - 12 12q24.33 uncharacterized LOC440119 miscRNA - - - - 20121230 -9606 440122 ZNF891 hCG_1646157 - HGNC:38709 12 12q24.33 zinc finger protein 891 unknown ZNF891 zinc finger protein 891 O - 20121211 -9606 440125 HNRNPA1P30 RP11-569O4.6 - HGNC:39548 13 13q12.11 heterogeneous nuclear ribonucleoprotein A1 pseudogene 30 pseudo HNRNPA1P30 heterogeneous nuclear ribonucleoprotein A1 pseudogene 30 O - 20121230 -9606 440129 FLJ26086 - - - 13 13q12.2 uncharacterized LOC440129 unknown - - - - 20120508 -9606 440131 LINC00544 RP11-90M5.1 - HGNC:43679|HPRD:17398 13 13q12.3 long intergenic non-protein coding RNA 544 miscRNA LINC00544 long intergenic non-protein coding RNA 544 O - 20121230 -9606 440132 LINC00545 hCG_1815504 - HGNC:43680 13 13q12.3 long intergenic non-protein coding RNA 545 miscRNA LINC00545 long intergenic non-protein coding RNA 545 O - 20121230 -9606 440137 FLJ31945 - - - 13 13q14.2 uncharacterized LOC440137 unknown - - - - 20121230 -9606 440138 ALG11 RP11-248G5.6 CDG1P|GT8 HGNC:32456|MIM:613666|Ensembl:ENSG00000253710|HPRD:11265|Vega:OTTHUMG00000016959 13 13q14.2 asparagine-linked glycosylation 11, alpha-1,2-mannosyltransferase homolog (yeast) protein-coding ALG11 asparagine-linked glycosylation 11, alpha-1,2-mannosyltransferase homolog (yeast) O GDP-Man:Man(3)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase|asparagine-linked glycosylation protein 11 homolog|glycolipid 2-alpha-mannosyltransferase 20121230 -9606 440142 TARDBPP2 - - HGNC:39848 13 13q21.2 TAR DNA binding protein pseudogene 2 pseudo TARDBPP2 TAR DNA binding protein pseudogene 2 O - 20121230 -9606 440145 MZT1 RP11-11C5.2 C13orf37|MOZART1 HGNC:33830|MIM:613448|Ensembl:ENSG00000204899|Vega:OTTHUMG00000017069 13 13q22.1 mitotic spindle organizing protein 1 protein-coding MZT1 mitotic spindle organizing protein 1 O mitotic-spindle organizing protein 1|mitotic-spindle organizing protein associated with a ring of gamma-tubulin 1 20121230 -9606 440149 LOC440149 - - - 13 13q34 uncharacterized LOC440149 unknown - - - - 20120508 -9606 440153 OR11H12 - - HGNC:30738|HPRD:18633 14 14q11.2 olfactory receptor, family 11, subfamily H, member 12 protein-coding OR11H12 olfactory receptor, family 11, subfamily H, member 12 O olfactory receptor 11H12 20121230 -9606 440157 LOC440157 - - HPRD:18445 14 14q11.1 uncharacterized LOC440157 unknown - - - - 20121230 -9606 440159 OR11H13P - ORNP-NP1 HGNC:29997 14 14q11.2 olfactory receptor, family 11, subfamily H, member 13 pseudogene pseudo OR11H13P olfactory receptor, family 11, subfamily H, member 13 pseudogene O - 20121230 -9606 440163 RNASE13 - - HGNC:25285|Ensembl:ENSG00000206150|HPRD:17980|Vega:OTTHUMG00000171110 14 14q11.1 ribonuclease, RNase A family, 13 (non-active) protein-coding RNASE13 ribonuclease, RNase A family, 13 (non-active) O ribonuclease 13|ribonuclease-like protein 13 20121230 -9606 440173 LOC440173 - - - 9 9q21 uncharacterized LOC440173 miscRNA - - - - 20121230 -9606 440176 RPL12P6 - RPL12_12_1352 HGNC:23538 14 14q13.1 ribosomal protein L12 pseudogene 6 pseudo RPL12P6 ribosomal protein L12 pseudogene 6 O - 20121230 -9606 440180 LOC440180 - - - 14 14q22.3 zinc finger, CCHC domain containing 7 pseudogene pseudo - - - - 20121230 -9606 440181 LOC440181 - - - 14 14q23.1 transmembrane protein 98 pseudogene pseudo - - - - 20121230 -9606 440184 LINC00238 - C14orf53|NCRNA00238 HGNC:20100|HPRD:14708 14 14q23.3 long intergenic non-protein coding RNA 238 miscRNA LINC00238 long intergenic non-protein coding RNA 238 O - 20121230 -9606 440193 CCDC88C - DAPLE|HkRP2|KIAA1509 HGNC:19967|MIM:611204|Ensembl:ENSG00000015133|Vega:OTTHUMG00000171099 14 14q32.11 coiled-coil domain containing 88C protein-coding CCDC88C coiled-coil domain containing 88C O Dvl-associating protein with a high frequency of leucine residues|coiled-coil domain-containing protein 88C|hook-related protein 2|protein Daple 20121230 -9606 440200 FLJ41170 - - HPRD:13450 14 14q32.31 uncharacterized LOC440200 unknown - - - - 20120511 -9606 440224 CXADRP3 - - HGNC:33974 18 18p11.21 coxsackie virus and adenovirus receptor pseudogene 3 pseudo CXADRP3 coxsackie virus and adenovirus receptor pseudogene 3 O - 20121230 -9606 440225 NF1P2 - NF1HHS HGNC:38664 15 15q11.2 neurofibromin 1 pseudogene 2 pseudo NF1P2 neurofibromin 1 pseudogene 2 O - 20121230 -9606 440233 LOC440233 - - Ensembl:ENSG00000259455|Vega:OTTHUMG00000171928 15 15q11.2 putative golgin subfamily A member 6-like protein 6-like protein-coding - - - - 20121209 -9606 440243 LOC440243 - - - 15 15q11.2 putative golgin subfamily A member 6-like protein-coding - - - - 20121230 -9606 440248 HERC2P9 - - HGNC:30495|HPRD:18634 15 15q13.1 hect domain and RLD 2 pseudogene 9 pseudo HERC2P9 hect domain and RLD 2 pseudogene 9 O - 20121230 -9606 440253 WHAMMP2 - WHAMML2|WHDC1L2 HGNC:32360 15 15q13.1 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 2 pseudo WHAMMP2 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 2 O - 20121230 -9606 440270 GOLGA8B - GOLGA5 HGNC:31973|MIM:609619|Ensembl:ENSG00000215252|HPRD:18635|Vega:OTTHUMG00000129549 15 15q14 golgin A8 family, member B protein-coding GOLGA8B golgin A8 family, member B O Golgin subfamily A member 8B|golgi autoantigen, golgin subfamily a, 8B|golgin-67 20121230 -9606 440272 ANP32F - - - 15 15q14 acidic (leucine-rich) nuclear phosphoprotein 32 family, member F unknown - - - - 20100404 -9606 440275 EIF2AK4 - GCN2 HGNC:19687|MIM:609280|Ensembl:ENSG00000128829|HPRD:18447|Vega:OTTHUMG00000172403 15 15q15.1 eukaryotic translation initiation factor 2 alpha kinase 4 protein-coding EIF2AK4 eukaryotic translation initiation factor 2 alpha kinase 4 O GCN2 eIF2alpha kinase|GCN2-like protein|eukaryotic translation initiation factor 2-alpha kinase 4 20121230 -9606 440278 CATSPER2P1 - - HGNC:31054 15 15q15.3 cation channel, sperm associated 2 pseudogene 1 pseudo CATSPER2P1 cation channel, sperm associated 2 pseudogene 1 O - 20121230 -9606 440279 UNC13C - - HGNC:23149|MIM:614568|Ensembl:ENSG00000137766|Vega:OTTHUMG00000172542 15 15q21.3 unc-13 homolog C (C. elegans) protein-coding UNC13C unc-13 homolog C (C. elegans) O Munc13-3|protein unc-13 homolog C|unc-13-like 3 20121230 -9606 440288 LOC440288 - - - 15 15q24.1 uncharacterized LOC440288 miscRNA - - - - 20121230 -9606 440292 LOC440292 - - - 15 15q24.3 uncharacterized LOC440292 protein-coding - - - - 20121209 -9606 440293 DNM1DN11-7 - DNM1DN11.7 - 15 15q25.2 DNM1DN11.7 duplicon other - - - - 20100404 -9606 440295 GOLGA6L9 - - HGNC:37229|Ensembl:ENSG00000197978|HPRD:11262|Vega:OTTHUMG00000170547 15 15q25.2 golgin A6 family-like 9 protein-coding GOLGA6L9 golgin A6 family-like 9 O Golgin subfamily A member 6-like protein 9|golgi autoantigen, golgin subfamily a, 6-like 9 20121230 -9606 440297 LOC440297 - - - 15 15q25.2 chondroitin sulfate proteoglycan 4 pseudogene pseudo - - - - 20121209 -9606 440299 DNM1P41 - DNM1DN11-6|DNM1DN11.6|DNM1DN11@ HGNC:35191 15 15q25.2 DNM1 pseudogene 41 pseudo DNM1P41 DNM1 pseudogene 41 O - 20121209 -9606 440300 LOC440300 - - - 15 15q25.2 chondroitin sulfate proteoglycan 4 pseudogene pseudo - - - - 20121209 -9606 440303 DNM1P44 - DNM1DN11-13|DNM1DN11.13|DNM1DN11@ HGNC:35194 15 15q25.2 DNM1 pseudogene 44 pseudo DNM1P44 DNM1 pseudogene 44 O - 20121209 -9606 440307 TTLL13 - - HGNC:32484|Ensembl:ENSG00000213471|Vega:OTTHUMG00000177210 15 15q26.1 tubulin tyrosine ligase-like family, member 13 protein-coding TTLL13 tubulin tyrosine ligase-like family, member 13 O tubulin polyglutamylase TTLL13|tubulin--tyrosine ligase-like protein 13 20121230 -9606 440311 LOC440311 - - - 15 15q26.2 glioma tumor suppressor candidate region gene 2 pseudogene pseudo - - - - 20121230 -9606 440313 LOC440313 - - HPRD:18448 15 15q26.3 uncharacterized LOC440313 unknown - - - - 20121230 -9606 440330 LOC440330 - - - 16 16p13.3 uncharacterized LOC440330 protein-coding - - - uncharacterized protein LOC440330 20120508 -9606 440335 LOC440335 - - Ensembl:ENSG00000267795|Vega:OTTHUMG00000177849 16 16p13.3 uncharacterized LOC440335 protein-coding - - - uncharacterized protein LOC440335 20121230 -9606 440337 LOC440337 - - HPRD:18449 16 16p13.2 uncharacterized LOC440337 unknown - - - - 20121230 -9606 440345 61E3.4 - - - 16 16p12.2 nuclear pore complex interacting protein-like protein-coding - - - - 20121230 -9606 440346 LOC440346 - - - 16 16p12.1 uncharacterized LOC440346 unknown - - - - 20120508 -9606 440348 NPIPL2 - A-761H5.4 HGNC:34409|HPRD:18636 16 16q23.1 nuclear pore complex interacting protein-like 2 protein-coding NPIPL2 nuclear pore complex interacting protein-like 2 O nuclear pore complex-interacting protein-like 2 20121209 -9606 440350 NPIPL1 - A-575C2.4|A-761H5.5 HGNC:33832|HPRD:18637 16 16p11.2 nuclear pore complex interacting protein-like 1 pseudo NPIPL1 nuclear pore complex interacting protein-like 1 O - 20121230 -9606 440352 SNX29P2 - RUNDC2C HGNC:31914 16 16p11.2 sorting nexin 29 pseudogene 2 pseudo SNX29P2 sorting nexin 29 pseudogene 2 O - 20121230 -9606 440353 LOC440353 - - - 16 16p11.2 nuclear pore complex interacting protein pseudogene pseudo - - - - 20121230 -9606 440354 LOC440354 - - - 16 16p11.2 smg-1 homolog, phosphatidylinositol 3-kinase-related kinase (C. elegans) pseudogene pseudo - - - - 20121230 -9606 440356 LOC440356 - - - 16 16p11.2 uncharacterized LOC440356 miscRNA - - - - 20121230 -9606 440359 CSDAP1 - - HGNC:2429 16 16p11.2 cold shock domain protein A pseudogene 1 pseudo CSDAP1 cold shock domain protein A pseudogene 1 O - 20121230 -9606 440362 HERC2P4 - D16F37S5 HGNC:4872 16 16p11.2 hect domain and RLD 2 pseudogene 4 pseudo HERC2P4 hect domain and RLD 2 pseudogene 4 O - 20121021 -9606 440366 HERC2P8 - - HGNC:38747 16 16p11.2 hect domain and RLD 2 pseudogene 8 pseudo HERC2P8 hect domain and RLD 2 pseudogene 8 O - 20121209 -9606 440375 RAB43P1 - RAB41P|RAB43P HGNC:33153 16 16q11.2 RAB43 pseudogene 1 pseudo RAB43P1 RAB43 pseudogene 1 O - 20121230 -9606 440386 LOC440386 - - - 16 16q23.1 uncharacterized LOC440386 unknown - - - - 20120511 -9606 440387 CTRB2 - - HGNC:2522|Ensembl:ENSG00000168928|Vega:OTTHUMG00000159271 16 16q23.1 chymotrypsinogen B2 protein-coding CTRB2 chymotrypsinogen B2 O chymotrypsin B2 20121230 -9606 440390 FLJ46320 - - - 16 16q24.2 uncharacterized LOC440390 miscRNA - - - - 20120508 -9606 440396 HNRNPA1P16 - - HGNC:39134 17 17p13.3 heterogeneous nuclear ribonucleoprotein A1 pseudogene 16 pseudo HNRNPA1P16 heterogeneous nuclear ribonucleoprotein A1 pseudogene 16 O - 20121230 -9606 440400 RNASEK - - HGNC:33911|Ensembl:ENSG00000219200|HPRD:17568|Vega:OTTHUMG00000170145 17 17p13.1 ribonuclease, RNase K protein-coding RNASEK ribonuclease, RNase K O RNase kappa|ribonuclease kappa 20121230 -9606 440406 UBE2SP2 - - HGNC:32196 17 17p11.2 ubiquitin-conjugating enzyme E2S pseudogene 2 pseudo UBE2SP2 ubiquitin-conjugating enzyme E2S pseudogene 2 O - 20121230 -9606 440411 FAM106B - - HGNC:32450 17 17p11.2 family with sequence similarity 106, member B protein-coding FAM106B family with sequence similarity 106, member B O - 20121021 -9606 440414 TRE17 - - - 17 17p11.2 TRE17 protein protein-coding - - - - 20121209 -9606 440416 LOC440416 - - - 17 17p11.2 uncharacterized LOC440416 miscRNA - - - - 20120909 -9606 440419 TBC1D3P5 - - HGNC:43567 17 17q11.1 TBC1 domain family, member 3 pseudogene 5 pseudo TBC1D3P5 TBC1 domain family, member 3 pseudogene 5 O - 20121230 -9606 440423 SUZ12P1 - SUZ12P HGNC:32421 17 17q11.2 suppressor of zeste 12 homolog pseudogene 1 pseudo SUZ12P1 suppressor of zeste 12 homolog pseudogene 1 O - 20121230 -9606 440432 DKFZp564H213 - - - 17 17q12 uncharacterized LOC440432 miscRNA - - - - 20120508 -9606 440434 LOC440434 - - - 17 17q12 aminopeptidase puromycin sensitive pseudogene pseudo - - - - 20121230 -9606 440435 GPR179 - CSNB1E|GPR158L|GPR158L1 HGNC:31371|MIM:614515|Ensembl:ENSG00000188888|HPRD:13602|Vega:OTTHUMG00000132251 17 17q21.1 G protein-coupled receptor 179 protein-coding GPR179 G protein-coupled receptor 179 O GPR158-like 1|probable G-protein coupled receptor 158-like 1|probable G-protein coupled receptor 179 20121230 -9606 440446 FLJ42842 - - HPRD:13466 17 17q21.33 uncharacterized FLJ42842 unknown - - - - 20121230 -9606 440447 RPS2P27 - RPS2_6_520 HGNC:36876 4 4q28.3 ribosomal protein S2 pseudogene 27 pseudo RPS2P27 ribosomal protein S2 pseudogene 27 O - 20121230 -9606 440452 TBC1D3P2 - - HGNC:27783 17 17q23.2 TBC1 domain family, member 3 pseudogene 2 pseudo TBC1D3P2 TBC1 domain family, member 3 pseudogene 2 O - 20121230 -9606 440456 PLEKHM1P - - HGNC:35411 17 17q24.1 pleckstrin homology domain containing, family M (with RUN domain) member 1 pseudogene pseudo PLEKHM1P pleckstrin homology domain containing, family M (with RUN domain) member 1 pseudogene O - 20121230 -9606 440459 LOC440459 - - - 17 17q24.1 solute carrier family 16, member 6 pseudogene pseudo - - - - 20121230 -9606 440461 LOC440461 - - - 17 17q24.2 Rho GTPase activating protein 27 pseudogene pseudo - - - - 20121230 -9606 440465 BAIAP2-AS1 - - HGNC:44342|HPRD:13544 17 17q25.3 BAIAP2 antisense RNA 1 (head to head) miscRNA BAIAP2-AS1 BAIAP2 antisense RNA 1 (head to head) O - 20121230 -9606 440479 FLJ34223 - - - 18 18p11.22 uncharacterized LOC440479 unknown - - - - 20120511 -9606 440482 ANKRD20A5P - ANKRD20A5 HGNC:33833 18 18p11.21 ankyrin repeat domain 20 family, member A5, pseudogene pseudo ANKRD20A5P ankyrin repeat domain 20 family, member A5, pseudogene O - 20121230 -9606 440487 RPL21P128 - RPL21_62_1585 HGNC:36311 18 18q11.1 ribosomal protein L21 pseudogene 128 pseudo RPL21P128 ribosomal protein L21 pseudogene 128 O - 20121230 -9606 440489 LOC440489 - - - 18 18q11.2 ubiquitin fusion degradation 1 like (yeast) pseudogene pseudo - - - - 20121230 -9606 440498 HSBP1L1 - - HGNC:37243|Ensembl:ENSG00000226742|Vega:OTTHUMG00000180375 18 18q23 heat shock factor binding protein 1-like 1 protein-coding HSBP1L1 heat shock factor binding protein 1-like 1 O heat shock factor-binding protein 1-like protein 1 20121230 -9606 440503 PLIN5 - LSDA5|LSDP5|MLDP|OXPAT HGNC:33196|MIM:613248|Ensembl:ENSG00000214456|Vega:OTTHUMG00000182008 19 19p13.3 perilipin 5 protein-coding PLIN5 perilipin 5 O lipid storage droplet protein 5|perilipin-5 20121230 -9606 440508 CLEC4GP1 - - HGNC:33502 19 19p13.2 C-type lectin domain family 4, member G pseudogene 1 pseudo CLEC4GP1 C-type lectin domain family 4, member G pseudogene 1 O - 20121230 -9606 440514 LOC440514 - - - 19 19p13.11 citrate synthase, mitochondrial-like pseudo - - - - 20121230 -9606 440515 ZNF506 - - HGNC:23780|Ensembl:ENSG00000081665|Vega:OTTHUMG00000182367 19 19p13.11 zinc finger protein 506 protein-coding ZNF506 zinc finger protein 506 O - 20121230 -9606 440518 LOC440518 - - - 19 19p12 golgin A2 pseudogene pseudo - - - - 20121230 -9606 440519 ZNF724P - - HGNC:32460 19 19p12 zinc finger protein 724, pseudogene pseudo ZNF724P zinc finger protein 724, pseudogene O - 20121230 -9606 440525 LOC440525 - - - 19 19q13.2 proline rich 13 pseudogene pseudo - - - - 20121230 -9606 440533 PSG8 - PSG1 HGNC:9525|MIM:176397|Ensembl:ENSG00000124467|HPRD:15939|Vega:OTTHUMG00000151118 19 19q13.2 pregnancy specific beta-1-glycoprotein 8 protein-coding PSG8 pregnancy specific beta-1-glycoprotein 8 O C1 alternate|C2 alternate|C3 alternate|PS-beta-G-8|PSBG-8|pregnancy-specific beta-1 glycoprotein|pregnancy-specific beta-1-glycoprotein 8|pregnancy-specific glycoprotein 8 20121230 -9606 440556 FLJ42875 - - - 1 1p36.32 uncharacterized LOC440556 miscRNA - - - - 20121230 -9606 440558 LOC440558 - - HPRD:18451 10 10q21.1 uncharacterized LOC440558 unknown - - - - 20120511 -9606 440560 PRAMEF11 - RP5-845O24.2 HGNC:14086|Ensembl:ENSG00000204513|Vega:OTTHUMG00000001929 1 1p36.21 PRAME family member 11 protein-coding PRAMEF11 PRAME family member 11 O - 20121230 -9606 440561 PRAMEF6 - - HGNC:30583|Ensembl:ENSG00000232423|HPRD:17358|Vega:OTTHUMG00000001984 1 1p36.21 PRAME family member 6 protein-coding PRAMEF6 PRAME family member 6 O - 20121230 -9606 440563 LOC440563 - - - 1 1p36.21 heterogeneous nuclear ribonucleoprotein C-like protein-coding - - - - 20121230 -9606 440567 UQCRHL hCG_25371 - - 1 1p36.21 ubiquinol-cytochrome c reductase hinge protein-like protein-coding - - - hCG25371 20121230 -9606 440568 LOC440568 - - - 1 1p36.13 family with sequence similarity 131, member C pseudogene pseudo - - - - 20121230 -9606 440570 LOC440570 - - HPRD:18452 1 1p36.13 uncharacterized LOC440570 unknown - - - - 20121230 -9606 440574 MINOS1 RP5-1056L3.2 C1orf151|MIO10 HGNC:32068|Ensembl:ENSG00000173436|Vega:OTTHUMG00000002712 1 1p36.13 mitochondrial inner membrane organizing system 1 protein-coding MINOS1 mitochondrial inner membrane organizing system 1 O UPF0327 protein C1orf151|mitochondrial inner membrane organizing system protein 1 20121230 -9606 440575 RPL21P29 - RPL21_1_19 HGNC:35793 1 1p36.12 ribosomal protein L21 pseudogene 29 pseudo RPL21P29 ribosomal protein L21 pseudogene 29 O - 20121230 -9606 440577 LOC440577 - - - 1 1p36.11 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 440584 SLC2A1-AS1 - - HGNC:44187 1 1p34.2 SLC2A1 antisense RNA 1 miscRNA SLC2A1-AS1 SLC2A1 antisense RNA 1 O - 20121230 -9606 440585 FAM183A RP5-1034F7.1 - HGNC:34347|Ensembl:ENSG00000186973|Vega:OTTHUMG00000007286 1 1p34.2 family with sequence similarity 183, member A protein-coding FAM183A family with sequence similarity 183, member A O hCG23177|protein FAM183A 20121230 -9606 440587 RPL6P1 - RPL6_1_44 HGNC:35972 1 1p34.1 ribosomal protein L6 pseudogene 1 pseudo RPL6P1 ribosomal protein L6 pseudogene 1 O - 20121230 -9606 440589 RPS2P8 - RPS2_1_48 HGNC:36207 1 1p32.3 ribosomal protein S2 pseudogene 8 pseudo RPS2P8 ribosomal protein S2 pseudogene 8 O - 20121230 -9606 440590 ZYG11A - ZYG11 HGNC:32058|Ensembl:ENSG00000203995|HPRD:17399|Vega:OTTHUMG00000008923 1 1p32.3 zyg-11 family member A, cell cycle regulator protein-coding ZYG11A zyg-11 family member A, cell cycle regulator O ZYG-11A early embryogenesis protein|protein zyg-11 homolog A|zyg-11 homolog A 20121230 -9606 440594 FLJ31662 - - - 1 1p21.3 uncharacterized LOC440594 miscRNA - - - - 20121230 -9606 440595 EEF1A1P11 - EEF1AL9 HGNC:3206 1 1p21.3 eukaryotic translation elongation factor 1 alpha 1 pseudogene 11 pseudo EEF1A1P11 eukaryotic translation elongation factor 1 alpha 1 pseudogene 11 O - 20121230 -9606 440600 LOC440600 - - - 1 1p13.3 uncharacterized LOC440600 miscRNA - - - - 20121230 -9606 440602 LOC440602 - - - 1 1p13.3 uncharacterized LOC440602 unknown - - - - 20120508 -9606 440603 BCL2L15 - Bfk|C1orf178 HGNC:33624|Ensembl:ENSG00000188761|HPRD:16920|Vega:OTTHUMG00000011940 1 1p13.2 BCL2-like 15 protein-coding BCL2L15 BCL2-like 15 O bcl-2-like protein 15|bcl2-L-15|pro-apoptotic Bcl-2 protein 20121230 -9606 440606 HSD3BP2 - - HGNC:5220 1 1p13.1 hydroxy-delta-5-steroid dehydrogenase, 3 beta, pseudogene 2 pseudo HSD3BP2 hydroxy-delta-5-steroid dehydrogenase, 3 beta, pseudogene 2 O - 20121230 -9606 440670 AE01 - NBPF9 - 1 1q21.1 uncharacterized LOC440670 protein-coding - - - - 20120622 -9606 440672 NUDT4P1 - NUDT4P2 HGNC:18012 1 1q21.1 nudix (nucleoside diphosphate linked moiety X)-type motif 4 pseudogene 1 pseudo NUDT4P1 nudix (nucleoside diphosphate linked moiety X)-type motif 4 pseudogene 1 O - 20121230 -9606 440683 LOC440683 - - - 1 1q21.1 seven transmembrane helix receptor unknown - - - - 20120710 -9606 440686 HIST2H3PS2 RP5-998N21.6 p06 HGNC:32060 1 1q21.2 histone cluster 2, H3, pseudogene 2 pseudo HIST2H3PS2 histone cluster 2, H3, pseudogene 2 O - 20121230 -9606 440689 HIST2H2BF RP11-196G18.6 - HGNC:24700|Ensembl:ENSG00000203814|HPRD:18639|Vega:OTTHUMG00000012093 1 1q21.2 histone cluster 2, H2bf protein-coding HIST2H2BF histone cluster 2, H2bf O histone 2, H2bf|histone H2B type 2-F 20121230 -9606 440695 ETV3L - - HGNC:33834|Ensembl:ENSG00000253831|HPRD:13365|Vega:OTTHUMG00000041325 1 1q23.1 ets variant 3-like protein-coding ETV3L ets variant 3-like O ETS translocation variant 3-like protein|ets variant gene 3-like 20121230 -9606 440699 LRRC52 - - HGNC:32156|Ensembl:ENSG00000162763|HPRD:13396|Vega:OTTHUMG00000034625 1 1q24.1 leucine rich repeat containing 52 protein-coding LRRC52 leucine rich repeat containing 52 O BK channel auxilliary gamma subunit LRRC52|leucine-rich repeat-containing protein 52 20121230 -9606 440700 LOC440700 - - - 1 1q24.1 carbonic anhydrase XIV (CA14) pseudogene pseudo - - - - 20121230 -9606 440704 LOC440704 - - - 1 1q31.1-q31.2 uncharacterized LOC440704 miscRNA - - - - 20121230 -9606 440712 C1orf186 - - HGNC:25341|Ensembl:ENSG00000196533|HPRD:17400|Vega:OTTHUMG00000036122 1 1q32.1 chromosome 1 open reading frame 186 protein-coding C1orf186 chromosome 1 open reading frame 186 O uncharacterized protein C1orf186 20121230 -9606 440714 C1orf143 hCG_2045592 - HGNC:32045 1 1q41 chromosome 1 open reading frame 143 unknown C1orf143 chromosome 1 open reading frame 143 O - 20121021 -9606 440716 LOC440716 - - - 1 1q41 uncharacterized LOC440716 unknown - - - - 20120622 -9606 440730 TRIM67 - TNL HGNC:31859|MIM:610584|Ensembl:ENSG00000119283|HPRD:15570|Vega:OTTHUMG00000037958 1 1q42.2 tripartite motif containing 67 protein-coding TRIM67 tripartite motif containing 67 O TRIM9-like protein TNL|tripartite motif-containing 67|tripartite motif-containing protein 67 20121230 -9606 440732 RPS7P3 - RPS7_2_175 HGNC:36518 1 1q42.2 ribosomal protein S7 pseudogene 3 pseudo RPS7P3 ribosomal protein S7 pseudogene 3 O - 20121230 -9606 440737 RPL35P1 - RPL35_1_181 HGNC:36695 1 1q43 ribosomal protein L35 pseudogene 1 pseudo RPL35P1 ribosomal protein L35 pseudogene 1 O - 20121230 -9606 440738 MAP1LC3C - ATG8J|LC3C HGNC:13353|MIM:609605|Ensembl:ENSG00000197769|HPRD:14226|Vega:OTTHUMG00000039865 1 1q43 microtubule-associated protein 1 light chain 3 gamma protein-coding MAP1LC3C microtubule-associated protein 1 light chain 3 gamma O LC3-like protein 2|MAP1 light chain 3-like protein 2|MAP1 light chain 3-like protein 3|MAP1A/MAP1B LC3 C|MAP1A/MAP1B light chain 3 C|autophagy-related protein LC3 C|autophagy-related ubiquitin-like modifier LC3 C|microtubule-associated proteins 1A/1B light chain 3C 20121230 -9606 440742 LOC440742 - - HPRD:18453 1 1q44 uncharacterized LOC440742 unknown - - - - 20121230 -9606 440757 DZANK1-AS1 - - HGNC:43424|HPRD:14632 20 20p11.23 DZANK1 antisense RNA 1 (tail to tail) miscRNA DZANK1-AS1 DZANK1 antisense RNA 1 (tail to tail) O - 20121230 -9606 440766 FLJ26332 - - - 20 20q13.13 uncharacterized LOC440766 protein-coding - - - - 20120508 -9606 440786 LOC440786 - - - 22 22q11.1 uncharacterized LOC440786 other - - - - 20120610 -9606 440792 LOC440792 - - - 22 22q11.21 proline dehydrogenase (oxidase) 1 pseudogene pseudo - - - - 20121230 -9606 440795 CA15P2 - - HGNC:14916 22 22q11.21 carbonic anhydrase XV, pseudogene 2 pseudo CA15P2 carbonic anhydrase XV, pseudogene 2 O - 20121230 -9606 440799 P2RX6P - - HGNC:34076 22 22q11.21 purinergic receptor P2X, ligand-gated ion channel, 6 pseudogene pseudo P2RX6P purinergic receptor P2X, ligand-gated ion channel, 6 pseudogene O - 20121230 -9606 440804 RIMBP3B - RIM-BP3.2|RIM-BP3.B|RIMBP3.2 HGNC:33891|MIM:612700|Ensembl:ENSG00000196934|Vega:OTTHUMG00000150819 22 22q11.21 RIMS binding protein 3B protein-coding RIMBP3B RIMS binding protein 3B O RIMS binding protein 3.2|RIMS-binding protein 3.2|RIMS-binding protein 3B 20121209 -9606 440822 PIWIL3 - HIWI3 HGNC:18443|MIM:610314|Ensembl:ENSG00000184571|HPRD:17855|Vega:OTTHUMG00000150788 22 22q11.23 piwi-like 3 (Drosophila) protein-coding PIWIL3 piwi-like 3 (Drosophila) O piwi-like protein 3 20121230 -9606 440823 MIAT - C22orf35|GOMAFU|LINC00066|NCRNA00066|RNCR2 HGNC:33425|MIM:611082 22 22q12.1 myocardial infarction associated transcript (non-protein coding) miscRNA MIAT myocardial infarction associated transcript (non-protein coding) O - 20121230 -9606 440829 SHISA8 C22:CTA-250D10.9 C22orf17|Orf26 HGNC:18351 22 22q13.2 shisa homolog 8 (Xenopus laevis) protein-coding SHISA8 shisa homolog 8 (Xenopus laevis) O CTA-250D10.17|putative protein shisa-8 20121230 -9606 440836 ODF3B - ODF3L3 HGNC:34388|Ensembl:ENSG00000177989|HPRD:18640|Vega:OTTHUMG00000150334 22 22q13.33 outer dense fiber of sperm tails 3B protein-coding ODF3B outer dense fiber of sperm tails 3B O orf2 5' to PD-ECGF/TP|outer dense fiber protein 3-like protein 3|outer dense fiber protein 3B 20121230 -9606 440854 CAPN14 - - HGNC:16664|MIM:610229|Ensembl:ENSG00000214711|Vega:OTTHUMG00000152039 2 2p23.1-p21 calpain 14 protein-coding CAPN14 calpain 14 O CANP 14|calcium-activated neutral proteinase 14|calpain-14 20121230 -9606 440862 FLJ41757 - - - 2 2p21 uncharacterized LOC440862 unknown - - - - 20121230 -9606 440864 LOC440864 - - - 2 2p16.3 uncharacterized LOC440864 protein-coding - - - - 20120511 -9606 440865 FLJ46838 - - HPRD:17005 2 2p16.3 FLJ46838 protein unknown - - - - 20120511 -9606 440867 FLJ16124 - - HPRD:16909 2 2p14 FLJ16124 protein unknown - - - - 20120710 -9606 440888 ACTR3BP2 - FKSG73 HGNC:38677 2 2p11.1 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 2 pseudo ACTR3BP2 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 2 O - 20121230 -9606 440894 LOC440894 - - - 2 2q13 uncharacterized LOC440894 miscRNA - - - - 20121230 -9606 440895 LOC440895 - - Ensembl:ENSG00000186148|Vega:OTTHUMG00000153222 2 2q13 two pore channel 3 pseudogene pseudo - - - - 20121230 -9606 440896 LOC440896 - - - 9 9q21.11 uncharacterized LOC440896 miscRNA - - - - 20121230 -9606 440900 LOC440900 - - - 2 2q14.1 uncharacterized LOC440900 miscRNA - - - - 20121230 -9606 440902 LOC440902 - - - 2 2q14.3 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 440905 LOC440905 - - HPRD:18454 2 2q21.1 uncharacterized LOC440905 miscRNA - - - - 20121230 -9606 440910 LOC440910 - - - 2 2q21.1 uncharacterized LOC440910 miscRNA - - - - 20121230 -9606 440915 POTEKP FKSG30 ACT|ACTBL3|POTE2delta|POTEK HGNC:30182|MIM:611266|HPRD:18642 2 2q21.1 POTE ankyrin domain family, member K, pseudogene pseudo POTEKP POTE ankyrin domain family, member K, pseudogene O - 20121230 -9606 440917 LOC440917 - - - 2 2q22.1 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide pseudogene pseudo - - - - 20121230 -9606 440918 FLJ46875 - - - 2 2q24.1 uncharacterized LOC440918 protein-coding - - - - 20120622 -9606 440925 LOC440925 - - HPRD:18455 2 2q31.1 uncharacterized LOC440925 miscRNA - - - - 20121230 -9606 440926 H3F3AP4 - p13 HGNC:42980 2 2q31.1 H3 histone, family 3A, pseudogene 4 pseudo H3F3AP4 H3 histone, family 3A, pseudogene 4 O - 20121230 -9606 440934 LOC440934 - - - 2 2q36.1 uncharacterized LOC440934 unknown - - - - 20121230 -9606 440944 SETD5-AS1 - THUMPD3-AS1 HGNC:44478 3 3p25.3 SETD5 antisense RNA 1 miscRNA SETD5-AS1 SETD5 antisense RNA 1 O - 20121230 -9606 440952 EIF1B-AS1 - - HGNC:44555 3 3p22.1 EIF1B antisense RNA 1 miscRNA EIF1B-AS1 EIF1B antisense RNA 1 O - 20121230 -9606 440955 TMEM89 - - HGNC:32372|Ensembl:ENSG00000183396|HPRD:17401|Vega:OTTHUMG00000156647 3 3p21.31 transmembrane protein 89 protein-coding TMEM89 transmembrane protein 89 O - 20121230 -9606 440956 IQCF6 - - HGNC:35158 3 3p21.2 IQ motif containing F6 protein-coding IQCF6 IQ motif containing F6 O IQ domain-containing protein F6 20121230 -9606 440957 SMIM4 - C3orf78 HGNC:37257|Ensembl:ENSG00000168273|Vega:OTTHUMG00000158726 3 3p21.1 small integral membrane protein 4 protein-coding SMIM4 small integral membrane protein 4 O UPF0640 protein C3orf78 20121230 -9606 440970 LOC440970 - - - 3 3p12.1 uncharacterized LOC440970 miscRNA - - - - 20121230 -9606 440973 LOC440973 - - - 3 3q13.13 nuclear transcription factor Y, beta pseudogene pseudo - - - - 20121230 -9606 440981 LOC440981 - - - 3 3q24 phospholipid scramblase-like protein-coding - - - phospholipid scramblase 1-like|uncharacterized protein LOC440981 20121230 -9606 440982 FLJ30375 - - - 3 3q24 uncharacterized LOC440982 unknown - - - - 20121230 -9606 440991 RPS3P3 - RPS3_1_443 HGNC:36700 3 3q27.1 ribosomal protein S3 pseudogene 3 pseudo RPS3P3 ribosomal protein S3 pseudogene 3 O - 20121230 -9606 440992 RPS20P14 - RPS20_6_446 HGNC:36692 3 3q27.3 ribosomal protein S20 pseudogene 14 pseudo RPS20P14 ribosomal protein S20 pseudogene 14 O - 20121230 -9606 440993 LOC440993 - - HPRD:18457 3 3q29 uncharacterized LOC440993 unknown - - - - 20121230 -9606 441009 LOC441009 - - - 4 4p15.33 uncharacterized LOC441009 miscRNA - - - - 20121230 -9606 441013 RPS2P21 - RPS2_5_473 HGNC:35591 4 4p13 ribosomal protein S2 pseudogene 21 pseudo RPS2P21 ribosomal protein S2 pseudogene 21 O - 20121230 -9606 441024 MTHFD2L - - HGNC:31865|MIM:614047|Ensembl:ENSG00000163738|HPRD:17608|Vega:OTTHUMG00000157135 4 4q13.3 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2-like protein-coding MTHFD2L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2-like O MTHFD2-like|NADP-dependent methylenetetrahydrofolate dehydrogenase 2-like protein|probable bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase 2 20121230 -9606 441025 LOC441025 - - - 4 4q21.1 uncharacterized LOC441025 miscRNA - - - - 20121230 -9606 441026 LOC441026 - - - 4 4q21.22 heterogeneous nuclear ribonucleoprotein A3 pseudogene pseudo - - - - 20121230 -9606 441027 TMEM150C - - HGNC:37263|Ensembl:ENSG00000249242|Vega:OTTHUMG00000161083 4 4q21.22 transmembrane protein 150C protein-coding TMEM150C transmembrane protein 150C O - 20121230 -9606 441032 EEF1A1P9 - EEF1AL7 HGNC:3204 4 4q24 eukaryotic translation elongation factor 1 alpha 1 pseudogene 9 pseudo EEF1A1P9 eukaryotic translation elongation factor 1 alpha 1 pseudogene 9 O - 20121230 -9606 441034 RPL7AP30 - RPL7A_9_511 HGNC:35757 4 4q25 ribosomal protein L7a pseudogene 30 pseudo RPL7AP30 ribosomal protein L7a pseudogene 30 O - 20121230 -9606 441035 LOC441035 - - - 4 4q26 uncharacterized LOC441035 unknown - - - - 20120726 -9606 441046 GUSBP5 - GYPELOC441046 HGNC:42319|HPRD:17402 4 4q31.21 glucuronidase, beta pseudogene 5 pseudo GUSBP5 glucuronidase, beta pseudogene 5 O - 20121230 -9606 441050 PTGES3P3 hCG_2026038 PTGES3P HGNC:43823 4 4q33 prostaglandin E synthase 3 (cytosolic) pseudogene 3 pseudo PTGES3P3 prostaglandin E synthase 3 (cytosolic) pseudogene 3 O - 20121230 -9606 441051 HSP90AA6P - HSP90Af HGNC:32536 4 4q33 heat shock protein 90kDa alpha (cytosolic), class A member 6, pseudogene pseudo HSP90AA6P heat shock protein 90kDa alpha (cytosolic), class A member 6, pseudogene O - 20121230 -9606 441052 LOC441052 - - - 4 4q34.1 uncharacterized LOC441052 unknown - - - - 20120511 -9606 441054 C4orf47 Chr4_1746 - HGNC:34346|Ensembl:ENSG00000205129|Vega:OTTHUMG00000160458 4 4q35.1 chromosome 4 open reading frame 47 protein-coding C4orf47 chromosome 4 open reading frame 47 O UPF0602 protein C4orf47 20121230 -9606 441056 DUX4L4 - - HGNC:38686|Ensembl:ENSG00000258834|Vega:OTTHUMG00000161318 4 4q35.2 double homeobox 4 like 4 protein-coding DUX4L4 double homeobox 4 like 4 O double homeobox protein 4-like protein 4 20121230 -9606 441058 MGC39584 - - HPRD:17542 4 4q35.2 uncharacterized LOC441058 miscRNA - - - - 20121230 -9606 441061 MARCH11 - MARCH-XI HGNC:33609|MIM:613338|Ensembl:ENSG00000183654|Vega:OTTHUMG00000161789 5 5p15.1 membrane-associated ring finger (C3HC4) 11 protein-coding MARCH11 membrane-associated ring finger (C3HC4) 11 O E3 ubiquitin-protein ligase MARCH11|membrane-associated RING finger protein 11|membrane-associated RING-CH protein XI 20121230 -9606 441066 GUSBP8 - - HGNC:42322 5 5q21.1 glucuronidase, beta pseudogene 8 pseudo GUSBP8 glucuronidase, beta pseudogene 8 O - 20121230 -9606 441072 FLJ31104 - - - 5 5q11.2 uncharacterized LOC441072 miscRNA - - - - 20121230 -9606 441073 RPL26P19 - RPL26_4_565 HGNC:36393 5 5q11.2 ribosomal protein L26 pseudogene 19 pseudo RPL26P19 ribosomal protein L26 pseudogene 19 O - 20121230 -9606 441081 LOC441081 - - - 5 5q13.2 POM121 membrane glycoprotein (rat) pseudogene pseudo - - - - 20121230 -9606 441086 LOC441086 - - - 5 5q13.3 uncharacterized LOC441086 unknown - - - - 20120511 -9606 441087 LOC441087 - - HPRD:18459 5 5q13.3 uncharacterized LOC441087 unknown - - - - 20120710 -9606 441089 CRSP8P - - - 5 5q14.1 mediator complex subunit 27 pseudogene pseudo - - - - 20121230 -9606 441094 FLJ42709 - - - 5 5q15 uncharacterized LOC441094 miscRNA - - - - 20121230 -9606 441098 LOC441098 - - - 5 5q21.1 putative POM121-like protein 1-like protein-coding - - - - 20121222 -9606 441108 C5orf56 - - HGNC:33838|HPRD:18460 5 5q31.1 chromosome 5 open reading frame 56 miscRNA C5orf56 chromosome 5 open reading frame 56 O - 20121230 -9606 441114 RPLP0P9 - - - 5 5q34 ribosomal protein, large, P0 pseudogene pseudo - - - - 20121230 -9606 441116 FLJ16171 - - HPRD:16911 5 5q35.2 FLJ16171 protein miscRNA - - - - 20121230 -9606 441123 LINC00266-3 - C6orf88|NCRNA00266-3|NCRNA00266C|dJ24O22.2 HGNC:21112 6 6p25.3 long intergenic non-protein coding RNA 266-3 miscRNA LINC00266-3 long intergenic non-protein coding RNA 266-3 O - 20121021 -9606 441124 LOC441124 - - - 1 1q42.11 uncharacterized LOC441124 protein-coding - - - - 20121230 -9606 441131 ARPC3P5 - - HGNC:39435 6 6p22.3 actin related protein 2/3 complex, subunit 3 pseudogene 5 pseudo ARPC3P5 actin related protein 2/3 complex, subunit 3 pseudogene 5 O - 20121230 -9606 441132 IMPDH1P9 - - HGNC:33964 6 6p22.3 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 9 pseudo IMPDH1P9 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 9 O - 20121230 -9606 441133 KRT18P38 - - HGNC:33407 6 6p22.3 keratin 18 pseudogene 38 pseudo KRT18P38 keratin 18 pseudogene 38 O - 20121230 -9606 441150 C6orf226 - - HGNC:34431|Ensembl:ENSG00000221821|HPRD:17403|Vega:OTTHUMG00000156926 6 6p21.1 chromosome 6 open reading frame 226 protein-coding C6orf226 chromosome 6 open reading frame 226 O uncharacterized protein C6orf226 20121230 -9606 441151 TMEM151B RP11-444E17.5 C6orf137|TMEM193|bA444E17.5 HGNC:21315|Ensembl:ENSG00000178233|Vega:OTTHUMG00000014765 6 6p21.1 transmembrane protein 151B protein-coding TMEM151B transmembrane protein 151B O transmembrane protein 193 20121230 -9606 441154 RPL7AP34 - RPL7A_14_708 HGNC:36778 6 6q12 ribosomal protein L7a pseudogene 34 pseudo RPL7AP34 ribosomal protein L7a pseudogene 34 O - 20121230 -9606 441155 LOC441155 RP11-74E24.2 - - 6 6q12 zinc finger CCCH-type domain-containing-like protein-coding - - - zinc finger CCCH-type containing 11A-like 20121230 -9606 441160 KRT19P1 - - HGNC:33422 6 6q13 keratin 19 pseudogene 1 pseudo KRT19P1 keratin 19 pseudogene 1 O - 20121230 -9606 441161 OOEP hCG_1779612 C6orf156|FLOPED|HOEP19|KHDC2 HGNC:21382|MIM:611689|Ensembl:ENSG00000203907|Vega:OTTHUMG00000150057 6 6q13 oocyte expressed protein protein-coding OOEP oocyte expressed protein O KH homology domain containing 2|KH homology domain-containing protein 2|oocyte and embryo protein 19|oocyte expressed protein homolog (dog)|oocyte- and embryo-specific protein 19|oocyte-expressed protein homolog 20121230 -9606 441166 CNN2P9 - - HGNC:39534 6 6q21 calponin 2 pseudogene 9 pseudo CNN2P9 calponin 2 pseudogene 9 O - 20121230 -9606 441167 LOC441167 hCG_1820801 - - 6 6q21 hCG1820801 unknown - - - - 20121230 -9606 441168 FAM26F RP1-93H18.5 C6orf187|dJ93H18.5 HGNC:33391|Ensembl:ENSG00000188820|HPRD:18644|Vega:OTTHUMG00000015438 6 6q22.1 family with sequence similarity 26, member F protein-coding FAM26F family with sequence similarity 26, member F O protein FAM26F 20121230 -9606 441172 FLJ46906 - - - 6 6q24.1 uncharacterized LOC441172 miscRNA - - - - 20121230 -9606 441177 LINC00602 - - HGNC:43917|HPRD:18645 6 6q27 long intergenic non-protein coding RNA 602 miscRNA LINC00602 long intergenic non-protein coding RNA 602 O - 20121230 -9606 441178 LOC441178 - - - 6 6q27 uncharacterized LOC441178 miscRNA - - - - 20120710 -9606 441179 LOC441179 - - - 6 6q27 uncharacterized LOC441179 unknown - - - - 20121230 -9606 441191 RNF216P1 hCG_2040556 RNF216L|hCG2040556 HGNC:33610 7 7p22.1 ring finger protein 216 pseudogene 1 pseudo RNF216P1 ring finger protein 216 pseudogene 1 O - 20121230 -9606 441194 PMS2CL - PMS2P13 HGNC:30061 7 7p22.1 PMS2 C-terminal like pseudogene pseudo PMS2CL PMS2 C-terminal like pseudogene O - 20121230 -9606 441204 LOC441204 hCG_2009921 - - 7 7p15.2 uncharacterized LOC441204 miscRNA - - - - 20121230 -9606 441208 ZNRF2P1 - - HGNC:42792|HPRD:18648 7 7p14.3 zinc and ring finger 2 pseudogene 1 pseudo ZNRF2P1 zinc and ring finger 2 pseudogene 1 O - 20121230 -9606 441212 RP9P - - HGNC:33969 7 7p14.3 retinitis pigmentosa 9 pseudogene pseudo RP9P retinitis pigmentosa 9 pseudogene O - 20121230 -9606 441218 KRT8P20 - - HGNC:33372 7 7p14.1 keratin 8 pseudogene 20 pseudo KRT8P20 keratin 8 pseudogene 20 O - 20121230 -9606 441228 LOC441228 - - - 7 7p11.2 exportin, tRNA (nuclear export receptor for tRNAs) pseudogene pseudo - - - - 20121230 -9606 441233 LOC441233 - - - 7 7p11.1 uncharacterized LOC441233 unknown - - - - 20120511 -9606 441234 ZNF716 - - HGNC:32458|Ensembl:ENSG00000182111|Vega:OTTHUMG00000156689 7 7p11.2 zinc finger protein 716 protein-coding ZNF716 zinc finger protein 716 O - 20121230 -9606 441238 NMD3P1 - NMD3P HGNC:22672 7 7q11.21 NMD3 homolog (S. cerevisiae) pseudogene 1 pseudo NMD3P1 NMD3 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 441239 LOC441239 - - - 7 7q11.21 uncharacterized LOC441239 protein-coding - - - uncharacterized protein LOC441239 20121230 -9606 441241 LOC441241 - - - 7 7q11.21 vitamin K epoxide reductase complex, subunit 1-like 1 pseudogene pseudo - - - - 20121230 -9606 441242 LOC441242 - - HPRD:18462 7 7q11.21 uncharacterized LOC441242 miscRNA - - - - 20121230 -9606 441246 RPL35P5 hCG_1983332 RPL35_4_812 HGNC:36955 7 7q11.21 ribosomal protein L35 pseudogene 5 pseudo RPL35P5 ribosomal protein L35 pseudogene 5 O - 20121230 -9606 441250 TYW1B - LINC00069|NCRNA00069|RSAFD2 HGNC:33908 7 7q11.23 tRNA-yW synthesizing protein 1 homolog B (S. cerevisiae) protein-coding TYW1B tRNA-yW synthesizing protein 1 homolog B (S. cerevisiae) O long intergenic non-protein coding RNA 69|radical S-adenosyl methionine and flavodoxin domain-containing protein 2|radical S-adenosyl methionine and flavodoxin domains 1|tRNA wybutosine-synthesizing protein 1 homolog B|tRNA-yW synthesizing protein 1 homolog B (non-protein coding) 20121230 -9606 441251 SPDYE7P - - HGNC:35466 7 7q11.23 speedy homolog E7 (Xenopus laevis), pseudogene pseudo SPDYE7P speedy homolog E7 (Xenopus laevis), pseudogene O - 20121230 -9606 441253 LOC441253 - - - 7 7q11.23 nuclear envelope pore membrane LOC441253 protein-coding - - - - 20120511 -9606 441258 LOC441258 - - - 7 7q11.23 Williams Beuren syndrome chromosome region 19 pseudogene pseudo - - - - 20121230 -9606 441259 LOC441259 - - - 7 7q11.23 postmeiotic segregation increased 2 pseudogene pseudo - - - - 20121230 -9606 441261 FDPSP7 - FDPSL2B HGNC:33487 7 7q11.23 farnesyl diphosphate synthase pseudogene 7 pseudo FDPSP7 farnesyl diphosphate synthase pseudogene 7 O - 20121230 -9606 441263 DTX2P1-UPK3BP1-PMS2P11 - PMS2L11|PMS2P11|PMSR6 HGNC:42360 7 7q11.23 DTX2P1-UPK3BP1-PMS2P11 readthrough transcribed pseudogene pseudo DTX2P1-UPK3BP1-PMS2P11 DTX2P1-UPK3BP1-PMS2P11 readthrough transcribed pseudogene O - 20121230 -9606 441268 LOC441268 - - HPRD:18463 7 7q21.3 uncharacterized LOC441268 unknown - - - - 20121017 -9606 441272 SPDYE3 tcag7.1017 - HGNC:35462|Ensembl:ENSG00000214300|HPRD:14693|Vega:OTTHUMG00000155462 7 7q22.1 speedy homolog E3 (Xenopus laevis) protein-coding SPDYE3 speedy homolog E3 (Xenopus laevis) O Putative WBSCR19-like protein 7|putative Speedy protein E3|speedy protein E3 20121230 -9606 441273 SPDYE2 - SPDYB2-L1 HGNC:33841|Ensembl:ENSG00000205238|Vega:OTTHUMG00000150385 7 7q22.1 speedy homolog E2 (Xenopus laevis) protein-coding SPDYE2 speedy homolog E2 (Xenopus laevis) O Speedy B2-like 1|putative Speedy protein E2|speedy protein E2 20121230 -9606 441282 AKR1B15 tcag7.1260 AKR1B10L HGNC:37281|Ensembl:ENSG00000227471|Vega:OTTHUMG00000155376 7 7q33 aldo-keto reductase family 1, member B15 protein-coding AKR1B15 aldo-keto reductase family 1, member B15 O aldo-keto reductase family 1 member B15|putative aldo-keto reductase family 1 member B15 20121230 -9606 441294 CTAGE15P - - HGNC:37295|HPRD:17404 7 7q35 CTAGE family, member 15, pseudogene protein-coding CTAGE15P CTAGE family, member 15, pseudogene O CTAGE6-like 20121230 -9606 441295 OR2A9P - FKSG35|HSDJ0798C17|OR2A19|OR2A22P|OR2A9 HGNC:8236 7 7q35 olfactory receptor, family 2, subfamily A, member 9 pseudogene pseudo OR2A9P olfactory receptor, family 2, subfamily A, member 9 pseudogene O - 20121230 -9606 441307 FLJ44511 - - - 7 7p22.3 uncharacterized LOC441307 miscRNA - - - - 20121230 -9606 441308 OR4F21 - OR4F21P HGNC:19583|HPRD:17729 8 8p23.3 olfactory receptor, family 4, subfamily F, member 21 protein-coding OR4F21 olfactory receptor, family 4, subfamily F, member 21 O olfactory receptor 4F21|olfactory receptor, family 4, subfamily F, member 21 pseudogene 20121230 -9606 441310 FLJ00290 - - - 8 8p23.3 FLJ00290 protein unknown - - - - 20120710 -9606 441313 FAM90A4P - FAM90A4 HGNC:32252 8 8p23.1 family with sequence similarity 90, member A4 pseudogene pseudo FAM90A4P family with sequence similarity 90, member A4, pseudogene O - 20121209 -9606 441314 FAM90A13P - FAM90A13 HGNC:32261|MIM:613049 8 8p23.1 putative protein FAM90A13 pseudo FAM90A13P family with sequence similarity 90, member A13, pseudogene O - 20121209 -9606 441315 FAM90A5P - FAM90A5 HGNC:32253|MIM:613043 8 8p23.1 putative protein FAM90A5 pseudo FAM90A5P family with sequence similarity 90, member A5, pseudogene O - 20121209 -9606 441317 FAM90A7P - FAM90A7 HGNC:32255|MIM:613044 8 8p23.1 putative protein FAM90A7 pseudo FAM90A7P family with sequence similarity 90, member A7, pseudogene O - 20121209 -9606 441320 LOC441320 - - - 8 8p23.1 chromosome 11 open reading frame2 pseudogene pseudo - - - - 20121230 -9606 441323 FAM90A16P - FAM90A16 HGNC:32264 8 8p23.1 family with sequence similarity 90, member A16, pseudogene pseudo FAM90A16P family with sequence similarity 90, member A16, pseudogene O - 20121209 -9606 441324 FAM90A8P - FAM90A8 HGNC:32256|MIM:613045 8 8p23.1 putative protein FAM90A8 pseudo FAM90A8P family with sequence similarity 90, member A8, pseudogene O - 20121209 -9606 441326 FAM90A18P - FAM90A18 HGNC:32266|MIM:613052 8 8p23.1 putative protein FAM90A18/FAM90A19 pseudo FAM90A18P family with sequence similarity 90, member A18, pseudogene O - 20121209 -9606 441327 FAM90A9P - FAM90A9 HGNC:32257|MIM:613046 8 8p23.1 putative protein FAM90A9 pseudo FAM90A9P family with sequence similarity 90, member A9, pseudogene O - 20121209 -9606 441328 FAM90A10P - FAM90A10 HGNC:32258|MIM:613047 8 8p23.1 putative protein FAM90A10 pseudo FAM90A10P family with sequence similarity 90, member A10, pseudogene O - 20121230 -9606 441331 FAM90A11P - FAM90A11 HGNC:32259 8 8p23.1 family with sequence similarity 90, member A11 pseudogene pseudo FAM90A11P family with sequence similarity 90, member A11, pseudogene O - 20121230 -9606 441332 FAM90A24P - FAM90A24 HGNC:32272 8 8p23.1 family with sequence similarity 90, member A24 (pseudogene) pseudo FAM90A24P family with sequence similarity 90, member A24, pseudogene O - 20121230 -9606 441347 LOC441347 hCG_1795560 - - 8 8p11.21 hCG1795560 protein-coding - - - - 20111109 -9606 441355 FLJ39080 - - - 8 8q21.11 uncharacterized LOC441355 miscRNA - - - - 20121230 -9606 441359 REXO1L3P - - HGNC:32240 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 3, pseudogene pseudo REXO1L3P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 3, pseudogene O - 20121209 -9606 441361 REXO1L5P - - HGNC:32242 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 5, pseudogene pseudo REXO1L5P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 5, pseudogene O - 20121209 -9606 441362 REXO1L6P - - HGNC:32243 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 6 (pseudogene) pseudo REXO1L6P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 6 (pseudogene) O - 20121230 -9606 441363 REXO1L7P - - HGNC:32244 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 7, pseudogene pseudo REXO1L7P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 7, pseudogene O - 20120720 -9606 441369 FLJ46284 - - - 8 8q22.1 uncharacterized LOC441369 miscRNA - - - - 20121230 -9606 441374 FLJ42969 - - - 8 8q22.3 uncharacterized LOC441374 miscRNA - - - - 20121230 -9606 441376 AARD - C8orf85 HGNC:33842|Ensembl:ENSG00000205002|Vega:OTTHUMG00000164961 8 8q24.11 alanine and arginine rich domain containing protein protein-coding AARD alanine and arginine rich domain containing protein O alanine and arginine-rich domain-containing protein 20121230 -9606 441377 RPS26P35 - RPS26_17_946 HGNC:36229 8 8q24.12 ribosomal protein S26 pseudogene 35 pseudo RPS26P35 ribosomal protein S26 pseudogene 35 O - 20121230 -9606 441381 LRRC24 - LRRC14OS HGNC:28947|Ensembl:ENSG00000254402|HPRD:18651|Vega:OTTHUMG00000165180 8 8q24.3 leucine rich repeat containing 24 protein-coding LRRC24 leucine rich repeat containing 24 O leucine-rich repeat-containing protein 24 20121230 -9606 441386 RPS26P3 RP11-338L20.1 RPS26_11_962|bA338L20.1 HGNC:23411 9 9p23 ribosomal protein S26 pseudogene 3 pseudo RPS26P3 ribosomal protein S26 pseudogene 3 O - 20121230 -9606 441389 FLJ35282 - - - 9 9p21.3 uncharacterized LOC441389 miscRNA - - - - 20121230 -9606 441391 RBMXP2 - - HGNC:23284 9 9p21.1 RNA binding motif protein, X-linked pseudogene 2 pseudo RBMXP2 RNA binding motif protein, X-linked pseudogene 2 O - 20121230 -9606 441394 SUGT1P1 - SGT1P|SUGT1P|bA255A11.1 HGNC:19384|HPRD:18367 9 9p13.3 suppressor of G2 allele of SKP1 (S. cerevisiae) pseudogene 1 pseudo SUGT1P1 suppressor of G2 allele of SKP1 (S. cerevisiae) pseudogene 1 O - 20121230 -9606 441400 RAB1C RP11-613M10.1 - HGNC:23683 9 9p13.2 RAB1C, member RAS oncogene family pseudogene pseudo RAB1C RAB1C, member RAS oncogene family pseudogene O - 20121230 -9606 441402 LOC441402 - - - 9 9p13.1 contactin associated protein-like 3 pseudogene pseudo - - - - 20121230 -9606 441410 LOC441410 - - - 9 9p11.2 FK506 binding protein 4, 59kDa pseudogene pseudo - - - - 20121209 -9606 441416 GPR116P2 - - HGNC:32921 9 9p11.2 G protein-coupled receptor 116 pseudogene 2 pseudo GPR116P2 G protein-coupled receptor 116 pseudogene 2 O - 20121230 -9606 441420 MYO5BP1 - - HGNC:38495 9 9p11.2 myosin VB pseudogene 1 pseudo MYO5BP1 myosin VB pseudogene 1 O - 20121230 -9606 441425 ANKRD20A3 - - HGNC:31981|Ensembl:ENSG00000132498|HPRD:17405|Vega:OTTHUMG00000013276 9 9p12 ankyrin repeat domain 20 family, member A3 protein-coding ANKRD20A3 ankyrin repeat domain 20 family, member A3 O ankyrin repeat domain 20A-related|ankyrin repeat domain-containing protein 20A3 20121230 -9606 441426 LINC00268 - NCRNA00268|NCRNA00268A HGNC:38543|HPRD:18465 9 9p11.2 long intergenic non-protein coding RNA 268 miscRNA LINC00268 long intergenic non-protein coding RNA 268 O - 20120126 -9606 441430 ANKRD20A2 - - HGNC:31979|Ensembl:ENSG00000183148|HPRD:18652|Vega:OTTHUMG00000058641 9 9p12 ankyrin repeat domain 20 family, member A2 protein-coding ANKRD20A2 ankyrin repeat domain 20 family, member A2 O ankyrin repeat domain-containing protein 20A2 20121230 -9606 441432 AQP7P3 - AQPap-3 HGNC:31976|HPRD:17406 9 9p12 aquaporin 7 pseudogene 3 pseudo AQP7P3 aquaporin 7 pseudogene 3 O - 20121230 -9606 441440 RPL7AP46 - RPL7A_20_981 HGNC:35698 9 9q13 ribosomal protein L7a pseudogene 46 pseudo RPL7AP46 ribosomal protein L7a pseudogene 46 O - 20121230 -9606 441441 FLJ41455 - - - 9 9q12 uncharacterized LOC441441 unknown - - - - 20120508 -9606 441442 MYO5BP3 - - HGNC:38497 9 9q13 myosin VB pseudogene 3 pseudo MYO5BP3 myosin VB pseudogene 3 O - 20121230 -9606 441452 SPATA31C1 - FAM75C1 HGNC:27846 9 9q22 SPATA31 subfamily C, member 1 protein-coding SPATA31C1 SPATA31 subfamily C, member 1 O family with sequence similarity 75, member C1|uncharacterized protein LOC441452 20121230 -9606 441454 LOC441454 - - - 9 9q22.33 prothymosin, alpha pseudogene pseudo - - - - 20121230 -9606 441455 LOC441455 - - - 9 9q22.33 makorin ring finger protein 1 pseudogene pseudo - - - - 20121230 -9606 441457 FAM22G RP11-330M2.1 - HGNC:23449|Ensembl:ENSG00000188152|Vega:OTTHUMG00000020305 9 9q22.33 family with sequence similarity 22, member G protein-coding FAM22G family with sequence similarity 22, member G O family with sequence similarity 22, pseudogene|protein FAM22G 20121230 -9606 441459 ANKRD18B RP11-255A11.18-001 bA255A11.3|bA255A11.5 HGNC:23644|Ensembl:ENSG00000230453|HPRD:18466|Vega:OTTHUMG00000019776 9 9p13.3 ankyrin repeat domain 18B protein-coding ANKRD18B ankyrin repeat domain 18B O ankyrin repeat domain-containing protein 18B 20121230 -9606 441461 LOC441461 - - - 9 9q31.1 uncharacterized LOC441461 miscRNA - - - - 20121230 -9606 441476 C9orf173 - - HGNC:37285|Ensembl:ENSG00000197768|HPRD:17408 9 9q34.3 chromosome 9 open reading frame 173 protein-coding C9orf173 chromosome 9 open reading frame 173 O uncharacterized protein C9orf173 20121230 -9606 441478 NRARP RP13-122B23.6 - HGNC:33843|Ensembl:ENSG00000198435|HPRD:17564|Vega:OTTHUMG00000156150 9 9q34.3 NOTCH-regulated ankyrin repeat protein protein-coding NRARP NOTCH-regulated ankyrin repeat protein O notch-regulated ankyrin repeat-containing protein 20121230 -9606 441481 GPX1P1 - GPXL1|GPXL2|GPXP1 HGNC:4560 X Xp22.2 glutathione peroxidase pseudogene 1 pseudo GPX1P1 glutathione peroxidase pseudogene 1 O - 20121230 -9606 441484 HAUS1P2 - - HGNC:43761 X Xp22.13 HAUS augmin-like complex, subunit 1 pseudogene 2 pseudo HAUS1P2 HAUS augmin-like complex, subunit 1 pseudogene 2 O - 20121230 -9606 441487 LOC441487 - - - X Xp21.3 methyltransferase like 1 pseudogene pseudo - - - - 20121230 -9606 441488 LOC441488 hCG_1982709 - - X Xp21.1 transcription factor Dp-1-like pseudogene pseudo - - - - 20121230 -9606 441490 FTH1P18 - FTHL18 HGNC:3988 X Xp21.1 ferritin, heavy polypeptide 1 pseudogene 18 protein-coding FTH1P18 ferritin, heavy polypeptide 1 pseudogene 18 O ferritin, heavy polypeptide-like 18 20121230 -9606 441493 LOC441493 - - - X Xp11.23 uncharacterized LOC441493 unknown - - - - 20121230 -9606 441495 CENPVP2 - - HGNC:43879 X Xp11.22 centromere protein V pseudogene 2 pseudo CENPVP2 centromere protein V pseudogene 2 O - 20121230 -9606 441501 FLJ46446 - - - X Xq13.1 uncharacterized LOC441501 miscRNA - - - - 20121230 -9606 441502 RPS26P11 RP11-366E13.1 RPS26L1|RPS26_22_1784|bA366E13.1 HGNC:31817 X Xq13.1 ribosomal protein S26 pseudogene 11 pseudo RPS26P11 ribosomal protein S26 pseudogene 11 O - 20121230 -9606 441505 LOC441505 - - - X Xq21.2 stress-induced-phosphoprotein 1 pseudogene pseudo - - - - 20121230 -9606 441509 GLRA4 RP5-1055C14.3 - HGNC:31715|Ensembl:ENSG00000188828|Vega:OTTHUMG00000022110 X Xq22.2 glycine receptor, alpha 4 protein-coding GLRA4 glycine receptor, alpha 4 O glycine receptor subunit alpha-4 20121230 -9606 441511 LOC441511 - - - X Xq23 mitofusin-1-like pseudo - - - - 20121230 -9606 441518 FAM127C RP4-809E13.1 CXX1c|MAR8B HGNC:33156|Ensembl:ENSG00000212747|Vega:OTTHUMG00000022464 X Xq26.3 family with sequence similarity 127, member C protein-coding FAM127C family with sequence similarity 127, member C O mammalian retrotransposon derived protein 8B|protein FAM127C 20121230 -9606 441519 CT45A3 RP13-36C9.3 CT45-3|CT45.3|RP13-36C9.1 HGNC:33268|MIM:300794|Ensembl:ENSG00000232417|HPRD:18653|Vega:OTTHUMG00000022491 X Xq26.3 cancer/testis antigen family 45, member A3 protein-coding CT45A3 cancer/testis antigen family 45, member A3 O cancer/testis antigen 45-3|cancer/testis antigen 45A3|cancer/testis antigen CT45-3|cancer/testis antigen family 45 member A3 20121230 -9606 441520 CT45A4 - CT45-4|CT45.4 HGNC:33269|MIM:300795|Ensembl:ENSG00000228836|HPRD:18654|Vega:OTTHUMG00000022489 X Xq26.3 cancer/testis antigen family 45, member A4 protein-coding CT45A4 cancer/testis antigen family 45, member A4 O cancer/testis antigen 45-4/6|cancer/testis antigen 45A4/45A6|cancer/testis antigen CT45-4|cancer/testis antigen family 45 member A4/A6 20121230 -9606 441521 CT45A5 RP13-36C9.6 CT45.5|CT455 HGNC:33270|MIM:300796|Ensembl:ENSG00000242284|HPRD:17573|Vega:OTTHUMG00000022494 X Xq26.3 cancer/testis antigen family 45, member A5 protein-coding CT45A5 cancer/testis antigen family 45, member A5 O cancer/testis antigen 45-5|cancer/testis antigen 45A5|cancer/testis antigen CT45-5|cancer/testis antigen family 45 member A5 20121230 -9606 441525 SPANXN4 - CT11.9 HGNC:33177|MIM:300667|Ensembl:ENSG00000189326|HPRD:18093|Vega:OTTHUMG00000022575 X Xq27.3 SPANX family, member N4 protein-coding SPANXN4 SPANX family, member N4 O cancer/testis antigen family 11, member 9|nuclear-associated protein SPAN-Xn4|sperm protein associated with the nucleus on the X chromosome N4 20121230 -9606 441528 LOC441528 - - - X Xp22.33 uncharacterized LOC441528 unknown - - - - 20121209 -9606 441531 PGAM4 - PGAM-B|PGAM1|PGAM3|dJ1000K24.1 HGNC:21731|MIM:300567|Ensembl:ENSG00000226784|Vega:OTTHUMG00000057865 X Xq13 phosphoglycerate mutase family member 4 protein-coding PGAM4 phosphoglycerate mutase family member 4 O phosphoglycerate mutase 4|phosphoglycerate mutase family 3|phosphoglycerate mutase processed protein|probable phosphoglycerate mutase 4 20121230 -9606 441533 RPL26P37 - RPL26_17_1822 HGNC:36004 Y Yp11.2 ribosomal protein L26 pseudogene 37 pseudo RPL26P37 ribosomal protein L26 pseudogene 37 O - 20121230 -9606 441543 TTTY6B - LINC00128|NCRNA00128|TTTY6|TTY6 HGNC:31887 Y Yq11.223 testis-specific transcript, Y-linked 6B (non-protein coding) miscRNA TTTY6B testis-specific transcript, Y-linked 6B (non-protein coding) O - 20121209 -9606 441548 BTBD7P1 - - HGNC:44875 10 10p13 BTB (POZ) domain containing 7 pseudogene 1 pseudo BTBD7P1 BTB (POZ) domain containing 7 pseudogene 1 O - 20121230 -9606 441549 CDNF - ARMETL1 HGNC:24913|MIM:611233|Ensembl:ENSG00000185267|Vega:OTTHUMG00000017713 10 10p13 cerebral dopamine neurotrophic factor protein-coding CDNF cerebral dopamine neurotrophic factor O ARMET-like protein 1|arginine-rich, mutated in early stage tumors-like 1|conserved dopamine neurotrophic factor 20121230 -9606 441550 RPS4XP11 - RPS4P11|RPS4X_2_1029 HGNC:37013 10 10p11.22 ribosomal protein S4X pseudogene 11 pseudo RPS4XP11 ribosomal protein S4X pseudogene 11 O - 20121230 -9606 441554 DUSPP - HVH4 HGNC:3077 10 10q11.22 dual specificity phosphatase pseudogene pseudo DUSPP dual specificity phosphatase pseudogene O - 20121209 -9606 441572 GAPDHP28 - - HGNC:37780 10 10q23.32 glyceraldehyde 3 phosphate dehydrogenase pseudogene 28 pseudo GAPDHP28 glyceraldehyde 3 phosphate dehydrogenase pseudogene 28 O - 20121230 -9606 441581 FRG2B - - HGNC:33518|Ensembl:ENSG00000225899|Vega:OTTHUMG00000019328 10 10q26.3 FSHD region gene 2 family, member B protein-coding FRG2B FSHD region gene 2 family, member B O FSHD region gene 2 protein family member B|HSA10-FRG2|protein FRG2-like-1 20121230 -9606 441584 SSU72P4 - - HGNC:43623 11 11p15.4 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 4 pseudo SSU72P4 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 4 O - 20121230 -9606 441592 LOC441592 - - - 11 11p15.1 MAS-related GPR, member X1 pseudogene pseudo - - - - 20121230 -9606 441601 LOC441601 - - - 11 11p11.12 septin 7 pseudogene pseudo - - - - 20121230 -9606 441608 OR5B3 - OR11-239|OR5B13|OST129 HGNC:8324|Ensembl:ENSG00000172769|HPRD:15038|Vega:OTTHUMG00000167516 11 11q12.1 olfactory receptor, family 5, subfamily B, member 3 protein-coding OR5B3 olfactory receptor, family 5, subfamily B, member 3 O olfactory receptor 5B13|olfactory receptor 5B3|olfactory receptor OR11-239|olfactory receptor, family 5, subfamily B, member 13 20121230 -9606 441609 YWHAZP9 - - HGNC:39030 11 11q12.1 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 9 pseudo YWHAZP9 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 9 O - 20121230 -9606 441623 FTLP7 - - HGNC:37955 11 11q23.3 ferritin, light polypeptide pseudogene 7 pseudo FTLP7 ferritin, light polypeptide pseudogene 7 O - 20121230 -9606 441630 BRI3P2 - - HGNC:32543 12 12p12.1 brain protein I3 pseudogene 2 pseudo BRI3P2 brain protein I3 pseudogene 2 O - 20121230 -9606 441631 TSPAN11 UNQ1971 VSSW1971 HGNC:30795|Ensembl:ENSG00000110900|Vega:OTTHUMG00000168484 12 12p11.21 tetraspanin 11 protein-coding TSPAN11 tetraspanin 11 O tetraspanin-11|tspan-11 20121230 -9606 441632 RPL13AP22 - RPL13A_9_1223 HGNC:35825 12 12p11.21 ribosomal protein L13a pseudogene 22 pseudo RPL13AP22 ribosomal protein L13a pseudogene 22 O - 20121230 -9606 441639 OR9K2 - OR12-2 HGNC:15339|Ensembl:ENSG00000170605|HPRD:15090|Vega:OTTHUMG00000169827 12 12q13.2 olfactory receptor, family 9, subfamily K, member 2 protein-coding OR9K2 olfactory receptor, family 9, subfamily K, member 2 O olfactory receptor 9K2|olfactory receptor OR12-2 20121230 -9606 441641 RPL13AP23 - RPL13A_10_1240 HGNC:36498 12 12q13.3 ribosomal protein L13a pseudogene 23 pseudo RPL13AP23 ribosomal protein L13a pseudogene 23 O - 20121230 -9606 441642 RPL7AP9 - RPL7AP59|RPL7A_24_1258|rpL7a HGNC:32398 12 12q21.2 ribosomal protein L7a pseudogene 9 pseudo RPL7AP9 ribosomal protein L7a pseudogene 9 O - 20121230 -9606 441644 LOC441644 - - - 12 12q22 REST corepressor 2 pseudogene pseudo - - - - 20121230 -9606 441654 SMPD4P2 RP11-408E5.3 - HGNC:39674 13 13q12.11 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) pseudogene 2 pseudo SMPD4P2 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) pseudogene 2 O - 20121230 -9606 441662 TET1P1 - CXXC6P1 HGNC:33586 13 13q31.2 tet methylcytosine dioxygenase 1 pseudogene 1 pseudo TET1P1 tet methylcytosine dioxygenase 1 pseudogene 1 O - 20121230 -9606 441666 LOC441666 - - - 10 10q11.21 zinc finger protein 91 pseudogene pseudo - - - - 20121230 -9606 441669 OR4Q3 - C14orf13|HSA6|OR14-3|OR4Q4|c14_5008 HGNC:15426|HPRD:17732 14 14q11.2 olfactory receptor, family 4, subfamily Q, member 3 protein-coding OR4Q3 olfactory receptor, family 4, subfamily Q, member 3 O olfactory receptor 4Q3|olfactory receptor 4Q4|olfactory receptor OR14-3|olfactory receptor, family 4, subfamily Q, member 4 20121230 -9606 441670 OR4M1 - OR14-7 HGNC:14735|Ensembl:ENSG00000176299|HPRD:14983|Vega:OTTHUMG00000170599 14 14q11.2 olfactory receptor, family 4, subfamily M, member 1 protein-coding OR4M1 olfactory receptor, family 4, subfamily M, member 1 O olfactory receptor 4M1|olfactory receptor OR14-7 20121230 -9606 441687 TEX21P - - HGNC:35455 14 14q23.3 testis expressed 21, pseudogene pseudo TEX21P testis expressed 21, pseudogene O - 20121230 -9606 441711 LOC441711 - - - 15 15q11.2 RING finger protein 145-like pseudo - - - - 20121230 -9606 441722 LOC441722 - - - 15 15q14 U2 small nuclear RNA auxiliary factor 1-like 4 pseudogene pseudo - - - - 20121230 -9606 441726 RPL28P4 - RPL28_1_1435 HGNC:36618 15 15q21.3 ribosomal protein L28 pseudogene 4 pseudo RPL28P4 ribosomal protein L28 pseudogene 4 O - 20121230 -9606 441727 RPL36AP45 - RPL36A_20_1453 HGNC:36032 15 15q24.2 ribosomal protein L36a pseudogene 45 pseudo RPL36AP45 ribosomal protein L36a pseudogene 45 O - 20121230 -9606 441728 LOC441728 - - - 15 15q24.2 golgin-like unknown - - - - 20121230 -9606 441733 PRKXP1 - - HGNC:9442 15 15q26.3 protein kinase, X-linked, pseudogene 1 pseudo PRKXP1 protein kinase, X-linked, pseudogene 1 O - 20121230 -9606 441736 LOC441736 - - - 15 15q26.3 golgin A8 family, member A pseudogene pseudo - - - - 20121230 -9606 441744 RPS16P7 - RPS16_4_1467 HGNC:36505 16 16p13.3 ribosomal protein S16 pseudogene 7 pseudo RPS16P7 ribosomal protein S16 pseudogene 7 O - 20121230 -9606 441750 LOC441750 - - - 16 16p12.3 chromosome 12 open reading frame 49 pseudogene pseudo - - - - 20121230 -9606 441768 LOC441768 - - - 16 16q11.2 RAB31, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 441771 MT1CP - - HGNC:7395 16 16q12.2 metallothionein 1C, pseudogene pseudo MT1CP metallothionein 1C, pseudogene O - 20121230 -9606 441774 RPS4Y1P1 - RPS4Y_1_1499 HGNC:36893 16 16q23.1 ribosomal protein S4Y pseudogene 1 pseudo RPS4Y1P1 ribosomal protein S4Y pseudogene 1 O - 20121230 -9606 441775 RPL18P13 - RPL18_5_1500 HGNC:35599 16 16q23.1 ribosomal protein L18 pseudogene 13 pseudo RPL18P13 ribosomal protein L18 pseudogene 13 O - 20121230 -9606 441781 RPL23AP76 - RPL23A_31_1517 HGNC:36555 17 17p12 ribosomal protein L23a pseudogene 76 pseudo RPL23AP76 ribosomal protein L23a pseudogene 76 O - 20121230 -9606 441783 LOC441783 - - - 17 17p11.2 POTE ankyrin domain family, member I pseudogene pseudo - - - - 20121230 -9606 441784 LOC441784 - - - 17 17p11.2 TBC1 domain family, member 25 pseudogene pseudo - - - - 20121230 -9606 441795 HMGB3P27 - - HGNC:39319 17 17q21.2 high mobility group box 3 pseudogene 27 pseudo HMGB3P27 high mobility group box 3 pseudogene 27 O - 20121230 -9606 441806 LOC441806 - - - 18 18p11.32 proteasome (prosome, macropain) 26S subunit, non-ATPase, 8 pseudogene pseudo - - - - 20121230 -9606 441818 WBP11P1 - HsT3017 HGNC:26250 18 18q12.1 WW domain binding protein 11 pseudogene 1 pseudo WBP11P1 WW domain binding protein 11 pseudogene 1 O - 20121230 -9606 441843 ZNF209P - ZNF209 HGNC:13000 19 19p12 zinc finger protein 209, pseudogene pseudo ZNF209P zinc finger protein 209, pseudogene O - 20121230 -9606 441849 MSRB1P1 - - HGNC:43985 19 19q13.2 methionine sulfoxide reductase B1 pseudogene 1 pseudo MSRB1P1 methionine sulfoxide reductase B1 pseudogene 1 O - 20121230 -9606 441862 LOC441862 - - - 19 19q13.41 DUT pseudogene pseudo - - - - 20121230 -9606 441864 TARM1 - OLT-2 HGNC:37250|Ensembl:ENSG00000248385 19 19q13.42 T cell-interacting, activating receptor on myeloid cells 1 protein-coding TARM1 T cell-interacting, activating receptor on myeloid cells 1 O OSCAR-like transcript-2 protein|T-cell-interacting, activating receptor on myeloid cells protein 1 20121230 -9606 441869 ANKRD65 hCG_20426 - HGNC:42950|Ensembl:ENSG00000235098|Vega:OTTHUMG00000002911 1 1p36.33 ankyrin repeat domain 65 protein-coding ANKRD65 ankyrin repeat domain 65 O ankyrin repeat domain-containing protein 65 20121230 -9606 441870 LOC441870 - - - 1 1p36.21 PRAME family member 10-like pseudo - - - - 20121230 -9606 441871 PRAMEF7 - - HGNC:28415|Ensembl:ENSG00000204510|HPRD:17409|Vega:OTTHUMG00000001982 1 1p36.21 PRAME family member 7 protein-coding PRAMEF7 PRAME family member 7 O - 20121230 -9606 441873 PRAMEF25 - - - 1 1p36.21 PRAME family member 25-like protein-coding - - - Putative PRAME family member 25 20121216 -9606 441876 RPS16P1 - RPS16_1_14 HGNC:36462 1 1p36.21 ribosomal protein S16 pseudogene 1 pseudo RPS16P1 ribosomal protein S16 pseudogene 1 O - 20121230 -9606 441878 RPS4XP4 - RPS4P4|RPS4X_1_17 HGNC:36545 1 1p36.12 ribosomal protein S4X pseudogene 4 pseudo RPS4XP4 ribosomal protein S4X pseudogene 4 O - 20121230 -9606 441880 LOC441880 - - - 1 1p35.2 eukaryotic translation elongation factor 1 alpha 2 pseudogene pseudo - - - - 20121230 -9606 441884 CALR4P - - HGNC:35456 1 1p32.3 calreticulin 4, pseudogene pseudo CALR4P calreticulin 4, pseudogene O - 20121230 -9606 441887 LOC441887 - - - 1 1p31.3 DnaJ (Hsp40) homolog, subfamily C, member 7 pseudogene pseudo - - - - 20121230 -9606 441891 WDR82P2 - WDR82C HGNC:33513 1 1p22.2 WD repeat domain 82 pseudogene 2 pseudo WDR82P2 WD repeat domain 82 pseudogene 2 O - 20121230 -9606 441893 GAPDHP29 - - HGNC:37781 1 1p21.3 glyceraldehyde 3 phosphate dehydrogenase pseudogene 29 pseudo GAPDHP29 glyceraldehyde 3 phosphate dehydrogenase pseudogene 29 O - 20121230 -9606 441896 RPL7P8 - RPL7_2_84 HGNC:35914 1 1p13.3 ribosomal protein L7 pseudogene 8 pseudo RPL7P8 ribosomal protein L7 pseudogene 8 O - 20121230 -9606 441897 PGCP1 - - HGNC:39503 1 1p13.2 progastricsin (pepsinogen C) pseudogene 1 pseudo PGCP1 progastricsin (pepsinogen C) pseudogene 1 O - 20121230 -9606 441898 RPS15AP9 hCG_1642034 RPS15A_2_91 HGNC:36164 1 1p13.1 ribosomal protein S15a pseudogene 9 pseudo RPS15AP9 ribosomal protein S15a pseudogene 9 O - 20121230 -9606 441899 VPS25P1 - - HGNC:44250 1 1p12 vacuolar protein sorting 25 homolog (S. cerevisiae) pseudogene 1 pseudo VPS25P1 vacuolar protein sorting 25 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 441900 HSD3BP3 - - HGNC:5221 1 1p13.1 hydroxy-delta-5-steroid dehydrogenase, 3 beta, pseudogene 3 pseudo HSD3BP3 hydroxy-delta-5-steroid dehydrogenase, 3 beta, pseudogene 3 O - 20121230 -9606 441904 LOC441904 - - - 1 1q21.1 autoantigen La-like pseudo - - - - 20121230 -9606 441907 LOC441907 - - - 1 1q21.2 ribosomal protein L6 pseudogene pseudo - - - - 20121230 -9606 441908 NBPF18P RP11-139D23.6 - HGNC:31998 1 1q21.3 neuroblastoma breakpoint family, member 18, pseudogene pseudo NBPF18P neuroblastoma breakpoint family, member 18, pseudogene O - 20121230 -9606 441911 OR10J3 RP11-550P17.4 OR1-25|OR10J3P HGNC:14992|Ensembl:ENSG00000196266|HPRD:17672|Vega:OTTHUMG00000037233 1 1q23.2 olfactory receptor, family 10, subfamily J, member 3 protein-coding OR10J3 olfactory receptor, family 10, subfamily J, member 3 O olfactory receptor 10J3|olfactory receptor OR1-25 pseudogene|olfactory receptor, family 10, subfamily J, member 3 pseudogene 20121230 -9606 441914 LOC441914 - - - 1 1q24.2 dynactin 5 (p25) pseudogene pseudo - - - - 20121230 -9606 441915 SLC25A38P1 - - HGNC:43858 1 1q24.3 solute carrier family 25, member 38 pseudogene 1 pseudo SLC25A38P1 solute carrier family 25, member 38 pseudogene 1 O - 20121230 -9606 441925 BECN1P1 - BECN1L1 HGNC:38606 1 1q43 beclin 1, autophagy related, pseudogene 1 pseudo BECN1P1 beclin 1, autophagy related, pseudogene 1 O - 20121230 -9606 441931 VN1R17P - GPCR HGNC:37331 1 1q44 vomeronasal 1 receptor 17 pseudogene pseudo VN1R17P vomeronasal 1 receptor 17 pseudogene O - 20121230 -9606 441932 OR2W5 - OR2W5P|OST722 HGNC:15424|HPRD:17715 1 1q44 olfactory receptor, family 2, subfamily W, member 5 protein-coding OR2W5 olfactory receptor, family 2, subfamily W, member 5 O olfactory receptor 2W5|olfactory receptor, family 2, subfamily W, member 5 pseudogene|putative olfactory receptor 2W5 20121230 -9606 441933 OR13G1 - OR1-37 HGNC:14999|MIM:611677|Ensembl:ENSG00000197437|HPRD:17680|Vega:OTTHUMG00000040212 1 1q44 olfactory receptor, family 13, subfamily G, member 1 protein-coding OR13G1 olfactory receptor, family 13, subfamily G, member 1 O olfactory receptor 13G1|olfactory receptor OR1-37 20121230 -9606 441940 LIN28AP3 - - HGNC:38057 20 20p12.2 lin-28 homolog A (C. elegans) pseudogene 3 pseudo LIN28AP3 lin-28 homolog A (C. elegans) pseudogene 3 O - 20121230 -9606 441951 ZNFX1-AS1 - C20orf199|HSUP1|HSUP2|NCRNA00275|ZFAS1 HGNC:33101 20 20q13.13 ZNFX1 antisense RNA 1 miscRNA ZNFX1-AS1 ZNFX1 antisense RNA 1 O - 20121230 -9606 441956 LOC441956 - - HPRD:18467 21 21q11.2 uncharacterized LOC441956 unknown - - - - 20121230 -9606 441957 FEM1AP1 - FEM1DP HGNC:17219 21 21q11.2 fem-1 homolog a (C. elegans) pseudogene 1 pseudo FEM1AP1 fem-1 homolog a (C. elegans) pseudogene 1 O - 20121230 -9606 441958 GXYLT1P2 - - HGNC:39677 21 21q11.2 glucoside xylosyltransferase 1 pseudogene 2 pseudo GXYLT1P2 glucoside xylosyltransferase 1 pseudogene 2 O - 20121230 -9606 441996 LOC441996 - - - 22 22q12.3 aconitase 2, mitochondrial pseudogene pseudo - - - - 20121230 -9606 442006 LOC442006 - - - 2 2p25.2 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 442013 LDHAP3 - LDHAL3 HGNC:6538 2 2p21 lactate dehydrogenase A pseudogene 3 pseudo LDHAP3 lactate dehydrogenase A pseudogene 3 O - 20121230 -9606 442017 LOC442017 - - - 2 2p16.1 interferon induced transmembrane protein 3 pseudogene pseudo - - - - 20121230 -9606 442028 LOC442028 - - - 2 2q11.1 uncharacterized LOC442028 miscRNA - - - - 20121230 -9606 442038 SULT1C3 - ST1C3 HGNC:33543|Ensembl:ENSG00000196228|HPRD:18131|Vega:OTTHUMG00000153227 2 2q12.3 sulfotransferase family, cytosolic, 1C, member 3 protein-coding SULT1C3 sulfotransferase family, cytosolic, 1C, member 3 O sulfotransferase 1C3 20121230 -9606 442041 LOC442041 - - - 2 2q13 zinc finger protein 532 pseudogene pseudo - - - - 20121230 -9606 442042 LOC442042 - - - 2 2q13 polymerase (RNA) II (DNA directed) polypeptide D pseudogene pseudo - - - - 20121230 -9606 442058 LOC442058 - - - 2 2q31.1 replication protein A3, 14kDa pseudogene pseudo - - - - 20121230 -9606 442060 LOC442060 - - - 2 2q31.3 Sin3A-associated protein, 18kDa pseudogene pseudo - - - - 20121230 -9606 442063 LOC442063 - - - 2 2q33.1 family with sequence similarity 64, member A pseudogene pseudo - - - - 20121230 -9606 442064 LOC442064 - - - 2 2q33.2 phosphatidylinositol glycan anchor biosynthesis, class Y pseudogene pseudo - - - - 20121230 -9606 442075 LOC442075 - - - 3 3p25.3 uncharacterized LOC442075 pseudo - - - - 20121230 -9606 442078 KRT8P18 - - HGNC:33370 3 3p22.3 keratin 8 pseudogene 18 pseudo KRT8P18 keratin 8 pseudogene 18 O - 20121230 -9606 442083 HSP90AB5P - HSP90BE HGNC:32539 3 3p13 heat shock protein 90kDa alpha (cytosolic), class B member 5, pseudogene pseudo HSP90AB5P heat shock protein 90kDa alpha (cytosolic), class B member 5, pseudogene O - 20121230 -9606 442086 RPL10P7 - RPL10_2_395 HGNC:35974 3 3q13.33 ribosomal protein L10 pseudogene 7 pseudo RPL10P7 ribosomal protein L10 pseudogene 7 O - 20121230 -9606 442087 LOC442087 - - - 3 3q13.33 prostate tumor overexpressed 1 pseudogene pseudo - - - - 20121230 -9606 442092 ARVP6125 UNQ6125 - - 3 3q22.1 uncharacterized LOC442092 unknown - - - - 20121230 -9606 442097 LOC442097 - - - 3 3q26.31 actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 442098 LOC442098 - - - 3 3q26.33 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase pseudogene pseudo - - - - 20121230 -9606 442101 OR7E162P - OR7E77|OR7E77P|OST060 HGNC:28374 4 4p16.3 olfactory receptor, family 7, subfamily E, member 162 pseudogene pseudo OR7E162P olfactory receptor, family 7, subfamily E, member 162 pseudogene O - 20121230 -9606 442104 OR7E86P - - HGNC:14694 4 4p16.1 olfactory receptor, family 7, subfamily E, member 86 pseudogene pseudo OR7E86P olfactory receptor, family 7, subfamily E, member 86 pseudogene O - 20121230 -9606 442105 OR7E85P - OR7E118P|OR7E88P HGNC:14692 4 4p16.1 olfactory receptor, family 7, subfamily E, member 85 pseudogene pseudo OR7E85P olfactory receptor, family 7, subfamily E, member 85 pseudogene O - 20121230 -9606 442108 RPL22P13 - RPL22_7_478 HGNC:36352 4 4q12 ribosomal protein L22 pseudogene 13 pseudo RPL22P13 ribosomal protein L22 pseudogene 13 O - 20121230 -9606 442112 SERBP1P5 - - HGNC:44632 4 4q21.21 SERPINE1 mRNA binding protein 1 pseudogene 5 pseudo SERBP1P5 SERPINE1 mRNA binding protein 1 pseudogene 5 O - 20121230 -9606 442113 LOC442113 - - - 4 4q21.22 protein tyrosine phosphatase, non-receptor type 11 pseudogene pseudo - - - - 20121230 -9606 442114 KRT19P3 - - HGNC:33424 4 4q25 keratin 19 pseudogene 3 pseudo KRT19P3 keratin 19 pseudogene 3 O - 20121230 -9606 442117 GALNTL6 - GALNT17 HGNC:33844|Ensembl:ENSG00000174473|Vega:OTTHUMG00000160807 4 4q34.1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 6 protein-coding GALNTL6 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 6 O GaNTase 17|GalNAc transferase 17|UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferase 17|UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 20|galNAc-T17|polypeptide GalNAc transferase 17|polypeptide N-acetylgalactosaminyltransferase-like 6|pp-GaNTase 17|protein-UDP acetylgalactosaminyltransferase 17|putative polypeptide N-acetylgalactosaminyltransferase 17 20121230 -9606 442122 LOC442122 - - - 4 4q35.1 uncharacterized LOC442122 unknown - - - - 20120511 -9606 442131 LOC442131 - - - 5 5p15.32 asparagine-linked glycosylation 3, alpha-1,3- mannosyltransferase homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 442132 LOC442132 - - - 5 5p15.31 golgin A6 family-like 1 pseudogene pseudo - - - - 20121230 -9606 442142 SOX30P1 - - HGNC:35122 5 5q33.3 SRY (sex determining region Y)-box 30 pseudogene 1 pseudo SOX30P1 SRY (sex determining region Y)-box 30 pseudogene 1 O - 20121230 -9606 442153 PSMC1P11 - - HGNC:39786 6 6p25.1 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 11 pseudo PSMC1P11 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 11 O - 20121230 -9606 442155 LOC442155 - - - 6 6p25.1 transcription factor B2, mitochondrial pseudogene pseudo - - - - 20121230 -9606 442156 PKMP5 - - HGNC:44247 6 6p25.1 pyruvate kinase, muscle pseudogene 5 pseudo PKMP5 pyruvate kinase, muscle pseudogene 5 O - 20121230 -9606 442157 LOC442157 - - - 6 6p24.3 heterogeneous nuclear ribonucleoprotein L pseudogene pseudo - - - - 20121230 -9606 442158 RPS26P29 RP11-288G3.3 RPS26_6_653 HGNC:36456 6 6p24.3 ribosomal protein S26 pseudogene 29 pseudo RPS26P29 ribosomal protein S26 pseudogene 29 O - 20121230 -9606 442160 RPL21P62 - RPL21_23_656 HGNC:36843 6 6p24.3 ribosomal protein L21 pseudogene 62 pseudo RPL21P62 ribosomal protein L21 pseudogene 62 O - 20121230 -9606 442161 LOC442161 - - - 6 6p24.3 ribosomal protein L7-like 1 pseudogene pseudo - - - - 20121230 -9606 442162 RPS4XP7 - RPS4P7|RPS4X_3_659 HGNC:36885 6 6p23 ribosomal protein S4X pseudogene 7 pseudo RPS4XP7 ribosomal protein S4X pseudogene 7 O - 20121230 -9606 442164 DDX18P3 RP11-528A10.2 - HGNC:33966 6 6p22.3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 3 pseudo DDX18P3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 3 O - 20121230 -9606 442167 ASS1P1 - ASSP1 HGNC:759 6 6p22.3 argininosuccinate synthetase 1 pseudogene 1 pseudo ASS1P1 argininosuccinate synthetase 1 pseudogene 1 O - 20121230 -9606 442171 RPL10P2 - RPL10_2_670|RPL10p|bA209A2.1 HGNC:13975 6 6p22.1 ribosomal protein L10 pseudogene 2 pseudo RPL10P2 ribosomal protein L10 pseudogene 2 O - 20121230 -9606 442172 LOC442172 - - - 6 6p22.1 cell division cycle associated 7 pseudogene pseudo - - - - 20121230 -9606 442175 RPLP2P1 - RPLP2_1_671|dJ408B20.3 HGNC:18724 6 6p22.1 ribosomal protein, large P2, pseudogene 1 pseudo RPLP2P1 ribosomal protein, large P2, pseudogene 1 O - 20121230 -9606 442179 OR1F12 - OR1F12P|OR1F12Q|OR6-12|hs6M1-35P HGNC:13964 6 6p21.3 olfactory receptor, family 1, subfamily F, member 12 pseudo OR1F12 olfactory receptor, family 1, subfamily F, member 12 O - 20121230 -9606 442181 RPSAP2 - LAMR1P2|RPSA_15_672|bA60E24.1 HGNC:18771 6 6p22.1 ribosomal protein SA pseudogene 2 pseudo RPSAP2 ribosomal protein SA pseudogene 2 O - 20121230 -9606 442183 OR2P1P - hs6M1-26 HGNC:8272 6 6p22.1 olfactory receptor, family 2, subfamily P, member 1 pseudogene pseudo OR2P1P olfactory receptor, family 2, subfamily P, member 1 pseudogene O - 20121230 -9606 442184 OR2B3 DAAP-334J16.3 6M1-1|OR2B3P|OR6-14|OR6-4 HGNC:8238|Ensembl:ENSG00000204703|HPRD:14938|Vega:OTTHUMG00000031226 6 6p22.1 olfactory receptor, family 2, subfamily B, member 3 protein-coding OR2B3 olfactory receptor, family 2, subfamily B, member 3 O hs6M1-1|olfactory receptor 6-4|olfactory receptor OR6-14|putative olfactory receptor 2B3 20121230 -9606 442185 OR2J1 XXbac-BPG171B11.2 6M1-4P|OR2J1P|OR6-15|OR6-5|dJ80I19.2|hs6M1-4 HGNC:8259 6 6p22.1 olfactory receptor, family 2, subfamily J, member 1 (gene/pseudogene) pseudo OR2J1 olfactory receptor, family 2, subfamily J, member 1 (gene/pseudogene) O - 20121230 -9606 442186 OR2J3 DASS-357K17.2 6M1-3|HS6M1-3|OR6-16|OR6-6|OR6.3.6|ORL671 HGNC:8261|Ensembl:ENSG00000204701|HPRD:14941|Vega:OTTHUMG00000031092 6 6p22.1 olfactory receptor, family 2, subfamily J, member 3 protein-coding OR2J3 olfactory receptor, family 2, subfamily J, member 3 O olfactory receptor 2J3|olfactory receptor 6-6|olfactory receptor OR6-16 20121230 -9606 442188 OR2J4P - OR6-20|OR6-9|dJ80I19.5|hs6M1-5 HGNC:8262 6 6p22.1 olfactory receptor, family 2, subfamily J, member 4 pseudogene pseudo OR2J4P olfactory receptor, family 2, subfamily J, member 4 pseudogene O - 20121230 -9606 442189 OR2H4P - 6M1-7P|OR2H4|OR6-21|OR6-3|dJ80I19.6|hs6M1-7 HGNC:8255 6 6p22.1 olfactory receptor, family 2, subfamily H, member 4 pseudogene pseudo OR2H4P olfactory receptor, family 2, subfamily H, member 4 pseudogene O - 20121230 -9606 442190 OR2B4P - hs6M1-22 HGNC:8239 6 6p22.1 olfactory receptor, family 2, subfamily B, member 4 pseudogene pseudo OR2B4P olfactory receptor, family 2, subfamily B, member 4 pseudogene O - 20121230 -9606 442191 OR14J1 DAMC-143C14.2 OR5U1|OR6-25|bA150A6.4|hs6M1-28 HGNC:13971|Ensembl:ENSG00000204695|HPRD:15053|Vega:OTTHUMG00000031184 6 6p22.1 olfactory receptor, family 14, subfamily J, member 1 protein-coding OR14J1 olfactory receptor, family 14, subfamily J, member 1 O olfactory receptor 14J1|olfactory receptor 5U1|olfactory receptor OR6-25|olfactory receptor, family 5, subfamily U member 1|olfactory receptor, family 5, subfamily U, member 1 20121230 -9606 442192 DDX6P1 - DDX6-Lp|DDX6P|bA150A6.3 HGNC:13948 6 6p22.1 DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene 1 pseudo DDX6P1 DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene 1 O - 20121230 -9606 442194 OR10C1 DAAP-34I1.4 OR10C1P|OR10C2|OR6-31|hs6M1-17 HGNC:8165|Ensembl:ENSG00000206474|HPRD:14886|Vega:OTTHUMG00000031207 6 6p22.1 olfactory receptor, family 10, subfamily C, member 1 protein-coding OR10C1 olfactory receptor, family 10, subfamily C, member 1 O olfactory receptor 10C1|olfactory receptor 10C2|olfactory receptor OR6-31|olfactory receptor, family 10, subfamily C, member 2|seven transmembrane helix receptor 20121230 -9606 442195 RPS17P1 XXbac-BPG13B8.8 RPS17_3_674|RPS17p|dJ994E9.1 HGNC:13982 6 6p22.1 ribosomal protein S17 pseudogene 1 pseudo RPS17P1 ribosomal protein S17 pseudogene 1 O - 20121230 -9606 442197 OR2I1P - HS6M1-14|OR2I1|OR2I2|OR2I3P|OR2I4P|OR2I5P|OR2I6|OR2I7P|OR2I8P|OR2I9P|OR6-1|OR6-34 HGNC:8258 6 6p22.1 olfactory receptor, family 2, subfamily I, member 1 pseudogene pseudo OR2I1P olfactory receptor, family 2, subfamily I, member 1 pseudogene O - 20121230 -9606 442204 MYL8P XXbac-BPG185D15.2 BING3 HGNC:7589 6 6p21.32 myosin, light chain 8, pseudogene pseudo MYL8P myosin, light chain 8, pseudogene O - 20121230 -9606 442205 KRT18P9 - bA513I15.2 HGNC:17767 6 6p21.31 keratin 18 pseudogene 9 pseudo KRT18P9 keratin 18 pseudogene 9 O - 20121230 -9606 442206 GPR166P - GPCR|PGR9 HGNC:23626 6 6p21.2 G protein-coupled receptor 166 pseudogene pseudo GPR166P G protein-coupled receptor 166 pseudogene O - 20121230 -9606 442210 LOC442210 - - - 6 6p21.2 tubulin beta chain-like pseudo - - - - 20121230 -9606 442211 ATP6V0CP3 - - HGNC:40001 6 6p21.1 ATPase, H+ transporting, lysosomal 16kDa, V0 subunit c pseudogene 3 pseudo ATP6V0CP3 ATPase, H+ transporting, lysosomal 16kDa, V0 subunit c pseudogene 3 O - 20121230 -9606 442213 PTCHD4 RP3-402H5.2 C6orf138|dJ402H5.2 HGNC:21345|Ensembl:ENSG00000244694|HPRD:18470|Vega:OTTHUMG00000150404 6 6p12.3 patched domain containing 4 protein-coding PTCHD4 patched domain containing 4 O patched domain-containing protein 4|patched domain-containing protein C6orf138 20121230 -9606 442215 LOC442215 - - - 6 6p12.3 eukaryotic translation elongation factor 1 alpha 2 pseudogene pseudo - - - - 20121230 -9606 442216 RPS17P5 RP4-753D5.2 RPS17L4|RPS17_4_700|dJ753D5.2 HGNC:21352 6 6p12.3 ribosomal protein S17 pseudogene 5 pseudo RPS17P5 ribosomal protein S17 pseudogene 5 O - 20121230 -9606 442217 RPL31P28 - RPL31_12_703 HGNC:36253 6 6p12.1 ribosomal protein L31 pseudogene 28 pseudo RPL31P28 ribosomal protein L31 pseudogene 28 O - 20121230 -9606 442218 RPL31P33 - RPL31_13_704 HGNC:36886 6 6p12.1 ribosomal protein L31 pseudogene 33 pseudo RPL31P33 ribosomal protein L31 pseudogene 33 O - 20121230 -9606 442221 RCC2P7 - - HGNC:42383 6 6p12.1 regulator of chromosome condensation 2 pseudogene 7 pseudo RCC2P7 regulator of chromosome condensation 2 pseudogene 7 O - 20121230 -9606 442225 LOC442225 RP11-184C23.1 - - 6 6q12 keratin, type II pseudogene pseudo - - - - 20121230 -9606 442227 EEF1B2P5 - - HGNC:32476 6 6q12 eukaryotic translation elongation factor 1 beta 2 pseudogene 5 pseudo EEF1B2P5 eukaryotic translation elongation factor 1 beta 2 pseudogene 5 O - 20121230 -9606 442229 SLC25A51P1 - MCART3P|bA707M13.1 HGNC:23325 6 6q12 solute carrier family 25, member 51 pseudogene 1 pseudo SLC25A51P1 solute carrier family 25, member 51 pseudogene 1 O - 20121230 -9606 442231 GAPDHP63 RP3-357D13.1 GAPDHL8|GAPDL8 HGNC:4157 6 6q14.1 glyceraldehyde 3 phosphate dehydrogenase pseudogene 63 pseudo GAPDHP63 glyceraldehyde 3 phosphate dehydrogenase pseudogene 63 O - 20121230 -9606 442232 RPL17P25 - RPL17_6_718 HGNC:36844 6 6q14.1 ribosomal protein L17 pseudogene 25 pseudo RPL17P25 ribosomal protein L17 pseudogene 25 O - 20121230 -9606 442233 SMARCE1P2 RP3-526L9.2 - HGNC:39732 6 6q14.3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 2 pseudo SMARCE1P2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 2 O - 20121230 -9606 442234 RCN1P1 - - HGNC:39205 6 6q14.3 reticulocalbin 1, EF-hand calcium binding domain pseudogene 1 pseudo RCN1P1 reticulocalbin 1, EF-hand calcium binding domain pseudogene 1 O - 20121230 -9606 442236 KRT18P50 - - HGNC:33420 6 6q16.1 keratin 18 pseudogene 50 pseudo KRT18P50 keratin 18 pseudogene 50 O - 20121230 -9606 442237 RPS7P8 - RPS7_4_725 HGNC:35710 6 6q16.1 ribosomal protein S7 pseudogene 8 pseudo RPS7P8 ribosomal protein S7 pseudogene 8 O - 20121230 -9606 442239 PRDX2P4 - - HGNC:44969 6 6q16.2 peroxiredoxin 2 pseudogene 4 pseudo PRDX2P4 peroxiredoxin 2 pseudogene 4 O - 20121230 -9606 442240 ZNF259P1 - 354J5|ZNF259P HGNC:13052 6 6q21 zinc finger protein 259 pseudogene 1 pseudo ZNF259P1 zinc finger protein 259 pseudogene 1 O - 20121230 -9606 442242 RPL7P28 - RPL7_12_736 HGNC:35899 6 6q21 ribosomal protein L7 pseudogene 28 pseudo RPL7P28 ribosomal protein L7 pseudogene 28 O - 20121230 -9606 442244 LOC442244 - - - 6 6q21 PDGFA associated protein 1 pseudogene pseudo - - - - 20121230 -9606 442245 GSTM2P1 - - HGNC:38009 6 6q21 glutathione S-transferase mu 2 (muscle) pseudogene 1 pseudo GSTM2P1 glutathione S-transferase mu 2 (muscle) pseudogene 1 O - 20121230 -9606 442247 RFPL4B - RNF211 HGNC:33264|Ensembl:ENSG00000251258|HPRD:18472|Vega:OTTHUMG00000015390 6 6q21 ret finger protein-like 4B protein-coding RFPL4B ret finger protein-like 4B O RING finger protein 211 20121230 -9606 442249 LOC442249 - - - 6 6q21 keratin 18 pseudogene pseudo - - - - 20121230 -9606 442252 KRT18P22 - - HGNC:33390 6 6q22.1 keratin 18 pseudogene 22 pseudo KRT18P22 keratin 18 pseudogene 22 O - 20121230 -9606 442253 NEPNP - NEPN|NPN HGNC:33184 6 6q22.1 nephrocan, pseudogene pseudo NEPNP nephrocan, pseudogene O - 20121230 -9606 442255 SLC25A5P7 RP11-129H15.2 ANTP7 HGNC:513 6 6q22.31 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 7 pseudo SLC25A5P7 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 7 O - 20121230 -9606 442256 PPP1R14BP5 - - HGNC:16332 6 6q22.32 protein phosphatase 1, regulatory (inhibitor) subunit 14B pseudogene 5 pseudo PPP1R14BP5 protein phosphatase 1, regulatory (inhibitor) subunit 14B pseudogene 5 O - 20121230 -9606 442257 RPS4XP9 - RPS4P9|RPS4X_4_749 HGNC:35792 6 6q22.32 ribosomal protein S4X pseudogene 9 pseudo RPS4XP9 ribosomal protein S4X pseudogene 9 O - 20121230 -9606 442258 EEF1DP5 - - HGNC:33524 6 6q22.33 eukaryotic translation elongation factor 1 delta pseudogene 5 pseudo EEF1DP5 eukaryotic translation elongation factor 1 delta pseudogene 5 O - 20121230 -9606 442260 RPL23AP46 - RPL23A_17_757 HGNC:35894 6 6q23.2 ribosomal protein L23a pseudogene 46 pseudo RPL23AP46 ribosomal protein L23a pseudogene 46 O - 20121230 -9606 442262 GAPDHP73 RP1-38C16.1 GAPDHL19|GAPDL19 HGNC:22956 6 6q23.3 glyceraldehyde-3-phosphate dehydrogenase pseudogene 73 pseudo GAPDHP73 glyceraldehyde-3-phosphate dehydrogenase pseudogene 73 O - 20121230 -9606 442263 LOC442263 - - - 6 6q23.3 protein tyrosine phosphatase, non-receptor type 11 pseudogene pseudo - - - - 20121230 -9606 442266 YAP1P1 - - HGNC:38016 6 6q24.3 Yes-associated protein 1 pseudogene 1 pseudo YAP1P1 Yes-associated protein 1 pseudogene 1 O - 20121230 -9606 442267 CCT7P1 - CCT7-2P HGNC:35149 6 6q25.1 chaperonin containing TCP1, subunit 7 (eta) pseudogene 1 pseudo CCT7P1 chaperonin containing TCP1, subunit 7 (eta) pseudogene 1 O - 20121230 -9606 442270 RPS12P11 - RPS12_6_769 HGNC:36042 6 6q25.1 ribosomal protein S12 pseudogene 11 pseudo RPS12P11 ribosomal protein S12 pseudogene 11 O - 20121230 -9606 442271 LOC442271 - - - 6 6q25.2 tubulin, beta 4B class IVb pseudogene pseudo - - - - 20121230 -9606 442272 LOC442272 - - - 6 6q25.3 YKT6 v-SNARE homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 442290 NHP2P2 - TCAG_30283 HGNC:22797 7 7p15.2 NHP2 ribonucleoprotein pseudogene 2 pseudo NHP2P2 NHP2 ribonucleoprotein pseudogene 2 O - 20121230 -9606 442291 PSMC1P2 - - HGNC:39777 7 7p15.2 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 2 pseudo PSMC1P2 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 2 O - 20121230 -9606 442292 LOC442292 - - - 7 7p15.2 coiled-coil domain containing 86 pseudogene pseudo - - - - 20121230 -9606 442293 LOC442293 hCG_1642425 - - 7 7p14.2 glycine cleavage system protein H (aminomethyl carrier) pseudogene pseudo - - - - 20121230 -9606 442304 FTLP15 - - HGNC:37965 7 7p12.3 ferritin, light polypeptide pseudogene 15 pseudo FTLP15 ferritin, light polypeptide pseudogene 15 O - 20121230 -9606 442308 LOC442308 - - - 7 7p11.2 tubulin, beta class I pseudogene pseudo - - - - 20121230 -9606 442309 LOC442309 - - - 7 7p11.2 interferon induced transmembrane protein 3 pseudogene pseudo - - - - 20121230 -9606 442317 LOC442317 - - - 7 7p11.2 chromosome 9 open reading frame 140 pseudogene pseudo - - - - 20121230 -9606 442318 LOC442318 - - - 7 7q11.21 chromosome 9 open reading frame 140 pseudogene pseudo - - - - 20121230 -9606 442319 ZNF727 - - HGNC:22785|Ensembl:ENSG00000257482 7 7q11.21 zinc finger protein 727 protein-coding ZNF727 zinc finger protein 727 O putative zinc finger protein 727 20121230 -9606 442320 LOC442320 - - - 7 7q11.21 chromosome 9 open reading frame 140 pseudogene pseudo - - - - 20121230 -9606 442325 EEF1DP4 - - HGNC:22598 7 7q11.21 eukaryotic translation elongation factor 1 delta pseudogene 4 pseudo EEF1DP4 eukaryotic translation elongation factor 1 delta pseudogene 4 O - 20121230 -9606 442326 RPL31P38 - RPL31_17_813 HGNC:36834 7 7q11.21 ribosomal protein L31 pseudogene 38 pseudo RPL31P38 ribosomal protein L31 pseudogene 38 O - 20121230 -9606 442334 ARF1P1 - ARF1 HGNC:22500 7 7q21.3 ADP-ribosylation factor 1 pseudogene 1 pseudo ARF1P1 ADP-ribosylation factor 1 pseudogene 1 O - 20121230 -9606 442338 IRS3P - IRS3L HGNC:6127 7 7q22.1 insulin receptor substrate 3, pseudogene pseudo IRS3P insulin receptor substrate 3, pseudogene O - 20121230 -9606 442361 OR2A2 - OR2A17P|OR2A2P|OR7-11|OST008 HGNC:8230|Ensembl:ENSG00000221989|HPRD:14931|Vega:OTTHUMG00000158001 7 7q35 olfactory receptor, family 2, subfamily A, member 2 protein-coding OR2A2 olfactory receptor, family 2, subfamily A, member 2 O olfactory receptor 2A17|olfactory receptor 2A2|olfactory receptor OR7-11|olfactory receptor, family 2, subfamily A, member 17 pseudogene|olfactory receptor, family 2, subfamily A, member 2 pseudogene 20121230 -9606 442382 LOC442382 - - - 8 8p21.3 ATPase, Ca++ transporting, plasma membrane 1 pseudogene pseudo - - - - 20121230 -9606 442384 VENTXP5 - - HGNC:32214 8 8p12 VENT homeobox pseudogene 5 pseudo VENTXP5 VENT homeobox pseudogene 5 O - 20121230 -9606 442388 SDR16C6P - SDR16C6 HGNC:35413 8 8q12.1 short chain dehydrogenase/reductase family 16C, member 6, pseudogene pseudo SDR16C6P short chain dehydrogenase/reductase family 16C, member 6, pseudogene O - 20121230 -9606 442389 LOC442389 - - - 8 8q12.2 interferon induced transmembrane protein pseudogene pseudo - - - - 20121230 -9606 442396 ARF1P3 - - HGNC:39884 8 8q24.13 ADP-ribosylation factor 1 pseudogene 3 pseudo ARF1P3 ADP-ribosylation factor 1 pseudogene 3 O - 20121230 -9606 442405 LOC442405 - - - 9 9p21.1 keratin 18 pseudogene pseudo - - - - 20121230 -9606 442406 KRT18P36 - - HGNC:33405 9 9p21.1 keratin 18 pseudogene 36 pseudo KRT18P36 keratin 18 pseudogene 36 O - 20121230 -9606 442415 ATP5A1P7 - - HGNC:37665 9 9p11.2 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 7 pseudo ATP5A1P7 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 7 O - 20121230 -9606 442416 ATP5A1P5 RP11-186G6.2 ATP5AL1 HGNC:825 9 9p12 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 5 pseudo ATP5A1P5 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 5 O - 20121230 -9606 442421 PTGER4P2 - PTGER4P2-CDK2AP2P2 HGNC:9598 9 9q13 prostaglandin E receptor 4 (subtype EP4) pseudogene 2 pseudo PTGER4P2 prostaglandin E receptor 4 (subtype EP4) pseudogene 2 O - 20121230 -9606 442425 FOXB2 RP11-159H20.4 bA159H20.4 HGNC:23315|Ensembl:ENSG00000204612|HPRD:18473|Vega:OTTHUMG00000020051 9 9q21.2 forkhead box B2 protein-coding FOXB2 forkhead box B2 O forkhead box protein B2 20121230 -9606 442426 RPS2P34 - RPS2_16_990 HGNC:36370 9 9q21.32 ribosomal protein S2 pseudogene 34 pseudo RPS2P34 ribosomal protein S2 pseudogene 34 O - 20121230 -9606 442427 LOC442427 - - - 9 9q21.32 putative UPF0607 protein ENSP00000332738-like pseudo - - - - 20121209 -9606 442429 EEF1DP2 - - HGNC:33523 9 9q22.31 eukaryotic translation elongation factor 1 delta pseudogene 2 pseudo EEF1DP2 eukaryotic translation elongation factor 1 delta pseudogene 2 O - 20121230 -9606 442442 RPL14P5 RP11-309M23.2 - HGNC:37720 X|Y Xp22.33;Yp11.32 ribosomal protein L14 pseudogene 5 pseudo RPL14P5 ribosomal protein L14 pseudogene 5 O - 20121102 -9606 442443 LOC442443 - - - X Xp22.31 chromodomain Y-like protein pseudogene pseudo - - - - 20121230 -9606 442444 FAM47C RP11-31H15.5 - HGNC:25301|Ensembl:ENSG00000198173|HPRD:18474|Vega:OTTHUMG00000024025 X Xp21.1 family with sequence similarity 47, member C protein-coding FAM47C family with sequence similarity 47, member C O putative protein FAM47C 20121230 -9606 442445 LOC442445 - - - X Xp21.1 ferritin, heavy polypeptide-like 17 pseudogene pseudo - - - - 20121230 -9606 442446 LOC442446 - - - X Xp11.4 upstream binding transcription factor, RNA polymerase I pseudogene pseudo - - - - 20121230 -9606 442447 LOC442447 - - - X Xp11.4 chloride intracellular channel 4 pseudogene pseudo - - - - 20121230 -9606 442454 UQCRBP1 RP11-278E11.2 - HGNC:12583 X Xp11.21 ubiquinol-cytochrome c reductase binding protein pseudogene 1 pseudo UQCRBP1 ubiquinol-cytochrome c reductase binding protein pseudogene 1 O - 20121230 -9606 442455 KRT8P27 - - HGNC:33379 X Xq11.2 keratin 8 pseudogene 27 pseudo KRT8P27 keratin 8 pseudogene 27 O - 20121230 -9606 442459 LOC442459 - - - X Xq22.1 X-ray repair complementing defective repair pseudogene pseudo - - - - 20121230 -9606 442460 LOC442460 - - - X Xq22.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 442465 LOC442465 - - - X Xq26.3 sarcoma antigen 1-like pseudo - - - - 20121209 -9606 442479 HSFY3P - HSFYP2 HGNC:37119 Y Yp11.31 heat shock transcription factor, Y-linked 3, pseudogene pseudo HSFY3P heat shock transcription factor, Y-linked 3, pseudogene O - 20121230 -9606 442485 OFD1P16Y - OFD1P16|OFD1PY16|OFDYP16 HGNC:18213 Y Yq11.223 OFD1 pseudogene 16, Y-linked pseudo OFD1P16Y OFD1 pseudogene 16, Y-linked O - 20121209 -9606 442486 ZNF736P1Y - ZNF736P1|ZNF736PY1 HGNC:37726 Y Yq11.23 zinc finger protein 736 pseudogene 1, Y-linked pseudo ZNF736P1Y zinc finger protein 736 pseudogene 1, Y-linked O - 20121209 -9606 442497 LOC442497 - - - 7 7p22 uncharacterized LOC442497 miscRNA - - - - 20121230 -9606 442517 LOC442517 - - - 7 7p15.3 ATP-binding cassette, sub-family E (OABP), member 1 pseudogene pseudo - - - - 20121230 -9606 442523 DPY19L2P4 - - HGNC:22176 7 7q21.13 dpy-19-like 2 pseudogene 4 (C. elegans) pseudo DPY19L2P4 dpy-19-like 2 pseudogene 4 (C. elegans) O - 20121230 -9606 442524 DPY19L2P3 - - HGNC:22367 7 7p15.1 dpy-19-like 2 pseudogene 3 (C. elegans) pseudo DPY19L2P3 dpy-19-like 2 pseudogene 3 (C. elegans) O - 20121230 -9606 442525 SLC25A5P5 - ANTP5|TCAG_29001 HGNC:511 7 7p14.3 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 5 pseudo SLC25A5P5 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 5 O - 20121230 -9606 442572 LOC442572 - - - 7 7q11.21 speedy homolog E1 (Xenopus laevis) pseudogene pseudo - - - - 20121230 -9606 442578 STAG3L3 - STAG3L1|STAG3L2 HGNC:33845|HPRD:18656 7 7q11.23 stromal antigen 3-like 3 pseudo STAG3L3 stromal antigen 3-like 3 O - 20121230 -9606 442582 STAG3L2 - STAG3L1|STAG3L3 HGNC:33886 7 7q11.23 stromal antigen 3-like 2 pseudo STAG3L2 stromal antigen 3-like 2 O - 20121230 -9606 442590 SPDYE5 - - HGNC:35464 7 7q11.23 speedy homolog E5 (Xenopus laevis) protein-coding SPDYE5 speedy homolog E5 (Xenopus laevis) O putative speedy protein E5 20121230 -9606 442603 LOC442603 - - - 7 7q22.1 ADP-ribosylation factor 6 pseudogene pseudo - - - - 20121230 -9606 442659 RPL23P7 - RPL23_5_797 HGNC:36215 7 7p15.2 ribosomal protein L23 pseudogene 7 pseudo RPL23P7 ribosomal protein L23 pseudogene 7 O - 20121230 -9606 442660 RPL7AP38 - RPL7A_11_798 HGNC:36161 7 7p15.2 ribosomal protein L7a pseudogene 38 pseudo RPL7AP38 ribosomal protein L7a pseudogene 38 O - 20121230 -9606 442661 HMGB3P20 - - HGNC:39312 7 7p15.2 high mobility group box 3 pseudogene 20 pseudo HMGB3P20 high mobility group box 3 pseudogene 20 O - 20121230 -9606 442668 NECAP1P1 - - HGNC:43912 7 7p14.1 NECAP endocytosis associated 1 pseudogene 1 pseudo NECAP1P1 NECAP endocytosis associated 1 pseudogene 1 O - 20121230 -9606 442673 TUBG1P - - HGNC:12418 7 7p13 tubulin, gamma 1 pseudogene pseudo TUBG1P tubulin, gamma 1 pseudogene O - 20121230 -9606 442676 CICP8 - - HGNC:37757 7 7p11.2 capicua homolog (Drosophila) pseudogene 8 pseudo CICP8 capicua homolog (Drosophila) pseudogene 8 O - 20121230 -9606 442695 ZNF722P - ZNF722 HGNC:22571 7 - zinc finger protein 722, pseudogene protein-coding ZNF722P zinc finger protein 722, pseudogene O - 20120707 -9606 442707 LOC442707 - - - 7 7q21.11 methylene tetrahydrofolate dehydrogenase 2 pseudogene pseudo - - - - 20121230 -9606 442709 EEF1A1P28 - - HGNC:37902 7 7q21.13 eukaryotic translation elongation factor 1 alpha 1 pseudogene 28 pseudo EEF1A1P28 eukaryotic translation elongation factor 1 alpha 1 pseudogene 28 O - 20121230 -9606 442712 RPL7AP40 - RPL7A_18_822 HGNC:35883 7 7q21.3 ribosomal protein L7a pseudogene 40 pseudo RPL7AP40 ribosomal protein L7a pseudogene 40 O - 20121230 -9606 442713 LOC442713 - - - 7 7q22.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 442720 EIF3IP1 - RG208K23 HGNC:13277 7 7q31.1 eukaryotic translation initiation factor 3, subunit I pseudogene 1 pseudo EIF3IP1 eukaryotic translation initiation factor 3, subunit I pseudogene 1 O - 20121230 -9606 442721 LMOD2 tcag7.1078 C-LMOD HGNC:6648|MIM:608006|Ensembl:ENSG00000170807|Vega:OTTHUMG00000157149 7 7q31.32 leiomodin 2 (cardiac) protein-coding LMOD2 leiomodin 2 (cardiac) O cardiac leiomodin|leiomodin-2 20121230 -9606 442723 RPL27P11 - RPL27_6_845 HGNC:36533 7 7q32.3 ribosomal protein L27 pseudogene 11 pseudo RPL27P11 ribosomal protein L27 pseudogene 11 O - 20121230 -9606 442726 RPS17P12 tcag7.955 RPS17_5_854 HGNC:35930 7 7q33 ribosomal protein S17 pseudogene 12 pseudo RPS17P12 ribosomal protein S17 pseudogene 12 O - 20121230 -9606 442727 LOC442727 - - - 7 7q33 prothymosin, alpha pseudogene pseudo - - - - 20121230 -9606 442730 ST13P17 - - HGNC:38859 7 7q34 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 17 pseudo ST13P17 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 17 O - 20121230 -9606 442744 LOC442744 - - - 7 7q35 peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121209 -9606 442775 RAC1P2 - Psi2Rac1 HGNC:31414 4 4p13 ras-related C3 botulinum toxin substrate 1 pseudogene 2 pseudo RAC1P2 ras-related C3 botulinum toxin substrate 1 pseudogene 2 O - 20121230 -9606 442777 TECRP1 - - HGNC:44050 4 4q21.3 trans-2,3-enoyl-CoA reductase pseudogene 1 pseudo TECRP1 trans-2,3-enoyl-CoA reductase pseudogene 1 O - 20121230 -9606 442862 PRY2 - PTPN13LY2 HGNC:21504|MIM:400041|Ensembl:ENSG00000169807|HPRD:11851|Vega:OTTHUMG00000043586 Y Yq11.223 PTPN13-like, Y-linked 2 protein-coding PRY2 PTPN13-like, Y-linked 2 O PTPN13-like protein, Y-linked|PTPN13-like, Y-linked, centromeric|testis-specific PTP-BL-related Y protein|testis-specific PTP-BL-related protein on Y 20121220 -9606 442863 PRYP1 - PRY4P|PRYP7 HGNC:34018 Y Yq11.221 PTPN13-like, Y-linked pseudogene 1 pseudo PRYP1 PTPN13-like, Y-linked pseudogene 1 O - 20121209 -9606 442864 PRYP2 - - HGNC:34019 Y Yq11.221 PTPN13-like, Y-linked pseudogene 2 pseudo PRYP2 PTPN13-like, Y-linked pseudogene 2 O - 20121209 -9606 442865 PRYP3 - - HGNC:34020 Y Yq11.223 PTPN13-like, Y-linked pseudogene 3 pseudo PRYP3 PTPN13-like, Y-linked pseudogene 3 O - 20121209 -9606 442866 PRYP4 - - HGNC:34021 Y Yq11.223 PTPN13-like, Y-linked pseudogene 4 pseudo PRYP4 PTPN13-like, Y-linked pseudogene 4 O - 20121209 -9606 442867 BPY2B - VCY2B HGNC:25449|Ensembl:ENSG00000183795|HPRD:12530|Vega:OTTHUMG00000045101 Y Yq11.223 basic charge, Y-linked, 2B protein-coding BPY2B basic charge, Y-linked, 2B O basic charge, Y-linked 2|basic protein on Y chromosome 2|testis-specific basic protein Y 2|testis-specific basic protein on Y, 2|variable charge, Y-linked, 2|variably charged protein Y 2 20121209 -9606 442868 BPY2C - VCY2C HGNC:18225|Ensembl:ENSG00000185894|HPRD:18658|Vega:OTTHUMG00000045199 Y Yq11.223 basic charge, Y-linked, 2C protein-coding BPY2C basic charge, Y-linked, 2C O basic charge, Y-linked 2|basic protein on Y chromosome 2|testis-specific basic protein Y 2|testis-specific basic protein on Y, 2|variable charge, Y-linked, 2|variably charged protein Y 2 20121209 -9606 442890 MIR133B - MIRN133B|miRNA133B|mir-133b HGNC:31759|MIM:610946|miRBase:MI0000822 6 6p12.2 microRNA 133b miscRNA MIR133B microRNA 133b O - 20121230 -9606 442891 MIR135B - MIRN135B HGNC:31760|miRBase:MI0000810 1 1q32.1 microRNA 135b miscRNA MIR135B microRNA 135b O - 20121230 -9606 442892 MIR148B - MIRN148B|mir-148b HGNC:31761|MIM:613787|miRBase:MI0000811 12 12q13.13 microRNA 148b miscRNA MIR148B microRNA 148b O - 20121230 -9606 442893 MIR151A - MIR151|MIRN151|hsa-mir-151|hsa-mir-151a HGNC:31762|miRBase:MI0000809 8 - microRNA 151a miscRNA MIR151A microRNA 151a O - 20121230 -9606 442894 MIR302B - MIRN302B HGNC:31763|MIM:614597|miRBase:MI0000772 4 4q25 microRNA 302b miscRNA MIR302B microRNA 302b O - 20121230 -9606 442895 MIR302C - MIRN302C HGNC:31764|MIM:614598|miRBase:MI0000773 4 4q25 microRNA 302c miscRNA MIR302C microRNA 302c O - 20121230 -9606 442896 MIR302D - MIRN302D HGNC:31765|MIM:614599|miRBase:MI0000774 4 4q25 microRNA 302d miscRNA MIR302D microRNA 302d O - 20121230 -9606 442897 MIR323A - MIR323|MIRN323|hsa-mir-323|hsa-mir-323a HGNC:31766|miRBase:MI0000807 14 14q32.31 microRNA 323a miscRNA MIR323A microRNA 323a O - 20121230 -9606 442898 MIR324 - MIRN324|hsa-mir-324 HGNC:31767|miRBase:MI0000813 17 17p13.1 microRNA 324 miscRNA MIR324 microRNA 324 O - 20121230 -9606 442899 MIR325 - MIRN325|hsa-mir-325 HGNC:31768|miRBase:MI0000824 X Xq21.1 microRNA 325 miscRNA MIR325 microRNA 325 O - 20121230 -9606 442900 MIR326 - MIRN326|hsa-mir-326 HGNC:31769|MIM:613755|miRBase:MI0000808 11 11q13.4 microRNA 326 miscRNA MIR326 microRNA 326 O - 20121230 -9606 442901 MIR328 - MIRN328|hsa-mir-328 HGNC:31770|MIM:613701|miRBase:MI0000804 16 16q22.1 microRNA 328 miscRNA MIR328 microRNA 328 O - 20121230 -9606 442902 MIR330 - MIRN330|hsa-mir-330 HGNC:31771|miRBase:MI0000803 19 19q13.32 microRNA 330 miscRNA MIR330 microRNA 330 O - 20121230 -9606 442903 MIR331 - MIRN331|hsa-mir-331 HGNC:31772|miRBase:MI0000812 12 12q22 microRNA 331 miscRNA MIR331 microRNA 331 O - 20121230 -9606 442904 MIR335 - MIRN335|hsa-mir-335|miRNA335 HGNC:31773|MIM:611768|miRBase:MI0000816 7 7q32.2 microRNA 335 miscRNA MIR335 microRNA 335 O - 20121230 -9606 442905 MIR337 - MIRN337|hsa-mir-337 HGNC:31774|miRBase:MI0000806 14 14q32.2 microRNA 337 miscRNA MIR337 microRNA 337 O - 20121230 -9606 442906 MIR338 - MIRN338|hsa-mir-338 HGNC:31775|MIM:614059|miRBase:MI0000814 17 17q25.3 microRNA 338 miscRNA MIR338 microRNA 338 O - 20121230 -9606 442907 MIR339 - MIRN339|hsa-mir-339 HGNC:31776|miRBase:MI0000815 7 7p22.3 microRNA 339 miscRNA MIR339 microRNA 339 O - 20121230 -9606 442908 MIR340 - MIRN340|hsa-mir-340 HGNC:31777|miRBase:MI0000802 5 5q35.3 microRNA 340 miscRNA MIR340 microRNA 340 O - 20121230 -9606 442909 MIR342 - MIRN342|hsa-mir-342 HGNC:31778|miRBase:MI0000805 14 14q32.2 microRNA 342 miscRNA MIR342 microRNA 342 O - 20121230 -9606 442910 MIR345 - MIRN345|hsa-mir-345 HGNC:31779|miRBase:MI0000825 14 14q32.2 microRNA 345 miscRNA MIR345 microRNA 345 O - 20121230 -9606 442911 MIR346 - MIRN346|hsa-mir-346|miR-346|miRNA346 HGNC:31780|MIM:611190|miRBase:MI0000826 10 10q23.2 microRNA 346 miscRNA MIR346 microRNA 346 O - 20121230 -9606 442912 MIR367 - MIRN367|hsa-mir-367 HGNC:31781|MIM:614600|miRBase:MI0000775 4 4q25 microRNA 367 miscRNA MIR367 microRNA 367 O - 20121230 -9606 442913 MIR376C - MIR368|MIRN368|MIRN376C|hsa-mir-368|miRNA368 HGNC:31782|MIM:610983|miRBase:MI0000776 14 14q32.31 microRNA 376c miscRNA MIR376C microRNA 376c O - 20121230 -9606 442914 MIR369 - MIR369-3|MIRN369|MIRN369-3|hsa-mir-369 HGNC:31783|MIM:611794|miRBase:MI0000777 14 14q32.31 microRNA 369 miscRNA MIR369 microRNA 369 O - 20121230 -9606 442915 MIR370 - MIRN370|hsa-mir-370 HGNC:31784|MIM:612553|miRBase:MI0000778 14 14q32.2 microRNA 370 miscRNA MIR370 microRNA 370 O - 20121230 -9606 442916 MIR371A - MIR371|MIRN371|hsa-mir-371|hsa-mir-371a HGNC:31785|MIM:612043|miRBase:MI0000779 19 19q13.42 microRNA 371a miscRNA MIR371A microRNA 371a O - 20121230 -9606 442917 MIR372 - MIRN372|hsa-mir-372 HGNC:31786|MIM:612044|miRBase:MI0000780 19 19q13.42 microRNA 372 miscRNA MIR372 microRNA 372 O - 20121230 -9606 442918 MIR373 - MIRN373|hsa-mir-373|miRNA373 HGNC:31787|MIM:611954|miRBase:MI0000781 19 19q13.42 microRNA 373 miscRNA MIR373 microRNA 373 O - 20121230 -9606 442919 MIR374A - MIRN374|MIRN374A|hsa-mir-374 HGNC:31788|miRBase:MI0000782 X Xq13.2 microRNA 374a miscRNA MIR374A microRNA 374a O - 20121230 -9606 442920 MIR196B - MIRN196B|miR-196b|miRNA196B HGNC:31790|MIM:609688|miRBase:MI0001150 7 7p15.2 microRNA 196b miscRNA MIR196B microRNA 196b O - 20121230 -9606 444882 IGFL4 - - HGNC:32931|MIM:610547|Ensembl:ENSG00000204869|HPRD:13730 19 19q13.32 IGF-like family member 4 protein-coding IGFL4 IGF-like family member 4 O insulin growth factor-like family member 4 20121230 -9606 444980 HYT4 - - MIM:608742 12 12p12.2-p12.1 Hypertension, essential, susceptibility to, 4 unknown - - - - 20120622 -9606 445328 ARHGEF35 - ARHGEF5L|CTAGE4 HGNC:33846|Ensembl:ENSG00000213214|HPRD:13476|Vega:OTTHUMG00000158010 7 7q35 Rho guanine nucleotide exchange factor (GEF) 35 protein-coding ARHGEF35 Rho guanine nucleotide exchange factor (GEF) 35 O rho guanine nucleotide exchange factor 35|rho guanine nucleotide exchange factor 5-like protein 20121230 -9606 445329 SULT1A4 - HAST3|M-PST|ST1A3/ST1A4|TL-PST HGNC:30004|Ensembl:ENSG00000213648|HPRD:18659|Vega:OTTHUMG00000170468 16 - sulfotransferase family, cytosolic, 1A, phenol-preferring, member 4 protein-coding SULT1A4 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 4 O aryl sulfotransferase 1A3/1A4|catecholamine-sulfating phenol sulfotransferase|monoamine-sulfating phenol sulfotransferase|placental estrogen sulfotransferase|sulfokinase|sulfotransferase 1A3/1A4|sulfotransferase, monoamine-preferring|thermolabile phenol sulfotransferase 20121230 -9606 445341 TNAP - - - 13 - TRAFs and NIK-associated protein unknown - - - - 20121209 -9606 445347 TARP - CD3G|TCRG|TCRGC1|TCRGC2 MIM:609642|HPRD:15468 7 7p15-p14 TCR gamma alternate reading frame protein protein-coding - - - T-cell receptor gamma-chain constant region 20121230 -9606 445372 TRIM6-TRIM34 - IFP1|RNF21|TRIM34 HGNC:33440|Ensembl:ENSG00000258588|Ensembl:ENSG00000258659|HPRD:18660|Vega:OTTHUMG00000066899 11 11p15 TRIM6-TRIM34 readthrough protein-coding TRIM6-TRIM34 TRIM6-TRIM34 readthrough O interferon-responsive finger protein 1 long form|tripartite motif-containing 6 and tripartite motif-containing 34 20121230 -9606 445571 CBWD3 RP11-561O23.4 bA561O23.1 HGNC:18519|MIM:611080|Ensembl:ENSG00000196873|Vega:OTTHUMG00000019958 9 9q13 COBW domain containing 3 protein-coding CBWD3 COBW domain containing 3 O COBW domain-containing protein 3|cobalamin synthase W domain-containing protein 3|cobalamin synthetase W domain-containing protein 3 20121230 -9606 445573 ATP5J2P3 - bA159H20.5 HGNC:21286 9 9q21.2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene 3 pseudo ATP5J2P3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene 3 O - 20121230 -9606 445577 C9orf129 RP11-165J3.3 bA165J3.3 HGNC:31116|Ensembl:ENSG00000204352|Vega:OTTHUMG00000020248 9 9q22.31 chromosome 9 open reading frame 129 protein-coding C9orf129 chromosome 9 open reading frame 129 O putative uncharacterized protein C9orf129 20121230 -9606 445582 POTEE - A26C1|A26C1A|CT104.2|POTE-2|POTE2|POTE2gamma HGNC:33895|MIM:608914|Ensembl:ENSG00000188219|HPRD:12329 2 2q21.1 POTE ankyrin domain family, member E protein-coding POTEE POTE ankyrin domain family, member E O ANKRD26-like family C member 1A|ANKRD26-like family C, member 1A|POTE ankyrin domain family member E|cancer/testis antigen family 104, member 2|prostate, ovary, testis-expressed protein on chromosome 2|protein expressed in prostate, ovary, testis, and placenta 2 20121230 -9606 445815 PALM2-AKAP2 hCG_28765 AKAP2 HGNC:33529|Ensembl:ENSG00000157654|Ensembl:ENSG00000241978|HPRD:09197|HPRD:18661|Vega:OTTHUMG00000156812 9 9q31.3 PALM2-AKAP2 readthrough protein-coding PALM2-AKAP2 PALM2-AKAP2 readthrough O PALM2-AKAP2 protein|PALM2-AKAP2 readthrough transcript 20121230 -9606 446207 ACTBP10 - - HGNC:31819 14 14q11.2 actin, beta pseudogene 10 pseudo ACTBP10 actin, beta pseudogene 10 O - 20121209 -9606 446209 RPS26P9 - RPS26_25_1338 HGNC:31821 14 14q11.1 ribosomal protein S26 pseudogene 9 pseudo RPS26P9 ribosomal protein S26 pseudogene 9 O - 20121230 -9606 448831 FRG2 - FRG2A HGNC:19136|MIM:609032|Ensembl:ENSG00000205097|HPRD:16418|Vega:OTTHUMG00000160339 4 4q35 FSHD region gene 2 protein-coding FRG2 FSHD region gene 2 O FSHD region gene 2 protein|protein FRG2 20121230 -9606 448834 KPRP - C1orf45 HGNC:31823|MIM:613260|Ensembl:ENSG00000203786|Vega:OTTHUMG00000012402 1 1q21.3 keratinocyte proline-rich protein protein-coding KPRP keratinocyte proline-rich protein O hKPRP|keratinocyte expressed, proline-rich protein 20121230 -9606 448835 LCE6A - C1orf44 HGNC:31824|Ensembl:ENSG00000235942|Vega:OTTHUMG00000012448 1 1q21.3 late cornified envelope 6A protein-coding LCE6A late cornified envelope 6A O late cornified envelope protein 6A 20121230 -9606 448962 DFNA54 - - HGNC:23566 5 5q31 deafness, autosomal dominant 54 unknown DFNA54 deafness, autosomal dominant 54 O - 20110215 -9606 448963 DFNB51 - - HGNC:24367|MIM:609941 11 11p13-p12 deafness, autosomal recessive 51 unknown DFNB51 deafness, autosomal recessive 51 O - 20120622 -9606 448990 TAS2R6 - PS3|T2R06|T2R6 HGNC:20616 7 7q34 taste receptor, type 2, member 6 pseudo TAS2R6 taste receptor, type 2, member 6 O - 20121230 -9606 448991 TAS2R67P - PS5 HGNC:43898 12 12p13.2 taste receptor, type 2, member 67 pseudogene pseudo TAS2R67P taste receptor, type 2, member 67 pseudogene O - 20121230 -9606 449013 ANIB2 - AIB2 HGNC:31941|MIM:608542 19 19q13 aneurysm, intracranial berry 2 unknown ANIB2 aneurysm, intracranial berry 2 O - 20120622 -9606 449015 ASPG3 - - MIM:608781 1 1q21-q22 Asperger syndrome, susceptibility to, 3 unknown - - - - 20120622 -9606 449016 BMIQ5 - - HGNC:31117|MIM:608558 16 16p13 body mass index QTL 5 unknown BMIQ5 body mass index QTL 5 O - 20120622 -9606 449017 BMIQ6 - - HGNC:22120|MIM:608559 20 20pter-p11.2 body mass index QTL 6 unknown BMIQ6 body mass index QTL 6 O - 20120622 -9606 449018 EJM3 - - MIM:608816 6 6p21 Epilepsy, juvenile myoclonic 3 unknown - - - - 20120622 -9606 449481 DFNB43 - - HGNC:17480 15 15q24.1-q25.2 deafness, autosomal recessive 43 unknown DFNB43 deafness, autosomal recessive 43 O - 20110215 -9606 449483 DFNB45 - - HGNC:22400|MIM:612433 1 1q43-q44 deafness, autosomal recessive 45 unknown DFNB45 deafness, autosomal recessive 45 O - 20120622 -9606 449484 DFNB44 - - HGNC:23223|MIM:610154 7 7p14.1-q11.22 deafness, autosomal recessive 44 unknown DFNB44 deafness, autosomal recessive 44 O - 20120622 -9606 449488 DFNB46 - - HGNC:31085|MIM:609647 18 18p11.32-p11.31 deafness, autosomal recessive 46 unknown DFNB46 deafness, autosomal recessive 46 O - 20120622 -9606 449489 DFNB47 - - HGNC:31086|MIM:609946 2 2p25.1-p24.3 deafness, autosomal recessive 47 unknown DFNB47 deafness, autosomal recessive 47 O - 20120622 -9606 449491 DEFA8P - DEFAP1 HGNC:31799 8 8p23.1 defensin, alpha 8 pseudogene pseudo DEFA8P defensin, alpha 8 pseudogene O - 20121230 -9606 449492 DEFA9P - DEFAP2 HGNC:31800 8 8p23.1 defensin, alpha 9 pseudogene pseudo DEFA9P defensin, alpha 9 pseudogene O - 20121230 -9606 449493 DEFA10P - - HGNC:31801 8 8p23.1 defensin, alpha 10 pseudogene pseudo DEFA10P defensin, alpha 10 pseudogene O - 20121230 -9606 449518 P2RY10P2 - - HGNC:32924 X Xq21.1 purinergic receptor P2Y, G-protein coupled, 10 pseudogene 2 pseudo P2RY10P2 purinergic receptor P2Y, G-protein coupled, 10 pseudogene 2 O - 20121230 -9606 449519 LOC449519 - - - 11 - Mas-related gene LOC449519 protein-coding - - - - 20100404 -9606 449520 GGNBP1 - - HGNC:19427|MIM:609495 6 6p21 gametogenetin binding protein 1 (pseudogene) pseudo GGNBP1 gametogenetin binding protein 1 (pseudogene) O - 20121230 -9606 449523 JST - - - - - tumor suppressor gene JST protein-coding - - - - 20100404 -9606 449619 ERVK-7 - ERVK7|HERV-K(III)|HERV-K102|HERV-KIII HGNC:31828|MIM:614013 1 1q22 endogenous retrovirus group K, member 7 unknown ERVK-7 endogenous retrovirus group K, member 7 O - 20121017 -9606 449645 SF3A3P2 - - HGNC:23277 11 11q24.1 splicing factor 3a, subunit 3 pseudogene 2 pseudo SF3A3P2 splicing factor 3a, subunit 3 pseudogene 2 O - 20121230 -9606 450086 AD9 - - MIM:608907 19 19p13.2 Alzheimer disease 9 unknown - - - - 20121018 -9606 450087 ADHD1 - - MIM:608903 16 16p13 Attention deficit-hyperactivity disorder, susceptibility to, 1 unknown - - - - 20120622 -9606 450088 ADHD2 - - MIM:608904 17 17p11 Attention deficit-hyperactivity disorder, susceptibility to, 2 unknown - - - - 20120622 -9606 450089 ADHD3 - LOAS MIM:608905 6 6q12 Attention deficit-hyperactivity disorder, susceptibility to, 2 unknown - - - - 20120622 -9606 450090 ADHD4 - - MIM:608906 5 5p13 Attention deficit-hyperactivity disorder, susceptibility to, 4 unknown - - - - 20120622 -9606 450092 KTCN2 - - MIM:608932 16 16q22.3-q23.1 Keratoconus 2 unknown - - - - 20120622 -9606 450093 LNCR1 - - MIM:608935 6 6q23-q25 Lung cancer 1 unknown - - - - 20120622 -9606 450094 MYP6 - - HGNC:35434|MIM:608908 22 22q12 myopia 6 unknown MYP6 myopia 6 O - 20120622 -9606 450095 PLF - - MIM:608852 6 6q21-q22 Pulmonary function unknown - - - - 20120622 -9606 450096 PAPA4 - - MIM:608562 7 7q22 Polydactyly, postaxial, type A4 unknown - - - - 20120622 -9606 450097 RLS2 - - MIM:608831 14 14q13-q21 Restless legs syndrome 2 unknown - - - - 20120622 -9606 450208 LCEP1 RP1-43O17.2 - HGNC:31806 1 1q21.3 late cornified envelope pseudogene 1 pseudo LCEP1 late cornified envelope pseudogene 1 O - 20121230 -9606 450209 LCEP2 RP1-43O17.1 - HGNC:31807 1 1q21.3 late cornified envelope pseudogene 2 pseudo LCEP2 late cornified envelope pseudogene 2 O - 20121230 -9606 450210 LCEP4 RP1-52J10.9 - HGNC:31808 1 1q21.3 late cornified envelope pseudogene 4 pseudo LCEP4 late cornified envelope pseudogene 4 O - 20121230 -9606 450211 LCEP3 RP1-52J10.1 - HGNC:31809 1 1q22 late cornified envelope pseudogene 3 pseudo LCEP3 late cornified envelope pseudogene 3 O - 20121230 -9606 450232 PHF5CP - PHF5AP1 HGNC:32385 19 19p12 PHD finger protein 5C pseudogene pseudo PHF5CP PHD finger protein 5C pseudogene O - 20121230 -9606 450234 PHF5GP - - HGNC:23269 2 2q24.3 PHD finger protein 5G pseudogene pseudo PHF5GP PHD finger protein 5G pseudogene O - 20121230 -9606 450238 PHF5DP - - HGNC:23268 3 3q13.2 PHD finger protein 5D pseudogene pseudo PHF5DP PHD finger protein 5D pseudogene O - 20121230 -9606 450239 PHF5EP - - HGNC:23267 3 3p21.31 PHD finger protein 5E pseudogene pseudo PHF5EP PHD finger protein 5E pseudogene O - 20121230 -9606 450246 PHF5FP - - HGNC:23266 X Xq23 PHD finger protein 5F pseudogene pseudo PHF5FP PHD finger protein 5F pseudogene O - 20121230 -9606 450250 PHF5HP - - HGNC:23264 15 15q26.3 PHD finger protein 5H pseudogene pseudo PHF5HP PHD finger protein 5H pseudogene O - 20121230 -9606 474148 TTTY3B - LNCRNA00122|NCRNA00122 HGNC:31888 Y Yq11.223 testis-specific transcript, Y-linked 3B (non-protein coding) miscRNA TTTY3B testis-specific transcript, Y-linked 3B (non-protein coding) O - 20121230 -9606 474149 TTTY4B - LINC00124|NCRNA00124 HGNC:31891 Y Yq11.223 testis-specific transcript, Y-linked 4B (non-protein coding) miscRNA TTTY4B testis-specific transcript, Y-linked 4B (non-protein coding) O - 20121209 -9606 474150 TTTY4C - LINC00125|NCRNA00125 HGNC:31892 Y Yq11.223 testis-specific transcript, Y-linked 4C (non-protein coding) miscRNA TTTY4C testis-specific transcript, Y-linked 4C (non-protein coding) O - 20121209 -9606 474151 TTTY17B - NCRNA00141 HGNC:31889 Y Yq11.223 testis-specific transcript, Y-linked 17B (non-protein coding) miscRNA TTTY17B testis-specific transcript, Y-linked 17B (non-protein coding) O - 20121230 -9606 474152 TTTY17C - NCRNA00142 HGNC:31890 Y Yq11.223 testis-specific transcript, Y-linked 17C (non-protein coding) miscRNA TTTY17C testis-specific transcript, Y-linked 17C (non-protein coding) O - 20121209 -9606 474159 DYX9 - DXY9 HGNC:16755|MIM:300509 X Xq27.3 dyslexia susceptibility 9 unknown DYX9 dyslexia susceptibility 9 O - 20120622 -9606 474167 HDGFP1 - HDGFP HGNC:31836 X Xq25 hepatoma-derived growth factor pseudogene 1 pseudo HDGFP1 hepatoma-derived growth factor pseudogene 1 O - 20121230 -9606 474168 WG - - MIM:608710 6 6p21.3 Wegener granulomatosis unknown - - - - 20121209 -9606 474170 LRRC37A2 - - HGNC:32404|Ensembl:ENSG00000238083|HPRD:14227|Vega:OTTHUMG00000178032 17 17q21.31 leucine rich repeat containing 37, member A2 protein-coding LRRC37A2 leucine rich repeat containing 37, member A2 O c114 SLIT-like testicular protein|leucine-rich repeat-containing protein 37A2 20121230 -9606 474171 STGC3 - - HPRD:15444 3 3p21 uncharacterized STGC3 unknown - - - - 20121230 -9606 474174 SGCEP - - - 2 2q22.3 sarcoglycan, epsilon, pseudogene pseudo - - - - 20121230 -9606 474185 OA29 - - RGD:1298425 2 - Osteoarthritis QTL 29 unknown - - - - 20120809 -9606 474186 OA30 - - RGD:1298474 2 - Osteoarthritis QTL 29 unknown - - - - 20120809 -9606 474187 BP35 - - RGD:1298421 17 - Blood pressure QTL 35 unknown - - - - 20120809 -9606 474188 OA24 - - RGD:1298410 4 - Osteoarthritis QTL 24 unknown - - - - 20120809 -9606 474189 BP24 - - RGD:1298415 3 - Blood pressure QTL 24 unknown - - - - 20120809 -9606 474190 BP30 - - RGD:1298439 3 - Blood pressure QTL 30 unknown - - - - 20120809 -9606 474191 BP31 - - RGD:1298492 11 - Blood pressure QTL 31 unknown - - - - 20120809 -9606 474192 BP32 - - RGD:1298444 15 - Blood pressure QTL 32 unknown - - - - 20120809 -9606 474193 BP33 - - RGD:1298498 16 - Blood pressure QTL 33 unknown - - - - 20120809 -9606 474194 BP34 - - RGD:1298468 17 - Blood pressure QTL 34 unknown - - - - 20120809 -9606 474195 OA16 - - RGD:1298452 6 - Osteoarthritis QTL 16 unknown - - - - 20120809 -9606 474196 OA25 - - RGD:1298404 2 - Osteoarthritis QTL 25 unknown - - - - 20120809 -9606 474197 BP22 - - RGD:1298513 11 - Blood pressure QTL 22 unknown - - - - 20120809 -9606 474198 BP23 - - RGD:1298429 2 - Blood pressure QTL 23 unknown - - - - 20120809 -9606 474199 BP9 - - RGD:1298463 1 - Blood pressure QTL 9 unknown - - - - 20120809 -9606 474200 BW22 - - RGD:1300009 10 - Body weight QTL 22 unknown - - - - 20120809 -9606 474201 BP45 - - RGD:1300021 1 - Blood pressure QTL 45 unknown - - - - 20120809 -9606 474202 BP46 - - RGD:1300023 2 - Blood pressure QTL 46 unknown - - - - 20120809 -9606 474203 BP47 - - RGD:1300004 5 - Blood pressure QTL 47 unknown - - - - 20120809 -9606 474204 BP48 - - RGD:1300014 7 - Blood pressure QTL 48 unknown - - - - 20120809 -9606 474205 BP49 - - RGD:1300005 8 - Blood pressure QTL 49 unknown - - - - 20120809 -9606 474206 BP51 - - RGD:1300015 3 - Blood pressure QTL 51 unknown - - - - 20120809 -9606 474207 BP50 - - RGD:1300034 19 - Blood pressure QTL 50 unknown - - - - 20120809 -9606 474208 BP52 - - RGD:1300012 10 - Blood pressure QTL 52 unknown - - - - 20120809 -9606 474209 BP53 - - RGD:1300028 12 - Blood pressure QTL 53 unknown - - - - 20120809 -9606 474210 BP54 - - RGD:1300000 14 - Blood pressure QTL 54 unknown - - - - 20120809 -9606 474211 BP55 - - RGD:1300031 22 - Blood pressure QTL 55 unknown - - - - 20120809 -9606 474212 BP17 - - RGD:1298433 1 - Blood pressure QTL 17 unknown - - - - 20120809 -9606 474213 BP18 - - RGD:1298464 1 - Blood pressure QTL 18 unknown - - - - 20120809 -9606 474214 BP19 - - RGD:1298459 8 - Blood pressure QTL 19 unknown - - - - 20120809 -9606 474215 BP21 - - RGD:1298472 5 - Blood pressure QTL 21 unknown - - - - 20120809 -9606 474216 BP20 - - RGD:1298461 17 - Blood pressure QTL 20 unknown - - - - 20120809 -9606 474217 BP36 - - RGD:1300026 3 - Blood pressure QTL 36 unknown - - - - 20120809 -9606 474218 BP37 - - RGD:1300013 2 - Blood pressure QTL 37 unknown - - - - 20120809 -9606 474219 BP39 - - RGD:1300025 X - Blood pressure QTL 39 unknown - - - - 20120809 -9606 474220 BP38 - - RGD:1300033 22 - Blood pressure QTL 38 unknown - - - - 20120809 -9606 474221 RA1 - - RGD:1298412 1 - Rheumatoid arthritis QTL 01 unknown - - - - 20121209 -9606 474222 RA2 - - RGD:1298441 1 - Rheumatoid arthritis QTL 01 unknown - - - - 20120809 -9606 474223 RA3 - - RGD:1298511 3 - Rheumatoid arthritis QTL 02 unknown - - - - 20120809 -9606 474224 RA4 - - RGD:1298489 3 - Rheumatoid arthritis QTL 04 unknown - - - - 20120809 -9606 474225 RA5 - - RGD:1298479 3 - Rheumatoid arthritis QTL 01 unknown - - - - 20120809 -9606 474226 RA6 - - RGD:1298475 3 - Rheumatoid arthritis QTL 06 unknown - - - - 20120809 -9606 474227 RA7 - - RGD:1298442 4 - Rheumatoid arthritis QTL 07 unknown - - - - 20120809 -9606 474228 RA8 - - RGD:1298450 5 - Rheumatoid arthritis QTL 08 unknown - - - - 20120809 -9606 474229 RA9 - - RGD:1298427 5 - Rheumatoid arthritis QTL 09 unknown - - - - 20121209 -9606 474230 RA10 - - RGD:1298508 5 - Rheumatoid arthritis QTL 10 unknown - - - - 20120809 -9606 474231 RA11 - - RGD:1298431 6 - Rheumatoid arthritis QTL 11 unknown - - - - 20120809 -9606 474232 RA12 - - RGD:1298473 6 - Rheumatoid arthritis QTL 12 unknown - - - - 20120809 -9606 474233 RA13 - - RGD:1298514 6 - Rheumatoid arthritis QTL 13 unknown - - - - 20120809 -9606 474234 RA14 - - RGD:1298422 8 - Rheumatoid arthritis QTL 14 unknown - - - - 20120809 -9606 474235 RA15 - - RGD:1298506 8 - Rheumatoid arthritis QTL 15 unknown - - - - 20120809 -9606 474236 RA16 - - RGD:1298484 8 - Rheumatoid arthritis QTL 16 unknown - - - - 20120809 -9606 474237 RA17 - - RGD:1298447 9 - Rheumatoid arthritis QTL 17 unknown - - - - 20120809 -9606 474238 RA31 - - RGD:1298493 X - Rheumatoid arthritis QTL 31 unknown - - - - 20120809 -9606 474239 RA18 - - RGD:1298457 10 - Rheumatoid arthritis QTL 18 unknown - - - - 20120809 -9606 474240 RA19 - - RGD:1298500 11 - Rheumatoid arthritis QTL 19 unknown - - - - 20120809 -9606 474241 RA20 - - RGD:1298480 12 - Rheumatoid arthritis QTL 20 unknown - - - - 20120809 -9606 474242 RA21 - - RGD:1298509 12 - Rheumatoid arthritis QTL 21 unknown - - - - 20120809 -9606 474243 RA22 - - RGD:1298466 12 - Rheumatoid arthritis QTL 22 unknown - - - - 20120809 -9606 474244 RA23 - - RGD:1298469 14 - Rheumatoid arthritis QTL 23 unknown - - - - 20120809 -9606 474245 RA24 - - RGD:1298485 14 - Rheumatoid arthritis QTL 24 unknown - - - - 20120809 -9606 474246 RA25 - - RGD:1298501 16 - Rheumatoid arthritis QTL 25 unknown - - - - 20120809 -9606 474247 RA26 - - RGD:1298488 16 - Rheumatoid arthritis QTL 26 unknown - - - - 20120809 -9606 474248 RA27 - - RGD:1298430 17 - Rheumatoid arthritis QTL 27 unknown - - - - 20120809 -9606 474249 RA28 - - RGD:1298510 17 - Rheumatoid arthritis QTL 28 unknown - - - - 20120809 -9606 474250 RA29 - - RGD:1298512 17 - Rheumatoid arthritis QTL 29 unknown - - - - 20120809 -9606 474251 RA30 - - RGD:1298455 18 - Rheumatoid arthritis QTL 30 unknown - - - - 20120809 -9606 474252 BP10 - - RGD:1298483 2 - Blood pressure QTL 10 unknown - - - - 20120809 -9606 474253 BP11 - - RGD:1298453 8 - Blood pressure QTL 11 unknown - - - - 20120809 -9606 474254 BP12 - - RGD:1298478 21 - Blood pressure QTL 12 unknown - - - - 20120809 -9606 474255 BP13 - - RGD:1298409 18 - Blood pressure QTL 13 unknown - - - - 20120809 -9606 474256 BP1 - - RGD:1298434 4 - Blood pressure QTL 1 unknown - - - - 20120809 -9606 474257 BP2 - - RGD:1298482 8 - Blood pressure QTL 2 unknown - - - - 20120809 -9606 474258 BP4 - - RGD:1298438 6 - Blood pressure QTL 4 unknown - - - - 20120809 -9606 474259 BP3 - - RGD:1298476 19 - Blood pressure QTL 3 unknown - - - - 20120809 -9606 474260 BP14 - - RGD:1298465 17 - Blood pressure QTL 14 unknown - - - - 20120809 -9606 474261 BP15 - - RGD:1298443 17 - Blood pressure QTL 15 unknown - - - - 20120809 -9606 474262 BP16 - - RGD:1298406 17 - Blood pressure QTL 16 unknown - - - - 20120809 -9606 474263 BW8 - - RGD:1298507 5 - Body weight QTL 8 unknown - - - - 20120809 -9606 474264 BW9 - - RGD:1298458 6 - Body weight QTL 9 unknown - - - - 20120809 -9606 474265 BW10 - - RGD:1298497 3 - Body weight QTL 10 unknown - - - - 20120809 -9606 474266 BP25 - - RGD:1300019 1 - Blood pressure QTL 25 unknown - - - - 20120809 -9606 474267 BP26 - - RGD:1300001 4 - Blood pressure QTL 26 unknown - - - - 20120809 -9606 474268 BP28 - - RGD:1300008 X - Blood pressure QTL 28 unknown - - - - 20120809 -9606 474269 BP27 - - RGD:1300010 16 - Blood pressure QTL 27 unknown - - - - 20120809 -9606 474270 BW2 - - RGD:1298470 2 - Body weight QTL 2 unknown - - - - 20120809 -9606 474271 BW3 - - RGD:1298486 1 - Body weight QTL 3 unknown - - - - 20120809 -9606 474272 BW4 - - RGD:1298446 4 - Body weight QTL 4 unknown - - - - 20120809 -9606 474273 BW5 - - RGD:1298505 6 - Body weight QTL 5 unknown - - - - 20120809 -9606 474274 BW7 - - RGD:1298445 8 - Body weight QTL 7 unknown - - - - 20120809 -9606 474275 BW6 - - RGD:1298456 20 - Body weight QTL 6 unknown - - - - 20120809 -9606 474276 BW23 - - RGD:1300030 3 - Body weight QTL 23 unknown - - - - 20120809 -9606 474277 BW24 - - RGD:1300011 3 - Body weight QTL 24 unknown - - - - 20120809 -9606 474278 BW25 - - RGD:1300024 7 - Body weight QTL 25 unknown - - - - 20120809 -9606 474279 BW26 - - RGD:1299999 7 - Body weight QTL 26 unknown - - - - 20120809 -9606 474280 BW27 - - RGD:1300022 7 - Body weight QTL 27 unknown - - - - 20120809 -9606 474281 BW28 - - RGD:1300002 14 - Body weight QTL 28 unknown - - - - 20120809 -9606 474282 BW29 - - RGD:1300036 16 - Body weight QTL 29 unknown - - - - 20120809 -9606 474283 BW30 - - RGD:1300035 17 - Body weight QTL 30 unknown - - - - 20120809 -9606 474284 BW31 - - RGD:1300020 17 - Body weight QTL 31 unknown - - - - 20120809 -9606 474285 OA1 - - RGD:1298477 1 - Osteoarthritis QTL 1 unknown - - - - 20120809 -9606 474286 OA2 - - RGD:1298481 2 - Osteoarthritis QTL 2 unknown - - - - 20120809 -9606 474287 OSTEAR3_H - OA3_H RGD:1298502 7 - Osteoarthritis QTL 3 unknown - - - - 20120809 -9606 474288 OA4 - - RGD:1298471 9 - Osteoarthritis QTL 4 unknown - - - - 20120809 -9606 474289 OA5 - - RGD:1298420 11 - Osteoarthritis QTL 5 unknown - - - - 20120809 -9606 474290 OA6 - - RGD:1298435 12 - Osteoarthritis QTL 6 unknown - - - - 20120809 -9606 474291 OA7 - - RGD:1298460 13 - Osteoarthritis QTL 7 unknown - - - - 20120809 -9606 474292 OA8 - - RGD:1298436 19 - Osteoarthritis QTL 8 unknown - - - - 20120809 -9606 474293 OA9 - - RGD:1298467 19 - Osteoarthritis QTL 9 unknown - - - - 20120809 -9606 474294 BW19 - - RGD:1298437 1 - Body weight QTL 19 unknown - - - - 20120809 -9606 474295 BW20 - - RGD:1298503 8 - Body weight QTL 20 unknown - - - - 20120809 -9606 474296 BFD1 - - RGD:1298487 3 - Body fluid distribution QTL 1 unknown - - - - 20120809 -9606 474297 BFD2 - - RGD:1298411 5 - Body fluid distribution QTL 2 unknown - - - - 20120809 -9606 474298 BFD3 - - RGD:1298426 6 - Body fluid distribution QTL 3 unknown - - - - 20120809 -9606 474299 BFD4 - - RGD:1298407 6 - Body fluid distribution QTL 4 unknown - - - - 20120809 -9606 474300 BFD5 - - RGD:1298414 7 - Body fluid distribution QTL 5 unknown - - - - 20120809 -9606 474301 BP5 - - RGD:1298491 1 - Blood pressure QTL 5 unknown - - - - 20120809 -9606 474302 BP6 - - RGD:1298448 10 - Blood pressure QTL 6 unknown - - - - 20120809 -9606 474303 BW11 - - RGD:1298496 3 - Body weight QTL 11 unknown - - - - 20120809 -9606 474304 BW33 - - RGD:1300032 2 - Body weight QTL 33 unknown - - - - 20120809 -9606 474305 BW32 - - RGD:1300017 18 - Body weight QTL 32 unknown - - - - 20120809 -9606 474306 BW34 - - RGD:1300027 19 - Body weight QTL 34 unknown - - - - 20120809 -9606 474307 BW18 - - RGD:1300016 7 - Body weight QTL 18 unknown - - - - 20120809 -9606 474308 UAE1 - - RGD:1298499 19 - Urinary albumin excretion QTL 1 unknown - - - - 20120809 -9606 474309 UAE2 - - RGD:1298449 12 - Urinary albumin excretion QTL 2 unknown - - - - 20120809 -9606 474310 OA26 - - RGD:1298417 4 - Osteoarthritis QTL 26 unknown - - - - 20120809 -9606 474311 BW15 - - RGD:1300018 4 - Body weight QTL 15 unknown - - - - 20120809 -9606 474312 BW12 - - RGD:1299998 1 - Body weight QTL 12 unknown - - - - 20120809 -9606 474313 BW13 - - RGD:1300029 2 - Body weight QTL 13 unknown - - - - 20120809 -9606 474314 BW14 - - RGD:1300003 6 - Body weight QTL 14 unknown - - - - 20120809 -9606 474333 GEVQ2 - - MIM:608878 20 20q13 gene expression, variation in, quantitative trait locus unknown - - - - 20120622 -9606 474334 GEVQ1 - - MIM:608875 14 14q32 gene expression, variation in, quantitative trait locus unknown - - - - 20120622 -9606 474337 SUMO1P2 - bA375F2.1 HGNC:33149 1 1q24.2 SUMO1 pseudogene 2 pseudo SUMO1P2 SUMO1 pseudogene 2 O - 20121230 -9606 474338 SUMO1P3 - - HGNC:33150 1 1q22 SUMO1 pseudogene 3 pseudo SUMO1P3 SUMO1 pseudogene 3 O - 20121230 -9606 474340 SUMO1P4 - - HGNC:33151 19 19q13 SUMO1 pseudogene 4 pseudo SUMO1P4 SUMO1 pseudogene 4 O - 20121230 -9606 474341 SUMO1P5 - - HGNC:33152 5 5q23 SUMO1 pseudogene 5 pseudo SUMO1P5 SUMO1 pseudogene 5 O - 20121230 -9606 474343 SPIN2B RP3-323P24.2 SPIN-2|SPIN2_duplicate|dJ323P24.2 HGNC:33147|MIM:300517|Ensembl:ENSG00000186787|HPRD:18662|Vega:OTTHUMG00000021680 X Xp11.1 spindlin family, member 2B protein-coding SPIN2B spindlin family, member 2B O SPIN-2B|spindlin family, member 2 duplicate|spindlin-2B|spindlin-like protein 2B|telomeric SPIN2 copy 20121230 -9606 474344 GIMAP6 - IAN-2|IAN-6|IAN2|IAN6 HGNC:21918|Ensembl:ENSG00000133561|HPRD:13576|Vega:OTTHUMG00000159137 7 - GTPase, IMAP family member 6 protein-coding GIMAP6 GTPase, IMAP family member 6 O GTPase IMAP family member 6|immune associated nucleotide 2|immune associated nucleotide 6 20121230 -9606 474345 GIMAP3P - GIMAP3 HGNC:30975 7 7q36.1 GTPase, IMAP family member 3 pseudogene pseudo GIMAP3P GTPase, IMAP family member 3 pseudogene O - 20121230 -9606 474354 LRRC18 UNQ9338/PRO34010 UNQ933|UNQ9338|VKGE9338 HGNC:23199|Ensembl:ENSG00000165383|HPRD:17450|Vega:OTTHUMG00000018182 10 10q11.23 leucine rich repeat containing 18 protein-coding LRRC18 leucine rich repeat containing 18 O leucine-rich repeat-containing protein 18 20121230 -9606 474381 H2AFB2 - H2A.Bbd HGNC:18298|Ensembl:ENSG00000198307|HPRD:18663|Vega:OTTHUMG00000034292 X Xq28 H2A histone family, member B2 protein-coding H2AFB2 H2A histone family, member B2 O H2A Barr body deficient|H2A Barr body-deficient|histone H2A-Bbd type 2/3 20121230 -9606 474382 H2AFB1 - H2A.Bbd HGNC:22516|Ensembl:ENSG00000198082|HPRD:18664|Vega:OTTHUMG00000034291 X Xq28 H2A histone family, member B1 protein-coding H2AFB1 H2A histone family, member B1 O H2A Barr body-deficient|histone H2A-Bbd type 1 20121230 -9606 474383 F8A2 - - HGNC:31849|Ensembl:ENSG00000198444|HPRD:18665|Vega:OTTHUMG00000034293 X Xq28 coagulation factor VIII-associated 2 protein-coding F8A2 coagulation factor VIII-associated 2 O coagulation factor VIII-associated (intronic transcript) 2|cpG island protein|factor VIII intron 22 protein 20121230 -9606 474384 F8A3 - - HGNC:31850|Ensembl:ENSG00000185990|HPRD:18666|Vega:OTTHUMG00000034289 X Xq28 coagulation factor VIII-associated 3 protein-coding F8A3 coagulation factor VIII-associated 3 O coagulation factor VIII-associated (intronic transcript) 3|cpG island protein|factor VIII intron 22 protein 20121230 -9606 474386 SNAX1 - ADSA HGNC:23701|MIM:608984 8 8p12-q12.1 sensory ataxia 1 (autosomal dominant) unknown SNAX1 sensory ataxia 1 (autosomal dominant) O - 20120622 -9606 474387 OFC4 - - MIM:608371 4 4q21-q31 Orofacial cleft 4 unknown - - - - 20120622 -9606 474388 CMM4 - - MIM:608035 1 1p22 Melanoma, cutaneous malignant, 4 unknown - - - - 20120622 -9606 492295 RAC1P3 - Psi3Rac1 HGNC:31833 13 13q14.11 ras-related C3 botulinum toxin substrate 1 pseudogene 3 pseudo RAC1P3 ras-related C3 botulinum toxin substrate 1 pseudogene 3 O - 20121230 -9606 492303 GEMIN8P4 - - HGNC:37979 1 1p22 gem (nuclear organelle) associated protein 8 pseudogene 4 pseudo GEMIN8P4 gem (nuclear organelle) associated protein 8 pseudogene 4 O - 20121230 -9606 492307 C8orf22 - - HGNC:31745|Ensembl:ENSG00000168333|HPRD:16670|Vega:OTTHUMG00000164217 8 8q11 chromosome 8 open reading frame 22 protein-coding C8orf22 chromosome 8 open reading frame 22 O exocrine differentiation and proliferation factor-like protein|pancreatic progenitor cell differentiation and proliferation factor-like protein 20121230 -9606 492311 IGIP - C5orf53 HGNC:33847|Ensembl:ENSG00000182700|HPRD:17411|Vega:OTTHUMG00000163359 5 5q31 IgA-inducing protein homolog (Bos taurus) protein-coding IGIP IgA-inducing protein homolog (Bos taurus) O IgA-inducing protein (Bos taurus)|IgA-inducing protein homolog 20121230 -9606 493753 COA5 - 6330578E17Rik|C2orf64|Pet191 HGNC:33848|MIM:613920|Ensembl:ENSG00000183513|HPRD:17563|Vega:OTTHUMG00000153101 2 2q11.2 cytochrome c oxidase assembly factor 5 protein-coding COA5 cytochrome c oxidase assembly factor 5 O protein C2orf64 20121230 -9606 493754 LOC493754 - - - 7 7q11.21 RAB guanine nucleotide exchange factor (GEF) 1 pseudogene pseudo - - - - 20121230 -9606 493812 HCG11 - bK14H9.3 HGNC:17707 6 6p22.2 HLA complex group 11 (non-protein coding) miscRNA HCG11 HLA complex group 11 (non-protein coding) O - 20121230 -9606 493813 HCG13P - dJ193B12.5 HGNC:17724 6 6p21 HLA complex group 13 pseudogene pseudo HCG13P HLA complex group 13 pseudogene O - 20120404 -9606 493816 TUBBP4 - bA537H15.5 HGNC:19913 9 9p13.3 tubulin, beta pseudogene 4 pseudo TUBBP4 tubulin, beta pseudogene 4 O - 20121230 -9606 493818 MYMY3 - - HGNC:20769|MIM:608796 8 8q23 moyamoya disease 3 unknown MYMY3 moyamoya disease 3 O - 20120622 -9606 493821 ZNF603P - p373c6.7 HGNC:23322 6 6p21 zinc finger protein 603, pseudogene pseudo ZNF603P zinc finger protein 603, pseudogene O - 20121230 -9606 493824 ZNF601P - D6S2711|PRD51p|dJ313I6.8 HGNC:29407 6 6p21 zinc finger protein 601, pseudogene pseudo ZNF601P zinc finger protein 601, pseudogene O - 20121230 -9606 493825 POLR2LP - - HGNC:31340 6 6p21.3 polymerase (RNA) II (DNA directed) polypeptide L pseudogene pseudo POLR2LP polymerase (RNA) II (DNA directed) polypeptide L pseudogene O - 20121230 -9606 493829 TRIM72 - MG53 HGNC:32671|MIM:613288|Ensembl:ENSG00000177238|HPRD:17412|Vega:OTTHUMG00000176754 16 16p11.2 tripartite motif containing 72 protein-coding TRIM72 tripartite motif containing 72 O mitsugumin-53|tripartite motif-containing 72|tripartite motif-containing protein 72 20121230 -9606 493856 CISD2 - ERIS|Miner1|NAF-1|WFS2|ZCD2 HGNC:24212|MIM:611507|Ensembl:ENSG00000145354|HPRD:17413|Vega:OTTHUMG00000161014 4 4q24 CDGSH iron sulfur domain 2 protein-coding CISD2 CDGSH iron sulfur domain 2 O CDGSH iron-sulfur domain-containing protein 2|endoplasmic reticulum intermembrane small protein|mitoNEET related 1|mitoNEET-related 1 protein|nutrient-deprivation autophagy factor-1|zinc finger, CDGSH-type domain 2 20121230 -9606 493860 CCDC73 - NY-SAR-79 HGNC:23261|MIM:612328|Ensembl:ENSG00000186714|HPRD:17414|Vega:OTTHUMG00000166279 11 11p13 coiled-coil domain containing 73 protein-coding CCDC73 coiled-coil domain containing 73 O coiled-coil domain-containing protein 73|sarcoma antigen NY-SAR-79 20121230 -9606 493861 EID3 - NS4EB|NSE4B|NSMCE4B HGNC:32961|MIM:612986|Ensembl:ENSG00000255150|HPRD:17415|Vega:OTTHUMG00000165912 12 12q23.3 EP300 interacting inhibitor of differentiation 3 protein-coding EID3 EP300 interacting inhibitor of differentiation 3 O E1A-like inhibitor of differentiation 3|EID-1-like inhibitor of differentiation 3|EID-3|EP300-interacting inhibitor of differentiation 3|non-SMC element 4 homolog B|non-structural maintenance of chromosomes element 4 homolog B 20121230 -9606 493862 ARCC1 - - MIM:609026 6 6p12-q12 Age-related cortical cataract 1 unknown - - - - 20120622 -9606 493869 GPX8 UNQ847/PRO1785 EPLA847|GPx-8|GSHPx-8|UNQ847 HGNC:33100|Ensembl:ENSG00000164294|HPRD:17416|Vega:OTTHUMG00000162601 5 5q11.2 glutathione peroxidase 8 (putative) protein-coding GPX8 glutathione peroxidase 8 (putative) O probable glutathione peroxidase 8 20121230 -9606 493900 TMEM9B-AS1 - C11orf18 HGNC:19230 11 11p15.3 TMEM9B antisense RNA 1 miscRNA TMEM9B-AS1 TMEM9B antisense RNA 1 O - 20121117 -9606 493901 RNASE12 - - HGNC:24211|Ensembl:ENSG00000206171|Ensembl:ENSG00000258436|HPRD:18667|Vega:OTTHUMG00000170991 14 14q11.1 ribonuclease, RNase A family, 12 (non-active) protein-coding RNASE12 ribonuclease, RNase A family, 12 (non-active) O ribonuclease-like protein 12 20121230 -9606 493911 PHOSPHO2 - - HGNC:28316|Ensembl:ENSG00000144362|HPRD:17848|Vega:OTTHUMG00000153981 2 2q31.1 phosphatase, orphan 2 protein-coding PHOSPHO2 phosphatase, orphan 2 O pyridoxal phosphate phosphatase PHOSPHO2 20121230 -9606 493913 PAPPA-AS1 - DIPAS|NCRNA00156|PAPPA-AS|PAPPAAS|PAPPAS|TAF2C2|TAF4B|TAFII105 HGNC:35152|MIM:610689 9 9q33.2 PAPPA antisense RNA 1 unknown PAPPA-AS1 PAPPA antisense RNA 1 O - 20121021 -9606 493987 MT1P1 RP11-435O5.1 bA435O5.3 HGNC:23681 9 9q22.32 metallothionein 1 pseudogene 1 pseudo MT1P1 metallothionein 1 pseudogene 1 O - 20121230 -9606 494028 CVMRF - - MIM:300471 X - cubitus valgus with mental retardation and unusual facies unknown - - - - 20120622 -9606 494029 MENOQ1 - - MIM:300488 X Xp21.3 menopause, natural, age at, QTL unknown - - - - 20120622 -9606 494115 RBMXL1 RP4-531M19.2 RBM1 HGNC:25073|Ensembl:ENSG00000213516|HPRD:17417|Vega:OTTHUMG00000010661 1 1p22.2 RNA binding motif protein, X-linked-like 1 protein-coding RBMXL1 RNA binding motif protein, X-linked-like 1 O RNA binding motif protein, X-linked-like-1|heterogeneous nuclear ribonucleoprotein G-like 1 20121230 -9606 494118 SPANXN1 - CT11.6 HGNC:33174|MIM:300664|Ensembl:ENSG00000203923|HPRD:18090|Vega:OTTHUMG00000022593 X Xq27 SPANX family, member N1 protein-coding SPANXN1 SPANX family, member N1 O cancer/testis antigen family 11, member 6|nuclear-associated protein SPAN-Xn1|sperm protein associated with the nucleus on the X chromosome N1 20121230 -9606 494119 SPANXN2 - CT11.7|SPANX-N2 HGNC:33175|MIM:300665|Ensembl:ENSG00000203924|HPRD:18091|Vega:OTTHUMG00000022583 X Xq27.3 SPANX family, member N2 protein-coding SPANXN2 SPANX family, member N2 O cancer/testis antigen family 11, member 7|nuclear-associated protein SPAN-Xn2|sperm protein associated with the nucleus on the X chromosome N2 20121230 -9606 494127 LOC494127 - - - 9 9q21.33 NFYC pseudogene pseudo - - - - 20121230 -9606 494141 LOC494141 - - - 11 11p15.1 solute carrier family 25, member 51 pseudogene pseudo - - - - 20121230 -9606 494142 DFNM2 - - HGNC:31866 8 8p23 deafness (mitochondrial) modifier 2 unknown DFNM2 deafness (mitochondrial) modifier 2 O - 20110215 -9606 494143 CHAC2 - - HGNC:32363|Ensembl:ENSG00000143942|HPRD:17418|Vega:OTTHUMG00000151824 2 2p16 ChaC, cation transport regulator homolog 2 (E. coli) protein-coding CHAC2 ChaC, cation transport regulator homolog 2 (E. coli) O ChaC, cation transport regulator-like 2|cation transport regulator-like protein 2 20121230 -9606 494148 DFNB55 - - HGNC:28876|MIM:609952 4 4q12-q13.2 deafness, autosomal recessive 55 unknown DFNB55 deafness, autosomal recessive 55 O - 20120622 -9606 494149 DFNB56 - - HGNC:31877 - - deafness, autosomal recessive 56 unknown DFNB56 deafness, autosomal recessive 56 O - 20110215 -9606 494150 LOC494150 - - - 12 12q13 prohibitin pseudogene pseudo - - - - 20121230 -9606 494188 FBXO47 - - HGNC:31969|MIM:609498|Ensembl:ENSG00000204952|HPRD:16886|Vega:OTTHUMG00000178945 17 17q12|17q12 F-box protein 47 protein-coding FBXO47 F-box protein 47 O F-box only protein 47 20121230 -9606 494197 SPANXN5 - CT11.10|SPANX-N5 HGNC:33178|MIM:300668|Ensembl:ENSG00000204363|HPRD:18094|Vega:OTTHUMG00000021590 X Xp11.22 SPANX family, member N5 protein-coding SPANXN5 SPANX family, member N5 O cancer/testis antigen family 11, member 10|nuclear-associated protein SPAN-Xn5|sperm protein associated with the nucleus on the X chromosome N5 20121230 -9606 494323 MIR361 - MIRN361|hsa-mir-361 HGNC:31867|miRBase:MI0000760 X - microRNA 361 miscRNA MIR361 microRNA 361 O - 20121230 -9606 494324 MIR375 - MIRN375|hsa-mir-375|miRNA375 HGNC:31868|MIM:611173|miRBase:MI0000783 2 2q35 microRNA 375 miscRNA MIR375 microRNA 375 O - 20121230 -9606 494325 MIR376A1 - MIR376A-1|MIRN376A|MIRN376A-1|MIRN376A1 HGNC:31869|MIM:610959|miRBase:MI0000784 14 14q32.31 microRNA 376a-1 miscRNA MIR376A1 microRNA 376a-1 O - 20121230 -9606 494326 MIR377 - MIRN377|hsa-mir-377 HGNC:31870|miRBase:MI0000785 14 14q32.31 microRNA 377 miscRNA MIR377 microRNA 377 O - 20121230 -9606 494327 MIR378A - MIR378|MIRN378|hsa-mir-378|hsa-mir-378a|miRNA378 HGNC:31871|MIM:611957|miRBase:MI0000786 5 5q32 microRNA 378a miscRNA MIR378A microRNA 378a O - 20121230 -9606 494328 MIR379 - MIRN379|hsa-mir-379 HGNC:31872|miRBase:MI0000787 14 14q32.31 microRNA 379 miscRNA MIR379 microRNA 379 O - 20121230 -9606 494329 MIR380 - MIR380-3p|MIRN380|hsa-mir-380 HGNC:31873|MIM:613654|miRBase:MI0000788 14 14q32.31 microRNA 380 miscRNA MIR380 microRNA 380 O - 20121230 -9606 494330 MIR381 - MIRN381|hsa-mir-381 HGNC:31874|miRBase:MI0000789 14 14q32.31 microRNA 381 miscRNA MIR381 microRNA 381 O - 20121230 -9606 494331 MIR382 - MIRN382|hsa-mir-382 HGNC:31875|miRBase:MI0000790 14 14q32.31 microRNA 382 miscRNA MIR382 microRNA 382 O - 20121230 -9606 494332 MIR383 - MIRN383|hsa-mir-383 HGNC:31876|miRBase:MI0000791 8 8p22 microRNA 383 miscRNA MIR383 microRNA 383 O - 20121230 -9606 494333 MIR384 - MIRN384|hsa-mir-384 HGNC:31878|miRBase:MI0001145 X Xq21.1 microRNA 384 miscRNA MIR384 microRNA 384 O - 20121230 -9606 494334 MIR422A - MIRN422A HGNC:31879|miRBase:MI0001444 15 15q22.31 microRNA 422a miscRNA MIR422A microRNA 422a O - 20121230 -9606 494335 MIR423 - MIRN423|hsa-mir-423 HGNC:31880|miRBase:MI0001445 17 17q11.2 microRNA 423 miscRNA MIR423 microRNA 423 O - 20121230 -9606 494336 MIR424 - MIR322|MIRN424|hsa-mir-424|miRNA424 HGNC:31881|MIM:300682|miRBase:MI0001446 X Xq26.3 microRNA 424 miscRNA MIR424 microRNA 424 O - 20121230 -9606 494337 MIR425 - MIRN425|hsa-mir-425 HGNC:31882|miRBase:MI0001448 3 3p21.31 microRNA 425 miscRNA MIR425 microRNA 425 O - 20121230 -9606 494446 NRCLP3 - - MIM:609039 21 21q11.2 Narcolepsy 3 unknown - - - - 20120622 -9606 494447 COILP2 - COILP-2 HGNC:25389 4 4q27-q28 coilin pseudogene 2 pseudo COILP2 coilin pseudogene 2 O - 20121230 -9606 494470 RNF165 - ARKL2 HGNC:31696|Ensembl:ENSG00000141622|Vega:OTTHUMG00000179230 18 18q21.1 ring finger protein 165 protein-coding RNF165 ring finger protein 165 O RING finger protein 165 20121230 -9606 494513 DFNB59 - PJVK HGNC:29502|MIM:610219|Ensembl:ENSG00000204311|Vega:OTTHUMG00000154425 2 2q31.2 deafness, autosomal recessive 59 protein-coding DFNB59 deafness, autosomal recessive 59 O autosomal recessive deafness type 59 protein|pejvakin 20121230 -9606 494514 C18orf56 - - HGNC:29553|Ensembl:ENSG00000176912|HPRD:18668|Vega:OTTHUMG00000178257 18 18p11.32 chromosome 18 open reading frame 56 protein-coding C18orf56 chromosome 18 open reading frame 56 O putative uncharacterized protein C18orf56 20121230 -9606 494540 TBCAP1 - - HGNC:42630 X Xp21 tubulin folding cofactor A pseudogene 1 pseudo TBCAP1 tubulin folding cofactor A pseudogene 1 O - 20121230 -9606 494541 TBCAP2 - - HGNC:42631 1 1p36 tubulin folding cofactor A pseudogene 2 pseudo TBCAP2 tubulin folding cofactor A pseudogene 2 O - 20121230 -9606 494542 TBCAP3 - - HGNC:42632 4 4q23 tubulin folding cofactor A pseudogene 3 pseudo TBCAP3 tubulin folding cofactor A pseudogene 3 O - 20121230 -9606 494551 WEE2 hCG_39453 WEE1B HGNC:19684|MIM:614084|Ensembl:ENSG00000214102|Vega:OTTHUMG00000157536 7 7q32 WEE1 homolog 2 (S. pombe) protein-coding WEE2 WEE1 homolog 2 (S. pombe) O wee1-like protein kinase 1B|wee1-like protein kinase 2|wee1B kinase 20121230 -9606 494555 TWF1P2 RP13-228J13.6 A6ps2|PTK9P2 HGNC:21737 X Xq28 twinfilin 1 pseudogene 2 pseudo TWF1P2 twinfilin 1 pseudogene 2 O - 20121230 -9606 494558 LOC494558 - - - 9 9q21.11 uncharacterized LOC494558 miscRNA - - - - 20121230 -9606 497048 KU-MEL-3 - - HPRD:17255 6 6p25.3-p24.1 KU-MEL-3 unknown - - - - 20121230 -9606 497049 FLJ25758 - - HPRD:16923 19 19p13.3 MAP/microtubule affinity-regulating kinase 1 pseudogene pseudo - - - - 20121230 -9606 497188 GLC1I - - HGNC:31912|MIM:609745 15 15q11-q13 glaucoma 1, open angle, I unknown GLC1I glaucoma 1, open angle, I O - 20120622 -9606 497189 TIFAB - - HGNC:34024|MIM:612663|Ensembl:ENSG00000255833|Vega:OTTHUMG00000129140 5 5q31.1 TRAF-interacting protein with forkhead-associated domain, family member B protein-coding TIFAB TRAF-interacting protein with forkhead-associated domain, family member B O TIFA-like protein|TIFA-related protein TIFAB|TRAF-interacting protein with FHA domain-containing protein B 20121230 -9606 497190 CLEC18B UNQ306/PRO347 MRCL2 HGNC:33849|Ensembl:ENSG00000140839|HPRD:17419|Vega:OTTHUMG00000176998 16 16q22.3 C-type lectin domain family 18, member B protein-coding CLEC18B C-type lectin domain family 18, member B O C-type lectin domain family 18 member B|mannose receptor-like 2|mannose receptor-like protein 1|secretory protein LOC497190 20121230 -9606 497231 CLN9 - - HGNC:32782|MIM:609055 - - ceroid-lipofuscinosis, neuronal 9 unknown CLN9 ceroid-lipofuscinosis, neuronal 9 O - 20110714 -9606 497256 LOC497256 - - - 9 9q22.1 uncharacterized LOC497256 unknown - - - - 20120511 -9606 497257 LOC497257 - - - - - uncharacterized LOC497257 protein-coding - - - - 20120508 -9606 497258 BDNF-AS - ANTI-BDNF|BDNF|BDNF-AS1|BDNFOS|NCRNA00049 HGNC:20608|MIM:611468 11 11p14.1 BDNF antisense RNA miscRNA BDNF-AS BDNF antisense RNA O - 20121230 -9606 497259 C18orf61 - - - 18 18p11.22 uncharacterized LOC497259 miscRNA - - - - 20121230 -9606 497634 LINC00293 - BEYLA|NCRNA00293 HGNC:39078|MIM:609543 8 8q11.1 long intergenic non-protein coding RNA 293 miscRNA LINC00293 long intergenic non-protein coding RNA 293 O - 20121230 -9606 497657 ANIB3 - AIB3 HGNC:31942|MIM:609122 1 1p36.13-p34.3 aneurysm, intracranial berry 3 unknown ANIB3 aneurysm, intracranial berry 3 O - 20120622 -9606 497658 ARVD7 - ARVC7 MIM:609160 - - Arrhythmogenic right ventricular dysplasia, familial, 7 unknown - - - - 20121027 -9606 497661 C18orf32 - - HGNC:31690|Ensembl:ENSG00000177576|Vega:OTTHUMG00000179688 18 18q21.1 chromosome 18 open reading frame 32 protein-coding C18orf32 chromosome 18 open reading frame 32 O UPF0729 protein C18orf32|putative NF-kappa-B-activating protein 200|putative NFkB activating protein 20121230 -9606 497662 RRIS - - MIM:609116 10 10q26 Respiratory rhythmicity in sleep unknown - - - - 20120622 -9606 503496 MRX86 - - HGNC:25212 X Xp11.3-q13.1 mental retardation, X-linked 86 unknown MRX86 mental retardation, X-linked 86 O - 20110702 -9606 503497 MS4A13 - - HGNC:16674|Ensembl:ENSG00000204979|HPRD:17604|Vega:OTTHUMG00000167615 11 11q12.2 membrane-spanning 4-domains, subfamily A, member 13 protein-coding MS4A13 membrane-spanning 4-domains, subfamily A, member 13 O membrane-spanning 4-domains subfamily A member 13|testis-expressed transmembrane protein 4|testis-expressed transmembrane-4 protein 20121230 -9606 503519 LOC503519 - - - 15 15q11.2 uncharacterized LOC503519 miscRNA - - - - 20121230 -9606 503538 A1BG-AS1 - A1BG-AS|A1BGAS|NCRNA00181 HGNC:37133 19 19q13.4 A1BG antisense RNA 1 miscRNA A1BG-AS1 A1BG antisense RNA 1 O - 20121230 -9606 503540 LOC503540 - - - 5 5p14.2 AKT interacting protein pseudogene pseudo - - - - 20121230 -9606 503542 SPRN - SHADOO|SHO|bA108K14.1 HGNC:16871|MIM:610447|Ensembl:ENSG00000203772|HPRD:18499|Vega:OTTHUMG00000019324 10 10q26.3 shadow of prion protein homolog (zebrafish) protein-coding SPRN shadow of prion protein homolog (zebrafish) O hypothetical protein BC004409|protein shadoo|shadow of prion protein 20121230 -9606 503543 BTF3P9 CTD-2090I13.4 - HGNC:38573 1 1q42 basic transcription factor 3 pseudogene 9 pseudo BTF3P9 basic transcription factor 3 pseudogene 9 O - 20121230 -9606 503569 FLJ35946 - - - 5 5q21.1 uncharacterized protein FLJ35946 miscRNA - - - - 20121230 -9606 503582 ARGFX - - HGNC:30146|MIM:611164|Ensembl:ENSG00000186103|HPRD:18525|Vega:OTTHUMG00000159395 3 3q13.33 arginine-fifty homeobox protein-coding ARGFX arginine-fifty homeobox O - 20121230 -9606 503583 ARGFXP1 - - HGNC:17252 5 5q23.2 arginine-fifty homeobox pseudogene 1 pseudo ARGFXP1 arginine-fifty homeobox pseudogene 1 O - 20121230 -9606 503611 TAAR7P - - HGNC:31925 6 6q23.2 trace amine associated receptor 7, pseudogene pseudo TAAR7P trace amine associated receptor 7, pseudogene O - 20121230 -9606 503612 TAAR4P - - HGNC:31924 6 6q23.2 trace amine associated receptor 4, pseudogene pseudo TAAR4P trace amine associated receptor 4, pseudogene O - 20121230 -9606 503613 PSORS10 - - HGNC:31919|MIM:612410 18 18p11.23 psoriasis susceptibility 10 unknown PSORS10 psoriasis susceptibility 10 O - 20120622 -9606 503614 DEFB107B - HsT21816 HGNC:31918|Ensembl:ENSG00000198129|Vega:OTTHUMG00000149987 8 8p23.1 defensin, beta 107B protein-coding DEFB107B defensin, beta 107B O beta-defensin 107|beta-defensin 7|defensin, beta 107 20121230 -9606 503618 DEFB104B - BD-4|DEFB-4|hBD-4 HGNC:26165|Ensembl:ENSG00000177023|Vega:OTTHUMG00000149986 8 8p23.1 defensin, beta 104B protein-coding DEFB104B defensin, beta 104B O beta-defensin 104|beta-defensin 4|defensin, beta 104 20121230 -9606 503627 TPRX2P - TPRX2P1|TPRXP1 HGNC:32175 19 19q13.32 tetra-peptide repeat homeobox 2 pseudogene pseudo TPRX2P tetra-peptide repeat homeobox 2 pseudogene O - 20121230 -9606 503628 TPRX1P1 - TPRXP2 HGNC:32176 10 10q22.3 tetra-peptide repeat homeobox 1 pseudogene 1 pseudo TPRX1P1 tetra-peptide repeat homeobox 1 pseudogene 1 O - 20121230 -9606 503630 DUXAP1 - - HGNC:32180 2 2p11.2 double homeobox A pseudogene 1 pseudo DUXAP1 double homeobox A pseudogene 1 O - 20121230 -9606 503631 DUXAP2 - - HGNC:32181 8 8q22.3 double homeobox A pseudogene 2 pseudo DUXAP2 double homeobox A pseudogene 2 O - 20121230 -9606 503632 DUXAP3 - - HGNC:32182 10 10q11.21 double homeobox A pseudogene 3 pseudo DUXAP3 double homeobox A pseudogene 3 O - 20121230 -9606 503633 DUXAP4 - - HGNC:32183 10 10q11.21 double homeobox A pseudogene 4 pseudo DUXAP4 double homeobox A pseudogene 4 O - 20121230 -9606 503634 DUXAP5 - - HGNC:32184 11 11q23.3 double homeobox A pseudogene 5 pseudo DUXAP5 double homeobox A pseudogene 5 O - 20121230 -9606 503635 DUXAP6 - - HGNC:32185 15 15q26.1 double homeobox A pseudogene 6 pseudo DUXAP6 double homeobox A pseudogene 6 O - 20121230 -9606 503636 DUXAP7 - - HGNC:32186 20 20p11.23 double homeobox A pseudogene 7 pseudo DUXAP7 double homeobox A pseudogene 7 O - 20121230 -9606 503637 DUXAP8 - - HGNC:32187 22 22q11.21 double homeobox A pseudogene 8 pseudo DUXAP8 double homeobox A pseudogene 8 O - 20121230 -9606 503638 DUXAP9 - - HGNC:32188 14 14q11.2 double homeobox A pseudogene 9 pseudo DUXAP9 double homeobox A pseudogene 9 O - 20121209 -9606 503639 DUXAP10 - - HGNC:32189 14 14q11.2 double homeobox A pseudogene 10 pseudo DUXAP10 double homeobox A pseudogene 10 O - 20121209 -9606 503640 ARGFXP2 - - HGNC:23977 17 17q11.2 arginine-fifty homeobox pseudogene 2 pseudo ARGFXP2 arginine-fifty homeobox pseudogene 2 O - 20121230 -9606 503641 DPRXP1 - - HGNC:32167 2 2q32.1 divergent-paired related homeobox pseudogene 1 pseudo DPRXP1 divergent-paired related homeobox pseudogene 1 O - 20121230 -9606 503643 DPRXP2 - - HGNC:32168 6 6p21.31 divergent-paired related homeobox pseudogene 2 pseudo DPRXP2 divergent-paired related homeobox pseudogene 2 O - 20121230 -9606 503644 DPRXP3 - - HGNC:32169 14 14q13.2 divergent-paired related homeobox pseudogene 3 pseudo DPRXP3 divergent-paired related homeobox pseudogene 3 O - 20121230 -9606 503645 DPRXP4 - - HGNC:32170 17 17q11.2 divergent-paired related homeobox pseudogene 4 pseudo DPRXP4 divergent-paired related homeobox pseudogene 4 O - 20121230 -9606 503646 DPRXP5 - - HGNC:32171 21 21q22.13 divergent-paired related homeobox pseudogene 5 pseudo DPRXP5 divergent-paired related homeobox pseudogene 5 O - 20121230 -9606 503647 DPRXP6 - - HGNC:32172 X Xp11.4 divergent-paired related homeobox pseudogene 6 pseudo DPRXP6 divergent-paired related homeobox pseudogene 6 O - 20121230 -9606 503648 DPRXP7 - - HGNC:32173 X Xq23 divergent-paired related homeobox pseudogene 7 pseudo DPRXP7 divergent-paired related homeobox pseudogene 7 O - 20121230 -9606 503693 LOH12CR2 - LOH2CR12 HGNC:26524 12 12p13.2 loss of heterozygosity, 12, chromosomal region 2 (non-protein coding) miscRNA LOH12CR2 loss of heterozygosity, 12, chromosomal region 2 (non-protein coding) O - 20121230 -9606 503694 DEFB108P1 - DEFB-8|DEFB108|DEFB108A HGNC:18089 8 8p23.1 defensin, beta 108, pseudogene 1 pseudo DEFB108P1 defensin, beta 108, pseudogene 1 O - 20121209 -9606 503834 DPRX - - HGNC:32166|MIM:611165|Ensembl:ENSG00000204595|HPRD:10561|Vega:OTTHUMG00000170632 19 19q13.42 divergent-paired related homeobox protein-coding DPRX divergent-paired related homeobox O divergent paired-related homeobox 20121230 -9606 503835 DUXA - - HGNC:32179|MIM:611168|Ensembl:ENSG00000258873|HPRD:10619|Vega:OTTHUMG00000170714 19 19q13.43 double homeobox A protein-coding DUXA double homeobox A O double homeobox protein A 20121230 -9606 503837 DEFB108P2 - - HGNC:30847 8 8p23.1 defensin, beta 108, pseudogene 2 pseudo DEFB108P2 defensin, beta 108, pseudogene 2 O - 20121230 -9606 503838 DEFB109P3 - - HGNC:30838 8 8p23.1 defensin, beta 109, pseudogene 3 pseudo DEFB109P3 defensin, beta 109, pseudogene 3 O - 20121230 -9606 503839 DEFB109P2 - - HGNC:30592 8 8p23.1 defensin, beta 109, pseudogene 2 pseudo DEFB109P2 defensin, beta 109, pseudogene 2 O - 20121230 -9606 503840 DEFB108P4 - - HGNC:30174 8 8p23.1 defensin, beta 108, pseudogene 4 pseudo DEFB108P4 defensin, beta 108, pseudogene 4 O - 20121230 -9606 503841 DEFB106B - - HGNC:28879|Ensembl:ENSG00000187082|Vega:OTTHUMG00000129312 8 8p23.1 defensin, beta 106B protein-coding DEFB106B defensin, beta 106B O BD-6|DEFB-6|beta-defensin 106|beta-defensin 6|defensin, beta 106 20121230 -9606 503842 DFNB60 - - HGNC:18300 5 5q22-q31 deafness, autosomal recessive 60 unknown DFNB60 deafness, autosomal recessive 60 O - 20110215 -9606 504175 OR3D1P - - HGNC:25339 1 1q44 olfactory receptor, family 3, subfamily D, member 1 pseudogene pseudo OR3D1P olfactory receptor, family 3, subfamily D, member 1 pseudogene O - 20121230 -9606 504180 DEFB105B - - HGNC:29930|Ensembl:ENSG00000186599|Vega:OTTHUMG00000129315 8 8p23.1 defensin, beta 105B protein-coding DEFB105B defensin, beta 105B O BD-5|DEFB-5|beta-defensin 105|beta-defensin 5|defensin, beta 105 20121230 -9606 504181 OR5BN2P - - HGNC:29194 11 11q11 olfactory receptor, family 5, subfamily BN, member 2 pseudogene pseudo OR5BN2P olfactory receptor, family 5, subfamily BN, member 2 pseudogene O - 20121230 -9606 504185 DEFB108P3 - - HGNC:26227 8 8p23.1 defensin, beta 108, pseudogene 3 pseudo DEFB108P3 defensin, beta 108, pseudogene 3 O - 20121230 -9606 504189 OR8U8 - - HGNC:27538|HPRD:18488 11 11q11 olfactory receptor, family 8, subfamily U, member 8 protein-coding OR8U8 olfactory receptor, family 8, subfamily U, member 8 O olfactory receptor 8U8 20121230 -9606 504190 OR8U9 - - HGNC:29166|HPRD:18489 11 11q1 olfactory receptor, family 8, subfamily U, member 9 protein-coding OR8U9 olfactory receptor, family 8, subfamily U, member 9 O olfactory receptor 8U9 20121230 -9606 504191 OR9G9 - - HGNC:31940|HPRD:18490 11 11q11 olfactory receptor, family 9, subfamily G, member 9 protein-coding OR9G9 olfactory receptor, family 9, subfamily G, member 9 O olfactory receptor 9G9 20121230 -9606 541461 PSHK2 - - MIM:609153 2 2q35-q36 Pseudohyperkalemia, familial, 2, due to red cell leak unknown - - - - 20120622 -9606 541465 CT45A6 RP13-36C9.7 CT45-6|CT45.6 HGNC:33271|MIM:300797|Ensembl:ENSG00000226907|HPRD:18672|Vega:OTTHUMG00000022495 X Xq26.3 cancer/testis antigen family 45, member A6 protein-coding CT45A6 cancer/testis antigen family 45, member A6 O cancer/testis antigen 45-4/6|cancer/testis antigen 45A4/45A6|cancer/testis antigen CT45-6|cancer/testis antigen family 45 member A4/A6 20121230 -9606 541466 CT45A1 XX-FW88277B6.1 CT45|CT45-1|CT45.1 HGNC:33267|MIM:300648|Ensembl:ENSG00000232478|HPRD:18673|Vega:OTTHUMG00000022488 X Xq26.3 cancer/testis antigen family 45, member A1 protein-coding CT45A1 cancer/testis antigen family 45, member A1 O XX-FW88277B6.1|cancer/testis antigen 45-1|cancer/testis antigen 45A1|cancer/testis antigen CT45-1|cancer/testis antigen family 45 member A1 20121230 -9606 541467 LOC541467 - - - 4 4q13.3 uncharacterized LOC541467 unknown - - - - 20120710 -9606 541468 LURAP1 - C1orf190|LRAP35a|LRP35A HGNC:32327|Ensembl:ENSG00000171357|HPRD:18478|Vega:OTTHUMG00000007605 1 1p34 leucine rich adaptor protein 1 protein-coding LURAP1 leucine rich adaptor protein 1 O NF-kappa-B activator C1orf190|leucine repeat adapter protein 35A|leucine repeat adaptor protein 35a 20121230 -9606 541471 LOC541471 - - - 2 2q13 uncharacterized LOC541471 miscRNA - - - - 20121230 -9606 541472 LOC541472 - - - 7 7p21 uncharacterized LOC541472 unknown - - - - 20121230 -9606 541473 LOC541473 - - HPRD:18674 7 7q11.23 FK506 binding protein 6, 36kDa pseudogene pseudo - - - - 20121230 -9606 541565 C8orf58 - - HGNC:32233|Ensembl:ENSG00000241852|HPRD:18675|Vega:OTTHUMG00000154160 8 8p21 chromosome 8 open reading frame 58 protein-coding C8orf58 chromosome 8 open reading frame 58 O uncharacterized protein C8orf58 20121230 -9606 541578 CXorf40B - - HGNC:17402|Ensembl:ENSG00000197021|HPRD:18676|Vega:OTTHUMG00000034327 X Xq28 chromosome X open reading frame 40B protein-coding CXorf40B chromosome X open reading frame 40B O protein CXorf40B 20121230 -9606 541611 HSP90AB6P - HSP90Bf HGNC:32540 13 13q32.1 heat shock protein 90kDa alpha (cytosolic), class B member 6, pseudogene pseudo HSP90AB6P heat shock protein 90kDa alpha (cytosolic), class B member 6, pseudogene O - 20121230 -9606 542767 C1QTNF9B-AS1 - PCOTH HGNC:39839|HPRD:18678 13 13q12 C1QTNF9B antisense RNA 1 protein-coding C1QTNF9B-AS1 C1QTNF9B antisense RNA 1 O C1QTNF9B antisense RNA 1 (non-protein coding)|prostate collagen triple helix protein|protein PCOTH 20121230 -9606 544315 COPD7 - - RGD:1331632 1 - Chronic obstructive pulmonary disease QTL 7 unknown - - - - 20120809 -9606 544316 COPD23 - - RGD:1331633 19 - Chronic obstructive pulmonary disease QTL 23 unknown - - - - 20120809 -9606 544317 AASTH1 - - RGD:1331634 4 - Allergic/atopic asthma related QTL 1 unknown - - - - 20120809 -9606 544318 OA19 - - RGD:1298405 3 - Osteoarthritis QTL 19 unknown - - - - 20120809 -9606 544319 BP7 - - RGD:1298408 12 - Blood pressure QTL 7 unknown - - - - 20120809 -9606 544320 OA18 - - RGD:1298413 4 - Osteoarthritis QTL 18 unknown - - - - 20120809 -9606 544321 OA13 - - RGD:1298416 4 - Osteoarthritis QTL 13 unknown - - - - 20120809 -9606 544322 OA28 - - RGD:1298418 16 - Osteoarthritis QTL 28 unknown - - - - 20120809 -9606 544323 OA20 - - RGD:1298419 2 - Osteoarthritis QTL 20 unknown - - - - 20120809 -9606 544324 OA23 - - RGD:1298423 16 - Osteoarthritis QTL 23 unknown - - - - 20120809 -9606 544325 OA21 - - RGD:1298424 4 - Osteoarthritis QTL 21 unknown - - - - 20120809 -9606 544326 BP8 - - RGD:1298428 15 - Blood pressure QTL 8 unknown - - - - 20120809 -9606 544327 OA10 - - RGD:1298432 2 - Osteoarthritis QTL 10 unknown - - - - 20120809 -9606 544328 OA11 - - RGD:1298440 2 - Osteoarthritis QTL 11 unknown - - - - 20120809 -9606 544329 OA17 - - RGD:1298451 11 - Osteoarthritis QTL 17 unknown - - - - 20120809 -9606 544330 BW1 - - RGD:1298454 4 - Body weight QTL 1 unknown - - - - 20120809 -9606 544331 OA14 - - RGD:1298462 7 - Osteoarthritis QTL 14 unknown - - - - 20120809 -9606 544332 OA22 - - RGD:1298490 6 - Osteoarthritis QTL 22 unknown - - - - 20120809 -9606 544333 OA12 - - RGD:1298494 2 - Osteoarthritis QTL 12 unknown - - - - 20120809 -9606 544334 OA27 - - RGD:1298495 16 - Osteoarthritis QTL 27 unknown - - - - 20120809 -9606 544335 OA15 - - RGD:1298504 9 - Osteoarthritis QTL 15 unknown - - - - 20120809 -9606 544336 BW17 - - RGD:1299997 20 - Body weight QTL 17 unknown - - - - 20120809 -9606 544337 BW16 - - RGD:1300006 10 - Body weight QTL 16 unknown - - - - 20120809 -9606 544338 BP29 - - RGD:1300007 20 - Blood pressure QTL 29 unknown - - - - 20120809 -9606 544416 COPD19 - - RGD:1331635 2 - Chronic obstructive pulmonary disease QTL 19 unknown - - - - 20120809 -9606 544417 COPD13 - - RGD:1331636 4 - Chronic obstructive pulmonary disease QTL 13 unknown - - - - 20120809 -9606 544418 COPD2 - - RGD:1331637 8 - Chronic obstructive pulmonary disease QTL 2 unknown - - - - 20120809 -9606 544419 COPD14 - - RGD:1331638 3 - Chronic obstructive pulmonary disease QTL 14 unknown - - - - 20120809 -9606 544420 COPD3 - - RGD:1331639 19 - Chronic obstructive pulmonary disease QTL 3 unknown - - - - 20120809 -9606 544421 COPD11 - - RGD:1331640 1 - Chronic obstructive pulmonary disease QTL 11 unknown - - - - 20120809 -9606 544422 COPD25 - - RGD:1331641 6 - Chronic obstructive pulmonary disease QTL 25 unknown - - - - 20120809 -9606 544423 AASTH6 - - RGD:1331642 12 - Allergic/atopic asthma related QTL 6 unknown - - - - 20120809 -9606 544424 COPD16 - - RGD:1331643 3 - Chronic obstructive pulmonary disease QTL 16 unknown - - - - 20120809 -9606 544425 AASTH7 - - RGD:1331644 12 - Allergic/atopic asthma related QTL 7 unknown - - - - 20120809 -9606 544426 COPD18 - - RGD:1331645 1 - Chronic obstructive pulmonary disease QTL 18 unknown - - - - 20120809 -9606 544427 COPD21 - - RGD:1331646 12 - Chronic obstructive pulmonary disease QTL 21 unknown - - - - 20120809 -9606 544428 COPD4 - - RGD:1331647 22 - Chronic obstructive pulmonary disease QTL 4 unknown - - - - 20120809 -9606 544429 COPD8 - - RGD:1331648 8 - Chronic obstructive pulmonary disease QTL 8 unknown - - - - 20120809 -9606 544430 COPD22 - - RGD:1331649 17 - Chronic obstructive pulmonary disease QTL 22 unknown - - - - 20120809 -9606 544431 COPD15 - - RGD:1331650 4 - Chronic obstructive pulmonary disease QTL 15 unknown - - - - 20120809 -9606 544432 COPD12 - - RGD:1331651 17 - Chronic obstructive pulmonary disease QTL 12 unknown - - - - 20120809 -9606 544433 COPD17 - - RGD:1331652 1 - Chronic obstructive pulmonary disease QTL 17 unknown - - - - 20120809 -9606 544434 AASTH5 - - RGD:1331653 7 - Allergic/atopic asthma related QTL 5 unknown - - - - 20120809 -9606 544435 COPD28 - - RGD:1331654 18 - Chronic obstructive pulmonary disease QTL 28 unknown - - - - 20120809 -9606 544436 COPD20 - - RGD:1331655 11 - Chronic obstructive pulmonary disease QTL 20 unknown - - - - 20120809 -9606 544437 COPD26 - - RGD:1331656 21 - Chronic obstructive pulmonary disease QTL 26 unknown - - - - 20120809 -9606 544438 COPD9 - - RGD:1331657 19 - Chronic obstructive pulmonary disease QTL 9 unknown - - - - 20120809 -9606 544439 COPD27 - - RGD:1331658 18 - Chronic obstructive pulmonary disease QTL 27 unknown - - - - 20120809 -9606 544440 AASTH4 - - RGD:1331659 5 - Allergic/atopic asthma related QTL 4 unknown - - - - 20120809 -9606 544441 AASTH3 - - RGD:1331660 5 - Allergic/atopic asthma related QTL 3 unknown - - - - 20120809 -9606 544442 COPD10 - - RGD:1331661 2 - Chronic obstructive pulmonary disease QTL 10 unknown - - - - 20120809 -9606 544443 COPD29 - - RGD:1331662 4 - Chronic obstructive pulmonary disease QTL 29 unknown - - - - 20120809 -9606 544444 COPD1 - - RGD:1331663 12 - Chronic obstructive pulmonary disease QTL 1 unknown - - - - 20121018 -9606 544445 COPD6 - - RGD:1331664 8 - Chronic obstructive pulmonary disease QTL 6 unknown - - - - 20120809 -9606 544446 AASTH2 - - RGD:1331665 5 - Allergic/atopic asthma related QTL 2 unknown - - - - 20120809 -9606 544447 COPD5 - - RGD:1331666 19 - Chronic obstructive pulmonary disease QTL 5 unknown - - - - 20120809 -9606 544448 COPD24 - - RGD:1331667 4 - Chronic obstructive pulmonary disease QTL 24 unknown - - - - 20120809 -9606 544560 AASTH30 - - RGD:1357288 2 - Allergic/atopic asthma related QTL 30 unknown - - - - 20120809 -9606 544561 AASTH31 - - RGD:1357289 11 - Allergic/atopic asthma related QTL 31 unknown - - - - 20120809 -9606 544562 AASTH52 - - RGD:1357290 21 - Allergic/atopic asthma related QTL 52 unknown - - - - 20120809 -9606 544563 AASTH48 - - RGD:1357291 9 - Allergic/atopic asthma related QTL 48 unknown - - - - 20120809 -9606 544564 AASTH34 - - RGD:1357292 6 - Allergic/atopic asthma related QTL 34 unknown - - - - 20120809 -9606 544565 AASTH20 - - RGD:1357293 12 - Allergic/atopic asthma related QTL 20 unknown - - - - 20120809 -9606 544566 AASTH40 - - RGD:1357294 5 - Allergic/atopic asthma related QTL 40 unknown - - - - 20120809 -9606 544567 AASTH14 - - RGD:1357295 13 - Allergic/atopic asthma related QTL 14 unknown - - - - 20120809 -9606 544568 AASTH9 - - RGD:1357296 1 - Allergic/atopic asthma related QTL 9 unknown - - - - 20120809 -9606 544569 AASTH21 - - RGD:1357297 11 - Allergic/atopic asthma related QTL 21 unknown - - - - 20120809 -9606 544570 AASTH25 - - RGD:1357298 20 - Allergic/atopic asthma related QTL 25 unknown - - - - 20120809 -9606 544571 AASTH47 - - RGD:1357299 9 - Allergic/atopic asthma related QTL 47 unknown - - - - 20120809 -9606 544572 AASTH39 - - RGD:1357300 20 - Allergic/atopic asthma related QTL 39 unknown - - - - 20120809 -9606 544573 AASTH17 - - RGD:1357301 5 - Allergic/atopic asthma related QTL 17 unknown - - - - 20120809 -9606 544574 AASTH35 - - RGD:1357302 7 - Allergic/atopic asthma related QTL 35 unknown - - - - 20120809 -9606 544575 AASTH38 - - RGD:1357303 6 - Allergic/atopic asthma related QTL 38 unknown - - - - 20120809 -9606 544576 AASTH26 - - RGD:1357304 1 - Allergic/atopic asthma related QTL 25 unknown - - - - 20120809 -9606 544577 AASTH49 - - RGD:1357305 12 - Allergic/atopic asthma related QTL 49 unknown - - - - 20120809 -9606 544578 AASTH50 - - RGD:1357306 13 - Allergic/atopic asthma related QTL 50 unknown - - - - 20120809 -9606 544579 AASTH12 - - RGD:1357307 9 - Allergic/atopic asthma related QTL 12 unknown - - - - 20120809 -9606 544580 AASTH23 - - RGD:1357308 8 - Allergic/atopic asthma related QTL 23 unknown - - - - 20120809 -9606 544581 AASTH55 - - RGD:1357309 5 - Allergic/atopic asthma related QTL 5 unknown - - - - 20120809 -9606 544582 AASTH42 - - RGD:1357310 2 - Allergic/atopic asthma related QTL 42 unknown - - - - 20120809 -9606 544583 AASTH13 - - RGD:1357311 17 - Allergic/atopic asthma related QTL 13 unknown - - - - 20120809 -9606 544584 AASTH11 - - RGD:1357312 6 - Allergic/atopic asthma related QTL 11 unknown - - - - 20120809 -9606 544585 AASTH36 - - RGD:1357313 13 - Allergic/atopic asthma related QTL 36 unknown - - - - 20120809 -9606 544586 AASTH54 - - RGD:1357314 5 - Allergic/atopic asthma related QTL 54 unknown - - - - 20120809 -9606 544587 AASTH51 - - RGD:1357315 19 - Allergic/atopic asthma related QTL 51 unknown - - - - 20120809 -9606 544588 AASTH33 - - RGD:1357316 13 - Allergic/atopic asthma related QTL 33 unknown - - - - 20120809 -9606 544589 AASTH19 - - RGD:1357317 5 - Allergic/atopic asthma related QTL 19 unknown - - - - 20120809 -9606 544590 AASTH43 - - RGD:1357318 3 - Allergic/atopic asthma related QTL 43 unknown - - - - 20120809 -9606 544591 AASTH8 - - RGD:1357319 1 - Allergic/atopic asthma related QTL 8 unknown - - - - 20120809 -9606 544592 AASTH27 - - RGD:1357320 18 - Allergic/atopic asthma related QTL 27 unknown - - - - 20121018 -9606 544593 AASTH53 - - RGD:1357321 21 - Allergic/atopic asthma related QTL 53 unknown - - - - 20120809 -9606 544594 AASTH44 - - RGD:1357322 3 - Allergic/atopic asthma related QTL 44 unknown - - - - 20120809 -9606 544595 AASTH18 - - RGD:1357323 14 - Allergic/atopic asthma related QTL 18 unknown - - - - 20120809 -9606 544596 AASTH16 - - RGD:1357324 13 - Allergic/atopic asthma related QTL 16 unknown - - - - 20120809 -9606 544597 AASTH15 - - RGD:1357325 13 - Allergic/atopic asthma related QTL 15 unknown - - - - 20120809 -9606 544598 AASTH37 - - RGD:1357326 14 - Allergic/atopic asthma related QTL 37 unknown - - - - 20120809 -9606 544599 AASTH45 - - RGD:1357327 3 - Allergic/atopic asthma related QTL 45 unknown - - - - 20120809 -9606 544600 AASTH24 - - RGD:1357328 19 - Allergic/atopic asthma related QTL 24 unknown - - - - 20120809 -9606 544601 AASTH46 - - RGD:1357329 5 - Allergic/atopic asthma related QTL 46 unknown - - - - 20120809 -9606 544602 AASTH22 - - RGD:1357330 6 - Allergic/atopic asthma related QTL 22 unknown - - - - 20120809 -9606 544603 AASTH10 - - RGD:1357331 5 - Allergic/atopic asthma related QTL 10 unknown - - - - 20120809 -9606 544614 BW59 - - RGD:1357356 8 - Body weight QTL 59 unknown - - - - 20120809 -9606 544615 BW56 - - RGD:1357357 17 - Body weight QTL 56 unknown - - - - 20120809 -9606 544616 COHEN2 - - RGD:1357358 8 - Cohen syndrome QTL 2 unknown - - - - 20120809 -9606 544617 BW35 - - RGD:1357359 7 - Body weight QTL 35 unknown - - - - 20120809 -9606 544618 COHEN1 - - RGD:1357360 8 - Cohen syndrome QTL 1 unknown - - - - 20120809 -9606 544619 BW37 - - RGD:1357361 12 - Body weight QTL 37 unknown - - - - 20120809 -9606 544620 BW54 - - RGD:1357362 6 - Body weight QTL 54 unknown - - - - 20120809 -9606 544621 BW55 - - RGD:1357363 17 - Body weight QTL 55 unknown - - - - 20120809 -9606 544622 BW36 - - RGD:1357364 11 - Body weight QTL 36 unknown - - - - 20120809 -9606 544623 HRTRT1 - - RGD:1357365 4 - Heart rate QTL 1 unknown - - - - 20120809 -9606 544624 BW69 - - RGD:1357366 8 - Body weight QTL 69 unknown - - - - 20120809 -9606 544625 BW53 - - RGD:1357367 2 - Body weight QTL 53 unknown - - - - 20120809 -9606 544626 BW52 - - RGD:1357368 8 - Body weight QTL 52 unknown - - - - 20120809 -9606 544627 BW72 - - RGD:1357378 5 - Body weight QTL 72 unknown - - - - 20120809 -9606 544628 BW70 - - RGD:1357379 11 - Body weight QTL 70 unknown - - - - 20120809 -9606 544629 BW64 - - RGD:1357380 11 - Body weight QTL 64 unknown - - - - 20120809 -9606 544630 BW57 - - RGD:1357381 1 - Body weight QTL 57 unknown - - - - 20120809 -9606 544631 SLEP2 - - RGD:1357382 2 - Serum leptin concentration QTL 2 unknown - - - - 20120809 -9606 544632 BW61 - - RGD:1357383 5 - Body weight QTL 61 unknown - - - - 20120809 -9606 544633 BW71 - - RGD:1357384 1 - Body weight QTL 71 unknown - - - - 20120809 -9606 544634 BW60 - - RGD:1357385 1 - Body weight QTL 60 unknown - - - - 20120809 -9606 544635 BW66 - - RGD:1357386 14 - Body weight QTL 66 unknown - - - - 20120809 -9606 544636 BW58 - - RGD:1357387 12 - Body weight QTL 58 unknown - - - - 20120809 -9606 544637 BW62 - - RGD:1357388 9 - Body weight QTL 62 unknown - - - - 20120809 -9606 544638 BW68 - - RGD:1357389 7 - Body weight QTL 68 unknown - - - - 20120809 -9606 544639 BW67 - - RGD:1357390 18 - Body weight QTL 67 unknown - - - - 20120809 -9606 544640 BW63 - - RGD:1357391 10 - Body weight QTL 63 unknown - - - - 20120809 -9606 544650 SLEP1 - - RGD:1357406 8 - Serum leptin concentration QTL 1 unknown - - - - 20120809 -9606 548313 SSX4B - CT5.4 HGNC:16880|Ensembl:ENSG00000198946|Vega:OTTHUMG00000021497 X Xp11.23 synovial sarcoma, X breakpoint 4B protein-coding SSX4B synovial sarcoma, X breakpoint 4B O OTTHUMT00000056510|cancer/testis antigen 5.4|protein SSX4 20121209 -9606 548321 FAM27A - FAM27A1|bA7G23.5 HGNC:19729 9 9q12 family with sequence similarity 27, member A miscRNA FAM27A family with sequence similarity 27, member A O - 20121230 -9606 548324 C9orf133 RP11-205M20.3 - HGNC:31420 9 - chromosome 9 open reading frame 133 unknown C9orf133 chromosome 9 open reading frame 133 O - 20121230 -9606 548327 MRX85 - - HGNC:25170 X Xp21 mental retardation, X-linked 85 unknown MRX85 mental retardation, X-linked 85 O - 20110215 -9606 548593 SLX1A - GIYD1 HGNC:20922|Ensembl:ENSG00000132207|HPRD:18681|Vega:OTTHUMG00000176859 16 16p11.2 SLX1 structure-specific endonuclease subunit homolog A (S. cerevisiae) protein-coding SLX1A SLX1 structure-specific endonuclease subunit homolog A (S. cerevisiae) O GIY-YIG domain-containing protein 1|structure-specific endonuclease subunit SLX1 20121230 -9606 548594 KIR3DP1 - CD158c|KIR2DS6|KIR3DS2P|KIR48|KIRX HGNC:16343|MIM:610604|HPRD:18682 19 19q13.42 killer cell immunoglobulin-like receptor, three domains, pseudogene 1 pseudo KIR3DP1 killer cell immunoglobulin-like receptor, three domains, pseudogene 1 O - 20121230 -9606 548596 CKMT1A - CKMT1 HGNC:31736|MIM:613415|Ensembl:ENSG00000223572|HPRD:18683|Vega:OTTHUMG00000059898 15 15q15 creatine kinase, mitochondrial 1A protein-coding CKMT1A creatine kinase, mitochondrial 1A O U-MtCK|acidic-type mitochondrial creatine kinase|creatine kinase U-type, mitochondrial|creatine kinase, mitochondrial 1 (ubiquitous)|mia-CK|ubiquitous mitochondrial creatine kinase 20121230 -9606 548599 PHBP7 - - HGNC:39286 9 9q21 prohibitin pseudogene 7 pseudo PHBP7 prohibitin pseudogene 7 O - 20121230 -9606 548637 DUTP1 - DUTL HGNC:31956 3 3q21.2 deoxyuridine triphosphatase pseudogene 1 pseudo DUTP1 deoxyuridine triphosphatase pseudogene 1 O - 20121230 -9606 548644 POLR2J3 - POLR2J2|RPB11b1|RPB11b2 HGNC:33853|Ensembl:ENSG00000168255|HPRD:18684|Vega:OTTHUMG00000150384 7 7q22.1 polymerase (RNA) II (DNA directed) polypeptide J3 protein-coding POLR2J3 polymerase (RNA) II (DNA directed) polypeptide J3 O DNA-directed RNA polymerase II subunit 11|DNA-directed RNA polymerase II subunit J3|DNA-directed RNA polymerase II subunit RPB11-b2|RNA polymerase II subunit B11-b2 20121230 -9606 548645 DNAJC25 - bA16L21.2.1 HGNC:34187|Ensembl:ENSG00000059769|HPRD:18685|Vega:OTTHUMG00000020491 9 9q31.3 DnaJ (Hsp40) homolog, subfamily C , member 25 protein-coding DNAJC25 DnaJ (Hsp40) homolog, subfamily C , member 25 O DnaJ-like protein|dnaJ homolog subfamily C member 25 20121230 -9606 550112 LOC550112 - - - 4 4q13.2 uncharacterized LOC550112 miscRNA - - - - 20121230 -9606 550113 LOC550113 - - - 4 4q13.2 uncharacterized LOC550113 miscRNA - - - - 20121230 -9606 550623 SPG26 - - HGNC:22494|MIM:609195 12 12p11.1-q14 spastic paraplegia 26 unknown SPG26 spastic paraplegia 26 O - 20120622 -9606 550624 KTCN4 - - MIM:609271 2 2p24 Keratoconus 4 unknown - - - - 20120622 -9606 550625 ANIC - - MIM:107200 18 18p11.23-q12.2 Anosmia, isolated congenital unknown - - - - 20120622 -9606 550626 FHASD - - MIM:609218 16 16q23.2-q24.2 Foveal hypoplasia and anterior segment dysgenesis unknown - - - - 20120622 -9606 550631 CCDC157 - - HGNC:33854|Ensembl:ENSG00000187860|HPRD:18686|Vega:OTTHUMG00000151007 22 22q12.2 coiled-coil domain containing 157 protein-coding CCDC157 coiled-coil domain containing 157 O coiled-coil domain-containing protein 157 20121230 -9606 550641 TELM - - MIM:609113 14 14q23.2 telomere length, mean leukocyte unknown - - - - 20120622 -9606 550643 LOC550643 - - - X Xp11.1 uncharacterized LOC550643 miscRNA - - - - 20121230 -9606 550644 LOC550644 - - - 2 2q11.2 structural maintenance of chromosomes 3 pseudogene pseudo - - - - 20121230 -9606 552852 NCRNA00249 - C8orf23 - 8 8q21.11 non-protein coding RNA 249 miscRNA - - - - 20120508 -9606 552853 NCRNA00250 - C8orf24 - 8 8q24.22 non-protein coding RNA 250 miscRNA - - - - 20120508 -9606 552859 LINC00251 - C8orf25|NCRNA00251 HGNC:31950 8 8q13.1 long intergenic non-protein coding RNA 251 miscRNA LINC00251 long intergenic non-protein coding RNA 251 O - 20121230 -9606 552860 SAMD12-AS1 - C8orf26|NCRNA00252 HGNC:30937 8 8q24.12 SAMD12 antisense RNA 1 miscRNA SAMD12-AS1 SAMD12 antisense RNA 1 O - 20121230 -9606 552867 FAM67A - - HGNC:23819 8 8p23.1 family with sequence similarity 67, member A unknown FAM67A family with sequence similarity 67, member A O - 20121201 -9606 552868 FAM67B - - HGNC:24907 8 8p23.1 family with sequence similarity 67, member B unknown FAM67B family with sequence similarity 67, member B O - 20121201 -9606 552879 VENTXP6 - - HGNC:32216 8 8q21.11 VENT homeobox pseudogene 6 pseudo VENTXP6 VENT homeobox pseudogene 6 O - 20121230 -9606 552889 ATXN7L3B - - HGNC:37931|Ensembl:ENSG00000253719|Vega:OTTHUMG00000163936 12 12q21 ataxin 7-like 3B protein-coding ATXN7L3B ataxin 7-like 3B O putative ataxin-7-like protein 3B 20121230 -9606 552891 DNAJC25-GNG10 - - HGNC:37501|Ensembl:ENSG00000059769|Ensembl:ENSG00000244115|HPRD:10374|Vega:OTTHUMG00000150303 9 9q31.3 DNAJC25-GNG10 readthrough protein-coding DNAJC25-GNG10 DNAJC25-GNG10 readthrough O DNAJC25-GNG10 protein|DNAJC25-GNG10 readthrough transcript 20121230 -9606 552900 BOLA2 - BOLA2A|My016 HGNC:29488|MIM:613182|Ensembl:ENSG00000183336|Vega:OTTHUMG00000176757 16 16p11.2 bolA homolog 2 (E. coli) protein-coding BOLA2 bolA homolog 2 (E. coli) O BolA-like protein 2|BolA-like protein 2 member A|bolA-like 2 20121230 -9606 553103 LOC553103 - - - 5 - uncharacterized LOC553103 miscRNA - - - - 20121230 -9606 553112 FERP1 - FERP|FERps HGNC:26443 X Xq25 fer (fps/fes related) tyrosine kinase (phosphoprotein NCP94) pseudogene 1 pseudo FERP1 fer (fps/fes related) tyrosine kinase (phosphoprotein NCP94) pseudogene 1 O - 20121230 -9606 553115 PEF1 UNQ1845/PRO3573 ABP32|PEF1A HGNC:30009|MIM:610033|Ensembl:ENSG00000162517|HPRD:10143|Vega:OTTHUMG00000003877 1 1p34 penta-EF-hand domain containing 1 protein-coding PEF1 penta-EF-hand domain containing 1 O PEF protein with a long N-terminal hydrophobic domain|peflin|penta-EF hand domain containing 1 20121230 -9606 553117 RPL39P5 - RPL39_7_406 HGNC:26015 3 3q22.1 ribosomal protein L39 pseudogene 5 pseudo RPL39P5 ribosomal protein L39 pseudogene 5 O - 20121230 -9606 553118 STK33P1 RP11-7N10.1 STK33P|STK33ps HGNC:26871 9 9q21.33 serine/threonine kinase 33 pseudogene 1 pseudo STK33P1 serine/threonine kinase 33 pseudogene 1 O - 20121230 -9606 553121 TLK2P2 RP11-162G10.1 TLK2ps2 HGNC:22227 10 10p11.1 tousled-like kinase 2 pseudogene 2 pseudo TLK2P2 tousled-like kinase 2 pseudogene 2 O - 20121230 -9606 553128 KIR2DL5B - KIR2DL5|KIR2DL5.2|KIR2DLX HGNC:16346|HPRD:18687 19 19p13.3 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 5B protein-coding KIR2DL5B killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 5B O CD158 antigen-like family member F2|killer cell Ig-like receptor|killer cell immunoglobulin-like receptor 2DL5B|killer cell immunoglobulin-like receptor 2DLX 20121104 -9606 553137 LOC553137 - - - 6 6q21 uncharacterized LOC553137 unknown - - - - 20120511 -9606 553139 LOC553139 - - - 1 1p31.1 PAI-1 mRNA binding protein pseudogene pseudo - - - - 20121230 -9606 553140 SLEP3 - - RGD:1358215 17 - Serum leptin concentration QTL 3 unknown - - - - 20120809 -9606 553141 BW88 - - RGD:1358213 3 - Body weight QTL 88 unknown - - - - 20120809 -9606 553142 AASTH29 - - RGD:1358214 4 - Allergic/Atopic asthma related QTL 29 unknown - - - - 20120809 -9606 553143 BW65 - - RGD:1358216 12 - Body weight QTL 65 unknown - - - - 20120809 -9606 553144 AASTH56 - - RGD:1358217 10 - Allergic/Atopic asthma related QTL 56 unknown - - - - 20120809 -9606 553145 AASTH32 - - RGD:1358218 10 - Allergic/Atopic asthma related QTL 32 unknown - - - - 20120809 -9606 553146 AASTH41 - - RGD:1358219 5 - Allergic/Atopic asthma related QTL 41 unknown - - - - 20120809 -9606 553147 AASTH28 - - RGD:1358220 - - Allergic/Atopic asthma related QTL 28 unknown - - - - 20120809 -9606 553148 SERBP1P3 - - HGNC:44630 3 3p21.1 SERPINE1 mRNA binding protein 1 pseudogene 3 pseudo SERBP1P3 SERPINE1 mRNA binding protein 1 pseudogene 3 O - 20121230 -9606 553158 PRR5-ARHGAP8 - - HGNC:34512|Ensembl:ENSG00000241484|Ensembl:ENSG00000248405|HPRD:18688|Vega:OTTHUMG00000160954 22 22q13 PRR5-ARHGAP8 readthrough protein-coding PRR5-ARHGAP8 PRR5-ARHGAP8 readthrough O PRR5-ARHGAP8 fusion|PRR5-ARHGAP8 fusion protein 20121230 -9606 553190 MYP7 - - HGNC:35435|MIM:609256 11 11p13 myopia 7 unknown MYP7 myopia 7 O - 20120622 -9606 553192 MYP8 - - HGNC:35436|MIM:609257 3 3q26 myopia 8 unknown MYP8 myopia 8 O - 20120622 -9606 553194 MYP9 - - HGNC:35437|MIM:609258 4 4q12 myopia 9 unknown MYP9 myopia 9 O - 20120622 -9606 553195 MYP10 - - HGNC:35438|MIM:609259 8 8p23 myopia 10 unknown MYP10 myopia 10 O - 20120622 -9606 553820 EEF1A1P31 - - HGNC:37908 X Xq28 eukaryotic translation elongation factor 1 alpha 1 pseudogene 31 pseudo EEF1A1P31 eukaryotic translation elongation factor 1 alpha 1 pseudogene 31 O - 20121230 -9606 553939 LOC553939 - - - X Xq28 trimethyllysine hydroxylase, epsilon pseudogene pseudo - - - - 20121230 -9606 553989 LFS3 - - MIM:609266 1 1q23 Li-Fraumeni syndrome 3 unknown - - - - 20120622 -9606 553991 LGMD1G - - HGNC:32230|MIM:609115 4 4q21 limb girdle muscular dystrophy 1G (autosomal dominant) unknown LGMD1G limb girdle muscular dystrophy 1G (autosomal dominant) O - 20120622 -9606 553992 MGR7 - - MIM:609179 15 15q11.2-q12 Migraine with aura, susceptibility to, 7 unknown - - - - 20120622 -9606 554045 DUX4L9 - DUX4C HGNC:33855|HPRD:18689 4 4q35.2 double homeobox 4 like 9 unknown DUX4L9 double homeobox 4 like 9 O - 20121230 -9606 554049 C1DP1 - bA195O1.1 HGNC:31465 10 10p11.22 C1D nuclear receptor corepressor pseudogene 1 pseudo C1DP1 C1D nuclear receptor corepressor pseudogene 1 O - 20121230 -9606 554174 LOC554174 - - - 22 22q13.31 uncharacterized LOC554174 unknown - - - - 20120710 -9606 554175 DNM1P33 - DNM1DN7-2|DNM1DN7@ HGNC:35180 15 15q23 DNM1 pseudogene 33 pseudo DNM1P33 DNM1 pseudogene 33 O - 20121230 -9606 554188 FCMTE2 - ADCME|BAFME2|FAME|FAME2 HGNC:37159|MIM:607876 2 2p11.1-q12.2 familial cortical myoclonic tremor with epilepsy 2 unknown FCMTE2 familial cortical myoclonic tremor with epilepsy 2 O - 20120622 -9606 554201 CCDC148-AS1 - - HGNC:44134 2 2q24.1 CCDC148 antisense RNA 1 miscRNA CCDC148-AS1 CCDC148 antisense RNA 1 O - 20121230 -9606 554202 MIR31HG - - HGNC:37187 9 9p21.3 MIR31 host gene (non-protein coding) miscRNA MIR31HG MIR31 host gene (non-protein coding) O - 20121230 -9606 554203 JPX RP13-36G14.1 ENOX|LINC00183|NCRNA00183 HGNC:37191|MIM:300832 X Xq13.2 JPX transcript, XIST activator (non-protein coding) miscRNA JPX JPX transcript, XIST activator (non-protein coding) O - 20121230 -9606 554206 LOC554206 - - - 16 16p12.1 leucine carboxyl methyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 554207 LOC554207 - - - 14 14q11.2 uncharacterized LOC554207 unknown - - - - 20120710 -9606 554210 MIR429 - MIRN429|hsa-mir-429 HGNC:13784|MIM:612094|miRBase:MI0001641 1 1p36.33 microRNA 429 miscRNA MIR429 microRNA 429 O - 20121230 -9606 554212 MIR448 - MIRN448|hsa-mir-448|miRNA448 HGNC:26069|MIM:300686|miRBase:MI0001637 X Xq23 microRNA 448 miscRNA MIR448 microRNA 448 O - 20121230 -9606 554213 MIR449A - MIRN449|MIRN449A|hsa-mir-449 HGNC:27645|MIM:613131|miRBase:MI0001648 5 5q11.2 microRNA 449a miscRNA MIR449A microRNA 449a O - 20121230 -9606 554214 MIR450A1 - MIRN450|MIRN450-1|MIRN450A-1|MIRN450A1|hsa-mir-450 HGNC:28008|miRBase:MI0001652 X Xq26.3 microRNA 450a-1 miscRNA MIR450A1 microRNA 450a-1 O - 20121230 -9606 554223 LOC554223 - - - 6 6p21.3 histocompatibility antigen-related protein-coding - - - - 20121230 -9606 554224 PPIP5K1P1 - HISPPD2B|HISPPD2BP HGNC:32373 15 15q15.3 diphosphoinositol pentakisphosphate kinase 1 pseudogene 1 pseudo PPIP5K1P1 diphosphoinositol pentakisphosphate kinase 1 pseudogene 1 O - 20121230 -9606 554225 STRCP1 - STRCP HGNC:33915 15 15q15.3 stereocilin pseudogene 1 pseudo STRCP1 stereocilin pseudogene 1 O - 20121230 -9606 554226 ANKRD30BL - ANKRD30BP3|NCRNA00164 HGNC:35167 2 2q21.2 ankyrin repeat domain 30B-like pseudo ANKRD30BL ankyrin repeat domain 30B-like O - 20121230 -9606 554234 RPL36AP40 - RPL36A_15_1127 HGNC:36300 11 11p14.3 ribosomal protein L36a pseudogene 40 pseudo RPL36AP40 ribosomal protein L36a pseudogene 40 O - 20121230 -9606 554235 ASPDH - - HGNC:33856|Ensembl:ENSG00000204653|HPRD:18692 19 19q13.33 aspartate dehydrogenase domain containing protein-coding ASPDH aspartate dehydrogenase domain containing O aspartate dehydrogenase domain-containing protein|putative L-aspartate dehydrogenase 20121230 -9606 554236 DPY19L2P1 - - HGNC:22305 7 7p14.2 dpy-19-like 2 pseudogene 1 (C. elegans) pseudo DPY19L2P1 dpy-19-like 2 pseudogene 1 (C. elegans) O - 20121230 -9606 554247 LOC554247 - - - 18 18q23 uncharacterized LOC554247 unknown - - - - 20111025 -9606 554249 LOC554249 - - - 9 9q12 uncharacterized LOC554249 unknown - - - - 20121102 -9606 554250 GDF5OS RP3-477O4.13-001 - HGNC:33435 20 20q11.2 growth differentiation factor 5 opposite strand unknown GDF5OS growth differentiation factor 5 opposite strand O - 20121230 -9606 554251 FBXO48 - - HGNC:33857|Ensembl:ENSG00000204923|HPRD:18694|Vega:OTTHUMG00000152585 2 2p13.3 F-box protein 48 protein-coding FBXO48 F-box protein 48 O F-box only protein 48 20121230 -9606 554279 SMIM16 - C1orf98 HGNC:21901 1 1q32.1 small integral membrane protein 16 miscRNA SMIM16 small integral membrane protein 16 O - 20121230 -9606 554282 FAM72C RP5-998N21.9 - HGNC:30602 1 1q21.2 family with sequence similarity 72, member C protein-coding FAM72C family with sequence similarity 72, member C O - 20121230 -9606 554300 KIR2DP1 - KIR15|KIR2DL6|KIRY|KIRZ HGNC:16344 19 19q13.4 killer cell immunoglobulin-like receptor, two domains, pseudogene 1 pseudo KIR2DP1 killer cell immunoglobulin-like receptor, two domains, pseudogene 1 O - 20121230 -9606 554313 HIST2H4B - H4/o HGNC:29607 1 1q21 histone cluster 2, H4b protein-coding HIST2H4B histone cluster 2, H4b O histone 2, H4b|histone H4 20121230 -9606 554314 AUTS6 - - MIM:609378 17 17q21 Autism, susceptibility to, 6 unknown - - - - 20120622 -9606 554315 BMND5 - - MIM:609354 11 11q23 Bone mineral density variation QTL 5 unknown - - - - 20120622 -9606 554316 BMND4 - - MIM:300536 X Xq27 Bone mineral density variation QTL 4 unknown - - - - 20120622 -9606 554354 LARP4P - - HGNC:21438 15 15q14 La ribonucleoprotein domain family, member 4 pseudogene pseudo LARP4P La ribonucleoprotein domain family, member 4 pseudogene O - 20121230 -9606 572558 PGM5-AS1 - - HGNC:44181 9 9q13 PGM5 antisense RNA 1 miscRNA PGM5-AS1 PGM5 antisense RNA 1 O - 20121230 -9606 573971 DHFRP1 - - HGNC:2862 18 18q11.2 dihydrofolate reductase pseudogene 1 pseudo DHFRP1 dihydrofolate reductase pseudogene 1 O - 20121230 -9606 574013 SMAN1 - - HGNC:20975 20 20q13.2-q13.3 survival of motor and autonomic neurons 1 unknown SMAN1 survival of motor and autonomic neurons 1 O - 20110215 -9606 574016 CLLU1OS - - HGNC:24070|Ensembl:ENSG00000205057|Vega:OTTHUMG00000161990 12 12q22 chronic lymphocytic leukemia up-regulated 1 opposite strand protein-coding CLLU1OS chronic lymphocytic leukemia up-regulated 1 opposite strand O chronic lymphocytic leukemia up-regulated 1 overlapping strand|putative chronic lymphocytic leukemia up-regulated protein 1 opposite strand transcript protein 20121230 -9606 574017 EKV3 - - HGNC:24106|MIM:609313 7 7q22 erythrokeratodermia variabilis 3 (Kamouraska type) unknown EKV3 erythrokeratodermia variabilis 3 (Kamouraska type) O - 20120622 -9606 574028 CLLU1 - - HGNC:29841|Ensembl:ENSG00000257127|Vega:OTTHUMG00000170103 12 12q22 chronic lymphocytic leukemia up-regulated 1 protein-coding CLLU1 chronic lymphocytic leukemia up-regulated 1 O chronic lymphocytic leukemia up-regulated protein 1 20121230 -9606 574029 DUSP5P1 RP4-621O15.1 DUSP5P|RP4-621O15.2 HGNC:32020 1 1q42.13 dual specificity phosphatase 5 pseudogene 1 pseudo DUSP5P1 dual specificity phosphatase 5 pseudogene 1 O - 20121230 -9606 574030 MIR362 - MIRN362|hsa-mir-362 HGNC:32022|miRBase:MI0000762 X Xp11.23 microRNA 362 miscRNA MIR362 microRNA 362 O - 20121230 -9606 574031 MIR363 - MIR-363|MIRN363|hsa-mir-363 HGNC:32023|miRBase:MI0000764 X Xq26.2 microRNA 363 miscRNA MIR363 microRNA 363 O - 20121230 -9606 574032 MIR20B - MIRN20B|hsa-mir-20b HGNC:32024|miRBase:MI0001519 X Xq26.2 microRNA 20b miscRNA MIR20B microRNA 20b O - 20121230 -9606 574033 MIR18B - MIRN18B|hsa-mir-18b HGNC:32025|miRBase:MI0001518 X Xq26.2 microRNA 18b miscRNA MIR18B microRNA 18b O - 20121230 -9606 574034 MIR433 - MIRN433|hsa-mir-433|miRNA433 HGNC:32026|MIM:611711|miRBase:MI0001723 14 14q32.2 microRNA 433 miscRNA MIR433 microRNA 433 O - 20121230 -9606 574036 SERTAD4-AS1 RP4-667H12.2 C1orf133 HGNC:32019 1 1q32.2 SERTAD4 antisense RNA 1 miscRNA SERTAD4-AS1 SERTAD4 antisense RNA 1 O - 20121230 -9606 574037 C1orf134 - - HGNC:32021 1 1p36.13 chromosome 1 open reading frame 134 protein-coding C1orf134 chromosome 1 open reading frame 134 O - 20121216 -9606 574038 MIR431 - MIRN431|hsa-mir-431|miRNA431 HGNC:32027|MIM:611708|miRBase:MI0001721 14 14q32.2 microRNA 431 miscRNA MIR431 microRNA 431 O - 20121230 -9606 574040 SNORA6 - ACA6 HGNC:32591 3 3p22.2 small nucleolar RNA, H/ACA box 6 snoRNA SNORA6 small nucleolar RNA, H/ACA box 6 O - 20121230 -9606 574042 SNORA10 - ACA10 HGNC:32598 16 16p13.3 small nucleolar RNA, H/ACA box 10 snoRNA SNORA10 small nucleolar RNA, H/ACA box 10 O - 20121230 -9606 574043 CDAGS - - MIM:603116 22 22q12-q13 Craniosynostosis, anal anomalies, and porokeratosis syndrome unknown - - - - 20120622 -9606 574044 EPRPDC - - MIM:608105 16 16p12-p11.2 Epilepsy, rolandic, with paroxysmal exercise-induced dystonia and writer's cramp unknown - - - - 20121018 -9606 574045 HNP1 - - MIM:608026 9 9q31-q32 Hypertensive nephropathy unknown - - - - 20120622 -9606 574047 MPDMRS - - MIM:300519 - - Martin-Probst deafness-mental retardation syndrome unknown - - - - 20121031 -9606 574048 OVCAS1 - - MIM:607893 3 3p25-p22 Ovarian cancer, epithelial, susceptibility to unknown - - - - 20120622 -9606 574049 TUKLS - - MIM:609428 21 21q22 Tukel syndrome unknown - - - - 20120622 -9606 574077 GLC1K - JOAG3 HGNC:21341|MIM:608696 20 20p12 glaucoma 1, open angle, K (juvenile-onset) unknown GLC1K glaucoma 1, open angle, K (juvenile-onset) O - 20120622 -9606 574078 GLC1J - JOAG2 HGNC:26986|MIM:608695 9 9q22 glaucoma 1, open angle, J (juvenile-onset) unknown GLC1J glaucoma 1, open angle, J (juvenile-onset) O - 20120622 -9606 574080 LOC574080 - - - 5 5q34 CDGSH iron sulfur domain 1 pseudogene pseudo - - - - 20121230 -9606 574406 C1orf138 RP11-54A4.4 - HGNC:32041 1 1q21.2 chromosome 1 open reading frame 138 unknown C1orf138 chromosome 1 open reading frame 138 O - 20121021 -9606 574407 C1orf145 RP11-520H14.6 - HGNC:32047 1 1q42.13 chromosome 1 open reading frame 145 miscRNA C1orf145 chromosome 1 open reading frame 145 O - 20121230 -9606 574408 MIR329-1 - MIRN329-1 HGNC:32050|miRBase:MI0001725 14 14q32.31 microRNA 329-1 miscRNA MIR329-1 microRNA 329-1 O - 20121230 -9606 574409 MIR329-2 - MIRN329-2 HGNC:32051|miRBase:MI0001726 14 14q32.31 microRNA 329-2 miscRNA MIR329-2 microRNA 329-2 O - 20121230 -9606 574410 MIR323B - MIR453|MIRN453|hsa-mir-453 HGNC:38349|miRBase:MI0014206 14 14q32.31 microRNA 323b miscRNA MIR323B microRNA 323b O - 20121230 -9606 574411 MIR451A - MIR451|MIRN451|hsa-mir-451|hsa-mir-451a HGNC:32053|MIM:612071|miRBase:MI0001729 17 17q11.2 microRNA 451a miscRNA MIR451A microRNA 451a O - 20121230 -9606 574412 MIR452 - MIRN452|hsa-mir-452 HGNC:32054|miRBase:MI0001733 X Xq28 microRNA 452 miscRNA MIR452 microRNA 452 O - 20121230 -9606 574413 MIR409 - MIRN409|hsa-mir-409 HGNC:32055|MIM:614057|miRBase:MI0001735 14 14q32.31 microRNA 409 miscRNA MIR409 microRNA 409 O - 20121230 -9606 574414 PRR9 - - HGNC:32057|Ensembl:ENSG00000203783|Vega:OTTHUMG00000013936 1 1q21.3 proline rich 9 protein-coding PRR9 proline rich 9 O proline-rich protein 9 20121230 -9606 574431 C1orf147 - - HGNC:32061 1 1q32.1 chromosome 1 open reading frame 147 unknown C1orf147 chromosome 1 open reading frame 147 O - 20121230 -9606 574432 C1orf148 RP11-520H14.4 - HGNC:32062 1 1q42.13 chromosome 1 open reading frame 148 unknown C1orf148 chromosome 1 open reading frame 148 O - 20121230 -9606 574433 MIR412 - MIRN412|hsa-mir-412 HGNC:32064|miRBase:MI0002464 14 14q32.31 microRNA 412 miscRNA MIR412 microRNA 412 O - 20121230 -9606 574434 MIR410 - MIRN410|hsa-mir-410 HGNC:32065|miRBase:MI0002465 14 14q32.31 microRNA 410 miscRNA MIR410 microRNA 410 O - 20121230 -9606 574435 MIR376B - MIRN376B HGNC:32066|MIM:610961|miRBase:MI0002466 14 14q32.31 microRNA 376b miscRNA MIR376B microRNA 376b O - 20121230 -9606 574436 MIR485 - MIRN485|hsa-mir-485 HGNC:32067|miRBase:MI0002469 14 14q32.31 microRNA 485 miscRNA MIR485 microRNA 485 O - 20121230 -9606 574441 MIR488 - MIRN488|hsa-mir-488 HGNC:32073|miRBase:MI0003123 1 1q25.2 microRNA 488 miscRNA MIR488 microRNA 488 O - 20121230 -9606 574442 MIR489 - MIRN489|hsa-mir-489 HGNC:32074|MIM:614523|miRBase:MI0003124 7 7q21.3 microRNA 489 miscRNA MIR489 microRNA 489 O - 20121230 -9606 574443 MIR490 - MIRN490|hsa-mir-490|miR-490 HGNC:32075|miRBase:MI0003125 7 7q33 microRNA 490 miscRNA MIR490 microRNA 490 O - 20121230 -9606 574444 MIR491 - MIRN491|hsa-mir-491 HGNC:32076|miRBase:MI0003126 9 9p21.3 microRNA 491 miscRNA MIR491 microRNA 491 O - 20121230 -9606 574445 MIR511-1 - MIRN511-1 HGNC:32077|miRBase:MI0003127 10 10p12.33 microRNA 511-1 miscRNA MIR511-1 microRNA 511-1 O - 20121230 -9606 574446 MIR511-2 - MIRN511-2 HGNC:32078|miRBase:MI0003128 10 10p12.33 microRNA 511-2 miscRNA MIR511-2 microRNA 511-2 O - 20121230 -9606 574447 MIR146B - MIRN146B|miRNA146B HGNC:32079|MIM:610567|miRBase:MI0003129 10 10q24.32 microRNA 146b miscRNA MIR146B microRNA 146b O - 20121230 -9606 574448 MIR202 - MIRN202|hsa-mir-202 HGNC:32080|miRBase:MI0003130 10 10q26.3 microRNA 202 miscRNA MIR202 microRNA 202 O - 20121230 -9606 574449 MIR492 - MIRN492|hsa-mir-492 HGNC:32081|MIM:614384|miRBase:MI0003131 12 12q22 microRNA 492 miscRNA MIR492 microRNA 492 O - 20121230 -9606 574450 MIR493 - MIRN493|hsa-mir-493 HGNC:32082|miRBase:MI0003132 14 14q32.2 microRNA 493 miscRNA MIR493 microRNA 493 O - 20121230 -9606 574451 MIR432 - MIRN432|hsa-mir-432 HGNC:32083|miRBase:MI0003133 14 14q32.2 microRNA 432 miscRNA MIR432 microRNA 432 O - 20121230 -9606 574452 MIR494 - MIRN494|hsa-mir-494 HGNC:32084|miRBase:MI0003134 14 14q32.31 microRNA 494 miscRNA MIR494 microRNA 494 O - 20121230 -9606 574453 MIR495 - MIRN495|hsa-mir-495 HGNC:32085|miRBase:MI0003135 14 14q32.31 microRNA 495 miscRNA MIR495 microRNA 495 O - 20121230 -9606 574454 MIR496 - MIRN496|hsa-mir-496 HGNC:32086|miRBase:MI0003136 14 14q32.31 microRNA 496 miscRNA MIR496 microRNA 496 O - 20121230 -9606 574455 MIR193B - MIRN193B HGNC:32087|MIM:614734|miRBase:MI0003137 16 16p13.12 microRNA 193b miscRNA MIR193B microRNA 193b O - 20121230 -9606 574456 MIR497 - MIRN497|hsa-mir-497 HGNC:32088|miRBase:MI0003138 17 17p13.1 microRNA 497 miscRNA MIR497 microRNA 497 O - 20121230 -9606 574457 MIR181D - MIRN181D HGNC:32089|miRBase:MI0003139 19 19p13.13 microRNA 181d miscRNA MIR181D microRNA 181d O - 20121230 -9606 574458 MIR512-1 - MIRN512-1 HGNC:32090|miRBase:MI0003140 19 19q13.42 microRNA 512-1 miscRNA MIR512-1 microRNA 512-1 O - 20121230 -9606 574459 MIR512-2 - MIRN512-2 HGNC:32091|miRBase:MI0003141 19 19q13.42 microRNA 512-2 miscRNA MIR512-2 microRNA 512-2 O - 20121230 -9606 574460 MIR498 - MIRN498|hsa-mir-498 HGNC:32092|miRBase:MI0003142 19 19q13.42 microRNA 498 miscRNA MIR498 microRNA 498 O - 20121230 -9606 574461 MIR520E - MIRN520E HGNC:32093|miRBase:MI0003143 19 19q13.42 microRNA 520e miscRNA MIR520E microRNA 520e O - 20121230 -9606 574462 MIR515-1 - MIRN515-1 HGNC:32094|miRBase:MI0003144 19 19q13.42 microRNA 515-1 miscRNA MIR515-1 microRNA 515-1 O - 20121230 -9606 574463 MIR519E - MIRN519E HGNC:32095|miRBase:MI0003145 19 19q13.42 microRNA 519e miscRNA MIR519E microRNA 519e O - 20121230 -9606 574464 MIR520F - MIRN520F HGNC:32096|miRBase:MI0003146 19 19q13.42 microRNA 520f miscRNA MIR520F microRNA 520f O - 20121230 -9606 574465 MIR515-2 - MIRN515-2 HGNC:32097|miRBase:MI0003147 19 19q13.42 microRNA 515-2 miscRNA MIR515-2 microRNA 515-2 O - 20121230 -9606 574466 MIR519C - MIRN519C HGNC:32098|miRBase:MI0003148 19 19q13.42 microRNA 519c miscRNA MIR519C microRNA 519c O - 20121230 -9606 574467 MIR520A - MIRN520A HGNC:32099|miRBase:MI0003149 19 19q13.42 microRNA 520a miscRNA MIR520A microRNA 520a O - 20121230 -9606 574468 MIR526B - MIRN526B HGNC:32100|miRBase:MI0003150 19 19q13.42 microRNA 526b miscRNA MIR526B microRNA 526b O - 20121230 -9606 574469 MIR519B - MIRN519B HGNC:32101|miRBase:MI0003151 19 19q13.42 microRNA 519b miscRNA MIR519B microRNA 519b O - 20121230 -9606 574470 MIR525 - MIRN525|hsa-mir-525 HGNC:32102|miRBase:MI0003152 19 19q13.42 microRNA 525 miscRNA MIR525 microRNA 525 O - 20121230 -9606 574471 MIR523 - MIRN523|hsa-mir-523 HGNC:32103|miRBase:MI0003153 19 19q13.42 microRNA 523 miscRNA MIR523 microRNA 523 O - 20121230 -9606 574472 MIR518F - MIRN518F HGNC:32104|miRBase:MI0003154 19 19q13.42 microRNA 518f miscRNA MIR518F microRNA 518f O - 20121230 -9606 574473 MIR520B - MIRN520B HGNC:32105|miRBase:MI0003155 19 - microRNA 520b miscRNA MIR520B microRNA 520b O - 20121230 -9606 574474 MIR518B - MIRN518B HGNC:32106|miRBase:MI0003156 19 19q13.42 microRNA 518b miscRNA MIR518B microRNA 518b O - 20121230 -9606 574475 MIR526A1 - MIRN526A-1|MIRN526A1 HGNC:32107|miRBase:MI0003157 19 19q13.42 microRNA 526a-1 miscRNA MIR526A1 microRNA 526a-1 O - 20121230 -9606 574476 MIR520C - MIRN520C HGNC:32108|miRBase:MI0003158 19 19q13.42 microRNA 520c miscRNA MIR520C microRNA 520c O - 20121230 -9606 574477 MIR518C - MIRN518C HGNC:32109|miRBase:MI0003159 19 19q13.42 microRNA 518c miscRNA MIR518C microRNA 518c O - 20121230 -9606 574478 MIR524 - MIRN524|hsa-mir-524 HGNC:32110|miRBase:MI0003160 19 19q13.42 microRNA 524 miscRNA MIR524 microRNA 524 O - 20121230 -9606 574479 MIR517A - MIRN517A HGNC:32111|miRBase:MI0003161 19 19q13.42 microRNA 517a miscRNA MIR517A microRNA 517a O - 20121230 -9606 574480 MIR519D - MIRN519D HGNC:32112|MIM:614247|miRBase:MI0003162 19 19q13.42 microRNA 519d miscRNA MIR519D microRNA 519d O - 20121230 -9606 574481 MIR521-2 - MIRN521-2 HGNC:32113|miRBase:MI0003163 19 19q13.42 microRNA 521-2 miscRNA MIR521-2 microRNA 521-2 O - 20121230 -9606 574482 MIR520D - MIRN520D HGNC:32114|miRBase:MI0003164 19 - microRNA 520d miscRNA MIR520D microRNA 520d O - 20121230 -9606 574483 MIR517B - MIRN517B HGNC:32115|miRBase:MI0003165 19 19q13.42 microRNA 517b miscRNA MIR517B microRNA 517b O - 20121230 -9606 574484 MIR520G - MIRN520G HGNC:32116|miRBase:MI0003166 19 19q13.42 microRNA 520g miscRNA MIR520G microRNA 520g O - 20121230 -9606 574485 MIR516B2 - MIRN516-3|MIRN516B-2|MIRN516B2 HGNC:32117|miRBase:MI0003167 19 19q13.42 microRNA 516b-2 miscRNA MIR516B2 microRNA 516b-2 O - 20121230 -9606 574486 MIR526A2 - MIRN526A-2|MIRN526A2 HGNC:32118|miRBase:MI0003168 19 - microRNA 526a-2 miscRNA MIR526A2 microRNA 526a-2 O - 20121230 -9606 574487 MIR518E - MIRN518E HGNC:32119|miRBase:MI0003169 19 19q13.42 microRNA 518e miscRNA MIR518E microRNA 518e O - 20121230 -9606 574488 MIR518A1 - MIRN518A-1|MIRN518A1 HGNC:32120|miRBase:MI0003170 19 19q13.42 microRNA 518a-1 miscRNA MIR518A1 microRNA 518a-1 O - 20121230 -9606 574489 MIR518D - MIRN518D HGNC:32121|miRBase:MI0003171 19 19q13.42 microRNA 518d miscRNA MIR518D microRNA 518d O - 20121230 -9606 574490 MIR516B1 - MIRN516-4|MIRN516B-1|MIRN516B1 HGNC:32122|miRBase:MI0003172 19 19q13.42 microRNA 516b-1 miscRNA MIR516B1 microRNA 516b-1 O - 20121230 -9606 574491 MIR518A2 - MIRN518A-2|MIRN518A2 HGNC:32123|miRBase:MI0003173 19 19q13.42 microRNA 518a-2 miscRNA MIR518A2 microRNA 518a-2 O - 20121230 -9606 574492 MIR517C - MIRN517C HGNC:32124|miRBase:MI0003174 19 19q13.42 microRNA 517c miscRNA MIR517C microRNA 517c O - 20121230 -9606 574493 MIR520H - MIRN520H HGNC:32125|MIM:614755|miRBase:MI0003175 19 19q13.42 microRNA 520h miscRNA MIR520H microRNA 520h O - 20121230 -9606 574494 MIR521-1 - MIRN521-1 HGNC:32126|miRBase:MI0003176 19 19q13.42 microRNA 521-1 miscRNA MIR521-1 microRNA 521-1 O - 20121230 -9606 574495 MIR522 - MIRN522|hsa-mir-522 HGNC:32127|miRBase:MI0003177 19 19q13.42 microRNA 522 miscRNA MIR522 microRNA 522 O - 20121230 -9606 574496 MIR519A1 - MIRN519A-1|MIRN519A1 HGNC:32128|miRBase:MI0003178 19 19q13.42 microRNA 519a-1 miscRNA MIR519A1 microRNA 519a-1 O - 20121230 -9606 574497 MIR527 - MIRN527|hsa-mir-527 HGNC:32129|miRBase:MI0003179 19 19q13.42 microRNA 527 miscRNA MIR527 microRNA 527 O - 20121230 -9606 574498 MIR516A1 - MIRN516-1|MIRN516A-1|MIRN516A1 HGNC:32130|miRBase:MI0003180 19 19q13.42 microRNA 516a-1 miscRNA MIR516A1 microRNA 516a-1 O - 20121230 -9606 574499 MIR516A2 - MIRN516-2|MIRN516A-2|MIRN516A2 HGNC:32131|miRBase:MI0003181 19 19q13.42 microRNA 516a-2 miscRNA MIR516A2 microRNA 516a-2 O - 20121230 -9606 574500 MIR519A2 - MIRN519A-2|MIRN519A2 HGNC:32132|miRBase:MI0003182 19 19q13.42 microRNA 519a-2 miscRNA MIR519A2 microRNA 519a-2 O - 20121230 -9606 574501 MIR499A - MIR499|MIRN499|hsa-mir-499a HGNC:32133|MIM:613614|miRBase:MI0003183 20 20q11.22 microRNA 499a miscRNA MIR499A microRNA 499a O - 20121230 -9606 574502 MIR500A - MIR500|MIRN500|hsa-mir-500|hsa-mir-500a HGNC:32134|miRBase:MI0003184 X Xp11.23 microRNA 500a miscRNA MIR500A microRNA 500a O - 20121230 -9606 574503 MIR501 - MIRN501|hsa-mir-501 HGNC:32135|miRBase:MI0003185 X Xp11.23 microRNA 501 miscRNA MIR501 microRNA 501 O - 20121230 -9606 574504 MIR502 - MIRN502|hsa-mir-502 HGNC:32136|miRBase:MI0003186 X Xp11.23 microRNA 502 miscRNA MIR502 microRNA 502 O - 20121230 -9606 574505 MIR450A2 - MIRN450-2|MIRN450A-2|MIRN450A2 HGNC:32137|miRBase:MI0003187 X Xq26.3 microRNA 450a-2 miscRNA MIR450A2 microRNA 450a-2 O - 20121230 -9606 574506 MIR503 - MIRN503|hsa-mir-503 HGNC:32138|MIM:300865|miRBase:MI0003188 X Xq26.3 microRNA 503 miscRNA MIR503 microRNA 503 O - 20121230 -9606 574507 MIR504 - MIRN504|hsa-mir-504 HGNC:32139|miRBase:MI0003189 X Xq26.3 microRNA 504 miscRNA MIR504 microRNA 504 O - 20121230 -9606 574508 MIR505 - MIRN505|hsa-mir-505 HGNC:32140|miRBase:MI0003190 X Xq27.1 microRNA 505 miscRNA MIR505 microRNA 505 O - 20121230 -9606 574509 MIR513A1 - MIRN513-1|MIRN513A1 HGNC:32141|miRBase:MI0003191 X Xq27.3 microRNA 513a-1 miscRNA MIR513A1 microRNA 513a-1 O - 20121230 -9606 574510 MIR513A2 - MIRN513-2|MIRN513A-2|MIRN513A2|hsa-mir-513a-2 HGNC:32142|miRBase:MI0003192 X Xq27.3 microRNA 513a-2 miscRNA MIR513A2 microRNA 513a-2 O - 20121230 -9606 574511 MIR506 - MIRN506|hsa-mir-506 HGNC:32143|MIM:300877|miRBase:MI0003193 X Xq27.3 microRNA 506 miscRNA MIR506 microRNA 506 O - 20121230 -9606 574512 MIR507 - MIRN507|hsa-mir-507 HGNC:32144|miRBase:MI0003194 X Xq27.3 microRNA 507 miscRNA MIR507 microRNA 507 O - 20121230 -9606 574513 MIR508 - MIRN508|hsa-mir-508 HGNC:32145|MIM:300874|miRBase:MI0003195 X Xq27.3 microRNA 508 miscRNA MIR508 microRNA 508 O - 20121230 -9606 574514 MIR509-1 - MIRN509|MIRN509-1|hsa-mir-509 HGNC:32146|MIM:300875|miRBase:MI0003196 X Xq27.3 microRNA 509-1 miscRNA MIR509-1 microRNA 509-1 O - 20121230 -9606 574515 MIR510 - MIRN510|hsa-mir-510 HGNC:32147|MIM:300866|miRBase:MI0003197 X Xq27.3 microRNA 510 miscRNA MIR510 microRNA 510 O - 20121230 -9606 574516 MIR514A1 - MIR514-1|MIRN514-1|hsa-mir-514a-1 HGNC:32148|miRBase:MI0003198 X Xq27.3 microRNA 514a-1 miscRNA MIR514A1 microRNA 514a-1 O - 20121230 -9606 574517 MIR514A2 - MIR514-2|MIRN514-2|hsa-mir-514a-2 HGNC:32149|miRBase:MI0003199 X Xq27.3 microRNA 514a-2 miscRNA MIR514A2 microRNA 514a-2 O - 20121230 -9606 574518 MIR514A3 - MIR514-3|MIRN514-3|hsa-mir-514a-3 HGNC:32150|miRBase:MI0003200 X Xq27.3 microRNA 514a-3 miscRNA MIR514A3 microRNA 514a-3 O - 20121230 -9606 574532 NUDT15P1 - - HGNC:17266 8 8q12.1 nudix (nucleoside diphosphate linked moiety X)-type motif 15 pseudogene 1 pseudo NUDT15P1 nudix (nucleoside diphosphate linked moiety X)-type motif 15 pseudogene 1 O - 20121230 -9606 574533 NUDT15P2 - - HGNC:20784 17 17q11.2 nudix (nucleoside diphosphate linked moiety X)-type motif 15 pseudogene 2 pseudo NUDT15P2 nudix (nucleoside diphosphate linked moiety X)-type motif 15 pseudogene 2 O - 20121230 -9606 574536 DPY19L1P2 - THC1072510 HGNC:22851 7 - dpy-19-like 1 pseudogene 2 (C. elegans) pseudo DPY19L1P2 dpy-19-like 1 pseudogene 2 (C. elegans) O - 20090331 -9606 574537 UGT2A2 - - HGNC:28183|Ensembl:ENSG00000173610 4 4q13.3 UDP glucuronosyltransferase 2 family, polypeptide A2 protein-coding UGT2A2 UDP glucuronosyltransferase 2 family, polypeptide A2 O UDP-glucuronosyltransferase 2A2 20121230 -9606 574538 LOC574538 - - - 12 12p13.33 uncharacterized LOC574538 miscRNA - - - - 20121230 -9606 594832 MYP11 - - HGNC:24906|MIM:609994 4 4q22-q27 myopia 11 (high grade, autosomal dominant) unknown MYP11 myopia 11 (high grade, autosomal dominant) O - 20120622 -9606 594837 SNORD101 - U101 HGNC:32764 6 6q23.2 small nucleolar RNA, C/D box 101 snoRNA SNORD101 small nucleolar RNA, C/D box 101 O - 20121230 -9606 594838 SNORD100 - HBII-429 HGNC:32763 6 6q23.2 small nucleolar RNA, C/D box 100 snoRNA SNORD100 small nucleolar RNA, C/D box 100 O - 20121230 -9606 594839 SNORA33 - ACA33 HGNC:32623 6 6q23.2 small nucleolar RNA, H/ACA box 33 snoRNA SNORA33 small nucleolar RNA, H/ACA box 33 O - 20121230 -9606 594840 ZFAT-AS1 - NCRNA00070|SAS-ZFAT|ZFAT-AS|ZFATAS HGNC:33992 8 8q24.22 ZFAT antisense RNA 1 miscRNA ZFAT-AS1 ZFAT antisense RNA 1 O - 20121230 -9606 594841 WDR45P - - - 4 4q31.3 WD repeat domain 45 pseudogene pseudo - - - - 20121230 -9606 594842 HAS2-AS1 - HAS2-AS|HAS2AS|HASNT|NCRNA00077 HGNC:34340|MIM:614353 8 8q24.13 HAS2 antisense RNA 1 miscRNA HAS2-AS1 HAS2 antisense RNA 1 O - 20121230 -9606 594855 CPLX3 Nbla11589 CPX-III|CPXIII HGNC:27652|MIM:609585|Ensembl:ENSG00000213578|Vega:OTTHUMG00000142816 15 15q24.1 complexin 3 protein-coding CPLX3 complexin 3 O CPX III|complexin III|complexin-3 20121230 -9606 594857 NPS - - HGNC:33940|MIM:609513|Ensembl:ENSG00000214285 10 10q26.2 neuropeptide S protein-coding NPS neuropeptide S O - 20121230 -9606 595097 SNORD16 - U16 HGNC:32712 15 15q22 small nucleolar RNA, C/D box 16 snoRNA SNORD16 small nucleolar RNA, C/D box 16 O - 20121230 -9606 595098 SNORD18A - U18A HGNC:32714 15 15q22 small nucleolar RNA, C/D box 18A snoRNA SNORD18A small nucleolar RNA, C/D box 18A O - 20121230 -9606 595099 SNORD18B - U18B HGNC:32715 15 15q22 small nucleolar RNA, C/D box 18B snoRNA SNORD18B small nucleolar RNA, C/D box 18B O - 20121230 -9606 595100 SNORD18C - U18C HGNC:32716 15 15q22 small nucleolar RNA, C/D box 18C snoRNA SNORD18C small nucleolar RNA, C/D box 18C O - 20121230 -9606 595101 LOC595101 - - - 16 16p11.2 smg-1 homolog, phosphatidylinositol 3-kinase-related kinase (C. elegans) pseudogene pseudo - - - - 20121230 -9606 595135 PGM5P2 - - HGNC:18965 9 9q12 phosphoglucomutase 5 pseudogene 2 pseudo PGM5P2 phosphoglucomutase 5 pseudogene 2 O - 20121230 -9606 606293 KLKP1 - KARMA|KLK31P|KRSP1|PsiKLK1|YKLK1 HGNC:21260 19 19q13.41 kallikrein pseudogene 1 pseudo KLKP1 kallikrein pseudogene 1 O - 20121230 -9606 606495 CYB5RL RP11-446E24.1 - HGNC:32220|Ensembl:ENSG00000215883|Vega:OTTHUMG00000008082 1 1p32.3 cytochrome b5 reductase-like protein-coding CYB5RL cytochrome b5 reductase-like O NADH-cytochrome b5 reductase-like 20121230 -9606 606500 SNORD68 - HBII-202 HGNC:32729 16 16q24.3 small nucleolar RNA, C/D box 68 snoRNA SNORD68 small nucleolar RNA, C/D box 68 O - 20121230 -9606 606523 DFNB57 - - HGNC:26774 10 10q23.1-q26.11 deafness, autosomal recessive 57 unknown DFNB57 deafness, autosomal recessive 57 O - 20120318 -9606 606551 UBE2MP1 - - HGNC:32195 16 16p11.2 ubiquitin-conjugating enzyme E2M pseudogene 1 pseudo UBE2MP1 ubiquitin-conjugating enzyme E2M pseudogene 1 O - 20121230 -9606 606553 C8orf49 - - HGNC:32200 8 8p23.1 chromosome 8 open reading frame 49 unknown C8orf49 chromosome 8 open reading frame 49 O - 20121230 -9606 606719 DFNB66 - - HGNC:32193|MIM:610212 6 6p22.3-p21.2 deafness, autosomal recessive 66 unknown DFNB66 deafness, autosomal recessive 66 O - 20120622 -9606 606724 LOC606724 - - - 16 16p11.2 coronin, actin binding protein, 1A pseudogene pseudo - - - - 20121230 -9606 613037 LOC613037 - - - 16 16p11.2 nuclear pore complex interacting protein pseudogene pseudo - - - - 20121230 -9606 613038 LOC613038 - - - 16 16p11.2 coiled-coil domain containing 101 pseudogene pseudo - - - - 20121230 -9606 613126 LOC613126 - - - 7 7q21.2 uncharacterized LOC613126 unknown - - - - 20121230 -9606 613204 IFITM8P HC1901 - HGNC:32202 8 8q12.3 interferon induced transmembrane protein 8 pseudogene pseudo IFITM8P interferon induced transmembrane protein 8 pseudogene O - 20121230 -9606 613206 LOC613206 - - - 9 9q33 myeloproliferative disease associated tumor antigen 5 unknown - - - - 20120725 -9606 613209 DEFB135 - DEFB136 HGNC:32400|Ensembl:ENSG00000205883|Vega:OTTHUMG00000158719 8 8p23.1 defensin, beta 135 protein-coding DEFB135 defensin, beta 135 O beta-defensin 135|beta-defensin 136 20121230 -9606 613210 DEFB136 - DEFB137 HGNC:34433|Ensembl:ENSG00000205884|Vega:OTTHUMG00000158720 8 8p23.1 defensin, beta 136 protein-coding DEFB136 defensin, beta 136 O beta-defensin 136|beta-defensin 137 20121230 -9606 613211 DEFB134 - - HGNC:32399|Ensembl:ENSG00000205882|Vega:OTTHUMG00000158718 8 8p23.1 defensin, beta 134 protein-coding DEFB134 defensin, beta 134 O beta-defensin 134|beta-defensin 135 20121230 -9606 613212 CTXN3 - KABE HGNC:31110|Ensembl:ENSG00000205279|Vega:OTTHUMG00000163285 5 5q23.2 cortexin 3 protein-coding CTXN3 cortexin 3 O cortexin-3|kidney and brain-expressed protein 20121230 -9606 613227 HIGD1C HC1096 GM921 HGNC:28044|Ensembl:ENSG00000214511|Vega:OTTHUMG00000169488 12 12q13.12 HIG1 hypoxia inducible domain family, member 1C protein-coding HIGD1C HIG1 hypoxia inducible domain family, member 1C O HIG1 domain family member 1C|HIG1 domain family, member 1C 20121230 -9606 613253 DEFA1A3 - DEFA1|DEFA3|DEFT1P HGNC:32231 8 8p23.1 defensin, alpha 1 and alpha 3, variable copy number locus other DEFA1A3 defensin, alpha 1 and alpha 3, variable copy number locus O - 20120318 -9606 613266 LOC613266 - - - 20 20p12.1 uncharacterized LOC613266 other - - - - 20120622 -9606 619189 SERINC4 - - HGNC:32237|MIM:614550|Ensembl:ENSG00000184716|Vega:OTTHUMG00000060144 15 15q15.3 serine incorporator 4 protein-coding SERINC4 serine incorporator 4 O - 20121230 -9606 619190 FDPSL2A - - - 7 7q11.23 MGC44478 pseudo - - - - 20121230 -9606 619207 LOC619207 - - - 10 10q26.3 scavenger receptor protein family member pseudo - - - - 20121230 -9606 619208 FAM229B RP1-142L7.6 C6orf225 HGNC:33858|Ensembl:ENSG00000203778|Vega:OTTHUMG00000015383 6 6q21 family with sequence similarity 229, member B protein-coding FAM229B family with sequence similarity 229, member B O UPF0731 protein C6orf225 20121230 -9606 619211 DFNB58 - - HGNC:18252 2 2q14.2-q14.3 deafness, autosomal recessive 58 unknown DFNB58 deafness, autosomal recessive 58 O - 20120318 -9606 619212 PA2G4P3 - HsT2542|PA2G4L4 HGNC:31731 18 18q11.2 proliferation-associated 2G4 pseudogene 3 pseudo PA2G4P3 proliferation-associated 2G4 pseudogene 3 O - 20121230 -9606 619279 ZNF704 - Gig1 HGNC:32291|Ensembl:ENSG00000164684|Vega:OTTHUMG00000164733 8 8q21.13 zinc finger protein 704 protein-coding ZNF704 zinc finger protein 704 O - 20121230 -9606 619341 FAM93A - - HGNC:32288 8 8p23.1 family with sequence similarity 93, member A unknown FAM93A family with sequence similarity 93, member A O - 20121201 -9606 619342 FAM93B - - HGNC:32289 8 8p23.1 family with sequence similarity 93, member B unknown FAM93B family with sequence similarity 93, member B O - 20121201 -9606 619343 ERICH1-AS1 - C8orf68 HGNC:32290 8 8p23.3 ERICH1 antisense RNA 1 miscRNA ERICH1-AS1 ERICH1 antisense RNA 1 O - 20121222 -9606 619344 C8orf69 - - - 8 8q22.1 uncharacterized LOC619344 miscRNA - - - - 20121230 -9606 619349 SETP3 - - HGNC:31115 17 17q23.2 SET pseudogene 3 pseudo SETP3 SET pseudogene 3 O - 20121230 -9606 619351 LINC00589 - C8orf75 HGNC:32299 8 8p12 long intergenic non-protein coding RNA 589 miscRNA LINC00589 long intergenic non-protein coding RNA 589 O - 20121230 -9606 619370 MCDR4 - - HGNC:32303 14 14q11.2 macular dystrophy, retinal, 4 (North Carolina type with progressive sensorineural hearing loss) unknown MCDR4 macular dystrophy, retinal, 4 (North Carolina type with progressive sensorineural hearing loss) O - 20120318 -9606 619373 MBOAT4 FKSG89 GOAT|OACT4 HGNC:32311|MIM:611940|Ensembl:ENSG00000177669|Vega:OTTHUMG00000163824 8 8p12 membrane bound O-acyltransferase domain containing 4 protein-coding MBOAT4 membrane bound O-acyltransferase domain containing 4 O O-acyltransferase (membrane bound) domain containing 4|O-acyltransferase domain-containing protein 4|ghrelin O-acyltransferase|membrane-bound O-acyltransferase domain-containing protein 4 20121230 -9606 619379 SPG29 - - HGNC:30161|MIM:609727 1 1p31.1-p21.1 spastic paraplegia 29 (autosomal dominant) unknown SPG29 spastic paraplegia 29 (autosomal dominant) O - 20120622 -9606 619383 SCARNA9 - Z32|mgU2-19/30 HGNC:32566 11 11q21 small Cajal body-specific RNA 9 miscRNA SCARNA9 small Cajal body-specific RNA 9 O - 20121230 -9606 619394 SPOAN - - MIM:609541 11 - spastic paraplegia, optic atrophy, and neuropathy unknown - - - - 20120622 -9606 619397 FEB6 - - HGNC:33478|MIM:609253 18 18p11.2 febrile convulsions 6 unknown FEB6 febrile convulsions 6 O - 20120622 -9606 619398 FEB5 - - HGNC:33477|MIM:609255 6 6q22-q24 febrile convulsions 5 unknown FEB5 febrile convulsions 5 O - 20120622 -9606 619399 ETL2 - FTLE MIM:608096 12 12q22-q23.3 epilepsy, familial temporal lobe unknown - - - - 20120622 -9606 619402 HPC5 - - MIM:609299 3 3p26 prostate cancer, hereditary, 5 unknown - - - - 20120622 -9606 619404 CATCN1 - - MIM:609376 19 19q13 cataract, congenital nuclear, autosomal recessive unknown - - - - 20120622 -9606 619405 AIS4 - VAMAS5 MIM:609400 4 4q13-q21 autoimmune disease, susceptibility to, 4 unknown - - - - 20120622 -9606 619406 HPE8 - - MIM:609408 14 14q13 holoprosencephaly 8 unknown - - - - 20120622 -9606 619407 MSSD - - MIM:609432 17 17p13.3 syndactyly, mesoaxial synostotic, with phalangeal reduction unknown - - - - 20120622 -9606 619408 PSNP2 - - MIM:609454 1 1q31.1 supranuclear palsy, progressive, 2 unknown - - - - 20120622 -9606 619409 LOC619409 - - MIM:609456 4 4p16.3 muscular dystrophy, congenital, merosin-positive unknown - - - - 20120622 -9606 619410 NEDE - - MIM:609469 11 11q24 nephropathy, progressive, with deafness unknown - - - - 20120622 -9606 619411 LVNC2 - - MIM:609470 11 11p15 noncompaction of left ventricular myocardium, familial isolated, autosomal dominant 2 unknown - - - - 20120622 -9606 619418 FAM90A21P - - HGNC:32269 8 8p23.1 family with sequence similarity 90, member A21 pseudogene pseudo FAM90A21P family with sequence similarity 90, member A21, pseudogene O - 20121230 -9606 619423 FAM85A - - HGNC:17606 8 8p23.1 family with sequence similarity 85, member A miscRNA FAM85A family with sequence similarity 85, member A O - 20121209 -9606 619426 C8orf60 - - HGNC:32274 8 8q24.3 chromosome 8 open reading frame 60 unknown C8orf60 chromosome 8 open reading frame 60 O - 20120622 -9606 619427 C8orf66 - - HGNC:32282 8 8q24.3 chromosome 8 open reading frame 66 unknown C8orf66 chromosome 8 open reading frame 66 O - 20120622 -9606 619431 FAM85B - - HGNC:32160 8 8p23.1 family with sequence similarity 85, member B protein-coding FAM85B family with sequence similarity 85, member B O - 20120508 -9606 619434 LINC00051 - C8orf43|NCRNA00051 HGNC:32028 8 8q24.3 long intergenic non-protein coding RNA 51 miscRNA LINC00051 long intergenic non-protein coding RNA 51 O - 20121230 -9606 619443 RPS26P7 - HsT24280|RPS26_15_908 HGNC:20077 8 8q12.1 ribosomal protein S26 pseudogene 7 pseudo RPS26P7 ribosomal protein S26 pseudogene 7 O - 20121230 -9606 619445 RPL10P3 - bA567J2.2 HGNC:23300 9 9q33.1 ribosomal protein L10 pseudogene 3 pseudo RPL10P3 ribosomal protein L10 pseudogene 3 O - 20121230 -9606 619448 RPS12P2 - RPS12_9_1071|bA40F6.3 HGNC:24221 10 10q22.3 ribosomal protein S12 pseudogene 2 pseudo RPS12P2 ribosomal protein S12 pseudogene 2 O - 20121230 -9606 619449 RPIAP1 - - HGNC:27250 18 18q21.33 ribose 5-phosphate isomerase A pseudogene 1 pseudo RPIAP1 ribose 5-phosphate isomerase A pseudogene 1 O - 20121230 -9606 619452 RPS29P2 - HsT23291|RPS29_12_897 HGNC:31083 8 8p11.21 ribosomal protein S29 pseudogene 2 pseudo RPS29P2 ribosomal protein S29 pseudogene 2 O - 20121230 -9606 619455 SPANXA2-OT1 RP1-171K16.4 CXorf18 HGNC:31683 X Xq27.2 SPANXA2 overlapping transcript 1 (non-protein coding) miscRNA SPANXA2-OT1 SPANXA2 overlapping transcript 1 (non-protein coding) O - 20121230 -9606 619457 UBE2WP1 - UBE2WP HGNC:32198 1 1p21.3 ubiquitin-conjugating enzyme E2W pseudogene 1 pseudo UBE2WP1 ubiquitin-conjugating enzyme E2W pseudogene 1 O - 20121230 -9606 619464 RPL31P9 - - HGNC:31893 18 18q22.1 ribosomal protein L31 pseudogene 9 pseudo RPL31P9 ribosomal protein L31 pseudogene 9 O - 20121230 -9606 619465 ERVK-8 - ERVK8|HERV-K115|envK6 HGNC:32302 8 8p23.1 endogenous retrovirus group K, member 8 unknown ERVK-8 endogenous retrovirus group K, member 8 O - 20120318 -9606 619468 RCM2 - - MIM:609578 10 10q23.3 cardiomyopathy, familial restrictive, 2 unknown - - - - 20120622 -9606 619469 SCO - CYDELq11|SPGFY1 MIM:400042 Y Yq11 Sertoli cell-only syndrome, Y-linked unknown - - - - 20120622 -9606 619471 PPR3 - - MIM:609573 7 7q32 photoparoxysmal response 3 unknown - - - - 20120622 -9606 619475 PFM3 - - HGNC:20094|MIM:609566 4 4q21-q23 parietal foramina 3 unknown PFM3 parietal foramina 3 O - 20120622 -9606 619477 GCCD3 - FGD2|FGD3|GCCD2 MIM:609197 8 8q11.2-q13.2 glucocorticoid deficiency 3 unknown - - - - 20120622 -9606 619478 ATFB2 - - MIM:608988 6 6q14-q16 familial atrial fibrillation 2 unknown - - - - 20120622 -9606 619479 STQTL5 - - MIM:608982 3 3p26 stature quantitative trait locus 5 unknown - - - - 20120622 -9606 619480 LOC619480 - - MIM:608970 5 5q21.2-q33.2 butterfly-shaped pigmentary macular dystrophy 2 unknown - - - - 20120622 -9606 619483 LCA9 - - HGNC:19105|MIM:608553 1 1p36 Leber congenital amaurosis 9 unknown LCA9 Leber congenital amaurosis 9 O - 20120622 -9606 619488 SCZD12 - - MIM:608543 1 1p schizophrenia 12 unknown - - - - 20120622 -9606 619493 PAND2 - - MIM:607853 9 9q31 panic disorder 2 unknown - - - - 20120622 -9606 619496 CMT2H - - MIM:607731 8 8q21.3 Charcot-Marie-Tooth disease, axonal, type 2H unknown - - - - 20120622 -9606 619498 SNORD74 - U74|Z18 HGNC:32734 1 1q25.1 small nucleolar RNA, C/D box 74 snoRNA SNORD74 small nucleolar RNA, C/D box 74 O - 20121230 -9606 619499 SNORA27 - ACA27 HGNC:32617 13 13q12.2 small nucleolar RNA, H/ACA box 27 snoRNA SNORA27 small nucleolar RNA, H/ACA box 27 O - 20121230 -9606 619501 HCC - - MIM:607464 17 17p13 thyroid carcinoma, Hurthle cell unknown - - - - 20120318 -9606 619503 FSI - - MIM:606035 6 6q22-q23 fasting glucose and specific insulin levels unknown - - - - 20120622 -9606 619505 SNORA21 - ACA21 HGNC:32611 17 17q12 small nucleolar RNA, H/ACA box 21 snoRNA SNORA21 small nucleolar RNA, H/ACA box 21 O - 20121230 -9606 619509 WTRS - - MIM:300421 X Xp22.3 Wittwer syndrome unknown - - - - 20120622 -9606 619510 AMCX5 - - MIM:300158 X Xq23-q27 arthrogryposis, X-linked, type 5 unknown - - - - 20120622 -9606 619511 MHB - - MIM:255160 3 3p22.2-p21.32 myopathy, hyaline body, autosomal recessive unknown - - - - 20120622 -9606 619518 C1orf191 MSTP128 MST128 HGNC:32328 1 1p32.3 chromosome 1 open reading frame 191 unknown C1orf191 chromosome 1 open reading frame 191 O - 20121230 -9606 619519 TWF1P1 - A6ps1|PTK9P|PTK9P1 HGNC:21736 17 17q11.2 twinfilin 1 pseudogene 1 pseudo TWF1P1 twinfilin 1 pseudogene 1 O - 20121230 -9606 619536 BPPV - - MIM:193007 6 6q vestibulopathy, familial unknown - - - - 20120622 -9606 619537 VV - - MIM:192200 16 16q24 varicose veins unknown - - - - 20120622 -9606 619538 OMS - COME/ROM MIM:166760 10|19|3 10q26.3;19q13.42-q13.43;3p25.3 otitis media, susceptibility to unknown - - - - 20120622 -9606 619539 LOC619539 - - MIM:151001 4 4q21.1-q22.3 lentiginosis, inherited patterned unknown - - - - 20120622 -9606 619540 LOC619540 - - MIM:148600 15 15q22-q24 keratosis palmoplantaris papulosa unknown - - - - 20120622 -9606 619552 MIR483 - MIRN483|hsa-mir-483 HGNC:32340|miRBase:MI0002467 11 11p15.5 microRNA 483 miscRNA MIR483 microRNA 483 O - 20121230 -9606 619553 MIR484 - MIRN484|hsa-mir-484 HGNC:32341|miRBase:MI0002468 16 16p13.11 microRNA 484 miscRNA MIR484 microRNA 484 O - 20121230 -9606 619554 MIR486 - MIRN486|hsa-mir-486 HGNC:32342|miRBase:MI0002470 8 8p11.21 microRNA 486 miscRNA MIR486 microRNA 486 O - 20121230 -9606 619555 MIR487A - MIRN487|MIRN487A|hsa-mir-487 HGNC:32343|miRBase:MI0002471 14 14q32.31 microRNA 487a miscRNA MIR487A microRNA 487a O - 20121230 -9606 619556 MIR455 - MIRN455|hsa-mir-455 HGNC:32344|miRBase:MI0003513 9 9q32 microRNA 455 miscRNA MIR455 microRNA 455 O - 20121230 -9606 619562 SNORA3 - ACA3 HGNC:32586 11 11p15 small nucleolar RNA, H/ACA box 3 snoRNA SNORA3 small nucleolar RNA, H/ACA box 3 O - 20121230 -9606 619563 SNORA7A - ACA7 HGNC:32592 3 3p25 small nucleolar RNA, H/ACA box 7A snoRNA SNORA7A small nucleolar RNA, H/ACA box 7A O - 20121230 -9606 619564 SNORD72 - HBII-240 HGNC:32733 5 5p13 small nucleolar RNA, C/D box 72 snoRNA SNORD72 small nucleolar RNA, C/D box 72 O - 20121230 -9606 619565 SNORA52 - ACA52 HGNC:32645 11 11p15 small nucleolar RNA, H/ACA box 52 snoRNA SNORA52 small nucleolar RNA, H/ACA box 52 O - 20121230 -9606 619567 SNORD2 - R39B|SNR39B HGNC:32678 3 3q27 small nucleolar RNA, C/D box 2 snoRNA SNORD2 small nucleolar RNA, C/D box 2 O - 20121230 -9606 619568 SNORA4 - ACA4 HGNC:32587 3 3q27 small nucleolar RNA, H/ACA box 4 snoRNA SNORA4 small nucleolar RNA, H/ACA box 4 O - 20121230 -9606 619569 SNORA41 - ACA41 HGNC:32634 2 2q33 small nucleolar RNA, H/ACA box 41 snoRNA SNORA41 small nucleolar RNA, H/ACA box 41 O - 20121230 -9606 619570 SNORD95 - U95 HGNC:32757 5 5q35.3 small nucleolar RNA, C/D box 95 snoRNA SNORD95 small nucleolar RNA, C/D box 95 O - 20121230 -9606 619571 SNORD96A - U96A HGNC:32758 5 5q35.3 small nucleolar RNA, C/D box 96A snoRNA SNORD96A small nucleolar RNA, C/D box 96A O - 20121230 -9606 641293 RPL21P19 - RPL21_7_151 HGNC:35748 1 1q32.1 ribosomal protein L21 pseudogene 19 pseudo RPL21P19 ribosomal protein L21 pseudogene 19 O - 20121230 -9606 641298 SMG1P1 - - HGNC:44186 16 16p12.2 smg-1 homolog, phosphatidylinositol 3-kinase-related kinase pseudogene 1 pseudo SMG1P1 smg-1 homolog, phosphatidylinositol 3-kinase-related kinase pseudogene 1 O - 20121230 -9606 641311 RPL31P11 - RPL31_1_108 HGNC:35849 1 1q23.3 ribosomal protein L31 pseudogene 11 pseudo RPL31P11 ribosomal protein L31 pseudogene 11 O - 20121230 -9606 641312 SAR1AP2 - SAR1P2|SARA1P HGNC:20770 10 10q26.2 SAR1 homolog A (S. cerevisiae) pseudogene 2 pseudo SAR1AP2 SAR1 homolog A (S. cerevisiae) pseudogene 2 O - 20121230 -9606 641314 LINC00594 - C15orf36 HGNC:32358 15 15q15.1 long intergenic non-protein coding RNA 594 protein-coding LINC00594 long intergenic non-protein coding RNA 594 O - 20121021 -9606 641339 ZNF674 hCG_15400 MRX92|ZNF673B HGNC:17625|MIM:300573|Ensembl:ENSG00000251192|Vega:OTTHUMG00000021420 X Xp11.3 zinc finger protein 674 protein-coding ZNF674 zinc finger protein 674 O zinc finger family member 674 20121230 -9606 641364 SLC7A11-AS1 - - HGNC:44064 4 4q28.3 SLC7A11 antisense RNA 1 miscRNA SLC7A11-AS1 SLC7A11 antisense RNA 1 O - 20121230 -9606 641365 LINC00616 - - HGNC:44065 4 4q28.3 long intergenic non-protein coding RNA 616 miscRNA LINC00616 long intergenic non-protein coding RNA 616 O - 20121230 -9606 641367 LOC641367 - - - 19 19p12 cyclin Y-like 1 pseudogene pseudo - - - - 20121230 -9606 641371 ACOT1 - ACH2|CTE-1|LACH2 HGNC:33128|MIM:614313|Ensembl:ENSG00000184227|Vega:OTTHUMG00000171607 14 14q24.3 acyl-CoA thioesterase 1 protein-coding ACOT1 acyl-CoA thioesterase 1 O CTE-I|CTE-Ib|acyl-coenzyme A thioesterase 1|inducible cytosolic acyl-coenzyme A thioester hydrolase|long chain acyl-CoA hydrolase|long chain acyl-CoA thioester hydrolase 20121230 -9606 641372 ACOT6 - C14orf42|c14_5530 HGNC:33159|MIM:614267|Ensembl:ENSG00000205669|Vega:OTTHUMG00000171609 14 14q24.3 acyl-CoA thioesterase 6 protein-coding ACOT6 acyl-CoA thioesterase 6 O putative acyl-coenzyme A thioesterase 6 20121230 -9606 641373 NRON - NCRNA00194 HGNC:37079|MIM:609618 9 9q33.3|9 non-protein coding RNA, repressor of NFAT miscRNA NRON non-protein coding RNA, repressor of NFAT O - 20121230 -9606 641378 LOC641378 RP3-473J16.1 - - X Xq13.3 ADP-ribosylation factor-like 5A pseudogene pseudo - - - - 20121230 -9606 641379 ARL5AP4 - - HGNC:43936 22 22q11.2 ADP-ribosylation factor-like 5A pseudogene 4 pseudo ARL5AP4 ADP-ribosylation factor-like 5A pseudogene 4 O - 20121230 -9606 641380 ARL5AP2 - RP11-379D21.2-001 HGNC:43937 10 10q24.2 ADP-ribosylation factor-like 5A pseudogene 2 pseudo ARL5AP2 ADP-ribosylation factor-like 5A pseudogene 2 O - 20121230 -9606 641381 LOC641381 - - - 2 2q23.1 ADP-ribosylation factor-like 5A pseudogene pseudo - - - - 20121230 -9606 641382 ARL5AP1 - RP11-320L24.1-001 HGNC:43933 X Xq24 ADP-ribosylation factor-like 5A pseudogene 1 pseudo ARL5AP1 ADP-ribosylation factor-like 5A pseudogene 1 O - 20121230 -9606 641384 TMEM75 - - HGNC:32295 8 8q24.21 transmembrane protein 75 unknown TMEM75 transmembrane protein 75 O - 20121230 -9606 641433 RP32 - - HGNC:21902|MIM:609913 1 1p21.2-p13.3 retinitis pigmentosa 32 (autosomal recessive) unknown RP32 retinitis pigmentosa 32 (autosomal recessive) O - 20120622 -9606 641451 SNORA19 - ACA19 HGNC:32609 10 10q26 small nucleolar RNA, H/ACA box 19 snoRNA SNORA19 small nucleolar RNA, H/ACA box 19 O - 20121230 -9606 641455 POTEM - ACT|P704P|POTE14beta HGNC:37096|Ensembl:ENSG00000187537|Vega:OTTHUMG00000170518 14 14q11.2 POTE ankyrin domain family, member M protein-coding POTEM POTE ankyrin domain family, member M O ANKRD26-like family C member ENSP00000349402|prostate-specific P704P|putative POTE ankyrin domain family member M 20121230 -9606 641456 CRIP1P2 - - HGNC:44517 3 3p24 cysteine-rich protein 1 (intestinal) pseudogene 2 pseudo CRIP1P2 cysteine-rich protein 1 (intestinal) pseudogene 2 O - 20121230 -9606 641457 CRIP1P4 - - HGNC:44519 22 22q11.2 cysteine-rich protein 1 (intestinal) pseudogene 4 pseudo CRIP1P4 cysteine-rich protein 1 (intestinal) pseudogene 4 O - 20121230 -9606 641467 TSC22D1-AS1 - - HGNC:43684 13 13q14.11 TSC22D1 antisense RNA 1 miscRNA TSC22D1-AS1 TSC22D1 antisense RNA 1 O - 20121230 -9606 641510 LOC641510 - - - - - uncharacterized LOC641510 unknown - - - - 20120508 -9606 641515 LOC641515 - - - 1 1q31 uncharacterized LOC641515 pseudo - - - - 20121230 -9606 641516 KC6 - - - 18 - keratoconus gene 6 miscRNA - - - - 20121230 -9606 641517 DEFB109P1B - DEF109P1B|DEFB109 HGNC:33469 8 8p23.1 defensin, beta 109, pseudogene 1B pseudo DEFB109P1B defensin, beta 109, pseudogene 1B O - 20121209 -9606 641518 LEF1-AS1 - - HGNC:40339 4 4q25 LEF1 antisense RNA 1 miscRNA LEF1-AS1 LEF1 antisense RNA 1 O - 20121230 -9606 641556 RPL36AP6 RP11-380I20.3 RPL36A_12_1002|bA380I20.1 HGNC:23365 9 9q31.2 ribosomal protein L36a pseudogene 6 pseudo RPL36AP6 ribosomal protein L36a pseudogene 6 O - 20121230 -9606 641589 NBPF19 - - HGNC:31999|MIM:614006 1 1q21.1 neuroblastoma breakpoint family, member 19 protein-coding NBPF19 neuroblastoma breakpoint family, member 19 O - 20120318 -9606 641590 NBPF20 - - HGNC:32000|MIM:614007 1 1q21.2 neuroblastoma breakpoint family, member 20 protein-coding NBPF20 neuroblastoma breakpoint family, member 20 O - 20121021 -9606 641613 RPL21P5 - - HGNC:23541 14 14q12 ribosomal protein L21 pseudogene 5 pseudo RPL21P5 ribosomal protein L21 pseudogene 5 O - 20121230 -9606 641614 RPL23AP8 - RPL23AP9|RPL23A_34_1351 HGNC:23543 14 14q13.2 ribosomal protein L23a pseudogene 8 pseudo RPL23AP8 ribosomal protein L23a pseudogene 8 O - 20121230 -9606 641616 RPL9P3 - RPL9_8_1354 HGNC:23555 14 14q13.2 ribosomal protein L9 pseudogene 3 pseudo RPL9P3 ribosomal protein L9 pseudogene 3 O - 20121230 -9606 641638 SNHG6 - HBII-276HG|NCRNA00058|U87HG HGNC:32965|MIM:612215 8 8q13|8q13 small nucleolar RNA host gene 6 (non-protein coding) miscRNA SNHG6 small nucleolar RNA host gene 6 (non-protein coding) O - 20121230 -9606 641648 SNORD87 - HBII-276|U87 HGNC:32746|MIM:612216 8 8q13.1 small nucleolar RNA, C/D box 87 snoRNA SNORD87 small nucleolar RNA, C/D box 87 O - 20121230 -9606 641649 TMEM91 - DSPC3|IFITMD6 HGNC:32393|Ensembl:ENSG00000142046|Vega:OTTHUMG00000168127 19 19q13.2 transmembrane protein 91 protein-coding TMEM91 transmembrane protein 91 O dispanin subfamily C member 3|interferon induced transmembrane protein domain containing 6 20121230 -9606 641654 HEPN1 - - HGNC:34400|MIM:611641|Ensembl:ENSG00000221932|Vega:OTTHUMG00000165939 11 11q24 hepatocellular carcinoma, down-regulated 1 protein-coding HEPN1 hepatocellular carcinoma, down-regulated 1 O HEPACAM opposite strand 1|cancer susceptibility gene HEPN1|putative cancer susceptibility gene HEPN1 protein 20121230 -9606 641695 LOC641695 - - - 12 12q21.2 reticulon 4 interacting protein 1 pseudogene pseudo - - - - 20121230 -9606 641700 ECSCR - ARIA|ECSM2 HGNC:35454|Ensembl:ENSG00000249751|Vega:OTTHUMG00000163240 5 5q31.2 endothelial cell surface expressed chemotaxis and apoptosis regulator protein-coding ECSCR endothelial cell surface expressed chemotaxis and apoptosis regulator O apoptosis regulator through modulating IAP expression|endothelial cell-specific chemotaxis regulator|endothelial cell-specific molecule 2 20121230 -9606 641702 FAM138F - F379 HGNC:33581 19 19p13.3 family with sequence similarity 138, member F miscRNA FAM138F family with sequence similarity 138, member F O - 20121230 -9606 641708 LOC641708 - - - 6 6q25.3 hydroxysteroid (17-beta) dehydrogenase 12 pseudogene pseudo - - - - 20121230 -9606 641737 FLJ44124 - - - 7 7p22.3 uncharacterized LOC641737 unknown - - - - 20120622 -9606 641746 LOC641746 - - - 7 7q11.21 glycine cleavage system protein H (aminomethyl carrier) pseudogene pseudo - - - - 20121230 -9606 641776 LOC641776 - - - 7 7q11.23 Williams Beuren syndrome chromosome region 19 pseudogene pseudo - - - - 20121230 -9606 641790 RPL31P39 - RPL31_11_842 HGNC:35995 7 7q31.33 ribosomal protein L31 pseudogene 39 pseudo RPL31P39 ribosomal protein L31 pseudogene 39 O - 20121230 -9606 641808 FAM185BP - FAM185B HGNC:21813 7 7q11.23 family with sequence similarity 185, member A pseudogene pseudo FAM185BP family with sequence similarity 185, member B pseudogene O - 20121230 -9606 641842 SLC23A4P - SLC23A4 HGNC:20602 7 7q33 solute carrier family 23 (nucleobase transporters), member 4, pseudogene pseudo SLC23A4P solute carrier family 23 (nucleobase transporters), member 4, pseudogene O - 20121230 -9606 641922 UNC93B2 - UNC93B2P HGNC:13482 7 7p22.1 unc-93 homolog B2 pseudogene (C. elegans) pseudo UNC93B2 unc-93 homolog B2 pseudogene (C. elegans) O - 20121230 -9606 641924 FAM86LP - - HGNC:44099 7 7p22.1 family with sequence similarity 86, member A pseudogene pseudo FAM86LP family with sequence similarity 86, member L, pseudogene O - 20121230 -9606 641928 FLJ16734 - - - 7 7q36.2 uncharacterized LOC641928 unknown - - - - 20120622 -9606 641977 SEPT7P2 - SEPT13|SEPT7B HGNC:32339|MIM:611563 7 7p12.3 septin 7 pseudogene 2 pseudo SEPT7P2 septin 7 pseudogene 2 O - 20121230 -9606 642006 GUSBP10 - - HGNC:42324 7 7p11.2 glucuronidase, beta pseudogene 10 pseudo GUSBP10 glucuronidase, beta pseudogene 10 O - 20121230 -9606 642007 GUSBP12 - - HGNC:42326 7 7p11.2 glucuronidase, beta pseudogene 12 pseudo GUSBP12 glucuronidase, beta pseudogene 12 O - 20121230 -9606 642131 LOC642131 - - - 15 15q11.2 uncharacterized LOC642131 protein-coding - - - - 20121209 -9606 642204 LOC642204 hCG_2042718 - - 4 - ankyrin repeat domain-containing protein 26-like unknown - - - uncharacterized protein LOC642204 20120511 -9606 642236 LOC642236 - - - 9 9q13 FSHD region gene 1 pseudogene pseudo - - - - 20121230 -9606 642249 LOC642249 - - - 12 - uncharacterized LOC642249 pseudo - - - - 20121102 -9606 642259 GAPDHP70 - GAPDHL15|GAPDL15 HGNC:4148 11 11q14.2 glyceraldehyde 3 phosphate dehydrogenase pseudogene 70 pseudo GAPDHP70 glyceraldehyde 3 phosphate dehydrogenase pseudogene 70 O - 20121230 -9606 642262 LOC642262 - - - 5 5q31.2 nuclear receptor coactivator 4 pseudogene pseudo - - - - 20121230 -9606 642265 SPATA31A2 RP11-95H8.1 FAM75A2 HGNC:32002|Ensembl:ENSG00000204848|Vega:OTTHUMG00000013563 9 9p13.1 SPATA31 subfamily A, member 2 protein-coding SPATA31A2 SPATA31 subfamily A, member 2 O family with sequence similarity 75, member A2|protein FAM75A2 20121230 -9606 642273 FAM110C - - HGNC:33340|MIM:611395 2 2p25.3 family with sequence similarity 110, member C protein-coding FAM110C family with sequence similarity 110, member C O protein FAM110C 20121230 -9606 642280 ZNF876P - - HGNC:32472 4 4p16.3 zinc finger protein 876, pseudogene pseudo ZNF876P zinc finger protein 876, pseudogene O - 20121230 -9606 642288 LOC642288 - - - 15 15q25.2 chondroitin sulfate proteoglycan 4 pseudogene pseudo - - - - 20121209 -9606 642290 SLC25A1P5 - - HGNC:43849 19 19q11 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 pseudogene 5 pseudo SLC25A1P5 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 pseudogene 5 O - 20121230 -9606 642305 MAPRE1P2 - - HGNC:37761 4 4p15.1 MAPRE1 pseudogene 2 pseudo MAPRE1P2 MAPRE1 pseudogene 2 O - 20121230 -9606 642306 RPL19P15 - RPL19_10_1014 HGNC:35920 9 9q34.12 ribosomal protein L19 pseudogene 15 pseudo RPL19P15 ribosomal protein L19 pseudogene 15 O - 20121230 -9606 642311 LOC642311 - - - 15 15q11.1 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121230 -9606 642316 FLJ43763 - - - 6 6p25.3 uncharacterized LOC642316 unknown - - - - 20121230 -9606 642317 GAPDHP15 XXbac-BPG55C20.7 GAPDH-Lp|GAPDP15|b55C20.4 HGNC:13950 6 6p11.2 glyceraldehyde-3-phosphate dehydrogenase pseudogene 15 pseudo GAPDHP15 glyceraldehyde-3-phosphate dehydrogenase pseudogene 15 O - 20121230 -9606 642319 TAGLN2P2 - - HGNC:31039 8 8p12 transgelin 2 pseudogene 2 pseudo TAGLN2P2 transgelin 2 pseudogene 2 O - 20121230 -9606 642320 RPL36AP31 - RPL36A_13_923 HGNC:36066 8 8q21.3 ribosomal protein L36a pseudogene 31 pseudo RPL36AP31 ribosomal protein L36a pseudogene 31 O - 20121230 -9606 642325 LOC642325 - - - 15 15q25.2 golgin A6 family, member A pseudogene pseudo - - - - 20121209 -9606 642326 CCNYL3 - - HGNC:33206 16 16p11.2 cyclin Y-like 3 protein-coding CCNYL3 cyclin Y-like 3 O Putative cyclin-Y-like protein 3 20121102 -9606 642335 LOC642335 - - - 6 6p25.3 uncharacterized LOC642335 unknown - - - - 20120511 -9606 642337 FTLP17 - - HGNC:37967 1 1p21.1 ferritin, light polypeptide pseudogene 17 pseudo FTLP17 ferritin, light polypeptide pseudogene 17 O - 20121230 -9606 642345 MIR4500HG hCG_1795283 - HGNC:42773 13 13q31.2 MIR4500 host gene (non-protein coding) miscRNA MIR4500HG MIR4500 host gene (non-protein coding) O - 20121230 -9606 642355 LOC642355 tcag7.1110 - - 7 7q34 nucleoside diphosphate kinase, mitochondrial-like pseudo - - - - 20121230 -9606 642357 EEF1GP5 - - HGNC:44560 X Xq23 eukaryotic translation elongation factor 1 gamma pseudogene 5 pseudo EEF1GP5 eukaryotic translation elongation factor 1 gamma pseudogene 5 O - 20121230 -9606 642361 LOC642361 - - - 10 10q22.3 uncharacterized LOC642361 miscRNA - - - - 20121230 -9606 642366 LOC642366 - - - 5 5q11.1 uncharacterized LOC642366 miscRNA - - - - 20121230 -9606 642373 LOC642373 - - - 9 9p13.1 contactin associated protein-like 3B pseudogene pseudo - - - - 20121230 -9606 642381 LOC642381 - - - 4 4q13.2 speckle-type POZ protein-like pseudogene pseudo - - - - 20121230 -9606 642389 LOC642389 - - - 9 9p13.1 RNA binding motif protein 17 pseudogene pseudo - - - - 20121230 -9606 642394 ADARB2-AS1 RP11-466B20.1 C10orf109|NCRNA00168|bA466B20.1 HGNC:23299 10 10p15.3 ADARB2 antisense RNA 1 miscRNA ADARB2-AS1 ADARB2 antisense RNA 1 O - 20121230 -9606 642395 PSPC1P1 RP11-408E5.7 - HGNC:42033 13 13q12.11 paraspeckle component 1 pseudogene 1 pseudo PSPC1P1 paraspeckle component 1 pseudogene 1 O - 20121230 -9606 642402 LOC642402 - - - 15 15q25.2 golgin A6 family, member A pseudogene pseudo - - - - 20121230 -9606 642413 CTSL1P6 RP11-479O17.6 CTSLL6|bA479O17.1 HGNC:23611 10 10q22.3 cathepsin L1 pseudogene 6 pseudo CTSL1P6 cathepsin L1 pseudogene 6 O - 20121230 -9606 642414 LOC642414 - - - 11 11q14.3 tripartite motif containing 64B pseudogene pseudo - - - - 20121209 -9606 642422 LOC642422 - - - 10 10p15.3 uncharacterized LOC642422 unknown - - - - 20121230 -9606 642423 LOC642423 - - - 15 15q25.3 uncharacterized LOC642423 pseudo - - - - 20121230 -9606 642424 LOC642424 - - - 10 10q11.21 Ig kappa chain V-I region Walker-like other - - - - 20121209 -9606 642425 TRIM53BP - TRIM53B|TRIM53L|TRIM53L1|TRIM80P HGNC:37144 11 11q14.3 tripartite motif containing 53B, pseudogene pseudo TRIM53BP tripartite motif containing 53B, pseudogene O - 20121230 -9606 642426 LOC642426 - - - 14 14q11.1 uncharacterized LOC642426 miscRNA - - - - 20121230 -9606 642441 LOC642441 - - - 1 1q21.2 uncharacterized LOC642441 protein-coding - - - - 20121209 -9606 642443 ADH5P4 - ADH5B|RCADH5|bA707M13.2 HGNC:21377 6 6q12 alcohol dehydrogenase 5 (class III), chi polypeptide, pseudogene 4 pseudo ADH5P4 alcohol dehydrogenase 5 (class III), chi polypeptide, pseudogene 4 O - 20121230 -9606 642446 TRIM64B - - HGNC:37147|Ensembl:ENSG00000189253|Vega:OTTHUMG00000167638 11 11q14.3 tripartite motif containing 64B protein-coding TRIM64B tripartite motif containing 64B O putative tripartite motif-containing protein 64B|tripartite motif-containing 64B 20121230 -9606 642448 KRT18P23 - - HGNC:33392 22 22q13.31 keratin 18 pseudogene 23 pseudo KRT18P23 keratin 18 pseudogene 23 O - 20121230 -9606 642451 RPL7P46 - RPL7_26_1472 HGNC:36706 16 16p13.13 ribosomal protein L7 pseudogene 46 pseudo RPL7P46 ribosomal protein L7 pseudogene 46 O - 20121230 -9606 642452 LOC642452 - - - 16 16q24.3 uncharacterized LOC642452 unknown - - - - 20121230 -9606 642460 ANKRD30BP1 - ANKRD30BP|C21orf110|PRED4 HGNC:19722 21 21q11.2 ankyrin repeat domain 30B pseudogene 1 pseudo ANKRD30BP1 ankyrin repeat domain 30B pseudogene 1 O - 20121230 -9606 642461 LOC642461 - - - 8 8q21.3 isoleucyl-tRNA synthetase, mitochondrial-like pseudo - - - - 20121230 -9606 642474 LOC642474 - - - 4 4q13.2 UDP glucuronosyltransferase 2 family, polypeptide A3 pseudogene pseudo - - - - 20121230 -9606 642475 MROH6 - C8orf73 HGNC:27814|Ensembl:ENSG00000204839|Vega:OTTHUMG00000165164 8 8q24.3 maestro heat-like repeat family member 6 protein-coding MROH6 maestro heat-like repeat family member 6 O putative uncharacterized protein C8orf73 20121230 -9606 642477 FLJ39632 - - - 14 14q11.2 uncharacterized LOC642477 unknown - - - - 20121209 -9606 642484 FLJ45743 - - - 18 18q21.2 uncharacterized LOC642484 unknown - - - - 20121230 -9606 642487 LOC642487 - - - 3 3p14.1 H1 histone family, member O, oocyte-specific pseudogene pseudo - - - - 20121230 -9606 642489 FKBP1C RP11-184C23.2 bA184C23.2 HGNC:21376|HPRD:16899 6 6q12 FK506 binding protein 1C pseudo FKBP1C FK506 binding protein 1C O - 20121230 -9606 642490 LOC642490 - - - 9 9p13.1 S-phase kinase-associated protein 1 pseudogene pseudo - - - - 20121230 -9606 642493 RPL29P25 - RPL29_15_1277 HGNC:37039 12 12q24.11 ribosomal protein L29 pseudogene 25 pseudo RPL29P25 ribosomal protein L29 pseudogene 25 O - 20121230 -9606 642496 LOC642496 - - - 4 4q13.2 UDP glucuronosyltransferase 2 family, polypeptide A3 pseudogene pseudo - - - - 20121230 -9606 642502 LOC642502 hCG_1776980 - - 17 17p13.3 succinate dehydrogenase complex, subunit C, integral membrane protein, 15kDa pseudogene pseudo - - - - 20121230 -9606 642513 LOC642513 - - - 8 8p12 potassium channel tetramerisation domain containing 9 pseudogene pseudo - - - - 20121230 -9606 642515 LOC642515 - - - 9 9q34.13 proline-rich transmembrane protein 1-like protein-coding - - - - 20120511 -9606 642517 AGAP9 - AGAP-9|CTGLF6|bA301J7.2 HGNC:23463|Ensembl:ENSG00000198035|Vega:OTTHUMG00000018141 10 10q11.22 ArfGAP with GTPase domain, ankyrin repeat and PH domain 9 protein-coding AGAP9 ArfGAP with GTPase domain, ankyrin repeat and PH domain 9 O arf-GAP with GTPase, ANK repeat and PH domain-containing protein 9|centaurin, gamma-like family, member 6|centaurin-gamma-like family member 6 20121230 -9606 642521 C1DP3 - bA369J21.2 HGNC:31661 10 10q22.3 C1D nuclear receptor corepressor pseudogene 3 pseudo C1DP3 C1D nuclear receptor corepressor pseudogene 3 O - 20121230 -9606 642531 RPL36P11 hCG_1782906 RPL36_1_620 HGNC:36271 5 5q31.3 ribosomal protein L36 pseudogene 11 pseudo RPL36P11 ribosomal protein L36 pseudogene 11 O - 20121230 -9606 642533 LOC642533 - - - 16 16q24.3 uncharacterized LOC642533 unknown - - - - 20121230 -9606 642538 C1DP2 - bA369J21.3 HGNC:31660 10 10q22.3 C1D nuclear receptor corepressor pseudogene 2 pseudo C1DP2 C1D nuclear receptor corepressor pseudogene 2 O - 20121230 -9606 642545 ATP5A1P1 CTD-2340F8.2 ATP5AP1 HGNC:827 9 9p12 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 1 pseudo ATP5A1P1 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 1 O - 20121230 -9606 642546 HK2P1 - HK2P HGNC:4924 X Xq21.1 hexokinase 2 pseudogene 1 pseudo HK2P1 hexokinase 2 pseudogene 1 O - 20121230 -9606 642550 LOC642550 - - - 12 12q21.2 v-ral simian leukemia viral oncogene homolog A (ras related) pseudogene pseudo - - - - 20121230 -9606 642554 LOC642554 - - - 6 6q12 leucine rich repeat containing 59 pseudogene pseudo - - - - 20121230 -9606 642555 LOC642555 - - - 9 9p12 peptidyl-prolyl cis-trans isomerase FKBP4-like pseudo - - - - 20121209 -9606 642559 POU5F1P3 - OTF3L|POU5F1L|POU5FLC12 HGNC:9222 12 12p13.31 POU class 5 homeobox 1 pseudogene 3 pseudo POU5F1P3 POU class 5 homeobox 1 pseudogene 3 O - 20121230 -9606 642569 TRIM53AP - TRIM53|TRIM53P|TRIM80P HGNC:19025 11 11q14.3 tripartite motif containing 53A, pseudogene pseudo TRIM53AP tripartite motif containing 53A, pseudogene O - 20121230 -9606 642574 LOC642574 - - - 8 8q24.3 IQ motif and ankyrin repeat domain-containing protein LOC642574 protein-coding - - - - 20120511 -9606 642579 LOC642579 - - - 11 11q14.3 tripartite motif containing 64B pseudogene pseudo - - - - 20121230 -9606 642580 HSPA8P14 - - HGNC:44929 12 12q24.12 heat shock 70kDa protein 8 pseudogene 14 pseudo HSPA8P14 heat shock 70kDa protein 8 pseudogene 14 O - 20121230 -9606 642585 VDAC1P1 - VDAC1P HGNC:12671 X Xq21.1 voltage-dependent anion channel 1 pseudogene 1 pseudo VDAC1P1 voltage-dependent anion channel 1 pseudogene 1 O - 20121230 -9606 642587 MIR205HG - LINC00510 HGNC:43562 1 1q32.2 MIR205 host gene (non-protein coding) protein-coding MIR205HG MIR205 host gene (non-protein coding) O NPC-A-5|long intergenic non-protein coding RNA 510|uncharacterized protein LOC642587 20121230 -9606 642590 LOC642590 - - - 6 6q13 spermine synthase pseudogene pseudo - - - - 20121230 -9606 642592 EIF5AP4 RP11-36D19.5 EIF5AL3 HGNC:31442 10 10q23.1 eukaryotic translation initiation factor 5A pseudogene 4 pseudo EIF5AP4 eukaryotic translation initiation factor 5A pseudogene 4 O - 20121230 -9606 642597 C18orf42 - - HGNC:28285|Ensembl:ENSG00000231824|Vega:OTTHUMG00000178457 18 18p11.31 chromosome 18 open reading frame 42 protein-coding C18orf42 chromosome 18 open reading frame 42 O putative uncharacterized protein C18orf42 20121230 -9606 642612 TRIM49C - TRIM49L2 HGNC:38877|Ensembl:ENSG00000204449|Vega:OTTHUMG00000167653 11 11q14.3 tripartite motif containing 49C protein-coding TRIM49C tripartite motif containing 49C O tripartite motif containing 49-like 2|tripartite motif-containing protein 49-like protein 2|tripartite motif-containing protein 49C 20121230 -9606 642614 LOC642614 - - - 16 16p11.1 chromosome 2 open reading frame 69 pseudogene pseudo - - - - 20121230 -9606 642620 LOC642620 hCG_1999814 - - 7 7q36.3 uncharacterized LOC642620 protein-coding - - - - 20120511 -9606 642623 UBTFL1 - C11orf27|HMGPI HGNC:14533|MIM:613696 11 11q14.3 upstream binding transcription factor, RNA polymerase I-like 1 protein-coding UBTFL1 upstream binding transcription factor, RNA polymerase I-like 1 O putative upstream-binding factor 1-like protein 1|upstream-binding factor 1-like protein 1 20121230 -9606 642627 MYL6P4 - - HGNC:37813 7 7q34 myosin, light chain 6 pseudogene 4 pseudo MYL6P4 myosin, light chain 6 pseudogene 4 O - 20121230 -9606 642629 SPATA31A4 - FAM75A4 HGNC:32004|Ensembl:ENSG00000234214|Vega:OTTHUMG00000066731 9 9p12 SPATA31 subfamily A, member 4 protein-coding SPATA31A4 SPATA31 subfamily A, member 4 O family with sequence similarity 75, member A4|protein FAM75A4 20121230 -9606 642631 TSPY15P - - HGNC:37474 Y Yp11.2 testis specific protein, Y-linked 15, pseudogene pseudo TSPY15P testis specific protein, Y-linked 15, pseudogene O - 20121230 -9606 642633 LOC642633 - - - 22 22q11.21 uncharacterized LOC642633 miscRNA - - - - 20121230 -9606 642635 LOC642635 - - - 2 2q23.3 tubulin, alpha 4a pseudogene pseudo - - - - 20121230 -9606 642636 RAD21L1 RP11-314N13.7 RAD21L|dJ545L17.2 HGNC:16271|Ensembl:ENSG00000244588|Vega:OTTHUMG00000031664 20 20p13 RAD21-like 1 (S. pombe) protein-coding RAD21L1 RAD21-like 1 (S. pombe) O double-strand-break repair protein rad21-like protein 1 20121230 -9606 642641 RPSAP54 RP11-569O4.5 RPSA_26_1300 HGNC:36373 13 13q12.11 ribosomal protein SA pseudogene 54 pseudo RPSAP54 ribosomal protein SA pseudogene 54 O - 20121230 -9606 642643 LOC642643 - - Ensembl:ENSG00000182824 22 22q11.21 uncharacterized LOC642643 protein-coding - - - - 20121230 -9606 642648 LOC642648 - - - 22 22q13.31 uncharacterized LOC642648 unknown - - - - 20120508 -9606 642652 LOC642652 - - - 16 16p11.1 retinoic acid receptor responder (tazarotene induced) 2 pseudogene pseudo - - - - 20121230 -9606 642658 SCXB - bHLHa48 HGNC:32322|Ensembl:ENSG00000187786 8 8q24.3 scleraxis homolog B (mouse) protein-coding SCXB scleraxis homolog B (mouse) O basic helix-loop-helix transcription factor scleraxis|class A basic helix-loop-helix protein 41|class A basic helix-loop-helix protein 48 20121209 -9606 642659 LOC642659 - - - 16 16q12.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 642661 LOC642661 - - - 14 14q11.2 translocase of outer mitochondrial membrane 40 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 642663 LOC642663 - - - 7 7p12.1 protein capicua homolog pseudo - - - - 20121230 -9606 642669 LOC642669 - - - 14 14q11.2 chromosome 2 open reading frame 27A pseudogene pseudo - - - - 20121230 -9606 642677 LOC642677 - - - 15 15q25.2 family with sequence similarity 154, member B pseudogene pseudo - - - - 20121230 -9606 642683 LOC642683 - - - 16 16p11.1 kinesin family member 18B pseudogene pseudo - - - - 20121230 -9606 642687 RPS11P7 - RPS11_4_1771 HGNC:36724 X Xp11.4 ribosomal protein S11 pseudogene 7 pseudo RPS11P7 ribosomal protein S11 pseudogene 7 O - 20121230 -9606 642691 FLJ37786 - - - 1 1q21 uncharacterized LOC642691 unknown - - - - 20121209 -9606 642692 LOC642692 - - - 2 2q37.2 centrosomal protein 19kDa pseudogene pseudo - - - - 20121230 -9606 642696 FLJ32790 hCG_1983896 - - 16 16p13.13 hCG1983896 unknown - - - - 20121230 -9606 642721 CBX3P6 - - HGNC:42878 2 2q24.1 chromobox homolog 3 pseudogene 6 pseudo CBX3P6 chromobox homolog 3 pseudogene 6 O - 20121230 -9606 642730 LOC642730 - - - 8 8q21.3 uncharacterized LOC642730 protein-coding - - - - 20120318 -9606 642737 SETP22 - - HGNC:42941 5 5q15 SET pseudogene 22 pseudo SETP22 SET pseudogene 22 O - 20121230 -9606 642738 RPL21P69 - RPL21_27_774 HGNC:36753 6 6q25.3 ribosomal protein L21 pseudogene 69 pseudo RPL21P69 ribosomal protein L21 pseudogene 69 O - 20121230 -9606 642740 RPL9P11 - RPL9_1_9 HGNC:35621 1 1p36.22 ribosomal protein L9 pseudogene 11 pseudo RPL9P11 ribosomal protein L9 pseudogene 11 O - 20121230 -9606 642741 RPL3P7 - RPL3_3_732 HGNC:36797 6 6q21 ribosomal protein L3 pseudogene 7 pseudo RPL3P7 ribosomal protein L3 pseudogene 7 O - 20121230 -9606 642746 EIF4A1P9 - - HGNC:37928 17 17p13.3 eukaryotic translation initiation factor 4A1 pseudogene 9 pseudo EIF4A1P9 eukaryotic translation initiation factor 4A1 pseudogene 9 O - 20121230 -9606 642757 FLJ32756 - - - 22 22q13.31 uncharacterized LOC642757 unknown - - - - 20121230 -9606 642762 ABCD1P5 hCG_2042779 - HGNC:42662 2 2p11.1 ATP-binding cassette, sub-family D (ALD), member 1, pseudogene 5 pseudo ABCD1P5 ATP-binding cassette, sub-family D (ALD), member 1, pseudogene 5 O - 20121230 -9606 642776 LOC642776 - - - X Xq23 uncharacterized LOC642776 miscRNA - - - - 20120511 -9606 642778 LOC642778 - - Ensembl:ENSG00000224712|Vega:OTTHUMG00000166262 16 16p13.11 nuclear pore complex-interacting protein-like 1-like protein-coding - - - - 20121209 -9606 642791 LOC642791 - - - 11 11q14.3 eukaryotic translation elongation factor 1 alpha 2 pseudogene pseudo - - - - 20121230 -9606 642796 TSPY18P - - HGNC:37725 Y Yp11.2 testis specific protein, Y-linked 18, pseudogene pseudo TSPY18P testis specific protein, Y-linked 18, pseudogene O - 20121230 -9606 642797 DNAH10OS - - HGNC:37121 12 12q24.31 dynein, axonemal, heavy chain 10 opposite strand unknown DNAH10OS dynein, axonemal, heavy chain 10 opposite strand O - 20121021 -9606 642799 LOC642799 - - Ensembl:ENSG00000254852|Vega:OTTHUMG00000166264 16 16p13.11 nuclear pore complex-interacting protein-like 1-like protein-coding - - - - 20121230 -9606 642802 CCDC137P - - HGNC:33459 3 3p13 coiled-coil domain containing 137 pseudogene pseudo CCDC137P coiled-coil domain containing 137 pseudogene O - 20121230 -9606 642812 API5P1 - API5L1 HGNC:595 X Xq24 API5 pseudogene 1 pseudo API5P1 API5 pseudogene 1 O - 20121230 -9606 642817 LOC642817 - - - 6 6p25.1 uncharacterized LOC642817 unknown - - - - 20121017 -9606 642818 ST13P21 - - HGNC:38864 1 1p13.3 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 21 pseudo ST13P21 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 21 O - 20121230 -9606 642819 ZNF487P RP11-517P14.1 KRBO1|ZNF487 HGNC:23488 10 10q11.21 zinc finger protein 487, pseudogene pseudo ZNF487P zinc finger protein 487, pseudogene O - 20121230 -9606 642826 BMS1P6 - BMS1LP6|bA302K17.2 HGNC:23654|Vega:OTTHUMG00000018142 10 10q11.22 BMS1 pseudogene 6 pseudo BMS1P6 BMS1 pseudogene 6 O - 20121230 -9606 642828 RPL6P10 - RPL6_9_488 HGNC:36575 4 4q13.1 ribosomal protein L6 pseudogene 10 pseudo RPL6P10 ribosomal protein L6 pseudogene 10 O - 20121230 -9606 642840 MEP1AP1 - MEP1AL1 HGNC:7016 9 9p12 meprin A, alpha pseudogene 1 pseudo MEP1AP1 meprin A, alpha pseudogene 1 O - 20121209 -9606 642843 CPSF4L - - HGNC:33632|Ensembl:ENSG00000187959|Vega:OTTHUMG00000132640 17 17q25.1 cleavage and polyadenylation specific factor 4-like protein-coding CPSF4L cleavage and polyadenylation specific factor 4-like O putative cleavage and polyadenylation specificity factor subunit 4-like protein 20121230 -9606 642846 LOC642846 - - - 12 12p13.31 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11-like miscRNA - - - - 20121230 -9606 642852 LOC642852 - - - 21 21q22.3 uncharacterized LOC642852 miscRNA - - - - 20121230 -9606 642862 LOC642862 - - - 10 10q11.22 Ras homolog enriched in brain pseudogene pseudo - - - - 20121230 -9606 642864 SRG7 - - - 1 1p13.3 spermatogenesis-related protein 7 miscRNA - - - - 20121230 -9606 642869 SETP4 hCG_1644608 - HGNC:42923 X Xq21.1 SET pseudogene 4 pseudo SETP4 SET pseudogene 4 O - 20121230 -9606 642879 SMARCE1P4 - - HGNC:39735 8 8p11.23 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 4 pseudo SMARCE1P4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 4 O - 20121230 -9606 642888 CNN2P2 - - HGNC:39527 9 9p12 calponin 2 pseudogene 2 pseudo CNN2P2 calponin 2 pseudogene 2 O - 20121230 -9606 642889 FLJ16423 - - - X Xq28 uncharacterized LOC642889 unknown - - - - 20120622 -9606 642890 LOC642890 - - - 11 11q12.1 N(alpha)-acetyltransferase 50, NatE catalytic subunit pseudogene pseudo - - - - 20121230 -9606 642891 CHL1-AS2 - - HGNC:40147 3 3p26.3 CHL1 antisense RNA 2 protein-coding CHL1-AS2 CHL1 antisense RNA 2 O CHL1 antisense RNA 2 (non-protein coding) 20121221 -9606 642892 RPS29P3 - RPS29_7_451|bcm2758 HGNC:31363 3 3q29 ribosomal protein S29 pseudogene 3 pseudo RPS29P3 ribosomal protein S29 pseudogene 3 O - 20121230 -9606 642897 LOC642897 - - - 11 11q21 N-6 adenine-specific DNA methyltransferase 1 (putative) pseudogene pseudo - - - - 20121230 -9606 642907 MKI67IPP8 - - HGNC:44956 15 15q25.3 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 8 pseudo MKI67IPP8 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 8 O - 20121230 -9606 642909 LOC642909 - - - 5 5q15 C-terminal binding protein 2 pseudogene pseudo - - - - 20121230 -9606 642924 LINC00535 - - HGNC:43644 8 8q22.1 long intergenic non-protein coding RNA 535 miscRNA LINC00535 long intergenic non-protein coding RNA 535 O - 20121230 -9606 642929 LOC642929 - - - 9 9p11.2 general transcription factor II, i pseudogene pseudo - - - - 20121230 -9606 642934 LOC642934 - - - 10 10q23.1 uncharacterized LOC642934 unknown - - - - 20120511 -9606 642935 LOC642935 - - - 15 15q25.3 ADAM metallopeptidase with thrombospondin type 1 motif, 7 pseudogene pseudo - - - - 20121209 -9606 642938 FAM196A - C10orf141 HGNC:33859|Ensembl:ENSG00000188916|Vega:OTTHUMG00000019248 10 10q26.2 family with sequence similarity 196, member A protein-coding FAM196A family with sequence similarity 196, member A O protein FAM196A 20121230 -9606 642943 LOC642943 RP11-526D8.7 - - 9 9q22.31 SPATA31 subfamily A, member 4 pseudogene pseudo - - - - 20121230 -9606 642946 FLVCR1-AS1 - LQK1|NCRNA00292 HGNC:39077|MIM:610864 1 1q32.3 FLVCR1 antisense RNA 1 (head to head) miscRNA FLVCR1-AS1 FLVCR1 antisense RNA 1 (head to head) O - 20121230 -9606 642947 LOC642947 - - - 9 9q21.13 uncharacterized LOC642947 unknown - - - - 20120710 -9606 642952 SNX18P2 RP11-526D8.8 - HGNC:39610 9 9q22.31 sorting nexin 18 pseudogene 2 pseudo SNX18P2 sorting nexin 18 pseudogene 2 O - 20121230 -9606 642954 RBBP4P1 - RBBP4P HGNC:42368 5 5p15.2 retinoblastoma binding protein 4 pseudogene 1 pseudo RBBP4P1 retinoblastoma binding protein 4 pseudogene 1 O - 20121230 -9606 642956 FABP5P9 - FABP5L9 HGNC:31064 15 15q25.3 fatty acid binding protein 5 pseudogene 9 pseudo FABP5P9 fatty acid binding protein 5 pseudogene 9 O - 20121230 -9606 642958 LOC642958 - - - 4 4q13.3 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 642959 ALOX15P2 - - HGNC:39027 9 9q22.31 arachidonate 15-lipoxygenase pseudogene 2 pseudo ALOX15P2 arachidonate 15-lipoxygenase pseudogene 2 O - 20121230 -9606 642968 FAM163B - C9orf166 HGNC:33277|Ensembl:ENSG00000196990|Vega:OTTHUMG00000159557 9 9q34.2 family with sequence similarity 163, member B protein-coding FAM163B family with sequence similarity 163, member B O protein FAM163B 20121230 -9606 642969 LOC642969 hCG_2015138 - - 12 12q22 phosphoglycerate mutase 1 (brain) pseudogene pseudo - - - - 20121230 -9606 642975 LOC642975 - - - 11 11q12.1 transmembrane protein 230 pseudogene pseudo - - - - 20121230 -9606 642976 GRIK1-AS1 - C21orf9|GRIK1-AS|GRIK1AS|NCRNA00110 HGNC:16458 21 21q22.11 GRIK1 antisense RNA 1 miscRNA GRIK1-AS1 GRIK1 antisense RNA 1 O - 20121230 -9606 642980 LOC642980 - - - X Xq28 uncharacterized LOC642980 unknown - - - - 20120622 -9606 642987 TMEM232 - - HGNC:37270|Ensembl:ENSG00000186952|Vega:OTTHUMG00000163297 5 5q22.1 transmembrane protein 232 protein-coding TMEM232 transmembrane protein 232 O - 20121230 -9606 642996 NFE2L3P1 - - HGNC:22278 18 18q21.32 nuclear factor (erythroid-derived 2)-like 3 pseudogene 1 pseudo NFE2L3P1 nuclear factor (erythroid-derived 2)-like 3 pseudogene 1 O - 20121230 -9606 643001 DUX4L17 - DUXY3 HGNC:37717 Y Yq11.21 double homeobox 4 like 17 pseudo DUX4L17 double homeobox 4 like 17 O - 20121230 -9606 643003 RPS26P28 hCG_1989844 RPS26_11_544 HGNC:36149 5 5p15.1 ribosomal protein S26 pseudogene 28 pseudo RPS26P28 ribosomal protein S26 pseudogene 28 O - 20121230 -9606 643007 RPL36AP8 hCG_1787519 RPL36A_20_1424 HGNC:30973 15 15q14 ribosomal protein L36a pseudogene 8 pseudo RPL36AP8 ribosomal protein L36a pseudogene 8 O - 20121230 -9606 643008 SMIM5 - C17orf109|PP12104 HGNC:40030|Ensembl:ENSG00000204323|Vega:OTTHUMG00000167882 17 17q25.1 small integral membrane protein 5 protein-coding SMIM5 small integral membrane protein 5 O uncharacterized protein C17orf109 20121230 -9606 643014 LOC643014 - - - 4 4q13.3 coiled-coil domain containing 90B pseudogene pseudo - - - - 20121230 -9606 643015 LOC643015 - - - X Xq28 nucleolar protein 11 pseudogene pseudo - - - - 20121230 -9606 643031 MTND5P10 - - HGNC:42272 5 5q21.1 MT-ND5 pseudogene 10 pseudo MTND5P10 MT-ND5 pseudogene 10 O - 20121230 -9606 643034 DUX4L19 - DUXY4 HGNC:37718 Y Yq11.21 double homeobox 4 like 19 pseudo DUX4L19 double homeobox 4 like 19 O - 20121230 -9606 643036 SLED1 UNQ9368 - - 4 4q35.1 proteoglycan 3 pseudogene pseudo - - - - 20121230 -9606 643037 LOC643037 - - - 11 11q21 uncharacterized LOC643037 protein-coding - - - uncharacterized protein LOC643037 20121230 -9606 643043 LOC643043 - - - X Xp11.4 protein shisa-5-like pseudo - - - - 20121209 -9606 643050 ACTR3BP1 - - HGNC:37724 Y Yq11.21 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 1 pseudo ACTR3BP1 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 1 O - 20121230 -9606 643058 LOC643058 - - - 12 12q13.11 interferon induced transmembrane protein 3 pseudogene pseudo - - - - 20121230 -9606 643067 LOC643067 - - - 6 6q13 HORMA domain containing 1 pseudogene pseudo - - - - 20121230 -9606 643072 LOC643072 - - - 2 2q24.2 uncharacterized LOC643072 unknown - - - - 20121230 -9606 643085 LOC643085 - - - 2 2q11.1 uncharacterized LOC643085 unknown - - - - 20121102 -9606 643101 RPL26P22 - RPL26_5_860 HGNC:36244 7 7q35 ribosomal protein L26 pseudogene 22 pseudo RPL26P22 ribosomal protein L26 pseudogene 22 O - 20121230 -9606 643115 KRT223P - - HGNC:32968 17 17q21.2 keratin 223 pseudogene pseudo KRT223P keratin 223 pseudogene O - 20121230 -9606 643118 LOC643118 - - - 11 11q21 serine/arginine-rich splicing factor 2 pseudogene pseudo - - - - 20121230 -9606 643126 TRIM51JP - - HGNC:43978 2 2q11.1 tripartite motif-containing 51J, pseudogene pseudo TRIM51JP tripartite motif-containing 51J, pseudogene O - 20121230 -9606 643136 ZC3H11B - ZC3HDC11B HGNC:25659 1 1q41 zinc finger CCCH-type containing 11B pseudogene pseudo ZC3H11B zinc finger CCCH-type containing 11B pseudogene O - 20121230 -9606 643155 SMIM15 - C5orf43 HGNC:33861|Ensembl:ENSG00000188725|Vega:OTTHUMG00000162241 5 5q12.1 small integral membrane protein 15 protein-coding SMIM15 small integral membrane protein 15 O UPF0542 protein C5orf43 20121230 -9606 643157 MEP1AP4 - - HGNC:39138 9 9p11.2 meprin A, alpha pseudogene 4 pseudo MEP1AP4 meprin A, alpha pseudogene 4 O - 20121230 -9606 643159 ATF4P3 - ATF4C HGNC:788 17 17q25.1 activating transcription factor 4 pseudogene 3 pseudo ATF4P3 activating transcription factor 4 pseudogene 3 O - 20121230 -9606 643160 CYMP RP11-470L19.3 - HGNC:2588|MIM:118943 1 1p13.3 chymosin pseudogene pseudo CYMP chymosin pseudogene O - 20121230 -9606 643161 FAM25A RP11-96C23.2 FAM25B|FAM25C|FAM25G|bA96C23.5 HGNC:23436|Ensembl:ENSG00000188100|Vega:OTTHUMG00000018664 10 10q23.2 family with sequence similarity 25, member A protein-coding FAM25A family with sequence similarity 25, member A O protein FAM25|protein FAM25A 20121230 -9606 643162 DKFZP779L1853 - - - 12 12q13.11 uncharacterized LOC643162 unknown - - - - 20120909 -9606 643167 LOC643167 - - - X Xp11.3 RNA binding motif protein 39 pseudogene pseudo - - - - 20121230 -9606 643168 LOC643168 - - - 7 7p11.2 Rho GTPase activating protein 5 pseudogene pseudo - - - - 20121230 -9606 643171 GGT4P - - HGNC:33207 13 - gamma-glutamyltransferase 4 pseudogene pseudo GGT4P gamma-glutamyltransferase 4 pseudogene O - 20121230 -9606 643172 LOC643172 - - - 20 20q12 neurofilament, heavy polypeptide pseudogene pseudo - - - - 20121230 -9606 643180 CCT6P3 - CCT6-3P HGNC:35137 7 7q11.21 chaperonin containing TCP1, subunit 6 (zeta) pseudogene 3 pseudo CCT6P3 chaperonin containing TCP1, subunit 6 (zeta) pseudogene 3 O - 20121230 -9606 643181 FADS2P1 - - HGNC:43618 11 11q12.1 fatty acid desaturase 2 pseudogene 1 pseudo FADS2P1 fatty acid desaturase 2 pseudogene 1 O - 20121230 -9606 643182 UBTFL8 - - HGNC:44476 3 3p26.1 upstream binding transcription factor, RNA polymerase I-like 8 (pseudogene) pseudo UBTFL8 upstream binding transcription factor, RNA polymerase I-like 8 (pseudogene) O - 20121230 -9606 643193 CALM2P4 RP11-295B17.4 - HGNC:39661 13 13q32.2 calmodulin 2 pseudogene 4 pseudo CALM2P4 calmodulin 2 pseudogene 4 O - 20121230 -9606 643198 RBPJP6 - - HGNC:37486 9 9p11.2 RBPJ pseudogene 6 pseudo RBPJP6 RBPJ pseudogene 6 O - 20121209 -9606 643199 TAB3P1 - - HGNC:37723 Y Yq11.221 TGF-beta activated kinase 1/MAP3K7 binding protein 3 pseudogene 1 pseudo TAB3P1 TGF-beta activated kinase 1/MAP3K7 binding protein 3 pseudogene 1 O - 20121230 -9606 643201 LOC643201 - - - 5 5q35.2 centrosomal protein 192kDa pseudogene pseudo - - - - 20121230 -9606 643205 RPL36P8 - RPL36_4_490 HGNC:36493 4 4q21.1 ribosomal protein L36 pseudogene 8 pseudo RPL36P8 ribosomal protein L36 pseudogene 8 O - 20121230 -9606 643210 FLJ40292 - - - 9 9q34.3 uncharacterized LOC643210 miscRNA - - - - 20121230 -9606 643219 LOC643219 - - - 2 2q11.1 glycerol-3-phosphate acyltransferase 2, mitochondrial pseudogene pseudo - - - - 20121230 -9606 643220 RPL3P6 - RPL3_2_568 HGNC:36395 5 5q12.1 ribosomal protein L3 pseudogene 6 pseudo RPL3P6 ribosomal protein L3 pseudogene 6 O - 20121230 -9606 643224 TUBBP5 - - HGNC:23674 9 9q34.3 tubulin, beta pseudogene 5 pseudo TUBBP5 tubulin, beta pseudogene 5 O - 20121230 -9606 643226 GRXCR2 - - HGNC:33862|Ensembl:ENSG00000204928|Vega:OTTHUMG00000163417 5 5q32 glutaredoxin, cysteine rich 2 protein-coding GRXCR2 glutaredoxin, cysteine rich 2 O GRXCR1-like protein|Glutaredoxin domain-containing cysteine-rich protein 1-like protein|glutaredoxin domain-containing cysteine-rich protein 2 20121230 -9606 643228 GAPDHP30 - - HGNC:37782 8 8q22.1 glyceraldehyde 3 phosphate dehydrogenase pseudogene 30 pseudo GAPDHP30 glyceraldehyde 3 phosphate dehydrogenase pseudogene 30 O - 20121230 -9606 643232 NRBF2P3 - - HGNC:44606 1 1p13.3 nuclear receptor binding factor 2 pseudogene 3 pseudo NRBF2P3 nuclear receptor binding factor 2 pseudogene 3 O - 20121230 -9606 643236 TMEM72 RP11-285G1.3 C10orf127|KSP37|bA285G1.3 HGNC:31658|Ensembl:ENSG00000187783|Vega:OTTHUMG00000018067 10 10q11.21 transmembrane protein 72 protein-coding TMEM72 transmembrane protein 72 O kidney-specific secretory protein of 37 kDa 20121230 -9606 643244 RDXP1 - - HGNC:9945 11 11p15.4 radixin pseudogene 1 pseudo RDXP1 radixin pseudogene 1 O - 20121230 -9606 643246 MAP1LC3B2 - ATG8G HGNC:34390|Ensembl:ENSG00000171471 12 12q24.22 microtubule-associated protein 1 light chain 3 beta 2 protein-coding MAP1LC3B2 microtubule-associated protein 1 light chain 3 beta 2 O Microtubule-associated proteins 1A/1B light chain 3B-like protein|microtubule-associated proteins 1A/1B light chain 3 beta 2 20121230 -9606 643253 CCT6P1 - CCT6-5P|CCT6AP1 HGNC:33094 7 7q11.21 chaperonin containing TCP1, subunit 6 (zeta) pseudogene 1 pseudo CCT6P1 chaperonin containing TCP1, subunit 6 (zeta) pseudogene 1 O - 20121230 -9606 643255 LOC643255 - - - 3 3p12.3 retinoic acid receptor responder (tazarotene induced) 2 pseudogene pseudo - - - - 20121230 -9606 643263 SSU72P6 - - HGNC:43625 11 11p15.4 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 6 pseudo SSU72P6 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) pseudogene 6 O - 20121209 -9606 643264 RPL21P106 - RPL21_48_1266 HGNC:36188 12 12q21.33 ribosomal protein L21 pseudogene 106 pseudo RPL21P106 ribosomal protein L21 pseudogene 106 O - 20121230 -9606 643276 LOC643276 - - - 2 2q21.1 nucleolar complex associated 2 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 643284 RPS29P18 - RPS29_14_993 HGNC:37004 9 9q21.33 ribosomal protein S29 pseudogene 18 pseudo RPS29P18 ribosomal protein S29 pseudogene 18 O - 20121230 -9606 643300 HSPD1P1 - HSPD1-2P HGNC:35133 5 5p14.3 heat shock 60kDa protein 1 (chaperonin) pseudogene 1 pseudo HSPD1P1 heat shock 60kDa protein 1 (chaperonin) pseudogene 1 O - 20121230 -9606 643307 LOC643307 - - - 5 5q12.1 actin, beta pseudogene pseudo - - - - 20121230 -9606 643308 LOC643308 - - - 7 7q35 ribosomal protein L7 pseudogene pseudo - - - - 20121230 -9606 643309 ACTBP1 - - HGNC:134 X Xp11.3 actin, beta pseudogene 1 pseudo ACTBP1 actin, beta pseudogene 1 O - 20121230 -9606 643310 ST13P18 - - HGNC:38861 X Xq21.32 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 18 pseudo ST13P18 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 18 O - 20121230 -9606 643311 CT47B1 - CT47.13|CT47A13 HGNC:33293|MIM:300790|Ensembl:ENSG00000236446|Vega:OTTHUMG00000022308 X Xq24 cancer/testis antigen family 47, member B1 protein-coding CT47B1 cancer/testis antigen family 47, member B1 O cancer/testis CT47 family, member 13|cancer/testis antigen 47.13|cancer/testis antigen 47B|cancer/testis antigen family 147, member B1 20121230 -9606 643314 KIAA0754 - - HGNC:29111|Ensembl:ENSG00000255103|Vega:OTTHUMG00000166964 1 1p34.3 KIAA0754 protein-coding KIAA0754 KIAA0754 O uncharacterized protein KIAA0754 20121230 -9606 643327 LOC643327 - - - 6 6p25.2 uncharacterized LOC643327 unknown - - - - 20120511 -9606 643329 LOC643329 - - - 1 1p13.2 keratin 18 pseudogene pseudo - - - - 20121230 -9606 643332 ECRP - - - 14 14q11.2 ribonuclease, RNase A family, 2 (liver, eosinophil-derived neurotoxin) pseudogene pseudo - - - - 20121230 -9606 643336 CDC42P2 - - HGNC:33952 7 7p11.2 cell division cycle 42 pseudogene 2 pseudo CDC42P2 cell division cycle 42 pseudogene 2 O - 20121230 -9606 643338 C15orf62 - - HGNC:34489|Ensembl:ENSG00000188277|Vega:OTTHUMG00000172536 15 15q15.1 chromosome 15 open reading frame 62 protein-coding C15orf62 chromosome 15 open reading frame 62 O uncharacterized protein C15orf62, mitochondrial|uncharacterized protein FLJ75552, mitochondrial 20121230 -9606 643339 LOC643339 - - - 12 12q22 uncharacterized LOC643339 miscRNA - - - - 20121230 -9606 643342 LOC643342 - - - 9 9q22.32 ATM interactor pseudogene pseudo - - - - 20121230 -9606 643343 RPL5P4 - RPL5_1_31 HGNC:36095 1 1p34.3 ribosomal protein L5 pseudogene 4 pseudo RPL5P4 ribosomal protein L5 pseudogene 4 O - 20121230 -9606 643348 LOC643348 - - - 7 7p11.2 ankyrin repeat domain 26 pseudogene pseudo - - - - 20121230 -9606 643353 LOC643353 - - - 7 7q11.21 C9orf140 pseudogene pseudo - - - - 20121230 -9606 643355 LOC643355 - - - 1 1p13.2 uncharacterized LOC643355 protein-coding - - - uncharacterized protein LOC643355 20121230 -9606 643358 RPS27AP16 - RPS27A_8_1488 HGNC:36855 16 16q21 ribosomal protein S27a pseudogene 16 pseudo RPS27AP16 ribosomal protein S27a pseudogene 16 O - 20121230 -9606 643365 LINC00452 - - HGNC:42800 13 13q34 long intergenic non-protein coding RNA 452 miscRNA LINC00452 long intergenic non-protein coding RNA 452 O - 20121230 -9606 643367 LOC643367 - - - 5 5q13.2 POM121 membrane glycoprotein (rat) pseudogene pseudo - - - - 20121209 -9606 643371 LOC643371 - - - X Xq21.33 tubulin, beta 2B class IIb pseudogene pseudo - - - - 20121230 -9606 643373 LOC643373 - - - 5 5p13.2 glucuronidase, beta pseudogene pseudo - - - - 20121230 -9606 643376 BTBD18 hCG_1730474 - HGNC:37214|Ensembl:ENSG00000233436|Vega:OTTHUMG00000167203 11 11q12.1 BTB (POZ) domain containing 18 protein-coding BTBD18 BTB (POZ) domain containing 18 O BTB/POZ domain-containing protein 18|hCG1730474 20121230 -9606 643381 LOC643381 - - - 11 11q22.1 zinc finger protein 614 pseudogene pseudo - - - - 20121230 -9606 643382 TMEM253 - C14orf176|C14orf95|NCRNA00220 HGNC:32545|Ensembl:ENSG00000232070|Vega:OTTHUMG00000171361 14 14q11.2 transmembrane protein 253 protein-coding TMEM253 transmembrane protein 253 O transmembrane protein C14orf176 20121230 -9606 643384 UNC93B4 - - HGNC:13484 4 4p16.3 unc-93 homolog B4 pseudogene (C. elegans) pseudo UNC93B4 unc-93 homolog B4 pseudogene (C. elegans) O - 20121230 -9606 643387 LOC643387 - - - 2 2q37.3 TAR DNA binding protein pseudogene pseudo - - - - 20121230 -9606 643394 SPINK9 - LEKTI2 HGNC:32951|MIM:613511|Ensembl:ENSG00000204909|Vega:OTTHUMG00000163431 5 5q32 serine peptidase inhibitor, Kazal type 9 protein-coding SPINK9 serine peptidase inhibitor, Kazal type 9 O lymphoepithelial Kazal-type-related inhibitor 2|serine protease inhibitor Kazal type 9|serine protease inhibitor Kazal-type 9 20121230 -9606 643395 LOC643395 - - - 9 9p11.2 uncharacterized LOC643395 pseudo - - - - 20121209 -9606 643401 LOC643401 - - - 5 5p14.1 uncharacterized LOC643401 miscRNA - - - - 20121230 -9606 643406 LOC643406 - - HPRD:14595 20 20p12.3 uncharacterized LOC643406 miscRNA - - - - 20121230 -9606 643412 BTF3P16 - - HGNC:38568 3 3q12.3 basic transcription factor 3 pseudogene 16 pseudo BTF3P16 basic transcription factor 3 pseudogene 16 O - 20121230 -9606 643414 LIPK RP11-186O14.2 LIPL2|bA186O14.2 HGNC:23444|MIM:613922|Ensembl:ENSG00000204021|Vega:OTTHUMG00000018693 10 10q23.31 lipase, family member K protein-coding LIPK lipase, family member K O lipase K|lipase member K|lipase-like abhydrolase domain-containing protein 2|lipase-like, ab-hydrolase domain containing 2 20121230 -9606 643418 LIPN - LI4|LIPL4|bA186O14.3 HGNC:23452|MIM:613924|Ensembl:ENSG00000204020|Vega:OTTHUMG00000018694 10 10q23.31 lipase, family member N protein-coding LIPN lipase, family member N O lipase member N|lipase-like abhydrolase domain-containing protein 4 20121230 -9606 643421 LOC643421 - - - X Xq25 tumor protein, translationally-controlled 1 pseudogene pseudo - - - - 20121230 -9606 643427 RBMS2P1 - RBMS2P HGNC:30994 12 12q22 RNA binding motif, single stranded interacting protein 2 pseudogene 1 pseudo RBMS2P1 RNA binding motif, single stranded interacting protein 2 pseudogene 1 O - 20121230 -9606 643432 TSG1 - - - 6 6q16.1 tumor suppressor TSG1 miscRNA - - - - 20121230 -9606 643438 LOC643438 tcag7.1239 - - 7 7q36.1 huntingtin interacting protein K pseudogene pseudo - - - - 20121230 -9606 643441 LOC643441 - - - 1 1p13.2 uncharacterized LOC643441 miscRNA - - - - 20121230 -9606 643445 TRIM43CP - - HGNC:43981 2 2q11.2 tripartite motif containing 43C, pseudogene pseudo TRIM43CP tripartite motif containing 43C, pseudogene O - 20121230 -9606 643446 RNPS1P1 - - HGNC:39525 4 4p15.33 RNA binding protein S1, serine-rich domain pseudogene 1 pseudo RNPS1P1 RNA binding protein S1, serine-rich domain pseudogene 1 O - 20121230 -9606 643447 LOC643447 - - - 11 11p15.4 keratin 8 pseudogene pseudo - - - - 20121230 -9606 643454 LOC643454 - - - 1 1q41 adaptor-related protein complex 3, sigma 1 subunit pseudogene pseudo - - - - 20121230 -9606 643459 DUSP5P2 - - HGNC:44482 3 3p25.3 dual specificity phosphatase 5 pseudogene 2 pseudo DUSP5P2 dual specificity phosphatase 5 pseudogene 2 O - 20121230 -9606 643470 SURF6P1 - - HGNC:37722 Y Yq11.221 surfeit 6 pseudogene 1 pseudo SURF6P1 surfeit 6 pseudogene 1 O - 20121209 -9606 643471 KRT18P12 - - HGNC:33410 1 1q41 keratin 18 pseudogene 12 pseudo KRT18P12 keratin 18 pseudogene 12 O - 20121230 -9606 643479 FAM25E - AC012044.5 HGNC:23587 10 10q11.22 family with sequence similarity 25, member E protein-coding FAM25E family with sequence similarity 25, member E O - 20120511 -9606 643486 LOC643486 hCG_1811337 - - X Xq21.33 bromodomain, testis-specific pseudogene pseudo - - - - 20121230 -9606 643494 LOC643494 - - - 8 8q22.2 RNA binding motif protein 4B pseudogene pseudo - - - - 20121230 -9606 643496 LOC643496 hCG_1660379 - - 2 2q24.3 hCG1660379 unknown - - - - 20120511 -9606 643499 RPL11P5 - RPL11_3_1291 HGNC:36849 12 12q24.31 ribosomal protein L11 pseudogene 5 pseudo RPL11P5 ribosomal protein L11 pseudogene 5 O - 20121230 -9606 643503 TARDBPP1 - TARDBPL|bA318P23.1 HGNC:16536 20 20p12.3 TAR DNA binding protein pseudogene 1 pseudo TARDBPP1 TAR DNA binding protein pseudogene 1 O - 20121230 -9606 643507 RPL7P57 - RPL7_22_1777 HGNC:35901 X Xp11.23 ribosomal protein L7 pseudogene 57 pseudo RPL7P57 ribosomal protein L7 pseudogene 57 O - 20121230 -9606 643513 LOC643513 - - - 4 4q21.21 karyopherin alpha 2 (RAG cohort 1, importin alpha 1) pseudogene pseudo - - - - 20121230 -9606 643520 LOC643520 - - - 9 9q22.32 uncharacterized LOC643520 protein-coding - - - - 20120318 -9606 643529 LOC643529 hCG_2024094 - - 10 10q23.31 hCG2024094 miscRNA - - - - 20121230 -9606 643531 RPL29P26 - RPL29_14_1268 HGNC:35717 12 12q22 ribosomal protein L29 pseudogene 26 pseudo RPL29P26 ribosomal protein L29 pseudogene 26 O - 20121230 -9606 643535 KCTD9P2 RP11-539A6__B.1 KCTD9L HGNC:29274 X Xq22.3 potassium channel tetramerisation domain containing 9 pseudogene 2 pseudo KCTD9P2 potassium channel tetramerisation domain containing 9 pseudogene 2 O - 20121230 -9606 643536 VDAC1P10 - - HGNC:37479 1 1q41 voltage-dependent anion channel 1 pseudogene 10 pseudo VDAC1P10 voltage-dependent anion channel 1 pseudogene 10 O - 20121230 -9606 643542 LOC643542 - - - 18 18q22.1 uncharacterized LOC643542 miscRNA - - - - 20121230 -9606 643549 FLJ40606 - - - 20 20q13.12 uncharacterized LOC643549 unknown - - - - 20120622 -9606 643550 RPL12P33 - RPL12_13_1292 HGNC:35696 12 12q24.31 ribosomal protein L12 pseudogene 33 pseudo RPL12P33 ribosomal protein L12 pseudogene 33 O - 20121230 -9606 643551 LOC643551 - - - 13 13q32.3 uncharacterized LOC643551 unknown - - - - 20120511 -9606 643554 LOC643554 - - - X Xp11.23 ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 643562 LOC643562 - - - 6 6q14.1 Rho GTPase activating protein 21 pseudogene pseudo - - - - 20121230 -9606 643563 EEF1A1P15 - EEF1AL13 HGNC:3198 X Xq21.33 eukaryotic translation elongation factor 1 alpha 1 pseudogene 15 pseudo EEF1A1P15 eukaryotic translation elongation factor 1 alpha 1 pseudogene 15 O - 20121230 -9606 643576 LOC643576 hCG_2015269 - - 12 12q23.3 phosphoglycerate mutase 1 (brain) pseudogene pseudo - - - - 20121230 -9606 643579 LOC643579 - - - 4 4p11 uncharacterized LOC643579 pseudo - - - - 20121209 -9606 643582 LOC643582 - - - 18 18q22.1 aldo-keto reductase family 1, member B10 (aldose reductase) pseudogene pseudo - - - - 20121230 -9606 643586 PKMP1 - - HGNC:44243 1 1p13.2 pyruvate kinase, muscle pseudogene 1 pseudo PKMP1 pyruvate kinase, muscle pseudogene 1 O - 20121230 -9606 643587 CTSL1P5 RP11-342C24.5 CTSLL5|bA342C24.4 HGNC:23580 10 10q11.22 cathepsin L1 pseudogene 5 pseudo CTSL1P5 cathepsin L1 pseudogene 5 O - 20121209 -9606 643596 RNF224 - - HGNC:41912|Ensembl:ENSG00000233198 9 9q34.3 ring finger protein 224 protein-coding RNF224 ring finger protein 224 O RING finger protein 224 20121230 -9606 643605 LOC643605 - - - X Xq22.1 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase like 2 pseudogene pseudo - - - - 20121230 -9606 643609 NR1H5P - Fxrb|NR1H5 HGNC:32673 1 1p13.2 nuclear receptor subfamily 1, group H, member 5, pseudogene pseudo NR1H5P nuclear receptor subfamily 1, group H, member 5, pseudogene O - 20121230 -9606 643615 UBTFL6 - - HGNC:35406 2 2q11.2 upstream binding transcription factor, RNA polymerase I-like 6 (pseudogene) pseudo UBTFL6 upstream binding transcription factor, RNA polymerase I-like 6 (pseudogene) O - 20121230 -9606 643616 MOP-1 - - - 4 4q21.22 MOP-1 unknown - - - - 20120710 -9606 643617 RPSAP8 RP11-402K9.2 LAMR1P8|RPSA_26_1797 HGNC:31462 X Xq22.1 ribosomal protein SA pseudogene 8 pseudo RPSAP8 ribosomal protein SA pseudogene 8 O - 20121230 -9606 643623 LOC643623 - - - 6 6q22.31 uncharacterized LOC643623 miscRNA - - - - 20121230 -9606 643627 RPS18P8 - RPS18_5_650 HGNC:35956 6 6p25.1 ribosomal protein S18 pseudogene 8 pseudo RPS18P8 ribosomal protein S18 pseudogene 8 O - 20121230 -9606 643630 LOC643630 - - - 9 9p11.2 ribosomal protein L7a pseudogene pseudo - - - - 20121230 -9606 643634 LOC643634 - - - 3 3p24.1 tropomyosin 1 (alpha) pseudogene pseudo - - - - 20121230 -9606 643637 GLYATL1P4 - - HGNC:37864 11 11q12.1 glycine-N-acyltransferase-like 1 pseudogene 4 pseudo GLYATL1P4 glycine-N-acyltransferase-like 1 pseudogene 4 O - 20121230 -9606 643641 ZNF862 - - HGNC:34519|Ensembl:ENSG00000106479|Vega:OTTHUMG00000158093 7 7q36.1 zinc finger protein 862 protein-coding ZNF862 zinc finger protein 862 O - 20121230 -9606 643646 HSD17B1P1 - EDH17B1|EDHB17|HSD17|HSD17BP1|SDR28C1P1 HGNC:5216 17 17q21.2 hydroxysteroid (17-beta) dehydrogenase 1 pseudogene 1 pseudo HSD17B1P1 hydroxysteroid (17-beta) dehydrogenase 1 pseudogene 1 O - 20121230 -9606 643648 LOC643648 - - - 9 9p11.2 uncharacterized LOC643648 miscRNA - - - - 20121230 -9606 643650 LOC643650 - - - 10 10q11.22 uncharacterized LOC643650 miscRNA - - - - 20121230 -9606 643653 RPL35P8 - RPL35_6_1759 HGNC:36158 22 22q13.33 ribosomal protein L35 pseudogene 8 pseudo RPL35P8 ribosomal protein L35 pseudogene 8 O - 20121230 -9606 643659 LOC643659 hCG_2019139 - - 20 20p11.23 hCG2019139 unknown - - - - 20120511 -9606 643664 SLC35G6 - AMAC1L3|TMEM21B HGNC:31351|Ensembl:ENSG00000259224 17 17p13.1 solute carrier family 35, member G6 protein-coding SLC35G6 solute carrier family 35, member G6 O acyl-malonyl condensing enzyme 1-like 3|acyl-malonyl-condensing enzyme 1-like protein 3|protein AMAC1L3|solute carrier family 35 member G6|transmembrane protein 21B 20121230 -9606 643668 PSMC1P9 - - HGNC:39784 12 12p12.3 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 9 pseudo PSMC1P9 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 9 O - 20121230 -9606 643669 LOC643669 - - Ensembl:ENSG00000262484|Vega:OTTHUMG00000177374 19 19q13.2 uncharacterized LOC643669 protein-coding - - - uncharacterized protein LOC643669 20121230 -9606 643675 LOC643675 hCG_2045751 - - 4 4q24 hCG2045751 unknown - - - - 20120511 -9606 643677 CCDC168 hCG_2011852 C13orf40 HGNC:26851 13 13q33.1 coiled-coil domain containing 168 protein-coding CCDC168 coiled-coil domain containing 168 O coiled-coil domain-containing protein 168 20121230 -9606 643680 MS4A4E - - HGNC:14284|MIM:608401|Ensembl:ENSG00000214787|Vega:OTTHUMG00000167354 11 11q12.2 membrane-spanning 4-domains, subfamily A, member 4E protein-coding MS4A4E membrane-spanning 4-domains, subfamily A, member 4E O - 20121230 -9606 643689 HNRNPA3P3 - - HGNC:39772 X Xq27.1 heterogeneous nuclear ribonucleoprotein A3 pseudogene 3 pseudo HNRNPA3P3 heterogeneous nuclear ribonucleoprotein A3 pseudogene 3 O - 20121230 -9606 643696 LOC643696 - - - 15 15q25.2 uncharacterized LOC643696 unknown - - - - 20121209 -9606 643699 GOLGA8R - - HGNC:44407|Ensembl:ENSG00000232653|Vega:OTTHUMG00000175401 15 15q13.2 golgin A8 family, member R protein-coding GOLGA8R golgin A8 family, member R O - 20121230 -9606 643707 GOLGA6L4 - - Ensembl:ENSG00000184206|Vega:OTTHUMG00000163050 15 15q25.2 golgin A6 family-like 4 protein-coding - - - golgi autoantigen, golgin subfamily a, 6-like 4|putative golgin subfamily A member 6-like protein 4 20121230 -9606 643709 LOC643709 - - - 11 11q12.1 macrophage expressed 1 pseudogene pseudo - - - - 20121230 -9606 643711 LOC643711 - - - 12 12q23.1 platelet-activating factor acetylhydrolase 1b, catalytic subunit 2 (30kDa) pseudogene pseudo - - - - 20121230 -9606 643714 LOC643714 - - - 16 16q12.1 uncharacterized LOC643714 miscRNA - - - - 20121230 -9606 643719 SCGB1B2P - SCGB4A1P HGNC:20741 19 19q13.11 secretoglobin, family 1B, member 2, pseudogene pseudo SCGB1B2P secretoglobin, family 1B, member 2, pseudogene O - 20121230 -9606 643721 FLJ45508 - - - 12 12q23.3 uncharacterized LOC643721 unknown - - - - 20121221 -9606 643723 LOC643723 - - - 1 1q41 uncharacterized LOC643723 miscRNA - - - - 20121230 -9606 643733 LOC643733 - - - 11 11q22.3 caspase 4, apoptosis-related cysteine peptidase pseudogene pseudo - - - - 20121230 -9606 643736 LCA10 - LCAP - X Xq28 lung carcinoma-associated protein 10 protein-coding - - - putative lung carcinoma-associated protein 10 20120815 -9606 643739 GAPDHP31 - - HGNC:37783 12 12p13.31 glyceraldehyde 3 phosphate dehydrogenase pseudogene 31 pseudo GAPDHP31 glyceraldehyde 3 phosphate dehydrogenase pseudogene 31 O - 20121230 -9606 643744 HMGN2P4 - HMGN2L4 HGNC:33567 5 5q13.3 high mobility group nucleosomal binding domain 2 pseudogene 4 pseudo HMGN2P4 high mobility group nucleosomal binding domain 2 pseudogene 4 O - 20121230 -9606 643749 TRAF3IP2-AS1 - C6UAS|C6orf3|NCRNA00248|TRAF3IP2-AS2 HGNC:40005 6 6q21 TRAF3IP2 antisense RNA 1 miscRNA TRAF3IP2-AS1 TRAF3IP2 antisense RNA 1 O - 20121230 -9606 643751 CDC42P6 - - HGNC:44430 4 4p15.2 CDC42P6 pseudo CDC42P6 CDC42P6 O - 20121230 -9606 643752 RAP1BL hCG_1757335 - - 5 5q13.3 RAP1B, member of RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 643763 UG0898H09 - - - 8 8q12.3 uncharacterized LOC643763 miscRNA - - - - 20121230 -9606 643766 PSMC1P6 - - HGNC:39781 3 3p11.2 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 6 pseudo PSMC1P6 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 6 O - 20121230 -9606 643770 LOC643770 - - - 12 12q23.1 uncharacterized LOC643770 miscRNA - - - - 20121230 -9606 643773 PNPLA10P - - HGNC:32928 X Xq25 patatin-like phospholipase domain containing 10 pseudogene pseudo PNPLA10P patatin-like phospholipase domain containing 10 pseudogene O - 20121230 -9606 643779 RPLP0P5 - RPLP0_1_167 HGNC:35620 1 1q41 ribosomal protein, large, P0 pseudogene 5 pseudo RPLP0P5 ribosomal protein, large, P0 pseudogene 5 O - 20121230 -9606 643783 USP46-AS1 - - HGNC:43991 4 4q12 USP46 antisense RNA 1 miscRNA USP46-AS1 USP46 antisense RNA 1 O - 20121230 -9606 643784 LOC643784 - - - 5 5q13.2 NLR family, apoptosis inhibitory protein pseudogene pseudo - - - - 20121209 -9606 643790 HMGN1P38 - - HGNC:39422 15 15q26.1 high mobility group nucleosome binding domain 1 pseudogene 38 pseudo HMGN1P38 high mobility group nucleosome binding domain 1 pseudogene 38 O - 20121230 -9606 643792 LOC643792 AL953854.2 - - 9 9p11.2-p11.1 contactin associated protein-like 3 pseudogene pseudo - - - - 20121216 -9606 643797 LOC643797 UNQ6190 - - 15 15q26.1 AGVR6190 unknown - - - - 20121230 -9606 643802 LOC643802 - - - 16 16q12.2 u3 small nucleolar ribonucleoprotein protein MPP10-like protein-coding - - - uncharacterized protein LOC643802 20121230 -9606 643803 KRTAP24-1 - KAP24.1 HGNC:33902|Ensembl:ENSG00000188694|Vega:OTTHUMG00000125483 21 21q22.11 keratin associated protein 24-1 protein-coding KRTAP24-1 keratin associated protein 24-1 O keratin-associated protein 24-1 20121230 -9606 643812 KRTAP27-1 - - HGNC:33864|Ensembl:ENSG00000206107|Vega:OTTHUMG00000059577 21 21q22.11 keratin associated protein 27-1 protein-coding KRTAP27-1 keratin associated protein 27-1 O keratin-associated protein 27-1 20121230 -9606 643827 LOC643827 - - - 9 9q12 contactin associated protein-like 3 pseudogene pseudo - - - - 20121209 -9606 643831 PDCL3P2 - - HGNC:31705 8 8q22.3 phosducin-like 3 pseudogene 2 pseudo PDCL3P2 phosducin-like 3 pseudogene 2 O - 20121230 -9606 643832 GAGE10 - - HGNC:30968|MIM:300737|Ensembl:ENSG00000215274|Vega:OTTHUMG00000024136 X Xp11.23 G antigen 10 protein-coding GAGE10 G antigen 10 O GAGE-10 20121230 -9606 643834 PGA3 - PGA4|PGA5 HGNC:8885|MIM:169710|Ensembl:ENSG00000229859|Vega:OTTHUMG00000168071 11 11q12.2 pepsinogen 3, group I (pepsinogen A) protein-coding PGA3 pepsinogen 3, group I (pepsinogen A) O pepsin A|pepsinogen A3 20121230 -9606 643836 ZFP62 - ZET|ZNF755 HGNC:23241|MIM:610281|Ensembl:ENSG00000196670|Vega:OTTHUMG00000162273 5 5q35.3 ZFP62 zinc finger protein protein-coding ZFP62 ZFP62 zinc finger protein O zfp-62|zinc finger protein 62 homolog 20121230 -9606 643837 LOC643837 - - - 1 1p36.33 uncharacterized LOC643837 miscRNA - - - - 20121230 -9606 643845 LOC643845 - - - 9 - suppressor of hairless protein homolog pseudo - - - - 20121209 -9606 643847 PGA4 - PGA3|PGA5 HGNC:8886|MIM:169720|Ensembl:ENSG00000229183|Vega:OTTHUMG00000168073 11 11q12.2 pepsinogen 4, group I (pepsinogen A) protein-coding PGA4 pepsinogen 4, group I (pepsinogen A) O pepsin A|pepsinogen A4|pepsinogen-3|pepsinogen-4 20121209 -9606 643851 RPL31P32 - RPL31_14_719 HGNC:35719 6 6q14.3 ribosomal protein L31 pseudogene 32 pseudo RPL31P32 ribosomal protein L31 pseudogene 32 O - 20121230 -9606 643853 TMPPE - - HGNC:33865|Ensembl:ENSG00000188167|Vega:OTTHUMG00000155779 3 3p22.3 transmembrane protein with metallophosphoesterase domain protein-coding TMPPE transmembrane protein with metallophosphoesterase domain O - 20121230 -9606 643854 CTAGE9 hCG_2030429 - HGNC:37275|Ensembl:ENSG00000236761|Vega:OTTHUMG00000047966 6 6q23.2 CTAGE family, member 9 protein-coding CTAGE9 CTAGE family, member 9 O cutaneous T-cell lymphoma-associated antigen 9|protein cTAGE-9 20121230 -9606 643855 LOC643855 - - - 11 11q22.3 G1 to S phase transition pseudogene pseudo - - - - 20121230 -9606 643858 KRT18P30 - - HGNC:33399 6 6q14.3 keratin 18 pseudogene 30 pseudo KRT18P30 keratin 18 pseudogene 30 O - 20121230 -9606 643859 FEM1AP3 - - HGNC:39831 6 6q21 fem-1 homolog a (C. elegans) pseudogene 3 pseudo FEM1AP3 fem-1 homolog a (C. elegans) pseudogene 3 O - 20121230 -9606 643860 ATP5A1P6 - - HGNC:37664 9 9p11.2 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 6 pseudo ATP5A1P6 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 6 O - 20121209 -9606 643862 LOC643862 - - - 7 7q11.23 Williams Beuren syndrome chromosome region 19 pseudogene pseudo - - - - 20121230 -9606 643863 RPL17P34 - RPL17_10_1081 HGNC:36756 10 10q23.33 ribosomal protein L17 pseudogene 34 pseudo RPL17P34 ribosomal protein L17 pseudogene 34 O - 20121230 -9606 643865 KRT126P - KRT HGNC:32970 12 12q13.13 keratin 126 pseudogene pseudo KRT126P keratin 126 pseudogene O - 20121230 -9606 643866 CBLN3 UNQ755 PRO1486 HGNC:20146|MIM:612978|Ensembl:ENSG00000139899|Vega:OTTHUMG00000171315 14 14q12 cerebellin 3 precursor protein-coding CBLN3 cerebellin 3 precursor O cerebellin-3 20121230 -9606 643870 LOC643870 - - - 6 6q14.3 tumor protein, translationally-controlled 1 pseudogene pseudo - - - - 20121230 -9606 643872 HMGN2P6 - HMGN2L6 HGNC:33574 14 14q12 high mobility group nucleosomal binding domain 2 pseudogene 6 pseudo HMGN2P6 high mobility group nucleosomal binding domain 2 pseudogene 6 O - 20121230 -9606 643873 EIF4BP7 - - HGNC:37940 X Xq23 eukaryotic translation initiation factor 4B pseudogene 7 pseudo EIF4BP7 eukaryotic translation initiation factor 4B pseudogene 7 O - 20121230 -9606 643875 CNN3P1 - - HGNC:38666 6 6p25.1 calponin 3, acidic pseudogene 1 pseudo CNN3P1 calponin 3, acidic pseudogene 1 O - 20121230 -9606 643880 LOC643880 - - - 9 9q13 FK506 binding protein 4, 59kDa pseudogene pseudo - - - - 20121209 -9606 643884 SOCS5P5 - - HGNC:44601 6 6q21 suppressor of cytokine signaling 5 pseudogene 5 pseudo SOCS5P5 suppressor of cytokine signaling 5 pseudogene 5 O - 20121230 -9606 643888 LOC643888 - - - X Xq23 coiled-coil domain containing 121 pseudogene pseudo - - - - 20121230 -9606 643896 LOC643896 hCG_1790474 - - 2 2q11.2 cAMP-regulated phosphoprotein, 19kDa pseudogene pseudo - - - - 20121230 -9606 643898 ARL2BPP2 - ARL2BPL|bcm1040 HGNC:31036 12 12q13.13 ADP-ribosylation factor-like 2 binding protein pseudogene 2 pseudo ARL2BPP2 ADP-ribosylation factor-like 2 binding protein pseudogene 2 O - 20121230 -9606 643904 RNF222 - - HGNC:34517|Ensembl:ENSG00000189051|Vega:OTTHUMG00000132049 17 17p13.1 ring finger protein 222 protein-coding RNF222 ring finger protein 222 O RING finger protein 222|RING finger protein LOC643904 20121230 -9606 643905 PRR21 - - HGNC:33866|Ensembl:ENSG00000221961|Vega:OTTHUMG00000159174 2 2q37.3 proline rich 21 protein-coding PRR21 proline rich 21 O putative proline-rich protein 21 20121230 -9606 643906 RPL7P27 - RPL7_11_720 HGNC:36649 6 6q14.3 ribosomal protein L7 pseudogene 27 pseudo RPL7P27 ribosomal protein L7 pseudogene 27 O - 20121230 -9606 643909 LOC643909 - - - 7 7q11.23 Williams Beuren syndrome chromosome region 19 pseudogene pseudo - - - - 20121230 -9606 643911 CRNDE hCG_1815491 LINC00180|NCRNA00180 HGNC:37078 16 16q12.2 colorectal neoplasia differentially expressed (non-protein coding) miscRNA CRNDE colorectal neoplasia differentially expressed (non-protein coding) O - 20121230 -9606 643915 MORF4L2P1 - MORF4LP4|MRG4 HGNC:20403 4 4q12 mortality factor 4 like 2 pseudogene 1 pseudo MORF4L2P1 mortality factor 4 like 2 pseudogene 1 O - 20121230 -9606 643916 LOC643916 - - - 6 6q14.3 RAB1A, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 643923 LOC643923 - - - 11 11q22.3 uncharacterized LOC643923 miscRNA - - - - 20121230 -9606 643932 RPS3AP20 - RPS3A_6_581 HGNC:36141 5 5q14.1 ribosomal protein S3a pseudogene 20 pseudo RPS3AP20 ribosomal protein S3a pseudogene 20 O - 20121230 -9606 643936 LOC643936 - - - 6 6p24.3 uncharacterized LOC643936 protein-coding - - - - 20120318 -9606 643941 PHKG1P1 - - HGNC:33916 7 7q11.21 phosphorylase kinase, gamma 1 pseudogene 1 pseudo PHKG1P1 phosphorylase kinase, gamma 1 pseudogene 1 O - 20121230 -9606 643949 RPLP2P3 - RPLP2_2_1170 HGNC:36494 11 11q22.3 ribosomal protein, large, P2 pseudogene 3 pseudo RPLP2P3 ribosomal protein, large, P2 pseudogene 3 O - 20121230 -9606 643954 RPSAP43 - RPSA_12_742 HGNC:35501 6 6q21 ribosomal protein SA pseudogene 43 pseudo RPSAP43 ribosomal protein SA pseudogene 43 O - 20121230 -9606 643955 ZNF733P - ZNF733 HGNC:32473 7 7q11.21 zinc finger protein 733, pseudogene pseudo ZNF733P zinc finger protein 733, pseudogene O - 20121230 -9606 643960 RPS2P18 - RPS2_7_293 HGNC:36449 2 2q31.1 ribosomal protein S2 pseudogene 18 pseudo RPS2P18 ribosomal protein S2 pseudogene 18 O - 20121230 -9606 643962 LOC643962 - - - 6 6q15 uncharacterized LOC643962 unknown - - - - 20121017 -9606 643965 TMEM88B - - HGNC:37099|Ensembl:ENSG00000205116|Vega:OTTHUMG00000153395 1 1p36.33 transmembrane protein 88B protein-coding TMEM88B transmembrane protein 88B O - 20121230 -9606 643971 RPL7P29 - RPL7_13_721 HGNC:35700 6 6q14.3 ribosomal protein L7 pseudogene 29 pseudo RPL7P29 ribosomal protein L7 pseudogene 29 O - 20121230 -9606 643974 RPL6P13 - RPL6_10_498 HGNC:36399 4 4q21.3 ribosomal protein L6 pseudogene 13 pseudo RPL6P13 ribosomal protein L6 pseudogene 13 O - 20121230 -9606 643976 FOXN3P1 - - HGNC:43882 X Xq22.1 forkhead box N3 pseudogene 1 pseudo FOXN3P1 forkhead box N3 pseudogene 1 O - 20121230 -9606 643977 FLJ32255 - - - 5 5p12 uncharacterized LOC643977 unknown - - - - 20121230 -9606 643981 RPS3AP36 - RPS3A_16_1083 HGNC:35596 10 10q24.1 ribosomal protein S3a pseudogene 36 pseudo RPS3AP36 ribosomal protein S3a pseudogene 36 O - 20121230 -9606 643987 HSFY4P - - HGNC:37721 Y Yq11.223 heat shock transcription factor, Y-linked 4, pseudogene pseudo HSFY4P heat shock transcription factor, Y-linked 4, pseudogene O - 20121230 -9606 643988 C1orf233 - - HGNC:42951|Ensembl:ENSG00000228594|Vega:OTTHUMG00000154864 1 1p36.33 chromosome 1 open reading frame 233 protein-coding C1orf233 chromosome 1 open reading frame 233 O fibronectin type-III domain-containing transmembrane protein C1orf233 20121230 -9606 643992 RPS2P26 - RPS2_8_601 HGNC:36157 5 5q22.3 ribosomal protein S2 pseudogene 26 pseudo RPS2P26 ribosomal protein S2 pseudogene 26 O - 20121230 -9606 643996 VDAC2P2 - - HGNC:32693 12 12p13.31 voltage-dependent anion channel 2 pseudogene 2 pseudo VDAC2P2 voltage-dependent anion channel 2 pseudogene 2 O - 20121230 -9606 643997 LOC643997 - - - 2 2q31.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 644000 ARAF2P - ARAF2|ARAFPS|PKS1 HGNC:647 7 7q11.21 v-raf murine sarcoma 3611 viral oncogene homolog 2, pseudogene pseudo ARAF2P v-raf murine sarcoma 3611 viral oncogene homolog 2, pseudogene O - 20121230 -9606 644006 LOC644006 - - - 1 1q42.2 ring finger protein 4 pseudogene pseudo - - - - 20121230 -9606 644013 RPS6P3 - RPS6_1_251 HGNC:36943 2 2q11.2 ribosomal protein S6 pseudogene 3 pseudo RPS6P3 ribosomal protein S6 pseudogene 3 O - 20121230 -9606 644016 HSPD1P10 - HSPD1-4P HGNC:35131 6 6q15 heat shock 60kDa protein 1 (chaperonin) pseudogene 10 pseudo HSPD1P10 heat shock 60kDa protein 1 (chaperonin) pseudogene 10 O - 20121230 -9606 644017 ZNF734P - ZNF734 HGNC:32465 7 7q11.21 zinc finger protein 734, pseudogene pseudo ZNF734P zinc finger protein 734, pseudogene O - 20121230 -9606 644019 CBWD6 BX255923.2 - HGNC:31978|Ensembl:ENSG00000204790|Vega:OTTHUMG00000066820 9 9q21.11 COBW domain containing 6 protein-coding CBWD6 COBW domain containing 6 O COBW domain-containing protein 6|cobalamin synthase W domain-containing protein 6|cobalamin synthetase W domain-containing protein 6 20121230 -9606 644020 RPL32P23 - RPL32_6_1020 HGNC:36007 10 10p15.1 ribosomal protein L32 pseudogene 23 pseudo RPL32P23 ribosomal protein L32 pseudogene 23 O - 20121230 -9606 644021 CTSL1P3 - CTSLL3 HGNC:2541 10 10q11.22 cathepsin L1 pseudogene 3 pseudo CTSL1P3 cathepsin L1 pseudogene 3 O - 20121230 -9606 644022 RPL22P19 - RPL22_8_1294 HGNC:36567 12 12q24.31 ribosomal protein L22 pseudogene 19 pseudo RPL22P19 ribosomal protein L22 pseudogene 19 O - 20121230 -9606 644029 RPL7AP62 - RPL7A_28_1429 HGNC:36890 15 15q21.1 ribosomal protein L7a pseudogene 62 pseudo RPL7AP62 ribosomal protein L7a pseudogene 62 O - 20121230 -9606 644030 LOC644030 - - - 11 11p15.4 keratin, type I cytoskeletal 18-like pseudo - - - - 20121230 -9606 644032 PHKG1P2 - - HGNC:33917 7 7q11.21 phosphorylase kinase, gamma 1 pseudogene 2 pseudo PHKG1P2 phosphorylase kinase, gamma 1 pseudogene 2 O - 20121230 -9606 644035 NONOP1 - - HGNC:42031 16 16q22.1 non-POU domain containing, octamer-binding pseudogene 1 pseudo NONOP1 non-POU domain containing, octamer-binding pseudogene 1 O - 20121230 -9606 644037 HNRNPA1P12 - - HGNC:39130 5 5q14.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene 12 pseudo HNRNPA1P12 heterogeneous nuclear ribonucleoprotein A1 pseudogene 12 O - 20121230 -9606 644041 C18orf63 - DKFZP781G0119 HGNC:40037|Ensembl:ENSG00000206043|Vega:OTTHUMG00000178987 18 18q22.3 chromosome 18 open reading frame 63 protein-coding C18orf63 chromosome 18 open reading frame 63 O uncharacterized protein C18orf63 20121230 -9606 644042 SLC25A5P6 - ANTP6 HGNC:512 4 4q35.2 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 6 pseudo SLC25A5P6 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 6 O - 20121230 -9606 644050 LOC644050 - - - 19 19q13.12 uncharacterized LOC644050 miscRNA - - - - 20120622 -9606 644051 LOC644051 - - - 6 6p24.3 isocitrate dehydrogenase pseudogene pseudo - - - - 20121230 -9606 644054 FAM25C RP11-164N7.2 FAM25A|FAM25B|FAM25G|bA164N7.4 HGNC:23586|Ensembl:ENSG00000188279|Vega:OTTHUMG00000018165 10 10q11.22 family with sequence similarity 25, member C protein-coding FAM25C family with sequence similarity 25, member C O protein FAM25|protein FAM25C 20121230 -9606 644058 LOC644058 hCG_2045048 - - 6 6p24.3 hCG2045048 protein-coding - - - - 20120720 -9606 644059 PYY3 RP13-377G1__A.2 - HGNC:31855|Vega:OTTHUMG00000021515 X Xp11.22 peptide YY, 3 (pseudogene) pseudo PYY3 peptide YY, 3 (pseudogene) O - 20121230 -9606 644060 LOC644060 - - - 1 1q21.1 IGF-II mRNA-binding protein 2-like pseudo - - - - 20121230 -9606 644063 HNRNPKP4 - - HGNC:42377 3 3q11.2 heterogeneous nuclear ribonucleoprotein K pseudogene 4 pseudo HNRNPKP4 heterogeneous nuclear ribonucleoprotein K pseudogene 4 O - 20121230 -9606 644068 RPS14P3 - RPS14_1_16 HGNC:35797 1 1p36.13 ribosomal protein S14 pseudogene 3 pseudo RPS14P3 ribosomal protein S14 pseudogene 3 O - 20121230 -9606 644070 LOC644070 - - - 17 17p13.1 germ cell-specific gene 1-like protein 2-like protein-coding - - - GSG1-like protein 2|Putative germ cell-specific gene 1-like protein 2 20121104 -9606 644076 GLYCAM1 - - HGNC:18023 12 12q13.2 glycosylation dependent cell adhesion molecule 1 (pseudogene) pseudo GLYCAM1 glycosylation dependent cell adhesion molecule 1 (pseudogene) O - 20121230 -9606 644079 BCRP1 - BCR-1 HGNC:39073 22 22q11.23 breakpoint cluster region pseudogene 1 pseudo BCRP1 breakpoint cluster region pseudogene 1 O - 20121230 -9606 644082 RPL18AP8 - RPL18A_3_387 HGNC:36984 3 3q11.2 ribosomal protein L18a pseudogene 8 pseudo RPL18AP8 ribosomal protein L18a pseudogene 8 O - 20121230 -9606 644083 LOC644083 - - - 1 1p36.13 uncharacterized LOC644083 unknown - - - - 20121230 -9606 644086 LOC644086 - - - 7 7p15.1 uncharacterized LOC644086 unknown - - - - 20121230 -9606 644090 LOC644090 - - - 7 7q36.1 uncharacterized LOC644090 unknown - - - - 20121230 -9606 644093 LOC644093 hCG_2040054 - - 2 2p16.3 hCG2040054 miscRNA - - - - 20121230 -9606 644094 PSMC1P12 - - HGNC:39787 1 1p12 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 12 pseudo PSMC1P12 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 12 O - 20121230 -9606 644096 SDHAF1 - LYRM8 HGNC:33867|MIM:612848|Ensembl:ENSG00000205138|Vega:OTTHUMG00000181745 19 19q13.12 succinate dehydrogenase complex assembly factor 1 protein-coding SDHAF1 succinate dehydrogenase complex assembly factor 1 O LYR motif containing 8|LYR motif-containing protein 8|SDH assembly factor 1|succinate dehydrogenase assembly factor 1, mitochondrial 20121230 -9606 644100 ARL14EPL - - HGNC:44201 5 5q23.1 ADP-ribosylation factor-like 14 effector protein-like protein-coding ARL14EPL ADP-ribosylation factor-like 14 effector protein-like O ARL14 effector protein-like 20121230 -9606 644101 CBX3P9 - - HGNC:42881 6 6q22.1 chromobox homolog 3 pseudogene 9 pseudo CBX3P9 chromobox homolog 3 pseudogene 9 O - 20121230 -9606 644103 RPL29P18 - RPL29_8_938 HGNC:36327 8 8q22.3 ribosomal protein L29 pseudogene 18 pseudo RPL29P18 ribosomal protein L29 pseudogene 18 O - 20121230 -9606 644109 RPSAP50 - RPSA_24_1172 HGNC:35896 11 11q22.3 ribosomal protein SA pseudogene 50 pseudo RPSAP50 ribosomal protein SA pseudogene 50 O - 20121230 -9606 644110 LOC644110 - - - 15 15q13.3 hyperpolarization activated cyclic nucleotide-gated potassium channel pseudogene pseudo - - - - 20121230 -9606 644119 RPS14P9 - RPS14_6_722 HGNC:36286 6 6q15 ribosomal protein S14 pseudogene 9 pseudo RPS14P9 ribosomal protein S14 pseudogene 9 O - 20121230 -9606 644128 RPL23AP53 - RPL23A_20_869 HGNC:35921 8 8p23.3 ribosomal protein L23a pseudogene 53 pseudo RPL23AP53 ribosomal protein L23a pseudogene 53 O - 20121230 -9606 644129 HMGB1P15 - - HGNC:39097 X Xp11.22 high mobility group box 1 pseudogene 15 pseudo HMGB1P15 high mobility group box 1 pseudogene 15 O - 20121230 -9606 644131 CCT8P1 - CCT8-1P HGNC:35144 1 1q21.1 chaperonin containing TCP1, subunit 8 (theta) pseudogene 1 pseudo CCT8P1 chaperonin containing TCP1, subunit 8 (theta) pseudogene 1 O - 20121230 -9606 644135 LOC644135 - - - 6 6q23.3 uncharacterized LOC644135 unknown - - - - 20121230 -9606 644138 GOT2P3 - GOT2L3|GOT2L3P HGNC:4436 12 12p13.31 glutamic-oxaloacetic transaminase 2 pseudogene 3 pseudo GOT2P3 glutamic-oxaloacetic transaminase 2 pseudogene 3 O - 20121230 -9606 644139 PIRT hCG_1776018 - HGNC:37239|MIM:612068|Ensembl:ENSG00000233670|Vega:OTTHUMG00000178234 17 17p12 phosphoinositide-interacting regulator of transient receptor potential channels protein-coding PIRT phosphoinositide-interacting regulator of transient receptor potential channels O phosphoinositide-interacting protein|phosphoinositide-interacting regulator of TRPV1 20121230 -9606 644145 LOC644145 hCG_2040572 - - 4 4q12 exocyst complex component 1 pseudogene pseudo - - - - 20121230 -9606 644146 RPS14P8 - RPS14_5_603 HGNC:37027 5 5q23.1 ribosomal protein S14 pseudogene 8 pseudo RPS14P8 ribosomal protein S14 pseudogene 8 O - 20121230 -9606 644150 WIPF3 - CR16 HGNC:22004|MIM:612432|Ensembl:ENSG00000122574|Vega:OTTHUMG00000152761 7 7p14.3 WAS/WASL interacting protein family, member 3 protein-coding WIPF3 WAS/WASL interacting protein family, member 3 O WAS/WASL-interacting protein family member 3|corticosteroids and regional expression protein 16 homolog 20121230 -9606 644153 DNM1P31 - DNM1DN4-2|DNM1DN4.2|DNM1DN4@ HGNC:35178 15 15q13.3 DNM1 pseudogene 31 pseudo DNM1P31 DNM1 pseudogene 31 O - 20121209 -9606 644154 RPL10AP8 - RPL10A_3_573 HGNC:36709 5 5q13.2 ribosomal protein L10a pseudogene 8 pseudo RPL10AP8 ribosomal protein L10a pseudogene 8 O - 20121230 -9606 644157 DND1P1 - - HGNC:31444 17 17q21.31 dead end homolog 1 pseudogene 1 pseudo DND1P1 dead end homolog 1 pseudogene 1 O - 20121230 -9606 644158 LOC644158 - - - 2 2q31.1 leucine rich repeat containing 2 pseudogene pseudo - - - - 20121230 -9606 644159 SLC25A1P3 - - HGNC:43846 7 7q11.21 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 pseudogene 3 pseudo SLC25A1P3 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 pseudogene 3 O - 20121230 -9606 644160 LOC644160 - - - 9 9q31.1 actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 644165 BCRP3 - BCR3|BCRL3|BCRL6 HGNC:1016|MIM:113640 22 22q11.23 breakpoint cluster region pseudogene 3 pseudo BCRP3 breakpoint cluster region pseudogene 3 O - 20121230 -9606 644166 RPS26P20 - RPS26_7_290 HGNC:36485 2 2q31.1 ribosomal protein S26 pseudogene 20 pseudo RPS26P20 ribosomal protein S26 pseudogene 20 O - 20121230 -9606 644168 DRGX - DRG11|PRRXL1 HGNC:21536|MIM:606701|Ensembl:ENSG00000165606|Vega:OTTHUMG00000018192 10 10q11.23 dorsal root ganglia homeobox protein-coding DRGX dorsal root ganglia homeobox O dorsal root ganglia homeobox protein|paired related homeobox-like 1|paired-like homeodomain trancription factor DRG11|paired-related homeobox protein-like 1 20121230 -9606 644169 LOC644169 - - - 11 11p15.4 voltage-dependent anion channel 1 pseudogene pseudo - - - - 20121230 -9606 644172 LOC644172 - - - 17 17q21.31 mitogen-activated protein kinase 8 interacting protein 1 pseudogene pseudo - - - - 20121230 -9606 644173 LOC644173 - - - 4 4q12 uncharacterized LOC644173 unknown - - - - 20121017 -9606 644186 SYCE3 - C22orf41|THEG2 HGNC:35245|Ensembl:ENSG00000217442|Vega:OTTHUMG00000150273 22 22q13.33 synaptonemal complex central element protein 3 protein-coding SYCE3 synaptonemal complex central element protein 3 O testis highly expressed gene 2 protein|testis highly expressed protein 2 20121230 -9606 644189 LOC644189 - - - 19 19q13.12 acyl-CoA thioesterase 4 pseudogene pseudo - - - - 20121230 -9606 644191 RPS26P8 - RPS26_20_1551 HGNC:31329 17 17q21.31 ribosomal protein S26 pseudogene 8 pseudo RPS26P8 ribosomal protein S26 pseudogene 8 O - 20121230 -9606 644192 NR2F2-AS1 - - HGNC:44222 15 15q26.2 NR2F2 antisense RNA 1 miscRNA NR2F2-AS1 NR2F2 antisense RNA 1 O - 20121230 -9606 644198 RPLP2P2 - RPLP2_1_633 HGNC:36590 5 5q33.3 ribosomal protein, large, P2 pseudogene 2 pseudo RPLP2P2 ribosomal protein, large, P2 pseudogene 2 O - 20121230 -9606 644202 RPL12P27 - RPL12_9_1087 HGNC:36916 10 10q24.1 ribosomal protein L12 pseudogene 27 pseudo RPL12P27 ribosomal protein L12 pseudogene 27 O - 20121230 -9606 644203 LOC644203 - - - 12 12q23.3 glutaryl-CoA dehydrogenase, mitochondrial-like pseudo - - - - 20121230 -9606 644213 GAPDHP32 - - HGNC:37784 1 1p12 glyceraldehyde 3 phosphate dehydrogenase pseudogene 32 pseudo GAPDHP32 glyceraldehyde 3 phosphate dehydrogenase pseudogene 32 O - 20121230 -9606 644214 PHBP11 - - HGNC:39290 1 1q41 prohibitin pseudogene 11 pseudo PHBP11 prohibitin pseudogene 11 O - 20121230 -9606 644215 LOC644215 - - - 10 10q24.1 uncharacterized LOC644215 protein-coding - - - - 20120710 -9606 644218 TRPC6P - TRPC6L HGNC:23270 X|Y Xq28;Yq12 transient receptor potential cation channel, subfamily C, member 6 pseudogene pseudo TRPC6P transient receptor potential cation channel, subfamily C, member 6 pseudogene O - 20121230 -9606 644220 ACTBP11 - - HGNC:33971 1 1q41 actin, beta pseudogene 11 pseudo ACTBP11 actin, beta pseudogene 11 O - 20121230 -9606 644223 RPL9P4 - RPL9_9_1348 HGNC:23556 14 14q12 ribosomal protein L9 pseudogene 4 pseudo RPL9P4 ribosomal protein L9 pseudogene 4 O - 20121230 -9606 644233 AURKBPS1 - AurBps1 HGNC:18613 8 8q23.1 aurora kinase B pseudogene 1 pseudo AURKBPS1 aurora kinase B pseudogene 1 O - 20121230 -9606 644236 RPL7AP43 - RPL7A_17_815 HGNC:35775 7 7q11.23 ribosomal protein L7a pseudogene 43 pseudo RPL7AP43 ribosomal protein L7a pseudogene 43 O - 20121230 -9606 644237 GAPDHP33 - - HGNC:37785 1 1p12 glyceraldehyde 3 phosphate dehydrogenase pseudogene 33 pseudo GAPDHP33 glyceraldehyde 3 phosphate dehydrogenase pseudogene 33 O - 20121230 -9606 644242 LINC00622 - - HGNC:44251 1 1p12 long intergenic non-protein coding RNA 622 miscRNA LINC00622 long intergenic non-protein coding RNA 622 O - 20121230 -9606 644246 KANSL1-AS1 - - HGNC:43740 17 17q21.31 KANSL1 antisense RNA 1 miscRNA KANSL1-AS1 KANSL1 antisense RNA 1 O - 20121230 -9606 644248 LOC644248 - - - 4 4q22.1 uncharacterized LOC644248 miscRNA - - - - 20121230 -9606 644249 LOC644249 RP11-195B21.3 - Ensembl:ENSG00000155282|Vega:OTTHUMG00000067320 9 9q12 uncharacterized LOC644249 protein-coding - - - - 20121230 -9606 644253 MAPK8IPP - PRKM8IPP HGNC:6885 17 17q21.31 mitogen-activated protein kinase 8 interacting protein, pseudogene pseudo MAPK8IPP mitogen-activated protein kinase 8 interacting protein, pseudogene O - 20121230 -9606 644256 DND1P2 - - HGNC:31445 17 17q21.31 dead end homolog 1 pseudogene 2 pseudo DND1P2 dead end homolog 1 pseudogene 2 O - 20121230 -9606 644257 LOC644257 - - - 17 - uncharacterized LOC644257 protein-coding - - - - 20120318 -9606 644261 LOC644261 - - - X Xq22.2 solute carrier family 25, member 53 pseudogene pseudo - - - - 20121230 -9606 644265 LOC644265 - - - 2 2q12.1 capping protein (actin filament) muscle Z-line, beta pseudogene pseudo - - - - 20121230 -9606 644269 LOC644269 - - - 6 6q15 G protein pathway suppressor 1 pseudogene pseudo - - - - 20121230 -9606 644277 LOC644277 - - - 11 11q23.1 uncharacterized LOC644277 unknown - - - - 20121230 -9606 644283 FLJ43489 - - - 7 7q11.21 uncharacterized LOC644283 unknown - - - - 20120622 -9606 644285 LOC644285 - - - 5 5q14.3 uncharacterized LOC644285 other - - - - 20120815 -9606 644295 LOC644295 - - - 14 14q12 KIAA1143 pseudogene pseudo - - - - 20121230 -9606 644297 FAM215B - ARL17A-IT1 HGNC:43639 17 17q21.32 family with sequence similarity 215, member B (non-protein coding) unknown FAM215B family with sequence similarity 215, member B (non-protein coding) O - 20121102 -9606 644303 LOC644303 - - - 6 6q22.31 ATP-dependent RNA helicase DDX24-like pseudo - - - - 20121230 -9606 644309 RPS20P19 - RPS20_7_863 HGNC:36503 7 7q36.1 ribosomal protein S20 pseudogene 19 pseudo RPS20P19 ribosomal protein S20 pseudogene 19 O - 20121230 -9606 644310 LOC644310 - - - X Xp11.22 ubiquinol-cytochrome c reductase, complex III subunit X pseudogene pseudo - - - - 20121230 -9606 644314 MT1IP - MT1|MT1I|MTE HGNC:7401|MIM:156355 16 16q13 metallothionein 1I, pseudogene pseudo MT1IP metallothionein 1I, pseudogene O - 20121230 -9606 644315 RPS7P11 - RPS7_6_1552 HGNC:35841 17 17q21.31 ribosomal protein S7 pseudogene 11 pseudo RPS7P11 ribosomal protein S7 pseudogene 11 O - 20121230 -9606 644316 FLJ43315 - - - 22 - asparagine synthetase pseudogene pseudo - - - - 20121230 -9606 644325 ADAM20P3 - - HGNC:43902 4 4q35.2 ADAM metallopeptidase domain 20 pseudogene 3 pseudo ADAM20P3 ADAM metallopeptidase domain 20 pseudogene 3 O - 20121230 -9606 644330 TPM3P5 - - HGNC:39168 19 19q13.2 tropomyosin 3 pseudogene 5 pseudo TPM3P5 tropomyosin 3 pseudogene 5 O - 20121230 -9606 644333 ATP5F1P3 - - HGNC:39744 7 7q36.1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 3 pseudo ATP5F1P3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 3 O - 20121230 -9606 644335 LOC644335 - - - 8 8q23.2 smg-5 homolog, nonsense mediated mRNA decay factor (C. elegans) pseudogene pseudo - - - - 20121230 -9606 644338 RPL37AP8 hCG_1791193 RPL37A_3_1174 HGNC:35645 11 11q23.1 ribosomal protein L37a pseudogene 8 pseudo RPL37AP8 ribosomal protein L37a pseudogene 8 O - 20121230 -9606 644339 LOC644339 - - - 22 - ankyrin repeat domain-containing protein 20B-like pseudo - - - - 20121209 -9606 644353 ZCCHC18 - PNMA7B|SIZN2 HGNC:32459 X Xq22.2 zinc finger, CCHC domain containing 18 protein-coding ZCCHC18 zinc finger, CCHC domain containing 18 O paraneoplastic Ma antigen family member 7B|putative zinc finger CCHC domain-containing protein 18|zinc finger, CCHC domain containing 12 pseudogene 1|zinc finger, CCHC domain containing 18 pseudogene 20121230 -9606 644354 LOC644354 - - - 17 17q21.31 putative protein FAM215A-like pseudo - - - - 20121209 -9606 644357 LOC644357 - - - 1 1p36.32 eukaryotic translation elongation factor 1 delta (guanine nucleotide exchange protein) pseudogene pseudo - - - - 20121230 -9606 644378 GCNT6 - bA421M1.3 HGNC:21623 6 6p24.2 glucosaminyl (N-acetyl) transferase 6 protein-coding GCNT6 glucosaminyl (N-acetyl) transferase 6 O beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase 6 20121216 -9606 644383 LOC644383 - - - 12 12q13.2 heat shock transcription factor 2 pseudogene pseudo - - - - 20121230 -9606 644384 RPL23AP71 - RPL23A_33_1349 HGNC:36908 14 14q13.1 ribosomal protein L23a pseudogene 71 pseudo RPL23AP71 ribosomal protein L23a pseudogene 71 O - 20121230 -9606 644387 LOC644387 - - - 7 7q11.21 myelin protein zero-like 1 pseudogene pseudo - - - - 20121230 -9606 644388 RPS2P47 - RPS2_25_1553 HGNC:35785 17 17q21.32 ribosomal protein S2 pseudogene 47 pseudo RPS2P47 ribosomal protein S2 pseudogene 47 O - 20121230 -9606 644390 LOC644390 - - - 15 15q14 heterogeneous nuclear ribonucleoprotein L-like pseudo - - - - 20121230 -9606 644397 LOC644397 - - - 17 17q21.32 leucine rich repeat containing 37A pseudogene pseudo - - - - 20121230 -9606 644403 LARP1BP3 - - HGNC:44085 X Xq26.2 La ribonucleoprotein domain family, member 1B pseudogene 3 pseudo LARP1BP3 La ribonucleoprotein domain family, member 1B pseudogene 3 O - 20121230 -9606 644414 DEFB131 - DEFB-31 HGNC:18108|Ensembl:ENSG00000186146|Vega:OTTHUMG00000160187 4 4p16.1 defensin, beta 131 protein-coding DEFB131 defensin, beta 131 O beta-defensin 131|beta-defensin 31|defensin, beta 31 20121230 -9606 644422 LOC644422 - - - 17 17p11.2 splicing factor, arginine/serine-rich 6 pseudogene pseudo - - - - 20121230 -9606 644425 LOC644425 - - - 10 10q26.3 retinoic acid receptor responder (tazarotene induced) 2 pseudogene pseudo - - - - 20121230 -9606 644429 HMGB3P15 - - HGNC:39307 4 4q22.3 high mobility group box 3 pseudogene 15 pseudo HMGB3P15 high mobility group box 3 pseudogene 15 O - 20121230 -9606 644435 AGGF1P2 XX-2136C111.3 - HGNC:38052 10 10q26.3 angiogenic factor with G patch and FHA domains 1 pseudogene 2 pseudo AGGF1P2 angiogenic factor with G patch and FHA domains 1 pseudogene 2 O - 20121230 -9606 644436 LOC644436 - - - 11 11q12.3 tubulin, alpha 4a pseudogene pseudo - - - - 20121230 -9606 644442 HMGB3P11 - - HGNC:39303 2 2q12.1 high mobility group box 3 pseudogene 11 pseudo HMGB3P11 high mobility group box 3 pseudogene 11 O - 20121230 -9606 644444 TMEM30C - CDC50C HGNC:30443|MIM:611030 3 3q12.1 transmembrane protein 30C pseudo TMEM30C transmembrane protein 30C O - 20121230 -9606 644449 LOC644449 - - - 1 1p34.2 heterogeneous nuclear ribonucleoprotein H1 (H) pseudogene pseudo - - - - 20121230 -9606 644450 LOC644450 - - - 1 1q12 uncharacterized LOC644450 unknown - - - - 20120710 -9606 644451 LOC644451 - - - 10 10q11.23 SHQ1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 644456 LOC644456 - - - 2 2p16.1 IK cytokine, down-regulator of HLA II pseudogene pseudo - - - - 20121230 -9606 644459 LOC644459 - - - 10 10q11.23 BEN domain containing 3 pseudogene pseudo - - - - 20121230 -9606 644462 LOC644462 - - - 1 1p33 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 2 pseudogene pseudo - - - - 20121230 -9606 644464 RPSAP61 - RPSA_31_1776 HGNC:36760 X Xp11.3 ribosomal protein SA pseudogene 61 pseudo RPSAP61 ribosomal protein SA pseudogene 61 O - 20121230 -9606 644482 LOC644482 - - - 1 1q42.12 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 3, 9kDa pseudogene pseudo - - - - 20121230 -9606 644491 LOC644491 - - - 4 4q35.2 NMDA receptor regulated 2 pseudogene pseudo - - - - 20121230 -9606 644495 HSP90AB7P - - HGNC:44701 10 10p14 heat shock protein 90kDa alpha (cytosolic), class B member 7, pseudogene pseudo HSP90AB7P heat shock protein 90kDa alpha (cytosolic), class B member 7, pseudogene O - 20121230 -9606 644496 CTSL1P4 - CTSLL4|bA564C4.3 HGNC:23645|Vega:OTTHUMG00000018237 10 10q11.23 cathepsin L1 pseudogene 4 pseudo CTSL1P4 cathepsin L1 pseudogene 4 O - 20121230 -9606 644498 HMGN2P7 - HMGN2L7 HGNC:33575 3 3p25.1 high mobility group nucleosomal binding domain 2 pseudogene 7 pseudo HMGN2P7 high mobility group nucleosomal binding domain 2 pseudogene 7 O - 20121230 -9606 644499 RPL39P21 - RPL39_9_576 HGNC:36218 5 5q13.3 ribosomal protein L39 pseudogene 21 pseudo RPL39P21 ribosomal protein L39 pseudogene 21 O - 20121230 -9606 644502 HMGB3P18 - - HGNC:39310 6 6q22.31 high mobility group box 3 pseudogene 18 pseudo HMGB3P18 high mobility group box 3 pseudogene 18 O - 20121230 -9606 644504 LOC644504 RP1-19N1.1 - - X Xq22.3 novel protein similar to chondroitin sulfate GalNAcT-2 (GALNACT-2) protein-coding - - - - 20121222 -9606 644509 RBM22P6 - - HGNC:39699 X Xp11.22 RNA binding motif protein 22 pseudogene 6 pseudo RBM22P6 RNA binding motif protein 22 pseudogene 6 O - 20121230 -9606 644511 RPL13AP6 - RPL13A_7_1096|bA348N5.5 HGNC:23737 10 10q25.2 ribosomal protein L13a pseudogene 6 pseudo RPL13AP6 ribosomal protein L13a pseudogene 6 O - 20121230 -9606 644517 FAM86MP - - HGNC:44100 4 4p16.1 family with sequence similarity 86, member A pseudogene pseudo FAM86MP family with sequence similarity 86, member M, pseudogene O - 20121230 -9606 644518 LOC644518 - - - X Xp11.22 G antigen family D member 5-like pseudo - - - - 20121209 -9606 644522 RPL31P44 - RPL31_14_1046 HGNC:35523 10 10q21.1 ribosomal protein L31 pseudogene 44 pseudo RPL31P44 ribosomal protein L31 pseudogene 44 O - 20121230 -9606 644524 NKX2-4 RP11-227D2.4 NKX2.4|NKX2D HGNC:7837|MIM:607808|Ensembl:ENSG00000125816|Vega:OTTHUMG00000032022 20 20p11.22 NK2 homeobox 4 protein-coding NKX2-4 NK2 homeobox 4 O NK-2 homolog D|NK2 transcription factor homolog D|NK2 transcription factor related, locus 4|homeobox protein NK-2 homolog D|homeobox protein Nkx-2.4 20121230 -9606 644525 LOC644525 - - - 22 22q11.1 chromosome 2 open reading frame 27A pseudogene pseudo - - - - 20121230 -9606 644534 HMGN1P11 - - HGNC:39355 4 4q13.1 high mobility group nucleosome binding domain 1 pseudogene 11 pseudo HMGN1P11 high mobility group nucleosome binding domain 1 pseudogene 11 O - 20121230 -9606 644538 SMIM10 - CXorf69 HGNC:41913|Ensembl:ENSG00000184785 X Xq26.3 small integral membrane protein 10 protein-coding SMIM10 small integral membrane protein 10 O putative uncharacterized protein CXorf69 20121230 -9606 644540 TCEB1P3 RP1-254P11.1 dJ254P11.1 HGNC:29457 10 10p14 transcription elongation factor B (SIII), polypeptide 1 pseudogene 3 pseudo TCEB1P3 transcription elongation factor B (SIII), polypeptide 1 pseudogene 3 O - 20121230 -9606 644548 EXOC5P1 - - HGNC:43870 4 4q13.1 exocyst complex component 5 pseudogene 1 pseudo EXOC5P1 exocyst complex component 5 pseudogene 1 O - 20121230 -9606 644554 LOC644554 - - - 19 19q13.13 uncharacterized LOC644554 miscRNA - - - - 20121230 -9606 644563 LOC644563 - - - X Xq22.3 general transcription factor IIIC, polypeptide 6, alpha 35kDa pseudogene pseudo - - - - 20121230 -9606 644566 LOC644566 - - - 10 10q24.2 tropomyosin 2 (beta) pseudogene pseudo - - - - 20121230 -9606 644573 LOC644573 - - - 10 10q24.31 signal peptidase complex subunit 2 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 644576 SNX18P9 RP11-250H24.1 - HGNC:39617 9 9q21.11 sorting nexin 18 pseudogene 9 pseudo SNX18P9 sorting nexin 18 pseudogene 9 O - 20121209 -9606 644578 LARP1BP1 - - HGNC:37097 4 4q13.1 La ribonucleoprotein domain family, member 1B pseudogene 1 pseudo LARP1BP1 La ribonucleoprotein domain family, member 1B pseudogene 1 O - 20121230 -9606 644584 LOC644584 - - - 14 14q13.2 Ewing sarcoma breakpoint region 1 pseudogene pseudo - - - - 20121230 -9606 644588 DNAJA1P3 - - HGNC:39339 X Xq22.3 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 3 pseudo DNAJA1P3 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 3 O - 20121230 -9606 644589 LOC644589 - - - 14 14q21.2 DnaJ (Hsp40) homolog, subfamily C, member 19 pseudogene pseudo - - - - 20121230 -9606 644591 PPIAL4G RP6-206I17.5 BX284650.5 HGNC:33996|Ensembl:ENSG00000236334|Vega:OTTHUMG00000013629 1 1q21.1 peptidylprolyl isomerase A (cyclophilin A)-like 4G protein-coding PPIAL4G peptidylprolyl isomerase A (cyclophilin A)-like 4G O COAS-2|PPIase A-like 4A|PPIase A-like 4G|chromosome 1-amplified sequence 2|peptidyl-prolyl cis-trans isomerase A-like 4G|peptidylprolyl cis-trans isomerase A-like 4|peptidylprolyl cis-trans isomerase A-like 4A|peptidylprolyl cis-trans isomerase A-like 4G 20121230 -9606 644596 LINC00087 - NCRNA00087 HGNC:34500 X Xq26.3 long intergenic non-protein coding RNA 87 miscRNA LINC00087 long intergenic non-protein coding RNA 87 O - 20121230 -9606 644600 GEMIN8P2 - - HGNC:37977 16 16q21 gem (nuclear organelle) associated protein 8 pseudogene 2 pseudo GEMIN8P2 gem (nuclear organelle) associated protein 8 pseudogene 2 O - 20121230 -9606 644601 BIN2P2 - - HGNC:43661 5 5q13.3 bridging integrator 2 pseudogene 2 pseudo BIN2P2 bridging integrator 2 pseudogene 2 O - 20121230 -9606 644604 EEF1A1P12 - EEF1AL10 HGNC:3195 2 2q12.2 eukaryotic translation elongation factor 1 alpha 1 pseudogene 12 pseudo EEF1A1P12 eukaryotic translation elongation factor 1 alpha 1 pseudogene 12 O - 20121230 -9606 644616 ILF2P2 - - HGNC:44696 14 14q13.2 interleukin enhancer binding factor 2 pseudogene 2 pseudo ILF2P2 interleukin enhancer binding factor 2 pseudogene 2 O - 20121230 -9606 644617 LOC644617 - - - 2 2q12.1 uncharacterized LOC644617 unknown - - - - 20121230 -9606 644619 INTS4L2 - - HGNC:22351 7 7q11.21 integrator complex subunit 4-like 2 pseudo INTS4L2 integrator complex subunit 4-like 2 O - 20121230 -9606 644623 TPTE2P2 RP11-64P12.3 - HGNC:38076 13 13q14.3 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 2 pseudo TPTE2P2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 2 O - 20121230 -9606 644625 FUNDC2P3 - - HGNC:37970 6 6q24.3 FUN14 domain containing 2 pseudogene 3 pseudo FUNDC2P3 FUN14 domain containing 2 pseudogene 3 O - 20121230 -9606 644627 RPL21P107 - RPL21_46_1336 HGNC:36313 13 13q34 ribosomal protein L21 pseudogene 107 pseudo RPL21P107 ribosomal protein L21 pseudogene 107 O - 20121230 -9606 644632 LOC644632 - - - 9 9q21.11 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121230 -9606 644634 LOC644634 - - Ensembl:ENSG00000203815 1 1q21.2 UPF0627 protein ENSP00000358171-like protein-coding - - - - 20121209 -9606 644637 NF1P6 - NF1L4|NF1L6 HGNC:7771 22 22q11.1 neurofibromin 1 pseudogene 6 pseudo NF1P6 neurofibromin 1 pseudogene 6 O - 20121230 -9606 644649 LOC644649 - - - 16 16q21 apolipoprotein O pseudogene pseudo - - - - 20121230 -9606 644651 HMGB1P25 - - HGNC:39116 2 2p25.1 high mobility group box 1 pseudogene 25 pseudo HMGB1P25 high mobility group box 1 pseudogene 25 O - 20121230 -9606 644656 LOC644656 - - - 11 11p15.4 uncharacterized LOC644656 miscRNA - - - - 20121230 -9606 644659 HMGB1P22 - - HGNC:39107 5 5q23.2 high mobility group box 1 pseudogene 22 pseudo HMGB1P22 high mobility group box 1 pseudogene 22 O - 20121230 -9606 644660 RAD21-AS1 - C8orf81|NCRNA00255 HGNC:32158 8 8q24.11 RAD21 antisense RNA 1 miscRNA RAD21-AS1 RAD21 antisense RNA 1 O - 20121230 -9606 644661 LOC644661 - - - 9 9q31.2 importin subunit alpha-2-like pseudo - - - - 20121209 -9606 644662 LOC644662 - - - 3 3q21.3 uncharacterized LOC644662 miscRNA - - - - 20121209 -9606 644667 LOC644667 hCG_1793610 - - 7 7q11.21 golgin A7 pseudogene pseudo - - - - 20121230 -9606 644669 LOC644669 - - - 18 18p11.21 ankyrin repeat domain 30B pseudogene pseudo - - - - 20121230 -9606 644672 CLDN25 hCG_1646420 - HGNC:37218|Ensembl:ENSG00000228607|Vega:OTTHUMG00000168193 11 11q23.2 claudin 25 protein-coding CLDN25 claudin 25 O putative claudin-25 20121230 -9606 644681 LOC644681 - - - 3 3q13.11 synovial sarcoma, X breakpoint 2 interacting protein pseudogene pseudo - - - - 20121230 -9606 644684 LOC644684 - - - 9 9q21.11 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121209 -9606 644686 LOC644686 - - - 2 2p15 uncharacterized LOC644686 unknown - - - - 20120710 -9606 644694 CDRT15P2 - CDRT15L1 HGNC:34074 17 17p12 CMT1A duplicated region transcript 15 pseudogene 2 pseudo CDRT15P2 CMT1A duplicated region transcript 15 pseudogene 2 O - 20121230 -9606 644714 LIMD1-AS1 - - HGNC:44107 3 3p21.31 LIMD1 antisense RNA 1 miscRNA LIMD1-AS1 LIMD1 antisense RNA 1 O - 20121230 -9606 644716 LOC644716 RP11-460E7.5 - - 9 9q21.11 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121209 -9606 644717 LOC644717 - - - X Xq26.3 putative SAGE1-like protein protein-coding - - - - 20121102 -9606 644721 LOC644721 - - - 4 4q23 ribosomal protein L7-like 1 pseudogene pseudo - - - - 20121230 -9606 644727 LOC644727 - - - 8 8q11.23 uncharacterized LOC644727 unknown - - - - 20120511 -9606 644731 IGKV1OR-3 - IGKV1/OR-3|IGKV1OR3|IGKVPZ3 HGNC:5762|IMGT/GENE-DB:IGKV1/OR-3 9 9q12 immunoglobulin kappa variable 1/OR-3 (pseudogene) pseudo IGKV1OR-3 immunoglobulin kappa variable 1/OR-3 (pseudogene) O - 20121102 -9606 644739 WASF4P RP3-393P12.2 WASF4 HGNC:20801 X Xp11.23 WAS protein family, member 4, pseudogene pseudo WASF4P WAS protein family, member 4, pseudogene O - 20121230 -9606 644743 KRT8P47 - - HGNC:44461 1 1p34.1 keratin 8 pseudogene 47 pseudo KRT8P47 keratin 8 pseudogene 47 O - 20121230 -9606 644745 HSPD1P4 - HSPD1-5P HGNC:35146 12 12q13.3 heat shock 60kDa protein 1 (chaperonin) pseudogene 4 pseudo HSPD1P4 heat shock 60kDa protein 1 (chaperonin) pseudogene 4 O - 20121230 -9606 644746 LOC644746 - - - 12 12q23.3 ret finger protein-like 3 pseudogene pseudo - - - - 20121230 -9606 644754 LOC644754 - - - 5 5q23.2 bolA homolog 3 (E. coli) pseudogene pseudo - - - - 20121230 -9606 644758 PABPC1P13 - - HGNC:37995 16 16p11.2 poly(A) binding protein, cytoplasmic 1 pseudogene 13 pseudo PABPC1P13 poly(A) binding protein, cytoplasmic 1 pseudogene 13 O - 20121230 -9606 644759 TMPRSS11GP - - HGNC:42983 4 4q13.2 transmembrane protease, serine 11G, pseudogene pseudo TMPRSS11GP transmembrane protease, serine 11G, pseudogene O - 20121230 -9606 644761 LOC644761 - - - 15 15q22.2 phosphatidylinositol glycan anchor biosynthesis, class H pseudogene pseudo - - - - 20121230 -9606 644762 LOC644762 - - - 5 5q33.1 uncharacterized LOC644762 pseudo - - - - 20121230 -9606 644766 LOC644766 - - - 15 15q14 uncharacterized LOC644766 unknown - - - - 20120622 -9606 644767 FLJ44838 - - - 17 - uncharacterized LOC644767 unknown - - - - 20121230 -9606 644768 SLC9B1P4 - - HGNC:43583 22 22q11.1 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 4 pseudo SLC9B1P4 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 4 O - 20121230 -9606 644773 ACTR3BP6 - - HGNC:38683 22 22q11.1 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 6 pseudo ACTR3BP6 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 6 O - 20121230 -9606 644776 LOC644776 - - - 2 2q31.2 RAD52 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 644777 MEP1AP2 - MEP1AL2 HGNC:7017 9 9q21.11 meprin A, alpha pseudogene 2 pseudo MEP1AP2 meprin A, alpha pseudogene 2 O - 20121209 -9606 644790 RPS15AP11 - RPS15A_3_41 HGNC:36707 1 1p34.1 ribosomal protein S15a pseudogene 11 pseudo RPS15AP11 ribosomal protein S15a pseudogene 11 O - 20121230 -9606 644794 LOC644794 - - - 7 7q11.21 uncharacterized LOC644794 unknown - - - - 20121230 -9606 644809 C15orf56 - - HGNC:33868|Ensembl:ENSG00000176753|Vega:OTTHUMG00000172399 15 15q15.1 chromosome 15 open reading frame 56 protein-coding C15orf56 chromosome 15 open reading frame 56 O putative uncharacterized protein C15orf56 20121230 -9606 644815 FAM83G - - HGNC:32554|Ensembl:ENSG00000188522|Vega:OTTHUMG00000059411 17 17p11.2 family with sequence similarity 83, member G protein-coding FAM83G family with sequence similarity 83, member G O protein FAM83G 20121230 -9606 644820 EEF1B2P3 hCG_1983058 EEF1B4 HGNC:3210 X Xp22.11 eukaryotic translation elongation factor 1 beta 2 pseudogene 3 pseudo EEF1B2P3 eukaryotic translation elongation factor 1 beta 2 pseudogene 3 O - 20121230 -9606 644834 RPL36AP36 - RPL36A_13_1022 HGNC:36326 10 10p13 ribosomal protein L36a pseudogene 36 pseudo RPL36AP36 ribosomal protein L36a pseudogene 36 O - 20121230 -9606 644838 LOC644838 - - - 2 2p14 uncharacterized LOC644838 miscRNA - - - - 20121230 -9606 644841 LOC644841 - - - 7 7q36.3 uncharacterized LOC644841 unknown - - - - 20120511 -9606 644844 PHGR1 - - HGNC:37226|Ensembl:ENSG00000233041|Vega:OTTHUMG00000172416 15 15q15.1 proline/histidine/glycine-rich 1 protein-coding PHGR1 proline/histidine/glycine-rich 1 O proline, histidine and glycine-rich protein 1 20121230 -9606 644850 PDCL3P5 RP1-44A20.4 - HGNC:44506 6 6q25.1 phosducin-like 3 pseudogene 5 pseudo PDCL3P5 phosducin-like 3 pseudogene 5 O - 20121230 -9606 644852 LOC644852 - - - 1 1q44 uncharacterized LOC644852 unknown - - - - 20120511 -9606 644861 NBPF13P - - HGNC:31995 1 1q21.1 neuroblastoma breakpoint family, member 13, pseudogene pseudo NBPF13P neuroblastoma breakpoint family, member 13, pseudogene O - 20121230 -9606 644862 RPS28P3 RP11-520H14.1 RPS28_2_172 HGNC:36589 1 1q42.13 ribosomal protein S28 pseudogene 3 pseudo RPS28P3 ribosomal protein S28 pseudogene 3 O - 20121230 -9606 644871 LOC644871 - - - 10 10q21.1 TNF receptor-associated factor 6, E3 ubiquitin protein ligase pseudogene pseudo - - - - 20121230 -9606 644873 FLJ33630 - - - 5 5q23.3 uncharacterized LOC644873 miscRNA - - - - 20121230 -9606 644877 LOC644877 - - - 2 2q32.1 calcyclin binding protein pseudogene pseudo - - - - 20121230 -9606 644881 LOC644881 - - - 4 4q35.2 retinoic acid receptor responder (tazarotene induced) 2 pseudogene pseudo - - - - 20121230 -9606 644890 MEIG1 - bA2K17.3 HGNC:23429|MIM:614174|Ensembl:ENSG00000197889 10 10p13 meiosis expressed gene 1 homolog (mouse) protein-coding MEIG1 meiosis expressed gene 1 homolog (mouse) O meiosis expressed gene 1 protein homolog 20121230 -9606 644893 LOC644893 - - - X Xp11.21 melanoma antigen family E, 1 pseudogene pseudo - - - - 20121209 -9606 644896 RPL7P7 - RPL7_1_7 HGNC:36895 1 1p36.23 ribosomal protein L7 pseudogene 7 pseudo RPL7P7 ribosomal protein L7 pseudogene 7 O - 20121230 -9606 644899 TERF2IPP1 - - HGNC:19258 22 22q11.2 telomeric repeat binding factor 2, interacting protein pseudogene 1 pseudo TERF2IPP1 telomeric repeat binding factor 2, interacting protein pseudogene 1 O - 20121230 -9606 644903 FLJ38668 hCG_1993592 - - 2 2q12.3 uncharacterized LOC644903 unknown - - - - 20120622 -9606 644906 LOC644906 - - - 6 6p22.3 malate dehydrogenase 1, NAD (soluble) pseudogene pseudo - - - - 20121230 -9606 644907 RPL32P18 hCG_18290 RPL32_8_807 HGNC:36301 7 7p13 ribosomal protein L32 pseudogene 18 pseudo RPL32P18 ribosomal protein L32 pseudogene 18 O - 20121230 -9606 644909 LOC644909 - - - 17 17p11.2 ligand of numb-protein X 1, E3 ubiquitin protein ligase pseudogene pseudo - - - - 20121230 -9606 644911 RPL10P5 - RPL10_1_257 HGNC:35724 2 2q12.3 ribosomal protein L10 pseudogene 5 pseudo RPL10P5 ribosomal protein L10 pseudogene 5 O - 20121230 -9606 644914 H3F3AP6 - p21 HGNC:42982 4 4q31.1 H3 histone, family 3A, pseudogene 6 pseudo H3F3AP6 H3 histone, family 3A, pseudogene 6 O - 20121230 -9606 644915 METTL15P2 - - HGNC:39559 12 12q14.1 methyltransferase like 15 pseudogene 2 pseudo METTL15P2 methyltransferase like 15 pseudogene 2 O - 20121230 -9606 644919 LOC644919 - - - 14 14q21.1 uncharacterized LOC644919 miscRNA - - - - 20121017 -9606 644924 LOC644924 - - - X Xp11.21 glutamic-oxaloacetic transaminase 2, mitochondrial (aspartate aminotransferase 2) pseudogene pseudo - - - - 20121230 -9606 644925 LOC644925 - - - 14 14q22.2 uncharacterized LOC644925 unknown - - - - 20121017 -9606 644928 RPS26P15 hCG_2033311 RPS26_1_56 HGNC:35680 1 1p32.2 ribosomal protein S26 pseudogene 15 pseudo RPS26P15 ribosomal protein S26 pseudogene 15 O - 20121230 -9606 644934 RPS26P50 - RPS26_18_1443 HGNC:35615 15 15q22.31 ribosomal protein S26 pseudogene 50 pseudo RPS26P50 ribosomal protein S26 pseudogene 50 O - 20121230 -9606 644935 ELF2P4 - - HGNC:33540 2 2q32.1 E74-like factor 2 pseudogene 4 pseudo ELF2P4 E74-like factor 2 pseudogene 4 O - 20121230 -9606 644936 LOC644936 - - - 5 5q14.1 actin, beta pseudogene pseudo - - - - 20121230 -9606 644937 RPL10P8 - - - 5 5q35.1 ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 644943 RASSF10 - - HGNC:33984|MIM:614713 11 11p15.2 Ras association (RalGDS/AF-6) domain family (N-terminal) member 10 protein-coding RASSF10 Ras association (RalGDS/AF-6) domain family (N-terminal) member 10 O ras association domain-containing protein 10 20121230 -9606 644945 KRT16P3 - - HGNC:37808 17 17p11.2 keratin 16 pseudogene 3 pseudo KRT16P3 keratin 16 pseudogene 3 O - 20121230 -9606 644961 LOC644961 - - - 1 1p36.11 actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 644962 TNRC18P1 - - HGNC:43881 4 4q31.21 TNRC18P1 pseudo TNRC18P1 TNRC18P1 O - 20121230 -9606 644972 RPS3AP26 - RPS3A_11_824 HGNC:36513 7 7q22.1 ribosomal protein S3a pseudogene 26 pseudo RPS3AP26 ribosomal protein S3a pseudogene 26 O - 20121230 -9606 644974 ALG1L2 - - HGNC:37258 3 3q22.1 asparagine-linked glycosylation 1-like 2 protein-coding ALG1L2 asparagine-linked glycosylation 1-like 2 O putative glycosyltransferase ALG1L2 20121230 -9606 644975 FLJ30064 - - - 7 7q21.3 uncharacterized LOC644975 unknown - - - - 20121230 -9606 644988 FAM108A7P - - HGNC:34044 17 17p11.2 family with sequence similarity 108, member A7, pseudogene pseudo FAM108A7P family with sequence similarity 108, member A7, pseudogene O - 20121230 -9606 644990 THRB-AS1 - - HGNC:44515 3 3p24.2 THRB antisense RNA 1 miscRNA THRB-AS1 THRB antisense RNA 1 O - 20121230 -9606 644994 C5orf50 - - HGNC:34440 5 5q35.1 chromosome 5 open reading frame 50 protein-coding C5orf50 chromosome 5 open reading frame 50 O uncharacterized protein C5orf50 20121230 -9606 644996 RPL32P22 - RPL32_14_1010 HGNC:36694 9 9q32 ribosomal protein L32 pseudogene 22 pseudo RPL32P22 ribosomal protein L32 pseudogene 22 O - 20121230 -9606 644997 C1orf200 - - HGNC:32346 1 1p36.22 chromosome 1 open reading frame 200 miscRNA C1orf200 chromosome 1 open reading frame 200 O - 20121230 -9606 644998 KRT8P19 - - HGNC:33371 12 12q14.1 keratin 8 pseudogene 19 pseudo KRT8P19 keratin 8 pseudogene 19 O - 20121230 -9606 645000 RPS3P6 - RPS3_2_1244 HGNC:36061 12 12q14.1 ribosomal protein S3 pseudogene 6 pseudo RPS3P6 ribosomal protein S3 pseudogene 6 O - 20121230 -9606 645001 LOC645001 - - - 19 19q13.2 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 645010 FLJ16126 - - - 1 1p36.22 uncharacterized LOC645010 unknown - - - - 20121230 -9606 645015 ALG1L8P - - HGNC:44377 11 11q13.2 asparagine-linked glycosylation 1-like 8, pseudogene pseudo ALG1L8P asparagine-linked glycosylation 1-like 8, pseudogene O - 20121230 -9606 645018 RPS2P20 - RPS2_7_524 HGNC:35992 4 4q31.21 ribosomal protein S2 pseudogene 20 pseudo RPS2P20 ribosomal protein S2 pseudogene 20 O - 20121230 -9606 645024 GAPDHP59 - GAPDHL3|GAPDL3 HGNC:4152 2 2q32.1 glyceraldehyde-3-phosphate dehydrogenase pseudogene 59 pseudo GAPDHP59 glyceraldehyde-3-phosphate dehydrogenase pseudogene 59 O - 20121230 -9606 645027 EVPLL - - HGNC:35236|Ensembl:ENSG00000214860|Vega:OTTHUMG00000059095 17 17p11.2 envoplakin-like protein-coding EVPLL envoplakin-like O envoplakin-like protein 20121230 -9606 645030 LOC645030 - - - 1 1p31.3 uncharacterized LOC645030 protein-coding - - - - 20120720 -9606 645037 GAGE2B - GAGE-2B HGNC:31957|MIM:300726|Ensembl:ENSG00000231850|Vega:OTTHUMG00000067391 X Xp11.23 G antigen 2B protein-coding GAGE2B G antigen 2B O CT4.2|G antigen 2B/2C|GAGE-2|cancer/testis antigen 4.2|g antigen 2A/2B 20121209 -9606 645051 GAGE13 AF235097.8 GAGE12A HGNC:29081|MIM:300734|Ensembl:ENSG00000237597|Vega:OTTHUMG00000024138 X Xp11.23 G antigen 13 protein-coding GAGE13 G antigen 13 O G antigen 12A|GAGE-12A|GAGE-13 20121230 -9606 645054 RPL6P4 - RPL6_3_194 HGNC:36344 2 2p25.1 ribosomal protein L6 pseudogene 4 pseudo RPL6P4 ribosomal protein L6 pseudogene 4 O - 20121230 -9606 645065 RPEP2 - - HGNC:44521 3 3p24.2 ribulose-5-phosphate-3-epimerase pseudogene 2 pseudo RPEP2 ribulose-5-phosphate-3-epimerase pseudogene 2 O - 20121230 -9606 645073 GAGE12G - AL4|CT4.7|GAGE-12G|RP11-959H17.6 HGNC:31907|MIM:300731|Ensembl:ENSG00000215269|Vega:OTTHUMG00000024148 X Xp11.23 G antigen 12G protein-coding GAGE12G G antigen 12G O cancer/testis antigen 4.7|g antigen 12F/G/I 20121209 -9606 645078 ZCCHC23 - - HGNC:32963 4 4q25 zinc finger, CCHC domain containing 23 unknown ZCCHC23 zinc finger, CCHC domain containing 23 O - 20121211 -9606 645079 FLJ41309 - - - 5 5q14.2 uncharacterized LOC645079 unknown - - - - 20121230 -9606 645084 LOC645084 hCG_2024596 - - 10 10q21.3 DBF4 homolog pseudogene pseudo - - - - 20121230 -9606 645086 LOC645086 - - - 14 14q21.2 chromosome 11 open reading frame 58 pseudogene pseudo - - - - 20121230 -9606 645090 CXorf30 RP11-87M18.1 - HGNC:27298|Ensembl:ENSG00000205081|Vega:OTTHUMG00000021353 X Xp21.1 chromosome X open reading frame 30 protein-coding CXorf30 chromosome X open reading frame 30 O putative uncharacterized protein CXorf30 20121230 -9606 645094 LOC645094 - - - 15 15q15.2 myosin, light chain 12B, regulatory pseudogene pseudo - - - - 20121230 -9606 645100 LOC645100 hCG_1820764 - - 12 12q14.2 hCG1820764 protein-coding - - - - 20120511 -9606 645104 CLRN2 - - HGNC:33939|Ensembl:ENSG00000249581|Vega:OTTHUMG00000160273 4 4p15.32 clarin 2 protein-coding CLRN2 clarin 2 O clarin-2 20121230 -9606 645108 LOC645108 - - - 4 4p15.32 nascent polypeptide-associated complex alpha subunit pseudogene pseudo - - - - 20121230 -9606 645120 AIFM1P1 - - HGNC:44884 10 10p12.31 apoptosis-inducing factor, mitochondrion-associated, 1 pseudogene 1 pseudo AIFM1P1 apoptosis-inducing factor, mitochondrion-associated, 1 pseudogene 1 O - 20121230 -9606 645121 CCNI2 - - HGNC:33869|Ensembl:ENSG00000205089|Vega:OTTHUMG00000059737 5 5q31.1 cyclin I family, member 2 protein-coding CCNI2 cyclin I family, member 2 O cyclin-I2 20121230 -9606 645126 PFN1P6 - - HGNC:42988 1 1q21.2 profilin 1 pseudogene 6 pseudo PFN1P6 profilin 1 pseudogene 6 O - 20121209 -9606 645129 LOC645129 - - - 2 2q13 zinc finger and BTB domain containing 45 pseudogene pseudo - - - - 20121209 -9606 645135 LOC645135 - - - 2 2q13 zinc finger protein 532 pseudogene pseudo - - - - 20121230 -9606 645136 LOC645136 - - - X Xp11.21 v-myc myelocytomatosis viral oncogene homolog 1, lung carcinoma derived (avian) pseudogene pseudo - - - - 20121230 -9606 645139 LOC645139 - - - 17 17p11.2 poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20121230 -9606 645142 PPIAL4D - - HGNC:33998|Ensembl:ENSG00000256374|Vega:OTTHUMG00000078265 1 1q21.2 peptidylprolyl isomerase A (cyclophilin A)-like 4D protein-coding PPIAL4D peptidylprolyl isomerase A (cyclophilin A)-like 4D O - 20121230 -9606 645145 ZBED1P1 - ZBED1P HGNC:44004 4 4q25 zinc finger, BED-type containing 1 pseudogene 1 pseudo ZBED1P1 zinc finger, BED-type containing 1 pseudogene 1 O - 20121230 -9606 645157 RPL21P61 - RPL21_24_663 HGNC:36712 6 6p22.3 ribosomal protein L21 pseudogene 61 pseudo RPL21P61 ribosomal protein L21 pseudogene 61 O - 20121230 -9606 645158 CBX3P2 - - HGNC:42874 18 18p11.32 chromobox homolog 3 pseudogene 2 pseudo CBX3P2 chromobox homolog 3 pseudogene 2 O - 20121230 -9606 645160 RPL5P30 - RPL5_16_1181 HGNC:35837 11 11q23.3 ribosomal protein L5 pseudogene 30 pseudo RPL5P30 ribosomal protein L5 pseudogene 30 O - 20121230 -9606 645161 RPL12P8 RP11-57G10.7 RPL12_10_1052|bA57G10.3 HGNC:23735 10 10q21.3 ribosomal protein L12 pseudogene 8 pseudo RPL12P8 ribosomal protein L12 pseudogene 8 O - 20121230 -9606 645163 LOC645163 - - - 17 17q22 phosphatidylinositol 4-kinase type 2 beta pseudogene pseudo - - - - 20121230 -9606 645166 LOC645166 - - - 1 1q21.1 lymphocyte-specific protein 1 pseudogene pseudo - - - - 20121230 -9606 645173 RPS2P48 - RPS2_26_1559 HGNC:35985 17 17q22 ribosomal protein S2 pseudogene 48 pseudo RPS2P48 ribosomal protein S2 pseudogene 48 O - 20121230 -9606 645174 RPL21P46 - RPL21_14_463 HGNC:35687 4 4p15.31 ribosomal protein L21 pseudogene 46 pseudo RPL21P46 ribosomal protein L21 pseudogene 46 O - 20121230 -9606 645175 MEMO1P2 - - HGNC:38502 6 6q23.3 mediator of cell motility 1 pseudogene 2 pseudo MEMO1P2 mediator of cell motility 1 pseudogene 2 O - 20121230 -9606 645177 LOC645177 - - - 12 12p12.1 uncharacterized LOC645177 protein-coding - - - - 20121209 -9606 645180 LOC645180 - - - 3 3q13.31 KIAA1539 pseudogene pseudo - - - - 20121230 -9606 645181 LOC645181 - - - 5 5q14.3 PDGFA associated protein 1 pseudogene pseudo - - - - 20121230 -9606 645188 LOC645188 RP1-171K16.5 - Vega:OTTHUMG00000022567 X Xq27.2 uncharacterized LOC645188 unknown - - - - 20121230 -9606 645191 LINGO3 hCG_2040376 LERN2|LRRN6B HGNC:21206|MIM:609792|Ensembl:ENSG00000220008 19 19p13.3 leucine rich repeat and Ig domain containing 3 protein-coding LINGO3 leucine rich repeat and Ig domain containing 3 O hCG2040376|leucine rich repeat neuronal 6B|leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 3|leucine-rich repeat neuronal protein 2|leucine-rich repeat neuronal protein 6B 20121230 -9606 645195 LOC645195 - - - 1 1p31.3 uncharacterized LOC645195 unknown - - - - 20120511 -9606 645201 HMGB1P26 - - HGNC:39117 1 1q42.13 high mobility group box 1 pseudogene 26 pseudo HMGB1P26 high mobility group box 1 pseudogene 26 O - 20121230 -9606 645202 LOC645202 - - - 15 15q13.1 golgin A6 family-like protein-coding - - - Golgin subfamily A member 6-like protein 2-like 20121230 -9606 645203 TMEM14D RP11-524O24.3 TMEM14DP|bA524O24.3 HGNC:15660 10 10q21.3 transmembrane protein 14D (pseudogene) pseudo TMEM14D transmembrane protein 14D (pseudogene) O - 20121230 -9606 645204 LOC645204 - - - 15 15q15.3 heterogeneous nuclear ribonucleoprotein M pseudogene pseudo - - - - 20121230 -9606 645206 LINC00693 - - HGNC:44526 3 3p24.1 long intergenic non-protein coding RNA 693 miscRNA LINC00693 long intergenic non-protein coding RNA 693 O - 20121230 -9606 645207 LOC645207 - - - 3 3q13.31 eukaryotic translation initiation factor 4E family member 2 pseudogene pseudo - - - - 20121230 -9606 645212 LOC645212 - - - 15 15q21.1 uncharacterized LOC645212 miscRNA - - - - 20121230 -9606 645220 ADIPOR1P1 - - HGNC:44910 10 10p12.31 adiponectin receptor 1 pseudogene 1 pseudo ADIPOR1P1 adiponectin receptor 1 pseudogene 1 O - 20121230 -9606 645224 RPL29P17 - RPL29_8_665 HGNC:36910 6 6p22.3 ribosomal protein L29 pseudogene 17 pseudo RPL29P17 ribosomal protein L29 pseudogene 17 O - 20121230 -9606 645233 LOC645233 - - - 12 12p12.1 thymine-DNA glycosylase pseudogene pseudo - - - - 20121230 -9606 645249 LOC645249 - - - 7 7q36.3 uncharacterized LOC645249 miscRNA - - - - 20121230 -9606 645251 CBX1P1 - - HGNC:38655 X Xq11.1 chromobox homolog 1 pseudogene 1 pseudo CBX1P1 chromobox homolog 1 pseudogene 1 O - 20121230 -9606 645256 GAPDHP66 - GAPDHL11|GAPDL11 HGNC:4144 18 18p11.31 glyceraldehyde-3-phosphate dehydrogenase pseudogene 66 pseudo GAPDHP66 glyceraldehyde-3-phosphate dehydrogenase pseudogene 66 O - 20121230 -9606 645257 RPL7AP37 - RPL7A_15_759 HGNC:36507 6 6q23.3 ribosomal protein L7a pseudogene 37 pseudo RPL7AP37 ribosomal protein L7a pseudogene 37 O - 20121230 -9606 645261 LOC645261 - - - 5 5q14.3 PP565 unknown - - - - 20120511 -9606 645262 LOC645262 RP11-403I13.9 - Vega:OTTHUMG00000041633 1 1q21.2 phosphodiesterase 4D interacting protein-like protein-coding - - - - 20120726 -9606 645263 LOC645263 hCG_1793639 - - 15 15q21.1 hCG1793639 protein-coding - - - - 20120511 -9606 645264 OSTCP4 - - HGNC:42866 4 4q25 oligosaccharyltransferase complex subunit pseudogene 4 pseudo OSTCP4 oligosaccharyltransferase complex subunit pseudogene 4 O - 20121230 -9606 645266 LOC645266 - - - 9 9q32 PRP4 pre-mRNA processing factor 4 homolog B (yeast) pseudogene pseudo - - - - 20121230 -9606 645269 LOC645269 - - - 10 10q22.1 chromosome 17 open reading frame 61 pseudogene pseudo - - - - 20121230 -9606 645272 LOC645272 - - - 7 7q36.3 adenosylmethionine decarboxylase 1 pseudogene pseudo - - - - 20121230 -9606 645280 SMPD4P1 - - HGNC:39673 22 22q11.21 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) pseudogene 1 pseudo SMPD4P1 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) pseudogene 1 O - 20121230 -9606 645292 HMGB1P6 - HMG1L6|HMGB1L6 HGNC:4998 15 15q23 high mobility group box 1 pseudogene 6 pseudo HMGB1P6 high mobility group box 1 pseudogene 6 O - 20121230 -9606 645296 RPL17P39 hCG_2004593 RPL17_14_1450|hCG2004593 HGNC:36427 15 15q23 ribosomal protein L17 pseudogene 39 pseudo RPL17P39 ribosomal protein L17 pseudogene 39 O - 20121230 -9606 645297 LOC645297 - - - 11 11p15.1 MAS-related GPR, member X2 pseudogene pseudo - - - - 20121230 -9606 645299 RPS10P24 - RPS10_9_1493 HGNC:35989 16 16q22.1 ribosomal protein S10 pseudogene 24 pseudo RPS10P24 ribosomal protein S10 pseudogene 24 O - 20121230 -9606 645311 EEF1GP7 - - HGNC:44562 1 1p32.3 eukaryotic translation elongation factor 1 gamma pseudogene 7 pseudo EEF1GP7 eukaryotic translation elongation factor 1 gamma pseudogene 7 O - 20121230 -9606 645312 GLTPP1 - - HGNC:33991 11 11p15.1 glycolipid transfer protein pseudogene 1 pseudo GLTPP1 glycolipid transfer protein pseudogene 1 O - 20121230 -9606 645313 SCDP1 - SCDP HGNC:10572 17 17p11.2 stearoyl-CoA desaturase (delta-9-desaturase) pseudogene 1 pseudo SCDP1 stearoyl-CoA desaturase (delta-9-desaturase) pseudogene 1 O - 20121230 -9606 645314 LOC645314 - - - 2 2q32.3 DnaJ (Hsp40) homolog, subfamily C, member 17 pseudogene pseudo - - - - 20121230 -9606 645317 CHCHD2P6 - - HGNC:39590 1 1p36.21 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 6 pseudo CHCHD2P6 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 6 O - 20121230 -9606 645318 LOC645318 - - - 10 10q25.1 prohibitin 2 pseudogene pseudo - - - - 20121230 -9606 645319 LOC645319 - - - 11 11p15.1 MAS-related GPR, member X3 pseudogene pseudo - - - - 20121230 -9606 645321 LOC645321 - - - 18 18q23 uncharacterized LOC645321 miscRNA - - - - 20121209 -9606 645323 LINC00461 - - HGNC:42810 5 5q14.3 long intergenic non-protein coding RNA 461 miscRNA LINC00461 long intergenic non-protein coding RNA 461 O - 20121230 -9606 645324 LOC645324 - - - 7 7q11.23 GrpE-like 1, mitochondrial (E. coli) pseudogene pseudo - - - - 20121230 -9606 645326 RPSAP11 - LAMR|LAMR1P11|LAMRL1|LAMRP1|RPSA_9_357 HGNC:6503 3 3p22.3 ribosomal protein SA pseudogene 11 pseudo RPSAP11 ribosomal protein SA pseudogene 11 O - 20121230 -9606 645328 MRPL40P1 - - HGNC:44532 12 12q15 mitochondrial ribosomal protein L40 pseudogene 1 pseudo MRPL40P1 mitochondrial ribosomal protein L40 pseudogene 1 O - 20121230 -9606 645332 FAM86C2P - - HGNC:42392 11 11q13.2 family with sequence similarity 86, member A pseudogene pseudo FAM86C2P family with sequence similarity 86, member C2, pseudogene O - 20121230 -9606 645339 SNRPD2P2 - - HGNC:38598 1 1q42.2 small nuclear ribonucleoprotein D2 pseudogene 2 pseudo SNRPD2P2 small nuclear ribonucleoprotein D2 pseudogene 2 O - 20121230 -9606 645345 CHCHD2P9 RP11-567E16.1 C9orf49|CHCHD9 HGNC:23676|HPRD:17395 9 9q21.31 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 9 pseudo CHCHD2P9 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 9 O - 20121230 -9606 645348 TUBA3GP - - HGNC:44096 22 22q11.21 tubulin, alpha 3g, pseudogene pseudo TUBA3GP tubulin, alpha 3g, pseudogene O - 20121230 -9606 645354 LOC645354 - - - 1 1p36.21 PRAME family member 14 pseudogene pseudo - - - - 20121230 -9606 645355 LOC645355 - - - 18 18p11.31 uncharacterized LOC645355 miscRNA - - - - 20121230 -9606 645357 LOC645357 tcag7.1093 - - 7 7p22.3 kinesin family member pseudogene pseudo - - - - 20121230 -9606 645359 LOC645359 WI2-2994D6.2 - - 1 1p36.21 PRAME family member protein-coding - - - - 20121216 -9606 645360 HMGB3P5 - - HGNC:39105 10 10q25.2 high mobility group box 3 pseudogene 5 pseudo HMGB3P5 high mobility group box 3 pseudogene 5 O - 20121230 -9606 645367 GGT8P - GGT1P1 HGNC:33438 2 2p11.1 gamma-glutamyltransferase 8 pseudogene pseudo GGT8P gamma-glutamyltransferase 8 pseudogene O - 20121230 -9606 645368 EIF3KP3 - - HGNC:44018 4 4q26 eukaryotic translation initiation factor 3, subunit K pseudogene 3 pseudo EIF3KP3 eukaryotic translation initiation factor 3, subunit K pseudogene 3 O - 20121230 -9606 645369 TMEM200C - TTMA HGNC:37208|Ensembl:ENSG00000206432 18 18p11.31 transmembrane protein 200C protein-coding TMEM200C transmembrane protein 200C O transmembrane protein TTMA|two transmembrane domain family member A|two transmembrane domain-containing family member A 20121230 -9606 645373 RPL21P76 tcag7.1244 RPL21_31_868 HGNC:37042 7 7q36.3 ribosomal protein L21 pseudogene 76 pseudo RPL21P76 ribosomal protein L21 pseudogene 76 O - 20121230 -9606 645381 TLE1P1 - - HGNC:39438 X Xq12 transducin-like enhancer of split 1 pseudogene 1 pseudo TLE1P1 transducin-like enhancer of split 1 pseudogene 1 O - 20121230 -9606 645382 LOC645382 - - - 1 1p36.21 PRAME family member 10 pseudogene pseudo - - - - 20121230 -9606 645387 RPL6P27 - RPL6_10_1582 HGNC:36133 18 18p11.31 ribosomal protein L6 pseudogene 27 pseudo RPL6P27 ribosomal protein L6 pseudogene 27 O - 20121230 -9606 645388 LOC645388 - - - X Xq12 adaptor-related protein complex 1, mu 2 subunit pseudogene pseudo - - - - 20121230 -9606 645397 LOC645397 - - - 11 11p15.1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like pseudogene pseudo - - - - 20121230 -9606 645398 MKI67IPP2 - - HGNC:44950 5 5q35.2 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 2 pseudo MKI67IPP2 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 2 O - 20121230 -9606 645399 LOC645399 - - - 1 1p36.21 PRAME family member 10 pseudogene pseudo - - - - 20121230 -9606 645402 USP17L4 - - HGNC:37176 8 8p23.1 ubiquitin specific peptidase 17-like family member 4 protein-coding USP17L4 ubiquitin specific peptidase 17-like family member 4 O inactive ubiquitin carboxyl-terminal hydrolase 17-like protein 4|ubiquitin specific peptidase 17-like 4 20121230 -9606 645405 LOC645405 - - - 15 15q21.1 oxidation resistance 1 pseudogene pseudo - - - - 20121230 -9606 645412 RPS16P9 - RPS16_5_1659 HGNC:35659 19 19q13.32 ribosomal protein S16 pseudogene 9 pseudo RPS16P9 ribosomal protein S16 pseudogene 9 O - 20121230 -9606 645414 PRAMEF19 - - HGNC:24908|Ensembl:ENSG00000204480|Vega:OTTHUMG00000007919 1 1p36.21 PRAME family member 19 protein-coding PRAMEF19 PRAME family member 19 O - 20121230 -9606 645415 LOC645415 - - - 11 11p15.1 MAS-related GPR, member X1 pseudogene pseudo - - - - 20121230 -9606 645422 RPL10P12 - - - 12 12q15 ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 645423 SLC25A51P2 - MCART4P HGNC:23327 18 18p11.23 solute carrier family 25, member 51 pseudogene 2 pseudo SLC25A51P2 solute carrier family 25, member 51 pseudogene 2 O - 20121230 -9606 645425 PRAMEF20 - - HGNC:25224|Ensembl:ENSG00000204478|Vega:OTTHUMG00000007911 1 1p36.21 PRAME family member 20 protein-coding PRAMEF20 PRAME family member 20 O PRAME family member 20/21 20121230 -9606 645426 TMEM191C - - HGNC:33601 22 22q11.21 transmembrane protein 191C protein-coding TMEM191C transmembrane protein 191C O - 20121230 -9606 645427 LOC645427 - - - 17 17p11.2 uncharacterized LOC645427 unknown - - - - 20120511 -9606 645431 FUT8-AS1 - - HGNC:44294 14 14q23.3 FUT8 antisense RNA 1 miscRNA FUT8-AS1 FUT8 antisense RNA 1 O - 20121230 -9606 645432 ARRDC5 - - HGNC:31407|Ensembl:ENSG00000205784|Vega:OTTHUMG00000180250 19 19p13.3 arrestin domain containing 5 protein-coding ARRDC5 arrestin domain containing 5 O arrestin domain-containing protein 5 20121230 -9606 645433 LOC645433 - - - 4 4p15.2 inositol-3-phosphate synthase 1 pseudogene pseudo - - - - 20121230 -9606 645434 LOC645434 hCG_1786283 - - 6 6q24.1 uncharacterized LOC645434 miscRNA - - - - 20121230 -9606 645436 LOC645436 - - - 1 1p32.3 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 645440 ATP5F1P6 - - HGNC:39747 6 6q24.1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 6 pseudo ATP5F1P6 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 6 O - 20121230 -9606 645441 RPL17P6 hCG_22804 RPL17_1_64 HGNC:36520 1 1p31.1 ribosomal protein L17 pseudogene 6 pseudo RPL17P6 ribosomal protein L17 pseudogene 6 O - 20121230 -9606 645443 ATP5A1P3 - ATP5AP3 HGNC:829 16 16q22.2 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 3 pseudo ATP5A1P3 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 3 O - 20121230 -9606 645452 RPL21P68 - RPL21_25_668 HGNC:35720 6 6p22.2 ribosomal protein L21 pseudogene 68 pseudo RPL21P68 ribosomal protein L21 pseudogene 68 O - 20121230 -9606 645453 RLIMP3 - - HGNC:39684 15 15q21.2 ring finger protein, LIM domain interacting pseudogene 3 pseudo RLIMP3 ring finger protein, LIM domain interacting pseudogene 3 O - 20121230 -9606 645455 CEP170P1 - CEP170L|FAM68B|KIAA0470L HGNC:28364 4 4q26 centrosomal protein 170kDa pseudogene 1 pseudo CEP170P1 centrosomal protein 170kDa pseudogene 1 O - 20121230 -9606 645460 FLJ44342 - - - 17 17q22 uncharacterized LOC645460 unknown - - - - 20121230 -9606 645468 LOC645468 - - - 6 6q27 insulin-like growth factor 2 mRNA binding protein 3 pseudogene pseudo - - - - 20121230 -9606 645474 S100A11P3 - - HGNC:37842 11 11q13.4 S100 calcium binding protein A11 pseudogene 3 pseudo S100A11P3 S100 calcium binding protein A11 pseudogene 3 O - 20121230 -9606 645481 LOC645481 - - - 4 4p15.2 zinc finger protein 248 pseudogene pseudo - - - - 20121230 -9606 645482 LOC645482 - - - 9 9q33.2 ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B2 pseudogene pseudo - - - - 20121230 -9606 645485 LOC645485 - - - 12 12p11.21 uncharacterized LOC645485 unknown - - - - 20120508 -9606 645486 LOC645486 - - - 15 15q21.2 adenosylhomocysteinase pseudogene pseudo - - - - 20121230 -9606 645503 LOC645503 - - - 6 6q24.1 SUMO-activating enzyme subunit 2-like pseudo - - - - 20121209 -9606 645506 GYG1P3 - - HGNC:39711 1 1p32.3 glycogenin 1 pseudogene 3 pseudo GYG1P3 glycogenin 1 pseudogene 3 O - 20121230 -9606 645513 LOC645513 - - - 4 4q26 uncharacterized LOC645513 miscRNA - - - - 20121230 -9606 645520 FAM138A RP11-34P13.4 F379 HGNC:32334 1 1p36.33 family with sequence similarity 138, member A miscRNA FAM138A family with sequence similarity 138, member A O - 20121209 -9606 645524 FLJ36840 - - - 7 - uncharacterized LOC645524 unknown - - - - 20120622 -9606 645528 LINC00264 - C10orf50|NCRNA00264|bA128B16.2 HGNC:17776 10 10p12.1 long intergenic non-protein coding RNA 264 miscRNA LINC00264 long intergenic non-protein coding RNA 264 O - 20121230 -9606 645529 LOC645529 - - - 2 2q14.1 acrosin pseudogene pseudo - - - - 20121230 -9606 645538 GOT2P1 RP4-633H17.1 GOT2L1 HGNC:4434 1 1p32.3 glutamic-oxaloacetic transaminase 2 pseudogene 1 pseudo GOT2P1 glutamic-oxaloacetic transaminase 2 pseudogene 1 O - 20121230 -9606 645544 LOC645544 - - - 11 11q13.4 uncharacterized LOC645544 pseudo - - - - 20121209 -9606 645545 IGBP1P2 hCG_1642624 - HGNC:43611 17 17q22 immunoglobulin (CD79A) binding protein 1 pseudogene 2 pseudo IGBP1P2 immunoglobulin (CD79A) binding protein 1 pseudogene 2 O - 20121230 -9606 645548 HSPD1P6 - HSPD1-6P|HSPDP6 HGNC:5267 3 3p22.2 heat shock 60kDa protein 1 (chaperonin) pseudogene 6 pseudo HSPD1P6 heat shock 60kDa protein 1 (chaperonin) pseudogene 6 O - 20121230 -9606 645553 LOC645553 - - - 19 19q13.32 uncharacterized LOC645553 unknown - - - - 20120508 -9606 645558 FAM90A22P - FAM90A22 HGNC:32270 8 8p23.1 family with sequence similarity 90, member A22 pseudogene pseudo FAM90A22P family with sequence similarity 90, member A22, pseudogene O - 20121209 -9606 645560 ATP5C1P1 - ATP5C2|ATP5CL2 HGNC:834 14 14q22.2 ATP synthase, H+ transporting, mitochondrial F1 complex, gamma polypeptide 1 pseudogene 1 pseudo ATP5C1P1 ATP synthase, H+ transporting, mitochondrial F1 complex, gamma polypeptide 1 pseudogene 1 O - 20121230 -9606 645561 LOC645561 - - - 7 - carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 2-like pseudo - - - - 20121209 -9606 645566 FLJ45482 - - - 7 - uncharacterized LOC645566 unknown - - - - 20120909 -9606 645571 PRADC1P1 - - HGNC:44534 3 3p22.2 protease-associated domain containing 1 pseudogene 1 pseudo PRADC1P1 protease-associated domain containing 1 pseudogene 1 O - 20121230 -9606 645572 FAM90A23P - FAM90A23 HGNC:32271 8 8p23.1 family with sequence similarity 90, member A23 pseudogene pseudo FAM90A23P family with sequence similarity 90, member A23, pseudogene O - 20121209 -9606 645573 RPS4XP19 - RPS4P19|RPS4X_9_1583 HGNC:36872 18 18p11.22 ribosomal protein S4X pseudogene 19 pseudo RPS4XP19 ribosomal protein S4X pseudogene 19 O - 20121230 -9606 645579 EIF4BP6 - - HGNC:37939 7 7q22.2 eukaryotic translation initiation factor 4B pseudogene 6 pseudo EIF4BP6 eukaryotic translation initiation factor 4B pseudogene 6 O - 20121230 -9606 645587 LINC00614 RP13-27G4.1 C10orf52 HGNC:30165 10 10p12.1 long intergenic non-protein coding RNA 614 protein-coding LINC00614 long intergenic non-protein coding RNA 614 O Putative uncharacterized protein C10orf52 20121021 -9606 645591 LHFPL3-AS1 - - HGNC:40341 7 7q22.1 LHFPL3 antisense RNA 1 miscRNA LHFPL3-AS1 LHFPL3 antisense RNA 1 O - 20121230 -9606 645598 LOC645598 - - - 11 11p14.3 widely interspaced zinc finger motifs pseudogene pseudo - - - - 20121230 -9606 645619 AK4P3 - AK3L2|AK3L2P HGNC:21596 12 12p11.21 adenylate kinase 4 pseudogene 3 pseudo AK4P3 adenylate kinase 4 pseudogene 3 O - 20121230 -9606 645626 LOC645626 RP11-38M15.10-001 - - 13 13q11 coiled-coil domain containing 29-like pseudo - - - - 20121230 -9606 645630 RPS13P8 - RPS13_5_1432 HGNC:36400 15 15q21.2 ribosomal protein S13 pseudogene 8 pseudo RPS13P8 ribosomal protein S13 pseudogene 8 O - 20121230 -9606 645634 ANO7P1 RP4-733M16.3 ANO7L1|C1orf224|TMEM16M HGNC:32248 1 1p36.13 anoctamin 7 pseudogene 1 protein-coding ANO7P1 anoctamin 7 pseudogene 1 O anoctamin 7-like 1|transmembrane protein 16M 20121216 -9606 645638 LOC645638 - - - 17 17q23.1 WDNM1-like pseudogene pseudo - - - - 20121230 -9606 645641 MESTP3 - - HGNC:38553 4 4p15.1 mesoderm specific transcript pseudogene 3 pseudo MESTP3 mesoderm specific transcript pseudogene 3 O - 20121230 -9606 645644 FLJ42627 - - - 16 16p13.3 uncharacterized LOC645644 miscRNA - - - - 20121230 -9606 645645 LOC645645 - - - 1 1q42.3 uncharacterized LOC645645 unknown - - - - 20120511 -9606 645646 FAM32C - - HGNC:34239 10 10q22.2 family with sequence similarity 32, member C (pseudogene) pseudo FAM32C family with sequence similarity 32, member C (pseudogene) O - 20121230 -9606 645651 FAM90A14P - FAM90A14 HGNC:32262|MIM:613050 8 8p23.1 putative protein FAM90A14 pseudo FAM90A14P family with sequence similarity 90, member A14, pseudogene O - 20121230 -9606 645652 MT1XP1 - MTL1 HGNC:7442 1 1p36.13 metallothionein 1X pseudogene 1 pseudo MT1XP1 metallothionein 1X pseudogene 1 O - 20121230 -9606 645654 RPL31P48 - RPL31_25_1257 HGNC:36129 12 12q21.1 ribosomal protein L31 pseudogene 48 pseudo RPL31P48 ribosomal protein L31 pseudogene 48 O - 20121230 -9606 645656 RPSAP56 - RPSA_23_1496 HGNC:36018 16 16q22.3 ribosomal protein SA pseudogene 56 pseudo RPSAP56 ribosomal protein SA pseudogene 56 O - 20121230 -9606 645668 TUFMP1 - TUFML HGNC:12421 17 17q11.1 Tu translation elongation factor, mitochondrial pseudogene 1 pseudo TUFMP1 Tu translation elongation factor, mitochondrial pseudogene 1 O - 20121230 -9606 645676 ASH1L-AS1 - - HGNC:44146 1 1q22 ASH1L antisense RNA 1 miscRNA ASH1L-AS1 ASH1L antisense RNA 1 O - 20121230 -9606 645680 LOC645680 - - - 7 7q21.12 karyopherin alpha 2 pseudogene pseudo - - - - 20121230 -9606 645682 POU5F1P4 - POU5FLC1 HGNC:33310 1 1q22 POU class 5 homeobox 1 pseudogene 4 pseudo POU5F1P4 POU class 5 homeobox 1 pseudogene 4 O - 20121230 -9606 645683 RPL13AP3 - RPL13A_11_1370 HGNC:23539 14 14q22.3 ribosomal protein L13a pseudogene 3 pseudo RPL13AP3 ribosomal protein L13a pseudogene 3 O - 20121230 -9606 645686 GTF2IP3 RP11-301J16.2 - HGNC:42640 13 13q12.11 general transcription factor IIi, pseudogene 3 pseudo GTF2IP3 general transcription factor IIi, pseudogene 3 O - 20121230 -9606 645687 LINC00520 - C14orf34 HGNC:19843 14 14q22.3 long intergenic non-protein coding RNA 520 miscRNA LINC00520 long intergenic non-protein coding RNA 520 O - 20121230 -9606 645688 RPL12P38 - RPL12_14_1564 HGNC:36838 17 17q23.2 ribosomal protein L12 pseudogene 38 pseudo RPL12P38 ribosomal protein L12 pseudogene 38 O - 20121230 -9606 645691 LOC645691 - - - 2 2q33.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 645693 EEF1A1P22 - - HGNC:37895 15 15q21.3 eukaryotic translation elongation factor 1 alpha 1 pseudogene 22 pseudo EEF1A1P22 eukaryotic translation elongation factor 1 alpha 1 pseudogene 22 O - 20121230 -9606 645694 HTR5BP - 5-HT5B|GPR134|HTR5B HGNC:16291 2 2q14.1 5-hydroxytryptamine (serotonin) receptor 5B, pseudogene pseudo HTR5BP 5-hydroxytryptamine (serotonin) receptor 5B, pseudogene O - 20121230 -9606 645700 ZNF890P hCG_1786132 - HGNC:38691 7 7p22.1 zinc finger protein 890, pseudogene pseudo ZNF890P zinc finger protein 890, pseudogene O - 20121230 -9606 645713 RPS10P23 - RPS10_13_1498 HGNC:36657 16 16q23.1 ribosomal protein S10 pseudogene 23 pseudo RPS10P23 ribosomal protein S10 pseudogene 23 O - 20121230 -9606 645715 EEF1A1P24 - - HGNC:37897 3 3p22.1 eukaryotic translation elongation factor 1 alpha 1 pseudogene 24 pseudo EEF1A1P24 eukaryotic translation elongation factor 1 alpha 1 pseudogene 24 O - 20121230 -9606 645739 LOC645739 RP11-408E5.4 - - 13 13q12.11 hCG1646718 unknown - - - - 20121216 -9606 645740 NOS2P1 - NOS2C HGNC:7875|MIM:600720 17 17q11.2 nitric oxide synthase 2 pseudogene 1 pseudo NOS2P1 nitric oxide synthase 2 pseudogene 1 O - 20121230 -9606 645744 TAF5LP1 - HsT33855|TAF5LP HGNC:24115 17 17q12 TAF5-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa pseudogene 1 pseudo TAF5LP1 TAF5-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa pseudogene 1 O - 20121230 -9606 645745 MT1P2 - - HGNC:31864 1 1q43 metallothionein 1 pseudogene 2 pseudo MT1P2 metallothionein 1 pseudogene 2 O - 20121230 -9606 645749 LOC645749 - - - 6 6q24.3 zinc finger protein 131 pseudogene pseudo - - - - 20121230 -9606 645752 LOC645752 - - - 15 15q24.3 golgin A6 family, member A pseudogene pseudo - - - - 20121230 -9606 645754 LOC645754 - - - 17 17q11.2 lectin, galactoside-binding, soluble, 9 pseudogene pseudo - - - - 20121230 -9606 645763 LOC645763 - - - 5 5p15.2 intersectin 1 (SH3 domain protein) pseudogene pseudo - - - - 20121230 -9606 645769 LOC645769 - - - X Xp22.2 uncharacterized LOC645769 unknown - - - - 20120511 -9606 645771 PARP4P2 RP11-385E5.2 - HGNC:37760 13 13q12.11 poly (ADP-ribose) polymerase family, member 4 pseudogene 2 pseudo PARP4P2 poly (ADP-ribose) polymerase family, member 4 pseudogene 2 O - 20121230 -9606 645773 LOC645773 - - - 4 4q28.1 tubulin, alpha 4a pseudogene pseudo - - - - 20121230 -9606 645784 ANKRD36BP2 - - HGNC:33607 2 2p11.2 ankyrin repeat domain 36B pseudogene 2 pseudo ANKRD36BP2 ankyrin repeat domain 36B pseudogene 2 O - 20121230 -9606 645798 RPL3P3 - RPL3_2_1372 HGNC:23550 14 14q22.3 ribosomal protein L3 pseudogene 3 pseudo RPL3P3 ribosomal protein L3 pseudogene 3 O - 20121230 -9606 645805 DAZAP2P1 - - HGNC:43869 2 2q33.1 DAZ associated protein 2 pseudogene 1 pseudo DAZAP2P1 DAZ associated protein 2 pseudogene 1 O - 20121230 -9606 645807 RPL5P10 - RPL5_4_365 HGNC:36846 3 3p22.1 ribosomal protein L5 pseudogene 10 pseudo RPL5P10 ribosomal protein L5 pseudogene 10 O - 20121230 -9606 645808 HSPD1P2 - HSP60P2|HSPD-9P|HSPDP2 HGNC:5263 8 8p23.1 heat shock 60kDa protein 1 (chaperonin) pseudogene 2 pseudo HSPD1P2 heat shock 60kDa protein 1 (chaperonin) pseudogene 2 O - 20121230 -9606 645809 RPL23AP56 - RPL23A_21_952 HGNC:35516 8 8q24.22 ribosomal protein L23a pseudogene 56 pseudo RPL23AP56 ribosomal protein L23a pseudogene 56 O - 20121230 -9606 645811 CCDC154 - C16orf29 HGNC:34454|Ensembl:ENSG00000197599|Vega:OTTHUMG00000154097 16 16p13.3 coiled-coil domain containing 154 protein-coding CCDC154 coiled-coil domain containing 154 O coiled-coil domain-containing protein 154 20121230 -9606 645832 SEBOX - OG-9|OG9|OG9X HGNC:32942|MIM:610975|Ensembl:ENSG00000109072|Vega:OTTHUMG00000171160 17 17q11.2 SEBOX homeobox protein-coding SEBOX SEBOX homeobox O homeobox OG-9|homeobox protein SEBOX|skin-, embryo-, brain- and oocyte-specific homeobox 20121230 -9606 645834 KRT8P15 - - HGNC:33367 2 2q33.1 keratin 8 pseudogene 15 pseudo KRT8P15 keratin 8 pseudogene 15 O - 20121230 -9606 645836 USP17L3 - USP17B|USP17F HGNC:37175 8 8p23.1 ubiquitin specific peptidase 17-like family member 3 protein-coding USP17L3 ubiquitin specific peptidase 17-like family member 3 O deubiquitinating enzyme 17-like protein 3|ubiquitin carboxyl-terminal hydrolase 17-like protein 3|ubiquitin specific peptidase 17-like 3|ubiquitin thioesterase 17-like protein 3|ubiquitin-specific-processing protease 17-like protein 3 20121230 -9606 645840 TXNRD3NB - TR2IT1|TXNRD3IT1|TXNRD3NT1 HGNC:33870|Ensembl:ENSG00000206483 3 3q21.3 thioredoxin reductase 3 neighbor protein-coding TXNRD3NB thioredoxin reductase 3 neighbor O TXNRD3 neighbor gene protein|protein TXNRD3NB|thioredoxin reductase 2 intronic transcript 1|thioredoxin reductase 3 intronic transcript 1|thioredoxin reductase 3 neighbor gene protein|thioredoxin reductase 3 new transcript 1 20121230 -9606 645841 TMEM248P1 - - HGNC:44053 4 4q28.1 transmembrane protein 248 pseudogene 1 pseudo TMEM248P1 transmembrane protein 248 pseudogene 1 O - 20121230 -9606 645843 TMEM14E UNQ9344/PRO34067 - HGNC:34386|Ensembl:ENSG00000221962|Vega:OTTHUMG00000159652 3 3q25.1 transmembrane protein 14E protein-coding TMEM14E transmembrane protein 14E O - 20121230 -9606 645846 RPL7AP58 - RPL7A_20_1131 HGNC:36586 11 11p14.1 ribosomal protein L7a pseudogene 58 pseudo RPL7AP58 ribosomal protein L7a pseudogene 58 O - 20121230 -9606 645852 LOC645852 - - - 3 3q21.3 splicing factor 3a, subunit 2, 66kDa pseudogene pseudo - - - - 20121230 -9606 645853 LOC645853 - - - 5 5q35.3 apolipoprotein A-I binding protein pseudogene pseudo - - - - 20121230 -9606 645857 RPS10P17 - RPS10_5_1013 HGNC:35562 9 9q33.3 ribosomal protein S10 pseudogene 17 pseudo RPS10P17 ribosomal protein S10 pseudogene 17 O - 20121230 -9606 645859 CCDC58P1 - - HGNC:32457 18 18p11.22 coiled-coil domain containing 58 pseudogene 1 pseudo CCDC58P1 coiled-coil domain containing 58 pseudogene 1 O - 20121230 -9606 645862 CHCHD4P1 - - HGNC:44489 7 7q21.2 coiled-coil-helix-coiled-coil-helix domain containing 4 pseudogene 1 pseudo CHCHD4P1 coiled-coil-helix-coiled-coil-helix domain containing 4 pseudogene 1 O - 20121230 -9606 645864 MAGEB17 - - HGNC:17418|MIM:300763|Ensembl:ENSG00000182798|Vega:OTTHUMG00000021188 X Xp22.2 melanoma antigen family B, 17 protein-coding MAGEB17 melanoma antigen family B, 17 O melanoma antigen family B, 17 (pseudogene) 20121230 -9606 645877 LOC645877 - - - 15 15q21.3 acyl-CoA binding domain containing 7 pseudogene pseudo - - - - 20121230 -9606 645879 FAM90A12P - FAM90A12 HGNC:32260|MIM:613048 8 8p23.1 Putative protein FAM90A12 pseudo FAM90A12P family with sequence similarity 90, member A12, pseudogene O - 20121209 -9606 645884 RPS7P5 - RPS7_2_183 HGNC:37037 1 1q43 ribosomal protein S7 pseudogene 5 pseudo RPS7P5 ribosomal protein S7 pseudogene 5 O - 20121230 -9606 645895 LOC645895 - - - 8 8q13.1 uncharacterized LOC645895 unknown - - - - 20120710 -9606 645899 RPS28P4 - RPS28_1_332 HGNC:36208 2 2q37.1 ribosomal protein S28 pseudogene 4 pseudo RPS28P4 ribosomal protein S28 pseudogene 4 O - 20121230 -9606 645900 LOC645900 - - - 1 1q21.3 lysosomal protein transmembrane 4 beta pseudogene pseudo - - - - 20121230 -9606 645916 RPS11P2 - RPS11_1_184 HGNC:37007 1 1q43 ribosomal protein S11 pseudogene 2 pseudo RPS11P2 ribosomal protein S11 pseudogene 2 O - 20121230 -9606 645918 RPS13P7 - RPS13_3_1434 HGNC:36310 15 15q21.3 ribosomal protein S13 pseudogene 7 pseudo RPS13P7 ribosomal protein S13 pseudogene 7 O - 20121230 -9606 645922 S100A7L2 - S100a7b HGNC:21655|Ensembl:ENSG00000197364 1 1q21.3 S100 calcium binding protein A7-like 2 protein-coding S100A7L2 S100 calcium binding protein A7-like 2 O S100 calcium-binding protein A7-like 2|protein S100-A7-like 2 20121230 -9606 645927 MCFD2P1 - C6orf44|MCFD2L|NUCB2-L|dJ153G14.2 HGNC:21582 6 6p22.1 multiple coagulation factor deficiency 2 pseudogene 1 pseudo MCFD2P1 multiple coagulation factor deficiency 2 pseudogene 1 O - 20121230 -9606 645930 HMGN2P31 - - HGNC:39398 9 9p24.1 high mobility group nucleosomal binding domain 2 pseudogene 31 pseudo HMGN2P31 high mobility group nucleosomal binding domain 2 pseudogene 31 O - 20121230 -9606 645931 FEN1P1 - FENL1 HGNC:3651 1 1p22.2 flap structure-specific endonuclease 1 pseudogene 1 pseudo FEN1P1 flap structure-specific endonuclease 1 pseudogene 1 O - 20121230 -9606 645937 LOC645937 - - - 9 9q22.1 zinc finger protein 598 pseudogene pseudo - - - - 20121230 -9606 645938 LOC645938 - - - X Xq13.2 capping protein (actin filament) muscle Z-line, alpha 1 pseudogene pseudo - - - - 20121230 -9606 645939 PRKRIRP8 - - HGNC:39572 1 1q43 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 8 pseudo PRKRIRP8 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 8 O - 20121230 -9606 645940 HNRNPA1P32 - - HGNC:44958 10 10p11.23 heterogeneous nuclear ribonucleoprotein A1 pseudogene 32 pseudo HNRNPA1P32 heterogeneous nuclear ribonucleoprotein A1 pseudogene 32 O - 20121230 -9606 645949 LOC645949 - - - 2 2p24.1 uncharacterized LOC645949 miscRNA - - - - 20121230 -9606 645950 HNRNPA1P1 - HNRPA1P1|b34I8.2|hnRNPA1-Lp HGNC:13957 6 6p22.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene 1 pseudo HNRNPA1P1 heterogeneous nuclear ribonucleoprotein A1 pseudogene 1 O - 20121230 -9606 645954 SVILP1 hCG_1783494 - HGNC:44959 10 10p11.23 supervillin pseudogene 1 pseudo SVILP1 supervillin pseudogene 1 O - 20121230 -9606 645957 RPS3P7 - RPS3_3_1501 HGNC:36056 16 16q23.1 ribosomal protein S3 pseudogene 7 pseudo RPS3P7 ribosomal protein S3 pseudogene 7 O - 20121230 -9606 645958 RPS18P9 - RPS18_6_767 HGNC:36483 6 6q25.1 ribosomal protein S18 pseudogene 9 pseudo RPS18P9 ribosomal protein S18 pseudogene 9 O - 20121230 -9606 645960 LOC645960 - - - 8 8p23.1 ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 645961 SPATA31C2 - FAM75C2 HGNC:24508 9 9q22.1 SPATA31 subfamily C, member 2 protein-coding SPATA31C2 SPATA31 subfamily C, member 2 O family with sequence similarity 75, member C2|uncharacterized protein LOC645961 20121230 -9606 645962 RPL23AP20 RP11-553N16.5 RPL23A_6_188 HGNC:36622 1 1q43 ribosomal protein L23a pseudogene 20 pseudo RPL23AP20 ribosomal protein L23a pseudogene 20 O - 20121230 -9606 645965 LOC645965 RP11-216N14.7 - - 1 1q21.3 adipose differentiation-related protein pseudogene pseudo - - - - 20121230 -9606 645967 LOC645967 - - - 6 6q25.1 uncharacterized LOC645967 unknown - - - - 20120511 -9606 645968 RPS3AP25 tcag7.1261 RPS3A_9_820 HGNC:36801 7 7q21.3 ribosomal protein S3a pseudogene 25 pseudo RPS3AP25 ribosomal protein S3a pseudogene 25 O - 20121230 -9606 645969 LOC645969 - - - 9 9p24.1 selenoprotein T pseudogene pseudo - - - - 20121230 -9606 645973 ATP5F1P2 - - HGNC:39743 7 7q21.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 2 pseudo ATP5F1P2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 2 O - 20121230 -9606 645974 PABPC1L2B RP11-493K23.2 RBM32B HGNC:31852|Ensembl:ENSG00000184388|Vega:OTTHUMG00000021823 X Xq13.2 poly(A) binding protein, cytoplasmic 1-like 2B protein-coding PABPC1L2B poly(A) binding protein, cytoplasmic 1-like 2B O RNA binding motif protein 32B|RNA-binding motif protein 32|RNA-binding protein 32|polyadenylate-binding protein 1-like 2 20121230 -9606 645978 LOC645978 - - - 2 2q33.3 alkaline ceramidase 2 pseudogene pseudo - - - - 20121230 -9606 645979 RPS26P31 - RPS26_8_840 HGNC:36614 7 7q31.32 ribosomal protein S26 pseudogene 31 pseudo RPS26P31 ribosomal protein S26 pseudogene 31 O - 20121230 -9606 645980 CFL1P4 - CFLL4|CFLP4 HGNC:1880 1 1q43 cofilin 1 (non-muscle) pseudogene 4 pseudo CFL1P4 cofilin 1 (non-muscle) pseudogene 4 O - 20121230 -9606 645984 LOC645984 - - - 10 10p11.23 uncharacterized LOC645984 protein-coding - - - - 20120511 -9606 645993 RPL31P57 hCG_1793136 RPL31_21_1570 HGNC:35703 17 17q23.3 ribosomal protein L31 pseudogene 57 pseudo RPL31P57 ribosomal protein L31 pseudogene 57 O - 20121230 -9606 645996 NAP1L6 - - HGNC:31706 X Xq13.2 nucleosome assembly protein 1-like 6 pseudo NAP1L6 nucleosome assembly protein 1-like 6 O - 20121230 -9606 645998 RPL10AP5 RP11-513D4.2 RPL10A_2_189 HGNC:36770 1 1q43 ribosomal protein L10a pseudogene 5 pseudo RPL10AP5 ribosomal protein L10a pseudogene 5 O - 20121230 -9606 646000 SLC35G4 - AMAC1L1 HGNC:31043 18 18p11.21 solute carrier family 35, member G4 protein-coding SLC35G4 solute carrier family 35, member G4 O acyl-malonyl condensing enzyme 1-like 1|acyl-malonyl-condensing enzyme 1-like protein 1|protein AMAC1L1|solute carrier family 35 member G4 20121230 -9606 646012 LOC646012 - - - 5 5p15.1 aurora kinase A interacting protein 1 pseudogene pseudo - - - - 20121230 -9606 646013 RPS17P3 - RPS17B|RPS17L2|RPS17_7_1537 HGNC:10399 17 17q11.2 ribosomal protein S17 pseudogene 3 pseudo RPS17P3 ribosomal protein S17 pseudogene 3 O - 20121230 -9606 646014 LOC646014 - - - 17 17q24.1 uncharacterized LOC646014 protein-coding - - - - 20121018 -9606 646016 YWHAZP8 - - HGNC:39029 X Xq13.2 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 8 pseudo YWHAZP8 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 8 O - 20121230 -9606 646019 CBY3 - - HGNC:33278|Ensembl:ENSG00000204659|Vega:OTTHUMG00000163163 5 5q35.3 chibby homolog 3 (Drosophila) protein-coding CBY3 chibby homolog 3 (Drosophila) O protein chibby homolog 3 20121230 -9606 646021 LOC646021 - - - 17 17q11.2 uncharacterized LOC646021 protein-coding - - - - 20121209 -9606 646023 ADORA2A-AS1 - C22orf45 HGNC:37122 22 22q11.23 ADORA2A antisense RNA 1 miscRNA ADORA2A-AS1 ADORA2A antisense RNA 1 O - 20121230 -9606 646024 RAET1K - - HGNC:16797 6 6q25.1 retinoic acid early transcript 1K pseudogene pseudo RAET1K retinoic acid early transcript 1K pseudogene O - 20121230 -9606 646029 FLJ38894 - - - 11 11q14.1 uncharacterized LOC646029 other - - - - 20120710 -9606 646030 LOC646030 - - - 17 17q11.2 leucine-rich repeat-containing protein 37A2-like pseudo - - - - 20121230 -9606 646034 LOC646034 - - - 10 10p11.22 uncharacterized LOC646034 unknown - - - - 20120511 -9606 646044 LOC646044 - - - 18 18p11.21 single stranded DNA binding protein 4 pseudogene pseudo - - - - 20121230 -9606 646049 HMGN2P20 - - HGNC:39385 2 2p23.3 high mobility group nucleosomal binding domain 2 pseudogene 20 pseudo HMGN2P20 high mobility group nucleosomal binding domain 2 pseudogene 20 O - 20121230 -9606 646050 LOC646050 - - - 2 2p25.1 axin interactor, dorsalization associated pseudogene pseudo - - - - 20121230 -9606 646052 SLC20A1P3 - - HGNC:42538 15 15q11.1 solute carrier family 20 (phosphate transporter), member 1 pseudogene 3 pseudo SLC20A1P3 solute carrier family 20 (phosphate transporter), member 1 pseudogene 3 O - 20121230 -9606 646057 LOC646057 - - - 15 15q11.1 Ig heavy chain V region 5A-like other - - - - 20121209 -9606 646058 LOC646058 - - - 5 5q35.3 chromosome 4 open reading frame 27 pseudogene pseudo - - - - 20121230 -9606 646065 PMM2P2 - - HGNC:21753 18 18p11.21 phosphomannomutase 2 pseudogene 2 pseudo PMM2P2 phosphomannomutase 2 pseudogene 2 O - 20121230 -9606 646066 LOC646066 - - - 5 5p15.1 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa pseudogene pseudo - - - - 20121230 -9606 646070 LOC646070 - - - 6 6p25.3 capicua homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 646071 LOC646071 - - - 15 15q11.1 disintegrin and metalloproteinase domain-containing protein 21-like pseudo - - - - 20121230 -9606 646074 POM121L10P - - HGNC:35448 22 22q11.23 POM121 transmembrane nucleoporin-like 10, pseudogene pseudo POM121L10P POM121 transmembrane nucleoporin-like 10, pseudogene O - 20121230 -9606 646077 RPL29P23 - RPL29_11_1134 HGNC:35946 11 11p13 ribosomal protein L29 pseudogene 23 pseudo RPL29P23 ribosomal protein L29 pseudogene 23 O - 20121230 -9606 646080 RAB11FIP1P1 RP3-368A4.3 - HGNC:42366 X Xq13.2 RAB11 family interacting protein 1 (class I) pseudogene 1 pseudo RAB11FIP1P1 RAB11 family interacting protein 1 (class I) pseudogene 1 O - 20121230 -9606 646083 PA2G4P6 - PA2G4L3 HGNC:32219 9 9q22.2 proliferation-associated 2G4 pseudogene 6 pseudo PA2G4P6 proliferation-associated 2G4 pseudogene 6 O - 20121230 -9606 646085 PSMC1P7 - - HGNC:39782 3 3q26.1 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 7 pseudo PSMC1P7 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 7 O - 20121230 -9606 646086 WDR45LP1 - - HGNC:26605 17 17q11.2 WDR45-like pseudogene 1 pseudo WDR45LP1 WDR45-like pseudogene 1 O - 20121230 -9606 646087 LOC646087 - - - 9 9p23 IMP3, U3 small nucleolar ribonucleoprotein, homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 646090 RHPN2P1 - - HGNC:37708 15 15q11.1 rhophilin, Rho GTPase binding protein 2 pseudogene 1 pseudo RHPN2P1 rhophilin, Rho GTPase binding protein 2 pseudogene 1 O - 20121230 -9606 646093 RPS8P7 - RPS8_3_645 HGNC:35795 5 5q35.3 ribosomal protein S8 pseudogene 7 pseudo RPS8P7 ribosomal protein S8 pseudogene 7 O - 20121230 -9606 646096 CHEK2P2 - - HGNC:43578 15 15q11.1 checkpoint kinase 2 pseudogene 2 pseudo CHEK2P2 checkpoint kinase 2 pseudogene 2 O - 20121230 -9606 646103 LOC646103 - - - 5 5p15.1 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa pseudogene pseudo - - - - 20121230 -9606 646104 RPL32P16 RP1-292B18.1 RPL32_7_768 HGNC:36086 6 6q25.1 ribosomal protein L32 pseudogene 16 pseudo RPL32P16 ribosomal protein L32 pseudogene 16 O - 20121230 -9606 646108 RPS7P14 - RPS7_5_1787 HGNC:36602 X Xq13.2 ribosomal protein S7 pseudogene 14 pseudo RPS7P14 ribosomal protein S7 pseudogene 14 O - 20121230 -9606 646112 LOC646112 - - - 11 11q14.1 origin recognition complex, subunit 3-like (yeast) pseudogene pseudo - - - - 20121230 -9606 646113 LINC00643 - - HGNC:44296 14 14q23.2 long intergenic non-protein coding RNA 643 miscRNA LINC00643 long intergenic non-protein coding RNA 643 O - 20121230 -9606 646114 LOC646114 - - - 9 9p23 A kinase (PRKA) anchor protein 8 pseudogene pseudo - - - - 20121230 -9606 646119 RPS8P4 - RPS8_2_1103 HGNC:17478 10 10q26.11 ribosomal protein S8 pseudogene 4 pseudo RPS8P4 ribosomal protein S8 pseudogene 4 O - 20121230 -9606 646120 LOC646120 - - - 11 11p13 Spi-C transcription factor (Spi-1/PU.1 related) pseudogene pseudo - - - - 20121230 -9606 646127 LOC646127 - - - X Xq13.3 telomeric repeat-binding factor 1-like pseudo - - - - 20121209 -9606 646140 LOC646140 - - - 16 16p13.3 ribosomal protein L7-like 1 pseudogene pseudo - - - - 20121230 -9606 646161 RPL26P21 - RPL26_11_785 HGNC:35497 7 7p21.2 ribosomal protein L26 pseudogene 21 pseudo RPL26P21 ribosomal protein L26 pseudogene 21 O - 20121230 -9606 646164 DDX39AP1 RP11-274P12.2 - HGNC:39664 13 13q12.11 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39A pseudogene 1 pseudo DDX39AP1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39A pseudogene 1 O - 20121230 -9606 646168 LOC646168 - - - 3 3q26.1 uncharacterized LOC646168 pseudo - - - - 20121230 -9606 646171 EIF4A2P1 - - HGNC:37929 18 18p11.21 eukaryotic translation initiation factor 4A2 pseudogene 1 pseudo EIF4A2P1 eukaryotic translation initiation factor 4A2 pseudogene 1 O - 20121230 -9606 646174 C16orf90 - - HGNC:34455|Ensembl:ENSG00000215131|Vega:OTTHUMG00000154627 16 16p13.3 chromosome 16 open reading frame 90 protein-coding C16orf90 chromosome 16 open reading frame 90 O uncharacterized protein C16orf90 20121230 -9606 646175 RPL36AP48 - RPL36A_23_1571 HGNC:36721 17 17q24.2 ribosomal protein L36a pseudogene 48 pseudo RPL36AP48 ribosomal protein L36a pseudogene 48 O - 20121230 -9606 646177 SPATA31E2P - FAM75E2P HGNC:43827 15 15q11.2 SPATA31 subfamily E, member 2, pseudogene pseudo SPATA31E2P SPATA31 subfamily E, member 2, pseudogene O - 20121230 -9606 646179 LOC646179 hCG_2045614 - - 2 2q14.3 hCG2045614 unknown - - - - 20120318 -9606 646189 RPL18AP13 - RPL18A_8_1622 HGNC:36739 19 19p13.2 ribosomal protein L18a pseudogene 13 pseudo RPL18AP13 ribosomal protein L18a pseudogene 13 O - 20121230 -9606 646192 NOP56P1 XXbac-BCX419D21.1 NOL5B|NOL5BP|NOP56-L|dJ207F6.1 HGNC:13962 6 6p22.1 NOP56 ribonucleoprotein pseudogene 1 pseudo NOP56P1 NOP56 ribonucleoprotein pseudogene 1 O - 20121230 -9606 646193 LOC646193 hCG_1992287 - - X Xq13.3 C5orf44 pseudogene pseudo - - - - 20121230 -9606 646195 RPS28P7 - RPS28_3_1160 HGNC:35787 11 11q14.1 ribosomal protein S28 pseudogene 7 pseudo RPS28P7 ribosomal protein S28 pseudogene 7 O - 20121230 -9606 646196 SMARCE1P6 - - HGNC:39737 2 2p23.3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 6 pseudo SMARCE1P6 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 6 O - 20121230 -9606 646197 LOC646197 - - - 8 8q21.11 heat shock protein 90kDa alpha (cytosolic), class B member 1 pseudogene pseudo - - - - 20121230 -9606 646201 BASP1P1 - - HGNC:39418 13 13q12.12 brain abundant, membrane attached signal protein 1 pseudogene 1 pseudo BASP1P1 brain abundant, membrane attached signal protein 1 pseudogene 1 O - 20121230 -9606 646202 TLK2P1 - TLK2ps1 HGNC:18048 17 17q12 tousled-like kinase 2 pseudogene 1 pseudo TLK2P1 tousled-like kinase 2 pseudogene 1 O - 20121230 -9606 646203 LOC646203 - - - 18 18p11.21 mRNA turnover 4 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 646208 NUS1P2 - - HGNC:38473 13 13q12.12 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) pseudogene 2 pseudo NUS1P2 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 646213 SS18L2P1 - - HGNC:44965 10 10p11.21 synovial sarcoma translocation gene on chromosome 18-like 2 pseudogene 1 pseudo SS18L2P1 synovial sarcoma translocation gene on chromosome 18-like 2 pseudogene 1 O - 20121230 -9606 646214 LOC646214 - - - 15 15q11.2 p21 protein (Cdc42/Rac)-activated kinase 2 pseudogene pseudo - - - - 20121230 -9606 646216 LOC646216 - - - 22 22q12.1 ribosomal protein S3A pseudogene pseudo - - - - 20121230 -9606 646218 PRDX2P2 - - HGNC:44967 10 10p11.21 peroxiredoxin 2 pseudogene 2 pseudo PRDX2P2 peroxiredoxin 2 pseudogene 2 O - 20121230 -9606 646227 LOC646227 hCG_18385 - - 5 5q35.3 cAMP-regulated phosphoprotein 19 pseudogene pseudo - - - - 20121230 -9606 646231 AGPAT5P1 - - HGNC:37709 Y Yp11.2 1-acylglycerol-3-phosphate O-acyltransferase 5 pseudogene 1 pseudo AGPAT5P1 1-acylglycerol-3-phosphate O-acyltransferase 5 pseudogene 1 O - 20121230 -9606 646233 RPS27P10 - RPS27_2_322 HGNC:35961 2 2q34 ribosomal protein S27 pseudogene 10 pseudo RPS27P10 ribosomal protein S27 pseudogene 10 O - 20121230 -9606 646241 LOC646241 - - - 5 5p15.1 uncharacterized LOC646241 unknown - - - - 20120511 -9606 646243 CXADRP2 - - HGNC:33973 15 15q11.2 coxsackie virus and adenovirus receptor pseudogene 2 pseudo CXADRP2 coxsackie virus and adenovirus receptor pseudogene 2 O - 20121230 -9606 646249 PCED1CP hCG_1645016 - HGNC:44083 2 2q34 PC-esterase domain containing 1C, pseudogene pseudo PCED1CP PC-esterase domain containing 1C, pseudogene O - 20121230 -9606 646255 RPL19P16 - RPL19_5_1105 HGNC:36596 10 10q26.12 ribosomal protein L19 pseudogene 16 pseudo RPL19P16 ribosomal protein L19 pseudogene 16 O - 20121230 -9606 646260 SAR1AP1 RP1-88J8.2 SAR1P1|SARAP|SARAP1|dJ88J8.3|hsSARA-p HGNC:13983 6 6p22.1 SAR1 homolog A (S. cerevisiae) pseudogene 1 pseudo SAR1AP1 SAR1 homolog A (S. cerevisiae) pseudogene 1 O - 20121230 -9606 646262 LACTBL1 - - HGNC:35445|Ensembl:ENSG00000215906|Vega:OTTHUMG00000003228 1 1p36.12 lactamase, beta-like 1 protein-coding LACTBL1 lactamase, beta-like 1 O Putative beta-lactamase-like protein ENSP00000383859|putative beta-lactamase-like 1 20121230 -9606 646268 LOC646268 hCG_1654703 - - 1 1q23.1 hCG1654703 miscRNA - - - - 20121230 -9606 646269 RPS4XP8 - RPS4P8|RPS4X_5_772 HGNC:36683 6 6q25.2 ribosomal protein S4X pseudogene 8 pseudo RPS4XP8 ribosomal protein S4X pseudogene 8 O - 20121230 -9606 646270 ELL2P1 - - HGNC:39343 1 1q23.1 elongation factor, RNA polymerase II, 2 pseudogene 1 pseudo ELL2P1 elongation factor, RNA polymerase II, 2 pseudogene 1 O - 20121230 -9606 646273 HSPD1P15 - HSPD1-15P HGNC:35130 5 5p14.3 heat shock 60kDa protein 1 (chaperonin) pseudogene 15 pseudo HSPD1P15 heat shock 60kDa protein 1 (chaperonin) pseudogene 15 O - 20121230 -9606 646274 LOC646274 - - - 6 6q25.2 stathmin-like 2 pseudogene pseudo - - - - 20121230 -9606 646278 LOC646278 - - - 15 15q13.1 programmed cell death 6 interacting protein pseudogene pseudo - - - - 20121230 -9606 646282 AZGP1P1 - - HGNC:911 7 7q22.1 alpha-2-glycoprotein 1, zinc-binding pseudogene 1 pseudo AZGP1P1 alpha-2-glycoprotein 1, zinc-binding pseudogene 1 O - 20121230 -9606 646294 RPS2P29 - RPS2_9_695 HGNC:36011 6 6p21.1 ribosomal protein S2 pseudogene 29 pseudo RPS2P29 ribosomal protein S2 pseudogene 29 O - 20121230 -9606 646300 COL6A4P2 - COL6A4 HGNC:38501 3 3q22.1 collagen, type VI, alpha 4 pseudogene 2 pseudo COL6A4P2 collagen, type VI, alpha 4 pseudogene 2 O - 20121230 -9606 646309 NAMPTL RP11-92J19.4 PBEF2|bA92J19.4 HGNC:17633 10 10p11.21 nicotinamide phosphoribosyltransferase-like pseudo NAMPTL nicotinamide phosphoribosyltransferase-like O - 20121230 -9606 646316 TERF1P3 - - HGNC:38499 4 4q28.3 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene 3 pseudo TERF1P3 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene 3 O - 20121230 -9606 646324 LINC00607 - - HGNC:43944 2 2q35 long intergenic non-protein coding RNA 607 miscRNA LINC00607 long intergenic non-protein coding RNA 607 O - 20121230 -9606 646329 LOC646329 hCG_2038586 - - 7 7q32.3 uncharacterized LOC646329 miscRNA - - - - 20121230 -9606 646330 LOC646330 - - - 1 1p36.11 BTB (POZ) domain containing 6 pseudogene pseudo - - - - 20121230 -9606 646346 RPL7P58 - - - X Xp21.3 ribosomal protein L7 pseudogene pseudo - - - - 20121230 -9606 646347 LOC646347 - - - 1 1q23.3 spermine synthase pseudogene pseudo - - - - 20121230 -9606 646348 ARL6IP1P2 - - HGNC:44971 10 10p11.21 ADP-ribosylation factor-like 6 interacting protein 1 pseudogene 2 pseudo ARL6IP1P2 ADP-ribosylation factor-like 6 interacting protein 1 pseudogene 2 O - 20121230 -9606 646358 LOC646358 - - - 15 15q22.31 DnaJ (Hsp40) homolog, subfamily B, member 14 pseudogene pseudo - - - - 20121230 -9606 646359 TERF1P2 - - HGNC:38110 18 18p11.21 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene 2 pseudo TERF1P2 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene 2 O - 20121230 -9606 646360 TMEM161BP1 hCG_25653 - HGNC:44973 10 10p11.21 transmembrane protein 161B pseudogene 1 pseudo TMEM161BP1 transmembrane protein 161B pseudogene 1 O - 20121230 -9606 646362 FTH1P13 - FTHL13|FTHP3 HGNC:3983 14 14q23.3 ferritin, heavy polypeptide 1 pseudogene 13 pseudo FTH1P13 ferritin, heavy polypeptide 1 pseudogene 13 O - 20121230 -9606 646366 MAS1LP1 XXbac-BPG13B8.9 MAS1LP HGNC:33448|Vega:OTTHUMG00000086553 6 6p22.1 MAS1 oncogene-like pseudogene 1 pseudo MAS1LP1 MAS1 oncogene-like pseudogene 1 O - 20121230 -9606 646370 IGHV1OR15-3 - IGHV1OR153 HGNC:5565|IMGT/GENE-DB:IGHV1/OR15-3 15 15q11.2 immunoglobulin heavy variable 1/OR15-3 (pseudogene) pseudo IGHV1OR15-3 immunoglobulin heavy variable 1/OR15-3 (pseudogene) O - 20121230 -9606 646377 LOC646377 - - - 1 1q23.1 pyrin and HIN domain family, member 1 pseudogene pseudo - - - - 20121230 -9606 646378 DDX18P5 - - HGNC:33968 11 11q24.3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 5 pseudo DDX18P5 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 5 O - 20121230 -9606 646379 IGHV1OR15-4 - IGHV1OR154 HGNC:5566|IMGT/GENE-DB:IGHV1/OR15-4 15 15q11.2 immunoglobulin heavy variable 1/OR15-4 (pseudogene) pseudo IGHV1OR15-4 immunoglobulin heavy variable 1/OR15-4 (pseudogene) O - 20121102 -9606 646382 DPPA5P1 - - HGNC:43752 19 19q13.41 developmental pluripotency associated 5 pseudogene 1 pseudo DPPA5P1 developmental pluripotency associated 5 pseudogene 1 O - 20121230 -9606 646383 FLJ34521 - - - 11 11q24.3 uncharacterized LOC646383 unknown - - - - 20120622 -9606 646388 LOC646388 - - - 11 11p12 zinc finger, CCHC domain containing 9 pseudogene pseudo - - - - 20121230 -9606 646390 IRX1P1 RP11-534K14.1 - HGNC:33315 13 13q12.12 iroquois homeobox 1 pseudogene 1 pseudo IRX1P1 iroquois homeobox 1 pseudogene 1 O - 20121230 -9606 646392 LOC646392 - - - 3 3q22.1 nuclear import 7 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 646396 REREP3 - - HGNC:38797 15 15q11.2 arginine-glutamic acid dipeptide (RE) repeats pseudogene 3 pseudo REREP3 arginine-glutamic acid dipeptide (RE) repeats pseudogene 3 O - 20121230 -9606 646405 TPTE2P1 RP11-756A22.3 - HGNC:35196 13 13q12.13 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 1 pseudo TPTE2P1 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 1 O - 20121230 -9606 646408 LOC646408 - - - 22 22q12.1 chromosome 9 open reading frame 16 pseudogene pseudo - - - - 20121230 -9606 646409 DGAT2L7P - DGAT2L7 HGNC:44367|Ensembl:ENSG00000205267 7 7q22.1 diacylglycerol O-acyltransferase 2-like 7, pseudogene protein-coding DGAT2L7P diacylglycerol O-acyltransferase 2-like 7, pseudogene O diacylglycerol O-acyltransferase 2 like protein 7|diacylglycerol O-acyltransferase 2-like 7 pseudogene|putative diacylglycerol O-acyltransferase 2-like protein 7|putative diacylglycerol O-acyltransferase 2-like protein DGAT2L7P 20121230 -9606 646417 RPL29P5 - RPL29_2_63 HGNC:36786 1 1p31.1 ribosomal protein L29 pseudogene 5 pseudo RPL29P5 ribosomal protein L29 pseudogene 5 O - 20121230 -9606 646424 SPINK8 - - HGNC:33160|Ensembl:ENSG00000229453|Vega:OTTHUMG00000156832 3 3p21.31 serine peptidase inhibitor, Kazal type 8 (putative) protein-coding SPINK8 serine peptidase inhibitor, Kazal type 8 (putative) O serine protease inhibitor Kazal-type 8 20121230 -9606 646430 LOC646430 - - - 1 1q23.2 amyloid P component, serum pseudogene pseudo - - - - 20121230 -9606 646433 RPL32P19 hCG_1794003 RPL32_10_878 HGNC:36743 8 8p22 ribosomal protein L32 pseudogene 19 pseudo RPL32P19 ribosomal protein L32 pseudogene 19 O - 20121230 -9606 646440 CCT3P1 - CCT3-1P HGNC:35129 8 8p22 chaperonin containing TCP1, subunit 3 (gamma) pseudogene 1 pseudo CCT3P1 chaperonin containing TCP1, subunit 3 (gamma) pseudogene 1 O - 20121230 -9606 646442 SNX19P3 - - HGNC:38116 18 18p11.21 sorting nexin 19 pseudogene 3 pseudo SNX19P3 sorting nexin 19 pseudogene 3 O - 20121230 -9606 646446 RPL27P2 - RPL27_1_105 HGNC:36948 1 1q23.2 ribosomal protein L27 pseudogene 2 pseudo RPL27P2 ribosomal protein L27 pseudogene 2 O - 20121230 -9606 646450 ARIH2OS - C3orf71 HGNC:34425|Ensembl:ENSG00000221883|Vega:OTTHUMG00000156672 3 3p21.31 ariadne homolog 2 opposite strand protein-coding ARIH2OS ariadne homolog 2 opposite strand O uncharacterized protein C3orf71 20121230 -9606 646457 C19orf67 - - HGNC:34354|Ensembl:ENSG00000188032|Vega:OTTHUMG00000169303 19 19p13.12 chromosome 19 open reading frame 67 protein-coding C19orf67 chromosome 19 open reading frame 67 O UPF0575 protein C19orf67|UPF0575 protein C19orf67-like 20121230 -9606 646463 UBE2HP1 - UBE2HP HGNC:31079 8 8q21.13 ubiquitin-conjugating enzyme E2H pseudogene 1 pseudo UBE2HP1 ubiquitin-conjugating enzyme E2H pseudogene 1 O - 20121230 -9606 646467 CNN2P1 - - HGNC:39526 22 22q12.2 calponin 2 pseudogene 1 pseudo CNN2P1 calponin 2 pseudogene 1 O - 20121230 -9606 646471 LOC646471 - - - 1 1p36.11 uncharacterized LOC646471 miscRNA - - - - 20121230 -9606 646476 RPL7AP39 - RPL7A_12_828 HGNC:35881 7 7q22.1 ribosomal protein L7a pseudogene 39 pseudo RPL7AP39 ribosomal protein L7a pseudogene 39 O - 20121230 -9606 646479 ADAM24P - ADAM24 HGNC:203 8 8p22 ADAM metallopeptidase domain 24, pseudogene pseudo ADAM24P ADAM metallopeptidase domain 24, pseudogene O - 20121230 -9606 646480 FABP9 - PERF|PERF15|T-FABP HGNC:3563|Ensembl:ENSG00000205186|Vega:OTTHUMG00000164601 8 8q21.13 fatty acid binding protein 9, testis protein-coding FABP9 fatty acid binding protein 9, testis O TLBP|fatty acid-binding protein 9|lipid-binding protein|testis lipid binding protein|testis lipid-binding protein|testis-type fatty acid-binding protein 20121230 -9606 646482 LOC646482 - - - 13 13q12.13 uncharacterized LOC646482 unknown - - - - 20120511 -9606 646483 RPL6P19 - RPL6_14_853 HGNC:36754 7 7q33 ribosomal protein L6 pseudogene 19 pseudo RPL6P19 ribosomal protein L6 pseudogene 19 O - 20121230 -9606 646484 LOC646484 - - - 4 4q31.1 uncharacterized LOC646484 unknown - - - - 20120511 -9606 646486 FABP12 - - HGNC:34524|Ensembl:ENSG00000197416|Vega:OTTHUMG00000164679 8 8q21.13 fatty acid binding protein 12 protein-coding FABP12 fatty acid binding protein 12 O Probable fatty acid-binding protein ENSP00000353650|fatty acid binding protein ORF|fatty acid-binding protein 12|intracellular fatty acid-binding protein FABP12 20121230 -9606 646489 RPL21P70 - RPL21_4_205 HGNC:37024 2 2p23.1 ribosomal protein L21 pseudogene 70 pseudo RPL21P70 ribosomal protein L21 pseudogene 70 O - 20121230 -9606 646498 LOC646498 - - Ensembl:ENSG00000236980|Vega:OTTHUMG00000156816 3 3p21.31 uncharacterized LOC646498 protein-coding - - - uncharacterized protein LOC646498 20121230 -9606 646505 LOC646505 - - - 9 9p22.1 CDC-like kinase 3 pseudogene pseudo - - - - 20121230 -9606 646506 LOC646506 - - - X Xp21.1 lysosomal-associated membrane protein 1 pseudogene pseudo - - - - 20121230 -9606 646507 SPATA31E3P - FAM75E3P HGNC:43828 15 15q11.2 SPATA31 subfamily E, member 3, pseudogene pseudo SPATA31E3P SPATA31 subfamily E, member 3, pseudogene O - 20121230 -9606 646508 FAM90A27P - - HGNC:43617 19 19q13.42 family with sequence similarity 90, member A27, pseudogene pseudo FAM90A27P family with sequence similarity 90, member A27, pseudogene O - 20121230 -9606 646513 LOC646513 UNQ1945 - - 22 22q12.2 VLGN1945 unknown - - - - 20121230 -9606 646517 LOC646517 - - - 6 6p12.3 Wilms tumor 1 associated protein pseudogene pseudo - - - - 20121230 -9606 646520 SUCLA2P1 - Em:AB014080.4|SUCLA2P HGNC:21632 6 6p21.33 succinate-CoA ligase, ADP-forming, beta subunit pseudogene 1 pseudo SUCLA2P1 succinate-CoA ligase, ADP-forming, beta subunit pseudogene 1 O - 20121230 -9606 646522 LOC646522 - - - 11 11q25 uncharacterized LOC646522 unknown - - - - 20120511 -9606 646526 HMGB1P18 - - HGNC:39100 1 1p31.1 high mobility group box 1 pseudogene 18 pseudo HMGB1P18 high mobility group box 1 pseudogene 18 O - 20121230 -9606 646527 RPS3AP44 - RPS3A_18_1305 HGNC:36761 13 13q12.13 ribosomal protein S3a pseudogene 44 pseudo RPS3AP44 ribosomal protein S3a pseudogene 44 O - 20121230 -9606 646531 YBX1P2 - - HGNC:22635 7 7q22.3 Y box binding protein 1 pseudogene 2 pseudo YBX1P2 Y box binding protein 1 pseudogene 2 O - 20121230 -9606 646532 RPL19P5 - RPL19_2_325 HGNC:36325 2 2q35 ribosomal protein L19 pseudogene 5 pseudo RPL19P5 ribosomal protein L19 pseudogene 5 O - 20121230 -9606 646535 LOC646535 - - - 11 11p11.2 uncharacterized LOC646535 pseudo - - - - 20121209 -9606 646538 RPL7P10 - RPL7_2_66 HGNC:36599 1 1p31.1 ribosomal protein L7 pseudogene 10 pseudo RPL7P10 ribosomal protein L7 pseudogene 10 O - 20121230 -9606 646543 LOC646543 - - Ensembl:ENSG00000254918|Vega:OTTHUMG00000167123 11 11q25 uncharacterized LOC646543 protein-coding - - - - 20121209 -9606 646548 LOC646548 - - - 14 14q24.2 ADAM metallopeptidase domain 20 pseudogene pseudo - - - - 20121230 -9606 646555 LOC646555 - - - 1 1p31.1 AT rich interactive domain 3B pseudogene pseudo - - - - 20121230 -9606 646557 OSTCP3 - - HGNC:42865 19 19q13.42 oligosaccharyltransferase complex subunit pseudogene 3 pseudo OSTCP3 oligosaccharyltransferase complex subunit pseudogene 3 O - 20121230 -9606 646566 RPLP1P12 - RPLP1_6_1670 HGNC:36858 19 19q13.42 ribosomal protein, large, P1 pseudogene 12 pseudo RPLP1P12 ribosomal protein, large, P1 pseudogene 12 O - 20121230 -9606 646567 OSTCP2 - - HGNC:42864 1 1p36.11 oligosaccharyltransferase complex subunit pseudogene 2 protein-coding OSTCP2 oligosaccharyltransferase complex subunit pseudogene 2 O oligosaccharyltransferase complex subunit OSTC-like 20121209 -9606 646572 CHCHD3P3 - - HGNC:44699 1 1p36.11 coiled-coil-helix-coiled-coil-helix domain containing 3 pseudogene 3 pseudo CHCHD3P3 coiled-coil-helix-coiled-coil-helix domain containing 3 pseudogene 3 O - 20121230 -9606 646575 CYP4F10P - - HGNC:39943 19 19p13.12 cytochrome P450, family 4, subfamily F, polypeptide 10, pseudogene pseudo CYP4F10P cytochrome P450, family 4, subfamily F, polypeptide 10, pseudogene O - 20121230 -9606 646576 HHIP-AS1 - - HGNC:44182 4 4q31.21 HHIP antisense RNA 1 miscRNA HHIP-AS1 HHIP antisense RNA 1 O - 20121230 -9606 646577 HMGB1P16 - - HGNC:39098 X Xp21.1 high mobility group box 1 pseudogene 16 pseudo HMGB1P16 high mobility group box 1 pseudogene 16 O - 20121230 -9606 646581 IFNWP2 RP11-354P17.12-001 - HGNC:5452 9 9p21.3 interferon, omega 1 pseudogene 2 pseudo IFNWP2 interferon, omega 1 pseudogene 2 O - 20121230 -9606 646583 RPS4XP18 - RPS4P18|RPS4X_10_1587 HGNC:36170 18 18q11.2 ribosomal protein S4X pseudogene 18 pseudo RPS4XP18 ribosomal protein S4X pseudogene 18 O - 20121230 -9606 646588 LOC646588 - - - 7 7p15.2 uncharacterized LOC646588 protein-coding - - - - 20120511 -9606 646592 ZNF652P1 - ZNF652P HGNC:35166 3 3p21.31 zinc finger protein 652 pseudogene 1 pseudo ZNF652P1 zinc finger protein 652 pseudogene 1 O - 20121230 -9606 646595 UBE2CP2 - - HGNC:43551 18 18q11.2 ubiquitin-conjugating enzyme E2C pseudogene 2 pseudo UBE2CP2 ubiquitin-conjugating enzyme E2C pseudogene 2 O - 20121230 -9606 646597 CHMP1AP1 - - HGNC:39514 1 1p35.3 charged multivesicular body protein 1A pseudogene 1 pseudo CHMP1AP1 charged multivesicular body protein 1A pseudogene 1 O - 20121230 -9606 646600 C3orf65 - - HGNC:32674 3 3q27.2 chromosome 3 open reading frame 65 miscRNA C3orf65 chromosome 3 open reading frame 65 O - 20121230 -9606 646603 C4orf51 - - HGNC:37264|Ensembl:ENSG00000237136|Vega:OTTHUMG00000161367 4 4q31.21 chromosome 4 open reading frame 51 protein-coding C4orf51 chromosome 4 open reading frame 51 O uncharacterized protein C4orf51 20121230 -9606 646609 LOC646609 - - - 9 9p21.3 chloride intracellular channel 4 pseudogene pseudo - - - - 20121230 -9606 646612 EEF1A1P25 - - HGNC:37898 3 3q22.3 eukaryotic translation elongation factor 1 alpha 1 pseudogene 25 pseudo EEF1A1P25 eukaryotic translation elongation factor 1 alpha 1 pseudogene 25 O - 20121230 -9606 646614 LOC646614 - - - 7 7q31.1 budding uninhibited by benzimidazoles 3 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 646616 LOC646616 - - - 5 5p13.3 transmembrane protein 183A pseudogene pseudo - - - - 20121230 -9606 646619 ATP5G1P3 - - HGNC:39506 3 3q22.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 3 pseudo ATP5G1P3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 3 O - 20121230 -9606 646620 RPL3P8 - RPL3_4_835 HGNC:35498 7 7q31.1 ribosomal protein L3 pseudogene 8 pseudo RPL3P8 ribosomal protein L3 pseudogene 8 O - 20121230 -9606 646624 RPL27P4 - RPL27_1_28 HGNC:35503 1 1p35.3 ribosomal protein L27 pseudogene 4 pseudo RPL27P4 ribosomal protein L27 pseudogene 4 O - 20121230 -9606 646625 PRHOXNB - URAD HGNC:17785|Ensembl:ENSG00000183463 13 13q12.2 parahox cluster neighbor protein-coding PRHOXNB parahox cluster neighbor O OHCU decarboxylase|parahox neighbor|putative 2-oxo-4-hydroxy-4-carboxy-5-ureidoimidazoline decarboxylase 20121230 -9606 646626 LOC646626 - - - 1 1p22.3 uncharacterized LOC646626 miscRNA - - - - 20121230 -9606 646627 LYPD8 UNQ511/PRO1026 - HGNC:44208|Ensembl:ENSG00000266949|Vega:OTTHUMG00000180686 1 1q44 LY6/PLAUR domain containing 8 protein-coding LYPD8 LY6/PLAUR domain containing 8 O ly6/PLAUR domain-containing protein 8|phospholipase inhibitor 20121230 -9606 646629 LOC646629 - - - 18 18q11.2 zinc finger protein 470 pseudogene pseudo - - - - 20121230 -9606 646630 CHCHD2P8 hCG_1790806 - HGNC:39592 13 13q12.2 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 8 pseudo CHCHD2P8 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 8 O - 20121230 -9606 646639 LOC646639 - - - 5 5p13.3 translocase of outer mitochondrial membrane 40 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 646640 TTC39DP - - HGNC:35451 2 2p22.1 tetratricopeptide repeat domain 39D, pseudogene pseudo TTC39DP tetratricopeptide repeat domain 39D, pseudogene O - 20121230 -9606 646641 RPL7L1P7 - - HGNC:39489 3 3q23 ribosomal protein L7-like 1 pseudogene 7 pseudo RPL7L1P7 ribosomal protein L7-like 1 pseudogene 7 O - 20121230 -9606 646643 SBK2 - SGK069 HGNC:34416|Ensembl:ENSG00000187550|Vega:OTTHUMG00000155830 19 19q13.42 SH3-binding domain kinase family, member 2 protein-coding SBK2 SH3-binding domain kinase family, member 2 O Sugen kinase 69|serine/threonine-protein kinase SBK2 20121230 -9606 646644 LOC646644 - - - 2 2q36.1 LLP homolog, long-term synaptic facilitation (Aplysia) pseudogene pseudo - - - - 20121230 -9606 646652 LOC646652 - - - 5 5p13.3 integral membrane glycoprotein-like unknown - - - - 20121230 -9606 646658 SYNDIG1L - CAPUCIN|DSPC1|IFITMD4|TMEM90A HGNC:32388|MIM:609999|Ensembl:ENSG00000183379|Vega:OTTHUMG00000171210 14 14q24.3 synapse differentiation inducing 1-like protein-coding SYNDIG1L synapse differentiation inducing 1-like O caudate- and putamen-enriched sequence|caudate-and putamen-enriched sequence|dispanin subfamily C member 1|interferon induced transmembrane protein domain containing 4|synapse differentiation-inducing gene protein 1-like|transmembrane protein 90A 20121230 -9606 646660 RPS20P26 - RPS20_11_1143 HGNC:36980 11 11p11.2 ribosomal protein S20 pseudogene 26 pseudo RPS20P26 ribosomal protein S20 pseudogene 26 O - 20121230 -9606 646663 LOC646663 - - - 19 19q13.42 ret finger protein-like 1 pseudogene pseudo - - - - 20121230 -9606 646665 LOC646665 - - - 15 15q24.1 golgin A6 family, member A pseudogene pseudo - - - - 20121230 -9606 646666 LOC646666 - - - 19 19p13.11 apolipoprotein A-I binding protein pseudogene pseudo - - - - 20121230 -9606 646670 LOC646670 - - - 15 15q24.1 uncharacterized LOC646670 protein-coding - - - - 20121209 -9606 646672 RPL15P20 - RPL15_7_1476 HGNC:36130 16 16p13.11 ribosomal protein L15 pseudogene 20 pseudo RPL15P20 ribosomal protein L15 pseudogene 20 O - 20121230 -9606 646674 LOC646674 - - - 2 2q21.1 single stranded DNA binding protein 4 pseudogene pseudo - - - - 20121230 -9606 646685 RPL23AP41 - RPL23A_18_409 HGNC:35634 3 3q23 ribosomal protein L23a pseudogene 41 pseudo RPL23AP41 ribosomal protein L23a pseudogene 41 O - 20121230 -9606 646688 RPL4P2 - RPL4_1_115 HGNC:36836 1 1q24.1 ribosomal protein L4 pseudogene 2 pseudo RPL4P2 ribosomal protein L4 pseudogene 2 O - 20121230 -9606 646693 CNN2P10 - - HGNC:39535 1 1q24.1 calponin 2 pseudogene 10 pseudo CNN2P10 calponin 2 pseudogene 10 O - 20121230 -9606 646696 LOC646696 - - - 2 2q36.1 MLX, MAX dimerization protein pseudogene pseudo - - - - 20121230 -9606 646698 ZSCAN5D - ZNF495D HGNC:37706 19 19q13.43 zinc finger and SCAN domain containing 5D protein-coding ZSCAN5D zinc finger and SCAN domain containing 5D O Putative zinc finger and SCAN domain-containing protein 5D|putative zinc finger and SCAN domain-containing protein 5D 20121230 -9606 646700 LOC646700 - - - 9 9p21.1 UPF0607 protein ENSP00000381418-like pseudogene pseudo - - - - 20121230 -9606 646701 LOC646701 - - - 14 14q24.3 developmental pluripotency associated 5 pseudogene pseudo - - - - 20121230 -9606 646702 HLA-DPA2 - HLA-DP2A HGNC:4939 6 6p21.32 major histocompatibility complex, class II, DP alpha 2 (pseudogene) pseudo HLA-DPA2 major histocompatibility complex, class II, DP alpha 2 (pseudogene) O - 20121230 -9606 646708 LOC646708 - - - 8 8p21.3-p21.2 DnaJ (Hsp40) homolog, subfamily C, member 5 pseudogene pseudo - - - - 20121230 -9606 646709 LOC646709 - - - 19 19q13.43 NADH dehydrogenase (ubiquinone) complex I, assembly factor 1 pseudogene pseudo - - - - 20121230 -9606 646710 RPL19P4 - RPL19_1_276 HGNC:36539 2 2q21.1 ribosomal protein L19 pseudogene 4 pseudo RPL19P4 ribosomal protein L19 pseudogene 4 O - 20121230 -9606 646719 LOC646719 - - - 5 5p13.2 uncharacterized LOC646719 miscRNA - - - - 20121230 -9606 646721 FAM60DP - - HGNC:19896 8 8p21.2 family with sequence similarity 60, member A pseudogene pseudo FAM60DP family with sequence similarity 60, member D pseudogene O - 20121230 -9606 646723 KRT18P31 - - HGNC:33400 5 5p13.2 keratin 18 pseudogene 31 pseudo KRT18P31 keratin 18 pseudogene 31 O - 20121230 -9606 646730 LOC646730 - - - 3 3q23 uncharacterized LOC646730 protein-coding - - - - 20121216 -9606 646736 LOC646736 - - - 2 2q36.3 uncharacterized LOC646736 miscRNA - - - - 20121230 -9606 646737 RPS14P6 - RPS14_3_529 HGNC:36241 4 4q31.3 ribosomal protein S14 pseudogene 6 pseudo RPS14P6 ribosomal protein S14 pseudogene 6 O - 20121230 -9606 646743 LOC646743 - - - 2 2q21.1 uncharacterized LOC646743 pseudo - - - - 20121230 -9606 646745 LOC646745 - - - 7 7p14.3 general transcription factor IIIC, polypeptide 6, alpha 35kDa pseudogene pseudo - - - - 20121230 -9606 646748 FLJ42022 - - - 15 15q24.1 uncharacterized LOC646748 unknown - - - - 20120622 -9606 646753 RPS26P2 - RPS26_19_971|bA98O11.1 HGNC:23662 9 9p21.1 ribosomal protein S26 pseudogene 2 pseudo RPS26P2 ribosomal protein S26 pseudogene 2 O - 20121230 -9606 646754 TRIM64C - - HGNC:37148|Ensembl:ENSG00000214891|Vega:OTTHUMG00000166752 11 11p11.12 tripartite motif containing 64C protein-coding TRIM64C tripartite motif containing 64C O putative tripartite motif-containing protein 64C|tripartite motif-containing 64C 20121230 -9606 646755 MFAP1P1 RP11-550P23.4 - HGNC:39694 13 13q12.3 microfibrillar-associated protein 1 pseudogene 1 pseudo MFAP1P1 microfibrillar-associated protein 1 pseudogene 1 O - 20121230 -9606 646758 PTPN2P2 RP11-550P23.5 - HGNC:9654 13 13q12.3 protein tyrosine phosphatase, non-receptor type 2 pseudogene 2 pseudo PTPN2P2 protein tyrosine phosphatase, non-receptor type 2 pseudogene 2 O - 20121230 -9606 646759 UBTFL7 hCG_1990491 - HGNC:35404 11 11p11.12 upstream binding transcription factor, RNA polymerase I-like 7 (pseudogene) pseudo UBTFL7 upstream binding transcription factor, RNA polymerase I-like 7 (pseudogene) O - 20121230 -9606 646762 LOC646762 - - - 7 7p14.3 uncharacterized LOC646762 miscRNA - - - - 20121230 -9606 646766 RPL35P2 - RPL35_1_683 HGNC:35789 6 6p21.31 ribosomal protein L35 pseudogene 2 pseudo RPL35P2 ribosomal protein L35 pseudogene 2 O - 20121230 -9606 646767 LOC646767 - - - 7 7p15.1 uncharacterized LOC646767 protein-coding - - - - 20120318 -9606 646770 LOC646770 - - - 11 11p11.12 tripartite motif containing 43 pseudogene pseudo - - - - 20121230 -9606 646778 LOC646778 - - - 18 18q12.1 uncharacterized LOC646778 unknown - - - - 20121230 -9606 646780 PHKA1P1 hCG_18635 - HGNC:33919 1 1p22.2 phosphorylase kinase, alpha 1 pseudogene 1 pseudo PHKA1P1 phosphorylase kinase, alpha 1 pseudogene 1 O - 20121230 -9606 646784 RPL5P6 - RPL5_2_71 HGNC:35890 1 1p22.2 ribosomal protein L5 pseudogene 6 pseudo RPL5P6 ribosomal protein L5 pseudogene 6 O - 20121230 -9606 646785 RPS10P13 - RPS10_8_685 HGNC:36374 6 6p21.31 ribosomal protein S10 pseudogene 13 pseudo RPS10P13 ribosomal protein S10 pseudogene 13 O - 20121230 -9606 646787 RPL31P37 - RPL31_18_839 HGNC:36197 7 7q31.32 ribosomal protein L31 pseudogene 37 pseudo RPL31P37 ribosomal protein L31 pseudogene 37 O - 20121230 -9606 646791 ANP32BP1 - - HGNC:24267 15 15q24.2 acidic (leucine-rich) nuclear phosphoprotein 32 family, member B pseudogene 1 pseudo ANP32BP1 acidic (leucine-rich) nuclear phosphoprotein 32 family, member B pseudogene 1 O - 20121230 -9606 646794 LOC646794 - - - 2 2q36.3 SNF8, ESCRT-II complex subunit, homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 646797 LOC646797 - - - 11 11p11.12 glutamyl aminopeptidase (aminopeptidase A) pseudogene pseudo - - - - 20121230 -9606 646799 ZAR1L RP11-37E23.4 ZAR2 HGNC:37116|Ensembl:ENSG00000189167|Vega:OTTHUMG00000016694 13 13q13.1 zygote arrest 1-like protein-coding ZAR1L zygote arrest 1-like O ZAR1-like protein 20121230 -9606 646801 LOC646801 - - - 11 11p11.12 pantothenate kinase 3 pseudogene pseudo - - - - 20121230 -9606 646802 CYP4F43P - - HGNC:39956 2 2q21.1 cytochrome P450, family 4, subfamily F, polypeptide 43, pseudogene pseudo CYP4F43P cytochrome P450, family 4, subfamily F, polypeptide 43, pseudogene O - 20121230 -9606 646804 LOC646804 - - - 1 1q24.3 alkylated DNA repair protein alkB homolog 8-like pseudo - - - - 20121230 -9606 646808 LOC646808 - - - 9 9p21.1 L antigen family, member 3 pseudogene pseudo - - - - 20121230 -9606 646813 LOC646813 - - - 11 11p11.12 DEAH (Asp-Glu-Ala-His) box polypeptide 9 pseudogene pseudo - - - - 20121230 -9606 646817 SETP18 - - HGNC:42937 1 1p22.1 SET pseudogene 18 pseudo SETP18 SET pseudogene 18 O - 20121230 -9606 646819 RPS15AP19 - RPS15A_5_686 HGNC:36603 6 6p21.31 ribosomal protein S15a pseudogene 19 pseudo RPS15AP19 ribosomal protein S15a pseudogene 19 O - 20121230 -9606 646820 RPL19P19 - RPL19_8_1674 HGNC:36194 19 19q13.43 ribosomal protein L19 pseudogene 19 pseudo RPL19P19 ribosomal protein L19 pseudogene 19 O - 20121230 -9606 646828 LOC646828 - - - 16 16p12.2 carbonic anhydrase VA, mitochondrial pseudogene pseudo - - - - 20121230 -9606 646836 LOC646836 - - - 2 2q21.1 uncharacterized LOC646836 protein-coding - - - Putative uncharacterized protein LOC646836 20120511 -9606 646837 EEF1GP1 - - HGNC:44556 7 7q31.33 eukaryotic translation elongation factor 1 gamma pseudogene 1 pseudo EEF1GP1 eukaryotic translation elongation factor 1 gamma pseudogene 1 O - 20121230 -9606 646839 TPM3P8 - - HGNC:39171 2 2q37.1 tropomyosin 3 pseudogene 8 pseudo TPM3P8 tropomyosin 3 pseudogene 8 O - 20121230 -9606 646849 LOC646849 - - - 3 3q24 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 646851 FAM227A RP1-199H16.1 - HGNC:44197|Ensembl:ENSG00000184949|Vega:OTTHUMG00000151133 22 22q13.1 family with sequence similarity 227, member A protein-coding FAM227A family with sequence similarity 227, member A O putative uncharacterized protein LOC388900 20121230 -9606 646853 LOC646853 - - - 15 15q24.3 non-histone chromosomal protein HMG-17 pseudogene pseudo - - - - 20121230 -9606 646862 LOC646862 - - - 19 19q13.43 uncharacterized LOC646862 protein-coding - - - uncharacterized protein LOC646862 20121230 -9606 646864 LOC646864 - - - 19 19p12 zinc finger protein 92 pseudogene pseudo - - - - 20121230 -9606 646865 LOC646865 hCG_1814936 - - 4 4q32.1 hCG1814936 protein-coding - - - - 20120511 -9606 646870 LOC646870 - - - 1 1q25.1 centrosomal protein 57kDa pseudogene pseudo - - - - 20121230 -9606 646873 LOC646873 - - - 7 7q31.33 slowmo homolog 2 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 646875 RPL12P2 - RPL12_6_688|dJ441G21.1 HGNC:16070 6 6p21.2 ribosomal protein L12 pseudogene 2 pseudo RPL12P2 ribosomal protein L12 pseudogene 2 O - 20121230 -9606 646877 GAPDHP34 RP11-16L6.2 - HGNC:37786 13 13q13.3 glyceraldehyde 3 phosphate dehydrogenase pseudogene 34 pseudo GAPDHP34 glyceraldehyde 3 phosphate dehydrogenase pseudogene 34 O - 20121230 -9606 646879 ARL2BPP3 - - HGNC:39447 13 13q13.3 ADP-ribosylation factor-like 2 binding protein pseudogene 3 pseudo ARL2BPP3 ADP-ribosylation factor-like 2 binding protein pseudogene 3 O - 20121230 -9606 646884 RPL29P28 - RPL29_17_1307 HGNC:36842 13 13q13.1 ribosomal protein L29 pseudogene 28 pseudo RPL29P28 ribosomal protein L29 pseudogene 28 O - 20121230 -9606 646890 LOC646890 - - - 4 4q32.1 axin interactor, dorsalization associated pseudogene pseudo - - - - 20121230 -9606 646891 SDCCAG3P2 - - HGNC:39164 1 1q25.1 serologically defined colon cancer antigen 3 pseudogene 2 pseudo SDCCAG3P2 serologically defined colon cancer antigen 3 pseudogene 2 O - 20121230 -9606 646892 SH2D7 hCG_38941 - HGNC:34549|Ensembl:ENSG00000183476|Vega:OTTHUMG00000154271 15 15q25.1 SH2 domain containing 7 protein-coding SH2D7 SH2 domain containing 7 O Putative SH2 domain-containing protein LOC646892|SH2 domain-containing protein 7|hCG38941 20121230 -9606 646898 RPL12P40 - RPL12_19_1596 HGNC:36439 18 18q12.2 ribosomal protein L12 pseudogene 40 pseudo RPL12P40 ribosomal protein L12 pseudogene 40 O - 20121230 -9606 646903 LOC646903 - - - 3 3q25.1 uncharacterized LOC646903 miscRNA - - - - 20121230 -9606 646909 RPL17P33 - RPL17_19_888 HGNC:36654 8 8p12 ribosomal protein L17 pseudogene 33 pseudo RPL17P33 ribosomal protein L17 pseudogene 33 O - 20121230 -9606 646910 HSPD1P9 - HSPD1-14P HGNC:35132 13 13q13.3 heat shock 60kDa protein 1 (chaperonin) pseudogene 9 pseudo HSPD1P9 heat shock 60kDa protein 1 (chaperonin) pseudogene 9 O - 20121230 -9606 646912 RPL7P52 RP6-11O7.2 RPL7_21_1751 HGNC:35676 22 22q13.1 ribosomal protein L7 pseudogene 52 pseudo RPL7P52 ribosomal protein L7 pseudogene 52 O - 20121230 -9606 646913 SEPT7P3 tcag7.1317 - HGNC:38038 7 7p14.2 septin 7 pseudogene 3 pseudo SEPT7P3 septin 7 pseudogene 3 O - 20121230 -9606 646915 ZNF806 - - HGNC:33228 2 2q21.2 zinc finger protein 806 protein-coding ZNF806 zinc finger protein 806 O - 20121230 -9606 646927 LOC646927 C22:RP1-85F18.2 - - 22 22q13.2 uncharacterized LOC646927 pseudo - - - - 20121230 -9606 646929 ANKRD26P2 - - HGNC:39687 13 13q13.3 ankyrin repeat domain 26 pseudogene 2 pseudo ANKRD26P2 ankyrin repeat domain 26 pseudogene 2 O - 20121230 -9606 646934 LOC646934 - - - 15 15q25.1 golgin A6 family, member D pseudogene pseudo - - - - 20121230 -9606 646936 LOC646936 - - - 2 2p16.3 C-terminal binding protein 2 pseudogene pseudo - - - - 20121230 -9606 646938 LOC646938 - - - 15 15q25.1 TBC1 domain family, member 2B pseudogene pseudo - - - - 20121230 -9606 646942 RPS10P14 - RPS10_9_805 HGNC:35880 7 7p14.1 ribosomal protein S10 pseudogene 14 pseudo RPS10P14 ribosomal protein S10 pseudogene 14 O - 20121230 -9606 646949 RPL23P6 - RPL23_1_689 HGNC:35554 6 6p21.2 ribosomal protein L23 pseudogene 6 pseudo RPL23P6 ribosomal protein L23 pseudogene 6 O - 20121230 -9606 646951 FAM188B2 - C3orf76|CLRN1 HGNC:35475 3 3q25.1 family with sequence similarity 188, member B2 protein-coding FAM188B2 family with sequence similarity 188, member B2 O Putative UPF0526 protein B 20121021 -9606 646954 YWHAQP4 - - HGNC:37683 4 4q32.3 YWHAQ pseudogene 4 pseudo YWHAQP4 YWHAQ pseudogene 4 O - 20121230 -9606 646956 LOC646956 - - - 15 15q25.1 heterogeneous nuclear ribonucleoprotein C (C1/C2) pseudogene pseudo - - - - 20121230 -9606 646960 PRSS56 - MCOP6 HGNC:39433|MIM:613858 2 2q37.1 protease, serine, 56 protein-coding PRSS56 protease, serine, 56 O putative serine protease 56 20121230 -9606 646962 HRCT1 RP11-327L3.6 LGLL338|PRO537|UNQ338 HGNC:33872|Ensembl:ENSG00000196196|Vega:OTTHUMG00000154146 9 9p13.3 histidine rich carboxyl terminus 1 protein-coding HRCT1 histidine rich carboxyl terminus 1 O histidine-rich carboxyl terminus protein 1 20121230 -9606 646966 RPL26P16 - RPL26_3_532 HGNC:36098 4 4q32.3 ribosomal protein L26 pseudogene 16 pseudo RPL26P16 ribosomal protein L26 pseudogene 16 O - 20121230 -9606 646970 LOC646970 - - - 1 1p21.2 chromosome 5 open reading frame 15 pseudogene pseudo - - - - 20121230 -9606 646976 LOC646976 - - - 1 1q25.2 uncharacterized LOC646976 unknown - - - - 20120710 -9606 646981 PTPN2P1 hCG_2025063 PTPN2P|PTPTP1 HGNC:9653 1 1q25.2 protein tyrosine phosphatase, non-receptor type 2 pseudogene 1 pseudo PTPN2P1 protein tyrosine phosphatase, non-receptor type 2 pseudogene 1 O - 20121230 -9606 646982 LINC00598 - TTL HGNC:42770 13 13q14.11 long intergenic non-protein coding RNA 598 miscRNA LINC00598 long intergenic non-protein coding RNA 598 O - 20121230 -9606 646985 RPS12P25 - RPS12_14_1457 HGNC:36019 15 15q25.1 ribosomal protein S12 pseudogene 25 pseudo RPS12P25 ribosomal protein S12 pseudogene 25 O - 20121230 -9606 646993 HMGB3P24 - - HGNC:39316 9 9p13.2 high mobility group box 3 pseudogene 24 pseudo HMGB3P24 high mobility group box 3 pseudogene 24 O - 20121230 -9606 646995 LOC646995 - - - 4 4q32.3 tripartite motif-containing protein 38-like pseudo - - - - 20121230 -9606 646996 RAB42P1 hCG_2040201 RAB42|RAB42P HGNC:19799 14 14q32.11 RAB42, member RAS oncogene family, pseudogene 1 pseudo RAB42P1 RAB42, member RAS oncogene family, pseudogene 1 O - 20121230 -9606 646999 LOC646999 - - - 7 7p14.1 akirin 1 pseudogene pseudo - - - - 20121230 -9606 647000 TUBBP2 RP11-396A22.4 - HGNC:12415 13 13q14.11 tubulin, beta pseudogene 2 pseudo TUBBP2 tubulin, beta pseudogene 2 O - 20121230 -9606 647001 GAPDHP35 - - HGNC:37789 16 16p11.2 glyceraldehyde 3 phosphate dehydrogenase pseudogene 35 pseudo GAPDHP35 glyceraldehyde 3 phosphate dehydrogenase pseudogene 35 O - 20121230 -9606 647002 LOC647002 - - - 2 2q22.1 isopentenyl-diphosphate delta isomerase 1 pseudogene pseudo - - - - 20121230 -9606 647008 FLJ46120 - - - 3 3q25.31 uncharacterized LOC647008 other - - - - 20120622 -9606 647009 RWDD4P2 - FAM28CP HGNC:23754 7 7p14.1 RWD domain containing 4 pseudogene 2 pseudo RWDD4P2 RWD domain containing 4 pseudogene 2 O - 20121230 -9606 647012 LOC647012 - - - 2 2q22.1 YY1 transcription factor pseudogene pseudo - - - - 20121230 -9606 647013 LOC647013 - - - 9 9p13.2 potassium channel tetramerisation domain containing 9 pseudogene pseudo - - - - 20121230 -9606 647015 CDC37P2 - - HGNC:35453 16 16p11.2 cell division cycle 37 homolog (S. cerevisiae) pseudogene 2 pseudo CDC37P2 cell division cycle 37 homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 647016 EIF2S2P7 - - HGNC:37795 2 2p16.1 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 7 pseudo EIF2S2P7 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 7 O - 20121230 -9606 647020 LOC647020 - - - 15 15q25.1 uncharacterized LOC647020 protein-coding - - - - 20120511 -9606 647024 C6orf132 - bA7K24.2 HGNC:21288|Ensembl:ENSG00000188112|Vega:OTTHUMG00000014695 6 6p21.1 chromosome 6 open reading frame 132 protein-coding C6orf132 chromosome 6 open reading frame 132 O uncharacterized protein C6orf132 20121230 -9606 647030 LOC647030 hCG_19809 - - 7 7q32.3 eukaryotic translation elongation factor 1 beta 2 pseudogene pseudo - - - - 20121230 -9606 647033 PA2G4P4 - PA2G4L1 HGNC:32217 3 3q25.31 proliferation-associated 2G4 pseudogene 4 pseudo PA2G4P4 proliferation-associated 2G4 pseudogene 4 O - 20121230 -9606 647034 RPS14P10 tcag7.1149 RPS14_7_847 HGNC:35517 7 7q32.3 ribosomal protein S14 pseudogene 10 pseudo RPS14P10 ribosomal protein S14 pseudogene 10 O - 20121230 -9606 647042 GOLGA6L10 - - HGNC:37228|Ensembl:ENSG00000205281|Vega:OTTHUMG00000172603 15 15q25.2 golgin A6 family-like 10 protein-coding GOLGA6L10 golgin A6 family-like 10 O golgi autoantigen, golgin subfamily a, 6-like 10|putative golgin subfamily A member 6-like protein 10 20121230 -9606 647044 FAM220BP RP11-392E22.7 C9orf51|bA392E22.4 HGNC:23678 9 9p13.1 family with sequence similarity 220, member B, pseudogene unknown FAM220BP family with sequence similarity 220, member B, pseudogene O - 20121230 -9606 647047 TCP1P1 tcag7.1286 CCT1-3P|TCP1L1 HGNC:11659 7 7p14.1 t-complex 1 pseudogene 1 pseudo TCP1P1 t-complex 1 pseudogene 1 O - 20121230 -9606 647051 LOC647051 - - - 9 9p13.1 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, beta polypeptide pseudogene pseudo - - - - 20121230 -9606 647060 SPATA31A1 RP11-347J14.5 C9orf36|C9orf36A|FAM75A1 HGNC:23394|Ensembl:ENSG00000204849|Vega:OTTHUMG00000013156 9 9p13.1 SPATA31 subfamily A, member 1 protein-coding SPATA31A1 SPATA31 subfamily A, member 1 O family with sequence similarity 75, member A1|protein FAM75A1 20121216 -9606 647069 LOC647069 - - - 9 9p13.1 FK506 binding protein 4, 59kDa pseudogene pseudo - - - - 20121209 -9606 647070 LOC647070 - - - 1 1q25.3 uncharacterized LOC647070 unknown - - - - 20120511 -9606 647076 BRD7P2 - - HGNC:33541 3 3q25.33 bromodomain containing 7 pseudogene 2 pseudo BRD7P2 bromodomain containing 7 pseudogene 2 O - 20121230 -9606 647077 LOC647077 - - - 2 2p15 ribosomal protein L14 pseudogene pseudo - - - - 20121230 -9606 647081 SDHDP2 - - HGNC:10685 7 7q32.1 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 2 pseudo SDHDP2 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 2 O - 20121230 -9606 647085 PPIAP25 - - HGNC:39270 13 13q14.13 peptidylprolyl isomerase A (cyclophilin A) pseudogene 25 pseudo PPIAP25 peptidylprolyl isomerase A (cyclophilin A) pseudogene 25 O - 20121230 -9606 647086 LOC647086 - - - 16 16p11.2 chromosome 20 open reading frame 27 pseudogene pseudo - - - - 20121230 -9606 647087 C7orf73 - PL-5283 HGNC:41909|Ensembl:ENSG00000243317|Vega:OTTHUMG00000155495 7 7q33 chromosome 7 open reading frame 73 protein-coding C7orf73 chromosome 7 open reading frame 73 O uncharacterized protein C7orf73 20121230 -9606 647088 CTF2P - NP HGNC:33173 16 16p11.2 cardiotrophin 2, pseudogene pseudo CTF2P cardiotrophin 2, pseudogene O - 20121230 -9606 647094 RPLP0P11 - RPLP0_4_1600 HGNC:36572 18 18q21.1 ribosomal protein, large, P0 pseudogene 11 pseudo RPLP0P11 ribosomal protein, large, P0 pseudogene 11 O - 20121230 -9606 647099 RPL23AP42 hCG_16001 RPL23A_13_431 HGNC:35942 3 3q26.1 ribosomal protein L23a pseudogene 42 pseudo RPL23AP42 ribosomal protein L23a pseudogene 42 O - 20121230 -9606 647102 ELK1P1 - - HGNC:39021 7 7p12.3 ELK1, member of ETS oncogene family pseudogene 1 pseudo ELK1P1 ELK1, member of ETS oncogene family pseudogene 1 O - 20121230 -9606 647107 CT64 - - HGNC:37197 3 3q26.1 cancer/testis antigen 64 (non-protein coding) miscRNA CT64 cancer/testis antigen 64 (non-protein coding) O - 20121230 -9606 647112 RPL27P6 - RPL27_2_233 HGNC:36330 2 2p15 ribosomal protein L27 pseudogene 6 pseudo RPL27P6 ribosomal protein L27 pseudogene 6 O - 20121230 -9606 647115 FLJ36848 - - - 2 2p15 uncharacterized LOC647115 unknown - - - - 20120511 -9606 647121 EMBP1 - - HGNC:38661 1 1p11.2 embigin pseudogene 1 pseudo EMBP1 embigin pseudogene 1 O - 20121230 -9606 647123 UQCRFS1P2 hCG_1641727 - HGNC:39172 7 7q34 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 pseudogene 2 pseudo UQCRFS1P2 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 pseudogene 2 O - 20121230 -9606 647132 LOC647132 - - - 1 1q31.1 DEAH (Asp-Glu-Ala-His) box polypeptide 29 pseudogene pseudo - - - - 20121230 -9606 647135 SRGAP2B RP3-365I19.1 SRGAP2L|SRGAP2P2 HGNC:35237|MIM:614703 1 1q21.1 SLIT-ROBO Rho GTPase activating protein 2B (pseudogene) protein-coding SRGAP2B SLIT-ROBO Rho GTPase activating protein 2B (pseudogene) O SLIT-ROBO Rho GTPase activating protein 2 pseudogene 2 20121230 -9606 647144 FAM108A9P - - HGNC:38509 16 16p11.2 family with sequence similarity 108, member A9, pseudogene pseudo FAM108A9P family with sequence similarity 108, member A9, pseudogene O - 20121230 -9606 647145 LOC647145 tcag7.940 - - 7 7p12.3 serine/arginine-rich splicing factor 8 pseudogene pseudo - - - - 20121230 -9606 647150 LOC647150 - - - 1 1q31.2 ATP-binding cassette, sub-family E (OABP), member 1 pseudogene pseudo - - - - 20121230 -9606 647155 RPS15AP20 - RPS15A_10_701 HGNC:36391 6 6p12.3 ribosomal protein S15a pseudogene 20 pseudo RPS15AP20 ribosomal protein S15a pseudogene 20 O - 20121230 -9606 647156 ACTR3BP3 - - HGNC:38678 16 16p11.2 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 3 pseudo ACTR3BP3 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 3 O - 20121230 -9606 647158 RPSAP33 - RPSA_10_433 HGNC:35556 3 3q26.2 ribosomal protein SA pseudogene 33 pseudo RPSAP33 ribosomal protein SA pseudogene 33 O - 20121230 -9606 647162 KRT18P33 - - HGNC:33402 2 2p14 keratin 18 pseudogene 33 pseudo KRT18P33 keratin 18 pseudogene 33 O - 20121230 -9606 647166 LINC00371 - - HGNC:42693 13 13q14.3 long intergenic non-protein coding RNA 371 unknown LINC00371 long intergenic non-protein coding RNA 371 O - 20121230 -9606 647167 EEF1A1P14 RP1-61P15.1 EEF1AL12 HGNC:3197 1 1q31.3 eukaryotic translation elongation factor 1 alpha 1 pseudogene 14 pseudo EEF1A1P14 eukaryotic translation elongation factor 1 alpha 1 pseudogene 14 O - 20121230 -9606 647169 LOC647169 - - - 6 6p12.2 glutathione S-transferase alpha 3 pseudogene pseudo - - - - 20121230 -9606 647174 SERPINE3 - - HGNC:24774|Ensembl:ENSG00000253309|Vega:OTTHUMG00000016943 13 13q14.3 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 3 protein-coding SERPINE3 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 3 O nexin-related serine protease inhibitor|serpin E3 20121230 -9606 647175 LOC647175 - - - 6 6p12.2 glutathione S-transferase alpha 3 pseudogene pseudo - - - - 20121230 -9606 647177 LOC647177 - - - 6 6p12.2 glutathione S-transferase alpha 3 pseudogene pseudo - - - - 20121230 -9606 647187 IGHV3OR16-6 - IGHV3OR166 HGNC:5641|IMGT/GENE-DB:IGHV3/OR16-6 16 16p11.2 immunoglobulin heavy variable 3/OR16-6 (pseudogene) pseudo IGHV3OR16-6 immunoglobulin heavy variable 3/OR16-6 (pseudogene) O - 20121230 -9606 647190 RPS16P5 - RPS16_3_702 HGNC:36183 6 6p12.1 ribosomal protein S16 pseudogene 5 pseudo RPS16P5 ribosomal protein S16 pseudogene 5 O - 20121230 -9606 647195 LOC647195 - - - 1 1q31.3 proline rich 13 pseudogene pseudo - - - - 20121230 -9606 647201 RPL23AP16 - RPL23A_4_145 HGNC:36652 1 1q32.1 ribosomal protein L23a pseudogene 16 pseudo RPL23AP16 ribosomal protein L23a pseudogene 16 O - 20121230 -9606 647208 LOC647208 - - - 16 16p11.2 protein phosphatase 2, regulatory subunit B'', beta pseudogene pseudo - - - - 20121230 -9606 647211 LOC647211 - - - 16 16p11.2 rhophilin-2-like pseudo - - - - 20121209 -9606 647215 MROH3P - C1orf81 HGNC:33122 1 1q32.1 maestro heat-like repeat family member 3, pseudogene unknown MROH3P maestro heat-like repeat family member 3, pseudogene O - 20121230 -9606 647219 ASCL5 - bHLHa47 HGNC:33169 1 1q32.1 achaete-scute complex homolog 5 (Drosophila) protein-coding ASCL5 achaete-scute complex homolog 5 (Drosophila) O ASH-5|achaete-scute homolog 5|class A basic helix-loop-helix protein 47|hASH5 20121230 -9606 647236 RPL39P15 - RPL39_5_239 HGNC:35856 2 2p13.3 ribosomal protein L39 pseudogene 15 pseudo RPL39P15 ribosomal protein L39 pseudogene 15 O - 20121230 -9606 647249 GAPDHP36 - - HGNC:37790 3 3q26.33 glyceraldehyde 3 phosphate dehydrogenase pseudogene 36 pseudo GAPDHP36 glyceraldehyde 3 phosphate dehydrogenase pseudogene 36 O - 20121230 -9606 647253 LOC647253 - - - 3 3q26.33 ring finger protein 13 pseudogene pseudo - - - - 20121230 -9606 647264 LOC647264 - - - 13 13q21.31 uncharacterized LOC647264 unknown - - - - 20121230 -9606 647265 CYP2AB1P - - HGNC:39975 3 3q27.1 cytochrome P450, family 2, subfamily AB, polypeptide 1, pseudogene pseudo CYP2AB1P cytochrome P450, family 2, subfamily AB, polypeptide 1, pseudogene O - 20121230 -9606 647275 LOC647275 - - - 2 2p12 purine nucleoside phosphorylase pseudogene pseudo - - - - 20121230 -9606 647276 RPL4P4 - RPL4_2_444 HGNC:36179 3 3q27.2 ribosomal protein L4 pseudogene 4 pseudo RPL4P4 ribosomal protein L4 pseudogene 4 O - 20121230 -9606 647285 RPL29P9 - RPL29_4_447 HGNC:35729 3 3q27.3 ribosomal protein L29 pseudogene 9 pseudo RPL29P9 ribosomal protein L29 pseudogene 9 O - 20121230 -9606 647286 RD3L - TDRD9-AS1|TDRD9AS1 HGNC:40912|Ensembl:ENSG00000227729|Vega:OTTHUMG00000152877 14 14q32.33 retinal degeneration 3-like protein-coding RD3L retinal degeneration 3-like O TDRD9 antisense 1|TDRD9 antisense RNA 1 (non-protein coding)|protein RD3-like|retinal degeneration protein 3-like 20121230 -9606 647288 CTAGE11P RP11-159J2.1 - HGNC:37293 13 13q22.2 CTAGE family, member 11, pseudogene pseudo CTAGE11P CTAGE family, member 11, pseudogene O - 20121230 -9606 647298 HSPD1P8 RP11-600P1.1 HSPD1-12P HGNC:35145 13 13q31.1 heat shock 60kDa protein 1 (chaperonin) pseudogene 8 pseudo HSPD1P8 heat shock 60kDa protein 1 (chaperonin) pseudogene 8 O - 20121230 -9606 647299 LOC647299 - - - 3 3q28 enolase-phosphatase 1 pseudogene pseudo - - - - 20121230 -9606 647302 LSM3P3 - - HGNC:44348 2 2p11.2 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 3 pseudo LSM3P3 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 3 O - 20121230 -9606 647307 PEBP1P2 - - HGNC:44344 2 2p11.2 phosphatidylethanolamine binding protein 1 pseudogene 2 pseudo PEBP1P2 phosphatidylethanolamine binding protein 1 pseudogene 2 O - 20121230 -9606 647309 GMNC - GEMC1 HGNC:40049|MIM:614448|Ensembl:ENSG00000205835|Vega:OTTHUMG00000156195 3 3q28 geminin coiled-coil domain containing protein-coding GMNC geminin coiled-coil domain containing O geminin coiled-coil domain-containing protein 1 20121230 -9606 647310 TEX22 - - HGNC:40026|Ensembl:ENSG00000226174|Vega:OTTHUMG00000156137 14 14q32.33 testis expressed 22 protein-coding TEX22 testis expressed 22 O testis expressed gene 22|testis-expressed sequence 22 protein 20121230 -9606 647317 GYG1P2 - - HGNC:39710 13 13q31.1 glycogenin 1 pseudogene 2 pseudo GYG1P2 glycogenin 1 pseudogene 2 O - 20121230 -9606 647319 VEZF1P1 - VEZF1L1|ZNF161L1 HGNC:32320 3 3q29 vascular endothelial zinc finger 1 pseudogene 1 pseudo VEZF1P1 vascular endothelial zinc finger 1 pseudogene 1 O - 20121230 -9606 647323 LOC647323 - - - 3 3q29 uncharacterized LOC647323 miscRNA - - - - 20121230 -9606 647349 LOC647349 - - - 16 - AP-3 complex subunit sigma-1-like pseudo - - - - 20121102 -9606 647415 ALG1L5P - - HGNC:44374 7 7p22.1 asparagine-linked glycosylation 1-like 5, pseudogene pseudo ALG1L5P asparagine-linked glycosylation 1-like 5, pseudogene O - 20121230 -9606 647436 RPL5P1 - RPL5_12_1419 HGNC:10361 15 15q11.2 ribosomal protein L5 pseudogene 1 pseudo RPL5P1 ribosomal protein L5 pseudogene 1 O - 20121230 -9606 647476 FLJ20518 - - - 9 - FSHD region gene 2 family, member C pseudogene pseudo - - - - 20121102 -9606 647481 LOC647481 hCG_1979841 - - 1 1q21.1 family with sequence similarity 91, member A1 pseudogene pseudo - - - - 20121230 -9606 647503 LOC647503 - - - 12 12q24.33 NHP2 non-histone chromosome protein 2-like 1 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 647507 CNN2P4 - - HGNC:39529 9 9p11.2 calponin 2 pseudogene 4 pseudo CNN2P4 calponin 2 pseudogene 4 O - 20121230 -9606 647532 LOC647532 - - - 10 10q23.1 phenylalanine-tRNA synthetase-like, beta subunit pseudogene pseudo - - - - 20121230 -9606 647569 PFN1P12 - - HGNC:42995 1 1q21.2 profilin 1 pseudogene 12 pseudo PFN1P12 profilin 1 pseudogene 12 O - 20121230 -9606 647589 ANHX hCG_2007354 - HGNC:40024|Ensembl:ENSG00000227059|Vega:OTTHUMG00000167949 12 12q24.33 anomalous homeobox protein-coding ANHX anomalous homeobox O anomalous homeobox protein|hCG2007354 20121230 -9606 647633 LOC647633 - - - 2 2q11.1 uncharacterized LOC647633 pseudo - - - - 20121209 -9606 647654 LOC647654 - - - 2 - cell division cycle protein 27 homolog pseudo - - - - 20121102 -9606 647662 FLJ40039 - - - 12 - uncharacterized LOC647662 unknown - - - - 20120622 -9606 647696 CDC27P1 - - HGNC:38091 2 2q21.2 cell division cycle 27 homolog (S. cerevisiae) pseudogene 1 pseudo CDC27P1 cell division cycle 27 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 647859 LOC647859 - - - 5 5q13.2 occludin pseudogene pseudo - - - - 20121209 -9606 647946 LINC00669 - - HGNC:44332 18 18q12.2-q12.3 long intergenic non-protein coding RNA 669 miscRNA LINC00669 long intergenic non-protein coding RNA 669 O - 20121230 -9606 647979 LINC00657 - - HGNC:44311 20 20q11.23 long intergenic non-protein coding RNA 657 miscRNA LINC00657 long intergenic non-protein coding RNA 657 O - 20121230 -9606 647983 LOC647983 - - - 18 18p11.21 uncharacterized LOC647983 unknown - - - - 20120511 -9606 647996 LOC647996 - - - 2 2q21.2 chromosome 9 open reading frame 172 pseudogene pseudo - - - - 20121230 -9606 648000 RPL7P23 hCG_2015956 RPL7_7_580 HGNC:35658 5 5q13.3 ribosomal protein L7 pseudogene 23 pseudo RPL7P23 ribosomal protein L7 pseudogene 23 O - 20121230 -9606 648044 LOC648044 - - - 19 19p13.2 guanine nucleotide binding protein (G protein), gamma 12-like protein-coding - - - guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-12-like 20121230 -9606 648149 LOC648149 - - - 2 2q34 uncharacterized LOC648149 unknown - - - - 20120508 -9606 648217 RPL37P23 - RPL37_8_1665 HGNC:37003 19 19q13.41 ribosomal protein L37 pseudogene 23 pseudo RPL37P23 ribosomal protein L37 pseudogene 23 O - 20121230 -9606 648262 LOC648262 - - - 1 1q42.13 capicua homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 648283 TERF1P4 - - HGNC:38500 X Xq21.1 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene 4 pseudo TERF1P4 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene 4 O - 20121230 -9606 648294 RPL23AP57 - RPL23A_24_958 HGNC:36971 9 9p24.1 ribosomal protein L23a pseudogene 57 pseudo RPL23AP57 ribosomal protein L23a pseudogene 57 O - 20121230 -9606 648315 VN2R9P - - HGNC:33215 11 11q12.1 vomeronasal 2 receptor 9 pseudogene pseudo VN2R9P vomeronasal 2 receptor 9 pseudogene O - 20121230 -9606 648343 RPS29P9 - RPS29_6_317 HGNC:36913 2 2q33.3 ribosomal protein S29 pseudogene 9 pseudo RPS29P9 ribosomal protein S29 pseudogene 9 O - 20121230 -9606 648359 FAM108A4P - FAM108A4 HGNC:34041 1 1q41 family with sequence similarity 108, member A4, pseudogene pseudo FAM108A4P family with sequence similarity 108, member A4, pseudogene O - 20121230 -9606 648442 LOC648442 - - - 7 7q31.31 eukaryotic translation initiation factor 3, subunit I pseudogene pseudo - - - - 20121230 -9606 648532 NRBF2P1 - - HGNC:44604 18 18q12.2 nuclear receptor binding factor 2 pseudogene 1 pseudo NRBF2P1 nuclear receptor binding factor 2 pseudogene 1 O - 20121230 -9606 648570 LOC648570 - - - 9 9p22.2 uncharacterized LOC648570 unknown - - - - 20121230 -9606 648630 TSSK5P1 - TSSKps1 HGNC:31931 8 8q24.3 testis-specific serine kinase 5 pseudogene 1 pseudo TSSK5P1 testis-specific serine kinase 5 pseudogene 1 O - 20121230 -9606 648691 LOC648691 - - - 22 - uncharacterized LOC648691 miscRNA - - - - 20121230 -9606 648726 LOC648726 - - - 12 - calponin-2-like pseudo - - - - 20121102 -9606 648729 RPS15AP24 - RPS15A_13_889 HGNC:36174 8 8p12 ribosomal protein S15a pseudogene 24 pseudo RPS15AP24 ribosomal protein S15a pseudogene 24 O - 20121230 -9606 648740 ACTG1P4 - ACTGP4 HGNC:149 1 1p21.1 actin, gamma 1 pseudogene 4 pseudo ACTG1P4 actin, gamma 1 pseudogene 4 O - 20121230 -9606 648761 LOC648761 - - - 9 9p11.2 uncharacterized LOC648761 protein-coding - - - - 20121222 -9606 648771 LOC648771 - - - 22 - 60S ribosomal protein L12-like pseudo - - - - 20121102 -9606 648774 LOC648774 - - - 16 16q23.3 polo-like kinase 1 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 648791 PPP1R3G RP1-67E13.1 - HGNC:14945|Ensembl:ENSG00000219607|Vega:OTTHUMG00000014172 6 6p25.1 protein phosphatase 1, regulatory subunit 3G protein-coding PPP1R3G protein phosphatase 1, regulatory subunit 3G O protein phosphatase 1 regulatory subunit 3G|protein phosphatase 1, regulatory (inhibitor) subunit 3G|putative protein phosphatase 1 regulatory inhibitor subunit 3G 20121230 -9606 648809 EFTUD1P1 - FAM42B|HsT19321 HGNC:31739 15 15q25.2 elongation factor Tu GTP binding domain containing 1 pseudogene 1 pseudo EFTUD1P1 elongation factor Tu GTP binding domain containing 1 pseudogene 1 O - 20121230 -9606 648822 HMGN2P18 - - HGNC:39382 1 1q22 high mobility group nucleosomal binding domain 2 pseudogene 18 pseudo HMGN2P18 high mobility group nucleosomal binding domain 2 pseudogene 18 O - 20121230 -9606 648927 LOC648927 - - - X Xq21.33 K(lysine) acetyltransferase 7 pseudogene pseudo - - - - 20121230 -9606 648934 LOC648934 - - - 6 6q14.1 citrate synthase, mitochondrial-like pseudo - - - - 20121230 -9606 648947 AKR1C7P - - HGNC:44681 10 10p15.1 aldo-keto reductase family 1, member C7, pseudogene pseudo AKR1C7P aldo-keto reductase family 1, member C7, pseudogene O - 20121230 -9606 648980 BCRP5 - BCRL5 HGNC:1018 22 22q11.21 breakpoint cluster region pseudogene 5 pseudo BCRP5 breakpoint cluster region pseudogene 5 O - 20121230 -9606 648987 LOC648987 - - - 5 5p12 uncharacterized LOC648987 miscRNA - - - - 20121230 -9606 648999 LOC648999 - - - X - uncharacterized LOC648999 unknown - - - - 20120318 -9606 649024 LOC649024 - - - 3 3q13.12 citrate synthase pseudogene pseudo - - - - 20121230 -9606 649133 LOC649133 - - - 11 11q23.3 uncharacterized LOC649133 miscRNA - - - - 20121230 -9606 649137 ZSCAN5C - ZNF495C HGNC:34294 19 19q13.43 zinc finger and SCAN domain containing 5C pseudo ZSCAN5C zinc finger and SCAN domain containing 5C O - 20121230 -9606 649159 LINC00273 - NCRNA00273|TOP HGNC:38595 16 16p11.2 long intergenic non-protein coding RNA 273 miscRNA LINC00273 long intergenic non-protein coding RNA 273 O - 20121230 -9606 649166 LOC649166 - - - 9 9q21.33 eukaryotic translation initiation factor 3, subunit J pseudogene pseudo - - - - 20121230 -9606 649179 PRAMEL - - HGNC:34302 22 22q11.22 preferentially expressed antigen in melanoma-like unknown PRAMEL preferentially expressed antigen in melanoma-like O - 20121230 -9606 649186 VN2R17P - - HGNC:33223 19 19q13.43 vomeronasal 2 receptor 17 pseudogene pseudo VN2R17P vomeronasal 2 receptor 17 pseudogene O - 20121230 -9606 649201 LOC649201 - - - X Xq28 paraneoplastic antigen like 6A-like protein-coding - - - - 20121216 -9606 649238 LOC649238 - - - X Xq28 putative paraneoplastic antigen-like protein 6B-like protein-coding - - - - 20121230 -9606 649264 CES5AP1 - - HGNC:38516 22 22q11.23 carboxylesterase 5A pseudogene 1 pseudo CES5AP1 carboxylesterase 5A pseudogene 1 O - 20121230 -9606 649288 AK4P6 - - HGNC:39069 4 4q31.3 adenylate kinase 4 pseudogene 6 pseudo AK4P6 adenylate kinase 4 pseudogene 6 O - 20121230 -9606 649294 LOC649294 - - - 8 8p23.1 uncharacterized LOC649294 unknown - - - - 20120508 -9606 649299 RPL36AP51 - RPL36A_25_1638 HGNC:36632 19 19p12 ribosomal protein L36a pseudogene 51 pseudo RPL36AP51 ribosomal protein L36a pseudogene 51 O - 20121230 -9606 649305 LOC649305 - - - 8 - uncharacterized LOC649305 unknown - - - - 20120710 -9606 649324 LOC649324 - - - 1 1p36.21 PRAME family member 1-like pseudo - - - - 20121230 -9606 649330 LOC649330 - - - 1 - heterogeneous nuclear ribonucleoprotein C-like protein-coding - - - - 20121230 -9606 649352 LOC649352 - - - 8 8p23.1 ubiquitin carboxyl-terminal hydrolase 17-like protein 2-like pseudo - - - - 20121230 -9606 649395 LOC649395 - - - 7 7q11.21 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide pseudogene pseudo - - - - 20121230 -9606 649408 LOC649408 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 649425 LOC649425 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 649446 DLGAP1-AS1 - HsT914 HGNC:31676 18 18p11.31 DLGAP1 antisense RNA 1 miscRNA DLGAP1-AS1 DLGAP1 antisense RNA 1 O - 20121230 -9606 649458 MPTX - - - 1 1q23.2 amyloid P component, serum pseudogene pseudo - - - - 20121230 -9606 649489 PPP1R2P5 - - HGNC:16320 2 2q12.3 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 5 pseudo PPP1R2P5 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 5 O - 20121230 -9606 649620 LOC649620 - - - Un - cell division cycle protein 27 homolog pseudo - - - - 20121102 -9606 649671 LOC649671 - - - 1 1q23.3 probable ATP-dependent RNA helicase DDX56-like pseudo - - - - 20121209 -9606 649783 LOC649783 - - - 6 6p21.3 HLA class II histocompatibility antigen-like protein-coding - - - - 20120710 -9606 649873 LOC649873 - - - 17 17p12 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 649925 SETP16 - - HGNC:42935 11 11q23.3 SET pseudogene 16 pseudo SETP16 SET pseudogene 16 O - 20121230 -9606 649935 LOC649935 - - - 2 2p14 UPF0607 protein ENSP00000381514-like protein-coding - - - Putative UPF0607 protein ENSP00000381514 20120511 -9606 649946 RPL23AP64 - RPL23A_25_1182 HGNC:36552 11 11q23.3 ribosomal protein L23a pseudogene 64 pseudo RPL23AP64 ribosomal protein L23a pseudogene 64 O - 20121230 -9606 649993 LOC649993 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 650024 LOC650024 - - - X Xq26.3 chromosome X open reading frame 48 pseudogene pseudo - - - - 20121230 -9606 650059 RPL21P82 - RPL21_34_997 HGNC:36307 9 9q22.31 ribosomal protein L21 pseudogene 82 pseudo RPL21P82 ribosomal protein L21 pseudogene 82 O - 20121230 -9606 650157 LOC650157 - - - 2 2p25.1 peptidyl-prolyl cis-trans isomerase A-like protein-coding - - - - 20121209 -9606 650172 CCT4P1 - CCT4-2P HGNC:35151 7 7q34 chaperonin containing TCP1, subunit 4 (delta) pseudogene 1 pseudo CCT4P1 chaperonin containing TCP1, subunit 4 (delta) pseudogene 1 O - 20121230 -9606 650181 LOC650181 - - - X Xq11.2 AhpC/TSA antioxidant enzyme domain containing 1 pseudogene pseudo - - - - 20121230 -9606 650226 LOC650226 - - - 7 7p11.2 ankyrin repeat domain 26 pseudogene pseudo - - - - 20121230 -9606 650236 LOC650236 - - - 1 1p36.21 PRAME family member 2 pseudogene pseudo - - - - 20121230 -9606 650267 LOC650267 - - - Un - double homeobox protein 4-like protein-coding - - - - 20121222 -9606 650293 LOC650293 - - - 4 4p16.1 seven transmembrane helix receptor protein-coding - - - - 20121230 -9606 650368 LOC650368 - - - 11 11p15.4 asparagine-linked glycosylation 1-like pseudogene pseudo - - - - 20121230 -9606 650474 TPSP2 - - HGNC:14136 16 16p13.3 tryptase pseudogene 2 pseudo TPSP2 tryptase pseudogene 2 O - 20121230 -9606 650560 DDX3YP3 - - HGNC:42173 4 4q24 DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked pseudogene 3 pseudo DDX3YP3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked pseudogene 3 O - 20121230 -9606 650623 LOC650623 - - - 10 10q22.3 BEN domain containing 3 pseudogene pseudo - - - - 20121230 -9606 650655 ABCA17P - ABCA17 HGNC:32972 16 16p13.3 ATP-binding cassette, sub-family A (ABC1), member 17, pseudogene pseudo ABCA17P ATP-binding cassette, sub-family A (ABC1), member 17, pseudogene O - 20121230 -9606 650669 GAS6-AS1 - - HGNC:39826 13 13q34 GAS6 antisense RNA 1 miscRNA GAS6-AS1 GAS6 antisense RNA 1 O - 20121230 -9606 650724 LOC650724 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 650747 IMPA1P - - HGNC:33956 8 8q21.13 inositol(myo)-1(or 4)-monophosphatase 1 pseudogene pseudo IMPA1P inositol(myo)-1(or 4)-monophosphatase 1 pseudogene O - 20121230 -9606 650788 RPS28P9 - RPS28_5_1524 HGNC:36193 17 17p11.1 ribosomal protein S28 pseudogene 9 pseudo RPS28P9 ribosomal protein S28 pseudogene 9 O - 20121230 -9606 650794 MIPEPP3 - LINC00539 HGNC:39458 13 13q12.11 mitochondrial intermediate peptidase pseudogene 3 pseudo MIPEPP3 mitochondrial intermediate peptidase pseudogene 3 O - 20121230 -9606 650808 RPL4P1 - RPL4_2_1340 HGNC:23551 14 14q11.2 ribosomal protein L4 pseudogene 1 pseudo RPL4P1 ribosomal protein L4 pseudogene 1 O - 20121230 -9606 650866 LOC650866 - - - 5 5q32 transient receptor potential cation channel, subfamily C, member 6 pseudogene pseudo - - - - 20121230 -9606 650901 RPS2P12 - RPS2_2_35 HGNC:36546 1 1p34.2 ribosomal protein S2 pseudogene 12 pseudo RPS2P12 ribosomal protein S2 pseudogene 12 O - 20121230 -9606 650983 RCC2P1 - - HGNC:37710 Y Yq11.21 regulator of chromosome condensation 2 pseudogene 1 pseudo RCC2P1 regulator of chromosome condensation 2 pseudogene 1 O - 20121209 -9606 651053 DDX18P2 - - HGNC:21432 15 15q22.2 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 2 pseudo DDX18P2 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 2 O - 20121230 -9606 651144 LOC651144 - - - 10 10q26.12 nascent polypeptide-associated complex alpha subunit pseudogene pseudo - - - - 20121230 -9606 651249 RPL34P27 - RPL34_11_1303 HGNC:36369 13 13q12.12 ribosomal protein L34 pseudogene 27 pseudo RPL34P27 ribosomal protein L34 pseudogene 27 O - 20121230 -9606 651250 LRRC37A16P - - HGNC:43820 17 17q24.2 leucine rich repeat containing 37, member A16, pseudogene pseudo LRRC37A16P leucine rich repeat containing 37, member A16, pseudogene O - 20121230 -9606 651258 GAPDHP37 CTA-229A8.2 - HGNC:37791 22 22q13.2 glyceraldehyde 3 phosphate dehydrogenase pseudogene 37 pseudo GAPDHP37 glyceraldehyde 3 phosphate dehydrogenase pseudogene 37 O - 20121230 -9606 651302 ZNF192P1 - ZNF389|ZNF389P|dJ265C24.4 HGNC:18777 6 6p22.1 zinc finger protein 192 pseudogene 1 pseudo ZNF192P1 zinc finger protein 192 pseudogene 1 O - 20121230 -9606 651337 LOC651337 - - - 9 9q34.3 uncharacterized LOC651337 unknown - - - - 20121230 -9606 651430 FLJ38576 - - - 4 4q35.2 uncharacterized LOC651430 miscRNA - - - - 20121230 -9606 651446 LOC651446 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 651452 POM121L3P - POM121L3|dJ831C21.3 HGNC:16440 20 20p11.21 POM121 transmembrane nucleoporin-like 3, pseudogene pseudo POM121L3P POM121 transmembrane nucleoporin-like 3, pseudogene O - 20121230 -9606 651536 LOC651536 - - - Un - immunoglobulin iota chain-like protein-coding - - - - 20121102 -9606 651600 RPL36P16 - RPL36_7_1657 HGNC:37010 19 19q13.2 ribosomal protein L36 pseudogene 16 pseudo RPL36P16 ribosomal protein L36 pseudogene 16 O - 20121230 -9606 651628 EEF1GP3 - - HGNC:44558 3 3p22.1 eukaryotic translation elongation factor 1 gamma pseudogene 3 pseudo EEF1GP3 eukaryotic translation elongation factor 1 gamma pseudogene 3 O - 20121230 -9606 651644 LOC651644 - - - 4 4p14 LIM and senescent cell antigen-like domains 2 pseudogene pseudo - - - - 20121230 -9606 651714 LOC651714 - - - 3 3q29 mucin 20, cell surface associated pseudogene pseudo - - - - 20121230 -9606 651746 ANKRD33B - - HGNC:35240|Ensembl:ENSG00000164236|Vega:OTTHUMG00000162050 5 5p15.2 ankyrin repeat domain 33B protein-coding ANKRD33B ankyrin repeat domain 33B O Ankyrin repeat domain-containing protein LOC651746|ankyrin repeat domain-containing protein 33B 20121230 -9606 651815 KLF3P1 - - HGNC:41518 5 5q35.1 Kruppel-like factor 3 (basic) pseudogene 1 pseudo KLF3P1 Kruppel-like factor 3 (basic) pseudogene 1 O - 20121230 -9606 651856 LOC651856 - - - 3 3q21.2 uncharacterized LOC651856 pseudo - - - - 20121209 -9606 651959 LOC651959 - - - Un - FSHD region gene 2-like protein-coding - - - - 20121230 -9606 652070 SCFV - - - 14 - single-chain Fv fragment other - - - - 20120710 -9606 652119 LOC652119 - - - Un - double homeobox protein 4-like protein 4-like protein-coding - - - - 20121102 -9606 652170 COX4I1P2 RP11-154C3.1 - HGNC:38036 13 13q14.13 cytochrome c oxidase subunit IV isoform 1 pseudogene 2 pseudo COX4I1P2 cytochrome c oxidase subunit IV isoform 1 pseudogene 2 O - 20121230 -9606 652231 LOC652231 - - - 2 - L1 protein protein-coding - - - - 20120710 -9606 652276 LOC652276 PRO0461 - - 16 16p13.3 potassium channel tetramerisation domain containing 5 pseudogene pseudo - - - - 20121230 -9606 652301 LOC652301 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 652316 LOC652316 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 652411 RPSAP44 - RPSA_16_706 HGNC:36891 6 6p12.1 ribosomal protein SA pseudogene 44 pseudo RPSAP44 ribosomal protein SA pseudogene 44 O - 20121230 -9606 652423 LOC652423 - - - 6 6p12.1 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 652489 SUMO2P3 - - HGNC:39013 7 7p11.2 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 3 pseudo SUMO2P3 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 3 O - 20121230 -9606 652549 LOC652549 - - - 1 1p31.1 SNW domain containing 1 pseudogene pseudo - - - - 20121230 -9606 652586 LOC652586 - - - Un - double homeobox protein 4-like protein 4-like protein-coding - - - - 20121102 -9606 652608 LOC652608 - - - Un - 60S ribosomal protein L6-like pseudo - - - - 20121102 -9606 652624 RPSAP46 - RPSA_14_827 HGNC:36082 7 7q22.1 ribosomal protein SA pseudogene 46 pseudo RPSAP46 ribosomal protein SA pseudogene 46 O - 20121230 -9606 652670 RPS3AP15 - RPS3A_2_382 HGNC:35781 3 3p12.3 ribosomal protein S3a pseudogene 15 pseudo RPS3AP15 ribosomal protein S3a pseudogene 15 O - 20121230 -9606 652706 LOC652706 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 652749 LOC652749 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 652764 HPX-2 - - - - - homeobox HPX-2 protein-coding - - - - 20120710 -9606 652873 IGKV2OR2-7 - IGKV2/OR2-7|IGKV2OR27 HGNC:5810|IMGT/GENE-DB:IGKV2/OR2-7 2 2q11.2 immunoglobulin kappa variable 2/OR2-7 (pseudogene) pseudo IGKV2OR2-7 immunoglobulin kappa variable 2/OR2-7 (pseudogene) O - 20121209 -9606 652904 CKS1BP6 - - HGNC:24608 X Xp21.2 CDC28 protein kinase regulatory subunit 1B pseudogene 6 pseudo CKS1BP6 CDC28 protein kinase regulatory subunit 1B pseudogene 6 O - 20121230 -9606 652959 BTF3P5 - - HGNC:38565 2 2p16.1 basic transcription factor 3 pseudogene 5 pseudo BTF3P5 basic transcription factor 3 pseudogene 5 O - 20121230 -9606 652960 BTF3P7 RP11-320C15.1 - HGNC:38569 6 6p25.1 basic transcription factor 3 pseudogene 7 pseudo BTF3P7 basic transcription factor 3 pseudogene 7 O - 20121230 -9606 652961 BTF3P8 RP11-151A2.2 - HGNC:38572 X Xq11.1 basic transcription factor 3 pseudogene 8 pseudo BTF3P8 basic transcription factor 3 pseudogene 8 O - 20121230 -9606 652963 BTF3P12 - BTF3L2|HUMBTFC HGNC:1127|MIM:603738 8 8q13.3 basic transcription factor 3 pseudogene 12 pseudo BTF3P12 basic transcription factor 3 pseudogene 12 O - 20121230 -9606 652964 BTF3P3 - - HGNC:31100 8 8p21.3 basic transcription factor 3, pseudogene 3 pseudo BTF3P3 basic transcription factor 3, pseudogene 3 O - 20121230 -9606 652965 SNORA48 - ACA48 HGNC:32641 17 17p13.1 small nucleolar RNA, H/ACA box 48 snoRNA SNORA48 small nucleolar RNA, H/ACA box 48 O - 20121230 -9606 652966 SNORD10 - mgU6-77 HGNC:32706 17 17p13.1 small nucleolar RNA, C/D box 10 snoRNA SNORD10 small nucleolar RNA, C/D box 10 O - 20121230 -9606 652968 GATSL3 - - HGNC:34423|Ensembl:ENSG00000239282|Vega:OTTHUMG00000150929 22 22q12 GATS protein-like 3 protein-coding GATSL3 GATS protein-like 3 O GATS-like protein 3 20121230 -9606 652969 SLC6A21P - SLC6A21 HGNC:31400 19 19q13.33 solute carrier family 6 (neurotransmitter transporter), member 21, pseudogene pseudo SLC6A21P solute carrier family 6 (neurotransmitter transporter), member 21, pseudogene O - 20121230 -9606 652972 LRRC37A5P RP11-16L21.8 C9orf29 HGNC:23369 9 9q31.3 leucine rich repeat containing 37, member A5, pseudogene miscRNA LRRC37A5P leucine rich repeat containing 37, member A5, pseudogene O - 20121230 -9606 652974 RPL17P2 - RPL17_13_1376 HGNC:23540 14 14q23.1 ribosomal protein L17 pseudogene 2 pseudo RPL17P2 ribosomal protein L17 pseudogene 2 O - 20121230 -9606 652975 RPL21P6 - RPL21_47_1368 HGNC:23542 14 14q22.3 ribosomal protein L21 pseudogene 6 pseudo RPL21P6 ribosomal protein L21 pseudogene 6 O - 20121230 -9606 652978 RPL7AP2 - RPL7A_26_1357 HGNC:23552 14 14q21.1 ribosomal protein L7a pseudogene 2 pseudo RPL7AP2 ribosomal protein L7a pseudogene 2 O - 20121230 -9606 652980 RPS28P1 - - HGNC:23561 14 14q23.2 ribosomal protein S28 pseudogene 1 pseudo RPS28P1 ribosomal protein S28 pseudogene 1 O - 20121230 -9606 652983 RPL35AP2 RP11-571F15.2 RPL35A_10_973|bA571F15.2 HGNC:19914 9 9p ribosomal protein L35a pseudogene 2 pseudo RPL35AP2 ribosomal protein L35a pseudogene 2 O - 20121230 -9606 652985 RPL7AP4 - RPL7A_27_1369 HGNC:23554 14 14q22.3 ribosomal protein L7a pseudogene 4 pseudo RPL7AP4 ribosomal protein L7a pseudogene 4 O - 20121230 -9606 652990 LOC652990 - - - 6 6p21.1 uncharacterized LOC652990 unknown - - - - 20120710 -9606 652991 SKOR2 - CORL2|FUSSEL18 HGNC:32695|Ensembl:ENSG00000215474|Vega:OTTHUMG00000180309 18 18q21.1 SKI family transcriptional corepressor 2 protein-coding SKOR2 SKI family transcriptional corepressor 2 O LBX1 corepressor 1-like protein|functional Smad-suppressing element on chromosome 18|functional smad suppressing element 18|fussel-18|ladybird homeobox corepressor 1-like protein 20121230 -9606 652993 LOC652993 - - - 12 12q21 uncharacterized LOC652993 unknown - - - - 20120508 -9606 652995 UCA1 - CUDR|LINC00178|NCRNA00178 HGNC:37126 19 19p13.12 urothelial cancer associated 1 (non-protein coding) miscRNA UCA1 urothelial cancer associated 1 (non-protein coding) O - 20121230 -9606 653017 TBC1D3P3 - USP6P1 HGNC:32408 17 17p11.2 TBC1 domain family, member 3 pseudogene 3 pseudo TBC1D3P3 TBC1 domain family, member 3 pseudogene 3 O - 20121230 -9606 653018 TBC1D3P4 - USP6P2 HGNC:32409 17 17p11.2 TBC1 domain family, member 3 pseudogene 4 pseudo TBC1D3P4 TBC1 domain family, member 3 pseudogene 4 O - 20121021 -9606 653042 REXO1L4P - - HGNC:32241 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 4, pseudogene pseudo REXO1L4P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 4, pseudogene O - 20121230 -9606 653045 PTPN20C RP11-164N7.1 bA164N7.3 HGNC:23424 10 10q11.22 protein tyrosine phosphatase, non-receptor type 20C pseudo PTPN20C protein tyrosine phosphatase, non-receptor type 20C O - 20121230 -9606 653048 XAGE1C RP13-34L8.2 CT12.1|CT12.1C|CTP9|GAGED2 HGNC:30679|MIM:300744|Ensembl:ENSG00000183461|Vega:OTTHUMG00000021566 X Xp11.22 X antigen family, member 1C protein-coding XAGE1C X antigen family, member 1C O G antigen family D member 2|cancer/testis antigen 12.1|cancer/testis antigen family 12, member 1c|cancer/testis associated protein|protein XAGE-1 20121209 -9606 653061 GOLGA8S - - HGNC:44409 15 15q11.2 golgin A8 family, member S pseudo GOLGA8S golgin A8 family, member S O - 20121230 -9606 653067 XAGE1E RP13-34L8.5 CT12.1|CT12.1E|CTP9|GAGED2 HGNC:18372|MIM:300745|Ensembl:ENSG00000204375|Vega:OTTHUMG00000021569 X Xp11.22 X antigen family, member 1E protein-coding XAGE1E X antigen family, member 1E O G antigen family D member 2|cancer/testis antigen 12.1|cancer/testis antigen family 12, member 1e|cancer/testis associated protein|protein XAGE-1 20121230 -9606 653071 LOC653071 - - - 4 - ankyrin repeat domain 57 pseudogene pseudo - - - - 20121209 -9606 653073 GOLGA8J - - HGNC:38650|Ensembl:ENSG00000179938|Vega:OTTHUMG00000175635 15 15q13.2 golgin A8 family, member J protein-coding GOLGA8J golgin A8 family, member J O Golgin subfamily A member 8-like protein 3|golgin subfamily A member 8J 20121230 -9606 653075 GOLGA8T - - HGNC:44410 15 15q13.2 golgin A8 family, member T pseudo GOLGA8T golgin A8 family, member T O - 20121230 -9606 653079 RPL21P98 - RPL21_47_1259 HGNC:36397 12 12q21.2 ribosomal protein L21 pseudogene 98 pseudo RPL21P98 ribosomal protein L21 pseudogene 98 O - 20121230 -9606 653080 LOC653080 - - - 5 5q13.2 glucuronidase, beta pseudogene pseudo - - - - 20121230 -9606 653082 ZDHHC11B - DHHC-11B HGNC:32962 5 5p15.33 zinc finger, DHHC-type containing 11B protein-coding ZDHHC11B zinc finger, DHHC-type containing 11B O Probable palmitoyltransferase ZDHHC11B|Zinc finger DHHC domain-containing protein 11B 20121230 -9606 653108 CXADRP1 - CAR|CXADRP HGNC:23770 21 21q11.2 coxsackie virus and adenovirus receptor pseudogene 1 pseudo CXADRP1 coxsackie virus and adenovirus receptor pseudogene 1 O - 20121230 -9606 653113 FAM86FP - - HGNC:42357 12 12p13.31 family with sequence similarity 86, member A pseudogene pseudo FAM86FP family with sequence similarity 86, member F, pseudogene O - 20121230 -9606 653114 FAM74A2 RP11-95K23.4 - HGNC:32030 9 9p12 family with sequence similarity 74, member A2 miscRNA FAM74A2 family with sequence similarity 74, member A2 O - 20121209 -9606 653115 LOC653115 - - - 3 3p12.3 heterogeneous nuclear ribonucleoprotein A3 pseudogene pseudo - - - - 20121230 -9606 653121 ZBTB8A - BOZF1|ZBTB8|ZNF916A HGNC:24172|Ensembl:ENSG00000160062|HPRD:10315|Vega:OTTHUMG00000007855 1 1p35.1 zinc finger and BTB domain containing 8A protein-coding ZBTB8A zinc finger and BTB domain containing 8A O BOZ-F1|BTB/POZ and zinc-finger domain-containing factor|BTB/POZ and zinc-finger domains factor on chromosome 1|zinc finger and BTB domain containing 8|zinc finger and BTB domain-containing protein 8A 20121230 -9606 653122 LSM12P1 - LSM12P HGNC:32453 8 8p12 LSM12 homolog (S. cerevisiae) pseudogene 1 pseudo LSM12P1 LSM12 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 653123 FAM74A6 - - HGNC:34036 9 9p12 family with sequence similarity 74, member A6 pseudo FAM74A6 family with sequence similarity 74, member A6 O - 20121209 -9606 653125 GOLGA8K - - HGNC:38652|Ensembl:ENSG00000249931|Vega:OTTHUMG00000175395 15 15q13.3 golgin A8 family, member K protein-coding GOLGA8K golgin A8 family, member K O putative golgin subfamily A member 8I-like 20121209 -9606 653129 PTPN20A - CT126|PTPN20B|bA142I17.1|hPTPN20 HGNC:23422|MIM:610630|Ensembl:ENSG00000204179|Vega:OTTHUMG00000018094 10 10q11.22 protein tyrosine phosphatase, non-receptor type 20A protein-coding PTPN20A protein tyrosine phosphatase, non-receptor type 20A O cancer/testis antigen 126|tyrosine-protein phosphatase non-receptor type 20 20121230 -9606 653140 FAM228A - C2orf84 HGNC:34418|Ensembl:ENSG00000186453|Vega:OTTHUMG00000151903 2 2p23.3 family with sequence similarity 228, member A protein-coding FAM228A family with sequence similarity 228, member A O UPF0638 protein C2orf84|protein FAM228A 20121230 -9606 653145 ANXA8 RP11-301J7.3 ANX8 HGNC:546|MIM:602396|Ensembl:ENSG00000165390|Vega:OTTHUMG00000018143 10 10q11.22 annexin A8 protein-coding ANXA8 annexin A8 O VAC-beta|annexin VIII|annexin-8|vascular anticoagulant-beta 20121230 -9606 653147 RPL26P30 hCG_1995786 RPL26_10_1113 HGNC:36733 11 11p15.5 ribosomal protein L26 pseudogene 30 pseudo RPL26P30 ribosomal protein L26 pseudogene 30 O - 20121230 -9606 653149 NBPF6 - - HGNC:31988|MIM:613996|Ensembl:ENSG00000186086|Vega:OTTHUMG00000039830 1 1p13.3 neuroblastoma breakpoint family, member 6 protein-coding NBPF6 neuroblastoma breakpoint family, member 6 O neuroblastoma breakpoint family member 6 20121230 -9606 653155 LOC653155 - - - X Xq23 PRP4 pre-mRNA processing factor 4 homolog B (yeast) pseudogene pseudo - - - - 20121230 -9606 653156 RPL21P53 - RPL21_19_517 HGNC:36574 4 4q28.1 ribosomal protein L21 pseudogene 53 pseudo RPL21P53 ribosomal protein L21 pseudogene 53 O - 20121230 -9606 653160 LOC653160 - - - 1 1p34.3 uncharacterized LOC653160 miscRNA - - - - 20121230 -9606 653162 RPSAP9 - LAMR1P9|RPSA_20_986 HGNC:31463 9 9q21.13 ribosomal protein SA pseudogene 9 pseudo RPSAP9 ribosomal protein SA pseudogene 9 O - 20121230 -9606 653163 LCN1P2 - LCN1L2|bA244N20.11 HGNC:23680 9 9q34.2 lipocalin 1 pseudogene 2 pseudo LCN1P2 lipocalin 1 pseudogene 2 O - 20121230 -9606 653166 OR1D4 - OR17-30 HGNC:8185 17 17p13.3 olfactory receptor, family 1, subfamily D, member 4 (gene/pseudogene) pseudo OR1D4 olfactory receptor, family 1, subfamily D, member 4 (gene/pseudogene) O olfactory receptor 1D4 20121230 -9606 653174 TSPY6P - TSPYP6 HGNC:34039 Y Yp11.2 testis specific protein, Y-linked 6, pseudogene pseudo TSPY6P testis specific protein, Y-linked 6, pseudogene O - 20121209 -9606 653175 HAUS6P1 - - HGNC:43764 7 7p12.1 HAUS augmin-like complex, subunit 6 pseudogene 1 pseudo HAUS6P1 HAUS augmin-like complex, subunit 6 pseudogene 1 O - 20121230 -9606 653188 GUSBP3 - - HGNC:37301 5 5q13.2 glucuronidase, beta pseudogene 3 pseudo GUSBP3 glucuronidase, beta pseudogene 3 O - 20121230 -9606 653189 BTF3L4P2 - BTF3L4P HGNC:39646 2 2q24.2 basic transcription factor 3-like 4 pseudogene 2 pseudo BTF3L4P2 basic transcription factor 3-like 4 pseudogene 2 O - 20121230 -9606 653190 ABCC6P1 - - HGNC:33352 16 16p12.3 ATP-binding cassette, sub-family C, member 6 pseudogene 1 pseudo ABCC6P1 ATP-binding cassette, sub-family C, member 6 pseudogene 1 O - 20121230 -9606 653192 TRIM43B - - HGNC:37146 2 2q11.1 tripartite motif containing 43B protein-coding TRIM43B tripartite motif containing 43B O Tripartite motif-containing protein 43-like protein 1|tripartite motif-containing 43B|tripartite motif-containing protein 43B 20121230 -9606 653194 KHDC1P1 - - HGNC:43757 6 6q13 KH homology domain containing 1 pseudogene 1 pseudo KHDC1P1 KH homology domain containing 1 pseudogene 1 O - 20121209 -9606 653199 FAM115B - - HGNC:33604 7 7q35 family with sequence similarity 115, member A pseudogene pseudo FAM115B family with sequence similarity 115, member B (pseudogene) O - 20121230 -9606 653203 LOC653203 - - - 22 22q11.21 long intergenic non-protein coding RNA 281 pseudogene pseudo - - - - 20121209 -9606 653214 PPIAP22 - PPIA3L|PPIAL3 HGNC:17236 21 21q21.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene 22 pseudo PPIAP22 peptidylprolyl isomerase A (cyclophilin A) pseudogene 22 O - 20121230 -9606 653219 XAGE1A RP11-485B17.7 CT12.1|CT12.1A|CTP9|GAGED2|XAGE1 HGNC:4111|MIM:300742|Ensembl:ENSG00000204379|Vega:OTTHUMG00000021557 X Xp11.22 X antigen family, member 1A protein-coding XAGE1A X antigen family, member 1A O G antigen family D member 2|cancer/testis antigen 12.1|cancer/testis antigen family 12, member 1a|cancer/testis associated protein|protein XAGE-1 20121230 -9606 653220 XAGE1B RP11-485B17.2 CT12.1|CT12.1B|CTP9|GAGED2 HGNC:25400|MIM:300743|Ensembl:ENSG00000204382|Vega:OTTHUMG00000163577 X Xp11.22 X antigen family, member 1B protein-coding XAGE1B X antigen family, member 1B O G antigen family D member 2|cancer/testis antigen 12.1|cancer/testis antigen family 12, member 1b|cancer/testis associated protein|protein XAGE-1 20121230 -9606 653226 SRP9P1 hCG_1781062 SRP9L1 HGNC:23402 10 10q23.32 signal recognition particle 9 pseudogene 1 pseudo SRP9P1 signal recognition particle 9 pseudogene 1 O - 20121230 -9606 653232 RPL15P3 RP11-511D14.1 RPL15_3_658|bA511S14.1 HGNC:21538 6 6p24.1 ribosomal protein L15 pseudogene 3 pseudo RPL15P3 ribosomal protein L15 pseudogene 3 O - 20121230 -9606 653234 CTGLF10P - bA358L16.1 HGNC:23659 10 10q11.22 centaurin, gamma-like family, member 10 pseudogene pseudo CTGLF10P centaurin, gamma-like family, member 10 pseudogene O - 20121230 -9606 653236 RPL23AP49 - RPL23A_12_383 HGNC:35689 3 3p12.3 ribosomal protein L23a pseudogene 49 pseudo RPL23AP49 ribosomal protein L23a pseudogene 49 O - 20121230 -9606 653238 GTF2H2B - - HGNC:31393 5 5q13.2 general transcription factor IIH, polypeptide 2B (pseudogene) pseudo GTF2H2B general transcription factor IIH, polypeptide 2B (pseudogene) O - 20121230 -9606 653240 KRTAP4-11 hCG_2005471 KAP4.11|KAP4.14|KRTAP4-14|KRTAP4.14 HGNC:18911|Ensembl:ENSG00000212721|Vega:OTTHUMG00000133586 17 17q21.2 keratin associated protein 4-11 protein-coding KRTAP4-11 keratin associated protein 4-11 O keratin associated protein 4-14|keratin-associated protein 4-11|keratin-associated protein 4-14|keratin-associated protein 4.11|keratin-associated protein 4.14|ultrahigh sulfur keratin-associated protein 4.14 20121230 -9606 653247 PRB2 - IB-9|PRPPRB1|Ps|cP7 HGNC:9338|MIM:168810|Ensembl:ENSG00000121335|HPRD:18511|Vega:OTTHUMG00000156975 12 12p13.2 proline-rich protein BstNI subfamily 2 protein-coding PRB2 proline-rich protein BstNI subfamily 2 O Basic proline-rich peptide P-E|basic salivary proline-rich protein 2|con1 glycoprotein|proline-rich protein BstNI, subfamily-2 (parotid size variant)|salivary proline-rich protein 2 20121230 -9606 653252 TIMM23B RP11-592B15.7 TIMM23|bA592B15.7 HGNC:23581|Ensembl:ENSG00000204152|Vega:OTTHUMG00000018204 10 10q11.23 translocase of inner mitochondrial membrane 23 homolog B (yeast) protein-coding TIMM23B translocase of inner mitochondrial membrane 23 homolog B (yeast) O putative mitochondrial import inner membrane translocase subunit Tim23B 20121216 -9606 653259 CTGLF11P - bA145E20.1 HGNC:23660 10 10q11.22 centaurin, gamma-like family, member 11 pseudogene pseudo CTGLF11P centaurin, gamma-like family, member 11 pseudogene O - 20121230 -9606 653268 AGAP7 RP11-109G10.3 CTGLF4|bA109G10.1 HGNC:23465|Ensembl:ENSG00000204169|Vega:OTTHUMG00000018211 10 10q11.23 ArfGAP with GTPase domain, ankyrin repeat and PH domain 7 protein-coding AGAP7 ArfGAP with GTPase domain, ankyrin repeat and PH domain 7 O AGAP-7|arf-GAP with GTPase, ANK repeat and PH domain-containing protein 7|centaurin, gamma-like family, member 4|centaurin-gamma-like family member 4 20121230 -9606 653269 POTEI - POTE2beta HGNC:37093|Ensembl:ENSG00000196834|Vega:OTTHUMG00000153925 2 2q21.1 POTE ankyrin domain family, member I protein-coding POTEI POTE ankyrin domain family, member I O - 20121230 -9606 653275 CFC1B - - HGNC:33983|Ensembl:ENSG00000152093|Vega:OTTHUMG00000153959 2 2q21.1 cripto, FRL-1, cryptic family 1B protein-coding CFC1B cripto, FRL-1, cryptic family 1B O cryptic family protein 1B 20121209 -9606 653282 CT47A7 - CT47.7 HGNC:33288|MIM:300786|Ensembl:ENSG00000228517|Vega:OTTHUMG00000022317 X Xq24 cancer/testis antigen family 47, member A7 protein-coding CT47A7 cancer/testis antigen family 47, member A7 O cancer/testis CT47 family, member 7|cancer/testis antigen 47A 20121212 -9606 653288 TSPY7P - TSPYP7 HGNC:34040 Y Yp11.2 testis specific protein, Y-linked 7, pseudogene pseudo TSPY7P testis specific protein, Y-linked 7, pseudogene O - 20121209 -9606 653303 LOC653303 - - - 11 11q23.3 proprotein convertase subtilisin/kexin type 7 pseudogene pseudo - - - - 20121230 -9606 653308 ASAH2B RP11-564C4.1 ASAH2C|ASAH2L|bA449O16.3 HGNC:23456|MIM:610987|Ensembl:ENSG00000204147|Vega:OTTHUMG00000018239 10 10q11.23 N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2B protein-coding ASAH2B N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2B O ASAH2-like protein|putative inactive N-acylsphingosine amidohydrolase 2B|putative inactive neutral ceramidase B|putative inactive non-lysosomal ceramidase B 20121230 -9606 653314 RPL19P9 - RPL19_7_643 HGNC:35918 5 5q35.3 ribosomal protein L19 pseudogene 9 pseudo RPL19P9 ribosomal protein L19 pseudogene 9 O - 20121230 -9606 653316 FAM153C - NY-REN-7-like HGNC:33936 5 5q35.3 family with sequence similarity 153, member C, pseudogene pseudo FAM153C family with sequence similarity 153, member C O - 20121230 -9606 653319 KIAA0895L - - HGNC:34408|Ensembl:ENSG00000196123|Vega:OTTHUMG00000172891 16 16q22.1 KIAA0895-like protein-coding KIAA0895L KIAA0895-like O uncharacterized protein KIAA0895-like 20121230 -9606 653333 FAM86B2 - - HGNC:32222|Ensembl:ENSG00000145002|Vega:OTTHUMG00000165462 8 8p23.1 family with sequence similarity 86, member B2 protein-coding FAM86B2 family with sequence similarity 86, member B2 O protein FAM86B2 20121230 -9606 653354 LOC653354 - - - X Xq22.1 armadillo repeat containing, X-linked 6 pseudogene pseudo - - - - 20121230 -9606 653361 NCF1 - NCF1A|NOXO2|SH3PXD1A|p47phox HGNC:7660|MIM:608512|Ensembl:ENSG00000158517|Vega:OTTHUMG00000149965 7 7q11.23 neutrophil cytosolic factor 1 protein-coding NCF1 neutrophil cytosolic factor 1 O 47 kDa autosomal chronic granulomatous disease protein|47 kDa neutrophil oxidase factor|NADPH oxidase organizer 2|NCF-1|NCF-47K|SH3 and PX domain-containing protein 1A|neutrophil NADPH oxidase factor 1|neutrophil cytosol factor 1|neutrophil cytosolic factor 1, (chronic granulomatous disease, autosomal 1)|nox organizer 2|nox-organizing protein 2|p47-phox 20121230 -9606 653363 TEX28P2 - CXorf2B|pTEX HGNC:33357 X Xq28 testis expressed 28 pseudogene 2 pseudo TEX28P2 testis expressed 28 pseudogene 2 O - 20121230 -9606 653364 HSPB1P2 - HSPBL3 HGNC:5252 X Xp11.23 heat shock 27kDa protein 1 pseudogene 2 pseudo HSPB1P2 heat shock 27kDa protein 1 pseudogene 2 O - 20121230 -9606 653365 ASAH2C RP11-98I6.3 bA98I6.3 HGNC:23457|Vega:OTTHUMG00000018134 10 10q11.22 N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2C pseudo ASAH2C N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2C O - 20121230 -9606 653375 LOC653375 - - - 7 7q11.23 RCC1-like G exchanging factor-like protein-coding - - - - 20121230 -9606 653380 LOC653380 - - - 17 - TBC1 domain family member 3C-like protein ENSP00000341742 protein-coding - - - - 20120818 -9606 653381 SORD2 - - - 15 15q21.1 SORD pseudogene pseudo - - - - 20121230 -9606 653390 RRN3P2 - - HGNC:37619 16 16p11.2 RNA polymerase I transcription factor homolog (S. cerevisiae) pseudogene 2 pseudo RRN3P2 RNA polymerase I transcription factor homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 653394 PGM5P1 RP11-391M20.2 - HGNC:28452 9 9q21.11 phosphoglucomutase 5 pseudogene 1 pseudo PGM5P1 phosphoglucomutase 5 pseudogene 1 O - 20121230 -9606 653399 GSTTP2 - - HGNC:33606 22 22q11.23 glutathione S-transferase theta pseudogene 2 pseudo GSTTP2 glutathione S-transferase theta pseudogene 2 O - 20121230 -9606 653404 FOXD4L6 - - HGNC:31986|Ensembl:ENSG00000204793|Vega:OTTHUMG00000066822 9 9q21.11 forkhead box D4-like 6 protein-coding FOXD4L6 forkhead box D4-like 6 O FOXD4-like 6|forkhead box protein D4-like 6 20121216 -9606 653406 LOC653406 - - - 5 5q13.2 NLR family, apoptosis inhibitory protein pseudogene pseudo - - - - 20121230 -9606 653423 SPAG11A - EDDM2A|HE2 HGNC:33342|Ensembl:ENSG00000178287|Vega:OTTHUMG00000162440 8 8p23.1 sperm associated antigen 11A protein-coding SPAG11A sperm associated antigen 11A O epididymal protein 2A|human epididymis-specific protein 2|sperm antigen HE2|sperm-associated antigen 11A 20121230 -9606 653427 FOXD4L5 - bA15J10.2 HGNC:18522|Ensembl:ENSG00000204779|Vega:OTTHUMG00000013332 9 9q21.11 forkhead box D4-like 5 protein-coding FOXD4L5 forkhead box D4-like 5 O FOXD4-like 5|forkhead box protein D4-like 5 20121230 -9606 653435 LOC653435 - - - 7 7q11.21 glucuronidase, beta pseudogene pseudo - - - - 20121230 -9606 653436 ANKRD20A7P CR848007.8 - HGNC:31980 9 9p11.2 ankyrin repeat domain 20 family, member A7, pseudogene pseudo ANKRD20A7P ankyrin repeat domain 20 family, member A7, pseudogene O - 20121230 -9606 653437 AQP12B - INSSA3 HGNC:6096|Ensembl:ENSG00000185176|Vega:OTTHUMG00000152263 2 2q37.3 aquaporin 12B protein-coding AQP12B aquaporin 12B O AQP-12B|aquaporin-12B|insulin synthesis associated 3 20121230 -9606 653440 WASH6P - CXYorf1|FAM39A|WASH HGNC:31685|HPRD:16814 X|Y Xq28;Yq12 WAS protein family homolog 6 pseudogene pseudo WASH6P WAS protein family homolog 6 pseudogene O - 20121230 -9606 653441 PHC1P1 - PHC1B HGNC:34502 12 12q13.2 polyhomeotic homolog 1 (Drosophila) pseudogene 1 pseudo PHC1P1 polyhomeotic homolog 1 (Drosophila) pseudogene 1 O - 20121230 -9606 653447 LOC653447 hCG_1641229 - - 2 2q32.2 heterogeneous nuclear ribonucleoprotein C (C1/C2) pseudogene pseudo - - - - 20121230 -9606 653450 FAM21D RP11-592B15.1 bA592B15.4 HGNC:23418 10 10q11.23 family with sequence similarity 21, member D pseudo FAM21D family with sequence similarity 21, member D O - 20121230 -9606 653453 LOC653453 - - - 9 9p11.2 fibroblast growth factor 7 pseudogene pseudo - - - - 20121209 -9606 653458 LOC653458 - - - 9 9q13 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121209 -9606 653464 SRGAP2C RP11-343N15.3 SRGAP2P1 HGNC:30584|MIM:614704 1 1p11.2 SLIT-ROBO Rho GTPase activating protein 2C protein-coding SRGAP2C SLIT-ROBO Rho GTPase activating protein 2C O SLIT-ROBO Rho GTPase activating protein 2 pseudogene 1|SLIT-ROBO Rho GTPase-activating protein 2C 20121230 -9606 653479 MRPL45P2 - - HGNC:29716 17 17q21.32 mitochondrial ribosomal protein L45 pseudogene 2 pseudo MRPL45P2 mitochondrial ribosomal protein L45 pseudogene 2 O - 20121230 -9606 653483 MLLT4-AS1 RP3-431P23.3 C6orf124|HGC6.4|dJ431P23.3 HGNC:21236 6 6q27 MLLT4 antisense RNA 1 (head to head) miscRNA MLLT4-AS1 MLLT4 antisense RNA 1 (head to head) O - 20121230 -9606 653486 LOC653486 hCG_1741344 - - 17 17p secretoglobin, family 1C, member 1-like protein-coding - - - - 20121230 -9606 653489 RGPD3 - RGP3 HGNC:32416|MIM:612706|Ensembl:ENSG00000153165|Vega:OTTHUMG00000153182 2 2q13 RANBP2-like and GRIP domain containing 3 protein-coding RGPD3 RANBP2-like and GRIP domain containing 3 O ranBP2-like and GRIP domain-containing protein 3 20121230 -9606 653492 PSG10P - PSG10|PSG12 HGNC:9515|MIM:176399 19 19q13.2 pregnancy specific beta-1-glycoprotein 10, pseudogene pseudo PSG10P pregnancy specific beta-1-glycoprotein 10, pseudogene O - 20121230 -9606 653499 LGALS7B - GAL7|Gal-7|HKL-14|LGALS7|PI7 HGNC:34447|Ensembl:ENSG00000178934 19 19q13.2 lectin, galactoside-binding, soluble, 7B protein-coding LGALS7B lectin, galactoside-binding, soluble, 7B O galectin 7B|galectin-7|galectin-7B|keratinocyte lectin 14|lectin galactoside-binding soluble 7|p53-induced gene 1 protein|p53-induced protein 1 20121230 -9606 653501 LOC653501 - - - 9 9p13.1 zinc finger protein 658 pseudogene pseudo - - - - 20121230 -9606 653503 LOC653503 - - - 11 11p15.4 guanine nucleotide binding protein (G protein), gamma 10 pseudogene pseudo - - - - 20121230 -9606 653505 PPIAL4B - COAS-2 HGNC:33994|Ensembl:ENSG00000255854|Vega:OTTHUMG00000013667 1 1q21.1 peptidylprolyl isomerase A (cyclophilin A)-like 4B protein-coding PPIAL4B peptidylprolyl isomerase A (cyclophilin A)-like 4B O chromosome 1-amplified sequence 2|cyclophilin homolog overexpressed in liver cancer|peptidyl-prolyl cis-trans isomerase A-like 4A/B/C|peptidylprolyl cis-trans isomerase A-like 4A/B/C 20121230 -9606 653509 SFTPA1 RP11-589B3.2 COLEC4|PSAP|PSP-A|PSPA|SFTP1|SFTPA1B|SP-A|SP-A1|SPA|SPA1 HGNC:10798|MIM:178630|Ensembl:ENSG00000122852|Vega:OTTHUMG00000018565 10 10q22.3 surfactant protein A1 protein-coding SFTPA1 surfactant protein A1 O 35 kDa pulmonary surfactant-associated protein|alveolar proteinosis protein|collectin-4|pulmonary surfactant-associated protein A1|surfactant protein A1 variant AB'D' 6A2|surfactant protein A1 variant AB'D' 6A3|surfactant protein A1 variant AB'D' 6A4|surfactant protein A1 variant ACD' 6A2|surfactant protein A1 variant ACD' 6A3|surfactant protein A1 variant ACD' 6A4|surfactant protein A1 variant AD' 6A|surfactant protein A1 variant AD' 6A2|surfactant protein A1 variant AD' 6A3|surfactant protein A1 variant AD' 6A4|surfactant protein A1B|surfactant, pulmonary-associated protein A1A|surfactant, pulmonary-associated protein A1B 20121230 -9606 653510 CBWD4P - - HGNC:18520 9 9q13 COBW domain containing 4 pseudogene pseudo CBWD4P COBW domain containing 4 pseudogene O - 20121209 -9606 653513 LOC653513 - - - 1 1q21.1 phosphodiesterase 4D interacting protein pseudogene pseudo - - - - 20121230 -9606 653519 GPR89A RP11-373C9.3 GPR89B|UNQ192 HGNC:31984|MIM:612821|Ensembl:ENSG00000117262|Vega:OTTHUMG00000013738 1 1q21.1 G protein-coupled receptor 89A protein-coding GPR89A G protein-coupled receptor 89A O Golgi pH regulator A|protein GPR89|putative MAPK-activating protein PM01|putative NF-kappa-B-activating protein 90 20121230 -9606 653541 LOC653541 - - - 4 4q35.2 double homeobox, 4-like protein-coding - - - - 20120318 -9606 653543 DUX4L7 - - HGNC:37266|Ensembl:ENSG00000258755|Vega:OTTHUMG00000161314 4 4q35.2 double homeobox 4 like 7 protein-coding DUX4L7 double homeobox 4 like 7 O double homeobox protein 4-like protein 7 20121230 -9606 653544 DUX4L6 - - HGNC:37265|Ensembl:ENSG00000258697|Vega:OTTHUMG00000161313 4 4q35.2 double homeobox 4 like 6 protein-coding DUX4L6 double homeobox 4 like 6 O double homeobox protein 4-like protein 6 20121230 -9606 653545 DUX4L5 - - HGNC:38689|Ensembl:ENSG00000259063|Vega:OTTHUMG00000161315 4 4q35.2 double homeobox 4 like 5 protein-coding DUX4L5 double homeobox 4 like 5 O double homeobox protein 4-like protein 5 20121209 -9606 653548 DUX4L3 - - HGNC:38688|Ensembl:ENSG00000259034|Vega:OTTHUMG00000161319 4 4q35.2 double homeobox 4 like 3 protein-coding DUX4L3 double homeobox 4 like 3 O double homeobox protein 4-like protein 3 20121230 -9606 653550 TP53TG3C - TP53TG3 HGNC:42962|Ensembl:ENSG00000205457|Vega:OTTHUMG00000176458 16 16p11.2 TP53 target 3C protein-coding TP53TG3C TP53 target 3C O TP53-inducible gene 3 protein|TP53-target gene 3 protein 20121209 -9606 653553 HSPB1P1 - HSPBL2 HGNC:5251 9 9q21.13 heat shock 27kDa protein 1 pseudogene 1 pseudo HSPB1P1 heat shock 27kDa protein 1 pseudogene 1 O - 20121230 -9606 653557 LOC653557 - - - 16 16p11.2 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121230 -9606 653562 LOC653562 - - - 16 16p11.2 sodium- and chloride-dependent creatine transporter 1-like pseudo - - - - 20121230 -9606 653566 LOC653566 - - - 1 1p35.3 signal peptidase complex subunit 2 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 653567 TMEM236 RP11-162I21.1 FAM23A|FAM23B|bA162I21.2|bA16O1.2 HGNC:23473|Ensembl:ENSG00000148483|Vega:OTTHUMG00000017753 10 10p12.33 transmembrane protein 236 protein-coding TMEM236 transmembrane protein 236 O family with sequence similarity 23, member A|family with sequence similarity 23, member B 20121216 -9606 653579 CD177P1 - CD177P HGNC:34508 19 19q13.31 CD177 molecule pseudogene 1 pseudo CD177P1 CD177 molecule pseudogene 1 O - 20121230 -9606 653581 LOC653581 - - - 12 12q14.2 uncharacterized LOC653581 unknown - - - - 20120511 -9606 653583 PHLDB3 hCG_1995673 - HGNC:30499|Ensembl:ENSG00000176531|Vega:OTTHUMG00000150693 19 19q13.31 pleckstrin homology-like domain, family B, member 3 protein-coding PHLDB3 pleckstrin homology-like domain, family B, member 3 O pleckstrin homology-like domain family B member 3 20121230 -9606 653588 LOC653588 - - - X Xq11.1 Sjogren syndrome antigen B (autoantigen La) pseudogene pseudo - - - - 20121230 -9606 653590 GGTLC5P - GGT HGNC:33427 22 22q11.21 gamma-glutamyltransferase light chain 5 pseudogene pseudo GGTLC5P gamma-glutamyltransferase light chain 5 pseudogene O - 20121209 -9606 653598 PPIAL4C RP11-277L2.1 COAS-2 HGNC:33995|Ensembl:ENSG00000198161|Vega:OTTHUMG00000013954 1 1q21.2 peptidylprolyl isomerase A (cyclophilin A)-like 4C protein-coding PPIAL4C peptidylprolyl isomerase A (cyclophilin A)-like 4C O PPIase A-like 4A|chromosome 1-amplified sequence 2|cyclophilin homolog overexpressed in liver cancer|peptidyl-prolyl cis-trans isomerase A-like 4A/B/C|peptidylprolyl cis-trans isomerase A-like 4A/B/C 20121230 -9606 653602 LOC653602 - - - 2 2p24.3 uncharacterized LOC653602 unknown - - - - 20121018 -9606 653604 HIST2H3D - - HGNC:25311|Ensembl:ENSG00000183598|Vega:OTTHUMG00000012092 1 1q21.2 histone cluster 2, H3d protein-coding HIST2H3D histone cluster 2, H3d O histone 2, H3d|histone H3.2 20121230 -9606 653606 PRAMEF22 WI2-3308P17.1 PRAMEF3L HGNC:34393|Ensembl:ENSG00000204508|Vega:OTTHUMG00000074726 1 1p36.21 PRAME family member 22 protein-coding PRAMEF22 PRAME family member 22 O - 20121216 -9606 653619 PRAMEF15 - - HGNC:26764|Ensembl:ENSG00000157358|Vega:OTTHUMG00000007921 1 1p36.21 PRAME family member 15 protein-coding PRAMEF15 PRAME family member 15 O PRAME family member 9/15 20121230 -9606 653631 LOC653631 - - - 1 1p31.1 axin interactor, dorsalization associated pseudogene pseudo - - - - 20121230 -9606 653635 WASH7P - FAM39F|WASH5P HGNC:38034 1 1p36.33 WAS protein family homolog 7 pseudogene pseudo WASH7P WAS protein family homolog 7 pseudogene O - 20121230 -9606 653639 LYPLA2P1 - APT|LYPLA2L|dJ570F3.6 HGNC:21069 6 6p21.32 lysophospholipase II pseudogene 1 pseudo LYPLA2P1 lysophospholipase II pseudogene 1 O - 20121230 -9606 653641 GOLGA6C - - HGNC:32206|Ensembl:ENSG00000167195|Vega:OTTHUMG00000172671 15 15q24.2 golgin A6 family, member C protein-coding GOLGA6C golgin A6 family, member C O Golgin subfamily A member 6C|golgi autoantigen, golgin subfamily a, 6C|putative golgin subfamily A member 6C 20121230 -9606 653643 GOLGA6D - - HGNC:32204|Ensembl:ENSG00000140478|Vega:OTTHUMG00000172672 15 15q24.2 golgin A6 family, member D protein-coding GOLGA6D golgin A6 family, member D O golgi autoantigen, golgin subfamily a, 6D|putative golgin subfamily A member 6D 20121230 -9606 653645 TBC1D3P1-DHX40P1 - DHX40P|DHX40P1|TBC1D3P1 HGNC:42362 17 17q23 TBC1D3P1-DHX40P1 readthrough transcribed pseudogene pseudo TBC1D3P1-DHX40P1 TBC1D3P1-DHX40P1 readthrough transcribed pseudogene O - 20121230 -9606 653650 PDPK2 - - - 16 16p13.3 3-phosphoinositide dependent protein kinase-1 pseudogene pseudo - - - - 20121230 -9606 653653 LOC653653 - - - 17 17q23.1 adaptor-related protein complex 1, sigma 2 subunit pseudogene pseudo - - - - 20121230 -9606 653656 MBD3L4 - - HGNC:37206|Ensembl:ENSG00000205718 19 19p13.2 methyl-CpG binding domain protein 3-like 4 protein-coding MBD3L4 methyl-CpG binding domain protein 3-like 4 O MBD3-like 4|MBD3-like protein 4|putative methyl-CpG-binding domain protein 3-like 4 20121230 -9606 653657 MBD3L3 - - HGNC:37205|Ensembl:ENSG00000182315 19 19p13.2 methyl-CpG binding domain protein 3-like 3 protein-coding MBD3L3 methyl-CpG binding domain protein 3-like 3 O MBD3-like 3|MBD3-like protein 3|putative methyl-CpG-binding domain protein 3-like 3 20121230 -9606 653658 RPS23P8 - RPS23_5_1783 HGNC:35982 X Xq13.1 ribosomal protein S23 pseudogene 8 pseudo RPS23P8 ribosomal protein S23 pseudogene 8 O - 20121230 -9606 653659 TMEM183B - C1orf37-DUP HGNC:33205|MIM:611365 3 3q25.1 transmembrane protein 183B protein-coding TMEM183B transmembrane protein 183B O - 20121230 -9606 653665 RPL21P93 - RPL21_36_1027 HGNC:35646 10 10p12.1 ribosomal protein L21 pseudogene 93 pseudo RPL21P93 ribosomal protein L21 pseudogene 93 O - 20121230 -9606 653677 SEC1P - SEC1 HGNC:44149 19 19q13.33 secretory blood group 1, pseudogene pseudo SEC1P secretory blood group 1, pseudogene O - 20121230 -9606 653687 FAM226B hCG_1731871 CXorf50B|LINC00246B|NCRNA00246B HGNC:31964 X Xq13.2 family with sequence similarity 226, member B (non-protein coding) miscRNA FAM226B family with sequence similarity 226, member B (non-protein coding) O - 20121230 -9606 653689 GSTT2B - GSTT2P HGNC:33437|Ensembl:ENSG00000133433|Vega:OTTHUMG00000150774 22 22q11.23 glutathione S-transferase theta 2B (gene/pseudogene) protein-coding GSTT2B glutathione S-transferase theta 2B (gene/pseudogene) O GST class-theta-2|glutathione S-transferase theta 2|glutathione S-transferase theta-2|glutathione S-transferase theta-2B 20121230 -9606 653691 FAM115D - FAM139B HGNC:33603 7 7q35 family with sequence similarity 139, member B pseudo FAM115D family with sequence similarity 115, member D (pseudogene) O - 20121230 -9606 653698 LOC653698 - - - 11 11p11.12 solute carrier family 25 (pyrimidine nucleotide carrier), member 33 pseudogene pseudo - - - - 20121230 -9606 653702 RPL7P9 RP11-122C9.1 RPL7_3_75 HGNC:37028 1 1p21.3 ribosomal protein L7 pseudogene 9 pseudo RPL7P9 ribosomal protein L7 pseudogene 9 O - 20121230 -9606 653707 LOC653707 - - - X Xp22.11 phosducin-like 2 pseudogene pseudo - - - - 20121230 -9606 653712 LOC653712 - - - 3 3q21.3 intraflagellar transport 122 homolog (Chlamydomonas) pseudogene pseudo - - - - 20121230 -9606 653720 GOLGA8M - - HGNC:44404|Ensembl:ENSG00000188626|Vega:OTTHUMG00000176338 15 15q13.1 golgin A8 family, member M protein-coding GOLGA8M golgin A8 family, member M O Putative golgin subfamily A member 6-like protein 7 20121230 -9606 653737 RPL21P119 - RPL21_56_1471 HGNC:35614 16 16p13.2 ribosomal protein L21 pseudogene 119 pseudo RPL21P119 ribosomal protein L21 pseudogene 119 O - 20121230 -9606 653739 LOC653739 - - - 7 7q33 uncharacterized LOC653739 unknown - - - - 20121230 -9606 653753 VN1R6P - VNR19I2|ZVNH2|ZVNR2 HGNC:13712 19 19q13.42 vomeronasal 1 receptor 6 pseudogene pseudo VN1R6P vomeronasal 1 receptor 6 pseudogene O - 20121230 -9606 653758 TPM3P6 - - HGNC:39169 19 19q13.42 tropomyosin 3 pseudogene 6 pseudo TPM3P6 tropomyosin 3 pseudogene 6 O - 20121230 -9606 653773 RPL31P17 - RPL31_4_330 HGNC:36995 2 2q36.1 ribosomal protein L31 pseudogene 17 pseudo RPL31P17 ribosomal protein L31 pseudogene 17 O - 20121230 -9606 653781 POTEJ - POTE2beta HGNC:37094|Ensembl:ENSG00000222038|Vega:OTTHUMG00000154050 2 2q21.1 POTE ankyrin domain family, member J protein-coding POTEJ POTE ankyrin domain family, member J O - 20121230 -9606 653784 MZT2A - FAM128A|MOZART2A HGNC:33187|MIM:613449|Ensembl:ENSG00000173272|Vega:OTTHUMG00000153606 2 2q21.1 mitotic spindle organizing protein 2A protein-coding MZT2A mitotic spindle organizing protein 2A O family with sequence similarity 128, member A|mitotic-spindle organizing protein 2A|mitotic-spindle organizing protein associated with a ring of gamma-tubulin 2A 20121230 -9606 653786 LOC653786 - - - 16 16p12.2 otoancorin pseudogene pseudo - - - - 20121230 -9606 653789 RPL23AP25 - RPL23A_7_192 HGNC:35672 1 1q44 ribosomal protein L23a pseudogene 25 pseudo RPL23AP25 ribosomal protein L23a pseudogene 25 O - 20121230 -9606 653794 TRIM60P14 - - HGNC:38486 4 4q32.3 tripartite motif containing 60 pseudogene 14 pseudo TRIM60P14 tripartite motif containing 60 pseudogene 14 O - 20121230 -9606 653805 RPS27P8 - RPS27_1_148 HGNC:36022 1 1q32.1 ribosomal protein S27 pseudogene 8 pseudo RPS27P8 ribosomal protein S27 pseudogene 8 O - 20121230 -9606 653808 ZG16 hCG_1641409 JCLN|JCLN1|ZG16A HGNC:30961|Ensembl:ENSG00000174992|Vega:OTTHUMG00000177139 16 16p11.2 zymogen granule protein 16 protein-coding ZG16 zymogen granule protein 16 O jacalin-like lectin domain containing|secretory lectin ZG16|zymogen granule membrane protein 16|zymogen granule protein 16 homolog 20121230 -9606 653809 FAM74A5 - - HGNC:34035 9 9p13.1 family with sequence similarity 74, member A5 pseudo FAM74A5 family with sequence similarity 74, member A5 O - 20121209 -9606 653820 FAM72B RP11-439A17.6 p17 HGNC:24805|MIM:614711|Ensembl:ENSG00000188610|Vega:OTTHUMG00000040902 1 1p11.2 family with sequence similarity 72, member B protein-coding FAM72B family with sequence similarity 72, member B O amyloid-beta peptide-induced protein p17|protein FAM72B 20121230 -9606 653857 ACTR3C - ARP11 HGNC:37282|Ensembl:ENSG00000106526|Vega:OTTHUMG00000158323 7 7q36.1 ARP3 actin-related protein 3 homolog C (yeast) protein-coding ACTR3C ARP3 actin-related protein 3 homolog C (yeast) O actin-related Arp11|actin-related protein 11|actin-related protein 3C 20121230 -9606 653895 LOC653895 - - - 10 10q11.23 geranylgeranyl transferase type-1 subunit beta-like pseudo - - - - 20121230 -9606 653924 LOC653924 - - - 2 2q11.2 glycerol-3-phosphate acyltransferase 2, mitochondrial pseudogene pseudo - - - - 20121230 -9606 654029 RPS10P15 - RPS10_3_844 HGNC:35860 7 7q32.1 ribosomal protein S10 pseudogene 15 pseudo RPS10P15 ribosomal protein S10 pseudogene 15 O - 20121230 -9606 654170 RPS16P8 - RPS16_4_1529 HGNC:35608 17 17q11.1 ribosomal protein S16 pseudogene 8 pseudo RPS16P8 ribosomal protein S16 pseudogene 8 O - 20121230 -9606 654231 OCM hCG_18255 OCM1|OM|ONCM HGNC:8105|MIM:164795|Ensembl:ENSG00000122543|Vega:OTTHUMG00000155499 7 7p22.1 oncomodulin protein-coding OCM oncomodulin O hCG18255|oncomodulin 1|oncomodulin-1|parvalbumin beta 20121230 -9606 654254 ZNF732 hCG_1771830 - HGNC:37138 4 4p16.3 zinc finger protein 732 protein-coding ZNF732 zinc finger protein 732 O zinc finger protein LOC654254 20121230 -9606 654319 SNORA5A - ACA5|ACA5A/B/C HGNC:32588 7 7p13 small nucleolar RNA, H/ACA box 5A snoRNA SNORA5A small nucleolar RNA, H/ACA box 5A O - 20121230 -9606 654320 SNORA8 - ACA8 HGNC:32596 11 11q21 small nucleolar RNA, H/ACA box 8 snoRNA SNORA8 small nucleolar RNA, H/ACA box 8 O - 20121230 -9606 654321 SNORA75 - U23 HGNC:32661 2 2q37.1 small nucleolar RNA, H/ACA box 75 snoRNA SNORA75 small nucleolar RNA, H/ACA box 75 O - 20121230 -9606 654322 SNORA13 - ACA13 HGNC:32601 5 5q22.2 small nucleolar RNA, H/ACA box 13 snoRNA SNORA13 small nucleolar RNA, H/ACA box 13 O - 20121230 -9606 654337 BCYRN1P3 - - HGNC:39833 13 13q11 brain cytoplasmic RNA 1, pseudogene 3 pseudo BCYRN1P3 brain cytoplasmic RNA 1, pseudogene 3 O - 20121230 -9606 654338 LOC654338 - - - 21 21q11.2 brain cytoplasmic RNA 1 (non-protein coding) pseudogene pseudo - - - - 20121230 -9606 654340 LOC654340 - - - 3 3p13 RNA-binding region (RNP1, RRM) containing 3 pseudogene pseudo - - - - 20121230 -9606 654341 TBC1D3G - - HGNC:29860|MIM:610810|Ensembl:ENSG00000161583|Vega:OTTHUMG00000132711 17 17q12 TBC1 domain family, member 3G protein-coding TBC1D3G TBC1 domain family, member 3G O TBC1 domain family member 3G 20121230 -9606 654342 LOC654342 - - - 2 2p11.1 lymphocyte-specific protein 1 pseudogene pseudo - - - - 20121230 -9606 654346 LGALS9C - - HGNC:33874|Ensembl:ENSG00000171916|Vega:OTTHUMG00000059251 17 17p11.2 lectin, galactoside-binding, soluble, 9C protein-coding LGALS9C lectin, galactoside-binding, soluble, 9C O gal-9C|galectin 9 like|galectin-9-like protein B|galectin-9C|lectin, galactoside-binding, soluble, 9 (galectin 9) pseudogene 20121230 -9606 654348 PRAMEF16 RP11-219C24.2 - HGNC:25767|Ensembl:ENSG00000204488|Vega:OTTHUMG00000002933 1 1p36.21 PRAME family member 16 protein-coding PRAMEF16 PRAME family member 16 O - 20121216 -9606 654350 RPL9P25 - RPL9_13_1445 HGNC:36112 15 15q22.31 ribosomal protein L9 pseudogene 25 pseudo RPL9P25 ribosomal protein L9 pseudogene 25 O - 20121230 -9606 654364 NME1-NME2 hCG_2001850 NM23-LV|NMELV HGNC:33531|Ensembl:ENSG00000011052|Vega:OTTHUMG00000137475 17 17q21.3 NME1-NME2 readthrough protein-coding NME1-NME2 NME1-NME2 readthrough O NME1-NME2 protein|NME1-NME2 readthrough transcript 20121230 -9606 654365 RPS27P3 HC13216 RPS27_8_1194 HGNC:17445 12 12p13.32 ribosomal protein S27 pseudogene 3 pseudo RPS27P3 ribosomal protein S27 pseudogene 3 O - 20121230 -9606 654369 RPL37P5 - RPL37_12_1377 HGNC:23549 14 14q23.1 ribosomal protein L37 pseudogene 5 pseudo RPL37P5 ribosomal protein L37 pseudogene 5 O - 20121230 -9606 654370 RPL7AP3 - - HGNC:23553 14 14q13.2 ribosomal protein L7a pseudogene 3 pseudo RPL7AP3 ribosomal protein L7a pseudogene 3 O - 20121230 -9606 654371 RPS15AP4 - RPS15A_20_1378 HGNC:23559 14 14q23.1 ribosomal protein S15a pseudogene 4 pseudo RPS15AP4 ribosomal protein S15a pseudogene 4 O - 20121230 -9606 654376 RPL12P9 - RPL12_18_1725 HGNC:23766 21 21q21.3 ribosomal protein L12 pseudogene 9 pseudo RPL12P9 ribosomal protein L12 pseudogene 9 O - 20121230 -9606 654377 CHES1L1 - C18orf7 HGNC:23778 18 18q21.32 checkpoint suppressor 1-like 1 protein-coding CHES1L1 checkpoint suppressor 1-like 1 O - 20120318 -9606 654381 RPL7P5 - RPL7_18_1464 HGNC:28886 15 15q26.3 ribosomal protein L7 pseudogene 5 pseudo RPL7P5 ribosomal protein L7 pseudogene 5 O - 20121230 -9606 654382 RPL19P2 - RPL19_3_373 HGNC:29946 3 3p14.3 ribosomal protein L19 pseudogene 2 pseudo RPL19P2 ribosomal protein L19 pseudogene 2 O - 20121230 -9606 654383 RPL13P4 - HsT16723|RPL13_6_1454 HGNC:31027 15 15q24.2 ribosomal protein L13 pseudogene 4 pseudo RPL13P4 ribosomal protein L13 pseudogene 4 O - 20121230 -9606 654385 RPL21P15 - HsT18206|RPL21_54_1444 HGNC:31030 15 15q22.31 ribosomal protein L21 pseudogene 15 pseudo RPL21P15 ribosomal protein L21 pseudogene 15 O - 20121230 -9606 654386 RPL26P5 - HsT41398 HGNC:31031 15 15q26.2 ribosomal protein L26 pseudogene 5 pseudo RPL26P5 ribosomal protein L26 pseudogene 5 O - 20121230 -9606 654387 RPL31P6 - HsT19508|RPL31_30_1462 HGNC:31032 15 15q26.1 ribosomal protein L31 pseudogene 6 pseudo RPL31P6 ribosomal protein L31 pseudogene 6 O - 20121230 -9606 654388 RPL32P2 - HsT20607|RPL32_9_1423 HGNC:31033 15 15q14 ribosomal protein L32 pseudogene 2 pseudo RPL32P2 ribosomal protein L32 pseudogene 2 O - 20121230 -9606 654390 RPS27P2 - HsT16324|RPS27_11_1420 HGNC:31035 15 15q11.2 ribosomal protein S27 pseudogene 2 pseudo RPS27P2 ribosomal protein S27 pseudogene 2 O - 20121230 -9606 654391 RPL31P7 - RPL31_22_1578 HGNC:31325 17 17q25.3 ribosomal protein L31 pseudogene 7 pseudo RPL31P7 ribosomal protein L31 pseudogene 7 O - 20121230 -9606 654392 RPL39P4 - RPL39_18_1545 HGNC:31327 17 17q21.1 ribosomal protein L39 pseudogene 4 pseudo RPL39P4 ribosomal protein L39 pseudogene 4 O - 20121230 -9606 654412 FAM138B - F379|bA395L14.6 HGNC:33582 2 2q14.1 family with sequence similarity 138, member B miscRNA FAM138B family with sequence similarity 138, member B O - 20121230 -9606 654427 PCNPP1 - PCNPP HGNC:32440 12 12q24.12 PEST containing nuclear protein pseudogene 1 pseudo PCNPP1 PEST containing nuclear protein pseudogene 1 O - 20121230 -9606 654429 LRTM2 - - HGNC:32443|Ensembl:ENSG00000166159|Vega:OTTHUMG00000168088 12 12p13.33 leucine-rich repeats and transmembrane domains 2 protein-coding LRTM2 leucine-rich repeats and transmembrane domains 2 O leucine-rich repeat and transmembrane domain-containing protein 2 20121230 -9606 654433 LOC654433 - - - 2 2q13 uncharacterized LOC654433 miscRNA - - - - 20121230 -9606 654434 LINC00338 PRO0872 C17orf86|NCRNA00338 HGNC:33099 17 17q25.2 long intergenic non-protein coding RNA 338 miscRNA LINC00338 long intergenic non-protein coding RNA 338 O - 20121230 -9606 654463 FER1L6 - C8ORFK23 HGNC:28065|Ensembl:ENSG00000214814|Vega:OTTHUMG00000164998 8 8q24.1 fer-1-like 6 (C. elegans) protein-coding FER1L6 fer-1-like 6 (C. elegans) O fer-1-like protein 6 20121230 -9606 654466 KGFLP2 - - - 9 9p12 keratinocyte growth factor-like protein 2 pseudo - - - - 20121230 -9606 654480 ATP5G2P4 - - HGNC:42188 X Xp11.4 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) pseudogene 4 pseudo ATP5G2P4 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) pseudogene 4 O - 20121230 -9606 654483 BOLA2B My016 BOLA2 HGNC:32479|Ensembl:ENSG00000169627|Vega:OTTHUMG00000176858 16 16p11.2 bolA homolog 2B (E. coli) protein-coding BOLA2B bolA homolog 2B (E. coli) O BolA-like protein 2 member B|bolA-like 2B|bolA-like protein 2|bolA-like protein 2B 20121230 -9606 654484 ATP5J2P5 - - HGNC:33611 12 12p13.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene 5 pseudo ATP5J2P5 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene 5 O - 20121230 -9606 654485 ATP5J2P4 - - HGNC:32451 17 17q ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene 4 pseudo ATP5J2P4 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene 4 O - 20121230 -9606 654486 ATP5J2P6 - - HGNC:33612 15 15q22 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene 6 pseudo ATP5J2P6 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene 6 O - 20121230 -9606 654499 KIAA0125P2 - FAM30C|HsT16041 HGNC:31024 15 15q11.2 KIAA0125 pseudogene 2 unknown KIAA0125P2 KIAA0125 pseudogene 2 O - 20121021 -9606 654500 H2AFVP1 - H2AFVP|HsT19970 HGNC:31026 15 15q26.1 H2A histone family, member V, pseudogene 1 pseudo H2AFVP1 H2A histone family, member V, pseudogene 1 O - 20121230 -9606 654502 IQCJ - - HGNC:32406|MIM:611622|Ensembl:ENSG00000214216|Ensembl:ENSG00000250588|Vega:OTTHUMG00000162426|Vega:OTTHUMG00000166440 3 3q25.32 IQ motif containing J protein-coding IQCJ IQ motif containing J O IQ domain-containing protein J|calmodulin binding protein 20121230 -9606 654503 HMGB1P9 - HMG1L9|HMGB1L9 HGNC:13320 2 2q35 high mobility group box 1 pseudogene 9 pseudo HMGB1P9 high mobility group box 1 pseudogene 9 O - 20121230 -9606 654504 FAM30B - HsT16028 HGNC:31023 15 15q11.2 family with sequence similarity 30, member B unknown FAM30B family with sequence similarity 30, member B O - 20120318 -9606 654505 H3F3AP1 - HsT18159 HGNC:31028 15 15q15.1 H3 histone, family 3A pseudogene 1 pseudo H3F3AP1 H3 histone, family 3A pseudogene 1 O - 20121230 -9606 654506 RPSAP7 - LAMR1P7|RPSA_16_1024 HGNC:31461 10 10p13 ribosomal protein SA pseudogene 7 pseudo RPSAP7 ribosomal protein SA pseudogene 7 O - 20121230 -9606 654780 LOC654780 - - - 16 16q24.1 SFPQ unknown - - - - 20121230 -9606 654783 IFNNP1 - - HGNC:32009 9 9p21.3 interferon, nu 1, pseudogene pseudo IFNNP1 interferon, nu 1, pseudogene O - 20121230 -9606 654790 PCP4L1 - IQM1 HGNC:20448|Ensembl:ENSG00000248485|Vega:OTTHUMG00000034340 1 1q23.3 Purkinje cell protein 4 like 1 protein-coding PCP4L1 Purkinje cell protein 4 like 1 O PCP4-like protein 1|Purkinje cell protein 4-like protein 1 20121230 -9606 654813 P2RY10P1 - GPR121P|P2Y10P1 HGNC:19063 X Xq21.1 purinergic receptor P2Y, G-protein coupled, 10 pseudogene 1 pseudo P2RY10P1 purinergic receptor P2Y, G-protein coupled, 10 pseudogene 1 O - 20120318 -9606 654816 NCF1B - NCF-1B|SH3PXD1B HGNC:32522 7 7q11.23 neutrophil cytosolic factor 1B pseudogene pseudo NCF1B neutrophil cytosolic factor 1B pseudogene O - 20121230 -9606 654817 NCF1C - SH3PXD1C HGNC:32523|HPRD:01990 7 7q11.23 neutrophil cytosolic factor 1C pseudogene pseudo NCF1C neutrophil cytosolic factor 1C pseudogene O - 20121230 -9606 654835 FAM138C RP11-143M1.1 F379 HGNC:32333 9 9p24.3 family with sequence similarity 138, member C miscRNA FAM138C family with sequence similarity 138, member C O - 20121216 -9606 654841 LOC654841 - - - 2 2q36-q37 uncharacterized LOC654841 unknown - - - - 20121230 -9606 664611 H3F3AP2 - H3F3CP HGNC:19823 14 14q11.2 H3 histone, family 3A pseudogene 2 pseudo H3F3AP2 H3 histone, family 3A pseudogene 2 O - 20121230 -9606 664612 MIR539 - MIRN539|hsa-mir-539 HGNC:32529|miRBase:MI0003514 14 14q32.31 microRNA 539 miscRNA MIR539 microRNA 539 O - 20121230 -9606 664613 MIR544A - MIR544|MIRN544|hsa-mir-544|hsa-mir-544a HGNC:32530|miRBase:MI0003515 14 - microRNA 544a miscRNA MIR544A microRNA 544a O - 20121230 -9606 664614 MIR545 - MIRN545|hsa-mir-545 HGNC:32531|miRBase:MI0003516 X - microRNA 545 miscRNA MIR545 microRNA 545 O - 20121230 -9606 664615 MIR376A2 - MIR376A-2|MIRN376A-2|MIRN376A2 HGNC:32532|MIM:610960|miRBase:MI0003529 14 14q32.31 microRNA 376a-2 miscRNA MIR376A2 microRNA 376a-2 O - 20121230 -9606 664616 MIR487B - MIRN487B HGNC:32533|miRBase:MI0003530 14 14q32.31 microRNA 487b miscRNA MIR487B microRNA 487b O - 20121230 -9606 664617 MIR542 - MIRN542|hsa-mir-542 HGNC:32534|miRBase:MI0003686 X Xq26.3 microRNA 542 miscRNA MIR542 microRNA 542 O - 20121230 -9606 664618 HSP90AB4P - HSP90Bd HGNC:32538 15 15q22.1 heat shock protein 90kDa alpha (cytosolic), class B member 4, pseudogene pseudo HSP90AB4P heat shock protein 90kDa alpha (cytosolic), class B member 4, pseudogene O - 20121230 -9606 664629 LOC664629 - - - - - unknown transcript unknown - - - - 20120508 -9606 664701 ZNF826P - ZNF826 HGNC:33875 19 19p12 zinc finger protein 826, pseudogene pseudo ZNF826P zinc finger protein 826, pseudogene O - 20121211 -9606 664709 HNRNPA1P10 - HNRPA1L-2 HGNC:39128 19 19p13.2 heterogeneous nuclear ribonucleoprotein A1 pseudogene 10 pseudo HNRNPA1P10 heterogeneous nuclear ribonucleoprotein A1 pseudogene 10 O - 20121230 -9606 664721 HNRNPA1P27 - HNRPA1P5 HGNC:39545 X Xq22 heterogeneous nuclear ribonucleoprotein A1 pseudogene 27 pseudo HNRNPA1P27 heterogeneous nuclear ribonucleoprotein A1 pseudogene 27 O - 20121230 -9606 664722 HNRNPA1P26 - HNRPA1P6 HGNC:39544 X Xq22 heterogeneous nuclear ribonucleoprotein A1 pseudogene 26 pseudo HNRNPA1P26 heterogeneous nuclear ribonucleoprotein A1 pseudogene 26 O - 20121230 -9606 664728 CMD1Q - - HGNC:32552|MIM:609915 7 7q22.3-q31.1 cardiomyopathy, dilated 1Q (autosomal dominant) unknown CMD1Q cardiomyopathy, dilated 1Q (autosomal dominant) O - 20120622 -9606 664780 MYP12 - - HGNC:32551|MIM:609995 2 2q37.1 myopia 12 (high grade, autosomal dominant) unknown MYP12 myopia 12 (high grade, autosomal dominant) O - 20120622 -9606 677662 PARK12 - - HGNC:34510|MIM:300557 X Xq21-q25 Parkinson disease 12 (susceptibility) unknown PARK12 Parkinson disease 12 (susceptibility) O - 20120622 -9606 677663 PAND3 - - MIM:609985 4 4q31-q34 panic disorder 3 unknown - - - - 20120622 -9606 677679 SCARNA3 - HBI-100 HGNC:32577 1 1q25.1 small Cajal body-specific RNA 3 miscRNA SCARNA3 small Cajal body-specific RNA 3 O - 20121230 -9606 677681 SCARNA20 - ACA66 HGNC:32578 17 17q23.2 small Cajal body-specific RNA 20 miscRNA SCARNA20 small Cajal body-specific RNA 20 O - 20121230 -9606 677739 LINC00108 LL0YNC03-29C1.1 CXYorf11|NCRNA00108 HGNC:31847 X|Y Xp22.33;Yp11.32 long intergenic non-protein coding RNA 108 pseudo LINC00108 long intergenic non-protein coding RNA 108 O - 20121230 -9606 677759 LOC677759 - - - 10 10q23.2 uncharacterized LOC677759 unknown - - - - 20121017 -9606 677762 LOC677762 - - - 3 3q25.1 Sin3A-associated protein, 30kDa pseudogene pseudo - - - - 20121230 -9606 677763 SCARNA21 - ACA68 HGNC:32579 17 17p13.1 small Cajal body-specific RNA 21 miscRNA SCARNA21 small Cajal body-specific RNA 21 O - 20121230 -9606 677764 MYP13 - - HGNC:32582|MIM:300613 X Xq23-q25 myopia 13 unknown MYP13 myopia 13 O - 20120622 -9606 677765 SCARNA18 - U109 HGNC:32559|MIM:611329 5 5q14.2 small Cajal body-specific RNA 18 miscRNA SCARNA18 small Cajal body-specific RNA 18 O - 20121230 -9606 677766 SCARNA2 - HBII-382|mgU2-25/61 HGNC:32558 1 1q13.1 small Cajal body-specific RNA 2 miscRNA SCARNA2 small Cajal body-specific RNA 2 O - 20121230 -9606 677767 SCARNA7 - U90 HGNC:32563 3 3q25.22 small Cajal body-specific RNA 7 miscRNA SCARNA7 small Cajal body-specific RNA 7 O - 20121230 -9606 677768 SCARNA13 - U93 HGNC:32570 14 14q32.12 small Cajal body-specific RNA 13 miscRNA SCARNA13 small Cajal body-specific RNA 13 O - 20121230 -9606 677769 SCARNA17 - U91 HGNC:32574 18 18q21.1 small Cajal body-specific RNA 17 miscRNA SCARNA17 small Cajal body-specific RNA 17 O - 20121230 -9606 677770 SCARNA22 - ACA11 HGNC:32580 4 4p16.3 small Cajal body-specific RNA 22 miscRNA SCARNA22 small Cajal body-specific RNA 22 O - 20121230 -9606 677771 SCARNA4 - ACA26 HGNC:32560 1 1q22 small Cajal body-specific RNA 4 miscRNA SCARNA4 small Cajal body-specific RNA 4 O - 20121230 -9606 677772 SCARNA6 - U88 HGNC:32562 2 2q37.1 small Cajal body-specific RNA 6 miscRNA SCARNA6 small Cajal body-specific RNA 6 O - 20121230 -9606 677773 SCARNA23 - ACA12 HGNC:32581 X Xp22.11 small Cajal body-specific RNA 23 miscRNA SCARNA23 small Cajal body-specific RNA 23 O - 20121230 -9606 677774 SCARNA1 - ACA35 HGNC:32555 1 1p35.3 small Cajal body-specific RNA 1 miscRNA SCARNA1 small Cajal body-specific RNA 1 O - 20121230 -9606 677775 SCARNA5 - U87 HGNC:32561 2 2q37.1 small Cajal body-specific RNA 5 miscRNA SCARNA5 small Cajal body-specific RNA 5 O - 20121230 -9606 677776 SCARNA8 - U92 HGNC:32564 9 9p22.1 small Cajal body-specific RNA 8 miscRNA SCARNA8 small Cajal body-specific RNA 8 O - 20121230 -9606 677777 SCARNA12 - U89 HGNC:32569 12 12p13.31 small Cajal body-specific RNA 12 miscRNA SCARNA12 small Cajal body-specific RNA 12 O - 20121230 -9606 677778 SCARNA15 - ACA45 HGNC:32572|MIM:612675 15 15q25.2 small Cajal body-specific RNA 15 miscRNA SCARNA15 small Cajal body-specific RNA 15 O - 20121230 -9606 677779 LINC00488 - C3orf66 HGNC:32675 3 3q13.13 long intergenic non-protein coding RNA 488 miscRNA LINC00488 long intergenic non-protein coding RNA 488 O - 20121230 -9606 677780 SCARNA11 - ACA57 HGNC:32568 12 12p13.31 small Cajal body-specific RNA 11 miscRNA SCARNA11 small Cajal body-specific RNA 11 O - 20121230 -9606 677781 SCARNA16 - ACA47 HGNC:32573 17 17q25.2 small Cajal body-specific RNA 16 miscRNA SCARNA16 small Cajal body-specific RNA 16 O - 20121230 -9606 677784 FAM138D - F379 HGNC:33583 12 12p13.33 family with sequence similarity 138, member D miscRNA FAM138D family with sequence similarity 138, member D O - 20121230 -9606 677790 TMEM78 - - HGNC:32307 1 1q42.13 transmembrane protein 78 unknown TMEM78 transmembrane protein 78 O - 20121021 -9606 677792 SNORA1 - ACA1 HGNC:32557 11 11q21 small nucleolar RNA, H/ACA box 1 snoRNA SNORA1 small nucleolar RNA, H/ACA box 1 O - 20121230 -9606 677793 SNORA2A - ACA2A HGNC:32584 12 12q13.11 small nucleolar RNA, H/ACA box 2A snoRNA SNORA2A small nucleolar RNA, H/ACA box 2A O - 20121230 -9606 677794 SNORA2B - ACA2b HGNC:32585 12 12q13.11 small nucleolar RNA, H/ACA box 2B snoRNA SNORA2B small nucleolar RNA, H/ACA box 2B O - 20121230 -9606 677795 SNORA5B - ACA5b HGNC:32589 7 7p13 small nucleolar RNA, H/ACA box 5B snoRNA SNORA5B small nucleolar RNA, H/ACA box 5B O - 20121230 -9606 677796 SNORA5C - ACA5c HGNC:32590|MIM:611335 7 7p13 small nucleolar RNA, H/ACA box 5C snoRNA SNORA5C small nucleolar RNA, H/ACA box 5C O - 20121230 -9606 677797 SNORA7B - ACA7B HGNC:32593 3 3q21.3 small nucleolar RNA, H/ACA box 7B snoRNA SNORA7B small nucleolar RNA, H/ACA box 7B O - 20121230 -9606 677798 SNORA9 - ACA9 HGNC:32597 7 7p13 small nucleolar RNA, H/ACA box 9 snoRNA SNORA9 small nucleolar RNA, H/ACA box 9 O - 20121230 -9606 677799 SNORA11 - SNORA11A|U107 HGNC:32599|MIM:300662 X Xp11.21 small nucleolar RNA, H/ACA box 11 snoRNA SNORA11 small nucleolar RNA, H/ACA box 11 O - 20121230 -9606 677800 SNORA12 - U108 HGNC:32600|MIM:611330 10 10q24.31 small nucleolar RNA, H/ACA box 12 snoRNA SNORA12 small nucleolar RNA, H/ACA box 12 O - 20121230 -9606 677801 SNORA14A - ACA14a HGNC:32602 7 7q11.23 small nucleolar RNA, H/ACA box 14A snoRNA SNORA14A small nucleolar RNA, H/ACA box 14A O - 20121230 -9606 677802 SNORA14B - ACA14b HGNC:32603 1 1q42.3 small nucleolar RNA, H/ACA box 14B snoRNA SNORA14B small nucleolar RNA, H/ACA box 14B O - 20121230 -9606 677803 SNORA15 - ACA15 HGNC:32604 7 7p11.2 small nucleolar RNA, H/ACA box 15 snoRNA SNORA15 small nucleolar RNA, H/ACA box 15 O - 20121230 -9606 677804 SNORA17 - ACA17 HGNC:32607 9 9q34.3 small nucleolar RNA, H/ACA box 17 snoRNA SNORA17 small nucleolar RNA, H/ACA box 17 O - 20121230 -9606 677805 SNORA18 - ACA18 HGNC:32608 11 11q21 small nucleolar RNA, H/ACA box 18 snoRNA SNORA18 small nucleolar RNA, H/ACA box 18 O - 20121230 -9606 677806 SNORA20 - ACA20 HGNC:32610 6 6q25.3 small nucleolar RNA, H/ACA box 20 snoRNA SNORA20 small nucleolar RNA, H/ACA box 20 O - 20121230 -9606 677807 SNORA22 - ACA22 HGNC:32612 7 7q11.21 small nucleolar RNA, H/ACA box 22 snoRNA SNORA22 small nucleolar RNA, H/ACA box 22 O - 20121230 -9606 677808 SNORA23 - ACA23 HGNC:32613 11 11p15.4 small nucleolar RNA, H/ACA box 23 snoRNA SNORA23 small nucleolar RNA, H/ACA box 23 O - 20121230 -9606 677809 SNORA24 - ACA24 HGNC:32614 4 4q26 small nucleolar RNA, H/ACA box 24 snoRNA SNORA24 small nucleolar RNA, H/ACA box 24 O - 20121230 -9606 677810 SNORA26 - HBI-6 HGNC:32616|MIM:614626 4 4q12 small nucleolar RNA, H/ACA box 26 snoRNA SNORA26 small nucleolar RNA, H/ACA box 26 O - 20121230 -9606 677811 SNORA28 - ACA28 HGNC:32618 14 14q32.32 small nucleolar RNA, H/ACA box 28 snoRNA SNORA28 small nucleolar RNA, H/ACA box 28 O - 20121230 -9606 677812 SNORA29 - ACA29 HGNC:32619 6 6q25.3 small nucleolar RNA, H/ACA box 29 snoRNA SNORA29 small nucleolar RNA, H/ACA box 29 O - 20121230 -9606 677813 SNORA30 - ACA30 HGNC:32620 16 16p11.2 small nucleolar RNA, H/ACA box 30 snoRNA SNORA30 small nucleolar RNA, H/ACA box 30 O - 20121230 -9606 677814 SNORA31 - ACA31 HGNC:32621 13 13q14.13 small nucleolar RNA, H/ACA box 31 snoRNA SNORA31 small nucleolar RNA, H/ACA box 31 O - 20121230 -9606 677815 SNORA34 - ACA34 HGNC:32624 12 12q13.11 small nucleolar RNA, H/ACA box 34 snoRNA SNORA34 small nucleolar RNA, H/ACA box 34 O - 20121230 -9606 677816 SNORA35 - HBI-36 HGNC:32625 X Xq23 small nucleolar RNA, H/ACA box 35 snoRNA SNORA35 small nucleolar RNA, H/ACA box 35 O - 20121230 -9606 677817 SNORA36A - ACA36 HGNC:32628 X Xq28 small nucleolar RNA, H/ACA box 36A snoRNA SNORA36A small nucleolar RNA, H/ACA box 36A O - 20121230 -9606 677818 SNORA36B - ACA36b HGNC:32629 1 1q41 small nucleolar RNA, H/ACA box 36B snoRNA SNORA36B small nucleolar RNA, H/ACA box 36B O - 20121230 -9606 677819 SNORA37 - ACA37 HGNC:32630 18 18q21.2 small nucleolar RNA, H/ACA box 37 snoRNA SNORA37 small nucleolar RNA, H/ACA box 37 O - 20121230 -9606 677820 SNORA38 - ACA38 HGNC:32631 6 6p21.33 small nucleolar RNA, H/ACA box 38 snoRNA SNORA38 small nucleolar RNA, H/ACA box 38 O - 20121230 -9606 677821 SNORA39 - ACA39 HGNC:32632 20 20q11.23 small nucleolar RNA, H/ACA box 39 snoRNA SNORA39 small nucleolar RNA, H/ACA box 39 O - 20121230 -9606 677822 SNORA40 - ACA40 HGNC:32633 11 11q21 small nucleolar RNA, H/ACA box 40 snoRNA SNORA40 small nucleolar RNA, H/ACA box 40 O - 20121230 -9606 677823 SNORA42 - ACA42 HGNC:32635 1 1q22 small nucleolar RNA, H/ACA box 42 snoRNA SNORA42 small nucleolar RNA, H/ACA box 42 O - 20121230 -9606 677824 SNORA43 - ACA43 HGNC:32636 9 9q34.3 small nucleolar RNA, H/ACA box 43 snoRNA SNORA43 small nucleolar RNA, H/ACA box 43 O - 20121230 -9606 677825 SNORA44 - ACA44 HGNC:32637 1 1p35.3 small nucleolar RNA, H/ACA box 44 snoRNA SNORA44 small nucleolar RNA, H/ACA box 44 O - 20121230 -9606 677826 SNORA45 - ACA3-2 HGNC:32638|MIM:611333 11 11p15.4 small nucleolar RNA, H/ACA box 45 snoRNA SNORA45 small nucleolar RNA, H/ACA box 45 O - 20121230 -9606 677827 SNORA46 - ACA46 HGNC:32639 16 16q21 small nucleolar RNA, H/ACA box 46 snoRNA SNORA46 small nucleolar RNA, H/ACA box 46 O - 20121230 -9606 677828 SNORA47 - HBI-115 HGNC:32640 5 5q13.3 small nucleolar RNA, H/ACA box 47 snoRNA SNORA47 small nucleolar RNA, H/ACA box 47 O - 20121230 -9606 677829 SNORA49 - ACA49 HGNC:32642 12 12q24.33 small nucleolar RNA, H/ACA box 49 snoRNA SNORA49 small nucleolar RNA, H/ACA box 49 O - 20121230 -9606 677830 SNORA50 - ACA50 HGNC:32643 16 16q21 small nucleolar RNA, H/ACA box 50 snoRNA SNORA50 small nucleolar RNA, H/ACA box 50 O - 20121230 -9606 677831 SNORA51 - ACA51 HGNC:32644 20 20p13 small nucleolar RNA, H/ACA box 51 snoRNA SNORA51 small nucleolar RNA, H/ACA box 51 O - 20121230 -9606 677832 SNORA53 - ACA53 HGNC:32646 12 12q23.1 small nucleolar RNA, H/ACA box 53 snoRNA SNORA53 small nucleolar RNA, H/ACA box 53 O - 20121230 -9606 677833 SNORA54 - ACA54 HGNC:32647 11 11p15.4 small nucleolar RNA, H/ACA box 54 snoRNA SNORA54 small nucleolar RNA, H/ACA box 54 O - 20121230 -9606 677834 SNORA55 - ACA55 HGNC:32649 1 1p34.3 small nucleolar RNA, H/ACA box 55 snoRNA SNORA55 small nucleolar RNA, H/ACA box 55 O - 20121230 -9606 677835 SNORA56 - ACA56 HGNC:32650 X Xq28 small nucleolar RNA, H/ACA box 56 snoRNA SNORA56 small nucleolar RNA, H/ACA box 56 O - 20121230 -9606 677836 SNORA58 - ACA58 HGNC:32652 3 3q21.2 small nucleolar RNA, H/ACA box 58 snoRNA SNORA58 small nucleolar RNA, H/ACA box 58 O - 20121230 -9606 677837 SNORA60 - ACA60 HGNC:32654 20 20q11.23 small nucleolar RNA, H/ACA box 60 snoRNA SNORA60 small nucleolar RNA, H/ACA box 60 O - 20121230 -9606 677838 SNORA61 - ACA61 HGNC:32655 1 1p35.3 small nucleolar RNA, H/ACA box 61 snoRNA SNORA61 small nucleolar RNA, H/ACA box 61 O - 20121230 -9606 677839 SNORA71C - U71c HGNC:32656 20 20q11.23 small nucleolar RNA, H/ACA box 71C snoRNA SNORA71C small nucleolar RNA, H/ACA box 71C O - 20121230 -9606 677840 SNORA71D - U71d HGNC:32657 20 20q11.23 small nucleolar RNA, H/ACA box 71D snoRNA SNORA71D small nucleolar RNA, H/ACA box 71D O - 20121230 -9606 677841 SNORA74B - U19-2 HGNC:32660|MIM:611331 5 5q35.1 small nucleolar RNA, H/ACA box 74B snoRNA SNORA74B small nucleolar RNA, H/ACA box 74B O - 20121230 -9606 677842 SNORA76 - ACA62 HGNC:32662 17 17q23.3 small nucleolar RNA, H/ACA box 76 snoRNA SNORA76 small nucleolar RNA, H/ACA box 76 O - 20121230 -9606 677843 SNORA77 - ACA63 HGNC:32663 1 1q32.1 small nucleolar RNA, H/ACA box 77 snoRNA SNORA77 small nucleolar RNA, H/ACA box 77 O - 20121230 -9606 677844 SNORA78 - ACA64 HGNC:32664 16 16p13.3 small nucleolar RNA, H/ACA box 78 snoRNA SNORA78 small nucleolar RNA, H/ACA box 78 O - 20121230 -9606 677845 SNORA79 - ACA65 HGNC:32665 14 14q31.1 small nucleolar RNA, H/ACA box 79 snoRNA SNORA79 small nucleolar RNA, H/ACA box 79 O - 20121230 -9606 677846 SNORA80 - ACA67 HGNC:32666 21 21q22.11 small nucleolar RNA, H/ACA box 80 snoRNA SNORA80 small nucleolar RNA, H/ACA box 80 O - 20121230 -9606 677847 SNORA81 - HBI-61 HGNC:32667|MIM:611334 3 3q27.3 small nucleolar RNA, H/ACA box 81 snoRNA SNORA81 small nucleolar RNA, H/ACA box 81 O - 20121230 -9606 677848 SNORD1A - R38A|snR38A HGNC:32556 17 17q25.1 small nucleolar RNA, C/D box 1A snoRNA SNORD1A small nucleolar RNA, C/D box 1A O - 20121230 -9606 677849 SNORD1B - R38B|snR38B HGNC:32676 17 17q25.1 small nucleolar RNA, C/D box 1B snoRNA SNORD1B small nucleolar RNA, C/D box 1B O - 20121230 -9606 677850 SNORD1C - R38C|snR38C HGNC:32677 17 17q25.1 small nucleolar RNA, C/D box 1C snoRNA SNORD1C small nucleolar RNA, C/D box 1C O - 20121230 -9606 677880 THEM4P1 - - HGNC:32692 12 12p12.1 thioesterase superfamily member 4 pseudogene 1 pseudo THEM4P1 thioesterase superfamily member 4 pseudogene 1 O - 20121230 -9606 677882 SNORA59B - ACA59 HGNC:32658 17 17p11.2 small nucleolar RNA, H/ACA box 59B snoRNA SNORA59B small nucleolar RNA, H/ACA box 59B O - 20121230 -9606 677883 CHTF8P1 RP11-377B2.1 CHTF8P|CTF8P HGNC:35443 X Xp11.3 CTF8, chromosome transmission fidelity factor 8 homolog (S. cerevisiae) pseudogene 1 pseudo CHTF8P1 CTF8, chromosome transmission fidelity factor 8 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 677885 SNORA59A - ACA59 HGNC:32653 1 1p36.21 small nucleolar RNA, H/ACA box 59A snoRNA SNORA59A small nucleolar RNA, H/ACA box 59A O - 20121230 -9606 678655 CD27-AS1 - - HGNC:43896 12 12p13.31 CD27 antisense RNA 1 miscRNA CD27-AS1 CD27 antisense RNA 1 O - 20121230 -9606 678656 ZRF1PS - - - 6 6p21.31-p21.1 zuotin related factor 1 pseudogene pseudo - - - - 20121230 -9606 684959 SNORA25 - ACA25 HGNC:32615 11 11q21 small nucleolar RNA, H/ACA box 25 snoRNA SNORA25 small nucleolar RNA, H/ACA box 25 O - 20121230 -9606 692053 SNORD9 - mgU6-53B HGNC:32705 14 14q11.2 small nucleolar RNA, C/D box 9 snoRNA SNORD9 small nucleolar RNA, C/D box 9 O - 20121230 -9606 692057 SNORD12 - HBII-99|MIR1259|MIRN1259 HGNC:32708 20 20q13.13 small nucleolar RNA, C/D box 12 snoRNA SNORD12 small nucleolar RNA, C/D box 12 O - 20121230 -9606 692058 SNORD11 - HBII-95 HGNC:32707 2 2q33.1 small nucleolar RNA, C/D box 11 snoRNA SNORD11 small nucleolar RNA, C/D box 11 O - 20121230 -9606 692063 SNORA32 - ACA32 HGNC:32622 11 11q21 small nucleolar RNA, H/ACA box 32 snoRNA SNORA32 small nucleolar RNA, H/ACA box 32 O - 20121230 -9606 692072 SNORD5 - mgh28S-2410 HGNC:32702 11 11q21 small nucleolar RNA, C/D box 5 snoRNA SNORD5 small nucleolar RNA, C/D box 5 O - 20121230 -9606 692073 SNORA16A - ACA16 HGNC:32605 1 1p35.3 small nucleolar RNA, H/ACA box 16A snoRNA SNORA16A small nucleolar RNA, H/ACA box 16A O - 20121230 -9606 692075 SNORD6 - mgh28S-2412 HGNC:32703 11 11q21 small nucleolar RNA, C/D box 6 snoRNA SNORD6 small nucleolar RNA, C/D box 6 O - 20121230 -9606 692076 SNORD7 - Z30|mgU6-47 HGNC:32704 17 17q12 small nucleolar RNA, C/D box 7 snoRNA SNORD7 small nucleolar RNA, C/D box 7 O - 20121230 -9606 692084 SNORD13 - RNU13|U13 HGNC:32711 8 8p12 small nucleolar RNA, C/D box 13 snoRNA SNORD13 small nucleolar RNA, C/D box 13 O - 20121230 -9606 692085 SNORD45C - U45C HGNC:32720 1 1p31.1 small nucleolar RNA, C/D box 45C snoRNA SNORD45C small nucleolar RNA, C/D box 45C O - 20121230 -9606 692086 SNORD17 - HBI-43 HGNC:32713 20 20p11.23 small nucleolar RNA, C/D box 17 snoRNA SNORD17 small nucleolar RNA, C/D box 17 O - 20121230 -9606 692087 SNORD49B - U49B HGNC:32721 17 17p11.2 small nucleolar RNA, C/D box 49B snoRNA SNORD49B small nucleolar RNA, C/D box 49B O - 20121230 -9606 692088 SNORD50B - U50'|U50B HGNC:32722|MIM:613264 6 6q14.3 small nucleolar RNA, C/D box 50B snoRNA SNORD50B small nucleolar RNA, C/D box 50B O - 20121230 -9606 692089 SNORD19 - HBII-108 HGNC:32717 3 3p21.1 small nucleolar RNA, C/D box 19 snoRNA SNORD19 small nucleolar RNA, C/D box 19 O - 20121230 -9606 692090 SNORD59B - U59B HGNC:32723 12 12q13.3 small nucleolar RNA, C/D box 59B snoRNA SNORD59B small nucleolar RNA, C/D box 59B O - 20121230 -9606 692091 SNORD23 - HBII-115 HGNC:32718 19 19q13.32 small nucleolar RNA, C/D box 23 snoRNA SNORD23 small nucleolar RNA, C/D box 23 O - 20121230 -9606 692092 SNORD32B - U32B HGNC:32719 6 6p22.1 small nucleolar RNA, C/D box 32B snoRNA SNORD32B small nucleolar RNA, C/D box 32B O - 20121230 -9606 692093 SNORD62B - U62|U62B HGNC:23031 9 9q34.13 small nucleolar RNA, C/D box 62B snoRNA SNORD62B small nucleolar RNA, C/D box 62B O - 20121230 -9606 692094 MSMP - PSMP HGNC:29663|MIM:612191|Ensembl:ENSG00000215183|Vega:OTTHUMG00000019882 9 9p13.3 microseminoprotein, prostate associated protein-coding MSMP microseminoprotein, prostate associated O PC3 prostate cancer cell-secreted microprotein|prostate-associated microseminoprotein 20121230 -9606 692099 FAM86DP - FAM86D HGNC:32659 3 3p12.3 family with sequence similarity 86, member D, pseudogene pseudo FAM86DP family with sequence similarity 86, member D, pseudogene O - 20121230 -9606 692106 SNORD65 - HBII-135 HGNC:32726 17 17p11.2 small nucleolar RNA, C/D box 65 snoRNA SNORD65 small nucleolar RNA, C/D box 65 O - 20121209 -9606 692107 SNORD66 - HBII-142 HGNC:32727 3 3q27.1 small nucleolar RNA, C/D box 66 snoRNA SNORD66 small nucleolar RNA, C/D box 66 O - 20121230 -9606 692108 SNORD67 - HBII-166 HGNC:32728 11 11p11.2 small nucleolar RNA, C/D box 67 snoRNA SNORD67 small nucleolar RNA, C/D box 67 O - 20121230 -9606 692109 SNORD69 - HBII-210 HGNC:32730 3 3p21.1 small nucleolar RNA, C/D box 69 snoRNA SNORD69 small nucleolar RNA, C/D box 69 O - 20121230 -9606 692110 SNORD70 - HBII-234 HGNC:32731 2 2q33.1 small nucleolar RNA, C/D box 70 snoRNA SNORD70 small nucleolar RNA, C/D box 70 O - 20121230 -9606 692111 SNORD71 - HBII-239|MIRN768|hsa-mir-768 HGNC:32732 16 16q22.2 small nucleolar RNA, C/D box 71 snoRNA SNORD71 small nucleolar RNA, C/D box 71 O - 20121230 -9606 692146 RPS26P4 - RPS26_32_1733 HGNC:23775 21 21q22.2 ribosomal protein S26 pseudogene 4 pseudo RPS26P4 ribosomal protein S26 pseudogene 4 O - 20121230 -9606 692147 HMGB1P8 - HMG1L8|HMGB1L8 HGNC:13319 15 15q22 high mobility group box 1 pseudogene 8 pseudo HMGB1P8 high mobility group box 1 pseudogene 8 O - 20121230 -9606 692148 SCARNA10 - U85 HGNC:32567 12 12p13.31 small Cajal body-specific RNA 10 miscRNA SCARNA10 small Cajal body-specific RNA 10 O - 20121230 -9606 692149 SCARNA14 - U100 HGNC:32571 15 15q22.31 small Cajal body-specific RNA 14 miscRNA SCARNA14 small Cajal body-specific RNA 14 O - 20121230 -9606 692157 SNORA16B - U98b HGNC:32606 1 1q32.3 small nucleolar RNA, H/ACA box 16B snoRNA SNORA16B small nucleolar RNA, H/ACA box 16B O - 20121230 -9606 692158 SNORA57 - U99 HGNC:32651 11 11q12.2 small nucleolar RNA, H/ACA box 57 snoRNA SNORA57 small nucleolar RNA, H/ACA box 57 O - 20121230 -9606 692159 GRASPOS - - HGNC:32680 12 12q13.13 GRP1-associated scaffold protein opposite strand unknown GRASPOS GRP1-associated scaffold protein opposite strand O - 20120706 -9606 692195 SNORD75 - U75 HGNC:32735 1 1q25.1 small nucleolar RNA, C/D box 75 snoRNA SNORD75 small nucleolar RNA, C/D box 75 O - 20121230 -9606 692196 SNORD76 - U76 HGNC:32736 1 1q25.1 small nucleolar RNA, C/D box 76 snoRNA SNORD76 small nucleolar RNA, C/D box 76 O - 20121230 -9606 692197 SNORD77 - U77 HGNC:32737 1 1q25.1 small nucleolar RNA, C/D box 77 snoRNA SNORD77 small nucleolar RNA, C/D box 77 O - 20121230 -9606 692198 SNORD78 - U78 HGNC:32738 1 1q25.1 small nucleolar RNA, C/D box 78 snoRNA SNORD78 small nucleolar RNA, C/D box 78 O - 20121230 -9606 692199 SNORD84 - U84 HGNC:32743 6 6p21.33 small nucleolar RNA, C/D box 84 snoRNA SNORD84 small nucleolar RNA, C/D box 84 O - 20121230 -9606 692200 SNORD85 - HBII-251 HGNC:32744 1 1p35.2 small nucleolar RNA, C/D box 85 snoRNA SNORD85 small nucleolar RNA, C/D box 85 O - 20121230 -9606 692201 SNORD86 - U86 HGNC:32745 20 20p13 small nucleolar RNA, C/D box 86 snoRNA SNORD86 small nucleolar RNA, C/D box 86 O - 20121230 -9606 692202 SNORD88A - HBII-180A HGNC:32747 19 19q13.33 small nucleolar RNA, C/D box 88A snoRNA SNORD88A small nucleolar RNA, C/D box 88A O - 20121230 -9606 692203 SNORD88B - HBII-180B HGNC:32748 19 19q13.33 small nucleolar RNA, C/D box 88B snoRNA SNORD88B small nucleolar RNA, C/D box 88B O - 20121230 -9606 692204 SNORD88C - HBII-180C HGNC:32749 19 19q13.33 small nucleolar RNA, C/D box 88C snoRNA SNORD88C small nucleolar RNA, C/D box 88C O - 20121230 -9606 692205 SNORD89 - HBII-289 HGNC:32750 2 2q11.2 small nucleolar RNA, C/D box 89 snoRNA SNORD89 small nucleolar RNA, C/D box 89 O - 20121230 -9606 692206 SNORD90 - HBII-295 HGNC:32751 9 9q33.2 small nucleolar RNA, C/D box 90 snoRNA SNORD90 small nucleolar RNA, C/D box 90 O - 20121230 -9606 692207 SNORD91A - HBII-296a HGNC:32752 17 17p13.3 small nucleolar RNA, C/D box 91A snoRNA SNORD91A small nucleolar RNA, C/D box 91A O - 20121230 -9606 692208 SNORD91B - HBII-296b HGNC:32753 17 17p13.3 small nucleolar RNA, C/D box 91B snoRNA SNORD91B small nucleolar RNA, C/D box 91B O - 20121230 -9606 692209 SNORD92 - HBII-316 HGNC:32754 2 2p23.2 small nucleolar RNA, C/D box 92 snoRNA SNORD92 small nucleolar RNA, C/D box 92 O - 20121230 -9606 692210 SNORD93 - HBII-336 HGNC:32755 7 7p15.3 small nucleolar RNA, C/D box 93 snoRNA SNORD93 small nucleolar RNA, C/D box 93 O - 20121230 -9606 692211 SNORD98 - HBII-419 HGNC:32761 10 10q21.3 small nucleolar RNA, C/D box 98 snoRNA SNORD98 small nucleolar RNA, C/D box 98 O - 20121230 -9606 692212 SNORD99 - HBII-420 HGNC:32762 1 1p35.3 small nucleolar RNA, C/D box 99 snoRNA SNORD99 small nucleolar RNA, C/D box 99 O - 20121230 -9606 692213 SNORD110 - HBII-55 HGNC:32775 20 20p13 small nucleolar RNA, C/D box 110 snoRNA SNORD110 small nucleolar RNA, C/D box 110 O - 20121230 -9606 692214 SNORD111 - HBII-82 HGNC:32776 16 16q22.1 small nucleolar RNA, C/D box 111 snoRNA SNORD111 small nucleolar RNA, C/D box 111 O - 20121230 -9606 692215 SNORD112 - 14q(0) HGNC:32777|MIM:613649 14 14q32.31 small nucleolar RNA, C/D box 112 snoRNA SNORD112 small nucleolar RNA, C/D box 112 O - 20121230 -9606 692216 SNORD113@ - 14q(I) HGNC:32778 14 14q32.31 small nucleolar RNA, C/D box 113 cluster other SNORD113@ small nucleolar RNA, C/D box 113 cluster O - 20120318 -9606 692217 SNORD114@ - 14q(II) HGNC:32779 14 14q32.31 small nucleolar RNA, C/D box 114 cluster other SNORD114@ small nucleolar RNA, C/D box 114 cluster O - 20120318 -9606 692218 SNORD115@ - HBII-52 HGNC:32780 15 15q11.2 small nucleolar RNA, C/D box 115 cluster other SNORD115@ small nucleolar RNA, C/D box 115 cluster O - 20121230 -9606 692219 DFNB65 - - HGNC:28113|MIM:610248 20 20q13.2-q13.32 deafness, autosomal recessive 65 unknown DFNB65 deafness, autosomal recessive 65 O - 20120622 -9606 692220 DFNB62 - - HGNC:29439|MIM:610143 12 12p13.2-p11.23 deafness, autosomal recessive 62 unknown DFNB62 deafness, autosomal recessive 62 O - 20120622 -9606 692222 OPA5 - - HGNC:32787|MIM:610708 22 22q12.1-q13.1 optic atrophy 5 (autosomal dominant) unknown OPA5 optic atrophy 5 (autosomal dominant) O - 20120622 -9606 692223 SNORD97 - U97 HGNC:32760 11 11p15.3 small nucleolar RNA, C/D box 97 snoRNA SNORD97 small nucleolar RNA, C/D box 97 O - 20121230 -9606 692224 FBXO22-AS1 - FBXO22OS|FISTC1OS|HsT18082|NCRNA00053 HGNC:31025 15 15q24.2 FBXO22 antisense RNA 1 miscRNA FBXO22-AS1 FBXO22 antisense RNA 1 O - 20121230 -9606 692225 SNORD94 - U94 HGNC:32756 2 2p11.2 small nucleolar RNA, C/D box 94 snoRNA SNORD94 small nucleolar RNA, C/D box 94 O - 20121230 -9606 692226 SNORD96B - U96b HGNC:32759 X Xq23 small nucleolar RNA, C/D box 96B snoRNA SNORD96B small nucleolar RNA, C/D box 96B O - 20121230 -9606 692227 SNORD104 - U104 HGNC:32768 17 17q23.3 small nucleolar RNA, C/D box 104 snoRNA SNORD104 small nucleolar RNA, C/D box 104 O - 20121230 -9606 692229 SNORD105 - U105 HGNC:32769 19 19p13.2 small nucleolar RNA, C/D box 105 snoRNA SNORD105 small nucleolar RNA, C/D box 105 O - 20121230 -9606 692231 LOC692231 - - - 22 22q11.21 Ras homolog enriched in brain pseudogene pseudo - - - - 20121230 -9606 692232 SNORD3@ - U3|U3A|U3B HGNC:32739 17 17p11.2 small nucleolar RNA, C/D box 3 cluster other SNORD3@ small nucleolar RNA, C/D box 3 cluster O - 20120318 -9606 692233 SNORD117 - U83 HGNC:32742 6 6p21.33 small nucleolar RNA, C/D box 117 snoRNA SNORD117 small nucleolar RNA, C/D box 117 O - 20121230 -9606 692234 SNORD103A - U103 HGNC:32766 1 1p35.2 small nucleolar RNA, C/D box 103A snoRNA SNORD103A small nucleolar RNA, C/D box 103A O - 20121230 -9606 692235 SNORD103B - U103B HGNC:32767 1 1p35.2 small nucleolar RNA, C/D box 103B snoRNA SNORD103B small nucleolar RNA, C/D box 103B O - 20121230 -9606 692236 SNORD116@ - HBII-85|PET1|PWCR1 HGNC:32781 15 15q11.2 small nucleolar RNA, C/D box 116 cluster other SNORD116@ small nucleolar RNA, C/D box 116 cluster O - 20121230 -9606 692246 LOC692246 - - - 22 22q13.2-q13.3 cytochrome c oxidase assembly factor 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 692247 LOC692247 - - - 11 11p15.5 uncharacterized LOC692247 unknown - - - - 20121230 -9606 692312 PPAN-P2RY11 - - HGNC:33526|Ensembl:ENSG00000130810|Ensembl:ENSG00000243207|Vega:OTTHUMG00000150165 19 19p13 PPAN-P2RY11 readthrough protein-coding PPAN-P2RY11 PPAN-P2RY11 readthrough O PPAN-P2RY11 protein|PPAN-P2RY11 readthrough transcript|SSF1/P2Y11 protein 20121230 -9606 693120 MIR33B - MIRN33B|hsa-mir-33b HGNC:32791|MIM:613486|miRBase:MI0003646 17 17p11.2 microRNA 33b miscRNA MIR33B microRNA 33b O - 20121230 -9606 693121 MIR411 - MIRN411|hsa-mir-411 HGNC:32792|miRBase:MI0003675 14 14q32.31 microRNA 411 miscRNA MIR411 microRNA 411 O - 20121230 -9606 693122 MIR421 - MIRN421|hsa-mir-421 HGNC:32793|miRBase:MI0003685 X Xq13.2 microRNA 421 miscRNA MIR421 microRNA 421 O - 20121230 -9606 693123 MIR449B - MIRN449B HGNC:32794|MIM:613132|miRBase:MI0003673 5 5q11.2 microRNA 449b miscRNA MIR449B microRNA 449b O - 20121230 -9606 693124 MIR532 - MIRN532|hsa-mir-532 HGNC:32795|miRBase:MI0003205 X Xp11.23 microRNA 532 miscRNA MIR532 microRNA 532 O - 20121209 -9606 693125 MIR548A1 - MIRN548A1 HGNC:32796|miRBase:MI0003593 6 - microRNA 548a-1 miscRNA MIR548A1 microRNA 548a-1 O - 20121230 -9606 693126 MIR548A2 - MIRN548A2 HGNC:32797|miRBase:MI0003598 6 - microRNA 548a-2 miscRNA MIR548A2 microRNA 548a-2 O - 20121230 -9606 693127 MIR548A3 - MIRN548A3 HGNC:32798|miRBase:MI0003612 8 - microRNA 548a-3 miscRNA MIR548A3 microRNA 548a-3 O - 20121209 -9606 693128 MIR548B - MIRN548B HGNC:32799|miRBase:MI0003596 6 6q22.31 microRNA 548b miscRNA MIR548B microRNA 548b O - 20121230 -9606 693129 MIR548C - MIRN548C HGNC:32800|miRBase:MI0003630 12 - microRNA 548c miscRNA MIR548C microRNA 548c O - 20121230 -9606 693130 MIR548D1 - MIRN548D1 HGNC:32801|miRBase:MI0003668 8 - microRNA 548d-1 miscRNA MIR548D1 microRNA 548d-1 O - 20121230 -9606 693131 MIR548D2 - MIRN548D2 HGNC:32802|miRBase:MI0003671 17 - microRNA 548d-2 miscRNA MIR548D2 microRNA 548d-2 O - 20121230 -9606 693132 MIR549 - MIRN549|hsa-mir-549 HGNC:32803|miRBase:MI0003679 15 15q25.1 microRNA 549 miscRNA MIR549 microRNA 549 O - 20121230 -9606 693133 MIR550A1 - MIR550-1|MIRN550-1|hsa-mir-550a-1 HGNC:32804|miRBase:MI0003600 7 7p14.3 microRNA 550a-1 miscRNA MIR550A1 microRNA 550a-1 O - 20121230 -9606 693134 MIR550A2 - MIR550-2|MIRN550-2|hsa-mir-550a-2 HGNC:32805|miRBase:MI0003601 7 7p14.3 microRNA 550a-2 miscRNA MIR550A2 microRNA 550a-2 O - 20121230 -9606 693135 MIR551A - MIRN551A HGNC:32806|miRBase:MI0003556 1 1p36.32 microRNA 551a miscRNA MIR551A microRNA 551a O - 20121230 -9606 693136 MIR551B - MIRN551B HGNC:32807|miRBase:MI0003575 3 3q26.2 microRNA 551b miscRNA MIR551B microRNA 551b O - 20121230 -9606 693137 MIR552 - MIRN552|hsa-mir-552 HGNC:32808|miRBase:MI0003557 1 1p34.3 microRNA 552 miscRNA MIR552 microRNA 552 O - 20121230 -9606 693138 MIR553 - MIRN553|hsa-mir-553 HGNC:32809|miRBase:MI0003558 1 1p21.2 microRNA 553 miscRNA MIR553 microRNA 553 O - 20121230 -9606 693139 MIR554 - MIRN554|hsa-mir-554 HGNC:32810|miRBase:MI0003559 1 1q21.3 microRNA 554 miscRNA MIR554 microRNA 554 O - 20121230 -9606 693140 MIR555 - MIRN555|hsa-mir-555 HGNC:32811|miRBase:MI0003561 1 1q22 microRNA 555 miscRNA MIR555 microRNA 555 O - 20121230 -9606 693141 MIR556 - MIRN556|hsa-mir-556 HGNC:32812|miRBase:MI0003562 1 1q23.3 microRNA 556 miscRNA MIR556 microRNA 556 O - 20121230 -9606 693142 MIR557 - MIRN557|hsa-mir-557 HGNC:32813|miRBase:MI0003563 1 1q24.2 microRNA 557 miscRNA MIR557 microRNA 557 O - 20121230 -9606 693143 MIR558 - MIRN558|hsa-mir-558 HGNC:32814|miRBase:MI0003564 2 2p22.3 microRNA 558 miscRNA MIR558 microRNA 558 O - 20121230 -9606 693144 MIR559 - MIRN559|hsa-mir-559 HGNC:32815|miRBase:MI0003565 2 2p21 microRNA 559 miscRNA MIR559 microRNA 559 O - 20121230 -9606 693146 MIR561 - MIRN561|hsa-mir-561 HGNC:32817|miRBase:MI0003567 2 2q32.1 microRNA 561 miscRNA MIR561 microRNA 561 O - 20121230 -9606 693147 MIR562 - MIRN562|hsa-mir-562 HGNC:32818|miRBase:MI0003568 2 - microRNA 562 miscRNA MIR562 microRNA 562 O - 20121230 -9606 693148 MIR563 - MIRN563|hsa-mir-563 HGNC:32819|miRBase:MI0003569 3 3p25.1 microRNA 563 miscRNA MIR563 microRNA 563 O - 20121230 -9606 693149 MIR564 - MIRN564|hsa-mir-564 HGNC:32820|miRBase:MI0003570 3 3p21.31 microRNA 564 miscRNA MIR564 microRNA 564 O - 20121230 -9606 693151 MIR566 - MIRN566|hsa-mir-566 HGNC:32822|miRBase:MI0003572 3 - microRNA 566 miscRNA MIR566 microRNA 566 O - 20121230 -9606 693152 MIR567 - MIRN567|hsa-mir-567 HGNC:32823|miRBase:MI0003573 3 3q13.2 microRNA 567 miscRNA MIR567 microRNA 567 O - 20121230 -9606 693153 MIR568 - MIRN568|hsa-mir-568 HGNC:32824|miRBase:MI0003574 3 - microRNA 568 miscRNA MIR568 microRNA 568 O - 20121230 -9606 693154 MIR569 - MIRN569|hsa-mir-569 HGNC:32825|miRBase:MI0003576 3 3q26.2 microRNA 569 miscRNA MIR569 microRNA 569 O - 20121230 -9606 693155 MIR570 - MIRN570|hsa-mir-570 HGNC:32826|MIM:614538|miRBase:MI0003577 3 - microRNA 570 miscRNA MIR570 microRNA 570 O - 20121230 -9606 693156 MIR571 - MIRN571|hsa-mir-571 HGNC:32827|miRBase:MI0003578 4 4p16.3 microRNA 571 miscRNA MIR571 microRNA 571 O - 20121230 -9606 693157 MIR572 - MIRN572|hsa-mir-572 HGNC:32828|miRBase:MI0003579 4 4p15.33 microRNA 572 miscRNA MIR572 microRNA 572 O - 20121230 -9606 693158 MIR573 - MIRN573|hsa-mir-573 HGNC:32829|miRBase:MI0003580 4 4p15.2 microRNA 573 miscRNA MIR573 microRNA 573 O - 20121230 -9606 693159 MIR574 - MIRN574|hsa-mir-574 HGNC:32830|miRBase:MI0003581 4 - microRNA 574 miscRNA MIR574 microRNA 574 O - 20121230 -9606 693160 MIR575 - MIRN575|hsa-mir-575 HGNC:32831|miRBase:MI0003582 4 4q21.22 microRNA 575 miscRNA MIR575 microRNA 575 O - 20121230 -9606 693161 MIR576 - MIRN576|hsa-mir-576 HGNC:32832|miRBase:MI0003583 4 - microRNA 576 miscRNA MIR576 microRNA 576 O - 20121230 -9606 693162 MIR577 - MIRN577|hsa-mir-577 HGNC:32833|miRBase:MI0003584 4 4q26 microRNA 577 miscRNA MIR577 microRNA 577 O - 20121230 -9606 693163 MIR578 - MIRN578|hsa-mir-578 HGNC:32834|miRBase:MI0003585 4 4q32.3 microRNA 578 miscRNA MIR578 microRNA 578 O - 20121230 -9606 693164 MIR579 - MIRN579|hsa-mir-579 HGNC:32835|miRBase:MI0003586 5 5p13.3 microRNA 579 miscRNA MIR579 microRNA 579 O - 20121230 -9606 693165 MIR580 - MIRN580|hsa-mir-580 HGNC:32836|miRBase:MI0003587 5 5p13.2 microRNA 580 miscRNA MIR580 microRNA 580 O - 20121230 -9606 693166 MIR581 - MIRN581|hsa-mir-581 HGNC:32837|miRBase:MI0003588 5 5q11.2 microRNA 581 miscRNA MIR581 microRNA 581 O - 20121230 -9606 693167 MIR582 - MIRN582|hsa-mir-582 HGNC:32838|miRBase:MI0003589 5 5q12.1 microRNA 582 miscRNA MIR582 microRNA 582 O - 20121230 -9606 693168 MIR583 - MIRN583|hsa-mir-583 HGNC:32839|miRBase:MI0003590 5 5q15 microRNA 583 miscRNA MIR583 microRNA 583 O - 20121230 -9606 693169 MIR584 - MIRN584|hsa-mir-584 HGNC:32840|miRBase:MI0003591 5 5q32 microRNA 584 miscRNA MIR584 microRNA 584 O - 20121230 -9606 693170 MIR585 - MIRN585|hsa-mir-585 HGNC:32841|miRBase:MI0003592 5 5q35.1 microRNA 585 miscRNA MIR585 microRNA 585 O - 20121230 -9606 693171 MIR586 - MIRN586|hsa-mir-586 HGNC:32842|miRBase:MI0003594 6 6p21.1 microRNA 586 miscRNA MIR586 microRNA 586 O - 20121230 -9606 693172 MIR587 - MIRN587|hsa-mir-587 HGNC:32843|miRBase:MI0003595 6 6q21 microRNA 587 miscRNA MIR587 microRNA 587 O - 20121230 -9606 693173 MIR588 - MIRN588|hsa-mir-588 HGNC:32844|miRBase:MI0003597 6 6q22.32 microRNA 588 miscRNA MIR588 microRNA 588 O - 20121230 -9606 693174 MIR589 - MIRN589|hsa-mir-589 HGNC:32845|miRBase:MI0003599 7 7p22.1 microRNA 589 miscRNA MIR589 microRNA 589 O - 20121230 -9606 693175 MIR590 - MIRN590|hsa-mir-590 HGNC:32846|miRBase:MI0003602 7 7q11.23 microRNA 590 miscRNA MIR590 microRNA 590 O - 20121230 -9606 693176 MIR591 - MIRN591|hsa-mir-591 HGNC:32847|miRBase:MI0003603 7 7q21.3 microRNA 591 miscRNA MIR591 microRNA 591 O - 20121230 -9606 693177 MIR592 - MIRN592|hsa-mir-592 HGNC:32848|miRBase:MI0003604 7 7q31.33 microRNA 592 miscRNA MIR592 microRNA 592 O - 20121230 -9606 693178 MIR593 - MIRN593|hsa-mir-593 HGNC:32849|miRBase:MI0003605 7 7q32.1 microRNA 593 miscRNA MIR593 microRNA 593 O - 20121230 -9606 693180 MIR595 - MIRN595|hsa-mir-595 HGNC:32851|miRBase:MI0003607 7 7q36.3 microRNA 595 miscRNA MIR595 microRNA 595 O - 20121230 -9606 693181 MIR596 - MIRN596|hsa-mir-596 HGNC:32852|miRBase:MI0003608 8 8p23.3 microRNA 596 miscRNA MIR596 microRNA 596 O - 20121230 -9606 693182 MIR597 - MIRN597|hsa-mir-597 HGNC:32853|miRBase:MI0003609 8 8p23.1 microRNA 597 miscRNA MIR597 microRNA 597 O - 20121230 -9606 693183 MIR598 - MIRN598|hsa-mir-598 HGNC:32854|miRBase:MI0003610 8 8p23.1 microRNA 598 miscRNA MIR598 microRNA 598 O - 20121230 -9606 693184 MIR599 - MIRN599|hsa-mir-599 HGNC:32855|miRBase:MI0003611 8 8q22.2 microRNA 599 miscRNA MIR599 microRNA 599 O - 20121230 -9606 693185 MIR600 - MIRN600|hsa-mir-600 HGNC:32856|miRBase:MI0003613 9 9q33.3 microRNA 600 miscRNA MIR600 microRNA 600 O - 20121230 -9606 693186 MIR601 - MIRN601|hsa-mir-601 HGNC:32857|miRBase:MI0003614 9 9q33.3 microRNA 601 miscRNA MIR601 microRNA 601 O - 20121230 -9606 693187 MIR602 - MIRN602|hsa-mir-602 HGNC:32858|miRBase:MI0003615 9 9q34.3 microRNA 602 miscRNA MIR602 microRNA 602 O - 20121230 -9606 693188 MIR603 - MIRN603|hsa-mir-603 HGNC:32859|miRBase:MI0003616 10 - microRNA 603 miscRNA MIR603 microRNA 603 O - 20121230 -9606 693189 MIR604 - MIRN604|hsa-mir-604 HGNC:32860|miRBase:MI0003617 10 10p11.23 microRNA 604 miscRNA MIR604 microRNA 604 O - 20121230 -9606 693190 MIR605 - MIRN605|hsa-mir-605 HGNC:32861|miRBase:MI0003618 10 10q21.1 microRNA 605 miscRNA MIR605 microRNA 605 O - 20121230 -9606 693191 MIR606 - MIRN606|hsa-mir-606 HGNC:32862|miRBase:MI0003619 10 10q22.2 microRNA 606 miscRNA MIR606 microRNA 606 O - 20121230 -9606 693192 MIR607 - MIRN607|hsa-mir-607 HGNC:32863|miRBase:MI0003620 10 - microRNA 607 miscRNA MIR607 microRNA 607 O - 20121230 -9606 693193 MIR608 - MIRN608|hsa-mir-608 HGNC:32864|miRBase:MI0003621 10 10q24.31 microRNA 608 miscRNA MIR608 microRNA 608 O - 20121230 -9606 693194 MIR609 - MIRN609|hsa-mir-609 HGNC:32865|miRBase:MI0003622 10 10q25.1 microRNA 609 miscRNA MIR609 microRNA 609 O - 20121230 -9606 693195 MIR610 - MIRN610|hsa-mir-610 HGNC:32866|MIM:612330|miRBase:MI0003623 11 11p14.1 microRNA 610 miscRNA MIR610 microRNA 610 O - 20121230 -9606 693196 MIR611 - MIRN611|hsa-mir-611 HGNC:32867|miRBase:MI0003624 11 11q12.2 microRNA 611 miscRNA MIR611 microRNA 611 O - 20121230 -9606 693197 MIR612 - MIRN612|hsa-mir-612 HGNC:32868|miRBase:MI0003625 11 11q13.1 microRNA 612 miscRNA MIR612 microRNA 612 O - 20121230 -9606 693198 MIR613 - MIRN613|hsa-mir-613 HGNC:32869|miRBase:MI0003626 12 12p13.1 microRNA 613 miscRNA MIR613 microRNA 613 O - 20121230 -9606 693199 MIR614 - MIRN614|hsa-mir-614 HGNC:32870|miRBase:MI0003627 12 12p13.1 microRNA 614 miscRNA MIR614 microRNA 614 O - 20121230 -9606 693200 MIR615 - MIRN615|hsa-mir-615 HGNC:32871|miRBase:MI0003628 12 12q13.13 microRNA 615 miscRNA MIR615 microRNA 615 O - 20121230 -9606 693201 MIR616 - MIRN616|hsa-mir-616 HGNC:32872|MIM:614489|miRBase:MI0003629 12 12q13.3 microRNA 616 miscRNA MIR616 microRNA 616 O - 20121230 -9606 693202 MIR617 - MIRN617|hsa-mir-617 HGNC:32873|miRBase:MI0003631 12 12q21.31 microRNA 617 miscRNA MIR617 microRNA 617 O - 20121230 -9606 693203 MIR618 - MIRN618|hsa-mir-618 HGNC:32874|miRBase:MI0003632 12 12q21.31 microRNA 618 miscRNA MIR618 microRNA 618 O - 20121230 -9606 693204 MIR619 - MIRN619|hsa-mir-619 HGNC:32875|miRBase:MI0003633 12 12q24.11 microRNA 619 miscRNA MIR619 microRNA 619 O - 20121230 -9606 693205 MIR620 - MIRN620|hsa-mir-620 HGNC:32876|miRBase:MI0003634 12 - microRNA 620 miscRNA MIR620 microRNA 620 O - 20121230 -9606 693206 MIR621 - MIRN621|hsa-mir-621 HGNC:32877|miRBase:MI0003635 13 13q14.11 microRNA 621 miscRNA MIR621 microRNA 621 O - 20121230 -9606 693207 MIR622 - MIRN622|hsa-mir-622 HGNC:32878|miRBase:MI0003636 13 13q31.3 microRNA 622 miscRNA MIR622 microRNA 622 O - 20121230 -9606 693208 MIR623 - MIRN623|hsa-mir-623 HGNC:32879|miRBase:MI0003637 13 13q32.3 microRNA 623 miscRNA MIR623 microRNA 623 O - 20121230 -9606 693209 MIR624 - MIRN624|hsa-mir-624 HGNC:32880|miRBase:MI0003638 14 14q12 microRNA 624 miscRNA MIR624 microRNA 624 O - 20121230 -9606 693210 MIR625 - MIRN625|hsa-mir-625 HGNC:32881|miRBase:MI0003639 14 14q23.3 microRNA 625 miscRNA MIR625 microRNA 625 O - 20121230 -9606 693211 MIR626 - MIRN626|hsa-mir-626 HGNC:32882|miRBase:MI0003640 15 15q15.1 microRNA 626 miscRNA MIR626 microRNA 626 O - 20121230 -9606 693212 MIR627 - MIRN627|hsa-mir-627 HGNC:32883|miRBase:MI0003641 15 15q15.1 microRNA 627 miscRNA MIR627 microRNA 627 O - 20121230 -9606 693213 MIR628 - MIRN628|hsa-mir-628 HGNC:32884|miRBase:MI0003642 15 15q21.3 microRNA 628 miscRNA MIR628 microRNA 628 O - 20121230 -9606 693214 MIR629 - MIRN629|hsa-mir-629 HGNC:32885|miRBase:MI0003643 15 15q23 microRNA 629 miscRNA MIR629 microRNA 629 O - 20121230 -9606 693215 MIR630 - MIRN630|hsa-mir-630 HGNC:32886|miRBase:MI0003644 15 15q24.1 microRNA 630 miscRNA MIR630 microRNA 630 O - 20121230 -9606 693216 MIR631 - MIRN631|hsa-mir-631 HGNC:32887|miRBase:MI0003645 15 15q24.2 microRNA 631 miscRNA MIR631 microRNA 631 O - 20121230 -9606 693217 MIR632 - MIRN632|hsa-mir-632 HGNC:32888|miRBase:MI0003647 17 17q11.2 microRNA 632 miscRNA MIR632 microRNA 632 O - 20121230 -9606 693218 MIR633 - MIRN633|hsa-mir-633 HGNC:32889|miRBase:MI0003648 17 17q23.2 microRNA 633 miscRNA MIR633 microRNA 633 O - 20121230 -9606 693219 MIR634 - MIRN634|hsa-mir-634 HGNC:32890|miRBase:MI0003649 17 17q24.2 microRNA 634 miscRNA MIR634 microRNA 634 O - 20121230 -9606 693220 MIR635 - MIRN635|hsa-mir-635 HGNC:32891|miRBase:MI0003650 17 17q24.2 microRNA 635 miscRNA MIR635 microRNA 635 O - 20121230 -9606 693221 MIR636 - MIRN636|hsa-mir-636 HGNC:32892|miRBase:MI0003651 17 17q25.1 microRNA 636 miscRNA MIR636 microRNA 636 O - 20121230 -9606 693222 MIR637 - MIRN637|hsa-mir-637 HGNC:32893|miRBase:MI0003652 19 19p13.3 microRNA 637 miscRNA MIR637 microRNA 637 O - 20121230 -9606 693223 MIR638 - MIRN638|hsa-mir-638 HGNC:32894|miRBase:MI0003653 19 19p13.2 microRNA 638 miscRNA MIR638 microRNA 638 O - 20121230 -9606 693224 MIR639 - MIRN639|hsa-mir-639 HGNC:32895|miRBase:MI0003654 19 19p13.12 microRNA 639 miscRNA MIR639 microRNA 639 O - 20121230 -9606 693225 MIR640 - MIRN640|hsa-mir-640 HGNC:32896|miRBase:MI0003655 19 19p13.11 microRNA 640 miscRNA MIR640 microRNA 640 O - 20121230 -9606 693226 MIR641 - MIRN641|hsa-mir-641 HGNC:32897|miRBase:MI0003656 19 19q13.2 microRNA 641 miscRNA MIR641 microRNA 641 O - 20121230 -9606 693227 MIR642A - MIR642|MIRN642|hsa-mir-642|hsa-mir-642a HGNC:32898 19 19q13.32 microRNA 642a miscRNA MIR642A microRNA 642a O - 20121230 -9606 693228 MIR643 - MIRN643|hsa-mir-643 HGNC:32899|miRBase:MI0003658 19 19q13.41 microRNA 643 miscRNA MIR643 microRNA 643 O - 20121230 -9606 693229 MIR644A - MIR644|MIRN644|hsa-mir-644|hsa-mir-644a HGNC:32900|miRBase:MI0003659 20 20q11.22 microRNA 644a miscRNA MIR644A microRNA 644a O - 20121230 -9606 693230 MIR645 - MIRN645|hsa-mir-645 HGNC:32901|miRBase:MI0003660 20 20q13.13 microRNA 645 miscRNA MIR645 microRNA 645 O - 20121230 -9606 693231 MIR646 - MIRN646|hsa-mir-646 HGNC:32902|miRBase:MI0003661 20 20q13.33 microRNA 646 miscRNA MIR646 microRNA 646 O - 20121230 -9606 693232 MIR647 - MIRN647|hsa-mir-647 HGNC:32903|miRBase:MI0003662 20 20q13.33 microRNA 647 miscRNA MIR647 microRNA 647 O - 20121230 -9606 693233 MIR648 - MIRN648|hsa-mir-648 HGNC:32904|miRBase:MI0003663 22 22q11.21 microRNA 648 miscRNA MIR648 microRNA 648 O - 20121230 -9606 693234 MIR649 - MIRN649|hsa-mir-649 HGNC:32905|miRBase:MI0003664 22 - microRNA 649 miscRNA MIR649 microRNA 649 O - 20121230 -9606 693235 MIR92B - MIRN92B|hsa-mir-92b HGNC:32920|miRBase:MI0003560 1 1q22 microRNA 92b miscRNA MIR92B microRNA 92b O - 20121230 -9606 723778 MIR650 - MIRN650|hsa-mir-650 HGNC:32906|miRBase:MI0003665 22 22q11.22 microRNA 650 miscRNA MIR650 microRNA 650 O - 20121230 -9606 723779 MIR651 - MIRN651|hsa-mir-651 HGNC:32907|miRBase:MI0003666 X Xp22.31 microRNA 651 miscRNA MIR651 microRNA 651 O - 20121230 -9606 723788 MIG7 - - - 1 1p22.1 mig-7 unknown - - - - 20120710 -9606 723790 HIST2H2AA4 - H2A/R HGNC:29668|Ensembl:ENSG00000203812|Vega:OTTHUMG00000012097 1 1q21.2 histone cluster 2, H2aa4 protein-coding HIST2H2AA4 histone cluster 2, H2aa4 O histone 2, H2aa4|histone H2A type 2-A|histone H2A/r 20121230 -9606 723805 LOC723805 - - - 19 19q13.2 interleukin-like unknown - - - - 20121230 -9606 723809 LHFPL3-AS2 - - HGNC:44106 7 - LHFPL3 antisense RNA 2 miscRNA LHFPL3-AS2 LHFPL3 antisense RNA 2 O - 20121230 -9606 723961 INS-IGF2 - INSIGF HGNC:33527|Ensembl:ENSG00000129965|Vega:OTTHUMG00000166213 11 11p15.5 INS-IGF2 readthrough protein-coding INS-IGF2 INS-IGF2 readthrough O insulin- insulin-like growth factor 2 read-through|insulin- insulin-like growth factor 2 read-through product 20121230 -9606 723972 ANP32AP1 - - HGNC:42949 15 15q14 acidic (leucine-rich) nuclear phosphoprotein 32 family, member A pseudogene 1 pseudo ANP32AP1 acidic (leucine-rich) nuclear phosphoprotein 32 family, member A pseudogene 1 O - 20121230 -9606 724022 MIR652 - MIRN652|hsa-mir-652 HGNC:32908|miRBase:MI0003667 X Xq23 microRNA 652 miscRNA MIR652 microRNA 652 O - 20121230 -9606 724023 MIR653 - MIRN653|hsa-mir-653 HGNC:32909|miRBase:MI0003674 7 7q21.3 microRNA 653 miscRNA MIR653 microRNA 653 O - 20121230 -9606 724024 MIR654 - MIRN654|hsa-mir-654 HGNC:32910|miRBase:MI0003676 14 14q32.31 microRNA 654 miscRNA MIR654 microRNA 654 O - 20121230 -9606 724025 MIR655 - MIRN655|hsa-mir-655 HGNC:32911|miRBase:MI0003677 14 14q32.31 microRNA 655 miscRNA MIR655 microRNA 655 O - 20121230 -9606 724026 MIR656 - MIRN656|hsa-mir-656 HGNC:32912|miRBase:MI0003678 14 14q32.31 microRNA 656 miscRNA MIR656 microRNA 656 O - 20121230 -9606 724027 MIR657 - MIRN657|hsa-mir-657 HGNC:32913|miRBase:MI0003681 17 17q25.3 microRNA 657 miscRNA MIR657 microRNA 657 O - 20121230 -9606 724028 MIR658 - MIRN658|hsa-mir-658 HGNC:32914|miRBase:MI0003682 22 22q13.1 microRNA 658 miscRNA MIR658 microRNA 658 O - 20121230 -9606 724029 MIR659 - MIRN659|hsa-mir-659 HGNC:32915|MIM:613556|miRBase:MI0003683 22 22q13.1 microRNA 659 miscRNA MIR659 microRNA 659 O - 20121230 -9606 724030 MIR660 - MIRN660|hsa-mir-660 HGNC:32916|miRBase:MI0003684 X Xp11.23 microRNA 660 miscRNA MIR660 microRNA 660 O - 20121230 -9606 724031 MIR661 - MIRN661|hsa-mir-661 HGNC:32917|MIM:613716|miRBase:MI0003669 8 8q24.3 microRNA 661 miscRNA MIR661 microRNA 661 O - 20121230 -9606 724032 MIR662 - MIRN662|hsa-mir-662 HGNC:32918|miRBase:MI0003670 16 16p13.3 microRNA 662 miscRNA MIR662 microRNA 662 O - 20121230 -9606 724033 MIR663A - MIR663|MIRN663|hsa-mir-663|hsa-mir-663a HGNC:32919|miRBase:MI0003672 20 20p11.1 microRNA 663a miscRNA MIR663A microRNA 663a O - 20121230 -9606 724034 CEND1P2 - - HGNC:43675 13 13q12.12 cell cycle exit and neuronal differentiation 1 pseudogene 2 pseudo CEND1P2 cell cycle exit and neuronal differentiation 1 pseudogene 2 O - 20121230 -9606 724038 BDP1P - - HGNC:31044 18 18q23 B double prime 1 pseudogene pseudo BDP1P B double prime 1 pseudogene O - 20121230 -9606 724058 ANIB4 - - HGNC:31943|MIM:610213 5 5p15.2-p14.3 aneurysm, intracranial berry 4 unknown ANIB4 aneurysm, intracranial berry 4 O - 20120622 -9606 724059 TMEM97P2 - - HGNC:39641 8 8p21.3 transmembrane protein 97 pseudogene 2 pseudo TMEM97P2 transmembrane protein 97 pseudogene 2 O - 20121230 -9606 724060 LOC724060 - - - 1 1p32.3 TRA2A pseudogene pseudo - - - - 20121230 -9606 724065 LOC724065 - - - 10 10q25.2 chromosome 19 open reading frame 53 pseudogene pseudo - - - - 20121230 -9606 724066 ATXN8 - ATXN3 HGNC:32925|MIM:613289 13 13q21 ataxin 8 protein-coding ATXN8 ataxin 8 O ataxin-8|protein 1C2 20121220 -9606 724067 DEFA7P - DEFA7 HGNC:31798 8 8p23.1 defensin, alpha 7 pseudogene pseudo DEFA7P defensin, alpha 7 pseudogene O - 20121230 -9606 724068 DEFA11P - DEFAP3 HGNC:33354 8 8p23.1 defensin, alpha 11 pseudogene pseudo DEFA11P defensin, alpha 11 pseudogene O - 20121230 -9606 724074 DFNY1 - - HGNC:26547|MIM:400043 Y - deafness, Y-linked 1 unknown DFNY1 deafness, Y-linked 1 O - 20120622 -9606 724084 LOC724084 - - - 1 1q42.11 zinc finger protein 706 pseudogene pseudo - - - - 20121230 -9606 724085 LOC724085 - - - 12 12q24.13 immediate early response 3 interacting protein 1 pseudogene pseudo - - - - 20121230 -9606 724087 CXorf31 - - HGNC:17986|Vega:OTTHUMG00000021429 X Xp11.3 chromosome X open reading frame 31 miscRNA CXorf31 chromosome X open reading frame 31 O - 20121230 -9606 724094 FAM27D1 RP11-268E1.4 - HGNC:32015|Vega:OTTHUMG00000013267 9 9p11.2 family with sequence similarity 27, member D1 unknown FAM27D1 family with sequence similarity 27, member D1 O - 20121230 -9606 724097 ZNF723 - - HGNC:32286 19 19p12 zinc finger protein 723 protein-coding ZNF723 zinc finger protein 723 O - 20120318 -9606 724101 SS18L2P2 - - HGNC:44966 18 18q21.2 synovial sarcoma translocation gene on chromosome 18-like 2 pseudogene 2 pseudo SS18L2P2 synovial sarcoma translocation gene on chromosome 18-like 2 pseudogene 2 O - 20121230 -9606 724102 SNHG4 - NCRNA00059|U19H HGNC:32964 5 5q31.2 small nucleolar RNA host gene 4 (non-protein coding) miscRNA SNHG4 small nucleolar RNA host gene 4 (non-protein coding) O - 20121230 -9606 724104 LOC724104 - - - 6 6p12.2 SH3 domain binding glutamic acid-rich protein like 3 pseudogene pseudo - - - - 20121230 -9606 724105 LOC724105 - - - 5 5q35.2 cysteine-rich transmembrane module containing 1 pseudogene pseudo - - - - 20121230 -9606 724107 SPG32 - SPG29 HGNC:32314|MIM:611252 14 14q12-q21 spastic paraplegia 32 (autosomal recessive) unknown SPG32 spastic paraplegia 32 (autosomal recessive) O - 20120622 -9606 724110 SPG34 - - HGNC:32944|MIM:300750 X Xq24-q25 spastic paraplegia 34 (autosomal dominant) unknown SPG34 spastic paraplegia 34 (autosomal dominant) O - 20120715 -9606 727676 SNORD118 - U8 HGNC:32952 17 17p13.1 small nucleolar RNA, C/D box 118 snoRNA SNORD118 small nucleolar RNA, C/D box 118 O - 20121230 -9606 727677 LOC727677 - - - 8 8q24.21 uncharacterized LOC727677 miscRNA - - - - 20121230 -9606 727681 LOC727681 - - - X Xq13.2 NSL1, MIND kinetochore complex component, homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 727682 TAB3-AS1 - CXorf29 HGNC:20176|Vega:OTTHUMG00000021331 X Xp21.2 TAB3 antisense RNA 1 unknown TAB3-AS1 TAB3 antisense RNA 1 O - 20121023 -9606 727684 C1orf195 RP1-21O18.4 - HGNC:32332 1 1p36.21 chromosome 1 open reading frame 195 unknown C1orf195 chromosome 1 open reading frame 195 O - 20121216 -9606 727686 SNURFL RP3-523M5.1 CXorf19 HGNC:29543 X Xq27 SNRPN upstream reading frame-like pseudo SNURFL SNRPN upstream reading frame-like O - 20121230 -9606 727694 PABPC5-AS1 - CXorf46 HGNC:31845|Vega:OTTHUMG00000021960 X Xq21.31 PABPC5 antisense RNA 1 unknown PABPC5-AS1 PABPC5 antisense RNA 1 O - 20121023 -9606 727699 LINC00163 - C21orf134|NCRNA00163|NLC1-A|NLC1A HGNC:33165|MIM:610259 21 21q22.3 long intergenic non-protein coding RNA 163 miscRNA LINC00163 long intergenic non-protein coding RNA 163 O - 20121230 -9606 727701 LINC00165 - C21orf135|NCRNA00165|NLC1-B|NLC1B HGNC:33166 21 21q22.3 long intergenic non-protein coding RNA 165 miscRNA LINC00165 long intergenic non-protein coding RNA 165 O - 20120508 -9606 727703 IGFL1P1 - IGFL-5P HGNC:32956 19 19q13.32 IGF-like family member 1 pseudogene 1 pseudo IGFL1P1 IGF-like family member 1 pseudogene 1 O - 20121230 -9606 727704 IGFL1P2 - IGFL-6P HGNC:32957 19 19q13.32 IGF-like family member 1 pseudogene 2 pseudo IGFL1P2 IGF-like family member 1 pseudogene 2 O - 20121230 -9606 727708 SNORD116-19 - HBII-85-19 HGNC:33085 15 15q11.2 small nucleolar RNA, C/D box 116-19 snoRNA SNORD116-19 small nucleolar RNA, C/D box 116-19 O - 20121230 -9606 727709 LOC727709 - - - 4 4q27 DNA-damage regulated autophagy modulator 1 pseudogene pseudo - - - - 20121230 -9606 727710 LOC727710 - - - 16 16q24.1 uncharacterized LOC727710 miscRNA - - - - 20121017 -9606 727713 LOC727713 - - - 2 2q22.3 methionyl aminopeptidase 2 pseudogene pseudo - - - - 20121230 -9606 727714 SCAX2 - - HGNC:32973|MIM:302600 X - spinocerebellar ataxia, X-linked 2 unknown SCAX2 spinocerebellar ataxia, X-linked 2 O - 20120318 -9606 727715 SCAX3 - - HGNC:32974|MIM:301790 X - spinocerebellar ataxia, X-linked 3 unknown SCAX3 spinocerebellar ataxia, X-linked 3 O - 20120318 -9606 727716 SCAX4 - - HGNC:32975|MIM:301840 X - spinocerebellar ataxia, X-linked 4 unknown SCAX4 spinocerebellar ataxia, X-linked 4 O - 20120318 -9606 727719 SCAR7 - - HGNC:32978|MIM:609270 11 11p15 spinocerebellar ataxia, autosomal recessive 7 unknown SCAR7 spinocerebellar ataxia, autosomal recessive 7 O - 20120622 -9606 727721 LOC727721 - - - 1 1p36.22 uncharacterized LOC727721 unknown - - - - 20121230 -9606 727736 SH3GL1P3 - CNSA-P3|SH3GLP3 HGNC:10837 17 17q24.2 SH3-domain GRB2-like 1 pseudogene 3 pseudo SH3GL1P3 SH3-domain GRB2-like 1 pseudogene 3 O - 20121230 -9606 727738 AREGB - - HGNC:34509|Ensembl:ENSG00000205595|Vega:OTTHUMG00000160870 4 4q13.3 amphiregulin B protein-coding AREGB amphiregulin B O - 20121209 -9606 727747 RPL22P12 - RPL22_6_262 HGNC:36345 2 2q13 ribosomal protein L22 pseudogene 12 pseudo RPL22P12 ribosomal protein L22 pseudogene 12 O - 20121230 -9606 727751 LOC727751 - - - 15 15q25.2 uncharacterized LOC727751 miscRNA - - - - 20121209 -9606 727758 ROCK1P1 - - HGNC:37832 18 18p11.32 Rho-associated, coiled-coil containing protein kinase 1 pseudogene 1 pseudo ROCK1P1 Rho-associated, coiled-coil containing protein kinase 1 pseudogene 1 O - 20121230 -9606 727764 MAFIP PP5644 MIP|TEKT4P4|pp5644 HGNC:31102 4 - MAFF interacting protein (pseudogene) pseudo MAFIP MAFF interacting protein (pseudogene) O - 20121230 -9606 727768 TEKT4P1 - - HGNC:37711 Y Yq11.1 tektin 4 pseudogene 1 pseudo TEKT4P1 tektin 4 pseudogene 1 O - 20121230 -9606 727775 LOC727775 - - - 3 - uncharacterized LOC727775 unknown - - - - 20120508 -9606 727787 LOC727787 - - - 19 - killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 2-like protein-coding - - - - 20121209 -9606 727789 RWDD1P3 - RWDD1L1 HGNC:31794 12 12q21.2 RWD domain containing 1 pseudogene 3 pseudo RWDD1P3 RWD domain containing 1 pseudogene 3 O - 20121230 -9606 727792 RPL31P31 - RPL31_10_468 HGNC:35678 4 4p15.1 ribosomal protein L31 pseudogene 31 pseudo RPL31P31 ribosomal protein L31 pseudogene 31 O - 20121230 -9606 727795 HMGN2P5 - HMGN2L5 HGNC:33568 15 15q13.1 high mobility group nucleosomal binding domain 2 pseudogene 5 pseudo HMGN2P5 high mobility group nucleosomal binding domain 2 pseudogene 5 O - 20121230 -9606 727799 LOC727799 - - - 7 7p22.3 uncharacterized LOC727799 unknown - - - - 20120511 -9606 727800 RNF208 - - HGNC:25420|Ensembl:ENSG00000212864|HPRD:13182 9 9q34.3 ring finger protein 208 protein-coding RNF208 ring finger protein 208 O RING finger protein 208 20121230 -9606 727803 LOC727803 - - - 12 12q21.2 RAN binding protein 1 pseudogene pseudo - - - - 20121230 -9606 727805 POM121L14P - - HGNC:44414 6 6p11.2 POM121 transmembrane nucleoporin-like 14, pseudogene pseudo POM121L14P POM121 transmembrane nucleoporin-like 14, pseudogene O - 20121209 -9606 727808 LOC727808 - - - 15 15q13.1 uncharacterized LOC727808 unknown - - - - 20120511 -9606 727810 RPL21P17 - RPL21_9_342 HGNC:19416 3 3p26.3 ribosomal protein L21 pseudogene 17 pseudo RPL21P17 ribosomal protein L21 pseudogene 17 O - 20121230 -9606 727820 LOC727820 - - - 1 1q21.1 uncharacterized LOC727820 unknown - - - - 20120909 -9606 727821 RPL21P45 - RPL21_15_469 HGNC:35983 4 4p14 ribosomal protein L21 pseudogene 45 pseudo RPL21P45 ribosomal protein L21 pseudogene 45 O - 20121230 -9606 727826 RPS11P5 - RPS11_3_1298 HGNC:36312 12 12q24.33 ribosomal protein S11 pseudogene 5 pseudo RPS11P5 ribosomal protein S11 pseudogene 5 O - 20121230 -9606 727828 TRIM64DP - - HGNC:43974 11 11q14.3 tripartite motif containing 64D, pseudogene pseudo TRIM64DP tripartite motif containing 64D, pseudogene O - 20121230 -9606 727830 SPATA31A3 RP11-395E19.3 FAM75A3 HGNC:32003|Ensembl:ENSG00000147926|Vega:OTTHUMG00000013164 9 9p13.1 SPATA31 subfamily A, member 3 protein-coding SPATA31A3 SPATA31 subfamily A, member 3 O family with sequence similarity 75, member A3|protein FAM75A3 20121216 -9606 727831 RPL13AP8 - RPL13A_2_157 HGNC:36966 1 1q32.1 ribosomal protein L13a pseudogene 8 pseudo RPL13AP8 ribosomal protein L13a pseudogene 8 O - 20121230 -9606 727832 GOLGA6L6 - - HGNC:37225 15 15q11.2 golgin A6 family-like 6 protein-coding GOLGA6L6 golgin A6 family-like 6 O golgi autoantigen, golgin subfamily a, 6-like 6|putative golgin subfamily A member 6-like protein 6 20121230 -9606 727833 IMPDH1P11 - IMPDH1|IMPDHL1 HGNC:6054 16 16p13.2 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 11 pseudo IMPDH1P11 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 11 O - 20121230 -9606 727835 RPL9P16 - RPL9_3_534 HGNC:36851 4 4q32.3 ribosomal protein L9 pseudogene 16 pseudo RPL9P16 ribosomal protein L9 pseudogene 16 O - 20121230 -9606 727837 SSX2B RP13-77O11.9 CT5.2b HGNC:22263|Ensembl:ENSG00000157950|Vega:OTTHUMG00000021593 X Xp11.22 synovial sarcoma, X breakpoint 2B protein-coding SSX2B synovial sarcoma, X breakpoint 2B O CT5.2|HOM-MEL-40|SSX|cancer/testis antigen 5.2|cancer/testis antigen family 5, member 2b|protein SSX2|tumor antigen HOM-MEL-40 20121230 -9606 727838 LOC727838 - - - X Xq24 cancer/testis antigen family 47, member A11 pseudogene pseudo - - - - 20121230 -9606 727842 RBBP4P4 - - HGNC:42371 6 6p11.2 retinoblastoma binding protein 4 pseudogene 4 pseudo RBBP4P4 retinoblastoma binding protein 4 pseudogene 4 O - 20121230 -9606 727849 LOC727849 - - - 15 15q25.2 golgin A2 pseudogene pseudo - - - - 20121230 -9606 727851 RGPD8 - RANBP2L1|RGP8|RanBP2alpha HGNC:9849|MIM:602752|Ensembl:ENSG00000169629|Vega:OTTHUMG00000153289 2 2q13 RANBP2-like and GRIP domain containing 8 protein-coding RGPD8 RANBP2-like and GRIP domain containing 8 O RAN binding protein 2-like 1|RANBP2-like and GRIP domain-containing protein 8|ran-binding protein 2-like 3|ranBP2-like 3|ranBP2L3 20121230 -9606 727856 DDX11L16 - - HGNC:37115 X|Y Xq28; Yq12 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 16 pseudo DDX11L16 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 16 O - 20121230 -9606 727857 BHLHA9 - BHLHF42 HGNC:35126|Ensembl:ENSG00000205899|Vega:OTTHUMG00000132192 17 17p13.3 basic helix-loop-helix family, member a9 protein-coding BHLHA9 basic helix-loop-helix family, member a9 O class A basic helix-loop-helix protein 9|class F basic helix-loop-helix factor 42|class II basic helix-loop-helix protein 20121230 -9606 727859 C4BPAP1 RP11-164O23.6 C4BPAL1 HGNC:1326 1 1q32.2 complement component 4 binding protein, alpha pseudogene 1 pseudo C4BPAP1 complement component 4 binding protein, alpha pseudogene 1 O - 20121230 -9606 727865 RPL9P32 - RPL9_18_1643 HGNC:36418 19 19q12 ribosomal protein L9 pseudogene 32 pseudo RPL9P32 ribosomal protein L9 pseudogene 32 O - 20121230 -9606 727866 FAM156B PP12994 TMEM29B HGNC:31962|Ensembl:ENSG00000179304|Vega:OTTHUMG00000021594 X Xp11.22 family with sequence similarity 156, member B protein-coding FAM156B family with sequence similarity 156, member B O protein FAM156A|protein FAM156A/FAM156B|transmembrane protein 29|transmembrane protein 29B 20121230 -9606 727874 LOC727874 - - - X Xq21.1 WW domain binding protein 11 pseudogene pseudo - - - - 20121230 -9606 727879 C1DP4 - - HGNC:38028 10 10q22.3 C1D nuclear receptor corepressor pseudogene 4 pseudo C1DP4 C1D nuclear receptor corepressor pseudogene 4 O - 20121230 -9606 727880 LOC727880 - - - 15 15q13.2 uncharacterized LOC727880 unknown - - - - 20120511 -9606 727884 LOC727884 - - - 12 12q12 insulin-like growth factor 2 mRNA binding protein 2 pseudogene pseudo - - - - 20121230 -9606 727896 LOC727896 - - - 18 18p11.31 cysteine and histidine-rich domain (CHORD) containing 1 pseudogene pseudo - - - - 20121230 -9606 727897 MUC5B - MG1|MUC-5B|MUC5|MUC9 HGNC:7516|MIM:600770|Ensembl:ENSG00000117983|Vega:OTTHUMG00000166494 11 11p15.5 mucin 5B, oligomeric mucus/gel-forming protein-coding MUC5B mucin 5B, oligomeric mucus/gel-forming O cervical mucin MUC5B|high molecular weight salivary mucin MG1|mucin 5, subtype B, tracheobronchial|mucin-5B|sublingual gland mucin 20121230 -9606 727905 SPATA31A5 - FAM75A5 HGNC:32005|Ensembl:ENSG00000233788|Vega:OTTHUMG00000013204 9 9p12 SPATA31 subfamily A, member 5 protein-coding SPATA31A5 SPATA31 subfamily A, member 5 O family with sequence similarity 75, member A5|protein FAM75A5 20121230 -9606 727909 GOLGA8Q - - HGNC:44408 15 15q13.2 golgin A8 family, member Q pseudo GOLGA8Q golgin A8 family, member Q O - 20121230 -9606 727910 TLCD2 - - HGNC:33522|Ensembl:ENSG00000185561|Vega:OTTHUMG00000132477 17 17p13.3 TLC domain containing 2 protein-coding TLCD2 TLC domain containing 2 O TLC domain-containing protein 2 20121230 -9606 727914 LOC727914 - - - 15 15q11.2 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121209 -9606 727915 LOC727915 - - - 15 15q25.3 uncharacterized LOC727915 miscRNA - - - - 20121230 -9606 727916 LOC727916 - - - 6 6q12 uncharacterized LOC727916 unknown - - - - 20120511 -9606 727919 LOC727919 hCG_1795065 - - 2 2p24.1 NADH dehydrogenase (ubiquinone) complex I, assembly factor 2 pseudogene pseudo - - - - 20121230 -9606 727924 LOC727924 - - - 15 15q11.2 uncharacterized LOC727924 miscRNA - - - - 20121230 -9606 727925 LOC727925 hCG_2031213 - - 6 6q12 hCG2031213 protein-coding - - - - 20120511 -9606 727930 LOC727930 - - - 5 5q11.2 chondroitin sulfate proteoglycan 4-like pseudo - - - - 20121230 -9606 727936 GXYLT2 - GLT8D4 HGNC:33383|MIM:613322|Ensembl:ENSG00000172986|Vega:OTTHUMG00000158815 3 3p13 glucoside xylosyltransferase 2 protein-coding GXYLT2 glucoside xylosyltransferase 2 O glycosyltransferase 8 domain containing 4|glycosyltransferase 8 domain-containing protein 4 20121230 -9606 727940 RHOXF2B - - HGNC:33519|Ensembl:ENSG00000203989|Vega:OTTHUMG00000022288 X Xq24 Rhox homeobox family, member 2B protein-coding RHOXF2B Rhox homeobox family, member 2B O rhox homeobox family member 2B 20121230 -9606 727941 LOC727941 - - - 1 1p13.3 uncharacterized LOC727941 pseudo - - - - 20121230 -9606 727944 LOC727944 - - - 2 2p25.3 uncharacterized LOC727944 miscRNA - - - - 20121209 -9606 727947 LOC727947 - - - 5 5q33.3 ubiquinol-cytochrome c reductase binding protein pseudogene pseudo - - - - 20121230 -9606 727951 RPS3AP16 - RPS3A_3_456 HGNC:36052 4 4p16.3 ribosomal protein S3a pseudogene 16 pseudo RPS3AP16 ribosomal protein S3a pseudogene 16 O - 20121230 -9606 727956 SDHAP2 - SDHAL2|SDHALP2 HGNC:27408 3 3q29 succinate dehydrogenase complex, subunit A, flavoprotein pseudogene 2 pseudo SDHAP2 succinate dehydrogenase complex, subunit A, flavoprotein pseudogene 2 O - 20121230 -9606 727957 MROH1 - HEATR7A HGNC:26958|Ensembl:ENSG00000179832|Vega:OTTHUMG00000165781 8 8q24.3 maestro heat-like repeat family member 1 protein-coding MROH1 maestro heat-like repeat family member 1 O HEAT repeat containing 7A|HEAT repeat-containing protein 7A 20121230 -9606 727961 LOC727961 hCG_1776047 - - 18 18q21.2 hCG1776047 protein-coding - - - - 20120511 -9606 727964 LOC727964 - - - 16 16p11.1 chromosome 2 open reading frame 69 pseudogene pseudo - - - - 20121230 -9606 727967 LOC727967 - - - 8 8q24.3 block of proliferation 1 pseudogene pseudo - - - - 20121230 -9606 727969 TSPY16P - - HGNC:37712 Y Yp11.2 testis specific protein, Y-linked 16, pseudogene pseudo TSPY16P testis specific protein, Y-linked 16, pseudogene O - 20121230 -9606 727970 RPS3AP43 - RPS3A_21_1203 HGNC:36684 12 12p13.31 ribosomal protein S3a pseudogene 43 pseudo RPS3AP43 ribosomal protein S3a pseudogene 43 O - 20121230 -9606 727978 LOC727978 - - - 3 3q29 uncharacterized LOC727978 pseudo - - - - 20121209 -9606 727980 LOC727980 - - - 14 14q11.2 translocase of outer mitochondrial membrane 40 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 727982 LOC727982 - - - 2 2p25.2 uncharacterized LOC727982 miscRNA - - - - 20121230 -9606 727983 LOC727983 - - - 22 22q11.21 putative POM121-like protein 1-like unknown - - - - 20121230 -9606 727984 RPL17P22 - RPL17_13_564 HGNC:35761 5 5q11.2 ribosomal protein L17 pseudogene 22 pseudo RPL17P22 ribosomal protein L17 pseudogene 22 O - 20121230 -9606 727987 FAM207CP - - HGNC:42676 21 21q11.2 family with sequence similarity 207, member C pseudo FAM207CP family with sequence similarity 207, member C O - 20121230 -9606 727991 SLC35E1P1 - - HGNC:42046 13 13q12.11 solute carrier family 35, member E1 pseudogene 1 pseudo SLC35E1P1 solute carrier family 35, member E1 pseudogene 1 O - 20121230 -9606 727993 LOC727993 - - - 20 20p13 uncharacterized LOC727993 unknown - - - - 20120511 -9606 727997 RPS12P9 - RPS12_3_484 HGNC:36719 4 4q13.1 ribosomal protein S12 pseudogene 9 pseudo RPS12P9 ribosomal protein S12 pseudogene 9 O - 20121230 -9606 728002 RPL15P17 - RPL15_10_1204 HGNC:36852 12 12p13.31 ribosomal protein L15 pseudogene 17 pseudo RPL15P17 ribosomal protein L15 pseudogene 17 O - 20121230 -9606 728005 CTGLF9P - bA548K23.1 HGNC:23499 10 10q11.22 centaurin, gamma-like family, member 9 pseudogene pseudo CTGLF9P centaurin, gamma-like family, member 9 pseudogene O - 20121209 -9606 728008 C11orf89 - - HGNC:35118 11 11p15.5 chromosome 11 open reading frame 89 unknown C11orf89 chromosome 11 open reading frame 89 O - 20121021 -9606 728010 RPL35P3 - RPL35_2_728 HGNC:35488 6 6q21 ribosomal protein L35 pseudogene 3 pseudo RPL35P3 ribosomal protein L35 pseudogene 3 O - 20121230 -9606 728012 LOC728012 - - - 6 6q16.3 uncharacterized LOC728012 miscRNA - - - - 20121230 -9606 728013 CBWD7 - - HGNC:31977|Ensembl:ENSG00000215126|Vega:OTTHUMG00000067194 9 9p12 COBW domain containing 7 protein-coding CBWD7 COBW domain containing 7 O putative COBW domain-containing protein 7|putative cobalamin synthase W domain-containing protein 7 20121209 -9606 728015 LOC728015 - - - 4 4p16.3-p16.2 ribosomal protein S7 pseudogene pseudo - - - - 20121230 -9606 728019 LOC728019 - - - 4 4q13.3 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 728022 DUX4L14 XX-2136C48.5 - HGNC:38673 10 10q26.3 double homeobox 4 like 14 pseudo DUX4L14 double homeobox 4 like 14 O - 20121209 -9606 728023 H2AFZP3 RP11-461N23.3 - HGNC:38013 13 13q32.3 H2A histone family, member Z pseudogene 3 pseudo H2AFZP3 H2A histone family, member Z pseudogene 3 O - 20121230 -9606 728024 LOC728024 hCG_1640171 - - 8 8p11.23 chromosome X open reading frame 56 pseudogene pseudo - - - - 20121230 -9606 728026 LOC728026 - - - 9 9q22.32 prothymosin alpha-like protein-coding - - - - 20121209 -9606 728034 LOC728034 - - - 9 9p12 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121209 -9606 728036 CT47A10 RP6-166C19.10 CT47|CT47.10 HGNC:33291|MIM:300789|Ensembl:ENSG00000224089|Vega:OTTHUMG00000022309 X Xq24 cancer/testis antigen family 47, member A10 protein-coding CT47A10 cancer/testis antigen family 47, member A10 O cancer/testis CT47 family, member 10|cancer/testis antigen 47|cancer/testis antigen 47A 20121209 -9606 728039 SSR4P1 hCG_401283 C21orf122|PRED57|PRED90 HGNC:23131 21 21q22.3 signal sequence receptor, delta pseudogene 1 pseudo SSR4P1 signal sequence receptor, delta pseudogene 1 O - 20121230 -9606 728040 LOC728040 hCG_1813624 - - 4 4q13.3 hCG1813624 miscRNA - - - - 20121230 -9606 728042 CT47A9 RP6-166C19.9 CT47.9 HGNC:33290|MIM:300788|Ensembl:ENSG00000226600|Vega:OTTHUMG00000022319 X Xq24 cancer/testis antigen family 47, member A9 protein-coding CT47A9 cancer/testis antigen family 47, member A9 O cancer/testis CT47 family, member 9|cancer/testis antigen 47A 20121212 -9606 728045 PPBPP1 - PPBPL1|TGB2 HGNC:9241|MIM:188035 4 4q13.3 pro-platelet basic protein pseudogene 1 pseudo PPBPP1 pro-platelet basic protein pseudogene 1 O - 20121230 -9606 728047 GOLGA8O - - HGNC:44406|Ensembl:ENSG00000206127|Vega:OTTHUMG00000162878 15 15q13.3 golgin A8 family, member O protein-coding GOLGA8O golgin A8 family, member O O golgin subfamily A member 8-like protein 2-like 20121209 -9606 728048 LOC728048 - - - 4 4q13.2 interferon induced transmembrane protein pseudogene pseudo - - - - 20121230 -9606 728049 CT47A8 - CT47.8 HGNC:33289|MIM:300787|Ensembl:ENSG00000230347|Vega:OTTHUMG00000022318 X Xq24 cancer/testis antigen family 47, member A8 protein-coding CT47A8 cancer/testis antigen family 47, member A8 O cancer/testis CT47 family, member 8|cancer/testis antigen 47A 20121212 -9606 728053 BMS1P1 RP11-556L1.4 BMS1LP1|bA556L1.3 HGNC:23649|Vega:OTTHUMG00000018098 10 10q11.22 BMS1 pseudogene 1 pseudo BMS1P1 BMS1 pseudogene 1 O - 20121230 -9606 728056 LOC728056 - - - 20 20q13.33 IQ motif and Sec7 domain 3 pseudogene pseudo - - - - 20121230 -9606 728061 LOC728061 hCG_2003663 - - 9 9q22.32 hCG2003663 unknown - - - - 20120511 -9606 728062 CT47A6 RP6-166C19.6 CT47.6 HGNC:33287|MIM:300785|Ensembl:ENSG00000226023|Vega:OTTHUMG00000022316 X Xq24 cancer/testis antigen family 47, member A6 protein-coding CT47A6 cancer/testis antigen family 47, member A6 O cancer/testis CT47 family, member 6|cancer/testis antigen 47A 20121212 -9606 728064 LOC728064 - - - 10 10q11.21 cubilin (intrinsic factor-cobalamin receptor) pseudogene pseudo - - - - 20121230 -9606 728065 LOC728065 - - - 10 10q26.2 uncharacterized LOC728065 protein-coding - - - - 20121209 -9606 728066 FAM133DP - - HGNC:44192 2 2q24.1 family with sequence similarity 133, member A pseudogene pseudo FAM133DP family with sequence similarity 133, member D, pseudogene O - 20121230 -9606 728071 FAM203B - BRP16L|C8orf30B HGNC:32323|Ensembl:ENSG00000230567|Vega:OTTHUMG00000165109 8 8q24.3 family with sequence similarity 203, member B protein-coding FAM203B family with sequence similarity 203, member B O protein FAM203B 20121230 -9606 728072 CT47A5 RP6-166C19.5 CT47.5 HGNC:33286|MIM:300784|Ensembl:ENSG00000237957|Vega:OTTHUMG00000022315 X Xq24 cancer/testis antigen family 47, member A5 protein-coding CT47A5 cancer/testis antigen family 47, member A5 O CT47|cancer/testis CT47 family, member 5|cancer/testis antigen 47|cancer/testis antigen 47A 20121209 -9606 728073 LOC728073 - - - 17 17q25.1 uncharacterized LOC728073 unknown - - - - 20120511 -9606 728075 CT47A4 RP6-166C19.4 CT47.4 HGNC:33285|MIM:300783|Ensembl:ENSG00000230594|Vega:OTTHUMG00000022314 X Xq24 cancer/testis antigen family 47, member A4 protein-coding CT47A4 cancer/testis antigen family 47, member A4 O cancer/testis CT47 family, member 4|cancer/testis antigen 47A 20121212 -9606 728081 LINC00290 hCG_2025798 NCRNA00290 HGNC:38515 4 4q34.3 long intergenic non-protein coding RNA 290 miscRNA LINC00290 long intergenic non-protein coding RNA 290 O - 20121230 -9606 728082 CT47A3 RP6-166C19.3 CT47.3 HGNC:33284|MIM:300782|Ensembl:ENSG00000236126|Vega:OTTHUMG00000022313 X Xq24 cancer/testis antigen family 47, member A3 protein-coding CT47A3 cancer/testis antigen family 47, member A3 O cancer/testis CT47 family, member 3|cancer/testis antigen 47A 20121212 -9606 728084 LOC728084 - - - 12 12q21.33 uncharacterized LOC728084 miscRNA - - - - 20121230 -9606 728088 RPL15P18 - RPL15_5_1331 HGNC:36515 13 13q32.3 ribosomal protein L15 pseudogene 18 pseudo RPL15P18 ribosomal protein L15 pseudogene 18 O - 20121230 -9606 728090 CT47A2 RP6-166C19.2 CT47.2 HGNC:33283|MIM:300781|Ensembl:ENSG00000242362|Vega:OTTHUMG00000022312 X Xq24 cancer/testis antigen family 47, member A2 protein-coding CT47A2 cancer/testis antigen family 47, member A2 O cancer/testis CT47 family, member 2|cancer/testis antigen 47A 20121212 -9606 728093 LOC728093 - - - 5 5q21.1 putative POM121-like protein 1-like unknown - - - - 20121230 -9606 728095 LOC728095 - - - 5 5q34 uncharacterized LOC728095 unknown - - - - 20121230 -9606 728096 CT47A1 RP6-166C19.1 CT47.1 HGNC:33282|MIM:300780|Ensembl:ENSG00000236371|Vega:OTTHUMG00000022311 X Xq24 cancer/testis antigen family 47, member A1 protein-coding CT47A1 cancer/testis antigen family 47, member A1 O cancer/testis CT47 family, member 1|cancer/testis antigen 47A 20121212 -9606 728097 FAM8A2P - - HGNC:16373 11 11q12.1 family with sequence similarity 8, member A1 pseudogene pseudo FAM8A2P family with sequence similarity 8, member A2 pseudogene O - 20121230 -9606 728098 LOC728098 - - - 6 6q16.3 mitogen-activated protein kinase 1 interacting protein 1-like pseudogene pseudo - - - - 20121230 -9606 728099 LOC728099 - - - 13 13q12.11 uncharacterized LOC728099 unknown - - - - 20120511 -9606 728100 LOC728100 - - - 3 3q29 uncharacterized LOC728100 protein-coding - - - - 20120318 -9606 728106 RPL23AP50 - RPL23A_20_731 HGNC:35958 6 6q21 ribosomal protein L23a pseudogene 50 pseudo RPL23AP50 ribosomal protein L23a pseudogene 50 O - 20121230 -9606 728111 HMGN1P31 hCG_1659830 - HGNC:39375 18 18q21.32 high mobility group nucleosome binding domain 1 pseudogene 31 pseudo HMGN1P31 high mobility group nucleosome binding domain 1 pseudogene 31 O - 20121230 -9606 728113 ANXA8L1 RP11-144G6.1 ANXA8|bA301J7.3 HGNC:23334|Ensembl:ENSG00000150165|Vega:OTTHUMG00000018114 10 10q11.22 annexin A8-like 1 protein-coding ANXA8L1 annexin A8-like 1 O VAC-beta|annexin A8-like protein 1|annexin VIII|annexin-8|vascular anticoagulant-beta 20121230 -9606 728114 LOC728114 - - - 12 12q13.11 uncharacterized LOC728114 unknown - - - - 20121117 -9606 728115 FAM60CP - - HGNC:31737 18 18q21.32 family with sequence similarity 60, member C pseudogene pseudo FAM60CP family with sequence similarity 60, member C pseudogene O - 20121230 -9606 728116 ZBTB8B - RP1-27O5.1|ZNF916B HGNC:37057|Ensembl:ENSG00000215897|Vega:OTTHUMG00000167087 1 1p35.1 zinc finger and BTB domain containing 8B protein-coding ZBTB8B zinc finger and BTB domain containing 8B O putative zinc finger and BTB domain-containing protein 8B|zinc finger and BTB domain-containing protein 8B 20121230 -9606 728118 FAM22A RP11-322M19.3 - HGNC:23438|Ensembl:ENSG00000184923|Vega:OTTHUMG00000018670 10 10q23.2 family with sequence similarity 22, member A protein-coding FAM22A family with sequence similarity 22, member A O protein FAM22A 20121230 -9606 728121 LOC728121 - - - 15 15q25.3 chondroitin sulfate proteoglycan 4 pseudogene pseudo - - - - 20121230 -9606 728126 RPSAP30 - RPSA_7_452 HGNC:35861 3 3q29 ribosomal protein SA pseudogene 30 pseudo RPSAP30 ribosomal protein SA pseudogene 30 O - 20121230 -9606 728127 AGAP10 - CTGLF7|bA144G6.2 HGNC:23462|Ensembl:ENSG00000204172|Vega:OTTHUMG00000018115 10 10q11.22 ArfGAP with GTPase domain, ankyrin repeat and PH domain 10 protein-coding AGAP10 ArfGAP with GTPase domain, ankyrin repeat and PH domain 10 O centaurin, gamma-like family, member 7 20121230 -9606 728128 RPL7AP26 - RPL7A_8_496 HGNC:36815 4 4q21.22 ribosomal protein L7a pseudogene 26 pseudo RPL7AP26 ribosomal protein L7a pseudogene 26 O - 20121230 -9606 728130 FAM22D RP11-157H10.1 - HGNC:23447|Ensembl:ENSG00000214562|Vega:OTTHUMG00000018672 10 10q23.2 family with sequence similarity 22, member D protein-coding FAM22D family with sequence similarity 22, member D O protein FAM22D 20121230 -9606 728131 RPS6P6 - - - 4 4q21.22 ribosomal protein S6 pseudogene pseudo - - - - 20121230 -9606 728132 TSPY9P - TSPY9 HGNC:37472 Y Yp11.2 testis specific protein, Y-linked 9, pseudogene pseudo TSPY9P testis specific protein, Y-linked 9, pseudogene O - 20121209 -9606 728134 RPL23AP18 RP11-384C4.3 RPL23A_3_161 HGNC:36726 1 1q32.3 ribosomal protein L23a pseudogene 18 pseudo RPL23AP18 ribosomal protein L23a pseudogene 18 O - 20121230 -9606 728137 TSPY3 - - HGNC:33876|Ensembl:ENSG00000228927|Vega:OTTHUMG00000041535 Y Yp11.2 testis specific protein, Y-linked 3 protein-coding TSPY3 testis specific protein, Y-linked 3 O testis-specific Y-encoded protein 3 20121209 -9606 728138 LOC728138 - - - 16 16p13.11 KIAA2013 pseudogene pseudo - - - - 20121230 -9606 728139 RPL7AP70 - RPL7A_32_1739 HGNC:36752 22 22q11.21 ribosomal protein L7a pseudogene 70 pseudo RPL7AP70 ribosomal protein L7a pseudogene 70 O - 20121230 -9606 728143 CHCHD4P4 - - HGNC:44492 3 3p25.3 coiled-coil-helix-coiled-coil-helix domain containing 4 pseudogene 4 pseudo CHCHD4P4 coiled-coil-helix-coiled-coil-helix domain containing 4 pseudogene 4 O - 20121230 -9606 728145 LOC728145 - - - 5 5q35.1 uncharacterized LOC728145 unknown - - - - 20121230 -9606 728147 LOC728147 - - - 12 12p13.33 uncharacterized LOC728147 unknown - - - - 20120909 -9606 728157 ANKRD20A6P - - HGNC:37714 Y Yq11.1 ankyrin repeat domain 20 family, member A6, pseudogene pseudo ANKRD20A6P ankyrin repeat domain 20 family, member A6, pseudogene O - 20121209 -9606 728158 LOC728158 hCG_2044975 - - 10 10q26.2 hCG2044975 unknown - - - - 20120511 -9606 728162 ST13P11 - - HGNC:38746 11 11q21 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 11 pseudo ST13P11 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 11 O - 20121230 -9606 728167 KRT8P31 - - HGNC:39865 5 5q12.1 keratin 8 pseudogene 31 pseudo KRT8P31 keratin 8 pseudogene 31 O - 20121230 -9606 728169 DUX4L16 - DUXY1 HGNC:37719 Y Yq11.21 double homeobox 4 like 16 pseudo DUX4L16 double homeobox 4 like 16 O - 20121230 -9606 728170 LOC728170 - - - 12 12q22 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 728175 LOC728175 - - - 4 4q35.1 uncharacterized LOC728175 miscRNA - - - - 20121230 -9606 728178 LOC728178 - - - 5 5p15.2 uncharacterized LOC728178 unknown - - - - 20120511 -9606 728179 RPL7AP36 - RPL7A_9_655 HGNC:36356 6 6p24.3 ribosomal protein L7a pseudogene 36 pseudo RPL7AP36 ribosomal protein L7a pseudogene 36 O - 20121230 -9606 728190 LOC728190 - - - 10 10q23.2 uncharacterized LOC728190 miscRNA - - - - 20121230 -9606 728192 LINC00460 - - HGNC:42809 13 13q33.3 long intergenic non-protein coding RNA 460 miscRNA LINC00460 long intergenic non-protein coding RNA 460 O - 20121230 -9606 728194 RSPH10B2 - - HGNC:34385|Ensembl:ENSG00000169402|Vega:OTTHUMG00000151856 7 7p22.1 radial spoke head 10 homolog B2 (Chlamydomonas) protein-coding RSPH10B2 radial spoke head 10 homolog B2 (Chlamydomonas) O radial spoke head 10 homolog B 20121230 -9606 728195 LOC728195 - - - 9 9p11.2 fibroblast growth factor 7 pseudogene pseudo - - - - 20121230 -9606 728196 LOC728196 - - - 11 11q23.1 uncharacterized LOC728196 unknown - - - - 20120508 -9606 728202 RPL36AP7 hCG_1789827 RPL36A_24_1574 HGNC:31328 17 17q25.1 ribosomal protein L36a pseudogene 7 pseudo RPL36AP7 ribosomal protein L36a pseudogene 7 O - 20121230 -9606 728207 RPL23AP75 - RPL23A_32_1546 HGNC:35975 17 17q21.2 ribosomal protein L23a pseudogene 75 pseudo RPL23AP75 ribosomal protein L23a pseudogene 75 O - 20121230 -9606 728208 LOC728208 - - - 2 2q37.3 uncharacterized LOC728208 unknown - - - - 20121230 -9606 728215 FAM155A - - HGNC:33877|Ensembl:ENSG00000204442|Vega:OTTHUMG00000017326 13 13q33.3 family with sequence similarity 155, member A protein-coding FAM155A family with sequence similarity 155, member A O transmembrane protein FAM155A 20121230 -9606 728218 LOC728218 - - - 10 10q23.2 uncharacterized LOC728218 miscRNA - - - - 20121230 -9606 728224 KRTAP4-8 hCG_2042992 KAP4.8|KRTAP4.8 HGNC:17230|Ensembl:ENSG00000204880|Vega:OTTHUMG00000133580 17 17q21.2 keratin associated protein 4-8 protein-coding KRTAP4-8 keratin associated protein 4-8 O keratin associated protein 4.8|keratin-associated protein 4-8|keratin-associated protein 4.8|ultrahigh sulfur keratin-associated protein 4.8 20121230 -9606 728226 GGTLC3 - GGT HGNC:33426|MIM:612340 22 22q11.21 gamma-glutamyltransferase light chain 3 pseudo GGTLC3 gamma-glutamyltransferase light chain 3 O - 20121230 -9606 728228 LOC728228 hCG_2045830 - - 20 20p13 uncharacterized LOC728228 miscRNA - - - - 20121230 -9606 728229 TMEM191B - - HGNC:33600 22 22q11.21 transmembrane protein 191B protein-coding TMEM191B transmembrane protein 191B O - 20121230 -9606 728231 UBTFL5 - - HGNC:35405 2 2q11.1 upstream binding transcription factor, RNA polymerase I-like 5 (pseudogene) pseudo UBTFL5 upstream binding transcription factor, RNA polymerase I-like 5 (pseudogene) O - 20121209 -9606 728233 PI4KAP1 - - HGNC:33576 22 22q11.21 phosphatidylinositol 4-kinase, catalytic, alpha pseudogene 1 pseudo PI4KAP1 phosphatidylinositol 4-kinase, catalytic, alpha pseudogene 1 O - 20121230 -9606 728234 HMGN2P16 - HMGN2L HGNC:31330 9 9p22.3 high mobility group nucleosomal binding domain 2 pseudogene 16 pseudo HMGN2P16 high mobility group nucleosomal binding domain 2 pseudogene 16 O - 20121230 -9606 728239 MAGED4 hCG_32481 MAGE-E1|MAGE1|MAGEE1 HGNC:23793|MIM:300702|Ensembl:ENSG00000154545|Vega:OTTHUMG00000042235 X Xp11.22 melanoma antigen family D, 4 protein-coding MAGED4 melanoma antigen family D, 4 O MAGE-D4 antigen|MAGE-E1 antigen|melanoma-associated antigen D4 20121230 -9606 728242 XAGE2B CTD-2267G17.3 - HGNC:30680 X Xp11.22 X antigen family, member 2B protein-coding XAGE2B X antigen family, member 2B O CT12.2|G antigen family D member 3|cancer/testis antigen 12.2|protein XAGE-2 20121104 -9606 728244 RPS12P29 - RPS12_15_1507 HGNC:36206 17 17p13.2 ribosomal protein S12 pseudogene 29 pseudo RPS12P29 ribosomal protein S12 pseudogene 29 O - 20121230 -9606 728247 LOC728247 - - - 3 3q29 putative tubulin beta chain-like protein ENSP00000290377-like pseudo - - - - 20121209 -9606 728248 ABCB10P3 - - HGNC:31129 15 15q13.1 ATP-binding cassette, sub-family B (MDR/TAP), member 10 pseudogene 3 pseudo ABCB10P3 ATP-binding cassette, sub-family B (MDR/TAP), member 10 pseudogene 3 O - 20121230 -9606 728254 LOC728254 - - - 5 5q22.3 uncharacterized LOC728254 unknown - - - - 20120508 -9606 728255 KRTAP1-4 - KAP1.4|KRTAP1.4 HGNC:18904|MIM:608821|Ensembl:ENSG00000204887|Vega:OTTHUMG00000133631 17 17q21.2 keratin associated protein 1-4 protein-coding KRTAP1-4 keratin associated protein 1-4 O high sulfur keratin-associated protein 1.4|keratin-associated protein 1-4|keratin-associated protein 1.4 20121230 -9606 728262 FAM157A - - HGNC:34079|Ensembl:ENSG00000236438 3 3q29 family with sequence similarity 157, member A protein-coding FAM157A family with sequence similarity 157, member A O putative protein FAM157A 20121230 -9606 728263 ALG1L7P - - HGNC:44376 4 4p16.3 asparagine-linked glycosylation 1-like 7, pseudogene pseudo ALG1L7P asparagine-linked glycosylation 1-like 7, pseudogene O - 20121230 -9606 728264 MIR143HG - - HGNC:42872 5 5q32 MIR143 host gene (non-protein coding) miscRNA MIR143HG MIR143 host gene (non-protein coding) O - 20121230 -9606 728269 MAGEA9B - - HGNC:31909|MIM:300764|Ensembl:ENSG00000123584|Vega:OTTHUMG00000022621 X Xq28 melanoma antigen family A, 9B protein-coding MAGEA9B melanoma antigen family A, 9B O CT1.9|MAGE-9 antigen|cancer/testis antigen 1.9|melanoma-associated antigen 9 20121230 -9606 728276 CLEC19A UNQ5810/PRO19627 - HGNC:34522 16 16p12.3 C-type lectin domain family 19, member A protein-coding CLEC19A C-type lectin domain family 19, member A O C-type lectin domain family 19 member A 20121230 -9606 728279 KRTAP2-2 - KAP2.2 HGNC:18905|Ensembl:ENSG00000214518|Vega:OTTHUMG00000133593 17 17q21.2 keratin associated protein 2-2 protein-coding KRTAP2-2 keratin associated protein 2-2 O putative keratin-associated protein ENSP00000381495 20121230 -9606 728283 FLJ33544 - - - 20 20p12.3 uncharacterized LOC728283 unknown - - - - 20120909 -9606 728287 LOC728287 - - - 5 5q33.1 uncharacterized LOC728287 unknown - - - - 20120511 -9606 728290 LOC728290 - - - 3 3p12.2 uncharacterized LOC728290 miscRNA - - - - 20121209 -9606 728294 D2HGDH hCG_31745 D2HGD HGNC:28358|MIM:609186|Ensembl:ENSG00000180902|HPRD:14502|Vega:OTTHUMG00000151474 2 2q37.3 D-2-hydroxyglutarate dehydrogenase protein-coding D2HGDH D-2-hydroxyglutarate dehydrogenase O D-2-hydroxyglutarate dehydrogenase, mitochondrial 20121230 -9606 728299 KRTAP19-8 - - HGNC:33898|Ensembl:ENSG00000206102|Vega:OTTHUMG00000057787 21 21q22.11 keratin associated protein 19-8 protein-coding KRTAP19-8 keratin associated protein 19-8 O keratin-associated protein 19-8 20121230 -9606 728300 KRT18P5 - - HGNC:19259 22 22q11.21 keratin 18 pseudogene 5 pseudo KRT18P5 keratin 18 pseudogene 5 O - 20121230 -9606 728307 LOC728307 - - - X Xq28 melanoma associated antigen (mutated) 1-like 1 pseudogene pseudo - - - - 20121209 -9606 728310 GOLGA6L7P - GOLGA6L7 HGNC:37442 15 15q13.1 golgin A6 family-like 7, pseudogene pseudo GOLGA6L7P golgin A6 family-like 7, pseudogene O - 20121230 -9606 728311 RPL26P24 - RPL26_12_861 HGNC:35774 7 7q35 ribosomal protein L26 pseudogene 24 pseudo RPL26P24 ribosomal protein L26 pseudogene 24 O - 20121230 -9606 728315 RPL7AP31 - RPL7A_7_480 HGNC:36857 4 4q12 ribosomal protein L7a pseudogene 31 pseudo RPL7AP31 ribosomal protein L7a pseudogene 31 O - 20121230 -9606 728317 LOC728317 - - - X Xq28 melanoma associated antigen (mutated) 1-like 1 pseudogene pseudo - - - - 20121230 -9606 728318 KRTAP9-1 - KAP9.1|KRTAP9L3 HGNC:18912|Ensembl:ENSG00000240542|Vega:OTTHUMG00000133636 17 17q21.2 keratin associated protein 9-1 protein-coding KRTAP9-1 keratin associated protein 9-1 O Putative keratin-associated protein 9-2-like 3|keratin associated protein 9-like 3|keratin-associated protein 9-1 20121230 -9606 728323 LOC728323 - - - 2 2q37.3 uncharacterized LOC728323 miscRNA - - - - 20121230 -9606 728324 CHCHD2P2 - - HGNC:39586 5 5q13.2 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 2 pseudo CHCHD2P2 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 2 O - 20121230 -9606 728325 HMGN1P21 - - HGNC:39365 11 11p15.4 high mobility group nucleosome binding domain 1 pseudogene 21 pseudo HMGN1P21 high mobility group nucleosome binding domain 1 pseudogene 21 O - 20121230 -9606 728327 LOC728327 hCG_1795091 - - 10 10q26.3 hCG1795091 unknown - - - - 20120511 -9606 728333 LOC728333 - - - 4 4q22.1 nuclear receptor coactivator 4 pseudogene pseudo - - - - 20121230 -9606 728339 LOC728339 - - - 4 4q35.2 uncharacterized LOC728339 unknown - - - - 20120511 -9606 728340 GTF2H2C - - HGNC:31394|Ensembl:ENSG00000183474|Vega:OTTHUMG00000162365 5 5q13.2 general transcription factor IIH, polypeptide 2C protein-coding GTF2H2C general transcription factor IIH, polypeptide 2C O general transcription factor IIH polypeptide 2-like protein|general transcription factor IIH subunit 2-like protein 20121230 -9606 728342 LOC728342 - - - 5 5q23.1 uncharacterized LOC728342 miscRNA - - - - 20121230 -9606 728343 NXF2B RP11-353J17.1 bA353J17.1 HGNC:23984|Ensembl:ENSG00000185945|Vega:OTTHUMG00000154920 X Xq22.1 nuclear RNA export factor 2B protein-coding NXF2B nuclear RNA export factor 2B O TAP-like protein 2|cancer/testis antigen 39|nuclear RNA export factor 2 20121230 -9606 728344 LOC728344 - - - 6 6p25.2 glutaredoxin 3 pseudogene pseudo - - - - 20121230 -9606 728350 EIF2S2P4 - - HGNC:37626 2 2q31.1 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 4 pseudo EIF2S2P4 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 4 O - 20121230 -9606 728353 LOC728353 - - - 14 14q11.2 uncharacterized LOC728353 unknown - - - - 20121018 -9606 728358 DEFA1B - HNP-1|HP-1|HP1 HGNC:33596|Ensembl:ENSG00000240247|Vega:OTTHUMG00000149850 8 8p23.1 defensin, alpha 1B protein-coding DEFA1B defensin, alpha 1B O neutrophil defensin 1 20121209 -9606 728361 OVOL3 - - HGNC:14186|Ensembl:ENSG00000105261|Vega:OTTHUMG00000181748 19 19q13.12 ovo-like 3 (Drosophila) protein-coding OVOL3 ovo-like 3 (Drosophila) O OVO homolog-like 3|putative transcription factor ovo-like protein 3 20121230 -9606 728365 RPL6P16 - RPL6_12_538 HGNC:35674 4 4q35.1 ribosomal protein L6 pseudogene 16 pseudo RPL6P16 ribosomal protein L6 pseudogene 16 O - 20121230 -9606 728366 LOC728366 - - - 5 5q22.1 BCL2-associated transcription factor 1 pseudogene pseudo - - - - 20121230 -9606 728369 USP17L24 - - HGNC:44453|Ensembl:ENSG00000232264|Vega:OTTHUMG00000160201 4 4p16.1 ubiquitin specific peptidase 17-like family member 24 protein-coding USP17L24 ubiquitin specific peptidase 17-like family member 24 O - 20121209 -9606 728373 USP17L25 - - HGNC:44452|Ensembl:ENSG00000230430|Vega:OTTHUMG00000160192 4 4p16.1 ubiquitin specific peptidase 17-like family member 25 protein-coding USP17L25 ubiquitin specific peptidase 17-like family member 25 O - 20121209 -9606 728374 RPL9P21 - RPL9_8_1037 HGNC:35886 10 10q11.21 ribosomal protein L9 pseudogene 21 pseudo RPL9P21 ribosomal protein L9 pseudogene 21 O - 20121230 -9606 728375 LOC728375 - - - 2 2q24.3 uncharacterized LOC728375 protein-coding - - - - 20120710 -9606 728376 LOC728376 - - - 7 7p11.2 zinc finger protein pseudogene pseudo - - - - 20121230 -9606 728377 LOC728377 - - - 7 7q35 Rho guanine nucleotide exchange factor (GEF) 5 pseudogene pseudo - - - - 20121230 -9606 728378 POTEF - A26C1B|ACTB|POTE2alpha|POTEACTIN HGNC:33905|Ensembl:ENSG00000196604|Vega:OTTHUMG00000153628 2 2q21.1 POTE ankyrin domain family, member F protein-coding POTEF POTE ankyrin domain family, member F O ANKRD26-like family C member 1B|ANKRD26-like family C, member 1B|POTE ankyrin domain family member F|POTE-2 alpha-actin|beta actin|chimeric POTE-actin protein|prostate, ovary, testis expressed protein on chromosome 2 20121230 -9606 728379 USP17L26 - - HGNC:44454|Ensembl:ENSG00000229579|Vega:OTTHUMG00000160189 4 4p16.1 ubiquitin specific peptidase 17-like family member 26 protein-coding USP17L26 ubiquitin specific peptidase 17-like family member 26 O - 20121230 -9606 728380 RPL7P26 - RPL7_9_661 HGNC:36630 6 6p22.3 ribosomal protein L7 pseudogene 26 pseudo RPL7P26 ribosomal protein L7 pseudogene 26 O - 20121230 -9606 728381 NRBF2P4 - - HGNC:44607 8 8q23.1 nuclear receptor binding factor 2 pseudogene 4 pseudo NRBF2P4 nuclear receptor binding factor 2 pseudogene 4 O - 20121230 -9606 728386 USP17L5 - - HGNC:37177|Ensembl:ENSG00000227140|Vega:OTTHUMG00000160182 4 4p16.1 ubiquitin specific peptidase 17-like family member 5 protein-coding USP17L5 ubiquitin specific peptidase 17-like family member 5 O deubiquitinating enzyme 17-like protein 5|ubiquitin carboxyl-terminal hydrolase 17-like protein 5|ubiquitin specific peptidase 17-like 5|ubiquitin thioesterase 17-like protein 5|ubiquitin thiolesterase 17-like protein 5|ubiquitin-specific-processing protease 17-like protein 5 20121209 -9606 728388 DNM1P30 - DNM1DN3-4|DNM1DN3.4|DNM1DN3@|DNM1DN4-3|DNM1DN4@ HGNC:35177 15 15q13.2 DNM1 pseudogene 30 pseudo DNM1P30 DNM1 pseudogene 30 O - 20121230 -9606 728392 LOC728392 - - - 17 17p13.2 uncharacterized LOC728392 protein-coding - - - uncharacterized protein LOC728392 20121230 -9606 728393 USP17L27 - - HGNC:44455|Ensembl:ENSG00000235780|Vega:OTTHUMG00000160186 4 4p16.1 ubiquitin specific peptidase 17-like family member 27 protein-coding USP17L27 ubiquitin specific peptidase 17-like family member 27 O - 20121230 -9606 728395 TSPY4 - TSPY10|TSPY8 HGNC:37287|Ensembl:ENSG00000233803|Vega:OTTHUMG00000041529 Y Yp11.2 testis specific protein, Y-linked 4 protein-coding TSPY4 testis specific protein, Y-linked 4 O testis-specific Y-encoded protein 4 20121209 -9606 728400 USP17L28 - - HGNC:44456|Ensembl:ENSG00000231051|Vega:OTTHUMG00000160191 4 4p16.1 ubiquitin specific peptidase 17-like family member 28 protein-coding USP17L28 ubiquitin specific peptidase 17-like family member 28 O - 20121209 -9606 728402 TPI1P3 - - HGNC:38070 6 6q22.1 triosephosphate isomerase 1 pseudogene 3 pseudo TPI1P3 triosephosphate isomerase 1 pseudogene 3 O - 20121230 -9606 728403 TSPY8 - - HGNC:37471|Ensembl:ENSG00000229549|Vega:OTTHUMG00000041531 Y Yp11.2 testis specific protein, Y-linked 8 protein-coding TSPY8 testis specific protein, Y-linked 8 O testis-specific Y-encoded protein 8 20121209 -9606 728404 AGAP8 - CTGLF5 HGNC:23464|Ensembl:ENSG00000174194|Vega:OTTHUMG00000018205 10 10q11.23 ArfGAP with GTPase domain, ankyrin repeat and PH domain 8 protein-coding AGAP8 ArfGAP with GTPase domain, ankyrin repeat and PH domain 8 O AGAP-8|arf-GAP with GTPase, ANK repeat and PH domain-containing protein 8|centaurin, gamma-like family, member 5|centaurin-gamma-like family member 5 20121230 -9606 728405 USP17L29 - - HGNC:44457|Ensembl:ENSG00000231637|Vega:OTTHUMG00000160183 4 4p16.1 ubiquitin specific peptidase 17-like family member 29 protein-coding USP17L29 ubiquitin specific peptidase 17-like family member 29 O - 20121230 -9606 728407 LOC728407 RP11-592B15.4 - - 10 10q11.23 poly (ADP-ribose) glycohydrolase pseudogene pseudo - - - - 20121209 -9606 728409 C21orf54 hCG_2045804 - HGNC:1296 21 21q22.11 chromosome 21 open reading frame 54 miscRNA C21orf54 chromosome 21 open reading frame 54 O - 20121230 -9606 728410 DUX4L2 - DUX4 HGNC:37267|Ensembl:ENSG00000259128 4 4q35.2 double homeobox 4 like 2 protein-coding DUX4L2 double homeobox 4 like 2 O double homeobox protein 4-like protein 2 20121230 -9606 728411 GUSBP1 - - HGNC:13670 5 5p14.3 glucuronidase, beta pseudogene 1 pseudo GUSBP1 glucuronidase, beta pseudogene 1 O - 20121230 -9606 728416 LOC728416 - - - 7 7p11.2 translational machinery associated 7 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 728417 LOC728417 - - - 1 1q41 uncharacterized LOC728417 pseudo - - - - 20121230 -9606 728418 POM121L7 - - HGNC:35444 22 22q11.21 POM121 transmembrane nucleoporin-like 7 pseudo POM121L7 POM121 transmembrane nucleoporin-like 7 O - 20121209 -9606 728419 USP17L30 - - HGNC:44458|Ensembl:ENSG00000228856|Vega:OTTHUMG00000160199 4 4p16.1 ubiquitin specific peptidase 17-like family member 30 protein-coding USP17L30 ubiquitin specific peptidase 17-like family member 30 O - 20121230 -9606 728424 LOC728424 - - - 15 15q13.2 hyperpolarization activated cyclic nucleotide-gated potassium channel 2 pseudogene pseudo - - - - 20121209 -9606 728428 RPS15P1 - RPS15_1_87 HGNC:35725 1 1p13.2 ribosomal protein S15 pseudogene 1 pseudo RPS15P1 ribosomal protein S15 pseudogene 1 O - 20121230 -9606 728429 LOC728429 - - - 4 4p16.1 zinc finger protein 705A-like pseudo - - - - 20121222 -9606 728430 FAM90A20P - FAM90A20 HGNC:32268|MIM:613054 8 8p23.1 putative protein FAM90A20 pseudo FAM90A20P family with sequence similarity 90, member A20, pseudogene O - 20121230 -9606 728431 LOC728431 - - - 1 1p34.3 uncharacterized LOC728431 miscRNA - - - - 20121230 -9606 728432 LOC728432 - - - 3 3p11.1 NMDA receptor regulated 2 pseudogene pseudo - - - - 20121230 -9606 728433 LOC728433 - - - 9 9p11.2 fibroblast growth factor 7 pseudogene pseudo - - - - 20121209 -9606 728434 C20orf187 RP4-727I10.1 dJ727I10.1 HGNC:16180 20 20p12.2 chromosome 20 open reading frame 187 unknown C20orf187 chromosome 20 open reading frame 187 O putative uncharacterized protein C20orf187 20121216 -9606 728441 GGT2 - GGT|GGT 2 HGNC:4251|MIM:137181|Ensembl:ENSG00000133475|Vega:OTTHUMG00000150617 22 22q11.21 gamma-glutamyltransferase 2 protein-coding GGT2 gamma-glutamyltransferase 2 O gamma-glutamyltranspeptidase 2|glutathione hydrolase 2 20121230 -9606 728445 LOC728445 - - - 8 8p11.21 uncharacterized LOC728445 unknown - - - - 20120508 -9606 728447 TEX28P1 - pTEX HGNC:33356 X Xq28 testis expressed 28 pseudogene 1 pseudo TEX28P1 testis expressed 28 pseudogene 1 O - 20121230 -9606 728448 PPIEL - PPIEP1 HGNC:33195 1 1p34.3 peptidylprolyl isomerase E-like pseudogene pseudo PPIEL peptidylprolyl isomerase E-like pseudogene O - 20121230 -9606 728450 LINC00687 - C20orf61|dJ1012F16.1 HGNC:16194 20 20p12.2 long intergenic non-protein coding RNA 687 unknown LINC00687 long intergenic non-protein coding RNA 687 O - 20121230 -9606 728452 LOC728452 - - - 5 5q13.2 POM121 membrane glycoprotein (rat) pseudogene pseudo - - - - 20121209 -9606 728453 RPS28P6 - RPS28_2_814 HGNC:36085 7 7q11.22 ribosomal protein S28 pseudogene 6 pseudo RPS28P6 ribosomal protein S28 pseudogene 6 O - 20121230 -9606 728458 OPN1MW2 - GOP HGNC:26952|Ensembl:ENSG00000166160|Vega:OTTHUMG00000024231 X Xq28 opsin 1 (cone pigments), medium-wave-sensitive 2 protein-coding OPN1MW2 opsin 1 (cone pigments), medium-wave-sensitive 2 O green cone photoreceptor pigment|green-sensitive opsin|medium-wave-sensitive opsin 1 20121230 -9606 728461 CSAG2 - CSAG3B|CT24.2|TRAG-3|TRAG3 HGNC:16847 X Xq28 CSAG family, member 2 protein-coding CSAG2 CSAG family, member 2 O CSAG family, member 3B|cancer/testis antigen 24.2|cancer/testis antigen family 24, member 2|chondrosarcoma-associated gene 2/3 protein|taxol resistance associated gene 3|taxol-resistant-associated gene 3 protein 20121230 -9606 728463 LOC728463 - - - 1 1q41 uncharacterized LOC728463 miscRNA - - - - 20121230 -9606 728464 METTL24 RP1-71D21.2 C6orf186|dJ71D21.2 HGNC:21566|Ensembl:ENSG00000053328|Vega:OTTHUMG00000015359 6 6q21 methyltransferase like 24 protein-coding METTL24 methyltransferase like 24 O UPF0624 protein C6orf186|methyltransferase-like protein 24 20121230 -9606 728467 SNX5P2 - - HGNC:41513 12 12q23.1 sorting nexin 5 pseudogene 2 pseudo SNX5P2 sorting nexin 5 pseudogene 2 O - 20121230 -9606 728468 BCRP6 - - HGNC:39074 22 22q11.21 breakpoint cluster region pseudogene 6 pseudo BCRP6 breakpoint cluster region pseudogene 6 O - 20121209 -9606 728470 LOC728470 - - - X Xq26.3 chromosome X open reading frame 48 pseudogene pseudo - - - - 20121230 -9606 728477 LOC728477 - - - 15 15q26.1 golgin A2 pseudogene pseudo - - - - 20121230 -9606 728481 RPL23AP21 - RPL23A_1_1 HGNC:35827 1 1p36.33 ribosomal protein L23a pseudogene 21 pseudo RPL23AP21 ribosomal protein L23a pseudogene 21 O - 20121209 -9606 728484 RPL23AP61 - RPL23A_22_1044 HGNC:36016 10 10q11.23 ribosomal protein L23a pseudogene 61 pseudo RPL23AP61 ribosomal protein L23a pseudogene 61 O - 20121230 -9606 728485 LOC728485 - - - 19 19q13.12 uncharacterized LOC728485 unknown - - - - 20121230 -9606 728486 RPL7AP64 - RPL7A_29_1509 HGNC:35821 17 17p13.1 ribosomal protein L7a pseudogene 64 pseudo RPL7AP64 ribosomal protein L7a pseudogene 64 O - 20121230 -9606 728488 LOC728488 - - - 5 5q13.2 POM121 membrane glycoprotein (rat) pseudogene pseudo - - - - 20121209 -9606 728489 DNLZ RP11-413M3.2 C9orf151|HEP|TIMM15|ZIM17|bA413M3.2 HGNC:33879|Ensembl:ENSG00000213221|Vega:OTTHUMG00000020931 9 9q34.3 DNL-type zinc finger protein-coding DNLZ DNL-type zinc finger O DNL-type zinc finger protein|HSP70 escort protein|RP11-413M3.2|translocase of inner mitochondrial membrane 15 homolog 20121230 -9606 728492 SERF1B - FAM2B|H4F5C HGNC:10756|Ensembl:ENSG00000205572|Vega:OTTHUMG00000162391 5 5q13.2 small EDRK-rich factor 1B (centromeric) protein-coding SERF1B small EDRK-rich factor 1B (centromeric) O SMA modifier 1|h4F5|protein 4F5|small EDRK-rich factor 1 20121230 -9606 728493 DPPA3P1 GHc-362H12.2 - HGNC:32345 X Xq22.2 developmental pluripotency associated 3 pseudogene 1 pseudo DPPA3P1 developmental pluripotency associated 3 pseudogene 1 O - 20121230 -9606 728495 FAM74A3 - - HGNC:32031|Vega:OTTHUMG00000067149 9 9p13.1 family with sequence similarity 74, member A3 miscRNA FAM74A3 family with sequence similarity 74, member A3 O - 20121230 -9606 728498 GOLGA8H - GOLGA6L11 HGNC:37443|Ensembl:ENSG00000261794|Vega:OTTHUMG00000175654 15 15q13.2 golgin A8 family, member H protein-coding GOLGA8H golgin A8 family, member H O Golgin subfamily A member 8-like protein 1|golgi autoantigen, golgin subfamily a, 6-like 11 20121230 -9606 728499 LOC728499 - - - 5 5q13.2 POM121 membrane glycoprotein (rat) pseudogene pseudo - - - - 20121209 -9606 728501 RPL21P75 - RPL21_29_789 HGNC:36460 7 7p21.1 ribosomal protein L21 pseudogene 75 pseudo RPL21P75 ribosomal protein L21 pseudogene 75 O - 20121230 -9606 728503 LOC728503 - - - 12 12q13.13 uncharacterized LOC728503 protein-coding - - - - 20121209 -9606 728505 WDR82P1 hCG_26824 SW2|SWD2|WDR82|WDR82B|hCG26824 HGNC:32447 3 3q11.2 WD repeat domain 82 pseudogene 1 pseudo WDR82P1 WD repeat domain 82 pseudogene 1 O - 20121230 -9606 728506 LOC728506 - - - 5 5q13.2 POM121 membrane glycoprotein (rat) pseudogene pseudo - - - - 20121209 -9606 728509 RPS19P7 - RPS19_3_1038 HGNC:35550 10 10q11.21 ribosomal protein S19 pseudogene 7 pseudo RPS19P7 ribosomal protein S19 pseudogene 7 O - 20121230 -9606 728513 PNMA6B - - HGNC:26681 X Xq28 paraneoplastic Ma antigen family member 6B protein-coding PNMA6B paraneoplastic Ma antigen family member 6B O paraneoplastic antigen like 6B 20121230 -9606 728517 RPL23AP24 - RPL23A_1_2 HGNC:36176 1 1p36.33 ribosomal protein L23a pseudogene 24 pseudo RPL23AP24 ribosomal protein L23a pseudogene 24 O - 20121209 -9606 728519 LOC728519 - BIRC|NAIP1B - 5 5q13.2 NLR family, apoptosis inhibitory protein pseudogene pseudo - - - - 20121230 -9606 728523 RPL9P17 - RPL9_5_548 HGNC:36337 5 5p13.3 ribosomal protein L9 pseudogene 17 pseudo RPL9P17 ribosomal protein L9 pseudogene 17 O - 20121230 -9606 728524 LOC728524 - - - 7 7q11.23 Williams Beuren syndrome chromosome region 19 pseudogene pseudo - - - - 20121230 -9606 728526 LOC728526 - - - 5 5q13.2 POM121 membrane glycoprotein (rat) pseudogene pseudo - - - - 20121209 -9606 728532 LOC728532 - - - 10 10q11.23 dynein, cytoplasmic 1, intermediate chain 2 pseudogene pseudo - - - - 20121230 -9606 728533 LOC728533 - - - 19 19q13.12 IST1 homolog pseudo - - - - 20121230 -9606 728535 LOC728535 - - - 5 5q13.2 NLR family, apoptosis inhibitory protein pseudogene pseudo - - - - 20121230 -9606 728537 LOC728537 - - - 2 2q11.2 uncharacterized LOC728537 miscRNA - - - - 20121230 -9606 728538 RPL23AP77 - RPL23A_33_1589 HGNC:36354 18 18q11.2 ribosomal protein L23a pseudogene 77 pseudo RPL23AP77 ribosomal protein L23a pseudogene 77 O - 20121230 -9606 728540 LOC728540 - - - 5 5q13.2 POM121 membrane glycoprotein (rat) pseudogene pseudo - - - - 20121209 -9606 728543 LOC728543 - - - 12 12q24.13 uncharacterized LOC728543 unknown - - - - 20120511 -9606 728549 LOC728549 - - - 5 5q13.2 calcium binding protein P22 pseudogene pseudo - - - - 20121230 -9606 728553 RPS8P8 - RPS8_1_552 HGNC:36213 5 5p13.3 ribosomal protein S8 pseudogene 8 pseudo RPS8P8 ribosomal protein S8 pseudogene 8 O - 20121230 -9606 728554 LOC728554 - - - 5 5q35.3 THO complex 3 pseudogene pseudo - - - - 20121230 -9606 728556 MEMO1P1 - C21orf19|C2orf4P|MEMO1P|rcC2orf4 HGNC:23274 21 21q22.12 mediator of cell motility 1 pseudogene 1 pseudo MEMO1P1 mediator of cell motility 1 pseudogene 1 O - 20121230 -9606 728558 LOC728558 - - Vega:OTTHUMG00000018822 10 10q24.1 uncharacterized LOC728558 miscRNA - - - - 20121230 -9606 728562 RPSAP45 - RPSA_11_739 HGNC:35857 6 6q21 ribosomal protein SA pseudogene 45 pseudo RPSAP45 ribosomal protein SA pseudogene 45 O - 20121230 -9606 728564 GMPSP1 - - HGNC:39428 4 4p16.1 guanine monphosphate synthetase pseudogene 1 pseudo GMPSP1 guanine monphosphate synthetase pseudogene 1 O - 20121230 -9606 728567 RPL23AP48 - RPL23A_16_748 HGNC:36110 6 6q22.31 ribosomal protein L23a pseudogene 48 pseudo RPL23AP48 ribosomal protein L23a pseudogene 48 O - 20121230 -9606 728568 C12orf73 - - HGNC:34450|Ensembl:ENSG00000204954|Vega:OTTHUMG00000170119 12 12q23.3 chromosome 12 open reading frame 73 protein-coding C12orf73 chromosome 12 open reading frame 73 O uncharacterized protein C12orf73 20121230 -9606 728572 RPL32P11 - RPL32_2_350 HGNC:35723 3 3p24.2 ribosomal protein L32 pseudogene 11 pseudo RPL32P11 ribosomal protein L32 pseudogene 11 O - 20121230 -9606 728573 LOC728573 - - - 20 20p12.2 uncharacterized LOC728573 unknown - - - - 20120511 -9606 728575 LOC728575 - - - 5 5q13.2 POM121 membrane glycoprotein (rat) pseudogene pseudo - - - - 20121209 -9606 728576 RPL15P7 - RPL15_2_475 HGNC:36808 4 4p12 ribosomal protein L15 pseudogene 7 pseudo RPL15P7 ribosomal protein L15 pseudogene 7 O - 20121230 -9606 728577 CNTNAP3B AL353791.1 - HGNC:32035|Ensembl:ENSG00000154529|Vega:OTTHUMG00000013174 9 9p11.2 contactin associated protein-like 3B protein-coding CNTNAP3B contactin associated protein-like 3B O cell recognition molecule Caspr3b|contactin-associated protein-like 3B 20121230 -9606 728586 LOC728586 hCG_1981531 - - 5 5q23.2 hCG1981531 unknown - - - - 20121230 -9606 728587 LOC728587 - - - 8 8q11.1 zinc finger protein 736 pseudogene pseudo - - - - 20121230 -9606 728588 MS4A18 - - HGNC:37636|Ensembl:ENSG00000214782|Vega:OTTHUMG00000167687 11 11q12.2 membrane-spanning 4-domains, subfamily A, member 18 protein-coding MS4A18 membrane-spanning 4-domains, subfamily A, member 18 O - 20121230 -9606 728589 NAP1L4P1 RP4-781D12.3 - HGNC:39740 1 1p13.1 nucleosome assembly protein 1-like 4 pseudogene 1 pseudo NAP1L4P1 nucleosome assembly protein 1-like 4 pseudogene 1 O - 20121230 -9606 728590 RPS27AP11 - RPS27A_4_740 HGNC:36126 6 6q21 ribosomal protein S27a pseudogene 11 pseudo RPS27AP11 ribosomal protein S27a pseudogene 11 O - 20121230 -9606 728591 CCDC169 RP11-251J8.1 C13orf38 HGNC:34361|Ensembl:ENSG00000242715|Vega:OTTHUMG00000016731 13 13q13.3 coiled-coil domain containing 169 protein-coding CCDC169 coiled-coil domain containing 169 O RP11-251J8.1|coiled-coil domain-containing protein 169 20121230 -9606 728597 DCDC2C - - HGNC:32696|Ensembl:ENSG00000214866|Vega:OTTHUMG00000151490 2 2p25.3 doublecortin domain containing 2C protein-coding DCDC2C doublecortin domain containing 2C O doublecortin domain containing 2C pseudogene|doublecortin domain-containing protein 2C 20121230 -9606 728599 CIAPIN1P - HsT2384 HGNC:31087 18 18q11.2 cytokine induced apoptosis inhibitor 1 pseudogene pseudo CIAPIN1P cytokine induced apoptosis inhibitor 1 pseudogene O - 20121230 -9606 728602 LOC728602 - - - 1 1p34.2 ornithine decarboxylase antizyme 1 pseudogene pseudo - - - - 20121230 -9606 728603 FRMPD2P2 RP11-556L1.3 FRMPD2L2|FRMPDP2|PDZD5B|PDZK5B|bA556L1.2 HGNC:23453 10 10q11.22 FERM and PDZ domain containing 2 pseudogene 2 pseudo FRMPD2P2 FERM and PDZ domain containing 2 pseudogene 2 O - 20121209 -9606 728606 LOC728606 - - - 18 18q11.2 uncharacterized LOC728606 miscRNA - - - - 20121230 -9606 728608 CTGLF8P RP11-556L1.2 bA556L1.5 HGNC:23461 10 10q11.22 centaurin, gamma-like family, member 8 pseudogene pseudo CTGLF8P centaurin, gamma-like family, member 8 pseudogene O - 20121209 -9606 728609 SDHAP3 - SDHACL|SDHAL HGNC:18781 5 5p15.33 succinate dehydrogenase complex, subunit A, flavoprotein pseudogene 3 pseudo SDHAP3 succinate dehydrogenase complex, subunit A, flavoprotein pseudogene 3 O - 20121230 -9606 728611 LOC728611 - - - 9 9q13 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121230 -9606 728613 LOC728613 - - - 5 5p15.33 programmed cell death 6 pseudogene pseudo - - - - 20121230 -9606 728614 DNAJA1P4 - - HGNC:39340 6 6q22.1 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 4 pseudo DNAJA1P4 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 4 O - 20121230 -9606 728615 CICP13 - - HGNC:37907 1 1q41 capicua homolog (Drosophila) pseudogene 13 pseudo CICP13 capicua homolog (Drosophila) pseudogene 13 O - 20121230 -9606 728619 ASB9P1 - - HGNC:20972 15 15q26.1 ankyrin repeat and SOCS box containing 9 pseudogene 1 pseudo ASB9P1 ankyrin repeat and SOCS box containing 9 pseudogene 1 O - 20121230 -9606 728620 RPL7P22 - RPL7_6_574 HGNC:35802 5 5q13.2 ribosomal protein L7 pseudogene 22 pseudo RPL7P22 ribosomal protein L7 pseudogene 22 O - 20121230 -9606 728621 CCDC30 RP4-692D3.1 PFD6L|PFDN6L HGNC:26103|Ensembl:ENSG00000186409|HPRD:08632|Vega:OTTHUMG00000007334 1 1p34.2 coiled-coil domain containing 30 protein-coding CCDC30 coiled-coil domain containing 30 O coiled-coil domain-containing protein 30|prefoldin subunit 6-like protein 20121230 -9606 728622 SKP1P2 - SKP1B|p19B HGNC:10900|MIM:601435 12 12p12.3 S-phase kinase-associated protein 1 pseudogene 2 pseudo SKP1P2 S-phase kinase-associated protein 1 pseudogene 2 O - 20121230 -9606 728629 TPI1P4 - - HGNC:38071 4 4p11 triosephosphate isomerase 1 pseudogene 4 pseudo TPI1P4 triosephosphate isomerase 1 pseudogene 4 O - 20121230 -9606 728632 HMGN2P3 - HMGN2L3 HGNC:33566 16 16p12.1 high mobility group nucleosomal binding domain 2 pseudogene 3 pseudo HMGN2P3 high mobility group nucleosomal binding domain 2 pseudogene 3 O - 20121230 -9606 728633 GTF2F2P2 - - HGNC:39092 1 1p34.2 general transcription factor IIF, polypeptide 2 pseudogene 2 pseudo GTF2F2P2 general transcription factor IIF, polypeptide 2 pseudogene 2 O - 20121230 -9606 728635 DHRS4L1 - SDR25C4 HGNC:19732 14 14q11.2 dehydrogenase/reductase (SDR family) member 4 like 1 protein-coding DHRS4L1 dehydrogenase/reductase (SDR family) member 4 like 1 O putative dehydrogenase/reductase SDR family member 4-like 2|short chain dehydrogenase/reductase family 25C, member 4 20121230 -9606 728636 LOC728636 - - - 15 15q25.2 golgin A6 family, member D pseudogene pseudo - - - - 20121230 -9606 728637 LOC728637 - - - 5 5q31.1 uncharacterized LOC728637 protein-coding - - - - 20121230 -9606 728638 KRT8P3 hCG_1988300 - HGNC:31056 8 8q12.3 keratin 8 pseudogene 3 pseudo KRT8P3 keratin 8 pseudogene 3 O - 20121230 -9606 728640 FAM133CP - - HGNC:44190 10 10q21.1 family with sequence similarity 133, member A pseudogene pseudo FAM133CP family with sequence similarity 133, member C, pseudogene O - 20121230 -9606 728641 FABP5P7 - FABP5L7 HGNC:31070 11 11q12.1 fatty acid binding protein 5 pseudogene 7 pseudo FABP5P7 fatty acid binding protein 5 pseudogene 7 O - 20121230 -9606 728642 CDK11A RP1-283E3.2 CDC2L2|CDC2L3|CDK11-p110|CDK11-p46|CDK11-p58|PITSLRE|p58GTA HGNC:1730|MIM:116951|Ensembl:ENSG00000008128|Vega:OTTHUMG00000000703 1 1p36.33 cyclin-dependent kinase 11A protein-coding CDK11A cyclin-dependent kinase 11A O PITSLRE B|PITSLRE protein kinase beta|PITSLRE serine/threonine-protein kinase CDC2L2|cell division cycle 2-like 2 (PITSLRE proteins)|cell division cycle 2-like protein kinase 2|cell division protein kinase 11A|galactosyltransferase-associated protein kinase p58/GTA 20121230 -9606 728643 LOC728643 - - - 10 10q11.22 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 728655 HULC - LINC00078|NCRNA00078 HGNC:34232|MIM:612210 6 6p24.3 highly up-regulated in liver cancer (non-protein coding) miscRNA HULC highly up-regulated in liver cancer (non-protein coding) O - 20121230 -9606 728656 DMRTC1B - - HGNC:31686|Ensembl:ENSG00000184911|Vega:OTTHUMG00000021818 X Xq13.2 DMRT-like family C1B protein-coding DMRTC1B DMRT-like family C1B O DMRT-like family C1|doublesex- and mab-3-related transcription factor C1 20121230 -9606 728657 LOC728657 - - - 10 10q11.22 dual specificity phosphatase 8 pseudogene pseudo - - - - 20121209 -9606 728658 RPL13AP5 - RPL13A_8_1086|bA196N24.2 HGNC:23736 10 10q24.1 ribosomal protein L13a pseudogene 5 pseudo RPL13AP5 ribosomal protein L13a pseudogene 5 O - 20121230 -9606 728660 LOC728660 - - Vega:OTTHUMG00000022540 X Xq27.1 uncharacterized LOC728660 unknown - - - - 20121017 -9606 728661 SLC35E2B RP11-345P4.4 SLC35E2 HGNC:33941|Ensembl:ENSG00000189339|Vega:OTTHUMG00000078639 1 1p36.33 solute carrier family 35, member E2B protein-coding SLC35E2B solute carrier family 35, member E2B O solute carrier family 35 member E2|solute carrier family 35 member E2B 20121230 -9606 728664 API5P2 - - HGNC:39070 2 2q31.2 API5 pseudogene 2 pseudo API5P2 API5 pseudogene 2 O - 20121230 -9606 728666 PRELID1P1 - - HGNC:43886 6 6q22.32 PRELI domain containing 1 pseudogene 1 pseudo PRELID1P1 PRELI domain containing 1 pseudogene 1 O - 20121230 -9606 728667 LOC728667 - - - 14 14q11.2 dehydrogenase/reductase (SDR family) member 2 pseudogene pseudo - - - - 20121230 -9606 728671 LOC728671 - - - 20 20q13.13 uncharacterized LOC728671 protein-coding - - - - 20121209 -9606 728673 LOC728673 RP11-262H14.4 - - 9 9q12 family with sequence similarity 88, member B unknown - - - - 20120511 -9606 728675 LOC728675 - - - 17 17q21.31 chromosome 11 open reading frame 75 pseudogene pseudo - - - - 20121230 -9606 728684 LOC728684 - - - 10 10q11.22 uncharacterized LOC728684 unknown - - - - 20120511 -9606 728688 LOC728688 hCG_23738 - - 12 12p12.2 ubiquitin-like, containing PHD and RING finger domains, 1 pseudogene pseudo - - - - 20121230 -9606 728689 EIF3CL - - HGNC:26347|Ensembl:ENSG00000205609|Vega:OTTHUMG00000097025 16 16p11.2 eukaryotic translation initiation factor 3, subunit C-like protein-coding EIF3CL eukaryotic translation initiation factor 3, subunit C-like O eIF3 p110|eIF3c|eukaryotic translation initiation factor 3 subunit 8|eukaryotic translation initiation factor 3 subunit C|eukaryotic translation initiation factor 3, subunit 8, 110kDa-like 20121230 -9606 728690 LOC728690 hCG_1647286 - - 1 1p36.33 uncharacterized LOC728690 protein-coding - - - - 20120511 -9606 728693 RPL21P105 - RPL21_43_1282 HGNC:36304 12 12q24.22 ribosomal protein L21 pseudogene 105 pseudo RPL21P105 ribosomal protein L21 pseudogene 105 O - 20121230 -9606 728695 SPANXB1 RP3-376H23.1 B1|CT11.2|SPANX-B|SPANXB HGNC:14329|MIM:300669|Ensembl:ENSG00000235604|HPRD:15423|Vega:OTTHUMG00000022553 X Xq27.1 SPANX family, member B1 protein-coding SPANXB1 SPANX family, member B1 O SPANX family member B/F|cancer/testis antigen 11.2|cancer/testis antigen family 11, member 2|nuclear-associated protein SPAN-Xb|nuclear-associated protein SPAN-Xf|sperm protein associated with the nucleus on the X chromosome B/F|sperm protein associated with the nucleus, X chromosome, family member B1 20121230 -9606 728698 EIF4A1P4 - - HGNC:37923 12 12q13.13 eukaryotic translation initiation factor 4A1 pseudogene 4 pseudo EIF4A1P4 eukaryotic translation initiation factor 4A1 pseudogene 4 O - 20121230 -9606 728700 RPS3AP19 - RPS3A_8_458 HGNC:36467 4 4p16.1 ribosomal protein S3a pseudogene 19 pseudo RPS3AP19 ribosomal protein S3a pseudogene 19 O - 20121230 -9606 728705 LOC728705 - - - 12 12q23.3 uncharacterized LOC728705 unknown - - - - 20120508 -9606 728706 SUGT1P2 - - HGNC:31377 3 3p22.3 suppressor of G2 allele of SKP1 (S. cerevisiae) pseudogene 2 pseudo SUGT1P2 suppressor of G2 allele of SKP1 (S. cerevisiae) pseudogene 2 O - 20121230 -9606 728710 FAM177A1P1 - FAM177A2 HGNC:34441 4 4q23 Putative protein FAM177A2 pseudo FAM177A1P1 family with sequence similarity 177, member A1 pseudogene 1 O - 20121230 -9606 728712 SPANXA2 RP1-171K16.2 CT11.1|SPANX|SPANX-A|SPANXA HGNC:14328|MIM:300493|Ensembl:ENSG00000203926|HPRD:06720|Vega:OTTHUMG00000022565 X Xq27.1 SPANX family, member A2 protein-coding SPANXA2 SPANX family, member A2 O SPANX family member A|cancer/testis antigen 11.1|nuclear-associated protein SPAN-Xa|sperm protein associated with the nucleus on the X chromosome A|sperm protein associated with the nucleus, X chromosome, family member A2 20121230 -9606 728715 LOC728715 - - - 12 12p13.31 ovostatin homolog 2-like protein-coding - - - - 20121230 -9606 728716 LOC728716 hCG_2036596 - - 1 1p36.32 uncharacterized LOC728716 miscRNA - - - - 20121230 -9606 728723 ZBED3-AS1 - - HGNC:44188 5 5q13.3 ZBED3 antisense RNA 1 miscRNA ZBED3-AS1 ZBED3 antisense RNA 1 O - 20121230 -9606 728724 LOC728724 hCG_1814486 - - 8 8q24.21 hCG1814486 miscRNA - - - - 20121230 -9606 728725 LOC728725 - - - 10 10q11.22 dual specificity phosphatase 8 pseudogene pseudo - - - - 20121230 -9606 728728 LOC728728 - - - 1 1q42.13 putative uncharacterized protein encoded by LINC00174-like protein-coding - - - - 20121209 -9606 728729 FABP5P8 - FABP5L8 HGNC:31063 15 15q25.2 fatty acid binding protein 5 pseudogene 8 pseudo FABP5P8 fatty acid binding protein 5 pseudogene 8 O - 20121230 -9606 728730 LOC728730 - - - 2 2p22.1 uncharacterized LOC728730 miscRNA - - - - 20121230 -9606 728732 LOC728732 - - - 11 11p15.4 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 728734 LOC728734 - - Ensembl:ENSG00000255524|Vega:OTTHUMG00000166386 16 16p11.2 nuclear pore complex-interacting protein-like 2-like protein-coding - - - - 20121209 -9606 728737 LOC728737 - - - 10 10q21.3 TatD DNase domain containing 1 pseudogene pseudo - - - - 20121230 -9606 728739 LOC728739 - - - 12 12q23.3 programmed cell death 2 pseudogene pseudo - - - - 20121230 -9606 728741 LOC728741 - - Ensembl:ENSG00000198156|Vega:OTTHUMG00000166319 16 16p11.2 uncharacterized LOC728741 protein-coding - - - - 20121230 -9606 728743 LOC728743 tcag7.1196 - - 7 7q36.1 zinc finger protein pseudogene pseudo - - - - 20121230 -9606 728746 FAM90A17P - FAM90A17 HGNC:32265 8 8p23.1 family with sequence similarity 90, member A17, pseudogene pseudo FAM90A17P family with sequence similarity 90, member A17, pseudogene O - 20121230 -9606 728747 ANKRD20A4 CR769776.1 - HGNC:31982|Ensembl:ENSG00000172014|Vega:OTTHUMG00000066855 9 9q21.11 ankyrin repeat domain 20 family, member A4 protein-coding ANKRD20A4 ankyrin repeat domain 20 family, member A4 O ankyrin repeat domain-containing protein 20A4 20121230 -9606 728748 PRKRIRP1 - - HGNC:39563 X Xq13.2 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 1 pseudo PRKRIRP1 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 1 O - 20121230 -9606 728752 LOC728752 - - - 19 19q13.12 uncharacterized LOC728752 miscRNA - - - - 20121230 -9606 728753 FAM90A19P - FAM90A19 HGNC:32267|MIM:613053 8 8p23.1 putative protein FAM90A18/FAM90A19 pseudo FAM90A19P family with sequence similarity 90, member A19, pseudogene O - 20121209 -9606 728755 LOC728755 - - - 14 14q12 uncharacterized LOC728755 unknown - - - - 20121230 -9606 728758 PIN4P1 hCG_1789710 - HGNC:44193 15 15q15.3 protein (peptidylprolyl cis/trans isomerase) NIMA-interacting, 4 pseudogene 1 pseudo PIN4P1 protein (peptidylprolyl cis/trans isomerase) NIMA-interacting, 4 pseudogene 1 O - 20121230 -9606 728763 LOC728763 - - - 2 2q37.3 rootletin-like protein-coding - - - - 20121230 -9606 728769 LOC728769 - - - 5 5q14.1 uncharacterized LOC728769 unknown - - - - 20121230 -9606 728770 DNM1P5 - DNM1DN5|DNM1DN5@ HGNC:21122 15 15q14 DNM1 pseudogene 5 pseudo DNM1P5 DNM1 pseudogene 5 O - 20121230 -9606 728773 PABPC1P2 - PABP2|PABP4|PABPCP2|PABPCP4 HGNC:8559 2 2q22.3 poly(A) binding protein, cytoplasmic 1 pseudogene 2 pseudo PABPC1P2 poly(A) binding protein, cytoplasmic 1 pseudogene 2 O - 20121230 -9606 728774 RPS15AP25 - RPS15A_14_912 HGNC:36848 8 8q13.2 ribosomal protein S15a pseudogene 25 pseudo RPS15AP25 ribosomal protein S15a pseudogene 25 O - 20121230 -9606 728776 HMGN1P37 hCG_17955 - HGNC:39421 X Xq28 high mobility group nucleosome binding domain 1 pseudogene 37 pseudo HMGN1P37 high mobility group nucleosome binding domain 1 pseudogene 37 O - 20121230 -9606 728780 ANKDD1B - - HGNC:32525|Ensembl:ENSG00000189045|Vega:OTTHUMG00000162490 5 5q13.3 ankyrin repeat and death domain containing 1B protein-coding ANKDD1B ankyrin repeat and death domain containing 1B O ankyrin repeat and death domain-containing protein 1B|ankyrin repeat and death domain-containing protein ENSP00000345065 20121230 -9606 728782 RPL21P134 - RPL21_61_1788 HGNC:36006 X Xq13.3 ribosomal protein L21 pseudogene 134 pseudo RPL21P134 ribosomal protein L21 pseudogene 134 O - 20121230 -9606 728788 ANKRD20A20P CR769776.2 CCDC29 HGNC:32319 9 9q21.11 ankyrin repeat domain 20 family, member A20, pseudogene pseudo ANKRD20A20P ankyrin repeat domain 20 family, member A20, pseudogene O - 20121209 -9606 728791 RPS10P4 - RPS10_2_393|bcm1851 HGNC:31364 3 3q13.31 ribosomal protein S10 pseudogene 4 pseudo RPS10P4 ribosomal protein S10 pseudogene 4 O - 20121230 -9606 728798 FRMPD2P1 XXyac-YX59F3.1 FRMPD2L1|PDZD5A|PDZK5A|yX59F3.2 HGNC:16843 10 10q11.22 FERM and PDZ domain containing 2 pseudogene 1 pseudo FRMPD2P1 FERM and PDZ domain containing 2 pseudogene 1 O - 20121230 -9606 728802 LOC728802 - - - 1 1q21.1 myomegalin-like protein-coding - - - - 20121102 -9606 728805 LOC728805 - - - 20 20q13.2 uncharacterized LOC728805 unknown - - - - 20120511 -9606 728806 NSFP1 - NSFP HGNC:31405 17 17q21.31 N-ethylmaleimide-sensitive factor pseudogene 1 pseudo NSFP1 N-ethylmaleimide-sensitive factor pseudogene 1 O - 20121230 -9606 728807 LOC728807 - - - 4 4q13.2 UDP glucuronosyltransferase 2 family, polypeptide B15 pseudogene pseudo - - - - 20121230 -9606 728811 LOC728811 - - - 4 4q13.2 UDP glucuronosyltransferase 2 family, polypeptide B15 pseudogene pseudo - - - - 20121230 -9606 728813 LOC728813 - - - 10 10q11.22 dual specificity phosphatase 8 pseudogene pseudo - - - - 20121209 -9606 728815 LOC728815 - - - 2 2q12.1 cytokine receptor-like factor 3 pseudogene pseudo - - - - 20121230 -9606 728819 LOC728819 hCG_1645220 - - 2 2p21 hCG1645220 protein-coding - - - C1GALT1-specific chaperone 1-like 20121230 -9606 728820 RPL29P15 - RPL29_4_582 HGNC:36159 5 5q14.1 ribosomal protein L29 pseudogene 15 pseudo RPL29P15 ribosomal protein L29 pseudogene 15 O - 20121230 -9606 728823 RPS26P53 - RPS26_19_1511 HGNC:35582 17 17p13.1 ribosomal protein S26 pseudogene 53 pseudo RPS26P53 ribosomal protein S26 pseudogene 53 O - 20121230 -9606 728825 LOC728825 - - - X Xq23 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 728833 FAM72D WI2-929E21.1 GCUD2 HGNC:33593|MIM:614712|Ensembl:ENSG00000215784|Vega:OTTHUMG00000074801 1 1q21.1 family with sequence similarity 72, member D protein-coding FAM72D family with sequence similarity 72, member D O family with sequence similarity 72 member|gastric cancer up-regulated protein 2|gastric cancer up-regulated-2|protein FAM72D 20121230 -9606 728841 NBPF8 RP3-377D14.1 NBPF21 HGNC:31990|MIM:613998 1 1q21.1 neuroblastoma breakpoint family, member 8 unknown NBPF8 neuroblastoma breakpoint family, member 8 O hypothetical protein LOC728841 20121230 -9606 728843 RPL7P20 - RPL7_8_636 HGNC:36013 5 5q34 ribosomal protein L7 pseudogene 20 pseudo RPL7P20 ribosomal protein L7 pseudogene 20 O - 20121230 -9606 728851 HMGN1P36 - - HGNC:39380 2 2q11.2 high mobility group nucleosome binding domain 1 pseudogene 36 pseudo HMGN1P36 high mobility group nucleosome binding domain 1 pseudogene 36 O - 20121230 -9606 728853 LOC728853 - - - 19 19q13.13 WD repeat domain 87 pseudogene pseudo - - - - 20121230 -9606 728855 LINC00623 - - HGNC:44252 1 1q21.1 long intergenic non-protein coding RNA 623 miscRNA LINC00623 long intergenic non-protein coding RNA 623 O - 20121230 -9606 728858 C12orf71 hCG_1794298 - HGNC:34452|Ensembl:ENSG00000214700|Vega:OTTHUMG00000169274 12 12p11.23 chromosome 12 open reading frame 71 protein-coding C12orf71 chromosome 12 open reading frame 71 O hCG1794298|uncharacterized protein C12orf71 20121230 -9606 728868 LOC728868 - - - 8 8p23.1 uncharacterized LOC728868 unknown - - - - 20120511 -9606 728873 PTMAP8 - - HGNC:42437 3 3q13.31 prothymosin, alpha pseudogene 8 pseudo PTMAP8 prothymosin, alpha pseudogene 8 O - 20121230 -9606 728875 LOC728875 - - - 1 1q21.1 uncharacterized LOC728875 miscRNA - - - - 20121230 -9606 728877 LOC728877 - - - 22 - COBW domain containing 3 pseudogene pseudo - - - - 20121209 -9606 728882 FAM182B RP13-401N8.2 - HGNC:34503 20 20p11.1 family with sequence similarity 182, member B miscRNA FAM182B family with sequence similarity 182, member B O - 20121230 -9606 728887 CCNB1IP1P1 - - HGNC:37693 1 1p34.1 cyclin B1 interacting protein 1 pseudogene 1 pseudo CCNB1IP1P1 cyclin B1 interacting protein 1 pseudogene 1 O - 20121230 -9606 728888 LOC728888 - - Ensembl:ENSG00000254206|Vega:OTTHUMG00000170467 16 16p11.2 nuclear pore complex-interacting protein-like 3-like protein-coding - - - - 20121209 -9606 728903 LOC728903 - - - 9 9p11.2 uncharacterized LOC728903 unknown - - - - 20120511 -9606 728911 CT45A2 RP13-36C9.1 CT45-2|CT45.2 HGNC:28400|MIM:300793|Ensembl:ENSG00000242185|HPRD:06644|Vega:OTTHUMG00000022490 X Xq26.3 cancer/testis antigen family 45, member A2 protein-coding CT45A2 cancer/testis antigen family 45, member A2 O cancer/testis antigen 45-2|cancer/testis antigen 45A2|cancer/testis antigen CT45|cancer/testis antigen family 45 member A2 20121230 -9606 728912 NBPF24 XXyac-YX155B6.1 - HGNC:27299|Ensembl:ENSG00000203836|Vega:OTTHUMG00000043167 1 1q21.2 neuroblastoma breakpoint family, member 24 protein-coding NBPF24 neuroblastoma breakpoint family, member 24 O - 20121230 -9606 728913 RCN1P2 XXyac-R12DG2.2 - HGNC:39204 13 13q14.13 reticulocalbin 1, EF-hand calcium binding domain pseudogene 2 pseudo RCN1P2 reticulocalbin 1, EF-hand calcium binding domain pseudogene 2 O - 20121230 -9606 728917 FAM108A2 - - HGNC:28394 1 1q21.2 Abhydrolase domain-containing protein FAM108A2 pseudo FAM108A2 family with sequence similarity 108, member A2 O - 20121230 -9606 728920 LOC728920 XXyac-YX155B6.2 - - 1 1q21.2 phosphodiesterase 4D interacting protein pseudogene pseudo - - - - 20121230 -9606 728921 HAUS1P1 - - HGNC:43760 5 5q31.3 HAUS augmin-like complex, subunit 1 pseudogene 1 pseudo HAUS1P1 HAUS augmin-like complex, subunit 1 pseudogene 1 O - 20121230 -9606 728927 ZNF736 - - HGNC:32467|Ensembl:ENSG00000234444|Vega:OTTHUMG00000156537 7 7q11.21 zinc finger protein 736 protein-coding ZNF736 zinc finger protein 736 O KRAB-containing zinc-finger repressor protein 20121230 -9606 728929 TCEB3CL - HsT828 HGNC:31007|Ensembl:ENSG00000234298|Vega:OTTHUMG00000180383 18 18q21.1 transcription elongation factor B polypeptide 3C-like protein-coding TCEB3CL transcription elongation factor B polypeptide 3C-like O RNA polymerase II transcription factor SIII subunit A3-like-1|eloA3-like-1|elongin-A3-like-1|transcription elongation factor B polypeptide 3C-like-1 20121230 -9606 728931 LOC728931 - - - 5 5p12 adenosylmethionine decarboxylase 1 pseudogene pseudo - - - - 20121230 -9606 728932 GPR89C - - HGNC:31985|Ensembl:ENSG00000196644|Vega:OTTHUMG00000013744 1 1q21.1 G protein-coupled receptor 89C protein-coding GPR89C G protein-coupled receptor 89C O Putative protein GPR89C|putative Golgi pH regulator C 20121230 -9606 728933 RPL23AP60 - RPL23A_26_1111 HGNC:35966 10 10q26.3 ribosomal protein L23a pseudogene 60 pseudo RPL23AP60 ribosomal protein L23a pseudogene 60 O - 20121230 -9606 728936 NBPF16 - AG3 HGNC:31996|MIM:614005|Ensembl:ENSG00000203827|Vega:OTTHUMG00000040624 1 1q21.2 neuroblastoma breakpoint family, member 16 protein-coding NBPF16 neuroblastoma breakpoint family, member 16 O neuroblastoma breakpoint family member 16 20121230 -9606 728937 RPS26P25 - RPS26_10_512 HGNC:35730 4 4q26 ribosomal protein S26 pseudogene 25 pseudo RPS26P25 ribosomal protein S26 pseudogene 25 O - 20121230 -9606 728938 SUB1P1 hCG_17750 hCG17750 HGNC:32300 8 8p23.1 SUB1 homolog (S. cerevisiae) pseudogene 1 pseudo SUB1P1 SUB1 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 728939 PDZK1P1 RP11-94I2.3 - HGNC:31974 1 1q21.1 PDZ domain containing 1 pseudogene 1 pseudo PDZK1P1 PDZ domain containing 1 pseudogene 1 O - 20121230 -9606 728945 PPIAL4F RP11-763B22.5 - HGNC:33999 1 1q21.2 peptidylprolyl isomerase A (cyclophilin A)-like 4F protein-coding PPIAL4F peptidylprolyl isomerase A (cyclophilin A)-like 4F O cyclophilin-LC (COAS2) pseudogene 20121230 -9606 728947 LOC728947 - - - 7 7q11.21 zinc finger protein 680 pseudogene pseudo - - - - 20121230 -9606 728953 RPS19P3 - RPS19_4_1350 HGNC:23560 14 14q13.2 ribosomal protein S19 pseudogene 3 pseudo RPS19P3 ribosomal protein S19 pseudogene 3 O - 20121102 -9606 728955 FAM25D RP11-592B15.2 bA592B15.5 HGNC:23588 10 10q11.23 family with sequence similarity 25, member D protein-coding FAM25D family with sequence similarity 25, member D O - 20121021 -9606 728957 ZNF705D - ZNF705C HGNC:33202|Ensembl:ENSG00000215343|Vega:OTTHUMG00000165474 8 8p23.1 zinc finger protein 705D protein-coding ZNF705D zinc finger protein 705D O putative zinc finger protein 705C|zinc finger protein 705C 20121211 -9606 728962 RPL7P56 - RPL7_33_1817 HGNC:35588 X Xq26.3 ribosomal protein L7 pseudogene 56 pseudo RPL7P56 ribosomal protein L7 pseudogene 56 O - 20121230 -9606 728963 RPS15AP10 - RPS15A_4_42 HGNC:37001 1 1p34.1 ribosomal protein S15a pseudogene 10 pseudo RPS15AP10 ribosomal protein S15a pseudogene 10 O - 20121230 -9606 728970 PPP1R2P4 RP11-189B4.1 - HGNC:16319 13 13q14.13 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 4 pseudo PPP1R2P4 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 4 O - 20121230 -9606 728971 RPS27AP7 - RPS27A_2_217 HGNC:35735 2 2p16.3 ribosomal protein S27a pseudogene 7 pseudo RPS27AP7 ribosomal protein S27a pseudogene 7 O - 20121230 -9606 728975 LOC728975 - - - 11 11q13.1 uncharacterized LOC728975 unknown - - - - 20121102 -9606 728978 LOC728978 RP11-790G19.2 - Vega:OTTHUMG00000018423 10 10q22.1 uncharacterized LOC728978 miscRNA - - - - 20121230 -9606 728979 RPL10AP9 - RPL10A_3_593 HGNC:35947 5 5q14.3 ribosomal protein L10a pseudogene 9 pseudo RPL10AP9 ribosomal protein L10a pseudogene 9 O - 20121230 -9606 728989 LOC728989 - - - 1 1q21.1 phosphodiesterase 4D interacting protein pseudogene pseudo - - - - 20121230 -9606 728990 SLC9A3P3 RP11-324H6.4 - HGNC:33492 10 10q11.23 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 pseudogene 3 pseudo SLC9A3P3 solute carrier family 9, subfamily A (NHE3, cation proton antiporter 3), member 3 pseudogene 3 O - 20121230 -9606 728992 RPL7AP11 - RPL7A_5_397 HGNC:35242 3 3q13.33 ribosomal protein L7a pseudogene 11 pseudo RPL7AP11 ribosomal protein L7a pseudogene 11 O - 20121230 -9606 728996 LOC728996 - - - 12 12p12.3 methyltransferase like 8 pseudogene pseudo - - - - 20121230 -9606 728999 LOC728999 hCG_1783052 - - X Xp22.2 hCG1783052 unknown - - - - 20120318 -9606 729004 RPL9P2 - RPL9_10_1518 HGNC:17049 17 17p12 ribosomal protein L9 pseudogene 2 pseudo RPL9P2 ribosomal protein L9 pseudogene 2 O - 20121230 -9606 729008 LOC729008 - - - 17 17q21.31 putative protein FAM215A-like pseudo - - - - 20121209 -9606 729009 FTH1P20 - FTHL20 HGNC:37639 2 2q31.3 ferritin, heavy polypeptide 1 pseudogene 20 pseudo FTH1P20 ferritin, heavy polypeptide 1 pseudogene 20 O - 20121230 -9606 729012 SKA2L - Em:AC006313.1|FAM33B HGNC:23122 9 9q33.2 spindle and kinetochore associated complex subunit 2-like pseudo SKA2L spindle and kinetochore associated complex subunit 2-like O - 20121230 -9606 729013 LOC729013 - - - 11 11p15.3 uncharacterized LOC729013 miscRNA - - - - 20121230 -9606 729020 LOC729020 hCG_2024410 - - 10 10q24.33 rcRPE protein-coding - - - hCG2024410|rcRPE protein 20121230 -9606 729021 LOC729021 - - - 4 4q26 uncharacterized LOC729021 unknown - - - - 20120511 -9606 729023 LOC729023 - - - 10 10q11.23 protein FAM22D-like pseudo - - - - 20121230 -9606 729025 SLC15A5 - - HGNC:33455|Ensembl:ENSG00000188991|Vega:OTTHUMG00000168793 12 12p12.3 solute carrier family 15, member 5 protein-coding SLC15A5 solute carrier family 15, member 5 O Peptide/histidine transporter ENSP00000340402|solute carrier family 15 member 5 20121230 -9606 729032 RPL36P20 - - HGNC:44564 3 3p22.1 ribosomal protein L36 pseudogene 20 pseudo RPL36P20 ribosomal protein L36 pseudogene 20 O - 20121230 -9606 729033 LOC729033 - - - 1 1q42.13 putative uncharacterized protein FLJ44672-like pseudo - - - - 20121209 -9606 729040 LOC729040 - - - 5 5q14.3 uncharacterized LOC729040 unknown - - - - 20121230 -9606 729041 LOC729041 - - - 1 1p33 fatty acid amide hydrolase pseudogene pseudo - - - - 20121230 -9606 729042 RPL29P3 - RPL29_19_1356 HGNC:23565 14 14q13.3 ribosomal protein L29 pseudogene 3 pseudo RPL29P3 ribosomal protein L29 pseudogene 3 O - 20121230 -9606 729046 LOC729046 - - - 10 10q22.1 ribosomal protein L17 pseudogene pseudo - - - - 20121230 -9606 729047 LOC729047 - - - 10 10q11.23 uncharacterized LOC729047 unknown - - - - 20120511 -9606 729050 KRT18P29 - - HGNC:33398 2 2q31.3 keratin 18 pseudogene 29 pseudo KRT18P29 keratin 18 pseudogene 29 O - 20121230 -9606 729056 LOC729056 - - - 21 21q22.2 KIAA1462 pseudogene pseudo - - - - 20121230 -9606 729057 LOC729057 - - - 22 22q11.1 translocase of outer mitochondrial membrane 40 homolog (yeast) pseudogene pseudo - - - - 20121209 -9606 729059 LOC729059 - - Ensembl:ENSG00000227868|Vega:OTTHUMG00000003226 1 1p36.12 uncharacterized LOC729059 protein-coding - - - uncharacterized protein LOC729059 20121230 -9606 729073 FAM92A1P1 - FAM92A2 HGNC:32278 15 15q15.1 family with sequence similarity 92, member A2 (pseudogene) pseudo FAM92A1P1 family with sequence similarity 92, member A1 pseudogene 1 O - 20121230 -9606 729075 RPL36AP23 - RPL36A_6_507 HGNC:36002 4 4q25 ribosomal protein L36a pseudogene 23 pseudo RPL36AP23 ribosomal protein L36a pseudogene 23 O - 20121230 -9606 729078 LOC729078 - - Vega:OTTHUMG00000022543 X Xq27.1 uncharacterized LOC729078 unknown - - - - 20120511 -9606 729079 RPSAP21 - RPSA_2_180 HGNC:36928 1 1q43 ribosomal protein SA pseudogene 21 pseudo RPSAP21 ribosomal protein SA pseudogene 21 O - 20121230 -9606 729080 LOC729080 - - - 5 5q31.3 glycine cleavage system protein H (aminomethyl carrier) pseudogene pseudo - - - - 20121230 -9606 729082 OIP5-AS1 - cyrano HGNC:43563 15 15q15.1 OIP5 antisense RNA 1 miscRNA OIP5-AS1 OIP5 antisense RNA 1 O - 20121230 -9606 729083 LOC729083 - - - 3 3p22.1 uncharacterized LOC729083 unknown - - - - 20120508 -9606 729085 FAM198A - C3orf41 HGNC:24485|Ensembl:ENSG00000144649|Vega:OTTHUMG00000156449 3 3p22.1 family with sequence similarity 198, member A protein-coding FAM198A family with sequence similarity 198, member A O protein FAM198A 20121230 -9606 729086 LOC729086 - - - 1 1q21.2 vesicular, overexpressed in cancer, prosurvival protein 1 pseudogene pseudo - - - - 20121230 -9606 729088 LOC729088 - - - 6 6q27 uncharacterized LOC729088 unknown - - - - 20121017 -9606 729092 AGAP5 - CTGLF2 HGNC:23467|Ensembl:ENSG00000172650|Vega:OTTHUMG00000018473 10 10q22.2 ArfGAP with GTPase domain, ankyrin repeat and PH domain 5 protein-coding AGAP5 ArfGAP with GTPase domain, ankyrin repeat and PH domain 5 O AGAP-5|arf-GAP with GTPase, ANK repeat and PH domain-containing protein 5|centaurin, gamma-like family, member 2|centaurin-gamma-like family member 2 20121230 -9606 729096 BMS1P4 - BMS1LP4 HGNC:23652|Vega:OTTHUMG00000018478 10 10q22.2 BMS1 pseudogene 4 pseudo BMS1P4 BMS1 pseudogene 4 O - 20121230 -9606 729097 RPS4XP14 - RPS4P14|RPS4X_5_1190 HGNC:36737 12 12p13.33 ribosomal protein S4X pseudogene 14 pseudo RPS4XP14 ribosomal protein S4X pseudogene 14 O - 20121230 -9606 729101 LOC729101 - - - 11 11q12.3-q13.1 IMP1 inner mitochondrial membrane peptidase-like (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 729102 HNRNPA1P22 - - HGNC:39540 3 3p22.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene 22 pseudo HNRNPA1P22 heterogeneous nuclear ribonucleoprotein A1 pseudogene 22 O - 20121230 -9606 729119 HMGB2P1 - - HGNC:39174 19 19p13.3 high mobility group box 2 pseudogene 1 pseudo HMGB2P1 high mobility group box 2 pseudogene 1 O - 20121230 -9606 729121 LOC729121 - - - 2 2q12.3 uncharacterized LOC729121 miscRNA - - - - 20121230 -9606 729123 RPL7P21 - RPL7_10_623 HGNC:36762 5 5q31.3 ribosomal protein L7 pseudogene 21 pseudo RPL7P21 ribosomal protein L7 pseudogene 21 O - 20121230 -9606 729126 LOC729126 - - - 7 7q11.21 GrpE-like 1, mitochondrial (E. coli) pseudogene pseudo - - - - 20121230 -9606 729131 KRT8P7 - - HGNC:33361 11 11q23.3 keratin 8 pseudogene 7 pseudo KRT8P7 keratin 8 pseudogene 7 O - 20121230 -9606 729138 RPLP1P2 RP11-435F13.2 RPLP1_2_185 HGNC:36210 1 1q43 ribosomal protein, large, P1 pseudogene 2 pseudo RPLP1P2 ribosomal protein, large, P1 pseudogene 2 O - 20121230 -9606 729141 LOC729141 - - - 2 2q32.1 chromosome 18 open reading frame 25 pseudogene pseudo - - - - 20121230 -9606 729146 RPL9P28 - RPL9_16_1554 HGNC:36445 17 17q21.32 ribosomal protein L9 pseudogene 28 pseudo RPL9P28 ribosomal protein L9 pseudogene 28 O - 20121230 -9606 729148 NUS1P1 - - HGNC:38472 X Xp11.23 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) pseudogene 1 pseudo NUS1P1 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 729150 RPS3AP14 - RPS3A_7_401 HGNC:35715 3 3q21.2 ribosomal protein S3a pseudogene 14 pseudo RPS3AP14 ribosomal protein S3a pseudogene 14 O - 20121230 -9606 729156 GTF2IRD1P1 tcag7.967 - HGNC:44136 7 7q11.21 GTF2I repeat domain containing 1 pseusogene 1 pseudo GTF2IRD1P1 GTF2I repeat domain containing 1 pseusogene 1 O - 20121230 -9606 729159 LOC729159 - - - 16 16q21 UPF0607 protein ENSP00000381418-like protein-coding - - - Putative UPF0607 protein ENSP00000381418 20121230 -9606 729162 LOC729162 - - - X Xp22.33 uncharacterized LOC729162 protein-coding - - - - 20121209 -9606 729163 FABP5P2 RP11-381L18.2 FABP5L2 HGNC:31060 13 13q14.3 fatty acid binding protein 5 pseudogene 2 pseudo FABP5P2 fatty acid binding protein 5 pseudogene 2 O - 20121230 -9606 729164 LOC729164 hCG_1732469 - - 2 2q13 hCG1732469 unknown - - - - 20121230 -9606 729171 ANKRD20A8P RP11-146D12.2 ANKRD20B HGNC:23666 2 2q11.1 ankyrin repeat domain 20 family, member A8, pseudogene pseudo ANKRD20A8P ankyrin repeat domain 20 family, member A8, pseudogene O - 20121230 -9606 729173 LOC729173 - - - 11 11q23.3 uncharacterized LOC729173 unknown - - - - 20121230 -9606 729175 LOC729175 - - - 4 4p15.2 uncharacterized LOC729175 protein-coding - - - - 20121209 -9606 729176 LOC729176 - - - 6 6q24.3 katanin p80 subunit B-like 1 pseudogene pseudo - - - - 20121230 -9606 729177 LOC729177 - - - 6 6p22.3 uncharacterized LOC729177 miscRNA - - - - 20121230 -9606 729178 STXBP5-AS1 - - HGNC:44183 6 6q24.3 STXBP5 antisense RNA 1 miscRNA STXBP5-AS1 STXBP5 antisense RNA 1 O - 20121230 -9606 729182 FAM91A3P RP11-403I13.6 - HGNC:32273 1 1q21.2 family with sequence similarity 91, member A3 pseudogene pseudo FAM91A3P family with sequence similarity 91, member A3 pseudogene O - 20121230 -9606 729187 LOC729187 - - - 10 10q22.3 uncharacterized LOC729187 unknown - - - - 20120511 -9606 729188 RPS26P58 - RPS26_33_1769 HGNC:36571 X Xp22.11 ribosomal protein S26 pseudogene 58 pseudo RPS26P58 ribosomal protein S26 pseudogene 58 O - 20121230 -9606 729196 UNC93B5 - - HGNC:34051 11 11q13.2 unc-93 homolog B5 pseudogene (C. elegans) pseudo UNC93B5 unc-93 homolog B5 pseudogene (C. elegans) O - 20121230 -9606 729198 ANAPC10P1 - ANAPC10P HGNC:33976 1 1p32.3 anaphase promoting complex subunit 10 pseudogene 1 pseudo ANAPC10P1 anaphase promoting complex subunit 10 pseudogene 1 O - 20121230 -9606 729200 LOC729200 - - - 6 6q25.1 small nuclear ribonucleoprotein polypeptide B pseudogene pseudo - - - - 20121230 -9606 729201 SPACA5B UNQ6288/PRO20753 - HGNC:19142|Ensembl:ENSG00000171478|Vega:OTTHUMG00000021465 X Xp11.23 sperm acrosome associated 5B protein-coding SPACA5B sperm acrosome associated 5B O SLLP-X|lysozyme-like protein 5|sperm acrosome-associated protein 5|sperm-specific lysozyme-like protein X 20121230 -9606 729203 RPL31P30 - RPL31_2_226 HGNC:35679 2 2p15 ribosomal protein L31 pseudogene 30 pseudo RPL31P30 ribosomal protein L31 pseudogene 30 O - 20121230 -9606 729208 RPL21P14 - HsT16795|RPL21_53_1436 HGNC:31029 15 15q22.1 ribosomal protein L21 pseudogene 14 pseudo RPL21P14 ribosomal protein L21 pseudogene 14 O - 20121230 -9606 729209 RPSAP26 - RPSA_3_227 HGNC:36195 2 2p15 ribosomal protein SA pseudogene 26 pseudo RPSAP26 ribosomal protein SA pseudogene 26 O - 20121230 -9606 729211 KRT18P15 - KRT18L5 HGNC:32449 3 3p22.3 keratin 18 pseudogene 15 pseudo KRT18P15 keratin 18 pseudogene 15 O - 20121230 -9606 729212 RPL13AP26 - RPL13A_13_1745 HGNC:35492 22 22q12.2 ribosomal protein L13a pseudogene 26 pseudo RPL13AP26 ribosomal protein L13a pseudogene 26 O - 20121230 -9606 729215 RPL32P29 - RPL32_8_1362 HGNC:35771 14 14q21.3 ribosomal protein L32 pseudogene 29 pseudo RPL32P29 ribosomal protein L32 pseudogene 29 O - 20121230 -9606 729217 LOC729217 - - - 16 16q21 emopamil binding protein-like pseudogene pseudo - - - - 20121230 -9606 729218 LOC729218 - - - 4 4q26 uncharacterized LOC729218 pseudo - - - - 20121230 -9606 729220 FLJ45513 - - - 17 17q21.33 uncharacterized LOC729220 protein-coding - - - uncharacterized protein LOC729220 20121230 -9606 729222 LOC729222 - - - 12 12p11.23 liprin-beta-1-like pseudo - - - - 20121209 -9606 729224 LOC729224 hCG_2044152 - - 2 2q33.1 uncharacterized LOC729224 unknown - - - - 20121230 -9606 729230 CCR2 hCG_14621 CC-CKR-2|CCR-2|CCR2A|CCR2B|CD192|CKR2|CKR2A|CKR2B|CMKBR2|MCP-1-R HGNC:1603|MIM:601267|Ensembl:ENSG00000121807|Vega:OTTHUMG00000156466 3 3p21.31 chemokine (C-C motif) receptor 2 protein-coding CCR2 chemokine (C-C motif) receptor 2 O C-C chemokine receptor type 2|MCP-1 receptor|monocyte chemoattractant protein 1 receptor|monocyte chemotactic protein 1 receptor 20121230 -9606 729233 PRR20B - - HGNC:37220|Ensembl:ENSG00000204918 13 13q21.1 proline rich 20B protein-coding PRR20B proline rich 20B O FLJ40296 protein family member|proline-rich protein 20B 20121230 -9606 729234 FAHD2CP - - HGNC:44135 2 2q11.1 fumarylacetoacetate hydrolase domain containing 2C, pseudogene pseudo FAHD2CP fumarylacetoacetate hydrolase domain containing 2C, pseudogene O - 20121230 -9606 729236 RPS13P2 - RPS13_1_51 HGNC:36364 1 1p32.3 ribosomal protein S13 pseudogene 2 pseudo RPS13P2 ribosomal protein S13 pseudogene 2 O - 20121230 -9606 729238 SFTPA2 RP11-589B3.4 COLEC5|PSAP|PSP-A|PSPA|SFTP1|SFTPA2B|SP-A|SPA2|SPAII HGNC:10799|MIM:178642|Ensembl:ENSG00000185303|Vega:OTTHUMG00000018566 10 10q22.3 surfactant protein A2 protein-coding SFTPA2 surfactant protein A2 O 35 kDa pulmonary surfactant-associated protein|alveolar proteinosis protein|collectin 5|pulmonary surfactant-associated protein A2|surfactant, pulmonary-associated protein A2A 20121230 -9606 729240 PRR20C - - HGNC:37221|Ensembl:ENSG00000229665 13 13q21.1 proline rich 20C protein-coding PRR20C proline rich 20C O FLJ40296 protein family member|proline-rich protein 20C 20121209 -9606 729241 RPL21P117 - RPL21_53_1439 HGNC:35987 15 15q22.2 ribosomal protein L21 pseudogene 117 pseudo RPL21P117 ribosomal protein L21 pseudogene 117 O - 20121230 -9606 729246 PRR20D - - HGNC:37222|Ensembl:ENSG00000227151 13 13q21.1 proline rich 20D protein-coding PRR20D proline rich 20D O FLJ40296 protein family member|proline-rich protein 20D 20121209 -9606 729248 LOC729248 - - - 2 2q13 zinc finger and BTB domain containing 45 pseudogene pseudo - - - - 20121230 -9606 729249 KLHL2P1 - MAVP1 HGNC:44046 4 4q26 kelch-like 2, Mayven (Drosophila) pseudogene 1 pseudo KLHL2P1 kelch-like 2, Mayven (Drosophila) pseudogene 1 O - 20121230 -9606 729250 PRR20E - - HGNC:37223|Ensembl:ENSG00000234278 13 13q21.1 proline rich 20E protein-coding PRR20E proline rich 20E O FLJ40296 protein family member|proline-rich protein 20E 20121209 -9606 729252 KRT16P1 - KRT14P|KRT16P HGNC:6420 17 17p11.2 keratin 16 pseudogene 1 pseudo KRT16P1 keratin 16 pseudogene 1 O - 20121230 -9606 729254 LOC729254 hCG_2045843 - - 2 2q32.3 hCG2045843 protein-coding - - - - 20120511 -9606 729257 RPS24P4 - RPS24_2_174 HGNC:35852 1 1q42.2 ribosomal protein S24 pseudogene 4 pseudo RPS24P4 ribosomal protein S24 pseudogene 4 O - 20121230 -9606 729258 RPS11P6 - RPS11_2_1249 HGNC:36693 12 12q14.2 ribosomal protein S11 pseudogene 6 pseudo RPS11P6 ribosomal protein S11 pseudogene 6 O - 20121230 -9606 729259 RPL17P43 - RPL17_24_1526 HGNC:35996 17 17p11.2 ribosomal protein L17 pseudogene 43 pseudo RPL17P43 ribosomal protein L17 pseudogene 43 O - 20121230 -9606 729262 FAM22B - bA119F19.1 HGNC:23445 10 10q22.3 family with sequence similarity 22, member B pseudo FAM22B family with sequence similarity 22, member B O - 20121230 -9606 729264 TP53TG3D - - HGNC:44657|Ensembl:ENSG00000205456|Vega:OTTHUMG00000132469 16 16p11.2 TP53 target 3D protein-coding TP53TG3D TP53 target 3D O - 20121230 -9606 729268 LOC729268 hCG_2013212 - - 14 14q22.1 hCG2013212 protein-coding - - - - 20120318 -9606 729274 RPS2P53 - RPS2_24_1626 HGNC:36690 19 19p13.2 ribosomal protein S2 pseudogene 53 pseudo RPS2P53 ribosomal protein S2 pseudogene 53 O - 20121230 -9606 729275 LOC729275 - - - X Xp11.23 uncharacterized LOC729275 unknown - - - - 20121018 -9606 729277 RPL23AP47 - RPL23A_21_778 HGNC:36576 6 6q27 ribosomal protein L23a pseudogene 47 pseudo RPL23AP47 ribosomal protein L23a pseudogene 47 O - 20121209 -9606 729279 RPL28P5 - RPL28_2_1625 HGNC:35766 19 19p13.2 ribosomal protein L28 pseudogene 5 pseudo RPL28P5 ribosomal protein L28 pseudogene 5 O - 20121230 -9606 729288 ZNF286B - ZNF286C|ZNF286L|ZNF590 HGNC:33241|Ensembl:ENSG00000249459|Vega:OTTHUMG00000178136 17 17p11.2 zinc finger protein 286B protein-coding ZNF286B zinc finger protein 286B O putative zinc finger protein 286B|zinc finger 286C pseudogene|zinc finger protein 590 20121230 -9606 729291 LOC729291 - - - 12 12p11.22 uncharacterized LOC729291 unknown - - - - 20120511 -9606 729293 RPS18P10 - RPS18_2_763 HGNC:35566 6 6q24.1 ribosomal protein S18 pseudogene 10 pseudo RPS18P10 ribosomal protein S18 pseudogene 10 O - 20121230 -9606 729296 LOC729296 - - - 20 20q13.33 uncharacterized LOC729296 miscRNA - - - - 20121209 -9606 729298 PCNPP3 - - HGNC:41975 12 12q14.3 PEST containing nuclear protein pseudogene 3 pseudo PCNPP3 PEST containing nuclear protein pseudogene 3 O - 20121230 -9606 729299 PMS2P8 - - HGNC:33516 7 7q11.23 postmeiotic segregation increased 2 pseudogene 8 pseudo PMS2P8 postmeiotic segregation increased 2 pseudogene 8 O - 20121209 -9606 729301 RPL17P9 - RPL17_1_25 HGNC:36230 1 1p36.11 ribosomal protein L17 pseudogene 9 pseudo RPL17P9 ribosomal protein L17 pseudogene 9 O - 20121230 -9606 729305 LOC729305 - - - 11 11q25 uncharacterized LOC729305 unknown - - - - 20121230 -9606 729307 LOC729307 - - - 4 4q28.3 uncharacterized LOC729307 unknown - - - - 20120511 -9606 729308 RPL31P45 hCG_1642535 RPL31_22_1025 HGNC:36796 10 10p12.31 ribosomal protein L31 pseudogene 45 pseudo RPL31P45 ribosomal protein L31 pseudogene 45 O - 20121230 -9606 729310 KYNUP2 - - HGNC:39200 17 17p11.2 kynureninase pseudogene 2 pseudo KYNUP2 kynureninase pseudogene 2 O - 20121230 -9606 729313 LOC729313 - - - 16 16q23.2 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 729316 LOC729316 - - - 15 15q21.1 POM121 membrane glycoprotein pseudogene pseudo - - - - 20121230 -9606 729317 LOC729317 - - - 2 2p14 voltage-dependent anion channel 2 pseudogene pseudo - - - - 20121230 -9606 729321 KYNUP1 - - HGNC:39199 17 17p11.2 kynureninase pseudogene 1 pseudo KYNUP1 kynureninase pseudogene 1 O - 20121230 -9606 729323 KYNUP3 - - HGNC:39201 17 17p11.2 kynureninase pseudogene 3 pseudo KYNUP3 kynureninase pseudogene 3 O - 20121209 -9606 729324 LOC729324 hCG_1986447 - - 2 2p14 hCG1986447 unknown - - - - 20120622 -9606 729327 LOC729327 - - - 20 20p11.1 mediator complex subunit 28 pseudogene pseudo - - - - 20121230 -9606 729330 OC90 - PLA2L HGNC:8100|MIM:601658|Ensembl:ENSG00000253117|Ensembl:ENSG00000258417|Vega:OTTHUMG00000164672|Vega:OTTHUMG00000170745 8 8q24.22 otoconin 90 protein-coding OC90 otoconin 90 O otoconin-90|phospholipase A2 homolog 20121230 -9606 729332 RPL27P8 - RPL27_3_316 HGNC:36012 2 2q33.3 ribosomal protein L27 pseudogene 8 pseudo RPL27P8 ribosomal protein L27 pseudogene 8 O - 20121230 -9606 729334 LOC729334 - - - 17 17p11.2 cytospin B pseudogene pseudo - - - - 20121230 -9606 729338 CETN4P - - HGNC:35450 4 4q27 centrin EF-hand protein 4, pseudogene pseudo CETN4P centrin EF-hand protein 4, pseudogene O - 20121230 -9606 729340 RPL17P36 - RPL17_11_1102 HGNC:36051 10 10q26.11 ribosomal protein L17 pseudogene 36 pseudo RPL17P36 ribosomal protein L17 pseudogene 36 O - 20121230 -9606 729342 LOC729342 - - - 2 2q33.1 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 729344 KRT8P24 - - HGNC:33376 15 15q21.1 keratin 8 pseudogene 24 pseudo KRT8P24 keratin 8 pseudogene 24 O - 20121230 -9606 729347 AKR1B1P3 - ALDRL3 HGNC:422 11 11p15.1 aldo-keto reductase family 1, member B1 pseudogene 3 pseudo AKR1B1P3 aldo-keto reductase family 1, member B1 pseudogene 3 O - 20121230 -9606 729348 LOC729348 - - - 2 2p14 LINE1 retrotransposable element other - - - - 20120511 -9606 729349 RPL17P16 - RPL17_4_369 HGNC:35939 3 3p21.31 ribosomal protein L17 pseudogene 16 pseudo RPL17P16 ribosomal protein L17 pseudogene 16 O - 20121230 -9606 729353 LOC729353 - - - 15 - uncharacterized LOC729353 protein-coding - - - - 20120318 -9606 729355 TP53TG3B - - HGNC:37202|Ensembl:ENSG00000261509|Vega:OTTHUMG00000176461 16 16p11.2 TP53 target 3B protein-coding TP53TG3B TP53 target 3B O TP53-inducible gene 3 protein|TP53-target gene 3 protein 20121230 -9606 729356 LOC729356 - - - 1 1p36.21 PRAME family member 2 pseudogene pseudo - - - - 20121230 -9606 729359 PLIN4 - KIAA1881|S3-12 HGNC:29393|MIM:613247|Ensembl:ENSG00000167676|Vega:OTTHUMG00000167571 19 19p13.3 perilipin 4 protein-coding PLIN4 perilipin 4 O adipocyte protein S3-12|perilipin-4 20121230 -9606 729362 RPL36AP37 - RPL36A_14_1122 HGNC:36969 11 11p15.1 ribosomal protein L36a pseudogene 37 pseudo RPL36AP37 ribosomal protein L36a pseudogene 37 O - 20121230 -9606 729366 LOC729366 - - - 2 2q33.3 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 729368 PRAMEF23 - PRAMEF5L HGNC:34394 1 1p36.21 PRAME family member 23 protein-coding PRAMEF23 PRAME family member 23 O - 20121209 -9606 729369 LOC729369 - - - 13 - ankyrin repeat domain-containing protein 36C-like pseudo - - - - 20121209 -9606 729374 RPS10P6 - RPS10_1_98 HGNC:35765 1 1q21.3 ribosomal protein S10 pseudogene 6 pseudo RPS10P6 ribosomal protein S10 pseudogene 6 O - 20121230 -9606 729375 FAM86HP - - HGNC:42359 3 3q22.1 family with sequence similarity 86, member A pseudogene pseudo FAM86HP family with sequence similarity 86, member H, pseudogene O - 20121230 -9606 729384 TRIM49L1 - TRIM48L1|TRIM49L HGNC:37217 11 11q14.3 tripartite motif containing 49-like 1 protein-coding TRIM49L1 tripartite motif containing 49-like 1 O tripartite motif-containing 49-like 1|tripartite motif-containing protein 49-like protein 1 20121230 -9606 729389 RPS6P25 - RPS6_13_1629 HGNC:35948 19 19p13.2 ribosomal protein S6 pseudogene 25 pseudo RPS6P25 ribosomal protein S6 pseudogene 25 O - 20121230 -9606 729391 RFWD2P1 - RFWD2P HGNC:31900 18 18p11.23 ring finger and WD repeat domain 2, E3 ubiquitin protein ligase pseudogene 1 pseudo RFWD2P1 ring finger and WD repeat domain 2, E3 ubiquitin protein ligase pseudogene 1 O - 20121230 -9606 729392 POM121L6P - bA239L20.2 HGNC:31343 6 6p21.3 POM121 transmembrane nucleoporin-like 6 pseudogene pseudo POM121L6P POM121 transmembrane nucleoporin-like 6 pseudogene O - 20121230 -9606 729396 GAGE12J - GAGE11 HGNC:17778|MIM:300733|Ensembl:ENSG00000224659|Vega:OTTHUMG00000024137 X Xp11.23 G antigen 12J protein-coding GAGE12J G antigen 12J O G antigen 11|GAGE-12J 20121230 -9606 729399 SEPHS1P6 - - HGNC:42168 2 2q33.1 selenophosphate synthetase 1 pseudogene 6 pseudo SEPHS1P6 selenophosphate synthetase 1 pseudogene 6 O - 20121230 -9606 729402 RPL21P16 - RPL21_38_1104 HGNC:31396 10 10q26.12 ribosomal protein L21 pseudogene 16 pseudo RPL21P16 ribosomal protein L21 pseudogene 16 O - 20121230 -9606 729403 GAPDHP61 - GAPDHL6|GAPDL6 HGNC:4155 15 15q22.31 glyceraldehyde 3 phosphate dehydrogenase pseudogene 61 pseudo GAPDHP61 glyceraldehyde 3 phosphate dehydrogenase pseudogene 61 O - 20121230 -9606 729406 PPP1R14BP2 - - HGNC:16329 2 2q33.3 protein phosphatase 1, regulatory (inhibitor) subunit 14B pseudogene 2 pseudo PPP1R14BP2 protein phosphatase 1, regulatory (inhibitor) subunit 14B pseudogene 2 O - 20121230 -9606 729408 GAGE2D CTD-2248C21.2 CT4.8|GAGE-2D|GAGE-8|GAGE8 HGNC:31959|MIM:300735|Ensembl:ENSG00000240257|Vega:OTTHUMG00000067393 X Xp11.23 G antigen 2D protein-coding GAGE2D G antigen 2D O cancer/testis antigen 4.8 20121209 -9606 729409 LOC729409 - - - 12 12q15 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase, 1 pseudogene pseudo - - - - 20121230 -9606 729412 PSMA6P2 - - HGNC:39607 X Xp22.2 proteasome (prosome, macropain) subunit, alpha type, 6 pseudogene 2 pseudo PSMA6P2 proteasome (prosome, macropain) subunit, alpha type, 6 pseudogene 2 O - 20121230 -9606 729416 RPLP1P6 hCG_1641617 RPLP1_5_629 HGNC:35809 5 5q33.1 ribosomal protein, large, P1 pseudogene 6 pseudo RPLP1P6 ribosomal protein, large, P1 pseudogene 6 O - 20121230 -9606 729420 C13orf45 - - HGNC:44370|Ensembl:ENSG00000178734 13 13q22.2 chromosome 13 open reading frame 45 protein-coding C13orf45 chromosome 13 open reading frame 45 O uncharacterized protein C13orf45 20121230 -9606 729422 GAGE12C - GAGE-12B HGNC:28402|MIM:300727|Ensembl:ENSG00000237671|Vega:OTTHUMG00000024144 X Xp11.23 G antigen 12C protein-coding GAGE12C G antigen 12C O G antigen 12B/C/D/E|GAGE-12C|g antigen 12C/D/E 20121209 -9606 729423 HNRNPA1P6 - HNRNPA1L|HNRNPA1L1|HNRPA1L HGNC:5032 1 1p32.2 heterogeneous nuclear ribonucleoprotein A1 pseudogene 6 pseudo HNRNPA1P6 heterogeneous nuclear ribonucleoprotein A1 pseudogene 6 O - 20121230 -9606 729428 GAGE12B - GAGE-12B HGNC:26779|Vega:OTTHUMG00000024142 X Xp11.23 G antigen 12B protein-coding GAGE12B G antigen 12B O G antigen 12B/C/D/E|g antigen 12C/D/E 20121023 -9606 729431 GAGE12E RP11-959H17.4 GAGE-12B HGNC:31905|MIM:300729|Ensembl:ENSG00000216649|Vega:OTTHUMG00000024146 X Xp11.23 G antigen 12E protein-coding GAGE12E G antigen 12E O G antigen 12B/C/D/E|GAGE-12E|g antigen 12C/D/E 20121209 -9606 729435 ATP6V1E1P3 - ATP6EL1|ATP6V1EL1 HGNC:858 12 12q14.2 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1 pseudogene 3 pseudo ATP6V1E1P3 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1 pseudogene 3 O - 20121230 -9606 729438 GATSL2 - - HGNC:37073|Ensembl:ENSG00000198750|Vega:OTTHUMG00000156013 7 7q11.23 GATS protein-like 2 protein-coding GATSL2 GATS protein-like 2 O GATS-like protein 2 20121230 -9606 729440 CCDC61 - - HGNC:33629|Ensembl:ENSG00000104983 19 19q13.32 coiled-coil domain containing 61 protein-coding CCDC61 coiled-coil domain containing 61 O coiled-coil domain-containing protein 61 20121230 -9606 729442 GAGE12H - RP11-959H17.7 HGNC:31908|MIM:300732|Ensembl:ENSG00000224902|Vega:OTTHUMG00000024149 X Xp11.23 G antigen 12H protein-coding GAGE12H G antigen 12H O GAGE-12H 20121209 -9606 729444 LOC729444 - - - 22 22q11.21 uncharacterized LOC729444 miscRNA - - - - 20121230 -9606 729447 GAGE2A - CT4.2|GAGE-2|GAGE-2A|GAGE2 HGNC:4099|MIM:300720|Ensembl:ENSG00000189064|Vega:OTTHUMG00000024143 X Xp11.23 G antigen 2A protein-coding GAGE2A G antigen 2A O G antigen 2A/2B|cancer/testis antigen 4.2|cancer/testis antigen family 4, member 2 20121209 -9606 729449 RPL7P50 - RPL7_28_1618 HGNC:35816 19 19p13.3 ribosomal protein L7 pseudogene 50 pseudo RPL7P50 ribosomal protein L7 pseudogene 50 O - 20121230 -9606 729450 SUSD2P2 - - HGNC:35197 22 22q11.21 sushi domain containing 2 pseudogene 2 pseudo SUSD2P2 sushi domain containing 2 pseudogene 2 O - 20121230 -9606 729451 LOC729451 - - - 14 14q22.2 uncharacterized LOC729451 unknown - - - - 20120511 -9606 729453 PMS2P6 - PMS2L14 HGNC:33514 7 7q11.23 postmeiotic segregation increased 2 pseudogene 6 pseudo PMS2P6 postmeiotic segregation increased 2 pseudogene 6 O - 20121230 -9606 729454 DSTNP4 - - HGNC:44548 3 3p22.2 destrin (actin depolymerizing factor) pseudogene 4 protein-coding DSTNP4 destrin (actin depolymerizing factor) pseudogene 4 O destrin-like 20121209 -9606 729458 LOC729458 - - Ensembl:ENSG00000196589 19 19p13.2 methyl-CpG-binding domain protein 3-like 2-like protein-coding - - - - 20121209 -9606 729461 LOC729461 - - - 22 22q11.21 uncharacterized LOC729461 protein-coding - - - - 20121230 -9606 729466 LOC729466 - - - 11 11q21 signal recognition particle 14 kDa protein-like pseudo - - - - 20121209 -9606 729467 HSD52 HSD52 - - 1 1p32.1 uncharacterized LOC729467 miscRNA - - - - 20121230 -9606 729468 LOC729468 - - - 2 2q13 putative PGM5-like protein 1 protein-coding - - - - 20120318 -9606 729475 RAD51AP2 - - HGNC:34417|Ensembl:ENSG00000214842|Vega:OTTHUMG00000151761 2 2p24.2 RAD51 associated protein 2 protein-coding RAD51AP2 RAD51 associated protein 2 O RAD51-associated protein 2 20121230 -9606 729480 RPL23AP5 - RPL23AL|RPL23A_35_1465|RPL2B|c367G8.3|rjd10 HGNC:14194 16 16p13.3 ribosomal protein L23a pseudogene 5 pseudo RPL23AP5 ribosomal protein L23a pseudogene 5 O - 20121230 -9606 729484 RPL21P18 - RPL21_46_1252 HGNC:28362 12 12q14.3 ribosomal protein L21 pseudogene 18 pseudo RPL21P18 ribosomal protein L21 pseudogene 18 O - 20121230 -9606 729486 IL9RP3 - - HGNC:6033 16 16p13.3 interleukin 9 receptor pseudogene 3 pseudo IL9RP3 interleukin 9 receptor pseudogene 3 O - 20121230 -9606 729490 NCOR1P2 - - HGNC:42997 17 17p11.2 nuclear receptor corepressor 1 pseudogene 2 pseudo NCOR1P2 nuclear receptor corepressor 1 pseudogene 2 O - 20121230 -9606 729493 GAPDHP38 - - HGNC:37792 19 19q13.32 glyceraldehyde 3 phosphate dehydrogenase pseudogene 38 pseudo GAPDHP38 glyceraldehyde 3 phosphate dehydrogenase pseudogene 38 O - 20121230 -9606 729494 ARPC3P3 - - HGNC:39432 11 11q21 actin related protein 2/3 complex, subunit 3 pseudogene 3 pseudo ARPC3P3 actin related protein 2/3 complex, subunit 3 pseudogene 3 O - 20121230 -9606 729495 FAM108A5P - FAM108A5 HGNC:34042 22 22q11.21 putative abhydrolase domain-containing protein FAM108A5 pseudo FAM108A5P family with sequence similarity 108, member A5, pseudogene O - 20121230 -9606 729496 LOC729496 - - - 6 6q25.1 coiled-coil domain containing 59 pseudogene pseudo - - - - 20121230 -9606 729497 LOC729497 - - - 4 4q31.21 nuclear receptor coactivator 4 pseudogene pseudo - - - - 20121230 -9606 729500 RPL12P14 - RPL12_1_13 HGNC:36495 1 1p36.21 ribosomal protein L12 pseudogene 14 pseudo RPL12P14 ribosomal protein L12 pseudogene 14 O - 20121230 -9606 729501 ZNF962P - - HGNC:39250 13 13q11 zinc finger protein 962, pseudogene pseudo ZNF962P zinc finger protein 962, pseudogene O - 20121230 -9606 729505 HMGN2P24 - - HGNC:39389 3 3p22.1 high mobility group nucleosomal binding domain 2 pseudogene 24 pseudo HMGN2P24 high mobility group nucleosomal binding domain 2 pseudogene 24 O - 20121230 -9606 729506 LOC729506 - - - 5 5p15.31 uncharacterized LOC729506 miscRNA - - - - 20121230 -9606 729515 TMEM242 RP11-96F3.3 BM033|C6orf35 HGNC:17206|Ensembl:ENSG00000215712|Vega:OTTHUMG00000015893 6 6q25.3 transmembrane protein 242 protein-coding TMEM242 transmembrane protein 242 O UPF0463 transmembrane protein C6orf35 20121230 -9606 729516 PRAMEF24 - - - 1 1p36.21 putative PRAME family member 24 unknown - - - - 20121209 -9606 729522 AACSP1 - AACSL HGNC:18226 5 5q35.3 acetoacetyl-CoA synthetase pseudogene 1 pseudo AACSP1 acetoacetyl-CoA synthetase pseudogene 1 O - 20121230 -9606 729524 FEM1AP4 RP11-484H12.4 - HGNC:39832 13 13q11 fem-1 homolog a (C. elegans) pseudogene 4 pseudo FEM1AP4 fem-1 homolog a (C. elegans) pseudogene 4 O - 20121230 -9606 729528 PRAMEF14 RP11-584P2.2 - HGNC:13576|Ensembl:ENSG00000204481|Vega:OTTHUMG00000007916 1 1p36.21 PRAME family member 14 protein-coding PRAMEF14 PRAME family member 14 O - 20121230 -9606 729530 CNOT6LP1 - - HGNC:32355 15 15q21.3 CCR4-NOT transcription complex, subunit 6-like pseudogene 1 pseudo CNOT6LP1 CCR4-NOT transcription complex, subunit 6-like pseudogene 1 O - 20121230 -9606 729532 LOC729532 - - - 2 2q33.2 zinc finger protein 207 pseudogene pseudo - - - - 20121230 -9606 729533 FAM72A RP11-312O7.1 LMPIP HGNC:24044|MIM:614710|Ensembl:ENSG00000196550|Vega:OTTHUMG00000042552 1 1q32.1 family with sequence similarity 72, member A protein-coding FAM72A family with sequence similarity 72, member A O LMP1-induced protein|Ugene|latent membrane protein 1-induced protein|protein FAM72A 20121230 -9606 729535 FAM207BP - - HGNC:39715 13 13q11 family with sequence similarity 207, member B, pseudogene pseudo FAM207BP family with sequence similarity 207, member B, pseudogene O - 20121230 -9606 729536 RPL34P31 - RPL34_16_1528 HGNC:36899 17 17q11.1 ribosomal protein L34 pseudogene 31 pseudo RPL34P31 ribosomal protein L34 pseudogene 31 O - 20121230 -9606 729540 RGPD6 - RGP6|RGPD7|RanBP2L1|RanBP2L2 HGNC:32419|MIM:612709|Ensembl:ENSG00000183054|Vega:OTTHUMG00000153196 2 2q13 RANBP2-like and GRIP domain containing 6 protein-coding RGPD6 RANBP2-like and GRIP domain containing 6 O RANBP2-like and GRIP domain-containing protein 5/6|RANBP2-like and GRIP domain-containing protein 7|ran-binding protein 2-like 1/2|ranBP2-like 1/2 20121230 -9606 729545 LOC729545 - - - 7 7q11.23 WBSCR19-like protein 5-like protein-coding - - - - 20120511 -9606 729557 LOC729557 - - - 20 20q11.22 density-regulated protein pseudogene pseudo - - - - 20121230 -9606 729558 LOC729558 - - - 4 4q31.3 uncharacterized LOC729558 unknown - - - - 20120511 -9606 729561 NAP1L1P1 - - HGNC:38004 11 11q24.2 nucleosome assembly protein 1-like 1 pseudogene 1 pseudo NAP1L1P1 nucleosome assembly protein 1-like 1 pseudogene 1 O - 20121230 -9606 729562 LOC729562 - - - 17 17q11.1 uncharacterized LOC729562 unknown - - - - 20120825 -9606 729564 HMGN2P41 - - HGNC:39412 16 16p11.1 high mobility group nucleosomal binding domain 2 pseudogene 41 pseudo HMGN2P41 high mobility group nucleosomal binding domain 2 pseudogene 41 O - 20121230 -9606 729565 NDUFB8P2 - - HGNC:33978 17 17q23.1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, pseudogene 2 pseudo NDUFB8P2 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, pseudogene 2 O - 20121230 -9606 729566 ZBTB8OSP1 - - HGNC:19043 4 4q31.3 zinc finger and BTB domain containing 8 opposite strand pseudogene 1 pseudo ZBTB8OSP1 zinc finger and BTB domain containing 8 opposite strand pseudogene 1 O - 20121230 -9606 729568 SUSD2P1 - - HGNC:33889 22 22q11.21 sushi domain containing 2 pseudogene 1 pseudo SUSD2P1 sushi domain containing 2 pseudogene 1 O - 20121209 -9606 729574 LOC729574 - - Ensembl:ENSG00000237847 1 1p36.13 UPF0627 protein ENSP00000341061/ENSP00000339743 protein-coding - - - - 20121230 -9606 729582 DIRC3 - - HGNC:17805|MIM:608262 2 2q35 disrupted in renal carcinoma 3 miscRNA DIRC3 disrupted in renal carcinoma 3 O - 20121230 -9606 729583 C6orf100 DAMC-4K22.1 dJ25J6.5 HGNC:21195 6 6p22.1 chromosome 6 open reading frame 100 unknown C6orf100 chromosome 6 open reading frame 100 O - 20121224 -9606 729587 LOC729587 - - - 1 1p36.13 UPF0627 protein ENSP00000341061/ENSP00000339743-like protein-coding - - - - 20121209 -9606 729595 HMGB3P22 - - HGNC:39314 5 5q35.3 high mobility group box 3 pseudogene 22 pseudo HMGB3P22 high mobility group box 3 pseudogene 22 O - 20121230 -9606 729597 SPDYE6 hCG_1989182 - HGNC:35465 7 7q22.1 speedy homolog E6 (Xenopus laevis) protein-coding SPDYE6 speedy homolog E6 (Xenopus laevis) O putative speedy protein E6 20121230 -9606 729602 LOC729602 - - - 18 18p11.21 nuclear pore complex interacting protein pseudogene pseudo - - - - 20121230 -9606 729603 LOC729603 - - - 6 6q25.3 calcium binding protein P22 pseudogene pseudo - - - - 20121230 -9606 729608 RPF2P1 RP11-353C18.53-001 BXDC1P|C20orf53|RPF2P|bA353C18.4 HGNC:16186 20 20q11.22 ribosome production factor 2 homolog (S. cerevisiae) pseudogene 1 pseudo RPF2P1 ribosome production factor 2 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 729609 LOC729609 - - - X Xp22.12 uncharacterized LOC729609 miscRNA - - - - 20121230 -9606 729610 FAHD2P1 - FAHD2P HGNC:32441 12 12q15 fumarylacetoacetate hydrolase domain containing 2 pseudogene 1 pseudo FAHD2P1 fumarylacetoacetate hydrolase domain containing 2 pseudogene 1 O - 20121230 -9606 729611 RPL29P30 - RPL29_20_1448 HGNC:36601 15 15q23 ribosomal protein L29 pseudogene 30 pseudo RPL29P30 ribosomal protein L29 pseudogene 30 O - 20121230 -9606 729614 FLJ37453 hCG_2008140 - - 1 1p36.21 uncharacterized LOC729614 miscRNA - - - - 20121230 -9606 729617 RPL23AP74 hCG_2001000 RPL23A_37_1566 HGNC:36148 17 17q23.2 ribosomal protein L23a pseudogene 74 pseudo RPL23AP74 ribosomal protein L23a pseudogene 74 O - 20121230 -9606 729621 RPL36AP46 - RPL36A_22_1565 HGNC:35812 17 17q23.2 ribosomal protein L36a pseudogene 46 pseudo RPL36AP46 ribosomal protein L36a pseudogene 46 O - 20121230 -9606 729627 PRR23A - - HGNC:37172|Ensembl:ENSG00000206260|Vega:OTTHUMG00000160635 3 3q23 proline rich 23A protein-coding PRR23A proline rich 23A O UPF0572 protein ENSP00000372650|proline-rich protein 23A|proline-rich protein 23C 20121230 -9606 729630 LOC729630 tcag7.1130 - - 7 7q21.11 dynein, light chain, LC8-type 1 pseudogene pseudo - - - - 20121230 -9606 729633 MRS2P2 - - HGNC:33942 12 12q21.1 MRS2 magnesium homeostasis factor homolog (S. cerevisiae) pseudogene 2 pseudo MRS2P2 MRS2 magnesium homeostasis factor homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 729634 KRT18P26 - - HGNC:33395 2 2p13.1 keratin 18 pseudogene 26 pseudo KRT18P26 keratin 18 pseudogene 26 O - 20120420 -9606 729635 HMGB3P19 - - HGNC:39311 6 6q25.2 high mobility group box 3 pseudogene 19 pseudo HMGB3P19 high mobility group box 3 pseudogene 19 O - 20121230 -9606 729646 RPL31P4 - RPL31_28_1375 HGNC:23546 14 14q23.1 ribosomal protein L31 pseudogene 4 pseudo RPL31P4 ribosomal protein L31 pseudogene 4 O - 20121230 -9606 729648 ZNF812 - - HGNC:33242|Ensembl:ENSG00000224689|Vega:OTTHUMG00000167867 19 19p13.2 zinc finger protein 812 protein-coding ZNF812 zinc finger protein 812 O putative zinc finger protein 812 20121230 -9606 729650 METTL15P3 - - HGNC:39558 X Xp22.11 methyltransferase like 15 pseudogene 3 pseudo METTL15P3 methyltransferase like 15 pseudogene 3 O - 20121230 -9606 729652 LOC729652 - - - 16 16p13.3 uncharacterized LOC729652 unknown - - - - 20120511 -9606 729654 LOC729654 - - - 19 19p13.12 inositol polyphosphate multikinase pseudogene pseudo - - - - 20121230 -9606 729658 LOC729658 - - - 6 6q26 uncharacterized LOC729658 unknown - - - - 20121230 -9606 729659 S100A11P1 - S100A11P|S100A14 HGNC:10491 7 7q22.1 S100 calcium binding protein A11 pseudogene 1 pseudo S100A11P1 S100 calcium binding protein A11 pseudogene 1 O - 20121230 -9606 729662 RPL22P3 RP11-430L17.1 RPL22_1_15 HGNC:36804 1 1p36.13 ribosomal protein L22 pseudogene 3 pseudo RPL22P3 ribosomal protein L22 pseudogene 3 O - 20121230 -9606 729665 CCDC175 - C14orf38|c14_5395 HGNC:19847|Ensembl:ENSG00000151838 14 14q23.1 coiled-coil domain containing 175 protein-coding CCDC175 coiled-coil domain containing 175 O uncharacterized protein C14orf38 20121230 -9606 729666 LDHAP5 - LDHAL5 HGNC:6540 10 10q26.11 lactate dehydrogenase A pseudogene 5 pseudo LDHAP5 lactate dehydrogenase A pseudogene 5 O - 20121230 -9606 729667 TRMT112P3 - - HGNC:44022 17 17q23.2 tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 3 pseudo TRMT112P3 tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 3 O - 20121230 -9606 729668 LOC729668 - - - 10 10p11.23 golgin A6 family, member A pseudogene pseudo - - - - 20121230 -9606 729673 PPIAP18 - - HGNC:32454 3 3p21.32 peptidylprolyl isomerase A (cyclophilin A) pseudogene 18 pseudo PPIAP18 peptidylprolyl isomerase A (cyclophilin A) pseudogene 18 O - 20121230 -9606 729674 LOC729674 - - - 3 3q22.1 proteasome (prosome, macropain) 26S subunit, ATPase, 2 pseudogene pseudo - - - - 20121230 -9606 729677 RPL7P16 - RPL7_5_405 HGNC:36591 3 3q22.1 ribosomal protein L7 pseudogene 16 pseudo RPL7P16 ribosomal protein L7 pseudogene 16 O - 20121230 -9606 729678 LOC729678 - - - 5 5q35.3 uncharacterized LOC729678 miscRNA - - - - 20121230 -9606 729679 RPS2P51 - RPS2_25_1632 HGNC:36422 19 19p13.11 ribosomal protein S2 pseudogene 51 pseudo RPS2P51 ribosomal protein S2 pseudogene 51 O - 20121230 -9606 729680 LOC729680 - - - 13 13q12.11 uncharacterized LOC729680 unknown - - - - 20121102 -9606 729681 LOC729681 - - - 6 6q27 uncharacterized LOC729681 unknown - - - - 20120511 -9606 729682 KRT17P3 - - HGNC:33697 17 17q11.2 keratin 17 pseudogene 3 pseudo KRT17P3 keratin 17 pseudogene 3 O - 20121230 -9606 729683 LOC729683 - - - 17 17q23.3 uncharacterized LOC729683 miscRNA - - - - 20121230 -9606 729686 LOC729686 - - - 15 15q24.1 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 729687 HMGN2P25 - - HGNC:39392 3 3q23 high mobility group nucleosomal binding domain 2 pseudogene 25 pseudo HMGN2P25 high mobility group nucleosomal binding domain 2 pseudogene 25 O - 20121230 -9606 729689 FAM90A2P - - HGNC:32250 8 8p23.1 family with sequence similarity 90, member A2 pseudogene pseudo FAM90A2P family with sequence similarity 90, member A2, pseudogene O - 20121230 -9606 729696 LOC729696 - - - 8 8q21.11 uncharacterized LOC729696 protein-coding - - - - 20120511 -9606 729707 LOC729707 - - - 5 5q35.3 transmembrane and tetratricopeptide repeat containing 4 pseudogene pseudo - - - - 20121230 -9606 729708 TPI1P1 - RCTPI1 HGNC:35449 1 1p31.1 triosephosphate isomerase 1 pseudogene 1 pseudo TPI1P1 triosephosphate isomerase 1 pseudogene 1 O - 20121230 -9606 729722 LOC729722 - - - 15 15q11.1 ankyrin repeat domain-containing protein ENSP00000383090-like protein-coding - - - putative ankyrin repeat domain-containing protein ENSP00000383090 20121101 -9606 729723 DNAJC27-AS1 - - HGNC:42943 2 2p23.3 DNAJC27 antisense RNA 1 miscRNA DNAJC27-AS1 DNAJC27 antisense RNA 1 O - 20121230 -9606 729727 RPL12P1 DAQB-126H3.6 CICK0721Q.1|RPL12-L|RPL12_5_682|dJ570F3.5 HGNC:13976 6 6p21.32 ribosomal protein L12 pseudogene 1 pseudo RPL12P1 ribosomal protein L12 pseudogene 1 O - 20121230 -9606 729732 LOC729732 - - - 8 8p23.1 uncharacterized LOC729732 miscRNA - - - - 20121230 -9606 729737 LOC729737 - - - 1 1p36.33 uncharacterized LOC729737 miscRNA - - - - 20121230 -9606 729739 LOC729739 - - - 15 15q24.1 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 729747 ZNF878 - - HGNC:37246|Ensembl:ENSG00000257446|Vega:OTTHUMG00000169370 19 19p13.2 zinc finger protein 878 protein-coding ZNF878 zinc finger protein 878 O - 20121230 -9606 729756 PRSS44 - TESSP-4|TESSP4 HGNC:37324 3 3p21.31 protease, serine, 44 protein-coding PRSS44 protease, serine, 44 O serine protease 44|testis serine protease 4 20121230 -9606 729759 OR4F29 - OR7-21 HGNC:31275|HPRD:14971 1 1p36.33 olfactory receptor, family 4, subfamily F, member 29 protein-coding OR4F29 olfactory receptor, family 4, subfamily F, member 29 O olfactory receptor 4F3/4F16/4F29|olfactory receptor OR1-1|olfactory receptor OR7-21|seven transmembrane helix receptor 20121230 -9606 729760 RPL12P18 - RPL12_3_246 HGNC:36750 2 2p11.2 ribosomal protein L12 pseudogene 18 pseudo RPL12P18 ribosomal protein L12 pseudogene 18 O - 20121230 -9606 729764 RPL23AP45 - RPL23A_19_648 HGNC:36896 5 5q35.3 ribosomal protein L23a pseudogene 45 pseudo RPL23AP45 ribosomal protein L23a pseudogene 45 O - 20121209 -9606 729767 CEACAM18 - - HGNC:31949|Ensembl:ENSG00000213822|Vega:OTTHUMG00000151557 19 19q13.41 carcinoembryonic antigen-related cell adhesion molecule 18 protein-coding CEACAM18 carcinoembryonic antigen-related cell adhesion molecule 18 O - 20121230 -9606 729769 UQCRHP2 - - HGNC:38045 2 2p23.3 ubiquinol-cytochrome c reductase hinge protein pseudogene 2 pseudo UQCRHP2 ubiquinol-cytochrome c reductase hinge protein pseudogene 2 O - 20121230 -9606 729770 LOC729770 - - - 2 2q36.1 uncharacterized LOC729770 unknown - - - - 20121230 -9606 729774 LOC729774 - - - 18 18p11.21 family with sequence similarity 207, member A pseudogene pseudo - - - - 20121230 -9606 729779 PSAT1P3 - - HGNC:43989 1 1p31.1 phosphoserine aminotransferase 1 pseudogene 3 pseudo PSAT1P3 phosphoserine aminotransferase 1 pseudogene 3 O - 20121230 -9606 729780 RPS10P8 - RPS10_1_104 HGNC:36606 1 1q23.1 ribosomal protein S10 pseudogene 8 pseudo RPS10P8 ribosomal protein S10 pseudogene 8 O - 20121230 -9606 729786 GOLGA8CP - GOLGA8C HGNC:32375 15 15q11.2 golgin A8 family, member C, pseudogene pseudo GOLGA8CP golgin A8 family, member C, pseudogene O - 20121230 -9606 729789 RPS15P5 - RPS15_3_372 HGNC:35536 3 3p14.3 ribosomal protein S15 pseudogene 5 pseudo RPS15P5 ribosomal protein S15 pseudogene 5 O - 20121230 -9606 729790 ARL6IP1P3 - - HGNC:44972 11 11q14.1 ADP-ribosylation factor-like 6 interacting protein 1 pseudogene 3 pseudo ARL6IP1P3 ADP-ribosylation factor-like 6 interacting protein 1 pseudogene 3 O - 20121230 -9606 729798 RPL23AP63 - RPL23A_28_1140 HGNC:35502 11 11p11.2 ribosomal protein L23a pseudogene 63 pseudo RPL23AP63 ribosomal protein L23a pseudogene 63 O - 20121230 -9606 729799 SEC14L1P1 - - HGNC:44189 11 11p11.2 SEC14-like 1 pseudogene 1 pseudo SEC14L1P1 SEC14-like 1 pseudogene 1 O - 20121230 -9606 729800 LOC729800 - - - 10 10q26.13 ZP domain-containing protein LOC729800-like protein-coding - - - Putative ZP domain-containing protein LOC729800 20120825 -9606 729806 ZNF731P - ZNF731 HGNC:32471 1 1q44 zinc finger protein 731, pseudogene pseudo ZNF731P zinc finger protein 731, pseudogene O - 20121230 -9606 729809 DNM1P34 - DNM1DN8-1|DNM1DN8-5|DNM1DN8@ HGNC:35181 15 15q24.2 DNM1 pseudogene 34 pseudo DNM1P34 DNM1 pseudogene 34 O - 20121230 -9606 729810 LOC729810 - - - 1 1q44 uncharacterized LOC729810 unknown - - - - 20121017 -9606 729815 LOC729815 - - - 10 10q22.3 uncharacterized LOC729815 unknown - - - - 20121230 -9606 729816 DHFRP2 - - HGNC:2863 6 6p21.33 dihydrofolate reductase pseudogene 2 pseudo DHFRP2 dihydrofolate reductase pseudogene 2 O - 20121230 -9606 729817 LOC729817 - - - 1 1p31.1 heterogeneous nuclear ribonucleoprotein A3 pseudogene pseudo - - - - 20121230 -9606 729828 ST13P20 - - HGNC:38863 1 1p31.1 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 20 pseudo ST13P20 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 20 O - 20121230 -9606 729830 FAM160A1 - - HGNC:34237|Ensembl:ENSG00000164142|Vega:OTTHUMG00000161675 4 4q31.3 family with sequence similarity 160, member A1 protein-coding FAM160A1 family with sequence similarity 160, member A1 O protein FAM160A1 20121230 -9606 729835 LOC729835 - - - 17 17q12 ubiquitin-fold modifier 1 pseudogene pseudo - - - - 20121230 -9606 729838 GGTLC4P - GGT HGNC:33428 22 22q11.23 gamma-glutamyltransferase light chain 4 pseudogene pseudo GGTLC4P gamma-glutamyltransferase light chain 4 pseudogene O - 20121230 -9606 729839 LOC729839 - - - 17 17q12 DTW domain containing 2 pseudogene pseudo - - - - 20121230 -9606 729842 RPS2P50 - RPS2_23_1541 HGNC:36034 17 17q12 ribosomal protein S2 pseudogene 50 pseudo RPS2P50 ribosomal protein S2 pseudogene 50 O - 20121230 -9606 729852 LOC729852 tcag7.903 - - 7 7p21.3 uncharacterized LOC729852 miscRNA - - - - 20121230 -9606 729856 LOC729856 - - - 1 1p36.11 elongation factor 1-alpha-like pseudo - - - - 20121230 -9606 729857 RGPD2 - NUP358|RANBP2L2|RGP2 HGNC:32415|MIM:612705|Ensembl:ENSG00000185304|HPRD:18641|Vega:OTTHUMG00000153276 2 2p11.2 RANBP2-like and GRIP domain containing 2 protein-coding RGPD2 RANBP2-like and GRIP domain containing 2 O RANBP2-like and GRIP domain-containing protein 2|Ran binding protein 2-like 2|nucleoporin|ran-binding protein 2-like 2|ranBP2-like 2 20121230 -9606 729859 LOC729859 - - - 2 2p11.2 WW domain binding protein 1 pseudogene pseudo - - - - 20121230 -9606 729860 LOC729860 - - - 11 11q25 uncharacterized LOC729860 unknown - - - - 20120710 -9606 729862 LSP1P3 - - HGNC:39718 5 5p13.3 lymphocyte-specific protein 1 pseudogene 3 pseudo LSP1P3 lymphocyte-specific protein 1 pseudogene 3 O - 20121230 -9606 729866 LOC729866 hCG_1994895 - - 1 1q23.1 hCG1994895 unknown - - - - 20120622 -9606 729867 LOC729867 - - - 1 1q23.2 uncharacterized LOC729867 unknown - - - - 20120511 -9606 729870 LOC729870 - - - 4 4q31.3 uncharacterized LOC729870 unknown - - - - 20120511 -9606 729873 TBC1D3 - PRC17|TBC1D3A|TBC1D3F HGNC:19031|MIM:607741|Ensembl:ENSG00000197681|Vega:OTTHUMG00000164417 17 17q12 TBC1 domain family, member 3 protein-coding TBC1D3 TBC1 domain family, member 3 O Rab GTPase-activating protein PRC17|TBC1 domain family member 3|TBC1 domain family, member 3F|prostate cancer gene 17 protein|protein TRE17-alpha 20121230 -9606 729877 TBC1D3H - - HGNC:30708|MIM:610811|Ensembl:ENSG00000242384|Vega:OTTHUMG00000132712 17 17q12 TBC1 domain family, member 3H protein-coding TBC1D3H TBC1 domain family, member 3H O TBC1 domain family member 3-like protein LOC729837 20121230 -9606 729879 LOC729879 - - - 2 2q37.1 uncharacterized LOC729879 unknown - - - - 20120511 -9606 729885 VN1R101P - - HGNC:37424 19 19q13.42 vomeronasal 1 receptor 101 pseudogene pseudo VN1R101P vomeronasal 1 receptor 101 pseudogene O - 20121230 -9606 729887 LOC729887 - - - 16 16q23.3 uncharacterized LOC729887 unknown - - - - 20120511 -9606 729894 ELMO2P1 - - HGNC:38008 15 15q11.2 engulfment and cell motility 2 pseudogene 1 pseudo ELMO2P1 engulfment and cell motility 2 pseudogene 1 O - 20121230 -9606 729898 ZBTB8OSP2 - - HGNC:30326 2 2q37.1 zinc finger and BTB domain containing 8 opposite strand pseudogene 2 pseudo ZBTB8OSP2 zinc finger and BTB domain containing 8 opposite strand pseudogene 2 O - 20121230 -9606 729900 LOC729900 - - - 15 15q11.2 golgin subfamily A member 6-like protein 2-like pseudo - - - - 20121209 -9606 729903 RPS16P10 - RPS16_5_1636 HGNC:35739 19 19p12 ribosomal protein S16 pseudogene 10 pseudo RPS16P10 ribosomal protein S16 pseudogene 10 O - 20121230 -9606 729909 RPL36AP26 - RPL36A_8_787 HGNC:36758 7 7p21.2 ribosomal protein L36a pseudogene 26 pseudo RPL36AP26 ribosomal protein L36a pseudogene 26 O - 20121230 -9606 729911 LOC729911 - - - 15 15q25.1 uncharacterized LOC729911 miscRNA - - - - 20121230 -9606 729915 LOC729915 bA110H4.2 - - 5 5p13.2 putative POM121-like protein 1 unknown - - - uncharacterized protein LOC729915 20120726 -9606 729920 ISPD hCG_1745121 MDDGA7|Nip HGNC:37276|MIM:614631|Ensembl:ENSG00000214960|Vega:OTTHUMG00000152447 7 7p21.2 isoprenoid synthase domain containing protein-coding ISPD isoprenoid synthase domain containing O 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase-like protein|4-diphosphocytidyl-2C-methyl-D-erythritol synthase homolog|isoprenoid synthase domain-containing protein|notch1-induced protein 20121230 -9606 729927 RPS20P27 - RPS20_12_1158 HGNC:36154 11 11q14.1 ribosomal protein S20 pseudogene 27 pseudo RPS20P27 ribosomal protein S20 pseudogene 27 O - 20121230 -9606 729930 LOC729930 - - - 1 1p22.2 chromosome 11 open reading frame 74 pseudogene pseudo - - - - 20121230 -9606 729941 LOC729941 - - - 14 14q24.2 PDZ domain containing 11 pseudogene pseudo - - - - 20121230 -9606 729944 ZNF75CP - ZNF75C HGNC:13148 11 11q14.1 zinc finger protein 75C, pseudogene pseudo ZNF75CP zinc finger protein 75C, pseudogene O - 20121230 -9606 729945 LOC729945 - - - 16 16p13.13 Rho GTPase activating protein 21 pseudogene pseudo - - - - 20121230 -9606 729948 CDC26P1 TCAG_1970866 CDC26P HGNC:22770 7 7q32.1 cell division cycle 26 homolog (S. cerevisiae) pseudogene 1 pseudo CDC26P1 cell division cycle 26 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 729950 LOC729950 - - - 18 18q11.2 uncharacterized LOC729950 miscRNA - - - - 20121230 -9606 729952 HMGB3P6 - - HGNC:39283 1 1q23.3 high mobility group box 3 pseudogene 6 pseudo HMGB3P6 high mobility group box 3 pseudogene 6 O - 20121230 -9606 729955 RPL18AP5 - RPL18A_1_27 HGNC:36777 1 1p36.11 ribosomal protein L18a pseudogene 5 pseudo RPL18AP5 ribosomal protein L18a pseudogene 5 O - 20121230 -9606 729956 SHISA7 hCG_2039146 - HGNC:35409|Ensembl:ENSG00000187902|Vega:OTTHUMG00000154240 19 19q13.42 shisa homolog 7 (Xenopus laevis) protein-coding SHISA7 shisa homolog 7 (Xenopus laevis) O UPF0626 protein A|protein shisa-7 20121230 -9606 729960 LOC729960 - - - 11 11p11.12 NADPH oxidase 4 pseudogene pseudo - - - - 20121230 -9606 729962 RPL21P71 - RPL21_12_416 HGNC:36049 3 3q24 ribosomal protein L21 pseudogene 71 pseudo RPL21P71 ribosomal protein L21 pseudogene 71 O - 20121230 -9606 729966 LOC729966 - - - 19 19p13.11 uncharacterized LOC729966 pseudo - - - - 20121230 -9606 729967 MORN2 hCG_1818386 BLOCK27|MOPT HGNC:30166|Ensembl:ENSG00000188010|Vega:OTTHUMG00000128589 2 2p22.1 MORN repeat containing 2 protein-coding MORN2 MORN repeat containing 2 O MORN motif protein in testis|MORN repeat-containing protein 2|protein containing single MORN motif in testis 20121230 -9606 729968 LOC729968 - - - 2 2q36.3 uncharacterized LOC729968 unknown - - - - 20121221 -9606 729970 LOC729970 - - - 1 1p21.3 hCG2028352-like miscRNA - - - - 20121230 -9606 729973 LOC729973 - - - 1 1p36.11 uncharacterized LOC729973 pseudo - - - - 20121230 -9606 729974 LOC729974 - - - 19 19q13.42 ret finger protein-like 4A-like protein-coding - - - - 20121209 -9606 729975 FLJ30403 - - - 19 19q13.41 uncharacterized LOC729975 miscRNA - - - - 20121230 -9606 729978 LOC729978 - - - 16 16p13.13 nuclear pore complex interacting protein pseudogene pseudo - - - - 20121230 -9606 729987 LOC729987 - - - 1 1p21.3 uncharacterized LOC729987 miscRNA - - - - 20121230 -9606 729991 MEF2BNB - - HGNC:37247|Ensembl:ENSG00000254901|Vega:OTTHUMG00000166546 19 19p13.11 MEF2B neighbor protein-coding MEF2BNB MEF2B neighbor O MEF2B neighbor gene protein|protein MEF2BNB 20121230 -9606 729992 ST13P1 - - HGNC:38715 2 2p25.1 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 1 pseudo ST13P1 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 1 O - 20121230 -9606 729993 SHISA9 - CKAMP44 HGNC:37231|MIM:613346|Ensembl:ENSG00000237515|Vega:OTTHUMG00000154258 16 16p13.12 shisa homolog 9 (Xenopus laevis) protein-coding SHISA9 shisa homolog 9 (Xenopus laevis) O cystine-knot AMPAR modulating protein|protein shisa-9 20121230 -9606 729995 LOC729995 hCG_1817208 - - 6 6q27 hCG1817208 unknown - - - - 20121230 -9606 729998 LOC729998 - - - 7 7q33 eukaryotic translation elongation factor 1 gamma pseudogene pseudo - - - - 20121230 -9606 729999 LOC729999 - - - 19 19q13.43 glycerol-3-phosphate dehydrogenase 2 (mitochondrial) pseudogene pseudo - - - - 20121230 -9606 730005 SEC14L6 - - HGNC:40047|Ensembl:ENSG00000214491|Vega:OTTHUMG00000151267 22 22q12.2 SEC14-like 6 (S. cerevisiae) protein-coding SEC14L6 SEC14-like 6 (S. cerevisiae) O putative SEC14-like protein 6 20121230 -9606 730010 BRI3P1 - - HGNC:33533 1 1p21.2 brain protein I3 pseudogene 1 pseudo BRI3P1 brain protein I3 pseudogene 1 O - 20121230 -9606 730013 ABCC6P2 - - HGNC:33353 16 16p13.11 ATP-binding cassette, sub-family C, member 6 pseudogene 2 pseudo ABCC6P2 ATP-binding cassette, sub-family C, member 6 pseudogene 2 O - 20121230 -9606 730016 QRSL1P1 - - HGNC:43667 1 1q24.2 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 pseudogene 1 pseudo QRSL1P1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 pseudogene 1 O - 20121230 -9606 730020 LOC730020 - - - 7 7p15.3 uncharacterized LOC730020 unknown - - - - 20120511 -9606 730021 LOC730021 - - - 3 3q25.1 eukaryotic translation initiation factor 3, subunit J pseudogene pseudo - - - - 20121230 -9606 730023 KRT8P13 - - HGNC:33365 3 3q26.2 keratin 8 pseudogene 13 pseudo KRT8P13 keratin 8 pseudogene 13 O - 20121230 -9606 730029 RPSAP19 RP11-556K13.1 RPSA_2_81 HGNC:36508 1 1p21.1 ribosomal protein SA pseudogene 19 pseudo RPSAP19 ribosomal protein SA pseudogene 19 O - 20121230 -9606 730041 RHOQP2 - - HGNC:37836 2 2q21.1 ras homolog family member Q pseudogene 2 pseudo RHOQP2 ras homolog family member Q pseudogene 2 O - 20121230 -9606 730043 LOC730043 - - - 2 2p21 uncharacterized LOC730043 pseudo - - - - 20121230 -9606 730051 ZNF814 - - HGNC:33258|Ensembl:ENSG00000204514 19 19q13.43 zinc finger protein 814 protein-coding ZNF814 zinc finger protein 814 O putative uncharacterized zinc finger protein 814 20121230 -9606 730052 UBE2V1P2 - - HGNC:32648 3 3q26.31 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 2 pseudo UBE2V1P2 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 2 O - 20121230 -9606 730058 LOC730058 - - - 15 15q24.2 UPF0621 protein C-like protein-coding - - - Putative UPF0621 protein C 20121230 -9606 730061 RPL34P33 - RPL34_18_1640 HGNC:36666 19 19p12 ribosomal protein L34 pseudogene 33 pseudo RPL34P33 ribosomal protein L34 pseudogene 33 O - 20121230 -9606 730066 VN1R103P - - HGNC:37426 19 19q13.42 vomeronasal 1 receptor 103 pseudogene pseudo VN1R103P vomeronasal 1 receptor 103 pseudogene O - 20121230 -9606 730069 LOC730069 - - - 2 2q37.1 nuclear receptor binding factor 2 pseudogene pseudo - - - - 20121230 -9606 730070 RPL26P11 - RPL26_5_125 HGNC:35768 1 1q25.1 ribosomal protein L26 pseudogene 11 pseudo RPL26P11 ribosomal protein L26 pseudogene 11 O - 20121230 -9606 730076 LOC730076 - - - 2 2q21.2 zinc finger domain containing pseudogene pseudo - - - - 20121230 -9606 730081 LOC730081 - - - 1 1p21.2 uncharacterized LOC730081 unknown - - - - 20121230 -9606 730086 ALG1L15P - - HGNC:44384 3 3q25.31 asparagine-linked glycosylation 1-like 15, pseudogene pseudo ALG1L15P asparagine-linked glycosylation 1-like 15, pseudogene O - 20121230 -9606 730087 ZNF726 HC5121 - HGNC:32462|Ensembl:ENSG00000213967|Vega:OTTHUMG00000167681 19 19p12 zinc finger protein 726 protein-coding ZNF726 zinc finger protein 726 O - 20121230 -9606 730091 LOC730091 - - - 3 3q25.31 uncharacterized LOC730091 miscRNA - - - - 20121230 -9606 730092 RRN3P1 - - HGNC:30548|HPRD:14301 16 16p12.2 RNA polymerase I transcription factor homolog (S. cerevisiae) pseudogene 1 pseudo RRN3P1 RNA polymerase I transcription factor homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 730094 C16orf52 - - HGNC:27087|Ensembl:ENSG00000185716|Vega:OTTHUMG00000131587 16 16p12.2 chromosome 16 open reading frame 52 protein-coding C16orf52 chromosome 16 open reading frame 52 O uncharacterized protein C16orf52 20121230 -9606 730098 LOC730098 - - - 9 9p13.3 uncharacterized LOC730098 unknown - - - - 20121230 -9606 730100 LOC730100 - - - 2 2p16.3 uncharacterized LOC730100 unknown - - - - 20120815 -9606 730101 LOC730101 - - - 6 6p12.2 uncharacterized LOC730101 miscRNA - - - - 20121230 -9606 730102 LOC730102 - - - 1 1q25.2 quinone oxidoreductase-like protein 2 pseudogene pseudo - - - - 20121230 -9606 730109 LOC730109 - - - 3 3q25.33 uncharacterized LOC730109 protein-coding - - - - 20120511 -9606 730110 LOC730110 - - - 9 9p13.3 zinc finger protein 492 pseudogene pseudo - - - - 20121230 -9606 730112 FAM166B RP11-156G14.3 - HGNC:34242|Ensembl:ENSG00000215187|Vega:OTTHUMG00000019858 9 9p13.3 family with sequence similarity 166, member B protein-coding FAM166B family with sequence similarity 166, member B O protein FAM166B 20121230 -9606 730129 LOC730129 - - - 3 3q26.1 neugrin, neurite outgrowth associated pseudogene pseudo - - - - 20121230 -9606 730130 TMEM229A tcag7.977 - HGNC:37279|Ensembl:ENSG00000234224|Vega:OTTHUMG00000154762 7 7q31.32 transmembrane protein 229A protein-coding TMEM229A transmembrane protein 229A O - 20121230 -9606 730138 PFN1P1 - - HGNC:42989 1 1q24.3 profilin 1 pseudogene 1 pseudo PFN1P1 profilin 1 pseudogene 1 O - 20121230 -9606 730139 LOC730139 - - - 3 3q27.3 uncharacterized LOC730139 unknown - - - - 20120511 -9606 730144 LOC730144 - - - 1 1q25.3 eukaryotic translation initiation factor 1 pseudogene pseudo - - - - 20121230 -9606 730152 GSTA7P - GSTAP2 HGNC:4631 6 6p12.2 glutathione S-transferase alpha 7, pseudogene pseudo GSTA7P glutathione S-transferase alpha 7, pseudogene O - 20121230 -9606 730153 LOC730153 - - - 16 16p11.2 nuclear pore complex interacting protein pseudogene pseudo - - - - 20121209 -9606 730159 LOC730159 - - - 1 1q25.1 uncharacterized LOC730159 protein-coding - - - uncharacterized protein LOC730159 20121230 -9606 730174 NAP1L4P3 - - HGNC:39738 13 13q14.2 nucleosome assembly protein 1-like 4 pseudogene 3 pseudo NAP1L4P3 nucleosome assembly protein 1-like 4 pseudogene 3 O - 20121230 -9606 730177 RPS26P16 - RPS26_3_133 HGNC:35557 1 1q25.2 ribosomal protein S26 pseudogene 16 pseudo RPS26P16 ribosomal protein S26 pseudogene 16 O - 20121230 -9606 730179 LOC730179 - - - 1 1q25.2 uncharacterized LOC730179 unknown - - - - 20120815 -9606 730180 RBBP4P3 - - HGNC:42370 6 6p11.2 retinoblastoma binding protein 4 pseudogene 3 pseudo RBBP4P3 retinoblastoma binding protein 4 pseudogene 3 O - 20121230 -9606 730183 LOC730183 - - - 16 16p11.2 uncharacterized LOC730183 protein-coding - - - uncharacterized protein LOC730183 20121230 -9606 730187 RPS10P9 - RPS10_3_235 HGNC:36451 2 2p14 ribosomal protein S10 pseudogene 9 pseudo RPS10P9 ribosomal protein S10 pseudogene 9 O - 20121230 -9606 730190 ZNF101P2 - - HGNC:44942 1 1q31.2 zinc finger protein 101 pseudogene 2 pseudo ZNF101P2 zinc finger protein 101 pseudogene 2 O - 20121230 -9606 730196 VN1R64P - - HGNC:37384 16 16p11.2 vomeronasal 1 receptor 64 pseudogene pseudo VN1R64P vomeronasal 1 receptor 64 pseudogene O - 20121230 -9606 730198 MEIS1-AS3 - - HGNC:40369 2 2p14 MEIS1 antisense RNA 3 miscRNA MEIS1-AS3 MEIS1 antisense RNA 3 O - 20121230 -9606 730202 LOC730202 - - - 14 14q32.2 uncharacterized LOC730202 unknown - - - - 20120511 -9606 730211 HSP90AA5P - HSP90Ae HGNC:32535 3 3q27.1 heat shock protein 90kDa alpha (cytosolic), class A member 5, pseudogene pseudo HSP90AA5P heat shock protein 90kDa alpha (cytosolic), class A member 5, pseudogene O - 20121230 -9606 730213 RPL5P5 - RPL5_1_139 HGNC:35564 1 1q25.3 ribosomal protein L5 pseudogene 5 pseudo RPL5P5 ribosomal protein L5 pseudogene 5 O - 20121230 -9606 730222 LOC730222 - - - 1 1q32.1 tubulin, alpha 3d pseudogene pseudo - - - - 20121230 -9606 730227 LOC730227 - - - 1 1q32.1 uncharacterized LOC730227 miscRNA - - - - 20121230 -9606 730232 EEF1A1P32 - - HGNC:37909 1 1q31.3 eukaryotic translation elongation factor 1 alpha 1 pseudogene 32 pseudo EEF1A1P32 eukaryotic translation elongation factor 1 alpha 1 pseudogene 32 O - 20121230 -9606 730234 LOC730234 - - - 7 7p12.3 uncharacterized LOC730234 pseudo - - - - 20121230 -9606 730236 LOC730236 - - - 13 13q21.32 uncharacterized LOC730236 unknown - - - - 20120726 -9606 730239 ZDHHC20P4 RP11-264M20.1 - HGNC:39776 13 13q21.33 zinc finger, DHHC-type containing 20 pseudogene 4 pseudo ZDHHC20P4 zinc finger, DHHC-type containing 20 pseudogene 4 O - 20121230 -9606 730246 LOC730246 - - - 1 1q32.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 730249 IRG1 - - HGNC:33904|Ensembl:ENSG00000102794|Vega:OTTHUMG00000017098 13 13q22.3 immunoresponsive 1 homolog (mouse) protein-coding IRG1 immunoresponsive 1 homolog (mouse) O immune-responsive gene 1 protein homolog 20121230 -9606 730255 RPL17P8 - RPL17_4_153 HGNC:35651 1 1q32.1 ribosomal protein L17 pseudogene 8 pseudo RPL17P8 ribosomal protein L17 pseudogene 8 O - 20121230 -9606 730256 LOC730256 - - - 1 1q21.1 uncharacterized LOC730256 protein-coding - - - - 20121209 -9606 730257 LOC730257 - - - 1 1q21.1 uncharacterized LOC730257 pseudo - - - - 20121209 -9606 730262 PPIAL4E - COAS2 HGNC:33997|MIM:608608 1 1q21.2 peptidylprolyl isomerase A (cyclophilin A)-like 4E protein-coding PPIAL4E peptidylprolyl isomerase A (cyclophilin A)-like 4E O - 20121230 -9606 730268 LOC730268 - - - 2 2p11.2 anaphase-promoting complex subunit 1-like protein-coding - - - - 20121209 -9606 730291 ZNF735 - - HGNC:32466 7 7q11.21 zinc finger protein 735 protein-coding ZNF735 zinc finger protein 735 O putative zinc finger protein 735 20121230 -9606 730338 LOC730338 - - - 7 7p12.3 uncharacterized LOC730338 unknown - - - - 20120622 -9606 730376 LOC730376 - - - 7 7p11.2 uncharacterized LOC730376 unknown - - - - 20121230 -9606 730378 LOC730378 tcag7.1293 - - 7 - uncharacterized LOC730378 unknown - - - - 20121230 -9606 730394 GTF2H2D - - HGNC:35418 5 5q13.2 general transcription factor IIH, polypeptide 2D protein-coding GTF2H2D general transcription factor IIH, polypeptide 2D O general transcription factor IIH polypeptide 2-like protein|general transcription factor IIH subunit 2-like protein 20121222 -9606 730441 LOC730441 - - - 7 7q34 trypsin X3 pseudogene pseudo - - - - 20120726 -9606 730535 LOC730535 - - - 12 - cell division cycle protein 27 homolog pseudo - - - - 20121102 -9606 730647 HINT1P1 tcag7.1217 HINTP1 HGNC:18467 7 7q34 histidine triad nucleotide binding protein 1 pseudogene 1 pseudo HINT1P1 histidine triad nucleotide binding protein 1 pseudogene 1 O - 20121230 -9606 730668 LOC730668 - - - 22 22q13.31 dynein heavy chain -like pseudogene pseudo - - - - 20121230 -9606 730747 RPL14P3 - RPL14_2_522 HGNC:36638 4 4q31.1 ribosomal protein L14 pseudogene 3 pseudo RPL14P3 ribosomal protein L14 pseudogene 3 O - 20121230 -9606 730755 KRTAP2-3 hCG_1749898 KAP2.3|KRTAP2.3 HGNC:18906|Ensembl:ENSG00000212724|Vega:OTTHUMG00000133655 17 17q21.2 keratin associated protein 2-3 protein-coding KRTAP2-3 keratin associated protein 2-3 O high sulfur keratin-associated protein 2.4|keratin-associated protein 2-3|keratin-associated protein 2.3 20121230 -9606 730792 LOC730792 - - - X Xq21.2 SWI5-dependent recombination repair 1 pseudogene pseudo - - - - 20121230 -9606 730811 LOC730811 - - - 2 2p25.3 uncharacterized LOC730811 miscRNA - - - - 20121230 -9606 730861 RPS3AP29 - RPS3A_10_823 HGNC:35531 7 7q21.3 ribosomal protein S3a pseudogene 29 pseudo RPS3AP29 ribosomal protein S3a pseudogene 29 O - 20121230 -9606 730888 DEPDC1P1 - - HGNC:31125 15 15q13.3 DEP domain containing 1 pseudogene 1 pseudo DEPDC1P1 DEP domain containing 1 pseudogene 1 O - 20121230 -9606 730909 LOC730909 - - - 15 15q13.2 uncharacterized LOC730909 unknown - - - - 20120710 -9606 730961 LOC730961 - - - 5 - uncharacterized LOC730961 unknown - - - - 20121018 -9606 730971 FLJ36777 - - - 4 - uncharacterized LOC730971 miscRNA - - - - 20121230 -9606 730974 LOC730974 - - - 5 5p12 slowmo homolog 2 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 730978 CICP5 - - HGNC:37754 1 1q42.11 capicua homolog (Drosophila) pseudogene 5 pseudo CICP5 capicua homolog (Drosophila) pseudogene 5 O - 20121230 -9606 730993 RPS3AP39 - RPS3A_18_1114 HGNC:35490 11 11p15.4 ribosomal protein S3a pseudogene 39 pseudo RPS3AP39 ribosomal protein S3a pseudogene 39 O - 20121230 -9606 731075 LOC731075 tcag7.1227 - - 7 7q36.1 uncharacterized LOC731075 protein-coding - - - - 20120511 -9606 731157 LOC731157 - - - 5 5q14.3 uncharacterized LOC731157 pseudo - - - - 20121209 -9606 731220 RFX8 hCG_1645516 - HGNC:37253|Ensembl:ENSG00000196460|Vega:OTTHUMG00000130693 2 2q11.2 RFX family member 8, lacking RFX DNA binding domain protein-coding RFX8 RFX family member 8, lacking RFX DNA binding domain O DNA-binding protein RFX8|RFX gene family member 8, lacking RFX DNA binding domain|regulatory factor X, 8 20121230 -9606 731223 LOC731223 - - - 14 14q24.3 uncharacterized LOC731223 miscRNA - - - - 20121230 -9606 731275 LOC731275 - - - 1 1q43 uncharacterized LOC731275 miscRNA - - - - 20121230 -9606 731282 LOC731282 - - - 4 4q22.1 uncharacterized LOC731282 protein-coding - - - - 20121209 -9606 731308 DYNLL1P2 - DNCL1P2 HGNC:20724 14 14q31.1 dynein, light chain, LC8-type 1 pseudogene 2 pseudo DYNLL1P2 dynein, light chain, LC8-type 1 pseudogene 2 O - 20121230 -9606 731424 LOC731424 - - - 4 - uncharacterized LOC731424 miscRNA - - - - 20121230 -9606 731467 LOC731467 RP11-255A11.3 - - 9 - uncharacterized LOC731467 protein-coding - - - - 20120710 -9606 731605 LOC731605 - - - 16 - bcl-2-associated transcription factor 1-like pseudo - - - - 20121102 -9606 731631 LOC731631 - - - 7 7p11.2 putative uncharacterized protein FLJ44672-like pseudo - - - - 20121230 -9606 731642 RPL18AP9 - - - 3 3p22.1-p21.33 ribosomal protein L18a pseudogene pseudo - - - - 20121230 -9606 731656 LOC731656 - - - 1 - uncharacterized LOC731656 miscRNA - - - - 20121230 -9606 731688 RPL21P120 - RPL21_57_1527 HGNC:35743 17 17p11.2 ribosomal protein L21 pseudogene 120 pseudo RPL21P120 ribosomal protein L21 pseudogene 120 O - 20121230 -9606 731716 PRKRAP1 - - HGNC:33447 6 - protein kinase, interferon-inducible double stranded RNA dependent activator pseudogene 1 pseudo PRKRAP1 protein kinase, interferon-inducible double stranded RNA dependent activator pseudogene 1 O - 20121230 -9606 731741 RPL32P12 - RPL32_4_459 HGNC:36600 4 4p15.33 ribosomal protein L32 pseudogene 12 pseudo RPL32P12 ribosomal protein L32 pseudogene 12 O - 20121230 -9606 731755 LOC731755 - - - 3 3q23 eukaryotic translation initiation factor 2-alpha kinase 1 pseudogene pseudo - - - - 20121230 -9606 731779 LOC731779 - - - 8 8q24.3 uncharacterized LOC731779 miscRNA - - - - 20121230 -9606 731789 LINC00202-2 - - HGNC:44917 10 10p12.1 long intergenic non-protein coding RNA 202-2 miscRNA LINC00202-2 long intergenic non-protein coding RNA 202-2 O - 20121230 -9606 731932 LOC731932 - - - 13 13q14.13 uncharacterized LOC731932 protein-coding - - - - 20121209 -9606 731996 LOC731996 RP11-175B12.2 - - 13 - uncharacterized LOC731996 protein-coding - - - - 20120318 -9606 732199 RPL29P21 - RPL29_9_1124 HGNC:36322 11 11p15.1 ribosomal protein L29 pseudogene 21 pseudo RPL29P21 ribosomal protein L29 pseudogene 21 O - 20121230 -9606 732210 LOC732210 - - - 18 18p11.21 uncharacterized LOC732210 unknown - - - - 20120710 -9606 732226 LOC732226 - - - 21 21q22.2 uncharacterized LOC732226 unknown - - - - 20120511 -9606 732229 LOC732229 - - - 19 19q13.2 AN1-type zinc finger protein 5-like pseudo - - - - 20121209 -9606 732253 TDRG1 - LINC00532 HGNC:43642 6 6p21.2 testis development related 1 (non-protein coding) miscRNA TDRG1 testis development related 1 (non-protein coding) O - 20121230 -9606 732265 LOC732265 - - - 15 - COMM domain-containing protein 4-like protein-coding - - - - 20121209 -9606 732272 LOC732272 - - - - - uncharacterized LOC732272 unknown - - - - 20120622 -9606 732275 LOC732275 - - - 16 16q24.1 uncharacterized LOC732275 miscRNA - - - - 20121230 -9606 732360 LOC732360 - - - 12 - G/T mismatch-specific thymine DNA glycosylase-like pseudo - - - - 20121102 -9606 732448 LOC732448 - - - 18 18p11.21 coiled-coil domain containing 58 pseudogene pseudo - - - - 20121230 -9606 732538 LOC732538 - - - 17 17q24.2 F-box only protein 36 pseudogene pseudo - - - - 20121230 -9606 735301 SNHG9 - NCRNA00062 HGNC:33102 16 16p13.3 small nucleolar RNA host gene 9 (non-protein coding) miscRNA SNHG9 small nucleolar RNA host gene 9 (non-protein coding) O - 20121230 -9606 751071 METTL12 - U99HG HGNC:33113|Ensembl:ENSG00000214756|Vega:OTTHUMG00000167545 11 11q12.3 methyltransferase like 12 protein-coding METTL12 methyltransferase like 12 O Putative methyltransferase LOC751071, mitochondrial|methyltransferase-like protein 12, mitochondrial 20121230 -9606 751580 LINC00106 - CXYorf8|NCRNA00106 HGNC:31843|Vega:OTTHUMG00000021061 X|Y Xp22.33; Yp11.32 long intergenic non-protein coding RNA 106 miscRNA LINC00106 long intergenic non-protein coding RNA 106 O - 20121023 -9606 751599 TPM3P7 - - HGNC:39170 2 2p24.1 tropomyosin 3 pseudogene 7 pseudo TPM3P7 tropomyosin 3 pseudogene 7 O - 20121230 -9606 751602 LOC751602 - - - 10 10q25.1 tropomyosin 3 pseudogene pseudo - - - - 20121230 -9606 751603 LOC751603 - - - 15 15q14 tropomyosin 3 pseudogene pseudo - - - - 20121230 -9606 751609 DFNB68 - - HGNC:21322|MIM:610419 19 19p13.2 deafness, autosomal recessive 68 unknown DFNB68 deafness, autosomal recessive 68 O - 20120318 -9606 751781 GLC1L - - HGNC:33120 3 3p22-p21 glaucoma 1, open angle, L (adult-onset) unknown GLC1L glaucoma 1, open angle, L (adult-onset) O - 20120318 -9606 751782 DFNB70 - - HGNC:33103 - - deafness, autosomal recessive 70 unknown DFNB70 deafness, autosomal recessive 70 O - 20120318 -9606 751783 DFNB69 - - HGNC:33121 - - deafness, autosomal recessive 69 unknown DFNB69 deafness, autosomal recessive 69 O - 20120318 -9606 751798 AUNX1 - DFNX5 HGNC:31916|MIM:300614 X - auditory neuropathy, X-linked recessive 1 unknown AUNX1 auditory neuropathy, X-linked recessive 1 O - 20120622 -9606 751816 DSERG1 - - - 9 - Down syndrome encephalopathy related protein 1 unknown - - - - 20121230 -9606 751837 LOC751837 - - - 3 3q26.1 WD repeat domain 57 (U5 snRNP specific) pseudogene pseudo - - - - 20121230 -9606 752014 CEMP1 - CP-23|CP23 HGNC:32553|MIM:611113|Ensembl:ENSG00000205923|Vega:OTTHUMG00000177160 16 16p13.3 cementum protein 1 protein-coding CEMP1 cementum protein 1 O cementoblastoma-derived protein 1|cementum protein 23|cementum protein-23 20121230 -9606 767557 SYS1-DBNDD2 hCG_2019108 C20orf169-DBNDD2 HGNC:33535|Ensembl:ENSG00000254806|Vega:OTTHUMG00000166214 20 20q13.12 SYS1-DBNDD2 readthrough (non-protein coding) miscRNA SYS1-DBNDD2 SYS1-DBNDD2 readthrough (non-protein coding) O - 20121230 -9606 767558 LUZP6 - MPD6|MTPNUT HGNC:33955|MIM:611050 7 7q33 leucine zipper protein 6 protein-coding LUZP6 leucine zipper protein 6 O myeloproliferative disease-associated 6 kDa antigen|myeloproliferative disease-associated SEREX antigen|myeloproliferative disease-associated antigen, 6-kD|myotrophin 3'UTR transcript 20121230 -9606 767561 SNORD113-1 - 14q(I-1) HGNC:32980|MIM:613650 14 14q32.31 small nucleolar RNA, C/D box 113-1 snoRNA SNORD113-1 small nucleolar RNA, C/D box 113-1 O - 20121230 -9606 767562 SNORD113-2 - 14q(I-2) HGNC:32981 14 14q32.31 small nucleolar RNA, C/D box 113-2 snoRNA SNORD113-2 small nucleolar RNA, C/D box 113-2 O - 20121230 -9606 767563 SNORD113-3 - 14q(I-3) HGNC:32982 14 14q32.31 small nucleolar RNA, C/D box 113-3 snoRNA SNORD113-3 small nucleolar RNA, C/D box 113-3 O - 20121230 -9606 767564 SNORD113-4 - 14q(I-4) HGNC:32983 14 14q32.31 small nucleolar RNA, C/D box 113-4 snoRNA SNORD113-4 small nucleolar RNA, C/D box 113-4 O - 20121230 -9606 767565 SNORD113-5 - 14q(I-5) HGNC:32984 14 14q32.31 small nucleolar RNA, C/D box 113-5 snoRNA SNORD113-5 small nucleolar RNA, C/D box 113-5 O - 20121230 -9606 767566 SNORD113-6 - 14q(I-6) HGNC:32985 14 14q32.31 small nucleolar RNA, C/D box 113-6 snoRNA SNORD113-6 small nucleolar RNA, C/D box 113-6 O - 20121230 -9606 767567 SNORD113-7 - 14q(I-7) HGNC:32986 14 14q32.31 small nucleolar RNA, C/D box 113-7 snoRNA SNORD113-7 small nucleolar RNA, C/D box 113-7 O - 20121230 -9606 767568 SNORD113-8 - 14q(I-8) HGNC:32987 14 14q32.31 small nucleolar RNA, C/D box 113-8 snoRNA SNORD113-8 small nucleolar RNA, C/D box 113-8 O - 20121230 -9606 767569 SNORD113-9 - 14q(I-9) HGNC:32988 14 14q32.31 small nucleolar RNA, C/D box 113-9 snoRNA SNORD113-9 small nucleolar RNA, C/D box 113-9 O - 20121230 -9606 767575 MRX71 - - HGNC:13367 X Xq24-q27 mental retardation, X-linked 71 unknown MRX71 mental retardation, X-linked 71 O - 20120318 -9606 767577 SNORD114-1 - 14q(II-1) HGNC:32989|MIM:613651 14 14q32 small nucleolar RNA, C/D box 114-1 snoRNA SNORD114-1 small nucleolar RNA, C/D box 114-1 O - 20121230 -9606 767578 SNORD114-2 - 14q(II-2) HGNC:32990 14 14q32 small nucleolar RNA, C/D box 114-2 snoRNA SNORD114-2 small nucleolar RNA, C/D box 114-2 O - 20121230 -9606 767579 SNORD114-3 - 14q(II-3) HGNC:32991 14 14q32 small nucleolar RNA, C/D box 114-3 snoRNA SNORD114-3 small nucleolar RNA, C/D box 114-3 O - 20121230 -9606 767580 SNORD114-4 - 14q(II-4) HGNC:32992 14 14q32 small nucleolar RNA, C/D box 114-4 snoRNA SNORD114-4 small nucleolar RNA, C/D box 114-4 O - 20121230 -9606 767581 SNORD114-5 - 14q(II-5) HGNC:32993 14 14q32 small nucleolar RNA, C/D box 114-5 snoRNA SNORD114-5 small nucleolar RNA, C/D box 114-5 O - 20121230 -9606 767582 SNORD114-6 - 14q(II-6) HGNC:32994 14 14q32 small nucleolar RNA, C/D box 114-6 snoRNA SNORD114-6 small nucleolar RNA, C/D box 114-6 O - 20121230 -9606 767583 SNORD114-7 - 14q(II-7) HGNC:32995 14 14q32 small nucleolar RNA, C/D box 114-7 snoRNA SNORD114-7 small nucleolar RNA, C/D box 114-7 O - 20121230 -9606 767584 SNORD114-8 - 14q(II-8) HGNC:32996 14 14q32 small nucleolar RNA, C/D box 114-8 snoRNA SNORD114-8 small nucleolar RNA, C/D box 114-8 O - 20121230 -9606 767585 SNORD114-9 - 14q(II-9) HGNC:32997 14 14q32 small nucleolar RNA, C/D box 114-9 snoRNA SNORD114-9 small nucleolar RNA, C/D box 114-9 O - 20121230 -9606 767588 SNORD114-10 - 14q(II-10) HGNC:32998 14 14q32 small nucleolar RNA, C/D box 114-10 snoRNA SNORD114-10 small nucleolar RNA, C/D box 114-10 O - 20121230 -9606 767589 SNORD114-11 - 14q(II-11) HGNC:32999 14 14q32 small nucleolar RNA, C/D box 114-11 snoRNA SNORD114-11 small nucleolar RNA, C/D box 114-11 O - 20121230 -9606 767590 SNORD114-12 - 14q(II-12) HGNC:33000 14 14q32 small nucleolar RNA, C/D box 114-12 snoRNA SNORD114-12 small nucleolar RNA, C/D box 114-12 O - 20121230 -9606 767591 SNORD114-13 - 14q(II-13) HGNC:33001 14 14q32 small nucleolar RNA, C/D box 114-13 snoRNA SNORD114-13 small nucleolar RNA, C/D box 114-13 O - 20121230 -9606 767592 SNORD114-14 - 14q(II-14) HGNC:33002 14 14q32 small nucleolar RNA, C/D box 114-14 snoRNA SNORD114-14 small nucleolar RNA, C/D box 114-14 O - 20121230 -9606 767593 SNORD114-15 - 14q(II-15) HGNC:33003 14 14q32 small nucleolar RNA, C/D box 114-15 snoRNA SNORD114-15 small nucleolar RNA, C/D box 114-15 O - 20121230 -9606 767594 SNORD114-16 - 14q(II-16) HGNC:33004 14 14q32 small nucleolar RNA, C/D box 114-16 snoRNA SNORD114-16 small nucleolar RNA, C/D box 114-16 O - 20121230 -9606 767595 SNORD114-17 - 14q(II-17) HGNC:33005 14 14q32 small nucleolar RNA, C/D box 114-17 snoRNA SNORD114-17 small nucleolar RNA, C/D box 114-17 O - 20121230 -9606 767596 SNORD114-18 - 14q(II-18) HGNC:33006 14 14q32 small nucleolar RNA, C/D box 114-18 snoRNA SNORD114-18 small nucleolar RNA, C/D box 114-18 O - 20121230 -9606 767597 SNORD114-19 - 14q(II-19) HGNC:33007 14 14q32 small nucleolar RNA, C/D box 114-19 snoRNA SNORD114-19 small nucleolar RNA, C/D box 114-19 O - 20121230 -9606 767598 SNORD114-20 - 14q(II-20) HGNC:33008 14 14q32 small nucleolar RNA, C/D box 114-20 snoRNA SNORD114-20 small nucleolar RNA, C/D box 114-20 O - 20121230 -9606 767599 SNORD114-21 - 14q(II-21) HGNC:33009 14 14q32 small nucleolar RNA, C/D box 114-21 snoRNA SNORD114-21 small nucleolar RNA, C/D box 114-21 O - 20121230 -9606 767600 SNORD114-22 - 14q(II-22) HGNC:33010 14 14q32 small nucleolar RNA, C/D box 114-22 snoRNA SNORD114-22 small nucleolar RNA, C/D box 114-22 O - 20121230 -9606 767603 SNORD114-23 - 14q(II-23) HGNC:33011 14 14q32 small nucleolar RNA, C/D box 114-23 snoRNA SNORD114-23 small nucleolar RNA, C/D box 114-23 O - 20121230 -9606 767604 SNORD114-24 - 14q(II-24) HGNC:33012 14 14q32 small nucleolar RNA, C/D box 114-24 snoRNA SNORD114-24 small nucleolar RNA, C/D box 114-24 O - 20121230 -9606 767605 SNORD114-25 - 14q(II-25) HGNC:33013 14 14q32 small nucleolar RNA, C/D box 114-25 snoRNA SNORD114-25 small nucleolar RNA, C/D box 114-25 O - 20121230 -9606 767606 SNORD114-26 - 14q(II-26) HGNC:33014 14 14q32 small nucleolar RNA, C/D box 114-26 snoRNA SNORD114-26 small nucleolar RNA, C/D box 114-26 O - 20121230 -9606 767608 SNORD114-27 - 14q(II-27) HGNC:33015 14 14q32 small nucleolar RNA, C/D box 114-27 snoRNA SNORD114-27 small nucleolar RNA, C/D box 114-27 O - 20121230 -9606 767609 SNORD114-28 - 14q(II-28) HGNC:33016 14 14q32 small nucleolar RNA, C/D box 114-28 snoRNA SNORD114-28 small nucleolar RNA, C/D box 114-28 O - 20121230 -9606 767610 SNORD114-29 - 14q(II-29) HGNC:33017 14 14q32 small nucleolar RNA, C/D box 114-29 snoRNA SNORD114-29 small nucleolar RNA, C/D box 114-29 O - 20121230 -9606 767611 SNORD114-30 - 14q(II-30) HGNC:33018 14 14q32 small nucleolar RNA, C/D box 114-30 snoRNA SNORD114-30 small nucleolar RNA, C/D box 114-30 O - 20121230 -9606 767612 SNORD114-31 - 14q(II-31) HGNC:33019 14 14q32 small nucleolar RNA, C/D box 114-31 snoRNA SNORD114-31 small nucleolar RNA, C/D box 114-31 O - 20121230 -9606 767811 H2BFXP - - HGNC:25757 X Xq22.2 H2B histone family, member X, pseudogene pseudo H2BFXP H2B histone family, member X, pseudogene O - 20121230 -9606 767846 PFN1P2 - C1orf152|COAS3 HGNC:24298|MIM:608609 1 1q21 profilin 1 pseudogene 2 pseudo PFN1P2 profilin 1 pseudogene 2 O - 20121230 -9606 767850 PFN1P9 - - HGNC:42991 1 1p12 profilin 1 pseudogene 9 pseudo PFN1P9 profilin 1 pseudogene 9 O - 20121230 -9606 767851 PFN1P4 - - HGNC:42992 1 1q21.1 profilin 1 pseudogene 4 pseudo PFN1P4 profilin 1 pseudogene 4 O - 20121230 -9606 767852 PFN1P5 - - HGNC:42990 1 1q21.1 profilin 1 pseudogene 5 pseudo PFN1P5 profilin 1 pseudogene 5 O - 20121209 -9606 767853 PFN1P10 - - HGNC:42985 1 1p36.12 profilin 1 pseudogene 10 pseudo PFN1P10 profilin 1 pseudogene 10 O - 20121230 -9606 767854 PFN1P7 - - HGNC:42993 1 1q21.1 profilin 1 pseudogene 7 pseudo PFN1P7 profilin 1 pseudogene 7 O - 20121230 -9606 768086 LOC768086 - - - 11 11q23.3 trehalase (brush-border membrane glycoprotein) pseudogene pseudo - - - - 20121230 -9606 768096 HAR1A - HAR1F|LINC00064|NCRNA00064 HGNC:33117|MIM:610556 20 20q13.33 highly accelerated region 1A (non-protein coding) miscRNA HAR1A highly accelerated region 1A (non-protein coding) O - 20121230 -9606 768097 HAR1B - HAR1R|LINC00065|NCRNA00065 HGNC:33118|MIM:610557 20 20q13.33 highly accelerated region 1B (non-protein coding) miscRNA HAR1B highly accelerated region 1B (non-protein coding) O - 20121230 -9606 768206 PRCD - RP36 HGNC:32528|MIM:610598|Ensembl:ENSG00000214140|Vega:OTTHUMG00000132200 17 17q25.1 progressive rod-cone degeneration protein-coding PRCD progressive rod-cone degeneration O progressive rod-cone degeneration protein 20121230 -9606 768211 RELL1 PSEC0162 - HGNC:27379|MIM:611212|Ensembl:ENSG00000181826|Vega:OTTHUMG00000160389 4 4p14 RELT-like 1 protein-coding RELL1 RELT-like 1 O RELT-like protein 1|receptor expressed in lymphoid tissues like 1|tmp_locus_29 20121230 -9606 768212 MIR758 - MIRN758|hsa-mir-758 HGNC:33133|miRBase:MI0003757 14 14q32.31 microRNA 758 miscRNA MIR758 microRNA 758 O - 20121230 -9606 768213 MIR671 - MIRN671|hsa-mir-671 HGNC:33134|miRBase:MI0003760 7 7q36.1 microRNA 671 miscRNA MIR671 microRNA 671 O - 20121230 -9606 768214 MIR668 - MIRN668|hsa-mir-668 HGNC:33135|miRBase:MI0003761 14 14q32.31 microRNA 668 miscRNA MIR668 microRNA 668 O - 20121230 -9606 768215 MIR767 - MIRN767|hsa-mir-767 HGNC:33136|miRBase:MI0003763 X Xq28 microRNA 767 miscRNA MIR767 microRNA 767 O - 20121230 -9606 768216 MIR454 - MIRN454|hsa-mir-454 HGNC:33137|miRBase:MI0003820 17 17q22 microRNA 454 miscRNA MIR454 microRNA 454 O - 20121230 -9606 768217 MIR769 - MIRN769|hsa-mir-769 HGNC:33138|miRBase:MI0003834 19 19q13.32 microRNA 769 miscRNA MIR769 microRNA 769 O - 20121230 -9606 768218 MIR766 - MIRN766|hsa-mir-766 HGNC:33139|miRBase:MI0003836 X Xq24 microRNA 766 miscRNA MIR766 microRNA 766 O - 20121230 -9606 768219 MIR802 - MIRN802|hsa-mir-802 HGNC:33140|miRBase:MI0003906 21 21q22.12 microRNA 802 miscRNA MIR802 microRNA 802 O - 20121230 -9606 768220 MIR765 - MIRN765|hsa-mir-765 HGNC:33141|miRBase:MI0005116 1 1q23.1 microRNA 765 miscRNA MIR765 microRNA 765 O - 20121230 -9606 768222 MIR770 - MIRN770|hsa-mir-770 HGNC:33143|miRBase:MI0005118 14 14q32.2 microRNA 770 miscRNA MIR770 microRNA 770 O - 20121230 -9606 768239 PSAPL1 - - HGNC:33131|Ensembl:ENSG00000178597|Vega:OTTHUMG00000160006 4 4p16.1 prosaposin-like 1 (gene/pseudogene) protein-coding PSAPL1 prosaposin-like 1 (gene/pseudogene) O proactivator polypeptide-like 1|prosaposin-like protein 1 20121230 -9606 768328 EIF4EBP1P2 - - HGNC:44047 22 22q12 eukaryotic translation initiation factor 4E binding protein 1 pseudogene 2 pseudo EIF4EBP1P2 eukaryotic translation initiation factor 4E binding protein 1 pseudogene 2 O - 20121230 -9606 777642 RP34 - - HGNC:33161|MIM:300605 X Xq28 retinitis pigmentosa 34 (X-linked recessive) unknown RP34 retinitis pigmentosa 34 (X-linked recessive) O - 20120622 -9606 777643 GLC1M - - HGNC:33162|MIM:610535 5 5q glaucoma 1, open angle, M (juvenile-onset) unknown GLC1M glaucoma 1, open angle, M (juvenile-onset) O - 20120622 -9606 777645 GLC1N - - HGNC:33163|MIM:611274 15 15q22-q24 glaucoma 1, open angle, N (juvenile-onset) unknown GLC1N glaucoma 1, open angle, N (juvenile-onset) O - 20120318 -9606 777650 LOC777650 - - - 7 7q36.3 UBX domain protein 2B pseudogene pseudo - - - - 20121230 -9606 777774 ACTR3BP4 - - HGNC:38681 4 4q24 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 4 pseudo ACTR3BP4 ARP3 actin-related protein 3 homolog B (yeast) pseudogene 4 O - 20121230 -9606 777778 OPA6 - ROA1 HGNC:33170|MIM:258500 8 8q21.13-q22.1 optic atrophy 6 (autosomal recessive) unknown OPA6 optic atrophy 6 (autosomal recessive) O - 20120622 -9606 780529 LOC780529 - - - 13 13q31 uncharacterized LOC780529 unknown - - - - 20120508 -9606 780776 TVP23A - FAM18A|YDR084C HGNC:20398|Ensembl:ENSG00000166676|Vega:OTTHUMG00000177389 16 16p13.13 trans-golgi network vesicle protein 23 homolog A (S. cerevisiae) protein-coding TVP23A trans-golgi network vesicle protein 23 homolog A (S. cerevisiae) O family with sequence similarity 18, member A|protein FAM18A 20121230 -9606 780778 USP10P2 - - HGNC:33272 14 14q11.1 ubiquitin specific peptidase10 pseudogene 2 pseudo USP10P2 ubiquitin specific peptidase10 pseudogene 2 O - 20121230 -9606 780779 USP10P1 - - HGNC:31752 14 14q11.2 ubiquitin specific peptidase 10 pseudogene 1 pseudo USP10P1 ubiquitin specific peptidase 10 pseudogene 1 O - 20121230 -9606 780780 LOC780780 - - - 22 22q11.1 ubiquitin specific peptidase 10 pseudogene pseudo - - - - 20121209 -9606 780789 C1orf196 - - HGNC:32336 1 1p36.21 chromosome 1 open reading frame 196 protein-coding C1orf196 chromosome 1 open reading frame 196 O - 20121216 -9606 780810 PAICSP3 - - HGNC:38096 6 6q13 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 3 pseudo PAICSP3 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 3 O - 20121230 -9606 780811 PAICSP5 - - HGNC:38098 7 7q35 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 5 pseudo PAICSP5 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 5 O - 20121230 -9606 780812 PAICSP6 - - HGNC:38099 7 7q35 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 6 pseudo PAICSP6 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 6 O - 20121230 -9606 780813 PAICSP4 - - HGNC:38097 8 8p23.2 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 4 pseudo PAICSP4 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 4 O - 20121230 -9606 780814 PAICSP1 - - HGNC:8588 9 9p13 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 1 pseudo PAICSP1 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 1 O - 20121230 -9606 780815 PAICSP2 - - HGNC:8589 9 9q22 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 2 pseudo PAICSP2 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 2 O - 20121230 -9606 780816 PAICSP7 - - HGNC:38100 X Xq21 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 7 pseudo PAICSP7 phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase pseudogene 7 O - 20121230 -9606 780851 SNORD3A - RNU3|U3 HGNC:33189|MIM:180710 17 17p11.2 small nucleolar RNA, C/D box 3A snoRNA SNORD3A small nucleolar RNA, C/D box 3A O - 20121230 -9606 780852 SNORD3B-2 - U3-2B|U3b2 HGNC:33190 17 17p11.2 small nucleolar RNA, C/D box 3B-2 snoRNA SNORD3B-2 small nucleolar RNA, C/D box 3B-2 O - 20121230 -9606 780853 SNORD3C - U3-3 HGNC:33191 17 17p11.2 small nucleolar RNA, C/D box 3C snoRNA SNORD3C small nucleolar RNA, C/D box 3C O - 20121209 -9606 780854 SNORD3D - U3-4 HGNC:33192 17 17p11.2 small nucleolar RNA, C/D box 3D snoRNA SNORD3D small nucleolar RNA, C/D box 3D O - 20121230 -9606 780895 DUPC1 - - MIM:126900 16 16q11.1-q22 Dupuytren contracture 1 unknown - - - - 20120622 -9606 780896 ACTD - - MIM:142700 13 13q22 Acetabular dysplasia unknown - - - - 20120622 -9606 780897 HPP1 - FPH1|HPP|MUH HGNC:37055|MIM:145250 19 19pter-p13.1 hyperpigmentation, progressive, 1 unknown HPP1 hyperpigmentation, progressive, 1 O - 20120622 -9606 780898 AMRS - - MIM:203650 3 3q26.3-q27.3 Alopecia-mental retardation syndrome unknown - - - - 20120622 -9606 780899 DIH2 - - MIM:222400 8 8p23.1 Hernia, congenital diaphragmatic 2 unknown - - - - 20120622 -9606 780900 FGS5 - - HGNC:37735|MIM:300581 X Xq22.3 FG syndrome 5 unknown FGS5 FG syndrome 5 O - 20120622 -9606 780901 NYS5 - - MIM:300589 X - Nystagmus 5, infantile periodic alternating unknown - - - - 20120622 -9606 780903 ORW3 - HHT3 MIM:601101 5 5q31.3-q32 Osler-Rendu-Weber syndrome 3 unknown - - - - 20120622 -9606 780904 PSS - - MIM:601224 11 11p11.2 Potocki-Shaffer syndrome unknown - - - - 20120622 -9606 780905 EA3 - - MIM:606554 1 1q42 Episodic ataxia, type 3 unknown - - - - 20120622 -9606 780906 SLI3 - - MIM:607134 13 13q21 Specific language impairment QTL, 3 unknown - - - - 20120622 -9606 780908 PEE2 - - MIM:609402 2 2p25 Preeclampsia/eclampsia 2 unknown - - - - 20120622 -9606 780909 PEE3 - - MIM:609403 9 9p13 Preeclampsia/eclampsia 3 unknown - - - - 20120622 -9606 780910 PPR2 - - MIM:609572 13 13q31.3 Photoparoxysmal response 2 unknown - - - - 20120622 -9606 780911 TQDS - C10q26DEL MIM:609625 10 10q Chromosome 10q deletion syndrome unknown - - - - 20120622 -9606 780912 AD10 - - MIM:609636 7 7q36 Alzheimer disease-10 unknown - - - - 20120622 -9606 780913 EIG4 - - MIM:609750 10 10q25-q26 Epilepsy, idiopathic generalized, susceptibility to 4 unknown - - - - 20120622 -9606 780914 ZD1 - - MIM:609815 3 3p21.31 Zygodactyly 1 unknown - - - - 20120622 -9606 780915 CHNG3 - RTSH MIM:609893 15 15q25.3-q26.1 Hypothyroidism, congenital, nongoitrous, 3 unknown - - - - 20120622 -9606 780916 GINGF3 - GGF3|HGF3 MIM:609955 2 2p23.3-p22.3 Fibromatosis, gingival, 3 unknown - - - - 20120622 -9606 780917 NKCD - - MIM:609981 - - Natural killer cell deficiency, familial isolated unknown - - - - 20121201 -9606 780919 HRPT3 - - MIM:610071 2 2p14-p13.3 Hyperparathyroidism 3 unknown - - - - 20120622 -9606 780920 MPD3 - - MIM:610099 8 8p22-q11 Myopathy, distal 3 unknown - - - - 20120622 -9606 780921 KYPSC1 - - MIM:610170 5 5p13 Kyphoscoliosis 1 unknown - - - - 20120622 -9606 780922 SPD3 - - MIM:610234 14 14q11.2-q12 Synpolydactyly 3 unknown - - - - 20120622 -9606 780923 IHPS2 - - MIM:610260 16 16p13-p12 Pyloric stenosis, infantile hypertrophic, 2 unknown - - - - 20120622 -9606 780925 CHMRQ - - MIM:610185 17 17p Cerebellar hypoplasia, mental retardation, and quadrupedal locomotion unknown - - - - 20120622 -9606 790951 TRNAS4 - TRS4 HGNC:33201 6 6p22.1 transfer RNA serine 4 (anticodon AGA) tRNA TRNAS4 transfer RNA serine 4 (anticodon AGA) O - 20121230 -9606 790952 ESRG - HESRG HGNC:39079|MIM:611473 3 3p14.3|3p14.3 embryonic stem cell related (non-protein coding) miscRNA ESRG embryonic stem cell related (non-protein coding) O - 20121230 -9606 790953 TSL - - - 7 7p15.2 testis-expressed, seven-twelve, leukemia unknown - - - - 20120508 -9606 790955 C11orf83 UNQ655/PRO1286 CCDS41658.1|UNQ655 HGNC:34399|Ensembl:ENSG00000204922 11 11q12.3 chromosome 11 open reading frame 83 protein-coding C11orf83 chromosome 11 open reading frame 83 O UPF0723 protein C11orf83|VEGA:LOC790955 20121230 -9606 790966 TRNAK2 - TRK2 HGNC:33199|MIM:612996 5 5q35.3 transfer RNA lysine 2 (anticodon CUU) tRNA TRNAK2 transfer RNA lysine 2 (anticodon CUU) O - 20121230 -9606 790969 ZNF705F - - HGNC:33204 8 8p23.1 zinc finger protein 705F protein-coding ZNF705F zinc finger protein 705F O - 20121211 -9606 791082 DBIP3 - - HGNC:38517 16 16p13.3 diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein) pseudogene 3 pseudo DBIP3 diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein) pseudogene 3 O - 20121230 -9606 791085 DEL17Q21.31 - C17DELq21.31 MIM:610443 - - Microdeletion 17q21.31 syndrome unknown - - - - 20120622 -9606 791086 CTPP5 - - MIM:610634 14 14q22-q23 Cataract, posterior polar, 5 unknown - - - - 20120622 -9606 791087 HHT4 - - MIM:610655 7 7p14 Telangiectasia, hereditary hemorrhagic, type 4 unknown - - - - 20120622 -9606 791091 LOC791091 - - - X Xp11.2 ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 791092 LOC791092 - - - X Xp11.23 ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 791093 LOC791093 - - - X Xp11.23 ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 791094 LOC791094 - - - X Xp11.23 ornithine aminotransferase pseudogene pseudo - - - - 20121102 -9606 791095 LOC791095 - - - X Xp11.23 ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 791096 LOC791096 - - - X Xp11.2 ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 791097 LOC791097 - - - X Xp11.23 ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 791098 LOC791098 - - - X Xp11.23-p11.22 ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 791099 LOC791099 - - - X Xp11.22 ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 791114 PWRN1 - NCRNA00198 HGNC:33235|MIM:611215 15 15q11.2 Prader-Willi region non-protein coding RNA 1 miscRNA PWRN1 Prader-Willi region non-protein coding RNA 1 O - 20121230 -9606 791115 PWRN2 - NCRNA00199 HGNC:33236|MIM:611217 15 15q11.2 Prader-Willi region non-protein coding RNA 2 miscRNA PWRN2 Prader-Willi region non-protein coding RNA 2 O - 20121230 -9606 791121 SHFL1 - SHFLD MIM:119100 1 1q42.2-q43 Split-hand/foot malformation with long bone deficiency 1 unknown - - - - 20120622 -9606 791122 KTWS - KTS MIM:149000 8 8q22.3 Klippel-Trenaunay-Weber syndrome unknown - - - - 20120622 -9606 791123 SHFLD2 - - MIM:610685 6 6q14.1 Split-hand/foot malformation with long deficiency 2 unknown - - - - 20120622 -9606 791126 LOC791126 - - - 18 18q12.2 WDR45-like pseudogene pseudo - - - - 20121230 -9606 791226 TRNAN2 - TRN2 HGNC:33197 1 1p36.13 transfer RNA asparagine 2 (anticodon GUU) tRNA TRNAN2 transfer RNA asparagine 2 (anticodon GUU) O - 20121230 -9606 791227 TRNAN3 - TRN3 HGNC:33198 1 1q21.1 transfer RNA asparagine 3 (anticodon GUU) tRNA TRNAN3 transfer RNA asparagine 3 (anticodon GUU) O - 20121230 -9606 791228 SPG36 - - HGNC:33240|MIM:613096 12 12q23-q24 spastic paraplegia 36 (autosomal dominant) unknown SPG36 spastic paraplegia 36 (autosomal dominant) O - 20120622 -9606 791229 MACOM - - HGNC:33244|MIM:602499 2 2p23-p16 macrophthalmia, colobomatous, with microcornea unknown MACOM macrophthalmia, colobomatous, with microcornea O - 20120318 -9606 791230 TRNAV7 - HtV1|TRV7 HGNC:33246 6 6p22.1 transfer RNA valine 7 (anticodon AAC) tRNA TRNAV7 transfer RNA valine 7 (anticodon AAC) O - 20121230 -9606 791231 TRNAV8 - HtV2|TRV8 HGNC:33247 6 6p22.1 transfer RNA valine 8 (anticodon AAC) tRNA TRNAV8 transfer RNA valine 8 (anticodon AAC) O - 20121230 -9606 791232 TRNAV9 - HtV3|TRV9 HGNC:33248 5 5q35.3 transfer RNA valine 9 (anticodon CAC) tRNA TRNAV9 transfer RNA valine 9 (anticodon CAC) O - 20121209 -9606 791254 EDS8 - - MIM:130080 12 12p13 Ehlers-Danlos syndrome, type VIII unknown - - - - 20120622 -9606 791255 SPDA2 - - MIM:183840 9 9q31-q34 Spondyloarthropathy, susceptibility to, 2 unknown - - - - 20120622 -9606 100008586 GAGE12F - - HGNC:31906|MIM:300730|Ensembl:ENSG00000236362|Vega:OTTHUMG00000024147 X Xp11.23 G antigen 12F protein-coding GAGE12F G antigen 12F O GAGE-12F|g antigen 12F/G/I 20121209 -9606 100008587 RNA5-8S5 - RN5-8S1 HGNC:37660 22 22p12 RNA, 5.8S ribosomal 5 rRNA RNA5-8S5 RNA, 5.8S ribosomal 5 O - 20121209 -9606 100008588 RNA18S5 - RN18S1 HGNC:37657 22 22p12 RNA, 18S ribosomal 5 rRNA RNA18S5 RNA, 18S ribosomal 5 O - 20121230 -9606 100008589 RNA28S5 - RN28S1 HGNC:37659 22 22p12 RNA, 28S ribosomal 5 rRNA RNA28S5 RNA, 28S ribosomal 5 O - 20121230 -9606 100009601 TRNAY1 - Tyr-tRNA HGNC:33249 14 14q11.2 transfer RNA tyrosine 1 (anticodon GUA) tRNA TRNAY1 transfer RNA tyrosine 1 (anticodon GUA) O - 20121230 -9606 100009602 TRNAY2 - Tyr-tRNA HGNC:33250 14 14q11.2 transfer RNA tyrosine 2 (anticodon GUA) tRNA TRNAY2 transfer RNA tyrosine 2 (anticodon GUA) O - 20121230 -9606 100009603 TRNAA2 - - HGNC:33253 6 6p22.1 transfer RNA alanine 2 (anticodon AGC) tRNA TRNAA2 transfer RNA alanine 2 (anticodon AGC) O - 20121230 -9606 100009604 TRNAA3 - - HGNC:33254 2 2p23.3 transfer RNA alanine 3 (anticodon AGC) tRNA TRNAA3 transfer RNA alanine 3 (anticodon AGC) O - 20121230 -9606 100009605 TRNAF1 - - HGNC:33255 11 11q12.1 transfer RNA phenylalanine 1 (anticodon GAA) tRNA TRNAF1 transfer RNA phenylalanine 1 (anticodon GAA) O - 20121230 -9606 100009606 TRNAF2 - - HGNC:33259 12 12q24.31 transfer RNA phenylalanine 2 (anticodon GAA) tRNA TRNAF2 transfer RNA phenylalanine 2 (anticodon GAA) O - 20121230 -9606 100009607 TRNAH5 - - HGNC:33260 9 - transfer RNA histidine 5 (anticodon GUG) tRNA TRNAH5 transfer RNA histidine 5 (anticodon GUG) O - 20121230 -9606 100009613 ANO1-AS2 - C11orf78|NCRNA00224 HGNC:33275 11 11q13.3 ANO1 antisense RNA 2 (head to head) miscRNA ANO1-AS2 ANO1 antisense RNA 2 (head to head) O - 20121230 -9606 100009665 POU5F1P2 - - HGNC:33309 8 8q22.2 POU class 5 homeobox 1 pseudogene 2 pseudo POU5F1P2 POU class 5 homeobox 1 pseudogene 2 O - 20121230 -9606 100009667 POU5F1P5 RP11-474D14.3 - HGNC:33311 10 10q21.3 POU class 5 homeobox 1 pseudogene 5 pseudo POU5F1P5 POU class 5 homeobox 1 pseudogene 5 O - 20121230 -9606 100009668 POU5F1P6 - - HGNC:33312 3 3q21.3 POU class 5 homeobox 1 pseudogene 6 pseudo POU5F1P6 POU class 5 homeobox 1 pseudogene 6 O - 20121230 -9606 100009669 POU5F1P7 - - HGNC:33313 3 3q12.1 POU class 5 homeobox 1 pseudogene 7 pseudo POU5F1P7 POU class 5 homeobox 1 pseudogene 7 O - 20121230 -9606 100009670 POU5F1P8 - - HGNC:33314 17 17q25.3 POU class 5 homeobox 1 pseudogene 8 pseudo POU5F1P8 POU class 5 homeobox 1 pseudogene 8 O - 20120318 -9606 100009675 MRT4 - - HGNC:33243|MIM:611107 1 1p21.3-p13.3 mental retardation, non-syndromic, autosomal recessive, 4 unknown MRT4 mental retardation, non-syndromic, autosomal recessive, 4 O - 20120622 -9606 100009676 LOC100009676 - - - 3 3q12.3 uncharacterized LOC100009676 miscRNA - - - - 20121230 -9606 100033391 VN2R2P - - HGNC:33208 5 5q35.3 vomeronasal 2 receptor 2 pseudogene pseudo VN2R2P vomeronasal 2 receptor 2 pseudogene O - 20121230 -9606 100033392 VN2R3P - - HGNC:33209 9 9p13.1 vomeronasal 2 receptor 3 pseudogene pseudo VN2R3P vomeronasal 2 receptor 3 pseudogene O - 20121230 -9606 100033393 VN2R4P - - HGNC:33210 9 9p13.1 vomeronasal 2 receptor 4 pseudogene pseudo VN2R4P vomeronasal 2 receptor 4 pseudogene O - 20121209 -9606 100033394 VN2R5P - VN2R8P HGNC:33211 9 9p12 vomeronasal 2 receptor 5 pseudogene pseudo VN2R5P vomeronasal 2 receptor 5 pseudogene O - 20121209 -9606 100033395 VN2R6P - - HGNC:33212 9 9p11.1 vomeronasal 2 receptor 6 pseudogene pseudo VN2R6P vomeronasal 2 receptor 6 pseudogene O - 20121209 -9606 100033396 VN2R7P - - HGNC:33213 9 9q12 vomeronasal 2 receptor 7 pseudogene pseudo VN2R7P vomeronasal 2 receptor 7 pseudogene O - 20121209 -9606 100033398 VN2R10P - - HGNC:33216 16 16q23.1 vomeronasal 2 receptor 10 pseudogene pseudo VN2R10P vomeronasal 2 receptor 10 pseudogene O - 20121230 -9606 100033399 VN2R11P - - HGNC:33217 19 19p13.3 vomeronasal 2 receptor 11 pseudogene pseudo VN2R11P vomeronasal 2 receptor 11 pseudogene O - 20121230 -9606 100033400 VN2R12P - - HGNC:33218 19 19p13.2 vomeronasal 2 receptor 12 pseudogene pseudo VN2R12P vomeronasal 2 receptor 12 pseudogene O - 20121230 -9606 100033401 VN2R13P - - HGNC:33219 19 19p13.2 vomeronasal 2 receptor 13 pseudogene pseudo VN2R13P vomeronasal 2 receptor 13 pseudogene O - 20121230 -9606 100033402 VN2R14P - - HGNC:33220 19 19p13.2 vomeronasal 2 receptor 14 pseudogene pseudo VN2R14P vomeronasal 2 receptor 14 pseudogene O - 20121230 -9606 100033403 VN2R15P - - HGNC:33221 19 19p13.2 vomeronasal 2 receptor 15 pseudogene pseudo VN2R15P vomeronasal 2 receptor 15 pseudogene O - 20121230 -9606 100033404 VN2R16P - - HGNC:33222 19 19p13.2 vomeronasal 2 receptor 16 pseudogene pseudo VN2R16P vomeronasal 2 receptor 16 pseudogene O - 20121230 -9606 100033406 VN2R18P - - HGNC:33224 19 19q13.43 vomeronasal 2 receptor 18 pseudogene pseudo VN2R18P vomeronasal 2 receptor 18 pseudogene O - 20121230 -9606 100033407 VN2R19P - - HGNC:33225 19 19q13.43 vomeronasal 2 receptor 19 pseudogene pseudo VN2R19P vomeronasal 2 receptor 19 pseudogene O - 20121230 -9606 100033408 VN2R20P - - HGNC:33226 21 21q21.2 vomeronasal 2 receptor 20 pseudogene pseudo VN2R20P vomeronasal 2 receptor 20 pseudogene O - 20121230 -9606 100033409 OTX2P1 - OTX2P HGNC:33281 9 9q21 orthodenticle homeobox 2 pseudogene 1 pseudo OTX2P1 orthodenticle homeobox 2 pseudogene 1 O - 20121230 -9606 100033410 SATB1P1 - - HGNC:33344 6 6q22.31 SATB homeobox 1 pseudogene 1 pseudo SATB1P1 SATB homeobox 1 pseudogene 1 O - 20120318 -9606 100033411 DUXB - - HGNC:33345 16 16q23.1 double homeobox B protein-coding DUXB double homeobox B O - 20120318 -9606 100033413 SNORD116-1 - HBII-85-1|PWCR1 HGNC:33067|MIM:605436 15 15q11.2 small nucleolar RNA, C/D box 116-1 snoRNA SNORD116-1 small nucleolar RNA, C/D box 116-1 O - 20121230 -9606 100033414 SNORD116-2 - HBII-85-2 HGNC:33068 15 15q11.2 small nucleolar RNA, C/D box 116-2 snoRNA SNORD116-2 small nucleolar RNA, C/D box 116-2 O - 20121230 -9606 100033415 SNORD116-3 - HBII-85-3 HGNC:33069 15 15q11.2 small nucleolar RNA, C/D box 116-3 snoRNA SNORD116-3 small nucleolar RNA, C/D box 116-3 O - 20121230 -9606 100033416 SNORD116-4 - HBII-85-4 HGNC:33070 15 15q11.2 small nucleolar RNA, C/D box 116-4 snoRNA SNORD116-4 small nucleolar RNA, C/D box 116-4 O - 20121230 -9606 100033417 SNORD116-5 - HBII-85-5 HGNC:33071 15 15q11.2 small nucleolar RNA, C/D box 116-5 snoRNA SNORD116-5 small nucleolar RNA, C/D box 116-5 O - 20121230 -9606 100033418 SNORD116-6 - HBII-85-6 HGNC:33072 15 15q11.2 small nucleolar RNA, C/D box 116-6 snoRNA SNORD116-6 small nucleolar RNA, C/D box 116-6 O - 20121230 -9606 100033419 SNORD116-7 - HBII-85-7 HGNC:33073 15 15q11.2 small nucleolar RNA, C/D box 116-7 snoRNA SNORD116-7 small nucleolar RNA, C/D box 116-7 O - 20121230 -9606 100033420 SNORD116-8 - HBII-85-8 HGNC:33074 15 15q11.2 small nucleolar RNA, C/D box 116-8 snoRNA SNORD116-8 small nucleolar RNA, C/D box 116-8 O - 20121230 -9606 100033421 SNORD116-9 - HBII-85-9 HGNC:33075 15 15q11.2 small nucleolar RNA, C/D box 116-9 snoRNA SNORD116-9 small nucleolar RNA, C/D box 116-9 O - 20121230 -9606 100033422 SNORD116-10 - HBII-85-10 HGNC:33076 15 15q11.2 small nucleolar RNA, C/D box 116-10 snoRNA SNORD116-10 small nucleolar RNA, C/D box 116-10 O - 20121230 -9606 100033423 SNORD116-11 - HBII-85-11 HGNC:33077 15 15q11.2 small nucleolar RNA, C/D box 116-11 snoRNA SNORD116-11 small nucleolar RNA, C/D box 116-11 O - 20121230 -9606 100033424 SNORD116-12 - HBII-85-12 HGNC:33078 15 15q11.2 small nucleolar RNA, C/D box 116-12 snoRNA SNORD116-12 small nucleolar RNA, C/D box 116-12 O - 20121230 -9606 100033425 SNORD116-13 - HBII-85-13 HGNC:33079 15 15q11.2 small nucleolar RNA, C/D box 116-13 snoRNA SNORD116-13 small nucleolar RNA, C/D box 116-13 O - 20121230 -9606 100033426 SNORD116-14 - HBII-85-14 HGNC:33080 15 15q11.2 small nucleolar RNA, C/D box 116-14 snoRNA SNORD116-14 small nucleolar RNA, C/D box 116-14 O - 20121230 -9606 100033427 SNORD116-15 - HBII-85-15 HGNC:33081 15 15q11.2 small nucleolar RNA, C/D box 116-15 snoRNA SNORD116-15 small nucleolar RNA, C/D box 116-15 O - 20121230 -9606 100033428 SNORD116-16 - HBII-85-16 HGNC:33082 15 15q11.2 small nucleolar RNA, C/D box 116-16 snoRNA SNORD116-16 small nucleolar RNA, C/D box 116-16 O - 20121230 -9606 100033429 SNORD116-17 - HBII-85-17 HGNC:33083 15 15q11.2 small nucleolar RNA, C/D box 116-17 snoRNA SNORD116-17 small nucleolar RNA, C/D box 116-17 O - 20121230 -9606 100033430 SNORD116-18 - HBII-85-18 HGNC:33084 15 15q11.2 small nucleolar RNA, C/D box 116-18 snoRNA SNORD116-18 small nucleolar RNA, C/D box 116-18 O - 20121230 -9606 100033431 SNORD116-20 - HBII-85-20 HGNC:33086 15 15q11.2 small nucleolar RNA, C/D box 116-20 snoRNA SNORD116-20 small nucleolar RNA, C/D box 116-20 O - 20121230 -9606 100033432 SNORD116-21 - HBII-85-21 HGNC:33087 15 15q11.2 small nucleolar RNA, C/D box 116-21 snoRNA SNORD116-21 small nucleolar RNA, C/D box 116-21 O - 20121230 -9606 100033433 SNORD116-22 - HBII-85-22 HGNC:33088 15 15q11.2 small nucleolar RNA, C/D box 116-22 snoRNA SNORD116-22 small nucleolar RNA, C/D box 116-22 O - 20121230 -9606 100033434 SNORD116-23 - HBII-85-23 HGNC:33089 15 15q11.2 small nucleolar RNA, C/D box 116-23 snoRNA SNORD116-23 small nucleolar RNA, C/D box 116-23 O - 20121230 -9606 100033435 SNORD116-24 - HBII-85-24 HGNC:33090 15 15q11.2 small nucleolar RNA, C/D box 116-24 snoRNA SNORD116-24 small nucleolar RNA, C/D box 116-24 O - 20121230 -9606 100033436 SNORD116-25 - HBII-85-25 HGNC:33091 15 15q11.2 small nucleolar RNA, C/D box 116-25 snoRNA SNORD116-25 small nucleolar RNA, C/D box 116-25 O - 20121230 -9606 100033437 SNORD115-2 - HBII-52-2 HGNC:33021 15 15q11.2 small nucleolar RNA, C/D box 115-2 snoRNA SNORD115-2 small nucleolar RNA, C/D box 115-2 O - 20121230 -9606 100033438 SNORD116-26 - HBII-85-26 HGNC:33092 15 15q11.2 small nucleolar RNA, C/D box 116-26 snoRNA SNORD116-26 small nucleolar RNA, C/D box 116-26 O - 20121230 -9606 100033439 SNORD116-27 - HBII-85-27 HGNC:33093 15 15q11.2 small nucleolar RNA, C/D box 116-27 snoRNA SNORD116-27 small nucleolar RNA, C/D box 116-27 O - 20121230 -9606 100033440 SNORD115-3 - HBII-52-3 HGNC:33022 15 15q11.2 small nucleolar RNA, C/D box 115-3 snoRNA SNORD115-3 small nucleolar RNA, C/D box 115-3 O - 20121230 -9606 100033441 SNORD115-4 - HBII-52-4 HGNC:33023 15 15q11.2 small nucleolar RNA, C/D box 115-4 snoRNA SNORD115-4 small nucleolar RNA, C/D box 115-4 O - 20121230 -9606 100033442 SNORD115-5 - HBII-52-5 HGNC:33024 15 15q11.2 small nucleolar RNA, C/D box 115-5 snoRNA SNORD115-5 small nucleolar RNA, C/D box 115-5 O - 20121230 -9606 100033443 SNORD115-6 - HBII-52-6 HGNC:33025 15 15q11.2 small nucleolar RNA, C/D box 115-6 snoRNA SNORD115-6 small nucleolar RNA, C/D box 115-6 O - 20121230 -9606 100033444 SNORD115-7 - HBII-52-7 HGNC:33026 15 15q11.2 small nucleolar RNA, C/D box 115-7 snoRNA SNORD115-7 small nucleolar RNA, C/D box 115-7 O - 20121230 -9606 100033445 SNORD115-8 - HBII-52-8 HGNC:33027 15 15q11.2 small nucleolar RNA, C/D box 115-8 snoRNA SNORD115-8 small nucleolar RNA, C/D box 115-8 O - 20121230 -9606 100033446 SNORD115-9 - HBII-52-9 HGNC:33028 15 15q11.2 small nucleolar RNA, C/D box 115-9 snoRNA SNORD115-9 small nucleolar RNA, C/D box 115-9 O - 20121230 -9606 100033447 SNORD115-10 - HBII-52-10 HGNC:33029 15 15q11.2 small nucleolar RNA, C/D box 115-10 snoRNA SNORD115-10 small nucleolar RNA, C/D box 115-10 O - 20121230 -9606 100033448 SNORD115-11 - HBII-52-11 HGNC:33030 15 15q11.2 small nucleolar RNA, C/D box 115-11 snoRNA SNORD115-11 small nucleolar RNA, C/D box 115-11 O - 20121230 -9606 100033449 SNORD115-12 - HBII-52-12 HGNC:33031 15 15q11.2 small nucleolar RNA, C/D box 115-12 snoRNA SNORD115-12 small nucleolar RNA, C/D box 115-12 O - 20121230 -9606 100033450 SNORD115-13 - HBII-52-13 HGNC:33032 15 15q11.2 small nucleolar RNA, C/D box 115-13 snoRNA SNORD115-13 small nucleolar RNA, C/D box 115-13 O - 20121230 -9606 100033451 SNORD115-14 - HBII-52-14 HGNC:33033 15 15q11.2 small nucleolar RNA, C/D box 115-14 snoRNA SNORD115-14 small nucleolar RNA, C/D box 115-14 O - 20121230 -9606 100033453 SNORD115-15 - HBII-52-15 HGNC:33034 15 15q11.2 small nucleolar RNA, C/D box 115-15 snoRNA SNORD115-15 small nucleolar RNA, C/D box 115-15 O - 20121230 -9606 100033454 SNORD115-16 - HBII-52-16 HGNC:33035 15 15q11.2 small nucleolar RNA, C/D box 115-16 snoRNA SNORD115-16 small nucleolar RNA, C/D box 115-16 O - 20121230 -9606 100033455 SNORD115-17 - HBII-52-17 HGNC:33036 15 15q11.2 small nucleolar RNA, C/D box 115-17 snoRNA SNORD115-17 small nucleolar RNA, C/D box 115-17 O - 20121230 -9606 100033456 SNORD115-18 - HBII-52-18 HGNC:33037 15 15q11.2 small nucleolar RNA, C/D box 115-18 snoRNA SNORD115-18 small nucleolar RNA, C/D box 115-18 O - 20121230 -9606 100033458 SNORD115-19 - HBII-52-19 HGNC:33038 15 15q11.2 small nucleolar RNA, C/D box 115-19 snoRNA SNORD115-19 small nucleolar RNA, C/D box 115-19 O - 20121230 -9606 100033460 SNORD115-20 - HBII-52-20 HGNC:33039 15 15q11.2 small nucleolar RNA, C/D box 115-20 snoRNA SNORD115-20 small nucleolar RNA, C/D box 115-20 O - 20121230 -9606 100033603 SNORD115-21 - HBII-52-21 HGNC:33040 15 15q11.2 small nucleolar RNA, C/D box 115-21 snoRNA SNORD115-21 small nucleolar RNA, C/D box 115-21 O - 20121230 -9606 100033799 SNORD115-22 - HBII-52-22 HGNC:33041 15 15q11.2 small nucleolar RNA, C/D box 115-22 snoRNA SNORD115-22 small nucleolar RNA, C/D box 115-22 O - 20121230 -9606 100033800 SNORD115-23 - HBII-52-23 HGNC:33042 15 15q11.2 small nucleolar RNA, C/D box 115-23 snoRNA SNORD115-23 small nucleolar RNA, C/D box 115-23 O - 20121230 -9606 100033801 SNORD115-25 - HBII-52-25 HGNC:33044 15 15q11.2 small nucleolar RNA, C/D box 115-25 snoRNA SNORD115-25 small nucleolar RNA, C/D box 115-25 O - 20121230 -9606 100033802 SNORD115-26 - HBII-52-26 HGNC:33045 15 15q11.2 small nucleolar RNA, C/D box 115-26 snoRNA SNORD115-26 small nucleolar RNA, C/D box 115-26 O - 20121230 -9606 100033803 SNORD115-29 - HBII-52-29 HGNC:33048 15 15q11.2 small nucleolar RNA, C/D box 115-29 snoRNA SNORD115-29 small nucleolar RNA, C/D box 115-29 O - 20121230 -9606 100033804 SNORD115-30 - HBII-52-30 HGNC:33049 15 15q11.2 small nucleolar RNA, C/D box 115-30 snoRNA SNORD115-30 small nucleolar RNA, C/D box 115-30 O - 20121230 -9606 100033805 SNORD115-31 - HBII-52-31 HGNC:33050 15 15q11.2 small nucleolar RNA, C/D box 115-31 snoRNA SNORD115-31 small nucleolar RNA, C/D box 115-31 O - 20121230 -9606 100033806 SNORD115-32 - HBII-52-32 HGNC:33051 15 15q11.2 small nucleolar RNA, C/D box 115-32 snoRNA SNORD115-32 small nucleolar RNA, C/D box 115-32 O - 20121230 -9606 100033807 SNORD115-33 - HBII-52-33 HGNC:33052 15 15q11.2 small nucleolar RNA, C/D box 115-33 snoRNA SNORD115-33 small nucleolar RNA, C/D box 115-33 O - 20121230 -9606 100033808 SNORD115-34 - HBII-52-34 HGNC:33053 15 15q11.2 small nucleolar RNA, C/D box 115-34 snoRNA SNORD115-34 small nucleolar RNA, C/D box 115-34 O - 20121230 -9606 100033809 SNORD115-35 - HBII-52-35 HGNC:33054 15 15q11.2 small nucleolar RNA, C/D box 115-35 snoRNA SNORD115-35 small nucleolar RNA, C/D box 115-35 O - 20121230 -9606 100033810 SNORD115-36 - HBII-52-36 HGNC:33055 15 15q11.2 small nucleolar RNA, C/D box 115-36 snoRNA SNORD115-36 small nucleolar RNA, C/D box 115-36 O - 20121230 -9606 100033811 SNORD115-37 - HBII-52-37 HGNC:33056 15 15q11.2 small nucleolar RNA, C/D box 115-37 snoRNA SNORD115-37 small nucleolar RNA, C/D box 115-37 O - 20121230 -9606 100033812 SNORD115-38 - HBII-52-38 HGNC:33057 15 15q11.2 small nucleolar RNA, C/D box 115-38 snoRNA SNORD115-38 small nucleolar RNA, C/D box 115-38 O - 20121230 -9606 100033813 SNORD115-39 - HBII-52-39 HGNC:33058 15 15q11.2 small nucleolar RNA, C/D box 115-39 snoRNA SNORD115-39 small nucleolar RNA, C/D box 115-39 O - 20121230 -9606 100033814 SNORD115-40 - HBII-52-40 HGNC:33059 15 15q11.2 small nucleolar RNA, C/D box 115-40 snoRNA SNORD115-40 small nucleolar RNA, C/D box 115-40 O - 20121230 -9606 100033815 SNORD115-41 - HBII-52-41 HGNC:33060 15 15q11.2 small nucleolar RNA, C/D box 115-41 snoRNA SNORD115-41 small nucleolar RNA, C/D box 115-41 O - 20121230 -9606 100033816 SNORD115-42 - HBII-52-42 HGNC:33061 15 15q11.2 small nucleolar RNA, C/D box 115-42 snoRNA SNORD115-42 small nucleolar RNA, C/D box 115-42 O - 20121230 -9606 100033817 SNORD115-43 - HBII-52-43 HGNC:33062 15 15q11.2 small nucleolar RNA, C/D box 115-43 snoRNA SNORD115-43 small nucleolar RNA, C/D box 115-43 O - 20121230 -9606 100033818 SNORD115-44 - HBII-52-44 HGNC:33063 15 15q11.2 small nucleolar RNA, C/D box 115-44 snoRNA SNORD115-44 small nucleolar RNA, C/D box 115-44 O - 20121230 -9606 100033819 MIR675 - MIRN675|hsa-mir-675 HGNC:33351|miRBase:MI0005416 11 11p15.5 microRNA 675 miscRNA MIR675 microRNA 675 O - 20121230 -9606 100033820 SNORD116-28 - HBII-85-28 HGNC:33347 15 15q11.2 small nucleolar RNA, C/D box 116-28 snoRNA SNORD116-28 small nucleolar RNA, C/D box 116-28 O - 20121230 -9606 100033821 SNORD116-29 - HBII-85-29 HGNC:33348 15 15q11.2 small nucleolar RNA, C/D box 116-29 snoRNA SNORD116-29 small nucleolar RNA, C/D box 116-29 O - 20121230 -9606 100033822 SNORD115-48 - HBII-52-48 HGNC:33343 15 15q11.2 small nucleolar RNA, C/D box 115-48 snoRNA SNORD115-48 small nucleolar RNA, C/D box 115-48 O - 20121230 -9606 100034248 LOC100034248 - - - 19 19p13.3 uncharacterized LOC100034248 unknown - - - - 20121230 -9606 100034700 AA1 - - MIM:104000 18 18p11.3-p11.2 Alopecia areata 1 unknown - - - - 20120622 -9606 100034701 TAR - - MIM:274000 - - Thrombocytopenia-absent radius syndrome unknown - - - - 20121209 -9606 100034703 AA2 - - MIM:610753 16 16q11-q22 Alopecia areata 2 unknown - - - - 20120622 -9606 100034704 RHDNS1 - - MIM:610805 1 1p33-p32 Renal hypodysplasia, nonsyndromic, 1 unknown - - - - 20120622 -9606 100034705 MMVP3 - - MIM:610840 13 13q31.3-q32.1 Mitral valve prolapse, myxomatous 3 unknown - - - - 20120622 -9606 100034736 ANE1 - ADANE HGNC:33355 2 2q12.1-q13 acute necrotizing encephalopathy 1 (autosomal dominant) unknown ANE1 acute necrotizing encephalopathy 1 (autosomal dominant) O - 20120318 -9606 100034743 PDZK1P2 RP6-74O6.5 - HGNC:31975|Vega:OTTHUMG00000074107 1 1q21.2 PDZ domain containing 1 pseudogene 2 pseudo PDZK1P2 PDZ domain containing 1 pseudogene 2 O - 20121230 -9606 100036519 FOXD4L2 - - HGNC:24813|MIM:611085|Ensembl:ENSG00000204828|Vega:OTTHUMG00000066752 9 9p12 forkhead box D4-like 2 protein-coding FOXD4L2 forkhead box D4-like 2 O - 20121209 -9606 100036563 SNORD115-24 - HBII-52-24 HGNC:33043 15 15q11.2 small nucleolar RNA, C/D box 115-24 snoRNA SNORD115-24 small nucleolar RNA, C/D box 115-24 O - 20121230 -9606 100036564 SNORD115-27 - HBII-52-27 HGNC:33046 15 15q11.2 small nucleolar RNA, C/D box 115-27 snoRNA SNORD115-27 small nucleolar RNA, C/D box 115-27 O - 20121230 -9606 100036565 SNORD115-28 - HBII-52-28 HGNC:33047 15 15q11.2 small nucleolar RNA, C/D box 115-28 snoRNA SNORD115-28 small nucleolar RNA, C/D box 115-28 O - 20121230 -9606 100036566 SNORD115-45 - HBII-52-45|SNORD115-48 HGNC:33064 15 15q11.2 small nucleolar RNA, C/D box 115-45 snoRNA SNORD115-45 small nucleolar RNA, C/D box 115-45 O - 20121230 -9606 100036567 SNORD115-47 - HBII-52-46|HBII-52-47 HGNC:33065 15 15q11.2 small nucleolar RNA, C/D box 115-47 snoRNA SNORD115-47 small nucleolar RNA, C/D box 115-47 O - 20121230 -9606 100036574 HMGN1P3 - - HGNC:23343 14 14q24.1 high mobility group nucleosome binding domain 1 pseudogene 3 pseudo HMGN1P3 high mobility group nucleosome binding domain 1 pseudogene 3 O - 20121230 -9606 100036575 HMGN1P4 - - HGNC:39336 1 1q25.3 high mobility group nucleosome binding domain 1 pseudogene 4 pseudo HMGN1P4 high mobility group nucleosome binding domain 1 pseudogene 4 O - 20121230 -9606 100037264 STQTL6 - - MIM:300591 X Xq24-q25 stature quantitative trait locus 6 unknown - - - - 20120622 -9606 100037265 STQTL7 - - MIM:609822 1 1p21 stature quantitative trait locus 7 unknown - - - - 20120622 -9606 100037266 STQTL8 - - MIM:610114 9 9q22 stature quantitative trait locus 8 unknown - - - - 20120622 -9606 100037267 LOC100037267 - - - 11 11q13.4 developmental pluripotency associated 4 pseudogene pseudo - - - - 20121230 -9606 100037280 UBE2D3P1 - RP4-680N4|UBE2D3L|UBE2D3P|UBE2D5P HGNC:33349 20 20p12.3 ubiquitin-conjugating enzyme E2D 3 pseudogene 1 pseudo UBE2D3P1 ubiquitin-conjugating enzyme E2D 3 pseudogene 1 O - 20121230 -9606 100037417 DDTL - - HGNC:33446|Ensembl:ENSG00000099974|Vega:OTTHUMG00000150800 22 22q11.23 D-dopachrome tautomerase-like protein-coding DDTL D-dopachrome tautomerase-like O D-dopachrome decarboxylase-like protein|D-dopachrome tautomerase-like protein 20121230 -9606 100038246 TLX1NB - APT-B7|TD1|TDI HGNC:37183|MIM:612734 10 10q24 TLX1 neighbor protein-coding TLX1NB TLX1 neighbor O Putative protein TDI|TLX1 divergent gene protein|putative TLX1 neighbor protein 20121230 -9606 100038247 PTLS - - MIM:610883 17 17p11.2 Potocki-Lupski syndrome unknown - - - - 20120622 -9606 100038248 PSNP3 - - MIM:610898 11 11p12-p11 Supranuclear palsy, progressive, 3 unknown - - - - 20120622 -9606 100038747 SCA29 - ACV|CLA4 HGNC:33444|MIM:117360 3 3p26 spinocerebellar ataxia 29 unknown SCA29 spinocerebellar ataxia 29 O - 20120622 -9606 100048903 MCCD1P1 - - HGNC:33449|Vega:OTTHUMG00000130506 6 6p22.1-p21.33 mitochondrial coiled-coil domain 1 pseudogene 1 pseudo MCCD1P1 mitochondrial coiled-coil domain 1 pseudogene 1 O - 20121230 -9606 100048904 DDX39BP1 - BAT1P1 HGNC:33450 6 6p21.3 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39B pseudogene 1 pseudo DDX39BP1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39B pseudogene 1 O - 20121230 -9606 100048905 GBD2 - - HGNC:33452|MIM:609918 1 1p36.21 gallbladder disease 2 unknown GBD2 gallbladder disease 2 O - 20120622 -9606 100048906 GBD3 - - HGNC:33453|MIM:609919 1 1p34.3 gallbladder disease 3 unknown GBD3 gallbladder disease 3 O - 20120622 -9606 100048907 ZDHHC20P1 - - HGNC:33456|Vega:OTTHUMG00000086707 6 6p21.3 zinc finger, DHHC-type containing 20 pseudogene 1 pseudo ZDHHC20P1 zinc finger, DHHC-type containing 20 pseudogene 1 O - 20121230 -9606 100048908 ZDHHC20P2 - - HGNC:33457|Vega:OTTHUMG00000133740 6 6p21.3 zinc finger, DHHC-type containing 20 pseudogene 2 pseudo ZDHHC20P2 zinc finger, DHHC-type containing 20 pseudogene 2 O - 20121230 -9606 100048909 TMEM183AP1 - - HGNC:33458|Vega:OTTHUMG00000086663 6 6p21.3 transmembrane protein 183A pseudogene 1 pseudo TMEM183AP1 transmembrane protein 183A pseudogene 1 O - 20121230 -9606 100048912 CDKN2B-AS1 RP11-145E5.4 ANRIL|CDKN2B-AS|CDKN2BAS|NCRNA00089|p15AS HGNC:34341|MIM:613149 9 9p21.3 CDKN2B antisense RNA 1 miscRNA CDKN2B-AS1 CDKN2B antisense RNA 1 O - 20121230 -9606 100048922 RPL35AP4 - BPG294E21.7 HGNC:33460|Vega:OTTHUMG00000140156 6 6p21 ribosomal protein L35a pseudogene 4 pseudo RPL35AP4 ribosomal protein L35a pseudogene 4 O - 20121230 -9606 100048923 DDX39BP2 - BAT1P2|BPG309N1.15 HGNC:33461 6 6p21.33 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39B pseudogene 2 pseudo DDX39BP2 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39B pseudogene 2 O - 20121230 -9606 100048924 MCCD1P2 - BPG309N1.16 HGNC:33462 6 6p21.33 mitochondrial coiled-coil domain 1 pseudogene 2 pseudo MCCD1P2 mitochondrial coiled-coil domain 1 pseudogene 2 O - 20121230 -9606 100049076 GUSBP9 - - HGNC:42323 5 5q13.2 glucuronidase, beta pseudogene 9 pseudo GUSBP9 glucuronidase, beta pseudogene 9 O - 20121230 -9606 100049159 SPG37 - - HGNC:33472|MIM:611945 8 8p21.2-q13.3 spastic paraplegia 37 (autosomal dominant) unknown SPG37 spastic paraplegia 37 (autosomal dominant) O - 20120622 -9606 100049160 FEB7 - - HGNC:33479|MIM:611515 21 21q22 febrile convulsions 7 unknown FEB7 febrile convulsions 7 O - 20120622 -9606 100049541 STUT1 - - MIM:184450 18 18p11.3-p11.2 Stuttering, familial persistent 1 unknown - - - - 20120622 -9606 100049542 SHFM3 - C10DUPq24|DUP10q24|SHSF3 MIM:246560 10 10q24 Split-hand/foot malformation 3 unknown - - - - 20120622 -9606 100049543 STUT2 - - MIM:609261 12 12q24.1 Stuttering, familial persistent 2 unknown - - - - 20120622 -9606 100049544 APMR2 - - MIM:610422 3 3q26.2-q26.31 Alopecia with mental retardation syndrome 2 unknown - - - - 20120622 -9606 100049579 OCTN3 - - - 5 5q31 organic cation transporter 3 protein-coding - - - - 20120318 -9606 100049587 SIGLEC14 UNQ294 - HGNC:32926|Ensembl:ENSG00000254415|Vega:OTTHUMG00000165511 19 19q13.4 sialic acid binding Ig-like lectin 14 protein-coding SIGLEC14 sialic acid binding Ig-like lectin 14 O sialic acid-binding Ig-like lectin 14|siglec-14 20121222 -9606 100049613 TRNAK3 - - HGNC:33256 11 11q12.1 transfer RNA lysine 3 (anticodon UUU) tRNA TRNAK3 transfer RNA lysine 3 (anticodon UUU) O - 20121230 -9606 100049614 TRNAV6 - TRV6 HGNC:33245 5 5q35.3 transfer RNA valine 6 (anticodon CAC) tRNA TRNAV6 transfer RNA valine 6 (anticodon CAC) O - 20121230 -9606 100049615 SKCG-1 - - - 11 - sporadic kidney cancer gene 1 unknown - - - - 20121230 -9606 100049707 SPG38 - - HGNC:33485|MIM:612335 4 4p16-p15 spastic paraplegia 38 (autosomal dominant, Silver syndrome) unknown SPG38 spastic paraplegia 38 (autosomal dominant, Silver syndrome) O - 20120622 -9606 100049716 LOC100049716 - - - 12 12p13.33 uncharacterized LOC100049716 unknown - - - - 20121230 -9606 100049717 LOC100049717 - - - 9 9p23 JNK1/MAPK8-associated membrane protein pseudogene pseudo - - - - 20121230 -9606 100073347 MIMT1 - LINC00067|MIM1|NCRNA00067 HGNC:33464 19 19q13.43 MER1 repeat containing imprinted transcript 1 (non-protein coding) miscRNA MIMT1 MER1 repeat containing imprinted transcript 1 (non-protein coding) O - 20121230 -9606 100073349 DFNB74 - - HGNC:33490 12 12q14.1-q15 deafness, autosomal recessive 74 unknown DFNB74 deafness, autosomal recessive 74 O - 20120318 -9606 100093624 CDH12P3 - - HGNC:37699 5 5q13.2 cadherin 12 (N-cadherin 2) pseudogene 3 pseudo CDH12P3 cadherin 12 (N-cadherin 2) pseudogene 3 O - 20121230 -9606 100093625 CDH12P1 - - HGNC:37698 5 5q13.2 cadherin 12 (N-cadherin 2) pseudogene 1 pseudo CDH12P1 cadherin 12 (N-cadherin 2) pseudogene 1 O - 20121230 -9606 100093626 CDH12P4 - - HGNC:37700 5 5q13.2 cadherin 12 (N-cadherin 2) pseudogene 4 pseudo CDH12P4 cadherin 12 (N-cadherin 2) pseudogene 4 O - 20121230 -9606 100093630 SNHG8 - LINC00060|NCRNA00060 HGNC:33098 4 4q26 small nucleolar RNA host gene 8 (non-protein coding) miscRNA SNHG8 small nucleolar RNA host gene 8 (non-protein coding) O - 20121230 -9606 100093631 LOC100093631 - - - 7 7q11.23 general transcription factor II, i, pseudogene pseudo - - - - 20121230 -9606 100093632 DFNA57 - - HGNC:33491 19 19p13.2 deafness, autosomal dominant 57 unknown DFNA57 deafness, autosomal dominant 57 O - 20120318 -9606 100093698 LOC100093698 - - - X - unknown transcript miscRNA - - - - 20121230 -9606 100093716 DFNB75 - - HGNC:33503 - - deafness, autosomal recessive 75 unknown DFNB75 deafness, autosomal recessive 75 O - 20120318 -9606 100101111 GXYLT1P1 - - HGNC:39676 13 13q11 glucoside xylosyltransferase 1 pseudogene 1 pseudo GXYLT1P1 glucoside xylosyltransferase 1 pseudogene 1 O - 20121230 -9606 100101112 CDC14BL - - - 7 7p12.3 CDC14 cell division cycle 14 C-like pseudo - - - - 20121230 -9606 100101115 TTTY21B - - HGNC:37980 Y Yp11.2 testis-specific transcript, Y-linked 21B (non-protein coding) miscRNA TTTY21B testis-specific transcript, Y-linked 21B (non-protein coding) O - 20121230 -9606 100101116 TTTY1B - - HGNC:37981 Y Yp11.2 testis-specific transcript, Y-linked 1B (non-protein coding) miscRNA TTTY1B testis-specific transcript, Y-linked 1B (non-protein coding) O - 20121230 -9606 100101117 TTTY2B - - HGNC:37982 Y Yp11.2 testis-specific transcript, Y-linked 2B (non-protein coding) miscRNA TTTY2B testis-specific transcript, Y-linked 2B (non-protein coding) O - 20121230 -9606 100101118 TTTY8B - NCRNA00217 HGNC:37622 Y Yp11.2 testis-specific transcript, Y-linked 8B (non-protein coding) miscRNA TTTY8B testis-specific transcript, Y-linked 8B (non-protein coding) O - 20121230 -9606 100101119 LOC100101119 - - - 9 9p12 S-phase kinase-associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100101120 TTTY7B - NCRNA00215 HGNC:37463 Y Yp11.2 testis-specific transcript, Y-linked 7B (non-protein coding) miscRNA TTTY7B testis-specific transcript, Y-linked 7B (non-protein coding) O - 20121209 -9606 100101121 TTTY23B - - HGNC:37983 Y Yp11.2 testis-specific transcript, Y-linked 23B (non-protein coding) miscRNA TTTY23B testis-specific transcript, Y-linked 23B (non-protein coding) O - 20121209 -9606 100101126 LOC100101126 - - - 7 7p thioredoxin-related transmembrane protein 1 pseudogene pseudo - - - - 20121230 -9606 100101127 LOC100101127 - - - 8 8q thioredoxin-related transmembrane protein 1 pseudogene pseudo - - - - 20121230 -9606 100101148 LOC100101148 - - - 7 7q11.2 FK506 binding protein 6, 36kDa pseudogene pseudo - - - - 20121230 -9606 100101246 LOC100101246 - - - 12 12q interferon induced transmembrane protein 3 pseudogene pseudo - - - - 20121230 -9606 100101247 LOC100101247 - - - 6 6p interferon induced transmembrane protein pseudogene pseudo - - - - 20121230 -9606 100101266 HAVCR1P1 - - HGNC:44033 19 19p hepatitis A virus cellular receptor 1 pseudogene 1 pseudo HAVCR1P1 hepatitis A virus cellular receptor 1 pseudogene 1 O - 20121230 -9606 100101267 POM121C - POM121-2 HGNC:34005|Ensembl:ENSG00000135213|Vega:OTTHUMG00000156238 7 7q11.2 POM121 transmembrane nucleoporin C protein-coding POM121C POM121 transmembrane nucleoporin C O POM121 membrane glycoprotein C|nuclear envelope pore membrane protein POM 121C|nuclear pore membrane protein 121-2|pore membrane protein of 121 kDa C 20121230 -9606 100101268 LOC100101268 - - - 7 7q11.2 Williams Beuren syndrome chromosome region 19 pseudogene pseudo - - - - 20121230 -9606 100101405 TMA16P1 - - HGNC:43780 11 11q12.1 translation machinery associated 16 homolog pseudogene 1 pseudo TMA16P1 translation machinery associated 16 homolog pseudogene 1 O - 20121230 -9606 100101407 TMA16P2 - - HGNC:43781 1 1p34.1 translation machinery associated 16 homolog pseudogene 2 pseudo TMA16P2 translation machinery associated 16 homolog pseudogene 2 O - 20121230 -9606 100101420 MRT12 - - HGNC:39151|MIM:611090 1 1p34-p33 mental retardation, non-syndromic, autosomal recessive, 12 unknown MRT12 mental retardation, non-syndromic, autosomal recessive, 12 O - 20120622 -9606 100101423 MRT8 - - HGNC:39147|MIM:611094 10 10q22 mental retardation, non-syndromic, autosomal recessive, 8 unknown MRT8 mental retardation, non-syndromic, autosomal recessive, 8 O - 20120622 -9606 100101424 MRT9 - MRT26 HGNC:39148|MIM:611095 14 14q11.2-q12 mental retardation, non-syndromic, autosomal recessive, 9 unknown MRT9 mental retardation, non-syndromic, autosomal recessive, 9 O - 20120622 -9606 100101425 MRT10 - MRT20 HGNC:39149|MIM:611096 16 16p12-q12 mental retardation, non-syndromic, autosomal recessive, 10 unknown MRT10 mental retardation, non-syndromic, autosomal recessive, 10 O - 20120622 -9606 100101426 MRT11 - - HGNC:39150|MIM:611097 19 19q13.2-q13.3 mental retardation, non-syndromic, autosomal recessive, 11 unknown MRT11 mental retardation, non-syndromic, autosomal recessive, 11 O - 20120622 -9606 100101440 PMS2LP2 - PMSR7 HGNC:33515 7 7q11.2 postmeiotic segregation increased 2-like pseudogene 2 pseudo PMS2LP2 postmeiotic segregation increased 2-like pseudogene 2 O - 20121230 -9606 100101467 ZSCAN30 - ZNF397OS|ZNF917 HGNC:33517|Ensembl:ENSG00000186814|Vega:OTTHUMG00000178569 18 18q12.2 zinc finger and SCAN domain containing 30 protein-coding ZSCAN30 zinc finger and SCAN domain containing 30 O ZNF-WYM|ZNF397 opposite strand|zinc finger and SCAN domain-containing protein 30|zinc finger protein 397 opposite strand|zinc finger protein 397OS 20121230 -9606 100101478 LOC100101478 - - - X Xq22 H2B histone family, member W, testis-specific pseudogene pseudo - - - - 20121230 -9606 100101483 LOC100101483 - - - 7 7p11.2 glycerophosphocholine phosphodiesterase GDE1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100101490 PSIMCT-1 - - - 20 20q11.2 malignant T cell amplified sequence 1 pseudogene pseudo - - - - 20121230 -9606 100101554 BRI3P3 - - HGNC:32544 17 17p11.2 brain protein I3 pseudogene 3 pseudo BRI3P3 brain protein I3 pseudogene 3 O - 20121230 -9606 100101629 GAGE8 - CT4.8|GAGE-8 HGNC:4106|MIM:300638 X Xp11 G antigen 8 protein-coding GAGE8 G antigen 8 O G antigen 2D|cancer/testis antigen 4.8|cancer/testis antigen family 4, member 8 20121117 -9606 100101917 ELF2P1 - - HGNC:33539 X Xq22.2 E74-like factor 2 pseudogene 1 pseudo ELF2P1 E74-like factor 2 pseudogene 1 O - 20121230 -9606 100101932 GNG5P3 - - HGNC:33552 11 11q23.1 guanine nucleotide binding protein (G protein), gamma 5 pseudogene 3 pseudo GNG5P3 guanine nucleotide binding protein (G protein), gamma 5 pseudogene 3 O - 20121230 -9606 100101933 GNG5P4 - - HGNC:33553 2 2p13.1 guanine nucleotide binding protein (G protein), gamma 5 pseudogene 4 pseudo GNG5P4 guanine nucleotide binding protein (G protein), gamma 5 pseudogene 4 O - 20121230 -9606 100101935 GNG5P5 - - HGNC:33554 13 13q14.2 guanine nucleotide binding protein (G protein), gamma 5 pseudogene 5 pseudo GNG5P5 guanine nucleotide binding protein (G protein), gamma 5 pseudogene 5 O - 20121230 -9606 100101938 ANKRD26P3 hCG_1791940 LINC00414 HGNC:39689 13 13q12.11 ankyrin repeat domain 26 pseudogene 3 pseudo ANKRD26P3 ankyrin repeat domain 26 pseudogene 3 O - 20121230 -9606 100113373 HMGN2P17 RP3-477M7.4 - HGNC:39381 1 1p36.23 high mobility group nucleosomal binding domain 2 pseudogene 17 pseudo HMGN2P17 high mobility group nucleosomal binding domain 2 pseudogene 17 O - 20121230 -9606 100113374 LOC100113374 - - - 1 1q tRNA nucleotidyl transferase, CCA-adding, 1 pseudogene pseudo - - - - 20121230 -9606 100113375 LOC100113375 - - - 22 22q tRNA nucleotidyl transferase, CCA-adding, 1 pseudogene pseudo - - - - 20121230 -9606 100113378 SNORD119 - - HGNC:33558 20 20p13 small nucleolar RNA, C/D box 119 snoRNA SNORD119 small nucleolar RNA, C/D box 119 O - 20121230 -9606 100113379 SNORD121A - - HGNC:33560 9 9p13.3 small nucleolar RNA, C/D box 121A snoRNA SNORD121A small nucleolar RNA, C/D box 121A O - 20121230 -9606 100113380 SNORD125 - - HGNC:33564 22 22q12.2 small nucleolar RNA, C/D box 125 snoRNA SNORD125 small nucleolar RNA, C/D box 125 O - 20121230 -9606 100113381 SNORD19B - - HGNC:33570 3 3p21.1 small nucleolar RNA, C/D box 19B snoRNA SNORD19B small nucleolar RNA, C/D box 19B O - 20121230 -9606 100113382 SNORD105B - - HGNC:33572 19 19p13.2 small nucleolar RNA, C/D box 105B snoRNA SNORD105B small nucleolar RNA, C/D box 105B O - 20121230 -9606 100113383 PCBP3-OT1 - PCBP3OT HGNC:33548 21 21q22.3 PCBP3 overlapping transcript (non-protein coding) unknown PCBP3-OT1 PCBP3 overlapping transcript (non-protein coding) O - 20120622 -9606 100113384 SNORD123 - - HGNC:33562 5 5p15.2 small nucleolar RNA, C/D box 123 snoRNA SNORD123 small nucleolar RNA, C/D box 123 O - 20121230 -9606 100113385 SNORD121B - - HGNC:33569 9 9p13.3 small nucleolar RNA, C/D box 121B snoRNA SNORD121B small nucleolar RNA, C/D box 121B O - 20121230 -9606 100113386 UCKL1-AS1 - UCKL1-AS|UCKL1AS|UCKL1OS HGNC:31967 20 20q13.33 UCKL1 antisense RNA 1 miscRNA UCKL1-AS1 UCKL1 antisense RNA 1 O - 20121230 -9606 100113389 SNORD127 - - HGNC:33555 14 14q21.3 small nucleolar RNA, C/D box 127 snoRNA SNORD127 small nucleolar RNA, C/D box 127 O - 20121230 -9606 100113390 SNORD124 - - HGNC:33563 17 17q21.1 small nucleolar RNA, C/D box 124 snoRNA SNORD124 small nucleolar RNA, C/D box 124 O - 20121230 -9606 100113391 SNORD126 - MIR1201|MIRN1201 HGNC:33565 14 14q11.2 small nucleolar RNA, C/D box 126 snoRNA SNORD126 small nucleolar RNA, C/D box 126 O - 20121230 -9606 100113392 SNORD11B - - HGNC:33571 2 2q33.1 small nucleolar RNA, C/D box 11B snoRNA SNORD11B small nucleolar RNA, C/D box 11B O - 20121230 -9606 100113393 SNORD12B - - HGNC:33573 20 20q13.13 small nucleolar RNA, C/D box 12B snoRNA SNORD12B small nucleolar RNA, C/D box 12B O - 20121230 -9606 100113397 LOC100113397 - - - X Xp vezatin, adherens junctions transmembrane protein pseudogene pseudo - - - - 20121230 -9606 100113402 SNORD111B - MIR3647 HGNC:33579 16 16q22.1 small nucleolar RNA, C/D box 111B snoRNA SNORD111B small nucleolar RNA, C/D box 111B O - 20121230 -9606 100113403 LINC00577 - C6orf220|dJ439I14.1 HGNC:21553 6 6q21 long intergenic non-protein coding RNA 577 miscRNA LINC00577 long intergenic non-protein coding RNA 577 O - 20121230 -9606 100113404 LINC00583 RP11-284P20.1 C9orf146 HGNC:31437 9 9p23 long intergenic non-protein coding RNA 583 miscRNA LINC00583 long intergenic non-protein coding RNA 583 O - 20121230 -9606 100113407 TMEM170B RP11-679B17.1 - HGNC:34244|Ensembl:ENSG00000205269|Vega:OTTHUMG00000014259 6 6p24.2 transmembrane protein 170B protein-coding TMEM170B transmembrane protein 170B O - 20121230 -9606 100113421 LOC100113421 - - - 9 9q13 fibroblast growth factor 7 pseudogene pseudo - - - - 20121209 -9606 100114903 NRBF2P2 - - HGNC:44605 3 3p nuclear receptor binding factor 2 pseudogene 2 pseudo NRBF2P2 nuclear receptor binding factor 2 pseudogene 2 O - 20121230 -9606 100118954 NRBF2P5 - - HGNC:44683 10 10p nuclear receptor binding factor 2 pseudogene 5 pseudo NRBF2P5 nuclear receptor binding factor 2 pseudogene 5 O - 20121230 -9606 100124332 LOC100124332 - - - 10 10q Y box binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100124334 LOC100124334 - - - 15 15q Y box binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100124373 LOC100124373 - - - 6 6p ankyrin repeat domain 39 pseudogene pseudo - - - - 20121230 -9606 100124394 KLF3P2 - - HGNC:41519 3 3q Kruppel-like factor 3 (basic) pseudogene 2 pseudo KLF3P2 Kruppel-like factor 3 (basic) pseudogene 2 O - 20121230 -9606 100124401 LOC100124401 - - - 2 2p11.2 cytokine receptor-like factor 3 pseudogene pseudo - - - - 20121230 -9606 100124402 LOC100124402 - - - 7 7q ubiquitin-fold modifier conjugating enzyme 1 pseudogene pseudo - - - - 20121230 -9606 100124412 FAM138E - F379 HGNC:32335 15 15q26.3 family with sequence similarity 138, member E miscRNA FAM138E family with sequence similarity 138, member E O - 20121230 -9606 100124414 GINGF4 - GGF4|HGF4 HGNC:37734|MIM:611010 11 11p15 gingival fibromatosis, hereditary, 4 unknown GINGF4 gingival fibromatosis, hereditary, 4 O - 20120622 -9606 100124415 EKD2 - - MIM:611031 16 16q13-q22.1 Episodic kinesigenic dyskinesia 2 unknown - - - - 20120622 -9606 100124516 SNORD58C - U58 HGNC:33613 18 18q21.1 small nucleolar RNA, C/D box 58C snoRNA SNORD58C small nucleolar RNA, C/D box 58C O - 20121230 -9606 100124533 SCARNA27 - - HGNC:33614 6 6p24.3 small Cajal body-specific RNA 27 miscRNA SCARNA27 small Cajal body-specific RNA 27 O - 20121230 -9606 100124534 SNORA84 - - HGNC:33615 9 9q22.31 small nucleolar RNA, H/ACA box 84 snoRNA SNORA84 small nucleolar RNA, H/ACA box 84 O - 20121230 -9606 100124535 SNORA36C - - HGNC:33616 2 2p14 small nucleolar RNA, H/ACA box 36C snoRNA SNORA36C small nucleolar RNA, H/ACA box 36C O - 20121230 -9606 100124536 SNORA38B - - HGNC:33617 17 17q24.2 small nucleolar RNA, H/ACA box 38B snoRNA SNORA38B small nucleolar RNA, H/ACA box 38B O - 20121230 -9606 100124537 SNORA70B - - HGNC:33618 2 2p15 small nucleolar RNA, H/ACA box 70B snoRNA SNORA70B small nucleolar RNA, H/ACA box 70B O - 20121230 -9606 100124538 SNORA70C - U70C HGNC:33619 9 9q33.1 small nucleolar RNA, H/ACA box 70C snoRNA SNORA70C small nucleolar RNA, H/ACA box 70C O - 20121230 -9606 100124539 SNORA11B - - HGNC:33620 14 14q32.12 small nucleolar RNA, H/ACA box 11B snoRNA SNORA11B small nucleolar RNA, H/ACA box 11B O - 20121230 -9606 100124540 SNORA11C - - HGNC:33621 X Xp11.3 small nucleolar RNA, H/ACA box 11C snoRNA SNORA11C small nucleolar RNA, H/ACA box 11C O - 20121230 -9606 100124541 SNORA11D - - HGNC:33622 X Xp11.22 small nucleolar RNA, H/ACA box 11D snoRNA SNORA11D small nucleolar RNA, H/ACA box 11D O - 20121230 -9606 100124542 SNORA11E - - HGNC:33623 X Xp11.22 small nucleolar RNA, H/ACA box 11E snoRNA SNORA11E small nucleolar RNA, H/ACA box 11E O - 20121230 -9606 100124692 LOC100124692 - - - 7 7q34 maltase-glucoamylase (alpha-glucosidase) pseudogene pseudo - - - - 20120726 -9606 100124696 TEC - - MIM:227050 19 19q13.2 transient erythroblastopenia of childhood unknown - - - - 20120622 -9606 100124700 HOTAIR - HOXAS|HOXC-AS4|HOXC11-AS1|NCRNA00072 HGNC:33510|MIM:611400 12 12q13.13 HOX transcript antisense RNA miscRNA HOTAIR HOX transcript antisense RNA O - 20121230 -9606 100125288 ZGLP1 - GLP-1|GLP1 HGNC:37245|MIM:611639|Ensembl:ENSG00000220201|Vega:OTTHUMG00000152114 19 19p13.2 zinc finger, GATA-like protein 1 protein-coding ZGLP1 zinc finger, GATA-like protein 1 O GATA like protein 1|GATA like protein-1|GATA-like protein 1|GATA-type zinc finger protein 1 20121230 -9606 100125387 HNRNPRP1 - - HGNC:44907 10 10p12.31 heterogeneous nuclear ribonucleoprotein R pseudogene 1 pseudo HNRNPRP1 heterogeneous nuclear ribonucleoprotein R pseudogene 1 O - 20121230 -9606 100125392 LOC100125392 - - - X Xp11.22 TIMELESS interacting protein pseudogene pseudo - - - - 20121230 -9606 100125393 LOC100125393 - - - 16 16q TIMELESS interacting protein pseudogene pseudo - - - - 20121230 -9606 100125409 LOC100125409 - - - 12 12q chromosome 4 open reading frame 27 pseudogene pseudo - - - - 20121230 -9606 100125556 FAM86JP - - HGNC:44097 3 3q21.2 family with sequence similarity 86, member A pseudogene pseudo FAM86JP family with sequence similarity 86, member J, pseudogene O - 20121230 -9606 100125918 LOC100125918 - - - - - uncharacterized LOC100125918 unknown - - - - 20120622 -9606 100126007 LOC100126007 - - - 13 13q LINE-1 type transposase domain containing 1 pseudogene pseudo - - - - 20121219 -9606 100126008 NUDT19P1 - - HGNC:43585 X Xq nudix (nucleoside diphosphate linked moiety X)-type motif 19 pseudogene 1 pseudo NUDT19P1 nudix (nucleoside diphosphate linked moiety X)-type motif 19 pseudogene 1 O - 20121230 -9606 100126095 SAX2 - SATX2|SPAX2 HGNC:33157|MIM:611302 17 17p13 spastic ataxia 2 (autosomal recessive) unknown SAX2 spastic ataxia 2 (autosomal recessive) O - 20120622 -9606 100126270 FMR1-AS1 - ASFMR1|FMR1-AS|FMR1AS|FMR4 HGNC:39081|MIM:300805 X Xq27.3 FMR1 antisense RNA 1 miscRNA FMR1-AS1 FMR1 antisense RNA 1 O - 20121230 -9606 100126296 MIR298 - MIRN298|hsa-mir-298 HGNC:33634|MIM:614914|miRBase:MI0005523 20 20q13.32 microRNA 298 miscRNA MIR298 microRNA 298 O - 20121230 -9606 100126297 MIR300 - MIRN300|hsa-mir-300 HGNC:33636|miRBase:MI0005525 14 14q32.31 microRNA 300 miscRNA MIR300 microRNA 300 O - 20121230 -9606 100126299 VTRNA2-1 - CBL-3|CBL3|MIR886|MIRN886|VTRNA2|hsa-mir-886|hvg-5|nc886 HGNC:37054|MIM:614938 5 5q31.1 vault RNA 2-1 miscRNA VTRNA2-1 vault RNA 2-1 O - 20121230 -9606 100126301 MIR509-2 - MIRN509-2 HGNC:33641|miRBase:MI0005530 X Xq27.3 microRNA 509-2 miscRNA MIR509-2 microRNA 509-2 O - 20121230 -9606 100126302 MIR450B - MIRN450B HGNC:33642|miRBase:MI0005531 X Xq26.3 microRNA 450b miscRNA MIR450B microRNA 450b O - 20121230 -9606 100126303 MIR890 - MIRN890|hsa-mir-890 HGNC:33644|miRBase:MI0005533 X Xq27.3 microRNA 890 miscRNA MIR890 microRNA 890 O - 20121230 -9606 100126304 MIR891B - MIRN891B HGNC:33645|miRBase:MI0005534 X Xq27.3 microRNA 891b miscRNA MIR891B microRNA 891b O - 20121230 -9606 100126306 MIR888 - MIRN888|hsa-mir-888 HGNC:33648|miRBase:MI0005537 X Xq27.3 microRNA 888 miscRNA MIR888 microRNA 888 O - 20121230 -9606 100126307 MIR892B - MIRN892B HGNC:33649|miRBase:MI0005538 X Xq27.3 microRNA 892b miscRNA MIR892B microRNA 892b O - 20121230 -9606 100126308 MIR541 - MIRN541|hsa-mir-541 HGNC:33650|miRBase:MI0005539 14 14q32.31 microRNA 541 miscRNA MIR541 microRNA 541 O - 20121230 -9606 100126309 MIR875 - MIRN875|hsa-mir-875 HGNC:33652|miRBase:MI0005541 8 8q22.2 microRNA 875 miscRNA MIR875 microRNA 875 O - 20121230 -9606 100126310 MIR876 - MIRN876|hsa-mir-876 HGNC:33653|miRBase:MI0005542 9 9p21.1 microRNA 876 miscRNA MIR876 microRNA 876 O - 20121230 -9606 100126311 MIR147B - MIRN147B HGNC:33655|miRBase:MI0005544 15 15q21.1 microRNA 147b miscRNA MIR147B microRNA 147b O - 20121230 -9606 100126313 MIR744 - MIRN744|hsa-mir-744 HGNC:33658|miRBase:MI0005559 17 17p12 microRNA 744 miscRNA MIR744 microRNA 744 O - 20121230 -9606 100126314 MIR877 - MIRN877|hsa-mir-877|miRNA877 HGNC:33660|MIM:611619|miRBase:MI0005561 6 6p21.33 microRNA 877 miscRNA MIR877 microRNA 877 O - 20121230 -9606 100126315 MIR665 - MIRN665|hsa-mir-665 HGNC:33662|miRBase:MI0005563 14 14q32.2 microRNA 665 miscRNA MIR665 microRNA 665 O - 20121230 -9606 100126316 MIR873 - MIRN873|hsa-mir-873 HGNC:33663|miRBase:MI0005564 9 9p21.1 microRNA 873 miscRNA MIR873 microRNA 873 O - 20121230 -9606 100126317 MIR374B - MIRN374B HGNC:33665|miRBase:MI0005566 X Xq13.2 microRNA 374b miscRNA MIR374B microRNA 374b O - 20121230 -9606 100126318 MIR301B - MIRN301B HGNC:33667|miRBase:MI0005568 22 22q11.21 microRNA 301b miscRNA MIR301B microRNA 301b O - 20121230 -9606 100126319 MIR216B - MIRN216B HGNC:33668|miRBase:MI0005569 2 2p16.1 microRNA 216b miscRNA MIR216B microRNA 216b O - 20121230 -9606 100126320 MIR920 - MIRN920|hsa-mir-920 HGNC:33670|miRBase:MI0005712 12 12p12.1 microRNA 920 miscRNA MIR920 microRNA 920 O - 20121230 -9606 100126321 MIR922 - MIRN922|hsa-mir-922 HGNC:33672|miRBase:MI0005714 3 3q29 microRNA 922 miscRNA MIR922 microRNA 922 O - 20121230 -9606 100126323 MIR924 - MIRN924|hsa-mir-924 HGNC:33674|miRBase:MI0005716 18 18q12.3 microRNA 924 miscRNA MIR924 microRNA 924 O - 20121230 -9606 100126324 MIR934 - MIRN934|hsa-mir-934 HGNC:33677|miRBase:MI0005756 X Xq26.3 microRNA 934 miscRNA MIR934 microRNA 934 O - 20121230 -9606 100126325 MIR935 - MIRN935|hsa-mir-935 HGNC:33678|miRBase:MI0005757 19 19q13.42 microRNA 935 miscRNA MIR935 microRNA 935 O - 20121230 -9606 100126326 MIR936 - MIRN936|hsa-mir-936 HGNC:33679|miRBase:MI0005758 10 10q25.1 microRNA 936 miscRNA MIR936 microRNA 936 O - 20121230 -9606 100126327 MIR938 - MIRN938|hsa-mir-938 HGNC:33681|miRBase:MI0005760 10 10p11.23 microRNA 938 miscRNA MIR938 microRNA 938 O - 20121230 -9606 100126328 MIR940 - MIRN940|hsa-mir-940 HGNC:33683|miRBase:MI0005762 16 16p13.3 microRNA 940 miscRNA MIR940 microRNA 940 O - 20121230 -9606 100126329 MIR941-1 - MIRN941-1 HGNC:33684|miRBase:MI0005763 20 20q13.33 microRNA 941-1 miscRNA MIR941-1 microRNA 941-1 O - 20121230 -9606 100126330 MIR941-4 - MIRN941-4 HGNC:33687|miRBase:MI0005766 20 20q13.33 microRNA 941-4 miscRNA MIR941-4 microRNA 941-4 O - 20121230 -9606 100126331 MIR942 - MIRN942|hsa-mir-942 HGNC:33688|miRBase:MI0005767 1 1p13.1 microRNA 942 miscRNA MIR942 microRNA 942 O - 20121230 -9606 100126332 MIR943 - MIRN943|hsa-mir-943 HGNC:33689|miRBase:MI0005768 4 4p16.3 microRNA 943 miscRNA MIR943 microRNA 943 O - 20121230 -9606 100126333 MIR708 - MIRN708|hsa-mir-708 HGNC:33654|miRBase:MI0005543 11 11q14.1 microRNA 708 miscRNA MIR708 microRNA 708 O - 20121230 -9606 100126334 MIR885 - MIRN885|hsa-mir-885 HGNC:33659|miRBase:MI0005560 3 3p25.3 microRNA 885 miscRNA MIR885 microRNA 885 O - 20121230 -9606 100126335 MIR543 - MIRN543|hsa-mir-543 HGNC:33664|miRBase:MI0005565 14 14q32.31 microRNA 543 miscRNA MIR543 microRNA 543 O - 20121230 -9606 100126336 MIR208B - MIRN208B HGNC:33669|MIM:613613|miRBase:MI0005570 14 14q11.2 microRNA 208b miscRNA MIR208B microRNA 208b O - 20121230 -9606 100126337 MIR509-3 - MIRN509-3 HGNC:33675|MIM:300876|miRBase:MI0005717 X - microRNA 509-3 miscRNA MIR509-3 microRNA 509-3 O - 20121230 -9606 100126338 MIR937 - MIRN937|hsa-mir-937 HGNC:33680|miRBase:MI0005759 8 8q24.3 microRNA 937 miscRNA MIR937 microRNA 937 O - 20121230 -9606 100126339 MIR941-2 - MIRN941-2 HGNC:33685|miRBase:MI0005764 20 20q13.33 microRNA 941-2 miscRNA MIR941-2 microRNA 941-2 O - 20121230 -9606 100126340 MIR944 - MIRN944|hsa-mir-944 HGNC:33690|miRBase:MI0005769 3 3q28 microRNA 944 miscRNA MIR944 microRNA 944 O - 20121230 -9606 100126341 MIR891A - MIRN891A HGNC:33635|miRBase:MI0005524 X Xq27.3 microRNA 891a miscRNA MIR891A microRNA 891a O - 20121230 -9606 100126342 MIR892A - MIRN892A HGNC:33639|miRBase:MI0005528 X Xq27.3 microRNA 892a miscRNA MIR892A microRNA 892a O - 20121230 -9606 100126343 MIR874 - MIRN874|hsa-mir-874 HGNC:33643|miRBase:MI0005532 5 5q31.2 microRNA 874 miscRNA MIR874 microRNA 874 O - 20121230 -9606 100126345 MIR889 - MIRN889|hsa-mir-889 HGNC:33651|miRBase:MI0005540 14 14q32.31 microRNA 889 miscRNA MIR889 microRNA 889 O - 20121230 -9606 100126346 MIR190B - MIRN190B HGNC:33656|miRBase:MI0005545 1 1q21.3 microRNA 190b miscRNA MIR190B microRNA 190b O - 20121230 -9606 100126347 MIR887 - MIRN887|hsa-mir-887 HGNC:33661|miRBase:MI0005562 5 5p15.1 microRNA 887 miscRNA MIR887 microRNA 887 O - 20121230 -9606 100126348 MIR760 - MIRN760|hsa-mir-760 HGNC:33666|miRBase:MI0005567 1 1p22.1 microRNA 760 miscRNA MIR760 microRNA 760 O - 20121230 -9606 100126349 MIR921 - MIRN921|hsa-mir-921 HGNC:33671|miRBase:MI0005713 1 1q24.1 microRNA 921 miscRNA MIR921 microRNA 921 O - 20121230 -9606 100126350 MIR933 - MIRN933|hsa-mir-933 HGNC:33676|miRBase:MI0005755 2 2q31.1 microRNA 933 miscRNA MIR933 microRNA 933 O - 20121230 -9606 100126351 MIR939 - MIRN939|hsa-mir-939 HGNC:33682|miRBase:MI0005761 8 8q24.3 microRNA 939 miscRNA MIR939 microRNA 939 O - 20121230 -9606 100126352 MIR941-3 - MIRN941-3 HGNC:33686|miRBase:MI0005765 20 20q13.33 microRNA 941-3 miscRNA MIR941-3 microRNA 941-3 O - 20121230 -9606 100126354 MIR297 - MIRN297|hsa-mir-297 HGNC:33691|miRBase:MI0005775 4 4q25 microRNA 297 miscRNA MIR297 microRNA 297 O - 20121230 -9606 100126355 MIR365A - MIR365-1|MIRN365-1|hsa-mir-365a HGNC:33692|MIM:614735|miRBase:MI0000767 16 16p13.12 microRNA 365a miscRNA MIR365A microRNA 365a O - 20121230 -9606 100126356 MIR365B - MIR365-2|MIRN365-2|hsa-mir-365b HGNC:33693|miRBase:MI0000769 17 17q11.2 microRNA 365b miscRNA MIR365B microRNA 365b O - 20121230 -9606 100126446 DEPDC1P2 RP11-18B3.2 - HGNC:33975 9 9q31.2 DEP domain containing 1 pseudogene 2 pseudo DEPDC1P2 DEP domain containing 1 pseudogene 2 O - 20121230 -9606 100126447 LOC100126447 - - - X Xq23 uncharacterized LOC100126447 unknown - - - - 20121230 -9606 100126448 LOC100126448 - - - - - uncharacterized LOC100126448 unknown - - - - 20120508 -9606 100126474 TRNAF-GAA - - - 6 6p22.1 transfer RNA phenylalanine (anticodon GAA) tRNA - - - - 20120318 -9606 100126475 TRNAL-UAA - - - 6 6q24.2 transfer RNA leucine (anticodon UAA) tRNA - - - - 20120318 -9606 100126476 TRNAL-CAA - - - 6 6p22.1 transfer RNA leucine (anticodon CAA) tRNA - - - - 20121230 -9606 100126477 TRNAL-AAG - - - 6 6p22.1 transfer RNA leucine (anticodon AAG) tRNA - - - - 20121230 -9606 100126479 TRNAL-UAG - - - 17 17p13.1 transfer RNA leucine (anticodon UAG) tRNA - - - - 20121230 -9606 100126480 TRNAL-CAG - - - 6 6p22.2 transfer RNA leucine (anticodon CAG) tRNA - - - - 20120318 -9606 100126481 TRNAI-AAU - - - 6 6p11.2 transfer RNA isoleucine (anticodon AAU) tRNA - - - - 20121230 -9606 100126482 TRNAI-GAU - - - X Xp22.33 transfer RNA isoleucine (anticodon GAU) tRNA - - - - 20120318 -9606 100126483 TRNAI-UAU - - - 6 6p22.1 transfer RNA isoleucine (anticodon UAU) tRNA - - - - 20120318 -9606 100126484 TRNAM-CAU - - - 8 8q24.13 transfer RNA methionine (anticodon CAU) tRNA - - - - 20121230 -9606 100126485 TRNAV-AAC - - - 6 6p22.1 transfer RNA valine (anticodon AAC) tRNA - - - - 20120318 -9606 100126487 TRNAV-UAC - - - X Xp22.13 transfer RNA valine (anticodon UAC) tRNA - - - - 20120318 -9606 100126488 TRNAV-CAC - - - 6 6p22.1 transfer RNA valine (anticodon CAC) tRNA - - - - 20121230 -9606 100126489 TRNAS-AGA - - - 8 8q22.1 transfer RNA serine (anticodon AGA) tRNA - - - - 20120318 -9606 100126491 TRNAS-UGA - - - 6 6p22.1 transfer RNA serine (anticodon UGA) tRNA - - - - 20120318 -9606 100126492 TRNAS-CGA - - - 6 6p22.1 transfer RNA serine (anticodon CGA) tRNA - - - - 20120318 -9606 100126493 TRNAP-AGG - - - 7 7q32.1 transfer RNA proline (anticodon AGG) tRNA - - - - 20120318 -9606 100126495 TRNAP-UGG - - - 5 5q35.3 transfer RNA proline (anticodon UGG) tRNA - - - - 20120318 -9606 100126496 TRNAP-CGG - - - 6 6p22.1 transfer RNA proline (anticodon CGG) tRNA - - - - 20120318 -9606 100126497 TRNAT-AGU - - - 6 6p22.1 transfer RNA threonine (anticodon AGU) tRNA - - - - 20120318 -9606 100126499 TRNAT-UGU - - - 6 6p22.1 transfer RNA threonine (anticodon UGU) tRNA - - - - 20120318 -9606 100126500 TRNAT-CGU - - - 6 6p22.1 transfer RNA threonine (anticodon CGU) tRNA - - - - 20120318 -9606 100126501 TRNAA-AGC - - - 8 8q13.1 transfer RNA alanine (anticodon AGC) tRNA - - - - 20121230 -9606 100126503 TRNAA-UGC - - - 6 6p22.1 transfer RNA alanine (anticodon UGC) tRNA - - - - 20120318 -9606 100126504 TRNAA-CGC - - - 6 6p22.1 transfer RNA alanine (anticodon CGC) tRNA - - - - 20120318 -9606 100126505 TRNAY-AUA - - - 2 2q35 transfer RNA tyrosine (anticodon AUA) tRNA - - - - 20120318 -9606 100126506 TRNAY-GUA - - - 8 8q13.1 transfer RNA tyrosine (anticodon GUA) tRNA - - - - 20120318 -9606 100126508 TRNAH-GUG - - - 9 9p22.3 transfer RNA histidine(anticodon GUG) tRNA - - - - 20121230 -9606 100126509 TRNAQ-UUG - - - 6 6q24.2 transfer RNA glutamine (anticodon UUG) tRNA - - - - 20120318 -9606 100126510 TRNAQ-CUG - - - 6 6p22.1 transfer RNA glutamine (anticodon CUG) tRNA - - - - 20121230 -9606 100126512 TRNAN-GUU - - - 19 19p13.3 transfer RNA asparagine (anticodon GUU) tRNA - - - - 20121230 -9606 100126513 TRNAK-UUU - - - 6 6p22.1 transfer RNA lysine (anticodon UUU) tRNA - - - - 20121230 -9606 100126514 TRNAK-CUU - - - 6 6p22.2 transfer RNA lysine (anticodon CUU) tRNA - - - - 20121230 -9606 100126516 TRNAD-GUC - - - 6 6p22.1 transfer RNA aspartic acid (anticodon GUC) tRNA - - - - 20121230 -9606 100126517 TRNAE-UUC - - - 2 2q21.1 transfer RNA glutamic acid (anticodon UUC) tRNA - - - - 20121230 -9606 100126518 TRNAE-CUC - - - 6 6q22.32 transfer RNA glutamic acid (anticodon CUC) tRNA - - - - 20121230 -9606 100126520 TRNAC-GCA - - - 7 7q36.1 transfer RNA cysteine (anticodon GCA) tRNA - - - - 20121230 -9606 100126521 TRNAW-CCA - - - 7 7q22.1 transfer RNA tryptophan (anticodon CCA) tRNA - - - - 20120318 -9606 100126522 TRNAR-ACG - - - 6 6p22.1 transfer RNA arginine (anticodon ACG) tRNA - - - - 20120318 -9606 100126523 TRNAR-CCG - - - 6 6p22.1 transfer RNA arginine (anticodon CCG) tRNA - - - - 20120318 -9606 100126524 TRNAR-UCG - - - 9 9q31.3 transfer RNA arginine (anticodon UCG) tRNA - - - - 20120318 -9606 100126526 TRNAR-UCU - - - 9 9q34.11 transfer RNA arginine (anticodon UCU) tRNA - - - - 20120318 -9606 100126527 TRNAR-CCU - - - 7 7q34 transfer RNA arginine (anticodon CCU) tRNA - - - - 20120318 -9606 100126529 TRNAS-GCU - - - 6 6p22.1 transfer RNA serine (anticodon GCU) tRNA - - - - 20120318 -9606 100126531 TRNAG-GCC - - - 6 6p22.1 transfer RNA glycine (anticodon GCC) tRNA - - - - 20121230 -9606 100126532 TRNAG-UCC - - - 19 19p13.3 transfer RNA glycine (anticodon UCC) tRNA - - - - 20121230 -9606 100126533 TRNAG-CCC - - - 2 2p13.3 transfer RNA glycine (anticodon CCC) tRNA - - - - 20121230 -9606 100126534 TRNASTOP-UCA - - - 22 22q13.31 transfer RNA opal suppressor (anticodon UCA) tRNA - - - - 20120318 -9606 100126536 TRNASTOP-UUA - - - 17 17q23.2 transfer RNA ochre suppressor(anticodon UUA) tRNA - - - - 20120318 -9606 100126572 GJE1 - CX23 HGNC:33251 6 6q24.1 gap junction protein, epsilon 1, 23kDa protein-coding GJE1 gap junction protein, epsilon 1, 23kDa O connexin-23|gap junction epsilon-1 protein 20121021 -9606 100126582 LOC100126582 - - - 9 - uncharacterized LOC100126582 unknown - - - - 20121230 -9606 100126584 LOC100126584 - - - - - uncharacterized LOC100126584 unknown - - - - 20120622 -9606 100126593 MAFD4 - BPAD MIM:611247 16 16p12 Major affective disorder 4 unknown - - - - 20120622 -9606 100126594 EJM4 - - MIM:611364 5 5q12-q14 Myoclonic epilepsy, juvenile, 4 unknown - - - - 20120622 -9606 100126595 MGS - - MIM:611376 8 8q23-q24 Mungen syndrome unknown - - - - 20120622 -9606 100126596 CUX2P1 - - HGNC:33694 10 10p14 cut-like homeobox 2 pseudogene 1 pseudo CUX2P1 cut-like homeobox 2 pseudogene 1 O - 20121230 -9606 100126597 CUX2P2 - - HGNC:33695 4 4q32.1 cut-like homeobox 2 pseudogene 2 pseudo CUX2P2 cut-like homeobox 2 pseudogene 2 O - 20120318 -9606 100126693 LINC00322 - C21orf136|NCRNA00322 HGNC:33698 21 21q22.3 long intergenic non-protein coding RNA 322 unknown LINC00322 long intergenic non-protein coding RNA 322 O - 20121230 -9606 100126780 SNAR-G1 - - HGNC:34327 19 19q13.33 small ILF3/NF90-associated RNA G1 snRNA SNAR-G1 small ILF3/NF90-associated RNA G1 O - 20121230 -9606 100126781 SNAR-F - - HGNC:34326 19 19q13.33 small ILF3/NF90-associated RNA F snRNA SNAR-F small ILF3/NF90-associated RNA F O - 20121230 -9606 100126784 LOC100126784 - - - 11 11p15.1 uncharacterized LOC100126784 miscRNA - - - - 20121230 -9606 100126791 EGOT - EGO|NCRNA00190 HGNC:37129|MIM:611662 3 3p26.1 eosinophil granule ontogeny transcript (non-protein coding) miscRNA EGOT eosinophil granule ontogeny transcript (non-protein coding) O - 20121230 -9606 100126793 GHRLOS - GHRL-AS1|GHRLAS|NCRNA00068 HGNC:33885 3 3p25.3 ghrelin opposite strand/antisense RNA miscRNA GHRLOS ghrelin opposite strand/antisense RNA O - 20121230 -9606 100126794 GAEC1 - - MIM:612130 7 7q22.1 gene amplified in esophageal cancer 1 other - - - - 20120318 -9606 100126798 SNAR-A1 - SNAR-A53113498 HGNC:34304 19 19q13.33 small ILF3/NF90-associated RNA A1 snRNA SNAR-A1 small ILF3/NF90-associated RNA A1 O - 20121230 -9606 100126799 SNAR-A2 - SNAR-A53129250 HGNC:34305 19 19q13.33 small ILF3/NF90-associated RNA A2 snRNA SNAR-A2 small ILF3/NF90-associated RNA A2 O - 20121230 -9606 100126800 SNAR-A12 - SNAR-A53102747 HGNC:34315 19 19q13.33 small ILF3/NF90-associated RNA A12 snRNA SNAR-A12 small ILF3/NF90-associated RNA A12 O - 20121230 -9606 100126822 LOC100126822 - - - 1 1q42.13 ubiquitin-like modifier activating enzyme 5 pseudogene pseudo - - - - 20121230 -9606 100126825 GJA6P RP1-245G19.2 - HGNC:32542 X Xp22 gap junction protein, alpha 6, pseudogene pseudo GJA6P gap junction protein, alpha 6, pseudogene O - 20121230 -9606 100127050 VN2R21P - - HGNC:33938 19 19p13.2 vomeronasal 2 receptor 21 pseudogene pseudo VN2R21P vomeronasal 2 receptor 21 pseudogene O - 20121230 -9606 100127173 HLA-Y - HLA-DEL|HLA-GOR HGNC:33913 6 6p21.33 major histocompatibility complex, class I, Y (pseudogene) pseudo HLA-Y major histocompatibility complex, class I, Y (pseudogene) O - 20120318 -9606 100127206 KIAA1024L - - HGNC:33914|Ensembl:ENSG00000186367|Vega:OTTHUMG00000163041 5 5q23.3 KIAA1024-like protein-coding KIAA1024L KIAA1024-like O UPF0258 protein KIAA1024-like 20121230 -9606 100127883 IBTKP1 - - HGNC:31672 18 18q12.3 IBTK pseudogene 1 pseudo IBTKP1 IBTK pseudogene 1 O - 20121230 -9606 100127886 LOC100127886 PRO0628 - - 20 20q12 uncharacterized LOC100127886 unknown - - - putative uncharacterized protein PRO0628 20120511 -9606 100127888 LOC100127888 hCG_2018279 - - 20 20q13.33 uncharacterized LOC100127888 miscRNA - - - - 20121230 -9606 100127889 C10orf131 RP11-690P14.3 bA690P14.3 HGNC:31667|Ensembl:ENSG00000173088 10 10q24.1 chromosome 10 open reading frame 131 protein-coding C10orf131 chromosome 10 open reading frame 131 O uncharacterized protein C10orf131 20121230 -9606 100127892 LOC100127892 - - - 3 3q13.31 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene pseudo - - - - 20121230 -9606 100127893 RPL7P24 - RPL7_8_586 HGNC:36715 5 5q14.1 ribosomal protein L7 pseudogene 24 pseudo RPL7P24 ribosomal protein L7 pseudogene 24 O - 20121230 -9606 100127900 LOC100127900 - - - 6 6q13 nucleoporin 50kDa pseudogene pseudo - - - - 20121230 -9606 100127902 LOC100127902 - - - X Xq12 BMI1 polycomb ring finger oncogene pseudogene pseudo - - - - 20121230 -9606 100127903 LOC100127903 - - - 4 4q13.2 speckle-type POZ protein-like pseudogene pseudo - - - - 20121230 -9606 100127904 LOC100127904 - - - 20 20q13.12 uncharacterized LOC100127904 unknown - - - - 20120511 -9606 100127905 SMIM11P1 RP11-33E24.4 C6orf161|FAM165A|bA33E24.4 HGNC:21400 6 6q14.3 small integral membrane protein 11 pseudogene 1 pseudo SMIM11P1 small integral membrane protein 11 pseudogene 1 O - 20121230 -9606 100127906 PQLC1P2 - - HGNC:43987 4 4q21.22 PQ loop repeat containing 1 pseudogene 2 pseudo PQLC1P2 PQ loop repeat containing 1 pseudogene 2 O - 20121230 -9606 100127907 LOC100127907 - - - 7 7q11.21 heterogeneous nuclear ribonucleoprotein C (C1/C2) pseudogene pseudo - - - - 20121230 -9606 100127908 LOC100127908 - - - 6 6q23.2 selenoprotein K pseudogene pseudo - - - - 20121230 -9606 100127909 LOC100127909 - - - 18 18q21.1 uncharacterized LOC100127909 unknown - - - - 20121230 -9606 100127910 LOC100127910 - - - 1 1q24.2 uncharacterized LOC100127910 unknown - - - - 20121230 -9606 100127911 ST13P12 - - HGNC:38787 5 5q14.2 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 12 pseudo ST13P12 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 12 O - 20121230 -9606 100127912 LOC100127912 - - - 4 4q28.2 chromosome 2 open reading frame 27B pseudogene pseudo - - - - 20121230 -9606 100127917 LOC100127917 - - - 6 6q14.3 heat shock protein 90kDa alpha (cytosolic), class B member 1 pseudogene pseudo - - - - 20121230 -9606 100127919 LOC100127919 - - - 12 12q22 developmental pluripotency associated 3 pseudogene pseudo - - - - 20121230 -9606 100127922 SUMO2P6 - - HGNC:39016 5 5q35.2 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 6 pseudo SUMO2P6 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 6 O - 20121230 -9606 100127924 RPS15AP14 - RPS15A_4_297 HGNC:36629 2 2q31.1 ribosomal protein S15a pseudogene 14 pseudo RPS15AP14 ribosomal protein S15a pseudogene 14 O - 20121230 -9606 100127934 LOC100127934 - - - 1 1p22.1 meiotic nuclear divisions 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100127938 LOC100127938 - - - 11 11q22.1 KIAA1191 pseudogene pseudo - - - - 20121230 -9606 100127940 LOC100127940 - - - 7 7p22.3 uncharacterized LOC100127940 unknown - - - - 20120511 -9606 100127945 SOCS5P3 - - HGNC:44599 3 3p21.31 suppressor of cytokine signaling 5 pseudogene 3 pseudo SOCS5P3 suppressor of cytokine signaling 5 pseudogene 3 O - 20121230 -9606 100127946 LOC100127946 - - - 11 11q13.3 uncharacterized LOC100127946 protein-coding - - - - 20121209 -9606 100127947 LOC100127947 PP632 - - 1 1p34.3 uncharacterized LOC100127947 unknown - - - - 20121230 -9606 100127949 RPL15P16 - RPL15_9_1154 HGNC:36067 11 11q13.4 ribosomal protein L15 pseudogene 16 pseudo RPL15P16 ribosomal protein L15 pseudogene 16 O - 20121230 -9606 100127950 HECW1-IT1 - - HGNC:41465 7 7p14.1 HECW1 intronic transcript 1 (non-protein coding) unknown HECW1-IT1 HECW1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100127951 LOC100127951 UNQ6484 - - 16 16q22.2 ISPF6484 unknown - - - - 20121017 -9606 100127952 ATF4P4 - ATF4B HGNC:787 11 11q23.2 activating transcription factor 4 pseudogene 4 pseudo ATF4P4 activating transcription factor 4 pseudogene 4 O - 20121230 -9606 100127954 LOC100127954 - - - 11 11q12.3 pituitary tumor-transforming 1 pseudogene pseudo - - - - 20121230 -9606 100127955 LOC100127955 - - - 7 7p22.3 uncharacterized LOC100127955 unknown - - - - 20120508 -9606 100127958 LOC100127958 - - - 16 16p11.2 angiogenic factor with G patch and FHA domains 1 pseudogene pseudo - - - - 20121230 -9606 100127960 BCAS2P1 - - HGNC:39594 11 11q14.1 breast carcinoma amplified sequence 2 pseudogene 1 pseudo BCAS2P1 breast carcinoma amplified sequence 2 pseudogene 1 O - 20121230 -9606 100127962 LOC100127962 - - - 9 9q31.1 family with sequence similarity 190, member B pseudogene pseudo - - - - 20121230 -9606 100127963 RPS3AP48 - RPS3A_22_1469 HGNC:36792 16 16p13.3 ribosomal protein S3a pseudogene 48 pseudo RPS3AP48 ribosomal protein S3a pseudogene 48 O - 20121230 -9606 100127965 LOC100127965 - - - 16 16p11.2 ribosomal protein L7-like 1 pseudogene pseudo - - - - 20121230 -9606 100127967 LOC100127967 - - - 12 12q13.13 uncharacterized LOC100127967 miscRNA - - - - 20120511 -9606 100127969 VN1R96P - - HGNC:37416 19 19q13.2 vomeronasal 1 receptor 96 pseudogene pseudo VN1R96P vomeronasal 1 receptor 96 pseudogene O - 20121230 -9606 100127971 LOC100127971 - - - 12 12q13.13 uncharacterized LOC100127971 protein-coding - - - uncharacterized protein LOC100127971 20121018 -9606 100127972 LOC100127972 - - - 19 19q13.12 uncharacterized LOC100127972 unknown - - - - 20120622 -9606 100127974 LOC100127974 - - - 12 12p13.31 uncharacterized LOC100127974 unknown - - - - 20121230 -9606 100127976 VTI1BP3 - - HGNC:43729 12 12q13.13 vesicle transport through interaction with t-SNAREs 1B pseudogene 3 pseudo VTI1BP3 vesicle transport through interaction with t-SNAREs 1B pseudogene 3 O - 20121230 -9606 100127978 LOC100127978 - - - 12 12q13.11 starch binding domain 1 pseudogene pseudo - - - - 20121230 -9606 100127979 FUNDC2P4 - - HGNC:37971 22 22q13.1 FUN14 domain containing 2 pseudogene 4 pseudo FUNDC2P4 FUN14 domain containing 2 pseudogene 4 O - 20121230 -9606 100127981 LOC100127981 - - - 4 4q35.1 fibrillarin pseudogene pseudo - - - - 20121230 -9606 100127982 LOC100127982 - - - 8 8q22.1 transmembrane protein 69 pseudogene pseudo - - - - 20121230 -9606 100127983 LOC100127983 - - Ensembl:ENSG00000253250|Vega:OTTHUMG00000164011 8 8q21.3 uncharacterized LOC100127983 protein-coding - - - uncharacterized protein LOC100127983 20121230 -9606 100127986 LOC100127986 - - - 5 5q23.1 cation channel, sperm associated 2 pseudogene pseudo - - - - 20121230 -9606 100127989 LOC100127989 - - - 2 2q21.1 mediator complex subunit 15 pseudogene pseudo - - - - 20121230 -9606 100127991 LOC100127991 - - - 7 7q36.3 uncharacterized LOC100127991 protein-coding - - - - 20120511 -9606 100127993 RPL15P5 - RPL15_1_277 HGNC:35746 2 2q22.1 ribosomal protein L15 pseudogene 5 pseudo RPL15P5 ribosomal protein L15 pseudogene 5 O - 20121230 -9606 100127994 LOC100127994 - - - 18 18q23 uncharacterized LOC100127994 unknown - - - - 20120511 -9606 100127995 RPL34P7 - RPL34_1_168 HGNC:35575 1 1q42.12 ribosomal protein L34 pseudogene 7 pseudo RPL34P7 ribosomal protein L34 pseudogene 7 O - 20121230 -9606 100127999 RPL18AP11 - RPL18A_5_961 HGNC:36661 9 9p24.1 ribosomal protein L18a pseudogene 11 pseudo RPL18AP11 ribosomal protein L18a pseudogene 11 O - 20121230 -9606 100128001 LOC100128001 - - - 11 11p15.5 uncharacterized LOC100128001 protein-coding - - - - 20120511 -9606 100128002 LOC100128002 - - - 12 12q24.33 uncharacterized LOC100128002 unknown - - - - 20121230 -9606 100128004 RPL32P21 - RPL32_13_977 HGNC:36363 9 9p13.2 ribosomal protein L32 pseudogene 21 pseudo RPL32P21 ribosomal protein L32 pseudogene 21 O - 20121230 -9606 100128006 LOC100128006 - - - 17 17p12 uncharacterized LOC100128006 unknown - - - - 20120511 -9606 100128007 LOC100128007 - - - 17 17p13.1 Spi-C transcription factor (Spi-1/PU.1 related) pseudogene pseudo - - - - 20121230 -9606 100128010 LOC100128010 - - - 17 17q21.32 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100128011 FAR1P1 - - HGNC:39675 13 13q31.3 fatty acyl CoA reductase 1 pseudogene 1 pseudo FAR1P1 fatty acyl CoA reductase 1 pseudogene 1 O - 20121230 -9606 100128012 ISCA1P4 - - HGNC:38025 15 15q15.1 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 4 pseudo ISCA1P4 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 4 O - 20121230 -9606 100128015 HMGN1P26 - - HGNC:39370 15 15q22.2 high mobility group nucleosome binding domain 1 pseudogene 26 pseudo HMGN1P26 high mobility group nucleosome binding domain 1 pseudogene 26 O - 20121230 -9606 100128016 WHSC1L2P - HsT36289|NSD4P|WHSC1L1P HGNC:14647 17 17q21.31 Wolf-Hirschhorn syndrome candidate 1-like 2, pseudogene pseudo WHSC1L2P Wolf-Hirschhorn syndrome candidate 1-like 2, pseudogene O - 20121230 -9606 100128017 TULP3P1 RP11-65L19.2 - HGNC:39262 13 13q32.1 tubby like protein 3 pseudogene 1 pseudo TULP3P1 tubby like protein 3 pseudogene 1 O - 20121230 -9606 100128019 LOC100128019 - - - 7 7p11.2 uncharacterized LOC100128019 unknown - - - - 20120511 -9606 100128020 ACTR3P3 - - HGNC:38679 3 3q12.2 ARP3 actin-related protein 3 homolog (yeast) pseudogene 3 pseudo ACTR3P3 ARP3 actin-related protein 3 homolog (yeast) pseudogene 3 O - 20121230 -9606 100128022 LOC100128022 - - - 18 18q21.32 pleckstrin homology domain containing, family B (evectins) member 2 pseudogene pseudo - - - - 20121230 -9606 100128023 DPPA2P3 - - HGNC:44628 3 3q29 developmental pluripotency associated 2 pseudogene 3 pseudo DPPA2P3 developmental pluripotency associated 2 pseudogene 3 O - 20121230 -9606 100128025 WWTR1-AS1 - - HGNC:41035 3 3q25.1 WWTR1 antisense RNA 1 miscRNA WWTR1-AS1 WWTR1 antisense RNA 1 O - 20121230 -9606 100128027 LOC100128027 - - - 2 2p16.1 cysteine-rich, DPF motif domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100128028 LOC100128028 - - - 20 20q13.12 uncharacterized LOC100128028 unknown - - - - 20121230 -9606 100128029 LOC100128029 - - - 2 2p16.3 chromosome 16 open reading frame 88 pseudogene pseudo - - - - 20121230 -9606 100128030 RPL10P11 - RPL10_4_817 HGNC:36565 7 7q21.11 ribosomal protein L10 pseudogene 11 pseudo RPL10P11 ribosomal protein L10 pseudogene 11 O - 20121230 -9606 100128033 LOC100128033 - - - 20 20q11.22 phosphatidylinositol glycan anchor biosynthesis, class P pseudogene pseudo - - - - 20121230 -9606 100128035 LOC100128035 UNQ5840 - - 3 3q13.2 VGSA5840 unknown - - - - 20120710 -9606 100128036 KLF7P1 - KLF7P HGNC:17207 3 3q26.2 kruppel-like factor 7 pseudogene 1 pseudo KLF7P1 kruppel-like factor 7 pseudogene 1 O - 20121230 -9606 100128041 LOC100128041 - - - 10 10q21.3 keratin 19 pseudogene pseudo - - - - 20121230 -9606 100128042 BRD7P6 - - HGNC:37632 2 2p13.3 bromodomain containing 7 pseudogene 6 pseudo BRD7P6 bromodomain containing 7 pseudogene 6 O - 20121230 -9606 100128043 LOC100128043 - - - 10 10q23.32 Fas associated factor family member 2 pseudogene pseudo - - - - 20121230 -9606 100128044 HNRNPA1P11 - - HGNC:39129 18 18q22.3 heterogeneous nuclear ribonucleoprotein A1 pseudogene 11 pseudo HNRNPA1P11 heterogeneous nuclear ribonucleoprotein A1 pseudogene 11 O - 20121230 -9606 100128045 LOC100128045 - - - 3 3p12.3 uncharacterized LOC100128045 pseudo - - - - 20121209 -9606 100128046 PP13439 - - - 3 3q26.31 uncharacterized LOC100128046 unknown - - - - 20121221 -9606 100128048 LOC100128048 - - - 2 2p21 cysteine and histidine-rich domain (CHORD) containing 1 pseudogene pseudo - - - - 20121230 -9606 100128050 LOC100128050 - - - 4 4q31.3 WD repeat domain 77 pseudogene pseudo - - - - 20121230 -9606 100128052 LOC100128052 - - - 7 7q33 protein phosphatase 2, regulatory subunit B', gamma pseudogene pseudo - - - - 20121230 -9606 100128054 LOC100128054 - - - 10 10q23.33 uncharacterized LOC100128054 miscRNA - - - - 20121230 -9606 100128055 SMARCA5-AS1 - - HGNC:39982 4 4q31.21 SMARCA5 antisense RNA 1 unknown SMARCA5-AS1 SMARCA5 antisense RNA 1 O - 20121230 -9606 100128056 LOC100128056 - - - 7 7q31.1 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 2 pseudogene pseudo - - - - 20121230 -9606 100128057 NIPA2P3 - - HGNC:42043 21 21q21.1 non imprinted in Prader-Willi/Angelman syndrome 2 pseudogene 3 pseudo NIPA2P3 non imprinted in Prader-Willi/Angelman syndrome 2 pseudogene 3 O - 20121230 -9606 100128059 LOC100128059 - - - 5 5q35.1 uncharacterized LOC100128059 unknown - - - - 20121230 -9606 100128060 RPS7P10 - - HGNC:39903 13 13q12.11 ribosomal protein S7 pseudogene 10 pseudo RPS7P10 ribosomal protein S7 pseudogene 10 O - 20121230 -9606 100128061 LOC100128061 - - - 2 2q24.1 heterogeneous nuclear ribonucleoprotein D-like pseudogene pseudo - - - - 20121230 -9606 100128062 SLC2A3P1 - GLUT3P1|GLUT6|SLC2A3P HGNC:11008 5 5q34 solute carrier family 2 (facilitated glucose transporter), member 3 pseudogene 1 pseudo SLC2A3P1 solute carrier family 2 (facilitated glucose transporter), member 3 pseudogene 1 O - 20121230 -9606 100128063 LOC100128063 - - - 5 5q35.2 uncharacterized LOC100128063 unknown - - - - 20120508 -9606 100128071 FAM229A - - HGNC:44652|Ensembl:ENSG00000225828|Vega:OTTHUMG00000007587 1 1p35.1 family with sequence similarity 229, member A protein-coding FAM229A family with sequence similarity 229, member A O uncharacterized protein LOC100128071 20121230 -9606 100128072 RPL36AP27 - RPL36A_9_808 HGNC:35650 7 7p13 ribosomal protein L36a pseudogene 27 pseudo RPL36AP27 ribosomal protein L36a pseudogene 27 O - 20121230 -9606 100128075 LOC100128075 - - - 14 14q31.3 uncharacterized LOC100128075 unknown - - - - 20121230 -9606 100128076 LOC100128076 - - - 9 9q22.31 protein tyrosine phosphatase pseudogene pseudo - - - - 20121230 -9606 100128077 LOC100128077 - - - 9 9q34.11 uncharacterized LOC100128077 unknown - - - - 20121230 -9606 100128078 LOC100128078 - - - 20 20p11.21 NIPA-like domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100128079 LOC100128079 - - - 16 16p11.2 uncharacterized LOC100128079 unknown - - - - 20120511 -9606 100128081 JAZF1-AS1 - - HGNC:41218 7 7p15.1 JAZF1 antisense RNA 1 miscRNA JAZF1-AS1 JAZF1 antisense RNA 1 O - 20121230 -9606 100128083 RPS15AP40 - RPS15A_26_1770 HGNC:36041 X Xp21.1 ribosomal protein S15a pseudogene 40 pseudo RPS15AP40 ribosomal protein S15a pseudogene 40 O - 20121230 -9606 100128086 LOC100128086 - - - 9 9q31.2 APAF1 interacting protein pseudogene pseudo - - - - 20121230 -9606 100128088 LOC100128088 - - - 11 11q22.2 matrix metallopeptidase 1-like protein-coding - - - - 20121102 -9606 100128091 LOC100128091 - - - 1 1p34.2 coiled-coil domain containing 25 pseudogene pseudo - - - - 20121230 -9606 100128092 PRDX3P2 - - HGNC:39265 1 1p35.3 peroxiredoxin 3 pseudogene 2 pseudo PRDX3P2 peroxiredoxin 3 pseudogene 2 O - 20121230 -9606 100128093 LOC100128093 - - - 1 1p34.3 magnesium transporter 1 pseudogene pseudo - - - - 20121230 -9606 100128094 LPCAT2BP - - HGNC:38003 1 1p22.1 lysophosphatidylcholine acyltransferase 2b, pseudogene pseudo LPCAT2BP lysophosphatidylcholine acyltransferase 2b, pseudogene O - 20121230 -9606 100128098 ST8SIA6-AS1 - - HGNC:44880 10 10p12.33 ST8SIA6 antisense RNA 1 miscRNA ST8SIA6-AS1 ST8SIA6 antisense RNA 1 O - 20121230 -9606 100128102 LOC100128102 - - - 11 11q21 prohibitin-like pseudo - - - - 20121209 -9606 100128103 LOC100128103 - - - 16 16p11.1 angiogenic factor with G patch and FHA domains 1 pseudogene pseudo - - - - 20121230 -9606 100128105 LOC100128105 - - - 17 17q25.3 uncharacterized LOC100128105 unknown - - - - 20121230 -9606 100128107 LOC100128107 - - - 19 19q13.32 uncharacterized LOC100128107 protein-coding - - - - 20121018 -9606 100128108 LOC100128108 - - - 15 15q26.3 uncharacterized LOC100128108 miscRNA - - - - 20121209 -9606 100128109 LOC100128109 - - - 12 12p12.3 MEF2B neighbor pseudogene pseudo - - - - 20121230 -9606 100128110 CHCHD2P3 - - HGNC:39587 19 19q13.11 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 3 pseudo CHCHD2P3 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 3 O - 20121230 -9606 100128115 RPL26P35 - RPL26_15_1614 HGNC:36278 18 18q23 ribosomal protein L26 pseudogene 35 pseudo RPL26P35 ribosomal protein L26 pseudogene 35 O - 20121230 -9606 100128117 RPL17P15 - RPL17_5_269 HGNC:36889 2 2q14.2 ribosomal protein L17 pseudogene 15 pseudo RPL17P15 ribosomal protein L17 pseudogene 15 O - 20121230 -9606 100128118 LOC100128118 - - - 4 4q34.3 cyclin H pseudogene pseudo - - - - 20121230 -9606 100128119 SLC25A51P3 - MCART5P HGNC:31051 8 8q21.13 solute carrier family 25, member 51 pseudogene 3 pseudo SLC25A51P3 solute carrier family 25, member 51 pseudogene 3 O - 20121230 -9606 100128121 LOC100128121 - - - 5 5q31.3 60S ribosomal protein L9-like pseudo - - - - 20121209 -9606 100128122 LOC100128122 - - - X Xq24 Cbl proto-oncogene, E3 ubiquitin protein ligase-like 1 pseudogene pseudo - - - - 20121230 -9606 100128124 HGC6.3 - - - 6 6q27 uncharacterized LOC100128124 protein-coding - - - uncharacterized protein LOC100128124 20121230 -9606 100128126 STAU2-AS1 - - HGNC:44101 8 8q21.11 STAU2 antisense RNA 1 miscRNA STAU2-AS1 STAU2 antisense RNA 1 O - 20121230 -9606 100128127 LOC100128127 - - - 10 10q26.3 uncharacterized LOC100128127 pseudo - - - - 20121209 -9606 100128130 LOC100128130 - - - 2 2q13 uncharacterized LOC100128130 unknown - - - - 20121230 -9606 100128131 LOC100128131 - - - 2 2q12.1 uncharacterized LOC100128131 miscRNA - - - - 20121209 -9606 100128132 TMCC1P1 - TMCC1P HGNC:31901 8 8q23.1 transmembrane and coiled-coil domain family 1 pseudogene 1 pseudo TMCC1P1 transmembrane and coiled-coil domain family 1 pseudogene 1 O - 20121230 -9606 100128135 GVINP2 - - HGNC:38876 11 11p15.4 GTPase, very large interferon inducible pseudogene 2 pseudo GVINP2 GTPase, very large interferon inducible pseudogene 2 O - 20121230 -9606 100128136 LOC100128136 - - - 9 9p13.3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa pseudogene pseudo - - - - 20121230 -9606 100128139 LOC100128139 - - - 19 19p12 uncharacterized LOC100128139 miscRNA - - - - 20121209 -9606 100128140 RPS4XP17 - RPS4P17|RPS4X_7_1505 HGNC:36789 17 17p13.3 ribosomal protein S4X pseudogene 17 pseudo RPS4XP17 ribosomal protein S4X pseudogene 17 O - 20121230 -9606 100128144 LOC100128144 - - - 19 19p13.3 ribosomal protein L32 pseudogene pseudo - - - - 20121230 -9606 100128145 CLCP2 RP11-569D9.3 LGALS10P1 HGNC:42536 13 13q34 Charcot-Leyden crystal protein pseudogene 2 pseudo CLCP2 Charcot-Leyden crystal protein pseudogene 2 O - 20121230 -9606 100128154 LOC100128154 - - - 5 5q11.2 KIAA1919 pseudogene pseudo - - - - 20121230 -9606 100128159 ATF1P1 - - HGNC:37691 6 6q16.1 activating transcription factor 1 pseudogene 1 pseudo ATF1P1 activating transcription factor 1 pseudogene 1 O - 20121230 -9606 100128160 LOC100128160 - - - 3 3p13 uncharacterized LOC100128160 protein-coding - - - - 20120511 -9606 100128162 RPS6P7 - RPS6_3_716 HGNC:36092 6 6q14.1 ribosomal protein S6 pseudogene 7 pseudo RPS6P7 ribosomal protein S6 pseudogene 7 O - 20121230 -9606 100128164 LOC100128164 - - - 3 3q26.2 four and a half LIM domains 1 pseudogene pseudo - - - - 20121230 -9606 100128168 RPS26P39 - RPS26_21_1107 HGNC:36958 10 10q26.13 ribosomal protein S26 pseudogene 39 pseudo RPS26P39 ribosomal protein S26 pseudogene 39 O - 20121230 -9606 100128170 LOC100128170 - - - 20 20q13.12 uncharacterized LOC100128170 protein-coding - - - - 20120511 -9606 100128171 LOC100128171 - - - X Xq12 mitochondrial fission regulator 1 pseudogene pseudo - - - - 20121230 -9606 100128172 LOC100128172 - - - 20 20q13.33 uncharacterized LOC100128172 protein-coding - - - - 20120511 -9606 100128174 LOC100128174 - - - 8 8p23.1 defensin, beta 131 pseudogene pseudo - - - - 20121230 -9606 100128175 LOC100128175 - - - 3 3q13.31 uncharacterized LOC100128175 unknown - - - - 20120710 -9606 100128176 LOC100128176 - - - 6 6q25.1 uncharacterized LOC100128176 miscRNA - - - - 20121230 -9606 100128177 NDUFS5P5 - - HGNC:44043 4 4q26 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 5 pseudo NDUFS5P5 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 5 O - 20121230 -9606 100128178 LOC100128178 - - - 1 1q24.3 uncharacterized LOC100128178 unknown - - - - 20120909 -9606 100128179 LOC100128179 - - - 3 3q13.11 RAP1B, member of RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100128180 LOC100128180 - - - 4 4q24 PRO2116 unknown - - - - 20121006 -9606 100128181 FMO10P - - HGNC:32211 1 1q24.1 flavin containing monooxygenase 10, pseudogene pseudo FMO10P flavin containing monooxygenase 10, pseudogene O - 20121230 -9606 100128183 PABPC1P7 - - HGNC:37987 4 4q24 poly(A) binding protein, cytoplasmic 1 pseudogene 7 pseudo PABPC1P7 poly(A) binding protein, cytoplasmic 1 pseudogene 7 O - 20121230 -9606 100128184 LOC100128184 - - - 20 20q13.33 uncharacterized LOC100128184 protein-coding - - - - 20120511 -9606 100128185 LOC100128185 - - - 2 2p25.3 PNAS-19 unknown - - - - 20120710 -9606 100128190 SLC9B1P1 - NHEDC1P1 HGNC:37492 Y Yq11.21 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 1 pseudo SLC9B1P1 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 1 O - 20121230 -9606 100128191 TMPO-AS1 - - HGNC:44158 12 12q23.1 TMPO antisense RNA 1 miscRNA TMPO-AS1 TMPO antisense RNA 1 O - 20121230 -9606 100128198 LOC100128198 - - - 21 21q22.11 uncharacterized LOC100128198 protein-coding - - - - 20120508 -9606 100128202 FLJ25694 - - - 13 13q21.31 uncharacterized protein FLJ25694 other - - - - 20121102 -9606 100128203 ENSAP3 - - HGNC:37946 2 2q35 endosulfine alpha pseudogene 3 pseudo ENSAP3 endosulfine alpha pseudogene 3 O - 20121230 -9606 100128210 LOC100128210 - - - 11 11q12.1 ubiquitin carboxyl-terminal esterase L1 (ubiquitin thiolesterase) pseudogene pseudo - - - - 20121230 -9606 100128217 LOC100128217 - - - 7 7p21.2 general transcription factor IIIA pseudogene pseudo - - - - 20121230 -9606 100128218 PSMC6P3 - - HGNC:34012 5 5p13.2 proteasome 26S subunit, ATPase, 6 pseudogene 3 pseudo PSMC6P3 proteasome 26S subunit, ATPase, 6 pseudogene 3 O - 20121230 -9606 100128219 LOC100128219 - - - 18 18p11.23 uncharacterized LOC100128219 unknown - - - - 20120511 -9606 100128220 EDDM3DP - - HGNC:37707 14 14q11.2 epididymal protein 3D, pseudogene pseudo EDDM3DP epididymal protein 3D, pseudogene O - 20121230 -9606 100128226 LOC100128226 - - - 11 11q23.1 hypothetic protein unknown - - - - 20120511 -9606 100128227 HMGB1P20 - - HGNC:39103 6 6p12.1 high mobility group box 1 pseudogene 20 pseudo HMGB1P20 high mobility group box 1 pseudogene 20 O - 20121230 -9606 100128233 LOC100128233 - - - 14 14q23.3 uncharacterized LOC100128233 miscRNA - - - - 20120710 -9606 100128236 GAFA3 - - - 4 4p14 FGF-2 activity-associated protein 3 unknown - - - - 20120710 -9606 100128237 YRDCP2 - - HGNC:39920 9 9q22.33 yrdC domain containing (E. coli) pseudogene 2 pseudo YRDCP2 yrdC domain containing (E. coli) pseudogene 2 O - 20121230 -9606 100128238 LOC100128238 - - - 18 18p11.22 KIAA0895-like pseudogene pseudo - - - - 20121230 -9606 100128239 LOC100128239 - - - 11 11q25 uncharacterized LOC100128239 miscRNA - - - - 20121230 -9606 100128240 CD83P1 - CD83P|HB15p|b34I8.3 HGNC:13946 6 6p22.1 CD83 molecule pseudogene 1 pseudo CD83P1 CD83 molecule pseudogene 1 O - 20121230 -9606 100128242 LOC100128242 - - - 11 11q24.1 uncharacterized LOC100128242 unknown - - - - 20121230 -9606 100128248 LOC100128248 - - - 12 12q12 mesoderm development candidate 2 pseudogene pseudo - - - - 20121230 -9606 100128250 RPL31P55 - RPL31_31_1463 HGNC:36982 15 15q26.2 ribosomal protein L31 pseudogene 55 pseudo RPL31P55 ribosomal protein L31 pseudogene 55 O - 20121230 -9606 100128252 LOC100128252 - - - 19 19q13.43 uncharacterized LOC100128252 miscRNA - - - - 20121230 -9606 100128253 LOC100128253 - - - 12 12p13.32 uncharacterized LOC100128253 unknown - - - - 20121102 -9606 100128254 FAM90A28P - - HGNC:43747 19 19q13.42 family with sequence similarity 90, member A28, pseudogene pseudo FAM90A28P family with sequence similarity 90, member A28, pseudogene O - 20121230 -9606 100128258 RPS18P3 - RPS18_2_171 HGNC:36198 1 1q42.13 ribosomal protein S18 pseudogene 3 pseudo RPS18P3 ribosomal protein S18 pseudogene 3 O - 20121230 -9606 100128260 WASIR1 hCG_1742852 NCRNA00286B HGNC:38513 X|Y Xq28; Yq12 WASH and IL9R antisense RNA 1 miscRNA WASIR1 WASH and IL9R antisense RNA 1 O - 20121021 -9606 100128262 LOC100128262 - - - 3 3q29 uncharacterized LOC100128262 unknown - - - - 20121230 -9606 100128264 LOC100128264 - - - 7 7q36.2 uncharacterized LOC100128264 miscRNA - - - - 20121230 -9606 100128265 LOC100128265 - - - X Xq27.3 uncharacterized LOC100128265 protein-coding - - - - 20121221 -9606 100128266 RANP6 - - HGNC:39861 4 4q34.1 RAN, member RAS oncogene family pseudogene 6 pseudo RANP6 RAN, member RAS oncogene family pseudogene 6 O - 20121230 -9606 100128268 LOC100128268 - - - X Xq25 actin-related protein T1 pseudogene pseudo - - - - 20121230 -9606 100128274 LOC100128274 - - - 9 9p21.1 putative p150 protein-coding - - - uncharacterized protein LOC100128274 20120318 -9606 100128275 SYF2P2 - - HGNC:38139 9 9p13.3 SYF2 homolog, RNA splicing factor (S. cerevisiae) pseudogene 2 pseudo SYF2P2 SYF2 homolog, RNA splicing factor (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100128276 LOC100128276 - - - 12 12q24.33 uncharacterized LOC100128276 unknown - - - - 20121230 -9606 100128277 RPL35AP20 - RPL35A_9_959 HGNC:36053 9 9p24.1 ribosomal protein L35a pseudogene 20 pseudo RPL35AP20 ribosomal protein L35a pseudogene 20 O - 20121230 -9606 100128281 LOC100128281 - - - 17 17p13.1 uncharacterized LOC100128281 unknown - - - - 20120511 -9606 100128284 LOC100128284 - - - 17 17p13.2 nipsnap homolog 1 (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100128285 DNM1P35 hCG_1739398 DNM1DN8-2|DNM1DN8.2|DNM1DN8@|FKSG88 HGNC:35182 15 15q24.2 DNM1 pseudogene 35 pseudo DNM1P35 DNM1 pseudogene 35 O - 20121230 -9606 100128288 LOC100128288 - - - 17 17p13.1 uncharacterized LOC100128288 miscRNA - - - - 20121230 -9606 100128292 LOC100128292 - - - 10 10q22.3 uncharacterized LOC100128292 miscRNA - - - - 20121230 -9606 100128293 LOC100128293 - - - 6 6q12 histone-lysine N-methyltransferase SUV39H2-like pseudo - - - - 20121230 -9606 100128297 LOC100128297 - - - 4 4q21.1 serine/arginine-rich splicing factor 10 pseudogene pseudo - - - - 20121230 -9606 100128298 OCR1 - - - 1 1q32.1 ovarian cancer-related protein 1 unknown - - - - 20120511 -9606 100128299 SOCS5P2 - - HGNC:44598 9 9q34.3 suppressor of cytokine signaling 5 pseudogene 2 pseudo SOCS5P2 suppressor of cytokine signaling 5 pseudogene 2 O - 20121230 -9606 100128302 LOC100128302 - - - 10 10q23.32 succinate dehydrogenase complex, subunit C, integral membrane protein, 15kDa pseudogene pseudo - - - - 20121230 -9606 100128305 RPS13P1 - RPS13_1_111 HGNC:36309 1 1q24.1 ribosomal protein S13 pseudogene 1 pseudo RPS13P1 ribosomal protein S13 pseudogene 1 O - 20121230 -9606 100128307 LOC100128307 - - - 7 7q31.1 phosphatidylinositol glycan anchor biosynthesis, class C pseudogene pseudo - - - - 20121230 -9606 100128310 LOC100128310 RP11-429E11.3 - - 20 20q13.33 uncharacterized LOC100128310 unknown - - - - 20121230 -9606 100128312 SLC25A6P6 - - HGNC:43855 6 6q13 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene 6 pseudo SLC25A6P6 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene 6 O - 20121230 -9606 100128317 LOC100128317 - - - 7 7q21.11 uncharacterized LOC100128317 protein-coding - - - - 20120511 -9606 100128318 RPL26P17 - RPL26_8_492 HGNC:35662 4 4q21.1 ribosomal protein L26 pseudogene 17 pseudo RPL26P17 ribosomal protein L26 pseudogene 17 O - 20121230 -9606 100128320 LOC100128320 - - - 10 10q24.1 uncharacterized LOC100128320 protein-coding - - - - 20120511 -9606 100128324 EXOGP1 - - HGNC:44547 18 18q11.1 endo/exonuclease (5'-3'), endonuclease G-like pseudogene 1 pseudo EXOGP1 endo/exonuclease (5'-3'), endonuclease G-like pseudogene 1 O - 20121230 -9606 100128325 LOC100128325 - - - 7 7q32.2 uncharacterized LOC100128325 unknown - - - - 20120511 -9606 100128326 LOC100128326 - - - 7 7p11.2 putative uncharacterized protein FLJ92257-like protein-coding - - - - 20121209 -9606 100128327 BET3L RP11-259P20.2 TRAPPC3L|bA259P20.2 HGNC:21090|MIM:614137|Ensembl:ENSG00000173626|Vega:OTTHUMG00000015440 6 6q22.1 BET3 like (S. cerevisiae) protein-coding BET3L BET3 like (S. cerevisiae) O BET3-like protein|TRAPPC3-like protein|trafficking protein particle complex subunit 3-like protein 20121230 -9606 100128329 PRO2958 - - - 2 2p24.3 uncharacterized LOC100128329 unknown - - - - 20121006 -9606 100128333 LOC100128333 - - - 2 2p14 uncharacterized LOC100128333 unknown - - - - 20121018 -9606 100128334 LOC100128334 - - - 7 7q22.1 gap junction protein, gamma 3, 30.2kDa pseudogene pseudo - - - - 20121230 -9606 100128335 LOC100128335 - - - 12 12q21.31 WD repeat domain 12 pseudogene pseudo - - - - 20121230 -9606 100128337 IPO7P2 RP11-309I15.2 - HGNC:39838 13 13q12.12 importin 7 pseudogene 2 pseudo IPO7P2 importin 7 pseudogene 2 O - 20121230 -9606 100128338 LOC100128338 hCG_1995004 - - 8 8q24.3 uncharacterized LOC100128338 miscRNA - - - - 20121230 -9606 100128339 BCAS2P3 - - HGNC:39596 13 13q31.1 breast carcinoma amplified sequence 2 pseudogene 3 pseudo BCAS2P3 breast carcinoma amplified sequence 2 pseudogene 3 O - 20121230 -9606 100128340 LOC100128340 - - - 5 5q35.3 uncharacterized LOC100128340 unknown - - - - 20121230 -9606 100128341 RBMX2P1 - - HGNC:39923 21 21q11.2 RNA binding motif protein, X-linked 2 pseudogene 1 pseudo RBMX2P1 RNA binding motif protein, X-linked 2 pseudogene 1 O - 20121230 -9606 100128343 LOC100128343 - - - 14 14q32.33 uncharacterized LOC100128343 unknown - - - - 20121230 -9606 100128345 LOC100128345 - - - X Xp21.1 nuclear transcription factor Y, gamma pseudogene pseudo - - - - 20121230 -9606 100128347 RPL15P15 - RPL15_4_1179 HGNC:36780 11 11q23.3 ribosomal protein L15 pseudogene 15 pseudo RPL15P15 ribosomal protein L15 pseudogene 15 O - 20121230 -9606 100128348 LOC100128348 - - - 16 16p11.2 uncharacterized LOC100128348 protein-coding - - - - 20120511 -9606 100128351 RPL21P52 - RPL21_16_474 HGNC:36621 4 4p12 ribosomal protein L21 pseudogene 52 pseudo RPL21P52 ribosomal protein L21 pseudogene 52 O - 20121230 -9606 100128355 LOC100128355 - - - X Xp22.33 ribosomal protein S27a pseudogene pseudo - - - - 20121230 -9606 100128356 LOC100128356 - - - 10 10p15.1 protein transactivated by hepatitis B virus E antigen unknown - - - - 20121230 -9606 100128358 RPS6P24 - RPS6_12_1345 HGNC:36070 14 14q12 ribosomal protein S6 pseudogene 24 pseudo RPS6P24 ribosomal protein S6 pseudogene 24 O - 20121230 -9606 100128360 LOC100128360 - - - 18 18p11.32 axin interactor, dorsalization associated pseudogene pseudo - - - - 20121230 -9606 100128361 LOC100128361 - - - 9 9q22.31 uncharacterized LOC100128361 miscRNA - - - - 20121230 -9606 100128362 LOC100128362 - - - 1 1p34.2 protein phosphatase 2, catalytic subunit, alpha isozyme pseudogene pseudo - - - - 20121230 -9606 100128364 LOC100128364 - - - 7 7p13 uncharacterized LOC100128364 unknown - - - - 20121230 -9606 100128365 LOC100128365 - - - 6 6p22.3 interferon stimulated exonuclease gene 20kDa-like 2 pseudogene pseudo - - - - 20121230 -9606 100128366 LOC100128366 - - - 14 14q32.33 uncharacterized LOC100128366 pseudo - - - - 20121209 -9606 100128368 VN1R21P - - HGNC:37336 3 3p25.1 vomeronasal 1 receptor 21 pseudogene pseudo VN1R21P vomeronasal 1 receptor 21 pseudogene O - 20121230 -9606 100128371 LOC100128371 - - - 16 16p11.2 uncharacterized LOC100128371 unknown - - - - 20121230 -9606 100128372 HMGN2P28 - - HGNC:39395 6 6p25.2 high mobility group nucleosomal binding domain 2 pseudogene 28 pseudo HMGN2P28 high mobility group nucleosomal binding domain 2 pseudogene 28 O - 20121230 -9606 100128373 LOC100128373 - - - 14 14q32.31 AKT interacting protein pseudogene pseudo - - - - 20121230 -9606 100128374 LOC100128374 - - - 7 7p22.3 uncharacterized LOC100128374 unknown - - - - 20121230 -9606 100128377 RPS29P7 - RPS29_2_60 HGNC:36594 1 1p31.3 ribosomal protein S29 pseudogene 7 pseudo RPS29P7 ribosomal protein S29 pseudogene 7 O - 20121230 -9606 100128378 LINC00696 - C3orf74 HGNC:34426 3 3p21.2 long intergenic non-protein coding RNA 696 miscRNA LINC00696 long intergenic non-protein coding RNA 696 O - 20121230 -9606 100128379 LOC100128379 - - - 6 6p21.2 TRK-fused gene pseudogene pseudo - - - - 20121230 -9606 100128384 VN1R65P - - HGNC:37385 16 16p11.2 vomeronasal 1 receptor 65 pseudogene pseudo VN1R65P vomeronasal 1 receptor 65 pseudogene O - 20121230 -9606 100128385 FAM225B - C9orf110|LINC00256B|NCRNA00256B HGNC:21865 9 9q32 family with sequence similarity 225, member B (non-protein coding) miscRNA FAM225B family with sequence similarity 225, member B (non-protein coding) O - 20121230 -9606 100128386 LOC100128386 - - - 11 11q22.1 uncharacterized LOC100128386 unknown - - - - 20120511 -9606 100128390 CALM2P1 - - HGNC:1446 17 17q24.3 calmodulin 2 pseudogene 1 pseudo CALM2P1 calmodulin 2 pseudogene 1 O - 20121230 -9606 100128393 RPL35AP36 - RPL35A_20_1756 HGNC:36103 22 22q13.31 ribosomal protein L35a pseudogene 36 pseudo RPL35AP36 ribosomal protein L35a pseudogene 36 O - 20121230 -9606 100128397 MKI67IPP5 - - HGNC:44953 15 15q26.1 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 5 pseudo MKI67IPP5 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 5 O - 20121230 -9606 100128398 LOC100128398 - - - 19 19q13.43 uncharacterized LOC100128398 miscRNA - - - - 20121230 -9606 100128400 LOC100128400 - - - 22 22q13.1 uncharacterized LOC100128400 unknown - - - - 20121209 -9606 100128401 LOC100128401 - - - 22 22q12.1 uncharacterized LOC100128401 unknown - - - - 20120511 -9606 100128402 LOC100128402 - - - 12 12p13.31 uncharacterized LOC100128402 protein-coding - - - - 20120511 -9606 100128406 AZFP - - - 2 2q21.2 AML-associated zinc finger protein unknown - - - - 20121230 -9606 100128407 LOC100128407 - - - 5 5q23.1 N-acetylneuraminic acid phosphatase pseudogene pseudo - - - - 20121230 -9606 100128408 RPL22P10 - RPL22_3_253 HGNC:36559 2 2q12.2 ribosomal protein L22 pseudogene 10 pseudo RPL22P10 ribosomal protein L22 pseudogene 10 O - 20121230 -9606 100128410 LOC100128410 - - - X Xq25 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100128412 LOC100128412 - - - 8 8q21.3 Vps20-associated 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100128413 LOC100128413 - - - 2 2q13 X-linked inhibitor of apoptosis pseudogene pseudo - - - - 20121230 -9606 100128416 LOC100128416 - - - X Xq26.3 RAB28, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100128420 LOC100128420 RP3-527F8.2 - Vega:OTTHUMG00000022511 X Xq26.3 uncharacterized LOC100128420 miscRNA - - - - 20121230 -9606 100128423 RPS24P14 - RPS24_4_1115 HGNC:35744 11 11p15.4 ribosomal protein S24 pseudogene 14 pseudo RPS24P14 ribosomal protein S24 pseudogene 14 O - 20121230 -9606 100128427 LOC100128427 - - - 11 11p11.12 upstream binding transcription factor, RNA polymerase I pseudogene pseudo - - - - 20121230 -9606 100128428 LOC100128428 - - - 19 19p13.2 UBX domain protein 2A pseudogene pseudo - - - - 20121230 -9606 100128429 LOC100128429 - - - 19 19p13.11 uncharacterized LOC100128429 protein-coding - - - - 20120511 -9606 100128430 LOC100128430 - - - 13 13q34 uncharacterized LOC100128430 protein-coding - - - uncharacterized protein LOC100128430 20120511 -9606 100128431 GEMIN8P1 - FAM51A2P|GEMIN8P HGNC:31818 15 15q23 gem (nuclear organelle) associated protein 8 pseudogene 1 pseudo GEMIN8P1 gem (nuclear organelle) associated protein 8 pseudogene 1 O - 20121230 -9606 100128437 LOC100128437 - - - 15 15q22.2 uncharacterized LOC100128437 protein-coding - - - - 20120511 -9606 100128441 LOC100128441 - - - 8 8p12 general transcription factor IIA, 2, 12kDa pseudogene pseudo - - - - 20121230 -9606 100128442 LOC100128442 - - - X Xp11.3 serine/arginine-rich splicing factor 6 pseudogene pseudo - - - - 20121230 -9606 100128448 UQCRHP4 - - HGNC:38047 3 3p13 ubiquinol-cytochrome c reductase hinge protein pseudogene 4 pseudo UQCRHP4 ubiquinol-cytochrome c reductase hinge protein pseudogene 4 O - 20121230 -9606 100128449 IL9RP1 - - HGNC:6031 9 9q34.3 interleukin 9 receptor pseudogene 1 pseudo IL9RP1 interleukin 9 receptor pseudogene 1 O - 20121230 -9606 100128450 RPS6P8 - RPS6_3_713 HGNC:36999 6 6q13 ribosomal protein S6 pseudogene 8 pseudo RPS6P8 ribosomal protein S6 pseudogene 8 O - 20121230 -9606 100128454 LOC100128454 - - - X Xp11.22 39S ribosomal protein L32, mitochondrial-like pseudo - - - - 20121209 -9606 100128456 CCNB1IP1P3 - - HGNC:37695 X Xq21.33 cyclin B1 interacting protein 1 pseudogene 3 pseudo CCNB1IP1P3 cyclin B1 interacting protein 1 pseudogene 3 O - 20121230 -9606 100128457 LOC100128457 - - - 4 4q31.1 uncharacterized LOC100128457 unknown - - - uncharacterized protein LOC100128457 20120511 -9606 100128459 CCNJP1 - CCNJP HGNC:22512 7 7p11.2 cyclin J pseudogene 1 pseudo CCNJP1 cyclin J pseudogene 1 O - 20121230 -9606 100128462 RPF2P2 - - HGNC:44015 4 4q26 ribosome production factor 2 homolog (S. cerevisiae) pseudogene 2 pseudo RPF2P2 ribosome production factor 2 homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100128464 LOC100128464 - - - 7 7q21.12 PET117 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100128465 IFIT6P - - HGNC:38020 10 10q23.31 interferon-induced protein with tetratricopeptide repeats 6, pseudogene pseudo IFIT6P interferon-induced protein with tetratricopeptide repeats 6, pseudogene O - 20121230 -9606 100128467 LOC100128467 - - - X Xq12 nuclear distribution protein nudE-like 1-like pseudo - - - - 20121230 -9606 100128469 LOC100128469 - - - 3 3q25.1 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100128477 LOC100128477 - - - 6 6q21 uncharacterized LOC100128477 unknown - - - - 20121018 -9606 100128482 LOC100128482 - - - 5 5q35.1 uncharacterized LOC100128482 unknown - - - - 20121230 -9606 100128483 LOC100128483 - - - 2 2q34 translationally-controlled tumor protein-like pseudo - - - - 20121209 -9606 100128493 UBE2V2P1 - - HGNC:44885 10 10p12.31 ubiquitin-conjugating enzyme E2 variant 2 pseudogene 1 pseudo UBE2V2P1 ubiquitin-conjugating enzyme E2 variant 2 pseudogene 1 O - 20121230 -9606 100128494 LOC100128494 - - - 11 11q13.4 uncharacterized LOC100128494 miscRNA - - - - 20120511 -9606 100128496 C20orf78 RP5-1068E13.5 dJ1068E13.1 HGNC:16210|Ensembl:ENSG00000149443|Vega:OTTHUMG00000031982 20 20p11.23 chromosome 20 open reading frame 78 protein-coding C20orf78 chromosome 20 open reading frame 78 O putative uncharacterized protein C20orf78 20121230 -9606 100128497 LOC100128497 - - - 16 16q23.1 mitotic spindle assembly checkpoint protein MAD2A-like pseudo - - - - 20121209 -9606 100128498 LOC100128498 - - - 16 16q22.1 uncharacterized LOC100128498 protein-coding - - - - 20121018 -9606 100128501 LOC100128501 - - - 9 9q34.11 uncharacterized LOC100128501 unknown - - - - 20120508 -9606 100128503 DPPA2P2 - - HGNC:44627 1 1p36.11 developmental pluripotency associated 2 pseudogene 2 pseudo DPPA2P2 developmental pluripotency associated 2 pseudogene 2 O - 20121230 -9606 100128505 LOC100128505 - - - 9 9q33.1 uncharacterized LOC100128505 miscRNA - - - - 20121230 -9606 100128508 LOC100128508 - - - 5 5p15.2 PP12100 unknown - - - - 20121230 -9606 100128511 NEBL-AS1 - - HGNC:44899 10 10p12.31 NEBL antisense RNA 1 miscRNA NEBL-AS1 NEBL antisense RNA 1 O - 20121230 -9606 100128512 FXYD6P2 - - HGNC:4032 10 10p11.1 FXYD domain containing ion transport regulator 6 pseudogene 2 pseudo FXYD6P2 FXYD domain containing ion transport regulator 6 pseudogene 2 O - 20121230 -9606 100128514 ARHGAP42P5 - - HGNC:43942 14 14q11.2 Rho GTPase activating protein 42 pseudogene 5 pseudo ARHGAP42P5 Rho GTPase activating protein 42 pseudogene 5 O - 20121230 -9606 100128516 ATP5F1P5 - - HGNC:39746 11 11q24.1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 5 pseudo ATP5F1P5 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 5 O - 20121230 -9606 100128517 LOC100128517 - - - 6 6p23 uncharacterized LOC100128517 protein-coding - - - - 20120511 -9606 100128519 RPS24P11 - RPS24_6_457 HGNC:36050 4 4p16.1 ribosomal protein S24 pseudogene 11 pseudo RPS24P11 ribosomal protein S24 pseudogene 11 O - 20121230 -9606 100128521 LOC100128521 - - - X Xp22.2 tumor protein, translationally-controlled 1 pseudogene pseudo - - - - 20121230 -9606 100128522 HPRTP4 - - HGNC:5162 11 11q21 hypoxanthine phosphoribosyltransferase pseudogene 4 pseudo HPRTP4 hypoxanthine phosphoribosyltransferase pseudogene 4 O - 20121230 -9606 100128523 LOC100128523 - - - 16 16q12.2 mitochondrial carrier 2 pseudogene pseudo - - - - 20121230 -9606 100128525 UQCRFS1P1 - UQCRFSL1 HGNC:12588 22 22q13.1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 pseudogene 1 pseudo UQCRFS1P1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 pseudogene 1 O - 20121230 -9606 100128529 LOC100128529 - - - 19 19q13.32 uncharacterized LOC100128529 protein-coding - - - - 20120511 -9606 100128531 LOC100128531 - - - 22 22q11.23 uncharacterized LOC100128531 miscRNA - - - - 20121230 -9606 100128535 RPS18P14 - RPS18_10_1747 HGNC:36386 22 22q12.2 ribosomal protein S18 pseudogene 14 pseudo RPS18P14 ribosomal protein S18 pseudogene 14 O - 20121230 -9606 100128536 SETP8 - - HGNC:42927 X Xq23 SET pseudogene 8 pseudo SETP8 SET pseudogene 8 O - 20121230 -9606 100128537 C1orf132 AL035209.1 - HGNC:32018 1 1q32.2 chromosome 1 open reading frame 132 unknown C1orf132 chromosome 1 open reading frame 132 O - 20121021 -9606 100128540 LOC100128540 - - - 8 8q12.3 TAR DNA-binding protein 43-like pseudo - - - - 20121209 -9606 100128541 ATP6V1G1P2 - ATP6V1GP2 HGNC:29359 8 8q11.21 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 2 pseudo ATP6V1G1P2 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 2 O - 20121230 -9606 100128542 LOC100128542 tcag7.1033 - - 7 7q36.1 blocked early in transport 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100128546 LOC100128546 - - - X Xq24 glutaredoxin 5 pseudogene pseudo - - - - 20121230 -9606 100128548 LOC100128548 - - - 8 8q22.1 ribosomal protein L17 pseudogene pseudo - - - - 20121230 -9606 100128551 LOC100128551 - - - 6 6q25.3 uncharacterized LOC100128551 protein-coding - - - - 20120511 -9606 100128553 CTAGE4 - cTAGE-4 HGNC:24772|MIM:608910|Ensembl:ENSG00000225932|Vega:OTTHUMG00000157997 7 7q35 CTAGE family, member 4 protein-coding CTAGE4 CTAGE family, member 4 O cutaneous T-cell lymphoma-associated antigen 4|cutaneous-T-cell-lymphoma-specific tumor antigen 4|protein cTAGE-4 20121230 -9606 100128554 LOC100128554 hCG_2015435 - - 12 12q24.32 uncharacterized LOC100128554 miscRNA - - - - 20121230 -9606 100128560 LOC100128560 - - - 17 17p13.1 uncharacterized LOC100128560 unknown - - - - 20120511 -9606 100128563 LOC100128563 - - - 2 2q37.3 uncharacterized LOC100128563 unknown - - - - 20121230 -9606 100128568 LOC100128568 - - - 19 19p13.3 uncharacterized LOC100128568 miscRNA - - - - 20121230 -9606 100128569 C19orf71 - - HGNC:34496|Ensembl:ENSG00000183397|Vega:OTTHUMG00000180764 19 19p13.3 chromosome 19 open reading frame 71 protein-coding C19orf71 chromosome 19 open reading frame 71 O Uncharacterized protein ENSP00000327950|uncharacterized protein C19orf71 20121230 -9606 100128571 LOC100128571 - - - 17 17q21.33 uncharacterized LOC100128571 protein-coding - - - - 20120511 -9606 100128573 LOC100128573 - - - 19 19p13.2 uncharacterized LOC100128573 miscRNA - - - - 20121230 -9606 100128574 ARMCX3-AS1 - - HGNC:41038 X Xq22.1 ARMCX3 antisense RNA 1 unknown ARMCX3-AS1 ARMCX3 antisense RNA 1 O - 20121230 -9606 100128575 LOC100128575 - - - 7 7p11.2 protein FAM182A-like pseudo - - - - 20121209 -9606 100128579 CDKN2AIPNLP2 - - HGNC:39855 2 2p23.3 CDKN2A interacting protein N-terminal like pseudogene 2 pseudo CDKN2AIPNLP2 CDKN2A interacting protein N-terminal like pseudogene 2 O - 20121230 -9606 100128582 SSX10 - - HGNC:34047 X Xp11.23 synovial sarcoma, X breakpoint 10 unknown SSX10 synovial sarcoma, X breakpoint 10 O - 20121021 -9606 100128588 LOC100128588 - - - 6 6q21 PIN2/TERF1 interacting, telomerase inhibitor 1 pseudogene pseudo - - - - 20121230 -9606 100128589 GAPDHP39 - - HGNC:37796 3 3q22.3 glyceraldehyde 3 phosphate dehydrogenase pseudogene 39 pseudo GAPDHP39 glyceraldehyde 3 phosphate dehydrogenase pseudogene 39 O - 20121230 -9606 100128590 SLC8A1-AS1 - - HGNC:44102 2 2p22.1 SLC8A1 antisense RNA 1 miscRNA SLC8A1-AS1 SLC8A1 antisense RNA 1 O - 20121230 -9606 100128591 LOC100128591 - - - 20 20q13.12 uncharacterized LOC100128591 protein-coding - - - - 20120511 -9606 100128592 LOC100128592 - - - 6 6q13 family with sequence similarity 136, member A pseudogene pseudo - - - - 20121230 -9606 100128593 LOC100128593 - - - 9 9q34.3 uncharacterized LOC100128593 miscRNA - - - - 20121230 -9606 100128594 LOC100128594 - - - X Xq22.2 uncharacterized LOC100128594 unknown - - - - 20121117 -9606 100128595 LOC100128595 - - - X Xq21.33 heterogeneous nuclear ribonucleoprotein D-like pseudogene pseudo - - - - 20121230 -9606 100128596 LOC100128596 - - - 7 7q32.3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 9, 22kDa pseudogene pseudo - - - - 20121230 -9606 100128601 LOC100128601 - - - X Xq22.1 zinc finger protein 770 pseudogene pseudo - - - - 20121230 -9606 100128603 LOC100128603 - - - 5 5q11.2 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase, 1 pseudogene pseudo - - - - 20121230 -9606 100128605 RPS15AP13 - RPS15A_3_241 HGNC:36774 2 2p13.2 ribosomal protein S15a pseudogene 13 pseudo RPS15AP13 ribosomal protein S15a pseudogene 13 O - 20121230 -9606 100128607 LOC100128607 - - - 2 2p14 uncharacterized LOC100128607 unknown - - - - 20121221 -9606 100128610 LOC100128610 - - - 6 6q12 UPF0607 protein ENSP00000383144-like pseudogene pseudo - - - - 20121230 -9606 100128617 UBA52P7 - RPL40_2_1281 HGNC:36615 12 12q24.21 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 7 pseudo UBA52P7 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 7 O - 20121230 -9606 100128618 SLC25A3P2 - - HGNC:43784 12 12q24.13 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 pseudogene 2 pseudo SLC25A3P2 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 pseudogene 2 O - 20121230 -9606 100128621 CYB5AP2 - CYB5P2 HGNC:2573 2 2q31.1 cytochrome b5 type A (microsomal) pseudogene 2 pseudo CYB5AP2 cytochrome b5 type A (microsomal) pseudogene 2 O - 20121230 -9606 100128622 LOC100128622 - - - 5 5q35.3 uncharacterized LOC100128622 pseudo - - - - 20121209 -9606 100128625 SRSF1P1 RP11-459J23.2 - HGNC:39417 13 13q21.33 serine/arginine-rich splicing factor 1 pseudogene 1 pseudo SRSF1P1 serine/arginine-rich splicing factor 1 pseudogene 1 O - 20121230 -9606 100128626 PPP1R2P10 - - HGNC:42008 13 13q21.31 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 10 pseudo PPP1R2P10 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 10 O - 20121230 -9606 100128627 CDC42P3 - - HGNC:44427 8 8q24.3 cell division cycle 42 pseudogene 3 pseudo CDC42P3 cell division cycle 42 pseudogene 3 O - 20121230 -9606 100128628 RGS17P1 RP11-2P5.4 - HGNC:39729 13 13q14.11 regulator of G-protein signaling 17 pseudogene 1 pseudo RGS17P1 regulator of G-protein signaling 17 pseudogene 1 O - 20121230 -9606 100128637 EEF1A1P26 - - HGNC:37899 7 7p21.2 eukaryotic translation elongation factor 1 alpha 1 pseudogene 26 pseudo EEF1A1P26 eukaryotic translation elongation factor 1 alpha 1 pseudogene 26 O - 20121230 -9606 100128639 HMGB1P48 - - HGNC:39281 1 1p34.1 high mobility group box 1 pseudogene 48 pseudo HMGB1P48 high mobility group box 1 pseudogene 48 O - 20121230 -9606 100128640 ACVR2B-AS1 - - HGNC:44161 3 3p22.2 ACVR2B antisense RNA 1 miscRNA ACVR2B-AS1 ACVR2B antisense RNA 1 O - 20121230 -9606 100128644 LOC100128644 UNQ6487 - - 3 3p25.1 LMNE6487 unknown - - - - 20121230 -9606 100128646 RPL10AP7 - RPL10A_2_460 HGNC:35601 4 4p15.32 ribosomal protein L10a pseudogene 7 pseudo RPL10AP7 ribosomal protein L10a pseudogene 7 O - 20121230 -9606 100128651 LOC100128651 - - - 4 4p16.1 uncharacterized LOC100128651 protein-coding - - - - 20120622 -9606 100128653 LOC100128653 - - - 7 7p22.3 uncharacterized LOC100128653 unknown - - - - 20121230 -9606 100128655 LOC100128655 - - - 6 6p21.2 ribosomal protein S2 pseudogene pseudo - - - - 20121230 -9606 100128657 CHCHD4P2 - - HGNC:44490 9 9q31.2 coiled-coil-helix-coiled-coil-helix domain containing 4 pseudogene 2 pseudo CHCHD4P2 coiled-coil-helix-coiled-coil-helix domain containing 4 pseudogene 2 O - 20121230 -9606 100128662 RPL27P3 - - - 1 1p36.23 ribosomal protein L27 pseudogene pseudo - - - - 20121230 -9606 100128664 RPL22P20 - RPL22_10_1337 HGNC:36281 14 14q11.2 ribosomal protein L22 pseudogene 20 pseudo RPL22P20 ribosomal protein L22 pseudogene 20 O - 20121230 -9606 100128665 FYTTD1P1 - - HGNC:38035 9 9q31.1 forty-two-three domain containing 1 pseudogene 1 pseudo FYTTD1P1 forty-two-three domain containing 1 pseudogene 1 O - 20121230 -9606 100128668 LOC100128668 - - - 20 20p12.3 uncharacterized LOC100128668 protein-coding - - - - 20120511 -9606 100128670 LOC100128670 - - - 9 9q22.2 uncharacterized LOC100128670 unknown - - - - 20120511 -9606 100128673 LOC100128673 - - - 12 12q21.1 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa pseudogene pseudo - - - - 20121230 -9606 100128674 LOC100128674 - - - 12 12q21.1 splicing factor 4 pseudogene pseudo - - - - 20121230 -9606 100128675 LOC100128675 - - - 19 19q13.12 uncharacterized LOC100128675 miscRNA - - - - 20121230 -9606 100128676 LOC100128676 - - - 12 12q13.3 TBCC domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100128678 LOC100128678 - - - 12 12q13.13 BTB (POZ) domain containing 10 pseudogene pseudo - - - - 20121230 -9606 100128681 LOC100128681 - - - 12 12q21.1 cyclin G2 pseudogene pseudo - - - - 20121230 -9606 100128682 LOC100128682 - - - 19 19q13.12 uncharacterized LOC100128682 miscRNA - - - - 20121230 -9606 100128685 SLC16A14P1 - - HGNC:43809 8 8q23.1 solute carrier family 16, member 14 (monocarboxylic acid transporter 14) pseudogene 1 pseudo SLC16A14P1 solute carrier family 16, member 14 (monocarboxylic acid transporter 14) pseudogene 1 O - 20121230 -9606 100128686 LOC100128686 - - - 8 8q11.21 programmed cell death 10 pseudogene pseudo - - - - 20121230 -9606 100128688 GPR50-AS1 - - HGNC:40259 X Xq28 GPR50 antisense RNA 1 unknown GPR50-AS1 GPR50 antisense RNA 1 O - 20121021 -9606 100128690 ELL2P4 - - HGNC:39346 X Xq27.3 elongation factor, RNA polymerase II, 2 pseudogene 4 pseudo ELL2P4 elongation factor, RNA polymerase II, 2 pseudogene 4 O - 20121230 -9606 100128691 LOC100128691 - - - 5 5q23.1 hCG1810796-like protein-coding - - - uncharacterized protein LOC100128691 20121018 -9606 100128696 PABPC1P6 - - HGNC:37986 2 2p11.1 poly(A) binding protein, cytoplasmic 1 pseudogene 6 pseudo PABPC1P6 poly(A) binding protein, cytoplasmic 1 pseudogene 6 O - 20121230 -9606 100128697 LOC100128697 - - - 10 10q26.3 uncharacterized LOC100128697 protein-coding - - - - 20120511 -9606 100128699 LOC100128699 - - - 2 2q14.3 uncharacterized LOC100128699 unknown - - - - 20120511 -9606 100128701 LOC100128701 - - - 9 9p24.1 heterogeneous nuclear ribonucleoprotein A1-like 2 pseudogene pseudo - - - - 20121230 -9606 100128703 LOC100128703 - - - 11 11p15.5 uncharacterized LOC100128703 unknown - - - - 20120815 -9606 100128705 AK4P4 - - HGNC:39067 9 9p24.1 adenylate kinase 4 pseudogene 4 pseudo AK4P4 adenylate kinase 4 pseudogene 4 O - 20121230 -9606 100128707 MKI67IPP4 - - HGNC:44952 15 15q24.2 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 4 pseudo MKI67IPP4 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 4 O - 20121230 -9606 100128710 RPL9P30 - RPL9_11_1536 HGNC:36316 17 17q11.2 ribosomal protein L9 pseudogene 30 pseudo RPL9P30 ribosomal protein L9 pseudogene 30 O - 20121230 -9606 100128711 LOC100128711 - - - 15 15q21.3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 10, 22kDa pseudogene pseudo - - - - 20121230 -9606 100128712 LOC100128712 - - - 17 17q23.2 slowmo homolog 2 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100128713 LOC100128713 - - - 17 17q22 zinc finger protein 816A pseudogene pseudo - - - - 20121230 -9606 100128714 LOC100128714 - - - 15 15q12 uncharacterized LOC100128714 miscRNA - - - - 20121230 -9606 100128721 LOC100128721 - - - 15 15q24.2 stromal cell-derived factor 2 pseudogene pseudo - - - - 20121230 -9606 100128723 CBX1P3 - - HGNC:38657 1 1q32.1 chromobox homolog 1 pseudogene 3 pseudo CBX1P3 chromobox homolog 1 pseudogene 3 O - 20121230 -9606 100128725 LOC100128725 - - - 4 4q13.2 apolipoprotein O pseudogene pseudo - - - - 20121230 -9606 100128727 LOC100128727 - - - 7 7q33 uncharacterized LOC100128727 unknown - - - - 20120511 -9606 100128731 OST4 - - HGNC:32483|Ensembl:ENSG00000228474|Vega:OTTHUMG00000151990 2 2p23.3 oligosaccharyltransferase 4 homolog (S. cerevisiae) protein-coding OST4 oligosaccharyltransferase 4 homolog (S. cerevisiae) O dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 4 20121230 -9606 100128733 FCF1P3 - - HGNC:44615 3 3q13.12 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 3 pseudo FCF1P3 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 3 O - 20121230 -9606 100128738 LOC100128738 - - - X Xq13.2 leucine rich repeat (in FLII) interacting protein 2 pseudogene pseudo - - - - 20121230 -9606 100128739 LOC100128739 - - - 3 3q24 ubiquitin domain containing 2 pseudogene pseudo - - - - 20121230 -9606 100128740 LOC100128740 RP1-169I5.4-00 - - X Xp11.4 gem associated protein 7 pseudogene pseudo - - - - 20120815 -9606 100128745 RPLP1P8 - RPLP1_2_758 HGNC:36104 6 6q23.3 ribosomal protein, large, P1 pseudogene 8 pseudo RPLP1P8 ribosomal protein, large, P1 pseudogene 8 O - 20121230 -9606 100128750 LOC100128750 - - - 8 8p12 uncharacterized LOC100128750 miscRNA - - - - 20121230 -9606 100128751 LOC100128751 - - - 1 1q24.2 INM04 unknown - - - - 20121230 -9606 100128756 RPS7P9 - RPS7_5_1072 HGNC:36998 10 10q23.1 ribosomal protein S7 pseudogene 9 pseudo RPS7P9 ribosomal protein S7 pseudogene 9 O - 20121230 -9606 100128759 LOC100128759 - - - 2 2q24.1 heme binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100128762 LOC100128762 - - - 5 5q35.3 telomeric repeat binding factor 2, interacting protein pseudogene pseudo - - - - 20121230 -9606 100128764 PRKRIRP6 RP11-380N8.3 - HGNC:39570 13 13q12.13 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 6 pseudo PRKRIRP6 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 6 O - 20121230 -9606 100128766 RPL8P2 - - HGNC:17220 21 21q22.11 ribosomal protein L8 pseudogene 2 pseudo RPL8P2 ribosomal protein L8 pseudogene 2 O - 20121230 -9606 100128770 LOC100128770 - - - 16 16p13.3 uncharacterized LOC100128770 miscRNA - - - - 20121230 -9606 100128771 EIF4BP3 - - HGNC:37936 9 9q22.32 eukaryotic translation initiation factor 4B pseudogene 3 pseudo EIF4BP3 eukaryotic translation initiation factor 4B pseudogene 3 O - 20121230 -9606 100128772 LOC100128772 - - - 3 3p25.1 proline-rich protein 3-like pseudo - - - - 20121209 -9606 100128775 LOC100128775 - - - 1 1p31.1 neural precursor cell expressed, developmentally down-regulated 8 pseudogene pseudo - - - - 20121230 -9606 100128776 LOC100128776 - - - 18 18p11.21 non-SMC element 4 homolog A (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100128777 KLF8P1 - - HGNC:41520 16 16q12.1 Kruppel-like factor 8 pseudogene 1 pseudo KLF8P1 Kruppel-like factor 8 pseudogene 1 O - 20121230 -9606 100128781 FAM35A2 - FAM35AP HGNC:31427 14 14q31.3 family with sequence similarity 35, member A pseudogene pseudo FAM35A2 family with sequence similarity 35, member A2 (pseudogene) O - 20121230 -9606 100128782 LINC00476 NAG12 C9orf130|NAG11 HGNC:27858 9 9q22.32 long intergenic non-protein coding RNA 476 miscRNA LINC00476 long intergenic non-protein coding RNA 476 O - 20121230 -9606 100128785 GS85 - - - 16 16p13.3 uncharacterized LOC100128785 unknown - - - - 20120511 -9606 100128787 LOC100128787 - - - 1 1p21.2 uncharacterized LOC100128787 miscRNA - - - - 20121230 -9606 100128788 SRRM2-AS1 - - HGNC:44162 16 16p13.3 SRRM2 antisense RNA 1 miscRNA SRRM2-AS1 SRRM2 antisense RNA 1 O - 20121230 -9606 100128790 LOC100128790 - - - 9 9q21.2 lysophospholipase II pseudogene pseudo - - - - 20121230 -9606 100128792 LOC100128792 - - - 11 11q23.3 uncharacterized LOC100128792 unknown - - - - 20121018 -9606 100128795 LOC100128795 - - - 7 7p14.1 coiled-coil domain-containing protein 144A-like protein-coding - - - - 20120420 -9606 100128800 LOC100128800 - - - 11 11q14.3 Cdon homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100128801 DRAXINP1 - - HGNC:44334 X Xp22.31 dorsal inhibitory axon guidance protein pseudogene 1 pseudo DRAXINP1 dorsal inhibitory axon guidance protein pseudogene 1 O - 20121230 -9606 100128803 LOC100128803 - - - 5 5p15.33 Spi-C transcription factor (Spi-1/PU.1 related) pseudogene pseudo - - - - 20121230 -9606 100128804 LOC100128804 - - - 16 16p11.2 angiogenic factor with G patch and FHA domains 1 pseudogene pseudo - - - - 20121230 -9606 100128807 RPL35AP37 - RPL35A_16_1766 HGNC:36426 X Xp22.2 ribosomal protein L35a pseudogene 37 pseudo RPL35AP37 ribosomal protein L35a pseudogene 37 O - 20121230 -9606 100128808 LOC100128808 - - - X Xp22.31 chromosome 11 open reading frame 51 pseudogene pseudo - - - - 20121230 -9606 100128811 GPR158-AS1 - - HGNC:44163 10 10p12.1 GPR158 antisense RNA 1 miscRNA GPR158-AS1 GPR158 antisense RNA 1 O - 20121230 -9606 100128816 LOC100128816 UNQ3104 - - 12 12p13.32 ACAH3104 unknown - - - - 20121230 -9606 100128817 LOC100128817 - - - 12 12q12 adenylate kinase isoenzyme 6-like pseudo - - - - 20121209 -9606 100128818 LOC100128818 UNQ6126 - - 22 22q13.31 LPEQ6126 unknown - - - - 20121230 -9606 100128822 LOC100128822 - - - 7 7q36.1 uncharacterized LOC100128822 miscRNA - - - - 20121230 -9606 100128824 LOC100128824 - - - 4 4q33 uncharacterized LOC100128824 protein-coding - - - - 20120511 -9606 100128827 LOC100128827 - - - 3 3q29 FSHD region gene 2 pseudogene pseudo - - - - 20121230 -9606 100128830 LOC100128830 - - - 10 10q26.3 uncharacterized LOC100128830 unknown - - - - 20120511 -9606 100128833 LOC100128833 - - - 5 5q33.2 vacuolar protein sorting 37 homolog A pseudogene pseudo - - - - 20121230 -9606 100128834 LOC100128834 - - - 1 1q44 CDC-like kinase 3 pseudogene pseudo - - - - 20121230 -9606 100128836 LOC100128836 - - - 8 8q21.13 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100128840 LOC100128840 - - - 12 12q24.33 uncharacterized LOC100128840 unknown - - - - 20121230 -9606 100128843 LOC100128843 - - - 12 12q24.33 uncharacterized LOC100128843 unknown - - - - 20120511 -9606 100128845 LOC100128845 - - - 19 19p12 CDC42 effector protein (Rho GTPase binding) 3 pseudogene pseudo - - - - 20121230 -9606 100128849 LOC100128849 - - - 19 19p12 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100128851 LOC100128851 - - - 17 17p11.2 uncharacterized LOC100128851 protein-coding - - - - 20120511 -9606 100128853 ZNF725P - ZNF725 HGNC:32461 19 19p12 zinc finger protein 725, pseudogene pseudo ZNF725P zinc finger protein 725, pseudogene O - 20121230 -9606 100128857 LOC100128857 - - - 2 2p13.3 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) pseudogene pseudo - - - - 20121230 -9606 100128863 RPS15AP29 - RPS15A_17_1092 HGNC:35981 10 10q24.32 ribosomal protein S15a pseudogene 29 pseudo RPS15AP29 ribosomal protein S15a pseudogene 29 O - 20121230 -9606 100128865 LOC100128865 - - - 4 4q12 methyltransferase like 5 pseudogene pseudo - - - - 20121230 -9606 100128867 RBM22P3 - - HGNC:39696 7 7p11.2 RNA binding motif protein 22 pseudogene 3 pseudo RBM22P3 RNA binding motif protein 22 pseudogene 3 O - 20121230 -9606 100128880 LOC100128880 - - - 10 10q26.11 RAD1 homolog (S. pombe) pseudogene pseudo - - - - 20121230 -9606 100128881 LOC100128881 - - - 16 16q24.3 uncharacterized LOC100128881 miscRNA - - - - 20121230 -9606 100128882 LOC100128882 - - - 16 16q24.2 uncharacterized LOC100128882 unknown - - - uncharacterized protein LOC100128882 20120511 -9606 100128885 LOC100128885 - - - 7 7q11.21 uncharacterized LOC100128885 pseudo - - - - 20121230 -9606 100128888 RPSAP36 - RPSA_14_525 HGNC:35727 4 4q31.21 ribosomal protein SA pseudogene 36 pseudo RPSAP36 ribosomal protein SA pseudogene 36 O - 20121230 -9606 100128889 NDUFAF4P4 - - HGNC:44543 1 1q25.1 NADH dehydrogenase (ubiquinone) complex I, assembly factor 4 pseudogene 4 pseudo NDUFAF4P4 NADH dehydrogenase (ubiquinone) complex I, assembly factor 4 pseudogene 4 O - 20121230 -9606 100128890 FAM66B - FAM66E HGNC:28890 8 8p23.1 family with sequence similarity 66, member B miscRNA FAM66B family with sequence similarity 66, member B O - 20121230 -9606 100128893 LOC100128893 - - - 18 18q11.2 uncharacterized LOC100128893 miscRNA - - - - 20121230 -9606 100128894 NAP1L1P2 - - HGNC:38005 Y Yp11.31 nucleosome assembly protein 1-like 1 pseudogene 2 pseudo NAP1L1P2 nucleosome assembly protein 1-like 1 pseudogene 2 O - 20121230 -9606 100128895 LOC100128895 - - - 12 12q24.23 uncharacterized LOC100128895 unknown - - - - 20121230 -9606 100128898 LOC100128898 - - - 5 5q33.3 latexin pseudogene pseudo - - - - 20121230 -9606 100128899 RPL7L1P9 - - HGNC:39491 2 2q35 ribosomal protein L7-like 1 pseudogene 9 pseudo RPL7L1P9 ribosomal protein L7-like 1 pseudogene 9 O - 20121230 -9606 100128902 PRDX3P3 - - HGNC:39266 13 13q13.3 peroxiredoxin 3 pseudogene 3 pseudo PRDX3P3 peroxiredoxin 3 pseudogene 3 O - 20121230 -9606 100128903 NPM1P4 - NG4-5|NPMP4 HGNC:7924 13 13q12.2 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 4 pseudo NPM1P4 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 4 O - 20121230 -9606 100128905 LOC100128905 - - - 2 2q31.1 uncharacterized LOC100128905 protein-coding - - - - 20121209 -9606 100128906 LOC100128906 - - - 9 9q31.1 WDR45-like pseudogene pseudo - - - - 20121230 -9606 100128908 LOC100128908 - - - 14 14q11.2 uncharacterized LOC100128908 unknown - - - - 20121230 -9606 100128909 LOC100128909 - - - 9 9q22.2-q22.31 uncharacterized LOC100128909 miscRNA - - - - 20121209 -9606 100128911 PCNPP2 - - HGNC:41974 9 9q22.1 PEST containing nuclear protein pseudogene 2 pseudo PCNPP2 PEST containing nuclear protein pseudogene 2 O - 20121230 -9606 100128912 RPS21P4 - RPS21_2_461 HGNC:35922 4 4p15.32 ribosomal protein S21 pseudogene 4 pseudo RPS21P4 ribosomal protein S21 pseudogene 4 O - 20121230 -9606 100128922 LOC100128922 - - - 1 1p33 connexin unknown - - - - 20120710 -9606 100128923 RPS6P16 - RPS6_8_1176 HGNC:35668 11 11q23.1 ribosomal protein S6 pseudogene 16 pseudo RPS6P16 ribosomal protein S6 pseudogene 16 O - 20121230 -9606 100128926 LOC100128926 - - - 18 18p11.32 ubiquitin-conjugating enzyme E2 variant 1-like pseudo - - - - 20121209 -9606 100128927 ZBTB42 - ZNF925 HGNC:32550|MIM:613915|Ensembl:ENSG00000179627|Vega:OTTHUMG00000170790 14 14q32.33 zinc finger and BTB domain containing 42 protein-coding ZBTB42 zinc finger and BTB domain containing 42 O zinc finger and BTB domain-containing protein 42 20121230 -9606 100128929 LOC100128929 - - - X Xp21.3 archaelysin family metallopeptidase 2 pseudogene pseudo - - - - 20121230 -9606 100128930 SDCBPP1 RP11-298K24.2 - HGNC:44684 10 10p15.1 syndecan binding protein (syntenin) pseudogene 1 pseudo SDCBPP1 syndecan binding protein (syntenin) pseudogene 1 O - 20121230 -9606 100128934 FXYD6P1 - - HGNC:4031 10 10q11.21 FXYD domain containing ion transport regulator 6 pseudogene 1 pseudo FXYD6P1 FXYD domain containing ion transport regulator 6 pseudogene 1 O - 20121230 -9606 100128936 RPL10AP6 - RPL10A_1_376 HGNC:36504 3 3p14.2 ribosomal protein L10a pseudogene 6 pseudo RPL10AP6 ribosomal protein L10a pseudogene 6 O - 20121230 -9606 100128939 LOC100128939 - - - 14 14q32.12 pyruvate dehydrogenase kinase, isozyme 3 pseudogene pseudo - - - - 20121230 -9606 100128944 YWHAQP3 - - HGNC:37682 12 12q13.3 YWHAQ pseudogene 3 pseudo YWHAQP3 YWHAQ pseudogene 3 O - 20121230 -9606 100128946 LOC100128946 - - - 22 22q13.32 uncharacterized LOC100128946 miscRNA - - - - 20121230 -9606 100128948 LOC100128948 - - - 19 19q13.12 zinc finger protein 607 pseudogene pseudo - - - - 20121230 -9606 100128950 LOC100128950 - - - 3 3q29 uncharacterized LOC100128950 protein-coding - - - - 20120511 -9606 100128958 LOC100128958 - - - 1 1q43 ferredoxin 1-like pseudogene pseudo - - - - 20121230 -9606 100128961 GAPDHP62 - GAPDHL7|GAPDL7 HGNC:4156 8 8q22.2 glyceraldehyde 3 phosphate dehydrogenase pseudogene 62 pseudo GAPDHP62 glyceraldehyde 3 phosphate dehydrogenase pseudogene 62 O - 20121230 -9606 100128963 RPL3P9 - RPL3_6_918 HGNC:36839 8 8q21.13 ribosomal protein L3 pseudogene 9 pseudo RPL3P9 ribosomal protein L3 pseudogene 9 O - 20121230 -9606 100128964 LOC100128964 - - - 2 2q12.3 serine/arginine-rich splicing factor 3-like pseudo - - - - 20121209 -9606 100128966 LOC100128966 - - - 5 5q31.2 uncharacterized LOC100128966 unknown - - - uncharacterized protein LOC100128966 20120511 -9606 100128974 LOC100128974 - - - 15 15q14 RNA binding motif protein 17 pseudogene pseudo - - - - 20121230 -9606 100128977 MAPT-AS1 - - HGNC:43738 17 17q21.31 MAPT antisense RNA 1 miscRNA MAPT-AS1 MAPT antisense RNA 1 O - 20121230 -9606 100128979 LOC100128979 - - - 15 15q22.2 uncharacterized LOC100128979 unknown - - - - 20121230 -9606 100128981 LOC100128981 - - - X Xp11.22 G antigen family D member 5-like pseudo - - - - 20121209 -9606 100128982 LOC100128982 - - - 5 5q11.2 katanin p80 subunit B-like 1 pseudogene pseudo - - - - 20121230 -9606 100128983 LOC100128983 - - - 4 4q28.2 mbt domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100128984 RPL35AP7 - RPL35A_1_109 HGNC:36212 1 1q23.3 ribosomal protein L35a pseudogene 7 pseudo RPL35AP7 ribosomal protein L35a pseudogene 7 O - 20121230 -9606 100128985 LOC100128985 - - - 6 6q16.2 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100128988 LOC100128988 - - - 20 20q12 uncharacterized LOC100128988 unknown - - - - 20121230 -9606 100128990 LOC100128990 - - - 10 10q23.31 mediator complex subunit 6 pseudogene pseudo - - - - 20121230 -9606 100128991 RSL24D1P9 - - HGNC:37880 18 18q21.2 ribosomal L24 domain containing 1 pseudogene 9 pseudo RSL24D1P9 ribosomal L24 domain containing 1 pseudogene 9 O - 20121230 -9606 100128993 LOC100128993 - - - 8 8p21.3 uncharacterized LOC100128993 miscRNA - - - - 20121230 -9606 100128998 C20orf181 RP5-824A14.1 dJ824A14.1 HGNC:16174 20 20q13.33 chromosome 20 open reading frame 181 unknown C20orf181 chromosome 20 open reading frame 181 O - 20121230 -9606 100129001 LOC100129001 - - - X Xq21.33 general transcription factor IIIC, polypeptide 6, alpha 35kDa pseudogene pseudo - - - - 20121230 -9606 100129004 RPL3P10 - RPL3_5_896 HGNC:36819 8 8p11.22 ribosomal protein L3 pseudogene 10 pseudo RPL3P10 ribosomal protein L3 pseudogene 10 O - 20121230 -9606 100129005 LOC100129005 - - - 3 3p11.2 apolipoprotein O pseudogene pseudo - - - - 20121230 -9606 100129007 FMO8P - - HGNC:32209 1 1q24.1 flavin containing monooxygenase 8 pseudogene pseudo FMO8P flavin containing monooxygenase 8 pseudogene O - 20121230 -9606 100129008 CUL4AP1 - - HGNC:44027 4 4q26 cullin 4A pseudogene 1 pseudo CUL4AP1 cullin 4A pseudogene 1 O - 20121230 -9606 100129009 DCAF13P1 - - HGNC:43866 7 7q22.3 DDB1 and CUL4 associated factor 13 pseudogene 1 pseudo DCAF13P1 DDB1 and CUL4 associated factor 13 pseudogene 1 O - 20121230 -9606 100129011 LSM6P1 - HsT818|LSM6P HGNC:31738 18 18q21.33 LSM6 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 1 pseudo LSM6P1 LSM6 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100129013 ACTR3P2 - - HGNC:38676 X Xq13.1 ARP3 actin-related protein 3 homolog (yeast) pseudogene 2 pseudo ACTR3P2 ARP3 actin-related protein 3 homolog (yeast) pseudogene 2 O - 20121230 -9606 100129017 RPL24P5 - RPL24_1_143 HGNC:36102 1 1q31.3 ribosomal protein L24 pseudogene 5 pseudo RPL24P5 ribosomal protein L24 pseudogene 5 O - 20121230 -9606 100129020 LOC100129020 - - - 12 12q24.21 uncharacterized LOC100129020 unknown - - - uncharacterized protein LOC100129020 20120511 -9606 100129023 ARF4P4 - - HGNC:37628 13 13q31.1 ADP-ribosylation factor 4 pseudogene 4 pseudo ARF4P4 ADP-ribosylation factor 4 pseudogene 4 O - 20121230 -9606 100129027 LOC100129027 - - - 21 21q22.3 uncharacterized LOC100129027 miscRNA - - - - 20121230 -9606 100129028 RPLP1P4 - RPLP1_3_298 HGNC:36939 2 2q31.1 ribosomal protein, large, P1 pseudogene 4 pseudo RPLP1P4 ribosomal protein, large, P1 pseudogene 4 O - 20121230 -9606 100129029 LOC100129029 - - - 2 2q24.1 uncharacterized LOC100129029 unknown - - - - 20120622 -9606 100129031 UBL5P3 - - HGNC:44641 3 3p14.2 ubiquitin-like 5 pseudogene 3 pseudo UBL5P3 ubiquitin-like 5 pseudogene 3 O - 20121230 -9606 100129032 GLYATL1P1 - - HGNC:37866 11 11q12.1 glycine-N-acyltransferase-like 1 pseudogene 1 pseudo GLYATL1P1 glycine-N-acyltransferase-like 1 pseudogene 1 O - 20121230 -9606 100129033 LOC100129033 UNQ5815 - - 6 6p25.1 QIQN5815 unknown - - - - 20121230 -9606 100129034 LOC100129034 - - - 9 9q33.3 uncharacterized LOC100129034 miscRNA - - - - 20121230 -9606 100129037 LOC100129037 - - - 4 4p16.3 WEE1 homolog (S. pombe) pseudogene pseudo - - - - 20121230 -9606 100129040 CCDC11P1 - - HGNC:43919 5 5p13.1 coiled-coil domain containing 11 pseudogene 1 pseudo CCDC11P1 coiled-coil domain containing 11 pseudogene 1 O - 20121230 -9606 100129042 LOC100129042 - - - 1 1p36.21 uncharacterized LOC100129042 protein-coding - - - - 20120511 -9606 100129045 EIF3KP2 - - HGNC:44017 3 3p24.2 eukaryotic translation initiation factor 3, subunit K pseudogene 2 pseudo EIF3KP2 eukaryotic translation initiation factor 3, subunit K pseudogene 2 O - 20121230 -9606 100129046 LOC100129046 - - - 1 1p22.1 uncharacterized LOC100129046 miscRNA - - - - 20121230 -9606 100129048 LOC100129048 - - - 1 1p36.23 uncharacterized LOC100129048 unknown - - - - 20120511 -9606 100129049 LOC100129049 - - - X Xp21.2 phosphatidylinositol glycan anchor biosynthesis, class F pseudogene pseudo - - - - 20121230 -9606 100129050 LOC100129050 - - - 7 7p12.3 capicua homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100129052 LOC100129052 - - - 6 6p25.2 N(alpha)-acetyltransferase 40, NatD catalytic subunit, homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100129053 LOC100129053 - - - 11 11q21 lysine (K)-specific demethylase 4E pseudogene pseudo - - - - 20121230 -9606 100129055 LOC100129055 - - - 10 10p11.1 cyclin Y-like pseudogene pseudo - - - - 20121230 -9606 100129058 IQCF5-AS1 - - HGNC:41297 3 3p21.2 IQCF5 antisense RNA 1 unknown IQCF5-AS1 IQCF5 antisense RNA 1 O - 20121021 -9606 100129060 LOC100129060 - - - 3 3p21.31 uncharacterized LOC100129060 unknown - - - - 20121230 -9606 100129061 RPL7P25 - RPL7_12_684 HGNC:36455 6 6p21.31 ribosomal protein L7 pseudogene 25 pseudo RPL7P25 ribosomal protein L7 pseudogene 25 O - 20121230 -9606 100129066 UNQ6494 UNQ6494 - - 9 9q22.2 uncharacterized LOC100129066 miscRNA - - - - 20121230 -9606 100129067 LOC100129067 - - - 11 11q12.3 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100129069 LOC100129069 - - - 11 11q24.2 uncharacterized LOC100129069 protein-coding - - - - 20120511 -9606 100129072 LOC100129072 - - - 14 14q32.2 uncharacterized LOC100129072 unknown - - - - 20120511 -9606 100129074 PRKRIRP5 - - HGNC:39569 6 6p24.2 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 5 pseudo PRKRIRP5 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 5 O - 20121230 -9606 100129075 KTN1-AS1 - C14orf33 HGNC:19842 14 14q22.3 KTN1 antisense RNA 1 miscRNA KTN1-AS1 KTN1 antisense RNA 1 O - 20121230 -9606 100129078 LOC100129078 - - - 12 12q12 tetratricopeptide repeat domain 5 pseudogene pseudo - - - - 20121230 -9606 100129080 TDGF1P7 - CR-7|CRIPTO-7|TDGF7 HGNC:11707 19 19q13.2 teratocarcinoma-derived growth factor 1 pseudogene 7 pseudo TDGF1P7 teratocarcinoma-derived growth factor 1 pseudogene 7 O - 20121230 -9606 100129083 LOC100129083 - - - 19 19q13.41 uncharacterized LOC100129083 protein-coding - - - uncharacterized protein LOC100129083 20121230 -9606 100129085 LOC100129085 - - - 19 19q13.12 selenoprotein K pseudogene pseudo - - - - 20121230 -9606 100129086 HIGD1AP1 HC20185 HIG1|HIGD1D|HIGD1DP HGNC:22804 12 12q13.13 HIG1 hypoxia inducible domain family, member 1A pseudogene 1 pseudo HIGD1AP1 HIG1 hypoxia inducible domain family, member 1A pseudogene 1 O - 20121230 -9606 100129089 LOC100129089 - - - 18 18q23 uncharacterized LOC100129089 unknown - - - - 20120511 -9606 100129090 RPS5P4 - RPS5_1_162 HGNC:36122 1 1q32.3 ribosomal protein S5 pseudogene 4 pseudo RPS5P4 ribosomal protein S5 pseudogene 4 O - 20121230 -9606 100129094 BTNL10 - BUTR1 HGNC:42540 1 1q42.13 butyrophilin-like 10 protein-coding BTNL10 butyrophilin-like 10 O butyrophilin related 1|butyrophilin-like protein 10 20121230 -9606 100129096 LOC100129096 - - - 8 8q13.2 tropomyosin 1 (alpha) pseudogene pseudo - - - - 20121230 -9606 100129098 LOC100129098 - - - 8 8q11.23 uncharacterized LOC100129098 protein-coding - - - - 20121209 -9606 100129099 LOC100129099 - - - 5 5q22.1 proline-rich nuclear receptor coactivator 2 pseudogene pseudo - - - - 20121230 -9606 100129100 LOC100129100 - - - 8 8q21.3 uncharacterized LOC100129100 pseudo - - - - 20121209 -9606 100129102 RPL22P4 - RPL22_2_154 HGNC:36299 1 1q32.1 ribosomal protein L22 pseudogene 4 pseudo RPL22P4 ribosomal protein L22 pseudogene 4 O - 20121230 -9606 100129104 LOC100129104 - - - 8 8q24.22 uncharacterized LOC100129104 unknown - - - - 20121017 -9606 100129107 LOC100129107 - - - 9 9p24.1 transcription factor 3 (E2A immunoglobulin enhancer binding factors E12/E47) pseudogene pseudo - - - - 20121230 -9606 100129108 LOC100129108 - - - 11 11p11.12 tripartite motif containing 64B pseudogene pseudo - - - - 20121230 -9606 100129110 LOC100129110 - - - 1 1p36.33 uncharacterized LOC100129110 protein-coding - - - - 20120511 -9606 100129111 LOC100129111 - - - 11 11p15.4 uncharacterized LOC100129111 unknown - - - - 20120511 -9606 100129112 LOC100129112 - - - 17 17q23.2 uncharacterized LOC100129112 protein-coding - - - - 20121018 -9606 100129113 LOC100129113 - - - 22 22q11.21 uncharacterized LOC100129113 unknown - - - - 20121018 -9606 100129115 LOC100129115 - - - 17 17q21.31 uncharacterized LOC100129115 protein-coding - - - - 20120511 -9606 100129118 LOC100129118 - - - 19 19p13.12 transmembrane protein 167A pseudogene pseudo - - - - 20121230 -9606 100129123 ACE3P - ACE3 HGNC:44365 17 17q23.3 angiotensin I converting enzyme (peptidyl-dipeptidase A) 3, pseudogene pseudo ACE3P angiotensin I converting enzyme (peptidyl-dipeptidase A) 3, pseudogene O - 20121230 -9606 100129124 TVP23BP1 - FAM18B3P HGNC:31127 15 15q12 trans-golgi network vesicle protein 23 homolog B (S. cerevisiae) pseudogene 1 pseudo TVP23BP1 trans-golgi network vesicle protein 23 homolog B (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100129125 LOC100129125 - - - 17 17p11.2 uncharacterized LOC100129125 protein-coding - - - - 20120511 -9606 100129126 LOC100129126 hCG_1812962 - - 7 7q11.21 uncharacterized LOC100129126 protein-coding - - - - 20120511 -9606 100129128 KHDC1L RP11-257K9.7 - HGNC:37274|Ensembl:ENSG00000256980|Vega:OTTHUMG00000132474 6 6q13 KH homology domain containing 1-like protein-coding KHDC1L KH homology domain containing 1-like O RP11-257K9.7|putative KHDC1-like protein 20121230 -9606 100129129 LOC100129129 - - - 8 8p23.1 uncharacterized LOC100129129 unknown - - - - 20121230 -9606 100129130 LOC100129130 - - - 7 7q11.23 THO complex 4 pseudogene pseudo - - - - 20121230 -9606 100129133 LOC100129133 - - - X Xq21.31 transmembrane protein 184C pseudogene pseudo - - - - 20121230 -9606 100129135 LOC100129135 - - - 18 18q22.1 selenocysteine insertion sequence-binding protein 2-like pseudo - - - - 20121230 -9606 100129137 LOC100129137 - - - 4 4q22.1 CD53 molecule pseudogene pseudo - - - - 20121230 -9606 100129138 LOC100129138 - - - 1 1p21.1 THAP domain containing, apoptosis associated protein 3 pseudogene pseudo - - - - 20121230 -9606 100129140 LOC100129140 - - - 2 2p14 DnaJ (Hsp40) homolog, subfamily B, member 12 pseudogene pseudo - - - - 20121230 -9606 100129141 RPL21P37 - RPL21_11_229 HGNC:35704 2 2p15 ribosomal protein L21 pseudogene 37 pseudo RPL21P37 ribosomal protein L21 pseudogene 37 O - 20121230 -9606 100129143 LOC100129143 - - - 18 18q21.1 single-strand-selective monofunctional uracil-DNA glycosylase 1 pseudogene pseudo - - - - 20121230 -9606 100129144 LOC100129144 - - - X Xq12 zinc finger protein 681 pseudogene pseudo - - - - 20121230 -9606 100129148 LOC100129148 - - - 7 7q34 uncharacterized LOC100129148 miscRNA - - - - 20121230 -9606 100129149 LOC100129149 - - - 2 2p22.2 uncharacterized LOC100129149 unknown - - - - 20121017 -9606 100129155 LOC100129155 - - - 6 6q21 phosphatase, orphan 1 pseudogene pseudo - - - - 20121230 -9606 100129156 LOC100129156 - - - 10 10q22.3 retinoblastoma binding protein 6 pseudogene pseudo - - - - 20121230 -9606 100129160 LOC100129160 - - - 1 1q23.3 nicotinamide nucleotide adenylyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100129162 RSL24D1P2 - - HGNC:37867 2 2p15 ribosomal L24 domain containing 1 pseudogene 2 pseudo RSL24D1P2 ribosomal L24 domain containing 1 pseudogene 2 O - 20121230 -9606 100129167 RFESDP1 - - HGNC:39420 13 13q12.12 Rieske (Fe-S) domain containing pseudogene 1 pseudo RFESDP1 Rieske (Fe-S) domain containing pseudogene 1 O - 20121230 -9606 100129168 LOC100129168 - - - 21 21q22.11 chromosome 6 open reading frame 203 pseudogene pseudo - - - - 20121230 -9606 100129171 LOC100129171 - - - 2 2q36.1 uncharacterized LOC100129171 protein-coding - - - - 20120511 -9606 100129174 POLR2KP2 RP11-90M2.3 - HGNC:42652 13 13q14.2 polymerase (RNA) II (DNA directed) polypeptide K, 7.0kDa pseudogene 2 pseudo POLR2KP2 polymerase (RNA) II (DNA directed) polypeptide K, 7.0kDa pseudogene 2 O - 20121230 -9606 100129175 LOC100129175 - - - 2 2q35 uncharacterized LOC100129175 miscRNA - - - - 20121230 -9606 100129176 RPL13P6 - RPL13AP4|RPL13_5_1409 HGNC:19809 14 14q32.32 ribosomal protein L13 pseudogene 6 pseudo RPL13P6 ribosomal protein L13 pseudogene 6 O - 20121230 -9606 100129179 RPL9P5 - RPL9_9_1374 HGNC:23557 14 14q23.1 ribosomal protein L9 pseudogene 5 pseudo RPL9P5 ribosomal protein L9 pseudogene 5 O - 20121230 -9606 100129180 RPL36AP11 - RPL36A_2_73 HGNC:36385 1 1p22.1 ribosomal protein L36a pseudogene 11 pseudo RPL36AP11 ribosomal protein L36a pseudogene 11 O - 20121230 -9606 100129184 LOC100129184 - - - 16 16p11.2 uncharacterized LOC100129184 pseudo - - - - 20121230 -9606 100129186 LOC100129186 - - - 5 5p12 uncharacterized LOC100129186 unknown - - - - 20120511 -9606 100129192 MICC - PERB11.3 HGNC:7092 6 6p22.1 MHC class I polypeptide-related sequence C (pseudogene) pseudo MICC MHC class I polypeptide-related sequence C (pseudogene) O - 20121230 -9606 100129193 MUP - - - 9 9q32 major urinary protein pseudogene pseudo - - - - 20121230 -9606 100129195 LOC100129195 - - - 6 6p22.1 uncharacterized LOC100129195 miscRNA - - - - 20121230 -9606 100129196 MATN1-AS1 - - HGNC:40364 1 1p35.2 MATN1 antisense RNA 1 miscRNA MATN1-AS1 MATN1 antisense RNA 1 O - 20121230 -9606 100129198 LOC100129198 - - - 3 3p26.3 PRO2866 unknown - - - - 20121006 -9606 100129199 RPS3AP40 - RPS3A_19_1151 HGNC:35869 11 11q13.2 ribosomal protein S3a pseudogene 40 pseudo RPS3AP40 ribosomal protein S3a pseudogene 40 O - 20121230 -9606 100129201 LOC100129201 - - - 11 11q23.3 proline rich 13 pseudogene pseudo - - - - 20121230 -9606 100129202 LOC100129202 - - - 9 9q22.1 arginine/serine-rich coiled-coil 1 pseudogene pseudo - - - - 20121230 -9606 100129203 LOC100129203 - - - 11 11q21 uncharacterized LOC100129203 miscRNA - - - - 20121209 -9606 100129204 LOC100129204 - - - 5 5p15.33 uncharacterized LOC100129204 protein-coding - - - - 20120511 -9606 100129205 LOC100129205 - - - 1 1p31.3 ribosomal protein S24 pseudogene pseudo - - - - 20121230 -9606 100129213 LOC100129213 - - - 10 10p12.33 uncharacterized LOC100129213 miscRNA - - - - 20121230 -9606 100129215 LOC100129215 - - - 16 16q24.2 uncharacterized LOC100129215 unknown - - - - 20121230 -9606 100129216 LOC100129216 - - - 11 11q13.4 beta-defensin 131-like protein-coding - - - - 20121230 -9606 100129223 LOC100129223 - - - 12 12p13.32 uncharacterized LOC100129223 unknown - - - - 20121230 -9606 100129224 LOC100129224 - - - 22 - uncharacterized LOC100129224 pseudo - - - - 20121209 -9606 100129227 RPS6P22 - RPS6_10_1242 HGNC:35655 12 12q14.1 ribosomal protein S6 pseudogene 22 pseudo RPS6P22 ribosomal protein S6 pseudogene 22 O - 20121230 -9606 100129229 LOC100129229 - - - X Xq27.3 heterogeneous nuclear ribonucleoprotein C (C1/C2) pseudogene pseudo - - - - 20121230 -9606 100129231 HSPA8P20 - - HGNC:44936 X Xq25 heat shock 70kDa protein 8 pseudogene 20 pseudo HSPA8P20 heat shock 70kDa protein 8 pseudogene 20 O - 20121230 -9606 100129233 LOC100129233 - - - 5 5q21.3 uncharacterized LOC100129233 unknown - - - - 20121230 -9606 100129234 RPL27P7 - RPL27_3_270 HGNC:36107 2 2q14.2 ribosomal protein L27 pseudogene 7 pseudo RPL27P7 ribosomal protein L27 pseudogene 7 O - 20121230 -9606 100129237 NPM1P21 - - HGNC:13855 8 8q12.1 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 21 pseudo NPM1P21 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 21 O - 20121230 -9606 100129239 CXorf51A - CXorf51 HGNC:30533 X Xq27.3 chromosome X open reading frame 51A protein-coding CXorf51A chromosome X open reading frame 51A O uncharacterized protein LOC100129239 20121230 -9606 100129240 LOC100129240 - - - 4 4q35.1 uncharacterized LOC100129240 protein-coding - - - - 20120511 -9606 100129243 RPS15AP12 - RPS15A_5_166 HGNC:36759 1 1q41 ribosomal protein S15a pseudogene 12 pseudo RPS15AP12 ribosomal protein S15a pseudogene 12 O - 20121230 -9606 100129245 LOC100129245 - - - 4 4q35.1 GAR1 ribonucleoprotein homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100129248 LOC100129248 RP11-39K24.9 - - 9 9p24.1 polyprenyl pyrophosphate synthetase pseudogene pseudo - - - - 20121230 -9606 100129250 LOC100129250 - - - 9 9p21.1 uncharacterized LOC100129250 miscRNA - - - - 20121230 -9606 100129251 FTLP4 - - HGNC:37952 9 9p21.1 ferritin, light polypeptide pseudogene 4 pseudo FTLP4 ferritin, light polypeptide pseudogene 4 O - 20121230 -9606 100129254 LOC100129254 - - - 22 22q11.21 chromosome 3 open reading frame 38 pseudogene pseudo - - - - 20121230 -9606 100129256 LOC100129256 - - - 15 15q22.2 nicotinamide nucleotide adenylyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100129259 BRD7P5 RP11-477B16.3 - HGNC:37631 13 13q32.1 bromodomain containing 7 pseudogene 5 pseudo BRD7P5 bromodomain containing 7 pseudogene 5 O - 20121230 -9606 100129260 RPL7L1P1 - - HGNC:39455 13 13q31.3 ribosomal protein L7-like 1 pseudogene 1 pseudo RPL7L1P1 ribosomal protein L7-like 1 pseudogene 1 O - 20121230 -9606 100129262 LOC100129262 - - - 22 22q11.21 ribosomal protein L28 pseudogene pseudo - - - - 20121230 -9606 100129265 LOC100129265 - - - 19 19p12 zinc finger protein 66-like pseudo - - - - 20121230 -9606 100129269 LOC100129269 - - - 1 1p13.2 uncharacterized LOC100129269 miscRNA - - - - 20121230 -9606 100129271 C1orf68 RP1-43O17.3 LEP7|XP32 HGNC:29468|Ensembl:ENSG00000198854 1 1q21.3 chromosome 1 open reading frame 68 protein-coding C1orf68 chromosome 1 open reading frame 68 O skin-specific protein (xp32)|skin-specific protein 32 20121230 -9606 100129272 LOC100129272 - - - X Xq13.2 translocase of outer mitochondrial membrane 20 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100129274 LOC100129274 - - - 1 1q31.1 NIF3 NGG1 interacting factor 3-like 1 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100129275 LOC100129275 - - - 3 3q13.33 uncharacterized LOC100129275 protein-coding - - - - 20120511 -9606 100129276 LOC100129276 - - - 7 7p11.2 RNA exonuclease 1 homolog pseudo - - - - 20121230 -9606 100129277 TPMTP3 - - HGNC:44566 X Xp11.22 thiopurine S-methyltransferase pseudogene 3 pseudo TPMTP3 thiopurine S-methyltransferase pseudogene 3 O - 20121230 -9606 100129278 LOC100129278 - - - 2 2p24.1 tudor domain-containing protein 6-like protein-coding - - - - 20120511 -9606 100129279 RPS27P14 - RPS27_7_572 HGNC:35923 5 5q13.2 ribosomal protein S27 pseudogene 14 pseudo RPS27P14 ribosomal protein S27 pseudogene 14 O - 20121230 -9606 100129280 LOC100129280 - - - 7 7q21.3 uncharacterized LOC100129280 protein-coding - - - - 20120508 -9606 100129283 LDHBP3 - - HGNC:39136 5 5q14.3 lactate dehydrogenase B pseudogene 3 pseudo LDHBP3 lactate dehydrogenase B pseudogene 3 O - 20121230 -9606 100129284 RPS15AP39 - RPS15A_14_1774 HGNC:35800 X Xp11.4 ribosomal protein S15a pseudogene 39 pseudo RPS15AP39 ribosomal protein S15a pseudogene 39 O - 20121230 -9606 100129288 MORF4L1P5 - MORF4LP5 HGNC:35425 X Xq11.2 mortality factor 4 like 1 pseudogene 5 pseudo MORF4L1P5 mortality factor 4 like 1 pseudogene 5 O - 20121230 -9606 100129291 LOC100129291 - - - X Xq13.1 uncharacterized LOC100129291 pseudo - - - - 20121209 -9606 100129292 LOC100129292 - - - 20 20q13.12 uncharacterized LOC100129292 protein-coding - - - - 20120511 -9606 100129293 LOC100129293 - - - 7 7q11.21 IgLON family member 5 pseudogene pseudo - - - - 20121230 -9606 100129295 LOC100129295 - - - 1 1q25.3 ribosomal protein L22 pseudogene pseudo - - - - 20121230 -9606 100129297 LOC100129297 - - - 3 3q13.2 uncharacterized LOC100129297 unknown - - - - 20121230 -9606 100129298 TPMTP4 - - HGNC:44567 X Xq21.2 thiopurine S-methyltransferase pseudogene 4 pseudo TPMTP4 thiopurine S-methyltransferase pseudogene 4 O - 20121230 -9606 100129306 RPS20P32 - RPS20_15_1306 HGNC:36444 13 13q12.13 ribosomal protein S20 pseudogene 32 pseudo RPS20P32 ribosomal protein S20 pseudogene 32 O - 20121230 -9606 100129307 LOC100129307 - - - 13 13q22.3 UPF0607 protein ENSP00000383144-like protein-coding - - - Putative UPF0607 protein ENSP00000383144 20121230 -9606 100129308 DNAJA1P1 - - HGNC:39337 13 13q21.1 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 1 pseudo DNAJA1P1 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 1 O - 20121230 -9606 100129310 RPL31P14 - RPL31_4_324 HGNC:35477 2 2q35 ribosomal protein L31 pseudogene 14 pseudo RPL31P14 ribosomal protein L31 pseudogene 14 O - 20121230 -9606 100129311 LOC100129311 - - - 21 21q22.3 uncharacterized LOC100129311 protein-coding - - - - 20120511 -9606 100129312 LOC100129312 - - - 2 2q31.1 uncharacterized LOC100129312 unknown - - - - 20121018 -9606 100129315 VN1R66P - - HGNC:37386 16 16p11.2 vomeronasal 1 receptor 66 pseudogene pseudo VN1R66P vomeronasal 1 receptor 66 pseudogene O - 20121230 -9606 100129316 LOC100129316 - - - 9 9q22.2 uncharacterized LOC100129316 miscRNA - - - - 20121230 -9606 100129319 SLC25A6P5 - - HGNC:43854 9 9q31.2 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene 5 pseudo SLC25A6P5 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene 5 O - 20121230 -9606 100129320 HMGB3P10 - - HGNC:39302 1 1p21.2 high mobility group box 3 pseudogene 10 pseudo HMGB3P10 high mobility group box 3 pseudogene 10 O - 20121230 -9606 100129321 LOC100129321 - - - 7 7p14.1 single stranded DNA binding protein 3 pseudogene pseudo - - - - 20121230 -9606 100129322 LOC100129322 - - - 6 6p24.1 uncharacterized LOC100129322 protein-coding - - - - 20120511 -9606 100129324 LOC100129324 - - - 16 16q22.1 uncharacterized LOC100129324 protein-coding - - - - 20120511 -9606 100129325 LOC100129325 - - - 1 1p31.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100129329 SNRPEP3 - - HGNC:43445 16 16p12.3 small nuclear ribonucleoprotein polypeptide E pseudogene 3 pseudo SNRPEP3 small nuclear ribonucleoprotein polypeptide E pseudogene 3 O - 20121230 -9606 100129331 LOC100129331 - - - 9 9p11.2 RAB28, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100129332 RPL29P20 - RPL29_10_1009 HGNC:36682 9 9q32 ribosomal protein L29 pseudogene 20 pseudo RPL29P20 ribosomal protein L29 pseudogene 20 O - 20121230 -9606 100129337 EIF4BP2 - - HGNC:37935 10 10p12.31 eukaryotic translation initiation factor 4B pseudogene 2 pseudo EIF4BP2 eukaryotic translation initiation factor 4B pseudogene 2 O - 20121230 -9606 100129339 TPSP1 - MP-2 HGNC:14182 16 16p13.3 tryptase pseudogene 1 pseudo TPSP1 tryptase pseudogene 1 O - 20121230 -9606 100129340 LOC100129340 - - - 9 9q22.1 mitofusin-1-like pseudo - - - - 20121209 -9606 100129344 LOC100129344 - - - 4 4p16.1 developmental pluripotency associated 4 pseudogene pseudo - - - - 20121230 -9606 100129345 LOC100129345 - - - 14 14q32.2 uncharacterized LOC100129345 miscRNA - - - - 20121230 -9606 100129347 LINC00484 - C9orf73 HGNC:27862 9 9q22.2 long intergenic non-protein coding RNA 484 unknown LINC00484 long intergenic non-protein coding RNA 484 O - 20121021 -9606 100129348 LOC100129348 - - - 1 1p22.3 cell division cycle associated 4 pseudogene pseudo - - - - 20121230 -9606 100129351 AGGF1P4 - - HGNC:38054 16 16p11.1 angiogenic factor with G patch and FHA domains 1 pseudogene 4 pseudo AGGF1P4 angiogenic factor with G patch and FHA domains 1 pseudogene 4 O - 20121230 -9606 100129352 LOC100129352 - - - 9 9q34.11 protein PAT1 homolog 1-like pseudo - - - - 20121230 -9606 100129354 NRADDP - - HGNC:19337 3 3p21.31 neurotrophin receptor associated death domain, pseudogene pseudo NRADDP neurotrophin receptor associated death domain, pseudogene O - 20121230 -9606 100129355 LOC100129355 - - - 18 18p11.31 biorientation of chromosomes in cell division 1 pseudogene pseudo - - - - 20121230 -9606 100129357 RPL9P29 - RPL9_17_1576 HGNC:35533 17 17q25.3 ribosomal protein L9 pseudogene 29 pseudo RPL9P29 ribosomal protein L9 pseudogene 29 O - 20121230 -9606 100129358 LOC100129358 - - - 22 22q11.23 kelch-like 5 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100129361 LOC100129361 - - - 12 12p13.2 chromosome X open reading frame 69-like protein-coding - - - uncharacterized protein LOC100129361 20121230 -9606 100129363 LOC100129363 - - - 15 15q26.1 uncharacterized LOC100129363 protein-coding - - - - 20120511 -9606 100129367 LOC100129367 - - - 8 8q24.23 nucleolar and coiled-body phosphoprotein 1 pseudogene pseudo - - - - 20121230 -9606 100129368 LOC100129368 - - - X Xq27.3 heterogeneous nuclear ribonucleoprotein H-like pseudo - - - - 20121230 -9606 100129370 LOC100129370 - - - 8 8q23.2 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 9, 22kDa pseudogene pseudo - - - - 20121230 -9606 100129373 LOC100129373 - - - X Xq28 uncharacterized LOC100129373 unknown - - - - 20120511 -9606 100129374 RPL18P3 - RPL18_2_608 HGNC:35783 5 5q23.1 ribosomal protein L18 pseudogene 3 pseudo RPL18P3 ribosomal protein L18 pseudogene 3 O - 20121230 -9606 100129375 LOC100129375 - - - 2 2q22.1 ring finger protein 14 pseudogene pseudo - - - - 20121230 -9606 100129377 RPL23P9 - RPL23_3_937 HGNC:36853 8 8q22.3 ribosomal protein L23 pseudogene 9 pseudo RPL23P9 ribosomal protein L23 pseudogene 9 O - 20121230 -9606 100129379 RPS29P17 - RPS29_13_976 HGNC:35479 9 9p13.3 ribosomal protein S29 pseudogene 17 pseudo RPS29P17 ribosomal protein S29 pseudogene 17 O - 20121230 -9606 100129380 LOC100129380 - - - 12 12q24.31 uncharacterized LOC100129380 protein-coding - - - - 20120511 -9606 100129381 LOC100129381 - - - 1 1p36.33 ribosomal protein S7 pseudogene pseudo - - - - 20121230 -9606 100129382 PRKRIRP4 - - HGNC:39568 11 11p14.3 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 4 pseudo PRKRIRP4 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 4 O - 20121230 -9606 100129384 LOC100129384 - - - 11 11p11.12 ankyrin repeat domain-containing protein 33B-like pseudo - - - - 20121230 -9606 100129385 C9orf92 - Em:AL513424.1 HGNC:19054 9 9p22.3 chromosome 9 open reading frame 92 protein-coding C9orf92 chromosome 9 open reading frame 92 O putative uncharacterized protein C9orf92 20121201 -9606 100129387 GABPB1-AS1 - - HGNC:44157 15 15q21.2 GABPB1 antisense RNA 1 miscRNA GABPB1-AS1 GABPB1 antisense RNA 1 O - 20121230 -9606 100129391 LOC100129391 - - - 19 19p13.2 zinc finger (CCCH type), RNA-binding motif and serine/arginine rich 2 pseudogene pseudo - - - - 20121230 -9606 100129393 LOC100129393 - - - 15 15q15.1 uncharacterized LOC100129393 protein-coding - - - - 20120511 -9606 100129394 RPL12P42 - RPL12_15_1630 HGNC:36165 19 19p13.2 ribosomal protein L12 pseudogene 42 pseudo RPL12P42 ribosomal protein L12 pseudogene 42 O - 20121230 -9606 100129395 LOC100129395 - - - 17 17q12 NS5ATP13TP1 unknown - - - - 20121117 -9606 100129396 FAM106CP - FAM106C HGNC:38396 17 17p11.2 family with sequence similarity 106, member C pseudogene pseudo FAM106CP family with sequence similarity 106, member C, pseudogene O - 20121230 -9606 100129397 LOC100129397 - - - 15 15q21.1 uncharacterized LOC100129397 protein-coding - - - - 20120511 -9606 100129398 LPGAT1P1 - FAM34A2P|FAM34BP HGNC:31402 8 8p12 lysophosphatidylglycerol acyltransferase 1 pseudogene 1 pseudo LPGAT1P1 lysophosphatidylglycerol acyltransferase 1 pseudogene 1 O - 20121230 -9606 100129399 LOC100129399 - - - 6 6q21 uncharacterized LOC100129399 protein-coding - - - - 20120511 -9606 100129401 LYPLA1P1 - - HGNC:44005 7 7q31.32 lysophospholipase I pseudogene 1 pseudo LYPLA1P1 lysophospholipase I pseudogene 1 O - 20121230 -9606 100129402 HAUS4P1 - - HGNC:43763 1 1q24.2 HAUS augmin-like complex, subunit 4 pseudogene 1 pseudo HAUS4P1 HAUS augmin-like complex, subunit 4 pseudogene 1 O - 20121230 -9606 100129403 EEF1GP4 - - HGNC:44559 3 3q26.1 eukaryotic translation elongation factor 1 gamma pseudogene 4 pseudo EEF1GP4 eukaryotic translation elongation factor 1 gamma pseudogene 4 O - 20121230 -9606 100129404 LOC100129404 - - - 8 8p21.2 matrix metallopeptidase 12 (macrophage elastase) pseudogene pseudo - - - - 20121230 -9606 100129405 MSTO2P - MSTO2 HGNC:26329 1 1q22 misato homolog 2 pseudogene pseudo MSTO2P misato homolog 2 pseudogene O - 20121230 -9606 100129406 LOC100129406 - - - 1 1p13.2 uncharacterized LOC100129406 protein-coding - - - - 20121117 -9606 100129407 LINC00684 - DMRTC1-AS1 HGNC:44268 X Xq13.2 long intergenic non-protein coding RNA 684 miscRNA LINC00684 long intergenic non-protein coding RNA 684 O - 20121230 -9606 100129408 LOC100129408 - - - 18 18q21.31 uncharacterized LOC100129408 protein-coding - - - - 20120511 -9606 100129418 RPL31P16 - RPL31_3_207 HGNC:36001 2 2p22.2 ribosomal protein L31 pseudogene 16 pseudo RPL31P16 ribosomal protein L31 pseudogene 16 O - 20121230 -9606 100129421 RPL18P2 - RPL18_1_137 HGNC:35759 1 1q25.3 ribosomal protein L18 pseudogene 2 pseudo RPL18P2 ribosomal protein L18 pseudogene 2 O - 20121230 -9606 100129422 LOC100129422 - - - 6 6q22.31 LSM14A, SCD6 homolog A (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100129423 EI24P1 - - HGNC:44586 3 3q26.32 etoposide induced 2.4 pseudogene 1 pseudo EI24P1 etoposide induced 2.4 pseudogene 1 O - 20121230 -9606 100129424 RPL19P12 - RPL19_4_829 HGNC:36047 7 7q22.1 ribosomal protein L19 pseudogene 12 pseudo RPL19P12 ribosomal protein L19 pseudogene 12 O - 20121230 -9606 100129427 LOC100129427 - - - 7 7p12.2 uncharacterized LOC100129427 miscRNA - - - - 20121230 -9606 100129428 RANP5 - - HGNC:39860 1 1p13.3 RAN, member RAS oncogene family pseudogene 5 pseudo RANP5 RAN, member RAS oncogene family pseudogene 5 O - 20121230 -9606 100129434 LOC100129434 - - - 2 2p16.1 uncharacterized LOC100129434 unknown - - - - 20121230 -9606 100129438 ZFRP1 - - HGNC:38030 X Xq11.1 zinc finger RNA binding protein pseudogene 1 pseudo ZFRP1 zinc finger RNA binding protein pseudogene 1 O - 20121230 -9606 100129447 LOC100129447 - - - 12 12q24.13 uncharacterized LOC100129447 protein-coding - - - - 20120511 -9606 100129449 LOC100129449 - - - 2 2q23.3 PRO2055 unknown - - - - 20120710 -9606 100129452 GAMTP2 - - HGNC:37697 13 13q13.2 guanidinoacetate N-methyltransferase pseudogene 2 pseudo GAMTP2 guanidinoacetate N-methyltransferase pseudogene 2 O - 20121230 -9606 100129454 SNRPEP1 - - HGNC:35244 5 5q33.3 small nuclear ribonucleoprotein polypeptide E pseudogene 1 pseudo SNRPEP1 small nuclear ribonucleoprotein polypeptide E pseudogene 1 O - 20121230 -9606 100129455 LOC100129455 - - - 2 2q31.1 uncharacterized LOC100129455 unknown - - - - 20120710 -9606 100129456 LOC100129456 - - - 2 2q31.1 heat shock protein 90kDa alpha (cytosolic), class B member 1 pseudogene pseudo - - - - 20121230 -9606 100129457 LOC100129457 - - - 5 5q35.3 coiled-coil domain containing 86 pseudogene pseudo - - - - 20121230 -9606 100129459 PWWP2AP1 - - HGNC:39709 13 13q31.1 PWWP domain containing 2A pseudogene 1 pseudo PWWP2AP1 PWWP domain containing 2A pseudogene 1 O - 20121230 -9606 100129460 DPY19L1P1 - - HGNC:22395 7 7p14.3 dpy-19-like 1 pseudogene 1 (C. elegans) pseudo DPY19L1P1 dpy-19-like 1 pseudogene 1 (C. elegans) O - 20121230 -9606 100129461 LOC100129461 - - - 6 6p25.1 uncharacterized LOC100129461 unknown - - - - 20121230 -9606 100129464 CXorf28 - - HGNC:27336|Vega:OTTHUMG00000021082 X Xp22.33 chromosome X open reading frame 28 miscRNA CXorf28 chromosome X open reading frame 28 O - 20121230 -9606 100129468 LOC100129468 - - - 18 18p11.31 biorientation of chromosomes in cell division 1 pseudogene pseudo - - - - 20121230 -9606 100129471 LOC100129471 - - - 11 11q22.1 plastin 1 pseudogene pseudo - - - - 20121230 -9606 100129472 PTP4A1P6 - - HGNC:41933 11 11q14.2 protein tyrosine phosphatase type IVA, member 1 pseudogene 6 pseudo PTP4A1P6 protein tyrosine phosphatase type IVA, member 1 pseudogene 6 O - 20121230 -9606 100129473 LOC100129473 - - - 11 11q12.2 uncharacterized LOC100129473 unknown - - - - 20121230 -9606 100129476 LOC100129476 - - - 1 1p36.31 uncharacterized LOC100129476 unknown - - - - 20121230 -9606 100129478 LOC100129478 - - - 16 16p13.3 chromosome 4 open reading frame 46 pseudogene pseudo - - - - 20121230 -9606 100129480 LOC100129480 - - Ensembl:ENSG00000225526|Vega:OTTHUMG00000155368 3 3p25.2 uncharacterized LOC100129480 protein-coding - - - uncharacterized protein LOC100129480 20121230 -9606 100129482 ZNF37BP hCG_1770448 KOX21|ZNF37B HGNC:13103 10 10q11.21 zinc finger protein 37B, pseudogene pseudo ZNF37BP zinc finger protein 37B, pseudogene O - 20121230 -9606 100129483 LOC100129483 - - - X Xp22.2 solute carrier family 35, member C2 pseudogene pseudo - - - - 20121230 -9606 100129484 LOC100129484 - - - 7 7p22.1 uncharacterized LOC100129484 unknown - - - - 20121230 -9606 100129487 RPL24P9 - - - X Xp22.33 ribosomal protein L24 pseudogene pseudo - - - - 20121230 -9606 100129492 LOC100129492 - - - 1 1p34.1 small nuclear ribonucleoprotein Sm D1 pseudogene pseudo - - - - 20121230 -9606 100129497 LOC100129497 - - - 1 1p34.3 methyltransferase like 21D pseudogene pseudo - - - - 20121230 -9606 100129498 LOC100129498 - - - 11 11q23.3 uncharacterized LOC100129498 unknown - - - - 20120511 -9606 100129502 LOC100129502 - - - 15 15q26.1 uncharacterized LOC100129502 miscRNA - - - uncharacterized protein LOC100129502 20120726 -9606 100129503 PP13 - - - 17 17q25.3 uncharacterized LOC100129503 unknown - - - - 20121230 -9606 100129507 LOC100129507 - - - 19 19q12 mannosidase, alpha, class 1A, member 2 pseudogene pseudo - - - - 20121230 -9606 100129512 LOC100129512 - - - 8 8q22.3 POU class 5 homeobox 1 pseudogene pseudo - - - - 20121230 -9606 100129515 LINC00633 - - HGNC:44269 X Xq26.3 long intergenic non-protein coding RNA 633 miscRNA LINC00633 long intergenic non-protein coding RNA 633 O - 20121230 -9606 100129516 LOC100129516 - - - 3 3q29 uncharacterized LOC100129516 unknown - - - - 20121230 -9606 100129517 RPL26P23 - RPL26_13_865 HGNC:36634 7 7q36.3 ribosomal protein L26 pseudogene 23 pseudo RPL26P23 ribosomal protein L26 pseudogene 23 O - 20121230 -9606 100129518 LOC100129518 - - - 6 6q25.3 uncharacterized LOC100129518 miscRNA - - - - 20121230 -9606 100129520 LOC100129520 - - - X Xq25 testis expressed sequence 13-like protein-coding - - - uncharacterized protein LOC100129520 20121230 -9606 100129526 LOC100129526 - - - 5 5q23.1 protein tyrosine phosphatase, receptor type, D pseudogene pseudo - - - - 20121230 -9606 100129527 LOC100129527 - - - 8 8q13.3 ESF1, nucleolar pre-rRNA processing protein, homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100129528 MUC8 - - HGNC:7519|MIM:601932 12 12q24.33 mucin 8 protein-coding MUC8 mucin 8 O mucin 8, tracheobronchial 20121230 -9606 100129534 LOC100129534 - - - 1 1p36.33 small nuclear ribonucleoprotein polypeptide N pseudogene pseudo - - - - 20121230 -9606 100129540 LOC100129540 - - - 15 15q25.1 uncharacterized LOC100129540 unknown - - - - 20121230 -9606 100129542 RPS29P21 - RPS29_16_1562 HGNC:36479 17 17q23.1 ribosomal protein S29 pseudogene 21 pseudo RPS29P21 ribosomal protein S29 pseudogene 21 O - 20121230 -9606 100129543 ZNF730 - - HGNC:32470|Ensembl:ENSG00000183850 19 19p12 zinc finger protein 730 protein-coding ZNF730 zinc finger protein 730 O - 20121230 -9606 100129550 LOC100129550 - - - 3 3q21.1 uncharacterized LOC100129550 miscRNA - - - - 20121230 -9606 100129552 RPS26P38 - RPS26_15_1076 HGNC:36406 10 10q23.2 ribosomal protein S26 pseudogene 38 pseudo RPS26P38 ribosomal protein S26 pseudogene 38 O - 20121230 -9606 100129553 RPL13AP16 - RPL13A_7_832 HGNC:35722 7 7q22.3 ribosomal protein L13a pseudogene 16 pseudo RPL13AP16 ribosomal protein L13a pseudogene 16 O - 20121230 -9606 100129554 LOC100129554 - - - 6 6q24.1 thyroid hormone receptor interactor 4 pseudogene pseudo - - - - 20121230 -9606 100129555 HMGN1P7 - - HGNC:39350 3 3q11.2 high mobility group nucleosome binding domain 1 pseudogene 7 pseudo HMGN1P7 high mobility group nucleosome binding domain 1 pseudogene 7 O - 20121230 -9606 100129556 RPS10P27 - RPS10_12_1588 HGNC:36850 18 18q11.2 ribosomal protein S10 pseudogene 27 pseudo RPS10P27 ribosomal protein S10 pseudogene 27 O - 20121230 -9606 100129557 LOC100129557 - - - 3 3p12.2 heterogeneous nuclear ribonucleoprotein A1-like pseudo - - - - 20121230 -9606 100129561 MYL6P3 - - HGNC:37812 10 10q21.3 myosin, light chain 6 pseudogene 3 pseudo MYL6P3 myosin, light chain 6 pseudogene 3 O - 20121230 -9606 100129564 PTP4A1P4 - - HGNC:41931 5 5q14.3 protein tyrosine phosphatase type IVA, member 1 pseudogene 4 pseudo PTP4A1P4 protein tyrosine phosphatase type IVA, member 1 pseudogene 4 O - 20121230 -9606 100129566 LOC100129566 - - - 5 5q13.3 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100129570 PEBP1P3 - - HGNC:44345 1 1q31.3 phosphatidylethanolamine binding protein 1 pseudogene 3 pseudo PEBP1P3 phosphatidylethanolamine binding protein 1 pseudogene 3 O - 20121230 -9606 100129572 LOC100129572 - - - 4 4q31.23 uncharacterized LOC100129572 protein-coding - - - - 20120511 -9606 100129573 LOC100129573 - - - 1 1q25.3 tRNA methyltransferase 2 homolog B (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100129574 LOC100129574 - - - 5 5q11.2 chromosome 12 open reading frame 29 pseudogene pseudo - - - - 20121230 -9606 100129575 MR1P1 - MR1B - 1 1q25.3 major histocompatibility complex, class I-related pseudogene pseudo - - - - 20121230 -9606 100129577 LOC100129577 - - - 6 6q23.3 mitochondrial carrier 1 pseudogene pseudo - - - - 20121230 -9606 100129581 LOC100129581 - - - 2 2p25.1 uncharacterized LOC100129581 unknown - - - - 20120511 -9606 100129583 FAM47E hCG_23000 - HGNC:34343|Ensembl:ENSG00000189157|Vega:OTTHUMG00000160966 4 4q21.1 family with sequence similarity 47, member E protein-coding FAM47E family with sequence similarity 47, member E O protein FAM47E 20121230 -9606 100129584 RPL17P44 - RPL17_28_1610 HGNC:36396 18 18q21.33 ribosomal protein L17 pseudogene 44 pseudo RPL17P44 ribosomal protein L17 pseudogene 44 O - 20121230 -9606 100129586 LOC100129586 - - - 1 1q21.2 ubiquitin-conjugating enzyme E2D 4 (putative) pseudogene pseudo - - - - 20121230 -9606 100129587 VN1R34P - - HGNC:37354 7 7q11.21 vomeronasal 1 receptor 34 pseudogene pseudo VN1R34P vomeronasal 1 receptor 34 pseudogene O - 20121230 -9606 100129589 LOC100129589 - - - 12 12q21.31 TM2 domain containing 3 pseudogene pseudo - - - - 20121230 -9606 100129591 RPL29P24 - RPL29_16_1290 HGNC:35616 12 12q24.31 ribosomal protein L29 pseudogene 24 pseudo RPL29P24 ribosomal protein L29 pseudogene 24 O - 20121230 -9606 100129594 FAM8A3P - - HGNC:16374 2 2q23.2 family with sequence similarity 8, member A1 pseudogene pseudo FAM8A3P family with sequence similarity 8, member A3 pseudogene O - 20121230 -9606 100129595 PRUNEP1 RP11-380N8.1 - HGNC:39723 13 13q12.13 prune homolog (Drosophila) pseudogene 1 pseudo PRUNEP1 prune homolog (Drosophila) pseudogene 1 O - 20121230 -9606 100129596 LOC100129596 - - - 8 8q24.3 uncharacterized LOC100129596 unknown - - - - 20121230 -9606 100129597 LINC00462 - - HGNC:42811 13 13q14.2 long intergenic non-protein coding RNA 462 miscRNA LINC00462 long intergenic non-protein coding RNA 462 O - 20121230 -9606 100129599 RPS29P14 - RPS29_3_802 HGNC:36471 7 7p14.3 ribosomal protein S29 pseudogene 14 pseudo RPS29P14 ribosomal protein S29 pseudogene 14 O - 20121230 -9606 100129601 LOC100129601 - - - 9 9q21.13 cell division cycle associated 7 pseudogene pseudo - - - - 20121230 -9606 100129603 LOC100129603 tcag7.935 - - 7 7p22.2 uncharacterized LOC100129603 miscRNA - - - - 20120511 -9606 100129604 PABPC1P12 - - HGNC:37994 10 10p11.1 poly(A) binding protein, cytoplasmic 1 pseudogene 12 pseudo PABPC1P12 poly(A) binding protein, cytoplasmic 1 pseudogene 12 O - 20121230 -9606 100129606 LOC100129606 - - - 7 7p15.2 heterogeneous nuclear ribonucleoprotein A1-like pseudo - - - - 20121209 -9606 100129607 LOC100129607 - - - 11 11q12.1 ubiquitin carboxyl-terminal esterase L1 (ubiquitin thiolesterase) pseudogene pseudo - - - - 20121230 -9606 100129611 LOC100129611 - - - 1 1p36.21 PRAME family member 17-like pseudo - - - - 20121209 -9606 100129616 LOC100129616 - - - 6 6p22.3 putative UPF0607 protein ENSP00000332738-like pseudo - - - - 20121230 -9606 100129617 LOC100129617 - - - 16 16q23.2 uncharacterized LOC100129617 miscRNA - - - - 20121230 -9606 100129618 THAP5P2 - - HGNC:44502 3 3p24.3 THAP domain containing 5 pseudogene 2 pseudo THAP5P2 THAP domain containing 5 pseudogene 2 O - 20121230 -9606 100129620 LOC100129620 - - - 1 1p21.3 uncharacterized LOC100129620 miscRNA - - - - 20121230 -9606 100129622 RSU1P1 AL022344.6 Y214H10.6 HGNC:31114 10 10q11.21 Ras suppressor protein 1 pseudogene 1 pseudo RSU1P1 Ras suppressor protein 1 pseudogene 1 O - 20121230 -9606 100129626 LOC100129626 - - - 6 6p25.2 translocase of outer mitochondrial membrane 5 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100129627 PPP1R1AP2 - - HGNC:16317 16 16p11.1 protein phosphatase 1, regulatory (inhibitor) subunit 1A pseudogene 2 pseudo PPP1R1AP2 protein phosphatase 1, regulatory (inhibitor) subunit 1A pseudogene 2 O - 20121230 -9606 100129629 EIF2S2P6 - - HGNC:37794 11 11q14.1 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 6 pseudo EIF2S2P6 eukaryotic translation initiation factor 2, subunit 2 beta pseudogene 6 O - 20121230 -9606 100129631 IGHV2OR16-5 - IGHV2OR165 HGNC:5579|IMGT/GENE-DB:IGHV2/OR16-5 16 16p11.2 immunoglobulin heavy variable 2/OR16-5 (non-functional) pseudo IGHV2OR16-5 immunoglobulin heavy variable 2/OR16-5 (non-functional) O - 20121230 -9606 100129634 RPL9P19 - RPL9_4_783 HGNC:36688 7 7p21.3 ribosomal protein L9 pseudogene 19 pseudo RPL9P19 ribosomal protein L9 pseudogene 19 O - 20121230 -9606 100129636 LOC100129636 - - - 6 6p22.1 uncharacterized LOC100129636 protein-coding - - - uncharacterized protein LOC100129636 20121230 -9606 100129637 LOC100129637 - - - 16 16q24.2 uncharacterized LOC100129637 unknown - - - - 20120815 -9606 100129640 LOC100129640 - - - 12 12p13.2 DEAD (Asp-Glu-Ala-Asp) box polypeptide 55 pseudogene pseudo - - - - 20121230 -9606 100129641 BTG1P1 - - HGNC:37692 12 12p13.31 B-cell translocation gene 1 pseudogene 1 pseudo BTG1P1 B-cell translocation gene 1 pseudogene 1 O - 20121230 -9606 100129643 POM121L11P - - HGNC:35447 22 22q11.23 POM121 transmembrane nucleoporin-like 11, pseudogene pseudo POM121L11P POM121 transmembrane nucleoporin-like 11, pseudogene O - 20121230 -9606 100129645 RPL18P9 - RPL18_3_1196 HGNC:36766 12 12p13.32 ribosomal protein L18 pseudogene 9 pseudo RPL18P9 ribosomal protein L18 pseudogene 9 O - 20121230 -9606 100129646 LOC100129646 - - - 12 12p11.22 intraflagellar transport 57 homolog (Chlamydomonas) pseudogene pseudo - - - - 20121230 -9606 100129647 RPL5P35 - RPL5_16_1760 HGNC:36967 22 22q13.33 ribosomal protein L5 pseudogene 35 pseudo RPL5P35 ribosomal protein L5 pseudogene 35 O - 20121230 -9606 100129648 LOC100129648 - - - 22 22q13.2 uncharacterized LOC100129648 unknown - - - - 20120511 -9606 100129649 PGDP2 - - HGNC:39144 12 12q21.2 phosphogluconate dehydrogenase pseudogene 2 pseudo PGDP2 phosphogluconate dehydrogenase pseudogene 2 O - 20121230 -9606 100129650 RPS26P55 - RPS26_30_1651 HGNC:36500 19 19q13.11 ribosomal protein S26 pseudogene 55 pseudo RPS26P55 ribosomal protein S26 pseudogene 55 O - 20121230 -9606 100129654 TCF24 - TCF-24|bHLHa25 HGNC:32275|Ensembl:ENSG00000261787|Vega:OTTHUMG00000177282 8 8q13.1 transcription factor 24 protein-coding TCF24 transcription factor 24 O - 20121230 -9606 100129657 RPL17P18 - RPL17_5_454 HGNC:36538 3 3q29 ribosomal protein L17 pseudogene 18 pseudo RPL17P18 ribosomal protein L17 pseudogene 18 O - 20121230 -9606 100129661 LOC100129661 - - - X Xq28 HCLS1 associated protein X-1 pseudogene pseudo - - - - 20121230 -9606 100129662 FGF13-AS1 - - HGNC:44264 X Xq26.3 FGF13 antisense RNA 1 miscRNA FGF13-AS1 FGF13 antisense RNA 1 O - 20121230 -9606 100129664 LOC100129664 - - - 1 1q41 slowmo homolog 2 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100129667 LOC100129667 - - - 8 8q11.23 chromosome 5 open reading frame 13 pseudogene pseudo - - - - 20121230 -9606 100129669 IZUMO3 RP11-20A20.1 C9orf134|bA20A20.1 HGNC:31421|Ensembl:ENSG00000205442|Vega:OTTHUMG00000019704 9 9p21.3 IZUMO family member 3 protein-coding IZUMO3 IZUMO family member 3 O izumo sperm-egg fusion protein 3 20121230 -9606 100129670 RPL18P8 - RPL18_5_1138 HGNC:36878 11 11p12 ribosomal protein L18 pseudogene 8 pseudo RPL18P8 ribosomal protein L18 pseudogene 8 O - 20121230 -9606 100129672 LOC100129672 - - - 11 11p11.12 Cdon homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100129675 LOC100129675 - - - 2 2q37.3 uncharacterized LOC100129675 unknown - - - - 20120511 -9606 100129682 LOC100129682 - - - 19 19p13.2 ribosomal protein L17 pseudogene pseudo - - - - 20121230 -9606 100129683 LOC100129683 - - - 17 17p11.1 WEE1 homolog (S. pombe) pseudogene pseudo - - - - 20121230 -9606 100129685 RPL21P125 - RPL21_55_1506 HGNC:36039 17 17p13.2 ribosomal protein L21 pseudogene 125 pseudo RPL21P125 ribosomal protein L21 pseudogene 125 O - 20121230 -9606 100129687 LOC100129687 - - - 15 15q13.1 chromosome 16 open reading frame 61 pseudogene pseudo - - - - 20121230 -9606 100129690 LOC100129690 - - - 1 1q23.1-q23.2 RAD1 homolog (S. pombe) pseudogene pseudo - - - - 20121230 -9606 100129692 EIF4BP9 - - HGNC:37942 X Xq12 eukaryotic translation initiation factor 4B pseudogene 9 pseudo EIF4BP9 eukaryotic translation initiation factor 4B pseudogene 9 O - 20121230 -9606 100129693 LOC100129693 - - - 4 4q22.1 mitochondrial ribosomal protein L19 pseudogene pseudo - - - - 20121230 -9606 100129694 R3HDM2P2 - - HGNC:44057 6 6q16.3 R3H domain containing 2 pseudogene 2 pseudo R3HDM2P2 R3H domain containing 2 pseudogene 2 O - 20121230 -9606 100129696 TFP1 - TFP HGNC:11759 3 3q22.1 transferrin pseudogene 1 pseudo TFP1 transferrin pseudogene 1 O - 20121230 -9606 100129697 LOC100129697 - - - 16 16q24.3 uncharacterized LOC100129697 unknown - - - - 20121230 -9606 100129703 NAG20 - - - 7 7q33 NAG20 unknown - - - - 20121230 -9606 100129706 HMGB1P13 - HMGB1L13 HGNC:13318 6 6q23.2 high mobility group box 1 pseudogene 13 pseudo HMGB1P13 high mobility group box 1 pseudogene 13 O - 20121230 -9606 100129707 LOC100129707 - - - 3 3q13.33 presenilin associated, rhomboid-like pseudogene pseudo - - - - 20121230 -9606 100129708 IPO7P1 - - HGNC:39837 X Xp11.22 importin 7 pseudogene 1 pseudo IPO7P1 importin 7 pseudogene 1 O - 20121230 -9606 100129714 RCC2P8 - - HGNC:42384 4 4q25 regulator of chromosome condensation 2 pseudogene 8 pseudo RCC2P8 regulator of chromosome condensation 2 pseudogene 8 O - 20121230 -9606 100129716 ARRDC3-AS1 - - HGNC:44145 5 5q14.3 ARRDC3 antisense RNA 1 miscRNA ARRDC3-AS1 ARRDC3 antisense RNA 1 O - 20121230 -9606 100129717 LOC100129717 - - - 8 8p21.2 uncharacterized LOC100129717 unknown - - - - 20120815 -9606 100129718 RPS13P3 - RPS13_3_211 HGNC:36866 2 2p21 ribosomal protein S13 pseudogene 3 pseudo RPS13P3 ribosomal protein S13 pseudogene 3 O - 20121230 -9606 100129721 LOC100129721 - - - 10 10q21.1 uncharacterized LOC100129721 protein-coding - - - - 20120511 -9606 100129722 LOC100129722 - - - 9 9q34.3 uncharacterized LOC100129722 miscRNA - - - - 20121230 -9606 100129723 HMGB1P12 - HMGB1L12 HGNC:13317 X Xq23 high mobility group box 1 pseudogene 12 pseudo HMGB1P12 high mobility group box 1 pseudogene 12 O - 20121230 -9606 100129724 LOC100129724 - - - 2 2p23.3 uncharacterized LOC100129724 unknown - - - - 20120511 -9606 100129725 LOC100129725 - - - 3 3q28 PERP, TP53 apoptosis effector pseudogene pseudo - - - - 20121230 -9606 100129726 LOC100129726 - - - 2 2p21 uncharacterized LOC100129726 miscRNA - - - - 20121230 -9606 100129727 TMED10P2 - - HGNC:38105 3 3q21.3 transmembrane emp24-like trafficking protein 10 (yeast) pseudogene 2 pseudo TMED10P2 transmembrane emp24-like trafficking protein 10 (yeast) pseudogene 2 O - 20121230 -9606 100129728 LOC100129728 - - - 4 4q12 nucleic acid binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100129731 LOC100129731 - - - 10 10q23.33 RAB11A, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100129732 RPS6P15 - RPS6_7_1097 HGNC:36942 10 10q25.2 ribosomal protein S6 pseudogene 15 pseudo RPS6P15 ribosomal protein S6 pseudogene 15 O - 20121230 -9606 100129734 LOC100129734 - - - 1 1q25.2 zinc finger, AN1-type domain 1 pseudogene pseudo - - - - 20121230 -9606 100129736 CDV3P1 - - HGNC:42387 3 3q11.2 CDV3 homolog (mouse) pseudogene 1 pseudo CDV3P1 CDV3 homolog (mouse) pseudogene 1 O - 20121230 -9606 100129738 SETP9 - - HGNC:42928 1 1q23.3 SET pseudogene 9 pseudo SETP9 SET pseudogene 9 O - 20121230 -9606 100129739 LOC100129739 - - - 12 12q24.13 dynein, light chain, LC8-type 1 pseudogene pseudo - - - - 20121230 -9606 100129742 RPS3AP13 - - - 2 2q24.2 ribosomal protein S3A pseudogene pseudo - - - - 20121230 -9606 100129743 RPL7P14 - RPL7_5_313 HGNC:35984 2 2q33.2 ribosomal protein L7 pseudogene 14 pseudo RPL7P14 ribosomal protein L7 pseudogene 14 O - 20121230 -9606 100129755 RSL24D1P1 - RPL24p|RPL30BP|RSL24D1P|dJ97D16.2 HGNC:13979 6 6p22.1 ribosomal L24 domain containing 1 pseudogene 1 pseudo RSL24D1P1 ribosomal L24 domain containing 1 pseudogene 1 O - 20121230 -9606 100129761 LOC100129761 - - - 6 6p24.1 adenosylmethionine decarboxylase 1 pseudogene pseudo - - - - 20121230 -9606 100129763 LOC100129763 - - - 4 4p16.1 uncharacterized LOC100129763 protein-coding - - - - 20120511 -9606 100129769 AKR1B1P6 - - HGNC:33498 18 18p11.22 aldo-keto reductase family 1, member B1 pseudogene 6 pseudo AKR1B1P6 aldo-keto reductase family 1, member B1 pseudogene 6 O - 20121230 -9606 100129772 TMPOP1 - Em:AB014080.3|TMPOL1 HGNC:21364 6 6p21.33 thymopoietin pseudogene 1 pseudo TMPOP1 thymopoietin pseudogene 1 O - 20121230 -9606 100129774 LOC100129774 - - - 18 18p11.32 ATPase family, AAA domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100129775 LOC100129775 - - - 11 11q13.5 uncharacterized LOC100129775 protein-coding - - - - 20121018 -9606 100129776 LOC100129776 - - - 1 1p36.23 eukaryotic translation initiation factor 2, subunit 3 gamma, 52kDa pseudogene pseudo - - - - 20121230 -9606 100129777 BNIP3P6 - - HGNC:39659 14 14q11.2 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 6 pseudo BNIP3P6 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 6 O - 20121209 -9606 100129779 LOC100129779 - - - 11 11q13.3 DnaJ (Hsp40) homolog, subfamily B, member 7 pseudogene pseudo - - - - 20121230 -9606 100129781 LOC100129781 - - - 16 16p13.12 uncharacterized LOC100129781 miscRNA - - - - 20121209 -9606 100129782 ATP5A1P4 - ATP5AP4 HGNC:23563 14 14q23.2 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 4 pseudo ATP5A1P4 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 4 O - 20121230 -9606 100129784 RPL17P26 - RPL17_14_707 HGNC:35597 6 6p12.1 ribosomal protein L17 pseudogene 26 pseudo RPL17P26 ribosomal protein L17 pseudogene 26 O - 20121230 -9606 100129785 LOC100129785 - - - 9 9q34.11 uncharacterized LOC100129785 protein-coding - - - - 20120511 -9606 100129792 CCDC152 Chr5_400 CH5400 HGNC:34438|Ensembl:ENSG00000198865|Vega:OTTHUMG00000162141 5 5p12 coiled-coil domain containing 152 protein-coding CCDC152 coiled-coil domain containing 152 O coiled-coil domain-containing protein 152 20121230 -9606 100129793 TLK1P1 - TLK1P|TLK1ps HGNC:28608 9 9q33.2 tousled-like kinase 1 pseudogene 1 pseudo TLK1P1 tousled-like kinase 1 pseudogene 1 O - 20121230 -9606 100129794 LOC100129794 - - - 14 14q13.3 uncharacterized LOC100129794 miscRNA - - - - 20121230 -9606 100129795 LOC100129795 - - - 11 11q13.4 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100129796 RPL13P13 - RPL13_5_1672 HGNC:36832 19 19q13.43 ribosomal protein L13 pseudogene 13 pseudo RPL13P13 ribosomal protein L13 pseudogene 13 O - 20121230 -9606 100129799 RPL13AP21 - RPL13A_10_1231 HGNC:35654 12 12q12 ribosomal protein L13a pseudogene 21 pseudo RPL13AP21 ribosomal protein L13a pseudogene 21 O - 20121230 -9606 100129800 ZNF807 - ZNF181P1|ZNF807P HGNC:33229 19 19q13.11 zinc finger protein 807 unknown ZNF807 zinc finger protein 807 O - 20121230 -9606 100129801 RPL12P37 - RPL12_18_1579 HGNC:35565 17 17q25.3 ribosomal protein L12 pseudogene 37 pseudo RPL12P37 ribosomal protein L12 pseudogene 37 O - 20121230 -9606 100129808 RPL24P6 - RPL24_3_450 HGNC:36637 3 3q29 ribosomal protein L24 pseudogene 6 pseudo RPL24P6 ribosomal protein L24 pseudogene 6 O - 20121230 -9606 100129813 LOC100129813 - - - X Xq26.3 cancer/testis antigen family 45, member A5 pseudogene pseudo - - - - 20121230 -9606 100129815 PGAM1P13 - - HGNC:42461 8 8q23.1 phosphoglycerate mutase 1 pseudogene 13 pseudo PGAM1P13 phosphoglycerate mutase 1 pseudogene 13 O - 20121230 -9606 100129818 LOC100129818 - - - X Xq23 tubulin, alpha 1a pseudogene pseudo - - - - 20121230 -9606 100129819 RPL22P7 - RPL22_4_275 HGNC:35602 2 2q21.1 ribosomal protein L22 pseudogene 7 pseudo RPL22P7 ribosomal protein L22 pseudogene 7 O - 20121230 -9606 100129824 PIP5K1P2 - - HGNC:38068 7 7q36.3 phosphatidylinositol-4-phosphate 5-kinase, type I, pseudogene 2 pseudo PIP5K1P2 phosphatidylinositol-4-phosphate 5-kinase, type I, pseudogene 2 O - 20121230 -9606 100129827 MRVI1-AS1 - - HGNC:43434 11 11p15.4 MRVI1 antisense RNA 1 miscRNA MRVI1-AS1 MRVI1 antisense RNA 1 O - 20121230 -9606 100129830 LOC100129830 - - - 15 15q21.1 5-azacytidine induced 2 pseudogene pseudo - - - - 20121230 -9606 100129831 LOC100129831 UNQ6493 - - 19 19p13.3 EPWW6493 unknown - - - - 20121230 -9606 100129836 COL4A2-AS2 - - HGNC:39849 13 13q34 COL4A2 antisense RNA 2 unknown COL4A2-AS2 COL4A2 antisense RNA 2 O uncharacterized protein LOC100129836 20121222 -9606 100129840 LOC100129840 - - - 15 15q23 uncharacterized LOC100129840 protein-coding - - - - 20120511 -9606 100129842 ZNF737 - ZNF102 HGNC:32468|MIM:603984|Ensembl:ENSG00000237440|Vega:OTTHUMG00000179732 19 19p12 zinc finger protein 737 protein-coding ZNF737 zinc finger protein 737 O zinc finger protein 102 (Y3) 20121230 -9606 100129843 LOC100129843 - - - X Xq21.1 pyruvate dehydrogenase kinase, isozyme 1 pseudogene pseudo - - - - 20121230 -9606 100129844 LOC100129844 - - - 6 6q24.1 DnaJ (Hsp40) homolog, subfamily C, member 7 pseudogene pseudo - - - - 20121230 -9606 100129845 PCOLCE-AS1 - - HGNC:40430 7 7q22.1 PCOLCE antisense RNA 1 miscRNA PCOLCE-AS1 PCOLCE antisense RNA 1 O - 20121230 -9606 100129846 LOC100129846 - - - 8 8p12 uncharacterized LOC100129846 protein-coding - - - - 20120511 -9606 100129847 LOC100129847 - - - 6 6q15 ras homolog family member A pseudogene pseudo - - - - 20121230 -9606 100129851 LOC100129851 - - - X Xp11.4 claudin 7 pseudogene pseudo - - - - 20121230 -9606 100129852 LOC100129852 RP3-439I14.1 - - 6 6q16.3 uncharacterized LOC100129852 protein-coding - - - - 20120511 -9606 100129853 LOC100129853 - - - 10 10q21.3 DnaJ (Hsp40) homolog, subfamily C, member 19 pseudogene pseudo - - - - 20121230 -9606 100129854 LOC100129854 - - - 6 6q16.3 arginase, type II pseudogene pseudo - - - - 20121230 -9606 100129856 RPL37AP5 - RPL37A_2_859 HGNC:36977 7 7q34 ribosomal protein L37a pseudogene 5 pseudo RPL37AP5 ribosomal protein L37a pseudogene 5 O - 20121230 -9606 100129858 LOC100129858 - - - 4 4q31.1 uncharacterized LOC100129858 miscRNA - - - - 20121230 -9606 100129860 LOC100129860 RP11-363G10.2 - - X Xp11.22 uncharacterized LOC100129860 unknown - - - - 20121230 -9606 100129861 RSL24D1P7 - - HGNC:37877 8 8p23.2 ribosomal L24 domain containing 1 pseudogene 7 pseudo RSL24D1P7 ribosomal L24 domain containing 1 pseudogene 7 O - 20121230 -9606 100129863 SUCLA2P2 - - HGNC:38102 2 2p12 succinate-CoA ligase, ADP-forming, beta subunit pseudogene 2 pseudo SUCLA2P2 succinate-CoA ligase, ADP-forming, beta subunit pseudogene 2 O - 20121230 -9606 100129866 EI24P2 - - HGNC:44587 1 1q23.1 etoposide induced 2.4 pseudogene 2 pseudo EI24P2 etoposide induced 2.4 pseudogene 2 O - 20121230 -9606 100129867 RPL30P14 - RPL30_8_1609 HGNC:36257 18 18q21.33 ribosomal protein L30 pseudogene 14 pseudo RPL30P14 ribosomal protein L30 pseudogene 14 O - 20121230 -9606 100129869 LOC100129869 - - - 20 20q13.32 uncharacterized LOC100129869 unknown - - - - 20120710 -9606 100129871 GRPEL2P3 - - HGNC:41971 7 7q21.3 GrpE-like 2, mitochondrial (E. coli) pseudogene 3 pseudo GRPEL2P3 GrpE-like 2, mitochondrial (E. coli) pseudogene 3 O - 20121230 -9606 100129872 LOC100129872 - - - 20 20q13.12 uncharacterized LOC100129872 unknown - - - - 20120511 -9606 100129878 LOC100129878 - - - 18 18q21.1 uncharacterized LOC100129878 unknown - - - - 20121017 -9606 100129880 LOC100129880 - - - 12 12q23.2 neudesin neurotrophic factor pseudogene pseudo - - - - 20121230 -9606 100129882 RPL31P49 - RPL31_26_1276 HGNC:35909 12 12q24.11 ribosomal protein L31 pseudogene 49 pseudo RPL31P49 ribosomal protein L31 pseudogene 49 O - 20121230 -9606 100129884 LOC100129884 - - - 13 13q22.1 uncharacterized LOC100129884 protein-coding - - - uncharacterized protein LOC100129884 20120511 -9606 100129885 SCXA - SCX|bHLHa41 HGNC:24312|MIM:609067|Ensembl:ENSG00000188686|Vega:OTTHUMG00000165112 8 8q24.3 scleraxis homolog A (mouse) protein-coding SCXA scleraxis homolog A (mouse) O basic helix-loop-helix transcription factor scleraxis|class A basic helix-loop-helix protein 41|class A basic helix-loop-helix protein 48|class II bHLH protein scleraxis 20121230 -9606 100129888 LOC100129888 - - - 2 2q33.1 uncharacterized LOC100129888 unknown - - - - 20120622 -9606 100129894 LOC100129894 - - - 10 10p15.3 uncharacterized LOC100129894 unknown - - - - 20120511 -9606 100129900 LOC100129900 - - - 3 3p24.1 P008-1 unknown - - - - 20120710 -9606 100129902 RPS29P11 - RPS29_8_466 HGNC:36413 4 4p15.2 ribosomal protein S29 pseudogene 11 pseudo RPS29P11 ribosomal protein S29 pseudogene 11 O - 20121230 -9606 100129905 RPS27P19 - RPS27_7_1180 HGNC:36094 11 11q23.3 ribosomal protein S27 pseudogene 19 pseudo RPS27P19 ribosomal protein S27 pseudogene 19 O - 20121230 -9606 100129917 LOC100129917 - - - 4 4p16.3 uncharacterized LOC100129917 miscRNA - - - - 20121230 -9606 100129919 HMGB1P45 - - HGNC:39277 1 1p32.3 high mobility group box 1 pseudogene 45 pseudo HMGB1P45 high mobility group box 1 pseudogene 45 O - 20121230 -9606 100129920 LOC100129920 - - - 11 11q13.4 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100129921 RPL15P4 - Em:AC006046.2|RPL15_4_680 HGNC:21663 6 6p21.33 ribosomal protein L15 pseudogene 4 pseudo RPL15P4 ribosomal protein L15 pseudogene 4 O - 20121230 -9606 100129923 LOC100129923 - - - 14 14q11.2 myoneurin pseudogene pseudo - - - - 20121230 -9606 100129924 LOC100129924 - - Ensembl:ENSG00000164008|Vega:OTTHUMG00000007568 1 1p34.2 uncharacterized LOC100129924 protein-coding - - - uncharacterized protein LOC100129924 20121230 -9606 100129926 RPL12P13 - - - 1 1p36.11 ribosomal protein L12 pseudogene pseudo - - - - 20121230 -9606 100129927 LOC100129927 - - - 4 4p16.1 putative uncharacterized protein UNQ6125/PRO20090-like pseudo - - - - 20121209 -9606 100129928 RPL31P5 - RPL31_29_1379 HGNC:23547 14 14q23.2 ribosomal protein L31 pseudogene 5 pseudo RPL31P5 ribosomal protein L31 pseudogene 5 O - 20121230 -9606 100129929 NUP210P2 - - HGNC:42707 3 3p25.2 nucleoporin 210kDa pseudogene 2 pseudo NUP210P2 nucleoporin 210kDa pseudogene 2 O - 20121230 -9606 100129930 RPL10P10 - RPL10_3_705 HGNC:35486 6 6p12.1 ribosomal protein L10 pseudogene 10 pseudo RPL10P10 ribosomal protein L10 pseudogene 10 O - 20121230 -9606 100129931 LOC100129931 - - - 4 4p16.1 uncharacterized LOC100129931 miscRNA - - - - 20121230 -9606 100129933 GLYATL1P2 - - HGNC:37863 11 11q12.1 glycine-N-acyltransferase-like 1 pseudogene 2 pseudo GLYATL1P2 glycine-N-acyltransferase-like 1 pseudogene 2 O - 20121230 -9606 100129934 RPL34P14 - RPL34_9_693 HGNC:35927 6 6p21.1 ribosomal protein L34 pseudogene 14 pseudo RPL34P14 ribosomal protein L34 pseudogene 14 O - 20121230 -9606 100129935 LOC100129935 - - - 19 19q13.2 lectin, galactoside-binding, soluble, 14 pseudogene pseudo - - - - 20121230 -9606 100129936 LOC100129936 - - - 22 22q12.1 uncharacterized LOC100129936 unknown - - - - 20120511 -9606 100129937 LOC100129937 - - - 12 12p12.1 chromosome 16 open reading frame 88 pseudogene pseudo - - - - 20121230 -9606 100129938 LOC100129938 - - - 19 19q13.33 uncharacterized LOC100129938 unknown - - - - 20120511 -9606 100129939 RPS10P31 - RPS10_16_1758 HGNC:35998 22 22q13.31 ribosomal protein S10 pseudogene 31 pseudo RPS10P31 ribosomal protein S10 pseudogene 31 O - 20121230 -9606 100129940 LOC100129940 - - - 12 12q14.3 uncharacterized LOC100129940 unknown - - - - 20121230 -9606 100129941 RSL24D1P5 - - HGNC:37870 12 12q14.2 ribosomal L24 domain containing 1 pseudogene 5 pseudo RSL24D1P5 ribosomal L24 domain containing 1 pseudogene 5 O - 20121230 -9606 100129942 LOC100129942 - - - 15 15q26.1 capping protein (actin filament) muscle Z-line, alpha 2 pseudogene pseudo - - - - 20121230 -9606 100129947 LOC100129947 - - - X Xq25 zinc finger protein 674 pseudogene pseudo - - - - 20121230 -9606 100129948 LOC100129948 - - - 1 1q32.3 riboflavin kinase pseudogene pseudo - - - - 20121230 -9606 100129949 LOC100129949 - - - 1 1q43 protein RCC2-like pseudo - - - - 20121230 -9606 100129952 RPL39P10 - RPL39_4_182 HGNC:35745 1 1q43 ribosomal protein L39 pseudogene 10 pseudo RPL39P10 ribosomal protein L39 pseudogene 10 O - 20121230 -9606 100129955 LOC100129955 - - - 2 2q22.2 RNA polymerase I-specific transcription initiation factor RRN3-like pseudo - - - - 20121230 -9606 100129956 LOC100129956 - - - X Xq28 high mobility group nucleosomal binding domain 2 pseudogene pseudo - - - - 20121230 -9606 100129957 LOC100129957 - - - 4 4q34.1 PC4 and SFRS1 interacting protein 1 pseudogene pseudo - - - - 20121230 -9606 100129958 KRT8P44 - - HGNC:39878 6 6q26 keratin 8 pseudogene 44 pseudo KRT8P44 keratin 8 pseudogene 44 O - 20121230 -9606 100129959 AK3P4 - - HGNC:39063 5 5q22.3 adenylate kinase 3 pseudogene 4 pseudo AK3P4 adenylate kinase 3 pseudogene 4 O - 20121230 -9606 100129960 SDCBPP2 - - HGNC:44686 8 8q13.3 syndecan binding protein (syntenin) pseudogene 2 pseudo SDCBPP2 syndecan binding protein (syntenin) pseudogene 2 O - 20121230 -9606 100129961 LOC100129961 - - - 2 2q21.3 uncharacterized LOC100129961 miscRNA - - - - 20121230 -9606 100129966 LOC100129966 - - - 11 11p15.1 mitochondrial carrier 1 pseudogene pseudo - - - - 20121230 -9606 100129969 FAM205CP - - HGNC:42673 9 9p13.3 transmembrane protein C9orf144B pseudogene pseudo FAM205CP family with sequence similarity 205, member C, pseudogene O - 20121230 -9606 100129972 LOC100129972 - - - 15 15q22.2 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100129973 LOC100129973 - - - 15 15q21.2 uncharacterized LOC100129973 miscRNA - - - - 20121230 -9606 100129974 LOC100129974 - - - 17 17p13.3 uncharacterized LOC100129974 protein-coding - - - - 20120511 -9606 100129975 RPL10P15 - - - 19 19p13.2 ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 100129976 LOC100129976 - - - 19 19p12 BRI3 binding protein pseudogene pseudo - - - - 20121230 -9606 100129982 RPL12P19 - RPL12_2_212 HGNC:36248 2 2p21 ribosomal protein L12 pseudogene 19 pseudo RPL12P19 ribosomal protein L12 pseudogene 19 O - 20121230 -9606 100129983 UBE2CP3 - - HGNC:43552 4 4q12 ubiquitin-conjugating enzyme E2C pseudogene 3 pseudo UBE2CP3 ubiquitin-conjugating enzyme E2C pseudogene 3 O - 20121230 -9606 100129989 LOC100129989 - - - 3 3q13.13 chromosome 12 open reading frame 29 pseudogene pseudo - - - - 20121230 -9606 100129991 RPL38P2 - RPL38_1_244 HGNC:36620 2 2p12 ribosomal protein L38 pseudogene 2 pseudo RPL38P2 ribosomal protein L38 pseudogene 2 O - 20121230 -9606 100129994 GRPEL2P2 - - HGNC:41970 X Xq11.2 GrpE-like 2, mitochondrial (E. coli) pseudogene 2 pseudo GRPEL2P2 GrpE-like 2, mitochondrial (E. coli) pseudogene 2 O - 20121230 -9606 100129995 LOC100129995 - - - 2 2p23.2 uncharacterized LOC100129995 unknown - - - - 20120511 -9606 100129996 LOC100129996 - - - 6 6q25.2 chromosome 6 open reading frame 203 pseudogene pseudo - - - - 20121230 -9606 100129997 LOC100129997 - - - X Xp11.21 spindlin family, member 2B pseudogene pseudo - - - - 20121230 -9606 100129998 RPL5P27 - RPL5_14_1100 HGNC:36172 10 10q25.3 ribosomal protein L5 pseudogene 27 pseudo RPL5P27 ribosomal protein L5 pseudogene 27 O - 20121230 -9606 100129999 LOC100129999 - - - 9 9q34.3 uncharacterized LOC100129999 unknown - - - - 20121230 -9606 100130000 LOC100130000 - - - 1 1q21.1 phosphodiesterase 4D interacting protein pseudogene pseudo - - - - 20121230 -9606 100130001 LOC100130001 - - - 5 5q11.2 small nuclear ribonucleoprotein polypeptide B pseudogene pseudo - - - - 20121230 -9606 100130002 HNRNPA1P23 - - HGNC:39541 3 3q21.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene 23 pseudo HNRNPA1P23 heterogeneous nuclear ribonucleoprotein A1 pseudogene 23 O - 20121230 -9606 100130003 SNRPGP2 - HsT2742 HGNC:30999 18 18q21.2 small nuclear ribonucleoprotein polypeptide G pseudogene 2 pseudo SNRPGP2 small nuclear ribonucleoprotein polypeptide G pseudogene 2 O - 20121230 -9606 100130004 LOC100130004 - - - X Xp11.22 G antigen family D member 3-like pseudo - - - - 20121209 -9606 100130006 EIF4A1P11 - - HGNC:37932 1 1q25.2 eukaryotic translation initiation factor 4A1 pseudogene 11 pseudo EIF4A1P11 eukaryotic translation initiation factor 4A1 pseudogene 11 O - 20121230 -9606 100130009 HMGA1P8 - - HGNC:39183 2 2p13.1 high mobility group AT-hook 1 pseudogene 8 pseudo HMGA1P8 high mobility group AT-hook 1 pseudogene 8 O - 20121230 -9606 100130011 LOC100130011 - - - 3 3q25.2 synaptophysin-like 1 pseudogene pseudo - - - - 20121230 -9606 100130014 SETP5 - - HGNC:42924 9 9q34.3 SET pseudogene 5 pseudo SETP5 SET pseudogene 5 O - 20121230 -9606 100130015 LOC100130015 - - - 16 16q24.3 5-hydroxyisourate hydrolase pseudogene pseudo - - - - 20121230 -9606 100130017 FTLP10 - - HGNC:37959 4 4q13.2 ferritin, light polypeptide pseudogene 10 pseudo FTLP10 ferritin, light polypeptide pseudogene 10 O - 20121230 -9606 100130018 LOC100130018 - - - 1 1q21.1 prostaglandin reductase 1 pseudogene pseudo - - - - 20121230 -9606 100130026 LOC100130026 - - - 2 2q33.1 ribosomal protein L38 pseudogene pseudo - - - - 20121230 -9606 100130027 LOC100130027 - - - 8 8q24.3 uncharacterized LOC100130027 unknown - - - - 20121018 -9606 100130029 HMGA1P6 - HMGA1L6 HGNC:19121 13 13q12.12 high mobility group AT-hook 1 pseudogene 6 pseudo HMGA1P6 high mobility group AT-hook 1 pseudogene 6 O - 20121230 -9606 100130034 RPL36AP12 - RPL36A_2_79 HGNC:35897 1 1p21.2 ribosomal protein L36a pseudogene 12 pseudo RPL36AP12 ribosomal protein L36a pseudogene 12 O - 20121230 -9606 100130035 LOC100130035 - - - X Xp22.13 pallidin-like pseudo - - - - 20121209 -9606 100130038 LOC100130038 - - - 11 11q14.3 oxysterol binding protein-like 9 pseudogene pseudo - - - - 20121230 -9606 100130039 LOC100130039 - - - 9 9q13 uncharacterized LOC100130039 pseudo - - - - 20121209 -9606 100130042 LOC100130042 - - - 5 5p13.1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase pseudogene pseudo - - - - 20121230 -9606 100130043 SETP17 - - HGNC:42936 11 11q14.2 SET pseudogene 17 pseudo SETP17 SET pseudogene 17 O - 20121230 -9606 100130044 LOC100130044 - - - 16 16q13 chromosome 7 open reading frame 63 pseudogene pseudo - - - - 20121230 -9606 100130048 LOC100130048 - - - 14 14q24.3 H1 histone family, member O, oocyte-specific pseudogene pseudo - - - - 20121230 -9606 100130049 LOC100130049 - - - 9 9q21.33 ribosomal L1 domain-containing protein 1-like pseudo - - - - 20121230 -9606 100130051 LOC100130051 - - - 16 16p13.3 uncharacterized LOC100130051 protein-coding - - - - 20120511 -9606 100130052 LOC100130052 - - - X Xp21.3 melanoma antigen family B, 3 pseudogene pseudo - - - - 20121230 -9606 100130057 LOC100130057 - - - 16 16q12.1 uncharacterized LOC100130057 protein-coding - - - - 20120511 -9606 100130059 VN1R70P - - HGNC:37391 16 16p11.1 vomeronasal 1 receptor 70 pseudogene pseudo VN1R70P vomeronasal 1 receptor 70 pseudogene O - 20121230 -9606 100130060 GNPATP - - HGNC:34031 16 16q21 glyceronephosphate O-acyltransferase pseudogene pseudo GNPATP glyceronephosphate O-acyltransferase pseudogene O - 20121230 -9606 100130063 LOC100130063 - - - 5 5p15.31 chromosome 16 open reading frame 61 pseudogene pseudo - - - - 20121230 -9606 100130064 EIF4BP4 - - HGNC:37937 3 3p22.1 eukaryotic translation initiation factor 4B pseudogene 4 pseudo EIF4BP4 eukaryotic translation initiation factor 4B pseudogene 4 O - 20121230 -9606 100130066 RPL9P22 - RPL9_6_1163 HGNC:36994 11 11q14.1 ribosomal protein L9 pseudogene 22 pseudo RPL9P22 ribosomal protein L9 pseudogene 22 O - 20121230 -9606 100130067 LOC100130067 - - - 4 4p15.32 hypoxanthine phosphoribosyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100130070 RPS27P13 - RPS27_6_465 HGNC:36203 4 4p15.2 ribosomal protein S27 pseudogene 13 pseudo RPS27P13 ribosomal protein S27 pseudogene 13 O - 20121230 -9606 100130071 LOC100130071 UNQ6193 - - 1 1p36.31 GSQS6193 unknown - - - - 20121230 -9606 100130072 LOC100130072 - - - 4 4p16.1 heat-responsive protein 12 pseudogene pseudo - - - - 20121230 -9606 100130073 LOC100130073 - - - 12 12p13.2 IQ motif and Sec7 domain 3 pseudogene pseudo - - - - 20121230 -9606 100130074 LOC100130074 - - - 12 12p13.31 keratin 17 pseudogene pseudo - - - - 20121230 -9606 100130075 LOC100130075 - - - 12 12q15 SUZ RNA binding domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100130078 LOC100130078 - - - 17 17q25.3 uncharacterized LOC100130078 protein-coding - - - - 20120511 -9606 100130079 LOC100130079 - - - 22 22q12.2 ret finger protein-like 4A pseudogene pseudo - - - - 20121230 -9606 100130083 HBCBP - - - 12 12q13.3 HBcAg-binding protein unknown - - - - 20121230 -9606 100130086 HSFX2 - - HGNC:32701|Ensembl:ENSG00000171129|Vega:OTTHUMG00000164446 X Xq28 heat shock transcription factor family, X linked 2 protein-coding HSFX2 heat shock transcription factor family, X linked 2 O heat shock transcription factor, X-linked 20121230 -9606 100130088 LOC100130088 - - - 5 5q33.2 oligonucleotide/oligosaccharide-binding fold containing 1 pseudogene pseudo - - - - 20121230 -9606 100130090 LOC100130090 - - - X Xq24 SWI5-dependent recombination repair 1 pseudogene pseudo - - - - 20121230 -9606 100130093 LOC100130093 - - - 1 1q42.13 uncharacterized LOC100130093 miscRNA - - - - 20121230 -9606 100130097 LOC100130097 RP11-439E19.8 - - 1 1q44 kinesin-like protein family member 6-like protein-coding - - - - 20121230 -9606 100130099 MIPEPP2 - - HGNC:39457 1 1q43 mitochondrial intermediate peptidase pseudogene 2 pseudo MIPEPP2 mitochondrial intermediate peptidase pseudogene 2 O - 20121230 -9606 100130100 LOC100130100 - - - 2 2q13 Ig kappa chain V-I region Walker-like other - - - - 20121209 -9606 100130101 LOC100130101 - - - 8 8q22.1 uncharacterized LOC100130101 protein-coding - - - - 20120511 -9606 100130102 LOC100130102 - - - 2 2q14.3 WW domain binding protein 11 pseudogene pseudo - - - - 20121230 -9606 100130105 TRIM51CP - - HGNC:43968 11 11p11.12 tripartite motif-containing 51C, pseudogene pseudo TRIM51CP tripartite motif-containing 51C, pseudogene O - 20121230 -9606 100130106 RPS23P7 - - HGNC:43899 17 17q23.2 ribosomal protein S23 pseudogene 7 pseudo RPS23P7 ribosomal protein S23 pseudogene 7 O - 20121230 -9606 100130108 ZNF849P - - HGNC:34389 19 19p12 zinc finger protein 849, pseudogene pseudo ZNF849P zinc finger protein 849, pseudogene O - 20121230 -9606 100130109 SNRPEP4 - - HGNC:43446 19 19p13.3 small nuclear ribonucleoprotein polypeptide E pseudogene 4 pseudo SNRPEP4 small nuclear ribonucleoprotein polypeptide E pseudogene 4 O - 20121230 -9606 100130110 ZSWIM5P1 - - HGNC:43768 17 17p12 zinc finger, SWIM-type containing 5 pseudogene 1 pseudo ZSWIM5P1 zinc finger, SWIM-type containing 5 pseudogene 1 O - 20121230 -9606 100130111 LOC100130111 - - - 15 15q13.1 uncharacterized LOC100130111 unknown - - - - 20121230 -9606 100130114 LOC100130114 - - - 17 17q12 Spi-C transcription factor (Spi-1/PU.1 related) pseudogene pseudo - - - - 20121230 -9606 100130117 DDX6P2 - - HGNC:37806 13 13q31.1 DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene 2 pseudo DDX6P2 DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene 2 O - 20121230 -9606 100130119 LAMTOR3P1 - - HGNC:39726 13 13q13.3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 pseudogene 1 pseudo LAMTOR3P1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 pseudogene 1 O - 20121230 -9606 100130121 LOC100130121 - - - 7 7p11.2 solute carrier family 19, member 3 pseudogene pseudo - - - - 20121230 -9606 100130134 LOC100130134 - - - X Xq21.31 staufen, RNA binding protein, homolog 2 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100130137 LOC100130137 - - - 1 1q31.2 integrin beta 1 binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100130139 UBE2D3P2 - - HGNC:39010 3 3p22.2 ubiquitin-conjugating enzyme E2D 3 pseudogene 2 pseudo UBE2D3P2 ubiquitin-conjugating enzyme E2D 3 pseudogene 2 O - 20121230 -9606 100130148 MAPT-IT1 - - HGNC:43741 17 17q21.31 MAPT intronic transcript 1 (non-protein coding) miscRNA MAPT-IT1 MAPT intronic transcript 1 (non-protein coding) O - 20121230 -9606 100130152 LOC100130152 - - - 20 20q13.33 uncharacterized LOC100130152 protein-coding - - - - 20120511 -9606 100130155 LOC100130155 - - - 8 8q12.3 uncharacterized LOC100130155 miscRNA - - - - 20121230 -9606 100130156 LOC100130156 - - - 20 20q13.31 uncharacterized LOC100130156 unknown - - - - 20121230 -9606 100130157 LOC100130157 - - - 20 20q13.12 uncharacterized LOC100130157 unknown - - - - 20121230 -9606 100130158 LOC100130158 - - - 8 8q24.13 chromosome 16 open reading frame 88 pseudogene pseudo - - - - 20121230 -9606 100130161 LOC100130161 - - - 4 4p16.1 developmental pluripotency associated 4 pseudogene pseudo - - - - 20121230 -9606 100130167 NUS1P4 - - HGNC:38474 13 13q32.2 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) pseudogene 4 pseudo NUS1P4 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) pseudogene 4 O - 20121230 -9606 100130169 LOC100130169 - - - 7 7q34 uncharacterized LOC100130169 unknown - - - - 20121230 -9606 100130170 LOC100130170 - - - X Xq26.1 chromosome 12 open reading frame 49 pseudogene pseudo - - - - 20121230 -9606 100130171 LOC100130171 - - - 2 2q31.1 hematological and neurological expressed 1 pseudogene pseudo - - - - 20121230 -9606 100130172 LOC100130172 - - - 5 5q31.2 uncharacterized LOC100130172 unknown - - - - 20121230 -9606 100130175 LOC100130175 - - - 10 10q25.2 uncharacterized LOC100130175 protein-coding - - - - 20120511 -9606 100130176 LOC100130176 - - - X Xq22.2 transmembrane protein 188 pseudogene pseudo - - - - 20121230 -9606 100130177 LOC100130177 - - - 5 5q33.3 uracil-DNA glycosylase pseudogene pseudo - - - - 20121230 -9606 100130178 LSM3P4 - - HGNC:44349 4 4q31.21 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 4 pseudo LSM3P4 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 4 O - 20121230 -9606 100130180 LOC100130180 - - - 16 16q11.2 nuclear factor (erythroid-derived 2)-like 3 pseudogene pseudo - - - - 20121230 -9606 100130183 RPS24P19 - RPS24_9_1812 HGNC:35683 X Xq26.2 ribosomal protein S24 pseudogene 19 pseudo RPS24P19 ribosomal protein S24 pseudogene 19 O - 20121230 -9606 100130187 LOC100130187 tcag7.1058 - - 7 7q33 tubulin, beta 3 class III pseudogene pseudo - - - - 20121230 -9606 100130190 SRRM1P3 - - HGNC:38164 X Xq26.3 serine/arginine repetitive matrix 1 pseudogene 3 pseudo SRRM1P3 serine/arginine repetitive matrix 1 pseudogene 3 O - 20121230 -9606 100130192 RPS12P31 - RPS12_17_1644 HGNC:35578 19 19q13.11 ribosomal protein S12 pseudogene 31 pseudo RPS12P31 ribosomal protein S12 pseudogene 31 O - 20121230 -9606 100130193 LOC100130193 - - - 1 1p36.13 uncharacterized LOC100130193 unknown - - - - 20120511 -9606 100130196 LOC100130196 - - - 1 1p31.3 heterogeneous nuclear ribonucleoprotein C-like 1-like pseudo - - - - 20121209 -9606 100130197 EFCAB14-AS1 - KIAA0494-AS1 HGNC:44108|Ensembl:ENSG00000228237|Vega:OTTHUMG00000007993 1 1p33 EFCAB14 antisense RNA 1 miscRNA EFCAB14-AS1 EFCAB14 antisense RNA 1 O - 20121230 -9606 100130203 LOC100130203 - - - 11 11q14.3 Cdon homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100130204 NIPA2P2 - - HGNC:42042 3 3p12.3 non imprinted in Prader-Willi/Angelman syndrome 2 pseudogene 2 pseudo NIPA2P2 non imprinted in Prader-Willi/Angelman syndrome 2 pseudogene 2 O - 20121230 -9606 100130207 LOC100130207 - - - 3 3p26.2 uncharacterized LOC100130207 unknown - - - - 20120909 -9606 100130209 LOC100130209 - - - 2 2p12 charged multivesicular body protein 4A pseudogene pseudo - - - - 20121230 -9606 100130210 LOC100130210 - - - 7 7p11.2 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide pseudogene pseudo - - - - 20121230 -9606 100130211 EEF1A1P29 - - HGNC:37904 X Xq21.2 eukaryotic translation elongation factor 1 alpha 1 pseudogene 29 pseudo EEF1A1P29 eukaryotic translation elongation factor 1 alpha 1 pseudogene 29 O - 20121230 -9606 100130219 LOC100130219 - - - 12 12p13.33 uncharacterized LOC100130219 unknown - - - - 20121230 -9606 100130225 RPL13P11 - RPL13_3_914 HGNC:35805 8 8q13.3 ribosomal protein L13 pseudogene 11 pseudo RPL13P11 ribosomal protein L13 pseudogene 11 O - 20121230 -9606 100130231 LOC100130231 - - - 8 8q24.13 uncharacterized LOC100130231 miscRNA - - - - 20121230 -9606 100130232 LOC100130232 - - - 8 8q22.3 LP2209 unknown - - - - 20121230 -9606 100130233 NPM1P8 - - HGNC:7928 X Xp21.1 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 8 pseudo NPM1P8 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 8 O - 20121230 -9606 100130234 EEF1A1P27 - - HGNC:37900 7 7p21.1 eukaryotic translation elongation factor 1 alpha 1 pseudogene 27 pseudo EEF1A1P27 eukaryotic translation elongation factor 1 alpha 1 pseudogene 27 O - 20121230 -9606 100130235 LOC100130235 - - - 1 1p21.3 katanin p80 subunit B-like 1 pseudogene pseudo - - - - 20121230 -9606 100130236 LOC100130236 - - - 1 1q21.1 uncharacterized LOC100130236 unknown - - - - 20120511 -9606 100130238 LOC100130238 - - - 12 12q24.33 uncharacterized LOC100130238 miscRNA - - - - 20121230 -9606 100130239 UBA52P6 - RPL40_3_969 HGNC:36763 9 9p21.3 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 6 pseudo UBA52P6 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 6 O - 20121230 -9606 100130240 RPS5P2 - RPS5_4_1727 HGNC:17222 21 21q22.11 ribosomal protein S5 pseudogene 2 pseudo RPS5P2 ribosomal protein S5 pseudogene 2 O - 20121230 -9606 100130241 LOC100130241 - - - 17 17p13.2 putative uncharacterized protein FLJ46089-like pseudo - - - - 20121209 -9606 100130247 COX6CP3 - - HGNC:31721 18 18p11.32 cytochrome c oxidase subunit VIc pseudogene 3 pseudo COX6CP3 cytochrome c oxidase subunit VIc pseudogene 3 O - 20121230 -9606 100130249 PP2672 - - - 1 1q42.3 uncharacterized LOC100130249 unknown - - - - 20121230 -9606 100130251 LOC100130251 - - - 1 1q41 nucleoredoxin pseudogene pseudo - - - - 20121230 -9606 100130253 LOC100130253 - - - 10 10q23.31 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 2 pseudogene pseudo - - - - 20121230 -9606 100130256 LOC100130256 - - - 2 - uncharacterized LOC100130256 unknown - - - - 20120622 -9606 100130259 SALL4P2 - - HGNC:39819 X Xq26.1 sal-like 4 (Drosophila) pseudogene 2 pseudo SALL4P2 sal-like 4 (Drosophila) pseudogene 2 O - 20121230 -9606 100130260 EEF1GP2 - - HGNC:44557 5 5q32 eukaryotic translation elongation factor 1 gamma pseudogene 2 pseudo EEF1GP2 eukaryotic translation elongation factor 1 gamma pseudogene 2 O - 20121230 -9606 100130264 LOC100130264 - - - 20 20p11.23 uncharacterized LOC100130264 miscRNA - - - - 20121230 -9606 100130265 ARL2BPP4 - - HGNC:39448 5 5q23.3 ADP-ribosylation factor-like 2 binding protein pseudogene 4 pseudo ARL2BPP4 ADP-ribosylation factor-like 2 binding protein pseudogene 4 O - 20121230 -9606 100130268 LOC100130268 - - - 12 12q21.1 uncharacterized LOC100130268 unknown - - - - 20120511 -9606 100130269 LOC100130269 - - - 22 22q12.3 uncharacterized LOC100130269 unknown - - - - 20120511 -9606 100130270 LOC100130270 RP11-182I10.1 - - 1 1p31.3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa pseudogene pseudo - - - - 20121230 -9606 100130274 CCDC166 - - HGNC:41910|Ensembl:ENSG00000255181|Vega:OTTHUMG00000165148 8 8q24.3 coiled-coil domain containing 166 protein-coding CCDC166 coiled-coil domain containing 166 O coiled-coil domain-containing protein 166 20121230 -9606 100130275 LOC100130275 - - - 6 6p24.3 uncharacterized LOC100130275 miscRNA - - - - 20121230 -9606 100130276 LOC100130276 - - - 16 16p13.13 uncharacterized LOC100130276 protein-coding - - - - 20120511 -9606 100130277 CDC27P2 - - HGNC:38092 Y Yp11.2 cell division cycle 27 homolog (S. cerevisiae) pseudogene 2 pseudo CDC27P2 cell division cycle 27 homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100130278 LOC100130278 - - - 3 3p21.31 uncharacterized LOC100130278 protein-coding - - - - 20120511 -9606 100130279 HMGB1P44 - - HGNC:39275 4 4q21.1 high mobility group box 1 pseudogene 44 pseudo HMGB1P44 high mobility group box 1 pseudogene 44 O - 20121230 -9606 100130283 LOC100130283 - - - 16 16p13.2 uncharacterized LOC100130283 unknown - - - - 20120508 -9606 100130285 LOC100130285 - - - 16 16p13.3 uncharacterized LOC100130285 unknown - - - - 20121230 -9606 100130286 RPL34P11 - RPL34_6_354 HGNC:36412 3 3p24.1 ribosomal protein L34 pseudogene 11 pseudo RPL34P11 ribosomal protein L34 pseudogene 11 O - 20121230 -9606 100130289 SNRPGP10 - - HGNC:39329 1 1q32.1 small nuclear ribonucleoprotein polypeptide G pseudogene 10 pseudo SNRPGP10 small nuclear ribonucleoprotein polypeptide G pseudogene 10 O - 20121230 -9606 100130298 LOC100130298 - - - 8 8q12.2 hCG1816373-like miscRNA - - - - 20121230 -9606 100130299 LOC100130299 - - - 8 8q11.21 isopentenyl-diphosphate delta isomerase 1 pseudogene pseudo - - - - 20121230 -9606 100130300 RPS27AP13 - RPS27A_4_904 HGNC:36667 8 8q11.23 ribosomal protein S27a pseudogene 13 pseudo RPS27AP13 ribosomal protein S27a pseudogene 13 O - 20121230 -9606 100130301 LOC100130301 - - - 8 8q21.11 uncharacterized LOC100130301 protein-coding - - - uncharacterized protein LOC100130301 20121230 -9606 100130302 SUPT20HL1 - FAM48B1 HGNC:30773 X Xp22.11 suppressor of Ty 20 homolog (S. cerevisiae)-like 1 protein-coding SUPT20HL1 suppressor of Ty 20 homolog (S. cerevisiae)-like 1 O family with sequence similarity 48, member B1|protein FAM48B1 20121230 -9606 100130307 LOC100130307 - - - 7 7p22.1 speedy homolog E2 (Xenopus laevis) pseudogene pseudo - - - - 20121230 -9606 100130310 MSANTD2P1 - - HGNC:39637 21 21q21.2 Myb/SANT-like DNA-binding domain containing 2 pseudogene 1 pseudo MSANTD2P1 Myb/SANT-like DNA-binding domain containing 2 pseudogene 1 O - 20121230 -9606 100130311 C17orf107 - - HGNC:37238|Ensembl:ENSG00000205710|Vega:OTTHUMG00000164838 17 17p13.2 chromosome 17 open reading frame 107 protein-coding C17orf107 chromosome 17 open reading frame 107 O uncharacterized protein C17orf107 20121230 -9606 100130313 RPS6P23 - - HGNC:39581 13 13q32.3 ribosomal protein S6 pseudogene 23 pseudo RPS6P23 ribosomal protein S6 pseudogene 23 O - 20121230 -9606 100130314 LOC100130314 - - - 16 16q12.1 uncharacterized LOC100130314 protein-coding - - - - 20120511 -9606 100130316 LOC100130316 - - - 5 5q23.2 putative RNA-binding protein 15-like pseudo - - - - 20121209 -9606 100130319 TAF9BP2 - - HGNC:38836 10 10q25.3 TAF9B RNA polymerase II, TATA box binding protein (TBP)-associated factor, 31kDa pseudogene 2 pseudo TAF9BP2 TAF9B RNA polymerase II, TATA box binding protein (TBP)-associated factor, 31kDa pseudogene 2 O - 20121230 -9606 100130321 LOC100130321 - - - 8 8p23.3 DNA fragmentation factor, 45kDa, alpha polypeptide pseudogene pseudo - - - - 20121230 -9606 100130322 GAFA2 - - - 16 16q23.2 FGF-2 activity-associated protein 2 unknown - - - - 20120710 -9606 100130326 LOC100130326 - - - 3 3p12.1 transmembrane protein 183A pseudogene pseudo - - - - 20121230 -9606 100130327 LOC100130327 - - - 3 3p11.1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa pseudogene pseudo - - - - 20121230 -9606 100130329 LOC100130329 - - - 18 18p11.21 solute carrier family 41, member 2 pseudogene pseudo - - - - 20121230 -9606 100130331 LOC100130331 - - - 1 1q43 POTE ankyrin domain family, member F pseudogene pseudo - - - - 20121230 -9606 100130333 LOC100130333 - - - 3 3q22.1 uncharacterized LOC100130333 pseudo - - - - 20121209 -9606 100130335 NAP1L1P3 - - HGNC:38007 3 3q13.33 nucleosome assembly protein 1-like 1 pseudogene 3 pseudo NAP1L1P3 nucleosome assembly protein 1-like 1 pseudogene 3 O - 20121230 -9606 100130338 PABPC1P9 - - HGNC:37991 22 22q11.1 poly(A) binding protein, cytoplasmic 1 pseudogene 9 pseudo PABPC1P9 poly(A) binding protein, cytoplasmic 1 pseudogene 9 O - 20121230 -9606 100130340 LOC100130340 - - - 12 - glucoside xylosyltransferase 1-like pseudo - - - - 20121102 -9606 100130342 SCGB2B3P - C2B|SCGB4A3P HGNC:31895 19 19q13.11 secretoglobin, family 2B, member 3, pseudogene pseudo SCGB2B3P secretoglobin, family 2B, member 3, pseudogene O - 20121230 -9606 100130345 LOC100130345 - - - 3 3p14.1 cadherin-related family member 3-like protein-coding - - - - 20120511 -9606 100130347 RPS6P5 - RPS6_2_487 HGNC:36242 4 4q13.1 ribosomal protein S6 pseudogene 5 pseudo RPS6P5 ribosomal protein S6 pseudogene 5 O - 20121230 -9606 100130348 LOC100130348 - - Ensembl:ENSG00000187066|Vega:OTTHUMG00000165598 11 11q13.1 uncharacterized LOC100130348 protein-coding - - - uncharacterized protein LOC100130348 20121230 -9606 100130353 LOC100130353 - - - 11 11q23.3 hippocampus abundant transcript-like 1 pseudogene pseudo - - - - 20121230 -9606 100130357 LOC100130357 - - - 6 6p24.1 uncharacterized LOC100130357 protein-coding - - - uncharacterized protein LOC100130357 20121230 -9606 100130359 LOC100130359 - - - X Xp11.3 mediator complex subunit 28 pseudogene pseudo - - - - 20121230 -9606 100130361 CXorf49 - CXorf49B HGNC:30891 X Xq13.1 chromosome X open reading frame 49 protein-coding CXorf49 chromosome X open reading frame 49 O putative uncharacterized protein CXorf49|uncharacterized protein CXorf49 20121230 -9606 100130368 SNRPGP4 - - HGNC:39323 17 17q24.3 small nuclear ribonucleoprotein polypeptide G pseudogene 4 pseudo SNRPGP4 small nuclear ribonucleoprotein polypeptide G pseudogene 4 O - 20121230 -9606 100130370 LOC100130370 - - - 17 17q25.3 uncharacterized LOC100130370 protein-coding - - - - 20121209 -9606 100130372 LOC100130372 - - - 20 20q13.13 uncharacterized LOC100130372 protein-coding - - - - 20120511 -9606 100130373 LOC100130373 - - - 20 20q11.23 uncharacterized LOC100130373 unknown - - - - 20120511 -9606 100130374 RPL13P14 - RPL13_6_1708 HGNC:36387 20 20q13.12 ribosomal protein L13 pseudogene 14 pseudo RPL13P14 ribosomal protein L13 pseudogene 14 O - 20121230 -9606 100130376 LOC100130376 - - - 8 8q24.21 mitochondrial translational release factor 1-like pseudogene pseudo - - - - 20121230 -9606 100130383 HIGD1AP12 - - HGNC:43007 1 1p13.2 HIG1 hypoxia inducible domain family, member 1A pseudogene 12 pseudo HIGD1AP12 HIG1 hypoxia inducible domain family, member 1A pseudogene 12 O - 20121230 -9606 100130384 LOC100130384 - - - 11 11p15.2 MLF1 interacting protein pseudogene pseudo - - - - 20121230 -9606 100130386 LINC00552 - - HGNC:43692 13 13q34 long intergenic non-protein coding RNA 552 miscRNA LINC00552 long intergenic non-protein coding RNA 552 O - 20121230 -9606 100130388 LOC100130388 - - - 2 2q13 eukaryotic translation elongation factor 1 epsilon 1 pseudogene pseudo - - - - 20121230 -9606 100130391 YWHAQP5 - - HGNC:37684 2 2q11.2 YWHAQ pseudogene 5 pseudo YWHAQP5 YWHAQ pseudogene 5 O - 20121230 -9606 100130392 RPL9P20 - RPL9_7_879 HGNC:36996 8 8p22 ribosomal protein L9 pseudogene 20 pseudo RPL9P20 ribosomal protein L9 pseudogene 20 O - 20121230 -9606 100130394 LOC100130394 - - - 5 5q35.1 CCDC72 pseudogene pseudo - - - - 20121230 -9606 100130396 ATP5LP4 - - HGNC:38165 4 4q31.23 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 4 pseudo ATP5LP4 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 4 O - 20121230 -9606 100130400 RPL21P92 - RPL21_38_1051 HGNC:35606 10 10q21.3 ribosomal protein L21 pseudogene 92 pseudo RPL21P92 ribosomal protein L21 pseudogene 92 O - 20121230 -9606 100130402 LOC100130402 - - - 6 6q22.33 beta-1,3-N-acetylgalactosaminyltransferase 2 pseudogene pseudo - - - - 20121230 -9606 100130403 LOC100130403 - - - 6 6p12.1 replication protein A3, 14kDa pseudogene pseudo - - - - 20121230 -9606 100130405 HMGB3P26 - - HGNC:39318 14 14q32.32 high mobility group box 3 pseudogene 26 pseudo HMGB3P26 high mobility group box 3 pseudogene 26 O - 20121230 -9606 100130409 BTF3P15 - - HGNC:38567 10 10q25.1 basic transcription factor 3 pseudogene 15 pseudo BTF3P15 basic transcription factor 3 pseudogene 15 O - 20121230 -9606 100130417 LOC100130417 - - - 1 1p36.33 uncharacterized LOC100130417 miscRNA - - - - 20121230 -9606 100130418 CECR7 - SAHL1 HGNC:1845 22 22q11.1 cat eye syndrome chromosome region, candidate 7 (non-protein coding) miscRNA CECR7 cat eye syndrome chromosome region, candidate 7 (non-protein coding) O - 20121230 -9606 100130419 LOC100130419 - - - 19 19q13.32 uncharacterized LOC100130419 unknown - - - - 20120511 -9606 100130428 LOC100130428 UNQ565 - - 11 11q24.2 IGYY565 unknown - - - - 20121230 -9606 100130429 LOC100130429 - - - 2 2p21 uncharacterized LOC100130429 unknown - - - - 20120511 -9606 100130430 LOC100130430 - - - 16 16p13.3 uncharacterized LOC100130430 miscRNA - - - - 20120622 -9606 100130433 LOC100130433 - - - 9 9q21.33 uncharacterized LOC100130433 protein-coding - - - - 20120511 -9606 100130435 RPS7P13 - RPS7_7_1794 HGNC:35756 X Xq21.33 ribosomal protein S7 pseudogene 13 pseudo RPS7P13 ribosomal protein S7 pseudogene 13 O - 20121230 -9606 100130436 LOC100130436 - - - 16 16p13.3 uncharacterized LOC100130436 protein-coding - - - - 20120511 -9606 100130437 LOC100130437 - - - 15 15q22.31 transmembrane protein 126A pseudogene pseudo - - - - 20121230 -9606 100130442 LOC100130442 - - - 19 19p13.11 uncharacterized LOC100130442 protein-coding - - - - 20120511 -9606 100130446 RPS27AP12 - RPS27A_5_866 HGNC:35732 7 7q36.3 ribosomal protein S27a pseudogene 12 pseudo RPS27AP12 ribosomal protein S27a pseudogene 12 O - 20121230 -9606 100130447 RPL12P16 - RPL12_4_315 HGNC:36926 2 2q33.2 ribosomal protein L12 pseudogene 16 pseudo RPL12P16 ribosomal protein L12 pseudogene 16 O - 20121230 -9606 100130448 MRS2P1 - MRS2LP1 HGNC:20590 8 8q24.13 MRS2 magnesium homeostasis factor homolog (S. cerevisiae) pseudogene 1 pseudo MRS2P1 MRS2 magnesium homeostasis factor homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100130449 PP14571 - - - 2 2q37.3 uncharacterized LOC100130449 miscRNA - - - - 20121230 -9606 100130450 RPL3P5 - RPL3_1_338 HGNC:36934 2 2q37.3 ribosomal protein L3 pseudogene 5 pseudo RPL3P5 ribosomal protein L3 pseudogene 5 O - 20121230 -9606 100130451 LOC100130451 - - - 2 2q34 uncharacterized LOC100130451 protein-coding - - - uncharacterized protein LOC100130451 20121230 -9606 100130452 LOC100130452 - - - 2 2q33.1 uncharacterized LOC100130452 miscRNA - - - - 20121230 -9606 100130453 LOC100130453 - - - 18 18q23 uncharacterized LOC100130453 unknown - - - - 20120511 -9606 100130455 LOC100130455 - - - 1 1p22.2 chromosome 20 open reading frame 196 pseudogene pseudo - - - - 20121230 -9606 100130456 LOC100130456 - - - 7 7p22.3 uncharacterized LOC100130456 unknown - - - - 20120511 -9606 100130458 LOC100130458 - - - 9 9p13.2 uncharacterized LOC100130458 unknown - - - - 20121230 -9606 100130459 LOC100130459 - - - 4 4p16.3 uncharacterized LOC100130459 pseudo - - - - 20121209 -9606 100130460 LOC100130460 - - - 11 11p15.4 uncharacterized LOC100130460 miscRNA - - - - 20120511 -9606 100130461 CBX1P4 - - HGNC:38658 X Xp22.13 chromobox homolog 1 pseudogene 4 pseudo CBX1P4 chromobox homolog 1 pseudogene 4 O - 20121230 -9606 100130462 HNF4GP1 - - HGNC:35417 13 13q21.1 hepatocyte nuclear factor 4, gamma pseudogene 1 pseudo HNF4GP1 hepatocyte nuclear factor 4, gamma pseudogene 1 O - 20121230 -9606 100130463 LOC100130463 - - - 13 13q34 uncharacterized LOC100130463 protein-coding - - - - 20121018 -9606 100130466 LOC100130466 - - - 1 1q42.13 nuclear ubiquitous casein and cyclin-dependent kinase substrate 1-like pseudo - - - - 20121209 -9606 100130468 LOC100130468 - - - 18 18p11.22 uncharacterized LOC100130468 unknown - - - - 20120511 -9606 100130476 LOC100130476 - - - 6 6q23.3 uncharacterized LOC100130476 miscRNA - - - - 20121230 -9606 100130480 LOC100130480 - - Ensembl:ENSG00000265944|Vega:OTTHUMG00000178464 18 18p11.31 uncharacterized LOC100130480 protein-coding - - - uncharacterized protein LOC100130480 20121230 -9606 100130481 CCT6P4 - CCT6-4P HGNC:35148 3 3q28 chaperonin containing TCP1, subunit 6 (zeta) pseudogene 4 pseudo CCT6P4 chaperonin containing TCP1, subunit 6 (zeta) pseudogene 4 O - 20121230 -9606 100130484 UBFD1P1 - - HGNC:42389 3 3q11.2 ubiquitin family domain containing 1 pseudogene 1 pseudo UBFD1P1 ubiquitin family domain containing 1 pseudogene 1 O - 20121230 -9606 100130485 LOC100130485 - - - 1 1q42.3 FK506 binding protein 3, 25kDa pseudogene pseudo - - - - 20121230 -9606 100130487 LOC100130487 - - - 18 18p11.21 WD repeat domain 89 pseudogene pseudo - - - - 20121230 -9606 100130488 LOC100130488 - - - 2 2q11.1 glucoside xylosyltransferase 2 pseudogene pseudo - - - - 20121230 -9606 100130489 LOC100130489 - - - 12 - uncharacterized LOC100130489 pseudo - - - - 20121102 -9606 100130490 LOC100130490 - - - 19 19q13.43 tumor protein p63 regulated 1-like pseudogene pseudo - - - - 20121230 -9606 100130495 RPS12P26 - RPS12_12_1461 HGNC:36320 15 15q26.1 ribosomal protein S12 pseudogene 26 pseudo RPS12P26 ribosomal protein S12 pseudogene 26 O - 20121230 -9606 100130497 LOC100130497 - - - 1 1p31.3 dnaJ homolog subfamily B member 6-like pseudo - - - - 20121209 -9606 100130500 LOC100130500 - - - X Xq21.33 S-phase kinase-associated protein 2, E3 ubiquitin protein ligase pseudogene pseudo - - - - 20121230 -9606 100130502 LOC100130502 - - - 2 2p21 uncharacterized LOC100130502 unknown - - - - 20121230 -9606 100130503 LOC100130503 - - - 3 3p22.3 uncharacterized LOC100130503 unknown - - - - 20120726 -9606 100130507 LOC100130507 - - - 11 11q25 uncharacterized LOC100130507 unknown - - - - 20121230 -9606 100130514 PGAM1P1 - - HGNC:42448 5 5q11.2 phosphoglycerate mutase 1 pseudogene 1 pseudo PGAM1P1 phosphoglycerate mutase 1 pseudogene 1 O - 20121230 -9606 100130519 TMEM221 - - HGNC:21943|Ensembl:ENSG00000188051 19 19p13.11 transmembrane protein 221 protein-coding TMEM221 transmembrane protein 221 O Putative transmembrane protein ENSP00000342162 20121230 -9606 100130520 LOC100130520 - - - 17 17q25.1 CD300c molecule-like protein-coding - - - - 20120508 -9606 100130522 PARD6G-AS1 - - HGNC:44109 18 18q23 PARD6G antisense RNA 1 miscRNA PARD6G-AS1 PARD6G antisense RNA 1 O - 20121230 -9606 100130523 RPL5P8 - RPL5_3_323 HGNC:36290 2 2q34 ribosomal protein L5 pseudogene 8 pseudo RPL5P8 ribosomal protein L5 pseudogene 8 O - 20121230 -9606 100130524 RPL6P23 - - - 8 8q22.1 ribosomal protein L6 pseudogene pseudo - - - - 20121230 -9606 100130527 LOC100130527 - - - 7 7p22.1 putative uncharacterized protein UNQ6125/PRO20090-like pseudo - - - - 20121209 -9606 100130528 SUCLG2P4 - - HGNC:43999 5 5p13.3 succinate-CoA ligase, GDP-forming, beta subunit pseudogene 4 pseudo SUCLG2P4 succinate-CoA ligase, GDP-forming, beta subunit pseudogene 4 O - 20121230 -9606 100130531 LOC100130531 - - - 1 1p22.1 ribosomal protein L39 pseudogene pseudo - - - - 20121230 -9606 100130532 LOC100130532 - - - 4 4p14 F-box protein 38 pseudogene pseudo - - - - 20121230 -9606 100130533 LOC100130533 - - - 13 - uncharacterized LOC100130533 other - - - - 20120710 -9606 100130535 VIMP1 - - HGNC:43891 6 6q22.32 vimentin pseudogene 1 pseudo VIMP1 vimentin pseudogene 1 O - 20121230 -9606 100130537 RPL31P26 - RPL31_7_527 HGNC:36063 4 4q31.22 ribosomal protein L31 pseudogene 26 pseudo RPL31P26 ribosomal protein L31 pseudogene 26 O - 20121230 -9606 100130539 LOC100130539 - - - 10 10q11.21 uncharacterized LOC100130539 protein-coding - - - uncharacterized protein LOC100130539 20121230 -9606 100130540 LOC100130540 - - - 3 3q21.3 uncharacterized LOC100130540 protein-coding - - - - 20120511 -9606 100130542 LOC100130542 - - - 14 14q24.1 uncharacterized LOC100130542 protein-coding - - - - 20120508 -9606 100130547 LOC100130547 - - - 9 9q34.3 uncharacterized LOC100130547 unknown - - - - 20121230 -9606 100130548 LOC100130548 - - - 9 9q34.2 uncharacterized LOC100130548 unknown - - - - 20121230 -9606 100130549 ISCA1P6 - - HGNC:38027 2 2q14.3 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 6 pseudo ISCA1P6 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 6 O - 20121230 -9606 100130550 LOC100130550 - - - 3 3q22.1 g2/M phase-specific E3 ubiquitin-protein ligase-like pseudo - - - - 20121230 -9606 100130555 RPL23AP68 - RPL23A_26_1264 HGNC:35489 12 12q21.32 ribosomal protein L23a pseudogene 68 pseudo RPL23AP68 ribosomal protein L23a pseudogene 68 O - 20121230 -9606 100130557 LOC100130557 - - - 1 1p34.2 uncharacterized LOC100130557 miscRNA - - - - 20121230 -9606 100130560 LOC100130560 - - - 15 15q26.1 uncharacterized LOC100130560 protein-coding - - - - 20120511 -9606 100130561 HMGB1P10 CTA-445C9.11-001 HMG1L10|HMGB1L10|bK445C9.3 HGNC:4994 22 22q12.1 high mobility group box 1 pseudogene 10 pseudo HMGB1P10 high mobility group box 1 pseudogene 10 O - 20121230 -9606 100130562 RPS2P5 - RPS2_20_1284|bcm384 HGNC:31386 12 12q24.23 ribosomal protein S2 pseudogene 5 pseudo RPS2P5 ribosomal protein S2 pseudogene 5 O - 20121230 -9606 100130564 SEPT7P7 RP11-207C11.2 - HGNC:38043 9 9q22.33 septin 7 pseudogene 7 pseudo SEPT7P7 septin 7 pseudogene 7 O - 20121230 -9606 100130566 LOC100130566 - - - 16 16p13.3 eukaryotic translation initiation factor 1 pseudogene pseudo - - - - 20121230 -9606 100130571 LOC100130571 - - - 14 14q11.2 coiled-coil domain containing 107 pseudogene pseudo - - - - 20121230 -9606 100130572 RAD23BP2 - - HGNC:44510 7 7q21.11 RAD23 homolog B (S. cerevisiae) pseudogene 2 pseudo RAD23BP2 RAD23 homolog B (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100130573 LOC100130573 - - - 1 1q32.1 uncharacterized LOC100130573 protein-coding - - - - 20120511 -9606 100130574 LOC100130574 - - - 5 5q11.2 thiosulfate sulfurtransferase (rhodanese)-like domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100130579 LOC100130579 - - - 15 15q24.1 prohibitin pseudogene pseudo - - - - 20121230 -9606 100130581 LOC100130581 - - - 17 17q21.31 uncharacterized LOC100130581 miscRNA - - - - 20121230 -9606 100130582 LOC100130582 - - - 12 12p13.31 myosin, light chain 9, regulatory pseudogene pseudo - - - - 20121230 -9606 100130584 LOC100130584 - - - 19 19p13.3 chloride intracellular channel 4 pseudogene pseudo - - - - 20121230 -9606 100130587 LOC100130587 - - - 20 20q13.33 uncharacterized LOC100130587 unknown - - - - 20120511 -9606 100130591 LOC100130591 - - - 7 7q36.1 uncharacterized LOC100130591 miscRNA - - - - 20120511 -9606 100130597 LOC100130597 - - - 21 21q22.3 uncharacterized LOC100130597 protein-coding - - - - 20120511 -9606 100130600 CICP14 - - HGNC:38542 7 7q32.1 capicua homolog (Drosophila) pseudogene 14 pseudo CICP14 capicua homolog (Drosophila) pseudogene 14 O - 20121230 -9606 100130602 LOC100130602 - - - 16 16q12.1 regulation of nuclear pre-mRNA domain containing 1A pseudogene pseudo - - - - 20121230 -9606 100130603 LOC100130603 - - - 16 16p11.2 RNA binding motif protein 22 pseudogene pseudo - - - - 20121230 -9606 100130606 LOC100130606 - - - 6 6p21.1 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100130607 LOC100130607 - - - X Xq26.3 WD repeat domain 4 pseudogene pseudo - - - - 20121230 -9606 100130609 PP12708 - - - 7 7q34 uncharacterized LOC100130609 unknown - - - - 20121230 -9606 100130612 LOC100130612 - - - 8 8p21.1 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa pseudogene pseudo - - - - 20121230 -9606 100130613 CXorf64 RP13-218H24.1 - HGNC:34498|Ensembl:ENSG00000183631|Vega:OTTHUMG00000022355 X Xq25 chromosome X open reading frame 64 protein-coding CXorf64 chromosome X open reading frame 64 O uncharacterized protein CXorf64 20121230 -9606 100130618 LOC100130618 - - - 7 7q31.32 tetratricopeptide repeat domain 14 pseudogene pseudo - - - - 20121230 -9606 100130620 LOC100130620 - - - X Xq26.3 tropomyosin 1 (alpha) pseudogene pseudo - - - - 20121230 -9606 100130621 RANP4 - - HGNC:39859 X Xq26.3 RAN, member RAS oncogene family pseudogene 4 pseudo RANP4 RAN, member RAS oncogene family pseudogene 4 O - 20121230 -9606 100130624 RPL15P22 - RPL15_10_1742 HGNC:36933 22 22q12.1 ribosomal protein L15 pseudogene 22 pseudo RPL15P22 ribosomal protein L15 pseudogene 22 O - 20121230 -9606 100130626 TCEB1P18 - - HGNC:38154 1 1p31.3 transcription elongation factor B (SIII), polypeptide 1 pseudogene 18 pseudo TCEB1P18 transcription elongation factor B (SIII), polypeptide 1 pseudogene 18 O - 20121230 -9606 100130627 LOC100130627 - - - 1 1p34.3 uncharacterized LOC100130627 unknown - - - - 20120511 -9606 100130630 RPL23P3 - RPL23_1_65 HGNC:35988 1 1p31.1 ribosomal protein L23 pseudogene 3 pseudo RPL23P3 ribosomal protein L23 pseudogene 3 O - 20121230 -9606 100130631 EEF1B2P4 - - HGNC:32475 12 12q23.3 eukaryotic translation elongation factor 1 beta 2 pseudogene 4 pseudo EEF1B2P4 eukaryotic translation elongation factor 1 beta 2 pseudogene 4 O - 20121230 -9606 100130632 LOC100130632 - - - 19 19q13.11 zinc finger protein 530-like pseudo - - - - 20121230 -9606 100130636 SPATA31D2P - FAM75D2P HGNC:38607 9 9q21.32 SPATA31 subfamily D, member 2, pseudogene pseudo SPATA31D2P SPATA31 subfamily D, member 2, pseudogene O - 20121230 -9606 100130637 MORF4L1P7 - - HGNC:39259 1 1q25.2 mortality factor 4 like 1 pseudogene 7 pseudo MORF4L1P7 mortality factor 4 like 1 pseudogene 7 O - 20121230 -9606 100130639 LOC100130639 - - - 5 5q13.1 leucine rich repeat containing 3C pseudogene pseudo - - - - 20121230 -9606 100130640 YWHAZP7 - - HGNC:39028 X Xq11.2 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 7 pseudo YWHAZP7 tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta pseudogene 7 O - 20121230 -9606 100130642 LOC100130642 - - - 2 2p21 uncharacterized LOC100130642 unknown - - - - 20120511 -9606 100130649 LOC100130649 - - - 2 2p11.2 G protein-coupled receptor 160 pseudogene pseudo - - - - 20121230 -9606 100130654 LOC100130654 - - - 17 17q21.2 uncharacterized LOC100130654 protein-coding - - - - 20120511 -9606 100130657 LOC100130657 - - - 17 17q24.2 uncharacterized LOC100130657 protein-coding - - - - 20120511 -9606 100130660 LOC100130660 - - - 15 15q14 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100130664 LOC100130664 - - - 16 16q24.3 cytidine monophosphate (UMP-CMP) kinase 1, cytosolic pseudogene pseudo - - - - 20121230 -9606 100130671 IFNWP9 RP11-1P8.5 - HGNC:5455 9 9p21.3 interferon, omega 1 pseudogene 9 pseudo IFNWP9 interferon, omega 1 pseudogene 9 O - 20121230 -9606 100130673 LOC100130673 - - - 7 7p14.3 phosphoribosyl pyrophosphate synthetase 2 pseudogene pseudo - - - - 20121230 -9606 100130674 LOC100130674 - - - 4 4p15.1 cathepsin B pseudogene pseudo - - - - 20121230 -9606 100130676 RPSAP38 - RPSA_9_557 HGNC:35963 5 5p13.1 ribosomal protein SA pseudogene 38 pseudo RPSAP38 ribosomal protein SA pseudogene 38 O - 20121230 -9606 100130677 NFYAP1 RP11-520F9.1 NFYAP HGNC:34078 13 13q21.31 nuclear transcription factor Y, alpha pseudogene 1 pseudo NFYAP1 nuclear transcription factor Y, alpha pseudogene 1 O - 20121230 -9606 100130680 LOC100130680 - - - 7 7q31.2 ankyrin repeat domain 49 pseudogene pseudo - - - - 20121230 -9606 100130682 LOC100130682 - - - 2 2q23.1 ubiquitin specific peptidase 12 pseudogene pseudo - - - - 20121230 -9606 100130683 LOC100130683 - - - 6 6q21 chromatin assembly factor 1, subunit B (p60) pseudogene pseudo - - - - 20121230 -9606 100130684 LOC100130684 - - - X Xq26.1 fibrous sheath-interacting protein 2-like pseudo - - - - 20121230 -9606 100130687 FABP5P6 - FABP5L6 HGNC:31069 5 5q23.1 fatty acid binding protein 5 pseudogene 6 pseudo FABP5P6 fatty acid binding protein 5 pseudogene 6 O - 20121230 -9606 100130691 LOC100130691 hCG_1817306 - - 2 2q31.2 uncharacterized LOC100130691 miscRNA - - - - 20121230 -9606 100130693 ARHGAP42P2 - - HGNC:43939 2 2q21.1 Rho GTPase activating protein 42 pseudogene 2 pseudo ARHGAP42P2 Rho GTPase activating protein 42 pseudogene 2 O - 20121209 -9606 100130694 LOC100130694 - - - 20 20p12.2 uncharacterized LOC100130694 unknown - - - - 20120511 -9606 100130698 LOC100130698 - - - 10 10q23.1 uncharacterized LOC100130698 unknown - - - - 20121230 -9606 100130699 RSL24D1P10 - - HGNC:37875 5 5q23.1 ribosomal L24 domain containing 1 pseudogene 10 pseudo RSL24D1P10 ribosomal L24 domain containing 1 pseudogene 10 O - 20121230 -9606 100130700 LOC100130700 - - - 16 16p11.1 uncharacterized LOC100130700 miscRNA - - - - 20121230 -9606 100130701 LOC100130701 - - - 3 3q13.33 uncharacterized LOC100130701 protein-coding - - - uncharacterized protein LOC100130701 20120818 -9606 100130704 LOC100130704 - - - 7 7q32.3 capping protein (actin filament) muscle Z-line, alpha 1 pseudogene pseudo - - - - 20121230 -9606 100130705 LOC100130705 - - - 7 7q32.1 uncharacterized LOC100130705 protein-coding - - - uncharacterized protein LOC100130705 20121230 -9606 100130708 ANP32BP2 - - HGNC:38552 22 22q13.31 acidic (leucine-rich) nuclear phosphoprotein 32 family, member B pseudogene 2 pseudo ANP32BP2 acidic (leucine-rich) nuclear phosphoprotein 32 family, member B pseudogene 2 O - 20121230 -9606 100130713 LOC100130713 - - - 19 19q13.2 uncharacterized LOC100130713 unknown - - - - 20120725 -9606 100130714 LOC100130714 - - - 1 1p34.1 metaxin 3 pseudogene pseudo - - - - 20121230 -9606 100130717 CECR5-AS1 - CECR4|NCRNA00017 HGNC:1842 22 22q11.1 CECR5 antisense RNA 1 miscRNA CECR5-AS1 CECR5 antisense RNA 1 O - 20121230 -9606 100130718 RPL34P26 - RPL34_12_1312 HGNC:36100 13 13q14.3 ribosomal protein L34 pseudogene 26 pseudo RPL34P26 ribosomal protein L34 pseudogene 26 O - 20121230 -9606 100130719 UQCRBP2 - - HGNC:12584 1 1q23.3 ubiquinol-cytochrome c reductase binding protein pseudogene 2 pseudo UQCRBP2 ubiquinol-cytochrome c reductase binding protein pseudogene 2 O - 20121230 -9606 100130721 RSL24D1P3 - - HGNC:37883 7 7q11.21 ribosomal L24 domain containing 1 pseudogene 3 pseudo RSL24D1P3 ribosomal L24 domain containing 1 pseudogene 3 O - 20121230 -9606 100130724 LOC100130724 - - - X Xq12 cyclin Y-like pseudogene pseudo - - - - 20121230 -9606 100130731 LOC100130731 - - - 2 2p25.1 proteasome (prosome, macropain) subunit, beta type, 1 pseudogene pseudo - - - - 20121230 -9606 100130733 LRRC70 UNQ1891 SLRN HGNC:35155|Ensembl:ENSG00000186105|Vega:OTTHUMG00000154401 5 5q12.1 leucine rich repeat containing 70 protein-coding LRRC70 leucine rich repeat containing 70 O leucine-rich repeat-containing protein 70|synleurin 20121230 -9606 100130741 LOC100130741 - - - 7 7q36.3 uncharacterized LOC100130741 protein-coding - - - - 20120511 -9606 100130742 LRRC69 - - HGNC:34303|Ensembl:ENSG00000214954|Vega:OTTHUMG00000164023 8 8q21.3 leucine rich repeat containing 69 protein-coding LRRC69 leucine rich repeat containing 69 O leucine-rich repeat-containing protein 69 20121230 -9606 100130744 LOC100130744 - - - 5 5p15.2 uncharacterized LOC100130744 miscRNA - - - - 20121230 -9606 100130745 LOC100130745 - - - 7 7p22.3 uncharacterized LOC100130745 unknown - - - - 20120511 -9606 100130746 LOC100130746 - - - 5 5p14.2 AKT interacting protein pseudogene pseudo - - - - 20121230 -9606 100130747 LOC100130747 - - - 11 11p14.3 N-acetylneuraminic acid phosphatase pseudogene pseudo - - - - 20121230 -9606 100130748 LOC100130748 - - - 5 5p15.33 3-hydroxyisobutyryl-Coenzyme A hydrolase pseudogene pseudo - - - - 20121230 -9606 100130750 RPS8P9 - RPS8_4_974 HGNC:35524 9 9p13.3 ribosomal protein S8 pseudogene 9 pseudo RPS8P9 ribosomal protein S8 pseudogene 9 O - 20121230 -9606 100130756 UQCRHP1 - Em:AF129756.18|UQCRHP5 HGNC:31341 6 6p21.33 ubiquinol-cytochrome c reductase hinge protein pseudogene 1 pseudo UQCRHP1 ubiquinol-cytochrome c reductase hinge protein pseudogene 1 O - 20121230 -9606 100130758 METTL15P1 - METT5D2 HGNC:31926 3 3q25.31 methyltransferase like 15 pseudogene 1 pseudo METTL15P1 methyltransferase like 15 pseudogene 1 O - 20121230 -9606 100130760 LOC100130760 - - - 3 3q21.3 jumonji domain containing 4 pseudogene pseudo - - - - 20121230 -9606 100130761 LOC100130761 - - - 2 2q24.2 uncharacterized LOC100130761 protein-coding - - - - 20120511 -9606 100130766 LOC100130766 - - - 2 2q24.1 metastasis associated 1 family, member 3 pseudogene pseudo - - - - 20121230 -9606 100130768 LOC100130768 - - - 2 2q14.3 uncharacterized LOC100130768 unknown - - - - 20120511 -9606 100130771 EFCAB10 - - HGNC:34531 7 7q22.3 EF-hand calcium binding domain 10 miscRNA EFCAB10 EF-hand calcium binding domain 10 O - 20121230 -9606 100130775 RPS27P23 - RPS27_13_1271 HGNC:35716 12 12q23.2 ribosomal protein S27 pseudogene 23 pseudo RPS27P23 ribosomal protein S27 pseudogene 23 O - 20121230 -9606 100130776 LOC100130776 hCG_2014417 - - 12 12q14.1 uncharacterized LOC100130776 miscRNA - - - - 20121230 -9606 100130777 LOC100130777 - - - 1 - 60S ribosomal protein L34-like pseudo - - - - 20121102 -9606 100130778 LOC100130778 - - - 12 12q24.33 uncharacterized LOC100130778 protein-coding - - - - 20120511 -9606 100130782 RPS15AP15 - RPS15A_6_237 HGNC:35640 2 2p14 ribosomal protein S15a pseudogene 15 pseudo RPS15AP15 ribosomal protein S15a pseudogene 15 O - 20121230 -9606 100130783 LOC100130783 - - - 11 11q24.3 NADH dehydrogenase (ubiquinone) complex I, assembly factor 2 pseudogene pseudo - - - - 20121230 -9606 100130785 SALL4P5 - - HGNC:39822 3 3p24.3 sal-like 4 (Drosophila) pseudogene 5 pseudo SALL4P5 sal-like 4 (Drosophila) pseudogene 5 O - 20121230 -9606 100130786 RPS3AP22 - RPS3A_9_594 HGNC:36573 5 5q14.3 ribosomal protein S3a pseudogene 22 pseudo RPS3AP22 ribosomal protein S3a pseudogene 22 O - 20121230 -9606 100130791 LOC100130791 - - - Un - uncharacterized LOC100130791 pseudo - - - - 20121102 -9606 100130792 RPL29P27 - RPL29_13_1221 HGNC:35551 12 12p11.22 ribosomal protein L29 pseudogene 27 pseudo RPL29P27 ribosomal protein L29 pseudogene 27 O - 20121230 -9606 100130794 NDUFS5P7 - - HGNC:44045 17 17q11.2 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 7 pseudo NDUFS5P7 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 7 O - 20121230 -9606 100130798 LOC100130798 - - - 5 5q35.3 uncharacterized LOC100130798 unknown - - - - 20120815 -9606 100130799 SRSF10P1 - FUSIP1P|HsT2687|SFRS13AP1 HGNC:31002 18 18q21.2 serine/arginine-rich splicing factor 10 pseudogene 1 pseudo SRSF10P1 serine/arginine-rich splicing factor 10 pseudogene 1 O - 20121230 -9606 100130801 LOC100130801 - - - 9 9p23 lupus La protein-like pseudo - - - - 20121209 -9606 100130802 RPL39P13 - RPL39_3_72 HGNC:36705 1 1p22.1 ribosomal protein L39 pseudogene 13 pseudo RPL39P13 ribosomal protein L39 pseudogene 13 O - 20121230 -9606 100130803 UBL5P1 - - HGNC:44639 5 5p13.3 ubiquitin-like 5 pseudogene 1 pseudo UBL5P1 ubiquitin-like 5 pseudogene 1 O - 20121230 -9606 100130811 LOC100130811 - - - 14 - Ig heavy chain V-I region V35-like other - - - - 20121102 -9606 100130815 LOC100130815 - - - 14 14q32.2 uncharacterized LOC100130815 unknown - - - - 20121230 -9606 100130817 LOC100130817 - - - 16 16q13 uncharacterized LOC100130817 protein-coding - - - - 20120511 -9606 100130820 CCNG1P1 - - HGNC:39177 6 6q23.2 cyclin G1 pseudogene 1 pseudo CCNG1P1 cyclin G1 pseudogene 1 O - 20121230 -9606 100130821 LOC100130821 - - - 3 3p12.2 oxysterol binding protein-like 9 pseudogene pseudo - - - - 20121230 -9606 100130823 RPS17P9 - RPS17_3_404 HGNC:36160 3 3q22.1 ribosomal protein S17 pseudogene 9 pseudo RPS17P9 ribosomal protein S17 pseudogene 9 O - 20121230 -9606 100130827 SGK110 - - Ensembl:ENSG00000231274|Vega:OTTHUMG00000155831 19 19q13.42 putative uncharacterized serine/threonine-protein kinase SgK110-like protein-coding - - - Sugen kinase 110|putative uncharacterized serine/threonine-protein kinase SgK110 20121230 -9606 100130841 LOC100130841 - - - 2 2p24.1 Mdm2, p53 E3 ubiquitin protein ligase homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100130842 LOC100130842 - - - 2 2p22.3 small integral membrane protein 7 pseudogene pseudo - - - - 20121230 -9606 100130843 LOC100130843 - - - X Xq21.1 SPRY domain containing 7 pseudogene pseudo - - - - 20121230 -9606 100130848 TSPY20P - - HGNC:38093 Y Yp11.2 testis specific protein, Y-linked 20, pseudogene pseudo TSPY20P testis specific protein, Y-linked 20, pseudogene O - 20121230 -9606 100130849 LOC100130849 - - - 7 7p11.2 phosphorylase kinase, gamma 1 (muscle) pseudogene pseudo - - - - 20121230 -9606 100130854 LOC100130854 - - - 19 19p13.2 zinc finger protein 562 pseudogene pseudo - - - - 20121230 -9606 100130855 LOC100130855 - - - 15 15q22.31 uncharacterized LOC100130855 miscRNA - - - - 20121230 -9606 100130856 LOC100130856 - - - 19 19p13.3 uncharacterized LOC100130856 unknown - - - - 20121120 -9606 100130857 LOC100130857 - - - 15 15q13.3 uncharacterized LOC100130857 protein-coding - - - - 20120511 -9606 100130861 LOC100130861 - - - 8 8q11.1 zinc finger protein 736 pseudogene pseudo - - - - 20121230 -9606 100130863 ZNF840 - C20orf157|ZNF840P|dJ981L23.3 HGNC:34344 20 20q13.12 zinc finger protein 840 protein-coding ZNF840 zinc finger protein 840 O putative zinc finger protein 840|zinc finger protein 840 (pseudogene)|zinc finger protein 840, pseudogene 20121211 -9606 100130865 LOC100130865 - - - 4 4p16.3 uncharacterized LOC100130865 protein-coding - - - - 20120511 -9606 100130866 IFNWP15 - - HGNC:5449 9 9p22 interferon, omega 1 pseudogene 15 pseudo IFNWP15 interferon, omega 1 pseudogene 15 O - 20121230 -9606 100130871 LOC100130871 - - - 9 9p13.1 armadillo repeat-containing protein 8-like pseudo - - - - 20121230 -9606 100130872 LOC100130872 - - - 4 4p16.3 uncharacterized LOC100130872 miscRNA - - - - 20121230 -9606 100130873 CARM1P1 RP11-255J3.1 CARM1L HGNC:23392 9 9p24.2 coactivator-associated arginine methyltransferase 1 pseudogene 1 pseudo CARM1P1 coactivator-associated arginine methyltransferase 1 pseudogene 1 O - 20121230 -9606 100130876 LOC100130876 - - - 17 17p13.3 uncharacterized LOC100130876 unknown - - - - 20120726 -9606 100130878 LOC100130878 - - - 6 - uncharacterized LOC100130878 pseudo - - - - 20121102 -9606 100130879 LOC100130879 - - - 10 10q22.3 zinc and ring finger 2 pseudogene pseudo - - - - 20121230 -9606 100130880 LOC100130880 - - - 7 7q33 uncharacterized LOC100130880 protein-coding - - - uncharacterized protein LOC100130880 20121230 -9606 100130881 LOC100130881 - - - 10 10q11.21 zinc finger protein 12 pseudogene pseudo - - - - 20121230 -9606 100130887 LOC100130887 - - - 10 10q26.13 uncharacterized LOC100130887 miscRNA - - - - 20121230 -9606 100130889 PSORS1C3 DAQB-185I1.1 AB023059.1|NCRNA00196 HGNC:17203 6 6p21.33 psoriasis susceptibility 1 candidate 3 (non-protein coding) miscRNA PSORS1C3 psoriasis susceptibility 1 candidate 3 (non-protein coding) O - 20121230 -9606 100130890 TSTD3 - - HGNC:40910 6 6q16.2 thiosulfate sulfurtransferase (rhodanese)-like domain containing 3 protein-coding TSTD3 thiosulfate sulfurtransferase (rhodanese)-like domain containing 3 O rhodanese domain-containing protein 3|thiosulfate sulfurtransferase/rhodanese-like domain-containing protein 3 20121230 -9606 100130891 LOC100130891 - - - 8 8p21.1 PDZ and LIM domain 7 (enigma) pseudogene pseudo - - - - 20121230 -9606 100130892 RPL7P32 - RPL7P|RPL7_15_834 HGNC:35692 7 7q31.1 ribosomal protein L7 pseudogene 32 pseudo RPL7P32 ribosomal protein L7 pseudogene 32 O - 20121230 -9606 100130894 LOC100130894 - - - 16 16q22.1-q22.2 uncharacterized LOC100130894 miscRNA - - - - 20121230 -9606 100130898 FLYWCH1P1 - - HGNC:38033 3 3q26.33 FLYWCH-type zinc finger 1 pseudogene 1 pseudo FLYWCH1P1 FLYWCH-type zinc finger 1 pseudogene 1 O - 20121230 -9606 100130899 LOC100130899 - - - 22 22q13.1 uncharacterized LOC100130899 miscRNA - - - - 20121230 -9606 100130909 LOC100130909 - - - 7 7p11.2 ribonuclease T2 pseudogene pseudo - - - - 20121230 -9606 100130913 LOC100130913 - - - 7 7p11.2 uncharacterized LOC100130913 unknown - - - - 20120511 -9606 100130916 LOC100130916 UNQ5836 - - 9 9q22.33 HSAL5836 unknown - - - - 20120710 -9606 100130920 LOC100130920 - - - 10 10p15.1 uncharacterized LOC100130920 protein-coding - - - - 20120511 -9606 100130921 LOC100130921 - - - 2 2p21 uncharacterized LOC100130921 protein-coding - - - - 20121209 -9606 100130922 RPL22P22 - RPL22_10_1790 HGNC:36109 X Xq21.1 ribosomal protein L22 pseudogene 22 pseudo RPL22P22 ribosomal protein L22 pseudogene 22 O - 20121230 -9606 100130923 PSMA2P1 - - HGNC:43832 11 11q14.2 proteasome (prosome, macropain) subunit, alpha type, 2 pseudogene 1 pseudo PSMA2P1 proteasome (prosome, macropain) subunit, alpha type, 2 pseudogene 1 O - 20121230 -9606 100130924 LOC100130924 - - - 3 3p25.2 uncharacterized LOC100130924 unknown - - - - 20120511 -9606 100130927 LOC100130927 - - - 6 6p25.2 uncharacterized LOC100130927 protein-coding - - - - 20120511 -9606 100130929 RPL5P33 - RPL5_18_1557 HGNC:36703 17 17q21.33 ribosomal protein L5 pseudogene 33 pseudo RPL5P33 ribosomal protein L5 pseudogene 33 O - 20121230 -9606 100130930 LOC100130930 - - - 19 19p13.3 uncharacterized LOC100130930 unknown - - - - 20121018 -9606 100130931 LOC100130931 - - - 17 17q11.2 uncharacterized LOC100130931 unknown - - - - 20120511 -9606 100130932 LOC100130932 - - - 19 19p13.12 small nuclear ribonucleoprotein polypeptide G pseudogene pseudo - - - - 20121230 -9606 100130933 SMIM6 hCG_1643808 C17orf110 HGNC:40032|Ensembl:ENSG00000259120|Vega:OTTHUMG00000179796 17 - small integral membrane protein 6 protein-coding SMIM6 small integral membrane protein 6 O putative uncharacterized protein C17orf110 20121230 -9606 100130934 ZNF663 - - HGNC:25342 20 20q13.12 zinc finger protein 663 pseudo ZNF663 zinc finger protein 663 O - 20121230 -9606 100130935 CSAG4 - - HGNC:20923 X Xq28 CSAG family, member 4 (pseudogene) pseudo CSAG4 CSAG family, member 4 (pseudogene) O - 20121230 -9606 100130936 LOC100130936 - - - 20 20q12 acireductone dioxygenase 1 pseudogene pseudo - - - - 20121230 -9606 100130938 LOC100130938 - - - 18 18q21.33 uncharacterized LOC100130938 miscRNA - - - - 20121209 -9606 100130950 LOC100130950 - - - 17 17p13.2 uncharacterized LOC100130950 miscRNA - - - - 20121230 -9606 100130954 LOC100130954 - - - 9 9q34.3 uncharacterized LOC100130954 miscRNA - - - - 20121230 -9606 100130958 SYCE1L - MRP2 HGNC:37236|Ensembl:ENSG00000205078|Vega:OTTHUMG00000176809 16 16q23.1 synaptonemal complex central element protein 1-like protein-coding SYCE1L synaptonemal complex central element protein 1-like O meiosis-related protein 20121230 -9606 100130962 ATP5G1P7 - - HGNC:39510 10 10q22.1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 7 pseudo ATP5G1P7 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 7 O - 20121230 -9606 100130963 LOC100130963 - - - 3 3q11.2 ribosomal protein L38 pseudogene pseudo - - - - 20121230 -9606 100130964 LOC100130964 - - - 8 8p11.22 ADAM metallopeptidase domain 3A-like miscRNA - - - - 20121230 -9606 100130967 C6orf99 XXyac-YR21IF11.1 yR211F11.1 HGNC:21179 6 6q25.3 chromosome 6 open reading frame 99 protein-coding C6orf99 chromosome 6 open reading frame 99 O putative uncharacterized protein C6orf99 20121230 -9606 100130968 RPL7L1P4 - - HGNC:39486 5 5q23.1 ribosomal protein L7-like 1 pseudogene 4 pseudo RPL7L1P4 ribosomal protein L7-like 1 pseudogene 4 O - 20121230 -9606 100130970 LOC100130970 - - - 10 10q23.33 C-terminal binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100130972 PPP1R2P6 - - HGNC:16321 7 7q34 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 6 pseudo PPP1R2P6 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 6 O - 20121230 -9606 100130976 LOC100130976 - - - 15 15q26.2 uncharacterized LOC100130976 protein-coding - - - - 20120511 -9606 100130980 RPS2P35 - RPS2_12_1000 HGNC:36757 9 9q31.1 ribosomal protein S2 pseudogene 35 pseudo RPS2P35 ribosomal protein S2 pseudogene 35 O - 20121230 -9606 100130983 RPL26P28 - RPL26_8_1018 HGNC:35776 10 10p15.1 ribosomal protein L26 pseudogene 28 pseudo RPL26P28 ribosomal protein L26 pseudogene 28 O - 20121230 -9606 100130987 LOC100130987 - - - 11 11q13.2 uncharacterized LOC100130987 miscRNA - - - - 20121230 -9606 100130988 C7orf72 tcag7.1071 - HGNC:22564|Ensembl:ENSG00000164500|Vega:OTTHUMG00000155883 7 7p12.2 chromosome 7 open reading frame 72 protein-coding C7orf72 chromosome 7 open reading frame 72 O uncharacterized protein C7orf72 20121230 -9606 100130990 LOC100130990 - - - 5 5q11.2 zinc finger protein 561-like pseudo - - - - 20121230 -9606 100130992 LOC100130992 - - - 10 10p12.31 uncharacterized LOC100130992 miscRNA - - - - 20121230 -9606 100130994 UQCRFS1P3 - - HGNC:39173 6 6p22.3 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 pseudogene 3 pseudo UQCRFS1P3 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 pseudogene 3 O - 20121230 -9606 100130995 ZNF969P - - HGNC:44211 4 4q25 zinc finger protein 969, pseudogene pseudo ZNF969P zinc finger protein 969, pseudogene O - 20121230 -9606 100130996 LOC100130996 - - - 1 1q25.3 yippee-like 5 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100131000 LOC100131000 - - - 17 17q25.3 uncharacterized LOC100131000 protein-coding - - - - 20120511 -9606 100131004 LOC100131004 - - - 17 17q24.1 uncharacterized LOC100131004 protein-coding - - - - 20120511 -9606 100131011 LOC100131011 - - - 18 18q22.1 myotubularin related protein 14 pseudogene pseudo - - - - 20121230 -9606 100131012 YBX1P4 - - HGNC:42425 7 7q36.1 Y box binding protein 1 pseudogene 4 pseudo YBX1P4 Y box binding protein 1 pseudogene 4 O - 20121230 -9606 100131013 LOC100131013 - - - 8 8q12.1 ribosomal protein L7-like 1 pseudogene pseudo - - - - 20121230 -9606 100131015 LOC100131015 - - - 2 2q36.3 uncharacterized LOC100131015 protein-coding - - - - 20120508 -9606 100131017 ZNF316 - MZF-3|ZNF853 HGNC:13843 7 7p22.1 zinc finger protein 316 unknown ZNF316 zinc finger protein 316 O - 20121222 -9606 100131020 RPL9P23 - RPL9_5_1139 HGNC:36807 11 11p12 ribosomal protein L9 pseudogene 23 pseudo RPL9P23 ribosomal protein L9 pseudogene 23 O - 20121230 -9606 100131023 LOC100131023 - - - 11 11p12 uncharacterized LOC100131023 unknown - - - - 20120511 -9606 100131027 SLC25A5P4 RP11-640E11.1 - HGNC:35471 13 13q21.1 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 4 pseudo SLC25A5P4 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 4 O - 20121230 -9606 100131029 LOC100131029 - - - X Xq23 transportin 3 pseudogene pseudo - - - - 20121230 -9606 100131031 ANKRD18EP - - HGNC:43609 6 6p21.2 ankyrin repeat domain 18E, pseudogene pseudo ANKRD18EP ankyrin repeat domain 18E, pseudogene O uncharacterized protein LOC100131031 20121230 -9606 100131032 LOC100131032 - - - 1 1q32.2 uncharacterized LOC100131032 protein-coding - - - - 20120511 -9606 100131033 PPIGP1 - - HGNC:34231 5 5q33.2 peptidylprolyl isomerase G (cyclophilin G) pseudogene 1 pseudo PPIGP1 peptidylprolyl isomerase G (cyclophilin G) pseudogene 1 O - 20121230 -9606 100131034 LOC100131034 - - - 14 14q32.33 uncharacterized LOC100131034 protein-coding - - - - 20120511 -9606 100131036 HMGB3P28 - - HGNC:39320 18 18p11.21 high mobility group box 3 pseudogene 28 pseudo HMGB3P28 high mobility group box 3 pseudogene 28 O - 20121230 -9606 100131038 LOC100131038 - - - 4 4q32.1 GC-rich promoter binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100131041 LOC100131041 - - - 6 6q24.2 FK506 binding protein 7 pseudogene pseudo - - - - 20121230 -9606 100131043 LOC100131043 - - - 6 6p21.2 uncharacterized LOC100131043 unknown - - - - 20120511 -9606 100131046 SALL4P3 - - HGNC:39820 16 16p12.3 sal-like 4 (Drosophila) pseudogene 3 pseudo SALL4P3 sal-like 4 (Drosophila) pseudogene 3 O - 20121230 -9606 100131047 LOC100131047 - - - 6 6p21.2 uncharacterized LOC100131047 miscRNA - - - - 20121230 -9606 100131048 LOC100131048 - - - 2 2q21.1 uncharacterized LOC100131048 unknown - - - - 20120511 -9606 100131051 LOC100131051 - - - 2 2q32.1 mediator complex subunit 28 pseudogene pseudo - - - - 20121230 -9606 100131053 LOC100131053 - - - 1 1p36.13 uncharacterized LOC100131053 unknown - - - - 20120511 -9606 100131055 RPS4XP15 - RPS4P15|RPS4X_7_1265 HGNC:36308 12 12q21.32 ribosomal protein S4X pseudogene 15 pseudo RPS4XP15 ribosomal protein S4X pseudogene 15 O - 20121230 -9606 100131060 LOC100131060 - - - 1 1p32.1 uncharacterized LOC100131060 miscRNA - - - - 20121230 -9606 100131065 VN1R38P - - HGNC:37358 7 7q11.21 vomeronasal 1 receptor 38 pseudogene pseudo VN1R38P vomeronasal 1 receptor 38 pseudogene O - 20121230 -9606 100131066 LOC100131066 - - - 5 5q15 uncharacterized LOC100131066 unknown - - - - 20120511 -9606 100131067 LOC100131067 - - - 5 5q14.1 uncharacterized LOC100131067 miscRNA - - - - 20121230 -9606 100131068 ERVI-1 - - HGNC:39052 9 - endogenous retrovirus group I, member 1 unknown ERVI-1 endogenous retrovirus group I, member 1 O - 20121017 -9606 100131069 LOC100131069 - - - X Xq13.1 coiled-coil domain containing 53 pseudogene pseudo - - - - 20121230 -9606 100131072 LOC100131072 - - - X Xq21.33 karyopherin (importin) beta 1 pseudogene pseudo - - - - 20121230 -9606 100131077 OK/SW-CL.36 - - - 4 4q21.23 OK/SW-CL.36 unknown - - - - 20120710 -9606 100131078 LOC100131078 - - - 11 11q14.2 MOB family member 4, phocein pseudogene pseudo - - - - 20121230 -9606 100131080 LOC100131080 - - - 16 16p13.2 ribosomal protein S14 pseudogene pseudo - - - - 20121230 -9606 100131083 RPS8P5 - RPS8_2_374 HGNC:36417 3 3p14.3 ribosomal protein S8 pseudogene 5 pseudo RPS8P5 ribosomal protein S8 pseudogene 5 O - 20121230 -9606 100131084 DNM1P17 RP11-449I17.2 DNM1DN17|DNM1DN17@ HGNC:21134 10 10p11.23 DNM1 pseudogene 17 pseudo DNM1P17 DNM1 pseudogene 17 O - 20121230 -9606 100131085 RPL7P12 - RPL7_3_208 HGNC:36611 2 2p22.2 ribosomal protein L7 pseudogene 12 pseudo RPL7P12 ribosomal protein L7 pseudogene 12 O - 20121230 -9606 100131087 RPLP1P11 - RPLP1_5_1519 HGNC:36196 17 17p12 ribosomal protein, large, P1 pseudogene 11 pseudo RPLP1P11 ribosomal protein, large, P1 pseudogene 11 O - 20121230 -9606 100131089 LOC100131089 - - - 15 15q15.1 uncharacterized LOC100131089 miscRNA - - - - 20121230 -9606 100131092 ISCA1P3 - - HGNC:38024 17 17q22 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 3 pseudo ISCA1P3 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 3 O - 20121230 -9606 100131094 LOC100131094 - - - 19 19p13.3 uncharacterized LOC100131094 protein-coding - - - uncharacterized protein LOC100131094 20121230 -9606 100131096 LOC100131096 - - - 17 17q25.3 uncharacterized LOC100131096 miscRNA - - - - 20121230 -9606 100131099 LOC100131099 - - - 20 20q13.33 uncharacterized LOC100131099 protein-coding - - - - 20120511 -9606 100131101 LOC100131101 - - - 2 2q37.2 uncharacterized LOC100131101 protein-coding - - - - 20120511 -9606 100131103 TATDN2P1 - - HGNC:39254 X Xp11.3 TatD DNase domain containing 2 pseudogene 1 pseudo TATDN2P1 TatD DNase domain containing 2 pseudogene 1 O - 20121230 -9606 100131107 LOC100131107 - - - 1 1q21.3 UPF0607 protein ENSP00000383783-like protein-coding - - - Putative UPF0607 protein ENSP00000383783 20121230 -9606 100131114 LOC100131114 - - - 2 2q12.2 serine/arginine-rich splicing factor 3-like pseudo - - - - 20121209 -9606 100131117 ZBTB20-AS1 - - HGNC:40640 3 3q13.31 ZBTB20 antisense RNA 1 miscRNA ZBTB20-AS1 ZBTB20 antisense RNA 1 O - 20121230 -9606 100131118 VN1R67P - - HGNC:37387 16 16p11.2 vomeronasal 1 receptor 67 pseudogene pseudo VN1R67P vomeronasal 1 receptor 67 pseudogene O - 20121230 -9606 100131120 LOC100131120 - - - 6 6q23.3 PRO1828 unknown - - - - 20120710 -9606 100131124 LOC100131124 - - - 6 6q15 adaptor-related protein complex 4, sigma 1 subunit pseudogene pseudo - - - - 20121230 -9606 100131126 LOC100131126 - - - 16 16q23.1 leucine rich repeat containing 59 pseudogene pseudo - - - - 20121230 -9606 100131127 LOC100131127 - - - 8 8p21.1 degenerative spermatocyte homolog 1, lipid desaturase (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100131129 LOC100131129 - - - 16 16q24.1 uncharacterized LOC100131129 protein-coding - - - - 20120511 -9606 100131130 HNRNPA1P13 - - HGNC:39131 5 5q31.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene 13 pseudo HNRNPA1P13 heterogeneous nuclear ribonucleoprotein A1 pseudogene 13 O - 20121230 -9606 100131131 LOC100131131 UNQ9419 - - 2 2q12.1 AHPA9419 unknown - - - - 20121230 -9606 100131132 LOC100131132 - - - 10 10q22.3 uncharacterized LOC100131132 unknown - - - - 20121230 -9606 100131135 LOC100131135 - - - 4 4q32.2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase pseudogene pseudo - - - - 20121230 -9606 100131137 BSPH1 - BSP1|ELSPBP2 HGNC:33906|MIM:612213|Ensembl:ENSG00000188334 19 19q13.33 binder of sperm protein homolog 1 protein-coding BSPH1 binder of sperm protein homolog 1 O binder of sperm 1|bovine seminal plasma protein homolog 1|bovine seminal plasma protein-like 1|epididymal sperm binding protein 2 20121230 -9606 100131138 LOC100131138 - - - 12 12q24.11 uncharacterized LOC100131138 miscRNA - - - - 20121230 -9606 100131141 VN1R95P - - HGNC:37415 19 19q11 vomeronasal 1 receptor 95 pseudogene pseudo VN1R95P vomeronasal 1 receptor 95 pseudogene O - 20121230 -9606 100131143 RPL23AP19 - RPL23A_2_8 HGNC:36708 1 1p36.23 ribosomal protein L23a pseudogene 19 pseudo RPL23AP19 ribosomal protein L23a pseudogene 19 O - 20121230 -9606 100131146 LOC100131146 - - - 8 8q24.3 DnaJ (Hsp40) homolog, subfamily C, member 8 pseudogene pseudo - - - - 20121230 -9606 100131150 LOC100131150 - - - 11 11q13.1 uncharacterized LOC100131150 protein-coding - - - - 20121018 -9606 100131151 RPLP0P8 - RPLP0_3_381 HGNC:35867 3 3p14.1 ribosomal protein, large, P0 pseudogene 8 pseudo RPLP0P8 ribosomal protein, large, P0 pseudogene 8 O - 20121230 -9606 100131158 LOC100131158 - - - 4 4q25 eukaryotic translation initiation factor 2, subunit 3 gamma, 52kDa pseudogene pseudo - - - - 20121230 -9606 100131159 LOC100131159 - - - 6 6p22.3 PERP, TP53 apoptosis effector pseudogene pseudo - - - - 20121230 -9606 100131160 RPL39P20 - RPL39_10_584 HGNC:36366 5 5q14.1 ribosomal protein L39 pseudogene 20 pseudo RPL39P20 ribosomal protein L39 pseudogene 20 O - 20121230 -9606 100131161 RPSAP39 - RPSA_12_495 HGNC:37040 4 4q21.21 ribosomal protein SA pseudogene 39 pseudo RPSAP39 ribosomal protein SA pseudogene 39 O - 20121230 -9606 100131170 LOC100131170 - - - 17 17q25.3 uncharacterized LOC100131170 protein-coding - - - - 20120511 -9606 100131173 RPS29P12 - RPS29_9_646 HGNC:36458 5 5q35.3 ribosomal protein S29 pseudogene 12 pseudo RPS29P12 ribosomal protein S29 pseudogene 12 O - 20121230 -9606 100131174 LOC100131174 - - - 20 20q13.33 uncharacterized LOC100131174 unknown - - - - 20121230 -9606 100131176 WDR86-AS1 - - HGNC:41186 7 7q36.1 WDR86 antisense RNA 1 miscRNA WDR86-AS1 WDR86 antisense RNA 1 O - 20121230 -9606 100131180 LOC100131180 - - - 9 9p21.1 uncharacterized LOC100131180 unknown - - - - 20120511 -9606 100131183 HMGN2P30 - - HGNC:39397 7 7p14.1 high mobility group nucleosomal binding domain 2 pseudogene 30 pseudo HMGN2P30 high mobility group nucleosomal binding domain 2 pseudogene 30 O - 20121230 -9606 100131187 TSTD1 RP11-544M22.4 KAT HGNC:35410|Ensembl:ENSG00000215845|Vega:OTTHUMG00000031476 1 1q23.3 thiosulfate sulfurtransferase (rhodanese)-like domain containing 1 protein-coding TSTD1 thiosulfate sulfurtransferase (rhodanese)-like domain containing 1 O putative thiosulfate sulfurtransferase KAT|thiosulfate sulfurtransferase KAT, putative|thiosulfate sulfurtransferase/rhodanese-like domain-containing protein 1 20121230 -9606 100131188 LIPT1P1 - - HGNC:39278 13 13q33.1 lipoyltransferase 1 pseudogene 1 pseudo LIPT1P1 lipoyltransferase 1 pseudogene 1 O - 20121230 -9606 100131189 SSR1P2 - - HGNC:39274 13 13q22.2 signal sequence receptor, alpha pseudogene 2 pseudo SSR1P2 signal sequence receptor, alpha pseudogene 2 O - 20121230 -9606 100131190 LOC100131190 - - - 21 21q22.3 uncharacterized LOC100131190 protein-coding - - - - 20120511 -9606 100131193 KIAA1984-AS1 hCG_2022318 - HGNC:44105 9 9q34.3 KIAA1984 antisense RNA 1 miscRNA KIAA1984-AS1 KIAA1984 antisense RNA 1 O - 20121230 -9606 100131195 LOC100131195 - - - 10 10q11.21 uncharacterized LOC100131195 protein-coding - - - - 20120511 -9606 100131196 RPS25P8 - RPS25_6_1012 HGNC:36075 9 9q33.2 ribosomal protein S25 pseudogene 8 pseudo RPS25P8 ribosomal protein S25 pseudogene 8 O - 20121230 -9606 100131200 LOC100131200 - - - X Xq23 mannose-6-phosphate receptor (cation dependent) pseudogene pseudo - - - - 20121230 -9606 100131205 RPL21P28 - RPL21_8_160 HGNC:36258 1 1q32.3 ribosomal protein L21 pseudogene 28 pseudo RPL21P28 ribosomal protein L21 pseudogene 28 O - 20121230 -9606 100131206 RPL29P16 - RPL29_9_696 HGNC:36898 6 6p21.1 ribosomal protein L29 pseudogene 16 pseudo RPL29P16 ribosomal protein L29 pseudogene 16 O - 20121230 -9606 100131207 DNAJA1P2 - - HGNC:39338 2 2q23.3 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 2 pseudo DNAJA1P2 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 2 O - 20121230 -9606 100131208 SNAP25-AS1 - - HGNC:44312 20 20p12.2 SNAP25 antisense RNA 1 miscRNA SNAP25-AS1 SNAP25 antisense RNA 1 O - 20121230 -9606 100131211 TMEM194B - - HGNC:33700|Ensembl:ENSG00000189362|Vega:OTTHUMG00000154454 2 2q32.2 transmembrane protein 194B protein-coding TMEM194B transmembrane protein 194B O UPF0571 transmembrane protein 20121230 -9606 100131213 ZNF503-AS2 - C10orf41|NCRNA00245 HGNC:23525 10 10q22.2 ZNF503 antisense RNA 2 miscRNA ZNF503-AS2 ZNF503 antisense RNA 2 O - 20121230 -9606 100131216 LOC100131216 - - - 3 3q26.32 transmembrane protein 38B pseudogene pseudo - - - - 20121230 -9606 100131223 LOC100131223 - - - 1 1p35.3 ADP-ribosylation factor-like 8B pseudogene pseudo - - - - 20121230 -9606 100131227 GAFA1 - - - 14 14q11.2 FGF2-associated protein GAFA1 unknown - - - - 20120610 -9606 100131229 RPL6P17 - RPL6_4_660 HGNC:36914 6 6p23 ribosomal protein L6 pseudogene 17 pseudo RPL6P17 ribosomal protein L6 pseudogene 17 O - 20121230 -9606 100131230 RPL30P4 - RPL30_3_359 HGNC:35871 3 3p22.3 ribosomal protein L30 pseudogene 4 pseudo RPL30P4 ribosomal protein L30 pseudogene 4 O - 20121230 -9606 100131232 LOC100131232 - - - 11 11q13.1 uncharacterized LOC100131232 unknown - - - - 20120511 -9606 100131233 LOC100131233 - - - 11 11q21 AKT interacting protein pseudogene pseudo - - - - 20121230 -9606 100131234 LOC100131234 - - - 1 1q32.1 familial acute myelogenous leukemia related factor miscRNA - - - - 20121230 -9606 100131236 PCBP2P3 - - HGNC:39032 5 5q14.3 poly(rC) binding protein 2 pseudogene 3 pseudo PCBP2P3 poly(rC) binding protein 2 pseudogene 3 O - 20121230 -9606 100131241 LOC100131241 - - - 17 17q24.3 SERPINE1 mRNA binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100131242 LOC100131242 - - - 17 17q25.3 uncharacterized LOC100131242 protein-coding - - - - 20120511 -9606 100131244 ANKRD63 - - HGNC:40027|Ensembl:ENSG00000230778|Vega:OTTHUMG00000176892 15 15q15.1 ankyrin repeat domain 63 protein-coding ANKRD63 ankyrin repeat domain 63 O ankyrin repeat domain-containing protein 63 20121230 -9606 100131246 RPL9P27 - RPL9_12_1427 HGNC:37012 15 15q15.1 ribosomal protein L9 pseudogene 27 pseudo RPL9P27 ribosomal protein L9 pseudogene 27 O - 20121230 -9606 100131249 LOC100131249 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100131250 LOC100131250 - - - 15 15q15.2 signal peptidase complex subunit 2 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100131252 LOC100131252 - - - 8 8q21.11 family with sequence similarity 213, member A pseudogene pseudo - - - - 20121230 -9606 100131254 LOC100131254 - - - 8 8q11.23 ESF1, nucleolar pre-rRNA processing protein, homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100131257 LOC100131257 - - - 7 7p22.1 zinc finger protein 655 pseudogene pseudo - - - - 20121230 -9606 100131261 LOC100131261 - - - 1 1p12 proline-rich nuclear receptor coactivator 2 pseudogene pseudo - - - - 20121230 -9606 100131262 LOC100131262 - - - 11 - uncharacterized LOC100131262 unknown - - - - 20121230 -9606 100131264 LOC100131264 - - - 7 7p22.2 prefoldin subunit 4 pseudogene pseudo - - - - 20121230 -9606 100131268 TPT1P1 - TPT1P HGNC:16742 21 21q22.11 tumor protein, translationally-controlled 1 pseudogene 1 pseudo TPT1P1 tumor protein, translationally-controlled 1 pseudogene 1 O - 20121230 -9606 100131270 LOC100131270 - - - 2 2q24.1 uncharacterized LOC100131270 unknown - - - - 20120511 -9606 100131275 NSAP11 - - - 8 8p22 nervous system abundant protein 11 unknown - - - - 20121230 -9606 100131279 LOC100131279 - - - 16 16p11.1 chromosome 2 open reading frame 69 pseudogene pseudo - - - - 20121230 -9606 100131280 LOC100131280 - - - 5 5q22.1 integrin alpha FG-GAP repeat containing 2 pseudogene pseudo - - - - 20121230 -9606 100131281 GLUD1P9 - - HGNC:37696 X Xq23 glutamate dehydrogenase 1 pseudogene 9 pseudo GLUD1P9 glutamate dehydrogenase 1 pseudogene 9 O - 20121230 -9606 100131284 LOC100131284 - - - 2 2q14.3 proteasome (prosome, macropain) 26S subunit, non-ATPase, 14 pseudogene pseudo - - - - 20121230 -9606 100131286 RPS19P5 - RPS19_1_737 HGNC:35850 6 6q21 ribosomal protein S19 pseudogene 5 pseudo RPS19P5 ribosomal protein S19 pseudogene 5 O - 20121230 -9606 100131289 LOC100131289 - - - 6 6p22.1 uncharacterized LOC100131289 miscRNA - - - - 20121230 -9606 100131291 LOC100131291 - - - 1 1p31.1 actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 100131294 LOC100131294 - - - 12 12q13.2 RAB13, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100131302 PTCD2P1 - - HGNC:31718 14 14q11.2 pentatricopeptide repeat domain 2 pseudogene 1 pseudo PTCD2P1 pentatricopeptide repeat domain 2 pseudogene 1 O - 20121230 -9606 100131303 LOC100131303 - - - 16 16q22.1 uncharacterized LOC100131303 miscRNA - - - - 20120511 -9606 100131306 LOC100131306 - - - 19 19p12 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100131309 PRKRIRP9 - - HGNC:39573 4 4p12 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 9 pseudo PRKRIRP9 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 9 O - 20121230 -9606 100131310 LOC100131310 - - - X Xp11.4 uncharacterized LOC100131310 protein-coding - - - - 20120511 -9606 100131315 LOC100131315 - - - 15 15q13.3 uncharacterized LOC100131315 miscRNA - - - - 20120511 -9606 100131320 LOC100131320 - - - 2 2q21.1 uncharacterized LOC100131320 miscRNA - - - - 20121230 -9606 100131327 UQCRC2P1 - - HGNC:44309 3 3p21.31 ubiquinol-cytochrome c reductase core protein II pseudogene 1 pseudo UQCRC2P1 ubiquinol-cytochrome c reductase core protein II pseudogene 1 O - 20121230 -9606 100131328 FAM210CP - - HGNC:44938 10 10p12.1 family with sequence similarity 210, member B pseudogene pseudo FAM210CP family with sequence similarity 210, member C, pseudogene O - 20121230 -9606 100131333 RPL18P6 - RPL18_2_942 HGNC:35528 8 8q23.2 ribosomal protein L18 pseudogene 6 pseudo RPL18P6 ribosomal protein L18 pseudogene 6 O - 20121230 -9606 100131338 RPL15P13 - RPL15_8_1099 HGNC:35915 10 10q25.3 ribosomal protein L15 pseudogene 13 pseudo RPL15P13 ribosomal protein L15 pseudogene 13 O - 20121230 -9606 100131339 RPL32P4 - RPL32L|RPL32_11_924 HGNC:10337 8 8q21.3 ribosomal protein L32 pseudogene 4 pseudo RPL32P4 ribosomal protein L32 pseudogene 4 O - 20121230 -9606 100131340 LOC100131340 - - - X Xq21.32 5'-nucleotidase domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100131346 LOC100131346 - - - 22 22q13.33 uncharacterized LOC100131346 unknown - - - - 20120511 -9606 100131347 LOC100131347 - - - 17 17q12 RAD52 motif 1 pseudogene pseudo - - - - 20121230 -9606 100131348 LOC100131348 - - - 1 1p21.1 adaptor-related protein complex 2, beta 1 subunit pseudogene pseudo - - - - 20121230 -9606 100131355 LOC100131355 - - - 9 9q34.11 uncharacterized LOC100131355 protein-coding - - - - 20120511 -9606 100131358 RPL3P12 - RPL3_3_1807 HGNC:36298 X Xq25 ribosomal protein L3 pseudogene 12 pseudo RPL3P12 ribosomal protein L3 pseudogene 12 O - 20121230 -9606 100131360 LOC100131360 - - - 3 3q29 serine/threonine-protein phosphatase 4 regulatory subunit 2-like pseudo - - - - 20121230 -9606 100131361 LOC100131361 - - - 5 5q31.2 uncharacterized LOC100131361 pseudo - - - - 20121209 -9606 100131366 LINC00605 - - HGNC:43928 14 14q32.32 long intergenic non-protein coding RNA 605 miscRNA LINC00605 long intergenic non-protein coding RNA 605 O - 20121230 -9606 100131369 LOC100131369 - - - 12 12p11.1 double homeobox, 4-like pseudogene pseudo - - - - 20121230 -9606 100131370 DDX18P6 - - HGNC:31126 10 10q23.31 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 6 pseudo DDX18P6 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene 6 O - 20121230 -9606 100131372 LOC100131372 - - - 7 - uncharacterized LOC100131372 unknown - - - - 20121230 -9606 100131373 LOC100131373 - - - 2 2p24.1 uncharacterized LOC100131373 unknown - - - - 20121230 -9606 100131374 PABPC1P5 - - HGNC:37985 Y Yq11.21 poly(A) binding protein, cytoplasmic 1 pseudogene 5 pseudo PABPC1P5 poly(A) binding protein, cytoplasmic 1 pseudogene 5 O - 20121209 -9606 100131378 C11orf91 hCG_2033382 - HGNC:34444|Ensembl:ENSG00000205177|Vega:OTTHUMG00000166320 11 11p13 chromosome 11 open reading frame 91 protein-coding C11orf91 chromosome 11 open reading frame 91 O uncharacterized protein C11orf91 20121230 -9606 100131379 RPL36AP1 - RPL36A_19_1371 HGNC:23548 14 14q22.3 ribosomal protein L36a pseudogene 1 pseudo RPL36AP1 ribosomal protein L36a pseudogene 1 O - 20121230 -9606 100131381 LOC100131381 - - - 11 11p11.2 uncharacterized LOC100131381 protein-coding - - - - 20121209 -9606 100131387 RPL39P32 - RPL39_13_1539 HGNC:36959 17 17q12 ribosomal protein L39 pseudogene 32 pseudo RPL39P32 ribosomal protein L39 pseudogene 32 O - 20121230 -9606 100131388 LOC100131388 - - - 19 19q13.31 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 3, 9kDa pseudogene pseudo - - - - 20121230 -9606 100131390 SP9 - ZNF990 HGNC:30690|Ensembl:ENSG00000217236|Vega:OTTHUMG00000150371 2 2q31.1 Sp9 transcription factor protein-coding SP9 Sp9 transcription factor O Sp9 transcription factor homolog|transcription factor Sp9|zinc finger protein 990 20121230 -9606 100131392 LOC100131392 - - - 11 - tripartite motif-containing protein 49-like protein 1-like protein-coding - - - - 20121102 -9606 100131393 UBQLN4P2 - - HGNC:38662 2 2q23.3 ubiquilin 4 pseudogene 2 pseudo UBQLN4P2 ubiquilin 4 pseudogene 2 O - 20121230 -9606 100131395 LOC100131395 - - - 8 8p23.3 uncharacterized LOC100131395 unknown - - - - 20121230 -9606 100131396 RPS6P14 - RPS6_6_1039 HGNC:36738 10 10q11.22 ribosomal protein S6 pseudogene 14 pseudo RPS6P14 ribosomal protein S6 pseudogene 14 O - 20121230 -9606 100131411 LOC100131411 - - - 5 5q13.3 zinc finger protein 28 pseudogene pseudo - - - - 20121230 -9606 100131415 LOC100131415 - - - 4 4p16.3 olfactory receptor 7E24-like pseudo - - - - 20121209 -9606 100131418 RPS27P22 - RPS27_12_1218 HGNC:36090 12 12p12.1 ribosomal protein S27 pseudogene 22 pseudo RPS27P22 ribosomal protein S27 pseudogene 22 O - 20121230 -9606 100131425 LOC100131425 - - - 7 7p21.1 LSM5 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100131429 LOC100131429 - - - 4 4q28.3 armadillo repeat containing 1 pseudogene pseudo - - - - 20121230 -9606 100131432 LOC100131432 - - - 11 11p11.2 uncharacterized LOC100131432 unknown - - - - 20120511 -9606 100131434 LOC100131434 - - - X Xq28 uncharacterized LOC100131434 miscRNA - - - - 20121230 -9606 100131439 CD300LD UNQ9218 CD300D|CLM-4|CMRF35-A4|CMRF35A4 HGNC:16848|Ensembl:ENSG00000204345|Vega:OTTHUMG00000067614 17 17q25.1 CD300 molecule-like family member d protein-coding CD300LD CD300 molecule-like family member d O CD300 antigen-like family member D|CMRF35-like molecule 4|immune receptor CD300d 20121230 -9606 100131440 CDC42P4 - - HGNC:44428 4 4q25 cell division cycle 42 pseudogene 4 pseudo CDC42P4 cell division cycle 42 pseudogene 4 O - 20121230 -9606 100131441 LOC100131441 - - - 4 4q13.1 coiled-coil domain containing 65 pseudogene pseudo - - - - 20121230 -9606 100131442 RCC2P5 - - HGNC:42381 3 3q11.2 regulator of chromosome condensation 2 pseudogene 5 pseudo RCC2P5 regulator of chromosome condensation 2 pseudogene 5 O - 20121230 -9606 100131448 LOC100131448 RP11-560L11.1 - - X Xq22.3 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase like 2 pseudogene pseudo - - - - 20121230 -9606 100131451 TLR12P - - HGNC:31754 1 1p35.1 toll-like receptor 12, pseudogene pseudo TLR12P toll-like receptor 12, pseudogene O - 20121230 -9606 100131454 DBIL5P - ELP2P HGNC:38519 17 17p13.3 diazepam binding inhibitor-like 5, pseudogene pseudo DBIL5P diazepam binding inhibitor-like 5, pseudogene O - 20121230 -9606 100131457 SLC25A1P1 - - HGNC:43845 11 11q14.2 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 pseudogene 1 pseudo SLC25A1P1 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 pseudogene 1 O - 20121230 -9606 100131460 LOC100131460 - - - 7 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121209 -9606 100131465 LOC100131465 - - - 1 1q44 peroxisomal biogenesis factor 5 pseudogene pseudo - - - - 20121230 -9606 100131467 RPS6P9 - RPS6_4_936 HGNC:35938 8 8q22.3 ribosomal protein S6 pseudogene 9 pseudo RPS6P9 ribosomal protein S6 pseudogene 9 O - 20121230 -9606 100131469 RPSAP62 - RPSA_32_1778 HGNC:35583 X Xp11.22 ribosomal protein SA pseudogene 62 pseudo RPSAP62 ribosomal protein SA pseudogene 62 O - 20121230 -9606 100131470 LOC100131470 - - - 4 4q33 uncharacterized LOC100131470 unknown - - - uncharacterized protein LOC100131470 20120511 -9606 100131471 LOC100131471 - - - 6 6q24.2 presenilins-associated rhomboid-like protein, mitochondrial-like pseudo - - - - 20121230 -9606 100131472 LOC100131472 - - - 7 7p21.3 uncharacterized LOC100131472 unknown - - - - 20120511 -9606 100131478 LOC100131478 - - - 2 2q33.2 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100131479 LOC100131479 - - - 19 19p12 zinc finger protein 430 pseudogene pseudo - - - - 20121230 -9606 100131481 RPL21P38 - RPL21_7_292 HGNC:36349 2 2q31.1 ribosomal protein L21 pseudogene 38 pseudo RPL21P38 ribosomal protein L21 pseudogene 38 O - 20121230 -9606 100131482 LOC100131482 - - - 2 2q31.3 thioredoxin-like 4A pseudogene pseudo - - - - 20121230 -9606 100131490 LOC100131490 - - - 12 - uncharacterized LOC100131490 unknown - - - - 20120710 -9606 100131492 LOC100131492 - - - 2 2q14.3 PP12901 unknown - - - - 20121230 -9606 100131493 ZIK1P1 - - HGNC:38031 X Xq25 zinc finger protein interacting with K protein 1 pseudogene 1 pseudo ZIK1P1 zinc finger protein interacting with K protein 1 pseudogene 1 O - 20121230 -9606 100131495 LOC100131495 - - - 1 1p31.1 nitrilase family, member 2 pseudogene pseudo - - - - 20121230 -9606 100131496 LOC100131496 - - - 20 20q13.12 uncharacterized LOC100131496 miscRNA - - - - 20121230 -9606 100131497 LOC100131497 - - - 14 14q24.3 uncharacterized LOC100131497 miscRNA - - - - 20120710 -9606 100131501 LOC100131501 - - - 11 11q13.2 putative uncharacterized protein UNQ6125/PRO20090-like pseudo - - - - 20121209 -9606 100131503 LOC100131503 - - - 4 4p16.3 putative uncharacterized protein UNQ6125/PRO20090-like pseudo - - - - 20121209 -9606 100131506 LOC100131506 - - - 2 2p25.1 uncharacterized LOC100131506 unknown - - - - 20120710 -9606 100131508 LOC100131508 - - - 6 6q14.1 PRO2122 unknown - - - - 20121006 -9606 100131510 LOC100131510 - - - 2 2p23.3 uncharacterized LOC100131510 unknown - - - - 20121230 -9606 100131514 LOC100131514 - - - Un - uncharacterized LOC100131514 protein-coding - - - - 20121102 -9606 100131515 MST152 - - - 6 6q25.1 MSTP152 unknown - - - - 20121017 -9606 100131520 LOC100131520 - - - 5 5q33.2 ribosomal protein L6 pseudogene pseudo - - - - 20121230 -9606 100131526 RPL26P6 - RPL26_9_1063 HGNC:34023 10 10q22.2 ribosomal protein L26 pseudogene 6 pseudo RPL26P6 ribosomal protein L26 pseudogene 6 O - 20121230 -9606 100131527 RPL19P7 - RPL19_4_388 HGNC:36088 3 3q12 ribosomal protein L19 pseudogene 7 pseudo RPL19P7 ribosomal protein L19 pseudogene 7 O - 20121230 -9606 100131528 LOC100131528 - - - 12 12q14.3 apolipoprotein O pseudogene pseudo - - - - 20121230 -9606 100131529 LOC100131529 - - - 12 12q23.1 family with sequence similarity 60, member A pseudogene pseudo - - - - 20121230 -9606 100131530 LOC100131530 - - - 22 22q13.1 uncharacterized LOC100131530 unknown - - - - 20121230 -9606 100131532 LOC100131532 - - - 6 - uncharacterized LOC100131532 miscRNA - - - - 20121230 -9606 100131533 LOC100131533 - - - 1 1q44 dpy-19-like 4 (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100131535 RPL5P28 - RPL5_11_1110 HGNC:36827 10 10q26.3 ribosomal protein L5 pseudogene 28 pseudo RPL5P28 ribosomal protein L5 pseudogene 28 O - 20121230 -9606 100131536 LOC100131536 - - - 22 22q12.3 tRNA methyltransferase 11 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100131539 ZNF705E - - HGNC:33203 11 11q13.4 zinc finger protein 705E protein-coding ZNF705E zinc finger protein 705E O - 20121230 -9606 100131540 LOC100131540 - - - 9 9q22.1 uncharacterized LOC100131540 unknown - - - - 20120710 -9606 100131541 LOC100131541 UNQ6228 - - 11 11q21 uncharacterized LOC100131541 unknown - - - - 20121230 -9606 100131546 LOC100131546 - - - 2 2q37.1 endothelin-converting enzyme-like 1-like pseudo - - - - 20121230 -9606 100131548 RPS6P4 - RPS6_2_432 HGNC:36548 3 3q26.1 ribosomal protein S6 pseudogene 4 pseudo RPS6P4 ribosomal protein S6 pseudogene 4 O - 20121230 -9606 100131550 CNN2P12 - - HGNC:39834 13 13q11 calponin 2 pseudogene 12 pseudo CNN2P12 calponin 2 pseudogene 12 O - 20121230 -9606 100131551 LOC100131551 - - - 3 3q29 uncharacterized LOC100131551 miscRNA - - - - 20121230 -9606 100131553 LOC100131553 - - - 4 4q34.1 disintegrin and metalloproteinase domain-containing protein 21-like pseudo - - - - 20121230 -9606 100131556 LOC100131556 - - - X Xq13.1 zinc finger CCHC-type and RNA binding motif 1 pseudogene pseudo - - - - 20121230 -9606 100131557 LOC100131557 - - - 11 11p14.3 programmed cell death 2-like pseudogene pseudo - - - - 20121230 -9606 100131561 FKSG29 - - - 13 13q32.3 FKSG29 miscRNA - - - - 20121230 -9606 100131562 LOC100131562 - - - 2 2q31.1 chibby homolog 1 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100131564 LOC100131564 - - - 1 1p22.1 uncharacterized LOC100131564 miscRNA - - - - 20121230 -9606 100131565 LOC100131565 - - - 8 8p22 eukaryotic translation initiation factor 4E pseudogene pseudo - - - - 20121230 -9606 100131568 LOC100131568 - - - 3 3p14.1 RNA binding motif protein 43 pseudogene pseudo - - - - 20121230 -9606 100131572 RPS27P9 - RPS27_1_33 HGNC:36964 1 1p34.3 ribosomal protein S27 pseudogene 9 pseudo RPS27P9 ribosomal protein S27 pseudogene 9 O - 20121230 -9606 100131577 LOC100131577 - - - 2 2q13 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121230 -9606 100131581 LOC100131581 - - - 8 8p23.1 uncharacterized LOC100131581 protein-coding - - - - 20120511 -9606 100131582 LOC100131582 - - - 16 16p13.3 uncharacterized LOC100131582 unknown - - - - 20121017 -9606 100131593 LOC100131593 - - - 8 8q22.3 SAP domain containing ribonucleoprotein pseudogene pseudo - - - - 20121230 -9606 100131597 LOC100131597 - - - 11 11p15.4 phosphorylated adaptor for RNA export pseudogene pseudo - - - - 20121230 -9606 100131599 LOC100131599 - - - 20 20p12.3 uncharacterized LOC100131599 protein-coding - - - - 20120511 -9606 100131604 LOC100131604 - - - 2 2q24.2 uncharacterized LOC100131604 unknown - - - - 20120622 -9606 100131608 LOC100131608 - - Ensembl:ENSG00000255251|Vega:OTTHUMG00000165386 8 8p23.1 uncharacterized LOC100131608 protein-coding - - - - 20121209 -9606 100131609 HNRNPA1P2 - HNRPA1P2|dJ372B18.1 HGNC:13958 6 6p21.32 heterogeneous nuclear ribonucleoprotein A1 pseudogene 2 pseudo HNRNPA1P2 heterogeneous nuclear ribonucleoprotein A1 pseudogene 2 O - 20121230 -9606 100131611 PGAM4P2 - - HGNC:42466 4 4q26 phosphoglycerate mutase family member 4 pseudogene 2 pseudo PGAM4P2 phosphoglycerate mutase family member 4 pseudogene 2 O - 20121230 -9606 100131613 LOC100131613 - - - 12 12q15 PRO1454 unknown - - - - 20120710 -9606 100131614 RPS4XP22 - RPS4P22|RPS4X_8_1621 HGNC:36125 19 19p13.2 ribosomal protein S4X pseudogene 22 pseudo RPS4XP22 ribosomal protein S4X pseudogene 22 O - 20121230 -9606 100131616 CASP3P1 - - HGNC:43596 1 1p31.1 caspase 3, apoptosis-related cysteine peptidase pseudogene 1 pseudo CASP3P1 caspase 3, apoptosis-related cysteine peptidase pseudogene 1 O - 20121230 -9606 100131617 LOC100131617 - - - X Xq26.3 v-ets erythroblastosis virus E26 oncogene homolog 2 (avian) pseudogene pseudo - - - - 20121230 -9606 100131623 LOC100131623 - - - 15 15q14 nuclear transport factor 2 pseudogene pseudo - - - - 20121230 -9606 100131624 LOC100131624 - - - 2 2q12.3 WAS protein family, member 1 pseudogene pseudo - - - - 20121230 -9606 100131625 LOC100131625 - - - 9 9q22.33 ADP-ribosylation factor-like 8B pseudogene pseudo - - - - 20121230 -9606 100131626 LOC100131626 - - - 11 11q23.3 uncharacterized LOC100131626 miscRNA - - - - 20121230 -9606 100131629 ARL2BPP7 - - HGNC:39451 9 9q31.1 ADP-ribosylation factor-like 2 binding protein pseudogene 7 pseudo ARL2BPP7 ADP-ribosylation factor-like 2 binding protein pseudogene 7 O - 20121230 -9606 100131635 LOC100131635 - - - 3 3q27.3 hCG1645011-like miscRNA - - - - 20121230 -9606 100131638 CCT4P2 - CCT4-1P HGNC:35141 X Xq11.2 chaperonin containing TCP1, subunit 4 (delta) pseudogene 2 pseudo CCT4P2 chaperonin containing TCP1, subunit 4 (delta) pseudogene 2 O - 20121230 -9606 100131641 LOC100131641 - - - 16 16p11.2 RNA binding motif protein 22 pseudogene pseudo - - - - 20121230 -9606 100131650 LOC100131650 - - - 17 17q21.31 uncharacterized LOC100131650 unknown - - - - 20120511 -9606 100131652 LOC100131652 - - - X Xq28 MORF4 family-associated protein 1-like pseudo - - - - 20121209 -9606 100131654 LOC100131654 - - - 15 15q26.1 uncharacterized LOC100131654 protein-coding - - - - 20120511 -9606 100131655 LOC100131655 hCG_2045206 - - 18 - uncharacterized LOC100131655 miscRNA - - - - 20121230 -9606 100131656 SDCBPP3 - - HGNC:44687 X Xp11.4 syndecan binding protein (syntenin) pseudogene 3 pseudo SDCBPP3 syndecan binding protein (syntenin) pseudogene 3 O - 20121230 -9606 100131657 LOC100131657 - - - 6 6p21.2 uncharacterized LOC100131657 protein-coding - - - - 20120909 -9606 100131661 FTLP5 - - HGNC:37953 19 19p13.3 ferritin, light polypeptide pseudogene 5 pseudo FTLP5 ferritin, light polypeptide pseudogene 5 O - 20121230 -9606 100131662 LOC100131662 - - - 2 2q11.1 uncharacterized LOC100131662 unknown - - - - 20120511 -9606 100131667 LOC100131667 - - - 22 22q13.1 uncharacterized LOC100131667 protein-coding - - - - 20120511 -9606 100131668 LOC100131668 - - - 16 16p13.3 uncharacterized LOC100131668 pseudo - - - - 20121209 -9606 100131669 LOC100131669 - - - 18 18q12.3 uncharacterized LOC100131669 unknown - - - - 20120511 -9606 100131671 SEC13P1 - - HGNC:44529 3 3p22.3 SEC13 homolog (S. cerevisiae) pseudogene 1 pseudo SEC13P1 SEC13 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100131672 RPL21P87 - RPL21_35_1007 HGNC:36411 9 9q31.3 ribosomal protein L21 pseudogene 87 pseudo RPL21P87 ribosomal protein L21 pseudogene 87 O - 20121230 -9606 100131676 LOC100131676 - - - 12 12p13.31 clathrin, light chain A pseudogene pseudo - - - - 20121230 -9606 100131678 LOC100131678 - - - 5 5p14.1 cyclin B3 pseudogene pseudo - - - - 20121230 -9606 100131680 LOC100131680 - - - 6 6q14.1 52 kDa repressor of the inhibitor of the protein kinase-like pseudo - - - - 20121230 -9606 100131685 LOC100131685 - - - 3 3q28 enabled homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100131688 VN1R68P - - HGNC:37389 16 16p11.2 vomeronasal 1 receptor 68 pseudogene pseudo VN1R68P vomeronasal 1 receptor 68 pseudogene O - 20121230 -9606 100131689 LOC100131689 - - - 14 14q22.1 pumilio domain-containing protein KIAA0020-like pseudo - - - - 20121230 -9606 100131691 LOC100131691 - - - 19 19q13.43 uncharacterized LOC100131691 miscRNA - - - - 20121230 -9606 100131693 EIF4EP2 - - HGNC:32428 17 17q21.33 eukaryotic translation initiation factor 4E pseudogene 2 pseudo EIF4EP2 eukaryotic translation initiation factor 4E pseudogene 2 O - 20121230 -9606 100131695 RNF11P1 - - HGNC:33988 2 2q32.2 ring finger protein 11 pseudogene 1 pseudo RNF11P1 ring finger protein 11 pseudogene 1 O - 20121230 -9606 100131702 LOC100131702 - - - 22 22q11.23 uncharacterized LOC100131702 unknown - - - - 20120511 -9606 100131711 RFC3P1 - - HGNC:44531 3 3p22.3 replication factor C (activator 1) 3, 38kDa pseudogene 1 pseudo RFC3P1 replication factor C (activator 1) 3, 38kDa pseudogene 1 O - 20121230 -9606 100131713 RPL29P11 - RPL29_2_362 HGNC:36905 3 3p22.2 ribosomal protein L29 pseudogene 11 pseudo RPL29P11 ribosomal protein L29 pseudogene 11 O - 20121230 -9606 100131719 LOC100131719 - - - 10 10q26.13 uncharacterized LOC100131719 protein-coding - - - - 20120511 -9606 100131725 LOC100131725 - - - 1 1q42.3 solute carrier family 39 (zinc transporter), member 14 pseudogene pseudo - - - - 20121230 -9606 100131726 LOC100131726 - HCCC11|HCCC11_v1|HCCC11_v2 - 8 8q24.13 HCC-related HCC-C11_v3 miscRNA - - - - 20121230 -9606 100131730 RPL37AP7 - RPL37A_4_1128 HGNC:35888 11 11p14.1 ribosomal protein L37a pseudogene 7 pseudo RPL37AP7 ribosomal protein L37a pseudogene 7 O - 20121230 -9606 100131733 USP30-AS1 - - HGNC:40909 12 12q24.11 USP30 antisense RNA 1 miscRNA USP30-AS1 USP30 antisense RNA 1 O - 20121230 -9606 100131736 LOC100131736 - - - 2 2q24.2 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 pseudogene pseudo - - - - 20121230 -9606 100131740 CIR1P1 - - HGNC:44011 5 5q33.2 corepressor interacting with RBPJ, 1 pseudogene 1 pseudo CIR1P1 corepressor interacting with RBPJ, 1 pseudogene 1 O - 20121230 -9606 100131742 LOC100131742 - - - 1 1p36.32 uncharacterized LOC100131742 unknown - - - - 20120710 -9606 100131743 GAPDHP40 - - HGNC:37797 5 5q33.3 glyceraldehyde 3 phosphate dehydrogenase pseudogene 40 pseudo GAPDHP40 glyceraldehyde 3 phosphate dehydrogenase pseudogene 40 O - 20121230 -9606 100131747 LOC100131747 - - - 1 1q32.1 small EDRK-rich factor 2 pseudogene pseudo - - - - 20121230 -9606 100131755 ARMCX4 LL0XNC01-209G1.1 CXorf35 HGNC:28615|Ensembl:ENSG00000196440|Vega:OTTHUMG00000022030 X Xq22.1 armadillo repeat containing, X-linked 4 protein-coding ARMCX4 armadillo repeat containing, X-linked 4 O armadillo repeat containing, X-linked 4 pseudogene|armadillo repeat-containing X-linked protein 4 20121230 -9606 100131756 LOC100131756 - - - 1 1p34.2 uncharacterized LOC100131756 unknown - - - - 20120508 -9606 100131759 RPL19P3 - RPL19_1_59 HGNC:36671 1 1p31.3 ribosomal protein L19 pseudogene 3 pseudo RPL19P3 ribosomal protein L19 pseudogene 3 O - 20121230 -9606 100131760 LOC100131760 - - - 9 9q13 glucoside xylosyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100131761 RPS12P12 - RPS12_5_662 HGNC:36235 6 6p22.3 ribosomal protein S12 pseudogene 12 pseudo RPS12P12 ribosomal protein S12 pseudogene 12 O - 20121230 -9606 100131763 LOC100131763 - - - 2 2q37.3 uncharacterized LOC100131763 unknown - - - - 20120511 -9606 100131766 OK/SW-CL.58 - - - 13 13q12.3 OK/SW-CL.58 unknown - - - - 20120710 -9606 100131768 LOC100131768 - - - 6 6q23.1 uncharacterized LOC100131768 unknown - - - - 20120511 -9606 100131770 LOC100131770 - - - 8 8q13.1 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa pseudogene pseudo - - - - 20121230 -9606 100131775 PSMA2P2 - - HGNC:43833 8 8q22.1 proteasome (prosome, macropain) subunit, alpha type, 2 pseudogene 2 pseudo PSMA2P2 proteasome (prosome, macropain) subunit, alpha type, 2 pseudogene 2 O - 20121230 -9606 100131777 DPPA2P4 - - HGNC:44629 16 16q13 developmental pluripotency associated 2 pseudogene 4 pseudo DPPA2P4 developmental pluripotency associated 2 pseudogene 4 O - 20121230 -9606 100131779 LOC100131779 - - - 12 12q24.31 translocase of outer mitochondrial membrane 6 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100131784 ARL2BPP8 - - HGNC:39452 17 17q22 ADP-ribosylation factor-like 2 binding protein pseudogene 8 pseudo ARL2BPP8 ADP-ribosylation factor-like 2 binding protein pseudogene 8 O - 20121230 -9606 100131785 LOC100131785 - - - 7 7q22.3 ring finger protein 181 pseudogene pseudo - - - - 20121230 -9606 100131787 RPS27P7 - RPS27_3_126 HGNC:35622 1 1q25.1 ribosomal protein S27 pseudogene 7 pseudo RPS27P7 ribosomal protein S27 pseudogene 7 O - 20121230 -9606 100131788 RPL26P29 RP11-9E13.4 RPL26_14_1054 HGNC:36135 10 10q21.3 ribosomal protein L26 pseudogene 29 pseudo RPL26P29 ribosomal protein L26 pseudogene 29 O - 20121230 -9606 100131789 VN1R46P - - HGNC:37366 8 8p11.21 vomeronasal 1 receptor 46 pseudogene pseudo VN1R46P vomeronasal 1 receptor 46 pseudogene O - 20121230 -9606 100131792 LOC100131792 - - - 5 5q23.2 uncharacterized LOC100131792 unknown - - - - 20120511 -9606 100131795 LOC100131795 - - - 15 15q21.3 uncharacterized LOC100131795 unknown - - - - 20120511 -9606 100131796 LOC100131796 - - - 15 15q22.33 LP2570 unknown - - - - 20120710 -9606 100131797 RPL15P19 - - - 15 15q21.1 ribosomal protein L15 pseudogene pseudo - - - - 20121230 -9606 100131800 UBE2D3P4 RP11-163N15.1 - HGNC:39391 13 13q31.1 ubiquitin-conjugating enzyme E2D 3 pseudogene 4 pseudo UBE2D3P4 ubiquitin-conjugating enzyme E2D 3 pseudogene 4 O - 20121230 -9606 100131801 PET100 - C19orf79 HGNC:40038|MIM:614770|Ensembl:ENSG00000229833 19 19p13.2 PET100 homolog (S. cerevisiae) protein-coding PET100 PET100 homolog (S. cerevisiae) O protein PET100 homolog, mitochondrial 20121230 -9606 100131802 LOC100131802 - - - 22 22q12.3 uncharacterized LOC100131802 unknown - - - - 20121230 -9606 100131805 RPL6P18 - RPL6_13_667 HGNC:36911 6 6p22.3 ribosomal protein L6 pseudogene 18 pseudo RPL6P18 ribosomal protein L6 pseudogene 18 O - 20121230 -9606 100131809 LOC100131809 - - - Un - cell division cycle protein 27 homolog pseudo - - - - 20121102 -9606 100131810 ADH5P3 - - HGNC:22991 1 1q43 alcohol dehydrogenase 5 (class III), chi polypeptide, pseudogene 3 pseudo ADH5P3 alcohol dehydrogenase 5 (class III), chi polypeptide, pseudogene 3 O - 20121230 -9606 100131814 LINC00271 - C6orf217|NCRNA00271 HGNC:32526 6 6q23.3 long intergenic non-protein coding RNA 271 miscRNA LINC00271 long intergenic non-protein coding RNA 271 O - 20121230 -9606 100131815 LOC100131815 - - - X Xp11.23 uncharacterized LOC100131815 pseudo - - - - 20121209 -9606 100131816 UBE2DNL - - HGNC:28656 X Xq21.1 ubiquitin-conjugating enzyme E2D N-terminal like (pseudogene) pseudo UBE2DNL ubiquitin-conjugating enzyme E2D N-terminal like (pseudogene) O - 20121230 -9606 100131820 LOC100131820 - - - 11 11p15.4 uncharacterized LOC100131820 protein-coding - - - - 20120511 -9606 100131821 LOC100131821 - - - 17 17q21.2 uncharacterized LOC100131821 protein-coding - - - - 20120511 -9606 100131822 LOC100131822 - - - 17 17q12 uncharacterized LOC100131822 protein-coding - - - - 20120511 -9606 100131823 SUMO2P7 - - HGNC:39017 17 17q21.33 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 7 pseudo SUMO2P7 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 7 O - 20121230 -9606 100131825 LOC100131825 - - - 1 1q23.2 uncharacterized LOC100131825 miscRNA - - - - 20121230 -9606 100131826 LOC100131826 UNQ3028 - - 4 4q21.1 TSSP3028 unknown - - - - 20121230 -9606 100131827 ZNF717 - X17|ZNF838 HGNC:29448|Ensembl:ENSG00000227124|Vega:OTTHUMG00000158965 3 3p12.3 zinc finger protein 717 protein-coding ZNF717 zinc finger protein 717 O krueppel-like factor X17|kruppel-like zinc finger factor X17|zinc finger protein 838 20121230 -9606 100131828 CIR1P2 - - HGNC:44012 4 4q26 corepressor interacting with RBPJ, 1 pseudogene 2 pseudo CIR1P2 corepressor interacting with RBPJ, 1 pseudogene 2 O - 20121230 -9606 100131829 LOC100131829 - - - 4 4q23 uncharacterized LOC100131829 protein-coding - - - - 20120511 -9606 100131831 LOC100131831 - - - 19 19p13.13 uncharacterized LOC100131831 unknown - - - - 20120420 -9606 100131832 LOC100131832 - - - 2 2q14.3 ZFP91 zinc finger protein pseudogene pseudo - - - - 20121230 -9606 100131840 LOC100131840 - - - 3 3p21.31 uncharacterized LOC100131840 protein-coding - - - - 20120511 -9606 100131842 LOC100131842 - - - 11 11q14.2 heterogeneous nuclear ribonucleoprotein C (C1/C2) pseudogene pseudo - - - - 20121230 -9606 100131846 RPL23AP83 - RPL23A_38_1781 HGNC:35846 X Xp11.21 ribosomal protein L23a pseudogene 83 pseudo RPL23AP83 ribosomal protein L23a pseudogene 83 O - 20121230 -9606 100131849 LOC100131849 - - - 8 8q22.2 coiled-coil domain containing 53 pseudogene pseudo - - - - 20121230 -9606 100131852 LOC100131852 - - - 2 2p16.3 coiled-coil domain containing 12 pseudogene pseudo - - - - 20121230 -9606 100131855 LOC100131855 - - - 9 9p21.1 chromosome 2 open reading frame 27A pseudogene pseudo - - - - 20121230 -9606 100131859 LOC100131859 tcag7.1306 - - 7 7q22.1 SAP domain containing ribonucleoprotein pseudogene pseudo - - - - 20121230 -9606 100131860 LOC100131860 - - - 15 15q25.2 uncharacterized LOC100131860 protein-coding - - - - 20120511 -9606 100131863 RPS18P5 RP5-1033B10.18-010 RPS18|RPS18_1_389 HGNC:36287 3 3q12.3 ribosomal protein S18 pseudogene 5 pseudo RPS18P5 ribosomal protein S18 pseudogene 5 O - 20121230 -9606 100131864 LOC100131864 - - - 1 1p36.31 uncharacterized LOC100131864 protein-coding - - - - 20120511 -9606 100131866 RPS2P9 - RPS2_5_144 HGNC:36704 1 1q32.1 ribosomal protein S2 pseudogene 9 pseudo RPS2P9 ribosomal protein S2 pseudogene 9 O - 20121230 -9606 100131868 LOC100131868 - - - 3 3q29 serine/threonine-protein phosphatase 4 regulatory subunit 2-like pseudo - - - - 20121230 -9606 100131874 CFL1P3 - CFLL3|CFLP3 HGNC:1879 1 1p31.3 cofilin 1 (non-muscle) pseudogene 3 pseudo CFL1P3 cofilin 1 (non-muscle) pseudogene 3 O - 20121230 -9606 100131877 LOC100131877 - - - 9 9q32 small EDRK-rich factor 2 pseudogene pseudo - - - - 20121230 -9606 100131878 LOC100131878 - - - 14 14q32.11 uncharacterized LOC100131878 protein-coding - - - - 20120511 -9606 100131879 ZYG11AP1 - - HGNC:38032 9 9q31.1 zyg-11 family member A, cell cycle regulator pseudogene 1 pseudo ZYG11AP1 zyg-11 family member A, cell cycle regulator pseudogene 1 O - 20121230 -9606 100131881 EI24P3 - - HGNC:44588 3 3p21.31 etoposide induced 2.4 pseudogene 3 pseudo EI24P3 etoposide induced 2.4 pseudogene 3 O - 20121230 -9606 100131884 LOC100131884 - - - 4 4q26 capicua homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100131890 LOC100131890 - - - 6 6q13 neugrin, neurite outgrowth associated pseudogene pseudo - - - - 20121230 -9606 100131893 RPL3P11 - RPL3_7_963 HGNC:35521 9 9p23 ribosomal protein L3 pseudogene 11 pseudo RPL3P11 ribosomal protein L3 pseudogene 11 O - 20121230 -9606 100131894 LOC100131894 - - - 12 12q24.33 uncharacterized LOC100131894 protein-coding - - - - 20120511 -9606 100131897 FAM196B - C5orf57 HGNC:37271|Ensembl:ENSG00000204767|Vega:OTTHUMG00000163083 5 5q35.1 family with sequence similarity 196, member B protein-coding FAM196B family with sequence similarity 196, member B O protein FAM196B 20121230 -9606 100131899 E2F4P1 - - HGNC:38684 6 6p21.2 E2F transcription factor 4, p107/p130-binding pseudogene 1 pseudo E2F4P1 E2F transcription factor 4, p107/p130-binding pseudogene 1 O - 20121230 -9606 100131901 LOC100131901 - - - 3 3p12.3 putative uncharacterized protein UNQ6125/PRO20090-like pseudo - - - - 20121209 -9606 100131902 KRTAP25-1 - KAP25.1 HGNC:34003|Ensembl:ENSG00000232263|Vega:OTTHUMG00000125482 21 21q22.11 keratin associated protein 25-1 protein-coding KRTAP25-1 keratin associated protein 25-1 O keratin-associated protein 25-1 20121230 -9606 100131905 RPS27P21 - RPS27_9_1229 HGNC:35826 12 12q12 ribosomal protein S27 pseudogene 21 pseudo RPS27P21 ribosomal protein S27 pseudogene 21 O - 20121230 -9606 100131907 LOC100131907 - - - 19 19p13.3 uncharacterized LOC100131907 protein-coding - - - - 20120511 -9606 100131910 LOC100131910 - - - 8 8q24.3 uncharacterized LOC100131910 unknown - - - - 20121230 -9606 100131913 RPL5P20 - RPL5_9_664 HGNC:36660 6 6p22.3 ribosomal protein L5 pseudogene 20 pseudo RPL5P20 ribosomal protein L5 pseudogene 20 O - 20121230 -9606 100131918 LOC100131918 - - - 1 1q42.13 KIAA1191 pseudogene pseudo - - - - 20121230 -9606 100131920 LOC100131920 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100131921 SERF1AP1 - - HGNC:44061 4 4q28.3 small EDRK-rich factor 1A (telomeric) pseudogene 1 pseudo SERF1AP1 small EDRK-rich factor 1A (telomeric) pseudogene 1 O - 20121230 -9606 100131924 LOC100131924 - - - X Xq11.2 biogenesis of lysosomal organelles complex-1, subunit 2 pseudogene pseudo - - - - 20121230 -9606 100131929 LOC100131929 - - - 7 7q22.2 uncharacterized LOC100131929 unknown - - - - 20120622 -9606 100131932 RCC2P3 - - HGNC:42379 7 7q33 regulator of chromosome condensation 2 pseudogene 3 pseudo RCC2P3 regulator of chromosome condensation 2 pseudogene 3 O - 20121230 -9606 100131934 LETM1P2 - - HGNC:33985 19 19q13.43 leucine zipper-EF-hand containing transmembrane protein 1, pseudogene 2 pseudo LETM1P2 leucine zipper-EF-hand containing transmembrane protein 1, pseudogene 2 O - 20121230 -9606 100131935 GAPDHP41 RP11-343D24.1 - HGNC:37798 6 6p11.2 glyceraldehyde 3 phosphate dehydrogenase pseudogene 41 pseudo GAPDHP41 glyceraldehyde 3 phosphate dehydrogenase pseudogene 41 O - 20121230 -9606 100131938 LOC100131938 - - - 1 1q23.3 uncharacterized LOC100131938 unknown - - - - 20120511 -9606 100131939 LOC100131939 - - - 1 1q31.1 PARK2 co-regulated-like pseudogene pseudo - - - - 20121230 -9606 100131940 SNX5P1 - - HGNC:41512 4 4q21.1 sorting nexin 5 pseudogene 1 pseudo SNX5P1 sorting nexin 5 pseudogene 1 O - 20121230 -9606 100131943 LOC100131943 UNQ1944 - - 17 17p11.2 uncharacterized LOC100131943 unknown - - - - 20121230 -9606 100131945 RPL35AP13 - RPL35A_5_575 HGNC:35916 5 5q13.2 ribosomal protein L35a pseudogene 13 pseudo RPL35AP13 ribosomal protein L35a pseudogene 13 O - 20121230 -9606 100131947 PRPF38AP2 - - HGNC:44693 10 10p12.33 PRP38 domain containing A pseudogene 2 pseudo PRPF38AP2 PRP38 domain containing A pseudogene 2 O - 20121230 -9606 100131950 LOC100131950 - - - 14 14q24.3 methyltransferase like 5 pseudogene pseudo - - - - 20121230 -9606 100131953 LOC100131953 - - - 2 2p16.1 actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 100131956 RPS3P5 - RPS3_2_726 HGNC:36869 6 6q16.2 ribosomal protein S3 pseudogene 5 pseudo RPS3P5 ribosomal protein S3 pseudogene 5 O - 20121230 -9606 100131958 RPL15P12 - RPL15_6_949 HGNC:35529 8 8q24.21 ribosomal protein L15 pseudogene 12 pseudo RPL15P12 ribosomal protein L15 pseudogene 12 O - 20121230 -9606 100131961 ST13P19 - - HGNC:38862 1 1q32.2 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 19 pseudo ST13P19 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 19 O - 20121230 -9606 100131962 LOC100131962 - - - 1 1q21.2 ubiquitin-conjugating enzyme E2D 4 (putative) pseudogene pseudo - - - - 20121230 -9606 100131964 RPL7L1P3 - - HGNC:39485 7 7q11.23 ribosomal protein L7-like 1 pseudogene 3 pseudo RPL7L1P3 ribosomal protein L7-like 1 pseudogene 3 O - 20121230 -9606 100131971 RPS26P54 - RPS26_21_1607 HGNC:36868 18 18q21.32 ribosomal protein S26 pseudogene 54 pseudo RPS26P54 ribosomal protein S26 pseudogene 54 O - 20121230 -9606 100131977 LOC100131977 - - - 3 3q27.1 prickle homolog 1 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100131980 ZNF705G - - HGNC:37134|Ensembl:ENSG00000215372|Vega:OTTHUMG00000165384 8 8p23.1 zinc finger protein 705G protein-coding ZNF705G zinc finger protein 705G O putative zinc finger protein 705G 20121230 -9606 100131981 UBE2V1P9 - - HGNC:44894 X Xq21.31 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 9 pseudo UBE2V1P9 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 9 O - 20121230 -9606 100131983 HNRNPA1P25 - - HGNC:39543 X Xq13.2 heterogeneous nuclear ribonucleoprotein A1 pseudogene 25 pseudo HNRNPA1P25 heterogeneous nuclear ribonucleoprotein A1 pseudogene 25 O - 20121230 -9606 100131984 ANKRD57P1 - - HGNC:37984 Y Yq11.1 ankyrin repeat domain 57 pseudogene 1 pseudo ANKRD57P1 ankyrin repeat domain 57 pseudogene 1 O - 20121209 -9606 100131990 LOC100131990 - - - 2 2q24.3 uncharacterized LOC100131990 unknown - - - - 20120508 -9606 100131991 RPL29P8 - RPL29_1_300 HGNC:37026 2 2q31.1 ribosomal protein L29 pseudogene 8 pseudo RPL29P8 ribosomal protein L29 pseudogene 8 O - 20121230 -9606 100131992 TSSK5P2 - - HGNC:30274 8 8q24.3 testis-specific serine kinase 5 pseudogene 2 pseudo TSSK5P2 testis-specific serine kinase 5 pseudogene 2 O - 20121230 -9606 100131995 UQCRHP3 - - HGNC:38046 10 10q11.21 ubiquinol-cytochrome c reductase hinge protein pseudogene 3 pseudo UQCRHP3 ubiquinol-cytochrome c reductase hinge protein pseudogene 3 O - 20121230 -9606 100131997 FAM27E3 - - HGNC:28655|Ensembl:ENSG00000232833|Vega:OTTHUMG00000067317 9 9q13 family with sequence similarity 27, member E3 protein-coding FAM27E3 family with sequence similarity 27, member E3 O - 20121230 -9606 100131998 RRN3P3 - - HGNC:37620 16 16p12.2 RNA polymerase I transcription factor homolog (S. cerevisiae) pseudogene 3 pseudo RRN3P3 RNA polymerase I transcription factor homolog (S. cerevisiae) pseudogene 3 O - 20121230 -9606 100132004 LOC100132004 - - - 9 9q13 uncharacterized LOC100132004 miscRNA - - - - 20121209 -9606 100132005 LOC100132005 - - - 6 6p21.2 uncharacterized LOC100132005 unknown - - - - 20120511 -9606 100132006 LOC100132006 - - - 16 16p13.2 uncharacterized LOC100132006 protein-coding - - - - 20120508 -9606 100132009 LOC100132009 - - - 19 19q13.43 pentatricopeptide repeat domain 3 pseudogene pseudo - - - - 20121230 -9606 100132014 LOC100132014 - - - 5 5q23.1 uncharacterized LOC100132014 unknown - - - - 20120511 -9606 100132015 LOC100132015 - - - X Xq25 testis expressed sequence 13-like pseudogene pseudo - - - - 20121230 -9606 100132021 LOC100132021 - - - 11 11p15.4 uncharacterized LOC100132021 pseudo - - - - 20121209 -9606 100132025 LOC100132025 - - - 15 15q11.2 transmembrane domain-containing protein ENSP00000320207-like protein-coding - - - Putative transmembrane domain-containing protein ENSP00000320207 20120610 -9606 100132027 LOC100132027 - - - 17 17q24.1 putative protein FAM215A-like pseudo - - - - 20121209 -9606 100132031 DNM1P28 - DNM1DN3-1|DNM1DN3-3|DNM1DN3.1|DNM1DN3.3|DNM1DN3@ HGNC:35175 15 15q13.2 DNM1 pseudogene 28 pseudo DNM1P28 DNM1 pseudogene 28 O - 20121230 -9606 100132036 LOC100132036 - - - 5 5q11.2 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 4, 15kDa pseudogene pseudo - - - - 20121230 -9606 100132037 RPS29P10 - RPS29_1_224 HGNC:37006 2 2p15 ribosomal protein S29 pseudogene 10 pseudo RPS29P10 ribosomal protein S29 pseudogene 10 O - 20121230 -9606 100132039 LOC100132039 - - - 5 5q13.3 spermine synthase pseudogene pseudo - - - - 20121230 -9606 100132043 LOC100132043 - - - 20 20q13.33 uncharacterized LOC100132043 pseudo - - - - 20121209 -9606 100132046 LOC100132046 - - - 8 8p23.1 uncharacterized LOC100132046 pseudo - - - - 20121209 -9606 100132047 RPL22P6 - RPL22_1_94 HGNC:36473 1 1p11.2 ribosomal protein L22 pseudogene 6 pseudo RPL22P6 ribosomal protein L22 pseudogene 6 O - 20121230 -9606 100132049 RPS19P4 - RPS19_2_563 HGNC:35778 5 5q11.2 ribosomal protein S19 pseudogene 4 pseudo RPS19P4 ribosomal protein S19 pseudogene 4 O - 20121230 -9606 100132053 RPL30P8 - RPL30_4_741 HGNC:36058 6 6q21 ribosomal protein L30 pseudogene 8 pseudo RPL30P8 ribosomal protein L30 pseudogene 8 O - 20121230 -9606 100132055 FAM157C - - HGNC:34081 9 - family with sequence similarity 157, member C miscRNA FAM157C family with sequence similarity 157, member C O - 20121230 -9606 100132056 LOC100132056 - - - 6 6q11.1 dihydrofolate reductase pseudogene pseudo - - - - 20121230 -9606 100132057 LOC100132057 - - - 1 1q21.2 phosphodiesterase 4D interacting protein pseudogene pseudo - - - - 20121230 -9606 100132058 LOC100132058 - - - 3 3q27.3 G protein pathway suppressor 2 pseudogene pseudo - - - - 20121230 -9606 100132061 RPL9P14 - RPL9_3_318 HGNC:36816 2 2q33.3 ribosomal protein L9 pseudogene 14 pseudo RPL9P14 ribosomal protein L9 pseudogene 14 O - 20121230 -9606 100132062 LOC100132062 - - - 5 5q35.3 uncharacterized LOC100132062 miscRNA - - - - 20121209 -9606 100132066 ALG1L3P - - HGNC:44372 4 4p16.1 asparagine-linked glycosylation 1-like 3, pseudogene pseudo ALG1L3P asparagine-linked glycosylation 1-like 3, pseudogene O - 20121230 -9606 100132069 LOC100132069 - - - 3 3p21.1 uncharacterized LOC100132069 protein-coding - - - - 20120511 -9606 100132070 LOC100132070 - - - 1 1p36.13 UPF0627 protein ENSP00000358171-like pseudogene pseudo - - - - 20121230 -9606 100132071 LOC100132071 - - - 16 16p13.13 uncharacterized LOC100132071 protein-coding - - - - 20120511 -9606 100132073 LOC100132073 - - - 7 7p21.3 cyclin B2 pseudogene pseudo - - - - 20121230 -9606 100132074 FOXO6 - - HGNC:24814|MIM:611457 1 1p34.2 forkhead box O6 protein-coding FOXO6 forkhead box O6 O forkhead box protein O6 20121230 -9606 100132076 LOC100132076 - - - X Xp21.3 radixin pseudogene pseudo - - - - 20121230 -9606 100132077 LOC100132077 - - - 9 9q22.32 uncharacterized LOC100132077 miscRNA - - - - 20121230 -9606 100132078 LOC100132078 - - - 11 11q23.1 uncharacterized LOC100132078 miscRNA - - - - 20121230 -9606 100132079 KARSP3 - - HGNC:39209 16 16q22.1 lysyl-tRNA synthetase pseudogene 3 pseudo KARSP3 lysyl-tRNA synthetase pseudogene 3 O - 20121230 -9606 100132081 LOC100132081 - - - 19 19q11 ladinin 1 pseudogene pseudo - - - - 20121230 -9606 100132086 LOC100132086 - - - 12 12p11.1 adenylate kinase isoenzyme 6-like pseudo - - - - 20121209 -9606 100132090 LOC100132090 - - - 4 4q35.1 survival of motor neuron 1, telomeric pseudogene pseudo - - - - 20121230 -9606 100132093 LOC100132093 - - - 1 1p36.33 uncharacterized LOC100132093 unknown - - - - 20121017 -9606 100132099 LOC100132099 UNQ1829 - - 13 13q32.3 FRSS1829 unknown - - - - 20120710 -9606 100132100 DNM1P32 - DNM1DN4-5|DNM1DN4.5|DNM1DN4@ HGNC:35179 15 15q13.3 DNM1 pseudogene 32 pseudo DNM1P32 DNM1 pseudogene 32 O - 20121230 -9606 100132101 HERC2P7 - - HGNC:4875 15 15q11.2 hect domain and RLD 2 pseudogene 7 pseudo HERC2P7 hect domain and RLD 2 pseudogene 7 O - 20121230 -9606 100132103 FAM66E - - HGNC:18735 8 8p23.1 family with sequence similarity 66, member E miscRNA FAM66E family with sequence similarity 66, member E O - 20121230 -9606 100132104 AK4P2 - - HGNC:39066 5 5q11.2 adenylate kinase 4 pseudogene 2 pseudo AK4P2 adenylate kinase 4 pseudogene 2 O - 20121230 -9606 100132108 LOC100132108 - - - 1 1q22 proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 pseudogene pseudo - - - - 20121230 -9606 100132111 LOC100132111 - - - 1 1q21.3 uncharacterized LOC100132111 miscRNA - - - - 20121230 -9606 100132115 RBM22P11 - - HGNC:39704 X Xp11.22 RNA binding motif protein 22 pseudogene 11 pseudo RBM22P11 RNA binding motif protein 22 pseudogene 11 O - 20121230 -9606 100132116 LOC100132116 - - - 10 10q23.31 uncharacterized LOC100132116 unknown - - - - 20121230 -9606 100132121 ETF1P3 - SUP45L4 HGNC:3480 X Xq12 eukaryotic translation termination factor 1 pseudogene 3 pseudo ETF1P3 eukaryotic translation termination factor 1 pseudogene 3 O - 20121230 -9606 100132122 RPL35AP5 - RPL35A_2_150 HGNC:35570 1 1q32.1 ribosomal protein L35a pseudogene 5 pseudo RPL35AP5 ribosomal protein L35a pseudogene 5 O - 20121230 -9606 100132124 TSPY17P - - HGNC:37713 Y Yp11.2 testis specific protein, Y-linked 17, pseudogene pseudo TSPY17P testis specific protein, Y-linked 17, pseudogene O - 20121209 -9606 100132126 LOC100132126 - - - 12 12q22 mitochondrial carrier 2 pseudogene pseudo - - - - 20121230 -9606 100132127 RPL39P14 - RPL39_6_311 HGNC:36609 2 2q33.1 ribosomal protein L39 pseudogene 14 pseudo RPL39P14 ribosomal protein L39 pseudogene 14 O - 20121230 -9606 100132132 DSTNP5 - - HGNC:44549 2 2q33.3 destrin (actin depolymerizing factor) pseudogene 5 pseudo DSTNP5 destrin (actin depolymerizing factor) pseudogene 5 O - 20121230 -9606 100132142 RPS3AP4 - - HGNC:23562 14 14q13.2 ribosomal protein S3A pseudogene 4 pseudo RPS3AP4 ribosomal protein S3A pseudogene 4 O - 20121230 -9606 100132146 LOC100132146 - - - 3 3p21.31 uncharacterized LOC100132146 protein-coding - - - uncharacterized protein LOC100132146 20121230 -9606 100132147 LOC100132147 - - - 1 1p36.13 uncharacterized LOC100132147 unknown - - - - 20120710 -9606 100132153 LOC100132153 - - - 6 6p25.2 tubulin, beta 2B pseudogene pseudo - - - - 20121230 -9606 100132154 LOC100132154 - - - 9 9q21.11 putative ankyrin repeat domain-containing protein 30B-like protein-coding - - - - 20121209 -9606 100132159 CALML3-AS1 - - HGNC:44682 10 10p15.1 CALML3 antisense RNA 1 miscRNA CALML3-AS1 CALML3 antisense RNA 1 O - 20121230 -9606 100132161 LOC100132161 - - - 9 9p11.2 ribosomal protein L7a pseudogene pseudo - - - - 20121230 -9606 100132163 PHKA2-AS1 - - HGNC:44110 X Xp22.13 PHKA2 antisense RNA 1 miscRNA PHKA2-AS1 PHKA2 antisense RNA 1 O - 20121230 -9606 100132166 IL9RP4 - - HGNC:6034 18 18p11.32 interleukin 9 receptor pseudogene 4 pseudo IL9RP4 interleukin 9 receptor pseudogene 4 O - 20121230 -9606 100132167 LOC100132167 - - - 9 9p12 uncharacterized LOC100132167 unknown - - - - 20121017 -9606 100132169 WASIR2 - NCRNA00286A HGNC:38609 16 16p13.3 WASH and IL9R antisense RNA 2 unknown WASIR2 WASH and IL9R antisense RNA 2 O - 20121021 -9606 100132172 LOC100132172 - - - 11 11q23.2 histone deacetylase 2 pseudogene pseudo - - - - 20121230 -9606 100132173 PPP1R26P3 - KIAA0649P3 HGNC:42017 22 22q11.21 protein phosphatase 1, regulatory subunit 26 pseudogene 3 pseudo PPP1R26P3 protein phosphatase 1, regulatory subunit 26 pseudogene 3 O - 20121230 -9606 100132174 LOC100132174 - - - 17 17q25.3 uncharacterized LOC100132174 protein-coding - - - - 20121230 -9606 100132179 LOC100132179 - - - 1 1q41 solute carrier family 35, member E3 pseudogene pseudo - - - - 20121230 -9606 100132183 FP6628 - - - 8 8q22.1 uncharacterized LOC100132183 unknown - - - - 20121230 -9606 100132188 LOC100132188 - - - 6 6q27 LP7097 unknown - - - - 20120710 -9606 100132195 TRIM60P13 - - HGNC:38485 13 13q31.2 tripartite motif containing 60 pseudogene 13 pseudo TRIM60P13 tripartite motif containing 60 pseudogene 13 O - 20121230 -9606 100132197 LOC100132197 - - - 17 17p11.2 uncharacterized LOC100132197 protein-coding - - - - 20120511 -9606 100132199 RPL36AP44 - RPL36A_21_1441 HGNC:36986 15 15q22.2 ribosomal protein L36a pseudogene 44 pseudo RPL36AP44 ribosomal protein L36a pseudogene 44 O - 20121230 -9606 100132201 ZSWIM5P2 - - HGNC:43769 17 17p11.2 zinc finger, SWIM-type containing 5 pseudogene 2 pseudo ZSWIM5P2 zinc finger, SWIM-type containing 5 pseudogene 2 O - 20121230 -9606 100132202 LOC100132202 - - - 15 15q13.1 golgin subfamily A member 6-like protein 1-like protein-coding - - - - 20121209 -9606 100132204 DNM1P29 - DNM1DN3-2|DNM1DN3.2|DNM1DN3@ HGNC:35176 15 15q13.2 DNM1 pseudogene 29 pseudo DNM1P29 DNM1 pseudogene 29 O - 20121230 -9606 100132207 LOC100132207 - - - 3 3q21.3 uncharacterized LOC100132207 unknown - - - - 20120511 -9606 100132215 LOC100132215 - - - 2 2p15 uncharacterized LOC100132215 miscRNA - - - - 20121230 -9606 100132217 LOC100132217 - - - 7 7q11.21 uncharacterized LOC100132217 unknown - - - - 20121017 -9606 100132222 RBM22P10 - - HGNC:39703 X Xp11.22 RNA binding motif protein 22 pseudogene 10 pseudo RBM22P10 RNA binding motif protein 22 pseudogene 10 O - 20121209 -9606 100132223 LOC100132223 - - - 3 3q26.33 actin, beta pseudogene pseudo - - - - 20121230 -9606 100132229 LOC100132229 - - - 8 8p21.2 nuclear pore associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100132230 FAM201C - - HGNC:37996 Y Yq11.1 family with sequence similarity 201, member C pseudo FAM201C family with sequence similarity 201, member C O - 20121209 -9606 100132234 LINC00543 - - HGNC:43678 13 13q12.2 long intergenic non-protein coding RNA 543 unknown LINC00543 long intergenic non-protein coding RNA 543 O uncharacterized protein LOC100132234 20121230 -9606 100132239 LOC100132239 - - - 6 6p22.3 calcium activated nucleotidase 1 pseudogene pseudo - - - - 20121230 -9606 100132240 LOC100132240 - - - 1 1p22.1 uncharacterized LOC100132240 pseudo - - - - 20121209 -9606 100132242 LOC100132242 - - - 6 6p21.1 exosome component 8 pseudogene pseudo - - - - 20121230 -9606 100132244 LOC100132244 - - - 7 7p22.3 uncharacterized LOC100132244 protein-coding - - - - 20120508 -9606 100132247 LOC100132247 - - Ensembl:ENSG00000243716|Vega:OTTHUMG00000163573 16 16p12.2 nuclear pore complex interacting protein related gene protein-coding - - - nuclear pore complex interacting protein family member 20121230 -9606 100132249 LOC100132249 - - - 9 9q13 uncharacterized LOC100132249 unknown - - - - 20121230 -9606 100132251 FAM108A10P - - HGNC:38510 16 16p11.2 family with sequence similarity 108, member A10, pseudogene pseudo FAM108A10P family with sequence similarity 108, member A10, pseudogene O - 20121230 -9606 100132253 LOC100132253 - - - 9 9p12 RAB28, member RAS oncogene family pseudogene pseudo - - - - 20121209 -9606 100132257 LOC100132257 - - - 14 14q11.2 Putative ankyrin repeat domain-containing protein ENSP00000383069 protein-coding - - - - 20121102 -9606 100132260 LOC100132260 - - - 3 3p24.3 chromodomain protein, Y-like pseudogene pseudo - - - - 20121230 -9606 100132261 LOC100132261 - - - 11 11q13.2 uncharacterized LOC100132261 pseudo - - - - 20121209 -9606 100132264 RNFT1P2 - - HGNC:44388 1 1p31.1 ring finger protein, transmembrane 1 pseudogene 2 pseudo RNFT1P2 ring finger protein, transmembrane 1 pseudogene 2 O - 20121230 -9606 100132265 RPL32P15 - RPL32_5_690 HGNC:36119 6 6p21.1 ribosomal protein L32 pseudogene 15 pseudo RPL32P15 ribosomal protein L32 pseudogene 15 O - 20121230 -9606 100132268 LOC100132268 - - - 9 9p11.2 FK506 binding protein 4, 59kDa pseudogene pseudo - - - - 20121209 -9606 100132272 LOC100132272 - - - 19 19q13.2 uncharacterized LOC100132272 unknown - - - - 20121230 -9606 100132273 LOC100132273 - - - 22 22q13.2 uncharacterized LOC100132273 miscRNA - - - - 20121230 -9606 100132280 LOC100132280 - - - 8 8q23.2 ataxin 3 pseudogene pseudo - - - - 20121230 -9606 100132285 KIR2DS2 CU464060.1 183ActI|CD158J|CD158b|NKAT5|cl-49 HGNC:6334|MIM:604953 19 19q13.4 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 2 protein-coding KIR2DS2 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 2 O 1060P11.9.2|CD158 antigen-like family member J|MHC class I NK cell receptor|NK receptor 183 ActI|NKAT-5|killer cell immunoglobulin-like receptor 2DS2|killer-cell Ig-like receptor|killer-cell immunoglobulin-like receptor two domains short tail 2 protein|natural killer associated transcript 5|natural killer cell inhibitory receptor|natural killer-associated transcript 5|p58 KIR|p58 NK receptor CL-49|p58 killer cell inhibitory receptor KIR-K7a|p58 natural killer cell receptor clone CL-49 20121209 -9606 100132286 NDUFB8P3 - - HGNC:33979 11 11p13 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, pseudogene 3 pseudo NDUFB8P3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, pseudogene 3 O - 20121230 -9606 100132287 LOC100132287 - - - 1 1p36.33 uncharacterized LOC100132287 miscRNA - - - - 20121230 -9606 100132288 TEKT4P2 - MAFIPL|TEKT4P HGNC:40046 21 21p11.2 tektin 4 pseudogene 2 pseudo TEKT4P2 tektin 4 pseudogene 2 O - 20121230 -9606 100132289 ABCB10P4 - - HGNC:31130 15 15q13.1 ATP-binding cassette, sub-family B (MDR/TAP), member 10 pseudogene 4 pseudo ABCB10P4 ATP-binding cassette, sub-family B (MDR/TAP), member 10 pseudogene 4 O - 20121230 -9606 100132291 RPS27P29 - RPS27_17_1641 HGNC:36516 19 19p12 ribosomal protein S27 pseudogene 29 pseudo RPS27P29 ribosomal protein S27 pseudogene 29 O - 20121230 -9606 100132292 LOC100132292 - - - 15 15q11.2 uncharacterized LOC100132292 unknown - - - - 20120508 -9606 100132295 PPP1R26P4 - KIAA0649P4 HGNC:42018 22 22q11.21 protein phosphatase 1, regulatory subunit 26 pseudogene 4 pseudo PPP1R26P4 protein phosphatase 1, regulatory subunit 26 pseudogene 4 O - 20121209 -9606 100132304 LOC100132304 - - - X Xq13.2 uncharacterized LOC100132304 miscRNA - - - - 20121209 -9606 100132306 LOC100132306 - - - 1 1q21.2 family with sequence similarity 91, member A1 pseudogene pseudo - - - - 20121230 -9606 100132308 SLC29A4P2 - - HGNC:43782 7 7q11.21 solute carrier family 29 (nucleoside transporters), member 4 pseudogene 2 pseudo SLC29A4P2 solute carrier family 29 (nucleoside transporters), member 4 pseudogene 2 O - 20121230 -9606 100132310 FCF1P11 - - HGNC:44623 7 7q34 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 11 pseudo FCF1P11 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 11 O - 20121230 -9606 100132311 RPL38P3 - RPL38_2_479 HGNC:35980 4 4q12 ribosomal protein L38 pseudogene 3 pseudo RPL38P3 ribosomal protein L38 pseudogene 3 O - 20121230 -9606 100132319 LOC100132319 - - - 3 3q28 uncharacterized LOC100132319 unknown - - - - 20120710 -9606 100132321 NIPA2P1 - - HGNC:42041 7 7q21.13 non imprinted in Prader-Willi/Angelman syndrome 2 pseudogene 1 pseudo NIPA2P1 non imprinted in Prader-Willi/Angelman syndrome 2 pseudogene 1 O - 20121230 -9606 100132322 SAR1AP4 RP11-212D3.1 - HGNC:37638 X Xq13.3 SAR1 homolog A (S. cerevisiae) pseudogene 4 pseudo SAR1AP4 SAR1 homolog A (S. cerevisiae) pseudogene 4 O - 20121230 -9606 100132330 LOC100132330 - - - 2 2p11.2 mal, T-cell differentiation protein-like pseudogene pseudo - - - - 20121230 -9606 100132332 CNOT7P2 - - HGNC:44249 1 1p13.1 CCR4-NOT transcription complex, subunit 7 pseudogene 2 pseudo CNOT7P2 CCR4-NOT transcription complex, subunit 7 pseudogene 2 O - 20121230 -9606 100132336 LOC100132336 - - - 8 - GDNF family receptor alpha-2-like protein-coding - - - - 20121209 -9606 100132339 LOC100132339 - - - 16 16q12.2 uncharacterized LOC100132339 protein-coding - - - - 20121209 -9606 100132340 CYP4F59P - - HGNC:39947 9 9p12 cytochrome P450, family 4, subfamily F, polypeptide 59, pseudogene pseudo CYP4F59P cytochrome P450, family 4, subfamily F, polypeptide 59, pseudogene O - 20121209 -9606 100132341 CLUHP3 - C16orf67|KIAA0664L3|KIAA0664P3 HGNC:28447 16 16p11.2 clustered mitochondria (cluA/CLU1) homolog pseudogene 3 miscRNA CLUHP3 clustered mitochondria (cluA/CLU1) homolog pseudogene 3 O - 20121230 -9606 100132344 LOC100132344 - - - 16 16q24.1 uncharacterized LOC100132344 unknown - - - - 20120511 -9606 100132346 LOC100132346 - - - 16 16q23.1 heat shock 10kDa protein 1 (chaperonin 10) pseudogene pseudo - - - - 20121230 -9606 100132348 LOC100132348 - - - 9 9q21.33 uncharacterized LOC100132348 unknown - - - - 20120511 -9606 100132352 LOC100132352 - - - 9 9q12 FSHD region gene 1 pseudogene pseudo - - - - 20121230 -9606 100132354 LOC100132354 - - - 6 6p21.1 uncharacterized LOC100132354 miscRNA - - - - 20121230 -9606 100132355 SLC25A1P4 - - HGNC:43848 16 16p11.2 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 pseudogene 4 pseudo SLC25A1P4 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 pseudogene 4 O - 20121230 -9606 100132356 LOC100132356 hCG_2039148 - - 5 5p12 uncharacterized LOC100132356 miscRNA - - - - 20121230 -9606 100132358 EEF1A1P34 - - HGNC:37912 20 20p11.23 eukaryotic translation elongation factor 1 alpha 1 pseudogene 34 pseudo EEF1A1P34 eukaryotic translation elongation factor 1 alpha 1 pseudogene 34 O - 20121230 -9606 100132363 LOC100132363 - - - 16 16p13.3 uncharacterized LOC100132363 protein-coding - - - - 20120511 -9606 100132365 LOC100132365 - - - 14 14q24.3 uncharacterized LOC100132365 protein-coding - - - - 20120511 -9606 100132368 LOC100132368 - - - 12 12p13.1 uncharacterized LOC100132368 unknown - - - - 20120511 -9606 100132372 RPS10P28 - RPS10_14_1658 HGNC:35511 19 19q13.2 ribosomal protein S10 pseudogene 28 pseudo RPS10P28 ribosomal protein S10 pseudogene 28 O - 20121230 -9606 100132375 LOC100132375 - - - 2 2q11.2 uncharacterized LOC100132375 unknown - - - - 20120511 -9606 100132376 RPS29P8 - RPS29_5_283 HGNC:36915 2 2q23.1 ribosomal protein S29 pseudogene 8 pseudo RPS29P8 ribosomal protein S29 pseudogene 8 O - 20121230 -9606 100132380 AGGF1P1 - - HGNC:38051 4 4q35.2 angiogenic factor with G patch and FHA domains 1 pseudogene 1 pseudo AGGF1P1 angiogenic factor with G patch and FHA domains 1 pseudogene 1 O - 20121230 -9606 100132382 RPS14P4 - RPS14_2_264 HGNC:36419 2 2q13 ribosomal protein S14 pseudogene 4 pseudo RPS14P4 ribosomal protein S14 pseudogene 4 O - 20121230 -9606 100132386 KRTAP4-9 - KAP4.9 HGNC:18910|Ensembl:ENSG00000212722|Vega:OTTHUMG00000133584 17 17q21.2 keratin associated protein 4-9 protein-coding KRTAP4-9 keratin associated protein 4-9 O keratin-associated protein 4-9|keratin-associated protein 4.9|ultrahigh sulfur keratin-associated protein 4.9 20121230 -9606 100132396 ZNF705B - - HGNC:32284|Ensembl:ENSG00000215356|Vega:OTTHUMG00000165401 8 8p23.1 zinc finger protein 705B protein-coding ZNF705B zinc finger protein 705B O Putative zinc finger protein 705D-like protein LOC100132396 20121211 -9606 100132399 GAGE12D - GAGE-12B HGNC:31904|MIM:300728|Ensembl:ENSG00000227488|Vega:OTTHUMG00000024145 X Xp11.23 G antigen 12D protein-coding GAGE12D G antigen 12D O G antigen 12B/C/D/E|GAGE-12D|g antigen 12C/D/E 20121209 -9606 100132400 RPS15AP28 - RPS15A_16_1058 HGNC:36381 10 10q22.1 ribosomal protein S15a pseudogene 28 pseudo RPS15AP28 ribosomal protein S15a pseudogene 28 O - 20121230 -9606 100132402 LOC100132402 - - - 10 10q22.3 protein geranylgeranyltransferase type I, beta subunit pseudogene pseudo - - - - 20121230 -9606 100132403 FAM157B RP11-885N19.7 - HGNC:34080 9 9q34.3 family with sequence similarity 157, member B protein-coding FAM157B family with sequence similarity 157, member B O putative protein FAM157B 20121230 -9606 100132406 NBPF10 RP11-458D21.4 AB6|AG1|NBPF9 HGNC:31992|MIM:614000|Ensembl:ENSG00000163386 1 1q21.1 neuroblastoma breakpoint family, member 10 protein-coding NBPF10 neuroblastoma breakpoint family, member 10 O neuroblastoma breakpoint family member 10 20121230 -9606 100132407 RBM22P8 - - HGNC:39701 X Xp11.22 RNA binding motif protein 22 pseudogene 8 pseudo RBM22P8 RNA binding motif protein 22 pseudogene 8 O - 20121209 -9606 100132413 GKN3P - - HGNC:37701 2 2p13.3 gastrokine 3, pseudogene pseudo GKN3P gastrokine 3, pseudogene O - 20121230 -9606 100132415 SOCS5P4 - - HGNC:44600 X Xq13.1 suppressor of cytokine signaling 5 pseudogene 4 pseudo SOCS5P4 suppressor of cytokine signaling 5 pseudogene 4 O - 20121230 -9606 100132416 LOC100132416 - - - 9 - ATP synthase subunit alpha, mitochondrial-like pseudo - - - - 20121209 -9606 100132417 FCGR1C - CD64c|FCRIC|IGFR1|IGFRC HGNC:3615|MIM:601503 1 1q21.2 Fc fragment of IgG, high affinity Ic, receptor (CD64), pseudogene pseudo FCGR1C Fc fragment of IgG, high affinity Ic, receptor (CD64), pseudogene O - 20121230 -9606 100132418 LOC100132418 - - - 10 10q11.23 Uncharacterized PRO1102-like protein LOC100132418 protein-coding - - - - 20120511 -9606 100132420 ANKRD36P1 - - HGNC:37759 Y Yq11.23 ankyrin repeat domain 36 pseudogene 1 pseudo ANKRD36P1 ankyrin repeat domain 36 pseudogene 1 O - 20121230 -9606 100132421 DUX4L18 - DUXY2 HGNC:37716 Y Yq11.21 double homeobox 4 like 18 pseudo DUX4L18 double homeobox 4 like 18 O - 20121230 -9606 100132439 FAM27E4P - - HGNC:44415 9 9p11.2 family with sequence similarity 27, member E4, pseudogene protein-coding FAM27E4P family with sequence similarity 27, member E4, pseudogene O protein FAM27E3-like 20121209 -9606 100132441 LOC100132441 - - - 9 9p12 glucoside xylosyltransferase 1 pseudogene pseudo - - - - 20121209 -9606 100132443 LOC100132443 - - - 1 1p36.21 PRAME family member 17-like pseudo - - - - 20121230 -9606 100132450 LOC100132450 - - - 12 12p13.33 IQ motif and Sec7 domain 3 pseudogene pseudo - - - - 20121230 -9606 100132456 GUSBP7 - - HGNC:42321 5 5q21.1 glucuronidase, beta pseudogene 7 pseudo GUSBP7 glucuronidase, beta pseudogene 7 O - 20121230 -9606 100132463 CLDN24 - CLDN21 HGNC:37200|Ensembl:ENSG00000185758|Vega:OTTHUMG00000160628 4 4q35.1 claudin 24 protein-coding CLDN24 claudin 24 O claudin 21|putative claudin-24 20121230 -9606 100132464 FAM99B - - HGNC:32369 11 11p15.5 family with sequence similarity 99, member B (non-protein coding) miscRNA FAM99B family with sequence similarity 99, member B (non-protein coding) O - 20121230 -9606 100132467 RNF2P1 RP11-390F4.4 RNF2P HGNC:33987 9 9p24.1 ring finger protein 2 pseudogene 1 pseudo RNF2P1 ring finger protein 2 pseudogene 1 O - 20121230 -9606 100132474 LOC100132474 - - - 19 19p13.2 uncharacterized LOC100132474 protein-coding - - - - 20120511 -9606 100132476 KRTAP4-7 hCG_1818025 KAP4.7|KRTAP4.7 HGNC:18898|Ensembl:ENSG00000240871|Vega:OTTHUMG00000133582 17 17q21.2 keratin associated protein 4-7 protein-coding KRTAP4-7 keratin associated protein 4-7 O Ultrahigh sulfur keratin-associated protein 4.7|putative keratin-associated protein 4-X 20121230 -9606 100132479 RPL22P5 - RPL22_2_96 HGNC:37022 1 1q21.2 ribosomal protein L22 pseudogene 5 pseudo RPL22P5 ribosomal protein L22 pseudogene 5 O - 20121230 -9606 100132481 LOC100132481 - - - 3 3q21.3 uncharacterized LOC100132481 unknown - - - - 20121230 -9606 100132482 LOC100132482 - - - 1 1q21.1 uncharacterized LOC100132482 pseudo - - - - 20121209 -9606 100132487 LOC100132487 - - - 10 10q23.31 pentatricopeptide repeat domain 2 pseudogene pseudo - - - - 20121230 -9606 100132488 RPS27P6 - RPS27_2_83 HGNC:36163 1 1p13.3 ribosomal protein S27 pseudogene 6 pseudo RPS27P6 ribosomal protein S27 pseudogene 6 O - 20121230 -9606 100132495 LOC100132495 - - - 1 1q21.1 uncharacterized LOC100132495 protein-coding - - - - 20120511 -9606 100132496 RPS24P9 - RPS24_5_400 HGNC:35711 3 3q21.2 ribosomal protein S24 pseudogene 9 pseudo RPS24P9 ribosomal protein S24 pseudogene 9 O - 20121230 -9606 100132498 LOC100132498 - - - 2 2p11.2 centromere protein N pseudogene pseudo - - - - 20121230 -9606 100132499 RPS29P16 - RPS29_11_830 HGNC:35560 7 7q22.1 ribosomal protein S29 pseudogene 16 pseudo RPS29P16 ribosomal protein S29 pseudogene 16 O - 20121230 -9606 100132501 LOC100132501 - - - 18 18q21.2 uncharacterized LOC100132501 unknown - - - - 20121230 -9606 100132504 TSPY19P - - HGNC:37998 Y Yp11.2 testis specific protein, Y-linked 19, pseudogene pseudo TSPY19P testis specific protein, Y-linked 19, pseudogene O - 20121209 -9606 100132506 FAM197Y3 - - HGNC:37465 Y Yp11.2 family with sequence similarity 197, Y-linked, member 3 protein-coding FAM197Y3 family with sequence similarity 197, Y-linked, member 3 O - 20121209 -9606 100132507 LOC100132507 - - - 21 21p11.2 uncharacterized LOC100132507 pseudo - - - - 20121209 -9606 100132509 ZNF114P1 - - HGNC:23771 21 21q11.2 zinc finger protein 114 pseudogene 1 pseudo ZNF114P1 zinc finger protein 114 pseudogene 1 O - 20121230 -9606 100132510 GLRXP3 - GLRXL HGNC:34049 5 5q34 glutaredoxin (thioltransferase) pseudogene 3 pseudo GLRXP3 glutaredoxin (thioltransferase) pseudogene 3 O - 20121230 -9606 100132520 LOC100132520 - - - 11 11q23.2 mitochondrial translational release factor 1-like pseudogene pseudo - - - - 20121230 -9606 100132524 LOC100132524 - - - 5 5p13.2 UBX domain protein 2A pseudogene pseudo - - - - 20121230 -9606 100132526 FGD5P1 - - HGNC:44498 3 3p25.1 FYVE, RhoGEF and PH domain containing 5 pseudogene 1 pseudo FGD5P1 FYVE, RhoGEF and PH domain containing 5 pseudogene 1 O - 20121230 -9606 100132529 LOC100132529 - - - 16 16q22.2 uncharacterized LOC100132529 miscRNA - - - - 20121230 -9606 100132534 PDHA1P1 - - HGNC:44636 3 3p14.3 pyruvate dehydrogenase (lipoamide) alpha 1 pseudogene 1 pseudo PDHA1P1 pyruvate dehydrogenase (lipoamide) alpha 1 pseudogene 1 O - 20121230 -9606 100132537 DOCK11P1 - - HGNC:31719 14 14q21.2 dedicator of cytokinesis 11 pseudogene 1 pseudo DOCK11P1 dedicator of cytokinesis 11 pseudogene 1 O - 20121230 -9606 100132541 LOC100132541 - - - 9 9p12 glucoside xylosyltransferase 1 pseudogene pseudo - - - - 20121209 -9606 100132543 LOC100132543 - - - 12 12p11.21 family with sequence similarity 98, member B pseudogene pseudo - - - - 20121230 -9606 100132547 RPL26P33 - RPL26_16_1236 HGNC:36755 12 12q13.12 ribosomal protein L26 pseudogene 33 pseudo RPL26P33 ribosomal protein L26 pseudogene 33 O - 20121230 -9606 100132562 LOC100132562 - - - 11 11p11.2 yippee-like 5 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100132565 GOLGA8F - - HGNC:32378 15 15q13.1 golgin A8 family, member F pseudo GOLGA8F golgin A8 family, member F O - 20121230 -9606 100132570 LOC100132570 - - - 17 17q21.31 chromosome 17 open reading frame 58 pseudogene pseudo - - - - 20121230 -9606 100132571 LOC100132571 - - - 1 1q21.3 short coiled-coil protein pseudogene pseudo - - - - 20121230 -9606 100132580 RBMXP4 - - HGNC:34028 4 4q25 RNA binding motif protein, X-linked pseudogene 4 pseudo RBMXP4 RNA binding motif protein, X-linked pseudogene 4 O - 20121230 -9606 100132581 LOC100132581 - - - 7 7q11.23 putative speedy protein E8-like protein-coding - - - - 20121209 -9606 100132591 SERBP1P4 - - HGNC:44631 X Xq21.31 SERPINE1 mRNA binding protein 1 pseudogene 4 pseudo SERBP1P4 SERPINE1 mRNA binding protein 1 pseudogene 4 O - 20121230 -9606 100132593 LOC100132593 - - - 7 7q22.1 uncharacterized LOC100132593 unknown - - - - 20120511 -9606 100132594 PGAM1P5 - - HGNC:42452 12 12q22 phosphoglycerate mutase 1 pseudogene 5 pseudo PGAM1P5 phosphoglycerate mutase 1 pseudogene 5 O - 20121230 -9606 100132596 XGPY2 - XG|XGPY HGNC:34022 Y Yp11.31 Xg pseudogene, Y-linked 2 pseudo XGPY2 Xg pseudogene, Y-linked 2 O - 20121209 -9606 100132597 EIF3EP2 - - HGNC:37919 2 2q24.2 eukaryotic translation initiation factor 3, subunit E pseudogene 2 pseudo EIF3EP2 eukaryotic translation initiation factor 3, subunit E pseudogene 2 O - 20121230 -9606 100132598 ZNF965P - - HGNC:42025 13 13q11 zinc finger protein 965, pseudogene pseudo ZNF965P zinc finger protein 965, pseudogene O - 20121230 -9606 100132599 LOC100132599 - - - 9 9p12 zinc finger protein 114 pseudogene pseudo - - - - 20121209 -9606 100132601 GAPDHP68 - GAPDHL13|GAPDL13 HGNC:4146 7 7p21.3 glyceraldehyde 3 phosphate dehydrogenase pseudogene 68 pseudo GAPDHP68 glyceraldehyde 3 phosphate dehydrogenase pseudogene 68 O - 20121230 -9606 100132605 LOC100132605 - - - 5 5p15.33 uncharacterized LOC100132605 unknown - - - - 20120710 -9606 100132606 LOC100132606 - - - 16 16p11.1 angiogenic factor with G patch and FHA domains 1 pseudogene pseudo - - - - 20121230 -9606 100132609 LOC100132609 - - - 9 9q32 programmed cell death 2 pseudogene pseudo - - - - 20121230 -9606 100132612 LOC100132612 - - - 14 14q32.2 uncharacterized LOC100132612 protein-coding - - - - 20121221 -9606 100132613 LOC100132613 - - - 4 4p16.1 uncharacterized LOC100132613 pseudo - - - - 20121209 -9606 100132615 LOC100132615 - - - 10 10q11.21 chromosome 12 open reading frame 49 pseudogene pseudo - - - - 20121230 -9606 100132617 SNX18P23 - - HGNC:39631 4 4p11 sorting nexin 18 pseudogene 23 pseudo SNX18P23 sorting nexin 18 pseudogene 23 O - 20121230 -9606 100132618 ZRANB2-AS1 - - HGNC:43594 1 1p31.1 ZRANB2 antisense RNA 1 miscRNA ZRANB2-AS1 ZRANB2 antisense RNA 1 O - 20121230 -9606 100132619 ATP5A1P10 - - HGNC:37668 9 9q13 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 10 pseudo ATP5A1P10 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 10 O - 20121230 -9606 100132621 LOC100132621 - - - 22 22q13.1 mitochondrial fission regulator 2 pseudogene pseudo - - - - 20121230 -9606 100132626 LOC100132626 - - - 1 1q41 family with sequence similarity 103, member A1 pseudogene pseudo - - - - 20121230 -9606 100132630 CICP3 - - HGNC:37742 1 1p36.33 capicua homolog (Drosophila) pseudogene 3 pseudo CICP3 capicua homolog (Drosophila) pseudogene 3 O - 20121227 -9606 100132641 BTF3P14 - - HGNC:38571 17 17p13.2 basic transcription factor 3 pseudogene 14 pseudo BTF3P14 basic transcription factor 3 pseudogene 14 O - 20121230 -9606 100132644 LOC100132644 - - - 15 15q22.2 ribosomal protein L7a pseudogene pseudo - - - - 20121230 -9606 100132645 RPL17P41 - RPL17_26_1572 HGNC:36292 17 17q24.2 ribosomal protein L17 pseudogene 41 pseudo RPL17P41 ribosomal protein L17 pseudogene 41 O - 20121230 -9606 100132647 LOC100132647 - - - 18 18q22.3 signal peptide peptidase like 3 pseudogene pseudo - - - - 20121230 -9606 100132651 LOC100132651 - - - 4 4q13.2 UBX domain protein 2A pseudogene pseudo - - - - 20121230 -9606 100132656 FKBP4P1 - - HGNC:44038 4 4q26 FK506 binding protein 4, 59kDa pseudogene 1 pseudo FKBP4P1 FK506 binding protein 4, 59kDa pseudogene 1 O - 20121230 -9606 100132658 LOC100132658 - - - X Xq22.1 NSA2 ribosome biogenesis homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100132659 LOC100132659 - - - 6 6q14.1 single-stranded DNA binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100132660 LOC100132660 - - - 9 - RAB28, member RAS oncogene family pseudogene pseudo - - - - 20121209 -9606 100132661 LOC100132661 - - - 3 3q24 PRO0419 unknown - - - - 20121006 -9606 100132669 LOC100132669 - - - 2 2q33.3 carboxymethylenebutenolidase homolog (Pseudomonas) pseudogene pseudo - - - - 20121230 -9606 100132672 LOC100132672 - - - 9 9q21.11 glucoside xylosyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100132673 RPS2P28 - RPS2_13_694 HGNC:35780 6 6p21.1 ribosomal protein S2 pseudogene 28 pseudo RPS2P28 ribosomal protein S2 pseudogene 28 O - 20121230 -9606 100132677 BSN-AS2 - - HGNC:42445 3 3p21.31 BSN antisense RNA 2 (head to head) miscRNA BSN-AS2 BSN antisense RNA 2 (head to head) O - 20121230 -9606 100132678 RPL7AP45 - RPL7A_15_979 HGNC:35935 9 9p11.2 ribosomal protein L7a pseudogene 45 pseudo RPL7AP45 ribosomal protein L7a pseudogene 45 O - 20121230 -9606 100132681 NFU1P1 - - HGNC:44553 3 3p22.1 NFU1 iron-sulfur cluster scaffold homolog (S. cerevisiae) pseudogene 1 pseudo NFU1P1 NFU1 iron-sulfur cluster scaffold homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100132683 PDCL3P3 - - HGNC:44504 3 3p24.3 phosducin-like 3 pseudogene 3 pseudo PDCL3P3 phosducin-like 3 pseudogene 3 O - 20121230 -9606 100132686 LOC100132686 - - - 11 11q23.1 uncharacterized LOC100132686 unknown - - - - 20120710 -9606 100132698 LOC100132698 - - - 14 14q11.2 single stranded DNA binding protein 4 pseudogene pseudo - - - - 20121230 -9606 100132699 NFU1P2 - - HGNC:44554 1 1p21.3 NFU1 iron-sulfur cluster scaffold homolog (S. cerevisiae) pseudogene 2 pseudo NFU1P2 NFU1 iron-sulfur cluster scaffold homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100132705 LOC100132705 - - - 22 22q11.21 immunoglobulin superfamily member 3-like protein-coding - - - - 20121209 -9606 100132707 LOC100132707 - - - 7 7q36.2 uncharacterized LOC100132707 miscRNA - - - - 20121230 -9606 100132708 CYP4F30P - C2orf14 HGNC:25270 2 2q21.1 cytochrome P450, family 4, subfamily F, polypeptide 30, pseudogene pseudo CYP4F30P cytochrome P450, family 4, subfamily F, polypeptide 30, pseudogene O - 20121230 -9606 100132712 LOC100132712 - - - 5 5q31.3 nicotinamide phosphoribosyltransferase pseudogene pseudo - - - - 20121230 -9606 100132722 RPL15P21 - RPL15_8_1514 HGNC:36190 17 17p12 ribosomal protein L15 pseudogene 21 pseudo RPL15P21 ribosomal protein L15 pseudogene 21 O - 20121230 -9606 100132723 LOC100132723 - - - 22 22q11.1 single stranded DNA binding protein 4 pseudogene pseudo - - - - 20121230 -9606 100132724 DCAF13P3 - - HGNC:43868 15 15q21.2 DDB1 and CUL4 associated factor 13 pseudogene 3 pseudo DCAF13P3 DDB1 and CUL4 associated factor 13 pseudogene 3 O - 20121230 -9606 100132731 LOC100132731 - - Ensembl:ENSG00000187695 3 3q21.3 uncharacterized LOC100132731 protein-coding - - - - 20121230 -9606 100132733 ANKRD20A13P - - HGNC:43604 1 1q21.1 ankyrin repeat domain 20 family, member A13, pseudogene pseudo ANKRD20A13P ankyrin repeat domain 20 family, member A13, pseudogene O - 20121230 -9606 100132735 LOC100132735 - - - 6 6q24.1 uncharacterized LOC100132735 miscRNA - - - - 20121230 -9606 100132736 LOC100132736 - - - 6 6q15 family with sequence similarity 64, member A pseudogene pseudo - - - - 20121230 -9606 100132741 LOC100132741 - - - X Xq13.1 uncharacterized LOC100132741 miscRNA - - - - 20121209 -9606 100132742 RPL17P7 hCG_39912 RPL17L|RPL17_3_82 HGNC:36005 1 1p13.3 ribosomal protein L17 pseudogene 7 pseudo RPL17P7 ribosomal protein L17 pseudogene 7 O - 20121230 -9606 100132753 RFKP2 - - HGNC:39182 3 3q13.2 riboflavin kinase pseudogene 2 pseudo RFKP2 riboflavin kinase pseudogene 2 O - 20121230 -9606 100132759 VN1R7P - ORLP1|PHB4C5 HGNC:8496 21 21p11.2 vomeronasal 1 receptor 7 pseudogene pseudo VN1R7P vomeronasal 1 receptor 7 pseudogene O - 20121230 -9606 100132762 LOC100132762 - - - 2 2q24.2 chromosome 17 open reading frame 80 pseudogene pseudo - - - - 20121230 -9606 100132764 LOC100132764 - - - 11 11q23.2 uncharacterized LOC100132764 unknown - - - - 20120622 -9606 100132766 PABPC1P8 - - HGNC:37988 10 10q11.21 poly(A) binding protein, cytoplasmic 1 pseudogene 8 pseudo PABPC1P8 poly(A) binding protein, cytoplasmic 1 pseudogene 8 O - 20121230 -9606 100132772 LOC100132772 - - - 9 9p11.2 RAB28, member RAS oncogene family pseudogene pseudo - - - - 20121209 -9606 100132773 LOC100132773 - - - 5 5p15.33 serine/threonine-protein phosphatase 4 regulatory subunit 2-like pseudo - - - - 20121230 -9606 100132774 KDM4A-AS1 - - HGNC:40528 1 1p34.1 KDM4A antisense RNA 1 miscRNA KDM4A-AS1 KDM4A antisense RNA 1 O - 20121230 -9606 100132778 LOC100132778 - - - 5 5p15.1 nascent polypeptide-associated complex alpha subunit pseudogene pseudo - - - - 20121230 -9606 100132781 LOC100132781 - - - 9 9q22.33 cyclin Y-like 1 pseudogene pseudo - - - - 20121230 -9606 100132789 LOC100132789 - - - 5 5p13.1 transmembrane protein 126A pseudogene pseudo - - - - 20121230 -9606 100132790 LOC100132790 - - - 9 9p12 uncharacterized LOC100132790 unknown - - - - 20120710 -9606 100132795 RPL12P32 - RPL12_12_1226 HGNC:36597 12 12p11.21 ribosomal protein L12 pseudogene 32 pseudo RPL12P32 ribosomal protein L12 pseudogene 32 O - 20121230 -9606 100132796 MKI67IPP6 - - HGNC:44954 19 19q13.41 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 6 pseudo MKI67IPP6 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 6 O - 20121230 -9606 100132797 LOC100132797 - - - 12 12q12 fragile X mental retardation, autosomal homolog 1 pseudogene pseudo - - - - 20121230 -9606 100132800 LOC100132800 - - - 19 19q13.33 uncharacterized LOC100132800 protein-coding - - - - 20120511 -9606 100132803 LOC100132803 - - - 6 6q25.3 heterogeneous nuclear ribonucleoprotein H1 (H) pseudogene pseudo - - - - 20121230 -9606 100132808 RBMX2P2 - - HGNC:39924 X Xq27.2 RNA binding motif protein, X-linked 2 pseudogene 2 pseudo RBMX2P2 RNA binding motif protein, X-linked 2 pseudogene 2 O - 20121230 -9606 100132812 LOC100132812 - - - 8 8q13.2 nascent polypeptide-associated complex alpha subunit 2 pseudogene pseudo - - - - 20121230 -9606 100132813 LOC100132813 - - - 8 8q23.2 uncharacterized LOC100132813 unknown - - - - 20121102 -9606 100132815 LOC100132815 - - - 19 19p12 importin 5 pseudogene pseudo - - - - 20121230 -9606 100132817 LOC100132817 - - - 15 15q11.2 chromosome 16 open reading frame 61 pseudogene pseudo - - - - 20121230 -9606 100132824 LOC100132824 - - - 15 15q14 tubulin alpha-1C chain-like pseudo - - - - 20121230 -9606 100132830 LOC100132830 - - - 6 6q16.1 zinc finger CCCH-type containing 14 pseudogene pseudo - - - - 20121230 -9606 100132831 LOC100132831 - - - X Xp11.4 A20-binding inhibitor of NF-kappaB activation 2 pseudogene pseudo - - - - 20121230 -9606 100132832 LOC100132832 - - - 7 7q11.23 PMS2 postmeiotic segregation increased 2 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100132834 LOC100132834 - - - 6 6q13 coiled-coil domain containing 112 pseudogene pseudo - - - - 20121230 -9606 100132841 LOC100132841 - - - 4 4q31.21 nicotinamide nucleotide adenylyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100132842 LOC100132842 - - - X Xp11.22 uncharacterized LOC100132842 pseudo - - - - 20121209 -9606 100132849 LOC100132849 - - - 2 2q33.3 ATP synthase, H+ transporting, mitochondrial F1 complex, O subunit pseudogene pseudo - - - - 20121230 -9606 100132850 LOC100132850 - - - 3 3p22.1 uncharacterized LOC100132850 unknown - - - - 20120511 -9606 100132857 LOC100132857 - - - X Xp22.2 heat shock protein 90kDa alpha (cytosolic), class B member 1 pseudogene pseudo - - - - 20121230 -9606 100132858 LOC100132858 - - - 7 7p22.3 putative protein FAM157B-like protein-coding - - - - 20121209 -9606 100132859 LOC100132859 - - - 9 9q13 protein FAM27E2-like protein-coding - - - - 20121209 -9606 100132863 HMGB1P37 - - HGNC:39184 9 9q33.2 high mobility group box 1 pseudogene 37 pseudo HMGB1P37 high mobility group box 1 pseudogene 37 O - 20121230 -9606 100132865 LOC100132865 - - - 1 1p36.21 PRAME family member 17-like pseudo - - - - 20121230 -9606 100132871 LOC100132871 - - - 9 9q13 RAB28, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100132874 LOC100132874 - - - 9 9p11.2 uncharacterized LOC100132874 protein-coding - - - - 20120511 -9606 100132884 LOC100132884 - - - 7 7q36.1 uncharacterized LOC100132884 unknown - - - - 20121017 -9606 100132891 LOC100132891 - - - 8 8q13.3 uncharacterized LOC100132891 miscRNA - - - - 20121230 -9606 100132900 LOC100132900 - - - 22 22q11.21 immunoglobulin superfamily member 3-like protein-coding - - - - 20121209 -9606 100132906 RPL13AP10 - RPL13A_2_89 HGNC:36864 1 1p13.2 ribosomal protein L13a pseudogene 10 pseudo RPL13AP10 ribosomal protein L13a pseudogene 10 O - 20121230 -9606 100132910 LOC100132910 - - - 18 18q12.2 PRO1477 unknown - - - - 20120710 -9606 100132911 DPH3P1 - C20orf143|DPH3B|ZCSL1|dJ885L7.5 HGNC:16136 20 20q13.33 DPH3, KTI11 homolog (S. cerevisiae) pseudogene 1 protein-coding DPH3P1 DPH3, KTI11 homolog (S. cerevisiae) pseudogene 1 O CSL-type zinc finger-containing protein 1|DPH3 homolog B (KTI11, S. cerevisiae)|putative DPH3 homolog B|zinc finger, CSL domain containing 1 20121230 -9606 100132913 LOC100132913 - - - 1 1p11.2 uncharacterized LOC100132913 miscRNA - - - - 20121209 -9606 100132916 FAM159B - - HGNC:34236|Ensembl:ENSG00000145642|Vega:OTTHUMG00000162292 5 5q12.3 family with sequence similarity 159, member B protein-coding FAM159B family with sequence similarity 159, member B O membrane protein FAM159B 20121230 -9606 100132917 LOC100132917 - - - 6 6q22.1 RAP1B, member of RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100132918 LOC100132918 - - - 3 3q26.33 eukaryotic translation initiation factor 4E pseudogene pseudo - - - - 20121230 -9606 100132920 CICP4 - - HGNC:37753 20 20q13.33 capicua homolog (Drosophila) pseudogene 4 pseudo CICP4 capicua homolog (Drosophila) pseudogene 4 O - 20121209 -9606 100132922 RPL6P11 - - - 4 4q32.1 ribosomal protein L6 pseudogene pseudo - - - - 20121230 -9606 100132923 FAM66D - - HGNC:24159 8 8p23.1 family with sequence similarity 66, member D miscRNA FAM66D family with sequence similarity 66, member D O - 20121230 -9606 100132924 RPL13AP19 - RPL13A_6_1040 HGNC:35855 10 10q11.23 ribosomal protein L13a pseudogene 19 pseudo RPL13AP19 ribosomal protein L13a pseudogene 19 O - 20121230 -9606 100132929 FAM25B RP11-144G6.3 FAM25A|FAM25C|FAM25G|bA144G6.8 HGNC:23584|Ensembl:ENSG00000189090|Vega:OTTHUMG00000018117 10 10q11.22 family with sequence similarity 25, member B protein-coding FAM25B family with sequence similarity 25, member B O protein FAM25|protein FAM25B 20121230 -9606 100132932 FAM197Y9 - - HGNC:37477 Y Yp11.2 family with sequence similarity 197, Y-linked, member 9 protein-coding FAM197Y9 family with sequence similarity 197, Y-linked, member 9 O - 20121209 -9606 100132938 AQP7P4 RP11-381O7.1 - HGNC:32056 9 9q13 aquaporin 7 pseudogene 4 pseudo AQP7P4 aquaporin 7 pseudogene 4 O - 20121230 -9606 100132940 LOC100132940 - - - 5 5p12 slowmo homolog 2 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100132941 LOC100132941 - - - 16 16p11.2 Ig heavy chain V-III region VH26-like other - - - - 20121209 -9606 100132942 LOC100132942 - - - 1 1p36.21 uncharacterized LOC100132942 unknown - - - - 20120622 -9606 100132947 LOC100132947 - - - 9 9q13 uncharacterized LOC100132947 pseudo - - - - 20121209 -9606 100132948 FAM27C RP11-374M1.1 FAM27A3|bA374M1.5 HGNC:23668 9 9p11.2 family with sequence similarity 27, member C miscRNA FAM27C family with sequence similarity 27, member C O - 20121230 -9606 100132949 LOC100132949 - - - 9 9p11.2 RNA binding motif protein 17 pseudogene pseudo - - - - 20121230 -9606 100132961 RPS21P2 - RPS21_1_254 HGNC:36191 2 2q12.2 ribosomal protein S21 pseudogene 2 pseudo RPS21P2 ribosomal protein S21 pseudogene 2 O - 20121230 -9606 100132963 SMIM9 hCG_1808463 CXorf68 HGNC:41915|Ensembl:ENSG00000203870|Vega:OTTHUMG00000024243 X Xq28 small integral membrane protein 9 protein-coding SMIM9 small integral membrane protein 9 O - 20121230 -9606 100132965 GYG1P1 - - HGNC:39712 8 8q21.11 glycogenin 1 pseudogene 1 pseudo GYG1P1 glycogenin 1 pseudogene 1 O - 20121230 -9606 100132967 FAM223A - CXorf52|LINC00204A|NCRNA00204|NCRNA00204A|SPCX HGNC:30612 X Xq28 family with sequence similarity 223, member A (non-protein coding) miscRNA FAM223A family with sequence similarity 223, member A (non-protein coding) O - 20121230 -9606 100132972 LOC100132972 - - - 17 17q11.1 synaptophysin-like 1 pseudogene pseudo - - - - 20121230 -9606 100132973 LOC100132973 - - - 19 19p13.2 transcription elongation factor B (SIII), polypeptide 1 (15kDa, elongin C) pseudogene pseudo - - - - 20121230 -9606 100132977 LOC100132977 - - - 17 17p11.2 chromosome 2 open reading frame 27B pseudogene pseudo - - - - 20121230 -9606 100132978 ATP6V0CP1 - ATCD1 HGNC:31323 17 17p13.2 ATPase, H+ transporting, lysosomal 16kDa, V0 subunit c pseudogene 1 pseudo ATP6V0CP1 ATPase, H+ transporting, lysosomal 16kDa, V0 subunit c pseudogene 1 O - 20121230 -9606 100132979 GOLGA8DP - GOLGA8D HGNC:32376 15 15q11.2 golgin A8 family, member D, pseudogene pseudo GOLGA8DP golgin A8 family, member D, pseudogene O - 20121230 -9606 100132984 LOC100132984 - - - X Xp11.22 uncharacterized LOC100132984 miscRNA - - - - 20121018 -9606 100132987 LOC100132987 - - - 10 10q22.3 uncharacterized LOC100132987 miscRNA - - - - 20121230 -9606 100132988 RPL37AP3 - RPL37A_1_734 HGNC:36222 6 6q21 ribosomal protein L37a pseudogene 3 pseudo RPL37AP3 ribosomal protein L37a pseudogene 3 O - 20121230 -9606 100132992 HMGN1P30 - - HGNC:39374 18 18q21.31 high mobility group nucleosome binding domain 1 pseudogene 30 pseudo HMGN1P30 high mobility group nucleosome binding domain 1 pseudogene 30 O - 20121230 -9606 100132993 RPS21P3 - RPS21_2_494 HGNC:36847 4 4q21.21 ribosomal protein S21 pseudogene 3 pseudo RPS21P3 ribosomal protein S21 pseudogene 3 O - 20121230 -9606 100132994 CXorf49B RP11-402P6.8 - HGNC:34229 X Xq13.1 chromosome X open reading frame 49B protein-coding CXorf49B chromosome X open reading frame 49B O uncharacterized protein LOC100132994 20121209 -9606 100132995 RPS8P3 - HsT2707|RPS8_7_1602 HGNC:31000 18 18q21.2 ribosomal protein S8 pseudogene 3 pseudo RPS8P3 ribosomal protein S8 pseudogene 3 O - 20121230 -9606 100132999 LOC100132999 - - - 1 1q21.2 uncharacterized LOC100132999 unknown - - - - 20121230 -9606 100133005 RASA4DP - - HGNC:44226 7 7q22.1 RAS p21 protein activator 4CD, pseudogene pseudo RASA4DP RAS p21 protein activator 4CD, pseudogene O - 20121230 -9606 100133007 LOC100133007 - - - 6 6q12 DENN/MADD domain containing 1C pseudogene pseudo - - - - 20121230 -9606 100133012 CHEK2P1 - CHEK2L1 HGNC:37999 Y Yq11.21 checkpoint kinase 2 pseudogene 1 pseudo CHEK2P1 checkpoint kinase 2 pseudogene 1 O - 20121209 -9606 100133021 FAM74A7 - - HGNC:34037 9 9p11.2 family with sequence similarity 74, member A7 unknown FAM74A7 family with sequence similarity 74, member A7 O - 20121021 -9606 100133023 LOC100133023 - - - 16 16p11.2 Ig heavy chain V-III region VH26-like other - - - - 20121209 -9606 100133024 AMD1P1 - - HGNC:44898 10 10p12.31 adenosylmethionine decarboxylase 1 pseudogene 1 pseudo AMD1P1 adenosylmethionine decarboxylase 1 pseudogene 1 O - 20121230 -9606 100133029 LOC100133029 RP4-609E1.2 - - 1 1p31.3 sirtuin 5 pseudogene pseudo - - - - 20121230 -9606 100133032 LOC100133032 - - - 3 3p21.31 uncharacterized LOC100133032 unknown - - - - 20120710 -9606 100133036 FAM95B1 RP11-146D12.4 - HGNC:32318 9 9p12 family with sequence similarity 95, member B1 miscRNA FAM95B1 family with sequence similarity 95, member B1 O - 20121209 -9606 100133037 RPL7P4 - Em:AB023049.2|RPL7_10_678 HGNC:21634 6 6p21.33 ribosomal protein L7 pseudogene 4 pseudo RPL7P4 ribosomal protein L7 pseudogene 4 O - 20121230 -9606 100133038 RPL18AP7 - RPL18A_2_364 HGNC:35607 3 3p22.2 ribosomal protein L18a pseudogene 7 pseudo RPL18AP7 ribosomal protein L18a pseudogene 7 O - 20121230 -9606 100133039 LOC100133039 - - - 3 3p25.2 uncharacterized LOC100133039 unknown - - - - 20121230 -9606 100133040 PPP1R26P5 - KIAA0649P5 HGNC:42019 22 22q11.21 protein phosphatase 1, regulatory subunit 26 pseudogene 5 pseudo PPP1R26P5 protein phosphatase 1, regulatory subunit 26 pseudogene 5 O - 20121209 -9606 100133044 BCRP8 - - HGNC:39076 22 22q11.23 breakpoint cluster region pseudogene 8 pseudo BCRP8 breakpoint cluster region pseudogene 8 O - 20121230 -9606 100133046 KIR3DL3 XXbac-BPG525F11.1 - - 19 - killer cell immunoglobulin-like receptor three domains long cytoplasmic tail 3 protein-coding - - - - 20121209 -9606 100133050 LOC100133050 - - - 5 5q21.1 glucuronidase, beta pseudogene pseudo - - - - 20121230 -9606 100133053 CXorf51B - - HGNC:42787 X Xq27.3 chromosome X open reading frame 51B protein-coding CXorf51B chromosome X open reading frame 51B O uncharacterized protein LOC100133053 20121230 -9606 100133054 RPS9P3 - RPS9_1_598 HGNC:36635 5 5q21.1 ribosomal protein S9 pseudogene 3 pseudo RPS9P3 ribosomal protein S9 pseudogene 3 O - 20121230 -9606 100133059 LOC100133059 - - - 2 2q13 centromere protein N pseudogene pseudo - - - - 20121230 -9606 100133062 LOC100133062 - - - 9 9p24.3 chromosome 6 open reading frame 146 pseudogene pseudo - - - - 20121230 -9606 100133064 PPP1R26P2 - KIAA0649P2 HGNC:42016 22 22q11.21 protein phosphatase 1, regulatory subunit 26 pseudogene 2 pseudo PPP1R26P2 protein phosphatase 1, regulatory subunit 26 pseudogene 2 O - 20121230 -9606 100133073 LOC100133073 - - - 8 8p22 family with sequence similarity 175, member A pseudogene pseudo - - - - 20121230 -9606 100133074 SLC25A5P9 - - HGNC:35468 5 5q13.3 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 9 pseudo SLC25A5P9 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 pseudogene 9 O - 20121230 -9606 100133077 LOC100133077 - - - 9 9q34.3 uncharacterized LOC100133077 unknown - - - - 20121209 -9606 100133079 SLC25A1P2 - - HGNC:43847 7 7q11.21 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 pseudogene 2 pseudo SLC25A1P2 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 pseudogene 2 O - 20121230 -9606 100133087 VN1R18P - - HGNC:37334 2 2p16.3 vomeronasal 1 receptor 18 pseudogene pseudo VN1R18P vomeronasal 1 receptor 18 pseudogene O - 20121230 -9606 100133089 LOC100133089 - - - 10 10q11.23 uncharacterized LOC100133089 protein-coding - - - - 20120511 -9606 100133091 LOC100133091 - - - 7 7q11.23 uncharacterized LOC100133091 miscRNA - - - - 20121230 -9606 100133092 LOC100133092 - - - 7 7q11.21 P antigen family, member 4 (prostate associated) pseudogene pseudo - - - - 20121230 -9606 100133093 FAM25G RP11-301J7.1 FAM25A|FAM25B|FAM25C|bA301J7.4 HGNC:23590|Ensembl:ENSG00000197910|Vega:OTTHUMG00000018140 10 10q11.22 family with sequence similarity 25, member G protein-coding FAM25G family with sequence similarity 25, member G O protein FAM25|protein FAM25G 20121230 -9606 100133097 LOC100133097 - - - 4 4p11 uncharacterized LOC100133097 pseudo - - - - 20121209 -9606 100133100 RPL6P8 - RPL6_8_430 HGNC:37044 3 3q25.33 ribosomal protein L6 pseudogene 8 pseudo RPL6P8 ribosomal protein L6 pseudogene 8 O - 20121230 -9606 100133102 LOC100133102 - - - 6 6q14.3 ras-related C3 botulinum toxin substrate 2 (rho family, small GTP binding protein Rac2) pseudogene pseudo - - - - 20121230 -9606 100133103 RPL7L1P13 - - HGNC:44212 4 4q25 ribosomal protein L7-like 1 pseudogene 13 pseudo RPL7L1P13 ribosomal protein L7-like 1 pseudogene 13 O - 20121230 -9606 100133106 LOC100133106 UNQ9374 - - 5 5q35.1 VCEW9374 unknown - - - - 20121230 -9606 100133108 RPL13P10 - RPL13_2_647 HGNC:35943 5 5q35.3 ribosomal protein L13 pseudogene 10 pseudo RPL13P10 ribosomal protein L13 pseudogene 10 O - 20121230 -9606 100133121 FAM27B RP11-12A20.3 FAM27A2|bA12A20.3 HGNC:23667 9 9q13 family with sequence similarity 27, member B miscRNA FAM27B family with sequence similarity 27, member B O - 20121230 -9606 100133122 RBPJP7 - - HGNC:37487 9 9p11.2 RBPJ pseudogene 7 pseudo RBPJP7 RBPJ pseudogene 7 O - 20121209 -9606 100133123 LOC100133123 - - - X Xp22.2 uncharacterized LOC100133123 miscRNA - - - - 20121230 -9606 100133127 LOC100133127 - - - 16 16p13.11 geminin, DNA replication inhibitor pseudogene 1 pseudo - - - - 20121230 -9606 100133128 LOC100133128 - - - 4 4p16.1 Beta-defensin 108B-like protein-coding - - - - 20120511 -9606 100133130 LOC100133130 PRO1102 - - 10 10q11.22 PRO1102 protein-coding - - - - 20120318 -9606 100133131 LOC100133131 - - - 4 4p16.1 uncharacterized LOC100133131 unknown - - - - 20120710 -9606 100133137 LOC100133137 - - - 16 16p12.3 geminin, DNA replication inhibitor pseudogene 2 pseudo - - - - 20121230 -9606 100133139 RPL12P41 - RPL12_21_1660 HGNC:35999 19 19q13.32 ribosomal protein L12 pseudogene 41 pseudo RPL12P41 ribosomal protein L12 pseudogene 41 O - 20121230 -9606 100133140 LOC100133140 - - - 17 - carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 2-like pseudo - - - - 20121209 -9606 100133144 UBE2Q2P3 - - HGNC:37669 15 15q25.2 ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 3 pseudo UBE2Q2P3 ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 3 O - 20121230 -9606 100133145 LOC100133145 - - - 17 17q25.3 uncharacterized LOC100133145 protein-coding - - - - 20120511 -9606 100133147 LOC100133147 - - - 8 8q24.12 glucosamine-phosphate N-acetyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100133150 LOC100133150 - - - 3 3q29 uncharacterized LOC100133150 pseudo - - - - 20121209 -9606 100133160 LOC100133160 - - - 9 9p13.1 S-phase kinase-associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100133161 LOC100133161 - - - 11 11p15.5 uncharacterized LOC100133161 miscRNA - - - - 20121230 -9606 100133162 RPL32P34 - RPL32_22_1617 HGNC:35903 19 19p13.3 ribosomal protein L32 pseudogene 34 pseudo RPL32P34 ribosomal protein L32 pseudogene 34 O - 20121230 -9606 100133163 BCRP7 - - HGNC:39075 22 22q11.21 breakpoint cluster region pseudogene 7 pseudo BCRP7 breakpoint cluster region pseudogene 7 O - 20121230 -9606 100133165 LOC100133165 - - - 15 15q11.2 Dexi homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100133168 CCR12P - GPR183P1 HGNC:39812 13 13q32.3 chemokine (C-C motif) receptor 12, pseudogene pseudo CCR12P chemokine (C-C motif) receptor 12, pseudogene O - 20121230 -9606 100133170 RPL11P1 - RPL11_1_236 HGNC:37021 2 2p14 ribosomal protein L11 pseudogene 1 pseudo RPL11P1 ribosomal protein L11 pseudogene 1 O - 20121230 -9606 100133171 SPANXB2 RP3-376H23.2 SPANX|SPANXB HGNC:14330|Ensembl:ENSG00000227234|Vega:OTTHUMG00000022554 X Xq27.1 SPANX family, member B2 protein-coding SPANXB2 SPANX family, member B2 O CT11.2|SPAN-Xb protein|SPAN-Xf|SPANX family member B/F|SPANX family member B1|SPANX-B|SPANX-C|SPANX-F|cancer/testis antigen 11.2|hCG2036708|nuclear-associated protein SPAN-Xb|nuclear-associated protein SPAN-Xf|sperm protein associated with the nucleus on the X chromosome B/F|sperm protein associated with the nucleus, X chromosome, family member B2 20121230 -9606 100133172 FAM66A hCG_1990697 - HGNC:30444 8 8p23.1 family with sequence similarity 66, member A miscRNA FAM66A family with sequence similarity 66, member A O - 20121230 -9606 100133175 LRLE1 - - - 8 8p23.1 liver-related low express protein 1 unknown - - - - 20120511 -9606 100133177 LOC100133177 - - - 7 7p12.1 uncharacterized LOC100133177 pseudo - - - - 20121230 -9606 100133180 DDX3YP1 - - HGNC:42171 X Xq13.2 DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked pseudogene 1 pseudo DDX3YP1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked pseudogene 1 O - 20121230 -9606 100133182 LOC100133182 - - - 16 16q24.3 uncharacterized LOC100133182 protein-coding - - - - 20120318 -9606 100133183 LOC100133183 - - - 1 1q21.2 family with sequence similarity 91, member A1 pseudogene pseudo - - - - 20121230 -9606 100133189 CTSL1P7 RP11-144G6.11-001 CTSLL7|bA144G6.6 HGNC:23635 10 10q11.22 cathepsin L1 pseudogene 7 pseudo CTSL1P7 cathepsin L1 pseudogene 7 O - 20121230 -9606 100133190 LOC100133190 - - - 10 10q23.2 uncharacterized LOC100133190 miscRNA - - - - 20121230 -9606 100133193 RPL32P28 - RPL32_18_1316 HGNC:36328 13 13q21.31 ribosomal protein L32 pseudogene 28 pseudo RPL32P28 ribosomal protein L32 pseudogene 28 O - 20121230 -9606 100133203 LOC100133203 - - - 9 9p12 RAB28, member RAS oncogene family pseudogene pseudo - - - - 20121209 -9606 100133204 C9orf147 RP11-32M23.3 bA32M23.3 HGNC:31438 9 9q32 chromosome 9 open reading frame 147 unknown C9orf147 chromosome 9 open reading frame 147 O - 20121230 -9606 100133205 LINC00240 RP11-373D17.1 C6orf41|NCRNA00240|bA373D17.1 HGNC:18772 6 6p22.2 long intergenic non-protein coding RNA 240 miscRNA LINC00240 long intergenic non-protein coding RNA 240 O - 20121230 -9606 100133206 RBM22P5 - - HGNC:39698 9 9q21.13 RNA binding motif protein 22 pseudogene 5 pseudo RBM22P5 RNA binding motif protein 22 pseudogene 5 O - 20121230 -9606 100133207 LOC100133207 - - - 14 14q32.13 uncharacterized LOC100133207 unknown - - - - 20121230 -9606 100133210 COX6B1P7 - - HGNC:37677 1 1p31.3 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 7 pseudo COX6B1P7 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 7 O - 20121230 -9606 100133211 LOC100133211 - - - 1 1p32.3 related RAS viral (r-ras) oncogene homolog 2 pseudogene pseudo - - - - 20121230 -9606 100133212 FAM108A8P - - HGNC:38508 16 16p11.2 family with sequence similarity 108, member A8, pseudogene pseudo FAM108A8P family with sequence similarity 108, member A8, pseudogene O - 20121209 -9606 100133220 GOLGA6L3 - - HGNC:37441 15 15q25.3 golgin A6 family-like 3 protein-coding GOLGA6L3 golgin A6 family-like 3 O golgi autoantigen, golgin subfamily a, 6-like 3 20121230 -9606 100133222 RPL39P27 - RPL39_13_1220 HGNC:36114 12 12p12.1 ribosomal protein L39 pseudogene 27 pseudo RPL39P27 ribosomal protein L39 pseudogene 27 O - 20121230 -9606 100133225 LOC100133225 - - - 19 19q13.41 zinc finger, DHHC-type containing 7 pseudogene pseudo - - - - 20121230 -9606 100133234 SBF1P1 - - HGNC:31098 8 8q12.1 SET binding factor 1 pseudogene 1 pseudo SBF1P1 SET binding factor 1 pseudogene 1 O - 20121230 -9606 100133235 RPL26P14 - RPL26_7_282 HGNC:36184 2 2q22.3 ribosomal protein L26 pseudogene 14 pseudo RPL26P14 ribosomal protein L26 pseudogene 14 O - 20121230 -9606 100133244 LOC100133244 - - - 17 17q12 leucine rich repeat containing 37, member A3 pseudogene pseudo - - - - 20121230 -9606 100133251 LOC100133251 - - Ensembl:ENSG00000255378|Vega:OTTHUMG00000165398 8 8p23.1 uncharacterized LOC100133251 protein-coding - - - - 20121209 -9606 100133252 LOC100133252 - - - 7 7q32.3 zinc finger protein 131 pseudogene pseudo - - - - 20121230 -9606 100133255 RPS14P5 - RPS14_3_249 HGNC:36087 2 2p11.2 ribosomal protein S14 pseudogene 5 pseudo RPS14P5 ribosomal protein S14 pseudogene 5 O - 20121230 -9606 100133259 CBX1P5 - CBX9 HGNC:21006 3 3q26.1 chromobox homolog 1 pseudogene 5 pseudo CBX1P5 chromobox homolog 1 pseudogene 5 O - 20121230 -9606 100133261 LOC100133261 - - - 4 4q32.3 cysteine and histidine-rich domain (CHORD) containing 1 pseudogene pseudo - - - - 20121230 -9606 100133262 ATP6V0E1P3 - - HGNC:41937 2 2p22.3 ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 pseudogene 3 pseudo ATP6V0E1P3 ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 pseudogene 3 O - 20121230 -9606 100133265 BMS1P7 - BMS1LP7|bA164N7.1 HGNC:23655|Vega:OTTHUMG00000018163 10 10q11.22 BMS1 pseudogene 7 pseudo BMS1P7 BMS1 pseudogene 7 O - 20121230 -9606 100133267 LOC100133267 - - Ensembl:ENSG00000233050|Vega:OTTHUMG00000158721 8 8p23.1 defensin, beta 130-like protein-coding - - - beta-defensin 130-like 20121230 -9606 100133268 HAUS6P2 - - HGNC:43765 20 20q11.21 HAUS augmin-like complex, subunit 6 pseudogene 2 pseudo HAUS6P2 HAUS augmin-like complex, subunit 6 pseudogene 2 O - 20121230 -9606 100133273 RPL21P80 - RPL21_32_892 HGNC:35697 8 8p12 ribosomal protein L21 pseudogene 80 pseudo RPL21P80 ribosomal protein L21 pseudogene 80 O - 20121230 -9606 100133284 LOC100133284 - - - 13 13q12.13 striatin, calmodulin binding protein pseudogene pseudo - - - - 20121230 -9606 100133285 PCDH8P1 - - HGNC:39937 13 13q14.3 protocadherin 8 pseudogene 1 pseudo PCDH8P1 protocadherin 8 pseudogene 1 O - 20121230 -9606 100133286 LOC100133286 - - - 21 21q22.12 uncharacterized LOC100133286 miscRNA - - - - 20121230 -9606 100133294 RPL34P16 - RPL34_4_651 HGNC:37033 6 6p25.1 ribosomal protein L34 pseudogene 16 pseudo RPL34P16 ribosomal protein L34 pseudogene 16 O - 20121230 -9606 100133295 CNN2P5 - - HGNC:39530 9 9q13 calponin 2 pseudogene 5 pseudo CNN2P5 calponin 2 pseudogene 5 O - 20121230 -9606 100133299 LOC100133299 UNQ1870 - - 5 5p15.2 GALI1870 unknown - - - - 20121230 -9606 100133300 LOC100133300 - - - 9 9p12 FK506 binding protein 4, 59kDa pseudogene pseudo - - - - 20121230 -9606 100133301 LOC100133301 - - - 1 1p36.13 UPF0627 protein ENSP00000364708 protein-coding - - - - 20121230 -9606 100133302 LOC100133302 - - - 9 9p12 FK506 binding protein 4, 59kDa pseudogene pseudo - - - - 20121230 -9606 100133306 LOC100133306 - - - 11 11q13.3 uncharacterized LOC100133306 unknown - - - - 20120511 -9606 100133307 CYP1D1P RP11-71A24.3 CYP1A8P|CYP1D1 HGNC:39968 9 9q21.13 cytochrome P450, family 1, subfamily D, polypeptide 1, pseudogene pseudo CYP1D1P cytochrome P450, family 1, subfamily D, polypeptide 1, pseudogene O - 20121230 -9606 100133308 RSU1P2 - - HGNC:44391 10 10q11.21 Ras suppressor protein 1 pseudogene 2 pseudo RSU1P2 Ras suppressor protein 1 pseudogene 2 O - 20121230 -9606 100133309 LOC100133309 - - - 11 11q12.1 eukaryotic translation initiation factor 4A2 pseudogene pseudo - - - - 20121230 -9606 100133310 HMGB1P28 - - HGNC:39119 4 4p13 high mobility group box 1 pseudogene 28 pseudo HMGB1P28 high mobility group box 1 pseudogene 28 O - 20121230 -9606 100133311 HOXA-AS3 - - HGNC:43748 7 7p15.2 HOXA cluster antisense RNA 3 miscRNA HOXA-AS3 HOXA cluster antisense RNA 3 O - 20121230 -9606 100133312 LOC100133312 - - - 9 9p11.2 protein FAM27E3-like pseudo - - - - 20121209 -9606 100133314 SETP1 - SETP|SETP19 HGNC:19279 14 14q11.2 SET pseudogene 1 pseudo SETP1 SET pseudogene 1 O - 20121230 -9606 100133315 LOC100133315 - - - 11 11q13.4 transient receptor potential cation channel, subfamily C, member 2-like pseudo - - - - 20121230 -9606 100133316 LOC100133316 - - - 9 9q21.13 required for meiotic nuclear division 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100133317 LOC100133317 - - - 7 7p14.3 protein dpy-19 homolog 1-like pseudo - - - - 20121209 -9606 100133319 PRO1804 - - - 17 17q24.3 uncharacterized LOC100133319 miscRNA - - - - 20121017 -9606 100133321 KLF17P1 - - HGNC:41521 12 12q14.1 Kruppel-like factor 17 pseudogene 1 pseudo KLF17P1 Kruppel-like factor 17 pseudogene 1 O - 20121230 -9606 100133326 LOC100133326 - - - 3 3q29 serine/threonine-protein phosphatase 4 regulatory subunit 2-like pseudo - - - - 20121230 -9606 100133330 LOC100133330 - - - 9 9p13.1 RNA binding motif protein 17 pseudogene pseudo - - - - 20121230 -9606 100133331 LOC100133331 - - - 1 1p36.33 uncharacterized LOC100133331 miscRNA - - - - 20121230 -9606 100133398 LOC100133398 - - - - - selenoprotein K pseudogene pseudo - - - - 20120318 -9606 100133400 LOC100133400 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100133445 LOC100133445 - - - 1 1p36 uncharacterized LOC100133445 miscRNA - - - - 20121230 -9606 100133452 LOC100133452 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100133461 LOC100133461 - - - 4 - uncharacterized LOC100133461 miscRNA - - - - 20121230 -9606 100133467 LOC100133467 hCG_2045426 - - 4 - uncharacterized LOC100133467 unknown - - - - 20121017 -9606 100133478 LOC100133478 - - - 22 - mitochondrial carrier homolog 2-like pseudo - - - - 20121102 -9606 100133495 LOC100133495 - - - 4 - HERV-K_11q22.1 provirus ancestral Pol protein [Includes: Reverse transcriptase unknown - - - - 20121211 -9606 100133545 MRPL23-AS1 hCG_2045710 - HGNC:42812 11 11p15.5 MRPL23 antisense RNA 1 miscRNA MRPL23-AS1 MRPL23 antisense RNA 1 O - 20121230 -9606 100133612 LOC100133612 - - - 1 1p36.32 uncharacterized LOC100133612 miscRNA - - - - 20121230 -9606 100133616 LOC100133616 - - - 1 - uncharacterized LOC100133616 unknown - - - - 20120622 -9606 100133668 RPS27P24 - RPS27_10_1247 HGNC:37005 12 12q14.2 ribosomal protein S27 pseudogene 24 pseudo RPS27P24 ribosomal protein S27 pseudogene 24 O - 20121230 -9606 100133669 LOC100133669 hCG_1994695 - - 8 8q24.3 uncharacterized LOC100133669 miscRNA - - - - 20121230 -9606 100133683 LOC100133683 - - - 4 - hCG2042714-like unknown - - - - 20120622 -9606 100133746 LOC100133746 - - - 15 - uncharacterized LOC100133746 unknown - - - - 20121230 -9606 100133790 MUC3 - - - - - intestinal mucin-like protein-coding - - - - 20120710 -9606 100133791 ERV18-1 - - HGNC:41524 15 - endogenous retrovirus group 18, member 1 unknown ERV18-1 endogenous retrovirus group 18, member 1 O - 20120318 -9606 100133857 LOC100133857 - - - 20 - uncharacterized LOC100133857 unknown - - - - 20120508 -9606 100133862 LOC100133862 - - - Un - Ig heavy chain V-I region V35-like other - - - - 20121102 -9606 100133900 LOC100133900 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100133903 LOC100133903 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100133920 LOC100133920 - - - 2 2p11.1 uncharacterized LOC100133920 miscRNA - - - - 20121102 -9606 100133932 LOC100133932 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100133941 CD24 - CD24A HGNC:1645|MIM:600074 6 6q21 CD24 molecule protein-coding CD24 CD24 molecule O CD24 antigen (small cell lung carcinoma cluster 4 antigen)|signal transducer CD24 20121230 -9606 100133957 LOC100133957 - - - X - uncharacterized LOC100133957 miscRNA - - - - 20121230 -9606 100133985 LOC100133985 - - - 2 2p13.3 uncharacterized LOC100133985 miscRNA - - - - 20121230 -9606 100133991 MAP3K14-AS1 - - HGNC:44359 17 17q21.31 MAP3K14 antisense RNA 1 miscRNA MAP3K14-AS1 MAP3K14 antisense RNA 1 O - 20121230 -9606 100133995 LOC100133995 - - - 8 - uncharacterized LOC100133995 pseudo - - - - 20121102 -9606 100134015 UBOX5-AS1 - - HGNC:44111 20 - UBOX5 antisense RNA 1 miscRNA UBOX5-AS1 UBOX5 antisense RNA 1 O - 20121230 -9606 100134040 LOC100134040 - - - 7 7q36.1 uncharacterized LOC100134040 unknown - - - - 20121222 -9606 100134091 LOC100134091 - - - Un - protein FRG1B-like protein-coding - - - - 20121102 -9606 100134129 LOC100134129 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100134169 LOC100134169 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100134173 LOC100134173 - - - Un - dead end protein homolog 1-like pseudo - - - - 20121102 -9606 100134179 LOC100134179 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100134215 LOC100134215 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100134216 LOC100134216 - - - Un - uncharacterized LOC100134216 miscRNA - - - - 20121102 -9606 100134229 LOC100134229 - - - 7 7q34 uncharacterized LOC100134229 miscRNA - - - - 20121230 -9606 100134237 LOC100134237 - - - 1 - uncharacterized LOC100134237 unknown - - - - 20120508 -9606 100134240 LOC100134240 - - - 2 - uncharacterized LOC100134240 protein-coding - - - - 20120726 -9606 100134256 LOC100134256 - - - Un - Ig heavy chain V-III region VH26-like other - - - - 20121102 -9606 100134259 LOC100134259 - - - 2 2p21 uncharacterized LOC100134259 miscRNA - - - - 20121230 -9606 100134264 LOC100134264 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100134267 LOC100134267 - - - 17 - keratin-associated protein 4-8-like protein-coding - - - - 20121102 -9606 100134301 LOC100134301 - - - - - uncharacterized LOC100134301 protein-coding - - - - 20120318 -9606 100134317 LOC100134317 PP6455 - - 19 19q13.12 uncharacterized LOC100134317 miscRNA - - - - 20121230 -9606 100134340 LOC100134340 - - - Un - double homeobox protein 5-like pseudo - - - - 20121102 -9606 100134361 LOC100134361 - - - 22 - uncharacterized LOC100134361 miscRNA - - - - 20121209 -9606 100134362 LOC100134362 - - - 10 - 60S ribosomal protein L19-like pseudo - - - - 20121102 -9606 100134365 LOC100134365 - - - 2 - uncharacterized LOC100134365 miscRNA - - - - 20121102 -9606 100134368 LOC100134368 - - - 16 16p13.3 uncharacterized LOC100134368 miscRNA - - - - 20121230 -9606 100134391 LOC100134391 - - - 17 17q25.1 uncharacterized LOC100134391 miscRNA - - - - 20121230 -9606 100134409 LOC100134409 - - - Un - double homeobox protein 4-like protein-coding - - - - 20121102 -9606 100134412 LOC100134412 - - - Un - sodium/hydrogen exchanger 9B1-like pseudo - - - - 20121102 -9606 100134415 LOC100134415 - - - Un - zinc finger protein 717-like pseudo - - - - 20121102 -9606 100134423 LOC100134423 - - - 21 - uncharacterized LOC100134423 miscRNA - - - - 20121102 -9606 100134441 LOC100134441 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100134444 KCNJ18 - KIR2.6|TTPP2 HGNC:39080|MIM:613236 17 - potassium inwardly-rectifying channel, subfamily J, member 18 protein-coding KCNJ18 potassium inwardly-rectifying channel, subfamily J, member 18 O inward rectifier potassium channel 18|thyrotoxic periodic paralysis susceptibility ion channel 20121230 -9606 100134445 LOC100134445 - - - - - uncharacterized LOC100134445 unknown - - - - 20120508 -9606 100134507 LOC100134507 - - - 7 - metaxin 2 pseudogene pseudo - - - - 20121230 -9606 100134589 LOC100134589 - - - 7 - protein FAM27E2-like pseudo - - - - 20121102 -9606 100134663 LOC100134663 - - - 7 - uncharacterized LOC100134663 protein-coding - - - - 20121102 -9606 100134713 NDUFB2-AS1 - - HGNC:40396 7 7q34 NDUFB2 antisense RNA 1 miscRNA NDUFB2-AS1 NDUFB2 antisense RNA 1 O - 20121230 -9606 100134822 LOC100134822 - - - 7 - uncharacterized LOC100134822 unknown - - - - 20121230 -9606 100134868 LOC100134868 CTD-2514C3.1 - - 20 20p11.1 uncharacterized LOC100134868 miscRNA - - - - 20121209 -9606 100134869 UBE2Q2P2 - UBE2QP2 HGNC:37440 15 15q25 ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 2 pseudo UBE2Q2P2 ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 2 O - 20121209 -9606 100134934 TEN1 - C17orf106 HGNC:37242|MIM:613130|Ensembl:ENSG00000257949|Vega:OTTHUMG00000132686 17 17q25.1 TEN1 telomerase capping complex subunit homolog (S. cerevisiae) protein-coding TEN1 TEN1 telomerase capping complex subunit homolog (S. cerevisiae) O CST complex subunit TEN1|protein telomeric pathways with STN1 homolog|telomere length regulation protein TEN1 homolog|telomeric pathways in association with Stn1, number 1 20121230 -9606 100134937 LOC100134937 - - - 4 - uncharacterized LOC100134937 unknown - - - - 20120508 -9606 100134938 UPK3BL - UPLP HGNC:37278|Ensembl:ENSG00000267368|Vega:OTTHUMG00000165036 7 7q22.1 uroplakin 3B-like protein-coding UPK3BL uroplakin 3B-like O uroplakin-3-like protein|uroplakin-3b-like protein|uroplakin-like protein 20121230 -9606 100135063 LOC100135063 - - - 7 7q31.31 general transcription factor IIIA pseudogene pseudo - - - - 20121230 -9606 100135064 LOC100135064 - - - 9 9p24.1 general transcription factor IIIA pseudogene pseudo - - - - 20121230 -9606 100135756 ATG3P1 - AGP3|ATG3P|dJ54G6.1 HGNC:31123 20 20q12 autophagy related 3 pseudogene 1 pseudo ATG3P1 autophagy related 3 pseudogene 1 O - 20121230 -9606 100137047 JMJD7 hCG_37726 - HGNC:34397|Ensembl:ENSG00000168970|Ensembl:ENSG00000243789|Vega:OTTHUMG00000156810 15 15q15.1 jumonji domain containing 7 protein-coding JMJD7 jumonji domain containing 7 O jmjC domain-containing protein 7|jumonji domain-containing protein 7 20121230 -9606 100137049 PLA2G4B - HsT16992|cPLA2-beta HGNC:9036|MIM:606088|Ensembl:ENSG00000168970|Ensembl:ENSG00000243708|Vega:OTTHUMG00000156809 15 15q11.2-q21.3 phospholipase A2, group IVB (cytosolic) protein-coding PLA2G4B phospholipase A2, group IVB (cytosolic) O cytosolic phospholipase A2 beta|phospholipase A2 group IVB 20121230 -9606 100141515 C17orf99 UNQ464 - HGNC:34490|Ensembl:ENSG00000187997|Vega:OTTHUMG00000153871 17 17q25.3 chromosome 17 open reading frame 99 protein-coding C17orf99 chromosome 17 open reading frame 99 O GLPG464|uncharacterized protein C17orf99 20121230 -9606 100142659 CTAGE8 - - HGNC:37294 7 7q CTAGE family, member 8 unknown CTAGE8 CTAGE family, member 8 O - 20121021 -9606 100144434 EPOLM - ETOLM MIM:611631 9 9q21-q22 epilepsy, occipitotemporal lobe, and migraine with aura unknown - - - - 20120622 -9606 100144435 VTRNA3-1P - HVG4|HVGX|VAULTRC4|VTRNA3P|hvg-4 HGNC:23027 X Xp11.22 vault RNA 3-1, pseudogene pseudo VTRNA3-1P vault RNA 3-1, pseudogene O - 20121230 -9606 100144494 KDELC1P1 - - HGNC:39193 5 5q23.3 KDEL (Lys-Asp-Glu-Leu) containing 1 pseudogene 1 pseudo KDELC1P1 KDEL (Lys-Asp-Glu-Leu) containing 1 pseudogene 1 O - 20121230 -9606 100144595 LOC100144595 - - - 2 - uncharacterized LOC100144595 protein-coding - - - uncharacterized protein LOC100144595 20121230 -9606 100144596 LINC00029 RP11-305P22.7 C20orf51|NCRNA00029 HGNC:16184 20 20q13.33 long intergenic non-protein coding RNA 29 miscRNA LINC00029 long intergenic non-protein coding RNA 29 O - 20121230 -9606 100144597 LOC100144597 - - - 20 - uncharacterized LOC100144597 miscRNA - - - - 20121230 -9606 100144602 LOC100144602 - - - 4 - uncharacterized LOC100144602 miscRNA - - - - 20121230 -9606 100144603 LOC100144603 - - - 22 22q13.33 uncharacterized transcript miscRNA - - - - 20121230 -9606 100144604 LOC100144604 - - - 15 15q26.1 uncharacterized LOC100144604 miscRNA - - - - 20121230 -9606 100144631 PPP6CP - - HGNC:34077 X Xq22.3 protein phosphatase 6, catalytic subunit pseudogene pseudo PPP6CP protein phosphatase 6, catalytic subunit pseudogene O - 20121230 -9606 100144632 HPBP - - - - - phosphate binding apolipoprotein miscRNA - - - - 20120318 -9606 100144748 KLLN - KILLIN HGNC:37212|MIM:612105|Ensembl:ENSG00000227268 10 10q23 killin, p53-regulated DNA replication inhibitor protein-coding KLLN killin, p53-regulated DNA replication inhibitor O killin 20121230 -9606 100144878 LRRC53 hCG_1645854 - HGNC:25255 1 1p31.3 leucine rich repeat containing 53 protein-coding LRRC53 leucine rich repeat containing 53 O - 20121101 -9606 100147744 RNU7-1 - RNU7|U7.1 HGNC:34033 12 12p13.31 RNA, U7 small nuclear 1 snRNA RNU7-1 RNA, U7 small nuclear 1 O - 20121230 -9606 100147745 RNU7-2P - U7.2 HGNC:34098 2 2q22.3 RNA, U7 small nuclear 2 pseudogene pseudo RNU7-2P RNA, U7 small nuclear 2 pseudogene O - 20121230 -9606 100147746 RNU7-3P - U7.3 HGNC:34099 6 6q25.1 RNA, U7 small nuclear 3 pseudogene pseudo RNU7-3P RNA, U7 small nuclear 3 pseudogene O - 20121230 -9606 100147747 RNU7-4P - U7.4 HGNC:34100 12 12q15 RNA, U7 small nuclear 4 pseudogene pseudo RNU7-4P RNA, U7 small nuclear 4 pseudogene O - 20120720 -9606 100147748 RNU7-5P - U7.5 HGNC:34101 15 15q21.1 RNA, U7 small nuclear 5 pseudogene pseudo RNU7-5P RNA, U7 small nuclear 5 pseudogene O - 20121021 -9606 100147749 RNU7-6P - U7.6 HGNC:34102 20 20q13.2 RNA, U7 small nuclear 6 pseudogene pseudo RNU7-6P RNA, U7 small nuclear 6 pseudogene O - 20121230 -9606 100147750 RNU5B-2P - - HGNC:34182 3 3p22.1 RNA, U5B small nuclear 2, pseudogene pseudo RNU5B-2P RNA, U5B small nuclear 2, pseudogene O - 20121021 -9606 100147751 RNU5B-3P - - HGNC:34183 3 3p21.31 RNA, U5B small nuclear 3, pseudogene pseudo RNU5B-3P RNA, U5B small nuclear 3, pseudogene O - 20121230 -9606 100147752 RNU5B-4P - - HGNC:34184 5 5q31.2 RNA, U5B small nuclear 4, pseudogene pseudo RNU5B-4P RNA, U5B small nuclear 4, pseudogene O - 20121230 -9606 100147753 RNU5B-5P - - HGNC:34185 9 9q33.3 RNA, U5B small nuclear 5, pseudogene pseudo RNU5B-5P RNA, U5B small nuclear 5, pseudogene O - 20121230 -9606 100147754 RNU5B-6P - - HGNC:34186 10 10q25.1 RNA, U5B small nuclear 6, pseudogene pseudo RNU5B-6P RNA, U5B small nuclear 6, pseudogene O - 20121021 -9606 100147755 RNU7-7P - U7.7 HGNC:34103 X Xp11.4 RNA, U7 small nuclear 7 pseudogene pseudo RNU7-7P RNA, U7 small nuclear 7 pseudogene O - 20121230 -9606 100147756 RNU7-8P - U7.8 HGNC:34104 1 1p31.1 RNA, U7 small nuclear 8 pseudogene pseudo RNU7-8P RNA, U7 small nuclear 8 pseudogene O - 20121230 -9606 100147757 RNU7-9P - U7.9 HGNC:34105 2 2q36.3 RNA, U7 small nuclear 9 pseudogene pseudo RNU7-9P RNA, U7 small nuclear 9 pseudogene O - 20121230 -9606 100147758 RNU7-10P - U7.10 HGNC:34106 3 3p24.3 RNA, U7 small nuclear 10 pseudogene pseudo RNU7-10P RNA, U7 small nuclear 10 pseudogene O - 20121230 -9606 100147759 RNU7-11P - U7.11 HGNC:34107 4 4p14 RNA, U7 small nuclear 11 pseudogene pseudo RNU7-11P RNA, U7 small nuclear 11 pseudogene O - 20121230 -9606 100147760 RNU7-12P - U7.12 HGNC:34108 10 10p12.1 RNA, U7 small nuclear 12 pseudogene pseudo RNU7-12P RNA, U7 small nuclear 12 pseudogene O - 20121230 -9606 100147761 RNU7-13P - U7.13 HGNC:34109 1 1q25.3 RNA, U7 small nuclear 13 pseudogene pseudo RNU7-13P RNA, U7 small nuclear 13 pseudogene O - 20121230 -9606 100147762 RNU7-14P - U7.14 HGNC:34110 20 20q13.2 RNA, U7 small nuclear 14 pseudogene pseudo RNU7-14P RNA, U7 small nuclear 14 pseudogene O - 20121230 -9606 100147763 RNU7-15P - U7.15 HGNC:34111 5 5q31.1 RNA, U7 small nuclear 15 pseudogene pseudo RNU7-15P RNA, U7 small nuclear 15 pseudogene O - 20121230 -9606 100147764 RNU7-16P - U7.16 HGNC:34112 7 7q32.1 RNA, U7 small nuclear 16 pseudogene pseudo RNU7-16P RNA, U7 small nuclear 16 pseudogene O - 20121230 -9606 100147765 RNU7-17P - U7.17 HGNC:34113 18 18q11.2 RNA, U7 small nuclear 17 pseudogene pseudo RNU7-17P RNA, U7 small nuclear 17 pseudogene O - 20121230 -9606 100147766 RNU7-18P - U7.18 HGNC:34114 3 3q29 RNA, U7 small nuclear 18 pseudogene pseudo RNU7-18P RNA, U7 small nuclear 18 pseudogene O - 20121230 -9606 100147767 RNU7-19P - U7.19 HGNC:34115 3 3p13 RNA, U7 small nuclear 19 pseudogene pseudo RNU7-19P RNA, U7 small nuclear 19 pseudogene O - 20121230 -9606 100147768 RNU7-20P - U7.20 HGNC:34116 7 7q36.1 RNA, U7 small nuclear 20 pseudogene pseudo RNU7-20P RNA, U7 small nuclear 20 pseudogene O - 20121230 -9606 100147769 RNU7-21P - U7.21 HGNC:34117 9 9q34.13 RNA, U7 small nuclear 21 pseudogene pseudo RNU7-21P RNA, U7 small nuclear 21 pseudogene O - 20121230 -9606 100147770 RNU7-22P - U7.22 HGNC:34118 10 - RNA, U7 small nuclear 22 pseudogene pseudo RNU7-22P RNA, U7 small nuclear 22 pseudogene O - 20121230 -9606 100147771 RNU7-23P - U7.23 HGNC:34119 11 11q13.2 RNA, U7 small nuclear 23 pseudogene pseudo RNU7-23P RNA, U7 small nuclear 23 pseudogene O - 20121230 -9606 100147773 LOC100147773 - - - 1 - uncharacterized LOC100147773 unknown - - - - 20121230 -9606 100147811 CBX1P2 - - HGNC:38656 X Xp22 chromobox homolog 1 pseudogene 2 pseudo CBX1P2 chromobox homolog 1 pseudogene 2 O - 20121230 -9606 100147812 RNU7-25P - U7.25 HGNC:34121 18 18p11.31 RNA, U7 small nuclear 25 pseudogene pseudo RNU7-25P RNA, U7 small nuclear 25 pseudogene O - 20121230 -9606 100147813 RNU7-26P - U7.26 HGNC:34122 6 6p22.1 RNA, U7 small nuclear 26 pseudogene pseudo RNU7-26P RNA, U7 small nuclear 26 pseudogene O - 20121230 -9606 100147814 RNU7-27P - U7.27 HGNC:34123 7 7q32.1 RNA, U7 small nuclear 27 pseudogene pseudo RNU7-27P RNA, U7 small nuclear 27 pseudogene O - 20121230 -9606 100147815 RNU7-28P - U7.28 HGNC:34124 11 11p15.4 RNA, U7 small nuclear 28 pseudogene pseudo RNU7-28P RNA, U7 small nuclear 28 pseudogene O - 20121230 -9606 100147816 RNU7-29P - U7.29 HGNC:34125 1 1p35.3 RNA, U7 small nuclear 29 pseudogene pseudo RNU7-29P RNA, U7 small nuclear 29 pseudogene O - 20121230 -9606 100147817 RNU7-30P - U7.30 HGNC:34126 14 14q32.11 RNA, U7 small nuclear 30 pseudogene pseudo RNU7-30P RNA, U7 small nuclear 30 pseudogene O - 20121230 -9606 100147818 RNU7-31P - U7.31 HGNC:34127 17 17p13.2 RNA, U7 small nuclear 31 pseudogene pseudo RNU7-31P RNA, U7 small nuclear 31 pseudogene O - 20121021 -9606 100147819 RNU7-32P - U7.32 HGNC:34128 3 3q26.2 RNA, U7 small nuclear 32 pseudogene pseudo RNU7-32P RNA, U7 small nuclear 32 pseudogene O - 20121230 -9606 100147820 RNU7-33P - U7.33 HGNC:34129 4 4p16.3 RNA, U7 small nuclear 33 pseudogene pseudo RNU7-33P RNA, U7 small nuclear 33 pseudogene O - 20120720 -9606 100147821 RNU7-34P - U7.34 HGNC:34130 5 5q23.1 RNA, U7 small nuclear 34 pseudogene pseudo RNU7-34P RNA, U7 small nuclear 34 pseudogene O - 20121230 -9606 100147822 RNU7-35P - U7.35 HGNC:34131 7 7p14.1 RNA, U7 small nuclear 35 pseudogene pseudo RNU7-35P RNA, U7 small nuclear 35 pseudogene O - 20121230 -9606 100147823 RNU7-36P - U7.36 HGNC:34132 9 9p13.3 RNA, U7 small nuclear 36 pseudogene pseudo RNU7-36P RNA, U7 small nuclear 36 pseudogene O - 20121230 -9606 100147824 RNU7-37P - U7.37 HGNC:34133 X Xp11.22 RNA, U7 small nuclear 37 pseudogene pseudo RNU7-37P RNA, U7 small nuclear 37 pseudogene O - 20121021 -9606 100147825 RNU7-38P - U7.38 HGNC:34134 10 10q22.1 RNA, U7 small nuclear 38 pseudogene pseudo RNU7-38P RNA, U7 small nuclear 38 pseudogene O - 20121230 -9606 100147826 RNU7-39P - U7.39 HGNC:34135 12 12q13.12 RNA, U7 small nuclear 39 pseudogene pseudo RNU7-39P RNA, U7 small nuclear 39 pseudogene O - 20121230 -9606 100147827 RNU7-40P - U7.40 HGNC:34136 12 12q13.3 RNA, U7 small nuclear 40 pseudogene pseudo RNU7-40P RNA, U7 small nuclear 40 pseudogene O - 20121230 -9606 100147828 RNU7-41P - U7.41 HGNC:34137 14 14q13.2 RNA, U7 small nuclear 41 pseudogene pseudo RNU7-41P RNA, U7 small nuclear 41 pseudogene O - 20121230 -9606 100147829 RNU7-42P - U7.42 HGNC:34138 16 16q22.1 RNA, U7 small nuclear 42 pseudogene pseudo RNU7-42P RNA, U7 small nuclear 42 pseudogene O - 20121230 -9606 100147830 RNU7-43P - U7.43 HGNC:34139 17 17p13.1 RNA, U7 small nuclear 43 pseudogene pseudo RNU7-43P RNA, U7 small nuclear 43 pseudogene O - 20120720 -9606 100147831 RNU7-44P - U7.44 HGNC:34140 2 2q31.1 RNA, U7 small nuclear 44 pseudogene pseudo RNU7-44P RNA, U7 small nuclear 44 pseudogene O - 20121230 -9606 100147832 RNU7-45P - U7.45 HGNC:34141 2 2q33.1 RNA, U7 small nuclear 45 pseudogene pseudo RNU7-45P RNA, U7 small nuclear 45 pseudogene O - 20121230 -9606 100147833 RNU7-46P - U7.46 HGNC:34142 2 2q11.2 RNA, U7 small nuclear 46 pseudogene pseudo RNU7-46P RNA, U7 small nuclear 46 pseudogene O - 20121021 -9606 100147834 RNU7-47P - U7.47 HGNC:34143 3 3q23 RNA, U7 small nuclear 47 pseudogene pseudo RNU7-47P RNA, U7 small nuclear 47 pseudogene O - 20121230 -9606 100147835 RNU7-48P - U7.48 HGNC:34144 6 6q13 RNA, U7 small nuclear 48 pseudogene pseudo RNU7-48P RNA, U7 small nuclear 48 pseudogene O - 20121021 -9606 100147836 RNU7-49P - U7.49 HGNC:34145 11 11p15.2 RNA, U7 small nuclear 49 pseudogene pseudo RNU7-49P RNA, U7 small nuclear 49 pseudogene O - 20121230 -9606 100147837 RNU7-50P - U7.50 HGNC:34146 11 11p15.4 RNA, U7 small nuclear 50 pseudogene pseudo RNU7-50P RNA, U7 small nuclear 50 pseudogene O - 20121230 -9606 100151640 EXOSC3P1 - - HGNC:33989 21 21q22.11 exosome component 3 pseudogene 1 pseudo EXOSC3P1 exosome component 3 pseudogene 1 O - 20121230 -9606 100151641 PHKG1P4 - - HGNC:33918 7 7p11.2 phosphorylase kinase, gamma 1 pseudogene 4 pseudo PHKG1P4 phosphorylase kinase, gamma 1 pseudogene 4 O - 20121230 -9606 100151642 ATG12P1 - ATG12P HGNC:21466 17 17q25.1 autophagy related 12 pseudogene 1 pseudo ATG12P1 autophagy related 12 pseudogene 1 O - 20121230 -9606 100151643 KRTAP20-4 - KAP20.4 HGNC:34002 21 21q22.11 keratin associated protein 20-4 miscRNA KRTAP20-4 keratin associated protein 20-4 O - 20121230 -9606 100151644 OTSC8 - - HGNC:32939|MIM:612096 9 9p13.1-9q21.11 otosclerosis 8 unknown OTSC8 otosclerosis 8 O - 20120622 -9606 100151645 USF1P1 - USF1P HGNC:23773 21 21q22.11 upstream transcription factor 1 pseudogene 1 pseudo USF1P1 upstream transcription factor 1 pseudogene 1 O - 20121230 -9606 100151646 LETM1P3 - - HGNC:33986 8 8q22.2 leucine zipper-EF-hand containing transmembrane protein 1, pseudogene 3 pseudo LETM1P3 leucine zipper-EF-hand containing transmembrane protein 1, pseudogene 3 O - 20121230 -9606 100151647 RNU7-51P - U7.51 HGNC:34147 14 14q31.1 RNA, U7 small nuclear 51 pseudogene pseudo RNU7-51P RNA, U7 small nuclear 51 pseudogene O - 20121230 -9606 100151648 RNU7-52P - U7.52 HGNC:34148 17 17q23.2 RNA, U7 small nuclear 52 pseudogene pseudo RNU7-52P RNA, U7 small nuclear 52 pseudogene O - 20121230 -9606 100151649 RNU7-53P - U7.53 HGNC:34149 5 5q23.3 RNA, U7 small nuclear 53 pseudogene pseudo RNU7-53P RNA, U7 small nuclear 53 pseudogene O - 20121230 -9606 100151650 RNU7-54P - U7.54 HGNC:34150 7 7q32.1 RNA, U7 small nuclear 54 pseudogene pseudo RNU7-54P RNA, U7 small nuclear 54 pseudogene O - 20121230 -9606 100151651 RNU7-56P - U7.56 HGNC:34152 X Xp22.2 RNA, U7 small nuclear 56 pseudogene pseudo RNU7-56P RNA, U7 small nuclear 56 pseudogene O - 20121021 -9606 100151652 RNU7-57P - U7.57 HGNC:34153 1 1q21.3 RNA, U7 small nuclear 57 pseudogene pseudo RNU7-57P RNA, U7 small nuclear 57 pseudogene O - 20121230 -9606 100151653 RNU7-58P - U7.58 HGNC:34154 11 11q12.1 RNA, U7 small nuclear 58 pseudogene pseudo RNU7-58P RNA, U7 small nuclear 58 pseudogene O - 20121230 -9606 100151654 RNU7-59P - U7.59 HGNC:34155 11 11q14.1 RNA, U7 small nuclear 59 pseudogene pseudo RNU7-59P RNA, U7 small nuclear 59 pseudogene O - 20121021 -9606 100151655 RNU7-60P - U7.60 HGNC:34156 12 12p13.2 RNA, U7 small nuclear 60 pseudogene pseudo RNU7-60P RNA, U7 small nuclear 60 pseudogene O - 20121230 -9606 100151656 RNU7-61P - U7.61 HGNC:34157 16 16p11.2 RNA, U7 small nuclear 61 pseudogene pseudo RNU7-61P RNA, U7 small nuclear 61 pseudogene O - 20121230 -9606 100151657 RNU7-62P - U7.62 HGNC:34158 1 1p31.3 RNA, U7 small nuclear 62 pseudogene pseudo RNU7-62P RNA, U7 small nuclear 62 pseudogene O - 20121221 -9606 100151658 RNU7-63P - U7.63 HGNC:34159 16 16p13.2 RNA, U7 small nuclear 63 pseudogene pseudo RNU7-63P RNA, U7 small nuclear 63 pseudogene O - 20121230 -9606 100151661 CBX5P1 - - HGNC:38659 3 3p11.1 chromobox homolog 5 pseudogene 1 pseudo CBX5P1 chromobox homolog 5 pseudogene 1 O - 20121230 -9606 100151662 RNU7-64P - U7.64 HGNC:34160 2 2p11.2 RNA, U7 small nuclear 64 pseudogene pseudo RNU7-64P RNA, U7 small nuclear 64 pseudogene O - 20121230 -9606 100151663 RNU7-65P - U7.65 HGNC:34161 6 6p12.3 RNA, U7 small nuclear 65 pseudogene pseudo RNU7-65P RNA, U7 small nuclear 65 pseudogene O - 20121230 -9606 100151664 RNU7-66P - U7.66 HGNC:34162 6 6q12 RNA, U7 small nuclear 66 pseudogene pseudo RNU7-66P RNA, U7 small nuclear 66 pseudogene O - 20121021 -9606 100151665 RNU7-67P - U7.67 HGNC:34163 8 8q22.3 RNA, U7 small nuclear 67 pseudogene pseudo RNU7-67P RNA, U7 small nuclear 67 pseudogene O - 20121021 -9606 100151666 RNU7-69P - U7.69 HGNC:34165 X Xq25 RNA, U7 small nuclear 69 pseudogene pseudo RNU7-69P RNA, U7 small nuclear 69 pseudogene O - 20121230 -9606 100151667 RNU7-70P - U7.70 HGNC:34166 1 1p13.2 RNA, U7 small nuclear 70 pseudogene pseudo RNU7-70P RNA, U7 small nuclear 70 pseudogene O - 20121230 -9606 100151668 RNU7-71P - U7.71 HGNC:34167 16 16q22.2 RNA, U7 small nuclear 71 pseudogene pseudo RNU7-71P RNA, U7 small nuclear 71 pseudogene O - 20121230 -9606 100151669 RNU7-72P - U7.72 HGNC:34168 20 20q13.13 RNA, U7 small nuclear 72 pseudogene pseudo RNU7-72P RNA, U7 small nuclear 72 pseudogene O - 20121230 -9606 100151670 RNU7-73P - U7.73 HGNC:34169 3 3p22.2 RNA, U7 small nuclear 73 pseudogene pseudo RNU7-73P RNA, U7 small nuclear 73 pseudogene O - 20121230 -9606 100151671 RNU7-74P - U7.74 HGNC:34170 4 4p14 RNA, U7 small nuclear 74 pseudogene pseudo RNU7-74P RNA, U7 small nuclear 74 pseudogene O - 20121230 -9606 100151672 RNU7-75P - U7.75 HGNC:34171 5 5p13.2 RNA, U7 small nuclear 75 pseudogene pseudo RNU7-75P RNA, U7 small nuclear 75 pseudogene O - 20121230 -9606 100151673 RNU7-76P - U7.76 HGNC:34172 7 7p12.3 RNA, U7 small nuclear 76 pseudogene pseudo RNU7-76P RNA, U7 small nuclear 76 pseudogene O - 20121021 -9606 100151674 RNU7-77P - U7.77 HGNC:34173 10 10p11.21 RNA, U7 small nuclear 77 pseudogene pseudo RNU7-77P RNA, U7 small nuclear 77 pseudogene O - 20121230 -9606 100151675 RNU7-78P - U7.78 HGNC:34174 1 1q25.1 RNA, U7 small nuclear 78 pseudogene pseudo RNU7-78P RNA, U7 small nuclear 78 pseudogene O - 20120720 -9606 100151676 RNU7-79P - U7.79 HGNC:34175 15 15q25.3 RNA, U7 small nuclear 79 pseudogene pseudo RNU7-79P RNA, U7 small nuclear 79 pseudogene O - 20121230 -9606 100151677 RNU7-80P - U7.80 HGNC:34176 1 1p31.3 RNA, U7 small nuclear 80 pseudogene pseudo RNU7-80P RNA, U7 small nuclear 80 pseudogene O - 20121230 -9606 100151678 RNU7-81P - U7.81 HGNC:34177 2 2p16.1 RNA, U7 small nuclear 81 pseudogene pseudo RNU7-81P RNA, U7 small nuclear 81 pseudogene O - 20121230 -9606 100151679 RNU7-82P - U7.82 HGNC:34178 3 3q26.1 RNA, U7 small nuclear 82 pseudogene pseudo RNU7-82P RNA, U7 small nuclear 82 pseudogene O - 20121230 -9606 100151680 RNU7-83P - U7.83 HGNC:34179 7 7q31.1 RNA, U7 small nuclear 83 pseudogene pseudo RNU7-83P RNA, U7 small nuclear 83 pseudogene O - 20120720 -9606 100151681 RNU7-84P - U7.84 HGNC:34180 8 8q23.1 RNA, U7 small nuclear 84 pseudogene pseudo RNU7-84P RNA, U7 small nuclear 84 pseudogene O - 20121230 -9606 100151682 RNU7-85P - U7.85 HGNC:34181 8 8q21.13 RNA, U7 small nuclear 85 pseudogene pseudo RNU7-85P RNA, U7 small nuclear 85 pseudogene O - 20121230 -9606 100151683 RNU4ATAC - MOPD1|RNU4ATAC1|TALS|U4ATAC HGNC:34016|MIM:601428 2 2q14.2 RNA, U4atac small nuclear (U12-dependent splicing) snRNA RNU4ATAC RNA, U4atac small nuclear (U12-dependent splicing) O - 20121230 -9606 100151684 RNU6ATAC - RNU6ATAC1|U6ATAC HGNC:34017|MIM:601429 9 9q34.2 RNA, U6atac small nuclear (U12-dependent splicing) snRNA RNU6ATAC RNA, U6atac small nuclear (U12-dependent splicing) O - 20121230 -9606 100151685 RNU6ATAC2P - - HGNC:34092 5 5q11.2 RNA, U6atac small nuclear 2, pseudogene pseudo RNU6ATAC2P RNA, U6atac small nuclear 2, pseudogene O - 20121230 -9606 100151686 RNU6ATAC3P - - HGNC:34093 17 17q21.32 RNA, U6atac small nuclear 3, pseudogene pseudo RNU6ATAC3P RNA, U6atac small nuclear 3, pseudogene O - 20121230 -9606 100151687 RNU6ATAC4P - - HGNC:34094 3 3p22.2 RNA, U6atac small nuclear 4, pseudogene pseudo RNU6ATAC4P RNA, U6atac small nuclear 4, pseudogene O - 20121230 -9606 100151688 RNU6ATAC5P - - HGNC:34095 4 4q13.3 RNA, U6atac small nuclear 5, pseudogene pseudo RNU6ATAC5P RNA, U6atac small nuclear 5, pseudogene O - 20121230 -9606 100158257 NF1P7 - NF1L7 HGNC:34230 14 14q11.1 neurofibromin 1 pseudogene 7 pseudo NF1P7 neurofibromin 1 pseudogene 7 O - 20121209 -9606 100158258 NEK2P3 - - HGNC:37817 14 14q11.1 NEK2 pseudogene 3 pseudo NEK2P3 NEK2 pseudogene 3 O - 20121230 -9606 100158262 SCARNA9L - - HGNC:33559 X Xp22.12 small Cajal body-specific RNA 9-like miscRNA SCARNA9L small Cajal body-specific RNA 9-like O - 20121230 -9606 100169750 PRINS - NCRNA00074 HGNC:34235 10 10p12.1 psoriasis associated non-protein coding RNA induced by stress miscRNA PRINS psoriasis associated non-protein coding RNA induced by stress O - 20121021 -9606 100169751 RNA5S1 - RN5S1 HGNC:34362 1 1q42 RNA, 5S ribosomal 1 rRNA RNA5S1 RNA, 5S ribosomal 1 O - 20121230 -9606 100169752 LOC100169752 - - - 10 10q uncharacterized LOC100169752 miscRNA - - - - 20121230 -9606 100169753 RNA5S2 - RN5S2 HGNC:34363 1 1q42 RNA, 5S ribosomal 2 rRNA RNA5S2 RNA, 5S ribosomal 2 O - 20121230 -9606 100169754 RNA5S3 - RN5S3 HGNC:34364 1 1q42 RNA, 5S ribosomal 3 rRNA RNA5S3 RNA, 5S ribosomal 3 O - 20121230 -9606 100169755 RNA5S4 - RN5S4 HGNC:34365 1 1q42 RNA, 5S ribosomal 4 rRNA RNA5S4 RNA, 5S ribosomal 4 O - 20121209 -9606 100169756 RNA5S5 - RN5S5 HGNC:34366 1 1q42 RNA, 5S ribosomal 5 rRNA RNA5S5 RNA, 5S ribosomal 5 O - 20121209 -9606 100169757 RNA5S6 - RN5S6 HGNC:34367 1 1q42 RNA, 5S ribosomal 6 rRNA RNA5S6 RNA, 5S ribosomal 6 O - 20121209 -9606 100169758 RNA5S7 - RN5S7 HGNC:34368 1 1q42 RNA, 5S ribosomal 7 rRNA RNA5S7 RNA, 5S ribosomal 7 O - 20121230 -9606 100169759 RNA5S8 - RN5S8 HGNC:34369 1 1q42 RNA, 5S ribosomal 8 rRNA RNA5S8 RNA, 5S ribosomal 8 O - 20121209 -9606 100169760 RNA5S9 - RN5S9 HGNC:34370 1 1q42 RNA, 5S ribosomal 9 rRNA RNA5S9 RNA, 5S ribosomal 9 O - 20121230 -9606 100169761 RNA5S10 - RN5S10 HGNC:34371 1 1q42 RNA, 5S ribosomal 10 rRNA RNA5S10 RNA, 5S ribosomal 10 O - 20121230 -9606 100169762 RNA5S11 - RN5S11 HGNC:34372 1 1q42 RNA, 5S ribosomal 11 rRNA RNA5S11 RNA, 5S ribosomal 11 O - 20121230 -9606 100169763 RNA5S12 - RN5S12 HGNC:34373 1 1q42 RNA, 5S ribosomal 12 rRNA RNA5S12 RNA, 5S ribosomal 12 O - 20121230 -9606 100169764 RNA5S13 - RN5S13 HGNC:34374 1 1q42 RNA, 5S ribosomal 13 rRNA RNA5S13 RNA, 5S ribosomal 13 O - 20121209 -9606 100169765 RNA5S14 - RN5S14 HGNC:34375 1 1q42 RNA, 5S ribosomal 14 rRNA RNA5S14 RNA, 5S ribosomal 14 O - 20121209 -9606 100169766 RNA5S15 - RN5S15 HGNC:34376 1 1q42 RNA, 5S ribosomal 15 rRNA RNA5S15 RNA, 5S ribosomal 15 O - 20121209 -9606 100169767 RNA5S16 - RN5S16 HGNC:34377 1 1q42 RNA, 5S ribosomal 16 rRNA RNA5S16 RNA, 5S ribosomal 16 O - 20121230 -9606 100169768 RNA5S17 - RN5S17 HGNC:34378 1 1q42 RNA, 5S ribosomal 17 rRNA RNA5S17 RNA, 5S ribosomal 17 O - 20121230 -9606 100169834 RNY4P19 - - HGNC:34069 2 2q36.3 RNA, Ro-associated Y4 pseudogene 19 pseudo RNY4P19 RNA, Ro-associated Y4 pseudogene 19 O - 20121230 -9606 100169835 RNY5P7 - - HGNC:34088 10 10q24.31 RNA, Ro-associated Y5 pseudogene 7 pseudo RNY5P7 RNA, Ro-associated Y5 pseudogene 7 O - 20121230 -9606 100169836 RNY5P9 - - HGNC:34090 16 16q21 RNA, Ro-associated Y5 pseudogene 9 pseudo RNY5P9 RNA, Ro-associated Y5 pseudogene 9 O - 20121230 -9606 100169837 RNY5P10 - - HGNC:34091 19 19q13.12 RNA, Ro-associated Y5 pseudogene 10 pseudo RNY5P10 RNA, Ro-associated Y5 pseudogene 10 O - 20121230 -9606 100169850 RNY4P7 - - HGNC:34056 2 2q14.3 RNA, Ro-associated Y4 pseudogene 7 pseudo RNY4P7 RNA, Ro-associated Y4 pseudogene 7 O - 20121230 -9606 100169851 PATE3 hCG_2036778 HEL-127|PATE-DJ HGNC:35426|Ensembl:ENSG00000236027|Vega:OTTHUMG00000165857 11 11q24.2 prostate and testis expressed 3 protein-coding PATE3 prostate and testis expressed 3 O PATE-like protein DJ|acrosomal vesicle protein HEL-127|prostate and testis expressed protein 3|secreted TFP/Ly-6/uPAR protein PATE-DJ 20121230 -9606 100169881 MTPN-LUZP6 - - - 7 7q33 myotrophin, leucine zipper protein 6 transcription unit other - - - - 20121018 -9606 100169890 PEG3-AS1 - APEG3|NCRNA00155|PEG3-AS|PEG3AS HGNC:35127 19 19q13.43 PEG3 antisense RNA 1 miscRNA PEG3-AS1 PEG3 antisense RNA 1 O - 20121230 -9606 100169951 SNAR-A3 - - HGNC:34306 19 19q13.33 small ILF3/NF90-associated RNA A3 snRNA SNAR-A3 small ILF3/NF90-associated RNA A3 O - 20121209 -9606 100169952 SNAR-A5 - - HGNC:34308 19 19q13.33 small ILF3/NF90-associated RNA A5 snRNA SNAR-A5 small ILF3/NF90-associated RNA A5 O - 20121230 -9606 100169953 SNAR-A7 - - HGNC:34310 19 19q13.33 small ILF3/NF90-associated RNA A7 snRNA SNAR-A7 small ILF3/NF90-associated RNA A7 O - 20121209 -9606 100169954 SNAR-A11 - - HGNC:34314 19 19q13.33 small ILF3/NF90-associated RNA A11 snRNA SNAR-A11 small ILF3/NF90-associated RNA A11 O - 20121209 -9606 100169955 SNAR-A9 - - HGNC:34312 19 19q13.33 small ILF3/NF90-associated RNA A9 snRNA SNAR-A9 small ILF3/NF90-associated RNA A9 O - 20121209 -9606 100169956 SNAR-A4 - - HGNC:34307 19 19q13.33 small ILF3/NF90-associated RNA A4 snRNA SNAR-A4 small ILF3/NF90-associated RNA A4 O - 20121230 -9606 100169957 SNAR-A6 - - HGNC:34309 19 19q13.33 small ILF3/NF90-associated RNA A6 snRNA SNAR-A6 small ILF3/NF90-associated RNA A6 O - 20121209 -9606 100169958 SNAR-A8 - - HGNC:34311 19 19q13.33 small ILF3/NF90-associated RNA A8 snRNA SNAR-A8 small ILF3/NF90-associated RNA A8 O - 20121209 -9606 100169959 SNAR-A13 - - HGNC:34316 19 19q13.33 small ILF3/NF90-associated RNA A13 snRNA SNAR-A13 small ILF3/NF90-associated RNA A13 O - 20121209 -9606 100169989 DBIL5P2 - ELP1P HGNC:38518 2 2p15 diazepam binding inhibitor-like 5 pseudogene 2 pseudo DBIL5P2 diazepam binding inhibitor-like 5 pseudogene 2 O - 20121230 -9606 100170216 SNAR-A10 - - HGNC:34313 19 19q13.33 small ILF3/NF90-associated RNA A10 snRNA SNAR-A10 small ILF3/NF90-associated RNA A10 O - 20121209 -9606 100170217 SNAR-B2 - - HGNC:34318 19 19q13.33 small ILF3/NF90-associated RNA B2 snRNA SNAR-B2 small ILF3/NF90-associated RNA B2 O - 20121230 -9606 100170218 SNAR-C2 - - HGNC:34320 19 19q13.32 small ILF3/NF90-associated RNA C2 snRNA SNAR-C2 small ILF3/NF90-associated RNA C2 O - 20121230 -9606 100170219 SNAR-C4 - - HGNC:34322 19 19q13.32 small ILF3/NF90-associated RNA C4 snRNA SNAR-C4 small ILF3/NF90-associated RNA C4 O - 20121230 -9606 100170220 SNAR-E - - HGNC:34325 19 19q13.32 small ILF3/NF90-associated RNA E snRNA SNAR-E small ILF3/NF90-associated RNA E O - 20121230 -9606 100170221 SNAR-H - snaR-2 HGNC:34329 2 2p12 small ILF3/NF90-associated RNA H snRNA SNAR-H small ILF3/NF90-associated RNA H O - 20121230 -9606 100170222 SNAR-I - snaR-3 HGNC:34330 3 3q28 small ILF3/NF90-associated RNA I snRNA SNAR-I small ILF3/NF90-associated RNA I O - 20121230 -9606 100170223 SNAR-C5 - - HGNC:34323 19 19q13.32 small ILF3/NF90-associated RNA C5 snRNA SNAR-C5 small ILF3/NF90-associated RNA C5 O - 20121230 -9606 100170224 SNAR-B1 - - HGNC:34317 19 19q13.33 small ILF3/NF90-associated RNA B1 snRNA SNAR-B1 small ILF3/NF90-associated RNA B1 O - 20121230 -9606 100170225 SNAR-C1 - - HGNC:34319 19 19q13.32 small ILF3/NF90-associated RNA C1 snRNA SNAR-C1 small ILF3/NF90-associated RNA C1 O - 20121230 -9606 100170226 SNAR-C3 - - HGNC:34321 19 19q13.32 small ILF3/NF90-associated RNA C3 snRNA SNAR-C3 small ILF3/NF90-associated RNA C3 O - 20121230 -9606 100170227 SNAR-D - - HGNC:34324 19 19q13.33 small ILF3/NF90-associated RNA D snRNA SNAR-D small ILF3/NF90-associated RNA D O - 20121230 -9606 100170228 SNAR-G2 - - HGNC:34328 19 19q13.33 small ILF3/NF90-associated RNA G2 snRNA SNAR-G2 small ILF3/NF90-associated RNA G2 O - 20121230 -9606 100170229 SRRM5 - ZNF576 HGNC:37248|Ensembl:ENSG00000226763 19 19q13.31 serine/arginine repetitive matrix 5 protein-coding SRRM5 serine/arginine repetitive matrix 5 O serine/arginine repetitive matrix protein 5|zinc finger protein 576 20121230 -9606 100170765 C19orf69 - - HGNC:34497|Ensembl:ENSG00000204978 19 19q13.2 chromosome 19 open reading frame 69 protein-coding C19orf69 chromosome 19 open reading frame 69 O uncharacterized protein C19orf69 20121230 -9606 100170841 C17orf96 - - HGNC:34493|Ensembl:ENSG00000179294|Vega:OTTHUMG00000132343 17 17q12 chromosome 17 open reading frame 96 protein-coding C17orf96 chromosome 17 open reading frame 96 O Uncharacterized protein ENSP00000317905|uncharacterized protein C17orf96 20121230 -9606 100170939 LOC100170939 - - - 5 5q13 glucuronidase, beta pseudogene pseudo - - - - 20121230 -9606 100174857 GSTA4P - - - 6 6p12.1 glutathione S-transferase alpha 4 pseudogene pseudo - - - - 20121230 -9606 100174949 TRIM59-IFT80 - IFT80-L - 3 3q26.1 TRIM59-IFT80 protein protein-coding - - - - 20120318 -9606 100174950 LOC100174950 - - - 4 4q speckle-type POZ protein-like pseudogene pseudo - - - - 20121230 -9606 100187710 CRCS6 - - MIM:612231 8 8q23 colorectal cancer, susceptibility to, 6 unknown - - - - 20120622 -9606 100187711 CRCS7 - - MIM:612232 11 11q23 colorectal cancer, susceptibility to, 7 unknown - - - - 20120622 -9606 100187716 MIR1224 - MIRN1224 HGNC:33923|MIM:611620|miRBase:MI0003764 3 3q27.1 microRNA 1224 miscRNA MIR1224 microRNA 1224 O - 20121230 -9606 100187717 NNO3 - - MIM:611897 2 2q11-q14 nanophthalmos 3 unknown - - - - 20120622 -9606 100187724 AUTS14 - AUTS14A|C16DELp11.2|C16DUPp11.2|DUP16p11.2 MIM:611913 16 16p11.2 autism, susceptibility to, 14 unknown - - - - 20120622 -9606 100187725 LOC100187725 - - - 15 15q21.1 5-azacytidine induced 2 pseudogene pseudo - - - - 20121230 -9606 100187749 ASDP - - MIM:105563 - - anal sphincter dysplasia unknown - - - - 20120622 -9606 100187761 AN - - MIM:110350 - - blood group Ahonen unknown - - - - 20120318 -9606 100187828 HBD - - MIM:146350 - - hypophosphatemic bone disease unknown - - - - 20120318 -9606 100187907 TRAP - - MIM:190445 - - triiodothyronine receptor auxiliary protein protein-coding - - - - 20120318 -9606 100188011 DIP - - MIM:263000 - - interstitial pneumonitis, desquamative, familial unknown - - - - 20120318 -9606 100188278 FECD2 - FCD1 MIM:610158 13 13pter-q12.13 corneal dystrophy, Fuchs endothelial 2 unknown - - - - 20120622 -9606 100188314 AUTS12 - - MIM:610838 21 21p13-q11 autism, susceptibility to, 12 unknown - - - - 20120622 -9606 100188317 AUTS13 - - MIM:610908 12 12q14.2 autism, susceptibility to, 13 unknown - - - - 20120622 -9606 100188321 HYT8 - - MIM:611014 18 18q21.2 hypertension, essential, susceptibility to, 8 unknown - - - - 20120622 -9606 100188328 PNKD2 - - MIM:611147 2 2q31 paroxysmal nonkinesigenic dyskinesia 2 unknown - - - - 20120622 -9606 100188340 AOS - - MIM:100300 - - Adams-Oliver syndrome unknown - - - - 20120622 -9606 100188397 HLP - - MIM:144150 - - hyperkeratosis lenticularis perstans unknown - - - - 20120622 -9606 100188695 DA4 - - MIM:609128 - - arthrogryposis, distal, type 4 unknown - - - - 20120318 -9606 100188748 STHAG5 - - MIM:610926 10 10q tooth agenesis, selective, 5 unknown - - - - 20120622 -9606 100188754 AD14 - - MIM:611154 1 1q25 Alzheimer disease 14 unknown - - - - 20120622 -9606 100188765 CFTDX - - MIM:300580 X Xq13.1-q22.1 Myopathy, congenital, with fiber-type disproportion, X-linked unknown - - - - 20120622 -9606 100188767 AGSPX - - MIM:300652 X Xp11.3-q12 Angio serpiginosum unknown - - - - 20120622 -9606 100188768 SCAX5 - - MIM:300703 X Xq25-q27.1 Spinocerebellar ataxia, X-linked 5 unknown - - - - 20120622 -9606 100188769 HPCX2 - - MIM:300704 X Xp11.22 Prostate cancer, hereditary, X-linked 2 unknown - - - - 20120622 -9606 100188771 AGA2 - - MIM:300710 X Xq11-q12 Alopecia, androgenetic, 2 unknown - - - - 20120622 -9606 100188772 IHPS4 - - MIM:300711 X Xq23 Pyloric stenosis, infantile hypertrophic, 4 unknown - - - - 20120622 -9606 100188773 CFSS - - MIM:300712 X Xq26-q27 craniofacioskeletal syndrome unknown - - - - 20120622 -9606 100188774 DFCTRPS - - MIM:300719 X - Deafness, cataract, retinitis pigmentosa, and sperm abnormalities unknown - - - - 20120622 -9606 100188775 LOAS - - MIM:308905 X Xp11 Leber optic atrophy, susceptibility to unknown - - - - 20120622 -9606 100188776 HEY - - MIM:425500 Y Yq hairy ears, Y-linked unknown - - - - 20120318 -9606 100188782 NIDDM4 - - MIM:608036 5 5q34-q35.2 Diabetes mellitus, noninsulin-dependent unknown - - - - 20120622 -9606 100188784 AFA1 - MPB MIM:109200 3 3q26 Alopecia, androgenetic unknown - - - - 20120622 -9606 100188785 ITC1 - - MIM:145701 8 8q22 hypertrichosis universalis congenita, Ambras type unknown - - - - 20120318 -9606 100188787 WM1 - - MIM:153600 6 6p21.3 Macroglobulinemia, Waldenstrom, susceptibility to, 1 unknown - - - - 20120622 -9606 100188788 MICRODEL3Q29 - - MIM:609425 3 3q29 Chromosome 3q29 microdeletion syndrome unknown - - - - 20120622 -9606 100188789 HPC6 - - MIM:609558 22 22q12.3 Prostate cancer, susceptibility to unknown - - - - 20120622 -9606 100188790 MGR8 - - MIM:609570 5 5q21 Migraine, susceptibility to, 8 unknown - - - - 20120622 -9606 100188791 CLLS1 - - MIM:609630 11 11q13.3 Leukemia, chronic lymphocytic, susceptibility to, 1 unknown - - - - 20120622 -9606 100188792 MAFD3 - BPEO MIM:609633 21 21q22.13 Major affective disorder 3, early onset unknown - - - - 20120622 -9606 100188793 BSZQTL - - MIM:609656 17 17q23 Bone size QTL unknown - - - - 20120622 -9606 100188794 BSZQTL2 - - MIM:609657 5 5q Bone size QTL unknown - - - - 20120622 -9606 100188795 AD11 - - MIM:609790 9 9p22.1 Alzheimer disease-11 unknown - - - - 20120622 -9606 100188796 GEFSP4 - - MIM:609800 2 2p24 Epilepsy, generalized, with febrile seizures plus, type 4 unknown - - - - 20120622 -9606 100188797 BMND6 - - MIM:609876 21 21q22.13-qter Bone mineral density QTL 6 unknown - - - - 20120622 -9606 100188798 SLEB5 - - MIM:609903 13 13q32 Systemic lupus erythematosus, susceptibility to, 5 unknown - - - - 20120622 -9606 100188800 ASPG4 - - MIM:609954 3 3p24-p21 Asperger syndrome, susceptibility to, 4 unknown - - - - 20120622 -9606 100188801 ASRT3 - - MIM:609958 2 2p16 Asthma-related traits, susceptibility to, 3 unknown - - - - 20120622 -9606 100188802 ODS1 - - MIM:610064 17 - Opioid dependence, susceptibility to, 1 unknown - - - - 20120622 -9606 100188803 SLEB7 - - MIM:610065 20 20p12 Systemic lupus erythematosus, susceptibility to, 7 unknown - - - - 20120622 -9606 100188804 SLEB8 - - MIM:610066 20 20q13 Systemic lupus erythematosus, susceptibility to, 8 unknown - - - - 20120622 -9606 100188805 STBMS1 - - MIM:185100 7 7p22.1 Strabismus, susceptibility to, 1 unknown - - - - 20120622 -9606 100188806 HDLCQ4 - - MIM:610239 4 4q32.3 High density lipoprotein cholesterol level QTL 4 unknown - - - - 20120622 -9606 100188807 HYT5 - - MIM:610261 20 20q11-q13 Hypertension, essential, susceptibility to, 5 unknown - - - - 20120622 -9606 100188808 HYT6 - - MIM:610262 5 5p13-q12 Hypertension, essential, susceptibility to, 6 unknown - - - - 20120622 -9606 100188809 HPC7 - - MIM:610321 15 15q12 Prostate cancer, hereditary, 7 unknown - - - - 20120622 -9606 100188810 ANIB5 - - MIM:610402 2 2p15-q14 Aneurysm, intracranial berry, 5 unknown - - - - 20120622 -9606 100188811 WM2 - - MIM:610430 4 4q Macroglobulinemia, Waldenstrom, susceptibility to, 2 unknown - - - - 20120622 -9606 100188812 RLS3 - - MIM:610438 9 9p24-p22 Restless legs syndrome 3 unknown - - - - 20120622 -9606 100188813 RLS4 - - MIM:610439 2 2q33 Restless legs syndrome 4 unknown - - - - 20120622 -9606 100188814 RSTSS - - MIM:610543 16 16p13.3 Chromosome 16p13.3 deletion syndrome unknown - - - - 20120622 -9606 100188815 BSZQTL3 - - MIM:610649 8 8q24 Bone size quantitative trait locus 3 unknown - - - - 20120622 -9606 100188816 AUTS7 - - MIM:610676 17 17q21 Autism, susceptibility to, 7 unknown - - - - 20120622 -9606 100188817 CLQTL2 - - MIM:610760 2 2p24-p22 Cholesterol level QTL 2 unknown - - - - 20120622 -9606 100188818 HDLCQ5 - - MIM:610761 3 3q24-q26 High density lipoprotein cholesterol level QTL 5 unknown - - - - 20120622 -9606 100188819 HDLCQ6 - - MIM:610762 - - High density lipoprotein cholesterol level QTL 6 unknown - - - - 20120622 -9606 100188820 AUTS11 - - MIM:610836 1 1q24.2 Autism, susceptibility to, 11 unknown - - - - 20120622 -9606 100188821 GOA1 - - MIM:610839 2 2q33.3 Osteoarthritis, generalized, without dysplasia, susceptibility to unknown - - - - 20120622 -9606 100188822 MENAQ1 - - MIM:610873 22 22q13 Menarche, age at, QTL unknown - - - - 20120622 -9606 100188823 ASRT4 - - MIM:610906 1 1p31 Asthma-related traits, susceptibility to, 4 unknown - - - - 20120622 -9606 100188825 HYT7 - - MIM:610948 3 3p14.1-q12.3 Hypertension, essential, susceptibility to, 7 unknown - - - - 20120622 -9606 100188826 HPC9 - - MIM:610997 17 17q21-q22 Prostate cancer, hereditary, 9 unknown - - - - 20120622 -9606 100188827 SQTL1 - - MIM:611003 10 10q22 Smoking as a quantitative trait locus 1 unknown - - - - 20120622 -9606 100188828 SQTL2 - - MIM:611004 22 22q12 Smoking as a quantitative trait locus 2 unknown - - - - 20120622 -9606 100188829 MTBS2 - - MIM:611046 8 8q12-q13 Mycobacterium tuberculosis, susceptibility to, 2 unknown - - - - 20120622 -9606 100188830 AD12 - - MIM:611073 8 8p12-q22 Alzheimer disease 12 unknown - - - - 20120622 -9606 100188831 MRT5 - - HGNC:39146|MIM:611091 5 5p15-p14 mental retardation, non-syndromic, autosomal recessive, 5 unknown MRT5 mental retardation, non-syndromic, autosomal recessive, 5 O - 20120622 -9606 100188832 AUTS1 - - MIM:209850 7 7q22 Autism, susceptibility to, 1 unknown - - - - 20120622 -9606 100188834 HPC10 - - MIM:611100 8 8q24 Prostate cancer, hereditary, 10 unknown - - - - 20120622 -9606 100188835 CINN - - MIM:611109 4 4q32.3 Cinnamon odor, pleasantness of unknown - - - - 20120622 -9606 100188836 CHDS8 - - MIM:611139 9 9p21 Coronary heart disease, susceptibility to, 8 unknown - - - - 20120622 -9606 100188837 AD13 - - MIM:611152 1 1q21 Alzheimer disease-13 unknown - - - - 20120622 -9606 100188838 AD15 - - MIM:611155 3 3q22-q24 Alzheimer disease-15 unknown - - - - 20120622 -9606 100188839 RLS5 - - MIM:611242 20 20p13 Restless legs syndrome, susceptibility to, 5 unknown - - - - 20120622 -9606 100188840 ASRT6 - - MIM:611403 17 17q21 Asthma-related traits, susceptibility to, 6 unknown - - - - 20120622 -9606 100188841 CRCS2 - - MIM:611469 8 8q24 Colorectal cancer, susceptibility to, 2 unknown - - - - 20120622 -9606 100188842 ATFB5 - - MIM:611494 4 4q25 Atrial fibrillation, familial, 5 unknown - - - - 20120622 -9606 100188843 MAFD5 - - MIM:611535 2 2q22-q24 Major affective disorder 5 unknown - - - - 20120622 -9606 100188844 MAFD6 - BPAD MIM:611536 6 6q23-q24 Major affective disorder 6 unknown - - - - 20120622 -9606 100188845 CODA - - MIM:611543 12 12q Cavitary optic disc anomalies unknown - - - - 20120622 -9606 100188846 CELIAC6 - AIS5 MIM:611598 4 4q27 Celiac disease, susceptibility to, 6 unknown - - - - 20120622 -9606 100188847 MIR1225 - MIRN1225 HGNC:33931|MIM:611621|miRBase:MI0006311 16 16p13.3 microRNA 1225 miscRNA MIR1225 microRNA 1225 O - 20121230 -9606 100188848 FMTLE - ETL3 MIM:611630 4 4q13.2-q21.3 Epilepsy, familial mesial temporal lobe unknown - - - - 20120622 -9606 100188849 FEB9 - - MIM:611634 3 3p24.2-p23 Febrile convulsions, familial, 9 unknown - - - - 20120622 -9606 100188850 HSCR9 - - MIM:611644 4 4q31.3-q32.3 Hirschsprung disease, susceptibility to, 9 unknown - - - - 20120622 -9606 100188851 MGR12 - - MIM:611706 10 10q22-q23 Migraine, with or without aura, susceptibility to, 12 unknown - - - - 20120622 -9606 100188852 SHEP8 - - MIM:611724 6 6p25.3 Skin/hair/eye pigmentation 8, freckling unknown - - - - 20120622 -9606 100188853 BMND7 - - MIM:611738 20 20p12.3 Osteoporosis unknown - - - - 20120622 -9606 100188854 BMND8 - - MIM:611739 11 11p12 Osteoporosis unknown - - - - 20120622 -9606 100188855 MNDEC - - MIM:611863 4 4p16-p15 Microtia with nasolacrimal duct imperforation and eye coloboma unknown - - - - 20120622 -9606 100188856 C22DDELS - C22DELq11.2 MIM:611867 22 22q11.2 Chromosome 22q11.2 deletion syndrome, distal unknown - - - - 20121118 -9606 100188857 AAA3 - - MIM:611891 9 9p21 Aneurysm, familial abdominal 3 unknown - - - - 20120622 -9606 100188858 ANIB6 - - MIM:611892 9 9p21 Aneurysm, intracranial berry, 6 unknown - - - - 20120622 -9606 100188859 EA7 - - MIM:611907 19 19q13 Episodic ataxia, type 7 unknown - - - - 20120622 -9606 100188860 CPROTQ - - MIM:611920 10 10q23-q24 C-reactive protein QTL unknown - - - - 20120622 -9606 100188861 EIG5 - - MIM:611934 10 10p11.22 Epilepsy, idiopathic generalized, susceptibility to, 5 unknown - - - - 20120622 -9606 100188862 DUP3Q29 - MICRODUP3Q29 MIM:611936 3 3q29 chromosome 3q29 microduplication syndrome unknown - - - - 20120622 -9606 100188863 ENDO1 - - MIM:131200 10 10q26 Endometriosis, susceptibility to, 1 unknown - - - - 20120622 -9606 100188864 IH - HHP MIM:235000 11 11p15 Hemihypertrophy unknown - - - - 20120622 -9606 100188865 LMPH1B - - MIM:611944 6 6q16.2-q22.1 Lymphedema, hereditary, IB unknown - - - - 20120622 -9606 100188867 HPC14 - - MIM:611958 11 11q13 Prostate cancer, hereditary, 14 unknown - - - - 20120622 -9606 100188868 HPC15 - - MIM:611959 19 19q13.4 Prostate cancer, hereditary, 15 unknown - - - - 20120622 -9606 100188869 MICRODEL15Q13.3 - EIG7|SCZD13 MIM:612001 15 15q13.3 Chromosome 15q13.3 microdeletion syndrome unknown - - - - 20120622 -9606 100188870 CELIAC8 - - MIM:612006 2 2q11-q12 Celiac disease, susceptibility to, 8 unknown - - - - 20120622 -9606 100188871 CELIAC9 - - MIM:612007 3 3p21 Celiac disease, susceptibility to, 9 unknown - - - - 20120622 -9606 100188872 CELIAC10 - - MIM:612008 3 3q25-q26 Celiac disease, susceptibility to, 10 unknown - - - - 20120622 -9606 100188873 CELIAC11 - - MIM:612009 3 3q28 Celiac disease, susceptibility to, 11 unknown - - - - 20120622 -9606 100188874 CELIAC12 - - MIM:612010 6 6q25.3 Celiac disease, susceptibility to, 12 unknown - - - - 20120622 -9606 100188875 CELIAC13 - - MIM:612011 12 12q24 Celiac disease, susceptibility to, 13 unknown - - - - 20120622 -9606 100188876 IHPS3 - - MIM:612017 11 11q14-q22 Pyloric stenosis, infantile hypertrophic, 3 unknown - - - - 20120622 -9606 100188877 CHDS9 - - MIM:612030 8 8p22 Coronary heart disease, suscpetibility to, 9 unknown - - - - 20120622 -9606 100188880 HPRHP - - MIM:612089 13 13q13.1 Hypophosphatemic rickets and hyperparathyroidism unknown - - - - 20120622 -9606 100188881 MFT2 - TEM MIM:612099 9 9p21 Trichoepithelioma, multiple familial, 2 unknown - - - - 20120622 -9606 100188882 BMND9 - - MIM:612110 13 13q14 Bone mineral density QTL 9 unknown - - - - 20120622 -9606 100188883 BMND10 - - MIM:612113 8 8q24 Bone mineral density QTL 10 unknown - - - - 20120622 -9606 100188884 BMND11 - - MIM:612114 6 6q25 Bone mineral density QTL 11 unknown - - - - 20120622 -9606 100188885 ANIB7 - - MIM:612161 11 11q24-q25 Aneurysm, intracranial berry, 7 unknown - - - - 20120622 -9606 100188886 ANIB8 - - MIM:612162 14 14q23 Aneurysm, intracranial berry, 8 unknown - - - - 20120622 -9606 100188887 CRCS5 - - MIM:612230 10 10p14 Colorectal cancer, susceptibility to, 5 unknown - - - - 20120622 -9606 100188891 ZNF123P - HZF-1|ZNF123 HGNC:12906|MIM:194630 11 11q24.3 zinc finger protein 123, pseudogene pseudo ZNF123P zinc finger protein 123, pseudogene O - 20121230 -9606 100188893 TOMM6 - OBTP HGNC:34528|Ensembl:ENSG00000214736|Vega:OTTHUMG00000137505 6 6p21.1 translocase of outer mitochondrial membrane 6 homolog (yeast) protein-coding TOMM6 translocase of outer mitochondrial membrane 6 homolog (yeast) O mitochondrial import receptor subunit TOM6 homolog|over-expressed breast tumor protein|overexpressed breast tumor protein|translocase of outer membrane 6 kDa subunit homolog 20121230 -9606 100188917 ESP33 - - - 9 9q34.3 uncharacterized locus ESP33 unknown - - - - 20121230 -9606 100188945 LOC100188945 - - - 1 1p cell division cycle associated 4 pseudogene pseudo - - - - 20121230 -9606 100188947 LOC100188947 - - - 10 10q23.32 uncharacterized LOC100188947 miscRNA - - - - 20121230 -9606 100188949 LINC00426 RP11-374F3.4 - HGNC:42761 13 13q12.3 long intergenic non-protein coding RNA 426 miscRNA LINC00426 long intergenic non-protein coding RNA 426 O - 20121230 -9606 100188952 IBD12 - - MIM:612241 3 3p21.3 Inflammatory bowel disease 12 unknown - - - - 20120622 -9606 100188953 LINC00092 - NCRNA00092|bA346B7.1 HGNC:31408 9 9q22.32 long intergenic non-protein coding RNA 92 miscRNA LINC00092 long intergenic non-protein coding RNA 92 O - 20121230 -9606 100188954 DNMBP-AS1 - NCRNA00093|bA287G8.2 HGNC:20431 10 10q24.2 DNMBP antisense RNA 1 miscRNA DNMBP-AS1 DNMBP antisense RNA 1 O - 20121230 -9606 100188985 TRNAG6 - - HGNC:34533 16 16q22.1 transfer RNA glycine 6 (anticodon GCC) tRNA TRNAG6 transfer RNA glycine 6 (anticodon GCC) O - 20121230 -9606 100188986 TRNAH1 - - HGNC:34536 15 - transfer RNA histidine 1 (anticodon GUG) tRNA TRNAH1 transfer RNA histidine 1 (anticodon GUG) O - 20121230 -9606 100188987 TRNAH3 - - HGNC:34538 6 - transfer RNA histidine 3 (anticodon GUG) tRNA TRNAH3 transfer RNA histidine 3 (anticodon GUG) O - 20121230 -9606 100188988 TRNAH2 - - HGNC:34537 15 - transfer RNA histidine 2 (anticodon GUG) tRNA TRNAH2 transfer RNA histidine 2 (anticodon GUG) O - 20121230 -9606 100188989 TRNAU3 - - HGNC:34525 17 17q21.1 transfer RNA selenocysteine 3 (anticodon UCA) tRNA TRNAU3 transfer RNA selenocysteine 3 (anticodon UCA) O - 20120318 -9606 100188990 TRNAV5 - - HGNC:34542 5 - transfer RNA valine 5 (anticodon AAC) tRNA TRNAV5 transfer RNA valine 5 (anticodon AAC) O - 20121230 -9606 100188991 TRNAH4 - - HGNC:34535 1 1q21.1 transfer RNA histidine 4 (anticodon GUG) tRNA TRNAH4 transfer RNA histidine 4 (anticodon GUG) O - 20121230 -9606 100188992 TRNAV10 - - HGNC:34543 5 - transfer RNA valine 10 (anticodon AAC) tRNA TRNAV10 transfer RNA valine 10 (anticodon AAC) O - 20121230 -9606 100188993 TRNAV11 - - HGNC:34544 11 - transfer RNA valine 11 (anticodon UAC) tRNA TRNAV11 transfer RNA valine 11 (anticodon UAC) O - 20121230 -9606 100188994 TRNAD2 - - HGNC:34551 9 - transfer RNA aspartic acid 2 (anticodon GUC) tRNA TRNAD2 transfer RNA aspartic acid 2 (anticodon GUC) O - 20120318 -9606 100188995 TRNAK4 - - HGNC:34552 18 - transfer RNA lysine 4 (anticodon CUU) tRNA TRNAK4 transfer RNA lysine 4 (anticodon CUU) O - 20121230 -9606 100188996 TRNAN4 - - HGNC:34553 1 - transfer RNA asparagine 4 (anticodon GUU) tRNA TRNAN4 transfer RNA asparagine 4 (anticodon GUU) O - 20120318 -9606 100188997 TRNAG7 - - HGNC:34554 1 - transfer RNA glycine 7 (anticodon UCC) tRNA TRNAG7 transfer RNA glycine 7 (anticodon UCC) O - 20121230 -9606 100188998 TRNAQ3 - - HGNC:34555 1 - transfer RNA glutamine 3 (anticodon CUG) tRNA TRNAQ3 transfer RNA glutamine 3 (anticodon CUG) O - 20121230 -9606 100188999 TRNAK5 - - HGNC:34556 11 - transfer RNA lysine 5 (anticodon CUU) tRNA TRNAK5 transfer RNA lysine 5 (anticodon CUU) O - 20120318 -9606 100189000 TRNAE3 - - HGNC:34557 1 - transfer RNA glutamic acid 3 (anticodon UUC) tRNA TRNAE3 transfer RNA glutamic acid 3 (anticodon UUC) O - 20120318 -9606 100189001 TRNAY3 - - HGNC:34558 14 - transfer RNA tyrosine 3 (anticodon GUA) tRNA TRNAY3 transfer RNA tyrosine 3 (anticodon GUA) O - 20121230 -9606 100189002 TRNAS5 - - HGNC:34559 6 - transfer RNA serine 5 (anticodon GCU) tRNA TRNAS5 transfer RNA serine 5 (anticodon GCU) O - 20121230 -9606 100189003 TRNAL3 - - HGNC:34560 1 - transfer RNA leucine 3 (anticodon CAA) tRNA TRNAL3 transfer RNA leucine 3 (anticodon CAA) O - 20121230 -9606 100189004 TRNAL4 - - HGNC:34561 5 - transfer RNA leucine 4 (anticodon AAG) tRNA TRNAL4 transfer RNA leucine 4 (anticodon AAG) O - 20121230 -9606 100189005 TRNAN5 - - HGNC:34562 1 - transfer RNA asparagine 5 (anticodon GUU) tRNA TRNAN5 transfer RNA asparagine 5 (anticodon GUU) O - 20121230 -9606 100189006 TRNAT4 - - HGNC:34563 19 - transfer RNA threonine 4 (anticodon AGU) tRNA TRNAT4 transfer RNA threonine 4 (anticodon AGU) O - 20121230 -9606 100189007 TRNAE4 - - HGNC:34564 13 - transfer RNA glutamic acid 4 (anticodon CUC) tRNA TRNAE4 transfer RNA glutamic acid 4 (anticodon CUC) O - 20120318 -9606 100189008 TRNAC2 - - HGNC:34566 7 - transfer RNA cysteine 2 (anticodon GCA) tRNA TRNAC2 transfer RNA cysteine 2 (anticodon GCA) O - 20121230 -9606 100189009 TRNAL5 - - HGNC:34568 1 - transfer RNA leucine 5 (anticodon CAG) tRNA TRNAL5 transfer RNA leucine 5 (anticodon CAG) O - 20121230 -9606 100189010 TRNAQ5 - - HGNC:34569 6 - transfer RNA glutamine 5 (anticodon UUG) tRNA TRNAQ5 transfer RNA glutamine 5 (anticodon UUG) O - 20120318 -9606 100189011 TRNAG8 - - HGNC:34570 1 - transfer RNA glycine 8 (anticodon UCC) tRNA TRNAG8 transfer RNA glycine 8 (anticodon UCC) O - 20121230 -9606 100189012 TRNAR5 - - HGNC:34571 6 - transfer RNA arginine 5 (anticodon UCU) tRNA TRNAR5 transfer RNA arginine 5 (anticodon UCU) O - 20121230 -9606 100189013 TRNAK6 - - HGNC:34572 15 - transfer RNA lysine 6 (anticodon CUU) tRNA TRNAK6 transfer RNA lysine 6 (anticodon CUU) O - 20121230 -9606 100189014 TRNAV12 - - HGNC:34573 6 - transfer RNA valine 12 (anticodon AAC) tRNA TRNAV12 transfer RNA valine 12 (anticodon AAC) O - 20121230 -9606 100189015 TRNAM3 - - HGNC:34574 1 - transfer RNA methionine 3 (anticodon CAU) tRNA TRNAM3 transfer RNA methionine 3 (anticodon CAU) O - 20121230 -9606 100189016 TRNAQ6 - - HGNC:34575 9 - transfer RNA glutamine 6 (anticodon CUG) tRNA TRNAQ6 transfer RNA glutamine 6 (anticodon CUG) O - 20120318 -9606 100189017 TRNAE5 - - HGNC:34576 1 - transfer RNA glutamic acid 5 (anticodon CUC) tRNA TRNAE5 transfer RNA glutamic acid 5 (anticodon CUC) O - 20121230 -9606 100189018 TRNAL6 - - HGNC:34577 1 - transfer RNA leucine 6 (anticodon CAG) tRNA TRNAL6 transfer RNA leucine 6 (anticodon CAG) O - 20121230 -9606 100189019 TRNAP4 - - HGNC:34578 1 - transfer RNA proline 4 (anticodon AGG) tRNA TRNAP4 transfer RNA proline 4 (anticodon AGG) O - 20121230 -9606 100189020 TRNAP5 - - HGNC:34579 16 - transfer RNA proline 5 (anticodon AGG) tRNA TRNAP5 transfer RNA proline 5 (anticodon AGG) O - 20121230 -9606 100189021 TRNAA4 - - HGNC:34580 2 - transfer RNA alanine 4 (anticodon CGC) tRNA TRNAA4 transfer RNA alanine 4 (anticodon CGC) O - 20121230 -9606 100189022 TRNAY4 - - HGNC:34581 2 - transfer RNA tyrosine 4 (anticodon GUA) tRNA TRNAY4 transfer RNA tyrosine 4 (anticodon GUA) O - 20121230 -9606 100189024 TRNAE6 - - HGNC:34583 6 - transfer RNA glutamic acid 6 (anticodon CUC) tRNA TRNAE6 transfer RNA glutamic acid 6 (anticodon CUC) O - 20121230 -9606 100189025 TRNAR6 - - HGNC:34584 9 - transfer RNA arginine 6 (anticodon UCG) tRNA TRNAR6 transfer RNA arginine 6 (anticodon UCG) O - 20121230 -9606 100189026 TRNAQ7 - - HGNC:34585 4 - transfer RNA glutamine 7 (anticodon UUG) tRNA TRNAQ7 transfer RNA glutamine 7 (anticodon UUG) O - 20120318 -9606 100189028 TRNAI2 - - HGNC:34587 6 - transfer RNA isoleucine 2 (anticodon UAU) tRNA TRNAI2 transfer RNA isoleucine 2 (anticodon UAU) O - 20121230 -9606 100189029 TRNAC3 - - HGNC:34588 7 - transfer RNA cysteine 3 (anticodon GCA) tRNA TRNAC3 transfer RNA cysteine 3 (anticodon GCA) O - 20121230 -9606 100189030 TRNAE7 - - HGNC:34589 13 - transfer RNA glutamic acid 7 (anticodon UUC) tRNA TRNAE7 transfer RNA glutamic acid 7 (anticodon UUC) O - 20121230 -9606 100189031 TRNAE8 - - HGNC:34590 1 - transfer RNA glutamic acid 8 (anticodon UUC) tRNA TRNAE8 transfer RNA glutamic acid 8 (anticodon UUC) O - 20120318 -9606 100189032 TRNAL7 - - HGNC:34591 16 - transfer RNA leucine 7 (anticodon UAG) tRNA TRNAL7 transfer RNA leucine 7 (anticodon UAG) O - 20121230 -9606 100189033 TRNAA5 - - HGNC:34592 6 - transfer RNA alanine 5 (anticodon CGC) tRNA TRNAA5 transfer RNA alanine 5 (anticodon CGC) O - 20121230 -9606 100189034 TRNAR7 - - HGNC:34593 6 - transfer RNA arginine 7 (anticodon UCG) tRNA TRNAR7 transfer RNA arginine 7 (anticodon UCG) O - 20121230 -9606 100189035 TRNAT5 - - HGNC:34594 6 - transfer RNA threonine 5 (anticodon CGU) tRNA TRNAT5 transfer RNA threonine 5 (anticodon CGU) O - 20121230 -9606 100189036 TRNAN7 - - HGNC:34595 13 - transfer RNA asparagine 7 (anticodon GUU) tRNA TRNAN7 transfer RNA asparagine 7 (anticodon GUU) O - 20121230 -9606 100189037 TRNAS6 - - HGNC:34596 17 - transfer RNA serine 6 (anticodon CGA) tRNA TRNAS6 transfer RNA serine 6 (anticodon CGA) O - 20121230 -9606 100189038 TRNAL8 - - HGNC:34597 6 - transfer RNA leucine 8 (anticodon CAA) tRNA TRNAL8 transfer RNA leucine 8 (anticodon CAA) O - 20121230 -9606 100189039 TRNAG9 - - HGNC:34598 1 - transfer RNA glycine 9 (anticodon UCC) tRNA TRNAG9 transfer RNA glycine 9 (anticodon UCC) O - 20121230 -9606 100189040 TRNAM4 - - HGNC:34599 6 - transfer RNA methionine 4 (anticodon CAU) tRNA TRNAM4 transfer RNA methionine 4 (anticodon CAU) O - 20121230 -9606 100189041 TRNAS7 - - HGNC:34600 6 - transfer RNA serine 7 (anticodon CGA) tRNA TRNAS7 transfer RNA serine 7 (anticodon CGA) O - 20121230 -9606 100189042 TRNAA6 - - HGNC:34601 6 6p22.1 transfer RNA alanine 6 (anticodon AGC) tRNA TRNAA6 transfer RNA alanine 6 (anticodon AGC) O - 20121230 -9606 100189043 TRNAL9 - - HGNC:34602 2 - transfer RNA leucine 9 (anticodon AAG) tRNA TRNAL9 transfer RNA leucine 9 (anticodon AAG) O - 20120318 -9606 100189044 TRNAE9 - - HGNC:34603 3 - transfer RNA glutamic acid 9 (anticodon CUC) tRNA TRNAE9 transfer RNA glutamic acid 9 (anticodon CUC) O - 20120318 -9606 100189045 TRNAG10 - - HGNC:34604 1 - transfer RNA glycine 10 (anticodon CCC) tRNA TRNAG10 transfer RNA glycine 10 (anticodon CCC) O - 20121230 -9606 100189046 TRNAA7 - - HGNC:34605 6 - transfer RNA alanine 7 (anticodon AGC) tRNA TRNAA7 transfer RNA alanine 7 (anticodon AGC) O - 20121230 -9606 100189047 TRNAA8 - - HGNC:34606 6 - transfer RNA alanine 8 (anticodon AGC) tRNA TRNAA8 transfer RNA alanine 8 (anticodon AGC) O - 20121230 -9606 100189048 TRNAW2 - - HGNC:34607 6 - transfer RNA tryptophan 2 (anticodon CCA) tRNA TRNAW2 transfer RNA tryptophan 2 (anticodon CCA) O - 20121230 -9606 100189049 TRNAC4 - - HGNC:34608 7 - transfer RNA cysteine 4 (anticodon GCA) tRNA TRNAC4 transfer RNA cysteine 4 (anticodon GCA) O - 20121230 -9606 100189050 TRNAI3 - - HGNC:34609 X - transfer RNA isoleucine 3 (anticodon GAU) tRNA TRNAI3 transfer RNA isoleucine 3 (anticodon GAU) O - 20121209 -9606 100189051 TRNAK7 - - HGNC:34610 19 - transfer RNA lysine 7 (anticodon UUU) tRNA TRNAK7 transfer RNA lysine 7 (anticodon UUU) O - 20120318 -9606 100189052 TRNAC5 - - HGNC:34611 17 - transfer RNA cysteine 5 (anticodon GCA) tRNA TRNAC5 transfer RNA cysteine 5 (anticodon GCA) O - 20121230 -9606 100189053 TRNAK8 - - HGNC:34612 6 - transfer RNA lysine 8 (anticodon UUU) tRNA TRNAK8 transfer RNA lysine 8 (anticodon UUU) O - 20121230 -9606 100189054 TRNAE10 - - HGNC:34613 2 - transfer RNA glutamic acid 10 (anticodon UUC) tRNA TRNAE10 transfer RNA glutamic acid 10 (anticodon UUC) O - 20120318 -9606 100189055 TRNAS8 - - HGNC:34614 2 - transfer RNA serine 8 (anticodon UGA) tRNA TRNAS8 transfer RNA serine 8 (anticodon UGA) O - 20120318 -9606 100189056 TRNAQ8 - - HGNC:34615 1 - transfer RNA glutamine 8 (anticodon CUG) tRNA TRNAQ8 transfer RNA glutamine 8 (anticodon CUG) O - 20121230 -9606 100189057 TRNAY5 - - HGNC:34616 8 - transfer RNA tyrosine 5 (anticodon GUA) tRNA TRNAY5 transfer RNA tyrosine 5 (anticodon GUA) O - 20120318 -9606 100189058 TRNAQ9 - - HGNC:34617 9 - transfer RNA glutamine 9 (anticodon UUG) tRNA TRNAQ9 transfer RNA glutamine 9 (anticodon UUG) O - 20120318 -9606 100189059 TRNAN8 - - HGNC:34618 1 - transfer RNA asparagine 8 (anticodon GUU) tRNA TRNAN8 transfer RNA asparagine 8 (anticodon GUU) O - 20121230 -9606 100189060 TRNAA9 - - HGNC:34619 6 - transfer RNA alanine 9 (anticodon AGC) tRNA TRNAA9 transfer RNA alanine 9 (anticodon AGC) O - 20121230 -9606 100189061 TRNAD3 - - HGNC:34620 5 - transfer RNA aspartic acid 3 (anticodon GUC) tRNA TRNAD3 transfer RNA aspartic acid 3 (anticodon GUC) O - 20121230 -9606 100189062 TRNAK9 - - HGNC:34621 16 - transfer RNA lysine 9 (anticodon CUU) tRNA TRNAK9 transfer RNA lysine 9 (anticodon CUU) O - 20121230 -9606 100189063 TRNAE11 - - HGNC:34622 15 - transfer RNA glutamic acid 11 (anticodon UUC) tRNA TRNAE11 transfer RNA glutamic acid 11 (anticodon UUC) O - 20121230 -9606 100189064 TRNAG11 - - HGNC:34623 1 - transfer RNA glycine 11 (anticodon UCC) tRNA TRNAG11 transfer RNA glycine 11 (anticodon UCC) O - 20121230 -9606 100189065 TRNAH6 - - HGNC:34624 15 - transfer RNA histidine 6 (anticodon GUG) tRNA TRNAH6 transfer RNA histidine 6 (anticodon GUG) O - 20121230 -9606 100189066 TRNAA10 - - HGNC:34625 6 - transfer RNA alanine 10 (anticodon UGC) tRNA TRNAA10 transfer RNA alanine 10 (anticodon UGC) O - 20121230 -9606 100189067 TRNAL10 - - HGNC:34626 6 - transfer RNA leucine 10 (anticodon UAA) tRNA TRNAL10 transfer RNA leucine 10 (anticodon UAA) O - 20121230 -9606 100189068 TRNAE12 - - HGNC:34627 1 - transfer RNA glutamic acid 12 (anticodon UUC) tRNA TRNAE12 transfer RNA glutamic acid 12 (anticodon UUC) O - 20120318 -9606 100189069 TRNAN9 - - HGNC:34628 1 - transfer RNA asparagine 9 (anticodon GUU) tRNA TRNAN9 transfer RNA asparagine 9 (anticodon GUU) O - 20120318 -9606 100189070 TRNAS9 - - HGNC:34629 6 - transfer RNA serine 9 (anticodon AGA) tRNA TRNAS9 transfer RNA serine 9 (anticodon AGA) O - 20121230 -9606 100189071 TRNAI4 - - HGNC:34630 6 - transfer RNA isoleucine 4 (anticodon AAU) tRNA TRNAI4 transfer RNA isoleucine 4 (anticodon AAU) O - 20121230 -9606 100189072 TRNAP6 - - HGNC:34631 11 - transfer RNA proline 6 (anticodon AGG) tRNA TRNAP6 transfer RNA proline 6 (anticodon AGG) O - 20121230 -9606 100189073 TRNAV14 - - HGNC:34632 6 - transfer RNA valine 14 (anticodon CAC) tRNA TRNAV14 transfer RNA valine 14 (anticodon CAC) O - 20120318 -9606 100189074 TRNAQ10 - - HGNC:34633 6 - transfer RNA glutamine 10 (anticodon UUG) tRNA TRNAQ10 transfer RNA glutamine 10 (anticodon UUG) O - 20121230 -9606 100189075 TRNAC6 - - HGNC:34634 7 - transfer RNA cysteine 6 (anticodon GCA) tRNA TRNAC6 transfer RNA cysteine 6 (anticodon GCA) O - 20121230 -9606 100189077 TRNAS10 - - HGNC:34637 6 - transfer RNA serine 10 (anticodon AGA) tRNA TRNAS10 transfer RNA serine 10 (anticodon AGA) O - 20121230 -9606 100189078 TRNAR8 - - HGNC:34638 17 - transfer RNA arginine 8 (anticodon CCU) tRNA TRNAR8 transfer RNA arginine 8 (anticodon CCU) O - 20121230 -9606 100189079 TRNAN10 - - HGNC:34639 1 - transfer RNA asparagine 10 (anticodon GUU) tRNA TRNAN10 transfer RNA asparagine 10 (anticodon GUU) O - 20120318 -9606 100189080 TRNASUP1 - - HGNC:34640 17 17q23.2 transfer RNA suppressor 1 (anticodon UUA) tRNA TRNASUP1 transfer RNA suppressor 1 (anticodon UUA) O - 20121230 -9606 100189081 TRNAG12 - - HGNC:34641 6 - transfer RNA glycine 12 (anticodon GCC) tRNA TRNAG12 transfer RNA glycine 12 (anticodon GCC) O - 20120318 -9606 100189082 TRNAA11 - - HGNC:34642 6 - transfer RNA alanine 11 (anticodon UGC) tRNA TRNAA11 transfer RNA alanine 11 (anticodon UGC) O - 20121230 -9606 100189083 TRNAN11 - - HGNC:34643 10 - transfer RNA asparagine 11 (anticodon GUU) tRNA TRNAN11 transfer RNA asparagine 11 (anticodon GUU) O - 20121230 -9606 100189084 TRNAR9 - - HGNC:34644 6 - transfer RNA arginine 9 (anticodon CCG) tRNA TRNAR9 transfer RNA arginine 9 (anticodon CCG) O - 20121230 -9606 100189085 TRNAM5 - - HGNC:34645 6 - transfer RNA methionine 5 (anticodon CAU) tRNA TRNAM5 transfer RNA methionine 5 (anticodon CAU) O - 20121230 -9606 100189086 TRNAT6 - - HGNC:34646 16 - transfer RNA threonine 6 (anticodon CGU) tRNA TRNAT6 transfer RNA threonine 6 (anticodon CGU) O - 20121230 -9606 100189087 TRNAD4 - - HGNC:34647 1 - transfer RNA aspartic acid 4 (anticodon GUC) tRNA TRNAD4 transfer RNA aspartic acid 4 (anticodon GUC) O - 20120318 -9606 100189088 TRNAP7 - - HGNC:34648 14 - transfer RNA proline 7 (anticodon UGG) tRNA TRNAP7 transfer RNA proline 7 (anticodon UGG) O - 20121230 -9606 100189089 TRNAL11 - - HGNC:34649 16 - transfer RNA leucine 11 (anticodon CAG) tRNA TRNAL11 transfer RNA leucine 11 (anticodon CAG) O - 20121230 -9606 100189090 TRNAC7 - - HGNC:34650 17 - transfer RNA cysteine 7 (anticodon GCA) tRNA TRNAC7 transfer RNA cysteine 7 (anticodon GCA) O - 20121230 -9606 100189091 TRNAE13 - - HGNC:34651 1 - transfer RNA glutamic acid 13 (anticodon CUC) tRNA TRNAE13 transfer RNA glutamic acid 13 (anticodon CUC) O - 20121230 -9606 100189092 TRNAA12 - - HGNC:34653 6 - transfer RNA alanine 12 (anticodon AGC) tRNA TRNAA12 transfer RNA alanine 12 (anticodon AGC) O - 20121230 -9606 100189093 TRNAA13 - - HGNC:34654 6 - transfer RNA alanine 13 (anticodon AGC) tRNA TRNAA13 transfer RNA alanine 13 (anticodon AGC) O - 20121230 -9606 100189094 TRNAM6 - - HGNC:34655 6 - transfer RNA methionine 6 (anticodon CAU) tRNA TRNAM6 transfer RNA methionine 6 (anticodon CAU) O - 20121230 -9606 100189095 TRNAI5 - - HGNC:34656 6 - transfer RNA isoleucine 5 (anticodon AAU) tRNA TRNAI5 transfer RNA isoleucine 5 (anticodon AAU) O - 20121230 -9606 100189096 TRNAN12 - - HGNC:34657 1 - transfer RNA asparagine 12 (anticodon GUU) tRNA TRNAN12 transfer RNA asparagine 12 (anticodon GUU) O - 20120318 -9606 100189097 TRNAC8 - - HGNC:34658 7 - transfer RNA cysteine 8 (anticodon GCA) tRNA TRNAC8 transfer RNA cysteine 8 (anticodon GCA) O - 20121230 -9606 100189098 TRNAK11 - - HGNC:34659 1 - transfer RNA lysine 11 (anticodon UUU) tRNA TRNAK11 transfer RNA lysine 11 (anticodon UUU) O - 20121230 -9606 100189099 TRNAR10 - - HGNC:34660 6 - transfer RNA arginine 10 (anticodon ACG) tRNA TRNAR10 transfer RNA arginine 10 (anticodon ACG) O - 20121230 -9606 100189100 TRNAM7 - - HGNC:34661 6 - transfer RNA methionine 7 (anticodon CAU) tRNA TRNAM7 transfer RNA methionine 7 (anticodon CAU) O - 20120318 -9606 100189101 TRNAV15 - - HGNC:34662 6 - transfer RNA valine 15 (anticodon CAC) tRNA TRNAV15 transfer RNA valine 15 (anticodon CAC) O - 20121230 -9606 100189102 TRNAY6 - - HGNC:34663 8 - transfer RNA tyrosine 6 (anticodon GUA) tRNA TRNAY6 transfer RNA tyrosine 6 (anticodon GUA) O - 20121230 -9606 100189103 TRNAR11 - - HGNC:34664 3 - transfer RNA arginine 11 (anticodon ACG) tRNA TRNAR11 transfer RNA arginine 11 (anticodon ACG) O - 20121230 -9606 100189104 TRNAK12 - - HGNC:34665 12 - transfer RNA lysine 12 (anticodon UUU) tRNA TRNAK12 transfer RNA lysine 12 (anticodon UUU) O - 20120318 -9606 100189105 TRNAC9 - - HGNC:34666 17 - transfer RNA cysteine 9 (anticodon GCA) tRNA TRNAC9 transfer RNA cysteine 9 (anticodon GCA) O - 20121230 -9606 100189106 TRNAA14 - - HGNC:34667 6 - transfer RNA alanine 14 (anticodon AGC) tRNA TRNAA14 transfer RNA alanine 14 (anticodon AGC) O - 20121230 -9606 100189107 TRNAK13 - - HGNC:34668 14 - transfer RNA lysine 13 (anticodon CUU) tRNA TRNAK13 transfer RNA lysine 13 (anticodon CUU) O - 20121230 -9606 100189108 TRNAN13 - - HGNC:34669 1 - transfer RNA asparagine 13 (anticodon GUU) tRNA TRNAN13 transfer RNA asparagine 13 (anticodon GUU) O - 20121230 -9606 100189109 TRNAR12 - - HGNC:34670 9 - transfer RNA arginine 12 (anticodon UCU) tRNA TRNAR12 transfer RNA arginine 12 (anticodon UCU) O - 20121230 -9606 100189110 TRNAK14 - - HGNC:34671 6 - transfer RNA lysine 14 (anticodon CUU) tRNA TRNAK14 transfer RNA lysine 14 (anticodon CUU) O - 20121230 -9606 100189111 TRNAM8 - - HGNC:34673 6 - transfer RNA methionine 8 (anticodon CAU) tRNA TRNAM8 transfer RNA methionine 8 (anticodon CAU) O - 20121230 -9606 100189112 TRNAW3 - - HGNC:34674 17 - transfer RNA tryptophan 3 (anticodon CCA) tRNA TRNAW3 transfer RNA tryptophan 3 (anticodon CCA) O - 20121230 -9606 100189113 TRNAE14 - - HGNC:34675 1 - transfer RNA glutamic acid 14 (anticodon CUC) tRNA TRNAE14 transfer RNA glutamic acid 14 (anticodon CUC) O - 20121118 -9606 100189114 TRNAA15 - - HGNC:34676 6 - transfer RNA alanine 15 (anticodon UGC) tRNA TRNAA15 transfer RNA alanine 15 (anticodon UGC) O - 20121230 -9606 100189115 TRNAR14 - - HGNC:34677 11 - transfer RNA arginine 14 (anticodon UCU) tRNA TRNAR14 transfer RNA arginine 14 (anticodon UCU) O - 20121230 -9606 100189116 TRNAA16 - - HGNC:34678 1 - transfer RNA alanine 16 (anticodon AGC) tRNA TRNAA16 transfer RNA alanine 16 (anticodon AGC) O - 20120318 -9606 100189117 TRNAA17 - - HGNC:34679 14 - transfer RNA alanine 17 (anticodon AGC) tRNA TRNAA17 transfer RNA alanine 17 (anticodon AGC) O - 20121230 -9606 100189118 TRNAL12 - - HGNC:34680 6 - transfer RNA leucine 12 (anticodon AAG) tRNA TRNAL12 transfer RNA leucine 12 (anticodon AAG) O - 20121230 -9606 100189119 TRNAK15 - - HGNC:34681 16 - transfer RNA lysine 15 (anticodon CUU) tRNA TRNAK15 transfer RNA lysine 15 (anticodon CUU) O - 20121230 -9606 100189120 TRNAD5 - - HGNC:34682 1 - transfer RNA aspartic acid 5 (anticodon GUC) tRNA TRNAD5 transfer RNA aspartic acid 5 (anticodon GUC) O - 20121230 -9606 100189121 TRNAQ11 - - HGNC:34683 6 - transfer RNA glutamine 11 (anticodon CUG) tRNA TRNAQ11 transfer RNA glutamine 11 (anticodon CUG) O - 20121230 -9606 100189122 TRNAK16 - - HGNC:34684 1 - transfer RNA lysine 16 (anticodon UUU) tRNA TRNAK16 transfer RNA lysine 16 (anticodon UUU) O - 20121230 -9606 100189123 TRNAW4 - - HGNC:34685 17 - transfer RNA tryptophan 4 (anticodon CCA) tRNA TRNAW4 transfer RNA tryptophan 4 (anticodon CCA) O - 20121230 -9606 100189124 TRNAP8 - - HGNC:34686 17 - transfer RNA proline 8 (anticodon CGG) tRNA TRNAP8 transfer RNA proline 8 (anticodon CGG) O - 20121230 -9606 100189125 TRNAK17 - - HGNC:34687 16 - transfer RNA lysine 17 (anticodon UUU) tRNA TRNAK17 transfer RNA lysine 17 (anticodon UUU) O - 20121230 -9606 100189126 TRNAN14 - - HGNC:34688 1 - transfer RNA asparagine 14 (anticodon GUU) tRNA TRNAN14 transfer RNA asparagine 14 (anticodon GUU) O - 20121230 -9606 100189127 TRNAN15 - - HGNC:34689 1 - transfer RNA asparagine 15 (anticodon GUU) tRNA TRNAN15 transfer RNA asparagine 15 (anticodon GUU) O - 20121230 -9606 100189128 TRNAA18 - - HGNC:34690 6 - transfer RNA alanine 18 (anticodon AGC) tRNA TRNAA18 transfer RNA alanine 18 (anticodon AGC) O - 20121230 -9606 100189129 TRNAE15 - - HGNC:34691 14 - transfer RNA glutamic acid 15 (anticodon UUC) tRNA TRNAE15 transfer RNA glutamic acid 15 (anticodon UUC) O - 20120318 -9606 100189130 TRNAL13 - - HGNC:34692 16 - transfer RNA leucine 13 (anticodon CAG) tRNA TRNAL13 transfer RNA leucine 13 (anticodon CAG) O - 20121230 -9606 100189131 TRNAI6 - - HGNC:34693 6 - transfer RNA isoleucine 6 (anticodon UAU) tRNA TRNAI6 transfer RNA isoleucine 6 (anticodon UAU) O - 20121230 -9606 100189132 TRNAI7 - - HGNC:34694 X - transfer RNA isoleucine 7 (anticodon GAU) tRNA TRNAI7 transfer RNA isoleucine 7 (anticodon GAU) O - 20121230 -9606 100189133 TRNAR15 - - HGNC:34695 1 - transfer RNA arginine 15 (anticodon UCU) tRNA TRNAR15 transfer RNA arginine 15 (anticodon UCU) O - 20121230 -9606 100189134 TRNAD6 - - HGNC:34696 1 - transfer RNA aspartic acid 6 (anticodon GUC) tRNA TRNAD6 transfer RNA aspartic acid 6 (anticodon GUC) O - 20121209 -9606 100189135 TRNAM9 - - HGNC:34697 16 - transfer RNA methionine 9 (anticodon CAU) tRNA TRNAM9 transfer RNA methionine 9 (anticodon CAU) O - 20121230 -9606 100189136 TRNAP9 - - HGNC:34698 16 - transfer RNA proline 9 (anticodon AGG) tRNA TRNAP9 transfer RNA proline 9 (anticodon AGG) O - 20121230 -9606 100189137 TRNAF3 - - HGNC:34699 6 - transfer RNA phenylalanine 3 (anticodon GAA) tRNA TRNAF3 transfer RNA phenylalanine 3 (anticodon GAA) O - 20121230 -9606 100189138 TRNAQ12 - - HGNC:34700 6 - transfer RNA glutamine 12 (anticodon UUG) tRNA TRNAQ12 transfer RNA glutamine 12 (anticodon UUG) O - 20121230 -9606 100189139 TRNAL14 - - HGNC:34701 1 - transfer RNA leucine 14 (anticodon CAG) tRNA TRNAL14 transfer RNA leucine 14 (anticodon CAG) O - 20121230 -9606 100189140 TRNAQ13 - - HGNC:34702 1 - transfer RNA glutamine 13 (anticodon CUG) tRNA TRNAQ13 transfer RNA glutamine 13 (anticodon CUG) O - 20121230 -9606 100189141 TRNAG13 - - HGNC:34703 1 - transfer RNA glycine 13 (anticodon UCC) tRNA TRNAG13 transfer RNA glycine 13 (anticodon UCC) O - 20121230 -9606 100189142 TRNAV16 - - HGNC:34704 1 - transfer RNA valine 16 (anticodon CAC) tRNA TRNAV16 transfer RNA valine 16 (anticodon CAC) O - 20121230 -9606 100189143 TRNAT7 - - HGNC:34705 6 - transfer RNA threonine 7 (anticodon AGU) tRNA TRNAT7 transfer RNA threonine 7 (anticodon AGU) O - 20121230 -9606 100189144 TRNAC10 - - HGNC:34706 7 - transfer RNA cysteine 10 (anticodon GCA) tRNA TRNAC10 transfer RNA cysteine 10 (anticodon GCA) O - 20121230 -9606 100189145 TRNAF4 - - HGNC:34707 6 - transfer RNA phenylalanine 4 (anticodon GAA) tRNA TRNAF4 transfer RNA phenylalanine 4 (anticodon GAA) O - 20121230 -9606 100189146 TRNAC11 - - HGNC:34708 7 - transfer RNA cysteine 11 (anticodon GCA) tRNA TRNAC11 transfer RNA cysteine 11 (anticodon GCA) O - 20121230 -9606 100189148 TRNAI8 - - HGNC:34710 6 - transfer RNA isoleucine 8 (anticodon AAU) tRNA TRNAI8 transfer RNA isoleucine 8 (anticodon AAU) O - 20120318 -9606 100189149 TRNAA19 - - HGNC:34711 6 - transfer RNA alanine 19 (anticodon UGC) tRNA TRNAA19 transfer RNA alanine 19 (anticodon UGC) O - 20121230 -9606 100189150 TRNAD7 - - HGNC:34712 3 - transfer RNA aspartic acid 7 (anticodon GUC) tRNA TRNAD7 transfer RNA aspartic acid 7 (anticodon GUC) O - 20120318 -9606 100189151 TRNAL15 - - HGNC:34713 14 - transfer RNA leucine 15 (anticodon UAG) tRNA TRNAL15 transfer RNA leucine 15 (anticodon UAG) O - 20121230 -9606 100189152 TRNAS11 - - HGNC:34714 12 - transfer RNA serine 11 (anticodon CGA) tRNA TRNAS11 transfer RNA serine 11 (anticodon CGA) O - 20121230 -9606 100189153 TRNAI9 - - HGNC:34715 6 - transfer RNA isoleucine 9 (anticodon AAU) tRNA TRNAI9 transfer RNA isoleucine 9 (anticodon AAU) O - 20121230 -9606 100189154 TRNAQ14 - - HGNC:34716 1 - transfer RNA glutamine 14 (anticodon CUG) tRNA TRNAQ14 transfer RNA glutamine 14 (anticodon CUG) O - 20120318 -9606 100189155 TRNAC12 - - HGNC:34717 15 - transfer RNA cysteine 12 (anticodon GCA) tRNA TRNAC12 transfer RNA cysteine 12 (anticodon GCA) O - 20121230 -9606 100189156 TRNAA20 - - HGNC:34718 6 - transfer RNA alanine 20 (anticodon AGC) tRNA TRNAA20 transfer RNA alanine 20 (anticodon AGC) O - 20121230 -9606 100189157 TRNAS12 - - HGNC:34719 6 - transfer RNA serine 12 (anticodon GCU) tRNA TRNAS12 transfer RNA serine 12 (anticodon GCU) O - 20121230 -9606 100189158 TRNAD8 - - HGNC:34720 6 - transfer RNA aspartic acid 8 (anticodon GUC) tRNA TRNAD8 transfer RNA aspartic acid 8 (anticodon GUC) O - 20121230 -9606 100189159 TRNAS13 - - HGNC:34721 6 - transfer RNA serine 13 (anticodon GCU) tRNA TRNAS13 transfer RNA serine 13 (anticodon GCU) O - 20121230 -9606 100189160 TRNAG15 - - HGNC:34722 1 - transfer RNA glycine 15 (anticodon GCC) tRNA TRNAG15 transfer RNA glycine 15 (anticodon GCC) O - 20121230 -9606 100189161 TRNAV17 - - HGNC:34723 6 - transfer RNA valine 17 (anticodon AAC) tRNA TRNAV17 transfer RNA valine 17 (anticodon AAC) O - 20121230 -9606 100189162 TRNAY7 - - HGNC:34724 6 - transfer RNA tyrosine 7 (anticodon GUA) tRNA TRNAY7 transfer RNA tyrosine 7 (anticodon GUA) O - 20121230 -9606 100189163 TRNAG16 - - HGNC:34725 16 - transfer RNA glycine 16 (anticodon GCC) tRNA TRNAG16 transfer RNA glycine 16 (anticodon GCC) O - 20121230 -9606 100189164 TRNAL16 - - HGNC:34726 6 - transfer RNA leucine 16 (anticodon UAA) tRNA TRNAL16 transfer RNA leucine 16 (anticodon UAA) O - 20121230 -9606 100189165 TRNAN16 - - HGNC:34727 1 - transfer RNA asparagine 16 (anticodon GUU) tRNA TRNAN16 transfer RNA asparagine 16 (anticodon GUU) O - 20120318 -9606 100189166 TRNAR16 - - HGNC:34728 1 - transfer RNA arginine 16 (anticodon UCU) tRNA TRNAR16 transfer RNA arginine 16 (anticodon UCU) O - 20121230 -9606 100189167 TRNAR17 - - HGNC:34729 6 - transfer RNA arginine 17 (anticodon ACG) tRNA TRNAR17 transfer RNA arginine 17 (anticodon ACG) O - 20121230 -9606 100189168 TRNAR18 - - HGNC:34730 16 - transfer RNA arginine 18 (anticodon CCU) tRNA TRNAR18 transfer RNA arginine 18 (anticodon CCU) O - 20121230 -9606 100189169 TRNAL17 - - HGNC:34731 6 - transfer RNA leucine 17 (anticodon AAG) tRNA TRNAL17 transfer RNA leucine 17 (anticodon AAG) O - 20121230 -9606 100189170 TRNAF5 - - HGNC:34732 6 - transfer RNA phenylalanine 5 (anticodon GAA) tRNA TRNAF5 transfer RNA phenylalanine 5 (anticodon GAA) O - 20121230 -9606 100189171 TRNAW5 - - HGNC:34733 12 - transfer RNA tryptophan 5 (anticodon CCA) tRNA TRNAW5 transfer RNA tryptophan 5 (anticodon CCA) O - 20121230 -9606 100189172 TRNAP10 - - HGNC:34734 6 - transfer RNA proline 10 (anticodon CGG) tRNA TRNAP10 transfer RNA proline 10 (anticodon CGG) O - 20121230 -9606 100189173 TRNAR19 - - HGNC:34735 16 - transfer RNA arginine 19 (anticodon CCG) tRNA TRNAR19 transfer RNA arginine 19 (anticodon CCG) O - 20121230 -9606 100189174 TRNAH7 - - HGNC:34736 1 - transfer RNA histidine 7 (anticodon GUG) tRNA TRNAH7 transfer RNA histidine 7 (anticodon GUG) O - 20121230 -9606 100189175 TRNAL18 - - HGNC:34737 6 - transfer RNA leucine 18 (anticodon UAA) tRNA TRNAL18 transfer RNA leucine 18 (anticodon UAA) O - 20120318 -9606 100189176 TRNAN17 - - HGNC:34738 17 - transfer RNA asparagine 17 (anticodon GUU) tRNA TRNAN17 transfer RNA asparagine 17 (anticodon GUU) O - 20121230 -9606 100189177 TRNAC13 - - HGNC:34739 7 - transfer RNA cysteine 13 (anticodon GCA) tRNA TRNAC13 transfer RNA cysteine 13 (anticodon GCA) O - 20121230 -9606 100189178 TRNAV18 - - HGNC:34740 6 - transfer RNA valine 18 (anticodon AAC) tRNA TRNAV18 transfer RNA valine 18 (anticodon AAC) O - 20121230 -9606 100189179 TRNAC14 - - HGNC:34741 3 - transfer RNA cysteine 14 (anticodon GCA) tRNA TRNAC14 transfer RNA cysteine 14 (anticodon GCA) O - 20121230 -9606 100189180 TRNAK18 - - HGNC:34742 5 - transfer RNA lysine 18 (anticodon CUU) tRNA TRNAK18 transfer RNA lysine 18 (anticodon CUU) O - 20121230 -9606 100189181 TRNAR20 - - HGNC:34744 17 - transfer RNA arginine 20 (anticodon CCU) tRNA TRNAR20 transfer RNA arginine 20 (anticodon CCU) O - 20121230 -9606 100189182 TRNAK19 - - HGNC:34745 6 - transfer RNA lysine 19 (anticodon UUU) tRNA TRNAK19 transfer RNA lysine 19 (anticodon UUU) O - 20121230 -9606 100189183 TRNAN18 - - HGNC:34746 1 - transfer RNA asparagine 18 (anticodon GUU) tRNA TRNAN18 transfer RNA asparagine 18 (anticodon GUU) O - 20121230 -9606 100189184 TRNAS14 - - HGNC:34747 17 - transfer RNA serine 14 (anticodon AGA) tRNA TRNAS14 transfer RNA serine 14 (anticodon AGA) O - 20121230 -9606 100189185 TRNAQ15 - - HGNC:34748 6 - transfer RNA glutamine 15 (anticodon UUG) tRNA TRNAQ15 transfer RNA glutamine 15 (anticodon UUG) O - 20121230 -9606 100189186 TRNAM10 - - HGNC:34749 9 - transfer RNA methionine 10 (anticodon CAU) tRNA TRNAM10 transfer RNA methionine 10 (anticodon CAU) O - 20120318 -9606 100189187 TRNAT8 - - HGNC:34750 17 - transfer RNA threonine 8 (anticodon AGU) tRNA TRNAT8 transfer RNA threonine 8 (anticodon AGU) O - 20121230 -9606 100189188 TRNAG17 - - HGNC:34751 1 - transfer RNA glycine 17 (anticodon UCC) tRNA TRNAG17 transfer RNA glycine 17 (anticodon UCC) O - 20121230 -9606 100189189 TRNAQ16 - - HGNC:34752 6 - transfer RNA glutamine 16 (anticodon CUG) tRNA TRNAQ16 transfer RNA glutamine 16 (anticodon CUG) O - 20121230 -9606 100189190 TRNAW6 - - HGNC:34753 7 - transfer RNA tryptophan 6 (anticodon CCA) tRNA TRNAW6 transfer RNA tryptophan 6 (anticodon CCA) O - 20121230 -9606 100189191 TRNAV19 - - HGNC:34754 X - transfer RNA valine 19 (anticodon UAC) tRNA TRNAV19 transfer RNA valine 19 (anticodon UAC) O - 20121230 -9606 100189192 TRNAA21 - - HGNC:34755 6 - transfer RNA alanine 21 (anticodon AGC) tRNA TRNAA21 transfer RNA alanine 21 (anticodon AGC) O - 20120318 -9606 100189193 TRNAN19 - - HGNC:34756 1 - transfer RNA asparagine 19 (anticodon GUU) tRNA TRNAN19 transfer RNA asparagine 19 (anticodon GUU) O - 20121230 -9606 100189194 TRNAC15 - - HGNC:34757 7 - transfer RNA cysteine 15 (anticodon GCA) tRNA TRNAC15 transfer RNA cysteine 15 (anticodon GCA) O - 20121230 -9606 100189195 TRNAN20 - - HGNC:34758 19 - transfer RNA asparagine 20 (anticodon GUU) tRNA TRNAN20 transfer RNA asparagine 20 (anticodon GUU) O - 20121230 -9606 100189196 TRNAV20 - - HGNC:34759 6 - transfer RNA valine 20 (anticodon CAC) tRNA TRNAV20 transfer RNA valine 20 (anticodon CAC) O - 20121230 -9606 100189197 TRNAC16 - - HGNC:34760 4 - transfer RNA cysteine 16 (anticodon GCA) tRNA TRNAC16 transfer RNA cysteine 16 (anticodon GCA) O - 20121230 -9606 100189198 TRNAK20 - - HGNC:34761 1 - transfer RNA lysine 20 (anticodon CUU) tRNA TRNAK20 transfer RNA lysine 20 (anticodon CUU) O - 20121230 -9606 100189199 TRNAL19 - - HGNC:34762 1 - transfer RNA leucine 19 (anticodon CAA) tRNA TRNAL19 transfer RNA leucine 19 (anticodon CAA) O - 20121230 -9606 100189200 TRNAD9 - - HGNC:34763 6 - transfer RNA aspartic acid 9 (anticodon GUC) tRNA TRNAD9 transfer RNA aspartic acid 9 (anticodon GUC) O - 20121230 -9606 100189201 TRNAM11 - - HGNC:34764 8 - transfer RNA methionine 11 (anticodon CAU) tRNA TRNAM11 transfer RNA methionine 11 (anticodon CAU) O - 20121230 -9606 100189202 TRNAL20 - - HGNC:34765 6 - transfer RNA leucine 20 (anticodon AAG) tRNA TRNAL20 transfer RNA leucine 20 (anticodon AAG) O - 20121230 -9606 100189203 TRNAW7 - - HGNC:34766 17 - transfer RNA tryptophan 7 (anticodon CCA) tRNA TRNAW7 transfer RNA tryptophan 7 (anticodon CCA) O - 20121230 -9606 100189204 TRNAL21 - - HGNC:34767 5 - transfer RNA leucine 21 (anticodon CAG) tRNA TRNAL21 transfer RNA leucine 21 (anticodon CAG) O - 20120318 -9606 100189205 TRNAS15 - - HGNC:34768 6 - transfer RNA serine 15 (anticodon CGA) tRNA TRNAS15 transfer RNA serine 15 (anticodon CGA) O - 20121230 -9606 100189206 TRNAG18 - - HGNC:34769 17 - transfer RNA glycine 18 (anticodon UCC) tRNA TRNAG18 transfer RNA glycine 18 (anticodon UCC) O - 20121230 -9606 100189207 TRNAD10 - - HGNC:34770 12 - transfer RNA aspartic acid 10 (anticodon GUC) tRNA TRNAD10 transfer RNA aspartic acid 10 (anticodon GUC) O - 20121230 -9606 100189208 TRNAG19 - - HGNC:34771 2 - transfer RNA glycine 19 (anticodon GCC) tRNA TRNAG19 transfer RNA glycine 19 (anticodon GCC) O - 20121230 -9606 100189209 TRNAK21 - - HGNC:34772 16 - transfer RNA lysine 21 (anticodon CUU) tRNA TRNAK21 transfer RNA lysine 21 (anticodon CUU) O - 20121230 -9606 100189210 TRNAE16 - - HGNC:34773 1 - transfer RNA glutamic acid 16 (anticodon UUC) tRNA TRNAE16 transfer RNA glutamic acid 16 (anticodon UUC) O - 20120318 -9606 100189211 TRNAP11 - - HGNC:34774 1 - transfer RNA proline 11 (anticodon CGG) tRNA TRNAP11 transfer RNA proline 11 (anticodon CGG) O - 20121230 -9606 100189212 TRNAA22 - - HGNC:34775 6 - transfer RNA alanine 22 (anticodon AGC) tRNA TRNAA22 transfer RNA alanine 22 (anticodon AGC) O - 20120318 -9606 100189213 TRNAI11 - - HGNC:34776 6 - transfer RNA isoleucine 11 (anticodon AAU) tRNA TRNAI11 transfer RNA isoleucine 11 (anticodon AAU) O - 20121230 -9606 100189214 TRNAQ17 - - HGNC:34777 6 - transfer RNA glutamine 17 (anticodon CUG) tRNA TRNAQ17 transfer RNA glutamine 17 (anticodon CUG) O - 20121230 -9606 100189215 TRNAQ18 - - HGNC:34778 2 - transfer RNA glutamine 18 (anticodon UUG) tRNA TRNAQ18 transfer RNA glutamine 18 (anticodon UUG) O - 20120318 -9606 100189216 TRNAM12 - - HGNC:34779 6 - transfer RNA methionine 12 (anticodon CAU) tRNA TRNAM12 transfer RNA methionine 12 (anticodon CAU) O - 20121230 -9606 100189217 TRNAQ19 - - HGNC:34780 1 - transfer RNA glutamine 19 (anticodon CUG) tRNA TRNAQ19 transfer RNA glutamine 19 (anticodon CUG) O - 20120318 -9606 100189218 TRNAS16 - - HGNC:34781 6 - transfer RNA serine 16 (anticodon GCU) tRNA TRNAS16 transfer RNA serine 16 (anticodon GCU) O - 20121230 -9606 100189219 TRNAY8 - - HGNC:34782 6 - transfer RNA tyrosine 8 (anticodon GUA) tRNA TRNAY8 transfer RNA tyrosine 8 (anticodon GUA) O - 20121230 -9606 100189220 TRNAG20 - - HGNC:34783 16 - transfer RNA glycine 20 (anticodon GCC) tRNA TRNAG20 transfer RNA glycine 20 (anticodon GCC) O - 20121230 -9606 100189221 TRNAP12 - - HGNC:34784 16 - transfer RNA proline 12 (anticodon CGG) tRNA TRNAP12 transfer RNA proline 12 (anticodon CGG) O - 20121230 -9606 100189222 TRNAT9 - - HGNC:34785 17 - transfer RNA threonine 9 (anticodon AGU) tRNA TRNAT9 transfer RNA threonine 9 (anticodon AGU) O - 20121230 -9606 100189223 TRNAP13 - - HGNC:34786 6 - transfer RNA proline 13 (anticodon AGG) tRNA TRNAP13 transfer RNA proline 13 (anticodon AGG) O - 20121230 -9606 100189224 TRNAP14 - - HGNC:34787 11 - transfer RNA proline 14 (anticodon UGG) tRNA TRNAP14 transfer RNA proline 14 (anticodon UGG) O - 20121230 -9606 100189225 TRNAS17 - - HGNC:34788 6 - transfer RNA serine 17 (anticodon GCU) tRNA TRNAS17 transfer RNA serine 17 (anticodon GCU) O - 20121230 -9606 100189226 TRNAM13 - - HGNC:34789 16 - transfer RNA methionine 13 (anticodon CAU) tRNA TRNAM13 transfer RNA methionine 13 (anticodon CAU) O - 20121230 -9606 100189227 TRNAV21 - - HGNC:34790 6 - transfer RNA valine 21 (anticodon CAC) tRNA TRNAV21 transfer RNA valine 21 (anticodon CAC) O - 20121230 -9606 100189228 TRNAV22 - - HGNC:34791 1 - transfer RNA valine 22 (anticodon CAC) tRNA TRNAV22 transfer RNA valine 22 (anticodon CAC) O - 20121230 -9606 100189229 TRNAS18 - - HGNC:34792 15 - transfer RNA serine 18 (anticodon GCU) tRNA TRNAS18 transfer RNA serine 18 (anticodon GCU) O - 20121230 -9606 100189230 TRNAG21 - - HGNC:34793 1 - transfer RNA glycine 21 (anticodon GCC) tRNA TRNAG21 transfer RNA glycine 21 (anticodon GCC) O - 20121230 -9606 100189231 TRNAG22 - - HGNC:34794 2 - transfer RNA glycine 22 (anticodon CCC) tRNA TRNAG22 transfer RNA glycine 22 (anticodon CCC) O - 20121230 -9606 100189232 TRNAA23 - - HGNC:34795 12 - transfer RNA alanine 23 (anticodon UGC) tRNA TRNAA23 transfer RNA alanine 23 (anticodon UGC) O - 20121230 -9606 100189233 TRNAN21 - - HGNC:34796 1 - transfer RNA asparagine 21 (anticodon GUU) tRNA TRNAN21 transfer RNA asparagine 21 (anticodon GUU) O - 20120318 -9606 100189234 TRNAK22 - - HGNC:34797 6 - transfer RNA lysine 22 (anticodon UUU) tRNA TRNAK22 transfer RNA lysine 22 (anticodon UUU) O - 20121230 -9606 100189235 TRNAD11 - - HGNC:34798 1 - transfer RNA aspartic acid 11 (anticodon GUC) tRNA TRNAD11 transfer RNA aspartic acid 11 (anticodon GUC) O - 20121230 -9606 100189236 TRNAE17 - - HGNC:34799 8 - transfer RNA glutamic acid 17 (anticodon CUC) tRNA TRNAE17 transfer RNA glutamic acid 17 (anticodon CUC) O - 20120318 -9606 100189237 TRNAL22 - - HGNC:34800 6 - transfer RNA leucine 22 (anticodon CAA) tRNA TRNAL22 transfer RNA leucine 22 (anticodon CAA) O - 20121230 -9606 100189238 TRNAK23 - - HGNC:34801 11 - transfer RNA lysine 23 (anticodon UUU) tRNA TRNAK23 transfer RNA lysine 23 (anticodon UUU) O - 20121230 -9606 100189239 TRNAD12 - - HGNC:34802 12 - transfer RNA aspartic acid 12 (anticodon GUC) tRNA TRNAD12 transfer RNA aspartic acid 12 (anticodon GUC) O - 20121230 -9606 100189240 TRNAL23 - - HGNC:34803 11 - transfer RNA leucine 23 (anticodon UAA) tRNA TRNAL23 transfer RNA leucine 23 (anticodon UAA) O - 20121230 -9606 100189242 TRNAH8 - - HGNC:34805 3 - transfer RNA histidine 8 (anticodon GUG) tRNA TRNAH8 transfer RNA histidine 8 (anticodon GUG) O - 20120318 -9606 100189243 TRNAR21 - - HGNC:34806 14 - transfer RNA arginine 21 (anticodon ACG) tRNA TRNAR21 transfer RNA arginine 21 (anticodon ACG) O - 20121230 -9606 100189244 TRNAK24 - - HGNC:34807 16 - transfer RNA lysine 24 (anticodon CUU) tRNA TRNAK24 transfer RNA lysine 24 (anticodon CUU) O - 20121230 -9606 100189245 TRNAT10 - - HGNC:34808 17 - transfer RNA threonine 10 (anticodon CGU) tRNA TRNAT10 transfer RNA threonine 10 (anticodon CGU) O - 20121230 -9606 100189246 TRNAA24 - - HGNC:34809 6 - transfer RNA alanine 24 (anticodon AGC) tRNA TRNAA24 transfer RNA alanine 24 (anticodon AGC) O - 20120318 -9606 100189247 TRNAS19 - - HGNC:34810 6 - transfer RNA serine 19 (anticodon AGA) tRNA TRNAS19 transfer RNA serine 19 (anticodon AGA) O - 20121230 -9606 100189248 TRNAS20 - - HGNC:34811 8 - transfer RNA serine 20 (anticodon AGA) tRNA TRNAS20 transfer RNA serine 20 (anticodon AGA) O - 20121230 -9606 100189249 TRNAI12 - - HGNC:34812 6 - transfer RNA isoleucine 12 (anticodon AAU) tRNA TRNAI12 transfer RNA isoleucine 12 (anticodon AAU) O - 20121230 -9606 100189250 TRNAC18 - - HGNC:34813 3 - transfer RNA cysteine 18 (anticodon GCA) tRNA TRNAC18 transfer RNA cysteine 18 (anticodon GCA) O - 20121230 -9606 100189251 TRNAF6 - - HGNC:34814 13 - transfer RNA phenylalanine 6 (anticodon GAA) tRNA TRNAF6 transfer RNA phenylalanine 6 (anticodon GAA) O - 20121230 -9606 100189252 TRNAG23 - - HGNC:34815 1 - transfer RNA glycine 23 (anticodon GCC) tRNA TRNAG23 transfer RNA glycine 23 (anticodon GCC) O - 20121230 -9606 100189253 TRNAY9 - - HGNC:34816 2 - transfer RNA tyrosine 9 (anticodon AUA) tRNA TRNAY9 transfer RNA tyrosine 9 (anticodon AUA) O - 20121209 -9606 100189254 TRNAF7 - - HGNC:34817 6 - transfer RNA phenylalanine 7 (anticodon GAA) tRNA TRNAF7 transfer RNA phenylalanine 7 (anticodon GAA) O - 20121230 -9606 100189255 TRNAM14 - - HGNC:34818 17 - transfer RNA methionine 14 (anticodon CAU) tRNA TRNAM14 transfer RNA methionine 14 (anticodon CAU) O - 20121230 -9606 100189256 TRNAA25 - - HGNC:34819 11 - transfer RNA alanine 25 (anticodon UGC) tRNA TRNAA25 transfer RNA alanine 25 (anticodon UGC) O - 20120318 -9606 100189257 TRNAN22 - - HGNC:34820 1 - transfer RNA asparagine 22 (anticodon GUU) tRNA TRNAN22 transfer RNA asparagine 22 (anticodon GUU) O - 20121230 -9606 100189258 TRNAT11 - - HGNC:34821 6 - transfer RNA threonine 11 (anticodon CGU) tRNA TRNAT11 transfer RNA threonine 11 (anticodon CGU) O - 20120318 -9606 100189259 TRNAE18 - - HGNC:34822 1 - transfer RNA glutamic acid 18 (anticodon CUC) tRNA TRNAE18 transfer RNA glutamic acid 18 (anticodon CUC) O - 20121230 -9606 100189260 TRNAG24 - - HGNC:34823 1 - transfer RNA glycine 24 (anticodon UCC) tRNA TRNAG24 transfer RNA glycine 24 (anticodon UCC) O - 20121230 -9606 100189261 TRNAQ20 - - HGNC:34824 1 - transfer RNA glutamine 20 (anticodon CUG) tRNA TRNAQ20 transfer RNA glutamine 20 (anticodon CUG) O - 20121230 -9606 100189262 TRNAF8 - - HGNC:34825 6 - transfer RNA phenylalanine 8 (anticodon GAA) tRNA TRNAF8 transfer RNA phenylalanine 8 (anticodon GAA) O - 20121230 -9606 100189263 TRNAT12 - - HGNC:34826 14 - transfer RNA threonine 12 (anticodon UGU) tRNA TRNAT12 transfer RNA threonine 12 (anticodon UGU) O - 20121230 -9606 100189264 TRNAR22 - - HGNC:34827 15 - transfer RNA arginine 22 (anticodon UCG) tRNA TRNAR22 transfer RNA arginine 22 (anticodon UCG) O - 20121230 -9606 100189265 TRNAI13 - - HGNC:34828 2 - transfer RNA isoleucine 13 (anticodon UAU) tRNA TRNAI13 transfer RNA isoleucine 13 (anticodon UAU) O - 20121230 -9606 100189266 TRNAN23 - - HGNC:34829 1 - transfer RNA asparagine 23 (anticodon GUU) tRNA TRNAN23 transfer RNA asparagine 23 (anticodon GUU) O - 20120318 -9606 100189267 TRNAC19 - - HGNC:34830 7 - transfer RNA cysteine 19 (anticodon GCA) tRNA TRNAC19 transfer RNA cysteine 19 (anticodon GCA) O - 20121230 -9606 100189268 TRNAQ21 - - HGNC:34831 6 - transfer RNA glutamine 21 (anticodon CUG) tRNA TRNAQ21 transfer RNA glutamine 21 (anticodon CUG) O - 20121230 -9606 100189269 TRNAE19 - - HGNC:34832 6 - transfer RNA glutamic acid 19 (anticodon CUC) tRNA TRNAE19 transfer RNA glutamic acid 19 (anticodon CUC) O - 20121230 -9606 100189270 TRNAR23 - - HGNC:34833 16 - transfer RNA arginine 23 (anticodon CCU) tRNA TRNAR23 transfer RNA arginine 23 (anticodon CCU) O - 20121230 -9606 100189271 TRNAN24 - - HGNC:34834 1 - transfer RNA asparagine 24 (anticodon GUU) tRNA TRNAN24 transfer RNA asparagine 24 (anticodon GUU) O - 20120318 -9606 100189272 TRNAY10 - - HGNC:34835 6 - transfer RNA tyrosine 10 (anticodon GUA) tRNA TRNAY10 transfer RNA tyrosine 10 (anticodon GUA) O - 20121230 -9606 100189273 TRNAL24 - - HGNC:34836 5 - transfer RNA leucine 24 (anticodon AAG) tRNA TRNAL24 transfer RNA leucine 24 (anticodon AAG) O - 20121209 -9606 100189274 TRNAG25 - - HGNC:34838 1 - transfer RNA glycine 25 (anticodon GCC) tRNA TRNAG25 transfer RNA glycine 25 (anticodon GCC) O - 20121230 -9606 100189275 TRNAI15 - - HGNC:34839 14 - transfer RNA isoleucine 15 (anticodon AAU) tRNA TRNAI15 transfer RNA isoleucine 15 (anticodon AAU) O - 20121230 -9606 100189276 TRNAP15 - - HGNC:34840 7 - transfer RNA proline 15 (anticodon AGG) tRNA TRNAP15 transfer RNA proline 15 (anticodon AGG) O - 20121230 -9606 100189277 TRNAG26 - - HGNC:34841 17 - transfer RNA glycine 26 (anticodon CCC) tRNA TRNAG26 transfer RNA glycine 26 (anticodon CCC) O - 20121230 -9606 100189278 TRNAY11 - - HGNC:34842 7 - transfer RNA tyrosine 11 (anticodon GUA) tRNA TRNAY11 transfer RNA tyrosine 11 (anticodon GUA) O - 20120318 -9606 100189279 TRNAS21 - - HGNC:34845 10 - transfer RNA serine 21 (anticodon UGA) tRNA TRNAS21 transfer RNA serine 21 (anticodon UGA) O - 20121230 -9606 100189280 TRNAA26 - - HGNC:34846 5 - transfer RNA alanine 26 (anticodon UGC) tRNA TRNAA26 transfer RNA alanine 26 (anticodon UGC) O - 20121230 -9606 100189281 TRNAP16 - - HGNC:34847 16 - transfer RNA proline 16 (anticodon UGG) tRNA TRNAP16 transfer RNA proline 16 (anticodon UGG) O - 20121230 -9606 100189282 TRNAK26 - - HGNC:34848 16 - transfer RNA lysine 26 (anticodon CUU) tRNA TRNAK26 transfer RNA lysine 26 (anticodon CUU) O - 20121230 -9606 100189283 TRNAV23 - - HGNC:34849 11 - transfer RNA valine 23 (anticodon UAC) tRNA TRNAV23 transfer RNA valine 23 (anticodon UAC) O - 20121230 -9606 100189284 TRNAG27 - - HGNC:34850 21 - transfer RNA glycine 27 (anticodon GCC) tRNA TRNAG27 transfer RNA glycine 27 (anticodon GCC) O - 20121230 -9606 100189285 TRNAS22 - - HGNC:34851 11 - transfer RNA serine 22 (anticodon GCU) tRNA TRNAS22 transfer RNA serine 22 (anticodon GCU) O - 20121230 -9606 100189286 TRNAP17 - - HGNC:34852 14 - transfer RNA proline 17 (anticodon UGG) tRNA TRNAP17 transfer RNA proline 17 (anticodon UGG) O - 20121230 -9606 100189287 TRNAQ22 - - HGNC:34853 6 - transfer RNA glutamine 22 (anticodon CUG) tRNA TRNAQ22 transfer RNA glutamine 22 (anticodon CUG) O - 20121230 -9606 100189288 TRNAL26 - - HGNC:34854 6 - transfer RNA leucine 26 (anticodon CAG) tRNA TRNAL26 transfer RNA leucine 26 (anticodon CAG) O - 20121230 -9606 100189289 TRNAC20 - - HGNC:34855 7 - transfer RNA cysteine 20 (anticodon GCA) tRNA TRNAC20 transfer RNA cysteine 20 (anticodon GCA) O - 20121230 -9606 100189290 TRNAD13 - - HGNC:34856 1 - transfer RNA aspartic acid 13 (anticodon GUC) tRNA TRNAD13 transfer RNA aspartic acid 13 (anticodon GUC) O - 20121230 -9606 100189291 TRNAL27 - - HGNC:34857 16 - transfer RNA leucine 27 (anticodon AAG) tRNA TRNAL27 transfer RNA leucine 27 (anticodon AAG) O - 20121230 -9606 100189292 TRNAD14 - - HGNC:34858 6 - transfer RNA aspartic acid 14 (anticodon GUC) tRNA TRNAD14 transfer RNA aspartic acid 14 (anticodon GUC) O - 20121230 -9606 100189293 TRNAF9 - - HGNC:34859 6 - transfer RNA phenylalanine 9 (anticodon GAA) tRNA TRNAF9 transfer RNA phenylalanine 9 (anticodon GAA) O - 20121230 -9606 100189294 TRNAK27 - - HGNC:34860 11 - transfer RNA lysine 27 (anticodon UUU) tRNA TRNAK27 transfer RNA lysine 27 (anticodon UUU) O - 20121230 -9606 100189295 TRNAA27 - - HGNC:34861 6 - transfer RNA alanine 27 (anticodon AGC) tRNA TRNAA27 transfer RNA alanine 27 (anticodon AGC) O - 20121230 -9606 100189296 TRNAP18 - - HGNC:34862 16 - transfer RNA proline 18 (anticodon AGG) tRNA TRNAP18 transfer RNA proline 18 (anticodon AGG) O - 20121230 -9606 100189297 TRNAM15 - - HGNC:34863 6 - transfer RNA methionine 15 (anticodon CAU) tRNA TRNAM15 transfer RNA methionine 15 (anticodon CAU) O - 20121230 -9606 100189298 TRNAG28 - - HGNC:34864 1 - transfer RNA glycine 28 (anticodon CCC) tRNA TRNAG28 transfer RNA glycine 28 (anticodon CCC) O - 20121230 -9606 100189299 TRNAA28 - - HGNC:34865 6 - transfer RNA alanine 28 (anticodon AGC) tRNA TRNAA28 transfer RNA alanine 28 (anticodon AGC) O - 20121230 -9606 100189300 TRNAT13 - - HGNC:34866 6 - transfer RNA threonine 13 (anticodon CGU) tRNA TRNAT13 transfer RNA threonine 13 (anticodon CGU) O - 20121230 -9606 100189301 TRNAL28 - - HGNC:34867 6 - transfer RNA leucine 28 (anticodon CAA) tRNA TRNAL28 transfer RNA leucine 28 (anticodon CAA) O - 20121230 -9606 100189302 TRNAQ23 - - HGNC:34868 20 - transfer RNA glutamine 23 (anticodon CUG) tRNA TRNAQ23 transfer RNA glutamine 23 (anticodon CUG) O - 20120318 -9606 100189303 TRNAM16 - - HGNC:34869 6 - transfer RNA methionine 16 (anticodon CAU) tRNA TRNAM16 transfer RNA methionine 16 (anticodon CAU) O - 20121230 -9606 100189304 TRNAN25 - - HGNC:34870 1 - transfer RNA asparagine 25 (anticodon GUU) tRNA TRNAN25 transfer RNA asparagine 25 (anticodon GUU) O - 20121230 -9606 100189305 TRNAC21 - - HGNC:34871 7 - transfer RNA cysteine 21 (anticodon GCA) tRNA TRNAC21 transfer RNA cysteine 21 (anticodon GCA) O - 20121230 -9606 100189306 TRNAF10 - - HGNC:34873 19 - transfer RNA phenylalanine 10 (anticodon GAA) tRNA TRNAF10 transfer RNA phenylalanine 10 (anticodon GAA) O - 20121230 -9606 100189307 TRNAH9 - - HGNC:34874 1 - transfer RNA histidine 9 (anticodon GUG) tRNA TRNAH9 transfer RNA histidine 9 (anticodon GUG) O - 20121230 -9606 100189308 TRNAA29 - - HGNC:34875 6 - transfer RNA alanine 29 (anticodon CGC) tRNA TRNAA29 transfer RNA alanine 29 (anticodon CGC) O - 20121230 -9606 100189309 TRNAW8 - - HGNC:34876 9 - transfer RNA tryptophan 8 (anticodon CCA) tRNA TRNAW8 transfer RNA tryptophan 8 (anticodon CCA) O - 20120318 -9606 100189310 TRNAI17 - - HGNC:34877 6 - transfer RNA isoleucine 17 (anticodon AAU) tRNA TRNAI17 transfer RNA isoleucine 17 (anticodon AAU) O - 20121230 -9606 100189311 TRNAK28 - - HGNC:34878 19 - transfer RNA lysine 28 (anticodon CUU) tRNA TRNAK28 transfer RNA lysine 28 (anticodon CUU) O - 20120318 -9606 100189312 TRNAA30 - - HGNC:34879 6 - transfer RNA alanine 30 (anticodon AGC) tRNA TRNAA30 transfer RNA alanine 30 (anticodon AGC) O - 20121230 -9606 100189313 TRNAL29 - - HGNC:34880 6 - transfer RNA leucine 29 (anticodon UAA) tRNA TRNAL29 transfer RNA leucine 29 (anticodon UAA) O - 20121230 -9606 100189314 TRNAG29 - - HGNC:34881 6 - transfer RNA glycine 29 (anticodon GCC) tRNA TRNAG29 transfer RNA glycine 29 (anticodon GCC) O - 20121230 -9606 100189315 TRNAM17 - - HGNC:34882 6 - transfer RNA methionine 17 (anticodon CAU) tRNA TRNAM17 transfer RNA methionine 17 (anticodon CAU) O - 20121230 -9606 100189316 TRNAL30 - - HGNC:34883 1 - transfer RNA leucine 30 (anticodon CAG) tRNA TRNAL30 transfer RNA leucine 30 (anticodon CAG) O - 20121230 -9606 100189317 TRNAQ24 - - HGNC:34884 15 - transfer RNA glutamine 24 (anticodon CUG) tRNA TRNAQ24 transfer RNA glutamine 24 (anticodon CUG) O - 20121230 -9606 100189318 TRNAV24 - - HGNC:34885 3 - transfer RNA valine 24 (anticodon AAC) tRNA TRNAV24 transfer RNA valine 24 (anticodon AAC) O - 20121230 -9606 100189319 TRNAT14 - - HGNC:34886 6 - transfer RNA threonine 14 (anticodon AGU) tRNA TRNAT14 transfer RNA threonine 14 (anticodon AGU) O - 20121230 -9606 100189320 TRNAN26 - - HGNC:34887 1 - transfer RNA asparagine 26 (anticodon AUU) tRNA TRNAN26 transfer RNA asparagine 26 (anticodon AUU) O - 20120318 -9606 100189321 TRNAQ25 - - HGNC:34888 6 - transfer RNA glutamine 25 (anticodon UUG) tRNA TRNAQ25 transfer RNA glutamine 25 (anticodon UUG) O - 20121230 -9606 100189322 TRNAQ26 - - HGNC:34889 1 - transfer RNA glutamine 26 (anticodon CUG) tRNA TRNAQ26 transfer RNA glutamine 26 (anticodon CUG) O - 20120318 -9606 100189323 TRNAN27 - - HGNC:34890 1 - transfer RNA asparagine 27 (anticodon GUU) tRNA TRNAN27 transfer RNA asparagine 27 (anticodon GUU) O - 20121230 -9606 100189324 TRNAI18 - - HGNC:34891 19 - transfer RNA isoleucine 18 (anticodon UAU) tRNA TRNAI18 transfer RNA isoleucine 18 (anticodon UAU) O - 20121230 -9606 100189325 TRNAL31 - - HGNC:34892 4 - transfer RNA leucine 31 (anticodon UAA) tRNA TRNAL31 transfer RNA leucine 31 (anticodon UAA) O - 20120318 -9606 100189326 TRNAV25 - - HGNC:34893 1 - transfer RNA valine 25 (anticodon CAC) tRNA TRNAV25 transfer RNA valine 25 (anticodon CAC) O - 20121230 -9606 100189327 TRNAA31 - - HGNC:34894 6 - transfer RNA alanine 31 (anticodon AGC) tRNA TRNAA31 transfer RNA alanine 31 (anticodon AGC) O - 20120318 -9606 100189328 TRNAL32 - - HGNC:34895 5 - transfer RNA leucine 32 (anticodon AAG) tRNA TRNAL32 transfer RNA leucine 32 (anticodon AAG) O - 20121230 -9606 100189329 TRNAQ27 - - HGNC:34896 6 - transfer RNA glutamine 27 (anticodon CUG) tRNA TRNAQ27 transfer RNA glutamine 27 (anticodon CUG) O - 20121230 -9606 100189330 TRNASUP2 - - HGNC:34897 21 - transfer RNA suppressor 2 (anticodon UUA) tRNA TRNASUP2 transfer RNA suppressor 2 (anticodon UUA) O - 20120318 -9606 100189331 TRNAS23 - - HGNC:34898 17 - transfer RNA serine 23 (anticodon GCU) tRNA TRNAS23 transfer RNA serine 23 (anticodon GCU) O - 20121230 -9606 100189332 TRNAK29 - - HGNC:34900 6 - transfer RNA lysine 29 (anticodon UUU) tRNA TRNAK29 transfer RNA lysine 29 (anticodon UUU) O - 20121230 -9606 100189333 TRNAE20 - - HGNC:34901 13 - transfer RNA glutamic acid 20 (anticodon UUC) tRNA TRNAE20 transfer RNA glutamic acid 20 (anticodon UUC) O - 20121230 -9606 100189334 TRNAH10 - - HGNC:34902 1 - transfer RNA histidine 10 (anticodon GUG) tRNA TRNAH10 transfer RNA histidine 10 (anticodon GUG) O - 20121230 -9606 100189335 TRNAP19 - - HGNC:34903 16 - transfer RNA proline 19 (anticodon UGG) tRNA TRNAP19 transfer RNA proline 19 (anticodon UGG) O - 20121230 -9606 100189336 TRNAI20 - - HGNC:34904 6 - transfer RNA isoleucine 20 (anticodon AAU) tRNA TRNAI20 transfer RNA isoleucine 20 (anticodon AAU) O - 20121230 -9606 100189337 TRNAY12 - - HGNC:34905 6 - transfer RNA tyrosine 12 (anticodon GUA) tRNA TRNAY12 transfer RNA tyrosine 12 (anticodon GUA) O - 20121230 -9606 100189338 TRNAN28 - - HGNC:34906 1 - transfer RNA asparagine 28 (anticodon GUU) tRNA TRNAN28 transfer RNA asparagine 28 (anticodon GUU) O - 20120318 -9606 100189339 TRNAA32 - - HGNC:34907 12 - transfer RNA alanine 32 (anticodon UGC) tRNA TRNAA32 transfer RNA alanine 32 (anticodon UGC) O - 20121230 -9606 100189340 TRNAT15 - - HGNC:34908 6 - transfer RNA threonine 15 (anticodon AGU) tRNA TRNAT15 transfer RNA threonine 15 (anticodon AGU) O - 20121230 -9606 100189341 TRNAA33 - - HGNC:34909 6 - transfer RNA alanine 33 (anticodon AGC) tRNA TRNAA33 transfer RNA alanine 33 (anticodon AGC) O - 20120318 -9606 100189342 TRNAV26 - - HGNC:34910 10 - transfer RNA valine 26 (anticodon UAC) tRNA TRNAV26 transfer RNA valine 26 (anticodon UAC) O - 20121230 -9606 100189343 TRNAD15 - - HGNC:34911 12 - transfer RNA aspartic acid 15 (anticodon GUC) tRNA TRNAD15 transfer RNA aspartic acid 15 (anticodon GUC) O - 20121230 -9606 100189344 TRNAT16 - - HGNC:34912 6 - transfer RNA threonine 16 (anticodon UGU) tRNA TRNAT16 transfer RNA threonine 16 (anticodon UGU) O - 20121230 -9606 100189345 TRNAM18 - - HGNC:34913 6 - transfer RNA methionine 18 (anticodon CAU) tRNA TRNAM18 transfer RNA methionine 18 (anticodon CAU) O - 20121230 -9606 100189346 TRNAA34 - - HGNC:34914 6 - transfer RNA alanine 34 (anticodon AGC) tRNA TRNAA34 transfer RNA alanine 34 (anticodon AGC) O - 20121230 -9606 100189347 TRNAD16 - - HGNC:34915 12 - transfer RNA aspartic acid 16 (anticodon GUC) tRNA TRNAD16 transfer RNA aspartic acid 16 (anticodon GUC) O - 20121230 -9606 100189348 TRNAI21 - - HGNC:34916 6 - transfer RNA isoleucine 21 (anticodon UAU) tRNA TRNAI21 transfer RNA isoleucine 21 (anticodon UAU) O - 20121230 -9606 100189349 TRNAL33 - - HGNC:34917 3 - transfer RNA leucine 33 (anticodon AAG) tRNA TRNAL33 transfer RNA leucine 33 (anticodon AAG) O - 20120318 -9606 100189350 TRNAH11 - - HGNC:34918 1 - transfer RNA histidine 11 (anticodon GUG) tRNA TRNAH11 transfer RNA histidine 11 (anticodon GUG) O - 20121209 -9606 100189351 TRNAQ28 - - HGNC:34919 16 - transfer RNA glutamine 28 (anticodon CUG) tRNA TRNAQ28 transfer RNA glutamine 28 (anticodon CUG) O - 20120318 -9606 100189352 TRNAS24 - - HGNC:34920 6 - transfer RNA serine 24 (anticodon AGA) tRNA TRNAS24 transfer RNA serine 24 (anticodon AGA) O - 20121230 -9606 100189353 TRNAA35 - - HGNC:34921 6 - transfer RNA alanine 35 (anticodon AGC) tRNA TRNAA35 transfer RNA alanine 35 (anticodon AGC) O - 20120318 -9606 100189354 TRNAM19 - - HGNC:34922 6 - transfer RNA methionine 19 (anticodon CAU) tRNA TRNAM19 transfer RNA methionine 19 (anticodon CAU) O - 20121230 -9606 100189355 TRNAC22 - - HGNC:34923 7 - transfer RNA cysteine 22 (anticodon GCA) tRNA TRNAC22 transfer RNA cysteine 22 (anticodon GCA) O - 20121230 -9606 100189356 TRNAN29 - - HGNC:34924 1 - transfer RNA asparagine 29 (anticodon GUU) tRNA TRNAN29 transfer RNA asparagine 29 (anticodon GUU) O - 20121230 -9606 100189357 TRNAC23 - - HGNC:34925 7 - transfer RNA cysteine 23 (anticodon GCA) tRNA TRNAC23 transfer RNA cysteine 23 (anticodon GCA) O - 20121230 -9606 100189358 TRNAA36 - - HGNC:34926 6 - transfer RNA alanine 36 (anticodon AGC) tRNA TRNAA36 transfer RNA alanine 36 (anticodon AGC) O - 20121230 -9606 100189359 TRNAC24 - - HGNC:34927 14 - transfer RNA cysteine 24 (anticodon GCA) tRNA TRNAC24 transfer RNA cysteine 24 (anticodon GCA) O - 20121230 -9606 100189360 TRNAT17 - - HGNC:34928 6 - transfer RNA threonine 17 (anticodon CGU) tRNA TRNAT17 transfer RNA threonine 17 (anticodon CGU) O - 20121230 -9606 100189361 TRNAP20 - - HGNC:34929 16 - transfer RNA proline 20 (anticodon AGG) tRNA TRNAP20 transfer RNA proline 20 (anticodon AGG) O - 20120318 -9606 100189362 TRNAL34 - - HGNC:34930 5 - transfer RNA leucine 34 (anticodon AAG) tRNA TRNAL34 transfer RNA leucine 34 (anticodon AAG) O - 20121230 -9606 100189363 TRNAV27 - - HGNC:34931 6 - transfer RNA valine 27 (anticodon CAC) tRNA TRNAV27 transfer RNA valine 27 (anticodon CAC) O - 20121230 -9606 100189364 TRNAL35 - - HGNC:34932 1 - transfer RNA leucine 35 (anticodon CAG) tRNA TRNAL35 transfer RNA leucine 35 (anticodon CAG) O - 20121230 -9606 100189365 TRNAR24 - - HGNC:34933 6 - transfer RNA arginine 24 (anticodon CCG) tRNA TRNAR24 transfer RNA arginine 24 (anticodon CCG) O - 20121230 -9606 100189366 TRNAG30 - - HGNC:34934 1 - transfer RNA glycine 30 (anticodon GCC) tRNA TRNAG30 transfer RNA glycine 30 (anticodon GCC) O - 20121209 -9606 100189367 TRNAK30 - - HGNC:34935 19 - transfer RNA lysine 30 (anticodon CUU) tRNA TRNAK30 transfer RNA lysine 30 (anticodon CUU) O - 20120318 -9606 100189368 TRNAV28 - - HGNC:34936 6 - transfer RNA valine 28 (anticodon CAC) tRNA TRNAV28 transfer RNA valine 28 (anticodon CAC) O - 20121230 -9606 100189369 TRNAA37 - - HGNC:34937 6 - transfer RNA alanine 37 (anticodon AGC) tRNA TRNAA37 transfer RNA alanine 37 (anticodon AGC) O - 20121230 -9606 100189370 TRNAL36 - - HGNC:34938 11 - transfer RNA leucine 36 (anticodon CAA) tRNA TRNAL36 transfer RNA leucine 36 (anticodon CAA) O - 20121230 -9606 100189371 TRNAR25 - - HGNC:34939 17 - transfer RNA arginine 25 (anticodon UCG) tRNA TRNAR25 transfer RNA arginine 25 (anticodon UCG) O - 20121230 -9606 100189372 TRNAI22 - - HGNC:34940 6 - transfer RNA isoleucine 22 (anticodon AAU) tRNA TRNAI22 transfer RNA isoleucine 22 (anticodon AAU) O - 20121230 -9606 100189373 TRNAV29 - - HGNC:34941 1 - transfer RNA valine 29 (anticodon CAC) tRNA TRNAV29 transfer RNA valine 29 (anticodon CAC) O - 20121230 -9606 100189374 TRNAT18 - - HGNC:34942 6 - transfer RNA threonine 18 (anticodon AGU) tRNA TRNAT18 transfer RNA threonine 18 (anticodon AGU) O - 20121230 -9606 100189375 TRNAC25 - - HGNC:34943 7 - transfer RNA cysteine 25 (anticodon GCA) tRNA TRNAC25 transfer RNA cysteine 25 (anticodon GCA) O - 20121230 -9606 100189376 TRNAC26 - - HGNC:34944 7 - transfer RNA cysteine 26 (anticodon GCA) tRNA TRNAC26 transfer RNA cysteine 26 (anticodon GCA) O - 20121230 -9606 100189377 TRNAL37 - - HGNC:34945 X Xp11.21 transfer RNA leucine 37 (anticodon UAA) tRNA TRNAL37 transfer RNA leucine 37 (anticodon UAA) O - 20120318 -9606 100189378 TRNAT19 - - HGNC:34946 1 - transfer RNA threonine 19 (anticodon UGU) tRNA TRNAT19 transfer RNA threonine 19 (anticodon UGU) O - 20121230 -9606 100189379 TRNAC27 - - HGNC:34947 7 - transfer RNA cysteine 27 (anticodon GCA) tRNA TRNAC27 transfer RNA cysteine 27 (anticodon GCA) O - 20121230 -9606 100189380 TRNAG31 - - HGNC:34948 1 - transfer RNA glycine 31 (anticodon GCC) tRNA TRNAG31 transfer RNA glycine 31 (anticodon GCC) O - 20121230 -9606 100189381 TRNAN30 - - HGNC:34949 1 - transfer RNA asparagine 30 (anticodon GUU) tRNA TRNAN30 transfer RNA asparagine 30 (anticodon GUU) O - 20120318 -9606 100189382 TRNAS25 - - HGNC:34950 6 - transfer RNA serine 25 (anticodon AGA) tRNA TRNAS25 transfer RNA serine 25 (anticodon AGA) O - 20121230 -9606 100189383 TRNAD17 - - HGNC:34951 17 - transfer RNA aspartic acid 17 (anticodon GUC) tRNA TRNAD17 transfer RNA aspartic acid 17 (anticodon GUC) O - 20121230 -9606 100189384 TRNAE21 - - HGNC:34952 1 - transfer RNA glutamic acid 21 (anticodon CUC) tRNA TRNAE21 transfer RNA glutamic acid 21 (anticodon CUC) O - 20121230 -9606 100189385 TRNAE22 - - HGNC:34953 1 - transfer RNA glutamic acid 22 (anticodon CUC) tRNA TRNAE22 transfer RNA glutamic acid 22 (anticodon CUC) O - 20121230 -9606 100189386 TRNAQ29 - - HGNC:34954 1 - transfer RNA glutamine 29 (anticodon CUG) tRNA TRNAQ29 transfer RNA glutamine 29 (anticodon CUG) O - 20121230 -9606 100189387 TRNAI23 - - HGNC:34955 17 - transfer RNA isoleucine 23 (anticodon AAU) tRNA TRNAI23 transfer RNA isoleucine 23 (anticodon AAU) O - 20121230 -9606 100189388 TRNAP21 - - HGNC:34956 16 - transfer RNA proline 21 (anticodon UGG) tRNA TRNAP21 transfer RNA proline 21 (anticodon UGG) O - 20121230 -9606 100189389 TRNAQ30 - - HGNC:34957 12 - transfer RNA glutamine 30 (anticodon CUG) tRNA TRNAQ30 transfer RNA glutamine 30 (anticodon CUG) O - 20120318 -9606 100189390 TRNAK31 - - HGNC:34958 6 - transfer RNA lysine 31 (anticodon UUU) tRNA TRNAK31 transfer RNA lysine 31 (anticodon UUU) O - 20121230 -9606 100189391 TRNAM20 - - HGNC:34959 6 - transfer RNA methionine 20 (anticodon CAU) tRNA TRNAM20 transfer RNA methionine 20 (anticodon CAU) O - 20121209 -9606 100189392 TRNAK32 - - HGNC:34960 19 - transfer RNA lysine 32 (anticodon UUU) tRNA TRNAK32 transfer RNA lysine 32 (anticodon UUU) O - 20120318 -9606 100189393 TRNAI24 - - HGNC:34961 17 - transfer RNA isoleucine 24 (anticodon AAU) tRNA TRNAI24 transfer RNA isoleucine 24 (anticodon AAU) O - 20121230 -9606 100189394 TRNAL38 - - HGNC:34962 1 - transfer RNA leucine 38 (anticodon CAG) tRNA TRNAL38 transfer RNA leucine 38 (anticodon CAG) O - 20121230 -9606 100189395 TRNAA38 - - HGNC:34963 6 - transfer RNA alanine 38 (anticodon CGC) tRNA TRNAA38 transfer RNA alanine 38 (anticodon CGC) O - 20121230 -9606 100189396 TRNAR26 - - HGNC:34964 6 - transfer RNA arginine 26 (anticodon ACG) tRNA TRNAR26 transfer RNA arginine 26 (anticodon ACG) O - 20121230 -9606 100189397 TRNAQ31 - - HGNC:34965 16 - transfer RNA glutamine 31 (anticodon UUG) tRNA TRNAQ31 transfer RNA glutamine 31 (anticodon UUG) O - 20120318 -9606 100189398 TRNAA39 - - HGNC:34966 8 - transfer RNA alanine 39 (anticodon AGC) tRNA TRNAA39 transfer RNA alanine 39 (anticodon AGC) O - 20121230 -9606 100189399 TRNAK33 - - HGNC:34967 5 - transfer RNA lysine 33 (anticodon CUU) tRNA TRNAK33 transfer RNA lysine 33 (anticodon CUU) O - 20121230 -9606 100189400 TRNAA40 - - HGNC:34969 6 - transfer RNA alanine 40 (anticodon CGC) tRNA TRNAA40 transfer RNA alanine 40 (anticodon CGC) O - 20121230 -9606 100189401 TRNAI25 - - HGNC:34970 6 - transfer RNA isoleucine 25 (anticodon AAU) tRNA TRNAI25 transfer RNA isoleucine 25 (anticodon AAU) O - 20121209 -9606 100189402 TRNAN32 - - HGNC:34971 1 - transfer RNA asparagine 32 (anticodon GUU) tRNA TRNAN32 transfer RNA asparagine 32 (anticodon GUU) O - 20121230 -9606 100189404 TRNAV30 - - HGNC:34973 1 - transfer RNA valine 30 (anticodon AAC) tRNA TRNAV30 transfer RNA valine 30 (anticodon AAC) O - 20120318 -9606 100189405 TRNAY13 - - HGNC:34974 14 - transfer RNA tyrosine 13 (anticodon GUA) tRNA TRNAY13 transfer RNA tyrosine 13 (anticodon GUA) O - 20121230 -9606 100189406 TRNAR27 - - HGNC:34975 7 - transfer RNA arginine 27 (anticodon CCU) tRNA TRNAR27 transfer RNA arginine 27 (anticodon CCU) O - 20121230 -9606 100189407 TRNAE23 - - HGNC:34976 1 - transfer RNA glutamic acid 23 (anticodon UUC) tRNA TRNAE23 transfer RNA glutamic acid 23 (anticodon UUC) O - 20121230 -9606 100189408 TRNAV31 - - HGNC:34977 6 - transfer RNA valine 31 (anticodon UAC) tRNA TRNAV31 transfer RNA valine 31 (anticodon UAC) O - 20121230 -9606 100189409 TRNAE24 - - HGNC:34978 1 - transfer RNA glutamic acid 24 (anticodon CUC) tRNA TRNAE24 transfer RNA glutamic acid 24 (anticodon CUC) O - 20121230 -9606 100189410 TRNAR28 - - HGNC:34979 6 - transfer RNA arginine 28 (anticodon UCG) tRNA TRNAR28 transfer RNA arginine 28 (anticodon UCG) O - 20121230 -9606 100189411 TRNAA41 - - HGNC:34980 6 - transfer RNA alanine 41 (anticodon AGC) tRNA TRNAA41 transfer RNA alanine 41 (anticodon AGC) O - 20121230 -9606 100189412 TRNAD18 - - HGNC:34981 1 - transfer RNA aspartic acid 18 (anticodon GUC) tRNA TRNAD18 transfer RNA aspartic acid 18 (anticodon GUC) O - 20121230 -9606 100189413 TRNAC28 - - HGNC:34982 7 - transfer RNA cysteine 28 (anticodon GCA) tRNA TRNAC28 transfer RNA cysteine 28 (anticodon GCA) O - 20121230 -9606 100189414 TRNAC29 - - HGNC:34983 17 - transfer RNA cysteine 29 (anticodon GCA) tRNA TRNAC29 transfer RNA cysteine 29 (anticodon GCA) O - 20121230 -9606 100189415 TRNAF11 - - HGNC:34984 11 - transfer RNA phenylalanine 11 (anticodon GAA) tRNA TRNAF11 transfer RNA phenylalanine 11 (anticodon GAA) O - 20121230 -9606 100189416 TRNAV32 - - HGNC:34985 19 - transfer RNA valine 32 (anticodon CAC) tRNA TRNAV32 transfer RNA valine 32 (anticodon CAC) O - 20121230 -9606 100189417 TRNAE25 - - HGNC:34986 18 - transfer RNA glutamic acid 25 (anticodon CUC) tRNA TRNAE25 transfer RNA glutamic acid 25 (anticodon CUC) O - 20120318 -9606 100189418 TRNAE26 - - HGNC:34987 2 - transfer RNA glutamic acid 26 (anticodon UUC) tRNA TRNAE26 transfer RNA glutamic acid 26 (anticodon UUC) O - 20121230 -9606 100189419 TRNAT20 - - HGNC:34988 14 - transfer RNA threonine 20 (anticodon UGU) tRNA TRNAT20 transfer RNA threonine 20 (anticodon UGU) O - 20121230 -9606 100189420 TRNAS26 - - HGNC:34989 11 - transfer RNA serine 26 (anticodon AGA) tRNA TRNAS26 transfer RNA serine 26 (anticodon AGA) O - 20120318 -9606 100189421 TRNAF12 - - HGNC:34990 6 - transfer RNA phenylalanine 12 (anticodon GAA) tRNA TRNAF12 transfer RNA phenylalanine 12 (anticodon GAA) O - 20120318 -9606 100189422 TRNAQ32 - - HGNC:34991 6 - transfer RNA glutamine 32 (anticodon UUG) tRNA TRNAQ32 transfer RNA glutamine 32 (anticodon UUG) O - 20121230 -9606 100189423 TRNAA42 - - HGNC:34992 6 - transfer RNA alanine 42 (anticodon AGC) tRNA TRNAA42 transfer RNA alanine 42 (anticodon AGC) O - 20120318 -9606 100189424 TRNAY14 - - HGNC:34993 14 - transfer RNA tyrosine 14 (anticodon GUA) tRNA TRNAY14 transfer RNA tyrosine 14 (anticodon GUA) O - 20121230 -9606 100189425 TRNAK34 - - HGNC:34994 1 - transfer RNA lysine 34 (anticodon UUU) tRNA TRNAK34 transfer RNA lysine 34 (anticodon UUU) O - 20121230 -9606 100189426 TRNASUP3 - - HGNC:34995 17 - transfer RNA suppressor 3 (anticodon CUA) tRNA TRNASUP3 transfer RNA suppressor 3 (anticodon CUA) O - 20120318 -9606 100189427 TRNAI26 - - HGNC:34996 X - transfer RNA isoleucine 26 (anticodon GAU) tRNA TRNAI26 transfer RNA isoleucine 26 (anticodon GAU) O - 20121209 -9606 100189428 TRNAR29 - - HGNC:34997 6 - transfer RNA arginine 29 (anticodon ACG) tRNA TRNAR29 transfer RNA arginine 29 (anticodon ACG) O - 20121230 -9606 100189429 TRNAL39 - - HGNC:34998 20 - transfer RNA leucine 39 (anticodon AAG) tRNA TRNAL39 transfer RNA leucine 39 (anticodon AAG) O - 20120318 -9606 100189430 TRNAS27 - - HGNC:34999 6 - transfer RNA serine 27 (anticodon UGA) tRNA TRNAS27 transfer RNA serine 27 (anticodon UGA) O - 20121230 -9606 100189431 TRNAD19 - - HGNC:35000 12 - transfer RNA aspartic acid 19 (anticodon GUC) tRNA TRNAD19 transfer RNA aspartic acid 19 (anticodon GUC) O - 20120318 -9606 100189432 TRNAS28 - - HGNC:35001 7 - transfer RNA serine 28 (anticodon AGA) tRNA TRNAS28 transfer RNA serine 28 (anticodon AGA) O - 20121230 -9606 100189433 TRNAT21 - - HGNC:35003 6 - transfer RNA threonine 21 (anticodon AGU) tRNA TRNAT21 transfer RNA threonine 21 (anticodon AGU) O - 20121230 -9606 100189434 TRNAA43 - - HGNC:35004 6 - transfer RNA alanine 43 (anticodon AGC) tRNA TRNAA43 transfer RNA alanine 43 (anticodon AGC) O - 20120318 -9606 100189435 TRNAC30 - - HGNC:35005 17 - transfer RNA cysteine 30 (anticodon GCA) tRNA TRNAC30 transfer RNA cysteine 30 (anticodon GCA) O - 20121230 -9606 100189436 TRNAW9 - - HGNC:35006 6 - transfer RNA tryptophan 9 (anticodon CCA) tRNA TRNAW9 transfer RNA tryptophan 9 (anticodon CCA) O - 20121230 -9606 100189437 TRNAY15 - - HGNC:35007 8 - transfer RNA tyrosine 15 (anticodon GUA) tRNA TRNAY15 transfer RNA tyrosine 15 (anticodon GUA) O - 20121230 -9606 100189438 TRNAT22 - - HGNC:35008 17 - transfer RNA threonine 22 (anticodon AGU) tRNA TRNAT22 transfer RNA threonine 22 (anticodon AGU) O - 20121230 -9606 100189439 TRNAK35P - - HGNC:35009 1 1q24.1 transfer RNA lysine 35 (anticodon CUU) pseudogene pseudo TRNAK35P transfer RNA lysine 35 (anticodon CUU) pseudogene O - 20120720 -9606 100189440 TRNAE27P - - HGNC:35010 3 3q13.11 transfer RNA glutamic acid 27 (anticodon CUC) pseudogene pseudo TRNAE27P transfer RNA glutamic acid 27 (anticodon CUC) pseudogene O - 20121230 -9606 100189441 TRNAL40P - - HGNC:35011 14 14q11.2 transfer RNA leucine 40 (anticodon UAG) pseudogene pseudo TRNAL40P transfer RNA leucine 40 (anticodon UAG) pseudogene O - 20121230 -9606 100189442 TRNASUP4P - - HGNC:35012 3 3p25.1 transfer RNA suppressor 4 (anticodon CUA) pseudogene pseudo TRNASUP4P transfer RNA suppressor 4 (anticodon CUA) pseudogene O - 20120720 -9606 100189443 TRNAR30P - - HGNC:35013 1 1q21.2 transfer RNA arginine 30 (anticodon CCU) pseudogene pseudo TRNAR30P transfer RNA arginine 30 (anticodon CCU) pseudogene O - 20121230 -9606 100189444 TRNAQ33P - - HGNC:35014 5 5q14.1 transfer RNA glutamine 33 (anticodon UUG) pseudogene pseudo TRNAQ33P transfer RNA glutamine 33 (anticodon UUG) pseudogene O - 20121230 -9606 100189445 TRNAQ34P - - HGNC:35015 2 2q21.1 transfer RNA glutamine 34 (anticodon UUG) pseudogene pseudo TRNAQ34P transfer RNA glutamine 34 (anticodon UUG) pseudogene O - 20121230 -9606 100189446 TRNAF13P - - HGNC:35016 6 6q14.1 transfer RNA phenylalanine 13 (anticodon GAA) pseudogene pseudo TRNAF13P transfer RNA phenylalanine 13 (anticodon GAA) pseudogene O - 20121230 -9606 100189447 TRNAC31P - - HGNC:35017 3 3p24.3 transfer RNA cysteine 31 (anticodon GCA) pseudogene pseudo TRNAC31P transfer RNA cysteine 31 (anticodon GCA) pseudogene O - 20121230 -9606 100189448 TRNAQ35P - - HGNC:35018 Y Yp11.2 transfer RNA glutamine 35 (anticodon UUG) pseudogene pseudo TRNAQ35P transfer RNA glutamine 35 (anticodon UUG) pseudogene O - 20121230 -9606 100189449 TRNAR31P - - HGNC:35019 1 1q21.2 transfer RNA arginine 31 (anticodon CCU) pseudogene pseudo TRNAR31P transfer RNA arginine 31 (anticodon CCU) pseudogene O - 20121230 -9606 100189450 TRNAE28P - - HGNC:35020 8 8q13.2 transfer RNA glutamic acid 28 (anticodon CUC) pseudogene pseudo TRNAE28P transfer RNA glutamic acid 28 (anticodon CUC) pseudogene O - 20121230 -9606 100189451 TRNAQ36P - - HGNC:35022 2 2q21.1 transfer RNA glutamine 36 (anticodon UUG) pseudogene pseudo TRNAQ36P transfer RNA glutamine 36 (anticodon UUG) pseudogene O - 20121230 -9606 100189452 TRNAQ37P - - HGNC:35023 1 1q21.2 transfer RNA glutamine 37 (anticodon CUG) pseudogene pseudo TRNAQ37P transfer RNA glutamine 37 (anticodon CUG) pseudogene O - 20121230 -9606 100189453 TRNASUP5P - - HGNC:35024 4 4p16.1 transfer RNA suppressor 5 (anticodon UUA) pseudogene pseudo TRNASUP5P transfer RNA suppressor 5 (anticodon UUA) pseudogene O - 20121230 -9606 100189454 TRNAE29P - - HGNC:35025 1 1q21.2 transfer RNA glutamic acid 29 (anticodon UUC) pseudogene pseudo TRNAE29P transfer RNA glutamic acid 29 (anticodon UUC) pseudogene O - 20121230 -9606 100189455 TRNAP22P - - HGNC:35026 10 10p12.2 transfer RNA proline 22 (anticodon GGG) pseudogene pseudo TRNAP22P transfer RNA proline 22 (anticodon GGG) pseudogene O - 20121230 -9606 100189456 TRNAL41P - - HGNC:35027 8 8q11.1 transfer RNA leucine 41 (anticodon UAA) pseudogene pseudo TRNAL41P transfer RNA leucine 41 (anticodon UAA) pseudogene O - 20121230 -9606 100189457 TRNAE30P - - HGNC:35028 1 1q21.2 transfer RNA glutamic acid 30 (anticodon UUC) pseudogene pseudo TRNAE30P transfer RNA glutamic acid 30 (anticodon UUC) pseudogene O - 20121230 -9606 100189458 TRNAG32P - - HGNC:35030 2 2p25.1 transfer RNA glycine 32 (anticodon CCC) pseudogene pseudo TRNAG32P transfer RNA glycine 32 (anticodon CCC) pseudogene O - 20121230 -9606 100189459 TRNAE31P - - HGNC:35031 2 2q11.1 transfer RNA glutamic acid 31 (anticodon CUC) pseudogene pseudo TRNAE31P transfer RNA glutamic acid 31 (anticodon CUC) pseudogene O - 20120720 -9606 100189460 TRNAG33P - - HGNC:35032 18 18q21.31 transfer RNA glycine 33 (anticodon UCC) pseudogene pseudo TRNAG33P transfer RNA glycine 33 (anticodon UCC) pseudogene O - 20120815 -9606 100189461 TRNAQ38P - - HGNC:35033 10 10p12.31 transfer RNA glutamine 38 (anticodon CUG) pseudogene pseudo TRNAQ38P transfer RNA glutamine 38 (anticodon CUG) pseudogene O - 20121230 -9606 100189462 TRNAI28P - - HGNC:35034 6 6p22.1 transfer RNA isoleucine 28 (anticodon AAU) pseudogene pseudo TRNAI28P transfer RNA isoleucine 28 (anticodon AAU) pseudogene O - 20121230 -9606 100189463 TRNAP23P - - HGNC:35035 1 1q43 transfer RNA proline 23 (anticodon UGG) pseudogene pseudo TRNAP23P transfer RNA proline 23 (anticodon UGG) pseudogene O - 20121230 -9606 100189464 TRNAK36P - - HGNC:35036 1 1p34.3 transfer RNA lysine 36 (anticodon CUU) pseudogene pseudo TRNAK36P transfer RNA lysine 36 (anticodon CUU) pseudogene O - 20120720 -9606 100189465 TRNAE32P - - HGNC:35037 1 1q21.2 transfer RNA glutamic acid 32 (anticodon UUC) pseudogene pseudo TRNAE32P transfer RNA glutamic acid 32 (anticodon UUC) pseudogene O - 20121230 -9606 100189466 TRNAL42P - - HGNC:35038 20 20q13.31 transfer RNA leucine 42 (anticodon UAA) pseudogene pseudo TRNAL42P transfer RNA leucine 42 (anticodon UAA) pseudogene O - 20121230 -9606 100189467 TRNAK37P - - HGNC:35039 16 16p13.3 transfer RNA lysine 37 (anticodon CUU) pseudogene pseudo TRNAK37P transfer RNA lysine 37 (anticodon CUU) pseudogene O - 20121230 -9606 100189468 TRNAA44P - - HGNC:35040 6 6p22.1 transfer RNA alanine 44 (anticodon AGC) pseudogene pseudo TRNAA44P transfer RNA alanine 44 (anticodon AGC) pseudogene O - 20121230 -9606 100189469 TRNAA45P - - HGNC:35041 11 11q12.2 transfer RNA alanine 45 (anticodon UGC) pseudogene pseudo TRNAA45P transfer RNA alanine 45 (anticodon UGC) pseudogene O - 20121230 -9606 100189470 TRNASUP6P - - HGNC:35043 14 14q24.3 transfer RNA suppressor 6 (anticodon CUA) pseudogene pseudo TRNASUP6P transfer RNA suppressor 6 (anticodon CUA) pseudogene O - 20121230 -9606 100189471 TRNAF14P - - HGNC:35044 8 8q24.13 transfer RNA phenylalanine 14 (anticodon GAA) pseudogene pseudo TRNAF14P transfer RNA phenylalanine 14 (anticodon GAA) pseudogene O - 20121230 -9606 100189472 TRNAF15P - - HGNC:35045 6 6p22.1 transfer RNA phenylalanine 15 (anticodon GAA) pseudogene pseudo TRNAF15P transfer RNA phenylalanine 15 (anticodon GAA) pseudogene O - 20121230 -9606 100189473 TRNAQ39P - - HGNC:35046 2 2p21 transfer RNA glutamine 39 (anticodon UUG) pseudogene pseudo TRNAQ39P transfer RNA glutamine 39 (anticodon UUG) pseudogene O - 20121230 -9606 100189474 TRNAI29P - - HGNC:35047 12 12q24.33 transfer RNA isoleucine 29 (anticodon AAU) pseudogene pseudo TRNAI29P transfer RNA isoleucine 29 (anticodon AAU) pseudogene O - 20121230 -9606 100189475 TRNAQ40P - - HGNC:35048 X Xp11.21 transfer RNA glutamine 40 (anticodon UUG) pseudogene pseudo TRNAQ40P transfer RNA glutamine 40 (anticodon UUG) pseudogene O - 20121230 -9606 100189476 TRNAP24P - - HGNC:35049 16 16p13.3 transfer RNA proline 24 (anticodon AGG) pseudogene pseudo TRNAP24P transfer RNA proline 24 (anticodon AGG) pseudogene O - 20121230 -9606 100189477 TRNAV33P - - HGNC:35050 20 20q13.12 transfer RNA valine 33 (anticodon CAC) pseudogene pseudo TRNAV33P transfer RNA valine 33 (anticodon CAC) pseudogene O - 20121230 -9606 100189478 TRNAQ41P - - HGNC:35051 17 17p11.2 transfer RNA glutamine 41 (anticodon UUG) pseudogene pseudo TRNAQ41P transfer RNA glutamine 41 (anticodon UUG) pseudogene O - 20121230 -9606 100189479 TRNAV34P - - HGNC:35052 1 1p36.13 transfer RNA valine 34 (anticodon CAC) pseudogene pseudo TRNAV34P transfer RNA valine 34 (anticodon CAC) pseudogene O - 20121230 -9606 100189480 TRNAK38P - - HGNC:35053 19 19q13.2 transfer RNA lysine 38 (anticodon UUU) pseudogene pseudo TRNAK38P transfer RNA lysine 38 (anticodon UUU) pseudogene O - 20121230 -9606 100189481 TRNAI30P - - HGNC:35054 20 20q13.2 transfer RNA isoleucine 30 (anticodon AAU) pseudogene pseudo TRNAI30P transfer RNA isoleucine 30 (anticodon AAU) pseudogene O - 20121230 -9606 100189482 TRNAP25P - - HGNC:35055 2 2p12 transfer RNA proline 25 (anticodon AGG) pseudogene pseudo TRNAP25P transfer RNA proline 25 (anticodon AGG) pseudogene O - 20121230 -9606 100189483 TRNAP26P - - HGNC:35056 16 16p13.3 transfer RNA proline 26 (anticodon UGG) pseudogene pseudo TRNAP26P transfer RNA proline 26 (anticodon UGG) pseudogene O - 20121230 -9606 100189484 TRNAE33P - - HGNC:35057 6 6q26 transfer RNA glutamic acid 33 (anticodon UUC) pseudogene pseudo TRNAE33P transfer RNA glutamic acid 33 (anticodon UUC) pseudogene O - 20121230 -9606 100189485 TRNAE34P - - HGNC:35058 1 1q21.1 transfer RNA glutamic acid 34 (anticodon UUC) pseudogene pseudo TRNAE34P transfer RNA glutamic acid 34 (anticodon UUC) pseudogene O - 20121230 -9606 100189486 TRNAG36 - TRNAV35P HGNC:35059 1 1p36.13 transfer RNA glycine 36 (anticodon CCC) pseudo TRNAG36 transfer RNA glycine 36 (anticodon CCC) O - 20121230 -9606 100189487 TRNAS29P - - HGNC:35060 20 20q11.21 transfer RNA serine 29 (anticodon AGA) pseudogene pseudo TRNAS29P transfer RNA serine 29 (anticodon AGA) pseudogene O - 20121230 -9606 100189488 TRNAE35P - - HGNC:35061 8 8p23.1 transfer RNA glutamic acid 35 (anticodon CUC) pseudogene pseudo TRNAE35P transfer RNA glutamic acid 35 (anticodon CUC) pseudogene O - 20120720 -9606 100189489 TRNAQ42P - - HGNC:35062 3 3q13.12 transfer RNA glutamine 42 (anticodon UUG) pseudogene pseudo TRNAQ42P transfer RNA glutamine 42 (anticodon UUG) pseudogene O - 20121230 -9606 100189490 TRNAN34P - - HGNC:35064 1 1q21.2 transfer RNA asparagine 34 (anticodon GUU) pseudogene pseudo TRNAN34P transfer RNA asparagine 34 (anticodon GUU) pseudogene O - 20121230 -9606 100189491 TRNAE36P - - HGNC:35065 2 2q24.1 transfer RNA glutamic acid 36 (anticodon CUC) pseudogene pseudo TRNAE36P transfer RNA glutamic acid 36 (anticodon CUC) pseudogene O - 20120720 -9606 100189492 TRNAE37P - - HGNC:35067 X Xp11.22 transfer RNA glutamic acid 37 (anticodon CUC) pseudogene pseudo TRNAE37P transfer RNA glutamic acid 37 (anticodon CUC) pseudogene O - 20120720 -9606 100189493 TRNAL43P - - HGNC:35068 5 5q35.3 transfer RNA leucine 43 (anticodon AAG) pseudogene pseudo TRNAL43P transfer RNA leucine 43 (anticodon AAG) pseudogene O - 20121230 -9606 100189494 TRNAE38P - - HGNC:35069 2 2q23.3 transfer RNA glutamic acid 38 (anticodon CUC) pseudogene pseudo TRNAE38P transfer RNA glutamic acid 38 (anticodon CUC) pseudogene O - 20121230 -9606 100189495 TRNAD20P - - HGNC:35070 1 1q23.3 transfer RNA aspartic acid 20 (anticodon GUC) pseudogene pseudo TRNAD20P transfer RNA aspartic acid 20 (anticodon GUC) pseudogene O - 20121230 -9606 100189496 TRNAY16P - - HGNC:35071 15 15q26.1 transfer RNA tyrosine 16 (anticodon GUA) pseudogene pseudo TRNAY16P transfer RNA tyrosine 16 (anticodon GUA) pseudogene O - 20121230 -9606 100189497 TRNAF16P - - HGNC:35072 1 1q21.2 transfer RNA phenylalanine 16 (anticodon GAA) pseudogene pseudo TRNAF16P transfer RNA phenylalanine 16 (anticodon GAA) pseudogene O - 20121230 -9606 100189498 TRNAG34P - - HGNC:35073 1 1q21.2 transfer RNA glycine 34 (anticodon CCC) pseudogene pseudo TRNAG34P transfer RNA glycine 34 (anticodon CCC) pseudogene O - 20121230 -9606 100189499 TRNAL44P - - HGNC:35074 10 10p11.21 transfer RNA leucine 44 (anticodon CAA) pseudogene pseudo TRNAL44P transfer RNA leucine 44 (anticodon CAA) pseudogene O - 20120720 -9606 100189500 TRNAV36P - - HGNC:35075 1 1p36.13 transfer RNA valine 36 (anticodon CAC) pseudogene pseudo TRNAV36P transfer RNA valine 36 (anticodon CAC) pseudogene O - 20121230 -9606 100189501 TRNAQ43P - - HGNC:35076 8 8p12 transfer RNA glutamine 43 (anticodon UUG) pseudogene pseudo TRNAQ43P transfer RNA glutamine 43 (anticodon UUG) pseudogene O - 20121230 -9606 100189502 TRNAR32P - - HGNC:35077 1 1q21.2 transfer RNA arginine 32 (anticodon CCU) pseudogene pseudo TRNAR32P transfer RNA arginine 32 (anticodon CCU) pseudogene O - 20121230 -9606 100189503 TRNAQ44P - - HGNC:35078 2 2q35 transfer RNA glutamine 44 (anticodon CUG) pseudogene pseudo TRNAQ44P transfer RNA glutamine 44 (anticodon CUG) pseudogene O - 20121230 -9606 100189504 TRNAK39P - - HGNC:35079 2 2q36.1 transfer RNA lysine 39 (anticodon UUU) pseudogene pseudo TRNAK39P transfer RNA lysine 39 (anticodon UUU) pseudogene O - 20121230 -9606 100189505 TRNAQ45P - - HGNC:35080 19 19p13.2 transfer RNA glutamine 45 (anticodon UUG) pseudogene pseudo TRNAQ45P transfer RNA glutamine 45 (anticodon UUG) pseudogene O - 20121230 -9606 100189506 TRNAE39P - - HGNC:35081 13 13q21.1 transfer RNA glutamic acid 39 (anticodon CUC) pseudogene pseudo TRNAE39P transfer RNA glutamic acid 39 (anticodon CUC) pseudogene O - 20121230 -9606 100189507 TRNAY17P - - HGNC:35082 7 7q36.1 transfer RNA tyrosine 17 (anticodon GUA) pseudogene pseudo TRNAY17P transfer RNA tyrosine 17 (anticodon GUA) pseudogene O - 20121230 -9606 100189508 TRNAC32P - - HGNC:35083 5 5q33.1 transfer RNA cysteine 32 (anticodon ACA) pseudogene pseudo TRNAC32P transfer RNA cysteine 32 (anticodon ACA) pseudogene O - 20121230 -9606 100189509 TRNAQ46P - - HGNC:35084 12 12q23.1 transfer RNA glutamine 46 (anticodon UUG) pseudogene pseudo TRNAQ46P transfer RNA glutamine 46 (anticodon UUG) pseudogene O - 20121230 -9606 100189510 TRNAQ47P - - HGNC:35085 12 12q13.12 transfer RNA glutamine 47 (anticodon UUG) pseudogene pseudo TRNAQ47P transfer RNA glutamine 47 (anticodon UUG) pseudogene O - 20121230 -9606 100189511 TRNAG35P - - HGNC:35086 18 18q21.31 transfer RNA glycine 35 (anticodon UCC) pseudogene pseudo TRNAG35P transfer RNA glycine 35 (anticodon UCC) pseudogene O - 20120815 -9606 100189512 TRNAS30P - - HGNC:35087 17 17p11.2 transfer RNA serine 30 (anticodon UGA) pseudogene pseudo TRNAS30P transfer RNA serine 30 (anticodon UGA) pseudogene O - 20121230 -9606 100189513 TRNAV37P - - HGNC:35088 6 6q25.3 transfer RNA valine 37 (anticodon UAC) pseudogene pseudo TRNAV37P transfer RNA valine 37 (anticodon UAC) pseudogene O - 20121230 -9606 100189514 TRNAK40P - - HGNC:35089 14 14q24.3 transfer RNA lysine 40 (anticodon UUU) pseudogene pseudo TRNAK40P transfer RNA lysine 40 (anticodon UUU) pseudogene O - 20120720 -9606 100189515 TRNAP27P - - HGNC:35090 1 1q32.1 transfer RNA proline 27 (anticodon UGG) pseudogene pseudo TRNAP27P transfer RNA proline 27 (anticodon UGG) pseudogene O - 20121230 -9606 100189516 TRNAQ48P - - HGNC:35091 7 7q34 transfer RNA glutamine 48 (anticodon UUG) pseudogene pseudo TRNAQ48P transfer RNA glutamine 48 (anticodon UUG) pseudogene O - 20121230 -9606 100189517 TRNAN35 - TRNAN35P HGNC:35092 1 1q21.1 transfer RNA asparagine 35 (anticodon GUU) tRNA TRNAN35 transfer RNA asparagine 35 (anticodon GUU) O - 20120511 -9606 100189518 TRNAE40P - - HGNC:35093 2 2q33.2 transfer RNA glutamic acid 40 (anticodon UUC) pseudogene pseudo TRNAE40P transfer RNA glutamic acid 40 (anticodon UUC) pseudogene O - 20121230 -9606 100189519 TRNAK41P - - HGNC:35094 8 8p22 transfer RNA lysine 41 (anticodon UUU) pseudogene pseudo TRNAK41P transfer RNA lysine 41 (anticodon UUU) pseudogene O - 20121230 -9606 100189520 TRNAL45P - - HGNC:35095 1 1q43 transfer RNA leucine 45 (anticodon UAA) pseudogene pseudo TRNAL45P transfer RNA leucine 45 (anticodon UAA) pseudogene O - 20121230 -9606 100189521 TRNAR33P - - HGNC:35096 1 1q21.1 transfer RNA arginine 33 (anticodon CCU) pseudogene pseudo TRNAR33P transfer RNA arginine 33 (anticodon CCU) pseudogene O - 20121230 -9606 100189522 TRNAL46P - - HGNC:35097 2 2q14.1 transfer RNA leucine 46 (anticodon UAA) pseudogene pseudo TRNAL46P transfer RNA leucine 46 (anticodon UAA) pseudogene O - 20121230 -9606 100189523 TRNAQ55 - - HGNC:38574 1 1p36.13 transfer RNA glutamine 55 (anticodon CUG) tRNA TRNAQ55 transfer RNA glutamine 55 (anticodon CUG) O - 20121102 -9606 100189524 TRNAQ50P - - HGNC:35099 13 13q13.3 transfer RNA glutamine 50 (anticodon UUG) pseudogene pseudo TRNAQ50P transfer RNA glutamine 50 (anticodon UUG) pseudogene O - 20121230 -9606 100189525 TRNAS31P - - HGNC:35100 2 2q21.1 transfer RNA serine 31 (anticodon UGA) pseudogene pseudo TRNAS31P transfer RNA serine 31 (anticodon UGA) pseudogene O - 20121230 -9606 100189526 TRNAS32P - - HGNC:35102 6 6p22.1 transfer RNA serine 32 (anticodon ACU) pseudogene pseudo TRNAS32P transfer RNA serine 32 (anticodon ACU) pseudogene O - 20121230 -9606 100189527 TRNAE41P - - HGNC:35104 2 2p13.3 transfer RNA glutamic acid 41 (anticodon CUC) pseudogene pseudo TRNAE41P transfer RNA glutamic acid 41 (anticodon CUC) pseudogene O - 20120720 -9606 100189528 TRNAE42P - - HGNC:35105 12 12q24.21 transfer RNA glutamic acid 42 (anticodon CUC) pseudogene pseudo TRNAE42P transfer RNA glutamic acid 42 (anticodon CUC) pseudogene O - 20121230 -9606 100189529 TRNAA46P - - HGNC:35106 6 6p22.1 transfer RNA alanine 46 (anticodon UGC) pseudogene pseudo TRNAA46P transfer RNA alanine 46 (anticodon UGC) pseudogene O - 20121230 -9606 100189530 TRNAP28P - - HGNC:35107 2 2p11.2 transfer RNA proline 28 (anticodon AGG) pseudogene pseudo TRNAP28P transfer RNA proline 28 (anticodon AGG) pseudogene O - 20121230 -9606 100189531 TRNAQ51P - - HGNC:35108 1 1q21.2 transfer RNA glutamine 51 (anticodon CUG) pseudogene pseudo TRNAQ51P transfer RNA glutamine 51 (anticodon CUG) pseudogene O - 20121230 -9606 100189532 TRNAE43P - - HGNC:35109 20 20p12.1 transfer RNA glutamic acid 43 (anticodon CUC) pseudogene pseudo TRNAE43P transfer RNA glutamic acid 43 (anticodon CUC) pseudogene O - 20121230 -9606 100189533 TRNAF17P - - HGNC:35110 1 1q21.2 transfer RNA phenylalanine 17 (anticodon GAA) pseudogene pseudo TRNAF17P transfer RNA phenylalanine 17 (anticodon GAA) pseudogene O - 20121230 -9606 100189534 TRNAN36P - - HGNC:35111 1 1q21.2 transfer RNA asparagine 36 (anticodon GUU) pseudogene pseudo TRNAN36P transfer RNA asparagine 36 (anticodon GUU) pseudogene O - 20121230 -9606 100189535 TRNAQ52P - - HGNC:35112 7 7p11.2 transfer RNA glutamine 52 (anticodon UUG) pseudogene pseudo TRNAQ52P transfer RNA glutamine 52 (anticodon UUG) pseudogene O - 20121230 -9606 100189536 TRNAK42P - - HGNC:35113 15 15q24.3 transfer RNA lysine 42 (anticodon CUU) pseudogene pseudo TRNAK42P transfer RNA lysine 42 (anticodon CUU) pseudogene O - 20121230 -9606 100189537 TRNAR34P - - HGNC:35114 11 11q13.1 transfer RNA arginine 34 (anticodon CCU) pseudogene pseudo TRNAR34P transfer RNA arginine 34 (anticodon CCU) pseudogene O - 20121230 -9606 100189538 TRNAQ53P - - HGNC:35115 5 5q33.1 transfer RNA glutamine 53 (anticodon CUG) pseudogene pseudo TRNAQ53P transfer RNA glutamine 53 (anticodon CUG) pseudogene O - 20121230 -9606 100189539 TRNAK43P - - HGNC:35116 6 6p22.1 transfer RNA lysine 43 (anticodon UUU) pseudogene pseudo TRNAK43P transfer RNA lysine 43 (anticodon UUU) pseudogene O - 20121230 -9606 100189540 TRNAQ54P - - HGNC:35117 4 4q32.1 transfer RNA glutamine 54 (anticodon UUG) pseudogene pseudo TRNAQ54P transfer RNA glutamine 54 (anticodon UUG) pseudogene O - 20121230 -9606 100189541 TRNAV4 - - HGNC:34541 5 - transfer RNA valine 4 (anticodon CAC) tRNA TRNAV4 transfer RNA valine 4 (anticodon CAC) O - 20121230 -9606 100189589 DCTN1-AS1 - - HGNC:44151 2 2p13 DCTN1 antisense RNA 1 miscRNA DCTN1-AS1 DCTN1 antisense RNA 1 O - 20121230 -9606 100190785 IS4 - - MIM:612238 9 9q31.2-q34.2 Scoliosis, idiopathic, susceptibility to, 4 unknown - - - - 20120622 -9606 100190786 CILD8 - - MIM:612274 15 15q24-q25 Ciliary dyskinesia, primary, 8 unknown - - - - 20120622 -9606 100190787 GEFSP6 - - MIM:612279 8 8p23-p21 Generalized epilepsy with febrile seizures plus, type 6 unknown - - - - 20120622 -9606 100190788 IBD20 - - MIM:612288 10 10q24 Inflammatory bowel disease-20 unknown - - - - 20120622 -9606 100190789 TSHQTL1 - - MIM:612306 5 5q13 Thyroid-stimulating hormone level QTL 1 unknown - - - - 20120622 -9606 100190790 ADHD5 - - MIM:612311 2 2q21.1 Attention deficit-hyperactivity disorder, susceptibility to, 5 unknown - - - - 20120622 -9606 100190791 ADHD6 - - MIM:612312 13 13q12.11 Attention deficit-hyperactivity disorder, susceptibility to, 6 unknown - - - - 20120622 -9606 100190799 LDHAP2 - LDHAL2 HGNC:6537 1 1q42.3 lactate dehydrogenase A pseudogene 2 pseudo LDHAP2 lactate dehydrogenase A pseudogene 2 O - 20121230 -9606 100190800 LDHAP7 - LDHAL7 HGNC:23144 2 2p11.2 lactate dehydrogenase A pseudogene 7 pseudo LDHAP7 lactate dehydrogenase A pseudogene 7 O - 20121230 -9606 100190922 LOC100190922 - - - 11 11q22.3 eukaryotic translation initiation factor 4E binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100190923 LOC100190923 - - - 15 15q15.2 eukaryotic translation initiation factor 4E binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100190924 LOC100190924 - - - 6 6q16.1 eukaryotic translation initiation factor 4E binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100190926 IBD19 - - MIM:612278 - - Inflammatory bowel disease 19 unknown - - - - 20120622 -9606 100190928 SLEB12 - - MIM:612254 8 8p23.1 Systemic lupus erythematosus, susceptibility to, 12 unknown - - - - 20120622 -9606 100190929 IBD15 - - MIM:612255 10 10q21 Inflammatory bowel disease-15 unknown - - - - 20120622 -9606 100190930 IBD16 - - MIM:612259 9 9q32 Inflammatory bowel disease-16 unknown - - - - 20120622 -9606 100190931 IBD18 - - MIM:612262 5 5p13.1 Inflammatory bowel disease-18 unknown - - - - 20120622 -9606 100190932 CMM7 - - MIM:612263 20 20q11.2 Melanoma, cutaneous malignant, susceptibility to, 7 unknown - - - - 20120622 -9606 100190933 SHEP11 - - MIM:612271 9 9p23 Skin/hair/eye pigmentation 11, blue/nonblue eyes unknown - - - - 20120622 -9606 100190934 LOC100190934 - - - 1 1p32.3 alcohol dehydrogenase 5 (class III), chi polypeptide pseudogene pseudo - - - - 20121230 -9606 100190938 RAMP2-AS1 - - HGNC:44358 17 17q21.31 RAMP2 antisense RNA 1 miscRNA RAMP2-AS1 RAMP2 antisense RNA 1 O - 20121230 -9606 100190939 TPT1-AS1 - - HGNC:43686 13 13q14.13 TPT1 antisense RNA 1 miscRNA TPT1-AS1 TPT1 antisense RNA 1 O - 20121230 -9606 100190940 LOC100190940 - - - 12 12q24.33 uncharacterized LOC100190940 miscRNA - - - - 20121230 -9606 100190947 SUPT4H1P - - HGNC:33981 2 2p12 SUPT4H1 pseudogene pseudo SUPT4H1P SUPT4H1 pseudogene O - 20121230 -9606 100190949 C5orf52 - - HGNC:35121|Ensembl:ENSG00000187658|Vega:OTTHUMG00000154518 5 5q33.3 chromosome 5 open reading frame 52 protein-coding C5orf52 chromosome 5 open reading frame 52 O uncharacterized protein C5orf52 20121230 -9606 100190952 NDUFB1P1 - NDUFB1P|bcm3095 HGNC:30893 3 3p21.31 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 1 pseudogene 1 pseudo NDUFB1P1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 1 pseudogene 1 O - 20121230 -9606 100190954 EXOSC3P2 - - HGNC:33990 19 19p13.2 exosome component 3 pseudogene 2 pseudo EXOSC3P2 exosome component 3 pseudogene 2 O - 20121230 -9606 100190955 FAM32D - - HGNC:34240 18 18q22.1 family with sequence similarity 32, member D (pseudogene) pseudo FAM32D family with sequence similarity 32, member D (pseudogene) O - 20121230 -9606 100190956 FAM32E - - HGNC:34241 12 12q24.32 family with sequence similarity 32, member E (pseudogene) pseudo FAM32E family with sequence similarity 32, member E (pseudogene) O - 20121230 -9606 100190982 DSAP3 - - MIM:612293 1 1p31.3-p31.1 Porokeratosis, disseminated superficial actinic, 3 unknown - - - - 20120622 -9606 100190983 DEL2Q32Q33 - C2DELq32q33 MIM:612313 2 2q32-q33 Chromosome 2q32-q33 deletion syndrome unknown - - - - 20120622 -9606 100190984 DEL1Q42Q44 - C1DELq42q44 MIM:612337 1 1q42-q44 Chromosome 1q42-q44 deletion syndrome unknown - - - - 20120622 -9606 100190985 IS5 - - MIM:612239 17 17q25.3 scoliosis, idiopathic, susceptibility to, 5 unknown - - - - 20120318 -9606 100190986 LOC100190986 - - - 16 16p12.2 uncharacterized LOC100190986 miscRNA - - - - 20121230 -9606 100190987 FDPSP10 - - HGNC:39087 15 15q15.2 farnesyl diphosphate synthase pseudogene 10 pseudo FDPSP10 farnesyl diphosphate synthase pseudogene 10 O - 20121230 -9606 100191039 RPL36AP33 - RPL36A_15_975 HGNC:36475 9 9p13.3 ribosomal protein L36a pseudogene 33 pseudo RPL36AP33 ribosomal protein L36a pseudogene 33 O - 20121230 -9606 100191040 C2CD4D - FAM148D HGNC:37210|Ensembl:ENSG00000225556|Vega:OTTHUMG00000167218 1 1q21.3 C2 calcium-dependent domain containing 4D protein-coding C2CD4D C2 calcium-dependent domain containing 4D O C2 calcium-dependent domain-containing protein 4D|family with sequence similarity 148, member D 20121230 -9606 100191063 SNAR-A14 - - HGNC:34338 19 19q13.33 small ILF3/NF90-associated RNA A14 snRNA SNAR-A14 small ILF3/NF90-associated RNA A14 O - 20121230 -9606 100192204 PPIAP30 - - HGNC:44878 10 10p13 peptidylprolyl isomerase A (cyclophilin A) pseudogene 30 pseudo PPIAP30 peptidylprolyl isomerase A (cyclophilin A) pseudogene 30 O - 20121230 -9606 100192306 JAWAD - - MIM:251255 - - Microcephaly with digital anomalies unknown - - - - 20121031 -9606 100192307 MUSQTL1 - - MIM:612343 4 4q22 Musical aptitude QTL 1 unknown - - - - 20120622 -9606 100192308 DEL2Q31 - - MIM:612345 2 2q31.2 Chromosome 2q31.2 deletion syndrome unknown - - - - 20120622 -9606 100192311 MUSTQTL1 - - MIM:612083 14 14q24.3 Muscle strength quantitative trait locus 1 unknown - - - - 20120622 -9606 100192312 IBD21 - - MIM:612354 18 18p11 Inflammatory bowel disease-21 unknown - - - - 20120622 -9606 100192378 ZFHX4-AS1 - - HGNC:44165 8 8q21.11 ZFHX4 antisense RNA 1 miscRNA ZFHX4-AS1 ZFHX4 antisense RNA 1 O - 20121230 -9606 100192379 PP12613 - - - 4 4q27 uncharacterized LOC100192379 miscRNA - - - - 20121230 -9606 100192386 FLJ16779 - - - 20 20q13.33 uncharacterized LOC100192386 miscRNA - - - - 20121230 -9606 100192388 LOC100192388 - - - 20 - anaphase promoting complex subunit 13 pseudogene pseudo - - - - 20121230 -9606 100192389 LOC100192389 - - - 1 1p12 anaphase promoting complex subunit 13 pseudogene pseudo - - - - 20121230 -9606 100192420 FLJ41941 - - - 22 22q11.21 uncharacterized LOC100192420 miscRNA - - - - 20121230 -9606 100192426 LOC100192426 hCG_2045685 - - 18 18p11.23 uncharacterized LOC100192426 miscRNA - - - - 20121230 -9606 100192455 FASA - - - 11 - fertility associated sperm antigen protein-coding - - - - 20120318 -9606 100194425 LOC100194425 - - - 16 16p11.2 B-cell receptor-associated protein 31 pseudogene pseudo - - - - 20121230 -9606 100194426 LOC100194426 - - - 16 16p11.2 B-cell receptor-associated protein 31 pseudogene pseudo - - - - 20121230 -9606 100196909 ALPQTL1 - - MIM:171720 9 9q34.13 Alkaline phosphatase, plasma level of, QTL1 unknown - - - - 20120622 -9606 100196910 PPPD1 - - MIM:175850 12 12q24.1-q24.2 Porokeratosis, palmar, plantar, and disseminated 1 unknown - - - - 20120622 -9606 100196911 DSAP4 - - MIM:612353 18 18p11.3 Porokeratosis, disseminated superficial actinic, 4 unknown - - - - 20120622 -9606 100196912 MAFD8 - - MIM:612357 10 10q21 Major affective disorder-8, susceptibility to unknown - - - - 20120622 -9606 100196913 SCZD14 - - MIM:612361 2 2q32.1 schizophrenia, susceptibility to, 14 unknown - - - - 20120622 -9606 100196914 ALPQTL2 - - MIM:612367 1 1p36 Alkaline phosphatase, plasma level of, QTL 2 unknown - - - - 20120622 -9606 100196915 ALPQTL3 - - MIM:612368 6 6p22 Alkaline phosphatase, plasma level of, QTL3 unknown - - - - 20120622 -9606 100196916 ALPQTL4 - - MIM:612369 10 10q21 Alkaline phosphatase, plasma level of, QTL4 unknown - - - - 20120622 -9606 100196917 MAFD9 - - MIM:612372 12 12p13.3 Major affective disorder-9, susceptibility to unknown - - - - 20120622 -9606 100196918 SLEB13 - - MIM:612378 6 6q23 Systemic lupus erythematosus, susceptibility to, 13 unknown - - - - 20120622 -9606 100196919 SS3 - - MIM:612388 10 10q22.3 Sarcoidosis, susceptibility to, 3 unknown - - - - 20120622 -9606 100196944 LOC100196944 - - - 7 7q32.1 CD2 (cytoplasmic tail) binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100216001 LINC00704 - - HGNC:44678 10 10p15.1 long intergenic non-protein coding RNA 704 miscRNA LINC00704 long intergenic non-protein coding RNA 704 O - 20121230 -9606 100216336 RPS24P8 - RPS24_4_368 HGNC:37016 3 3p21.31 ribosomal protein S24 pseudogene 8 pseudo RPS24P8 ribosomal protein S24 pseudogene 8 O - 20121230 -9606 100216337 LOC100216337 - - - 2 2p ADP-ribosylation factor-like 1 pseudogene pseudo - - - - 20121230 -9606 100216338 RPS24P13 RP11-460H18.2 RPS24_7_1030 HGNC:36805 10 10p11.22 ribosomal protein S24 pseudogene 13 pseudo RPS24P13 ribosomal protein S24 pseudogene 13 O - 20121230 -9606 100216339 RPS24P6 - RPS24_2_250 HGNC:36240 2 2q11.1 ribosomal protein S24 pseudogene 6 pseudo RPS24P6 ribosomal protein S24 pseudogene 6 O - 20121230 -9606 100216340 RPS24P16 - RPS24_6_1447 HGNC:35542 15 15q23 ribosomal protein S24 pseudogene 16 pseudo RPS24P16 ribosomal protein S24 pseudogene 16 O - 20121230 -9606 100216341 RPS24P17 - RPS24_7_1485 HGNC:36348 16 16q13 ribosomal protein S24 pseudogene 17 pseudo RPS24P17 ribosomal protein S24 pseudogene 17 O - 20121230 -9606 100216342 RPS24P7 - RPS24_1_225 HGNC:35737 2 2p15 ribosomal protein S24 pseudogene 7 pseudo RPS24P7 ribosomal protein S24 pseudogene 7 O - 20121230 -9606 100216344 DYT17 - - HGNC:35416|MIM:612406 20 20p11.2-q13.12 dystonia 17 unknown DYT17 dystonia 17 O - 20120622 -9606 100216346 LOC100216346 - - - 8 8q ADP-ribosylation-like factor 6 interacting protein 6 pseudogene pseudo - - - - 20121230 -9606 100216355 LOC100216355 - - - 11 11p methylmalonic aciduria (cobalamin deficiency) cblD type, with homocystinuria pseudogene pseudo - - - - 20121230 -9606 100216356 LOC100216356 - - - X Xq methylmalonic aciduria (cobalamin deficiency) cblD type, with homocystinuria pseudogene pseudo - - - - 20121230 -9606 100216466 DNM1P43 - DNM1DN11-10|DNM1DN11@ HGNC:35193 15 15q25.2 DNM1 pseudogene 43 pseudo DNM1P43 DNM1 pseudogene 43 O - 20121209 -9606 100216479 LOC100216479 - - - 2 2q21.1 uncharacterized LOC100216479 miscRNA - - - - 20121230 -9606 100216483 DEL18Q - - MIM:601808 18 18q Chromosome 18q deletion syndrome unknown - - - - 20120622 -9606 100216484 NRCLP4 - - MIM:612417 22 22q13 Narcolepsy 4 unknown - - - - 20120622 -9606 100216487 LOC100216487 - - - 4 4q31.23 akirin 2 pseudogene pseudo - - - - 20121230 -9606 100216488 LOC100216488 - - - 1 1q44 akirin 2 pseudogene pseudo - - - - 20121230 -9606 100216505 DNM1P24 - DNM1DN15-1|DNM1DN15@ HGNC:35171 Y Yq11.223 DNM1 pseudogene 24 pseudo DNM1P24 DNM1 pseudogene 24 O - 20121209 -9606 100216506 DNM1P25 - DNM1DN15-3|DNM1DN15@ HGNC:35172 Y Yq11.223 DNM1 pseudogene 25 pseudo DNM1P25 DNM1 pseudogene 25 O - 20121209 -9606 100216507 DNM1P26 - DNM1DN16-1|DNM1DN16@ HGNC:35173 Y Yq11.23 DNM1 pseudogene 26 pseudo DNM1P26 DNM1 pseudogene 26 O - 20121209 -9606 100216514 DNM1P27 - DNM1DN16-3|DNM1DN16@ HGNC:35174 Y Yq11.23 DNM1 pseudogene 27 pseudo DNM1P27 DNM1 pseudogene 27 O - 20121209 -9606 100216515 DNM1P36 - DNM1DN8-3|DNM1DN8@ HGNC:35186 15 15q25.2 DNM1 pseudogene 36 pseudo DNM1P36 DNM1 pseudogene 36 O - 20121209 -9606 100216516 DNM1P37 - DNM1DN10-1|DNM1DN10@ HGNC:35187 15 15q25.1 DNM1 pseudogene 37 pseudo DNM1P37 DNM1 pseudogene 37 O - 20121230 -9606 100216517 DNM1P38 - DNM1DN10-2|DNM1DN10@ HGNC:35188 15 15q25.2 DNM1 pseudogene 38 pseudo DNM1P38 DNM1 pseudogene 38 O - 20121209 -9606 100216518 DNM1P39 - DNM1DN11-3|DNM1DN11@ HGNC:35189 15 15q25.2 DNM1 pseudogene 39 pseudo DNM1P39 DNM1 pseudogene 39 O - 20121209 -9606 100216541 DNM1P42 - DNM1DN11-8|DNM1DN11@ HGNC:35192 15 15q25.2 DNM1 pseudogene 42 pseudo DNM1P42 DNM1 pseudogene 42 O - 20121230 -9606 100216542 DNM1P45 - DNM1DN12-2|DNM1DN12@ HGNC:35195 15 15q25.3 DNM1 pseudogene 45 pseudo DNM1P45 DNM1 pseudogene 45 O - 20121230 -9606 100216544 DNM1P47 - DNM1DN14-3|DNM1DN14@ HGNC:35200 15 15q26.3 DNM1 pseudogene 47 pseudo DNM1P47 DNM1 pseudogene 47 O - 20121230 -9606 100216545 LOC100216545 - - - 7 7q22.3 uncharacterized LOC100216545 miscRNA - - - - 20121230 -9606 100216546 LOC100216546 - - - 7 7q22.1 uncharacterized LOC100216546 miscRNA - - - - 20121230 -9606 100217367 LOC100217367 - - - X Xp22.11 chromosome 11 open reading frame 73 pseudogene pseudo - - - - 20121230 -9606 100217370 DEL1Q21 - C1DELq21 MIM:612474 1 1q21.1 Chromosome 1q21.1 deletion syndrome unknown - - - - 20120622 -9606 100217371 DUP1Q21 - C1DUPq21 MIM:612475 1 1q21.1 Chromosome 1q21.1 duplication syndrome unknown - - - - 20120622 -9606 100217387 AGA3 - - MIM:612421 20 20p11.22 Alopecia, androgenetic, 3 unknown - - - - 20120622 -9606 100233146 LOC100233146 - - - 7 7q21.3 histidine triad nucleotide binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100233147 ARHI1 - - MIM:612448 8 8q24.13-q24.22 Age-related hearing impairment 1 unknown - - - - 20120622 -9606 100233156 LOC100233156 - - - 4 4p16.3 tektin 4 pseudogene pseudo - - - - 20121230 -9606 100233157 BMIQ13 - - MIM:612459 2 2q14.1 Body mass index QTL13 unknown - - - - 20120622 -9606 100233158 BMIQ14 - - MIM:612460 16 16q12.2 Body mass index QTL14 unknown - - - - 20120622 -9606 100233159 WAGRO - DEL11p14p12 MIM:612469 11 11p13-p12 WAGRO syndrome unknown - - - - 20120622 -9606 100233198 LOC100233198 - - - 9 9p13.2 thioredoxin-related transmembrane protein 2 pseudogene pseudo - - - - 20121230 -9606 100233209 PCED1B-AS1 - - HGNC:44166 12 12q13.11 PCED1B antisense RNA 1 miscRNA PCED1B-AS1 PCED1B antisense RNA 1 O - 20121230 -9606 100233226 MCI2 - - MIM:608557 13 13q12 Myocardial infarction, susceptiblity to, 2 unknown - - - - 20120622 -9606 100233227 SLI4 - - MIM:612514 7 7q35-q36 Specific language impairment 4 unknown - - - - 20120622 -9606 100240702 PLSA1 - PLSA MIM:611637 4 4p16 Primary lateral sclerosis, adult, 1 unknown - - - - 20120622 -9606 100240707 GAPDHP42 - - HGNC:37799 6 6q13 glyceraldehyde 3 phosphate dehydrogenase pseudogene 42 pseudo GAPDHP42 glyceraldehyde 3 phosphate dehydrogenase pseudogene 42 O - 20121230 -9606 100240708 GAPDHP43 - - HGNC:37800 15 15q15.3 glyceraldehyde 3 phosphate dehydrogenase pseudogene 43 pseudo GAPDHP43 glyceraldehyde 3 phosphate dehydrogenase pseudogene 43 O - 20121230 -9606 100240709 GAPDHP44 - - HGNC:37801 12 12q14.2 glyceraldehyde 3 phosphate dehydrogenase pseudogene 44 pseudo GAPDHP44 glyceraldehyde 3 phosphate dehydrogenase pseudogene 44 O - 20121230 -9606 100240710 GAPDHP45 - - HGNC:37802 10 10p13 glyceraldehyde 3 phosphate dehydrogenase pseudogene 45 pseudo GAPDHP45 glyceraldehyde 3 phosphate dehydrogenase pseudogene 45 O - 20121230 -9606 100240711 GAPDHP46 - - HGNC:37804 1 1p22.1 glyceraldehyde 3 phosphate dehydrogenase pseudogene 46 pseudo GAPDHP46 glyceraldehyde 3 phosphate dehydrogenase pseudogene 46 O - 20121230 -9606 100240712 GAPDHP47 - - HGNC:37803 3 3q24 glyceraldehyde 3 phosphate dehydrogenase pseudogene 47 pseudo GAPDHP47 glyceraldehyde 3 phosphate dehydrogenase pseudogene 47 O - 20121230 -9606 100240713 GAPDHP48 - - HGNC:37805 2 2p25.3 glyceraldehyde 3 phosphate dehydrogenase pseudogene 48 pseudo GAPDHP48 glyceraldehyde 3 phosphate dehydrogenase pseudogene 48 O - 20121230 -9606 100240714 LOC100240714 - - - 6 6q25.1 multimerin 2 pseudogene pseudo - - - - 20121230 -9606 100240728 LOC100240728 hCG_2038692 - - 7 - uncharacterized LOC100240728 unknown - - - - 20120508 -9606 100240730 DUP7Q11.23 - C7DUPq11.23 MIM:609757 7 7q11.23 Chromosome 7q11.23 duplication syndrome unknown - - - - 20120622 -9606 100240731 DEL15Q15.3 - C15DELq15.3 MIM:611102 15 15q15.3 Deafness and male infertility unknown - - - - 20120622 -9606 100240732 IBD22 - - MIM:612380 17 17q21.2 Inflammatory bowel disease-22 unknown - - - - 20120622 -9606 100240733 IBD23 - - MIM:612381 1 1q32 Inflammatory bowel disease-23 unknown - - - - 20120622 -9606 100240734 LOC100240734 - - - 12 12q13.13 uncharacterized LOC100240734 miscRNA - - - - 20121230 -9606 100240735 LOC100240735 - - - 12 12q13.13 uncharacterized LOC100240735 miscRNA - - - - 20121230 -9606 100240736 DEL11P15P14 - C11DELp15p14 MIM:606528 11 11p15-p14 Chromosome 11p15-p14 deletion syndrome unknown - - - - 20120622 -9606 100240737 DEL1P36 - C1DELp36 MIM:607872 1 1p36 Chromosome 1p36 deletion syndrome unknown - - - - 20120622 -9606 100240738 DUP22Q11.2 - - MIM:608363 22 22q11.2 Chromosome 22q11.2 microduplication syndrome unknown - - - - 20120902 -9606 100240739 DUP18PDEL18Q - DUP81qDEL18p MIM:609334 18 18q22 Chromosome 18 pericentric inversion unknown - - - - 20120622 -9606 100240740 DEL2P16.1-P15 - C2DELp161-p15 MIM:612513 2 2p16.1-p15 Chromosome 2p16.1-p15 deletion syndrome unknown - - - - 20120622 -9606 100240747 DEL18P - C18DELp MIM:146390 18 18p Chromosome 18p deletion syndrome unknown - - - - 20120622 -9606 100240748 DEL9P - C9DELp MIM:158170 9 9p Chromosome 9p deletion syndrome unknown - - - - 20120902 -9606 100240749 LOC100240749 - - - 5 5p34 tubulin, epsilon 1 pseudogene pseudo - - - - 20121230 -9606 100268168 LOC100268168 - - - 5 5q35.1 uncharacterized LOC100268168 miscRNA - - - - 20121230 -9606 100270639 IHPS5 - - MIM:612525 16 16q24.3 Pyloric stenosis, infantile hypertrophic, 5 unknown - - - - 20120622 -9606 100270641 MYP16 - - HGNC:35441|MIM:612554 5 5p15.33-p15.2 myopia 16 unknown MYP16 myopia 16 O - 20120622 -9606 100270642 CLLS3 - - MIM:612557 9 9q34.1 Leukemia, chronic lymphocytic, susceptibility to, 3 unknown - - - - 20120622 -9606 100270643 CLLS4 - - MIM:612558 6 6p25 Leukemia, chronic lymphocytic susceptibility to, 4 unknown - - - - 20120622 -9606 100270644 CLLS5 - - MIM:612559 11 11q24.1 Leukemia, chronic lymphocytic susceptiblity to, 5 unknown - - - - 20120622 -9606 100270647 LOC100270647 - - - 5 5p15.1 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene pseudo - - - - 20121230 -9606 100270648 MKI67IPP3 - - HGNC:44951 12 12p13 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 3 pseudo MKI67IPP3 MKI67 (FHA domain) interacting nucleolar phosphoprotein pseudogene 3 O - 20121230 -9606 100270670 LOC100270670 - - - 1 1q21 chloride channel, nucleotide-sensitive, 1A pseudogene pseudo - - - - 20121230 -9606 100270673 FABP5P12 - FABP5L12 HGNC:31067 4 4q32.1 fatty acid binding protein 5 pseudogene 12 pseudo FABP5P12 fatty acid binding protein 5 pseudogene 12 O - 20121230 -9606 100270679 LOC100270679 - - - 20 20p11.22 uncharacterized LOC100270679 miscRNA - - - - 20121230 -9606 100270680 LOC100270680 - - - 8 8q24 uncharacterized LOC100270680 unknown - - - - 20120622 -9606 100270709 FTH1P27 - - HGNC:39091 X Xp21.1 ferritin, heavy polypeptide 1 pseudogene 27 pseudo FTH1P27 ferritin, heavy polypeptide 1 pseudogene 27 O - 20121230 -9606 100270746 LOC100270746 - - - 6 6p22.2 uncharacterized LOC100270746 miscRNA - - - - 20121230 -9606 100270753 RPL21P112 - RPL21_45_1329 HGNC:36526 13 13q32.1 ribosomal protein L21 pseudogene 112 pseudo RPL21P112 ribosomal protein L21 pseudogene 112 O - 20121230 -9606 100270754 RPL7AP72 RP1-30E17.1 RPL7A_34_1809 HGNC:36442 X Xq25 ribosomal protein L7a pseudogene 72 pseudo RPL7AP72 ribosomal protein L7a pseudogene 72 O - 20121230 -9606 100270755 RPSAP63 RP3-417G15.3 RPSA_33_1813 HGNC:35581 X Xq26.2 ribosomal protein SA pseudogene 63 pseudo RPSAP63 ribosomal protein SA pseudogene 63 O - 20121230 -9606 100270790 LOC100270790 - - - 7 7p12.2 guanine nucleotide binding protein-like 2 (nucleolar) pseudogene pseudo - - - - 20121230 -9606 100270794 STQTL10 - - MIM:612221 3 3q23 Stature QTL 10 unknown - - - - 20120622 -9606 100270795 STQTL11 - - MIM:612223 7 7q21 Stature QTL 11 unknown - - - - 20120622 -9606 100270796 STQTL13 - - MIM:612226 4 4p15.3 Stature QTL 13 unknown - - - - 20120622 -9606 100270797 STQTL14 - - MIM:612228 20 20q11.22 Stature QTL 14 unknown - - - - 20120622 -9606 100270798 IBD24 - - MIM:612566 20 20q13 Inflammatory bowel disease-24 unknown - - - - 20120622 -9606 100270799 IBD25 - - MIM:612567 - - Inflammatory bowel disease-25 unknown - - - - 20120622 -9606 100270800 SHFLD3 - - MIM:612576 17 17p13.3-p13.1 Split-hand/foot malformation with long bone deficiency 3 unknown - - - - 20120622 -9606 100270801 STQTL15 - - MIM:612578 8 8q21.13 Stature QTL 15 unknown - - - - 20120622 -9606 100270802 STQTL16 - - MIM:612579 15 15q22.32 Stature QTL 16 unknown - - - - 20120622 -9606 100270803 DEL6PTER - C6DELpter MIM:612582 6 6pter-p24 Chromosome 6pter deletion syndrome unknown - - - - 20120622 -9606 100270804 LOC100270804 - - - 20 20p11.23 uncharacterized LOC100270804 miscRNA - - - - 20121230 -9606 100270823 RPL7P11 - RPL7_1_6 HGNC:35667 1 1p36.23 ribosomal protein L7 pseudogene 11 pseudo RPL7P11 ribosomal protein L7 pseudogene 11 O - 20121230 -9606 100270825 RPL9P12 - RPL9_1_50 HGNC:36728 1 1p32.3 ribosomal protein L9 pseudogene 12 pseudo RPL9P12 ribosomal protein L9 pseudogene 12 O - 20121230 -9606 100270826 RPS2P13 - RPS2_1_34 HGNC:36021 1 1p33 ribosomal protein S2 pseudogene 13 pseudo RPS2P13 ribosomal protein S2 pseudogene 13 O - 20121230 -9606 100270827 RPS2P14 - RPS2_2_88 HGNC:36389 1 1p13 ribosomal protein S2 pseudogene 14 pseudo RPS2P14 ribosomal protein S2 pseudogene 14 O - 20121230 -9606 100270828 RPL37P9 - RPL37_1_4 HGNC:35688 1 1p36.31-p36.23 ribosomal protein L37 pseudogene 9 pseudo RPL37P9 ribosomal protein L37 pseudogene 9 O - 20121230 -9606 100270829 RPL39P12 - RPL39_1_3 HGNC:36166 1 1p36.33 ribosomal protein L39 pseudogene 12 pseudo RPL39P12 ribosomal protein L39 pseudogene 12 O - 20121230 -9606 100270832 RPL5P9 - RPL5_3_263 HGNC:36557 2 2q13 ribosomal protein L5 pseudogene 9 pseudo RPL5P9 ribosomal protein L5 pseudogene 9 O - 20121230 -9606 100270833 RPL5P12 - RPL5_4_502 HGNC:36221 4 4q22.3-q23 ribosomal protein L5 pseudogene 12 pseudo RPL5P12 ribosomal protein L5 pseudogene 12 O - 20121230 -9606 100270834 RPL5P13 - RPL5_5_523 HGNC:37023 4 4q31.21 ribosomal protein L5 pseudogene 13 pseudo RPL5P13 ribosomal protein L5 pseudogene 13 O - 20121230 -9606 100270835 RPL5P14 - RPL5_5_550 HGNC:35924 5 5p13.3 ribosomal protein L5 pseudogene 14 pseudo RPL5P14 ribosomal protein L5 pseudogene 14 O - 20121230 -9606 100270836 RPL5P15 - RPL5_6_566 HGNC:36769 5 5q13 ribosomal protein L5 pseudogene 15 pseudo RPL5P15 ribosomal protein L5 pseudogene 15 O - 20121230 -9606 100270837 RPL5P16 - RPL5_7_588 HGNC:36009 5 5q14.2 ribosomal protein L5 pseudogene 16 pseudo RPL5P16 ribosomal protein L5 pseudogene 16 O - 20121230 -9606 100270838 RPL5P21 - RPL5_7_753 HGNC:37029 6 6q22.33 ribosomal protein L5 pseudogene 21 pseudo RPL5P21 ribosomal protein L5 pseudogene 21 O - 20121230 -9606 100270839 RPL5P17 - RPL5_8_591 HGNC:36605 5 5q14.3 ribosomal protein L5 pseudogene 17 pseudo RPL5P17 ribosomal protein L5 pseudogene 17 O - 20121230 -9606 100270840 RPL5P23 - RPL5_8_899 HGNC:36553 8 8p12 ribosomal protein L5 pseudogene 23 pseudo RPL5P23 ribosomal protein L5 pseudogene 23 O - 20121230 -9606 100270841 RPL5P24 - RPL5_9_935 HGNC:35828 8 8q22.3 ribosomal protein L5 pseudogene 24 pseudo RPL5P24 ribosomal protein L5 pseudogene 24 O - 20121230 -9606 100270843 RPL6P15 - RPL6_3_613 HGNC:36903 5 5q31.1 ribosomal protein L6 pseudogene 15 pseudo RPL6P15 ribosomal protein L6 pseudogene 15 O - 20121230 -9606 100270844 RPL6P5 - RPL6_4_280 HGNC:36199 2 2q22.3 ribosomal protein L6 pseudogene 5 pseudo RPL6P5 ribosomal protein L6 pseudogene 5 O - 20121230 -9606 100270845 RPL6P6 - RPL6_5_321 HGNC:36673 2 2q34 ribosomal protein L6 pseudogene 6 pseudo RPL6P6 ribosomal protein L6 pseudogene 6 O - 20121230 -9606 100270846 RPL6P21 - RPL6_5_786 HGNC:35994 7 7p21.2 ribosomal protein L6 pseudogene 21 pseudo RPL6P21 ribosomal protein L6 pseudogene 21 O - 20121230 -9606 100270847 RPL6P9 - RPL6_6_412 HGNC:36484 3 3q22-q24 ribosomal protein L6 pseudogene 9 pseudo RPL6P9 ribosomal protein L6 pseudogene 9 O - 20121230 -9606 100270848 RPL6P7 - RPL6_7_423 HGNC:35801 3 3q25.31 ribosomal protein L6 pseudogene 7 pseudo RPL6P7 ribosomal protein L6 pseudogene 7 O - 20121230 -9606 100270850 RPL7P15 - RPL7_4_398 HGNC:36740 3 3q21.1-q21.2 ribosomal protein L7 pseudogene 15 pseudo RPL7P15 ribosomal protein L7 pseudogene 15 O - 20121230 -9606 100270851 RPL7P17 - RPL7_6_493 HGNC:36116 4 4q21.1 ribosomal protein L7 pseudogene 17 pseudo RPL7P17 ribosomal protein L7 pseudogene 17 O - 20121230 -9606 100270852 RPL7P18 - RPL7_7_596 HGNC:36949 5 5q15 ribosomal protein L7 pseudogene 18 pseudo RPL7P18 ribosomal protein L7 pseudogene 18 O - 20121230 -9606 100270853 RPL7P19 - RPL7_9_617 HGNC:36268 5 5q31 ribosomal protein L7 pseudogene 19 pseudo RPL7P19 ribosomal protein L7 pseudogene 19 O - 20121230 -9606 100270854 RPL8P3 - RPL8_1_413 HGNC:36407 3 3q23 ribosomal protein L8 pseudogene 3 pseudo RPL8P3 ribosomal protein L8 pseudogene 3 O - 20121230 -9606 100270855 RPL9P10 - RPL9_2_176 HGNC:35686 1 1q42.2 ribosomal protein L9 pseudogene 10 pseudo RPL9P10 ribosomal protein L9 pseudogene 10 O - 20121230 -9606 100270856 RPL9P13 - RPL9_2_278 HGNC:36558 2 2q22.1 ribosomal protein L9 pseudogene 13 pseudo RPL9P13 ribosomal protein L9 pseudogene 13 O - 20121230 -9606 100270857 RPL9P15 - RPL9_4_422 HGNC:35539 3 3q25.2 ribosomal protein L9 pseudogene 15 pseudo RPL9P15 ribosomal protein L9 pseudogene 15 O - 20121230 -9606 100270858 RPS2P15 - RPS2_3_202 HGNC:36468 2 2p23 ribosomal protein S2 pseudogene 15 pseudo RPS2P15 ribosomal protein S2 pseudogene 15 O - 20121230 -9606 100270859 RPS2P19 - RPS2_4_428 HGNC:35786 3 3q25.33 ribosomal protein S2 pseudogene 19 pseudo RPS2P19 ribosomal protein S2 pseudogene 19 O - 20121230 -9606 100270860 RPS2P16 - RPS2_8_310 HGNC:36865 2 2q33.1 ribosomal protein S2 pseudogene 16 pseudo RPS2P16 ribosomal protein S2 pseudogene 16 O - 20121230 -9606 100270861 RPS2P22 - RPS2_9_556 HGNC:35506 5 5p12 ribosomal protein S2 pseudogene 22 pseudo RPS2P22 ribosomal protein S2 pseudogene 22 O - 20121230 -9606 100270862 RPS3P4 - RPS3_1_652 HGNC:36616 6 6p25 ribosomal protein S3 pseudogene 4 pseudo RPS3P4 ribosomal protein S3 pseudogene 4 O - 20121230 -9606 100270864 RPS6P2 - RPS6_1_301 HGNC:36446 2 2q31.2 ribosomal protein S6 pseudogene 2 pseudo RPS6P2 ribosomal protein S6 pseudogene 2 O - 20121230 -9606 100270865 RPS6P10 - RPS6_4_967 HGNC:36730 9 9p22.1 ribosomal protein S6 pseudogene 10 pseudo RPS6P10 ribosomal protein S6 pseudogene 10 O - 20121230 -9606 100270866 RPS6P11 - RPS6_5_956 HGNC:36270 9 9p24 ribosomal protein S6 pseudogene 11 pseudo RPS6P11 ribosomal protein S6 pseudogene 11 O - 20121230 -9606 100270867 RPS6P12 - RPS6_5_991 HGNC:36375 9 9q21.32 ribosomal protein S6 pseudogene 12 pseudo RPS6P12 ribosomal protein S6 pseudogene 12 O - 20121230 -9606 100270868 RPS7P2 - RPS7_1_102 HGNC:36079 1 1q21 ribosomal protein S7 pseudogene 2 pseudo RPS7P2 ribosomal protein S7 pseudogene 2 O - 20121230 -9606 100270869 RPS7P6 - RPS7_3_462 HGNC:36334 4 4p15.31 ribosomal protein S7 pseudogene 6 pseudo RPS7P6 ribosomal protein S7 pseudogene 6 O - 20121230 -9606 100270870 RPS7P7 - RPS7_3_472 HGNC:35690 4 4p13 ribosomal protein S7 pseudogene 7 pseudo RPS7P7 ribosomal protein S7 pseudogene 7 O - 20121230 -9606 100270871 RPS8P6 - RPS8_1_339 HGNC:36947 3 3p26.1 ribosomal protein S8 pseudogene 6 pseudo RPS8P6 ribosomal protein S8 pseudogene 6 O - 20121230 -9606 100270872 RPSAP16 - RPSA_1_135 HGNC:35478 1 1q24.2 ribosomal protein SA pseudogene 16 pseudo RPSAP16 ribosomal protein SA pseudogene 16 O - 20121230 -9606 100270873 RPSAP17 - RPSA_3_103 HGNC:35707 1 1q21 ribosomal protein SA pseudogene 17 pseudo RPSAP17 ribosomal protein SA pseudogene 17 O - 20121230 -9606 100270874 RPSAP22 - RPSA_5_248 HGNC:36435 2 2p12 ribosomal protein SA pseudogene 22 pseudo RPSAP22 ribosomal protein SA pseudogene 22 O - 20121230 -9606 100270875 RPSAP23 - RPSA_5_268 HGNC:36742 2 2q14.1 ribosomal protein SA pseudogene 23 pseudo RPSAP23 ribosomal protein SA pseudogene 23 O - 20121230 -9606 100270876 RPSAP34 - RPSA_8_506 HGNC:36643 4 4q25 ribosomal protein SA pseudogene 34 pseudo RPSAP34 ribosomal protein SA pseudogene 34 O - 20121230 -9606 100270877 RPL21P21 - RPL21_1_11 HGNC:35728 1 1p36.3 ribosomal protein L21 pseudogene 21 pseudo RPL21P21 ribosomal protein L21 pseudogene 21 O - 20121230 -9606 100270878 RPL21P22 - RPL21_2_29 HGNC:36550 1 1p35.2 ribosomal protein L21 pseudogene 22 pseudo RPL21P22 ribosomal protein L21 pseudogene 22 O - 20121230 -9606 100270879 RPL21P23 - RPL21_2_54 HGNC:36205 1 1pter-p22.1 ribosomal protein L21 pseudogene 23 pseudo RPL21P23 ribosomal protein L21 pseudogene 23 O - 20121230 -9606 100270880 RPL21P24 - RPL21_4_45 HGNC:35702 1 1p33 ribosomal protein L21 pseudogene 24 pseudo RPL21P24 ribosomal protein L21 pseudogene 24 O - 20121230 -9606 100270881 RPL21P25 - RPL21_5_46 HGNC:36785 1 1p33 ribosomal protein L21 pseudogene 25 pseudo RPL21P25 ribosomal protein L21 pseudogene 25 O - 20121230 -9606 100270882 RPL21P26 - RPL21_6_74 HGNC:35910 1 1p22-p21 ribosomal protein L21 pseudogene 26 pseudo RPL21P26 ribosomal protein L21 pseudogene 26 O - 20121230 -9606 100270883 RPL26P7 - RPL26_1_10 HGNC:37030 1 1p36.2 ribosomal protein L26 pseudogene 7 pseudo RPL26P7 ribosomal protein L26 pseudogene 7 O - 20121230 -9606 100270884 RPL26P8 - RPL26_1_22 HGNC:36192 1 1p36.11 ribosomal protein L26 pseudogene 8 pseudo RPL26P8 ribosomal protein L26 pseudogene 8 O - 20121230 -9606 100270885 RPL26P9 - RPL26_2_76 HGNC:36180 1 1p22 ribosomal protein L26 pseudogene 9 pseudo RPL26P9 ribosomal protein L26 pseudogene 9 O - 20121230 -9606 100270886 RPL26P10 - RPL26_3_90 HGNC:36323 1 1p13.1 ribosomal protein L26 pseudogene 10 pseudo RPL26P10 ribosomal protein L26 pseudogene 10 O - 20121230 -9606 100270887 RPL31P12 - RPL31_1_62 HGNC:35546 1 1p31.1 ribosomal protein L31 pseudogene 12 pseudo RPL31P12 ribosomal protein L31 pseudogene 12 O - 20121230 -9606 100270888 RPL32P6 - RPL32_1_26 HGNC:36655 1 1p36.1 ribosomal protein L32 pseudogene 6 pseudo RPL32P6 ribosomal protein L32 pseudogene 6 O - 20121230 -9606 100270889 RPL34P4 - RPL34_1_24 HGNC:36665 1 1p36 ribosomal protein L34 pseudogene 4 pseudo RPL34P4 ribosomal protein L34 pseudogene 4 O - 20121230 -9606 100270890 RPL37P7 - RPL37_1_52 HGNC:36499 1 1p32.3 ribosomal protein L37 pseudogene 7 pseudo RPL37P7 ribosomal protein L37 pseudogene 7 O - 20121230 -9606 100270891 RPL39P6 - RPL39_1_12 HGNC:35803 1 1p36.2 ribosomal protein L39 pseudogene 6 pseudo RPL39P6 ribosomal protein L39 pseudogene 6 O - 20121230 -9606 100270892 RPL39P7 - RPL39_2_23 HGNC:36651 1 1p36.11 ribosomal protein L39 pseudogene 7 pseudo RPL39P7 ribosomal protein L39 pseudogene 7 O - 20121230 -9606 100270893 RPL39P8 - RPL39_2_85 HGNC:36329 1 1p13.2 ribosomal protein L39 pseudogene 8 pseudo RPL39P8 ribosomal protein L39 pseudogene 8 O - 20121230 -9606 100270894 RPL39P9 - RPL39_4_77 HGNC:35580 1 1p21 ribosomal protein L39 pseudogene 9 pseudo RPL39P9 ribosomal protein L39 pseudogene 9 O - 20121230 -9606 100270895 RPL7AP15 - RPL7A_1_95 HGNC:36873 1 1q12 ribosomal protein L7a pseudogene 15 pseudo RPL7AP15 ribosomal protein L7a pseudogene 15 O - 20121230 -9606 100270896 RPL7AP16 - RPL7A_2_43 HGNC:35898 1 1p34.1 ribosomal protein L7a pseudogene 16 pseudo RPL7AP16 ribosomal protein L7a pseudogene 16 O - 20121230 -9606 100270897 RPL7AP17 - RPL7A_3_78 HGNC:36501 1 1p21.2 ribosomal protein L7a pseudogene 17 pseudo RPL7AP17 ribosomal protein L7a pseudogene 17 O - 20121230 -9606 100270898 RPS11P3 - RPS11_1_99 HGNC:35870 1 1q21 ribosomal protein S11 pseudogene 3 pseudo RPS11P3 ribosomal protein S11 pseudogene 3 O - 20121230 -9606 100270899 RPS20P5 - RPS20_1_55 HGNC:36367 1 1p32-p31 ribosomal protein S20 pseudogene 5 pseudo RPS20P5 ribosomal protein S20 pseudogene 5 O - 20121230 -9606 100270900 RPS20P6 - RPS20_1_80 HGNC:35629 1 1p21 ribosomal protein S20 pseudogene 6 pseudo RPS20P6 ribosomal protein S20 pseudogene 6 O - 20121230 -9606 100270901 RPS20P7 - RPS20_2_68 HGNC:35911 1 1p31.1 ribosomal protein S20 pseudogene 7 pseudo RPS20P7 ribosomal protein S20 pseudogene 7 O - 20121230 -9606 100270902 RPS26P14 - RPS26_1_49 HGNC:36992 1 1p32.3 ribosomal protein S26 pseudogene 14 pseudo RPS26P14 ribosomal protein S26 pseudogene 14 O - 20121230 -9606 100270903 RPS29P6 - RPS29_1_32 HGNC:35718 1 1p34.3 ribosomal protein S29 pseudogene 6 pseudo RPS29P6 ribosomal protein S29 pseudogene 6 O - 20121230 -9606 100270904 RPS3AP11 - RPS3A_1_40 HGNC:36825 1 1p34.2 ribosomal protein S3a pseudogene 11 pseudo RPS3AP11 ribosomal protein S3a pseudogene 11 O - 20121230 -9606 100270905 RPS3AP12 - RPS3A_1_92 HGNC:35527 1 1p13.3-p13.1 ribosomal protein S3a pseudogene 12 pseudo RPS3AP12 ribosomal protein S3a pseudogene 12 O - 20121230 -9606 100270906 RPL5P19 - RPL5_10_724 HGNC:36604 6 6q15 ribosomal protein L5 pseudogene 19 pseudo RPL5P19 ribosomal protein L5 pseudogene 19 O - 20121230 -9606 100270907 RPL6P12 - RPL6_11_535 HGNC:35681 4 4q32.3-q33 ribosomal protein L6 pseudogene 12 pseudo RPL6P12 ribosomal protein L6 pseudogene 12 O - 20121230 -9606 100270908 RPL7P30 - RPL7_13_818 HGNC:36151 7 7q21.11 ribosomal protein L7 pseudogene 30 pseudo RPL7P30 ribosomal protein L7 pseudogene 30 O - 20121230 -9606 100270909 RPL7P31 - RPL7_14_803 HGNC:36988 7 7p14.3 ribosomal protein L7 pseudogene 31 pseudo RPL7P31 ribosomal protein L7 pseudogene 31 O - 20121230 -9606 100270910 RPS2P23 - RPS2_10_570 HGNC:35760 5 5q12 ribosomal protein S2 pseudogene 23 pseudo RPS2P23 ribosomal protein S2 pseudogene 23 O - 20121230 -9606 100270911 RPS2P30 - RPS2_10_800 HGNC:36987 7 7p15.1 ribosomal protein S2 pseudogene 30 pseudo RPS2P30 ribosomal protein S2 pseudogene 30 O - 20121230 -9606 100270912 RPS2P24 - RPS2_11_579 HGNC:35887 5 5q14.1 ribosomal protein S2 pseudogene 24 pseudo RPS2P24 ribosomal protein S2 pseudogene 24 O - 20121230 -9606 100270913 RPS2P25 - RPS2_12_592 HGNC:36410 5 5q14.3 ribosomal protein S2 pseudogene 25 pseudo RPS2P25 ribosomal protein S2 pseudogene 25 O - 20121230 -9606 100270914 RPS7P12 - RPS7_6_1816 HGNC:36147 X Xq26 ribosomal protein S7 pseudogene 12 pseudo RPS7P12 ribosomal protein S7 pseudogene 12 O - 20121230 -9606 100270915 RPSAP37 - RPSA_10_610 HGNC:35844 5 5q23.2 ribosomal protein SA pseudogene 37 pseudo RPSAP37 ribosomal protein SA pseudogene 37 O - 20121230 -9606 100270916 RPSAP35 - RPSA_13_513 HGNC:36447 4 4q26 ribosomal protein SA pseudogene 35 pseudo RPSAP35 ribosomal protein SA pseudogene 35 O - 20121230 -9606 100270917 RPSAP40 - RPSA_13_766 HGNC:36828 6 6q25.1 ribosomal protein SA pseudogene 40 pseudo RPSAP40 ribosomal protein SA pseudogene 40 O - 20121230 -9606 100270918 RPSAP41 - RPSA_17_711 HGNC:36663 6 6q13 ribosomal protein SA pseudogene 41 pseudo RPSAP41 ribosomal protein SA pseudogene 41 O - 20121230 -9606 100270919 RPSAP42 - RPSA_18_761 HGNC:36265 6 6q23.3 ribosomal protein SA pseudogene 42 pseudo RPSAP42 ribosomal protein SA pseudogene 42 O - 20121230 -9606 100270920 RPL12P15 - RPL12_1_272 HGNC:36619 2 2q14.3 ribosomal protein L12 pseudogene 15 pseudo RPL12P15 ribosomal protein L12 pseudogene 15 O - 20121230 -9606 100270921 RPL12P21 - RPL12_3_619 HGNC:36845 5 5q31 ribosomal protein L12 pseudogene 21 pseudo RPL12P21 ribosomal protein L12 pseudogene 21 O - 20121230 -9606 100270922 RPL12P22 - RPL12_4_640 HGNC:35762 5 5q35.2 ribosomal protein L12 pseudogene 22 pseudo RPL12P22 ribosomal protein L12 pseudogene 22 O - 20121230 -9606 100270923 RPL12P20 - RPL12_5_471 HGNC:36968 4 4p13 ribosomal protein L12 pseudogene 20 pseudo RPL12P20 ribosomal protein L12 pseudogene 20 O - 20121230 -9606 100270924 RPL12P24 - RPL12_6_940 HGNC:35952 8 8q23 ribosomal protein L12 pseudogene 24 pseudo RPL12P24 ribosomal protein L12 pseudogene 24 O - 20121230 -9606 100270925 RPL12P23 - RPL12_7_777 HGNC:36408 6 6q27 ribosomal protein L12 pseudogene 23 pseudo RPL12P23 ribosomal protein L12 pseudogene 23 O - 20121230 -9606 100270926 RPL12P25 - RPL12_9_954 HGNC:37008 9 9p24.3 ribosomal protein L12 pseudogene 25 pseudo RPL12P25 ribosomal protein L12 pseudogene 25 O - 20121230 -9606 100270927 RPL13P9 - RPL13_1_589 HGNC:36587 5 5q13-q14 ribosomal protein L13 pseudogene 9 pseudo RPL13P9 ribosomal protein L13 pseudogene 9 O - 20121230 -9606 100270928 RPL13P8 - RPL13_2_391 HGNC:35513 3 3q13.13 ribosomal protein L13 pseudogene 8 pseudo RPL13P8 ribosomal protein L13 pseudogene 8 O - 20121230 -9606 100270930 RPL14P2 - RPL14_1_377 HGNC:35962 3 3p14.2 ribosomal protein L14 pseudogene 2 pseudo RPL14P2 ribosomal protein L14 pseudogene 2 O - 20121230 -9606 100270933 RPL15P6 - RPL15_1_425 HGNC:36185 3 3q25.32 ribosomal protein L15 pseudogene 6 pseudo RPL15P6 ribosomal protein L15 pseudogene 6 O - 20121230 -9606 100270934 RPL15P8 - RPL15_2_518 HGNC:36390 4 4q28.2 ribosomal protein L15 pseudogene 8 pseudo RPL15P8 ribosomal protein L15 pseudogene 8 O - 20121230 -9606 100270935 RPL15P9 - RPL15P10|RPL15_3_755 HGNC:36466 6 6q23.2 ribosomal protein L15 pseudogene 9 pseudo RPL15P9 ribosomal protein L15 pseudogene 9 O - 20121230 -9606 100270936 RPL17P10 - RPL17_2_309 HGNC:35838 2 2q31.3 ribosomal protein L17 pseudogene 10 pseudo RPL17P10 ribosomal protein L17 pseudogene 10 O - 20121230 -9606 100270937 RPL17P11 - RPL17_3_336 HGNC:36509 2 2q37 ribosomal protein L17 pseudogene 11 pseudo RPL17P11 ribosomal protein L17 pseudogene 11 O - 20121230 -9606 100270938 RPL17P12 - RPL17_6_281 HGNC:36779 2 2q22.3 ribosomal protein L17 pseudogene 12 pseudo RPL17P12 ribosomal protein L17 pseudogene 12 O - 20121230 -9606 100270939 RPL17P13 - RPL17_7_285 HGNC:36378 2 2q23.2 ribosomal protein L17 pseudogene 13 pseudo RPL17P13 ribosomal protein L17 pseudogene 13 O - 20121230 -9606 100270940 RPL17P28 - RPL17_7_858 HGNC:36055 7 7q34 ribosomal protein L17 pseudogene 28 pseudo RPL17P28 ribosomal protein L17 pseudogene 28 O - 20121230 -9606 100270941 RPL17P14 - RPL17_8_331 HGNC:35806 2 2q36.3 ribosomal protein L17 pseudogene 14 pseudo RPL17P14 ribosomal protein L17 pseudogene 14 O - 20121230 -9606 100270942 RPL17P32 - RPL17_8_939 HGNC:36492 8 8q23 ribosomal protein L17 pseudogene 32 pseudo RPL17P32 ribosomal protein L17 pseudogene 32 O - 20121230 -9606 100270943 RPL17P17 - RPL17_9_379 HGNC:35515 3 3p14.1 ribosomal protein L17 pseudogene 17 pseudo RPL17P17 ribosomal protein L17 pseudogene 17 O - 20121230 -9606 100270944 RPL18P5 - RPL18_3_852 HGNC:36425 7 7q33 ribosomal protein L18 pseudogene 5 pseudo RPL18P5 ribosomal protein L18 pseudogene 5 O - 20121230 -9606 100270945 RPL18P7 - RPL18_4_944 HGNC:35936 8 8q23.3 ribosomal protein L18 pseudogene 7 pseudo RPL18P7 ribosomal protein L18 pseudogene 7 O - 20121230 -9606 100270946 RPL19P6 - RPL19_2_411 HGNC:36795 3 3q23 ribosomal protein L19 pseudogene 6 pseudo RPL19P6 ribosomal protein L19 pseudogene 6 O - 20121230 -9606 100270948 RPL19P10 - RPL19_3_638 HGNC:36534 5 5q34 ribosomal protein L19 pseudogene 10 pseudo RPL19P10 ribosomal protein L19 pseudogene 10 O - 20121230 -9606 100270950 RPL19P11 - RPL19_6_547 HGNC:36953 5 5p13.3 ribosomal protein L19 pseudogene 11 pseudo RPL19P11 ribosomal protein L19 pseudogene 11 O - 20121230 -9606 100270951 RPL19P14 - RPL19_9_931 HGNC:35684 8 8q22.2 ribosomal protein L19 pseudogene 14 pseudo RPL19P14 ribosomal protein L19 pseudogene 14 O - 20121230 -9606 100270952 RPL21P27 - RPL21_3_112 HGNC:36371 1 1q23 ribosomal protein L21 pseudogene 27 pseudo RPL21P27 ribosomal protein L21 pseudogene 27 O - 20121230 -9606 100270953 RPL21P33 - RPL21_5_222 HGNC:36686 2 2p16.1 ribosomal protein L21 pseudogene 33 pseudo RPL21P33 ribosomal protein L21 pseudogene 33 O - 20121230 -9606 100270954 RPL21P34 - RPL21_6_274 HGNC:36529 2 2q21 ribosomal protein L21 pseudogene 34 pseudo RPL21P34 ribosomal protein L21 pseudogene 34 O - 20121230 -9606 100270955 RPL21P35 - RPL21_8_333 HGNC:36900 2 2q37.1 ribosomal protein L21 pseudogene 35 pseudo RPL21P35 ribosomal protein L21 pseudogene 35 O - 20121230 -9606 100270956 RPL21P36 - RPL21_9_206 HGNC:36128 2 2p21 ribosomal protein L21 pseudogene 36 pseudo RPL21P36 ribosomal protein L21 pseudogene 36 O - 20121230 -9606 100270957 RPL22P8 - RPL22_4_256 HGNC:36782 2 2q12 ribosomal protein L22 pseudogene 8 pseudo RPL22P8 ribosomal protein L22 pseudogene 8 O - 20121230 -9606 100270959 RPL22P16 - RPL22_6_780 HGNC:36536 7 7p22.1 ribosomal protein L22 pseudogene 16 pseudo RPL22P16 ribosomal protein L22 pseudogene 16 O - 20121230 -9606 100270960 RPL22P14 - RPL22_8_723 HGNC:35990 6 6q15 ribosomal protein L22 pseudogene 14 pseudo RPL22P14 ribosomal protein L22 pseudogene 14 O - 20121230 -9606 100270961 RPL23P4 - RPL23_2_327 HGNC:36678 2 2q35 ribosomal protein L23 pseudogene 4 pseudo RPL23P4 ribosomal protein L23 pseudogene 4 O - 20121230 -9606 100270962 RPL23P10 - RPL23_2_893 HGNC:36177 8 8p12 ribosomal protein L23 pseudogene 10 pseudo RPL23P10 ribosomal protein L23 pseudogene 10 O - 20121230 -9606 100270963 RPL24P7 - RPL24_2_348 HGNC:36862 3 3p24.3 ribosomal protein L24 pseudogene 7 pseudo RPL24P7 ribosomal protein L24 pseudogene 7 O - 20121230 -9606 100270964 RPL24P8 - RPL24_4_982 HGNC:36409 9 9q21.11 ribosomal protein L24 pseudogene 8 pseudo RPL24P8 ribosomal protein L24 pseudogene 8 O - 20121230 -9606 100270965 RPL26P15 - RPL26_2_213 HGNC:35512 2 2p21 ribosomal protein L26 pseudogene 15 pseudo RPL26P15 ribosomal protein L26 pseudogene 15 O - 20121230 -9606 100270966 RPL26P25 - RPL26_6_894 HGNC:36383 8 8p12 ribosomal protein L26 pseudogene 25 pseudo RPL26P25 ribosomal protein L26 pseudogene 25 O - 20121230 -9606 100270967 RPL26P26 - RPL26_7_907 HGNC:35693 8 8q12.1 ribosomal protein L26 pseudogene 26 pseudo RPL26P26 ribosomal protein L26 pseudogene 26 O - 20121230 -9606 100270968 RPL26P18 - RPL26_9_632 HGNC:36579 5 5q33.3 ribosomal protein L26 pseudogene 18 pseudo RPL26P18 ribosomal protein L26 pseudogene 18 O - 20121230 -9606 100270969 RPL27P5 - RPL27_2_231 HGNC:36120 2 2p13 ribosomal protein L27 pseudogene 5 pseudo RPL27P5 ribosomal protein L27 pseudogene 5 O - 20121230 -9606 100270970 RPL27P9 - RPL27_4_375 HGNC:36874 3 3p14.3 ribosomal protein L27 pseudogene 9 pseudo RPL27P9 ribosomal protein L27 pseudogene 9 O - 20121230 -9606 100270971 RPL28P2 - RPL28_1_335 HGNC:36234 2 2q37.1 ribosomal protein L28 pseudogene 2 pseudo RPL28P2 ribosomal protein L28 pseudogene 2 O - 20121230 -9606 100270972 RPL29P7 - RPL29_3_121 HGNC:36859 1 1q24.2 ribosomal protein L29 pseudogene 7 pseudo RPL29P7 ribosomal protein L29 pseudogene 7 O - 20121230 -9606 100270973 RPL29P10 - RPL29_3_370 HGNC:36054 3 3p21 ribosomal protein L29 pseudogene 10 pseudo RPL29P10 ribosomal protein L29 pseudogene 10 O - 20121230 -9606 100270974 RPL29P14 - RPL29_7_626 HGNC:36687 5 5q32 ribosomal protein L29 pseudogene 14 pseudo RPL29P14 ribosomal protein L29 pseudogene 14 O - 20121230 -9606 100270975 RPL30P1 - RPL30_1_127 HGNC:36642 1 1q25.1 ribosomal protein L30 pseudogene 1 pseudo RPL30P1 ribosomal protein L30 pseudogene 1 O - 20121230 -9606 100270976 RPL30P2 - RPL30_1_286 HGNC:35642 2 2q23.3 ribosomal protein L30 pseudogene 2 pseudo RPL30P2 ribosomal protein L30 pseudogene 2 O - 20121230 -9606 100270977 RPL30P3 - RPL30_2_193 HGNC:36380 2 2p25 ribosomal protein L30 pseudogene 3 pseudo RPL30P3 ribosomal protein L30 pseudogene 3 O - 20121230 -9606 100270978 RPL30P5 - RPL30_2_497 HGNC:36302 4 4q21.23 ribosomal protein L30 pseudogene 5 pseudo RPL30P5 ribosomal protein L30 pseudogene 5 O - 20121230 -9606 100270979 RPL30P7 - RPL30_3_541 HGNC:36402 5 5p15.2 ribosomal protein L30 pseudogene 7 pseudo RPL30P7 ribosomal protein L30 pseudogene 7 O - 20121230 -9606 100270980 RPL30P6 - RPL30_4_501 HGNC:37015 4 4q22.3 ribosomal protein L30 pseudogene 6 pseudo RPL30P6 ribosomal protein L30 pseudogene 6 O - 20121230 -9606 100270981 RPL30P9 - RPL30_5_882 HGNC:35763 8 8p22 ribosomal protein L30 pseudogene 9 pseudo RPL30P9 ribosomal protein L30 pseudogene 9 O - 20121230 -9606 100270982 RPL30P10 - RPL30_5_906 HGNC:36822 8 8q12.1 ribosomal protein L30 pseudogene 10 pseudo RPL30P10 ribosomal protein L30 pseudogene 10 O - 20121230 -9606 100270983 RPL31P13 - RPL31_2_164 HGNC:35598 1 1q32.3 ribosomal protein L31 pseudogene 13 pseudo RPL31P13 ribosomal protein L31 pseudogene 13 O - 20121230 -9606 100270984 RPL31P15 - RPL31_3_303 HGNC:36339 2 2qter ribosomal protein L31 pseudogene 15 pseudo RPL31P15 ribosomal protein L31 pseudogene 15 O - 20121230 -9606 100270985 RPL31P19 - RPL31_5_346 HGNC:35589 3 3p24.3 ribosomal protein L31 pseudogene 19 pseudo RPL31P19 ribosomal protein L31 pseudogene 19 O - 20121230 -9606 100270986 RPL31P20 - RPL31_6_349 HGNC:36303 3 3p24.2 ribosomal protein L31 pseudogene 20 pseudo RPL31P20 ribosomal protein L31 pseudogene 20 O - 20121230 -9606 100270987 RPL31P25 - RPL31_6_464 HGNC:36698 4 4p15.31 ribosomal protein L31 pseudogene 25 pseudo RPL31P25 ribosomal protein L31 pseudogene 25 O - 20121230 -9606 100270988 RPL31P21 - RPL31_8_410 HGNC:36245 3 3q23 ribosomal protein L31 pseudogene 21 pseudo RPL31P21 ribosomal protein L31 pseudogene 21 O - 20121230 -9606 100270989 RPL31P22 - RPL31_9_449 HGNC:36430 3 3q29 ribosomal protein L31 pseudogene 22 pseudo RPL31P22 ribosomal protein L31 pseudogene 22 O - 20121230 -9606 100270990 RPL31P29 - RPL31_9_773 HGNC:36647 6 6q25.2 ribosomal protein L31 pseudogene 29 pseudo RPL31P29 ribosomal protein L31 pseudogene 29 O - 20121230 -9606 100270991 RPL32P8 - RPL32_2_419 HGNC:36414 3 3q25 ribosomal protein L32 pseudogene 8 pseudo RPL32P8 ribosomal protein L32 pseudogene 8 O - 20121230 -9606 100270992 RPL32P9 - RPL32_3_420 HGNC:35481 3 3q25.1 ribosomal protein L32 pseudogene 9 pseudo RPL32P9 ribosomal protein L32 pseudogene 9 O - 20121230 -9606 100270993 RPL32P13 - RPL32_4_510 HGNC:35950 4 4q25 ribosomal protein L32 pseudogene 13 pseudo RPL32P13 ribosomal protein L32 pseudogene 13 O - 20121230 -9606 100270994 RPL32P14 - RPL32_5_546 HGNC:37038 5 5p14.3 ribosomal protein L32 pseudogene 14 pseudo RPL32P14 ribosomal protein L32 pseudogene 14 O - 20121230 -9606 100270995 RPL34P5 - RPL34_2_101 HGNC:36527 1 1q21 ribosomal protein L34 pseudogene 5 pseudo RPL34P5 ribosomal protein L34 pseudogene 5 O - 20121230 -9606 100270996 RPL34P12 - RPL34_2_514 HGNC:35845 4 4q26 ribosomal protein L34 pseudogene 12 pseudo RPL34P12 ribosomal protein L34 pseudogene 12 O - 20121230 -9606 100270997 RPL34P13 - RPL34_3_616 HGNC:36398 5 5q23 ribosomal protein L34 pseudogene 13 pseudo RPL34P13 ribosomal protein L34 pseudogene 13 O - 20121230 -9606 100270998 RPL34P6 - RPL34_4_146 HGNC:35810 1 1q32.1 ribosomal protein L34 pseudogene 6 pseudo RPL34P6 ribosomal protein L34 pseudogene 6 O - 20121230 -9606 100270999 RPL34P8 - RPL34_5_265 HGNC:36963 2 2q12.1 ribosomal protein L34 pseudogene 8 pseudo RPL34P8 ribosomal protein L34 pseudogene 8 O - 20121230 -9606 100271000 RPL34P15 - RPL34_5_775 HGNC:35965 6 6q26 ribosomal protein L34 pseudogene 15 pseudo RPL34P15 ribosomal protein L34 pseudogene 15 O - 20121230 -9606 100271001 RPL34P17 - RPL34_6_902 HGNC:36636 8 8q11.23 ribosomal protein L34 pseudogene 17 pseudo RPL34P17 ribosomal protein L34 pseudogene 17 O - 20121230 -9606 100271002 RPL34P9 - RPL34_7_396 HGNC:36771 3 3q13.33 ribosomal protein L34 pseudogene 9 pseudo RPL34P9 ribosomal protein L34 pseudogene 9 O - 20121230 -9606 100271003 RPL34P18 - RPL34_7_926 HGNC:35968 8 8q22.1 ribosomal protein L34 pseudogene 18 pseudo RPL34P18 ribosomal protein L34 pseudogene 18 O - 20121230 -9606 100271004 RPL34P10 - RPL34_8_445 HGNC:36962 3 3q27.2 ribosomal protein L34 pseudogene 10 pseudo RPL34P10 ribosomal protein L34 pseudogene 10 O - 20121230 -9606 100271006 RPL35P4 - RPL35_3_799 HGNC:36285 7 7p15.2 ribosomal protein L35 pseudogene 4 pseudo RPL35P4 ribosomal protein L35 pseudogene 4 O - 20121230 -9606 100271007 RPL35P6 - RPL35_5_881 HGNC:35520 8 8p22 ribosomal protein L35 pseudogene 6 pseudo RPL35P6 ribosomal protein L35 pseudogene 6 O - 20121230 -9606 100271008 RPL36P6 - RPL36_2_186 HGNC:36046 1 1q43 ribosomal protein L36 pseudogene 6 pseudo RPL36P6 ribosomal protein L36 pseudogene 6 O - 20121230 -9606 100271009 RPL36P9 - RPL36_2_687 HGNC:36746 6 6p21.2 ribosomal protein L36 pseudogene 9 pseudo RPL36P9 ribosomal protein L36 pseudogene 9 O - 20121230 -9606 100271010 RPL36P7 - RPL36_3_453 HGNC:35830 3 3q29 ribosomal protein L36 pseudogene 7 pseudo RPL36P7 ribosomal protein L36 pseudogene 7 O - 20121230 -9606 100271011 RPL36P10 - RPL36_3_697 HGNC:36318 6 6p12.3 ribosomal protein L36 pseudogene 10 pseudo RPL36P10 ribosomal protein L36 pseudogene 10 O - 20121230 -9606 100271012 RPL36P12 - RPL36_4_831 HGNC:35590 7 7q22-q31.1 ribosomal protein L36 pseudogene 12 pseudo RPL36P12 ribosomal protein L36 pseudogene 12 O - 20121230 -9606 100271013 RPL36P13 - RPL36_5_837 HGNC:36941 7 7q31 ribosomal protein L36 pseudogene 13 pseudo RPL36P13 ribosomal protein L36 pseudogene 13 O - 20121230 -9606 100271014 RPL37P8 - RPL37_2_190 HGNC:36279 1 1q44 ribosomal protein L37 pseudogene 8 pseudo RPL37P8 ribosomal protein L37 pseudogene 8 O - 20121230 -9606 100271015 RPL37P10 - RPL37_2_245 HGNC:36951 2 2p11.2 ribosomal protein L37 pseudogene 10 pseudo RPL37P10 ribosomal protein L37 pseudogene 10 O - 20121230 -9606 100271016 RPL37P11 - RPL37_3_203 HGNC:36459 2 2p23 ribosomal protein L37 pseudogene 11 pseudo RPL37P11 ribosomal protein L37 pseudogene 11 O - 20121230 -9606 100271017 RPL37P12 - RPL37_3_259 HGNC:36989 2 2q13 ribosomal protein L37 pseudogene 12 pseudo RPL37P12 ribosomal protein L37 pseudogene 12 O - 20121230 -9606 100271018 RPL37P13 - RPL37_4_228 HGNC:36255 2 2p15 ribosomal protein L37 pseudogene 13 pseudo RPL37P13 ribosomal protein L37 pseudogene 13 O - 20121230 -9606 100271019 RPL37P14 - RPL37_4_470 HGNC:36871 4 4p13-p12 ribosomal protein L37 pseudogene 14 pseudo RPL37P14 ribosomal protein L37 pseudogene 14 O - 20121230 -9606 100271020 RPL37P15 - RPL37_5_710 HGNC:36659 6 6q12-q13 ribosomal protein L37 pseudogene 15 pseudo RPL37P15 ribosomal protein L37 pseudogene 15 O - 20121230 -9606 100271021 RPL37P16 - RPL37_6_843 HGNC:35949 7 7q32.1 ribosomal protein L37 pseudogene 16 pseudo RPL37P16 ribosomal protein L37 pseudogene 16 O - 20121230 -9606 100271022 RPL39P11 - RPL39_3_134 HGNC:36798 1 1q25 ribosomal protein L39 pseudogene 11 pseudo RPL39P11 ribosomal protein L39 pseudogene 11 O - 20121230 -9606 100271023 RPL39P16 - RPL39_5_258 HGNC:35912 2 2q13 ribosomal protein L39 pseudogene 16 pseudo RPL39P16 ribosomal protein L39 pseudogene 16 O - 20121230 -9606 100271024 RPL39P17 - RPL39_6_343 HGNC:35545 3 3p25.1 ribosomal protein L39 pseudogene 17 pseudo RPL39P17 ribosomal protein L39 pseudogene 17 O - 20121230 -9606 100271025 RPL39P18 - RPL39_7_347 HGNC:36111 3 3p24.3 ribosomal protein L39 pseudogene 18 pseudo RPL39P18 ribosomal protein L39 pseudogene 18 O - 20121230 -9606 100271027 RPL39P19 - RPL39_8_448 HGNC:36346 3 3q27 ribosomal protein L39 pseudogene 19 pseudo RPL39P19 ribosomal protein L39 pseudogene 19 O - 20121230 -9606 100271028 RPL39P22 - RPL39_8_554 HGNC:36072 5 5p13 ribosomal protein L39 pseudogene 22 pseudo RPL39P22 ribosomal protein L39 pseudogene 22 O - 20121230 -9606 100271030 UBA52P4 - RPL40_1_352 HGNC:35929 3 3p22 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 4 pseudo UBA52P4 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 4 O - 20121230 -9606 100271031 UBA52P5 - RPL40_2_948 HGNC:36993 8 8q24.13 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 5 pseudo UBA52P5 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 5 O - 20121230 -9606 100271033 RPL4P6 - RPL4_4_1752 HGNC:35611 22 22q13.2 ribosomal protein L4 pseudogene 6 pseudo RPL4P6 ribosomal protein L4 pseudogene 6 O - 20121230 -9606 100271034 RPL6P24 - RPL6_8_1023 HGNC:36343 10 10p13 ribosomal protein L6 pseudogene 24 pseudo RPL6P24 ribosomal protein L6 pseudogene 24 O - 20121230 -9606 100271035 RPL6P26 - RPL6_9_1550 HGNC:36152 17 17q21.31 ribosomal protein L6 pseudogene 26 pseudo RPL6P26 ribosomal protein L6 pseudogene 26 O - 20121230 -9606 100271036 RPL7AP19 - RPL7A_2_119 HGNC:36820 1 1q23 ribosomal protein L7a pseudogene 19 pseudo RPL7AP19 ribosomal protein L7a pseudogene 19 O - 20121230 -9606 100271037 RPL7AP20 - RPL7A_3_155 HGNC:36358 1 1q32.1 ribosomal protein L7a pseudogene 20 pseudo RPL7AP20 ribosomal protein L7a pseudogene 20 O - 20121230 -9606 100271038 RPL7AP21 - RPL7A_4_120 HGNC:37020 1 1q23 ribosomal protein L7a pseudogene 21 pseudo RPL7AP21 ribosomal protein L7a pseudogene 21 O - 20121230 -9606 100271039 RPL7AP22 - RPL7A_4_289 HGNC:36592 2 2q24.1 ribosomal protein L7a pseudogene 22 pseudo RPL7AP22 ribosomal protein L7a pseudogene 22 O - 20121230 -9606 100271040 RPL7AP23 - RPL7A_5_385 HGNC:36884 3 3p12.2 ribosomal protein L7a pseudogene 23 pseudo RPL7AP23 ribosomal protein L7a pseudogene 23 O - 20121230 -9606 100271041 RPL7AP24 - RPL7A_6_424 HGNC:36588 3 3q24 ribosomal protein L7a pseudogene 24 pseudo RPL7AP24 ribosomal protein L7a pseudogene 24 O - 20121230 -9606 100271042 RPL7AP25 - RPL7A_6_441 HGNC:36714 3 3q26.33 ribosomal protein L7a pseudogene 25 pseudo RPL7AP25 ribosomal protein L7a pseudogene 25 O - 20121230 -9606 100271043 RPL7AP29 - RPL7A_7_455 HGNC:36394 4 4p16.2 ribosomal protein L7a pseudogene 29 pseudo RPL7AP29 ribosomal protein L7a pseudogene 29 O - 20121230 -9606 100271044 RPL8P5 - RPL8_2_1740 HGNC:35758 22 22q11.21 ribosomal protein L8 pseudogene 5 pseudo RPL8P5 ribosomal protein L8 pseudogene 5 O - 20121230 -9606 100271045 RPL9P24 - RPL9_7_1272 HGNC:36347 12 12q23.2 ribosomal protein L9 pseudogene 24 pseudo RPL9P24 ribosomal protein L9 pseudogene 24 O - 20121230 -9606 100271047 RPLP0P7 - RPLP0_2_288 HGNC:36578 2 2q24.1 ribosomal protein, large, P0 pseudogene 7 pseudo RPLP0P7 ribosomal protein, large, P0 pseudogene 7 O - 20121230 -9606 100271049 RPLP1P9 - RPLP1_3_885 HGNC:36069 8 8p21-p11.2 ribosomal protein, large, P1 pseudogene 9 pseudo RPLP1P9 ribosomal protein, large, P1 pseudogene 9 O - 20121230 -9606 100271050 RPS10P16 - RPS10_4_945 HGNC:36200 8 8q24.11 ribosomal protein S10 pseudogene 16 pseudo RPS10P16 ribosomal protein S10 pseudogene 16 O - 20121230 -9606 100271052 RPS11P4 - RPS11_2_972 HGNC:35644 9 9p21.1 ribosomal protein S11 pseudogene 4 pseudo RPS11P4 ribosomal protein S11 pseudogene 4 O - 20121230 -9606 100271053 RPS12P5 - RPS12_1_355 HGNC:36525 3 3p24.1 ribosomal protein S12 pseudogene 5 pseudo RPS12P5 ribosomal protein S12 pseudogene 5 O - 20121230 -9606 100271054 RPS12P6 - RPS12_2_384 HGNC:35790 3 3p12 ribosomal protein S12 pseudogene 6 pseudo RPS12P6 ribosomal protein S12 pseudogene 6 O - 20121230 -9606 100271055 RPS12P7 - RPS12_3_426 HGNC:36699 3 3q25.1 ribosomal protein S12 pseudogene 7 pseudo RPS12P7 ribosomal protein S12 pseudogene 7 O - 20121230 -9606 100271056 RPS12P10 - RPS12_4_622 HGNC:35824 5 5q31.3 ribosomal protein S12 pseudogene 10 pseudo RPS12P10 ribosomal protein S12 pseudogene 10 O - 20121230 -9606 100271057 RPS12P13 - RPS12_5_735 HGNC:36549 6 6q21 ribosomal protein S12 pseudogene 13 pseudo RPS12P13 ribosomal protein S12 pseudogene 13 O - 20121230 -9606 100271058 RPS12P14 - RPS12_6_698 HGNC:35632 6 6p12 ribosomal protein S12 pseudogene 14 pseudo RPS12P14 ribosomal protein S12 pseudogene 14 O - 20121230 -9606 100271059 RPS12P15 - RPS12_7_934 HGNC:35610 8 8q22.3 ribosomal protein S12 pseudogene 15 pseudo RPS12P15 ribosomal protein S12 pseudogene 15 O - 20121230 -9606 100271060 RPS13P4 - RPS13_2_199 HGNC:35731 2 2p23.3 ribosomal protein S13 pseudogene 4 pseudo RPS13P4 ribosomal protein S13 pseudogene 4 O - 20121230 -9606 100271061 RPS13P5 - RPS13_2_201 HGNC:36610 2 2p23.3 ribosomal protein S13 pseudogene 5 pseudo RPS13P5 ribosomal protein S13 pseudogene 5 O - 20121230 -9606 100271062 RPS13P6 - RPS13_4_614 HGNC:35653 5 5q31 ribosomal protein S13 pseudogene 6 pseudo RPS13P6 ribosomal protein S13 pseudogene 6 O - 20121230 -9606 100271063 RPS14P1 - RPS14_1_156 HGNC:35572 1 1q32 ribosomal protein S14 pseudogene 1 pseudo RPS14P1 ribosomal protein S14 pseudogene 1 O - 20121230 -9606 100271064 RPS14P2 - RPS14_2_132 HGNC:36080 1 1q24 ribosomal protein S14 pseudogene 2 pseudo RPS14P2 ribosomal protein S14 pseudogene 2 O - 20121230 -9606 100271065 RPS14P7 - RPS14_4_530 HGNC:36961 4 4q32.1 ribosomal protein S14 pseudogene 7 pseudo RPS14P7 ribosomal protein S14 pseudogene 7 O - 20121230 -9606 100271066 RPS15P2 - RPS15_1_177 HGNC:36033 1 1q42.2 ribosomal protein S15 pseudogene 2 pseudo RPS15P2 ribosomal protein S15 pseudogene 2 O - 20121230 -9606 100271067 RPS16P3 - RPS16_2_279 HGNC:35986 2 2q21.2 ribosomal protein S16 pseudogene 3 pseudo RPS16P3 ribosomal protein S16 pseudogene 3 O - 20121230 -9606 100271068 RPS16P4 - RPS16_2_363 HGNC:36502 3 3p22 ribosomal protein S16 pseudogene 4 pseudo RPS16P4 ribosomal protein S16 pseudogene 4 O - 20121230 -9606 100271069 RPS17P7 - RPS17_1_271 HGNC:35796 2 2q14 ribosomal protein S17 pseudogene 7 pseudo RPS17P7 ribosomal protein S17 pseudogene 7 O - 20121230 -9606 100271070 RPS17P8 - RPS17_2_307 HGNC:36772 2 2q32 ribosomal protein S17 pseudogene 8 pseudo RPS17P8 ribosomal protein S17 pseudogene 8 O - 20121230 -9606 100271071 RPS17P10 - RPS17_2_414 HGNC:36438 3 3q24 ribosomal protein S17 pseudogene 10 pseudo RPS17P10 ribosomal protein S17 pseudogene 10 O - 20121230 -9606 100271072 RPS17P11 - RPS17_4_560 HGNC:36132 5 5q11.2 ribosomal protein S17 pseudogene 11 pseudo RPS17P11 ribosomal protein S17 pseudogene 11 O - 20121230 -9606 100271073 RPS17P13 - RPS17_6_804 HGNC:36664 7 7p14.2 ribosomal protein S17 pseudogene 13 pseudo RPS17P13 ribosomal protein S17 pseudogene 13 O - 20121230 -9606 100271074 RPS17P14 - RPS17_6_941 HGNC:35534 8 8q23.1 ribosomal protein S17 pseudogene 14 pseudo RPS17P14 ribosomal protein S17 pseudogene 14 O - 20121230 -9606 100271075 RPS18P4 - RPS18_1_117 HGNC:36952 1 1q24 ribosomal protein S18 pseudogene 4 pseudo RPS18P4 ribosomal protein S18 pseudogene 4 O - 20121230 -9606 100271076 RPS18P6 - RPS18_3_386 HGNC:36028 3 3q11.2 ribosomal protein S18 pseudogene 6 pseudo RPS18P6 ribosomal protein S18 pseudogene 6 O - 20121230 -9606 100271077 RPS18P11 - RPS18_3_913 HGNC:36319 8 8q13.3 ribosomal protein S18 pseudogene 11 pseudo RPS18P11 ribosomal protein S18 pseudogene 11 O - 20121230 -9606 100271078 RPS19P6 - RPS19_2_988 HGNC:36217 9 9q21.31 ribosomal protein S19 pseudogene 6 pseudo RPS19P6 ribosomal protein S19 pseudogene 6 O - 20121230 -9606 100271079 RPS20P8 - RPS20_2_149 HGNC:35770 1 1q32.1 ribosomal protein S20 pseudogene 8 pseudo RPS20P8 ribosomal protein S20 pseudogene 8 O - 20121230 -9606 100271080 RPS20P9 - RPS20_3_230 HGNC:36472 2 2p15 ribosomal protein S20 pseudogene 9 pseudo RPS20P9 ribosomal protein S20 pseudogene 9 O - 20121230 -9606 100271081 RPS20P10 - RPS20_3_240 HGNC:36800 2 2p13.2 ribosomal protein S20 pseudogene 10 pseudo RPS20P10 ribosomal protein S20 pseudogene 10 O - 20121230 -9606 100271082 RPS20P11 - RPS20_4_266 HGNC:36084 2 2q13 ribosomal protein S20 pseudogene 11 pseudo RPS20P11 ribosomal protein S20 pseudogene 11 O - 20121230 -9606 100271083 RPS20P12 - RPS20_4_337 HGNC:36519 2 2q37.1 ribosomal protein S20 pseudogene 12 pseudo RPS20P12 ribosomal protein S20 pseudogene 12 O - 20121230 -9606 100271084 RPS20P13 - RPS20_5_284 HGNC:36071 2 2q22.3 ribosomal protein S20 pseudogene 13 pseudo RPS20P13 ribosomal protein S20 pseudogene 13 O - 20121230 -9606 100271085 RPS20P15 - RPS20_5_351 HGNC:36340 3 3p22 ribosomal protein S20 pseudogene 15 pseudo RPS20P15 ribosomal protein S20 pseudogene 15 O - 20121230 -9606 100271086 RPS20P16 - RPS20_7_597 HGNC:35851 5 5q15 ribosomal protein S20 pseudogene 16 pseudo RPS20P16 ribosomal protein S20 pseudogene 16 O - 20121230 -9606 100271087 RPS20P22 - RPS20_8_895 HGNC:36379 8 8p12 ribosomal protein S20 pseudogene 22 pseudo RPS20P22 ribosomal protein S20 pseudogene 22 O - 20121230 -9606 100271088 RPS20P17 - RPS20_9_642 HGNC:35822 5 5q35.3 ribosomal protein S20 pseudogene 17 pseudo RPS20P17 ribosomal protein S20 pseudogene 17 O - 20121230 -9606 100271089 RPS20P23 - RPS20_9_932 HGNC:36146 8 8q22.3 ribosomal protein S20 pseudogene 23 pseudo RPS20P23 ribosomal protein S20 pseudogene 23 O - 20121230 -9606 100271090 RPS21P1 - RPS21_1_179 HGNC:36401 1 1q42.3 ribosomal protein S21 pseudogene 1 pseudo RPS21P1 ribosomal protein S21 pseudogene 1 O - 20121230 -9606 100271091 RPS23P3 - RPS23_1_489 HGNC:35499 4 4q13.2 ribosomal protein S23 pseudogene 3 pseudo RPS23P3 ribosomal protein S23 pseudogene 3 O - 20121230 -9606 100271092 RPS23P4 - RPS23_1_526 HGNC:36633 4 4q31.22 ribosomal protein S23 pseudogene 4 pseudo RPS23P4 ribosomal protein S23 pseudogene 4 O - 20121230 -9606 100271093 RPS23P5 - RPS23_2_542 HGNC:35726 5 5p15.2 ribosomal protein S23 pseudogene 5 pseudo RPS23P5 ribosomal protein S23 pseudogene 5 O - 20121230 -9606 100271094 RPS24P5 - RPS24_1_136 HGNC:36026 1 1p36.13-q41 ribosomal protein S24 pseudogene 5 pseudo RPS24P5 ribosomal protein S24 pseudogene 5 O - 20121230 -9606 100271097 RPS24P10 - RPS24_3_344 HGNC:36554 3 3p25 ribosomal protein S24 pseudogene 10 pseudo RPS24P10 ribosomal protein S24 pseudogene 10 O - 20121230 -9606 100271098 RPS24P12 - RPS24_3_730 HGNC:35623 6 6q21 ribosomal protein S24 pseudogene 12 pseudo RPS24P12 ribosomal protein S24 pseudogene 12 O - 20121230 -9606 100271100 RPS25P2 - RPS25_1_159 HGNC:36701 1 1q32.2 ribosomal protein S25 pseudogene 2 pseudo RPS25P2 ribosomal protein S25 pseudogene 2 O - 20121230 -9606 100271101 RPS25P3 - RPS25_1_198 HGNC:36073 2 2p24.1 ribosomal protein S25 pseudogene 3 pseudo RPS25P3 ribosomal protein S25 pseudogene 3 O - 20121230 -9606 100271102 RPS25P5 - RPS25_3_418 HGNC:35788 3 3q21-q25 ribosomal protein S25 pseudogene 5 pseudo RPS25P5 ribosomal protein S25 pseudogene 5 O - 20121230 -9606 100271103 RPS25P7 - RPS25_5_649 HGNC:36585 6 6p25 ribosomal protein S25 pseudogene 7 pseudo RPS25P7 ribosomal protein S25 pseudogene 7 O - 20121230 -9606 100271104 RPS26P12 - RPS26_2_128 HGNC:35487 1 1q24 ribosomal protein S26 pseudogene 12 pseudo RPS26P12 ribosomal protein S26 pseudogene 12 O - 20121230 -9606 100271105 RPS26P21 - RPS26_3_394 HGNC:36469 3 3q13.33 ribosomal protein S26 pseudogene 21 pseudo RPS26P21 ribosomal protein S26 pseudogene 21 O - 20121230 -9606 100271106 RPS26P13 - RPS26_4_158 HGNC:35784 1 1q32.2 ribosomal protein S26 pseudogene 13 pseudo RPS26P13 ribosomal protein S26 pseudogene 13 O - 20121230 -9606 100271107 RPS26P23 - RPS26_4_515 HGNC:36332 4 4q26 ribosomal protein S26 pseudogene 23 pseudo RPS26P23 ribosomal protein S26 pseudogene 23 O - 20121230 -9606 100271108 RPS26P18 - RPS26_5_195 HGNC:35782 2 2p24 ribosomal protein S26 pseudogene 18 pseudo RPS26P18 ribosomal protein S26 pseudogene 18 O - 20121230 -9606 100271109 RPS26P26 - RPS26_5_578 HGNC:36029 5 5q13.3 ribosomal protein S26 pseudogene 26 pseudo RPS26P26 ribosomal protein S26 pseudogene 26 O - 20121230 -9606 100271110 RPS26P19 - RPS26_6_273 HGNC:36377 2 2q21 ribosomal protein S26 pseudogene 19 pseudo RPS26P19 ribosomal protein S26 pseudogene 19 O - 20121230 -9606 100271111 RPS26P30 - RPS26_7_791 HGNC:35574 7 7p15.3 ribosomal protein S26 pseudogene 30 pseudo RPS26P30 ribosomal protein S26 pseudogene 30 O - 20121230 -9606 100271112 RPS26P22 - RPS26_8_399 HGNC:36261 3 3q13 ribosomal protein S26 pseudogene 22 pseudo RPS26P22 ribosomal protein S26 pseudogene 22 O - 20121230 -9606 100271113 RPS26P24 - RPS26_9_482 HGNC:36917 4 4q12 ribosomal protein S26 pseudogene 24 pseudo RPS26P24 ribosomal protein S26 pseudogene 24 O - 20121230 -9606 100271114 RPS26P34 - RPS26_9_922 HGNC:36894 8 8q21.13 ribosomal protein S26 pseudogene 34 pseudo RPS26P34 ribosomal protein S26 pseudogene 34 O - 20121230 -9606 100271115 RPS27P11 - RPS27_3_353 HGNC:36014 3 3p21.3-p21.2 ribosomal protein S27 pseudogene 11 pseudo RPS27P11 ribosomal protein S27 pseudogene 11 O - 20121230 -9606 100271116 RPS27P5 - RPS27_4_170 HGNC:36734 1 1q42.13 ribosomal protein S27 pseudogene 5 pseudo RPS27P5 ribosomal protein S27 pseudogene 5 O - 20121230 -9606 100271117 RPS27P12 - RPS27_4_403 HGNC:35843 3 3q21 ribosomal protein S27 pseudogene 12 pseudo RPS27P12 ribosomal protein S27 pseudogene 12 O - 20121230 -9606 100271118 RPS27P15 - RPS27_8_714 HGNC:35863 6 6q14-q15 ribosomal protein S27 pseudogene 15 pseudo RPS27P15 ribosomal protein S27 pseudogene 15 O - 20121230 -9606 100271119 RPS27P16 - RPS27_9_801 HGNC:36560 7 7p15.1 ribosomal protein S27 pseudogene 16 pseudo RPS27P16 ribosomal protein S27 pseudogene 16 O - 20121230 -9606 100271120 RPS28P2 - RPS28_1_163 HGNC:36211 1 1q41 ribosomal protein S28 pseudogene 2 pseudo RPS28P2 ribosomal protein S28 pseudogene 2 O - 20121230 -9606 100271121 RPS28P5 - RPS28_3_243 HGNC:36802 2 2p13.1 ribosomal protein S28 pseudogene 5 pseudo RPS28P5 ribosomal protein S28 pseudogene 5 O - 20121230 -9606 100271122 RPS29P13 - RPS29_2_744 HGNC:35818 6 6q22.1 ribosomal protein S29 pseudogene 13 pseudo RPS29P13 ribosomal protein S29 pseudogene 13 O - 20121230 -9606 100271123 RPS29P4 - RPS29_3_129 HGNC:35908 1 1q24-q25 ribosomal protein S29 pseudogene 4 pseudo RPS29P4 ribosomal protein S29 pseudogene 4 O - 20121230 -9606 100271124 RPS29P5 - RPS29_4_130 HGNC:35584 1 1q25.1-q25.2 ribosomal protein S29 pseudogene 5 pseudo RPS29P5 ribosomal protein S29 pseudogene 5 O - 20121230 -9606 100271125 FAUP2 - RPS30_1_440 HGNC:36535 3 3q26.33 FBR-MuSV-associated ubiquitously expressed (fox derived) pseudogene 2 pseudo FAUP2 FBR-MuSV-associated ubiquitously expressed (fox derived) pseudogene 2 O - 20121230 -9606 100271126 FAUP3 - RPS30_1_539 HGNC:36970 4 4q35.2 FBR-MuSV-associated ubiquitously expressed (fox derived) pseudogene 3 pseudo FAUP3 FBR-MuSV-associated ubiquitously expressed (fox derived) pseudogene 3 O - 20121230 -9606 100271127 RPS3AP8 - RPS3A_3_138 HGNC:35638 1 1q25 ribosomal protein S3a pseudogene 8 pseudo RPS3AP8 ribosomal protein S3a pseudogene 8 O - 20121230 -9606 100271129 RPS3AP9 - RPS3A_4_140 HGNC:36150 1 1q31.1 ribosomal protein S3a pseudogene 9 pseudo RPS3AP9 ribosomal protein S3a pseudogene 9 O - 20121230 -9606 100271130 RPS3AP17 - RPS3A_4_467 HGNC:36083 4 4p15.1 ribosomal protein S3a pseudogene 17 pseudo RPS3AP17 ribosomal protein S3a pseudogene 17 O - 20121230 -9606 100271131 RPS3AP23 - RPS3A_8_764 HGNC:36767 6 6q24.1 ribosomal protein S3a pseudogene 23 pseudo RPS3AP23 ribosomal protein S3a pseudogene 23 O - 20121230 -9606 100271132 RPS4XP5 - RPS4P5|RPS4X_1_232 HGNC:36670 2 2p15 ribosomal protein S4X pseudogene 5 pseudo RPS4XP5 ribosomal protein S4X pseudogene 5 O - 20121230 -9606 100271133 RPS4XP10 - RPS4P10|RPS4X_6_927 HGNC:35741 8 8q21.3-q22 ribosomal protein S4X pseudogene 10 pseudo RPS4XP10 ribosomal protein S4X pseudogene 10 O - 20121230 -9606 100271135 RPS6P18 - RPS6_8_1191 HGNC:36496 12 12p13.3 ribosomal protein S6 pseudogene 18 pseudo RPS6P18 ribosomal protein S6 pseudogene 18 O - 20121230 -9606 100271136 RPS6P19 - RPS6_9_1270 HGNC:36136 12 12q23.2 ribosomal protein S6 pseudogene 19 pseudo RPS6P19 ribosomal protein S6 pseudogene 19 O - 20121230 -9606 100271137 RPL13AP9 - RPL13A_1_58 HGNC:36341 1 1p31.3 ribosomal protein L13a pseudogene 9 pseudo RPL13AP9 ribosomal protein L13a pseudogene 9 O - 20121230 -9606 100271138 RPL23AP17 - RPL23A_3_37 HGNC:35904 1 1p34 ribosomal protein L23a pseudogene 17 pseudo RPL23AP17 ribosomal protein L23a pseudogene 17 O - 20121230 -9606 100271139 RPL36AP9 - RPL36A_1_38 HGNC:35872 1 1p34.1 ribosomal protein L36a pseudogene 9 pseudo RPL36AP9 ribosomal protein L36a pseudogene 9 O - 20121230 -9606 100271140 RPL36AP10 - RPL36A_1_70 HGNC:36175 1 1p22.2 ribosomal protein L36a pseudogene 10 pseudo RPL36AP10 ribosomal protein L36a pseudogene 10 O - 20121230 -9606 100271141 RPS15AP6 - RPS15A_1_18 HGNC:35657 1 1p36.12 ribosomal protein S15a pseudogene 6 pseudo RPS15AP6 ribosomal protein S15a pseudogene 6 O - 20121230 -9606 100271142 RPS15AP7 - RPS15A_1_57 HGNC:35648 1 1p31.3 ribosomal protein S15a pseudogene 7 pseudo RPS15AP7 ribosomal protein S15a pseudogene 7 O - 20121230 -9606 100271143 RPS15AP8 - RPS15A_2_39 HGNC:36887 1 1p34.2 ribosomal protein S15a pseudogene 8 pseudo RPS15AP8 ribosomal protein S15a pseudogene 8 O - 20121230 -9606 100271144 RPS27AP6 - RPS27A_1_97 HGNC:36236 1 1q21 ribosomal protein S27a pseudogene 6 pseudo RPS27AP6 ribosomal protein S27a pseudogene 6 O - 20121230 -9606 100271145 RPL7P53 - RPL7_30_1785 HGNC:36831 X Xq13.2 ribosomal protein L7 pseudogene 53 pseudo RPL7P53 ribosomal protein L7 pseudogene 53 O - 20121230 -9606 100271146 RPL7P54 - RPL7_31_1789 HGNC:36817 X Xq21.1 ribosomal protein L7 pseudogene 54 pseudo RPL7P54 ribosomal protein L7 pseudogene 54 O - 20121230 -9606 100271147 RPL7P55 - RPL7_32_1793 HGNC:36105 X Xq21.32 ribosomal protein L7 pseudogene 55 pseudo RPL7P55 ribosomal protein L7 pseudogene 55 O - 20121230 -9606 100271148 RPSAP59 - RPSA_27_1799 HGNC:36957 X Xq22.1-q22.3 ribosomal protein SA pseudogene 59 pseudo RPSAP59 ribosomal protein SA pseudogene 59 O - 20121230 -9606 100271149 RPSAP60 - RPSA_28_1820 HGNC:36331 X Xq28 ribosomal protein SA pseudogene 60 pseudo RPSAP60 ribosomal protein SA pseudogene 60 O - 20121230 -9606 100271150 RPL17P19 - RPL17_11_483 HGNC:36919 4 4q13.1 ribosomal protein L17 pseudogene 19 pseudo RPL17P19 ribosomal protein L17 pseudogene 19 O - 20121230 -9606 100271151 RPL17P21 - RPL17_12_561 HGNC:36037 5 5q11.2 ribosomal protein L17 pseudogene 21 pseudo RPL17P21 ribosomal protein L17 pseudogene 21 O - 20121230 -9606 100271152 RPL17P23 - RPL17_15_751 HGNC:35832 6 6q22.33 ribosomal protein L17 pseudogene 23 pseudo RPL17P23 ribosomal protein L17 pseudogene 23 O - 20121230 -9606 100271153 RPL17P24 - RPL17_16_771 HGNC:36506 6 6q25.2 ribosomal protein L17 pseudogene 24 pseudo RPL17P24 ribosomal protein L17 pseudogene 24 O - 20121230 -9606 100271154 RPL17P29 - RPL17_18_874 HGNC:36510 8 8p23.1 ribosomal protein L17 pseudogene 29 pseudo RPL17P29 ribosomal protein L17 pseudogene 29 O - 20121230 -9606 100271155 RPL17P30 - RPL17_20_898 HGNC:35604 8 8p12 ribosomal protein L17 pseudogene 30 pseudo RPL17P30 ribosomal protein L17 pseudogene 30 O - 20121230 -9606 100271156 RPL17P31 - RPL17_21_910 HGNC:37036 8 8q13.2 ribosomal protein L17 pseudogene 31 pseudo RPL17P31 ribosomal protein L17 pseudogene 31 O - 20121230 -9606 100271157 RPL21P30 - RPL21_10_219 HGNC:36091 2 2p16.2 ribosomal protein L21 pseudogene 30 pseudo RPL21P30 ribosomal protein L21 pseudogene 30 O - 20121230 -9606 100271158 RPL21P40 - RPL21_10_356 HGNC:36189 3 3p22.3 ribosomal protein L21 pseudogene 40 pseudo RPL21P40 ribosomal protein L21 pseudogene 40 O - 20121230 -9606 100271159 RPL21P41 - RPL21_11_380 HGNC:36765 3 3p14.1 ribosomal protein L21 pseudogene 41 pseudo RPL21P41 ribosomal protein L21 pseudogene 41 O - 20121230 -9606 100271160 RPL21P31 - RPL21_12_296 HGNC:36306 2 2q32 ribosomal protein L21 pseudogene 31 pseudo RPL21P31 ribosomal protein L21 pseudogene 31 O - 20121230 -9606 100271161 RPL21P32 - RPL21_13_305 HGNC:36978 2 2q32.1 ribosomal protein L21 pseudogene 32 pseudo RPL21P32 ribosomal protein L21 pseudogene 32 O - 20121230 -9606 100271162 RPL21P42 - RPL21_13_421 HGNC:37017 3 3q25.2 ribosomal protein L21 pseudogene 42 pseudo RPL21P42 ribosomal protein L21 pseudogene 42 O - 20121230 -9606 100271163 RPL21P43 - RPL21_15_434 HGNC:36008 3 3q26.2 ribosomal protein L21 pseudogene 43 pseudo RPL21P43 ribosomal protein L21 pseudogene 43 O - 20121230 -9606 100271164 RPL21P47 - RPL21_16_486 HGNC:36711 4 4q13.1 ribosomal protein L21 pseudogene 47 pseudo RPL21P47 ribosomal protein L21 pseudogene 47 O - 20121230 -9606 100271165 RPL21P48 - RPL21_17_503 HGNC:35891 4 4q23 ribosomal protein L21 pseudogene 48 pseudo RPL21P48 ribosomal protein L21 pseudogene 48 O - 20121230 -9606 100271166 RPL21P49 - RPL21_18_504 HGNC:35769 4 4q24 ribosomal protein L21 pseudogene 49 pseudo RPL21P49 ribosomal protein L21 pseudogene 49 O - 20121230 -9606 100271167 RPL21P50 - RPL21_18_516 HGNC:36433 4 4q28.1 ribosomal protein L21 pseudogene 50 pseudo RPL21P50 ribosomal protein L21 pseudogene 50 O - 20121230 -9606 100271168 RPL21P54 - RPL21_19_553 HGNC:35552 5 5p13.2 ribosomal protein L21 pseudogene 54 pseudo RPL21P54 ribosomal protein L21 pseudogene 54 O - 20121230 -9606 100271169 RPL21P51 - RPL21_20_533 HGNC:36081 4 4q32.3 ribosomal protein L21 pseudogene 51 pseudo RPL21P51 ribosomal protein L21 pseudogene 51 O - 20121230 -9606 100271170 RPL21P55 - RPL21_20_571 HGNC:36434 5 5q12.3 ribosomal protein L21 pseudogene 55 pseudo RPL21P55 ribosomal protein L21 pseudogene 55 O - 20121230 -9606 100271171 RPL21P56 - RPL21_21_549 HGNC:35525 5 5p13.3 ribosomal protein L21 pseudogene 56 pseudo RPL21P56 ribosomal protein L21 pseudogene 56 O - 20121230 -9606 100271172 RPL21P57 - RPL21_21_631 HGNC:36644 5 5q33.2 ribosomal protein L21 pseudogene 57 pseudo RPL21P57 ribosomal protein L21 pseudogene 57 O - 20121230 -9606 100271173 RPL21P58 - RPL21_22_606 HGNC:35755 5 5q23.1 ribosomal protein L21 pseudogene 58 pseudo RPL21P58 ribosomal protein L21 pseudogene 58 O - 20121230 -9606 100271174 RPL21P59 - RPL21_22_635 HGNC:36922 5 5q34 ribosomal protein L21 pseudogene 59 pseudo RPL21P59 ribosomal protein L21 pseudogene 59 O - 20121230 -9606 100271175 RPL21P60 - RPL21_23_641 HGNC:36044 5 5q35.3 ribosomal protein L21 pseudogene 60 pseudo RPL21P60 ribosomal protein L21 pseudogene 60 O - 20121230 -9606 100271176 RPL21P63 - RPL21_24_657 HGNC:35526 6 6p24.2 ribosomal protein L21 pseudogene 63 pseudo RPL21P63 ribosomal protein L21 pseudogene 63 O - 20121230 -9606 100271177 RPL21P64 - RPL21_25_752 HGNC:36259 6 6q22.33 ribosomal protein L21 pseudogene 64 pseudo RPL21P64 ribosomal protein L21 pseudogene 64 O - 20121230 -9606 100271178 RPL21P65 - RPL21_26_729 HGNC:36017 6 6q21 ribosomal protein L21 pseudogene 65 pseudo RPL21P65 ribosomal protein L21 pseudogene 65 O - 20121230 -9606 100271179 RPL21P66 - RPL21_26_756 HGNC:36476 6 6q23 ribosomal protein L21 pseudogene 66 pseudo RPL21P66 ribosomal protein L21 pseudogene 66 O - 20121230 -9606 100271180 RPL21P67 - RPL21_27_754 HGNC:36139 6 6q23.2 ribosomal protein L21 pseudogene 67 pseudo RPL21P67 ribosomal protein L21 pseudogene 67 O - 20121230 -9606 100271181 RPL21P72 - RPL21_28_779 HGNC:37043 7 7p22.2 ribosomal protein L21 pseudogene 72 pseudo RPL21P72 ribosomal protein L21 pseudogene 72 O - 20121230 -9606 100271182 RPL21P73 - RPL21_28_856 HGNC:36794 7 7q34 ribosomal protein L21 pseudogene 73 pseudo RPL21P73 ribosomal protein L21 pseudogene 73 O - 20121230 -9606 100271183 RPL21P77 - RPL21_29_883 HGNC:36186 8 8p21.3 ribosomal protein L21 pseudogene 77 pseudo RPL21P77 ribosomal protein L21 pseudogene 77 O - 20121230 -9606 100271184 RPL21P74 - RPL21_30_821 HGNC:35854 7 7q21.3 ribosomal protein L21 pseudogene 74 pseudo RPL21P74 ribosomal protein L21 pseudogene 74 O - 20121230 -9606 100271185 RPL21P78 - RPL21_30_950 HGNC:35917 8 8q24 ribosomal protein L21 pseudogene 78 pseudo RPL21P78 ribosomal protein L21 pseudogene 78 O - 20121230 -9606 100271186 RPL21P83 - RPL21_31_978 HGNC:35864 9 9p13.2 ribosomal protein L21 pseudogene 83 pseudo RPL21P83 ribosomal protein L21 pseudogene 83 O - 20121230 -9606 100271187 RPL21P84 - RPL21_32_987 HGNC:36612 9 9q21.2 ribosomal protein L21 pseudogene 84 pseudo RPL21P84 ribosomal protein L21 pseudogene 84 O - 20121230 -9606 100271188 RPL21P79 - RPL21_33_903 HGNC:36931 8 8q11.23 ribosomal protein L21 pseudogene 79 pseudo RPL21P79 ribosomal protein L21 pseudogene 79 O - 20121230 -9606 100271189 RPL21P85 - RPL21_33_996 HGNC:35694 9 9q22.1-q22.3 ribosomal protein L21 pseudogene 85 pseudo RPL21P85 ribosomal protein L21 pseudogene 85 O - 20121230 -9606 100271190 RPL21P86 - RPL21_34_998 HGNC:37032 9 9q22.31 ribosomal protein L21 pseudogene 86 pseudo RPL21P86 ribosomal protein L21 pseudogene 86 O - 20121230 -9606 100271191 RPL26P20 - RPL26_10_715 HGNC:35933 6 6q14.1 ribosomal protein L26 pseudogene 20 pseudo RPL26P20 ribosomal protein L26 pseudogene 20 O - 20121230 -9606 100271192 RPL30P15 - RPL30_7_1765 HGNC:36542 X Xp22 ribosomal protein L30 pseudogene 15 pseudo RPL30P15 ribosomal protein L30 pseudogene 15 O - 20121230 -9606 100271193 RPL31P34 - RPL31_10_781 HGNC:35853 7 7p22.1 ribosomal protein L31 pseudogene 34 pseudo RPL31P34 ribosomal protein L31 pseudogene 34 O - 20121230 -9606 100271194 RPL31P24 - RPL31_11_499 HGNC:36353 4 4q22 ribosomal protein L31 pseudogene 24 pseudo RPL31P24 ribosomal protein L31 pseudogene 24 O - 20121230 -9606 100271196 RPL31P40 - RPL31_12_911 HGNC:36134 8 8q13.2 ribosomal protein L31 pseudogene 40 pseudo RPL31P40 ribosomal protein L31 pseudogene 40 O - 20121230 -9606 100271197 RPL31P42 - RPL31_13_966 HGNC:36930 9 9p22.2 ribosomal protein L31 pseudogene 42 pseudo RPL31P42 ribosomal protein L31 pseudogene 42 O - 20121230 -9606 100271198 RPL31P27 - RPL31_15_765 HGNC:36275 6 6q24.2 ribosomal protein L31 pseudogene 27 pseudo RPL31P27 ribosomal protein L31 pseudogene 27 O - 20121230 -9606 100271199 RPL31P35 - RPL31_16_810 HGNC:36932 7 7p11.2 ribosomal protein L31 pseudogene 35 pseudo RPL31P35 ribosomal protein L31 pseudogene 35 O - 20121230 -9606 100271200 RPL31P36 - RPL31_19_846 HGNC:36676 7 7q32 ribosomal protein L31 pseudogene 36 pseudo RPL31P36 ribosomal protein L31 pseudogene 36 O - 20121230 -9606 100271201 RPL31P41 - RPL31_20_909 HGNC:36720 8 8q13.1 ribosomal protein L31 pseudogene 41 pseudo RPL31P41 ribosomal protein L31 pseudogene 41 O - 20121230 -9606 100271202 RPL37P17 - RPL37_7_1015 HGNC:36023 9 9q34 ribosomal protein L37 pseudogene 17 pseudo RPL37P17 ribosomal protein L37 pseudogene 17 O - 20121230 -9606 100271203 RPL39P23 - RPL39_10_809 HGNC:36581 7 7p12-p11.2 ribosomal protein L39 pseudogene 23 pseudo RPL39P23 ribosomal protein L39 pseudogene 23 O - 20121230 -9606 100271204 RPL5P25 - RPL5_10_1021 HGNC:35493 10 10p13 ribosomal protein L5 pseudogene 25 pseudo RPL5P25 ribosomal protein L5 pseudogene 25 O - 20121230 -9606 100271206 RPL5P26 - RPL5_13_1059 HGNC:36247 10 10q22 ribosomal protein L5 pseudogene 26 pseudo RPL5P26 ribosomal protein L5 pseudogene 26 O - 20121230 -9606 100271207 RPL5P32 - RPL5_17_1422 HGNC:36973 15 15q13.1 ribosomal protein L5 pseudogene 32 pseudo RPL5P32 ribosomal protein L5 pseudogene 32 O - 20121230 -9606 100271208 RPL6P28 - RPL6_16_1757 HGNC:36065 22 22q13.31 ribosomal protein L6 pseudogene 28 pseudo RPL6P28 ribosomal protein L6 pseudogene 28 O - 20121230 -9606 100271209 RPL7AP28 - RPL7A_10_519 HGNC:35656 4 4q28.3 ribosomal protein L7a pseudogene 28 pseudo RPL7AP28 ribosomal protein L7a pseudogene 28 O - 20121230 -9606 100271210 RPL7AP35 - RPL7A_10_727 HGNC:36113 6 6q21 ribosomal protein L7a pseudogene 35 pseudo RPL7AP35 ribosomal protein L7a pseudogene 35 O - 20121230 -9606 100271211 RPL7AP47 - RPL7A_13_964 HGNC:36833 9 9p23 ribosomal protein L7a pseudogene 47 pseudo RPL7AP47 ribosomal protein L7a pseudogene 47 O - 20121230 -9606 100271212 RPL7AP48 - RPL7A_14_968 HGNC:35953 9 9p22 ribosomal protein L7a pseudogene 48 pseudo RPL7AP48 ribosomal protein L7a pseudogene 48 O - 20121230 -9606 100271213 RPL7AP41 - RPL7A_16_795 HGNC:36403 7 7p15.2 ribosomal protein L7a pseudogene 41 pseudo RPL7AP41 ribosomal protein L7a pseudogene 41 O - 20121230 -9606 100271214 RPL7AP49 - RPL7A_16_980 HGNC:35507 9 9p12 ribosomal protein L7a pseudogene 49 pseudo RPL7AP49 ribosomal protein L7a pseudogene 49 O - 20121230 -9606 100271215 RPL7AP42 - RPL7A_19_836 HGNC:36716 7 7q31.1 ribosomal protein L7a pseudogene 42 pseudo RPL7AP42 ribosomal protein L7a pseudogene 42 O - 20121230 -9606 100271216 RPL7P35 - RPL7_15_1095 HGNC:36153 10 10q25 ribosomal protein L7 pseudogene 35 pseudo RPL7P35 ribosomal protein L7 pseudogene 35 O - 20121230 -9606 100271217 RPL7P39 - RPL7_16_1250 HGNC:36214 12 12q14.3 ribosomal protein L7 pseudogene 39 pseudo RPL7P39 ribosomal protein L7 pseudogene 39 O - 20121230 -9606 100271218 RPL7P36 - RPL7_18_1089 HGNC:37045 10 10q24.2 ribosomal protein L7 pseudogene 36 pseudo RPL7P36 ribosomal protein L7 pseudogene 36 O - 20121230 -9606 100271220 RPL7P40 - RPL7_19_1215 HGNC:36031 12 12p12.3 ribosomal protein L7 pseudogene 40 pseudo RPL7P40 ribosomal protein L7 pseudogene 40 O - 20121230 -9606 100271221 RPL7P49 - RPL7_20_1575 HGNC:36912 17 17q25 ribosomal protein L7 pseudogene 49 pseudo RPL7P49 ribosomal protein L7 pseudogene 49 O - 20121230 -9606 100271222 RPL7P41 - RPL7_21_1238 HGNC:36297 12 12q13 ribosomal protein L7 pseudogene 41 pseudo RPL7P41 ribosomal protein L7 pseudogene 41 O - 20121230 -9606 100271223 RPL7P42 - RPL7_22_1255 HGNC:35543 12 12q15 ribosomal protein L7 pseudogene 42 pseudo RPL7P42 ribosomal protein L7 pseudogene 42 O - 20121230 -9606 100271224 RPL7P43 - RPL7_23_1260 HGNC:36441 12 12q21.2 ribosomal protein L7 pseudogene 43 pseudo RPL7P43 ribosomal protein L7 pseudogene 43 O - 20121230 -9606 100271225 RPL7P45 - RPL7_25_1334 HGNC:35522 13 13q33.2 ribosomal protein L7 pseudogene 45 pseudo RPL7P45 ribosomal protein L7 pseudogene 45 O - 20121230 -9606 100271226 RPL7P51 - RPL7_29_1664 HGNC:36432 19 19q13.3 ribosomal protein L7 pseudogene 51 pseudo RPL7P51 ribosomal protein L7 pseudogene 51 O - 20121230 -9606 100271227 RPL9P26 - RPL9_11_1421 HGNC:35633 15 15q11.2-q12 ribosomal protein L9 pseudogene 26 pseudo RPL9P26 ribosomal protein L9 pseudogene 26 O - 20121230 -9606 100271228 RPL9P31 - RPL9_12_1606 HGNC:36617 18 18q21 ribosomal protein L9 pseudogene 31 pseudo RPL9P31 ribosomal protein L9 pseudogene 31 O - 20121230 -9606 100271229 RPL9P33 - RPL9_13_1663 HGNC:36273 19 19q13.3 ribosomal protein L9 pseudogene 33 pseudo RPL9P33 ribosomal protein L9 pseudogene 33 O - 20121230 -9606 100271230 RPS17P17 - RPS17_8_1818 HGNC:35647 X Xq27.1 ribosomal protein S17 pseudogene 17 pseudo RPS17P17 ribosomal protein S17 pseudogene 17 O - 20121230 -9606 100271231 RPS20P18 - RPS20_10_738 HGNC:36937 6 6q21 ribosomal protein S20 pseudogene 18 pseudo RPS20P18 ribosomal protein S20 pseudogene 18 O - 20121230 -9606 100271232 RPS20P24 - RPS20_10_984 HGNC:36283 9 9q21.12 ribosomal protein S20 pseudogene 24 pseudo RPS20P24 ribosomal protein S20 pseudogene 24 O - 20121230 -9606 100271233 RPS20P20 - RPS20_11_915 HGNC:36674 8 8q13 ribosomal protein S20 pseudogene 20 pseudo RPS20P20 ribosomal protein S20 pseudogene 20 O - 20121230 -9606 100271234 RPS20P21 - RPS20_12_916 HGNC:35993 8 8q21.11 ribosomal protein S20 pseudogene 21 pseudo RPS20P21 ribosomal protein S20 pseudogene 21 O - 20121230 -9606 100271235 RPS20P25 - RPS20_13_989 HGNC:35866 9 9q21.31 ribosomal protein S20 pseudogene 25 pseudo RPS20P25 ribosomal protein S20 pseudogene 25 O - 20121230 -9606 100271236 RPS21P5 - RPS21_3_1008 HGNC:36359 9 9q31.3-q32 ribosomal protein S21 pseudogene 5 pseudo RPS21P5 ribosomal protein S21 pseudogene 5 O - 20121230 -9606 100271237 RPS26P27 - RPS26_12_587 HGNC:35636 5 5q11-q12 ribosomal protein S26 pseudogene 27 pseudo RPS26P27 ribosomal protein S26 pseudogene 27 O - 20121230 -9606 100271238 RPS26P37 - RPS26_12_999 HGNC:36875 9 9q22.3 ribosomal protein S26 pseudogene 37 pseudo RPS26P37 ribosomal protein S26 pseudogene 37 O - 20121230 -9606 100271239 RPS26P33 - RPS26_14_825 HGNC:36227 7 7q21.3-q22.1 ribosomal protein S26 pseudogene 33 pseudo RPS26P33 ribosomal protein S26 pseudogene 33 O - 20121230 -9606 100271240 RPS26P36 - RPS26_18_953 HGNC:36561 8 8q24.3 ribosomal protein S26 pseudogene 36 pseudo RPS26P36 ribosomal protein S26 pseudogene 36 O - 20121230 -9606 100271241 RPS29P15 - RPS29_10_826 HGNC:35876 7 7q22 ribosomal protein S29 pseudogene 15 pseudo RPS29P15 ribosomal protein S29 pseudogene 15 O - 20121230 -9606 100271243 RPS2P36 - RPS2_13_1085 HGNC:36784 10 10q24.1 ribosomal protein S2 pseudogene 36 pseudo RPS2P36 ribosomal protein S2 pseudogene 36 O - 20121230 -9606 100271244 RPS2P39 - RPS2_15_1171 HGNC:36131 11 11q22.3 ribosomal protein S2 pseudogene 39 pseudo RPS2P39 ribosomal protein S2 pseudogene 39 O - 20121230 -9606 100271245 RPS2P41 - RPS2_16_1278 HGNC:36357 12 12q24.2 ribosomal protein S2 pseudogene 41 pseudo RPS2P41 ribosomal protein S2 pseudogene 41 O - 20121230 -9606 100271246 RPS2P43 - RPS2_18_1391 HGNC:35652 14 14q24 ribosomal protein S2 pseudogene 43 pseudo RPS2P43 ribosomal protein S2 pseudogene 43 O - 20121230 -9606 100271247 RPS2P42 - RPS2_19_1214 HGNC:36481 12 12p13.3-p13.2 ribosomal protein S2 pseudogene 42 pseudo RPS2P42 ribosomal protein S2 pseudogene 42 O - 20121230 -9606 100271248 RPS2P44 - RPS2_21_1482 HGNC:35811 16 16q12.1 ribosomal protein S2 pseudogene 44 pseudo RPS2P44 ribosomal protein S2 pseudogene 44 O - 20121230 -9606 100271250 RPS2P52 - RPS2_23_1615 HGNC:36059 19 19p13 ribosomal protein S2 pseudogene 52 pseudo RPS2P52 ribosomal protein S2 pseudogene 52 O - 20121230 -9606 100271251 RPS2P49 - RPS2_24_1542 HGNC:36521 17 17q21 ribosomal protein S2 pseudogene 49 pseudo RPS2P49 ribosomal protein S2 pseudogene 49 O - 20121230 -9606 100271252 RPS2P54 - RPS2_28_1709 HGNC:35835 20 20q13.1 ribosomal protein S2 pseudogene 54 pseudo RPS2P54 ribosomal protein S2 pseudogene 54 O - 20121230 -9606 100271253 RPS3AP24 - RPS3A_10_762 HGNC:36267 6 6q24.1 ribosomal protein S3a pseudogene 24 pseudo RPS3AP24 ribosomal protein S3a pseudogene 24 O - 20121230 -9606 100271254 RPS3AP30 - RPS3A_11_871 HGNC:35538 8 8p23 ribosomal protein S3a pseudogene 30 pseudo RPS3AP30 ribosomal protein S3a pseudogene 30 O - 20121230 -9606 100271255 RPS3AP27 - RPS3A_12_850 HGNC:35978 7 7q31 ribosomal protein S3a pseudogene 27 pseudo RPS3AP27 ribosomal protein S3a pseudogene 27 O - 20121230 -9606 100271256 RPS3AP31 - RPS3A_12_873 HGNC:36860 8 8p23.1 ribosomal protein S3a pseudogene 31 pseudo RPS3AP31 ribosomal protein S3a pseudogene 31 O - 20121209 -9606 100271257 RPS3AP28 - RPS3A_13_855 HGNC:35738 7 7q34 ribosomal protein S3a pseudogene 28 pseudo RPS3AP28 ribosomal protein S3a pseudogene 28 O - 20121230 -9606 100271258 RPS3AP32 - RPS3A_13_917 HGNC:36717 8 8q21.11 ribosomal protein S3a pseudogene 32 pseudo RPS3AP32 ribosomal protein S3a pseudogene 32 O - 20121230 -9606 100271259 RPS3AP33 - RPS3A_14_872 HGNC:35476 8 8p23 ribosomal protein S3a pseudogene 33 pseudo RPS3AP33 ribosomal protein S3a pseudogene 33 O - 20121230 -9606 100271260 RPS3AP34 - RPS3A_15_876 HGNC:36293 8 8p23.1 ribosomal protein S3a pseudogene 34 pseudo RPS3AP34 ribosomal protein S3a pseudogene 34 O - 20121230 -9606 100271261 RPS3AP35 - RPS3A_16_877 HGNC:35902 8 8p23.1 ribosomal protein S3a pseudogene 35 pseudo RPS3AP35 ribosomal protein S3a pseudogene 35 O - 20121230 -9606 100271262 RPS6P20 - RPS6_10_1296 HGNC:36940 12 12q24.33 ribosomal protein S6 pseudogene 20 pseudo RPS6P20 ribosomal protein S6 pseudogene 20 O - 20121230 -9606 100271263 RPS6P21 - RPS6_11_1297 HGNC:36478 12 12q24.33 ribosomal protein S6 pseudogene 21 pseudo RPS6P21 ribosomal protein S6 pseudogene 21 O - 20121230 -9606 100271267 RPSAP51 - RPSA_25_1205 HGNC:36224 12 12p13.31 ribosomal protein SA pseudogene 51 pseudo RPSAP51 ribosomal protein SA pseudogene 51 O - 20121230 -9606 100271271 RPL11P3 - RPL11_2_1077 HGNC:36342 10 10q23.3 ribosomal protein L11 pseudogene 3 pseudo RPL11P3 ribosomal protein L11 pseudogene 3 O - 20121230 -9606 100271272 RPL11P4 - RPL11_2_1080 HGNC:36137 10 10q24.1 ribosomal protein L11 pseudogene 4 pseudo RPL11P4 ribosomal protein L11 pseudogene 4 O - 20121230 -9606 100271273 RPL12P28 - RPL12_7_1019 HGNC:36818 10 10p ribosomal protein L12 pseudogene 28 pseudo RPL12P28 ribosomal protein L12 pseudogene 28 O - 20121230 -9606 100271274 RPL12P29 - RPL12_8_1073 HGNC:35791 10 10q23.1 ribosomal protein L12 pseudogene 29 pseudo RPL12P29 ribosomal protein L12 pseudogene 29 O - 20121230 -9606 100271276 RPL13AP11 - RPL13A_1_152 HGNC:36566 1 1q32.1 ribosomal protein L13a pseudogene 11 pseudo RPL13AP11 ribosomal protein L13a pseudogene 11 O - 20121230 -9606 100271277 RPL13AP12 - RPL13A_3_312 HGNC:35673 2 2q33-q34 ribosomal protein L13a pseudogene 12 pseudo RPL13AP12 ribosomal protein L13a pseudogene 12 O - 20121230 -9606 100271278 RPL13AP14 - RPL13A_3_590 HGNC:36360 5 5q14.3 ribosomal protein L13a pseudogene 14 pseudo RPL13AP14 ribosomal protein L13a pseudogene 14 O - 20121230 -9606 100271279 RPL13AP15 - RPL13A_4_746 HGNC:36883 6 6q22 ribosomal protein L13a pseudogene 15 pseudo RPL13AP15 ribosomal protein L13a pseudogene 15 O - 20121230 -9606 100271282 RPL14P4 - RPL14_2_1267 HGNC:35663 12 12q22 ribosomal protein L14 pseudogene 4 pseudo RPL14P4 ribosomal protein L14 pseudogene 4 O - 20121230 -9606 100271283 RPL15P14 - RPL15_7_1062 HGNC:36487 10 10q22.1 ribosomal protein L15 pseudogene 14 pseudo RPL15P14 ribosomal protein L15 pseudogene 14 O - 20121230 -9606 100271284 RPL17P35 - RPL17_9_1049 HGNC:35819 10 10q21.3 ribosomal protein L17 pseudogene 35 pseudo RPL17P35 ribosomal protein L17 pseudogene 35 O - 20121230 -9606 100271285 RPL18AP10 - RPL18A_4_806 HGNC:35885 7 7p14.1-p13 ribosomal protein L18a pseudogene 10 pseudo RPL18AP10 ribosomal protein L18a pseudogene 10 O - 20121230 -9606 100271286 RPL18P10 - RPL18_6_1311 HGNC:35957 13 13q14 ribosomal protein L18 pseudogene 10 pseudo RPL18P10 ribosomal protein L18 pseudogene 10 O - 20121230 -9606 100271287 RPL19P17 - RPL19_6_1208 HGNC:36829 12 12p13 ribosomal protein L19 pseudogene 17 pseudo RPL19P17 ribosomal protein L19 pseudogene 17 O - 20121230 -9606 100271288 RPL19P18 - RPL19_7_1512 HGNC:36121 17 17p12 ribosomal protein L19 pseudogene 18 pseudo RPL19P18 ribosomal protein L19 pseudogene 18 O - 20121230 -9606 100271289 RPL22P17 - RPL22_7_1091 HGNC:36985 10 10q24.3 ribosomal protein L22 pseudogene 17 pseudo RPL22P17 ribosomal protein L22 pseudogene 17 O - 20121230 -9606 100271290 RPL22P18 - RPL22_9_1070 HGNC:36232 10 10q23 ribosomal protein L22 pseudogene 18 pseudo RPL22P18 ribosomal protein L22 pseudogene 18 O - 20121230 -9606 100271291 RPL23AP22 - RPL23A_2_142 HGNC:35505 1 1q31.2 ribosomal protein L23a pseudogene 22 pseudo RPL23AP22 ribosomal protein L23a pseudogene 22 O - 20121230 -9606 100271292 RPL23AP23 - RPL23A_5_178 HGNC:36272 1 1q43 ribosomal protein L23a pseudogene 23 pseudo RPL23AP23 ribosomal protein L23a pseudogene 23 O - 20121230 -9606 100271293 RPL23AP33 - RPL23A_7_304 HGNC:36946 2 2q32.1 ribosomal protein L23a pseudogene 33 pseudo RPL23AP33 ribosomal protein L23a pseudogene 33 O - 20121230 -9606 100271294 RPL23AP34 - RPL23A_8_204 HGNC:36035 2 2p23.2 ribosomal protein L23a pseudogene 34 pseudo RPL23AP34 ribosomal protein L23a pseudogene 34 O - 20121230 -9606 100271295 RPL23AP35 - RPL23A_8_306 HGNC:36580 2 2q32.1 ribosomal protein L23a pseudogene 35 pseudo RPL23AP35 ribosomal protein L23a pseudogene 35 O - 20121230 -9606 100271296 RPL23AP36 - RPL23A_9_314 HGNC:35685 2 2q33.2 ribosomal protein L23a pseudogene 36 pseudo RPL23AP36 ribosomal protein L23a pseudogene 36 O - 20121230 -9606 100271297 RPL23P11 - RPL23_6_1032 HGNC:36457 10 10p11.22 ribosomal protein L23 pseudogene 11 pseudo RPL23P11 ribosomal protein L23 pseudogene 11 O - 20121230 -9606 100271298 RPL27AP3 - RPL27A_1_302 HGNC:35553 2 2q32.1 ribosomal protein L27a pseudogene 3 pseudo RPL27AP3 ribosomal protein L27a pseudogene 3 O - 20121230 -9606 100271299 RPL27AP4 - RPL27A_2_255 HGNC:36262 2 2q13 ribosomal protein L27a pseudogene 4 pseudo RPL27AP4 ribosomal protein L27a pseudogene 4 O - 20121230 -9606 100271300 RPL27AP5 - RPL27A_2_577 HGNC:36420 5 5q13.3 ribosomal protein L27a pseudogene 5 pseudo RPL27AP5 ribosomal protein L27a pseudogene 5 O - 20121230 -9606 100271301 RPL27AP7 - RPL27A_3_699 HGNC:36064 6 6p12 ribosomal protein L27a pseudogene 7 pseudo RPL27AP7 ribosomal protein L27a pseudogene 7 O - 20121230 -9606 100271302 RPL27P12 - RPL27_4_1293 HGNC:36736 12 12q24.31 ribosomal protein L27 pseudogene 12 pseudo RPL27P12 ribosomal protein L27 pseudogene 12 O - 20121230 -9606 100271303 RPL30P11 - RPL30_6_1213 HGNC:36260 12 12p13.1 ribosomal protein L30 pseudogene 11 pseudo RPL30P11 ribosomal protein L30 pseudogene 11 O - 20121230 -9606 100271304 RPL30P12 - RPL30_6_1274 HGNC:36909 12 12q23.3 ribosomal protein L30 pseudogene 12 pseudo RPL30P12 ribosomal protein L30 pseudogene 12 O - 20121230 -9606 100271305 RPL30P13 - RPL30_7_1228 HGNC:36280 12 12q12 ribosomal protein L30 pseudogene 13 pseudo RPL30P13 ribosomal protein L30 pseudogene 13 O - 20121230 -9606 100271306 RPL32P27 - RPL32_7_1234 HGNC:36924 12 12q13 ribosomal protein L32 pseudogene 27 pseudo RPL32P27 ribosomal protein L32 pseudogene 27 O - 20121230 -9606 100271308 RPL34P20 - RPL34_8_1088 HGNC:35535 10 10q24 ribosomal protein L34 pseudogene 20 pseudo RPL34P20 ribosomal protein L34 pseudogene 20 O - 20121230 -9606 100271309 RPL34P24 - RPL34_9_1123 HGNC:36823 11 11p15.5-p14 ribosomal protein L34 pseudogene 24 pseudo RPL34P24 ribosomal protein L34 pseudogene 24 O - 20121230 -9606 100271310 RPL35AP8 - RPL35A_1_367 HGNC:36976 3 3p21 ribosomal protein L35a pseudogene 8 pseudo RPL35AP8 ribosomal protein L35a pseudogene 8 O - 20121230 -9606 100271311 RPL35AP9 - RPL35A_2_427 HGNC:35643 3 3q25.32 ribosomal protein L35a pseudogene 9 pseudo RPL35AP9 ribosomal protein L35a pseudogene 9 O - 20121230 -9606 100271312 RPL35AP6 - RPL35A_3_191 HGNC:36793 1 1q44 ribosomal protein L35a pseudogene 6 pseudo RPL35AP6 ribosomal protein L35a pseudogene 6 O - 20121230 -9606 100271313 RPL35AP10 - RPL35A_3_429 HGNC:35905 3 3q26.1 ribosomal protein L35a pseudogene 10 pseudo RPL35AP10 ribosomal protein L35a pseudogene 10 O - 20121230 -9606 100271314 RPL35AP11 - RPL35A_4_500 HGNC:35708 4 4q22 ribosomal protein L35a pseudogene 11 pseudo RPL35AP11 ribosomal protein L35a pseudogene 11 O - 20121230 -9606 100271315 RPL35AP14 - RPL35A_4_569 HGNC:36783 5 5q12.1 ribosomal protein L35a pseudogene 14 pseudo RPL35AP14 ribosomal protein L35a pseudogene 14 O - 20121230 -9606 100271316 RPL35AP12 - RPL35A_5_531 HGNC:36068 4 4q32.2 ribosomal protein L35a pseudogene 12 pseudo RPL35AP12 ribosomal protein L35a pseudogene 12 O - 20121230 -9606 100271317 RPL35AP15 - RPL35A_6_605 HGNC:36974 5 5q23.1 ribosomal protein L35a pseudogene 15 pseudo RPL35AP15 ribosomal protein L35a pseudogene 15 O - 20121230 -9606 100271318 RPL35AP16 - RPL35A_6_624 HGNC:35485 5 5q32 ribosomal protein L35a pseudogene 16 pseudo RPL35AP16 ribosomal protein L35a pseudogene 16 O - 20121230 -9606 100271319 RPL35AP17 - RPL35A_7_625 HGNC:36384 5 5q32 ribosomal protein L35a pseudogene 17 pseudo RPL35AP17 ribosomal protein L35a pseudogene 17 O - 20121230 -9606 100271321 RPL35AP18 - RPL35A_8_717 HGNC:36812 6 6q14 ribosomal protein L35a pseudogene 18 pseudo RPL35AP18 ribosomal protein L35a pseudogene 18 O - 20121230 -9606 100271322 RPL35AP19 - RPL35A_8_947 HGNC:36631 8 8q24.12 ribosomal protein L35a pseudogene 19 pseudo RPL35AP19 ribosomal protein L35a pseudogene 19 O - 20121230 -9606 100271323 RPL36AP13 - RPL36A_3_200 HGNC:35877 2 2pter-p25.1 ribosomal protein L36a pseudogene 13 pseudo RPL36AP13 ribosomal protein L36a pseudogene 13 O - 20121230 -9606 100271324 RPL36AP14 - RPL36A_3_214 HGNC:36788 2 2p21-p16 ribosomal protein L36a pseudogene 14 pseudo RPL36AP14 ribosomal protein L36a pseudogene 14 O - 20121230 -9606 100271325 RPL36AP15 - RPL36A_4_216 HGNC:36648 2 2p16 ribosomal protein L36a pseudogene 15 pseudo RPL36AP15 ribosomal protein L36a pseudogene 15 O - 20121230 -9606 100271326 RPL36AP17 - RPL36A_4_361 HGNC:35750 3 3p22.3 ribosomal protein L36a pseudogene 17 pseudo RPL36AP17 ribosomal protein L36a pseudogene 17 O - 20121230 -9606 100271327 RPL36AP16 - RPL36A_5_238 HGNC:36416 2 2p14 ribosomal protein L36a pseudogene 16 pseudo RPL36AP16 ribosomal protein L36a pseudogene 16 O - 20121230 -9606 100271328 RPL36AP18 - RPL36A_5_491 HGNC:35484 4 4q21.1 ribosomal protein L36a pseudogene 18 pseudo RPL36AP18 ribosomal protein L36a pseudogene 18 O - 20121230 -9606 100271329 RPL36AP20 - RPL36A_6_630 HGNC:36250 5 5q33.1 ribosomal protein L36a pseudogene 20 pseudo RPL36AP20 ribosomal protein L36a pseudogene 20 O - 20121230 -9606 100271330 RPL36AP19 - RPL36A_7_509 HGNC:36436 4 4q25 ribosomal protein L36a pseudogene 19 pseudo RPL36AP19 ribosomal protein L36a pseudogene 19 O - 20121230 -9606 100271331 RPL36AP25 - RPL36A_7_666 HGNC:35926 6 6p22.3 ribosomal protein L36a pseudogene 25 pseudo RPL36AP25 ribosomal protein L36a pseudogene 25 O - 20121230 -9606 100271332 RPL36AP21 - RPL36A_8_545 HGNC:37041 5 5p15.1 ribosomal protein L36a pseudogene 21 pseudo RPL36AP21 ribosomal protein L36a pseudogene 21 O - 20121230 -9606 100271334 RPL36P15 - RPL36_6_1283 HGNC:36787 12 12q24.22 ribosomal protein L36 pseudogene 15 pseudo RPL36P15 ribosomal protein L36 pseudogene 15 O - 20121230 -9606 100271336 RPL36P17 - RPL36_8_1743 HGNC:35884 22 22q12.2 ribosomal protein L36 pseudogene 17 pseudo RPL36P17 ribosomal protein L36 pseudogene 17 O - 20121230 -9606 100271337 RPL37AP2 - RPL37A_1_476 HGNC:36880 4 4q12 ribosomal protein L37a pseudogene 2 pseudo RPL37AP2 ribosomal protein L37a pseudogene 2 O - 20121230 -9606 100271338 RPL37AP4 - RPL37A_2_776 HGNC:35586 6 6q26 ribosomal protein L37a pseudogene 4 pseudo RPL37AP4 ribosomal protein L37a pseudogene 4 O - 20121230 -9606 100271339 RPL37AP6 - RPL37A_3_833 HGNC:36824 7 7q22-q31 ribosomal protein L37a pseudogene 6 pseudo RPL37AP6 ribosomal protein L37a pseudogene 6 O - 20121230 -9606 100271340 RPL37P20 - RPL37_6_1200 HGNC:36562 12 12p13 ribosomal protein L37 pseudogene 20 pseudo RPL37P20 ribosomal protein L37 pseudogene 20 O - 20121230 -9606 100271341 RPL37P22 - RPL37_7_1538 HGNC:37019 17 17q12 ribosomal protein L37 pseudogene 22 pseudo RPL37P22 ribosomal protein L37 pseudogene 22 O - 20121230 -9606 100271342 RPL37P18 - RPL37_8_1033 HGNC:35919 10 10p11.22-p11.21 ribosomal protein L37 pseudogene 18 pseudo RPL37P18 ribosomal protein L37 pseudogene 18 O - 20121230 -9606 100271343 UBA52P8 - RPL40_3_1481 HGNC:35625 16 16q12 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 8 pseudo UBA52P8 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 8 O - 20121230 -9606 100271344 UBA52P9 - RPL40_4_1591 HGNC:36169 18 18q11.2-q12.1 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 9 pseudo UBA52P9 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene 9 O - 20121230 -9606 100271346 RPLP1P10 - RPLP1_6_1047 HGNC:35509 10 10q11 ribosomal protein, large, P1 pseudogene 10 pseudo RPLP1P10 ribosomal protein, large, P1 pseudogene 10 O - 20121230 -9606 100271347 RPLP2P4 - RPLP2_3_1225 HGNC:36837 12 12p11.21 ribosomal protein, large, P2 pseudogene 4 pseudo RPLP2P4 ribosomal protein, large, P2 pseudogene 4 O - 20121230 -9606 100271348 RPLP2P5 - RPLP2_4_1568 HGNC:35706 17 17q23.2 ribosomal protein, large, P2 pseudogene 5 pseudo RPLP2P5 ribosomal protein, large, P2 pseudogene 5 O - 20121230 -9606 100271349 RPS10P18 - RPS10_6_1108 HGNC:36239 10 10q26 ribosomal protein S10 pseudogene 18 pseudo RPS10P18 ribosomal protein S10 pseudogene 18 O - 20121230 -9606 100271350 RPS10P19 - RPS10_7_1142 HGNC:35907 11 11p11.2 ribosomal protein S10 pseudogene 19 pseudo RPS10P19 ribosomal protein S10 pseudogene 19 O - 20121230 -9606 100271351 RPS10P21 - RPS10_8_1322 HGNC:35906 13 13q21.33 ribosomal protein S10 pseudogene 21 pseudo RPS10P21 ribosomal protein S10 pseudogene 21 O - 20121230 -9606 100271352 RPS12P16 - RPS12_7_1034 HGNC:36595 10 10p11.22-p11.21 ribosomal protein S12 pseudogene 16 pseudo RPS12P16 ribosomal protein S12 pseudogene 16 O - 20121230 -9606 100271353 RPS12P17 - RPS12_8_1057 HGNC:35705 10 10q21.1 ribosomal protein S12 pseudogene 17 pseudo RPS12P17 ribosomal protein S12 pseudogene 17 O - 20121230 -9606 100271354 RPS12P18 - RPS12P19|RPS12_8_1068|RPS12_9_1069 HGNC:36421 10 10q22.3 ribosomal protein S12 pseudogene 18 pseudo RPS12P18 ribosomal protein S12 pseudogene 18 O - 20121230 -9606 100271357 RPS15AP21 - RPS15A_6_747 HGNC:36142 6 6q22.31 ribosomal protein S15a pseudogene 21 pseudo RPS15AP21 ribosomal protein S15a pseudogene 21 O - 20121230 -9606 100271358 RPS15AP16 - RPS15A_7_402 HGNC:36764 3 3q21.3 ribosomal protein S15a pseudogene 16 pseudo RPS15AP16 ribosomal protein S15a pseudogene 16 O - 20121230 -9606 100271359 RPS15AP26 - RPS15A_7_928 HGNC:36773 8 8q22.1 ribosomal protein S15a pseudogene 26 pseudo RPS15AP26 ribosomal protein S15a pseudogene 26 O - 20121230 -9606 100271360 RPS15AP18 - RPS15A_9_644 HGNC:36524 5 5q35.3 ribosomal protein S15a pseudogene 18 pseudo RPS15AP18 ribosomal protein S15a pseudogene 18 O - 20121230 -9606 100271361 RPS15P7 - RPS15_4_1197 HGNC:36623 12 12p13 ribosomal protein S15 pseudogene 7 pseudo RPS15P7 ribosomal protein S15 pseudogene 7 O - 20121230 -9606 100271362 RPS16P6 - RPS16_3_1149 HGNC:36741 11 11q13 ribosomal protein S16 pseudogene 6 pseudo RPS16P6 ribosomal protein S16 pseudogene 6 O - 20121230 -9606 100271363 RPS17P15 - RPS17_7_1173 HGNC:35931 11 11q23.1 ribosomal protein S17 pseudogene 15 pseudo RPS17P15 ribosomal protein S17 pseudogene 15 O - 20121230 -9606 100271364 RPS18P13 - RPS18_8_1634 HGNC:36901 19 19p13.1 ribosomal protein S18 pseudogene 13 pseudo RPS18P13 ribosomal protein S18 pseudogene 13 O - 20121230 -9606 100271365 RPS21P6 - RPS21_3_1599 HGNC:36317 18 18q21.1 ribosomal protein S21 pseudogene 6 pseudo RPS21P6 ribosomal protein S21 pseudogene 6 O - 20121230 -9606 100271366 RPS21P7 - RPS21_4_1681 HGNC:35577 20 20p13 ribosomal protein S21 pseudogene 7 pseudo RPS21P7 ribosomal protein S21 pseudogene 7 O - 20121230 -9606 100271367 RPS23P6 - RPS23_4_1473 HGNC:36511 16 16p13.13 ribosomal protein S23 pseudogene 6 pseudo RPS23P6 ribosomal protein S23 pseudogene 6 O - 20121230 -9606 100271371 RPS24P18 - RPS24_8_1590 HGNC:36745 18 18q11.2 ribosomal protein S24 pseudogene 18 pseudo RPS24P18 ribosomal protein S24 pseudogene 18 O - 20121230 -9606 100271372 RPS25P10 - RPS25_3_1755 HGNC:36078 22 22q13.1 ribosomal protein S25 pseudogene 10 pseudo RPS25P10 ribosomal protein S25 pseudogene 10 O - 20121230 -9606 100271373 RPS25P9 - RPS25_7_1060 HGNC:36936 10 10q22 ribosomal protein S25 pseudogene 9 pseudo RPS25P9 ribosomal protein S25 pseudogene 9 O - 20121230 -9606 100271374 RPS27AP5 - RPS27A_1_141 HGNC:36867 1 1q31.2 ribosomal protein S27a pseudogene 5 pseudo RPS27AP5 ribosomal protein S27a pseudogene 5 O - 20121230 -9606 100271375 RPS27AP8 - RPS27A_2_437 HGNC:36361 3 3q26.31 ribosomal protein S27a pseudogene 8 pseudo RPS27AP8 ribosomal protein S27a pseudogene 8 O - 20121230 -9606 100271376 RPS27AP9 - RPS27A_3_585 HGNC:35630 5 5q14 ribosomal protein S27a pseudogene 9 pseudo RPS27AP9 ribosomal protein S27a pseudogene 9 O - 20121230 -9606 100271377 RPS27AP10 - RPS27A_3_621 HGNC:36570 5 5q31 ribosomal protein S27a pseudogene 10 pseudo RPS27AP10 ribosomal protein S27a pseudogene 10 O - 20121230 -9606 100271378 RPS27AP14 - RPS27A_5_955 HGNC:36530 9 9p24.3 ribosomal protein S27a pseudogene 14 pseudo RPS27AP14 ribosomal protein S27a pseudogene 14 O - 20121230 -9606 100271379 RPS27AP15 - RPS27A_6_985 HGNC:35817 9 9q21.12 ribosomal protein S27a pseudogene 15 pseudo RPS27AP15 ribosomal protein S27a pseudogene 15 O - 20121230 -9606 100271380 RPS27P18 - RPS27_6_1109 HGNC:36296 10 10q26.13 ribosomal protein S27 pseudogene 18 pseudo RPS27P18 ribosomal protein S27 pseudogene 18 O - 20121230 -9606 100271381 RPS28P8 - RPS28_4_1309 HGNC:36938 13 13q14.11 ribosomal protein S28 pseudogene 8 pseudo RPS28P8 ribosomal protein S28 pseudogene 8 O - 20121230 -9606 100271383 RPS29P19 - RPS29_4_1178 HGNC:36118 11 11q23 ribosomal protein S29 pseudogene 19 pseudo RPS29P19 ribosomal protein S29 pseudogene 19 O - 20121230 -9606 100271384 RPS29P22 - RPS29_6_1530 HGNC:35799 17 17q11.2 ribosomal protein S29 pseudogene 22 pseudo RPS29P22 ribosomal protein S29 pseudogene 22 O - 20121230 -9606 100271385 RPS4XP12 - RPS4P12|RPS4X_4_1183 HGNC:35951 11 11q23.3 ribosomal protein S4X pseudogene 12 pseudo RPS4XP12 ribosomal protein S4X pseudogene 12 O - 20121230 -9606 100271386 RPS4XP20 - RPS4P20|RPS4X_9_1648 HGNC:36437 19 19q13.11 ribosomal protein S4X pseudogene 20 pseudo RPS4XP20 ribosomal protein S4X pseudogene 20 O - 20121230 -9606 100271387 RPL12P43 - RPL12_24_1805 HGNC:35840 X Xq24 ribosomal protein L12 pseudogene 43 pseudo RPL12P43 ribosomal protein L12 pseudogene 43 O - 20121230 -9606 100271388 RPL17P49 - RPL17_20_1764 HGNC:37009 X Xp22.2 ribosomal protein L17 pseudogene 49 pseudo RPL17P49 ribosomal protein L17 pseudogene 49 O - 20121230 -9606 100271389 RPL21P81 - RPL21_35_1017 HGNC:35530 9 9q34 ribosomal protein L21 pseudogene 81 pseudo RPL21P81 ribosomal protein L21 pseudogene 81 O - 20121230 -9606 100271390 RPL21P132 - RPL21_62_1798 HGNC:35865 X Xq22 ribosomal protein L21 pseudogene 132 pseudo RPL21P132 ribosomal protein L21 pseudogene 132 O - 20121230 -9606 100271391 RPL21P133 - RPL21_63_1815 HGNC:36003 X Xq26 ribosomal protein L21 pseudogene 133 pseudo RPL21P133 ribosomal protein L21 pseudogene 133 O - 20121230 -9606 100271392 RPL31P63 - RPL31_36_1782 HGNC:35666 X Xq13.1 ribosomal protein L31 pseudogene 63 pseudo RPL31P63 ribosomal protein L31 pseudogene 63 O - 20121230 -9606 100271393 RPL32P35 - RPL32_11_1810 HGNC:36547 X Xq25 ribosomal protein L32 pseudogene 35 pseudo RPL32P35 ribosomal protein L32 pseudogene 35 O - 20121230 -9606 100271394 RPL36P18 - RPL36_10_1804 HGNC:36856 X Xq23 ribosomal protein L36 pseudogene 18 pseudo RPL36P18 ribosomal protein L36 pseudogene 18 O - 20121230 -9606 100271395 RPL37P24 - RPL37_11_1779 HGNC:36201 X Xp11.22 ribosomal protein L37 pseudogene 24 pseudo RPL37P24 ribosomal protein L37 pseudogene 24 O - 20121230 -9606 100271396 RPL39P24 - RPL39_11_1016 HGNC:36431 9 9q34.13 ribosomal protein L39 pseudogene 24 pseudo RPL39P24 ribosomal protein L39 pseudogene 24 O - 20121230 -9606 100271397 RPL39P42 - RPL39_23_1806 HGNC:36204 X Xq24 ribosomal protein L39 pseudogene 42 pseudo RPL39P42 ribosomal protein L39 pseudogene 42 O - 20121230 -9606 100271398 RPL7AP44 - RPL7A_21_1001 HGNC:36645 9 9q31.2 ribosomal protein L7a pseudogene 44 pseudo RPL7AP44 ribosomal protein L7a pseudogene 44 O - 20121230 -9606 100271399 RPL7AP71 - RPL7A_33_1780 HGNC:35754 X Xp11.22 ribosomal protein L7a pseudogene 71 pseudo RPL7AP71 ribosomal protein L7a pseudogene 71 O - 20121230 -9606 100271400 RPS26P56 - RPS26_23_1811 HGNC:35858 X Xq25 ribosomal protein S26 pseudogene 56 pseudo RPS26P56 ribosomal protein S26 pseudogene 56 O - 20121230 -9606 100271401 RPS26P57 - RPS26_34_1808 HGNC:36537 X Xq25 ribosomal protein S26 pseudogene 57 pseudo RPS26P57 ribosomal protein S26 pseudogene 57 O - 20121230 -9606 100271402 RPS29P28 - RPS29_22_1795 HGNC:36830 X Xq21.33 ribosomal protein S29 pseudogene 28 pseudo RPS29P28 ribosomal protein S29 pseudogene 28 O - 20121230 -9606 100271404 RPL12P26 - RPL12_10_1101 HGNC:36811 10 10q25 ribosomal protein L12 pseudogene 26 pseudo RPL12P26 ribosomal protein L12 pseudogene 26 O - 20121230 -9606 100271405 RPL12P30 - RPL12_11_1132 HGNC:35970 11 11p13 ribosomal protein L12 pseudogene 30 pseudo RPL12P30 ribosomal protein L12 pseudogene 30 O - 20121230 -9606 100271406 RPL12P31 - RPL12_11_1136 HGNC:37025 11 11p13 ribosomal protein L12 pseudogene 31 pseudo RPL12P31 ribosomal protein L12 pseudogene 31 O - 20121230 -9606 100271407 RPL12P34 - RPL12_14_1319 HGNC:36168 13 13q21.33 ribosomal protein L12 pseudogene 34 pseudo RPL12P34 ribosomal protein L12 pseudogene 34 O - 20121230 -9606 100271408 RPL12P36 - RPL12_17_1486 HGNC:36598 16 16q21 ribosomal protein L12 pseudogene 36 pseudo RPL12P36 ribosomal protein L12 pseudogene 36 O - 20121230 -9606 100271410 RPL12P39 - RPL12_20_1611 HGNC:35976 18 18q22.1 ribosomal protein L12 pseudogene 39 pseudo RPL12P39 ribosomal protein L12 pseudogene 39 O - 20121230 -9606 100271411 RPL17P37 - RPL17_12_1285 HGNC:36854 12 12q24.23 ribosomal protein L17 pseudogene 37 pseudo RPL17P37 ribosomal protein L17 pseudogene 37 O - 20121230 -9606 100271413 RPL17P40 - RPL17_15_1477 HGNC:36672 16 16p13 ribosomal protein L17 pseudogene 40 pseudo RPL17P40 ribosomal protein L17 pseudogene 40 O - 20121230 -9606 100271414 RPL17P45 - RPL17_16_1598 HGNC:35618 18 18q12.3 ribosomal protein L17 pseudogene 45 pseudo RPL17P45 ribosomal protein L17 pseudogene 45 O - 20121230 -9606 100271415 RPL17P47 - RPL17_17_1624 HGNC:36089 19 19p13.2 ribosomal protein L17 pseudogene 47 pseudo RPL17P47 ribosomal protein L17 pseudogene 47 O - 20121230 -9606 100271416 RPL17P48 - RPL17_19_1717 HGNC:36997 20 20q13.33 ribosomal protein L17 pseudogene 48 pseudo RPL17P48 ribosomal protein L17 pseudogene 48 O - 20121230 -9606 100271417 RPL17P38 - RPL17_22_1275 HGNC:36219 12 12q23.3 ribosomal protein L17 pseudogene 38 pseudo RPL17P38 ribosomal protein L17 pseudogene 38 O - 20121230 -9606 100271418 RPL17P42 - RPL17_25_1540 HGNC:36749 17 17q12 ribosomal protein L17 pseudogene 42 pseudo RPL17P42 ribosomal protein L17 pseudogene 42 O - 20121230 -9606 100271419 RPL17P46 - RPL17_27_1601 HGNC:36202 18 18q21 ribosomal protein L17 pseudogene 46 pseudo RPL17P46 ribosomal protein L17 pseudogene 46 O - 20121230 -9606 100271420 RPL18AP14 - RPL18A_9_1800 HGNC:36624 X Xq22.3 ribosomal protein L18a pseudogene 14 pseudo RPL18AP14 ribosomal protein L18a pseudogene 14 O - 20121230 -9606 100271421 RPL21P88 - RPL21_36_1036 HGNC:35714 10 10q11.21 ribosomal protein L21 pseudogene 88 pseudo RPL21P88 ribosomal protein L21 pseudogene 88 O - 20121230 -9606 100271422 RPL21P89 - RPL21_37_1041 HGNC:36474 10 10q11.23 ribosomal protein L21 pseudogene 89 pseudo RPL21P89 ribosomal protein L21 pseudogene 89 O - 20121230 -9606 100271423 RPL21P90 - RPL21_37_1084 HGNC:35548 10 10q23.33 ribosomal protein L21 pseudogene 90 pseudo RPL21P90 ribosomal protein L21 pseudogene 90 O - 20121230 -9606 100271424 RPL21P91 - RPL21_39_1094 HGNC:36450 10 10q25.1 ribosomal protein L21 pseudogene 91 pseudo RPL21P91 ribosomal protein L21 pseudogene 91 O - 20121230 -9606 100271425 RPL21P94 - RPL21_39_1117 HGNC:35568 11 11p15 ribosomal protein L21 pseudogene 94 pseudo RPL21P94 ribosomal protein L21 pseudogene 94 O - 20121230 -9606 100271427 RPL21P95 - RPL21_40_1159 HGNC:36097 11 11q14.1 ribosomal protein L21 pseudogene 95 pseudo RPL21P95 ribosomal protein L21 pseudogene 95 O - 20121230 -9606 100271428 RPL21P96 - RPL21_41_1169 HGNC:36790 11 11q22.3 ribosomal protein L21 pseudogene 96 pseudo RPL21P96 ribosomal protein L21 pseudogene 96 O - 20121230 -9606 100271429 RPL21P99 - RPL21_41_1222 HGNC:36628 12 12p11.22 ribosomal protein L21 pseudogene 99 pseudo RPL21P99 ribosomal protein L21 pseudogene 99 O - 20121230 -9606 100271430 RPL21P100 - RPL21_42_1206 HGNC:36048 12 12p13.2 ribosomal protein L21 pseudogene 100 pseudo RPL21P100 ribosomal protein L21 pseudogene 100 O - 20121230 -9606 100271431 RPL21P101 - RPL21_42_1230 HGNC:35733 12 12q12 ribosomal protein L21 pseudogene 101 pseudo RPL21P101 ribosomal protein L21 pseudogene 101 O - 20121230 -9606 100271432 RPL21P102 - RPL21_43_1219 HGNC:36295 12 12p12.1 ribosomal protein L21 pseudogene 102 pseudo RPL21P102 ribosomal protein L21 pseudogene 102 O - 20121230 -9606 100271433 RPL21P103 - RPL21_44_1241 HGNC:36732 12 12q14.1 ribosomal protein L21 pseudogene 103 pseudo RPL21P103 ribosomal protein L21 pseudogene 103 O - 20121230 -9606 100271434 RPL21P108 - RPL21_44_1324 HGNC:35496 13 13q22.1 ribosomal protein L21 pseudogene 108 pseudo RPL21P108 ribosomal protein L21 pseudogene 108 O - 20121230 -9606 100271435 RPL21P104 - RPL21_45_1243 HGNC:36918 12 12q14.1 ribosomal protein L21 pseudogene 104 pseudo RPL21P104 ribosomal protein L21 pseudogene 104 O - 20121230 -9606 100271437 RPL21P109 - RPL21_49_1320 HGNC:36388 13 13q22 ribosomal protein L21 pseudogene 109 pseudo RPL21P109 ribosomal protein L21 pseudogene 109 O - 20121230 -9606 100271438 RPL21P110 - RPL21_50_1323 HGNC:35627 13 13q22.1 ribosomal protein L21 pseudogene 110 pseudo RPL21P110 ribosomal protein L21 pseudogene 110 O - 20121230 -9606 100271439 RPL21P111 - RPL21_51_1327 HGNC:36564 13 13q31.1 ribosomal protein L21 pseudogene 111 pseudo RPL21P111 ribosomal protein L21 pseudogene 111 O - 20121230 -9606 100271440 RPL21P113 - RPL21_51_1437 HGNC:36563 15 15q21 ribosomal protein L21 pseudogene 113 pseudo RPL21P113 ribosomal protein L21 pseudogene 113 O - 20121230 -9606 100271441 RPL21P114 - RPL21_52_1438 HGNC:36776 15 15q22.2 ribosomal protein L21 pseudogene 114 pseudo RPL21P114 ribosomal protein L21 pseudogene 114 O - 20121230 -9606 100271443 RPL21P115 - RPL21_54_1451 HGNC:35878 15 15q22 ribosomal protein L21 pseudogene 115 pseudo RPL21P115 ribosomal protein L21 pseudogene 115 O - 20121230 -9606 100271444 RPL21P116 - RPL21_55_1456 HGNC:36101 15 15q24 ribosomal protein L21 pseudogene 116 pseudo RPL21P116 ribosomal protein L21 pseudogene 116 O - 20121230 -9606 100271445 RPL21P121 - RPL21_56_1523 HGNC:36429 17 17p11.2 ribosomal protein L21 pseudogene 121 pseudo RPL21P121 ribosomal protein L21 pseudogene 121 O - 20121230 -9606 100271446 RPL21P118 - RPL21_57_1497 HGNC:35954 16 16q22.3 ribosomal protein L21 pseudogene 118 pseudo RPL21P118 ribosomal protein L21 pseudogene 118 O - 20121230 -9606 100271447 RPL21P122 - RPL21_58_1515 HGNC:36990 17 17p12 ribosomal protein L21 pseudogene 122 pseudo RPL21P122 ribosomal protein L21 pseudogene 122 O - 20121230 -9606 100271448 RPL21P123 - RPL21_59_1535 HGNC:35691 17 17p11.2 ribosomal protein L21 pseudogene 123 pseudo RPL21P123 ribosomal protein L21 pseudogene 123 O - 20121230 -9606 100271449 RPL21P126 - RPL21_59_1605 HGNC:35959 18 18q21.2 ribosomal protein L21 pseudogene 126 pseudo RPL21P126 ribosomal protein L21 pseudogene 126 O - 20121230 -9606 100271450 RPL21P124 - RPL21_60_1556 HGNC:36060 17 17q21 ribosomal protein L21 pseudogene 124 pseudo RPL21P124 ribosomal protein L21 pseudogene 124 O - 20121230 -9606 100271451 RPL21P129 - RPL21_60_1619 HGNC:36747 19 19p13 ribosomal protein L21 pseudogene 129 pseudo RPL21P129 ribosomal protein L21 pseudogene 129 O - 20121230 -9606 100271452 RPL21P127 - RPL21_61_1581 HGNC:36099 18 18p11.3 ribosomal protein L21 pseudogene 127 pseudo RPL21P127 ribosomal protein L21 pseudogene 127 O - 20121230 -9606 100271453 RPL21P130 - RPL21_63_1633 HGNC:36453 19 19p13.2 ribosomal protein L21 pseudogene 130 pseudo RPL21P130 ribosomal protein L21 pseudogene 130 O - 20121230 -9606 100271455 RPL22P21 - RPL22_11_1520 HGNC:35547 17 17p12 ribosomal protein L22 pseudogene 21 pseudo RPL22P21 ribosomal protein L22 pseudogene 21 O - 20121230 -9606 100271456 RPL23AP27 - RPL23A_10_252 HGNC:36497 2 2q12.1 ribosomal protein L23a pseudogene 27 pseudo RPL23AP27 ribosomal protein L23a pseudogene 27 O - 20121230 -9606 100271457 RPL23AP28 - RPL23A_10_329 HGNC:36727 2 2q36.3 ribosomal protein L23a pseudogene 28 pseudo RPL23AP28 ribosomal protein L23a pseudogene 28 O - 20121230 -9606 100271458 RPL23AP29 - RPL23A_11_287 HGNC:36355 2 2q23.3 ribosomal protein L23a pseudogene 29 pseudo RPL23AP29 ribosomal protein L23a pseudogene 29 O - 20121230 -9606 100271459 RPL23AP30 - RPL23A_12_308 HGNC:35617 2 2q31.3 ribosomal protein L23a pseudogene 30 pseudo RPL23AP30 ribosomal protein L23a pseudogene 30 O - 20121230 -9606 100271460 RPL23AP31 - RPL23A_13_326 HGNC:35777 2 2q33 ribosomal protein L23a pseudogene 31 pseudo RPL23AP31 ribosomal protein L23a pseudogene 31 O - 20121230 -9606 100271461 RPL23AP39 - RPL23A_15_341 HGNC:36470 3 3p26.3 ribosomal protein L23a pseudogene 39 pseudo RPL23AP39 ribosomal protein L23a pseudogene 39 O - 20121230 -9606 100271462 RPL23AP40 - RPL23A_17_408 HGNC:35587 3 3q22.3 ribosomal protein L23a pseudogene 40 pseudo RPL23AP40 ribosomal protein L23a pseudogene 40 O - 20121230 -9606 100271464 RPL23AP51 - RPL23A_18_782 HGNC:36040 7 7p22 ribosomal protein L23a pseudogene 51 pseudo RPL23AP51 ribosomal protein L23a pseudogene 51 O - 20121230 -9606 100271465 RPL23AP52 - RPL23A_19_784 HGNC:36723 7 7p21.3 ribosomal protein L23a pseudogene 52 pseudo RPL23AP52 ribosomal protein L23a pseudogene 52 O - 20121230 -9606 100271466 RPL23AP54 - RPL23A_22_870 HGNC:36689 8 8p23.2 ribosomal protein L23a pseudogene 54 pseudo RPL23AP54 ribosomal protein L23a pseudogene 54 O - 20121230 -9606 100271467 RPL23AP55 - RPL23A_23_884 HGNC:35997 8 8p21 ribosomal protein L23a pseudogene 55 pseudo RPL23AP55 ribosomal protein L23a pseudogene 55 O - 20121230 -9606 100271469 RPL26P31 - RPL26_11_1166 HGNC:36907 11 11q21-q22 ribosomal protein L26 pseudogene 31 pseudo RPL26P31 ribosomal protein L26 pseudogene 31 O - 20121230 -9606 100271470 RPL26P34 - RPL26_13_1302 HGNC:36249 13 13q12.12 ribosomal protein L26 pseudogene 34 pseudo RPL26P34 ribosomal protein L26 pseudogene 34 O - 20121230 -9606 100271471 RPL26P27 - RPL26_15_1055 HGNC:36735 10 10q21 ribosomal protein L26 pseudogene 27 pseudo RPL26P27 ribosomal protein L26 pseudogene 27 O - 20121230 -9606 100271472 RPL29P22 - RPL29_12_1148 HGNC:35675 11 11q11 ribosomal protein L29 pseudogene 22 pseudo RPL29P22 ribosomal protein L29 pseudogene 22 O - 20121230 -9606 100271474 RPL29P29 - RPL29_18_1328 HGNC:36577 13 13q31.2 ribosomal protein L29 pseudogene 29 pseudo RPL29P29 ribosomal protein L29 pseudogene 29 O - 20121230 -9606 100271475 RPL31P51 - RPL31_17_1239 HGNC:35600 12 12q13 ribosomal protein L31 pseudogene 51 pseudo RPL31P51 ribosomal protein L31 pseudogene 51 O - 20121230 -9606 100271476 RPL31P52 - RPL31_18_1289 HGNC:36607 12 12q24.2 ribosomal protein L31 pseudogene 52 pseudo RPL31P52 ribosomal protein L31 pseudogene 52 O - 20121230 -9606 100271477 RPL31P53 - RPL31_19_1315 HGNC:35749 13 13q21.1 ribosomal protein L31 pseudogene 53 pseudo RPL31P53 ribosomal protein L31 pseudogene 53 O - 20121230 -9606 100271478 RPL31P56 - RPL31_20_1484 HGNC:36336 16 16q11.2-q13 ribosomal protein L31 pseudogene 56 pseudo RPL31P56 ribosomal protein L31 pseudogene 56 O - 20121230 -9606 100271479 RPL31P46 - RPL31_23_1157 HGNC:35559 11 11q13.4 ribosomal protein L31 pseudogene 46 pseudo RPL31P46 ribosomal protein L31 pseudogene 46 O - 20121230 -9606 100271480 RPL31P59 - RPL31_23_1580 HGNC:36975 18 18p11.3 ribosomal protein L31 pseudogene 59 pseudo RPL31P59 ribosomal protein L31 pseudogene 59 O - 20121230 -9606 100271481 RPL31P47 - RPL31_24_1186 HGNC:36124 11 11q24.1 ribosomal protein L31 pseudogene 47 pseudo RPL31P47 ribosomal protein L31 pseudogene 47 O - 20121230 -9606 100271482 RPL31P62 - RPL31_26_1736 HGNC:36569 22 22q11.1 ribosomal protein L31 pseudogene 62 pseudo RPL31P62 ribosomal protein L31 pseudogene 62 O - 20121230 -9606 100271483 RPL31P54 - RPL31_27_1326 HGNC:36077 13 13q22.3 ribosomal protein L31 pseudogene 54 pseudo RPL31P54 ribosomal protein L31 pseudogene 54 O - 20121230 -9606 100271485 RPL31P58 - RPL31_32_1533 HGNC:35862 17 17q11 ribosomal protein L31 pseudogene 58 pseudo RPL31P58 ribosomal protein L31 pseudogene 58 O - 20121230 -9606 100271486 RPL31P60 - RPL31_33_1645 HGNC:36123 19 19q13.11 ribosomal protein L31 pseudogene 60 pseudo RPL31P60 ribosomal protein L31 pseudogene 60 O - 20121230 -9606 100271487 RPL31P61 - RPL31_34_1652 HGNC:35635 19 19q13.12 ribosomal protein L31 pseudogene 61 pseudo RPL31P61 ribosomal protein L31 pseudogene 61 O - 20121230 -9606 100271488 RPL32P32 - RPL32_10_1563 HGNC:36024 17 17q23.2 ribosomal protein L32 pseudogene 32 pseudo RPL32P32 ribosomal protein L32 pseudogene 32 O - 20121230 -9606 100271489 RPL32P24 - RPL32_15_1162 HGNC:36722 11 11q13 ribosomal protein L32 pseudogene 24 pseudo RPL32P24 ribosomal protein L32 pseudogene 24 O - 20121230 -9606 100271490 RPL32P25 - RPL32_16_1167 HGNC:35721 11 11q21 ribosomal protein L32 pseudogene 25 pseudo RPL32P25 ribosomal protein L32 pseudogene 25 O - 20121230 -9606 100271491 RPL32P26 - RPL32_17_1245 HGNC:36027 12 12q14.1 ribosomal protein L32 pseudogene 26 pseudo RPL32P26 ribosomal protein L32 pseudogene 26 O - 20121230 -9606 100271492 RPL32P30 - RPL32_19_1431 HGNC:36729 15 15q21.2 ribosomal protein L32 pseudogene 30 pseudo RPL32P30 ribosomal protein L32 pseudogene 30 O - 20121230 -9606 100271493 RPL32P33 - RPL32_20_1573 HGNC:36231 17 17q24.3 ribosomal protein L32 pseudogene 33 pseudo RPL32P33 ribosomal protein L32 pseudogene 33 O - 20121230 -9606 100271494 RPL34P19 - RPL34_10_1028 HGNC:36925 10 10p11.22 ribosomal protein L34 pseudogene 19 pseudo RPL34P19 ribosomal protein L34 pseudogene 19 O - 20121230 -9606 100271495 RPL34P21 - RPL34_10_1189 HGNC:35677 11 11q24 ribosomal protein L34 pseudogene 21 pseudo RPL34P21 ribosomal protein L34 pseudogene 21 O - 20121230 -9606 100271498 RPL34P22 - RPL34_12_1141 HGNC:36454 11 11p11.2 ribosomal protein L34 pseudogene 22 pseudo RPL34P22 ribosomal protein L34 pseudogene 22 O - 20121230 -9606 100271499 RPL34P23 - RPL34_13_1184 HGNC:35820 11 11q24.1 ribosomal protein L34 pseudogene 23 pseudo RPL34P23 ribosomal protein L34 pseudogene 23 O - 20121230 -9606 100271500 RPL34P28 - RPL34_13_1367 HGNC:36781 14 14q22 ribosomal protein L34 pseudogene 28 pseudo RPL34P28 ribosomal protein L34 pseudogene 28 O - 20121230 -9606 100271501 RPL34P25 - RPL34_14_1217 HGNC:35895 12 12p12 ribosomal protein L34 pseudogene 25 pseudo RPL34P25 ribosomal protein L34 pseudogene 25 O - 20121230 -9606 100271502 RPL34P32 - RPL34_14_1586 HGNC:36902 18 18q11.2 ribosomal protein L34 pseudogene 32 pseudo RPL34P32 ribosomal protein L34 pseudogene 32 O - 20121230 -9606 100271503 RPL34P29 - RPL34_15_1483 HGNC:35631 16 16q12.1 ribosomal protein L34 pseudogene 29 pseudo RPL34P29 ribosomal protein L34 pseudogene 29 O - 20121230 -9606 100271504 RPL34P35 - RPL34_16_1738 HGNC:35798 22 22q11.21 ribosomal protein L34 pseudogene 35 pseudo RPL34P35 ribosomal protein L34 pseudogene 35 O - 20121230 -9606 100271505 RPL34P30 - RPL34_17_1547 HGNC:36477 17 17q21 ribosomal protein L34 pseudogene 30 pseudo RPL34P30 ribosomal protein L34 pseudogene 30 O - 20121230 -9606 100271506 RPL35AP21 - RPL35A_11_983 HGNC:36814 9 9q21.13 ribosomal protein L35a pseudogene 21 pseudo RPL35AP21 ribosomal protein L35a pseudogene 21 O - 20121230 -9606 100271507 RPL35AP22 - RPL35A_9_1011 HGNC:35932 9 9q33.1 ribosomal protein L35a pseudogene 22 pseudo RPL35AP22 ribosomal protein L35a pseudogene 22 O - 20121230 -9606 100271508 RPL36AP24 - RPL36A_10_733 HGNC:36252 6 6q21 ribosomal protein L36a pseudogene 24 pseudo RPL36AP24 ribosomal protein L36a pseudogene 24 O - 20121230 -9606 100271509 RPL36AP28 - RPL36A_10_864 HGNC:36702 7 7q36.1 ribosomal protein L36a pseudogene 28 pseudo RPL36AP28 ribosomal protein L36a pseudogene 28 O - 20121230 -9606 100271510 RPL36AP29 - RPL36A_11_788 HGNC:36897 7 7p21.1 ribosomal protein L36a pseudogene 29 pseudo RPL36AP29 ribosomal protein L36a pseudogene 29 O - 20121230 -9606 100271511 RPL36AP30 - RPL36A_11_867 HGNC:36216 7 7q36.3 ribosomal protein L36a pseudogene 30 pseudo RPL36AP30 ribosomal protein L36a pseudogene 30 O - 20121230 -9606 100271512 RPL36AP32 - RPL36A_12_887 HGNC:36540 8 8p21.1 ribosomal protein L36a pseudogene 32 pseudo RPL36AP32 ribosomal protein L36a pseudogene 32 O - 20121230 -9606 100271513 RPL36AP34 - RPL36A_14_970 HGNC:35882 9 9p21 ribosomal protein L36a pseudogene 34 pseudo RPL36AP34 ribosomal protein L36a pseudogene 34 O - 20121230 -9606 100271515 RPL37P19 - RPL37_10_1232 HGNC:35576 12 12q13.1 ribosomal protein L37 pseudogene 19 pseudo RPL37P19 ribosomal protein L37 pseudogene 19 O - 20121230 -9606 100271516 RPL37P21 - RPL37_11_1318 HGNC:36256 13 13q21.33 ribosomal protein L37 pseudogene 21 pseudo RPL37P21 ribosomal protein L37 pseudogene 21 O - 20121230 -9606 100271517 RPL39P25 - RPL39_11_1067 HGNC:37002 10 10q22.2 ribosomal protein L39 pseudogene 25 pseudo RPL39P25 ribosomal protein L39 pseudogene 25 O - 20121230 -9606 100271518 RPL39P26 - RPL39_12_1121 HGNC:35900 11 11p15.2 ribosomal protein L39 pseudogene 26 pseudo RPL39P26 ribosomal protein L39 pseudogene 26 O - 20121230 -9606 100271519 RPL39P30 - RPL39_12_1504 HGNC:36979 16 16q24.2 ribosomal protein L39 pseudogene 30 pseudo RPL39P30 ribosomal protein L39 pseudogene 30 O - 20121230 -9606 100271520 RPL39P28 - RPL39_14_1253 HGNC:35619 12 12q15 ribosomal protein L39 pseudogene 28 pseudo RPL39P28 ribosomal protein L39 pseudogene 28 O - 20121230 -9606 100271521 RPL39P33 - RPL39_14_1560 HGNC:36315 17 17q22 ribosomal protein L39 pseudogene 33 pseudo RPL39P33 ribosomal protein L39 pseudogene 33 O - 20121230 -9606 100271522 RPL39P29 - RPL39_15_1333 HGNC:35808 13 13q34 ribosomal protein L39 pseudogene 29 pseudo RPL39P29 ribosomal protein L39 pseudogene 29 O - 20121230 -9606 100271523 RPL39P34 - RPL39_15_1666 HGNC:36528 19 19q13.3 ribosomal protein L39 pseudogene 34 pseudo RPL39P34 ribosomal protein L39 pseudogene 34 O - 20121230 -9606 100271524 RPL39P35 - RPL39_16_1667 HGNC:35815 19 19q13.41 ribosomal protein L39 pseudogene 35 pseudo RPL39P35 ribosomal protein L39 pseudogene 35 O - 20121230 -9606 100271525 RPL39P31 - RPL39_17_1495 HGNC:36488 16 16q22 ribosomal protein L39 pseudogene 31 pseudo RPL39P31 ribosomal protein L39 pseudogene 31 O - 20121230 -9606 100271526 RPL39P36 - RPL39_17_1668 HGNC:36076 19 19q13.41 ribosomal protein L39 pseudogene 36 pseudo RPL39P36 ribosomal protein L39 pseudogene 36 O - 20121230 -9606 100271528 RPL39P37 - RPL39_18_1669 HGNC:36282 19 19q13.41 ribosomal protein L39 pseudogene 37 pseudo RPL39P37 ribosomal protein L39 pseudogene 37 O - 20121230 -9606 100271529 RPL39P38 - RPL39_19_1635 HGNC:36935 19 19p13.1 ribosomal protein L39 pseudogene 38 pseudo RPL39P38 ribosomal protein L39 pseudogene 38 O - 20121230 -9606 100271530 RPL39P39 - RPL39_19_1716 HGNC:36514 20 20q13.31 ribosomal protein L39 pseudogene 39 pseudo RPL39P39 ribosomal protein L39 pseudogene 39 O - 20121230 -9606 100271531 RPL39P40 - RPL39_21_1719 HGNC:35823 21 21q21.1 ribosomal protein L39 pseudogene 40 pseudo RPL39P40 ribosomal protein L39 pseudogene 40 O - 20121230 -9606 100271532 RPL39P41 - RPL39_22_1750 HGNC:35941 22 22q13.1 ribosomal protein L39 pseudogene 41 pseudo RPL39P41 ribosomal protein L39 pseudogene 41 O - 20121230 -9606 100271533 RPL7AP51 - RPL7A_17_1050 HGNC:36826 10 10q22.2 ribosomal protein L7a pseudogene 51 pseudo RPL7AP51 ribosomal protein L7a pseudogene 51 O - 20121230 -9606 100271534 RPL7AP52 - RPL7A_18_1082 HGNC:36233 10 10q24.1-q24.3 ribosomal protein L7a pseudogene 52 pseudo RPL7AP52 ribosomal protein L7a pseudogene 52 O - 20121230 -9606 100271535 RPL7AP55 - RPL7A_19_1118 HGNC:36314 11 11p15.4 ribosomal protein L7a pseudogene 55 pseudo RPL7AP55 ribosomal protein L7a pseudogene 55 O - 20121230 -9606 100271536 RPL7AP56 - RPL7A_21_1137 HGNC:35585 11 11p12 ribosomal protein L7a pseudogene 56 pseudo RPL7AP56 ribosomal protein L7a pseudogene 56 O - 20121230 -9606 100271537 RPL7AP57 - RPL7A_23_1164 HGNC:36551 11 11q14.3 ribosomal protein L7a pseudogene 57 pseudo RPL7AP57 ribosomal protein L7a pseudogene 57 O - 20121230 -9606 100271538 RPL7AP60 - RPL7A_25_1279 HGNC:35859 12 12q24.13 ribosomal protein L7a pseudogene 60 pseudo RPL7AP60 ribosomal protein L7a pseudogene 60 O - 20121230 -9606 100271539 RPL7AP61 - RPL7A_25_1330 HGNC:35482 13 13q32.2 ribosomal protein L7a pseudogene 61 pseudo RPL7AP61 ribosomal protein L7a pseudogene 61 O - 20121230 -9606 100271542 RPL7AP67 - RPL7A_29_1595 HGNC:35537 18 18q12 ribosomal protein L7a pseudogene 67 pseudo RPL7AP67 ribosomal protein L7a pseudogene 67 O - 20121230 -9606 100271543 RPL7AP65 - RPL7A_30_1522 HGNC:37031 17 17p11.2 ribosomal protein L7a pseudogene 65 pseudo RPL7AP65 ribosomal protein L7a pseudogene 65 O - 20121230 -9606 100271545 RPL7AP69 - RPL7A_31_1673 HGNC:36697 19 19q13.43 ribosomal protein L7a pseudogene 69 pseudo RPL7AP69 ribosomal protein L7a pseudogene 69 O - 20121230 -9606 100271546 RPS10P25 - RPS10_10_1555 HGNC:36532 17 17q21 ribosomal protein S10 pseudogene 25 pseudo RPS10P25 ribosomal protein S10 pseudogene 25 O - 20121230 -9606 100271547 RPS10P20 - RPS10_11_1233 HGNC:35829 12 12q13 ribosomal protein S10 pseudogene 20 pseudo RPS10P20 ribosomal protein S10 pseudogene 20 O - 20121230 -9606 100271548 RPS10P26 - RPS10_11_1569 HGNC:36321 17 17q23 ribosomal protein S10 pseudogene 26 pseudo RPS10P26 ribosomal protein S10 pseudogene 26 O - 20121230 -9606 100271549 RPS12P20 - RPS12_10_1153 HGNC:36187 11 11q13 ribosomal protein S12 pseudogene 20 pseudo RPS12P20 ribosomal protein S12 pseudogene 20 O - 20121230 -9606 100271550 RPS12P21 - RPS12_11_1175 HGNC:36464 11 11q22 ribosomal protein S12 pseudogene 21 pseudo RPS12P21 ribosomal protein S12 pseudogene 21 O - 20121230 -9606 100271551 RPS12P24 - RPS12_12_1308 HGNC:35561 13 13q13.3 ribosomal protein S12 pseudogene 24 pseudo RPS12P24 ribosomal protein S12 pseudogene 24 O - 20121230 -9606 100271552 RPS12P27 - RPS12_13_1490 HGNC:35892 16 16q22.1 ribosomal protein S12 pseudogene 27 pseudo RPS12P27 ribosomal protein S12 pseudogene 27 O - 20121230 -9606 100271553 RPS12P28 - RPS12_14_1532 HGNC:36972 17 17p13.2 ribosomal protein S12 pseudogene 28 pseudo RPS12P28 ribosomal protein S12 pseudogene 28 O - 20121230 -9606 100271555 RPS12P30 - RPS12_15_1561 HGNC:36813 17 17q22 ribosomal protein S12 pseudogene 30 pseudo RPS12P30 ribosomal protein S12 pseudogene 30 O - 20121230 -9606 100271556 RPS12P32 - RPS12_16_1623 HGNC:35571 19 19p13.2 ribosomal protein S12 pseudogene 32 pseudo RPS12P32 ribosomal protein S12 pseudogene 32 O - 20121230 -9606 100271557 RPS15AP22 - RPS15A_11_848 HGNC:36305 7 7q32.3 ribosomal protein S15a pseudogene 22 pseudo RPS15AP22 ribosomal protein S15a pseudogene 22 O - 20121230 -9606 100271558 RPS15AP23 - RPS15A_12_849 HGNC:36718 7 7q31 ribosomal protein S15a pseudogene 23 pseudo RPS15AP23 ribosomal protein S15a pseudogene 23 O - 20121230 -9606 100271560 RPS20P28 - RPS20_13_1202 HGNC:36452 12 12p13 ribosomal protein S20 pseudogene 28 pseudo RPS20P28 ribosomal protein S20 pseudogene 28 O - 20121230 -9606 100271561 RPS20P29 - RPS20_14_1201 HGNC:36237 12 12p13.31 ribosomal protein S20 pseudogene 29 pseudo RPS20P29 ribosomal protein S20 pseudogene 29 O - 20121230 -9606 100271562 RPS20P30 - RPS20_14_1295 HGNC:36626 12 12q24.33 ribosomal protein S20 pseudogene 30 pseudo RPS20P30 ribosomal protein S20 pseudogene 30 O - 20121230 -9606 100271563 RPS20P31 - RPS20_15_1287 HGNC:35767 12 12q24.2 ribosomal protein S20 pseudogene 31 pseudo RPS20P31 ribosomal protein S20 pseudogene 31 O - 20121230 -9606 100271564 RPS20P33 - RPS20_16_1416 HGNC:36725 14 14q32.3 ribosomal protein S20 pseudogene 33 pseudo RPS20P33 ribosomal protein S20 pseudogene 33 O - 20121230 -9606 100271565 RPS20P34 - RPS20_17_1430 HGNC:36668 15 15q21.1 ribosomal protein S20 pseudogene 34 pseudo RPS20P34 ribosomal protein S20 pseudogene 34 O - 20121230 -9606 100271566 RPS20P35 - RPS20_18_1544 HGNC:36929 17 17q ribosomal protein S20 pseudogene 35 pseudo RPS20P35 ribosomal protein S20 pseudogene 35 O - 20121230 -9606 100271567 RPS26P41 - RPS26_13_1064 HGNC:36062 10 10q22.2 ribosomal protein S26 pseudogene 41 pseudo RPS26P41 ribosomal protein S26 pseudogene 41 O - 20121230 -9606 100271568 RPS26P42 - RPS26_14_1066 HGNC:36243 10 10q22 ribosomal protein S26 pseudogene 42 pseudo RPS26P42 ribosomal protein S26 pseudogene 42 O - 20121230 -9606 100271569 RPS26P44 - RPS26_16_1195 HGNC:36927 12 12p13.3 ribosomal protein S26 pseudogene 44 pseudo RPS26P44 ribosomal protein S26 pseudogene 44 O - 20121230 -9606 100271570 RPS26P45 - RPS26_17_1256 HGNC:36944 12 12q15 ribosomal protein S26 pseudogene 45 pseudo RPS26P45 ribosomal protein S26 pseudogene 45 O - 20121230 -9606 100271571 RPS26P43 - RPS26_22_1185 HGNC:36675 11 11q24.1 ribosomal protein S26 pseudogene 43 pseudo RPS26P43 ribosomal protein S26 pseudogene 43 O - 20121230 -9606 100271572 RPS26P46 - RPS26_23_1212 HGNC:35807 12 12p13.1 ribosomal protein S26 pseudogene 46 pseudo RPS26P46 ribosomal protein S26 pseudogene 46 O - 20121230 -9606 100271574 RPS26P48 - RPS26_26_1396 HGNC:35519 14 14q31 ribosomal protein S26 pseudogene 48 pseudo RPS26P48 ribosomal protein S26 pseudogene 48 O - 20121230 -9606 100271575 RPS26P49 - RPS26_27_1414 HGNC:35514 14 14q32.33 ribosomal protein S26 pseudogene 49 pseudo RPS26P49 ribosomal protein S26 pseudogene 49 O - 20121230 -9606 100271576 RPS26P51 - RPS26_28_1470 HGNC:36254 16 16p13.3 ribosomal protein S26 pseudogene 51 pseudo RPS26P51 ribosomal protein S26 pseudogene 51 O - 20121230 -9606 100271577 RPS26P52 - RPS26_29_1475 HGNC:36863 16 16p13.3 ribosomal protein S26 pseudogene 52 pseudo RPS26P52 ribosomal protein S26 pseudogene 52 O - 20121230 -9606 100271581 RPS27P20 - RPS27_11_1188 HGNC:36333 11 11q24.3 ribosomal protein S27 pseudogene 20 pseudo RPS27P20 ribosomal protein S27 pseudogene 20 O - 20121230 -9606 100271583 RPS27P26 - RPS27_12_1494 HGNC:36904 16 16q22 ribosomal protein S27 pseudogene 26 pseudo RPS27P26 ribosomal protein S27 pseudogene 26 O - 20121230 -9606 100271584 RPS27P25 - RPS27_14_1288 HGNC:36020 12 12q ribosomal protein S27 pseudogene 25 pseudo RPS27P25 ribosomal protein S27 pseudogene 25 O - 20121230 -9606 100271585 RPS27P27 - RPS27_15_1487 HGNC:36043 16 16q21 ribosomal protein S27 pseudogene 27 pseudo RPS27P27 ribosomal protein S27 pseudogene 27 O - 20121230 -9606 100271586 RPS27P28 - RPS27_16_1593 HGNC:36748 18 18q12.1 ribosomal protein S27 pseudogene 28 pseudo RPS27P28 ribosomal protein S27 pseudogene 28 O - 20121230 -9606 100271587 RPS29P20 - RPS29_15_1116 HGNC:36491 11 11p15.4 ribosomal protein S29 pseudogene 20 pseudo RPS29P20 ribosomal protein S29 pseudogene 20 O - 20121230 -9606 100271588 RPS29P23 - RPS29_17_1627 HGNC:35779 19 19p13.2 ribosomal protein S29 pseudogene 23 pseudo RPS29P23 ribosomal protein S29 pseudogene 23 O - 20121230 -9606 100271589 RPS29P24 - RPS29_18_1653 HGNC:35794 19 19q13 ribosomal protein S29 pseudogene 24 pseudo RPS29P24 ribosomal protein S29 pseudogene 24 O - 20121230 -9606 100271590 RPS29P25 - RPS29_19_1654 HGNC:35649 19 19q13 ribosomal protein S29 pseudogene 25 pseudo RPS29P25 ribosomal protein S29 pseudogene 25 O - 20121230 -9606 100271591 RPS29P26 - RPS29_20_1655 HGNC:36490 19 19q13.1 ribosomal protein S29 pseudogene 26 pseudo RPS29P26 ribosomal protein S29 pseudogene 26 O - 20121230 -9606 100271592 RPS29P27 - RPS29_21_1656 HGNC:35836 19 19q13.1 ribosomal protein S29 pseudogene 27 pseudo RPS29P27 ribosomal protein S29 pseudogene 27 O - 20121230 -9606 100271593 RPS3AP37 - RPS3A_14_1056 HGNC:36691 10 10q21 ribosomal protein S3a pseudogene 37 pseudo RPS3AP37 ribosomal protein S3a pseudogene 37 O - 20121230 -9606 100271594 RPS3AP38 - RPS3A_17_1053 HGNC:36145 10 10q21.3 ribosomal protein S3a pseudogene 38 pseudo RPS3AP38 ribosomal protein S3a pseudogene 38 O - 20121230 -9606 100271595 RPS3AP41 - RPS3A_17_1152 HGNC:37000 11 11q13.4 ribosomal protein S3a pseudogene 41 pseudo RPS3AP41 ribosomal protein S3a pseudogene 41 O - 20121230 -9606 100271596 RPS3AP46 - RPS3A_19_1365 HGNC:36338 14 14q22.1 ribosomal protein S3a pseudogene 46 pseudo RPS3AP46 ribosomal protein S3a pseudogene 46 O - 20121230 -9606 100271597 RPS3AP42 - RPS3A_20_1165 HGNC:35605 11 11q14.3 ribosomal protein S3a pseudogene 42 pseudo RPS3AP42 ribosomal protein S3a pseudogene 42 O - 20121230 -9606 100271600 RPS3AP51 - RPS3A_23_1744 HGNC:35480 22 22q12.2 ribosomal protein S3a pseudogene 51 pseudo RPS3AP51 ribosomal protein S3a pseudogene 51 O - 20121230 -9606 100271601 RPS3AP50 - RPS3A_24_1646 HGNC:37018 19 19q13.1 ribosomal protein S3a pseudogene 50 pseudo RPS3AP50 ribosomal protein S3a pseudogene 50 O - 20121230 -9606 100271602 RPL10AP13 - RPL10A_8_1594 HGNC:36155 18 18q12 ribosomal protein L10a pseudogene 13 pseudo RPL10AP13 ribosomal protein L10a pseudogene 13 O - 20121230 -9606 100271603 RPL13AP24 - RPL13A_8_1193 HGNC:36209 12 12p13.3-p13.2 ribosomal protein L13a pseudogene 24 pseudo RPL13AP24 ribosomal protein L13a pseudogene 24 O - 20121230 -9606 100271604 RPL18AP12 - RPL18A_7_1543 HGNC:36991 17 17q21 ribosomal protein L18a pseudogene 12 pseudo RPL18AP12 ribosomal protein L18a pseudogene 12 O - 20121230 -9606 100271605 RPL27AP8 - RPL27A_5_1310 HGNC:36544 13 13q14.2 ribosomal protein L27a pseudogene 8 pseudo RPL27AP8 ribosomal protein L27a pseudogene 8 O - 20121230 -9606 100271606 RPL37AP9 - RPL37A_4_1209 HGNC:36835 12 12p13.1 ribosomal protein L37a pseudogene 9 pseudo RPL37AP9 ribosomal protein L37a pseudogene 9 O - 20121230 -9606 100271607 RPS15AP30 - RPS15A_8_1098 HGNC:35495 10 10q25.2 ribosomal protein S15a pseudogene 30 pseudo RPS15AP30 ribosomal protein S15a pseudogene 30 O - 20121230 -9606 100271610 RPL36AP35 - RPL36A_16_1006 HGNC:35639 9 9q31.3 ribosomal protein L36a pseudogene 35 pseudo RPL36AP35 ribosomal protein L36a pseudogene 35 O - 20121230 -9606 100271611 RPL36AP53 - RPL36A_27_1803 HGNC:36517 X Xq24 ribosomal protein L36a pseudogene 53 pseudo RPL36AP53 ribosomal protein L36a pseudogene 53 O - 20121230 -9606 100271612 RPL36AP54 - RPL36A_28_1814 HGNC:35831 X Xq26 ribosomal protein L36a pseudogene 54 pseudo RPL36AP54 ribosomal protein L36a pseudogene 54 O - 20121230 -9606 100271613 RPS15AP27 - RPS15A_15_1003 HGNC:37011 9 9q31.2 ribosomal protein S15a pseudogene 27 pseudo RPS15AP27 ribosomal protein S15a pseudogene 27 O - 20121230 -9606 100271616 RPL23AP58 - RPL23A_23_1090 HGNC:36138 10 10q24.32 ribosomal protein L23a pseudogene 58 pseudo RPL23AP58 ribosomal protein L23a pseudogene 58 O - 20121230 -9606 100271617 RPL23AP62 - RPL23A_24_1177 HGNC:36276 11 11q23.1 ribosomal protein L23a pseudogene 62 pseudo RPL23AP62 ribosomal protein L23a pseudogene 62 O - 20121230 -9606 100271618 RPL23AP59 - RPL23A_25_1093 HGNC:36920 10 10q23-q25 ribosomal protein L23a pseudogene 59 pseudo RPL23AP59 ribosomal protein L23a pseudogene 59 O - 20121230 -9606 100271619 RPL23AP70 - RPL23A_27_1353 HGNC:36030 14 14q13.2 ribosomal protein L23a pseudogene 70 pseudo RPL23AP70 ribosomal protein L23a pseudogene 70 O - 20121230 -9606 100271620 RPL23AP66 - RPL23A_30_1207 HGNC:35940 12 12p12 ribosomal protein L23a pseudogene 66 pseudo RPL23AP66 ribosomal protein L23a pseudogene 66 O - 20121230 -9606 100271621 RPL23AP72 - RPL23A_30_1480 HGNC:35736 16 16q11 ribosomal protein L23a pseudogene 72 pseudo RPL23AP72 ribosomal protein L23a pseudogene 72 O - 20121230 -9606 100271622 RPL23AP67 - RPL23A_31_1299 HGNC:36658 12 12q24.33 ribosomal protein L23a pseudogene 67 pseudo RPL23AP67 ribosomal protein L23a pseudogene 67 O - 20121230 -9606 100271623 RPL23AP69 - RPL23A_32_1304 HGNC:36625 13 13q12.13 ribosomal protein L23a pseudogene 69 pseudo RPL23AP69 ribosomal protein L23a pseudogene 69 O - 20121230 -9606 100271624 RPL23AP78 - RPL23A_34_1620 HGNC:35518 19 19p13.2 ribosomal protein L23a pseudogene 78 pseudo RPL23AP78 ribosomal protein L23a pseudogene 78 O - 20121230 -9606 100271625 RPL23AP73 - RPL23A_36_1508 HGNC:36443 17 17p13.2 ribosomal protein L23a pseudogene 73 pseudo RPL23AP73 ribosomal protein L23a pseudogene 73 O - 20121230 -9606 100271626 RPL23AP79 - RPL23A_39_1676 HGNC:36226 19 19q13.4 ribosomal protein L23a pseudogene 79 pseudo RPL23AP79 ribosomal protein L23a pseudogene 79 O - 20121230 -9606 100271627 RPL23AP81 - RPL23A_40_1702 HGNC:36246 20 20q12 ribosomal protein L23a pseudogene 81 pseudo RPL23AP81 ribosomal protein L23a pseudogene 81 O - 20121230 -9606 100271629 RPL35AP23 - RPL35A_10_1045 HGNC:36045 10 10q11.2 ribosomal protein L35a pseudogene 23 pseudo RPL35AP23 ribosomal protein L35a pseudogene 23 O - 20121230 -9606 100271630 RPL35AP26 - RPL35A_11_1187 HGNC:36465 11 11q24.2 ribosomal protein L35a pseudogene 26 pseudo RPL35AP26 ribosomal protein L35a pseudogene 26 O - 20121230 -9606 100271631 RPL35AP24 - RPL35A_12_1042 HGNC:35544 10 10q11.23 ribosomal protein L35a pseudogene 24 pseudo RPL35AP24 ribosomal protein L35a pseudogene 24 O - 20121209 -9606 100271632 RPL35AP32 - RPL35A_12_1446 HGNC:36269 15 15q22 ribosomal protein L35a pseudogene 32 pseudo RPL35AP32 ribosomal protein L35a pseudogene 32 O - 20121230 -9606 100271633 RPL35AP25 - RPL35A_13_1043 HGNC:36294 10 10q11.23 ribosomal protein L35a pseudogene 25 pseudo RPL35AP25 ribosomal protein L35a pseudogene 25 O - 20121209 -9606 100271634 RPL35AP33 - RPL35A_13_1491 HGNC:36950 16 16q22.1 ribosomal protein L35a pseudogene 33 pseudo RPL35AP33 ribosomal protein L35a pseudogene 33 O - 20121230 -9606 100271635 RPL35AP27 - RPL35A_14_1227 HGNC:35979 12 12p11 ribosomal protein L35a pseudogene 27 pseudo RPL35AP27 ribosomal protein L35a pseudogene 27 O - 20121230 -9606 100271636 RPL35AP35 - RPL35A_14_1534 HGNC:36677 17 17q11.2 ribosomal protein L35a pseudogene 35 pseudo RPL35AP35 ribosomal protein L35a pseudogene 35 O - 20121230 -9606 100271637 RPL35AP28 - RPL35A_15_1235 HGNC:36480 12 12q13 ribosomal protein L35a pseudogene 28 pseudo RPL35AP28 ribosomal protein L35a pseudogene 28 O - 20121230 -9606 100271638 RPL35AP29 - RPL35A_16_1237 HGNC:35569 12 12q13 ribosomal protein L35a pseudogene 29 pseudo RPL35AP29 ribosomal protein L35a pseudogene 29 O - 20121230 -9606 100271639 RPL35AP30 - RPL35A_17_1286 HGNC:36751 12 12q24.23 ribosomal protein L35a pseudogene 30 pseudo RPL35AP30 ribosomal protein L35a pseudogene 30 O - 20121230 -9606 100271640 RPL35AP31 - RPL35A_18_1321 HGNC:36284 13 13q22 ribosomal protein L35a pseudogene 31 pseudo RPL35AP31 ribosomal protein L35a pseudogene 31 O - 20121230 -9606 100271641 RPL35AP34 - RPL35A_19_1474 HGNC:36324 16 16p13.12 ribosomal protein L35a pseudogene 34 pseudo RPL35AP34 ribosomal protein L35a pseudogene 34 O - 20121230 -9606 100271642 RPL36AP38 - RPL36A_16_1155 HGNC:35594 11 11q14 ribosomal protein L36a pseudogene 38 pseudo RPL36AP38 ribosomal protein L36a pseudogene 38 O - 20121230 -9606 100271643 RPL36AP39 - RPL36A_17_1112 HGNC:36074 11 11p15.5 ribosomal protein L36a pseudogene 39 pseudo RPL36AP39 ribosomal protein L36a pseudogene 39 O - 20121230 -9606 100271644 RPL36AP41 - RPL36A_17_1248 HGNC:35813 12 12q14.2 ribosomal protein L36a pseudogene 41 pseudo RPL36AP41 ribosomal protein L36a pseudogene 41 O - 20121230 -9606 100271645 RPL36AP42 - RPL36A_18_1363 HGNC:36277 14 14q ribosomal protein L36a pseudogene 42 pseudo RPL36AP42 ribosomal protein L36a pseudogene 42 O - 20121230 -9606 100271646 RPL36AP43 - RPL36A_21_1460 HGNC:36791 15 15q26 ribosomal protein L36a pseudogene 43 pseudo RPL36AP43 ribosomal protein L36a pseudogene 43 O - 20121230 -9606 100271647 RPL36AP47 - RPL36A_22_1567 HGNC:35624 17 17q23.2 ribosomal protein L36a pseudogene 47 pseudo RPL36AP47 ribosomal protein L36a pseudogene 47 O - 20121230 -9606 100271648 RPL36AP50 - RPL36A_26_1671 HGNC:36372 19 19q13.4 ribosomal protein L36a pseudogene 50 pseudo RPL36AP50 ribosomal protein L36a pseudogene 50 O - 20121230 -9606 100271649 RPS15AP32 - RPS15A_10_1280 HGNC:35879 12 12q24.13 ribosomal protein S15a pseudogene 32 pseudo RPS15AP32 ribosomal protein S15a pseudogene 32 O - 20121230 -9606 100271650 RPS15AP36 - RPS15A_12_1675 HGNC:36803 19 19qter ribosomal protein S15a pseudogene 36 pseudo RPS15AP36 ribosomal protein S15a pseudogene 36 O - 20121230 -9606 100271651 RPS15AP37 - RPS15A_13_1746 HGNC:36173 22 22q12.2 ribosomal protein S15a pseudogene 37 pseudo RPS15AP37 ribosomal protein S15a pseudogene 37 O - 20121230 -9606 100271652 RPS15AP31 - RPS15A_18_1130 HGNC:36960 11 11p14.1 ribosomal protein S15a pseudogene 31 pseudo RPS15AP31 ribosomal protein S15a pseudogene 31 O - 20121230 -9606 100271654 RPS15AP33 - RPS15A_21_1479 HGNC:36178 16 16p11 ribosomal protein S15a pseudogene 33 pseudo RPS15AP33 ribosomal protein S15a pseudogene 33 O - 20121230 -9606 100271655 RPS15AP38 - RPS15A_25_1749 HGNC:36523 22 22q12.3 ribosomal protein S15a pseudogene 38 pseudo RPS15AP38 ribosomal protein S15a pseudogene 38 O - 20121230 -9606 100271656 LOC100271656 - - - 1 1p13.3 N-acetylneuraminic acid phosphatase pseudogene pseudo - - - - 20121230 -9606 100271686 DELXP11.3 - CXDELp11.3 MIM:300578 X Xp11.3 Chromosome Xp11.3 deletion syndrome unknown - - - - 20120622 -9606 100271687 LNCR3 - - MIM:612571 5 5p15.33 Lung cancer susceptibility 3 unknown - - - - 20120622 -9606 100271688 ANIB9 - - MIM:612586 2 2q33.1 Aneurysm, intracranial berry, 9 unknown - - - - 20120622 -9606 100271689 ANIB10 - - MIM:612587 8 8q12.1 Aneurysm, intracranial berry, 10 unknown - - - - 20120622 -9606 100271690 CRCS8 - - MIM:612589 14 14q22.2 Colorectal cancer, susceptibility to, 8 unknown - - - - 20120622 -9606 100271691 CRCS10 - - MIM:612591 19 19q13.1 Colorectal cancer, susceptibility to, 10 unknown - - - - 20120622 -9606 100271692 CRCS11 - - MIM:612592 20 20p12.3 Colorectal cancer, susceptibility to, 11 unknown - - - - 20120622 -9606 100271693 LNCR4 - - MIM:612593 6 6p21.33 Lung cancer susceptibility 4 unknown - - - - 20120622 -9606 100271694 MS2 - - MIM:612594 10 10p15.1 Multiple sclerosis, susceptibility to, 2 unknown - - - - 20120622 -9606 100271695 MS3 - - MIM:612595 5 5p13.2 Multiple sclerosis, susceptibility to, 3 unknown - - - - 20120622 -9606 100271696 MS4 - - MIM:612596 1 1p36 Multiple sclerosis, susceptiblity to, 4 unknown - - - - 20120622 -9606 100271697 IDDM23 - - MIM:612622 4 4q27 Diabetes mellitus, insulin-dependent, 23 unknown - - - - 20120622 -9606 100271698 ADIPQTL4 - - MIM:612629 11 11q23-q24 Adiponectin, serum level of, QTL4 unknown - - - - 20120622 -9606 100271700 NONOP2 - - HGNC:42032 2 2p16 non-POU domain containing, octamer-binding pseudogene 2 pseudo NONOP2 non-POU domain containing, octamer-binding pseudogene 2 O - 20121230 -9606 100271702 LOC100271702 - - - 12 - uncharacterized LOC100271702 miscRNA - - - - 20121230 -9606 100271703 HAUS1P3 - - HGNC:43762 8 8q13.3 HAUS augmin-like complex, subunit 1 pseudogene 3 pseudo HAUS1P3 HAUS augmin-like complex, subunit 1 pseudogene 3 O - 20121230 -9606 100271715 ARHGEF33 - - HGNC:37252|Ensembl:ENSG00000214694|Vega:OTTHUMG00000153540 2 2p22.1 Rho guanine nucleotide exchange factor (GEF) 33 protein-coding ARHGEF33 Rho guanine nucleotide exchange factor (GEF) 33 O DH and coiled-coil domain-containing protein ENSP00000381780|rho guanine nucleotide exchange factor 33 20121230 -9606 100271717 LOC100271717 - - - 1 1q25.3 natural cytotoxicity triggering receptor 1 pseudogene pseudo - - - - 20121230 -9606 100271718 AD16 - - MIM:300756 X Xq21.3 Alzheimer disease 16 unknown - - - - 20120622 -9606 100271719 PSORS11 - - MIM:612599 5 5q31.1-q33.1 Psoriasis susceptibility 11 unknown - - - - 20120622 -9606 100271722 LOC100271722 hCG_2039027 - - 22 22q13.31 uncharacterized LOC100271722 miscRNA - - - - 20121230 -9606 100271832 LOC100271832 - - - 2 2p22.3 uncharacterized LOC100271832 miscRNA - - - - 20121230 -9606 100271835 LIMS3-LOC440895 - - - 2 2q13 LIMS3-LOC440895 readthrough miscRNA - - - - 20121230 -9606 100271836 LOC100271836 - - - 16 16p12.2 smg-1 homolog, phosphatidylinositol 3-kinase-related kinase (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100271837 USH1H - - HGNC:22433|MIM:612632 15 15q22-q23 Usher syndrome 1H (autosomal recessive) unknown USH1H Usher syndrome 1H (autosomal recessive) O - 20120622 -9606 100271838 IBD26 - - MIM:612639 12 12q15 Inflammatory bowel disease-26 unknown - - - - 20120622 -9606 100271840 LOC100271840 - - - 13 - uncharacterized LOC100271840 unknown - - - - 20121222 -9606 100271842 LOC100271842 - - - 1 1q42 phosphatidylinositol 4-kinase type 2 beta pseudogene pseudo - - - - 20121230 -9606 100271846 ERVV-2 - ENVV2|HERV-V2 HGNC:39051 19 - endogenous retrovirus group V, member 2 protein-coding ERVV-2 endogenous retrovirus group V, member 2 O HERV-V_19q13.41 provirus ancestral Env polyprotein 2|endogenous retrovirus HSV2|envelope glycoprotein ENVV2 20121230 -9606 100271849 MEF2B hCG_38559 RSRFR2 HGNC:6995|MIM:600661|Ensembl:ENSG00000213999|Vega:OTTHUMG00000161595 19 19p13.11 myocyte enhancer factor 2B protein-coding MEF2B myocyte enhancer factor 2B O MADS box transcription enhancer factor 2, polypeptide B (myocyte enhancer factor 2B)|myocyte-specific enhancer factor 2B|serum response factor-like protein 2 20121230 -9606 100271867 MPVQTL1 - - MIM:612573 12 12q24.31 Mean platelet volume QTL1 unknown - - - - 20120622 -9606 100271868 MPVQTL2 - - MIM:612574 3 3p21-p13 Mean platelet volume QTL2 unknown - - - - 20120622 -9606 100271869 MPVQTL3 - - MIM:612575 17 17q11.2 Mean platelet volume QTL3 unknown - - - - 20120622 -9606 100271870 RBM22P4 - - HGNC:39697 6 6p21 RNA binding motif protein 22 pseudogene 4 pseudo RBM22P4 RNA binding motif protein 22 pseudogene 4 O - 20121230 -9606 100271871 RBM22P2 - - HGNC:39695 13 13q12 RNA binding motif protein 22 pseudogene 2 pseudo RBM22P2 RNA binding motif protein 22 pseudogene 2 O - 20121230 -9606 100271873 AIRN - AIR|IGF2R-AS|IGF2R-AS1|IGF2RAS|NCRNA00088 HGNC:34515|MIM:604893 6 6q26 antisense of IGF2R non-protein coding RNA miscRNA AIRN antisense of IGF2R non-protein coding RNA O - 20121230 -9606 100271874 ZNRF2P2 - - HGNC:42793 7 - zinc and ring finger 2 pseudogene 2 pseudo ZNRF2P2 zinc and ring finger 2 pseudogene 2 O - 20121230 -9606 100271884 SMARCE1P1 - - HGNC:39731 11 11q22.3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 1 pseudo SMARCE1P1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 pseudogene 1 O - 20121230 -9606 100271893 LOC100271893 - - - 9 - sorting and assembly machinery component 50 homolog pseudogene pseudo - - - - 20121230 -9606 100271907 LOC100271907 - - - 5 5q33.2 myotubularin related protein 7 pseudogene pseudo - - - - 20121230 -9606 100271918 LOC100271918 - - - X Xp11 antigen identified by monoclonal antibody Ki-67 pseudogene pseudo - - - - 20121230 -9606 100271921 DEL15Q26QTER - C15DELq26qter MIM:612626 15 15q26-qter Chromosome 15q26-qter deletion syndrome unknown - - - - 20120622 -9606 100271922 BFIC4 - BFIS4 MIM:612627 1 1p36.12-p35.1 Convulsions, benign familial infantile, 4 unknown - - - - 20120622 -9606 100271923 FEB10 - - MIM:612637 3 3q26.2-q26.33 Febrile convulsions, familial, 10 unknown - - - - 20120622 -9606 100271924 DFNA59 - - HGNC:35168|MIM:612642 11 11p14.2-q12.3 deafness, autosomal dominant 59 unknown DFNA59 deafness, autosomal dominant 59 O - 20120622 -9606 100271927 RASA4B - - HGNC:35202|Ensembl:ENSG00000170667|Vega:OTTHUMG00000022944 7 7q22.1 RAS p21 protein activator 4B protein-coding RASA4B RAS p21 protein activator 4B O putative Ras GTPase-activating protein 4B 20121209 -9606 100272146 NFE2L3P2 - - HGNC:44191 17 17q21.32 nuclear factor (erythroid-derived 2)-like 3 pseudogene 2 pseudo NFE2L3P2 nuclear factor (erythroid-derived 2)-like 3 pseudogene 2 O - 20121230 -9606 100272147 CMC4 GS1-273L24.5 C6.1B|MTCP1|MTCP1B|MTCP1NB|p8|p8MTCP1 HGNC:35428|Ensembl:ENSG00000182712|Vega:OTTHUMG00000158504 X Xq28 C-x(9)-C motif containing 4 homolog (S. cerevisiae) protein-coding CMC4 C-x(9)-C motif containing 4 homolog (S. cerevisiae) O MTCP-1 type A|mature T-cell proliferation 1|mature T-cell proliferation 1 neighbor protein|mature T-cell proliferation-1 type A|protein p8 MTCP-1 20121230 -9606 100272169 L1RE4 - - HGNC:37056 6 6p21 LINE1 retrotransposable element 4 unknown L1RE4 LINE1 retrotransposable element 4 O - 20120318 -9606 100272205 TATDN2P2 - - HGNC:39255 6 6q25 TatD DNase domain containing 2 pseudogene 2 pseudo TATDN2P2 TatD DNase domain containing 2 pseudogene 2 O - 20121230 -9606 100272216 LOC100272216 - - - 5 - uncharacterized LOC100272216 miscRNA - - - - 20121230 -9606 100272217 LOC100272217 - - - 9 - uncharacterized LOC100272217 miscRNA - - - - 20121230 -9606 100272220 LOC100272220 - - - 10 10q23 RNA polymerase II associated protein 2 pseudogene pseudo - - - - 20121230 -9606 100272224 UAQTL3 - GOUT3 MIM:612670 - - Uric acid concentration, serum, QTL3 unknown - - - - 20120622 -9606 100272225 UAQTL4 - GOUT4 MIM:612671 6 6p21 Uric acid concentration, serum, QTL4 unknown - - - - 20120622 -9606 100272228 LOC100272228 - - - X - uncharacterized LOC100272228 miscRNA - - - - 20121230 -9606 100286746 LOC100286746 - - - 8 - GABA(A) receptor-associated protein-like 2 pseudogene pseudo - - - - 20121230 -9606 100286793 LOC100286793 - - - 1 - uncharacterized LOC100286793 miscRNA - - - - 20121209 -9606 100286836 OS6 - - MIM:612401 3 3p24.3 Osteoarthritis susceptibility 6 unknown - - - - 20120622 -9606 100286844 BCDIN3D-AS1 - - HGNC:44113 12 12q13.13 BCDIN3D antisense RNA 1 miscRNA BCDIN3D-AS1 BCDIN3D antisense RNA 1 O - 20121230 -9606 100286881 LOC100286881 - - - 1 1q32.1 signal peptidase complex subunit 1-like pseudo - - - - 20121102 -9606 100286895 LOC100286895 - - - 22 - cell division cycle 27 homolog pseudogene pseudo - - - - 20121209 -9606 100286906 LOC100286906 - - - 7 7q36.3 uncharacterized LOC100286906 protein-coding - - - - 20120511 -9606 100286908 LOC100286908 - - - 15 15q13.3 uncharacterized LOC100286908 pseudo - - - - 20121209 -9606 100286914 LOC100286914 - - Ensembl:ENSG00000250765|Vega:OTTHUMG00000162985 5 5q35.3 putative uncharacterized protein C20orf69-like protein-coding - - - - 20121209 -9606 100286918 NDUFS5P2 - - HGNC:44040 1 1p21.3 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 2 pseudo NDUFS5P2 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 2 O - 20121230 -9606 100286922 LOC100286922 - - - 2 2q37.1 DnaJ (Hsp40) homolog, subfamily B, member 3 pseudogene pseudo - - - - 20121230 -9606 100286925 LOC100286925 - - - 22 22q11.22 uncharacterized LOC100286925 unknown - - - - 20121230 -9606 100286929 NMD3P2 - - HGNC:37820 7 7p11.2 NMD3 homolog (S. cerevisiae) pseudogene 2 pseudo NMD3P2 NMD3 homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100286931 LOC100286931 - - - 9 9q22.32 proline-rich nuclear receptor coactivator 2-like pseudo - - - - 20121209 -9606 100286938 VPS13A-AS1 RP11-470P4.2 - HGNC:44167 9 9q21.2 VPS13A antisense RNA 1 miscRNA VPS13A-AS1 VPS13A antisense RNA 1 O - 20121230 -9606 100286942 LOC100286942 - - - 15 15q23 ribosomal protein S15a pseudogene pseudo - - - - 20121230 -9606 100286945 LOC100286945 - - - 4 4p16.3 X antigen family, member 3 pseudogene pseudo - - - - 20121230 -9606 100286946 LOC100286946 - - - 4 4p16.1 ribosomal protein S3A pseudogene pseudo - - - - 20121230 -9606 100286948 LOC100286948 - - - 5 5q33.3 apolipoprotein O pseudogene pseudo - - - - 20121230 -9606 100286954 LOC100286954 - - - 12 12p13.2 heat shock 10kDa protein 1 (chaperonin 10) pseudogene pseudo - - - - 20121230 -9606 100286958 LOC100286958 - - - 5 5q22.2 transmembrane protein 183A pseudogene pseudo - - - - 20121230 -9606 100286962 LOC100286962 - - - 20 20p12.1 ras homolog family member G pseudogene pseudo - - - - 20121230 -9606 100286963 DEFB109 - - - 8 8p23.1 defensin, beta 109 protein-coding - - - beta-defensin 109 20120401 -9606 100286964 TSPY23P - - HGNC:38594 Y Yq11.223 testis specific protein, Y-linked 23, pseudogene pseudo TSPY23P testis specific protein, Y-linked 23, pseudogene O - 20121209 -9606 100286965 CBX3P8 - - HGNC:42880 11 11p11.12 chromobox homolog 3 pseudogene 8 pseudo CBX3P8 chromobox homolog 3 pseudogene 8 O - 20121230 -9606 100286969 LOC100286969 - - - 19 19q13.31 uncharacterized LOC100286969 pseudo - - - - 20121209 -9606 100286971 UBDP1 - dJ994E9.3 HGNC:18796 6 6p22.1 ubiquitin D pseudogene 1 pseudo UBDP1 ubiquitin D pseudogene 1 O - 20121230 -9606 100286973 LOC100286973 - - - 6 6q16.1 protein phosphatase 1, catalytic subunit, alpha isozyme pseudogene pseudo - - - - 20121230 -9606 100286979 ANAPC1P1 - - HGNC:44150 2 2p11.2 anaphase promoting complex subunit 1 pseudogene 1 pseudo ANAPC1P1 anaphase promoting complex subunit 1 pseudogene 1 O - 20121230 -9606 100286986 LOC100286986 - - - 18 18p11.31 uncharacterized LOC100286986 unknown - - - - 20120511 -9606 100286989 HSPC081 - - - 1 1q23.2 uncharacterized LOC100286989 unknown - - - - 20120710 -9606 100286992 LOC100286992 - - - 18 18q21.32 signal recognition particle 19kDa pseudogene pseudo - - - - 20121230 -9606 100286996 TSPY22P - - HGNC:38522 Y Yq11.223 testis specific protein, Y-linked 22, pseudogene pseudo TSPY22P testis specific protein, Y-linked 22, pseudogene O - 20121230 -9606 100286997 LOC100286997 - - - 8 8q22.1 ribosomal protein L31 pseudogene pseudo - - - - 20121230 -9606 100287010 LOC100287010 - - - 2 2q12.1 uncharacterized LOC100287010 miscRNA - - - - 20121230 -9606 100287013 FAM86KP - - HGNC:44098 4 4p16.1 protein FAM86A-like pseudo FAM86KP family with sequence similarity 86, member K, pseudogene O - 20121209 -9606 100287014 LOC100287014 - - - 4 4q31.21 LysM, putative peptidoglycan-binding, domain containing 4 pseudogene pseudo - - - - 20121230 -9606 100287015 LOC100287015 - - - 8 8p23.1 uncharacterized LOC100287015 miscRNA - - - - 20121230 -9606 100287016 DSTNP3 - - HGNC:34547 8 8q21.11 destrin (actin depolymerizing factor) pseudogene 3 pseudo DSTNP3 destrin (actin depolymerizing factor) pseudogene 3 O - 20121230 -9606 100287020 DUX4L8 - - HGNC:38670 4 4q35.2 double homeobox 4 like 8 (pseudogene) pseudo DUX4L8 double homeobox 4 like 8 (pseudogene) O - 20120511 -9606 100287026 TTTY25P - - HGNC:38524 Y Yq11.223 testis-specific transcript, Y-linked 25, pseudogene pseudo TTTY25P testis-specific transcript, Y-linked 25, pseudogene O - 20121230 -9606 100287028 LOC100287028 - - - 11 11p11.12 ankyrin repeat domain-containing protein 33B-like pseudo - - - - 20121209 -9606 100287029 DDX11L10 - DDX11L1|DDX11P HGNC:14125 16 16p13.3 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 10 pseudo DDX11L10 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 10 O - 20121230 -9606 100287033 LOC100287033 - - - X Xq21.31 TSC22 domain family, member 3 pseudogene pseudo - - - - 20121230 -9606 100287036 LOC100287036 - - - 16 16q24.3 uncharacterized LOC100287036 protein-coding - - - uncharacterized protein LOC100287036 20121230 -9606 100287042 LOC100287042 - - - 17 17q25.1 uncharacterized LOC100287042 miscRNA - - - - 20121230 -9606 100287045 FAM90A26P - - HGNC:43746 4 4p16.1 family with sequence similarity 90, member A26, pseudogene pseudo FAM90A26P family with sequence similarity 90, member A26, pseudogene O - 20121209 -9606 100287046 LOC100287046 - - - 5 5q13.2 glucuronidase, beta pseudogene pseudo - - - - 20121209 -9606 100287049 LOC100287049 - - - 1 1q23.2 uncharacterized LOC100287049 unknown - - - - 20121230 -9606 100287055 TSPY21P - - HGNC:38101 Y Yq11.223 testis specific protein, Y-linked 21, pseudogene pseudo TSPY21P testis specific protein, Y-linked 21, pseudogene O - 20121230 -9606 100287063 LOC100287063 - - - 3 3p22.1 uncharacterized LOC100287063 pseudo - - - - 20121209 -9606 100287065 BANF1P5 - - HGNC:43885 7 7q22.3 barrier to autointegration factor 1 pseudogene 5 pseudo BANF1P5 barrier to autointegration factor 1 pseudogene 5 O - 20121230 -9606 100287066 LOC100287066 - - - 8 8p23.1 defensin, beta 131 pseudogene pseudo - - - - 20121230 -9606 100287067 LOC100287067 - - - 9 9q21.31 mitochondrially encoded cytochrome c oxidase I pseuodgene pseudo - - - - 20121230 -9606 100287072 LOC100287072 - - - 17 17p11.2 ribosomal protein S6 kinase, 70kDa, polypeptide 1 pseudogene pseudo - - - - 20121230 -9606 100287074 LOC100287074 - - - 2 2q13 ARP1 actin-related protein 1 homolog A, centractin alpha (yeast) pseudogene pseudo - - - - 20121230 -9606 100287082 LOC100287082 - - - 18 18p11.22 uncharacterized LOC100287082 miscRNA - - - - 20121209 -9606 100287083 DEFT1P2 - - HGNC:33599 8 8p23.1 defensin, theta 1 pseudogene 2 pseudo DEFT1P2 defensin, theta 1 pseudogene 2 O - 20121209 -9606 100287084 ZNF72P - Cos8|ZNF72 HGNC:13142|MIM:194546 22 22q11.1 zinc finger protein 72, pseudogene pseudo ZNF72P zinc finger protein 72, pseudogene O - 20121021 -9606 100287085 OCIAD2P1 - - HGNC:31827 8 8q21.13 OCIA domain containing 2 pseudogene 1 pseudo OCIAD2P1 OCIA domain containing 2 pseudogene 1 O - 20121230 -9606 100287087 H3F3BP1 - - HGNC:42030 13 13q21.33 H3 histone, family 3B (H3.3B) pseudogene 1 pseudo H3F3BP1 H3 histone, family 3B (H3.3B) pseudogene 1 O - 20121230 -9606 100287091 ATP5LP5 - - HGNC:38167 3 3q25.2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 5 pseudo ATP5LP5 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 5 O - 20121230 -9606 100287098 LOC100287098 - - - 8 8q24.3 uncharacterized LOC100287098 miscRNA - - - - 20121230 -9606 100287102 DDX11L1 - - HGNC:37102 1 1p36.33 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 1 pseudo DDX11L1 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 1 O - 20121230 -9606 100287114 LINC00421 - - HGNC:42755 13 13q12.11 long intergenic non-protein coding RNA 421 miscRNA LINC00421 long intergenic non-protein coding RNA 421 O - 20121230 -9606 100287128 IGHV1OR15-2 - IGHV1OR152 HGNC:5564|IMGT/GENE-DB:IGHV1/OR15-2 15 15q11.2 immunoglobulin heavy variable 1/OR15-2 (pseudogene) pseudo IGHV1OR15-2 immunoglobulin heavy variable 1/OR15-2 (pseudogene) O - 20121230 -9606 100287136 LOC100287136 - - - 7 7p11.2 capicua homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100287140 HSPD1P14 - HSPD1-17P HGNC:35143 1 1p35.1 heat shock 60kDa protein 1 (chaperonin) pseudogene 14 pseudo HSPD1P14 heat shock 60kDa protein 1 (chaperonin) pseudogene 14 O - 20121230 -9606 100287144 USP17L10 - - HGNC:44438|Ensembl:ENSG00000231396|Vega:OTTHUMG00000160160 4 4p16.1 ubiquitin specific peptidase 17-like family member 10 protein-coding USP17L10 ubiquitin specific peptidase 17-like family member 10 O - 20121209 -9606 100287148 LOC100287148 - - - 12 12q22 peroxiredoxin 6 pseudogene pseudo - - - - 20121230 -9606 100287157 LOC100287157 - - - 8 8q11.21 cell division cycle associated 8 pseudogene pseudo - - - - 20121230 -9606 100287160 LOC100287160 - - - 19 19p13.11 uncharacterized LOC100287160 unknown - - - - 20121230 -9606 100287163 LOC100287163 - - - Un - zinc finger protein 717-like protein-coding - - - - 20121209 -9606 100287166 LOC100287166 - - - 20 20p11.23 uncharacterized LOC100287166 unknown - - - - 20121209 -9606 100287167 TTTY29P - - HGNC:38547 Y Yq11.223 testis-specific transcript, Y-linked 29, pseudogene pseudo TTTY29P testis-specific transcript, Y-linked 29, pseudogene O - 20120511 -9606 100287169 LOC100287169 - - - 8 8q22.2 ubiquitin-conjugating enzyme E2 variant 1-like pseudo - - - - 20121209 -9606 100287171 WASH1 - FAM39E|WASH HGNC:24361|MIM:613632 9 9p24.3 WAS protein family homolog 1 protein-coding WASH1 WAS protein family homolog 1 O CXYorf1-like protein on chromosome 9|FLJ00075 protein|family with sequence similarity 39, member E 20121230 -9606 100287173 UBE2V1P5 - - HGNC:44888 10 10q25.3 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 5 pseudo UBE2V1P5 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 5 O - 20121230 -9606 100287175 LOC100287175 - - - 16 16p13.3 uncharacterized LOC100287175 unknown - - - - 20121230 -9606 100287177 LOC100287177 - - Ensembl:ENSG00000267757|Vega:OTTHUMG00000182128 19 19q13.32 uncharacterized LOC100287177 protein-coding - - - uncharacterized protein LOC100287177 20121230 -9606 100287178 USP17L11 - - HGNC:44439|Ensembl:ENSG00000233136|Vega:OTTHUMG00000160162 4 4p16.1 ubiquitin specific peptidase 17-like family member 11 protein-coding USP17L11 ubiquitin specific peptidase 17-like family member 11 O - 20121209 -9606 100287183 LOC100287183 - - - 2 2p24.1 nuclear transport factor 2 pseudogene pseudo - - - - 20121230 -9606 100287188 LOC100287188 - - - 17 - family with sequence similarity 104, member B pseudogene pseudo - - - - 20121230 -9606 100287189 LOC100287189 - - - 11 11p11.2 Sec61 beta subunit pseudogene pseudo - - - - 20121230 -9606 100287191 LOC100287191 - - - 2 2q32.3 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100287193 ISCA2P1 - - HGNC:38022 22 22q12.1 iron-sulfur cluster assembly 2 homolog (S. cerevisiae) pseudogene 1 pseudo ISCA2P1 iron-sulfur cluster assembly 2 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100287195 LOC100287195 - - - Un - 60S ribosomal protein L23a-like pseudo - - - - 20121209 -9606 100287199 LOC100287199 - - - 20 20p11.23 protein LLP homolog pseudo - - - - 20121209 -9606 100287200 RAB9AP1 - - HGNC:38104 Y Yq11.223 RAB9A, member RAS oncogene family pseudogene 1 pseudo RAB9AP1 RAB9A, member RAS oncogene family pseudogene 1 O - 20121230 -9606 100287205 USP17L12 - - HGNC:44440|Ensembl:ENSG00000227551|Vega:OTTHUMG00000160148 4 4p16.1 ubiquitin specific peptidase 17-like family member 12 protein-coding USP17L12 ubiquitin specific peptidase 17-like family member 12 O - 20121230 -9606 100287210 LOC100287210 - - - 7 7q36.2 uncharacterized LOC100287210 unknown - - - - 20120511 -9606 100287211 LOC100287211 - - - 9 9p11.2 protein FAM27D1-like pseudo - - - - 20121102 -9606 100287212 LOC100287212 - - - 9 9q21.33 chromosome 4 open reading frame 3 pseudogene pseudo - - - - 20121230 -9606 100287215 UBL5P2 - - HGNC:44640 17 17q11.2 ubiquitin-like 5 pseudogene 2 pseudo UBL5P2 ubiquitin-like 5 pseudogene 2 O - 20121230 -9606 100287216 SH3RF3-AS1 - - HGNC:44168 2 2q12.3 SH3RF3 antisense RNA 1 miscRNA SH3RF3-AS1 SH3RF3 antisense RNA 1 O - 20121230 -9606 100287221 LOC100287221 - - - 16 16q24.2 uncharacterized LOC100287221 unknown - - - - 20120710 -9606 100287225 LOC100287225 - - - 18 18q21.2 uncharacterized LOC100287225 miscRNA - - - - 20121230 -9606 100287226 ZNF729 - - HGNC:32464|Ensembl:ENSG00000196350 19 19p12 zinc finger protein 729 protein-coding ZNF729 zinc finger protein 729 O - 20121230 -9606 100287227 TIPARP-AS1 - - HGNC:41028 3 3q25.31 TIPARP antisense RNA 1 miscRNA TIPARP-AS1 TIPARP antisense RNA 1 O - 20121230 -9606 100287229 BRD7P4 - - HGNC:37630 6 6q21 bromodomain containing 7 pseudogene 4 pseudo BRD7P4 bromodomain containing 7 pseudogene 4 O - 20121230 -9606 100287234 RAB9AP5 - - HGNC:38109 Y Yq11.223 RAB9A, member RAS oncogene family pseudogene 5 pseudo RAB9AP5 RAB9A, member RAS oncogene family pseudogene 5 O - 20121209 -9606 100287238 USP17L13 - - HGNC:44441|Ensembl:ENSG00000232399|Vega:OTTHUMG00000160152 4 4p16.1 ubiquitin specific peptidase 17-like family member 13 protein-coding USP17L13 ubiquitin specific peptidase 17-like family member 13 O - 20121230 -9606 100287243 LOC100287243 - - - 15 15q22.2 uncharacterized LOC100287243 pseudo - - - - 20121209 -9606 100287261 CSPG4P3Y - CSPG4P3|CSPG4P6Y HGNC:38111 Y Yq11.23 chondroitin sulfate proteoglycan 4 pseudogene 3, Y-linked pseudo CSPG4P3Y chondroitin sulfate proteoglycan 4 pseudogene 3, Y-linked O - 20121230 -9606 100287266 LOC100287266 - - - 1 1q43 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100287270 USP17L14P - - HGNC:44442 4 4p16.1 ubiquitin specific peptidase 17-like family member 14, pseudogene pseudo USP17L14P ubiquitin specific peptidase 17-like family member 14, pseudogene O - 20121230 -9606 100287272 USP8P1 - D84394.7|USP8P HGNC:13987 6 6p21.33 ubiquitin specific peptidase 8 pseudogene 1 pseudo USP8P1 ubiquitin specific peptidase 8 pseudogene 1 O - 20121230 -9606 100287275 LOC100287275 - - - 13 13q12.12 protein PCOTH pseudogene pseudo - - - - 20121230 -9606 100287279 UBE2V1P6 - - HGNC:44889 2 2q31.1 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 6 pseudo UBE2V1P6 ubiquitin-conjugating enzyme E2 variant 1 pseudogene 6 O - 20121230 -9606 100287284 MANSC4 - - HGNC:40023|Ensembl:ENSG00000205693|Vega:OTTHUMG00000169216 12 12p11.22 MANSC domain containing 4 protein-coding MANSC4 MANSC domain containing 4 O MANSC domain-containing protein 4|MANSC domain-containing protein ENSP00000370673 20121230 -9606 100287290 LOC100287290 - - - 3 3q25.32 cytokine receptor CRL2 protein-coding - - - - 20121230 -9606 100287294 LOC100287294 - - - 7 7p11.2 equilibrative nucleoside transporter 4-like protein-coding - - - - 20121209 -9606 100287296 LINC00265-2P - NCRNA00265-2P|NCRNA00265B HGNC:38523 Y Yq11.23 long intergenic non-protein coding RNA 265-2, pseudogene pseudo LINC00265-2P long intergenic non-protein coding RNA 265-2, pseudogene O - 20121209 -9606 100287301 GS52 - - - 16 16p13.3 uncharacterized LOC100287301 unknown - - - - 20121230 -9606 100287302 USP17L16P - - HGNC:44444 4 4p16.1 ubiquitin specific peptidase 17-like family member 16, pseudogene pseudo USP17L16P ubiquitin specific peptidase 17-like family member 16, pseudogene O - 20121209 -9606 100287306 LOC100287306 - - - 13 13q12.13 uncharacterized LOC100287306 unknown - - - - 20120710 -9606 100287309 LOC100287309 - - - 17 17p11.2 abhydrolase domain containing 15 pseudogene pseudo - - - - 20121230 -9606 100287313 LOC100287313 - - - 8 8q11.23 uncharacterized LOC100287313 protein-coding - - - - 20121209 -9606 100287314 LOC100287314 - - - 12 12p11.21 uncharacterized LOC100287314 miscRNA - - - - 20121230 -9606 100287320 LOC100287320 - - - Un - olfactory receptor 7E24-like pseudo - - - - 20121209 -9606 100287325 KRT8P37 - - HGNC:39871 10 10p14 keratin 8 pseudogene 37 pseudo KRT8P37 keratin 8 pseudogene 37 O - 20121230 -9606 100287327 USP17L17 - - HGNC:44445|Ensembl:ENSG00000249104|Vega:OTTHUMG00000160158 4 4p16.1 ubiquitin specific peptidase 17-like family member 17 protein-coding USP17L17 ubiquitin specific peptidase 17-like family member 17 O - 20121230 -9606 100287329 LOC100287329 - - - 6 6p21.33 uncharacterized LOC100287329 unknown - - - - 20121230 -9606 100287333 FAM27E1 - - HGNC:32014 9 9p11.2 family with sequence similarity 27, member E1 unknown FAM27E1 family with sequence similarity 27, member E1 O - 20121230 -9606 100287335 LOC100287335 - - - 14 14q24.2 transmembrane protein 183A pseudogene pseudo - - - - 20121230 -9606 100287345 LOC100287345 - - - 13 13q31.1 VENT homeobox pseudogene pseudo - - - - 20121230 -9606 100287348 LOC100287348 - - - Un - uncharacterized LOC100287348 pseudo - - - - 20121209 -9606 100287355 LOC100287355 - - - 12 12q21.33 microtubule-associated protein 1 light chain 3 beta pseudogene pseudo - - - - 20121230 -9606 100287357 LOC100287357 - - - 15 15q11.2 coxsackie virus and adenovirus receptor pseudogene pseudo - - - - 20121230 -9606 100287361 LOC100287361 - - - 2 2p14 peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121209 -9606 100287362 PRSS46 - TESSP6 HGNC:37325|Ensembl:ENSG00000261603|Vega:OTTHUMG00000177121 3 3p21.31 protease, serine, 46 protein-coding PRSS46 protease, serine, 46 O putative serine protease 46|testis serine protease 6 20121230 -9606 100287364 USP17L18 - - HGNC:44446|Ensembl:ENSG00000250844|Vega:OTTHUMG00000160153 4 4p16.1 ubiquitin specific peptidase 17-like family member 18 protein-coding USP17L18 ubiquitin specific peptidase 17-like family member 18 O - 20121230 -9606 100287366 OSTM1-AS1 - - HGNC:43666 6 6q21 OSTM1 antisense RNA 1 unknown OSTM1-AS1 OSTM1 antisense RNA 1 O - 20121230 -9606 100287368 LOC100287368 - - - 9 9p11.2 protein FAM27D1-like protein-coding - - - - 20121209 -9606 100287369 LOC100287369 - - - 12 12q23.2 heat shock 10kDa protein 1 (chaperonin 10) pseudogene pseudo - - - - 20121230 -9606 100287372 IGHV3OR16-13 - IGHV3OR1613 HGNC:5637|IMGT/GENE-DB:IGHV3/OR16-13 16 16p11.2 immunoglobulin heavy variable 3/OR16-13 (non-functional) pseudo IGHV3OR16-13 immunoglobulin heavy variable 3/OR16-13 (non-functional) O - 20121230 -9606 100287387 LOC100287387 - - - 2 2q37.3 uncharacterized LOC100287387 protein-coding - - - - 20121209 -9606 100287388 LIN28AP2 - - HGNC:38056 13 13q31.2 lin-28 homolog A (C. elegans) pseudogene 2 pseudo LIN28AP2 lin-28 homolog A (C. elegans) pseudogene 2 O - 20121230 -9606 100287399 LOC100287399 - - Ensembl:ENSG00000230031 15 15q11.2 POTE ankyrin domain family member B-like protein-coding - - - - 20121209 -9606 100287402 LOC100287402 - - - 3 3q27.3 uncharacterized LOC100287402 pseudo - - - - 20121230 -9606 100287404 USP17L19 - - HGNC:44447|Ensembl:ENSG00000248920|Vega:OTTHUMG00000160146 4 4p16.1 ubiquitin specific peptidase 17-like family member 19 protein-coding USP17L19 ubiquitin specific peptidase 17-like family member 19 O - 20121209 -9606 100287413 LOC100287413 - - - 11 11q12.1 uncharacterized LOC100287413 unknown - - - - 20121230 -9606 100287419 LOC100287419 - - - 2 2q13 cyclin-dependent kinase 8 pseudogene pseudo - - - - 20121230 -9606 100287425 LOC100287425 - - - 2 2q33.1 chromosome 7 open reading frame 73 pseudogene pseudo - - - - 20121230 -9606 100287427 LOC100287427 - - - 4 4q21.23 chromosome 18 open reading frame 21 pseudogene pseudo - - - - 20121230 -9606 100287428 PNMA6C hCG_1792470 - HGNC:41914|Ensembl:ENSG00000235961 X Xq28 paraneoplastic Ma antigen family member 6C protein-coding PNMA6C paraneoplastic Ma antigen family member 6C O paraneoplastic antigen like 6C|paraneoplastic antigen-like 6A related protein|paraneoplastic antigen-like protein 6A related|paraneoplastic antigen-like protein 6C 20121230 -9606 100287430 LOC100287430 - - - 6 6q22.1 ribosomal protein S5 pseudogene pseudo - - - - 20121230 -9606 100287441 USP17L20 - - HGNC:44448|Ensembl:ENSG00000250745|Vega:OTTHUMG00000160150 4 4p16.1 ubiquitin specific peptidase 17-like family member 20 protein-coding USP17L20 ubiquitin specific peptidase 17-like family member 20 O - 20121209 -9606 100287453 LOC100287453 - - - 19 19q13.33 neurotrophin 4 pseudogene pseudo - - - - 20121230 -9606 100287456 LOC100287456 - - - 21 21p11.2 uncharacterized LOC100287456 pseudo - - - - 20121209 -9606 100287461 MTND1P8 - - HGNC:42100 16 16p13.3 MT-ND1 pseudogene 8 pseudo MTND1P8 MT-ND1 pseudogene 8 O - 20121230 -9606 100287463 LOC100287463 - - - 19 19p13.2 uncharacterized LOC100287463 pseudo - - - - 20121209 -9606 100287466 PNMA6D - - HGNC:41924|Ensembl:ENSG00000257088 X Xq28 paraneoplastic Ma antigen family member 6D protein-coding PNMA6D paraneoplastic Ma antigen family member 6D O paraneoplastic antigen like 6D|paraneoplastic antigen-like protein 6D 20121209 -9606 100287467 LOC100287467 - - - 6 6q22.1 uncharacterized LOC100287467 unknown - - - - 20121117 -9606 100287469 LOC100287469 - - - 20 20p11.1 protein FAM27E2-like pseudo - - - - 20121209 -9606 100287470 LINC00265-3P - NCRNA00265-3P|NCRNA00265C HGNC:38536 Y Yq11.23 long intergenic non-protein coding RNA 265-3, pseudogene pseudo LINC00265-3P long intergenic non-protein coding RNA 265-3, pseudogene O - 20121209 -9606 100287472 LOC100287472 - - - 10 10q26.13 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100287477 LOC100287477 - - - 19 19q13.33 zinc finger protein 420-like protein-coding - - - uncharacterized protein LOC100287477 20121230 -9606 100287478 USP17L21 - - HGNC:44449|Ensembl:ENSG00000249811|Vega:OTTHUMG00000160149 4 4p16.1 ubiquitin specific peptidase 17-like family member 21 protein-coding USP17L21 ubiquitin specific peptidase 17-like family member 21 O - 20121209 -9606 100287482 SMKR1 - - HGNC:43561|Ensembl:ENSG00000240204|Vega:OTTHUMG00000157696 7 7q32.1 small lysine-rich protein 1 protein-coding SMKR1 small lysine-rich protein 1 O - 20121230 -9606 100287483 LOC100287483 - - - 19 19p13.3 transcription elongation factor B (SIII), polypeptide 1 pseudogene pseudo - - - - 20121230 -9606 100287485 LOC100287485 - - - 11 11q12.1 glycine-N-acyltransferase-like 2 pseudogene pseudo - - - - 20121230 -9606 100287489 LOC100287489 - - - 19 19q13.33 neurotrophin 4 pseudogene pseudo - - - - 20121230 -9606 100287495 GCSHP4 - - HGNC:43930 12 12p13.31 glycine cleavage system protein H (aminomethyl carrier) pseudogene 4 pseudo GCSHP4 glycine cleavage system protein H (aminomethyl carrier) pseudogene 4 O - 20121230 -9606 100287497 LOC100287497 - - - 1 1q42.11 uncharacterized LOC100287497 unknown - - - - 20121230 -9606 100287498 LOC100287498 - - - 2 2q33.2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa pseudogene pseudo - - - - 20121230 -9606 100287502 CSPG4P4Y - CSPG4P4|CSPG4P7Y HGNC:38535 Y Yq11.23 chondroitin sulfate proteoglycan 4 pseudogene 4, Y-linked pseudo CSPG4P4Y chondroitin sulfate proteoglycan 4 pseudogene 4, Y-linked O - 20121209 -9606 100287505 LOC100287505 - - - 12 12q21.33 bromodomain and WD repeat domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100287512 RPS3AP53 - - HGNC:44500 3 3p25.1 ribosomal protein S3a pseudogene 53 pseudo RPS3AP53 ribosomal protein S3a pseudogene 53 O - 20121230 -9606 100287513 USP17L22 - - HGNC:44450|Ensembl:ENSG00000248933|Vega:OTTHUMG00000160159 4 4p16.1 ubiquitin specific peptidase 17-like family member 22 protein-coding USP17L22 ubiquitin specific peptidase 17-like family member 22 O - 20121209 -9606 100287515 LOC100287515 - - - Un - zinc finger protein 26-like protein-coding - - - - 20121209 -9606 100287520 GLYATL1P3 - - HGNC:37865 11 11q12.1 glycine-N-acyltransferase-like 1 pseudogene 3 pseudo GLYATL1P3 glycine-N-acyltransferase-like 1 pseudogene 3 O - 20121230 -9606 100287523 LOC100287523 - - - 2 2q11.1 zinc finger protein 2-like pseudo - - - - 20121230 -9606 100287525 LOC100287525 - - - 17 17q21.2 uncharacterized LOC100287525 unknown - - - - 20120511 -9606 100287528 IGLL4P - IGLL4 HGNC:38475 22 22q11.21 immunoglobulin lambda-like polypeptide 4, pseudogene pseudo IGLL4P immunoglobulin lambda-like polypeptide 4, pseudogene O - 20121230 -9606 100287534 LOC100287534 - - - 19 - killer cell immunoglobulin-like receptor 2DL4-like protein-coding - - - - 20121209 -9606 100287538 LOC100287538 - - - 16 16p13.3 uncharacterized LOC100287538 pseudo - - - - 20121222 -9606 100287539 LOC100287539 - - - 18 18q12.1 epsin 2 pseudogene pseudo - - - - 20121230 -9606 100287541 LOC100287541 - - - 22 22q11.21 POM121 transmembrane nucleoporin pseudogene pseudo - - - - 20121230 -9606 100287542 RAB9AP2 - - HGNC:38106 Y Yq11.23 RAB9A, member RAS oncogene family pseudogene 2 pseudo RAB9AP2 RAB9A, member RAS oncogene family pseudogene 2 O - 20121209 -9606 100287544 LOC100287544 - - - 12 12q22 s-adenosylmethionine synthase isoform type-2-like pseudo - - - - 20121230 -9606 100287549 LOC100287549 - - - Un - uncharacterized LOC100287549 pseudo - - - - 20121209 -9606 100287551 HSPA8P8 tcag7.1163 - HGNC:44923 7 7p21.3 heat shock 70kDa protein 8 pseudogene 8 pseudo HSPA8P8 heat shock 70kDa protein 8 pseudogene 8 O - 20121230 -9606 100287559 ADPGK-AS1 - - HGNC:44144 15 15q24.1 ADPGK antisense RNA 1 miscRNA ADPGK-AS1 ADPGK antisense RNA 1 O - 20121230 -9606 100287567 TRMT112P7 - - HGNC:44026 8 8q11.23 tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 7 pseudo TRMT112P7 tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 7 O - 20121230 -9606 100287569 LINC00173 - NCRNA00173 HGNC:33791 12 12q24.22 long intergenic non-protein coding RNA 173 miscRNA LINC00173 long intergenic non-protein coding RNA 173 O - 20121230 -9606 100287570 LOC100287570 - - - 2 2q33.3 peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121102 -9606 100287573 TOMM22P6 - - HGNC:38742 3 3q26.1 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 6 pseudo TOMM22P6 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 6 O - 20121230 -9606 100287575 LOC100287575 - - - 7 7p11.2 protein FAM27E2-like pseudo - - - - 20121209 -9606 100287576 LOC100287576 - - - 22 22q11.21 uncharacterized LOC100287576 unknown - - - - 20121230 -9606 100287577 RAB9AP3 - - HGNC:38107 Y Yq11.23 RAB9A, member RAS oncogene family pseudogene 3 pseudo RAB9AP3 RAB9A, member RAS oncogene family pseudogene 3 O - 20121209 -9606 100287579 TCEB1P22 - - HGNC:38158 11 11q23.3 transcription elongation factor B (SIII), polypeptide 1 pseudogene 22 pseudo TCEB1P22 transcription elongation factor B (SIII), polypeptide 1 pseudogene 22 O - 20121230 -9606 100287590 LOC100287590 - - - 17 17q21.2 uncharacterized LOC100287590 unknown - - - - 20120710 -9606 100287591 MTND1P22 - - HGNC:42093 4 4q32.1 MT-ND1 pseudogene 22 pseudo MTND1P22 MT-ND1 pseudogene 22 O - 20121230 -9606 100287592 LOC100287592 - - - 5 5q11.1 uncharacterized LOC100287592 miscRNA - - - - 20121209 -9606 100287596 DDX11L5 - - HGNC:37106 9 9p24.3 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 5 pseudo DDX11L5 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 5 O - 20121230 -9606 100287598 LOC100287598 - - - 16 16p13.2 uncharacterized LOC100287598 miscRNA - - - - 20121102 -9606 100287603 SSXP10 - psiSSX10 HGNC:30638 6 6q22.31 SSX family pseudogene 10 pseudo SSXP10 SSX family pseudogene 10 O - 20121230 -9606 100287605 LOC100287605 - - - 20 20p11.1 protein FAM27E2-like pseudo - - - - 20121209 -9606 100287606 TTTY28P - - HGNC:38534 Y Yq11.23 testis-specific transcript, Y-linked 28, pseudogene pseudo TTTY28P testis-specific transcript, Y-linked 28, pseudogene O - 20120511 -9606 100287610 LOC100287610 - - - Un - zinc finger protein 717-like pseudo - - - - 20121209 -9606 100287612 LOC100287612 - - - 6 6q21 uncharacterized LOC100287612 miscRNA - - - - 20121209 -9606 100287613 LOC100287613 - - - 7 7p21.1 Rho GTPase activating protein 20 pseudogene pseudo - - - - 20121230 -9606 100287614 LOC100287614 - - - 19 19p13.3 ribosomal protein S10 pseudogene pseudo - - - - 20121230 -9606 100287616 LOXL1-AS1 - - HGNC:44169 15 15q24.1 LOXL1 antisense RNA 1 miscRNA LOXL1-AS1 LOXL1 antisense RNA 1 O - 20121230 -9606 100287625 LOC100287625 - - - 12 12p13.31 suppressor of Ty 4 homolog 1 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100287628 LOC100287628 - - - 16 16p13.2 uncharacterized LOC100287628 miscRNA - - - - 20121209 -9606 100287630 PSAT1P4 - - HGNC:43990 3 3q26.1 phosphoserine aminotransferase 1 pseudogene 4 pseudo PSAT1P4 phosphoserine aminotransferase 1 pseudogene 4 O - 20121230 -9606 100287632 LOC100287632 - - - 6 6q22.31 selenoprotein K pseudogene pseudo - - - - 20121230 -9606 100287633 LOC100287633 - - - 7 7p11.2 protein FAM27E2-like protein-coding - - - - 20121209 -9606 100287635 LOC100287635 - - - 22 22q11.21 keratin 18 pseudogene pseudo - - - - 20121230 -9606 100287637 LOC100287637 - - - 15 15q11.1 uncharacterized LOC100287637 pseudo - - - - 20121209 -9606 100287639 LOC100287639 - - - 3 3q11.2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase pseudogene pseudo - - - - 20121230 -9606 100287647 PCMTD1P2 - - HGNC:38805 16 16p11.2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 pseudogene 2 pseudo PCMTD1P2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 pseudogene 2 O - 20121230 -9606 100287651 LOC100287651 - - - 8 8q12.1 lipoxygenase homology domain-containing protein 1-like protein-coding - - - - 20121209 -9606 100287653 LOC100287653 - - - 12 12q24.23 PDGFA associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100287663 LOC100287663 - - - 7 7p11.2 protein FAM27E2-like pseudo - - - - 20121209 -9606 100287664 TSRM - - - 7 7q31.1 zinc finger domain-related protein TSRM unknown - - - - 20121230 -9606 100287672 LOC100287672 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100287680 SUB1P2 - - HGNC:43992 14 14q24.3 SUB1 homolog (S. cerevisiae) pseudogene 2 pseudo SUB1P2 SUB1 homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100287682 EXTL2P1 - EXTL2P HGNC:3517 2 2q31.1 exostoses (multiple)-like 2 pseudogene 1 pseudo EXTL2P1 exostoses (multiple)-like 2 pseudogene 1 O - 20121230 -9606 100287685 LOC100287685 - - - 1 1p36.33 uncharacterized LOC100287685 unknown - - - - 20120511 -9606 100287692 TCEB1P24 - TCEB1P25 HGNC:38160 X|Y Xq28 and Yq12 transcription elongation factor B (SIII), polypeptide 1 pseudogene 24 pseudo TCEB1P24 transcription elongation factor B (SIII), polypeptide 1 pseudogene 24 O - 20121230 -9606 100287702 LOC100287702 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100287704 LOC100287704 - - - 7 7q11.21 uncharacterized LOC100287704 miscRNA - - - - 20121230 -9606 100287708 LOC100287708 - - - 10 10q11.23 coiled-coil domain containing 58 pseudogene pseudo - - - - 20121230 -9606 100287715 LOC100287715 - - - 17 17q21.2 keratin associated protein 16-1 pseudogene pseudo - - - - 20121230 -9606 100287718 ANKRD66 - - HGNC:44669|Ensembl:ENSG00000230062|Vega:OTTHUMG00000014791 6 6p12.3 ankyrin repeat domain 66 protein-coding ANKRD66 ankyrin repeat domain 66 O hypothetical protein LOC100287718 20121230 -9606 100287722 AP4B1-AS1 - - HGNC:44114 1 1p13.2 AP4B1 antisense RNA 1 miscRNA AP4B1-AS1 AP4B1 antisense RNA 1 O - 20121230 -9606 100287723 LOC100287723 - - - 2 2p11.2 Ig kappa chain V-I region Walker-like other - - - - 20121209 -9606 100287725 LOC100287725 - - - 19 19p13.2 glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20121230 -9606 100287728 LOC100287728 - - - X Xq26.3 uncharacterized LOC100287728 miscRNA - - - - 20121230 -9606 100287735 TTTY13B - pFIV HGNC:38596 Y Yp11.2 testis-specific transcript, Y-linked 13B miscRNA TTTY13B testis-specific transcript, Y-linked 13B O - 20120617 -9606 100287745 MTATP6P2 - - HGNC:44576 5 5q21.1 mitochondrially encoded ATP synthase 6 pseudogene 2 pseudo MTATP6P2 mitochondrially encoded ATP synthase 6 pseudogene 2 O - 20121230 -9606 100287747 LOC100287747 - - - 16 16p11.1 TP53 target 3B pseudogene pseudo - - - - 20121230 -9606 100287754 LOC100287754 - - - 19 19p13.2 zinc finger protein 44 pseudogene pseudo - - - - 20121230 -9606 100287755 ATP5G1P4 - - HGNC:39507 3 3q26.31 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 4 pseudo ATP5G1P4 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 4 O - 20121230 -9606 100287757 LOC100287757 - - - X Xq27.3 SRA stem-loop interacting RNA binding protein pseudogene pseudo - - - - 20121230 -9606 100287765 LINC00630 - - HGNC:44263 X Xq22.1 long intergenic non-protein coding RNA 630 miscRNA LINC00630 long intergenic non-protein coding RNA 630 O - 20121230 -9606 100287768 COX6A1P3 - - HGNC:37633 6 6q22.31 cytochrome c oxidase subunit VIa polypeptide 1 pseudogene 3 pseudo COX6A1P3 cytochrome c oxidase subunit VIa polypeptide 1 pseudogene 3 O - 20121230 -9606 100287769 RBMY1GP - RBMY1G HGNC:9915 Y Yp11.2 RNA binding motif protein, Y-linked, family 1, member G, pseudogene pseudo RBMY1GP RNA binding motif protein, Y-linked, family 1, member G, pseudogene O - 20121230 -9606 100287778 TCEB1P20 - - HGNC:38156 1 1p13.2-p13.1 transcription elongation factor B (SIII), polypeptide 1 pseudogene 20 pseudo TCEB1P20 transcription elongation factor B (SIII), polypeptide 1 pseudogene 20 O - 20121230 -9606 100287785 LINC00266-2P - NCRNA00266-2P|NCRNA00266B|NCRNA00266Y|NCRNA00266Y1 HGNC:38529 Y Yq11.23 long intergenic non-protein coding RNA 266-2, pseudogene pseudo LINC00266-2P long intergenic non-protein coding RNA 266-2, pseudogene O - 20121230 -9606 100287791 LOC100287791 - - - 4 4p16.1 uncharacterized LOC100287791 pseudo - - - - 20121209 -9606 100287792 LOC100287792 - - - 20 20q11.23 uncharacterized LOC100287792 miscRNA - - - - 20121230 -9606 100287794 LOC100287794 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100287798 FAM197Y8 - - HGNC:37470 Y Yp11.2 family with sequence similarity 197, Y-linked, member 8 protein-coding FAM197Y8 family with sequence similarity 197, Y-linked, member 8 O - 20121209 -9606 100287808 LOC100287808 - - - 17 17q12 uncharacterized LOC100287808 unknown - - - - 20121230 -9606 100287813 LOC100287813 - - - 1 1q24.2 uncharacterized LOC100287813 pseudo - - - - 20121209 -9606 100287814 LINC00582 - - HGNC:43842 1 1q42.2 long intergenic non-protein coding RNA 582 miscRNA LINC00582 long intergenic non-protein coding RNA 582 O - 20121230 -9606 100287817 NDUFS5P4 - - HGNC:44042 4 4q23 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 4 pseudo NDUFS5P4 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 4 O - 20121230 -9606 100287818 TTTY26P - - HGNC:38528 Y Yp11.2 testis-specific transcript, Y-linked 26, pseudogene pseudo TTTY26P testis-specific transcript, Y-linked 26, pseudogene O - 20120511 -9606 100287822 SETP10 - - HGNC:42929 1 1q25.2 SET pseudogene 10 pseudo SETP10 SET pseudogene 10 O - 20121230 -9606 100287823 LOC100287823 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100287825 LOC100287825 tcag7.1141 - - 7 7p14.3 golgin A8 family, member A pseudogene pseudo - - - - 20121230 -9606 100287826 FAM197Y7 - - HGNC:37469 Y Yp11.2 family with sequence similarity 197, Y-linked, member 7 protein-coding FAM197Y7 family with sequence similarity 197, Y-linked, member 7 O - 20121209 -9606 100287834 LOC100287834 - - - 7 7q11.21 uncharacterized LOC100287834 miscRNA - - - - 20121230 -9606 100287837 LOC100287837 - - - 11 11q13.4 uncharacterized LOC100287837 protein-coding - - - - 20121230 -9606 100287840 LOC100287840 - - - 1 1p13.1 tetraspanin 12 pseudogene pseudo - - - - 20121230 -9606 100287844 TTTY30P - - HGNC:38604 Y Yp11.2 testis-specific transcript, Y-linked 30, pseudogene pseudo TTTY30P testis-specific transcript, Y-linked 30, pseudogene O - 20121230 -9606 100287845 GOLGA6L16P - - HGNC:38117 Y Yq11.23 golgin A6 family-like 16, pseudogene pseudo GOLGA6L16P golgin A6 family-like 16, pseudogene O - 20121230 -9606 100287846 LOC100287846 - - - 8 8q11.21 patched 1 pseudogene pseudo - - - - 20121230 -9606 100287852 LOC100287852 - - - 3 3q12.3 protein FAM136A-like protein-coding - - - - 20121209 -9606 100287856 LOC100287856 - - - 6 6q22.33 cornichon homolog 4 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100287859 FAM197Y6 - - HGNC:37468 Y Yp11.2 family with sequence similarity 197, Y-linked, member 6 protein-coding FAM197Y6 family with sequence similarity 197, Y-linked, member 6 O - 20121209 -9606 100287868 LOC100287868 - - - X Xq13.1 nuclear transport factor 2 pseudogene pseudo - - - - 20121230 -9606 100287869 LOC100287869 - - - 6 6p12.2 uncharacterized LOC100287869 unknown - - - - 20120622 -9606 100287874 TTTY27P - - HGNC:38527 Y Yp11.2 testis-specific transcript, Y-linked 27, pseudogene pseudo TTTY27P testis-specific transcript, Y-linked 27, pseudogene O - 20120511 -9606 100287877 LOC100287877 - - - 1 1p36.31 uncharacterized LOC100287877 unknown - - - - 20120508 -9606 100287879 LOC100287879 - - - 3 3p14.1 uncharacterized LOC100287879 miscRNA - - - - 20121230 -9606 100287880 NDUFA4P2 - NDUFA4L|bcm1723 HGNC:31362 3 3q13.11 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa, pseudogene 2 pseudo NDUFA4P2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa, pseudogene 2 O - 20121230 -9606 100287887 RPL13AP25 - FWP004|RPL13A_11_1314|S863-4 HGNC:36981 13 13q14.3 ribosomal protein L13a pseudogene 25 pseudo RPL13AP25 ribosomal protein L13a pseudogene 25 O - 20121230 -9606 100287894 LOC100287894 - - - 7 7q11.21 uncharacterized LOC100287894 pseudo - - - - 20121209 -9606 100287895 LOC100287895 - - - 8 8q12.3 asparaginyl-tRNA synthetase pseudogene pseudo - - - - 20121230 -9606 100287896 LOC100287896 hCG_2042286 - - 11 11q13.4 uncharacterized LOC100287896 unknown - - - - 20121230 -9606 100287898 TTC34 - - HGNC:34297|Ensembl:ENSG00000215912 1 1p36.32 tetratricopeptide repeat domain 34 protein-coding TTC34 tetratricopeptide repeat domain 34 O TPR repeat protein 34|TPR repeat-containing protein ENSP00000383873|tetratricopeptide repeat protein 34 20121230 -9606 100287900 GM2AP2 - - HGNC:38002 1 1q24.3 GM2 ganglioside activator pseudogene 2 pseudo GM2AP2 GM2 ganglioside activator pseudogene 2 O - 20121230 -9606 100287902 LGALS8-AS1 - - HGNC:40340 1 1q43 LGALS8 antisense RNA 1 miscRNA LGALS8-AS1 LGALS8 antisense RNA 1 O - 20121230 -9606 100287905 TTTY31P - - HGNC:38711 Y Yp11.2 testis-specific transcript, Y-linked 31, pseudogene pseudo TTTY31P testis-specific transcript, Y-linked 31, pseudogene O - 20120511 -9606 100287908 LOC100287908 - - - 15 15q11.2 zinc finger protein 519 pseudogene pseudo - - - - 20121230 -9606 100287912 LOC100287912 - - - 2 2p12 ankyrin repeat domain 11 pseudogene pseudo - - - - 20121230 -9606 100287916 LOC100287916 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100287919 VN1R30P - - HGNC:37350 7 7q11.21 vomeronasal 1 receptor 30 pseudogene pseudo VN1R30P vomeronasal 1 receptor 30 pseudogene O - 20121230 -9606 100287922 ANKRD18CP - - HGNC:43601 9 9q22.33 ankyrin repeat domain 18C, pseudogene pseudo ANKRD18CP ankyrin repeat domain 18C, pseudogene O - 20121230 -9606 100287928 LOC100287928 - - - X Xp22.32 hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), beta subunit pseudogene pseudo - - - - 20121230 -9606 100287931 LOC100287931 - - - 4 4p16.3 uncharacterized LOC100287931 unknown - - - - 20121117 -9606 100287932 TIMM23 RP11-481A12.7 TIM23 HGNC:17312|MIM:605034|Ensembl:ENSG00000138297|Vega:OTTHUMG00000018213 10 10q11.23 translocase of inner mitochondrial membrane 23 homolog (yeast) protein-coding TIMM23 translocase of inner mitochondrial membrane 23 homolog (yeast) O mitochondrial import inner membrane translocase subunit Tim23 20121230 -9606 100287934 LOC100287934 - - - 1 1p36.33 uncharacterized LOC100287934 unknown - - - - 20121230 -9606 100287941 TTTY24P - - HGNC:38521 Y Yp11.2 testis-specific transcript, Y-linked 24, pseudogene pseudo TTTY24P testis-specific transcript, Y-linked 24, pseudogene O - 20121230 -9606 100287944 LOC100287944 - - - 12 12q23.3 uncharacterized LOC100287944 miscRNA - - - - 20121230 -9606 100287945 LOC100287945 - - - 15 15q11.2 uncharacterized LOC100287945 pseudo - - - - 20121209 -9606 100287948 GM140 - - - 1 1q25.3 uncharacterized LOC100287948 miscRNA - - - - 20121230 -9606 100287951 LOC100287951 - - - 4 4p16.1 dynein, light chain, Tctex-type 1 pseudogene pseudo - - - - 20121230 -9606 100287954 LOC100287954 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100287960 HIGD1AP10 - - HGNC:43005 11 11q13.1 HIG1 hypoxia inducible domain family, member 1A pseudogene 10 pseudo HIGD1AP10 HIG1 hypoxia inducible domain family, member 1A pseudogene 10 O - 20121230 -9606 100287964 ATP5LP7 - - HGNC:38169 17 17q21.2 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 7 pseudo ATP5LP7 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 7 O - 20120726 -9606 100287965 LOC100287965 - - - 2 2q32.2 telomeric repeat binding factor (NIMA-interacting) 1 pseudogene pseudo - - - - 20121230 -9606 100287966 LOC100287966 - - - 22 22q11.22 sodium/glucose cotransporter 1-like pseudo - - - - 20121209 -9606 100287979 TTTY13C - - HGNC:38613 Y Yp11.2 testis-specific transcript, Y-linked 13C protein-coding TTTY13C testis-specific transcript, Y-linked 13C O - 20120511 -9606 100287985 LOC100287985 - - - 2 2p12 ring-box 1, E3 ubiquitin protein ligase pseudogene pseudo - - - - 20121230 -9606 100287990 LOC100287990 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100287991 LOC100287991 - - - 6 6p12.3 myotubularin-related protein 9-like pseudo - - - - 20121209 -9606 100288001 LOC100288001 - - - 8 8q13.1 PRP3 pre-mRNA processing factor 3 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100288008 LOC100288008 - - - 18 18q21.1 proline rich 13 pseudogene pseudo - - - - 20121230 -9606 100288010 LOC100288010 - - - 5 5q33.2 cytochrome c oxidase subunit VIIa polypeptide 2 like pseudogene pseudo - - - - 20121230 -9606 100288013 LOC100288013 - - - 8 8q11.1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa pseudogene pseudo - - - - 20121230 -9606 100288016 LOC100288016 - - - 3 3q29 serine/threonine-protein phosphatase 4 regulatory subunit 2-like pseudo - - - - 20121230 -9606 100288019 LOC100288019 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100288022 VN1R33P - - HGNC:37353 7 7q11.21 vomeronasal 1 receptor 33 pseudogene pseudo VN1R33P vomeronasal 1 receptor 33 pseudogene O - 20121230 -9606 100288025 DYZ1L2 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100288028 LOC100288028 - - - 14 14q32.13 coiled-coil domain containing 59 pseudogene pseudo - - - - 20121230 -9606 100288031 LOC100288031 - - - X Xp22.31 BRICK1, SCAR/WAVE actin-nucleating complex subunit pseudogene pseudo - - - - 20121230 -9606 100288035 LOC100288035 - - - 9 9p22.1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa pseudogene pseudo - - - - 20121230 -9606 100288038 HNRNPA1P28 - - HGNC:39546 X Xq24 heterogeneous nuclear ribonucleoprotein A1 pseudogene 28 pseudo HNRNPA1P28 heterogeneous nuclear ribonucleoprotein A1 pseudogene 28 O - 20121230 -9606 100288042 LOC100288042 - - - 15 15q11.2 zinc finger protein 519 pseudogene pseudo - - - - 20121230 -9606 100288049 LOC100288049 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100288053 DYZ1L3 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288067 LOC100288067 - - - 9 9q22.33 uncharacterized LOC100288067 pseudo - - - - 20121209 -9606 100288069 LOC100288069 - - - 1 1p36.33 general transcription factor IIi pseudogene pseudo - - - - 20121230 -9606 100288072 SDR42E2 - - HGNC:35414 16 16p12.2 short chain dehydrogenase/reductase family 42E, member 2 protein-coding SDR42E2 short chain dehydrogenase/reductase family 42E, member 2 O Putative 3-beta-HSD family protein ENSP00000330812|putative short-chain dehydrogenase/reductase family 42E member 2 20121021 -9606 100288073 LOC100288073 - - - 4 4q32.3 heat shock 70kDa protein 5 (glucose-regulated protein, 78kDa) pseudogene pseudo - - - - 20121230 -9606 100288077 WTAPP1 - - HGNC:44115 11 11q22.2 Wilms tumor 1 associated protein pseudogene 1 pseudo WTAPP1 Wilms tumor 1 associated protein pseudogene 1 O - 20121230 -9606 100288079 LOC100288079 - - - 1 1q25.3 microtubule-associated protein 1 light chain 3 beta pseudogene pseudo - - - - 20121230 -9606 100288081 LOC100288081 - - - Un - olfactory receptor 4F3/4F16/4F29-like pseudo - - - - 20121209 -9606 100288083 LOC100288083 - - - 7 7p14.1 protein capicua homolog pseudo - - - - 20121230 -9606 100288085 DYZ1L5 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288093 LOC100288093 - - - 19 19q13.42 nuclear RNA export factor 3 pseudogene pseudo - - - - 20121230 -9606 100288097 LOC100288097 - - - 8 8q13.3 BCL2-associated athanogene 4 pseudogene pseudo - - - - 20121230 -9606 100288102 LOC100288102 - - - 1 1q42.11 uncharacterized LOC100288102 miscRNA - - - - 20121209 -9606 100288111 LOC100288111 - - - 11 11q22.2 bolA homolog 3 (E. coli) pseudogene pseudo - - - - 20121230 -9606 100288112 OR11J7P - - HGNC:38589 15 15q11.2 olfactory receptor, family 11, subfamily J, member 7 pseudogene pseudo OR11J7P olfactory receptor, family 11, subfamily J, member 7 pseudogene O - 20121230 -9606 100288114 LOC100288114 - - - 19 19q13.43 uncharacterized LOC100288114 unknown - - - - 20120511 -9606 100288115 LOC100288115 - - - 3 3q29 uncharacterized LOC100288115 pseudo - - - - 20121209 -9606 100288119 LOC100288119 - - - 4 - capicua homolog pseudogene pseudo - - - - 20121209 -9606 100288122 LOC100288122 - - - 18 18p11.21 uncharacterized LOC100288122 miscRNA - - - - 20121230 -9606 100288123 LOC100288123 - - - 19 19p13.3 uncharacterized LOC100288123 miscRNA - - - - 20121230 -9606 100288124 DYZ1L8 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288125 LOC100288125 - - - 9 9q22.33 NME/NM23 nucleoside diphosphate kinase 2 pseudogene pseudo - - - - 20121230 -9606 100288129 LOC100288129 - - - 12 12q13.11 acireductone dioxygenase 1 pseudogene pseudo - - - - 20121230 -9606 100288130 SOGA2P1 - CCDC165P1 HGNC:42040 13 13q21.33 SOGA family member 2 pseudogene 1 pseudo SOGA2P1 SOGA family member 2 pseudogene 1 O - 20121230 -9606 100288136 LOC100288136 - - - 5 5q11.2 protein mago nashi homolog pseudo - - - - 20121209 -9606 100288139 PIH2 - - - 8 8q13.3 pregnancy-induced hypertension syndrome-related protein unknown - - - - 20120710 -9606 100288142 LOC100288142 - - - 1 1q21.2 neuroblastoma breakpoint family member unknown - - - - 20121230 -9606 100288144 LOC100288144 - - - 14 14q32.33 uncharacterized LOC100288144 unknown - - - - 20121230 -9606 100288146 LOC100288146 - - - 4 4q24 nucleoporin Nup43-like pseudo - - - - 20121230 -9606 100288148 OR11J6P - - HGNC:38588 15 15q11.2 olfactory receptor, family 11, subfamily J, member 6 pseudogene pseudo OR11J6P olfactory receptor, family 11, subfamily J, member 6 pseudogene O - 20121227 -9606 100288149 NDUFS5P3 - - HGNC:44041 1 1p32.3 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 3 pseudo NDUFS5P3 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 3 O - 20121230 -9606 100288151 LOC100288151 - - - 21 21q21.1 SREK1-interacting protein 1 pseudogene pseudo - - - - 20121230 -9606 100288152 LOC100288152 - - - 5 5p15.33 uncharacterized LOC100288152 unknown - - - - 20121230 -9606 100288157 DYZ1L9 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288160 LOC100288160 - - - 14 14q32.2 esophagus cancer-related gene-2 interaction susceptibility protein unknown - - - - 20121230 -9606 100288162 LOC100288162 - - - 16 16p13.11 uncharacterized LOC100288162 miscRNA - - - - 20121230 -9606 100288165 HMGN2P15 - - HGNC:39020 17 17q21.31 high mobility group nucleosomal binding domain 2 pseudogene 15 pseudo HMGN2P15 high mobility group nucleosomal binding domain 2 pseudogene 15 O - 20121230 -9606 100288170 LOC100288170 - - - 6 6q14.1 ubiquitin-conjugating enzyme E2 variant 1 pseudogene pseudo - - - - 20121230 -9606 100288172 LOC100288172 - - - 4 4p16.3 WEE1 homolog (S. pombe) pseudogene pseudo - - - - 20121230 -9606 100288173 TRMT112P4 - - HGNC:44023 9 9q31.1 tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 4 pseudo TRMT112P4 tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 4 O - 20121230 -9606 100288175 LOC100288175 - - - 1 1p36.33 uncharacterized LOC100288175 unknown - - - - 20121102 -9606 100288179 TSEN15P1 - - HGNC:43962 17 17p11.2 tRNA splicing endonuclease 15 homolog (S. cerevisiae) pseudogene 1 pseudo TSEN15P1 tRNA splicing endonuclease 15 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100288181 LOC100288181 - - - 8 8q24.3 uncharacterized LOC100288181 miscRNA - - - - 20121230 -9606 100288185 PPIAP1 - PPIAP HGNC:9254 21 21q21.1 peptidylprolyl isomerase A (cyclophilin A), pseudogene 1 pseudo PPIAP1 peptidylprolyl isomerase A (cyclophilin A), pseudogene 1 O - 20121230 -9606 100288188 DYZ1L10 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288192 LOC100288192 - - - 2 2q14.3 archaelysin family metallopeptidase 2 pseudogene pseudo - - - - 20121230 -9606 100288195 VN1R104P - - HGNC:37427 19 19q13.42 vomeronasal 1 receptor 104 pseudogene pseudo VN1R104P vomeronasal 1 receptor 104 pseudogene O - 20121230 -9606 100288198 LOC100288198 - - - 6 6q14.1 uncharacterized LOC100288198 miscRNA - - - - 20121230 -9606 100288203 LOC100288203 - - - 15 15q13.2 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene pseudo - - - - 20121230 -9606 100288208 LOC100288208 - - - 13 13q22.1 uncharacterized LOC100288208 unknown - - - - 20121230 -9606 100288211 LOC100288211 - - - 19 19q13.43 PPPDE peptidase domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100288220 DYZ1L11 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100288222 ATP5G1P8 - - HGNC:39511 10 10q22.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 8 pseudo ATP5G1P8 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 8 O - 20121230 -9606 100288227 MTND1P27 - - HGNC:42076 2 2q22.1 MT-ND1 pseudogene 27 pseudo MTND1P27 MT-ND1 pseudogene 27 O - 20121230 -9606 100288233 LOC100288233 - - - X Xp22.11 ribosomal protein L23 pseudogene pseudo - - - - 20121230 -9606 100288235 LOC100288235 - - - 5 5q23.2 heat shock 10kDa protein 1 (chaperonin 10) pseudogene pseudo - - - - 20121230 -9606 100288238 LOC100288238 - - - 9 9p21.3 uncharacterized LOC100288238 unknown - - - - 20120511 -9606 100288241 LOC100288241 - - - 15 15q25.2 protein (peptidylprolyl cis/trans isomerase) NIMA-interacting, 4 (parvulin) pseudogene pseudo - - - - 20121230 -9606 100288248 ZNHIT1P1 - - HGNC:44474 8 8q24.3 zinc finger, HIT-type containing 1 pseudogene 1 pseudo ZNHIT1P1 zinc finger, HIT-type containing 1 pseudogene 1 O - 20121230 -9606 100288250 ISCA1P5 - - HGNC:38026 19 19p13.11 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 5 pseudo ISCA1P5 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 5 O - 20121230 -9606 100288252 LOC100288252 - - - 21 21q21.3 ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 100288254 FLJ40453 - - - 5 5q35.1 uncharacterized LOC100288254 other - - - - 20120710 -9606 100288255 LOC100288255 - - - Un - FSHD region gene 2-like protein-coding - - - - 20121209 -9606 100288259 DYZ1L12 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288264 VN1R105P - - HGNC:37428 19 19q13.42 vomeronasal 1 receptor 105 pseudogene pseudo VN1R105P vomeronasal 1 receptor 105 pseudogene O - 20121230 -9606 100288268 LOC100288268 - - - 7 7q11.21 uncharacterized LOC100288268 pseudo - - - - 20121209 -9606 100288283 LOC100288283 - - - 2 2p22.3 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100288287 KRTAP22-2 - KAP22.2 HGNC:37091|Ensembl:ENSG00000206106|Vega:OTTHUMG00000065630 21 21q22.11 keratin associated protein 22-2 protein-coding KRTAP22-2 keratin associated protein 22-2 O keratin-associated protein 22-2 20121230 -9606 100288289 LOC100288289 - - - Un - double homeobox protein 4-like pseudo - - - - 20121209 -9606 100288293 DYZ1L13 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288298 GCSHP2 - - HGNC:43927 14 14q32.32 glycine cleavage system protein H (aminomethyl carrier) pseudogene 2 pseudo GCSHP2 glycine cleavage system protein H (aminomethyl carrier) pseudogene 2 O - 20121230 -9606 100288306 LOC100288306 - - - 5 5q23.2 uncharacterized LOC100288306 unknown - - - - 20120511 -9606 100288307 USMG5P1 RP3-368A4.1 - HGNC:31716 X Xq13.2 up-regulated during skeletal muscle growth 5 homolog (mouse) pseudogene 1 pseudo USMG5P1 up-regulated during skeletal muscle growth 5 homolog (mouse) pseudogene 1 O - 20121230 -9606 100288310 LOC100288310 - - - 8 8q13.3 uncharacterized LOC100288310 unknown - - - - 20121230 -9606 100288315 LOC100288315 - - - 16 16p11.2 uncharacterized LOC100288315 protein-coding - - - - 20120710 -9606 100288318 LOC100288318 - - - 8 8q24.3 uncharacterized protein FLJ40521-like other - - - - 20120622 -9606 100288319 AK3P5 - - HGNC:39064 10 10p11.22 adenylate kinase 3 pseudogene 5 pseudo AK3P5 adenylate kinase 3 pseudogene 5 O - 20121230 -9606 100288323 KRTAP21-3 - - HGNC:34216|Ensembl:ENSG00000231068|Vega:OTTHUMG00000125533 21 21q22.11 keratin associated protein 21-3 protein-coding KRTAP21-3 keratin associated protein 21-3 O keratin-associated protein 21-3 20121230 -9606 100288325 LOC100288325 - - - Un - double homeobox protein 4-like pseudo - - - - 20121209 -9606 100288329 DYZ1L14 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100288330 H2AFZP5 - - HGNC:38018 10 10q22.3 H2A histone family, member Z pseudogene 5 pseudo H2AFZP5 H2A histone family, member Z pseudogene 5 O - 20121230 -9606 100288332 LOC100288332 - - Ensembl:ENSG00000183793|Vega:OTTHUMG00000166305 16 16p13.11 NPIP-like protein 1-like protein-coding - - - - 20121209 -9606 100288336 LOC100288336 - - - 21 21q22.3 Putative uncharacterized protein ENSP00000383251 protein-coding - - - - 20121230 -9606 100288337 LOC100288337 - - - 4 4q34.3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 5, 16kDa pseudogene pseudo - - - - 20121230 -9606 100288339 LOC100288339 - - - 12 12q24.32 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa pseudogene pseudo - - - - 20121230 -9606 100288343 SLC25A14P1 - - HGNC:43856 4 4q21.23 solute carrier family 25 (mitochondrial carrier, brain), member 14 pseudogene 1 pseudo SLC25A14P1 solute carrier family 25 (mitochondrial carrier, brain), member 14 pseudogene 1 O - 20121230 -9606 100288346 LOC100288346 - - - 11 11q23.2 uncharacterized LOC100288346 miscRNA - - - - 20121230 -9606 100288355 LOC100288355 - - - Un - double homeobox protein 4-like protein-coding - - - - 20121222 -9606 100288358 LOC100288358 - - - 16 16q23.1 uncharacterized LOC100288358 unknown - - - - 20120511 -9606 100288363 DYZ1L15 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288365 LOC100288365 - - - 11 11p15.3 activating transcription factor 7 interacting protein 2 pseudogene pseudo - - - - 20121230 -9606 100288367 LOC100288367 - - - 15 15q25.2 golgin A2 pseudogene pseudo - - - - 20121230 -9606 100288378 LOC100288378 - - - 12 12p12.1 leucine rich repeat containing 34 pseudogene pseudo - - - - 20121230 -9606 100288379 LOC100288379 - - - 1 1p36.33 ribosomal protein S7 pseudogene pseudo - - - - 20121230 -9606 100288380 ULK4P2 - D-X|FAM7A2 HGNC:15776 15 15q13.2 unc-51-like kinase 4 (C. elegans) pseudogene 2 pseudo ULK4P2 unc-51-like kinase 4 (C. elegans) pseudogene 2 O - 20121230 -9606 100288385 LOC100288385 - - - 11 11q23.2 cytochrome c oxidase subunit VIIa polypeptide 2 like pseudogene pseudo - - - - 20121230 -9606 100288392 LOC100288392 - - - 4 4p16.1 olfactory receptor pseudogene pseudo - - - - 20121230 -9606 100288397 RAB9AP4 - - HGNC:38108 Y Yq11.222 RAB9A, member RAS oncogene family pseudogene 4 pseudo RAB9AP4 RAB9A, member RAS oncogene family pseudogene 4 O - 20121209 -9606 100288398 LOC100288398 - - - Un - double homeobox protein 4-like protein-coding - - - - 20121222 -9606 100288402 DYZ1L17 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288405 SFTPA3P RP11-589B3.3 COLEC6|SFTPAP1|SFTPP1 HGNC:10800 10 10q22.3 surfactant protein A3, pseudogene pseudo SFTPA3P surfactant protein A3, pseudogene O - 20121230 -9606 100288413 ERVMER34-1 hCG_1746629 - HGNC:42970|Ensembl:ENSG00000226887|Vega:OTTHUMG00000150366 4 4q12 endogenous retrovirus group MER34, member 1 protein-coding ERVMER34-1 endogenous retrovirus group MER34, member 1 O HERV-MER_4q12 provirus ancestral Env polyprotein|LP9056 protein|endogenous retrovirus group MER34 member 1 20121230 -9606 100288416 LOC100288416 - - - 9 9q31.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2 pseudogene pseudo - - - - 20121230 -9606 100288420 LOC100288420 - - - 17 17p11.2 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 4, 15kDa pseudogene pseudo - - - - 20121230 -9606 100288425 LOC100288425 - - - 1 1p34.3 eukaryotic translation initiation factor 1 pseudogene pseudo - - - - 20121230 -9606 100288428 LMCD1-AS1 - - HGNC:44477 3 3p26.1 LMCD1 antisense RNA 1 (head to head) miscRNA LMCD1-AS1 LMCD1 antisense RNA 1 (head to head) O - 20121230 -9606 100288430 LOC100288430 - - - 4 4p16.1 uncharacterized LOC100288430 pseudo - - - - 20121209 -9606 100288432 LOC100288432 - - - 21 21q22.11 uncharacterized LOC100288432 miscRNA - - - - 20121230 -9606 100288433 LOC100288433 - - - Un - double homeobox protein 4-like protein-coding - - - - 20121222 -9606 100288435 DYZ1L18 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100288436 LOC100288436 - - - 9 9p21.1 solute carrier family 4 (anion exchanger), member 1, adaptor protein pseudogene pseudo - - - - 20121230 -9606 100288437 LOC100288437 - - - 9 9q31.2 ring finger and WD repeat domain 2, E3 ubiquitin protein ligase pseudogene pseudo - - - - 20121230 -9606 100288440 COX5BP5 - COX5BL5 HGNC:2274 12 12q13.12 cytochrome c oxidase subunit Vb pseudogene 5 pseudo COX5BP5 cytochrome c oxidase subunit Vb pseudogene 5 O - 20121230 -9606 100288443 LOC100288443 - - - 2 2q14.3 uncharacterized LOC100288443 unknown - - - - 20120622 -9606 100288451 RBBP4P5 - - HGNC:42372 14 14q11.2 retinoblastoma binding protein 4 pseudogene 5 pseudo RBBP4P5 retinoblastoma binding protein 4 pseudogene 5 O - 20121230 -9606 100288463 LOC100288463 - - - 5 5q23.2 cullin 1 pseudogene pseudo - - - - 20121230 -9606 100288465 FAM197Y10 - - HGNC:37627 Y Yq11.223 family with sequence similarity 197, Y-linked, member 10 protein-coding FAM197Y10 family with sequence similarity 197, Y-linked, member 10 O - 20121110 -9606 100288466 LOC100288466 - - - Un - double homeobox protein 4-like pseudo - - - - 20121209 -9606 100288468 DYZ1L21 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288470 REXO1L11P - - HGNC:44434 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 11, pseudogene pseudo REXO1L11P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 11, pseudogene O - 20121230 -9606 100288482 LOC100288482 - - - 15 15q13.2 uncharacterized LOC100288482 pseudo - - - - 20121230 -9606 100288483 HSBP1P2 - - HGNC:37300 4 4q25 heat shock factor binding protein 1 pseudogene 2 pseudo HSBP1P2 heat shock factor binding protein 1 pseudogene 2 O - 20121230 -9606 100288484 LOC100288484 - - - 5 5q32 formyl peptide receptor 1 pseudogene pseudo - - - - 20121230 -9606 100288485 MTRNR2L7 - HN7 HGNC:37164|Ensembl:ENSG00000256892 10 10p11.21 MT-RNR2-like 7 protein-coding MTRNR2L7 MT-RNR2-like 7 O MT-RNR2-like protein 7|MTRNR2-like 7|humanin 7|humanin-like protein 7 20121230 -9606 100288486 DDX11L9 - - HGNC:37109 15 15q26.3 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 9 pseudo DDX11L9 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 9 O - 20121230 -9606 100288490 LOC100288490 - - - 19 19q13.43 uncharacterized LOC100288490 unknown - - - - 20120511 -9606 100288493 TCEB1P5 - - HGNC:38140 Y Yq11.223 transcription elongation factor B (SIII), polypeptide 1 pseudogene 5 pseudo TCEB1P5 transcription elongation factor B (SIII), polypeptide 1 pseudogene 5 O - 20121230 -9606 100288494 LOC100288494 - - - Un - double homeobox protein 4-like protein-coding - - - - 20121222 -9606 100288496 LOC100288496 - MUC-B1 - 7 7p22.3 uncharacterized LOC100288496 pseudo - - - - 20121102 -9606 100288499 DYZ1L22 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288500 REXO1L10P - - HGNC:44433 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 10, pseudogene pseudo REXO1L10P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 10, pseudogene O - 20121209 -9606 100288503 LOC100288503 - - - 2 2q12.3 chromosome 1 open reading frame 212 pseudogene pseudo - - - - 20121230 -9606 100288504 LOC100288504 - - - 2 2q14.3 uncharacterized LOC100288504 unknown - - - - 20121102 -9606 100288506 PNPT1P1 - - HGNC:44468 3 3p26.1 polyribonucleotide nucleotidyltransferase 1 pseudogene 1 pseudo PNPT1P1 polyribonucleotide nucleotidyltransferase 1 pseudogene 1 O - 20121230 -9606 100288510 LOC100288510 - - - 5 5q11.2 TSR1, 20S rRNA accumulation, homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100288513 LOC100288513 - - - 6 6q15 tubulin, beta 3 pseudogene pseudo - - - - 20121230 -9606 100288517 ISCA1P2 - - HGNC:38023 1 1q42.13 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 2 pseudo ISCA1P2 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100288520 USP17L15 - - HGNC:44443 4 4p16.1 ubiquitin specific peptidase 17-like family member 15 protein-coding USP17L15 ubiquitin specific peptidase 17-like family member 15 O ubiquitin carboxyl-terminal hydrolase 17-like 20121230 -9606 100288523 LOC100288523 - - - Un - double homeobox protein 4-like pseudo - - - - 20121209 -9606 100288524 LOC100288524 - - - 7 7p22.3 forkhead box L1-like protein-coding - - - - 20121230 -9606 100288526 DYZ1L24 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288527 REXO1L2P - - HGNC:32239 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 2 (pseudogene) pseudo REXO1L2P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 2 (pseudogene) O - 20121209 -9606 100288533 LOC100288533 - - - 2 2q14.3 ribosomal protein L14 pseudogene pseudo - - - - 20121230 -9606 100288540 POM121B - - HGNC:34004 7 7q11.23 POM121 transmembrane nucleoporin B (pseudogene) pseudo POM121B POM121 transmembrane nucleoporin B (pseudogene) O - 20121230 -9606 100288542 LOC100288542 - - - 9 9q32 chromosome 14 open reading frame 119 pseudogene pseudo - - - - 20121230 -9606 100288543 FOLR3P1 - - HGNC:38074 11 11q13.4 folate receptor 3 (gamma) pseudogene 1 pseudo FOLR3P1 folate receptor 3 (gamma) pseudogene 1 O - 20121230 -9606 100288557 LOC100288557 - - - Un - double homeobox protein 4-like pseudo - - - - 20121209 -9606 100288558 LOC100288558 - - - 6 6q24.2 chromosome 4 open reading frame 46 pseudogene pseudo - - - - 20121230 -9606 100288560 LOC100288560 - - - X Xp11.22 mitochondrial ribosomal protein S18C pseudogene pseudo - - - - 20121230 -9606 100288561 DYZ1L25 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288562 LOC100288562 - - - 8 8q21.2 exonuclease GOR-like protein-coding - - - - 20121209 -9606 100288563 HMGB3P23 - - HGNC:39315 9 9p21.1 high mobility group box 3 pseudogene 23 pseudo HMGB3P23 high mobility group box 3 pseudogene 23 O - 20121230 -9606 100288568 LOC100288568 - - - 14 14q32.33 uncharacterized LOC100288568 protein-coding - - - - 20121209 -9606 100288570 LOC100288570 - - - 2 2q13 glycosylphosphatidylinositol anchor attachment protein 1 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100288580 ACTR3P1 - - HGNC:31820 14 14q11.2 ARP3 actin-related protein 3 homolog (yeast) pseudogene 1 pseudo ACTR3P1 ARP3 actin-related protein 3 homolog (yeast) pseudogene 1 O - 20121230 -9606 100288584 CCDC34P1 - - HGNC:44008 4 4q25 coiled-coil domain containing 34 pseudogene 1 pseudo CCDC34P1 coiled-coil domain containing 34 pseudogene 1 O - 20121230 -9606 100288590 LOC100288590 - - - 21 21q22.13 cutaneous T-cell lymphoma-associated antigen 1 pseudogene pseudo - - - - 20121230 -9606 100288593 LOC100288593 - - - Un - double homeobox protein 4-like protein-coding - - - - 20121222 -9606 100288594 LOC100288594 - - - 7 7p22.3 uncharacterized LOC100288594 unknown - - - - 20121230 -9606 100288595 DYZ1L26 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120511 -9606 100288596 LOC100288596 - - - 9 9p21.1 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100288610 LINC00268-2P - NCRNA00268-2P|NCRNA00268B HGNC:37771 Y Yq11.1 long intergenic non-protein coding RNA 268-2, pseudogene pseudo LINC00268-2P long intergenic non-protein coding RNA 268-2, pseudogene O - 20121230 -9606 100288613 UBE2NP1 - - HGNC:20337 14 14q11.2 ubiquitin-conjugating enzyme E2N pseudogene 1 pseudo UBE2NP1 ubiquitin-conjugating enzyme E2N pseudogene 1 O - 20121230 -9606 100288615 WHAMMP1 - WHDC1P1 HGNC:32361 15 15q13.3 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 1 pseudo WHAMMP1 WAS protein homolog associated with actin, golgi membranes and microtubules pseudogene 1 O - 20121230 -9606 100288619 LOC100288619 - - - 10 10p15.3 uncharacterized LOC100288619 unknown - - - - 20121230 -9606 100288623 LOC100288623 - - - 19 19p12 zinc finger protein 93-like pseudo - - - - 20121230 -9606 100288627 LOC100288627 - - - Un - double homeobox protein 4-like pseudo - - - - 20121209 -9606 100288628 LOC100288628 - - - 6 6p11.2 SUMO1/sentrin specific peptidase 6 pseudogene pseudo - - - - 20121230 -9606 100288637 LOC100288637 - - - 15 15q13.2 OTU domain containing 7A pseudogene pseudo - - - - 20121230 -9606 100288644 LOC100288644 - - - 4 4q35.1 uncharacterized LOC100288644 unknown - - - - 20121017 -9606 100288646 LOC100288646 - - - 1 1p36.33 putative uncharacterized protein C20orf69-like protein-coding - - - - 20121209 -9606 100288654 LOC100288654 - - - 3 3p14.1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 4, 15kDa pseudogene pseudo - - - - 20121230 -9606 100288656 LOC100288656 - - - 5 5q35.3 ankyrin repeat domain 20 family, member A2 pseudogene pseudo - - - - 20121230 -9606 100288657 LOC100288657 - - - Un - double homeobox protein 4-like protein-coding - - - - 20121209 -9606 100288659 ZNF317P1 - - HGNC:31062 8 8q22.1 zinc finger protein 317 pseudogene 1 pseudo ZNF317P1 zinc finger protein 317 pseudogene 1 O - 20121230 -9606 100288661 SUB1P4 - - HGNC:43994 16 16p12.2 SUB1 homolog (S. cerevisiae) pseudogene 4 pseudo SUB1P4 SUB1 homolog (S. cerevisiae) pseudogene 4 O - 20121230 -9606 100288663 LOC100288663 - - - 2 2q34 actin related protein 2/3 complex, subunit 1A, 41kDa pseudogene pseudo - - - - 20121230 -9606 100288666 LOC100288666 - - - 8 8p11.21 ribosomal protein L7-like 1 pseudogene pseudo - - - - 20121230 -9606 100288667 CICP7 - - HGNC:37756 1 1p36.33 capicua homolog (Drosophila) pseudogene 7 pseudo CICP7 capicua homolog (Drosophila) pseudogene 7 O - 20121209 -9606 100288669 LOC100288669 - - - 1 1p36.13 uncharacterized LOC100288669 pseudo - - - - 20121209 -9606 100288675 LOC100288675 - - - X Xq26.2 uncharacterized LOC100288675 protein-coding - - - - 20120710 -9606 100288683 LOC100288683 - - - 4 4p15.33 ribosomal protein L21 pseudogene pseudo - - - - 20121230 -9606 100288687 DUX4L - - - 10 - double homeobox 4-like miscRNA - - - - 20121230 -9606 100288690 LOC100288690 - - - 10 10q11.22 WASH complex subunit FAM21B-like pseudo - - - - 20121209 -9606 100288691 HMGN2P8 - AC022394.1|HMGN2L8 HGNC:31662 10 10q23.1 high mobility group nucleosomal binding domain 2 pseudogene 8 pseudo HMGN2P8 high mobility group nucleosomal binding domain 2 pseudogene 8 O - 20121230 -9606 100288695 LIMS3L - - HGNC:39941|Ensembl:ENSG00000256671|Vega:OTTHUMG00000169984 2 2q13 LIM and senescent cell antigen-like domains 3-like protein-coding LIMS3L LIM and senescent cell antigen-like domains 3-like O LIM and senescent cell antigen-like-containing domain protein 3-like|particularly interesting new Cys-His protein 3 20121230 -9606 100288702 ARL6IP1P1 - ARL6IPP1 HGNC:23178 14 14q11.2 ADP-ribosylation factor-like 6 interacting protein 1 pseudogene 1 pseudo ARL6IP1P1 ADP-ribosylation factor-like 6 interacting protein 1 pseudogene 1 O - 20121230 -9606 100288703 LOC100288703 - - - 1 1q42.2 peptidylprolyl isomerase A (cyclophilin A)-like 4C pseudogene pseudo - - - - 20121230 -9606 100288708 LOC100288708 - - - 1 1q21.2 myomegalin-like pseudo - - - - 20121209 -9606 100288711 LOC100288711 - - - Un - double homeobox 4 pseudogene pseudo - - - - 20121209 -9606 100288712 LOC100288712 - - - 7 7p22.1 S100 calcium binding protein A11 pseudogene pseudo - - - - 20121230 -9606 100288713 PMS2P10 - PMS2L10|PMSR4 HGNC:9124 7 7q11.23 postmeiotic segregation increased 2 pseudogene 10 pseudo PMS2P10 postmeiotic segregation increased 2 pseudogene 10 O - 20121230 -9606 100288721 LOC100288721 - - - 3 3q13.13 uncharacterized LOC100288721 unknown - - - - 20120511 -9606 100288724 LOC100288724 - - - 7 7q36.1 transient receptor potential cation channel, subfamily C, member 6 pseudogene pseudo - - - - 20121230 -9606 100288726 LOC100288726 - - - 12 12q24.32 heat shock 10kDa protein 1 (chaperonin 10) pseudogene pseudo - - - - 20121230 -9606 100288728 LOC100288728 - - - 17 17p13.3 uncharacterized LOC100288728 unknown - - - - 20121230 -9606 100288730 PAN3-AS1 - - HGNC:39932 13 13q12.2 PAN3 antisense RNA 1 miscRNA PAN3-AS1 PAN3 antisense RNA 1 O - 20121230 -9606 100288739 LOC100288739 - - - 5 5p15.33 signal peptidase complex subunit 2 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100288741 LOC100288741 - - - Un - retinoic acid receptor responder protein 2-like pseudo - - - - 20121209 -9606 100288742 HIST1H2BPS1 - H2BFVP|bA317E16.4 HGNC:18719 6 6p22.2 histone cluster 1, H2b, pseudogene 1 pseudo HIST1H2BPS1 histone cluster 1, H2b, pseudogene 1 O - 20121230 -9606 100288748 LOC100288748 - - - 8 8q22.1 uncharacterized LOC100288748 miscRNA - - - - 20121230 -9606 100288757 SUMO2P4 - - HGNC:39014 5 5q13.1 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 4 pseudo SUMO2P4 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 4 O - 20121230 -9606 100288763 LOC100288763 - - - 16 16q12.2 KIAA1191 pseudogene pseudo - - - - 20121230 -9606 100288771 LOC100288771 - - - 4 4p15.32 prefoldin subunit 1 pseudogene pseudo - - - - 20121230 -9606 100288772 CCT7P2 - CCT7-1P HGNC:35134 5 5q14.3 chaperonin containing TCP1, subunit 7 (eta) pseudogene 2 pseudo CCT7P2 chaperonin containing TCP1, subunit 7 (eta) pseudogene 2 O - 20121230 -9606 100288774 LOC100288774 - - - Un - angiogenic factor with G patch and FHA domains 1-like pseudo - - - - 20121209 -9606 100288778 LOC100288778 - - - 12 12p13.33 WAS protein family homolog 1 pseudogene pseudo - - - - 20121230 -9606 100288785 UQCRBP3 - - HGNC:39033 5 5p15.2 ubiquinol-cytochrome c reductase binding protein pseudogene 3 pseudo UQCRBP3 ubiquinol-cytochrome c reductase binding protein pseudogene 3 O - 20121230 -9606 100288788 LOC100288788 - - - X Xq12 RNA binding motif protein, X-linked-like 3 pseudogene pseudo - - - - 20121230 -9606 100288797 TMEM239 - - HGNC:40044|Ensembl:ENSG00000198326|Vega:OTTHUMG00000031713 20 20p13 transmembrane protein 239 protein-coding TMEM239 transmembrane protein 239 O - 20121230 -9606 100288798 LOC100288798 - - - 12 12q13.11 uncharacterized LOC100288798 unknown - - - - 20121230 -9606 100288801 FRG2C - - HGNC:33626|Ensembl:ENSG00000172969|Vega:OTTHUMG00000158963 3 3p12.3 FSHD region gene 2 family, member C protein-coding FRG2C FSHD region gene 2 family, member C O FSHD region gene 2 protein family member C|HSA3-FRG2|protein FRG2-like-2 20121230 -9606 100288802 LOC100288802 - - - 3 3q29 ribosomal protein L23a pseudogene pseudo - - - - 20121230 -9606 100288803 LOC100288803 - - - 5 5q35.3 F-box and WD repeat domain containing 2 pseudogene pseudo - - - - 20121230 -9606 100288805 HYDIN2 - HYDINP1 HGNC:33129|MIM:610813 1 1q21.1 HYDIN2, axonemal central pair apparatus protein (pseudogene) pseudo HYDIN2 HYDIN2, axonemal central pair apparatus protein (pseudogene) O - 20121230 -9606 100288806 LOC100288806 - - - Un - cell division cycle protein 27 homolog pseudo - - - - 20121209 -9606 100288807 LOC100288807 - - - 7 7q11.23 putative speedy protein-like protein 2-like protein-coding - - - - 20121209 -9606 100288814 LOC100288814 - - - X Xp22.2 uncharacterized LOC100288814 protein-coding - - - uncharacterized protein LOC100288814 20121230 -9606 100288825 TTC39CP1 - - HGNC:44019 4 4q26 tetratricopeptide repeat domain 39C pseudogene 1 pseudo TTC39CP1 tetratricopeptide repeat domain 39C pseudogene 1 O - 20121230 -9606 100288827 CYP4F25P - - HGNC:39949 9 9q21.11 cytochrome P450, family 4, subfamily F, polypeptide 25, pseudogene pseudo CYP4F25P cytochrome P450, family 4, subfamily F, polypeptide 25, pseudogene O - 20121230 -9606 100288831 SRGAP3-AS3 - - HGNC:40900 3 3p25.3 SRGAP3 antisense RNA 3 protein-coding SRGAP3-AS3 SRGAP3 antisense RNA 3 O SRGAP3 antisense RNA 3 (non-protein coding) 20121230 -9606 100288841 RBPJP5 - - HGNC:37485 9 9p12 RBPJ pseudogene 5 pseudo RBPJP5 RBPJ pseudogene 5 O - 20121209 -9606 100288842 LOC100288842 - - - 9 9q33.2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 pseudogene pseudo - - - - 20121230 -9606 100288843 LOC100288843 - - - 10 10q23.31 N-ethylmaleimide-sensitive factor attachment protein, gamma pseudogene pseudo - - - - 20121230 -9606 100288844 LOC100288844 - - - 11 11p14.3 zinc finger protein 133-like pseudo - - - - 20121230 -9606 100288846 LOC100288846 - - - 14 14q21.1 uncharacterized LOC100288846 miscRNA - - - - 20121230 -9606 100288853 LOC100288853 - - - X Xq12 poly(A) binding protein, nuclear 1 pseudogene pseudo - - - - 20121230 -9606 100288860 LOC100288860 - - - 19 19q13.11 uncharacterized LOC100288860 unknown - - - - 20120511 -9606 100288861 TRMT112P1 - - HGNC:44020 4 4q26 tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 1 pseudo TRMT112P1 tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100288864 LOC100288864 - - - 15 15q26.1 uncharacterized LOC100288864 unknown - - - - 20121017 -9606 100288866 LOC100288866 - - - 17 17q21.33 uncharacterized LOC100288866 miscRNA - - - - 20121230 -9606 100288868 LOC100288868 - - - 4 4p15.31 keratin 18 pseudogene pseudo - - - - 20121230 -9606 100288869 LOC100288869 - - - 20 20q11.23 uncharacterized LOC100288869 unknown - - - - 20120710 -9606 100288870 ERLEC1P1 - - HGNC:38012 21 21q11.2 endoplasmic reticulum lectin 1 pseudogene 1 pseudo ERLEC1P1 endoplasmic reticulum lectin 1 pseudogene 1 O - 20121230 -9606 100288884 LOC100288884 - - - 21 21p11.2 uncharacterized LOC100288884 unknown - - - - 20120622 -9606 100288885 LOC100288885 - - - 4 4q23 dynein, light chain, LC8-type 1 pseudogene pseudo - - - - 20121230 -9606 100288892 COX6CP4 - - HGNC:32374 15 15q14 cytochrome c oxidase subunit VIc pseudogene 4 pseudo COX6CP4 cytochrome c oxidase subunit VIc pseudogene 4 O - 20121230 -9606 100288893 LOC100288893 - - - 2 2p25.3 uncharacterized LOC100288893 unknown - - - - 20120622 -9606 100288897 LOC100288897 - - - 2 2q21.1 fatty acyl-CoA reductase 2-like pseudo - - - - 20121209 -9606 100288903 LOC100288903 - - - Un - zinc finger protein 717-like pseudo - - - - 20121209 -9606 100288904 CICP11 - - HGNC:37903 7 7p11.2 capicua homolog (Drosophila) pseudogene 11 pseudo CICP11 capicua homolog (Drosophila) pseudogene 11 O - 20121230 -9606 100288908 LOC100288908 - - - 11 11p15.4 PRO2898 protein-coding - - - - 20120710 -9606 100288910 LOC100288910 - - - 14 14q21.3 uncharacterized LOC100288910 unknown - - - - 20120710 -9606 100288911 LOC100288911 - - - 2 2p22.3 uncharacterized LOC100288911 miscRNA - - - - 20121230 -9606 100288914 LOC100288914 - - - 4 4q24 mannosidase, beta A, lysosomal-like pseudogene pseudo - - - - 20121230 -9606 100288929 LOC100288929 - - - Un - coxsackievirus and adenovirus receptor-like pseudo - - - - 20121209 -9606 100288935 LOC100288935 - - - 11 11p15.4 chromosome 11 open reading frame 10 pseudogene pseudo - - - - 20121230 -9606 100288948 BRD7P1 - BRD7P HGNC:19923 14 14q11.2 bromodomain containing 7 pseudogene 1 pseudo BRD7P1 bromodomain containing 7 pseudogene 1 O - 20121230 -9606 100288950 MTND1P25 - - HGNC:42091 1 1q43 MT-ND1 pseudogene 25 pseudo MTND1P25 MT-ND1 pseudogene 25 O - 20121230 -9606 100288960 PRSS43 - TESSP3 HGNC:37323 3 3p21.31 protease, serine, 43 protein-coding PRSS43 protease, serine, 43 O - 20121216 -9606 100288962 LOC100288962 - - - 4 4p15.2 S-phase kinase-associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100288964 FABP5P5 - FABP5L5 HGNC:31068 5 5q15 fatty acid binding protein 5 pseudogene 5 pseudo FABP5P5 fatty acid binding protein 5 pseudogene 5 O - 20121230 -9606 100288966 LOC100288966 - - - 21|Un - POTE ankyrin domain family member D-like protein-coding - - - uncharacterized protein LOC100288966 20121230 -9606 100288971 LOC100288971 - - - 8 8q22.3 acireductone dioxygenase 1 pseudogene pseudo - - - - 20121230 -9606 100288974 LOC100288974 hCG_1993574 - - 10 10q22.3 BMS1 homolog, ribosome assembly protein (yeast) pseudogene pseudo - - - - 20121230 -9606 100288978 LOC100288978 - - - 14 14q22.1 myeloma overexpressed 2 pseudogene pseudo - - - - 20121230 -9606 100288979 DCAF13P2 - - HGNC:43867 5 5p15.1 DDB1 and CUL4 associated factor 13 pseudogene 2 pseudo DCAF13P2 DDB1 and CUL4 associated factor 13 pseudogene 2 O - 20121230 -9606 100288984 MTND1P3 - - HGNC:42052 7 7q34 MT-ND1 pseudogene 3 pseudo MTND1P3 MT-ND1 pseudogene 3 O - 20121230 -9606 100288998 MTND1P15 - - HGNC:42064 17 17p11.2 MT-ND1 pseudogene 15 pseudo MTND1P15 MT-ND1 pseudogene 15 O - 20121230 -9606 100289004 LOC100289004 - - - Un - actin-related protein 3B-like pseudo - - - - 20121209 -9606 100289009 LOC100289009 - - - 11 11p13 uncharacterized LOC100289009 protein-coding - - - - 20120710 -9606 100289017 MOXD2P - MOXD2 HGNC:33605 7 7q34 monooxygenase, DBH-like 2, pseudogene pseudo MOXD2P monooxygenase, DBH-like 2, pseudogene O - 20121230 -9606 100289019 LOC100289019 - - - 9 9q34.11 uncharacterized LOC100289019 miscRNA - - - - 20121230 -9606 100289026 LOC100289026 - - - Un - coiled-coil domain-containing protein 29-like pseudo - - - - 20121209 -9606 100289027 CDK2AP2P1 - - HGNC:38492 9 9p11.2 cyclin-dependent kinase 2 associated protein 2 pseudogene 1 pseudo CDK2AP2P1 cyclin-dependent kinase 2 associated protein 2 pseudogene 1 O - 20121230 -9606 100289028 BNIP3P4 - - HGNC:39657 9 9q21.11 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 4 pseudo BNIP3P4 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 4 O - 20121230 -9606 100289034 LOC100289034 - - - 2 2q37.3 ribosomal protein L23a pseudogene pseudo - - - - 20121230 -9606 100289037 LOC100289037 - - - 5 5q15 NHP2 non-histone chromosome protein 2-like 1 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100289038 LOC100289038 - - - Un - von Willebrand factor-like pseudo - - - - 20121209 -9606 100289045 LOC100289045 - - - 5 5q13.2 uncharacterized LOC100289045 unknown - - - - 20120710 -9606 100289047 LOC100289047 - - - 8 8p21.2 dnaJ homolog subfamily B member 6-like pseudo - - - - 20121209 -9606 100289051 CYB5AP5 - CYB5P5 HGNC:2576 14 14q12 cytochrome b5 type A (microsomal) pseudogene 5 pseudo CYB5AP5 cytochrome b5 type A (microsomal) pseudogene 5 O - 20121230 -9606 100289055 LOC100289055 - - - Un - uncharacterized LOC100289055 pseudo - - - - 20121209 -9606 100289058 LOC100289058 - - - 13 13q14.11 uncharacterized LOC100289058 protein-coding - - - - 20120710 -9606 100289059 LOC100289059 - - - 15 15q11.2 chromosome 9 open reading frame 123 pseudogene pseudo - - - - 20121230 -9606 100289060 LOC100289060 - - - 15 15q21.3 guanine nucleotide binding protein (G protein), gamma 10 pseudogene pseudo - - - - 20121230 -9606 100289061 LOC100289061 - - - 1 1q21.3 uncharacterized LOC100289061 miscRNA - - - - 20120511 -9606 100289079 LOC100289079 - - - 1 - 60S ribosomal protein L36-like protein-coding - - - - 20121209 -9606 100289085 LOC100289085 - - - Un - protein fem-1 homolog A-like pseudo - - - - 20121209 -9606 100289087 TSPY10 - - HGNC:37473|Ensembl:ENSG00000236424|Vega:OTTHUMG00000041524 Y Yp11.2 testis specific protein, Y-linked 10 protein-coding TSPY10 testis specific protein, Y-linked 10 O Testis-specific Y-encoded protein 10 20121230 -9606 100289090 LOC100289090 - - - 15 15q15.1 uncharacterized LOC100289090 unknown - - - - 20121230 -9606 100289091 LOC100289091 - - - 15 15q21.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit G2 pseudogene pseudo - - - - 20121230 -9606 100289092 LOC100289092 - - - 16 16p11.2 uncharacterized LOC100289092 miscRNA - - - - 20121230 -9606 100289094 LOC100289094 - - - 2 2q37.3 uncharacterized LOC100289094 unknown - - - - 20120511 -9606 100289095 LOC100289095 - - - 3 3q22.1 BCL2-like 12 (proline rich) pseudogene pseudo - - - - 20121230 -9606 100289097 LOC100289097 - - - 2 - protein FRG1-like protein-coding - - - protein FRG1B-like 20121209 -9606 100289098 LOC100289098 - - - 7 7q11.21 uncharacterized LOC100289098 miscRNA - - - - 20121209 -9606 100289099 LOC100289099 - - - 8 8q23.3 ribosomal protein L30 pseudogene pseudo - - - - 20121230 -9606 100289102 EIF4A1P8 RP11-360G10.3 - HGNC:37927 10 10q23.32 eukaryotic translation initiation factor 4A1 pseudogene 8 pseudo EIF4A1P8 eukaryotic translation initiation factor 4A1 pseudogene 8 O - 20121230 -9606 100289117 LOC100289117 - - - 2 2q36.1 ubiquitin A-52 residue ribosomal protein fusion product 1 pseudogene pseudo - - - - 20121230 -9606 100289118 LOC100289118 - - - 3 3q22.3 mitochondrial carrier 2 pseudogene pseudo - - - - 20121230 -9606 100289120 LOC100289120 RP11-274K13.2 - - X Xq26.3 uncharacterized LOC100289120 unknown - - - - 20120511 -9606 100289121 LOC100289121 - - - Un - coxsackievirus and adenovirus receptor-like pseudo - - - - 20121209 -9606 100289124 FAM27E2 - - HGNC:32013 9 9p11.2 family with sequence similarity 27, member E2 unknown FAM27E2 family with sequence similarity 27, member E2 O - 20121230 -9606 100289131 LOC100289131 - - - 3 3p13 cytochrome c oxidase subunit VIc pseudogene pseudo - - - - 20121230 -9606 100289133 KRT8P32 - - HGNC:39866 5 5q15 keratin 8 pseudogene 32 pseudo KRT8P32 keratin 8 pseudogene 32 O - 20121230 -9606 100289137 LOC100289137 - - - 9 9p13.1 uncharacterized LOC100289137 miscRNA - - - - 20121230 -9606 100289141 LOC100289141 - - - 5 5p15.1 H3 histone, family 3B (H3.3B) pseudogene pseudo - - - - 20121230 -9606 100289143 LOC100289143 - - - 12 12q21.2 NOP10 ribonucleoprotein homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100289144 LOC100289144 - - - 1 1q21.1 uncharacterized LOC100289144 pseudo - - - - 20121209 -9606 100289150 FAM197Y5 - - HGNC:37467 Y Yp11.2 family with sequence similarity 197, Y-linked, member 5 miscRNA FAM197Y5 family with sequence similarity 197, Y-linked, member 5 O - 20121209 -9606 100289151 DCLRE1CP1 - - HGNC:44877 10 10p13 DNA cross-link repair 1C pseudogene 1 protein-coding DCLRE1CP1 DNA cross-link repair 1C pseudogene 1 O - 20121213 -9606 100289158 HMGB3P13 - - HGNC:39305 3 3q22.2 high mobility group box 3 pseudogene 13 pseudo HMGB3P13 high mobility group box 3 pseudogene 13 O - 20121230 -9606 100289161 LOC100289161 - - - Un - uncharacterized LOC100289161 pseudo - - - - 20121209 -9606 100289170 COX20P2 - - HGNC:43772 2 2q37.1 COX20 Cox2 chaperone homolog (S. cerevisiae) pseudogene 2 pseudo COX20P2 COX20 Cox2 chaperone homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100289178 GNG12-AS1 - - HGNC:43938 1 1p31.3 GNG12 antisense RNA 1 miscRNA GNG12-AS1 GNG12 antisense RNA 1 O - 20121230 -9606 100289184 LOC100289184 - - - X Xq26.3 ribosomal protein L22 pseudogene pseudo - - - - 20121230 -9606 100289185 LOC100289185 - - - Un - telomeric repeat-binding factor 1-like pseudo - - - - 20121209 -9606 100289186 SDHDP1 - - HGNC:10684 18 18p11.21 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 1 pseudo SDHDP1 succinate dehydrogenase complex, subunit D, integral membrane protein pseudogene 1 O - 20121230 -9606 100289187 LOC100289187 - - - 7 7q22.1 transmembrane protein 225-like protein-coding - - - - 20121230 -9606 100289188 FAM197Y4 - - HGNC:37466 Y Yp11.2 family with sequence similarity 197, Y-linked, member 4 protein-coding FAM197Y4 family with sequence similarity 197, Y-linked, member 4 O - 20121209 -9606 100289191 HMGN3P1 - - HGNC:39206 1 1q21.3 high mobility group nucleosomal binding domain 3 pseudogene 1 pseudo HMGN3P1 high mobility group nucleosomal binding domain 3 pseudogene 1 O - 20121230 -9606 100289193 LOC100289193 - - - 4 4q13.1 ubiquitin-conjugating enzyme E2L 3 pseudogene pseudo - - - - 20121230 -9606 100289194 LOC100289194 - - - 22|Un - uncharacterized LOC100289194 pseudo - - - - 20121209 -9606 100289196 LOC100289196 - - - 7 7p11.2 chromosome 7 open reading frame 73 pseudogene pseudo - - - - 20121230 -9606 100289197 LOC100289197 - - - 7 7q11.22 prefoldin subunit 4-like pseudo - - - - 20121209 -9606 100289206 LOC100289206 - - - X Xq13.1 uncharacterized LOC100289206 pseudo - - - - 20121209 -9606 100289207 LOC100289207 - - - 8 8p12 mitogen-activated protein kinase kinase 1 pseudogene pseudo - - - - 20121230 -9606 100289211 LINC00624 - - HGNC:44254 1 1q21.1 long intergenic non-protein coding RNA 624 miscRNA LINC00624 long intergenic non-protein coding RNA 624 O - 20121230 -9606 100289220 LTV1P1 - - HGNC:44049 4 4q27 LTV1 homolog (S. cerevisiae) pseudogene 1 pseudo LTV1P1 LTV1 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100289230 LOC100289230 - - - 5 5q21.1 uncharacterized LOC100289230 miscRNA - - - - 20121230 -9606 100289237 LOC100289237 - - - 10 10q11.21 centrosomal protein 164kDa pseudogene pseudo - - - - 20121230 -9606 100289238 LOC100289238 - - - 10 10q23.31 zinc finger RNA binding protein pseudogene pseudo - - - - 20121230 -9606 100289244 LOC100289244 - - - 5 5q14.3 peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 100289248 LOC100289248 - - - 4 - uncharacterized LOC100289248 pseudo - - - - 20121102 -9606 100289252 FAM108A3P - C1orf47|FAM108A11P|FAM108A2|FAM108A3 HGNC:33538 1 1q21.1 family with sequence similarity 108, member A2 pseudo FAM108A3P family with sequence similarity 108, member A3, pseudogene O - 20121209 -9606 100289255 LINC00675 - - HGNC:44356 17 17p13.1-p12 long intergenic non-protein coding RNA 675 miscRNA LINC00675 long intergenic non-protein coding RNA 675 O - 20121230 -9606 100289259 ZFYVE9P1 - - HGNC:33359 X Xq26.3 zinc finger, FYVE domain containing 9 pseudogene 1 pseudo ZFYVE9P1 zinc finger, FYVE domain containing 9 pseudogene 1 O - 20121230 -9606 100289260 LOC100289260 - - - Un - calponin-2-like pseudo - - - - 20121209 -9606 100289264 LOC100289264 - - - 7 7q22.1 ribosomal protein L7 pseudogene pseudo - - - - 20121230 -9606 100289265 FAM197Y1 - - HGNC:37464 Y Yp11.2 family with sequence similarity 197, Y-linked, member 1 protein-coding FAM197Y1 family with sequence similarity 197, Y-linked, member 1 O - 20121209 -9606 100289269 LOC100289269 - - - 19 19p12 uncharacterized LOC100289269 protein-coding - - - - 20121018 -9606 100289274 DNAJC3-AS1 - - HGNC:39808 13 13q32.1 DNAJC3 antisense RNA 1 (head to head) miscRNA DNAJC3-AS1 DNAJC3 antisense RNA 1 (head to head) O - 20121209 -9606 100289279 ATP5A1P9 - - HGNC:37667 9 9p13.1 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 9 pseudo ATP5A1P9 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1 pseudogene 9 O - 20121209 -9606 100289280 LOC100289280 - - - 10 10q11.21 cubilin-like pseudo - - - - 20121209 -9606 100289283 LOC100289283 - - - 16 16p11.2 uncharacterized LOC100289283 unknown - - - - 20121230 -9606 100289286 LOC100289286 - - - 6 6p22.3 heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100289290 LOC100289290 - - - 16 16p11.2 Ig heavy chain V-III region VH26-like other - - - - 20121209 -9606 100289295 NUPL1P1 - - HGNC:44052 4 4q28.1 nucleoporin like 1 pseudogene 1 pseudo NUPL1P1 nucleoporin like 1 pseudogene 1 O - 20121230 -9606 100289300 HIGD1AP5 - - HGNC:42999 11 11p15.1 HIG1 hypoxia inducible domain family, member 1A pseudogene 5 pseudo HIGD1AP5 HIG1 hypoxia inducible domain family, member 1A pseudogene 5 O - 20121230 -9606 100289303 LOC100289303 - - - 15 15q26.2 tubulin, alpha 1b pseudogene pseudo - - - - 20121230 -9606 100289308 LOC100289308 - - - 20 20p11.21 uncharacterized LOC100289308 unknown - - - - 20121230 -9606 100289315 LOC100289315 - - - 2 2p16.3 NME/NM23 nucleoside diphosphate kinase 2 pseudogene pseudo - - - - 20121230 -9606 100289319 KRT8P43 - - HGNC:39877 6 6p22.3 keratin 8 pseudogene 43 pseudo KRT8P43 keratin 8 pseudogene 43 O - 20121230 -9606 100289320 LOC100289320 - - - 9 9q21.13 NME1-NME2 readthrough pseudogene pseudo - - - - 20121230 -9606 100289328 LOC100289328 - - - Un - glucoside xylosyltransferase 1-like pseudo - - - - 20121209 -9606 100289333 LOC100289333 - - - 19 19p13.2 uncharacterized LOC100289333 miscRNA - - - - 20121017 -9606 100289341 LOC100289341 hCG_2022304 - - 9 9q34.3 uncharacterized LOC100289341 miscRNA - - - - 20121230 -9606 100289346 LOC100289346 - - - 3 3p24.1 uncharacterized LOC100289346 pseudo - - - - 20121209 -9606 100289347 LOC100289347 - - - 5 5q14.3 uncharacterized LOC100289347 unknown - - - - 20120511 -9606 100289350 LOC100289350 - - - 2 2p11.1 immunoglobulin superfamily, member 3 pseudogene pseudo - - - - 20121230 -9606 100289351 LOC100289351 - - - 9 9q21.13 ribosomal protein S12 pseudogene pseudo - - - - 20121230 -9606 100289360 LOC100289360 - - - 2 2q37.1 HIG1 hypoxia inducible domain family, member 2A pseudogene pseudo - - - - 20121230 -9606 100289361 LOC100289361 - - - 3 3q23 uncharacterized LOC100289361 miscRNA - - - - 20121230 -9606 100289363 LOC100289363 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100289371 LOC100289371 - - - 5 5q21.1 mitochondrially encoded cytochrome c oxidase III pseudogene pseudo - - - - 20121230 -9606 100289373 UBAC2-AS1 - - HGNC:42502 13 13q32.3 UBAC2 antisense RNA 1 miscRNA UBAC2-AS1 UBAC2 antisense RNA 1 O - 20121230 -9606 100289375 LOC100289375 - - - 20 20p11.1 protein FAM27E2-like protein-coding - - - - 20121209 -9606 100289380 PTP4A1P5 - - HGNC:41932 X Xp21.3 protein tyrosine phosphatase type IVA, member 1 pseudogene 5 pseudo PTP4A1P5 protein tyrosine phosphatase type IVA, member 1 pseudogene 5 O - 20121230 -9606 100289381 LOC100289381 - - - 6 6p22.3 adaptor-related protein complex 3, sigma 1 subunit pseudogene pseudo - - - - 20121230 -9606 100289383 LOC100289383 - - - 16 16q24.3 capicua homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100289388 LOC100289388 - - - 11 11q14.1 uncharacterized LOC100289388 miscRNA - - - - 20121230 -9606 100289404 LOC100289404 - - - 5 5q21.1 mitochondrially encoded cytochrome c oxidase II pseudogene pseudo - - - - 20121230 -9606 100289409 LOC100289409 - - - 9 9q34.3 uncharacterized LOC100289409 unknown - - - - 20120511 -9606 100289410 MCF2L-AS1 hCG_1774568 - HGNC:39825 13 13q34 MCF2L antisense RNA 1 miscRNA MCF2L-AS1 MCF2L antisense RNA 1 O - 20121230 -9606 100289414 PHBP9 - - HGNC:39288 10 10q24.31 prohibitin pseudogene 9 pseudo PHBP9 prohibitin pseudogene 9 O - 20121230 -9606 100289416 LOC100289416 - - - 11 11q22.1 zinc finger protein 793 pseudo - - - - 20121230 -9606 100289419 LOC100289419 - - - 16 16p11.2 cardiotrophin-2-like pseudo - - - - 20121209 -9606 100289424 LOC100289424 - - - 10 10q26.3 uncharacterized LOC100289424 unknown - - - - 20121230 -9606 100289435 LOC100289435 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100289442 LOC100289442 - - - 3 3q23 PHD finger protein 5A pseudogene pseudo - - - - 20121230 -9606 100289448 REXO1L12P - - HGNC:44435 8 8q21.2 REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 12, pseudogene pseudo REXO1L12P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 12, pseudogene O - 20121209 -9606 100289450 SLC7A15P - ARPAT HGNC:32724 2 2p24.1 solute carrier family 7, member 15, pseudogene pseudo SLC7A15P solute carrier family 7, member 15, pseudogene O - 20121230 -9606 100289455 LOC100289455 - - - 10 10p12.2 uncharacterized LOC100289455 unknown - - - - 20121230 -9606 100289462 DEFB4B - DEFB4P HGNC:30193|Ensembl:ENSG00000177257|Vega:OTTHUMG00000143857 8 8p23.1 defensin, beta 4B protein-coding DEFB4B defensin, beta 4B O beta-defensin 4B|defensin, beta 4, pseudogene 20121230 -9606 100289470 LOC100289470 - - - 5 5q35.3 chromosome 5 open reading frame 60 pseudogene pseudo - - - - 20121230 -9606 100289473 LOC100289473 - - - 20 20p13 cytoskeleton associated protein 2-like pseudogene pseudo - - - - 20121230 -9606 100289475 LDHBP1 - LDHBL1 HGNC:6542 13 13q34 lactate dehydrogenase B pseudogene 1 pseudo LDHBP1 lactate dehydrogenase B pseudogene 1 O - 20121230 -9606 100289479 LOC100289479 - - - 2 2q31.1 cytochrome c oxidase subunit VIIb pseudogene pseudo - - - - 20121230 -9606 100289489 MINOS1P2 - - HGNC:44092 17 17q24.1 mitochondrial inner membrane organizing system 1 pseudogene 2 pseudo MINOS1P2 mitochondrial inner membrane organizing system 1 pseudogene 2 O - 20121230 -9606 100289495 LOC100289495 hCG_2029702 - - 6 6q27 uncharacterized LOC100289495 miscRNA - - - - 20121230 -9606 100289500 LOC100289500 - - - 1 1p22.1 zinc finger, AN1-type domain 1 pseudogene pseudo - - - - 20121230 -9606 100289501 FTLP11 - - HGNC:37960 15 15q13.1 ferritin, light polypeptide pseudogene 11 pseudo FTLP11 ferritin, light polypeptide pseudogene 11 O - 20121230 -9606 100289509 LOC100289509 - - - 10 10q24.32 uncharacterized LOC100289509 miscRNA - - - - 20121230 -9606 100289511 LOC100289511 - - - 14 14q24.2 uncharacterized LOC100289511 miscRNA - - - - 20121230 -9606 100289518 LOC100289518 - - - 11 11q14.2 immunoglobin superfamily, member 21 pseudogene pseudo - - - - 20121230 -9606 100289533 LOC100289533 - - - 18 18q11.2 uncharacterized LOC100289533 unknown - - - - 20120511 -9606 100289543 LOC100289543 - - - 15 15q13.3 uncharacterized LOC100289543 pseudo - - - - 20121230 -9606 100289545 HIST1H3PS1 - H3F3AP1|dJ45P21.6 HGNC:18982 6 6p22.1 histone cluster 1, H3, pseudogene 1 pseudo HIST1H3PS1 histone cluster 1, H3, pseudogene 1 O - 20121230 -9606 100289561 LOC100289561 - - - 7 7q22.1 uncharacterized LOC100289561 protein-coding - - - uncharacterized protein LOC100289561 20121230 -9606 100289564 LOC100289564 - - - 15 15q26.3 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100289568 LOC100289568 - - - 4 4q13.2 UDP glucuronosyltransferase 2 family, polypeptide A1, complex locus pseudogene pseudo - - - - 20121230 -9606 100289569 LOC100289569 - - - 5 5q21.3 zinc finger protein 736 pseudogene pseudo - - - - 20121230 -9606 100289574 LOC100289574 - - - 16 16p11.2 HECT and RLD domain containing E3 ubiquitin protein ligase 2 pseudogene pseudo - - - - 20121230 -9606 100289579 LOC100289579 - - - 6 6q14.3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa pseudogene pseudo - - - - 20121230 -9606 100289580 LOC100289580 hCG_2045214 - - 16 16q24.3 uncharacterized LOC100289580 miscRNA - - - - 20121230 -9606 100289581 DUX4L13 XX-2136C48.4 - HGNC:38672 10 10q26.3 double homeobox 4 like 13 pseudo DUX4L13 double homeobox 4 like 13 O - 20121230 -9606 100289584 LOC100289584 - - - 1 1q32.1 nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100289585 LOC100289585 - - - 2 2p13.2 proliferation-inducing protein 25 unknown - - - - 20120511 -9606 100289604 LOC100289604 - - - 7 7q35 CTAGE family, member 4 pseudogene pseudo - - - - 20121230 -9606 100289605 HIGD1AP15 - - HGNC:43010 20 20p12.2 HIG1 hypoxia inducible domain family, member 1A pseudogene 15 pseudo HIGD1AP15 HIG1 hypoxia inducible domain family, member 1A pseudogene 15 O - 20121230 -9606 100289607 LOC100289607 - - - 9 9q22.31 heat shock 10kDa protein 1 (chaperonin 10) pseudogene pseudo - - - - 20121230 -9606 100289619 TRIAP1P1 - C10orf135|bA748L13.4 HGNC:31659 10 10p12.1 TP53 regulated inhibitor of apoptosis 1 pseudogene 1 pseudo TRIAP1P1 TP53 regulated inhibitor of apoptosis 1 pseudogene 1 O - 20121230 -9606 100289623 LOC100289623 - - - 2 2q22.2 ubiquitin-conjugating enzyme E2 variant 1 pseudogene pseudo - - - - 20121230 -9606 100289635 ZNF605 - - HGNC:28068|Ensembl:ENSG00000196458|Vega:OTTHUMG00000167934 12 12q24.33 zinc finger protein 605 protein-coding ZNF605 zinc finger protein 605 O - 20121230 -9606 100289637 LOC100289637 - - - 15 15q13.2 uncharacterized LOC100289637 unknown - - - - 20120909 -9606 100289640 PPATP1 - - HGNC:9239 3 3p12.1 phosphoribosyl pyrophosphate amidotransferase pseudogene 1 pseudo PPATP1 phosphoribosyl pyrophosphate amidotransferase pseudogene 1 O - 20121230 -9606 100289643 HSPA8P16 - - HGNC:44931 7 7q21.11 heat shock 70kDa protein 8 pseudogene 16 pseudo HSPA8P16 heat shock 70kDa protein 8 pseudogene 16 O - 20121230 -9606 100289644 LOC100289644 - - - 8 8q21.3 proline rich 13 pseudogene pseudo - - - - 20121230 -9606 100289650 LOC100289650 - - - 19 19q13.2 uncharacterized LOC100289650 miscRNA - - - - 20121230 -9606 100289656 LOC100289656 - - - 15 15q13.1 Dexi homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100289662 COX6B1P5 - - HGNC:37675 4 4p16.3 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 5 pseudo COX6B1P5 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 5 O - 20121230 -9606 100289663 STMN1P2 - - HGNC:44063 4 4q28.3 stathmin 1 pseudogene 2 pseudo STMN1P2 stathmin 1 pseudogene 2 O - 20121230 -9606 100289667 POLR3KP1 - - HGNC:39577 13 13q21.2 polymerase (RNA) III (DNA directed) polypeptide K, 12.3 kDa pseudogene 1 pseudo POLR3KP1 polymerase (RNA) III (DNA directed) polypeptide K, 12.3 kDa pseudogene 1 O - 20121230 -9606 100289673 LOC100289673 - - - 5 5q21.3 phosphoglycerate mutase family member 5 pseudogene pseudo - - - - 20121230 -9606 100289678 ZNF783 hCG_1640448 - HGNC:27222|Ensembl:ENSG00000204946|Vega:OTTHUMG00000158969 7 7q36.1 zinc finger family member 783 protein-coding - - - protein ZNF783 20121230 -9606 100289682 HMGN2P13 - - HGNC:33557 3 3q25.2 high mobility group nucleosomal binding domain 2 pseudogene 13 pseudo HMGN2P13 high mobility group nucleosomal binding domain 2 pseudogene 13 O - 20121230 -9606 100289683 ERVH-3 - HERV-H/F HGNC:39055 6 6q12 endogenous retrovirus group H, member 3 unknown ERVH-3 endogenous retrovirus group H, member 3 O - 20121017 -9606 100289897 LOC100289897 - - - 20 - protein FAM27E2-like pseudo - - - - 20121102 -9606 100290036 LOC100290036 - - - 14 - immunglobulin heavy chain variable region other - - - - 20120710 -9606 100290481 CYAT1 - - - 22 - immunoglobulin lambda light chain-like other - - - - 20120318 -9606 100290877 LOC100290877 - - - 2 - Ig kappa chain V-II region RPMI 6410-like other - - - - 20121102 -9606 100291105 LOC100291105 - - - 20 - uncharacterized LOC100291105 unknown - - - - 20121230 -9606 100291323 LOC100291323 - - - X - uncharacterized LOC100291323 protein-coding - - - - 20120710 -9606 100291626 LOC100291626 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100291628 LOC100291628 - - - 1 - penta-EF-hand domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100291666 LOC100291666 - - - 15 - serologically defined breast cancer antigen NY-BR-40 unknown - - - - 20120710 -9606 100291699 LOC100291699 - - - 15 - A disintegrin and metalloproteinase with thrombospondin motifs 7-like protein-coding - - - - 20121102 -9606 100291786 LOC100291786 - - - 2 - Ig kappa chain V-III region HAH-like other - - - - 20121209 -9606 100292025 LOC100292025 - - - 15 - histone H3.3-like pseudo - - - - 20121102 -9606 100292073 LOC100292073 - - - 12 - uncharacterized LOC100292073 unknown - - - - 20120710 -9606 100292239 LOC100292239 - - - 15 - uncharacterized LOC100292239 pseudo - - - - 20121102 -9606 100292290 LOC100292290 - - - 1 1p32-p31 heat shock 10kDa protein 1 (chaperonin 10) pseudogene pseudo - - - - 20121230 -9606 100292429 LOC100292429 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100292650 LOC100292650 - - - 12 - protein FAM27E2-like pseudo - - - - 20121102 -9606 100292669 LOC100292669 - - - Un - double homeobox protein 4-like protein 2-like protein-coding - - - - 20121222 -9606 100292676 LOC100292676 - - - 7 - putative uncharacterized protein FLJ44672-like pseudo - - - - 20121102 -9606 100292680 LOC100292680 - - - 12 12p13 uncharacterized LOC100292680 miscRNA - - - - 20121230 -9606 100292888 LOC100292888 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100292909 LOC100292909 - - - 2 - uncharacterized LOC100292909 protein-coding - - - - 20121102 -9606 100292922 LOC100292922 - - - 22 - ankyrin repeat domain-containing protein 30B-like protein-coding - - - - 20121102 -9606 100292952 LOC100292952 - - - Y - zinc finger protein 285-like pseudo - - - - 20121102 -9606 100293044 LOC100293044 - - - 19 - uncharacterized LOC100293044 unknown - - - - 20121230 -9606 100293090 MTND4P12 - - HGNC:42199 5 5q31.1 MT-ND4 pseudogene 12 pseudo MTND4P12 MT-ND4 pseudogene 12 O - 20121230 -9606 100293211 LOC100293211 - - - Un - Ig heavy chain V-III region VH26-like other - - - - 20121102 -9606 100293516 ZNF587B - - HGNC:37142|Ensembl:ENSG00000198466 19 - zinc finger protein 587B protein-coding ZNF587B zinc finger protein 587B O - 20121230 -9606 100293534 LOC100293534 - - - 6 - complement C4-B-like protein-coding - - - - 20121216 -9606 100293612 LOC100293612 - - - 3 - uncharacterized LOC100293612 unknown - - - - 20121230 -9606 100293641 LOC100293641 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100293704 LOC100293704 - - - 12 - uncharacterized LOC100293704 miscRNA - - - - 20121209 -9606 100293710 LOC100293710 - - - Un - double homeobox protein 4-like pseudo - - - - 20121102 -9606 100293748 LOC100293748 - - - 1 - putative neuroblastoma breakpoint family member 6-like protein-like protein-coding - - - - 20121102 -9606 100293948 ATG12P2 - - HGNC:38605 2 - autophagy related 12 pseudogene 2 pseudo ATG12P2 autophagy related 12 pseudogene 2 O - 20121230 -9606 100293962 LOC100293962 - - - 12 - uncharacterized LOC100293962 miscRNA - - - - 20121209 -9606 100294033 LOC100294033 - - - 7 - protein FAM115A-like protein-coding - - - - 20121102 -9606 100294145 LOC100294145 - - - 6 - uncharacterized LOC100294145 miscRNA - - - - 20121230 -9606 100294160 LOC100294160 - - - 6 - protein FAM136A-like pseudo - - - - 20121102 -9606 100294188 LOC100294188 - - - 6 - protein FAM136A-like pseudo - - - - 20121102 -9606 100294316 LOC100294316 - - - 6 - protein FAM136A-like pseudo - - - - 20121102 -9606 100294336 LOC100294336 - - - 17 - dead end protein homolog 1-like pseudo - - - - 20121102 -9606 100294339 LOC100294339 - - - 17 - putative protein FAM215A-like pseudo - - - - 20121209 -9606 100294341 LOC100294341 - - - 17 - ADP-ribosylation factor-like protein 17-like protein-coding - - - - 20121102 -9606 100294362 LOC100294362 - - - 17 - uncharacterized LOC100294362 miscRNA - - - - 20121230 -9606 100294391 LOC100294391 - - - 1 - uncharacterized LOC100294391 protein-coding - - - uncharacterized protein LOC100294391 20120318 -9606 100294713 LOC100294713 - - - 12 12q12 IQ motif containing F1 pseudogene pseudo - - - - 20121230 -9606 100294715 BOP - - MIM:612691 6 6q16.3-q22.1 Polymicrogyria, bilateral occipital unknown - - - - 20120622 -9606 100294716 MYP15 - - HGNC:35440|MIM:612717 10 10q21.1 myopia 15 unknown MYP15 myopia 15 O - 20120622 -9606 100294717 BMND13 - - MIM:612727 16 16q23 Bone mineral density QTL 13 unknown - - - - 20120622 -9606 100294718 BMND14 - - MIM:612728 1 1p33-p32 Bone mineral density QTL 14 unknown - - - - 20120622 -9606 100294719 LBMQTL1 - - MIM:612729 8 8q23 Lean body mass QTL 1 unknown - - - - 20120622 -9606 100294720 NHEG1 - - - 6 6q23 neuroblastoma highly expressed 1 miscRNA - - - - 20121230 -9606 100301516 LOC100301516 - - - 7 - acyl-CoA thioesterase 13 pseudogene pseudo - - - - 20121230 -9606 100301521 LOC100301521 - - - 18 - chromosome 15 open reading frame 40 pseudogene pseudo - - - - 20121230 -9606 100301522 CELIAC7 - - MIM:612005 1 1q31 Celiac disease, susceptibility to, 7 unknown - - - - 20120622 -9606 100301523 STQTL12 - - MIM:612224 4 4q31 Stature QTL 12 unknown - - - - 20120622 -9606 100301525 DUH2 - - MIM:612715 12 12q21-q23 Dyschromatosis universalis hereditaria 2 unknown - - - - 20120622 -9606 100301526 STQTL17 - - MIM:612737 7 7p15 Stature QTL 17 unknown - - - - 20120622 -9606 100301527 SYNSTH - - MIM:612759 2 2q24.1 Synesthesia unknown - - - - 20120622 -9606 100301572 PRBNS - - MIM:261800 17 17q24.3-q25.1 Pierre Robin syndrome unknown - - - - 20120622 -9606 100301990 LOC100301990 - - - 3 3p21 zinc finger protein 610 pseudogene pseudo - - - - 20121230 -9606 100302058 LKMCD - - MIM:300660 X Xq25-q27 Leukoencephalopathy with metaphyseal chondrodysplasia unknown - - - - 20120622 -9606 100302059 IBD27 - - MIM:612796 13 13q13.3 Inflammatory bowel disease-27 unknown - - - - 20120622 -9606 100302090 DDX11L8 - - HGNC:37101 12 - DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 like 8 pseudo DDX11L8 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 like 8 O - 20121209 -9606 100302111 MIR1184-1 - MIR1184|MIRN1184|hsa-mir-1184|hsa-mir-1184-1 HGNC:35265|miRBase:MI0006277 X - microRNA 1184-1 miscRNA MIR1184-1 microRNA 1184-1 O - 20121209 -9606 100302112 MIR1284 - MIRN1284|hsa-mir-1284 HGNC:35362|miRBase:MI0006431 3 - microRNA 1284 miscRNA MIR1284 microRNA 1284 O - 20121230 -9606 100302113 MIR1200 - MIRN1200|hsa-mir-1200 HGNC:35266|miRBase:MI0006332 7 7p14.2 microRNA 1200 miscRNA MIR1200 microRNA 1200 O - 20121230 -9606 100302114 MIR513C - MIRN513C|hsa-mir-513c HGNC:33934|miRBase:MI0006649 X - microRNA 513c miscRNA MIR513C microRNA 513c O - 20121230 -9606 100302115 MIR1468 - MIRN1468|hsa-mir-1468 HGNC:35250|miRBase:MI0003782 X - microRNA 1468 miscRNA MIR1468 microRNA 1468 O - 20121230 -9606 100302116 MIR1265 - MIRN1265|hsa-mir-1265 HGNC:35332|miRBase:MI0006401 10 - microRNA 1265 miscRNA MIR1265 microRNA 1265 O - 20121230 -9606 100302117 MIR320B1 - MIR320B-1|MIRN320B1|hsa-mir-320b-1 HGNC:35247|miRBase:MI0003776 1 - microRNA 320b-1 miscRNA MIR320B1 microRNA 320b-1 O - 20121230 -9606 100302118 MIR1286 - MIRN1286|hsa-mir-1286 HGNC:35279|miRBase:MI0006348 22 - microRNA 1286 miscRNA MIR1286 microRNA 1286 O - 20121230 -9606 100302119 MIR1538 - MIRN1538|hsa-mir-1538 HGNC:35382|miRBase:MI0007259 16 - microRNA 1538 miscRNA MIR1538 microRNA 1538 O - 20121230 -9606 100302121 MIR1276 - MIRN1276|hsa-mir-1276 HGNC:35347|miRBase:MI0006416 15 15q25.3 microRNA 1276 miscRNA MIR1276 microRNA 1276 O - 20121230 -9606 100302122 MIR1183 - MIRN1183|hsa-mir-1183 HGNC:35264|miRBase:MI0006276 7 - microRNA 1183 miscRNA MIR1183 microRNA 1183 O - 20121230 -9606 100302123 MIR1275 - MIRN1275|hsa-mir-1275 HGNC:35346|miRBase:MI0006415 6 - microRNA 1275 miscRNA MIR1275 microRNA 1275 O - 20121230 -9606 100302124 MIR1288 - MIRN1288|hsa-mir-1288 HGNC:35363|miRBase:MI0006432 17 - microRNA 1288 miscRNA MIR1288 microRNA 1288 O - 20121230 -9606 100302125 MIR1289-1 - MIRN1289-1|hsa-mir-1289-1 HGNC:35281|miRBase:MI0006350 20 - microRNA 1289-1 miscRNA MIR1289-1 microRNA 1289-1 O - 20121230 -9606 100302126 MIR1471 - MIRN1471|hsa-mir-1471 HGNC:35380|miRBase:MI0007076 2 - microRNA 1471 miscRNA MIR1471 microRNA 1471 O - 20121230 -9606 100302127 MIR1470 - MIRN1470|hsa-mir-1470 HGNC:35379|miRBase:MI0007075 19 19p13.12 microRNA 1470 miscRNA MIR1470 microRNA 1470 O - 20121230 -9606 100302128 MIR1302-3 - MIRN1302-3|hsa-mir-1302-3 HGNC:35295|miRBase:MI0006364 2 2q13 microRNA 1302-3 miscRNA MIR1302-3 microRNA 1302-3 O - 20121230 -9606 100302129 MIR1915 - MIRN1915|hsa-mir-1915 HGNC:35399|miRBase:MI0008336 10 10p12.31 microRNA 1915 miscRNA MIR1915 microRNA 1915 O - 20121230 -9606 100302130 MIR1302-4 - MIRN1302-4|hsa-mir-1302-4 HGNC:35296|miRBase:MI0006365 2 - microRNA 1302-4 miscRNA MIR1302-4 microRNA 1302-4 O - 20121230 -9606 100302131 MIR302F - MIRN302F|hsa-mir-302f HGNC:35349|miRBase:MI0006418 18 18q12.1 microRNA 302f miscRNA MIR302F microRNA 302f O - 20121230 -9606 100302132 MIR1182 - MIRN1182|hsa-mir-1182 HGNC:35263|miRBase:MI0006275 1 1q42.2 microRNA 1182 miscRNA MIR1182 microRNA 1182 O - 20121230 -9606 100302133 MIR1287 - MIRN1287|hsa-mir-1287 HGNC:35280|miRBase:MI0006349 10 10q24.2 microRNA 1287 miscRNA MIR1287 microRNA 1287 O - 20121230 -9606 100302134 MIR1289-2 - MIRN1289-2|hsa-mir-1289-2 HGNC:35282|miRBase:MI0006351 5 - microRNA 1289-2 miscRNA MIR1289-2 microRNA 1289-2 O - 20121230 -9606 100302135 MIR320C1 - MIR320C-1|MIRN320C1|hsa-mir-320c-1 HGNC:35248|miRBase:MI0003778 18 - microRNA 320c-1 miscRNA MIR320C1 microRNA 320c-1 O - 20121230 -9606 100302136 MIR1252 - MIRN1252|hsa-mir-1252 HGNC:35365|miRBase:MI0006434 12 12q24.23 microRNA 1252 miscRNA MIR1252 microRNA 1252 O - 20121230 -9606 100302137 MIR1914 - MIRN1914|hsa-mir-1914 HGNC:35398|miRBase:MI0008335 20 20q13.33 microRNA 1914 miscRNA MIR1914 microRNA 1914 O - 20121230 -9606 100302138 MIR1292 - MIRN1292|hsa-mir-1292 HGNC:35364|MIM:614155|miRBase:MI0006433 20 - microRNA 1292 miscRNA MIR1292 microRNA 1292 O - 20121230 -9606 100302139 MIR1537 - MIRN1537|hsa-mir-1537 HGNC:35381|miRBase:MI0007258 1 - microRNA 1537 miscRNA MIR1537 microRNA 1537 O - 20121230 -9606 100302140 MIR1302-6 - MIRN1302-6|hsa-mir-1302-6 HGNC:35298|miRBase:MI0006367 7 7p21.1 microRNA 1302-6 miscRNA MIR1302-6 microRNA 1302-6 O - 20121230 -9606 100302141 MIR1913 - MIRN1913|hsa-mir-1913 HGNC:35397|miRBase:MI0008334 6 - microRNA 1913 miscRNA MIR1913 microRNA 1913 O - 20121230 -9606 100302142 MIR1246 - MIRN1246|hsa-mir-1246 HGNC:35312|miRBase:MI0006381 2 2q31.1 microRNA 1246 miscRNA MIR1246 microRNA 1246 O - 20121230 -9606 100302143 MIR1248 - MIRN1248|hsa-mir-1248 HGNC:35314|miRBase:MI0006383 3 3q27.3 microRNA 1248 miscRNA MIR1248 microRNA 1248 O - 20120511 -9606 100302144 MIR1912 - MIRN1912|hsa-mir-1912 HGNC:35396|miRBase:MI0008333 X - microRNA 1912 miscRNA MIR1912 microRNA 1912 O - 20121230 -9606 100302145 MIR1247 - MIRN1247|hsa-mir-1247 HGNC:35313|miRBase:MI0006382 14 - microRNA 1247 miscRNA MIR1247 microRNA 1247 O - 20121230 -9606 100302146 MIR1302-5 - MIRN1302-5|hsa-mir-1302-5 HGNC:35297|miRBase:MI0006366 20 - microRNA 1302-5 miscRNA MIR1302-5 microRNA 1302-5 O - 20121230 -9606 100302147 MIR1302-7 - MIRN1302-7|hsa-mir-1302-7 HGNC:35299|miRBase:MI0006368 8 - microRNA 1302-7 miscRNA MIR1302-7 microRNA 1302-7 O - 20121230 -9606 100302148 MIR1263 - MIRN1263|hsa-mir-1263 HGNC:35329|miRBase:MI0006398 3 3q26.1 microRNA 1263 miscRNA MIR1263 microRNA 1263 O - 20121230 -9606 100302149 MIR1249 - MIRN1249|hsa-mir-1249 HGNC:35315|miRBase:MI0006384 22 22q13.31 microRNA 1249 miscRNA MIR1249 microRNA 1249 O - 20121230 -9606 100302150 MIR1296 - MIRN1296|hsa-mir-1296 HGNC:35249|miRBase:MI0003780 10 - microRNA 1296 miscRNA MIR1296 microRNA 1296 O - 20121230 -9606 100302152 MIR548N - MIRN548N|hsa-mir-548n HGNC:35330|miRBase:MI0006399 7 7p14.3 microRNA 548n miscRNA MIR548N microRNA 548n O - 20121230 -9606 100302153 MIR1298 - MIRN1298|hsa-mir-1298 HGNC:35258|miRBase:MI0003938 X - microRNA 1298 miscRNA MIR1298 microRNA 1298 O - 20121230 -9606 100302155 MIR1256 - MIRN1256|hsa-mir-1256 HGNC:35321|miRBase:MI0006390 1 - microRNA 1256 miscRNA MIR1256 microRNA 1256 O - 20121230 -9606 100302156 MIR1229 - MIRN1229|hsa-mir-1229 HGNC:33924|miRBase:MI0006319 5 - microRNA 1229 miscRNA MIR1229 microRNA 1229 O - 20121230 -9606 100302157 MIR1185-1 - MIRN1185-1|hsa-mir-1185-1 HGNC:35257|miRBase:MI0003844 14 - microRNA 1185-1 miscRNA MIR1185-1 microRNA 1185-1 O - 20121230 -9606 100302158 MIR1231 - MIRN1231|hsa-mir-1231 HGNC:33921|miRBase:MI0006321 1 - microRNA 1231 miscRNA MIR1231 microRNA 1231 O - 20121230 -9606 100302159 MIR548F3 - MIR548F-3|MIRN548F3|hsa-mir-548f-3 HGNC:35307|miRBase:MI0006376 5 - microRNA 548f-3 miscRNA MIR548F3 microRNA 548f-3 O - 20121230 -9606 100302160 MIR1233-1 - MIR1233|MIRN1233|hsa-mir-1233|hsa-mir-1233-1 HGNC:33929|miRBase:MI0006323 15 - microRNA 1233-1 miscRNA MIR1233-1 microRNA 1233-1 O - 20121209 -9606 100302161 MIR1205 - MIRN1205|hsa-mir-1205 HGNC:35271|miRBase:MI0006338 8 - microRNA 1205 miscRNA MIR1205 microRNA 1205 O - 20121230 -9606 100302163 MIR1278 - MIRN1278|hsa-mir-1278 HGNC:35356|miRBase:MI0006425 1 - microRNA 1278 miscRNA MIR1278 microRNA 1278 O - 20121230 -9606 100302164 MIR2113 - hsa-mir-2113 HGNC:37058|miRBase:MI0003939 6 - microRNA 2113 miscRNA MIR2113 microRNA 2113 O - 20121230 -9606 100302165 MIR1273A - MIR1273|MIRN1273|hsa-mir-1273|hsa-mir-1273a HGNC:35340|miRBase:MI0006409 8 8q22.2 microRNA 1273a miscRNA MIR1273A microRNA 1273a O - 20121230 -9606 100302166 MIR1322 - MIRN1322|hsa-mir-1322 HGNC:35374|miRBase:MI0006653 8 - microRNA 1322 miscRNA MIR1322 microRNA 1322 O - 20121230 -9606 100302167 MIR1299 - MIRN1299|hsa-mir-1299 HGNC:35290|miRBase:MI0006359 9 9q12 microRNA 1299 miscRNA MIR1299 microRNA 1299 O - 20121230 -9606 100302168 MIR1257 - MIRN1257|hsa-mir-1257 HGNC:35322|miRBase:MI0006391 20 20q13.33 microRNA 1257 miscRNA MIR1257 microRNA 1257 O - 20121230 -9606 100302169 MIR320D2 - MIR320D-2|MIRN320D2|hsa-mir-320d-2 HGNC:35388|miRBase:MI0008192 X - microRNA 320d-2 miscRNA MIR320D2 microRNA 320d-2 O - 20121230 -9606 100302170 MIR1206 - MIRN1206|hsa-mir-1206 HGNC:35272|miRBase:MI0006339 8 - microRNA 1206 miscRNA MIR1206 microRNA 1206 O - 20121230 -9606 100302171 MIR1321 - MIRN1321|hsa-mir-1321 HGNC:35373|miRBase:MI0006652 X Xq21.2 microRNA 1321 miscRNA MIR1321 microRNA 1321 O - 20121230 -9606 100302172 MIR1258 - MIRN1258|hsa-mir-1258 HGNC:35323|MIM:614488|miRBase:MI0006392 2 2q31.3 microRNA 1258 miscRNA MIR1258 microRNA 1258 O - 20121230 -9606 100302174 MIR1307 - MIRN1307|hsa-mir-1307 HGNC:35372|miRBase:MI0006444 10 - microRNA 1307 miscRNA MIR1307 microRNA 1307 O - 20121230 -9606 100302175 MIR1207 - MIRN1207|hsa-mir-1207 HGNC:35273|miRBase:MI0006340 8 - microRNA 1207 miscRNA MIR1207 microRNA 1207 O - 20121230 -9606 100302177 MIR1269A - MIR1269|MIRN1269|hsa-mir-1269|hsa-mir-1269a HGNC:35337|miRBase:MI0006406 4 - microRNA 1269a miscRNA MIR1269A microRNA 1269a O - 20121230 -9606 100302178 MIR1295A - MIR1295|MIRN1295|hsa-mir-1295|hsa-mir-1295a HGNC:35288|miRBase:MI0006357 1 - microRNA 1295a miscRNA MIR1295A microRNA 1295a O - 20121230 -9606 100302179 MIR1270-1 - MIR1270|MIRN1270|hsa-mir-1270|hsa-mir-1270-1 HGNC:35338|miRBase:MI0006407 19 - microRNA 1270-1 miscRNA MIR1270-1 microRNA 1270-1 O - 20121230 -9606 100302181 MIR1294 - MIRN1294|hsa-mir-1294 HGNC:35287|miRBase:MI0006356 5 - microRNA 1294 miscRNA MIR1294 microRNA 1294 O - 20121230 -9606 100302182 MIR1279 - MIRN1279|hsa-mir-1279 HGNC:35357|miRBase:MI0006426 12 - microRNA 1279 miscRNA MIR1279 microRNA 1279 O - 20121230 -9606 100302183 MIR1825 - MIRN1825|hsa-mir-1825 HGNC:35389|miRBase:MI0008193 20 - microRNA 1825 miscRNA MIR1825 microRNA 1825 O - 20121230 -9606 100302184 MIR1272 - MIRN1272|hsa-mir-1272 HGNC:35339|miRBase:MI0006408 15 - microRNA 1272 miscRNA MIR1272 microRNA 1272 O - 20121230 -9606 100302185 MIR1204 - hsa-mir-1204 HGNC:37059|miRBase:MI0006337 8 - microRNA 1204 miscRNA MIR1204 microRNA 1204 O - 20121230 -9606 100302186 MIR548I3 - MIR548I-3|MIRN548I3|hsa-mir-548i-3 HGNC:35354|miRBase:MI0006423 8 - microRNA 548i-3 miscRNA MIR548I3 microRNA 548i-3 O - 20121209 -9606 100302187 MIR1297 - MIRN1297|hsa-mir-1297 HGNC:35289|miRBase:MI0006358 13 - microRNA 1297 miscRNA MIR1297 microRNA 1297 O - 20121230 -9606 100302188 MIR1243 - MIRN1243|hsa-mir-1243 HGNC:35304|miRBase:MI0006373 4 - microRNA 1243 miscRNA MIR1243 microRNA 1243 O - 20121230 -9606 100302190 MIR1976 - hsa-mir-1976 HGNC:37064|miRBase:MI0009986 1 - microRNA 1976 miscRNA MIR1976 microRNA 1976 O - 20121230 -9606 100302191 MIR548I4 - MIR548I-4|MIRN548I4|hsa-mir-548i-4 HGNC:35355|miRBase:MI0006424 X Xq21.1 microRNA 548i-4 miscRNA MIR548I4 microRNA 548i-4 O - 20121230 -9606 100302192 MIR548F1 - MIR548F-1|MIRN548F1|hsa-mir-548f-1 HGNC:35305|miRBase:MI0006374 10 10q21.1 microRNA 548f-1 miscRNA MIR548F1 microRNA 548f-1 O - 20121230 -9606 100302193 MIR1255A - MIRN1255A|hsa-mir-1255a HGNC:35320|miRBase:MI0006389 4 - microRNA 1255a miscRNA MIR1255A microRNA 1255a O - 20121230 -9606 100302195 MIR320C2 - MIR320C-2|MIRN320C2|hsa-mir-320c-2 HGNC:35387|miRBase:MI0008191 18 18q11.2 microRNA 320c-2 miscRNA MIR320C2 microRNA 320c-2 O - 20121230 -9606 100302196 MIR1234 - MIRN1234|hsa-mir-1234 HGNC:33926|miRBase:MI0006324 8 - microRNA 1234 miscRNA MIR1234 microRNA 1234 O - 20121209 -9606 100302197 MIR1306 - MIRN1306|hsa-mir-1306 HGNC:35371|miRBase:MI0006443 22 - microRNA 1306 miscRNA MIR1306 microRNA 1306 O - 20121230 -9606 100302201 MIR1228 - MIRN1228|hsa-mir-1228 HGNC:33928|miRBase:MI0006318 12 - microRNA 1228 miscRNA MIR1228 microRNA 1228 O - 20121230 -9606 100302202 MIR1266 - MIRN1266|hsa-mir-1266 HGNC:35334|miRBase:MI0006403 15 - microRNA 1266 miscRNA MIR1266 microRNA 1266 O - 20121230 -9606 100302203 MIR1271 - MIRN1271|hsa-mir-1271 HGNC:35252|miRBase:MI0003814 5 5q35 microRNA 1271 miscRNA MIR1271 microRNA 1271 O - 20121230 -9606 100302204 MIR548I1 - MIR548I-1|MIRN548I1|hsa-mir-548i-1 HGNC:35352|miRBase:MI0006421 3 - microRNA 548i-1 miscRNA MIR548I1 microRNA 548i-1 O - 20121230 -9606 100302205 MIR1283-2 - MIRN1283-2|hsa-mir-1283-2 HGNC:35361|miRBase:MI0006430 19 - microRNA 1283-2 miscRNA MIR1283-2 microRNA 1283-2 O - 20121230 -9606 100302208 MIR1253 - MIRN1253|hsa-mir-1253 HGNC:35318|miRBase:MI0006387 17 - microRNA 1253 miscRNA MIR1253 microRNA 1253 O - 20121230 -9606 100302209 MIR1185-2 - MIRN1185-2|hsa-mir-1185-2 HGNC:35254|miRBase:MI0003821 14 - microRNA 1185-2 miscRNA MIR1185-2 microRNA 1185-2 O - 20121230 -9606 100302210 MIR1909 - MIRN1909|hsa-mir-1909 HGNC:35393|miRBase:MI0008330 19 19p13.3 microRNA 1909 miscRNA MIR1909 microRNA 1909 O - 20121230 -9606 100302211 MIR1203 - MIRN1203|hsa-mir-1203 HGNC:35269|miRBase:MI0006335 17 - microRNA 1203 miscRNA MIR1203 microRNA 1203 O - 20121230 -9606 100302212 MIR1324 - MIRN1324|hsa-mir-1324 HGNC:35377|miRBase:MI0006657 3 - microRNA 1324 miscRNA MIR1324 microRNA 1324 O - 20121230 -9606 100302213 MIR1181 - MIRN1181|hsa-mir-1181 HGNC:35262|miRBase:MI0006274 19 - microRNA 1181 miscRNA MIR1181 microRNA 1181 O - 20121230 -9606 100302214 MIR1277 - MIRN1277|hsa-mir-1277 HGNC:35350|miRBase:MI0006419 X Xq24 microRNA 1277 miscRNA MIR1277 microRNA 1277 O - 20121230 -9606 100302217 MIR1827 - MIRN1827|hsa-mir-1827 HGNC:35391|miRBase:MI0008195 12 - microRNA 1827 miscRNA MIR1827 microRNA 1827 O - 20121230 -9606 100302218 MIR1285-1 - MIRN1285-1|hsa-mir-1285-1 HGNC:35277|miRBase:MI0006346 7 7q21-q22 microRNA 1285-1 miscRNA MIR1285-1 microRNA 1285-1 O - 20121230 -9606 100302219 MIR1245A - MIR1245|MIRN1245|hsa-mir-1245|hsa-mir-1245a HGNC:35311|miRBase:MI0006380 2 2q32.2 microRNA 1245a miscRNA MIR1245A microRNA 1245a O - 20121230 -9606 100302220 MIR1293 - MIRN1293|hsa-mir-1293 HGNC:35286|miRBase:MI0006355 12 - microRNA 1293 miscRNA MIR1293 microRNA 1293 O - 20121230 -9606 100302221 MIR1291 - MIRN1291|hsa-mir-1291 HGNC:35284|miRBase:MI0006353 12 - microRNA 1291 miscRNA MIR1291 microRNA 1291 O - 20120508 -9606 100302222 MIR1911 - MIRN1911|hsa-mir-1911 HGNC:35395|miRBase:MI0008332 X - microRNA 1911 miscRNA MIR1911 microRNA 1911 O - 20121230 -9606 100302223 MIR1302-8 - MIRN1302-8|hsa-mir-1302-8 HGNC:35300|miRBase:MI0006369 9 - microRNA 1302-8 miscRNA MIR1302-8 microRNA 1302-8 O - 20121230 -9606 100302224 MIR2110 - hsa-mir-2110 HGNC:37071|miRBase:MI0010629 10 - microRNA 2110 miscRNA MIR2110 microRNA 2110 O - 20121230 -9606 100302225 MIR2053 - hsa-mir-2053 HGNC:37069|miRBase:MI0010487 8 - microRNA 2053 miscRNA MIR2053 microRNA 2053 O - 20121230 -9606 100302226 MIR1238 - MIRN1238|hsa-mir-1238 HGNC:33933|miRBase:MI0006328 19 - microRNA 1238 miscRNA MIR1238 microRNA 1238 O - 20121230 -9606 100302227 MIR1302-1 - MIRN1302-1|hsa-mir-1302-1 HGNC:35293|miRBase:MI0006362 12 12q24 microRNA 1302-1 miscRNA MIR1302-1 microRNA 1302-1 O - 20121230 -9606 100302228 MIR1261 - MIRN1261|hsa-mir-1261 HGNC:35327|miRBase:MI0006396 11 - microRNA 1261 miscRNA MIR1261 microRNA 1261 O - 20121230 -9606 100302229 MIR1250 - MIRN1250|hsa-mir-1250 HGNC:35316|miRBase:MI0006385 17 - microRNA 1250 miscRNA MIR1250 microRNA 1250 O - 20121230 -9606 100302232 MIR1226 - MIRN1226|hsa-mir-1226 HGNC:33922|miRBase:MI0006313 3 3p21.31 microRNA 1226 miscRNA MIR1226 microRNA 1226 O - 20121230 -9606 100302233 MIR1268A - MIR1268|MIRN1268|hsa-mir-1268|hsa-mir-1268a HGNC:35336|miRBase:MI0006405 15 15q11.2 microRNA 1268a miscRNA MIR1268A microRNA 1268a O - 20121230 -9606 100302234 MIR664 - MIRN664|hsa-mir-664 HGNC:35370|miRBase:MI0006442 1 - microRNA 664 miscRNA MIR664 microRNA 664 O - 20121230 -9606 100302235 MIR1179 - MIRN1179|hsa-mir-1179 HGNC:35260|miRBase:MI0006272 15 - microRNA 1179 miscRNA MIR1179 microRNA 1179 O - 20121230 -9606 100302236 MIR1260A - MIR1260|MIRN1260|hsa-mir-1260|hsa-mir-1260a HGNC:35325|miRBase:MI0006394 14 - microRNA 1260a miscRNA MIR1260A microRNA 1260a O - 20121230 -9606 100302237 MIR1281 - MIRN1281|hsa-mir-1281 HGNC:35359|miRBase:MI0006428 22 - microRNA 1281 miscRNA MIR1281 microRNA 1281 O - 20121230 -9606 100302238 MIR103B1 - MIR103-1AS|MIRN103-1AS|hsa-mir-103-1-as HGNC:35384|miRBase:MI0007261 5 - microRNA 103b-1 miscRNA MIR103B1 microRNA 103b-1 O - 20121230 -9606 100302239 MIR548F5 - MIR548F-5|MIRN548F5|hsa-mir-548f-5 HGNC:35309|miRBase:MI0006378 X Xp21.1 microRNA 548f-5 miscRNA MIR548F5 microRNA 548f-5 O - 20121230 -9606 100302240 MIR1304 - MIRN1304|hsa-mir-1304 HGNC:35302|miRBase:MI0006371 11 - microRNA 1304 miscRNA MIR1304 microRNA 1304 O - 20121230 -9606 100302242 MIR1236 - MIRN1236|hsa-mir-1236 HGNC:33925|miRBase:MI0006326 6 - microRNA 1236 miscRNA MIR1236 microRNA 1236 O - 20121230 -9606 100302243 MIR1972-1 - MIR1972|hsa-mir-1972|hsa-mir-1972-1 HGNC:37060|miRBase:MI0009982 16 - microRNA 1972-1 miscRNA MIR1972-1 microRNA 1972-1 O - 20121230 -9606 100302246 MIR1301 - MIRN1301|hsa-mir-1301 HGNC:35253|miRBase:MI0003815 2 - microRNA 1301 miscRNA MIR1301 microRNA 1301 O - 20121230 -9606 100302250 MIR1197 - MIRN1197|hsa-mir-1197 HGNC:35376|miRBase:MI0006656 14 - microRNA 1197 miscRNA MIR1197 microRNA 1197 O - 20121230 -9606 100302251 MIR1264 - MIRN1264|hsa-mir-1264 HGNC:35246|miRBase:MI0003758 X - microRNA 1264 miscRNA MIR1264 microRNA 1264 O - 20121230 -9606 100302254 MIR1282 - MIRN1282|hsa-mir-1282 HGNC:35360|miRBase:MI0006429 15 - microRNA 1282 miscRNA MIR1282 microRNA 1282 O - 20121230 -9606 100302255 MIR1323 - MIRN1323|hsa-mir-1323 HGNC:35251|miRBase:MI0003786 19 19q13.42 microRNA 1323 miscRNA MIR1323 microRNA 1323 O - 20121230 -9606 100302256 MIR1180 - MIRN1180|hsa-mir-1180 HGNC:35261|miRBase:MI0006273 17 - microRNA 1180 miscRNA MIR1180 microRNA 1180 O - 20121230 -9606 100302257 MIR1539 - MIRN1539|hsa-mir-1539 HGNC:35383|miRBase:MI0007260 18 - microRNA 1539 miscRNA MIR1539 microRNA 1539 O - 20121230 -9606 100302258 MIR1469 - MIRN1469|hsa-mir-1469 HGNC:35378|miRBase:MI0007074 15 15q26.2 microRNA 1469 miscRNA MIR1469 microRNA 1469 O - 20121230 -9606 100302259 MIR1202 - MIRN1202|hsa-mir-1202 HGNC:35268|miRBase:MI0006334 6 - microRNA 1202 miscRNA MIR1202 microRNA 1202 O - 20121230 -9606 100302260 MIR2052 - hsa-mir-2052 HGNC:37068|miRBase:MI0010486 8 - microRNA 2052 miscRNA MIR2052 microRNA 2052 O - 20121230 -9606 100302261 MIR1910 - MIRN1910|hsa-mir-1910 HGNC:35394|miRBase:MI0008331 16 - microRNA 1910 miscRNA MIR1910 microRNA 1910 O - 20121230 -9606 100302263 MIR1908 - MIRN1908|hsa-mir-1908 HGNC:35392|miRBase:MI0008329 11 - microRNA 1908 miscRNA MIR1908 microRNA 1908 O - 20121230 -9606 100302265 MIR1283-1 - MIRN1283-1|hsa-mir-1283-1 HGNC:35255|miRBase:MI0003832 19 - microRNA 1283-1 miscRNA MIR1283-1 microRNA 1283-1 O - 20121230 -9606 100302267 MIR2054 - hsa-mir-2054 HGNC:37070|miRBase:MI0010488 4 4q28.1 microRNA 2054 miscRNA MIR2054 microRNA 2054 O - 20121230 -9606 100302268 MIR1285-2 - MIRN1285-2|hsa-mir-1285-2 HGNC:35278|miRBase:MI0006347 2 - microRNA 1285-2 miscRNA MIR1285-2 microRNA 1285-2 O - 20121230 -9606 100302270 MIR1305 - MIRN1305|hsa-mir-1305 HGNC:35303|miRBase:MI0006372 4 4q34.3 microRNA 1305 miscRNA MIR1305 microRNA 1305 O - 20121230 -9606 100302273 MIR1254-1 - MIR1254|MIRN1254|hsa-mir-1254|hsa-mir-1254-1 HGNC:35319|miRBase:MI0006388 10 10q21.3 microRNA 1254-1 miscRNA MIR1254-1 microRNA 1254-1 O - 20121230 -9606 100302274 MIR1178 - MIRN1178|hsa-mir-1178 HGNC:35259|miRBase:MI0006271 12 12q24.23 microRNA 1178 miscRNA MIR1178 microRNA 1178 O - 20121230 -9606 100302275 MIR548L - MIRN548L|hsa-mir-548l HGNC:35292|miRBase:MI0006361 11 - microRNA 548l miscRNA MIR548L microRNA 548l O - 20121230 -9606 100302276 MIR1290 - MIRN1290|hsa-mir-1290 HGNC:35283|miRBase:MI0006352 1 - microRNA 1290 miscRNA MIR1290 microRNA 1290 O - 20121230 -9606 100302277 MIR548I2 - MIR548I-2|MIRN548I2|hsa-mir-548i-2 HGNC:35353|miRBase:MI0006422 4 - microRNA 548i-2 miscRNA MIR548I2 microRNA 548i-2 O - 20121230 -9606 100302278 MIR1302-2 - MIRN1302-2|hsa-mir-1302-2 HGNC:35294|miRBase:MI0006363 1 - microRNA 1302-2 miscRNA MIR1302-2 microRNA 1302-2 O - 20121209 -9606 100302279 MIR1262 - MIRN1262|hsa-mir-1262 HGNC:35328|miRBase:MI0006397 1 1p31.3 microRNA 1262 miscRNA MIR1262 microRNA 1262 O - 20121230 -9606 100302280 MIR1237 - MIRN1237|hsa-mir-1237 HGNC:33927|miRBase:MI0006327 11 - microRNA 1237 miscRNA MIR1237 microRNA 1237 O - 20121230 -9606 100302281 MIR1208 - MIRN1208|hsa-mir-1208 HGNC:35274|miRBase:MI0006341 8 8q24.21 microRNA 1208 miscRNA MIR1208 microRNA 1208 O - 20121230 -9606 100302282 MIR103B2 - MIR103-2-AS|MIR103-2AS|MIRN103-2AS|hsa-mir-103-2-as HGNC:35385|miRBase:MI0007262 20 - microRNA 103b-2 miscRNA MIR103B2 microRNA 103b-2 O - 20121230 -9606 100302283 MIR1227 - MIRN1227|hsa-mir-1227 HGNC:33932|miRBase:MI0006316 19 - microRNA 1227 miscRNA MIR1227 microRNA 1227 O - 20121230 -9606 100302284 MIR1303 - MIRN1303|hsa-mir-1303 HGNC:35301|miRBase:MI0006370 5 - microRNA 1303 miscRNA MIR1303 microRNA 1303 O - 20121230 -9606 100302285 MIR1244-1 - MIR1244|MIRN1244|hsa-mir-1244|hsa-mir-1244-1 HGNC:35310|miRBase:MI0006379 2 - microRNA 1244-1 miscRNA MIR1244-1 microRNA 1244-1 O - 20121230 -9606 100302286 MIR1267 - MIRN1267|hsa-mir-1267 HGNC:35335|miRBase:MI0006404 13 - microRNA 1267 miscRNA MIR1267 microRNA 1267 O - 20121230 -9606 100302287 MIR548H3 - MIR548H-3|MIRN548H3|hsa-mir-548h-3 HGNC:35344|miRBase:MI0006413 17 - microRNA 548h-3 miscRNA MIR548H3 microRNA 548h-3 O - 20121230 -9606 100302288 MIR548P - MIRN548P|hsa-mir-548p HGNC:35351|miRBase:MI0006420 5 5q21.1 microRNA 548p miscRNA MIR548P microRNA 548p O - 20121230 -9606 100302289 MIR1251 - MIRN1251|hsa-mir-1251 HGNC:35317|miRBase:MI0006386 12 - microRNA 1251 miscRNA MIR1251 microRNA 1251 O - 20121230 -9606 100302290 MIR1973 - hsa-mir-1973 HGNC:37061|miRBase:MI0009983 4 - microRNA 1973 miscRNA MIR1973 microRNA 1973 O - 20121230 -9606 100302291 LOC100302291 - - - 1 1q forty-two-three domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100302292 NBPF23 - - HGNC:37075|MIM:612970 1 1q21.2 neuroblastoma breakpoint family, member 23 protein-coding NBPF23 neuroblastoma breakpoint family, member 23 O - 20120508 -9606 100302300 ARTC1 - - - - - Ag recognized by Treg cells 1 unknown - - - - 20120508 -9606 100302401 RASAL2-AS1 - - HGNC:44170 1 - RASAL2 antisense RNA 1 miscRNA RASAL2-AS1 RASAL2 antisense RNA 1 O - 20121230 -9606 100302509 LECD - - MIM:300778 X Xp22.3 Corneal dystrophy, Lisch epithelial unknown - - - - 20120622 -9606 100302510 XECD - - MIM:300779 X Xq25 Corneal dystrophy, endothelial, X-linked unknown - - - - 20120622 -9606 100302511 EE - - MIM:610247 17 17q11.2 Esophagitis, eosinophilic unknown - - - - 20120622 -9606 100302512 RLS6 - - MIM:611185 6 6p21 Restless legs syndrome, susceptibility to, 6 unknown - - - - 20120622 -9606 100302513 DFNB71 - - HGNC:33172|MIM:612789 8 8p22-p21.3 deafness, autosomal recessive 71 unknown DFNB71 deafness, autosomal recessive 71 O - 20120622 -9606 100302514 NRCLP5 - - MIM:612851 14 14q11.2 Narcolepsy 5 unknown - - - - 20120622 -9606 100302515 OFC12 - - MIM:612858 8 8q24.31 Orofacial cleft 12 unknown - - - - 20121010 -9606 100302516 CTEPH1 - - MIM:612862 6 6p21.3 Pulmonary hypertension, chronic thromboembolic, without deep vein thrombosis, susceptibility to unknown - - - - 20120622 -9606 100302517 MENOQ2 - - MIM:612884 19 19q13.4 Menopause, natural, age at, QTL2 unknown - - - - 20120622 -9606 100302518 MENOQ3 - - MIM:612885 20 20p12.3 Menopause, natural, age at, QTL3 unknown - - - - 20120622 -9606 100302519 MENOQ4 - - MIM:612886 5 5q35.2 Menopause, natural, age at, QTL4 unknown - - - - 20120622 -9606 100302522 PTCSC1 - NCRNA00197|PTCSC HGNC:37127 8 8q24 papillary thyroid carcinoma susceptibility candidate 1 (non-protein coding) miscRNA PTCSC1 papillary thyroid carcinoma susceptibility candidate 1 (non-protein coding) O - 20120619 -9606 100302526 FAM41AY2 - - HGNC:37135 Y Yq11.2 family with sequence similarity 41, member A, Y-linked 2 miscRNA FAM41AY2 family with sequence similarity 41, member A, Y-linked 2 O - 20121230 -9606 100302559 PURAQTL1 - - MIM:612795 11 11q12-q13.1 Polyunsaturated fatty acids plasma level QTL1 unknown - - - - 20120622 -9606 100302560 MUHH2 - - MIM:612841 1 1p21.1-q21.3 Hypotrichosis, hereditary, Marie Unna type, 2 unknown - - - - 20120622 -9606 100302561 RLS7 - - MIM:612853 2 2p14-p13 Restless legs syndrome 7 unknown - - - - 20120622 -9606 100302562 MENAQ2 - - MIM:612882 6 6q21 Menarche, age at, QTL2 unknown - - - - 20120622 -9606 100302563 MENAQ3 - - MIM:612883 9 9q31.2 Menarche, age at, QTL3 unknown - - - - 20120622 -9606 100302591 LOC100302591 - - MIM:610808 17 17q12 TBC1 domain family member unknown - - - - 20120318 -9606 100302640 LOC100302640 - - - 3 3q13.12 uncharacterized LOC100302640 miscRNA - - - - 20121230 -9606 100302650 BRE-AS1 - - HGNC:44171 2 2p23 BRE antisense RNA 1 miscRNA BRE-AS1 BRE antisense RNA 1 O - 20121230 -9606 100302652 GPR75-ASB3 - - HGNC:40043|Ensembl:ENSG00000115239|Vega:OTTHUMG00000129279 2 2p16 GPR75-ASB3 readthrough protein-coding GPR75-ASB3 GPR75-ASB3 readthrough O GPR75-ASB3 protein 20121230 -9606 100302657 DDX11L3 - - HGNC:37104 3 3q29 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 3 pseudo DDX11L3 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 3 O - 20121120 -9606 100302666 LOC100302666 - - - 15 - chondroitin sulfate proteoglycan 4 pseudogene pseudo - - - - 20121230 -9606 100302680 DELXQ28 - MICRODELXq28 MIM:300475 X Xq28 Chromosome Xq28 microdeletion syndrome unknown - - - - 20120622 -9606 100302681 PVNH3 - - MIM:608098 5 5p15.1 Periventricular nodular heterotopia 3 unknown - - - - 20120622 -9606 100302682 PVNH5 - - MIM:612881 5 5q14.3-q15 Periventricular nodular heterotopia 5 unknown - - - - 20120622 -9606 100302683 STQTL18 - - MIM:612892 6 6p22.1 Stature QTL 18 unknown - - - - 20120622 -9606 100302684 STQTL19 - - MIM:612893 6 6p21.31 Stature QTL 19 unknown - - - - 20120622 -9606 100302685 STQTL20 - - MIM:612894 13 13q14.3 Stature QTL 20 unknown - - - - 20120622 -9606 100302686 MTBS3 - - MIM:612929 19 19q13.31-q33 Mycobacterium tuberculosis, susceptibility to, 3 unknown - - - - 20120622 -9606 100302689 GPN3P1 - - HGNC:44914 10 - GPN-loop GTPase 3 pseudogene 1 pseudo GPN3P1 GPN-loop GTPase 3 pseudogene 1 O - 20121230 -9606 100302690 DLG2-AS1 - DLG2-AS|DLG2AS|PSZA11q14|SZ-1 HGNC:37132 11 11q14.1 DLG2 antisense RNA 1 unknown DLG2-AS1 DLG2 antisense RNA 1 O - 20120816 -9606 100302691 LINC00184 - HANC|NCRNA00184 HGNC:37192 1 1q42.3 long intergenic non-protein coding RNA 184 miscRNA LINC00184 long intergenic non-protein coding RNA 184 O - 20121230 -9606 100302692 FTX - LINC00182|MIR374AHG|NCRNA00182 HGNC:37190 X Xq13.2 FTX transcript, XIST regulator (non-protein coding) miscRNA FTX FTX transcript, XIST regulator (non-protein coding) O - 20121230 -9606 100302716 HTGH - DEL17q24 MIM:135400 17 17q24.2-q24.3 Hypertrichosis terminalis, generalized, with or without gingival hyperplasia unknown - - - - 20120622 -9606 100302718 B6QTL1 - - MIM:612957 1 1p36.12 Vitamin B6 plasma level QTL 1 unknown - - - - 20120622 -9606 100302719 BMIQ15 - - MIM:612967 17 17q23.2-q25.1 Body mass index QTL 15 unknown - - - - 20120622 -9606 100302720 CATC3 - - MIM:612968 1 1p34.3-p32.2 Cataract, autosomal recessive congenital 3 unknown - - - - 20120622 -9606 100302721 ARHI2 - - MIM:612976 3 3p26.1-p25.1 Age-related hearing impairment 2 unknown - - - - 20120622 -9606 100302736 TMED7-TICAM2 - TAG HGNC:33945|Ensembl:ENSG00000243414|Ensembl:ENSG00000251201|Vega:OTTHUMG00000162911 5 - TMED7-TICAM2 readthrough protein-coding TMED7-TICAM2 TMED7-TICAM2 readthrough O TMED7-TICAM2 read-through transcript|TRAM adaptor with GOLD domain 20121230 -9606 100302737 ZNF861P - - HGNC:34514 19 19p13.12 zinc finger protein 861, pseudogene pseudo ZNF861P zinc finger protein 861, pseudogene O - 20121230 -9606 100302738 RNU6-21 - - HGNC:34265 16 - RNA, U6 small nuclear 21 snRNA RNU6-21 RNA, U6 small nuclear 21 O - 20121230 -9606 100302739 PCNA-AS1 - PCNA-AS|PCNAAS HGNC:37184 20 20pter-p12 PCNA antisense RNA 1 miscRNA PCNA-AS1 PCNA antisense RNA 1 O - 20121230 -9606 100302740 FAS-AS1 - FAS-AS|FASAS|SAF HGNC:37128 10 10q24.1 FAS antisense RNA 1 miscRNA FAS-AS1 FAS antisense RNA 1 O - 20121230 -9606 100302741 RNU6-15 - - HGNC:34259 10 - RNA, U6 small nuclear 15 snRNA RNU6-15 RNA, U6 small nuclear 15 O - 20121230 -9606 100302742 RNU6-42 - - HGNC:34286 3 - RNA, U6 small nuclear 42 snRNA RNU6-42 RNA, U6 small nuclear 42 O - 20121230 -9606 100302743 SNORA80B - ACA67B HGNC:34355 2 2p25.1 small nucleolar RNA, H/ACA box 80B snoRNA SNORA80B small nucleolar RNA, H/ACA box 80B O - 20121230 -9606 100302746 NCRUPAR - NCRNA00193|ncR-uPAR HGNC:37153 5 5q13.3 non-protein coding RNA, upstream of F2R/PAR1 miscRNA NCRUPAR non-protein coding RNA, upstream of F2R/PAR1 O - 20121230 -9606 100302751 NCLP1 - - HGNC:35472 9 9q34.3 nucleolin pseudogene 1 pseudo NCLP1 nucleolin pseudogene 1 O - 20121230 -9606 100303453 TSNAX-DISC1 - - - 1 1q42.1 TSNAX-DISC1 readthrough miscRNA - - - - 20121230 -9606 100303491 ZEB2-AS1 - ZEB2-AS|ZEB2AS|ZEB2NAT HGNC:37149 2 2q22.3 ZEB2 antisense RNA 1 miscRNA ZEB2-AS1 ZEB2 antisense RNA 1 O - 20121230 -9606 100303715 IDDM24 - - MIM:613006 10 10q23.31 Diabetes mellitus, insulin-dependent, 24 unknown - - - - 20120622 -9606 100303716 PBC2 - - MIM:613007 6 6p21.3 Biliary cirrhosis, primary, 2 unknown - - - - 20120622 -9606 100303717 PBC3 - - MIM:613008 1 1p31.2 Biliary cirrhosis, primary, 3 unknown - - - - 20120622 -9606 100303728 SLC25A5-AS1 - - HGNC:43438 X - SLC25A5 antisense RNA 1 miscRNA SLC25A5-AS1 SLC25A5 antisense RNA 1 O - 20121230 -9606 100303743 LSM3P5 - - HGNC:44350 16 16q LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 5 pseudo LSM3P5 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 5 O - 20121230 -9606 100303745 LSM3P2 - - HGNC:44347 12 12q LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 2 pseudo LSM3P2 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100303748 LSM3P1 - - HGNC:44346 17 17q LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 1 pseudo LSM3P1 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100303749 LOC100303749 - - - 5 5q LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100303755 PET117 UNQ607 - HGNC:40045|MIM:614771|Ensembl:ENSG00000232838 20 20p11.23 PET117 homolog (S. cerevisiae) protein-coding PET117 PET117 homolog (S. cerevisiae) O protein PET117 homolog, mitochondrial 20121230 -9606 100306937 NBLST4 - - MIM:613015 6 6p22 Neuroblastoma, susceptibility to, 4 unknown - - - - 20120622 -9606 100306938 NBLST5 - - MIM:613016 2 2q35 Neuroblastoma, susceptibility to, 5 unknown - - - - 20120622 -9606 100306939 NBLST6 - - MIM:613017 1 1q21.1 Neuroblastoma, susceptibility to, 6 unknown - - - - 20120622 -9606 100306940 FL1 - - MIM:613024 6 6p21.33 Follicular lymphoma, susceptibility to, 1 unknown - - - - 20120622 -9606 100306951 PITPNA-AS1 - - HGNC:44116 17 17p13.3 PITPNA antisense RNA 1 miscRNA PITPNA-AS1 PITPNA antisense RNA 1 O - 20121230 -9606 100306975 NDUFAF4P1 - - HGNC:44194 15 - NADH dehydrogenase (ubiquinone) complex I, assembly factor 4 pseudogene 1 pseudo NDUFAF4P1 NADH dehydrogenase (ubiquinone) complex I, assembly factor 4 pseudogene 1 O - 20121230 -9606 100306978 DEL19Q13.11 - C19DELq13.11 MIM:613026 19 19q13.11 Chromosome 19q13.11 deletion syndrome unknown - - - - 20120622 -9606 100306979 ATFB8 - - MIM:613055 16 16q22 Atrial fibrillation, familial, 8 unknown - - - - 20120622 -9606 100307118 BCC1 - - MIM:605462 1 1p36 Basal cell carcinoma, susceptibility to, 1 unknown - - - - 20120622 -9606 100307119 BCC2 - - MIM:613058 1 1q42 Basal cell carcinoma, susceptibility to, 2 unknown - - - - 20120622 -9606 100307120 BCC3 - - MIM:613059 5 5p15.33 Basal cell carcinoma, susceptibility to, 3 unknown - - - - 20120622 -9606 100307121 BCC4 - - MIM:613061 12 12q13 Basal cell carcinoma, susceptibility to, 4 unknown - - - - 20120622 -9606 100307122 BCC5 - - MIM:613062 9 9p21 Basal cell carcinoma, susceptibility to, 5 unknown - - - - 20120622 -9606 100307123 BCC6 - - MIM:613063 7 7q32 Basal cell carcinoma, susceptibility to, 6 unknown - - - - 20120622 -9606 100307126 CHMP4BP1 - - HGNC:43616 14 14q22.3 charged multivesicular body protein 4B pseudogene 1 pseudo CHMP4BP1 charged multivesicular body protein 4B pseudogene 1 O - 20121230 -9606 100309464 OTX2-AS1 - OTX2OS1 HGNC:43906 14 - OTX2 antisense RNA 1 (head to head) miscRNA OTX2-AS1 OTX2 antisense RNA 1 (head to head) O - 20121230 -9606 100310754 DUPXP11.23P11.22 - CXDUPp11.23p11.22 MIM:300801 X Xp11.23-p11.22 Chromosome Xp11.23-p11.22 duplication syndrome unknown - - - - 20120622 -9606 100310755 ATOD7 - - MIM:613064 11 11q13.5 Dermatitis, atopic, susceptibility to, 7 unknown - - - - 20120622 -9606 100310756 LOC100310756 - - - 8 8q24.3 uncharacterized LOC100310756 unknown - - - - 20120508 -9606 100310782 LOC100310782 - - - 5 5p15.3 mitochondrial translational initiation factor 3 pseudogene pseudo - - - - 20121230 -9606 100310785 ALL1 - - MIM:613065 10 10q21 Leukemia, acute lymphocytic, susceptibility to, 1 unknown - - - - 20121209 -9606 100310786 ALL2 - - MIM:613067 7 7p12.2 Leukemia, acute lymphoblastic, susceptibility to, 2 unknown - - - - 20120622 -9606 100310812 SPDYE2L - - Ensembl:ENSG00000173678|Vega:OTTHUMG00000158393 7 7q22.1 WBSCR19-like protein 3 protein-coding - - - putative WBSCR19-like protein 3|putative speedy protein E2-like protein 20121209 -9606 100310835 LOC100310835 - - - 16 16q12.2 thyroid hormone receptor interactor 13 pseudogene pseudo - - - - 20121230 -9606 100310838 VDAC1P3 - - HGNC:37478 X - voltage-dependent anion channel 1 pseudogene 3 pseudo VDAC1P3 voltage-dependent anion channel 1 pseudogene 3 O - 20121230 -9606 100310839 VDAC1P7 - - HGNC:37482 3 - voltage-dependent anion channel 1 pseudogene 7 pseudo VDAC1P7 voltage-dependent anion channel 1 pseudogene 7 O - 20121230 -9606 100310840 VDAC1P8 - - HGNC:37483 6 - voltage-dependent anion channel 1 pseudogene 8 pseudo VDAC1P8 voltage-dependent anion channel 1 pseudogene 8 O - 20121230 -9606 100310841 VDAC1P11 - - HGNC:37480 9 - voltage-dependent anion channel 1 pseudogene 11 pseudo VDAC1P11 voltage-dependent anion channel 1 pseudogene 11 O - 20121230 -9606 100310842 RBPJP1 - IGKJRBP1|RBPSUHP1 HGNC:5725 9 9p13-p12 RBPJ pseudogene 1 pseudo RBPJP1 RBPJ pseudogene 1 O - 20120720 -9606 100310846 ANKRD61 - - HGNC:22467 7 7p22 ankyrin repeat domain 61 protein-coding ANKRD61 ankyrin repeat domain 61 O ankyrin repeat domain-containing protein 61 20121201 -9606 100310848 LOC100310848 - - - 18 18p11.3 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100310849 LOC100310849 - - - 7 7p15 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100310850 LOC100310850 - - - 3 3q21 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100310851 LOC100310851 - - - 3 3q21 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100310852 LOC100310852 - - - 12 12p13 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100310853 LOC100310853 - - - 7 7q21 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100310854 LOC100310854 - - - 11 11q13 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100310855 LOC100310855 - - - 11 11q13 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100310856 LOC100310856 - - - 8 8p23 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100310857 LOC100310857 - - - 8 8p23 small nuclear ribonucleoprotein polypeptide C pseudogene pseudo - - - - 20121230 -9606 100310869 IGKV2OR2-7D - - HGNC:37489|IMGT/GENE-DB:IGKV2/OR2-7D 2 2q11.2 immunoglobulin kappa variable 2/OR2-7D (pseudogene) pseudo IGKV2OR2-7D immunoglobulin kappa variable 2/OR2-7D (pseudogene) O - 20121230 -9606 100312774 VN1R56P - - HGNC:37376 11 11p15.4 vomeronasal 1 receptor 56 pseudogene pseudo VN1R56P vomeronasal 1 receptor 56 pseudogene O - 20121230 -9606 100312775 VN1R20P - - HGNC:37335 3 3p25.1 vomeronasal 1 receptor 20 pseudogene pseudo VN1R20P vomeronasal 1 receptor 20 pseudogene O - 20121230 -9606 100312781 VN1R24P - - HGNC:37344 7 7p11.2 vomeronasal 1 receptor 24 pseudogene pseudo VN1R24P vomeronasal 1 receptor 24 pseudogene O - 20121230 -9606 100312782 VN1R25P - - HGNC:37345 7 7p11.2 vomeronasal 1 receptor 25 pseudogene pseudo VN1R25P vomeronasal 1 receptor 25 pseudogene O - 20121230 -9606 100312783 VN1R26P - - HGNC:37346 7 7p11.2 vomeronasal 1 receptor 26 pseudogene pseudo VN1R26P vomeronasal 1 receptor 26 pseudogene O - 20121230 -9606 100312784 VN1R27P - - HGNC:37347 7 7p11.2 vomeronasal 1 receptor 27 pseudogene pseudo VN1R27P vomeronasal 1 receptor 27 pseudogene O - 20121230 -9606 100312785 VN1R28P - - HGNC:37348 7 7p11.2 vomeronasal 1 receptor 28 pseudogene pseudo VN1R28P vomeronasal 1 receptor 28 pseudogene O - 20121230 -9606 100312786 VN1R29P - - HGNC:37349 7 7p11.2 vomeronasal 1 receptor 29 pseudogene pseudo VN1R29P vomeronasal 1 receptor 29 pseudogene O - 20121230 -9606 100312787 VN1R31P - - HGNC:37351 7 7q11.21 vomeronasal 1 receptor 31 pseudogene pseudo VN1R31P vomeronasal 1 receptor 31 pseudogene O - 20121230 -9606 100312788 VN1R32P - - HGNC:37352 7 7q11.21 vomeronasal 1 receptor 32 pseudogene pseudo VN1R32P vomeronasal 1 receptor 32 pseudogene O - 20121230 -9606 100312789 VN1R35P - - HGNC:37355 7 7q11.21 vomeronasal 1 receptor 35 pseudogene pseudo VN1R35P vomeronasal 1 receptor 35 pseudogene O - 20121230 -9606 100312790 VN1R36P - - HGNC:37356 7 7q11.21 vomeronasal 1 receptor 36 pseudogene pseudo VN1R36P vomeronasal 1 receptor 36 pseudogene O - 20121230 -9606 100312791 VN1R39P - - HGNC:37359 7 7q11.21 vomeronasal 1 receptor 39 pseudogene pseudo VN1R39P vomeronasal 1 receptor 39 pseudogene O - 20121230 -9606 100312792 VN1R40P - - HGNC:37360 7 7q11.21 vomeronasal 1 receptor 40 pseudogene pseudo VN1R40P vomeronasal 1 receptor 40 pseudogene O - 20121230 -9606 100312793 VN1R41P - - HGNC:37361 7 7q11.21 vomeronasal 1 receptor 41 pseudogene pseudo VN1R41P vomeronasal 1 receptor 41 pseudogene O - 20121230 -9606 100312794 VN1R42P - - HGNC:37362 7 7q11.21 vomeronasal 1 receptor 42 pseudogene pseudo VN1R42P vomeronasal 1 receptor 42 pseudogene O - 20121230 -9606 100312795 VN1R43P - - HGNC:37363 7 7q11.21 vomeronasal 1 receptor 43 pseudogene pseudo VN1R43P vomeronasal 1 receptor 43 pseudogene O - 20121230 -9606 100312796 VN1R45P - - HGNC:37365 8 8p11.21 vomeronasal 1 receptor 45 pseudogene pseudo VN1R45P vomeronasal 1 receptor 45 pseudogene O - 20121230 -9606 100312797 VN1R47P - - HGNC:37367 9 9p13.3 vomeronasal 1 receptor 47 pseudogene pseudo VN1R47P vomeronasal 1 receptor 47 pseudogene O - 20121230 -9606 100312798 VN1R48P - - HGNC:37368 9 9p13.1 vomeronasal 1 receptor 48 pseudogene pseudo VN1R48P vomeronasal 1 receptor 48 pseudogene O - 20121230 -9606 100312799 VN1R49P - - HGNC:37369 9 9q13 vomeronasal 1 receptor 49 pseudogene pseudo VN1R49P vomeronasal 1 receptor 49 pseudogene O - 20121230 -9606 100312800 VN1R50P - - HGNC:37370 9 9q21.11 vomeronasal 1 receptor 50 pseudogene pseudo VN1R50P vomeronasal 1 receptor 50 pseudogene O - 20121230 -9606 100312801 VN1R51P - - HGNC:37371 9 9q22.33 vomeronasal 1 receptor 51 pseudogene pseudo VN1R51P vomeronasal 1 receptor 51 pseudogene O - 20121230 -9606 100312802 VN1R52P - - HGNC:37372 9 9q22.33 vomeronasal 1 receptor 52 pseudogene pseudo VN1R52P vomeronasal 1 receptor 52 pseudogene O - 20121230 -9606 100312803 VN1R110P - - HGNC:37438 X Xp11.23 vomeronasal 1 receptor 110 pseudogene pseudo VN1R110P vomeronasal 1 receptor 110 pseudogene O - 20121230 -9606 100312804 VN1R15P - - HGNC:37327 1 1q42.13 vomeronasal 1 receptor 15 pseudogene pseudo VN1R15P vomeronasal 1 receptor 15 pseudogene O - 20121230 -9606 100312805 VN1R16P - - HGNC:37330 1 1q44 vomeronasal 1 receptor 16 pseudogene pseudo VN1R16P vomeronasal 1 receptor 16 pseudogene O - 20121230 -9606 100312806 VN1R53P - - HGNC:37373 10 10p11.21 vomeronasal 1 receptor 53 pseudogene pseudo VN1R53P vomeronasal 1 receptor 53 pseudogene O - 20121230 -9606 100312807 VN1R54P - - HGNC:37374 10 10q11.21 vomeronasal 1 receptor 54 pseudogene pseudo VN1R54P vomeronasal 1 receptor 54 pseudogene O - 20121230 -9606 100312808 VN1R55P - - HGNC:37375 10 10q23.31 vomeronasal 1 receptor 55 pseudogene pseudo VN1R55P vomeronasal 1 receptor 55 pseudogene O - 20121230 -9606 100312809 VN1R57P - - HGNC:37377 12 12q21.31 vomeronasal 1 receptor 57 pseudogene pseudo VN1R57P vomeronasal 1 receptor 57 pseudogene O - 20121230 -9606 100312810 VN1R58P - - HGNC:37378 13 13q11 vomeronasal 1 receptor 58 pseudogene pseudo VN1R58P vomeronasal 1 receptor 58 pseudogene O - 20121230 -9606 100312811 VN1R59P - - HGNC:37379 14 14q23.1 vomeronasal 1 receptor 59 pseudogene pseudo VN1R59P vomeronasal 1 receptor 59 pseudogene O - 20121230 -9606 100312812 VN1R60P - - HGNC:37380 15 15q11.2 vomeronasal 1 receptor 60 pseudogene pseudo VN1R60P vomeronasal 1 receptor 60 pseudogene O - 20121209 -9606 100312813 VN1R61P - - HGNC:37381 15 15q11.2 vomeronasal 1 receptor 61 pseudogene pseudo VN1R61P vomeronasal 1 receptor 61 pseudogene O - 20121230 -9606 100312814 VN1R62P - - HGNC:37382 15 15q11.2 vomeronasal 1 receptor 62 pseudogene pseudo VN1R62P vomeronasal 1 receptor 62 pseudogene O - 20121230 -9606 100312815 VN1R63P - - HGNC:37383 15 15q11.2 vomeronasal 1 receptor 63 pseudogene pseudo VN1R63P vomeronasal 1 receptor 63 pseudogene O - 20121230 -9606 100312816 VN1R69P - - HGNC:37390 16 16p11.2 vomeronasal 1 receptor 69 pseudogene pseudo VN1R69P vomeronasal 1 receptor 69 pseudogene O - 20121230 -9606 100312817 VN1R71P - - HGNC:37392 17 17q11.1 vomeronasal 1 receptor 71 pseudogene pseudo VN1R71P vomeronasal 1 receptor 71 pseudogene O - 20121230 -9606 100312818 VN1R73P - - HGNC:37394 18 18p11.21 vomeronasal 1 receptor 73 pseudogene pseudo VN1R73P vomeronasal 1 receptor 73 pseudogene O - 20121230 -9606 100312819 VN1R74P - - HGNC:37395 18 18p11.21 vomeronasal 1 receptor 74 pseudogene pseudo VN1R74P vomeronasal 1 receptor 74 pseudogene O - 20121230 -9606 100312820 VN1R75P - - HGNC:37396 18 18p11.21 vomeronasal 1 receptor 75 pseudogene pseudo VN1R75P vomeronasal 1 receptor 75 pseudogene O - 20121230 -9606 100312821 VN1R76P - - HGNC:37397 18 18q21.2 vomeronasal 1 receptor 76 pseudogene pseudo VN1R76P vomeronasal 1 receptor 76 pseudogene O - 20121230 -9606 100312822 VN1R77P - - HGNC:37398 19 19p12 vomeronasal 1 receptor 77 pseudogene pseudo VN1R77P vomeronasal 1 receptor 77 pseudogene O - 20121230 -9606 100312823 VN1R78P - - HGNC:37399 19 19p12 vomeronasal 1 receptor 78 pseudogene pseudo VN1R78P vomeronasal 1 receptor 78 pseudogene O - 20121230 -9606 100312824 VN1R79P - - HGNC:37400 19 19p12 vomeronasal 1 receptor 79 pseudogene pseudo VN1R79P vomeronasal 1 receptor 79 pseudogene O - 20121230 -9606 100312825 VN1R80P - - HGNC:37329 19 19p12 vomeronasal 1 receptor 80 pseudogene pseudo VN1R80P vomeronasal 1 receptor 80 pseudogene O - 20121230 -9606 100312826 VN1R81P - - HGNC:37401 19 19p12 vomeronasal 1 receptor 81 pseudogene pseudo VN1R81P vomeronasal 1 receptor 81 pseudogene O - 20121230 -9606 100312827 VN1R82P - - HGNC:37402 19 19p12 vomeronasal 1 receptor 82 pseudogene pseudo VN1R82P vomeronasal 1 receptor 82 pseudogene O - 20121230 -9606 100312828 VN1R83P - - HGNC:37403 19 19p12 vomeronasal 1 receptor 83 pseudogene pseudo VN1R83P vomeronasal 1 receptor 83 pseudogene O - 20121230 -9606 100312829 VN1R84P - - HGNC:37404 19 19p12 vomeronasal 1 receptor 84 pseudogene pseudo VN1R84P vomeronasal 1 receptor 84 pseudogene O - 20121230 -9606 100312830 VN1R85P - - HGNC:37405 19 19p12 vomeronasal 1 receptor 85 pseudogene pseudo VN1R85P vomeronasal 1 receptor 85 pseudogene O - 20121230 -9606 100312831 VN1R86P - - HGNC:37406 19 19p12 vomeronasal 1 receptor 86 pseudogene pseudo VN1R86P vomeronasal 1 receptor 86 pseudogene O - 20121230 -9606 100312832 VN1R87P - - HGNC:37407 19 19p12 vomeronasal 1 receptor 87 pseudogene pseudo VN1R87P vomeronasal 1 receptor 87 pseudogene O - 20121230 -9606 100312833 VN1R88P - - HGNC:37408 19 19p12 vomeronasal 1 receptor 88 pseudogene pseudo VN1R88P vomeronasal 1 receptor 88 pseudogene O - 20121230 -9606 100312834 VN1R89P - - HGNC:37409 19 19p12 vomeronasal 1 receptor 89 pseudogene pseudo VN1R89P vomeronasal 1 receptor 89 pseudogene O - 20121230 -9606 100312835 VN1R90P - - HGNC:37410 19 19p12 vomeronasal 1 receptor 90 pseudogene pseudo VN1R90P vomeronasal 1 receptor 90 pseudogene O - 20121230 -9606 100312836 VN1R91P - - HGNC:37411 19 19p12 vomeronasal 1 receptor 91 pseudogene pseudo VN1R91P vomeronasal 1 receptor 91 pseudogene O - 20121230 -9606 100312837 VN1R92P - - HGNC:37412 19 19p12 vomeronasal 1 receptor 92 pseudogene pseudo VN1R92P vomeronasal 1 receptor 92 pseudogene O - 20121230 -9606 100312838 VN1R93P - - HGNC:37413 19 19p12 vomeronasal 1 receptor 93 pseudogene pseudo VN1R93P vomeronasal 1 receptor 93 pseudogene O - 20121230 -9606 100312839 VN1R94P - - HGNC:37414 19 19p12 vomeronasal 1 receptor 94 pseudogene pseudo VN1R94P vomeronasal 1 receptor 94 pseudogene O - 20121230 -9606 100312840 VN1R97P - - HGNC:37417 19 19q13.33 vomeronasal 1 receptor 97 pseudogene pseudo VN1R97P vomeronasal 1 receptor 97 pseudogene O - 20121230 -9606 100312841 VN1R98P - - HGNC:37418 19 19q13.41 vomeronasal 1 receptor 98 pseudogene pseudo VN1R98P vomeronasal 1 receptor 98 pseudogene O - 20121230 -9606 100312842 VN1R99P - - HGNC:37419 19 19q13.41 vomeronasal 1 receptor 99 pseudogene pseudo VN1R99P vomeronasal 1 receptor 99 pseudogene O - 20121230 -9606 100312843 VN1R19P - - HGNC:37328 2 2q21.2 vomeronasal 1 receptor 19 pseudogene pseudo VN1R19P vomeronasal 1 receptor 19 pseudogene O - 20121230 -9606 100312844 VN1R22P - - HGNC:37337 4 4q25 vomeronasal 1 receptor 22 pseudogene pseudo VN1R22P vomeronasal 1 receptor 22 pseudogene O - 20121230 -9606 100312845 VN1R23P - - HGNC:37338 4 4q25 vomeronasal 1 receptor 23 pseudogene pseudo VN1R23P vomeronasal 1 receptor 23 pseudogene O - 20121230 -9606 100312846 VN1R100P - - HGNC:37420 19 19q13.41 vomeronasal 1 receptor 100 pseudogene pseudo VN1R100P vomeronasal 1 receptor 100 pseudogene O - 20121230 -9606 100312847 VN1R102P - - HGNC:37425 19 19q13.42 vomeronasal 1 receptor 102 pseudogene pseudo VN1R102P vomeronasal 1 receptor 102 pseudogene O - 20121230 -9606 100312848 VN1R106P hCG_2008275 FKSG41 HGNC:37429 19 19q13.42 vomeronasal 1 receptor 106 pseudogene pseudo VN1R106P vomeronasal 1 receptor 106 pseudogene O - 20121230 -9606 100312849 VN1R107P - - HGNC:37431 19 19q13.43 vomeronasal 1 receptor 107 pseudogene pseudo VN1R107P vomeronasal 1 receptor 107 pseudogene O - 20121230 -9606 100312850 VN1R108P - - HGNC:37432 20 20p11.1 vomeronasal 1 receptor 108 pseudogene pseudo VN1R108P vomeronasal 1 receptor 108 pseudogene O - 20121230 -9606 100312851 VN1R109P - - HGNC:37434 21 21q11.2 vomeronasal 1 receptor 109 pseudogene pseudo VN1R109P vomeronasal 1 receptor 109 pseudogene O - 20121230 -9606 100312852 VN1R111P - - HGNC:37332 13 - vomeronasal 1 receptor 111 pseudogene pseudo VN1R111P vomeronasal 1 receptor 111 pseudogene O - 20121230 -9606 100312853 VN1R72P - - HGNC:37393 17 - vomeronasal 1 receptor 72 pseudogene pseudo VN1R72P vomeronasal 1 receptor 72 pseudogene O - 20121209 -9606 100312854 VN1R112P - - HGNC:37437 22 - vomeronasal 1 receptor 112 pseudogene pseudo VN1R112P vomeronasal 1 receptor 112 pseudogene O - 20121230 -9606 100312855 VN1R44P - - HGNC:37364 7 - vomeronasal 1 receptor 44 pseudogene pseudo VN1R44P vomeronasal 1 receptor 44 pseudogene O - 20121230 -9606 100312950 SCA31 - - HGNC:35432|MIM:117210 16 16q22 spinocerebellar ataxia 31 unknown SCA31 spinocerebellar ataxia 31 O - 20120622 -9606 100312951 NPCA2 - - MIM:161550 6 6p21.3 Nasopharyngeal carcinoma, susceptibility to, 2 unknown - - - - 20120622 -9606 100312952 PVOP1 - - MIM:176780 1 1q31 Pelvic organ prolapse, susceptibility to, 1 unknown - - - - 20120622 -9606 100312954 GRD1 - - MIM:275000 14 14q31 Graves disease, susceptiblity to, 1 unknown - - - - 20120622 -9606 100312955 PVOP2 - - MIM:613088 9 9q21 Pelvic organ prolapse, susceptibility to, 2 unknown - - - - 20120622 -9606 100312957 RNU1-6 - - HGNC:37499 1 1q21.2 RNA, U1 small nuclear 6 snRNA RNU1-6 RNA, U1 small nuclear 6 O - 20121230 -9606 100312985 IGKV1OR15-118 - IGKV1/OR-118|IGKV1/OR15-118|IGKV1OR118|IGKVP2 HGNC:5765|IMGT/GENE-DB:IGKV1/OR15-118 15 - immunoglobulin kappa variable 1/OR15-118 (pseudogene) pseudo IGKV1OR15-118 immunoglobulin kappa variable 1/OR15-118 (pseudogene) O - 20120318 -9606 100313532 LOC100313532 - - - 17 17p13.2 major facilitator superfamily domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100313769 MIR320B2 - MIR320B-2|MIRN320B2 HGNC:35256|miRBase:MI0003839 1 1q42.11 microRNA 320b-2 miscRNA MIR320B2 microRNA 320b-2 O - 20121230 -9606 100313770 MIR548K - MIRN548K HGNC:35285|miRBase:MI0006354 11 11q13.3 microRNA 548k miscRNA MIR548K microRNA 548k O - 20121230 -9606 100313771 MIR548F2 - MIR548F-2|MIRN548F2|hsa-mir-548f-2 HGNC:35306|miRBase:MI0006375 2 2q34 microRNA 548f-2 miscRNA MIR548F2 microRNA 548f-2 O - 20121230 -9606 100313772 MIR548M - MIRN548M HGNC:35331|miRBase:MI0006400 X Xq21.33 microRNA 548m miscRNA MIR548M microRNA 548m O - 20121230 -9606 100313773 MIR548H2 - MIR548H-2|MIRN548H2 HGNC:35343|miRBase:MI0006412 16 - microRNA 548h-2 miscRNA MIR548H2 microRNA 548h-2 O - 20121230 -9606 100313774 MIR302E - MIRN302E HGNC:35348|miRBase:MI0006417 11 11p15.4 microRNA 302e miscRNA MIR302E microRNA 302e O - 20121230 -9606 100313777 MIR670 - hsa-mir-670 HGNC:37304|miRBase:MI0003933 11 - microRNA 670 miscRNA MIR670 microRNA 670 O - 20121230 -9606 100313778 MIR759 - hsa-mir-759 HGNC:37307|miRBase:MI0004065 13 - microRNA 759 miscRNA MIR759 microRNA 759 O - 20121230 -9606 100313779 MIR2117 - - HGNC:37311|miRBase:MI0010636 17 - microRNA 2117 miscRNA MIR2117 microRNA 2117 O - 20121230 -9606 100313780 MIR2278 - - HGNC:37315|miRBase:MI0011285 9 - microRNA 2278 miscRNA MIR2278 microRNA 2278 O - 20121230 -9606 100313781 MIR718 - hsa-mir-718 HGNC:37317|miRBase:MI0012489 X - microRNA 718 miscRNA MIR718 microRNA 718 O - 20121230 -9606 100313782 PIRC7 - - HGNC:37511 1 - piwi-interacting RNA cluster 7 other PIRC7 piwi-interacting RNA cluster 7 O - 20120318 -9606 100313783 PIRC10 - - HGNC:37514 2 - piwi-interacting RNA cluster 10 other PIRC10 piwi-interacting RNA cluster 10 O - 20120318 -9606 100313784 PIRC14 - - HGNC:37518 3 - piwi-interacting RNA cluster 14 other PIRC14 piwi-interacting RNA cluster 14 O - 20120318 -9606 100313785 PIRC20 - - HGNC:37524 5 - piwi-interacting RNA cluster 20 other PIRC20 piwi-interacting RNA cluster 20 O - 20120318 -9606 100313786 PIRC23 - - HGNC:37527 5 - piwi-interacting RNA cluster 23 other PIRC23 piwi-interacting RNA cluster 23 O - 20120318 -9606 100313787 PIRC31 - - HGNC:37535 7 - piwi-interacting RNA cluster 31 other PIRC31 piwi-interacting RNA cluster 31 O - 20120318 -9606 100313788 PIRC38 - - HGNC:37542 9 - piwi-interacting RNA cluster 38 other PIRC38 piwi-interacting RNA cluster 38 O - 20120318 -9606 100313789 PIRC42 - - HGNC:37546 9 - piwi-interacting RNA cluster 42 other PIRC42 piwi-interacting RNA cluster 42 O - 20120318 -9606 100313790 PIRC48 - - HGNC:37552 10 - piwi-interacting RNA cluster 48 other PIRC48 piwi-interacting RNA cluster 48 O - 20120318 -9606 100313791 PIRC52 - - HGNC:37556 11 - piwi-interacting RNA cluster 52 other PIRC52 piwi-interacting RNA cluster 52 O - 20120318 -9606 100313792 PIRC55 - - HGNC:37559 12 - piwi-interacting RNA cluster 55 other PIRC55 piwi-interacting RNA cluster 55 O - 20120318 -9606 100313793 PIRC63 - - HGNC:37567 15 - piwi-interacting RNA cluster 63 other PIRC63 piwi-interacting RNA cluster 63 O - 20120318 -9606 100313794 PIRC65 - - HGNC:37569 15 - piwi-interacting RNA cluster 65 other PIRC65 piwi-interacting RNA cluster 65 O - 20120318 -9606 100313795 PIRC73 - - HGNC:37577 15 - piwi-interacting RNA cluster 73 other PIRC73 piwi-interacting RNA cluster 73 O - 20120318 -9606 100313796 PIRC76 - - HGNC:37580 15 - piwi-interacting RNA cluster 76 other PIRC76 piwi-interacting RNA cluster 76 O - 20120318 -9606 100313797 PIRC79 - - HGNC:37583 15 - piwi-interacting RNA cluster 79 other PIRC79 piwi-interacting RNA cluster 79 O - 20120318 -9606 100313798 PIRC90 - - HGNC:37594 17 - piwi-interacting RNA cluster 90 other PIRC90 piwi-interacting RNA cluster 90 O - 20120318 -9606 100313799 PIRC94 - - HGNC:37598 17 - piwi-interacting RNA cluster 94 other PIRC94 piwi-interacting RNA cluster 94 O - 20120318 -9606 100313800 PIRC96 - - HGNC:37600 18 - piwi-interacting RNA cluster 96 other PIRC96 piwi-interacting RNA cluster 96 O - 20120318 -9606 100313801 PIRC104 - - HGNC:37608 20 - piwi-interacting RNA cluster 104 other PIRC104 piwi-interacting RNA cluster 104 O - 20120318 -9606 100313802 PIRC107 - - HGNC:37611 22 - piwi-interacting RNA cluster 107 other PIRC107 piwi-interacting RNA cluster 107 O - 20120318 -9606 100313803 PIRC112 - - HGNC:37616 22 - piwi-interacting RNA cluster 112 other PIRC112 piwi-interacting RNA cluster 112 O - 20120318 -9606 100313806 MIR1255B1 - MIR1255B-1|MIRN1255B1 HGNC:35366|miRBase:MI0006435 4 - microRNA 1255b-1 miscRNA MIR1255B1 microRNA 1255b-1 O - 20121230 -9606 100313807 PIRC4 - - HGNC:37508 1 - piwi-interacting RNA cluster 4 other PIRC4 piwi-interacting RNA cluster 4 O - 20120318 -9606 100313808 PIRC12 - - HGNC:37516 3 - piwi-interacting RNA cluster 12 other PIRC12 piwi-interacting RNA cluster 12 O - 20120318 -9606 100313809 PIRC17 - - HGNC:37521 4 - piwi-interacting RNA cluster 17 other PIRC17 piwi-interacting RNA cluster 17 O - 20120318 -9606 100313810 PIRC24 - - HGNC:37528 6 - piwi-interacting RNA cluster 24 other PIRC24 piwi-interacting RNA cluster 24 O - 20120318 -9606 100313811 PIRC32 - - HGNC:37536 7 - piwi-interacting RNA cluster 32 other PIRC32 piwi-interacting RNA cluster 32 O - 20120318 -9606 100313812 PIRC37 - - HGNC:37541 9 - piwi-interacting RNA cluster 37 other PIRC37 piwi-interacting RNA cluster 37 O - 20120318 -9606 100313813 PIRC45 - - HGNC:37549 9 - piwi-interacting RNA cluster 45 other PIRC45 piwi-interacting RNA cluster 45 O - 20120318 -9606 100313814 PIRC50 - - HGNC:37554 11 - piwi-interacting RNA cluster 50 other PIRC50 piwi-interacting RNA cluster 50 O - 20120318 -9606 100313815 PIRC54 - - HGNC:37558 12 - piwi-interacting RNA cluster 54 other PIRC54 piwi-interacting RNA cluster 54 O - 20120318 -9606 100313816 PIRC62 - - HGNC:37566 15 - piwi-interacting RNA cluster 62 other PIRC62 piwi-interacting RNA cluster 62 O - 20120318 -9606 100313817 PIRC67 - - HGNC:37571 15 - piwi-interacting RNA cluster 67 other PIRC67 piwi-interacting RNA cluster 67 O - 20120318 -9606 100313818 PIRC71 - - HGNC:37575 15 - piwi-interacting RNA cluster 71 other PIRC71 piwi-interacting RNA cluster 71 O - 20120318 -9606 100313819 PIRC80 - - HGNC:37584 15 - piwi-interacting RNA cluster 80 other PIRC80 piwi-interacting RNA cluster 80 O - 20120318 -9606 100313820 PIRC84 - - HGNC:37588 16 - piwi-interacting RNA cluster 84 other PIRC84 piwi-interacting RNA cluster 84 O - 20120318 -9606 100313821 PIRC97 - - HGNC:37601 19 - piwi-interacting RNA cluster 97 other PIRC97 piwi-interacting RNA cluster 97 O - 20120318 -9606 100313822 MIR513B - MIRN513B HGNC:33935|miRBase:MI0006648 X Xq27.3 microRNA 513b miscRNA MIR513B microRNA 513b O - 20121230 -9606 100313824 MIR663B - MIRN663B HGNC:35270|miRBase:MI0006336 2 - microRNA 663b miscRNA MIR663B microRNA 663b O - 20121230 -9606 100313829 MIR548O - MIRN548O HGNC:35333|miRBase:MI0006402 7 7q22.1 microRNA 548o miscRNA MIR548O microRNA 548o O - 20121230 -9606 100313830 MIR548H1 - MIR548H-1|MIRN548H1 HGNC:35342|miRBase:MI0006411 14 14q23.2 microRNA 548h-1 miscRNA MIR548H1 microRNA 548h-1 O - 20121230 -9606 100313835 MIR1255B2 - MIR1255B-2|MIRN1255B2|hsa-mir-1255b-2 HGNC:35367|miRBase:MI0006436 1 - microRNA 1255b-2 miscRNA MIR1255B2 microRNA 1255b-2 O - 20121230 -9606 100313837 MIR762 - hsa-mir-762 HGNC:37303|miRBase:MI0003892 16 - microRNA 762 miscRNA MIR762 microRNA 762 O - 20121230 -9606 100313838 MIR764 - hsa-mir-764 HGNC:37306|miRBase:MI0003944 X - microRNA 764 miscRNA MIR764 microRNA 764 O - 20121230 -9606 100313839 MIR2114 - - HGNC:37308|miRBase:MI0010633 X - microRNA 2114 miscRNA MIR2114 microRNA 2114 O - 20121230 -9606 100313840 MIR2115 - - HGNC:37309|miRBase:MI0010634 3 - microRNA 2115 miscRNA MIR2115 microRNA 2115 O - 20121230 -9606 100313841 MIR548Q - - HGNC:37312|miRBase:MI0010637 10 10p13 microRNA 548q miscRNA MIR548Q microRNA 548q O - 20121230 -9606 100313842 MIR2276 - - HGNC:37313|miRBase:MI0011282 13 - microRNA 2276 miscRNA MIR2276 microRNA 2276 O - 20121230 -9606 100313843 MIR711 - hsa-mir-711 HGNC:37316|miRBase:MI0012488 3 - microRNA 711 miscRNA MIR711 microRNA 711 O - 20121230 -9606 100313844 PIRC1 - - HGNC:37505 1 - piwi-interacting RNA cluster 1 other PIRC1 piwi-interacting RNA cluster 1 O - 20120318 -9606 100313845 PIRC5 - - HGNC:37509 1 - piwi-interacting RNA cluster 5 other PIRC5 piwi-interacting RNA cluster 5 O - 20120318 -9606 100313846 PIRC6 - - HGNC:37510 1 - piwi-interacting RNA cluster 6 other PIRC6 piwi-interacting RNA cluster 6 O - 20120318 -9606 100313847 PIRC9 - - HGNC:37513 2 - piwi-interacting RNA cluster 9 other PIRC9 piwi-interacting RNA cluster 9 O - 20120318 -9606 100313848 PIRC15 - - HGNC:37519 3 - piwi-interacting RNA cluster 15 other PIRC15 piwi-interacting RNA cluster 15 O - 20120318 -9606 100313849 PIRC16 - - HGNC:37520 4 - piwi-interacting RNA cluster 16 other PIRC16 piwi-interacting RNA cluster 16 O - 20120318 -9606 100313850 PIRC22 - - HGNC:37526 5 - piwi-interacting RNA cluster 22 other PIRC22 piwi-interacting RNA cluster 22 O - 20120318 -9606 100313851 PIRC25 - - HGNC:37529 6 - piwi-interacting RNA cluster 25 other PIRC25 piwi-interacting RNA cluster 25 O - 20120318 -9606 100313852 PIRC26 - - HGNC:37530 6 - piwi-interacting RNA cluster 26 other PIRC26 piwi-interacting RNA cluster 26 O - 20120318 -9606 100313853 PIRC30 - - HGNC:37534 7 - piwi-interacting RNA cluster 30 other PIRC30 piwi-interacting RNA cluster 30 O - 20120318 -9606 100313854 PIRC33 - - HGNC:37537 7 - piwi-interacting RNA cluster 33 other PIRC33 piwi-interacting RNA cluster 33 O - 20120318 -9606 100313855 PIRC35 - - HGNC:37539 8 - piwi-interacting RNA cluster 35 other PIRC35 piwi-interacting RNA cluster 35 O - 20120318 -9606 100313856 PIRC39 - - HGNC:37543 9 - piwi-interacting RNA cluster 39 other PIRC39 piwi-interacting RNA cluster 39 O - 20120318 -9606 100313857 PIRC43 - - HGNC:37547 9 - piwi-interacting RNA cluster 43 other PIRC43 piwi-interacting RNA cluster 43 O - 20120318 -9606 100313858 PIRC46 - - HGNC:37550 9 - piwi-interacting RNA cluster 46 other PIRC46 piwi-interacting RNA cluster 46 O - 20120318 -9606 100313859 PIRC47 - - HGNC:37551 9 - piwi-interacting RNA cluster 47 other PIRC47 piwi-interacting RNA cluster 47 O - 20120318 -9606 100313860 PIRC51 - - HGNC:37555 11 - piwi-interacting RNA cluster 51 other PIRC51 piwi-interacting RNA cluster 51 O - 20120318 -9606 100313861 PIRC53 - - HGNC:37557 12 - piwi-interacting RNA cluster 53 other PIRC53 piwi-interacting RNA cluster 53 O - 20120318 -9606 100313862 PIRC56 - - HGNC:37560 12 - piwi-interacting RNA cluster 56 other PIRC56 piwi-interacting RNA cluster 56 O - 20120318 -9606 100313863 PIRC60 - - HGNC:37564 14 - piwi-interacting RNA cluster 60 other PIRC60 piwi-interacting RNA cluster 60 O - 20120318 -9606 100313864 PIRC64 - - HGNC:37568 15 - piwi-interacting RNA cluster 64 other PIRC64 piwi-interacting RNA cluster 64 O - 20120318 -9606 100313865 PIRC66 - - HGNC:37570 15 - piwi-interacting RNA cluster 66 other PIRC66 piwi-interacting RNA cluster 66 O - 20120318 -9606 100313866 PIRC70 - - HGNC:37574 15 - piwi-interacting RNA cluster 70 other PIRC70 piwi-interacting RNA cluster 70 O - 20120318 -9606 100313867 PIRC72 - - HGNC:37576 15 - piwi-interacting RNA cluster 72 other PIRC72 piwi-interacting RNA cluster 72 O - 20120318 -9606 100313868 PIRC77 - - HGNC:37581 15 - piwi-interacting RNA cluster 77 other PIRC77 piwi-interacting RNA cluster 77 O - 20120318 -9606 100313869 PIRC78 - - HGNC:37582 15 - piwi-interacting RNA cluster 78 other PIRC78 piwi-interacting RNA cluster 78 O - 20120318 -9606 100313870 PIRC81 - - HGNC:37585 15 - piwi-interacting RNA cluster 81 other PIRC81 piwi-interacting RNA cluster 81 O - 20120318 -9606 100313871 PIRC85 - - HGNC:37589 16 - piwi-interacting RNA cluster 85 other PIRC85 piwi-interacting RNA cluster 85 O - 20120318 -9606 100313872 PIRC87 - - HGNC:37591 16 - piwi-interacting RNA cluster 87 other PIRC87 piwi-interacting RNA cluster 87 O - 20120318 -9606 100313873 PIRC89 - - HGNC:37593 16 - piwi-interacting RNA cluster 89 other PIRC89 piwi-interacting RNA cluster 89 O - 20120318 -9606 100313874 PIRC98 - - HGNC:37602 19 - piwi-interacting RNA cluster 98 other PIRC98 piwi-interacting RNA cluster 98 O - 20120318 -9606 100313875 PIRC99 - - HGNC:37603 19 - piwi-interacting RNA cluster 99 other PIRC99 piwi-interacting RNA cluster 99 O - 20120318 -9606 100313876 PIRC102 - - HGNC:37606 19 - piwi-interacting RNA cluster 102 other PIRC102 piwi-interacting RNA cluster 102 O - 20120318 -9606 100313877 PIRC106 - - HGNC:37610 22 - piwi-interacting RNA cluster 106 other PIRC106 piwi-interacting RNA cluster 106 O - 20120318 -9606 100313878 PIRC108 - - HGNC:37612 22 - piwi-interacting RNA cluster 108 other PIRC108 piwi-interacting RNA cluster 108 O - 20120318 -9606 100313879 PIRC110 - - HGNC:37614 22 - piwi-interacting RNA cluster 110 other PIRC110 piwi-interacting RNA cluster 110 O - 20120318 -9606 100313880 PIRC113 - - HGNC:37617 X - piwi-interacting RNA cluster 113 other PIRC113 piwi-interacting RNA cluster 113 O - 20120318 -9606 100313881 PIRC114 - - HGNC:37618 X - piwi-interacting RNA cluster 114 other PIRC114 piwi-interacting RNA cluster 114 O - 20120318 -9606 100313884 MIR548H4 - MIR548H-4|MIRN548H4|hsa-mir-548h-4 HGNC:35345|miRBase:MI0006414 8 - microRNA 548h-4 miscRNA MIR548H4 microRNA 548h-4 O - 20121230 -9606 100313886 MIR2116 - - HGNC:37310|miRBase:MI0010635 15 - microRNA 2116 miscRNA MIR2116 microRNA 2116 O - 20121230 -9606 100313887 MIR2277 - - HGNC:37314|miRBase:MI0011284 5 - microRNA 2277 miscRNA MIR2277 microRNA 2277 O - 20121230 -9606 100313888 PIRC101 - - HGNC:37605 19 - piwi-interacting RNA cluster 101 other PIRC101 piwi-interacting RNA cluster 101 O - 20120318 -9606 100313890 PIRC34 - - HGNC:37538 7 - piwi-interacting RNA cluster 34 other PIRC34 piwi-interacting RNA cluster 34 O - 20120318 -9606 100313891 PIRC83 - - HGNC:37587 16 - piwi-interacting RNA cluster 83 other PIRC83 piwi-interacting RNA cluster 83 O - 20120318 -9606 100313892 MIR761 - hsa-mir-761 HGNC:37305|miRBase:MI0003941 1 - microRNA 761 miscRNA MIR761 microRNA 761 O - 20121230 -9606 100313893 PIRC28 - - HGNC:37532 6 - piwi-interacting RNA cluster 28 other PIRC28 piwi-interacting RNA cluster 28 O - 20120318 -9606 100313894 PIRC88 - - HGNC:37592 16 - piwi-interacting RNA cluster 88 other PIRC88 piwi-interacting RNA cluster 88 O - 20120318 -9606 100313895 MIR548F4 - MIR548F-4|MIRN548F4|hsa-mir-548f-4 HGNC:35308|miRBase:MI0006377 7 7q35 microRNA 548f-4 miscRNA MIR548F4 microRNA 548f-4 O - 20121230 -9606 100313896 MIR320D1 - MIR320D-1|MIRN320D1 HGNC:35386|miRBase:MI0008190 13 13q14.11 microRNA 320d-1 miscRNA MIR320D1 microRNA 320d-1 O - 20121230 -9606 100313897 PIRC11 - - HGNC:37515 3 - piwi-interacting RNA cluster 11 other PIRC11 piwi-interacting RNA cluster 11 O - 20120318 -9606 100313898 PIRC40 - - HGNC:37544 9 - piwi-interacting RNA cluster 40 other PIRC40 piwi-interacting RNA cluster 40 O - 20120318 -9606 100313899 PIRC61 - - HGNC:37565 15 - piwi-interacting RNA cluster 61 other PIRC61 piwi-interacting RNA cluster 61 O - 20120318 -9606 100313900 PIRC91 - - HGNC:37595 17 - piwi-interacting RNA cluster 91 other PIRC91 piwi-interacting RNA cluster 91 O - 20120318 -9606 100313901 PIRC103 - - HGNC:37607 20 - piwi-interacting RNA cluster 103 other PIRC103 piwi-interacting RNA cluster 103 O - 20120318 -9606 100313905 PIRC3 - - HGNC:37507 1 - piwi-interacting RNA cluster 3 other PIRC3 piwi-interacting RNA cluster 3 O - 20120318 -9606 100313906 PIRC18 - - HGNC:37522 4 - piwi-interacting RNA cluster 18 other PIRC18 piwi-interacting RNA cluster 18 O - 20120318 -9606 100313907 PIRC27 - - HGNC:37531 6 - piwi-interacting RNA cluster 27 other PIRC27 piwi-interacting RNA cluster 27 O - 20120318 -9606 100313908 PIRC44 - - HGNC:37548 9 - piwi-interacting RNA cluster 44 other PIRC44 piwi-interacting RNA cluster 44 O - 20120318 -9606 100313909 PIRC59 - - HGNC:37563 14 - piwi-interacting RNA cluster 59 other PIRC59 piwi-interacting RNA cluster 59 O - 20120318 -9606 100313910 PIRC69 - - HGNC:37573 15 - piwi-interacting RNA cluster 69 other PIRC69 piwi-interacting RNA cluster 69 O - 20120318 -9606 100313911 PIRC86 - - HGNC:37590 16 - piwi-interacting RNA cluster 86 other PIRC86 piwi-interacting RNA cluster 86 O - 20120318 -9606 100313912 PIRC100 - - HGNC:37604 19 - piwi-interacting RNA cluster 100 other PIRC100 piwi-interacting RNA cluster 100 O - 20120318 -9606 100313913 PIRC109 - - HGNC:37613 22 - piwi-interacting RNA cluster 109 other PIRC109 piwi-interacting RNA cluster 109 O - 20120318 -9606 100313914 MIR548J - MIRN548J|hsa-mir-548j HGNC:35276|miRBase:MI0006345 22 22q12.1 microRNA 548j miscRNA MIR548J microRNA 548j O - 20121230 -9606 100313915 PIRC8 - - HGNC:37512 1 - piwi-interacting RNA cluster 8 other PIRC8 piwi-interacting RNA cluster 8 O - 20120318 -9606 100313916 PIRC21 - - HGNC:37525 5 - piwi-interacting RNA cluster 21 other PIRC21 piwi-interacting RNA cluster 21 O - 20120318 -9606 100313917 PIRC41 - - HGNC:37545 9 - piwi-interacting RNA cluster 41 other PIRC41 piwi-interacting RNA cluster 41 O - 20120318 -9606 100313918 PIRC58 - - HGNC:37562 13 - piwi-interacting RNA cluster 58 other PIRC58 piwi-interacting RNA cluster 58 O - 20120318 -9606 100313919 PIRC75 - - HGNC:37579 15 - piwi-interacting RNA cluster 75 other PIRC75 piwi-interacting RNA cluster 75 O - 20120318 -9606 100313920 PIRC92 - - HGNC:37596 17 - piwi-interacting RNA cluster 92 other PIRC92 piwi-interacting RNA cluster 92 O - 20120318 -9606 100313921 MIR548E - MIRN548E|hsa-mir-548e HGNC:35275|miRBase:MI0006344 10 10q25.2 microRNA 548e miscRNA MIR548E microRNA 548e O - 20121230 -9606 100313923 MIR449C - - HGNC:37302|miRBase:MI0003823 5 - microRNA 449c miscRNA MIR449C microRNA 449c O - 20121230 -9606 100313924 PIRC2 - - HGNC:37506 1 - piwi-interacting RNA cluster 2 other PIRC2 piwi-interacting RNA cluster 2 O - 20120318 -9606 100313925 PIRC13 - - HGNC:37517 3 - piwi-interacting RNA cluster 13 other PIRC13 piwi-interacting RNA cluster 13 O - 20120318 -9606 100313926 PIRC19 - - HGNC:37523 4 - piwi-interacting RNA cluster 19 other PIRC19 piwi-interacting RNA cluster 19 O - 20120318 -9606 100313927 PIRC29 - - HGNC:37533 7 - piwi-interacting RNA cluster 29 other PIRC29 piwi-interacting RNA cluster 29 O - 20120318 -9606 100313928 PIRC36 - - HGNC:37540 9 - piwi-interacting RNA cluster 36 other PIRC36 piwi-interacting RNA cluster 36 O - 20120318 -9606 100313929 PIRC49 - - HGNC:37553 10 - piwi-interacting RNA cluster 49 other PIRC49 piwi-interacting RNA cluster 49 O - 20120318 -9606 100313930 PIRC57 - - HGNC:37561 12 - piwi-interacting RNA cluster 57 other PIRC57 piwi-interacting RNA cluster 57 O - 20120318 -9606 100313931 PIRC68 - - HGNC:37572 15 - piwi-interacting RNA cluster 68 other PIRC68 piwi-interacting RNA cluster 68 O - 20120318 -9606 100313932 PIRC74 - - HGNC:37578 15 - piwi-interacting RNA cluster 74 other PIRC74 piwi-interacting RNA cluster 74 O - 20120318 -9606 100313933 PIRC82 - - HGNC:37586 16 - piwi-interacting RNA cluster 82 other PIRC82 piwi-interacting RNA cluster 82 O - 20120318 -9606 100313934 PIRC93 - - HGNC:37597 17 - piwi-interacting RNA cluster 93 other PIRC93 piwi-interacting RNA cluster 93 O - 20120318 -9606 100313935 PIRC95 - - HGNC:37599 17 - piwi-interacting RNA cluster 95 other PIRC95 piwi-interacting RNA cluster 95 O - 20120318 -9606 100313936 PIRC105 - - HGNC:37609 21 - piwi-interacting RNA cluster 105 other PIRC105 piwi-interacting RNA cluster 105 O - 20120318 -9606 100313937 PIRC111 - - HGNC:37615 22 - piwi-interacting RNA cluster 111 other PIRC111 piwi-interacting RNA cluster 111 O - 20120318 -9606 100313938 MIR548G - MIRN548G|hsa-mir-548g HGNC:35326|miRBase:MI0006395 4 - microRNA 548g miscRNA MIR548G microRNA 548g O - 20121230 -9606 100313942 LOC100313942 - - - 14 - transmembrane protein 92 pseudogene pseudo - - - - 20121230 -9606 100313948 BRV2 - - MIM:613106 22 22q12 Vertigo, benign recurrent, 2 unknown - - - - 20120622 -9606 100313962 RFKP1 - - HGNC:39181 1 1q riboflavin kinase pseudogene 1 pseudo RFKP1 riboflavin kinase pseudogene 1 O - 20121230 -9606 100313968 LOC100313968 - - - 22 22q riboflavin kinase pseudogene pseudo - - - - 20121230 -9606 100316847 GLM8 - - MIM:613033 5 5p15.33 Glioma susceptibility 8 unknown - - - - 20120622 -9606 100316867 ARF4P5 - - HGNC:37629 1 1p31.1 ADP-ribosylation factor 4 pseudogene 5 pseudo ARF4P5 ADP-ribosylation factor 4 pseudogene 5 O - 20121230 -9606 100316868 HOTTIP - HOXA-AS6|HOXA13-AS1|NCRNA00213 HGNC:37461|MIM:614060 7 7p15.2 HOXA distal transcript antisense RNA miscRNA HOTTIP HOXA distal transcript antisense RNA O - 20121230 -9606 100316904 SAP25 - - HGNC:41908|Ensembl:ENSG00000205307 7 7q22.1 Sin3A-associated protein, 25kDa protein-coding SAP25 Sin3A-associated protein, 25kDa O 25 kDa Sin3-associated polypeptide|Sin3 corepressor complex subunit SAP25|histone deacetylase complex subunit SAP25|sin3-associated polypeptide, 25kDa|sin3A-binding protein 25 20121230 -9606 100322878 SLEB14 - - MIM:613145 1 1q21-q23 Systemic lupus erythematosus, susceptiblity to, 14 unknown - - - - 20120622 -9606 100322879 SPG45 - - HGNC:35431|MIM:613162 10 10q24.3-q25.1 spastic paraplegia 45 (autosomal recessive) unknown SPG45 spastic paraplegia 45 (autosomal recessive) O - 20120622 -9606 100327036 PPP2R2DP1 - - HGNC:44544 3 3p protein phosphatase 2, regulatory subunit B, delta pseudogene 1 pseudo PPP2R2DP1 protein phosphatase 2, regulatory subunit B, delta pseudogene 1 O - 20121230 -9606 100328982 LOC100328982 - - - 1 - eukaryotic translation initiation factor 2, subunit 3 gamma, 52kDa pseudogene pseudo - - - - 20121230 -9606 100329108 GCSHP5 - - HGNC:44195 1 - glycine cleavage system protein H pseudogene 5 pseudo GCSHP5 glycine cleavage system protein H pseudogene 5 O - 20121230 -9606 100329109 GCSHP3 - - HGNC:43929 2 - glycine cleavage system protein H (aminomethyl carrier) pseudogene 3 pseudo GCSHP3 glycine cleavage system protein H (aminomethyl carrier) pseudogene 3 O - 20121230 -9606 100329129 LOC100329129 - - - 5 5q35.3 proteolipid protein 2 (colonic epithelium-enriched) pseudogene pseudo - - - - 20121230 -9606 100329135 TRPC5OS hCG_1798305 TRPC5-AS1 HGNC:40593 X - TRPC5 opposite strand protein-coding TRPC5OS TRPC5 opposite strand O TRPC5 antisense RNA 1 (non-protein coding)|uncharacterized protein LOC100288395 20121230 -9606 100329167 AAA1 - AAA MIM:100070 19 19q13 aortic aneurysm, familial abdominal 1 unknown - - - - 20120630 -9606 100329168 LVG2 - - MIM:606460 6 6q21 longevity 2 unknown - - - - 20120622 -9606 100329169 CRCS9 - - MIM:612590 16 16q22.1 colorectal cancer, susceptibility to, 9 unknown - - - - 20120719 -9606 100329170 SCZD13 - - MIM:613025 15 15q13 schizophrenia 13 unknown - - - - 20120622 -9606 100335030 LOC100335030 - - - 12 12q13.12 FGFR1 oncogene partner 2 pseudogene pseudo - - - - 20121230 -9606 100337589 FMO7P - - HGNC:32208 1 1q24.1 flavin containing monooxygenase 7 pseudogene pseudo FMO7P flavin containing monooxygenase 7 pseudogene O - 20121230 -9606 100337590 FMO11P - - HGNC:32212 1 1q24.1 flavin containing monooxygenase 11, pseudogene pseudo FMO11P flavin containing monooxygenase 11, pseudogene O - 20121230 -9606 100337591 SNORA70F - U70F HGNC:34358 2 - small nucleolar RNA, H/ACA box 70F snoRNA SNORA70F small nucleolar RNA, H/ACA box 70F O - 20121230 -9606 100337616 CSN1S2BP - CSN1S2B HGNC:20227 4 4q13.3 casein alpha s2-like B, pseudogene pseudo CSN1S2BP casein alpha s2-like B, pseudogene O - 20121230 -9606 100337622 DDX11L4 - - HGNC:37105 6 6p25.3 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 4 pseudo DDX11L4 DEAD/H (Asp-Glu-Ala-Asp/His) box helicase 11 like 4 O - 20120720 -9606 100337646 CT45B1P - - HGNC:33580 5 5q21 cancer/testis antigen family 45, member B1 pseudogene pseudo CT45B1P cancer/testis antigen family 45, member B1 pseudogene O - 20121230 -9606 100359393 SCA30 - - HGNC:33445|MIM:613371 4 4q34.3-q35.1 spinocerebellar ataxia 30 unknown SCA30 spinocerebellar ataxia 30 O - 20120318 -9606 100359394 LINC00102 - NCRNA00102 HGNC:30470 X|Y Xp22.33 and Yp11.31 long intergenic non-protein coding RNA 102 miscRNA LINC00102 long intergenic non-protein coding RNA 102 O - 20121230 -9606 100359395 DFNA58 - - HGNC:34029 2 2p21-p12 deafness, autosomal dominant 58 unknown DFNA58 deafness, autosomal dominant 58 O - 20120318 -9606 100359396 HSPD1P11 - HSPD1-11P HGNC:35142 5 5q15 heat shock 60kDa protein 1 (chaperonin) pseudogene 11 pseudo HSPD1P11 heat shock 60kDa protein 1 (chaperonin) pseudogene 11 O - 20121230 -9606 100359397 HSPD1P18 - HSPD1-1P HGNC:35136 5 5q31.1 heat shock 60kDa protein 1 (chaperonin) pseudogene 18 pseudo HSPD1P18 heat shock 60kDa protein 1 (chaperonin) pseudogene 18 O - 20121230 -9606 100359399 DFNB85 - - HGNC:37053|MIM:613392 17 17p12-q11.2 deafness, autosomal recessive 85 unknown DFNB85 deafness, autosomal recessive 85 O - 20120622 -9606 100359400 DFNB83 - - HGNC:37051|MIM:613685 9 9p23-p21.2 deafness, autosomal recessive 83 unknown DFNB83 deafness, autosomal recessive 83 O - 20120622 -9606 100359401 MYP17 - MYP4 HGNC:37047|MIM:608367 7 7p15 myopia 17 unknown MYP17 myopia 17 O - 20120622 -9606 100359402 SPG41 - - HGNC:34382|MIM:613364 11 11p14.1-p11.2 spastic paraplegia 41 (autosomal dominant) unknown SPG41 spastic paraplegia 41 (autosomal dominant) O - 20120318 -9606 100359403 PARK16 - - HGNC:37450|MIM:613164 1 1q32 Parkinson disease 16 (susceptibility) unknown PARK16 Parkinson disease 16 (susceptibility) O - 20120622 -9606 100359406 MYP18 - - HGNC:37048|MIM:255500 14 14q22.1-q24.2 myopia 18 (high grade, autosomal recessive) unknown MYP18 myopia 18 (high grade, autosomal recessive) O - 20120622 -9606 100359407 MYP14 - - HGNC:35439|MIM:610320 1 1p36 myopia 14 unknown MYP14 myopia 14 O - 20120622 -9606 100379132 SNORA70G - U70G HGNC:34359 12 12q14 small nucleolar RNA, H/ACA box 70G snoRNA SNORA70G small nucleolar RNA, H/ACA box 70G O - 20121230 -9606 100379141 SNORA70D - U70D HGNC:34356 16 16q22.3 small nucleolar RNA, H/ACA box 70D snoRNA SNORA70D small nucleolar RNA, H/ACA box 70D O - 20121230 -9606 100379142 NCLP2 - bA85L21.1 HGNC:35473 X Xq26.3 nucleolin pseudogene 2 pseudo NCLP2 nucleolin pseudogene 2 O - 20121230 -9606 100379174 MACROD2-AS1 RP11-318C17.1 NCRNA00186 HGNC:37193 20 20p12.1 MACROD2 antisense RNA 1 miscRNA MACROD2-AS1 MACROD2 antisense RNA 1 O - 20121230 -9606 100379198 ECT - BECTS MIM:117100 11 11p13 centralopathic epilepsy unknown - - - - 20120622 -9606 100379199 HRM2 - - MIM:139450 1 1q21.3 hair, curly unknown - - - - 20120913 -9606 100379200 SLEB15 - - MIM:300809 X Xq28 Systemic lupus erthematosus, susceptibility to, 15 unknown - - - - 20120622 -9606 100379201 SPAX3 - ARSAL MIM:611390 2 2q33-q34 Ataxia, spastic, 3, autosomal recessive unknown - - - - 20120622 -9606 100379202 DUP5P13 - C5DUPp13 MIM:613174 5 5p13 Chromosome 5p13 duplication syndrome unknown - - - - 20120622 -9606 100379203 DUP17P13.3 - C17DUPp13.3 MIM:613215 17 17p13.3 Chromosome 17p13.3 duplication syndrome unknown - - - - 20120622 -9606 100379215 QTV - - MIM:610141 1 1q23.3 QT interval, variation in unknown - - - - 20120622 -9606 100379216 FGQTL2 - BWQTL1 MIM:613219 7 7p15-p13 Fasting plasma glucose level QTL2 unknown - - - - 20120622 -9606 100379217 FGQTL3 - - MIM:613233 11 11q21-q22 Fasting plasma glucose level QTL3 unknown - - - - 20120622 -9606 100379218 SPDA3 - - MIM:613238 2 2q36.1-q36.3 Spondylarthropathy, susceptibility to, 3 unknown - - - - 20120622 -9606 100379220 TMED11P - - HGNC:35401 4 4p16.3 transmembrane emp24 protein transport domain containing 11, pseudogene pseudo TMED11P transmembrane emp24 protein transport domain containing 11, pseudogene O - 20121230 -9606 100379224 LOC100379224 - - - 19 19q13.2 uncharacterized LOC100379224 miscRNA - - - - 20121230 -9606 100379236 LOC100379236 - - - Y - patatin-like phospholipase domain containing 4 pseudogene 1 pseudo - - - - 20121230 -9606 100379249 BOK-AS1 - BOK-AS|BOKAS|NAToB|NCRNA00151 HGNC:35125 2 2q37.3 BOK antisense RNA 1 miscRNA BOK-AS1 BOK antisense RNA 1 O - 20121230 -9606 100379250 SNORA70E - U70E HGNC:34357 11 - small nucleolar RNA, H/ACA box 70E snoRNA SNORA70E small nucleolar RNA, H/ACA box 70E O - 20121230 -9606 100379251 NPPA-AS1 - NPPA-AS|NPPAAS HGNC:37635 1 1p36.21 NPPA antisense RNA 1 miscRNA NPPA-AS1 NPPA antisense RNA 1 O - 20121230 -9606 100379287 RNY4P6 - - HGNC:34055 11 11q23.3 RNA, Ro-associated Y4 pseudogene 6 pseudo RNY4P6 RNA, Ro-associated Y4 pseudogene 6 O - 20121230 -9606 100379288 RNY4P11 - - HGNC:34061 20 20p11.23 RNA, Ro-associated Y4 pseudogene 11 pseudo RNY4P11 RNA, Ro-associated Y4 pseudogene 11 O - 20121021 -9606 100379290 LOC100379290 - - - 2 2p13 transmembrane and coiled-coil domain family 1 pseudogene pseudo - - - - 20121230 -9606 100379291 RNY4P15 - - HGNC:34065 2 - RNA, Ro-associated Y4 pseudogene 15 pseudo RNY4P15 RNA, Ro-associated Y4 pseudogene 15 O - 20121021 -9606 100379295 RNY4P8 - - HGNC:34057 17 17q21.2 RNA, Ro-associated Y4 pseudogene 8 pseudo RNY4P8 RNA, Ro-associated Y4 pseudogene 8 O - 20121230 -9606 100379296 RNY4P13 - - HGNC:34063 17 17q11.2 RNA, Ro-associated Y4 pseudogene 13 pseudo RNY4P13 RNA, Ro-associated Y4 pseudogene 13 O - 20121230 -9606 100379297 RNY4P4 - - HGNC:34050 3 3q22.3 RNA, Ro-associated Y4 pseudogene 4 pseudo RNY4P4 RNA, Ro-associated Y4 pseudogene 4 O - 20121230 -9606 100379298 RNY4P18 - - HGNC:34068 9 9q31.3 RNA, Ro-associated Y4 pseudogene 18 pseudo RNY4P18 RNA, Ro-associated Y4 pseudogene 18 O - 20121230 -9606 100379299 RNY4P5 - - HGNC:34052 8 8q24.13 RNA, Ro-associated Y4 pseudogene 5 pseudo RNY4P5 RNA, Ro-associated Y4 pseudogene 5 O - 20121230 -9606 100379300 RNY4P9 - - HGNC:34058 13 13q14.3 RNA, Ro-associated Y4 pseudogene 9 pseudo RNY4P9 RNA, Ro-associated Y4 pseudogene 9 O - 20121021 -9606 100379323 ERVW-2 - ERVWE2|NTrenv HGNC:37653 X Xq22.3 endogenous retrovirus group W, member 2 unknown ERVW-2 endogenous retrovirus group W, member 2 O - 20121017 -9606 100379329 RNY4P12 - - HGNC:34062 11 11q23.3 RNA, Ro-associated Y4 pseudogene 12 pseudo RNY4P12 RNA, Ro-associated Y4 pseudogene 12 O - 20120720 -9606 100379345 MIR181A2HG - - HGNC:37188 9 9q33.3 MIR181A2 host gene (non-protein coding) miscRNA MIR181A2HG MIR181A2 host gene (non-protein coding) O - 20121230 -9606 100379378 RNY4P20 - - HGNC:34070 6 6q25.1 RNA, Ro-associated Y4 pseudogene 20 pseudo RNY4P20 RNA, Ro-associated Y4 pseudogene 20 O - 20121230 -9606 100379564 RNY4P17 - - HGNC:34067 4 4q32.3 RNA, Ro-associated Y4 pseudogene 17 pseudo RNY4P17 RNA, Ro-associated Y4 pseudogene 17 O - 20121230 -9606 100379571 BACE1-AS - BACE1-AS1|BACE1AS|FJ573250|NCRNA00177 HGNC:37125|MIM:614263 11 11q23.3 BACE1 antisense RNA miscRNA BACE1-AS BACE1 antisense RNA O - 20121230 -9606 100379584 RNY4P14 - - HGNC:34064 13 13q13.3 RNA, Ro-associated Y4 pseudogene 14 pseudo RNY4P14 RNA, Ro-associated Y4 pseudogene 14 O - 20121230 -9606 100379592 RNY4P10 - - HGNC:34060 6 6p21.3 RNA, Ro-associated Y4 pseudogene 10 pseudo RNY4P10 RNA, Ro-associated Y4 pseudogene 10 O - 20121230 -9606 100379623 LARP1P1 - HCG10P|dJ221C16.7 HGNC:23183 6 6p22 La ribonucleoprotein domain family, member 1 pseudogene 1 pseudo LARP1P1 La ribonucleoprotein domain family, member 1 pseudogene 1 O - 20121230 -9606 100379658 RNY5P5 - - HGNC:34086 6 6p22.2 RNA, Ro-associated Y5 pseudogene 5 pseudo RNY5P5 RNA, Ro-associated Y5 pseudogene 5 O - 20121230 -9606 100379661 GRIK1-AS2 - C21orf41|NCRNA00258 HGNC:1282 21 21q22.11 GRIK1 antisense RNA 2 miscRNA GRIK1-AS2 GRIK1 antisense RNA 2 O - 20121230 -9606 100379663 RNY5P6 - - HGNC:34087 8 8p11.21 RNA, Ro-associated Y5 pseudogene 6 pseudo RNY5P6 RNA, Ro-associated Y5 pseudogene 6 O - 20121230 -9606 100379664 RNY5P3 - - HGNC:34084 3 3q26.2 RNA, Ro-associated Y5 pseudogene 3 pseudo RNY5P3 RNA, Ro-associated Y5 pseudogene 3 O - 20121230 -9606 100379666 RNY5P1 - - HGNC:34082 1 1p34.3 RNA, Ro-associated Y5 pseudogene 1 pseudo RNY5P1 RNA, Ro-associated Y5 pseudogene 1 O - 20121230 -9606 100379667 NEK2P2 - - HGNC:37816 22 22q11.1 NEK2 pseudogene 2 pseudo NEK2P2 NEK2 pseudogene 2 O - 20121230 -9606 100380271 RNY5P4 - - HGNC:34085 4 4q28.2 RNA, Ro-associated Y5 pseudogene 4 pseudo RNY5P4 RNA, Ro-associated Y5 pseudogene 4 O - 20121230 -9606 100380272 NDUFB1P2 - - HGNC:37815 1 1q41 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 1 pseudogene 2 pseudo NDUFB1P2 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 1 pseudogene 2 O - 20121230 -9606 100380873 FECD3 - FCD2 MIM:613267 18 18q21.2-q21.3 Corneal dystrophy, Fuchs endothelial, 3 unknown - - - - 20120622 -9606 100380874 FECD5 - FCD3 MIM:613269 5 5q33.1-q35.2 Corneal dystrophy, Fuchs endothelial, 5 unknown - - - - 20120622 -9606 100380875 FECD7 - FCD4 MIM:613271 9 9p24.1-p22.1 Corneal dystrophy, Fuchs endothelial, 7 unknown - - - - 20120622 -9606 100380876 FLD1 - - MIM:613282 22 22q13 Fatty liver disease 1, susceptiblity to unknown - - - - 20120622 -9606 100380878 RNY5P8 - - HGNC:34089 13 13q33.1 RNA, Ro-associated Y5 pseudogene 8 pseudo RNY5P8 RNA, Ro-associated Y5 pseudogene 8 O - 20121230 -9606 100380945 ZNF848P - - HGNC:34387 17 - zinc finger protein 848, pseudogene pseudo ZNF848P zinc finger protein 848, pseudogene O - 20121230 -9606 100381178 TMPRSS11CP - - HGNC:31934 4 - transmembrane protease, serine 11C, pseudogene pseudo TMPRSS11CP transmembrane protease, serine 11C, pseudogene O - 20121230 -9606 100381202 NEK2P4 - - HGNC:37818 2 2q21.1 NEK2 pseudogene 4 pseudo NEK2P4 NEK2 pseudogene 4 O - 20121230 -9606 100381203 GLUD1P2 - GLUDP2 HGNC:4337 10 10q11.2 glutamate dehydrogenase 1 pseudogene 2 pseudo GLUD1P2 glutamate dehydrogenase 1 pseudogene 2 O - 20121209 -9606 100381204 HCHGQ1 - - MIM:609319 6 6q23 Hematocrit/hemoglobin quantitative trait locus 1 unknown - - - - 20120622 -9606 100381205 HCHGQ2 - - MIM:609320 9 9q Hematocrit/hemoglobin quantitative trait locus 2 unknown - - - - 20120622 -9606 100381206 HCHGQ3 - - MIM:613284 22 22q12-q13 Hematocrit/hemoglobin quantitative trait locus 3 unknown - - - - 20120622 -9606 100381207 CIHL - - MIM:613290 6 6p22.3 hearing loss, cisplatin-induced, susceptibility to unknown - - - - 20120622 -9606 100381208 RNY5P2 - - HGNC:34083 2 2q33.1 RNA, Ro-associated Y5 pseudogene 2 pseudo RNY5P2 RNA, Ro-associated Y5 pseudogene 2 O - 20120720 -9606 100381210 CAMPD1 - - MIM:114200 3 3q11.2-q13.12 Camptodactyly 1 unknown - - - - 20120622 -9606 100381211 ARCODS - - MIM:602483 - - Ariculocondylar syndrome unknown - - - - 20120909 -9606 100381215 DYNLT3P2 - - HGNC:37081 2 - dynein, light chain, Tctex-type 3 pseudogene 2 pseudo DYNLT3P2 dynein, light chain, Tctex-type 3 pseudogene 2 O - 20121230 -9606 100381270 ZBED6 - MGR HGNC:33273|MIM:613512|Ensembl:ENSG00000257315|Vega:OTTHUMG00000170422 1 1q32.1 zinc finger, BED-type containing 6 protein-coding ZBED6 zinc finger, BED-type containing 6 O zinc finger BED domain-containing protein 6 20121230 -9606 100384884 IGHV1OR15-5 - IGHV1OR155 HGNC:5567|IMGT/GENE-DB:IGHV1/OR15-5 15 - immunoglobulin heavy variable 1/OR15-5 (non-functional) pseudo IGHV1OR15-5 immunoglobulin heavy variable 1/OR15-5 (non-functional) O - 20121230 -9606 100384885 LOC100384885 - - - 2 2q36.1 related RAS viral (r-ras) oncogene homolog 2 pseudogene pseudo - - - - 20121230 -9606 100415893 DUPXQ28 - CXq28 MIM:300815 X Xq28 Chromosome Xq28 duplication syndrome unknown - - - - 20120622 -9606 100415894 GLM5 - - MIM:613030 9 9p21.3 Glioma susceptibility 5 unknown - - - - 20120622 -9606 100415895 GLM6 - - MIM:613031 20 20q13.33 Glioma susceptibility 6 unknown - - - - 20120622 -9606 100415896 ASRT8 - - MIM:613207 9 9q33 Asthma-related traits, susceptibility to, 8 unknown - - - - 20120622 -9606 100415903 HWE1 - - MIM:613339 10 10q21.3-q22.3 Epilepsy, hot water, 1 unknown - - - - 20120622 -9606 100415904 HWE2 - - MIM:613340 4 4q24-q28 Epilepsy, hot water, 2 unknown - - - - 20120622 -9606 100415941 DEL17Q23.1Q23.2 - C17DELq23.1q23.2 MIM:613355 17 17q23.1-q23.2 Chromosome 17q23.1-q23.2 deletion syndrome unknown - - - - 20120622 -9606 100415942 DEL2P21 - C2DELp21 MIM:606407 2 2p21 Hypotonia-cystinuria syndrome unknown - - - - 20120622 -9606 100415943 MGR9 - - MIM:609670 11 11q24 Migraine with aura, susceptibility to, 9 unknown - - - - 20120622 -9606 100418484 LOC100418484 - - - - - KAT8 regulatory NSL complex subunit 1 pseudogene pseudo - - - - 20120318 -9606 100418485 LOC100418485 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100418486 LOC100418486 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100418487 LOC100418487 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100418488 LOC100418488 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100418489 LOC100418489 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100418490 LOC100418490 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100418491 LOC100418491 - - - - - thymopoietin pseudogene pseudo - - - - 20120318 -9606 100418492 LOC100418492 - - - - - thymopoietin pseudogene pseudo - - - - 20120318 -9606 100418493 LOC100418493 - - - - - thymopoietin pseudogene pseudo - - - - 20120318 -9606 100418494 LOC100418494 - - - - - thymopoietin pseudogene pseudo - - - - 20120318 -9606 100418495 LOC100418495 - - - - - thymopoietin pseudogene pseudo - - - - 20120318 -9606 100418496 LOC100418496 - - - - - fibrosin-like 1 pseudogene pseudo - - - - 20120318 -9606 100418497 LOC100418497 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418498 LOC100418498 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418499 LOC100418499 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418500 LOC100418500 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418501 LOC100418501 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418502 LOC100418502 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418503 LOC100418503 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418504 LOC100418504 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418505 LOC100418505 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418506 LOC100418506 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418507 LOC100418507 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418508 LOC100418508 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418509 LOC100418509 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418510 LOC100418510 - - - - - MAS1 oncogene-like pseudogene pseudo - - - - 20120318 -9606 100418511 LOC100418511 - - - - - ribosomal protein SA pseudogene pseudo - - - - 20120318 -9606 100418512 LOC100418512 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100418513 LOC100418513 - - - - - lysophospholipase II pseudogene pseudo - - - - 20120318 -9606 100418514 LOC100418514 - - - - - ribosomal protein SA pseudogene pseudo - - - - 20120318 -9606 100418515 LOC100418515 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100418516 LOC100418516 - - - - - lysophospholipase II pseudogene pseudo - - - - 20120318 -9606 100418517 LOC100418517 - - - - - ribosomal protein SA pseudogene pseudo - - - - 20120318 -9606 100418518 LOC100418518 - - - - - ribosomal protein SA pseudogene pseudo - - - - 20120318 -9606 100418519 LOC100418519 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100418520 LOC100418520 - - - - - lysophospholipase II pseudogene pseudo - - - - 20120318 -9606 100418521 LOC100418521 - - - - - ribosomal protein SA pseudogene pseudo - - - - 20120318 -9606 100418522 LOC100418522 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100418523 LOC100418523 - - - - - lysophospholipase II pseudogene pseudo - - - - 20120318 -9606 100418524 LOC100418524 - - - - - ribosomal protein SA pseudogene pseudo - - - - 20120318 -9606 100418525 LOC100418525 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100418526 LOC100418526 - - - - - ribosomal protein SA pseudogene pseudo - - - - 20120318 -9606 100418527 LOC100418527 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100418528 LOC100418528 - - - - - ribosomal protein L7a pseudogene pseudo - - - - 20120318 -9606 100418529 LOC100418529 - - - - - ribosomal protein L13 pseudogene pseudo - - - - 20120318 -9606 100418530 LOC100418530 - - - - - ribosomal protein L15 pseudogene pseudo - - - - 20120318 -9606 100418531 LOC100418531 - - - - - ribosomal protein L7a pseudogene pseudo - - - - 20120318 -9606 100418532 LOC100418532 - - - - - ribosomal protein L13 pseudogene pseudo - - - - 20120318 -9606 100418533 LOC100418533 - - - - - ribosomal protein L15 pseudogene pseudo - - - - 20120318 -9606 100418534 LOC100418534 - - - - - ribosomal protein L7a pseudogene pseudo - - - - 20120318 -9606 100418535 LOC100418535 - - - - - ribosomal protein L15 pseudogene pseudo - - - - 20120318 -9606 100418536 LOC100418536 - - - - - ribosomal protein L7a pseudogene pseudo - - - - 20120318 -9606 100418537 LOC100418537 - - - - - ribosomal protein L13 pseudogene pseudo - - - - 20120318 -9606 100418538 LOC100418538 - - - - - ribosomal protein L15 pseudogene pseudo - - - - 20120318 -9606 100418539 LOC100418539 - - - - - ribosomal protein L7a pseudogene pseudo - - - - 20120318 -9606 100418540 LOC100418540 - - - - - ribosomal protein L15 pseudogene pseudo - - - - 20120318 -9606 100418541 LOC100418541 - - - - - ribosomal protein L7a pseudogene pseudo - - - - 20120318 -9606 100418542 LOC100418542 - - - - - ribosomal protein L13 pseudogene pseudo - - - - 20120318 -9606 100418543 LOC100418543 - - - - - ribosomal protein L15 pseudogene pseudo - - - - 20120318 -9606 100418544 LOC100418544 - - - - - ribosomal protein L7a pseudogene pseudo - - - - 20120318 -9606 100418545 LOC100418545 - - - - - ribosomal protein L15 pseudogene pseudo - - - - 20120318 -9606 100418546 LOC100418546 - - - - - zinc finger protein 70 pseudogene pseudo - - - - 20120318 -9606 100418547 LOC100418547 - - - - - zinc finger protein 93 pseudogene pseudo - - - - 20120318 -9606 100418548 LOC100418548 - - - - - zinc finger protein 70 pseudogene pseudo - - - - 20120318 -9606 100418549 LOC100418549 - - - - - zinc finger protein 93 pseudogene pseudo - - - - 20120318 -9606 100418550 LOC100418550 - - - - - zinc finger protein 93 pseudogene pseudo - - - - 20120318 -9606 100418551 LOC100418551 - - - - - zinc finger protein 70 pseudogene pseudo - - - - 20120318 -9606 100418552 LOC100418552 - - - - - zinc finger protein 93 pseudogene pseudo - - - - 20120318 -9606 100418553 LOC100418553 - - - - - zinc finger protein 70 pseudogene pseudo - - - - 20120318 -9606 100418554 LOC100418554 - - - - - zinc finger protein 93 pseudogene pseudo - - - - 20120318 -9606 100418555 LOC100418555 - - - - - zinc finger protein 70 pseudogene pseudo - - - - 20120318 -9606 100418556 LOC100418556 - - - - - zinc finger protein 70 pseudogene pseudo - - - - 20120318 -9606 100418558 LOC100418558 - - - - - dihydrofolate reductase pseudogene pseudo - - - - 20120318 -9606 100418559 LOC100418559 - - - - - dihydrofolate reductase pseudogene pseudo - - - - 20120318 -9606 100418560 LOC100418560 - - - - - dihydrofolate reductase pseudogene pseudo - - - - 20120318 -9606 100418561 LOC100418561 - - - - - ADP-ribosylation factor 3 pseudogene pseudo - - - - 20120318 -9606 100418562 LOC100418562 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100418563 LOC100418563 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100418564 LOC100418564 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100418565 LOC100418565 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100418566 LOC100418566 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100418567 LOC100418567 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100418571 LOC100418571 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100418572 LOC100418572 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100418573 LOC100418573 - - - - - dihydrofolate reductase-like 1 pseudogene pseudo - - - - 20120318 -9606 100418574 LOC100418574 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100418575 LOC100418575 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100418576 LOC100418576 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100418577 LOC100418577 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100418578 LOC100418578 - - - - - RAN, member RAS oncogene family pseudogene pseudo - - - - 20120318 -9606 100418579 LOC100418579 - - - - - RAN, member RAS oncogene family pseudogene pseudo - - - - 20120318 -9606 100418580 LOC100418580 - - - - - RAN, member RAS oncogene family pseudogene pseudo - - - - 20120318 -9606 100418581 LOC100418581 - - - - - RAN, member RAS oncogene family pseudogene pseudo - - - - 20120318 -9606 100418582 LOC100418582 - - - - - RAN, member RAS oncogene family pseudogene pseudo - - - - 20120318 -9606 100418583 LOC100418583 - - - - - mucin 4, cell surface associated pseudogene pseudo - - - - 20120318 -9606 100418584 LOC100418584 - - - - - mucin 4, cell surface associated pseudogene pseudo - - - - 20120318 -9606 100418585 LOC100418585 - - - - - mucin 4, cell surface associated pseudogene pseudo - - - - 20120318 -9606 100418586 LOC100418586 - - - - - N-ethylmaleimide-sensitive factor pseudogene pseudo - - - - 20120318 -9606 100418587 LOC100418587 - - - - - myosin, light chain 12B, regulatory pseudogene pseudo - - - - 20120318 -9606 100418588 LOC100418588 - - - - - myosin, light chain 12B, regulatory pseudogene pseudo - - - - 20120318 -9606 100418589 LOC100418589 - - - - - myosin, light chain 12B, regulatory pseudogene pseudo - - - - 20120318 -9606 100418590 LOC100418590 - - - - - myosin, light chain 12B, regulatory pseudogene pseudo - - - - 20120318 -9606 100418591 LOC100418591 - - - - - tigger transposable element derived 1 pseudogene pseudo - - - - 20120318 -9606 100418592 LOC100418592 - - - - - DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene pseudo - - - - 20120318 -9606 100418593 LOC100418593 - - - - - DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene pseudo - - - - 20120318 -9606 100418594 LOC100418594 - - - - - DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene pseudo - - - - 20120318 -9606 100418595 LOC100418595 - - - - - DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene pseudo - - - - 20120318 -9606 100418596 LOC100418596 - - - - - DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene pseudo - - - - 20120318 -9606 100418597 LOC100418597 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418598 LOC100418598 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418599 LOC100418599 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418600 LOC100418600 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418601 LOC100418601 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418602 LOC100418602 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418603 LOC100418603 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418604 LOC100418604 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418605 LOC100418605 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418606 LOC100418606 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418607 LOC100418607 - - - - - MHC class I polypeptide-related sequence B pseudogene pseudo - - - - 20120318 -9606 100418608 LOC100418608 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100418609 LOC100418609 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100418610 LOC100418610 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100418611 LOC100418611 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100418612 LOC100418612 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100418613 LOC100418613 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100418614 LOC100418614 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100418615 LOC100418615 - - - - - family with sequence similarity 8, member A1 pseudogene pseudo - - - - 20120318 -9606 100418616 LOC100418616 - - - - - family with sequence similarity 8, member A1 pseudogene pseudo - - - - 20120318 -9606 100418617 LOC100418617 - - - - - major histocompatibility complex, class I, B pseudogene pseudo - - - - 20120318 -9606 100418618 LOC100418618 - - - - - family with sequence similarity 8, member A1 pseudogene pseudo - - - - 20120318 -9606 100418619 LOC100418619 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100418620 LOC100418620 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100418621 LOC100418621 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100418622 LOC100418622 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100418623 LOC100418623 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100418624 LOC100418624 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100418625 LOC100418625 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100418626 LOC100418626 - - - - - succinate-CoA ligase, ADP-forming, beta subunit pseudogene pseudo - - - - 20120318 -9606 100418627 LOC100418627 - - - - - succinate-CoA ligase, ADP-forming, beta subunit pseudogene pseudo - - - - 20120318 -9606 100418628 LOC100418628 - - - - - succinate-CoA ligase, ADP-forming, beta subunit pseudogene pseudo - - - - 20120318 -9606 100418629 LOC100418629 - - - - - succinate-CoA ligase, ADP-forming, beta subunit pseudogene pseudo - - - - 20120318 -9606 100418630 LOC100418630 - - - - - succinate-CoA ligase, ADP-forming, beta subunit pseudogene pseudo - - - - 20120318 -9606 100418631 LOC100418631 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418632 LOC100418632 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418633 LOC100418633 - - - - - olfactory receptor, family 2, subfamily B, member 6 pseudogene pseudo - - - - 20120318 -9606 100418634 LOC100418634 - - - - - olfactory receptor, family 2, subfamily G, member 6 pseudogene pseudo - - - - 20120318 -9606 100418635 LOC100418635 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418636 LOC100418636 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418637 LOC100418637 - - - - - olfactory receptor, family 2, subfamily J, member 3 pseudogene pseudo - - - - 20120318 -9606 100418638 LOC100418638 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418639 LOC100418639 - - - - - olfactory receptor, family 2, subfamily Y, member 1 pseudogene pseudo - - - - 20120318 -9606 100418640 LOC100418640 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418641 LOC100418641 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418642 LOC100418642 - - - - - olfactory receptor, family 2, subfamily B, member 6 pseudogene pseudo - - - - 20120318 -9606 100418643 LOC100418643 - - - - - olfactory receptor, family 2, subfamily G, member 6 pseudogene pseudo - - - - 20120318 -9606 100418644 LOC100418644 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418645 LOC100418645 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418646 LOC100418646 - - - - - olfactory receptor, family 2, subfamily J, member 3 pseudogene pseudo - - - - 20120318 -9606 100418647 LOC100418647 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418648 LOC100418648 - - - - - olfactory receptor, family 2, subfamily Y, member 1 pseudogene pseudo - - - - 20120318 -9606 100418649 LOC100418649 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418650 LOC100418650 - - - - - olfactory receptor, family 2, subfamily B, member 6 pseudogene pseudo - - - - 20120318 -9606 100418651 LOC100418651 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418652 LOC100418652 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418653 LOC100418653 - - - - - olfactory receptor, family 2, subfamily Y, member 1 pseudogene pseudo - - - - 20120318 -9606 100418654 LOC100418654 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418655 LOC100418655 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418656 LOC100418656 - - - - - olfactory receptor, family 2, subfamily B, member 6 pseudogene pseudo - - - - 20120318 -9606 100418657 LOC100418657 - - - - - olfactory receptor, family 2, subfamily G, member 6 pseudogene pseudo - - - - 20120318 -9606 100418658 LOC100418658 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418659 LOC100418659 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418660 LOC100418660 - - - - - olfactory receptor, family 2, subfamily J, member 3 pseudogene pseudo - - - - 20120318 -9606 100418661 LOC100418661 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418662 LOC100418662 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418663 LOC100418663 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418664 LOC100418664 - - - - - olfactory receptor, family 2, subfamily B, member 6 pseudogene pseudo - - - - 20120318 -9606 100418665 LOC100418665 - - - - - olfactory receptor, family 2, subfamily G, member 6 pseudogene pseudo - - - - 20120318 -9606 100418666 LOC100418666 - - - - - olfactory receptor, family 2, subfamily J, member 3 pseudogene pseudo - - - - 20120318 -9606 100418667 LOC100418667 - - - - - olfactory receptor, family 2, subfamily Y, member 1 pseudogene pseudo - - - - 20120318 -9606 100418668 LOC100418668 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418669 LOC100418669 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418670 LOC100418670 - - - - - olfactory receptor, family 2, subfamily B, member 6 pseudogene pseudo - - - - 20120318 -9606 100418671 LOC100418671 - - - - - olfactory receptor, family 2, subfamily J, member 3 pseudogene pseudo - - - - 20120318 -9606 100418672 LOC100418672 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418673 LOC100418673 - - - - - olfactory receptor, family 2, subfamily Y, member 1 pseudogene pseudo - - - - 20120318 -9606 100418674 LOC100418674 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418675 LOC100418675 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418676 LOC100418676 - - - - - olfactory receptor, family 2, subfamily B, member 6 pseudogene pseudo - - - - 20120318 -9606 100418677 LOC100418677 - - - - - olfactory receptor, family 2, subfamily G, member 6 pseudogene pseudo - - - - 20120318 -9606 100418678 LOC100418678 - - - - - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100418679 LOC100418679 - - - - - olfactory receptor, family 2, subfamily J, member 3 pseudogene pseudo - - - - 20120318 -9606 100418680 LOC100418680 - - - - - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100418681 LOC100418681 - - - - - olfactory receptor, family 2, subfamily Y, member 1 pseudogene pseudo - - - - 20120318 -9606 100418682 LOC100418682 - - - - - protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene pseudo - - - - 20120318 -9606 100418683 LOC100418683 - - - - - protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene pseudo - - - - 20120318 -9606 100418684 LOC100418684 - - - - - protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene pseudo - - - - 20120318 -9606 100418685 LOC100418685 - - - - - mitogen-activated protein kinase 8 interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100418686 LOC100418686 - - - - - mitogen-activated protein kinase 8 interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100418687 LOC100418687 - - - - - mitogen-activated protein kinase 8 interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100418688 LOC100418688 - - - - - N-ethylmaleimide-sensitive factor attachment protein, gamma pseudogene pseudo - - - - 20120318 -9606 100418689 LOC100418689 - - - - - N-ethylmaleimide-sensitive factor attachment protein, gamma pseudogene pseudo - - - - 20120318 -9606 100418690 LOC100418690 - - - - - N-ethylmaleimide-sensitive factor attachment protein, gamma pseudogene pseudo - - - - 20120318 -9606 100418691 LOC100418691 - - - - - N-ethylmaleimide-sensitive factor attachment protein, gamma pseudogene pseudo - - - - 20120318 -9606 100418692 LOC100418692 - - - - - N-ethylmaleimide-sensitive factor attachment protein, gamma pseudogene pseudo - - - - 20120318 -9606 100418693 LOC100418693 - - - - - protein kinase, interferon-inducible double stranded RNA dependent activator pseudogene pseudo - - - - 20120318 -9606 100418694 LOC100418694 - - - - - protein kinase, interferon-inducible double stranded RNA dependent activator pseudogene pseudo - - - - 20120318 -9606 100418696 LOC100418696 - - - 2 - axin 2 pseudogene pseudo - - - - 20121209 -9606 100418699 LOC100418699 - - - 2 - nebulin pseudogene pseudo - - - - 20120606 -9606 100418700 LOC100418700 - - - 4 - plectin pseudogene pseudo - - - - 20121230 -9606 100418701 LOC100418701 - - - 4 - talin 2 pseudogene pseudo - - - - 20121230 -9606 100418703 LOC100418703 - - - X|Y X;Y repetin pseudogene pseudo - - - - 20121209 -9606 100418705 LOC100418705 - - - 9 - KIAA1586 pseudogene pseudo - - - - 20121230 -9606 100418706 LOC100418706 - - - 9 - frataxin pseudogene pseudo - - - - 20121230 -9606 100418707 LOC100418707 - - - 5 - septin 7 pseudogene pseudo - - - - 20121230 -9606 100418708 CLUHP1 - KIAA0664P1 HGNC:38416 Y - clustered mitochondria (cluA/CLU1) homolog pseudogene 1 pseudo CLUHP1 clustered mitochondria (cluA/CLU1) homolog pseudogene 1 O - 20121209 -9606 100418709 CLUHP2 - KIAA0664P2 HGNC:38453 Y - clustered mitochondria (cluA/CLU1) homolog pseudogene 2 pseudo CLUHP2 clustered mitochondria (cluA/CLU1) homolog pseudogene 2 O - 20121209 -9606 100418710 LOC100418710 - - - 4 - KIAA1191 pseudogene pseudo - - - - 20121230 -9606 100418711 CLUHP4 - KIAA0664P4 HGNC:38470 4 - clustered mitochondria (cluA/CLU1) homolog pseudogene 4 pseudo CLUHP4 clustered mitochondria (cluA/CLU1) homolog pseudogene 4 O - 20121209 -9606 100418712 LOC100418712 - - - 3 - KIAA1328 pseudogene pseudo - - - - 20121230 -9606 100418713 LOC100418713 - - - 6 - stomatin pseudogene pseudo - - - - 20121230 -9606 100418714 LOC100418714 - - - 7 - septin 7 pseudogene pseudo - - - - 20121230 -9606 100418715 SEPT7P4 - - HGNC:38039 7 - septin 7 pseudogene 4 pseudo SEPT7P4 septin 7 pseudogene 4 O - 20121230 -9606 100418716 LOC100418716 - - - 7 - KIAA1468 pseudogene pseudo - - - - 20121230 -9606 100418718 SEPT7P5 - - HGNC:38041 7 - septin 7 pseudogene 5 pseudo SEPT7P5 septin 7 pseudogene 5 O - 20121230 -9606 100418719 LOC100418719 - - - 7 - KIAA0664 pseudogene pseudo - - - - 20121230 -9606 100418720 SEPT7P6 - - HGNC:38042 7 - septin 7 pseudogene 6 pseudo SEPT7P6 septin 7 pseudogene 6 O - 20121230 -9606 100418721 LOC100418721 - - - X - formin 2 pseudogene pseudo - - - - 20121230 -9606 100418722 LOC100418722 - - - 1 - KIAA1430 pseudogene pseudo - - - - 20121230 -9606 100418723 LOC100418723 - - - 1 - KIAA1429 pseudogene pseudo - - - - 20121230 -9606 100418724 CCNJP2 - - HGNC:37997 1 - cyclin J pseudogene 2 pseudo CCNJP2 cyclin J pseudogene 2 O - 20121230 -9606 100418727 LOC100418727 - - - 2 - nucleolin pseudogene pseudo - - - - 20121230 -9606 100418728 KRT8P40 - - HGNC:39874 2 - keratin 8 pseudogene 40 pseudo KRT8P40 keratin 8 pseudogene 40 O - 20121230 -9606 100418730 LOC100418730 - - - 12 - T-box 20 pseudogene pseudo - - - - 20121230 -9606 100418731 LOC100418731 - - - 12 - akirin 1 pseudogene pseudo - - - - 20121230 -9606 100418732 LOC100418732 - - - 12 - KIAA1586 pseudogene pseudo - - - - 20121230 -9606 100418733 LOC100418733 - - - 12 - KIAA0664 pseudogene pseudo - - - - 20121230 -9606 100418734 LOC100418734 - - - 12 - KIAA1586 pseudogene pseudo - - - - 20121230 -9606 100418735 SEPT7P8 - - HGNC:38044 19 - septin 7 pseudogene 8 pseudo SEPT7P8 septin 7 pseudogene 8 O - 20121230 -9606 100418736 GOLGA5P1 - - HGNC:43925 5 - golgin A5 pseudogene 1 pseudo GOLGA5P1 golgin A5 pseudogene 1 O - 20121230 -9606 100418737 KRT8P33 - - HGNC:39867 5 - keratin 8 pseudogene 33 pseudo KRT8P33 keratin 8 pseudogene 33 O - 20121230 -9606 100418738 LOC100418738 - - - Y - dynamin 1 pseudogene pseudo - - - - 20121230 -9606 100418739 DNM1P48 - - HGNC:38801 Y - DNM1 pseudogene 48 pseudo DNM1P48 DNM1 pseudogene 48 O - 20121209 -9606 100418740 PPP1R26P1 - KIAA0649P1 HGNC:42015 13 - protein phosphatase 1, regulatory subunit 26 pseudogene 1 pseudo PPP1R26P1 protein phosphatase 1, regulatory subunit 26 pseudogene 1 O - 20121230 -9606 100418742 LOC100418742 - - - 13 - KIAA0664 pseudogene pseudo - - - - 20121230 -9606 100418743 LOC100418743 - - - 4 - cyclin L2 pseudogene pseudo - - - - 20121230 -9606 100418744 KRT8P46 - - HGNC:39880 4 - keratin 8 pseudogene 46 pseudo KRT8P46 keratin 8 pseudogene 46 O - 20121230 -9606 100418745 CLUHP5 - KIAA0664P5 HGNC:38471 10 - clustered mitochondria (cluA/CLU1) homolog pseudogene 5 pseudo CLUHP5 clustered mitochondria (cluA/CLU1) homolog pseudogene 5 O - 20121230 -9606 100418747 KRT8P35 - - HGNC:39869 3 - keratin 8 pseudogene 35 pseudo KRT8P35 keratin 8 pseudogene 35 O - 20121230 -9606 100418748 KRT8P36 - - HGNC:39870 3 - keratin 8 pseudogene 36 pseudo KRT8P36 keratin 8 pseudogene 36 O - 20121230 -9606 100418750 KRT8P42 - - HGNC:39876 6 - keratin 8 pseudogene 42 pseudo KRT8P42 keratin 8 pseudogene 42 O - 20121230 -9606 100418751 GOLGA2P1 - - HGNC:31052 8 8q21.3 golgin A2 pseudogene 1 pseudo GOLGA2P1 golgin A2 pseudogene 1 O - 20121230 -9606 100418753 LOC100418753 - - - 17 - septin 7 pseudogene pseudo - - - - 20121230 -9606 100418754 LOC100418754 - - - 18 - KIAA0664 pseudogene pseudo - - - - 20121230 -9606 100418756 LOC100418756 - - - 16 - KIAA0664 pseudogene pseudo - - - - 20121230 -9606 100418759 LOC100418759 - - - X - myoneurin pseudogene pseudo - - - - 20121230 -9606 100418763 CCNT2P1 - - HGNC:39178 1 - cyclin T2 pseudogene 1 pseudo CCNT2P1 cyclin T2 pseudogene 1 O - 20121230 -9606 100418768 LOC100418768 - - - 14 - ataxin 3 pseudogene pseudo - - - - 20121230 -9606 100418769 KRT18P52 - - HGNC:37888 2 - keratin 18 pseudogene 52 pseudo KRT18P52 keratin 18 pseudogene 52 O - 20121230 -9606 100418770 LOC100418770 - - - 2 - keratin 18 pseudogene pseudo - - - - 20121230 -9606 100418774 PHBP4 - - HGNC:8916 2 2q21 prohibitin pseudogene 4 pseudo PHBP4 prohibitin pseudogene 4 O - 20121230 -9606 100418779 KRT3P1 - - HGNC:40019 12 - keratin 3 pseudogene 1 pseudo KRT3P1 keratin 3 pseudogene 1 O - 20121230 -9606 100418781 KRT8P39 - - HGNC:39873 12 - keratin 8 pseudogene 39 pseudo KRT8P39 keratin 8 pseudogene 39 O - 20121230 -9606 100418792 KRT18P54 - - HGNC:39425 4 - keratin 18 pseudogene 54 pseudo KRT18P54 keratin 18 pseudogene 54 O - 20121230 -9606 100418799 KRT8P38 - - HGNC:39872 10 - keratin 8 pseudogene 38 pseudo KRT8P38 keratin 8 pseudogene 38 O - 20121230 -9606 100418804 PHBP8 - - HGNC:39287 3 - prohibitin pseudogene 8 pseudo PHBP8 prohibitin pseudogene 8 O - 20121230 -9606 100418811 KRT8P34 - - HGNC:39868 17 - keratin 8 pseudogene 34 pseudo KRT8P34 keratin 8 pseudogene 34 O - 20121230 -9606 100418814 LOC100418814 - - - 7 - metadherin pseudogene pseudo - - - - 20121230 -9606 100418815 PHBP10 - - HGNC:39289 X - prohibitin pseudogene 10 pseudo PHBP10 prohibitin pseudogene 10 O - 20121230 -9606 100418819 IPO8P1 - - HGNC:41955 1 - importin 8 pseudogene 1 pseudo IPO8P1 importin 8 pseudogene 1 O - 20121230 -9606 100418820 PHBP12 - - HGNC:39291 1 - prohibitin pseudogene 12 pseudo PHBP12 prohibitin pseudogene 12 O - 20121230 -9606 100418822 LOC100418822 - - - 1 - atrophin 1 pseudogene pseudo - - - - 20121230 -9606 100418828 LOC100418828 - - - 12 - keratin 79 pseudogene pseudo - - - - 20121230 -9606 100418829 LOC100418829 - - - 12 - keratin 18 pseudogene pseudo - - - - 20121230 -9606 100418832 LOC100418832 - - - 19 - metadherin pseudogene pseudo - - - - 20121230 -9606 100418834 LOC100418834 - - - 19 - metadherin pseudogene pseudo - - - - 20121230 -9606 100418835 LOC100418835 - - - 19 - metadherin pseudogene pseudo - - - - 20121230 -9606 100418836 LOC100418836 - - - 19 - metadherin pseudogene pseudo - - - - 20121230 -9606 100418837 PHBP2 - - HGNC:8914 11 11p11.2 prohibitin pseudogene 2 pseudo PHBP2 prohibitin pseudogene 2 O - 20121230 -9606 100418843 PHBP13 - - HGNC:39292 13 - prohibitin pseudogene 13 pseudo PHBP13 prohibitin pseudogene 13 O - 20121230 -9606 100418848 LOC100418848 - - - 15 - calponin 2 pseudogene pseudo - - - - 20121230 -9606 100418861 LOC100418861 - - - 17 - keratin 37 pseudogene pseudo - - - - 20121230 -9606 100418862 LOC100418862 - - - 17 - sperm antigen with calponin homology and coiled-coil domains 1 pseudogene pseudo - - - - 20121230 -9606 100418865 LOC100418865 - - - 17 - keratin 18 pseudogene pseudo - - - - 20121230 -9606 100418868 LOC100418868 - - - 16 - calponin 2 pseudogene pseudo - - - - 20121230 -9606 100418871 LOC100418871 - - - X - cytohesin 1 pseudogene pseudo - - - - 20121230 -9606 100418874 LOC100418874 - - - 1 - cathepsin B pseudogene pseudo - - - - 20121230 -9606 100418877 KRT18P7 - - HGNC:20283 14 14q24.2 keratin 18 pseudogene 7 pseudo KRT18P7 keratin 18 pseudogene 7 O - 20121230 -9606 100418881 NBEAP2 - BCL8D HGNC:40003 2 - neurobeachin pseudogene 2 pseudo NBEAP2 neurobeachin pseudogene 2 O - 20121230 -9606 100418882 LOC100418882 - - - 12 - reticulon 3 pseudogene pseudo - - - - 20121230 -9606 100418883 LOC100418883 - - - 19 - actin, beta pseudogene pseudo - - - - 20121230 -9606 100418884 LOC100418884 - - - 11 - TSPY-like 1 pseudogene pseudo - - - - 20121230 -9606 100418885 LOC100418885 - - - 11 - amphiphysin pseudogene pseudo - - - - 20121230 -9606 100418887 TAGLN2P1 - - HGNC:21739 8 8q23.1 transgelin 2 pseudogene 1 pseudo TAGLN2P1 transgelin 2 pseudogene 1 O - 20121230 -9606 100418888 LOC100418888 - - - 17 - peptidase D pseudogene pseudo - - - - 20121230 -9606 100418889 STX18P1 - - HGNC:43995 17 - syntaxin 18 pseudogene 1 pseudo STX18P1 syntaxin 18 pseudogene 1 O - 20121230 -9606 100418892 GYG2P2 - - HGNC:39713 1 - glycogenin 2 pseudogene 2 pseudo GYG2P2 glycogenin 2 pseudogene 2 O - 20121230 -9606 100418897 NBEAP4 - - HGNC:40009 15 - neurobeachin pseudogene 4 pseudo NBEAP4 neurobeachin pseudogene 4 O - 20121230 -9606 100418898 LOC100418898 - - - 6 - transportin 3 pseudogene pseudo - - - - 20121230 -9606 100418902 LOC100418902 - - - 1 - tubulin, beta class I pseudogene pseudo - - - - 20121230 -9606 100418903 NBEAP5 - - HGNC:40010 14 - neurobeachin pseudogene 5 pseudo NBEAP5 neurobeachin pseudogene 5 O - 20121209 -9606 100418904 NBEAP6 - - HGNC:40011 14 - neurobeachin pseudogene 6 pseudo NBEAP6 neurobeachin pseudogene 6 O - 20121209 -9606 100418905 NBEAP3 - BCL8C HGNC:40004 22 - neurobeachin pseudogene 3 pseudo NBEAP3 neurobeachin pseudogene 3 O - 20121230 -9606 100418906 LOC100418906 - - - 2 - sideroflexin 4 pseudogene pseudo - - - - 20121230 -9606 100418908 LOC100418908 - - - 9 - glutaredoxin 3 pseudogene pseudo - - - - 20121230 -9606 100418910 LOC100418910 - - - 9 - actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 100418919 LOC100418919 - - - 10 - transportin 1 pseudogene pseudo - - - - 20121230 -9606 100418920 LOC100418920 - - - 3 - actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 100418921 ACTG1P12 - - HGNC:44496 3 - actin, gamma 1 pseudogene 12 pseudo ACTG1P12 actin, gamma 1 pseudogene 12 O - 20121230 -9606 100418923 LOC100418923 - - - 6 - TWIST neighbor pseudogene pseudo - - - - 20121230 -9606 100418924 LOC100418924 - - - 6 - actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 100418926 LOC100418926 - - - 8 - actin, gamma 1 pseudogene pseudo - - - - 20120726 -9606 100418928 LOC100418928 - - - 17 - RAD52 motif 1 pseudogene pseudo - - - - 20121230 -9606 100418937 LOC100418937 - - - 9 - tubulin, beta 8 class VIII pseudogene pseudo - - - - 20121230 -9606 100418938 LOC100418938 - - - 9 - forkhead box H1 pseudogene pseudo - - - - 20121230 -9606 100418939 LOC100418939 - - - 12 - tetraspanin 11 pseudogene pseudo - - - - 20121230 -9606 100418940 LOC100418940 - - - 12 - ATM interactor pseudogene pseudo - - - - 20121230 -9606 100418942 PRDX4P2 - - HGNC:43599 5 - peroxiredoxin 4 pseudogene 2 pseudo PRDX4P2 peroxiredoxin 4 pseudogene 2 O - 20121230 -9606 100418943 PRDX2P3 - - HGNC:44968 5 - peroxiredoxin 2 pseudogene 3 pseudo PRDX2P3 peroxiredoxin 2 pseudogene 3 O - 20121230 -9606 100418949 PRDX4P1 - - HGNC:43598 4 - peroxiredoxin 4 pseudogene 1 pseudo PRDX4P1 peroxiredoxin 4 pseudogene 1 O - 20121230 -9606 100418951 LOC100418951 - - - 15 - actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 100418955 PRDX3P4 - - HGNC:44643 3 3p14 peroxiredoxin 3 pseudogene 4 pseudo PRDX3P4 peroxiredoxin 3 pseudogene 4 O - 20121230 -9606 100418956 LOC100418956 - - - 6 - proline rich 11 pseudogene pseudo - - - - 20121230 -9606 100418957 LOC100418957 - - - 6 - forkhead box H1 pseudogene pseudo - - - - 20121230 -9606 100418959 LOC100418959 - - - 18 - aminoacylase 1 pseudogene pseudo - - - - 20121230 -9606 100418960 LOC100418960 - - - 16 - actin, gamma 1 pseudogene pseudo - - - - 20121230 -9606 100418961 LOC100418961 - - - 7 - aurora kinase A pseudogene pseudo - - - - 20121230 -9606 100418964 LOC100418964 - - - 1 - tubulin, beta 6 class V pseudogene pseudo - - - - 20121230 -9606 100418965 LOC100418965 - - - 1 - peroxiredoxin 5 pseudogene pseudo - - - - 20121230 -9606 100418968 SNX2P1 - - HGNC:41514 1 - sorting nexin 2 pseudogene 1 pseudo SNX2P1 sorting nexin 2 pseudogene 1 O - 20121230 -9606 100418972 SNX18P14 - - HGNC:39622 2 - sorting nexin 18 pseudogene 14 pseudo SNX18P14 sorting nexin 18 pseudogene 14 O - 20121230 -9606 100418973 LOC100418973 - - - 2 - citrate synthase pseudogene pseudo - - - - 20121230 -9606 100418974 LOC100418974 - - - 9 - tubulin, beta 2B class IIb pseudogene pseudo - - - - 20121230 -9606 100418975 SNX18P3 - - HGNC:39611 9 - sorting nexin 18 pseudogene 3 pseudo SNX18P3 sorting nexin 18 pseudogene 3 O - 20121230 -9606 100418976 SNX18P4 - - HGNC:39612 9 - sorting nexin 18 pseudogene 4 pseudo SNX18P4 sorting nexin 18 pseudogene 4 O - 20121209 -9606 100418977 SNX18P5 - - HGNC:39613 9 - sorting nexin 18 pseudogene 5 pseudo SNX18P5 sorting nexin 18 pseudogene 5 O - 20121230 -9606 100418978 SNX18P6 - - HGNC:39614 9 - sorting nexin 18 pseudogene 6 pseudo SNX18P6 sorting nexin 18 pseudogene 6 O - 20121209 -9606 100418980 SNX18P7 - - HGNC:39615 9 - sorting nexin 18 pseudogene 7 pseudo SNX18P7 sorting nexin 18 pseudogene 7 O - 20121230 -9606 100418981 SNX18P8 - - HGNC:39616 9 - sorting nexin 18 pseudogene 8 pseudo SNX18P8 sorting nexin 18 pseudogene 8 O - 20121230 -9606 100418983 LOC100418983 - - - 12 - neurofibromin 1 pseudogene pseudo - - - - 20121230 -9606 100418986 LOC100418986 - - - 19 - proline rich 21 pseudogene pseudo - - - - 20121230 -9606 100418987 LOC100418987 - - - 19 - proline rich 21 pseudogene pseudo - - - - 20121230 -9606 100418988 LOC100418988 - - - 19 - proline rich 21 pseudogene pseudo - - - - 20121230 -9606 100418989 LOC100418989 - - - 19 - proline rich 21 pseudogene pseudo - - - - 20121230 -9606 100418990 LOC100418990 - - - 19 - proline rich 21 pseudogene pseudo - - - - 20121230 -9606 100418991 LOC100418991 - - - 19 - proline rich 21 pseudogene pseudo - - - - 20121230 -9606 100418992 LOC100418992 - - - 19 - proline rich 21 pseudogene pseudo - - - - 20121230 -9606 100418993 LOC100418993 - - - 19 - proline rich 21 pseudogene pseudo - - - - 20121230 -9606 100418997 LOC100418997 - - - 11 - proline rich 21 pseudogene pseudo - - - - 20121230 -9606 100418999 SNX18P1Y - - HGNC:38442 Y - sorting nexin 18 pseudogene 1, Y-linked pseudo SNX18P1Y sorting nexin 18 pseudogene 1, Y-linked O - 20121209 -9606 100419003 LOC100419003 - - - 4 - sorting nexin 18 pseudogene pseudo - - - - 20121230 -9606 100419004 SNX18P24 - - HGNC:39632 4 - sorting nexin 18 pseudogene 24 pseudo SNX18P24 sorting nexin 18 pseudogene 24 O - 20121230 -9606 100419005 SNX18P25 - - HGNC:39633 4 - sorting nexin 18 pseudogene 25 pseudo SNX18P25 sorting nexin 18 pseudogene 25 O - 20121230 -9606 100419006 NF1P1 - NF1HHS HGNC:7772 15 15q11.2 neurofibromin 1 pseudogene 1 pseudo NF1P1 neurofibromin 1 pseudogene 1 O - 20121209 -9606 100419007 TUBA8P1 - - HGNC:44568 3 - tubulin, alpha 8 pseudogene 1 pseudo TUBA8P1 tubulin, alpha 8 pseudogene 1 O - 20121230 -9606 100419008 LOC100419008 - - - 3 - proline rich 20B pseudogene pseudo - - - - 20121230 -9606 100419014 LOC100419014 - - - 17 - tubulin, beta 6 class V pseudogene pseudo - - - - 20121230 -9606 100419016 LOC100419016 - - - 16 - proline rich 21 pseudogene pseudo - - - - 20121230 -9606 100419017 LOC100419017 - - - 16 - cyclin Y-like 1 pseudogene pseudo - - - - 20121230 -9606 100419019 SNX18P15 - - HGNC:39623 1 - sorting nexin 18 pseudogene 15 pseudo SNX18P15 sorting nexin 18 pseudogene 15 O - 20121230 -9606 100419020 SNX18P16 - - HGNC:39624 1 - sorting nexin 18 pseudogene 16 pseudo SNX18P16 sorting nexin 18 pseudogene 16 O - 20121230 -9606 100419021 SNX18P18 - - HGNC:39626 1 - sorting nexin 18 pseudogene 18 pseudo SNX18P18 sorting nexin 18 pseudogene 18 O - 20121230 -9606 100419022 SNX18P19 - - HGNC:39627 1 - sorting nexin 18 pseudogene 19 pseudo SNX18P19 sorting nexin 18 pseudogene 19 O - 20121230 -9606 100419023 PDCL3P6 - - HGNC:44507 1 - phosducin-like 3 pseudogene 6 pseudo PDCL3P6 phosducin-like 3 pseudogene 6 O - 20121230 -9606 100419024 SNX18P17 - - HGNC:39625 1 - sorting nexin 18 pseudogene 17 pseudo SNX18P17 sorting nexin 18 pseudogene 17 O - 20121209 -9606 100419025 SNX18P21 - - HGNC:39629 1 - sorting nexin 18 pseudogene 21 pseudo SNX18P21 sorting nexin 18 pseudogene 21 O - 20121230 -9606 100419026 SNX18P20 - - HGNC:39628 1 - sorting nexin 18 pseudogene 20 pseudo SNX18P20 sorting nexin 18 pseudogene 20 O - 20121230 -9606 100419027 SNX18P22 - - HGNC:39630 1 - sorting nexin 18 pseudogene 22 pseudo SNX18P22 sorting nexin 18 pseudogene 22 O - 20121230 -9606 100419028 SNX25P1 - - HGNC:41509 1 - sorting nexin 25 pseudogene 1 pseudo SNX25P1 sorting nexin 25 pseudogene 1 O - 20121230 -9606 100419029 NF1P4 - NF1L4|NF1L6 HGNC:7769 14 14q11.1 neurofibromin 1 pseudogene 4 pseudo NF1P4 neurofibromin 1 pseudogene 4 O - 20121209 -9606 100419031 PRDX3P1 - - HGNC:39264 22 - peroxiredoxin 3 pseudogene 1 pseudo PRDX3P1 peroxiredoxin 3 pseudogene 1 O - 20121230 -9606 100419033 LOC100419033 - - - 12 - apolipoprotein F pseudogene pseudo - - - - 20121230 -9606 100419036 LOC100419036 - - - 5 - tubulin, alpha 3e pseudogene pseudo - - - - 20121230 -9606 100419037 LOC100419037 - - - 5 - spermine synthase pseudogene pseudo - - - - 20121230 -9606 100419038 SNX18P26 - - HGNC:39634 13 - sorting nexin 18 pseudogene 26 pseudo SNX18P26 sorting nexin 18 pseudogene 26 O - 20121230 -9606 100419040 SNX18P10 - - HGNC:39618 21 - sorting nexin 18 pseudogene 10 pseudo SNX18P10 sorting nexin 18 pseudogene 10 O - 20121230 -9606 100419041 SNX18P12 - - HGNC:39620 21 - sorting nexin 18 pseudogene 12 pseudo SNX18P12 sorting nexin 18 pseudogene 12 O - 20121230 -9606 100419042 SNX18P13 - - HGNC:39621 21 - sorting nexin 18 pseudogene 13 pseudo SNX18P13 sorting nexin 18 pseudogene 13 O - 20121230 -9606 100419043 SNX18P11 - - HGNC:39619 21 - sorting nexin 18 pseudogene 11 pseudo SNX18P11 sorting nexin 18 pseudogene 11 O - 20121230 -9606 100419045 LOC100419045 - - - 4 - tubulin, alpha 4a pseudogene pseudo - - - - 20121230 -9606 100419046 LOC100419046 - - - 4 - tubulin, alpha 4a pseudogene pseudo - - - - 20121230 -9606 100419047 SNX19P4 - - HGNC:41510 10 - sorting nexin 19 pseudogene 4 pseudo SNX19P4 sorting nexin 19 pseudogene 4 O - 20121230 -9606 100419052 LOC100419052 - - - 18 - sorting nexin 18 pseudogene pseudo - - - - 20121230 -9606 100419053 LOC100419053 - - - X - spermine synthase pseudogene pseudo - - - - 20121230 -9606 100419054 LOC100419054 - - - X - sarcoma antigen 1 pseudogene pseudo - - - - 20121230 -9606 100419056 LOC100419056 - - - 9 - chloride channel, voltage-sensitive 3 pseudogene pseudo - - - - 20121230 -9606 100419058 LOC100419058 - - - 11 - GPN-loop GTPase 1 pseudogene pseudo - - - - 20121230 -9606 100419059 LOC100419059 - - - 5 - tubulin, epsilon 1 pseudogene pseudo - - - - 20121230 -9606 100419062 FOSL1P1 - - HGNC:44055 4 - FOS-like antigen 1 pseudogene 1 pseudo FOSL1P1 FOS-like antigen 1 pseudogene 1 O - 20121230 -9606 100419066 LOC100419066 - - - 10 - nucleoporin 35kDa pseudogene pseudo - - - - 20121230 -9606 100419068 LOC100419068 - - - 10 - pancreatic lipase pseudogene pseudo - - - - 20121230 -9606 100419069 ENO1P3 - - HGNC:37944 3 - enolase 1, (alpha) pseudogene 3 pseudo ENO1P3 enolase 1, (alpha) pseudogene 3 O - 20121230 -9606 100419070 NUP210P3 - - HGNC:42712 3 - nucleoporin 210kDa pseudogene 3 pseudo NUP210P3 nucleoporin 210kDa pseudogene 3 O - 20121230 -9606 100419073 LOC100419073 - - - 6 - nucleoporin 155kDa pseudogene pseudo - - - - 20121230 -9606 100419074 AK3P2 - HsT26053 HGNC:31099 8 8q24.3 adenylate kinase 3 pseudogene 2 pseudo AK3P2 adenylate kinase 3 pseudogene 2 O - 20121230 -9606 100419075 AK3P3 - - HGNC:39062 7 - adenylate kinase 3 pseudogene 3 pseudo AK3P3 adenylate kinase 3 pseudogene 3 O - 20121230 -9606 100419077 LOC100419077 - - - 1 - Fc receptor-like 6 pseudogene pseudo - - - - 20121230 -9606 100419079 LOC100419079 - - - 14 - tubulin, alpha 1c pseudogene pseudo - - - - 20121230 -9606 100419081 LOC100419081 - - - 14 - double homeobox A pseudogene pseudo - - - - 20121230 -9606 100419085 LOC100419085 - - - 2 - spermidine synthase pseudogene pseudo - - - - 20121230 -9606 100419092 LOC100419092 - - - 11 - REST corepressor 1 pseudogene pseudo - - - - 20121230 -9606 100419095 TXNL1P1 - - HGNC:39459 13 - thioredoxin-like 1 pseudogene 1 pseudo TXNL1P1 thioredoxin-like 1 pseudogene 1 O - 20121230 -9606 100419096 LOC100419096 - - - 4 - WD repeat domain 12 pseudogene pseudo - - - - 20121230 -9606 100419098 ENO1P2 - - HGNC:37943 15 - enolase 1, (alpha) pseudogene 2 pseudo ENO1P2 enolase 1, (alpha) pseudogene 2 O - 20121230 -9606 100419102 LOC100419102 - - - 17 - calponin 3, acidic pseudogene pseudo - - - - 20121230 -9606 100419108 LOC100419108 - - - 2 - centromere protein L pseudogene pseudo - - - - 20121230 -9606 100419110 LOC100419110 - - - 2 - ribosomal protein L4 pseudogene pseudo - - - - 20121230 -9606 100419140 LOC100419140 - - - 5 - ribosomal protein L5 pseudogene pseudo - - - - 20121230 -9606 100419149 HCFC2P1 - - HGNC:39815 13 - host cell factor C2 pseudogene 1 pseudo HCFC2P1 host cell factor C2 pseudogene 1 O - 20121230 -9606 100419154 LOC100419154 - - - 4 - ribosomal protein L4 pseudogene pseudo - - - - 20121230 -9606 100419158 SETP12 - - HGNC:42931 4 - SET pseudogene 12 pseudo SETP12 SET pseudogene 12 O - 20121230 -9606 100419161 LOC100419161 - - - 4 - nei endonuclease VIII-like 2 (E. coli) pseudogene pseudo - - - - 20121230 -9606 100419170 LOC100419170 - - - 4 - toll-like receptor 2 pseudogene pseudo - - - - 20121230 -9606 100419174 LOC100419174 - - - 15 - WD repeat domain 12 pseudogene pseudo - - - - 20121230 -9606 100419178 SETP6 - - HGNC:42925 3 - SET pseudogene 6 pseudo SETP6 SET pseudogene 6 O - 20121230 -9606 100419185 LOC100419185 - - - 3 - PDZ and LIM domain 1 pseudogene pseudo - - - - 20121230 -9606 100419187 SETP11 - - HGNC:42930 3 - SET pseudogene 11 pseudo SETP11 SET pseudogene 11 O - 20121230 -9606 100419209 PRSS52P - - HGNC:37322 8 - protease, serine, 52, pseudogene pseudo PRSS52P protease, serine, 52, pseudogene O - 20121230 -9606 100419232 LOC100419232 - - - X - UBX domain protein 4 pseudogene pseudo - - - - 20121230 -9606 100419238 LOC100419238 - - - X - centromere protein V pseudogene pseudo - - - - 20121230 -9606 100419246 LOC100419246 - - - X - BTG family, member 3 pseudogene pseudo - - - - 20121230 -9606 100419257 LOC100419257 - - - 1 - ribosomal protein S2 pseudogene pseudo - - - - 20121230 -9606 100419284 LOC100419284 - - - 9 - RAN binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100419293 LOC100419293 - - - 12 - carbonyl reductase 1 pseudogene pseudo - - - - 20121230 -9606 100419301 LOC100419301 - - - 19 - ribosomal protein S8 pseudogene pseudo - - - - 20121230 -9606 100419307 LOC100419307 - - - 19 - ribosomal protein L5 pseudogene pseudo - - - - 20121230 -9606 100419318 LOC100419318 - - - 5 - FAST kinase domains 3 pseudogene pseudo - - - - 20121230 -9606 100419319 LOC100419319 - - - 5 - UBX domain protein 2A pseudogene pseudo - - - - 20121230 -9606 100419321 LOC100419321 - - - 5 - ribosomal protein S3A pseudogene pseudo - - - - 20121230 -9606 100419324 LOC100419324 - - - 5 - B-cell CLL/lymphoma 9 pseudogene pseudo - - - - 20121230 -9606 100419337 CENPIP1 - - HGNC:39575 13 - centromere protein I pseudogene 1 pseudo CENPIP1 centromere protein I pseudogene 1 O - 20121230 -9606 100419353 LOC100419353 - - - 4 - histone cluster 3, H3 pseudogene pseudo - - - - 20121230 -9606 100419356 LOC100419356 - - - 4 - ethanolamine kinase 1 pseudogene pseudo - - - - 20121230 -9606 100419366 LOC100419366 - - - 15 - phosphodiesterase 8B pseudogene pseudo - - - - 20121230 -9606 100419391 RPL21P135 - - HGNC:44539 3 - ribosomal protein L21 pseudogene 135 pseudo RPL21P135 ribosomal protein L21 pseudogene 135 O - 20121230 -9606 100419392 RPL12P44 - - HGNC:44603 3 - ribosomal protein L12 pseudogene 44 pseudo RPL12P44 ribosomal protein L12 pseudogene 44 O - 20121230 -9606 100419416 SRPK2P - SRPK2ps HGNC:30303 8 8q12.3 SRSF protein kinase 2 pseudogene pseudo SRPK2P SRSF protein kinase 2 pseudogene O - 20121230 -9606 100419423 ASNSP4 - - HGNC:39400 8 - asparagine synthetase pseudogene 4 pseudo ASNSP4 asparagine synthetase pseudogene 4 O - 20121230 -9606 100419426 LOC100419426 - - - 17 - PDZ and LIM domain 1 pseudogene pseudo - - - - 20121230 -9606 100419427 LOC100419427 - - - 17 - PDZ and LIM domain 1 pseudogene pseudo - - - - 20121230 -9606 100419436 LOC100419436 - - - 17 - ribosomal protein S2 pseudogene pseudo - - - - 20121230 -9606 100419447 LOC100419447 - - - 7 - CSRP2 binding protein pseudogene pseudo - - - - 20121230 -9606 100419451 LOC100419451 - - - 7 - zinc finger protein 3 pseudogene pseudo - - - - 20121230 -9606 100419458 LOC100419458 - - - 7 - ribosomal protein L21 pseudogene pseudo - - - - 20121230 -9606 100419471 LOC100419471 - - - 1 - ribosomal protein S23 pseudogene pseudo - - - - 20121230 -9606 100419472 LOC100419472 - - - 1 - ribosomal protein S23 pseudogene pseudo - - - - 20121230 -9606 100419477 LOC100419477 - - - 1 - ribosomal protein L12 pseudogene pseudo - - - - 20121230 -9606 100419489 LOC100419489 - - - 1 - histone deacetylase 1 pseudogene pseudo - - - - 20121230 -9606 100419503 LOC100419503 - - - 14 - ribosomal protein S2 pseudogene pseudo - - - - 20121230 -9606 100419506 LOC100419506 - - - 22 - ribosomal protein L4 pseudogene pseudo - - - - 20121230 -9606 100419511 LOC100419511 - - - 2 - zinc finger protein 79 pseudogene pseudo - - - - 20121230 -9606 100419512 LOC100419512 - - - 2 - zinc finger protein 19 pseudogene pseudo - - - - 20121230 -9606 100419513 LOC100419513 - - - 2 - CTAGE family, member 5 pseudogene pseudo - - - - 20121230 -9606 100419515 LOC100419515 - - - 9 - zinc finger protein 41 pseudogene pseudo - - - - 20121230 -9606 100419516 LOC100419516 - - - 9 - CTAGE family, member 5 pseudogene pseudo - - - - 20121230 -9606 100419520 LOC100419520 - - - 12 - RAN binding protein 6 pseudogene pseudo - - - - 20121230 -9606 100419521 LOC100419521 - - - 12 - ribosomal protein L21 pseudogene pseudo - - - - 20121230 -9606 100419525 LOC100419525 - - - 12 - ribosomal protein S3A pseudogene pseudo - - - - 20121230 -9606 100419542 LOC100419542 - - - 11 - ribosomal protein L37 pseudogene pseudo - - - - 20121230 -9606 100419545 LOC100419545 - - - 5 - zinc finger protein 35 pseudogene pseudo - - - - 20121230 -9606 100419548 LOC100419548 - - - 5 - ribosomal protein S27a pseudogene pseudo - - - - 20121230 -9606 100419549 LOC100419549 - - - 5 - PRAME family member 17 pseudogene pseudo - - - - 20121230 -9606 100419552 LOC100419552 - - - 5 - zinc finger protein 57 pseudogene pseudo - - - - 20121230 -9606 100419553 LOC100419553 - - - 5 - zinc finger protein 35 pseudogene pseudo - - - - 20121230 -9606 100419554 ZNF92P1Y - - HGNC:39553 Y - zinc finger protein 92 pseudogene 1, Y-linked pseudo ZNF92P1Y zinc finger protein 92 pseudogene 1, Y-linked O - 20121230 -9606 100419558 KARSP1 - - HGNC:39207 13 - lysyl-tRNA synthetase pseudogene 1 pseudo KARSP1 lysyl-tRNA synthetase pseudogene 1 O - 20121230 -9606 100419560 KARSP2 - - HGNC:39208 13 - lysyl-tRNA synthetase pseudogene 2 pseudo KARSP2 lysyl-tRNA synthetase pseudogene 2 O - 20121230 -9606 100419562 LOC100419562 - - - 20 - ribosomal protein L13 pseudogene pseudo - - - - 20121230 -9606 100419565 LOC100419565 - - - 20 - ribosomal protein S3A pseudogene pseudo - - - - 20121230 -9606 100419570 LOC100419570 - - - 20 - ribosomal protein L29 pseudogene pseudo - - - - 20121230 -9606 100419572 LOC100419572 - - - 4 - uracil-DNA glycosylase pseudogene pseudo - - - - 20121230 -9606 100419574 LOC100419574 - - - 15 - HECT and RLD domain containing E3 ubiquitin protein ligase 2 pseudogene pseudo - - - - 20121230 -9606 100419579 LOC100419579 - - - 15 - HECT and RLD domain containing E3 ubiquitin protein ligase 2 pseudogene pseudo - - - - 20121209 -9606 100419583 LOC100419583 - - - 15 - ring finger protein 4 pseudogene pseudo - - - - 20121230 -9606 100419595 LOC100419595 - - - 10 - histone deacetylase 1 pseudogene pseudo - - - - 20121230 -9606 100419599 RNF10P1 - - HGNC:44472 3 - ring finger protein 10 pseudogene 1 pseudo RNF10P1 ring finger protein 10 pseudogene 1 O - 20121230 -9606 100419606 ZNF90P2 - ZNF463P|dJ111M5.3 HGNC:21687 6 - zinc finger protein 90 pseudogene 2 pseudo ZNF90P2 zinc finger protein 90 pseudogene 2 O - 20121230 -9606 100419608 ZNF602P - dJ265C24.5 HGNC:23313 6 6p21 zinc finger protein 602, pseudogene pseudo ZNF602P zinc finger protein 602, pseudogene O - 20121230 -9606 100419609 ZNF70P1 - ZNF314P|bCX269C15.3|dJ1033B10.7 HGNC:13846 6 6p21.32 zinc finger protein 70 pseudogene 1 pseudo ZNF70P1 zinc finger protein 70 pseudogene 1 O - 20121230 -9606 100419610 LOC100419610 - - - 6 - thymidylate synthetase pseudogene pseudo - - - - 20121230 -9606 100419613 LOC100419613 - - - 8 - CTAGE family, member 5 pseudogene pseudo - - - - 20121230 -9606 100419614 LOC100419614 - - - 8 - myo-inositol oxygenase pseudogene pseudo - - - - 20121230 -9606 100419615 LOC100419615 - - - 8 - complement component 7 pseudogene pseudo - - - - 20121230 -9606 100419616 LOC100419616 - - - 8 - Impact homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100419617 LOC100419617 - - - 8 - CTAGE family, member 5 pseudogene pseudo - - - - 20121230 -9606 100419620 LOC100419620 - - - 17 - RAN binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100419621 LOC100419621 - - - 17 - ribosomal protein L24 pseudogene pseudo - - - - 20121230 -9606 100419622 LOC100419622 - - - 17 - ribosomal protein L37 pseudogene pseudo - - - - 20121230 -9606 100419624 LOC100419624 - - - 17 - RAN binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100419639 LOC100419639 - - - 16 - ribosomal protein L21 pseudogene pseudo - - - - 20121230 -9606 100419641 LOC100419641 - - - 7 - CTAGE family, member 5 pseudogene pseudo - - - - 20121230 -9606 100419642 LOC100419642 - - - 7 - zinc finger protein 85 pseudogene pseudo - - - - 20121230 -9606 100419643 LOC100419643 - - - 7 - ring finger protein 14 pseudogene pseudo - - - - 20121230 -9606 100419644 LOC100419644 - - - 7 - sorbitol dehydrogenase pseudogene pseudo - - - - 20121230 -9606 100419645 LOC100419645 - - - 7 - ring finger protein 14 pseudogene pseudo - - - - 20121230 -9606 100419649 LOC100419649 - - - 1 - PRAME family member 10 pseudogene pseudo - - - - 20121230 -9606 100419650 LOC100419650 - - - 1 - ribosomal protein L23a pseudogene pseudo - - - - 20121230 -9606 100419654 LOC100419654 - - - 1 - CTAGE family, member 5 pseudogene pseudo - - - - 20121230 -9606 100419668 LOC100419668 - - - 14 - protein kinase C, eta pseudogene pseudo - - - - 20121230 -9606 100419673 LOC100419673 - - - 22 - PHD finger protein 10 pseudogene pseudo - - - - 20121230 -9606 100419678 LOC100419678 - - - 2 - zinc finger, MYM-type 1 pseudogene pseudo - - - - 20121230 -9606 100419679 LOC100419679 - - - 2 - zinc finger protein 670 pseudogene pseudo - - - - 20121230 -9606 100419680 LOC100419680 - - - 2 - zinc finger protein 430 pseudogene pseudo - - - - 20121230 -9606 100419682 ZNF863P - - HGNC:35156 2 - zinc finger protein 863, pseudogene pseudo ZNF863P zinc finger protein 863, pseudogene O - 20121230 -9606 100419684 LOC100419684 - - - 2 - zinc finger protein 114 pseudogene pseudo - - - - 20121230 -9606 100419685 LOC100419685 - - - 2 - zinc finger protein 555 pseudogene pseudo - - - - 20121230 -9606 100419686 LOC100419686 - - - 2 - zinc finger protein 256 pseudogene pseudo - - - - 20121230 -9606 100419687 LOC100419687 - - - 9 - ring finger protein 152 pseudogene pseudo - - - - 20121230 -9606 100419690 LOC100419690 - - - 9 - zinc finger protein 114 pseudogene pseudo - - - - 20121230 -9606 100419691 LOC100419691 - - - 9 - zinc finger protein 114 pseudogene pseudo - - - - 20121230 -9606 100419692 LOC100419692 - - - 9 - zinc finger protein 791 pseudogene pseudo - - - - 20121230 -9606 100419693 LOC100419693 - - - 9 - zinc finger protein 114 pseudogene pseudo - - - - 20121209 -9606 100419694 LOC100419694 - - - 9 - zinc finger protein 114 pseudogene pseudo - - - - 20121209 -9606 100419700 LOC100419700 - - - 12 - CTAGE family, member 5 pseudogene pseudo - - - - 20121230 -9606 100419701 LOC100419701 - - - 12 - CTAGE family, member 9 pseudogene pseudo - - - - 20121230 -9606 100419702 LOC100419702 - - - 12 - necdin homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100419704 LOC100419704 - - - 19 - zinc finger protein 57 pseudogene pseudo - - - - 20121230 -9606 100419705 ZNF92P2 - - HGNC:39554 19 - zinc finger protein 92 pseudogene 2 pseudo ZNF92P2 zinc finger protein 92 pseudogene 2 O - 20121230 -9606 100419706 LOC100419706 - - - 19 - zinc finger protein 84 pseudogene pseudo - - - - 20121230 -9606 100419707 LOC100419707 - - - 19 - zinc finger protein 41 pseudogene pseudo - - - - 20121230 -9606 100419709 ZNF887P - ZNF887 HGNC:38700 19 - zinc finger protein 887, pseudogene pseudo ZNF887P zinc finger protein 887, pseudogene O - 20121230 -9606 100419711 ZNF92P3 - - HGNC:39555 19 - zinc finger protein 92 pseudogene 3 pseudo ZNF92P3 zinc finger protein 92 pseudogene 3 O - 20121230 -9606 100419712 LOC100419712 - - - 11 - zinc finger protein 12 pseudogene pseudo - - - - 20121230 -9606 100419713 LOC100419713 - - - 11 - CTAGE family, member 5 pseudogene pseudo - - - - 20121230 -9606 100419714 LOC100419714 - - - 11 11q14 adenosylhomocysteinase pseudogene pseudo - - - - 20121230 -9606 100419715 LOC100419715 - - - 5 - zinc finger protein 626 pseudogene pseudo - - - - 20121230 -9606 100419716 LOC100419716 - - - 5 - zinc finger protein 709 pseudogene pseudo - - - - 20121230 -9606 100419717 SALL4P1 - - HGNC:39818 5 - sal-like 4 (Drosophila) pseudogene 1 pseudo SALL4P1 sal-like 4 (Drosophila) pseudogene 1 O - 20121230 -9606 100419720 LOC100419720 - - - 5 - RUN domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100419721 LOC100419721 - - - 5 - zinc finger protein 670 pseudogene pseudo - - - - 20121230 -9606 100419722 RNF19BPY - - HGNC:38398 Y - ring finger protein 19B pseudogene, Y-linked pseudo RNF19BPY ring finger protein 19B pseudogene, Y-linked O - 20121230 -9606 100419724 ZNF736P8Y - - HGNC:38406 Y - zinc finger protein 736 pseudogene 8, Y-linked pseudo ZNF736P8Y zinc finger protein 736 pseudogene 8, Y-linked O - 20121230 -9606 100419725 ZNF736P7Y - - HGNC:38404 Y - zinc finger protein 736 pseudogene 7, Y-linked pseudo ZNF736P7Y zinc finger protein 736 pseudogene 7, Y-linked O - 20121230 -9606 100419726 ZNF736P9Y - - HGNC:38408 Y - zinc finger protein 736 pseudogene 9, Y-linked pseudo ZNF736P9Y zinc finger protein 736 pseudogene 9, Y-linked O - 20121230 -9606 100419727 ZNF736P10Y - - HGNC:38410 Y - zinc finger protein 736 pseudogene 10, Y-linked pseudo ZNF736P10Y zinc finger protein 736 pseudogene 10, Y-linked O - 20121230 -9606 100419728 ZNF886P - - HGNC:38420 Y - zinc finger protein 886, pseudogene pseudo ZNF886P zinc finger protein 886, pseudogene O - 20121230 -9606 100419729 ZNF884P - - HGNC:38421 Y - zinc finger protein 884, pseudogene pseudo ZNF884P zinc finger protein 884, pseudogene O - 20121230 -9606 100419730 ZNF736P11Y - - HGNC:38426 Y - zinc finger protein 736 pseudogene 11, Y-linked pseudo ZNF736P11Y zinc finger protein 736 pseudogene 11, Y-linked O - 20121230 -9606 100419731 ZNF736P12Y - - HGNC:38431 Y - zinc finger protein 736 pseudogene 12, Y-linked pseudo ZNF736P12Y zinc finger protein 736 pseudogene 12, Y-linked O - 20121209 -9606 100419732 ZNF736P6Y - - HGNC:38440 Y - zinc finger protein 736 pseudogene 6, Y-linked pseudo ZNF736P6Y zinc finger protein 736 pseudogene 6, Y-linked O - 20121209 -9606 100419733 ZNF839P1 - - HGNC:38455 Y - zinc finger protein 839 pseudogene 1 pseudo ZNF839P1 zinc finger protein 839 pseudogene 1 O - 20121230 -9606 100419734 ZNF885P - - HGNC:38456 Y - zinc finger protein 885, pseudogene pseudo ZNF885P zinc finger protein 885, pseudogene O - 20121230 -9606 100419735 ZNF736P4Y - - HGNC:38464 Y - zinc finger protein 736 pseudogene 4, Y-linked pseudo ZNF736P4Y zinc finger protein 736 pseudogene 4, Y-linked O - 20121209 -9606 100419737 LOC100419737 - - - 21 - CTAGE family, member 5 pseudogene pseudo - - - - 20121230 -9606 100419739 LOC100419739 - - - 4 - zinc finger protein 341 pseudogene pseudo - - - - 20121230 -9606 100419741 LOC100419741 - - - 4 - zinc finger protein 772 pseudogene pseudo - - - - 20121230 -9606 100419742 R3HDM2P1 - - HGNC:44056 4 - R3H domain containing 2 pseudogene 1 pseudo R3HDM2P1 R3H domain containing 2 pseudogene 1 O - 20121230 -9606 100419743 LOC100419743 - - - 4 - double homeobox 4 like 4 pseudogene pseudo - - - - 20121230 -9606 100419748 LOC100419748 - - - 3 - zinc finger protein 852 pseudogene pseudo - - - - 20121230 -9606 100419750 LOC100419750 - - - 3 - DTW domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100419751 ZNF587P1 - - HGNC:42438 3 - zinc finger protein 587 pseudogene 1 pseudo ZNF587P1 zinc finger protein 587 pseudogene 1 O - 20121230 -9606 100419752 LOC100419752 - - - 3 - zinc finger protein 251 pseudogene pseudo - - - - 20121230 -9606 100419755 LOC100419755 - - - 3 - zinc finger protein 426 pseudogene pseudo - - - - 20121230 -9606 100419756 ZNF968P - - HGNC:44091 6 - zinc finger protein 968, pseudogene pseudo ZNF968P zinc finger protein 968, pseudogene O - 20121230 -9606 100419758 PKMP3 - - HGNC:44245 6 - pyruvate kinase, muscle pseudogene 3 pseudo PKMP3 pyruvate kinase, muscle pseudogene 3 O - 20121230 -9606 100419761 LOC100419761 - - - 8 - zinc finger protein 654 pseudogene pseudo - - - - 20121230 -9606 100419762 LOC100419762 - - - 8 - zinc finger protein 773 pseudogene pseudo - - - - 20121230 -9606 100419763 LOC100419763 - - - 8 - zinc finger protein 192 pseudogene pseudo - - - - 20121230 -9606 100419764 LOC100419764 - - - 17 - glycyl-tRNA synthetase pseudogene pseudo - - - - 20121230 -9606 100419768 LOC100419768 - - - 17 - ribosomal protein S15a pseudogene pseudo - - - - 20121230 -9606 100419772 LOC100419772 - - - 7 - CGRP receptor component pseudogene pseudo - - - - 20121230 -9606 100419773 LOC100419773 - - - 7 - zinc finger protein 33B pseudogene pseudo - - - - 20121230 -9606 100419774 LOC100419774 - - - 7 - zinc finger protein 383 pseudogene pseudo - - - - 20121230 -9606 100419775 LOC100419775 - - - 7 - zinc finger protein 519 pseudogene pseudo - - - - 20121230 -9606 100419776 LOC100419776 - - - 7 - zinc finger protein 619 pseudogene pseudo - - - - 20121230 -9606 100419777 LOC100419777 - - - 7 - ring finger protein 138, E3 ubiquitin protein ligase pseudogene pseudo - - - - 20121230 -9606 100419779 LOC100419779 - - - 7 - zinc finger protein 195 pseudogene pseudo - - - - 20121230 -9606 100419780 LOC100419780 - - - 7 - zinc finger protein 479 pseudogene pseudo - - - - 20121230 -9606 100419781 LOC100419781 - - - 7 - zinc finger protein 267 pseudogene pseudo - - - - 20121230 -9606 100419782 LOC100419782 - - - 7 - zinc finger protein 717 pseudogene pseudo - - - - 20121230 -9606 100419783 LOC100419783 - - - X - zinc finger protein 831 pseudogene pseudo - - - - 20121230 -9606 100419784 LOC100419784 - - - X - zinc finger protein 484 pseudogene pseudo - - - - 20121230 -9606 100419786 LOC100419786 - - - X - zinc finger protein 670 pseudogene pseudo - - - - 20121230 -9606 100419788 RNF19BPX - RNF19BX HGNC:38484 X - ring finger protein 19B pseudogene, X-linked pseudo RNF19BPX ring finger protein 19B pseudogene, X-linked O - 20121230 -9606 100419790 LOC100419790 - - - X - zinc finger protein 670 pseudogene pseudo - - - - 20121230 -9606 100419791 LOC100419791 - - - X - zinc finger protein 449 pseudogene pseudo - - - - 20121230 -9606 100419792 LOC100419792 - - - X - zinc finger protein 622 pseudogene pseudo - - - - 20121230 -9606 100419793 LOC100419793 - - - X - BEN domain containing 7 pseudogene pseudo - - - - 20121230 -9606 100419794 LOC100419794 - - - X - zinc finger protein 449 pseudogene pseudo - - - - 20121230 -9606 100419795 LOC100419795 - - - X - zinc finger, MYM-type 1 pseudogene pseudo - - - - 20121230 -9606 100419796 LOC100419796 - - - 1 - zinc finger protein 146 pseudogene pseudo - - - - 20121230 -9606 100419798 LOC100419798 - - - 1 - gon-4-like (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100419799 LOC100419799 - - - 1 - gon-4-like (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100419801 LOC100419801 - - - 1 - zinc finger protein 532 pseudogene pseudo - - - - 20121230 -9606 100419802 LOC100419802 - - - 1 - zinc finger protein 184 pseudogene pseudo - - - - 20121230 -9606 100419803 LOC100419803 - - - 1 - zinc finger protein 510 pseudogene pseudo - - - - 20121230 -9606 100419806 LOC100419806 - - - 1 - zinc finger protein 519 pseudogene pseudo - - - - 20121230 -9606 100419811 LOC100419811 - - - 22 - interleukin 9 receptor pseudogene pseudo - - - - 20121230 -9606 100419812 LOC100419812 - - - 2 - COBW domain containing 7 pseudogene pseudo - - - - 20121230 -9606 100419814 LOC100419814 - - - 2 - ankyrin repeat domain 49 pseudogene pseudo - - - - 20121230 -9606 100419815 LOC100419815 - - - 2 - ankyrin repeat domain 57 pseudogene pseudo - - - - 20121230 -9606 100419816 LOC100419816 - - - 2 - orthodenticle homeobox 2 pseudogene pseudo - - - - 20121230 -9606 100419821 LOC100419821 - - - 9 - casein kinase 1, gamma 2 pseudogene pseudo - - - - 20121230 -9606 100419824 LOC100419824 - - - 9 - kinesin family member 27 pseudogene pseudo - - - - 20121230 -9606 100419825 LOC100419825 - - - 12 - zinc finger protein 655 pseudogene pseudo - - - - 20121230 -9606 100419827 LOC100419827 - - - 12 - zinc finger protein 167 pseudogene pseudo - - - - 20121230 -9606 100419829 LOC100419829 - - - 12 - arginyl-tRNA synthetase pseudogene pseudo - - - - 20121230 -9606 100419830 LOC100419830 - - - 12 - zinc finger protein 337 pseudogene pseudo - - - - 20121230 -9606 100419831 LOC100419831 - - - 19 - zinc finger protein 420 pseudogene pseudo - - - - 20121230 -9606 100419833 LOC100419833 - - - 19 - zinc finger protein 709 pseudogene pseudo - - - - 20121230 -9606 100419834 LOC100419834 - - - 19 - zinc finger protein 134 pseudogene pseudo - - - - 20121230 -9606 100419835 LOC100419835 - - - 19 - zinc finger protein 160 pseudogene pseudo - - - - 20121230 -9606 100419836 LOC100419836 - - - 19 - zinc finger protein 347 pseudogene pseudo - - - - 20121230 -9606 100419838 LOC100419838 - - - 19 - zinc finger protein 860 pseudogene pseudo - - - - 20121230 -9606 100419839 LOC100419839 - - - 19 - zinc finger protein 300 pseudogene pseudo - - - - 20121230 -9606 100419840 LOC100419840 - - - 19 - zinc finger protein 446 pseudogene pseudo - - - - 20121230 -9606 100419841 LOC100419841 - - - 19 - zinc finger protein 107 pseudogene pseudo - - - - 20121230 -9606 100419842 LOC100419842 - - - 19 - zinc finger protein 396 pseudogene pseudo - - - - 20121230 -9606 100419844 LOC100419844 - - - 19 - zinc finger protein 610 pseudogene pseudo - - - - 20121230 -9606 100419845 LOC100419845 - - - 19 - zinc finger protein 415 pseudogene pseudo - - - - 20121230 -9606 100419847 LOC100419847 - - - 19 - zinc finger protein 436 pseudogene pseudo - - - - 20121230 -9606 100419848 LOC100419848 - - - 19 - zinc finger protein 250 pseudogene pseudo - - - - 20121230 -9606 100419851 LOC100419851 - - - 5 - protein serine kinase H1 pseudogene pseudo - - - - 20121230 -9606 100419852 LOC100419852 - - - 5 - sterol carrier protein 2 pseudogene pseudo - - - - 20121230 -9606 100419853 LOC100419853 - - - 5 - transmembrane protein 69 pseudogene pseudo - - - - 20121230 -9606 100419854 ZNF646P1 - - HGNC:39749 13 - zinc finger protein 646 pseudogene 1 pseudo ZNF646P1 zinc finger protein 646 pseudogene 1 O - 20121230 -9606 100419855 SALL4P4 - - HGNC:39821 13 - sal-like 4 (Drosophila) pseudogene 4 pseudo SALL4P4 sal-like 4 (Drosophila) pseudogene 4 O - 20121230 -9606 100419859 LOC100419859 - - - 20 - zinc finger, MYM-type 1 pseudogene pseudo - - - - 20121230 -9606 100419861 LOC100419861 - - - 4 - metallophosphoesterase 1 pseudogene pseudo - - - - 20121230 -9606 100419862 LOC100419862 - - - 4 - HEAT repeat containing 2 pseudogene pseudo - - - - 20121230 -9606 100419863 LOC100419863 - - - 4 - zinc finger protein 705A pseudogene pseudo - - - - 20121230 -9606 100419866 ZNF444P1 - ZNF864P HGNC:35157 15 - zinc finger protein 444 pseudogene 1 pseudo ZNF444P1 zinc finger protein 444 pseudogene 1 O - 20121230 -9606 100419867 ZNF101P1 - - HGNC:44940 10 - zinc finger protein 101 pseudogene 1 pseudo ZNF101P1 zinc finger protein 101 pseudogene 1 O - 20121230 -9606 100419868 ZNF33BP1 - - HGNC:44975 10 - zinc finger protein 33B pseudogene 1 pseudo ZNF33BP1 zinc finger protein 33B pseudogene 1 O - 20121230 -9606 100419870 LOC100419870 - - - 10 - zinc finger protein 717 pseudogene pseudo - - - - 20121230 -9606 100419872 LOC100419872 - - - 10 - zinc finger, MYM-type 4 pseudogene pseudo - - - - 20121230 -9606 100419873 LOC100419873 - - - 10 - zinc finger protein 519 pseudogene pseudo - - - - 20121230 -9606 100419875 FNBP1P2 - - HGNC:44527 3 - formin binding protein 1 pseudogene 2 pseudo FNBP1P2 formin binding protein 1 pseudogene 2 O - 20121230 -9606 100419877 LOC100419877 - - - 3 - bromodomain containing 7 pseudogene pseudo - - - - 20121230 -9606 100419878 LOC100419878 - - - 3 - methyltransferase like 5 pseudogene pseudo - - - - 20121230 -9606 100419880 LOC100419880 - - - 3 - kinesin family member 3A pseudogene pseudo - - - - 20121230 -9606 100419882 LOC100419882 - - - 6 - transmembrane protein 98 pseudogene pseudo - - - - 20121230 -9606 100419883 YAP1P3 - - HGNC:43890 6 - Yes-associated protein 1 pseudogene 3 pseudo YAP1P3 Yes-associated protein 1 pseudogene 3 O - 20121230 -9606 100419888 LOC100419888 - - - 17 - zinc finger protein 331 pseudogene pseudo - - - - 20121230 -9606 100419890 LOC100419890 - - - 17 - zinc finger, MYM-type 4 pseudogene pseudo - - - - 20121230 -9606 100419891 LOC100419891 - - - 18 - zinc finger protein 114 pseudogene pseudo - - - - 20121230 -9606 100419892 LOC100419892 - - - 18 - zinc finger protein 592 pseudogene pseudo - - - - 20121230 -9606 100419893 LOC100419893 - - - 18 - zinc finger protein 415 pseudogene pseudo - - - - 20121230 -9606 100419894 LOC100419894 - - - 18 - zinc finger protein 347 pseudogene pseudo - - - - 20121230 -9606 100419895 LOC100419895 - - - 16 - zinc finger protein 670 pseudogene pseudo - - - - 20121230 -9606 100419896 LOC100419896 - - - 16 - zinc finger protein 267 pseudogene pseudo - - - - 20121230 -9606 100419901 LOC100419901 - - - 7 - casein kinase 1, alpha 1 pseudogene pseudo - - - - 20121230 -9606 100419903 RWDD4P1 - FAM28BP HGNC:23753 7 - RWD domain containing 4 pseudogene 1 pseudo RWDD4P1 RWD domain containing 4 pseudogene 1 O - 20121230 -9606 100419906 LOC100419906 - - - X - ankyrin repeat domain 11 pseudogene pseudo - - - - 20121230 -9606 100419907 LOC100419907 - - - X - kinesin family member 23 pseudogene pseudo - - - - 20121230 -9606 100419908 LOC100419908 - - - X - zinc finger protein 585A pseudogene pseudo - - - - 20121230 -9606 100419909 YAP1P2 - - HGNC:38017 X - Yes-associated protein 1 pseudogene 2 pseudo YAP1P2 Yes-associated protein 1 pseudogene 2 O - 20121230 -9606 100419911 LOC100419911 - - - 1 - prenylcysteine oxidase 1 pseudogene pseudo - - - - 20121230 -9606 100419912 LOC100419912 - - - 14 - sal-like 4 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100419913 LOC100419913 - - - 14 - zinc finger protein 124 pseudogene pseudo - - - - 20121230 -9606 100419915 LOC100419915 - - - 22 - OTU domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100419916 LOC100419916 - - - 2 - cyclin-dependent kinase 8 pseudogene pseudo - - - - 20121230 -9606 100419917 LOC100419917 - - - 2 - lysine-rich coiled-coil 1 pseudogene pseudo - - - - 20121230 -9606 100419920 LOC100419920 - - - 2 - ankyrin repeat domain 33B pseudogene pseudo - - - - 20121230 -9606 100419921 LOC100419921 - - - 2 - uncharacterized LOC100419921 pseudo - - - - 20121230 -9606 100419923 LOC100419923 - - - 9 - density-regulated protein pseudogene pseudo - - - - 20121230 -9606 100419924 LOC100419924 - - - 9 - uncharacterized LOC100419924 pseudo - - - - 20121209 -9606 100419925 LOC100419925 - - - 9 - uncharacterized LOC100419925 pseudo - - - - 20121230 -9606 100419926 LOC100419926 - - - 9 - uncharacterized LOC100419926 pseudo - - - - 20121230 -9606 100419928 LOC100419928 - - - 12 - M-phase phosphoprotein 8 pseudogene pseudo - - - - 20121230 -9606 100419929 LOC100419929 - - - 12 - acidic repeat containing pseudogene pseudo - - - - 20121230 -9606 100419930 LOC100419930 - - - 12 - MLF1 interacting protein pseudogene pseudo - - - - 20121230 -9606 100419932 LOC100419932 - - - 12 - FGFR1 oncogene partner 2 pseudogene pseudo - - - - 20121230 -9606 100419935 LOC100419935 - - - 12 - tumor protein D52-like 2 pseudogene pseudo - - - - 20121230 -9606 100419945 TRIM51DP - - HGNC:43969 11 - tripartite motif-containing 51D, pseudogene pseudo TRIM51DP tripartite motif-containing 51D, pseudogene O - 20121230 -9606 100419947 HMGB1P21 - - HGNC:39106 5 - high mobility group box 1 pseudogene 21 pseudo HMGB1P21 high mobility group box 1 pseudogene 21 O - 20121230 -9606 100419948 HMGB3P17 - - HGNC:39309 5 - high mobility group box 3 pseudogene 17 pseudo HMGB3P17 high mobility group box 3 pseudogene 17 O - 20121230 -9606 100419949 HMGB3P3 - - HGNC:39102 5 - high mobility group box 3 pseudogene 3 pseudo HMGB3P3 high mobility group box 3 pseudogene 3 O - 20121230 -9606 100419950 HMGB1P35 - - HGNC:39175 5 - high mobility group box 1 pseudogene 35 pseudo HMGB1P35 high mobility group box 1 pseudogene 35 O - 20121230 -9606 100419951 LOC100419951 - - - 5 - uncharacterized LOC100419951 pseudo - - - - 20121230 -9606 100419952 LOC100419952 - - - Y - uncharacterized LOC100419952 pseudo - - - - 20121230 -9606 100419955 SDAD1P4 - - HGNC:39261 13 - SDA1 domain containing 1 pseudogene 4 pseudo SDAD1P4 SDA1 domain containing 1 pseudogene 4 O - 20121230 -9606 100419956 LOC100419956 - - - 20 - kinesin family member 15 pseudogene pseudo - - - - 20121230 -9606 100419957 LOC100419957 - - - 21 - ankyrin repeat domain 57 pseudogene pseudo - - - - 20121230 -9606 100419959 LOC100419959 - - - 4 - HBS1-like (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100419960 LOC100419960 - - - 4 - kelch domain containing 4 pseudogene pseudo - - - - 20121230 -9606 100419962 ANKRD54P1 - - HGNC:39214 10 - ankyrin repeat domain 54 pseudogene 1 pseudo ANKRD54P1 ankyrin repeat domain 54 pseudogene 1 O - 20121230 -9606 100419963 LOC100419963 - - - 10 - YY1 transcription factor pseudogene pseudo - - - - 20121230 -9606 100419964 RSU1P3 - - HGNC:44392 10 - Ras suppressor protein 1 pseudogene 3 pseudo RSU1P3 Ras suppressor protein 1 pseudogene 3 O - 20121230 -9606 100419966 LOC100419966 - - - 3 - uncharacterized LOC100419966 pseudo - - - - 20121230 -9606 100419967 LOC100419967 - - - 3 - phospholipid scramblase 4 pseudogene pseudo - - - - 20121230 -9606 100419968 HMGB1P36 - - HGNC:39176 3 - high mobility group box 1 pseudogene 36 pseudo HMGB1P36 high mobility group box 1 pseudogene 36 O - 20121230 -9606 100419969 LOC100419969 - - - 3 - myosin light chain kinase pseudogene pseudo - - - - 20121230 -9606 100419971 PRELID1P2 - - HGNC:43887 6 - PRELI domain containing 1 pseudogene 2 pseudo PRELID1P2 PRELI domain containing 1 pseudogene 2 O - 20121230 -9606 100419972 HMGB1P39 - - HGNC:39186 6 - high mobility group box 1 pseudogene 39 pseudo HMGB1P39 high mobility group box 1 pseudogene 39 O - 20121230 -9606 100419974 HMGB1P17 - - HGNC:39099 6 - high mobility group box 1 pseudogene 17 pseudo HMGB1P17 high mobility group box 1 pseudogene 17 O - 20121230 -9606 100419975 LOC100419975 - - - 6 - transmembrane protein 192 pseudogene pseudo - - - - 20121230 -9606 100419977 LOC100419977 - - - 8 - myeloid leukemia factor 2 pseudogene pseudo - - - - 20121230 -9606 100419978 HMGB1P46 - - HGNC:39279 8 - high mobility group box 1 pseudogene 46 pseudo HMGB1P46 high mobility group box 1 pseudogene 46 O - 20121230 -9606 100419979 HMGB1P19 - - HGNC:39101 8 - high mobility group box 1 pseudogene 19 pseudo HMGB1P19 high mobility group box 1 pseudogene 19 O - 20121230 -9606 100419980 LOC100419980 - - - 17 - golgi membrane protein 1 pseudogene pseudo - - - - 20121230 -9606 100419984 LOC100419984 - - - 7 - uncharacterized LOC100419984 pseudo - - - - 20121230 -9606 100419985 LOC100419985 - - - 7 - uncharacterized LOC100419985 pseudo - - - - 20121230 -9606 100419986 LOC100419986 - - - 7 - uncharacterized LOC100419986 pseudo - - - - 20121209 -9606 100419987 LOC100419987 - - - 7 - uncharacterized LOC100419987 pseudo - - - - 20121230 -9606 100419989 LOC100419989 - - - 7 - THUMP domain containing 3 pseudogene pseudo - - - - 20121230 -9606 100419991 LOC100419991 - - - 7 - phosphoserine phosphatase pseudogene pseudo - - - - 20121230 -9606 100419992 LOC100419992 - - - 7 - uncharacterized LOC100419992 pseudo - - - - 20121230 -9606 100419995 HMGB1P32 - - HGNC:39123 X - high mobility group box 1 pseudogene 32 pseudo HMGB1P32 high mobility group box 1 pseudogene 32 O - 20121230 -9606 100419996 HMGB1P11 - HMGB1L11 HGNC:13316 1 - high mobility group box 1 pseudogene 11 pseudo HMGB1P11 high mobility group box 1 pseudogene 11 O - 20121230 -9606 100420002 LOC100420002 - - - 2 - PDGFA associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100420003 E2F3P2 - - HGNC:3117 2 2q33-q35 E2F transcription factor 3 pseudogene 2 pseudo E2F3P2 E2F transcription factor 3 pseudogene 2 O - 20121230 -9606 100420004 HSPA8P10 - - HGNC:44925 2 - heat shock 70kDa protein 8 pseudogene 10 pseudo HSPA8P10 heat shock 70kDa protein 8 pseudogene 10 O - 20121230 -9606 100420005 LOC100420005 - - - 2 - fatty acyl CoA reductase 2 pseudogene pseudo - - - - 20121230 -9606 100420006 LOC100420006 - - - 2 - fatty acyl CoA reductase 2 pseudogene pseudo - - - - 20121230 -9606 100420008 LOC100420008 - - - 9 - transmembrane protein 126B pseudogene pseudo - - - - 20121230 -9606 100420011 LOC100420011 - - - 12 - transmembrane protein 38A pseudogene pseudo - - - - 20121230 -9606 100420012 ARF1P2 - - HGNC:39883 12 - ADP-ribosylation factor 1 pseudogene 2 pseudo ARF1P2 ADP-ribosylation factor 1 pseudogene 2 O - 20121230 -9606 100420013 HMGB1P49 - - HGNC:39282 12 - high mobility group box 1 pseudogene 49 pseudo HMGB1P49 high mobility group box 1 pseudogene 49 O - 20121230 -9606 100420015 HMGB3P29 - - HGNC:39321 19 - high mobility group box 3 pseudogene 29 pseudo HMGB3P29 high mobility group box 3 pseudogene 29 O - 20121230 -9606 100420018 LOC100420018 - - - 11 - WEE1 homolog 2 (S. pombe) pseudogene pseudo - - - - 20121230 -9606 100420019 LOC100420019 - - - 11 - glycine-N-acyltransferase pseudogene pseudo - - - - 20121230 -9606 100420020 LOC100420020 - - - 11 - transmembrane protein 55B pseudogene pseudo - - - - 20121230 -9606 100420021 LOC100420021 - - - 11 - ankyrin repeat domain 33B pseudogene pseudo - - - - 20121230 -9606 100420022 LOC100420022 - - - 11 - ankyrin repeat domain 33B pseudogene pseudo - - - - 20121230 -9606 100420024 LOC100420024 - - - 11 - ankyrin repeat domain 33B pseudogene pseudo - - - - 20121209 -9606 100420025 LOC100420025 - - - 11 - ankyrin repeat domain 33B pseudogene pseudo - - - - 20121209 -9606 100420027 LOC100420027 - - - 5 - dedicator of cytokinesis 9 pseudogene pseudo - - - - 20121230 -9606 100420028 HSPA8P4 - - HGNC:44919 5 - heat shock 70kDa protein 8 pseudogene 4 pseudo HSPA8P4 heat shock 70kDa protein 8 pseudogene 4 O - 20121230 -9606 100420030 MORF4L1P4 - - HGNC:39257 13 - mortality factor 4 like 1 pseudogene 4 pseudo MORF4L1P4 mortality factor 4 like 1 pseudogene 4 O - 20121230 -9606 100420033 HMGB3P7 - - HGNC:39299 13 - high mobility group box 3 pseudogene 7 pseudo HMGB3P7 high mobility group box 3 pseudogene 7 O - 20121230 -9606 100420035 LOC100420035 - - - 21 - phosphoglycerate kinase 1 pseudogene pseudo - - - - 20121230 -9606 100420036 LOC100420036 - - - 4 - ret finger protein-like 4A pseudogene pseudo - - - - 20121230 -9606 100420038 HSPA8P12 - - HGNC:44927 4 - heat shock 70kDa protein 8 pseudogene 12 pseudo HSPA8P12 heat shock 70kDa protein 8 pseudogene 12 O - 20121230 -9606 100420041 HMGB1P43 - - HGNC:39191 15 - high mobility group box 1 pseudogene 43 pseudo HMGB1P43 high mobility group box 1 pseudogene 43 O - 20121230 -9606 100420042 LOC100420042 - - - 15 - cysteinyl-tRNA synthetase pseudogene pseudo - - - - 20121230 -9606 100420043 LOC100420043 - - - 10 - calcyclin binding protein pseudogene pseudo - - - - 20121230 -9606 100420044 HMGB1P7 - - HGNC:39096 10 - high mobility group box 1 pseudogene 7 pseudo HMGB1P7 high mobility group box 1 pseudogene 7 O - 20121230 -9606 100420046 PRELID1P3 - - HGNC:43888 10 - PRELI domain containing 1 pseudogene 3 pseudo PRELID1P3 PRELI domain containing 1 pseudogene 3 O - 20121230 -9606 100420047 LOC100420047 - - - 3 - RAD51 associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100420048 LOC100420048 - - - 3 - poly(rC) binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100420049 HSPA8P19 - - HGNC:44935 3 - heat shock 70kDa protein 8 pseudogene 19 pseudo HSPA8P19 heat shock 70kDa protein 8 pseudogene 19 O - 20121230 -9606 100420050 LOC100420050 - - - 3 - downstream neighbor of SON pseudogene pseudo - - - - 20121230 -9606 100420051 HSPA8P15 - - HGNC:44930 6 - heat shock 70kDa protein 8 pseudogene 15 pseudo HSPA8P15 heat shock 70kDa protein 8 pseudogene 15 O - 20121230 -9606 100420052 LOC100420052 - - - 6 - poly(rC) binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100420053 LOC100420053 - - - 8 - transmembrane protein 126A pseudogene pseudo - - - - 20121230 -9606 100420054 LOC100420054 - - - 8 - NSFL1 (p97) cofactor (p47) pseudogene pseudo - - - - 20121230 -9606 100420055 LOC100420055 - - - 8 - ret finger protein-like 4A pseudogene pseudo - - - - 20121230 -9606 100420057 LOC100420057 - - - 8 - aconitase 2, mitochondrial pseudogene pseudo - - - - 20121230 -9606 100420058 LOC100420058 - - - 8 - ret finger protein-like 4A pseudogene pseudo - - - - 20121230 -9606 100420059 LOC100420059 - - - 8 - ret finger protein-like 4A pseudogene pseudo - - - - 20121230 -9606 100420060 LOC100420060 - - - 17 - stem-loop binding protein pseudogene pseudo - - - - 20121230 -9606 100420061 LOC100420061 - - - 17 - adenylosuccinate synthase pseudogene pseudo - - - - 20121230 -9606 100420062 LOC100420062 - - - 17 - transmembrane protein 160 pseudogene pseudo - - - - 20121230 -9606 100420063 HMGB1P24 - - HGNC:39115 17 - high mobility group box 1 pseudogene 24 pseudo HMGB1P24 high mobility group box 1 pseudogene 24 O - 20121230 -9606 100420064 LOC100420064 - - - 17 - density-regulated protein pseudogene pseudo - - - - 20121230 -9606 100420066 LOC100420066 - - - 16 - transmembrane protein 111 pseudogene pseudo - - - - 20121230 -9606 100420067 LOC100420067 - - - 16 - transmembrane protein 231 pseudogene pseudo - - - - 20121230 -9606 100420072 EI24P4 - - HGNC:44589 7 - etoposide induced 2.4 pseudogene 4 pseudo EI24P4 etoposide induced 2.4 pseudogene 4 O - 20121230 -9606 100420073 LOC100420073 - - - 7 - dpy-19-like 4 (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100420074 LOC100420074 - - - 7 - transmembrane protein 183A pseudogene pseudo - - - - 20121230 -9606 100420075 LOC100420075 - - - X - phospholipase C, epsilon 1 pseudogene pseudo - - - - 20121230 -9606 100420080 HSPA8P7 - - HGNC:44922 X - heat shock 70kDa protein 8 pseudogene 7 pseudo HSPA8P7 heat shock 70kDa protein 8 pseudogene 7 O - 20121230 -9606 100420083 LOC100420083 - - - X - ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 100420084 LOC100420084 - - - X - ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 100420089 LOC100420089 - - - X - ornithine aminotransferase pseudogene pseudo - - - - 20121230 -9606 100420092 LOC100420092 - - - 1 - poly(rC) binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100420095 LOC100420095 - - - 14 - uncharacterized LOC100420095 pseudo - - - - 20121230 -9606 100420096 LOC100420096 - - - 14 - IGF-like family receptor 1 pseudogene pseudo - - - - 20121230 -9606 100420097 LOC100420097 - - - 14 - uncharacterized LOC100420097 pseudo - - - - 20121230 -9606 100420098 LOC100420098 - - - 14 - kinesin family member 20B pseudogene pseudo - - - - 20120720 -9606 100420100 HMGB1P34 - - HGNC:23342 14 - high mobility group box 1 pseudogene 34 pseudo HMGB1P34 high mobility group box 1 pseudogene 34 O - 20121230 -9606 100420103 LOC100420103 - - - 22 - uncharacterized LOC100420103 pseudo - - - - 20121230 -9606 100420108 LOC100420108 - - - 2 - RNA binding motif protein 7 pseudogene pseudo - - - - 20121230 -9606 100420109 LOC100420109 - - - 2 - WW domain binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100420110 LOC100420110 - - - 2 - SCY1-like 2 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100420113 LOC100420113 - - - 9 - Kruppel-like factor 4 (gut) pseudogene pseudo - - - - 20121230 -9606 100420114 LOC100420114 - - - 9 - SPATA31 subfamily D, member 1 pseudogene pseudo - - - - 20121230 -9606 100420116 LOC100420116 - - - 12 - transmembrane protein 132B pseudogene pseudo - - - - 20121230 -9606 100420117 LOC100420117 - - - 12 - methionyl aminopeptidase 1 pseudogene pseudo - - - - 20121230 -9606 100420118 LOC100420118 - - - 12 - transmembrane protein 132C pseudogene pseudo - - - - 20121230 -9606 100420119 LOC100420119 - - - 12 - transmembrane protein 132B pseudogene pseudo - - - - 20121230 -9606 100420121 LOC100420121 - - - 11 - MAS-related GPR, member X3 pseudogene pseudo - - - - 20121230 -9606 100420122 LOC100420122 - - - 11 - dihydropyrimidinase-like 5 pseudogene pseudo - - - - 20121230 -9606 100420123 LOC100420123 - - - 11 - MAS-related GPR, member X2 pseudogene pseudo - - - - 20121230 -9606 100420127 LOC100420127 - - - 5 - mediator complex subunit 13 pseudogene pseudo - - - - 20121230 -9606 100420130 LOC100420130 - - - 5 - RB1-inducible coiled-coil 1 pseudogene pseudo - - - - 20121230 -9606 100420133 HSPA8P2 - - HGNC:39806 13 - heat shock 70kDa protein 8 pseudogene 2 pseudo HSPA8P2 heat shock 70kDa protein 8 pseudogene 2 O - 20121230 -9606 100420143 HSPA8P3 - - HGNC:44918 10 - heat shock 70kDa protein 8 pseudogene 3 pseudo HSPA8P3 heat shock 70kDa protein 8 pseudogene 3 O - 20121230 -9606 100420144 LOC100420144 - - - 3 - mediator of cell motility 1 pseudogene pseudo - - - - 20121230 -9606 100420149 LOC100420149 - - - 6 - beclin 1, autophagy related pseudogene pseudo - - - - 20121230 -9606 100420155 RPL7L1P2 - - HGNC:39484 7 - ribosomal protein L7-like 1 pseudogene 2 pseudo RPL7L1P2 ribosomal protein L7-like 1 pseudogene 2 O - 20121230 -9606 100420158 FTLP16 - - HGNC:37966 X - ferritin, light polypeptide pseudogene 16 pseudo FTLP16 ferritin, light polypeptide pseudogene 16 O - 20121230 -9606 100420159 LOC100420159 - - - X - ribonucleotide reductase M2 pseudogene pseudo - - - - 20121230 -9606 100420162 LOC100420162 - - - X - nuclear RNA export factor 5 pseudogene pseudo - - - - 20121230 -9606 100420166 LOC100420166 - - - 1 - ribosomal protein L7-like 1 pseudogene pseudo - - - - 20121230 -9606 100420170 LOC100420170 - - - 1 - ribosomal protein L7-like 1 pseudogene pseudo - - - - 20121230 -9606 100420171 LOC100420171 - - - 14 - fatty acyl CoA reductase 2 pseudogene pseudo - - - - 20121230 -9606 100420172 LOC100420172 - - - 14 - fatty acyl CoA reductase 2 pseudogene pseudo - - - - 20121209 -9606 100420174 LOC100420174 - - - 14 - centrosomal protein 170kDa pseudogene pseudo - - - - 20121230 -9606 100420175 LOC100420175 - - - 22 - fatty acyl CoA reductase 2 pseudogene pseudo - - - - 20121209 -9606 100420177 LOC100420177 - - - 22 - kelch-like 12 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100420178 LOC100420178 - - - 22 - E2F transcription factor 6 pseudogene pseudo - - - - 20121209 -9606 100420180 LOC100420180 - - - 2 - DBF4 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100420186 LOC100420186 - - - 12 - WW domain binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100420187 LOC100420187 - - - 19 - YME1-like 1 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100420189 SEPHS1P3 - - HGNC:42163 5 - selenophosphate synthetase 1 pseudogene 3 pseudo SEPHS1P3 selenophosphate synthetase 1 pseudogene 3 O - 20121230 -9606 100420190 SEPHS1P5 - - HGNC:42165 5 - selenophosphate synthetase 1 pseudogene 5 pseudo SEPHS1P5 selenophosphate synthetase 1 pseudogene 5 O - 20121230 -9606 100420198 LUC7L3P1 - - HGNC:39790 13 - LUC7-like 3 (S. cerevisiae) pseudogene 1 pseudo LUC7L3P1 LUC7-like 3 (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100420200 RPL7L1P12 - - HGNC:39811 13 - ribosomal protein L7-like 1 pseudogene 12 pseudo RPL7L1P12 ribosomal protein L7-like 1 pseudogene 12 O - 20121230 -9606 100420201 RPL7L1P6 - - HGNC:39488 13 - ribosomal protein L7-like 1 pseudogene 6 pseudo RPL7L1P6 ribosomal protein L7-like 1 pseudogene 6 O - 20121230 -9606 100420203 CICP16 - - HGNC:38550 4 - capicua homolog (Drosophila) pseudogene 16 pseudo CICP16 capicua homolog (Drosophila) pseudogene 16 O - 20121230 -9606 100420205 LOC100420205 - - - 15 - ribonucleotide reductase M2 pseudogene pseudo - - - - 20121230 -9606 100420206 RPL36AP55 - - HGNC:44939 10 - ribosomal protein L36a pseudogene 55 pseudo RPL36AP55 ribosomal protein L36a pseudogene 55 O - 20121230 -9606 100420207 LOC100420207 - - - 10 - mediator complex subunit 28 pseudogene pseudo - - - - 20121230 -9606 100420211 LOC100420211 - - - 6 - SH3-domain binding protein 4 pseudogene pseudo - - - - 20121230 -9606 100420213 RBM11P1 - - HGNC:43743 6 - RNA binding motif protein 11 pseudogene 1 pseudo RBM11P1 RNA binding motif protein 11 pseudogene 1 O - 20121230 -9606 100420214 LOC100420214 - - - 6 - rhomboid domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100420215 LOC100420215 - - - 8 - RNA binding motif protein 45 pseudogene pseudo - - - - 20121230 -9606 100420216 ALOXE3P1 - - HGNC:44238 17 - arachidonate lipoxygenase 3 pseudogene 1 pseudo ALOXE3P1 arachidonate lipoxygenase 3 pseudogene 1 O - 20121230 -9606 100420223 RNMTL1P2 - - HGNC:44906 7 - RNA methyltransferase like 1 pseudogene 2 pseudo RNMTL1P2 RNA methyltransferase like 1 pseudogene 2 O - 20121230 -9606 100420224 CICP12 - - HGNC:37905 7 - capicua homolog (Drosophila) pseudogene 12 pseudo CICP12 capicua homolog (Drosophila) pseudogene 12 O - 20121230 -9606 100420226 LOC100420226 - - - 7 - argininosuccinate synthase 1 pseudogene pseudo - - - - 20121230 -9606 100420228 LOC100420228 - - - X - melanoma antigen family C, 3 pseudogene pseudo - - - - 20121230 -9606 100420230 LOC100420230 - - - X - melanoma antigen family C, 3 pseudogene pseudo - - - - 20121230 -9606 100420245 LOC100420245 - - - X - melanoma antigen family B, 3 pseudogene pseudo - - - - 20121230 -9606 100420247 LOC100420247 - - - X - mitochondrial fission factor pseudogene pseudo - - - - 20121230 -9606 100420249 LOC100420249 - - - X - melanoma antigen family C, 3 pseudogene pseudo - - - - 20121230 -9606 100420250 LOC100420250 - - - X - melanoma antigen family A, 4 pseudogene pseudo - - - - 20121230 -9606 100420251 LOC100420251 - - - 1 - mitochondrial fission factor pseudogene pseudo - - - - 20121230 -9606 100420252 LOC100420252 - - - 1 1p34.2 transmembrane channel-like 6 pseudogene pseudo - - - - 20121230 -9606 100420253 LOC100420253 - - - 1 - C-terminal binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100420254 LOC100420254 - - - 1 - T, brachyury homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100420255 LOC100420255 - - - 1 - collagen, type XXII, alpha 1 pseudogene pseudo - - - - 20121230 -9606 100420257 LOC100420257 - - - 1 - capicua homolog (Drosophila) pseudogene pseudo - - - - 20121209 -9606 100420258 PLA2G12AP1 - - HGNC:39248 1 - phospholipase A2, group XIIA pseudogene 1 pseudo PLA2G12AP1 phospholipase A2, group XIIA pseudogene 1 O - 20121230 -9606 100420259 GDI2P2 - - HGNC:37976 1 - GDP dissociation inhibitor 2 pseudogene 2 pseudo GDI2P2 GDP dissociation inhibitor 2 pseudogene 2 O - 20121230 -9606 100420260 NOTCH2P1 - - HGNC:44253 1 - notch 2 pseudogene 1 pseudo NOTCH2P1 notch 2 pseudogene 1 O - 20121230 -9606 100420262 LOC100420262 - - - 1 - mitochondrial fission factor pseudogene pseudo - - - - 20121230 -9606 100420263 LOC100420263 - - - 1 - capicua homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100420267 LOC100420267 - - - 22 - l(3)mbt-like 4 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100420269 LOC100420269 - - - 9 - fructose-1,6-bisphosphatase 2 pseudogene pseudo - - - - 20121230 -9606 100420273 LOC100420273 - - - 19 - RAD54-like 2 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100420275 LOC100420275 - - - 5 - slowmo homolog 2 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100420277 LOC100420277 - - - 5 - slowmo homolog 2 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100420281 PLA2G12AP2 - - HGNC:39249 13 - phospholipase A2, group XIIA pseudogene 2 pseudo PLA2G12AP2 phospholipase A2, group XIIA pseudogene 2 O - 20121230 -9606 100420287 SEC63P2 - - HGNC:41954 4 - SEC63 homolog (S. cerevisiae) pseudogene 2 pseudo SEC63P2 SEC63 homolog (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100420289 LOC100420289 - - - 4 - TBC1 domain family, member 3H pseudogene pseudo - - - - 20121230 -9606 100420292 SEPHS1P2 - - HGNC:42162 15 - selenophosphate synthetase 1 pseudogene 2 pseudo SEPHS1P2 selenophosphate synthetase 1 pseudogene 2 O - 20121230 -9606 100420293 LOC100420293 - - - 10 - capicua homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100420295 RNMTL1P1 - - HGNC:44905 10 - RNA methyltransferase like 1 pseudogene 1 pseudo RNMTL1P1 RNA methyltransferase like 1 pseudogene 1 O - 20121230 -9606 100420298 LOC100420298 - - - 3 - makorin ring finger protein 1 pseudogene pseudo - - - - 20121230 -9606 100420300 FTH1P23 - FTHL23 HGNC:37641 3 - ferritin, heavy polypeptide 1 pseudogene 23 pseudo FTH1P23 ferritin, heavy polypeptide 1 pseudogene 23 O - 20121230 -9606 100420303 FTH1P26 - FTHL26 HGNC:37644 6 - ferritin, heavy polypeptide 1 pseudogene 26 pseudo FTH1P26 ferritin, heavy polypeptide 1 pseudogene 26 O - 20121230 -9606 100420304 LOC100420304 - - - 6 - alpha-methylacyl-CoA racemase pseudogene pseudo - - - - 20121230 -9606 100420305 LOC100420305 - - - 6 - unc-93 homolog A (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100420307 LOC100420307 - - - 8 - N-terminal asparagine amidase pseudogene pseudo - - - - 20121230 -9606 100420308 ITM2BP1 - HsT33912|ITM2BP HGNC:20919 17 - integral membrane protein 2B pseudogene 1 pseudo ITM2BP1 integral membrane protein 2B pseudogene 1 O - 20121230 -9606 100420311 LOC100420311 - - - 17 - TBC1 domain family, member 3 pseudogene pseudo - - - - 20121230 -9606 100420317 LOC100420317 - - - X - charged multivesicular body protein 5 pseudogene pseudo - - - - 20121230 -9606 100420318 LOC100420318 - - - X - melanoma antigen family A, 12 pseudogene pseudo - - - - 20121230 -9606 100420320 LOC100420320 - - - X - kinesin heavy chain member 2A pseudogene pseudo - - - - 20121230 -9606 100420321 LOC100420321 - - - X - melanoma antigen family A, 11 pseudogene pseudo - - - - 20121230 -9606 100420322 LOC100420322 - - - X - melanoma antigen family A, 10 pseudogene pseudo - - - - 20121230 -9606 100420323 LOC100420323 - - - X - melanoma antigen family B, 18 pseudogene pseudo - - - - 20121230 -9606 100420324 LOC100420324 - - - X - melanoma antigen family A, 10 pseudogene pseudo - - - - 20121230 -9606 100420325 LOC100420325 - - - X - melanoma antigen family B, 16 pseudogene pseudo - - - - 20121230 -9606 100420326 LOC100420326 - - - X - ferritin, heavy polypeptide 1 pseudogene pseudo - - - - 20121230 -9606 100420331 LOC100420331 - - - X - melanoma antigen family A, 10 pseudogene pseudo - - - - 20121230 -9606 100420334 LOC100420334 - - - X - melanoma antigen family A, 11 pseudogene pseudo - - - - 20121230 -9606 100420336 LOC100420336 - - - 1 - ferritin, heavy polypeptide 1 pseudogene pseudo - - - - 20121230 -9606 100420338 LOC100420338 - - - 1 - charged multivesicular body protein 5 pseudogene pseudo - - - - 20121230 -9606 100420339 LOC100420339 - - - 1 - opioid growth factor receptor pseudogene pseudo - - - - 20121209 -9606 100420341 SEC63P1 - - HGNC:41953 1 - SEC63 homolog (S. cerevisiae) pseudogene 1 pseudo SEC63P1 SEC63 homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100420342 CHIAP1 - - HGNC:44462 1 - chitinase, acidic pseudogene 1 pseudo CHIAP1 chitinase, acidic pseudogene 1 O - 20121230 -9606 100420343 LOC100420343 - - - 14 - translin-associated factor X pseudogene pseudo - - - - 20121230 -9606 100420347 LOC100420347 - - - 14 - polycomb group ring finger 3 pseudogene pseudo - - - - 20121230 -9606 100420351 LOC100420351 - - - 2 - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20121230 -9606 100420353 LOC100420353 - - - 2 - tripartite motif containing 60 pseudogene pseudo - - - - 20121230 -9606 100420354 LOC100420354 - - - 9 - extracellular matrix protein 1 pseudogene pseudo - - - - 20121230 -9606 100420356 LOC100420356 - - - 12 - N-terminal asparagine amidase pseudogene pseudo - - - - 20121230 -9606 100420358 LOC100420358 - - - 11 - BUD13 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100420359 LOC100420359 - - - 11 - replication protein A2, 32kDa pseudogene pseudo - - - - 20121230 -9606 100420362 TRIM60P1Y - TRIM60P1|TRIM60PY1 HGNC:38403 Y - tripartite motif containing 60 pseudogene 1, Y-linked pseudo TRIM60P1Y tripartite motif containing 60 pseudogene 1, Y-linked O - 20121230 -9606 100420363 TRIM60P2Y - TRIM60P2|TRIM60PY2 HGNC:38405 Y - tripartite motif containing 60 pseudogene 2, Y-linked pseudo TRIM60P2Y tripartite motif containing 60 pseudogene 2, Y-linked O - 20121230 -9606 100420364 TRIM60P3Y - TRIM60P3|TRIM60PY3 HGNC:38409 Y - tripartite motif containing 60 pseudogene 3, Y-linked pseudo TRIM60P3Y tripartite motif containing 60 pseudogene 3, Y-linked O - 20121230 -9606 100420367 TRIM60P4Y - TRIM60P4|TRIM60PY4 HGNC:38425 Y - tripartite motif containing 60 pseudogene 4, Y-linked pseudo TRIM60P4Y tripartite motif containing 60 pseudogene 4, Y-linked O - 20121230 -9606 100420368 TRIM60P5Y - TRIM60P5|TRIM60PY5 HGNC:38430 Y - tripartite motif containing 60 pseudogene 5, Y-linked pseudo TRIM60P5Y tripartite motif containing 60 pseudogene 5, Y-linked O - 20121209 -9606 100420369 TRIM60P6Y - TRIM60P6|TRIM60PY6 HGNC:38432 Y - tripartite motif containing 60 pseudogene 6, Y-linked pseudo TRIM60P6Y tripartite motif containing 60 pseudogene 6, Y-linked O - 20121209 -9606 100420370 TRIM60P7Y - TRIM60P7|TRIM60PY7 HGNC:38433 Y - tripartite motif containing 60 pseudogene 7, Y-linked pseudo TRIM60P7Y tripartite motif containing 60 pseudogene 7, Y-linked O - 20121209 -9606 100420373 TRIM60P8Y - TRIM60P8|TRIM60PY8 HGNC:38458 Y - tripartite motif containing 60 pseudogene 8, Y-linked pseudo TRIM60P8Y tripartite motif containing 60 pseudogene 8, Y-linked O - 20121209 -9606 100420374 TRIM60P9Y - TRIM60P9|TRIM60PY9 HGNC:38459 Y - tripartite motif containing 60 pseudogene 9, Y-linked pseudo TRIM60P9Y tripartite motif containing 60 pseudogene 9, Y-linked O - 20121209 -9606 100420376 TRIM60P10Y - TRIM60P10|TRIM60PY10 HGNC:38462 Y - tripartite motif containing 60 pseudogene 10, Y-linked pseudo TRIM60P10Y tripartite motif containing 60 pseudogene 10, Y-linked O - 20121209 -9606 100420377 TRIM60P11Y - TRIM60P11|TRIM60PY11 HGNC:38463 Y - tripartite motif containing 60 pseudogene 11, Y-linked pseudo TRIM60P11Y tripartite motif containing 60 pseudogene 11, Y-linked O - 20121209 -9606 100420378 TRIM60P12Y - TRIM60P12|TRIM60PY12 HGNC:38465 Y - tripartite motif containing 60 pseudogene 12, Y-linked pseudo TRIM60P12Y tripartite motif containing 60 pseudogene 12, Y-linked O - 20121209 -9606 100420385 LOC100420385 - - - 4 - tripartite motif-containing 75 pseudogene pseudo - - - - 20121230 -9606 100420386 LOC100420386 - - - 4 - tripartite motif-containing 75 pseudogene pseudo - - - - 20121230 -9606 100420389 LOC100420389 - - - 10 - N-terminal asparagine amidase pseudogene pseudo - - - - 20121230 -9606 100420392 BTBD7P2 - - HGNC:44876 10 - BTB (POZ) domain containing 7 pseudogene 2 pseudo BTBD7P2 BTB (POZ) domain containing 7 pseudogene 2 O - 20121230 -9606 100420393 TPMTP2 - - HGNC:44565 3 - thiopurine S-methyltransferase pseudogene 2 pseudo TPMTP2 thiopurine S-methyltransferase pseudogene 2 O - 20121230 -9606 100420394 LOC100420394 - - - 3 - 5'-nucleotidase, cytosolic III pseudogene pseudo - - - - 20121230 -9606 100420401 LOC100420401 - - - 6 - BTB (POZ) domain containing 10 pseudogene pseudo - - - - 20121230 -9606 100420403 LOC100420403 - - - 8 - K(lysine) acetyltransferase 2B pseudogene pseudo - - - - 20121230 -9606 100420404 LOC100420404 - - - 8 - DENN/MADD domain containing 4A pseudogene pseudo - - - - 20121230 -9606 100420405 TRIM60P15 - - HGNC:38487 8 - tripartite motif containing 60 pseudogene 15 pseudo TRIM60P15 tripartite motif containing 60 pseudogene 15 O - 20121230 -9606 100420406 IRF5P1 - - HGNC:41981 8 - interferon regulatory factor 5 pseudogene 1 pseudo IRF5P1 interferon regulatory factor 5 pseudogene 1 O - 20121230 -9606 100420408 LOC100420408 - - - 17 - TBC1 domain family, member 29 pseudogene pseudo - - - - 20121230 -9606 100420410 H3F3BP2 - - HGNC:42979 17 - H3 histone, family 3B (H3.3B) pseudogene 2 pseudo H3F3BP2 H3 histone, family 3B (H3.3B) pseudogene 2 O - 20121230 -9606 100420412 TRIM60P16 - - HGNC:38488 7 - tripartite motif containing 60 pseudogene 16 pseudo TRIM60P16 tripartite motif containing 60 pseudogene 16 O - 20121230 -9606 100420413 LOC100420413 - - - 7 - G protein-coupled receptor 141 pseudogene pseudo - - - - 20121230 -9606 100420414 TRIM60P17 - - HGNC:38489 7 - tripartite motif containing 60 pseudogene 17 pseudo TRIM60P17 tripartite motif containing 60 pseudogene 17 O - 20121230 -9606 100420415 TRIM60P18 - - HGNC:38490 7 - tripartite motif containing 60 pseudogene 18 pseudo TRIM60P18 tripartite motif containing 60 pseudogene 18 O - 20121230 -9606 100420418 LOC100420418 - - - 1 - tripartite motif containing 60 pseudogene pseudo - - - - 20121230 -9606 100420420 LOC100420420 - - - 1 - tripartite motif containing 39 pseudogene pseudo - - - - 20121230 -9606 100420423 LOC100420423 - - - 1 - FK506 binding protein 8, 38kDa pseudogene pseudo - - - - 20121230 -9606 100420424 LOC100420424 - - - 14 - Vac14 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100420428 LOC100420428 - - - 2 - ubiquitin specific peptidase 21 pseudogene pseudo - - - - 20121230 -9606 100420429 LOC100420429 - - - 2 - ubiquitin specific peptidase 15 pseudogene pseudo - - - - 20121230 -9606 100420430 LOC100420430 - - - 2 - glioblastoma amplified sequence pseudogene pseudo - - - - 20121230 -9606 100420432 LOC100420432 - - - 2 - ubiquitin specific peptidase 26 pseudogene pseudo - - - - 20121230 -9606 100420434 LOC100420434 - - - 2 - stress-induced-phosphoprotein 1 pseudogene pseudo - - - - 20121230 -9606 100420435 LOC100420435 - - - 2 - ubiquitin specific peptidase 21 pseudogene pseudo - - - - 20121230 -9606 100420436 LOC100420436 - - - 2 - stress-induced-phosphoprotein 1 pseudogene pseudo - - - - 20121230 -9606 100420437 LOC100420437 - - - 9 - ubiquitin specific peptidase 12 pseudogene pseudo - - - - 20121230 -9606 100420438 LOC100420438 - - - 9 - ubiquitin specific peptidase 12 pseudogene pseudo - - - - 20121230 -9606 100420439 LOC100420439 - - - 9 - ubiquitin specific peptidase 12 pseudogene pseudo - - - - 20121230 -9606 100420440 LOC100420440 - - - 9 - ubiquitin specific peptidase 12 pseudogene pseudo - - - - 20121230 -9606 100420442 LOC100420442 - - - 12 - tripartite motif-containing 75 pseudogene pseudo - - - - 20121230 -9606 100420446 LOC100420446 - - - 11 - tripartite motif containing 48 pseudogene pseudo - - - - 20121230 -9606 100420449 LOC100420449 - - - 11 - tripartite motif containing 48 pseudogene pseudo - - - - 20121230 -9606 100420450 SERBP1P6 - - HGNC:44635 5 - SERPINE1 mRNA binding protein 1 pseudogene 6 pseudo SERBP1P6 SERPINE1 mRNA binding protein 1 pseudogene 6 O - 20121230 -9606 100420457 NT5CP3 - - HGNC:39789 13 - 5',3'-nucleotidase, cytosolic pseudogene 3 pseudo NT5CP3 5',3'-nucleotidase, cytosolic pseudogene 3 O - 20121230 -9606 100420458 TATDN2P3 - - HGNC:39256 13 - TatD DNase domain containing 2 pseudogene 3 pseudo TATDN2P3 TatD DNase domain containing 2 pseudogene 3 O - 20121230 -9606 100420462 LDHAL6EP - - HGNC:44241 4 - lactate dehydrogenase A-like 6E, pseudogene pseudo LDHAL6EP lactate dehydrogenase A-like 6E, pseudogene O - 20121230 -9606 100420464 LOC100420464 - - - 4 - salvador homolog 1 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100420466 LOC100420466 - - - 15 - dual specificity phosphatase 3 pseudogene pseudo - - - - 20121230 -9606 100420467 LOC100420467 - - - 10 - glyoxalase domain containing 4 pseudogene pseudo - - - - 20121230 -9606 100420471 LOC100420471 - - - 3 - ADP-ribosylation factor-like 4A pseudogene pseudo - - - - 20121230 -9606 100420473 LOC100420473 - - - 3 - dual specificity phosphatase 12 pseudogene pseudo - - - - 20121230 -9606 100420476 SSR1P1 - - HGNC:39273 6 - signal sequence receptor, alpha pseudogene 1 pseudo SSR1P1 signal sequence receptor, alpha pseudogene 1 O - 20121230 -9606 100420477 LDHAL6FP - - HGNC:44240 6 - lactate dehydrogenase A-like 6F, pseudogene pseudo LDHAL6FP lactate dehydrogenase A-like 6F, pseudogene O - 20121230 -9606 100420480 LOC100420480 - - - 8 - polo-like kinase 4 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100420482 LOC100420482 - - - 17 - G protein-coupled receptor 160 pseudogene pseudo - - - - 20121230 -9606 100420484 LOC100420484 - - - 18 - thymocyte selection associated pseudogene pseudo - - - - 20121230 -9606 100420489 LOC100420489 - - - 16 - tripartite motif containing 13 pseudogene pseudo - - - - 20121230 -9606 100420494 LOC100420494 - - - 1 - ADP-ribosylation factor-like 16 pseudogene pseudo - - - - 20121230 -9606 100420499 LOC100420499 - - - 2 - BAI1-associated protein 2-like 1 pseudogene pseudo - - - - 20121230 -9606 100420500 LOC100420500 - - - 2 - galactose-3-O-sulfotransferase 1 pseudogene pseudo - - - - 20121230 -9606 100420501 YRDCP1 - - HGNC:39919 9 - yrdC domain containing (E. coli) pseudogene 1 pseudo YRDCP1 yrdC domain containing (E. coli) pseudogene 1 O - 20121230 -9606 100420502 LOC100420502 - - - 9 - cell division cycle associated 4 pseudogene pseudo - - - - 20121230 -9606 100420503 LOC100420503 - - - 12 - egl nine homolog 3 (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100420505 ADAM1B - - HGNC:44366 12 - ADAM metallopeptidase domain 1B, pseudogene pseudo ADAM1B ADAM metallopeptidase domain 1B, pseudogene O - 20121230 -9606 100420508 LDHAL6DP - - HGNC:44239 11 - lactate dehydrogenase A-like 6D, pseudogene pseudo LDHAL6DP lactate dehydrogenase A-like 6D, pseudogene O - 20121230 -9606 100420509 LOC100420509 - - - 11 - X-linked inhibitor of apoptosis pseudogene pseudo - - - - 20121230 -9606 100420510 LOC100420510 - - - 11 - myotubularin related protein 12 pseudogene pseudo - - - - 20121230 -9606 100420512 RPEP1 - - HGNC:44520 5 - ribulose-5-phosphate-3-epimerase pseudogene 1 pseudo RPEP1 ribulose-5-phosphate-3-epimerase pseudogene 1 O - 20121230 -9606 100420513 LOC100420513 - - - 5 - TNF receptor-associated factor 4 pseudogene pseudo - - - - 20121230 -9606 100420514 LOC100420514 - - - 5 - coiled-coil domain containing 86 pseudogene pseudo - - - - 20121230 -9606 100420515 LOC100420515 - - - 5 - CTD nuclear envelope phosphatase 1 pseudogene pseudo - - - - 20121230 -9606 100420519 RANP8 - - HGNC:39863 13 - RAN, member RAS oncogene family pseudogene 8 pseudo RANP8 RAN, member RAS oncogene family pseudogene 8 O - 20121230 -9606 100420520 MOCS3P2 - - HGNC:39444 13 - molybdenum cofactor synthesis 3 pseudogene 2 pseudo MOCS3P2 molybdenum cofactor synthesis 3 pseudogene 2 O - 20121230 -9606 100420526 LOC100420526 - - - 10 - PRKC, apoptosis, WT1, regulator pseudogene pseudo - - - - 20121230 -9606 100420527 RBBP4P2 - - HGNC:42369 3 - retinoblastoma binding protein 4 pseudogene 2 pseudo RBBP4P2 retinoblastoma binding protein 4 pseudogene 2 O - 20121230 -9606 100420528 LOC100420528 - - - 3 - CTD nuclear envelope phosphatase 1 pseudogene pseudo - - - - 20121230 -9606 100420530 LOC100420530 - - - 6 - mucin 4, cell surface associated pseudogene pseudo - - - - 20121230 -9606 100420531 LOC100420531 - - - 6 - abhydrolase domain containing 10 pseudogene pseudo - - - - 20121230 -9606 100420532 LOC100420532 - - - 8 - ribosomal protein S4, Y-linked 2 pseudogene pseudo - - - - 20121230 -9606 100420534 LOC100420534 - - - 8 - Rho GTPase activating protein 20 pseudogene pseudo - - - - 20121230 -9606 100420535 LOC100420535 - - - 16 - PRKC, apoptosis, WT1, regulator pseudogene pseudo - - - - 20121230 -9606 100420536 LOC100420536 - - - 16 - islet cell autoantigen 1, 69kDa pseudogene pseudo - - - - 20121230 -9606 100420539 LOC100420539 - - - 7 - FK506 binding protein 10, 65 kDa pseudogene pseudo - - - - 20121230 -9606 100420540 LOC100420540 - - - 7 - cell division cycle associated 8 pseudogene pseudo - - - - 20121230 -9606 100420541 LOC100420541 - - - 7 - abhydrolase domain containing 15 pseudogene pseudo - - - - 20121230 -9606 100420545 LOC100420545 - - - 7 - abhydrolase domain containing 15 pseudogene pseudo - - - - 20121230 -9606 100420546 LOC100420546 - - - 7 - general transcription factor IIi pseudogene pseudo - - - - 20121230 -9606 100420547 LOC100420547 - - - 7 - GTF2I repeat domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100420548 LOC100420548 - - - 7 - GTF2I repeat domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100420549 LOC100420549 - - - 7 - coiled-coil domain containing 41 pseudogene pseudo - - - - 20121230 -9606 100420551 LOC100420551 - - - X - synovial sarcoma, X breakpoint 5 pseudogene pseudo - - - - 20121230 -9606 100420552 RBBP8P1 - - HGNC:39583 X - retinoblastoma binding protein 8 pseudogene 1 pseudo RBBP8P1 retinoblastoma binding protein 8 pseudogene 1 O - 20121230 -9606 100420555 RPEP3 - - HGNC:44522 1 - ribulose-5-phosphate-3-epimerase pseudogene 3 pseudo RPEP3 ribulose-5-phosphate-3-epimerase pseudogene 3 O - 20121230 -9606 100420556 LOC100420556 - - - 1 - carnitine palmitoyltransferase 2 pseudogene pseudo - - - - 20121230 -9606 100420557 NSRP1P1 - CCDC55P1 HGNC:38087 1 - nuclear speckle splicing regulatory protein 1 pseudogene 1 pseudo NSRP1P1 nuclear speckle splicing regulatory protein 1 pseudogene 1 O - 20121230 -9606 100420558 LOC100420558 - - - 1 - cell division cycle associated 4 pseudogene pseudo - - - - 20121230 -9606 100420563 LOC100420563 - - - 14 - ADAM metallopeptidase domain 20 pseudogene pseudo - - - - 20121230 -9606 100420567 PGAM1P6 - - HGNC:42453 2 - phosphoglycerate mutase 1 pseudogene 6 pseudo PGAM1P6 phosphoglycerate mutase 1 pseudogene 6 O - 20121230 -9606 100420568 LOC100420568 - - - 2 - voltage-dependent anion channel 1 pseudogene pseudo - - - - 20121230 -9606 100420569 LOC100420569 - - - 2 - ribosomal L24 domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100420571 LOC100420571 - - - 2 - RAB1A, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100420572 LOC100420572 - - - 2 - glutathione S-transferase alpha 5 pseudogene pseudo - - - - 20121230 -9606 100420574 LOC100420574 - - - 2 - voltage-dependent anion channel 2 pseudogene pseudo - - - - 20121230 -9606 100420575 LOC100420575 - - - 2 - leucine rich repeat containing 57 pseudogene pseudo - - - - 20121230 -9606 100420576 LOC100420576 - - - 9 - death-associated protein kinase 1 pseudogene pseudo - - - - 20121230 -9606 100420580 LOC100420580 - - - 12 - taste receptor, type 2, member 7 pseudogene pseudo - - - - 20121230 -9606 100420583 LOC100420583 - - - 12 - taste receptor, type 2, member 7 pseudogene pseudo - - - - 20121230 -9606 100420584 LOC100420584 - - - 12 - microtubule-associated protein 6 pseudogene pseudo - - - - 20121230 -9606 100420586 LOC100420586 - - - 19 - Rho GTPase activating protein 33 pseudogene pseudo - - - - 20121230 -9606 100420587 LOC100420587 - - - 19 - SHC SH2-domain binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100420588 LOC100420588 - - - 11 - coiled-coil domain containing 58 pseudogene pseudo - - - - 20121230 -9606 100420589 LOC100420589 - - - 11 - leucine rich repeat containing 6 pseudogene pseudo - - - - 20121230 -9606 100420590 RPEP6 - - HGNC:44525 11 - ribulose-5-phosphate-3-epimerase pseudogene 6 pseudo RPEP6 ribulose-5-phosphate-3-epimerase pseudogene 6 O - 20121230 -9606 100420591 LOC100420591 - - - 11 - oxysterol binding protein-like 9 pseudogene pseudo - - - - 20121230 -9606 100420593 LOC100420593 - - - 5 - general transcription factor IIIA pseudogene pseudo - - - - 20121230 -9606 100420607 RBBP8P2 - - HGNC:39584 13 - retinoblastoma binding protein 8 pseudogene 2 pseudo RBBP8P2 retinoblastoma binding protein 8 pseudogene 2 O - 20121230 -9606 100420608 RPP40P2 - - HGNC:39770 13 - ribonuclease P/MRP 40kDa subunit pseudogene 2 pseudo RPP40P2 ribonuclease P/MRP 40kDa subunit pseudogene 2 O - 20121230 -9606 100420611 LOC100420611 - - - 20 - coiled-coil domain containing 84 pseudogene pseudo - - - - 20121230 -9606 100420612 LOC100420612 - - - 20 - endoplasmic reticulum protein 29 pseudogene pseudo - - - - 20121230 -9606 100420613 LOC100420613 - - - 4 - leucine rich repeat containing 34 pseudogene pseudo - - - - 20121230 -9606 100420615 LOC100420615 - - - 15 15q21.2 signal peptide peptidase like 2A pseudogene pseudo - - - - 20121230 -9606 100420617 LOC100420617 - - - 10 - FERM and PDZ domain containing 2 pseudogene pseudo - - - - 20121209 -9606 100420618 LOC100420618 - - - 10 - phospholipase D family, member 5 pseudogene pseudo - - - - 20121230 -9606 100420620 LOC100420620 - - - 3 - coiled-coil domain containing 90A pseudogene pseudo - - - - 20121230 -9606 100420621 MTAPP2 - - HGNC:42443 3 - methylthioadenosine phosphorylase pseudogene 2 pseudo MTAPP2 methylthioadenosine phosphorylase pseudogene 2 O - 20121230 -9606 100420627 LOC100420627 - - - 6 - glutathione S-transferase alpha 5 pseudogene pseudo - - - - 20121230 -9606 100420631 LOC100420631 - - - 6 - beta-transducin repeat containing pseudogene pseudo - - - - 20121230 -9606 100420633 PGAM1P10 - - HGNC:42457 6 - phosphoglycerate mutase 1 pseudogene 10 pseudo PGAM1P10 phosphoglycerate mutase 1 pseudogene 10 O - 20121230 -9606 100420638 LOC100420638 - - - 17 - chloride intracellular channel 1 pseudogene pseudo - - - - 20121230 -9606 100420641 LOC100420641 - - - 16 - TNF receptor-associated factor 7, E3 ubiquitin protein ligase pseudogene pseudo - - - - 20121230 -9606 100420642 LOC100420642 - - - 16 - Rho GTPase activating protein 20 pseudogene pseudo - - - - 20121230 -9606 100420644 LOC100420644 - - - 16 - cell division cycle associated 8 pseudogene pseudo - - - - 20121230 -9606 100420647 LOC100420647 - - - 7 - voltage-dependent anion channel 3 pseudogene pseudo - - - - 20121230 -9606 100420648 LOC100420648 - - - 7 - Der1-like domain family, member 2 pseudogene pseudo - - - - 20121230 -9606 100420650 PGAM1P7 - - HGNC:42454 X - phosphoglycerate mutase 1 pseudogene 7 pseudo PGAM1P7 phosphoglycerate mutase 1 pseudogene 7 O - 20121230 -9606 100420653 LOC100420653 - - - X - guanosine monophosphate reductase pseudogene pseudo - - - - 20121230 -9606 100420656 QTRT1P1 - - HGNC:39179 X - queuine tRNA-ribosyltransferase 1 pseudogene 1 pseudo QTRT1P1 queuine tRNA-ribosyltransferase 1 pseudogene 1 O - 20121230 -9606 100420658 LOC100420658 - - - 1 - post-GPI attachment to proteins 2 pseudogene pseudo - - - - 20121230 -9606 100420660 PGAM1P11 - - HGNC:42464 1 - phosphoglycerate mutase 1 pseudogene 11 pseudo PGAM1P11 phosphoglycerate mutase 1 pseudogene 11 O - 20121230 -9606 100420665 RPEP4 - - HGNC:44523 22 - ribulose-5-phosphate-3-epimerase pseudogene 4 pseudo RPEP4 ribulose-5-phosphate-3-epimerase pseudogene 4 O - 20121230 -9606 100420666 LOC100420666 - - - 2 - lysine (K)-specific demethylase 3A pseudogene pseudo - - - - 20121230 -9606 100420667 LOC100420667 - - - 2 - solute carrier family 19, member 3 pseudogene pseudo - - - - 20121230 -9606 100420668 LOC100420668 - - - 2 - chromosome 2 open reading frame 16 pseudogene pseudo - - - - 20121230 -9606 100420669 LOC100420669 - - - 2 - solute carrier family 44, member 3 pseudogene pseudo - - - - 20121230 -9606 100420670 LOC100420670 - - - 9 - nuclear pore associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100420671 LOC100420671 - - - 9 - nuclear pore associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100420673 LOC100420673 - - - 12 - RAB5A, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100420678 LOC100420678 - - - 12 - coiled-coil domain containing 150 pseudogene pseudo - - - - 20121230 -9606 100420679 LOC100420679 - - - 11 - signal recognition particle 19kDa pseudogene pseudo - - - - 20121230 -9606 100420680 LOC100420680 - - - 11 - coiled-coil domain containing 90B pseudogene pseudo - - - - 20121230 -9606 100420681 PGAM1P9 - - HGNC:42456 11 - phosphoglycerate mutase 1 pseudogene 9 pseudo PGAM1P9 phosphoglycerate mutase 1 pseudogene 9 O - 20121230 -9606 100420683 LOC100420683 - - - 5 - chromosome X open reading frame 67 pseudogene pseudo - - - - 20121230 -9606 100420689 CASC4P1 - - HGNC:39251 13 - cancer susceptibility candidate 4 pseudogene 1 pseudo CASC4P1 cancer susceptibility candidate 4 pseudogene 1 O - 20121230 -9606 100420693 LOC100420693 - - - 4 - solute carrier family 47, member 2 pseudogene pseudo - - - - 20121230 -9606 100420694 LOC100420694 - - - 4 - transmembrane protease, serine 11B pseudogene pseudo - - - - 20121230 -9606 100420695 ABT1P1 - - HGNC:39557 4 - activator of basal transcription 1 pseudogene 1 pseudo ABT1P1 activator of basal transcription 1 pseudogene 1 O - 20121230 -9606 100420707 LOC100420707 - - - 15 - DDB1 and CUL4 associated factor 6 pseudogene pseudo - - - - 20121230 -9606 100420710 TPST2P1 - - HGNC:44425 15 - tyrosylprotein sulfotransferase 2 pseudogene 1 pseudo TPST2P1 tyrosylprotein sulfotransferase 2 pseudogene 1 O - 20121230 -9606 100420711 LOC100420711 - - - 15 - thioesterase superfamily member 4 pseudogene pseudo - - - - 20121230 -9606 100420734 LOC100420734 - - - 10 - RAB5C, member RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100420737 LOC100420737 - - - 10 - neurofilament, medium polypeptide pseudogene pseudo - - - - 20121230 -9606 100420738 LOC100420738 - - - 3 - chromosome 9 open reading frame 78 pseudogene pseudo - - - - 20121230 -9606 100420741 LOC100420741 - - - 6 - adenosylmethionine decarboxylase 1 pseudogene pseudo - - - - 20121230 -9606 100420742 LOC100420742 - - - 6 - tetratricopeptide repeat domain 22 pseudogene pseudo - - - - 20121230 -9606 100420743 LOC100420743 - - - 6 - chromosome 6 open reading frame 58 pseudogene pseudo - - - - 20121230 -9606 100420746 LOC100420746 hCG_1644355 - - 8 8q23.3 NADH dehydrogenase (ubiquinone) complex I, assembly factor 7 pseudogene pseudo - - - - 20121230 -9606 100420748 LOC100420748 - - - 8 - suppressor of cytokine signaling 5 pseudogene pseudo - - - - 20121230 -9606 100420752 SRP72P1 - - HGNC:31095 18 18q21.1 signal recognition particle 72kDa pseudogene 1 pseudo SRP72P1 signal recognition particle 72kDa pseudogene 1 O - 20121230 -9606 100420754 SOCS5P1 - - HGNC:44597 7 - suppressor of cytokine signaling 5 pseudogene 1 pseudo SOCS5P1 suppressor of cytokine signaling 5 pseudogene 1 O - 20121230 -9606 100420758 LOC100420758 - - - X - poly(A) binding protein, nuclear 1 pseudogene pseudo - - - - 20121230 -9606 100420759 LOC100420759 - - - X - suppressor of cytokine signaling 6 pseudogene pseudo - - - - 20121230 -9606 100420760 LOC100420760 - - - X - coronin, actin binding protein, 1C pseudogene pseudo - - - - 20121230 -9606 100420763 LOC100420763 - - - 14 - cytoskeleton associated protein 2 pseudogene pseudo - - - - 20121230 -9606 100420765 LOC100420765 - - - 14 - leucine-rich pentatricopeptide repeat containing pseudogene pseudo - - - - 20121230 -9606 100420769 LOC100420769 - - - 22 - glutathione S-transferase theta 1 pseudogene pseudo - - - - 20121230 -9606 100420770 LOC100420770 - - - 2 - chromosome 12 open reading frame 10 pseudogene pseudo - - - - 20121230 -9606 100420772 LOC100420772 - - - 2 - coordinator of PRMT5, differentiation stimulator pseudogene pseudo - - - - 20121230 -9606 100420774 LOC100420774 - - - 2 - zinc finger, DHHC-type containing 6 pseudogene pseudo - - - - 20121230 -9606 100420775 LOC100420775 - - - 2 - 5'-nucleotidase domain containing 2 pseudogene pseudo - - - - 20121230 -9606 100420776 LOC100420776 - - - 9 - contactin associated protein-like 3 pseudogene pseudo - - - - 20121230 -9606 100420777 LOC100420777 - - - 9 - contactin associated protein-like 3 pseudogene pseudo - - - - 20121230 -9606 100420778 LOC100420778 - - - 9 - chromosome 2 open reading frame 27A pseudogene pseudo - - - - 20121230 -9606 100420779 LOC100420779 - - - 9 - chromosome 16 open reading frame 70 pseudogene pseudo - - - - 20121230 -9606 100420784 LOC100420784 - - - 9 - chromosome 2 open reading frame 27A pseudogene pseudo - - - - 20121209 -9606 100420785 LOC100420785 - - - 9 - contactin associated protein-like 3 pseudogene pseudo - - - - 20121230 -9606 100420786 LOC100420786 - - - 9 - contactin associated protein-like 3 pseudogene pseudo - - - - 20121209 -9606 100420787 LOC100420787 - - - 9 - contactin associated protein-like 3 pseudogene pseudo - - - - 20121209 -9606 100420788 LOC100420788 - - - 9 - chromosome 2 open reading frame 27A pseudogene pseudo - - - - 20121230 -9606 100420789 LOC100420789 - - - 9 - chromosome 2 open reading frame 27A pseudogene pseudo - - - - 20121230 -9606 100420790 LOC100420790 - - - 9 - glucosamine-6-phosphate deaminase 2 pseudogene pseudo - - - - 20121230 -9606 100420792 LOC100420792 - - - 12 - Nedd4 family interacting protein 1 pseudogene pseudo - - - - 20121230 -9606 100420794 LOC100420794 - - - 12 - RE1-silencing transcription factor pseudogene pseudo - - - - 20121230 -9606 100420797 LOC100420797 - - - 19 - Fc fragment of IgG binding protein pseudogene pseudo - - - - 20121230 -9606 100420798 LOC100420798 - - - 19 - poly(A) binding protein, nuclear 1 pseudogene pseudo - - - - 20121230 -9606 100420800 LOC100420800 - - - 11 - suppressor of cytokine signaling 6 pseudogene pseudo - - - - 20121230 -9606 100420801 LOC100420801 - - - 11 - lysine (K)-specific demethylase 4D pseudogene pseudo - - - - 20121230 -9606 100420802 LOC100420802 - - - 11 - lysine (K)-specific demethylase 4D pseudogene pseudo - - - - 20121230 -9606 100420803 LOC100420803 - - - 11 - lysine (K)-specific demethylase 4D pseudogene pseudo - - - - 20121230 -9606 100420804 LOC100420804 - - - 5 - zinc finger CCCH-type containing 14 pseudogene pseudo - - - - 20121230 -9606 100420811 C2orf27AP1 - - HGNC:38413 Y - chromosome 2 open reading frame 27A pseudogene 1 pseudo C2orf27AP1 chromosome 2 open reading frame 27A pseudogene 1 O - 20121230 -9606 100420818 LOC100420818 - - - 4 - family with sequence similarity 176, member C pseudogene pseudo - - - - 20121230 -9606 100420821 LOC100420821 - - - 4 - family with sequence similarity 176, member C pseudogene pseudo - - - - 20121230 -9606 100420823 LOC100420823 - - - 15 - family with sequence similarity 208, member A pseudogene pseudo - - - - 20121230 -9606 100420827 LOC100420827 - - - 10 - nuclear pore associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100420828 LOC100420828 - - - 10 - nuclear pore associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100420829 LOC100420829 - - - 10 - nuclear pore associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100420830 LOC100420830 - - - 10 - nuclear pore associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100420831 LOC100420831 - - - 3 - chromosome 1 open reading frame 106 pseudogene pseudo - - - - 20121230 -9606 100420832 LOC100420832 - - - 3 - cysteine and glycine-rich protein 2 pseudogene pseudo - - - - 20121230 -9606 100420833 FGFR3P4 - - HGNC:37949 3 - fibroblast growth factor receptor 3 pseudogene 4 pseudo FGFR3P4 fibroblast growth factor receptor 3 pseudogene 4 O - 20121230 -9606 100420834 SRRM1P2 - - HGNC:38163 3 - serine/arginine repetitive matrix 1 pseudogene 2 pseudo SRRM1P2 serine/arginine repetitive matrix 1 pseudogene 2 O - 20121230 -9606 100420839 LOC100420839 - - - 6 - chromosome 18 open reading frame 21 pseudogene pseudo - - - - 20121230 -9606 100420841 LOC100420841 - - - 6 - katanin p80 subunit B-like 1 pseudogene pseudo - - - - 20121230 -9606 100420843 LOC100420843 - - - 6 - chromosome 16 open reading frame 88 pseudogene pseudo - - - - 20121230 -9606 100420845 LOC100420845 - - - 8 - solute carrier family 25, member 43 pseudogene pseudo - - - - 20121230 -9606 100420848 LOC100420848 - - - 17 - Myb/SANT-like DNA-binding domain containing 3 pseudogene pseudo - - - - 20121230 -9606 100420850 LOC100420850 - - - 17 - leucine rich repeat containing 37B pseudogene pseudo - - - - 20121209 -9606 100420851 LOC100420851 - - - 17 - nitric oxide synthase 2, inducible pseudogene pseudo - - - - 20121230 -9606 100420852 LOC100420852 - - - 17 - nitric oxide synthase 2, inducible pseudogene pseudo - - - - 20121230 -9606 100420853 LOC100420853 - - - 17 - nitric oxide synthase 2, inducible pseudogene pseudo - - - - 20121230 -9606 100420854 LOC100420854 - - - 17 - speedy homolog E1 (Xenopus laevis) pseudogene pseudo - - - - 20121230 -9606 100420859 LOC100420859 - - - 16 - chromosome 2 open reading frame 69 pseudogene pseudo - - - - 20121230 -9606 100420863 LOC100420863 - - - 7 - family with sequence similarity 176, member C pseudogene pseudo - - - - 20121230 -9606 100420864 LOC100420864 - - - 7 - chromosome 11 open reading frame 58 pseudogene pseudo - - - - 20121230 -9606 100420869 LOC100420869 - - - X - acetyl-CoA acyltransferase 2 pseudogene pseudo - - - - 20121230 -9606 100420872 LOC100420872 - - - X - ribosome binding factor A (putative) pseudogene pseudo - - - - 20121230 -9606 100420875 FAM204BP - - HGNC:42011 1 - family with sequence similarity 204, member B, pseudogene pseudo FAM204BP family with sequence similarity 204, member B, pseudogene O - 20121230 -9606 100420877 SLC25A39P1 - - HGNC:43859 1 - solute carrier family 25, member 39 pseudogene 1 pseudo SLC25A39P1 solute carrier family 25, member 39 pseudogene 1 O - 20121230 -9606 100420878 LOC100420878 - - - 1 - GABA(A) receptor-associated protein pseudogene pseudo - - - - 20121230 -9606 100420879 LOC100420879 - - - 1 - chromosome 2 open reading frame 27B pseudogene pseudo - - - - 20121230 -9606 100420880 LOC100420880 - - - 1 - primase, DNA, polypeptide 1 (49kDa) pseudogene pseudo - - - - 20121230 -9606 100420881 FGFR3P6 - - HGNC:37951 1 - fibroblast growth factor receptor 3 pseudogene 6 pseudo FGFR3P6 fibroblast growth factor receptor 3 pseudogene 6 O - 20121230 -9606 100420885 LOC100420885 - - - 22 - suppressor of cytokine signaling 2 pseudogene pseudo - - - - 20121230 -9606 100420886 RNFT1P1 - - HGNC:44387 2 - ring finger protein, transmembrane 1 pseudogene 1 pseudo RNFT1P1 ring finger protein, transmembrane 1 pseudogene 1 O - 20121230 -9606 100420887 LOC100420887 - - - 2 - UPF0607 protein ENSP00000381418-like pseudogene pseudo - - - - 20121230 -9606 100420888 LOC100420888 - - - 2 - torsin family 1, member B (torsin B) pseudogene pseudo - - - - 20121230 -9606 100420889 LOC100420889 - - - 2 - anaphase promoting complex subunit 1 pseudogene pseudo - - - - 20121230 -9606 100420890 LOC100420890 - - - 2 - anaphase promoting complex subunit 1 pseudogene pseudo - - - - 20121230 -9606 100420892 LOC100420892 - - - 2 - chromosome 14 open reading frame 166 pseudogene pseudo - - - - 20121230 -9606 100420893 LOC100420893 - - - 2 - Down syndrome critical region gene 3 pseudogene pseudo - - - - 20121230 -9606 100420895 LOC100420895 - - - 2 - fibrous sheath-interacting protein 2 pseudogene pseudo - - - - 20121230 -9606 100420896 LOC100420896 - - - 9 - UPF0607 protein ENSP00000381418-like pseudogene pseudo - - - - 20121230 -9606 100420897 LOC100420897 - - - 12 - aminolevulinate, delta-, synthase 1 pseudogene pseudo - - - - 20121230 -9606 100420898 LOC100420898 - - - 12 - chromosome 16 open reading frame 88 pseudogene pseudo - - - - 20121230 -9606 100420899 LOC100420899 - - - 12 - mitochondrial ribosomal protein S25 pseudogene pseudo - - - - 20121230 -9606 100420900 LOC100420900 - - - 12 - family with sequence similarity 213, member A pseudogene pseudo - - - - 20121230 -9606 100420901 HAUS8P1 - - HGNC:43766 12 - HAUS augmin-like complex, subunit 8 pseudogene 1 pseudo HAUS8P1 HAUS augmin-like complex, subunit 8 pseudogene 1 O - 20121230 -9606 100420902 LOC100420902 - - - 19 - exocyst complex component 3-like 4 pseudogene pseudo - - - - 20121230 -9606 100420904 LOC100420904 - - - 19 - SIGLEC family like 1 pseudogene pseudo - - - - 20121230 -9606 100420907 LOC100420907 - - - 11 - family with sequence similarity 176, member C pseudogene pseudo - - - - 20121230 -9606 100420909 LOC100420909 - - - 5 - transmembrane protein 251 pseudogene pseudo - - - - 20121230 -9606 100420910 LOC100420910 - - - 5 - protein arginine methyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100420911 LOC100420911 - - - 5 - chromosome 14 open reading frame 166 pseudogene pseudo - - - - 20121230 -9606 100420916 FAM204CP - - HGNC:42012 13 - family with sequence similarity 204, member C, pseudogene pseudo FAM204CP family with sequence similarity 204, member C, pseudogene O - 20121230 -9606 100420919 LOC100420919 - - - 13 - katanin p80 subunit B-like 1 pseudogene pseudo - - - - 20121230 -9606 100420920 ZDHHC4P1 - - HGNC:39443 13 - zinc finger, DHHC-type containing 4 pseudogene 1 pseudo ZDHHC4P1 zinc finger, DHHC-type containing 4 pseudogene 1 O - 20121230 -9606 100420921 AMMECR1LP1 - - HGNC:39809 13 - AMMECR1-like pseudogene 1 pseudo AMMECR1LP1 AMMECR1-like pseudogene 1 O - 20121230 -9606 100420924 RNF6P1 - - HGNC:39922 21 - ring finger protein (C3H2C3 type) 6 pseudogene 1 pseudo RNF6P1 ring finger protein (C3H2C3 type) 6 pseudogene 1 O - 20121230 -9606 100420925 LOC100420925 - - - 21 - chromosome 2 open reading frame 27A pseudogene pseudo - - - - 20121230 -9606 100420926 ZEB2P1 - ZEB1P1 HGNC:33346 4 4p15.32 zinc finger E-box binding homeobox 2 pseudogene 1 pseudo ZEB2P1 zinc finger E-box binding homeobox 2 pseudogene 1 O - 20121230 -9606 100420927 LOC100420927 - - - 4 - protein arginine methyltransferase 5 pseudogene pseudo - - - - 20121230 -9606 100420928 LOC100420928 - - - 15 - chromosome 15 open reading frame 43 pseudogene pseudo - - - - 20121230 -9606 100420929 LOC100420929 - - - 15 - ribosome binding factor A (putative) pseudogene pseudo - - - - 20121230 -9606 100420930 LOC100420930 - - - 15 - SWI5 recombination repair homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100420939 LOC100420939 - - - 3 - nucleosome assembly protein 1-like 5 pseudogene pseudo - - - - 20121230 -9606 100420940 LOC100420940 - - - 6 - transcription elongation regulator 1 pseudogene pseudo - - - - 20121230 -9606 100420941 LOC100420941 - - - 6 - butyrophilin, subfamily 1, member A1 pseudogene pseudo - - - - 20121230 -9606 100420944 LOC100420944 - - - 8 - nuclear transcription factor Y, beta pseudogene pseudo - - - - 20121230 -9606 100420946 LOC100420946 - - - 18 - katanin p80 subunit B-like 1 pseudogene pseudo - - - - 20121230 -9606 100420948 LOC100420948 - - - 18 - ADP-ribosylation factor-like 14 effector protein pseudogene pseudo - - - - 20121230 -9606 100420949 LOC100420949 - - - 18 - neuroepithelial cell transforming 1 pseudogene pseudo - - - - 20121230 -9606 100420950 MRPL37P1 - HsT4307 HGNC:31003 18 18q21.31 mitochondrial ribosomal protein L37 pseudogene 1 pseudo MRPL37P1 mitochondrial ribosomal protein L37 pseudogene 1 O - 20121230 -9606 100420951 LOC100420951 - - - 16 - mitochondrial ribosomal protein L18 pseudogene pseudo - - - - 20121230 -9606 100420952 FGFR3P5 - - HGNC:37950 16 - fibroblast growth factor receptor 3 pseudogene 5 pseudo FGFR3P5 fibroblast growth factor receptor 3 pseudogene 5 O - 20121230 -9606 100420954 LOC100420954 - - - 7 - GrpE-like 1, mitochondrial (E. coli) pseudogene pseudo - - - - 20121230 -9606 100420955 LOC100420955 - - - X - scavenger receptor class B, member 1 pseudogene pseudo - - - - 20121230 -9606 100420957 LOC100420957 - - - X - transcription elongation regulator 1 pseudogene pseudo - - - - 20121230 -9606 100420958 LOC100420958 - - - X - transmembrane 9 superfamily member 2 pseudogene pseudo - - - - 20121230 -9606 100420963 FAM204DP - - HGNC:42013 14 - family with sequence similarity 204, member D, pseudogene pseudo FAM204DP family with sequence similarity 204, member D, pseudogene O - 20121230 -9606 100420966 LOC100420966 - - - 14 - chromosome 17 open reading frame 98 pseudogene pseudo - - - - 20121230 -9606 100420967 LOC100420967 - - - 22 - chromosome 2 open reading frame 27B pseudogene pseudo - - - - 20121230 -9606 100420968 LOC100420968 - - - 2 - Ly1 antibody reactive homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100420972 ZFYVE9P2 - - HGNC:39046 2 - zinc finger, FYVE domain containing 9 pseudogene 2 pseudo ZFYVE9P2 zinc finger, FYVE domain containing 9 pseudogene 2 O - 20121230 -9606 100420975 GMCL1P2 - - HGNC:42863 2 - germ cell-less, spermatogenesis associated 1 pseudogene 2 pseudo GMCL1P2 germ cell-less, spermatogenesis associated 1 pseudogene 2 O - 20121230 -9606 100420981 LOC100420981 - - - 12 - nucleosome assembly protein 1-like 1 pseudogene pseudo - - - - 20121230 -9606 100420982 LOC100420982 - - - 12 - retinol dehydrogenase 16 (all-trans) pseudogene pseudo - - - - 20121230 -9606 100420983 LOC100420983 - - - 12 - chromosome 10 open reading frame 129 pseudogene pseudo - - - - 20121230 -9606 100420990 LOC100420990 - - - 5 - aurora kinase A interacting protein 1 pseudogene pseudo - - - - 20121230 -9606 100421002 HAVCR1P2 - - HGNC:44035 4 - hepatitis A virus cellular receptor 1 pseudogene 2 pseudo HAVCR1P2 hepatitis A virus cellular receptor 1 pseudogene 2 O - 20121230 -9606 100421006 LOC100421006 - - - 4 - very low density lipoprotein receptor pseudogene pseudo - - - - 20121230 -9606 100421008 SLC9B1P3 - - HGNC:43582 10 - solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 3 pseudo SLC9B1P3 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 3 O - 20121230 -9606 100421009 LOC100421009 - - - 10 - UPF0607 protein ENSP00000381418-like pseudogene pseudo - - - - 20121230 -9606 100421010 LOC100421010 - - - 10 - UPF0607 protein ENSP00000381418-like pseudogene pseudo - - - - 20121230 -9606 100421012 LOC100421012 - - - 3 - tigger transposable element derived 2 pseudogene pseudo - - - - 20120720 -9606 100421018 AMZ2P2 - - HGNC:38072 6 - archaelysin family metallopeptidase 2 pseudogene 2 pseudo AMZ2P2 archaelysin family metallopeptidase 2 pseudogene 2 O - 20121230 -9606 100421022 LOC100421022 - - - 6 - tigger transposable element derived 6 pseudogene pseudo - - - - 20121230 -9606 100421023 LOC100421023 - - - 8 - nuclear transcription factor Y, gamma pseudogene pseudo - - - - 20121230 -9606 100421028 LOC100421028 - - - 17 - gap junction protein, alpha 4, 37kDa pseudogene pseudo - - - - 20121230 -9606 100421029 LOC100421029 - - - 16 - transcription elongation regulator 1 pseudogene pseudo - - - - 20121230 -9606 100421031 LOC100421031 - - - 16 - carbonic anhydrase VA, mitochondrial pseudogene pseudo - - - - 20121230 -9606 100421039 LOC100421039 - - - X - NLR family, pyrin domain containing 7 pseudogene pseudo - - - - 20121230 -9606 100421043 LOC100421043 - - - X - tigger transposable element derived 7 pseudogene pseudo - - - - 20121230 -9606 100421045 BCAS2P2 - - HGNC:39595 1 - breast carcinoma amplified sequence 2 pseudogene 2 pseudo BCAS2P2 breast carcinoma amplified sequence 2 pseudogene 2 O - 20121230 -9606 100421046 LOC100421046 - - - 1 - superoxide dismutase 2, mitochondrial pseudogene pseudo - - - - 20121230 -9606 100421047 RBMX2P3 - - HGNC:39925 1 - RNA binding motif protein, X-linked 2 pseudogene 3 pseudo RBMX2P3 RNA binding motif protein, X-linked 2 pseudogene 3 O - 20121230 -9606 100421053 DSCR6P1 - - HGNC:23340 14 - DSCR6 pseudogene 1 pseudo DSCR6P1 DSCR6 pseudogene 1 O - 20121230 -9606 100421055 ZMYND19P1 - - HGNC:44540 14 - zinc finger, MYND-type containing 19 pseudogene 1 pseudo ZMYND19P1 zinc finger, MYND-type containing 19 pseudogene 1 O - 20121230 -9606 100421057 GSTM3P2 - - HGNC:38006 2 - glutathione S-transferase mu 3 pseudogene 2 pseudo GSTM3P2 glutathione S-transferase mu 3 pseudogene 2 O - 20121230 -9606 100421058 PABPC1P11 - - HGNC:37993 9 - poly(A) binding protein, cytoplasmic 1 pseudogene 11 pseudo PABPC1P11 poly(A) binding protein, cytoplasmic 1 pseudogene 11 O - 20121230 -9606 100421061 LOC100421061 - - - 12 - hepatitis A virus cellular receptor 1 pseudogene pseudo - - - - 20121230 -9606 100421064 LOC100421064 - - - 19 - sushi, nidogen and EGF-like domains 1 pseudogene pseudo - - - - 20121230 -9606 100421071 LOC100421071 - - - 5 - zinc finger, CCHC domain containing 10 pseudogene pseudo - - - - 20121230 -9606 100421072 COQ10BP2 - - HGNC:44913 5 - coenzyme Q10 homolog B pseudogene 2 pseudo COQ10BP2 coenzyme Q10 homolog B pseudogene 2 O - 20121230 -9606 100421074 LOC100421074 - - - 5 - ZFP14 zinc finger protein pseudogene pseudo - - - - 20121230 -9606 100421075 RCC2P2 - - HGNC:38419 Y - regulator of chromosome condensation 2 pseudogene 2 pseudo RCC2P2 regulator of chromosome condensation 2 pseudogene 2 O - 20121230 -9606 100421087 LOC100421087 - - - 15 - zinc finger, CCHC domain containing 9 pseudogene pseudo - - - - 20121230 -9606 100421090 RCC2P4 - - HGNC:42380 3 - regulator of chromosome condensation 2 pseudogene 4 pseudo RCC2P4 regulator of chromosome condensation 2 pseudogene 4 O - 20121230 -9606 100421091 LOC100421091 - - - 6 - LSM14A, SCD6 homolog A (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421092 LOC100421092 - - - 6 - esterase D/formylglutathione hydrolase pseudogene pseudo - - - - 20121230 -9606 100421093 LOC100421093 - - - 6 - karyopherin alpha 3 (importin alpha 4) pseudogene pseudo - - - - 20121230 -9606 100421094 LOC100421094 - - - 8 - ubiquitin specific peptidase 17-like family member 2 pseudogene pseudo - - - - 20121230 -9606 100421096 LOC100421096 - - - 8 - non-SMC condensin I complex, subunit G pseudogene pseudo - - - - 20121230 -9606 100421097 ALG1L12P - - HGNC:44381 8 - asparagine-linked glycosylation 1-like 12, pseudogene pseudo ALG1L12P asparagine-linked glycosylation 1-like 12, pseudogene O - 20121230 -9606 100421100 LOC100421100 - - - 17 - RNA terminal phosphate cyclase-like 1 pseudogene pseudo - - - - 20121230 -9606 100421108 LOC100421108 - - - X - inositol 1,3,4-triphosphate 5/6 kinase pseudogene pseudo - - - - 20121230 -9606 100421109 LOC100421109 - - - X - karyopherin alpha 4 (importin alpha 3) pseudogene pseudo - - - - 20121230 -9606 100421110 LOC100421110 - - - X - VENT homeobox pseudogene pseudo - - - - 20121230 -9606 100421113 CROCCP4 - - HGNC:43864 1 - ciliary rootlet coiled-coil, rootletin pseudogene 4 pseudo CROCCP4 ciliary rootlet coiled-coil, rootletin pseudogene 4 O - 20121230 -9606 100421114 CROCCP5 - - HGNC:43865 1 - ciliary rootlet coiled-coil, rootletin pseudogene 5 pseudo CROCCP5 ciliary rootlet coiled-coil, rootletin pseudogene 5 O - 20121230 -9606 100421116 LOC100421116 - - - 1 - trafficking protein, kinesin binding 2 pseudogene pseudo - - - - 20121230 -9606 100421121 LOC100421121 - - - 22 - small G protein signaling modulator 1 pseudogene pseudo - - - - 20121230 -9606 100421122 LOC100421122 - - - 2 - zinc finger protein 106 homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100421123 PGBD4P5 - - HGNC:44070 2 - piggyBac transposable element derived 4 pseudogene 5 pseudo PGBD4P5 piggyBac transposable element derived 4 pseudogene 5 O - 20121230 -9606 100421125 LOC100421125 - - - 2 - structural maintenance of chromosomes 4 pseudogene pseudo - - - - 20121230 -9606 100421126 LOC100421126 - - - 12 - sucrase-isomaltase (alpha-glucosidase) pseudogene pseudo - - - - 20121230 -9606 100421129 IFNL3P1 - IL28BP1 HGNC:44483 19 - interferon, lambda 3 pseudogene 1 pseudo IFNL3P1 interferon, lambda 3 pseudogene 1 O - 20121230 -9606 100421130 LOC100421130 - - - 19 - LSM14A, SCD6 homolog A (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421131 RCC2P6 - - HGNC:42382 11 - regulator of chromosome condensation 2 pseudogene 6 pseudo RCC2P6 regulator of chromosome condensation 2 pseudogene 6 O - 20121230 -9606 100421133 PGAM5P1 - - HGNC:42467 5 - phosphoglycerate mutase family member 5 pseudogene 1 pseudo PGAM5P1 phosphoglycerate mutase family member 5 pseudogene 1 O - 20121230 -9606 100421136 PGBD4P3 - - HGNC:44068 5 - piggyBac transposable element derived 4 pseudogene 3 pseudo PGBD4P3 piggyBac transposable element derived 4 pseudogene 3 O - 20121230 -9606 100421137 DPPA2P1 - - HGNC:38448 Y - developmental pluripotency associated 2 pseudogene 1 pseudo DPPA2P1 developmental pluripotency associated 2 pseudogene 1 O - 20121230 -9606 100421141 LOC100421141 - - - 4 - developmental pluripotency associated 2 pseudogene pseudo - - - - 20121230 -9606 100421142 LOC100421142 - - - 4 - developmental pluripotency associated 2 pseudogene pseudo - - - - 20121230 -9606 100421143 ELL2P2 - - HGNC:39344 4 - elongation factor, RNA polymerase II, 2 pseudogene 2 pseudo ELL2P2 elongation factor, RNA polymerase II, 2 pseudogene 2 O - 20121230 -9606 100421146 PGBD4P4 - - HGNC:44076 4 - piggyBac transposable element derived 4 pseudogene 4 pseudo PGBD4P4 piggyBac transposable element derived 4 pseudogene 4 O - 20121230 -9606 100421148 LOC100421148 - - - 15 - non-SMC condensin I complex, subunit G pseudogene pseudo - - - - 20121230 -9606 100421150 COQ10BP1 - - HGNC:44912 10 - coenzyme Q10 homolog B pseudogene 1 pseudo COQ10BP1 coenzyme Q10 homolog B pseudogene 1 O - 20121230 -9606 100421153 DLEC1P1 - - HGNC:44545 3 - deleted in lung and esophageal cancer 1 pseudogene 1 pseudo DLEC1P1 deleted in lung and esophageal cancer 1 pseudogene 1 O - 20121230 -9606 100421154 LOC100421154 - - - 3 - developmental pluripotency associated 4 pseudogene pseudo - - - - 20121230 -9606 100421156 DPPA4P1 - - HGNC:44903 3 - developmental pluripotency associated 4 pseudogene 1 pseudo DPPA4P1 developmental pluripotency associated 4 pseudogene 1 O - 20121230 -9606 100421158 LOC100421158 - - - 6 - piggyBac transposable element derived 4 pseudogene pseudo - - - - 20121230 -9606 100421160 LOC100421160 - - - 8 - structural maintenance of chromosomes 5 pseudogene pseudo - - - - 20121230 -9606 100421161 LOC100421161 - - - 8 - ependymin related protein 1 (zebrafish) pseudogene pseudo - - - - 20121230 -9606 100421165 LOC100421165 - - - 17 - fermitin family member 3 pseudogene pseudo - - - - 20121230 -9606 100421166 LOC100421166 - - - 17 - SEC24 family, member A (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421167 SCML2P1 - - HGNC:44329 18 - sex comb on midleg-like 2 (Drosophila) pseudogene 1 pseudo SCML2P1 sex comb on midleg-like 2 (Drosophila) pseudogene 1 O - 20121230 -9606 100421169 LOC100421169 - - - 16 - thyroid hormone receptor interactor 11 pseudogene pseudo - - - - 20121230 -9606 100421171 LOC100421171 - - - 16 - thyroid hormone receptor interactor 11 pseudogene pseudo - - - - 20121230 -9606 100421172 SCML2P2 - - HGNC:44330 16 - sex comb on midleg-like 2 (Drosophila) pseudogene 2 pseudo SCML2P2 sex comb on midleg-like 2 (Drosophila) pseudogene 2 O - 20121230 -9606 100421173 LOC100421173 - - - 16 - thyroid hormone receptor interactor 11 pseudogene pseudo - - - - 20121230 -9606 100421174 LOC100421174 - - - 16 - thyroid hormone receptor interactor 13 pseudogene pseudo - - - - 20121230 -9606 100421175 NCAPD2P1 - - HGNC:43831 7 - non-SMC condensin I complex, subunit D2 pseudogene 1 pseudo NCAPD2P1 non-SMC condensin I complex, subunit D2 pseudogene 1 O - 20121230 -9606 100421177 TDGF1P1 - - HGNC:42350 X - teratocarcinoma-derived growth factor 1 pseudogene 1 pseudo TDGF1P1 teratocarcinoma-derived growth factor 1 pseudogene 1 O - 20121230 -9606 100421178 PGAM4P1 - - HGNC:42465 X - phosphoglycerate mutase family member 4 pseudogene 1 pseudo PGAM4P1 phosphoglycerate mutase family member 4 pseudogene 1 O - 20121230 -9606 100421179 LOC100421179 - - - X - component of oligomeric golgi complex 1 pseudogene pseudo - - - - 20121230 -9606 100421180 PGBD4P6 - - HGNC:44071 X - piggyBac transposable element derived 4 pseudogene 6 pseudo PGBD4P6 piggyBac transposable element derived 4 pseudogene 6 O - 20121230 -9606 100421182 PGBD4P7 - - HGNC:44074 1 - piggyBac transposable element derived 4 pseudogene 7 pseudo PGBD4P7 piggyBac transposable element derived 4 pseudogene 7 O - 20121230 -9606 100421184 LOC100421184 - - - 1 - zinc finger and BTB domain containing 2 pseudogene pseudo - - - - 20121230 -9606 100421185 PGBD4P8 - - HGNC:44075 1 - piggyBac transposable element derived 4 pseudogene 8 pseudo PGBD4P8 piggyBac transposable element derived 4 pseudogene 8 O - 20121230 -9606 100421188 GAPDHP57 - - HGNC:38563 2 - glyceraldehyde 3 phosphate dehydrogenase pseudogene 57 pseudo GAPDHP57 glyceraldehyde 3 phosphate dehydrogenase pseudogene 57 O - 20121230 -9606 100421189 GAPDHP49 - - HGNC:38555 2 - glyceraldehyde 3 phosphate dehydrogenase pseudogene 49 pseudo GAPDHP49 glyceraldehyde 3 phosphate dehydrogenase pseudogene 49 O - 20121230 -9606 100421194 LOC100421194 - - - 9 - pyruvate dehydrogenase kinase, isozyme 1 pseudogene pseudo - - - - 20121230 -9606 100421197 LOC100421197 - - - 9 - zinc finger and BTB domain containing 10 pseudogene pseudo - - - - 20121230 -9606 100421198 LAMP1P1 - LAMP1L1 HGNC:6500 12 12p13.3 lysosomal-associated membrane protein 1 pseudogene 1 pseudo LAMP1P1 lysosomal-associated membrane protein 1 pseudogene 1 O - 20121230 -9606 100421201 LOC100421201 - - - 12 - piggyBac transposable element derived 3 pseudogene pseudo - - - - 20121230 -9606 100421202 LOC100421202 - - - 12 - C-type lectin domain family 1, member B pseudogene pseudo - - - - 20121230 -9606 100421204 LOC100421204 - - - 11 - cyclic nucleotide gated channel alpha 1 pseudogene pseudo - - - - 20121230 -9606 100421207 LOC100421207 - - - 11 - Fanconi anemia, complementation group L pseudogene pseudo - - - - 20121230 -9606 100421217 USP9YP5 - - HGNC:38418 Y - ubiquitin specific peptidase 9, Y-linked pseudogene 5 pseudo USP9YP5 ubiquitin specific peptidase 9, Y-linked pseudogene 5 O - 20121209 -9606 100421219 USP9YP8 - - HGNC:38424 Y - ubiquitin specific peptidase 9, Y-linked pseudogene 8 pseudo USP9YP8 ubiquitin specific peptidase 9, Y-linked pseudogene 8 O - 20121230 -9606 100421220 USP9YP9 - - HGNC:38435 Y - ubiquitin specific peptidase 9, Y-linked pseudogene 9 pseudo USP9YP9 ubiquitin specific peptidase 9, Y-linked pseudogene 9 O - 20121209 -9606 100421222 USP9YP10 - - HGNC:38454 Y - ubiquitin specific peptidase 9, Y-linked pseudogene 10 pseudo USP9YP10 ubiquitin specific peptidase 9, Y-linked pseudogene 10 O - 20121209 -9606 100421224 USP9YP11 - - HGNC:38460 Y - ubiquitin specific peptidase 9, Y-linked pseudogene 11 pseudo USP9YP11 ubiquitin specific peptidase 9, Y-linked pseudogene 11 O - 20121209 -9606 100421226 RABEPKP1 - - HGNC:39791 13 - Rab9 effector protein with kelch motifs pseudogene 1 pseudo RABEPKP1 Rab9 effector protein with kelch motifs pseudogene 1 O - 20121230 -9606 100421228 PGBD4P2 - - HGNC:44077 20 - piggyBac transposable element derived 4 pseudogene 2 pseudo PGBD4P2 piggyBac transposable element derived 4 pseudogene 2 O - 20121230 -9606 100421232 GAPDHP56 - - HGNC:38562 4 - glyceraldehyde 3 phosphate dehydrogenase pseudogene 56 pseudo GAPDHP56 glyceraldehyde 3 phosphate dehydrogenase pseudogene 56 O - 20121230 -9606 100421235 LOC100421235 - - - 15 - serine/arginine-rich splicing factor 9 pseudogene pseudo - - - - 20121230 -9606 100421236 GAPDHP50 - - HGNC:38556 3 - glyceraldehyde 3 phosphate dehydrogenase pseudogene 50 pseudo GAPDHP50 glyceraldehyde 3 phosphate dehydrogenase pseudogene 50 O - 20121230 -9606 100421238 LOC100421238 - - - 3 - DEAD (Asp-Glu-Ala-Asp) box helicase 5 pseudogene pseudo - - - - 20121230 -9606 100421239 FANCD2P1 - - HGNC:44487 3 - Fanconi anemia, complementation group D2 pseudogene 1 pseudo FANCD2P1 Fanconi anemia, complementation group D2 pseudogene 1 O - 20121230 -9606 100421243 LOC100421243 - - - 6 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421244 LOC100421244 - - - 6 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421245 LOC100421245 - - - 6 - nuclear import 7 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421246 LOC100421246 - - - 6 - D4, zinc and double PHD fingers family 2 pseudogene pseudo - - - - 20121230 -9606 100421247 LOC100421247 - - - 6 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421248 LOC100421248 - - - 6 - siah E3 ubiquitin protein ligase family member 3 pseudogene pseudo - - - - 20121230 -9606 100421250 LOC100421250 - - - 6 - epithelial splicing regulatory protein 1 pseudogene pseudo - - - - 20121230 -9606 100421251 LOC100421251 - - - 6 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421253 LOC100421253 - - - 8 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421256 LOC100421256 - - - 8 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20121230 -9606 100421257 LOC100421257 - - - 18 - lysosomal-associated membrane protein 1 pseudogene pseudo - - - - 20121230 -9606 100421258 LOC100421258 - - - 16 - NOP58 ribonucleoprotein homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100421259 LOC100421259 - - - 16 - ZFP161 zinc finger protein pseudogene pseudo - - - - 20121230 -9606 100421261 LOC100421261 - - - 7 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421264 LOC100421264 - - - X - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421265 LOC100421265 - - - X - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421267 LOC100421267 - - - 1 - phosphodiesterase 4D interacting protein pseudogene pseudo - - - - 20121230 -9606 100421269 LOC100421269 - - - 1 - phosphodiesterase 4D interacting protein pseudogene pseudo - - - - 20121230 -9606 100421271 GAPDHP51 - - HGNC:38557 1 - glyceraldehyde 3 phosphate dehydrogenase pseudogene 51 pseudo GAPDHP51 glyceraldehyde 3 phosphate dehydrogenase pseudogene 51 O - 20121230 -9606 100421273 LOC100421273 - - - 1 - F-box and WD repeat domain containing 11 pseudogene pseudo - - - - 20121230 -9606 100421279 LOC100421279 - - - 1 - phosphodiesterase 4D interacting protein pseudogene pseudo - - - - 20121230 -9606 100421281 LOC100421281 - - - 1 - high density lipoprotein binding protein pseudogene pseudo - - - - 20121230 -9606 100421282 LOC100421282 - - - 1 - phosphodiesterase 4D interacting protein pseudogene pseudo - - - - 20121209 -9606 100421287 LOC100421287 - - - 2 - cAMP responsive element binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100421288 LOC100421288 - - - 2 - cAMP responsive element binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100421289 LOC100421289 - - - 2 - prolylcarboxypeptidase (angiotensinase C) pseudogene pseudo - - - - 20121230 -9606 100421292 LOC100421292 - - - 2 - cAMP responsive element binding protein 1 pseudogene pseudo - - - - 20121209 -9606 100421293 LOC100421293 - - - 9 - serine/arginine-rich splicing factor 10 pseudogene pseudo - - - - 20121230 -9606 100421294 LOC100421294 - - - 9 - phosphoribosyl pyrophosphate synthetase 2 pseudogene pseudo - - - - 20121230 -9606 100421295 PRPS1P2 - PRPS1L2 HGNC:9464 9 - phosphoribosyl pyrophosphate synthetase 1 pseudogene 2 pseudo PRPS1P2 phosphoribosyl pyrophosphate synthetase 1 pseudogene 2 O - 20121230 -9606 100421296 LOC100421296 - - - 12 - serine/arginine-rich splicing factor 11 pseudogene pseudo - - - - 20121230 -9606 100421300 LOC100421300 - - - 19 - pregnancy specific beta-1-glycoprotein 9 pseudogene pseudo - - - - 20121230 -9606 100421303 LOC100421303 - - - 11 - DEAH (Asp-Glu-Ala-His) box polypeptide 9 pseudogene pseudo - - - - 20121230 -9606 100421304 LOC100421304 - - - 11 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421306 LOC100421306 - - - 11 - RecQ protein-like (DNA helicase Q1-like) pseudogene pseudo - - - - 20121230 -9606 100421307 LOC100421307 - - - 5 - DEAD (Asp-Glu-Ala-Asp) box polypeptide 43 pseudogene pseudo - - - - 20121230 -9606 100421308 LOC100421308 - - - 5 - phosphoribosyl pyrophosphate synthetase 2 pseudogene pseudo - - - - 20121230 -9606 100421309 LOC100421309 - - - 5 - DEAD (Asp-Glu-Ala-Asp) box helicase 25 pseudogene pseudo - - - - 20121230 -9606 100421311 LOC100421311 - - - 5 - BRCA1/BRCA2-containing complex, subunit 3 pseudogene pseudo - - - - 20121230 -9606 100421313 GAPDHP52 - - HGNC:38558 13 - glyceraldehyde 3 phosphate dehydrogenase pseudogene 52 pseudo GAPDHP52 glyceraldehyde 3 phosphate dehydrogenase pseudogene 52 O - 20121230 -9606 100421314 LOC100421314 - - - 13 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421317 LOC100421317 - - - 20 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421318 GAPDHP53 - - HGNC:38559 20 - glyceraldehyde 3 phosphate dehydrogenase pseudogene 53 pseudo GAPDHP53 glyceraldehyde 3 phosphate dehydrogenase pseudogene 53 O - 20121230 -9606 100421319 GAPDHP54 - - HGNC:38560 20 - glyceraldehyde 3 phosphate dehydrogenase pseudogene 54 pseudo GAPDHP54 glyceraldehyde 3 phosphate dehydrogenase pseudogene 54 O - 20121230 -9606 100421321 LOC100421321 - - - 21 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421322 LOC100421322 - - - 21 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421323 HNRNPRP3 - - HGNC:44909 4 - heterogeneous nuclear ribonucleoprotein R pseudogene 3 pseudo HNRNPRP3 heterogeneous nuclear ribonucleoprotein R pseudogene 3 O - 20121230 -9606 100421324 GAPDHP55 - - HGNC:38561 15 - glyceraldehyde 3 phosphate dehydrogenase pseudogene 55 pseudo GAPDHP55 glyceraldehyde 3 phosphate dehydrogenase pseudogene 55 O - 20121230 -9606 100421328 LOC100421328 - - - 3 - DEAD (Asp-Glu-Ala-Asp) box polypeptide 50 pseudogene pseudo - - - - 20121230 -9606 100421330 LOC100421330 - - - 6 - lysophosphatidylcholine acyltransferase 3 pseudogene pseudo - - - - 20121230 -9606 100421331 SAMD11P1 - - HGNC:44473 17 - sterile alpha motif domain containing 11 pseudogene 1 pseudo SAMD11P1 sterile alpha motif domain containing 11 pseudogene 1 O - 20121230 -9606 100421332 LOC100421332 - - - 17 - zinc finger with KRAB and SCAN domains 1 pseudogene pseudo - - - - 20121230 -9606 100421335 LOC100421335 - - - 18 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20120318 -9606 100421336 LOC100421336 - - - 7 - RAB3A interacting protein (rabin3)-like 1 pseudogene pseudo - - - - 20121230 -9606 100421338 CNOT7P1 - - HGNC:44248 X - CCR4-NOT transcription complex, subunit 7 pseudogene 1 pseudo CNOT7P1 CCR4-NOT transcription complex, subunit 7 pseudogene 1 O - 20121230 -9606 100421340 FNDC3CP - - HGNC:35452 X - fibronectin type III domain containing 3C, pseudogene pseudo FNDC3CP fibronectin type III domain containing 3C, pseudogene O - 20121230 -9606 100421341 UBE2V2P3 - - HGNC:44891 1 - ubiquitin-conjugating enzyme E2 variant 2 pseudgene 3 pseudo UBE2V2P3 ubiquitin-conjugating enzyme E2 variant 2 pseudgene 3 O - 20121230 -9606 100421343 LOC100421343 - - - 1 - DEAD (Asp-Glu-Ala-Asp) box polypeptide 19B pseudogene pseudo - - - - 20121230 -9606 100421344 LOC100421344 - - - 1 - DEAD (Asp-Glu-Ala-Asp) box polypeptide 55 pseudogene pseudo - - - - 20121230 -9606 100421347 LOC100421347 - - - 2 - golgi reassembly stacking protein 2, 55kDa pseudogene pseudo - - - - 20121230 -9606 100421349 LOC100421349 - - - 2 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421350 TCEA1P4 - - HGNC:31091 9 9p21.1 transcription elongation factor A (SII), 1 pseudogene 4 pseudo TCEA1P4 transcription elongation factor A (SII), 1 pseudogene 4 O - 20121230 -9606 100421351 HNRNPA1P14 - - HGNC:39132 9 - heterogeneous nuclear ribonucleoprotein A1 pseudogene 14 pseudo HNRNPA1P14 heterogeneous nuclear ribonucleoprotein A1 pseudogene 14 O - 20121230 -9606 100421353 HNRNPA1P15 - - HGNC:39133 9 - heterogeneous nuclear ribonucleoprotein A1 pseudogene 15 pseudo HNRNPA1P15 heterogeneous nuclear ribonucleoprotein A1 pseudogene 15 O - 20121230 -9606 100421354 HNRNPRP2 - - HGNC:44908 11 - heterogeneous nuclear ribonucleoprotein R pseudogene 2 pseudo HNRNPRP2 heterogeneous nuclear ribonucleoprotein R pseudogene 2 O - 20121230 -9606 100421357 LOC100421357 - - - 5 - heterogeneous nuclear ribonucleoprotein A3 pseudogene pseudo - - - - 20121230 -9606 100421358 LOC100421358 - - - 5 - CREB regulated transcription coactivator 2 pseudogene pseudo - - - - 20121230 -9606 100421361 LOC100421361 - - - 20 - isopentenyl-diphosphate delta isomerase 1 pseudogene pseudo - - - - 20121230 -9606 100421362 LOC100421362 - - - 20 - hydroxysteroid (17-beta) dehydrogenase 12 pseudogene pseudo - - - - 20121230 -9606 100421363 ANKRD20A17P - - HGNC:43608 4 - ankyrin repeat domain 20 family, member A17, pseudogene pseudo ANKRD20A17P ankyrin repeat domain 20 family, member A17, pseudogene O - 20121230 -9606 100421364 LOC100421364 - - - 4 - fibroblast growth factor binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100421368 LOC100421368 - - - 15 - zinc finger and SCAN domain containing 5A pseudogene pseudo - - - - 20121230 -9606 100421369 DDX20P1 - - HGNC:44673 10 - DEAD (Asp-Glu-Ala-Asp) box polypeptide 20 pseudogene 1 pseudo DDX20P1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 20 pseudogene 1 O - 20121230 -9606 100421371 DDX10P1 - - HGNC:44960 10 - DEAD (Asp-Glu-Ala-Asp) box polypeptide 10 pseudogene 1 pseudo DDX10P1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 10 pseudogene 1 O - 20121230 -9606 100421372 LOC100421372 - - - 10 - zinc finger and SCAN domain containing 29 pseudogene pseudo - - - - 20121230 -9606 100421374 MPRIPP1 - - HGNC:44594 3 - myosin phosphatase Rho interacting protein pseudogene 1 pseudo MPRIPP1 myosin phosphatase Rho interacting protein pseudogene 1 O - 20121230 -9606 100421376 HNRNPA1P17 - - HGNC:39135 3 - heterogeneous nuclear ribonucleoprotein A1 pseudogene 17 pseudo HNRNPA1P17 heterogeneous nuclear ribonucleoprotein A1 pseudogene 17 O - 20121230 -9606 100421378 LOC100421378 - - - 3 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421379 LOC100421379 - - - 6 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421384 LOC100421384 - - - 8 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421385 LOC100421385 - - - 18 - testis derived transcript (3 LIM domains) pseudogene pseudo - - - - 20121230 -9606 100421386 LOC100421386 - - - 7 - glutamyl aminopeptidase (aminopeptidase A) pseudogene pseudo - - - - 20121230 -9606 100421387 LOC100421387 - - - 7 - heterogeneous nuclear ribonucleoprotein A3 pseudogene pseudo - - - - 20121230 -9606 100421389 HNRNPA1P9 - - HGNC:39127 7 - heterogeneous nuclear ribonucleoprotein A1 pseudogene 9 pseudo HNRNPA1P9 heterogeneous nuclear ribonucleoprotein A1 pseudogene 9 O - 20121230 -9606 100421390 LOC100421390 - - - X - eukaryotic translation initiation factor 5 pseudogene pseudo - - - - 20121230 -9606 100421391 LOC100421391 - - - X - eukaryotic translation initiation factor 5 pseudogene pseudo - - - - 20121230 -9606 100421395 LOC100421395 - - - 1 - heterogeneous nuclear ribonucleoprotein A3 pseudogene pseudo - - - - 20121230 -9606 100421397 LOC100421397 - - - 1 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421398 LOC100421398 - - - 1 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421399 LOC100421399 - - - 1 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421400 LOC100421400 - - - 1 - alanyl-tRNA synthetase domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100421401 LOC100421401 - - - 1 - guanylate binding protein family, member 6 pseudogene pseudo - - - - 20121230 -9606 100421402 LOC100421402 - - - 1 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421404 LOC100421404 - - - 2 - retinitis pigmentosa 9 (autosomal dominant) pseudogene pseudo - - - - 20121230 -9606 100421409 LOC100421409 - - - 2 - glucosamine-phosphate N-acetyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100421411 LOC100421411 - - - 9 - DnaJ (Hsp40) homolog, subfamily B, member 5 pseudogene pseudo - - - - 20121230 -9606 100421413 LOC100421413 - - - 12 - heterogeneous nuclear ribonucleoprotein A3 pseudogene pseudo - - - - 20121230 -9606 100421414 LOC100421414 - - - 19 - glial cells missing homolog 1 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100421415 LOC100421415 - - - 11 - heterogeneous nuclear ribonucleoprotein A3 pseudogene pseudo - - - - 20121230 -9606 100421417 LOC100421417 - - - 11 - ATPase, H+/K+ exchanging, beta polypeptide pseudogene pseudo - - - - 20121230 -9606 100421419 LOC100421419 - - - 5 - protein phosphatase 4, regulatory subunit 2 pseudogene pseudo - - - - 20121230 -9606 100421420 LOC100421420 - - - 5 - tumor protein, translationally-controlled 1 pseudogene pseudo - - - - 20121230 -9606 100421422 ANKRD20A10P - ANKRD20A4P1 HGNC:39707 13 - ankyrin repeat domain 20 family, member A10, pseudogene pseudo ANKRD20A10P ankyrin repeat domain 20 family, member A10, pseudogene O - 20121230 -9606 100421424 HNRNPA1P29 - - HGNC:39547 13 - heterogeneous nuclear ribonucleoprotein A1 pseudogene 29 pseudo HNRNPA1P29 heterogeneous nuclear ribonucleoprotein A1 pseudogene 29 O - 20121230 -9606 100421425 LOC100421425 - - - 13 - calmodulin 2 (phosphorylase kinase, delta) pseudogene pseudo - - - - 20120318 -9606 100421427 ANKRD20A16P - - HGNC:43607 21 - ankyrin repeat domain 20 family, member A16, pseudogene pseudo ANKRD20A16P ankyrin repeat domain 20 family, member A16, pseudogene O - 20121230 -9606 100421428 RNGTTP1 - - HGNC:39652 21 - RNA guanylyltransferase and 5'-phosphatase pseudogene 1 pseudo RNGTTP1 RNA guanylyltransferase and 5'-phosphatase pseudogene 1 O - 20121230 -9606 100421429 RTEL1P1 - - HGNC:44213 4 - regulator of telomere elongation helicase 1 pseudogene 1 pseudo RTEL1P1 regulator of telomere elongation helicase 1 pseudogene 1 O - 20121230 -9606 100421430 LOC100421430 - - - 15 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421431 LOC100421431 - - - 15 - heterogeneous nuclear ribonucleoprotein A3 pseudogene pseudo - - - - 20121230 -9606 100421432 LOC100421432 - - - 15 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421433 LOC100421433 - - - 15 - heterogeneous nuclear ribonucleoprotein A1 pseudogene pseudo - - - - 20121230 -9606 100421436 UBE2FP1 - - HGNC:44535 3 - ubiquitin-conjugating enzyme E2F (putative) pseudogene 1 pseudo UBE2FP1 ubiquitin-conjugating enzyme E2F (putative) pseudogene 1 O - 20121230 -9606 100421437 LOC100421437 - - - 3 - DnaJ (Hsp40) homolog, subfamily B, member 7 pseudogene pseudo - - - - 20121230 -9606 100421438 LOC100421438 - - - 3 - DnaJ (Hsp40) homolog, subfamily C, member 8 pseudogene pseudo - - - - 20121230 -9606 100421439 LOC100421439 - - - 3 - tumor protein, translationally-controlled 1 pseudogene pseudo - - - - 20121230 -9606 100421444 LOC100421444 - - - 8 - glucosamine-phosphate N-acetyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100421446 LOC100421446 - - - 8 - Wolf-Hirschhorn syndrome candidate 1-like 1 pseudogene pseudo - - - - 20121230 -9606 100421451 LOC100421451 - - - 18 - heterogeneous nuclear ribonucleoprotein A3 pseudogene pseudo - - - - 20121230 -9606 100421455 LOC100421455 - - - 7 - eukaryotic translation initiation factor 4E pseudogene pseudo - - - - 20121230 -9606 100421462 LOC100421462 - - - X - trafficking protein particle complex 2-like pseudogene pseudo - - - - 20121230 -9606 100421465 LOC100421465 - - - 1 - ubiquitin-like modifier activating enzyme 2 pseudogene pseudo - - - - 20121230 -9606 100421468 LOC100421468 - - - 1 - ubiquitin-like modifier activating enzyme 2 pseudogene pseudo - - - - 20121230 -9606 100421471 LOC100421471 - - - 1 - non-SMC element 4 homolog A (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421472 LOC100421472 - - - 2 - mitochondrial fission regulator 2 pseudogene pseudo - - - - 20121230 -9606 100421473 TVP23BP2 - FAM18B4P HGNC:38869 2 - trans-golgi network vesicle protein 23 homolog B (S. cerevisiae) pseudogene 2 pseudo TVP23BP2 trans-golgi network vesicle protein 23 homolog B (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100421474 LOC100421474 - - - 2 - family with sequence similarity 49, member B pseudogene pseudo - - - - 20121230 -9606 100421476 LOC100421476 - - - 2 - family with sequence similarity 71, member A pseudogene pseudo - - - - 20121230 -9606 100421478 LOC100421478 - - - 9 - family with sequence similarity 71, member B pseudogene pseudo - - - - 20121230 -9606 100421479 HTR1DP1 - - HGNC:5290 12 - 5-hydroxytryptamine (serotonin) receptor 1D pseudogene 1 pseudo HTR1DP1 5-hydroxytryptamine (serotonin) receptor 1D pseudogene 1 O - 20121230 -9606 100421480 LOC100421480 - - - 12 - tumor protein, translationally-controlled 1 pseudogene pseudo - - - - 20121230 -9606 100421482 LOC100421482 - - - 12 - DnaJ (Hsp40) homolog, subfamily C, member 2 pseudogene pseudo - - - - 20121230 -9606 100421483 LOC100421483 - - - 19 - transforming growth factor, beta receptor 1 pseudogene pseudo - - - - 20121230 -9606 100421484 MARK2P11 - - HGNC:39802 5 - MAP/microtubule affinity-regulating kinase 2 pseudogene 11 pseudo MARK2P11 MAP/microtubule affinity-regulating kinase 2 pseudogene 11 O - 20121230 -9606 100421485 MARK2P5 - - HGNC:39796 5 - MAP/microtubule affinity-regulating kinase 2 pseudogene 5 pseudo MARK2P5 MAP/microtubule affinity-regulating kinase 2 pseudogene 5 O - 20121230 -9606 100421487 FAM58CP - FAM58AP1|FAM58Y HGNC:38436 Y - family with sequence similarity 58, member A pseudogene 1 pseudo FAM58CP family with sequence similarity 58, member C, pseudogene O - 20121230 -9606 100421490 LOC100421490 - - - 20 - DnaJ (Hsp40) homolog, subfamily C, member 9 pseudogene pseudo - - - - 20121230 -9606 100421493 LOC100421493 - - - 4 - family with sequence similarity 64, member A pseudogene pseudo - - - - 20121230 -9606 100421494 LOC100421494 - - - 4 - MAP/microtubule affinity-regulating kinase 2 pseudogene pseudo - - - - 20121230 -9606 100421495 ACTR6P1 - - HGNC:44210 4 - ARP6 actin-related protein 6 homolog (yeast) pseudogene 1 pseudo ACTR6P1 ARP6 actin-related protein 6 homolog (yeast) pseudogene 1 O - 20121230 -9606 100421496 MARK2P4 - - HGNC:39795 4 - MAP/microtubule affinity-regulating kinase 2 pseudogene 4 pseudo MARK2P4 MAP/microtubule affinity-regulating kinase 2 pseudogene 4 O - 20121230 -9606 100421498 MARK2P8 - - HGNC:39799 3 - MAP/microtubule affinity-regulating kinase 2 pseudogene 8 pseudo MARK2P8 MAP/microtubule affinity-regulating kinase 2 pseudogene 8 O - 20121230 -9606 100421499 LOC100421499 - - - 3 - MAP/microtubule affinity-regulating kinase 4 pseudogene pseudo - - - - 20121230 -9606 100421500 MARK2P6 - - HGNC:39797 3 - MAP/microtubule affinity-regulating kinase 2 pseudogene 6 pseudo MARK2P6 MAP/microtubule affinity-regulating kinase 2 pseudogene 6 O - 20121230 -9606 100421501 MARK2P1 - - HGNC:39792 3 - MAP/microtubule affinity-regulating kinase 2 pseudogene 1 pseudo MARK2P1 MAP/microtubule affinity-regulating kinase 2 pseudogene 1 O - 20121230 -9606 100421502 MARK2P2 - - HGNC:39793 3 - MAP/microtubule affinity-regulating kinase 2 pseudogene 2 pseudo MARK2P2 MAP/microtubule affinity-regulating kinase 2 pseudogene 2 O - 20121230 -9606 100421503 LOC100421503 - - - 3 - MAP/microtubule affinity-regulating kinase 3 pseudogene pseudo - - - - 20121230 -9606 100421504 LOC100421504 - - - 3 - MAP/microtubule affinity-regulating kinase 4 pseudogene pseudo - - - - 20121230 -9606 100421505 LOC100421505 - - - 3 - MAP/microtubule affinity-regulating kinase 4 pseudogene pseudo - - - - 20121230 -9606 100421506 ILF2P1 - - HGNC:44695 3 - interleukin enhancer binding factor 2 pseudogene 1 pseudo ILF2P1 interleukin enhancer binding factor 2 pseudogene 1 O - 20121230 -9606 100421507 MARK2P3 - - HGNC:39794 3 - MAP/microtubule affinity-regulating kinase 2 pseudogene 3 pseudo MARK2P3 MAP/microtubule affinity-regulating kinase 2 pseudogene 3 O - 20121230 -9606 100421508 LOC100421508 - - - 3 - MAP/microtubule affinity-regulating kinase 2 pseudogene pseudo - - - - 20121230 -9606 100421509 LOC100421509 - - - 3 - La ribonucleoprotein domain family, member 7 pseudogene pseudo - - - - 20121230 -9606 100421510 LOC100421510 - - - 3 - family with sequence similarity 20, member B pseudogene pseudo - - - - 20121230 -9606 100421511 LOC100421511 - - - 6 - MAP/microtubule affinity-regulating kinase 2 pseudogene pseudo - - - - 20121230 -9606 100421512 LOC100421512 - - - 6 - RNA binding protein with multiple splicing 2 pseudogene pseudo - - - - 20121230 -9606 100421513 LOC100421513 - - - 6 - transducin (beta)-like 1 X-linked receptor 1 pseudogene pseudo - - - - 20121230 -9606 100421515 BMPR1APS1 - - HGNC:21742 6 6q22.33 bone morphogenetic protein receptor, type IA pseudogene 1 pseudo BMPR1APS1 bone morphogenetic protein receptor, type IA pseudogene 1 O - 20121230 -9606 100421517 LOC100421517 - - - 6 - DnaJ (Hsp40) homolog, subfamily C, member 17 pseudogene pseudo - - - - 20121230 -9606 100421518 LOC100421518 - - - 6 - MAD2 mitotic arrest deficient-like 1 (yeast) pseudogene pseudo - - - - 20121230 -9606 100421523 LOC100421523 - - - 17 - UDP-N-acteylglucosamine pyrophosphorylase 1 pseudogene pseudo - - - - 20121230 -9606 100421525 LOC100421525 - - - 17 - DnaJ (Hsp40) homolog, subfamily B, member 7 pseudogene pseudo - - - - 20121230 -9606 100421527 LOC100421527 - - - 18 - DnaJ (Hsp40) homolog, subfamily C, member 8 pseudogene pseudo - - - - 20121230 -9606 100421528 EIF4BP5 - - HGNC:37938 16 - eukaryotic translation initiation factor 4B pseudogene 5 pseudo EIF4BP5 eukaryotic translation initiation factor 4B pseudogene 5 O - 20121230 -9606 100421531 MARK2P7 - - HGNC:39798 7 - MAP/microtubule affinity-regulating kinase 2 pseudogene 7 pseudo MARK2P7 MAP/microtubule affinity-regulating kinase 2 pseudogene 7 O - 20121230 -9606 100421533 EIF4A1P10 - - HGNC:37930 X - eukaryotic translation initiation factor 4A1 pseudogene 10 pseudo EIF4A1P10 eukaryotic translation initiation factor 4A1 pseudogene 10 O - 20121230 -9606 100421535 GEMIN8P3 - - HGNC:37978 X - gem (nuclear organelle) associated protein 8 pseudogene 3 pseudo GEMIN8P3 gem (nuclear organelle) associated protein 8 pseudogene 3 O - 20121230 -9606 100421536 LOC100421536 - - - 1 - diphosphoinositol pentakisphosphate kinase 2 pseudogene pseudo - - - - 20121230 -9606 100421537 LOC100421537 - - - 1 - inositol monophosphatase domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100421539 SUZ12P2 - - HGNC:43872 14 - suppressor of zeste 12 homolog pseudogene 2 pseudo SUZ12P2 suppressor of zeste 12 homolog pseudogene 2 O - 20121230 -9606 100421541 LOC100421541 - - - 14 - DnaJ (Hsp40) homolog, subfamily C, member 9 pseudogene pseudo - - - - 20121230 -9606 100421542 DNAJA1P6 - - HGNC:39342 22 - DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 6 pseudo DNAJA1P6 DnaJ (Hsp40) homolog, subfamily A, member 1 pseudogene 6 O - 20121230 -9606 100421545 LOC100421545 - - - 22 - eukaryotic translation initiation factor 4H pseudogene pseudo - - - - 20121230 -9606 100421548 LOC100421548 - - - 2 - family with sequence similarity 178, member B pseudogene pseudo - - - - 20121209 -9606 100421549 LOC100421549 - - - 9 - replication factor C (activator 1) 5, 36.5kDa pseudogene pseudo - - - - 20121230 -9606 100421550 LOC100421550 - - - 12 - MAP/microtubule affinity-regulating kinase 3 pseudogene pseudo - - - - 20121230 -9606 100421552 LOC100421552 - - - 19 - family with sequence similarity 47, member C pseudogene pseudo - - - - 20121230 -9606 100421558 LOC100421558 - - - 11 - MAP/microtubule affinity-regulating kinase 2 pseudogene pseudo - - - - 20121230 -9606 100421559 LOC100421559 - - - 11 - adaptor-related protein complex 5, mu 1 subunit pseudogene pseudo - - - - 20121230 -9606 100421560 GCNT1P2 - - HGNC:37972 5 - glucosaminyl (N-acetyl) transferase 1, core 2 pseudogene 2 pseudo GCNT1P2 glucosaminyl (N-acetyl) transferase 1, core 2 pseudogene 2 O - 20121230 -9606 100421561 LOC100421561 - - - 5 5q12.1 family with sequence similarity 133, member A pseudogene pseudo - - - - 20121230 -9606 100421565 MARK2P12 - - HGNC:39803 13 - MAP/microtubule affinity-regulating kinase 2 pseudogene 12 pseudo MARK2P12 MAP/microtubule affinity-regulating kinase 2 pseudogene 12 O - 20121230 -9606 100421566 FAM58DP - - HGNC:42022 13 - family with sequence similarity 58, member A pseudogene pseudo FAM58DP family with sequence similarity 58, member D, pseudogene O - 20121230 -9606 100421569 LOC100421569 - - - 20 - glyoxylate reductase 1 homolog (Arabidopsis) pseudogene pseudo - - - - 20121230 -9606 100421572 MESTP2 - - HGNC:18208 15 - mesoderm specific transcript pseudogene 2 pseudo MESTP2 mesoderm specific transcript pseudogene 2 O - 20121230 -9606 100421574 LOC100421574 - - - 15 - family with sequence similarity 47, member C pseudogene pseudo - - - - 20121230 -9606 100421577 LOC100421577 - - - 10 - family with sequence similarity 21, member A pseudogene pseudo - - - - 20121230 -9606 100421579 LOC100421579 - - - 10 - eukaryotic translation initiation factor 4A2 pseudogene pseudo - - - - 20121230 -9606 100421580 LOC100421580 - - - 3 - family with sequence similarity 175, member A pseudogene pseudo - - - - 20121230 -9606 100421581 GCNT1P3 - - HGNC:37973 3 - glucosaminyl (N-acetyl) transferase 1, core 2 pseudogene 3 pseudo GCNT1P3 glucosaminyl (N-acetyl) transferase 1, core 2 pseudogene 3 O - 20121230 -9606 100421582 PAIP1P1 - bCX300M20.3|bPG254M11.3|bQB44E15.5 HGNC:18240 6 6p21.3 poly(A) binding protein interacting protein 1 pseudogene 1 pseudo PAIP1P1 poly(A) binding protein interacting protein 1 pseudogene 1 O - 20121230 -9606 100421583 LOC100421583 - - - 6 - hormonally up-regulated Neu-associated kinase pseudogene pseudo - - - - 20121230 -9606 100421587 LOC100421587 - - - 18 - family with sequence similarity 38, member A pseudogene pseudo - - - - 20121230 -9606 100421588 FAM60BP - HsT2323 HGNC:19052 18 18q11.2 family with sequence similarity 60, member A pseudogene pseudo FAM60BP family with sequence similarity 60, member B pseudogene O - 20121230 -9606 100421589 LRRC37A7P - - HGNC:43792 18 - leucine rich repeat containing 37, member A7, pseudogene pseudo LRRC37A7P leucine rich repeat containing 37, member A7, pseudogene O - 20121230 -9606 100421591 LOC100421591 - - - 18 - family with sequence similarity 76, member A pseudogene pseudo - - - - 20121230 -9606 100421593 LOC100421593 - - - 16 - family with sequence similarity 71, member A pseudogene pseudo - - - - 20121230 -9606 100421594 LOC100421594 - - - 16 - mitochondrial carrier 2 pseudogene pseudo - - - - 20121230 -9606 100421595 LOC100421595 - - - 7 - thyroid hormone receptor associated protein 3 pseudogene pseudo - - - - 20121230 -9606 100421597 LOC100421597 - - - 7 - peptidylprolyl isomerase (cyclophilin)-like 4 pseudogene pseudo - - - - 20121230 -9606 100421598 GCNT1P5 - - HGNC:37975 7 - glucosaminyl (N-acetyl) transferase 1, core 2 pseudogene 5 pseudo GCNT1P5 glucosaminyl (N-acetyl) transferase 1, core 2 pseudogene 5 O - 20121230 -9606 100421599 TVP23CP1 - - HGNC:44646 7 - trans-golgi network vesicle protein 23 homolog C (S. cerevisiae) pseudogene 1 pseudo TVP23CP1 trans-golgi network vesicle protein 23 homolog C (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100421601 LOC100421601 - - - X - phosphoribosyl pyrophosphate amidotransferase pseudogene pseudo - - - - 20121230 -9606 100421602 LOC100421602 - - - X - CDC42 binding protein kinase beta (DMPK-like) pseudogene pseudo - - - - 20121230 -9606 100421603 LOC100421603 - - - X - family with sequence similarity 156, member A pseudogene pseudo - - - - 20121230 -9606 100421606 LOC100421606 - - - 1 - family with sequence similarity 133, member A pseudogene pseudo - - - - 20121230 -9606 100421610 LOC100421610 - - - 1 - complement component 4 binding protein, alpha pseudogene pseudo - - - - 20121230 -9606 100421611 LOC100421611 - - - 14 - family with sequence similarity 71, member B pseudogene pseudo - - - - 20121230 -9606 100421614 LOC100421614 - - - 22 - ARP2 actin-related protein 2 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100421617 LOC100421617 - - - 12 - family with sequence similarity 133, member A pseudogene pseudo - - - - 20121230 -9606 100421618 LOC100421618 - - - 12 - family with sequence similarity 166, member A pseudogene pseudo - - - - 20121230 -9606 100421620 LOC100421620 - - - 19 - polymerase (RNA) mitochondrial (DNA directed) pseudogene pseudo - - - - 20121230 -9606 100421621 LOC100421621 - - - 19 - family with sequence similarity 187, member B pseudogene pseudo - - - - 20121230 -9606 100421622 LOC100421622 - - - 11 - family with sequence similarity 91, member A1 pseudogene pseudo - - - - 20121230 -9606 100421623 LOC100421623 - - - 5 - zona pellucida glycoprotein 3 (sperm receptor) pseudogene pseudo - - - - 20121230 -9606 100421629 METTL21AP1 - - HGNC:41921 21 - methyltransferase like 21A pseudogene 1 pseudo METTL21AP1 methyltransferase like 21A pseudogene 1 O - 20121230 -9606 100421630 LOC100421630 - - - 4 - cutaneous T-cell lymphoma-associated antigen 1 pseudogene pseudo - - - - 20121230 -9606 100421632 LOC100421632 - - - 15 - thyroid hormone receptor associated protein 3 pseudogene pseudo - - - - 20121230 -9606 100421633 LOC100421633 - - - 10 - tryptophanyl tRNA synthetase 2, mitochondrial pseudogene pseudo - - - - 20121230 -9606 100421634 LOC100421634 - - - 10 - cubilin (intrinsic factor-cobalamin receptor) pseudogene pseudo - - - - 20121230 -9606 100421636 LOC100421636 - - - 3 - poly (ADP-ribose) polymerase family, member 14 pseudogene pseudo - - - - 20121230 -9606 100421637 LOC100421637 - - - 3 - acyl-CoA synthetase long-chain family member 3 pseudogene pseudo - - - - 20121230 -9606 100421638 CTAGE13P - - HGNC:37298 6 - CTAGE family, member 13, pseudogene pseudo CTAGE13P CTAGE family, member 13, pseudogene O - 20121230 -9606 100421641 LOC100421641 - - - 16 - zinc finger CCHC-type and RNA binding motif 1 pseudogene pseudo - - - - 20121230 -9606 100421642 LOC100421642 - - - 7 - zona pellucida glycoprotein 3 (sperm receptor) pseudogene pseudo - - - - 20121230 -9606 100421646 LOC100421646 - - - 14 - von Willebrand factor A domain containing 5B2 pseudogene pseudo - - - - 20121230 -9606 100421648 SUCLA2P3 - - HGNC:38103 2 - succinate-CoA ligase, ADP-forming, beta subunit pseudogene 3 pseudo SUCLA2P3 succinate-CoA ligase, ADP-forming, beta subunit pseudogene 3 O - 20121230 -9606 100421651 LOC100421651 - - - 2 - ClpX caseinolytic peptidase X homolog (E. coli) pseudogene pseudo - - - - 20121230 -9606 100421652 PTP4A1P1 - - HGNC:41928 2 - protein tyrosine phosphatase type IVA, member 1 pseudogene 1 pseudo PTP4A1P1 protein tyrosine phosphatase type IVA, member 1 pseudogene 1 O - 20121230 -9606 100421655 LOC100421655 - - - 9 - adaptor-related protein complex 3, mu 2 subunit pseudogene pseudo - - - - 20121230 -9606 100421657 LOC100421657 - - - 19 - heterogeneous nuclear ribonucleoprotein D-like pseudogene pseudo - - - - 20121230 -9606 100421658 LOC100421658 - - - 11 - spastic ataxia of Charlevoix-Saguenay (sacsin) pseudogene pseudo - - - - 20121230 -9606 100421663 LOC100421663 - - - 20 - cutaneous T-cell lymphoma-associated antigen 1 pseudogene pseudo - - - - 20121230 -9606 100421664 LOC100421664 - - - 4 - Spi-C transcription factor (Spi-1/PU.1 related) pseudogene pseudo - - - - 20121230 -9606 100421667 LOC100421667 - - - 15 - family with sequence similarity 108, member C1 pseudogene pseudo - - - - 20121230 -9606 100421669 LOC100421669 - - - 3 - ribosome binding protein 1 homolog 180kDa (dog) pseudogene pseudo - - - - 20121230 -9606 100421670 LOC100421670 - - - 3 - developmentally regulated GTP binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100421671 SUCLG2P1 - - HGNC:43996 3 - succinate-CoA ligase, GDP-forming, beta subunit pseudogene 1 pseudo SUCLG2P1 succinate-CoA ligase, GDP-forming, beta subunit pseudogene 1 O - 20121230 -9606 100421672 LOC100421672 - - - 3 - small nuclear ribonucleoprotein polypeptide B pseudogene pseudo - - - - 20121230 -9606 100421673 LOC100421673 - - - 8 - small nuclear ribonucleoprotein polypeptide B pseudogene pseudo - - - - 20121230 -9606 100421674 LOC100421674 - - - 17 - kelch repeat and BTB (POZ) domain containing 2 pseudogene pseudo - - - - 20121230 -9606 100421675 ARL2BPP9 - - HGNC:39453 17 - ADP-ribosylation factor-like 2 binding protein pseudogene 9 pseudo ARL2BPP9 ADP-ribosylation factor-like 2 binding protein pseudogene 9 O - 20121230 -9606 100421681 PTP4A1P7 - - HGNC:41934 1 - protein tyrosine phosphatase type IVA, member 1 pseudogene 7 pseudo PTP4A1P7 protein tyrosine phosphatase type IVA, member 1 pseudogene 7 O - 20121230 -9606 100421684 LOC100421684 - - - 14 - tetratricopeptide repeat domain 34 pseudogene pseudo - - - - 20121230 -9606 100421685 LOC100421685 - - - 22 - tetratricopeptide repeat domain 34 pseudogene pseudo - - - - 20121230 -9606 100421689 LOC100421689 - - - 2 - NSA2 ribosome biogenesis homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421690 LOC100421690 - - - 9 - NSA2 ribosome biogenesis homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421691 LOC100421691 - - - 9 - NSA2 ribosome biogenesis homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421692 LOC100421692 - - - 9 - leishmanolysin-like (metallopeptidase M8 family) pseudogene pseudo - - - - 20121230 -9606 100421693 LOC100421693 - - - 9 - NSA2 ribosome biogenesis homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421694 GLULP5 - - HGNC:37989 12 - glutamate-ammonia ligase (glutamine synthetase) pseudogene 5 pseudo GLULP5 glutamate-ammonia ligase (glutamine synthetase) pseudogene 5 O - 20121230 -9606 100421695 LOC100421695 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421696 LOC100421696 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421697 LOC100421697 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421698 LOC100421698 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421699 LOC100421699 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421700 LOC100421700 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421701 LOC100421701 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421702 LOC100421702 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421703 LOC100421703 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421704 LOC100421704 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421705 LOC100421705 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421706 LOC100421706 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421707 LOC100421707 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421708 LOC100421708 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421709 LOC100421709 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421710 LOC100421710 - - - 19 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene pseudo - - - - 20121230 -9606 100421712 SUCLG2P3 - - HGNC:43998 11 - succinate-CoA ligase, GDP-forming, beta subunit pseudogene 3 pseudo SUCLG2P3 succinate-CoA ligase, GDP-forming, beta subunit pseudogene 3 O - 20121230 -9606 100421716 UBE2Q2P4Y - UBE2Q2PY1 HGNC:38429 Y - ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 4, Y-linked pseudo UBE2Q2P4Y ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 4, Y-linked O - 20121230 -9606 100421717 UBE2Q2P5Y - UBE2Q2PY2 HGNC:38466 Y - ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 5, Y-linked pseudo UBE2Q2P5Y ubiquitin-conjugating enzyme E2Q family member 2 pseudogene 5, Y-linked O - 20121209 -9606 100421718 NEK4P1 - - HGNC:39649 21 - NIMA-related kinase 4 pseudogene 1 pseudo NEK4P1 NIMA-related kinase 4 pseudogene 1 O - 20121230 -9606 100421721 LOC100421721 - - - 4 - NSA2 ribosome biogenesis homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421724 BNIP3P5 - - HGNC:39658 15 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 5 pseudo BNIP3P5 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 5 O - 20121230 -9606 100421728 NEK4P3 - - HGNC:39651 10 - NIMA-related kinase 4 pseudogene 3 pseudo NEK4P3 NIMA-related kinase 4 pseudogene 3 O - 20121230 -9606 100421729 VPS26BP1 - - HGNC:44612 3 - vacuolar protein sorting 26 homolog B (S. pombe) pseudogene 1 pseudo VPS26BP1 vacuolar protein sorting 26 homolog B (S. pombe) pseudogene 1 O - 20121230 -9606 100421730 LOC100421730 - - - 3 - transmembrane emp24 domain trafficking protein 2 pseudogene pseudo - - - - 20121230 -9606 100421731 VPS26AP1 - - HGNC:44611 3 - vacuolar protein sorting 26 homolog A (S. pombe) pseudogene 1 pseudo VPS26AP1 vacuolar protein sorting 26 homolog A (S. pombe) pseudogene 1 O - 20121230 -9606 100421733 EEF1GP6 - - HGNC:44561 6 - eukaryotic translation elongation factor 1 gamma pseudogene 6 pseudo EEF1GP6 eukaryotic translation elongation factor 1 gamma pseudogene 6 O - 20121230 -9606 100421734 NEK4P2 - - HGNC:39650 17 - NIMA-related kinase 4 pseudogene 2 pseudo NEK4P2 NIMA-related kinase 4 pseudogene 2 O - 20121230 -9606 100421736 BNIP3P3 - - HGNC:39656 18 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 3 pseudo BNIP3P3 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 3 O - 20121230 -9606 100421737 LOC100421737 - - - 18 - ubiquitin specific peptidase 4 (proto-oncogene) pseudogene pseudo - - - - 20121230 -9606 100421741 LOC100421741 - - - 7 - v-raf murine sarcoma 3611 viral oncogene homolog pseudogene pseudo - - - - 20121230 -9606 100421742 LOC100421742 - - - 7 - NIF3 NGG1 interacting factor 3-like 1 (S. cerevisiae) pseudo - - - - 20121230 -9606 100421746 LOC100421746 - - - X - P antigen family, member 5 (prostate associated) pseudogene pseudo - - - - 20121230 -9606 100421749 LOC100421749 - - - 1 - NSA2 ribosome biogenesis homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421751 LOC100421751 - - - 14 - ATPase, Na+/K+ transporting, beta 3 polypeptide pseudogene pseudo - - - - 20121230 -9606 100421754 BNIP3P2 - - HGNC:39655 22 - BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 2 pseudo BNIP3P2 BCL2/adenovirus E1B 19kDa interacting protein 3 pseudogene 2 O - 20121230 -9606 100421756 LOC100421756 - - - 2 - eukaryotic translation elongation factor 1 beta 2 pseudogene pseudo - - - - 20121230 -9606 100421765 LOC100421765 - - - 15 - NSA2 ribosome biogenesis homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421766 LOC100421766 - - - 15 - ubiquitin-conjugating enzyme E2Q family member 2 pseudogene pseudo - - - - 20121230 -9606 100421767 LOC100421767 - - - 15 - ubiquitin-conjugating enzyme E2Q family member 2 pseudogene pseudo - - - - 20121209 -9606 100421768 LOC100421768 - - - 15 - ubiquitin-conjugating enzyme E2Q family member 2 pseudogene pseudo - - - - 20121230 -9606 100421769 LOC100421769 - - - 15 - ubiquitin-conjugating enzyme E2Q family member 2 pseudogene pseudo - - - - 20121209 -9606 100421770 LOC100421770 - - - 15 - ubiquitin-conjugating enzyme E2Q family member 2 pseudogene pseudo - - - - 20121209 -9606 100421771 LOC100421771 - - - 15 - ubiquitin-conjugating enzyme E2Q family member 2 pseudogene pseudo - - - - 20121230 -9606 100421774 LOC100421774 - - - 3 - eukaryotic translation elongation factor 1 beta 2 pseudogene pseudo - - - - 20121230 -9606 100421775 LOC100421775 - - - 6 - leucine rich repeat containing 8 family, member B pseudogene pseudo - - - - 20121230 -9606 100421776 NIPA2P4 - - HGNC:42044 8 - non imprinted in Prader-Willi/Angelman syndrome 2 pseudogene 4 pseudo NIPA2P4 non imprinted in Prader-Willi/Angelman syndrome 2 pseudogene 4 O - 20121230 -9606 100421779 LOC100421779 - - - 16 - acyl-CoA synthetase medium-chain family member 5 pseudogene pseudo - - - - 20121230 -9606 100421782 LOC100421782 - - - 7 - heterogeneous nuclear ribonucleoprotein A1-like 2 pseudogene pseudo - - - - 20121230 -9606 100421784 LOC100421784 - - - X - serine/threonine kinase 24 (STE20 homolog, yeast) pseudogene pseudo - - - - 20121230 -9606 100421787 LOC100421787 - - - 14 - sulfotransferase family, cytosolic, 1C, member 2 pseudogene pseudo - - - - 20121230 -9606 100421788 LOC100421788 - - - 2 - SET domain containing (lysine methyltransferase) 8 pseudogene pseudo - - - - 20121230 -9606 100421790 LOC100421790 - - - 9 - pseudouridylate synthase 7 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421793 LOC100421793 - - - 11 - tRNA methyltransferase 11 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100421794 LOC100421794 - - - 11 - heterogeneous nuclear ribonucleoprotein C (C1/C2) pseudogene pseudo - - - - 20121230 -9606 100421795 LOC100421795 - - - 5 - ST3 beta-galactoside alpha-2,3-sialyltransferase 5 pseudogene pseudo - - - - 20121230 -9606 100421796 EEF1A1P19 - - HGNC:37892 5 - eukaryotic translation elongation factor 1 alpha 1 pseudogene 19 pseudo EEF1A1P19 eukaryotic translation elongation factor 1 alpha 1 pseudogene 19 O - 20121230 -9606 100421797 EEF1A1P20 - - HGNC:37893 5 - eukaryotic translation elongation factor 1 alpha 1 pseudogene 20 pseudo EEF1A1P20 eukaryotic translation elongation factor 1 alpha 1 pseudogene 20 O - 20121230 -9606 100421798 LOC100421798 - - - 5 - eukaryotic translation elongation factor 1 alpha 2 pseudogene pseudo - - - - 20121230 -9606 100421799 LONRF2P2 - - HGNC:39829 13 - LON peptidase N-terminal domain and ring finger 2 pseudogene 2 pseudo LONRF2P2 LON peptidase N-terminal domain and ring finger 2 pseudogene 2 O - 20121230 -9606 100421802 LOC100421802 - - - 4 - protein phosphatase 2, regulatory subunit B, alpha pseudogene pseudo - - - - 20121230 -9606 100421803 LOC100421803 - - - 4 - ectonucleotide pyrophosphatase/phosphodiesterase 7 pseudogene pseudo - - - - 20121230 -9606 100421804 LOC100421804 - - - 4 - ST3 beta-galactoside alpha-2,3-sialyltransferase 1 pseudogene pseudo - - - - 20121230 -9606 100421805 LOC100421805 - - - 4 - ectonucleotide pyrophosphatase/phosphodiesterase 7 pseudogene pseudo - - - - 20121230 -9606 100421806 LOC100421806 - - - 4 - ectonucleotide pyrophosphatase/phosphodiesterase 7 pseudogene pseudo - - - - 20121230 -9606 100421807 EEF1A1P21 - - HGNC:37894 4 - eukaryotic translation elongation factor 1 alpha 1 pseudogene 21 pseudo EEF1A1P21 eukaryotic translation elongation factor 1 alpha 1 pseudogene 21 O - 20121230 -9606 100421808 LOC100421808 - - - 4 - protein phosphatase 2, regulatory subunit B, gamma pseudogene pseudo - - - - 20121230 -9606 100421809 LOC100421809 - - - 15 - LON peptidase N-terminal domain and ring finger 2 pseudogene pseudo - - - - 20121209 -9606 100421810 LOC100421810 - - - 15 - LON peptidase N-terminal domain and ring finger 2 pseudogene pseudo - - - - 20121209 -9606 100421811 LOC100421811 - - - 15 - fumarylacetoacetate hydrolase domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100421813 LOC100421813 - - - 3 - ectonucleotide pyrophosphatase/phosphodiesterase 7 pseudogene pseudo - - - - 20121230 -9606 100421815 EEF1A1P23 - - HGNC:37896 3 - eukaryotic translation elongation factor 1 alpha 1 pseudogene 23 pseudo EEF1A1P23 eukaryotic translation elongation factor 1 alpha 1 pseudogene 23 O - 20121230 -9606 100421816 LOC100421816 - - - 3 - ectonucleotide pyrophosphatase/phosphodiesterase 7 pseudogene pseudo - - - - 20121230 -9606 100421817 LOC100421817 - - - 3 - eukaryotic translation elongation factor 1 alpha 2 pseudogene pseudo - - - - 20121230 -9606 100421819 LOC100421819 - - - 3 - SET domain containing (lysine methyltransferase) 8 pseudogene pseudo - - - - 20121230 -9606 100421820 EEF1A1P36 - - HGNC:37914 6 - eukaryotic translation elongation factor 1 alpha 1 pseudogene 36 pseudo EEF1A1P36 eukaryotic translation elongation factor 1 alpha 1 pseudogene 36 O - 20121230 -9606 100421821 LOC100421821 - - - 8 - SMEK homolog 2, suppressor of mek1 (Dictyostelium) pseudogene pseudo - - - - 20121230 -9606 100421822 LOC100421822 - - - 8 - protein tyrosine phosphatase, non-receptor type 11 pseudogene pseudo - - - - 20121230 -9606 100421823 LOC100421823 - - - 8 - ectonucleotide pyrophosphatase/phosphodiesterase 7 pseudogene pseudo - - - - 20121209 -9606 100421824 LOC100421824 - - - 8 - polymerase (DNA directed), epsilon 2, accessory subunit pseudogene pseudo - - - - 20121230 -9606 100421825 EEF1A1P37 - - HGNC:37915 8 - eukaryotic translation elongation factor 1 alpha 1 pseudogene 37 pseudo EEF1A1P37 eukaryotic translation elongation factor 1 alpha 1 pseudogene 37 O - 20121230 -9606 100421827 LONRF2P1 - - HGNC:39828 18 - LON peptidase N-terminal domain and ring finger 2 pseudogene 1 pseudo LONRF2P1 LON peptidase N-terminal domain and ring finger 2 pseudogene 1 O - 20121230 -9606 100421828 LOC100421828 - - - 16 - heterogeneous nuclear ribonucleoprotein C (C1/C2) pseudogene pseudo - - - - 20121230 -9606 100421829 EEF1A1P10 - EEF1AL8 HGNC:3205 7 - eukaryotic translation elongation factor 1 alpha 1 pseudogene 10 pseudo EEF1A1P10 eukaryotic translation elongation factor 1 alpha 1 pseudogene 10 O - 20121230 -9606 100421840 LOC100421840 - - - 1 - eukaryotic translation elongation factor 1 alpha 2 pseudogene pseudo - - - - 20121230 -9606 100421842 LOC100421842 - - - 1 - eukaryotic translation elongation factor 1 alpha 2 pseudogene pseudo - - - - 20121230 -9606 100421845 LOC100421845 - - - 2 - olfactory receptor, family 1, subfamily S, member 2 pseudogene pseudo - - - - 20120318 -9606 100421846 LOC100421846 - - - 2 - olfactory receptor, family 9, subfamily G, member 4 pseudogene pseudo - - - - 20120318 -9606 100421848 LOC100421848 - - - 9 - olfactory receptor, family 2, subfamily S, member 2 pseudogene pseudo - - - - 20120318 -9606 100421849 LOC100421849 - - - 9 - olfactory receptor, family 2, subfamily S, member 2 pseudogene pseudo - - - - 20120318 -9606 100421850 LOC100421850 - - - 9 - olfactory receptor, family 2, subfamily S, member 2 pseudogene pseudo - - - - 20120318 -9606 100421852 LOC100421852 - - - 9 - olfactory receptor, family 2, subfamily K, member 2 pseudogene pseudo - - - - 20120318 -9606 100421853 LOC100421853 - - - 9 - olfactory receptor, family 1, subfamily N, member 1 pseudogene pseudo - - - - 20120318 -9606 100421854 EEF1A1P4 - EEF1AL2 HGNC:3199 12 12p12.3-p12.1 eukaryotic translation elongation factor 1 alpha 1 pseudogene 4 pseudo EEF1A1P4 eukaryotic translation elongation factor 1 alpha 1 pseudogene 4 O - 20121230 -9606 100421855 LOC100421855 - - - 12 - SCO1 cytochrome c oxidase assembly protein pseudogene pseudo - - - - 20121230 -9606 100421859 LOC100421859 - - - 11 - ectonucleotide pyrophosphatase/phosphodiesterase 7 pseudogene pseudo - - - - 20121230 -9606 100421860 LOC100421860 - - - 11 - ectonucleotide pyrophosphatase/phosphodiesterase 7 pseudogene pseudo - - - - 20121230 -9606 100421861 CBX3P3 - - HGNC:42875 5 - chromobox homolog 3 pseudogene 3 pseudo CBX3P3 chromobox homolog 3 pseudogene 3 O - 20121230 -9606 100421863 LOC100421863 - - - 5 - ash2 (absent, small, or homeotic)-like (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100421864 LOC100421864 - - - 5 - olfactory receptor, family 7, subfamily D, member 2 pseudogene pseudo - - - - 20120318 -9606 100421865 EEF1A1P3 - EEF1AL|EEF1AL1 HGNC:3194 13 13q21 eukaryotic translation elongation factor 1 alpha 1 pseudogene 3 pseudo EEF1A1P3 eukaryotic translation elongation factor 1 alpha 1 pseudogene 3 O - 20121230 -9606 100421868 LOC100421868 - - - 4 - glucose-fructose oxidoreductase domain containing 2 pseudogene pseudo - - - - 20121230 -9606 100421870 LOC100421870 - - - 10 - WW domain containing E3 ubiquitin protein ligase 2 pseudogene pseudo - - - - 20121230 -9606 100421874 LOC100421874 - - - 3 - olfactory receptor, family 5, subfamily H, member 2 pseudogene pseudo - - - - 20120318 -9606 100421880 LOC100421880 - - - 6 - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100421885 LOC100421885 - - - 6 - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100421886 LOC100421886 - - - 6 - olfactory receptor, family 2, subfamily W, member 1 pseudogene pseudo - - - - 20120318 -9606 100421887 LOC100421887 - - - 6 - olfactory receptor, family 2, subfamily W, member 3 pseudogene pseudo - - - - 20120318 -9606 100421893 LOC100421893 - - - 8 - insulin-like growth factor 2 mRNA binding protein 2 pseudogene pseudo - - - - 20121230 -9606 100421894 LOC100421894 - - - 18 - exportin, tRNA (nuclear export receptor for tRNAs) pseudogene pseudo - - - - 20121230 -9606 100421898 LOC100421898 - - - 7 - olfactory receptor, family 2, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421901 LOC100421901 - - - 7 - immunoglobulin (CD79A) binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100421902 LOC100421902 - - - 7 - olfactory receptor, family 9, subfamily A, member 2 pseudogene pseudo - - - - 20120318 -9606 100421904 LOC100421904 - - - 7 - olfactory receptor, family 2, subfamily F, member 1 pseudogene pseudo - - - - 20120318 -9606 100421907 LOC100421907 - - - 7 - olfactory receptor, family 2, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421909 LOC100421909 - - - X - olfactory receptor, family 8, subfamily B, member 4 pseudogene pseudo - - - - 20120318 -9606 100421910 LOC100421910 - - - X - olfactory receptor, family 5, subfamily R, member 1 pseudogene pseudo - - - - 20121230 -9606 100421911 LOC100421911 - - - X - olfactory receptor, family 1, subfamily M, member 1 pseudogene pseudo - - - - 20120318 -9606 100421912 LOC100421912 - - - X - olfactory receptor, family 1, subfamily N, member 1 pseudogene pseudo - - - - 20120318 -9606 100421913 LOC100421913 - - - X - olfactory receptor, family 2, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100421925 LOC100421925 - - - 2 - MOB family member 4, phocein pseudogene pseudo - - - - 20121230 -9606 100421926 LOC100421926 - - - 2 - nascent polypeptide-associated complex alpha subunit pseudogene pseudo - - - - 20121230 -9606 100421927 LOC100421927 - - - 2 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100421929 LOC100421929 - - - 2 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100421933 LOC100421933 - - - 9 - olfactory receptor, family 13, subfamily C, member 2 pseudogene pseudo - - - - 20120318 -9606 100421934 LOC100421934 - - - 9 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100421935 LOC100421935 - - - 9 - olfactory receptor, family 13, subfamily C, member 8 pseudogene pseudo - - - - 20120318 -9606 100421937 LOC100421937 - - - 9 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100421938 LOC100421938 - - - 9 - olfactory receptor, family 13, subfamily D, member 1 pseudogene pseudo - - - - 20120318 -9606 100421939 LOC100421939 - - - 12 - olfactory receptor, family 5, subfamily M, member 8 pseudogene pseudo - - - - 20120318 -9606 100421941 LOC100421941 - - - 12 - olfactory receptor, family 6, subfamily Y, member 1 pseudogene pseudo - - - - 20120318 -9606 100421942 LOC100421942 - - - 12 - olfactory receptor, family 6, subfamily C, member 2 pseudogene pseudo - - - - 20120318 -9606 100421943 CBX3P5 - - HGNC:42877 12 - chromobox homolog 3 pseudogene 5 pseudo CBX3P5 chromobox homolog 3 pseudogene 5 O - 20121230 -9606 100421944 LOC100421944 - - - 12 - olfactory receptor, family 9, subfamily K, member 2 pseudogene pseudo - - - - 20120318 -9606 100421945 LOC100421945 - - - 12 - olfactory receptor, family 6, subfamily C, member 1 pseudogene pseudo - - - - 20120318 -9606 100421946 LOC100421946 - - - 12 - olfactory receptor, family 6, subfamily C, member 1 pseudogene pseudo - - - - 20120318 -9606 100421947 LOC100421947 - - - 12 - olfactory receptor, family 6, subfamily C, member 3 pseudogene pseudo - - - - 20120318 -9606 100421948 LOC100421948 - - - 12 - olfactory receptor, family 6, subfamily C, member 2 pseudogene pseudo - - - - 20120318 -9606 100421950 LOC100421950 - - - 19 - olfactory receptor, family 7, subfamily C, member 1 pseudogene pseudo - - - - 20120318 -9606 100421951 LOC100421951 - - - 11 - olfactory receptor, family 5, subfamily P, member 3 pseudogene pseudo - - - - 20120318 -9606 100421953 LOC100421953 - - - 11 - olfactory receptor, family 4, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421954 LOC100421954 - - - 11 - olfactory receptor, family 4, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421955 LOC100421955 - - - 11 - olfactory receptor, family 8, subfamily U, member 1 pseudogene pseudo - - - - 20120318 -9606 100421956 LOC100421956 - - - 11 - olfactory receptor, family 5, subfamily F, member 1 pseudogene pseudo - - - - 20120318 -9606 100421957 LOC100421957 - - - 11 - olfactory receptor, family 8, subfamily D, member 4 pseudogene pseudo - - - - 20120318 -9606 100421958 LOC100421958 - - - 11 - olfactory receptor, family 8, subfamily K, member 5 pseudogene pseudo - - - - 20120318 -9606 100421960 LOC100421960 - - - 11 - olfactory receptor, family 8, subfamily J, member 3 pseudogene pseudo - - - - 20120318 -9606 100421961 LOC100421961 - - - 11 - olfactory receptor, family 8, subfamily I, member 2 pseudogene pseudo - - - - 20120318 -9606 100421962 LOC100421962 - - - 11 - olfactory receptor, family 5, subfamily M, member 8 pseudogene pseudo - - - - 20120318 -9606 100421963 LOC100421963 - - - 11 - olfactory receptor, family 5, subfamily M, member 3 pseudogene pseudo - - - - 20120318 -9606 100421964 LOC100421964 - - - 11 - olfactory receptor, family 9, subfamily G, member 9 pseudogene pseudo - - - - 20120318 -9606 100421965 LOC100421965 - - - 11 - olfactory receptor, family 5, subfamily R, member 1 pseudogene pseudo - - - - 20120318 -9606 100421967 LOC100421967 - - - 11 - olfactory receptor, family 9, subfamily I, member 1 pseudogene pseudo - - - - 20120318 -9606 100421968 LOC100421968 - - - 11 - olfactory receptor, family 5, subfamily B, member 3 pseudogene pseudo - - - - 20120318 -9606 100421971 LOC100421971 - - - 11 - olfactory receptor, family 5, subfamily B, member 3 pseudogene pseudo - - - - 20120318 -9606 100421972 LOC100421972 - - - 11 - olfactory receptor, family 5, subfamily A, member 2 pseudogene pseudo - - - - 20120318 -9606 100421973 ARPC3P4 - - HGNC:39434 11 - actin related protein 2/3 complex, subunit 3 pseudogene 4 pseudo ARPC3P4 actin related protein 2/3 complex, subunit 3 pseudogene 4 O - 20121230 -9606 100421975 CBX3P7 - - HGNC:42879 11 - chromobox homolog 3 pseudogene 7 pseudo CBX3P7 chromobox homolog 3 pseudogene 7 O - 20121230 -9606 100421976 LOC100421976 - - - 11 - interferon stimulated exonuclease gene 20kDa-like 2 pseudogene pseudo - - - - 20121230 -9606 100421977 LOC100421977 - - - 11 - olfactory receptor, family 6, subfamily M, member 1 pseudogene pseudo - - - - 20120318 -9606 100421978 LOC100421978 - - - 11 - olfactory receptor, family 6, subfamily M, member 1 pseudogene pseudo - - - - 20120318 -9606 100421984 LOC100421984 - - - 11 - olfactory receptor, family 8, subfamily B, member 8 pseudogene pseudo - - - - 20120318 -9606 100421985 LOC100421985 - - - 11 - olfactory receptor, family 8, subfamily B, member 3 pseudogene pseudo - - - - 20121230 -9606 100421986 LOC100421986 - - - 11 - olfactory receptor, family 5, subfamily P, member 3 pseudogene pseudo - - - - 20120318 -9606 100421989 LOC100421989 - - - 11 - olfactory receptor, family 2, subfamily V, member 2 pseudogene pseudo - - - - 20120318 -9606 100421990 LOC100421990 - - - 11 - olfactory receptor, family 4, subfamily B, member 1 pseudogene pseudo - - - - 20120318 -9606 100421991 LOC100421991 - - - 11 - olfactory receptor, family 4, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421992 LOC100421992 - - - 11 - olfactory receptor, family 4, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421993 LOC100421993 - - - 11 - olfactory receptor, family 4, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421994 LOC100421994 - - - 11 - olfactory receptor, family 4, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421995 LOC100421995 - - - 11 - olfactory receptor, family 4, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421996 LOC100421996 - - - 11 - olfactory receptor, family 4, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421997 LOC100421997 - - - 11 - olfactory receptor, family 4, subfamily A, member 5 pseudogene pseudo - - - - 20120318 -9606 100421998 LOC100421998 - - - 11 - olfactory receptor, family 4, subfamily C, member 6 pseudogene pseudo - - - - 20120318 -9606 100421999 LOC100421999 - - - 11 - olfactory receptor, family 5, subfamily J, member 2 pseudogene pseudo - - - - 20120318 -9606 100422000 LOC100422000 - - - 11 - olfactory receptor, family 5, subfamily J, member 2 pseudogene pseudo - - - - 20120318 -9606 100422001 LOC100422001 - - - 11 - olfactory receptor, family 5, subfamily J, member 2 pseudogene pseudo - - - - 20120318 -9606 100422002 LOC100422002 - - - 11 - olfactory receptor, family 5, subfamily J, member 2 pseudogene pseudo - - - - 20120318 -9606 100422003 LOC100422003 - - - 11 - olfactory receptor, family 8, subfamily K, member 5 pseudogene pseudo - - - - 20120318 -9606 100422004 LOC100422004 - - - 11 - olfactory receptor, family 5, subfamily R, member 1 pseudogene pseudo - - - - 20120318 -9606 100422005 LOC100422005 - - - 11 - olfactory receptor, family 8, subfamily H, member 3 pseudogene pseudo - - - - 20120318 -9606 100422006 LOC100422006 - - - 11 - olfactory receptor, family 8, subfamily H, member 3 pseudogene pseudo - - - - 20120318 -9606 100422007 LOC100422007 - - - 11 - olfactory receptor, family 9, subfamily G, member 9 pseudogene pseudo - - - - 20120318 -9606 100422009 LOC100422009 - - - 11 - olfactory receptor, family 4, subfamily D, member 9 pseudogene pseudo - - - - 20120318 -9606 100422010 LOC100422010 - - - 11 - olfactory receptor, family 8, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100422011 LOC100422011 - - - 11 - olfactory receptor, family 8, subfamily A, member 1 pseudogene pseudo - - - - 20120318 -9606 100422012 LOC100422012 - - - 11 - olfactory receptor, family 8, subfamily A, member 1 pseudogene pseudo - - - - 20120318 -9606 100422013 LOC100422013 - - - 5 - catenin (cadherin-associated protein), beta 1, 88kDa pseudogene pseudo - - - - 20121230 -9606 100422017 LOC100422017 - - - 21 - olfactory receptor, family 4, subfamily F, member 5 pseudogene pseudo - - - - 20120318 -9606 100422018 LOC100422018 - - - 4 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422019 EFTUD1P2 - - HGNC:44202 4 - elongation factor Tu GTP binding domain containing 1 pseudogene 2 pseudo EFTUD1P2 elongation factor Tu GTP binding domain containing 1 pseudogene 2 O - 20121230 -9606 100422020 LOC100422020 - - - 4 - UDP glucuronosyltransferase 2 family, polypeptide B17 pseudogene pseudo - - - - 20121230 -9606 100422021 LOC100422021 - - - 4 - UDP glucuronosyltransferase 2 family, polypeptide B4 pseudogene pseudo - - - - 20121230 -9606 100422022 LOC100422022 - - - 4 - UDP glucuronosyltransferase 2 family, polypeptide A3 pseudogene pseudo - - - - 20121230 -9606 100422023 UGT2A3P7 - - HGNC:39429 4 - UDP glucuronosyltransferase 2 family, polypeptide A3 pseudogene 7 pseudo UGT2A3P7 UDP glucuronosyltransferase 2 family, polypeptide A3 pseudogene 7 O - 20121230 -9606 100422024 LOC100422024 - - - 4 - UDP glucuronosyltransferase 2 family, polypeptide B7 pseudogene pseudo - - - - 20121230 -9606 100422026 LOC100422026 - - - 4 - UDP glucuronosyltransferase 2 family, polypeptide A3 pseudogene pseudo - - - - 20121230 -9606 100422029 LOC100422029 - - - 4 - UDP glucuronosyltransferase 2 family, polypeptide B7 pseudogene pseudo - - - - 20121230 -9606 100422032 LOC100422032 - - - 15 - intraflagellar transport 80 homolog (Chlamydomonas) pseudogene pseudo - - - - 20121230 -9606 100422033 LOC100422033 - - - 15 - olfactory receptor, family 4, subfamily Q, member 3 pseudogene pseudo - - - - 20120318 -9606 100422034 LOC100422034 - - - 10 - olfactory receptor, family 6, subfamily A, member 2 pseudogene pseudo - - - - 20120318 -9606 100422035 LOC100422035 - - - 10 - olfactory receptor, family 6, subfamily A, member 2 pseudogene pseudo - - - - 20120318 -9606 100422036 LOC100422036 - - - 10 - olfactory receptor, family 6, subfamily C, member 2 pseudogene pseudo - - - - 20120318 -9606 100422037 LOC100422037 - - - 3 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422038 LOC100422038 - - - 3 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422039 LOC100422039 - - - 3 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422040 LOC100422040 - - - 3 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422041 LOC100422041 - - - 3 - olfactory receptor, family 5, subfamily AC, member 2 pseudogene pseudo - - - - 20120318 -9606 100422044 LOC100422044 - - - 3 - actin related protein 2/3 complex, subunit 1A, 41kDa pseudogene pseudo - - - - 20121230 -9606 100422045 LOC100422045 - - - 3 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422046 LOC100422046 - - - 8 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422053 LOC100422053 - - - 18 - intraflagellar transport 57 homolog (Chlamydomonas) pseudogene pseudo - - - - 20121230 -9606 100422055 LOC100422055 - - - 16 - vacuolar protein sorting 35 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422056 LOC100422056 - - - 7 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422059 LOC100422059 - - - 7 - ATP-binding cassette, sub-family F (GCN20), member 2 pseudogene pseudo - - - - 20121230 -9606 100422061 LOC100422061 - - - X - olfactory receptor, family 11, subfamily H, member 4 pseudogene pseudo - - - - 20120318 -9606 100422062 LOC100422062 - - - X - olfactory receptor, family 11, subfamily A, member 1 pseudogene pseudo - - - - 20120318 -9606 100422063 LOC100422063 - - - X - olfactory receptor, family 13, subfamily H, member 1 pseudogene pseudo - - - - 20120318 -9606 100422076 LOC100422076 - - - 1 - phosphatidylinositol transfer protein, cytoplasmic 1 pseudogene pseudo - - - - 20121230 -9606 100422081 LOC100422081 - - - 14 - olfactory receptor, family 4, subfamily E, member 2 pseudogene pseudo - - - - 20120318 -9606 100422088 LOC100422088 - - - 22 - ash2 (absent, small, or homeotic)-like (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100422091 LOC100422091 - - - 2 - solute carrier family 30 (zinc transporter), member 6 pseudogene pseudo - - - - 20121230 -9606 100422094 LOC100422094 - - - 2 - potassium channel tetramerisation domain containing 5 pseudogene pseudo - - - - 20121230 -9606 100422098 LOC100422098 - - - 12 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422099 LOC100422099 - - - 12 - olfactory receptor, family 5, subfamily B, member 21 pseudogene pseudo - - - - 20120318 -9606 100422100 LOC100422100 - - - 12 - olfactory receptor, family 6, subfamily C, member 65 pseudogene pseudo - - - - 20120318 -9606 100422101 LOC100422101 - - - 19 - olfactory receptor, family 4, subfamily F, member 21 pseudogene pseudo - - - - 20120318 -9606 100422102 LOC100422102 - - - 19 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422104 LOC100422104 - - - 19 - olfactory receptor, family 7, subfamily A, member 17 pseudogene pseudo - - - - 20120318 -9606 100422106 LOC100422106 - - - 19 - staufen, RNA binding protein, homolog 1 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100422108 LOC100422108 - - - 19 - olfactory receptor, family 4, subfamily F, member 21 pseudogene pseudo - - - - 20120318 -9606 100422110 LOC100422110 - - - 19 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422111 LOC100422111 - - - 19 - olfactory receptor, family 7, subfamily A, member 10 pseudogene pseudo - - - - 20120318 -9606 100422115 LOC100422115 - - - 11 - olfactory receptor, family 52, subfamily B, member 6 pseudogene pseudo - - - - 20120318 -9606 100422116 LOC100422116 - - - 11 - olfactory receptor, family 52, subfamily M, member 1 pseudogene pseudo - - - - 20120318 -9606 100422117 LOC100422117 - - - 11 - olfactory receptor, family 51, subfamily L, member 1 pseudogene pseudo - - - - 20120318 -9606 100422123 LOC100422123 - - - 11 - olfactory receptor, family 51, subfamily I, member 1 pseudogene pseudo - - - - 20120318 -9606 100422124 LOC100422124 - - - 11 - olfactory receptor, family 51, subfamily B, member 4 pseudogene pseudo - - - - 20120318 -9606 100422125 LOC100422125 - - - 11 - olfactory receptor, family 51, subfamily B, member 2 pseudogene pseudo - - - - 20120318 -9606 100422126 LOC100422126 - - - 11 - olfactory receptor, family 51, subfamily I, member 2 pseudogene pseudo - - - - 20120318 -9606 100422127 LOC100422127 - - - 11 - olfactory receptor, family 52, subfamily H, member 1 pseudogene pseudo - - - - 20120318 -9606 100422128 LOC100422128 - - - 11 - olfactory receptor, family 52, subfamily H, member 1 pseudogene pseudo - - - - 20120318 -9606 100422129 LOC100422129 - - - 11 - olfactory receptor, family 56, subfamily A, member 1 pseudogene pseudo - - - - 20120318 -9606 100422131 LOC100422131 - - - 11 - olfactory receptor, family 52, subfamily N, member 1 pseudogene pseudo - - - - 20120318 -9606 100422135 LOC100422135 - - - 11 - olfactory receptor, family 4, subfamily C, member 46 pseudogene pseudo - - - - 20120318 -9606 100422136 LOC100422136 - - - 11 - olfactory receptor, family 4, subfamily A, member 16 pseudogene pseudo - - - - 20120318 -9606 100422137 LOC100422137 - - - 11 - olfactory receptor, family 4, subfamily A, member 15 pseudogene pseudo - - - - 20120318 -9606 100422138 LOC100422138 - - - 11 - olfactory receptor, family 4, subfamily C, member 12 pseudogene pseudo - - - - 20120318 -9606 100422139 LOC100422139 - - - 11 - olfactory receptor, family 5, subfamily B, member 12 pseudogene pseudo - - - - 20120318 -9606 100422140 LOC100422140 - - - 11 - olfactory receptor, family 2, subfamily A, member 42 pseudogene pseudo - - - - 20120318 -9606 100422141 LOC100422141 - - - 11 - olfactory receptor, family 10, subfamily Q, member 1 pseudogene pseudo - - - - 20120318 -9606 100422142 LOC100422142 - - - 11 - olfactory receptor, family 5, subfamily B, member 12 pseudogene pseudo - - - - 20120318 -9606 100422145 LOC100422145 - - - 11 - olfactory receptor, family 2, subfamily AT, member 4 pseudogene pseudo - - - - 20120318 -9606 100422148 LOC100422148 - - - 11 - olfactory receptor, family 52, subfamily B, member 4 pseudogene pseudo - - - - 20120318 -9606 100422149 LOC100422149 - - - 11 - olfactory receptor, family 51, subfamily G, member 2 pseudogene pseudo - - - - 20120318 -9606 100422150 LOC100422150 - - - 11 - olfactory receptor, family 52, subfamily K, member 1 pseudogene pseudo - - - - 20120318 -9606 100422151 LOC100422151 - - - 11 - olfactory receptor, family 51, subfamily A, member 7 pseudogene pseudo - - - - 20120318 -9606 100422152 LOC100422152 - - - 11 - olfactory receptor, family 51, subfamily L, member 1 pseudogene pseudo - - - - 20120318 -9606 100422157 LOC100422157 - - - 11 - olfactory receptor, family 52, subfamily J, member 3 pseudogene pseudo - - - - 20120318 -9606 100422158 LOC100422158 - - - 11 - olfactory receptor, family 52, subfamily B, member 4 pseudogene pseudo - - - - 20120318 -9606 100422159 LOC100422159 - - - 11 - olfactory receptor, family 52, subfamily N, member 2 pseudogene pseudo - - - - 20120318 -9606 100422160 LOC100422160 - - - 11 - olfactory receptor, family 56, subfamily B, member 4 pseudogene pseudo - - - - 20120318 -9606 100422161 LOC100422161 - - - 11 - olfactory receptor, family 52, subfamily N, member 2 pseudogene pseudo - - - - 20120318 -9606 100422162 LOC100422162 - - - 11 - olfactory receptor, family 52, subfamily E, member 4 pseudogene pseudo - - - - 20120318 -9606 100422163 LOC100422163 - - - 11 - olfactory receptor, family 52, subfamily E, member 4 pseudogene pseudo - - - - 20120318 -9606 100422165 LOC100422165 - - - 11 - olfactory receptor, family 4, subfamily A, member 15 pseudogene pseudo - - - - 20120318 -9606 100422166 LOC100422166 - - - 11 - olfactory receptor, family 4, subfamily A, member 16 pseudogene pseudo - - - - 20120318 -9606 100422168 LOC100422168 - - - 11 - olfactory receptor, family 4, subfamily C, member 46 pseudogene pseudo - - - - 20120318 -9606 100422170 LOC100422170 - - - 11 - olfactory receptor, family 4, subfamily A, member 16 pseudogene pseudo - - - - 20120318 -9606 100422171 LOC100422171 - - - 11 - olfactory receptor, family 4, subfamily A, member 15 pseudogene pseudo - - - - 20120318 -9606 100422173 LOC100422173 - - - 11 - olfactory receptor, family 5, subfamily D, member 13 pseudogene pseudo - - - - 20120318 -9606 100422174 LOC100422174 - - - 11 - olfactory receptor, family 5, subfamily AK, member 2 pseudogene pseudo - - - - 20120318 -9606 100422176 LOC100422176 - - - 11 - olfactory receptor, family 4, subfamily D, member 11 pseudogene pseudo - - - - 20120318 -9606 100422177 LOC100422177 - - - 11 - olfactory receptor, family 10, subfamily Q, member 1 pseudogene pseudo - - - - 20120318 -9606 100422178 LOC100422178 - - - 11 - olfactory receptor, family 10, subfamily Q, member 1 pseudogene pseudo - - - - 20120318 -9606 100422179 LOC100422179 - - - 5 - potassium channel tetramerisation domain containing 9 pseudogene pseudo - - - - 20121230 -9606 100422181 LOC100422181 - - - 13 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422182 LOC100422182 - - - 13 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422185 LOC100422185 - - - 21 - olfactory receptor, family 4, subfamily K, member 15 pseudogene pseudo - - - - 20120318 -9606 100422186 LOC100422186 - - - 21 - olfactory receptor, family 7, subfamily E, member 24 pseudogene pseudo - - - - 20120318 -9606 100422188 LOC100422188 - - - 4 - UDP glucuronosyltransferase 2 family, polypeptide B11 pseudogene pseudo - - - - 20121230 -9606 100422189 LOC100422189 - - - 4 - UDP glucuronosyltransferase 2 family, polypeptide B17 pseudogene pseudo - - - - 20121230 -9606 100422190 LOC100422190 - - - 4 - UDP glucuronosyltransferase 2 family, polypeptide B7 pseudogene pseudo - - - - 20121230 -9606 100422194 LOC100422194 - - - 15 - ATP-binding cassette, sub-family G (WHITE), member 2 pseudogene pseudo - - - - 20121230 -9606 100422195 LOC100422195 - - - 15 - olfactory receptor, family 4, subfamily F, member 21 pseudogene pseudo - - - - 20120318 -9606 100422196 LOC100422196 - - - 15 - olfactory receptor, family 4, subfamily F, member 15 pseudogene pseudo - - - - 20120318 -9606 100422200 EIF3EP4 - - HGNC:37921 3 - eukaryotic translation initiation factor 3, subunit E pseudogene 4 pseudo EIF3EP4 eukaryotic translation initiation factor 3, subunit E pseudogene 4 O - 20121230 -9606 100422204 LOC100422204 - - - 8 - regulatory solute carrier protein, family 1, member 1 pseudogene pseudo - - - - 20121230 -9606 100422209 LOC100422209 - - - X - phenazine biosynthesis-like protein domain containing pseudogene pseudo - - - - 20121230 -9606 100422212 LOC100422212 - - - 1 - eukaryotic translation initiation factor 3, subunit J pseudogene pseudo - - - - 20121230 -9606 100422213 LOC100422213 - - - 1 - guanine nucleotide binding protein-like 3 (nucleolar) pseudogene pseudo - - - - 20121230 -9606 100422216 LOC100422216 - - - 14 - olfactory receptor, family 10, subfamily G, member 2 pseudogene pseudo - - - - 20120318 -9606 100422225 LOC100422225 - - - 14 - ATP-binding cassette, sub-family G (WHITE), member 2 pseudogene pseudo - - - - 20121230 -9606 100422227 LOC100422227 - - - 2 - SMT3 suppressor of mif two 3 homolog 1 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422229 MAPRE1P3 - - HGNC:37762 2 - MAPRE1 pseudogene 3 pseudo MAPRE1P3 MAPRE1 pseudogene 3 O - 20121230 -9606 100422230 LOC100422230 - - - 9 - potassium channel tetramerisation domain containing 10 pseudogene pseudo - - - - 20121230 -9606 100422232 LOC100422232 - - - 9 - parkinson protein 7 pseudogene pseudo - - - - 20121230 -9606 100422233 LOC100422233 - - - 9 - iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422235 CYP4F36P - - HGNC:42407 19 - cytochrome P450, family 4, subfamily F, polypeptide 36, pseudogene pseudo CYP4F36P cytochrome P450, family 4, subfamily F, polypeptide 36, pseudogene O - 20121230 -9606 100422238 CYP4F23P - - HGNC:39944 19 - cytochrome P450, family 4, subfamily F, polypeptide 23, pseudogene pseudo CYP4F23P cytochrome P450, family 4, subfamily F, polypeptide 23, pseudogene O - 20121230 -9606 100422241 LOC100422241 - - - 11 - transforming, acidic coiled-coil containing protein 3 pseudogene pseudo - - - - 20121230 -9606 100422242 LOC100422242 - - - 11 - potassium channel tetramerisation domain containing 9 pseudogene pseudo - - - - 20121230 -9606 100422243 LOC100422243 - - - 5 - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422247 CYP4F34P - - HGNC:39953 13 - cytochrome P450, family 4, subfamily F, polypeptide 34, pseudogene pseudo CYP4F34P cytochrome P450, family 4, subfamily F, polypeptide 34, pseudogene O - 20121230 -9606 100422249 LOC100422249 - - - 4 - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422250 LOC100422250 - - - 4 - SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422252 LOC100422252 - - - 15 - olfactory receptor, family 11, subfamily H, member 12 pseudogene pseudo - - - - 20120318 -9606 100422253 LOC100422253 - - - 15 - olfactory receptor, family 11, subfamily H, member 12 pseudogene pseudo - - - - 20120318 -9606 100422254 LOC100422254 - - - 10 - estrogen receptor binding site associated, antigen, 9 pseudogene pseudo - - - - 20121230 -9606 100422256 NPM1P23 - - HGNC:44513 3 - nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 23 pseudo NPM1P23 nucleophosmin 1 (nucleolar phosphoprotein B23, numatrin) pseudogene 23 O - 20121230 -9606 100422259 LOC100422259 - - - 3 - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422261 LOC100422261 - - - 6 - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422263 LOC100422263 - - - 6 - serine palmitoyltransferase, long chain base subunit 2 pseudogene pseudo - - - - 20121230 -9606 100422264 CYP51P3 - - HGNC:41991 6 - cytochrome P450, family 51, pseudogene 3 pseudo CYP51P3 cytochrome P450, family 51, pseudogene 3 O - 20121230 -9606 100422265 LOC100422265 - - - 8 - SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422267 LOC100422267 - - - 8 - coagulation factor III (thromboplastin, tissue factor) pseudogene pseudo - - - - 20121230 -9606 100422268 LOC100422268 - - - 8 - BRX1, biogenesis of ribosomes, homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422270 LOC100422270 - - - 8 - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422271 LOC100422271 - - - 8 - proteasome (prosome, macropain) 26S subunit, ATPase, 2 pseudogene pseudo - - - - 20121230 -9606 100422272 LOC100422272 - - - 8 - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422273 KCTD9P1 - HsT38306 HGNC:21428 17 17p11.2 potassium channel tetramerisation domain containing 9 pseudogene 1 pseudo KCTD9P1 potassium channel tetramerisation domain containing 9 pseudogene 1 O - 20121230 -9606 100422274 LOC100422274 - - - 18 - transforming, acidic coiled-coil containing protein 3 pseudogene pseudo - - - - 20121230 -9606 100422275 LOC100422275 - - - 16 - proteasome (prosome, macropain) subunit, beta type, 5 pseudogene pseudo - - - - 20121230 -9606 100422284 LOC100422284 - - - X - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422285 LOC100422285 - - - X - cleavage and polyadenylation specific factor 1, 160kDa pseudogene pseudo - - - - 20121230 -9606 100422286 LOC100422286 - - - X - proteasome (prosome, macropain) subunit, alpha type, 1 pseudogene pseudo - - - - 20121230 -9606 100422287 LOC100422287 - - - 1 - proteasome (prosome, macropain) subunit, alpha type, 3 pseudogene pseudo - - - - 20121230 -9606 100422288 LOC100422288 - - - 1 - cytochrome P450, family 4, subfamily A, polypeptide 11 pseudogene pseudo - - - - 20121230 -9606 100422289 LOC100422289 - - - 14 - proteasome (prosome, macropain) subunit, beta type, 7 pseudogene pseudo - - - - 20121230 -9606 100422292 LOC100422292 - - - 22 - ral guanine nucleotide dissociation stimulator-like 4 pseudogene pseudo - - - - 20121230 -9606 100422294 LOC100422294 - - - 2 - capping protein (actin filament) muscle Z-line, alpha 1 pseudogene pseudo - - - - 20121230 -9606 100422296 LOC100422296 - - - 12 - parkinson protein 7 pseudogene pseudo - - - - 20121230 -9606 100422298 LOC100422298 - - - 19 - iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422299 LOC100422299 - - - 11 - complement component 1, q subcomponent binding protein pseudogene pseudo - - - - 20121230 -9606 100422300 LOC100422300 - - - 11 - pyridine nucleotide-disulphide oxidoreductase domain 1 pseudogene pseudo - - - - 20121230 -9606 100422305 PSMC1P13 - - HGNC:39788 13 - proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 13 pseudo PSMC1P13 proteasome (prosome, macropain) 26S subunit, ATPase, 1 pseudogene 13 O - 20121230 -9606 100422309 LOC100422309 - - - 15 - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422310 LOC100422310 - - - 15 - complement component 1, q subcomponent binding protein pseudogene pseudo - - - - 20121230 -9606 100422312 LOC100422312 - - - 10 - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422313 LOC100422313 - - - 10 - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422315 LOC100422315 - - - 6 - poly(A) binding protein, cytoplasmic 4 (inducible form) pseudogene pseudo - - - - 20121230 -9606 100422316 LOC100422316 - - - 17 - nucleophosmin (nucleolar phosphoprotein B23, numatrin) pseudogene pseudo - - - - 20121230 -9606 100422317 LOC100422317 - - - 18 - proteasome (prosome, macropain) 26S subunit, ATPase, 5 pseudogene pseudo - - - - 20121230 -9606 100422319 LOC100422319 - - - 16 - iron-sulfur cluster assembly 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422324 LOC100422324 - - - 7 - capping protein (actin filament) muscle Z-line, alpha 1 pseudogene pseudo - - - - 20121230 -9606 100422325 LOC100422325 - - - 7 - poly(A) binding protein, cytoplasmic 4 (inducible form) pseudogene pseudo - - - - 20121230 -9606 100422330 QRSL1P2 - - HGNC:43668 1 - glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 pseudogene 2 pseudo QRSL1P2 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 pseudogene 2 O - 20121230 -9606 100422334 LOC100422334 - - - 14 - general transcription factor IIH, polypeptide 3, 34kDa pseudogene pseudo - - - - 20121230 -9606 100422337 LOC100422337 - - - 2 - guanine nucleotide binding protein (G protein), alpha 13 pseudogene pseudo - - - - 20121230 -9606 100422338 LOC100422338 - - - 2 - GTPase activating protein (SH3 domain) binding protein 1 pseudogene pseudo - - - - 20121230 -9606 100422339 LOC100422339 - - - 2 - short chain dehydrogenase/reductase family 42E, member 1 pseudogene pseudo - - - - 20121230 -9606 100422340 LOC100422340 - - - 9 - short chain dehydrogenase/reductase family 42E, member 1 pseudogene pseudo - - - - 20121209 -9606 100422341 LOC100422341 - - - 9 - short chain dehydrogenase/reductase family 42E, member 1 pseudogene pseudo - - - - 20121209 -9606 100422342 LOC100422342 - - - 9 - phosphatidylinositol glycan anchor biosynthesis, class U pseudogene pseudo - - - - 20121230 -9606 100422343 UPF3AP3 - - HGNC:38395 9 - UPF3 regulator of nonsense transcripts homolog A (yeast) pseudogene 3 pseudo UPF3AP3 UPF3 regulator of nonsense transcripts homolog A (yeast) pseudogene 3 O - 20121230 -9606 100422344 LOC100422344 - - - 9 - short chain dehydrogenase/reductase family 42E, member 1 pseudogene pseudo - - - - 20121230 -9606 100422345 LOC100422345 - - - 9 - short chain dehydrogenase/reductase family 42E, member 1 pseudogene pseudo - - - - 20121230 -9606 100422346 LOC100422346 - - - 9 - short chain dehydrogenase/reductase family 42E, member 1 pseudogene pseudo - - - - 20121209 -9606 100422347 LOC100422347 - - - 9 - short chain dehydrogenase/reductase family 42E, member 1 pseudogene pseudo - - - - 20121209 -9606 100422348 LOC100422348 - - - 9 - short chain dehydrogenase/reductase family 42E, member 1 pseudogene pseudo - - - - 20121209 -9606 100422349 LOC100422349 - - - 9 - phosphatidylinositol glycan anchor biosynthesis, class F pseudogene pseudo - - - - 20121230 -9606 100422352 LOC100422352 - - - 12 - transmembrane and tetratricopeptide repeat containing 1 pseudogene pseudo - - - - 20121230 -9606 100422354 CHCHD3P2 - - HGNC:44698 12 - coiled-coil-helix-coiled-coil-helix domain containing 3 pseudogene 2 pseudo CHCHD3P2 coiled-coil-helix-coiled-coil-helix domain containing 3 pseudogene 2 O - 20121230 -9606 100422363 LOC100422363 - - - 10 - budding uninhibited by benzimidazoles 1 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100422368 LOC100422368 - - - X - UPF3 regulator of nonsense transcripts homolog B (yeast) pseudogene pseudo - - - - 20121230 -9606 100422369 LOC100422369 - - - X - par-6 partitioning defective 6 homolog beta (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100422371 RIMKLBP2 - - HGNC:39163 1 - ribosomal modification protein rimK-like family member B pseudogene 2 pseudo RIMKLBP2 ribosomal modification protein rimK-like family member B pseudogene 2 O - 20121230 -9606 100422372 LOC100422372 - - - 1 - nudE nuclear distribution E homolog 1 (A. nidulans) pseudogene pseudo - - - - 20121230 -9606 100422374 QRSL1P3 - - HGNC:43669 14 - glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 pseudogene 3 pseudo QRSL1P3 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 pseudogene 3 O - 20121230 -9606 100422375 LOC100422375 - - - 22 - phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit alpha pseudogene pseudo - - - - 20121230 -9606 100422376 LOC100422376 - - - 9 - ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 pseudogene pseudo - - - - 20121230 -9606 100422381 PPP1R10P1 - PPP1R10P HGNC:16325 11 11q24.3 protein phosphatase 1, regulatory subunit 10 pseudogene 1 pseudo PPP1R10P1 protein phosphatase 1, regulatory subunit 10 pseudogene 1 O - 20121230 -9606 100422382 LOC100422382 - - - 11 - CCR4 carbon catabolite repression 4-like (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422384 LOC100422384 - - - 10 - polymerase (RNA) III (DNA directed) polypeptide D, 44kDa pseudogene pseudo - - - - 20121230 -9606 100422385 LOC100422385 - - - 3 - DIM1 dimethyladenosine transferase 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422386 ADAD1P1 - - HGNC:44550 3 - adenosine deaminase domain containing 1 (testis-specific) pseudogene 1 pseudo ADAD1P1 adenosine deaminase domain containing 1 (testis-specific) pseudogene 1 O - 20121230 -9606 100422391 LOC100422391 - - - 18 - polymerase (RNA) III (DNA directed) polypeptide G (32kD) pseudogene pseudo - - - - 20121230 -9606 100422394 LOC100422394 - - - 1 - NACC family member 2, BEN and BTB (POZ) domain containing pseudogene pseudo - - - - 20121209 -9606 100422395 LOC100422395 - - - 14 - polymerase (RNA) III (DNA directed) polypeptide G (32kD) pseudogene pseudo - - - - 20121230 -9606 100422398 LOC100422398 - - - 11 - protein kinase, cAMP-dependent, regulatory, type II, beta pseudogene pseudo - - - - 20121230 -9606 100422399 LOC100422399 - - - 11 - protein kinase, cAMP-dependent, regulatory, type II, beta pseudogene pseudo - - - - 20121230 -9606 100422402 LOC100422402 - - - 4 - RAS guanyl releasing protein 2 (calcium and DAG-regulated) pseudogene pseudo - - - - 20121230 -9606 100422407 ADAD1P2 - - HGNC:44552 18 - adenosine deaminase domain containing 1 (testis-specific) pseudogene 2 pseudo ADAD1P2 adenosine deaminase domain containing 1 (testis-specific) pseudogene 2 O - 20121230 -9606 100422408 LOC100422408 - - - X - LanC lantibiotic synthetase component C-like 3 (bacterial) pseudogene pseudo - - - - 20121230 -9606 100422411 PSMD8P1 - - HGNC:34013 1 - proteasome 26S subunit, non-ATPase, 8 pseudogene 1 pseudo PSMD8P1 proteasome 26S subunit, non-ATPase, 8 pseudogene 1 O - 20121230 -9606 100422413 LOC100422413 - - - 1 - proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 pseudogene pseudo - - - - 20121230 -9606 100422414 LOC100422414 - - - 1 - proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 pseudogene pseudo - - - - 20121230 -9606 100422416 LOC100422416 - - - 22 - ADAM metallopeptidase with thrombospondin type 1 motif, 7 pseudogene pseudo - - - - 20121230 -9606 100422417 LOC100422417 - - - 2 - solute carrier family 6 (amino acid transporter), member 14 pseudogene pseudo - - - - 20121230 -9606 100422418 LOC100422418 - - - 2 - proteasome (prosome, macropain) 26S subunit, non-ATPase, 12 pseudogene pseudo - - - - 20121230 -9606 100422426 LOC100422426 - - - 3 - CASP2 and RIPK1 domain containing adaptor with death domain pseudogene pseudo - - - - 20121230 -9606 100422429 LOC100422429 - - - 6 - N-ethylmaleimide-sensitive factor attachment protein, gamma pseudogene pseudo - - - - 20121230 -9606 100422431 LOC100422431 - - - X - NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 5, 16kDa pseudogene pseudo - - - - 20121230 -9606 100422432 LOC100422432 - - - X - solute carrier family 6 (amino acid transporter), member 14 pseudogene pseudo - - - - 20121230 -9606 100422434 LOC100422434 - - - 1 - complement component (3b/4b) receptor 1 (Knops blood group) pseudogene pseudo - - - - 20121230 -9606 100422437 LOC100422437 - - - 2 - myosin, light chain 6B, alkali, smooth muscle and non-muscle pseudogene pseudo - - - - 20121230 -9606 100422438 LOC100422438 - - - 12 - mitogen-activated protein kinase-activated protein kinase 2 pseudogene pseudo - - - - 20121230 -9606 100422440 LOC100422440 - - - 11 - general transcription factor IIE, polypeptide 2, beta 34kDa pseudogene pseudo - - - - 20121230 -9606 100422441 LOC100422441 - - - 5 - heat shock protein 90kDa alpha (cytosolic), class B member 1 pseudogene pseudo - - - - 20121230 -9606 100422445 NUDT19P5 - - HGNC:43589 4 - nudix (nucleoside diphosphate linked moiety X)-type motif 19 pseudogene 5 pseudo NUDT19P5 nudix (nucleoside diphosphate linked moiety X)-type motif 19 pseudogene 5 O - 20121230 -9606 100422449 LOC100422449 - - - 6 - TIA1 cytotoxic granule-associated RNA binding protein-like 1 pseudogene pseudo - - - - 20121230 -9606 100422450 NUDT19P3 - - HGNC:43587 6 - nudix (nucleoside diphosphate linked moiety X)-type motif 19 pseudogene 3 pseudo NUDT19P3 nudix (nucleoside diphosphate linked moiety X)-type motif 19 pseudogene 3 O - 20121230 -9606 100422452 NUDT19P4 - - HGNC:43588 6 - nudix (nucleoside diphosphate linked moiety X)-type motif 19 pseudogene 4 pseudo NUDT19P4 nudix (nucleoside diphosphate linked moiety X)-type motif 19 pseudogene 4 O - 20121230 -9606 100422453 LOC100422453 - - - 6 - polymerase (DNA directed), delta 1, catalytic subunit 125kDa pseudogene pseudo - - - - 20121230 -9606 100422456 LOC100422456 - - - 7 - v-rel reticuloendotheliosis viral oncogene homolog A (avian) pseudogene pseudo - - - - 20121230 -9606 100422458 NUDT19P2 - - HGNC:43586 X - nudix (nucleoside diphosphate linked moiety X)-type motif 19 pseudogene 2 pseudo NUDT19P2 nudix (nucleoside diphosphate linked moiety X)-type motif 19 pseudogene 2 O - 20121230 -9606 100422463 LOC100422463 - - - 12 - calcium channel, voltage-dependent, L type, alpha 1C subunit pseudogene pseudo - - - - 20121230 -9606 100422467 NUDT21P1 - - HGNC:39461 13 - nudix (nucleoside diphosphate linked moiety X)-type motif 21 pseudogene 1 pseudo NUDT21P1 nudix (nucleoside diphosphate linked moiety X)-type motif 21 pseudogene 1 O - 20121230 -9606 100422469 LOC100422469 - - - X - UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 pseudogene pseudo - - - - 20121230 -9606 100422471 LOC100422471 - - - X - solute carrier family 9, subfamily A (NHE2, cation proton antiporter 2), member 2 pseudogene pseudo - - - - 20121230 -9606 100422473 LOC100422473 - - - 2 - translocase of outer mitochondrial membrane 40 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100422478 LOC100422478 - - - 17 - potassium inwardly-rectifying channel, subfamily J, member 12 pseudogene pseudo - - - - 20121230 -9606 100422479 LOC100422479 - - - 16 - integrin, alpha X (complement component 3 receptor 4 subunit) pseudogene pseudo - - - - 20121230 -9606 100422486 KRR1P1 - - HGNC:39580 13 - KRR1, small subunit (SSU) processome component, homolog (yeast) pseudogene 1 pseudo KRR1P1 KRR1, small subunit (SSU) processome component, homolog (yeast) pseudogene 1 O - 20121230 -9606 100422490 LOC100422490 - - - 15 - UTP6, small subunit (SSU) processome component, homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100422491 LOC100422491 - - - 15 - amyloid beta (A4) precursor protein-binding, family A, member 2 pseudogene pseudo - - - - 20121209 -9606 100422492 LOC100422492 - - - 15 - amyloid beta (A4) precursor protein-binding, family A, member 2 pseudogene pseudo - - - - 20121230 -9606 100422493 LOC100422493 - - - 14 - required for meiotic nuclear division 1 homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422495 LOC100422495 - - - 8 - protein tyrosine phosphatase, non-receptor type 4 (megakaryocyte) pseudogene pseudo - - - - 20121230 -9606 100422496 PRPF19P - HsT1682|PRP19P HGNC:23182 18 - PRP19 pre-mRNA processing factor 19 homolog (S. cerevisiae) pseudogene pseudo PRPF19P PRP19 pre-mRNA processing factor 19 homolog (S. cerevisiae) pseudogene O - 20121230 -9606 100422497 LOC100422497 - - - 18 - UTP18, small subunit (SSU) processome component, homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100422500 LOC100422500 - - - 9 - transient receptor potential cation channel, subfamily C, member 6 pseudogene pseudo - - - - 20121230 -9606 100422501 LOC100422501 - - - 9 - COP9 constitutive photomorphogenic homolog subunit 2 (Arabidopsis) pseudogene pseudo - - - - 20121230 -9606 100422502 LOC100422502 - - - 5 - transient receptor potential cation channel, subfamily C, member 6 pseudogene pseudo - - - - 20121230 -9606 100422505 ATP8A2P1 - - HGNC:39662 10 - ATPase, aminophospholipid transporter, class I, type 8A, member 2 pseudogene 1 pseudo ATP8A2P1 ATPase, aminophospholipid transporter, class I, type 8A, member 2 pseudogene 1 O - 20121230 -9606 100422510 LOC100422510 - - - 14 - solute carrier family 12 (sodium/chloride transporters), member 3 pseudogene pseudo - - - - 20121230 -9606 100422513 LOC100422513 - - - 2 - pleckstrin homology domain containing, family B (evectins) member 2 pseudogene pseudo - - - - 20121230 -9606 100422514 ATP5F1P4 - - HGNC:39745 2 - ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 4 pseudo ATP5F1P4 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 4 O - 20121230 -9606 100422517 LOC100422517 - - - 20 - Bartter syndrome, infantile, with sensorineural deafness (Barttin) pseudogene pseudo - - - - 20121230 -9606 100422519 LOC100422519 - - - 7 - pleckstrin homology domain containing, family B (evectins) member 2 pseudogene pseudo - - - - 20121230 -9606 100422523 ATP5F1P1 - - HGNC:39742 13 - ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 1 pseudo ATP5F1P1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit B1 pseudogene 1 O - 20121230 -9606 100422524 LOC100422524 - - - 10 - solute carrier family 4, sodium bicarbonate cotransporter, member 8 pseudogene pseudo - - - - 20121230 -9606 100422526 LOC100422526 - - - 1 - proteasome (prosome, macropain) activator subunit 3 (PA28 gamma; Ki) pseudogene pseudo - - - - 20121230 -9606 100422527 LOC100422527 - - - 1 - solute carrier family 4 (anion exchanger), member 1, adaptor protein pseudogene pseudo - - - - 20121230 -9606 100422528 LOC100422528 - - - 14 - pleckstrin homology domain containing, family B (evectins) member 2 pseudogene pseudo - - - - 20121230 -9606 100422529 LOC100422529 - - - 14 - pleckstrin homology domain containing, family B (evectins) member 2 pseudogene pseudo - - - - 20121209 -9606 100422530 LOC100422530 - - - 22 - pleckstrin homology domain containing, family B (evectins) member 2 pseudogene pseudo - - - - 20121209 -9606 100422531 FCF1P8 - - HGNC:44620 4 - FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 8 pseudo FCF1P8 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 8 O - 20121230 -9606 100422532 NDUFAF4P3 - - HGNC:44542 3 - NADH dehydrogenase (ubiquinone) complex I, assembly factor 4 pseudogene 3 pseudo NDUFAF4P3 NADH dehydrogenase (ubiquinone) complex I, assembly factor 4 pseudogene 3 O - 20121230 -9606 100422533 FCF1P1 - - HGNC:44613 7 - FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 1 pseudo FCF1P1 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 1 O - 20121230 -9606 100422535 FCF1P6 - - HGNC:44618 1 - FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 6 pseudo FCF1P6 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 6 O - 20121230 -9606 100422536 FCF1P7 - - HGNC:44619 1 - FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 7 pseudo FCF1P7 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) pseudogene 7 O - 20121230 -9606 100422537 LOC100422537 - - - 1 - signal sequence receptor, gamma (translocon-associated protein gamma) pseudogene pseudo - - - - 20121230 -9606 100422538 LOC100422538 - - - 9 - recombination signal binding protein for immunoglobulin kappa J region pseudogene pseudo - - - - 20121230 -9606 100422540 VTI1BP4 - - HGNC:43730 9 - vesicle transport through interaction with t-SNAREs 1B pseudogene 4 pseudo VTI1BP4 vesicle transport through interaction with t-SNAREs 1B pseudogene 4 O - 20121230 -9606 100422545 HIRAP1 - - HGNC:44916 10 - HIR histone cell cycle regulation defective homolog A pseudogene 1 pseudo HIRAP1 HIR histone cell cycle regulation defective homolog A pseudogene 1 O - 20121230 -9606 100422546 LOC100422546 - - - 8 - X-ray repair complementing defective repair in Chinese hamster cells 6 pseudogene pseudo - - - - 20121230 -9606 100422547 LOC100422547 - - - 7 - solute carrier family 16, member 1 (monocarboxylic acid transporter 1) pseudogene pseudo - - - - 20121230 -9606 100422548 LOC100422548 - - - 1 - solute carrier family 5 (low affinity glucose cotransporter), member 4 pseudogene pseudo - - - - 20121230 -9606 100422549 LOC100422549 - - - 1 - solute carrier family 5 (low affinity glucose cotransporter), member 4 pseudogene pseudo - - - - 20121230 -9606 100422550 LOC100422550 - - - 11 - solute carrier family 5 (low affinity glucose cotransporter), member 4 pseudogene pseudo - - - - 20121230 -9606 100422556 LOC100422556 - - - 15 - Leo1, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422558 LOC100422558 - - - 16 - smg-1 homolog, phosphatidylinositol 3-kinase-related kinase (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100422559 LOC100422559 - - - 2 - guanine nucleotide binding protein (G protein), beta polypeptide 2-like 1 pseudogene pseudo - - - - 20121230 -9606 100422561 LOC100422561 - - - 5 5q21.3 guanine nucleotide binding protein (G protein), beta polypeptide 2-like 1 pseudogene pseudo - - - uncharacterized protein LOC643534 20121230 -9606 100422562 LOC100422562 - - - 4 - guanine nucleotide binding protein (G protein), beta polypeptide 2-like 1 pseudogene pseudo - - - - 20121230 -9606 100422564 LOC100422564 - - - 6 - glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group) pseudogene pseudo - - - - 20121230 -9606 100422580 LOC100422580 - - - 2 - transcription elongation factor B (SIII), polypeptide 3 (110kDa, elongin A) pseudogene pseudo - - - - 20121230 -9606 100422581 LOC100422581 - - - 9 - DNA fragmentation factor, 40kDa, beta polypeptide (caspase-activated DNase) pseudogene pseudo - - - - 20121230 -9606 100422582 LOC100422582 - - - 12 - transcription elongation factor B (SIII), polypeptide 1 (15kDa, elongin C) pseudogene pseudo - - - - 20121230 -9606 100422587 LOC100422587 - - - 6 - platelet-activating factor acetylhydrolase 1b, regulatory subunit 1 (45kDa) pseudogene pseudo - - - - 20121230 -9606 100422588 LOC100422588 - - - X - mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase pseudogene pseudo - - - - 20121230 -9606 100422589 LOC100422589 - - - X - mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase pseudogene pseudo - - - - 20121230 -9606 100422591 LOC100422591 - - - 2 - succinate dehydrogenase complex, subunit C, integral membrane protein, 15kDa pseudogene pseudo - - - - 20121230 -9606 100422593 LOC100422593 - - - 5 - DCN1, defective in cullin neddylation 1, domain containing 3 (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422595 PCMTD1P3 - - HGNC:38806 7 - protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 pseudogene 3 pseudo PCMTD1P3 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 pseudogene 3 O - 20121230 -9606 100422598 LOC100422598 - - - 11 - succinate dehydrogenase complex, subunit C, integral membrane protein, 15kDa pseudogene pseudo - - - - 20121230 -9606 100422600 SDHCP1 - - HGNC:31734 18 - succinate dehydrogenase complex, subunit C pseudogene 1 pseudo SDHCP1 succinate dehydrogenase complex, subunit C pseudogene 1 O - 20121230 -9606 100422602 ST13P14 - - HGNC:38849 3 - suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 14 pseudo ST13P14 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 14 O - 20121230 -9606 100422603 ST13P15 - - HGNC:38850 3 - suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 15 pseudo ST13P15 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 15 O - 20121230 -9606 100422604 LOC100422604 - - - 3 - leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 2 pseudogene pseudo - - - - 20121230 -9606 100422605 ST13P16 - - HGNC:38851 6 - suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 16 pseudo ST13P16 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 16 O - 20121230 -9606 100422606 SLC25A3P3 - - HGNC:43785 18 - solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 pseudogene pseudo SLC25A3P3 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 pseudogene O - 20121230 -9606 100422608 LOC100422608 - - - 1 - solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 24 pseudogene pseudo - - - - 20121209 -9606 100422610 LOC100422610 - - - 19 - solute carrier family 7 (cationic amino acid transporter, y+ system), member 3 pseudogene pseudo - - - - 20121230 -9606 100422611 LOC100422611 - - - 19 - leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 2 pseudogene pseudo - - - - 20121230 -9606 100422614 LOC100422614 - - - 8 - solute carrier family 7 (anionic amino acid transporter), member 13 pseudogene pseudo - - - - 20121230 -9606 100422622 LOC100422622 - - - 12 - TAF10 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 30kDa pseudogene pseudo - - - - 20121230 -9606 100422623 LOC100422623 - - - 19 - carcinoembryonic antigen-related cell adhesion molecule 1 (biliary glycoprotein) pseudogene pseudo - - - - 20121230 -9606 100422624 SLC25A15P1 - SLC25A15P|SLC25A15PY1 HGNC:18497 Y - solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 pseudogene 1 pseudo SLC25A15P1 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 pseudogene 1 O - 20121230 -9606 100422625 GOT2P5 - GOT2Y HGNC:38439 Y - glutamic-oxaloacetic transaminase 2 pseudogene 5 pseudo GOT2P5 glutamic-oxaloacetic transaminase 2 pseudogene 5 O - 20121230 -9606 100422627 LOC100422627 - - - 4 - TAF4b RNA polymerase II, TATA box binding protein (TBP)-associated factor, 105kDa pseudogene pseudo - - - - 20121230 -9606 100422628 LOC100422628 - - - X - glutamic-oxaloacetic transaminase 2, mitochondrial (aspartate aminotransferase 2) pseudogene pseudo - - - - 20121230 -9606 100422633 LOC100422633 - - - 19 - asparagine-linked glycosylation 11, alpha-1,2-mannosyltransferase homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100422634 CASP1P3 - - HGNC:43777 11 - caspase 1, apoptosis-related cysteine peptidase pseudogene 3 pseudo CASP1P3 caspase 1, apoptosis-related cysteine peptidase pseudogene 3 O - 20121230 -9606 100422635 SLC25A15P3 - - HGNC:39844 13 - solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 pseudogene 3 pseudo SLC25A15P3 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 pseudogene 3 O - 20121230 -9606 100422636 SLC25A15P4 - - HGNC:39845 21 - solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 pseudogene 4 pseudo SLC25A15P4 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 pseudogene 4 O - 20121230 -9606 100422637 LOC100422637 - - - 4 - myxovirus (influenza virus) resistance 1, interferon-inducible protein p78 (mouse) pseudogene pseudo - - - - 20121230 -9606 100422638 LOC100422638 - - - 4 - myxovirus (influenza virus) resistance 1, interferon-inducible protein p78 (mouse) pseudogene pseudo - - - - 20121230 -9606 100422639 LOC100422639 - - - 4 - myxovirus (influenza virus) resistance 1, interferon-inducible protein p78 (mouse) pseudogene pseudo - - - - 20121230 -9606 100422640 LOC100422640 - - - 4 - 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase pseudogene pseudo - - - - 20121230 -9606 100422641 LOC100422641 - - - 14 - STT3, subunit of the oligosaccharyltransferase complex, homolog A (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422642 SLC25A15P5 - - HGNC:39846 22 - solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 pseudogene 5 pseudo SLC25A15P5 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 pseudogene 5 O - 20121230 -9606 100422644 LOC100422644 - - - X - serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 7 pseudogene pseudo - - - - 20121230 -9606 100422645 LOC100422645 - - - 15 - CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 2 pseudogene pseudo - - - - 20121230 -9606 100422646 LOC100422646 - - - 6 - 1-aminocyclopropane-1-carboxylate synthase homolog (Arabidopsis)(non-functional)-like pseudogene pseudo - - - - 20121230 -9606 100422656 LOC100422656 - - - 17 - eukaryotic translation elongation factor 1 delta (guanine nucleotide exchange protein) pseudogene pseudo - - - - 20121230 -9606 100422657 RAC1P6 - - HGNC:42006 7 - ras-related C3 botulinum toxin substrate 1 pseudogene 6 pseudo RAC1P6 ras-related C3 botulinum toxin substrate 1 pseudogene 6 O - 20121230 -9606 100422658 LOC100422658 - - - 7 - ras-related C3 botulinum toxin substrate 1 (rho family, small GTP binding protein Rac1) pseudogene pseudo - - - - 20121230 -9606 100422666 LOC100422666 - - - 11 - tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, beta polypeptide pseudogene pseudo - - - - 20121230 -9606 100422669 LOC100422669 - - - 15 - tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta polypeptide pseudogene pseudo - - - - 20121230 -9606 100422671 LOC100422671 - - - 6 - cell division cycle 73, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100422674 YWHAQP7 - - HGNC:37686 12 - YWHAQ pseudogene 7 pseudo YWHAQP7 YWHAQ pseudogene 7 O - 20121230 -9606 100422685 LOC100422685 - - - X - solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene pseudo - - - - 20121230 -9606 100422686 SLC25A6P3 - - HGNC:43852 1 - solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene 3 pseudo SLC25A6P3 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene 3 O - 20121230 -9606 100422687 LOC100422687 - - - 5 - pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 1 pseudogene pseudo - - - - 20121230 -9606 100422690 SLC25A6P4 - - HGNC:43853 18 - solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene 4 pseudo SLC25A6P4 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 pseudogene 4 O - 20121230 -9606 100422691 ITGB1P1 - FNRBL|ITGB1L HGNC:3781 19 19p integrin beta 1 pseudogene 1 pseudo ITGB1P1 integrin beta 1 pseudogene 1 O - 20121209 -9606 100422693 LOC100422693 - - - 17 - UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 1 (GalNAc-T1) pseudogene pseudo - - - - 20121230 -9606 100422694 LOC100422694 - - - 1 - UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 11 (GalNAc-T11) pseudogene pseudo - - - - 20121230 -9606 100422695 LOC100422695 - - - 7 - SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 pseudogene pseudo - - - - 20121230 -9606 100422696 LOC100422696 - - - 7 - SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 pseudogene pseudo - - - - 20121230 -9606 100422710 LOC100422710 - - - 2 - protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 1 pseudogene pseudo - - - - 20121230 -9606 100422711 PRKRIRP2 - - HGNC:39566 3 - protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 2 pseudo PRKRIRP2 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 2 O - 20121230 -9606 100422712 PRKRIRP7 - - HGNC:39574 8 - protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 7 pseudo PRKRIRP7 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 7 O - 20121230 -9606 100422713 LOC100422713 - - - 16 - protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 1 pseudogene pseudo - - - - 20121230 -9606 100422715 PRKRIRP10 - - HGNC:39741 13 - protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 10 pseudo PRKRIRP10 protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene 10 O - 20121230 -9606 100422716 LOC100422716 - - - 2 - ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 pseudogene pseudo - - - - 20121230 -9606 100422717 LOC100422717 - - - 17 - pterin-4 alpha-carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 2 pseudogene pseudo - - - - 20121230 -9606 100422730 LOC100422730 - - - 5 - sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5A pseudogene pseudo - - - - 20121230 -9606 100422737 LOC100422737 - - - 6 - uncharacterized LOC100422737 miscRNA - - - - 20121230 -9606 100422781 LOC100422781 - - - - - uncharacterized LOC100422781 miscRNA - - - - 20120622 -9606 100422821 MIR1273C - - HGNC:38173|miRBase:MI0014171 6 - microRNA 1273c miscRNA MIR1273C microRNA 1273c O - 20121230 -9606 100422823 MIR4300 - - HGNC:38184|miRBase:MI0015831 11 - microRNA 4300 miscRNA MIR4300 microRNA 4300 O - 20121230 -9606 100422824 MIR3128 - - HGNC:38188|miRBase:MI0014145 2 - microRNA 3128 miscRNA MIR3128 microRNA 3128 O - 20121230 -9606 100422825 MIR3160-2 - - HGNC:38192|miRBase:MI0014190 11 - microRNA 3160-2 miscRNA MIR3160-2 microRNA 3160-2 O - 20121230 -9606 100422826 MIR4274 - - HGNC:38194|miRBase:MI0015884 4 - microRNA 4274 miscRNA MIR4274 microRNA 4274 O - 20121209 -9606 100422827 MIR3160-1 - - HGNC:38197|miRBase:MI0014189 11 - microRNA 3160-1 miscRNA MIR3160-1 microRNA 3160-1 O - 20121230 -9606 100422828 MIR4287 - - HGNC:38208|miRBase:MI0015895 8 - microRNA 4287 miscRNA MIR4287 microRNA 4287 O - 20121230 -9606 100422829 MIR4319 - - HGNC:38212|miRBase:MI0015848 18 - microRNA 4319 miscRNA MIR4319 microRNA 4319 O - 20121230 -9606 100422830 MIR3171 - - HGNC:38216|miRBase:MI0014202 14 - microRNA 3171 miscRNA MIR3171 microRNA 3171 O - 20120318 -9606 100422831 MIR1302-9 - - HGNC:38218|miRBase:MI0015978 9 - microRNA 1302-9 miscRNA MIR1302-9 microRNA 1302-9 O - 20121209 -9606 100422832 MIR3191 - - HGNC:38222|miRBase:MI0014236 19 - microRNA 3191 miscRNA MIR3191 microRNA 3191 O - 20121230 -9606 100422833 MIR3188 - - HGNC:38226|miRBase:MI0014232 19 - microRNA 3188 miscRNA MIR3188 microRNA 3188 O - 20121230 -9606 100422834 MIR1302-10 - - HGNC:38233|miRBase:MI0015979 15 - microRNA 1302-10 miscRNA MIR1302-10 microRNA 1302-10 O - 20121230 -9606 100422835 MIR3183 - - HGNC:38237|miRBase:MI0014225 17 - microRNA 3183 miscRNA MIR3183 microRNA 3183 O - 20121230 -9606 100422836 MIR3180-3 - - HGNC:38239|miRBase:MI0014217 16 - microRNA 3180-3 miscRNA MIR3180-3 microRNA 3180-3 O - 20121230 -9606 100422837 MIR1193 - - HGNC:38247|miRBase:MI0014205 14 - microRNA 1193 miscRNA MIR1193 microRNA 1193 O - 20121230 -9606 100422838 MIR3195 - - HGNC:38250|miRBase:MI0014240 20 - microRNA 3195 miscRNA MIR3195 microRNA 3195 O - 20120318 -9606 100422839 MIR3119-1 - - HGNC:38253|miRBase:MI0014134 1 - microRNA 3119-1 miscRNA MIR3119-1 microRNA 3119-1 O - 20121230 -9606 100422840 MIR4317 - - HGNC:38260|miRBase:MI0015850 18 - microRNA 4317 miscRNA MIR4317 microRNA 4317 O - 20121230 -9606 100422841 MIR3174 - - HGNC:38264|miRBase:MI0014208 15 - microRNA 3174 miscRNA MIR3174 microRNA 3174 O - 20121230 -9606 100422842 MIR3074 - - HGNC:38268|miRBase:MI0014181 9 - microRNA 3074 miscRNA MIR3074 microRNA 3074 O - 20121230 -9606 100422843 MIR4293 - - HGNC:38270|miRBase:MI0015826 10 - microRNA 4293 miscRNA MIR4293 microRNA 4293 O - 20121230 -9606 100422844 MIR3118-3 - - HGNC:38274|miRBase:MI0014133 1 - microRNA 3118-3 miscRNA MIR3118-3 microRNA 3118-3 O - 20121230 -9606 100422845 MIR1233-2 - - HGNC:38277|miRBase:MI0015973 15 - microRNA 1233-2 miscRNA MIR1233-2 microRNA 1233-2 O - 20121230 -9606 100422846 MIR3164 - - HGNC:38288|miRBase:MI0014194 11 - microRNA 3164 miscRNA MIR3164 microRNA 3164 O - 20121230 -9606 100422847 MIR514B - - HGNC:38292|miRBase:MI0014251 X Xq27.3 microRNA 514b miscRNA MIR514B microRNA 514b O - 20121230 -9606 100422848 MIR4283-2 - - HGNC:38296|miRBase:MI0015982 7 - microRNA 4283-2 miscRNA MIR4283-2 microRNA 4283-2 O - 20121230 -9606 100422849 MIR548T - - HGNC:38298|miRBase:MI0014164 4 - microRNA 548t miscRNA MIR548T microRNA 548t O - 20121230 -9606 100422850 MIR548V - - HGNC:38302|miRBase:MI0014174 8 - microRNA 548v miscRNA MIR548V microRNA 548v O - 20121230 -9606 100422851 MIR4316 - - HGNC:38306|miRBase:MI0015845 17 - microRNA 4316 miscRNA MIR4316 microRNA 4316 O - 20121230 -9606 100422852 MIR4259 - - HGNC:38309|miRBase:MI0015858 1 - microRNA 4259 miscRNA MIR4259 microRNA 4259 O - 20120318 -9606 100422853 MIR3182 - - HGNC:38317|miRBase:MI0014224 16 - microRNA 3182 miscRNA MIR3182 microRNA 3182 O - 20121230 -9606 100422854 MIR3187 - - HGNC:38319|miRBase:MI0014231 19 - microRNA 3187 miscRNA MIR3187 microRNA 3187 O - 20121230 -9606 100422855 MIR4301 - - HGNC:38323|miRBase:MI0015828 11 - microRNA 4301 miscRNA MIR4301 microRNA 4301 O - 20121230 -9606 100422856 MIR3123 - - HGNC:38330|miRBase:MI0014139 1 - microRNA 3123 miscRNA MIR3123 microRNA 3123 O - 20121230 -9606 100422857 MIR4318 - - HGNC:38333|miRBase:MI0015847 18 - microRNA 4318 miscRNA MIR4318 microRNA 4318 O - 20121230 -9606 100422858 MIR4285 - - HGNC:38337|miRBase:MI0015891 7 - microRNA 4285 miscRNA MIR4285 microRNA 4285 O - 20121230 -9606 100422859 MIR3136 - - HGNC:38340|miRBase:MI0014158 3 - microRNA 3136 miscRNA MIR3136 microRNA 3136 O - 20121230 -9606 100422860 MIR4292 - - HGNC:38348|miRBase:MI0015897 9 - microRNA 4292 miscRNA MIR4292 microRNA 4292 O - 20121230 -9606 100422861 MIR4306 - - HGNC:38350|miRBase:MI0015836 13 - microRNA 4306 miscRNA MIR4306 microRNA 4306 O - 20121230 -9606 100422862 MIR548S - - HGNC:38354|miRBase:MI0014141 2 - microRNA 548s miscRNA MIR548S microRNA 548s O - 20121230 -9606 100422863 MIR4265 - - HGNC:38358|miRBase:MI0015869 2 - microRNA 4265 miscRNA MIR4265 microRNA 4265 O - 20121230 -9606 100422864 MIR544B - - HGNC:38361|miRBase:MI0014159 3 - microRNA 544b miscRNA MIR544B microRNA 544b O - 20121230 -9606 100422865 MIR4320 - - HGNC:38369|miRBase:MI0015849 18 - microRNA 4320 miscRNA MIR4320 microRNA 4320 O - 20121230 -9606 100422866 MIR3115 - - HGNC:38371|miRBase:MI0014127 1 - microRNA 3115 miscRNA MIR3115 microRNA 3115 O - 20121230 -9606 100422867 MIR378C - - HGNC:38374|miRBase:MI0015825 10 - microRNA 378c miscRNA MIR378C microRNA 378c O - 20121230 -9606 100422868 MIR4270 - - HGNC:38377|miRBase:MI0015878 3 - microRNA 4270 miscRNA MIR4270 microRNA 4270 O - 20121230 -9606 100422869 MIR3152 - - HGNC:38379|miRBase:MI0014179 9 - microRNA 3152 miscRNA MIR3152 microRNA 3152 O - 20121230 -9606 100422870 MIR3180-1 - - HGNC:38382|miRBase:MI0014214 16 - microRNA 3180-1 miscRNA MIR3180-1 microRNA 3180-1 O - 20121230 -9606 100422871 MIR3117 - - HGNC:38385|miRBase:MI0014130 1 - microRNA 3117 miscRNA MIR3117 microRNA 3117 O - 20121230 -9606 100422872 MIR1244-3 - - HGNC:38390|miRBase:MI0015975 12 - microRNA 1244-3 miscRNA MIR1244-3 microRNA 1244-3 O - 20121230 -9606 100422873 MIR4297 - - HGNC:38393|miRBase:MI0015824 10 - microRNA 4297 miscRNA MIR4297 microRNA 4297 O - 20121230 -9606 100422874 MIR4279 - - HGNC:38195|miRBase:MI0015887 5 - microRNA 4279 miscRNA MIR4279 microRNA 4279 O - 20121230 -9606 100422875 MIR3192 - - HGNC:38202|miRBase:MI0014237 20 - microRNA 3192 miscRNA MIR3192 microRNA 3192 O - 20121230 -9606 100422876 MIR3148 - - HGNC:38215|miRBase:MI0014175 8 - microRNA 3148 miscRNA MIR3148 microRNA 3148 O - 20121230 -9606 100422877 MIR3202-2 - - HGNC:38228|miRBase:MI0014253 X - microRNA 3202-2 miscRNA MIR3202-2 microRNA 3202-2 O - 20121230 -9606 100422878 MIR3168 - - HGNC:38249|miRBase:MI0014199 13 - microRNA 3168 miscRNA MIR3168 microRNA 3168 O - 20121230 -9606 100422879 MIR3124 - - HGNC:38262|miRBase:MI0014140 1 - microRNA 3124 miscRNA MIR3124 microRNA 3124 O - 20121230 -9606 100422880 MIR3162 - - HGNC:38271|miRBase:MI0014192 11 - microRNA 3162 miscRNA MIR3162 microRNA 3162 O - 20121230 -9606 100422881 MIR3170 - - HGNC:38282|miRBase:MI0014201 13 - microRNA 3170 miscRNA MIR3170 microRNA 3170 O - 20121230 -9606 100422882 MIR3120 - - HGNC:38295|MIM:614722|miRBase:MI0014136 1 - microRNA 3120 miscRNA MIR3120 microRNA 3120 O - 20121230 -9606 100422883 MIR4325 - - HGNC:38304|miRBase:MI0015865 20 - microRNA 4325 miscRNA MIR4325 microRNA 4325 O - 20121230 -9606 100422884 MIR548U - - HGNC:38316|miRBase:MI0014168 6 - microRNA 548u miscRNA MIR548U microRNA 548u O - 20121230 -9606 100422885 MIR1244-2 - - HGNC:38321|miRBase:MI0015974 5 - microRNA 1244-2 miscRNA MIR1244-2 microRNA 1244-2 O - 20121230 -9606 100422886 MIR3179-2 - - HGNC:38325|miRBase:MI0014216 16 - microRNA 3179-2 miscRNA MIR3179-2 microRNA 3179-2 O - 20121209 -9606 100422887 MIR4280 - - HGNC:38334|miRBase:MI0015889 5 - microRNA 4280 miscRNA MIR4280 microRNA 4280 O - 20121230 -9606 100422888 MIR4264 - - HGNC:38338|miRBase:MI0015877 2 - microRNA 4264 miscRNA MIR4264 microRNA 4264 O - 20121230 -9606 100422889 MIR3194 - - HGNC:38346|miRBase:MI0014239 20 - microRNA 3194 miscRNA MIR3194 microRNA 3194 O - 20121230 -9606 100422890 MIR3118-5 - - HGNC:38351|miRBase:MI0014243 21 - microRNA 3118-5 miscRNA MIR3118-5 microRNA 3118-5 O - 20121209 -9606 100422891 MIR4327 - - HGNC:38355|miRBase:MI0015867 21 - microRNA 4327 miscRNA MIR4327 microRNA 4327 O - 20121230 -9606 100422892 MIR3157 - - HGNC:38172|miRBase:MI0014185 10 - microRNA 3157 miscRNA MIR3157 microRNA 3157 O - 20121230 -9606 100422893 MIR3154 - - HGNC:38176|miRBase:MI0014182 9 9q34 microRNA 3154 miscRNA MIR3154 microRNA 3154 O - 20121230 -9606 100422894 MIR4260 - - HGNC:38179|miRBase:MI0015859 1 - microRNA 4260 miscRNA MIR4260 microRNA 4260 O - 20121230 -9606 100422895 MIR4294 - - HGNC:38180|miRBase:MI0015827 10 - microRNA 4294 miscRNA MIR4294 microRNA 4294 O - 20121230 -9606 100422896 MIR3140 - - HGNC:38183|miRBase:MI0014163 4 - microRNA 3140 miscRNA MIR3140 microRNA 3140 O - 20121230 -9606 100422897 MIR4302 - - HGNC:38185|miRBase:MI0015833 12 - microRNA 4302 miscRNA MIR4302 microRNA 4302 O - 20121230 -9606 100422898 MIR4255 - - HGNC:38187|miRBase:MI0015863 1 - microRNA 4255 miscRNA MIR4255 microRNA 4255 O - 20121230 -9606 100422899 MIR3190 - - HGNC:38190|miRBase:MI0014235 19 - microRNA 3190 miscRNA MIR3190 microRNA 3190 O - 20121230 -9606 100422900 MIR3158-1 - - HGNC:38196|miRBase:MI0014186 10 - microRNA 3158-1 miscRNA MIR3158-1 microRNA 3158-1 O - 20121230 -9606 100422901 MIR3135A - MIR3135|hsa-mir-3135a HGNC:38199|miRBase:MI0014156 3 - microRNA 3135a miscRNA MIR3135A microRNA 3135a O - 20121230 -9606 100422902 MIR3116-1 - - HGNC:38200|miRBase:MI0014128 1 - microRNA 3116-1 miscRNA MIR3116-1 microRNA 3116-1 O - 20121230 -9606 100422903 MIR4288 - - HGNC:38203|miRBase:MI0015896 8 8p21 microRNA 4288 miscRNA MIR4288 microRNA 4288 O - 20121230 -9606 100422904 MIR3193 - - HGNC:38204|miRBase:MI0014238 20 - microRNA 3193 miscRNA MIR3193 microRNA 3193 O - 20121230 -9606 100422905 MIR4311 - - HGNC:38207|miRBase:MI0015841 15 - microRNA 4311 miscRNA MIR4311 microRNA 4311 O - 20121230 -9606 100422906 MIR3118-6 - - HGNC:38210|miRBase:MI0015981 15 - microRNA 3118-6 miscRNA MIR3118-6 microRNA 3118-6 O - 20121230 -9606 100422907 MIR3156-2 - - HGNC:38213|miRBase:MI0014230 18 - microRNA 3156-2 miscRNA MIR3156-2 microRNA 3156-2 O - 20121230 -9606 100422908 MIR3129 - - HGNC:38217|miRBase:MI0014146 2 - microRNA 3129 miscRNA MIR3129 microRNA 3129 O - 20121230 -9606 100422909 MIR4295 - - HGNC:38220|miRBase:MI0015822 10 - microRNA 4295 miscRNA MIR4295 microRNA 4295 O - 20121230 -9606 100422910 MIR2861 - BMND15|MIRN2861 HGNC:38221|MIM:613405|miRBase:MI0013006 9 - microRNA 2861 miscRNA MIR2861 microRNA 2861 O - 20121230 -9606 100422911 MIR500B - - HGNC:38223|miRBase:MI0015903 X Xp11.23 microRNA 500b miscRNA MIR500B microRNA 500b O - 20121230 -9606 100422912 MIR3200 - - HGNC:38227|miRBase:MI0014249 22 - microRNA 3200 miscRNA MIR3200 microRNA 3200 O - 20121230 -9606 100422913 MIR320E - - HGNC:38230|miRBase:MI0014234 19 19q13.32 microRNA 320e miscRNA MIR320E microRNA 320e O - 20121230 -9606 100422914 MIR4253 - - HGNC:38231|miRBase:MI0015860 1 - microRNA 4253 miscRNA MIR4253 microRNA 4253 O - 20121230 -9606 100422915 MIR3065 - - HGNC:38234|miRBase:MI0014228 17 - microRNA 3065 miscRNA MIR3065 microRNA 3065 O - 20121230 -9606 100422916 MIR3201 - - HGNC:38235|miRBase:MI0014250 22 - microRNA 3201 miscRNA MIR3201 microRNA 3201 O - 20121230 -9606 100422917 MIR4283-1 - - HGNC:38238|miRBase:MI0015892 7 - microRNA 4283-1 miscRNA MIR4283-1 microRNA 4283-1 O - 20121230 -9606 100422918 MIR3167 - - HGNC:38242|miRBase:MI0014198 11 - microRNA 3167 miscRNA MIR3167 microRNA 3167 O - 20121230 -9606 100422919 MIR1302-11 - - HGNC:38246|miRBase:MI0015980 19 - microRNA 1302-11 miscRNA MIR1302-11 microRNA 1302-11 O - 20121230 -9606 100422920 MIR548X - - HGNC:38248|miRBase:MI0014244 21 - microRNA 548x miscRNA MIR548X microRNA 548x O - 20121230 -9606 100422921 MIR3149 - - HGNC:38251|miRBase:MI0014176 8 - microRNA 3149 miscRNA MIR3149 microRNA 3149 O - 20120318 -9606 100422922 MIR1972-2 - - HGNC:38252|miRBase:MI0015977 16 - microRNA 1972-2 miscRNA MIR1972-2 microRNA 1972-2 O - 20121230 -9606 100422923 MIR548W - - HGNC:38255|miRBase:MI0014222 16 - microRNA 548w miscRNA MIR548W microRNA 548w O - 20121230 -9606 100422924 MIR4303 - - HGNC:38256|miRBase:MI0015834 12 - microRNA 4303 miscRNA MIR4303 microRNA 4303 O - 20121230 -9606 100422925 MIR4322 - - HGNC:38261|miRBase:MI0015851 19 - microRNA 4322 miscRNA MIR4322 microRNA 4322 O - 20121230 -9606 100422926 MIR3137 - - HGNC:38263|miRBase:MI0014160 3 - microRNA 3137 miscRNA MIR3137 microRNA 3137 O - 20121230 -9606 100422927 MIR4291 - - HGNC:38267|miRBase:MI0015900 9 - microRNA 4291 miscRNA MIR4291 microRNA 4291 O - 20121230 -9606 100422928 MIR3127 - - HGNC:38269|miRBase:MI0014144 2 - microRNA 3127 miscRNA MIR3127 microRNA 3127 O - 20121230 -9606 100422929 MIR4261 - - HGNC:38272|miRBase:MI0015868 2 - microRNA 4261 miscRNA MIR4261 microRNA 4261 O - 20121230 -9606 100422930 MIR4330 - - HGNC:38273|miRBase:MI0015902 X - microRNA 4330 miscRNA MIR4330 microRNA 4330 O - 20121230 -9606 100422931 MIR4304 - - HGNC:38276|miRBase:MI0015832 12 - microRNA 4304 miscRNA MIR4304 microRNA 4304 O - 20121230 -9606 100422932 MIR4328 - - HGNC:38280|miRBase:MI0015904 X - microRNA 4328 miscRNA MIR4328 microRNA 4328 O - 20121230 -9606 100422933 MIR378B - - HGNC:38283|miRBase:MI0014154 3 - microRNA 378b miscRNA MIR378B microRNA 378b O - 20121230 -9606 100422934 MIR3143 - - HGNC:38284|miRBase:MI0014167 6 - microRNA 3143 miscRNA MIR3143 microRNA 3143 O - 20121230 -9606 100422935 MIR3118-4 - - HGNC:38287|miRBase:MI0014207 15 - microRNA 3118-4 miscRNA MIR3118-4 microRNA 3118-4 O - 20121230 -9606 100422936 MIR3153 - - HGNC:38289|miRBase:MI0014180 9 - microRNA 3153 miscRNA MIR3153 microRNA 3153 O - 20121230 -9606 100422937 MIR4275 - - HGNC:38293|miRBase:MI0015883 4 - microRNA 4275 miscRNA MIR4275 microRNA 4275 O - 20121230 -9606 100422938 MIR3142 - - HGNC:38297|miRBase:MI0014166 5 - microRNA 3142 miscRNA MIR3142 microRNA 3142 O - 20121230 -9606 100422939 MIR3147 - - HGNC:38300|miRBase:MI0014173 7 - microRNA 3147 miscRNA MIR3147 microRNA 3147 O - 20121230 -9606 100422940 MIR4305 - - HGNC:38301|miRBase:MI0015835 13 - microRNA 4305 miscRNA MIR4305 microRNA 4305 O - 20121230 -9606 100422941 MIR4272 - - HGNC:38303|miRBase:MI0015880 3 - microRNA 4272 miscRNA MIR4272 microRNA 4272 O - 20121230 -9606 100422942 MIR3133 - - HGNC:38305|miRBase:MI0014153 2 - microRNA 3133 miscRNA MIR3133 microRNA 3133 O - 20121230 -9606 100422943 MIR3189 - - HGNC:38307|miRBase:MI0014233 19 - microRNA 3189 miscRNA MIR3189 microRNA 3189 O - 20121230 -9606 100422944 MIR3186 - - HGNC:38311|miRBase:MI0014229 17 - microRNA 3186 miscRNA MIR3186 microRNA 3186 O - 20121230 -9606 100422945 MIR4326 - - HGNC:38314|miRBase:MI0015866 20 - microRNA 4326 miscRNA MIR4326 microRNA 4326 O - 20121230 -9606 100422946 MIR3116-2 - - HGNC:38318|miRBase:MI0014129 1 - microRNA 3116-2 miscRNA MIR3116-2 microRNA 3116-2 O - 20121230 -9606 100422947 MIR3122 - - HGNC:38320|miRBase:MI0014138 1 - microRNA 3122 miscRNA MIR3122 microRNA 3122 O - 20121230 -9606 100422948 MIR4284 - - HGNC:38322|miRBase:MI0015893 7 - microRNA 4284 miscRNA MIR4284 microRNA 4284 O - 20121230 -9606 100422949 MIR3118-2 - - HGNC:38324|miRBase:MI0014132 1 - microRNA 3118-2 miscRNA MIR3118-2 microRNA 3118-2 O - 20121230 -9606 100422950 MIR3141 - - HGNC:38326|miRBase:MI0014165 5 - microRNA 3141 miscRNA MIR3141 microRNA 3141 O - 20121230 -9606 100422951 MIR3144 - - HGNC:38331|miRBase:MI0014169 6 - microRNA 3144 miscRNA MIR3144 microRNA 3144 O - 20121230 -9606 100422952 MIR4271 - - HGNC:38332|miRBase:MI0015879 3 - microRNA 4271 miscRNA MIR4271 microRNA 4271 O - 20121230 -9606 100422953 MIR3165 - - HGNC:38335|miRBase:MI0014195 11 - microRNA 3165 miscRNA MIR3165 microRNA 3165 O - 20121230 -9606 100422954 MIR4309 - - HGNC:38336|miRBase:MI0015837 14 - microRNA 4309 miscRNA MIR4309 microRNA 4309 O - 20121230 -9606 100422955 MIR4273 - - HGNC:38339|miRBase:MI0015881 3 - microRNA 4273 miscRNA MIR4273 microRNA 4273 O - 20121230 -9606 100422956 MIR3180-2 - - HGNC:38343|miRBase:MI0014215 16 - microRNA 3180-2 miscRNA MIR3180-2 microRNA 3180-2 O - 20121230 -9606 100422957 MIR3131 - - HGNC:38347|miRBase:MI0014151 2 - microRNA 3131 miscRNA MIR3131 microRNA 3131 O - 20121230 -9606 100422959 MIR4268 - - HGNC:38352|miRBase:MI0015874 2 - microRNA 4268 miscRNA MIR4268 microRNA 4268 O - 20121230 -9606 100422960 MIR3179-1 - - HGNC:38353|miRBase:MI0014213 16 - microRNA 3179-1 miscRNA MIR3179-1 microRNA 3179-1 O - 20121230 -9606 100422961 MIR4315-2 - - HGNC:38356|miRBase:MI0015983 17 - microRNA 4315-2 miscRNA MIR4315-2 microRNA 4315-2 O - 20121230 -9606 100422962 MIR4281 - - HGNC:38357|miRBase:MI0015885 5 - microRNA 4281 miscRNA MIR4281 microRNA 4281 O - 20121230 -9606 100422963 MIR4290 - - HGNC:38360|miRBase:MI0015899 9 - microRNA 4290 miscRNA MIR4290 microRNA 4290 O - 20121230 -9606 100422964 MIR3150A - MIR3150 HGNC:38362|miRBase:MI0014177 8 - microRNA 3150a miscRNA MIR3150A microRNA 3150a O - 20121230 -9606 100422965 MIR4263 - - HGNC:38365|miRBase:MI0015876 2 - microRNA 4263 miscRNA MIR4263 microRNA 4263 O - 20121230 -9606 100422966 MIR4277 - - HGNC:38367|miRBase:MI0015886 5 - microRNA 4277 miscRNA MIR4277 microRNA 4277 O - 20121230 -9606 100422967 MIR3146 - - HGNC:38368|miRBase:MI0014172 7 - microRNA 3146 miscRNA MIR3146 microRNA 3146 O - 20121230 -9606 100422968 MIR4251 - - HGNC:38370|miRBase:MI0015861 1 - microRNA 4251 miscRNA MIR4251 microRNA 4251 O - 20121230 -9606 100422969 MIR2909 - - HGNC:38372|miRBase:MI0013083 17 - microRNA 2909 miscRNA MIR2909 microRNA 2909 O - 20121230 -9606 100422970 MIR1273D - - HGNC:38375|miRBase:MI0014254 1 - microRNA 1273d miscRNA MIR1273D microRNA 1273d O - 20121230 -9606 100422971 MIR4312 - - HGNC:38376|miRBase:MI0015842 15 - microRNA 4312 miscRNA MIR4312 microRNA 4312 O - 20121230 -9606 100422972 MIR3181 - - HGNC:38378|miRBase:MI0014223 16 - microRNA 3181 miscRNA MIR3181 microRNA 3181 O - 20120318 -9606 100422973 MIR3169 - - HGNC:38380|miRBase:MI0014200 13 - microRNA 3169 miscRNA MIR3169 microRNA 3169 O - 20121230 -9606 100422974 MIR3178 - - HGNC:38381|miRBase:MI0014212 16 - microRNA 3178 miscRNA MIR3178 microRNA 3178 O - 20121230 -9606 100422975 MIR4252 - - HGNC:38384|miRBase:MI0015864 1 - microRNA 4252 miscRNA MIR4252 microRNA 4252 O - 20121230 -9606 100422976 MIR4256 - - HGNC:38388|miRBase:MI0015855 1 - microRNA 4256 miscRNA MIR4256 microRNA 4256 O - 20121230 -9606 100422977 MIR1184-3 - - HGNC:38389|miRBase:MI0015972 X - microRNA 1184-3 miscRNA MIR1184-3 microRNA 1184-3 O - 20121230 -9606 100422978 MIR3185 - - HGNC:38391|miRBase:MI0014227 17 - microRNA 3185 miscRNA MIR3185 microRNA 3185 O - 20121230 -9606 100422979 MIR4324 - - HGNC:38392|miRBase:MI0015854 19 - microRNA 4324 miscRNA MIR4324 microRNA 4324 O - 20121230 -9606 100422980 MIR4323 - - HGNC:38394|miRBase:MI0015853 19 - microRNA 4323 miscRNA MIR4323 microRNA 4323 O - 20121230 -9606 100422981 MIR3173 - - HGNC:38174|miRBase:MI0014204 14 - microRNA 3173 miscRNA MIR3173 microRNA 3173 O - 20121230 -9606 100422982 MIR4286 - - HGNC:38186|miRBase:MI0015894 8 - microRNA 4286 miscRNA MIR4286 microRNA 4286 O - 20121230 -9606 100422983 MIR4314 - - HGNC:38191|miRBase:MI0015846 17 - microRNA 4314 miscRNA MIR4314 microRNA 4314 O - 20121230 -9606 100422984 MIR4308 - - HGNC:38206|miRBase:MI0015839 14 - microRNA 4308 miscRNA MIR4308 microRNA 4308 O - 20121230 -9606 100422985 MIR1184-2 - - HGNC:38211|miRBase:MI0015971 X - microRNA 1184-2 miscRNA MIR1184-2 microRNA 1184-2 O - 20121230 -9606 100422986 MIR3125 - - HGNC:38219|miRBase:MI0014142 2 - microRNA 3125 miscRNA MIR3125 microRNA 3125 O - 20121230 -9606 100422987 MIR3202-1 - - HGNC:38224|miRBase:MI0014252 X - microRNA 3202-1 miscRNA MIR3202-1 microRNA 3202-1 O - 20121230 -9606 100422988 MIR3156-1 - - HGNC:38241|miRBase:MI0014184 10 - microRNA 3156-1 miscRNA MIR3156-1 microRNA 3156-1 O - 20121230 -9606 100422989 MIR3155A - MIR3155|hsa-mir-3155a HGNC:38245|miRBase:MI0014183 10 - microRNA 3155a miscRNA MIR3155A microRNA 3155a O - 20121230 -9606 100422990 MIR3134 - - HGNC:38254|miRBase:MI0014155 3 - microRNA 3134 miscRNA MIR3134 microRNA 3134 O - 20121230 -9606 100422991 MIR1260B - - HGNC:38258|miRBase:MI0014197 11 - microRNA 1260b miscRNA MIR1260B microRNA 1260b O - 20121230 -9606 100422992 MIR3151 - - HGNC:38266|miRBase:MI0014178 8 - microRNA 3151 miscRNA MIR3151 microRNA 3151 O - 20121230 -9606 100422993 MIR3130-1 - MIR3130-3 HGNC:38275|miRBase:MI0014147 2 - microRNA 3130-1 miscRNA MIR3130-1 microRNA 3130-1 O - 20121230 -9606 100422994 MIR4267 - - HGNC:38286|miRBase:MI0015871 2 - microRNA 4267 miscRNA MIR4267 microRNA 4267 O - 20121230 -9606 100422995 MIR3175 - - HGNC:38299|miRBase:MI0014209 15 - microRNA 3175 miscRNA MIR3175 microRNA 3175 O - 20121230 -9606 100422996 MIR4262 - - HGNC:38308|miRBase:MI0015872 2 - microRNA 4262 miscRNA MIR4262 microRNA 4262 O - 20121230 -9606 100422997 MIR4257 - - HGNC:38312|miRBase:MI0015856 1 - microRNA 4257 miscRNA MIR4257 microRNA 4257 O - 20121230 -9606 100422998 MIR3199-2 - - HGNC:38205|miRBase:MI0014248 22 - microRNA 3199-2 miscRNA MIR3199-2 microRNA 3199-2 O - 20121230 -9606 100422999 MIR4278 - - HGNC:38243|miRBase:MI0015888 5 - microRNA 4278 miscRNA MIR4278 microRNA 4278 O - 20121230 -9606 100423000 MIR3161 - - HGNC:38285|miRBase:MI0014191 11 - microRNA 3161 miscRNA MIR3161 microRNA 3161 O - 20121230 -9606 100423001 MIR3145 - - HGNC:38327|miRBase:MI0014170 6 - microRNA 3145 miscRNA MIR3145 microRNA 3145 O - 20121230 -9606 100423002 MIR3130-2 - MIR3130-4 HGNC:38363|miRBase:MI0014148 2 - microRNA 3130-2 miscRNA MIR3130-2 microRNA 3130-2 O - 20121230 -9606 100423003 MIR3184 - - HGNC:38182|miRBase:MI0014226 17 - microRNA 3184 miscRNA MIR3184 microRNA 3184 O - 20121230 -9606 100423004 MIR4315-1 - - HGNC:38342|miRBase:MI0015844 17 - microRNA 4315-1 miscRNA MIR4315-1 microRNA 4315-1 O - 20121230 -9606 100423005 MIR4282 - - HGNC:38189|miRBase:MI0015890 6 - microRNA 4282 miscRNA MIR4282 microRNA 4282 O - 20121230 -9606 100423006 MIR3179-3 - - HGNC:38214|miRBase:MI0014221 16 - microRNA 3179-3 miscRNA MIR3179-3 microRNA 3179-3 O - 20121230 -9606 100423008 MIR3118-1 - - HGNC:38265|miRBase:MI0014131 1 - microRNA 3118-1 miscRNA MIR3118-1 microRNA 3118-1 O - 20121230 -9606 100423009 MIR4329 - - HGNC:38290|miRBase:MI0015901 X - microRNA 4329 miscRNA MIR4329 microRNA 4329 O - 20121230 -9606 100423010 MIR3119-2 - - HGNC:38315|miRBase:MI0014135 1 - microRNA 3119-2 miscRNA MIR3119-2 microRNA 3119-2 O - 20121230 -9606 100423011 MIR3138 - - HGNC:38341|miRBase:MI0014161 4 - microRNA 3138 miscRNA MIR3138 microRNA 3138 O - 20121230 -9606 100423012 MIR3177 - - HGNC:38364|miRBase:MI0014211 16 - microRNA 3177 miscRNA MIR3177 microRNA 3177 O - 20121230 -9606 100423013 MIR4310 - - HGNC:38383|miRBase:MI0015840 15 - microRNA 4310 miscRNA MIR4310 microRNA 4310 O - 20121230 -9606 100423014 MIR3196 - - HGNC:38198|miRBase:MI0014241 20 - microRNA 3196 miscRNA MIR3196 microRNA 3196 O - 20121230 -9606 100423015 MIR4289 - - HGNC:38278|miRBase:MI0015898 9 - microRNA 4289 miscRNA MIR4289 microRNA 4289 O - 20121230 -9606 100423016 MIR3159 - - HGNC:38181|miRBase:MI0014188 11 - microRNA 3159 miscRNA MIR3159 microRNA 3159 O - 20121230 -9606 100423017 MIR3139 - - HGNC:38201|miRBase:MI0014162 4 - microRNA 3139 miscRNA MIR3139 microRNA 3139 O - 20121230 -9606 100423018 MIR3156-3 - - HGNC:38229|miRBase:MI0014242 21 - microRNA 3156-3 miscRNA MIR3156-3 microRNA 3156-3 O - 20121230 -9606 100423019 MIR4307 - - HGNC:38257|miRBase:MI0015838 14 - microRNA 4307 miscRNA MIR4307 microRNA 4307 O - 20121230 -9606 100423020 MIR4258 - - HGNC:38281|miRBase:MI0015857 1 - microRNA 4258 miscRNA MIR4258 microRNA 4258 O - 20121230 -9606 100423021 MIR4298 - - HGNC:38313|miRBase:MI0015830 11 - microRNA 4298 miscRNA MIR4298 microRNA 4298 O - 20121230 -9606 100423023 MIR3197 - - HGNC:38366|miRBase:MI0014245 21 - microRNA 3197 miscRNA MIR3197 microRNA 3197 O - 20121230 -9606 100423024 MIR1270-2 - - HGNC:38387|miRBase:MI0015976 19 - microRNA 1270-2 miscRNA MIR1270-2 microRNA 1270-2 O - 20121209 -9606 100423025 MIR3198-1 - MIR3198 HGNC:38236|miRBase:MI0014246 22 - microRNA 3198-1 miscRNA MIR3198-1 microRNA 3198-1 O - 20121230 -9606 100423026 MIR4299 - - HGNC:38329|miRBase:MI0015829 11 - microRNA 4299 miscRNA MIR4299 microRNA 4299 O - 20121230 -9606 100423027 MIR4266 - - HGNC:38175|miRBase:MI0015870 2 - microRNA 4266 miscRNA MIR4266 microRNA 4266 O - 20121230 -9606 100423028 MIR4254 - - HGNC:38193|miRBase:MI0015862 1 - microRNA 4254 miscRNA MIR4254 microRNA 4254 O - 20121230 -9606 100423029 MIR3163 - - HGNC:38209|miRBase:MI0014193 11 - microRNA 3163 miscRNA MIR3163 microRNA 3163 O - 20121230 -9606 100423030 MIR3126 - - HGNC:38225|miRBase:MI0014143 2 - microRNA 3126 miscRNA MIR3126 microRNA 3126 O - 20121230 -9606 100423031 MIR4321 - - HGNC:38244|miRBase:MI0015852 19 - microRNA 4321 miscRNA MIR4321 microRNA 4321 O - 20121230 -9606 100423032 MIR3121 - - HGNC:38259|miRBase:MI0014137 1 - microRNA 3121 miscRNA MIR3121 microRNA 3121 O - 20121230 -9606 100423033 MIR3158-2 - - HGNC:38279|miRBase:MI0014187 10 - microRNA 3158-2 miscRNA MIR3158-2 microRNA 3158-2 O - 20121230 -9606 100423034 MIR3199-1 - - HGNC:38294|miRBase:MI0014247 22 - microRNA 3199-1 miscRNA MIR3199-1 microRNA 3199-1 O - 20121230 -9606 100423035 MIR4313 - - HGNC:38310|miRBase:MI0015843 15 - microRNA 4313 miscRNA MIR4313 microRNA 4313 O - 20121230 -9606 100423036 MIR2355 - - HGNC:38328|miRBase:MI0015873 2 - microRNA 2355 miscRNA MIR2355 microRNA 2355 O - 20121230 -9606 100423037 MIR3176 - - HGNC:38345|miRBase:MI0014210 16 - microRNA 3176 miscRNA MIR3176 microRNA 3176 O - 20121230 -9606 100423038 MIR466 - hsa-mir-466 HGNC:38359|miRBase:MI0014157 3 - microRNA 466 miscRNA MIR466 microRNA 466 O - 20120318 -9606 100423039 MIR3132 - - HGNC:38373|miRBase:MI0014152 2 - microRNA 3132 miscRNA MIR3132 microRNA 3132 O - 20121230 -9606 100423040 MIR3166 - - HGNC:38386|miRBase:MI0014196 11 - microRNA 3166 miscRNA MIR3166 microRNA 3166 O - 20121230 -9606 100423041 MIR4296 - - HGNC:38178|miRBase:MI0015823 10 - microRNA 4296 miscRNA MIR4296 microRNA 4296 O - 20121230 -9606 100423042 MIR4276 - - HGNC:38232|miRBase:MI0015882 4 - microRNA 4276 miscRNA MIR4276 microRNA 4276 O - 20121230 -9606 100423043 MIR4269 - - HGNC:38291|miRBase:MI0015875 2 - microRNA 4269 miscRNA MIR4269 microRNA 4269 O - 20121230 -9606 100423044 LOC100423044 - - - 7 - sodium-dependent phosphate transport protein 2B pseudogene pseudo - - - - 20121230 -9606 100423046 LOC100423046 - - - 12 - syntaxin 8 pseudogene pseudo - - - - 20121230 -9606 100423060 LOC100423060 - - - 18 18p11.2 asparagine synthetase (glutamine-hydrolyzing) pseudogene pseudo - - - - 20121230 -9606 100423061 ASNSP3 - - HGNC:39399 13 13q32 asparagine synthetase pseudogene 3 pseudo ASNSP3 asparagine synthetase pseudogene 3 O - 20121230 -9606 100423062 IGLL5 - - HGNC:38476|Ensembl:ENSG00000254709|Vega:OTTHUMG00000165670 22 22q11.22 immunoglobulin lambda-like polypeptide 5 protein-coding IGLL5 immunoglobulin lambda-like polypeptide 5 O G lambda-1|germline immunoglobulin lambda 1|immunoglobulin lambda-3 surrogate light chain|omega light chain protein 14.1 20121230 -9606 100431168 MYL6P2 - - HGNC:23772 21 21q22.2 myosin, light chain 6 pseudogene 2 pseudo MYL6P2 myosin, light chain 6 pseudogene 2 O - 20121230 -9606 100431172 KLRF2 - NKp65 HGNC:37646|Ensembl:ENSG00000256797 12 12p13 killer cell lectin-like receptor subfamily F, member 2 protein-coding KLRF2 killer cell lectin-like receptor subfamily F, member 2 O activating coreceptor NKp65|killer cell lectin-like receptor subfamily F member 2|lectin-like receptor F2 20121230 -9606 100431173 RNY4P16 - - HGNC:34066 1 1q42.11 RNA, Ro-associated Y4 pseudogene 16 pseudo RNY4P16 RNA, Ro-associated Y4 pseudogene 16 O - 20121230 -9606 100431174 LOC100431174 - - - 8 8p22 clathrin, light chain A pseudogene pseudo - - - - 20121230 -9606 100431175 LOC100431175 - - - 5 - apolipoprotein O-like pseudogene pseudo - - - - 20121230 -9606 100431177 LOC100431177 - - - 14 - basic helix-loop-helix domain containing, class B, 9 pseudogene pseudo - - - - 20121230 -9606 100462647 NKAIN1P1 - - HGNC:38593 1 1q21 Na+/K+ transporting ATPase interacting 1 pseudogene 1 pseudo NKAIN1P1 Na+/K+ transporting ATPase interacting 1 pseudogene 1 O - 20121230 -9606 100462648 LOC100462648 - - - 2 - Na+/K+ transporting ATPase interacting 1 pseudogene pseudo - - - - 20121230 -9606 100462652 LOC100462652 - - - X - solute carrier family 6 (amino acid transporter), member 14 pseudogene pseudo - - - - 20121230 -9606 100462676 RCHTS - - MIM:613328 15 15q11-q21.1 Roifman-Chitayat syndrome unknown - - - - 20120318 -9606 100462721 INTLQ1 - - MIM:603783 4 4p16-q34 Intelligence QTL1 unknown - - - - 20120622 -9606 100462722 INTLQ3 - - MIM:610294 6 6p25.3-p22.3 Intelligence QTL3 unknown - - - - 20120622 -9606 100462723 INTLQ2 - - MIM:610295 2 2q24.1-q31.1 Intelligence QTL3 unknown - - - - 20120622 -9606 100462724 OFC9 - - MIM:610361 13 13q33.1-q34 Orofacial cleft 9 unknown - - - - 20120622 -9606 100462725 NAFLD2 - - MIM:613387 11 11q23 Fatty liver disease, nonalcoholic, susceptibility to, 2 unknown - - - - 20120622 -9606 100462732 ATP6V1G1P6 - - HGNC:37673 5 5q14.1 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 6 pseudo ATP6V1G1P6 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 6 O - 20121230 -9606 100462767 ACTBP12 - ACTGP5 HGNC:150 1 1p21 actin, beta pseudogene 12 pseudo ACTBP12 actin, beta pseudogene 12 O - 20121230 -9606 100462772 FTH1P22 - FTHL22 HGNC:37640 1 - ferritin, heavy polypeptide 1 pseudogene 22 pseudo FTH1P22 ferritin, heavy polypeptide 1 pseudogene 22 O - 20121230 -9606 100462776 RRAGAP1 - RRAGAP HGNC:20242 14 - Ras-related GTP binding A pseudogene 1 pseudo RRAGAP1 Ras-related GTP binding A pseudogene 1 O - 20121230 -9606 100462780 FTLP9 - - HGNC:37958 4 - ferritin, light polypeptide pseudogene 9 pseudo FTLP9 ferritin, light polypeptide pseudogene 9 O - 20121230 -9606 100462782 MEMO1P3 - - HGNC:38503 3 - mediator of cell motility 1 pseudogene 3 pseudo MEMO1P3 mediator of cell motility 1 pseudogene 3 O - 20121230 -9606 100462785 MEMO1P4 - - HGNC:38504 X - mediator of cell motility 1 pseudogene 4 pseudo MEMO1P4 mediator of cell motility 1 pseudogene 4 O - 20121230 -9606 100462786 FTLP18 - - HGNC:37968 1 - ferritin, light polypeptide pseudogene 18 pseudo FTLP18 ferritin, light polypeptide pseudogene 18 O - 20121230 -9606 100462787 CICP10 - - HGNC:37901 2 - capicua homolog (Drosophila) pseudogene 10 pseudo CICP10 capicua homolog (Drosophila) pseudogene 10 O - 20121230 -9606 100462788 FTLP6 - - HGNC:37954 11 - ferritin, light polypeptide pseudogene 6 pseudo FTLP6 ferritin, light polypeptide pseudogene 6 O - 20121230 -9606 100462790 FTLP8 - - HGNC:37956 13 - ferritin, light polypeptide pseudogene 8 pseudo FTLP8 ferritin, light polypeptide pseudogene 8 O - 20121230 -9606 100462792 FTLP12 - - HGNC:37961 17 - ferritin, light polypeptide pseudogene 12 pseudo FTLP12 ferritin, light polypeptide pseudogene 12 O - 20121230 -9606 100462793 FTLP13 - - HGNC:37963 17 - ferritin, light polypeptide pseudogene 13 pseudo FTLP13 ferritin, light polypeptide pseudogene 13 O - 20121230 -9606 100462794 FTLP14 - - HGNC:37964 16 - ferritin, light polypeptide pseudogene 14 pseudo FTLP14 ferritin, light polypeptide pseudogene 14 O - 20121230 -9606 100462795 H2AFZP4 - - HGNC:38015 11 - H2A histone family, member Z pseudogene 4 pseudo H2AFZP4 H2A histone family, member Z pseudogene 4 O - 20121230 -9606 100462797 FTH1P24 - FTHL24 HGNC:37642 4 - ferritin, heavy polypeptide 1 pseudogene 24 pseudo FTH1P24 ferritin, heavy polypeptide 1 pseudogene 24 O - 20121230 -9606 100462799 FTH1P25 - FTHL25 HGNC:37643 1 - ferritin, heavy polypeptide 1 pseudogene 25 pseudo FTH1P25 ferritin, heavy polypeptide 1 pseudogene 25 O - 20121230 -9606 100462800 H2AFZP6 - - HGNC:38019 22 - H2A histone family, member Z pseudogene 6 pseudo H2AFZP6 H2A histone family, member Z pseudogene 6 O - 20121230 -9606 100462809 RSL24D1P8 - - HGNC:37873 19 - ribosomal L24 domain containing 1 pseudogene 8 pseudo RSL24D1P8 ribosomal L24 domain containing 1 pseudogene 8 O - 20121230 -9606 100462810 RHOT1P3 - - HGNC:37839 13 - ras homolog family member T1 pseudogene 3 pseudo RHOT1P3 ras homolog family member T1 pseudogene 3 O - 20121230 -9606 100462811 RHOT1P2 - - HGNC:37838 21 - ras homolog family member T1 pseudogene 2 pseudo RHOT1P2 ras homolog family member T1 pseudogene 2 O - 20121230 -9606 100462812 FGFR3P1 - D84394.2|FGFR3P|FGFR6 HGNC:21664 6 6p21.33 fibroblast growth factor receptor 3 pseudogene 1 pseudo FGFR3P1 fibroblast growth factor receptor 3 pseudogene 1 O - 20121230 -9606 100462813 RHOT1P1 - RHOT1P|RHOT3 HGNC:23777 18 18p11.21 ras homolog family member T1 pseudogene 1 pseudo RHOT1P1 ras homolog family member T1 pseudogene 1 O - 20121230 -9606 100462815 FGFR3P2 - - HGNC:37947 11 - fibroblast growth factor receptor 3 pseudogene 2 pseudo FGFR3P2 fibroblast growth factor receptor 3 pseudogene 2 O - 20121230 -9606 100462816 FGFR3P3 - - HGNC:37948 20 - fibroblast growth factor receptor 3 pseudogene 3 pseudo FGFR3P3 fibroblast growth factor receptor 3 pseudogene 3 O - 20121230 -9606 100462820 USP9YP6 - CDY24P HGNC:38078 Y Yq11.221 ubiquitin specific peptidase 9, Y-linked pseudogene 6 pseudo USP9YP6 ubiquitin specific peptidase 9, Y-linked pseudogene 6 O - 20121209 -9606 100462821 USP9YP7 - - HGNC:38079 Y - ubiquitin specific peptidase 9, Y-linked pseudogene 7 pseudo USP9YP7 ubiquitin specific peptidase 9, Y-linked pseudogene 7 O - 20121209 -9606 100462824 EIF4A1P3 - - HGNC:37922 9 - eukaryotic translation initiation factor 4A1 pseudogene 3 pseudo EIF4A1P3 eukaryotic translation initiation factor 4A1 pseudogene 3 O - 20121230 -9606 100462825 ATP7BP1 - - HGNC:31014 18 - ATPase, Cu++ transporting, beta polypeptide pseudogene 1 pseudo ATP7BP1 ATPase, Cu++ transporting, beta polypeptide pseudogene 1 O - 20121230 -9606 100462826 EIF4A1P13 - - HGNC:37934 7 - eukaryotic translation initiation factor 4A1 pseudogene 13 pseudo EIF4A1P13 eukaryotic translation initiation factor 4A1 pseudogene 13 O - 20121230 -9606 100462829 GCNT1P4 - - HGNC:37974 6 - glucosaminyl (N-acetyl) transferase 1, core 2 pseudogene 4 pseudo GCNT1P4 glucosaminyl (N-acetyl) transferase 1, core 2 pseudogene 4 O - 20121230 -9606 100462830 EIF4A1P12 - - HGNC:37933 14 - eukaryotic translation initiation factor 4A1 pseudogene 12 pseudo EIF4A1P12 eukaryotic translation initiation factor 4A1 pseudogene 12 O - 20121230 -9606 100462832 PNPLA4P1 - - HGNC:38085 Y - patatin-like phospholipase domain containing 4 pseudogene 1 pseudo PNPLA4P1 patatin-like phospholipase domain containing 4 pseudogene 1 O - 20121230 -9606 100462833 ISCUP1 - - HGNC:38021 1 - iron-sulfur cluster scaffold homolog (E. coli) pseudogene 1 pseudo ISCUP1 iron-sulfur cluster scaffold homolog (E. coli) pseudogene 1 O - 20121230 -9606 100462836 EIF3EP3 - - HGNC:37920 2 - eukaryotic translation initiation factor 3, subunit E pseudogene 3 pseudo EIF3EP3 eukaryotic translation initiation factor 3, subunit E pseudogene 3 O - 20121230 -9606 100462838 ATP6V1G1P3 - - HGNC:37670 9 - ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 3 pseudo ATP6V1G1P3 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 3 O - 20121230 -9606 100462840 ATP6V1G1P5 - - HGNC:37672 5 - ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 5 pseudo ATP6V1G1P5 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 5 O - 20121230 -9606 100462843 ATP6V1G1P4 - - HGNC:37671 10 - ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 4 pseudo ATP6V1G1P4 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 4 O - 20121230 -9606 100462844 ATP6V1E1P2 - ATP6EP2|ATP6V1EP2 HGNC:860 18 - ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1 pseudogene 2 pseudo ATP6V1E1P2 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1 pseudogene 2 O - 20121230 -9606 100462850 COX6B1P4 - COX6BP4 HGNC:2284 8 8p21.2 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 4 pseudo COX6B1P4 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 4 O - 20121230 -9606 100462851 COX6B1P6 - - HGNC:37676 8 - cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 6 pseudo COX6B1P6 cytochrome c oxidase subunit VIb polypeptide 1 (ubiquitous) pseudogene 6 O - 20121230 -9606 100462857 LSM6P2 - - HGNC:37811 12 - LSM6 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 2 pseudo LSM6P2 LSM6 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100462862 ATP5LP8 - - HGNC:38170 11 - ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 8 pseudo ATP5LP8 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 8 O - 20121230 -9606 100462865 ATP5LP6 - - HGNC:38168 17 - ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 6 pseudo ATP5LP6 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit g, pseudogene 6 O - 20121230 -9606 100462866 TCEB1P21 - - HGNC:38157 2 - transcription elongation factor B (SIII), polypeptide 1 pseudogene 21 pseudo TCEB1P21 transcription elongation factor B (SIII), polypeptide 1 pseudogene 21 O - 20121230 -9606 100462867 TCEB1P6 - - HGNC:38142 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 6 pseudo TCEB1P6 transcription elongation factor B (SIII), polypeptide 1 pseudogene 6 O - 20121209 -9606 100462868 TCEB1P7 - - HGNC:38143 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 7 pseudo TCEB1P7 transcription elongation factor B (SIII), polypeptide 1 pseudogene 7 O - 20121209 -9606 100462869 TCEB1P8 - - HGNC:38144 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 8 pseudo TCEB1P8 transcription elongation factor B (SIII), polypeptide 1 pseudogene 8 O - 20121230 -9606 100462870 TCEB1P9 - - HGNC:38145 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 9 pseudo TCEB1P9 transcription elongation factor B (SIII), polypeptide 1 pseudogene 9 O - 20121230 -9606 100462871 TCEB1P10 - - HGNC:38146 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 10 pseudo TCEB1P10 transcription elongation factor B (SIII), polypeptide 1 pseudogene 10 O - 20121230 -9606 100462872 TCEB1P11 - - HGNC:38147 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 11 pseudo TCEB1P11 transcription elongation factor B (SIII), polypeptide 1 pseudogene 11 O - 20121230 -9606 100462873 TCEB1P4 - - HGNC:38141 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 4 pseudo TCEB1P4 transcription elongation factor B (SIII), polypeptide 1 pseudogene 4 O - 20121209 -9606 100462874 TCEB1P12 - - HGNC:38148 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 12 pseudo TCEB1P12 transcription elongation factor B (SIII), polypeptide 1 pseudogene 12 O - 20121209 -9606 100462875 TCEB1P13 - - HGNC:38149 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 13 pseudo TCEB1P13 transcription elongation factor B (SIII), polypeptide 1 pseudogene 13 O - 20121209 -9606 100462876 TCEB1P14 - - HGNC:38150 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 14 pseudo TCEB1P14 transcription elongation factor B (SIII), polypeptide 1 pseudogene 14 O - 20121209 -9606 100462877 TCEB1P15 - - HGNC:38151 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 15 pseudo TCEB1P15 transcription elongation factor B (SIII), polypeptide 1 pseudogene 15 O - 20121209 -9606 100462878 TCEB1P16 - - HGNC:38152 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 16 pseudo TCEB1P16 transcription elongation factor B (SIII), polypeptide 1 pseudogene 16 O - 20121209 -9606 100462879 TCEB1P17 - - HGNC:38153 Y - transcription elongation factor B (SIII), polypeptide 1 pseudogene 17 pseudo TCEB1P17 transcription elongation factor B (SIII), polypeptide 1 pseudogene 17 O - 20121209 -9606 100462880 TCEB1P19 - - HGNC:38155 1 - transcription elongation factor B (SIII), polypeptide 1 pseudogene 19 pseudo TCEB1P19 transcription elongation factor B (SIII), polypeptide 1 pseudogene 19 O - 20121230 -9606 100462881 TCEB1P23 - - HGNC:38159 13 - transcription elongation factor B (SIII), polypeptide 1 pseudogene 23 pseudo TCEB1P23 transcription elongation factor B (SIII), polypeptide 1 pseudogene 23 O - 20121230 -9606 100462886 TAF13P2 - - HGNC:38161 2 - TAF13 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 18kDa pseudogene 2 pseudo TAF13P2 TAF13 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 18kDa pseudogene 2 O - 20121230 -9606 100462953 MINOS1P1 - CG012|N4BP2L2-IT|N4BP2L2-IT1|N4BP2L2IT1 HGNC:25036 13 13q13.1 mitochondrial inner membrane organizing system 1 pseudogene 1 pseudo MINOS1P1 mitochondrial inner membrane organizing system 1 pseudogene 1 O - 20121230 -9606 100462954 MINOS1P3 - - HGNC:44093 3 - mitochondrial inner membrane organizing system 1 pseudogene 3 pseudo MINOS1P3 mitochondrial inner membrane organizing system 1 pseudogene 3 O - 20121230 -9606 100462957 MINOS1P4 - - HGNC:44094 4 4q mitochondrial inner membrane organizing system 1 pseudogene 4 pseudo MINOS1P4 mitochondrial inner membrane organizing system 1 pseudogene 4 O - 20121230 -9606 100462977 MTRNR2L1 - HN1 HGNC:37155|Ensembl:ENSG00000256618|Vega:OTTHUMG00000179068 17 17p11.2 MT-RNR2-like 1 protein-coding MTRNR2L1 MT-RNR2-like 1 O MT-RNR2-like protein 1|MTRNR2-like 1|humanin 1|humanin-like protein 1 20121230 -9606 100462981 MTRNR2L2 - HN2 HGNC:37156 5 5q14.1 MT-RNR2-like 2 protein-coding MTRNR2L2 MT-RNR2-like 2 O MT-RNR2-like protein 2|MTRNR2-like 2|humanin 2|humanin-like protein 2 20121230 -9606 100462982 CCT5-2P - - - 13 - chaperonin containing TCP1, subunit 5 (epsilon) pseudogene 2 pseudo - - - - 20121230 -9606 100462983 MTRNR2L3 - HN3 HGNC:37157|Ensembl:ENSG00000256222 20 20q13.31 MT-RNR2-like 3 protein-coding MTRNR2L3 MT-RNR2-like 3 O MT-RNR2-like protein 3|MTRNR2-like 3|humanin 3|humanin-like protein 3 20121230 -9606 100462984 HSPD1P22 - HSPD1-21P HGNC:39502 5 - heat shock 60kDa protein 1 (chaperonin) pseudogene 22 pseudo HSPD1P22 heat shock 60kDa protein 1 (chaperonin) pseudogene 22 O - 20121230 -9606 100462985 HSPD1P16 - HSPD1-13P HGNC:35128 6 - heat shock 60kDa protein 1 (chaperonin) pseudogene 16 pseudo HSPD1P16 heat shock 60kDa protein 1 (chaperonin) pseudogene 16 O - 20121230 -9606 100462986 HSPD1P17 - HSPD1-19P HGNC:35147 10 - heat shock 60kDa protein 1 (chaperonin) pseudogene 17 pseudo HSPD1P17 heat shock 60kDa protein 1 (chaperonin) pseudogene 17 O - 20121230 -9606 100462987 HSPD1P13 - HSPD1-16P HGNC:35138 11 - heat shock 60kDa protein 1 (chaperonin) pseudogene 13 pseudo HSPD1P13 heat shock 60kDa protein 1 (chaperonin) pseudogene 13 O - 20121230 -9606 100462988 LOC100462988 - - - 12 - heat shock 60kDa protein 1 (chaperonin) pseudogene pseudo - - - - 20121230 -9606 100462989 HSPD1P20 - HSPD1-20P HGNC:38591 12 - heat shock 60kDa protein 1 (chaperonin) pseudogene 20 pseudo HSPD1P20 heat shock 60kDa protein 1 (chaperonin) pseudogene 20 O - 20121230 -9606 100462990 HSPD1P21 - HSPD1-3P HGNC:38592 20 - heat shock 60kDa protein 1 (chaperonin) pseudogene 21 pseudo HSPD1P21 heat shock 60kDa protein 1 (chaperonin) pseudogene 21 O - 20121230 -9606 100463285 MTRNR2L4 - HN4 HGNC:37161|Ensembl:ENSG00000232196 16 16p13.3 MT-RNR2-like 4 protein-coding MTRNR2L4 MT-RNR2-like 4 O MT-RNR2-like protein 4|MTRNR2-like 4|humanin 4|humanin-like protein 4 20121230 -9606 100463286 CCT6P5 - CCT6-2P HGNC:38608 11 - chaperonin containing TCP1, subunit 6 (zeta) pseudogene 5 pseudo CCT6P5 chaperonin containing TCP1, subunit 6 (zeta) pseudogene 5 O - 20121230 -9606 100463288 HSPD1P19 - HSPD1-18P HGNC:38590 20 - heat shock 60kDa protein 1 (chaperonin) pseudogene 19 pseudo HSPD1P19 heat shock 60kDa protein 1 (chaperonin) pseudogene 19 O - 20121230 -9606 100463289 MTRNR2L5 - HN5 HGNC:37162|Ensembl:ENSG00000249860 10 10q21.1 MT-RNR2-like 5 protein-coding MTRNR2L5 MT-RNR2-like 5 O MT-RNR2-like protein 5|MTRNR2-like 5|humanin 5|humanin-like protein 5 20121230 -9606 100463482 MTRNR2L6 - HN6 HGNC:37163 7 7q34 MT-RNR2-like 6 protein-coding MTRNR2L6 MT-RNR2-like 6 O MT-RNR2-like protein 6|MTRNR2-like 6|humanin 6|humanin-like protein 6 20121230 -9606 100463486 MTRNR2L8 - HN8 HGNC:37165|Ensembl:ENSG00000255823 11 11p15.3 MT-RNR2-like 8 protein-coding MTRNR2L8 MT-RNR2-like 8 O MT-RNR2-like protein 8|MTRNR2-like 8|humanin 8|humanin-like protein 8 20121230 -9606 100463487 MTRNR2L9 - HN9 HGNC:37166 6 6q11.1 MT-RNR2-like 9 (pseudogene) pseudo MTRNR2L9 MT-RNR2-like 9 (pseudogene) O - 20121230 -9606 100463488 MTRNR2L10 - HN10 HGNC:37167|Ensembl:ENSG00000256045 X Xp11.21 MT-RNR2-like 10 protein-coding MTRNR2L10 MT-RNR2-like 10 O MT-RNR2-like protein 10|MTRNR2-like 10|humanin 10|humanin-like protein 10 20121230 -9606 100463489 MTRNR2L11 - HN11 HGNC:37168 1 1q43 MT-RNR2-like 11 (pseudogene) pseudo MTRNR2L11 MT-RNR2-like 11 (pseudogene) O - 20121230 -9606 100463498 MTRNR2L12 - HN12 HGNC:37169 3 3q11.2 MT-RNR2-like 12 (pseudogene) pseudo MTRNR2L12 MT-RNR2-like 12 (pseudogene) O - 20121230 -9606 100463500 MTRNR2L13 - HN13 HGNC:37170 4 4q26 MT-RNR2-like 13 (pseudogene) pseudo MTRNR2L13 MT-RNR2-like 13 (pseudogene) O - 20121230 -9606 100463528 LSP1P1 - - HGNC:39716 13 13q12.13 lymphocyte-specific protein 1 pseudogene 1 pseudo LSP1P1 lymphocyte-specific protein 1 pseudogene 1 O - 20121230 -9606 100498661 LOC100498661 - - - 12 12q oxysterol binding protein-like 9 pseudogene pseudo - - - - 20121230 -9606 100498859 LOC100498859 - - - 3 3q25.31 uncharacterized LOC100498859 miscRNA - - - - 20121230 -9606 100499165 FGQTL1 - - MIM:612108 2 2q24-q32 Fasting plasma glucose level QTL 1 unknown - - - - 20120622 -9606 100499166 LPRS6 - - MIM:613407 13 13q14.11 Leprosy, susceptiblity to, 6 unknown - - - - 20120622 -9606 100499167 EOE2 - - MIM:613412 5 5q22 Esophagitis, eosinophilic, 2 unknown - - - - 20120622 -9606 100499168 FGQTL6 - BWQTL3|PGQTL1 MIM:613460 3 3q21 Fasting plasma glucose level QTL 6 unknown - - - - 20120622 -9606 100499169 FGQTL4 - - MIM:613462 7 7p21.2 Fasting plasma glucose level QTL 4 unknown - - - - 20120622 -9606 100499171 LINC00276 - NCRNA00276 HGNC:38663 2 2p24.3 long intergenic non-protein coding RNA 276 miscRNA LINC00276 long intergenic non-protein coding RNA 276 O - 20121021 -9606 100499177 THAP9-AS1 - - HGNC:44172 4 - THAP9 antisense RNA 1 miscRNA THAP9-AS1 THAP9 antisense RNA 1 O - 20121230 -9606 100499183 LOC100499183 - - - 8 8q22.3 uncharacterized LOC100499183 miscRNA - - - - 20121230 -9606 100499191 LOC100499191 - - - 7 7q male-specific lethal 3 homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100499192 LOC100499192 - - - 8 8q male-specific lethal 3 homolog (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100499194 LOC100499194 - - - 2 2q14.1 uncharacterized LOC100499194 miscRNA - - - - 20121230 -9606 100499221 LOC100499221 - - - 15 - uncharacterized LOC100499221 miscRNA - - - - 20120622 -9606 100499223 LOC100499223 - - - 1 1q25.2 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) pseudogene pseudo - - - - 20121230 -9606 100499227 LOC100499227 - - - 11 11q23 uncharacterized LOC100499227 miscRNA - - - - 20121230 -9606 100499251 GMFBP1 - - HGNC:38654 3 3q12.2 glia maturation factor, beta pseudogene 1 pseudo GMFBP1 glia maturation factor, beta pseudogene 1 O - 20121230 -9606 100499252 ZBTB12B - ZNF920 HGNC:37702 4 4p14 zinc finger and BTB domain containing 12B, pseudogene pseudo ZBTB12B zinc finger and BTB domain containing 12B, pseudogene O - 20121103 -9606 100499253 YWHAQP6 - - HGNC:37685 3 3q23 YWHAQ pseudogene 6 pseudo YWHAQP6 YWHAQ pseudogene 6 O - 20121230 -9606 100499258 SNRPBP1 - - HGNC:38665 7 7q21.11 small nuclear ribonucleoprotein polypeptides B and B1 pseudogene 1 pseudo SNRPBP1 small nuclear ribonucleoprotein polypeptides B and B1 pseudogene 1 O - 20121230 -9606 100499259 CKS1BP4 - - HGNC:17395 11 11q14.1 CDC28 protein kinase regulatory subunit 1B pseudogene 4 pseudo CKS1BP4 CDC28 protein kinase regulatory subunit 1B pseudogene 4 O - 20121230 -9606 100499260 AMMEC - CXDELq22.3|DELXq22.3 MIM:300194 X Xq22.3 Alport syndrome, mental retardation, midface hypoplasia, and elliptocytosis unknown - - - - 20120622 -9606 100499261 BTF3P6 - - HGNC:23765 21 21q22.1 basic transcription factor 3 pseudogene 6 pseudo BTF3P6 basic transcription factor 3 pseudogene 6 O - 20121230 -9606 100499397 DYZ1L1 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100499398 DYZ1L4 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100499399 LOC100499399 - - - 3 3p21.1 adenylate kinase 3 pseudogene pseudo - - - - 20121230 -9606 100499405 LOC100499405 - - - 12 12p13.31 uncharacterized LOC100499405 miscRNA - - - - 20121230 -9606 100499409 DYZ1L6 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100499411 DYZ1L7 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100499412 DYZ1L16 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100499416 TOMM22P1 - - HGNC:38736 Y Yq11.223 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 1 pseudo TOMM22P1 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 1 O - 20121230 -9606 100499417 TOMM22P2 - - HGNC:38737 Y Yp11.31 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 2 pseudo TOMM22P2 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 2 O - 20121230 -9606 100499418 MTCYBP1 - - HGNC:38729 Y - MT-CYB pseudogene 1 pseudo MTCYBP1 MT-CYB pseudogene 1 O - 20121209 -9606 100499435 TEX16P - - HGNC:37957 X Xq21.1 testis expressed 16, pseudogene pseudo TEX16P testis expressed 16, pseudogene O - 20121230 -9606 100499437 DYZ1L19 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100499438 DYZ1L20 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100499442 DYZ1L23 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100499443 DYZ1L27 - - - Y Yq12 DYZ1 repeat sequence other - - - - 20120318 -9606 100499457 MTND2P3 - - HGNC:38727 Y Yp11.2 MT-ND2 pseudogene 3 pseudo MTND2P3 MT-ND2 pseudogene 3 O - 20121209 -9606 100499466 LINC00674 - - HGNC:44355 17 17q24.2 long intergenic non-protein coding RNA 674 miscRNA LINC00674 long intergenic non-protein coding RNA 674 O - 20121230 -9606 100499467 LINC00673 - - HGNC:44354 17 - long intergenic non-protein coding RNA 673 miscRNA LINC00673 long intergenic non-protein coding RNA 673 O - 20121230 -9606 100499468 MTND1P1 - - HGNC:38728 Y Yp11.2 MT-ND1 pseudogene 1 pseudo MTND1P1 MT-ND1 pseudogene 1 O - 20121209 -9606 100499469 MTND6P1 - - HGNC:38730 Y Yp11.2 MT-ND6 pseudogene 1 pseudo MTND6P1 MT-ND6 pseudogene 1 O - 20121230 -9606 100499471 LOC100499471 - - - X - leucine rich repeat containing 14 pseudogene pseudo - - - - 20121230 -9606 100499481 MED13P1 - - HGNC:38733 Y Yq11.221 mediator complex subunit 13 pseudogene 1 pseudo MED13P1 mediator complex subunit 13 pseudogene 1 O - 20121230 -9606 100499483 C9orf174 hCG_1994099 BDAG1|KIAA1529 HGNC:29303|Ensembl:ENSG00000197816|Vega:OTTHUMG00000167001 9 9q22.33 chromosome 9 open reading frame 174 protein-coding C9orf174 chromosome 9 open reading frame 174 O Behcet's Disease Associated Gene 1|uncharacterized protein C9orf174 20121230 -9606 100499484 LOC100499484 RP11-23J9.1 - - 9 9q22.33 SUGT1-1300002K09Rik pseudogene pseudo - - - - 20121230 -9606 100499485 SRIP2 - - HGNC:38734 X Xq21.31 sorcin pseudogene 2 pseudo SRIP2 sorcin pseudogene 2 O - 20121230 -9606 100499489 LOC100499489 - - - 10 10p12.2 uncharacterized LOC100499489 miscRNA - - - - 20121230 -9606 100499496 LOC100499496 - - - X Xq13 matrin 3 pseudogene pseudo - - - - 20121230 -9606 100499497 LOC100499497 - - - 1 - matrin 3 pseudogene pseudo - - - - 20121230 -9606 100499532 ATPLS - - MIM:107320 6 6p21.3 antiphospholipid syndrome, familial unknown - - - - 20120622 -9606 100499563 PTP4A1P2 - - HGNC:41929 12 12q24 protein tyrosine phosphatase type IVA, member 1 pseudogene 2 pseudo PTP4A1P2 protein tyrosine phosphatase type IVA, member 1 pseudogene 2 O - 20121230 -9606 100500719 LOC100500719 - - - 22 22q12.3 Hermansky-Pudlak syndrome 1 pseudogene pseudo - - - - 20121230 -9606 100500737 PPIAP20 - - HGNC:38037 19 19p13.2 peptidylprolyl isomerase A (cyclophilin A) pseudogene 20 pseudo PPIAP20 peptidylprolyl isomerase A (cyclophilin A) pseudogene 20 O - 20121230 -9606 100500773 LOC100500773 - - - 8 - serine/arginine-rich splicing factor 3 pseudogene pseudo - - - - 20121230 -9606 100500797 USP9YP19 AC010682.5 - HGNC:38755 Y Yq11.23 ubiquitin specific peptidase 9, Y-linked pseudogene 19 pseudo USP9YP19 ubiquitin specific peptidase 9, Y-linked pseudogene 19 O - 20121209 -9606 100500798 USP9YP23 - - HGNC:38759 Y Yq11.222 ubiquitin specific peptidase 9, Y-linked pseudogene 23 pseudo USP9YP23 ubiquitin specific peptidase 9, Y-linked pseudogene 23 O - 20121209 -9606 100500801 MIR3659 - - HGNC:38882|miRBase:MI0016060 1 - microRNA 3659 miscRNA MIR3659 microRNA 3659 O - 20121230 -9606 100500802 MIR3685 - - HGNC:38886|miRBase:MI0016086 12 - microRNA 3685 miscRNA MIR3685 microRNA 3685 O - 20121230 -9606 100500803 MIR3919 - - HGNC:38890|miRBase:MI0016425 3 - microRNA 3919 miscRNA MIR3919 microRNA 3919 O - 20121230 -9606 100500804 MIR3654 - - HGNC:38896|miRBase:MI0016054 7 - microRNA 3654 miscRNA MIR3654 microRNA 3654 O - 20121230 -9606 100500805 MIR3607 - - HGNC:38900|miRBase:MI0015997 5 - microRNA 3607 miscRNA MIR3607 microRNA 3607 O - 20121230 -9606 100500807 MIR374C - - HGNC:38907|miRBase:MI0016684 X - microRNA 374c miscRNA MIR374C microRNA 374c O - 20121230 -9606 100500808 MIR3917 - - HGNC:38911|miRBase:MI0016423 1 - microRNA 3917 miscRNA MIR3917 microRNA 3917 O - 20121230 -9606 100500809 MIR23C - hsa-mir-23c HGNC:38913|miRBase:MI0016010 X - microRNA 23c miscRNA MIR23C microRNA 23c O - 20121230 -9606 100500810 MIR3620 - - HGNC:38917|miRBase:MI0016011 1 - microRNA 3620 miscRNA MIR3620 microRNA 3620 O - 20121230 -9606 100500811 MIR3621 - - HGNC:38930|miRBase:MI0016012 9 - microRNA 3621 miscRNA MIR3621 microRNA 3621 O - 20121230 -9606 100500812 MIR3677 - - HGNC:38932|miRBase:MI0016078 16 - microRNA 3677 miscRNA MIR3677 microRNA 3677 O - 20121230 -9606 100500813 MIR3646 - - HGNC:38935|miRBase:MI0016046 20 - microRNA 3646 miscRNA MIR3646 microRNA 3646 O - 20121230 -9606 100500814 MIR3616 - - HGNC:38943|miRBase:MI0016006 20 - microRNA 3616 miscRNA MIR3616 microRNA 3616 O - 20121230 -9606 100500815 MIR3687 - - HGNC:38946|miRBase:MI0016088 21 - microRNA 3687 miscRNA MIR3687 microRNA 3687 O - 20121230 -9606 100500816 MIR3649 - - HGNC:38948|miRBase:MI0016049 12 - microRNA 3649 miscRNA MIR3649 microRNA 3649 O - 20121230 -9606 100500817 MIR3612 - - HGNC:38951|miRBase:MI0016002 12 - microRNA 3612 miscRNA MIR3612 microRNA 3612 O - 20121230 -9606 100500818 MIR3945 - - HGNC:38954|miRBase:MI0016602 4 - microRNA 3945 miscRNA MIR3945 microRNA 3945 O - 20121230 -9606 100500819 MIR3609 - - HGNC:38956|miRBase:MI0015999 7 7q21.2-q22.1 microRNA 3609 miscRNA MIR3609 microRNA 3609 O - 20121230 -9606 100500820 MIR3655 - - HGNC:38960|miRBase:MI0016055 5 - microRNA 3655 miscRNA MIR3655 microRNA 3655 O - 20121230 -9606 100500821 MIR3910-1 - - HGNC:38966|miRBase:MI0016414 9 - microRNA 3910-1 miscRNA MIR3910-1 microRNA 3910-1 O - 20121230 -9606 100500822 MIR3937 - - HGNC:38970|miRBase:MI0016593 X - microRNA 3937 miscRNA MIR3937 microRNA 3937 O - 20121230 -9606 100500823 MIR3920 - - HGNC:38974|miRBase:MI0016427 11 - microRNA 3920 miscRNA MIR3920 microRNA 3920 O - 20121230 -9606 100500824 MIR3650 - - HGNC:38981|miRBase:MI0016050 5 - microRNA 3650 miscRNA MIR3650 microRNA 3650 O - 20121230 -9606 100500825 MIR3660 - - HGNC:38985|miRBase:MI0016061 5 - microRNA 3660 miscRNA MIR3660 microRNA 3660 O - 20121230 -9606 100500826 MIR3909 - - HGNC:38987|miRBase:MI0016413 22 - microRNA 3909 miscRNA MIR3909 microRNA 3909 O - 20121230 -9606 100500827 MIR3614 - - HGNC:38995|miRBase:MI0016004 17 - microRNA 3614 miscRNA MIR3614 microRNA 3614 O - 20121230 -9606 100500828 MIR3619 - - HGNC:38998|miRBase:MI0016009 22 - microRNA 3619 miscRNA MIR3619 microRNA 3619 O - 20121230 -9606 100500829 MIR3943 - - HGNC:38888|miRBase:MI0016600 7 - microRNA 3943 miscRNA MIR3943 microRNA 3943 O - 20121230 -9606 100500830 MIR550B2 - - HGNC:38910|miRBase:MI0016687 7 - microRNA 550b-2 miscRNA MIR550B2 microRNA 550b-2 O - 20121230 -9606 100500831 MIR3912 - - HGNC:38923|miRBase:MI0016416 5 - microRNA 3912 miscRNA MIR3912 microRNA 3912 O - 20121230 -9606 100500832 MIR3658 - - HGNC:38963|miRBase:MI0016058 1 - microRNA 3658 miscRNA MIR3658 microRNA 3658 O - 20121230 -9606 100500833 MIR3653 - - HGNC:38971|miRBase:MI0016053 22 - microRNA 3653 miscRNA MIR3653 microRNA 3653 O - 20121230 -9606 100500834 MIR3924 - - HGNC:38984|miRBase:MI0016432 10 - microRNA 3924 miscRNA MIR3924 microRNA 3924 O - 20121230 -9606 100500835 MIR3907 - - HGNC:38988|miRBase:MI0016410 7 - microRNA 3907 miscRNA MIR3907 microRNA 3907 O - 20121230 -9606 100500836 MIR3914-1 - - HGNC:38993|miRBase:MI0016419 7 - microRNA 3914-1 miscRNA MIR3914-1 microRNA 3914-1 O - 20121230 -9606 100500837 MIR3606 - - HGNC:38881|miRBase:MI0015996 2 - microRNA 3606 miscRNA MIR3606 microRNA 3606 O - 20121230 -9606 100500838 MIR3926-2 - - HGNC:38883|miRBase:MI0016437 8 - microRNA 3926-2 miscRNA MIR3926-2 microRNA 3926-2 O - 20121230 -9606 100500839 MIR3686 - - HGNC:38887|miRBase:MI0016087 8 - microRNA 3686 miscRNA MIR3686 microRNA 3686 O - 20121230 -9606 100500840 MIR3656 - - HGNC:38889|miRBase:MI0016056 11 - microRNA 3656 miscRNA MIR3656 microRNA 3656 O - 20121230 -9606 100500841 MIR3678 - - HGNC:38891|miRBase:MI0016079 17 - microRNA 3678 miscRNA MIR3678 microRNA 3678 O - 20121230 -9606 100500842 MIR3652 - - HGNC:38894|miRBase:MI0016052 12 - microRNA 3652 miscRNA MIR3652 microRNA 3652 O - 20121230 -9606 100500843 MIR3922 - - HGNC:38895|miRBase:MI0016429 12 - microRNA 3922 miscRNA MIR3922 microRNA 3922 O - 20121230 -9606 100500844 MIR3664 - - HGNC:38899|miRBase:MI0016065 11 - microRNA 3664 miscRNA MIR3664 microRNA 3664 O - 20121230 -9606 100500845 MIR642B - - HGNC:38902|miRBase:MI0016685 19 - microRNA 642b miscRNA MIR642B microRNA 642b O - 20121230 -9606 100500846 MIR3689A - - HGNC:38904|miRBase:MI0016090 9 - microRNA 3689a miscRNA MIR3689A microRNA 3689a O - 20121230 -9606 100500847 MIR3615 - - HGNC:38905|miRBase:MI0016005 17 - microRNA 3615 miscRNA MIR3615 microRNA 3615 O - 20121230 -9606 100500848 MIR3673 - - HGNC:38908|miRBase:MI0016074 8 - microRNA 3673 miscRNA MIR3673 microRNA 3673 O - 20120318 -9606 100500849 MIR3916 - - HGNC:38912|miRBase:MI0016422 1 - microRNA 3916 miscRNA MIR3916 microRNA 3916 O - 20121230 -9606 100500850 MIR3682 - - HGNC:38916|miRBase:MI0016083 2 - microRNA 3682 miscRNA MIR3682 microRNA 3682 O - 20121230 -9606 100500851 MIR3918 - - HGNC:38919|miRBase:MI0016424 6 - microRNA 3918 miscRNA MIR3918 microRNA 3918 O - 20121230 -9606 100500852 MIR3180-4 - - HGNC:38920|miRBase:MI0016408 16 - microRNA 3180-4 miscRNA MIR3180-4 microRNA 3180-4 O - 20121209 -9606 100500853 MIR3605 - - HGNC:38922|miRBase:MI0015995 1 - microRNA 3605 miscRNA MIR3605 microRNA 3605 O - 20121230 -9606 100500854 MIR3671 - - HGNC:38925|miRBase:MI0016072 1 - microRNA 3671 miscRNA MIR3671 microRNA 3671 O - 20121230 -9606 100500855 MIR3713 - - HGNC:38926|miRBase:MI0016134 15 - microRNA 3713 miscRNA MIR3713 microRNA 3713 O - 20121230 -9606 100500856 MIR548Z - - HGNC:38929|miRBase:MI0016688 12 - microRNA 548z miscRNA MIR548Z microRNA 548z O - 20121230 -9606 100500857 MIR3939 - - HGNC:38931|miRBase:MI0016596 6 - microRNA 3939 miscRNA MIR3939 microRNA 3939 O - 20121230 -9606 100500858 MIR3622A - - HGNC:38934|miRBase:MI0016013 8 - microRNA 3622a miscRNA MIR3622A microRNA 3622a O - 20121230 -9606 100500859 MIR3921 - - HGNC:38936|miRBase:MI0016428 3 - microRNA 3921 miscRNA MIR3921 microRNA 3921 O - 20121230 -9606 100500860 MIR3618 - - HGNC:38937|miRBase:MI0016008 22 - microRNA 3618 miscRNA MIR3618 microRNA 3618 O - 20121230 -9606 100500861 MIR3665 - - HGNC:38939|miRBase:MI0016066 13 - microRNA 3665 miscRNA MIR3665 microRNA 3665 O - 20121230 -9606 100500862 MIR3648 - - HGNC:38941|miRBase:MI0016048 21 - microRNA 3648 miscRNA MIR3648 microRNA 3648 O - 20121230 -9606 100500863 MIR548AA1 - - HGNC:38944|miRBase:MI0016689 8 - microRNA 548aa-1 miscRNA MIR548AA1 microRNA 548aa-1 O - 20121230 -9606 100500864 MIR3929 - - HGNC:38945|miRBase:MI0016439 18 - microRNA 3929 miscRNA MIR3929 microRNA 3929 O - 20121230 -9606 100500865 MIR3936 - - HGNC:38947|miRBase:MI0016592 5 - microRNA 3936 miscRNA MIR3936 microRNA 3936 O - 20121230 -9606 100500866 MIR3941 - - HGNC:38949|miRBase:MI0016598 10 - microRNA 3941 miscRNA MIR3941 microRNA 3941 O - 20121230 -9606 100500867 MIR3684 - - HGNC:38950|miRBase:MI0016085 4 - microRNA 3684 miscRNA MIR3684 microRNA 3684 O - 20121230 -9606 100500868 MIR3913-2 - - HGNC:38953|miRBase:MI0016418 12 - microRNA 3913-2 miscRNA MIR3913-2 microRNA 3913-2 O - 20121230 -9606 100500869 MIR3672 - - HGNC:38957|miRBase:MI0016073 X - microRNA 3672 miscRNA MIR3672 microRNA 3672 O - 20121230 -9606 100500870 MIR3926-1 - - HGNC:38959|miRBase:MI0016434 8 - microRNA 3926-1 miscRNA MIR3926-1 microRNA 3926-1 O - 20121230 -9606 100500871 MIR3622B - - HGNC:38961|miRBase:MI0016014 8 - microRNA 3622b miscRNA MIR3622B microRNA 3622b O - 20121230 -9606 100500872 MIR3911 - - HGNC:38962|miRBase:MI0016415 9 - microRNA 3911 miscRNA MIR3911 microRNA 3911 O - 20121230 -9606 100500873 MIR3934 - - HGNC:38965|miRBase:MI0016590 6 - microRNA 3934 miscRNA MIR3934 microRNA 3934 O - 20121230 -9606 100500874 MIR3669 - - HGNC:38968|miRBase:MI0016070 8 - microRNA 3669 miscRNA MIR3669 microRNA 3669 O - 20120318 -9606 100500875 MIR3938 - - HGNC:38972|miRBase:MI0016594 3 - microRNA 3938 miscRNA MIR3938 microRNA 3938 O - 20121230 -9606 100500876 MIR3675 - - HGNC:38973|miRBase:MI0016076 1 - microRNA 3675 miscRNA MIR3675 microRNA 3675 O - 20121230 -9606 100500877 MIR3923 - - HGNC:38978|miRBase:MI0016430 3 - microRNA 3923 miscRNA MIR3923 microRNA 3923 O - 20121230 -9606 100500878 MIR3679 - - HGNC:38979|miRBase:MI0016080 2 - microRNA 3679 miscRNA MIR3679 microRNA 3679 O - 20121230 -9606 100500879 MIR3668 - - HGNC:38982|miRBase:MI0016069 6 - microRNA 3668 miscRNA MIR3668 microRNA 3668 O - 20121230 -9606 100500880 MIR3662 - - HGNC:38983|miRBase:MI0016063 6 - microRNA 3662 miscRNA MIR3662 microRNA 3662 O - 20121230 -9606 100500881 MIR3688-1 - MIR3688 HGNC:38986|miRBase:MI0016089 4 - microRNA 3688-1 miscRNA MIR3688-1 microRNA 3688-1 O - 20121230 -9606 100500882 MIR3667 - - HGNC:38990|miRBase:MI0016068 22 - microRNA 3667 miscRNA MIR3667 microRNA 3667 O - 20121230 -9606 100500883 MIR550B1 - - HGNC:38992|miRBase:MI0016686 7 - microRNA 550b-1 miscRNA MIR550B1 microRNA 550b-1 O - 20121230 -9606 100500884 MIR3681 - - HGNC:38994|miRBase:MI0016082 2 - microRNA 3681 miscRNA MIR3681 microRNA 3681 O - 20121230 -9606 100500885 MIR3925 - - HGNC:38996|miRBase:MI0016433 6 - microRNA 3925 miscRNA MIR3925 microRNA 3925 O - 20121230 -9606 100500886 MIR3683 - - HGNC:38999|miRBase:MI0016084 7 - microRNA 3683 miscRNA MIR3683 microRNA 3683 O - 20121230 -9606 100500887 MIR676 - hsa-mir-676 HGNC:38880|miRBase:MI0016436 X - microRNA 676 miscRNA MIR676 microRNA 676 O - 20121230 -9606 100500888 MIR3940 - - HGNC:38893|miRBase:MI0016597 19 - microRNA 3940 miscRNA MIR3940 microRNA 3940 O - 20121230 -9606 100500889 MIR3657 - - HGNC:38906|miRBase:MI0016057 12 - microRNA 3657 miscRNA MIR3657 microRNA 3657 O - 20121230 -9606 100500890 MIR3611 - - HGNC:38914|miRBase:MI0016001 10 - microRNA 3611 miscRNA MIR3611 microRNA 3611 O - 20121230 -9606 100500891 MIR3935 - - HGNC:38918|miRBase:MI0016591 16 - microRNA 3935 miscRNA MIR3935 microRNA 3935 O - 20121230 -9606 100500892 MIR3676 - - HGNC:38927|miRBase:MI0016077 17 - microRNA 3676 miscRNA MIR3676 microRNA 3676 O - 20121230 -9606 100500893 MIR3663 - - HGNC:38958|miRBase:MI0016064 10 - microRNA 3663 miscRNA MIR3663 microRNA 3663 O - 20121230 -9606 100500894 MIR3690 - - HGNC:38967|miRBase:MI0016091 X|Y Xp22.32 and Yp11.3 microRNA 3690 miscRNA MIR3690 microRNA 3690 O - 20121230 -9606 100500895 MIR548AA2 - - HGNC:38921|miRBase:MI0016690 17 - microRNA 548aa-2 miscRNA MIR548AA2 microRNA 548aa-2 O - 20121230 -9606 100500896 MIR3666 - - HGNC:38940|miRBase:MI0016067 7 - microRNA 3666 miscRNA MIR3666 microRNA 3666 O - 20121230 -9606 100500897 MIR3617 - - HGNC:38977|miRBase:MI0016007 20 - microRNA 3617 miscRNA MIR3617 microRNA 3617 O - 20121230 -9606 100500898 MIR3927 - - HGNC:38901|miRBase:MI0016435 9 - microRNA 3927 miscRNA MIR3927 microRNA 3927 O - 20121230 -9606 100500899 MIR3692 - - HGNC:38885|miRBase:MI0016093 6 - microRNA 3692 miscRNA MIR3692 microRNA 3692 O - 20121230 -9606 100500900 MIR3691 - - HGNC:38909|miRBase:MI0016092 6 - microRNA 3691 miscRNA MIR3691 microRNA 3691 O - 20121230 -9606 100500901 MIR3928 - - HGNC:38933|miRBase:MI0016438 22 - microRNA 3928 miscRNA MIR3928 microRNA 3928 O - 20121230 -9606 100500902 MIR3910-2 - - HGNC:38952|miRBase:MI0016431 9 - microRNA 3910-2 miscRNA MIR3910-2 microRNA 3910-2 O - 20121230 -9606 100500903 MIR3913-1 - - HGNC:38884|miRBase:MI0016417 12 - microRNA 3913-1 miscRNA MIR3913-1 microRNA 3913-1 O - 20121230 -9606 100500904 MIR3942 - - HGNC:38976|miRBase:MI0016599 15 - microRNA 3942 miscRNA MIR3942 microRNA 3942 O - 20121230 -9606 100500905 MIR3661 - - HGNC:38892|miRBase:MI0016062 5 - microRNA 3661 miscRNA MIR3661 microRNA 3661 O - 20121230 -9606 100500906 MIR3689B - - HGNC:38924|miRBase:MI0016411 9 - microRNA 3689b miscRNA MIR3689B microRNA 3689b O - 20121230 -9606 100500907 MIR3150B - - HGNC:38938|miRBase:MI0016426 8 - microRNA 3150b miscRNA MIR3150B microRNA 3150b O - 20121230 -9606 100500908 MIR3613 - - HGNC:38964|miRBase:MI0016003 13 - microRNA 3613 miscRNA MIR3613 microRNA 3613 O - 20121230 -9606 100500909 MIR3908 - - HGNC:38991|miRBase:MI0016412 12 - microRNA 3908 miscRNA MIR3908 microRNA 3908 O - 20121230 -9606 100500910 MIR3670-1 - MIR3670|hsa-mir-3670-1 HGNC:38997|miRBase:MI0016071 16 - microRNA 3670-1 miscRNA MIR3670-1 microRNA 3670-1 O - 20121230 -9606 100500911 MIR3944 - - HGNC:38898|miRBase:MI0016601 10 - microRNA 3944 miscRNA MIR3944 microRNA 3944 O - 20121230 -9606 100500912 MIR3674 - - HGNC:38915|miRBase:MI0016075 8 - microRNA 3674 miscRNA MIR3674 microRNA 3674 O - 20121230 -9606 100500913 MIR3714 - - HGNC:38928|miRBase:MI0016135 3 - microRNA 3714 miscRNA MIR3714 microRNA 3714 O - 20121230 -9606 100500914 MIR3610 - - HGNC:38942|miRBase:MI0016000 8 - microRNA 3610 miscRNA MIR3610 microRNA 3610 O - 20121230 -9606 100500915 MIR3915 - - HGNC:38955|miRBase:MI0016420 X - microRNA 3915 miscRNA MIR3915 microRNA 3915 O - 20121230 -9606 100500916 MIR3180-5 - - HGNC:38969|miRBase:MI0016409 16 - microRNA 3180-5 miscRNA MIR3180-5 microRNA 3180-5 O - 20121230 -9606 100500917 MIR3680-1 - MIR3680|hsa-mir-3680-1 HGNC:38989|miRBase:MI0016081 16 - microRNA 3680-1 miscRNA MIR3680-1 microRNA 3680-1 O - 20121230 -9606 100500918 MIR3651 - - HGNC:38897|miRBase:MI0016051 9 - microRNA 3651 miscRNA MIR3651 microRNA 3651 O - 20121230 -9606 100500919 MIR548Y - - HGNC:38980|miRBase:MI0016595 14 - microRNA 548y miscRNA MIR548Y microRNA 548y O - 20121230 -9606 100500920 MIR3914-2 - - HGNC:38975|miRBase:MI0016421 7 - microRNA 3914-2 miscRNA MIR3914-2 microRNA 3914-2 O - 20121230 -9606 100500934 LOC100500934 - - - 5 5q14 ring-box 1, E3 ubiquitin protein ligase pseudogene pseudo - - - - 20121230 -9606 100500938 CCDC179 - - HGNC:44653|Ensembl:ENSG00000255359|Vega:OTTHUMG00000166074 11 11p14.2 coiled-coil domain containing 179 protein-coding CCDC179 coiled-coil domain containing 179 O uncharacterized protein LOC100500938 20121230 -9606 100502567 DEL15Q24 - CHR15DELq24 MIM:613406 15 15q24 Chromosome 15q24 deletion syndrome unknown - - - - 20120622 -9606 100502568 STQTL21 - - MIM:613440 2 2q37.1 Stature QTL 21 unknown - - - - 20120622 -9606 100502569 BWQTL2 - - MIM:613459 3 3q25 Birth weight QTL 2 unknown - - - - 20120622 -9606 100502572 LOC100502572 - - - 5 5q35 chromosome 5 open reading frame 60 pseudogene pseudo - - - - 20121230 -9606 100505381 MMD2 - - MIM:613318 10 10p Miyoshi muscular dystrophy 2 unknown - - - - 20120318 -9606 100505383 BPIFB5P - - HGNC:42177 20 - BPI fold containing family B, member 5, pseudogene pseudo BPIFB5P BPI fold containing family B, member 5, pseudogene O - 20121230 -9606 100505385 IQCJ-SCHIP1 - - HGNC:38842|Ensembl:ENSG00000250588|Vega:OTTHUMG00000162426 3 - IQCJ-SCHIP1 readthrough protein-coding IQCJ-SCHIP1 IQCJ-SCHIP1 readthrough O IQ motif containing J-schwannomin interacting protein 1 fusion protein|IQ motif containing J-schwannomin interacting protein 1 read-through transcript 20121230 -9606 100505389 DELXP21 - CXDELp21 MIM:300679 X Xp21 Chromosome Xp21 deletion syndrome unknown - - - - 20120622 -9606 100505390 AAA2 - - MIM:609782 4 4q31 Aortic aneurysm, familial abdominal 2 unknown - - - - 20120622 -9606 100505391 DEL6Q24Q25 - C6DELq25q25 MIM:612863 6 6q24-q25 Chromosome 6q25-q25 deletion syndrome unknown - - - - 20120622 -9606 100505392 DEL14Q11Q22 - C14DELq11q22 MIM:613457 14 14q11-q22 Chromosome 14q11-q22 deletion syndrome unknown - - - - 20120622 -9606 100505393 DUP16P13.3 - C16DUPq13.3 MIM:613458 16 16p13.3 Chromosome 16p13.3 duplication syndrome unknown - - - - 20120622 -9606 100505394 EDSS2 - - MIM:613576 7 7p21.2-p14.3 Ectodermal dysplasia-syndactyly syndrome 2 unknown - - - - 20120622 -9606 100505471 LOC100505471 - - - 2 - putative uncharacterized protein encoded by LINC00269-like pseudo - - - - 20121209 -9606 100505472 LOC100505472 - - - 2 - uncharacterized LOC100505472 pseudo - - - - 20121209 -9606 100505474 LOC100505474 - - - 18 - uncharacterized LOC100505474 miscRNA - - - - 20121230 -9606 100505475 SYNE1-AS1 - - HGNC:40793 6 - SYNE1 antisense RNA 1 miscRNA SYNE1-AS1 SYNE1 antisense RNA 1 O - 20121230 -9606 100505477 T1560 - - - 8 8q12.1 T1560 protein other - - - - 20120710 -9606 100505478 LOC100505478 - - - 9 9q32 uncharacterized LOC100505478 protein-coding - - - uncharacterized protein LOC100505478 20121230 -9606 100505483 PRKAG2-AS1 - - HGNC:40468 7 - PRKAG2 antisense RNA 1 miscRNA PRKAG2-AS1 PRKAG2 antisense RNA 1 O - 20121230 -9606 100505491 LOC100505491 - - - 4 - uncharacterized LOC100505491 miscRNA - - - - 20121209 -9606 100505494 ANKRD10-IT1 - - HGNC:39891 13 - ANKRD10 intronic transcript 1 (non-protein coding) miscRNA ANKRD10-IT1 ANKRD10 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100505495 LOC100505495 - - - 19 - uncharacterized LOC100505495 miscRNA - - - - 20121230 -9606 100505496 LOC100505496 - - - 19 - zinc finger protein ENSP00000375192-like pseudo - - - - 20121209 -9606 100505498 LOC100505498 - - - 2 - uncharacterized LOC100505498 miscRNA - - - - 20121209 -9606 100505501 LOC100505501 - - - 8 - uncharacterized LOC100505501 unknown - - - - 20121230 -9606 100505502 LOC100505502 - - - 10 10p11.22 putative UPF0607 protein FLJ37424-like unknown - - - - 20121230 -9606 100505503 RPS17L - - HGNC:40029|Ensembl:ENSG00000182774|Vega:OTTHUMG00000147355 15 - ribosomal protein S17-like protein-coding RPS17L ribosomal protein S17-like O 40S ribosomal protein S17-like 20121230 -9606 100505504 LOC100505504 - - - 11 - uncharacterized LOC100505504 miscRNA - - - - 20121209 -9606 100505506 BANF1P3 - - HGNC:43883 2 - barrier to autointegration factor 1 pseudogene 3 pseudo BANF1P3 barrier to autointegration factor 1 pseudogene 3 O - 20121230 -9606 100505515 LOC100505515 - - - 20 - uncharacterized LOC100505515 miscRNA - - - - 20121209 -9606 100505518 LOC100505518 - - - 13 - uncharacterized LOC100505518 miscRNA - - - - 20121230 -9606 100505519 LOC100505519 - - - 6 - uncharacterized LOC100505519 miscRNA - - - - 20121209 -9606 100505524 LOC100505524 - - - 11 11q13 chromosome 5 open reading frame 63 pseudogene pseudo - - - - 20121230 -9606 100505530 FLJ45825 hCG_2045734 - - 6 - uncharacterized LOC100505530 unknown - - - - 20121230 -9606 100505532 LOC100505532 - - - 8 - uncharacterized LOC100505532 miscRNA - - - - 20121230 -9606 100505534 LOC100505534 - - - 15 - uncharacterized LOC100505534 miscRNA - - - - 20121209 -9606 100505536 ISM1-AS1 - - HGNC:44313 20 - ISM1 antisense RNA 1 miscRNA ISM1-AS1 ISM1 antisense RNA 1 O - 20121230 -9606 100505538 RBM26-AS1 - - HGNC:39805 13 - RBM26 antisense RNA 1 miscRNA RBM26-AS1 RBM26 antisense RNA 1 O - 20121230 -9606 100505540 LOC100505540 - - - 10 - uncharacterized LOC100505540 miscRNA - - - - 20121230 -9606 100505543 LOC100505543 - - - 17 - uncharacterized LOC100505543 miscRNA - - - - 20121209 -9606 100505545 LOC100505545 - - - 4 - uncharacterized LOC100505545 miscRNA - - - - 20121230 -9606 100505547 LOC100505547 - - - 3 - uncharacterized LOC100505547 miscRNA - - - - 20121209 -9606 100505549 LOC100505549 - - - 18 - uncharacterized LOC100505549 protein-coding - - - uncharacterized protein LOC100505549 20121230 -9606 100505550 LOC100505550 - - - 6 - uncharacterized LOC100505550 miscRNA - - - - 20121209 -9606 100505555 LOC100505555 - - - 19 - uncharacterized LOC100505555 miscRNA - - - - 20121209 -9606 100505557 LOC100505557 - - - 3 - glutathione S-transferase mu 2 (muscle) pseudogene pseudo - - - - 20121230 -9606 100505558 LOC100505558 - - - 13 - uncharacterized LOC100505558 pseudo - - - - 20121209 -9606 100505561 LOC100505561 - - - 10 - uncharacterized LOC100505561 miscRNA - - - - 20121209 -9606 100505564 LOC100505564 - - - 16 - uncharacterized LOC100505564 unknown - - - - 20121230 -9606 100505566 LINC00578 - - HGNC:43807 3 - long intergenic non-protein coding RNA 578 miscRNA LINC00578 long intergenic non-protein coding RNA 578 O - 20121230 -9606 100505567 BTBD9-AS1 - - HGNC:40959 6 - BTBD9 antisense RNA 1 miscRNA BTBD9-AS1 BTBD9 antisense RNA 1 O - 20121021 -9606 100505570 LOC100505570 - - - 11 - uncharacterized LOC100505570 miscRNA - - - - 20121209 -9606 100505573 LOC100505573 - - - 15 - uncharacterized LOC100505573 miscRNA - - - - 20121209 -9606 100505576 LINC00672 - - HGNC:44353 17 - long intergenic non-protein coding RNA 672 miscRNA LINC00672 long intergenic non-protein coding RNA 672 O - 20121230 -9606 100505583 LINC00838 - - HGNC:44963 10 - long intergenic non-protein coding RNA 838 miscRNA LINC00838 long intergenic non-protein coding RNA 838 O - 20121230 -9606 100505585 LOC100505585 - - - 19 - uncharacterized LOC100505585 miscRNA - - - - 20121209 -9606 100505588 LOC100505588 - - - 9 - uncharacterized LOC100505588 miscRNA - - - - 20121209 -9606 100505591 LRRC3C hCG_2044133 - HGNC:40034|Ensembl:ENSG00000204913|Vega:OTTHUMG00000179521 17 17q12-q21.1 leucine rich repeat containing 3C protein-coding LRRC3C leucine rich repeat containing 3C O leucine-rich repeat-containing protein 3C|putative LRRC3-like protein ENSP00000367157 20121230 -9606 100505592 LOC100505592 - - - 18 - uncharacterized LOC100505592 miscRNA - - - - 20121209 -9606 100505594 LOC100505594 - - - 19 - uncharacterized LOC100505594 miscRNA - - - - 20121209 -9606 100505596 LOC100505596 - - - 4 - uncharacterized LOC100505596 miscRNA - - - - 20121209 -9606 100505598 PEX5L-AS2 - - HGNC:41252 3 - PEX5L antisense RNA 2 miscRNA PEX5L-AS2 PEX5L antisense RNA 2 O - 20121021 -9606 100505601 PARD3-AS1 - - HGNC:44964 10 - PARD3 antisense RNA 1 miscRNA PARD3-AS1 PARD3 antisense RNA 1 O - 20121227 -9606 100505609 LOC100505609 - - - 3 - uncharacterized LOC100505609 miscRNA - - - - 20121209 -9606 100505610 LINC00422 - - HGNC:42757 13 - long intergenic non-protein coding RNA 422 miscRNA LINC00422 long intergenic non-protein coding RNA 422 O - 20121021 -9606 100505613 LOC100505613 - - - 8 - uncharacterized LOC100505613 miscRNA - - - - 20121209 -9606 100505616 LOC100505616 - - - 15 - uncharacterized LOC100505616 miscRNA - - - - 20121209 -9606 100505619 LOC100505619 - - - 16 - uncharacterized LOC100505619 miscRNA - - - - 20121230 -9606 100505620 LOC100505620 - - - 17 - uncharacterized LOC100505620 unknown - - - - 20121230 -9606 100505621 C11orf72 hCG_1779686 - HGNC:26915 11 11q13.2 chromosome 11 open reading frame 72 other C11orf72 chromosome 11 open reading frame 72 O - 20121021 -9606 100505622 LOC100505622 - - - 19 - uncharacterized LOC100505622 miscRNA - - - - 20121230 -9606 100505624 LOC100505624 - - - 2 2p23.3 uncharacterized LOC100505624 miscRNA - - - - 20121230 -9606 100505625 LOC100505625 - - - 5 - uncharacterized LOC100505625 miscRNA - - - - 20120511 -9606 100505630 LOC100505630 - - - 1 - uncharacterized LOC100505630 miscRNA - - - - 20121209 -9606 100505633 LOC100505633 - - - 1 1q21-q23 uncharacterized LOC100505633 miscRNA - - - - 20121230 -9606 100505634 LOC100505634 - - - 2 - uncharacterized LOC100505634 miscRNA - - - - 20121209 -9606 100505635 LOC100505635 - - - 6 - uncharacterized LOC100505635 miscRNA - - - - 20121230 -9606 100505636 LOC100505636 - - - 5 - uncharacterized LOC100505636 miscRNA - - - - 20121230 -9606 100505639 LOC100505639 - - - 19 - uncharacterized LOC100505639 miscRNA - - - - 20121209 -9606 100505641 FGD5-AS1 - - HGNC:40410 3 - FGD5 antisense RNA 1 miscRNA FGD5-AS1 FGD5 antisense RNA 1 O - 20121230 -9606 100505642 LOC100505642 - - - 3 - chromosome 9 open reading frame 85 pseudogene pseudo - - - - 20121230 -9606 100505645 LOC100505645 - - - 12 - uncharacterized LOC100505645 miscRNA - - - - 20121209 -9606 100505648 LOC100505648 - - - 15 15q15.1 uncharacterized LOC100505648 miscRNA - - - - 20121230 -9606 100505650 LOC100505650 - - - 1 - uncharacterized LOC100505650 miscRNA - - - - 20121209 -9606 100505651 LOC100505651 - - - 20 - uncharacterized LOC100505651 miscRNA - - - - 20121209 -9606 100505658 LOC100505658 - - - 5 - uncharacterized LOC100505658 miscRNA - - - - 20121230 -9606 100505659 LOC100505659 - - - 8 - uncharacterized LOC100505659 miscRNA - - - - 20121230 -9606 100505663 LOC100505663 - - - 20 - uncharacterized LOC100505663 miscRNA - - - - 20121209 -9606 100505664 LOC100505664 - - - 20 - uncharacterized LOC100505664 miscRNA - - - - 20121209 -9606 100505666 LOC100505666 - - - 1 - uncharacterized LOC100505666 miscRNA - - - - 20121230 -9606 100505667 LOC100505667 - - - 2 - uncharacterized LOC100505667 pseudo - - - - 20121209 -9606 100505669 LOC100505669 - - - 7 - uncharacterized LOC100505669 miscRNA - - - - 20121209 -9606 100505676 LOC100505676 - - - 8 - uncharacterized LOC100505676 miscRNA - - - - 20121230 -9606 100505678 STARD4-AS1 - - HGNC:44117 5 5q22.1 STARD4 antisense RNA 1 miscRNA STARD4-AS1 STARD4 antisense RNA 1 O - 20121230 -9606 100505679 LOC100505679 - - Ensembl:ENSG00000259511|Vega:OTTHUMG00000172496 15 - uncharacterized LOC100505679 protein-coding - - - uncharacterized protein LOC100505679 20121230 -9606 100505681 NAPA-AS1 - - HGNC:44118 19 - NAPA antisense RNA 1 miscRNA NAPA-AS1 NAPA antisense RNA 1 O - 20121230 -9606 100505683 LOC100505683 - - - 20 - uncharacterized LOC100505683 miscRNA - - - - 20121209 -9606 100505685 LOC100505685 - - - 4 - uncharacterized LOC100505685 miscRNA - - - - 20121209 -9606 100505687 LOC100505687 - - - 3 - uncharacterized LOC100505687 miscRNA - - - - 20121230 -9606 100505690 LOC100505690 - - - 1 - thioredoxin 2 pseudogene pseudo - - - - 20121230 -9606 100505692 FTO-IT1 - - HGNC:43758 16 - FTO intronic transcript 1 (non-protein coding) miscRNA FTO-IT1 FTO intronic transcript 1 (non-protein coding) O - 20121230 -9606 100505694 LOC100505694 - - - 2 - family with sequence similarity 133, member A pseudogene pseudo - - - - 20121230 -9606 100505695 LOC100505695 - - - 2 2q31.1 uncharacterized LOC100505695 miscRNA - - - - 20121230 -9606 100505696 SH3BP5-AS1 - - HGNC:44501 3 3p25.1 SH3BP5 antisense RNA 1 miscRNA SH3BP5-AS1 SH3BP5 antisense RNA 1 O - 20121230 -9606 100505697 LOC100505697 - - - 6 - uncharacterized LOC100505697 miscRNA - - - - 20121209 -9606 100505702 LOC100505702 - - - 4 - uncharacterized LOC100505702 miscRNA - - - - 20121230 -9606 100505704 ATP5G1P6 - - HGNC:39509 18 18q21.3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 6 pseudo ATP5G1P6 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C1 (subunit 9) pseudogene 6 O - 20121230 -9606 100505705 SDIM1 - - HGNC:38749 6 - stress responsive DNAJB4 interacting membrane protein 1 unknown SDIM1 stress responsive DNAJB4 interacting membrane protein 1 O - 20121230 -9606 100505710 LOC100505710 - - - 3 - uncharacterized LOC100505710 miscRNA - - - - 20121209 -9606 100505711 LOC100505711 - - - 6 - uncharacterized LOC100505711 miscRNA - - - - 20121209 -9606 100505715 LOC100505715 - - - 19 - uncharacterized LOC100505715 miscRNA - - - - 20121230 -9606 100505716 LOC100505716 - - - 2 2p23 uncharacterized LOC100505716 miscRNA - - - - 20121230 -9606 100505718 LOC100505718 - - - 8 - uncharacterized LOC100505718 miscRNA - - - - 20121230 -9606 100505722 LOC100505722 - - - 16 - uncharacterized LOC100505722 miscRNA - - - - 20121209 -9606 100505724 KRTAP9-7 - KAP9.7|KRTAP9L1 HGNC:18915|Ensembl:ENSG00000180386|Vega:OTTHUMG00000133605 17 17q21.2 keratin associated protein 9-7 protein-coding KRTAP9-7 keratin associated protein 9-7 O Putative keratin-associated protein 9-2-like 1|keratin associated protein 9-like 1 20121230 -9606 100505727 LOC100505727 - - - 21 - uncharacterized LOC100505727 miscRNA - - - - 20121209 -9606 100505728 LOC100505728 - - - 1 - uncharacterized LOC100505728 unknown - - - - 20120511 -9606 100505729 LOC100505729 - - - 3 - uncharacterized LOC100505729 miscRNA - - - - 20121209 -9606 100505735 LOC100505735 - - - 20 - uncharacterized LOC100505735 miscRNA - - - - 20121209 -9606 100505736 LOC100505736 - - - 2 2p23.2 uncharacterized LOC100505736 miscRNA - - - - 20121230 -9606 100505738 LOC100505738 - - - 5 - uncharacterized LOC100505738 miscRNA - - - - 20121230 -9606 100505739 LOC100505739 - - - 8 - uncharacterized LOC100505739 miscRNA - - - - 20121209 -9606 100505741 SPATA1 RP11-118B23.4 SP-2|SPAP1 HGNC:14682 1 1p22.3 spermatogenesis associated 1 protein-coding SPATA1 spermatogenesis associated 1 O sperm-specific protein SP-2|spermatogenesis associated protein 1|spermatogenesis-associated protein 1 20121230 -9606 100505746 ITGB2-AS1 - - HGNC:44304 21 - ITGB2 antisense RNA 1 miscRNA ITGB2-AS1 ITGB2 antisense RNA 1 O - 20121230 -9606 100505753 KRTAP16-1 hCG_2043352 KAP16.1 HGNC:18916|Ensembl:ENSG00000212657|Vega:OTTHUMG00000133640 17 17q21.2 keratin associated protein 16-1 protein-coding KRTAP16-1 keratin associated protein 16-1 O keratin-associated protein 16-1|putative keratin-associated protein 10-like ENSP00000375147 20121230 -9606 100505754 LOC100505754 - - - 19 - uncharacterized LOC100505754 miscRNA - - - - 20121209 -9606 100505755 MTND5P28 - - HGNC:42290 2 2q14.2 MT-ND5 pseudogene 28 pseudo MTND5P28 MT-ND5 pseudogene 28 O - 20121230 -9606 100505758 PRMT5-AS1 - - HGNC:40533 14 - PRMT5 antisense RNA 1 miscRNA PRMT5-AS1 PRMT5 antisense RNA 1 O - 20121230 -9606 100505759 LOC100505759 - - - 12 - uncharacterized LOC100505759 miscRNA - - - - 20120511 -9606 100505761 LOC100505761 - - - 10 - uncharacterized LOC100505761 miscRNA - - - - 20121230 -9606 100505767 LOC100505767 - - - 7 - putative speedy protein-like protein 2-like protein-coding - - - speedy protein E3-like 20121209 -9606 100505768 LOC100505768 - - - 1 - uncharacterized LOC100505768 miscRNA - - - - 20121230 -9606 100505771 LOC100505771 - - - 20 - uncharacterized LOC100505771 miscRNA - - - - 20121209 -9606 100505774 LOC100505774 - - - 2 - uncharacterized LOC100505774 miscRNA - - - - 20121209 -9606 100505775 LOC100505775 - - - 8 - uncharacterized LOC100505775 miscRNA - - - - 20121209 -9606 100505776 LOC100505776 - - - 18 - uncharacterized LOC100505776 miscRNA - - - - 20121230 -9606 100505781 LOC100505781 - - - 9 - protein FAM27D1-like protein-coding - - - protein FAM27E2-like 20121209 -9606 100505782 LOC100505782 - - - 17 - uncharacterized LOC100505782 miscRNA - - - - 20121230 -9606 100505783 LOC100505783 - - - 20 - uncharacterized LOC100505783 miscRNA - - - - 20121230 -9606 100505784 LOC100505784 - - - 4 - uncharacterized LOC100505784 miscRNA - - - - 20121209 -9606 100505785 KIRREL-IT1 - - HGNC:41412 1 1q23.1 KIRREL intronic transcript 1 (non-protein coding) unknown KIRREL-IT1 KIRREL intronic transcript 1 (non-protein coding) O - 20121230 -9606 100505786 LOC100505786 - - - 3 - uncharacterized LOC100505786 miscRNA - - - - 20121209 -9606 100505788 LOC100505788 - - - 1 - NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa pseudogene pseudo - - - - 20121230 -9606 100505794 LOC100505794 - - - 1 - uncharacterized LOC100505794 miscRNA - - - - 20121209 -9606 100505795 LOC100505795 - - - 1 - uncharacterized LOC100505795 miscRNA - - - - 20121230 -9606 100505796 LOC100505796 - - - 5 - protein IMPACT-like protein-coding - - - - 20120825 -9606 100505797 LOC100505797 - - - 18 - uncharacterized LOC100505797 miscRNA - - - - 20121209 -9606 100505798 LOC100505798 - - - 5 - uncharacterized LOC100505798 protein-coding - - - - 20120318 -9606 100505799 LOC100505799 - - - 1 - uncharacterized LOC100505799 miscRNA - - - - 20121209 -9606 100505806 LOC100505806 - - - 5 - uncharacterized LOC100505806 miscRNA - - - - 20121230 -9606 100505811 LOC100505811 - - - 5 - uncharacterized LOC100505811 miscRNA - - - - 20121209 -9606 100505812 LOC100505812 - - - 19 - uncharacterized LOC100505812 miscRNA - - - - 20121230 -9606 100505817 LOC100505817 - - - 18 - uncharacterized LOC100505817 miscRNA - - - - 20121230 -9606 100505821 LOC100505821 - - - 1 - uncharacterized LOC100505821 miscRNA - - - - 20121209 -9606 100505822 LOC100505822 - - - 5 - uncharacterized LOC100505822 miscRNA - - - - 20121209 -9606 100505824 LOC100505824 - - - 1 - uncharacterized LOC100505824 miscRNA - - - - 20121209 -9606 100505826 STK4-AS1 - - HGNC:43811 20 - STK4 antisense RNA 1 (head to head) miscRNA STK4-AS1 STK4 antisense RNA 1 (head to head) O - 20121230 -9606 100505827 LOC100505827 - - - 21 - uncharacterized LOC100505827 miscRNA - - - - 20121209 -9606 100505828 LOC100505828 - - - 1 - uncharacterized LOC100505828 miscRNA - - - - 20121209 -9606 100505832 PROX1-AS1 - - HGNC:43656 1 1q32.3 PROX1 antisense RNA 1 miscRNA PROX1-AS1 PROX1 antisense RNA 1 O - 20121021 -9606 100505834 LOC100505834 - - - 11 - uncharacterized LOC100505834 miscRNA - - - - 20121209 -9606 100505835 LOC100505835 - - - 19 - uncharacterized LOC100505835 miscRNA - - - - 20121230 -9606 100505836 LOC100505836 - - - 3 - uncharacterized LOC100505836 protein-coding - - - - 20121230 -9606 100505839 LOC100505839 - - - 10 - uncharacterized LOC100505839 miscRNA - - - - 20121230 -9606 100505840 LOC100505840 - - - 1 - uncharacterized LOC100505840 miscRNA - - - - 20121209 -9606 100505841 LOC100505841 - - - 5 5q23.2 zinc finger protein 474-like protein-coding - - - uncharacterized protein LOC100505841 20121230 -9606 100505845 ROPN1L-AS1 - - HGNC:39984 5 5p15.2 ROPN1L antisense RNA 1 miscRNA ROPN1L-AS1 ROPN1L antisense RNA 1 O - 20121230 -9606 100505848 LOC100505848 hCG_2036644 - - 11 - uncharacterized LOC100505848 unknown - - - - 20120622 -9606 100505851 LOC100505851 - - - 19 - uncharacterized LOC100505851 unknown - - - - 20121230 -9606 100505852 ZNF355P PRED65 ZNF834 HGNC:17218 21 21q11.2 zinc finger protein 355, pseudogene pseudo ZNF355P zinc finger protein 355, pseudogene O - 20121230 -9606 100505853 LOC100505853 - - - 18 - uncharacterized LOC100505853 miscRNA - - - - 20121209 -9606 100505854 RSBN1L-AS1 - - HGNC:44173 7 - RSBN1L antisense RNA 1 miscRNA RSBN1L-AS1 RSBN1L antisense RNA 1 O - 20121230 -9606 100505855 LOC100505855 - - - 9 - eukaryotic translation initiation factor 1 pseudogene pseudo - - - - 20121230 -9606 100505862 LOC100505862 - - - 6 - uncharacterized LOC100505862 miscRNA - - - - 20121209 -9606 100505863 LOC100505863 - - - 7 - uncharacterized LOC100505863 miscRNA - - - - 20121209 -9606 100505865 LOC100505865 - - - 16 - uncharacterized LOC100505865 miscRNA - - - - 20121230 -9606 100505869 LOC100505869 - - - 10 - uncharacterized LOC100505869 miscRNA - - - - 20121209 -9606 100505870 LOC100505870 - - - 11 - uncharacterized LOC100505870 unknown - - - - 20121230 -9606 100505873 LOC100505873 - - - 17 - putative protein FAM215A-like pseudo - - - - 20121209 -9606 100505874 LOC100505874 - - - Un - uncharacterized LOC100505874 miscRNA - - - - 20121209 -9606 100505875 LOC100505875 - - - 4 - uncharacterized LOC100505875 miscRNA - - - - 20121230 -9606 100505876 LOC100505876 - - - 2 2p22 uncharacterized LOC100505876 miscRNA - - - - 20121230 -9606 100505877 UBE2E2-AS1 - - HGNC:44512 3 - UBE2E2 antisense RNA 1 (head to head) miscRNA UBE2E2-AS1 UBE2E2 antisense RNA 1 (head to head) O - 20121209 -9606 100505878 LOC100505878 - - - 5 - uncharacterized LOC100505878 miscRNA - - - - 20121209 -9606 100505879 KIF25-AS1 hCG_15383 C6orf54|HGC6.1.1|NCRNA00300 HGNC:20953 6 6q27 KIF25 antisense RNA 1 miscRNA KIF25-AS1 KIF25 antisense RNA 1 O - 20121230 -9606 100505881 MAGI2-AS3 - - HGNC:40862 7 - MAGI2 antisense RNA 3 miscRNA MAGI2-AS3 MAGI2 antisense RNA 3 O - 20121230 -9606 100505887 LOC100505887 - - - 1 - uncharacterized LOC100505887 miscRNA - - - - 20121209 -9606 100505890 LOC100505890 - - - 10 - uncharacterized LOC100505890 miscRNA - - - uncharacterized protein LOC100505890 20121230 -9606 100505892 CCNB1IP1P2 - - HGNC:37694 20 - cyclin B1 interacting protein 1 pseudogene 2 pseudo CCNB1IP1P2 cyclin B1 interacting protein 1 pseudogene 2 O - 20121230 -9606 100505893 SLIT2-IT1 hCG_2045574 - HGNC:41383 4 - SLIT2 intronic transcript 1 (non-protein coding) miscRNA SLIT2-IT1 SLIT2 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100505894 TMEM161B-AS1 - - HGNC:43839 5 - TMEM161B antisense RNA 1 miscRNA TMEM161B-AS1 TMEM161B antisense RNA 1 O - 20121230 -9606 100505902 LOC100505902 - - - 3 - uncharacterized LOC100505902 miscRNA - - - - 20121209 -9606 100505903 LOC100505903 - - - 6 - uncharacterized LOC100505903 miscRNA - - - - 20121209 -9606 100505904 LOC100505904 - - - 7 - uncharacterized LOC100505904 miscRNA - - - - 20121209 -9606 100505909 LOC100505909 - - - 17 - uncharacterized LOC100505909 miscRNA - - - - 20121209 -9606 100505911 SOS1-IT1 - - HGNC:41385 2 2p21 SOS1 intronic transcript 1 (non-protein coding) miscRNA SOS1-IT1 SOS1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100505912 LOC100505912 - - - 4 - uncharacterized LOC100505912 miscRNA - - - - 20121230 -9606 100505913 LOC100505913 - - - 7 - uncharacterized LOC100505913 miscRNA - - - - 20121209 -9606 100505915 LOC100505915 - - - 16 - uncharacterized LOC100505915 miscRNA - - - - 20120508 -9606 100505918 LOC100505918 - - - 1 1q23-q24 uncharacterized LOC100505918 miscRNA - - - - 20121230 -9606 100505919 CFL1P7 - - HGNC:39959 3 3p24 cofilin 1 (non-muscle) pseudogene 7 pseudo CFL1P7 cofilin 1 (non-muscle) pseudogene 7 O - 20121230 -9606 100505920 LOC100505920 - - - 3 - uncharacterized LOC100505920 miscRNA - - - - 20121209 -9606 100505921 LOC100505921 - - - 7 - uncharacterized LOC100505921 miscRNA - - - - 20121209 -9606 100505923 LOC100505923 - - - 12 - uncharacterized LOC100505923 unknown - - - - 20121230 -9606 100505929 C21orf37 hCG_1817258 - HGNC:1277 21 21q21.1 chromosome 21 open reading frame 37 miscRNA C21orf37 chromosome 21 open reading frame 37 O - 20121230 -9606 100505932 LOC100505932 - - - 7 - uncharacterized LOC100505932 unknown - - - - 20120726 -9606 100505933 LOC100505933 - - - 10 - uncharacterized LOC100505933 miscRNA - - - - 20121230 -9606 100505938 LOC100505938 - - - 7 - uncharacterized LOC100505938 miscRNA - - - - 20121230 -9606 100505940 LOC100505940 - - - 1 - uncharacterized LOC100505940 miscRNA - - - - 20121209 -9606 100505942 LOC100505942 - - - 16 - uncharacterized LOC100505942 miscRNA - - - - 20121209 -9606 100505945 BTF3L4P1 - - HGNC:39645 21 - basic transcription factor 3-like 4 pseudogene 1 pseudo BTF3L4P1 basic transcription factor 3-like 4 pseudogene 1 O - 20121230 -9606 100505946 LOC100505946 - - - 4 - uncharacterized LOC100505946 miscRNA - - - - 20121209 -9606 100505947 LOC100505947 - - - 3 - uncharacterized LOC100505947 miscRNA - - - - 20121209 -9606 100505948 LOC100505948 - - - 16 - uncharacterized LOC100505948 miscRNA - - - - 20121209 -9606 100505949 LOC100505949 - - - 5 - uncharacterized LOC100505949 miscRNA - - - - 20121209 -9606 100505951 LOC100505951 - - - 7 - uncharacterized LOC100505951 unknown - - - - 20120726 -9606 100505953 LOC100505953 - - - 11 11p15.5 capicua homolog (Drosophila) pseudogene pseudo - - - - 20121209 -9606 100505955 LOC100505955 - - - 1 - putative uncharacterized protein FLJ44672-like pseudo - - - - 20121209 -9606 100505964 LOC100505964 - - - 2 2p25 uncharacterized LOC100505964 miscRNA - - - - 20121230 -9606 100505967 LINC00645 - - HGNC:44299 14 - long intergenic non-protein coding RNA 645 miscRNA LINC00645 long intergenic non-protein coding RNA 645 O - 20121230 -9606 100505970 HEXDC-IT1 - - HGNC:43650 17 - HEXDC intronic transcript 1 (non-protein coding) miscRNA HEXDC-IT1 HEXDC intronic transcript 1 (non-protein coding) O - 20121230 -9606 100505973 LOC100505973 - - - 21 - uncharacterized LOC100505973 miscRNA - - - - 20121209 -9606 100505975 ENO1-AS1 - - HGNC:40214 1 1p36.2 ENO1 antisense RNA 1 miscRNA ENO1-AS1 ENO1 antisense RNA 1 O - 20121230 -9606 100505978 LOC100505978 - - - 12 - uncharacterized LOC100505978 miscRNA - - - - 20121230 -9606 100505982 LOC100505982 - - - 1 - ubiquitin-conjugating enzyme E2 variant 1 pseudogene pseudo - - - - 20121230 -9606 100505983 LOC100505983 - - - 20 - uncharacterized LOC100505983 miscRNA - - - - 20121209 -9606 100505984 LOC100505984 - - - 2 - uncharacterized LOC100505984 miscRNA - - - - 20120318 -9606 100505985 LOC100505985 - - - 6 - uncharacterized LOC100505985 miscRNA - - - - 20121209 -9606 100505986 LOC100505986 - - - 9 - uncharacterized LOC100505986 miscRNA - - - - 20121209 -9606 100505989 LOC100505989 - - - 4 4q32 uncharacterized LOC100505989 miscRNA - - - - 20121230 -9606 100505991 LOC100505991 - - - 1 - uncharacterized LOC100505991 miscRNA - - - - 20121230 -9606 100505992 LOC100505992 - - - 3 - uncharacterized LOC100505992 pseudo - - - - 20121209 -9606 100505993 TMEM210 - - HGNC:34059|Ensembl:ENSG00000185863|Vega:OTTHUMG00000020981 9 9q34.3 transmembrane protein 210 protein-coding TMEM210 transmembrane protein 210 O - 20121230 -9606 100505994 LOC100505994 - - - 5 - uncharacterized LOC100505994 unknown - - - - 20121230 -9606 100505995 LOC100505995 - - - 7 - apoptosis-inducing, TAF9-like domain 1 pseudogene pseudo - - - - 20121230 -9606 100505996 LINC00403 - - HGNC:42733 13 - long intergenic non-protein coding RNA 403 miscRNA LINC00403 long intergenic non-protein coding RNA 403 O - 20121209 -9606 100505997 LOC100505997 - - - 12 - uncharacterized LOC100505997 miscRNA - - - - 20120511 -9606 100506000 LOC100506000 - - - 16 - heat shock 10kDa protein 1 (chaperonin 10) pseudogene pseudo - - - - 20121230 -9606 100506001 NARF-OT1 - - HGNC:43651 17 - NARF overlapping transcript 1 (non-protein coding) miscRNA NARF-OT1 NARF overlapping transcript 1 (non-protein coding) O - 20121021 -9606 100506003 ZFY-AS1 - ZFY-AS|ZFYAS HGNC:38798 Y - ZFY antisense RNA 1 miscRNA ZFY-AS1 ZFY antisense RNA 1 O - 20121021 -9606 100506004 LOC100506004 - - - 14 - uncharacterized LOC100506004 miscRNA - - - - 20121209 -9606 100506007 LOC100506007 - - - 1 - uncharacterized LOC100506007 miscRNA - - - - 20121209 -9606 100506011 LOC100506011 - - - 1 - uncharacterized LOC100506011 miscRNA - - - - 20121209 -9606 100506012 PPP5D1 - - HGNC:44209|Ensembl:ENSG00000230510 19 - PPP5 tetratricopeptide repeat domain containing 1 protein-coding PPP5D1 PPP5 tetratricopeptide repeat domain containing 1 O PPP5 TPR repeat domain-containing protein 1|protein PPP5D1 20121230 -9606 100506013 LOC100506013 - - - 4 4q32 uncharacterized LOC100506013 miscRNA - - - - 20121230 -9606 100506014 LOC100506014 - - - 2 - uncharacterized LOC100506014 miscRNA - - - - 20121209 -9606 100506016 LOC100506016 - - - 13 - uncharacterized LOC100506016 miscRNA - - - - 20121209 -9606 100506020 ARAP1-AS2 - - HGNC:39994 11 11q13.4 ARAP1 antisense RNA 2 miscRNA ARAP1-AS2 ARAP1 antisense RNA 2 O - 20121230 -9606 100506022 LOC100506022 - - - 1 - uncharacterized LOC100506022 miscRNA - - - - 20121209 -9606 100506023 LOC100506023 - - - 1 1q23-q25 uncharacterized LOC100506023 miscRNA - - - - 20121230 -9606 100506025 LOC100506025 - - - 7 - uncharacterized LOC100506025 miscRNA - - - - 20121230 -9606 100506029 LOC100506029 - - - 1 - uncharacterized LOC100506029 miscRNA - - - - 20121209 -9606 100506031 LOC100506031 - - - 16 - uncharacterized LOC100506031 unknown - - - - 20120622 -9606 100506033 PTOV1-AS1 - - HGNC:44174 19 - PTOV1 antisense RNA 1 miscRNA PTOV1-AS1 PTOV1 antisense RNA 1 O - 20121230 -9606 100506035 LOC100506035 - - - 4 4q21.21 uncharacterized LOC100506035 miscRNA - - - - 20121230 -9606 100506036 LOC100506036 - - - 2 - uncharacterized LOC100506036 miscRNA - - - - 20121209 -9606 100506038 LOC100506038 - - - 6 - uncharacterized LOC100506038 pseudo - - - - 20121209 -9606 100506039 HMGB3P8 - - HGNC:39300 10 10q25.3 high mobility group box 3 pseudogene 8 pseudo HMGB3P8 high mobility group box 3 pseudogene 8 O - 20121230 -9606 100506043 LOC100506043 - - - 17 - uncharacterized LOC100506043 pseudo - - - - 20121209 -9606 100506046 GAS5-AS1 - - HGNC:44119 1 - GAS5 antisense RNA 1 miscRNA GAS5-AS1 GAS5 antisense RNA 1 O - 20121230 -9606 100506047 LOC100506047 - - - 2 - uncharacterized LOC100506047 miscRNA - - - - 20121209 -9606 100506048 LOC100506048 - - - 4 - uncharacterized LOC100506048 miscRNA - - - - 20121209 -9606 100506049 LRRC72 - - HGNC:42972|Ensembl:ENSG00000205858|Vega:OTTHUMG00000152446 7 7p21.1 leucine rich repeat containing 72 protein-coding LRRC72 leucine rich repeat containing 72 O leucine-rich repeat-containing protein 72|leucine-rich repeat-containing protein ENSP00000371558 20121230 -9606 100506050 LOC100506050 - - - 7 - uncharacterized LOC100506050 miscRNA - - - - 20121230 -9606 100506051 LOC100506051 - - - 1 - uncharacterized LOC100506051 miscRNA - - - - 20121209 -9606 100506053 LOC100506053 - - - 20 - uncharacterized LOC100506053 miscRNA - - - - 20121209 -9606 100506054 LOC100506054 - - - 2 2p25 uncharacterized LOC100506054 miscRNA - - - - 20121230 -9606 100506055 LOC100506055 - - - 2 - matrix-remodelling associated 7 pseudogene pseudo - - - - 20121230 -9606 100506057 LOC100506057 - - - 10 - uncharacterized LOC100506057 miscRNA - - - - 20121209 -9606 100506058 LOC100506058 - - - 15 - eukaryotic translation initiation factor 5A2 pseudogene pseudo - - - - 20121230 -9606 100506059 LOC100506059 - - - 15 - uncharacterized LOC100506059 miscRNA - - - - 20121209 -9606 100506060 LOC100506060 - - - 16 16q22.1 SMG1 homolog, phosphatidylinositol 3-kinase-related kinase (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100506061 BTF3L4P4 - - HGNC:39648 4 4q32.3 basic transcription factor 3-like 4 pseudogene 4 pseudo BTF3L4P4 basic transcription factor 3-like 4 pseudogene 4 O - 20121230 -9606 100506063 LOC100506063 - - - 13 - uncharacterized LOC100506063 miscRNA - - - - 20121209 -9606 100506068 DACT3-AS1 - - HGNC:44120 19 - DACT3 antisense RNA 1 miscRNA DACT3-AS1 DACT3 antisense RNA 1 O - 20121230 -9606 100506069 LOC100506069 - - - 20 - uncharacterized LOC100506069 miscRNA - - - - 20121209 -9606 100506070 LOC100506070 - - - 18 - uncharacterized LOC100506070 miscRNA - - - - 20121230 -9606 100506071 LOC100506071 - - - 14 - uncharacterized LOC100506071 miscRNA - - - - 20121230 -9606 100506075 LOC100506075 - - - 22 - uncharacterized LOC100506075 miscRNA - - - - 20121209 -9606 100506076 LOC100506076 - - - 2 - uncharacterized LOC100506076 miscRNA - - - - 20121209 -9606 100506077 LOC100506077 - - - 2 - uncharacterized LOC100506077 miscRNA - - - - 20120511 -9606 100506080 HMGA1P4 - - HGNC:39093 9 - high mobility group AT-hook 1 pseudogene 4 pseudo HMGA1P4 high mobility group AT-hook 1 pseudogene 4 O - 20121230 -9606 100506082 LOC100506082 - - - 11 - uncharacterized LOC100506082 miscRNA - - - - 20121230 -9606 100506083 LOC100506083 - - - 16 - uncharacterized LOC100506083 miscRNA - - - - 20121230 -9606 100506084 ARL17B PRO2667 ARL17|ARL17A HGNC:32387|Ensembl:ENSG00000228696|Vega:OTTHUMG00000178031 17 17q21.31 ADP-ribosylation factor-like 17B protein-coding ARL17B ADP-ribosylation factor-like 17B O ADP-ribosylation factor 7|ADP-ribosylation factor-like protein 17 20121230 -9606 100506085 LOC100506085 - - - 4 - uncharacterized LOC100506085 miscRNA - - - - 20121230 -9606 100506088 LOC100506088 - - - 2 - uncharacterized LOC100506088 miscRNA - - - - 20121209 -9606 100506089 LOC100506089 - - - 18 - uncharacterized LOC100506089 miscRNA - - - - 20121230 -9606 100506091 LOC100506091 - - - 6 - uncharacterized LOC100506091 miscRNA - - - - 20121209 -9606 100506098 LOC100506098 - - - 7 - uncharacterized LOC100506098 miscRNA - - - - 20121209 -9606 100506099 LOC100506099 - - - 12 - peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 100506100 LOC100506100 - - - 9 - uncharacterized LOC100506100 miscRNA - - - - 20121230 -9606 100506101 LOC100506101 - - - 11 - uncharacterized LOC100506101 miscRNA - - - - 20121209 -9606 100506102 LOC100506102 - - - 5 - uncharacterized LOC100506102 miscRNA - - - - 20121209 -9606 100506103 LOC100506103 - - - 9 - 6-pyruvoyltetrahydropterin synthase pseudogene pseudo - - - - 20121209 -9606 100506105 LOC100506105 - - - 16 - uncharacterized LOC100506105 miscRNA - - - - 20121209 -9606 100506107 LOC100506107 - - - 4 4q32-q34 uncharacterized LOC100506107 miscRNA - - - - 20121230 -9606 100506108 SIX3-AS1 - - HGNC:40532 2 - SIX3 antisense RNA 1 miscRNA SIX3-AS1 SIX3 antisense RNA 1 O - 20121230 -9606 100506110 LOC100506110 - - - 14 - uncharacterized LOC100506110 miscRNA - - - - 20121209 -9606 100506113 LOC100506113 - - - 11 - uncharacterized LOC100506113 miscRNA - - - - 20121209 -9606 100506114 LOC100506114 - - - 19 - uncharacterized LOC100506114 miscRNA - - - - 20121209 -9606 100506115 LOC100506115 - - - 20 - uncharacterized LOC100506115 miscRNA - - - - 20121230 -9606 100506119 LOC100506119 - - - 9 - uncharacterized LOC100506119 miscRNA - - - - 20121209 -9606 100506122 LOC100506122 - - - 4 4q32-q34 uncharacterized LOC100506122 miscRNA - - - - 20121230 -9606 100506123 LOC100506123 - - - 2 2q11 uncharacterized LOC100506123 miscRNA - - - - 20121230 -9606 100506124 LOC100506124 - - - 2 - uncharacterized LOC100506124 miscRNA - - - - 20121230 -9606 100506125 LOC100506125 - - - 12 - uncharacterized LOC100506125 miscRNA - - - - 20121209 -9606 100506126 LOC100506126 - - - 10 - uncharacterized LOC100506126 miscRNA - - - - 20121209 -9606 100506127 LOC100506127 - - Ensembl:ENSG00000179240|Vega:OTTHUMG00000165281 11 11q13.5 putative uncharacterized protein FLJ37770-like protein-coding - - - - 20121230 -9606 100506128 LOC100506128 - - - 1 - uncharacterized LOC100506128 miscRNA - - - - 20121209 -9606 100506133 LOC100506133 - - - 4 - ubiquitin-conjugating enzyme E2N pseudogene pseudo - - - - 20121230 -9606 100506134 LOC100506134 - - - 2 2q24 uncharacterized LOC100506134 miscRNA - - - - 20121230 -9606 100506136 LOC100506136 - - - 7 - uncharacterized LOC100506136 miscRNA - - - - 20121230 -9606 100506142 LOC100506142 - - - 2 2p21 uncharacterized LOC100506142 miscRNA - - - - 20120511 -9606 100506144 ZMYM6NB hCG_37762 - HGNC:40021|Ensembl:ENSG00000243749|Vega:OTTHUMG00000004158 1 1p34.3 ZMYM6 neighbor protein-coding ZMYM6NB ZMYM6 neighbor O ZMYM6 neighbor protein|uncharacterized protein ZMYM6NB 20121230 -9606 100506145 LOC100506145 - - - 1 - uncharacterized LOC100506145 pseudo - - - - 20121209 -9606 100506154 LOC100506154 - - - 4 - uncharacterized LOC100506154 miscRNA - - - - 20121209 -9606 100506155 LOC100506155 - - - 2 - uncharacterized LOC100506155 miscRNA - - - - 20120511 -9606 100506157 LOC100506157 - - - 14 - uncharacterized LOC100506157 miscRNA - - - - 20121209 -9606 100506159 LOC100506159 - - - 12 - uncharacterized LOC100506159 miscRNA - - - - 20121017 -9606 100506161 LOC100506161 - - - 1 - uncharacterized LOC100506161 miscRNA - - - - 20121209 -9606 100506164 HSFX1 hCG_27154 LW-1 HGNC:29603|Ensembl:ENSG00000171116|Vega:OTTHUMG00000022626 X Xq28 heat shock transcription factor family, X linked 1 protein-coding HSFX1 heat shock transcription factor family, X linked 1 O heat shock transcription factor, X-linked 20121230 -9606 100506165 LOC100506165 - - - 6 - uncharacterized LOC100506165 miscRNA - - - - 20121209 -9606 100506169 MTND5P11 - - HGNC:42273 5 5q31.1 MT-ND5 pseudogene 11 pseudo MTND5P11 MT-ND5 pseudogene 11 O - 20121230 -9606 100506172 LOC100506172 - - - 16 - uncharacterized LOC100506172 miscRNA - - - - 20121230 -9606 100506173 1060P11.3 - - - 19 - killer cell immunoglobulin-like receptor, three domains, pseudogene pseudo - - - - 20121209 -9606 100506175 LOC100506175 - - - 20 - uncharacterized LOC100506175 miscRNA - - - - 20121209 -9606 100506178 LOC100506178 - - - 7 - uncharacterized LOC100506178 miscRNA - - - - 20121230 -9606 100506183 LOC100506183 - - - 16 - uncharacterized LOC100506183 miscRNA - - - - 20121209 -9606 100506185 LOC100506185 - - - 21 - putative uncharacterized protein UNQ6125/PRO20090-like pseudo - - - - 20121209 -9606 100506188 LOC100506188 - - - 6 - uncharacterized LOC100506188 miscRNA - - - - 20121230 -9606 100506189 LOC100506189 - - - 9 - uncharacterized LOC100506189 miscRNA - - - - 20121209 -9606 100506190 LOC100506190 - - - 9 - uncharacterized LOC100506190 miscRNA - - - - 20121230 -9606 100506191 LOC100506191 - - - 2 - uncharacterized LOC100506191 unknown - - - - 20121230 -9606 100506195 LOC100506195 - - - 22 - uncharacterized LOC100506195 miscRNA - - - - 20121230 -9606 100506205 TMEM185AP1 - FAM11C|TMEM185AL HGNC:31717 X Xq28 transmembrane protein 185A pseudogene 1 pseudo TMEM185AP1 transmembrane protein 185A pseudogene 1 O - 20121230 -9606 100506206 LOC100506206 - - - 1 - uncharacterized LOC100506206 miscRNA - - - - 20121209 -9606 100506207 LOC100506207 - - - 6 - uncharacterized LOC100506207 miscRNA - - - - 20121230 -9606 100506211 MIR210HG - - HGNC:39524 11 11p15.5 MIR210 host gene (non-protein coding) miscRNA MIR210HG MIR210 host gene (non-protein coding) O - 20121230 -9606 100506215 GCFC1-AS1 - - HGNC:39603 21 - GCFC1 antisense RNA 1 miscRNA GCFC1-AS1 GCFC1 antisense RNA 1 O - 20121230 -9606 100506216 LOC100506216 - - - 2 - uncharacterized LOC100506216 miscRNA - - - - 20121209 -9606 100506217 LOC100506217 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121209 -9606 100506219 LOC100506219 - - - 5 - uncharacterized LOC100506219 miscRNA - - - - 20121209 -9606 100506224 LOC100506224 - - - 6 - translocase of outer mitochondrial membrane 5 homolog (yeast) pseudogene pseudo - - - - 20121230 -9606 100506226 LOC100506226 - - - 12 - uncharacterized LOC100506226 miscRNA - - - - 20121209 -9606 100506227 LOC100506227 - - - 15 - uncharacterized LOC100506227 miscRNA - - - - 20120511 -9606 100506228 LOC100506228 - - - 17 - putative uncharacterized protein encoded by LINC00596-like pseudo - - - - 20121209 -9606 100506229 LOC100506229 - - - 4 - uncharacterized LOC100506229 miscRNA - - - - 20121230 -9606 100506233 LOC100506233 - - - 11 - uncharacterized LOC100506233 miscRNA - - - - 20121230 -9606 100506235 LOC100506235 - - - 2 - uncharacterized LOC100506235 miscRNA - - - - 20121209 -9606 100506236 LOC100506236 - - - 7 - uncharacterized LOC100506236 miscRNA - - - - 20121209 -9606 100506237 NKX2-1-AS1 - - HGNC:40585 14 - NKX2-1 antisense RNA 1 unknown NKX2-1-AS1 NKX2-1 antisense RNA 1 O - 20121230 -9606 100506238 LOC100506238 - - - 11 - uncharacterized LOC100506238 miscRNA - - - - 20121209 -9606 100506241 LOC100506241 - - - 22 - uncharacterized protein FLJ39582-like miscRNA - - - - 20121230 -9606 100506242 LOC100506242 UNQ3061 - - 1 - GLLV3061 protein-coding - - - - 20121017 -9606 100506243 KRBOX1 hCG_2039480 - HGNC:38708|Ensembl:ENSG00000240747|Vega:OTTHUMG00000156448 3 3p22.1 KRAB box domain containing 1 protein-coding KRBOX1 KRAB box domain containing 1 O KRAB domain-containing protein 1 20121230 -9606 100506244 SUMO2P8 - - HGNC:39018 6 - SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 8 pseudo SUMO2P8 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 8 O - 20121230 -9606 100506246 REXO1L9P - - HGNC:44432 8 - REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 9, pseudogene pseudo REXO1L9P REX1, RNA exonuclease 1 homolog (S. cerevisiae)-like 9, pseudogene O - 20121209 -9606 100506248 LOC100506248 - - - 12 - prothymosin alpha-like protein-coding - - - - 20121216 -9606 100506253 LOC100506253 - - - 4 - uncharacterized LOC100506253 miscRNA - - - - 20121209 -9606 100506255 LOC100506255 - - - 10 - uncharacterized LOC100506255 unknown - - - - 20121230 -9606 100506257 LOC100506257 - - - 1 1p21-p13 uncharacterized LOC100506257 unknown - - - - 20121230 -9606 100506258 LOC100506258 - - - 11 - uncharacterized LOC100506258 miscRNA - - - - 20121230 -9606 100506268 LOC100506268 - - - 16 - uncharacterized LOC100506268 miscRNA - - - - 20120726 -9606 100506271 LOC100506271 - - - 22 - uncharacterized LOC100506271 miscRNA - - - - 20121209 -9606 100506272 LOC100506272 - - - 4 - uncharacterized LOC100506272 miscRNA - - - - 20121209 -9606 100506273 LOC100506273 - - - 1 1p36 uncharacterized protein C1orf167-like unknown - - - - 20120726 -9606 100506274 LOC100506274 - - - 2 2p25 uncharacterized LOC100506274 miscRNA - - - - 20121230 -9606 100506275 KRBOX1-AS1 - - HGNC:42942 3 - KRBOX1 antisense RNA 1 miscRNA KRBOX1-AS1 KRBOX1 antisense RNA 1 O - 20121230 -9606 100506276 LOC100506276 - - - 6 - uncharacterized LOC100506276 unknown - - - - 20121230 -9606 100506281 LOC100506281 - - - 16 - uncharacterized LOC100506281 miscRNA - - - - 20120318 -9606 100506282 LOC100506282 - - - 11 - uncharacterized LOC100506282 unknown - - - - 20121230 -9606 100506286 LOC100506286 - - - 2 - uncharacterized LOC100506286 miscRNA - - - - 20121209 -9606 100506288 LOC100506288 - - - 6 - uncharacterized LOC100506288 miscRNA - - - - 20121209 -9606 100506289 LOC100506289 - - - 7 - uncharacterized LOC100506289 miscRNA - - - - 20121209 -9606 100506290 LOC100506290 - - - 14 - uncharacterized LOC100506290 other - - - - 20120726 -9606 100506295 LOC100506295 - - - 17 - uncharacterized LOC100506295 miscRNA - - - - 20121209 -9606 100506299 LOC100506299 - - - 2 - uncharacterized LOC100506299 miscRNA - - - - 20121209 -9606 100506300 LOC100506300 - - - 2 - uncharacterized LOC100506300 miscRNA - - - - 20121209 -9606 100506301 LINC00694 - - HGNC:44570 3 - long intergenic non-protein coding RNA 694 miscRNA LINC00694 long intergenic non-protein coding RNA 694 O - 20121209 -9606 100506302 LOC100506302 - - - 7 - uncharacterized LOC100506302 miscRNA - - - - 20121209 -9606 100506303 LOC100506303 - - - 14 - uncharacterized LOC100506303 miscRNA - - - - 20121209 -9606 100506304 LOC100506304 - - - 9 - uncharacterized LOC100506304 miscRNA - - - - 20121209 -9606 100506305 LOC100506305 - - - 11 - uncharacterized LOC100506305 miscRNA - - - - 20121230 -9606 100506310 LOC100506310 - - Ensembl:ENSG00000215910|Vega:OTTHUMG00000002228 1 1p36 uncharacterized protein C1orf167-like protein-coding - - - - 20121230 -9606 100506311 HOTAIRM1 - HOXA-AS1|HOXA1-AS1|NCRNA00179 HGNC:37117 7 7p15.2 HOXA transcript antisense RNA, myeloid-specific 1 miscRNA HOTAIRM1 HOXA transcript antisense RNA, myeloid-specific 1 O - 20121230 -9606 100506312 LOC100506312 - - - 7 - uncharacterized LOC100506312 miscRNA - - - - 20121209 -9606 100506314 LOC100506314 - - - 12 - uncharacterized LOC100506314 miscRNA - - - - 20121230 -9606 100506317 LOC100506317 - - - 2 - uncharacterized LOC100506317 miscRNA - - - - 20121209 -9606 100506319 LOC100506319 - - - 3 - uncharacterized LOC100506319 miscRNA - - - - 20121209 -9606 100506321 LOC100506321 - - - 14 - uncharacterized LOC100506321 miscRNA - - - - 20121230 -9606 100506325 LOC100506325 - - - 17 - uncharacterized LOC100506325 miscRNA - - - - 20121230 -9606 100506326 LOC100506326 - - - 22 - uncharacterized LOC100506326 unknown - - - - 20120511 -9606 100506328 LOC100506328 - - - 2 2q12.1 uncharacterized LOC100506328 miscRNA - - - - 20121230 -9606 100506329 LOC100506329 - - - 5 - uncharacterized LOC100506329 miscRNA - - - - 20121209 -9606 100506330 WBP1LP2 - - HGNC:43949 7 - WW domain binding protein 1-like pseudogene 2 pseudo WBP1LP2 WW domain binding protein 1-like pseudogene 2 O - 20121230 -9606 100506331 LOC100506331 - - - 9 - uncharacterized LOC100506331 miscRNA - - - - 20121209 -9606 100506333 LOC100506333 - - - 16 - uncharacterized LOC100506333 pseudo - - - - 20121209 -9606 100506334 LINC00649 - - HGNC:44305 21 - long intergenic non-protein coding RNA 649 miscRNA LINC00649 long intergenic non-protein coding RNA 649 O - 20121230 -9606 100506342 LOC100506342 - - - 8 - uncharacterized LOC100506342 unknown - - - - 20121230 -9606 100506343 LOC100506343 - - - 1 - uncharacterized LOC100506343 miscRNA - - - - 20121230 -9606 100506346 LOC100506346 - - - 15 - uncharacterized LOC100506346 miscRNA - - - - 20120511 -9606 100506347 LOC100506347 - - - 16 - uncharacterized LOC100506347 miscRNA - - - - 20121209 -9606 100506348 LOC100506348 - - - 20 - uncharacterized LOC100506348 miscRNA - - - - 20121209 -9606 100506351 LOC100506351 - - - 8 - uncharacterized LOC100506351 miscRNA - - - - 20121209 -9606 100506352 LOC100506352 - - - 11 - uncharacterized LOC100506352 miscRNA - - - - 20121209 -9606 100506354 LOC100506354 - - - 1 - uncharacterized LOC100506354 unknown - - - - 20121017 -9606 100506356 ARSD-AS1 - - HGNC:40085 X - ARSD antisense RNA 1 miscRNA ARSD-AS1 ARSD antisense RNA 1 O - 20121021 -9606 100506357 LOC100506357 - - - 2 - uncharacterized LOC100506357 miscRNA - - - - 20120511 -9606 100506358 LOC100506358 - - - 14 - uncharacterized LOC100506358 unknown - - - - 20121230 -9606 100506365 LOC100506365 - - - 8 - uncharacterized LOC100506365 miscRNA - - - - 20121209 -9606 100506368 LOC100506368 - - - 11 - uncharacterized LOC100506368 miscRNA - - - - 20121230 -9606 100506369 LOC100506369 - - - 21 - uncharacterized LOC100506369 miscRNA - - - - 20121209 -9606 100506371 LOC100506371 - - - 17 - uncharacterized LOC100506371 miscRNA - - - - 20121209 -9606 100506373 LOC100506373 - - - 17 - uncharacterized LOC100506373 miscRNA - - - - 20121209 -9606 100506374 LOC100506374 - - - 19 - uncharacterized LOC100506374 miscRNA - - - - 20121209 -9606 100506376 TTLL10-AS1 - - HGNC:41159 1 1p36.33 TTLL10 antisense RNA 1 unknown TTLL10-AS1 TTLL10 antisense RNA 1 O - 20121230 -9606 100506377 LOC100506377 - - - 3 - uncharacterized LOC100506377 miscRNA - - - - 20121209 -9606 100506379 LOC100506379 - - - 6 - uncharacterized LOC100506379 miscRNA - - - - 20121209 -9606 100506380 LOC100506380 hCG_2040076 - - 7 - uncharacterized LOC100506380 miscRNA - - - - 20121230 -9606 100506384 LOC100506384 - - - 20 - uncharacterized LOC100506384 miscRNA - - - - 20121230 -9606 100506385 LOC100506385 - - - 21 - uncharacterized LOC100506385 miscRNA - - - - 20121230 -9606 100506388 LOC100506388 - - - 17 - uncharacterized LOC100506388 protein-coding - - - uncharacterized protein LOC100506388 20121230 -9606 100506389 LOC100506389 - - - 6 - uncharacterized LOC100506389 miscRNA - - - - 20121209 -9606 100506390 LOC100506390 - - - 9 - RAP1B, member of RAS oncogene family pseudogene pseudo - - - - 20121230 -9606 100506392 LOC100506392 - - - 1 1p13-p12 uncharacterized LOC100506392 miscRNA - - - - 20121230 -9606 100506393 LOC100506393 - - - 12 12p12 uncharacterized LOC100506393 miscRNA - - - - 20121230 -9606 100506394 LOC100506394 - - - 13 - uncharacterized LOC100506394 miscRNA - - - - 20121230 -9606 100506399 LOC100506399 - - - X - FLJ00363 protein unknown - - - - 20120710 -9606 100506400 LOC100506400 - - - 3 - chromosome 11 open reading frame 10 pseudogene pseudo - - - - 20121230 -9606 100506403 LOC100506403 - - - 21 - uncharacterized LOC100506403 miscRNA - - - - 20121230 -9606 100506405 LOC100506405 - - - 2 - uncharacterized LOC100506405 miscRNA - - - - 20121209 -9606 100506406 LOC100506406 - - - 5 - uncharacterized LOC100506406 miscRNA - - - - 20121209 -9606 100506409 ELOVL2-AS1 - - HGNC:44156 6 - ELOVL2 antisense RNA 1 miscRNA ELOVL2-AS1 ELOVL2 antisense RNA 1 O - 20121230 -9606 100506411 LOC100506411 - - - 14 - uncharacterized LOC100506411 miscRNA - - - - 20121209 -9606 100506412 LOC100506412 - - - 14 - uncharacterized LOC100506412 miscRNA - - - - 20121102 -9606 100506413 LOC100506413 - - - 7 - uncharacterized LOC100506413 miscRNA - - - - 20121230 -9606 100506414 LOC100506414 - - - 9 - uncharacterized LOC100506414 miscRNA - - - - 20121209 -9606 100506417 LOC100506417 - - - 16 - uncharacterized LOC100506417 unknown - - - - 20120511 -9606 100506418 LOC100506418 - - - 17 - uncharacterized LOC100506418 miscRNA - - - - 20121209 -9606 100506421 LOC100506421 - - - 2 2q12 uncharacterized LOC100506421 miscRNA - - - - 20121230 -9606 100506422 LOC100506422 - - - 9 9p21.2 putative deoxyuridine 5'-triphosphate nucleotidohydrolase-like protein FLJ16323 protein-coding - - - dUTPase-like protein 20121230 -9606 100506424 UBE2L2 - - HGNC:12487 12 12q12 ubiquitin-conjugating enzyme E2L 2 (pseudogene) pseudo UBE2L2 ubiquitin-conjugating enzyme E2L 2 (pseudogene) O - 20121230 -9606 100506427 LOC100506427 - - - 20 - uncharacterized LOC100506427 pseudo - - - - 20121209 -9606 100506428 CBR3-AS1 - PlncRNA-1 HGNC:43664 21 - CBR3 antisense RNA 1 miscRNA CBR3-AS1 CBR3 antisense RNA 1 O - 20121230 -9606 100506431 LOC100506431 - - - 6 6p25-p24 B2 RNA miscRNA - - - - 20121230 -9606 100506433 LINC00648 - - HGNC:44302 14 - long intergenic non-protein coding RNA 648 miscRNA LINC00648 long intergenic non-protein coding RNA 648 O - 20121230 -9606 100506436 SPAG5-AS1 - - HGNC:41140 17 - SPAG5 antisense RNA 1 miscRNA SPAG5-AS1 SPAG5 antisense RNA 1 O - 20121230 -9606 100506443 ITPKB-IT1 - - HGNC:41349 1 1q42.13 ITPKB intronic transcript 1 (non-protein coding) miscRNA ITPKB-IT1 ITPKB intronic transcript 1 (non-protein coding) O - 20121230 -9606 100506444 LOC100506444 - - - 4 4q11-q12 uncharacterized LOC100506444 miscRNA - - - - 20120511 -9606 100506446 LOC100506446 - - - 14 - uncharacterized LOC100506446 miscRNA - - - - 20121209 -9606 100506447 LOC100506447 - - - 7 - uncharacterized LOC100506447 unknown - - - - 20121102 -9606 100506449 LOC100506449 - - - 9 - uncharacterized LOC100506449 pseudo - - - - 20121209 -9606 100506451 LOC100506451 - - - 12 - uncharacterized LOC100506451 miscRNA - - - - 20121230 -9606 100506453 LOC100506453 - - - X - uncharacterized LOC100506453 miscRNA - - - - 20121209 -9606 100506454 LOC100506454 - - - 22 - uncharacterized LOC100506454 miscRNA - - - - 20121209 -9606 100506457 LOC100506457 - - - 2 - uncharacterized LOC100506457 miscRNA - - - - 20121209 -9606 100506458 LOC100506458 - - - 7 - putative uncharacterized protein LOC65996-like unknown - - - - 20121230 -9606 100506459 LOC100506459 - - - 1 - uncharacterized LOC100506459 unknown - - - - 20121230 -9606 100506462 SRD5A3-AS1 - - HGNC:44138 4 - SRD5A3 antisense RNA 1 miscRNA SRD5A3-AS1 SRD5A3 antisense RNA 1 O - 20121230 -9606 100506465 LOC100506465 - - - 12 - uncharacterized LOC100506465 miscRNA - - - - 20121209 -9606 100506469 LOC100506469 - - - 19 - uncharacterized LOC100506469 miscRNA - - - - 20121230 -9606 100506470 LOC100506470 - - - 20 - uncharacterized LOC100506470 miscRNA - - - - 20121209 -9606 100506472 LOC100506472 - - - 22 - uncharacterized LOC100506472 miscRNA - - - - 20121230 -9606 100506473 LOC100506473 - - - 2 - uncharacterized LOC100506473 miscRNA - - - - 20121209 -9606 100506474 LOC100506474 - - - 2 2p24 uncharacterized LOC100506474 miscRNA - - - - 20121230 -9606 100506475 EGFLAM-AS2 - - HGNC:41168 5 5p13.2 EGFLAM antisense RNA 2 miscRNA EGFLAM-AS2 EGFLAM antisense RNA 2 O - 20121230 -9606 100506476 LOC100506476 - - - 14 - uncharacterized LOC100506476 miscRNA - - - - 20121209 -9606 100506478 LOC100506478 - - - 1 - uncharacterized LOC100506478 miscRNA - - - - 20121209 -9606 100506486 LOC100506486 - - - 4 - uncharacterized LOC100506486 unknown - - - - 20120726 -9606 100506489 LOC100506489 - - - 7 - uncharacterized LOC100506489 miscRNA - - - - 20121209 -9606 100506492 DSCAM-AS1 - M41 HGNC:40197 21 - DSCAM antisense RNA 1 miscRNA DSCAM-AS1 DSCAM antisense RNA 1 O - 20121230 -9606 100506495 LIFR-AS1 - - HGNC:43600 5 - LIFR antisense RNA 1 unknown LIFR-AS1 LIFR antisense RNA 1 O - 20121230 -9606 100506496 LOC100506496 - - - 6 - uncharacterized LOC100506496 miscRNA - - - - 20121209 -9606 100506497 LOC100506497 - - - 7 - uncharacterized LOC100506497 miscRNA - - - - 20121230 -9606 100506498 LOC100506498 - - - 14 - uncharacterized LOC100506498 miscRNA - - - - 20121209 -9606 100506499 LOC100506499 - - - 14 - uncharacterized LOC100506499 miscRNA - - - - 20121230 -9606 100506502 LOC100506502 - - - X - uncharacterized LOC100506502 miscRNA - - - - 20121209 -9606 100506504 LOC100506504 - - - 1 - uncharacterized LOC100506504 protein-coding - - - - 20121230 -9606 100506506 MORC1-AS1 - - HGNC:40377 3 - MORC1 antisense RNA 1 miscRNA MORC1-AS1 MORC1 antisense RNA 1 O - 20121021 -9606 100506513 CATX-1 - - - 2 - uncharacterized LOC100506513 unknown - - - - 20120511 -9606 100506514 LOC100506514 - - - 4 4q12 uncharacterized LOC100506514 protein-coding - - - - 20120622 -9606 100506516 LOC100506516 - - - 7 - uncharacterized LOC100506516 miscRNA - - - - 20121209 -9606 100506518 LOC100506518 - - - 11 - uncharacterized LOC100506518 miscRNA - - - - 20121209 -9606 100506526 LOC100506526 - - - 5 - uncharacterized LOC100506526 miscRNA - - - - 20121209 -9606 100506527 LOC100506527 - - - 7 - uncharacterized LOC100506527 miscRNA - - - - 20121209 -9606 100506530 LOC100506530 - - - 15 - uncharacterized LOC100506530 miscRNA - - - - 20121209 -9606 100506532 LOC100506532 - - - 9 - uncharacterized LOC100506532 miscRNA - - - - 20121209 -9606 100506533 LOC100506533 - - - 1 - putative uncharacterized protein FLJ35883-like protein-coding - - - - 20121209 -9606 100506534 LOC100506534 - - - 7 - uncharacterized LOC100506534 miscRNA - - - - 20121209 -9606 100506538 LOC100506538 - - - 8 - uncharacterized LOC100506538 miscRNA - - - - 20121209 -9606 100506540 SPTY2D1-AS1 - - HGNC:44122 11 - SPTY2D1 antisense RNA 1 miscRNA SPTY2D1-AS1 SPTY2D1 antisense RNA 1 O - 20121230 -9606 100506542 LOC100506542 - - MIM:614978 16 - uncharacterized LOC100506542 miscRNA - - - - 20121230 -9606 100506543 LOC100506543 - - - 1 - uncharacterized LOC100506543 miscRNA - - - - 20121209 -9606 100506544 LOC100506544 - - - 22 - uncharacterized LOC100506544 unknown - - - - 20121230 -9606 100506545 LOC100506545 - - - X - histone H2B type W-T-like protein-coding - - - - 20120318 -9606 100506546 LOC100506546 - - - 1 - uncharacterized LOC100506546 miscRNA - - - - 20121209 -9606 100506548 LOC100506548 - - - 5 - uncharacterized LOC100506548 miscRNA - - - - 20121230 -9606 100506551 LOC100506551 - - - 12 - uncharacterized LOC100506551 miscRNA - - - - 20121230 -9606 100506555 PVRL3-AS1 - - HGNC:40813 3 - PVRL3 antisense RNA 1 miscRNA PVRL3-AS1 PVRL3 antisense RNA 1 O - 20121230 -9606 100506557 LOC100506557 tcag7.1184 - - 7 - uncharacterized LOC100506557 unknown - - - - 20121230 -9606 100506558 LOC100506558 - - - 8 - uncharacterized LOC100506558 miscRNA - - - - 20121209 -9606 100506562 LOC100506562 hCG_2013595 - - 22 22q13.2 protein LLP homolog protein-coding - - - uncharacterized protein LOC100506562 20121230 -9606 100506563 LOC100506563 - - - 2 - uncharacterized LOC100506563 miscRNA - - - - 20121209 -9606 100506564 THEGL - - HGNC:43771|Ensembl:ENSG00000249693|Vega:OTTHUMG00000160770 4 - theg spermatid protein-like protein-coding THEGL theg spermatid protein-like O testicular haploid expressed gene protein-like|theg spermatid-like protein 20121230 -9606 100506569 LOC100506569 - - - 11 11p15.1 serine/arginine-rich splicing factor 3 pseudogene pseudo - - - - 20121230 -9606 100506571 LOC100506571 - - - 1 - uncharacterized LOC100506571 protein-coding - - - - 20121230 -9606 100506574 SNRPGP9 - - HGNC:39328 2 2q13 small nuclear ribonucleoprotein polypeptide G pseudogene 9 pseudo SNRPGP9 small nuclear ribonucleoprotein polypeptide G pseudogene 9 O - 20121230 -9606 100506576 LOC100506576 - - - 14 - ubiquitin-conjugating enzyme E2L 3 pseudogene pseudo - - - - 20121230 -9606 100506578 LOC100506578 - - - 12 - uncharacterized LOC100506578 pseudo - - - - 20121209 -9606 100506581 C16orf95 hCG_1980668 - HGNC:40033|Ensembl:ENSG00000131152|Ensembl:ENSG00000260456|Vega:OTTHUMG00000175680|Vega:OTTHUMG00000175684 16 16q24.2 chromosome 16 open reading frame 95 protein-coding C16orf95 chromosome 16 open reading frame 95 O uncharacterized protein C16orf95 20121230 -9606 100506585 LOC100506585 - - - 7 - uncharacterized LOC100506585 miscRNA - - - - 20121230 -9606 100506595 HMGB1P40 hCG_1991922 - HGNC:39187 11 11p15.1 high mobility group box 1 pseudogene 40 pseudo HMGB1P40 high mobility group box 1 pseudogene 40 O - 20121230 -9606 100506596 LOC100506596 - - - 17 - uncharacterized LOC100506596 unknown - - - - 20121230 -9606 100506599 LOC100506599 - - - 9 - uncharacterized LOC100506599 miscRNA - - - - 20121230 -9606 100506600 MAST4-AS1 - - HGNC:40865 5 - MAST4 antisense RNA 1 miscRNA MAST4-AS1 MAST4 antisense RNA 1 O - 20121021 -9606 100506603 LOC100506603 - - - 14 - uncharacterized LOC100506603 miscRNA - - - - 20120622 -9606 100506606 LOC100506606 - - - 12 - uncharacterized LOC100506606 miscRNA - - - - 20121230 -9606 100506609 LOC100506609 - - - 17 - uncharacterized LOC100506609 miscRNA - - - - 20121209 -9606 100506610 LOC100506610 - - - X - uncharacterized LOC100506610 miscRNA - - - - 20121102 -9606 100506620 LOC100506620 - - - 9 - uncharacterized LOC100506620 miscRNA - - - - 20121209 -9606 100506621 LOC100506621 - - - 3 - uncharacterized LOC100506621 miscRNA - - - - 20120511 -9606 100506622 LINC00540 - - HGNC:43673 13 - long intergenic non-protein coding RNA 540 miscRNA LINC00540 long intergenic non-protein coding RNA 540 O - 20121230 -9606 100506627 DCDC5 hCG_1990724 - HGNC:24799|MIM:612321|Ensembl:ENSG00000170959|Vega:OTTHUMG00000150145 11 11p14.1 doublecortin domain containing 5 protein-coding DCDC5 doublecortin domain containing 5 O doublecortin domain-containing protein 5 20121230 -9606 100506629 LOC100506629 - - - 17 - uncharacterized LOC100506629 miscRNA - - - - 20121209 -9606 100506630 LOC100506630 - - - X - uncharacterized LOC100506630 miscRNA - - - - 20121209 -9606 100506631 LOC100506631 - - - 6 - uncharacterized LOC100506631 miscRNA - - - - 20121209 -9606 100506633 LOC100506633 - - - 8 - ubiquitin-fold modifier 1 pseudogene pseudo - - - - 20121230 -9606 100506634 LOC100506634 - - - 19 - hepatocellular carcinoma-associated antigen HCA25a unknown - - - - 20121209 -9606 100506635 LOC100506635 - - - 1 - uncharacterized LOC100506635 protein-coding - - - - 20120511 -9606 100506636 LOC100506636 - - - 1 - uncharacterized LOC100506636 miscRNA - - - - 20121209 -9606 100506637 PRKAR2A-AS1 - - HGNC:40471 3 - PRKAR2A antisense RNA 1 miscRNA PRKAR2A-AS1 PRKAR2A antisense RNA 1 O - 20121209 -9606 100506639 LOC100506639 - - - 5 5p12 uncharacterized LOC100506639 miscRNA - - - - 20121230 -9606 100506641 LOC100506641 - - - X - uncharacterized LOC100506641 miscRNA - - - - 20121209 -9606 100506643 LOC100506643 - - - 17 - uncharacterized LOC100506643 miscRNA - - - - 20121209 -9606 100506647 LOC100506647 - - - 6 - uncharacterized LOC100506647 miscRNA - - - - 20121209 -9606 100506649 PXN-AS1 - - HGNC:44123 12 - PXN antisense RNA 1 miscRNA PXN-AS1 PXN antisense RNA 1 O - 20121230 -9606 100506650 C17orf112 - - HGNC:42963|Ensembl:ENSG00000227011|Vega:OTTHUMG00000132355 17 - chromosome 17 open reading frame 112 protein-coding C17orf112 chromosome 17 open reading frame 112 O uncharacterized protein C17orf112 20121230 -9606 100506651 LOC100506651 - - - 3 - uncharacterized LOC100506651 miscRNA - - - - 20121209 -9606 100506652 LOC100506652 - - - 8 - uncharacterized LOC100506652 miscRNA - - - - 20121209 -9606 100506654 LOC100506654 - - - X - gem (nuclear organelle) associated protein 7 pseudogene pseudo - - - - 20121230 -9606 100506655 LOC100506655 - - - 16 - uncharacterized LOC100506655 miscRNA - - - - 20121230 -9606 100506658 OCLN hCG_1988850 BLCPMG HGNC:8104|MIM:602876|Ensembl:ENSG00000197822|Vega:OTTHUMG00000099356 5 5q13.1 occludin protein-coding OCLN occludin O tight junction protein occludin 20121230 -9606 100506660 DDX11-AS1 - - HGNC:44176 12 - DDX11 antisense RNA 1 miscRNA DDX11-AS1 DDX11 antisense RNA 1 O - 20121230 -9606 100506661 LOC100506661 - - - X - uncharacterized LOC100506661 miscRNA - - - - 20121209 -9606 100506664 LOC100506664 - - - 7 - uncharacterized LOC100506664 miscRNA - - - - 20121209 -9606 100506667 LOC100506667 - - - 9 - uncharacterized LOC100506667 protein-coding - - - - 20121230 -9606 100506668 LOC100506668 - - - 12 - uncharacterized LOC100506668 miscRNA - - - - 20121230 -9606 100506671 PHKA1-AS1 - - HGNC:40446 X - PHKA1 antisense RNA 1 miscRNA PHKA1-AS1 PHKA1 antisense RNA 1 O - 20121021 -9606 100506672 LOC100506672 - - - 1 - cytochrome c oxidase subunit VIIc pseudogene pseudo - - - - 20121230 -9606 100506673 ZBTB20-AS2 - - HGNC:42421 3 - ZBTB20 antisense RNA 2 miscRNA ZBTB20-AS2 ZBTB20 antisense RNA 2 O - 20121021 -9606 100506674 LOC100506674 - - - 5 - uncharacterized LOC100506674 miscRNA - - - - 20121209 -9606 100506675 LOC100506675 - - - 11 - uncharacterized LOC100506675 miscRNA - - - - 20121209 -9606 100506677 AA06 - AA02|AA04|AA05 - 17 17q12 uncharacterized LOC100506677 pseudo - - - - 20121230 -9606 100506679 LOC100506679 - - - 22 - uncharacterized LOC100506679 miscRNA - - - - 20121230 -9606 100506680 SACS-AS1 - - HGNC:39835 13 13q12 SACS antisense RNA 1 miscRNA SACS-AS1 SACS antisense RNA 1 O - 20121230 -9606 100506681 JARID2-AS1 - - HGNC:40314 6 - JARID2 antisense RNA 1 miscRNA JARID2-AS1 JARID2 antisense RNA 1 O - 20121230 -9606 100506682 LOC100506682 - - - 7 - uncharacterized LOC100506682 miscRNA - - - - 20121209 -9606 100506684 LOC100506684 - - - 12 - uncharacterized LOC100506684 miscRNA - - - - 20121209 -9606 100506685 STMN1P1 - - HGNC:44062 12 - stathmin 1 pseudogene 1 pseudo STMN1P1 stathmin 1 pseudogene 1 O - 20121230 -9606 100506686 IQCH-AS1 - - HGNC:44104 15 15q23 IQCH antisense RNA 1 miscRNA IQCH-AS1 IQCH antisense RNA 1 O - 20121230 -9606 100506688 LOC100506688 - - - 5 - uncharacterized LOC100506688 protein-coding - - - uncharacterized protein LOC100506688 20121230 -9606 100506691 LOC100506691 - - - 12 - uncharacterized LOC100506691 miscRNA - - - - 20121209 -9606 100506695 LOC100506695 - - - 22 - uncharacterized LOC100506695 miscRNA - - - - 20121209 -9606 100506696 KDM5B-AS1 - ncRNA-a2 HGNC:43714 1 - KDM5B antisense RNA 1 (head to head) miscRNA KDM5B-AS1 KDM5B antisense RNA 1 (head to head) O - 20121230 -9606 100506697 LINC00327 - NCRNA00327 HGNC:42009 13 - long intergenic non-protein coding RNA 327 miscRNA LINC00327 long intergenic non-protein coding RNA 327 O - 20121230 -9606 100506699 LOC100506699 - - - 7 - uncharacterized LOC100506699 unknown - - - - 20120710 -9606 100506700 LOC100506700 - - - 14 - uncharacterized LOC100506700 miscRNA - - - - 20121209 -9606 100506705 LOC100506705 - - - 16 - uncharacterized LOC100506705 miscRNA - - - - 20121209 -9606 100506706 LOC100506706 - - - 19 - uncharacterized LOC100506706 pseudo - - - - 20121209 -9606 100506708 LSAMP-AS1 - - HGNC:40350 3 - LSAMP antisense RNA 1 miscRNA LSAMP-AS1 LSAMP antisense RNA 1 O - 20121021 -9606 100506710 LOC100506710 - - - 9 9p13.2 endogenous Bornavirus-like nucleoprotein 2 pseudogene pseudo - - - - 20121230 -9606 100506712 HNRNPA1P5 - - HGNC:15787 15 15q23 heterogeneous nuclear ribonucleoprotein A1 pseudogene 5 pseudo HNRNPA1P5 heterogeneous nuclear ribonucleoprotein A1 pseudogene 5 O - 20121230 -9606 100506713 LOC100506713 - - - 17 - uncharacterized LOC100506713 miscRNA - - - - 20121230 -9606 100506714 LOC100506714 - - - 22 - uncharacterized LOC100506714 miscRNA - - - - 20121230 -9606 100506715 LOC100506715 - - - X - paroxysmal nonkinesigenic dyskinesia pseudogene pseudo - - - - 20121230 -9606 100506718 LOC100506718 - - - 14 - uncharacterized LOC100506718 miscRNA - - - - 20121209 -9606 100506721 MTND1P36 - - HGNC:42086 11 11q22.3 MT-ND1 pseudogene 36 pseudo MTND1P36 MT-ND1 pseudogene 36 O - 20121230 -9606 100506723 TMSB10P1 - - HGNC:41949 2 2q37 thymosin beta 10 pseudogene 1 pseudo TMSB10P1 thymosin beta 10 pseudogene 1 O - 20121230 -9606 100506724 LSAMP-AS4 - - HGNC:40352 3 - LSAMP antisense RNA 4 miscRNA LSAMP-AS4 LSAMP antisense RNA 4 O - 20121209 -9606 100506725 LOC100506725 - - - 7 - uncharacterized LOC100506725 miscRNA - - - - 20121209 -9606 100506730 LOC100506730 - - - 1 1p36 uncharacterized LOC100506730 miscRNA - - - - 20121230 -9606 100506731 LOC100506731 - - - 14 - uncharacterized LOC100506731 miscRNA - - - - 20121209 -9606 100506733 LOC100506733 - - - 10 - uncharacterized LOC100506733 miscRNA - - - - 20121230 -9606 100506734 LOC100506734 - - - 12 - uncharacterized LOC100506734 pseudo - - - - 20121209 -9606 100506735 LOC100506735 - - - 16 - uncharacterized LOC100506735 miscRNA - - - - 20121209 -9606 100506736 SLFN12L - - HGNC:33920|MIM:614956|Ensembl:ENSG00000205045|Vega:OTTHUMG00000167707 17 17q12 schlafen family member 12-like protein-coding SLFN12L schlafen family member 12-like O - 20121230 -9606 100506737 LOC100506737 - - - 22 - uncharacterized LOC100506737 miscRNA - - - - 20121209 -9606 100506742 CASP12 UNQ9415 CASP-12|CASP12P1 HGNC:19004|MIM:608633|Ensembl:ENSG00000204403|Vega:OTTHUMG00000154965 11 11q22.3 caspase 12 (gene/pseudogene) protein-coding CASP12 caspase 12 (gene/pseudogene) O caspase 12 pseudogene 1|inactive caspase-12 20121230 -9606 100506745 LOC100506745 - - - X - protein shisa-5-like protein-coding - - - - 20121209 -9606 100506746 LOC100506746 - - - 4 4q21 uncharacterized LOC100506746 miscRNA - - - - 20121230 -9606 100506747 LOC100506747 - - - 1 - alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase-like protein LOC641515 homolog pseudo - - - - 20121230 -9606 100506748 LOC100506748 - - - 2 - uncharacterized LOC100506748 miscRNA - - - - 20121209 -9606 100506749 AGAP1-IT1 - - HGNC:41427 2 2q37 AGAP1 intronic transcript 1 (non-protein coding) miscRNA AGAP1-IT1 AGAP1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100506753 LOC100506753 - - - 8 - uncharacterized LOC100506753 miscRNA - - - - 20121209 -9606 100506755 MIR497HG - - HGNC:39523 17 17p13.1 mir-497-195 cluster host gene (non-protein coding) miscRNA MIR497HG mir-497-195 cluster host gene (non-protein coding) O - 20121230 -9606 100506757 LINC00629 - - HGNC:44262 X - long intergenic non-protein coding RNA 629 miscRNA LINC00629 long intergenic non-protein coding RNA 629 O - 20121230 -9606 100506759 OR7E37P - OR7E48P|OST193|hg533 HGNC:8410 13 - olfactory receptor, family 7, subfamily E, member 37 pseudogene pseudo OR7E37P olfactory receptor, family 7, subfamily E, member 37 pseudogene O - 20121230 -9606 100506765 IGSF11-AS1 - - HGNC:40777 3 3q13.32 IGSF11 antisense RNA 1 miscRNA IGSF11-AS1 IGSF11 antisense RNA 1 O - 20121230 -9606 100506766 LOC100506766 - - - 5 - uncharacterized LOC100506766 unknown - - - - 20121230 -9606 100506769 LOC100506769 - - - 10 - uncharacterized LOC100506769 miscRNA - - - - 20121209 -9606 100506775 LOC100506775 - - - 1 - uncharacterized LOC100506775 miscRNA - - - - 20121209 -9606 100506776 LOC100506776 - - - 7 7p14 uncharacterized LOC100506776 miscRNA - - - - 20121230 -9606 100506779 BZRAP1-AS1 - - HGNC:44148 17 - BZRAP1 antisense RNA 1 miscRNA BZRAP1-AS1 BZRAP1 antisense RNA 1 O - 20121230 -9606 100506783 HOXD-AS2 - - HGNC:43756 2 2q31.1 HOXD cluster antisense RNA 2 miscRNA HOXD-AS2 HOXD cluster antisense RNA 2 O - 20121230 -9606 100506785 LOC100506785 - - - 10 - poly (ADP-ribose) glycohydrolase pseudogene pseudo - - - - 20121230 -9606 100506787 LOC100506787 - - - 18 - uncharacterized LOC100506787 miscRNA - - - - 20121209 -9606 100506790 LOC100506790 - - - X - uncharacterized LOC100506790 miscRNA - - - - 20121209 -9606 100506791 LOC100506791 - - - 5 - uncharacterized LOC100506791 miscRNA - - - - 20121209 -9606 100506792 LOC100506792 - - - 14 - uncharacterized LOC100506792 miscRNA - - - - 20121209 -9606 100506795 LOC100506795 - - - 1 1q42-q43 uncharacterized LOC100506795 miscRNA - - - - 20121230 -9606 100506797 LOC100506797 - - - 2 - uncharacterized LOC100506797 miscRNA - - - - 20121209 -9606 100506801 LOC100506801 - - - 1 1p36.1 uncharacterized LOC100506801 miscRNA - - - - 20121230 -9606 100506803 LOC100506803 - - - 13 - uncharacterized LOC100506803 pseudo - - - - 20121209 -9606 100506804 LOC100506804 - - - 6 6q14.1 uncharacterized LOC100506804 miscRNA - - - - 20121230 -9606 100506810 LOC100506810 - - - 1 1q42-q43 uncharacterized LOC100506810 miscRNA - - - - 20121230 -9606 100506811 LOC100506811 - - - X - H3 histone, family 3B (H3.3B) pseudogene pseudo - - - - 20121230 -9606 100506813 LOC100506813 - - - 22 - uncharacterized LOC100506813 unknown - - - - 20121230 -9606 100506815 FOXP1-IT1 - - HGNC:41335 3 - FOXP1 intronic transcript 1 (non-protein coding) unknown FOXP1-IT1 FOXP1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100506821 LOC100506821 - - - 18 - uncharacterized LOC100506821 miscRNA - - - - 20121209 -9606 100506826 MYLK-AS1 - - HGNC:42440 3 3q21 MYLK antisense RNA 1 miscRNA MYLK-AS1 MYLK antisense RNA 1 O - 20121230 -9606 100506827 LOC100506827 - - - 4 - uncharacterized LOC100506827 miscRNA - - - - 20121209 -9606 100506834 LOC100506834 - - - 9 - uncharacterized LOC100506834 miscRNA - - - - 20121230 -9606 100506835 LOC100506835 - - - 10 - uncharacterized LOC100506835 miscRNA - - - - 20121230 -9606 100506837 LOC100506837 - - - 18 - uncharacterized LOC100506837 miscRNA - - - - 20121209 -9606 100506840 IQCF4 - - - 3 - IQ motif containing F5 pseudogene pseudo - - - - 20121230 -9606 100506844 LOC100506844 - - - 12 - uncharacterized LOC100506844 miscRNA - - - - 20121230 -9606 100506851 LOC100506851 - - - 6 - uncharacterized LOC100506851 miscRNA - - - - 20121209 -9606 100506853 LOC100506853 - - - 10 - uncharacterized LOC100506853 miscRNA - - - - 20121209 -9606 100506858 LOC100506858 - - - 5 - uncharacterized LOC100506858 miscRNA - - - - 20121209 -9606 100506859 LOC100506859 - - - 13 - serine/threonine-protein kinase Nek5-like protein-coding - - - - 20121209 -9606 100506860 LOC100506860 - - - 7 - uncharacterized LOC100506860 miscRNA - - - - 20121230 -9606 100506861 LOC100506861 - - - 8 - uncharacterized LOC100506861 miscRNA - - - - 20121102 -9606 100506863 CLTC-IT1 - PRO0456 HGNC:41321 17 17q23.2 CLTC intronic transcript 1 (non-protein coding) unknown CLTC-IT1 CLTC intronic transcript 1 (non-protein coding) O - 20121230 -9606 100506865 LOC100506865 - - - 3 - uncharacterized LOC100506865 miscRNA - - - - 20121209 -9606 100506866 TTN-AS1 - - HGNC:44124 2 - TTN antisense RNA 1 miscRNA TTN-AS1 TTN antisense RNA 1 O - 20121230 -9606 100506869 LOC100506869 - - - 12 - uncharacterized LOC100506869 miscRNA - - - - 20121209 -9606 100506870 LOC100506870 - - - 11 - uncharacterized LOC100506870 protein-coding - - - - 20121209 -9606 100506872 RNF7P1 - - HGNC:43425 3 - ring finger protein 7 pseudogene 1 pseudo RNF7P1 ring finger protein 7 pseudogene 1 O - 20121230 -9606 100506874 LOC100506874 - - - 15 - uncharacterized LOC100506874 miscRNA - - - - 20121230 -9606 100506877 LOC100506877 - - - 22 - uncharacterized LOC100506877 miscRNA - - - - 20121209 -9606 100506881 LOC100506881 - - - 7 - uncharacterized LOC100506881 miscRNA - - - - 20121230 -9606 100506882 LOC100506882 - - - 17 - uncharacterized LOC100506882 miscRNA - - - - 20121209 -9606 100506885 LOC100506885 - - - 6 - uncharacterized LOC100506885 miscRNA - - - - 20121209 -9606 100506888 TCEB3CL2 - - HGNC:33511|Ensembl:ENSG00000266996|Vega:OTTHUMG00000180382 18 18q21.1 transcription elongation factor B polypeptide 3C-like 2 protein-coding TCEB3CL2 transcription elongation factor B polypeptide 3C-like 2 O RNA polymerase II transcription factor SIII subunit A3-like-2|eloA3-like-2|elongin-A3-like-2|transcription elongation factor B polypeptide 3C-like-2 20121230 -9606 100506891 LOC100506891 - - - 2 - uncharacterized LOC100506891 miscRNA - - - - 20121209 -9606 100506895 LOC100506895 - - - 7 - uncharacterized LOC100506895 miscRNA - - - - 20121230 -9606 100506897 DAPK1-IT1 - - HGNC:43591 9 - DAPK1 intronic transcript 1 (non-protein coding) miscRNA DAPK1-IT1 DAPK1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100506898 MAGOH2 - - HGNC:30148 17 - mago-nashi homolog 2 (pseudogene) pseudo MAGOH2 mago-nashi homolog 2 (pseudogene) O - 20121230 -9606 100506899 LOC100506899 - - - 1 - uncharacterized LOC100506899 miscRNA - - - - 20121209 -9606 100506901 LOC100506901 - - - X - uncharacterized LOC100506901 miscRNA - - - - 20121209 -9606 100506903 LOC100506903 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121209 -9606 100506906 FLNB-AS1 - - HGNC:40239 3 - FLNB antisense RNA 1 miscRNA FLNB-AS1 FLNB antisense RNA 1 O - 20121021 -9606 100506907 LOC100506907 - - - 3 - uncharacterized LOC100506907 miscRNA - - - - 20121230 -9606 100506908 LOC100506908 - - - 6 - uncharacterized LOC100506908 miscRNA - - - - 20121209 -9606 100506911 LOC100506911 - - - 12 - chromosome 6 open reading frame 35 pseudogene pseudo - - - - 20121230 -9606 100506912 LOC100506912 - - - 9 - uncharacterized LOC100506912 miscRNA - - - - 20121209 -9606 100506915 CHRM3-AS2 - - HGNC:43725 1 - CHRM3 antisense RNA 2 miscRNA CHRM3-AS2 CHRM3 antisense RNA 2 O - 20121230 -9606 100506916 CYP4F9P hCG_36930 - HGNC:39940 19 19p13.12 cytochrome P450, family 4, subfamily F, polypeptide 9, pseudogene pseudo CYP4F9P cytochrome P450, family 4, subfamily F, polypeptide 9, pseudogene O - 20121230 -9606 100506917 LOC100506917 - - - 22 - uncharacterized LOC100506917 miscRNA - - - - 20121209 -9606 100506922 LOC100506922 - - - 2 - uncharacterized LOC100506922 miscRNA - - - - 20121209 -9606 100506923 LOC100506923 - - - 2 - uncharacterized LOC100506923 miscRNA - - - - 20121209 -9606 100506925 HNRNPA1P31 - - HGNC:39549 13 13q31.1 heterogeneous nuclear ribonucleoprotein A1 pseudogene 31 pseudo HNRNPA1P31 heterogeneous nuclear ribonucleoprotein A1 pseudogene 31 O - 20121230 -9606 100506926 LOC100506926 - - - 6 - uncharacterized LOC100506926 miscRNA - - - - 20121209 -9606 100506928 LOC100506928 - - - 16 - uncharacterized LOC100506928 unknown - - - - 20121230 -9606 100506929 LOC100506929 - - - 1 - uncharacterized LOC100506929 miscRNA - - - - 20121209 -9606 100506930 LINC00665 - - HGNC:44323 19 19q13.12 long intergenic non-protein coding RNA 665 miscRNA LINC00665 long intergenic non-protein coding RNA 665 O - 20121230 -9606 100506934 LOC100506934 - - - 2 - uncharacterized LOC100506934 miscRNA - - - - 20121209 -9606 100506937 LOC100506937 - - - 7 - uncharacterized LOC100506937 miscRNA - - - - 20121209 -9606 100506938 S100A11P4 - - HGNC:37841 12 - S100 calcium binding protein A11 pseudogene 4 pseudo S100A11P4 S100 calcium binding protein A11 pseudogene 4 O - 20121230 -9606 100506939 LOC100506939 - - - 10 - uncharacterized LOC100506939 miscRNA - - - - 20121230 -9606 100506943 LOC100506943 - - - 16 - uncharacterized LOC100506943 pseudo - - - - 20121209 -9606 100506944 LOC100506944 - - - 3 - uncharacterized LOC100506944 miscRNA - - - - 20121209 -9606 100506946 LOC100506946 - - - 3 - peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 100506947 LOC100506947 - - - 6 - uncharacterized LOC100506947 other - - - - 20120710 -9606 100506948 LOC100506948 - - - 15 - uncharacterized LOC100506948 miscRNA - - - - 20121209 -9606 100506953 FABP7P1 - - HGNC:41951 1 1q44 fatty acid binding protein 7, brain pseudogene 1 pseudo FABP7P1 fatty acid binding protein 7, brain pseudogene 1 O - 20121230 -9606 100506955 LOC100506955 - - - X - chromosome X open reading frame 61 pseudogene pseudo - - - - 20121230 -9606 100506963 LOC100506963 - - - 1 - uncharacterized LOC100506963 miscRNA - - - - 20121230 -9606 100506965 LOC100506965 - - - 15 - uncharacterized LOC100506965 miscRNA - - - - 20120726 -9606 100506971 LOC100506971 - - - 13 - uncharacterized LOC100506971 protein-coding - - - - 20120318 -9606 100506972 LOC100506972 - - - 14 - uncharacterized protein C14orf113-like protein-coding - - - - 20121230 -9606 100506974 LOC100506974 - - - 17 - uncharacterized LOC100506974 miscRNA - - - - 20121209 -9606 100506978 LOC100506978 - - - 12 - uncharacterized LOC100506978 miscRNA - - - - 20121209 -9606 100506985 LOC100506985 - - - 1 - uncharacterized LOC100506985 miscRNA - - - - 20121017 -9606 100506990 LOC100506990 - - - 8 8p23.1 uncharacterized LOC100506990 miscRNA - - - - 20121230 -9606 100506993 LOC100506993 - - - 2 - uncharacterized LOC100506993 miscRNA - - - - 20121209 -9606 100506994 PTPRG-AS1 - - HGNC:44638 3 - PTPRG antisense RNA 1 miscRNA PTPRG-AS1 PTPRG antisense RNA 1 O - 20121230 -9606 100506997 LOC100506997 - - - 13 - uncharacterized LOC100506997 miscRNA - - - - 20121209 -9606 100506999 LOC100506999 - - - 14 - uncharacterized LOC100506999 miscRNA - - - - 20121209 -9606 100507002 LOC100507002 - - - 17 - uncharacterized LOC100507002 miscRNA - - - - 20121209 -9606 100507003 LOC100507003 - - - 19 19q13.33 uncharacterized LOC100507003 protein-coding - - - uncharacterized protein LOC100507003 20121230 -9606 100507006 LOC100507006 - - - 2 - uncharacterized LOC100507006 miscRNA - - - - 20121230 -9606 100507008 LOC100507008 - - - 10 - uncharacterized LOC100507008 miscRNA - - - - 20121209 -9606 100507009 LOC100507009 - - - 9 - uncharacterized LOC100507009 miscRNA - - - - 20121209 -9606 100507012 LOC100507012 - - - 4 - uncharacterized LOC100507012 miscRNA - - - - 20121209 -9606 100507018 LOC100507018 - - - 8 - uncharacterized LOC100507018 miscRNA - - - - 20121209 -9606 100507022 LOC100507022 - - - 19 - FLJ00291 protein unknown - - - - 20120710 -9606 100507024 LOC100507024 - - - 6 - uncharacterized LOC100507024 miscRNA - - - - 20121209 -9606 100507027 M1 - - - 10 - uncharacterized LOC100507027 miscRNA - - - - 20121230 -9606 100507032 LOC100507032 - - - 3 3q21-q22 uncharacterized LOC100507032 miscRNA - - - - 20121230 -9606 100507033 LOC100507033 - - - 3 - uncharacterized LOC100507033 miscRNA - - - - 20121209 -9606 100507034 PITRM1-AS1 - - HGNC:44675 10 - PITRM1 antisense RNA 1 miscRNA PITRM1-AS1 PITRM1 antisense RNA 1 O - 20121230 -9606 100507040 LINC00427 - - HGNC:42762 13 - long intergenic non-protein coding RNA 427 miscRNA LINC00427 long intergenic non-protein coding RNA 427 O - 20121209 -9606 100507043 LINC00617 - - HGNC:44088 14 - long intergenic non-protein coding RNA 617 miscRNA LINC00617 long intergenic non-protein coding RNA 617 O - 20121230 -9606 100507044 NBPF5 RP11-242D10.1 DKFZp434D177-like HGNC:24491|MIM:613995 1 1p13.3 neuroblastoma breakpoint family, member 5 pseudo NBPF5 neuroblastoma breakpoint family, member 5 O - 20121230 -9606 100507046 LOC100507046 - - - 15 - heat shock 10kDa protein 1 (chaperonin 10) pseudogene pseudo - - - - 20121230 -9606 100507050 TPBGL - - HGNC:44159 11 11q13.4 trophoblast glycoprotein-like protein-coding TPBGL trophoblast glycoprotein-like O - 20121230 -9606 100507053 LOC100507053 - - - 4 - uncharacterized LOC100507053 miscRNA - - - - 20121230 -9606 100507054 LOC100507054 - - - 4 - uncharacterized LOC100507054 miscRNA - - - - 20121209 -9606 100507055 LRCOL1 - - HGNC:44160 12 12q24.33 leucine rich colipase-like 1 protein-coding LRCOL1 leucine rich colipase-like 1 O leucine-rich colipase-like protein 1 20121230 -9606 100507056 LOC100507056 - - - 8 - uncharacterized LOC100507056 miscRNA - - - - 20121209 -9606 100507057 MFI2-AS1 - - HGNC:40373 3 - MFI2 antisense RNA 1 miscRNA MFI2-AS1 MFI2 antisense RNA 1 O - 20121230 -9606 100507058 LOC100507058 - - - 10 - uncharacterized LOC100507058 miscRNA - - - - 20121209 -9606 100507059 LINC00703 - - HGNC:44677 10 - long intergenic non-protein coding RNA 703 miscRNA LINC00703 long intergenic non-protein coding RNA 703 O - 20121207 -9606 100507062 PSMD6-AS2 - - HGNC:44125 3 3p14 PSMD6 antisense RNA 2 miscRNA PSMD6-AS2 PSMD6 antisense RNA 2 O - 20121230 -9606 100507064 TEX26-AS1 - LINC00447 HGNC:42784 13 - TEX26 antisense RNA 1 miscRNA TEX26-AS1 TEX26 antisense RNA 1 O - 20121230 -9606 100507065 LOC100507065 - - - 12 - uncharacterized LOC100507065 miscRNA - - - - 20121209 -9606 100507066 LOC100507066 - - - 12 - uncharacterized LOC100507066 miscRNA - - - - 20121230 -9606 100507067 GOLGA8UP - - HGNC:44411 15 - golgin A8 family, member U, pseudogene pseudo GOLGA8UP golgin A8 family, member U, pseudogene O - 20121102 -9606 100507071 LOC100507071 - - - 8 - uncharacterized LOC100507071 miscRNA - - - - 20121209 -9606 100507073 LOC100507073 - - - 2 - uncharacterized LOC100507073 miscRNA - - - - 20121209 -9606 100507077 LOC100507077 - - - 11 - uncharacterized LOC100507077 miscRNA - - - - 20121209 -9606 100507079 LOC100507079 - - - 15 - uncharacterized LOC100507079 unknown - - - - 20121230 -9606 100507082 ADAMTS9-AS1 - - HGNC:40625 3 - ADAMTS9 antisense RNA 1 miscRNA ADAMTS9-AS1 ADAMTS9 antisense RNA 1 O - 20121021 -9606 100507083 LOC100507083 - - - 3 - ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) pseudogene pseudo - - - - 20121230 -9606 100507086 DLG1-AS1 - - HGNC:44154 3 - DLG1 antisense RNA 1 miscRNA DLG1-AS1 DLG1 antisense RNA 1 O - 20121230 -9606 100507091 LOC100507091 - - - 12 - uncharacterized LOC100507091 miscRNA - - - - 20121230 -9606 100507092 LOC100507092 - - - 16 - uncharacterized LOC100507092 miscRNA - - - - 20121209 -9606 100507096 GIMD1 - - HGNC:44141 4 4q24 GIMAP family P-loop NTPase domain containing 1 protein-coding GIMD1 GIMAP family P-loop NTPase domain containing 1 O GIMAP family P-loop NTPase domain-containing protein 1|GTPase IMAP family member GIMD1 20121230 -9606 100507097 ATP5G2P3 - - HGNC:42187 2 2q33.1 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) pseudogene 3 pseudo ATP5G2P3 ATP synthase, H+ transporting, mitochondrial Fo complex, subunit C2 (subunit 9) pseudogene 3 O - 20121230 -9606 100507098 ADAMTS9-AS2 - - HGNC:42435 3 - ADAMTS9 antisense RNA 2 miscRNA ADAMTS9-AS2 ADAMTS9 antisense RNA 2 O - 20121230 -9606 100507099 FRY-AS1 - - HGNC:39725 13 - FRY antisense RNA 1 miscRNA FRY-AS1 FRY antisense RNA 1 O - 20121230 -9606 100507101 LOC100507101 - - - 8 - uncharacterized LOC100507101 miscRNA - - - - 20121209 -9606 100507102 LOC100507102 - - - 10 10q21 COX20 Cox2 chaperone homolog (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100507103 LOC100507103 - - - 9 - uncharacterized LOC100507103 miscRNA - - - - 20121209 -9606 100507108 LOC100507108 - - - 14 - uncharacterized LOC100507108 miscRNA - - - - 20121209 -9606 100507109 LOC100507109 - - - 11 - uncharacterized LOC100507109 miscRNA - - - - 20121209 -9606 100507113 ZNF638-IT1 - - HGNC:41434 2 2p13.1 ZNF638 intronic transcript 1 (non-protein coding) unknown ZNF638-IT1 ZNF638 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100507114 LINC00445 - - HGNC:42782 13 - long intergenic non-protein coding RNA 445 miscRNA LINC00445 long intergenic non-protein coding RNA 445 O - 20121209 -9606 100507117 LOC100507117 - - - 8 - uncharacterized LOC100507117 miscRNA - - - - 20121230 -9606 100507118 LOC100507118 - - - 15 - uncharacterized LOC100507118 miscRNA - - - - 20121230 -9606 100507124 HMGN1P25 - - HGNC:39369 14 14q32 high mobility group nucleosome binding domain 1 pseudogene 25 pseudo HMGN1P25 high mobility group nucleosome binding domain 1 pseudogene 25 O - 20121230 -9606 100507125 ERHP1 - - HGNC:41916 7 7q34 enhancer of rudimentary homolog (Drosophila) pseudogene 1 pseudo ERHP1 enhancer of rudimentary homolog (Drosophila) pseudogene 1 O - 20121230 -9606 100507127 LINC00707 - - HGNC:44691 10 - long intergenic non-protein coding RNA 707 miscRNA LINC00707 long intergenic non-protein coding RNA 707 O - 20121230 -9606 100507131 LOC100507131 - - - 17 - uncharacterized LOC100507131 unknown - - - - 20121230 -9606 100507134 LOC100507134 - - - 3 - uncharacterized LOC100507134 miscRNA - - - - 20121209 -9606 100507135 SPG20OS RP11-251J8.3 C13orf43 HGNC:39933 13 13q13.3 SPG20 opposite strand miscRNA SPG20OS SPG20 opposite strand O - 20121230 -9606 100507136 LOC100507136 - - - 6 - uncharacterized LOC100507136 miscRNA - - - - 20121209 -9606 100507137 FP2234 - - - 9 - uncharacterized LOC100507137 unknown - - - - 20121230 -9606 100507138 LOC100507138 - - - 7 - putative uncharacterized protein FLJ44672-like pseudo - - - - 20121209 -9606 100507140 LOC100507140 - - - 2 2q33 uncharacterized LOC100507140 miscRNA - - - - 20121230 -9606 100507143 LINC00708 - - HGNC:44694 10 - long intergenic non-protein coding RNA 708 miscRNA LINC00708 long intergenic non-protein coding RNA 708 O - 20121208 -9606 100507144 LOC100507144 - - - 11 - uncharacterized LOC100507144 miscRNA - - - - 20121209 -9606 100507145 LOC100507145 - - - 11 - uncharacterized LOC100507145 miscRNA - - - - 20121209 -9606 100507150 LOC100507150 - - - 4 - uncharacterized LOC100507150 miscRNA - - - - 20121209 -9606 100507156 LOC100507156 - - - 8 - uncharacterized LOC100507156 miscRNA - - - - 20121230 -9606 100507157 MTND1P30 - - HGNC:42079 X Xp11.21 MT-ND1 pseudogene 30 pseudo MTND1P30 MT-ND1 pseudogene 30 O - 20121230 -9606 100507160 LOC100507160 - - - 4 - uncharacterized LOC100507160 miscRNA - - - - 20121209 -9606 100507161 LOC100507161 - - - 5 - putative uncharacterized protein NCRNA00269-like protein-coding - - - - 20121230 -9606 100507162 LOC100507162 - - - 8 - uncharacterized LOC100507162 miscRNA - - - - 20121209 -9606 100507163 LINC00709 - - HGNC:44700 10 - long intergenic non-protein coding RNA 709 miscRNA LINC00709 long intergenic non-protein coding RNA 709 O - 20121207 -9606 100507165 LOC100507165 - - - 11 - uncharacterized LOC100507165 miscRNA - - - - 20121209 -9606 100507166 LOC100507166 - - - 15 - uncharacterized LOC100507166 miscRNA - - - - 20121209 -9606 100507170 CT47A12 - CT47|CT47.12 HGNC:33292|Ensembl:ENSG00000226685 X Xq24 cancer/testis antigen family 47, member A12 protein-coding CT47A12 cancer/testis antigen family 47, member A12 O cancer/testis CT47 family, member 12|cancer/testis antigen 47|cancer/testis antigen 47A|cancer/testis antigen 47A family member 20121209 -9606 100507171 BOLA3-AS1 - - HGNC:42922 2 - BOLA3 antisense RNA 1 (head to head) miscRNA BOLA3-AS1 BOLA3 antisense RNA 1 (head to head) O - 20121230 -9606 100507172 LOC100507172 - - - 6 - uncharacterized LOC100507172 protein-coding - - - - 20121209 -9606 100507173 LOC100507173 - - - 6 - uncharacterized LOC100507173 miscRNA - - - - 20121230 -9606 100507175 LOC100507175 - - - 12 - uncharacterized LOC100507175 miscRNA - - - - 20121230 -9606 100507178 SLFNL1-AS1 - - HGNC:44126 1 1p34 SLFNL1 antisense RNA 1 miscRNA SLFNL1-AS1 SLFNL1 antisense RNA 1 O - 20121230 -9606 100507191 LOC100507191 - - - 17 17q25.1 uncharacterized LOC100507191 unknown - - - - 20121230 -9606 100507194 LOC100507194 - - - 6 - uncharacterized LOC100507194 miscRNA - - - - 20121230 -9606 100507195 LOC100507195 - - - 12 - uncharacterized LOC100507195 miscRNA - - - - 20121209 -9606 100507199 LOC100507199 - - - X - uncharacterized LOC100507199 miscRNA - - - - 20121209 -9606 100507201 LOC100507201 - - - 2 - uncharacterized LOC100507201 miscRNA - - - - 20121209 -9606 100507203 SMLR1 - - HGNC:44670|Ensembl:ENSG00000256162|Vega:OTTHUMG00000176259 6 6q23.1 small leucine-rich protein 1 protein-coding SMLR1 small leucine-rich protein 1 O uncharacterized protein LOC100507203 20121230 -9606 100507205 LOC100507205 - - - 11 - uncharacterized LOC100507205 miscRNA - - - - 20121230 -9606 100507206 LOC100507206 - - - 12 - uncharacterized LOC100507206 miscRNA - - - - 20121230 -9606 100507207 LOC100507207 - - - 8 - uncharacterized LOC100507207 miscRNA - - - - 20121209 -9606 100507209 LOC100507209 - - - 4 - uncharacterized LOC100507209 unknown - - - - 20121230 -9606 100507210 LOC100507210 - - - 3 - uncharacterized LOC100507210 miscRNA - - - - 20121209 -9606 100507213 USP6NL-IT1 - - HGNC:44704 10 - USP6NL intronic transcript 1 (non-protein coding) miscRNA USP6NL-IT1 USP6NL intronic transcript 1 (non-protein coding) O - 20121208 -9606 100507217 LOC100507217 - - - 15 - uncharacterized LOC100507217 miscRNA - - - - 20121230 -9606 100507218 RNF157-AS1 - - HGNC:44127 17 - RNF157 antisense RNA 1 miscRNA RNF157-AS1 RNF157 antisense RNA 1 O - 20121230 -9606 100507221 LOC100507221 - - - 16 - uncharacterized LOC100507221 miscRNA - - - - 20121209 -9606 100507222 LOC100507222 - - - 8 - uncharacterized LOC100507222 miscRNA - - - - 20121209 -9606 100507223 LOC100507223 - - - 3 - uncharacterized LOC100507223 pseudo - - - - 20121209 -9606 100507224 LOC100507224 - - - 3 - uncharacterized LOC100507224 miscRNA - - - - 20121209 -9606 100507231 LOC100507231 - - - 11 - peptidylprolyl isomerase A (cyclophilin A) pseudogene pseudo - - - - 20121230 -9606 100507236 LOC100507236 - - - 8 - uncharacterized LOC100507236 unknown - - - - 20120710 -9606 100507240 VWA8-AS1 - - HGNC:44270 13 - VWA8 antisense RNA 1 (head to head) miscRNA VWA8-AS1 VWA8 antisense RNA 1 (head to head) O - 20121230 -9606 100507242 LOC100507242 - - - 14 - uncharacterized LOC100507242 miscRNA - - - - 20121209 -9606 100507244 LOC100507244 - - - 9 - uncharacterized LOC100507244 miscRNA - - - - 20121230 -9606 100507246 SNHG16 - - HGNC:44352 17 - small nucleolar RNA host gene 16 (non-protein coding) miscRNA SNHG16 small nucleolar RNA host gene 16 (non-protein coding) O - 20121230 -9606 100507249 C8orf17 hCG_1767091 MOST-1 HGNC:17737 8 8q24.3 chromosome 8 open reading frame 17 other C8orf17 chromosome 8 open reading frame 17 O - 20121021 -9606 100507250 LOC100507250 - - - 12 - uncharacterized LOC100507250 miscRNA - - - - 20121230 -9606 100507251 CICP6 - - HGNC:37755 3 - capicua homolog (Drosophila) pseudogene 6 pseudo CICP6 capicua homolog (Drosophila) pseudogene 6 O - 20121209 -9606 100507253 SMIM2-AS1 - C13orf44-AS1|C3orf81-AS1 HGNC:42674 13 - SMIM2 antisense RNA 1 miscRNA SMIM2-AS1 SMIM2 antisense RNA 1 O - 20121021 -9606 100507254 LOC100507254 - - - 6 - uncharacterized LOC100507254 miscRNA - - - - 20121230 -9606 100507257 MEG9 - LINC00584 HGNC:43874 14 - maternally expressed 9 (non-protein coding) miscRNA MEG9 maternally expressed 9 (non-protein coding) O - 20121230 -9606 100507258 LOC100507258 - - - 8 - uncharacterized LOC100507258 miscRNA - - - - 20121209 -9606 100507261 LOC100507261 - - - 11 - uncharacterized LOC100507261 miscRNA - - - - 20121209 -9606 100507266 LOC100507266 - - - 4 - uncharacterized LOC100507266 miscRNA - - - - 20121230 -9606 100507267 LOC100507267 - - - 5 - uncharacterized LOC100507267 miscRNA - - - - 20121209 -9606 100507274 LOC100507274 - - - 3 - uncharacterized LOC100507274 miscRNA - - - - 20121209 -9606 100507277 LOC100507277 - - - 14 - uncharacterized LOC100507277 miscRNA - - - - 20121209 -9606 100507281 LOC100507281 - - - 10 - uncharacterized LOC100507281 unknown - - - - 20120710 -9606 100507283 LOC100507283 - - - 11 - uncharacterized LOC100507283 miscRNA - - - - 20121230 -9606 100507284 LOC100507284 - - - 9 - uncharacterized LOC100507284 miscRNA - - - - 20121209 -9606 100507288 LOC100507288 - - - 15 - uncharacterized LOC100507288 miscRNA - - - - 20121209 -9606 100507290 ZNF865 - - HGNC:38705|Ensembl:ENSG00000261221|Vega:OTTHUMG00000177108 19 19q13.42 zinc finger protein 865 protein-coding ZNF865 zinc finger protein 865 O - 20121230 -9606 100507291 LOC100507291 - - - 3 - uncharacterized LOC100507291 miscRNA - - - - 20121209 -9606 100507297 TMEM44-AS1 - - HGNC:44272 3 3q29 TMEM44 antisense RNA 1 miscRNA TMEM44-AS1 TMEM44 antisense RNA 1 O - 20121230 -9606 100507299 LOC100507299 - - - 9 - uncharacterized LOC100507299 miscRNA - - - - 20121230 -9606 100507300 LOC100507300 - - - 11 - uncharacterized LOC100507300 miscRNA - - - - 20121230 -9606 100507303 LOC100507303 - - - 16 - uncharacterized LOC100507303 miscRNA - - - - 20121209 -9606 100507306 LOC100507306 - - - 4 - uncharacterized LOC100507306 miscRNA - - - - 20121209 -9606 100507308 LOC100507308 - - - 6 6q23 uncharacterized LOC100507308 miscRNA - - - - 20121230 -9606 100507311 LOC100507311 - - - 15 - uncharacterized LOC100507311 unknown - - - - 20121230 -9606 100507312 LOC100507312 - - - 7 - uncharacterized LOC100507312 miscRNA - - - - 20121209 -9606 100507316 LOC100507316 - - - 8 - uncharacterized LOC100507316 miscRNA - - - - 20121209 -9606 100507319 LOC100507319 - - - 9 - uncharacterized LOC100507319 miscRNA - - - - 20121209 -9606 100507321 ERVK13-1 - - HGNC:27548 16 16p13.3 endogenous retrovirus group K13, member 1 miscRNA ERVK13-1 endogenous retrovirus group K13, member 1 O - 20121230 -9606 100507324 LOC100507324 - - - 12 - uncharacterized LOC100507324 pseudo - - - - 20121209 -9606 100507325 LOC100507325 - - - 15 - uncharacterized LOC100507325 miscRNA - - - - 20121209 -9606 100507326 LOC100507326 - - - X - extracellular matrix protein 2-like protein-coding - - - - 20120511 -9606 100507330 LOC100507330 - - - 12 - uncharacterized LOC100507330 unknown - - - - 20121230 -9606 100507331 LOC100507331 - - - 10 - uncharacterized LOC100507331 miscRNA - - - - 20121230 -9606 100507334 LOC100507334 - - - 2 - two pore channel 3 pseudogene pseudo - - - - 20121230 -9606 100507336 LOC100507336 - - - 6 - uncharacterized LOC100507336 miscRNA - - - - 20121102 -9606 100507341 SMIM18 - - HGNC:42973|Ensembl:ENSG00000253457|Vega:OTTHUMG00000163839 8 - small integral membrane protein 18 protein-coding SMIM18 small integral membrane protein 18 O uncharacterized protein LOC100507341 20121230 -9606 100507342 LOC100507342 - - - 19 - uncharacterized LOC100507342 miscRNA - - - - 20121209 -9606 100507346 LOC100507346 - - - 9 - uncharacterized LOC100507346 miscRNA - - - - 20121230 -9606 100507347 VIM-AS1 - - HGNC:44879 10 - VIM antisense RNA 1 miscRNA VIM-AS1 VIM antisense RNA 1 O - 20121214 -9606 100507351 LOC100507351 - - - 17 - uncharacterized LOC100507351 miscRNA - - - - 20121230 -9606 100507353 LOC100507353 - - - 19 - uncharacterized LOC100507353 miscRNA - - - - 20121209 -9606 100507354 CDC42P5 - - HGNC:44429 5 - cell division cycle 42 pseudogene 5 pseudo CDC42P5 cell division cycle 42 pseudogene 5 O - 20121230 -9606 100507357 LOC100507357 - - - 16 - 60S ribosomal protein L23a-like pseudo - - - - 20121209 -9606 100507361 PCNPP5 - - HGNC:41977 13 13q14.2 PEST containing nuclear protein pseudogene 5 pseudo PCNPP5 PEST containing nuclear protein pseudogene 5 O - 20121230 -9606 100507362 LOC100507362 - - - 6 6p21.33 uncharacterized LOC100507362 miscRNA - - - - 20121230 -9606 100507363 LOC100507363 - - - 12 - uncharacterized LOC100507363 miscRNA - - - - 20121209 -9606 100507364 LOC100507364 - - - 9 - uncharacterized LOC100507364 miscRNA - - - - 20121209 -9606 100507367 LOC100507367 - - - 6 - uncharacterized LOC100507367 miscRNA - - - - 20121209 -9606 100507369 LOC100507369 - - - 7 - putative uncharacterized protein encoded by LINC00174-like protein-coding - - - - 20121209 -9606 100507373 LOC100507373 - - - 19 - uncharacterized LOC100507373 miscRNA - - - - 20121230 -9606 100507376 LOC100507376 - - - 4 - uncharacterized LOC100507376 miscRNA - - - - 20121209 -9606 100507377 LOC100507377 - - - 12 - uncharacterized LOC100507377 miscRNA - - - - 20121230 -9606 100507378 LOC100507378 - - - 16 - uncharacterized LOC100507378 miscRNA - - - - 20121209 -9606 100507379 LOC100507379 - - - 8 - RNA binding motif protein 4 pseudogene pseudo - - - - 20121230 -9606 100507381 KCNQ5-IT1 - - HGNC:41354 6 - KCNQ5 intronic transcript 1 (non-protein coding) miscRNA KCNQ5-IT1 KCNQ5 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100507384 LOC100507384 - - - 11 - uncharacterized LOC100507384 miscRNA - - - - 20121230 -9606 100507386 LOC100507386 - - - 17 - uncharacterized LOC100507386 unknown - - - - 20120710 -9606 100507387 LOC100507387 - - - 5 - uncharacterized LOC100507387 miscRNA - - - - 20121230 -9606 100507388 LOC100507388 - - - 4 - uncharacterized LOC100507388 pseudo - - - - 20121209 -9606 100507389 LOC100507389 - - - 3 3q23 uncharacterized LOC100507389 miscRNA - - - - 20121230 -9606 100507391 LOC100507391 - - - 3 3q29 uncharacterized LOC100507391 miscRNA - - - - 20121230 -9606 100507392 FLI1-AS1 - - HGNC:44177 11 - FLI1 antisense RNA 1 miscRNA FLI1-AS1 FLI1 antisense RNA 1 O - 20121230 -9606 100507393 LOC100507393 - - - 7 - putative uncharacterized protein FLJ44672-like pseudo - - - - 20121230 -9606 100507395 LOC100507395 - - - Un - uncharacterized LOC100507395 miscRNA - - - - 20121209 -9606 100507397 LOC100507397 - - - 5 - uncharacterized LOC100507397 miscRNA - - - - 20120511 -9606 100507398 INTS6-AS1 - - HGNC:42691 13 - INTS6 antisense RNA 1 miscRNA INTS6-AS1 INTS6 antisense RNA 1 O - 20121230 -9606 100507399 HCG8 UNQ6501 HCGVIII|HCGVIII-1 HGNC:21242 6 6p21.3 HLA complex group 8 unknown HCG8 HLA complex group 8 O - 20121230 -9606 100507401 LRP4-AS1 - - HGNC:44128 11 - LRP4 antisense RNA 1 miscRNA LRP4-AS1 LRP4 antisense RNA 1 O - 20121230 -9606 100507403 LOC100507403 - - - 8 - uncharacterized LOC100507403 miscRNA - - - - 20121209 -9606 100507404 TMLHE-AS1 - - HGNC:44261 X - TMLHE antisense RNA 1 miscRNA TMLHE-AS1 TMLHE antisense RNA 1 O - 20121230 -9606 100507406 LOC100507406 - - - 6 - uncharacterized LOC100507406 miscRNA - - - - 20121209 -9606 100507410 LOC100507410 - - - 17 - uncharacterized LOC100507410 miscRNA - - - - 20121230 -9606 100507412 LOC100507412 - - - 22 - uncharacterized LOC100507412 miscRNA - - - - 20121230 -9606 100507415 FAM220CP - - HGNC:43640 9 - putative SIPAR-like protein C9orf51-like pseudo FAM220CP family with sequence similarity 220, member C, pseudogene O - 20121209 -9606 100507417 LOC100507417 - - - 11 - uncharacterized LOC100507417 miscRNA - - - - 20121209 -9606 100507419 LOC100507419 - - - 16 - uncharacterized LOC100507419 miscRNA - - - - 20121230 -9606 100507420 LOC100507420 - - - 8 - uncharacterized LOC100507420 miscRNA - - - - 20121209 -9606 100507421 TMEM178B - - HGNC:44112|Ensembl:ENSG00000261115|Vega:OTTHUMG00000172737 7 7q34 transmembrane protein 178B protein-coding TMEM178B transmembrane protein 178B O - 20121230 -9606 100507422 LOC100507422 - - - 8 - ubiquitin-conjugating enzyme E2N pseudogene pseudo - - - - 20121230 -9606 100507423 MKNK1-AS1 - - HGNC:44129 1 1p33 MKNK1 antisense RNA 1 miscRNA MKNK1-AS1 MKNK1 antisense RNA 1 O - 20121230 -9606 100507424 LOC100507424 - - - 12 - uncharacterized LOC100507424 miscRNA - - - - 20121230 -9606 100507425 LOC100507425 - - - 17 - uncharacterized LOC100507425 miscRNA - - - - 20121209 -9606 100507426 LOC100507426 - - - X|Y X;Y uncharacterized LOC100507426 pseudo - - - - 20121209 -9606 100507427 LOC100507427 - - - 5 - uncharacterized LOC100507427 miscRNA - - - - 20121209 -9606 100507428 LINC00458 - - HGNC:42807 13 - long intergenic non-protein coding RNA 458 miscRNA LINC00458 long intergenic non-protein coding RNA 458 O - 20121209 -9606 100507431 LOC100507431 hCG_2032978 - - 11 11q24.3 uncharacterized LOC100507431 unknown - - - - 20121230 -9606 100507433 LOC100507433 - - - 19 - uncharacterized LOC100507433 miscRNA - - - - 20121230 -9606 100507435 LOC100507435 - - - 8 - uncharacterized LOC100507435 miscRNA - - - - 20121230 -9606 100507436 MICA DAMA-345G11.2 MIC-A|PERB11.1 HGNC:7090|MIM:600169|Ensembl:ENSG00000204520|Vega:OTTHUMG00000031073 6 6p21.33 MHC class I polypeptide-related sequence A protein-coding MICA MHC class I polypeptide-related sequence A O HLA class I antigen|MHC class I chain-related protein A|stress inducible class I homolog 20121230 -9606 100507437 LOC100507437 - - - 14 - uncharacterized LOC100507437 unknown - - - - 20121230 -9606 100507438 LOC100507438 - - - 9 - uncharacterized LOC100507438 miscRNA - - - - 20121209 -9606 100507439 LOC100507439 - - - 8 - uncharacterized LOC100507439 miscRNA - - - - 20121209 -9606 100507440 LOC100507440 - - - 17 - uncharacterized LOC100507440 miscRNA - - - - 20121209 -9606 100507443 LOC100507443 - - - 2 2q33-q35 uncharacterized LOC100507443 miscRNA - - - - 20121230 -9606 100507444 PPP1R2P1 hCG_2001578 IPP-2P|PPP1R2P HGNC:9289 6 - protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 1 pseudo PPP1R2P1 protein phosphatase 1, regulatory (inhibitor) subunit 2 pseudogene 1 O - 20121230 -9606 100507445 LOC100507445 - - - 10 - uncharacterized LOC100507445 unknown - - - - 20121230 -9606 100507447 LOC100507447 - - - 3 - uncharacterized LOC100507447 miscRNA - - - - 20121209 -9606 100507449 LOC100507449 - - - 9 - uncharacterized LOC100507449 miscRNA - - - - 20121209 -9606 100507450 C11orf39 hCG_2045219 - HGNC:32293 11 11q25 chromosome 11 open reading frame 39 unknown C11orf39 chromosome 11 open reading frame 39 O - 20121230 -9606 100507458 LOC100507458 - - - 16 - uncharacterized LOC100507458 miscRNA - - - - 20121209 -9606 100507459 LOC100507459 - - - 20 - uncharacterized LOC100507459 miscRNA - - - - 20121209 -9606 100507460 LOC100507460 - - - 2 2q21 uncharacterized LOC100507460 unknown - - - - 20121230 -9606 100507461 LOC100507461 - - - 3 - uncharacterized LOC100507461 miscRNA - - - - 20121209 -9606 100507462 LOC100507462 - - - 6 - uncharacterized LOC100507462 protein-coding - - - uncharacterized protein LOC100507462 20121230 -9606 100507463 LOC100507463 - - - 6 - uncharacterized LOC100507463 miscRNA - - - - 20121230 -9606 100507464 LOC100507464 - - - 8 - uncharacterized LOC100507464 miscRNA - - - - 20121209 -9606 100507466 ATPBD4-AS1 - - HGNC:44147 15 - ATPBD4 antisense RNA 1 (head to head) miscRNA ATPBD4-AS1 ATPBD4 antisense RNA 1 (head to head) O - 20121230 -9606 100507468 LOC100507468 - - - 7 - uncharacterized LOC100507468 miscRNA - - - - 20121209 -9606 100507470 GRID1-AS1 - - HGNC:44131 10 - GRID1 antisense RNA 1 miscRNA GRID1-AS1 GRID1 antisense RNA 1 O - 20121230 -9606 100507472 LOC100507472 - - - 15 - uncharacterized LOC100507472 miscRNA - - - - 20121230 -9606 100507474 LOC100507474 - - - 2 - uncharacterized LOC100507474 miscRNA - - - - 20121209 -9606 100507475 IDH1-AS1 - - HGNC:40292 2 - IDH1 antisense RNA 1 miscRNA IDH1-AS1 IDH1 antisense RNA 1 O - 20121230 -9606 100507477 LOC100507477 - - - 6 - uncharacterized LOC100507477 miscRNA - - - - 20121209 -9606 100507480 LOC100507480 - - - 15 - uncharacterized LOC100507480 miscRNA - - - - 20121209 -9606 100507481 LOC100507481 - - - 8 - uncharacterized LOC100507481 miscRNA - - - - 20121209 -9606 100507483 LOC100507483 - - - 19 - uncharacterized LOC100507483 protein-coding - - - 3-AS protein 20120511 -9606 100507484 LOC100507484 - - - 12 - uncharacterized LOC100507484 miscRNA - - - - 20121209 -9606 100507486 LOC100507486 - - - 19 - uncharacterized LOC100507486 miscRNA - - - - 20121209 -9606 100507487 LOC100507487 - - - 4 - uncharacterized LOC100507487 miscRNA - - - - 20121209 -9606 100507488 DNAPTP3 - - - 2 2q34-q35 histone demethylase UTY-like unknown - - - - 20120726 -9606 100507489 LOC100507489 - - - 6 - uncharacterized LOC100507489 miscRNA - - - - 20121230 -9606 100507490 ZNF859P - - HGNC:34507 1 1p33 zinc finger protein 859, pseudogene pseudo ZNF859P zinc finger protein 859, pseudogene O - 20121230 -9606 100507494 LOC100507494 - - - 17 - uncharacterized LOC100507494 protein-coding - - - FLJ00403 protein 20121230 -9606 100507495 SDCBP2-AS1 - - HGNC:44314 20 - SDCBP2 antisense RNA 1 miscRNA SDCBP2-AS1 SDCBP2 antisense RNA 1 O - 20121230 -9606 100507498 LOC100507498 - - - 12 - uncharacterized LOC100507498 miscRNA - - - - 20121209 -9606 100507500 EGFR-AS1 - - HGNC:40207 7 - EGFR antisense RNA 1 miscRNA EGFR-AS1 EGFR antisense RNA 1 O - 20121230 -9606 100507501 LOC100507501 - - - 16 - uncharacterized LOC100507501 miscRNA - - - - 20121230 -9606 100507506 LOC100507506 - - - 6 - uncharacterized LOC100507506 miscRNA - - - - 20121230 -9606 100507507 LOC100507507 - - - 7 - uncharacterized LOC100507507 miscRNA - - - - 20121209 -9606 100507511 LOC100507511 - - - 12 - uncharacterized LOC100507511 miscRNA - - - - 20121209 -9606 100507513 LOC100507513 - - - 14 - uncharacterized LOC100507513 miscRNA - - - - 20121209 -9606 100507516 LOC100507516 - - - 8 - uncharacterized LOC100507516 unknown - - - - 20121230 -9606 100507520 LOC100507520 - - - 17 - uncharacterized LOC100507520 miscRNA - - - - 20121209 -9606 100507521 LOC100507521 - - - 11 - uncharacterized LOC100507521 miscRNA - - - - 20121209 -9606 100507524 ARHGEF26-AS1 - - HGNC:41048 3 3q25 ARHGEF26 antisense RNA 1 miscRNA ARHGEF26-AS1 ARHGEF26 antisense RNA 1 O - 20121230 -9606 100507526 LOC100507526 - - - 16 - smg-1 homolog, phosphatidylinositol 3-kinase-related kinase (C. elegans) pseudogene pseudo - - - - 20121230 -9606 100507527 THEG5 - - Ensembl:ENSG00000267465|Vega:OTTHUMG00000180518 19 - testis highly expressed protein 5 protein-coding - - - uncharacterized protein LOC100507527 20121230 -9606 100507528 LINC00613 - - HGNC:44060 4 - long intergenic non-protein coding RNA 613 miscRNA LINC00613 long intergenic non-protein coding RNA 613 O - 20121230 -9606 100507530 LOC100507530 hCG_2002332 - - 8 8p23.1 uncharacterized LOC100507530 unknown - - - - 20121230 -9606 100507531 LINC00836 - - HGNC:44915 10 - long intergenic non-protein coding RNA 836 miscRNA LINC00836 long intergenic non-protein coding RNA 836 O - 20121227 -9606 100507533 SOX21-AS1 - - HGNC:39807 13 13q32.1 SOX21 antisense RNA 1 (head to head) miscRNA SOX21-AS1 SOX21 antisense RNA 1 (head to head) O - 20121021 -9606 100507534 LOC100507534 - - - 16 - uncharacterized LOC100507534 miscRNA - - - - 20121209 -9606 100507535 LOC100507535 - - - 19 - uncharacterized LOC100507535 miscRNA - - - - 20121230 -9606 100507537 LOC100507537 - - - 3 3q25 uncharacterized LOC100507537 miscRNA - - - - 20121230 -9606 100507538 LOC100507538 - - - 7 - uncharacterized LOC100507538 miscRNA - - - - 20121209 -9606 100507540 LOC100507540 - - - 9 - uncharacterized LOC100507540 miscRNA - - - - 20121209 -9606 100507546 LOC100507546 - - - 5 - uncharacterized LOC100507546 unknown - - - - 20121230 -9606 100507547 LOC100507547 - - - 6 - uncharacterized LOC100507547 miscRNA - - - - 20121230 -9606 100507548 LOC100507548 - - - 11 - uncharacterized LOC100507548 unknown - - - - 20121230 -9606 100507549 HMGB3P32 - - HGNC:39335 16 - high mobility group box 3 pseudogene 32 pseudo HMGB3P32 high mobility group box 3 pseudogene 32 O - 20121230 -9606 100507551 LOC100507551 - - - 19 - uncharacterized LOC100507551 unknown - - - - 20120710 -9606 100507554 LOC100507554 - - - 2 - uncharacterized LOC100507554 miscRNA - - - - 20121209 -9606 100507556 LOC100507556 - - - 3 - putative uncharacterized protein NCRNA00269-like unknown - - - - 20121230 -9606 100507557 LOC100507557 - - - 6 - uncharacterized LOC100507557 miscRNA - - - - 20121230 -9606 100507559 LOC100507559 - - - 12 - uncharacterized LOC100507559 miscRNA - - - - 20121209 -9606 100507560 LOC100507560 - - - 12 - uncharacterized LOC100507560 miscRNA - - - - 20121209 -9606 100507561 LOC100507561 - - - 11 - ankyrin repeat domain-containing protein 33B-like pseudo - - - - 20121209 -9606 100507562 LOC100507562 - - - 2 - uncharacterized LOC100507562 miscRNA - - - - 20121209 -9606 100507564 LOC100507564 - - - 1 - uncharacterized LOC100507564 miscRNA - - - - 20121230 -9606 100507567 RAB11B-AS1 - - HGNC:44178 19 - RAB11B antisense RNA 1 miscRNA RAB11B-AS1 RAB11B antisense RNA 1 O - 20121230 -9606 100507568 LOC100507568 - - - 15 - uncharacterized LOC100507568 miscRNA - - - - 20121209 -9606 100507569 LOC100507569 - - - 15 - uncharacterized LOC100507569 pseudo - - - - 20121209 -9606 100507577 LOC100507577 - - - 16 - uncharacterized LOC100507577 miscRNA - - - - 20121230 -9606 100507579 LOC100507579 - - - 20 - uncharacterized LOC100507579 pseudo - - - - 20121209 -9606 100507580 LOC100507580 - - - 22 - uncharacterized LOC100507580 miscRNA - - - - 20121209 -9606 100507581 LOC100507581 - - - 2 - uncharacterized LOC100507581 miscRNA - - - - 20121209 -9606 100507582 BHLHE40-AS1 - - HGNC:44471 3 3p26 BHLHE40 antisense RNA 1 miscRNA BHLHE40-AS1 BHLHE40 antisense RNA 1 O - 20121230 -9606 100507583 LOC100507583 - - - 13 - uncharacterized LOC100507583 pseudo - - - - 20121209 -9606 100507584 LOC100507584 - - - 6 - uncharacterized LOC100507584 miscRNA - - - - 20121230 -9606 100507586 LOC100507586 - - - 1 - cytochrome c oxidase subunit VIIb pseudogene pseudo - - - - 20121230 -9606 100507587 FARP1-IT1 - - HGNC:39810 13 13q32.2 FARP1 intronic transcript 1 (non-protein coding) miscRNA FARP1-IT1 FARP1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100507588 TGFBR3L - TGFR-3L HGNC:44152|Ensembl:ENSG00000260001|Vega:OTTHUMG00000175717 19 19p13.2 transforming growth factor, beta receptor III-like protein-coding TGFBR3L transforming growth factor, beta receptor III-like O TGF-beta receptor type III-like protein|TGF-beta receptor type-3-like protein|transforming growth factor-beta receptor type 3-like protein|transforming growth factor-beta receptor type III-like protein 20121230 -9606 100507589 NAGPA-AS1 - - HGNC:44184 16 - NAGPA antisense RNA 1 miscRNA NAGPA-AS1 NAGPA antisense RNA 1 O - 20121230 -9606 100507594 LOC100507594 - - - 12 - uncharacterized LOC100507594 miscRNA - - - - 20121209 -9606 100507595 LOC100507595 - - - 3 - uncharacterized LOC100507595 pseudo - - - - 20121209 -9606 100507599 LOC100507599 - - - 22 - uncharacterized LOC100507599 miscRNA - - - - 20121209 -9606 100507600 LOC100507600 - - - 2 - uncharacterized LOC100507600 miscRNA - - - - 20121230 -9606 100507601 GRM7-AS3 - - HGNC:42444 3 - GRM7 antisense RNA 3 miscRNA GRM7-AS3 GRM7 antisense RNA 3 O - 20121021 -9606 100507602 LOC100507602 - - - 5 - uncharacterized LOC100507602 miscRNA - - - - 20121230 -9606 100507605 LINC00837 - - HGNC:27436 10 10p12.1 long intergenic non-protein coding RNA 837 miscRNA LINC00837 long intergenic non-protein coding RNA 837 O - 20121230 -9606 100507606 LOC100507606 - - - 11 - ankyrin repeat domain-containing protein 33B-like pseudo - - - - 20121209 -9606 100507607 LOC100507607 - - Ensembl:ENSG00000196993|Vega:OTTHUMG00000170452 16 - nuclear pore complex-interacting protein-like 2-like protein-coding - - - - 20121209 -9606 100507608 KRTAP9-6 - KAP9.6|KRTAP9.6|KRTAP9L2 HGNC:18914|Ensembl:ENSG00000212659|Vega:OTTHUMG00000133600 17 17q12-q21 keratin associated protein 9-6 protein-coding KRTAP9-6 keratin associated protein 9-6 O keratin associated protein 9-like 2|keratin-associated protein 9-6|putative keratin-associated protein 9-2-like 2 20121230 -9606 100507612 LINC00402 - - HGNC:42732 13 - long intergenic non-protein coding RNA 402 miscRNA LINC00402 long intergenic non-protein coding RNA 402 O - 20121209 -9606 100507616 LOC100507616 - - - 12 - uncharacterized LOC100507616 miscRNA - - - - 20121209 -9606 100507617 PPP1R14BP3 - - HGNC:16330 4 - protein phosphatase 1, regulatory (inhibitor) subunit 14B pseudogene 3 pseudo PPP1R14BP3 protein phosphatase 1, regulatory (inhibitor) subunit 14B pseudogene 3 O - 20121230 -9606 100507629 LINC00658 - - HGNC:44315 20 - long intergenic non-protein coding RNA 658 miscRNA LINC00658 long intergenic non-protein coding RNA 658 O - 20121230 -9606 100507630 LOC100507630 - - - 2 - uncharacterized LOC100507630 unknown - - - - 20121230 -9606 100507632 LOC100507632 - - - 8 - uncharacterized LOC100507632 miscRNA - - - - 20121230 -9606 100507633 LOC100507633 - - - 10 - uncharacterized LOC100507633 miscRNA - - - - 20121209 -9606 100507634 LOC100507634 - - - 1 1p32.3 uncharacterized LOC100507634 miscRNA - - - - 20121230 -9606 100507637 LOC100507637 - - - 22 - uncharacterized LOC100507637 unknown - - - - 20120622 -9606 100507639 LOC100507639 - - - 4 - uncharacterized LOC100507639 miscRNA - - - - 20121209 -9606 100507642 LOC100507642 - - - 7 - uncharacterized LOC100507642 miscRNA - - - - 20121209 -9606 100507646 LOC100507646 UNQ6167 - - 19 19q13.2 uncharacterized LOC100507646 unknown - - - - 20121230 -9606 100507648 CICP15 - - HGNC:38549 5 - capicua homolog (Drosophila) pseudogene 15 pseudo CICP15 capicua homolog (Drosophila) pseudogene 15 O - 20121209 -9606 100507650 C14orf164 hCG_1815045 - HGNC:20438|Ensembl:ENSG00000215277|Vega:OTTHUMG00000149918 14 14q11.2 chromosome 14 open reading frame 164 protein-coding C14orf164 chromosome 14 open reading frame 164 O RING finger protein C14orf164|RING finger protein C14orf164-like 20121230 -9606 100507651 LOC100507651 - - - 8 - uncharacterized LOC100507651 miscRNA - - - - 20121230 -9606 100507652 LOC100507652 - - - 1 - uncharacterized LOC100507652 miscRNA - - - - 20121209 -9606 100507654 LOC100507654 - - - 13 - uncharacterized LOC100507654 unknown - - - - 20121230 -9606 100507656 LOC100507656 - - - 17 - uncharacterized LOC100507656 protein-coding - - - - 20121209 -9606 100507657 LOC100507657 - - - 22 - uncharacterized LOC100507657 miscRNA - - - - 20121209 -9606 100507660 SRGAP3-AS2 - - HGNC:40899 3 - SRGAP3 antisense RNA 2 miscRNA SRGAP3-AS2 SRGAP3 antisense RNA 2 O - 20121021 -9606 100507661 LOC100507661 - - - 3 - uncharacterized LOC100507661 miscRNA - - - - 20121209 -9606 100507662 LOC100507662 - - - 6 - uncharacterized LOC100507662 miscRNA - - - - 20120726 -9606 100507663 LOC100507663 - - - 10 - uncharacterized LOC100507663 unknown - - - - 20121230 -9606 100507664 LOC100507664 - - - 1 1p31 uncharacterized LOC100507664 unknown - - - - 20121230 -9606 100507670 LOC100507670 - - - 1 - uncharacterized LOC100507670 miscRNA - - - - 20121209 -9606 100507672 LOC100507672 - - - 6 - uncharacterized LOC100507672 miscRNA - - - - 20121209 -9606 100507674 MARK2P9 - - HGNC:39800 10 10q23.33 MAP/microtubule affinity-regulating kinase 2 pseudogene 9 pseudo MARK2P9 MAP/microtubule affinity-regulating kinase 2 pseudogene 9 O - 20121230 -9606 100507679 MUC22 - PBMUCL1 HGNC:39755|MIM:613917|Ensembl:ENSG00000261272|Vega:OTTHUMG00000133673 6 6p21.33 mucin 22 protein-coding MUC22 mucin 22 O mucin-22|panbronchiolitis related mucin-like 1|panbronchiolitis-related mucin-like protein 1 20121230 -9606 100507703 LOC100507703 DADB-123D8.3 - - 6 - HLA class I histocompatibility antigen, A-69 alpha chain-like protein-coding - - - MHC class I antigen|major histocompatibility complex, class I, A 20121216 -9606 100507709 LOC100507709 - - - 6 - HLA class II histocompatibility antigen, DRB1-7 beta chain-like protein-coding - - - - 20121102 -9606 100507714 LOC100507714 - - - 6 - HLA class II histocompatibility antigen, DRB1-7 beta chain-like protein-coding - - - HLA class II histocompatibility antigen, DRB1-9 beta chain-like 20121110 -9606 100507739 ERVK3-1 - - HGNC:30466 19 - endogenous retrovirus group K3, member 1 unknown ERVK3-1 endogenous retrovirus group K3, member 1 O - 20121021 -9606 100507747 LOC100507747 - - - 13 - uncharacterized LOC100507747 protein-coding - - - - 20121102 -9606 100507759 LOC100507759 - - - 16 - uncharacterized LOC100507759 miscRNA - - - - 20121102 -9606 100507762 LOC100507762 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100507803 LOC100507803 - - - 16 - uncharacterized LOC100507803 miscRNA - - - - 20121102 -9606 100507855 LOC100507855 - - - 12 - adenylate kinase isoenzyme 4, mitochondrial-like protein-coding - - - - 20121222 -9606 100507884 LOC100507884 - - - 17 - ubiquitin-40S ribosomal protein S27a-like pseudo - - - - 20121209 -9606 100507918 LOC100507918 - - - 16 - uncharacterized LOC100507918 miscRNA - - - - 20121102 -9606 100507930 LOC100507930 - - - 4 - uncharacterized LOC100507930 miscRNA - - - - 20121102 -9606 100507948 LOC100507948 - - - 2 - uncharacterized LOC100507948 miscRNA - - - - 20121230 -9606 100507965 LOC100507965 - - - 3 - uncharacterized LOC100507965 pseudo - - - - 20121102 -9606 100507995 LOC100507995 - - - 6 - putative POM121-like protein 1-like pseudo - - - - 20121102 -9606 100508046 LOC100508046 - - - 14 - uncharacterized LOC100508046 unknown - - - - 20121230 -9606 100508120 LOC100508120 - - - 6 - uncharacterized LOC100508120 miscRNA - - - - 20121230 -9606 100508175 LOC100508175 - - - 5 - uncharacterized LOC100508175 pseudo - - - - 20121102 -9606 100508226 LOC100508226 UNQ751 - - 3 - HHSL751 unknown - - - - 20121230 -9606 100508227 LOC100508227 - - - 3 - uncharacterized LOC100508227 unknown - - - - 20121230 -9606 100508329 LOC100508329 - - - 12 - uncharacterized LOC100508329 miscRNA - - - - 20121102 -9606 100508383 LOC100508383 - - - 3 - uncharacterized LOC100508383 protein-coding - - - - 20121102 -9606 100508384 LOC100508384 - - - 12 - uncharacterized LOC100508384 protein-coding - - - - 20121102 -9606 100508408 LOC100508408 - - - 11 - uncharacterized LOC100508408 miscRNA - - - - 20121117 -9606 100508432 LOC100508432 - - - Un - putative trypsin-6-like pseudo - - - - 20121102 -9606 100508483 LOC100508483 - - - 3 - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100508631 LOC100508631 - - - 4 - uncharacterized LOC100508631 miscRNA - - - - 20121102 -9606 100508689 LOC100508689 - - - 11 - mucin protein-coding - - - - 20120710 -9606 100508697 LOC100508697 - - - Y - tubulin beta-8 chain-like pseudo - - - - 20121102 -9606 100508728 LOC100508728 - - - 7 - uncharacterized LOC100508728 pseudo - - - - 20121102 -9606 100508734 LOC100508734 - - - Un - ankyrin repeat domain-containing protein SOWAHC-like pseudo - - - - 20121102 -9606 100508736 LOC100508736 - - - 11 - uncharacterized LOC100508736 protein-coding - - - - 20121221 -9606 100508750 LOC100508750 - - - Y - adenylate kinase isoenzyme 6-like pseudo - - - - 20121102 -9606 100508751 LOC100508751 - - - 2 - uncharacterized LOC100508751 miscRNA - - - - 20121102 -9606 100508781 LOC100508781 - - - 7 - protein FAM115A-like protein-coding - - - - 20121102 -9606 100508782 LOC100508782 - - - Un - inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1-like pseudo - - - - 20121120 -9606 100508803 LOC100508803 - - - Un - uncharacterized LOC100508803 pseudo - - - - 20121102 -9606 100509072 LOC100509072 - - - 2 - uncharacterized LOC100509072 protein-coding - - - - 20120710 -9606 100509091 LOC100509091 - - - X - extracellular matrix protein 2-like protein-coding - - - - 20121209 -9606 100509116 LOC100509116 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100509195 LOC100509195 - - - 1 - uncharacterized LOC100509195 miscRNA - - - - 20121209 -9606 100509196 LOC100509196 - - - 21 - putative uncharacterized protein encoded by LINC00205-like protein-coding - - - - 20121102 -9606 100509205 LOC100509205 - - - 1 - uncharacterized LOC100509205 miscRNA - - - - 20121209 -9606 100509240 LOC100509240 - - - 4 - uncharacterized LOC100509240 miscRNA - - - - 20121102 -9606 100509247 LOC100509247 - - - 7 - protein FAM27E2-like protein-coding - - - - 20121209 -9606 100509290 LOC100509290 hCG_95695 - - 17 - DEAH (Asp-Glu-Ala-His) box polypeptide 40 pseudogene pseudo - - - - 20121230 -9606 100509303 LOC100509303 - - - 1 - uncharacterized LOC100509303 miscRNA - - - - 20121209 -9606 100509315 LOC100509315 - - - 18 - uncharacterized LOC100509315 miscRNA - - - - 20121102 -9606 100509340 LOC100509340 - - - Y - testis-specific Y-encoded protein 2-like pseudo - - - - 20121102 -9606 100509370 LOC100509370 - - - 12 - 39S ribosomal protein L21, mitochondrial-like pseudo - - - - 20121209 -9606 100509378 LOC100509378 - - - 1 - uncharacterized LOC100509378 protein-coding - - - - 20121102 -9606 100509398 LOC100509398 - - - 3 - cytochrome c, somatic-like pseudo - - - - 20121209 -9606 100509413 LOC100509413 - - - 11 - uncharacterized LOC100509413 miscRNA - - - - 20121102 -9606 100509445 LOC100509445 - - - 12 - uncharacterized LOC100509445 miscRNA - - - - 20121102 -9606 100509457 LOC100509457 - - - Un - HLA class II histocompatibility antigen, DQ alpha 1 chain-like protein-coding - - - - 20121102 -9606 100509484 LOC100509484 - - - 9 - uncharacterized LOC100509484 miscRNA - - - - 20121209 -9606 100509487 LOC100509487 - - - 18 - uncharacterized LOC100509487 miscRNA - - - - 20121102 -9606 100509490 LOC100509490 - - - 2 - uncharacterized LOC100509490 protein-coding - - - - 20121102 -9606 100509510 LOC100509510 - - - Y - cyclin-dependent kinase 2-associated protein 2-like pseudo - - - - 20121102 -9606 100509512 LOC100509512 - - - 2 - uncharacterized LOC100509512 pseudo - - - - 20121102 -9606 100509541 LOC100509541 - - - 12 - uncharacterized LOC100509541 miscRNA - - - - 20121102 -9606 100509542 LOC100509542 - - - 6 - uncharacterized LOC100509542 protein-coding - - - - 20121102 -9606 100509553 LOC100509553 - - - 14 - ETS domain-containing protein Elk-1-like pseudo - - - - 20121102 -9606 100509620 LOC100509620 - - - 2 - aquaporin-7-like protein-coding - - - - 20121102 -9606 100509621 LOC100509621 - - - 3 - uncharacterized LOC100509621 miscRNA - - - - 20121102 -9606 100509635 LOC100509635 - - - 10 - uncharacterized LOC100509635 miscRNA - - - - 20121102 -9606 100509638 LOC100509638 - - - 9 - protein FAM27D1-like protein-coding - - - - 20121102 -9606 100509646 LOC100509646 - - - Y - PTPN13-like protein, Y-linked-like protein-coding - - - - 20121102 -9606 100509686 LOC100509686 - - - 9 - protein FAM27D1-like protein-coding - - - - 20121102 -9606 100509764 LOC100509764 - - - 12 - uncharacterized LOC100509764 miscRNA - - - - 20121102 -9606 100509780 LOC100509780 - - - 5 - uncharacterized LOC100509780 unknown - - - - 20121230 -9606 100509814 LOC100509814 - - - 10 - uncharacterized LOC100509814 unknown - - - - 20120710 -9606 100509853 LOC100509853 - - - Y - putative uncharacterized protein FLJ44672-like pseudo - - - - 20121102 -9606 100509857 LOC100509857 - - - 8 - keratin, type II cytoskeletal 8-like pseudo - - - - 20121209 -9606 100509860 LOC100509860 - - - 20 - uncharacterized LOC100509860 protein-coding - - - - 20121102 -9606 100509861 LOC100509861 - - - 20 - uncharacterized LOC100509861 protein-coding - - - - 20121102 -9606 100509894 CPB2-AS1 - - HGNC:39898 13 - CPB2 antisense RNA 1 miscRNA CPB2-AS1 CPB2 antisense RNA 1 O - 20121230 -9606 100509927 HIST1H2APS6 hCG_1643984 - HGNC:42647 13 13q13.3 histone cluster 1, H2a, pseudogene 6 pseudo HIST1H2APS6 histone cluster 1, H2a, pseudogene 6 O - 20121230 -9606 100509937 LOC100509937 - - - 7 - centromere protein S-like pseudo - - - - 20121102 -9606 100509976 LOC100509976 - - - 12 - uncharacterized LOC100509976 miscRNA - - - - 20121102 -9606 100509988 LOC100509988 - - - 10 - uncharacterized LOC100509988 pseudo - - - - 20121209 -9606 100509997 LOC100509997 - - - 7 - protein FAM27D1-like pseudo - - - - 20121102 -9606 100510007 LOC100510007 - - - 7 - uncharacterized LOC100510007 miscRNA - - - - 20121102 -9606 100510701 LOC100510701 - - - 9 - uncharacterized LOC100510701 miscRNA - - - - 20121102 -9606 100510707 LOC100510707 - - - 17 - TBC1 domain family member 3H-like protein-coding - - - - 20121102 -9606 100510709 LOC100510709 - - - 6 - ADP/ATP translocase 2-like pseudo - - - - 20121102 -9606 100510710 LOC100510710 - - - 1 - glucosylceramidase-like pseudo - - - - 20121102 -9606 100510713 LOC100510713 - - - 17 - protein FAM182A-like pseudo - - - - 20121102 -9606 100526416 AK4P5 - - HGNC:39068 6 - adenylate kinase 4 pseudogene 5 pseudo AK4P5 adenylate kinase 4 pseudogene 5 O - 20121230 -9606 100526648 MIR1273E - hsa-mir-1273e miRBase:MI0016059 - - microRNA mir-1273e miscRNA - - - - 20120318 -9606 100526656 LOC100526656 - - - 10 10q guanine nucleotide binding protein (G protein), gamma 10 pseudogene pseudo - - - - 20121230 -9606 100526664 LY75-CD302 - - HGNC:38828|Ensembl:ENSG00000054219|Ensembl:ENSG00000248672|Vega:OTTHUMG00000161661 2 2q LY75-CD302 readthrough protein-coding LY75-CD302 LY75-CD302 readthrough O DEC-205/DCL-1 fusion|LY75-CD302 fusion protein 20121230 -9606 100526693 ARPC4-TTLL3 - - HGNC:38830|Ensembl:ENSG00000250151|Vega:OTTHUMG00000161408 3 3p ARPC4-TTLL3 readthrough protein-coding ARPC4-TTLL3 ARPC4-TTLL3 readthrough O ARPC4-TTLL3 fusion protein|ARPC4-TTLL3 read-through transcript 20121230 -9606 100526694 MSANTD3-TMEFF1 - C9orf3-TMEFF1|C9orf30-TMEFF1 HGNC:38838|Ensembl:ENSG00000241697|Ensembl:ENSG00000251349|Vega:OTTHUMG00000161540 9 9q MSANTD3-TMEFF1 readthrough protein-coding MSANTD3-TMEFF1 MSANTD3-TMEFF1 readthrough O C9orf30-TMEFF1 fusion protein 20121230 -9606 100526735 LOC100526735 - - - 4 - crystallin, zeta (quinone reductase) pseudogene pseudo - - - - 20121230 -9606 100526736 LOC100526736 - - - 4 - quinone oxidoreductase-like protein 2 pseudogene pseudo - - - - 20121230 -9606 100526737 RBM14-RBM4 hCG_20662 COAZ HGNC:38840|Ensembl:ENSG00000248643|Vega:OTTHUMG00000160813 11 11q RBM14-RBM4 readthrough protein-coding RBM14-RBM4 RBM14-RBM4 readthrough O RBM14-RBM4 protein|RBM14/RBM4 fusion|transcriptional coactivator CoAZ 20121230 -9606 100526738 SUMO2P5 - - HGNC:39015 5 - SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 5 pseudo SUMO2P5 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 5 O - 20121230 -9606 100526739 APITD1-CORT RP5-1113E3.1 - HGNC:38843|Ensembl:ENSG00000175279|Ensembl:ENSG00000251503|Vega:OTTHUMG00000162436 1 1p APITD1-CORT readthrough protein-coding APITD1-CORT APITD1-CORT readthrough O APITD1-CORT protein 20121230 -9606 100526740 ATP5J2-PTCD1 - - HGNC:38844|Ensembl:ENSG00000106246|Ensembl:ENSG00000248919|Vega:OTTHUMG00000160779 7 7q ATP5J2-PTCD1 readthrough protein-coding ATP5J2-PTCD1 ATP5J2-PTCD1 readthrough O ATP5J2-PTCD1 fusion protein|ATP5J2-PTCD1 read-through transcript 20121230 -9606 100526741 DEL8Q13 - C8DELq13 MIM:600383 8 8q13 Mesomelia-synostoses syndrome unknown - - - - 20120622 -9606 100526742 DEL16P12.1P11.2 - C16DELp12.1p11.2 MIM:613604 16 16q12.2-p11.2 Chromosome 16p12.2-p11.2 deletion syndrome unknown - - - - 20120622 -9606 100526743 DUP17Q23.1Q23.2 - C17DUPq23.1q23.2 MIM:613618 17 17q23.1-q23.2 Chromosome 17q23.1-q23.2 duplication syndrome unknown - - - - 20120622 -9606 100526760 ABHD14A-ACY1 - - HGNC:38856|Ensembl:ENSG00000114786|Vega:OTTHUMG00000166447 3 3p ABHD14A-ACY1 readthrough (non-protein coding) miscRNA ABHD14A-ACY1 ABHD14A-ACY1 readthrough (non-protein coding) O - 20121230 -9606 100526761 CCDC169-SOHLH2 - C13orf38-SOHLH2 HGNC:38866|Ensembl:ENSG00000120669|Ensembl:ENSG00000250709|Vega:OTTHUMG00000162258 13 13q CCDC169-SOHLH2 readthrough protein-coding CCDC169-SOHLH2 CCDC169-SOHLH2 readthrough O CCDC169-SOHLH2 protein 20121230 -9606 100526767 RNF103-CHMP3 - RNF103-VPS24 HGNC:38847|Ensembl:ENSG00000115561|Ensembl:ENSG00000249884|Vega:OTTHUMG00000160822 2 2p RNF103-CHMP3 readthrough protein-coding RNF103-CHMP3 RNF103-CHMP3 readthrough O RNF103-CHMP3 protein|RNF103-CHMP3 read-through|RNF103-VPS24 readthrough 20121230 -9606 100526771 TMPRSS4-AS1 - - HGNC:44179 11 - TMPRSS4 antisense RNA 1 miscRNA TMPRSS4-AS1 TMPRSS4 antisense RNA 1 O - 20121230 -9606 100526772 TMEM110-MUSTN1 - - HGNC:38834|Ensembl:ENSG00000248592|Vega:OTTHUMG00000160756 3 - TMEM110-MUSTN1 readthrough protein-coding TMEM110-MUSTN1 TMEM110-MUSTN1 readthrough O TMEM110-MUSTN1 fusion protein|TMEM110-MUSTN1 read-through transcript 20121230 -9606 100526773 EPPIN-WFDC6 - SPINLW1-WFDC6 HGNC:38825|Ensembl:ENSG00000101448|Ensembl:ENSG00000249139|Vega:OTTHUMG00000161548 20 20q EPPIN-WFDC6 readthrough protein-coding EPPIN-WFDC6 EPPIN-WFDC6 readthrough O SPINLW1-WFDC6 fusion protein|SPINLW1-WFDC6 read-through transcript|SPINLW1-WFDC6 readthrough 20121230 -9606 100526776 CSNK1A1P3 - - HGNC:38669 5 - casein kinase 1, alpha 1 pseudogene 3 pseudo CSNK1A1P3 casein kinase 1, alpha 1 pseudogene 3 O - 20121230 -9606 100526783 C15orf38-AP3S2 - - HGNC:38824|Ensembl:ENSG00000250021|Vega:OTTHUMG00000162161 15 15q C15orf38-AP3S2 readthrough protein-coding C15orf38-AP3S2 C15orf38-AP3S2 readthrough O C15orf38-AP3S2 fusion protein 20121230 -9606 100526790 TST1 - - MIM:613636 11 11p14 Tuberculin skin test reactivity, absence of unknown - - - - 20120622 -9606 100526791 DEL19P13.13 - C19DELp13.13|C19DUPp13.13|DUP19p13.13 MIM:613638 19 19p13.13 Chromosome 19p13.13 deletion syndrome unknown - - - - 20120622 -9606 100526793 CKS1BP5 - - HGNC:17640 5 - CDC28 protein kinase regulatory subunit 1B pseudogene 5 pseudo CKS1BP5 CDC28 protein kinase regulatory subunit 1B pseudogene 5 O - 20121230 -9606 100526794 NT5C1B-RDH14 - - HGNC:38831|Ensembl:ENSG00000250741|Vega:OTTHUMG00000161546 2 2p NT5C1B-RDH14 readthrough protein-coding NT5C1B-RDH14 NT5C1B-RDH14 readthrough O NT5C1B-RDH14 protein|NT5C1B-RDH14 read-through transcript 20121230 -9606 100526820 CAHM - LINC00468 HGNC:42860 6 - colon adenocarcinoma hypermethylated (non-protein coding) miscRNA CAHM colon adenocarcinoma hypermethylated (non-protein coding) O - 20121230 -9606 100526823 TST2 - - MIM:613637 5 5p15 Tuberculin skin test reactivity QTL unknown - - - - 20120622 -9606 100526825 INMT-FAM188B - - HGNC:41995|Ensembl:ENSG00000254959|Vega:OTTHUMG00000022897 7 7p INMT-FAM188B readthrough (non-protein coding) miscRNA INMT-FAM188B INMT-FAM188B readthrough (non-protein coding) O - 20121230 -9606 100526830 SLX1A-SULT1A3 - - HGNC:44437 16 16p SLX1A-SULT1A3 readthrough (non-protein coding) miscRNA SLX1A-SULT1A3 SLX1A-SULT1A3 readthrough (non-protein coding) O - 20121230 -9606 100526831 SLX1B-SULT1A4 - - - 16 16p SLX1B-SULT1A4 readthrough miscRNA - - - - 20121230 -9606 100526832 PHOSPHO2-KLHL23 - - Ensembl:ENSG00000213160|Vega:OTTHUMG00000132213 2 2q PHOSPHO2-KLHL23 readthrough protein-coding - - - kelch-like protein 23 20121230 -9606 100526833 SEPT5-GP1BB - - - 22 22q SEPT5-GP1BB readthrough miscRNA - - - - 20121230 -9606 100526835 FPGT-TNNI3K - - HGNC:42952|Ensembl:ENSG00000116783|Ensembl:ENSG00000259030|Vega:OTTHUMG00000166281 1 1p31.1 FPGT-TNNI3K readthrough protein-coding FPGT-TNNI3K FPGT-TNNI3K readthrough O FPGT-TNNI3K fusion protein 20121230 -9606 100526836 BLOC1S5-TXNDC5 hCG_2043289 MUTED-TXNDC5 HGNC:42001|Ensembl:ENSG00000259040|Vega:OTTHUMG00000171453 6 6p BLOC1S5-TXNDC5 readthrough (non-protein coding) miscRNA BLOC1S5-TXNDC5 BLOC1S5-TXNDC5 readthrough (non-protein coding) O - 20121230 -9606 100526837 EEF1E1-MUTED - - - 6 6p EEF1E1-MUTED readthrough miscRNA - - - - 20121230 -9606 100526838 LOC100526838 - - - 16 16q chromosome 18 open reading frame 32 pseudogene pseudo - - - - 20121230 -9606 100526839 LOC100526839 - - - 1 1q chromosome 18 open reading frame 32 pseudogene pseudo - - - - 20121230 -9606 100526840 LOC100526840 - - - 2 2q chromosome 18 open reading frame 32 pseudogene pseudo - - - - 20121230 -9606 100526841 LOC100526841 - - - 2 2q chromosome 18 open reading frame 32 pseudogene pseudo - - - - 20121230 -9606 100526842 RPL17-C18orf32 - - HGNC:44661|Ensembl:ENSG00000215472|Vega:OTTHUMG00000179689 18 18q RPL17-C18orf32 readthrough protein-coding RPL17-C18orf32 RPL17-C18orf32 readthrough O RPL17-C18orf32 protein 20121230 -9606 100527943 TGIF2-C20orf24 - - HGNC:44664|Ensembl:ENSG00000259399|Vega:OTTHUMG00000032382 20 20q TGIF2-C20orf24 readthrough protein-coding TGIF2-C20orf24 TGIF2-C20orf24 readthrough O TGIF2-C20orf24 protein 20121230 -9606 100527945 NDUFA12P1 - - HGNC:39419 13 - NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 12 pseudogene 1 pseudo NDUFA12P1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 12 pseudogene 1 O - 20121230 -9606 100527946 LOC100527946 - - - 12 - programmed cell death 5 pseudogene pseudo - - - - 20121230 -9606 100527947 LOC100527947 - - - 5 - programmed cell death 5 pseudogene pseudo - - - - 20121230 -9606 100527948 HMGB1P27 - - HGNC:39118 2 - high mobility group box 1 pseudogene 27 pseudo HMGB1P27 high mobility group box 1 pseudogene 27 O - 20121230 -9606 100527949 GIMAP1-GIMAP5 - - - 7 7q GIMAP1-GIMAP5 readthrough protein-coding - - - GIMAP1-GIMAP5 protein 20121230 -9606 100527950 GJA9-MYCBP - - - 1 1p GJA9-MYCBP readthrough miscRNA - - - - 20121230 -9606 100527960 HEATR8-TTC4 - - - 1 1p HEATR8-TTC4 readthrough miscRNA - - - - 20121230 -9606 100527961 LRRFIP1P1 - - HGNC:32937 3 - leucine rich repeat (in FLII) interacting protein 1 pseudogene 1 pseudo LRRFIP1P1 leucine rich repeat (in FLII) interacting protein 1 pseudogene 1 O - 20121230 -9606 100527963 PMF1-BGLAP - PMF1 HGNC:42953|Ensembl:ENSG00000160783|Ensembl:ENSG00000260238|Vega:OTTHUMG00000014817 1 1q PMF1-BGLAP readthrough protein-coding PMF1-BGLAP PMF1-BGLAP readthrough O PMF1-BGLAP protein|polyamine-modulated factor 1 20121230 -9606 100527964 LOC100527964 - - - 1 - uncharacterized LOC100527964 miscRNA - - - - 20121230 -9606 100527978 TMEM56-RWDD3 - - Ensembl:ENSG00000152078|Vega:OTTHUMG00000010847 1 1p TMEM56-RWDD3 readthrough protein-coding - - - TMEM56-RWDD3 protein 20121230 -9606 100528006 DPPA5P3 - - HGNC:44688 10 10p15 developmental pluripotency associated 5 pseudogene 3 pseudo DPPA5P3 developmental pluripotency associated 5 pseudogene 3 O - 20121230 -9606 100528007 C10orf32-AS3MT - - - 10 10q C10orf32-AS3MT readthrough miscRNA - - - - 20121230 -9606 100528016 TMX2-CTNND1 - - HGNC:41992|Ensembl:ENSG00000254462|Vega:OTTHUMG00000167384 11 - TMX2-CTNND1 readthrough (non-protein coding) miscRNA TMX2-CTNND1 TMX2-CTNND1 readthrough (non-protein coding) O - 20121230 -9606 100528017 SAA2-SAA4 - - HGNC:39550|Ensembl:ENSG00000255071|Vega:OTTHUMG00000166482 11 11p15.1 SAA2-SAA4 readthrough protein-coding SAA2-SAA4 SAA2-SAA4 readthrough O SAA2-SAA2 protein|SAA2-SAA2 read-through transcript 20121230 -9606 100528018 ARL2-SNX15 - - - 11 11q ARL2-SNX15 readthrough miscRNA - - - - 20121230 -9606 100528019 HSPB2-C11orf52 - - HGNC:41996|Vega:OTTHUMG00000166887 11 11q HSPB2-C11orf52 readthrough (non-protein coding) miscRNA HSPB2-C11orf52 HSPB2-C11orf52 readthrough (non-protein coding) O - 20121230 -9606 100528020 FAM187A - - HGNC:35153 17 17q21.31 family with sequence similarity 187, member A protein-coding FAM187A family with sequence similarity 187, member A O Ig-like V-type domain-containing protein FAM187A 20121120 -9606 100528021 ST20-MTHFS - - HGNC:44655|Ensembl:ENSG00000259332|Vega:OTTHUMG00000172077 15 15q25.1 ST20-MTHFS readthrough protein-coding ST20-MTHFS ST20-MTHFS readthrough O ST20-MTHFS protein 20121230 -9606 100528022 BLOC1S1-RDH5 - - - 12 12q BLOC1S1-RDH5 readthrough miscRNA - - - - 20121230 -9606 100528023 PPR1 - PPR MIM:132100 6 6p21.1 Photoparoxysmal response 1 unknown - - - - 20120622 -9606 100528024 DEL11P13 - C11DELp13|WAGR MIM:194072 11 11p13 Wilms tumor, aniridia, genitourinary anomalies and mental retardation syndrome unknown - - - - 20120622 -9606 100528025 SXGQTL1 - - MIM:613498 17 17p13 Sex hormone-binding blobulin circulating level QTL 1 unknown - - - - 20120622 -9606 100528026 DEL4Q21 - C4DELq21 MIM:613509 4 4q21 Chromosome 4q21 deletion syndrome unknown - - - - 20120622 -9606 100528027 RJBS - - MIM:613658 2 2q36.2 Rajab syndrome unknown - - - - 20120622 -9606 100528030 POC1B-GALNT4 - - HGNC:42957|Ensembl:ENSG00000259075|Vega:OTTHUMG00000171333 12 12q POC1B-GALNT4 readthrough protein-coding POC1B-GALNT4 POC1B-GALNT4 readthrough O POC1B-GALNT4 fusion|POC1B-GALNT4 protein 20121230 -9606 100528031 FKBP1A-SDCBP2 - - HGNC:41997|Ensembl:ENSG00000234684|Vega:OTTHUMG00000031671 20 20p13 FKBP1A-SDCBP2 readthrough (non-protein coding) miscRNA FKBP1A-SDCBP2 FKBP1A-SDCBP2 readthrough (non-protein coding) O - 20121230 -9606 100528032 KLRC4-KLRK1 - - - 12 12p KLRC4-KLRK1 readthrough protein-coding - - - NK cell receptor D|NKG2-D type II integral membrane protein|NKG2-D-activating NK receptor|killer cell lectin-like receptor subfamily K member 1 20121230 -9606 100528061 LOC100528061 - - - 5 5q15 gamma-glutamylcyclotransferase pseudogene pseudo - - - - 20121230 -9606 100528062 ARMCX5-GPRASP2 - - HGNC:42000 X Xq22.1 ARMCX5-GPRASP2 readthrough protein-coding ARMCX5-GPRASP2 ARMCX5-GPRASP2 readthrough O G-protein coupled receptor-associated sorting protein 2 20121230 -9606 100528063 LOC100528063 - - - 2 2p16 gamma-glutamylcyclotransferase pseudogene pseudo - - - - 20121230 -9606 100528064 NEDD8-MDP1 - - HGNC:39551|Ensembl:ENSG00000255526|Vega:OTTHUMG00000167107 14 14q NEDD8-MDP1 readthrough protein-coding NEDD8-MDP1 NEDD8-MDP1 readthrough O NEDD8-MDP1 protein|NEDD8-MDP1 read-through transcript 20121230 -9606 100529052 LOC100529052 - - - 20 20p11 gamma-glutamylcyclotransferase pseudogene pseudo - - - - 20121230 -9606 100529063 BCL2L2-PABPN1 - - HGNC:42959|Ensembl:ENSG00000258643|Vega:OTTHUMG00000171498 14 14q BCL2L2-PABPN1 readthrough protein-coding BCL2L2-PABPN1 BCL2L2-PABPN1 readthrough O BCL2L2-PABPN1 protein 20121230 -9606 100529067 SERF2-C15ORF63 hCG_2003792 - - 15 15q SERF2-C15orf63 readthrough miscRNA - - - - 20121230 -9606 100529097 RPL36A-HNRNPH2 - - Ensembl:ENSG00000257529|Vega:OTTHUMG00000170052 X Xq22 RPL36A-HNRNPH2 readthrough protein-coding - - - RPL36A-HNRNPH2 protein 20121230 -9606 100529099 DUP2Q31.1 - C2DUPq31.1 MIM:613681 2 2q31.1 Chromosome 2q31.1 duplication syndrome unknown - - - - 20120622 -9606 100529111 LOC100529111 - - - 2 2p22 N-acetylneuraminate pyruvate lyase (dihydrodipicolinate synthase) pseudogene pseudo - - - - 20121230 -9606 100529118 AUTSX4 - CXDELp22.11 MIM:300830 X Xp22.11 Autism, X-linked, susceptibility to, 4 unknown - - - - 20120622 -9606 100529119 SCLL - - MIM:613523 8 8p11 Chromosome 8p11 myeloproliferative syndrome unknown - - - - 20120622 -9606 100529141 LGTN - - HGNC:39494|MIM:151625 - - ligatin protein-coding LGTN ligatin O - 20120318 -9606 100529144 CORO7-PAM16 - - HGNC:44424|Ensembl:ENSG00000103426|Vega:OTTHUMG00000177664 16 16p CORO7-PAM16 readthrough protein-coding CORO7-PAM16 CORO7-PAM16 readthrough O CORO7-PAM16 protein 20121230 -9606 100529145 TEN1-CDK3 - C17orf106-CDK3 HGNC:44420 17 17q TEN1-CDK3 readthrough (non-protein coding) miscRNA TEN1-CDK3 TEN1-CDK3 readthrough (non-protein coding) O - 20121230 -9606 100529146 DER22T11-22 - - MIM:609029 22 22q11.2 Emanuel syndrome unknown - - - - 20120622 -9606 100529147 MMRFCGU - - MIM:613680 16 16p13.3 Microcephaly, mental retardation, and distinctive facies, with cardiac and genitourinary malformations unknown - - - - 20120622 -9606 100529148 MDNS - - MIM:613689 22 22q12.3-q13.1 Mammary-digital-nail syndrome unknown - - - - 20120622 -9606 100529149 DER22T8-22 - - MIM:613700 22 22q11.2 Supernumerary der(22)t(8-22) syndrome unknown - - - - 20120622 -9606 100529151 IBD11 - - MIM:191390 7 7q22 Inflammatory bowel disease 11 unknown - - - - 20120622 -9606 100529207 RAD51L3-RFFL - - - 17 17q RAD51L3-RFFL readthrough miscRNA - - - - 20121230 -9606 100529209 RNASEK-C17orf49 hCG_32827 - HGNC:44419 17 17p RNASEK-C17orf49 readthrough (non-protein coding) miscRNA RNASEK-C17orf49 RNASEK-C17orf49 readthrough (non-protein coding) O - 20121230 -9606 100529211 C17orf61-PLSCR3 - - - 17 17p C17orf61-PLSCR3 readthrough miscRNA - - - - 20121230 -9606 100529215 ZNF559-ZNF177 - - HGNC:42964|Ensembl:ENSG00000188629|Vega:OTTHUMG00000179943 19 19p ZNF559-ZNF177 readthrough protein-coding ZNF559-ZNF177 ZNF559-ZNF177 readthrough O zinc finger protein 177 20121230 -9606 100529221 DEL6Q11Q14 - C6DELq11q14 MIM:613544 6 6q11-q14 Chromosome 6q11-q14 deletion syndrome unknown - - - - 20120622 -9606 100529222 STQTL23 - - MIM:613548 1 1p32 Stature QTL 23 unknown - - - - 20120622 -9606 100529223 STQTL24 - - MIM:613549 2 2p16 Stature QTL 24 unknown - - - - 20120622 -9606 100529224 FWS - - MIM:613606 1 1p33-p31.1 Forsythe-Wakeling syndrome unknown - - - - 20120622 -9606 100529225 SMALED - - MIM:158600 - - Spinal muscular atrophy, lower extremity, autosomal dominant unknown - - - - 20121123 -9606 100529226 DUP17Q21.31 - C17DUPq21.31 MIM:613533 17 17q21.31 Chromosome 17q21.31 duplication syndrome unknown - - - - 20120622 -9606 100529227 STQTL22 - - MIM:613547 16 16q24 Stature QTL 22 unknown - - - - 20120622 -9606 100529228 TRIP4Q32.1Q32.2 - C4TRIPq32.1q32.2 MIM:613603 4 4q32.1-q32.2 Chromosome 4q32.1-q32.2 triplication syndrome unknown - - - - 20120622 -9606 100529229 FAME3 - FCMTE3 MIM:613608 5 5p15.31-p15.1 Epilepsy, familial adult myoclonic, 3 unknown - - - - 20120622 -9606 100529230 LGMD1H - - HGNC:38505|MIM:613530 3 3p25.1-p23 limb girdle muscular dystrophy 1H (autosomal dominant) unknown LGMD1H limb girdle muscular dystrophy 1H (autosomal dominant) O - 20120622 -9606 100529231 MACST - - MIM:613545 1 1p34-p32 Macrostomia unknown - - - - 20120622 -9606 100529239 RPS10-NUDT3 - - - 6 6p21 RPS10-NUDT3 readthrough protein-coding - - - RPS10-NUDT3 protein 20121230 -9606 100529240 ZNF816-ZNF321P - ZNF816-ZNF321 HGNC:38879|Ensembl:ENSG00000180257|Ensembl:ENSG00000221874|Vega:OTTHUMG00000167759 19 19q ZNF816-ZNF321P readthrough protein-coding ZNF816-ZNF321P ZNF816-ZNF321P readthrough O ZNF816-ZNF321 protein|ZNF816-ZNF321 read-through transcript|ZNF816-ZNF321 readthrough 20121230 -9606 100529241 HSPE1-MOB4 - HSPE1-PHOCN - 2 2q33 HSPE1-MOB4 readthrough protein-coding - - - HSPE1-MOB4 protein 20121230 -9606 100529242 DEL1Q41Q42 - C1DELq41q42 MIM:612530 1 1q41-q42 Chromosome 1q41-q42 deletion syndrome unknown - - - - 20120622 -9606 100529243 DEL2P12P11.2 - C2DELp12p11.2 MIM:613564 2 2p12-p11.2 Chromosome 2p12-p11.2 deletion syndrome unknown - - - - 20120622 -9606 100529251 CKLF-CMTM1 - - HGNC:39977|Ensembl:ENSG00000254788|Vega:OTTHUMG00000167106 16 16q21 CKLF-CMTM1 readthrough protein-coding CKLF-CMTM1 CKLF-CMTM1 readthrough O CKLF-CMTM1 protein 20121230 -9606 100529257 SYNJ2BP-COX16 - - - 14 14q24 SYNJ2BP-COX16 readthrough protein-coding - - - SYNJ2BP-COX16 protein 20121230 -9606 100529261 CHURC1-FNTB - - HGNC:42960|Ensembl:ENSG00000125954|Vega:OTTHUMG00000170219 14 14q23 CHURC1-FNTB readthrough protein-coding CHURC1-FNTB CHURC1-FNTB readthrough O CHURC1-FNTB protein 20121230 -9606 100529262 MIA-RAB4B - - - 19 19q MIA-RAB4B readthrough miscRNA - - - - 20121230 -9606 100529264 RAB4B-EGLN2 - RERT-lncRNA HGNC:44465 19 19q RAB4B-EGLN2 readthrough (non-protein coding) miscRNA RAB4B-EGLN2 RAB4B-EGLN2 readthrough (non-protein coding) O - 20121230 -9606 100529855 ZNF625-ZNF20 - - - 19 19p ZNF625-ZNF20 readthrough miscRNA - - - - 20121230 -9606 100532724 NPHP3-ACAD11 - - - 3 3q NPHP3-ACAD11 readthrough miscRNA - - - - 20121230 -9606 100532726 NDUFC2-KCTD14 - - HGNC:42956|Ensembl:ENSG00000259112|Vega:OTTHUMG00000171802 11 11q14.1 NDUFC2-KCTD14 readthrough protein-coding NDUFC2-KCTD14 NDUFC2-KCTD14 readthrough O NDUFC2-KCTD14 protein 20121230 -9606 100532727 DDX11L12 - - - 19 - DEAD/H box polypeptide 11 like 12 protein-coding - - - - 20120508 -9606 100532731 COMMD3-BMI1 - - - 10 - COMMD3-BMI1 readthrough protein-coding - - - COMMD3-BMI1 read-through protein 20121230 -9606 100532732 MSH5-SAPCD1 - MSH5-C6orf26 HGNC:41994|Ensembl:ENSG00000255152|Vega:OTTHUMG00000031139 6 6p MSH5-SAPCD1 readthrough (non-protein coding) miscRNA MSH5-SAPCD1 MSH5-SAPCD1 readthrough (non-protein coding) O - 20121230 -9606 100532735 INO80B-WBP1 - - - 2 - INO80B-WBP1 readthrough miscRNA - - - - 20121230 -9606 100532736 C1orf151-NBL1 - - - 1 1p36.13 C1orf151-NBL1 readthrough protein-coding - - - C1orf151-NBL1 read-through protein 20121230 -9606 100532737 ATP6V1G2-DDX39B - - HGNC:41999|Ensembl:ENSG00000254870|Vega:OTTHUMG00000031200 6 6p ATP6V1G2-DDX39B readthrough (non-protein coding) miscRNA ATP6V1G2-DDX39B ATP6V1G2-DDX39B readthrough (non-protein coding) O - 20121230 -9606 100532738 DEL1P32P31 - C1DELp32p31 MIM:613735 1 1p32-p31 Chromosome 1p32-p31 deletion syndrome unknown - - - - 20120622 -9606 100532742 PIR-FIGF - - - X Xp22 PIR-FIGF readthrough miscRNA - - - - 20121230 -9606 100532746 PPT2-EGFL8 - - Ensembl:ENSG00000258388|Vega:OTTHUMG00000171245 6 6p PPT2-EGFL8 readthrough miscRNA - - - - 20121230 -9606 100532749 LOC100532749 - - - 3 3q13 ubiquitination factor E4A (UFD2 homolog, yeast) pseudogene pseudo - - - - 20121230 -9606 100533105 C8orf44-SGK3 - - Ensembl:ENSG00000104205|Vega:OTTHUMG00000164561 8 - C8orf44-SGK3 readthrough protein-coding - - - cytokine-independent survival kinase|serine/threonine-protein kinase Sgk3|serum/glucocorticoid-regulated kinase 3 20121230 -9606 100533106 ZHX1-C8ORF76 - - HGNC:42975|Ensembl:ENSG00000259305|Vega:OTTHUMG00000165087 8 8q ZHX1-C8ORF76 readthrough protein-coding ZHX1-C8ORF76 ZHX1-C8ORF76 readthrough O ZHX1-C8orf76 readthrough transcript protein|zinc fingers and homeoboxes protein 1 20121230 -9606 100533107 RTEL1-TNFRSF6B - - HGNC:44095|Ensembl:ENSG00000026036|Vega:OTTHUMG00000170363 20 20q13.33 RTEL1-TNFRSF6B readthrough (non-protein coding) miscRNA RTEL1-TNFRSF6B RTEL1-TNFRSF6B readthrough (non-protein coding) O - 20121230 -9606 100533111 ZNF670-ZNF695 - - - 1 1q ZNF670-ZNF695 readthrough miscRNA - - - - 20121230 -9606 100533177 KRTAP29-1 - KAP29.2 HGNC:34211 17 17q21.2 keratin associated protein 29-1 protein-coding KRTAP29-1 keratin associated protein 29-1 O Keratin-associated protein 29.2|keratin-associated protein 29-1 20121128 -9606 100533178 CYorf17 - - HGNC:38732|Ensembl:ENSG00000183146|Vega:OTTHUMG00000042036 Y Yq11.223 chromosome Y open reading frame 17 protein-coding CYorf17 chromosome Y open reading frame 17 O Putative uncharacterized protein CYorf17|putative uncharacterized protein CYorf17 20121230 -9606 100533179 UBE2F-SCLY - - - 2 - UBE2F-SCLY readthrough miscRNA - - - - 20121230 -9606 100533181 FXYD6-FXYD2 - - HGNC:39978|Ensembl:ENSG00000255245|Vega:OTTHUMG00000166496 11 11q23 FXYD6-FXYD2 readthrough protein-coding FXYD6-FXYD2 FXYD6-FXYD2 readthrough O FXYD6-FXYD2 read-through protein 20121230 -9606 100533182 SEC24B-AS1 - 1/2-SBSRNA4 HGNC:44003 4 4q25 SEC24B antisense RNA 1 miscRNA SEC24B-AS1 SEC24B antisense RNA 1 O - 20121230 -9606 100533183 ZNF664-FAM101A - - Ensembl:ENSG00000255906|Vega:OTTHUMG00000168597 12 12q24.31 protein FAM101A protein-coding - - - ZNF664-FAM101A readthrough 20121230 -9606 100533184 ARHGAP19-SLIT1 - - - 10 10q ARHGAP19-SLIT1 readthrough miscRNA - - - - 20121230 -9606 100533195 FAM24B-CUZD1 UNQ224 - - 10 10q FAM24B-CUZD1 readthrough miscRNA - - - - 20121230 -9606 100533464 PRH1-PRR4 - PRH1 - 12 12p PRH1-PRR4 readthrough miscRNA - - - - 20121230 -9606 100533467 BIVM-ERCC5 - - - 13 13q BIVM-ERCC5 readthrough protein-coding - - - BIVM-ERCC5 protein 20121230 -9606 100533483 DYX1C1-CCPG1 - - HGNC:43019 15 15q DYX1C1-CCPG1 readthrough (non-protein coding) miscRNA DYX1C1-CCPG1 DYX1C1-CCPG1 readthrough (non-protein coding) O - 20121230 -9606 100533496 TVP23C-CDRT4 - FAM18B2-CDRT4 HGNC:42961|Ensembl:ENSG00000259024|Vega:OTTHUMG00000165004 17 17p TVP23C-CDRT4 readthrough protein-coding TVP23C-CDRT4 TVP23C-CDRT4 readthrough O FAM18B2-CDRT4 readthrough|uncharacterized protein LOC100533496 20121230 -9606 100533618 LOC100533618 - - - X - ubinuclein 1 pseudogene pseudo - - - - 20121230 -9606 100533619 LOC100533619 - - - 16 - thymopoietin pseudogene pseudo - - - - 20121230 -9606 100533620 LOC100533620 - - - 8 - tubulin, beta pseudogene pseudo - - - - 20121230 -9606 100533621 LOC100533621 - - - 3 - fibrosin-like 1 pseudogene pseudo - - - - 20121230 -9606 100533622 LOC100533622 - - - 8 - sulfite oxidase pseudogene pseudo - - - - 20121230 -9606 100533624 LOC100533624 - - - 19 - sorting nexin 33 pseudogene pseudo - - - - 20121230 -9606 100533625 LOC100533625 - - - 19 - sorting nexin 18 pseudogene pseudo - - - - 20121230 -9606 100533626 LOC100533626 - - - 1 - tubulin, alpha 1c pseudogene pseudo - - - - 20121230 -9606 100533627 LOC100533627 - - - 1 - tubulin, alpha 1c pseudogene pseudo - - - - 20121230 -9606 100533628 LOC100533628 - - - 14 - WD repeat domain 75 pseudogene pseudo - - - - 20121230 -9606 100533629 LOC100533629 - - - 5 - FAST kinase domains 1 pseudogene pseudo - - - - 20121230 -9606 100533630 LOC100533630 - - - 4 - chimerin 1 pseudogene pseudo - - - - 20121230 -9606 100533631 LOC100533631 - - - 7 - 5-azacytidine induced 2 pseudogene pseudo - - - - 20121230 -9606 100533632 LOC100533632 - - - 7 - zinc finger protein 736 pseudogene pseudo - - - - 20121230 -9606 100533633 LOC100533633 - - - 7 - zinc finger protein 257 pseudogene pseudo - - - - 20121230 -9606 100533634 LOC100533634 - - - 7 - zinc finger protein 737 pseudogene pseudo - - - - 20121230 -9606 100533635 LOC100533635 - - - 7 - zinc finger protein 384 pseudogene pseudo - - - - 20121230 -9606 100533636 LOC100533636 - - - X - zinc finger protein 519 pseudogene pseudo - - - - 20121230 -9606 100533637 LOC100533637 - - - 22 - zinc finger protein 83 pseudogene pseudo - - - - 20121230 -9606 100533638 LOC100533638 - - - 19 - zinc finger protein 85 pseudogene pseudo - - - - 20121230 -9606 100533640 LOC100533640 - - - 17 - WEE1 homolog (S. pombe) pseudogene pseudo - - - - 20121230 -9606 100533641 LOC100533641 - - - 12 - zinc finger protein 100 pseudogene pseudo - - - - 20121230 -9606 100533642 FNBP1P1 - - HGNC:44528 2 - formin binding protein 1 pseudogene 1 pseudo FNBP1P1 formin binding protein 1 pseudogene 1 O - 20121230 -9606 100533643 LOC100533643 - - - 11 - zinc finger protein 91 pseudogene pseudo - - - - 20121230 -9606 100533644 LOC100533644 - - - 11 - zinc finger protein 628 pseudogene pseudo - - - - 20121230 -9606 100533646 LOC100533646 - - - 20 - zinc finger protein 135 pseudogene pseudo - - - - 20121230 -9606 100533648 LOC100533648 - - - 7 - uncharacterized LOC100533648 pseudo - - - - 20121230 -9606 100533649 LOC100533649 - - - 7 - uncharacterized LOC100533649 pseudo - - - - 20121230 -9606 100533650 LOC100533650 - - - 7 - uncharacterized LOC100533650 pseudo - - - - 20121230 -9606 100533651 LOC100533651 - - - 7 - uncharacterized LOC100533651 pseudo - - - - 20121230 -9606 100533652 LOC100533652 - - - 7 - uncharacterized LOC100533652 pseudo - - - - 20121230 -9606 100533653 LOC100533653 - - - 17 - fermitin family member 3 pseudogene pseudo - - - - 20121230 -9606 100533654 LOC100533654 - - - 12 - SDA1 domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100533655 LOC100533655 - - - 6 - aryl hydrocarbon receptor pseudogene pseudo - - - - 20121230 -9606 100533658 HSPA8P17 - - HGNC:44932 9 - heat shock 70kDa protein 8 pseudogene 17 pseudo HSPA8P17 heat shock 70kDa protein 8 pseudogene 17 O - 20121230 -9606 100533659 LOC100533659 - - - 12 - ERO1-like (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100533660 EI24P5 - - HGNC:44590 8 - etoposide induced 2.4 pseudogene 5 pseudo EI24P5 etoposide induced 2.4 pseudogene 5 O - 20121230 -9606 100533661 LOC100533661 - - - 7 - shugoshin-like 1 (S. pombe) pseudogene pseudo - - - - 20121230 -9606 100533662 LOC100533662 - - - 18 - serine/threonine kinase 25 pseudogene pseudo - - - - 20121230 -9606 100533663 LOC100533663 - - - 3 - histidine-rich glycoprotein pseudogene pseudo - - - - 20121230 -9606 100533664 PTCHD3P2 - - HGNC:44946 2 - patched domain containing 3 pseudogene 2 pseudo PTCHD3P2 patched domain containing 3 pseudogene 2 O - 20121230 -9606 100533665 PTCHD3P3 - - HGNC:44947 6 - patched domain containing 3 pseudogene 3 pseudo PTCHD3P3 patched domain containing 3 pseudogene 3 O - 20121230 -9606 100533666 LOC100533666 - - - 1 - shugoshin-like 1 (S. pombe) pseudogene pseudo - - - - 20121230 -9606 100533667 LOC100533667 - - - 5 - T, brachyury homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100533668 LOC100533668 - - - 2 - Kruppel-like factor 2 (lung) pseudogene pseudo - - - - 20121230 -9606 100533669 LOC100533669 - - - X - melanoma antigen family A, 10 pseudogene pseudo - - - - 20121230 -9606 100533670 LOC100533670 - - - 4 - tripartite motif containing 60 pseudogene pseudo - - - - 20121230 -9606 100533671 ADAM20P2 - - HGNC:43901 4 - ADAM metallopeptidase domain 20 pseudogene 2 pseudo ADAM20P2 ADAM metallopeptidase domain 20 pseudogene 2 O - 20121230 -9606 100533672 TRIM60P19 - - HGNC:42010 13 - tripartite motif containing 60 pseudogene 19 pseudo TRIM60P19 tripartite motif containing 60 pseudogene 19 O - 20121230 -9606 100533673 LOC100533673 - - - 7 - oxysterol binding protein-like 9 pseudogene pseudo - - - - 20121230 -9606 100533674 LOC100533674 - - - 9 - nuclear pore associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100533675 LOC100533675 - - - 9 - nuclear pore associated protein 1 pseudogene pseudo - - - - 20121230 -9606 100533676 LOC100533676 - - - 10 - phosphatase and actin regulator 2 pseudogene pseudo - - - - 20121230 -9606 100533677 LOC100533677 - - - 5 - coiled-coil domain containing 176 pseudogene pseudo - - - - 20121230 -9606 100533678 LOC100533678 - - - 2 - serine/arginine repetitive matrix 1 pseudogene pseudo - - - - 20121230 -9606 100533679 LOC100533679 - - - 22 - URI1, prefoldin-like chaperone pseudogene pseudo - - - - 20121230 -9606 100533682 MIPEPP1 - - HGNC:39456 7 - mitochondrial intermediate peptidase pseudogene 1 pseudo MIPEPP1 mitochondrial intermediate peptidase pseudogene 1 O - 20121230 -9606 100533695 RLIMP1 - - HGNC:39682 13 - ring finger protein, LIM domain interacting pseudogene 1 pseudo RLIMP1 ring finger protein, LIM domain interacting pseudogene 1 O - 20121230 -9606 100533705 SLC9B1P5 - - HGNC:43584 16 - solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 5 pseudo SLC9B1P5 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 pseudogene 5 O - 20121230 -9606 100533706 LOC100533706 - - - 11 - NEDD8 activating enzyme E1 subunit 1 pseudogene pseudo - - - - 20121230 -9606 100533707 LOC100533707 - - - 9 - ZFP37 zinc finger protein pseudogene pseudo - - - - 20121230 -9606 100533708 LOC100533708 - - - 4 - protein inhibitor of activated STAT, 2 pseudogene pseudo - - - - 20121230 -9606 100533709 LOC100533709 - - - 2 - piggyBac transposable element derived 2 pseudogene pseudo - - - - 20121230 -9606 100533710 LOC100533710 - - - 11 - mannosidase, alpha, class 1B, member 1 pseudogene pseudo - - - - 20121230 -9606 100533711 LOC100533711 - - - 20 - cytoskeleton associated protein 2-like pseudogene pseudo - - - - 20121230 -9606 100533712 LOC100533712 - - - X - Mdm4 p53 binding protein homolog (mouse) pseudogene pseudo - - - - 20121230 -9606 100533713 ELL2P3 - - HGNC:39345 13 - elongation factor, RNA polymerase II, 2 pseudogene 3 pseudo ELL2P3 elongation factor, RNA polymerase II, 2 pseudogene 3 O - 20121230 -9606 100533714 LOC100533714 - - - 7 - DEAD (Asp-Glu-Ala-Asp) box polypeptide 43 pseudogene pseudo - - - - 20121230 -9606 100533716 LOC100533716 - - - X - DEAD (Asp-Glu-Ala-Asp) box polypeptide 53 pseudogene pseudo - - - - 20121230 -9606 100533717 LOC100533717 - - - 15 - breast cancer anti-estrogen resistance 1 pseudogene pseudo - - - - 20121230 -9606 100533718 LOC100533718 - - - 15 - breast cancer anti-estrogen resistance 1 pseudogene pseudo - - - - 20121209 -9606 100533719 ANKRD20A14P - - HGNC:43605 1 - ankyrin repeat domain 20 family, member A14, pseudogene pseudo ANKRD20A14P ankyrin repeat domain 20 family, member A14, pseudogene O - 20121230 -9606 100533720 ANKRD20A15P - - HGNC:43606 1 - ankyrin repeat domain 20 family, member A15, pseudogene pseudo ANKRD20A15P ankyrin repeat domain 20 family, member A15, pseudogene O - 20121209 -9606 100533721 PNPT1P2 - - HGNC:44469 7 - polyribonucleotide nucleotidyltransferase 1 pseudogene 2 pseudo PNPT1P2 polyribonucleotide nucleotidyltransferase 1 pseudogene 2 O - 20121230 -9606 100533722 LOC100533722 - - - 7 - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533723 LOC100533723 - - - Y - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533725 LOC100533725 - - - 9 - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533727 LOC100533727 - - - 2 - replication factor C (activator 1) 2, 40kDa pseudogene pseudo - - - - 20121230 -9606 100533728 LOC100533728 - - - X - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533729 LOC100533729 - - - X - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533730 LOC100533730 - - - X - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533731 RLIMP2 - - HGNC:39683 1 - ring finger protein, LIM domain interacting pseudogene 2 pseudo RLIMP2 ring finger protein, LIM domain interacting pseudogene 2 O - 20121230 -9606 100533732 LOC100533732 - - - 1 - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533733 LOC100533733 - - - 4 - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533734 LOC100533734 - - - 4 - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533735 LOC100533735 - - - 4 - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533736 LOC100533736 - - - 4 - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533754 LOC100533754 - - - 3 - MAP/microtubule affinity-regulating kinase 3 pseudogene pseudo - - - - 20121230 -9606 100533755 LOC100533755 - - - 3 - MAP/microtubule affinity-regulating kinase 2 pseudogene pseudo - - - - 20121230 -9606 100533757 LOC100533757 - - - 12 - Sjogren syndrome antigen B (autoantigen La) pseudogene pseudo - - - - 20121230 -9606 100533787 LOC100533787 - - - 14 - HERV-FRD provirus ancestral Env polyprotein pseudogene pseudo - - - - 20121230 -9606 100533789 LRRC37A8P - - HGNC:43793 17 - leucine rich repeat containing 37, member A8, pseudogene pseudo LRRC37A8P leucine rich repeat containing 37, member A8, pseudogene O - 20121230 -9606 100533790 LRRC37A9P - - HGNC:43813 17 - leucine rich repeat containing 37, member A9, pseudogene pseudo LRRC37A9P leucine rich repeat containing 37, member A9, pseudogene O - 20121230 -9606 100533791 LRRC37A10P - - HGNC:43814 17 - leucine rich repeat containing 37, member A10, pseudogene pseudo LRRC37A10P leucine rich repeat containing 37, member A10, pseudogene O - 20121230 -9606 100533794 LOC100533794 - - - 10 - MAP/microtubule affinity-regulating kinase 2 pseudogene pseudo - - - - 20121230 -9606 100533795 LOC100533795 - - - 10 - MAP/microtubule affinity-regulating kinase 2 pseudogene pseudo - - - - 20121230 -9606 100533800 BMPR1APS2 - - HGNC:21743 11 11q24.1 bone morphogenetic protein receptor, type IA pseudogene 2 pseudo BMPR1APS2 bone morphogenetic protein receptor, type IA pseudogene 2 O - 20121230 -9606 100533814 LOC100533814 - - - 7 - family with sequence similarity 115, member C pseudogene pseudo - - - - 20121230 -9606 100533842 LOC100533842 - - - 2 - ATP-binding cassette, sub-family G (WHITE), member 2 pseudogene pseudo - - - - 20121230 -9606 100533843 LOC100533843 - - - X - karyopherin alpha 2 (RAG cohort 1, importin alpha 1) pseudogene pseudo - - - - 20121230 -9606 100533844 TARS2P1 - - HGNC:43712 4 - threonyl-tRNA synthetase 2, mitochondrial pseudogene pseudo TARS2P1 threonyl-tRNA synthetase 2, mitochondrial pseudogene O - 20121230 -9606 100533845 LOC100533845 - - - 4 - UDP glucuronosyltransferase 2 family, polypeptide A3 pseudogene pseudo - - - - 20121230 -9606 100533846 LOC100533846 - - - 19 - solute carrier family 30 (zinc transporter), member 5 pseudogene pseudo - - - - 20121230 -9606 100533847 TYW1P1 - - HGNC:41905 2 - tRNA-yW synthesizing protein 1 homolog pseudogene 1 pseudo TYW1P1 tRNA-yW synthesizing protein 1 homolog pseudogene 1 O - 20121230 -9606 100533848 LOC100533848 - - - 2 - ATPase, H+/K+ transporting, nongastric, alpha polypeptide pseudogene pseudo - - - - 20121230 -9606 100533849 LOC100533849 - - - 10 - mitogen-activated protein kinase-activated protein kinase 5 pseudogene pseudo - - - - 20121230 -9606 100533850 LOC100533850 - - - 15 - M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) pseudogene pseudo - - - - 20121230 -9606 100533851 ATP8A2P2 - - HGNC:39663 13 - ATPase, aminophospholipid transporter, class I, type 8A, member 2 pseudogene 2 pseudo ATP8A2P2 ATPase, aminophospholipid transporter, class I, type 8A, member 2 pseudogene 2 O - 20121230 -9606 100533852 LOC100533852 - - - 18 - nuclear factor of kappa light polypeptide gene enhancer in B-cells 2 (p49/p100) pseudogene pseudo - - - - 20121230 -9606 100533853 LOC100533853 - - - 15 - protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) pseudogene pseudo - - - - 20121230 -9606 100533884 LOC100533884 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100533885 LOC100533885 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100533886 LOC100533886 - - - - - tenascin XB pseudogene pseudo - - - - 20120318 -9606 100533887 LOC100533887 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100533888 LOC100533888 - - - - - tenascin XB pseudogene pseudo - - - - 20120318 -9606 100533889 LOC100533889 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100533890 LOC100533890 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100533891 LOC100533891 - - - - - tenascin XB pseudogene pseudo - - - - 20120318 -9606 100533892 LOC100533892 - - - - - ubiquilin 1 pseudogene pseudo - - - - 20120318 -9606 100533893 LOC100533893 - - - - - thymopoietin pseudogene pseudo - - - - 20120318 -9606 100533894 LOC100533894 - - - - - thymopoietin pseudogene pseudo - - - - 20120318 -9606 100533895 LOC100533895 - - - - - thymopoietin pseudogene pseudo - - - - 20120318 -9606 100533896 LOC100533896 - - - - - thymopoietin pseudogene pseudo - - - - 20120318 -9606 100533897 LOC100533897 - - - - - thymopoietin pseudogene pseudo - - - - 20120318 -9606 100533898 LOC100533898 - - - - - fibrosin-like 1 pseudogene pseudo - - - - 20120318 -9606 100533899 LOC100533899 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100533900 LOC100533900 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100533901 LOC100533901 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100533902 LOC100533902 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100533903 LOC100533903 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100533904 LOC100533904 - - - - - ribosomal protein L3 pseudogene pseudo - - - - 20120318 -9606 100533905 LOC100533905 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100533906 LOC100533906 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100533907 LOC100533907 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100533908 LOC100533908 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100533909 LOC100533909 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100533910 LOC100533910 - - - - - WAS protein family, member 3 pseudogene pseudo - - - - 20120318 -9606 100533911 LOC100533911 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100533912 LOC100533912 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100533913 LOC100533913 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100533914 LOC100533914 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100533915 LOC100533915 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100533916 LOC100533916 - - - - - ubiquitin specific peptidase 8 pseudogene pseudo - - - - 20120318 -9606 100533917 LOC100533917 - - - - - N-ethylmaleimide-sensitive factor pseudogene pseudo - - - - 20120318 -9606 100533918 LOC100533918 - - - - - DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene pseudo - - - - 20120318 -9606 100533919 LOC100533919 - - - - - DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene pseudo - - - - 20120318 -9606 100533920 LOC100533920 - - - - - DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene pseudo - - - - 20120318 -9606 100533921 LOC100533921 - - - - - DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene pseudo - - - - 20120318 -9606 100533922 LOC100533922 - - - - - DEAD (Asp-Glu-Ala-Asp) box helicase 6 pseudogene pseudo - - - - 20120318 -9606 100533923 LOC100533923 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100533924 LOC100533924 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100533925 LOC100533925 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100533926 LOC100533926 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100533927 LOC100533927 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100533928 LOC100533928 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100533929 LOC100533929 - - - - - eukaryotic translation termination factor 1 pseudogene pseudo - - - - 20120318 -9606 100533930 LOC100533930 - - - - - family with sequence similarity 8, member A1 pseudogene pseudo - - - - 20120318 -9606 100533931 LOC100533931 - - - - - family with sequence similarity 8, member A1 pseudogene pseudo - - - - 20120318 -9606 100533932 LOC100533932 - - - - - family with sequence similarity 8, member A1 pseudogene pseudo - - - - 20120318 -9606 100533933 LOC100533933 - - - - - leucine rich repeat containing 37A pseudogene pseudo - - - - 20121024 -9606 100533934 LOC100533934 - - - - - leucine rich repeat containing 37A pseudogene pseudo - - - - 20121024 -9606 100533935 LOC100533935 - - - - - leucine rich repeat containing 37, member A2 pseudogene pseudo - - - - 20120602 -9606 100533936 LOC100533936 - - - - - major histocompatibility complex, class I, B pseudogene pseudo - - - - 20120318 -9606 100533937 LOC100533937 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100533938 LOC100533938 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100533939 LOC100533939 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100533940 LOC100533940 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100533941 LOC100533941 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100533942 LOC100533942 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100533943 LOC100533943 - - - - - poly(A) binding protein interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100533944 LOC100533944 - - - - - succinate-CoA ligase, ADP-forming, beta subunit pseudogene pseudo - - - - 20120318 -9606 100533945 LOC100533945 - - - - - succinate-CoA ligase, ADP-forming, beta subunit pseudogene pseudo - - - - 20120318 -9606 100533946 LOC100533946 - - - - - succinate-CoA ligase, ADP-forming, beta subunit pseudogene pseudo - - - - 20120318 -9606 100533947 LOC100533947 - - - - - succinate-CoA ligase, ADP-forming, beta subunit pseudogene pseudo - - - - 20120318 -9606 100533948 LOC100533948 - - - - - succinate-CoA ligase, ADP-forming, beta subunit pseudogene pseudo - - - - 20120318 -9606 100533949 LOC100533949 - - - - - mitogen-activated protein kinase 8 interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100533950 LOC100533950 - - - - - mitogen-activated protein kinase 8 interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100533951 LOC100533951 - - - - - mitogen-activated protein kinase 8 interacting protein 1 pseudogene pseudo - - - - 20120318 -9606 100533952 RBAK-LOC389458 - - Ensembl:ENSG00000146587|Vega:OTTHUMG00000121155 7 - RBAK-LOC389458 readthrough protein-coding - - - uncharacterized protein LOC100533952 20121230 -9606 100533955 SENP3-EIF4A1 - - - 17 17p SENP3-EIF4A1 readthrough miscRNA - - - - 20121230 -9606 100533970 P2RX5-TAX1BP3 - - - 17 17p P2RX5-TAX1BP3 readthrough miscRNA - - - - 20121230 -9606 100533975 SLMO2-ATP5E - - - 20 - SLMO2-ATP5E readthrough miscRNA - - - - 20121230 -9606 100533990 APOC4-APOC2 - - - 19 19q APOC4-APOC2 readthrough miscRNA - - - - 20121230 -9606 100533997 MAGEA10-MAGEA5 - CT1.5 - X Xq28 MAGEA10-MAGEA5 readthrough protein-coding - - - MAGE-5 antigen|cancer/testis antigen 1.5|melanoma-associated antigen 5 20121230 -9606 100534012 TNFAIP8L2-SCNM1 - - - 1 1q21.3 TNFAIP8L2-SCNM1 readthrough protein-coding - - - TNFAIP8L2-SCNM1 protein 20121230 -9606 100534589 HOXA10-HOXA9 - - - 7 7p15.2 HOXA10-HOXA9 readthrough miscRNA - - - - 20121230 -9606 100534592 URGCP-MRPS24 - - - 7 7p13 URGCP-MRPS24 readthrough protein-coding - - - uncharacterized protein LOC100534592 20121230 -9606 100534593 STX16-NPEPL1 - - HGNC:41993|Ensembl:ENSG00000254995|Vega:OTTHUMG00000167390 20 20q STX16-NPEPL1 readthrough (non-protein coding) miscRNA STX16-NPEPL1 STX16-NPEPL1 readthrough (non-protein coding) O - 20121230 -9606 100534595 HNRNPUL2-BSCL2 - - - 11 - HNRNPUL2-BSCL2 readthrough miscRNA - - - - 20121230 -9606 100534599 ISY1-RAB43 - - HGNC:42969|Ensembl:ENSG00000240682|Ensembl:ENSG00000261796|Vega:OTTHUMG00000137365|Vega:OTTHUMG00000177122 3 3q ISY1-RAB43 readthrough protein-coding ISY1-RAB43 ISY1-RAB43 readthrough O ISY1-RAB43 protein 20121230 -9606 100534611 TM4SF19-TCTEX1D2 - - - 3 3q TM4SF19-TCTEX1D2 readthrough miscRNA - - - - 20121230 -9606 100534612 C1QTNF3-AMACR - - - 5 5p C1QTNF3-AMACR readthrough miscRNA - - - - 20121230 -9606 100534624 LCR-OPSIN - - MIM:300824 X - opsin locus control region other - - - - 20120815 -9606 100551499 LINC00159 - C21orf44|NCRNA00159 HGNC:1285 21 21q22.11 long intergenic non-protein coding RNA 159 miscRNA LINC00159 long intergenic non-protein coding RNA 159 O - 20121230 -9606 100568447 IGHV3OR16-14 - IGHV3OR1614 HGNC:5638|IMGT/GENE-DB:IGHV3/OR16-14 16 16p11.2 immunoglobulin heavy variable 3/OR16-14 (pseudogene) pseudo IGHV3OR16-14 immunoglobulin heavy variable 3/OR16-14 (pseudogene) O - 20120318 -9606 100616100 ERVK-2 - c3_A HGNC:39001 3 3p25.3 endogenous retrovirus group K, member 2 unknown ERVK-2 endogenous retrovirus group K, member 2 O - 20120726 -9606 100616101 ERVK-10 - PR|Protease|Proteinase HGNC:39004 5 5q33.3 endogenous retrovirus group K, member 10 unknown ERVK-10 endogenous retrovirus group K, member 10 O - 20121211 -9606 100616102 ERVK-9 - polymerase HGNC:39005 6 6q14.1 endogenous retrovirus group K, member 9 unknown ERVK-9 endogenous retrovirus group K, member 9 O - 20120726 -9606 100616103 ERVK-21 - Endo-Rev2|c12_A|envK1 HGNC:39035 12 12q14.1 endogenous retrovirus group K, member 21 unknown ERVK-21 endogenous retrovirus group K, member 21 O - 20121017 -9606 100616104 ERVFH21-1 - - HGNC:39047 7 7p21.3 endogenous retrovirus group FH21, member 1 unknown ERVFH21-1 endogenous retrovirus group FH21, member 1 O - 20121017 -9606 100616105 ERVE-4 - CT-RCC-1 HGNC:39050 6 6q15 endogenous retrovirus group E, member 4 unknown ERVE-4 endogenous retrovirus group E, member 4 O - 20121017 -9606 100616106 ERVK3-4 - HML6-c11 HGNC:39109 11 11p15.4 endogenous retrovirus group K3, member 4 unknown ERVK3-4 endogenous retrovirus group K3, member 4 O - 20121017 -9606 100616107 ERVK3-6 - HML6-c19A HGNC:39111 19 19q13.41 endogenous retrovirus group K3, member 6 unknown ERVK3-6 endogenous retrovirus group K3, member 6 O - 20121017 -9606 100616108 ERVK3-8 - - HGNC:39113 20 20p11.21 endogenous retrovirus group K3, member 8 unknown ERVK3-8 endogenous retrovirus group K3, member 8 O - 20121017 -9606 100616109 MIR4464 - - HGNC:41528|miRBase:MI0016812 6 - microRNA 4464 miscRNA MIR4464 microRNA 4464 O - 20121230 -9606 100616110 MIR2681 - - HGNC:41532|miRBase:MI0012062 13 - microRNA 2681 miscRNA MIR2681 microRNA 2681 O - 20121230 -9606 100616111 MIR4455 - - HGNC:41536|miRBase:MI0016801 4 - microRNA 4455 miscRNA MIR4455 microRNA 4455 O - 20121230 -9606 100616112 MIR4793 - - HGNC:41538|miRBase:MI0017440 3 - microRNA 4793 miscRNA MIR4793 microRNA 4793 O - 20121230 -9606 100616113 MIR4680 - - HGNC:41541|miRBase:MI0017312 10 - microRNA 4680 miscRNA MIR4680 microRNA 4680 O - 20121230 -9606 100616114 MIR4668 - - HGNC:41545|miRBase:MI0017298 9 - microRNA 4668 miscRNA MIR4668 microRNA 4668 O - 20121230 -9606 100616115 MIR4469 - - HGNC:41556|miRBase:MI0016820 8 - microRNA 4469 miscRNA MIR4469 microRNA 4469 O - 20121230 -9606 100616116 MIR4648 - - HGNC:41560|miRBase:MI0017275 7 - microRNA 4648 miscRNA MIR4648 microRNA 4648 O - 20121230 -9606 100616117 MIR4653 - - HGNC:41562|miRBase:MI0017281 7 - microRNA 4653 miscRNA MIR4653 microRNA 4653 O - 20121230 -9606 100616118 MIR4486 - - HGNC:41566|miRBase:MI0016847 11 - microRNA 4486 miscRNA MIR4486 microRNA 4486 O - 20121230 -9606 100616119 MIR4697 - - HGNC:41570|miRBase:MI0017330 11 - microRNA 4697 miscRNA MIR4697 microRNA 4697 O - 20121230 -9606 100616120 MIR4695 - - HGNC:41573|miRBase:MI0017328 1 - microRNA 4695 miscRNA MIR4695 microRNA 4695 O - 20121230 -9606 100616121 MIR1268B - - HGNC:41581|miRBase:MI0016748 17 - microRNA 1268b miscRNA MIR1268B microRNA 1268b O - 20121230 -9606 100616122 MIR4523 - - HGNC:41583|miRBase:MI0016890 17 - microRNA 4523 miscRNA MIR4523 microRNA 4523 O - 20121209 -9606 100616123 MIR4436B1 - MIR4436B|hsa-mir-4436b-1 HGNC:41587|miRBase:MI0017425 2 - microRNA 4436b-1 miscRNA MIR4436B1 microRNA 4436b-1 O - 20121230 -9606 100616124 MIR4647 - - HGNC:41594|miRBase:MI0017274 6 - microRNA 4647 miscRNA MIR4647 microRNA 4647 O - 20121230 -9606 100616125 MIR4731 - - HGNC:41597|miRBase:MI0017368 17 - microRNA 4731 miscRNA MIR4731 microRNA 4731 O - 20121230 -9606 100616126 MIR4686 - - HGNC:41601|miRBase:MI0017318 11 - microRNA 4686 miscRNA MIR4686 microRNA 4686 O - 20121230 -9606 100616127 MIR4448 - - HGNC:41604|miRBase:MI0016791 3 - microRNA 4448 miscRNA MIR4448 microRNA 4448 O - 20121230 -9606 100616128 MIR4679-1 - - HGNC:41612|miRBase:MI0017310 10 - microRNA 4679-1 miscRNA MIR4679-1 microRNA 4679-1 O - 20121230 -9606 100616129 MIR4445 - - HGNC:41614|miRBase:MI0016788 3 - microRNA 4445 miscRNA MIR4445 microRNA 4445 O - 20121230 -9606 100616130 MIR4526 - - HGNC:41618|miRBase:MI0016893 18 - microRNA 4526 miscRNA MIR4526 microRNA 4526 O - 20121230 -9606 100616131 MIR3689D1 - - HGNC:41621|miRBase:MI0016834 9 - microRNA 3689d-1 miscRNA MIR3689D1 microRNA 3689d-1 O - 20121230 -9606 100616132 MIR4728 - - HGNC:41632|miRBase:MI0017365 17 - microRNA 4728 miscRNA MIR4728 microRNA 4728 O - 20121230 -9606 100616133 MIR4699 - - HGNC:41636|miRBase:MI0017332 12 - microRNA 4699 miscRNA MIR4699 microRNA 4699 O - 20121230 -9606 100616134 MIR499B - MIR499A|hsa-mir-499b HGNC:41640|miRBase:MI0017396 20 - microRNA 499b miscRNA MIR499B microRNA 499b O - 20121230 -9606 100616135 MIR4507 - - HGNC:41642|miRBase:MI0016871 14 - microRNA 4507 miscRNA MIR4507 microRNA 4507 O - 20121230 -9606 100616136 MIR4430 - - HGNC:41646|miRBase:MI0016769 2 - microRNA 4430 miscRNA MIR4430 microRNA 4430 O - 20121230 -9606 100616137 MIR4501 - - HGNC:41650|miRBase:MI0016864 13 - microRNA 4501 miscRNA MIR4501 microRNA 4501 O - 20121230 -9606 100616138 MIR4787 - - HGNC:41653|miRBase:MI0017434 3 - microRNA 4787 miscRNA MIR4787 microRNA 4787 O - 20121230 -9606 100616139 MIR4741 - - HGNC:41661|miRBase:MI0017379 18 - microRNA 4741 miscRNA MIR4741 microRNA 4741 O - 20121230 -9606 100616140 MIR4506 - - HGNC:41663|miRBase:MI0016869 14 - microRNA 4506 miscRNA MIR4506 microRNA 4506 O - 20121230 -9606 100616141 MIR4428 - - HGNC:41667|miRBase:MI0016767 1 - microRNA 4428 miscRNA MIR4428 microRNA 4428 O - 20121230 -9606 100616142 MIR4458 - - HGNC:41674|miRBase:MI0016804 5 - microRNA 4458 miscRNA MIR4458 microRNA 4458 O - 20121230 -9606 100616143 MIR4763 - - HGNC:41677|miRBase:MI0017404 22 - microRNA 4763 miscRNA MIR4763 microRNA 4763 O - 20121230 -9606 100616144 MIR548AN - - HGNC:41681|miRBase:MI0016907 X - microRNA 548an miscRNA MIR548AN microRNA 548an O - 20121230 -9606 100616145 MIR1273G - - HGNC:41684|miRBase:MI0018003 1 - microRNA 1273g miscRNA MIR1273G microRNA 1273g O - 20121230 -9606 100616146 MIR4534 - - HGNC:41692|miRBase:MI0016901 22 - microRNA 4534 miscRNA MIR4534 microRNA 4534 O - 20121230 -9606 100616147 MIR4769 - - HGNC:41694|miRBase:MI0017410 X - microRNA 4769 miscRNA MIR4769 microRNA 4769 O - 20121230 -9606 100616148 MIR4760 - - HGNC:41698|miRBase:MI0017401 21 - microRNA 4760 miscRNA MIR4760 microRNA 4760 O - 20121230 -9606 100616149 MIR4512 - - HGNC:41701|miRBase:MI0016878 15 - microRNA 4512 miscRNA MIR4512 microRNA 4512 O - 20121230 -9606 100616150 MIR4720 - - HGNC:41705|miRBase:MI0017355 16 - microRNA 4720 miscRNA MIR4720 microRNA 4720 O - 20121230 -9606 100616151 MIR4480 - - HGNC:41716|miRBase:MI0016841 10 - microRNA 4480 miscRNA MIR4480 microRNA 4480 O - 20121230 -9606 100616152 MIR4804 - - HGNC:41720|miRBase:MI0017452 5 - microRNA 4804 miscRNA MIR4804 microRNA 4804 O - 20121230 -9606 100616153 MIR4726 - - HGNC:41722|miRBase:MI0017363 17 - microRNA 4726 miscRNA MIR4726 microRNA 4726 O - 20121230 -9606 100616154 MIR4466 - - HGNC:41726|miRBase:MI0016817 6 - microRNA 4466 miscRNA MIR4466 microRNA 4466 O - 20121230 -9606 100616155 MIR4536-1 - MIR4536|hsa-mir-4536-1 HGNC:41730|miRBase:MI0016906 X - microRNA 4536-1 miscRNA MIR4536-1 microRNA 4536-1 O - 20121230 -9606 100616156 MIR1273F - - HGNC:41733|miRBase:MI0018002 1 - microRNA 1273f miscRNA MIR1273F microRNA 1273f O - 20121230 -9606 100616157 MIR4772 - - HGNC:41741|miRBase:MI0017414 2 - microRNA 4772 miscRNA MIR4772 microRNA 4772 O - 20121230 -9606 100616158 MIR4505 - - HGNC:41743|miRBase:MI0016868 14 - microRNA 4505 miscRNA MIR4505 microRNA 4505 O - 20121230 -9606 100616159 MIR4779 - - HGNC:41747|miRBase:MI0017423 2 - microRNA 4779 miscRNA MIR4779 microRNA 4779 O - 20121230 -9606 100616160 MIR4655 - - HGNC:41754|miRBase:MI0017283 7 - microRNA 4655 miscRNA MIR4655 microRNA 4655 O - 20121230 -9606 100616161 MIR4795 - - HGNC:41757|miRBase:MI0017442 3 - microRNA 4795 miscRNA MIR4795 microRNA 4795 O - 20121230 -9606 100616162 MIR4483 - - HGNC:41761|miRBase:MI0016844 10 - microRNA 4483 miscRNA MIR4483 microRNA 4483 O - 20121230 -9606 100616163 MIR4530 - - HGNC:41764|miRBase:MI0016897 19 - microRNA 4530 miscRNA MIR4530 microRNA 4530 O - 20121230 -9606 100616164 MIR4420 - - HGNC:41772|miRBase:MI0016757 1 - microRNA 4420 miscRNA MIR4420 microRNA 4420 O - 20121230 -9606 100616165 MIR4771-2 - - HGNC:41774|miRBase:MI0017413 2 - microRNA 4771-2 miscRNA MIR4771-2 microRNA 4771-2 O - 20121230 -9606 100616166 MIR4796 - - HGNC:41779|miRBase:MI0017443 3 - microRNA 4796 miscRNA MIR4796 microRNA 4796 O - 20121230 -9606 100616167 MIR4722 - - HGNC:41782|miRBase:MI0017357 16 - microRNA 4722 miscRNA MIR4722 microRNA 4722 O - 20121230 -9606 100616168 MIR4754 - - HGNC:41786|miRBase:MI0017394 19 - microRNA 4754 miscRNA MIR4754 microRNA 4754 O - 20121230 -9606 100616169 MIR378D2 - - HGNC:41797|miRBase:MI0003840 8 - microRNA 378d-2 miscRNA MIR378D2 microRNA 378d-2 O - 20121230 -9606 100616170 MIR4739 - - HGNC:41801|miRBase:MI0017377 17 - microRNA 4739 miscRNA MIR4739 microRNA 4739 O - 20121230 -9606 100616171 MIR4752 - - HGNC:41803|miRBase:MI0017391 19 - microRNA 4752 miscRNA MIR4752 microRNA 4752 O - 20121230 -9606 100616172 MIR4719 - - HGNC:41807|miRBase:MI0017354 16 - microRNA 4719 miscRNA MIR4719 microRNA 4719 O - 20121230 -9606 100616173 MIR3545 - - HGNC:41811|miRBase:MI0017343 14 - microRNA 3545 miscRNA MIR3545 microRNA 3545 O - 20121230 -9606 100616174 MIR4643 - - HGNC:41814|miRBase:MI0017270 6 - microRNA 4643 miscRNA MIR4643 microRNA 4643 O - 20121230 -9606 100616175 MIR4633 - - HGNC:41822|miRBase:MI0017260 5 - microRNA 4633 miscRNA MIR4633 microRNA 4633 O - 20121230 -9606 100616176 MIR4708 - - HGNC:41824|miRBase:MI0017341 14 - microRNA 4708 miscRNA MIR4708 microRNA 4708 O - 20121230 -9606 100616177 MIR4419A - - HGNC:41828|miRBase:MI0016755 1 - microRNA 4419a miscRNA MIR4419A microRNA 4419a O - 20121230 -9606 100616178 MIR4641 - - HGNC:41835|miRBase:MI0017268 6 - microRNA 4641 miscRNA MIR4641 microRNA 4641 O - 20121230 -9606 100616179 MIR4498 - - HGNC:41838|miRBase:MI0016860 12 - microRNA 4498 miscRNA MIR4498 microRNA 4498 O - 20121230 -9606 100616180 MIR4465 - - HGNC:41842|miRBase:MI0016816 6 - microRNA 4465 miscRNA MIR4465 microRNA 4465 O - 20121230 -9606 100616181 MIR4514 - - HGNC:41845|miRBase:MI0016880 15 - microRNA 4514 miscRNA MIR4514 microRNA 4514 O - 20121230 -9606 100616182 MIR4500 - - HGNC:41853|miRBase:MI0016863 13 13q31.2 microRNA 4500 miscRNA MIR4500 microRNA 4500 O - 20121230 -9606 100616183 MIR4513 - - HGNC:41855|miRBase:MI0016879 15 - microRNA 4513 miscRNA MIR4513 microRNA 4513 O - 20121230 -9606 100616184 MIR4477A - - HGNC:41859|miRBase:MI0016829 9 - microRNA 4477a miscRNA MIR4477A microRNA 4477a O - 20121230 -9606 100616185 MIR371B - - HGNC:41863|miRBase:MI0017393 19 - microRNA 371b miscRNA MIR371B microRNA 371b O - 20121230 -9606 100616186 MIR4490 - - HGNC:41871|miRBase:MI0016852 11 - microRNA 4490 miscRNA MIR4490 microRNA 4490 O - 20121230 -9606 100616187 MIR4783 - - HGNC:41874|miRBase:MI0017428 2 - microRNA 4783 miscRNA MIR4783 microRNA 4783 O - 20121230 -9606 100616188 MIR3972 - - HGNC:41876|miRBase:MI0016990 1 - microRNA 3972 miscRNA MIR3972 microRNA 3972 O - 20121230 -9606 100616189 MIR4421 - - HGNC:41879|miRBase:MI0016758 1 - microRNA 4421 miscRNA MIR4421 microRNA 4421 O - 20121230 -9606 100616190 MIR548O2 - - HGNC:41882|miRBase:MI0016746 20 - microRNA 548o-2 miscRNA MIR548O2 microRNA 548o-2 O - 20121230 -9606 100616191 MIR548AJ1 - - HGNC:41884|miRBase:MI0016814 6 - microRNA 548aj-1 miscRNA MIR548AJ1 microRNA 548aj-1 O - 20121230 -9606 100616192 MIR4679-2 - - HGNC:41890|miRBase:MI0017311 10 - microRNA 4679-2 miscRNA MIR4679-2 microRNA 4679-2 O - 20121230 -9606 100616193 MIR4453 - - HGNC:41892|miRBase:MI0016799 4 - microRNA 4453 miscRNA MIR4453 microRNA 4453 O - 20121230 -9606 100616194 MIR4477B - - HGNC:41898|miRBase:MI0016830 9 - microRNA 4477b miscRNA MIR4477B microRNA 4477b O - 20121230 -9606 100616195 MIR4718 - - HGNC:41900|miRBase:MI0017353 16 - microRNA 4718 miscRNA MIR4718 microRNA 4718 O - 20121230 -9606 100616196 MIR4525 - - HGNC:41903|miRBase:MI0016892 17 - microRNA 4525 miscRNA MIR4525 microRNA 4525 O - 20121230 -9606 100616197 ERVK-23 - c21_A HGNC:39037 21 21q21.1 endogenous retrovirus group K, member 23 unknown ERVK-23 endogenous retrovirus group K, member 23 O - 20121017 -9606 100616198 ERVW-6 - - HGNC:39045 11 11q14.1 endogenous retrovirus group W, member 6 unknown ERVW-6 endogenous retrovirus group W, member 6 O - 20121017 -9606 100616199 ERVK3-7 - HML6-c19B HGNC:39112 19 19p13.2 endogenous retrovirus group K3, member 7 unknown ERVK3-7 endogenous retrovirus group K3, member 7 O - 20121017 -9606 100616200 ERVS71-2 - HERV-HC2 HGNC:41526 10 10p11.1 endogenous retrovirus group S71, member 2 unknown ERVS71-2 endogenous retrovirus group S71, member 2 O - 20121017 -9606 100616201 MIR378D1 - - HGNC:41550|miRBase:MI0016749 4 - microRNA 378d-1 miscRNA MIR378D1 microRNA 378d-1 O - 20121230 -9606 100616202 MIR4634 - - HGNC:41559|miRBase:MI0017261 5 - microRNA 4634 miscRNA MIR4634 microRNA 4634 O - 20121230 -9606 100616203 MIR4734 - - HGNC:41572|miRBase:MI0017371 17 - microRNA 4734 miscRNA MIR4734 microRNA 4734 O - 20121230 -9606 100616204 MIR4729 - - HGNC:41585|miRBase:MI0017366 17 - microRNA 4729 miscRNA MIR4729 microRNA 4729 O - 20121230 -9606 100616205 MIR4704 - - HGNC:41602|miRBase:MI0017337 13 - microRNA 4704 miscRNA MIR4704 microRNA 4704 O - 20121230 -9606 100616206 MIR4652 - - HGNC:41615|miRBase:MI0017280 7 - microRNA 4652 miscRNA MIR4652 microRNA 4652 O - 20121230 -9606 100616207 MIR4439 - - HGNC:41622|miRBase:MI0016782 2 - microRNA 4439 miscRNA MIR4439 microRNA 4439 O - 20121230 -9606 100616208 MIR4782 - - HGNC:41635|miRBase:MI0017427 2 - microRNA 4782 miscRNA MIR4782 microRNA 4782 O - 20121230 -9606 100616209 MIR4461 - - HGNC:41656|miRBase:MI0016807 5 - microRNA 4461 miscRNA MIR4461 microRNA 4461 O - 20121230 -9606 100616210 MIR4737 - - HGNC:41669|miRBase:MI0017374 17 - microRNA 4737 miscRNA MIR4737 microRNA 4737 O - 20121230 -9606 100616211 MIR4709 - - HGNC:41690|miRBase:MI0017342 14 - microRNA 4709 miscRNA MIR4709 microRNA 4709 O - 20121230 -9606 100616212 MIR3689F - - HGNC:41702|miRBase:MI0016837 9 - microRNA 3689f miscRNA MIR3689F microRNA 3689f O - 20121230 -9606 100616213 MIR4437 - - HGNC:41715|miRBase:MI0016778 2 - microRNA 4437 miscRNA MIR4437 microRNA 4437 O - 20121230 -9606 100616214 MIR4667 - - HGNC:41723|miRBase:MI0017297 9 - microRNA 4667 miscRNA MIR4667 microRNA 4667 O - 20121230 -9606 100616215 MIR548AL - - HGNC:41736|miRBase:MI0016851 11 - microRNA 548al miscRNA MIR548AL microRNA 548al O - 20121230 -9606 100616216 MIR4797 - - HGNC:41758|miRBase:MI0017444 3 - microRNA 4797 miscRNA MIR4797 microRNA 4797 O - 20121230 -9606 100616217 MIR1254-2 - - HGNC:41770|miRBase:MI0016747 10 - microRNA 1254-2 miscRNA MIR1254-2 microRNA 1254-2 O - 20121230 -9606 100616218 MIR3135B - - HGNC:41783|miRBase:MI0016809 6 - microRNA 3135b miscRNA MIR3135B microRNA 3135b O - 20121230 -9606 100616219 MIR4765 - - HGNC:41791|miRBase:MI0017406 2 - microRNA 4765 miscRNA MIR4765 microRNA 4765 O - 20121230 -9606 100616220 MIR4736 - - HGNC:41804|miRBase:MI0017373 17 - microRNA 4736 miscRNA MIR4736 microRNA 4736 O - 20121230 -9606 100616221 MIR4662A - - HGNC:41826|miRBase:MI0017290 8 - microRNA 4662a miscRNA MIR4662A microRNA 4662a O - 20121230 -9606 100616222 MIR4487 - - HGNC:41851|miRBase:MI0016848 11 - microRNA 4487 miscRNA MIR4487 microRNA 4487 O - 20121230 -9606 100616223 MIR4509-1 - - HGNC:41860|miRBase:MI0016873 15 - microRNA 4509-1 miscRNA MIR4509-1 microRNA 4509-1 O - 20121230 -9606 100616224 MIR4753 - - HGNC:41527|miRBase:MI0017392 1 - microRNA 4753 miscRNA MIR4753 microRNA 4753 O - 20121230 -9606 100616225 MIR4756 - - HGNC:41529|miRBase:MI0017397 20 - microRNA 4756 miscRNA MIR4756 microRNA 4756 O - 20121230 -9606 100616226 MIR4468 - - HGNC:41533|miRBase:MI0016819 7 - microRNA 4468 miscRNA MIR4468 microRNA 4468 O - 20121230 -9606 100616227 MIR4502 - - HGNC:41534|miRBase:MI0016865 13 - microRNA 4502 miscRNA MIR4502 microRNA 4502 O - 20121230 -9606 100616228 MIR4509-2 - - HGNC:41537|miRBase:MI0016874 15 - microRNA 4509-2 miscRNA MIR4509-2 microRNA 4509-2 O - 20121230 -9606 100616229 MIR4473 - - HGNC:41540|miRBase:MI0016825 9 - microRNA 4473 miscRNA MIR4473 microRNA 4473 O - 20121230 -9606 100616230 MIR4646 - - HGNC:41543|miRBase:MI0017273 6 - microRNA 4646 miscRNA MIR4646 microRNA 4646 O - 20121230 -9606 100616231 MIR4519 - - HGNC:41544|miRBase:MI0016885 16 - microRNA 4519 miscRNA MIR4519 microRNA 4519 O - 20121230 -9606 100616232 MIR4528 - - HGNC:41547|miRBase:MI0016895 18 - microRNA 4528 miscRNA MIR4528 microRNA 4528 O - 20120318 -9606 100616233 MIR4459 - - HGNC:41551|miRBase:MI0016805 5 - microRNA 4459 miscRNA MIR4459 microRNA 4459 O - 20121230 -9606 100616234 MIR4454 - - HGNC:41553|miRBase:MI0016800 4 4q32.2 microRNA 4454 miscRNA MIR4454 microRNA 4454 O - 20121230 -9606 100616235 MIR4457 - - HGNC:41554|miRBase:MI0016803 5 - microRNA 4457 miscRNA MIR4457 microRNA 4457 O - 20121230 -9606 100616236 MIR4669 - - HGNC:41558|miRBase:MI0017300 9 - microRNA 4669 miscRNA MIR4669 microRNA 4669 O - 20121230 -9606 100616237 MIR4640 - - HGNC:41561|miRBase:MI0017267 6 - microRNA 4640 miscRNA MIR4640 microRNA 4640 O - 20121230 -9606 100616238 MIR3529 - - HGNC:41564|miRBase:MI0017351 15 - microRNA 3529 miscRNA MIR3529 microRNA 3529 O - 20121230 -9606 100616239 MIR4705 - - HGNC:41567|miRBase:MI0017338 13 - microRNA 4705 miscRNA MIR4705 microRNA 4705 O - 20121230 -9606 100616240 MIR4496 - - HGNC:41569|miRBase:MI0016858 12 - microRNA 4496 miscRNA MIR4496 microRNA 4496 O - 20121230 -9606 100616241 MIR4717 - - HGNC:41571|miRBase:MI0017352 16 - microRNA 4717 miscRNA MIR4717 microRNA 4717 O - 20121230 -9606 100616242 MIR4673 - - HGNC:41574|miRBase:MI0017304 9 - microRNA 4673 miscRNA MIR4673 microRNA 4673 O - 20121230 -9606 100616243 MIR4759 - - HGNC:41575|miRBase:MI0017400 21 - microRNA 4759 miscRNA MIR4759 microRNA 4759 O - 20121230 -9606 100616244 MIR3976 - - HGNC:41578|miRBase:MI0016994 18 - microRNA 3976 miscRNA MIR3976 microRNA 3976 O - 20121230 -9606 100616245 MIR4661 - - HGNC:41582|miRBase:MI0017289 8 - microRNA 4661 miscRNA MIR4661 microRNA 4661 O - 20121230 -9606 100616246 MIR4799 - - HGNC:41584|miRBase:MI0017446 4 - microRNA 4799 miscRNA MIR4799 microRNA 4799 O - 20121230 -9606 100616247 MIR151B - - HGNC:41588|miRBase:MI0003772 14 - microRNA 151b miscRNA MIR151B microRNA 151b O - 20121230 -9606 100616248 MIR4724 - - HGNC:41590|miRBase:MI0017361 17 - microRNA 4724 miscRNA MIR4724 microRNA 4724 O - 20121230 -9606 100616249 MIR4768 - - HGNC:41592|miRBase:MI0017409 X - microRNA 4768 miscRNA MIR4768 microRNA 4768 O - 20121230 -9606 100616250 MIR3960 - - HGNC:41595|miRBase:MI0016964 9 - microRNA 3960 miscRNA MIR3960 microRNA 3960 O - 20121230 -9606 100616251 MIR1587 - - HGNC:41596|miRBase:MI0016905 X - microRNA 1587 miscRNA MIR1587 microRNA 1587 O - 20121230 -9606 100616252 MIR548AJ2 - - HGNC:41600|miRBase:MI0016815 X Xp21.1 microRNA 548aj-2 miscRNA MIR548AJ2 microRNA 548aj-2 O - 20121230 -9606 100616253 MIR4762 - - HGNC:41603|miRBase:MI0017403 22 - microRNA 4762 miscRNA MIR4762 microRNA 4762 O - 20121230 -9606 100616254 MIR548AH - - HGNC:41605|miRBase:MI0016796 4 - microRNA 548ah miscRNA MIR548AH microRNA 548ah O - 20121230 -9606 100616255 MIR4662B - - HGNC:41607|miRBase:MI0017293 8 - microRNA 4662b miscRNA MIR4662B microRNA 4662b O - 20121230 -9606 100616256 MIR4721 - - HGNC:41609|miRBase:MI0017356 16 - microRNA 4721 miscRNA MIR4721 microRNA 4721 O - 20121230 -9606 100616257 MIR3975 - - HGNC:41613|miRBase:MI0016993 18 - microRNA 3975 miscRNA MIR3975 microRNA 3975 O - 20121230 -9606 100616258 MIR4516 - - HGNC:41617|miRBase:MI0016882 16 - microRNA 4516 miscRNA MIR4516 microRNA 4516 O - 20121230 -9606 100616259 MIR378I - - HGNC:41620|miRBase:MI0016902 22 - microRNA 378i miscRNA MIR378I microRNA 378i O - 20121230 -9606 100616260 MIR4663 - - HGNC:41623|miRBase:MI0017292 8 - microRNA 4663 miscRNA MIR4663 microRNA 4663 O - 20121230 -9606 100616261 MIR4504 - - HGNC:41624|miRBase:MI0016867 14 - microRNA 4504 miscRNA MIR4504 microRNA 4504 O - 20121230 -9606 100616262 MIR4701 - - HGNC:41627|miRBase:MI0017334 12 - microRNA 4701 miscRNA MIR4701 microRNA 4701 O - 20121230 -9606 100616263 MIR4485 - - HGNC:41628|miRBase:MI0016846 11 - microRNA 4485 miscRNA MIR4485 microRNA 4485 O - 20121230 -9606 100616264 MIR4527 - - HGNC:41633|miRBase:MI0016894 18 - microRNA 4527 miscRNA MIR4527 microRNA 4527 O - 20121230 -9606 100616265 MIR4433 - - HGNC:41634|miRBase:MI0016773 2 - microRNA 4433 miscRNA MIR4433 microRNA 4433 O - 20121230 -9606 100616266 MIR4733 - - HGNC:41638|miRBase:MI0017370 17 - microRNA 4733 miscRNA MIR4733 microRNA 4733 O - 20121230 -9606 100616267 MIR4776-1 - - HGNC:41641|miRBase:MI0017419 2 - microRNA 4776-1 miscRNA MIR4776-1 microRNA 4776-1 O - 20121230 -9606 100616268 MIR4472-1 - - HGNC:41644|miRBase:MI0016823 8 - microRNA 4472-1 miscRNA MIR4472-1 microRNA 4472-1 O - 20121230 -9606 100616269 MIR4639 - - HGNC:41645|miRBase:MI0017266 6 - microRNA 4639 miscRNA MIR4639 microRNA 4639 O - 20121230 -9606 100616270 MIR4651 - - HGNC:41647|miRBase:MI0017279 7 - microRNA 4651 miscRNA MIR4651 microRNA 4651 O - 20121230 -9606 100616271 MIR4637 - - HGNC:41651|miRBase:MI0017264 5 - microRNA 4637 miscRNA MIR4637 microRNA 4637 O - 20121230 -9606 100616272 MIR4422 - - HGNC:41654|miRBase:MI0016759 1 - microRNA 4422 miscRNA MIR4422 microRNA 4422 O - 20121230 -9606 100616273 MIR451B - - HGNC:41655|miRBase:MI0017360 17 - microRNA 451b miscRNA MIR451B microRNA 451b O - 20121230 -9606 100616274 MIR4802 - - HGNC:41658|miRBase:MI0017450 4 - microRNA 4802 miscRNA MIR4802 microRNA 4802 O - 20121230 -9606 100616275 MIR4508 - - HGNC:41659|miRBase:MI0016872 15 - microRNA 4508 miscRNA MIR4508 microRNA 4508 O - 20121230 -9606 100616276 MIR4538 - - HGNC:41664|miRBase:MI0016909 14 - microRNA 4538 miscRNA MIR4538 microRNA 4538 O - 20120318 -9606 100616277 MIR4522 - - HGNC:41668|miRBase:MI0016889 17 - microRNA 4522 miscRNA MIR4522 microRNA 4522 O - 20121230 -9606 100616278 MIR4540 - - HGNC:41670|miRBase:MI0016911 9 - microRNA 4540 miscRNA MIR4540 microRNA 4540 O - 20121230 -9606 100616279 MIR3974 - - HGNC:41672|miRBase:MI0016992 12 - microRNA 3974 miscRNA MIR3974 microRNA 3974 O - 20121230 -9606 100616280 MIR4503 - - HGNC:41675|miRBase:MI0016866 14 - microRNA 4503 miscRNA MIR4503 microRNA 4503 O - 20121230 -9606 100616281 MIR4788 - - HGNC:41676|miRBase:MI0017435 3 - microRNA 4788 miscRNA MIR4788 microRNA 4788 O - 20121230 -9606 100616282 MIR4738 - - HGNC:41679|miRBase:MI0017376 17 - microRNA 4738 miscRNA MIR4738 microRNA 4738 O - 20121230 -9606 100616283 MIR4766 - - HGNC:41680|miRBase:MI0017407 22 - microRNA 4766 miscRNA MIR4766 microRNA 4766 O - 20121230 -9606 100616284 MIR4489 - - HGNC:41685|miRBase:MI0016850 11 - microRNA 4489 miscRNA MIR4489 microRNA 4489 O - 20121230 -9606 100616285 MIR4645 - - HGNC:41689|miRBase:MI0017272 6 - microRNA 4645 miscRNA MIR4645 microRNA 4645 O - 20121230 -9606 100616286 MIR4676 - - HGNC:41691|miRBase:MI0017307 10 - microRNA 4676 miscRNA MIR4676 microRNA 4676 O - 20121230 -9606 100616287 MIR4495 - - HGNC:41693|miRBase:MI0016857 12 - microRNA 4495 miscRNA MIR4495 microRNA 4495 O - 20121230 -9606 100616288 MIR4665 - - HGNC:41696|miRBase:MI0017295 9 - microRNA 4665 miscRNA MIR4665 microRNA 4665 O - 20121230 -9606 100616289 MIR4475 - - HGNC:41697|miRBase:MI0016827 9 - microRNA 4475 miscRNA MIR4475 microRNA 4475 O - 20121230 -9606 100616290 MIR4529 - - HGNC:41703|miRBase:MI0016896 18 - microRNA 4529 miscRNA MIR4529 microRNA 4529 O - 20121230 -9606 100616291 MIR4791 - - HGNC:41704|miRBase:MI0017438 3 - microRNA 4791 miscRNA MIR4791 microRNA 4791 O - 20121230 -9606 100616292 MIR4690 - - HGNC:41707|miRBase:MI0017323 11 - microRNA 4690 miscRNA MIR4690 microRNA 4690 O - 20121230 -9606 100616293 MIR4510 - - HGNC:41708|miRBase:MI0016876 15 - microRNA 4510 miscRNA MIR4510 microRNA 4510 O - 20121230 -9606 100616294 MIR4740 - - HGNC:41711|miRBase:MI0017378 17 - microRNA 4740 miscRNA MIR4740 microRNA 4740 O - 20121230 -9606 100616295 MIR4764 - - HGNC:41714|miRBase:MI0017405 22 - microRNA 4764 miscRNA MIR4764 microRNA 4764 O - 20121230 -9606 100616296 MIR4678 - - HGNC:41717|miRBase:MI0017309 10 - microRNA 4678 miscRNA MIR4678 microRNA 4678 O - 20121230 -9606 100616297 MIR3977 - - HGNC:41721|miRBase:MI0016995 5 - microRNA 3977 miscRNA MIR3977 microRNA 3977 O - 20121230 -9606 100616298 MIR4419B - - HGNC:41724|miRBase:MI0016861 12 - microRNA 4419b miscRNA MIR4419B microRNA 4419b O - 20121230 -9606 100616299 MIR4450 - - HGNC:41725|miRBase:MI0016795 4 - microRNA 4450 miscRNA MIR4450 microRNA 4450 O - 20121230 -9606 100616300 MIR4710 - - HGNC:41727|miRBase:MI0017344 14 - microRNA 4710 miscRNA MIR4710 microRNA 4710 O - 20121230 -9606 100616301 MIR4674 - - HGNC:41729|miRBase:MI0017305 9 - microRNA 4674 miscRNA MIR4674 microRNA 4674 O - 20121230 -9606 100616302 MIR548X2 - - HGNC:41734|miRBase:MI0016833 13 - microRNA 548x-2 miscRNA MIR548X2 microRNA 548x-2 O - 20121230 -9606 100616303 MIR3688-2 - - HGNC:41735|miRBase:MI0017447 4 - microRNA 3688-2 miscRNA MIR3688-2 microRNA 3688-2 O - 20121230 -9606 100616304 MIR4499 - - HGNC:41739|miRBase:MI0016862 13 - microRNA 4499 miscRNA MIR4499 microRNA 4499 O - 20121230 -9606 100616305 MIR548AE1 - - HGNC:41742|miRBase:MI0016779 2 - microRNA 548ae-1 miscRNA MIR548AE1 microRNA 548ae-1 O - 20121230 -9606 100616306 MIR378H - - HGNC:41744|miRBase:MI0016808 5 - microRNA 378h miscRNA MIR378H microRNA 378h O - 20121230 -9606 100616307 MIR4757 - - HGNC:41746|miRBase:MI0017398 2 - microRNA 4757 miscRNA MIR4757 microRNA 4757 O - 20121230 -9606 100616308 MIR4666A - MIR4666|hsa-mir-4666a HGNC:41750|miRBase:MI0017296 1 - microRNA 4666a miscRNA MIR4666A microRNA 4666a O - 20121230 -9606 100616309 MIR4472-2 - - HGNC:41752|miRBase:MI0016824 12 - microRNA 4472-2 miscRNA MIR4472-2 microRNA 4472-2 O - 20121230 -9606 100616310 MIR4650-1 - - HGNC:41755|miRBase:MI0017277 7 - microRNA 4650-1 miscRNA MIR4650-1 microRNA 4650-1 O - 20121230 -9606 100616311 MIR3973 - - HGNC:41756|miRBase:MI0016991 11 - microRNA 3973 miscRNA MIR3973 microRNA 3973 O - 20121230 -9606 100616312 MIR4478 - - HGNC:41759|miRBase:MI0016831 9 - microRNA 4478 miscRNA MIR4478 microRNA 4478 O - 20121230 -9606 100616313 MIR4749 - - HGNC:41760|miRBase:MI0017388 19 - microRNA 4749 miscRNA MIR4749 microRNA 4749 O - 20121230 -9606 100616314 MIR4750 - - HGNC:41765|miRBase:MI0017389 19 - microRNA 4750 miscRNA MIR4750 microRNA 4750 O - 20121230 -9606 100616315 MIR4781 - - HGNC:41769|miRBase:MI0017426 1 - microRNA 4781 miscRNA MIR4781 microRNA 4781 O - 20121230 -9606 100616316 MIR4524A - MIR4524|hsa-mir-4524a HGNC:41771|miRBase:MI0016891 17 - microRNA 4524a miscRNA MIR4524A microRNA 4524a O - 20121230 -9606 100616317 MIR4777 - - HGNC:41773|miRBase:MI0017421 2 - microRNA 4777 miscRNA MIR4777 microRNA 4777 O - 20121230 -9606 100616318 MIR4664 - - HGNC:41777|miRBase:MI0017294 8 - microRNA 4664 miscRNA MIR4664 microRNA 4664 O - 20121230 -9606 100616319 MIR4493 - - HGNC:41778|miRBase:MI0016855 11 - microRNA 4493 miscRNA MIR4493 microRNA 4493 O - 20121230 -9606 100616320 MIR4481 - - HGNC:41781|miRBase:MI0016842 10 - microRNA 4481 miscRNA MIR4481 microRNA 4481 O - 20121230 -9606 100616321 MIR378G - - HGNC:41785|miRBase:MI0016761 1 - microRNA 378g miscRNA MIR378G microRNA 378g O - 20121230 -9606 100616322 MIR4682 - - HGNC:41788|miRBase:MI0017314 10 - microRNA 4682 miscRNA MIR4682 microRNA 4682 O - 20121230 -9606 100616323 MIR4482-1 - MIR4482|hsa-mir-4482-1 HGNC:41792|miRBase:MI0016843 10 - microRNA 4482-1 miscRNA MIR4482-1 microRNA 4482-1 O - 20121230 -9606 100616324 MIR1245B - - HGNC:41794|miRBase:MI0017431 2 - microRNA 1245b miscRNA MIR1245B microRNA 1245b O - 20121230 -9606 100616325 MIR4460 - - HGNC:41795|miRBase:MI0016806 5 - microRNA 4460 miscRNA MIR4460 microRNA 4460 O - 20121230 -9606 100616326 MIR4636 - - HGNC:41798|miRBase:MI0017263 5 - microRNA 4636 miscRNA MIR4636 microRNA 4636 O - 20121230 -9606 100616327 MIR4484 - - HGNC:41799|miRBase:MI0016845 10 - microRNA 4484 miscRNA MIR4484 microRNA 4484 O - 20121230 -9606 100616328 MIR4424 - - HGNC:41805|miRBase:MI0016763 1 - microRNA 4424 miscRNA MIR4424 microRNA 4424 O - 20121230 -9606 100616329 MIR4700 - - HGNC:41806|miRBase:MI0017333 12 - microRNA 4700 miscRNA MIR4700 microRNA 4700 O - 20121230 -9606 100616330 MIR4491 - - HGNC:41808|miRBase:MI0016853 11 - microRNA 4491 miscRNA MIR4491 microRNA 4491 O - 20121230 -9606 100616331 MIR4650-2 - - HGNC:41810|miRBase:MI0017278 7 - microRNA 4650-2 miscRNA MIR4650-2 microRNA 4650-2 O - 20121230 -9606 100616332 MIR4716 - - HGNC:41812|miRBase:MI0017350 15 - microRNA 4716 miscRNA MIR4716 microRNA 4716 O - 20121230 -9606 100616333 MIR3689C - - HGNC:41816|miRBase:MI0016832 9 - microRNA 3689c miscRNA MIR3689C microRNA 3689c O - 20121230 -9606 100616334 MIR4790 - - HGNC:41820|miRBase:MI0017437 3 - microRNA 4790 miscRNA MIR4790 microRNA 4790 O - 20121230 -9606 100616335 MIR2964A - - HGNC:41823|miRBase:MI0017299 9 - microRNA 2964a miscRNA MIR2964A microRNA 2964a O - 20121230 -9606 100616336 MIR548AB - - HGNC:41825|miRBase:MI0016752 3 - microRNA 548ab miscRNA MIR548AB microRNA 548ab O - 20121230 -9606 100616337 MIR4747 - - HGNC:41827|miRBase:MI0017386 19 - microRNA 4747 miscRNA MIR4747 microRNA 4747 O - 20121230 -9606 100616338 MIR4794 - - HGNC:41829|miRBase:MI0017441 1 - microRNA 4794 miscRNA MIR4794 microRNA 4794 O - 20121230 -9606 100616339 MIR548AE2 - - HGNC:41831|miRBase:MI0016780 5 - microRNA 548ae-2 miscRNA MIR548AE2 microRNA 548ae-2 O - 20121230 -9606 100616340 MIR4758 - - HGNC:41836|miRBase:MI0017399 20 - microRNA 4758 miscRNA MIR4758 microRNA 4758 O - 20121230 -9606 100616341 MIR4435-2 - - HGNC:41837|miRBase:MI0016777 2 - microRNA 4435-2 miscRNA MIR4435-2 microRNA 4435-2 O - 20121230 -9606 100616342 MIR4638 - - HGNC:41841|miRBase:MI0017265 5 - microRNA 4638 miscRNA MIR4638 microRNA 4638 O - 20121230 -9606 100616343 MIR4677 - - HGNC:41844|miRBase:MI0017308 1 - microRNA 4677 miscRNA MIR4677 microRNA 4677 O - 20121230 -9606 100616344 MIR3689D2 - - HGNC:41846|miRBase:MI0016835 9 - microRNA 3689d-2 miscRNA MIR3689D2 microRNA 3689d-2 O - 20121230 -9606 100616345 MIR4426 - - HGNC:41848|miRBase:MI0016765 1 - microRNA 4426 miscRNA MIR4426 microRNA 4426 O - 20121230 -9606 100616346 MIR4649 - - HGNC:41852|miRBase:MI0017276 7 - microRNA 4649 miscRNA MIR4649 microRNA 4649 O - 20121230 -9606 100616347 MIR548AI - - HGNC:41854|miRBase:MI0016813 6 - microRNA 548ai miscRNA MIR548AI microRNA 548ai O - 20121230 -9606 100616348 MIR4659A - - HGNC:41857|miRBase:MI0017287 8 - microRNA 4659a miscRNA MIR4659A microRNA 4659a O - 20121230 -9606 100616349 MIR4451 - - HGNC:41858|miRBase:MI0016797 4 - microRNA 4451 miscRNA MIR4451 microRNA 4451 O - 20121230 -9606 100616350 MIR4660 - - HGNC:41861|miRBase:MI0017288 8 - microRNA 4660 miscRNA MIR4660 microRNA 4660 O - 20121230 -9606 100616351 MIR4670 - - HGNC:41862|miRBase:MI0017301 9 - microRNA 4670 miscRNA MIR4670 microRNA 4670 O - 20121230 -9606 100616352 MIR4642 - - HGNC:41865|miRBase:MI0017269 6 - microRNA 4642 miscRNA MIR4642 microRNA 4642 O - 20121230 -9606 100616353 MIR4532 - - HGNC:41869|miRBase:MI0016899 20 - microRNA 4532 miscRNA MIR4532 microRNA 4532 O - 20121230 -9606 100616354 MIR550A3 - - HGNC:41870|miRBase:MI0003762 7 - microRNA 550a-3 miscRNA MIR550A3 microRNA 550a-3 O - 20121230 -9606 100616355 MIR4531 - - HGNC:41872|miRBase:MI0016898 19 - microRNA 4531 miscRNA MIR4531 microRNA 4531 O - 20121230 -9606 100616356 MIR4774 - - HGNC:41873|miRBase:MI0017417 2 2q24.3 microRNA 4774 miscRNA MIR4774 microRNA 4774 O - 20121230 -9606 100616357 MIR3591 - - HGNC:41875|miRBase:MI0017383 18 - microRNA 3591 miscRNA MIR3591 microRNA 3591 O - 20121230 -9606 100616358 MIR4800 - - HGNC:41877|miRBase:MI0017448 4 - microRNA 4800 miscRNA MIR4800 microRNA 4800 O - 20121230 -9606 100616359 MIR4730 - - HGNC:41880|miRBase:MI0017367 17 - microRNA 4730 miscRNA MIR4730 microRNA 4730 O - 20121230 -9606 100616360 MIR2467 - - HGNC:41881|miRBase:MI0017432 2 - microRNA 2467 miscRNA MIR2467 microRNA 2467 O - 20121230 -9606 100616361 MIR4775 - - HGNC:41885|miRBase:MI0017418 2 - microRNA 4775 miscRNA MIR4775 microRNA 4775 O - 20121230 -9606 100616362 MIR4533 - - HGNC:41886|miRBase:MI0016900 20 - microRNA 4533 miscRNA MIR4533 microRNA 4533 O - 20121230 -9606 100616363 MIR4735 - - HGNC:41888|miRBase:MI0017372 1 - microRNA 4735 miscRNA MIR4735 microRNA 4735 O - 20121230 -9606 100616364 MIR4785 - - HGNC:41889|miRBase:MI0017430 2 - microRNA 4785 miscRNA MIR4785 microRNA 4785 O - 20121209 -9606 100616365 MIR4425 - - HGNC:41891|miRBase:MI0016764 1 - microRNA 4425 miscRNA MIR4425 microRNA 4425 O - 20121230 -9606 100616366 MIR4743 - - HGNC:41894|miRBase:MI0017381 18 - microRNA 4743 miscRNA MIR4743 microRNA 4743 O - 20121230 -9606 100616367 MIR4467 - - HGNC:41896|miRBase:MI0016818 7 - microRNA 4467 miscRNA MIR4467 microRNA 4467 O - 20121230 -9606 100616368 MIR4688 - - HGNC:41897|miRBase:MI0017321 11 - microRNA 4688 miscRNA MIR4688 microRNA 4688 O - 20121230 -9606 100616369 MIR4713 - - HGNC:41899|miRBase:MI0017347 15 - microRNA 4713 miscRNA MIR4713 microRNA 4713 O - 20121230 -9606 100616370 MIR4771-1 - - HGNC:41901|miRBase:MI0017412 2 - microRNA 4771-1 miscRNA MIR4771-1 microRNA 4771-1 O - 20121230 -9606 100616371 MIR4746 - - HGNC:41904|miRBase:MI0017385 19 - microRNA 4746 miscRNA MIR4746 microRNA 4746 O - 20121230 -9606 100616372 MIR4659B - - HGNC:41530|miRBase:MI0017291 8 - microRNA 4659b miscRNA MIR4659B microRNA 4659b O - 20121230 -9606 100616373 MIR4770 - - HGNC:41542|miRBase:MI0017411 X - microRNA 4770 miscRNA MIR4770 microRNA 4770 O - 20121230 -9606 100616374 MIR4539 - - HGNC:41546|miRBase:MI0016910 14 - microRNA 4539 miscRNA MIR4539 microRNA 4539 O - 20120318 -9606 100616375 MIR4438 - - HGNC:41555|miRBase:MI0016781 2 - microRNA 4438 miscRNA MIR4438 microRNA 4438 O - 20121230 -9606 100616376 MIR4492 - - HGNC:41563|miRBase:MI0016854 11 - microRNA 4492 miscRNA MIR4492 microRNA 4492 O - 20121230 -9606 100616377 MIR4803 - - HGNC:41568|miRBase:MI0017451 5 - microRNA 4803 miscRNA MIR4803 microRNA 4803 O - 20121230 -9606 100616378 MIR4784 - - HGNC:41580|miRBase:MI0017429 2 - microRNA 4784 miscRNA MIR4784 microRNA 4784 O - 20121230 -9606 100616379 MIR4511 - - HGNC:41589|miRBase:MI0016877 15 - microRNA 4511 miscRNA MIR4511 microRNA 4511 O - 20121230 -9606 100616380 MIR4671 - - HGNC:41598|miRBase:MI0017302 1 - microRNA 4671 miscRNA MIR4671 microRNA 4671 O - 20121230 -9606 100616381 MIR4456 - - HGNC:41606|miRBase:MI0016802 5 - microRNA 4456 miscRNA MIR4456 microRNA 4456 O - 20121230 -9606 100616382 MIR4509-3 - - HGNC:41610|miRBase:MI0016875 15 - microRNA 4509-3 miscRNA MIR4509-3 microRNA 4509-3 O - 20121230 -9606 100616383 MIR4675 - - HGNC:41619|miRBase:MI0017306 10 - microRNA 4675 miscRNA MIR4675 microRNA 4675 O - 20121230 -9606 100616384 MIR548AC - - HGNC:41626|miRBase:MI0016762 1 - microRNA 548ac miscRNA MIR548AC microRNA 548ac O - 20121230 -9606 100616385 MIR4732 - - HGNC:41639|miRBase:MI0017369 17 - microRNA 4732 miscRNA MIR4732 microRNA 4732 O - 20121230 -9606 100616386 MIR4654 - - HGNC:41643|miRBase:MI0017282 1 - microRNA 4654 miscRNA MIR4654 microRNA 4654 O - 20121230 -9606 100616387 MIR3064 - - HGNC:41652|miRBase:MI0017375 17 - microRNA 3064 miscRNA MIR3064 microRNA 3064 O - 20121230 -9606 100616388 MIR4723 - - HGNC:41660|miRBase:MI0017359 17 - microRNA 4723 miscRNA MIR4723 microRNA 4723 O - 20121230 -9606 100616389 MIR4463 - - HGNC:41665|miRBase:MI0016811 6 - microRNA 4463 miscRNA MIR4463 microRNA 4463 O - 20121230 -9606 100616390 MIR4427 - - HGNC:41678|miRBase:MI0016766 1 - microRNA 4427 miscRNA MIR4427 microRNA 4427 O - 20121230 -9606 100616391 MIR4684 - - HGNC:41695|miRBase:MI0017316 1 - microRNA 4684 miscRNA MIR4684 microRNA 4684 O - 20121230 -9606 100616392 MIR4773-1 - - HGNC:41699|miRBase:MI0017415 2 - microRNA 4773-1 miscRNA MIR4773-1 microRNA 4773-1 O - 20121230 -9606 100616393 MIR4657 - - HGNC:41706|miRBase:MI0017285 7 - microRNA 4657 miscRNA MIR4657 microRNA 4657 O - 20121230 -9606 100616394 MIR4444-1 - MIR4444|hsa-mir-4444-1 HGNC:41710|miRBase:MI0016787 2 - microRNA 4444-1 miscRNA MIR4444-1 microRNA 4444-1 O - 20121230 -9606 100616395 MIR4789 - - HGNC:41719|miRBase:MI0017436 3 - microRNA 4789 miscRNA MIR4789 microRNA 4789 O - 20121230 -9606 100616396 MIR4712 - - HGNC:41732|miRBase:MI0017346 15 - microRNA 4712 miscRNA MIR4712 microRNA 4712 O - 20121230 -9606 100616397 MIR4440 - - HGNC:41740|miRBase:MI0016783 2 - microRNA 4440 miscRNA MIR4440 microRNA 4440 O - 20121230 -9606 100616398 MIR4681 - - HGNC:41753|miRBase:MI0017313 10 - microRNA 4681 miscRNA MIR4681 microRNA 4681 O - 20121230 -9606 100616399 MIR4436A - - HGNC:41762|miRBase:MI0016776 2 - microRNA 4436a miscRNA MIR4436A microRNA 4436a O - 20121230 -9606 100616400 MIR3198-2 - - HGNC:41766|miRBase:MI0017335 12 - microRNA 3198-2 miscRNA MIR3198-2 microRNA 3198-2 O - 20121230 -9606 100616401 MIR4520A - - HGNC:41775|miRBase:MI0016886 17 - microRNA 4520a miscRNA MIR4520A microRNA 4520a O - 20121230 -9606 100616402 MIR4696 - - HGNC:41780|miRBase:MI0017329 11 - microRNA 4696 miscRNA MIR4696 microRNA 4696 O - 20121230 -9606 100616403 MIR4691 - - HGNC:41796|miRBase:MI0017324 11 - microRNA 4691 miscRNA MIR4691 microRNA 4691 O - 20121230 -9606 100616404 MIR4515 - - HGNC:41800|miRBase:MI0016881 15 - microRNA 4515 miscRNA MIR4515 microRNA 4515 O - 20121230 -9606 100616405 MIR4518 - - HGNC:41809|miRBase:MI0016884 16 - microRNA 4518 miscRNA MIR4518 microRNA 4518 O - 20121230 -9606 100616406 MIR4521 - - HGNC:41813|miRBase:MI0016887 17 - microRNA 4521 miscRNA MIR4521 microRNA 4521 O - 20121230 -9606 100616407 MIR4443 - - HGNC:41830|miRBase:MI0016786 3 - microRNA 4443 miscRNA MIR4443 microRNA 4443 O - 20121230 -9606 100616408 MIR5047 - - HGNC:41834|miRBase:MI0017932 17 - microRNA 5047 miscRNA MIR5047 microRNA 5047 O - 20121230 -9606 100616409 MIR4711 - - HGNC:41847|miRBase:MI0017345 1 - microRNA 4711 miscRNA MIR4711 microRNA 4711 O - 20121230 -9606 100616410 MIR4692 - - HGNC:41856|miRBase:MI0017325 11 - microRNA 4692 miscRNA MIR4692 microRNA 4692 O - 20121230 -9606 100616411 ERVK-16 - M3.8|c10_A HGNC:39023 10 10p14 endogenous retrovirus group K, member 16 unknown ERVK-16 endogenous retrovirus group K, member 16 O - 20120801 -9606 100616412 ERVK3-5 - HML6-c12 HGNC:39110 12 12q24.12 endogenous retrovirus group K3, member 5 unknown ERVK3-5 endogenous retrovirus group K3, member 5 O - 20121017 -9606 100616413 MIR4462 - - HGNC:41549|miRBase:MI0016810 6 - microRNA 4462 miscRNA MIR4462 microRNA 4462 O - 20121230 -9606 100616414 MIR4761 - - HGNC:41591|miRBase:MI0017402 22 - microRNA 4761 miscRNA MIR4761 microRNA 4761 O - 20121230 -9606 100616415 MIR4535 - - HGNC:41629|miRBase:MI0016903 22 - microRNA 4535 miscRNA MIR4535 microRNA 4535 O - 20121230 -9606 100616416 MIR4727 - - HGNC:41709|miRBase:MI0017364 17 - microRNA 4727 miscRNA MIR4727 microRNA 4727 O - 20121230 -9606 100616417 MIR4786 - - HGNC:41751|miRBase:MI0017433 2 - microRNA 4786 miscRNA MIR4786 microRNA 4786 O - 20121230 -9606 100616418 MIR4773-2 - - HGNC:41790|miRBase:MI0017416 2 - microRNA 4773-2 miscRNA MIR4773-2 microRNA 4773-2 O - 20121230 -9606 100616419 MIR4434 - - HGNC:41832|miRBase:MI0016774 2 - microRNA 4434 miscRNA MIR4434 microRNA 4434 O - 20121230 -9606 100616420 MIR4744 - - HGNC:41866|miRBase:MI0017382 18 - microRNA 4744 miscRNA MIR4744 microRNA 4744 O - 20121230 -9606 100616421 MIR4689 - - HGNC:41895|miRBase:MI0017322 1 - microRNA 4689 miscRNA MIR4689 microRNA 4689 O - 20121230 -9606 100616422 MIR4537 - - HGNC:41682|miRBase:MI0016908 14 - microRNA 4537 miscRNA MIR4537 microRNA 4537 O - 20120318 -9606 100616423 MIR4703 - - HGNC:41817|miRBase:MI0017336 13 - microRNA 4703 miscRNA MIR4703 microRNA 4703 O - 20121230 -9606 100616424 MIR4707 - - HGNC:41531|miRBase:MI0017340 14 - microRNA 4707 miscRNA MIR4707 microRNA 4707 O - 20121230 -9606 100616425 MIR4748 - - HGNC:41557|miRBase:MI0017387 19 - microRNA 4748 miscRNA MIR4748 microRNA 4748 O - 20121230 -9606 100616426 MIR4694 - - HGNC:41586|miRBase:MI0017327 11 - microRNA 4694 miscRNA MIR4694 microRNA 4694 O - 20121230 -9606 100616427 MIR5096 - - HGNC:41611|miRBase:MI0018004 4 - microRNA 5096 miscRNA MIR5096 microRNA 5096 O - 20121230 -9606 100616428 MIR548AM - - HGNC:41637|miRBase:MI0016904 X - microRNA 548am miscRNA MIR548AM microRNA 548am O - 20121230 -9606 100616429 MIR4672 - - HGNC:41662|miRBase:MI0017303 9 - microRNA 4672 miscRNA MIR4672 microRNA 4672 O - 20121230 -9606 100616430 MIR4644 - - HGNC:41687|miRBase:MI0017271 6 - microRNA 4644 miscRNA MIR4644 microRNA 4644 O - 20121230 -9606 100616431 MIR4431 - - HGNC:41738|miRBase:MI0016771 2 - microRNA 4431 miscRNA MIR4431 microRNA 4431 O - 20121230 -9606 100616432 MIR4714 - - HGNC:41763|miRBase:MI0017348 15 - microRNA 4714 miscRNA MIR4714 microRNA 4714 O - 20121230 -9606 100616433 MIR4418 - - HGNC:41789|miRBase:MI0016754 1 - microRNA 4418 miscRNA MIR4418 microRNA 4418 O - 20121230 -9606 100616434 MIR4755 - - HGNC:41815|miRBase:MI0017395 20 - microRNA 4755 miscRNA MIR4755 microRNA 4755 O - 20121230 -9606 100616435 MIR4801 - - HGNC:41840|miRBase:MI0017449 4 - microRNA 4801 miscRNA MIR4801 microRNA 4801 O - 20121230 -9606 100616436 MIR4449 - - HGNC:41864|MIM:614627|miRBase:MI0016792 4 - microRNA 4449 miscRNA MIR4449 microRNA 4449 O - 20121230 -9606 100616437 MIR1343 - - HGNC:41902|miRBase:MI0017320 11 - microRNA 1343 miscRNA MIR1343 microRNA 1343 O - 20121230 -9606 100616438 MIR4632 - - HGNC:41593|miRBase:MI0017259 1 - microRNA 4632 miscRNA MIR4632 microRNA 4632 O - 20121230 -9606 100616439 MIR4658 - - HGNC:41673|miRBase:MI0017286 7 - microRNA 4658 miscRNA MIR4658 microRNA 4658 O - 20121230 -9606 100616440 MIR548AG2 - - HGNC:41745|miRBase:MI0016794 20 - microRNA 548ag-2 miscRNA MIR548AG2 microRNA 548ag-2 O - 20121230 -9606 100616441 MIR4474 - - HGNC:41821|miRBase:MI0016826 9 - microRNA 4474 miscRNA MIR4474 microRNA 4474 O - 20121230 -9606 100616442 ERVK-12 - - HGNC:39007 4 4q32.3 endogenous retrovirus group K, member 12 unknown ERVK-12 endogenous retrovirus group K, member 12 O - 20120726 -9606 100616443 ERVK-15 - P1.10|c7_C HGNC:39022 7 7q34 endogenous retrovirus group K, member 15 unknown ERVK-15 endogenous retrovirus group K, member 15 O - 20120801 -9606 100616444 ERVK-20 - c11_B|env HGNC:39031 11 11q23.3 endogenous retrovirus group K, member 20 unknown ERVK-20 endogenous retrovirus group K, member 20 O - 20121017 -9606 100616445 ERVK-22 - c19_A HGNC:39036 19 19p13.3 endogenous retrovirus group K, member 22 unknown ERVK-22 endogenous retrovirus group K, member 22 O - 20120726 -9606 100616446 ERVH-1 - - HGNC:39053 4 4p15.2 endogenous retrovirus group H, member 1 unknown ERVH-1 endogenous retrovirus group H, member 1 O - 20121017 -9606 100616447 MIR4780 - - HGNC:41552|miRBase:MI0017424 2 - microRNA 4780 miscRNA MIR4780 microRNA 4780 O - 20121230 -9606 100616448 MIR4792 - miR-4792 HGNC:41577|miRBase:MI0017439 3 - microRNA 4792 miscRNA MIR4792 microRNA 4792 O - 20121230 -9606 100616449 MIR4725 - - HGNC:41608|miRBase:MI0017362 17 - microRNA 4725 miscRNA MIR4725 microRNA 4725 O - 20121230 -9606 100616450 MIR548AG1 - - HGNC:41625|miRBase:MI0016793 4 - microRNA 548ag-1 miscRNA MIR548AG1 microRNA 548ag-1 O - 20121230 -9606 100616451 MIR4471 - - HGNC:41657|miRBase:MI0016822 8 - microRNA 4471 miscRNA MIR4471 microRNA 4471 O - 20121230 -9606 100616452 MIR2682 - - HGNC:41688|miRBase:MI0012063 1 - microRNA 2682 miscRNA MIR2682 microRNA 2682 O - 20121230 -9606 100616453 MIR4687 - - HGNC:41712|miRBase:MI0017319 11 - microRNA 4687 miscRNA MIR4687 microRNA 4687 O - 20121230 -9606 100616454 MIR4497 - - HGNC:41737|miRBase:MI0016859 12 - microRNA 4497 miscRNA MIR4497 microRNA 4497 O - 20121230 -9606 100616455 MIR548H5 - - HGNC:41768|miRBase:MI0016751 6 - microRNA 548h-5 miscRNA MIR548H5 microRNA 548h-5 O - 20121230 -9606 100616456 MIR4476 - - HGNC:41793|miRBase:MI0016828 9 - microRNA 4476 miscRNA MIR4476 microRNA 4476 O - 20121230 -9606 100616457 MIR4693 - - HGNC:41818|miRBase:MI0017326 11 - microRNA 4693 miscRNA MIR4693 microRNA 4693 O - 20121230 -9606 100616458 MIR5095 - - HGNC:41849|miRBase:MI0018001 1 - microRNA 5095 miscRNA MIR5095 microRNA 5095 O - 20121230 -9606 100616459 MIR4745 - - HGNC:41868|miRBase:MI0017384 19 - microRNA 4745 miscRNA MIR4745 microRNA 4745 O - 20121230 -9606 100616460 MIR3689E - - HGNC:41887|miRBase:MI0016836 9 - microRNA 3689e miscRNA MIR3689E microRNA 3689e O - 20121230 -9606 100616461 ERVH-2 - HERV-HX HGNC:39054 X Xp22.32 endogenous retrovirus group H, member 2 unknown ERVH-2 endogenous retrovirus group H, member 2 O - 20121017 -9606 100616462 ERVK3-3 - HML6-c5 HGNC:39108 5 5q13.2 endogenous retrovirus group K3, member 3 unknown ERVK3-3 endogenous retrovirus group K3, member 3 O - 20121017 -9606 100616463 MIR4452 - - HGNC:41539|miRBase:MI0016798 4 - microRNA 4452 miscRNA MIR4452 microRNA 4452 O - 20121230 -9606 100616464 MIR4778 - - HGNC:41648|miRBase:MI0017422 2 - microRNA 4778 miscRNA MIR4778 microRNA 4778 O - 20121230 -9606 100616465 MIR4656 - - HGNC:41749|miRBase:MI0017284 7 - microRNA 4656 miscRNA MIR4656 microRNA 4656 O - 20121230 -9606 100616466 MIR4520B - - HGNC:41839|miRBase:MI0017358 17 - microRNA 4520b miscRNA MIR4520B microRNA 4520b O - 20121230 -9606 100616467 MIR4767 - - HGNC:41548|miRBase:MI0017408 X - microRNA 4767 miscRNA MIR4767 microRNA 4767 O - 20121230 -9606 100616468 MIR4742 - - HGNC:41565|miRBase:MI0017380 1 - microRNA 4742 miscRNA MIR4742 microRNA 4742 O - 20121230 -9606 100616469 MIR4429 - - HGNC:41579|miRBase:MI0016768 2 - microRNA 4429 miscRNA MIR4429 microRNA 4429 O - 20121230 -9606 100616470 MIR4488 - - HGNC:41599|miRBase:MI0016849 11 - microRNA 4488 miscRNA MIR4488 microRNA 4488 O - 20121230 -9606 100616471 MIR4798 - - HGNC:41616|miRBase:MI0017445 4 - microRNA 4798 miscRNA MIR4798 microRNA 4798 O - 20121230 -9606 100616472 MIR4776-2 - - HGNC:41631|miRBase:MI0017420 2 - microRNA 4776-2 miscRNA MIR4776-2 microRNA 4776-2 O - 20121230 -9606 100616473 MIR4432 - - HGNC:41649|miRBase:MI0016772 2 - microRNA 4432 miscRNA MIR4432 microRNA 4432 O - 20121230 -9606 100616474 MIR4715 - - HGNC:41666|miRBase:MI0017349 15 - microRNA 4715 miscRNA MIR4715 microRNA 4715 O - 20121230 -9606 100616475 MIR548AD - - HGNC:41683|miRBase:MI0016770 2 - microRNA 548ad miscRNA MIR548AD microRNA 548ad O - 20121230 -9606 100616476 MIR4446 - - HGNC:41700|miRBase:MI0016789 3 - microRNA 4446 miscRNA MIR4446 microRNA 4446 O - 20121230 -9606 100616477 MIR4442 - - HGNC:41718|miRBase:MI0016785 3 - microRNA 4442 miscRNA MIR4442 microRNA 4442 O - 20121230 -9606 100616478 MIR4494 - - HGNC:41731|miRBase:MI0016856 12 - microRNA 4494 miscRNA MIR4494 microRNA 4494 O - 20121230 -9606 100616479 MIR4635 - - HGNC:41748|miRBase:MI0017262 5 - microRNA 4635 miscRNA MIR4635 microRNA 4635 O - 20121230 -9606 100616480 MIR4479 - - HGNC:41767|miRBase:MI0016838 9 - microRNA 4479 miscRNA MIR4479 microRNA 4479 O - 20121230 -9606 100616481 MIR4423 - - HGNC:41784|miRBase:MI0016760 1 - microRNA 4423 miscRNA MIR4423 microRNA 4423 O - 20121230 -9606 100616482 MIR4685 - - HGNC:41802|miRBase:MI0017317 10 - microRNA 4685 miscRNA MIR4685 microRNA 4685 O - 20121230 -9606 100616483 MIR4751 - - HGNC:41819|miRBase:MI0017390 19 - microRNA 4751 miscRNA MIR4751 microRNA 4751 O - 20121230 -9606 100616484 MIR4470 - - HGNC:41833|miRBase:MI0016821 8 - microRNA 4470 miscRNA MIR4470 microRNA 4470 O - 20121230 -9606 100616485 MIR4447 - - HGNC:41850|miRBase:MI0016790 3 - microRNA 4447 miscRNA MIR4447 microRNA 4447 O - 20121230 -9606 100616486 MIR4698 - - HGNC:41867|miRBase:MI0017331 12 - microRNA 4698 miscRNA MIR4698 microRNA 4698 O - 20121230 -9606 100616487 MIR4517 - - HGNC:41878|miRBase:MI0016883 16 - microRNA 4517 miscRNA MIR4517 microRNA 4517 O - 20121230 -9606 100616488 MIR548AK - - HGNC:41893|miRBase:MI0016840 10 - microRNA 548ak miscRNA MIR548AK microRNA 548ak O - 20121230 -9606 100616489 MIR4417 - - HGNC:41535|miRBase:MI0016753 1 - microRNA 4417 miscRNA MIR4417 microRNA 4417 O - 20121230 -9606 100616490 MIR4706 - - HGNC:41576|miRBase:MI0017339 14 - microRNA 4706 miscRNA MIR4706 microRNA 4706 O - 20121230 -9606 100616491 MIR3978 - - HGNC:41630|miRBase:MI0016996 X - microRNA 3978 miscRNA MIR3978 microRNA 3978 O - 20121230 -9606 100616492 MIR378F - - HGNC:41686|miRBase:MI0016756 1 - microRNA 378f miscRNA MIR378F microRNA 378f O - 20121230 -9606 100616493 MIR4441 - - HGNC:41728|miRBase:MI0016784 2 - microRNA 4441 miscRNA MIR4441 microRNA 4441 O - 20121230 -9606 100616494 MIR1269B - - HGNC:41787|miRBase:MI0016888 17 - microRNA 1269b miscRNA MIR1269B microRNA 1269b O - 20121230 -9606 100616495 MIR2392 - - HGNC:41843|miRBase:MI0016870 14 - microRNA 2392 miscRNA MIR2392 microRNA 2392 O - 20121230 -9606 100616496 ERVW-4 - C187-23|pol HGNC:39043 15 15q21.3 endogenous retrovirus group W, member 4 unknown ERVW-4 endogenous retrovirus group W, member 4 O - 20121017 -9606 100616497 ERV9-1 - pTR2 HGNC:39060 11 11q13.2 endogenous retrovirus group 9, member 1 unknown ERV9-1 endogenous retrovirus group 9, member 1 O - 20121017 -9606 100616498 MIR378E - - HGNC:41671|miRBase:MI0016750 5 - microRNA 378e miscRNA MIR378E microRNA 378e O - 20121230 -9606 100616499 MIR4435-1 - - HGNC:41713|miRBase:MI0016775 2 - microRNA 4435-1 miscRNA MIR4435-1 microRNA 4435-1 O - 20121230 -9606 100616500 MIR4683 - - HGNC:41883|miRBase:MI0017315 10 - microRNA 4683 miscRNA MIR4683 microRNA 4683 O - 20121230 -9606 100616530 LOC100616530 - - - 8 - tospeak miscRNA - - - - 20121230 -9606 100616668 TPTE2P5 - - HGNC:42356 13 13q14.11 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 5 pseudo TPTE2P5 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene 5 O - 20121230 -9606 100628307 DIO2-AS1 - - HGNC:44153 14 - DIO2 antisense RNA 1 miscRNA DIO2-AS1 DIO2 antisense RNA 1 O - 20121230 -9606 100628314 LOC100628314 - - - 20 20p11.22 uncharacterized LOC100628314 unknown - - - - 20120622 -9606 100628315 DNM3OS - DNM3-AS1|MIR199A2HG HGNC:41228 1 1q24.3 DNM3 opposite strand/antisense RNA miscRNA DNM3OS DNM3 opposite strand/antisense RNA O - 20121230 -9606 100628560 MIR3155B - hsa-mir-3155b miRBase:MI0016839 10 - microRNA mir-3155b miscRNA - - - - 20121230 -9606 100629121 LOC100629121 - - - 15 15q13.2 endonuclease domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100630918 LOC100630918 - - - 2 - uncharacterized LOC100630918 miscRNA - - - - 20121230 -9606 100630919 LOC100630919 - - - 8 8p12 thymosin beta 4, X-linked pseudogene pseudo - - - - 20121230 -9606 100630920 LOC100630920 - - - 8 8p12 ribosomal protein L10 pseudogene pseudo - - - - 20121230 -9606 100630923 LOC100630923 - - - 7 7q22.1 LOC100289561-PRKRIP1 readthrough miscRNA - - - - 20121230 -9606 100631239 LOC100631239 - - - 9 - keratin 18 pseudogene pseudo - - - - 20121230 -9606 100631242 LOC100631242 - - - X - zinc finger protein 852 pseudogene pseudo - - - - 20121230 -9606 100631243 LOC100631243 - - - 2 - zinc finger protein 211 pseudogene pseudo - - - - 20121230 -9606 100631247 LOC100631247 - - - 2 - GRAM domain containing 4 pseudogene pseudo - - - - 20121230 -9606 100631248 LOC100631248 - - - 14 - GRAM domain containing 4 pseudogene pseudo - - - - 20121230 -9606 100631249 LOC100631249 - - - 15 - GRAM domain containing 4 pseudogene pseudo - - - - 20121209 -9606 100631250 LOC100631250 - - - 15 - GRAM domain containing 4 pseudogene pseudo - - - - 20121230 -9606 100631251 LOC100631251 - - - 18 - GRAM domain containing 4 pseudogene pseudo - - - - 20121230 -9606 100631252 LOC100631252 - - - 21 - GRAM domain containing 4 pseudogene pseudo - - - - 20121230 -9606 100631253 LOC100631253 - - - 17 - TBC1 domain family, member 3 pseudogene pseudo - - - - 20121230 -9606 100631254 LOC100631254 - - - 15 - chondroitin sulfate proteoglycan 4 pseudogene pseudo - - - - 20121209 -9606 100631255 LOC100631255 - - - 15 - arginine/serine-rich coiled-coil 2 pseudogene pseudo - - - - 20121230 -9606 100631258 LOC100631258 - - - 11 - isocitrate dehydrogenase 3 (NAD+) gamma pseudogene pseudo - - - - 20121230 -9606 100631260 MARK2P13 - - HGNC:39804 7 - MAP/microtubule affinity-regulating kinase 2 pseudogene 13 pseudo MARK2P13 MAP/microtubule affinity-regulating kinase 2 pseudogene 13 O - 20121230 -9606 100631261 MARK2P14 - - HGNC:44495 3 - MAP/microtubule affinity-regulating kinase 2 pseudogene 14 pseudo MARK2P14 MAP/microtubule affinity-regulating kinase 2 pseudogene 14 O - 20121230 -9606 100631265 LOC100631265 - - - 15 - M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) pseudogene pseudo - - - - 20121230 -9606 100631266 LOC100631266 - - - 15 - M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) pseudogene pseudo - - - - 20121209 -9606 100631267 LOC100631267 - - - 15 - M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) pseudogene pseudo - - - - 20121230 -9606 100631268 LOC100631268 - - - 15 - M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) pseudogene pseudo - - - - 20121230 -9606 100631269 LOC100631269 - - - 8 - solute carrier family 10 (sodium/bile acid cotransporter family), member 5 pseudogene pseudo - - - - 20121230 -9606 100631287 LOC100631287 - - - - - keratin 18 pseudogene pseudo - - - - 20120318 -9606 100631288 LOC100631288 - - - - - keratin 18 pseudogene pseudo - - - - 20120318 -9606 100631289 LOC100631289 - - - - - keratin 18 pseudogene pseudo - - - - 20120318 -9606 100631290 LOC100631290 - - - - - keratin 18 pseudogene pseudo - - - - 20120318 -9606 100631291 LOC100631291 - - - - - keratin 38 pseudogene pseudo - - - - 20120318 -9606 100631292 LOC100631292 - - - - - keratin 18 pseudogene pseudo - - - - 20120318 -9606 100631299 LOC100631299 - - - - - perilipin 2 pseudogene pseudo - - - - 20120318 -9606 100631300 LOC100631300 - - - - - tenascin XB pseudogene pseudo - - - - 20120318 -9606 100631301 LOC100631301 - - - - - tenascin XB pseudogene pseudo - - - - 20120318 -9606 100631302 LOC100631302 - - - - - tenascin XB pseudogene pseudo - - - - 20120318 -9606 100631309 LOC100631309 - - - - - proline rich 21 pseudogene pseudo - - - - 20120318 -9606 100631310 LOC100631310 - - - - - proline rich 21 pseudogene pseudo - - - - 20120318 -9606 100631311 LOC100631311 - - - - - Obg-like ATPase 1 pseudogene pseudo - - - - 20120318 -9606 100631318 LOC100631318 - - - - - zinc finger protein 85 pseudogene pseudo - - - - 20120318 -9606 100631319 LOC100631319 - - - - - zinc finger protein 273 pseudogene pseudo - - - - 20120318 -9606 100631320 LOC100631320 - - - - - zinc finger protein 486 pseudogene pseudo - - - - 20120318 -9606 100631321 LOC100631321 - - - - - zinc finger protein 100 pseudogene pseudo - - - - 20120318 -9606 100631322 LOC100631322 - - - - - MAM domain containing 2 pseudogene pseudo - - - - 20120318 -9606 100631323 LOC100631323 - - - - - fermitin family member 3 pseudogene pseudo - - - - 20120318 -9606 100631330 LOC100631330 - - - - - polycomb group ring finger 6 pseudogene pseudo - - - - 20120318 -9606 100631337 LOC100631337 - - - - - nitric oxide synthase trafficker pseudogene pseudo - - - - 20120318 -9606 100631343 LOC100631343 - - - - - diffuse panbronchiolitis critical region 1 pseudogene pseudo - - - - 20120318 -9606 100631344 LOC100631344 - - - - - diffuse panbronchiolitis critical region 1 pseudogene pseudo - - - - 20120318 -9606 100631345 LOC100631345 - - - - - diffuse panbronchiolitis critical region 1 pseudogene pseudo - - - - 20120318 -9606 100631346 LOC100631346 - - - - - diffuse panbronchiolitis critical region 1 pseudogene pseudo - - - - 20120318 -9606 100631354 LOC100631354 - - - - - SMAD specific E3 ubiquitin protein ligase 2 pseudogene pseudo - - - - 20120318 -9606 100631370 LOC100631370 - - - - - immunoglobulin superfamily, DCC subclass, member 3 pseudogene pseudo - - - - 20120318 -9606 100631371 LOC100631371 - - - - - cytochrome P450, family 2, subfamily D, polypeptide 6 pseudogene pseudo - - - - 20120318 -9606 100631372 LOC100631372 - - - - - ATP-binding cassette, sub-family B (MDR/TAP), member 10 pseudogene pseudo - - - - 20120318 -9606 100631373 LOC100631373 - - - - - ATP-binding cassette, sub-family B (MDR/TAP), member 10 pseudogene pseudo - - - - 20120318 -9606 100631374 LOC100631374 - - - - - M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) pseudogene pseudo - - - - 20120318 -9606 100631375 LOC100631375 - - - - - M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) pseudogene pseudo - - - - 20120318 -9606 100631376 LOC100631376 - - - - - sphingomyelin phosphodiesterase 3, neutral membrane (neutral sphingomyelinase II) pseudogene pseudo - - - - 20120318 -9606 100631377 LOC100631377 - - - 1 1q25.1 uncharacterized LOC100631377 unknown - - - - 20120622 -9606 100631378 LOC100631378 - - - 19 19q13.13 uncharacterized 100631378 miscRNA - - - - 20121230 -9606 100631380 LOC100631380 - - - 18 18p11.2 protein phosphatase 6, regulatory subunit 2 pseudogene 1 pseudo - - - - 20121230 -9606 100631381 PPP6R2P1 - - HGNC:39605 21 21q11.2 protein phosphatase 6, regulatory subunit 2 pseudogene 1 pseudo PPP6R2P1 protein phosphatase 6, regulatory subunit 2 pseudogene 1 O - 20121230 -9606 100631382 ZFAND6P1 - - HGNC:42978 9 9p zinc finger, AN1-type domain 6 pseudogene 1 pseudo ZFAND6P1 zinc finger, AN1-type domain 6 pseudogene 1 O - 20121230 -9606 100631383 FAM47E-STBD1 - - Ensembl:ENSG00000189157|Vega:OTTHUMG00000160966 4 4q FAM47E-STBD1 readthrough protein-coding - - - uncharacterized protein LOC100631383 20121230 -9606 100642175 SPRY4-IT1 - - HGNC:42394 5 5q31.3 SPRY4 intronic transcript 1 (non-protein coding) miscRNA SPRY4-IT1 SPRY4 intronic transcript 1 (non-protein coding) O - 20120508 -9606 100642176 LINC00266-4P - NCRNA00266-4P|NCRNA00266D|NCRNA00266Y2 HGNC:38800 Y Yq11.23 long intergenic non-protein coding RNA 266-4, pseudogene pseudo LINC00266-4P long intergenic non-protein coding RNA 266-4, pseudogene O - 20121209 -9606 100652730 LINC00659 - - HGNC:44316 20 - long intergenic non-protein coding RNA 659 miscRNA LINC00659 long intergenic non-protein coding RNA 659 O - 20121230 -9606 100652732 LOC100652732 - - - 10 - coiled-coil and C2 domain-containing protein 2A-like protein-coding - - - - 20121209 -9606 100652736 LOC100652736 - - - 22 - uncharacterized LOC100652736 miscRNA - - - - 20121230 -9606 100652737 LOC100652737 - - - 17 - uncharacterized LOC100652737 pseudo - - - - 20121209 -9606 100652739 LOC100652739 - - - 6 - uncharacterized LOC100652739 miscRNA - - - - 20121230 -9606 100652740 LOC100652740 - - Ensembl:ENSG00000261359|Vega:OTTHUMG00000132405 16 - uncharacterized LOC100652740 protein-coding - - - - 20121209 -9606 100652741 LOC100652741 - - - 19 - protein capicua homolog protein-coding - - - - 20121209 -9606 100652743 LOC100652743 - - - 2 - ig kappa chain V-III region VH-like pseudogene pseudo - - - - 20121230 -9606 100652748 LOC100652748 - - - 10 - uncharacterized LOC100652748 miscRNA - - - - 20121209 -9606 100652749 LOC100652749 - - - 15 - uncharacterized LOC100652749 miscRNA - - - - 20121230 -9606 100652752 LOC100652752 - - - 16 - HECT and RLD domain containing E3 ubiquitin protein ligase 2 pseudogene pseudo - - - - 20121230 -9606 100652758 LOC100652758 - - - 5 - uncharacterized LOC100652758 protein-coding - - - - 20121230 -9606 100652759 PRICKLE2-AS1 - - HGNC:40916 3 - PRICKLE2 antisense RNA 1 miscRNA PRICKLE2-AS1 PRICKLE2 antisense RNA 1 O - 20121230 -9606 100652766 LOC100652766 - - Ensembl:ENSG00000151914|Vega:OTTHUMG00000014913 6 - dystonin-like protein-coding - - - - 20121209 -9606 100652768 LOC100652768 - - - 11 - uncharacterized LOC100652768 miscRNA - - - - 20121230 -9606 100652770 LOC100652770 - - - 18 - uncharacterized LOC100652770 miscRNA - - - - 20121230 -9606 100652772 LOC100652772 - - - 5 - uncharacterized LOC100652772 miscRNA - - - - 20121230 -9606 100652773 LOC100652773 - - - X|Y X;Y ribosomal protein L14 pseudogene pseudo - - - - 20121230 -9606 100652774 LOC100652774 - - - 2 - putative uncharacterized protein UNQ3029/PRO9830-like protein-coding - - - - 20121209 -9606 100652775 HP11026 - - - 2 - uncharacterized protein HP11026 protein-coding - - - - 20121230 -9606 100652776 LOC100652776 - - - 6 - uncharacterized LOC100652776 pseudo - - - - 20121209 -9606 100652777 LOC100652777 - - - 16 - group 10 secretory phospholipase A2-like protein-coding - - - - 20121209 -9606 100652778 LOC100652778 - - - 18 - uncharacterized LOC100652778 miscRNA - - - - 20121209 -9606 100652780 LOC100652780 - - - 2 - Ig heavy chain V-I region V35-like other - - - - 20121209 -9606 100652781 SNX29P1 - RUNDC2B|RUNDC2L HGNC:31913 16 16p12.2 sorting nexin 29 pseudogene 1 pseudo SNX29P1 sorting nexin 29 pseudogene 1 O - 20121230 -9606 100652782 LOC100652782 - - - 5 - uncharacterized LOC100652782 miscRNA - - - - 20121209 -9606 100652783 LOC100652783 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121209 -9606 100652791 LOC100652791 - - - 8 8p23.1 uncharacterized LOC100652791 miscRNA - - - - 20121230 -9606 100652792 LOC100652792 - - - 15 - ferritin, light polypeptide pseudogene pseudo - - - - 20121230 -9606 100652794 LOC100652794 - - - 6 - UMP-CMP kinase-like pseudo - - - - 20121209 -9606 100652796 LOC100652796 - - - 18 - bolA homolog 2B (E. coli) pseudogene pseudo - - - - 20121230 -9606 100652801 NXT1P1 - - HGNC:39708 13 - NTF2-like export factor 1 pseudogene 1 pseudo NXT1P1 NTF2-like export factor 1 pseudogene 1 O - 20121230 -9606 100652803 LOC100652803 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121209 -9606 100652807 LOC100652807 - - - 3 - putative uncharacterized protein C3orf53-like protein-coding - - - - 20121209 -9606 100652813 LOC100652813 - - - 18 - zinc finger protein 138 pseudogene pseudo - - - - 20121230 -9606 100652818 LOC100652818 - - - 16 - Ig heavy chain V-I region V35-like other - - - - 20121209 -9606 100652823 LOC100652823 - - - 18 - uncharacterized LOC100652823 miscRNA - - - - 20121209 -9606 100652824 LOC100652824 - - Ensembl:ENSG00000182329 2 - uncharacterized LOC100652824 protein-coding - - - - 20121230 -9606 100652831 NANOGNBP3 - - HGNC:42160 X - NANOGNB pseudogene 3 pseudo NANOGNBP3 NANOGNB pseudogene 3 O - 20121230 -9606 100652833 LOC100652833 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121209 -9606 100652834 LOC100652834 - - - 1 - uncharacterized LOC100652834 miscRNA - - - - 20121209 -9606 100652835 RBSG2 - - - 9 - retinoblastoma-specific gene 2 unknown - - - - 20121230 -9606 100652840 LOC100652840 - - - 15 - M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) pseudogene pseudo - - - - 20121230 -9606 100652844 LOC100652844 - - - 5 - uncharacterized LOC100652844 pseudo - - - - 20121209 -9606 100652846 CACNA1C-AS1 - - HGNC:40119 12 - CACNA1C antisense RNA 1 miscRNA CACNA1C-AS1 CACNA1C antisense RNA 1 O - 20121230 -9606 100652853 HP07349 - - - 5 - uncharacterized LOC100652853 miscRNA - - - - 20121230 -9606 100652856 LOC100652856 - - - 13 - uncharacterized LOC100652856 miscRNA - - - - 20121230 -9606 100652857 TMCO5B - - HGNC:34243 15 15q13.3 transmembrane and coiled-coil domains 5B, pseudogene pseudo TMCO5B transmembrane and coiled-coil domains 5B, pseudogene O - 20121230 -9606 100652865 LINC00539 - - HGNC:43672 13 - long intergenic non-protein coding RNA 539 miscRNA LINC00539 long intergenic non-protein coding RNA 539 O - 20121230 -9606 100652869 LOC100652869 - - - 13 - uncharacterized LOC100652869 miscRNA - - - - 20121209 -9606 100652871 LOC100652871 - - - 22 - glutathione S-transferase theta-4-like protein-coding - - - - 20121209 -9606 100652883 ALOX15P1 - ALOX15P HGNC:13742 17 - arachidonate 15-lipoxygenase pseudogene 1 pseudo ALOX15P1 arachidonate 15-lipoxygenase pseudogene 1 O - 20121230 -9606 100652885 LOC100652885 - - - 20 - signal-regulatory protein beta-1-like pseudo - - - - 20121209 -9606 100652894 LOC100652894 - - - 22 - uncharacterized LOC100652894 protein-coding - - - - 20121230 -9606 100652897 LOC100652897 - - - 12 - density-regulated protein pseudogene pseudo - - - - 20121230 -9606 100652899 ANP32BP3 - - HGNC:44089 15 - acidic (leucine-rich) nuclear phosphoprotein 32 family, member B pseudogene 3 pseudo ANP32BP3 acidic (leucine-rich) nuclear phosphoprotein 32 family, member B pseudogene 3 O - 20121230 -9606 100652900 LOC100652900 - - - 9 - peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121209 -9606 100652901 LOC100652901 - - - 22 - uncharacterized LOC100652901 protein-coding - - - - 20121230 -9606 100652902 LOC100652902 - - - 20 - uncharacterized LOC100652902 pseudo - - - - 20121209 -9606 100652908 LOC100652908 - - - 1 - GRB2-related adaptor protein pseudogene pseudo - - - - 20121230 -9606 100652909 LOC100652909 - - - 19 - uncharacterized LOC100652909 miscRNA - - - - 20121230 -9606 100652911 LOC100652911 - - - 19 - uncharacterized LOC100652911 miscRNA - - - - 20121209 -9606 100652913 LOC100652913 - - - 9 - uncharacterized LOC100652913 miscRNA - - - - 20121230 -9606 100652918 LOC100652918 - - - 1 - glyceraldehyde-3-phosphate dehydrogenase pseudogene pseudo - - - - 20121230 -9606 100652925 LOC100652925 - - - 22 - uncharacterized LOC100652925 unknown - - - - 20120726 -9606 100652927 LOC100652927 - - - 17 - uncharacterized LOC100652927 miscRNA - - - - 20121209 -9606 100652928 LOC100652928 - - - 6 - glyceraldehyde-3-phosphate dehydrogenase-like pseudo - - - - 20121209 -9606 100652929 HP09025 hCG_1987623 - - 17 17q25.3 uncharacterized LOC100652929 miscRNA - - - - 20121230 -9606 100652930 LOC100652930 - - - 20 - uncharacterized LOC100652930 unknown - - - - 20121230 -9606 100652931 LOC100652931 - - - Y - RNA binding motif protein, Y-linked, family 1, member B pseudogene pseudo - - - - 20120726 -9606 100652933 IGANRP - - - 12 - uncharacterized LOC100652933 unknown - - - - 20121230 -9606 100652939 MTND2P28 - - HGNC:42129 1 - MT-ND2 pseudogene 28 pseudo MTND2P28 MT-ND2 pseudogene 28 O - 20121230 -9606 100652943 LOC100652943 - - - 19 - putative uncharacterized protein FLJ38264-like protein-coding - - - - 20121230 -9606 100652953 LOC100652953 - - - 6 - 60S ribosomal protein L30-like protein-coding - - - - 20121209 -9606 100652954 LOC100652954 - - - 15 - uncharacterized LOC100652954 miscRNA - - - - 20121209 -9606 100652955 LOC100652955 - - - 4 - COP9 signalosome complex subunit 3-like pseudo - - - - 20121209 -9606 100652960 LOC100652960 - - - 6 - SUZ RNA binding domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100652967 LOC100652967 - - - 1 - chromosome 14 open reading frame 2 pseudogene pseudo - - - - 20121230 -9606 100652969 LOC100652969 - - - 1 - putative uncharacterized protein encoded by LINC00269-like pseudo - - - - 20121209 -9606 100652972 LOC100652972 - - - 21 - uncharacterized LOC100652972 unknown - - - - 20121102 -9606 100652974 LOC100652974 - - - 16 - superoxide dismutase 1, soluble pseudogene pseudo - - - - 20121230 -9606 100652976 LOC100652976 - - - 11 - ankyrin repeat domain-containing protein 33B-like pseudo - - - - 20121209 -9606 100652981 LOC100652981 - - - 6 - putative uncharacterized protein encoded by LINC00269-like pseudo - - - - 20121209 -9606 100652982 LOC100652982 - - - 5 - uncharacterized LOC100652982 pseudo - - - - 20121209 -9606 100652985 LOC100652985 - - - 12 - uncharacterized LOC100652985 pseudo - - - - 20121209 -9606 100652988 LINC00702 - - HGNC:44676 10 - long intergenic non-protein coding RNA 702 miscRNA LINC00702 long intergenic non-protein coding RNA 702 O - 20121207 -9606 100652990 LOC100652990 - - - 7 - uncharacterized LOC100652990 pseudo - - - - 20121209 -9606 100652991 LOC100652991 - - - 2 - uncharacterized LOC100652991 miscRNA - - - - 20121209 -9606 100652994 LOC100652994 - - - 21 - uncharacterized LOC100652994 miscRNA - - - - 20121209 -9606 100652997 LINC00706 - - HGNC:44690 10 - long intergenic non-protein coding RNA 706 miscRNA LINC00706 long intergenic non-protein coding RNA 706 O - 20121207 -9606 100652999 LOC100652999 - - - 12 - uncharacterized LOC100652999 miscRNA - - - - 20121230 -9606 100653000 LOC100653000 - - - 12 - uncharacterized LOC100653000 miscRNA - - - - 20121209 -9606 100653005 LOC100653005 - - - 6 - uncharacterized LOC100653005 miscRNA - - - - 20121209 -9606 100653021 LOC100653021 - - - 14 - uncharacterized LOC100653021 miscRNA - - - - 20121209 -9606 100653022 PP12719 - - - 12 - uncharacterized LOC100653022 unknown - - - - 20121230 -9606 100653034 LOC100653034 - - - 6 - uncharacterized LOC100653034 protein-coding - - - - 20121102 -9606 100653039 LOC100653039 - - - 2 - Ig heavy chain V-III region VH26-like other - - - - 20121209 -9606 100653044 LOC100653044 - - - 19 - protein LSM14 homolog A-like pseudo - - - - 20121102 -9606 100653046 LOC100653046 - - - 4 - double homeobox protein 4-like pseudo - - - - 20121102 -9606 100653047 LOC100653047 - - - 4 - 60S ribosomal protein L23a-like pseudo - - - - 20121102 -9606 100653048 LOC100653048 - - - 19 - killer cell immunoglobulin-like receptor 2DL5A-like pseudo - - - - 20121102 -9606 100653049 LOC100653049 - - - 17 - keratin, type I cuticular Ha4-like protein-coding - - - - 20121102 -9606 100653050 LOC100653050 - - - 19 - killer cell immunoglobulin-like receptor 2DL2-like protein-coding - - - - 20121120 -9606 100653052 LOC100653052 - - - 19 - putative killer cell immunoglobulin-like receptor like protein KIR3DP1-like protein-coding - - - - 20121102 -9606 100653053 TAS2R68P - PS7|T2R68P HGNC:43905 12 - taste receptor, type 2, member 68 pseudogene pseudo TAS2R68P taste receptor, type 2, member 68 pseudogene O - 20121230 -9606 100653055 LOC100653055 - - - 13 - 60S ribosomal protein L23a-like pseudo - - - - 20121102 -9606 100653056 LOC100653056 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121102 -9606 100653057 LOC100653057 - - - 16 - liver carboxylesterase 1-like protein-coding - - - - 20121110 -9606 100653058 LOC100653058 - - - 5 - putative POM121-like protein 1-like protein-coding - - - - 20121102 -9606 100653059 LOC100653059 - - - 5 - putative POM121-like protein 1-like protein-coding - - - - 20121120 -9606 100653060 LOC100653060 - - - 5 - putative POM121-like protein 1-like protein-coding - - - - 20121102 -9606 100653061 LOC100653061 - - - 5 - beta-glucuronidase-like protein SMA4-like protein-coding - - - - 20121120 -9606 100653065 LOC100653065 - - - 5 - uncharacterized LOC100653065 pseudo - - - - 20121102 -9606 100653066 LOC100653066 - - - 19 - killer cell immunoglobulin-like receptor 3DL1-like pseudo - - - - 20121102 -9606 100653067 LOC100653067 - - - 19 - putative killer cell immunoglobulin-like receptor like protein KIR3DP1-like protein-coding - - - - 20121102 -9606 100653068 LOC100653068 - - - 19 - putative killer cell immunoglobulin-like receptor like protein KIR3DP1-like protein-coding - - - - 20121102 -9606 100653071 LOC100653071 - - - 3 - cartilage-associated protein-like protein-coding - - - - 20121102 -9606 100653084 LOC100653084 - - - 14 - Ig heavy chain V-III region VH26-like other - - - - 20121102 -9606 100653086 LOC100653086 - - - 6 - uncharacterized LOC100653086 miscRNA - - - - 20121102 -9606 100653091 LOC100653091 - - - 9 - uncharacterized LOC100653091 pseudo - - - - 20121209 -9606 100653104 LOC100653104 - - - 6 - putative uncharacterized protein encoded by LINC00269-like pseudo - - - - 20121102 -9606 100653113 LOC100653113 - - - Un - uncharacterized LOC100653113 protein-coding - - - - 20121222 -9606 100653133 LOC100653133 - - - 15 - U3 small nucleolar ribonucleoprotein protein MPP10-like pseudo - - - - 20121102 -9606 100653137 LOC100653137 - - - 10 - cadherin-23-like protein-coding - - - - 20121120 -9606 100653149 LOC100653149 - - - 22 - uncharacterized LOC100653149 miscRNA - - - - 20121102 -9606 100653162 LOC100653162 - - - 2 - rho-related GTP-binding protein RhoQ-like pseudo - - - - 20121102 -9606 100653165 LOC100653165 - - - Un - double homeobox protein 4-like protein 2-like pseudo - - - - 20121102 -9606 100653166 LOC100653166 - - - Un - uncharacterized LOC100653166 miscRNA - - - - 20121102 -9606 100653184 LOC100653184 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100653190 LOC100653190 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100653194 LOC100653194 - - - 20 - signal-regulatory protein beta-1 isoform 3-like protein-coding - - - - 20121102 -9606 100653200 LOC100653200 - - - 11 - putative uncharacterized protein FLJ38264-like pseudo - - - - 20121102 -9606 100653206 LOC100653206 - - - 9 - uncharacterized LOC100653206 miscRNA - - - - 20121209 -9606 100653217 LOC100653217 - - - 11 - neurotrimin-like protein-coding - - - - 20121110 -9606 100653225 LOC100653225 - - - Un - ovostatin homolog 2-like protein-coding - - - - 20121102 -9606 100653231 LOC100653231 - - - 20 - signal-regulatory protein beta-1-like protein-coding - - - - 20121102 -9606 100653233 LOC100653233 - - - 7 - uncharacterized LOC100653233 miscRNA - - - - 20121102 -9606 100653243 LOC100653243 - - - 15 - uncharacterized LOC100653243 protein-coding - - - putative V-set and immunoglobulin domain-containing-like protein IGHV4OR15-8-like 20121222 -9606 100653245 LOC100653245 - - - Un - Ig heavy chain V-III region VH26-like other - - - - 20121102 -9606 100653247 LOC100653247 - - - 6 - dual specificity protein phosphatase 22-like protein-coding - - - - 20121102 -9606 100653251 LOC100653251 - - - Un - ankyrin repeat domain-containing protein SOWAHC-like protein-coding - - - - 20121102 -9606 100653274 LOC100653274 - - - Y - testis-specific chromodomain protein Y 1-like pseudo - - - - 20121102 -9606 100653275 LOC100653275 - - - 11 - uncharacterized LOC100653275 miscRNA - - - - 20121102 -9606 100653282 LOC100653282 - - - Y - uncharacterized LOC100653282 pseudo - - - - 20121102 -9606 100653284 LOC100653284 - - - 9 - uncharacterized LOC100653284 pseudo - - - - 20121102 -9606 100653292 LOC100653292 - - - Un - putative HERC2-like protein 3-like protein-coding - - - - 20121102 -9606 100653295 LOC100653295 - - - Y - uncharacterized LOC100653295 pseudo - - - - 20121102 -9606 100653296 LOC100653296 - - - 12 - uncharacterized LOC100653296 pseudo - - - - 20121102 -9606 100653309 LOC100653309 - - - 22 - uncharacterized LOC100653309 miscRNA - - - - 20121102 -9606 100653334 LOC100653334 - - - 2 - COBW domain-containing protein 1-like protein-coding - - - - 20121102 -9606 100653336 LOC100653336 - - - 2 - uncharacterized LOC100653336 miscRNA - - - - 20121102 -9606 100653348 LOC100653348 - - - 7 - uncharacterized LOC100653348 miscRNA - - - - 20121102 -9606 100653358 LOC100653358 - - - 7 - putative uncharacterized protein C20orf69-like protein-coding - - - - 20121102 -9606 100653365 BED - - MIM:300843 X Xq28 Bornholm eye disease unknown - - - - 20120622 -9606 100653366 PSC - - MIM:613806 3 3p21 Cholangitis, primary sclerosing unknown - - - - 20120622 -9606 100653367 OFC13 - - MIM:613857 1 1p33 Orofacial cleft 13 unknown - - - - 20120622 -9606 100653368 SCA32 - - HGNC:37475|MIM:613909 7 7q32-q33 spinocerebellar ataxia 32 unknown SCA32 spinocerebellar ataxia 32 O - 20120622 -9606 100653369 APMR3 - - MIM:613930 18 18q11.2-q12.2 Alopecia-mental retardation syndrome 3 unknown - - - - 20120622 -9606 100653370 MYP19 - - MIM:613969 5 5p15.1-p13.3 Myopia 19, autosomal dominant unknown - - - - 20120622 -9606 100653371 CPVT3 - - MIM:614021 7 7p22-p14 Ventricular tachycardia, catecholaminergic polymorphic, 3 unknown - - - - 20120622 -9606 100653372 SRXX3 - - MIM:300833 X Xq26.3 46XX sex reversal 3 unknown - - - - 20120622 -9606 100653373 KONDS - - MIM:606242 1 1p36.32-p35.3 Kondoh syndrome unknown - - - - 20120622 -9606 100653374 DEL17P13.1 - C17DELp13.1 MIM:613776 17 17p13.1 Chromosome 17p13.1 deletion syndrome unknown - - - - 20120622 -9606 100653375 ADIPQTL5 - - MIM:613836 16 16q23.3 Adiponectin, serum level of, QTL5 unknown - - - - 20120622 -9606 100653376 DFNB89 - - HGNC:37648|MIM:613916 16 16q21-q23.2 deafness, autosomal recessive 89 unknown DFNB89 deafness, autosomal recessive 89 O - 20120622 -9606 100653377 ASG - - MIM:108420 1 - Spermatogenic failure unknown - - - - 20120622 -9606 100653378 SRXX2 - DEL17q24.3|DUP17q24.3 MIM:278850 17 17q24.3-q25.1 46XX sex reversal 2 unknown - - - - 20120622 -9606 100653379 MYMY4 - CXDELq38 MIM:300845 X Xq28 Moyamoya disease 4 unknown - - - - 20120622 -9606 100653380 DEL7Q11.23 - C7DELq11.23 MIM:613729 7 7q11.23 Chromosome 7q11.23 deletion syndrome, distal, 1.2Mb unknown - - - - 20120902 -9606 100653381 GEFSP8 - - MIM:613828 6 6q16.3-q22.31 Generalized epilepsy with febrile seizures plus, type 8 unknown - - - - 20120622 -9606 100653382 DEL13Q14 - C13DELq14 MIM:613884 13 13q14 Chromosome 13q14 deletion syndrome unknown - - - - 20120622 -9606 100653383 PSMNSW - - MIM:613938 20 20q12-q13.12 Parasomnia, sleepwalking type unknown - - - - 20120622 -9606 100653384 IGAN2 - - MIM:613944 2 2q36 IgA nephropathy, susceptibility to, 2 unknown - - - - 20120622 -9606 100653385 DEL3PTERP25 - C3DELpterp25 MIM:613792 3 3pter-p25 3p- syndrome unknown - - - - 20120622 -9606 100653390 DFNB81 - - HGNC:35420|MIM:614129 19 19p13 deafness, autosomal recessive 81 unknown DFNB81 deafness, autosomal recessive 81 O - 20120622 -9606 100653393 CACD3 - - MIM:613144 - - Choroidal dystrophy, central areolar 3 unknown - - - - 20120622 -9606 100653395 LOC100653395 - - - 3 3q13.2 methionine adenosyltransferase II, alpha pseudogene pseudo - - - - 20121230 -9606 100653396 LOC100653396 - - - 12 - yippee-like 5 (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100653397 NAMA - - HGNC:42408 9 9q22.33 non-protein coding RNA, associated with MAP kinase pathway and growth arrest miscRNA NAMA non-protein coding RNA, associated with MAP kinase pathway and growth arrest O - 20120608 -9606 100653423 BANF1P4 - - HGNC:43884 1 - barrier to autointegration factor 1 pseudogene 4 pseudo BANF1P4 barrier to autointegration factor 1 pseudogene 4 O - 20121230 -9606 100653489 MTND4P14 - - HGNC:42201 9 9p24.1 MT-ND4 pseudogene 14 pseudo MTND4P14 MT-ND4 pseudogene 14 O - 20121230 -9606 100653515 LOC100653515 - - Ensembl:ENSG00000178404|Vega:OTTHUMG00000177628 17 17q25 differential display clone 8 protein-coding - - - - 20121230 -9606 100682260 HPPD - - MIM:614187 14 14q31 Hypertelorism, preauricular sinus, punctal pits, and deafness unknown - - - - 20120622 -9606 100682325 NDNC9 - - MIM:614149 17 17q25.1-q25.3 Nail disorder, nonsyndromic congenital, 9 unknown - - - - 20120622 -9606 100682326 MYP20 - - MIM:614166 13 13q12.12 Myopia 20, autosomal dominant unknown - - - - 20120622 -9606 100682395 LNCR5 - - MIM:614210 3 3q28 Lung cancer susceptibility 5 unknown - - - - 20120622 -9606 100689013 MRT17 - MRT21 MIM:614207 11 11p15 Mental retardation, autosomal recessive 17 unknown - - - - 20120622 -9606 100689014 MRT16 - - MIM:614208 9 9p23-p13.3 Mental retardation, autosomal recessive 16 unknown - - - - 20120622 -9606 100689073 ARHGAP22-IT1 - - HGNC:42944 10 10q11.22 ARHGAP22 intronic transcript 1 (non-protein coding) miscRNA ARHGAP22-IT1 ARHGAP22 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100689074 POU6F2-AS2 - - HGNC:21887 7 7p14.1 POU6F2 antisense RNA 2 miscRNA POU6F2-AS2 POU6F2 antisense RNA 2 O - 20121021 -9606 100689211 HYSP3 - - MIM:146450 7 7q32.2-q36.1 Hypospadias 3, autosomal unknown - - - - 20120622 -9606 100689212 PBC5 - - MIM:614221 17 17q12 Biliary cirrhosis, primary, 5 unknown - - - - 20120622 -9606 100689213 GFND1 - - MIM:137950 1 1q32 Glomerulopathy with fibronectin deposits 1 unknown - - - - 20120622 -9606 100689214 HYSP4 - - MIM:300856 X Xp11.22 Hypospadias 4, X-linked, susceptibilty to unknown - - - - 20120622 -9606 100689215 PBC4 - - MIM:614220 7 7q32 Biliary cirrhosis, primary, 4 unknown - - - - 20120622 -9606 100689216 NRCLP6 - - MIM:614223 19 19p13.2 Narcolepsy 6 unknown - - - - 20120622 -9606 100689229 H3F3AP3 - p18 HGNC:42873 3 3q13.13 H3 histone, family 3A pseudogene 3 pseudo H3F3AP3 H3 histone, family 3A pseudogene 3 O - 20121230 -9606 100689296 CNN2P11 - - HGNC:39536 2 - calponin 2 pseudogene 11 pseudo CNN2P11 calponin 2 pseudogene 11 O - 20121230 -9606 100689490 HNFJ3 - - MIM:614227 2 2p22.1-p21 Hyperuricemic nephropathy, familial juvenile, 3 unknown - - - - 20120622 -9606 100689491 DEL8Q21.11 - C8DELq21.11 MIM:614230 8 8q21.11 Chromosome 8q21.11 deletion syndrome unknown - - - - 20120622 -9606 100736250 HYPT9 - - MIM:614237 10 10q11.23-q22.3 Hypotrichosis 9 unknown - - - - 20120622 -9606 100736251 HYP10 - - MIM:614238 7 7p22.3-p21.3 Hypotrichosis 10 unknown - - - - 20120622 -9606 100736408 LOC100736408 - - - 22 - NAD kinase domain containing 1 pseudogene pseudo - - - - 20121230 -9606 100736411 LOC100736411 - - - 22 - ash2 (absent, small, or homeotic)-like (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100736412 LOC100736412 - - - 22 - ash2 (absent, small, or homeotic)-like (Drosophila) pseudogene pseudo - - - - 20121230 -9606 100739996 MRXS17 - - MIM:300858 X Xp21.1-p11.23 Mental retardation, X-linked, syndromic 17 unknown - - - - 20120622 -9606 100750225 PCAT1 - PCAT-1 HGNC:43022 8 8q24.21 prostate cancer associated transcript 1 (non-protein coding) miscRNA PCAT1 prostate cancer associated transcript 1 (non-protein coding) O - 20121230 -9606 100750238 EJM9 - - MIM:614280 2 2q33-q36 Epilepsy, juvenile myoclonic, susceptiblity to, 9 unknown - - - - 20120622 -9606 100750245 SNAPC5P1 - - HGNC:38667 6 - small nuclear RNA activating complex, polypeptide 5, 19kDa pseudogene 1 pseudo SNAPC5P1 small nuclear RNA activating complex, polypeptide 5, 19kDa pseudogene 1 O - 20121230 -9606 100750246 HIF1A-AS1 - 5'aHIF-1A HGNC:43014|MIM:614528 14 14q23.2 HIF1A antisense RNA 1 miscRNA HIF1A-AS1 HIF1A antisense RNA 1 O - 20121117 -9606 100750247 HIF1A-AS2 - 3'aHIF-1A|aHIF HGNC:43015|MIM:614529 14 14q23.2 HIF1A antisense RNA 2 miscRNA HIF1A-AS2 HIF1A antisense RNA 2 O - 20121230 -9606 100750325 RCAN3AS - - HGNC:39009 1 1p36.11 RCAN3 antisense miscRNA RCAN3AS RCAN3 antisense O - 20121230 -9606 100750326 HTT-AS1 - HTTAS HGNC:37118 4 4p16.3 HTT antisense RNA 1 (head to head) miscRNA HTT-AS1 HTT antisense RNA 1 (head to head) O - 20121230 -9606 100750328 ANIB11 - - MIM:614252 8 8p22 Aneurysm, intracranial berry, 11 unknown - - - - 20120622 -9606 100750329 TET18P - - MIM:614290 18 18p Tetrasomy 18p unknown - - - - 20120622 -9606 100750330 SCA34 - - HGNC:37503|MIM:133190 6 6q12.3-q16.2 spinocerebellar ataxia 34 unknown SCA34 spinocerebellar ataxia 34 O - 20120622 -9606 100775104 KLHL7-AS1 - PLATAK HGNC:43431 7 7p15.3 KLHL7 antisense RNA 1 (head to head) miscRNA KLHL7-AS1 KLHL7 antisense RNA 1 (head to head) O - 20121230 -9606 100775105 ERVK-18 - HERV-K18|c1_C|env HGNC:39025 1 1q23.3 endogenous retrovirus group K, member 18 unknown ERVK-18 endogenous retrovirus group K, member 18 O - 20121017 -9606 100775107 LUST - - - 3 3p21.3 RBM5 antisense RNA miscRNA - - - - 20121230 -9606 100820631 MLSM7 - C7DELq|DEL7q MIM:252270 7 7q Myelodysplasia and leukemia syndrome with monosomy 7 unknown - - - - 20120622 -9606 100820632 DEL15Q25 - C15DELq25 MIM:614294 15 15q25 Chromosome 15q25 deletion syndrome unknown - - - - 20120622 -9606 100820633 DEL2Q23.1 - C2DELq23.1 MIM:156200 2 2q23.1 Chromosome 2q23.1 deletion syndrome unknown - - - - 20120622 -9606 100820709 LINC00501 - - HGNC:43439 3 3q26.32 long intergenic non-protein coding RNA 501 miscRNA LINC00501 long intergenic non-protein coding RNA 501 O - 20121021 -9606 100820732 LOC100820732 - - - 9 9p22.2 LSM1 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100820733 LOC100820733 - - - 5 5q21 LSM2 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100820734 LOC100820734 - - - 19 19p13.1 LSM2 homolog, U6 small nuclear RNA associated (S. cerevisiae) pseudogene pseudo - - - - 20121230 -9606 100820735 HIST1H2BPS3 - - HGNC:42633 13 - histone cluster 1, H2b, pseudogene 3 pseudo HIST1H2BPS3 histone cluster 1, H2b, pseudogene 3 O - 20121230 -9606 100820741 RBBP4P6 - - HGNC:42373 5 - retinoblastoma binding protein 4 pseudogene 6 pseudo RBBP4P6 retinoblastoma binding protein 4 pseudogene 6 O - 20121230 -9606 100820757 VUR4 - - MIM:614317 5 5q14.2 Vesicoureteral reflux 4 unknown - - - - 20120622 -9606 100820758 CCCSX - - MIM:300864 X - Cerebral-cerebellar-coloboma syndrome, X-linked unknown - - - - 20120622 -9606 100820759 SPGFX2 - - MIM:309120 X - Spermatogenic failure, X-linked, 2 unknown - - - - 20120622 -9606 100820760 VUR5 - - MIM:614318 13 13q33.2 Vesicoureteral reflux 5 unknown - - - - 20120622 -9606 100820761 MRXSCS - - MIM:300861 X Xq21.33-q23 Mental retardation, X-linked, syndromic, Chudley-Schwartz type unknown - - - - 20120622 -9606 100820762 CPBHM - - MIM:300863 X - Chondrodysplasia with platyspondyly, distinctive brachydactyly, hydrocephaly, and microphthalmia unknown - - - - 20120622 -9606 100820763 VUR6 - - MIM:614319 18 18q12.3 Vesicoureteral reflux 6 unknown - - - - 20120622 -9606 100820764 SCAR12 - - MIM:614322 16 16q21-q23 Spinocerebellar ataxia, autosomal recessive 12 unknown - - - - 20120622 -9606 100820829 MYZAP - GCOM1|Gup|Gup1|Gup2|MYOZAP HGNC:43444|MIM:614071|Ensembl:ENSG00000137878|Ensembl:ENSG00000263155|Vega:OTTHUMG00000132453|Vega:OTTHUMG00000176411 15 15q21.3 myocardial zonula adherens protein protein-coding MYZAP myocardial zonula adherens protein O GRINL1A upstream protein|myocardial intercalated disc protein|myocardium-enriched Zo-associated protein|myocardium-enriched zonula adherens protein|myocardium-enriched zonula occludens-1-associated protein 20121230 -9606 100846978 LINC00506 - - HGNC:43557 3 3p12.1 long intergenic non-protein coding RNA 506 miscRNA LINC00506 long intergenic non-protein coding RNA 506 O - 20120508 -9606 100846991 MIR5197 - - HGNC:43450|miRBase:MI0018176 5 - microRNA 5197 miscRNA MIR5197 microRNA 5197 O - 20121230 -9606 100846992 MIR548AW - - HGNC:43454|miRBase:MI0019283 9 - microRNA 548aw miscRNA MIR548AW microRNA 548aw O - 20121230 -9606 100846993 MIR5009 - - HGNC:43458|miRBase:MI0017877 15 - microRNA 5009 miscRNA MIR5009 microRNA 5009 O - 20121230 -9606 100846994 MIR3670-2 - - HGNC:43460|miRBase:MI0019112 16 - microRNA 3670-2 miscRNA MIR3670-2 microRNA 3670-2 O - 20121222 -9606 100846995 MIR5000 - - HGNC:43464|miRBase:MI0017866 2 - microRNA 5000 miscRNA MIR5000 microRNA 5000 O - 20121230 -9606 100846996 MIR5007 - - HGNC:43468|miRBase:MI0017874 13 - microRNA 5007 miscRNA MIR5007 microRNA 5007 O - 20121230 -9606 100846997 MIR5583-2 - - HGNC:43471|miRBase:MI0019140 18 - microRNA 5583-2 miscRNA MIR5583-2 microRNA 5583-2 O - 20121230 -9606 100846998 MIR5689 - - HGNC:43479|miRBase:MI0019294 6 - microRNA 5689 miscRNA MIR5689 microRNA 5689 O - 20121230 -9606 100846999 MIR4444-2 - - HGNC:43481|miRBase:MI0019111 3 - microRNA 4444-2 miscRNA MIR4444-2 microRNA 4444-2 O - 20120522 -9606 100847000 MIR5579 - - HGNC:43485|miRBase:MI0019133 11 - microRNA 5579 miscRNA MIR5579 microRNA 5579 O - 20121230 -9606 100847001 MIR5680 - - HGNC:43492|miRBase:MI0019280 8 - microRNA 5680 miscRNA MIR5680 microRNA 5680 O - 20121230 -9606 100847002 MIR5011 - - HGNC:43496|miRBase:MI0017879 18 - microRNA 5011 miscRNA MIR5011 microRNA 5011 O - 20121230 -9606 100847003 MIR5693 - - HGNC:43499|miRBase:MI0019300 13 - microRNA 5693 miscRNA MIR5693 microRNA 5693 O - 20121230 -9606 100847004 MIR5188 - - HGNC:43502|miRBase:MI0018167 12 - microRNA 5188 miscRNA MIR5188 microRNA 5188 O - 20121230 -9606 100847005 MIR5701-2 - - HGNC:43510|miRBase:MI0019593 15 - microRNA 5701-2 miscRNA MIR5701-2 microRNA 5701-2 O - 20121230 -9606 100847006 MIR5571 - - HGNC:43513|miRBase:MI0019115 22 - microRNA 5571 miscRNA MIR5571 microRNA 5571 O - 20120522 -9606 100847007 MIR5696 - - HGNC:43516|miRBase:MI0019303 2 - microRNA 5696 miscRNA MIR5696 microRNA 5696 O - 20121230 -9606 100847008 MIR4524B - - HGNC:43520|miRBase:MI0019114 17 - microRNA 4524b miscRNA MIR4524B microRNA 4524b O - 20121230 -9606 100847009 MIR1295B - - HGNC:43524|miRBase:MI0019146 1 - microRNA 1295b miscRNA MIR1295B microRNA 1295b O - 20121230 -9606 100847010 MIR5581 - - HGNC:43527|miRBase:MI0019136 1 - microRNA 5581 miscRNA MIR5581 microRNA 5581 O - 20121230 -9606 100847011 MIR5686 - - HGNC:43529|miRBase:MI0019290 10 - microRNA 5686 miscRNA MIR5686 microRNA 5686 O - 20120522 -9606 100847012 MIR5004 - - HGNC:43532|miRBase:MI0017870 6 - microRNA 5004 miscRNA MIR5004 microRNA 5004 O - 20121230 -9606 100847013 MIR5692B - - HGNC:43535|miRBase:MI0019311 21 - microRNA 5692b miscRNA MIR5692B microRNA 5692b O - 20121230 -9606 100847014 MIR5100 - - HGNC:43540|miRBase:MI0019116 10 - microRNA 5100 miscRNA MIR5100 microRNA 5100 O - 20121230 -9606 100847015 MIR5691 - - HGNC:43545|miRBase:MI0019296 11 - microRNA 5691 miscRNA MIR5691 microRNA 5691 O - 20121230 -9606 100847016 MIR5695 - - HGNC:43548|miRBase:MI0019302 19 - microRNA 5695 miscRNA MIR5695 microRNA 5695 O - 20121230 -9606 100847017 MIR5692C2 - - HGNC:43448|miRBase:MI0019289 7 - microRNA 5692c-2 miscRNA MIR5692C2 microRNA 5692c-2 O - 20121230 -9606 100847018 MIR5585 - - HGNC:43452|miRBase:MI0019142 1 - microRNA 5585 miscRNA MIR5585 microRNA 5585 O - 20121230 -9606 100847019 MIR5687 - - HGNC:43457|miRBase:MI0019291 5 - microRNA 5687 miscRNA MIR5687 microRNA 5687 O - 20121230 -9606 100847020 MIR5582 - - HGNC:43461|miRBase:MI0019138 11 - microRNA 5582 miscRNA MIR5582 microRNA 5582 O - 20121230 -9606 100847021 MIR5002 - - HGNC:43470|miRBase:MI0017868 3 - microRNA 5002 miscRNA MIR5002 microRNA 5002 O - 20121230 -9606 100847022 MIR5093 - - HGNC:43474|miRBase:MI0017982 16 - microRNA 5093 miscRNA MIR5093 microRNA 5093 O - 20121230 -9606 100847023 MIR5091 - - HGNC:43478|miRBase:MI0017980 4 - microRNA 5091 miscRNA MIR5091 microRNA 5091 O - 20121230 -9606 100847024 MIR5698 - - HGNC:43487|miRBase:MI0019305 1 - microRNA 5698 miscRNA MIR5698 microRNA 5698 O - 20121230 -9606 100847025 MIR5583-1 - - HGNC:43491|miRBase:MI0019139 18 - microRNA 5583-1 miscRNA MIR5583-1 microRNA 5583-1 O - 20121230 -9606 100847026 MIR5006 - - HGNC:43495|miRBase:MI0017873 13 - microRNA 5006 miscRNA MIR5006 microRNA 5006 O - 20121230 -9606 100847027 MIR5705 - - HGNC:43504|miRBase:MI0019313 4 - microRNA 5705 miscRNA MIR5705 microRNA 5705 O - 20121230 -9606 100847028 MIR5587 - - HGNC:43508|miRBase:MI0019144 16 - microRNA 5587 miscRNA MIR5587 microRNA 5587 O - 20121230 -9606 100847029 MIR5003 - - HGNC:43512|miRBase:MI0017869 5 - microRNA 5003 miscRNA MIR5003 microRNA 5003 O - 20121230 -9606 100847030 MIR548AT - - HGNC:43517|miRBase:MI0019137 17 - microRNA 548at miscRNA MIR548AT microRNA 548at O - 20121230 -9606 100847031 MIR5700 - - HGNC:43521|miRBase:MI0019307 12 - microRNA 5700 miscRNA MIR5700 microRNA 5700 O - 20121230 -9606 100847032 MIR5707 - - HGNC:43449|miRBase:MI0019315 7 - microRNA 5707 miscRNA MIR5707 microRNA 5707 O - 20121230 -9606 100847033 MIR4436B2 - - HGNC:43451|miRBase:MI0019110 2 - microRNA 4436b-2 miscRNA MIR4436B2 microRNA 4436b-2 O - 20121230 -9606 100847034 MIR5683 - - HGNC:43453|miRBase:MI0019284 6 - microRNA 5683 miscRNA MIR5683 microRNA 5683 O - 20121230 -9606 100847035 MIR548AR - - HGNC:43455|miRBase:MI0019131 13 - microRNA 548ar miscRNA MIR548AR microRNA 548ar O - 20121230 -9606 100847036 MIR5186 - - HGNC:43459|miRBase:MI0018165 3 - microRNA 5186 miscRNA MIR5186 microRNA 5186 O - 20121230 -9606 100847037 MIR5001 - - HGNC:43462|miRBase:MI0017867 2 - microRNA 5001 miscRNA MIR5001 microRNA 5001 O - 20121230 -9606 100847038 MIR5692A2 - - HGNC:43466|miRBase:MI0019298 8 - microRNA 5692a-2 miscRNA MIR5692A2 microRNA 5692a-2 O - 20121230 -9606 100847039 MIR5092 - - HGNC:43467|miRBase:MI0017981 3 - microRNA 5092 miscRNA MIR5092 microRNA 5092 O - 20121230 -9606 100847040 MIR5704 - - HGNC:43469|miRBase:MI0019312 3 - microRNA 5704 miscRNA MIR5704 microRNA 5704 O - 20121230 -9606 100847041 MIR3680-2 - - HGNC:43472|miRBase:MI0019113 16 - microRNA 3680-2 miscRNA MIR3680-2 microRNA 3680-2 O - 20121230 -9606 100847042 MIR5572 - - HGNC:43476|miRBase:MI0019117 15 - microRNA 5572 miscRNA MIR5572 microRNA 5572 O - 20120522 -9606 100847043 MIR5682 - - HGNC:43477|miRBase:MI0019282 3 - microRNA 5682 miscRNA MIR5682 microRNA 5682 O - 20121230 -9606 100847044 MIR5087 - - HGNC:43480|miRBase:MI0017976 1 - microRNA 5087 miscRNA MIR5087 microRNA 5087 O - 20121230 -9606 100847045 MIR548AU - - HGNC:43483|miRBase:MI0019145 9 - microRNA 548au miscRNA MIR548AU microRNA 548au O - 20121230 -9606 100847046 MIR5010 - - HGNC:43484|miRBase:MI0017878 17 - microRNA 5010 miscRNA MIR5010 microRNA 5010 O - 20121230 -9606 100847047 MIR4666B - - HGNC:43486|miRBase:MI0019299 X - microRNA 4666b miscRNA MIR4666B microRNA 4666b O - 20121230 -9606 100847048 MIR5690 - - HGNC:43490|miRBase:MI0019295 6 - microRNA 5690 miscRNA MIR5690 microRNA 5690 O - 20121230 -9606 100847049 MIR4999 - - HGNC:43494|miRBase:MI0017865 19 - microRNA 4999 miscRNA MIR4999 microRNA 4999 O - 20121230 -9606 100847050 MIR5191 - - HGNC:43497|miRBase:MI0018170 1 - microRNA 5191 miscRNA MIR5191 microRNA 5191 O - 20121230 -9606 100847051 MIR5194 - - HGNC:43498|miRBase:MI0018173 8 - microRNA 5194 miscRNA MIR5194 microRNA 5194 O - 20121230 -9606 100847052 MIR644B - - HGNC:43501|miRBase:MI0019134 X - microRNA 644b miscRNA MIR644B microRNA 644b O - 20121230 -9606 100847053 MIR5702 - - HGNC:43503|miRBase:MI0019309 2 - microRNA 5702 miscRNA MIR5702 microRNA 5702 O - 20121230 -9606 100847054 MIR5588 - - HGNC:43505|miRBase:MI0019147 3 - microRNA 5588 miscRNA MIR5588 microRNA 5588 O - 20120522 -9606 100847055 MIR5697 - - HGNC:43509|miRBase:MI0019304 1 - microRNA 5697 miscRNA MIR5697 microRNA 5697 O - 20121230 -9606 100847056 MIR5708 - - HGNC:43511|miRBase:MI0019316 8 - microRNA 5708 miscRNA MIR5708 microRNA 5708 O - 20121230 -9606 100847057 MIR5189 - - HGNC:43515|miRBase:MI0018168 16 - microRNA 5189 miscRNA MIR5189 microRNA 5189 O - 20121230 -9606 100847058 MIR5681A - - HGNC:43518|miRBase:MI0019281 8 - microRNA 5681a miscRNA MIR5681A microRNA 5681a O - 20121222 -9606 100847059 MIR5094 - - HGNC:43519|miRBase:MI0017983 15 - microRNA 5094 miscRNA MIR5094 microRNA 5094 O - 20121230 -9606 100847060 MIR5701-1 - - HGNC:43522|miRBase:MI0019308 15 - microRNA 5701-1 miscRNA MIR5701-1 microRNA 5701-1 O - 20121230 -9606 100847061 MIR4536-2 - - HGNC:43525|miRBase:MI0019149 X - microRNA 4536-2 miscRNA MIR4536-2 microRNA 4536-2 O - 20120522 -9606 100847062 MIR5195 - - HGNC:43526|miRBase:MI0018174 14 - microRNA 5195 miscRNA MIR5195 microRNA 5195 O - 20120522 -9606 100847063 MIR548AX - - HGNC:43528|miRBase:MI0019286 X - microRNA 548ax miscRNA MIR548AX microRNA 548ax O - 20121230 -9606 100847064 MIR5694 - - HGNC:43530|miRBase:MI0019301 14 - microRNA 5694 miscRNA MIR5694 microRNA 5694 O - 20121230 -9606 100847065 MIR5591 - - HGNC:43531|miRBase:MI0019151 4 - microRNA 5591 miscRNA MIR5591 microRNA 5591 O - 20121230 -9606 100847066 MIR5692A1 - - HGNC:43533|miRBase:MI0019297 7 - microRNA 5692a-1 miscRNA MIR5692A1 microRNA 5692a-1 O - 20121230 -9606 100847067 MIR5089 - - HGNC:43536|miRBase:MI0017978 17 - microRNA 5089 miscRNA MIR5089 microRNA 5089 O - 20121230 -9606 100847068 MIR548AO - - HGNC:43539|miRBase:MI0017871 8 - microRNA 548ao miscRNA MIR548AO microRNA 548ao O - 20121230 -9606 100847069 MIR5590 - - HGNC:43541|miRBase:MI0019150 2 - microRNA 5590 miscRNA MIR5590 microRNA 5590 O - 20121230 -9606 100847070 MIR5196 - - HGNC:43542|miRBase:MI0018175 19 - microRNA 5196 miscRNA MIR5196 microRNA 5196 O - 20121230 -9606 100847071 MIR5684 - - HGNC:43544|miRBase:MI0019285 19 - microRNA 5684 miscRNA MIR5684 microRNA 5684 O - 20121230 -9606 100847072 MIR5008 - - HGNC:43546|miRBase:MI0017876 1 - microRNA 5008 miscRNA MIR5008 microRNA 5008 O - 20121230 -9606 100847073 MIR5090 - - HGNC:43547|miRBase:MI0017979 7 - microRNA 5090 miscRNA MIR5090 microRNA 5090 O - 20121230 -9606 100847074 MIR5088 - - HGNC:43489|miRBase:MI0017977 19 - microRNA 5088 miscRNA MIR5088 microRNA 5088 O - 20121230 -9606 100847075 MIR5685 - - HGNC:43543|miRBase:MI0019287 6 - microRNA 5685 miscRNA MIR5685 microRNA 5685 O - 20121230 -9606 100847076 MIR5580 - - HGNC:43482|miRBase:MI0019135 14 - microRNA 5580 miscRNA MIR5580 microRNA 5580 O - 20121230 -9606 100847077 MIR5688 - - HGNC:43463|miRBase:MI0019292 3 - microRNA 5688 miscRNA MIR5688 microRNA 5688 O - 20121230 -9606 100847078 MIR548AQ - - HGNC:43488|miRBase:MI0019130 3 - microRNA 548aq miscRNA MIR548AQ microRNA 548aq O - 20121230 -9606 100847079 MIR5193 - - HGNC:43534|miRBase:MI0018172 3 - microRNA 5193 miscRNA MIR5193 microRNA 5193 O - 20121230 -9606 100847080 MIR5190 - - HGNC:43549|miRBase:MI0018169 18 - microRNA 5190 miscRNA MIR5190 microRNA 5190 O - 20121230 -9606 100847081 MIR5703 - - HGNC:43475|miRBase:MI0019310 2 - microRNA 5703 miscRNA MIR5703 microRNA 5703 O - 20121230 -9606 100847082 MIR5692C1 - - HGNC:43506|miRBase:MI0019288 5 - microRNA 5692c-1 miscRNA MIR5692C1 microRNA 5692c-1 O - 20121230 -9606 100847083 MIR548AV - - HGNC:43537|miRBase:MI0019152 18 - microRNA 548av miscRNA MIR548AV microRNA 548av O - 20121230 -9606 100847084 MIR548AP - - HGNC:43465|miRBase:MI0017875 15 - microRNA 548ap miscRNA MIR548AP microRNA 548ap O - 20121230 -9606 100847085 MIR5706 - - HGNC:43500|miRBase:MI0019314 5 - microRNA 5706 miscRNA MIR5706 microRNA 5706 O - 20121230 -9606 100847086 MIR5699 - - HGNC:43456|miRBase:MI0019306 10 - microRNA 5699 miscRNA MIR5699 microRNA 5699 O - 20121230 -9606 100847087 MIR5192 - - HGNC:43473|miRBase:MI0018171 2 - microRNA 5192 miscRNA MIR5192 microRNA 5192 O - 20121230 -9606 100847088 MIR5586 - - HGNC:43493|miRBase:MI0019143 14 - microRNA 5586 miscRNA MIR5586 microRNA 5586 O - 20121230 -9606 100847089 MIR5584 - - HGNC:43507|miRBase:MI0019141 1 - microRNA 5584 miscRNA MIR5584 microRNA 5584 O - 20121230 -9606 100847090 MIR5187 - - HGNC:43523|miRBase:MI0018166 1 - microRNA 5187 miscRNA MIR5187 microRNA 5187 O - 20121230 -9606 100847091 MIR5681B - - HGNC:43538|miRBase:MI0019293 8 - microRNA 5681b miscRNA MIR5681B microRNA 5681b O - 20121230 -9606 100847092 MIR548AS - - HGNC:43550|miRBase:MI0019132 13 - microRNA 548as miscRNA MIR548AS microRNA 548as O - 20121230 -9606 100847093 MIR5589 - - HGNC:43514|miRBase:MI0019148 19 - microRNA 5589 miscRNA MIR5589 microRNA 5589 O - 20121230 -9606 100852393 MRT29 - - MIM:614333 4 4q27-q28.2 Mental retardation, autosomal recessive 29 unknown - - - - 20120622 -9606 100852394 MRT33 - - MIM:614341 17 17p13.2-p13.1 Mental retardation, autosomal recessive 33 unknown - - - - 20120622 -9606 100852395 MRT19 - - HGNC:39153|MIM:614343 18 18p11.3 mental retardation, non-syndromic, autosomal recessive, 19 unknown MRT19 mental retardation, non-syndromic, autosomal recessive, 19 O - 20120622 -9606 100852396 MRT28 - - HGNC:39162|MIM:614347 6 6q26-q27 mental retardation, non-syndromic, autosomal recessive, 28 unknown MRT28 mental retardation, non-syndromic, autosomal recessive, 28 O - 20120622 -9606 100852397 MRT27 - - HGNC:39161|MIM:614340 15 15q24.1-q26.1 mental retardation, non-syndromic, autosomal recessive, 27 unknown MRT27 mental retardation, non-syndromic, autosomal recessive, 27 O - 20120622 -9606 100852398 MRT23 - - HGNC:39157|MIM:614344 11 11p13-q14.1 mental retardation, non-syndromic, autosomal recessive, 23 unknown MRT23 mental retardation, non-syndromic, autosomal recessive, 23 O - 20120622 -9606 100852399 MRT31 - - MIM:614329 4 4q12-q13.1 Mental retardation, autosomal recessive 31 unknown - - - - 20120622 -9606 100852400 MRT32 - - MIM:614339 14 14q32.13-q32.2 Mental retardation, autosomal recessive 32 unknown - - - - 20120622 -9606 100852401 MRT30 - - MIM:614342 6 6q12-q15 Mental retardation, autosomal recessive 30 unknown - - - - 20120622 -9606 100852402 MRT24 - - HGNC:39158|MIM:614345 6 6p12 mental retardation, non-syndromic, autosomal recessive, 24 unknown MRT24 mental retardation, non-syndromic, autosomal recessive, 24 O - 20120622 -9606 100852403 MRT25 - - HGNC:39159|MIM:614346 12 12q13.11-q15 mental retardation, non-syndromic, autosomal recessive, 25 unknown MRT25 mental retardation, non-syndromic, autosomal recessive, 25 O - 20120622 -9606 100852404 DEL17Q11.2 - C17DELq11.2 MIM:613675 17 17q11.2 chromosome 17q11.2 deletion syndrome unknown - - - - 20120622 -9606 100852405 RNF185-AS1 - - HGNC:41161 22 22q12.2 RNF185 antisense RNA 1 miscRNA RNF185-AS1 RNF185 antisense RNA 1 O - 20121021 -9606 100852406 POTEH-AS1 - - HGNC:40058 22 22q11.1 POTEH antisense RNA 1 miscRNA POTEH-AS1 POTEH antisense RNA 1 O - 20121021 -9606 100852407 CARS-AS1 - - HGNC:40125 11 11p15.4 CARS antisense RNA 1 miscRNA CARS-AS1 CARS antisense RNA 1 O - 20121021 -9606 100852408 EGFLAM-AS4 - - HGNC:41166 5 5p13.2 EGFLAM antisense RNA 4 miscRNA EGFLAM-AS4 EGFLAM antisense RNA 4 O - 20121230 -9606 100852409 NEGR1-IT1 - - HGNC:41432 1 1p31.1 NEGR1 intronic transcript 1 (non-protein coding) miscRNA NEGR1-IT1 NEGR1 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100852410 ZRANB2-AS2 - - HGNC:43595 1 1p31.1 ZRANB2 antisense RNA 2 (head to head) miscRNA ZRANB2-AS2 ZRANB2 antisense RNA 2 (head to head) O - 20121230 -9606 100856791 LOC100856791 - - - 3 3q26 TBP-like 1 pseudogene pseudo - - - - 20121230 -9606 100856809 OR3A5P RP11-64J4.6 OLFRA06|OR17-25|OR25 HGNC:8286 17 17p13.3 olfactory receptor, family 3, subfamily A, member 5 pseudogene pseudo OR3A5P olfactory receptor, family 3, subfamily A, member 5 pseudogene O - 20121230 -9606 100856810 TCEB2P3 - - HGNC:39721 2 2p16.3 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) pseudogene 3 pseudo TCEB2P3 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) pseudogene 3 O - 20121230 -9606 100856811 NRG1-IT1 - - HGNC:43633 8 8p12 NRG1 intronic transcript 1 (non-protein coding) miscRNA NRG1-IT1 NRG1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100856877 SETP15 - - HGNC:42934 X - SET pseudogene 15 pseudo SETP15 SET pseudogene 15 O - 20121230 -9606 100856878 SETP21 - - HGNC:42940 5 - SET pseudogene 21 pseudo SETP21 SET pseudogene 21 O - 20121230 -9606 100856881 MTND1P32 - - HGNC:42081 X - MT-ND1 pseudogene 32 pseudo MTND1P32 MT-ND1 pseudogene 32 O - 20121230 -9606 100859919 LOC100859919 - - - 2 2q21.2 chromosome 9 open reading frame 86 pseudogene 2 pseudo - - - - 20121230 -9606 100859920 HIGD1AP3 - - HGNC:42998 5 - HIG1 hypoxia inducible domain family, member 1A pseudogene 3 pseudo HIGD1AP3 HIG1 hypoxia inducible domain family, member 1A pseudogene 3 O - 20121230 -9606 100859921 LINC00536 - - HGNC:43645 8 8q23.3 long intergenic non-protein coding RNA 536 miscRNA LINC00536 long intergenic non-protein coding RNA 536 O - 20121230 -9606 100859922 ERVK11-1 - - HGNC:43647 1 1p13.3 endogenous retrovirus group K11, member 1 unknown ERVK11-1 endogenous retrovirus group K11, member 1 O - 20121016 -9606 100859924 SUMO2P2 - - HGNC:39012 9 9p21.3 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 2 pseudo SUMO2P2 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) pseudogene 2 O - 20121230 -9606 100859925 COX5BP8 - - HGNC:39083 1 1q25.2 cytochrome c oxidase subunit Vb pseudogene 8 pseudo COX5BP8 cytochrome c oxidase subunit Vb pseudogene 8 O - 20121230 -9606 100859926 NANOGNBP1 - - HGNC:42158 2 2q11.2 NANOGNB pseudogene 1 pseudo NANOGNBP1 NANOGNB pseudogene 1 O - 20121230 -9606 100859927 AAA4 - - MIM:614375 12 12q13.3 Aortic aneurysm, familial abdominal, 4 unknown - - - - 20120622 -9606 100859928 BMIQ16 - C16DELp11.2|DEL16p.11.2 MIM:613444 16 16p11.2 Chromosome 16p11.2 deletion syndrome, 220kb unknown - - - - 20120622 -9606 100859930 LOC100859930 - - - 5 5q35.3 uncharacterized LOC100859930 miscRNA - - - - 20121230 -9606 100861402 CERS6-AS1 - - HGNC:44485 2 2q CERS6 antisense RNA 1 miscRNA CERS6-AS1 CERS6 antisense RNA 1 O - 20121230 -9606 100861412 FSBP - - HGNC:43653|Ensembl:ENSG00000265817|Vega:OTTHUMG00000178341 8 8q fibrinogen silencer binding protein protein-coding FSBP fibrinogen silencer binding protein O fibrinogen silencer-binding protein 20121230 -9606 100861429 YRDCP3 - - HGNC:39921 21 - yrdC domain containing (E. coli) pseudogene 3 pseudo YRDCP3 yrdC domain containing (E. coli) pseudogene 3 O - 20121230 -9606 100861430 LOC100861430 - - - 15 15q programmed cell death 6 interacting protein pseudogene pseudo - - - - 20121230 -9606 100861431 YBX1P7 - - HGNC:42428 2 - Y box binding protein 1 pseudogene 7 pseudo YBX1P7 Y box binding protein 1 pseudogene 7 O - 20121230 -9606 100861434 USP9YP13 - - HGNC:38721 Y - ubiquitin specific peptidase 9, Y-linked pseudogene 13 pseudo USP9YP13 ubiquitin specific peptidase 9, Y-linked pseudogene 13 O - 20121230 -9606 100861435 SRIP3 - - HGNC:38735 Y - sorcin pseudogene 3 pseudo SRIP3 sorcin pseudogene 3 O - 20121209 -9606 100861436 PRPS1P1 - - HGNC:39427 2 - phosphoribosyl pyrophosphate synthetase 1 pseudogene 1 pseudo PRPS1P1 phosphoribosyl pyrophosphate synthetase 1 pseudogene 1 O - 20121230 -9606 100861437 NARR - - Ensembl:ENSG00000109113|Vega:OTTHUMG00000132680 17 17q nine-amino acid residue-repeats protein-coding - - - nine amino-acid residue-repeats|ras-related protein Rab-34 20121230 -9606 100861438 SPG46 - - HGNC:37080|MIM:614409 9 9p21.2-q21.12 spastic paraplegia 46 (autosomal recessive) unknown SPG46 spastic paraplegia 46 (autosomal recessive) O - 20120622 -9606 100861439 CCA5 - - MIM:614422 12 12q24.2-q24.3 Cataract, congenital cerulean type, 5 unknown - - - - 20120622 -9606 100861440 DFNB96 - - HGNC:39437|MIM:614414 1 1p36.31-p36.13 deafness, autosomal recessive 96 unknown DFNB96 deafness, autosomal recessive 96 O - 20120622 -9606 100861443 LOC100861443 - - - 19 19q DnaJ (Hsp40) homolog, subfamily C, member 19 pseudogene pseudo - - - - 20121230 -9606 100861445 LOC100861445 - - - 19 19q DnaJ (Hsp40) homolog, subfamily C, member 19 pseudogene pseudo - - - - 20121230 -9606 100861449 LOC100861449 - - - 6 6q DnaJ (Hsp40) homolog, subfamily C, member 19 pseudogene pseudo - - - - 20121230 -9606 100861453 LOC100861453 - - - 2 2q DnaJ (Hsp40) homolog, subfamily C, member 19 pseudogene pseudo - - - - 20121230 -9606 100861455 LOC100861455 - - - 1 1p DnaJ (Hsp40) homolog, subfamily C, member 19 pseudogene pseudo - - - - 20121230 -9606 100861458 LOC100861458 - - - 1 1p DnaJ (Hsp40) homolog, subfamily C, member 19 pseudogene pseudo - - - - 20121230 -9606 100861467 ERVK-13 - c3_D HGNC:39008 3 3q24 endogenous retrovirus group K, member 13 unknown ERVK-13 endogenous retrovirus group K, member 13 O - 20121017 -9606 100861468 LINC00492 - - HGNC:43429 5 5q21.1 long intergenic non-protein coding RNA 492 miscRNA LINC00492 long intergenic non-protein coding RNA 492 O - 20121021 -9606 100861469 PTP4A1P3 - - HGNC:41930 7 7q21.13 protein tyrosine phosphatase type IVA, member 1 pseudogene 3 pseudo PTP4A1P3 protein tyrosine phosphatase type IVA, member 1 pseudogene 3 O - 20121230 -9606 100861470 YBX1P9 - - HGNC:42430 1 1q42.12 Y box binding protein 1 pseudogene 9 pseudo YBX1P9 Y box binding protein 1 pseudogene 9 O - 20121230 -9606 100861476 YBX1P8 - - HGNC:42429 X Xp11.23 Y box binding protein 1 pseudogene 8 pseudo YBX1P8 Y box binding protein 1 pseudogene 8 O - 20121230 -9606 100861485 DUTP3 - - HGNC:39516 7 7q35 deoxyuridine triphosphatase pseudogene 3 pseudo DUTP3 deoxyuridine triphosphatase pseudogene 3 O - 20121230 -9606 100861504 LINC00538 - Yiya HGNC:43655|MIM:614635 1 1q32.3 long intergenic non-protein coding RNA 538 miscRNA LINC00538 long intergenic non-protein coding RNA 538 O - 20121230 -9606 100861506 LSAMP-AS2 - - HGNC:40351 3 3q13.31 LSAMP antisense RNA 2 miscRNA LSAMP-AS2 LSAMP antisense RNA 2 O - 20121021 -9606 100861507 FTCD-AS1 - - HGNC:40243 21 21q22.3 FTCD antisense RNA 1 miscRNA FTCD-AS1 FTCD antisense RNA 1 O - 20121021 -9606 100861508 HMBOX1-OT1 - - HGNC:43631 8 8p12 HMBOX1 overlapping transcript 1 (non-protein coding) miscRNA HMBOX1-OT1 HMBOX1 overlapping transcript 1 (non-protein coding) O - 20120508 -9606 100861509 ULK4-IT1 - - HGNC:41413 3 3p22.1 ULK4 intronic transcript 1 (non-protein coding) miscRNA ULK4-IT1 ULK4 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100861510 LRRC3-AS1 - - HGNC:43636 21 21q22.3 LRRC3 antisense RNA 1 (head to head) miscRNA LRRC3-AS1 LRRC3 antisense RNA 1 (head to head) O - 20121230 -9606 100861512 CDKN1A-AS1 - p21NAT HGNC:42399 6 6p21.1 CDKN1A antisense RNA 1 miscRNA CDKN1A-AS1 CDKN1A antisense RNA 1 O - 20120816 -9606 100861513 ZMYM4-AS1 - - HGNC:40624 1 1p34.3 ZMYM4 antisense RNA 1 miscRNA ZMYM4-AS1 ZMYM4 antisense RNA 1 O - 20121021 -9606 100861514 ELMO1-AS1 - - HGNC:40765 7 7p14.2 ELMO1 antisense RNA 1 miscRNA ELMO1-AS1 ELMO1 antisense RNA 1 O - 20121021 -9606 100861515 TRAPPC12-AS1 - - HGNC:41046 2 2p25.3 TRAPPC12 antisense RNA 1 miscRNA TRAPPC12-AS1 TRAPPC12 antisense RNA 1 O - 20121021 -9606 100861516 RAI1-AS1 - - HGNC:40496 17 17p11.2 RAI1 antisense RNA 1 miscRNA RAI1-AS1 RAI1 antisense RNA 1 O - 20121021 -9606 100861517 OCIAD1-AS1 - - HGNC:40751 4 4p11 OCIAD1 antisense RNA 1 miscRNA OCIAD1-AS1 OCIAD1 antisense RNA 1 O - 20121021 -9606 100861518 P4HA2-AS1 - - HGNC:43560 5 5q31.1 P4HA2 antisense RNA 1 miscRNA P4HA2-AS1 P4HA2 antisense RNA 1 O - 20121021 -9606 100861519 GDNF-AS1 - GDNFOS HGNC:43592 5 5p13.2 GDNF antisense RNA 1 (head to head) miscRNA GDNF-AS1 GDNF antisense RNA 1 (head to head) O - 20121230 -9606 100861520 POU6F2-AS1 - - HGNC:40979 7 7p14.1 POU6F2 antisense RNA 1 miscRNA POU6F2-AS1 POU6F2 antisense RNA 1 O - 20121230 -9606 100861521 PSPC1-OT1 - - HGNC:42702 13 13q12.11 PSPC1 overlapping transcript 1 (non-protein coding) miscRNA PSPC1-OT1 PSPC1 overlapping transcript 1 (non-protein coding) O - 20121021 -9606 100861522 LINC00489 - - HGNC:43426 20 20q11.23 long intergenic non-protein coding RNA 489 miscRNA LINC00489 long intergenic non-protein coding RNA 489 O - 20121230 -9606 100861523 RPS6KA2-AS1 - - HGNC:40511 6 6q27 RPS6KA2 antisense RNA 1 miscRNA RPS6KA2-AS1 RPS6KA2 antisense RNA 1 O - 20121021 -9606 100861529 HHPP - - MIM:144110 14 14q11.2-q13 Hyperhidrosis palmaris et plantaris unknown - - - - 20120622 -9606 100861530 UFL1-AS1 RP3-443E24.1 - HGNC:41007 6 6q16.1 UFL1 antisense RNA 1 miscRNA UFL1-AS1 UFL1 antisense RNA 1 O - 20121021 -9606 100861532 RNA45S5 - RN45S HGNC:44273 22 - RNA, 45S pre-ribosomal 5 rRNA RNA45S5 RNA, 45S pre-ribosomal 5 O - 20121230 -9606 100861540 CYP3A7-CYP3AP1 - CYP3A7-3AP1|CYP3A7.1L - 7 7q CYP3A7-CYP3AP1 readthrough protein-coding - - - - 20121230 -9606 100861541 DOCK9-AS2 - - HGNC:43696 13 13q32.3 DOCK9 antisense RNA 2 (head to head) miscRNA DOCK9-AS2 DOCK9 antisense RNA 2 (head to head) O - 20121016 -9606 100861542 LINC00554 - - HGNC:43697 13 13q32.3 long intergenic non-protein coding RNA 554 miscRNA LINC00554 long intergenic non-protein coding RNA 554 O - 20120508 -9606 100861543 LINC00555 - - HGNC:43699 13 13q33.1 long intergenic non-protein coding RNA 555 miscRNA LINC00555 long intergenic non-protein coding RNA 555 O - 20120508 -9606 100861544 LINC00557 - - HGNC:43701 13 13q32.1 long intergenic non-protein coding RNA 557 miscRNA LINC00557 long intergenic non-protein coding RNA 557 O - 20120508 -9606 100861545 LINC00561 - - HGNC:43705 13 13q22.2 long intergenic non-protein coding RNA 561 miscRNA LINC00561 long intergenic non-protein coding RNA 561 O - 20120508 -9606 100861546 LINC00564 - - HGNC:43708 13 13q31.1 long intergenic non-protein coding RNA 564 miscRNA LINC00564 long intergenic non-protein coding RNA 564 O - 20120508 -9606 100861547 LINC00566 - - HGNC:43710 13 13q12.12 long intergenic non-protein coding RNA 566 miscRNA LINC00566 long intergenic non-protein coding RNA 566 O - 20120508 -9606 100861548 PINK1-AS - NAPINK1|PINK1-AS1|PINK1AS HGNC:38872 1 1p36.12 PINK1 antisense RNA miscRNA PINK1-AS PINK1 antisense RNA O - 20121021 -9606 100861549 LINC00562 - - HGNC:43706 13 13q14.2 long intergenic non-protein coding RNA 562 miscRNA LINC00562 long intergenic non-protein coding RNA 562 O - 20120508 -9606 100861550 PDX1-AS1 - - HGNC:43698 13 13q12.2 PDX1 antisense RNA 1 miscRNA PDX1-AS1 PDX1 antisense RNA 1 O - 20121021 -9606 100861551 LINC00556 - - HGNC:43700 13 13q12.11 long intergenic non-protein coding RNA 556 miscRNA LINC00556 long intergenic non-protein coding RNA 556 O - 20120508 -9606 100861552 LINC00558 - - HGNC:43702 13 13q14.3 long intergenic non-protein coding RNA 558 miscRNA LINC00558 long intergenic non-protein coding RNA 558 O - 20121230 -9606 100861553 LINC00560 - - HGNC:43704 13 13q31.2 long intergenic non-protein coding RNA 560 miscRNA LINC00560 long intergenic non-protein coding RNA 560 O - 20120508 -9606 100861554 LINC00563 - - HGNC:43707 13 13q14.13 long intergenic non-protein coding RNA 563 miscRNA LINC00563 long intergenic non-protein coding RNA 563 O - 20121230 -9606 100861555 LINC00565 - - HGNC:43709 13 13q34 long intergenic non-protein coding RNA 565 miscRNA LINC00565 long intergenic non-protein coding RNA 565 O - 20121230 -9606 100861556 YBX1P3 - - HGNC:42424 3 3q13.31 Y box binding protein 1 pseudogene 3 pseudo YBX1P3 Y box binding protein 1 pseudogene 3 O - 20121230 -9606 100861563 SCAANT1 - ATXN7-AS1 HGNC:43718|MIM:614481 3 3p21 SCA7/ATXN7 antisense RNA 1 miscRNA SCAANT1 SCA7/ATXN7 antisense RNA 1 O - 20120816 -9606 100861569 YBX1P5 - - HGNC:42426 5 5q13.2 Y box binding protein 1 pseudogene 5 pseudo YBX1P5 Y box binding protein 1 pseudogene 5 O - 20121230 -9606 100861573 LINC00572 - - HGNC:43722 13 13q12.3 long intergenic non-protein coding RNA 572 miscRNA LINC00572 long intergenic non-protein coding RNA 572 O - 20121021 -9606 100861574 SNRPGP6 - - HGNC:39325 10 10q25.3 small nuclear ribonucleoprotein polypeptide G pseudogene 6 pseudo SNRPGP6 small nuclear ribonucleoprotein polypeptide G pseudogene 6 O - 20121230 -9606 100861591 MANEA-AS1 - - HGNC:43732 6 6q16.1 MANEA antisense RNA 1 (head to head) miscRNA MANEA-AS1 MANEA antisense RNA 1 (head to head) O - 20121016 -9606 100862662 ALDH1L1-AS2 - - HGNC:42446 3 3q21.3 ALDH1L1 antisense RNA 2 miscRNA ALDH1L1-AS2 ALDH1L1 antisense RNA 2 O - 20121230 -9606 100862663 RNY4P21 - - HGNC:42471 14 14q24.3 RNA, Ro-associated Y4 pseudogene 21 pseudo RNY4P21 RNA, Ro-associated Y4 pseudogene 21 O - 20121230 -9606 100862664 RNY4P24 - - HGNC:42474 13 13q14.3 RNA, Ro-associated Y4 pseudogene 24 pseudo RNY4P24 RNA, Ro-associated Y4 pseudogene 24 O - 20121230 -9606 100862665 RNY4P25 - - HGNC:42475 1 1q21.3 RNA, Ro-associated Y4 pseudogene 25 pseudo RNY4P25 RNA, Ro-associated Y4 pseudogene 25 O - 20121230 -9606 100862666 RNY1P2 - - HGNC:42479 13 13q33.1 RNA, Ro-associated Y1 pseudogene 2 pseudo RNY1P2 RNA, Ro-associated Y1 pseudogene 2 O - 20121230 -9606 100862667 RNY1P5 - - HGNC:42482 13 13q22.1 RNA, Ro-associated Y1 pseudogene 5 pseudo RNY1P5 RNA, Ro-associated Y1 pseudogene 5 O - 20121230 -9606 100862668 RNY3P2 - - HGNC:42486 13 13q14.2 RNA, Ro-associated Y3 pseudogene 2 pseudo RNY3P2 RNA, Ro-associated Y3 pseudogene 2 O - 20121230 -9606 100862669 RNY3P3 - - HGNC:42487 13 13q22.3 RNA, Ro-associated Y3 pseudogene 3 pseudo RNY3P3 RNA, Ro-associated Y3 pseudogene 3 O - 20121021 -9606 100862670 RNY3P7 - - HGNC:42491 13 13q22.3 RNA, Ro-associated Y3 pseudogene 7 pseudo RNY3P7 RNA, Ro-associated Y3 pseudogene 7 O - 20121230 -9606 100862671 LOC100862671 - - - 16 16p uncharacterized LOC100862671 protein-coding - - - uncharacterized protein LOC100862671 20121230 -9606 100862672 RNY3P9 - - HGNC:42493 13 13q14.11 RNA, Ro-associated Y3 pseudogene 9 pseudo RNY3P9 RNA, Ro-associated Y3 pseudogene 9 O - 20121021 -9606 100862673 RNY4P30 - - HGNC:42498 13 13q14.2 RNA, Ro-associated Y4 pseudogene 30 pseudo RNY4P30 RNA, Ro-associated Y4 pseudogene 30 O - 20121021 -9606 100862674 RNY4P31 - - HGNC:42499 13 13q21.2 RNA, Ro-associated Y4 pseudogene 31 pseudo RNY4P31 RNA, Ro-associated Y4 pseudogene 31 O - 20121021 -9606 100862675 RNU4-9P - - HGNC:42507 13 13q12.11 RNA, U4 small nuclear 9, pseudogene pseudo RNU4-9P RNA, U4 small nuclear 9, pseudogene O - 20121230 -9606 100862676 RNU4-10P - - HGNC:42508 13 13q22.1 RNA, U4 small nuclear 10, pseudogene pseudo RNU4-10P RNA, U4 small nuclear 10, pseudogene O - 20121230 -9606 100862677 RBMX2P4 - - HGNC:39926 7 7p21.3 RNA binding motif protein, X-linked 2 pseudogene 4 pseudo RBMX2P4 RNA binding motif protein, X-linked 2 pseudogene 4 O - 20121230 -9606 100862678 IL20RB-AS1 - - HGNC:40298 3 3q22.3 IL20RB antisense RNA 1 unknown IL20RB-AS1 IL20RB antisense RNA 1 O - 20121021 -9606 100862679 NAALADL2-AS3 - - HGNC:41014 3 3q26.3 NAALADL2 antisense RNA 3 miscRNA NAALADL2-AS3 NAALADL2 antisense RNA 3 O - 20121230 -9606 100862680 LINC00507 - - HGNC:43558 12 12q24.32 long intergenic non-protein coding RNA 507 miscRNA LINC00507 long intergenic non-protein coding RNA 507 O - 20121230 -9606 100862681 RP63 - - MIM:614494 6 6q23 Retinitis pigmentosa 63 unknown - - - - 20120622 -9606 100862682 LOC100862682 - - - 9 9p13.3 nucleus accumbens associated 1, BEN and BTB (POZ) domain containing pseudogene pseudo - - - - 20121230 -9606 100862683 ERVK-25 - c11_A HGNC:39039 11 11q22.1 endogenous retrovirus group K, member 25 unknown ERVK-25 endogenous retrovirus group K, member 25 O - 20121017 -9606 100862684 ERVK-24 - HERV-K101|c22_A HGNC:39038 22 22q11.21 endogenous retrovirus group K, member 24 unknown ERVK-24 endogenous retrovirus group K, member 24 O - 20121017 -9606 100862685 ERVK-19 - HERV-K(C19)|P1.8|envK3|polymerase HGNC:39026 19 19q11 endogenous retrovirus group K, member 19 unknown ERVK-19 endogenous retrovirus group K, member 19 O - 20120726 -9606 100862686 ERVK-17 - - HGNC:39024 - - endogenous retrovirus group K, member 17 unknown ERVK-17 endogenous retrovirus group K, member 17 O - 20121017 -9606 100862687 ERVK-14 - c7_B HGNC:39019 7 7q22.1 endogenous retrovirus group K, member 14 unknown ERVK-14 endogenous retrovirus group K, member 14 O - 20121017 -9606 100862688 ERVK-11 - N8.4|c3_E|polymerase HGNC:39006 3 3q27.2 endogenous retrovirus group K, member 11 unknown ERVK-11 endogenous retrovirus group K, member 11 O - 20121211 -9606 100862689 ERVK-3 - c3_B HGNC:39002 3 3q13.2 endogenous retrovirus group K, member 3 unknown ERVK-3 endogenous retrovirus group K, member 3 O - 20121017 -9606 100862690 ERVK-1 - c1_A HGNC:39000 1 1p31.1 endogenous retrovirus group K, member 1 unknown ERVK-1 endogenous retrovirus group K, member 1 O - 20121017 -9606 100862691 ERVE-2 - - HGNC:39048 11 11q13.2 endogenous retrovirus group E, member 2 unknown ERVE-2 endogenous retrovirus group E, member 2 O - 20120318 -9606 100862692 DIP2A-IT1 - - HGNC:41430 21 21q22.3 DIP2A intronic transcript 1 (non-protein coding) miscRNA DIP2A-IT1 DIP2A intronic transcript 1 (non-protein coding) O - 20121230 -9606 100862693 ERVPABLB-1 - envR(b) HGNC:39042 3 3p24.3 endogenous retrovirus group PABLB, member 1 unknown ERVPABLB-1 endogenous retrovirus group PABLB, member 1 O - 20121017 -9606 100862694 ERVS71-1 - envT HGNC:41525 19 19p12 endogenous retrovirus group S71, member 1 unknown ERVS71-1 endogenous retrovirus group S71, member 1 O - 20121017 -9606 100862695 ERVW-5 - CL2 HGNC:39044 3 3q26.32 endogenous retrovirus group W, member 5 unknown ERVW-5 endogenous retrovirus group W, member 5 O - 20120318 -9606 100862696 ERVW-3 - CL4 HGNC:39041 3 3q23 endogenous retrovirus group W, member 3 unknown ERVW-3 endogenous retrovirus group W, member 3 O - 20120318 -9606 100862697 ERVK3-2 - HML6-c14|PP3227 HGNC:39040 14 14q24.2 endogenous retrovirus group K3, member 2 unknown ERVK3-2 endogenous retrovirus group K3, member 2 O - 20120726 -9606 100862698 ERVH-7 - - HGNC:39059 14 14q32.12 endogenous retrovirus group H, member 7 unknown ERVH-7 endogenous retrovirus group H, member 7 O - 20121017 -9606 100862699 ERVH-5 - - HGNC:39057 10 10p12.1 endogenous retrovirus group H, member 5 unknown ERVH-5 endogenous retrovirus group H, member 5 O - 20120318 -9606 100862700 ERVE-3 - - HGNC:39049 8 8p23.1 endogenous retrovirus group E, member 3 unknown ERVE-3 endogenous retrovirus group E, member 3 O - 20120318 -9606 100862704 LINC00441 - - HGNC:42778 13 13q14.2 long intergenic non-protein coding RNA 441 miscRNA LINC00441 long intergenic non-protein coding RNA 441 O - 20121230 -9606 100862705 LOC100862705 - - - 20 20p KN motif and ankyrin repeat domains 1 pseudogene pseudo - - - - 20121230 -9606 100862706 CATMANS - - MIM:302380 X - Catel-Manzke syndrome unknown - - - - 20120622 -9606 100862725 TIMM9P3 - - HGNC:39930 13 13q14.13 translocase of inner mitochondrial membrane 9 homolog (yeast) pseudogene 3 pseudo TIMM9P3 translocase of inner mitochondrial membrane 9 homolog (yeast) pseudogene 3 O - 20121230 -9606 100862726 TIMM9P1 - - HGNC:39928 10 10q22.2 translocase of inner mitochondrial membrane 9 homolog (yeast) pseudogene 1 pseudo TIMM9P1 translocase of inner mitochondrial membrane 9 homolog (yeast) pseudogene 1 O - 20121230 -9606 100862727 TIMM9P2 - - HGNC:39929 21 21q22.2 translocase of inner mitochondrial membrane 9 homolog (yeast) pseudogene 2 pseudo TIMM9P2 translocase of inner mitochondrial membrane 9 homolog (yeast) pseudogene 2 O - 20121230 -9606 100862728 UPK1A-AS1 - - HGNC:40603 19 19q13.12 UPK1A antisense RNA 1 miscRNA UPK1A-AS1 UPK1A antisense RNA 1 O - 20121230 -9606 100862847 USP17L - - - 4 - ubiquitin carboxyl-terminal hydrolase 17-like protein protein-coding - - - - 20120318 -9606 100862850 EEF1A1P39 - - HGNC:37917 10 10p11.23 eukaryotic translation elongation factor 1 alpha 1 pseudogene 39 pseudo EEF1A1P39 eukaryotic translation elongation factor 1 alpha 1 pseudogene 39 O - 20121230 -9606 100862851 YWHAQP9 - - HGNC:37688 1 1q43 YWHAQ pseudogene 9 pseudo YWHAQP9 YWHAQ pseudogene 9 O - 20121230 -9606 100862852 SLAMF6P1 - - HGNC:32012 1 1q23.3 SLAM family member 6 pseudogene 1 pseudo SLAMF6P1 SLAM family member 6 pseudogene 1 O - 20121230 -9606 100862853 MTND4P13 - - HGNC:42222 6 6q25.2 MT-ND4 pseudogene 13 pseudo MTND4P13 MT-ND4 pseudogene 13 O - 20121230 -9606 100862854 MTND5P16 - - HGNC:42278 3 - MT-ND5 pseudogene 16 pseudo MTND5P16 MT-ND5 pseudogene 16 O - 20121230 -9606 100862855 COX6CP5 - - HGNC:42791 11 11p15.4 cytochrome c oxidase subunit VIc pseudogene 5 pseudo COX6CP5 cytochrome c oxidase subunit VIc pseudogene 5 O - 20121230 -9606 100873064 AIMP1P2 - - HGNC:43693 1 1q24.3 aminoacyl tRNA synthetase complex-interacting multifunctional protein 1 pseudogene 2 pseudo AIMP1P2 aminoacyl tRNA synthetase complex-interacting multifunctional protein 1 pseudogene 2 O - 20121230 -9606 100873065 LOC100873065 - - - X Xp22.11 uncharacterized LOC100873065 miscRNA - - - - 20121230 -9606 100873152 DISC1FP1 - - HGNC:33625 11 11q14.3 DISC1 fusion partner 1 (non-protein coding) miscRNA DISC1FP1 DISC1 fusion partner 1 (non-protein coding) O - 20121018 -9606 100873165 SRGAP2-AS1 - - HGNC:40902 1 1q32.1 SRGAP2 antisense RNA 1 miscRNA SRGAP2-AS1 SRGAP2 antisense RNA 1 O - 20120816 -9606 100873166 SETP7 - - HGNC:42926 12 - SET pseudogene 7 pseudo SETP7 SET pseudogene 7 O - 20121230 -9606 100873167 SETP13 - - HGNC:42932 17 - SET pseudogene 13 pseudo SETP13 SET pseudogene 13 O - 20120510 -9606 100873168 MTCYBP2 - - HGNC:38807 Y - MT-CYB pseudogene 2 pseudo MTCYBP2 MT-CYB pseudogene 2 O - 20121230 -9606 100873169 MTCYBP4 - - HGNC:41923 6 - MT-CYB pseudogene 4 pseudo MTCYBP4 MT-CYB pseudogene 4 O - 20121230 -9606 100873170 MTND1P2 - - HGNC:42051 7 - MT-ND1 pseudogene 2 pseudo MTND1P2 MT-ND1 pseudogene 2 O - 20121230 -9606 100873171 MTND1P4 - - HGNC:42053 7 - MT-ND1 pseudogene 4 pseudo MTND1P4 MT-ND1 pseudogene 4 O - 20121230 -9606 100873172 MTND1P7 - - HGNC:42102 8 - MT-ND1 pseudogene 7 pseudo MTND1P7 MT-ND1 pseudogene 7 O - 20121230 -9606 100873173 MTND1P6 - - HGNC:42103 8 - MT-ND1 pseudogene 6 pseudo MTND1P6 MT-ND1 pseudogene 6 O - 20121230 -9606 100873174 MTND1P5 - - HGNC:42104 8 - MT-ND1 pseudogene 5 pseudo MTND1P5 MT-ND1 pseudogene 5 O - 20121230 -9606 100873175 MTND2P4 - - HGNC:42105 7 - MT-ND2 pseudogene 4 pseudo MTND2P4 MT-ND2 pseudogene 4 O - 20121230 -9606 100873176 MTND2P5 - - HGNC:42106 7 - MT-ND2 pseudogene 5 pseudo MTND2P5 MT-ND2 pseudogene 5 O - 20121230 -9606 100873177 MTND2P6 - - HGNC:42107 7 - MT-ND2 pseudogene 6 pseudo MTND2P6 MT-ND2 pseudogene 6 O - 20121230 -9606 100873178 MTND2P8 - - HGNC:42109 9 - MT-ND2 pseudogene 8 pseudo MTND2P8 MT-ND2 pseudogene 8 O - 20121230 -9606 100873179 MTND2P7 - - HGNC:42141 8 - MT-ND2 pseudogene 7 pseudo MTND2P7 MT-ND2 pseudogene 7 O - 20121230 -9606 100873180 MTND3P2 - - HGNC:42142 7 - MT-ND3 pseudogene 2 pseudo MTND3P2 MT-ND3 pseudogene 2 O - 20121230 -9606 100873181 MTND3P4 - - HGNC:42144 9 - MT-ND3 pseudogene 4 pseudo MTND3P4 MT-ND3 pseudogene 4 O - 20121230 -9606 100873182 MTND3P6 - - HGNC:42146 3 - MT-ND3 pseudogene 6 pseudo MTND3P6 MT-ND3 pseudogene 6 O - 20121230 -9606 100873183 MTND3P7 - - HGNC:42147 3 - MT-ND3 pseudogene 7 pseudo MTND3P7 MT-ND3 pseudogene 7 O - 20121230 -9606 100873184 MTND3P9 - - HGNC:42149 2 - MT-ND3 pseudogene 9 pseudo MTND3P9 MT-ND3 pseudogene 9 O - 20121230 -9606 100873185 MTND3P8 - - HGNC:42153 1 - MT-ND3 pseudogene 8 pseudo MTND3P8 MT-ND3 pseudogene 8 O - 20121230 -9606 100873186 MTND3P5 - - HGNC:42154 4 - MT-ND3 pseudogene 5 pseudo MTND3P5 MT-ND3 pseudogene 5 O - 20121230 -9606 100873187 MTND3P3 - - HGNC:42155 4 - MT-ND3 pseudogene 3 pseudo MTND3P3 MT-ND3 pseudogene 3 O - 20121230 -9606 100873188 MTND4P2 - - HGNC:42189 7 - MT-ND4 pseudogene 2 pseudo MTND4P2 MT-ND4 pseudogene 2 O - 20121230 -9606 100873189 MTND4P3 - - HGNC:42190 7 - MT-ND4 pseudogene 3 pseudo MTND4P3 MT-ND4 pseudogene 3 O - 20121230 -9606 100873190 MTND4P4 - - HGNC:42191 7 - MT-ND4 pseudogene 4 pseudo MTND4P4 MT-ND4 pseudogene 4 O - 20121021 -9606 100873191 MTND4P5 - - HGNC:42192 7 - MT-ND4 pseudogene 5 pseudo MTND4P5 MT-ND4 pseudogene 5 O - 20121230 -9606 100873192 MTND4P6 - - HGNC:42193 7 - MT-ND4 pseudogene 6 pseudo MTND4P6 MT-ND4 pseudogene 6 O - 20121230 -9606 100873193 MTND4P9 - - HGNC:42226 4 - MT-ND4 pseudogene 9 pseudo MTND4P9 MT-ND4 pseudogene 9 O - 20121230 -9606 100873194 MTND4P8 - - HGNC:42227 4 - MT-ND4 pseudogene 8 pseudo MTND4P8 MT-ND4 pseudogene 8 O - 20121230 -9606 100873195 MTND4P7 - - HGNC:42234 8 - MT-ND4 pseudogene 7 pseudo MTND4P7 MT-ND4 pseudogene 7 O - 20121230 -9606 100873196 MTND5P6 - - HGNC:42268 7 - MT-ND5 pseudogene 6 pseudo MTND5P6 MT-ND5 pseudogene 6 O - 20121230 -9606 100873197 MTND5P7 - - HGNC:42269 7 - MT-ND5 pseudogene 7 pseudo MTND5P7 MT-ND5 pseudogene 7 O - 20121230 -9606 100873198 MTND5P8 - - HGNC:42270 7 - MT-ND5 pseudogene 8 pseudo MTND5P8 MT-ND5 pseudogene 8 O - 20121230 -9606 100873199 MTND5P9 - - HGNC:42305 4 - MT-ND5 pseudogene 9 pseudo MTND5P9 MT-ND5 pseudogene 9 O - 20121230 -9606 100873200 MTND5P4 - - HGNC:42306 4 - MT-ND5 pseudogene 4 pseudo MTND5P4 MT-ND5 pseudogene 4 O - 20121230 -9606 100873201 MTND5P5 - - HGNC:42307 4 - MT-ND5 pseudogene 5 pseudo MTND5P5 MT-ND5 pseudogene 5 O - 20121230 -9606 100873202 MTCO2P2 - HsT4010 HGNC:25354 18 - MT-CO2 pseudogene 2 pseudo MTCO2P2 MT-CO2 pseudogene 2 O - 20121230 -9606 100873203 MTCO2P3 - - HGNC:39576 13 - MT-CO2 pseudogene 3 pseudo MTCO2P3 MT-CO2 pseudogene 3 O - 20121230 -9606 100873204 MTCYBP3 - - HGNC:39579 13 - MT-CYB pseudogene 3 pseudo MTCYBP3 MT-CYB pseudogene 3 O - 20121230 -9606 100873205 MTCO1P3 - - HGNC:39604 21 - MT-CO1 pseudogene 3 pseudo MTCO1P3 MT-CO1 pseudogene 3 O - 20121230 -9606 100873206 MTND5P1 - - HGNC:39644 21 - MT-ND5 pseudogene 1 pseudo MTND5P1 MT-ND5 pseudogene 1 O - 20121230 -9606 100873207 MTCO3P2 - - HGNC:39681 13 - MT-CO3 pseudogene 2 pseudo MTCO3P2 MT-CO3 pseudogene 2 O - 20121230 -9606 100873208 MTND3P1 - - HGNC:39856 13 - MT-ND3 pseudogene 1 pseudo MTND3P1 MT-ND3 pseudogene 1 O - 20121230 -9606 100873209 MTND5P2 - - HGNC:41919 13 - MT-ND5 pseudogene 2 pseudo MTND5P2 MT-ND5 pseudogene 2 O - 20121230 -9606 100873210 MTND5P3 - - HGNC:42034 13 - MT-ND5 pseudogene 3 pseudo MTND5P3 MT-ND5 pseudogene 3 O - 20121230 -9606 100873211 MTND4P1 - - HGNC:42035 13 - MT-ND4 pseudogene 1 pseudo MTND4P1 MT-ND4 pseudogene 1 O - 20121230 -9606 100873212 MTND1P11 - - HGNC:42060 9 - MT-ND1 pseudogene 11 pseudo MTND1P11 MT-ND1 pseudogene 11 O - 20121230 -9606 100873213 MTND1P16 - - HGNC:42065 3 - MT-ND1 pseudogene 16 pseudo MTND1P16 MT-ND1 pseudogene 16 O - 20121230 -9606 100873214 MTND1P26 - - HGNC:42075 2 - MT-ND1 pseudogene 26 pseudo MTND1P26 MT-ND1 pseudogene 26 O - 20121230 -9606 100873215 MTND1P28 - - HGNC:42077 2 - MT-ND1 pseudogene 28 pseudo MTND1P28 MT-ND1 pseudogene 28 O - 20121230 -9606 100873216 MTND1P29 - - HGNC:42078 2 - MT-ND1 pseudogene 29 pseudo MTND1P29 MT-ND1 pseudogene 29 O - 20121230 -9606 100873217 MTND1P31 - - HGNC:42080 X - MT-ND1 pseudogene 31 pseudo MTND1P31 MT-ND1 pseudogene 31 O - 20121230 -9606 100873218 MTND1P33 - - HGNC:42082 X - MT-ND1 pseudogene 33 pseudo MTND1P33 MT-ND1 pseudogene 33 O - 20121230 -9606 100873219 MTND1P34 - - HGNC:42090 1 - MT-ND1 pseudogene 34 pseudo MTND1P34 MT-ND1 pseudogene 34 O - 20121230 -9606 100873220 MTND1P19 - - HGNC:42094 4 - MT-ND1 pseudogene 19 pseudo MTND1P19 MT-ND1 pseudogene 19 O - 20121230 -9606 100873221 MTND1P9 - - HGNC:42099 20 - MT-ND1 pseudogene 9 pseudo MTND1P9 MT-ND1 pseudogene 9 O - 20121230 -9606 100873222 MTND2P11 - - HGNC:42112 9 - MT-ND2 pseudogene 11 pseudo MTND2P11 MT-ND2 pseudogene 11 O - 20121230 -9606 100873223 MTND2P14 - - HGNC:42115 3 - MT-ND2 pseudogene 14 pseudo MTND2P14 MT-ND2 pseudogene 14 O - 20121230 -9606 100873224 MTND2P18 - - HGNC:42119 2 - MT-ND2 pseudogene 18 pseudo MTND2P18 MT-ND2 pseudogene 18 O - 20121230 -9606 100873225 MTND2P19 - - HGNC:42120 2 - MT-ND2 pseudogene 19 pseudo MTND2P19 MT-ND2 pseudogene 19 O - 20121230 -9606 100873226 MTND2P20 - - HGNC:42121 2 - MT-ND2 pseudogene 20 pseudo MTND2P20 MT-ND2 pseudogene 20 O - 20121230 -9606 100873227 MTND2P21 - - HGNC:42122 2 - MT-ND2 pseudogene 21 pseudo MTND2P21 MT-ND2 pseudogene 21 O - 20121230 -9606 100873228 MTND2P22 - - HGNC:42123 2 - MT-ND2 pseudogene 22 pseudo MTND2P22 MT-ND2 pseudogene 22 O - 20121230 -9606 100873229 MTND2P23 - - HGNC:42124 2 - MT-ND2 pseudogene 23 pseudo MTND2P23 MT-ND2 pseudogene 23 O - 20121230 -9606 100873230 MTND2P24 - - HGNC:42125 X - MT-ND2 pseudogene 24 pseudo MTND2P24 MT-ND2 pseudogene 24 O - 20121230 -9606 100873231 MTND2P25 - - HGNC:42126 X - MT-ND2 pseudogene 25 pseudo MTND2P25 MT-ND2 pseudogene 25 O - 20121230 -9606 100873232 MTND2P27 - - HGNC:42128 1 - MT-ND2 pseudogene 27 pseudo MTND2P27 MT-ND2 pseudogene 27 O - 20121230 -9606 100873233 MTND2P29 - - HGNC:42130 1 - MT-ND2 pseudogene 29 pseudo MTND2P29 MT-ND2 pseudogene 29 O - 20121230 -9606 100873234 MTND2P30 - - HGNC:42131 1 - MT-ND2 pseudogene 30 pseudo MTND2P30 MT-ND2 pseudogene 30 O - 20121230 -9606 100873235 MTND2P31 - - HGNC:42132 4 - MT-ND2 pseudogene 31 pseudo MTND2P31 MT-ND2 pseudogene 31 O - 20121230 -9606 100873236 MTND2P33 - - HGNC:42134 4 - MT-ND2 pseudogene 33 pseudo MTND2P33 MT-ND2 pseudogene 33 O - 20121230 -9606 100873237 MTND2P32 - - HGNC:42139 8 - MT-ND2 pseudogene 32 pseudo MTND2P32 MT-ND2 pseudogene 32 O - 20121230 -9606 100873238 MTND2P10 - - HGNC:42140 8 - MT-ND2 pseudogene 10 pseudo MTND2P10 MT-ND2 pseudogene 10 O - 20121230 -9606 100873239 MTND3P10 - - HGNC:42150 2 - MT-ND3 pseudogene 10 pseudo MTND3P10 MT-ND3 pseudogene 10 O - 20121230 -9606 100873240 MTND4P15 - - HGNC:42202 9 - MT-ND4 pseudogene 15 pseudo MTND4P15 MT-ND4 pseudogene 15 O - 20121230 -9606 100873241 MTND4P16 - - HGNC:42203 3 - MT-ND4 pseudogene 16 pseudo MTND4P16 MT-ND4 pseudogene 16 O - 20121230 -9606 100873242 MTND4P17 - - HGNC:42204 3 - MT-ND4 pseudogene 17 pseudo MTND4P17 MT-ND4 pseudogene 17 O - 20121230 -9606 100873243 MTND4P21 - - HGNC:42208 2 - MT-ND4 pseudogene 21 pseudo MTND4P21 MT-ND4 pseudogene 21 O - 20121230 -9606 100873244 MTND4P22 - - HGNC:42209 2 - MT-ND4 pseudogene 22 pseudo MTND4P22 MT-ND4 pseudogene 22 O - 20121230 -9606 100873245 MTND4P23 - - HGNC:42210 2 - MT-ND4 pseudogene 23 pseudo MTND4P23 MT-ND4 pseudogene 23 O - 20121230 -9606 100873246 MTND4P25 - - HGNC:42212 2 - MT-ND4 pseudogene 25 pseudo MTND4P25 MT-ND4 pseudogene 25 O - 20121230 -9606 100873247 MTND4P26 - - HGNC:42213 2 - MT-ND4 pseudogene 26 pseudo MTND4P26 MT-ND4 pseudogene 26 O - 20121230 -9606 100873248 MTND4P27 - - HGNC:42214 2 - MT-ND4 pseudogene 27 pseudo MTND4P27 MT-ND4 pseudogene 27 O - 20121230 -9606 100873249 MTND4P28 - - HGNC:42215 2 - MT-ND4 pseudogene 28 pseudo MTND4P28 MT-ND4 pseudogene 28 O - 20121230 -9606 100873250 MTND4P29 - - HGNC:42216 2 - MT-ND4 pseudogene 29 pseudo MTND4P29 MT-ND4 pseudogene 29 O - 20121230 -9606 100873251 MTND4P30 - - HGNC:42217 2 - MT-ND4 pseudogene 30 pseudo MTND4P30 MT-ND4 pseudogene 30 O - 20121230 -9606 100873252 MTND4P31 - - HGNC:42218 X - MT-ND4 pseudogene 31 pseudo MTND4P31 MT-ND4 pseudogene 31 O - 20121230 -9606 100873253 MTND4P32 - - HGNC:42219 X - MT-ND4 pseudogene 32 pseudo MTND4P32 MT-ND4 pseudogene 32 O - 20121230 -9606 100873254 MTND4P24 - - HGNC:42220 X - MT-ND4 pseudogene 24 pseudo MTND4P24 MT-ND4 pseudogene 24 O - 20121230 -9606 100873255 MTND4P11 - - HGNC:42223 1 - MT-ND4 pseudogene 11 pseudo MTND4P11 MT-ND4 pseudogene 11 O - 20121230 -9606 100873256 MTND4P10 - - HGNC:42225 1 - MT-ND4 pseudogene 10 pseudo MTND4P10 MT-ND4 pseudogene 10 O - 20121230 -9606 100873257 MTND5P12 - - HGNC:42274 5 - MT-ND5 pseudogene 12 pseudo MTND5P12 MT-ND5 pseudogene 12 O - 20121230 -9606 100873258 MTND5P14 - - HGNC:42276 9 - MT-ND5 pseudogene 14 pseudo MTND5P14 MT-ND5 pseudogene 14 O - 20121230 -9606 100873259 MTND5P15 - - HGNC:42277 3 - MT-ND5 pseudogene 15 pseudo MTND5P15 MT-ND5 pseudogene 15 O - 20121230 -9606 100873260 MTND5P22 - - HGNC:42284 2 - MT-ND5 pseudogene 22 pseudo MTND5P22 MT-ND5 pseudogene 22 O - 20121230 -9606 100873261 MTND5P23 - - HGNC:42285 2 - MT-ND5 pseudogene 23 pseudo MTND5P23 MT-ND5 pseudogene 23 O - 20121230 -9606 100873262 MTND5P24 - - HGNC:42286 2 - MT-ND5 pseudogene 24 pseudo MTND5P24 MT-ND5 pseudogene 24 O - 20121230 -9606 100873263 MTND5P25 - - HGNC:42287 2 - MT-ND5 pseudogene 25 pseudo MTND5P25 MT-ND5 pseudogene 25 O - 20121230 -9606 100873264 MTND5P27 - - HGNC:42289 2 - MT-ND5 pseudogene 27 pseudo MTND5P27 MT-ND5 pseudogene 27 O - 20121230 -9606 100873265 MTND5P29 - - HGNC:42291 2 - MT-ND5 pseudogene 29 pseudo MTND5P29 MT-ND5 pseudogene 29 O - 20121230 -9606 100873266 MTND5P30 - - HGNC:42292 2 - MT-ND5 pseudogene 30 pseudo MTND5P30 MT-ND5 pseudogene 30 O - 20121230 -9606 100873267 MTND5P31 - - HGNC:42293 2 - MT-ND5 pseudogene 31 pseudo MTND5P31 MT-ND5 pseudogene 31 O - 20121230 -9606 100873268 MTND5P26 - - HGNC:42295 X - MT-ND5 pseudogene 26 pseudo MTND5P26 MT-ND5 pseudogene 26 O - 20121230 -9606 100873269 MTND5P20 - - HGNC:42300 1 - MT-ND5 pseudogene 20 pseudo MTND5P20 MT-ND5 pseudogene 20 O - 20121230 -9606 100873270 MTND5P19 - - HGNC:42301 1 - MT-ND5 pseudogene 19 pseudo MTND5P19 MT-ND5 pseudogene 19 O - 20121230 -9606 100873271 MTND5P18 - - HGNC:42302 1 - MT-ND5 pseudogene 18 pseudo MTND5P18 MT-ND5 pseudogene 18 O - 20121230 -9606 100873272 MTND5P13 - - HGNC:42304 4 - MT-ND5 pseudogene 13 pseudo MTND5P13 MT-ND5 pseudogene 13 O - 20121230 -9606 100873273 RNA5SP18 - RN5S18 HGNC:42586 1 - RNA, 5S ribosomal pseudogene 18 rRNA RNA5SP18 RNA, 5S ribosomal pseudogene 18 O - 20121021 -9606 100873274 RNA5SP19 - RN5S19 HGNC:42587 1 - RNA, 5S ribosomal pseudogene 19 rRNA RNA5SP19 RNA, 5S ribosomal pseudogene 19 O - 20121021 -9606 100873275 RNA5SP20 - RN5S20 HGNC:42588 1 - RNA, 5S ribosomal pseudogene 20 rRNA RNA5SP20 RNA, 5S ribosomal pseudogene 20 O - 20121021 -9606 100873276 RNA5SP21 - RN5S21 HGNC:42589 1 - RNA, 5S ribosomal pseudogene 21 rRNA RNA5SP21 RNA, 5S ribosomal pseudogene 21 O - 20121021 -9606 100873277 RNA5SP22 - RN5S22 HGNC:42590 1 - RNA, 5S ribosomal pseudogene 22 rRNA RNA5SP22 RNA, 5S ribosomal pseudogene 22 O - 20121021 -9606 100873278 RNA5SP23 - RN5S23 HGNC:42591 1 - RNA, 5S ribosomal pseudogene 23 rRNA RNA5SP23 RNA, 5S ribosomal pseudogene 23 O - 20121021 -9606 100873279 RNA5SP40 - RN5S40 HGNC:42816 1 - RNA, 5S ribosomal pseudogene 40 rRNA RNA5SP40 RNA, 5S ribosomal pseudogene 40 O - 20121021 -9606 100873280 RNA5SP41 - RN5S41 HGNC:42817 1 - RNA, 5S ribosomal pseudogene 41 rRNA RNA5SP41 RNA, 5S ribosomal pseudogene 41 O - 20121021 -9606 100873281 RNA5SP42 - RN5S42 HGNC:42818 1 - RNA, 5S ribosomal pseudogene 42 rRNA RNA5SP42 RNA, 5S ribosomal pseudogene 42 O - 20121021 -9606 100873282 RNA5SP43 - RN5S43 HGNC:42819 1 - RNA, 5S ribosomal pseudogene 43 rRNA RNA5SP43 RNA, 5S ribosomal pseudogene 43 O - 20121021 -9606 100873283 RNA5SP44 - RN5S44 HGNC:42820 1 - RNA, 5S ribosomal pseudogene 44 rRNA RNA5SP44 RNA, 5S ribosomal pseudogene 44 O - 20121021 -9606 100873284 RNA5SP45 - RN5S45 HGNC:42821 1 - RNA, 5S ribosomal pseudogene 45 rRNA RNA5SP45 RNA, 5S ribosomal pseudogene 45 O - 20121021 -9606 100873285 RNA5SP46 - RN5S46 HGNC:42822 1 - RNA, 5S ribosomal pseudogene 46 rRNA RNA5SP46 RNA, 5S ribosomal pseudogene 46 O - 20121021 -9606 100873286 RNA5SP47 - RN5S47 HGNC:42823 1 - RNA, 5S ribosomal pseudogene 47 rRNA RNA5SP47 RNA, 5S ribosomal pseudogene 47 O - 20121021 -9606 100873287 RNA5SP48 - RN5S48 HGNC:42824 1 - RNA, 5S ribosomal pseudogene 48 rRNA RNA5SP48 RNA, 5S ribosomal pseudogene 48 O - 20121021 -9606 100873288 RNA5SP49 - RN5S49 HGNC:42825 1 - RNA, 5S ribosomal pseudogene 49 rRNA RNA5SP49 RNA, 5S ribosomal pseudogene 49 O - 20121021 -9606 100873289 RNA5SP51 - RN5S51 HGNC:42828 1 - RNA, 5S ribosomal pseudogene 51 rRNA RNA5SP51 RNA, 5S ribosomal pseudogene 51 O - 20121021 -9606 100873290 RNA5SP52 - RN5S52 HGNC:42829 1 - RNA, 5S ribosomal pseudogene 52 rRNA RNA5SP52 RNA, 5S ribosomal pseudogene 52 O - 20121021 -9606 100873291 RNA5SP53 - RN5S53 HGNC:42830 1 - RNA, 5S ribosomal pseudogene 53 rRNA RNA5SP53 RNA, 5S ribosomal pseudogene 53 O - 20121021 -9606 100873292 RNA5SP54 - RN5S54 HGNC:42831 1 - RNA, 5S ribosomal pseudogene 54 rRNA RNA5SP54 RNA, 5S ribosomal pseudogene 54 O - 20121021 -9606 100873293 RNA5SP55 - RN5S55 HGNC:42832 1 - RNA, 5S ribosomal pseudogene 55 rRNA RNA5SP55 RNA, 5S ribosomal pseudogene 55 O - 20121021 -9606 100873294 RNA5SP56 - RN5S56 HGNC:42833 1 - RNA, 5S ribosomal pseudogene 56 rRNA RNA5SP56 RNA, 5S ribosomal pseudogene 56 O - 20121021 -9606 100873295 RNA5SP60 - RN5S60 HGNC:42837 1 - RNA, 5S ribosomal pseudogene 60 rRNA RNA5SP60 RNA, 5S ribosomal pseudogene 60 O - 20121021 -9606 100873296 RNA5SP61 - RN5S61 HGNC:42838 1 - RNA, 5S ribosomal pseudogene 61 rRNA RNA5SP61 RNA, 5S ribosomal pseudogene 61 O - 20121021 -9606 100873297 RNA5SP62 - RN5S62 HGNC:42839 1 - RNA, 5S ribosomal pseudogene 62 rRNA RNA5SP62 RNA, 5S ribosomal pseudogene 62 O - 20121021 -9606 100873298 RNA5SP63 - RN5S63 HGNC:42840 1 - RNA, 5S ribosomal pseudogene 63 rRNA RNA5SP63 RNA, 5S ribosomal pseudogene 63 O - 20121021 -9606 100873299 RNA5SP64 - RN5S64 HGNC:42841 1 - RNA, 5S ribosomal pseudogene 64 rRNA RNA5SP64 RNA, 5S ribosomal pseudogene 64 O - 20121021 -9606 100873300 RNA5SP65 - RN5S65 HGNC:42842 1 - RNA, 5S ribosomal pseudogene 65 rRNA RNA5SP65 RNA, 5S ribosomal pseudogene 65 O - 20121021 -9606 100873301 RNA5SP66 - RN5S66 HGNC:42843 1 - RNA, 5S ribosomal pseudogene 66 rRNA RNA5SP66 RNA, 5S ribosomal pseudogene 66 O - 20121021 -9606 100873302 RNA5SP67 - RN5S67 HGNC:42844 1 - RNA, 5S ribosomal pseudogene 67 rRNA RNA5SP67 RNA, 5S ribosomal pseudogene 67 O - 20121021 -9606 100873303 RNA5SP68 - RN5S68 HGNC:42845 1 - RNA, 5S ribosomal pseudogene 68 rRNA RNA5SP68 RNA, 5S ribosomal pseudogene 68 O - 20121021 -9606 100873304 RNA5SP69 - RN5S69 HGNC:42846 1 - RNA, 5S ribosomal pseudogene 69 rRNA RNA5SP69 RNA, 5S ribosomal pseudogene 69 O - 20121021 -9606 100873305 RNA5SP71 - RN5S71 HGNC:42848 1 - RNA, 5S ribosomal pseudogene 71 rRNA RNA5SP71 RNA, 5S ribosomal pseudogene 71 O - 20121021 -9606 100873306 RNA5SP72 - RN5S72 HGNC:42849 1 - RNA, 5S ribosomal pseudogene 72 rRNA RNA5SP72 RNA, 5S ribosomal pseudogene 72 O - 20121021 -9606 100873307 RNA5SP73 - RN5S73 HGNC:42850 1 - RNA, 5S ribosomal pseudogene 73 rRNA RNA5SP73 RNA, 5S ribosomal pseudogene 73 O - 20121021 -9606 100873308 RNA5SP74 - RN5S74 HGNC:42851 1 - RNA, 5S ribosomal pseudogene 74 rRNA RNA5SP74 RNA, 5S ribosomal pseudogene 74 O - 20121021 -9606 100873309 RNA5SP75 - RN5S75 HGNC:42852 1 - RNA, 5S ribosomal pseudogene 75 rRNA RNA5SP75 RNA, 5S ribosomal pseudogene 75 O - 20121021 -9606 100873310 RNA5SP76 - RN5S76 HGNC:42853 1 - RNA, 5S ribosomal pseudogene 76 rRNA RNA5SP76 RNA, 5S ribosomal pseudogene 76 O - 20121021 -9606 100873311 RNA5SP77 - RN5S77 HGNC:42854 1 - RNA, 5S ribosomal pseudogene 77 rRNA RNA5SP77 RNA, 5S ribosomal pseudogene 77 O - 20121021 -9606 100873312 RNA5SP78 - RN5S78 HGNC:42855 1 - RNA, 5S ribosomal pseudogene 78 rRNA RNA5SP78 RNA, 5S ribosomal pseudogene 78 O - 20121021 -9606 100873313 RNA5SP79 - RN5S79 HGNC:42856 1 - RNA, 5S ribosomal pseudogene 79 rRNA RNA5SP79 RNA, 5S ribosomal pseudogene 79 O - 20121021 -9606 100873314 RNA5SP80 - RN5S80 HGNC:42857 1 - RNA, 5S ribosomal pseudogene 80 rRNA RNA5SP80 RNA, 5S ribosomal pseudogene 80 O - 20121021 -9606 100873315 RNA5SP81 - RN5S81 HGNC:42858 1 - RNA, 5S ribosomal pseudogene 81 rRNA RNA5SP81 RNA, 5S ribosomal pseudogene 81 O - 20121021 -9606 100873316 RNA5SP82 - RN5S82 HGNC:42859 1 - RNA, 5S ribosomal pseudogene 82 rRNA RNA5SP82 RNA, 5S ribosomal pseudogene 82 O - 20121021 -9606 100873317 RNA5SP84 - RN5S84 HGNC:42882 2 - RNA, 5S ribosomal pseudogene 84 rRNA RNA5SP84 RNA, 5S ribosomal pseudogene 84 O - 20121021 -9606 100873318 RNA5SP85 - RN5S85 HGNC:42883 2 - RNA, 5S ribosomal pseudogene 85 rRNA RNA5SP85 RNA, 5S ribosomal pseudogene 85 O - 20121021 -9606 100873319 RNA5SP86 - RN5S86 HGNC:42884 2 - RNA, 5S ribosomal pseudogene 86 rRNA RNA5SP86 RNA, 5S ribosomal pseudogene 86 O - 20121021 -9606 100873320 RNA5SP87 - RN5S87 HGNC:42885 2 - RNA, 5S ribosomal pseudogene 87 rRNA RNA5SP87 RNA, 5S ribosomal pseudogene 87 O - 20121021 -9606 100873321 RNA5SP88 - RN5S88 HGNC:42886 2 - RNA, 5S ribosomal pseudogene 88 rRNA RNA5SP88 RNA, 5S ribosomal pseudogene 88 O - 20121021 -9606 100873322 RNA5SP89 - RN5S89 HGNC:42887 2 - RNA, 5S ribosomal pseudogene 89 rRNA RNA5SP89 RNA, 5S ribosomal pseudogene 89 O - 20121021 -9606 100873323 RNA5SP90 - RN5S90 HGNC:42888 2 - RNA, 5S ribosomal pseudogene 90 rRNA RNA5SP90 RNA, 5S ribosomal pseudogene 90 O - 20121021 -9606 100873324 RNA5SP91 - RN5S91 HGNC:42889 2 - RNA, 5S ribosomal pseudogene 91 rRNA RNA5SP91 RNA, 5S ribosomal pseudogene 91 O - 20121021 -9606 100873325 RNA5SP92 - RN5S92 HGNC:42890 2 - RNA, 5S ribosomal pseudogene 92 rRNA RNA5SP92 RNA, 5S ribosomal pseudogene 92 O - 20121021 -9606 100873326 RNA5SP93 - RN5S93 HGNC:42891 2 - RNA, 5S ribosomal pseudogene 93 rRNA RNA5SP93 RNA, 5S ribosomal pseudogene 93 O - 20121021 -9606 100873327 RNA5SP94 - RN5S94 HGNC:42892 2 - RNA, 5S ribosomal pseudogene 94 rRNA RNA5SP94 RNA, 5S ribosomal pseudogene 94 O - 20121021 -9606 100873328 RNA5SP95 - RN5S95 HGNC:42893 2 - RNA, 5S ribosomal pseudogene 95 rRNA RNA5SP95 RNA, 5S ribosomal pseudogene 95 O - 20121021 -9606 100873329 RNA5SP96 - RN5S96 HGNC:42894 2 - RNA, 5S ribosomal pseudogene 96 rRNA RNA5SP96 RNA, 5S ribosomal pseudogene 96 O - 20121021 -9606 100873330 RNA5SP97 - RN5S97 HGNC:42895 2 - RNA, 5S ribosomal pseudogene 97 rRNA RNA5SP97 RNA, 5S ribosomal pseudogene 97 O - 20121021 -9606 100873331 RNA5SP98 - RN5S98 HGNC:42896 2 - RNA, 5S ribosomal pseudogene 98 rRNA RNA5SP98 RNA, 5S ribosomal pseudogene 98 O - 20121021 -9606 100873332 MTND6P21 - - HGNC:39639 21 - MT-ND6 pseudogene 21 pseudo MTND6P21 MT-ND6 pseudogene 21 O - 20121230 -9606 100873333 SEPT2P1 - - HGNC:40017 1 - septin 2 pseudogene 1 pseudo SEPT2P1 septin 2 pseudogene 1 O - 20121230 -9606 100873334 RNA5-8SP3 - RN5-8S3 HGNC:41957 9 - RNA, 5.8S ribosomal pseudogene 3 rRNA RNA5-8SP3 RNA, 5.8S ribosomal pseudogene 3 O - 20121021 -9606 100873335 RNA5-8SP5 - RN5-8S5 HGNC:41959 2 - RNA, 5.8S ribosomal pseudogene 5 rRNA RNA5-8SP5 RNA, 5.8S ribosomal pseudogene 5 O - 20121021 -9606 100873336 RNA5-8SP6 - RN5-8S6 HGNC:41960 Y - RNA, 5.8S ribosomal pseudogene 6 rRNA RNA5-8SP6 RNA, 5.8S ribosomal pseudogene 6 O - 20121021 -9606 100873337 MTND1P14 - - HGNC:42063 17 - MT-ND1 pseudogene 14 pseudo MTND1P14 MT-ND1 pseudogene 14 O - 20121230 -9606 100873338 MTND1P18 - - HGNC:42067 10 - MT-ND1 pseudogene 18 pseudo MTND1P18 MT-ND1 pseudogene 18 O - 20121230 -9606 100873339 MTND1P20 - - HGNC:42069 10 - MT-ND1 pseudogene 20 pseudo MTND1P20 MT-ND1 pseudogene 20 O - 20121230 -9606 100873340 MTND1P21 - - HGNC:42070 10 - MT-ND1 pseudogene 21 pseudo MTND1P21 MT-ND1 pseudogene 21 O - 20121230 -9606 100873341 MTND1P24 - - HGNC:42073 12 - MT-ND1 pseudogene 24 pseudo MTND1P24 MT-ND1 pseudogene 24 O - 20121230 -9606 100873342 MTND1P17 - - HGNC:42095 22 - MT-ND1 pseudogene 17 pseudo MTND1P17 MT-ND1 pseudogene 17 O - 20121230 -9606 100873343 MTND1P10 - - HGNC:42097 22 - MT-ND1 pseudogene 10 pseudo MTND1P10 MT-ND1 pseudogene 10 O - 20121230 -9606 100873344 MTND2P12 - - HGNC:42113 17 - MT-ND2 pseudogene 12 pseudo MTND2P12 MT-ND2 pseudogene 12 O - 20121230 -9606 100873345 MTND2P13 - - HGNC:42114 17 - MT-ND2 pseudogene 13 pseudo MTND2P13 MT-ND2 pseudogene 13 O - 20121230 -9606 100873346 MTND2P15 - - HGNC:42116 10 - MT-ND2 pseudogene 15 pseudo MTND2P15 MT-ND2 pseudogene 15 O - 20121230 -9606 100873347 MTND2P16 - - HGNC:42117 10 - MT-ND2 pseudogene 16 pseudo MTND2P16 MT-ND2 pseudogene 16 O - 20121230 -9606 100873348 MTND2P17 - - HGNC:42118 12 - MT-ND2 pseudogene 17 pseudo MTND2P17 MT-ND2 pseudogene 17 O - 20121230 -9606 100873349 MTND2P26 - - HGNC:42127 11 - MT-ND2 pseudogene 26 pseudo MTND2P26 MT-ND2 pseudogene 26 O - 20121230 -9606 100873350 MTND4P18 - - HGNC:42205 10 - MT-ND4 pseudogene 18 pseudo MTND4P18 MT-ND4 pseudogene 18 O - 20121230 -9606 100873351 MTND4P19 - - HGNC:42206 10 - MT-ND4 pseudogene 19 pseudo MTND4P19 MT-ND4 pseudogene 19 O - 20121230 -9606 100873352 MTND4P20 - - HGNC:42207 10 - MT-ND4 pseudogene 20 pseudo MTND4P20 MT-ND4 pseudogene 20 O - 20121230 -9606 100873353 MTND5P17 - - HGNC:42279 10 - MT-ND5 pseudogene 17 pseudo MTND5P17 MT-ND5 pseudogene 17 O - 20121230 -9606 100873354 MTND5P21 - - HGNC:42296 11 - MT-ND5 pseudogene 21 pseudo MTND5P21 MT-ND5 pseudogene 21 O - 20121230 -9606 100873355 TEKT4P3 - - HGNC:42330 2 - tektin 4 pseudogene 3 pseudo TEKT4P3 tektin 4 pseudogene 3 O - 20121230 -9606 100873356 RNA5SP24 - RN5S24 HGNC:42600 13 - RNA, 5S ribosomal pseudogene 24 rRNA RNA5SP24 RNA, 5S ribosomal pseudogene 24 O - 20121021 -9606 100873357 RNA5SP25 - RN5S25 HGNC:42601 13 - RNA, 5S ribosomal pseudogene 25 rRNA RNA5SP25 RNA, 5S ribosomal pseudogene 25 O - 20121021 -9606 100873358 RNA5SP26 - RN5S26 HGNC:42602 13 - RNA, 5S ribosomal pseudogene 26 rRNA RNA5SP26 RNA, 5S ribosomal pseudogene 26 O - 20121021 -9606 100873359 RNA5SP27 - RN5S27 HGNC:42603 13 - RNA, 5S ribosomal pseudogene 27 rRNA RNA5SP27 RNA, 5S ribosomal pseudogene 27 O - 20121021 -9606 100873360 RNA5SP28 - RN5S28 HGNC:42604 13 - RNA, 5S ribosomal pseudogene 28 rRNA RNA5SP28 RNA, 5S ribosomal pseudogene 28 O - 20121021 -9606 100873361 RNA5SP29 - RN5S29 HGNC:42605 13 - RNA, 5S ribosomal pseudogene 29 rRNA RNA5SP29 RNA, 5S ribosomal pseudogene 29 O - 20121021 -9606 100873362 RNA5SP30 - RN5S30 HGNC:42606 13 - RNA, 5S ribosomal pseudogene 30 rRNA RNA5SP30 RNA, 5S ribosomal pseudogene 30 O - 20121021 -9606 100873363 RNA5SP31 - RN5S31 HGNC:42607 13 - RNA, 5S ribosomal pseudogene 31 rRNA RNA5SP31 RNA, 5S ribosomal pseudogene 31 O - 20121021 -9606 100873364 RNA5SP32 - RN5S32 HGNC:42608 13 - RNA, 5S ribosomal pseudogene 32 rRNA RNA5SP32 RNA, 5S ribosomal pseudogene 32 O - 20121021 -9606 100873365 RNA5SP33 - RN5S33 HGNC:42609 13 - RNA, 5S ribosomal pseudogene 33 rRNA RNA5SP33 RNA, 5S ribosomal pseudogene 33 O - 20121021 -9606 100873366 RNA5SP34 - RN5S34 HGNC:42610 13 - RNA, 5S ribosomal pseudogene 34 rRNA RNA5SP34 RNA, 5S ribosomal pseudogene 34 O - 20121021 -9606 100873367 RNA5SP35 - RN5S35 HGNC:42611 13 - RNA, 5S ribosomal pseudogene 35 rRNA RNA5SP35 RNA, 5S ribosomal pseudogene 35 O - 20121021 -9606 100873368 RNA5SP36 - RN5S36 HGNC:42612 13 - RNA, 5S ribosomal pseudogene 36 rRNA RNA5SP36 RNA, 5S ribosomal pseudogene 36 O - 20121021 -9606 100873369 RNA5SP37 - RN5S37 HGNC:42613 13 - RNA, 5S ribosomal pseudogene 37 rRNA RNA5SP37 RNA, 5S ribosomal pseudogene 37 O - 20121021 -9606 100873370 RNA5SP38 - RN5S38 HGNC:42614 13 - RNA, 5S ribosomal pseudogene 38 rRNA RNA5SP38 RNA, 5S ribosomal pseudogene 38 O - 20121021 -9606 100873371 RNA5SP39 - RN5S39 HGNC:42615 13 - RNA, 5S ribosomal pseudogene 39 rRNA RNA5SP39 RNA, 5S ribosomal pseudogene 39 O - 20121021 -9606 100873372 RNA5SP101 - RN5S101 HGNC:42899 2 - RNA, 5S ribosomal pseudogene 101 rRNA RNA5SP101 RNA, 5S ribosomal pseudogene 101 O - 20121021 -9606 100873373 RNA5SP102 - RN5S102 HGNC:42900 2 - RNA, 5S ribosomal pseudogene 102 rRNA RNA5SP102 RNA, 5S ribosomal pseudogene 102 O - 20121021 -9606 100873374 RNA5SP103 - RN5S103 HGNC:42901 2 - RNA, 5S ribosomal pseudogene 103 rRNA RNA5SP103 RNA, 5S ribosomal pseudogene 103 O - 20121021 -9606 100873375 RNA5SP104 - RN5S104 HGNC:42902 2 - RNA, 5S ribosomal pseudogene 104 rRNA RNA5SP104 RNA, 5S ribosomal pseudogene 104 O - 20121021 -9606 100873376 RNA5SP105 - RN5S105 HGNC:42903 2 - RNA, 5S ribosomal pseudogene 105 rRNA RNA5SP105 RNA, 5S ribosomal pseudogene 105 O - 20121021 -9606 100873377 RNA5SP107 - RN5S107 HGNC:42905 2 - RNA, 5S ribosomal pseudogene 107 rRNA RNA5SP107 RNA, 5S ribosomal pseudogene 107 O - 20121021 -9606 100873378 RNA5SP108 - RN5S108 HGNC:42906 2 - RNA, 5S ribosomal pseudogene 108 rRNA RNA5SP108 RNA, 5S ribosomal pseudogene 108 O - 20121021 -9606 100873379 RNA5SP109 - RN5S109 HGNC:42907 2 - RNA, 5S ribosomal pseudogene 109 rRNA RNA5SP109 RNA, 5S ribosomal pseudogene 109 O - 20121021 -9606 100873380 RNA5SP110 - RN5S110 HGNC:42908 2 - RNA, 5S ribosomal pseudogene 110 rRNA RNA5SP110 RNA, 5S ribosomal pseudogene 110 O - 20121021 -9606 100873381 RNA5SP111 - RN5S111 HGNC:42909 2 - RNA, 5S ribosomal pseudogene 111 rRNA RNA5SP111 RNA, 5S ribosomal pseudogene 111 O - 20121021 -9606 100873382 RNA5SP112 - RN5S112 HGNC:42910 2 - RNA, 5S ribosomal pseudogene 112 rRNA RNA5SP112 RNA, 5S ribosomal pseudogene 112 O - 20121021 -9606 100873383 RNA5SP113 - RN5S113 HGNC:42911 2 - RNA, 5S ribosomal pseudogene 113 rRNA RNA5SP113 RNA, 5S ribosomal pseudogene 113 O - 20121021 -9606 100873384 RNA5SP114 - RN5S114 HGNC:42912 2 - RNA, 5S ribosomal pseudogene 114 rRNA RNA5SP114 RNA, 5S ribosomal pseudogene 114 O - 20121021 -9606 100873385 RNA5SP115 - RN5S115 HGNC:42913 2 - RNA, 5S ribosomal pseudogene 115 rRNA RNA5SP115 RNA, 5S ribosomal pseudogene 115 O - 20121021 -9606 100873386 RNA5SP116 - RN5S116 HGNC:42914 2 - RNA, 5S ribosomal pseudogene 116 rRNA RNA5SP116 RNA, 5S ribosomal pseudogene 116 O - 20121021 -9606 100873387 RNA5SP117 - RN5S117 HGNC:42915 2 - RNA, 5S ribosomal pseudogene 117 rRNA RNA5SP117 RNA, 5S ribosomal pseudogene 117 O - 20121021 -9606 100873388 RNA5SP118 - RN5S118 HGNC:42916 2 - RNA, 5S ribosomal pseudogene 118 rRNA RNA5SP118 RNA, 5S ribosomal pseudogene 118 O - 20121021 -9606 100873389 RNA5SP119 - RN5S119 HGNC:42917 2 - RNA, 5S ribosomal pseudogene 119 rRNA RNA5SP119 RNA, 5S ribosomal pseudogene 119 O - 20121021 -9606 100873390 RNA5SP120 - RN5S120 HGNC:42918 2 - RNA, 5S ribosomal pseudogene 120 rRNA RNA5SP120 RNA, 5S ribosomal pseudogene 120 O - 20121021 -9606 100873391 RNA5SP121 - RN5S121 HGNC:42919 2 - RNA, 5S ribosomal pseudogene 121 rRNA RNA5SP121 RNA, 5S ribosomal pseudogene 121 O - 20121021 -9606 100873392 RNA5SP122 - RN5S122 HGNC:42920 2 - RNA, 5S ribosomal pseudogene 122 rRNA RNA5SP122 RNA, 5S ribosomal pseudogene 122 O - 20121021 -9606 100873393 RNA5SP123 - RN5S123 HGNC:43023 3 - RNA, 5S ribosomal pseudogene 123 rRNA RNA5SP123 RNA, 5S ribosomal pseudogene 123 O - 20121021 -9606 100873394 RNA5SP124 - RN5S124 HGNC:43024 3 - RNA, 5S ribosomal pseudogene 124 rRNA RNA5SP124 RNA, 5S ribosomal pseudogene 124 O - 20121021 -9606 100873395 RNA5SP125 - RN5S125 HGNC:43025 3 - RNA, 5S ribosomal pseudogene 125 rRNA RNA5SP125 RNA, 5S ribosomal pseudogene 125 O - 20121021 -9606 100873396 RNA5SP126 - RN5S126 HGNC:43026 3 - RNA, 5S ribosomal pseudogene 126 rRNA RNA5SP126 RNA, 5S ribosomal pseudogene 126 O - 20121021 -9606 100873397 RNA5SP127 - RN5S127 HGNC:43027 3 - RNA, 5S ribosomal pseudogene 127 rRNA RNA5SP127 RNA, 5S ribosomal pseudogene 127 O - 20121021 -9606 100873398 RNA5SP128 - RN5S128 HGNC:43028 3 - RNA, 5S ribosomal pseudogene 128 rRNA RNA5SP128 RNA, 5S ribosomal pseudogene 128 O - 20121021 -9606 100873399 RNA5SP129 - RN5S129 HGNC:43029 3 - RNA, 5S ribosomal pseudogene 129 rRNA RNA5SP129 RNA, 5S ribosomal pseudogene 129 O - 20121021 -9606 100873400 RNA5SP131 - RN5S131 HGNC:43031 3 - RNA, 5S ribosomal pseudogene 131 rRNA RNA5SP131 RNA, 5S ribosomal pseudogene 131 O - 20121021 -9606 100873401 RNA5SP132 - RN5S132 HGNC:43032 3 - RNA, 5S ribosomal pseudogene 132 rRNA RNA5SP132 RNA, 5S ribosomal pseudogene 132 O - 20121021 -9606 100873402 RNA5SP133 - RN5S133 HGNC:43033 3 - RNA, 5S ribosomal pseudogene 133 rRNA RNA5SP133 RNA, 5S ribosomal pseudogene 133 O - 20121021 -9606 100873403 RNA5SP135 - RN5S135 HGNC:43035 3 - RNA, 5S ribosomal pseudogene 135 rRNA RNA5SP135 RNA, 5S ribosomal pseudogene 135 O - 20121021 -9606 100873404 RNA5SP136 - RN5S136 HGNC:43036 3 - RNA, 5S ribosomal pseudogene 136 rRNA RNA5SP136 RNA, 5S ribosomal pseudogene 136 O - 20121021 -9606 100873405 RNA5SP137 - RN5S137 HGNC:43037 3 - RNA, 5S ribosomal pseudogene 137 rRNA RNA5SP137 RNA, 5S ribosomal pseudogene 137 O - 20121021 -9606 100873406 RNA5SP138 - RN5S138 HGNC:43038 3 - RNA, 5S ribosomal pseudogene 138 rRNA RNA5SP138 RNA, 5S ribosomal pseudogene 138 O - 20121021 -9606 100873407 RNA5SP139 - RN5S139 HGNC:43039 3 - RNA, 5S ribosomal pseudogene 139 rRNA RNA5SP139 RNA, 5S ribosomal pseudogene 139 O - 20121021 -9606 100873408 RNA5SP141 - RN5S141 HGNC:43041 3 - RNA, 5S ribosomal pseudogene 141 rRNA RNA5SP141 RNA, 5S ribosomal pseudogene 141 O - 20121021 -9606 100873409 RNA5SP142 - RN5S142 HGNC:43042 3 - RNA, 5S ribosomal pseudogene 142 rRNA RNA5SP142 RNA, 5S ribosomal pseudogene 142 O - 20121021 -9606 100873410 RNA5SP143 - RN5S143 HGNC:43043 3 - RNA, 5S ribosomal pseudogene 143 rRNA RNA5SP143 RNA, 5S ribosomal pseudogene 143 O - 20121021 -9606 100873411 RNA5SP144 - RN5S144 HGNC:43044 3 - RNA, 5S ribosomal pseudogene 144 rRNA RNA5SP144 RNA, 5S ribosomal pseudogene 144 O - 20121021 -9606 100873412 RNA5SP145 - RN5S145 HGNC:43045 3 - RNA, 5S ribosomal pseudogene 145 rRNA RNA5SP145 RNA, 5S ribosomal pseudogene 145 O - 20121021 -9606 100873413 RNA5SP146 - RN5S146 HGNC:43046 3 - RNA, 5S ribosomal pseudogene 146 rRNA RNA5SP146 RNA, 5S ribosomal pseudogene 146 O - 20121021 -9606 100873414 RNA5SP147 - RN5S147 HGNC:43047 3 - RNA, 5S ribosomal pseudogene 147 rRNA RNA5SP147 RNA, 5S ribosomal pseudogene 147 O - 20121021 -9606 100873415 RNA5SP148 - RN5S148 HGNC:43048 3 - RNA, 5S ribosomal pseudogene 148 rRNA RNA5SP148 RNA, 5S ribosomal pseudogene 148 O - 20121021 -9606 100873416 RNA5SP150 - RN5S150 HGNC:43050 3 - RNA, 5S ribosomal pseudogene 150 rRNA RNA5SP150 RNA, 5S ribosomal pseudogene 150 O - 20121021 -9606 100873417 RNA5SP151 - RN5S151 HGNC:43051 3 - RNA, 5S ribosomal pseudogene 151 rRNA RNA5SP151 RNA, 5S ribosomal pseudogene 151 O - 20121021 -9606 100873418 RNA5SP152 - RN5S152 HGNC:43052 4 - RNA, 5S ribosomal pseudogene 152 rRNA RNA5SP152 RNA, 5S ribosomal pseudogene 152 O - 20121021 -9606 100873419 RNA5SP153 - RN5S153 HGNC:43053 4 - RNA, 5S ribosomal pseudogene 153 rRNA RNA5SP153 RNA, 5S ribosomal pseudogene 153 O - 20121021 -9606 100873420 RNA5SP154 - RN5S154 HGNC:43054 4 - RNA, 5S ribosomal pseudogene 154 rRNA RNA5SP154 RNA, 5S ribosomal pseudogene 154 O - 20121021 -9606 100873421 RNA5SP155 - RN5S155 HGNC:43055 4 - RNA, 5S ribosomal pseudogene 155 rRNA RNA5SP155 RNA, 5S ribosomal pseudogene 155 O - 20121021 -9606 100873422 RNA5SP156 - RN5S156 HGNC:43056 4 - RNA, 5S ribosomal pseudogene 156 rRNA RNA5SP156 RNA, 5S ribosomal pseudogene 156 O - 20121021 -9606 100873423 RNA5SP157 - RN5S157 HGNC:43057 4 - RNA, 5S ribosomal pseudogene 157 rRNA RNA5SP157 RNA, 5S ribosomal pseudogene 157 O - 20121021 -9606 100873424 RNA5SP158 - RN5S158 HGNC:43058 4 - RNA, 5S ribosomal pseudogene 158 rRNA RNA5SP158 RNA, 5S ribosomal pseudogene 158 O - 20121021 -9606 100873425 RNA5SP159 - RN5S159 HGNC:43059 4 - RNA, 5S ribosomal pseudogene 159 rRNA RNA5SP159 RNA, 5S ribosomal pseudogene 159 O - 20121021 -9606 100873426 RNA5SP160 - RN5S160 HGNC:43060 4 - RNA, 5S ribosomal pseudogene 160 rRNA RNA5SP160 RNA, 5S ribosomal pseudogene 160 O - 20121021 -9606 100873427 RNA5SP162 - RN5S162 HGNC:43062 4 - RNA, 5S ribosomal pseudogene 162 rRNA RNA5SP162 RNA, 5S ribosomal pseudogene 162 O - 20121021 -9606 100873428 RNA5SP163 - RN5S163 HGNC:43063 4 - RNA, 5S ribosomal pseudogene 163 rRNA RNA5SP163 RNA, 5S ribosomal pseudogene 163 O - 20121021 -9606 100873429 RNA5SP164 - RN5S164 HGNC:43064 4 - RNA, 5S ribosomal pseudogene 164 rRNA RNA5SP164 RNA, 5S ribosomal pseudogene 164 O - 20121021 -9606 100873430 RNA5SP165 - RN5S165 HGNC:43065 4 - RNA, 5S ribosomal pseudogene 165 rRNA RNA5SP165 RNA, 5S ribosomal pseudogene 165 O - 20121021 -9606 100873431 RNA5SP166 - RN5S166 HGNC:43066 4 - RNA, 5S ribosomal pseudogene 166 rRNA RNA5SP166 RNA, 5S ribosomal pseudogene 166 O - 20121021 -9606 100873432 RNA5SP167 - RN5S167 HGNC:43067 4 - RNA, 5S ribosomal pseudogene 167 rRNA RNA5SP167 RNA, 5S ribosomal pseudogene 167 O - 20121021 -9606 100873433 RNA5SP168 - RN5S168 HGNC:43068 4 - RNA, 5S ribosomal pseudogene 168 rRNA RNA5SP168 RNA, 5S ribosomal pseudogene 168 O - 20121021 -9606 100873434 RNA5SP169 - RN5S169 HGNC:43069 4 - RNA, 5S ribosomal pseudogene 169 rRNA RNA5SP169 RNA, 5S ribosomal pseudogene 169 O - 20121021 -9606 100873435 RNA5SP170 - RN5S170 HGNC:43070 4 - RNA, 5S ribosomal pseudogene 170 rRNA RNA5SP170 RNA, 5S ribosomal pseudogene 170 O - 20121021 -9606 100873436 RNA5SP171 - RN5S171 HGNC:43071 4 - RNA, 5S ribosomal pseudogene 171 rRNA RNA5SP171 RNA, 5S ribosomal pseudogene 171 O - 20121021 -9606 100873437 RNA5SP173 - RN5S173 HGNC:43073 4 - RNA, 5S ribosomal pseudogene 173 rRNA RNA5SP173 RNA, 5S ribosomal pseudogene 173 O - 20121021 -9606 100873438 RNA5SP176 - RN5S176 HGNC:43076 5 - RNA, 5S ribosomal pseudogene 176 rRNA RNA5SP176 RNA, 5S ribosomal pseudogene 176 O - 20121021 -9606 100873439 RNA5SP177 - RN5S177 HGNC:43077 5 - RNA, 5S ribosomal pseudogene 177 rRNA RNA5SP177 RNA, 5S ribosomal pseudogene 177 O - 20121021 -9606 100873440 RNA5SP178 - RN5S178 HGNC:43078 5 - RNA, 5S ribosomal pseudogene 178 rRNA RNA5SP178 RNA, 5S ribosomal pseudogene 178 O - 20121021 -9606 100873441 RNA5SP179 - RN5S179 HGNC:43079 5 - RNA, 5S ribosomal pseudogene 179 rRNA RNA5SP179 RNA, 5S ribosomal pseudogene 179 O - 20121021 -9606 100873442 RNA5SP180 - RN5S180 HGNC:43080 5 - RNA, 5S ribosomal pseudogene 180 rRNA RNA5SP180 RNA, 5S ribosomal pseudogene 180 O - 20121021 -9606 100873443 RNA5SP181 - RN5S181 HGNC:43081 5 - RNA, 5S ribosomal pseudogene 181 rRNA RNA5SP181 RNA, 5S ribosomal pseudogene 181 O - 20121021 -9606 100873444 RNA5SP182 - RN5S182 HGNC:43082 5 - RNA, 5S ribosomal pseudogene 182 rRNA RNA5SP182 RNA, 5S ribosomal pseudogene 182 O - 20121021 -9606 100873445 RNA5SP183 - RN5S183 HGNC:43083 5 - RNA, 5S ribosomal pseudogene 183 rRNA RNA5SP183 RNA, 5S ribosomal pseudogene 183 O - 20121021 -9606 100873446 RNA5SP184 - RN5S184 HGNC:43084 5 - RNA, 5S ribosomal pseudogene 184 rRNA RNA5SP184 RNA, 5S ribosomal pseudogene 184 O - 20121021 -9606 100873447 RNA5SP185 - RN5S185 HGNC:43085 5 - RNA, 5S ribosomal pseudogene 185 rRNA RNA5SP185 RNA, 5S ribosomal pseudogene 185 O - 20121021 -9606 100873448 RNA5SP186 - RN5S186 HGNC:43086 5 - RNA, 5S ribosomal pseudogene 186 rRNA RNA5SP186 RNA, 5S ribosomal pseudogene 186 O - 20121021 -9606 100873449 RNA5SP187 - RN5S187 HGNC:43087 5 - RNA, 5S ribosomal pseudogene 187 rRNA RNA5SP187 RNA, 5S ribosomal pseudogene 187 O - 20121021 -9606 100873450 RNA5SP188 - RN5S188 HGNC:43088 5 - RNA, 5S ribosomal pseudogene 188 rRNA RNA5SP188 RNA, 5S ribosomal pseudogene 188 O - 20121021 -9606 100873451 RNA5SP189 - RN5S189 HGNC:43089 5 - RNA, 5S ribosomal pseudogene 189 rRNA RNA5SP189 RNA, 5S ribosomal pseudogene 189 O - 20121021 -9606 100873452 RNA5SP190 - RN5S190 HGNC:43090 5 - RNA, 5S ribosomal pseudogene 190 rRNA RNA5SP190 RNA, 5S ribosomal pseudogene 190 O - 20121021 -9606 100873453 RNA5SP191 - RN5S191 HGNC:43091 5 - RNA, 5S ribosomal pseudogene 191 rRNA RNA5SP191 RNA, 5S ribosomal pseudogene 191 O - 20121021 -9606 100873454 RNA5SP192 - RN5S192 HGNC:43092 5 - RNA, 5S ribosomal pseudogene 192 rRNA RNA5SP192 RNA, 5S ribosomal pseudogene 192 O - 20121021 -9606 100873455 RNA5SP193 - RN5S193 HGNC:43093 5 - RNA, 5S ribosomal pseudogene 193 rRNA RNA5SP193 RNA, 5S ribosomal pseudogene 193 O - 20121021 -9606 100873456 RNA5SP194 - RN5S194 HGNC:43094 5 - RNA, 5S ribosomal pseudogene 194 rRNA RNA5SP194 RNA, 5S ribosomal pseudogene 194 O - 20121021 -9606 100873457 RNA5SP195 - RN5S195 HGNC:43095 5 - RNA, 5S ribosomal pseudogene 195 rRNA RNA5SP195 RNA, 5S ribosomal pseudogene 195 O - 20121021 -9606 100873458 RNA5SP196 - RN5S196 HGNC:43096 5 - RNA, 5S ribosomal pseudogene 196 rRNA RNA5SP196 RNA, 5S ribosomal pseudogene 196 O - 20121021 -9606 100873459 RNA5SP197 - RN5S197 HGNC:43097 5 - RNA, 5S ribosomal pseudogene 197 rRNA RNA5SP197 RNA, 5S ribosomal pseudogene 197 O - 20121021 -9606 100873460 RNA5SP198 - RN5S198 HGNC:43098 5 - RNA, 5S ribosomal pseudogene 198 rRNA RNA5SP198 RNA, 5S ribosomal pseudogene 198 O - 20121021 -9606 100873461 RNA5SP200 - RN5S200 HGNC:43100 5 - RNA, 5S ribosomal pseudogene 200 rRNA RNA5SP200 RNA, 5S ribosomal pseudogene 200 O - 20121021 -9606 100873462 RNA5SP201 - RN5S201 HGNC:43101 6 - RNA, 5S ribosomal pseudogene 201 rRNA RNA5SP201 RNA, 5S ribosomal pseudogene 201 O - 20121021 -9606 100873463 RNA5SP202 - RN5S202 HGNC:43102 6 - RNA, 5S ribosomal pseudogene 202 rRNA RNA5SP202 RNA, 5S ribosomal pseudogene 202 O - 20121021 -9606 100873464 RNA5SP203 - RN5S203 HGNC:43103 6 - RNA, 5S ribosomal pseudogene 203 rRNA RNA5SP203 RNA, 5S ribosomal pseudogene 203 O - 20121021 -9606 100873465 RNA5SP204 - RN5S204 HGNC:43104 6 - RNA, 5S ribosomal pseudogene 204 rRNA RNA5SP204 RNA, 5S ribosomal pseudogene 204 O - 20121021 -9606 100873466 RNA5SP205 - RN5S205 HGNC:43105 6 - RNA, 5S ribosomal pseudogene 205 rRNA RNA5SP205 RNA, 5S ribosomal pseudogene 205 O - 20121021 -9606 100873467 RNA5SP207 - RN5S207 HGNC:43107 6 - RNA, 5S ribosomal pseudogene 207 rRNA RNA5SP207 RNA, 5S ribosomal pseudogene 207 O - 20121021 -9606 100873468 RNA5SP208 - RN5S208 HGNC:43108 6 - RNA, 5S ribosomal pseudogene 208 rRNA RNA5SP208 RNA, 5S ribosomal pseudogene 208 O - 20121021 -9606 100873469 RNA5SP209 - RN5S209 HGNC:43109 6 - RNA, 5S ribosomal pseudogene 209 rRNA RNA5SP209 RNA, 5S ribosomal pseudogene 209 O - 20121021 -9606 100873470 RNA5SP210 - RN5S210 HGNC:43110 6 - RNA, 5S ribosomal pseudogene 210 rRNA RNA5SP210 RNA, 5S ribosomal pseudogene 210 O - 20121021 -9606 100873471 RNA5SP211 - RN5S211 HGNC:43111 6 - RNA, 5S ribosomal pseudogene 211 rRNA RNA5SP211 RNA, 5S ribosomal pseudogene 211 O - 20121021 -9606 100873472 RNA5SP212 - RN5S212 HGNC:43112 6 - RNA, 5S ribosomal pseudogene 212 rRNA RNA5SP212 RNA, 5S ribosomal pseudogene 212 O - 20121021 -9606 100873473 RNA5SP213 - RN5S213 HGNC:43113 6 - RNA, 5S ribosomal pseudogene 213 rRNA RNA5SP213 RNA, 5S ribosomal pseudogene 213 O - 20121021 -9606 100873474 RNA5SP214 - RN5S214 HGNC:43114 6 - RNA, 5S ribosomal pseudogene 214 rRNA RNA5SP214 RNA, 5S ribosomal pseudogene 214 O - 20121021 -9606 100873475 RNA5SP215 - RN5S215 HGNC:43115 6 - RNA, 5S ribosomal pseudogene 215 rRNA RNA5SP215 RNA, 5S ribosomal pseudogene 215 O - 20121021 -9606 100873476 RNA5SP216 - RN5S216 HGNC:43116 6 - RNA, 5S ribosomal pseudogene 216 rRNA RNA5SP216 RNA, 5S ribosomal pseudogene 216 O - 20121021 -9606 100873477 RNA5SP217 - RN5S217 HGNC:43117 6 - RNA, 5S ribosomal pseudogene 217 rRNA RNA5SP217 RNA, 5S ribosomal pseudogene 217 O - 20121021 -9606 100873478 RNA5SP218 - RN5S218 HGNC:43118 6 - RNA, 5S ribosomal pseudogene 218 rRNA RNA5SP218 RNA, 5S ribosomal pseudogene 218 O - 20121021 -9606 100873479 RNA5SP219 - RN5S219 HGNC:43119 6 - RNA, 5S ribosomal pseudogene 219 rRNA RNA5SP219 RNA, 5S ribosomal pseudogene 219 O - 20121021 -9606 100873480 RNA5SP220 - RN5S220 HGNC:43120 6 - RNA, 5S ribosomal pseudogene 220 rRNA RNA5SP220 RNA, 5S ribosomal pseudogene 220 O - 20121021 -9606 100873481 RNA5SP222 - RN5S222 HGNC:43122 6 - RNA, 5S ribosomal pseudogene 222 rRNA RNA5SP222 RNA, 5S ribosomal pseudogene 222 O - 20121021 -9606 100873482 RNA5SP223 - RN5S223 HGNC:43123 6 - RNA, 5S ribosomal pseudogene 223 rRNA RNA5SP223 RNA, 5S ribosomal pseudogene 223 O - 20121021 -9606 100873483 RNA5SP224 - RN5S224 HGNC:43124 6 - RNA, 5S ribosomal pseudogene 224 rRNA RNA5SP224 RNA, 5S ribosomal pseudogene 224 O - 20121021 -9606 100873484 RNA5SP225 - RN5S225 HGNC:43125 6 - RNA, 5S ribosomal pseudogene 225 rRNA RNA5SP225 RNA, 5S ribosomal pseudogene 225 O - 20121021 -9606 100873485 RNA5SP227 - RN5S227 HGNC:43127 7 - RNA, 5S ribosomal pseudogene 227 rRNA RNA5SP227 RNA, 5S ribosomal pseudogene 227 O - 20121021 -9606 100873486 RNA5SP228 - RN5S228 HGNC:43128 7 - RNA, 5S ribosomal pseudogene 228 rRNA RNA5SP228 RNA, 5S ribosomal pseudogene 228 O - 20121021 -9606 100873487 RNA5SP229 - RN5S229 HGNC:43129 7 - RNA, 5S ribosomal pseudogene 229 rRNA RNA5SP229 RNA, 5S ribosomal pseudogene 229 O - 20121021 -9606 100873488 RNA5SP230 - RN5S230 HGNC:43130 7 - RNA, 5S ribosomal pseudogene 230 rRNA RNA5SP230 RNA, 5S ribosomal pseudogene 230 O - 20121021 -9606 100873489 RNA5SP231 - RN5S231 HGNC:43131 7 - RNA, 5S ribosomal pseudogene 231 rRNA RNA5SP231 RNA, 5S ribosomal pseudogene 231 O - 20121021 -9606 100873490 RNA5SP232 - RN5S232 HGNC:43132 7 - RNA, 5S ribosomal pseudogene 232 rRNA RNA5SP232 RNA, 5S ribosomal pseudogene 232 O - 20121021 -9606 100873491 RNA5SP233 - RN5S233 HGNC:43133 7 - RNA, 5S ribosomal pseudogene 233 rRNA RNA5SP233 RNA, 5S ribosomal pseudogene 233 O - 20121021 -9606 100873492 RNA5SP234 - RN5S234 HGNC:43134 7 - RNA, 5S ribosomal pseudogene 234 rRNA RNA5SP234 RNA, 5S ribosomal pseudogene 234 O - 20121021 -9606 100873493 RNA5SP235 - RN5S235 HGNC:43135 7 - RNA, 5S ribosomal pseudogene 235 rRNA RNA5SP235 RNA, 5S ribosomal pseudogene 235 O - 20121021 -9606 100873494 RNA5SP236 - RN5S236 HGNC:43136 7 - RNA, 5S ribosomal pseudogene 236 rRNA RNA5SP236 RNA, 5S ribosomal pseudogene 236 O - 20121021 -9606 100873495 RNA5SP237 - RN5S237 HGNC:43137 7 - RNA, 5S ribosomal pseudogene 237 rRNA RNA5SP237 RNA, 5S ribosomal pseudogene 237 O - 20121021 -9606 100873496 RNA5SP238 - RN5S238 HGNC:43138 7 - RNA, 5S ribosomal pseudogene 238 rRNA RNA5SP238 RNA, 5S ribosomal pseudogene 238 O - 20121021 -9606 100873497 RNA5SP239 - RN5S239 HGNC:43139 7 - RNA, 5S ribosomal pseudogene 239 rRNA RNA5SP239 RNA, 5S ribosomal pseudogene 239 O - 20121021 -9606 100873498 RNA5SP240 - RN5S240 HGNC:43140 7 - RNA, 5S ribosomal pseudogene 240 rRNA RNA5SP240 RNA, 5S ribosomal pseudogene 240 O - 20121021 -9606 100873499 RNA5SP241 - RN5S241 HGNC:43141 7 - RNA, 5S ribosomal pseudogene 241 rRNA RNA5SP241 RNA, 5S ribosomal pseudogene 241 O - 20121021 -9606 100873500 RNA5SP242 - RN5S242 HGNC:43142 7 - RNA, 5S ribosomal pseudogene 242 rRNA RNA5SP242 RNA, 5S ribosomal pseudogene 242 O - 20121021 -9606 100873501 RNA5SP245 - RN5S245 HGNC:43145 7 - RNA, 5S ribosomal pseudogene 245 rRNA RNA5SP245 RNA, 5S ribosomal pseudogene 245 O - 20121021 -9606 100873502 RNA5SP246 - RN5S246 HGNC:43146 7 - RNA, 5S ribosomal pseudogene 246 rRNA RNA5SP246 RNA, 5S ribosomal pseudogene 246 O - 20120810 -9606 100873503 RNA5SP247 - RN5S247 HGNC:43147 7 - RNA, 5S ribosomal pseudogene 247 rRNA RNA5SP247 RNA, 5S ribosomal pseudogene 247 O - 20121021 -9606 100873504 RNA5SP248 - RN5S248 HGNC:43148 7 - RNA, 5S ribosomal pseudogene 248 rRNA RNA5SP248 RNA, 5S ribosomal pseudogene 248 O - 20121021 -9606 100873505 RNA5SP249 - RN5S249 HGNC:43149 7 - RNA, 5S ribosomal pseudogene 249 rRNA RNA5SP249 RNA, 5S ribosomal pseudogene 249 O - 20121021 -9606 100873506 RNA5SP250 - RN5S250 HGNC:43150 7 - RNA, 5S ribosomal pseudogene 250 rRNA RNA5SP250 RNA, 5S ribosomal pseudogene 250 O - 20121021 -9606 100873507 RNA5SP251 - RN5S251 HGNC:43151 8 - RNA, 5S ribosomal pseudogene 251 rRNA RNA5SP251 RNA, 5S ribosomal pseudogene 251 O - 20121021 -9606 100873508 RNA5SP252 - RN5S252 HGNC:43152 8 - RNA, 5S ribosomal pseudogene 252 rRNA RNA5SP252 RNA, 5S ribosomal pseudogene 252 O - 20121021 -9606 100873509 RNA5SP255 - RN5S255 HGNC:43155 8 - RNA, 5S ribosomal pseudogene 255 rRNA RNA5SP255 RNA, 5S ribosomal pseudogene 255 O - 20121021 -9606 100873510 RNA5SP256 - RN5S256 HGNC:43156 8 - RNA, 5S ribosomal pseudogene 256 rRNA RNA5SP256 RNA, 5S ribosomal pseudogene 256 O - 20121021 -9606 100873511 RNA5SP257 - RN5S257 HGNC:43157 8 - RNA, 5S ribosomal pseudogene 257 rRNA RNA5SP257 RNA, 5S ribosomal pseudogene 257 O - 20121021 -9606 100873512 RNA5SP258 - RN5S258 HGNC:43158 8 - RNA, 5S ribosomal pseudogene 258 rRNA RNA5SP258 RNA, 5S ribosomal pseudogene 258 O - 20121021 -9606 100873513 RNA5SP259 - RN5S259 HGNC:43159 8 - RNA, 5S ribosomal pseudogene 259 rRNA RNA5SP259 RNA, 5S ribosomal pseudogene 259 O - 20121021 -9606 100873514 RNA5SP260 - RN5S260 HGNC:43160 8 - RNA, 5S ribosomal pseudogene 260 rRNA RNA5SP260 RNA, 5S ribosomal pseudogene 260 O - 20121021 -9606 100873515 RNA5SP261 - RN5S261 HGNC:43161 8 - RNA, 5S ribosomal pseudogene 261 rRNA RNA5SP261 RNA, 5S ribosomal pseudogene 261 O - 20121021 -9606 100873516 RNA5SP262 - RN5S262 HGNC:43162 8 - RNA, 5S ribosomal pseudogene 262 rRNA RNA5SP262 RNA, 5S ribosomal pseudogene 262 O - 20121021 -9606 100873517 RNA5SP264 - RN5S264 HGNC:43164 8 - RNA, 5S ribosomal pseudogene 264 rRNA RNA5SP264 RNA, 5S ribosomal pseudogene 264 O - 20121021 -9606 100873518 RNA5SP265 - RN5S265 HGNC:43165 8 - RNA, 5S ribosomal pseudogene 265 rRNA RNA5SP265 RNA, 5S ribosomal pseudogene 265 O - 20121021 -9606 100873519 RNA5SP266 - RN5S266 HGNC:43166 8 - RNA, 5S ribosomal pseudogene 266 rRNA RNA5SP266 RNA, 5S ribosomal pseudogene 266 O - 20121021 -9606 100873520 RNA5SP267 - RN5S267 HGNC:43167 8 - RNA, 5S ribosomal pseudogene 267 rRNA RNA5SP267 RNA, 5S ribosomal pseudogene 267 O - 20121021 -9606 100873521 RNA5SP268 - RN5S268 HGNC:43168 8 - RNA, 5S ribosomal pseudogene 268 rRNA RNA5SP268 RNA, 5S ribosomal pseudogene 268 O - 20121021 -9606 100873522 RNA5SP269 - RN5S269 HGNC:43169 8 - RNA, 5S ribosomal pseudogene 269 rRNA RNA5SP269 RNA, 5S ribosomal pseudogene 269 O - 20121021 -9606 100873523 RNA5SP270 - RN5S270 HGNC:43170 8 - RNA, 5S ribosomal pseudogene 270 rRNA RNA5SP270 RNA, 5S ribosomal pseudogene 270 O - 20121021 -9606 100873524 RNA5SP271 - RN5S271 HGNC:43171 8 - RNA, 5S ribosomal pseudogene 271 rRNA RNA5SP271 RNA, 5S ribosomal pseudogene 271 O - 20121021 -9606 100873525 RNA5SP272 - RN5S272 HGNC:43172 8 - RNA, 5S ribosomal pseudogene 272 rRNA RNA5SP272 RNA, 5S ribosomal pseudogene 272 O - 20121021 -9606 100873526 RNA5SP273 - RN5S273 HGNC:43173 8 - RNA, 5S ribosomal pseudogene 273 rRNA RNA5SP273 RNA, 5S ribosomal pseudogene 273 O - 20121021 -9606 100873527 RNA5SP274 - RN5S274 HGNC:43174 8 - RNA, 5S ribosomal pseudogene 274 rRNA RNA5SP274 RNA, 5S ribosomal pseudogene 274 O - 20121021 -9606 100873528 RNA5SP275 - RN5S275 HGNC:43175 8 - RNA, 5S ribosomal pseudogene 275 rRNA RNA5SP275 RNA, 5S ribosomal pseudogene 275 O - 20121021 -9606 100873529 RNA5SP276 - RN5S276 HGNC:43176 8 - RNA, 5S ribosomal pseudogene 276 rRNA RNA5SP276 RNA, 5S ribosomal pseudogene 276 O - 20121021 -9606 100873530 RNA5SP277 - RN5S277 HGNC:43177 8 - RNA, 5S ribosomal pseudogene 277 rRNA RNA5SP277 RNA, 5S ribosomal pseudogene 277 O - 20121021 -9606 100873531 RNA5SP278 - RN5S278 HGNC:43178 8 - RNA, 5S ribosomal pseudogene 278 rRNA RNA5SP278 RNA, 5S ribosomal pseudogene 278 O - 20121021 -9606 100873532 RNA5SP279 - RN5S279 HGNC:43179 9 - RNA, 5S ribosomal pseudogene 279 rRNA RNA5SP279 RNA, 5S ribosomal pseudogene 279 O - 20121021 -9606 100873533 RNA5SP280 - RN5S280 HGNC:43180 9 - RNA, 5S ribosomal pseudogene 280 rRNA RNA5SP280 RNA, 5S ribosomal pseudogene 280 O - 20121021 -9606 100873534 RNA5SP281 - RN5S281 HGNC:43181 9 - RNA, 5S ribosomal pseudogene 281 rRNA RNA5SP281 RNA, 5S ribosomal pseudogene 281 O - 20121021 -9606 100873535 RNA5SP282 - RN5S282 HGNC:43182 9 - RNA, 5S ribosomal pseudogene 282 rRNA RNA5SP282 RNA, 5S ribosomal pseudogene 282 O - 20121021 -9606 100873536 RNA5SP283 - RN5S283 HGNC:43183 9 - RNA, 5S ribosomal pseudogene 283 rRNA RNA5SP283 RNA, 5S ribosomal pseudogene 283 O - 20121021 -9606 100873537 RNA5SP284 - RN5S284 HGNC:43184 9 - RNA, 5S ribosomal pseudogene 284 rRNA RNA5SP284 RNA, 5S ribosomal pseudogene 284 O - 20121021 -9606 100873538 RNA5SP285 - RN5S285 HGNC:43185 9 - RNA, 5S ribosomal pseudogene 285 rRNA RNA5SP285 RNA, 5S ribosomal pseudogene 285 O - 20121021 -9606 100873539 RNA5SP286 - RN5S286 HGNC:43186 9 - RNA, 5S ribosomal pseudogene 286 rRNA RNA5SP286 RNA, 5S ribosomal pseudogene 286 O - 20121021 -9606 100873540 RNA5SP287 - RN5S287 HGNC:43187 9 - RNA, 5S ribosomal pseudogene 287 rRNA RNA5SP287 RNA, 5S ribosomal pseudogene 287 O - 20121021 -9606 100873541 RNA5SP288 - RN5S288 HGNC:43188 9 - RNA, 5S ribosomal pseudogene 288 rRNA RNA5SP288 RNA, 5S ribosomal pseudogene 288 O - 20121021 -9606 100873542 RNA5SP289 - RN5S289 HGNC:43189 9 - RNA, 5S ribosomal pseudogene 289 rRNA RNA5SP289 RNA, 5S ribosomal pseudogene 289 O - 20121021 -9606 100873543 RNA5SP290 - RN5S290 HGNC:43190 9 - RNA, 5S ribosomal pseudogene 290 rRNA RNA5SP290 RNA, 5S ribosomal pseudogene 290 O - 20121021 -9606 100873544 RNA5SP291 - RN5S291 HGNC:43191 9 - RNA, 5S ribosomal pseudogene 291 rRNA RNA5SP291 RNA, 5S ribosomal pseudogene 291 O - 20121021 -9606 100873545 RNA5SP292 - RN5S292 HGNC:43192 9 - RNA, 5S ribosomal pseudogene 292 rRNA RNA5SP292 RNA, 5S ribosomal pseudogene 292 O - 20121021 -9606 100873546 RNA5SP293 - RN5S293 HGNC:43193 9 - RNA, 5S ribosomal pseudogene 293 rRNA RNA5SP293 RNA, 5S ribosomal pseudogene 293 O - 20121021 -9606 100873547 RNA5SP294 - RN5S294 HGNC:43194 9 - RNA, 5S ribosomal pseudogene 294 rRNA RNA5SP294 RNA, 5S ribosomal pseudogene 294 O - 20121021 -9606 100873548 RNA5SP295 - RN5S295 HGNC:43195 9 - RNA, 5S ribosomal pseudogene 295 rRNA RNA5SP295 RNA, 5S ribosomal pseudogene 295 O - 20121021 -9606 100873549 RNA5SP296 - RN5S296 HGNC:43196 9 - RNA, 5S ribosomal pseudogene 296 rRNA RNA5SP296 RNA, 5S ribosomal pseudogene 296 O - 20121021 -9606 100873550 RNA5SP499 - RN5S499 HGNC:43399 X - RNA, 5S ribosomal pseudogene 499 rRNA RNA5SP499 RNA, 5S ribosomal pseudogene 499 O - 20121021 -9606 100873551 RNA5SP500 - RN5S500 HGNC:43400 X - RNA, 5S ribosomal pseudogene 500 rRNA RNA5SP500 RNA, 5S ribosomal pseudogene 500 O - 20121021 -9606 100873552 RNA5SP501 - RN5S501 HGNC:43401 X - RNA, 5S ribosomal pseudogene 501 rRNA RNA5SP501 RNA, 5S ribosomal pseudogene 501 O - 20121021 -9606 100873553 RNA5SP502 - RN5S502 HGNC:43402 X - RNA, 5S ribosomal pseudogene 502 rRNA RNA5SP502 RNA, 5S ribosomal pseudogene 502 O - 20121021 -9606 100873554 RNA5SP503 - RN5S503 HGNC:43403 X - RNA, 5S ribosomal pseudogene 503 rRNA RNA5SP503 RNA, 5S ribosomal pseudogene 503 O - 20121021 -9606 100873555 RNA5SP504 - RN5S504 HGNC:43404 X - RNA, 5S ribosomal pseudogene 504 rRNA RNA5SP504 RNA, 5S ribosomal pseudogene 504 O - 20121021 -9606 100873556 RNA5SP505 - RN5S505 HGNC:43405 X - RNA, 5S ribosomal pseudogene 505 rRNA RNA5SP505 RNA, 5S ribosomal pseudogene 505 O - 20121021 -9606 100873557 RNA5SP506 - RN5S506 HGNC:43406 X - RNA, 5S ribosomal pseudogene 506 rRNA RNA5SP506 RNA, 5S ribosomal pseudogene 506 O - 20121021 -9606 100873558 RNA5SP507 - RN5S507 HGNC:43407 X - RNA, 5S ribosomal pseudogene 507 rRNA RNA5SP507 RNA, 5S ribosomal pseudogene 507 O - 20121021 -9606 100873559 RNA5SP508 - RN5S508 HGNC:43408 X - RNA, 5S ribosomal pseudogene 508 rRNA RNA5SP508 RNA, 5S ribosomal pseudogene 508 O - 20121021 -9606 100873560 RNA5SP509 - RN5S509 HGNC:43409 X - RNA, 5S ribosomal pseudogene 509 rRNA RNA5SP509 RNA, 5S ribosomal pseudogene 509 O - 20121021 -9606 100873561 RNA5SP510 - RN5S510 HGNC:43410 X - RNA, 5S ribosomal pseudogene 510 rRNA RNA5SP510 RNA, 5S ribosomal pseudogene 510 O - 20121021 -9606 100873562 RNA5SP511 - RN5S511 HGNC:43411 X - RNA, 5S ribosomal pseudogene 511 rRNA RNA5SP511 RNA, 5S ribosomal pseudogene 511 O - 20121021 -9606 100873563 RNA5SP512 - RN5S512 HGNC:43412 X - RNA, 5S ribosomal pseudogene 512 rRNA RNA5SP512 RNA, 5S ribosomal pseudogene 512 O - 20121021 -9606 100873564 RNA5SP513 - RN5S513 HGNC:43413 X - RNA, 5S ribosomal pseudogene 513 rRNA RNA5SP513 RNA, 5S ribosomal pseudogene 513 O - 20121021 -9606 100873565 RNA5SP514 - RN5S514 HGNC:43414 X - RNA, 5S ribosomal pseudogene 514 rRNA RNA5SP514 RNA, 5S ribosomal pseudogene 514 O - 20121021 -9606 100873566 RNA5SP515 - RN5S515 HGNC:43415 X - RNA, 5S ribosomal pseudogene 515 rRNA RNA5SP515 RNA, 5S ribosomal pseudogene 515 O - 20121021 -9606 100873567 RNA5SP516 - RN5S516 HGNC:43416 X - RNA, 5S ribosomal pseudogene 516 rRNA RNA5SP516 RNA, 5S ribosomal pseudogene 516 O - 20121021 -9606 100873568 RNA5SP517 - RN5S517 HGNC:43417 X - RNA, 5S ribosomal pseudogene 517 rRNA RNA5SP517 RNA, 5S ribosomal pseudogene 517 O - 20121021 -9606 100873569 RNA5SP518 - RN5S518 HGNC:43418 Y - RNA, 5S ribosomal pseudogene 518 rRNA RNA5SP518 RNA, 5S ribosomal pseudogene 518 O - 20121021 -9606 100873570 RNA5SP519 - RN5S519 HGNC:43419 Y - RNA, 5S ribosomal pseudogene 519 rRNA RNA5SP519 RNA, 5S ribosomal pseudogene 519 O - 20121021 -9606 100873571 RNA5-8SP2 - RN5-8S2 HGNC:41956 16 - RNA, 5.8S ribosomal pseudogene 2 rRNA RNA5-8SP2 RNA, 5.8S ribosomal pseudogene 2 O - 20121021 -9606 100873572 RNA5-8SP4 - RN5-8S4 HGNC:41958 19 - RNA, 5.8S ribosomal pseudogene 4 rRNA RNA5-8SP4 RNA, 5.8S ribosomal pseudogene 4 O - 20121021 -9606 100873573 RNA5-8SP7 - RN5-8S7 HGNC:41962 20 - RNA, 5.8S ribosomal pseudogene 7 rRNA RNA5-8SP7 RNA, 5.8S ribosomal pseudogene 7 O - 20121021 -9606 100873574 RNA5SP299 - RN5S299 HGNC:43199 10 - RNA, 5S ribosomal pseudogene 299 rRNA RNA5SP299 RNA, 5S ribosomal pseudogene 299 O - 20121021 -9606 100873575 RNA5SP300 - RN5S300 HGNC:43200 10 - RNA, 5S ribosomal pseudogene 300 rRNA RNA5SP300 RNA, 5S ribosomal pseudogene 300 O - 20121021 -9606 100873576 RNA5SP301 - RN5S301 HGNC:43201 10 - RNA, 5S ribosomal pseudogene 301 rRNA RNA5SP301 RNA, 5S ribosomal pseudogene 301 O - 20121021 -9606 100873577 RNA5SP303 - RN5S303 HGNC:43203 10 - RNA, 5S ribosomal pseudogene 303 rRNA RNA5SP303 RNA, 5S ribosomal pseudogene 303 O - 20121021 -9606 100873578 RNA5SP304 - RN5S304 HGNC:43204 10 - RNA, 5S ribosomal pseudogene 304 rRNA RNA5SP304 RNA, 5S ribosomal pseudogene 304 O - 20121021 -9606 100873579 RNA5SP305 - RN5S305 HGNC:43205 10 - RNA, 5S ribosomal pseudogene 305 rRNA RNA5SP305 RNA, 5S ribosomal pseudogene 305 O - 20121021 -9606 100873580 RNA5SP306 - RN5S306 HGNC:43206 10 - RNA, 5S ribosomal pseudogene 306 rRNA RNA5SP306 RNA, 5S ribosomal pseudogene 306 O - 20121021 -9606 100873581 RNA5SP307 - RN5S307 HGNC:43207 10 - RNA, 5S ribosomal pseudogene 307 rRNA RNA5SP307 RNA, 5S ribosomal pseudogene 307 O - 20121021 -9606 100873582 RNA5SP308 - RN5S308 HGNC:43208 10 - RNA, 5S ribosomal pseudogene 308 rRNA RNA5SP308 RNA, 5S ribosomal pseudogene 308 O - 20121021 -9606 100873583 RNA5SP309 - RN5S309 HGNC:43209 10 - RNA, 5S ribosomal pseudogene 309 rRNA RNA5SP309 RNA, 5S ribosomal pseudogene 309 O - 20121021 -9606 100873584 RNA5SP318 - RN5S318 HGNC:43218 10 - RNA, 5S ribosomal pseudogene 318 rRNA RNA5SP318 RNA, 5S ribosomal pseudogene 318 O - 20121021 -9606 100873585 RNA5SP319 - RN5S319 HGNC:43219 10 - RNA, 5S ribosomal pseudogene 319 rRNA RNA5SP319 RNA, 5S ribosomal pseudogene 319 O - 20121021 -9606 100873586 RNA5SP320 - RN5S320 HGNC:43220 10 - RNA, 5S ribosomal pseudogene 320 rRNA RNA5SP320 RNA, 5S ribosomal pseudogene 320 O - 20121021 -9606 100873587 RNA5SP321 - RN5S321 HGNC:43221 10 - RNA, 5S ribosomal pseudogene 321 rRNA RNA5SP321 RNA, 5S ribosomal pseudogene 321 O - 20121021 -9606 100873588 RNA5SP322 - RN5S322 HGNC:43222 10 - RNA, 5S ribosomal pseudogene 322 rRNA RNA5SP322 RNA, 5S ribosomal pseudogene 322 O - 20121021 -9606 100873589 RNA5SP323 - RN5S323 HGNC:43223 10 - RNA, 5S ribosomal pseudogene 323 rRNA RNA5SP323 RNA, 5S ribosomal pseudogene 323 O - 20121021 -9606 100873590 RNA5SP324 - RN5S324 HGNC:43224 10 - RNA, 5S ribosomal pseudogene 324 rRNA RNA5SP324 RNA, 5S ribosomal pseudogene 324 O - 20121021 -9606 100873591 RNA5SP325 - RN5S325 HGNC:43225 10 - RNA, 5S ribosomal pseudogene 325 rRNA RNA5SP325 RNA, 5S ribosomal pseudogene 325 O - 20121021 -9606 100873592 RNA5SP326 - RN5S326 HGNC:43226 10 - RNA, 5S ribosomal pseudogene 326 rRNA RNA5SP326 RNA, 5S ribosomal pseudogene 326 O - 20121021 -9606 100873593 RNA5SP327 - RN5S327 HGNC:43227 10 - RNA, 5S ribosomal pseudogene 327 rRNA RNA5SP327 RNA, 5S ribosomal pseudogene 327 O - 20121021 -9606 100873594 RNA5SP328 - RN5S328 HGNC:43228 10 - RNA, 5S ribosomal pseudogene 328 rRNA RNA5SP328 RNA, 5S ribosomal pseudogene 328 O - 20121021 -9606 100873595 RNA5SP329 - RN5S329 HGNC:43229 11 - RNA, 5S ribosomal pseudogene 329 rRNA RNA5SP329 RNA, 5S ribosomal pseudogene 329 O - 20121021 -9606 100873596 RNA5SP330 - RN5S330 HGNC:43230 11 - RNA, 5S ribosomal pseudogene 330 rRNA RNA5SP330 RNA, 5S ribosomal pseudogene 330 O - 20121021 -9606 100873597 RNA5SP331 - RN5S331 HGNC:43231 11 - RNA, 5S ribosomal pseudogene 331 rRNA RNA5SP331 RNA, 5S ribosomal pseudogene 331 O - 20121021 -9606 100873598 RNA5SP332 - RN5S332 HGNC:43232 11 - RNA, 5S ribosomal pseudogene 332 rRNA RNA5SP332 RNA, 5S ribosomal pseudogene 332 O - 20121021 -9606 100873599 RNA5SP336 - RN5S336 HGNC:43236 11 - RNA, 5S ribosomal pseudogene 336 rRNA RNA5SP336 RNA, 5S ribosomal pseudogene 336 O - 20121021 -9606 100873600 RNA5SP337 - RN5S337 HGNC:43237 11 - RNA, 5S ribosomal pseudogene 337 rRNA RNA5SP337 RNA, 5S ribosomal pseudogene 337 O - 20121021 -9606 100873601 RNA5SP338 - RN5S338 HGNC:43238 11 - RNA, 5S ribosomal pseudogene 338 rRNA RNA5SP338 RNA, 5S ribosomal pseudogene 338 O - 20121021 -9606 100873602 RNA5SP339 - RN5S339 HGNC:43239 11 - RNA, 5S ribosomal pseudogene 339 rRNA RNA5SP339 RNA, 5S ribosomal pseudogene 339 O - 20121021 -9606 100873603 RNA5SP340 - RN5S340 HGNC:43240 11 - RNA, 5S ribosomal pseudogene 340 rRNA RNA5SP340 RNA, 5S ribosomal pseudogene 340 O - 20121021 -9606 100873604 RNA5SP341 - RN5S341 HGNC:43241 11 - RNA, 5S ribosomal pseudogene 341 rRNA RNA5SP341 RNA, 5S ribosomal pseudogene 341 O - 20121021 -9606 100873605 RNA5SP343 - RN5S343 HGNC:43243 11 - RNA, 5S ribosomal pseudogene 343 rRNA RNA5SP343 RNA, 5S ribosomal pseudogene 343 O - 20121021 -9606 100873606 RNA5SP344 - RN5S344 HGNC:43244 11 - RNA, 5S ribosomal pseudogene 344 rRNA RNA5SP344 RNA, 5S ribosomal pseudogene 344 O - 20121021 -9606 100873607 RNA5SP345 - RN5S345 HGNC:43245 11 - RNA, 5S ribosomal pseudogene 345 rRNA RNA5SP345 RNA, 5S ribosomal pseudogene 345 O - 20121021 -9606 100873608 RNA5SP346 - RN5S346 HGNC:43246 11 - RNA, 5S ribosomal pseudogene 346 rRNA RNA5SP346 RNA, 5S ribosomal pseudogene 346 O - 20121021 -9606 100873609 RNA5SP347 - RN5S347 HGNC:43247 11 - RNA, 5S ribosomal pseudogene 347 rRNA RNA5SP347 RNA, 5S ribosomal pseudogene 347 O - 20121021 -9606 100873610 RNA5SP348 - RN5S348 HGNC:43248 11 - RNA, 5S ribosomal pseudogene 348 rRNA RNA5SP348 RNA, 5S ribosomal pseudogene 348 O - 20121021 -9606 100873611 RNA5SP349 - RN5S349 HGNC:43249 11 - RNA, 5S ribosomal pseudogene 349 rRNA RNA5SP349 RNA, 5S ribosomal pseudogene 349 O - 20121021 -9606 100873612 RNA5SP352 - RN5S352 HGNC:43252 11 - RNA, 5S ribosomal pseudogene 352 rRNA RNA5SP352 RNA, 5S ribosomal pseudogene 352 O - 20121021 -9606 100873613 RNA5SP353 - RN5S353 HGNC:43253 12 - RNA, 5S ribosomal pseudogene 353 rRNA RNA5SP353 RNA, 5S ribosomal pseudogene 353 O - 20121021 -9606 100873614 RNA5SP354 - RN5S354 HGNC:43254 12 - RNA, 5S ribosomal pseudogene 354 rRNA RNA5SP354 RNA, 5S ribosomal pseudogene 354 O - 20121021 -9606 100873615 RNA5SP356 - RN5S356 HGNC:43256 12 - RNA, 5S ribosomal pseudogene 356 rRNA RNA5SP356 RNA, 5S ribosomal pseudogene 356 O - 20121021 -9606 100873616 RNA5SP357 - RN5S357 HGNC:43257 12 - RNA, 5S ribosomal pseudogene 357 rRNA RNA5SP357 RNA, 5S ribosomal pseudogene 357 O - 20121021 -9606 100873617 RNA5SP358 - RN5S358 HGNC:43258 12 - RNA, 5S ribosomal pseudogene 358 rRNA RNA5SP358 RNA, 5S ribosomal pseudogene 358 O - 20121021 -9606 100873618 RNA5SP359 - RN5S359 HGNC:43259 12 - RNA, 5S ribosomal pseudogene 359 rRNA RNA5SP359 RNA, 5S ribosomal pseudogene 359 O - 20121021 -9606 100873619 RNA5SP360 - RN5S360 HGNC:43260 12 - RNA, 5S ribosomal pseudogene 360 rRNA RNA5SP360 RNA, 5S ribosomal pseudogene 360 O - 20121021 -9606 100873620 RNA5SP361 - RN5S361 HGNC:43261 12 - RNA, 5S ribosomal pseudogene 361 rRNA RNA5SP361 RNA, 5S ribosomal pseudogene 361 O - 20121021 -9606 100873621 RNA5SP362 - RN5S362 HGNC:43262 12 - RNA, 5S ribosomal pseudogene 362 rRNA RNA5SP362 RNA, 5S ribosomal pseudogene 362 O - 20121021 -9606 100873622 RNA5SP363 - RN5S363 HGNC:43263 12 - RNA, 5S ribosomal pseudogene 363 rRNA RNA5SP363 RNA, 5S ribosomal pseudogene 363 O - 20121021 -9606 100873623 RNA5SP364 - RN5S364 HGNC:43264 12 - RNA, 5S ribosomal pseudogene 364 rRNA RNA5SP364 RNA, 5S ribosomal pseudogene 364 O - 20121021 -9606 100873624 RNA5SP365 - RN5S365 HGNC:43265 12 - RNA, 5S ribosomal pseudogene 365 rRNA RNA5SP365 RNA, 5S ribosomal pseudogene 365 O - 20121021 -9606 100873625 RNA5SP366 - RN5S366 HGNC:43266 12 - RNA, 5S ribosomal pseudogene 366 rRNA RNA5SP366 RNA, 5S ribosomal pseudogene 366 O - 20121021 -9606 100873626 RNA5SP367 - RN5S367 HGNC:43267 12 - RNA, 5S ribosomal pseudogene 367 rRNA RNA5SP367 RNA, 5S ribosomal pseudogene 367 O - 20121021 -9606 100873627 RNA5SP368 - RN5S368 HGNC:43268 12 - RNA, 5S ribosomal pseudogene 368 rRNA RNA5SP368 RNA, 5S ribosomal pseudogene 368 O - 20121021 -9606 100873628 RNA5SP369 - RN5S369 HGNC:43269 12 - RNA, 5S ribosomal pseudogene 369 rRNA RNA5SP369 RNA, 5S ribosomal pseudogene 369 O - 20121021 -9606 100873629 RNA5SP371 - RN5S371 HGNC:43271 12 - RNA, 5S ribosomal pseudogene 371 rRNA RNA5SP371 RNA, 5S ribosomal pseudogene 371 O - 20121021 -9606 100873630 RNA5SP372 - RN5S372 HGNC:43272 12 - RNA, 5S ribosomal pseudogene 372 rRNA RNA5SP372 RNA, 5S ribosomal pseudogene 372 O - 20121021 -9606 100873631 RNA5SP373 - RN5S373 HGNC:43273 12 - RNA, 5S ribosomal pseudogene 373 rRNA RNA5SP373 RNA, 5S ribosomal pseudogene 373 O - 20121021 -9606 100873632 RNA5SP374 - RN5S374 HGNC:43274 12 - RNA, 5S ribosomal pseudogene 374 rRNA RNA5SP374 RNA, 5S ribosomal pseudogene 374 O - 20121021 -9606 100873633 RNA5SP375 - RN5S375 HGNC:43275 12 - RNA, 5S ribosomal pseudogene 375 rRNA RNA5SP375 RNA, 5S ribosomal pseudogene 375 O - 20121021 -9606 100873634 RNA5SP378 - RN5S378 HGNC:43278 12 - RNA, 5S ribosomal pseudogene 378 rRNA RNA5SP378 RNA, 5S ribosomal pseudogene 378 O - 20121021 -9606 100873635 RNA5SP379 - RN5S379 HGNC:43279 12 - RNA, 5S ribosomal pseudogene 379 rRNA RNA5SP379 RNA, 5S ribosomal pseudogene 379 O - 20121021 -9606 100873636 RNA5SP380 - RN5S380 HGNC:43280 14 - RNA, 5S ribosomal pseudogene 380 rRNA RNA5SP380 RNA, 5S ribosomal pseudogene 380 O - 20121021 -9606 100873637 RNA5SP382 - RN5S382 HGNC:43282 14 - RNA, 5S ribosomal pseudogene 382 rRNA RNA5SP382 RNA, 5S ribosomal pseudogene 382 O - 20121021 -9606 100873638 RNA5SP383 - RN5S383 HGNC:43283 14 - RNA, 5S ribosomal pseudogene 383 rRNA RNA5SP383 RNA, 5S ribosomal pseudogene 383 O - 20121021 -9606 100873639 RNA5SP384 - RN5S384 HGNC:43284 14 - RNA, 5S ribosomal pseudogene 384 rRNA RNA5SP384 RNA, 5S ribosomal pseudogene 384 O - 20121021 -9606 100873640 RNA5SP385 - RN5S385 HGNC:43285 14 - RNA, 5S ribosomal pseudogene 385 rRNA RNA5SP385 RNA, 5S ribosomal pseudogene 385 O - 20121021 -9606 100873641 RNA5SP386 - RN5S386 HGNC:43286 14 - RNA, 5S ribosomal pseudogene 386 rRNA RNA5SP386 RNA, 5S ribosomal pseudogene 386 O - 20121021 -9606 100873642 RNA5SP388 - RN5S388 HGNC:43288 14 - RNA, 5S ribosomal pseudogene 388 rRNA RNA5SP388 RNA, 5S ribosomal pseudogene 388 O - 20121021 -9606 100873643 RNA5SP390 - RN5S390 HGNC:43290 15 - RNA, 5S ribosomal pseudogene 390 rRNA RNA5SP390 RNA, 5S ribosomal pseudogene 390 O - 20121021 -9606 100873644 RNA5SP391 - RN5S391 HGNC:43291 15 - RNA, 5S ribosomal pseudogene 391 rRNA RNA5SP391 RNA, 5S ribosomal pseudogene 391 O - 20121021 -9606 100873645 RNA5SP392 - RN5S392 HGNC:43292 15 - RNA, 5S ribosomal pseudogene 392 rRNA RNA5SP392 RNA, 5S ribosomal pseudogene 392 O - 20121021 -9606 100873646 RNA5SP393 - RN5S393 HGNC:43293 15 - RNA, 5S ribosomal pseudogene 393 rRNA RNA5SP393 RNA, 5S ribosomal pseudogene 393 O - 20121021 -9606 100873647 RNA5SP394 - RN5S394 HGNC:43294 15 - RNA, 5S ribosomal pseudogene 394 rRNA RNA5SP394 RNA, 5S ribosomal pseudogene 394 O - 20121021 -9606 100873648 RNA5SP395 - RN5S395 HGNC:43295 15 - RNA, 5S ribosomal pseudogene 395 rRNA RNA5SP395 RNA, 5S ribosomal pseudogene 395 O - 20121021 -9606 100873649 RNA5SP396 - RN5S396 HGNC:43296 15 - RNA, 5S ribosomal pseudogene 396 rRNA RNA5SP396 RNA, 5S ribosomal pseudogene 396 O - 20121021 -9606 100873650 RNA5SP397 - RN5S397 HGNC:43297 15 - RNA, 5S ribosomal pseudogene 397 rRNA RNA5SP397 RNA, 5S ribosomal pseudogene 397 O - 20121021 -9606 100873651 RNA5SP398 - RN5S398 HGNC:43298 15 - RNA, 5S ribosomal pseudogene 398 rRNA RNA5SP398 RNA, 5S ribosomal pseudogene 398 O - 20121021 -9606 100873652 RNA5SP399 - RN5S399 HGNC:43299 15 - RNA, 5S ribosomal pseudogene 399 rRNA RNA5SP399 RNA, 5S ribosomal pseudogene 399 O - 20121021 -9606 100873653 RNA5SP400 - RN5S400 HGNC:43300 15 - RNA, 5S ribosomal pseudogene 400 rRNA RNA5SP400 RNA, 5S ribosomal pseudogene 400 O - 20121021 -9606 100873654 RNA5SP401 - RN5S401 HGNC:43301 15 - RNA, 5S ribosomal pseudogene 401 rRNA RNA5SP401 RNA, 5S ribosomal pseudogene 401 O - 20121021 -9606 100873655 RNA5SP402 - RN5S402 HGNC:43302 15 - RNA, 5S ribosomal pseudogene 402 rRNA RNA5SP402 RNA, 5S ribosomal pseudogene 402 O - 20121021 -9606 100873656 RNA5SP404 - RN5S404 HGNC:43304 16 - RNA, 5S ribosomal pseudogene 404 rRNA RNA5SP404 RNA, 5S ribosomal pseudogene 404 O - 20121021 -9606 100873657 RNA5SP405 - RN5S405 HGNC:43305 16 - RNA, 5S ribosomal pseudogene 405 rRNA RNA5SP405 RNA, 5S ribosomal pseudogene 405 O - 20121021 -9606 100873658 RNA5SP406 - RN5S406 HGNC:43306 16 - RNA, 5S ribosomal pseudogene 406 rRNA RNA5SP406 RNA, 5S ribosomal pseudogene 406 O - 20121021 -9606 100873659 RNA5SP407 - RN5S407 HGNC:43307 16 - RNA, 5S ribosomal pseudogene 407 rRNA RNA5SP407 RNA, 5S ribosomal pseudogene 407 O - 20121021 -9606 100873660 RNA5SP408 - RN5S408 HGNC:43308 16 - RNA, 5S ribosomal pseudogene 408 rRNA RNA5SP408 RNA, 5S ribosomal pseudogene 408 O - 20121021 -9606 100873661 RNA5SP409 - RN5S409 HGNC:43309 16 - RNA, 5S ribosomal pseudogene 409 rRNA RNA5SP409 RNA, 5S ribosomal pseudogene 409 O - 20121021 -9606 100873662 RNA5SP410 - RN5S410 HGNC:43310 16 - RNA, 5S ribosomal pseudogene 410 rRNA RNA5SP410 RNA, 5S ribosomal pseudogene 410 O - 20121021 -9606 100873663 RNA5SP412 - RN5S412 HGNC:43312 16 - RNA, 5S ribosomal pseudogene 412 rRNA RNA5SP412 RNA, 5S ribosomal pseudogene 412 O - 20121021 -9606 100873664 RNA5SP413 - RN5S413 HGNC:43313 16 - RNA, 5S ribosomal pseudogene 413 rRNA RNA5SP413 RNA, 5S ribosomal pseudogene 413 O - 20121021 -9606 100873665 RNA5SP414 - RN5S414 HGNC:43314 16 - RNA, 5S ribosomal pseudogene 414 rRNA RNA5SP414 RNA, 5S ribosomal pseudogene 414 O - 20121021 -9606 100873666 RNA5SP415 - RN5S415 HGNC:43315 16 - RNA, 5S ribosomal pseudogene 415 rRNA RNA5SP415 RNA, 5S ribosomal pseudogene 415 O - 20121021 -9606 100873667 RNA5SP416 - RN5S416 HGNC:43316 16 - RNA, 5S ribosomal pseudogene 416 rRNA RNA5SP416 RNA, 5S ribosomal pseudogene 416 O - 20121021 -9606 100873668 RNA5SP417 - RN5S417 HGNC:43317 16 - RNA, 5S ribosomal pseudogene 417 rRNA RNA5SP417 RNA, 5S ribosomal pseudogene 417 O - 20121021 -9606 100873669 RNA5SP418 - RN5S418 HGNC:43318 16 - RNA, 5S ribosomal pseudogene 418 rRNA RNA5SP418 RNA, 5S ribosomal pseudogene 418 O - 20121021 -9606 100873670 RNA5SP419 - RN5S419 HGNC:43319 16 - RNA, 5S ribosomal pseudogene 419 rRNA RNA5SP419 RNA, 5S ribosomal pseudogene 419 O - 20121021 -9606 100873671 RNA5SP420 - RN5S420 HGNC:43320 16 - RNA, 5S ribosomal pseudogene 420 rRNA RNA5SP420 RNA, 5S ribosomal pseudogene 420 O - 20121021 -9606 100873672 RNA5SP421 - RN5S421 HGNC:43321 16 - RNA, 5S ribosomal pseudogene 421 rRNA RNA5SP421 RNA, 5S ribosomal pseudogene 421 O - 20121021 -9606 100873673 RNA5SP422 - RN5S422 HGNC:43322 16 - RNA, 5S ribosomal pseudogene 422 rRNA RNA5SP422 RNA, 5S ribosomal pseudogene 422 O - 20121021 -9606 100873674 RNA5SP423 - RN5S423 HGNC:43323 16 - RNA, 5S ribosomal pseudogene 423 rRNA RNA5SP423 RNA, 5S ribosomal pseudogene 423 O - 20121021 -9606 100873675 RNA5SP424 - RN5S424 HGNC:43324 16 - RNA, 5S ribosomal pseudogene 424 rRNA RNA5SP424 RNA, 5S ribosomal pseudogene 424 O - 20121021 -9606 100873676 RNA5SP425 - RN5S425 HGNC:43325 16 - RNA, 5S ribosomal pseudogene 425 rRNA RNA5SP425 RNA, 5S ribosomal pseudogene 425 O - 20121021 -9606 100873677 RNA5SP426 - RN5S426 HGNC:43326 16 - RNA, 5S ribosomal pseudogene 426 rRNA RNA5SP426 RNA, 5S ribosomal pseudogene 426 O - 20121021 -9606 100873678 RNA5SP427 - RN5S427 HGNC:43327 16 - RNA, 5S ribosomal pseudogene 427 rRNA RNA5SP427 RNA, 5S ribosomal pseudogene 427 O - 20121021 -9606 100873679 RNA5SP428 - RN5S428 HGNC:43328 16 - RNA, 5S ribosomal pseudogene 428 rRNA RNA5SP428 RNA, 5S ribosomal pseudogene 428 O - 20121021 -9606 100873680 RNA5SP430 - RN5S430 HGNC:43330 16 - RNA, 5S ribosomal pseudogene 430 rRNA RNA5SP430 RNA, 5S ribosomal pseudogene 430 O - 20121021 -9606 100873681 RNA5SP431 - RN5S431 HGNC:43331 16 - RNA, 5S ribosomal pseudogene 431 rRNA RNA5SP431 RNA, 5S ribosomal pseudogene 431 O - 20121021 -9606 100873682 RNA5SP432 - RN5S432 HGNC:43332 16 - RNA, 5S ribosomal pseudogene 432 rRNA RNA5SP432 RNA, 5S ribosomal pseudogene 432 O - 20121021 -9606 100873683 RNA5SP433 - RN5S433 HGNC:43333 16 - RNA, 5S ribosomal pseudogene 433 rRNA RNA5SP433 RNA, 5S ribosomal pseudogene 433 O - 20121021 -9606 100873684 RNA5SP434 - RN5S434 HGNC:43334 17 - RNA, 5S ribosomal pseudogene 434 rRNA RNA5SP434 RNA, 5S ribosomal pseudogene 434 O - 20121021 -9606 100873685 RNA5SP436 - RN5S436 HGNC:43336 17 - RNA, 5S ribosomal pseudogene 436 rRNA RNA5SP436 RNA, 5S ribosomal pseudogene 436 O - 20121021 -9606 100873686 RNA5SP437 - RN5S437 HGNC:43337 17 - RNA, 5S ribosomal pseudogene 437 rRNA RNA5SP437 RNA, 5S ribosomal pseudogene 437 O - 20121021 -9606 100873687 RNA5SP438 - RN5S438 HGNC:43338 17 - RNA, 5S ribosomal pseudogene 438 rRNA RNA5SP438 RNA, 5S ribosomal pseudogene 438 O - 20121021 -9606 100873688 RNA5SP440 - RN5S440 HGNC:43340 17 - RNA, 5S ribosomal pseudogene 440 rRNA RNA5SP440 RNA, 5S ribosomal pseudogene 440 O - 20121021 -9606 100873689 RNA5SP441 - RN5S441 HGNC:43341 17 - RNA, 5S ribosomal pseudogene 441 rRNA RNA5SP441 RNA, 5S ribosomal pseudogene 441 O - 20121021 -9606 100873690 RNA5SP444 - RN5S444 HGNC:43344 17 - RNA, 5S ribosomal pseudogene 444 rRNA RNA5SP444 RNA, 5S ribosomal pseudogene 444 O - 20121021 -9606 100873691 RNA5SP445 - RN5S445 HGNC:43345 17 - RNA, 5S ribosomal pseudogene 445 rRNA RNA5SP445 RNA, 5S ribosomal pseudogene 445 O - 20121021 -9606 100873692 RNA5SP446 - RN5S446 HGNC:43346 17 - RNA, 5S ribosomal pseudogene 446 rRNA RNA5SP446 RNA, 5S ribosomal pseudogene 446 O - 20121021 -9606 100873693 RNA5SP447 - RN5S447 HGNC:43347 17 - RNA, 5S ribosomal pseudogene 447 rRNA RNA5SP447 RNA, 5S ribosomal pseudogene 447 O - 20121021 -9606 100873694 RNA5SP449 - RN5S449 HGNC:43349 18 - RNA, 5S ribosomal pseudogene 449 rRNA RNA5SP449 RNA, 5S ribosomal pseudogene 449 O - 20121021 -9606 100873695 RNA5SP450 - RN5S450 HGNC:43350 18 - RNA, 5S ribosomal pseudogene 450 rRNA RNA5SP450 RNA, 5S ribosomal pseudogene 450 O - 20121021 -9606 100873696 RNA5SP451 - RN5S451 HGNC:43351 18 - RNA, 5S ribosomal pseudogene 451 rRNA RNA5SP451 RNA, 5S ribosomal pseudogene 451 O - 20121021 -9606 100873697 RNA5SP452 - RN5S452 HGNC:43352 18 - RNA, 5S ribosomal pseudogene 452 rRNA RNA5SP452 RNA, 5S ribosomal pseudogene 452 O - 20121021 -9606 100873698 RNA5SP453 - RN5S453 HGNC:43353 18 - RNA, 5S ribosomal pseudogene 453 rRNA RNA5SP453 RNA, 5S ribosomal pseudogene 453 O - 20121021 -9606 100873699 RNA5SP454 - RN5S454 HGNC:43354 18 - RNA, 5S ribosomal pseudogene 454 rRNA RNA5SP454 RNA, 5S ribosomal pseudogene 454 O - 20121021 -9606 100873700 RNA5SP455 - RN5S455 HGNC:43355 18 - RNA, 5S ribosomal pseudogene 455 rRNA RNA5SP455 RNA, 5S ribosomal pseudogene 455 O - 20121021 -9606 100873701 RNA5SP456 - RN5S456 HGNC:43356 18 - RNA, 5S ribosomal pseudogene 456 rRNA RNA5SP456 RNA, 5S ribosomal pseudogene 456 O - 20121021 -9606 100873702 RNA5SP457 - RN5S457 HGNC:43357 18 - RNA, 5S ribosomal pseudogene 457 rRNA RNA5SP457 RNA, 5S ribosomal pseudogene 457 O - 20121021 -9606 100873703 RNA5SP459 - RN5S459 HGNC:43359 18 - RNA, 5S ribosomal pseudogene 459 rRNA RNA5SP459 RNA, 5S ribosomal pseudogene 459 O - 20121021 -9606 100873704 RNA5SP460 - RN5S460 HGNC:43360 18 - RNA, 5S ribosomal pseudogene 460 rRNA RNA5SP460 RNA, 5S ribosomal pseudogene 460 O - 20121021 -9606 100873705 RNA5SP461 - RN5S461 HGNC:43361 18 - RNA, 5S ribosomal pseudogene 461 rRNA RNA5SP461 RNA, 5S ribosomal pseudogene 461 O - 20121021 -9606 100873706 RNA5SP462 - RN5S462 HGNC:43362 19 - RNA, 5S ribosomal pseudogene 462 rRNA RNA5SP462 RNA, 5S ribosomal pseudogene 462 O - 20121021 -9606 100873707 RNA5SP463 - RN5S463 HGNC:43363 19 - RNA, 5S ribosomal pseudogene 463 rRNA RNA5SP463 RNA, 5S ribosomal pseudogene 463 O - 20121021 -9606 100873708 RNA5SP464 - RN5S464 HGNC:43364 19 - RNA, 5S ribosomal pseudogene 464 rRNA RNA5SP464 RNA, 5S ribosomal pseudogene 464 O - 20121021 -9606 100873709 RNA5SP465 - RN5S465 HGNC:43365 19 - RNA, 5S ribosomal pseudogene 465 rRNA RNA5SP465 RNA, 5S ribosomal pseudogene 465 O - 20121021 -9606 100873710 RNA5SP466 - RN5S466 HGNC:43366 19 - RNA, 5S ribosomal pseudogene 466 rRNA RNA5SP466 RNA, 5S ribosomal pseudogene 466 O - 20121021 -9606 100873711 RNA5SP467 - RN5S467 HGNC:43367 19 - RNA, 5S ribosomal pseudogene 467 rRNA RNA5SP467 RNA, 5S ribosomal pseudogene 467 O - 20121021 -9606 100873712 RNA5SP469 - RN5S469 HGNC:43369 19 - RNA, 5S ribosomal pseudogene 469 rRNA RNA5SP469 RNA, 5S ribosomal pseudogene 469 O - 20121021 -9606 100873713 RNA5SP470 - RN5S470 HGNC:43370 19 - RNA, 5S ribosomal pseudogene 470 rRNA RNA5SP470 RNA, 5S ribosomal pseudogene 470 O - 20121021 -9606 100873714 RNA5SP471 - RN5S471 HGNC:43371 19 - RNA, 5S ribosomal pseudogene 471 rRNA RNA5SP471 RNA, 5S ribosomal pseudogene 471 O - 20121021 -9606 100873715 RNA5SP472 - RN5S472 HGNC:43372 19 - RNA, 5S ribosomal pseudogene 472 rRNA RNA5SP472 RNA, 5S ribosomal pseudogene 472 O - 20121021 -9606 100873716 RNA5SP474 - RN5S474 HGNC:43374 20 - RNA, 5S ribosomal pseudogene 474 rRNA RNA5SP474 RNA, 5S ribosomal pseudogene 474 O - 20121021 -9606 100873717 RNA5SP475 - RN5S475 HGNC:43375 20 - RNA, 5S ribosomal pseudogene 475 rRNA RNA5SP475 RNA, 5S ribosomal pseudogene 475 O - 20121021 -9606 100873718 RNA5SP476 - RN5S476 HGNC:43376 20 - RNA, 5S ribosomal pseudogene 476 rRNA RNA5SP476 RNA, 5S ribosomal pseudogene 476 O - 20121021 -9606 100873719 RNA5SP477 - RN5S477 HGNC:43377 20 - RNA, 5S ribosomal pseudogene 477 rRNA RNA5SP477 RNA, 5S ribosomal pseudogene 477 O - 20121021 -9606 100873720 RNA5SP478 - RN5S478 HGNC:43378 20 - RNA, 5S ribosomal pseudogene 478 rRNA RNA5SP478 RNA, 5S ribosomal pseudogene 478 O - 20121021 -9606 100873721 RNA5SP479 - RN5S479 HGNC:43379 20 - RNA, 5S ribosomal pseudogene 479 rRNA RNA5SP479 RNA, 5S ribosomal pseudogene 479 O - 20121021 -9606 100873722 RNA5SP480 - RN5S480 HGNC:43380 20 - RNA, 5S ribosomal pseudogene 480 rRNA RNA5SP480 RNA, 5S ribosomal pseudogene 480 O - 20121021 -9606 100873723 RNA5SP481 - RN5S481 HGNC:43381 20 - RNA, 5S ribosomal pseudogene 481 rRNA RNA5SP481 RNA, 5S ribosomal pseudogene 481 O - 20121021 -9606 100873724 RNA5SP482 - RN5S482 HGNC:43382 20 - RNA, 5S ribosomal pseudogene 482 rRNA RNA5SP482 RNA, 5S ribosomal pseudogene 482 O - 20121021 -9606 100873725 RNA5SP483 - RN5S483 HGNC:43383 20 - RNA, 5S ribosomal pseudogene 483 rRNA RNA5SP483 RNA, 5S ribosomal pseudogene 483 O - 20121021 -9606 100873726 RNA5SP484 - RN5S484 HGNC:43384 20 - RNA, 5S ribosomal pseudogene 484 rRNA RNA5SP484 RNA, 5S ribosomal pseudogene 484 O - 20121021 -9606 100873727 RNA5SP485 - RN5S485 HGNC:43385 20 - RNA, 5S ribosomal pseudogene 485 rRNA RNA5SP485 RNA, 5S ribosomal pseudogene 485 O - 20121021 -9606 100873728 RNA5SP486 - RN5S486 HGNC:43386 20 - RNA, 5S ribosomal pseudogene 486 rRNA RNA5SP486 RNA, 5S ribosomal pseudogene 486 O - 20121021 -9606 100873729 RNA5SP487 - RN5S487 HGNC:43387 20 - RNA, 5S ribosomal pseudogene 487 rRNA RNA5SP487 RNA, 5S ribosomal pseudogene 487 O - 20121021 -9606 100873730 RNA5SP488 - RN5S488 HGNC:43388 21 - RNA, 5S ribosomal pseudogene 488 rRNA RNA5SP488 RNA, 5S ribosomal pseudogene 488 O - 20121021 -9606 100873731 RNA5SP489 - RN5S489 HGNC:43389 21 - RNA, 5S ribosomal pseudogene 489 rRNA RNA5SP489 RNA, 5S ribosomal pseudogene 489 O - 20121021 -9606 100873732 RNA5SP490 - RN5S490 HGNC:43390 21 - RNA, 5S ribosomal pseudogene 490 rRNA RNA5SP490 RNA, 5S ribosomal pseudogene 490 O - 20121021 -9606 100873733 RNA5SP491 - RN5S491 HGNC:43391 21 - RNA, 5S ribosomal pseudogene 491 rRNA RNA5SP491 RNA, 5S ribosomal pseudogene 491 O - 20121021 -9606 100873734 RNA5SP492 - RN5S492 HGNC:43392 21 - RNA, 5S ribosomal pseudogene 492 rRNA RNA5SP492 RNA, 5S ribosomal pseudogene 492 O - 20121021 -9606 100873735 RNA5SP493 - RN5S493 HGNC:43393 22 - RNA, 5S ribosomal pseudogene 493 rRNA RNA5SP493 RNA, 5S ribosomal pseudogene 493 O - 20121021 -9606 100873736 RNA5SP494 - RN5S494 HGNC:43394 22 - RNA, 5S ribosomal pseudogene 494 rRNA RNA5SP494 RNA, 5S ribosomal pseudogene 494 O - 20121021 -9606 100873737 RNA5SP495 - RN5S495 HGNC:43395 22 - RNA, 5S ribosomal pseudogene 495 rRNA RNA5SP495 RNA, 5S ribosomal pseudogene 495 O - 20121021 -9606 100873738 RNA5SP496 - RN5S496 HGNC:43396 22 - RNA, 5S ribosomal pseudogene 496 rRNA RNA5SP496 RNA, 5S ribosomal pseudogene 496 O - 20121021 -9606 100873739 RNA5SP497 - RN5S497 HGNC:43397 22 - RNA, 5S ribosomal pseudogene 497 rRNA RNA5SP497 RNA, 5S ribosomal pseudogene 497 O - 20121021 -9606 100873740 RNU6-6 - - HGNC:34250 2 - RNA, U6 small nuclear 6 snRNA RNU6-6 RNA, U6 small nuclear 6 O - 20121230 -9606 100873741 RNU6-8 - - HGNC:34252 3 - RNA, U6 small nuclear 8 snRNA RNU6-8 RNA, U6 small nuclear 8 O - 20121230 -9606 100873742 GOLGA2P4 - - HGNC:38600 22 - golgin A2 pseudogene 4 pseudo GOLGA2P4 golgin A2 pseudogene 4 O - 20121230 -9606 100873743 NCSTNP1 - - HGNC:39606 21 - nicastrin pseudogene 1 pseudo NCSTNP1 nicastrin pseudogene 1 O - 20121230 -9606 100873744 PFN1P8 - - HGNC:42986 1 - profilin 1 pseudogene 8 pseudo PFN1P8 profilin 1 pseudogene 8 O - 20121230 -9606 100873745 RNU6-10 - - HGNC:34254 7 - RNA, U6 small nuclear 10 snRNA RNU6-10 RNA, U6 small nuclear 10 O - 20121230 -9606 100873746 RNU6-14 - - HGNC:34258 9 - RNA, U6 small nuclear 14 snRNA RNU6-14 RNA, U6 small nuclear 14 O - 20121230 -9606 100873747 RNU6-30 - - HGNC:34274 X - RNA, U6 small nuclear 30 snRNA RNU6-30 RNA, U6 small nuclear 30 O - 20121230 -9606 100873748 RNU6-33 - - HGNC:34277 4 - RNA, U6 small nuclear 33 snRNA RNU6-33 RNA, U6 small nuclear 33 O - 20121230 -9606 100873749 RNU6-34 - - HGNC:34278 4 - RNA, U6 small nuclear 34 snRNA RNU6-34 RNA, U6 small nuclear 34 O - 20121230 -9606 100873750 RNU6-35 - - HGNC:34279 4 - RNA, U6 small nuclear 35 snRNA RNU6-35 RNA, U6 small nuclear 35 O - 20121230 -9606 100873751 PHBP14 - - HGNC:39293 4 - prohibitin pseudogene 14 pseudo PHBP14 prohibitin pseudogene 14 O - 20121230 -9606 100873752 PHBP15 - - HGNC:39294 7 - prohibitin pseudogene 15 pseudo PHBP15 prohibitin pseudogene 15 O - 20121230 -9606 100873753 RNU6-16 - - HGNC:34260 11 - RNA, U6 small nuclear 16 snRNA RNU6-16 RNA, U6 small nuclear 16 O - 20121230 -9606 100873754 RNU6-19 - - HGNC:34263 15 - RNA, U6 small nuclear 19 snRNA RNU6-19 RNA, U6 small nuclear 19 O - 20121230 -9606 100873755 RNU6-23 - - HGNC:34267 16 - RNA, U6 small nuclear 23 snRNA RNU6-23 RNA, U6 small nuclear 23 O - 20121230 -9606 100873756 RNU6-28 - - HGNC:34272 22 - RNA, U6 small nuclear 28 snRNA RNU6-28 RNA, U6 small nuclear 28 O - 20121230 -9606 100873757 RNU6-36 - - HGNC:34280 12 - RNA, U6 small nuclear 36 snRNA RNU6-36 RNA, U6 small nuclear 36 O - 20121230 -9606 100873758 RNU6-39 - - HGNC:34283 18 - RNA, U6 small nuclear 39 snRNA RNU6-39 RNA, U6 small nuclear 39 O - 20121230 -9606 100873759 RNU6-45 - - HGNC:34289 11 - RNA, U6 small nuclear 45 snRNA RNU6-45 RNA, U6 small nuclear 45 O - 20121230 -9606 100873760 RNU6-46 - - HGNC:34290 11 - RNA, U6 small nuclear 46 snRNA RNU6-46 RNA, U6 small nuclear 46 O - 20121230 -9606 100873761 RNU6-52 - - HGNC:42542 13 - RNA, U6 small nuclear 52 snRNA RNU6-52 RNA, U6 small nuclear 52 O - 20121230 -9606 100873762 RNU6-53 - - HGNC:42543 13 - RNA, U6 small nuclear 53 snRNA RNU6-53 RNA, U6 small nuclear 53 O - 20121230 -9606 100873763 RNU6-55 - - HGNC:42545 13 - RNA, U6 small nuclear 55 snRNA RNU6-55 RNA, U6 small nuclear 55 O - 20121230 -9606 100873764 RNU6-56 - - HGNC:42546 13 - RNA, U6 small nuclear 56 snRNA RNU6-56 RNA, U6 small nuclear 56 O - 20121230 -9606 100873765 RNU6-57 - - HGNC:42547 13 - RNA, U6 small nuclear 57 snRNA RNU6-57 RNA, U6 small nuclear 57 O - 20121230 -9606 100873766 RNU6-58 - - HGNC:42548 13 - RNA, U6 small nuclear 58 snRNA RNU6-58 RNA, U6 small nuclear 58 O - 20121230 -9606 100873767 RNU6-59 - - HGNC:42549 13 - RNA, U6 small nuclear 59 snRNA RNU6-59 RNA, U6 small nuclear 59 O - 20121230 -9606 100873768 RNU6-63 - - HGNC:42553 13 - RNA, U6 small nuclear 63 snRNA RNU6-63 RNA, U6 small nuclear 63 O - 20121230 -9606 100873769 RNU6-64 - - HGNC:42554 13 - RNA, U6 small nuclear 64 snRNA RNU6-64 RNA, U6 small nuclear 64 O - 20121230 -9606 100873770 RNU6-66 - - HGNC:42556 13 - RNA, U6 small nuclear 66 snRNA RNU6-66 RNA, U6 small nuclear 66 O - 20121230 -9606 100873771 RNU6-67 - - HGNC:42557 13 - RNA, U6 small nuclear 67 snRNA RNU6-67 RNA, U6 small nuclear 67 O - 20121230 -9606 100873772 RNU6-68 - - HGNC:42558 13 - RNA, U6 small nuclear 68 snRNA RNU6-68 RNA, U6 small nuclear 68 O - 20121230 -9606 100873773 RNU6-69 - - HGNC:42559 13 - RNA, U6 small nuclear 69 snRNA RNU6-69 RNA, U6 small nuclear 69 O - 20121230 -9606 100873774 RNU6-71 - - HGNC:42561 13 - RNA, U6 small nuclear 71 snRNA RNU6-71 RNA, U6 small nuclear 71 O - 20121230 -9606 100873775 RNU6-72 - - HGNC:42562 13 - RNA, U6 small nuclear 72 snRNA RNU6-72 RNA, U6 small nuclear 72 O - 20121230 -9606 100873776 RNU6-75 - - HGNC:42565 13 - RNA, U6 small nuclear 75 snRNA RNU6-75 RNA, U6 small nuclear 75 O - 20121230 -9606 100873777 RNU6-76 - - HGNC:42566 13 - RNA, U6 small nuclear 76 snRNA RNU6-76 RNA, U6 small nuclear 76 O - 20121230 -9606 100873778 RNU6-78 - - HGNC:42568 13 - RNA, U6 small nuclear 78 snRNA RNU6-78 RNA, U6 small nuclear 78 O - 20121230 -9606 100873779 RNU6-79 - - HGNC:42569 13 - RNA, U6 small nuclear 79 snRNA RNU6-79 RNA, U6 small nuclear 79 O - 20121230 -9606 100873780 RNU6-81 - - HGNC:42571 13 - RNA, U6 small nuclear 81 snRNA RNU6-81 RNA, U6 small nuclear 81 O - 20121230 -9606 100873781 RNU6-82 - - HGNC:42572 13 - RNA, U6 small nuclear 82 snRNA RNU6-82 RNA, U6 small nuclear 82 O - 20121230 -9606 100873782 RNU6-83 - - HGNC:42573 13 - RNA, U6 small nuclear 83 snRNA RNU6-83 RNA, U6 small nuclear 83 O - 20121230 -9606 100873783 UBBP5 - - HGNC:42645 13 - ubiquitin B pseudogene 5 pseudo UBBP5 ubiquitin B pseudogene 5 O - 20121230 -9606 100873784 PFN1P11 - - HGNC:42994 10 - profilin 1 pseudogene 11 pseudo PFN1P11 profilin 1 pseudogene 11 O - 20121230 -9606 100873785 SNX2P2 - - HGNC:41515 7 - sorting nexin 2 pseudogene 2 pseudo SNX2P2 sorting nexin 2 pseudogene 2 O - 20121230 -9606 100873786 TMSB10P2 - - HGNC:41950 X - thymosin beta 10 pseudogene 2 pseudo TMSB10P2 thymosin beta 10 pseudogene 2 O - 20121230 -9606 100873787 GPM6BP3 - - HGNC:38783 22 - glycoprotein M6B pseudogene 3 pseudo GPM6BP3 glycoprotein M6B pseudogene 3 O - 20121230 -9606 100873788 SNX18P27 - - HGNC:39635 8 - sorting nexin 18 pseudogene 27 pseudo SNX18P27 sorting nexin 18 pseudogene 27 O - 20121230 -9606 100873789 AK3P6 - - HGNC:39065 12 - adenylate kinase 3 pseudogene 6 pseudo AK3P6 adenylate kinase 3 pseudogene 6 O - 20121230 -9606 100873790 FHP1 - - HGNC:39442 13 - fumarate hydratase pseudogene 1 pseudo FHP1 fumarate hydratase pseudogene 1 O - 20121230 -9606 100873791 CHEK2P3 - - HGNC:43579 2 - checkpoint kinase 2 pseudogene 3 pseudo CHEK2P3 checkpoint kinase 2 pseudogene 3 O - 20121230 -9606 100873792 CBX3P4 - - HGNC:42876 12 - chromobox homolog 3 pseudogene 4 pseudo CBX3P4 chromobox homolog 3 pseudogene 4 O - 20121230 -9606 100873793 PHF2P2 - - HGNC:38808 13 - PHD finger protein 2 pseudogene 2 pseudo PHF2P2 PHD finger protein 2 pseudogene 2 O - 20121230 -9606 100873794 ASNSP5 - - HGNC:39401 1 - asparagine synthetase pseudogene 5 pseudo ASNSP5 asparagine synthetase pseudogene 5 O - 20121230 -9606 100873795 WDR95P - - HGNC:42637 13 - WD40 repeat domain 95, pseudogene pseudo WDR95P WD40 repeat domain 95, pseudogene O - 20121230 -9606 100873796 RPL35P9 - - HGNC:39402 13 - ribosomal protein L35 pseudogene 9 pseudo RPL35P9 ribosomal protein L35 pseudogene 9 O - 20121230 -9606 100873797 RPSAP64 - - HGNC:39642 21 - ribosomal protein SA pseudogene 64 pseudo RPSAP64 ribosomal protein SA pseudogene 64 O - 20121230 -9606 100873798 RPS21P8 - - HGNC:39705 13 - ribosomal protein S21 pseudogene 8 pseudo RPS21P8 ribosomal protein S21 pseudogene 8 O - 20121230 -9606 100873799 ZNF90P3 - - HGNC:39882 7 - zinc finger protein 90 pseudogene 3 pseudo ZNF90P3 zinc finger protein 90 pseudogene 3 O - 20121230 -9606 100873800 RNY4P22 - - HGNC:42472 3 - RNA, Ro-associated Y4 pseudogene 22 pseudo RNY4P22 RNA, Ro-associated Y4 pseudogene 22 O - 20121230 -9606 100873801 RNY4P23 - - HGNC:42473 X - RNA, Ro-associated Y4 pseudogene 23 pseudo RNY4P23 RNA, Ro-associated Y4 pseudogene 23 O - 20121021 -9606 100873802 RNY1P1 - - HGNC:42478 13 - RNA, Ro-associated Y1 pseudogene 1 pseudo RNY1P1 RNA, Ro-associated Y1 pseudogene 1 O - 20121021 -9606 100873803 RNY1P3 - - HGNC:42480 13 - RNA, Ro-associated Y1 pseudogene 3 pseudo RNY1P3 RNA, Ro-associated Y1 pseudogene 3 O - 20121230 -9606 100873804 RNY1P4 - - HGNC:42481 13 - RNA, Ro-associated Y1 pseudogene 4 pseudo RNY1P4 RNA, Ro-associated Y1 pseudogene 4 O - 20121021 -9606 100873805 RNY1P6 - - HGNC:42483 13 - RNA, Ro-associated Y1 pseudogene 6 pseudo RNY1P6 RNA, Ro-associated Y1 pseudogene 6 O - 20121230 -9606 100873806 RNY1P7 - - HGNC:42484 13 - RNA, Ro-associated Y1 pseudogene 7 pseudo RNY1P7 RNA, Ro-associated Y1 pseudogene 7 O - 20121021 -9606 100873807 RNY1P8 - - HGNC:42485 13 - RNA, Ro-associated Y1 pseudogene 8 pseudo RNY1P8 RNA, Ro-associated Y1 pseudogene 8 O - 20121230 -9606 100873808 RNY3P4 - - HGNC:42488 13 - RNA, Ro-associated Y3 pseudogene 4 pseudo RNY3P4 RNA, Ro-associated Y3 pseudogene 4 O - 20121021 -9606 100873809 RNY3P5 - - HGNC:42489 13 - RNA, Ro-associated Y3 pseudogene 5 pseudo RNY3P5 RNA, Ro-associated Y3 pseudogene 5 O - 20121021 -9606 100873810 RNY3P6 - - HGNC:42490 13 - RNA, Ro-associated Y3 pseudogene 6 pseudo RNY3P6 RNA, Ro-associated Y3 pseudogene 6 O - 20121230 -9606 100873811 ZNF877P - - HGNC:38697 20 - zinc finger protein 877, pseudogene pseudo ZNF877P zinc finger protein 877, pseudogene O - 20121230 -9606 100873812 CFL1P8 - - HGNC:39960 13 - cofilin 1 (non-muscle) pseudogene 8 pseudo CFL1P8 cofilin 1 (non-muscle) pseudogene 8 O - 20121230 -9606 100873813 HLFP1 - - HGNC:41922 6 - hepatic leukemia factor pseudogene 1 pseudo HLFP1 hepatic leukemia factor pseudogene 1 O - 20121230 -9606 100873814 RNU1-17P - - HGNC:41943 5 - RNA, U1 small nuclear 17, pseudogene pseudo RNU1-17P RNA, U1 small nuclear 17, pseudogene O - 20121230 -9606 100873815 RNU1-18P - - HGNC:41944 6 - RNA, U1 small nuclear 18, pseudogene pseudo RNU1-18P RNA, U1 small nuclear 18, pseudogene O - 20121230 -9606 100873816 RNU1-20P - - HGNC:41946 3 - RNA, U1 small nuclear 20, pseudogene pseudo RNU1-20P RNA, U1 small nuclear 20, pseudogene O - 20121230 -9606 100873817 RPL7AP73 - - HGNC:41968 13 - ribosomal protein L7a pseudogene 73 pseudo RPL7AP73 ribosomal protein L7a pseudogene 73 O - 20121230 -9606 100873818 RPS3AP52 - - HGNC:42004 13 - ribosomal protein S3a pseudogene 52 pseudo RPS3AP52 ribosomal protein S3a pseudogene 52 O - 20121230 -9606 100873819 RNY4P26 - - HGNC:42476 10 - RNA, Ro-associated Y4 pseudogene 26 pseudo RNY4P26 RNA, Ro-associated Y4 pseudogene 26 O - 20121230 -9606 100873820 RNY3P10 - - HGNC:42494 13 - RNA, Ro-associated Y3 pseudogene 10 pseudo RNY3P10 RNA, Ro-associated Y3 pseudogene 10 O - 20121230 -9606 100873821 RNY4P27 - - HGNC:42495 13 - RNA, Ro-associated Y4 pseudogene 27 pseudo RNY4P27 RNA, Ro-associated Y4 pseudogene 27 O - 20121021 -9606 100873822 RNY4P28 - - HGNC:42496 13 - RNA, Ro-associated Y4 pseudogene 28 pseudo RNY4P28 RNA, Ro-associated Y4 pseudogene 28 O - 20121230 -9606 100873823 RNY4P29 - - HGNC:42497 13 - RNA, Ro-associated Y4 pseudogene 29 pseudo RNY4P29 RNA, Ro-associated Y4 pseudogene 29 O - 20121021 -9606 100873824 RNU2-7P - - HGNC:42505 13 - RNA, U2 small nuclear 7, pseudogene pseudo RNU2-7P RNA, U2 small nuclear 7, pseudogene O - 20121021 -9606 100873825 RNU2-6P - - HGNC:42506 13 - RNA, U2 small nuclear 6, pseudogene pseudo RNU2-6P RNA, U2 small nuclear 6, pseudogene O - 20121021 -9606 100873826 RNU5F-2P - - HGNC:42510 1 - RNA, U5F small nuclear 2, pseudogene pseudo RNU5F-2P RNA, U5F small nuclear 2, pseudogene O - 20121230 -9606 100873827 RNU5E-2P - - HGNC:42511 1 - RNA, U5E small nuclear 2, pseudogene pseudo RNU5E-2P RNA, U5E small nuclear 2, pseudogene O - 20121230 -9606 100873828 RNU5E-3P - - HGNC:42512 4 - RNA, U5E small nuclear 3, pseudogene pseudo RNU5E-3P RNA, U5E small nuclear 3, pseudogene O - 20121230 -9606 100873829 RNU5E-4P - - HGNC:42513 1 - RNA, U5E small nuclear 4, pseudogene pseudo RNU5E-4P RNA, U5E small nuclear 4, pseudogene O - 20121230 -9606 100873830 RNU5A-2P - - HGNC:42515 4 - RNA, U5A small nuclear 2, pseudogene pseudo RNU5A-2P RNA, U5A small nuclear 2, pseudogene O - 20121021 -9606 100873831 RNU5A-3P - - HGNC:42519 8 - RNA, U5A small nuclear 3, pseudogene pseudo RNU5A-3P RNA, U5A small nuclear 3, pseudogene O - 20121230 -9606 100873832 RNU5E-6P - - HGNC:42522 1 - RNA, U5E small nuclear 6, pseudogene pseudo RNU5E-6P RNA, U5E small nuclear 6, pseudogene O - 20121230 -9606 100873833 RNU5F-6P - - HGNC:42523 1 - RNA, U5F small nuclear 6, pseudogene pseudo RNU5F-6P RNA, U5F small nuclear 6, pseudogene O - 20121021 -9606 100873834 RNU5F-7P - - HGNC:42524 X - RNA, U5F small nuclear 7, pseudogene pseudo RNU5F-7P RNA, U5F small nuclear 7, pseudogene O - 20121230 -9606 100873835 RNU5A-5P - - HGNC:42525 1 - RNA, U5A small nuclear 5, pseudogene pseudo RNU5A-5P RNA, U5A small nuclear 5, pseudogene O - 20121230 -9606 100873836 RNU5E-7P - - HGNC:42526 2 - RNA, U5E small nuclear 7, pseudogene pseudo RNU5E-7P RNA, U5E small nuclear 7, pseudogene O - 20121230 -9606 100873837 RNU5E-8P - - HGNC:42528 3 - RNA, U5E small nuclear 8, pseudogene pseudo RNU5E-8P RNA, U5E small nuclear 8, pseudogene O - 20121021 -9606 100873838 RNU5A-8P - - HGNC:42530 1 - RNA, U5A small nuclear 8, pseudogene pseudo RNU5A-8P RNA, U5A small nuclear 8, pseudogene O - 20121230 -9606 100873839 RNU5F-8P - - HGNC:42531 1 - RNA, U5F small nuclear 8, pseudogene pseudo RNU5F-8P RNA, U5F small nuclear 8, pseudogene O - 20121021 -9606 100873840 RNU5E-9P - - HGNC:42532 2 - RNA, U5E small nuclear 9, pseudogene pseudo RNU5E-9P RNA, U5E small nuclear 9, pseudogene O - 20121230 -9606 100873841 RNU5D-2P - - HGNC:42534 9 - RNA, U5D small nuclear 2, pseudogene pseudo RNU5D-2P RNA, U5D small nuclear 2, pseudogene O - 20121230 -9606 100873842 RNU7-87P - - HGNC:42616 13 - RNA, U7 small nuclear 87 pseudogene pseudo RNU7-87P RNA, U7 small nuclear 87 pseudogene O - 20121230 -9606 100873843 RNU7-88P - - HGNC:42617 13 - RNA, U7 small nuclear 88 pseudogene pseudo RNU7-88P RNA, U7 small nuclear 88 pseudogene O - 20121230 -9606 100873844 RNU7-89P - - HGNC:42618 13 - RNA, U7 small nuclear 89 pseudogene pseudo RNU7-89P RNA, U7 small nuclear 89 pseudogene O - 20121230 -9606 100873845 RN7SKP1 - - HGNC:42619 13 - RNA, 7SK small nuclear pseudogene 1 pseudo RN7SKP1 RNA, 7SK small nuclear pseudogene 1 O - 20121021 -9606 100873846 RN7SKP2 - - HGNC:42620 13 - RNA, 7SK small nuclear pseudogene 2 pseudo RN7SKP2 RNA, 7SK small nuclear pseudogene 2 O - 20121230 -9606 100873847 RN7SKP3 - - HGNC:42621 13 - RNA, 7SK small nuclear pseudogene 3 pseudo RN7SKP3 RNA, 7SK small nuclear pseudogene 3 O - 20121230 -9606 100873848 RN7SKP4 - - HGNC:42622 13 - RNA, 7SK small nuclear pseudogene 4 pseudo RN7SKP4 RNA, 7SK small nuclear pseudogene 4 O - 20121021 -9606 100873849 RN7SKP5 - - HGNC:42623 13 - RNA, 7SK small nuclear pseudogene 5 pseudo RN7SKP5 RNA, 7SK small nuclear pseudogene 5 O - 20121230 -9606 100873850 RN7SKP6 - - HGNC:42624 13 - RNA, 7SK small nuclear pseudogene 6 pseudo RN7SKP6 RNA, 7SK small nuclear pseudogene 6 O - 20121230 -9606 100873851 RN7SKP7 - - HGNC:42625 13 - RNA, 7SK small nuclear pseudogene 7 pseudo RN7SKP7 RNA, 7SK small nuclear pseudogene 7 O - 20121021 -9606 100873852 RN7SKP8 - - HGNC:42626 13 - RNA, 7SK small nuclear pseudogene 8 pseudo RN7SKP8 RNA, 7SK small nuclear pseudogene 8 O - 20121021 -9606 100873853 RN7SKP9 - - HGNC:42627 13 - RNA, 7SK small nuclear pseudogene 9 pseudo RN7SKP9 RNA, 7SK small nuclear pseudogene 9 O - 20121230 -9606 100873854 MOB1AP2 - MOBKL1BP2 HGNC:42639 X - MOB kinase activator 1A pseudogene 2 pseudo MOB1AP2 MOB kinase activator 1A pseudogene 2 O - 20121230 -9606 100873855 RPL36P19 - - HGNC:42648 13 - ribosomal protein L36 pseudogene 19 pseudo RPL36P19 ribosomal protein L36 pseudogene 19 O - 20121230 -9606 100873856 SNORD116-30 - HBII-85-30 HGNC:42797 15 - small nucleolar RNA, C/D box 116-30 snoRNA SNORD116-30 small nucleolar RNA, C/D box 116-30 O - 20121021 -9606 100873857 SNORD115-46 - HBII-52-46 HGNC:42798 15 - small nucleolar RNA, C/D box 115-46 snoRNA SNORD115-46 small nucleolar RNA, C/D box 115-46 O - 20121021 -9606 100873858 SDAD1P3 - - HGNC:39260 3 - SDA1 domain containing 1 pseudogene 3 pseudo SDAD1P3 SDA1 domain containing 1 pseudogene 3 O - 20121230 -9606 100873859 RPL18AP17 - - HGNC:39850 13 - ribosomal protein L18a pseudogene 17 pseudo RPL18AP17 ribosomal protein L18a pseudogene 17 O - 20121230 -9606 100873860 RNU1-16P - U1.64 HGNC:39890 13 - RNA, U1 small nuclear 16, pseudogene pseudo RNU1-16P RNA, U1 small nuclear 16, pseudogene O - 20121021 -9606 100873861 RNU1-19P - - HGNC:41945 10 - RNA, U1 small nuclear 19, pseudogene pseudo RNU1-19P RNA, U1 small nuclear 19, pseudogene O - 20121230 -9606 100873862 RNU1-21P - - HGNC:41947 11 - RNA, U1 small nuclear 21, pseudogene pseudo RNU1-21P RNA, U1 small nuclear 21, pseudogene O - 20121021 -9606 100873863 RNU1-22P - - HGNC:41963 16 - RNA, U1 small nuclear 22, pseudogene pseudo RNU1-22P RNA, U1 small nuclear 22, pseudogene O - 20121230 -9606 100873864 LAP3P1 - - HGNC:42364 6 - leucine aminopeptidase 3 pseudogene 1 pseudo LAP3P1 leucine aminopeptidase 3 pseudogene 1 O - 20121230 -9606 100873865 RNU1-24P - U1.41 HGNC:42504 13 - RNA, U1 small nuclear 24, pseudogene pseudo RNU1-24P RNA, U1 small nuclear 24, pseudogene O - 20121230 -9606 100873866 RNU5F-3P - - HGNC:42514 18 - RNA, U5F small nuclear 3, pseudogene pseudo RNU5F-3P RNA, U5F small nuclear 3, pseudogene O - 20121230 -9606 100873867 RNU5F-4P - - HGNC:42516 12 - RNA, U5F small nuclear 4, pseudogene pseudo RNU5F-4P RNA, U5F small nuclear 4, pseudogene O - 20121230 -9606 100873868 RNU5F-5P - - HGNC:42518 22 - RNA, U5F small nuclear 5, pseudogene pseudo RNU5F-5P RNA, U5F small nuclear 5, pseudogene O - 20121230 -9606 100873869 RNU5E-5P - - HGNC:42520 12 - RNA, U5E small nuclear 5, pseudogene pseudo RNU5E-5P RNA, U5E small nuclear 5, pseudogene O - 20121021 -9606 100873870 RNU5A-4P - - HGNC:42521 13 - RNA, U5A small nuclear 4, pseudogene pseudo RNU5A-4P RNA, U5A small nuclear 4, pseudogene O - 20121230 -9606 100873871 RNU5A-6P - - HGNC:42527 18 - RNA, U5A small nuclear 6, pseudogene pseudo RNU5A-6P RNA, U5A small nuclear 6, pseudogene O - 20121230 -9606 100873872 RNU5A-7P - - HGNC:42529 12 - RNA, U5A small nuclear 7, pseudogene pseudo RNU5A-7P RNA, U5A small nuclear 7, pseudogene O - 20121021 -9606 100873873 RN7SKP10 - - HGNC:42628 13 - RNA, 7SK small nuclear pseudogene 10 pseudo RN7SKP10 RNA, 7SK small nuclear pseudogene 10 O - 20121230 -9606 100873874 MOB1AP1 - MOBKL1BP1 HGNC:42638 13 - MOB kinase activator 1A pseudogene 1 pseudo MOB1AP1 MOB kinase activator 1A pseudogene 1 O - 20121230 -9606 100873875 PSPC1P2 - - HGNC:42643 13 - paraspeckle component 1 pseudogene 2 pseudo PSPC1P2 paraspeckle component 1 pseudogene 2 O - 20121230 -9606 100873876 TRNAV38 - - HGNC:38576 1 - transfer RNA valine 38 (anticodon CAC) tRNA TRNAV38 transfer RNA valine 38 (anticodon CAC) O - 20120328 -9606 100873877 TMSB4XP3 - - HGNC:38587 7 - thymosin beta 4, X-linked pseudogene 3 pseudo TMSB4XP3 thymosin beta 4, X-linked pseudogene 3 O - 20121230 -9606 100873878 MORF4L1P6 - - HGNC:39258 X - mortality factor 4 like 1 pseudogene 6 pseudo MORF4L1P6 mortality factor 4 like 1 pseudogene 6 O - 20121230 -9606 100873879 HMGB3P9 - - HGNC:39301 1 - high mobility group box 3 pseudogene 9 pseudo HMGB3P9 high mobility group box 3 pseudogene 9 O - 20121230 -9606 100873880 TMEM97P1 - - HGNC:39640 21 - transmembrane protein 97 pseudogene 1 pseudo TMEM97P1 transmembrane protein 97 pseudogene 1 O - 20121230 -9606 100873881 GRAMD4P2 - - HGNC:39654 22 - GRAM domain containing 4 pseudogene 2 pseudo GRAMD4P2 GRAM domain containing 4 pseudogene 2 O - 20121230 -9606 100873882 ANKRD26P4 - - HGNC:39690 13 - ankyrin repeat domain 26 pseudogene 4 pseudo ANKRD26P4 ankyrin repeat domain 26 pseudogene 4 O - 20121230 -9606 100873883 FGFR1OP2P1 - - HGNC:39706 13 - FGFR1 oncogene partner 2 pseudogene 1 pseudo FGFR1OP2P1 FGFR1 oncogene partner 2 pseudogene 1 O - 20121230 -9606 100873884 SNX3P1X - - HGNC:41516 X - sorting nexin 3 pseudogene 1, X-linked pseudo SNX3P1X sorting nexin 3 pseudogene 1, X-linked O - 20121230 -9606 100873885 SNX3P1Y - - HGNC:41517 Y - sorting nexin 3 pseudogene 1, Y-linked pseudo SNX3P1Y sorting nexin 3 pseudogene 1, Y-linked O - 20121230 -9606 100873886 SCAND3P1 - - HGNC:42037 13 - SCAN domain containing 3 pseudogene 1 pseudo SCAND3P1 SCAN domain containing 3 pseudogene 1 O - 20121021 -9606 100873887 PGAM1P3 - - HGNC:42450 3 - phosphoglycerate mutase 1 pseudogene 3 pseudo PGAM1P3 phosphoglycerate mutase 1 pseudogene 3 O - 20121230 -9606 100873888 RNU5E-10P - - HGNC:42533 11 - RNA, U5E small nuclear 10, pseudogene pseudo RNU5E-10P RNA, U5E small nuclear 10, pseudogene O - 20121230 -9606 100873889 RNU4ATAC2P - - HGNC:39003 5 - RNA, U4atac small nuclear 2, pseudogene pseudo RNU4ATAC2P RNA, U4atac small nuclear 2, pseudogene O - 20121230 -9606 100873890 HMGB3P4 - - HGNC:39104 13 - high mobility group box 3 pseudogene 4 pseudo HMGB3P4 high mobility group box 3 pseudogene 4 O - 20121230 -9606 100873891 HMGB1P23 - - HGNC:39114 8 - high mobility group box 1 pseudogene 23 pseudo HMGB1P23 high mobility group box 1 pseudogene 23 O - 20121230 -9606 100873892 HMGB1P29 - - HGNC:39120 5 - high mobility group box 1 pseudogene 29 pseudo HMGB1P29 high mobility group box 1 pseudogene 29 O - 20121230 -9606 100873893 HMGB1P30 - - HGNC:39121 3 - high mobility group box 1 pseudogene 30 pseudo HMGB1P30 high mobility group box 1 pseudogene 30 O - 20121230 -9606 100873894 HMGB1P31 - - HGNC:39122 2 - high mobility group box 1 pseudogene 31 pseudo HMGB1P31 high mobility group box 1 pseudogene 31 O - 20121230 -9606 100873895 HMGB1P38 - - HGNC:39185 3 - high mobility group box 1 pseudogene 38 pseudo HMGB1P38 high mobility group box 1 pseudogene 38 O - 20121230 -9606 100873896 HMGB1P41 - - HGNC:39188 8 - high mobility group box 1 pseudogene 41 pseudo HMGB1P41 high mobility group box 1 pseudogene 41 O - 20121230 -9606 100873897 HMGB1P47 - - HGNC:39280 5 - high mobility group box 1 pseudogene 47 pseudo HMGB1P47 high mobility group box 1 pseudogene 47 O - 20121230 -9606 100873898 HMGB3P12 - - HGNC:39304 3 - high mobility group box 3 pseudogene 12 pseudo HMGB3P12 high mobility group box 3 pseudogene 12 O - 20121230 -9606 100873899 HMGB3P14 - - HGNC:39306 3 - high mobility group box 3 pseudogene 14 pseudo HMGB3P14 high mobility group box 3 pseudogene 14 O - 20121230 -9606 100873900 HMGB3P16 - - HGNC:39308 5 - high mobility group box 3 pseudogene 16 pseudo HMGB3P16 high mobility group box 3 pseudogene 16 O - 20121230 -9606 100873901 HMGB3P21 - - HGNC:39313 7 - high mobility group box 3 pseudogene 21 pseudo HMGB3P21 high mobility group box 3 pseudogene 21 O - 20121230 -9606 100873902 GK-AS1 - - HGNC:40255 X - GK antisense RNA 1 miscRNA GK-AS1 GK antisense RNA 1 O - 20121021 -9606 100873903 HSPA9P2 - - HGNC:31733 18 - heat shock 70kDa protein 9 pseudogene 2 pseudo HSPA9P2 heat shock 70kDa protein 9 pseudogene 2 O - 20121230 -9606 100873904 MYB-AS1 - MYB-AS|MYBAS|NCRNA00209|RP1-32B1.3 HGNC:37457 6 - MYB antisense RNA 1 miscRNA MYB-AS1 MYB antisense RNA 1 O - 20121021 -9606 100873905 HMGB1P33 - - HGNC:39124 15 - high mobility group box 1 pseudogene 33 pseudo HMGB1P33 high mobility group box 1 pseudogene 33 O - 20121230 -9606 100873906 HMGB1P42 - - HGNC:39189 11 - high mobility group box 1 pseudogene 42 pseudo HMGB1P42 high mobility group box 1 pseudogene 42 O - 20121230 -9606 100873907 ORAOV1P1 - - HGNC:39203 4 - oral cancer overexpressed 1 pseudogene 1 pseudo ORAOV1P1 oral cancer overexpressed 1 pseudogene 1 O - 20121230 -9606 100873908 HMGB3P25 - - HGNC:39317 11 - high mobility group box 3 pseudogene 25 pseudo HMGB3P25 high mobility group box 3 pseudogene 25 O - 20121230 -9606 100873909 DUTP2 - - HGNC:39515 8 - deoxyuridine triphosphatase pseudogene 2 pseudo DUTP2 deoxyuridine triphosphatase pseudogene 2 O - 20121230 -9606 100873910 DUTP4 - - HGNC:39517 X - deoxyuridine triphosphatase pseudogene 4 pseudo DUTP4 deoxyuridine triphosphatase pseudogene 4 O - 20121230 -9606 100873911 DUTP5 - - HGNC:39518 6 - deoxyuridine triphosphatase pseudogene 5 pseudo DUTP5 deoxyuridine triphosphatase pseudogene 5 O - 20121230 -9606 100873912 DUTP6 - - HGNC:39519 1 - deoxyuridine triphosphatase pseudogene 6 pseudo DUTP6 deoxyuridine triphosphatase pseudogene 6 O - 20121230 -9606 100873913 DUTP7 - - HGNC:39520 4 - deoxyuridine triphosphatase pseudogene 7 pseudo DUTP7 deoxyuridine triphosphatase pseudogene 7 O - 20121230 -9606 100873914 DUTP8 - - HGNC:39521 4 - deoxyuridine triphosphatase pseudogene 8 pseudo DUTP8 deoxyuridine triphosphatase pseudogene 8 O - 20121230 -9606 100873915 DMD-AS2 - - HGNC:40184 X - DMD antisense RNA 2 miscRNA DMD-AS2 DMD antisense RNA 2 O - 20121021 -9606 100873916 DMD-AS3 - - HGNC:40185 X - DMD antisense RNA 3 miscRNA DMD-AS3 DMD antisense RNA 3 O - 20121021 -9606 100873917 LPP-AS1 - - HGNC:40346 3 - LPP antisense RNA 1 miscRNA LPP-AS1 LPP antisense RNA 1 O - 20121021 -9606 100873918 MME-AS1 - - HGNC:40376 3 - MME antisense RNA 1 miscRNA MME-AS1 MME antisense RNA 1 O - 20121021 -9606 100873919 NDP-AS1 - - HGNC:40395 X - NDP antisense RNA 1 miscRNA NDP-AS1 NDP antisense RNA 1 O - 20121021 -9606 100873920 NHS-AS1 - - HGNC:40403 X - NHS antisense RNA 1 miscRNA NHS-AS1 NHS antisense RNA 1 O - 20121021 -9606 100873921 SYP-AS1 - - HGNC:40571 X - SYP antisense RNA 1 miscRNA SYP-AS1 SYP antisense RNA 1 O - 20121021 -9606 100873922 ZFX-AS1 - - HGNC:40617 X - ZFX antisense RNA 1 miscRNA ZFX-AS1 ZFX antisense RNA 1 O - 20121230 -9606 100873923 HYI-AS1 - - HGNC:41173 1 - HYI antisense RNA 1 miscRNA HYI-AS1 HYI antisense RNA 1 O - 20121021 -9606 100873924 HLA-AS1 - - HGNC:42509 1 - HLA antisense RNA 1 miscRNA HLA-AS1 HLA antisense RNA 1 O - 20121021 -9606 100873925 DMD-AS1 - - HGNC:42629 X - DMD antisense RNA 1 miscRNA DMD-AS1 DMD antisense RNA 1 O - 20121021 -9606 100873926 TAB3-AS2 - - HGNC:40013 X - TAB3 antisense RNA 2 miscRNA TAB3-AS2 TAB3 antisense RNA 2 O - 20121021 -9606 100873927 CA5B-AS1 - - HGNC:40115 X - CA5B antisense RNA 1 miscRNA CA5B-AS1 CA5B antisense RNA 1 O - 20121021 -9606 100873928 CASK-AS1 - - HGNC:40126 X - CASK antisense RNA 1 miscRNA CASK-AS1 CASK antisense RNA 1 O - 20121021 -9606 100873929 VCAN-AS1 - - HGNC:40163 5 - VCAN antisense RNA 1 miscRNA VCAN-AS1 VCAN antisense RNA 1 O - 20121021 -9606 100873930 DLG3-AS1 - - HGNC:40182 X - DLG3 antisense RNA 1 miscRNA DLG3-AS1 DLG3 antisense RNA 1 O - 20121021 -9606 100873931 DLX6-AS2 - - HGNC:40183 7 - DLX6 antisense RNA 2 miscRNA DLX6-AS2 DLX6 antisense RNA 2 O - 20121021 -9606 100873932 DPYD-AS1 - - HGNC:40195 1 - DPYD antisense RNA 1 miscRNA DPYD-AS1 DPYD antisense RNA 1 O - 20121230 -9606 100873933 DPYD-AS2 - - HGNC:40196 1 - DPYD antisense RNA 2 miscRNA DPYD-AS2 DPYD antisense RNA 2 O - 20121021 -9606 100873934 ETV5-AS1 - - HGNC:40222 3 - ETV5 antisense RNA 1 miscRNA ETV5-AS1 ETV5 antisense RNA 1 O - 20121021 -9606 100873935 MTOR-AS1 - - HGNC:40242 1 - MTOR antisense RNA 1 miscRNA MTOR-AS1 MTOR antisense RNA 1 O - 20121230 -9606 100873936 GRM7-AS2 - - HGNC:40266 3 - GRM7 antisense RNA 2 miscRNA GRM7-AS2 GRM7 antisense RNA 2 O - 20121021 -9606 100873937 GRM7-AS1 - - HGNC:40267 3 - GRM7 antisense RNA 1 miscRNA GRM7-AS1 GRM7 antisense RNA 1 O - 20121021 -9606 100873938 GYG2-AS1 - - HGNC:40270 X - GYG2 antisense RNA 1 miscRNA GYG2-AS1 GYG2 antisense RNA 1 O - 20121021 -9606 100873939 LNX1-AS1 - - HGNC:40345 4 - LNX1 antisense RNA 1 miscRNA LNX1-AS1 LNX1 antisense RNA 1 O - 20121230 -9606 100873940 MYLK-AS2 - - HGNC:40387 3 - MYLK antisense RNA 2 miscRNA MYLK-AS2 MYLK antisense RNA 2 O - 20121021 -9606 100873941 OPA1-AS1 - - HGNC:40421 3 - OPA1 antisense RNA 1 miscRNA OPA1-AS1 OPA1 antisense RNA 1 O - 20121230 -9606 100873942 PHEX-AS1 - - HGNC:40445 X - PHEX antisense RNA 1 miscRNA PHEX-AS1 PHEX antisense RNA 1 O - 20121230 -9606 100873943 PLS1-AS1 - - HGNC:40451 3 - PLS1 antisense RNA 1 miscRNA PLS1-AS1 PLS1 antisense RNA 1 O - 20121021 -9606 100873944 PRKX-AS1 - - HGNC:40479 X - PRKX antisense RNA 1 miscRNA PRKX-AS1 PRKX antisense RNA 1 O - 20121021 -9606 100873945 HLTF-AS1 - - HGNC:40554 3 - HLTF antisense RNA 1 miscRNA HLTF-AS1 HLTF antisense RNA 1 O - 20121230 -9606 100873946 VAV3-AS1 - - HGNC:40608 1 - VAV3 antisense RNA 1 miscRNA VAV3-AS1 VAV3 antisense RNA 1 O - 20121230 -9606 100873947 LMLN-AS1 - - HGNC:40738 3 - LMLN antisense RNA 1 miscRNA LMLN-AS1 LMLN antisense RNA 1 O - 20121021 -9606 100873948 NREP-AS1 - - HGNC:40780 5 - NREP antisense RNA 1 miscRNA NREP-AS1 NREP antisense RNA 1 O - 20121230 -9606 100873949 IPO9-AS1 - - HGNC:40892 1 - IPO9 antisense RNA 1 miscRNA IPO9-AS1 IPO9 antisense RNA 1 O - 20121021 -9606 100873950 ZIC4-AS1 - - HGNC:40920 3 - ZIC4 antisense RNA 1 miscRNA ZIC4-AS1 ZIC4 antisense RNA 1 O - 20121021 -9606 100873951 MLIP-AS1 - - HGNC:40963 6 - MLIP antisense RNA 1 miscRNA MLIP-AS1 MLIP antisense RNA 1 O - 20121021 -9606 100873952 SZT2-AS1 - - HGNC:41225 1 - SZT2 antisense RNA 1 miscRNA SZT2-AS1 SZT2 antisense RNA 1 O - 20121021 -9606 100873953 WWC3-AS1 - - HGNC:41236 X - WWC3 antisense RNA 1 miscRNA WWC3-AS1 WWC3 antisense RNA 1 O - 20121021 -9606 100873954 SNRK-AS1 - - HGNC:41269 3 - SNRK antisense RNA 1 miscRNA SNRK-AS1 SNRK antisense RNA 1 O - 20121230 -9606 100873955 LNX1-AS2 - - HGNC:41450 4 - LNX1 antisense RNA 2 miscRNA LNX1-AS2 LNX1 antisense RNA 2 O - 20121230 -9606 100873956 EAF1-AS1 - - HGNC:42328 3 - EAF1 antisense RNA 1 miscRNA EAF1-AS1 EAF1 antisense RNA 1 O - 20121021 -9606 100873957 FABP5P14 - FABP5L14 HGNC:31065 2 - fatty acid binding protein 5 pseudogene 14 pseudo FABP5P14 fatty acid binding protein 5 pseudogene 14 O - 20121230 -9606 100873958 FABP5P15 - FABP5L15 HGNC:31071 X - fatty acid binding protein 5 pseudogene 15 pseudo FABP5P15 fatty acid binding protein 5 pseudogene 15 O - 20121230 -9606 100873959 LINC00211 - NCRNA00211 HGNC:37459 2 - long intergenic non-protein coding RNA 211 miscRNA LINC00211 long intergenic non-protein coding RNA 211 O - 20121021 -9606 100873960 FTLP19 - - HGNC:37969 10 - ferritin, light polypeptide pseudogene 19 pseudo FTLP19 ferritin, light polypeptide pseudogene 19 O - 20121230 -9606 100873961 TRNAN38 - - HGNC:38584 1 - transfer RNA asparagine 38 (anticodon GUU) tRNA TRNAN38 transfer RNA asparagine 38 (anticodon GUU) O - 20120328 -9606 100873962 LINC00278 - NCRNA00278 HGNC:38712 Y - long intergenic non-protein coding RNA 278 miscRNA LINC00278 long intergenic non-protein coding RNA 278 O - 20121230 -9606 100873963 LINC00279 - NCRNA00279 HGNC:38724 Y - long intergenic non-protein coding RNA 279 miscRNA LINC00279 long intergenic non-protein coding RNA 279 O - 20121021 -9606 100873964 LINC00280 - NCRNA00280 HGNC:38803 Y - long intergenic non-protein coding RNA 280 miscRNA LINC00280 long intergenic non-protein coding RNA 280 O - 20121021 -9606 100873965 MED4-AS1 - MED4-AS HGNC:39213 13 - MED4 antisense RNA 1 miscRNA MED4-AS1 MED4 antisense RNA 1 O - 20121230 -9606 100873966 SPATA2P1 - - HGNC:39446 13 - spermatogenesis associated 2 pseudogene 1 pseudo SPATA2P1 spermatogenesis associated 2 pseudogene 1 O - 20121230 -9606 100873967 LSP1P2 - - HGNC:39717 3 - lymphocyte-specific protein 1 pseudogene 2 pseudo LSP1P2 lymphocyte-specific protein 1 pseudogene 2 O - 20121230 -9606 100873968 LMO7-AS1 - - HGNC:39885 13 - LMO7 antisense RNA 1 miscRNA LMO7-AS1 LMO7 antisense RNA 1 O - 20121021 -9606 100873969 GPC5-AS1 - - HGNC:39886 13 - GPC5 antisense RNA 1 miscRNA GPC5-AS1 GPC5 antisense RNA 1 O - 20121230 -9606 100873970 GPC5-AS2 - - HGNC:39887 13 - GPC5 antisense RNA 2 miscRNA GPC5-AS2 GPC5 antisense RNA 2 O - 20121021 -9606 100873971 NBEA-AS1 - - HGNC:39908 13 - NBEA antisense RNA 1 miscRNA NBEA-AS1 NBEA antisense RNA 1 O - 20121021 -9606 100873972 GPC6-AS1 - - HGNC:39909 13 - GPC6 antisense RNA 1 miscRNA GPC6-AS1 GPC6 antisense RNA 1 O - 20121021 -9606 100873973 GPC6-AS2 - - HGNC:39910 13 - GPC6 antisense RNA 2 miscRNA GPC6-AS2 GPC6 antisense RNA 2 O - 20121230 -9606 100873974 KCNC4-AS1 - - HGNC:39958 1 - KCNC4 antisense RNA 1 (head to head) miscRNA KCNC4-AS1 KCNC4 antisense RNA 1 (head to head) O - 20121021 -9606 100873975 CNTN4-AS1 - - HGNC:39985 3 - CNTN4 antisense RNA 1 miscRNA CNTN4-AS1 CNTN4 antisense RNA 1 O - 20121021 -9606 100873976 CNTN4-AS2 - - HGNC:39986 3 - CNTN4 antisense RNA 2 miscRNA CNTN4-AS2 CNTN4 antisense RNA 2 O - 20121230 -9606 100873977 RBMS3-AS1 - - HGNC:39987 3 - RBMS3 antisense RNA 1 miscRNA RBMS3-AS1 RBMS3 antisense RNA 1 O - 20121021 -9606 100873978 RBMS3-AS2 - - HGNC:39988 3 - RBMS3 antisense RNA 2 miscRNA RBMS3-AS2 RBMS3 antisense RNA 2 O - 20121021 -9606 100873979 RBMS3-AS3 - - HGNC:39989 3 - RBMS3 antisense RNA 3 miscRNA RBMS3-AS3 RBMS3 antisense RNA 3 O - 20121021 -9606 100873980 RERG-AS1 - - HGNC:39990 12 - RERG antisense RNA 1 miscRNA RERG-AS1 RERG antisense RNA 1 O - 20121021 -9606 100873981 ANO1-AS1 - - HGNC:40016 11 - ANO1 antisense RNA 1 miscRNA ANO1-AS1 ANO1 antisense RNA 1 O - 20121021 -9606 100873982 ABCC5-AS1 - - HGNC:40055 3 - ABCC5 antisense RNA 1 miscRNA ABCC5-AS1 ABCC5 antisense RNA 1 O - 20121230 -9606 100873983 MAGI1-AS1 - - HGNC:40091 3 - MAGI1 antisense RNA 1 miscRNA MAGI1-AS1 MAGI1 antisense RNA 1 O - 20121230 -9606 100873984 CHRM3-AS1 - - HGNC:40150 1 - CHRM3 antisense RNA 1 miscRNA CHRM3-AS1 CHRM3 antisense RNA 1 O - 20121021 -9606 100873985 MED14-AS1 - - HGNC:40162 X - MED14 antisense RNA 1 miscRNA MED14-AS1 MED14 antisense RNA 1 O - 20121021 -9606 100873986 FGF12-AS1 - - HGNC:40234 3 - FGF12 antisense RNA 1 miscRNA FGF12-AS1 FGF12 antisense RNA 1 O - 20121021 -9606 100873987 FGF12-AS2 - - HGNC:40235 3 - FGF12 antisense RNA 2 miscRNA FGF12-AS2 FGF12 antisense RNA 2 O - 20121021 -9606 100873988 FGF12-AS3 - - HGNC:40236 3 - FGF12 antisense RNA 3 miscRNA FGF12-AS3 FGF12 antisense RNA 3 O - 20121021 -9606 100873989 GRM5-AS1 - - HGNC:40265 11 - GRM5 antisense RNA 1 miscRNA GRM5-AS1 GRM5 antisense RNA 1 O - 20121230 -9606 100873990 HCFC1-AS1 - - HGNC:40273 X - HCFC1 antisense RNA 1 miscRNA HCFC1-AS1 HCFC1 antisense RNA 1 O - 20121021 -9606 100873991 IGBP1-AS1 - - HGNC:40295 X - IGBP1 antisense RNA 1 miscRNA IGBP1-AS1 IGBP1 antisense RNA 1 O - 20121021 -9606 100873992 ITGB5-AS1 - - HGNC:40309 3 - ITGB5 antisense RNA 1 miscRNA ITGB5-AS1 ITGB5 antisense RNA 1 O - 20121021 -9606 100873993 ITIH4-AS1 - - HGNC:40310 3 - ITIH4 antisense RNA 1 miscRNA ITIH4-AS1 ITIH4 antisense RNA 1 O - 20121021 -9606 100873994 ITPKB-AS1 - - HGNC:40312 1 - ITPKB antisense RNA 1 miscRNA ITPKB-AS1 ITPKB antisense RNA 1 O - 20121021 -9606 100873995 KCND3-AS1 - - HGNC:40317 1 - KCND3 antisense RNA 1 miscRNA KCND3-AS1 KCND3 antisense RNA 1 O - 20121021 -9606 100873996 KCNQ5-AS2 - - HGNC:40322 6 - KCNQ5 antisense RNA 2 miscRNA KCNQ5-AS2 KCNQ5 antisense RNA 2 O - 20121021 -9606 100873997 KCNQ5-AS1 - - HGNC:40323 6 - KCNQ5 antisense RNA 1 miscRNA KCNQ5-AS1 KCNQ5 antisense RNA 1 O - 20121230 -9606 100873998 MEIS1-AS2 - - HGNC:40370 2 - MEIS1 antisense RNA 2 miscRNA MEIS1-AS2 MEIS1 antisense RNA 2 O - 20121021 -9606 100873999 MEIS1-AS1 - - HGNC:40371 2 - MEIS1 antisense RNA 1 miscRNA MEIS1-AS1 MEIS1 antisense RNA 1 O - 20121021 -9606 100874000 MKRN2-AS1 - - HGNC:40375 3 - MKRN2 antisense RNA 1 miscRNA MKRN2-AS1 MKRN2 antisense RNA 1 O - 20121021 -9606 100874001 NCBP2-AS1 - - HGNC:40392 3 - NCBP2 antisense RNA 1 miscRNA NCBP2-AS1 NCBP2 antisense RNA 1 O - 20121021 -9606 100874002 OXCT1-AS1 - - HGNC:40423 5 - OXCT1 antisense RNA 1 miscRNA OXCT1-AS1 OXCT1 antisense RNA 1 O - 20121021 -9606 100874003 PLCL2-AS1 - - HGNC:40449 3 - PLCL2 antisense RNA 1 miscRNA PLCL2-AS1 PLCL2 antisense RNA 1 O - 20121021 -9606 100874004 PPEF1-AS1 - - HGNC:40463 X - PPEF1 antisense RNA 1 miscRNA PPEF1-AS1 PPEF1 antisense RNA 1 O - 20121021 -9606 100874005 SIAH2-AS1 - - HGNC:40526 3 - SIAH2 antisense RNA 1 miscRNA SIAH2-AS1 SIAH2 antisense RNA 1 O - 20121021 -9606 100874006 TTC3-AS1 - - HGNC:40595 21 - TTC3 antisense RNA 1 miscRNA TTC3-AS1 TTC3 antisense RNA 1 O - 20121021 -9606 100874007 VIPR1-AS1 - - HGNC:40610 3 - VIPR1 antisense RNA 1 miscRNA VIPR1-AS1 VIPR1 antisense RNA 1 O - 20121021 -9606 100874008 WNT5A-AS1 - - HGNC:40616 3 - WNT5A antisense RNA 1 miscRNA WNT5A-AS1 WNT5A antisense RNA 1 O - 20121021 -9606 100874009 BIRC6-AS1 - pal3 HGNC:40641 2 - BIRC6 antisense RNA 1 miscRNA BIRC6-AS1 BIRC6 antisense RNA 1 O - 20121021 -9606 100874010 NLGN1-AS1 - - HGNC:40676 3 - NLGN1 antisense RNA 1 miscRNA NLGN1-AS1 NLGN1 antisense RNA 1 O - 20121021 -9606 100874011 XIRP2-AS1 - - HGNC:40679 2 - XIRP2 antisense RNA 1 miscRNA XIRP2-AS1 XIRP2 antisense RNA 1 O - 20121021 -9606 100874012 NAV2-AS5 - - HGNC:40740 11 11p15.1 NAV2 antisense RNA 5 miscRNA NAV2-AS5 NAV2 antisense RNA 5 O - 20121230 -9606 100874013 NAV2-AS3 - - HGNC:40742 11 - NAV2 antisense RNA 3 miscRNA NAV2-AS3 NAV2 antisense RNA 3 O - 20121021 -9606 100874014 NAV2-AS2 - - HGNC:40743 11 - NAV2 antisense RNA 2 miscRNA NAV2-AS2 NAV2 antisense RNA 2 O - 20121021 -9606 100874015 NAV2-AS1 - - HGNC:40744 11 - NAV2 antisense RNA 1 miscRNA NAV2-AS1 NAV2 antisense RNA 1 O - 20121021 -9606 100874016 SYNPR-AS1 - - HGNC:40774 3 - SYNPR antisense RNA 1 miscRNA SYNPR-AS1 SYNPR antisense RNA 1 O - 20121230 -9606 100874017 NICN1-AS1 - - HGNC:40838 3 - NICN1 antisense RNA 1 miscRNA NICN1-AS1 NICN1 antisense RNA 1 O - 20121021 -9606 100874018 EPN2-AS1 - - HGNC:40849 17 - EPN2 antisense RNA 1 miscRNA EPN2-AS1 EPN2 antisense RNA 1 O - 20121230 -9606 100874019 KLHL6-AS1 - - HGNC:40850 3 - KLHL6 antisense RNA 1 miscRNA KLHL6-AS1 KLHL6 antisense RNA 1 O - 20121021 -9606 100874020 MAGI2-AS1 - - HGNC:40860 7 - MAGI2 antisense RNA 1 miscRNA MAGI2-AS1 MAGI2 antisense RNA 1 O - 20121021 -9606 100874021 MAGI2-AS2 - - HGNC:40861 7 - MAGI2 antisense RNA 2 miscRNA MAGI2-AS2 MAGI2 antisense RNA 2 O - 20121230 -9606 100874022 ATG10-AS1 - - HGNC:40914 5 - ATG10 antisense RNA 1 miscRNA ATG10-AS1 ATG10 antisense RNA 1 O - 20121021 -9606 100874023 WDFY3-AS1 - - HGNC:40935 4 - WDFY3 antisense RNA 1 miscRNA WDFY3-AS1 WDFY3 antisense RNA 1 O - 20121021 -9606 100874024 TRPC7-AS1 - - HGNC:40936 5 - TRPC7 antisense RNA 1 miscRNA TRPC7-AS1 TRPC7 antisense RNA 1 O - 20121021 -9606 100874025 GFOD1-AS1 - - HGNC:40956 6 - GFOD1 antisense RNA 1 miscRNA GFOD1-AS1 GFOD1 antisense RNA 1 O - 20121021 -9606 100874026 ARMC2-AS1 - - HGNC:41008 6 - ARMC2 antisense RNA 1 miscRNA ARMC2-AS1 ARMC2 antisense RNA 1 O - 20121021 -9606 100874027 TPRG1-AS2 - - HGNC:41062 3 - TPRG1 antisense RNA 2 miscRNA TPRG1-AS2 TPRG1 antisense RNA 2 O - 20121230 -9606 100874028 SGOL1-AS1 - - HGNC:41081 3 - SGOL1 antisense RNA 1 miscRNA SGOL1-AS1 SGOL1 antisense RNA 1 O - 20121230 -9606 100874029 WDR52-AS1 - - HGNC:41113 3 - WDR52 antisense RNA 1 miscRNA WDR52-AS1 WDR52 antisense RNA 1 O - 20121230 -9606 100874030 SIDT1-AS1 - - HGNC:41126 3 - SIDT1 antisense RNA 1 miscRNA SIDT1-AS1 SIDT1 antisense RNA 1 O - 20121021 -9606 100874031 AGBL5-AS1 - - HGNC:41133 2 - AGBL5 antisense RNA 1 miscRNA AGBL5-AS1 AGBL5 antisense RNA 1 O - 20121021 -9606 100874032 PRRT3-AS1 - - HGNC:41151 3 - PRRT3 antisense RNA 1 miscRNA PRRT3-AS1 PRRT3 antisense RNA 1 O - 20121230 -9606 100874033 SPIN4-AS1 - - HGNC:41177 X - SPIN4 antisense RNA 1 miscRNA SPIN4-AS1 SPIN4 antisense RNA 1 O - 20121021 -9606 100874034 UBXN7-AS1 - - HGNC:41227 3 - UBXN7 antisense RNA 1 miscRNA UBXN7-AS1 UBXN7 antisense RNA 1 O - 20121021 -9606 100874035 PLCH1-AS1 - - HGNC:41231 3 - PLCH1 antisense RNA 1 miscRNA PLCH1-AS1 PLCH1 antisense RNA 1 O - 20121021 -9606 100874036 PLCH1-AS2 - - HGNC:41232 3 - PLCH1 antisense RNA 2 miscRNA PLCH1-AS2 PLCH1 antisense RNA 2 O - 20121021 -9606 100874037 CADM2-AS2 - - HGNC:41247 3 - CADM2 antisense RNA 2 miscRNA CADM2-AS2 CADM2 antisense RNA 2 O - 20121230 -9606 100874038 CADM2-AS1 - - HGNC:41248 3 - CADM2 antisense RNA 1 miscRNA CADM2-AS1 CADM2 antisense RNA 1 O - 20121021 -9606 100874039 THOC7-AS1 - - HGNC:41249 3 - THOC7 antisense RNA 1 miscRNA THOC7-AS1 THOC7 antisense RNA 1 O - 20121021 -9606 100874040 PEX5L-AS1 - - HGNC:41251 3 - PEX5L antisense RNA 1 miscRNA PEX5L-AS1 PEX5L antisense RNA 1 O - 20121021 -9606 100874041 MACC1-AS1 - - HGNC:41257 7 - MACC1 antisense RNA 1 miscRNA MACC1-AS1 MACC1 antisense RNA 1 O - 20121230 -9606 100874042 HM13-AS1 - - HGNC:41940 20 - HM13 antisense RNA 1 miscRNA HM13-AS1 HM13 antisense RNA 1 O - 20121230 -9606 100874043 TPRG1-AS1 - - HGNC:42391 3 - TPRG1 antisense RNA 1 miscRNA TPRG1-AS1 TPRG1 antisense RNA 1 O - 20121021 -9606 100874044 HHATL-AS1 - - HGNC:42439 3 - HHATL antisense RNA 1 miscRNA HHATL-AS1 HHATL antisense RNA 1 O - 20121021 -9606 100874045 MEAF6P1 - - HGNC:42660 2 - MYST/Esa1-associated factor 6 pseudogene 1 pseudo MEAF6P1 MYST/Esa1-associated factor 6 pseudogene 1 O - 20121230 -9606 100874046 LINC00498 - - HGNC:43435 4 - long intergenic non-protein coding RNA 498 miscRNA LINC00498 long intergenic non-protein coding RNA 498 O - 20121021 -9606 100874047 LINC00499 - - HGNC:43436 4 - long intergenic non-protein coding RNA 499 miscRNA LINC00499 long intergenic non-protein coding RNA 499 O - 20121230 -9606 100874048 DGUOK-AS1 - - HGNC:43441 2 - DGUOK antisense RNA 1 miscRNA DGUOK-AS1 DGUOK antisense RNA 1 O - 20121230 -9606 100874049 LINC00505 - - HGNC:43556 1 - long intergenic non-protein coding RNA 505 miscRNA LINC00505 long intergenic non-protein coding RNA 505 O - 20121021 -9606 100874051 LZTS1-AS1 - - HGNC:43630 8 - LZTS1 antisense RNA 1 miscRNA LZTS1-AS1 LZTS1 antisense RNA 1 O - 20121230 -9606 100874052 LINC00534 - - HGNC:43643 8 - long intergenic non-protein coding RNA 534 miscRNA LINC00534 long intergenic non-protein coding RNA 534 O - 20121230 -9606 100874053 JRKL-AS1 - - HGNC:43670 11 - JRKL antisense RNA 1 miscRNA JRKL-AS1 JRKL antisense RNA 1 O - 20121230 -9606 100874054 LINC00568 - ncRNA-a1 HGNC:43713 1 - long intergenic non-protein coding RNA 568 miscRNA LINC00568 long intergenic non-protein coding RNA 568 O - 20121230 -9606 100874055 LINC00570 - ncRNA-a5 HGNC:43717 2 - long intergenic non-protein coding RNA 570 miscRNA LINC00570 long intergenic non-protein coding RNA 570 O - 20121230 -9606 100874056 NLGN4Y-AS1 - NLGN4Y-AS|NLGN4YAS HGNC:38793 Y - NLGN4Y antisense RNA 1 miscRNA NLGN4Y-AS1 NLGN4Y antisense RNA 1 O - 20121230 -9606 100874057 LINC00283 - NCRNA00283 HGNC:38809 13 - long intergenic non-protein coding RNA 283 miscRNA LINC00283 long intergenic non-protein coding RNA 283 O - 20121021 -9606 100874058 COX10-AS1 - COX10-AS|COX10AS HGNC:38873 17 - COX10 antisense RNA 1 miscRNA COX10-AS1 COX10 antisense RNA 1 O - 20121230 -9606 100874059 LINC00297 - NCRNA00297 HGNC:39210 13 - long intergenic non-protein coding RNA 297 miscRNA LINC00297 long intergenic non-protein coding RNA 297 O - 20121230 -9606 100874060 SPATA20P1 - - HGNC:39636 21 - spermatogenesis associated 20 pseudogene 1 pseudo SPATA20P1 spermatogenesis associated 20 pseudogene 1 O - 20121230 -9606 100874061 WASF3-AS1 - - HGNC:39841 13 - WASF3 antisense RNA 1 miscRNA WASF3-AS1 WASF3 antisense RNA 1 O - 20121021 -9606 100874062 CLYBL-AS1 - - HGNC:39893 13 - CLYBL antisense RNA 1 miscRNA CLYBL-AS1 CLYBL antisense RNA 1 O - 20121021 -9606 100874063 CLYBL-AS2 - - HGNC:39894 13 - CLYBL antisense RNA 2 miscRNA CLYBL-AS2 CLYBL antisense RNA 2 O - 20121021 -9606 100874064 PCDH9-AS2 - - HGNC:39896 13 - PCDH9 antisense RNA 2 miscRNA PCDH9-AS2 PCDH9 antisense RNA 2 O - 20121230 -9606 100874065 PCDH9-AS1 - - HGNC:39897 13 - PCDH9 antisense RNA 1 miscRNA PCDH9-AS1 PCDH9 antisense RNA 1 O - 20121021 -9606 100874066 LATS2-AS1 - - HGNC:39912 13 - LATS2 antisense RNA 1 miscRNA LATS2-AS1 LATS2 antisense RNA 1 O - 20121021 -9606 100874067 MYO16-AS2 - - HGNC:39914 13 - MYO16 antisense RNA 2 miscRNA MYO16-AS2 MYO16 antisense RNA 2 O - 20121021 -9606 100874068 GRTP1-AS1 - - HGNC:39917 13 - GRTP1 antisense RNA 1 miscRNA GRTP1-AS1 GRTP1 antisense RNA 1 O - 20121021 -9606 100874069 STK24-AS1 - - HGNC:39935 13 - STK24 antisense RNA 1 miscRNA STK24-AS1 STK24 antisense RNA 1 O - 20121021 -9606 100874070 USP12-AS1 - - HGNC:39961 13 - USP12 antisense RNA 1 miscRNA USP12-AS1 USP12 antisense RNA 1 O - 20121021 -9606 100874071 USP12-AS2 - - HGNC:39962 13 - USP12 antisense RNA 2 (head to head) miscRNA USP12-AS2 USP12 antisense RNA 2 (head to head) O - 20121021 -9606 100874072 SMAD9-AS1 - - HGNC:39963 13 - SMAD9 antisense RNA 1 miscRNA SMAD9-AS1 SMAD9 antisense RNA 1 O - 20121021 -9606 100874073 FREM2-AS1 - - HGNC:39964 13 - FREM2 antisense RNA 1 miscRNA FREM2-AS1 FREM2 antisense RNA 1 O - 20121021 -9606 100874074 DLEU7-AS1 - - HGNC:39966 13 - DLEU7 antisense RNA 1 miscRNA DLEU7-AS1 DLEU7 antisense RNA 1 O - 20121230 -9606 100874075 ARAP1-AS1 - - HGNC:39993 11 - ARAP1 antisense RNA 1 miscRNA ARAP1-AS1 ARAP1 antisense RNA 1 O - 20121021 -9606 100874076 ABHD11-AS2 - - HGNC:40012 7 - ABHD11 antisense RNA 2 miscRNA ABHD11-AS2 ABHD11 antisense RNA 2 O - 20120816 -9606 100874077 ATP1B3-AS1 - - HGNC:40088 3 - ATP1B3 antisense RNA 1 miscRNA ATP1B3-AS1 ATP1B3 antisense RNA 1 O - 20121021 -9606 100874078 EIF1AX-AS1 - - HGNC:40208 X - EIF1AX antisense RNA 1 miscRNA EIF1AX-AS1 EIF1AX antisense RNA 1 O - 20121021 -9606 100874079 EIF2B5-AS1 - - HGNC:40209 3 - EIF2B5 antisense RNA 1 miscRNA EIF2B5-AS1 EIF2B5 antisense RNA 1 O - 20121021 -9606 100874080 FARP1-AS1 - - HGNC:40229 13 - FARP1 antisense RNA 1 miscRNA FARP1-AS1 FARP1 antisense RNA 1 O - 20121021 -9606 100874081 FGF14-AS1 - - HGNC:40237 13 - FGF14 antisense RNA 1 miscRNA FGF14-AS1 FGF14 antisense RNA 1 O - 20121021 -9606 100874082 HTR2A-AS1 - - HGNC:40289 13 - HTR2A antisense RNA 1 miscRNA HTR2A-AS1 HTR2A antisense RNA 1 O - 20121021 -9606 100874083 KCNAB1-AS2 - - HGNC:40315 3 - KCNAB1 antisense RNA 2 miscRNA KCNAB1-AS2 KCNAB1 antisense RNA 2 O - 20121230 -9606 100874084 KCNAB1-AS1 - - HGNC:40316 3 - KCNAB1 antisense RNA 1 miscRNA KCNAB1-AS1 KCNAB1 antisense RNA 1 O - 20121230 -9606 100874085 NUCB1-AS1 - - HGNC:40419 19 - NUCB1 antisense RNA 1 miscRNA NUCB1-AS1 NUCB1 antisense RNA 1 O - 20121021 -9606 100874086 PCDH9-AS3 - - HGNC:40427 13 - PCDH9 antisense RNA 3 miscRNA PCDH9-AS3 PCDH9 antisense RNA 3 O - 20121230 -9606 100874087 PCDH9-AS4 - - HGNC:40428 13 - PCDH9 antisense RNA 4 miscRNA PCDH9-AS4 PCDH9 antisense RNA 4 O - 20121021 -9606 100874088 PCYT1B-AS1 - - HGNC:40431 X - PCYT1B antisense RNA 1 miscRNA PCYT1B-AS1 PCYT1B antisense RNA 1 O - 20121021 -9606 100874089 RUVBL1-AS1 - - HGNC:40514 3 - RUVBL1 antisense RNA 1 miscRNA RUVBL1-AS1 RUVBL1 antisense RNA 1 O - 20121021 -9606 100874090 SLC6A1-AS1 - - HGNC:40546 3 - SLC6A1 antisense RNA 1 miscRNA SLC6A1-AS1 SLC6A1 antisense RNA 1 O - 20121230 -9606 100874091 TM4SF1-AS1 - - HGNC:40587 3 - TM4SF1 antisense RNA 1 miscRNA TM4SF1-AS1 TM4SF1 antisense RNA 1 O - 20121021 -9606 100874092 UBE2E1-AS1 - - HGNC:40598 3 - UBE2E1 antisense RNA 1 miscRNA UBE2E1-AS1 UBE2E1 antisense RNA 1 O - 20121021 -9606 100874093 BRWD1-AS1 - - HGNC:40614 21 - BRWD1 antisense RNA 1 miscRNA BRWD1-AS1 BRWD1 antisense RNA 1 O - 20121230 -9606 100874094 ZNF197-AS1 - - HGNC:40620 3 - ZNF197 antisense RNA 1 miscRNA ZNF197-AS1 ZNF197 antisense RNA 1 O - 20121021 -9606 100874095 ADIPOQ-AS1 - - HGNC:40648 3 - ADIPOQ antisense RNA 1 miscRNA ADIPOQ-AS1 ADIPOQ antisense RNA 1 O - 20121230 -9606 100874096 DOCK9-AS1 - - HGNC:40672 13 - DOCK9 antisense RNA 1 miscRNA DOCK9-AS1 DOCK9 antisense RNA 1 O - 20121021 -9606 100874097 UBE2Q1-AS1 - - HGNC:40722 1 - UBE2Q1 antisense RNA 1 miscRNA UBE2Q1-AS1 UBE2Q1 antisense RNA 1 O - 20121021 -9606 100874098 ARPP21-AS1 - - HGNC:40785 3 - ARPP21 antisense RNA 1 miscRNA ARPP21-AS1 ARPP21 antisense RNA 1 O - 20121021 -9606 100874099 PDZRN3-AS1 - - HGNC:40814 3 - PDZRN3 antisense RNA 1 miscRNA PDZRN3-AS1 PDZRN3 antisense RNA 1 O - 20121021 -9606 100874100 STEAP2-AS1 - - HGNC:40820 7 - STEAP2 antisense RNA 1 miscRNA STEAP2-AS1 STEAP2 antisense RNA 1 O - 20121021 -9606 100874101 HDAC11-AS1 - - HGNC:40868 3 - HDAC11 antisense RNA 1 miscRNA HDAC11-AS1 HDAC11 antisense RNA 1 O - 20121021 -9606 100874102 HS6ST2-AS1 - - HGNC:40870 X - HS6ST2 antisense RNA 1 miscRNA HS6ST2-AS1 HS6ST2 antisense RNA 1 O - 20121230 -9606 100874103 SRGAP3-AS1 - - HGNC:40898 3 - SRGAP3 antisense RNA 1 miscRNA SRGAP3-AS1 SRGAP3 antisense RNA 1 O - 20121021 -9606 100874104 PLSCR5-AS1 - - HGNC:40907 3 - PLSCR5 antisense RNA 1 miscRNA PLSCR5-AS1 PLSCR5 antisense RNA 1 O - 20121021 -9606 100874105 PSPC1-AS1 - - HGNC:40915 13 - PSPC1 antisense RNA 1 miscRNA PSPC1-AS1 PSPC1 antisense RNA 1 O - 20121021 -9606 100874106 MTUS2-AS2 - - HGNC:40923 13 - MTUS2 antisense RNA 2 miscRNA MTUS2-AS2 MTUS2 antisense RNA 2 O - 20121021 -9606 100874107 MTUS2-AS1 hCG_2020170 - HGNC:40924 13 13q12.3 MTUS2 antisense RNA 1 miscRNA MTUS2-AS1 MTUS2 antisense RNA 1 O - 20121230 -9606 100874108 A2ML1-AS1 - - HGNC:41022 12 - A2ML1 antisense RNA 1 miscRNA A2ML1-AS1 A2ML1 antisense RNA 1 O - 20121021 -9606 100874109 CNOT10-AS1 - - HGNC:41031 3 - CNOT10 antisense RNA 1 miscRNA CNOT10-AS1 CNOT10 antisense RNA 1 O - 20121021 -9606 100874110 GLYCTK-AS1 - - HGNC:41043 3 - GLYCTK antisense RNA 1 miscRNA GLYCTK-AS1 GLYCTK antisense RNA 1 O - 20121021 -9606 100874111 STEAP3-AS1 - - HGNC:41053 2 - STEAP3 antisense RNA 1 miscRNA STEAP3-AS1 STEAP3 antisense RNA 1 O - 20121021 -9606 100874112 CCDC39-AS1 - - HGNC:41089 3 - CCDC39 antisense RNA 1 miscRNA CCDC39-AS1 CCDC39 antisense RNA 1 O - 20121021 -9606 100874113 YEATS2-AS1 - - HGNC:41101 3 - YEATS2 antisense RNA 1 miscRNA YEATS2-AS1 YEATS2 antisense RNA 1 O - 20121021 -9606 100874114 CCDC13-AS1 - - HGNC:41142 3 - CCDC13 antisense RNA 1 miscRNA CCDC13-AS1 CCDC13 antisense RNA 1 O - 20121230 -9606 100874115 PLCXD2-AS1 - - HGNC:41145 3 - PLCXD2 antisense RNA 1 miscRNA PLCXD2-AS1 PLCXD2 antisense RNA 1 O - 20121021 -9606 100874116 EGFLAM-AS3 - tbp1 HGNC:41167 5 - EGFLAM antisense RNA 3 miscRNA EGFLAM-AS3 EGFLAM antisense RNA 3 O - 20121021 -9606 100874117 EGFLAM-AS1 - - HGNC:41169 5 - EGFLAM antisense RNA 1 miscRNA EGFLAM-AS1 EGFLAM antisense RNA 1 O - 20121021 -9606 100874118 DDX26B-AS1 - - HGNC:41180 X - DDX26B antisense RNA 1 miscRNA DDX26B-AS1 DDX26B antisense RNA 1 O - 20121021 -9606 100874119 TCEAL3-AS1 - - HGNC:41191 X - TCEAL3 antisense RNA 1 miscRNA TCEAL3-AS1 TCEAL3 antisense RNA 1 O - 20121021 -9606 100874120 ZNF630-AS1 - - HGNC:41215 X - ZNF630 antisense RNA 1 miscRNA ZNF630-AS1 ZNF630 antisense RNA 1 O - 20121021 -9606 100874121 FRMPD4-AS1 - - HGNC:41222 X - FRMPD4 antisense RNA 1 miscRNA FRMPD4-AS1 FRMPD4 antisense RNA 1 O - 20121021 -9606 100874122 FRMPD3-AS1 - - HGNC:41239 X - FRMPD3 antisense RNA 1 miscRNA FRMPD3-AS1 FRMPD3 antisense RNA 1 O - 20121021 -9606 100874123 ZNRF3-AS1 - - HGNC:41927 22 - ZNRF3 antisense RNA 1 miscRNA ZNRF3-AS1 ZNRF3 antisense RNA 1 O - 20121230 -9606 100874124 RPLP1P13 - - HGNC:41973 13 - ribosomal protein, large, P1 pseudogene 13 pseudo RPLP1P13 ribosomal protein, large, P1 pseudogene 13 O - 20121230 -9606 100874125 LINC00329 - - HGNC:42038 13 - long intergenic non-protein coding RNA 329 miscRNA LINC00329 long intergenic non-protein coding RNA 329 O - 20121021 -9606 100874126 LINC00331 - NCRNA00331 HGNC:42048 13 - long intergenic non-protein coding RNA 331 miscRNA LINC00331 long intergenic non-protein coding RNA 331 O - 20121230 -9606 100874127 LINC00332 - NCRNA00332 HGNC:42049 13 - long intergenic non-protein coding RNA 332 miscRNA LINC00332 long intergenic non-protein coding RNA 332 O - 20121230 -9606 100874128 LINC00333 - NCRNA00333 HGNC:42050 13 - long intergenic non-protein coding RNA 333 miscRNA LINC00333 long intergenic non-protein coding RNA 333 O - 20121230 -9606 100874129 ENOX1-AS1 - - HGNC:42396 13 - ENOX1 antisense RNA 1 miscRNA ENOX1-AS1 ENOX1 antisense RNA 1 O - 20121021 -9606 100874130 ENOX1-AS2 - - HGNC:42397 13 - ENOX1 antisense RNA 2 miscRNA ENOX1-AS2 ENOX1 antisense RNA 2 O - 20121021 -9606 100874131 ZBTB20-AS4 - - HGNC:42423 3 - ZBTB20 antisense RNA 4 miscRNA ZBTB20-AS4 ZBTB20 antisense RNA 4 O - 20121021 -9606 100874132 SRGAP3-AS4 - - HGNC:42434 3 - SRGAP3 antisense RNA 4 miscRNA SRGAP3-AS4 SRGAP3 antisense RNA 4 O - 20121021 -9606 100874133 LINC00344 - NCRNA00344 HGNC:42501 13 - long intergenic non-protein coding RNA 344 miscRNA LINC00344 long intergenic non-protein coding RNA 344 O - 20121021 -9606 100874134 LINC00345 - - HGNC:42503 13 - long intergenic non-protein coding RNA 345 miscRNA LINC00345 long intergenic non-protein coding RNA 345 O - 20121021 -9606 100874135 LINC00349 - - HGNC:42667 13 - long intergenic non-protein coding RNA 349 miscRNA LINC00349 long intergenic non-protein coding RNA 349 O - 20121021 -9606 100874136 LINC00350 - - HGNC:42668 13 - long intergenic non-protein coding RNA 350 miscRNA LINC00350 long intergenic non-protein coding RNA 350 O - 20121021 -9606 100874137 LINC00351 - - HGNC:42669 13 - long intergenic non-protein coding RNA 351 miscRNA LINC00351 long intergenic non-protein coding RNA 351 O - 20121230 -9606 100874138 LINC00352 - - HGNC:42670 13 - long intergenic non-protein coding RNA 352 miscRNA LINC00352 long intergenic non-protein coding RNA 352 O - 20121021 -9606 100874139 LINC00353 - - HGNC:42671 13 - long intergenic non-protein coding RNA 353 miscRNA LINC00353 long intergenic non-protein coding RNA 353 O - 20121230 -9606 100874140 LINC00354 - - HGNC:42672 13 - long intergenic non-protein coding RNA 354 miscRNA LINC00354 long intergenic non-protein coding RNA 354 O - 20121021 -9606 100874141 LINC00356 - - HGNC:42675 13 - long intergenic non-protein coding RNA 356 miscRNA LINC00356 long intergenic non-protein coding RNA 356 O - 20121021 -9606 100874142 LINC00357 - - HGNC:42677 13 - long intergenic non-protein coding RNA 357 miscRNA LINC00357 long intergenic non-protein coding RNA 357 O - 20121021 -9606 100874143 LINC00358 - - HGNC:42678 13 - long intergenic non-protein coding RNA 358 miscRNA LINC00358 long intergenic non-protein coding RNA 358 O - 20121021 -9606 100874144 LINC00362 - - HGNC:42682 13 - long intergenic non-protein coding RNA 362 miscRNA LINC00362 long intergenic non-protein coding RNA 362 O - 20121021 -9606 100874145 LINC00364 - - HGNC:42686 13 - long intergenic non-protein coding RNA 364 miscRNA LINC00364 long intergenic non-protein coding RNA 364 O - 20121021 -9606 100874146 LINC00365 - - HGNC:42687 13 - long intergenic non-protein coding RNA 365 miscRNA LINC00365 long intergenic non-protein coding RNA 365 O - 20121021 -9606 100874147 LINC00366 - - HGNC:42688 13 - long intergenic non-protein coding RNA 366 miscRNA LINC00366 long intergenic non-protein coding RNA 366 O - 20121230 -9606 100874148 LINC00372 - - HGNC:42694 13 - long intergenic non-protein coding RNA 372 miscRNA LINC00372 long intergenic non-protein coding RNA 372 O - 20121021 -9606 100874149 LINC00378 - - HGNC:42704 13 - long intergenic non-protein coding RNA 378 miscRNA LINC00378 long intergenic non-protein coding RNA 378 O - 20121021 -9606 100874150 LINC00379 - - HGNC:42705 13 - long intergenic non-protein coding RNA 379 miscRNA LINC00379 long intergenic non-protein coding RNA 379 O - 20121230 -9606 100874151 LINC00381 hCG_1820717 - HGNC:42708 13 13q22.1 long intergenic non-protein coding RNA 381 miscRNA LINC00381 long intergenic non-protein coding RNA 381 O - 20121230 -9606 100874152 LINC00387 - - HGNC:42715 13 - long intergenic non-protein coding RNA 387 miscRNA LINC00387 long intergenic non-protein coding RNA 387 O - 20121021 -9606 100874153 LINC00388 - - HGNC:42716 13 - long intergenic non-protein coding RNA 388 miscRNA LINC00388 long intergenic non-protein coding RNA 388 O - 20121021 -9606 100874154 LINC00391 - - HGNC:42719 13 - long intergenic non-protein coding RNA 391 miscRNA LINC00391 long intergenic non-protein coding RNA 391 O - 20121021 -9606 100874155 LINC00392 - - HGNC:42720 13 - long intergenic non-protein coding RNA 392 miscRNA LINC00392 long intergenic non-protein coding RNA 392 O - 20121021 -9606 100874156 LINC00393 - - HGNC:42721 13 - long intergenic non-protein coding RNA 393 miscRNA LINC00393 long intergenic non-protein coding RNA 393 O - 20121021 -9606 100874157 LINC00395 - - HGNC:42723 13 - long intergenic non-protein coding RNA 395 miscRNA LINC00395 long intergenic non-protein coding RNA 395 O - 20121021 -9606 100874158 LINC00398 - - HGNC:42727 13 - long intergenic non-protein coding RNA 398 miscRNA LINC00398 long intergenic non-protein coding RNA 398 O - 20121230 -9606 100874159 LINC00400 - - HGNC:42729 13 - long intergenic non-protein coding RNA 400 miscRNA LINC00400 long intergenic non-protein coding RNA 400 O - 20121021 -9606 100874160 LINC00404 - - HGNC:42734 13 - long intergenic non-protein coding RNA 404 miscRNA LINC00404 long intergenic non-protein coding RNA 404 O - 20121021 -9606 100874161 LINC00411 - - HGNC:42744 13 - long intergenic non-protein coding RNA 411 miscRNA LINC00411 long intergenic non-protein coding RNA 411 O - 20121021 -9606 100874162 LINC00413 - - HGNC:42746 13 - long intergenic non-protein coding RNA 413 miscRNA LINC00413 long intergenic non-protein coding RNA 413 O - 20121021 -9606 100874163 LINC00415 - - HGNC:42748 13 - long intergenic non-protein coding RNA 415 miscRNA LINC00415 long intergenic non-protein coding RNA 415 O - 20121021 -9606 100874164 LINC00417 - - HGNC:42751 13 - long intergenic non-protein coding RNA 417 miscRNA LINC00417 long intergenic non-protein coding RNA 417 O - 20121021 -9606 100874167 LINC00423 - - HGNC:42758 13 - long intergenic non-protein coding RNA 423 miscRNA LINC00423 long intergenic non-protein coding RNA 423 O - 20121230 -9606 100874168 LINC00433 - - HGNC:42768 13 - long intergenic non-protein coding RNA 433 miscRNA LINC00433 long intergenic non-protein coding RNA 433 O - 20121230 -9606 100874169 LINC00434 - - HGNC:42769 13 - long intergenic non-protein coding RNA 434 miscRNA LINC00434 long intergenic non-protein coding RNA 434 O - 20121021 -9606 100874171 LINC00439 - - HGNC:42776 13 - long intergenic non-protein coding RNA 439 miscRNA LINC00439 long intergenic non-protein coding RNA 439 O - 20121230 -9606 100874172 LINC00440 - - HGNC:42777 13 - long intergenic non-protein coding RNA 440 miscRNA LINC00440 long intergenic non-protein coding RNA 440 O - 20121021 -9606 100874173 LINC00443 - - HGNC:42780 13 - long intergenic non-protein coding RNA 443 miscRNA LINC00443 long intergenic non-protein coding RNA 443 O - 20121230 -9606 100874174 LINC00444 - - HGNC:42781 13 - long intergenic non-protein coding RNA 444 miscRNA LINC00444 long intergenic non-protein coding RNA 444 O - 20121021 -9606 100874175 LINC00446 - - HGNC:42783 13 - long intergenic non-protein coding RNA 446 miscRNA LINC00446 long intergenic non-protein coding RNA 446 O - 20121230 -9606 100874176 LINC00448 - - HGNC:42785 13 - long intergenic non-protein coding RNA 448 miscRNA LINC00448 long intergenic non-protein coding RNA 448 O - 20121021 -9606 100874177 LINC00453 - - HGNC:42801 13 - long intergenic non-protein coding RNA 453 miscRNA LINC00453 long intergenic non-protein coding RNA 453 O - 20121021 -9606 100874178 LINC00454 - - HGNC:42802 13 - long intergenic non-protein coding RNA 454 miscRNA LINC00454 long intergenic non-protein coding RNA 454 O - 20121021 -9606 100874179 LINC00457 - - HGNC:42805 13 - long intergenic non-protein coding RNA 457 miscRNA LINC00457 long intergenic non-protein coding RNA 457 O - 20121230 -9606 100874180 LINC00459 - - HGNC:42808 13 - long intergenic non-protein coding RNA 459 miscRNA LINC00459 long intergenic non-protein coding RNA 459 O - 20121120 -9606 100874181 LINC00464 - - HGNC:42814 13 - long intergenic non-protein coding RNA 464 miscRNA LINC00464 long intergenic non-protein coding RNA 464 O - 20121021 -9606 100874182 LINC00424 - - HGNC:42815 13 - long intergenic non-protein coding RNA 424 miscRNA LINC00424 long intergenic non-protein coding RNA 424 O - 20121230 -9606 100874183 NCOR1P3 - - HGNC:42996 7 - nuclear receptor corepressor 1 pseudogene 3 pseudo NCOR1P3 nuclear receptor corepressor 1 pseudogene 3 O - 20121230 -9606 100874184 LINC00502 - - HGNC:43442 10 - long intergenic non-protein coding RNA 502 miscRNA LINC00502 long intergenic non-protein coding RNA 502 O - 20121230 -9606 100874185 FRMD6-AS2 - - HGNC:43637 14 - FRMD6 antisense RNA 2 miscRNA FRMD6-AS2 FRMD6 antisense RNA 2 O - 20121230 -9606 100874186 PLCB2-AS1 - - HGNC:43662 15 - PLCB2 antisense RNA 1 miscRNA PLCB2-AS1 PLCB2 antisense RNA 1 O - 20121021 -9606 100874187 LINC00559 - - HGNC:43703 13 - long intergenic non-protein coding RNA 559 miscRNA LINC00559 long intergenic non-protein coding RNA 559 O - 20121230 -9606 100874188 LINC00571 - - HGNC:43721 13 - long intergenic non-protein coding RNA 571 miscRNA LINC00571 long intergenic non-protein coding RNA 571 O - 20121230 -9606 100874189 NKX2-2-AS1 - NKX2-2AS HGNC:37154 20 - NKX2-2 antisense RNA 1 miscRNA NKX2-2-AS1 NKX2-2 antisense RNA 1 O - 20121021 -9606 100874190 SAMSN1-AS1 - - HGNC:39599 21 - SAMSN1 antisense RNA 1 miscRNA SAMSN1-AS1 SAMSN1 antisense RNA 1 O - 20121230 -9606 100874191 RANP2 - - HGNC:39857 7 - RAN, member RAS oncogene family pseudogene 2 pseudo RANP2 RAN, member RAS oncogene family pseudogene 2 O - 20121230 -9606 100874192 RANP7 - - HGNC:39862 3 - RAN, member RAS oncogene family pseudogene 7 pseudo RANP7 RAN, member RAS oncogene family pseudogene 7 O - 20121230 -9606 100874193 RANP9 - - HGNC:39864 8 - RAN, member RAS oncogene family pseudogene 9 pseudo RANP9 RAN, member RAS oncogene family pseudogene 9 O - 20121230 -9606 100874194 CLDN10-AS1 - - HGNC:39907 13 - CLDN10 antisense RNA 1 miscRNA CLDN10-AS1 CLDN10 antisense RNA 1 O - 20121230 -9606 100874195 DIAPH3-AS1 - - HGNC:39915 13 - DIAPH3 antisense RNA 1 miscRNA DIAPH3-AS1 DIAPH3 antisense RNA 1 O - 20121230 -9606 100874196 DIAPH3-AS2 - DIPAH3-AS2 HGNC:39916 13 - DIAPH3 antisense RNA 2 miscRNA DIAPH3-AS2 DIAPH3 antisense RNA 2 O - 20121230 -9606 100874197 EFCAB6-AS1 - - HGNC:39999 22 - EFCAB6 antisense RNA 1 miscRNA EFCAB6-AS1 EFCAB6 antisense RNA 1 O - 20121230 -9606 100874198 SHANK2-AS1 - - HGNC:40014 11 - SHANK2 antisense RNA 1 miscRNA SHANK2-AS1 SHANK2 antisense RNA 1 O - 20121230 -9606 100874199 SHANK2-AS2 - - HGNC:40015 11 - SHANK2 antisense RNA 2 miscRNA SHANK2-AS2 SHANK2 antisense RNA 2 O - 20121021 -9606 100874200 ARHGEF3-AS1 - - HGNC:40083 3 - ARHGEF3 antisense RNA 1 miscRNA ARHGEF3-AS1 ARHGEF3 antisense RNA 1 O - 20121230 -9606 100874201 B4GALT4-AS1 - - HGNC:40090 3 - B4GALT4 antisense RNA 1 miscRNA B4GALT4-AS1 B4GALT4 antisense RNA 1 O - 20121021 -9606 100874202 MIS18A-AS1 - - HGNC:40106 21 - MIS18A antisense RNA 1 miscRNA MIS18A-AS1 MIS18A antisense RNA 1 O - 20121021 -9606 100874203 COL4A2-AS1 - - HGNC:40156 13 - COL4A2 antisense RNA 1 miscRNA COL4A2-AS1 COL4A2 antisense RNA 1 O - 20121230 -9606 100874204 ALDH1L1-AS1 - - HGNC:40244 3 - ALDH1L1 antisense RNA 1 miscRNA ALDH1L1-AS1 ALDH1L1 antisense RNA 1 O - 20121230 -9606 100874205 ATP11A-AS1 - - HGNC:40645 13 - ATP11A antisense RNA 1 miscRNA ATP11A-AS1 ATP11A antisense RNA 1 O - 20121021 -9606 100874206 OSBPL10-AS1 - - HGNC:40767 3 - OSBPL10 antisense RNA 1 miscRNA OSBPL10-AS1 OSBPL10 antisense RNA 1 O - 20121230 -9606 100874207 ST3GAL6-AS1 - - HGNC:40828 3 - ST3GAL6 antisense RNA 1 miscRNA ST3GAL6-AS1 ST3GAL6 antisense RNA 1 O - 20121230 -9606 100874208 NDFIP2-AS1 - - HGNC:40844 13 - NDFIP2 antisense RNA 1 miscRNA NDFIP2-AS1 NDFIP2 antisense RNA 1 O - 20121230 -9606 100874209 TBC1D4-AS1 - - HGNC:40874 13 - TBC1D4 antisense RNA 1 miscRNA TBC1D4-AS1 TBC1D4 antisense RNA 1 O - 20121021 -9606 100874210 ZMYND10-AS1 - - HGNC:40890 3 - ZMYND10 antisense RNA 1 miscRNA ZMYND10-AS1 ZMYND10 antisense RNA 1 O - 20121021 -9606 100874211 MID1IP1-AS1 - - HGNC:40932 X - MID1IP1 antisense RNA 1 miscRNA MID1IP1-AS1 MID1IP1 antisense RNA 1 O - 20121021 -9606 100874212 MYCBP2-AS1 - - HGNC:41023 13 - MYCBP2 antisense RNA 1 miscRNA MYCBP2-AS1 MYCBP2 antisense RNA 1 O - 20121230 -9606 100874213 MYCBP2-AS2 - - HGNC:41024 13 - MYCBP2 antisense RNA 2 miscRNA MYCBP2-AS2 MYCBP2 antisense RNA 2 O - 20121021 -9606 100874214 TM4SF19-AS1 - - HGNC:41085 3 - TM4SF19 antisense RNA 1 miscRNA TM4SF19-AS1 TM4SF19 antisense RNA 1 O - 20121021 -9606 100874215 ATP13A4-AS1 - - HGNC:41095 3 - ATP13A4 antisense RNA 1 miscRNA ATP13A4-AS1 ATP13A4 antisense RNA 1 O - 20121021 -9606 100874216 ZNF385D-AS1 - - HGNC:41136 3 - ZNF385D antisense RNA 1 miscRNA ZNF385D-AS1 ZNF385D antisense RNA 1 O - 20121021 -9606 100874217 TBL1XR1-AS1 - - HGNC:41243 3 - TBL1XR1 antisense RNA 1 miscRNA TBL1XR1-AS1 TBL1XR1 antisense RNA 1 O - 20121021 -9606 100874218 ATP13A5-AS1 - - HGNC:41281 3 - ATP13A5 antisense RNA 1 miscRNA ATP13A5-AS1 ATP13A5 antisense RNA 1 O - 20121021 -9606 100874219 TMEM212-AS1 - - HGNC:41939 3 - TMEM212 antisense RNA 1 miscRNA TMEM212-AS1 TMEM212 antisense RNA 1 O - 20121021 -9606 100874220 PCNPP4 - - HGNC:41976 X - PEST containing nuclear protein pseudogene 4 pseudo PCNPP4 PEST containing nuclear protein pseudogene 4 O - 20121230 -9606 100874221 ZNF385D-AS2 - - HGNC:42420 3 - ZNF385D antisense RNA 2 miscRNA ZNF385D-AS2 ZNF385D antisense RNA 2 O - 20121021 -9606 100874222 POU4F1-AS1 - - HGNC:42700 13 - POU4F1 antisense RNA 1 miscRNA POU4F1-AS1 POU4F1 antisense RNA 1 O - 20121230 -9606 100874223 FTOP1 - - HGNC:43759 2 - fat mass and obesity associated pseudogene 1 pseudo FTOP1 fat mass and obesity associated pseudogene 1 O - 20121230 -9606 100874224 KRTAP10-13P - - HGNC:34213 21 - keratin associated protein 10-13, pseudogene pseudo KRTAP10-13P keratin associated protein 10-13, pseudogene O - 20121230 -9606 100874225 RPP40P1 - - HGNC:39769 X - ribonuclease P/MRP 40kDa subunit pseudogene 1 pseudo RPP40P1 ribonuclease P/MRP 40kDa subunit pseudogene 1 O - 20121230 -9606 100874226 ARHGEF7-AS1 - - HGNC:39816 13 - ARHGEF7 antisense RNA 1 miscRNA ARHGEF7-AS1 ARHGEF7 antisense RNA 1 O - 20121021 -9606 100874227 RANP3 - - HGNC:39858 11 - RAN, member RAS oncogene family pseudogene 3 pseudo RANP3 RAN, member RAS oncogene family pseudogene 3 O - 20121230 -9606 100874228 DCUN1D2-AS1 - - HGNC:39888 13 - DCUN1D2 antisense RNA 1 miscRNA DCUN1D2-AS1 DCUN1D2 antisense RNA 1 O - 20121021 -9606 100874229 DCUN1D2-AS2 - - HGNC:39889 13 - DCUN1D2 antisense RNA 2 miscRNA DCUN1D2-AS2 DCUN1D2 antisense RNA 2 O - 20121021 -9606 100874231 SPATA13-AS1 - - HGNC:39905 13 - SPATA13 antisense RNA 1 miscRNA SPATA13-AS1 SPATA13 antisense RNA 1 O - 20121230 -9606 100874232 C1QTNF9-AS1 - - HGNC:39906 13 - C1QTNF9 antisense RNA 1 miscRNA C1QTNF9-AS1 C1QTNF9 antisense RNA 1 O - 20121021 -9606 100874233 ARHGEF19-AS1 - - HGNC:39996 1 - ARHGEF19 antisense RNA 1 miscRNA ARHGEF19-AS1 ARHGEF19 antisense RNA 1 O - 20121021 -9606 100874234 CACNA1C-AS4 - - HGNC:40116 12 - CACNA1C antisense RNA 4 miscRNA CACNA1C-AS4 CACNA1C antisense RNA 4 O - 20121230 -9606 100874235 CACNA1C-AS2 - - HGNC:40118 12 - CACNA1C antisense RNA 2 miscRNA CACNA1C-AS2 CACNA1C antisense RNA 2 O - 20121021 -9606 100874236 COL18A1-AS2 - - HGNC:40155 21 - COL18A1 antisense RNA 2 miscRNA COL18A1-AS2 COL18A1 antisense RNA 2 O - 20121230 -9606 100874237 CACNA2D3-AS1 - - HGNC:40702 3 - CACNA2D3 antisense RNA 1 miscRNA CACNA2D3-AS1 CACNA2D3 antisense RNA 1 O - 20121230 -9606 100874238 ARHGEF7-AS2 - - HGNC:40717 13 - ARHGEF7 antisense RNA 2 miscRNA ARHGEF7-AS2 ARHGEF7 antisense RNA 2 O - 20121021 -9606 100874239 ARHGAP26-AS1 - - HGNC:40792 5 - ARHGAP26 antisense RNA 1 miscRNA ARHGAP26-AS1 ARHGAP26 antisense RNA 1 O - 20121230 -9606 100874240 STARD13-AS1 - - HGNC:40872 13 - STARD13 antisense RNA 1 miscRNA STARD13-AS1 STARD13 antisense RNA 1 O - 20121021 -9606 100874241 STARD13-AS2 - - HGNC:40873 13 - STARD13 antisense RNA 2 miscRNA STARD13-AS2 STARD13 antisense RNA 2 O - 20121230 -9606 100874242 PRICKLE2-AS2 - - HGNC:40917 3 - PRICKLE2 antisense RNA 2 miscRNA PRICKLE2-AS2 PRICKLE2 antisense RNA 2 O - 20121230 -9606 100874243 PRICKLE2-AS3 - - HGNC:40918 3 - PRICKLE2 antisense RNA 3 miscRNA PRICKLE2-AS3 PRICKLE2 antisense RNA 3 O - 20121230 -9606 100874244 NAALADL2-AS2 - - HGNC:41015 3 - NAALADL2 antisense RNA 2 miscRNA NAALADL2-AS2 NAALADL2 antisense RNA 2 O - 20121021 -9606 100874245 NAALADL2-AS1 - - HGNC:41016 3 - NAALADL2 antisense RNA 1 miscRNA NAALADL2-AS1 NAALADL2 antisense RNA 1 O - 20121021 -9606 100874246 ARHGAP31-AS1 - - HGNC:41235 3 - ARHGAP31 antisense RNA 1 miscRNA ARHGAP31-AS1 ARHGAP31 antisense RNA 1 O - 20121021 -9606 100874247 ANKRD33B-AS1 - - HGNC:41298 5 - ANKRD33B antisense RNA 1 miscRNA ANKRD33B-AS1 ANKRD33B antisense RNA 1 O - 20121021 -9606 100874248 USP24P1 - - HGNC:42014 13 - ubiquitin specific peptidase 24 pseudogene 1 pseudo USP24P1 ubiquitin specific peptidase 24 pseudogene 1 O - 20121230 -9606 100874249 DENND5B-AS1 - - HGNC:42517 12 - DENND5B antisense RNA 1 miscRNA DENND5B-AS1 DENND5B antisense RNA 1 O - 20121230 -9606 100874250 KIRREL3-AS1 - - HGNC:42655 11 - KIRREL3 antisense RNA 1 miscRNA KIRREL3-AS1 KIRREL3 antisense RNA 1 O - 20121021 -9606 100874251 KIRREL3-AS2 - - HGNC:42656 11 - KIRREL3 antisense RNA 2 miscRNA KIRREL3-AS2 KIRREL3 antisense RNA 2 O - 20121230 -9606 100874252 USP32P4 - - HGNC:43577 17 - ubiquitin specific peptidase 32 pseudogene 4 pseudo USP32P4 ubiquitin specific peptidase 32 pseudogene 4 O - 20121230 -9606 100874253 PDZK1IP1-AS1 - ncRNA-a4 HGNC:43716 1 - PDZK1IP1 antisense RNA 1 (tail to tail) miscRNA PDZK1IP1-AS1 PDZK1IP1 antisense RNA 1 (tail to tail) O - 20121230 -9606 100874254 JTBP1 - - HGNC:39180 22 - jumping translocation breakpoint pseudogene 1 pseudo JTBP1 jumping translocation breakpoint pseudogene 1 O - 20121230 -9606 100874255 RNASEH2B-AS1 - - HGNC:39967 13 - RNASEH2B antisense RNA 1 miscRNA RNASEH2B-AS1 RNASEH2B antisense RNA 1 O - 20121230 -9606 100874256 TNR-IT1 - - HGNC:41391 1 - TNR intronic transcript 1 (non-protein coding) miscRNA TNR-IT1 TNR intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874257 MTAPP1 - - HGNC:42442 3 - methylthioadenosine phosphorylase pseudogene 1 pseudo MTAPP1 methylthioadenosine phosphorylase pseudogene 1 O - 20121230 -9606 100874258 SCGB1D5P - SCGB1D1P1 HGNC:42735 4 - secretoglobin, family 1D, member 5, pseudogene pseudo SCGB1D5P secretoglobin, family 1D, member 5, pseudogene O - 20121230 -9606 100874259 SLC25A30-AS1 - - HGNC:42795 13 - SLC25A30 antisense RNA 1 miscRNA SLC25A30-AS1 SLC25A30 antisense RNA 1 O - 20121230 -9606 100874260 UBE2CP5 - - HGNC:43554 19 - ubiquitin-conjugating enzyme E2C pseudogene 5 pseudo UBE2CP5 ubiquitin-conjugating enzyme E2C pseudogene 5 O - 20121230 -9606 100874261 TMEM106A-AS1 - - HGNC:43658 17 - TMEM106A antisense RNA 1 (tail to tail) miscRNA TMEM106A-AS1 TMEM106A antisense RNA 1 (tail to tail) O - 20121230 -9606 100874262 UBE2D3P3 - - HGNC:39011 1 - ubiquitin-conjugating enzyme E2D 3 pseudogene 3 pseudo UBE2D3P3 ubiquitin-conjugating enzyme E2D 3 pseudogene 3 O - 20121230 -9606 100874263 AKT3-IT1 - - HGNC:41304 1 - AKT3 intronic transcript 1 (non-protein coding) miscRNA AKT3-IT1 AKT3 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874264 AOAH-IT1 - - HGNC:41307 7 - AOAH intronic transcript 1 (non-protein coding) miscRNA AOAH-IT1 AOAH intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874265 LYST-IT1 - - HGNC:41319 1 - LYST intronic transcript 1 (non-protein coding) miscRNA LYST-IT1 LYST intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874266 LYST-AS1 - LYST-IT2 HGNC:41320 1 - LYST antisense RNA 1 miscRNA LYST-AS1 LYST antisense RNA 1 O - 20121122 -9606 100874267 DPYD-IT1 - - HGNC:41326 1 - DPYD intronic transcript 1 (non-protein coding) miscRNA DPYD-IT1 DPYD intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874268 E2F3-IT1 - - HGNC:41329 6 - E2F3 intronic transcript 1 (non-protein coding) miscRNA E2F3-IT1 E2F3 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874269 AFF2-IT1 - - HGNC:41334 X - AFF2 intronic transcript 1 (non-protein coding) miscRNA AFF2-IT1 AFF2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874270 HAO2-IT1 - - HGNC:41342 1 - HAO2 intronic transcript 1 (non-protein coding) miscRNA HAO2-IT1 HAO2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874271 HTR4-IT1 - zmm2 HGNC:41345 5 - HTR4 intronic transcript 1 (non-protein coding) miscRNA HTR4-IT1 HTR4 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874272 KLF7-IT1 - - HGNC:41355 2 - KLF7 intronic transcript 1 (non-protein coding) miscRNA KLF7-IT1 KLF7 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874273 TGFA-IT1 - - HGNC:41389 2 - TGFA intronic transcript 1 (non-protein coding) miscRNA TGFA-IT1 TGFA intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874274 THRB-IT1 - - HGNC:41390 3 - THRB intronic transcript 1 (non-protein coding) miscRNA THRB-IT1 THRB intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874275 EMCN-IT3 - - HGNC:41418 4 - EMCN intronic transcript 3 (non-protein coding) miscRNA EMCN-IT3 EMCN intronic transcript 3 (non-protein coding) O - 20121230 -9606 100874276 EMCN-IT2 - - HGNC:41419 4 - EMCN intronic transcript 2 (non-protein coding) miscRNA EMCN-IT2 EMCN intronic transcript 2 (non-protein coding) O - 20121021 -9606 100874277 EMCN-IT1 - - HGNC:41420 4 - EMCN intronic transcript 1 (non-protein coding) miscRNA EMCN-IT1 EMCN intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874278 ERI3-IT1 - - HGNC:41431 1 - ERI3 intronic transcript 1 (non-protein coding) miscRNA ERI3-IT1 ERI3 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874279 NTM-IT1 - - HGNC:41435 11 - NTM intronic transcript 1 (non-protein coding) miscRNA NTM-IT1 NTM intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874280 NTM-IT2 - - HGNC:41436 11 - NTM intronic transcript 2 (non-protein coding) miscRNA NTM-IT2 NTM intronic transcript 2 (non-protein coding) O - 20121021 -9606 100874281 NTM-IT3 - - HGNC:41437 11 - NTM intronic transcript 3 (non-protein coding) miscRNA NTM-IT3 NTM intronic transcript 3 (non-protein coding) O - 20121021 -9606 100874282 MLIP-IT1 - - HGNC:41461 6 - MLIP intronic transcript 1 (non-protein coding) miscRNA MLIP-IT1 MLIP intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874283 UPP2-IT1 - - HGNC:41467 2 - UPP2 intronic transcript 1 (non-protein coding) miscRNA UPP2-IT1 UPP2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874284 DNM3-IT1 - - HGNC:41494 1 - DNM3 intronic transcript 1 (non-protein coding) miscRNA DNM3-IT1 DNM3 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874285 NRG1-IT2 - - HGNC:43634 8 - NRG1 intronic transcript 2 (non-protein coding) miscRNA NRG1-IT2 NRG1 intronic transcript 2 (non-protein coding) O - 20121021 -9606 100874286 NRG1-IT3 - - HGNC:43635 8 - NRG1 intronic transcript 3 (non-protein coding) miscRNA NRG1-IT3 NRG1 intronic transcript 3 (non-protein coding) O - 20121230 -9606 100874287 TSPY24P - - HGNC:38725 Y - testis specific protein, Y-linked 24, pseudogene pseudo TSPY24P testis specific protein, Y-linked 24, pseudogene O - 20121209 -9606 100874288 TSPY25P - - HGNC:38726 Y - testis specific protein, Y-linked 25, pseudogene pseudo TSPY25P testis specific protein, Y-linked 25, pseudogene O - 20121230 -9606 100874289 VDAC1P12 - - HGNC:39680 13 - voltage-dependent anion channel 1 pseudogene 12 pseudo VDAC1P12 voltage-dependent anion channel 1 pseudogene 12 O - 20121230 -9606 100874290 RERG-IT1 - - HGNC:39991 12 - RERG intronic transcript 1 (non-protein coding) miscRNA RERG-IT1 RERG intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874291 ALMS1-IT1 - - HGNC:41305 2 - ALMS1 intronic transcript 1 (non-protein coding) miscRNA ALMS1-IT1 ALMS1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874292 CDC42-IT1 - - HGNC:41317 1 - CDC42 intronic transcript 1 (non-protein coding) miscRNA CDC42-IT1 CDC42 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874293 GPC5-IT1 - - HGNC:41340 13 - GPC5 intronic transcript 1 (non-protein coding) miscRNA GPC5-IT1 GPC5 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874294 HLCS-IT1 - bde1 HGNC:41343 21 - HLCS intronic transcript 1 (non-protein coding) miscRNA HLCS-IT1 HLCS intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874295 KCND3-IT1 - - HGNC:41350 1 - KCND3 intronic transcript 1 (non-protein coding) miscRNA KCND3-IT1 KCND3 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874296 KCNH1-IT1 - - HGNC:41351 1 - KCNH1 intronic transcript 1 (non-protein coding) miscRNA KCNH1-IT1 KCNH1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874297 PROX1-IT1 - - HGNC:41372 1 - PROX1 intronic transcript 1 (non-protein coding) miscRNA PROX1-IT1 PROX1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874298 RASA2-IT1 - - HGNC:41376 3 - RASA2 intronic transcript 1 (non-protein coding) miscRNA RASA2-IT1 RASA2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874299 KDM5C-IT1 - - HGNC:41384 X - KDM5C intronic transcript 1 (non-protein coding) miscRNA KDM5C-IT1 KDM5C intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874300 SYNJ2-IT1 - - HGNC:41387 6 - SYNJ2 intronic transcript 1 (non-protein coding) miscRNA SYNJ2-IT1 SYNJ2 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874301 TSSC1-IT1 - - HGNC:41392 2 - TSSC1 intronic transcript 1 (non-protein coding) miscRNA TSSC1-IT1 TSSC1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874302 ITCH-IT1 - - HGNC:41397 20 - ITCH intronic transcript 1 (non-protein coding) miscRNA ITCH-IT1 ITCH intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874303 ALG9-IT1 - - HGNC:41409 11 - ALG9 intronic transcript 1 (non-protein coding) miscRNA ALG9-IT1 ALG9 intronic transcript 1 (non-protein coding) O - 20120404 -9606 100874305 NAV2-IT1 - - HGNC:41416 11 - NAV2 intronic transcript 1 (non-protein coding) miscRNA NAV2-IT1 NAV2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874306 ACAP2-IT1 - - HGNC:41426 3 - ACAP2 intronic transcript 1 (non-protein coding) miscRNA ACAP2-IT1 ACAP2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874307 RSF1-IT2 - - HGNC:41438 11 - RSF1 intronic transcript 2 (non-protein coding) miscRNA RSF1-IT2 RSF1 intronic transcript 2 (non-protein coding) O - 20121021 -9606 100874308 RSF1-IT1 - - HGNC:41439 11 - RSF1 intronic transcript 1 (non-protein coding) miscRNA RSF1-IT1 RSF1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874309 EPN2-IT1 - - HGNC:41445 17 - EPN2 intronic transcript 1 (non-protein coding) miscRNA EPN2-IT1 EPN2 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874310 MAST4-IT1 - - HGNC:41448 5 - MAST4 intronic transcript 1 (non-protein coding) miscRNA MAST4-IT1 MAST4 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874311 ATG10-IT1 - - HGNC:41455 5 - ATG10 intronic transcript 1 (non-protein coding) miscRNA ATG10-IT1 ATG10 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874312 FNDC1-IT1 - - HGNC:41460 6 - FNDC1 intronic transcript 1 (non-protein coding) miscRNA FNDC1-IT1 FNDC1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874313 AGBL4-IT1 - - HGNC:41482 1 - AGBL4 intronic transcript 1 (non-protein coding) miscRNA AGBL4-IT1 AGBL4 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874314 TTLL7-IT1 - - HGNC:41486 1 - TTLL7 intronic transcript 1 (non-protein coding) miscRNA TTLL7-IT1 TTLL7 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874315 SIK3-IT1 - - HGNC:41495 11 - SIK3 intronic transcript 1 (non-protein coding) unknown SIK3-IT1 SIK3 intronic transcript 1 (non-protein coding) O - 20121120 -9606 100874317 FABP7P2 - - HGNC:41952 2 - fatty acid binding protein 7, brain pseudogene 2 pseudo FABP7P2 fatty acid binding protein 7, brain pseudogene 2 O - 20121230 -9606 100874318 UBAC2-IT1 - - HGNC:39685 13 - UBAC2 intronic transcript 1 (non-protein coding) miscRNA UBAC2-IT1 UBAC2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874319 NAP1L4P2 - - HGNC:39739 X - nucleosome assembly protein 1-like 4 pseudogene 2 pseudo NAP1L4P2 nucleosome assembly protein 1-like 4 pseudogene 2 O - 20121230 -9606 100874320 ZMYM2-IT1 - - HGNC:39936 13 - ZMYM2 intronic transcript 1 (non-protein coding) miscRNA ZMYM2-IT1 ZMYM2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874321 RASA3-IT1 - - HGNC:39938 13 - RASA3 intronic transcript 1 (non-protein coding) miscRNA RASA3-IT1 RASA3 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874322 BACH1-IT2 - - HGNC:40007 21 - BACH1 intronic transcript 2 (non-protein coding) miscRNA BACH1-IT2 BACH1 intronic transcript 2 (non-protein coding) O - 20121021 -9606 100874323 HOXA-AS4 - - HGNC:40281 7 - HOXA cluster antisense RNA 4 miscRNA HOXA-AS4 HOXA cluster antisense RNA 4 O - 20121230 -9606 100874324 ATP2B2-IT1 - - HGNC:41309 3 - ATP2B2 intronic transcript 1 (non-protein coding) miscRNA ATP2B2-IT1 ATP2B2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874325 ATP2B2-IT2 - - HGNC:41310 3 - ATP2B2 intronic transcript 2 (non-protein coding) miscRNA ATP2B2-IT2 ATP2B2 intronic transcript 2 (non-protein coding) O - 20121021 -9606 100874326 DSCAM-IT1 - zag4 HGNC:41327 21 - DSCAM intronic transcript 1 (non-protein coding) miscRNA DSCAM-IT1 DSCAM intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874327 DSCR4-IT1 - - HGNC:41328 21 - DSCR4 intronic transcript 1 (non-protein coding) miscRNA DSCR4-IT1 DSCR4 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874328 EIF2B5-IT1 - - HGNC:41330 3 - EIF2B5 intronic transcript 1 (non-protein coding) miscRNA EIF2B5-IT1 EIF2B5 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874329 KCNJ6-IT1 - - HGNC:41352 21 - KCNJ6 intronic transcript 1 (non-protein coding) miscRNA KCNJ6-IT1 KCNJ6 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874330 KCNMB2-IT1 - - HGNC:41353 3 - KCNMB2 intronic transcript 1 (non-protein coding) miscRNA KCNMB2-IT1 KCNMB2 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874331 LARGE-IT1 - - HGNC:41357 22 - LARGE intronic transcript 1 (non-protein coding) miscRNA LARGE-IT1 LARGE intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874332 OPCML-IT2 - - HGNC:41365 11 - OPCML intronic transcript 2 (non-protein coding) miscRNA OPCML-IT2 OPCML intronic transcript 2 (non-protein coding) O - 20121021 -9606 100874333 OPCML-IT1 - - HGNC:41366 11 - OPCML intronic transcript 1 (non-protein coding) miscRNA OPCML-IT1 OPCML intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874334 TCF7L1-IT1 - - HGNC:41388 2 - TCF7L1 intronic transcript 1 (non-protein coding) miscRNA TCF7L1-IT1 TCF7L1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874335 IMMP2L-IT1 - - HGNC:41402 7 - IMMP2L intronic transcript 1 (non-protein coding) miscRNA IMMP2L-IT1 IMMP2L intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874336 ARID4B-IT1 - - HGNC:41407 1 - ARID4B intronic transcript 1 (non-protein coding) miscRNA ARID4B-IT1 ARID4B intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874337 PLCB1-IT1 - - HGNC:41414 20 - PLCB1 intronic transcript 1 (non-protein coding) miscRNA PLCB1-IT1 PLCB1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874338 TRIM36-IT1 - - HGNC:41422 5 - TRIM36 intronic transcript 1 (non-protein coding) miscRNA TRIM36-IT1 TRIM36 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874339 ZNRF3-IT1 - - HGNC:41440 22 - ZNRF3 intronic transcript 1 (non-protein coding) miscRNA ZNRF3-IT1 ZNRF3 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874340 CAMTA1-IT1 - - HGNC:41446 1 - CAMTA1 intronic transcript 1 (non-protein coding) miscRNA CAMTA1-IT1 CAMTA1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874342 RNF216-IT1 - - HGNC:41463 7 - RNF216 intronic transcript 1 (non-protein coding) miscRNA RNF216-IT1 RNF216 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874343 HS1BP3-IT1 - - HGNC:41474 2 - HS1BP3 intronic transcript 1 (non-protein coding) miscRNA HS1BP3-IT1 HS1BP3 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874344 FBXO36-IT1 - - HGNC:41489 2 - FBXO36 intronic transcript 1 (non-protein coding) miscRNA FBXO36-IT1 FBXO36 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874345 ZBTB40-IT1 - - HGNC:41493 1 - ZBTB40 intronic transcript 1 (non-protein coding) miscRNA ZBTB40-IT1 ZBTB40 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874346 NCKAP5-IT1 - - HGNC:41497 2 - NCKAP5 intronic transcript 1 (non-protein coding) miscRNA NCKAP5-IT1 NCKAP5 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874348 ZDHHC20P3 - - HGNC:39775 11 - zinc finger, DHHC-type containing 20 pseudogene 3 pseudo ZDHHC20P3 zinc finger, DHHC-type containing 20 pseudogene 3 O - 20121230 -9606 100874349 AKAP11-IT1 - - HGNC:39939 13 - AKPA11 intronic transcript 1 (non-protein coding) miscRNA AKAP11-IT1 AKPA11 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874350 HOXB-AS2 - - HGNC:40284 17 - HOXB cluster antisense RNA 2 miscRNA HOXB-AS2 HOXB cluster antisense RNA 2 O - 20121021 -9606 100874351 HOXB-AS4 - - HGNC:40285 17 - HOXB cluster antisense RNA 4 miscRNA HOXB-AS4 HOXB cluster antisense RNA 4 O - 20121021 -9606 100874352 AMMECR1-IT1 - - HGNC:41306 X - AMMECR1 intronic transcript 1 (non-protein coding) miscRNA AMMECR1-IT1 AMMECR1 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874353 RPS6KA2-IT1 - - HGNC:41378 6 - RPS6KA2 intronic transcript 1 (non-protein coding) miscRNA RPS6KA2-IT1 RPS6KA2 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874354 ST6GAL2-IT1 - - HGNC:41380 2 - ST6GAL2 intronic transcript 1 (non-protein coding) miscRNA ST6GAL2-IT1 ST6GAL2 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874355 ARHGEF9-IT1 - - HGNC:41401 X - ARHGEF9 intronic transcript 1 (non-protein coding) miscRNA ARHGEF9-IT1 ARHGEF9 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874356 TSPAN9-IT1 - - HGNC:41462 12 - TSPAN9 intronic transcript 1 (non-protein coding) miscRNA TSPAN9-IT1 TSPAN9 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874357 ANKRD44-IT1 - - HGNC:41477 2 - ANKRD44 intronic transcript 1 (non-protein coding) miscRNA ANKRD44-IT1 ANKRD44 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874358 KLHL22-IT1 - - HGNC:41481 22 - KLHL22 intronic transcript 1 (non-protein coding) miscRNA KLHL22-IT1 KLHL22 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874359 TMEM212-IT1 - - HGNC:41505 3 - TMEM212 intronic transcript 1 (non-protein coding) miscRNA TMEM212-IT1 TMEM212 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874360 GRPEL2P1 - - HGNC:41969 13 - GrpE-like 2, mitochondrial (E. coli) pseudogene 1 pseudo GRPEL2P1 GrpE-like 2, mitochondrial (E. coli) pseudogene 1 O - 20121230 -9606 100874361 PPP2R2B-IT1 - - HGNC:42984 5 - PPP2R2B intronic transcript 1 (non-protein coding) miscRNA PPP2R2B-IT1 PPP2R2B intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874362 HOXB-AS1 - - HGNC:43744 17 - HOXB cluster antisense RNA 1 miscRNA HOXB-AS1 HOXB cluster antisense RNA 1 O - 20121230 -9606 100874363 HOXC-AS1 - - HGNC:43749 12 - HOXC cluster antisense RNA 1 miscRNA HOXC-AS1 HOXC cluster antisense RNA 1 O - 20121021 -9606 100874364 HOXC-AS2 - - HGNC:43750 12 - HOXC cluster antisense RNA 2 miscRNA HOXC-AS2 HOXC cluster antisense RNA 2 O - 20121021 -9606 100874365 HOXC-AS3 - - HGNC:43751 12 - HOXC cluster antisense RNA 3 miscRNA HOXC-AS3 HOXC cluster antisense RNA 3 O - 20121021 -9606 100874366 HOXC-AS5 - - HGNC:43753 12 - HOXC cluster antisense RNA 5 miscRNA HOXC-AS5 HOXC cluster antisense RNA 5 O - 20121230 -9606 100874367 ZDHHC20-IT1 - - HGNC:39900 13 - ZDHHC20 intronic transcript 1 (non-protein coding) miscRNA ZDHHC20-IT1 ZDHHC20 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874368 CACNA1C-IT1 - - HGNC:41312 12 - CACNA1C intronic transcript 1 (non-protein coding) miscRNA CACNA1C-IT1 CACNA1C intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874369 CACNA1C-IT2 - - HGNC:41313 12 - CACNA1C intronic transcript 2 (non-protein coding) miscRNA CACNA1C-IT2 CACNA1C intronic transcript 2 (non-protein coding) O - 20121021 -9606 100874370 CACNA1C-IT3 - - HGNC:41314 12 - CACNA1C intronic transcript 3 (non-protein coding) miscRNA CACNA1C-IT3 CACNA1C intronic transcript 3 (non-protein coding) O - 20121230 -9606 100874371 ARHGEF7-IT1 - - HGNC:41408 13 - ARHGEF7 intronic transcript 1 (non-protein coding) miscRNA ARHGEF7-IT1 ARHGEF7 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874372 ARHGAP26-IT1 - - HGNC:41429 5 - ARHGAP26 intronic transcript 1 (non-protein coding) miscRNA ARHGAP26-IT1 ARHGAP26 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874373 STARD13-IT1 - - HGNC:41453 13 - STARD13 intronic transcript 1 (non-protein coding) miscRNA STARD13-IT1 STARD13 intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874374 ARHGEF38-IT1 - - HGNC:41483 4 - ARHGEF38 intronic transcript 1 (non-protein coding) miscRNA ARHGEF38-IT1 ARHGEF38 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874375 FAM155A-IT1 - - HGNC:41503 13 - FAM155A intronic transcript 1 (non-protein coding) miscRNA FAM155A-IT1 FAM155A intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874376 ANKRD33B-IT1 - - HGNC:41506 5 - ANKRD33B intronic transcript 1 (non-protein coding) miscRNA ANKRD33B-IT1 ANKRD33B intronic transcript 1 (non-protein coding) O - 20121021 -9606 100874377 SMIM2-IT1 - C13orf44-IT1 HGNC:41492 13 - SMIM2 intronic transcript 1 (non-protein coding) miscRNA SMIM2-IT1 SMIM2 intronic transcript 1 (non-protein coding) O - 20121230 -9606 100874378 PTGER4P3 - - HGNC:38498 9 - prostaglandin E receptor 4 (subtype EP4) pseudogene 3 pseudo PTGER4P3 prostaglandin E receptor 4 (subtype EP4) pseudogene 3 O - 20121230 -9606 100874379 POM121L13P - - HGNC:42635 13 - POM121 transmembrane nucleoporin-like 13, pseudogene pseudo POM121L13P POM121 transmembrane nucleoporin-like 13, pseudogene O - 20121230 -9606 100874380 DPPA5P2 - - HGNC:43754 15 - developmental pluripotency associated 5 pseudogene 2 pseudo DPPA5P2 developmental pluripotency associated 5 pseudogene 2 O - 20121230 -9606 100874381 NPIPP1 - - HGNC:35407 16 - nuclear pore complex interacting protein pseudogene 1 pseudo NPIPP1 nuclear pore complex interacting protein pseudogene 1 O - 20121230 -9606 100874382 USP9YP12 - - HGNC:38720 Y - ubiquitin specific peptidase 9, Y-linked pseudogene 12 pseudo USP9YP12 ubiquitin specific peptidase 9, Y-linked pseudogene 12 O - 20121230 -9606 100874383 USP9YP22 - - HGNC:38758 Y - ubiquitin specific peptidase 9, Y-linked pseudogene 22 pseudo USP9YP22 ubiquitin specific peptidase 9, Y-linked pseudogene 22 O - 20121230 -9606 100874384 USP9YP30 - - HGNC:38766 Y - ubiquitin specific peptidase 9, Y-linked pseudogene 30 pseudo USP9YP30 ubiquitin specific peptidase 9, Y-linked pseudogene 30 O - 20121209 -9606 100874385 HNRNPKP5 - - HGNC:42378 5 - heterogeneous nuclear ribonucleoprotein K pseudogene 5 pseudo HNRNPKP5 heterogeneous nuclear ribonucleoprotein K pseudogene 5 O - 20121230 -9606 100874386 OSTCP5 - - HGNC:42867 1 - oligosaccharyltransferase complex subunit pseudogene 5 pseudo OSTCP5 oligosaccharyltransferase complex subunit pseudogene 5 O - 20121230 -9606 100874387 OSTCP6 - - HGNC:42868 6 - oligosaccharyltransferase complex subunit pseudogene 6 pseudo OSTCP6 oligosaccharyltransferase complex subunit pseudogene 6 O - 20121230 -9606 100874388 OSTCP8 - - HGNC:42869 9 - oligosaccharyltransferase complex subunit pseudogene 8 pseudo OSTCP8 oligosaccharyltransferase complex subunit pseudogene 8 O - 20121230 -9606 100874389 CNOT4P1 - - HGNC:39272 13 - CCR4-NOT transcription complex, subunit 4 pseudogene 1 pseudo CNOT4P1 CCR4-NOT transcription complex, subunit 4 pseudogene 1 O - 20121230 -9606 100874390 RAC1P7 - - HGNC:42007 1 - ras-related C3 botulinum toxin substrate 1 pseudogene 7 pseudo RAC1P7 ras-related C3 botulinum toxin substrate 1 pseudogene 7 O - 20121230 -9606 100874391 OSTCP7 - - HGNC:42870 17 - oligosaccharyltransferase complex subunit pseudogene 7 pseudo OSTCP7 oligosaccharyltransferase complex subunit pseudogene 7 O - 20121230 -9606 100874392 ANKRD20A12P - - HGNC:43603 1 - ankyrin repeat domain 20 family, member A12, pseudogene pseudo ANKRD20A12P ankyrin repeat domain 20 family, member A12, pseudogene O - 20121230 -9606 100874393 EIF2AP1 - - HGNC:39495 7 - eukaryotic translation initiation factor 2A pseudogene 1 pseudo EIF2AP1 eukaryotic translation initiation factor 2A pseudogene 1 O - 20121230 -9606 100874394 EIF2AP2 - - HGNC:39496 7 - eukaryotic translation initiation factor 2A pseudogene 2 pseudo EIF2AP2 eukaryotic translation initiation factor 2A pseudogene 2 O - 20121230 -9606 100874395 EIF2AP3 - - HGNC:39497 7 - eukaryotic translation initiation factor 2A pseudogene 3 pseudo EIF2AP3 eukaryotic translation initiation factor 2A pseudogene 3 O - 20121230 -9606 100874396 HNRNPA1P24 - - HGNC:39542 3 - heterogeneous nuclear ribonucleoprotein A1 pseudogene 24 pseudo HNRNPA1P24 heterogeneous nuclear ribonucleoprotein A1 pseudogene 24 O - 20121230 -9606 100874397 CDKN2AIPNLP3 - - HGNC:39853 13 - CDKN2A interacting protein N-terminal like pseudogene 3 pseudo CDKN2AIPNLP3 CDKN2A interacting protein N-terminal like pseudogene 3 O - 20121230 -9606 100874398 RAC1P8 - - HGNC:42005 13 - ras-related C3 botulinum toxin substrate 1 pseudogene 8 pseudo RAC1P8 ras-related C3 botulinum toxin substrate 1 pseudogene 8 O - 20121230 -9606 100874399 IMPDH1P10 - - HGNC:33965 2 - IMP (inosine monophosphate) dehydrogenase 1 pseudogene 10 pseudo IMPDH1P10 IMP (inosine monophosphate) dehydrogenase 1 pseudogene 10 O - 20121230 -9606 100874400 HNRNPA1P18 - - HGNC:39445 13 - heterogeneous nuclear ribonucleoprotein A1 pseudogene 18 pseudo HNRNPA1P18 heterogeneous nuclear ribonucleoprotein A1 pseudogene 18 O - 20121230 -9606 100874401 EIF2AP4 - - HGNC:39498 10 - eukaryotic translation initiation factor 2A pseudogene 4 pseudo EIF2AP4 eukaryotic translation initiation factor 2A pseudogene 4 O - 20121230 -9606 100874402 HNRNPA1P19 - - HGNC:39537 17 - heterogeneous nuclear ribonucleoprotein A1 pseudogene 19 pseudo HNRNPA1P19 heterogeneous nuclear ribonucleoprotein A1 pseudogene 19 O - 20121230 -9606 100874403 ERHP2 - - HGNC:41917 6 - enhancer of rudimentary homolog (Drosophila) pseudogene 2 pseudo ERHP2 enhancer of rudimentary homolog (Drosophila) pseudogene 2 O - 20121230 -9606 100874404 LINC00328-2P - NCRNA00328-2P|NCRNA00328B HGNC:42027 13 - long intergenic non-protein coding RNA 328-2, pseudogene pseudo LINC00328-2P long intergenic non-protein coding RNA 328-2, pseudogene O - 20121230 -9606 100874405 PPIAP27 - - HGNC:42646 13 - peptidylprolyl isomerase A (cyclophilin A) pseudogene 27 pseudo PPIAP27 peptidylprolyl isomerase A (cyclophilin A) pseudogene 27 O - 20121230 -9606 100874406 FAM106DP - FAM106D HGNC:38397 17 - family with sequence similarity 106, member D, pseudogene pseudo FAM106DP family with sequence similarity 106, member D, pseudogene O - 20121230 -9606 100874407 SNRPGP3 - - HGNC:39322 7 - small nuclear ribonucleoprotein polypeptide G pseudogene 3 pseudo SNRPGP3 small nuclear ribonucleoprotein polypeptide G pseudogene 3 O - 20121230 -9606 100874408 SNRPGP7 - - HGNC:39326 2 - small nuclear ribonucleoprotein polypeptide G pseudogene 7 pseudo SNRPGP7 small nuclear ribonucleoprotein polypeptide G pseudogene 7 O - 20121230 -9606 100874409 SNRPGP8 - - HGNC:39327 2 - small nuclear ribonucleoprotein polypeptide G pseudogene 8 pseudo SNRPGP8 small nuclear ribonucleoprotein polypeptide G pseudogene 8 O - 20121230 -9606 100874410 HMGN1P9 - - HGNC:39352 3 - high mobility group nucleosome binding domain 1 pseudogene pseudo HMGN1P9 high mobility group nucleosome binding domain 1 pseudogene O - 20121230 -9606 100874411 SNRPFP2 - - HGNC:39665 1 - small nuclear ribonucleoprotein polypeptide F pseudogene 2 pseudo SNRPFP2 small nuclear ribonucleoprotein polypeptide F pseudogene 2 O - 20121230 -9606 100874412 SNRPFP4 - - HGNC:39667 3 - small nuclear ribonucleoprotein polypeptide F pseudogene 4 pseudo SNRPFP4 small nuclear ribonucleoprotein polypeptide F pseudogene 4 O - 20121230 -9606 100874413 SNRPEP5 - - HGNC:43447 2 - small nuclear ribonucleoprotein polypeptide E pseudogene 5 pseudo SNRPEP5 small nuclear ribonucleoprotein polypeptide E pseudogene 5 O - 20121230 -9606 100874414 SNRPEP6 - - HGNC:43571 6 - small nuclear ribonucleoprotein polypeptide E pseudogene 6 pseudo SNRPEP6 small nuclear ribonucleoprotein polypeptide E pseudogene 6 O - 20121230 -9606 100874415 SNRPEP7 - - HGNC:43572 1 - small nuclear ribonucleoprotein polypeptide E pseudogene 7 pseudo SNRPEP7 small nuclear ribonucleoprotein polypeptide E pseudogene 7 O - 20121230 -9606 100874416 SNRPEP9 - - HGNC:43574 X - small nuclear ribonucleoprotein polypeptide E pseudogene 9 pseudo SNRPEP9 small nuclear ribonucleoprotein polypeptide E pseudogene 9 O - 20121230 -9606 100874417 TIMM8BP2 - - HGNC:39212 X - translocase of inner mitochondrial membrane 8B pseudogene 2 pseudo TIMM8BP2 translocase of inner mitochondrial membrane 8B pseudogene 2 O - 20121230 -9606 100874418 SNRPGP5 - - HGNC:39324 10 - small nuclear ribonucleoprotein polypeptide G pseudogene 5 pseudo SNRPGP5 small nuclear ribonucleoprotein polypeptide G pseudogene 5 O - 20121230 -9606 100874419 IPPKP1 - - HGNC:39390 13 - inositol 1,3,4,5,6-pentakisphosphate 2-kinase pseudogene 1 pseudo IPPKP1 inositol 1,3,4,5,6-pentakisphosphate 2-kinase pseudogene 1 O - 20121230 -9606 100874420 ARL2BPP5 - - HGNC:39449 5 - ADP-ribosylation factor-like 2 binding protein pseudogene 5 pseudo ARL2BPP5 ADP-ribosylation factor-like 2 binding protein pseudogene 5 O - 20121230 -9606 100874421 ARL2BPP6 - - HGNC:39450 5 - ADP-ribosylation factor-like 2 binding protein pseudogene 6 pseudo ARL2BPP6 ADP-ribosylation factor-like 2 binding protein pseudogene 6 O - 20121230 -9606 100874422 SNRPFP3 - - HGNC:39666 13 - small nuclear ribonucleoprotein polypeptide F pseudogene 3 pseudo SNRPFP3 small nuclear ribonucleoprotein polypeptide F pseudogene 3 O - 20121230 -9606 100874423 SNRPEP8 - - HGNC:43573 10 - small nuclear ribonucleoprotein polypeptide E pseudogene 8 pseudo SNRPEP8 small nuclear ribonucleoprotein polypeptide E pseudogene 8 O - 20121230 -9606 100874424 SNRPEP10 - - HGNC:43575 1 - small nuclear ribonucleoprotein polypeptide E pseudogene 10 pseudo SNRPEP10 small nuclear ribonucleoprotein polypeptide E pseudogene 10 O - 20121230 -9606 100874425 TIMM8BP1 - - HGNC:39211 13 - translocase of inner mitochondrial membrane 8B pseudogene 1 pseudo TIMM8BP1 translocase of inner mitochondrial membrane 8B pseudogene 1 O - 20121230 -9606 100874426 SNRPGP11 - - HGNC:39330 13 - small nuclear ribonucleoprotein polypeptide G pseudogene 11 pseudo SNRPGP11 small nuclear ribonucleoprotein polypeptide G pseudogene 11 O - 20121230 -9606 100874427 SNRPGP12 - - HGNC:39331 10 - small nuclear ribonucleoprotein polypeptide G pseudogene 12 pseudo SNRPGP12 small nuclear ribonucleoprotein polypeptide G pseudogene 12 O - 20121230 -9606 100874428 SNRPGP13 - - HGNC:39332 21 - small nuclear ribonucleoprotein polypeptide G pseudogene 13 pseudo SNRPGP13 small nuclear ribonucleoprotein polypeptide G pseudogene 13 O - 20121230 -9606 100874429 HMGN1P5 - - HGNC:39348 1 - high mobility group nucleosome binding domain 1 pseudogene 5 pseudo HMGN1P5 high mobility group nucleosome binding domain 1 pseudogene 5 O - 20121230 -9606 100874430 HMGN1P6 - - HGNC:39349 2 - high mobility group nucleosome binding domain 1 pseudogene 6 pseudo HMGN1P6 high mobility group nucleosome binding domain 1 pseudogene 6 O - 20121230 -9606 100874431 HMGN1P8 - - HGNC:39351 3 - high mobility group nucleosome binding domain 1 pseudogene 8 pseudo HMGN1P8 high mobility group nucleosome binding domain 1 pseudogene 8 O - 20121230 -9606 100874432 TCEAL4P1 - - HGNC:39582 13 - transcription elongation factor A (SII)-like 4 pseudogene 1 pseudo TCEAL4P1 transcription elongation factor A (SII)-like 4 pseudogene 1 O - 20121230 -9606 100874433 IQCJ-SCHIP1-AS1 - uaz98 HGNC:41303 3 - IQCJ-SCHIP1 readthrough antisense RNA 1 miscRNA IQCJ-SCHIP1-AS1 IQCJ-SCHIP1 readthrough antisense RNA 1 O - 20121021 -9606 100874434 SNRPGP14 - - HGNC:42039 13 - small nuclear ribonucleoprotein polypeptide G pseudogene 14 pseudo SNRPGP14 small nuclear ribonucleoprotein polypeptide G pseudogene 14 O - 20121230 -9606 100874435 HIGD1AP4 - - HGNC:43000 2 - HIG1 hypoxia inducible domain family, member 1A pseudogene 4 pseudo HIGD1AP4 HIG1 hypoxia inducible domain family, member 1A pseudogene 4 O - 20121230 -9606 100874436 HIGD1AP6 - - HGNC:43001 8 - HIG1 hypoxia inducible domain family, member 1A pseudogene 6 pseudo HIGD1AP6 HIG1 hypoxia inducible domain family, member 1A pseudogene 6 O - 20121230 -9606 100874437 HIGD1AP7 - - HGNC:43002 7 - HIG1 hypoxia inducible domain family, member 1A pseudogene 7 pseudo HIGD1AP7 HIG1 hypoxia inducible domain family, member 1A pseudogene 7 O - 20121230 -9606 100874438 HMGN1P10 - - HGNC:39353 3 - high mobility group nucleosome binding domain 1 pseudogene 10 pseudo HMGN1P10 high mobility group nucleosome binding domain 1 pseudogene 10 O - 20121230 -9606 100874439 HMGN1P13 - - HGNC:39357 5 - high mobility group nucleosome binding domain 1 pseudogene 13 pseudo HMGN1P13 high mobility group nucleosome binding domain 1 pseudogene 13 O - 20121230 -9606 100874440 HMGN1P14 - - HGNC:39358 5 - high mobility group nucleosome binding domain 1 pseudogene 14 pseudo HMGN1P14 high mobility group nucleosome binding domain 1 pseudogene 14 O - 20121230 -9606 100874441 HMGN1P15 - - HGNC:39359 5 - high mobility group nucleosome binding domain 1 pseudogene 15 pseudo HMGN1P15 high mobility group nucleosome binding domain 1 pseudogene 15 O - 20121230 -9606 100874442 HMGN1P16 - - HGNC:39360 5 - high mobility group nucleosome binding domain 1 pseudogene 16 pseudo HMGN1P16 high mobility group nucleosome binding domain 1 pseudogene 16 O - 20121230 -9606 100874443 HMGN1P17 - - HGNC:39361 5 - high mobility group nucleosome binding domain 1 pseudogene 17 pseudo HMGN1P17 high mobility group nucleosome binding domain 1 pseudogene 17 O - 20121230 -9606 100874444 HMGN1P18 - - HGNC:39362 7 - high mobility group nucleosome binding domain 1 pseudogene 18 pseudo HMGN1P18 high mobility group nucleosome binding domain 1 pseudogene 18 O - 20121230 -9606 100874445 HMGN1P19 - - HGNC:39363 7 - high mobility group nucleosome binding domain 1 pseudogene 19 pseudo HMGN1P19 high mobility group nucleosome binding domain 1 pseudogene 19 O - 20121230 -9606 100874446 HMGN1P33 - - HGNC:39377 X - high mobility group nucleosome binding domain 1 pseudogene 33 pseudo HMGN1P33 high mobility group nucleosome binding domain 1 pseudogene 33 O - 20121230 -9606 100874447 HMGN1P34 - - HGNC:39378 X - high mobility group nucleosome binding domain 1 pseudogene 34 pseudo HMGN1P34 high mobility group nucleosome binding domain 1 pseudogene 34 O - 20121230 -9606 100874448 HMGN1P35 - - HGNC:39379 X - high mobility group nucleosome binding domain 1 pseudogene 35 pseudo HMGN1P35 high mobility group nucleosome binding domain 1 pseudogene 35 O - 20121230 -9606 100874449 ARL2BPP10 - - HGNC:39454 22 - ADP-ribosylation factor-like 2 binding protein pseudogene 10 pseudo ARL2BPP10 ADP-ribosylation factor-like 2 binding protein pseudogene 10 O - 20121230 -9606 100874450 HIGD1AP2 - - HGNC:42642 13 - HIG1 hypoxia inducible domain family, member 1A pseudogene 2 pseudo HIGD1AP2 HIG1 hypoxia inducible domain family, member 1A pseudogene 2 O - 20121230 -9606 100874451 HIGD1AP8 - - HGNC:43003 12 - HIG1 hypoxia inducible domain family, member 1A pseudogene 8 pseudo HIGD1AP8 HIG1 hypoxia inducible domain family, member 1A pseudogene 8 O - 20121230 -9606 100874452 HIGD1AP9 - - HGNC:43004 12 - HIG1 hypoxia inducible domain family, member 1A pseudogene 9 pseudo HIGD1AP9 HIG1 hypoxia inducible domain family, member 1A pseudogene 9 O - 20121230 -9606 100874453 HIGD1AP11 - - HGNC:43006 1 - HIG1 hypoxia inducible domain family, member 1A pseudogene 11 pseudo HIGD1AP11 HIG1 hypoxia inducible domain family, member 1A pseudogene 11 O - 20121230 -9606 100874454 HIGD1AP13 - - HGNC:43008 4 - HIG1 hypoxia inducible domain family, member 1A pseudogene 13 pseudo HIGD1AP13 HIG1 hypoxia inducible domain family, member 1A pseudogene 13 O - 20121230 -9606 100874455 HIGD1AP14 - - HGNC:43009 4 - HIG1 hypoxia inducible domain family, member 1A pseudogene 14 pseudo HIGD1AP14 HIG1 hypoxia inducible domain family, member 1A pseudogene 14 O - 20121230 -9606 100874456 HIGD1AP18 - - HGNC:43013 8 - HIG1 hypoxia inducible domain family, member 1A pseudogene 18 pseudo HIGD1AP18 HIG1 hypoxia inducible domain family, member 1A pseudogene 18 O - 20121230 -9606 100874457 CASP1P1 - - HGNC:43775 11 - caspase 1, apoptosis-related cysteine peptidase pseudogene 1 pseudo CASP1P1 caspase 1, apoptosis-related cysteine peptidase pseudogene 1 O - 20121230 -9606 100874458 HMGN2P14 - - HGNC:23341 14 - high mobility group nucleosomal binding domain 2 pseudogene14 pseudo HMGN2P14 high mobility group nucleosomal binding domain 2 pseudogene14 O - 20121230 -9606 100874459 HMGN1P20 - - HGNC:39364 10 - high mobility group nucleosome binding domain 1 pseudogene 20 pseudo HMGN1P20 high mobility group nucleosome binding domain 1 pseudogene 20 O - 20121230 -9606 100874460 HMGN1P22 - - HGNC:39366 11 - high mobility group nucleosome binding domain 1 pseudogene 22 pseudo HMGN1P22 high mobility group nucleosome binding domain 1 pseudogene 22 O - 20121230 -9606 100874461 HMGN1P23 - - HGNC:39367 12 - high mobility group nucleosome binding domain 1 pseudogene 23 pseudo HMGN1P23 high mobility group nucleosome binding domain 1 pseudogene 23 O - 20121230 -9606 100874462 HMGN1P24 - - HGNC:39368 13 - high mobility group nucleosome binding domain 1 pseudogene 24 pseudo HMGN1P24 high mobility group nucleosome binding domain 1 pseudogene 24 O - 20121230 -9606 100874463 HMGN1P27 - - HGNC:39371 15 - high mobility group nucleosome binding domain 1 pseudogene 27 pseudo HMGN1P27 high mobility group nucleosome binding domain 1 pseudogene 27 O - 20121230 -9606 100874464 HMGN1P28 - - HGNC:39372 17 - high mobility group nucleosome binding domain 1 pseudogene 28 pseudo HMGN1P28 high mobility group nucleosome binding domain 1 pseudogene 28 O - 20121230 -9606 100874465 HMGN1P32 - - HGNC:39376 19 - high mobility group nucleosome binding domain 1 pseudogene 32 pseudo HMGN1P32 high mobility group nucleosome binding domain 1 pseudogene 32 O - 20121230 -9606 100874466 HMGN2P19 - - HGNC:39383 1 - high mobility group nucleosomal binding domain 2 pseudogene 19 pseudo HMGN2P19 high mobility group nucleosomal binding domain 2 pseudogene 19 O - 20121230 -9606 100874467 HMGN2P21 - - HGNC:39386 2 - high mobility group nucleosomal binding domain 2 pseudogene 21 pseudo HMGN2P21 high mobility group nucleosomal binding domain 2 pseudogene 21 O - 20121230 -9606 100874468 HMGN2P22 - - HGNC:39387 2 - high mobility group nucleosomal binding domain 2 pseudogene 22 pseudo HMGN2P22 high mobility group nucleosomal binding domain 2 pseudogene 22 O - 20121230 -9606 100874469 HMGN2P23 - - HGNC:39388 2 - high mobility group nucleosomal binding domain 2 pseudogene 23 pseudo HMGN2P23 high mobility group nucleosomal binding domain 2 pseudogene 23 O - 20121230 -9606 100874470 HMGN2P26 - - HGNC:39393 3 - high mobility group nucleosomal binding domain 2 pseudogene 26 pseudo HMGN2P26 high mobility group nucleosomal binding domain 2 pseudogene 26 O - 20121230 -9606 100874471 HMGN2P27 - - HGNC:39394 5 - high mobility group nucleosomal binding domain 2 pseudogene 27 pseudo HMGN2P27 high mobility group nucleosomal binding domain 2 pseudogene 27 O - 20121230 -9606 100874472 HMGN2P29 - - HGNC:39396 6 - high mobility group nucleosomal binding domain 2 pseudogene 29 pseudo HMGN2P29 high mobility group nucleosomal binding domain 2 pseudogene 29 O - 20121230 -9606 100874473 HMGN2P32 - - HGNC:39403 9 - high mobility group nucleosomal binding domain 2 pseudogene 32 pseudo HMGN2P32 high mobility group nucleosomal binding domain 2 pseudogene 32 O - 20121230 -9606 100874474 HMGN2P33 - - HGNC:39404 9 - high mobility group nucleosomal binding domain 2 pseudogene 33 pseudo HMGN2P33 high mobility group nucleosomal binding domain 2 pseudogene 33 O - 20121230 -9606 100874475 HMGN2P45 - - HGNC:39416 X - high mobility group nucleosomal binding domain 2 pseudogene 45 pseudo HMGN2P45 high mobility group nucleosomal binding domain 2 pseudogene 45 O - 20121230 -9606 100874476 HIGD1AP16 - - HGNC:43011 20 - HIG1 hypoxia inducible domain family, member 1A pseudogene 16 pseudo HIGD1AP16 HIG1 hypoxia inducible domain family, member 1A pseudogene 16 O - 20121230 -9606 100874477 HIGD1AP17 - - HGNC:43012 14 - HIG1 hypoxia inducible domain family, member 1A pseudogene 17 pseudo HIGD1AP17 HIG1 hypoxia inducible domain family, member 1A pseudogene 17 O - 20121230 -9606 100874478 HMGN2P34 - - HGNC:39405 10 - high mobility group nucleosomal binding domain 2 pseudogene 34 pseudo HMGN2P34 high mobility group nucleosomal binding domain 2 pseudogene 34 O - 20121230 -9606 100874479 HMGN2P35 - - HGNC:39406 10 - high mobility group nucleosomal binding domain 2 pseudogene 35 pseudo HMGN2P35 high mobility group nucleosomal binding domain 2 pseudogene 35 O - 20121230 -9606 100874480 HMGN2P36 - - HGNC:39407 11 - high mobility group nucleosomal binding domain 2 pseudogene 36 pseudo HMGN2P36 high mobility group nucleosomal binding domain 2 pseudogene 36 O - 20121230 -9606 100874481 HMGN2P37 - - HGNC:39408 11 - high mobility group nucleosomal binding domain 2 pseudogene 37 pseudo HMGN2P37 high mobility group nucleosomal binding domain 2 pseudogene 37 O - 20121230 -9606 100874482 HMGN2P38 - - HGNC:39409 11 - high mobility group nucleosomal binding domain 2 pseudogene 38 pseudo HMGN2P38 high mobility group nucleosomal binding domain 2 pseudogene 38 O - 20121230 -9606 100874483 HMGN2P39 - - HGNC:39410 13 - high mobility group nucleosomal binding domain 2 pseudogene 39 pseudo HMGN2P39 high mobility group nucleosomal binding domain 2 pseudogene 39 O - 20121230 -9606 100874484 HMGN2P40 - - HGNC:39411 15 - high mobility group nucleosomal binding domain 2 pseudogene 40 pseudo HMGN2P40 high mobility group nucleosomal binding domain 2 pseudogene 40 O - 20121230 -9606 100874485 HMGN2P42 - - HGNC:39413 17 - high mobility group nucleosomal binding domain 2 pseudogene 42 pseudo HMGN2P42 high mobility group nucleosomal binding domain 2 pseudogene 42 O - 20121230 -9606 100874486 HMGN2P43 - - HGNC:39414 17 - high mobility group nucleosomal binding domain 2 pseudogene 43 pseudo HMGN2P43 high mobility group nucleosomal binding domain 2 pseudogene 43 O - 20121230 -9606 100874487 HMGN2P44 - - HGNC:39415 18 - high mobility group nucleosomal binding domain 2 pseudogene 44 pseudo HMGN2P44 high mobility group nucleosomal binding domain 2 pseudogene 44 O - 20121230 -9606 100874488 NIPA2P5 - - HGNC:42045 13 - non imprinted in Prader-Willi/Angelman syndrome 2 pseudogene 5 pseudo NIPA2P5 non imprinted in Prader-Willi/Angelman syndrome 2 pseudogene 5 O - 20121230 -9606 100874489 DDX3YP2 - - HGNC:42172 X - DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked pseudogene 2 pseudo DDX3YP2 DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked pseudogene 2 O - 20121230 -9606 100874490 EEF1A1P40 - - HGNC:37918 X - eukaryotic translation elongation factor 1 alpha 1 pseudogene 40 pseudo EEF1A1P40 eukaryotic translation elongation factor 1 alpha 1 pseudogene 40 O - 20121230 -9606 100874491 EEF1A1P41 - - HGNC:38799 Y - eukaryotic translation elongation factor 1 alpha 1 pseudogene 41 pseudo EEF1A1P41 eukaryotic translation elongation factor 1 alpha 1 pseudogene 41 O - 20121230 -9606 100874492 BRK1P2 - - HGNC:42021 13 - BRICK1, SCAR/WAVE actin-nucleating complex subunit pseudogene 2 pseudo BRK1P2 BRICK1, SCAR/WAVE actin-nucleating complex subunit pseudogene 2 O - 20121230 -9606 100874493 PIEZO1P2 - - HGNC:42861 20 - piezo-type mechanosensitive ion channel component 1 pseudogene 2 pseudo PIEZO1P2 piezo-type mechanosensitive ion channel component 1 pseudogene 2 O - 20121230 -9606 100874494 CYP46A4P - - HGNC:42349 1 - cytochrome P450, family 46, subfamily A, polypeptide 4, pseudogene pseudo CYP46A4P cytochrome P450, family 46, subfamily A, polypeptide 4, pseudogene O - 20121230 -9606 100874495 CYP4A43P - - HGNC:42417 1 - cytochrome P450, family 4, subfamily A, polypeptide 43, pseudogene pseudo CYP4A43P cytochrome P450, family 4, subfamily A, polypeptide 43, pseudogene O - 20120404 -9606 100874496 CYP3A51P - - HGNC:42418 7 - cytochrome P450, family 3, subfamily A, polypeptide 51, pseudogene pseudo CYP3A51P cytochrome P450, family 3, subfamily A, polypeptide 51, pseudogene O - 20120404 -9606 100874497 RBMY1KP - RBMY1K HGNC:38750 Y - RNA binding motif protein, Y-linked, family 1, member K, pseudogene pseudo RBMY1KP RNA binding motif protein, Y-linked, family 1, member K, pseudogene O - 20121209 -9606 100874498 SPTLC1P2 - - HGNC:39669 6 - serine palmitoyltransferase, long chain base subunit 1 pseudogene 2 pseudo SPTLC1P2 serine palmitoyltransferase, long chain base subunit 1 pseudogene 2 O - 20121230 -9606 100874499 SPTLC1P3 - - HGNC:39670 6 - serine palmitoyltransferase, long chain base subunit 1 pseudogene 3 pseudo SPTLC1P3 serine palmitoyltransferase, long chain base subunit 1 pseudogene 3 O - 20121230 -9606 100874500 SPTLC1P4 - - HGNC:39671 1 - serine palmitoyltransferase, long chain base subunit 1 pseudogene 4 pseudo SPTLC1P4 serine palmitoyltransferase, long chain base subunit 1 pseudogene 4 O - 20121230 -9606 100874501 NME1P1 - - HGNC:39904 13 - NME/NM23 nucleoside diphosphate kinase 1 pseudogene 1 pseudo NME1P1 NME/NM23 nucleoside diphosphate kinase 1 pseudogene 1 O - 20121230 -9606 100874502 ATP6V0E1P1 - - HGNC:41935 5 - ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 pseudogene 1 pseudo ATP6V0E1P1 ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 pseudogene 1 O - 20121230 -9606 100874503 ATP6V0E1P2 - - HGNC:41936 3 - ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 pseudogene 2 pseudo ATP6V0E1P2 ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 pseudogene 2 O - 20121230 -9606 100874504 ATP6V0E1P4 - - HGNC:41938 1 - ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 pseudogene 4 pseudo ATP6V0E1P4 ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 pseudogene 4 O - 20121230 -9606 100874505 CYP2C59P - - HGNC:42406 10 - cytochrome P450, family 2, subfamily C, polypeptide 59, pseudogene pseudo CYP2C59P cytochrome P450, family 2, subfamily C, polypeptide 59, pseudogene O - 20121230 -9606 100874506 CHCHD2P1 - - HGNC:39585 X - coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 1 pseudo CHCHD2P1 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 1 O - 20121230 -9606 100874507 CHCHD2P4 - - HGNC:39588 6 - coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 4 pseudo CHCHD2P4 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 4 O - 20121230 -9606 100874508 CHCHD2P5 - - HGNC:39589 1 - coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 5 pseudo CHCHD2P5 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 5 O - 20121230 -9606 100874509 CHCHD2P7 - - HGNC:39591 4 - coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 7 pseudo CHCHD2P7 coiled-coil-helix-coiled-coil-helix domain containing 2 pseudogene 7 O - 20121230 -9606 100874510 PSMA6P3 - - HGNC:39608 21 - proteasome (prosome, macropain) subunit, alpha type, 6 pseudogene 3 pseudo PSMA6P3 proteasome (prosome, macropain) subunit, alpha type, 6 pseudogene 3 O - 20121230 -9606 100874511 SPTLC1P1 - - HGNC:39668 10 - serine palmitoyltransferase, long chain base subunit 1 pseudogene 1 pseudo SPTLC1P1 serine palmitoyltransferase, long chain base subunit 1 pseudogene 1 O - 20121230 -9606 100874512 SPTLC1P5 - - HGNC:39672 13 - serine palmitoyltransferase, long chain base subunit 1 pseudogene 5 pseudo SPTLC1P5 serine palmitoyltransferase, long chain base subunit 1 pseudogene 5 O - 20121230 -9606 100874513 CYP2C115P - CYP2C9-de1b HGNC:42405 10 - cytochrome P450, family 2, subfamily C, polypeptide 115, pseudogene pseudo CYP2C115P cytochrome P450, family 2, subfamily C, polypeptide 115, pseudogene O - 20121230 -9606 100874514 ATP6V1G1P7 - - HGNC:39852 13 - ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 7 pseudo ATP6V1G1P7 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 pseudogene 7 O - 20121230 -9606 100874515 POLR2KP1 - - HGNC:42650 12 - polymerase (RNA) II (DNA directed) polypeptide K, 7.0kDa pseudogene 1 pseudo POLR2KP1 polymerase (RNA) II (DNA directed) polypeptide K, 7.0kDa pseudogene 1 O - 20121230 -9606 100874516 LAMTOR3P2 - - HGNC:39727 5 - late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 pseudogene 2 pseudo LAMTOR3P2 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 pseudogene 2 O - 20121230 -9606 100874517 TOMM22P4 - - HGNC:38740 4 - translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 4 pseudo TOMM22P4 translocase of outer mitochondrial membrane 22 homolog (yeast) pseudogene 4 O - 20121230 -9606 100874518 ATP8A2P3 - - HGNC:42641 13 - ATPase, aminophospholipid transporter, class I, type 8A, member 2 pseudogene 3 pseudo ATP8A2P3 ATPase, aminophospholipid transporter, class I, type 8A, member 2 pseudogene 3 O - 20121230 -9606 100874519 TCEB2P4 - - HGNC:39722 10 - transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) pseudogene 4 pseudo TCEB2P4 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) pseudogene 4 O - 20121230 -9606 100874520 PCMTD1P1 - - HGNC:38804 Y - protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 pseudogene 1 pseudo PCMTD1P1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 pseudogene 1 O - 20121230 -9606 100874521 ST13P22 - - HGNC:38865 12 - suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 22 pseudo ST13P22 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) pseudogene 22 O - 20121230 -9606 100874522 SLC25A15P2 - - HGNC:39843 13 - solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 pseudogene 2 pseudo SLC25A15P2 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 pseudogene 2 O - 20121230 -9606 100874523 HIF1AP1 - - HGNC:43016 14 - hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor) pseudogene 1 pseudo HIF1AP1 hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor) pseudogene 1 O - 20121230 -9606 100874524 ST6GALNAC4P1 - - HGNC:39660 13 - ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 pseudogene 1 pseudo ST6GALNAC4P1 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 pseudogene 1 O - 20121230 -9606 100874527 C16DELQ22 - DEL16q22 MIM:614541 16 16q22 Chromosome 16q22 deletion syndrome unknown - - - - 20120622 -9606 100874528 XXYLT1-AS1 - - HGNC:41153 3 3q29 XXYLT1 antisense RNA 1 miscRNA XXYLT1-AS1 XXYLT1 antisense RNA 1 O - 20121021 -9606 100874529 MPRIP-AS1 - - HGNC:41263 17 17p11.2 MPRIP antisense RNA 1 miscRNA MPRIP-AS1 MPRIP antisense RNA 1 O - 20121021 -9606 100874530 APOBEC3B-AS1 - - HGNC:43836 22 22q13.1 APOBEC3B antisense RNA 1 miscRNA APOBEC3B-AS1 APOBEC3B antisense RNA 1 O - 20121021 -9606 100874531 LINC00581 - - HGNC:43840 6 6p22.3 long intergenic non-protein coding RNA 581 miscRNA LINC00581 long intergenic non-protein coding RNA 581 O - 20120508 -9606 100874532 IBGC2 - - MIM:606656 2 2q37 Basal ganglia calcification, idiopathic, 2 unknown - - - - 20120622 -9606 100874533 DUPXQ27.3Q28 - CXDUPq27.3q28 MIM:300869 X Xq27.3-q28 Chromosome Xq27.3-q28 duplication syndrome unknown - - - - 20120622 -9606 100884129 DUP17Q12 - C17DUPq12 MIM:614526 17 17q12 Chromosome 17q12 duplication syndrome unknown - - - - 20120622 -9606 100884130 DEL17Q12 - C17DELq12 MIM:614527 17 17q12 Chromosome 17q12 deletion syndrome unknown - - - - 20120622 -9606 100884155 MTND2P9 - - HGNC:42110 9 9q21.31 MT-ND2 pseudogene 9 pseudo MTND2P9 MT-ND2 pseudogene 9 O - 20121230 -9606 100884169 LOC100884169 - - - 5 - NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 12 pseudogene pseudo - - - - 20121230 -9606 100885773 DYT21 - - HGNC:39436|MIM:614588 2 2q14.3-q21.3 dystonia 21, torsion (autosomal dominant) unknown DYT21 dystonia 21, torsion (autosomal dominant) O - 20120622 -9606 100885774 PDCOS - - MIM:614590 6 6p21.3 Podoconiosis, susceptibility to unknown - - - - 20120622 -9606 100885775 BANCR - LINC00586 HGNC:43877 9 - BRAF-activated non-protein coding RNA miscRNA BANCR BRAF-activated non-protein coding RNA O - 20121230 -9606 100885776 UGDH-AS1 - - HGNC:40601 4 4p UGDH antisense RNA 1 miscRNA UGDH-AS1 UGDH antisense RNA 1 O - 20121230 -9606 100885777 PCCA-AS1 - - HGNC:39901 13 13q32.3 PCCA antisense RNA 1 miscRNA PCCA-AS1 PCCA antisense RNA 1 O - 20121230 -9606 100885778 NALCN-AS1 - - HGNC:42743 13 13q33.1 NALCN antisense RNA 1 miscRNA NALCN-AS1 NALCN antisense RNA 1 O - 20121230 -9606 100885779 LINC-ROR - lincRNA-RoR HGNC:43773 18 18q21.31 long intergenic non-protein coding RNA, regulator of reprogramming miscRNA LINC-ROR long intergenic non-protein coding RNA, regulator of reprogramming O - 20121230 -9606 100885780 VWC2L-IT1 - - HGNC:41508 2 2q35 VWC2L intronic transcript 1 (non-protein coding) miscRNA VWC2L-IT1 VWC2L intronic transcript 1 (non-protein coding) O - 20121230 -9606 100885781 LINC00348 - - HGNC:42658 13 13q21.33 long intergenic non-protein coding RNA 348 miscRNA LINC00348 long intergenic non-protein coding RNA 348 O - 20121230 -9606 100885782 MYO16-AS1 - - HGNC:39913 13 13q33.3 MYO16 antisense RNA 1 miscRNA MYO16-AS1 MYO16 antisense RNA 1 O - 20121230 -9606 100885786 NMLFS - C8DELq22.1|DEL8q22.1 MIM:608156 8 8q22.1 Nablus mask-like facial syndrome unknown - - - - 20120622 -9606 100885787 DEL8Q12Q21 - C8DELq12q21 MIM:600257 8 8q12.2-q21.2 Bor-Duane hydrocephalus contiguous gene syndrome unknown - - - - 20120622 -9606 100885788 OTDD - C11DELq13|DEL11q13 MIM:166750 11 11q13 Otodental dysplasia chromsome deletion syndrome unknown - - - - 20120622 -9606 100885789 IFNG-AS1 - Tmevpg1 HGNC:43910 12 12q15 IFNG antisense RNA 1 miscRNA IFNG-AS1 IFNG antisense RNA 1 O - 20121104 -9606 100885795 LARS2-AS1 - - HGNC:40796 3 3p21.31 LARS2 antisense RNA 1 miscRNA LARS2-AS1 LARS2 antisense RNA 1 O - 20121230 -9606 100885796 SLC9A9-AS1 - - HGNC:40928 3 3q24 SLC9A9 antisense RNA 1 miscRNA SLC9A9-AS1 SLC9A9 antisense RNA 1 O - 20121230 -9606 100885797 BPY2DP - - HGNC:38794 Y Yp11.2 basic charge, Y-linked, 2D, pseudogene pseudo BPY2DP basic charge, Y-linked, 2D, pseudogene O - 20121230 -9606 100885798 LINC00210 - NCRNA00210 HGNC:37458 1 1q41 long intergenic non-protein coding RNA 210 miscRNA LINC00210 long intergenic non-protein coding RNA 210 O - 20121230 -9606 100885799 ENO1P4 - - HGNC:37945 2 2q33.1 enolase 1, (alpha) pseudogene 4 pseudo ENO1P4 enolase 1, (alpha) pseudogene 4 O - 20121230 -9606 100885800 SNAP47-AS1 - SNAP47-IT1 HGNC:41501 1 1q42.13 SNAP47 antisense RNA 1 miscRNA SNAP47-AS1 SNAP47 antisense RNA 1 O - 20121021 -9606 100885801 KTCN5 - - MIM:614622 5 5q14.1-q21.3 Keratoconus 5 unknown - - - - 20120622 -9606 100885802 KTCN6 - - MIM:614623 9 9q34 Keratoconus 6 unknown - - - - 20120622 -9606 100885803 KTCN8 - - MIM:614628 14 14q24.3 Keratoconus 8 unknown - - - - 20120622 -9606 100885848 PTGES3L - - HGNC:43943|Ensembl:ENSG00000108825|Ensembl:ENSG00000267060|Vega:OTTHUMG00000180905|Vega:OTTHUMG00000180906 17 17q prostaglandin E synthase 3 (cytosolic)-like protein-coding PTGES3L prostaglandin E synthase 3 (cytosolic)-like O prostaglandin E synthase 3-like|putative protein PTGES3L 20121230 -9606 100885850 PTGES3L-AARSD1 hCG_16967 - HGNC:43946|Ensembl:ENSG00000108825|Vega:OTTHUMG00000180905 17 17q PTGES3L-AARSD1 readthrough protein-coding PTGES3L-AARSD1 PTGES3L-AARSD1 readthrough O PTGES3L-AARSD1 protein 20121230 -9606 100885864 RNA5SP244 - RN5S244 HGNC:43144 7 7q32 RNA, 5S ribosomal pseudogene 244 rRNA RNA5SP244 RNA, 5S ribosomal pseudogene 244 O - 20121230 -9606 100885865 HMGN1P29 - - HGNC:39373 17 - high mobility group nucleosome binding domain 1 pseudogene 29 pseudo HMGN1P29 high mobility group nucleosome binding domain 1 pseudogene 29 O - 20121230 -9606 100885866 MRPS31P4 - - HGNC:42649 13 - mitochondrial ribosomal protein S31 pseudogene 4 pseudo MRPS31P4 mitochondrial ribosomal protein S31 pseudogene 4 O - 20121230 -9606 100886964 PTCSC3 - - HGNC:43959|MIM:614821 14 14q13.3 papillary thyroid carcinoma susceptibility candidate 3 (non-protein coding) miscRNA PTCSC3 papillary thyroid carcinoma susceptibility candidate 3 (non-protein coding) O - 20121230 -9606 100887067 LOC100887067 - - - 5 - keratin 8 pseudogene pseudo - - - - 20121230 -9606 100887068 LOC100887068 - - - 2 - keratin 8 pseudogene pseudo - - - - 20121230 -9606 100887069 LOC100887069 - - - 13 - PHD finger protein 2 pseudogene pseudo - - - - 20120518 -9606 100887070 LOC100887070 - - - 7 - zinc finger protein 729 pseudogene pseudo - - - - 20120518 -9606 100887071 LOC100887071 - - - 19 - zinc finger protein 845 pseudogene pseudo - - - - 20120518 -9606 100887072 LOC100887072 - - - 19 - zinc finger protein 470 pseudogene pseudo - - - - 20121230 -9606 100887073 LOC100887073 - - - Y - double homeobox 4 like 6 pseudogene pseudo - - - - 20121230 -9606 100887074 LOC100887074 - - - 16 - double homeobox 4 like 2 pseudogene pseudo - - - - 20121230 -9606 100887075 ARHGAP42P1 - - HGNC:43940 2 - Rho GTPase activating protein 42 pseudogene 1 pseudo ARHGAP42P1 Rho GTPase activating protein 42 pseudogene 1 O - 20121230 -9606 100887076 LOC100887076 - - - 18 - chromosome 9 open reading frame 172 pseudogene pseudo - - - - 20121230 -9606 100887077 LOC100887077 - - - 7 - endogenous retrovirus group 3, member 1 pseudogene pseudo - - - - 20121230 -9606 100887078 LOC100887078 - - - 1 - endogenous retrovirus group 3, member 1 pseudogene pseudo - - - - 20121230 -9606 100887079 LOC100887079 - - - 8 - ubiquitin specific peptidase 17-like family member 22 pseudogene pseudo - - - - 20121023 -9606 100887080 LOC100887080 - - - 16 - acyl-CoA synthetase medium-chain family member 4 pseudogene pseudo - - - - 20121230 -9606 100887081 LOC100887081 - - - 19 - leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6 pseudogene pseudo - - - - 20120518 -9606 100887740 RNA5SP411 - RN5S411 HGNC:43311 16 16p11.1 RNA, 5S ribosomal pseudogene 411 rRNA RNA5SP411 RNA, 5S ribosomal pseudogene 411 O - 20121230 -9606 100887743 DELXQ21 - CXDELq21 MIM:303110 X Xq21 Choroideremia, deafness, and mental retardation unknown - - - - 20120622 -9606 100887744 RNU6-48 - - HGNC:34292 1 - RNA, U6 small nuclear 48 snRNA RNU6-48 RNA, U6 small nuclear 48 O - 20121230 -9606 100887745 MTND1P13 - - HGNC:42096 22 - MT-ND1 pseudogene 13 pseudo MTND1P13 MT-ND1 pseudogene 13 O - 20121230 -9606 100887746 UNC93B7 - - HGNC:44036 4 - unc-93 homolog B7 pseudogene (C. elegans) pseudo UNC93B7 unc-93 homolog B7 pseudogene (C. elegans) O - 20121230 -9606 100887747 EEF1A1P18 - - HGNC:37891 11 11q eukaryotic translation elongation factor 1 alpha 1 pseudogene 18 pseudo EEF1A1P18 eukaryotic translation elongation factor 1 alpha 1 pseudogene 18 O - 20121230 -9606 100887748 UNC93B8 - - HGNC:44037 4 - unc-93 homolog B8 pseudogene (C. elegans) pseudo UNC93B8 unc-93 homolog B8 pseudogene (C. elegans) O - 20121230 -9606 100887749 MTND1P23 - - HGNC:42092 1 - MT-ND1 pseudogene 23 pseudo MTND1P23 MT-ND1 pseudogene 23 O - 20121230 -9606 100887750 MRPS31P5 - MRPS31P3 HGNC:39253 13 13q mitochondrial ribosomal protein S31 pseudogene 5 pseudo MRPS31P5 mitochondrial ribosomal protein S31 pseudogene 5 O - 20121230 -9606 100887751 MPVQTL6 - - MIM:614646 7 7q22.3 Mean platelet volume QTL6 unknown - - - - 20120622 -9606 100887752 MPVQTL5 - - MIM:614645 6 6q23.3 Mean platelet volume QTL5 unknown - - - - 20120622 -9606 100887753 MPVQTL4 - - MIM:614644 6 6p21.3-p21.2 Mean platelet volume QTL4 unknown - - - - 20120622 -9606 100887754 LINC00359 - - HGNC:42679 13 13q long intergenic non-protein coding RNA 359 miscRNA LINC00359 long intergenic non-protein coding RNA 359 O - 20121230 -9606 100887755 LINC00651 - - HGNC:44307 20 20q13 long intergenic non-protein coding RNA 651 miscRNA LINC00651 long intergenic non-protein coding RNA 651 O - 20121230 -9606 100887822 KTCN7 - - MIM:614629 13 13q32 Keratoconus 7 unknown - - - - 20120622 -9606 100887823 DFNB86 - - HGNC:37289|MIM:614617 16 16p13.3 deafness, autosomal recessive 86 unknown DFNB86 deafness, autosomal recessive 86 O - 20120622 -9606 100887824 DDX11L11 - - - 17 17p13.3 DEAD/H box polypeptide 11 like 11 protein-coding - - - - 20121120 -9606 100909384 DUP16P11.2 - AUTS14B|C16DUPp11.2 MIM:614671 16 16p11.2 Chromosome 16p11.2 duplication syndrome unknown - - - - 20120622 -9606 100909385 STUT4 - - MIM:614668 16 16q12.1-q23.1 Stuttering, familial persistent, 4 unknown - - - - 20120622 -9606 100909386 STUT3 - - MIM:614655 3 3q13.2-q13.33 Stuttering, familial persistent, 3 unknown - - - - 20120622 -9606 100909387 CMH21 - - MIM:614676 7 7p12.1-q21 Cardiomyopathy, familial hypertrophic, 21 unknown - - - - 20120622 -9606 100913082 LOC100913082 - - - 14 14q13-q21 intraflagellar transport 20 homolog (Chlamydomonas) pseudogene pseudo - - - - 20121230 -9606 100913179 LOC100913179 - - - 4 4p15 SRA stem-loop interacting RNA binding protein pseudogene pseudo - - - - 20121230 -9606 100913182 LOC100913182 - - - 6 - MARCKS-like 1 pseudogene pseudo - - - - 20121230 -9606 100913183 LOC100913183 - - - 10 - MARCKS-like 1 pseudogene pseudo - - - - 20121230 -9606 100913186 BDLN1 - - MIM:300054 X Xq24-q28 body length, human homolog of mouse body length 1 unknown - - - - 20120704 -9606 100913187 APOBEC3A_B CTA-150C2.14-001 - HGNC:44196 22 22q13 GRCh37.p9 patch APOBEC3A and APOBEC3B deletion hybrid protein-coding APOBEC3A_B APOBEC3A and APOBEC3B deletion hybrid O probable DNA dC->dU-editing enzyme APOBEC-3A 20121222 -9606 100967223 LOC100967223 - - - 7 7q11 neuroepithelial cell transforming 1 pseudogene pseudo - - - - 20121230 -9606 100967224 LOC100967224 - - - 1 1q31 neuroepithelial cell transforming 1 pseudogene pseudo - - - - 20121230 -9606 100967225 ADAM12-OT1 - CAR10 HGNC:43841 10 10q26.2 ADAM12 overlapping transcript 1 (non-protein coding) miscRNA ADAM12-OT1 ADAM12 overlapping transcript 1 (non-protein coding) O - 20121120 -9606 100996242 LOC100996242 - - - 16 - uncharacterized LOC100996242 miscRNA - - - - 20121222 -9606 100996245 LOC100996245 - - - 9 - peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121209 -9606 100996246 LOC100996246 - - - 12 - uncharacterized LOC100996246 miscRNA - - - - 20121222 -9606 100996247 LOC100996247 - - - 16 - putative uncharacterized protein encoded by LINC00269-like pseudo - - - - 20121209 -9606 100996249 LOC100996249 - - - 7 - uncharacterized LOC100996249 miscRNA - - - - 20121222 -9606 100996250 LOC100996250 - - - 9 - uncharacterized LOC100996250 protein-coding - - - - 20121222 -9606 100996251 LOC100996251 - - - 1 - uncharacterized LOC100996251 miscRNA - - - - 20121230 -9606 100996253 LOC100996253 - - - 2 - uncharacterized LOC100996253 protein-coding - - - - 20121222 -9606 100996254 LOC100996254 - - - 12 - uncharacterized LOC100996254 protein-coding - - - - 20121222 -9606 100996255 LOC100996255 - - - 15 - uncharacterized LOC100996255 miscRNA - - - - 20121230 -9606 100996256 LOC100996256 - - - 7 - uncharacterized LOC100996256 protein-coding - - - - 20121222 -9606 100996258 LOC100996258 - - - 9 - uncharacterized LOC100996258 pseudo - - - - 20121209 -9606 100996259 LOC100996259 - - - 17 - protein FAM106B-like protein-coding - - - - 20121222 -9606 100996260 LOC100996260 - - - 2 - uncharacterized LOC100996260 pseudo - - - - 20121209 -9606 100996261 LOC100996261 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 100996262 LOC100996262 - - - 4 - uncharacterized LOC100996262 pseudo - - - - 20121209 -9606 100996263 LOC100996263 - - - 1 - uncharacterized LOC100996263 miscRNA - - - - 20121222 -9606 100996264 LOC100996264 - - - 17 - prothymosin alpha-like pseudo - - - - 20121209 -9606 100996265 LOC100996265 - - - 1 - putative uncharacterized protein FLJ35883-like pseudo - - - - 20121209 -9606 100996266 LOC100996266 - - - 7 - uncharacterized LOC100996266 miscRNA - - - - 20121222 -9606 100996267 LOC100996267 - - - 13 - uncharacterized LOC100996267 miscRNA - - - - 20121222 -9606 100996268 LOC100996268 - - - 16 - uncharacterized LOC100996268 miscRNA - - - - 20121222 -9606 100996269 LOC100996269 - - - 7 - uncharacterized LOC100996269 miscRNA - - - - 20121222 -9606 100996270 LOC100996270 - - - 15 - polyadenylate-binding protein 4-like pseudo - - - - 20121209 -9606 100996271 LOC100996271 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 100996273 LOC100996273 - - - 17 - uncharacterized LOC100996273 protein-coding - - - - 20121222 -9606 100996274 LOC100996274 - - - 18 - uncharacterized LOC100996274 protein-coding - - - - 20121222 -9606 100996275 LOC100996275 - - - 2 - peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121102 -9606 100996276 LOC100996276 - - - 13 - uncharacterized LOC100996276 protein-coding - - - - 20121222 -9606 100996277 LOC100996277 - - - 16 - uncharacterized LOC100996277 miscRNA - - - - 20121222 -9606 100996278 LOC100996278 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 100996279 LOC100996279 - - - X - putative uncharacterized protein encoded by LINC00269-like protein-coding - - - - 20121222 -9606 100996280 LOC100996280 - - - 14 - uncharacterized LOC100996280 miscRNA - - - - 20121230 -9606 100996281 LOC100996281 - - - 1 - histone H3.2-like pseudo - - - - 20121209 -9606 100996282 LOC100996282 - - - 17 - uncharacterized LOC100996282 protein-coding - - - - 20121222 -9606 100996283 LOC100996283 - - - Un - uncharacterized LOC100996283 protein-coding - - - - 20121222 -9606 100996284 LOC100996284 - - - 1 - Fc receptor-like protein 2-like pseudo - - - - 20121209 -9606 100996285 LOC100996285 - - - 6 - ADP-ribosylation factor-like protein 4A-like pseudo - - - - 20121209 -9606 100996286 LOC100996286 - - - 4 - uncharacterized LOC100996286 miscRNA - - - - 20121222 -9606 100996287 LOC100996287 - - - 9 - uncharacterized LOC100996287 protein-coding - - - - 20121222 -9606 100996288 LOC100996288 - - - 19 - uncharacterized LOC100996288 miscRNA - - - - 20121222 -9606 100996289 LOC100996289 - - Ensembl:ENSG00000214189 19 - uncharacterized LOC100996289 protein-coding - - - - 20121222 -9606 100996290 LOC100996290 - - - 6 - uncharacterized LOC100996290 protein-coding - - - - 20121230 -9606 100996291 LOC100996291 - - - 17 17q25.3 uncharacterized LOC100996291 miscRNA - - - - 20121230 -9606 100996292 LOC100996292 - - - 1 - hydrocephalus-inducing protein homolog pseudo - - - - 20121222 -9606 100996293 LOC100996293 - - - 6 - uncharacterized LOC100996293 pseudo - - - - 20121209 -9606 100996294 LOC100996294 - - - 17 - uncharacterized LOC100996294 pseudo - - - - 20121209 -9606 100996295 LOC100996295 - - - 17 - uncharacterized LOC100996295 protein-coding - - - - 20121222 -9606 100996296 LOC100996296 - - - Un - XK-related protein 3-like pseudo - - - - 20121209 -9606 100996297 LOC100996297 - - - 5 - uncharacterized LOC100996297 pseudo - - - - 20121209 -9606 100996298 LOC100996298 - - - 7 - uncharacterized LOC100996298 miscRNA - - - - 20121222 -9606 100996299 LOC100996299 - - - 15 - uncharacterized LOC100996299 miscRNA - - - - 20121230 -9606 100996300 LOC100996300 - - - 6 - zinc finger protein ENSP00000375192-like protein-coding - - - - 20121222 -9606 100996301 LOC100996301 - - - 1 - uncharacterized LOC100996301 protein-coding - - - - 20121222 -9606 100996302 LOC100996302 - - - Un - uncharacterized LOC100996302 miscRNA - - - - 20121222 -9606 100996303 LOC100996303 - - - 5 - uncharacterized LOC100996303 pseudo - - - - 20121209 -9606 100996304 LOC100996304 - - - 8 - uncharacterized LOC100996304 protein-coding - - - - 20121222 -9606 100996305 LOC100996305 - - - 4 - uncharacterized LOC100996305 miscRNA - - - - 20121222 -9606 100996306 LOC100996306 - - - 9 - tubulin beta-8 chain-like pseudo - - - - 20121209 -9606 100996307 LOC100996307 - - - 19 - uncharacterized LOC100996307 miscRNA - - - - 20121230 -9606 100996309 LOC100996309 - - - 16 - uncharacterized LOC100996309 pseudo - - - - 20121209 -9606 100996310 LOC100996310 - - - 3 - uncharacterized LOC100996310 miscRNA - - - - 20121222 -9606 100996312 LOC100996312 - - - 9 - uncharacterized LOC100996312 protein-coding - - - - 20121222 -9606 100996314 LOC100996314 - - - 19 - putative uncharacterized protein FLJ26174-like protein-coding - - - - 20121222 -9606 100996315 CHIAP3 - - HGNC:44464 1 - chitinase, acidic pseudogene 3 pseudo CHIAP3 chitinase, acidic pseudogene 3 O - 20121102 -9606 100996316 LOC100996316 - - - Un - ankyrin repeat domain-containing protein 20A4-like pseudo - - - - 20121209 -9606 100996317 LOC100996317 - - - 12 - uncharacterized LOC100996317 protein-coding - - - - 20121222 -9606 100996318 LOC100996318 - - - 1 - uncharacterized LOC100996318 protein-coding - - - - 20121222 -9606 100996319 LOC100996319 - - - 5 - uncharacterized LOC100996319 miscRNA - - - - 20121222 -9606 100996321 LOC100996321 - - - 3 - uncharacterized LOC100996321 miscRNA - - - - 20121222 -9606 100996323 LOC100996323 - - - 6 - histone demethylase UTY-like pseudo - - - - 20121209 -9606 100996324 LOC100996324 - - - 18 - uncharacterized LOC100996324 miscRNA - - - - 20121222 -9606 100996325 LOC100996325 - - - 5 - uncharacterized LOC100996325 protein-coding - - - - 20121230 -9606 100996326 LOC100996326 - - - 6 - putative POM121-like protein 1-like pseudo - - - - 20121209 -9606 100996327 LOC100996327 - - - 18 - uncharacterized LOC100996327 pseudo - - - - 20121209 -9606 100996328 LOC100996328 - - - 19 - uncharacterized LOC100996328 miscRNA - - - - 20121222 -9606 100996329 LOC100996329 - - - 16 - putative uncharacterized protein FLJ42384-like protein-coding - - - - 20121222 -9606 100996331 LOC100996331 - - Ensembl:ENSG00000233917|Vega:OTTHUMG00000171734 15 - POTE ankyrin domain family member B-like protein-coding - - - - 20121230 -9606 100996332 LOC100996332 - - - 16 - uncharacterized LOC100996332 miscRNA - - - - 20121230 -9606 100996333 LOC100996333 - - - 18 - G protein-coupled receptor 125 pseudogene pseudo - - - - 20121230 -9606 100996335 LOC100996335 - - - 22 - uncharacterized LOC100996335 pseudo - - - - 20121222 -9606 100996337 LOC100996337 - - - 22 - transmembrane protein 191B-like protein-coding - - - - 20121222 -9606 100996338 LOC100996338 - - - 16 - uncharacterized LOC100996338 miscRNA - - - - 20121222 -9606 100996339 LOC100996339 - - - 14 - uncharacterized LOC100996339 miscRNA - - - - 20121222 -9606 100996341 LOC100996341 - - - 7 - putative uncharacterized protein FLJ11871-like protein-coding - - - - 20121222 -9606 100996342 LOC100996342 - - - 22 - uncharacterized LOC100996342 miscRNA - - - - 20121230 -9606 100996344 LOC100996344 - - - 16 - uncharacterized LOC100996344 miscRNA - - - - 20121222 -9606 100996345 LOC100996345 - - - 16 - uncharacterized LOC100996345 miscRNA - - - - 20121222 -9606 100996346 LOC100996346 - - - 10 - uncharacterized LOC100996346 protein-coding - - - - 20121222 -9606 100996347 LOC100996347 - - - 13 - uncharacterized LOC100996347 miscRNA - - - - 20121222 -9606 100996348 LOC100996348 - - - 8 - uncharacterized LOC100996348 miscRNA - - - - 20121222 -9606 100996349 LOC100996349 - - - 19 - testis-expressed sequence 264 protein-like pseudo - - - - 20121222 -9606 100996350 LOC100996350 - - - 3 - double homeobox protein 4-like protein 4-like protein-coding - - - - 20121222 -9606 100996351 LOC100996351 - - - 19 - uncharacterized LOC100996351 pseudo - - - - 20121209 -9606 100996352 LOC100996352 - - - 8 - uncharacterized LOC100996352 pseudo - - - - 20121209 -9606 100996353 LOC100996353 - - - 16 - uncharacterized LOC100996353 miscRNA - - - - 20121222 -9606 100996354 LOC100996354 - - - 17 - uncharacterized LOC100996354 pseudo - - - - 20121209 -9606 100996355 LOC100996355 - - - 7 - uncharacterized LOC100996355 miscRNA - - - - 20121222 -9606 100996356 LOC100996356 - - - 12 - uncharacterized LOC100996356 protein-coding - - - - 20121222 -9606 100996357 LOC100996357 - - - 6 - uncharacterized LOC100996357 miscRNA - - - - 20121222 -9606 100996360 LOC100996360 - - - 8 - uncharacterized LOC100996360 pseudo - - - - 20121209 -9606 100996361 LOC100996361 - - - 17 - ribosomal protein S6 kinase, 70kDa, polypeptide 1 pseudogene pseudo - - - - 20121230 -9606 100996362 LOC100996362 - - - 7 - C-terminal-binding protein 2-like pseudo - - - - 20121209 -9606 100996363 LOC100996363 - - - 4 - uncharacterized LOC100996363 miscRNA - - - - 20121222 -9606 100996364 LOC100996364 - - - Un - 40S ribosomal protein SA-like pseudo - - - - 20121209 -9606 100996365 LOC100996365 - - - 7 - uncharacterized LOC100996365 pseudo - - - - 20121222 -9606 100996366 LOC100996366 - - - 16 - uncharacterized LOC100996366 miscRNA - - - - 20121222 -9606 100996367 LOC100996367 - - - 19 - uncharacterized LOC100996367 pseudo - - - - 20121209 -9606 100996368 LOC100996368 - - - 17 - uncharacterized LOC100996368 protein-coding - - - - 20121222 -9606 100996369 LOC100996369 - - - 22 - cadherin EGF LAG seven-pass G-type receptor 1-like protein-coding - - - - 20121222 -9606 100996371 LOC100996371 - - - 3 - uncharacterized LOC100996371 miscRNA - - - - 20121222 -9606 100996372 LOC100996372 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 100996374 LOC100996374 - - - 17 - uncharacterized LOC100996374 pseudo - - - - 20121222 -9606 100996375 LOC100996375 - - - Un - angiogenic factor with G patch and FHA domains 1-like pseudo - - - - 20121209 -9606 100996377 LOC100996377 - - - 7 - septin-14-like pseudo - - - - 20121209 -9606 100996378 LOC100996378 - - - 12 - uncharacterized LOC100996378 protein-coding - - - - 20121222 -9606 100996379 LOC100996379 - - - 15 - uncharacterized LOC100996379 pseudo - - - - 20121209 -9606 100996380 LOC100996380 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 100996381 LOC100996381 - - - 19 - uncharacterized LOC100996381 miscRNA - - - - 20121230 -9606 100996382 LOC100996382 - - - 18 - uncharacterized LOC100996382 protein-coding - - - - 20121222 -9606 100996383 LOC100996383 - - - 8 - uncharacterized LOC100996383 protein-coding - - - - 20121222 -9606 100996384 LOC100996384 - - - 5 - aconitate hydratase, mitochondrial-like pseudo - - - - 20121209 -9606 100996385 LOC100996385 - - - 5 - uncharacterized LOC100996385 miscRNA - - - - 20121230 -9606 100996387 LOC100996387 - - - 7 - uncharacterized LOC100996387 pseudo - - - - 20121209 -9606 100996388 LOC100996388 - - - 7 - uncharacterized LOC100996388 miscRNA - - - - 20121222 -9606 100996390 LOC100996390 - - - 9 - protein FAM163B-like protein-coding - - - - 20121222 -9606 100996391 LOC100996391 - - - 5 - uncharacterized LOC100996391 pseudo - - - - 20121209 -9606 100996392 LOC100996392 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 100996394 LOC100996394 - - - 2 - uncharacterized LOC100996394 protein-coding - - - - 20121222 -9606 100996395 LOC100996395 - - - 13 - uncharacterized LOC100996395 miscRNA - - - - 20121222 -9606 100996396 LOC100996396 - - - 9 - ADAMTS-like protein 2-like protein-coding - - - - 20121222 -9606 100996398 LOC100996398 - - - 8 - uncharacterized LOC100996398 miscRNA - - - - 20121222 -9606 100996400 LOC100996400 - - - 18 - uncharacterized LOC100996400 miscRNA - - - - 20121222 -9606 100996401 LOC100996401 - - - 22 - transmembrane protein 191B-like protein-coding - - - - 20121222 -9606 100996402 LOC100996402 - - - 7 - uncharacterized LOC100996402 miscRNA - - - - 20121120 -9606 100996403 LOC100996403 - - - 19 - leukotriene-B(4) omega-hydroxylase 1-like pseudo - - - - 20121209 -9606 100996404 LOC100996404 - - - 22 - uncharacterized LOC100996404 miscRNA - - - - 20121222 -9606 100996405 LOC100996405 - - - 19 - uncharacterized LOC100996405 protein-coding - - - - 20121222 -9606 100996406 LOC100996406 - - - 5 - uncharacterized LOC100996406 pseudo - - - - 20121209 -9606 100996407 LOC100996407 - - - 7 - uncharacterized LOC100996407 protein-coding - - - - 20121222 -9606 100996408 LOC100996408 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 100996409 LOC100996409 - - - 14 - uncharacterized LOC100996409 pseudo - - - - 20121209 -9606 100996410 LOC100996410 - - - 22 - uncharacterized LOC100996410 pseudo - - - - 20121209 -9606 100996411 LOC100996411 - - - 7 - uncharacterized LOC100996411 miscRNA - - - - 20121222 -9606 100996412 LOC100996412 - - - 13 - uncharacterized LOC100996412 protein-coding - - - - 20121222 -9606 100996413 LOC100996413 - - - 15 - uncharacterized LOC100996413 protein-coding - - - - 20121222 -9606 100996414 LOC100996414 - - - 7 - uncharacterized LOC100996414 pseudo - - - - 20121209 -9606 100996415 LOC100996415 - - - 22 - uncharacterized LOC100996415 pseudo - - - - 20121209 -9606 100996416 LOC100996416 - - - 13 - uncharacterized LOC100996416 miscRNA - - - - 20121222 -9606 100996417 LOC100996417 - - - 19 - uncharacterized LOC100996417 miscRNA - - - - 20121222 -9606 100996418 LOC100996418 - - - Un - ankyrin repeat domain-containing protein 20A2-like pseudo - - - - 20121209 -9606 100996419 LOC100996419 - - - 5 - uncharacterized LOC100996419 miscRNA - - - - 20121222 -9606 100996420 LOC100996420 - - - 15 - dynamin-1-like pseudo - - - - 20121209 -9606 100996421 LOC100996421 - - - 5 - uncharacterized LOC100996421 miscRNA - - - - 20121222 -9606 100996422 LOC100996422 - - - 7 - uncharacterized LOC100996422 miscRNA - - - - 20121222 -9606 100996423 LOC100996423 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 100996424 LOC100996424 - - - 5 - uncharacterized LOC100996424 miscRNA - - - - 20121222 -9606 100996425 LOC100996425 - - - 16 - uncharacterized LOC100996425 miscRNA - - - - 20121222 -9606 100996426 LOC100996426 - - - 7 - putative uncharacterized protein encoded by LINC00269-like protein-coding - - - - 20121222 -9606 100996427 LOC100996427 - - - 1 - coiled-coil domain-containing protein 29-like pseudo - - - - 20121209 -9606 100996428 LOC100996428 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 100996430 LOC100996430 - - - 16 - uncharacterized LOC100996430 miscRNA - - - - 20121222 -9606 100996431 LOC100996431 - - - Un - uncharacterized LOC100996431 miscRNA - - - - 20121222 -9606 100996432 LOC100996432 - - Ensembl:ENSG00000236954 22 - paternally-expressed gene 3 protein-like protein-coding - - - - 20121222 -9606 100996433 LOC100996433 - - - 7 - uncharacterized LOC100996433 protein-coding - - - - 20121222 -9606 100996434 LOC100996434 - - - 7 - uncharacterized LOC100996434 pseudo - - - - 20121209 -9606 100996435 CA15P1 - - HGNC:44364 22 - carbonic anhydrase XV, pseudogene 1 pseudo CA15P1 carbonic anhydrase XV, pseudogene 1 O - 20121102 -9606 100996436 LOC100996436 - - - 7 - uncharacterized LOC100996436 pseudo - - - - 20121209 -9606 100996437 LOC100996437 - - - 7 - uncharacterized LOC100996437 miscRNA - - - - 20121222 -9606 100996438 LOC100996438 - - - 14 - mediator of RNA polymerase II transcription subunit 15-like pseudo - - - - 20121209 -9606 100996439 GOLGA8N - - HGNC:44405 15 - golgin A8 family, member N protein-coding GOLGA8N golgin A8 family, member N O golgin subfamily A member 8-like protein 2-like 20121104 -9606 100996440 LOC100996440 - - - 19 - uncharacterized LOC100996440 protein-coding - - - - 20121222 -9606 100996442 LOC100996442 - - - 1 - uncharacterized LOC100996442 miscRNA - - - - 20121222 -9606 100996444 LOC100996444 - - - 5 - uncharacterized LOC100996444 miscRNA - - - - 20121222 -9606 100996445 LOC100996445 - - - 7 - uncharacterized LOC100996445 protein-coding - - - - 20121222 -9606 100996446 LOC100996446 - - - 5 - uncharacterized LOC100996446 miscRNA - - - - 20121222 -9606 100996447 LOC100996447 - - - 3 - uncharacterized LOC100996447 miscRNA - - - - 20121230 -9606 100996448 LOC100996448 - - - 2 - uncharacterized LOC100996448 miscRNA - - - - 20121222 -9606 100996451 LOC100996451 - - - 7 - uncharacterized LOC100996451 protein-coding - - - - 20121222 -9606 100996452 LOC100996452 - - - 5 - uncharacterized LOC100996452 pseudo - - - - 20121222 -9606 100996453 LOC100996453 - - - 11 - uncharacterized LOC100996453 miscRNA - - - - 20121222 -9606 100996455 LOC100996455 - - - 11 11q13.1 uncharacterized LOC100996455 miscRNA - - - - 20121230 -9606 100996456 LOC100996456 - - - 3 - uncharacterized LOC100996456 miscRNA - - - - 20121222 -9606 100996457 LOC100996457 - - - 8 - uncharacterized LOC100996457 miscRNA - - - - 20121222 -9606 100996459 LOC100996459 - - - 7 - uncharacterized LOC100996459 protein-coding - - - - 20121222 -9606 100996460 LOC100996460 - - - 22 - uncharacterized LOC100996460 miscRNA - - - - 20121222 -9606 100996461 LOC100996461 - - - 2 - uncharacterized LOC100996461 protein-coding - - - - 20121102 -9606 100996462 LOC100996462 - - - 8 - uncharacterized LOC100996462 miscRNA - - - - 20121222 -9606 100996463 LOC100996463 - - - 1 - uncharacterized LOC100996463 pseudo - - - - 20121209 -9606 100996464 LOC100996464 - - - Un - zinc finger protein 84-like protein-coding - - - - 20121222 -9606 100996465 LOC100996465 - - Ensembl:ENSG00000196987|Vega:OTTHUMG00000058499 X - putative lung carcinoma-associated protein 10-like protein-coding - - - - 20121222 -9606 100996466 LOC100996466 - - - 22 - mediator of RNA polymerase II transcription subunit 15-like pseudo - - - - 20121209 -9606 100996467 LOC100996467 - - - 11 - metastasis-associated lung adenocarcinoma transcript 1-like protein-coding - - - - 20121222 -9606 100996469 LOC100996469 - - - 19 - uncharacterized LOC100996469 pseudo - - - - 20121209 -9606 100996470 LOC100996470 - - - 13 - uncharacterized LOC100996470 protein-coding - - - - 20121222 -9606 100996471 LOC100996471 - - - 1 - uncharacterized LOC100996471 pseudo - - - - 20121209 -9606 100996472 LOC100996472 - - - 12 - uncharacterized LOC100996472 miscRNA - - - - 20121222 -9606 100996473 LOC100996473 - - - 1 - uncharacterized LOC100996473 protein-coding - - - - 20121222 -9606 100996474 LOC100996474 - - - 8 - uncharacterized LOC100996474 miscRNA - - - - 20121222 -9606 100996476 LOC100996476 - - - 7 - uncharacterized LOC100996476 pseudo - - - - 20121209 -9606 100996477 LOC100996477 - - - 12 - uncharacterized LOC100996477 miscRNA - - - - 20121222 -9606 100996478 LOC100996478 - - - 2 - uncharacterized LOC100996478 miscRNA - - - - 20121222 -9606 100996479 LOC100996479 - - - 16 - uncharacterized LOC100996479 pseudo - - - - 20121209 -9606 100996480 LOC100996480 - - - 9 - uncharacterized LOC100996480 pseudo - - - - 20121209 -9606 100996481 LOC100996481 - - - 6 - DNA primase large subunit-like pseudo - - - - 20121222 -9606 100996482 LOC100996482 - - - 9 - putative uncharacterized protein encoded by LINC00269-like protein-coding - - - - 20121222 -9606 100996483 LOC100996483 - - - 16 - uncharacterized LOC100996483 pseudo - - - - 20121209 -9606 100996484 LOC100996484 - - - 16 - uncharacterized LOC100996484 pseudo - - - - 20121209 -9606 100996485 LOC100996485 - - Ensembl:ENSG00000224186|Vega:OTTHUMG00000163106 5 - uncharacterized LOC100996485 protein-coding - - - - 20121222 -9606 100996486 LOC100996486 - - - 1 - uncharacterized LOC100996486 miscRNA - - - - 20121222 -9606 100996487 LOC100996487 - - - 9 - putative uncharacterized protein C9orf63-like protein-coding - - - - 20121222 -9606 100996488 FKSG48 - - - 1 - FKSG48 protein-coding - - - - 20121102 -9606 100996489 LOC100996489 - - - 9 - uncharacterized LOC100996489 protein-coding - - - - 20121222 -9606 100996490 LOC100996490 - - - 3 - uncharacterized LOC100996490 miscRNA - - - - 20121230 -9606 100996491 LOC100996491 - - - 7 - uncharacterized LOC100996491 pseudo - - - - 20121209 -9606 100996492 LOC100996492 - - - 15 - uncharacterized LOC100996492 protein-coding - - - - 20121222 -9606 100996494 LOC100996494 - - - 3 - uncharacterized LOC100996494 miscRNA - - - - 20121222 -9606 100996496 LOC100996496 - - - 1 - uncharacterized LOC100996496 miscRNA - - - - 20121222 -9606 100996497 LOC100996497 - - - 6 - uncharacterized LOC100996497 miscRNA - - - - 20121222 -9606 100996499 LOC100996499 - - - 16 - uncharacterized LOC100996499 protein-coding - - - - 20121222 -9606 100996500 LOC100996500 - - - 2 - decaprenyl-diphosphate synthase subunit 1-like pseudo - - - - 20121209 -9606 100996501 LOC100996501 - - - 12 - putative heterogeneous nuclear ribonucleoprotein A1-like 3-like pseudo - - - - 20121209 -9606 100996502 LOC100996502 - - - 1 - uncharacterized LOC100996502 pseudo - - - - 20121222 -9606 100996503 LOC100996503 - - - 16 - peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121209 -9606 100996504 LOC100996504 - - Ensembl:ENSG00000263264|Vega:OTTHUMG00000177340 19 - uncharacterized LOC100996504 protein-coding - - - - 20121222 -9606 100996505 LOC100996505 - - - 11 - uncharacterized LOC100996505 protein-coding - - - - 20121222 -9606 100996506 LOC100996506 - - - 2 - all-trans-retinol 13,14-reductase-like pseudo - - - - 20121222 -9606 100996507 LOC100996507 - - - 6 - uncharacterized LOC100996507 pseudo - - - - 20121209 -9606 100996508 LOC100996508 - - - 9 - uncharacterized LOC100996508 miscRNA - - - - 20121222 -9606 100996509 LOC100996509 - - - 19 - ubiquitin-40S ribosomal protein S27a-like pseudo - - - - 20121209 -9606 100996510 LOC100996510 - - - 1 - uncharacterized LOC100996510 pseudo - - - - 20121209 -9606 100996511 LOC100996511 - - - 1 - uncharacterized LOC100996511 miscRNA - - - - 20121222 -9606 100996512 LOC100996512 - - - 2 - uncharacterized LOC100996512 pseudo - - - - 20121209 -9606 100996513 LOC100996513 - - - 6 - uncharacterized LOC100996513 pseudo - - - - 20121209 -9606 100996514 LOC100996514 - - - X - uncharacterized LOC100996514 pseudo - - - - 20121209 -9606 100996515 LOC100996515 - - - 11 - uncharacterized LOC100996515 protein-coding - - - - 20121222 -9606 100996516 LOC100996516 - - - 1 - uncharacterized LOC100996516 protein-coding - - - - 20121230 -9606 100996517 LOC100996517 - - - 1 - vesicle-trafficking protein SEC22b-like pseudo - - - - 20121222 -9606 100996518 LOC100996518 - - - 20 - putative uncharacterized protein PRO0628-like protein-coding - - - - 20121222 -9606 100996519 LOC100996519 - - - 8 - transmembrane protein C8orf5-like protein-coding - - - - 20121222 -9606 100996520 LOC100996520 - - - 21 - 40S ribosomal protein SA-like pseudo - - - - 20121209 -9606 100996521 LOC100996521 - - - 1 - uncharacterized LOC100996521 miscRNA - - - - 20121222 -9606 100996522 LOC100996522 - - - 1 - uncharacterized LOC100996522 miscRNA - - - - 20121222 -9606 100996524 LOC100996524 - - - 22 - uncharacterized LOC100996524 miscRNA - - - - 20121222 -9606 100996525 LOC100996525 - - - X - uncharacterized LOC100996525 protein-coding - - - - 20121222 -9606 100996526 LOC100996526 - - - 17 - uncharacterized LOC100996526 miscRNA - - - - 20121222 -9606 100996527 LOC100996527 - - - 7 - uncharacterized LOC100996527 protein-coding - - - - 20121222 -9606 100996528 LOC100996528 - - - 16 - uncharacterized LOC100996528 protein-coding - - - - 20121222 -9606 100996529 LOC100996529 - - - 1 - uncharacterized LOC100996529 miscRNA - - - - 20121222 -9606 100996532 LOC100996532 - - - 2 - uncharacterized LOC100996532 pseudo - - - - 20121209 -9606 100996535 LOC100996535 - - - 2 - uncharacterized LOC100996535 protein-coding - - - - 20121222 -9606 100996536 LOC100996536 - - - 6 - uncharacterized LOC100996536 pseudo - - - - 20121209 -9606 100996537 LOC100996537 - - - 2 - uncharacterized LOC100996537 miscRNA - - - - 20121222 -9606 100996538 LOC100996538 - - - 22 - coiled-coil domain-containing protein 74A-like pseudo - - - - 20121209 -9606 100996539 ITPR1-AS1 - - HGNC:44470 3 - ITPR1 antisense RNA 1 (head to head) miscRNA ITPR1-AS1 ITPR1 antisense RNA 1 (head to head) O - 20121222 -9606 100996540 LOC100996540 - - - 2 - uncharacterized LOC100996540 pseudo - - - - 20121209 -9606 100996541 LOC100996541 - - - 16 - putative protein FAM157C-like protein-coding - - - - 20121222 -9606 100996542 LOC100996542 - - - 3 - uncharacterized LOC100996542 miscRNA - - - - 20121222 -9606 100996546 LOC100996546 - - - 3 - putative uncharacterized protein FLJ46541-like protein-coding - - - - 20121222 -9606 100996547 LOC100996547 - - - 9 - uncharacterized LOC100996547 protein-coding - - - - 20121222 -9606 100996548 LOC100996548 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121209 -9606 100996549 LOC100996549 - - - 2 - uncharacterized LOC100996549 miscRNA - - - - 20121222 -9606 100996550 LOC100996550 - - - 15 - putative colon cancer-associated antigen SK1-like pseudo - - - - 20121209 -9606 100996551 LOC100996551 - - - 2 - uncharacterized LOC100996551 miscRNA - - - - 20121222 -9606 100996552 LOC100996552 - - - 6 - uncharacterized LOC100996552 miscRNA - - - - 20121222 -9606 100996554 LOC100996554 - - - 16 - uncharacterized LOC100996554 miscRNA - - - - 20121222 -9606 100996555 LOC100996555 - - - 1 - uncharacterized LOC100996555 miscRNA - - - - 20121222 -9606 100996556 CA15P3 - - HGNC:44363 22 22q11.21 carbonic anhydrase XV, pseudogene 3 protein-coding CA15P3 carbonic anhydrase XV, pseudogene 3 O carbonic anhydrase 15-like 20121222 -9606 100996557 LOC100996557 - - - 9 - uncharacterized LOC100996557 miscRNA - - - - 20121222 -9606 100996558 LOC100996558 - - - Y - uncharacterized LOC100996558 pseudo - - - - 20121209 -9606 100996560 LOC100996560 - - - 22 - uncharacterized LOC100996560 pseudo - - - - 20121209 -9606 100996561 LOC100996561 - - - Y - uncharacterized LOC100996561 pseudo - - - - 20121209 -9606 100996562 LOC100996562 - - - 8 - transcription factor SOX-2-like pseudo - - - - 20121209 -9606 100996563 LOC100996563 - - - 17 - uncharacterized LOC100996563 miscRNA - - - - 20121222 -9606 100996564 LOC100996564 - - - X - protein SSX11-like pseudo - - - - 20121209 -9606 100996566 LOC100996566 - - - Y - putative colon cancer-associated antigen SK1-like pseudo - - - - 20121209 -9606 100996567 LOC100996567 - - - 10 - anthrax toxin receptor-like protein-coding - - - - 20121222 -9606 100996568 LOC100996568 - - - 1 - uncharacterized LOC100996568 pseudo - - - - 20121222 -9606 100996569 LOC100996569 - - - 9 - uncharacterized LOC100996569 miscRNA - - - - 20121230 -9606 100996570 LOC100996570 - - - 1 - uncharacterized LOC100996570 miscRNA - - - - 20121222 -9606 100996571 LOC100996571 - - - 21 - tigger transposable element-derived protein 1-like protein-coding - - - - 20121230 -9606 100996572 LOC100996572 - - - Y - putative colon cancer-associated antigen SK1-like pseudo - - - - 20121209 -9606 100996573 LOC100996573 - - - 12 - uncharacterized LOC100996573 protein-coding - - - - 20121222 -9606 100996574 LOC100996574 - - - 9 - uncharacterized LOC100996574 protein-coding - - - - 20121222 -9606 100996575 LOC100996575 - - - 1 - neuroblastoma breakpoint family member 3-like protein-coding - - - - 20121222 -9606 100996577 LOC100996577 - - - 7 - putative uncharacterized protein encoded by LINC00269-like protein-coding - - - - 20121222 -9606 100996578 LOC100996578 - - - 11 - uncharacterized LOC100996578 miscRNA - - - - 20121222 -9606 100996579 LOC100996579 - - - 2 - uncharacterized LOC100996579 miscRNA - - - - 20121222 -9606 100996580 LOC100996580 - - - 22 - glutathione S-transferase theta-1-like pseudo - - - - 20121209 -9606 100996582 LOC100996582 - - - 9 - protein FAM74A4/A6-like pseudo - - - - 20121209 -9606 100996583 LOC100996583 - - - 1 - uncharacterized LOC100996583 miscRNA - - - - 20121222 -9606 100996584 LOC100996584 - - - 2 - uncharacterized LOC100996584 protein-coding - - - - 20121222 -9606 100996585 LOC100996585 - - - 4 - uncharacterized LOC100996585 pseudo - - - - 20121209 -9606 100996586 LOC100996586 - - - 8 - Ig lambda chain V region 4A-like other - - - - 20121209 -9606 100996587 LOC100996587 - - - 1 - uncharacterized LOC100996587 miscRNA - - - - 20121222 -9606 100996588 LOC100996588 - - - 22 - glutathione S-transferase theta-1-like pseudo - - - - 20121209 -9606 100996589 LOC100996589 - - - 14 - uncharacterized LOC100996589 miscRNA - - - - 20121222 -9606 100996590 LOC100996590 - - - 9 - uncharacterized LOC100996590 miscRNA - - - - 20121102 -9606 100996592 LOC100996592 - - - 1 - uncharacterized LOC100996592 miscRNA - - - - 20121222 -9606 100996593 LOC100996593 - - - 21 - histone demethylase UTY-like pseudo - - - - 20121209 -9606 100996594 LOC100996594 - - - 22 - glutathione S-transferase theta-4-like protein-coding - - - - 20121222 -9606 100996595 LOC100996595 - - - 1 - uncharacterized LOC100996595 miscRNA - - - - 20121222 -9606 100996596 LOC100996596 - - - 22 - small nuclear ribonucleoprotein-associated protein N-like pseudo - - - - 20121209 -9606 100996597 LINC00690 - - HGNC:44503 3 - long intergenic non-protein coding RNA 690 miscRNA LINC00690 long intergenic non-protein coding RNA 690 O - 20121230 -9606 100996598 LOC100996598 - - - 22 - uncharacterized LOC100996598 protein-coding - - - - 20121222 -9606 100996599 LOC100996599 - - - 15 - putative transmembrane protein FLJ36131-like protein-coding - - - - 20121222 -9606 100996600 LOC100996600 - - - 2 - Ig kappa chain V-II region RPMI 6410-like other - - - - 20121209 -9606 100996601 LOC100996601 - - - 9 - uncharacterized LOC100996601 miscRNA - - - - 20121222 -9606 100996602 LOC100996602 - - - 20 - uncharacterized LOC100996602 protein-coding - - - - 20121222 -9606 100996603 LOC100996603 - - - 1 - uncharacterized LOC100996603 pseudo - - - - 20121209 -9606 100996605 LOC100996605 - - - 10 - putative calcium-sensing receptor-like 1-like protein-coding - - - - 20121222 -9606 100996606 LOC100996606 - - - 2 - uncharacterized LOC100996606 protein-coding - - - - 20121222 -9606 100996608 LOC100996608 - - - 11 - putative protein RIG-like pseudo - - - - 20121209 -9606 100996609 LOC100996609 - - - 21 - uncharacterized LOC100996609 miscRNA - - - - 20121222 -9606 100996610 LOC100996610 - - - 10 - putative uncharacterized protein LOC65996-like protein-coding - - - - 20121222 -9606 100996611 LOC100996611 - - - 15 - uncharacterized LOC100996611 pseudo - - - - 20121209 -9606 100996612 LOC100996612 - - - 9 - putative UPF0633 protein LOC554249-like protein-coding - - - - 20121222 -9606 100996613 LOC100996613 - - - 14 - uncharacterized LOC100996613 miscRNA - - - - 20121222 -9606 100996614 LOC100996614 - - - 1 - putative uncharacterized protein encoded by LINC00596-like protein-coding - - - - 20121222 -9606 100996615 LOC100996615 - - - 7 - uncharacterized LOC100996615 miscRNA - - - - 20121222 -9606 100996616 LOC100996616 - - - 2 - uncharacterized LOC100996616 miscRNA - - - - 20121222 -9606 100996618 LOC100996618 - - - 11 - uncharacterized LOC100996618 protein-coding - - - - 20121222 -9606 100996619 LOC100996619 - - - 21 - uncharacterized LOC100996619 protein-coding - - - - 20121222 -9606 100996620 LOC100996620 - - - 1 - uncharacterized LOC100996620 miscRNA - - - - 20121222 -9606 100996621 LOC100996621 - - - 10 - uncharacterized LOC100996621 pseudo - - - - 20121209 -9606 100996622 LOC100996622 - - - 21 - coiled-coil domain-containing protein 29-like pseudo - - - - 20121209 -9606 100996623 LOC100996623 - - - 4 - uncharacterized LOC100996623 miscRNA - - - - 20121222 -9606 100996624 LOC100996624 - - - 3 - uncharacterized LOC100996624 miscRNA - - - - 20121222 -9606 100996625 LOC100996625 - - - 15 - putative transmembrane protein FLJ36131-like protein-coding - - - - 20121222 -9606 100996626 LOC100996626 - - - 1 - proline-rich nuclear receptor coactivator 2-like protein-coding - - - - 20121222 -9606 100996628 LOC100996628 - - - 4 - uncharacterized LOC100996628 miscRNA - - - - 20121222 -9606 100996629 LOC100996629 - - - 10 - uncharacterized LOC100996629 miscRNA - - - - 20121230 -9606 100996630 LOC100996630 - - - 1 - uncharacterized LOC100996630 miscRNA - - - - 20121222 -9606 100996631 LOC100996631 - - Ensembl:ENSG00000215046|Vega:OTTHUMG00000152592 X - T-complex protein 11 homolog protein-coding - - - - 20121222 -9606 100996632 LOC100996632 - - - 4 - uncharacterized LOC100996632 miscRNA - - - - 20121222 -9606 100996633 LOC100996633 - - - 8 - uncharacterized LOC100996633 protein-coding - - - - 20121222 -9606 100996634 LOC100996634 - - Ensembl:ENSG00000243587|Vega:OTTHUMG00000015337 6 - transmembrane protein FLJ37396-like protein-coding - - - - 20121222 -9606 100996635 LOC100996635 - - - 1 - uncharacterized LOC100996635 miscRNA - - - - 20121222 -9606 100996636 LOC100996636 - - - 1 - uncharacterized LOC100996636 miscRNA - - - - 20121222 -9606 100996637 LOC100996637 - - - 2 - uncharacterized LOC100996637 miscRNA - - - - 20121222 -9606 100996638 LOC100996638 - - - 6 - uncharacterized LOC100996638 pseudo - - - - 20121209 -9606 100996639 LOC100996639 - - - 12 - ATP synthase lipid-binding protein, mitochondrial-like pseudo - - - - 20121209 -9606 100996641 LOC100996641 - - - 6 - coiled-coil domain-containing protein 162-like protein-coding - - - - 20121222 -9606 100996642 LOC100996642 - - - 10 - poly(ADP-ribose) glycohydrolase-like protein-coding - - - - 20121222 -9606 100996643 LOC100996643 - - - 9 - monofunctional C1-tetrahydrofolate synthase, mitochondrial-like protein-coding - - - - 20121222 -9606 100996644 LOC100996644 - - - 15 - putative transmembrane protein FLJ36131-like protein-coding - - - - 20121222 -9606 100996645 LOC100996645 - - - 5 - uncharacterized LOC100996645 miscRNA - - - - 20121222 -9606 100996646 LOC100996646 - - - 11 - uncharacterized LOC100996646 protein-coding - - - - 20121222 -9606 100996647 LOC100996647 - - - 9 - uncharacterized LOC100996647 pseudo - - - - 20121209 -9606 100996648 LOC100996648 - - Ensembl:ENSG00000215029|Vega:OTTHUMG00000152591 X - T-complex protein 11 homolog protein-coding - - - - 20121222 -9606 100996649 ALG1L14P - - HGNC:44383 4 - asparagine-linked glycosylation 1-like 14, pseudogene pseudo ALG1L14P asparagine-linked glycosylation 1-like 14, pseudogene O - 20121209 -9606 100996650 LOC100996650 - - - 15 - uncharacterized LOC100996650 pseudo - - - - 20121209 -9606 100996652 LOC100996652 - - - 6 - uncharacterized LOC100996652 pseudo - - - - 20121209 -9606 100996653 LOC100996653 - - - 15 - uncharacterized LOC100996653 miscRNA - - - - 20121222 -9606 100996654 LOC100996654 - - - 7 - uncharacterized LOC100996654 miscRNA - - - - 20121222 -9606 100996656 LOC100996656 - - - 3 - uncharacterized LOC100996656 miscRNA - - - - 20121222 -9606 100996657 LOC100996657 - - - 1 - serine/arginine-rich splicing factor 10-like protein-coding - - - - 20121222 -9606 100996658 LOC100996658 - - - 20 - uncharacterized LOC100996658 miscRNA - - - - 20121222 -9606 100996659 LOC100996659 - - - 15 - uncharacterized LOC100996659 pseudo - - - - 20121209 -9606 100996660 LOC100996660 - - - 17 - uncharacterized LOC100996660 miscRNA - - - - 20121222 -9606 100996661 LOC100996661 - - - 3 - uncharacterized LOC100996661 protein-coding - - - - 20121222 -9606 100996662 LOC100996662 - - - 8 - uncharacterized LOC100996662 miscRNA - - - - 20121222 -9606 100996663 LOC100996663 - - - 15 - uncharacterized LOC100996663 miscRNA - - - - 20121222 -9606 100996664 LOC100996664 - - - 14 - uncharacterized LOC100996664 miscRNA - - - - 20121222 -9606 100996665 LOC100996665 - - - 19 - uncharacterized LOC100996665 miscRNA - - - - 20121222 -9606 100996667 LOC100996667 - - - 9 - uncharacterized LOC100996667 miscRNA - - - - 20121222 -9606 100996668 LOC100996668 - - - 10 - uncharacterized LOC100996668 miscRNA - - - - 20121222 -9606 100996669 LOC100996669 - - - 18 - uncharacterized LOC100996669 miscRNA - - - - 20121230 -9606 100996670 LOC100996670 - - - 15 - zinc finger FYVE domain-containing protein 9-like pseudo - - - - 20121209 -9606 100996671 LOC100996671 - - - 12 - uncharacterized LOC100996671 miscRNA - - - - 20121222 -9606 100996672 LOC100996672 - - - 19 - uncharacterized LOC100996672 miscRNA - - - - 20121222 -9606 100996673 LOC100996673 - - - 20 - uncharacterized LOC100996673 miscRNA - - - - 20121222 -9606 100996675 LOC100996675 - - - 15 - putative uncharacterized protein DKFZp434L187-like protein-coding - - - - 20121222 -9606 100996676 LOC100996676 - - - 20 - uncharacterized LOC100996676 pseudo - - - - 20121209 -9606 100996677 LOC100996677 - - - 7 - uncharacterized LOC100996677 protein-coding - - - - 20121222 -9606 100996679 LOC100996679 - - - 12 - uncharacterized LOC100996679 miscRNA - - - - 20121222 -9606 100996680 LOC100996680 - - - 7 - uncharacterized LOC100996680 pseudo - - - - 20121209 -9606 100996681 LOC100996681 - - - 19 - uncharacterized LOC100996681 miscRNA - - - - 20121222 -9606 100996682 LOC100996682 - - - 4 - uncharacterized LOC100996682 pseudo - - - - 20121209 -9606 100996684 AKR1C5P - - HGNC:44679 10 - aldo-keto reductase family 1, member C5, pseudogene pseudo AKR1C5P aldo-keto reductase family 1, member C5, pseudogene O - 20121207 -9606 100996685 LOC100996685 - - - 2 - putative uncharacterized protein ENSP00000272607-like protein-coding - - - - 20121222 -9606 100996686 LOC100996686 - - - 12 - methyltransferase-like protein 7A-like pseudo - - - - 20121209 -9606 100996688 LOC100996688 - - - 17 - uncharacterized LOC100996688 pseudo - - - - 20121209 -9606 100996689 LOC100996689 - - - 9 - uncharacterized LOC100996689 protein-coding - - - - 20121222 -9606 100996693 LOC100996693 - - - 2 - CAVP-target protein-like protein-coding - - - - 20121222 -9606 100996694 LOC100996694 - - - 4 - uncharacterized LOC100996694 miscRNA - - - - 20121222 -9606 100996695 LOC100996695 - - - 20 - uncharacterized LOC100996695 miscRNA - - - - 20121222 -9606 100996696 LOC100996696 - - - 12 - polyadenylate-binding protein 4-like pseudo - - - - 20121209 -9606 100996697 LOC100996697 - - - 10 - uncharacterized LOC100996697 pseudo - - - - 20121209 -9606 100996698 LOC100996698 - - - 2 - uncharacterized LOC100996698 pseudo - - - - 20121209 -9606 100996699 LOC100996699 - - - Un - uncharacterized LOC100996699 pseudo - - - - 20121209 -9606 100996700 LOC100996700 - - - 7 - putative uncharacterized protein encoded by LINC00269-like protein-coding - - - - 20121222 -9606 100996701 LOC100996701 - - - 12 - uncharacterized LOC100996701 protein-coding - - - - 20121222 -9606 100996702 LOC100996702 - - - 1 - putative uncharacterized protein FLJ36116-like protein-coding - - - - 20121222 -9606 100996703 LOC100996703 - - - 4 - uncharacterized LOC100996703 pseudo - - - - 20121209 -9606 100996707 LOC100996707 - - - 6 - putative uncharacterized protein C6orf214-like protein-coding - - - - 20121222 -9606 100996709 LOC100996709 - - - 17 - ADP-ribosylation factor-like protein 17-like protein-coding - - - - 20121222 -9606 100996710 LOC100996710 - - - 17 - c-Jun-amino-terminal kinase-interacting protein 1-like pseudo - - - - 20121222 -9606 100996711 LOC100996711 - - - 1 - uncharacterized LOC100996711 protein-coding - - - - 20121222 -9606 100996712 SRGAP2D - - MIM:614705 1 - SLIT-ROBO Rho GTPase-activating protein 2D protein-coding - - - SLIT-ROBO Rho GTPase-activating protein 2-like 20121222 -9606 100996713 LOC100996713 - - - 1 - uncharacterized LOC100996713 protein-coding - - - - 20121222 -9606 100996715 LOC100996715 - - - 1 - uncharacterized LOC100996715 protein-coding - - - - 20121222 -9606 100996716 LOC100996716 - - - 1 - vesicle-trafficking protein SEC22b-like pseudo - - - - 20121102 -9606 100996717 LOC100996717 - - - 1 - neurogenic locus notch homolog protein 2-like pseudo - - - - 20121222 -9606 100996718 LOC100996718 - - - 11 - olfactory receptor 9G1-like protein-coding - - - - 20121222 -9606 100996719 LOC100996719 - - - 1 - uncharacterized LOC100996719 pseudo - - - - 20121102 -9606 100996720 LOC100996720 - - - 1 - uncharacterized LOC100996720 protein-coding - - - - 20121222 -9606 100996721 LOC100996721 - - - 1 - UPF0627 protein ENSP00000358171-like protein-coding - - - - 20121222 -9606 100996722 LOC100996722 - - - 1 - ubiquitin-conjugating enzyme E2 D4-like pseudo - - - - 20121102 -9606 100996723 LOC100996723 - - - 1 - uncharacterized LOC100996723 pseudo - - - - 20121222 -9606 100996724 LOC100996724 - - - 1 - myomegalin-like protein-coding - - - - 20121222 -9606 100996725 LOC100996725 - - - 1 - peptidyl-prolyl cis-trans isomerase A-like 4A/B/C-like protein-coding - - - - 20121222 -9606 100996726 LOC100996726 - - - 1 - protein FAM91A1-like pseudo - - - - 20121102 -9606 100996727 LOC100996727 - - - 3 - peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121102 -9606 100996728 LOC100996728 - - - 1 - putative uncharacterized protein FLJ35883-like pseudo - - - - 20121102 -9606 100996729 LOC100996729 - - - 17 - ubiquitin carboxyl-terminal hydrolase 6-like pseudo - - - - 20121209 -9606 100996730 LOC100996730 - - - 1 - D(1B) dopamine receptor-like pseudo - - - - 20121222 -9606 100996731 LOC100996731 - - - 1 - otopetrin-1-like pseudo - - - - 20121102 -9606 100996732 LOC100996732 - - - 1 - uncharacterized LOC100996732 miscRNA - - - - 20121222 -9606 100996734 LOC100996734 - - - 1 - D(1B) dopamine receptor-like pseudo - - - - 20121222 -9606 100996735 LOC100996735 - - - 1 - uncharacterized LOC100996735 miscRNA - - - - 20121222 -9606 100996736 LOC100996736 - - - 1 - otopetrin-1-like pseudo - - - - 20121102 -9606 100996737 LOC100996737 - - - 1 - otopetrin-1-like pseudo - - - - 20121102 -9606 100996738 LOC100996738 - - - 15 - uncharacterized LOC100996738 pseudo - - - - 20121102 -9606 100996739 LOC100996739 - - - 1 - Ig kappa chain V-I region Walker-like other - - - - 20121102 -9606 100996740 LOC100996740 - - - 1 - uncharacterized LOC100996740 protein-coding - - - - 20121222 -9606 100996741 LOC100996741 - - - 1 - UPF0627 protein ENSP00000358171-like protein-coding - - - - 20121222 -9606 100996743 LOC100996743 - - - 19 - killer cell immunoglobulin-like receptor 3DL2-like pseudo - - - - 20121222 -9606 100996745 LOC100996745 - - - 17 - dead end protein homolog 1-like pseudo - - - - 20121102 -9606 100996746 LOC100996746 - - - 7 - putative speedy protein E8-like protein-coding - - - - 20121222 -9606 100996747 LOC100996747 - - - 17 - 40S ribosomal protein S26-like protein-coding - - - - 20121222 -9606 100996748 LOC100996748 - - - 17 - uncharacterized LOC100996748 miscRNA - - - - 20121222 -9606 100996749 LOC100996749 - - - 7 - postmeiotic segregation increased 4-like protein-like protein-coding - - - - 20121222 -9606 100996750 LOC100996750 - - - 17 - keratin-associated protein 4-7-like protein-coding - - - - 20121222 -9606 100996752 LOC100996752 - - - 1 - uncharacterized LOC100996752 protein-coding - - - - 20121222 -9606 100996753 LOC100996753 - - - 7 - postmeiotic segregation increased 4-like protein-like pseudo - - - - 20121222 -9606 100996754 LOC100996754 - - - 1 - peptidyl-prolyl cis-trans isomerase A-like 4G-like protein-coding - - - - 20121222 -9606 100996756 LOC100996756 - - - 1 - uncharacterized LOC100996756 miscRNA - - - - 20121222 -9606 100996758 LOC100996758 - - - 10 - neuropeptide Y receptor type 4-like protein-coding - - - - 20121222 -9606 100996760 LOC100996760 - - - 10 - uncharacterized LOC100996760 protein-coding - - - - 20121222 -9606 100996761 LOC100996761 - - - 1 - myomegalin-like protein-coding - - - - 20121222 -9606 100996762 LOC100996762 - - - 17 - keratin-associated protein 9-2-like protein-coding - - - - 20121222 -9606 100996763 LOC100996763 - - - 1 - uncharacterized LOC100996763 pseudo - - - - 20121222 -9606 100996764 LOC100996764 - - - 1 - uncharacterized LOC100996764 miscRNA - - - - 20121222 -9606 100996765 LOC100996765 - - - 7 - 60S ribosomal protein L26-like pseudo - - - - 20121102 -9606 100996766 LOC100996766 - - - 7 - uncharacterized LOC100996766 pseudo - - - - 20121102 -9606 100996767 LOC100996767 - - - 7 - peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121102 -9606 100996768 LOC100996768 - - - 7 - putative uncharacterized protein FLJ46235-like protein-coding - - - - 20121222 -9606 100996770 LOC100996770 - - - 2 - uncharacterized LOC100996770 protein-coding - - - - 20121222 -9606 100996771 LOC100996771 - - - 14 - Ig heavy chain V region 102-like other - - - - 20121102 -9606 100996775 LOC100996775 - - - 2 - uncharacterized LOC100996775 pseudo - - - - 20121102 -9606 100996777 LOC100996777 - - - 5 - uncharacterized LOC100996777 pseudo - - - - 20121102 -9606 100996779 LOC100996779 - - - Un - protein FRG1-like protein-coding - - - - 20121222 -9606 100996780 LOC100996780 - - - 22 - phosphatidylinositol 4-kinase alpha-like protein-coding - - - - 20121222 -9606 100996781 LOC100996781 - - - 7 - uncharacterized LOC100996781 pseudo - - - - 20121102 -9606 100996782 LOC100996782 - - - Un - mediator of RNA polymerase II transcription subunit 18-like protein-coding - - - - 20121222 -9606 100996783 LOC100996783 - - - 7 - uncharacterized LOC100996783 pseudo - - - - 20121102 -9606 100996784 LOC100996784 - - - 17 - chorionic somatomammotropin hormone-like protein-coding - - - - 20121222 -9606 100996785 LOC100996785 - - - X - eukaryotic translation initiation factor 4B-like pseudo - - - - 20121102 -9606 100996786 LOC100996786 - - - 5 - aconitate hydratase, mitochondrial-like pseudo - - - - 20121102 -9606 100996787 LOC100996787 - - - 7 - uncharacterized LOC100996787 miscRNA - - - - 20121222 -9606 100996788 LOC100996788 - - - 16 - uncharacterized LOC100996788 miscRNA - - - - 20121222 -9606 100996789 LOC100996789 - - - Un - double homeobox protein 4-like protein 2-like pseudo - - - - 20121102 -9606 100996791 LOC100996791 - - - 3 - uncharacterized LOC100996791 protein-coding - - - - 20121222 -9606 100996792 LOC100996792 - - - Un - dual specificity mitogen-activated protein kinase kinase 3-like protein-coding - - - - 20121222 -9606 100996793 LOC100996793 - - - 22 - uncharacterized LOC100996793 miscRNA - - - - 20121222 -9606 100996794 LOC100996794 - - - 11 - olfactory receptor 6M1-like pseudo - - - - 20121102 -9606 100996795 LOC100996795 - - - 7 - uncharacterized LOC100996795 miscRNA - - - - 20121222 -9606 100996796 LOC100996796 - - - 9 - protein FAM75D1-like pseudo - - - - 20121222 -9606 100996797 LOC100996797 - - - 10 - uncharacterized LOC100996797 miscRNA - - - - 20121222 -9606 100996798 LOC100996798 - - - 7 - uncharacterized LOC100996798 miscRNA - - - - 20121222 -9606 100996799 LOC100996799 - - - 16 - uncharacterized LOC100996799 pseudo - - - - 20121102 -9606 100996800 LOC100996800 - - - 14 - Ig heavy chain V region 5A-like other - - - - 20121102 -9606 100996802 LOC100996802 - - - Un - uncharacterized LOC100996802 pseudo - - - - 20121102 -9606 100996803 LOC100996803 - - - Un - tektin-4-like pseudo - - - - 20121102 -9606 100996805 LOC100996805 - - - 14 - uncharacterized LOC100996805 protein-coding - - - - 20121222 -9606 100996808 LOC100996808 - - - Un - protein FRG1-like pseudo - - - - 20121102 -9606 100996809 LOC100996809 - - - 6 - HLA class II histocompatibility antigen, DR beta 3 chain-like pseudo - - - - 20121222 -9606 100996810 LOC100996810 - - - 16 - uncharacterized LOC100996810 miscRNA - - - - 20121222 -9606 100996812 LOC100996812 - - - 7 - protein FAM27D1-like pseudo - - - - 20121102 -9606 100996813 LOC100996813 - - - 17 - multidrug and toxin extrusion protein 2-like pseudo - - - - 20121102 -9606 100996814 LOC100996814 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100996815 LOC100996815 - - - 7 - uncharacterized LOC100996815 miscRNA - - - - 20121222 -9606 100996816 LOC100996816 - - - 17 - uncharacterized LOC100996816 miscRNA - - - - 20121222 -9606 100996817 LOC100996817 - - - 22 - putative POM121-like protein 1-like protein-coding - - - - 20121222 -9606 100996818 LOC100996818 - - - Y - cell division cycle protein 27 homolog pseudo - - - - 20121102 -9606 100996819 LOC100996819 - - - Un - phosphoserine phosphatase-like protein-coding - - - - 20121222 -9606 100996820 LOC100996820 - - - 2 - POTE ankyrin domain family member I-like protein-coding - - - - 20121222 -9606 100996821 LOC100996821 - - - 17 - uncharacterized LOC100996821 pseudo - - - - 20121102 -9606 100996822 LOC100996822 - - - Un - RNA-binding motif protein, Y chromosome, family 1 member F/J-like pseudo - - - - 20121222 -9606 100996823 LOC100996823 - - - Un - uncharacterized LOC100996823 pseudo - - - - 20121102 -9606 100996825 LOC100996825 - - - Un - IQ motif and SEC7 domain-containing protein 3-like protein-coding - - - - 20121222 -9606 100996826 LOC100996826 - - - Un - Ig heavy chain V region 102-like other - - - - 20121102 -9606 100996827 LOC100996827 - - - 9 - GAS2-like protein 1-like pseudo - - - - 20121102 -9606 100996828 LOC100996828 - - - 8 - uncharacterized LOC100996828 pseudo - - - - 20121102 -9606 100996830 LOC100996830 - - - X - uncharacterized LOC100996830 protein-coding - - - - 20121222 -9606 100996831 LOC100996831 - - - 21 - uncharacterized LOC100996831 protein-coding - - - - 20121222 -9606 100996832 LOC100996832 - - - Un - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 100996834 LOC100996834 - - - 3 - uncharacterized LOC100996834 miscRNA - - - - 20121222 -9606 100996835 LOC100996835 - - - X - ATP-dependent RNA helicase DDX3Y-like pseudo - - - - 20121102 -9606 100996839 LOC100996839 - - - Un - putative uncharacterized protein FLJ46235-like pseudo - - - - 20121222 -9606 100996840 LOC100996840 - - - Y - unconventional myosin-Vb-like pseudo - - - - 20121102 -9606 100996842 LOC100996842 - - - 17 - uncharacterized LOC100996842 protein-coding - - - - 20121222 -9606 100996843 LOC100996843 - - - Un - ATP-sensitive inward rectifier potassium channel 12-like protein-coding - - - - 20121222 -9606 100996844 LOC100996844 - - - Un - mucin-3A-like protein-coding - - - - 20121222 -9606 100996845 LOC100996845 - - - 16 - uncharacterized LOC100996845 protein-coding - - - - 20121222 -9606 100996846 LOC100996846 - - - Un - uncharacterized LOC100996846 pseudo - - - - 20121102 -9606 100996847 LOC100996847 - - - 1 - uncharacterized LOC100996847 miscRNA - - - - 20121222 -9606 100996848 LOC100996848 - - - X - FERM and PDZ domain-containing protein 3-like protein-coding - - - - 20121222 -9606 100996849 LOC100996849 - - - Un - tektin-4-like pseudo - - - - 20121102 -9606 100996851 LOC100996851 - - - 10 - E3 ubiquitin-protein ligase XIAP-like pseudo - - - - 20121209 -9606 100996852 LOC100996852 - - - 6 - non-histone chromosomal protein HMG-17-like protein-coding - - - - 20121222 -9606 100996853 LOC100996853 - - - Y - uncharacterized LOC100996853 pseudo - - - - 20121102 -9606 100996854 LOC100996854 - - - 1 - uncharacterized LOC100996854 pseudo - - - - 20121102 -9606 100996858 LOC100996858 - - - 9 - uncharacterized LOC100996858 pseudo - - - - 20121102 -9606 100996859 LOC100996859 - - - 4 - uncharacterized LOC100996859 protein-coding - - - - 20121222 -9606 100996860 LOC100996860 - - - 6 - uncharacterized LOC100996860 pseudo - - - - 20121209 -9606 100996861 LOC100996861 - - - Un - zinc finger protein 717-like pseudo - - - - 20121102 -9606 100996862 LOC100996862 - - - Un - ankyrin repeat domain-containing protein 36A-like pseudo - - - - 20121222 -9606 100996863 LOC100996863 - - - 4 - putative uncharacterized protein C4orf12-like protein-coding - - - - 20121222 -9606 100996865 LOC100996865 - - - 4 - uncharacterized LOC100996865 pseudo - - - - 20121102 -9606 100996866 LOC100996866 - - - 2 - uncharacterized LOC100996866 miscRNA - - - - 20121222 -9606 100996867 LOC100996867 - - - Y - RNA-binding motif protein, Y chromosome, family 1 member F/J-like pseudo - - - - 20121102 -9606 100996868 LOC100996868 - - - 1 - uncharacterized LOC100996868 protein-coding - - - - 20121222 -9606 100996869 LOC100996869 - - - 15 - UPF0621 protein B-like protein-coding - - - - 20121222 -9606 100996870 LOC100996870 - - - 9 - uncharacterized LOC100996870 miscRNA - - - - 20121222 -9606 100996872 LOC100996872 - - - 7 - uncharacterized LOC100996872 protein-coding - - - - 20121222 -9606 100996873 LOC100996873 - - - 20 - uncharacterized LOC100996873 miscRNA - - - - 20121222 -9606 100996874 LOC100996874 - - - X - TIMELESS-interacting protein-like pseudo - - - - 20121102 -9606 100996875 LOC100996875 - - - 11 - uncharacterized LOC100996875 miscRNA - - - - 20121222 -9606 100996876 LOC100996876 - - - 15 - uncharacterized LOC100996876 miscRNA - - - - 20121222 -9606 100996877 LOC100996877 - - - 10 - uncharacterized LOC100996877 pseudo - - - - 20121102 -9606 100996878 LOC100996878 - - - 11 - uncharacterized LOC100996878 pseudo - - - - 20121102 -9606 100996880 LOC100996880 - - - 2 - uncharacterized LOC100996880 pseudo - - - - 20121102 -9606 100996881 LOC100996881 - - - 7 - uncharacterized LOC100996881 pseudo - - - - 20121102 -9606 100996884 LOC100996884 - - - 2 - putative fatty acyl-CoA reductase 2-like protein FLJ43933-like pseudo - - - - 20121222 -9606 100996885 LOC100996885 - - - 9 - putative uncharacterized protein FLJ45355-like protein-coding - - - - 20121222 -9606 100996886 LOC100996886 - - - 1 - complement factor H-related protein 3-like pseudo - - - - 20121209 -9606 100996887 LOC100996887 - - - 2 - tubulin alpha-3E chain-like protein-coding - - - - 20121222 -9606 100996888 LOC100996888 - - - Un - putative uncharacterized protein FLJ11871-like protein-coding - - - - 20121222 -9606 100996889 LOC100996889 - - - 1 - nuclear ubiquitous casein and cyclin-dependent kinase substrate 1-like pseudo - - - - 20121102 -9606 100996890 LOC100996890 - - - Un - uncharacterized LOC100996890 protein-coding - - - - 20121222 -9606 100996892 LOC100996892 - - - 1 - uncharacterized LOC100996892 pseudo - - - - 20121102 -9606 100996894 LOC100996894 - - - 10 - uncharacterized LOC100996894 pseudo - - - - 20121102 -9606 100996895 LOC100996895 - - - 10 - uncharacterized LOC100996895 pseudo - - - - 20121102 -9606 100996897 LOC100996897 - - - 5 - uncharacterized LOC100996897 protein-coding - - - - 20121222 -9606 100996898 LOC100996898 - - - 15 - zinc finger FYVE domain-containing protein 9-like pseudo - - - - 20121102 -9606 100996899 LOC100996899 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100996900 LOC100996900 - - - 15 - uncharacterized LOC100996900 pseudo - - - - 20121102 -9606 100996901 LOC100996901 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 100996902 LOC100996902 - - - 2 - uncharacterized LOC100996902 miscRNA - - - - 20121222 -9606 100996903 LOC100996903 - - - 4 - uncharacterized LOC100996903 protein-coding - - - - 20121222 -9606 100996904 LOC100996904 - - - 5 - uncharacterized LOC100996904 pseudo - - - - 20121222 -9606 100996906 LOC100996906 - - - 17 - F-box/WD repeat-containing protein 10-like protein-coding - - - - 20121222 -9606 100996909 LOC100996909 - - - Un - anaphase-promoting complex subunit 1-like protein-coding - - - - 20121222 -9606 100996910 LOC100996910 - - - 7 - uncharacterized LOC100996910 pseudo - - - - 20121102 -9606 100996911 LOC100996911 - - - Y - uncharacterized LOC100996911 pseudo - - - - 20121102 -9606 100996912 LOC100996912 - - - Y - uncharacterized LOC100996912 pseudo - - - - 20121102 -9606 100996914 LOC100996914 - - - 12 - uncharacterized LOC100996914 pseudo - - - - 20121102 -9606 100996916 LOC100996916 - - - 3 - uncharacterized LOC100996916 protein-coding - - - - 20121222 -9606 100996917 LOC100996917 - - - 9 - putative uncharacterized protein UNQ6494/PRO21346-like protein-coding - - - - 20121222 -9606 100996918 LOC100996918 - - - 4 - uncharacterized LOC100996918 miscRNA - - - - 20121222 -9606 100996919 LOC100996919 - - - 2 - putative T-cell surface glycoprotein CD8 beta-2 chain-like protein-coding - - - - 20121222 -9606 100996920 LOC100996920 - - - Un - uncharacterized LOC100996920 miscRNA - - - - 20121222 -9606 100996922 LOC100996922 - - - 7 - uncharacterized LOC100996922 pseudo - - - - 20121102 -9606 100996923 LOC100996923 - - - Un - uncharacterized LOC100996923 pseudo - - - - 20121102 -9606 100996924 LOC100996924 - - - 2 - uncharacterized LOC100996924 protein-coding - - - - 20121222 -9606 100996925 LOC100996925 - - - 19 - uncharacterized LOC100996925 protein-coding - - - - 20121222 -9606 100996926 LOC100996926 - - - Y - uncharacterized LOC100996926 pseudo - - - - 20121102 -9606 100996927 LOC100996927 - - - 10 - uncharacterized LOC100996927 pseudo - - - - 20121102 -9606 100996928 C7orf55-LUC7L2 - - Ensembl:ENSG00000146963 7 7q C7orf55-LUC7L2 readthrough protein-coding - - - C7orf55-LUC7L2 protein 20121230 -9606 100996930 LINC00621 - - HGNC:44227 13 13q12.12 long intergenic non-protein coding RNA 621 miscRNA LINC00621 long intergenic non-protein coding RNA 621 O - 20121120 -9606 100996934 UAQTL5 - - MIM:614746 19 19q13 Uric acid concentration, serum, QTL5 unknown - - - - 20120805 -9606 100996935 UAQTL6 - - MIM:614747 1 1q21.1 Uric acid concentration, serum, QTL6 unknown - - - - 20120805 -9606 100996939 PYURF - PREY HGNC:44317|Ensembl:ENSG00000145337|Vega:OTTHUMG00000130949 4 4q PIGY upstream reading frame protein-coding PYURF PIGY upstream reading frame O PIGY upstream reading frame protein|protein preY, mitochondrial 20121230 -9606 100996941 IL21-AS1 - - HGNC:40299 4 4q27 IL21 antisense RNA 1 miscRNA IL21-AS1 IL21 antisense RNA 1 O - 20120816 -9606 100996944 NDUFS5P1 - - HGNC:44039 6 6q23.3 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 1 pseudo NDUFS5P1 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) pseudogene 1 O - 20121021 -9606 100996949 PDA1 - - MIM:607411 12 12q24 Patent ductus arteriosus, susceptibility to unknown - - - - 20120822 -9606 101027084 LOC101027084 - - - 7 7q33 MAX pseudogene pseudo - - - - 20121230 -9606 101027378 ETM3 - - MIM:611456 6 6p23 Tremor, hereditary essential, 3 unknown - - - - 20120904 -9606 101054525 LOC101054525 - - - 11 - progesterone receptor antisense RNA miscRNA - - - - 20121230 -9606 101055624 NYS7 - - MIM:614826 1 1q31-q32.2 Nystagmus 7, congenital unknown - - - - 20120920 -9606 101055625 LOC101055625 - - - 12 12p uncharacterized LOC101055625 miscRNA - - - - 20121230 -9606 101056699 TRNAQ49P - TRNAL48 HGNC:35098 1 1p transfer RNA glutamine 49 (anticodon CUG) pseudogene pseudo TRNAQ49P transfer RNA glutamine 49 (anticodon CUG) pseudogene O - 20121230 -9606 101056700 NADKD1-AS1 - - HGNC:41143 5 5p13.2 NADKD1 antisense RNA 1 miscRNA NADKD1-AS1 NADKD1 antisense RNA 1 O - 20121006 -9606 101056702 HHV8S - - MIM:614836 3 3p22 Human herpesvirus 8, susceptibility to unknown - - - - 20121006 -9606 101056723 LINC00682 - - HGNC:44466 4 4p13 long intergenic non-protein coding RNA 682 miscRNA LINC00682 long intergenic non-protein coding RNA 682 O - 20121018 -9606 101059903 HMSN5 - - MIM:600361 4 4q34.3-q35.2 Hereditary motor and sensory neuropathy V unknown - - - - 20121018 -9606 101059905 TCEB1P26 - - HGNC:38731 Y Yq11.222 transcription elongation factor B (SIII), polypeptide 1 pseudogene 26 pseudo TCEB1P26 transcription elongation factor B (SIII), polypeptide 1 pseudogene 26 O - 20121027 -9606 101059906 LOC101059906 - - - 11 - collagen alpha-1(IV) chain-like protein-coding - - - - 20121222 -9606 101059907 LOC101059907 - - - Un - protein FAM207A-like pseudo - - - - 20121209 -9606 101059908 LOC101059908 - - - 17 - uncharacterized LOC101059908 protein-coding - - - - 20121222 -9606 101059909 LOC101059909 - - - X - G antigen family D member 5-like pseudo - - - - 20121209 -9606 101059910 LOC101059910 - - - 7 - uncharacterized LOC101059910 miscRNA - - - - 20121222 -9606 101059911 LOC101059911 - - - 11 - mucin-5AC-like protein-coding - - - - 20121222 -9606 101059912 LOC101059912 - - - X - G antigen family D member 5-like pseudo - - - - 20121209 -9606 101059913 LOC101059913 - - - 11 - uncharacterized LOC101059913 pseudo - - - - 20121209 -9606 101059914 LOC101059914 - - - 4 - protein FAM218A-like protein-coding - - - - 20121222 -9606 101059915 LOC101059915 - - - X - uncharacterized LOC101059915 protein-coding - - - - 20121222 -9606 101059916 LOC101059916 - - - 7 - nucleoporin NUP53-like pseudo - - - - 20121209 -9606 101059917 LOC101059917 - - - 14 - uncharacterized LOC101059917 miscRNA - - - - 20121222 -9606 101059918 LOC101059918 - - Ensembl:ENSG00000186399|Vega:OTTHUMG00000175646 15 - golgin subfamily A member 8-like protein 2-like protein-coding - - - - 20121222 -9606 101059919 LOC101059919 - - - 2 - uncharacterized LOC101059919 pseudo - - - - 20121209 -9606 101059920 LOC101059920 - - - 16 - protein FRG2-like pseudo - - - - 20121209 -9606 101059921 LOC101059921 - - - 7 - uncharacterized LOC101059921 protein-coding - - - - 20121222 -9606 101059922 LOC101059922 - - - 19 - uncharacterized LOC101059922 protein-coding - - - - 20121222 -9606 101059923 LOC101059923 - - - 1 - uncharacterized LOC101059923 pseudo - - - - 20121209 -9606 101059924 LOC101059924 - - - 3 - AKT-interacting protein-like pseudo - - - - 20121209 -9606 101059925 LOC101059925 - - - 8 - 40S ribosomal protein S24-like pseudo - - - - 20121209 -9606 101059926 LOC101059926 - - - 16 - protein FRG2-like-1-like pseudo - - - - 20121209 -9606 101059927 LOC101059927 - - - 6 - uncharacterized LOC101059927 pseudo - - - - 20121209 -9606 101059928 LOC101059928 - - - 3 - uncharacterized LOC101059928 miscRNA - - - - 20121222 -9606 101059929 LOC101059929 - - - 8 - uncharacterized LOC101059929 pseudo - - - - 20121209 -9606 101059930 LOC101059930 - - - 16 - angiogenic factor with G patch and FHA domains 1-like pseudo - - - - 20121209 -9606 101059931 LOC101059931 - - - 1 - uncharacterized LOC101059931 pseudo - - - - 20121209 -9606 101059932 LOC101059932 - - - 6 - iron-sulfur cluster assembly enzyme ISCU, mitochondrial-like pseudo - - - - 20121209 -9606 101059933 LOC101059933 - - - 8 - uncharacterized LOC101059933 pseudo - - - - 20121209 -9606 101059934 LOC101059934 - - - 11 - uncharacterized LOC101059934 protein-coding - - - - 20121222 -9606 101059935 LOC101059935 - - - 9 - coiled-coil domain-containing protein 29-like protein-coding - - - - 20121222 -9606 101059936 LOC101059936 - - - 16 - uncharacterized LOC101059936 pseudo - - - - 20121222 -9606 101059937 LOC101059937 - - - 3 - uncharacterized LOC101059937 miscRNA - - - - 20121222 -9606 101059938 LOC101059938 - - Ensembl:ENSG00000214967|Vega:OTTHUMG00000166307 16 - nuclear pore complex-interacting protein-like protein-coding - - - - 20121222 -9606 101059939 LOC101059939 - - - 15 - uncharacterized LOC101059939 miscRNA - - - - 20121222 -9606 101059940 LOC101059940 - - - 1 - peptidyl-prolyl cis-trans isomerase NIMA-interacting 4-like pseudo - - - - 20121209 -9606 101059941 LOC101059941 - - - 2 - uncharacterized LOC101059941 pseudo - - - - 20121209 -9606 101059942 LOC101059942 - - - 8 - uncharacterized LOC101059942 pseudo - - - - 20121209 -9606 101059943 LOC101059943 - - - 1 - uncharacterized LOC101059943 pseudo - - - - 20121209 -9606 101059944 LOC101059944 - - - Un - uncharacterized LOC101059944 pseudo - - - - 20121209 -9606 101059945 LOC101059945 - - - 21 - uncharacterized LOC101059945 pseudo - - - - 20121209 -9606 101059946 LOC101059946 - - - 2 - uncharacterized LOC101059946 miscRNA - - - - 20121222 -9606 101059947 LOC101059947 - - - 4 - uncharacterized LOC101059947 pseudo - - - - 20121222 -9606 101059948 LOC101059948 - - - 19 - uncharacterized LOC101059948 pseudo - - - - 20121209 -9606 101059949 LOC101059949 - - - Y|Un - coiled-coil domain-containing protein 29-like pseudo - - - - 20121222 -9606 101059950 LOC101059950 - - - 6 - small EDRK-rich factor 2-like pseudo - - - - 20121209 -9606 101059951 LOC101059951 - - - 1 - glycine cleavage system H protein, mitochondrial-like pseudo - - - - 20121209 -9606 101059952 LOC101059952 - - - 14 - uncharacterized LOC101059952 protein-coding - - - - 20121222 -9606 101059953 LOC101059953 - - Ensembl:ENSG00000214940|Vega:OTTHUMG00000166284 16 - nuclear pore complex-interacting protein-like protein-coding - - - - 20121222 -9606 101059954 LOC101059954 - - - 17 - uncharacterized LOC101059954 miscRNA - - - - 20121222 -9606 101059955 LOC101059955 - - - 1 - mitochondrial import inner membrane translocase subunit Tim17-A-like pseudo - - - - 20121209 -9606 101059956 LOC101059956 - - - 9 - mitochondrial intermembrane space import and assembly protein 40-like pseudo - - - - 20121209 -9606 101059957 LOC101059957 - - Ensembl:ENSG00000139865|Vega:OTTHUMG00000157369 14 - tetratricopeptide repeat protein 6-like protein-coding - - - - 20121222 -9606 101059958 LOC101059958 - - - 6 - uncharacterized LOC101059958 pseudo - - - - 20121209 -9606 101059959 LOC101059959 - - - 8 - uncharacterized LOC101059959 miscRNA - - - - 20121222 -9606 101059960 LOC101059960 - - - 20 - uncharacterized LOC101059960 pseudo - - - - 20121209 -9606 101059961 LOC101059961 - - Ensembl:ENSG00000232637|Vega:OTTHUMG00000158074 1 - neuroblastoma breakpoint family member 21-like protein-coding - - - - 20121222 -9606 101059962 LOC101059962 - - - Y - uncharacterized LOC101059962 pseudo - - - - 20121209 -9606 101059963 LOC101059963 - - - 3 - uncharacterized LOC101059963 pseudo - - - - 20121222 -9606 101059964 LOC101059964 - - - 9 - protein slowmo homolog 2-like pseudo - - - - 20121209 -9606 101059965 LOC101059965 - - - 1 - ribonuclease UK114-like pseudo - - - - 20121209 -9606 101059966 LOC101059966 - - - 8 - uncharacterized LOC101059966 protein-coding - - - - 20121222 -9606 101059967 LOC101059967 - - - X - PHD finger-like domain-containing protein 5A-like pseudo - - - - 20121209 -9606 101059968 LOC101059968 - - - 10 - putative uncharacterized protein C11orf81-like pseudo - - - - 20121209 -9606 101059969 LOC101059969 - - - 6 - dnaJ homolog subfamily B member 6-like pseudo - - - - 20121209 -9606 101059970 LOC101059970 - - - 1 - liprin-alpha-2-like protein-coding - - - - 20121222 -9606 101059971 LOC101059971 - - - 15 - uncharacterized LOC101059971 pseudo - - - - 20121209 -9606 101059972 LOC101059972 - - - 8 - myosin, light chain 9, regulatory pseudogene pseudo - - - - 20121230 -9606 101059973 LOC101059973 - - - 6 - uncharacterized LOC101059973 pseudo - - - - 20121209 -9606 101059974 LOC101059974 - - - 12 - p53 and DNA damage-regulated protein 1-like pseudo - - - - 20121209 -9606 101059975 LOC101059975 - - - 1 - uncharacterized LOC101059975 miscRNA - - - - 20121222 -9606 101059976 LOC101059976 - - - 1 - uncharacterized LOC101059976 protein-coding - - - - 20121222 -9606 101059977 LOC101059977 - - - 8 - uncharacterized LOC101059977 pseudo - - - - 20121209 -9606 101059978 LOC101059978 - - - 9 - uncharacterized LOC101059978 pseudo - - - - 20121209 -9606 101059979 LOC101059979 - - - 16 - uncharacterized LOC101059979 miscRNA - - - - 20121222 -9606 101059980 LOC101059980 - - - 1 - neuroblastoma breakpoint family member 20-like protein-coding - - - - 20121222 -9606 101059981 LOC101059981 - - - 22 - putative uncharacterized protein FLJ23865-like protein-coding - - - - 20121222 -9606 101059982 LOC101059982 - - - 3 - transcription elongation factor A protein-like 8-like pseudo - - - - 20121209 -9606 101059983 LOC101059983 - - - 9 - uncharacterized LOC101059983 pseudo - - - - 20121209 -9606 101059984 LOC101059984 - - Ensembl:ENSG00000248905|Vega:OTTHUMG00000172201 15 - formin-1-like protein-coding - - - - 20121222 -9606 101059985 LOC101059985 - - - 21 - uncharacterized LOC101059985 pseudo - - - - 20121209 -9606 101059986 LOC101059986 - - - 5 - cancer-related nucleoside-triphosphatase-like pseudo - - - - 20121209 -9606 101059987 LOC101059987 - - - 15 - microtubule-associated proteins 1A/1B light chain 3 beta 2-like pseudo - - - - 20121209 -9606 101059988 LOC101059988 - - - 4 - BCL2/adenovirus E1B 19 kDa protein-interacting protein 3-like pseudo - - - - 20121209 -9606 101059989 LOC101059989 - - - 7 - uncharacterized LOC101059989 pseudo - - - - 20121209 -9606 101059990 LOC101059990 - - - 2 - dnaJ homolog subfamily B member 6-like pseudo - - - - 20121209 -9606 101059991 LOC101059991 - - - 15 - golgin subfamily A member 6-like protein 2-like protein-coding - - - - 20121222 -9606 101059992 LOC101059992 - - - 16 - uncharacterized LOC101059992 miscRNA - - - - 20121222 -9606 101059993 LOC101059993 - - - 11 - uncharacterized LOC101059993 miscRNA - - - - 20121222 -9606 101059994 LOC101059994 - - - 16 - uncharacterized LOC101059994 miscRNA - - - - 20121222 -9606 101059995 LOC101059995 - - - 2 - uncharacterized LOC101059995 pseudo - - - - 20121209 -9606 101059996 LOC101059996 - - - 1 - uncharacterized LOC101059996 pseudo - - - - 20121209 -9606 101059997 LOC101059997 - - - 15 - abhydrolase domain-containing protein FAM108A1-like pseudo - - - - 20121209 -9606 101059998 LOC101059998 - - - 1 - uncharacterized LOC101059998 pseudo - - - - 20121209 -9606 101059999 LOC101059999 - - - 5 - uncharacterized LOC101059999 pseudo - - - - 20121209 -9606 101060000 LOC101060000 - - - 8 - dnaJ homolog subfamily B member 6-like pseudo - - - - 20121209 -9606 101060001 LOC101060001 - - - 11 - 40S ribosomal protein S24-like pseudo - - - - 20121209 -9606 101060002 LOC101060002 - - - 8 - tRNA methyltransferase 10 homolog B-like pseudo - - - - 20121209 -9606 101060003 LOC101060003 - - - 12 - uncharacterized LOC101060003 pseudo - - - - 20121209 -9606 101060004 LOC101060004 - - - 20 - uncharacterized LOC101060004 miscRNA - - - - 20121222 -9606 101060005 LOC101060005 - - - 8 - superoxide dismutase [Cu-Zn]-like pseudo - - - - 20121209 -9606 101060006 LOC101060006 - - - Un - NANOG neighbor homeobox-like pseudo - - - - 20121209 -9606 101060007 LOC101060007 - - - 5 - uncharacterized LOC101060007 miscRNA - - - - 20121222 -9606 101060008 LOC101060008 - - - 6 - uncharacterized LOC101060008 miscRNA - - - - 20121222 -9606 101060009 LOC101060009 - - - 1 - uncharacterized LOC101060009 miscRNA - - - - 20121222 -9606 101060010 LOC101060010 - - - 12 - uncharacterized LOC101060010 pseudo - - - - 20121209 -9606 101060011 LOC101060011 - - - 7 - putative IQ and AAA domain-containing protein 1-like protein-coding - - - - 20121222 -9606 101060012 LOC101060012 - - - 7 - uncharacterized LOC101060012 pseudo - - - - 20121209 -9606 101060013 LOC101060013 - - - 8 - UPF0454 protein C12orf49-like pseudo - - - - 20121209 -9606 101060014 LOC101060014 - - - 4 - uncharacterized LOC101060014 pseudo - - - - 20121209 -9606 101060015 LOC101060015 - - - 7 - uncharacterized LOC101060015 pseudo - - - - 20121209 -9606 101060016 LOC101060016 - - - 1 - signal peptidase complex subunit 3-like pseudo - - - - 20121209 -9606 101060017 LOC101060017 - - - 2 - uncharacterized LOC101060017 protein-coding - - - - 20121222 -9606 101060018 LOC101060018 - - - 22 - uncharacterized LOC101060018 protein-coding - - - - 20121222 -9606 101060019 LOC101060019 - - - 2 - uncharacterized LOC101060019 miscRNA - - - - 20121222 -9606 101060020 LOC101060020 - - - 12 - obg-like ATPase 1-like pseudo - - - - 20121209 -9606 101060021 LOC101060021 - - - 12 - ADP-ribosylation factor 1-like pseudo - - - - 20121209 -9606 101060022 LOC101060022 - - - 1 - uncharacterized LOC101060022 pseudo - - - - 20121222 -9606 101060023 LOC101060023 - - - 9 - uncharacterized LOC101060023 miscRNA - - - - 20121222 -9606 101060024 LOC101060024 - - - 5 - uncharacterized LOC101060024 protein-coding - - - - 20121222 -9606 101060025 LOC101060025 - - - 22 - uncharacterized LOC101060025 pseudo - - - - 20121209 -9606 101060026 LOC101060026 - - - 9 - coiled-coil domain-containing protein 29-like protein-coding - - - - 20121222 -9606 101060027 LOC101060027 - - - 21 - uncharacterized LOC101060027 miscRNA - - - - 20121222 -9606 101060028 LOC101060028 - - - 1 - uncharacterized LOC101060028 protein-coding - - - - 20121222 -9606 101060029 LOC101060029 - - - 7 - putative IQ and AAA domain-containing protein 1-like protein-coding - - - - 20121222 -9606 101060030 LOC101060030 - - - 2 - NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4-like pseudo - - - - 20121209 -9606 101060031 LOC101060031 - - - 12 - 40S ribosomal protein S24-like pseudo - - - - 20121209 -9606 101060032 LOC101060032 - - - 10 - GTP-binding protein Rheb-like pseudo - - - - 20121209 -9606 101060033 LOC101060033 - - - 2 - NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4-like pseudo - - - - 20121209 -9606 101060034 LOC101060034 - - - X - zinc finger protein ENSP00000375192-like pseudo - - - - 20121209 -9606 101060035 LOC101060035 - - - 5 - dnaJ homolog subfamily C member 24-like pseudo - - - - 20121209 -9606 101060036 LOC101060036 - - - 15 - uncharacterized LOC101060036 pseudo - - - - 20121222 -9606 101060037 LOC101060037 - - - 21 - uncharacterized LOC101060037 protein-coding - - - - 20121222 -9606 101060038 LOC101060038 - - - 12 - uncharacterized LOC101060038 miscRNA - - - - 20121222 -9606 101060039 LOC101060039 - - - 2 - heterogeneous nuclear ribonucleoprotein A1-like pseudo - - - - 20121209 -9606 101060040 LOC101060040 - - - 13 - coiled-coil-helix-coiled-coil-helix domain-containing protein 2, mitochondrial-like pseudo - - - - 20121209 -9606 101060041 LOC101060041 - - - 21 - uncharacterized LOC101060041 protein-coding - - - - 20121222 -9606 101060042 LOC101060042 - - - X - G antigen family D member 3-like pseudo - - - - 20121209 -9606 101060043 LOC101060043 - - - 5 - sulfiredoxin 1 pseudogene pseudo - - - - 20121230 -9606 101060044 LOC101060044 - - - 15 - cytochrome b5 type B-like pseudo - - - - 20121209 -9606 101060045 LOC101060045 - - - 21 - poly(rC)-binding protein 2-like pseudo - - - - 20121209 -9606 101060046 LOC101060046 - - - X - G antigen family D member 5-like pseudo - - - - 20121209 -9606 101060047 LOC101060047 - - - 12 - uncharacterized LOC101060047 protein-coding - - - - 20121222 -9606 101060048 LOC101060048 - - - 16 - uncharacterized LOC101060048 pseudo - - - - 20121209 -9606 101060049 LOC101060049 - - - X - ornithine aminotransferase, mitochondrial-like pseudo - - - - 20121209 -9606 101060050 LOC101060050 - - - 20 - uncharacterized LOC101060050 pseudo - - - - 20121209 -9606 101060051 LOC101060051 - - - 2 - uncharacterized LOC101060051 pseudo - - - - 20121209 -9606 101060052 LOC101060052 - - - 22 - zinc transporter ZIP1-like pseudo - - - - 20121209 -9606 101060053 LOC101060053 - - - 5 - S-phase kinase-associated protein 1-like pseudo - - - - 20121209 -9606 101060054 LOC101060054 - - - X - 40S ribosomal protein S24-like pseudo - - - - 20121209 -9606 101060055 LOC101060055 - - - 22 - putative uncharacterized protein FLJ38264-like pseudo - - - - 20121209 -9606 101060056 LOC101060056 - - - X - mpv17-like protein 2-like pseudo - - - - 20121209 -9606 101060057 LOC101060057 - - - 5 - phosphatidylinositol N-acetylglucosaminyltransferase subunit P-like pseudo - - - - 20121209 -9606 101060058 LOC101060058 - - - 12 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121209 -9606 101060059 LOC101060059 - - - 5 - uncharacterized LOC101060059 pseudo - - - - 20121222 -9606 101060060 LOC101060060 - - - 12 - chitobiosyldiphosphodolichol beta-mannosyltransferase-like pseudo - - - - 20121209 -9606 101060061 LOC101060061 - - - 16 - uncharacterized LOC101060061 pseudo - - - - 20121209 -9606 101060062 LOC101060062 - - - 16 - uncharacterized LOC101060062 miscRNA - - - - 20121222 -9606 101060063 LOC101060063 - - - X - protein FAM136A-like pseudo - - - - 20121209 -9606 101060064 LOC101060064 - - - 12 - Fanconi anemia-associated protein of 24 kDa-like pseudo - - - - 20121209 -9606 101060065 LOC101060065 - - - 8 - uncharacterized LOC101060065 pseudo - - - - 20121209 -9606 101060066 LOC101060066 - - - 5 - uncharacterized LOC101060066 pseudo - - - - 20121209 -9606 101060067 LOC101060067 - - - 5 - 40S ribosomal protein S3-like pseudo - - - - 20121209 -9606 101060068 LOC101060068 - - - 2 - 40S ribosomal protein S21-like pseudo - - - - 20121209 -9606 101060069 LOC101060069 - - - 3 - uncharacterized LOC101060069 miscRNA - - - - 20121222 -9606 101060070 LOC101060070 - - - X - poly(A) polymerase alpha-like pseudo - - - - 20121209 -9606 101060071 LOC101060071 - - - 12 - uncharacterized LOC101060071 pseudo - - - - 20121209 -9606 101060072 LOC101060072 - - - 8 - uncharacterized LOC101060072 pseudo - - - - 20121209 -9606 101060073 LOC101060073 - - - 16 - uncharacterized LOC101060073 pseudo - - - - 20121209 -9606 101060074 LOC101060074 - - - 3 - uncharacterized LOC101060074 pseudo - - - - 20121209 -9606 101060075 LOC101060075 - - - 8 - ubiquitin-conjugating enzyme E2 variant 1-like pseudo - - - - 20121209 -9606 101060076 LOC101060076 - - - 5 - 60S ribosomal protein L14-like pseudo - - - - 20121209 -9606 101060077 LOC101060077 - - - 11 - uncharacterized LOC101060077 pseudo - - - - 20121209 -9606 101060078 LOC101060078 - - - 16 - uncharacterized LOC101060078 other - - - - 20121209 -9606 101060079 LOC101060079 - - - 3 - uncharacterized LOC101060079 pseudo - - - - 20121222 -9606 101060080 LOC101060080 - - - 17 - uncharacterized LOC101060080 miscRNA - - - - 20121222 -9606 101060081 LOC101060081 - - - 7 - carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 2-like pseudo - - - - 20121222 -9606 101060082 LOC101060082 - - - 1 - uncharacterized LOC101060082 miscRNA - - - - 20121222 -9606 101060083 LOC101060083 - - - 3 - uncharacterized LOC101060083 pseudo - - - - 20121209 -9606 101060084 LOC101060084 - - - 11 - uncharacterized LOC101060084 pseudo - - - - 20121209 -9606 101060085 LOC101060085 - - - 1 - uncharacterized LOC101060085 protein-coding - - - - 20121222 -9606 101060086 LOC101060086 - - - 13 - cell cycle exit and neuronal differentiation protein 1-like pseudo - - - - 20121209 -9606 101060087 LOC101060087 - - - 3 - uncharacterized LOC101060087 pseudo - - - - 20121209 -9606 101060088 LOC101060088 - - - 12 - uncharacterized LOC101060088 pseudo - - - - 20121209 -9606 101060089 LOC101060089 - - - 11 - cleavage and polyadenylation specificity factor subunit 5-like pseudo - - - - 20121209 -9606 101060090 LOC101060090 - - - 10 - uncharacterized LOC101060090 pseudo - - - - 20121209 -9606 101060091 LOC101060091 - - - 2 - uncharacterized LOC101060091 protein-coding - - - - 20121222 -9606 101060092 LOC101060092 - - Ensembl:ENSG00000183748|Vega:OTTHUMG00000017754 10 - macrophage mannose receptor 1-like protein-coding - - - - 20121222 -9606 101060093 LOC101060093 - - - 9 - uncharacterized LOC101060093 pseudo - - - - 20121209 -9606 101060094 LOC101060094 - - - 12 - uncharacterized LOC101060094 pseudo - - - - 20121209 -9606 101060095 LOC101060095 - - - 11 - E3 ubiquitin-protein ligase RNF181-like pseudo - - - - 20121209 -9606 101060096 LOC101060096 - - - 1 - uncharacterized LOC101060096 pseudo - - - - 20121209 -9606 101060097 LOC101060097 - - - 16 - uncharacterized LOC101060097 pseudo - - - - 20121209 -9606 101060098 LOC101060098 - - - 16 - deoxyuridine 5'-triphosphate nucleotidohydrolase, mitochondrial-like pseudo - - - - 20121209 -9606 101060099 LOC101060099 - - - 9 - CST complex subunit TEN1-like pseudo - - - - 20121209 -9606 101060100 LOC101060100 - - - 1 - uncharacterized LOC101060100 pseudo - - - - 20121209 -9606 101060101 LOC101060101 - - Ensembl:ENSG00000184040|Vega:OTTHUMG00000017755 10 - transmembrane protein 236-like protein-coding - - - - 20121222 -9606 101060102 LOC101060102 - - - 18 - mitochondrial import receptor subunit TOM20 homolog pseudo - - - - 20121209 -9606 101060103 LOC101060103 - - - 2 - uncharacterized LOC101060103 miscRNA - - - - 20121222 -9606 101060104 LOC101060104 - - - 16 - uncharacterized LOC101060104 pseudo - - - - 20121209 -9606 101060105 LOC101060105 - - - 2 - protein FAM183A-like pseudo - - - - 20121209 -9606 101060106 LOC101060106 - - - 17 - putative uncharacterized protein FLJ43826-like pseudo - - - - 20121209 -9606 101060107 ARL5B-AS1 - - HGNC:44882 10 - ARL5B antisense RNA 1 miscRNA ARL5B-AS1 ARL5B antisense RNA 1 O - 20121222 -9606 101060108 LOC101060108 - - - 18 - uncharacterized LOC101060108 pseudo - - - - 20121209 -9606 101060109 LOC101060109 - - - 16 - uncharacterized LOC101060109 pseudo - - - - 20121209 -9606 101060110 LOC101060110 - - - 13 - uncharacterized LOC101060110 pseudo - - - - 20121209 -9606 101060111 LUZP4P1 - - HGNC:44904 10 - leucine zipper protein 4 pseudogene 1 pseudo LUZP4P1 leucine zipper protein 4 pseudogene 1 O - 20121227 -9606 101060112 LOC101060112 - - - 17 - ras-related protein O-Krev-like pseudo - - - - 20121209 -9606 101060113 LOC101060113 - - - X - proteasome maturation protein-like pseudo - - - - 20121209 -9606 101060114 LOC101060114 - - - 10 - uncharacterized LOC101060114 pseudo - - - - 20121209 -9606 101060115 LOC101060115 - - - 15 - putative transmembrane protein ENSP00000320207-like protein-coding - - - - 20121222 -9606 101060116 LOC101060116 - - - 7 - uncharacterized LOC101060116 pseudo - - - - 20121209 -9606 101060117 LOC101060117 - - - 14 - uncharacterized LOC101060117 protein-coding - - - - 20121222 -9606 101060118 LOC101060118 - - - 15 - uncharacterized LOC101060118 pseudo - - - - 20121209 -9606 101060119 LOC101060119 - - - 17 - RING-box protein 2-like pseudo - - - - 20121209 -9606 101060120 LOC101060120 - - - 2 - uncharacterized LOC101060120 pseudo - - - - 20121209 -9606 101060121 LOC101060121 - - - 5 - uncharacterized LOC101060121 pseudo - - - - 20121209 -9606 101060122 LOC101060122 - - - 14 - uncharacterized LOC101060122 pseudo - - - - 20121209 -9606 101060123 LOC101060123 - - - 9 - uncharacterized LOC101060123 pseudo - - - - 20121209 -9606 101060124 LOC101060124 - - - 16 - uncharacterized LOC101060124 pseudo - - - - 20121209 -9606 101060125 LOC101060125 - - - 17 - mitochondrial import receptor subunit TOM20 homolog pseudo - - - - 20121209 -9606 101060126 LOC101060126 - - - 1 - uncharacterized LOC101060126 pseudo - - - - 20121209 -9606 101060127 LOC101060127 - - - 5 - 60S acidic ribosomal protein P1-like pseudo - - - - 20121209 -9606 101060128 LOC101060128 - - - 7 - putative uncharacterized protein encoded by LINC00174-like protein-coding - - - - 20121222 -9606 101060129 LOC101060129 - - - 16 - uncharacterized LOC101060129 pseudo - - - - 20121222 -9606 101060130 LOC101060130 - - - 15 - Ig heavy chain V-I region V35-like other - - - - 20121209 -9606 101060131 LOC101060131 - - - 13 - uncharacterized LOC101060131 pseudo - - - - 20121209 -9606 101060132 LOC101060132 - - - 16 - uncharacterized LOC101060132 pseudo - - - - 20121209 -9606 101060133 LOC101060133 - - - 7 - myosin regulatory light chain 10-like protein-coding - - - - 20121222 -9606 101060134 LOC101060134 - - - 7 - gem-associated protein 7-like pseudo - - - - 20121209 -9606 101060135 LOC101060135 - - - 5 - uncharacterized LOC101060135 pseudo - - - - 20121209 -9606 101060136 LOC101060136 - - - Y - BCL-6 corepressor-like protein-coding - - - - 20121222 -9606 101060137 LOC101060137 - - - 16 - uncharacterized LOC101060137 pseudo - - - - 20121209 -9606 101060138 LOC101060138 - - - 7 - zinc finger protein 316-like protein-coding - - - - 20121222 -9606 101060139 LOC101060139 - - - 7 - uncharacterized LOC101060139 pseudo - - - - 20121222 -9606 101060140 LOC101060140 - - - Y - testis-specific Y-encoded protein 2-like protein-coding - - - - 20121222 -9606 101060141 LOC101060141 - - - 3 - uncharacterized LOC101060141 miscRNA - - - - 20121222 -9606 101060142 LOC101060142 - - - 2 - uncharacterized LOC101060142 miscRNA - - - - 20121222 -9606 101060143 LOC101060143 - - - 2 - uncharacterized LOC101060143 pseudo - - - - 20121209 -9606 101060144 LOC101060144 - - - 1 - mediator of RNA polymerase II transcription subunit 28-like pseudo - - - - 20121209 -9606 101060145 LOC101060145 - - - 2|Un - gamma-glutamyltransferase light chain 2-like pseudo - - - - 20121209 -9606 101060146 LOC101060146 - - - X - charged multivesicular body protein 1b-2-like pseudo - - - - 20121209 -9606 101060147 LOC101060147 - - - 7 - uncharacterized LOC101060147 miscRNA - - - - 20121222 -9606 101060148 LOC101060148 - - - 11 - uncharacterized LOC101060148 miscRNA - - - - 20121222 -9606 101060149 LOC101060149 - - - 16 - 40S ribosomal protein S24-like pseudo - - - - 20121209 -9606 101060150 LOC101060150 - - - 8 - uncharacterized LOC101060150 pseudo - - - - 20121209 -9606 101060151 LOC101060151 - - - 4 - arf-GAP with GTPase, ANK repeat and PH domain-containing protein 1-like pseudo - - - - 20121209 -9606 101060152 LOC101060152 - - - X - nck-associated protein 1-like pseudo - - - - 20121209 -9606 101060153 LOC101060153 - - - 8 - uncharacterized LOC101060153 miscRNA - - - - 20121222 -9606 101060154 LOC101060154 - - - 5 - glycine cleavage system H protein, mitochondrial-like pseudo - - - - 20121209 -9606 101060155 LOC101060155 - - - 10 - uncharacterized LOC101060155 protein-coding - - - - 20121222 -9606 101060156 LOC101060156 - - - 1 - 40S ribosomal protein S27-like pseudo - - - - 20121209 -9606 101060157 LOC101060157 - - - Un - uncharacterized LOC101060157 pseudo - - - - 20121209 -9606 101060158 LOC101060158 - - - 4 - diamine acetyltransferase 1-like pseudo - - - - 20121209 -9606 101060159 LOC101060159 - - - 3 - uncharacterized LOC101060159 pseudo - - - - 20121209 -9606 101060160 DDTP1 - - HGNC:44546 3 - D-dopachrome tautomerase pseudogene 1 protein-coding DDTP1 D-dopachrome tautomerase pseudogene 1 O D-dopachrome decarboxylase-like 20121222 -9606 101060161 LOC101060161 - - - 7 - putative uncharacterized protein FLJ44672-like protein-coding - - - - 20121222 -9606 101060162 LOC101060162 - - - 4 - UDP-glucuronosyltransferase 2A1-like pseudo - - - - 20121209 -9606 101060163 LOC101060163 RP11-49L2.2 - - 10 10p12.33 MAM and LDL-receptor class A domain-containing protein C10orf112-like protein-coding - - - - 20121230 -9606 101060164 LOC101060164 - - - 1 - secretory carrier-associated membrane protein 1-like pseudo - - - - 20121209 -9606 101060165 LOC101060165 - - - Un - uncharacterized LOC101060165 protein-coding - - - - 20121222 -9606 101060166 LOC101060166 - - Ensembl:ENSG00000205147 19 - putative uncharacterized protein UNQ9165/PRO28630-like protein-coding - - - - 20121222 -9606 101060167 LOC101060167 - - - X - uncharacterized LOC101060167 protein-coding - - - - 20121222 -9606 101060168 LOC101060168 - - - 16 - Ig heavy chain V-I region V35-like other - - - - 20121209 -9606 101060169 LOC101060169 - - - 2 - uncharacterized LOC101060169 pseudo - - - - 20121209 -9606 101060170 LOC101060170 - - - 1 - uncharacterized LOC101060170 pseudo - - - - 20121209 -9606 101060171 ARMC4P1 - - HGNC:44937 10 - armadillo repeat containing 4 pseudogene 1 protein-coding ARMC4P1 armadillo repeat containing 4 pseudogene 1 O - 20121227 -9606 101060172 LOC101060172 - - - 1 - uncharacterized LOC101060172 pseudo - - - - 20121209 -9606 101060173 LOC101060173 - - - 16 - uncharacterized LOC101060173 pseudo - - - - 20121209 -9606 101060174 LOC101060174 - - - 7 - uncharacterized LOC101060174 pseudo - - - - 20121209 -9606 101060175 LOC101060175 - - Ensembl:ENSG00000148357|Vega:OTTHUMG00000140096 9 - hemicentin-2-like protein-coding - - - - 20121222 -9606 101060176 TPRKBP1 - - HGNC:44943 10 - TP53RK binding protein pseudogene 1 pseudo TPRKBP1 TP53RK binding protein pseudogene 1 O - 20121227 -9606 101060177 LOC101060177 - - - 19 - zinc finger protein 816-like pseudo - - - - 20121209 -9606 101060178 LOC101060178 - - - 7 - uncharacterized LOC101060178 miscRNA - - - - 20121222 -9606 101060179 LOC101060179 - - - 11 - uncharacterized LOC101060179 protein-coding - - - - 20121222 -9606 101060180 LOC101060180 - - - 2 - uncharacterized LOC101060180 pseudo - - - - 20121209 -9606 101060181 LOC101060181 - - Ensembl:ENSG00000197857 19 - zinc finger protein ZnFP12-like protein-coding - - - - 20121222 -9606 101060182 LOC101060182 - - - 7 - uncharacterized LOC101060182 pseudo - - - - 20121209 -9606 101060183 LOC101060183 - - - 7 - putative uncharacterized protein encoded by LINC00174-like protein-coding - - - - 20121222 -9606 101060184 GOLGA2P6 - - HGNC:44948 10 - golgin A2 pseudogene 6 pseudo GOLGA2P6 golgin A2 pseudogene 6 O - 20121227 -9606 101060185 LOC101060185 - - - 7 - uncharacterized LOC101060185 pseudo - - - - 20121209 -9606 101060186 LOC101060186 - - - 6 - uncharacterized LOC101060186 pseudo - - - - 20121209 -9606 101060187 LOC101060187 - - - 19 - putative uncharacterized protein FLJ25328-like pseudo - - - - 20121222 -9606 101060188 LOC101060188 - - - 7 - uncharacterized LOC101060188 pseudo - - - - 20121209 -9606 101060189 LOC101060189 - - - 16 - NEDD8-conjugating enzyme UBE2F-like pseudo - - - - 20121209 -9606 101060190 LOC101060190 - - - 2 - uncharacterized LOC101060190 pseudo - - - - 20121209 -9606 101060191 LOC101060191 - - - 8 - E3 ubiquitin-protein ligase RING2-like pseudo - - - - 20121209 -9606 101060192 LOC101060192 - - - 19 - BCL2/adenovirus E1B 19 kDa protein-interacting protein 3-like pseudo - - - - 20121209 -9606 101060193 LOC101060193 - - Ensembl:ENSG00000185751|Vega:OTTHUMG00000021563 X - G antigen family D member 3-like protein-coding - - - - 20121222 -9606 101060194 LOC101060194 - - - 3 - p53 apoptosis effector related to PMP-22-like pseudo - - - - 20121209 -9606 101060195 LOC101060195 - - - 3 - rRNA-processing protein FCF1 homolog pseudo - - - - 20121222 -9606 101060196 LOC101060196 - - - 12 - NANOG neighbor homeobox-like pseudo - - - - 20121209 -9606 101060197 LOC101060197 - - - 7 - uncharacterized LOC101060197 pseudo - - - - 20121209 -9606 101060198 LOC101060198 - - - 2 - MARVEL domain-containing protein 1-like protein-coding - - - MAL-like protein-like 20121222 -9606 101060199 LOC101060199 - - - X - acyl-coenzyme A synthetase ACSM6, mitochondrial-like pseudo - - - - 20121209 -9606 101060200 LOC101060200 - - Ensembl:ENSG00000214029|Vega:OTTHUMG00000167943 12 - zinc finger protein 891-like protein-coding - - - - 20121222 -9606 101060201 LOC101060201 - - - 17 - UPF0450 protein C17orf58-like pseudo - - - - 20121102 -9606 101060202 LOC101060202 - - - 1 - neuroblastoma breakpoint family member 20-like protein-coding - - - - 20121222 -9606 101060203 LOC101060203 - - - 7 - putative speedy protein E8-like protein-coding - - - - 20121222 -9606 101060204 LOC101060204 - - - 7 - postmeiotic segregation increased 4-like protein-like protein-coding - - - - 20121222 -9606 101060205 LOC101060205 - - - 7 - postmeiotic segregation increased 4-like protein-like protein-coding - - - - 20121222 -9606 101060206 LOC101060206 - - - 3 - transcription termination factor, mitochondrial-like pseudo - - - - 20121102 -9606 101060207 LOC101060207 - - - 1 - uncharacterized LOC101060207 pseudo - - - - 20121102 -9606 101060208 LOC101060208 - - - X - cancer/testis antigen family 45 member A3-like protein-coding - - - - 20121222 -9606 101060209 LOC101060209 - - - 1 - uncharacterized LOC101060209 pseudo - - - - 20121102 -9606 101060210 LOC101060210 - - - X - cancer/testis antigen family 45 member A2-like protein-coding - - - - 20121222 -9606 101060211 LOC101060211 - - - X - cancer/testis antigen family 45 member A3-like protein-coding - - - - 20121222 -9606 101060212 LOC101060212 - - - 17 - uncharacterized LOC101060212 miscRNA - - - - 20121222 -9606 101060213 LOC101060213 - - - 1 - uncharacterized LOC101060213 pseudo - - - - 20121102 -9606 101060214 LOC101060214 - - - 17 - uncharacterized LOC101060214 pseudo - - - - 20121102 -9606 101060215 LOC101060215 - - - 1 - uncharacterized LOC101060215 protein-coding - - - - 20121222 -9606 101060216 LOC101060216 - - - 17 - putative uncharacterized protein FLJ46235-like pseudo - - - - 20121102 -9606 101060217 LOC101060217 - - - 1 - uncharacterized LOC101060217 pseudo - - - - 20121102 -9606 101060218 LOC101060218 - - - 17 - uncharacterized LOC101060218 pseudo - - - - 20121102 -9606 101060219 LOC101060219 - - - 1 - uncharacterized LOC101060219 pseudo - - - - 20121102 -9606 101060220 LOC101060220 - - - 17 - UPF0450 protein C17orf58-like pseudo - - - - 20121102 -9606 101060221 LOC101060221 - - - 1 - vesicle-trafficking protein SEC22b-like pseudo - - - - 20121102 -9606 101060222 LOC101060222 - - - 1 - uncharacterized LOC101060222 pseudo - - - - 20121102 -9606 101060223 LOC101060223 - - - 1 - uncharacterized LOC101060223 pseudo - - - - 20121102 -9606 101060224 LOC101060224 - - - 11 - uncharacterized LOC101060224 pseudo - - - - 20121102 -9606 101060225 LOC101060225 - - - 1 - profilin-1-like pseudo - - - - 20121102 -9606 101060226 LOC101060226 - - - 1 - uncharacterized LOC101060226 protein-coding - - - - 20121222 -9606 101060227 LOC101060227 - - - 1 - uncharacterized LOC101060227 pseudo - - - - 20121102 -9606 101060228 LOC101060228 - - - 19 - killer cell immunoglobulin-like receptor 3DS1-like pseudo - - - - 20121222 -9606 101060229 LOC101060229 - - - 19 - zinc finger protein 486-like protein-coding - - - - 20121222 -9606 101060230 LOC101060230 - - - X - melanoma-associated antigen 12-like protein-coding - - - - 20121222 -9606 101060231 LOC101060231 - - - X - chondrosarcoma-associated gene 2/3 protein-like protein-coding - - - - 20121222 -9606 101060232 LOC101060232 - - - 12 - taste receptor type 2 member 64-like pseudo - - - - 20121102 -9606 101060233 LOC101060233 - - - X - medium-wave-sensitive opsin 1-like protein-coding - - - - 20121222 -9606 101060234 LOC101060234 - - - X - testis-specific protein TEX28-like protein-coding - - - - 20121222 -9606 101060235 LOC101060235 - - - X - thymosin beta-15B-like protein-coding - - - - 20121222 -9606 101060236 LOC101060236 - - - X - developmental pluripotency-associated protein 3-like protein-coding - - - - 20121222 -9606 101060237 LOC101060237 - - - 1 - uncharacterized LOC101060237 miscRNA - - - - 20121222 -9606 101060238 LOC101060238 - - - 1 - neuroblastoma breakpoint family member 14-like protein-coding - - - - 20121222 -9606 101060239 LOC101060239 - - - 7 - uncharacterized LOC101060239 pseudo - - - - 20121102 -9606 101060240 LOC101060240 - - - 9 - uncharacterized LOC101060240 pseudo - - - - 20121102 -9606 101060241 LOC101060241 - - - 1 - prostaglandin reductase 1-like pseudo - - - - 20121102 -9606 101060242 LOC101060242 - - - 1 - uncharacterized LOC101060242 protein-coding - - - - 20121222 -9606 101060243 LOC101060243 - - - 15 - ribosome biogenesis protein BMS1 homolog pseudo - - - - 20121102 -9606 101060244 LOC101060244 - - - 5 - uncharacterized LOC101060244 pseudo - - - - 20121222 -9606 101060245 LOC101060245 - - - 9 - protein FAM27E2-like pseudo - - - - 20121102 -9606 101060246 LOC101060246 - - - 6 - putative uncharacterized protein KIF25-AS1-like protein-coding - - - - 20121222 -9606 101060247 LOC101060247 - - - 1 - Golgi pH regulator B-like protein-coding - - - - 20121222 -9606 101060248 LOC101060248 - - - 1 - uncharacterized LOC101060248 pseudo - - - - 20121102 -9606 101060249 LOC101060249 - - - 7 - uncharacterized LOC101060249 pseudo - - - - 20121102 -9606 101060250 LOC101060250 - - - 22 - uncharacterized LOC101060250 pseudo - - - - 20121102 -9606 101060251 LOC101060251 - - - 9 - protein FAM27D1-like pseudo - - - - 20121102 -9606 101060252 LOC101060252 - - - 16 - bolA-like protein 2-like protein-coding - - - - 20121222 -9606 101060253 LOC101060253 - - - 16 - nuclear pore complex-interacting protein-like 2-like protein-coding - - - - 20121222 -9606 101060254 LOC101060254 - - - 1 - myomegalin-like protein-coding - - - - 20121222 -9606 101060255 LOC101060255 - - - 2 - uncharacterized LOC101060255 pseudo - - - - 20121102 -9606 101060256 LOC101060256 - - - 11 - tripartite motif-containing protein 49-like protein 1-like pseudo - - - - 20121102 -9606 101060257 LOC101060257 - - - 16 - uncharacterized LOC101060257 protein-coding - - - - 20121222 -9606 101060258 LOC101060258 - - - 22 - uncharacterized LOC101060258 pseudo - - - - 20121102 -9606 101060259 LOC101060259 - - - 9 - protein FAM27D1-like protein-coding - - - - 20121222 -9606 101060260 LOC101060260 - - - 1 - uncharacterized LOC101060260 miscRNA - - - - 20121222 -9606 101060261 LOC101060261 - - - 1 - uncharacterized LOC101060261 protein-coding - - - - 20121222 -9606 101060262 LOC101060262 - - - 11 - tripartite motif-containing protein 49-like protein 1-like protein-coding - - - - 20121222 -9606 101060263 LOC101060263 - - - 1 - vesicle-trafficking protein SEC22b-like pseudo - - - - 20121102 -9606 101060264 LOC101060264 - - - 6 - uncharacterized LOC101060264 miscRNA - - - - 20121222 -9606 101060265 LOC101060265 - - - 12 - ovostatin homolog 2-like protein-coding - - - - 20121222 -9606 101060266 LOC101060266 - - - 22 - uncharacterized LOC101060266 pseudo - - - - 20121102 -9606 101060267 LOC101060267 - - - 17 - c-C motif chemokine 3-like protein-coding - - - - 20121222 -9606 101060268 LOC101060268 - - - 1 - uncharacterized LOC101060268 miscRNA - - - - 20121222 -9606 101060269 LOC101060269 - - - 1 - uncharacterized LOC101060269 pseudo - - - - 20121102 -9606 101060270 LOC101060270 - - - 1 - uncharacterized LOC101060270 miscRNA - - - - 20121222 -9606 101060271 LOC101060271 - - - 17 - c-C motif chemokine 18-like protein-coding - - - - 20121222 -9606 101060272 LOC101060272 - - - 1 - ubiquitin-conjugating enzyme E2 D4-like pseudo - - - - 20121102 -9606 101060273 LOC101060273 - - - 1 - uncharacterized LOC101060273 pseudo - - - - 20121102 -9606 101060274 LOC101060274 - - - X - uncharacterized LOC101060274 pseudo - - - - 20121102 -9606 101060275 LOC101060275 - - - 16 - putative NPIP-like protein LOC100132247-like pseudo - - - - 20121222 -9606 101060276 LOC101060276 - - - 7 - uncharacterized LOC101060276 pseudo - - - - 20121222 -9606 101060277 LOC101060277 - - - 11 - glycine N-acyltransferase-like protein 1-like pseudo - - - - 20121222 -9606 101060278 LOC101060278 - - - 17 - c-C motif chemokine 4-like protein-coding - - - - 20121222 -9606 101060279 LOC101060279 - - - 1 - profilin-1-like pseudo - - - - 20121102 -9606 101060280 LOC101060280 - - - 7 - putative speedy protein E8-like pseudo - - - - 20121102 -9606 101060281 LOC101060281 - - - 1 - vesicular, overexpressed in cancer, prosurvival protein 1-like protein-coding - - - - 20121222 -9606 101060282 LOC101060282 - - - 6 - olfactory receptor 4F3/4F16/4F29-like pseudo - - - - 20121102 -9606 101060283 LOC101060283 - - - 7 - putative speedy protein E8-like pseudo - - - - 20121222 -9606 101060284 LOC101060284 - - - 7 - 60S ribosomal protein L31-like pseudo - - - - 20121102 -9606 101060285 LOC101060285 - - - 1 - peptidyl-prolyl cis-trans isomerase A-like 4A/B/C-like protein-coding - - - - 20121222 -9606 101060286 LOC101060286 - - - 11 - glycine N-acyltransferase-like protein 1-like pseudo - - - - 20121102 -9606 101060287 LOC101060287 - - - 17 - TBC1 domain family member 3G-like protein-coding - - - - 20121222 -9606 101060288 LOC101060288 - - - 1 - PRAME family member 9/15-like protein-coding - - - - 20121222 -9606 101060289 LOC101060289 - - - 1 - uncharacterized LOC101060289 pseudo - - - - 20121102 -9606 101060290 LOC101060290 - - - 1 - uncharacterized LOC101060290 pseudo - - - - 20121102 -9606 101060291 LOC101060291 - - - 1 - myomegalin-like protein-coding - - - - 20121222 -9606 101060292 LOC101060292 - - - 3 - uncharacterized LOC101060292 pseudo - - - - 20121102 -9606 101060293 LOC101060293 - - - 4 - putative heterogeneous nuclear ribonucleoprotein A1-like 3-like pseudo - - - - 20121102 -9606 101060294 LOC101060294 - - - 1 - PRAME family member 13-like pseudo - - - - 20121102 -9606 101060295 LOC101060295 - - - 1 - PRAME family member 9/15-like protein-coding - - - - 20121222 -9606 101060296 LOC101060296 - - - 16 - uncharacterized LOC101060296 pseudo - - - - 20121102 -9606 101060297 LOC101060297 - - - 9 - protein FAM27E3-like pseudo - - - - 20121102 -9606 101060298 LOC101060298 - - - 1 - neuroblastoma breakpoint family member 1-like protein-coding - - - - 20121222 -9606 101060299 LOC101060299 - - - 3 - uncharacterized LOC101060299 pseudo - - - - 20121102 -9606 101060300 LOC101060300 - - - 1 - uncharacterized LOC101060300 miscRNA - - - - 20121222 -9606 101060301 LOC101060301 - - - 1 - heterogeneous nuclear ribonucleoprotein C-like 1-like protein-coding - - - - 20121222 -9606 101060302 LOC101060302 - - - 1 - uncharacterized LOC101060302 pseudo - - - - 20121222 -9606 101060303 LOC101060303 - - - 17 - TBC1 domain family member 3G-like protein-coding - - - - 20121222 -9606 101060304 LOC101060304 - - - 22 - protein phosphatase 1 regulatory subunit 26-like pseudo - - - - 20121102 -9606 101060305 LOC101060305 - - - X - testis-specific protein TEX28-like protein-coding - - - - 20121222 -9606 101060306 LOC101060306 - - - 1 - profilin-1-like pseudo - - - - 20121102 -9606 101060307 LOC101060307 - - - 8 - protein FAM87B-like protein-coding - - - - 20121222 -9606 101060308 LOC101060308 - - - 1 - PRAME family member 9/15-like protein-coding - - - - 20121222 -9606 101060309 LOC101060309 - - - 1 - vesicle-trafficking protein SEC22b-like pseudo - - - - 20121102 -9606 101060310 LOC101060310 - - - 16 - protein capicua homolog pseudo - - - - 20121102 -9606 101060311 LOC101060311 - - - 12 - probable ATP-dependent RNA helicase DDX11-like protein-coding - - - - 20121222 -9606 101060312 LOC101060312 - - - 1 - vesicle-trafficking protein SEC22b-like pseudo - - - - 20121102 -9606 101060313 LOC101060313 - - - 22 - uncharacterized LOC101060313 pseudo - - - - 20121102 -9606 101060314 LOC101060314 - - - 4 - uncharacterized LOC101060314 miscRNA - - - - 20121222 -9606 101060315 LOC101060315 - - - 1 - neurogenic locus notch homolog protein 2-like pseudo - - - - 20121222 -9606 101060316 LOC101060316 - - - 7 - rho guanine nucleotide exchange factor 5-like protein-coding - - - - 20121222 -9606 101060317 LOC101060317 - - - X - paraneoplastic antigen-like protein 6B-like protein-coding - - - - 20121222 -9606 101060318 LOC101060318 - - - 1 - eukaryotic translation initiation factor 1A, X-chromosomal-like protein-coding - - - - 20121222 -9606 101060319 LOC101060319 - - - 11 - uncharacterized LOC101060319 miscRNA - - - - 20121222 -9606 101060320 LOC101060320 - - - 9 - suppressor of hairless protein homolog pseudo - - - - 20121102 -9606 101060321 LOC101060321 - - - 17 - TBC1 domain family member 3H-like protein-coding - - - - 20121222 -9606 101060322 LOC101060322 - - - X - telomeric repeat-binding factor 1-like pseudo - - - - 20121102 -9606 101060323 LOC101060323 - - - 9 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060324 LOC101060324 - - - 1 - espin-like pseudo - - - - 20121102 -9606 101060325 LOC101060325 - - - 1 - uncharacterized LOC101060325 pseudo - - - - 20121102 -9606 101060326 LOC101060326 - - - 10 - uncharacterized LOC101060326 pseudo - - - - 20121102 -9606 101060327 LOC101060327 - - - 1 - UPF0627 protein ENSP00000364708-like pseudo - - - - 20121102 -9606 101060328 LOC101060328 - - - X - uncharacterized LOC101060328 protein-coding - - - - 20121222 -9606 101060329 LOC101060329 - - - 1 - uncharacterized LOC101060329 pseudo - - - - 20121102 -9606 101060330 LOC101060330 - - - 1 - protein FAM91A1-like pseudo - - - - 20121102 -9606 101060331 LOC101060331 - - - 7 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060332 LOC101060332 - - - 1 - uncharacterized LOC101060332 pseudo - - - - 20121102 -9606 101060333 LOC101060333 - - - 6 - uncharacterized LOC101060333 protein-coding - - - - 20121222 -9606 101060334 LOC101060334 - - - 9 - uncharacterized LOC101060334 pseudo - - - - 20121102 -9606 101060335 LOC101060335 - - - 11 - protein RCC2-like protein-coding - - - - 20121222 -9606 101060336 LOC101060336 - - - 1 - uncharacterized LOC101060336 pseudo - - - - 20121102 -9606 101060337 LOC101060337 - - - 1 - putative uncharacterized protein FLJ35883-like pseudo - - - - 20121102 -9606 101060338 LOC101060338 - - - 7 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060339 LOC101060339 - - - 1 - rootletin-like pseudo - - - - 20121222 -9606 101060340 LOC101060340 - - - 1 - uncharacterized LOC101060340 pseudo - - - - 20121102 -9606 101060341 LOC101060341 - - - 7 - uncharacterized LOC101060341 protein-coding - - - - 20121222 -9606 101060342 LOC101060342 - - - 7 - uncharacterized LOC101060342 pseudo - - - - 20121102 -9606 101060343 LOC101060343 - - - Un - uncharacterized LOC101060343 pseudo - - - - 20121102 -9606 101060344 LOC101060344 - - - 1 - uncharacterized LOC101060344 protein-coding - - - - 20121222 -9606 101060345 LOC101060345 - - - 1 - ankyrin repeat domain-containing protein 35-like protein-coding - - - - 20121222 -9606 101060346 LOC101060346 - - - X - T-complex protein 11 homolog pseudo - - - - 20121102 -9606 101060347 LOC101060347 - - - 1 - hepatocyte growth factor-like protein-like pseudo - - - - 20121222 -9606 101060348 LOC101060348 - - - 17 - puromycin-sensitive aminopeptidase-like protein-like pseudo - - - - 20121222 -9606 101060349 LOC101060349 - - - 7 - uncharacterized LOC101060349 pseudo - - - - 20121102 -9606 101060350 LOC101060350 - - - 16 - ectonucleotide pyrophosphatase/phosphodiesterase family member 7-like protein-coding - - - - 20121222 -9606 101060351 LOC101060351 - - - 17 - TBC1 domain family member 3G-like protein-coding - - - - 20121222 -9606 101060352 LOC101060352 - - - Un - putative double homeobox protein 3-like pseudo - - - - 20121102 -9606 101060353 LOC101060353 - - - 1 - myomegalin-like protein-coding - - - - 20121222 -9606 101060354 LOC101060354 - - - 1 - uncharacterized LOC101060354 pseudo - - - - 20121102 -9606 101060355 LOC101060355 - - - 7 - putative uncharacterized protein FLJ46235-like pseudo - - - - 20121102 -9606 101060356 LOC101060356 - - - 7 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060357 LOC101060357 - - - 8 - uncharacterized LOC101060357 protein-coding - - - - 20121222 -9606 101060358 LOC101060358 - - - 11 - putative uncharacterized protein FLJ38264-like pseudo - - - - 20121102 -9606 101060359 LOC101060359 - - - 13 - uncharacterized LOC101060359 pseudo - - - - 20121102 -9606 101060360 LOC101060360 - - - 16 - apolipophorins-like protein-coding - - - - 20121222 -9606 101060361 LOC101060361 - - - Un - mucin-16-like protein-coding - - - - 20121222 -9606 101060362 LOC101060362 - - - 1 - neuroblastoma breakpoint family member 20-like protein-coding - - - - 20121222 -9606 101060363 LOC101060363 - - - 1 - peptidyl-prolyl cis-trans isomerase A-like protein-coding - - - - 20121222 -9606 101060364 LOC101060364 - - - 7 - putative uncharacterized protein FLJ46348-like pseudo - - - - 20121102 -9606 101060365 LOC101060365 - - - 7 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060366 LOC101060366 - - - 8 - uncharacterized LOC101060366 pseudo - - - - 20121102 -9606 101060367 LOC101060367 - - - 17 - TBC1 domain family member 3H-like protein-coding - - - - 20121222 -9606 101060368 LOC101060368 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121102 -9606 101060369 LOC101060369 - - - 3 - uncharacterized LOC101060369 pseudo - - - - 20121102 -9606 101060370 LOC101060370 - - - 5 - uncharacterized LOC101060370 pseudo - - - - 20121102 -9606 101060371 LOC101060371 - - - 8 - exonuclease GOR-like protein-coding - - - - 20121222 -9606 101060372 LOC101060372 - - - 1 - dimethylaniline monooxygenase [N-oxide-forming] 5-like protein-coding - - - - 20121222 -9606 101060373 LOC101060373 - - - 16 - nodal modulator 1-like protein-coding - - - - 20121222 -9606 101060374 LOC101060374 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060375 LOC101060375 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121222 -9606 101060376 LOC101060376 - - - 17 - TBC1 domain family member 3F-like protein-coding - - - - 20121222 -9606 101060377 LOC101060377 - - - 9 - uncharacterized LOC101060377 pseudo - - - - 20121102 -9606 101060378 LOC101060378 - - - 1 - uncharacterized LOC101060378 protein-coding - - - - 20121222 -9606 101060379 LOC101060379 - - - 1 - uncharacterized LOC101060379 pseudo - - - - 20121102 -9606 101060380 LOC101060380 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 101060381 LOC101060381 - - - 9 - uncharacterized LOC101060381 pseudo - - - - 20121102 -9606 101060382 LOC101060382 - - - 5 - putative POM121-like protein 1-like protein-coding - - - - 20121222 -9606 101060383 LOC101060383 - - - 1 - glycine cleavage system H protein, mitochondrial-like pseudo - - - - 20121102 -9606 101060384 LOC101060384 - - - 1 - UPF0627 protein ENSP00000341061/ENSP00000339743-like protein-coding - - - - 20121222 -9606 101060385 LOC101060385 - - - 2 - uncharacterized LOC101060385 miscRNA - - - - 20121222 -9606 101060386 LOC101060386 - - - 16 - serine/threonine-protein kinase SMG1-like protein-coding - - - - 20121222 -9606 101060387 LOC101060387 - - - 1 - uncharacterized LOC101060387 protein-coding - - - - 20121222 -9606 101060388 LOC101060388 - - - 1 - uncharacterized LOC101060388 pseudo - - - - 20121102 -9606 101060389 LOC101060389 - - - 17 - TBC1 domain family member 3F-like protein-coding - - - - 20121222 -9606 101060390 LOC101060390 - - - 16 - carbonic anhydrase 5A, mitochondrial-like pseudo - - - - 20121102 -9606 101060391 LOC101060391 - - - 2 - uncharacterized LOC101060391 protein-coding - - - - 20121222 -9606 101060392 LOC101060392 - - - 1 - uncharacterized LOC101060392 pseudo - - - - 20121102 -9606 101060393 LOC101060393 - - - 16 - nuclear pore complex-interacting protein-like 1-like protein-coding - - - - 20121222 -9606 101060394 LOC101060394 - - - 16 - putative NPIP-like protein LOC100132247-like protein-coding - - - - 20121222 -9606 101060395 LOC101060395 - - - 21 - uncharacterized LOC101060395 protein-coding - - - - 20121222 -9606 101060396 LOC101060396 - - - 3 - putative tubulin beta chain-like protein ENSP00000290377-like pseudo - - - - 20121102 -9606 101060397 LOC101060397 - - - 4 - uncharacterized LOC101060397 protein-coding - - - - 20121222 -9606 101060398 LOC101060398 - - - 1 - uncharacterized LOC101060398 miscRNA - - - - 20121222 -9606 101060399 LOC101060399 - - - 16 - cerebellar degeneration-related protein 2-like pseudo - - - - 20121222 -9606 101060400 LOC101060400 - - - 17 - uncharacterized LOC101060400 protein-coding - - - - 20121222 -9606 101060401 LOC101060401 - - - 18 - uncharacterized LOC101060401 pseudo - - - - 20121102 -9606 101060402 LOC101060402 - - - 1 - gap junction alpha-8 protein-like protein-coding - - - - 20121222 -9606 101060403 LOC101060403 - - - 17 - TBC1 domain family member 3G-like protein-coding - - - - 20121222 -9606 101060404 LOC101060404 - - - 1 - uncharacterized LOC101060404 protein-coding - - - - 20121222 -9606 101060405 LOC101060405 - - - 16 - RNA polymerase I-specific transcription initiation factor RRN3-like protein-coding - - - - 20121222 -9606 101060406 LOC101060406 - - - 17 - uncharacterized LOC101060406 protein-coding - - - - 20121222 -9606 101060407 LOC101060407 - - - 21 - uncharacterized LOC101060407 protein-coding - - - - 20121222 -9606 101060408 LOC101060408 - - - 11 - glutaredoxin-like protein C5orf63-like protein-coding - - - - 20121222 -9606 101060409 LOC101060409 - - - 1 - nucleoside diphosphate-linked moiety X motif 17-like protein-coding - - - - 20121222 -9606 101060410 LOC101060410 - - - 16 - serine/threonine-protein kinase SMG1-like protein-coding - - - - 20121222 -9606 101060411 LOC101060411 - - - Un - uncharacterized LOC101060411 protein-coding - - - - 20121222 -9606 101060412 LOC101060412 - - - 16 - nuclear pore complex-interacting protein-like protein-coding - - - - 20121222 -9606 101060413 LOC101060413 - - - 20 - protein capicua homolog pseudo - - - - 20121102 -9606 101060414 LOC101060414 - - - 9 - uncharacterized LOC101060414 miscRNA - - - - 20121222 -9606 101060415 LOC101060415 - - - 1 - peptidyl-prolyl cis-trans isomerase A-like 4A/B/C-like protein-coding - - - - 20121222 -9606 101060416 LOC101060416 - - - 16 - serine/threonine-protein kinase SMG1-like protein-coding - - - - 20121222 -9606 101060417 LOC101060417 - - - 19 - zinc finger protein 486-like protein-coding - - - - 20121222 -9606 101060418 LOC101060418 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060419 LOC101060419 - - - 1 - signal peptidase complex subunit 1-like pseudo - - - - 20121102 -9606 101060420 LOC101060420 - - - 15 - uncharacterized LOC101060420 pseudo - - - - 20121102 -9606 101060421 LOC101060421 - - - 17 - TBC1 domain family member 3F-like protein-coding - - - - 20121222 -9606 101060422 LOC101060422 - - - 1 - integrin alpha-10-like protein-coding - - - - 20121222 -9606 101060423 LOC101060423 - - - 2 - uncharacterized LOC101060423 protein-coding - - - - 20121222 -9606 101060424 LOC101060424 - - - 16 - otoancorin-like pseudo - - - - 20121222 -9606 101060425 LOC101060425 - - - 1 - UPF0627 protein ENSP00000358171-like protein-coding - - - - 20121222 -9606 101060426 LOC101060426 - - - 7 - protein FAM27D1-like pseudo - - - - 20121102 -9606 101060427 LOC101060427 - - - 13 - uncharacterized LOC101060427 protein-coding - - - - 20121222 -9606 101060428 LOC101060428 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060429 LOC101060429 - - - 16 - polycystin-1-like protein-coding - - - - 20121222 -9606 101060430 LOC101060430 - - - 21 - putative uncharacterized protein encoded by LINC00205-like protein-coding - - - - 20121222 -9606 101060431 LOC101060431 - - - 1 - E3 SUMO-protein ligase PIAS3-like protein-coding - - - - 20121222 -9606 101060432 LOC101060432 - - - 11 - uncharacterized LOC101060432 protein-coding - - - - 20121222 -9606 101060433 LOC101060433 - - - 16 - pyridoxal-dependent decarboxylase domain-containing protein 1-like protein-coding - - - - 20121222 -9606 101060434 LOC101060434 - - - 16 - NPIP-like protein LOC729602-like protein-coding - - - - 20121222 -9606 101060435 LOC101060435 - - - 17 - uncharacterized LOC101060435 pseudo - - - - 20121102 -9606 101060436 LOC101060436 - - - 10 - uncharacterized LOC101060436 pseudo - - - - 20121102 -9606 101060437 LOC101060437 - - - 15 - Ig heavy chain V-I region V35-like other - - - - 20121102 -9606 101060438 LOC101060438 - - - 16 - hsp90 co-chaperone Cdc37-like pseudo - - - - 20121102 -9606 101060439 LOC101060439 - - - 5 - ras-related protein Rap-1b-like protein-like protein-coding - - - - 20121222 -9606 101060440 LOC101060440 - - - 17 - TBC1 domain family member 3F-like protein-coding - - - - 20121222 -9606 101060441 LOC101060441 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060442 LOC101060442 - - - 1 - calcium-binding mitochondrial carrier protein SCaMC-1-like protein-coding - - - - 20121222 -9606 101060443 LOC101060443 - - - 12 - uncharacterized LOC101060443 miscRNA - - - - 20121222 -9606 101060444 LOC101060444 - - - 7 - uncharacterized LOC101060444 protein-coding - - - - 20121222 -9606 101060445 LOC101060445 - - - 9 - uncharacterized LOC101060445 protein-coding - - - - 20121222 -9606 101060446 LOC101060446 - - - 10 - neuropeptide Y receptor type 4-like protein-coding - - - - 20121222 -9606 101060447 LOC101060447 - - - 2 - uncharacterized LOC101060447 pseudo - - - - 20121102 -9606 101060448 LOC101060448 - - - 14 - putative neurofibromin 1-like protein 4/6-like protein-coding - - - - 20121222 -9606 101060449 LOC101060449 - - - 16 - putative NPIP-like protein LOC613037-like protein-coding - - - - 20121222 -9606 101060450 LOC101060450 - - - 5 - uncharacterized LOC101060450 pseudo - - - - 20121102 -9606 101060451 LOC101060451 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060452 LOC101060452 - - - 1 - uncharacterized LOC101060452 pseudo - - - - 20121102 -9606 101060453 LOC101060453 - - - 13 - fatty acid-binding protein, epidermal-like protein-coding - - - - 20121222 -9606 101060454 LOC101060454 - - - 14 - mediator of RNA polymerase II transcription subunit 15-like pseudo - - - - 20121102 -9606 101060455 LOC101060455 - - - 16 - serine/threonine-protein kinase SMG1-like pseudo - - - - 20121222 -9606 101060456 LOC101060456 - - - 1 - uncharacterized LOC101060456 pseudo - - - - 20121222 -9606 101060457 LOC101060457 - - - 18 - RNA polymerase II transcription factor SIII subunit A3-like protein-coding - - - - 20121222 -9606 101060458 LOC101060458 - - - 13 - peptidyl-prolyl cis-trans isomerase A-like protein-coding - - - - 20121222 -9606 101060459 LOC101060459 - - - 16 - uncharacterized LOC101060459 protein-coding - - - - 20121222 -9606 101060460 LOC101060460 - - - 1 - DNA-directed RNA polymerase III subunit RPC3-like protein-coding - - - - 20121222 -9606 101060461 LOC101060461 - - - 13 - uncharacterized LOC101060461 pseudo - - - - 20121102 -9606 101060462 LOC101060462 - - - 10 - uncharacterized LOC101060462 protein-coding - - - - 20121222 -9606 101060463 LOC101060463 - - - 1 - myomegalin-like pseudo - - - - 20121222 -9606 101060464 LOC101060464 - - - 18 - RNA polymerase II transcription factor SIII subunit A3-like protein-coding - - - - 20121222 -9606 101060465 LOC101060465 - - - 16 - putative NPIP-like protein LOC613037-like protein-coding - - - - 20121222 -9606 101060466 LOC101060466 - - - 22 - putative POM121-like protein 1-like pseudo - - - - 20121222 -9606 101060467 LOC101060467 - - - 10 - putative heterogeneous nuclear ribonucleoprotein A1-like 3-like pseudo - - - - 20121222 -9606 101060468 LOC101060468 - - - 18 - RNA polymerase II transcription factor SIII subunit A3-like protein-coding - - - - 20121222 -9606 101060469 LOC101060469 - - - 9 - uncharacterized LOC101060469 pseudo - - - - 20121102 -9606 101060470 LOC101060470 - - - 1 - otopetrin-1-like pseudo - - - - 20121102 -9606 101060471 LOC101060471 - - - 17 - puromycin-sensitive aminopeptidase-like protein-like protein-coding - - - - 20121222 -9606 101060472 LOC101060472 - - - 22 - breakpoint cluster region protein-like protein-coding - - - - 20121222 -9606 101060473 LOC101060473 - - - 18 - uncharacterized LOC101060473 miscRNA - - - - 20121222 -9606 101060474 LOC101060474 - - - 7 - putative uncharacterized protein FLJ46235-like protein-coding - - - - 20121222 -9606 101060475 LOC101060475 - - - 1 - D(1B) dopamine receptor-like pseudo - - - - 20121222 -9606 101060476 LOC101060476 - - - 7 - uncharacterized LOC101060476 pseudo - - - - 20121102 -9606 101060477 LOC101060477 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060478 LOC101060478 - - - 1 - E3 ubiquitin-protein ligase RNF115-like protein-coding - - - - 20121222 -9606 101060479 LOC101060479 - - - 16 - Ig heavy chain V-III region VH26-like other - - - - 20121102 -9606 101060480 LOC101060480 - - - 17 - putative uncharacterized protein FLJ46089-like protein-coding - - - - 20121222 -9606 101060481 LOC101060481 - - - 7 - putative uncharacterized protein FLJ46348-like pseudo - - - - 20121102 -9606 101060482 LOC101060482 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060483 LOC101060483 - - - 22 - uncharacterized LOC101060483 miscRNA - - - - 20121222 -9606 101060484 LOC101060484 - - - 19 - transmembrane protein 50B-like pseudo - - - - 20121102 -9606 101060485 LOC101060485 - - - 1 - uncharacterized LOC101060485 pseudo - - - - 20121102 -9606 101060486 LOC101060486 - - - 11 - 60S ribosomal protein L15-like pseudo - - - - 20121102 -9606 101060487 LOC101060487 - - - 1 - ankyrin repeat domain-containing protein 34A-like protein-coding - - - - 20121222 -9606 101060488 LOC101060488 - - - 14 - uncharacterized LOC101060488 protein-coding - - - - 20121222 -9606 101060489 LOC101060489 - - - 17 - TBC1 domain family member 3F-like protein-coding - - - - 20121222 -9606 101060490 LOC101060490 - - - 22 - mitochondrial import receptor subunit TOM40 homolog pseudo - - - - 20121102 -9606 101060491 LOC101060491 - - - 1 - 60S ribosomal protein L34-like pseudo - - - - 20121102 -9606 101060492 LOC101060492 - - - 8 - uncharacterized LOC101060492 pseudo - - - - 20121102 -9606 101060493 LOC101060493 - - - 9 - uncharacterized LOC101060493 miscRNA - - - - 20121222 -9606 101060494 LOC101060494 - - - 1 - uncharacterized LOC101060494 miscRNA - - - - 20121222 -9606 101060495 LOC101060495 - - - 6 - uncharacterized LOC101060495 pseudo - - - - 20121222 -9606 101060496 LOC101060496 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 101060497 LOC101060497 - - - 16 - uncharacterized LOC101060497 miscRNA - - - - 20121222 -9606 101060498 LOC101060498 - - - 4 - uncharacterized LOC101060498 protein-coding - - - - 20121222 -9606 101060499 LOC101060499 - - - 19 - leukocyte immunoglobulin-like receptor subfamily A member 6-like pseudo - - - - 20121102 -9606 101060500 LOC101060500 - - - 22 - ubiquitin carboxyl-terminal hydrolase 10-like pseudo - - - - 20121102 -9606 101060501 LOC101060501 - - - 9 - lupus La protein-like pseudo - - - - 20121102 -9606 101060502 LOC101060502 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060503 LOC101060503 - - - 1 - thioredoxin-interacting protein-like protein-coding - - - - 20121222 -9606 101060504 LOC101060504 - - - 5 - uncharacterized LOC101060504 pseudo - - - - 20121102 -9606 101060505 LOC101060505 - - - 16 - uncharacterized LOC101060505 pseudo - - - - 20121102 -9606 101060506 LOC101060506 - - - 17 - TBC1 domain family member 3G-like protein-coding - - - - 20121222 -9606 101060507 LOC101060507 - - - 7 - uncharacterized LOC101060507 pseudo - - - - 20121102 -9606 101060508 LOC101060508 - - - Un - hemicentin-2-like protein-coding - - - - 20121222 -9606 101060509 LOC101060509 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121102 -9606 101060510 LOC101060510 - - - 11 - 60S ribosomal protein L31-like pseudo - - - - 20121222 -9606 101060511 LOC101060511 - - - 1 - 5'-AMP-activated protein kinase subunit beta-2-like protein-coding - - - - 20121222 -9606 101060512 LOC101060512 - - - 16 - uncharacterized LOC101060512 pseudo - - - - 20121102 -9606 101060513 LOC101060513 - - - 4 - ankyrin repeat domain-containing protein 26-like pseudo - - - - 20121102 -9606 101060514 LOC101060514 - - - Un - dynein heavy chain 7, axonemal-like protein-coding - - - - 20121222 -9606 101060515 LOC101060515 - - - 1 - uncharacterized LOC101060515 pseudo - - - - 20121102 -9606 101060516 LOC101060516 - - - 5 - putative POM121-like protein 1-like protein-coding - - - - 20121222 -9606 101060517 LOC101060517 - - - 8 - uncharacterized LOC101060517 pseudo - - - - 20121102 -9606 101060518 LOC101060518 - - - 1 - peptidyl-prolyl cis-trans isomerase A-like 4A/B/C-like protein-coding - - - - 20121222 -9606 101060519 LOC101060519 - - - 5 - putative beta-glucuronidase-like protein FLJ75429-like protein-coding - - - - 20121222 -9606 101060520 LOC101060520 - - - 8 - peptidyl-prolyl cis-trans isomerase A-like pseudo - - - - 20121102 -9606 101060521 LOC101060521 - - - 16 - DNA-directed RNA polymerase III subunit RPC5-like protein-coding - - - - 20121222 -9606 101060522 LOC101060522 - - - 17 - puromycin-sensitive aminopeptidase-like protein-like protein-coding - - - - 20121222 -9606 101060523 LOC101060523 - - - 9 - GAS2-like protein 1-like pseudo - - - - 20121102 -9606 101060524 LOC101060524 - - - 1 - D(1B) dopamine receptor-like pseudo - - - - 20121222 -9606 101060525 LOC101060525 - - - 1 - hemojuvelin-like protein-coding - - - - 20121222 -9606 101060526 LOC101060526 - - - 13 - uncharacterized LOC101060526 miscRNA - - - - 20121222 -9606 101060527 LOC101060527 - - - 5 - baculoviral IAP repeat-containing protein 1-like protein-coding - - - - 20121222 -9606 101060528 LOC101060528 - - - X - uncharacterized LOC101060528 miscRNA - - - - 20121222 -9606 101060529 LOC101060529 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060530 LOC101060530 - - - 7 - uncharacterized LOC101060530 pseudo - - - - 20121102 -9606 101060531 LOC101060531 - - - 1 - neuroblastoma breakpoint family member 21-like protein-coding - - - - 20121222 -9606 101060532 LOC101060532 - - - 4 - coiled-coil domain-containing protein 29-like pseudo - - - - 20121102 -9606 101060533 LOC101060533 - - - X - uncharacterized LOC101060533 miscRNA - - - - 20121222 -9606 101060534 LOC101060534 - - - 5 - putative POM121-like protein 1-like protein-coding - - - - 20121222 -9606 101060535 LOC101060535 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060536 LOC101060536 - - - 1 - uncharacterized LOC101060536 miscRNA - - - - 20121222 -9606 101060537 LOC101060537 - - - 7 - uncharacterized LOC101060537 pseudo - - - - 20121102 -9606 101060538 LOC101060538 - - - 1 - otopetrin-1-like pseudo - - - - 20121102 -9606 101060539 LOC101060539 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121222 -9606 101060540 LOC101060540 - - - 8 - exonuclease GOR-like protein-coding - - - - 20121222 -9606 101060541 LOC101060541 - - - 1 - RNA-binding protein 8A-like protein-coding - - - - 20121222 -9606 101060542 LOC101060542 - - - 18 - uncharacterized LOC101060542 miscRNA - - - - 20121222 -9606 101060543 LOC101060543 - - - 1 - otopetrin-1-like pseudo - - - - 20121102 -9606 101060544 LOC101060544 - - - 17 - uncharacterized LOC101060544 protein-coding - - - - 20121222 -9606 101060545 LOC101060545 - - - 2 - ribose-5-phosphate isomerase-like protein-coding - - - - 20121222 -9606 101060546 LOC101060546 - - - 17 - uncharacterized LOC101060546 protein-coding - - - - 20121222 -9606 101060547 LOC101060547 - - - 1 - LIX1-like protein-like protein-coding - - - - 20121222 -9606 101060548 LOC101060548 - - - 13 - uncharacterized LOC101060548 miscRNA - - - - 20121222 -9606 101060549 LOC101060549 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121102 -9606 101060550 LOC101060550 - - - 1 - protein capicua homolog pseudo - - - - 20121102 -9606 101060551 LOC101060551 - - - 20 - uncharacterized LOC101060551 protein-coding - - - - 20121222 -9606 101060552 LOC101060552 - - - 11 - putative zinc finger protein 75C-like pseudo - - - - 20121102 -9606 101060553 LOC101060553 - - - 13 - uncharacterized LOC101060553 miscRNA - - - - 20121222 -9606 101060554 LOC101060554 - - - 2 - ankyrin repeat domain-containing protein 36C-like protein-coding - - - - 20121222 -9606 101060555 LOC101060555 - - - 1 - DNA-directed RNA polymerase III subunit RPC7-like protein-coding - - - - 20121222 -9606 101060556 LOC101060556 - - - 12 - filamin-B-like pseudo - - - - 20121102 -9606 101060557 LOC101060557 - - - 16 - von Willebrand factor A domain-containing protein 3A-like protein-coding - - - - 20121222 -9606 101060558 LOC101060558 - - - 5 - putative POM121-like protein 1-like pseudo - - - - 20121222 -9606 101060559 LOC101060559 - - - 7 - uncharacterized LOC101060559 pseudo - - - - 20121102 -9606 101060560 LOC101060560 - - - 9 - forkhead box protein D4-like 6-like protein-coding - - - - 20121222 -9606 101060561 LOC101060561 - - - 1 - protein disulfide-isomerase A3-like pseudo - - - - 20121222 -9606 101060562 LOC101060562 - - - 1 - uncharacterized LOC101060562 protein-coding - - - - 20121222 -9606 101060563 LOC101060563 - - - 15 - uncharacterized LOC101060563 protein-coding - - - - 20121222 -9606 101060564 LOC101060564 - - - 16 - nuclear pore complex-interacting protein-like 3-like pseudo - - - - 20121222 -9606 101060565 LOC101060565 - - - 13 - uncharacterized LOC101060565 protein-coding - - - - 20121222 -9606 101060566 LOC101060566 - - - 2 - Ig kappa chain V-I region Walker-like other - - - - 20121102 -9606 101060567 LOC101060567 - - - 1 - peroxisomal membrane protein 11B-like protein-coding - - - - 20121222 -9606 101060568 LOC101060568 - - - 1 - UPF0627 protein ENSP00000358171-like protein-coding - - - - 20121222 -9606 101060569 LOC101060569 - - - 15 - U3 small nucleolar ribonucleoprotein protein MPP10-like pseudo - - - - 20121222 -9606 101060570 LOC101060570 - - - 16 - eukaryotic elongation factor 2 kinase-like protein-coding - - - - 20121222 -9606 101060571 LOC101060571 - - - 3 - uncharacterized LOC101060571 protein-coding - - - - 20121222 -9606 101060572 LOC101060572 - - - 17 - putative calcium-sensing receptor-like 1-like pseudo - - - - 20121102 -9606 101060573 LOC101060573 - - - 9 - Ig kappa chain V-I region Walker-like other - - - - 20121102 -9606 101060574 LOC101060574 - - - Un - uncharacterized LOC101060574 miscRNA - - - - 20121222 -9606 101060575 LOC101060575 - - - 1 - Ig kappa chain V-I region Walker-like other - - - - 20121102 -9606 101060576 LOC101060576 - - - 16 - putative NPIP-like protein LOC100132247-like pseudo - - - - 20121222 -9606 101060577 LOC101060577 - - - 17 - ubiquitin carboxyl-terminal hydrolase 6-like pseudo - - - - 20121102 -9606 101060578 LOC101060578 - - - 9 - COBW domain-containing protein 5-like protein-coding - - - - 20121222 -9606 101060579 LOC101060579 - - - 1 - uncharacterized LOC101060579 miscRNA - - - - 20121222 -9606 101060580 LOC101060580 - - - 15 - uncharacterized LOC101060580 protein-coding - - - - 20121222 -9606 101060581 LOC101060581 - - - 10 - arf-GAP with GTPase, ANK repeat and PH domain-containing protein 5-like protein-coding - - - - 20121222 -9606 101060582 LOC101060582 - - - 1 - myomegalin-like protein-coding - - - - 20121222 -9606 101060583 LOC101060583 - - - 2 - uncharacterized LOC101060583 pseudo - - - - 20121102 -9606 101060584 LOC101060584 - - - 16 - uncharacterized LOC101060584 pseudo - - - - 20121102 -9606 101060585 LOC101060585 - - - 9 - recombining binding protein suppressor of hairless-like pseudo - - - - 20121102 -9606 101060587 LOC101060587 - - - 15 - uncharacterized LOC101060587 pseudo - - - - 20121102 -9606 101060588 LOC101060588 - - - 15 - uncharacterized LOC101060588 protein-coding - - - - 20121222 -9606 101060589 LOC101060589 - - - 16 - serine/threonine-protein kinase SMG1-like protein-coding - - - - 20121222 -9606 101060590 LOC101060590 - - - 1 - uncharacterized LOC101060590 miscRNA - - - - 20121222 -9606 101060591 LOC101060591 - - - 9 - putative UPF0633 protein MGC21881-like protein-coding - - - - 20121222 -9606 101060592 LOC101060592 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060593 LOC101060593 - - - 1 - uncharacterized LOC101060593 pseudo - - - - 20121102 -9606 101060594 LOC101060594 - - - 1 - insulin-like growth factor 2 mRNA-binding protein 2-like pseudo - - - - 20121102 -9606 101060595 LOC101060595 - - - 1 - uncharacterized LOC101060595 miscRNA - - - - 20121222 -9606 101060596 LOC101060596 - - - 16 - serine/threonine-protein kinase SMG1-like pseudo - - - - 20121222 -9606 101060597 LOC101060597 - - - 7 - uncharacterized LOC101060597 pseudo - - - - 20121102 -9606 101060598 LOC101060598 - - - 2 - Ig kappa chain V-IV region-like other - - - - 20121102 -9606 101060599 LOC101060599 - - - 7 - postmeiotic segregation increased 4-like protein-like protein-coding - - - - 20121222 -9606 101060600 LOC101060600 - - - 10 - dual specificity protein phosphatase 8-like pseudo - - - - 20121102 -9606 101060601 LOC101060601 - - - 1 - chromodomain-helicase-DNA-binding protein 1-like protein-coding - - - - 20121222 -9606 101060602 LOC101060602 - - - 17 - multidrug and toxin extrusion protein 2-like pseudo - - - - 20121102 -9606 101060603 LOC101060603 - - - 11 - protein tyrosine phosphatase type IVA 1-like pseudo - - - - 20121102 -9606 101060604 LOC101060604 - - - 16 - putative L-type amino acid transporter 1-like protein IMAA-like protein-coding - - - - 20121222 -9606 101060605 LOC101060605 - - - 7 - postmeiotic segregation increased 4-like protein-like pseudo - - - - 20121222 -9606 101060606 LOC101060606 - - - 9 - glucoside xylosyltransferase 1-like pseudo - - - - 20121102 -9606 101060607 LOC101060607 - - - 17 - keratin, type I cytoskeletal 16-like pseudo - - - - 20121222 -9606 101060608 LOC101060608 - - - 1 - T-complex protein 1 subunit theta-like pseudo - - - - 20121102 -9606 101060609 LOC101060609 - - - 10 - uncharacterized LOC101060609 miscRNA - - - - 20121222 -9606 101060610 LOC101060610 - - - 16 - AP-3 complex subunit sigma-1-like pseudo - - - - 20121102 -9606 101060611 LOC101060611 - - - 17 - keratin, type I cytoskeletal 17-like pseudo - - - - 20121102 -9606 101060612 LOC101060612 - - - 11 - ankyrin repeat domain-containing protein 33B-like pseudo - - - - 20121102 -9606 101060613 LOC101060613 - - - 1 - gap junction alpha-5 protein-like protein-coding - - - - 20121222 -9606 101060614 LOC101060614 - - - 2 - MAL-like protein-like protein-coding - - - - 20121222 -9606 101060615 LOC101060615 - - - 14 - uncharacterized LOC101060615 protein-coding - - - - 20121222 -9606 101060616 LOC101060616 - - - 8 - uncharacterized LOC101060616 pseudo - - - - 20121102 -9606 101060617 LOC101060617 - - - 10 - putative uncharacterized protein C11orf81-like pseudo - - - - 20121102 -9606 101060618 LOC101060618 - - - 17 - uncharacterized LOC101060618 pseudo - - - - 20121102 -9606 101060619 LOC101060619 - - - 15 - uncharacterized LOC101060619 pseudo - - - - 20121102 -9606 101060620 LOC101060620 - - - 17 - c-Jun-amino-terminal kinase-interacting protein 1-like protein-coding - - - - 20121222 -9606 101060621 LOC101060621 - - - 8 - putative protein FAM90A8P-like protein-coding - - - - 20121222 -9606 101060622 LOC101060622 - - - 7 - uncharacterized LOC101060622 protein-coding - - - - 20121222 -9606 101060623 LOC101060623 - - - 1 - gonadotropin-releasing hormone II receptor-like pseudo - - - - 20121222 -9606 101060624 LOC101060624 - - - 16 - uncharacterized LOC101060624 miscRNA - - - - 20121222 -9606 101060625 LOC101060625 - - - 10 - uncharacterized LOC101060625 pseudo - - - - 20121222 -9606 101060626 LOC101060626 - - - 1 - F-box only protein 25-like protein-coding - - - - 20121222 -9606 101060627 LOC101060627 - - - 8 - uncharacterized LOC101060627 protein-coding - - - - 20121222 -9606 101060628 LOC101060628 - - - 7 - uncharacterized LOC101060628 protein-coding - - - - 20121222 -9606 101060629 LOC101060629 - - - 1 - CD160 antigen-like protein-coding - - - - 20121222 -9606 101060630 LOC101060630 - - - 17 - protein FAM182A-like pseudo - - - - 20121102 -9606 101060631 LOC101060631 - - - 10 - 60S ribosomal protein L19-like pseudo - - - - 20121102 -9606 101060632 LOC101060632 - - - 1 - coiled-coil domain-containing protein 29-like pseudo - - - - 20121222 -9606 101060633 LOC101060633 - - - 2 - Ig kappa chain V-I region HK102-like other - - - - 20121102 -9606 101060634 LOC101060634 - - - 16 - uncharacterized LOC101060634 miscRNA - - - - 20121222 -9606 101060635 LOC101060635 - - - 17 - UPF0450 protein C17orf58-like pseudo - - - - 20121102 -9606 101060636 LOC101060636 - - - 1 - Golgi pH regulator B-like protein-coding - - - - 20121222 -9606 101060637 LOC101060637 - - - 1 - nuclear ubiquitous casein and cyclin-dependent kinase substrate 1-like pseudo - - - - 20121102 -9606 101060638 LOC101060638 - - - 15 - 60S ribosomal protein L29-like pseudo - - - - 20121102 -9606 101060639 LOC101060639 - - - 13 - protocadherin-8-like pseudo - - - - 20121102 -9606 101060640 LOC101060640 - - - 11 - putative Fatty acid desaturase 2-like protein FADS2P1-like pseudo - - - - 20121102 -9606 101060641 LOC101060641 - - - 9 - putative uncharacterized protein UNQ6494/PRO21346-like protein-coding - - - - 20121222 -9606 101060642 LOC101060642 - - - 1 - lupus La protein-like pseudo - - - - 20121102 -9606 101060643 LOC101060643 - - - 1 - putative tubulin beta chain-like protein ENSP00000290377-like pseudo - - - - 20121102 -9606 101060644 LOC101060644 - - - 13 - TAR DNA-binding protein 43-like pseudo - - - - 20121102 -9606 101060645 LOC101060645 - - - 1 - uncharacterized LOC101060645 protein-coding - - - - 20121222 -9606 101060646 LOC101060646 - - - 1 - neuroblastoma breakpoint family member 1-like protein-coding - - - - 20121222 -9606 101060647 LOC101060647 - - - 2 - Ig kappa chain V-II region RPMI 6410-like other - - - - 20121102 -9606 101060648 LOC101060648 - - - 3 - proline-rich protein 3-like pseudo - - - - 20121102 -9606 101060649 LOC101060649 - - - 16 - uncharacterized LOC101060649 miscRNA - - - - 20121222 -9606 101060650 LOC101060650 - - - 4 - uncharacterized LOC101060650 miscRNA - - - - 20121222 -9606 101060651 LOC101060651 - - - Un - uncharacterized LOC101060651 protein-coding - - - - 20121222 -9606 101060652 LOC101060652 - - - 16 - uncharacterized LOC101060652 miscRNA - - - - 20121222 -9606 101060653 LOC101060653 - - - 1 - neuroblastoma breakpoint family member 5-like pseudo - - - - 20121102 -9606 101060654 LOC101060654 - - - 8 - uncharacterized LOC101060654 protein-coding - - - - 20121222 -9606 101060655 LOC101060655 - - - 1 - uncharacterized LOC101060655 pseudo - - - - 20121102 -9606 101060656 LOC101060656 - - - 1 - protein FAM72D-like protein-coding - - - - 20121222 -9606 101060657 LOC101060657 - - - 1 - uncharacterized LOC101060657 pseudo - - - - 20121222 -9606 101060658 LOC101060658 - - - 8 - uncharacterized LOC101060658 pseudo - - - - 20121102 -9606 101060659 LOC101060659 - - - 1 - uncharacterized LOC101060659 protein-coding - - - - 20121222 -9606 101060660 LOC101060660 - - - 1 - olfactory receptor 4F6-like protein-coding - - - - 20121222 -9606 101060661 LOC101060661 - - - 15 - uncharacterized LOC101060661 protein-coding - - - - 20121222 -9606 101060662 LOC101060662 - - - 8 - uncharacterized LOC101060662 protein-coding - - - - 20121222 -9606 101060663 LOC101060663 - - - 1 - uncharacterized LOC101060663 pseudo - - - - 20121102 -9606 101060664 LOC101060664 - - - 1 - uncharacterized LOC101060664 protein-coding - - - - 20121222 -9606 101060665 LOC101060665 - - - 4 - uncharacterized LOC101060665 pseudo - - - - 20121102 -9606 101060666 LOC101060666 - - - 1 - uncharacterized LOC101060666 miscRNA - - - - 20121222 -9606 101060667 LOC101060667 - - - 2 - uncharacterized LOC101060667 protein-coding - - - - 20121222 -9606 101060668 LOC101060668 - - - 15 - A disintegrin and metalloproteinase with thrombospondin motifs 7-like pseudo - - - - 20121102 -9606 101060669 LOC101060669 - - - 15 - disintegrin and metalloproteinase domain-containing protein 29-like pseudo - - - - 20121102 -9606 101060670 LOC101060670 - - - 11 - chitobiosyldiphosphodolichol beta-mannosyltransferase-like protein-coding - - - - 20121222 -9606 101060671 LOC101060671 - - - 8 - exonuclease GOR-like pseudo - - - - 20121102 -9606 101060672 LOC101060672 - - - 1 - neuroblastoma breakpoint family member 14-like protein-coding - - - - 20121222 -9606 101060673 LOC101060673 - - - 2 - uncharacterized LOC101060673 protein-coding - - - - 20121222 -9606 101060674 LOC101060674 - - - 8 - exonuclease GOR-like pseudo - - - - 20121102 -9606 101060675 LOC101060675 - - - 10 - poly(ADP-ribose) glycohydrolase-like protein-coding - - - - 20121222 -9606 101060676 LOC101060676 - - - 1 - uncharacterized LOC101060676 pseudo - - - - 20121222 -9606 101060677 LOC101060677 - - - 1 - uncharacterized LOC101060677 protein-coding - - - - 20121222 -9606 101060678 LOC101060678 - - - 11 - protein capicua homolog pseudo - - - - 20121102 -9606 101060679 LOC101060679 - - - 11 - uncharacterized LOC101060679 pseudo - - - - 20121102 -9606 101060680 LOC101060680 - - - 2 - uncharacterized LOC101060680 miscRNA - - - - 20121222 -9606 101060681 LOC101060681 - - - 6 - tenascin-X-like protein-coding - - - - 20121222 -9606 101060682 LOC101060682 - - - 22 - gamma-glutamyltranspeptidase 2-like protein-coding - - - - 20121222 -9606 101060683 LOC101060683 - - - 1 - neurogenic locus notch homolog protein 2-like protein-coding - - - - 20121222 -9606 101060684 LOC101060684 - - - 1 - neuroblastoma breakpoint family member 20-like protein-coding - - - - 20121222 -9606 101060685 LOC101060685 - - - 3 - uncharacterized LOC101060685 pseudo - - - - 20121102 -9606 101060687 LOC101060687 - - - 11 - uncharacterized LOC101060687 pseudo - - - - 20121102 -9606 101060688 LOC101060688 - - - 6 - uncharacterized LOC101060688 miscRNA - - - - 20121222 -9606 101060689 LOC101060689 - - - 7 - protein FAM115C-like protein-coding - - - - 20121222 -9606 101060690 LOC101060690 - - - 22 - uncharacterized LOC101060690 protein-coding - - - - 20121222 -9606 101060691 LOC101060691 - - - 10 - uncharacterized LOC101060691 protein-coding - - - - 20121222 -9606 101060692 LOC101060692 - - - 1 - neuroblastoma breakpoint family member 14-like protein-coding - - - - 20121222 -9606 101060693 LOC101060693 - - - 1 - uncharacterized LOC101060693 protein-coding - - - - 20121222 -9606 101060694 LOC101060694 - - - 15 - uncharacterized LOC101060694 pseudo - - - - 20121102 -9606 101060695 LOC101060695 - - - 7 - uncharacterized LOC101060695 pseudo - - - - 20121102 -9606 101060696 LOC101060696 - - - 7 - cutaneous T-cell lymphoma-associated antigen 4-like pseudo - - - - 20121222 -9606 101060697 LOC101060697 - - - 22 - uncharacterized LOC101060697 pseudo - - - - 20121222 -9606 101060698 LOC101060698 - - - 1 - uncharacterized LOC101060698 protein-coding - - - - 20121222 -9606 101060699 LOC101060699 - - - 1 - hydrocephalus-inducing protein homolog protein-coding - - - - 20121222 -9606 101060700 LOC101060700 - - - 1 - B-cell CLL/lymphoma 9 protein-like protein-coding - - - - 20121222 -9606 101060701 LOC101060701 - - - 1 - uncharacterized LOC101060701 pseudo - - - - 20121102 -9606 101060702 LOC101060702 - - - 7 - olfactory receptor 2A1/2A42-like protein-coding - - - - 20121222 -9606 101060703 LOC101060703 - - - 15 - uncharacterized LOC101060703 pseudo - - - - 20121222 -9606 101060704 LOC101060704 - - - 1 - lysophosphatidic acid phosphatase type 6-like protein-coding - - - - 20121222 -9606 101060705 LOC101060705 - - - 1 - uncharacterized LOC101060705 pseudo - - - - 20121102 -9606 101060706 LOC101060706 - - - 15 - uncharacterized LOC101060706 protein-coding - - - - 20121222 -9606 101060707 LOC101060707 - - - 11 - uncharacterized LOC101060707 pseudo - - - - 20121102 -9606 101060708 LOC101060708 - - - 11 - uncharacterized LOC101060708 pseudo - - - - 20121102 -9606 101060709 LOC101060709 - - - 1 - uncharacterized LOC101060709 pseudo - - - - 20121102 -9606 101060710 LOC101060710 - - - 2 - uncharacterized LOC101060710 protein-coding - - - - 20121222 -9606 101060711 LOC101060711 - - - 1 - uncharacterized LOC101060711 pseudo - - - - 20121102 -9606 101060712 LOC101060712 - - - 14 - uncharacterized LOC101060712 miscRNA - - - - 20121222 -9606 101060713 LOC101060713 - - - 1 - PRAME family member 17-like pseudo - - - - 20121102 -9606 101060714 LOC101060714 - - - 16 - sulfotransferase 1A3/1A4-like protein-coding - - - - 20121222 -9606 101060715 LOC101060715 - - - 1 - uncharacterized LOC101060715 pseudo - - - - 20121102 -9606 101060716 LOC101060716 - - - 15 - POTE ankyrin domain family member B-like protein-coding - - - - 20121222 -9606 101060717 LOC101060717 - - - 7 - uncharacterized LOC101060717 miscRNA - - - - 20121222 -9606 101060718 LOC101060718 - - - X - uncharacterized LOC101060718 protein-coding - - - - 20121222 -9606 101060719 LOC101060719 - - - 11 - uncharacterized LOC101060719 protein-coding - - - - 20121222 -9606 101060720 LOC101060720 - - - 12 - uncharacterized LOC101060720 miscRNA - - - - 20121222 -9606 101060721 LOC101060721 - - - 9 - uncharacterized LOC101060721 pseudo - - - - 20121102 -9606 101060722 LOC101060722 - - - 1 - uncharacterized LOC101060722 protein-coding - - - - 20121222 -9606 101060723 LOC101060723 - - - 1 - peptidyl-prolyl cis-trans isomerase A-like 4G-like protein-coding - - - - 20121222 -9606 101060724 LOC101060724 - - - 1 - uncharacterized LOC101060724 pseudo - - - - 20121102 -9606 101060725 LOC101060725 - - - 15 - uncharacterized LOC101060725 pseudo - - - - 20121102 -9606 101060726 LOC101060726 - - - 7 - putative uncharacterized protein FLJ44672-like pseudo - - - - 20121102 -9606 101060727 LOC101060727 - - - 21 - uncharacterized LOC101060727 pseudo - - - - 20121102 -9606 101060728 LOC101060728 - - - 11 - uncharacterized LOC101060728 pseudo - - - - 20121102 -9606 101060729 LOC101060729 - - - 16 - structure-specific endonuclease subunit SLX1-like protein-coding - - - - 20121222 -9606 101060730 LOC101060730 - - - 22 - uncharacterized LOC101060730 pseudo - - - - 20121102 -9606 101060731 LOC101060731 - - - 7 - uncharacterized LOC101060731 pseudo - - - - 20121102 -9606 101060732 LOC101060732 - - - 7 - uncharacterized LOC101060732 pseudo - - - - 20121102 -9606 101060733 LOC101060733 - - - 7 - 60S ribosomal protein L31-like pseudo - - - - 20121102 -9606 101060734 LOC101060734 - - - 7 - uncharacterized LOC101060734 pseudo - - - - 20121102 -9606 101060735 LOC101060735 - - - 7 - uncharacterized LOC101060735 pseudo - - - - 20121102 -9606 101060736 LOC101060736 - - - 7 - uncharacterized LOC101060736 pseudo - - - - 20121102 -9606 101060737 LOC101060737 - - - 7 - putative speedy protein E8-like pseudo - - - - 20121102 -9606 101060738 LOC101060738 - - - 7 - 60S ribosomal protein L31-like pseudo - - - - 20121102 -9606 101060739 LOC101060739 - - - 7 - putative uncharacterized protein FLJ46235-like pseudo - - - - 20121102 -9606 101060740 LOC101060740 - - - 7 - mucin-3A-like protein-coding - - - - 20121222 -9606 101060741 LOC101060741 - - - 7 - putative uncharacterized protein FLJ46235-like pseudo - - - - 20121102 -9606 101060742 LOC101060742 - - - 7 - putative uncharacterized protein FLJ46348-like protein-coding - - - - 20121222 -9606 101060743 LOC101060743 - - - 7 - putative uncharacterized protein FLJ46348-like pseudo - - - - 20121102 -9606 101060744 LOC101060744 - - - 7 - uncharacterized LOC101060744 pseudo - - - - 20121102 -9606 101060745 LOC101060745 - - - 7 - putative uncharacterized protein FLJ46235-like protein-coding - - - - 20121222 -9606 101060746 LOC101060746 - - - Un - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060747 LOC101060747 - - - 16 - 3-phosphoinositide-dependent protein kinase 1-like protein-coding - - - - 20121222 -9606 101060748 LOC101060748 - - - Un - uncharacterized LOC101060748 pseudo - - - - 20121102 -9606 101060749 LOC101060749 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060750 LOC101060750 - - - X - inosine-5'-monophosphate dehydrogenase 1-like pseudo - - - - 20121222 -9606 101060751 LOC101060751 - - - 12 - nucleoside diphosphate kinase B-like protein-coding - - - - 20121222 -9606 101060752 LOC101060752 - - - 7 - protein capicua homolog pseudo - - - - 20121102 -9606 101060753 LOC101060753 - - - X - chromosome transmission fidelity protein 8 homolog isoform 2-like protein-coding - - - - 20121222 -9606 101060754 LOC101060754 - - - Un - complement C4-B-like pseudo - - - - 20121222 -9606 101060755 LOC101060755 - - - 15 - uncharacterized LOC101060755 pseudo - - - - 20121102 -9606 101060756 LOC101060756 - - - Un - uncharacterized LOC101060756 protein-coding - - - - 20121222 -9606 101060757 LOC101060757 - - - Un - uncharacterized LOC101060757 pseudo - - - - 20121102 -9606 101060758 LOC101060758 - - - 9 - protein slowmo homolog 2-like pseudo - - - - 20121102 -9606 101060759 LOC101060759 - - - 7 - putative uncharacterized protein FLJ46348-like pseudo - - - - 20121102 -9606 101060760 LOC101060760 - - - 2 - uncharacterized LOC101060760 pseudo - - - - 20121222 -9606 101060761 LOC101060761 - - - 9 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060762 LOC101060762 - - - 3 - 60S ribosomal protein L13-like pseudo - - - - 20121102 -9606 101060763 LOC101060763 - - - 9 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060764 LOC101060764 - - - 7 - putative uncharacterized protein FLJ46348-like pseudo - - - - 20121102 -9606 101060765 LOC101060765 - - - 17 - protein FAM27E2-like pseudo - - - - 20121102 -9606 101060766 LOC101060766 - - - 1 - uncharacterized LOC101060766 pseudo - - - - 20121222 -9606 101060767 LOC101060767 - - - 17 - putative uncharacterized protein FLJ46089-like protein-coding - - - - 20121222 -9606 101060768 LOC101060768 - - - Un - uncharacterized LOC101060768 pseudo - - - - 20121102 -9606 101060769 LOC101060769 - - - Un - tektin-4 like protein LOC389833-like protein-coding - - - - 20121222 -9606 101060770 LOC101060770 - - - Un - uncharacterized LOC101060770 protein-coding - - - - 20121222 -9606 101060771 LOC101060771 - - - 12 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060772 LOC101060772 - - - X - paraneoplastic antigen-like protein 6B-like protein-coding - - - - 20121222 -9606 101060773 LOC101060773 - - - 17 - putative calcium-sensing receptor-like 1-like pseudo - - - - 20121102 -9606 101060774 LOC101060774 - - - 12 - uncharacterized LOC101060774 pseudo - - - - 20121102 -9606 101060775 LOC101060775 - - - 6 - uncharacterized LOC101060775 miscRNA - - - - 20121222 -9606 101060776 LOC101060776 - - - 16 - uncharacterized LOC101060776 pseudo - - - - 20121102 -9606 101060777 LOC101060777 - - - 5 - uncharacterized LOC101060777 pseudo - - - - 20121102 -9606 101060778 LOC101060778 - - - 16 - uncharacterized LOC101060778 protein-coding - - - - 20121222 -9606 101060779 LOC101060779 - - - 6 - HLA class II histocompatibility antigen, DRB1-10 beta chain-like pseudo - - - - 20121222 -9606 101060780 LOC101060780 - - - Un - cell division cycle protein 27 homolog pseudo - - - - 20121102 -9606 101060781 LOC101060781 - - - 22 - uncharacterized LOC101060781 pseudo - - - - 20121222 -9606 101060782 LOC101060782 - - - 16 - creatine transporter-like protein-coding - - - - 20121222 -9606 101060783 LOC101060783 - - - Un - uncharacterized LOC101060783 pseudo - - - - 20121102 -9606 101060784 LOC101060784 - - - Un - actin-related protein 3B-like pseudo - - - - 20121102 -9606 101060785 LOC101060785 - - - Y - oral-facial-digital syndrome 1 protein-like pseudo - - - - 20121102 -9606 101060786 LOC101060786 - - - 1 - uncharacterized LOC101060786 pseudo - - - - 20121102 -9606 101060787 LOC101060787 - - - 22 - putative uncharacterized protein ENSP00000383309-like protein-coding - - - - 20121222 -9606 101060788 LOC101060788 - - - Y - uncharacterized LOC101060788 pseudo - - - - 20121102 -9606 101060789 LOC101060789 - - - Un - low affinity immunoglobulin gamma Fc region receptor III-A-like protein-coding - - - - 20121222 -9606 101060790 LOC101060790 - - - Un - uncharacterized LOC101060790 pseudo - - - - 20121102 -9606 101060791 LOC101060791 - - - 2 - uncharacterized LOC101060791 pseudo - - - - 20121102 -9606 101060792 LOC101060792 - - - Un - uncharacterized LOC101060792 protein-coding - - - - 20121222 -9606 101060793 LOC101060793 - - - 1 - uncharacterized LOC101060793 pseudo - - - - 20121102 -9606 101060794 LOC101060794 - - - Un - protein USP6-like 2-like pseudo - - - - 20121222 -9606 101060795 LOC101060795 - - - 5 - uncharacterized LOC101060795 pseudo - - - - 20121102 -9606 101060796 LOC101060796 - - - 7 - uncharacterized LOC101060796 pseudo - - - - 20121102 -9606 101060797 LOC101060797 - - - 7 - mucin-3A-like protein-coding - - - - 20121222 -9606 101060798 LOC101060798 - - - 10 - aldo-keto reductase family 1 member C2-like protein-coding - - - - 20121222 -9606 101060799 LOC101060799 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060800 LOC101060800 - - - Y - ankyrin repeat domain-containing protein 20B-like pseudo - - - - 20121102 -9606 101060801 LOC101060801 - - - X - nck-associated protein 1-like pseudo - - - - 20121102 -9606 101060802 LOC101060802 - - - 2 - uncharacterized LOC101060802 pseudo - - - - 20121102 -9606 101060803 LOC101060803 - - - Un - Ig kappa chain V-II region RPMI 6410-like other - - - - 20121102 -9606 101060804 LOC101060804 - - - Y - uncharacterized LOC101060804 pseudo - - - - 20121102 -9606 101060805 LOC101060805 - - - Y - uncharacterized LOC101060805 pseudo - - - - 20121102 -9606 101060806 LOC101060806 - - - Y - testis-specific XK-related protein, Y-linked 2-like pseudo - - - - 20121102 -9606 101060807 LOC101060807 - - - 14 - Ig heavy chain V-II region SESS-like other - - - - 20121102 -9606 101060808 LOC101060808 - - - 1 - aldose reductase-like pseudo - - - - 20121102 -9606 101060809 LOC101060809 - - - Un - double homeobox protein 4-like pseudo - - - - 20121102 -9606 101060810 LOC101060810 - - - 19 - zinc finger protein 737-like pseudo - - - - 20121222 -9606 101060811 LOC101060811 - - - 15 - uncharacterized LOC101060811 pseudo - - - - 20121102 -9606 101060812 LOC101060812 - - - Un - uncharacterized LOC101060812 pseudo - - - - 20121102 -9606 101060813 LOC101060813 - - - Un - uncharacterized LOC101060813 pseudo - - - - 20121222 -9606 101060814 LOC101060814 - - - 16 - uncharacterized LOC101060814 pseudo - - - - 20121102 -9606 101060815 LOC101060815 - - - 21 - uncharacterized LOC101060815 protein-coding - - - - 20121222 -9606 101060816 LOC101060816 - - - 7 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060817 LOC101060817 - - - 19 - glycine cleavage system H protein, mitochondrial-like protein-coding - - - - 20121222 -9606 101060818 LOC101060818 - - - 7 - uncharacterized LOC101060818 pseudo - - - - 20121102 -9606 101060819 LOC101060819 - - - 16 - uncharacterized LOC101060819 pseudo - - - - 20121102 -9606 101060820 LOC101060820 - - - 5 - voltage-dependent anion-selective channel protein 1-like pseudo - - - - 20121102 -9606 101060821 LOC101060821 - - - 12 - alpha-2-macroglobulin-P-like protein-coding - - - - 20121222 -9606 101060822 LOC101060822 - - - 7 - probable E3 ubiquitin-protein ligase DTX2-like protein-coding - - - - 20121222 -9606 101060823 LOC101060823 - - - 7 - uncharacterized LOC101060823 pseudo - - - - 20121102 -9606 101060824 LOC101060824 - - - Un - double homeobox protein 4-like protein 4-like pseudo - - - - 20121102 -9606 101060825 LOC101060825 - - - 2 - uncharacterized LOC101060825 protein-coding - - - - 20121222 -9606 101060826 LOC101060826 - - - 1 - glycine cleavage system H protein, mitochondrial-like pseudo - - - - 20121102 -9606 101060827 LOC101060827 - - - 19 - transmembrane protein 50B-like pseudo - - - - 20121102 -9606 101060828 LOC101060828 - - - 16 - NEDD8-conjugating enzyme UBE2F-like pseudo - - - - 20121102 -9606 101060829 LOC101060829 - - - 9 - voltage-dependent N-type calcium channel subunit alpha-1B-like protein-coding - - - - 20121222 -9606 101060830 LOC101060830 - - - 7 - putative speedy protein E8-like pseudo - - - - 20121102 -9606 101060831 LOC101060831 - - - Un - uncharacterized LOC101060831 pseudo - - - - 20121102 -9606 101060832 LOC101060832 - - - 9 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060833 LOC101060833 - - - 7 - 60S ribosomal protein L31-like pseudo - - - - 20121102 -9606 101060834 LOC101060834 - - - Un - double homeobox protein 5-like pseudo - - - - 20121102 -9606 101060835 LOC101060835 - - - Un - HLA class II histocompatibility antigen, DQ beta 1 chain-like protein-coding - - - - 20121222 -9606 101060836 LOC101060836 - - - 2 - cancer/testis antigen 75-like pseudo - - - - 20121102 -9606 101060837 LOC101060837 - - - 6 - uncharacterized LOC101060837 miscRNA - - - - 20121222 -9606 101060838 LOC101060838 - - - 15 - Ig heavy chain V-I region V35-like other - - - - 20121102 -9606 101060839 LOC101060839 - - - 13 - uncharacterized LOC101060839 pseudo - - - - 20121102 -9606 101060840 LOC101060840 - - - Y - testis-specific XK-related protein, Y-linked 2-like pseudo - - - - 20121102 -9606 101060841 LOC101060841 - - - Un - cell division cycle protein 27 homolog pseudo - - - - 20121102 -9606 101060842 LOC101060842 - - - 11 - putative uncharacterized protein FLJ46348-like pseudo - - - - 20121102 -9606 101060843 LOC101060843 - - - 11 - uncharacterized LOC101060843 pseudo - - - - 20121102 -9606 101060844 LOC101060844 - - - Un - uncharacterized LOC101060844 pseudo - - - - 20121102 -9606 101060845 LOC101060845 - - - 5 - uncharacterized LOC101060845 pseudo - - - - 20121102 -9606 101060846 LOC101060846 - - - Un - protein FAM104B-like protein-coding - - - - 20121222 -9606 101060847 LOC101060847 - - - Un - ankyrin repeat domain-containing protein SOWAHC-like pseudo - - - - 20121102 -9606 101060848 LOC101060848 - - - X - uncharacterized LOC101060848 pseudo - - - - 20121102 -9606 101060849 LOC101060849 - - - 7 - uncharacterized LOC101060849 pseudo - - - - 20121102 -9606 101060850 LOC101060850 - - - 22 - putative POM121-like protein 1-like pseudo - - - - 20121102 -9606 101060851 LOC101060851 - - - Un - uncharacterized LOC101060851 pseudo - - - - 20121102 -9606 101060852 LOC101060852 - - - 22 - protein phosphatase 1 regulatory subunit 26-like pseudo - - - - 20121102 -9606 101060853 LOC101060853 - - - Un - angiogenic factor with G patch and FHA domains 1-like pseudo - - - - 20121102 -9606 101060854 LOC101060854 - - - Un - protein FAM27E2-like protein-coding - - - - 20121222 -9606 101060855 LOC101060855 - - - Y - protein capicua homolog pseudo - - - - 20121102 -9606 101060856 LOC101060856 - - - Un - uncharacterized LOC101060856 pseudo - - - - 20121102 -9606 101060857 LOC101060857 - - - 2 - uncharacterized LOC101060857 pseudo - - - - 20121102 -9606 101060858 LOC101060858 - - - 1 - protein capicua homolog pseudo - - - - 20121102 -9606 101060859 LOC101060859 - - - Un - putative tripartite motif-containing protein 53-like protein-coding - - - - 20121222 -9606 101060860 LOC101060860 - - - Un - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060861 LOC101060861 - - - 7 - uncharacterized LOC101060861 protein-coding - - - - 20121222 -9606 101060862 LOC101060862 - - - 18 - uncharacterized LOC101060862 miscRNA - - - - 20121222 -9606 101060863 LOC101060863 - - - Un - uncharacterized LOC101060863 pseudo - - - - 20121102 -9606 101060864 LOC101060864 - - - 3 - uncharacterized LOC101060864 pseudo - - - - 20121102 -9606 101060865 LOC101060865 - - - X - ras-related protein Rab-28-like pseudo - - - - 20121102 -9606 101060866 LOC101060866 - - - Un - uncharacterized LOC101060866 protein-coding - - - - 20121222 -9606 101060867 LOC101060867 - - - 13 - putative uncharacterized protein FLJ45355-like pseudo - - - - 20121102 -9606 101060868 LOC101060868 - - - 18 - interleukin-9 receptor-like pseudo - - - - 20121102 -9606 101060869 LVSKS - - MIM:614846 15 15q26-qter Levy-Shanske syndrome unknown - - - - 20121027 -9606 101101692 HELLPAR - LINC-HELLP HGNC:43984|MIM:614985 12 12q23 HELLP associated long non-coding RNA miscRNA HELLPAR HELLP associated long non-coding RNA O - 20121218 -9606 101101698 POROK7 - - MIM:614714 16 16q24.1-q24.3 Porokeratosis 7, disseminated superficial actinic unknown - - - - 20121115 -9606 101101768 ECTD8 - - MIM:602401 18 18q22.1-q22.3 Ectodermal dysplasia 8, hair/tooth/nail type unknown - - - - 20121117 -9606 101101769 ECTD5 - - MIM:614927 10 10q24.32-q25.1 Ectodermal dysplasia 5, hair/nail type unknown - - - - 20121117 -9606 101101770 ECTD6 - - MIM:614928 17 17p12-q21.2 Ectodermal dysplasia 6, hair/nail type unknown - - - - 20121117 -9606 101101771 ECTD7 - - MIM:614929 12 12p11.1-q21.1 Ectodermal dysplasia 7, hair/nail type unknown - - - - 20121117 -9606 101101772 LINC00601 - - HGNC:43916|Ensembl:ENSG00000235180|Vega:OTTHUMG00000019244 10 10q26.2 long intergenic non-protein coding RNA 601 miscRNA LINC00601 long intergenic non-protein coding RNA 601 O - 20121124 -9606 101101773 LINC00609 - - HGNC:43960|Ensembl:ENSG00000257585|Vega:OTTHUMG00000170616 14 14q13.2-q13.3 long intergenic non-protein coding RNA 609 miscRNA LINC00609 long intergenic non-protein coding RNA 609 O - 20121124 -9606 101101775 TMEM220-AS1 - - HGNC:44357|Ensembl:ENSG00000263523|Vega:OTTHUMG00000179250 17 17p13.1-p12 TMEM220 antisense RNA 1 miscRNA TMEM220-AS1 TMEM220 antisense RNA 1 O - 20121124 -9606 101101776 LOC101101776 - - - 14 - ribosome biogenesis protein BMS1 homolog pseudogene pseudo - - - - 20121124 -9606 101101841 LOC101101841 - - - 8 - mediator complex subunit 21 pseudogene pseudo - - - - 20121124 -9606 101154642 CHDT3 - - MIM:614954 9 9q31.1 Congenital heart defects, multiple types, 3 unknown - - - - 20121202 -9606 101154643 LOC101154643 - - - 7 - cyclin-dependent kinase 2 associated protein 2 pseudogene pseudo - - - - 20121207 -9606 101154644 LINCMD1 - linc-MD1 MIM:614933 6 6p12.2 long noncoding RNA, muscle differentiation 1 miscRNA - - - - 20121206 -9606 101154645 DBE-T - - MIM:614865 4 4q35 D4Z4 binding element transcript miscRNA - - - - 20121206 -9606 101154649 MBNP - - MIM:614692 6 6p21.3 ?Membranous nephropathy, susceptibility to unknown - - - - 20121214 -9606 101154686 MROH4P - - HGNC:44902 8 - maestro heat-like repeat family member 4, pseudogene pseudo MROH4P maestro heat-like repeat family member 4, pseudogene O - 20121227 -9606 101154687 TCONS_00024764 - - MIM:614977 16 - long non-coding RNA TCONS_00024764 miscRNA - - - - 20121220 -9606 101154752 PPKP1B - - MIM:614936 8 8q24.13-q24.21 Keratoderma, palmoplantar, punctate type IB unknown - - - - 20121219 -9606 101154753 PANDAR - PANDA HGNC:44048 6 6p21.2 promoter of CDKN1A antisense DNA damage activated RNA miscRNA PANDAR promoter of CDKN1A antisense DNA damage activated RNA O - 20121221 diff --git a/core/src/main/resources/sample_data/genes/sanger_gene_census.txt b/core/src/main/resources/sample_data/genes/sanger_gene_census.txt deleted file mode 100644 index 6cb031d3bce..00000000000 --- a/core/src/main/resources/sample_data/genes/sanger_gene_census.txt +++ /dev/null @@ -1 +0,0 @@ -Symbol Name GeneID Chr Chr Band Cancer Somatic Mut Cancer Germline Mut Tumour Types (Somatic Mutations) Tumour Types (Germline Mutations) Cancer Syndrome Tissue Type Cancer Molecular Genetics Mutation Type Translocation Partner Other Germline Mut Other Syndrome/Disease ABL1 v-abl Abelson murine leukemia viral oncogene homolog 1 25 9 9q34.1 yes "CML, ALL, T-ALL" L Dom "T, Mis" "BCR, ETV6, NUP214" ABL2 v-abl Abelson murine leukemia viral oncogene homolog 2 27 1 1q24-q25 yes AML L Dom T ETV6 ACSL3 acyl-CoA synthetase long-chain family member 3 2181 2 2q36 yes prostate E Dom T ETV1 AF15Q14 AF15q14 protein 57082 15 15q14 yes AML L Dom T MLL AF1Q ALL1-fused gene from cytoband 1q 10962 1 1q21 yes ALL L Dom T MLL AF3p21 "SH3 protein interacting with Nck, 90 kDa (ALL1 fused gene from 3p21)" 51517 3 3p21 yes ALL L Dom T MLL AF5q31 ALL1 fused gene from 5q31 27125 5 5q31 yes ALL L Dom T MLL AKAP9 A kinase (PRKA) anchor protein (yotiao) 9 10142 7 7q21-q22 yes papillary thyroid E Dom T BRAF AKT1 v-akt murine thymoma viral oncogene homolog 1 207 14 14q32.32 yes "breast, colorectal, ovarian, NSCLC" E Dom Mis AKT2 v-akt murine thymoma viral oncogene homolog 2 208 19 19q13.1-q13.2 yes "ovarian, pancreatic " E Dom A ALDH2 aldehyde dehydrogenase 2 family (mitochondrial) 217 12 12q24.2 yes leiomyoma M Dom T HMGA2 ALK anaplastic lymphoma kinase (Ki-1) 238 2 2p23 yes yes "ALCL, NSCLC, Neuroblastoma" neuroblastoma Familial neuroblastoma "L, E, M" Dom "T, Mis, A" "NPM1, TPM3, TFG, TPM4, ATIC, CLTC, MSN, ALO17, CARS, EML4" ALO17 KIAA1618 protein 57674 17 17q25.3 yes ALCL L Dom T ALK APC adenomatous polyposis of the colon gene 324 5 5q21 yes yes "colorectal, pancreatic, desmoid, hepatoblastoma, glioma, other CNS" "colorectal, pancreatic, desmoid, hepatoblastoma, glioma, other CNS" Adenomatous polyposis coli; Turcot syndrome "E, M, O" Rec "D, Mis, N, F, S" ARHGEF12 RHO guanine nucleotide exchange factor (GEF) 12 (LARG) 23365 11 11q23.3 yes AML L Dom T MLL ARHH "RAS homolog gene family, member H (TTF)" 399 4 4p13 yes NHL L Dom T BCL6 ARID1A AT rich interactive domain 1A (SWI-like) 8289 1 1p35.3 yes "clear cell ovarian carcinoma, RCC" E Rec "Mis, N, F, S, D" ARID2 AT rich interactive domain 2 196528 12 12q12 yes hepatocellular carcinoma E Rec "N, S, F" ARNT aryl hydrocarbon receptor nuclear translocator 405 1 1q21 yes AML L Dom T ETV6 ASPSCR1 "alveolar soft part sarcoma cytoband region, candidate 1" 79058 17 17q25 yes alveolar soft part sarcoma M Dom T TFE3 ASXL1 additional sex combs like 1 171023 20 20q11.1 yes "MDS, CMML" L Rec "F, N, Mis" ATF1 activating transcription factor 1 466 12 12q13 yes "malignant melanoma of soft parts , angiomatoid fibrous histiocytoma " "E, M" Dom T "EWSR1, FUS" ATIC 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase 471 2 2q35 yes ALCL L Dom T ALK ATM ataxia telangiectasia mutated 472 11 11q22.3 yes yes T-PLL "leukemia, lymphoma, medulloblastoma, glioma" Ataxia-telangiectasia "L, O" Rec "D, Mis, N, F, S" ATRX alpha thalassemia/mental retardation syndrome X-linked 546 X Xq21.1 yes Pancreatic neuroendocrine tumors E Rec "Mis, F, N" yes ATR-X (alpha thalassemia/mental retardation) syndrome BAP1 BRCA1 associated protein-1 (ubiquitin carboxy-terminal hydrolase) 8314 3 3p21.31-p21.2 yes "uveal melanoma, breast, NSCLC" E Rec "N, Mis, F, S, O" BCL10 B-cell CLL/lymphoma 10 8915 1 1p22 yes MALT L Dom T IGH@ BCL11A B-cell CLL/lymphoma 11A 53335 2 2p13 yes B-CLL L Dom T IGH@ BCL11B B-cell CLL/lymphoma 11B (CTIP2) 64919 14 14q32.1 yes T-ALL L Dom T TLX3 BCL2 B-cell CLL/lymphoma 2 596 18 18q21.3 yes "NHL, CLL" L Dom T IGH@ BCL3 B-cell CLL/lymphoma 3 602 19 19q13 yes CLL L Dom T IGH@ BCL5 B-cell CLL/lymphoma 5 603 17 17q22 yes CLL L Dom T MYC BCL6 B-cell CLL/lymphoma 6 604 3 3q27 yes "NHL, CLL" L Dom "T, Mis" "IG loci, ZNFN1A1, LCP1, PIM1, TFRC, MHC2TA, NACA, HSPCB, HSPCA, HIST1H4I, IL21R, POU2AF1, ARHH, EIF4A2, SFRS3" BCL7A B-cell CLL/lymphoma 7A 605 12 12q24.1 yes BNHL L Dom T MYC BCL9 B-cell CLL/lymphoma 9 607 1 1q21 yes B-ALL L Dom T "IGH@, IGL@" BCR breakpoint cluster region 613 22 22q11.21 yes "CML, ALL, AML" L Dom T "ABL1, FGFR1, JAK2 " BHD "folliculin, Birt-Hogg-Dube syndrome" 201163 17 17p11.2 yes "renal, fibrofolliculomas, trichodiscomas " Birt-Hogg-Dube syndrome "E, M" Rec? "Mis. N, F" BIRC3 baculoviral IAP repeat-containing 3 330 11 11q22-q23 yes MALT L Dom T MALT1 BLM Bloom Syndrome 641 15 15q26.1 yes "leukemia, lymphoma, skin squamous cell , other cancers" Bloom Syndrome "L, E" Rec "Mis, N, F" BMPR1A "bone morphogenetic protein receptor, type IA" 657 10 10q22.3 yes gastrointestinal polyps Juvenile polyposis E Rec "Mis, N, F" BRAF v-raf murine sarcoma viral oncogene homolog B1 673 7 7q34 yes "melanoma, colorectal, papillary thyroid, borderline ov, Non small-cell lung cancer (NSCLC), cholangiocarcinoma, pilocytic astrocytoma" E Dom "Mis, T, O" "AKAP9, KIAA1549" yes Cardio-facio-cutaneous syndrome BRCA1 familial breast/ovarian cancer gene 1 672 17 17q21 yes yes ovarian "breast, ovarian" Hereditary breast/ovarian cancer E Rec "D, Mis, N, F, S" BRCA2 familial breast/ovarian cancer gene 2 675 13 13q12 yes yes "breast, ovarian, pancreatic" "breast, ovarian, pancreatic, leukemia (FANCB, FANCD1)" Hereditary breast/ovarian cancer "L, E" Rec "D, Mis, N, F, S" BRD3 bromodomain containing 3 8019 9 9q34 yes lethal midline carcinoma of young people E Dom T "NUT, C15orf55" BRD4 bromodomain containing 4 23476 19 19p13.1 yes lethal midline carcinoma of young people E Dom T "NUT, C15orf55" BRIP1 BRCA1 interacting protein C-terminal helicase 1 83990 17 17q22 yes "AML, leukemia, breast" "Fanconi anaemia J, breast cancer susceptiblity" "L, E" Rec "F, N, Mis" BTG1 "B-cell translocation gene 1, anti-proliferative" 694 12 12q22 yes BCLL L Dom T MYC BUB1B BUB1 budding uninhibited by benzimidazoles 1 homolog beta (yeast) 701 15 15q15 yes rhabdomyosarcoma Mosaic variegated aneuploidy M Rec "Mis, N, F, S" C12orf9 cytoband 12 open reading frame 9 93669 12 12q14.3 yes lipoma M Dom T LPP C15orf21 cytoband 15 open reading frame 21 283651 15 15q21.1 yes prostate E Dom T ETV1 C15orf55 cytoband 15 open reading frame 55 256646 15 15q14 yes lethal midline carcinoma E Dom T "BRD3, BRD4" C16orf75 cytoband 16 open reading frame 75 116028 16 16p13.13 yes "PMBL, Hodgkin Lymphona, " L Dom T CIITA CANT1 calcium activated nucleotidase 1 124583 17 17q25 yes prostate E Dom T ETV4 CARD11 "caspase recruitment domain family, member 11" 84433 7 7p22 yes DLBCL L Dom Mis CARS cysteinyl-tRNA synthetase 833 11 11p15.5 yes ALCL L Dom T ALK CBFA2T1 "core-binding factor, runt domain, alpha subunit 2;translocated to, 1 (ETO)" 862 8 8q22 yes AML L Dom T "MLL, RUNX1" CBFA2T3 "core-binding factor, runt domain, alpha subunit 2; translocated to, 3 (MTG-16)" 863 16 16q24 yes AML L Dom T RUNX1 CBFB "core-binding factor, beta subunit" 865 16 16q22 yes AML L Dom T MYH11 CBL Cas-Br-M (murine) ecotropic retroviral transforming 867 11 11q23.3 yes "AML, JMML, MDS" L "Dom, Rec" "T, Mis S, O" MLL CBLB Cas-Br-M (murine) ecotropic retroviral transforming sequence b 868 3 3q13.11 yes AML L Rec Mis S CBLC Cas-Br-M (murine) ecotropic retroviral transforming sequence c 23624 19 19q13.2 yes AML L Rec M CCNB1IP1 "cyclin B1 interacting protein 1, E3 ubiquitin protein ligase" 57820 14 14q11.2 yes leiomyoma M Dom T HMGA2 CCND1 cyclin D1 595 11 11q13 yes "CLL, B-ALL, breast" "L, E" Dom T "IGH@, FSTL3" CCND2 cyclin D2 894 12 12p13 yes "NHL,CLL" L Dom T IGL@ CCND3 cyclin D3 896 6 6p21 yes MM L Dom T IGH@ CCNE1 cyclin E1 898 19 19q12 yes serous ovarian E Dom A CD273 programmed cell death 1 ligand 2 80380 9 9p24.2 yes "PMBL, Hodgkin Lymphona, " L Dom T CIITA CD274 CD274 molecule 29126 9 9p24 yes "PMBL, Hodgkin Lymphona, " L Dom T CIITA CD74 "CD74 molecule, major histocompatibility complex, class II invariant chain" 972 5 5q32 yes NSCLC E Dom T ROS1 CD79A "CD79a molecule, immunoglobulin-associated alpha" 973 19 19q13.2 yes DLBCL L Dom "O, S" CD79B "CD79b molecule, immunoglobulin-associated beta" 974 17 17q23 yes DLBCL L Dom "Mis, O" CDH1 "cadherin 1, type 1, E-cadherin (epithelial) (ECAD)" 999 16 16q22.1 yes yes "lobular breast, gastric" gastric Familial gastric carcinoma E Rec "Mis, N, F, S" CDH11 "cadherin 11, type 2, OB-cadherin (osteoblast)" 1009 16 16q22.1 yes aneurysmal bone cysts M Dom T USP6 CDK12 cyclin-dependent kinase 12 51755 17 17q12 yes serous ovarian E Rec "Mis, N, F" CDK4 cyclin-dependent kinase 4 1019 12 12q14 yes melanoma Familial malignant melanoma E Dom Mis CDK6 cyclin-dependent kinase 6 1021 7 7q21-q22 yes ALL L Dom T MLLT10 CDKN2A -p16(INK4a) cyclin-dependent kinase inhibitor 2A (p16(INK4a)) gene 1029 9 9p21 yes yes "melanoma, multiple other tumour types" "melanoma, pancreatic" Familial malignant melanoma "L, E, M, O" Rec "D, Mis, N, F, S" CDKN2A- p14ARF cyclin-dependent kinase inhibitor 2A-- p14ARF protein 1029 9 9p21 yes yes "melanoma, multiple other tumour types" "melanoma, pancreatic" Familial malignant melanoma "L, E, M, O" Rec "D, S" CDKN2C "cyclin-dependent kinase inhibitor 2C (p18, inhibits CDK4)" 1031 1 1p32 yes "glioma, MM" "O, L" Rec D CDX2 caudal type homeo box transcription factor 2 1045 13 13q12.3 yes AML L Dom T ETV6 CEBPA "CCAAT/enhancer binding protein (C/EBP), alpha" 1050 19 19q13.1 yes "AML, MDS" L Dom "Mis, N, F" CEP1 centrosomal protein 1 11064 9 9q33 yes "MPD, NHL" L Dom T FGFR1 CHCHD7 coiled-coil-helix-coiled-coil-helix domain containing 7 79145 8 8q11.2 yes salivary adenoma E Dom T PLAG1 CHEK2 CHK2 checkpoint homolog (S. pombe) 11200 22 22q12.1 yes breast familial breast cancer E Rec F CHIC2 cysteine-rich hydrophobic domain 2 26511 4 4q11-q12 yes AML L Dom T ETV6 CHN1 chimerin (chimaerin) 1 1123 2 2q31-q32.1 yes extraskeletal myxoid chondrosarcoma M Dom T TAF15 CIC capicua homolog 23152 19 19q13.2 yes oligodendroglioma O Rec "Mis, F, S" CIITA "class II, major histocompatibility complex, transactivator" 4261 16 16p13 yes "PMBL, Hodgkin Lymphona, " L Dom T "FLJ27352, CD274, CD273, RALGDS, RUNDC2A, C16orf75" CLTC "clathrin, heavy polypeptide (Hc)" 1213 17 17q11-qter yes "ALCL, renal " L Dom T "ALK, TFE3" CLTCL1 "clathrin, heavy polypeptide-like 1" 8218 22 22q11.21 yes ALCL L Dom T ? CMKOR1 chemokine orphan receptor 1 57007 2 2q37.3 yes lipoma M Dom T HMGA2 COL1A1 "collagen, type I, alpha 1" 1277 17 17q21.31-q22 yes "dermatofibrosarcoma protuberans, aneurysmal bone cyst " M Dom T "PDGFB, USP6" yes Osteogenesis imperfecta COPEB core promoter element binding protein (KLF6) 1316 10 10p15 yes "prostate, glioma" "E, O" Rec "Mis, N " COX6C cytochrome c oxidase subunit VIc 1345 8 8q22-q23 yes uterine leiomyoma M Dom T HMGA2 CREB1 cAMP responsive element binding protein 1 1385 2 2q34 yes "clear cell sarcoma, angiomatoid fibrous histiocytoma" M Dom T EWSR1 CREB3L1 cAMP responsive element binding protein 3-like 1 90993 11 11p11.2 yes myxofibrosarcoma M Dom T FUS CREB3L2 cAMP responsive element binding protein 3-like 2 64764 7 7q34 yes fibromyxoid sarcoma M Dom T FUS CREBBP CREB binding protein (CBP) 1387 16 16p13.3 yes "ALL, AML, DLBCL, B-NHL " L Dom/Rec "T, N, F, Mis, O" "MLL, MORF, RUNXBP2" yes Rubinstein-Taybi syndrome CRLF2 cytokine receptor-like factor 2 64109 "X,Y" Xp22.3; Yp11.3 yes "B-ALL, Downs associated ALL" L Dom "Mis, T" "P2RY8, IGH@" CRTC3 CREB regulated transcription coactivator 3 64784 15 15q26.1 yes salivary gland mucoepidermoid E Dom T MAML2 CTNNB1 "catenin (cadherin-associated protein), beta 1" 1499 3 3p22-p21.3 yes "colorectal, cvarian, hepatoblastoma, others, pleomorphic salivary adenoma" "E, M, O" Dom "H, Mis, T" PLAG1 CYLD familial cylindromatosis gene 1540 16 16q12-q13 yes yes cylindroma cylindroma Familial cylindromatosis E Rec "Mis, N, F, S" D10S170 "DNA segment on cytoband 10 (unique) 170, H4 gene (PTC1)" 8030 10 10q21 yes "papillary thyroid, CML" E Dom T "RET, PDGFRB" DAXX death-domain associated protein 1616 6 6p21.3 yes Pancreatic neuroendocrine tumors E Rec "Mis, F, N" DDB2 damage-specific DNA binding protein 2 1643 11 11p12 yes "skin basal cell, skin squamous cell, melanoma" Xeroderma pigmentosum (E) E Rec "Mis, N" DDIT3 DNA-damage-inducible transcript 3 1649 12 12q13.1-q13.2 yes liposarcoma M Dom T FUS DDX10 DEAD (Asp-Glu-Ala-Asp) box polypeptide 10 1662 11 11q22-q23 yes AML* L Dom T NUP98 DDX5 DEAD (Asp-Glu-Ala-Asp) box polypeptide 5 1655 17 17q21 yes prostate E Dom T ETV4 DDX6 DEAD (Asp-Glu-Ala-Asp) box polypeptide 6 1656 11 11q23.3 yes B-NHL L Dom T IGH@ DEK DEK oncogene (DNA binding) 7913 6 6p23 yes AML L Dom T NUP214 DICER1 "dicer 1, ribonuclease type III " 23405 14 14q32.13 yes pleuropulmonary blastoma Familial Pleuropulmonary Blastoma E Rec "Mis F, N" DNMT3A DNA (cytosine-5-)-methyltransferase 3 alpha 1788 2 2p23 yes AML L Rec "Mis, F, N, S" DUX4 "double homeobox, 4" 22947 4 4q35 yes soft tissue sarcoma M Dom T CIC EBF1 early B-cell factor 1 1879 5 5q34 yes lipoma M Dom T HMGA2 EGFR "epidermal growth factor receptor (erythroblastic leukemia viral (v-erb-b) oncogene homolog, avian)" 1956 7 7p12.3-p12.1 yes yes "glioma, NSCLC" NSCLC Familial lung cancer "E, O" Dom "A, O, Mis" EIF4A2 "eukaryotic translation initiation factor 4A, isoform 2" 1974 3 3q27.3 yes NHL L Dom T BCL6 ELF4 E74-like factor 4 (ets domain transcription factor) 2000 X Xq26 yes AML L Dom T ERG ELK4 "ELK4, ETS-domain protein (SRF accessory protein 1)" 2005 1 1q32 yes prostate E Dom T SLC45A3 ELKS ELKS protein 23085 12 12p13.3 yes papillary thyroid E Dom T RET ELL ELL gene (11-19 lysine-rich leukemia gene) 8178 19 19p13.1 yes AL L Dom T MLL ELN elastin 2006 7 7q11.23 yes B-ALL L Dom T PAX5 yes "Supravalvular Aortic Stenosis, Cutis laxa , Williams-Beuren Syndrome" EML4 echinoderm microtubule associated protein like 4 27436 2 2p21 yes NSCLC E Dom T ALK EP300 300 kd E1A-Binding protein gene 2033 22 22q13 yes "colorectal, breast, pancreatic, AML, ALL, DLBCL" "L, E" Rec "T, N, F, Mis, O" "MLL, RUNXBP2" EPS15 epidermal growth factor receptor pathway substrate 15 (AF1p) 2060 1 1p32 yes ALL L Dom T MLL ERBB2 "v-erb-b2 erythroblastic leukemia viral oncogene homolog 2, neuro/glioblastoma derived oncogene homolog (avian)" 2064 17 17q21.1 yes "breast, ovarian, other tumour types, NSCLC, gastric" E Dom "A, Mis, O" ERCC2 "excision repair cross-complementing rodent repair deficiency, complementation group 2 (xeroderma pigmentosum D)" 2068 19 19q13.2-q13.3 yes "skin basal cell, skin squamous cell, melanoma" Xeroderma pigmentosum (D) E Rec "Mis, N, F, S" ERCC3 "excision repair cross-complementing rodent repair deficiency, complementation group 3 (xeroderma pigmentosum group B complementing)" 2071 2 2q21 yes "skin basal cell, skin squamous cell, melanoma" Xeroderma pigmentosum (B) E Rec "Mis, S" ERCC4 "excision repair cross-complementing rodent repair deficiency, complementation group 4" 2072 16 16p13.3-p13.13 yes "skin basal cell, skin squamous cell, melanoma" Xeroderma pigmentosum (F) E Rec "Mis, N, F" ERCC5 "excision repair cross-complementing rodent repair deficiency, complementation group 5 (xeroderma pigmentosum, complementation group G (Cockayne syndrome))" 2073 13 13q33 yes "skin basal cell, skin squamous cell, melanoma" Xeroderma pigmentosum (G) E Rec "Mis, N, F" ERG v-ets erythroblastosis virus E26 oncogene like (avian) 2078 21 21q22.3 yes "Ewing sarcoma, prostate, AML" "M, E, L" Dom T "EWSR1, TMPRSS2, ELF4, FUS, HERPUD1, NDRG1" ETV1 ets variant gene 1 2115 7 7p22 yes "Ewing sarcoma, prostate" "M, E" Dom T "EWSR1, TMPRSS2, SLC45A3, C15orf21, HNRNPA2B1. ACSL3" ETV4 "ets variant gene 4 (E1A enhancer binding protein, E1AF)" 2118 17 17q21 yes "Ewing sarcoma, Prostate carcinoma" "M, E" Dom T "EWSR1, TMPRSS2, DDX5, KLK2, CANT1" ETV5 ets variant gene 5 2119 3 3q28 yes Prostate E Dom T "TMPRSS2, SCL45A3" ETV6 ets variant gene 6 (TEL oncogene) 2120 12 12p13 yes "congenital fibrosarcoma, multiple leukemia and lymphoma, secretory breast, MDS, ALL" "L, E, M" Dom T "NTRK3, RUNX1, PDGFRB, ABL1, MN1, ABL2, FACL6, CHIC2, ARNT, JAK2, EVI1, CDX2, STL, HLXB9, MDS2, PER1, SYK, TTL, FGFR3, PAX5" EVI1 ecotropic viral integration site 1 2122 3 3q26 yes "AML, CML" L Dom T "RUNX1, ETV6, PRDM16, RPN1" EWSR1 Ewing sarcoma breakpoint region 1 (EWS) 2130 22 22q12 yes "Ewing sarcoma, desmoplastic small round cell tumor , ALL, clear cell sarcoma, sarcoma, myoepithelioma" "L, M" Dom T "FLI1, ERG, ZNF278, NR4A3, FEV, ATF1, ETV1, ETV4, WT1, ZNF384, CREB1, POU5F1, PBX1" EXT1 multiple exostoses type 1 gene 2131 8 8q24.11-q24.13 yes "exostoses, osteosarcoma" Multiple Exostoses Type 1 M Rec "Mis, N, F, S" EXT2 multiple exostoses type 2 gene 2132 11 11p12-p11 yes "exostoses, osteosarcoma" Multiple Exostoses Type 2 M Rec "Mis, N, F, S" EZH2 enhancer of zeste homolog 2 2146 7 7q35-q36 yes DLBCL L Rec? Mis FACL6 "fatty-acid-coenzyme A ligase, long-chain 6" 23305 5 5q31 yes "AML, AEL" L Dom T ETV6 FANCA "Fanconi anemia, complementation group A" 2175 16 16q24.3 yes "AML, leukemia" Fanconi anaemia A L Rec "D, Mis, N, F, S" FANCC "Fanconi anemia, complementation group C" 2176 9 9q22.3 yes "AML, leukemia" Fanconi anaemia C L Rec "D, Mis, N, F, S" FANCD2 "Fanconi anemia, complementation group D2" 2177 3 3p26 yes "AML, leukemia" Fanconi anaemia D2 L Rec "D, Mis, N, F" FANCE "Fanconi anemia, complementation group E" 2178 6 6p21-p22 yes "AML, leukemia" Fanconi anaemia E L Rec "N, F, S" FANCF "Fanconi anemia, complementation group F" 2188 11 11p15 yes "AML, leukemia" Fanconi anaemia F L Rec "N, F" FANCG "Fanconi anemia, complementation group G" 2189 9 9p13 yes "AML, leukemia" Fanconi anaemia G L Rec "Mis, N, F, S" FBXW7 "F-box and WD-40 domain protein 7 (archipelago homolog, Drosophila)" 55294 4 4q31.3 yes "colorectal, endometrial, T-ALL" "E, L" Rec "Mis, N, D, F" FCGR2B "Fc fragment of IgG, low affinity IIb, receptor for (CD32)" 2213 1 1q23 yes ALL L Dom T ? FEV FEV protein - (HSRNAFEV) 54738 2 2q36 yes Ewing sarcoma M Dom T "EWSR1, FUS" FGFR1 fibroblast growth factor receptor 1 2260 8 8p11.2-p11.1 yes "MPD, NHL" L Dom T "BCR, FOP, ZNF198, CEP1" yes "Pfeiffer syndrome, Kallman syndrome" FGFR1OP FGFR1 oncogene partner (FOP) 11116 6 6q27 yes "MPD, NHL" L Dom T FGFR1 FGFR2 fibroblast growth factor receptor 2 2263 10 10q26 yes "gastric. NSCLC, endometrial" E Dom Mis yes "Crouzon, Pfeiffer, and Apert syndromes" FGFR3 fibroblast growth factor receptor 3 2261 4 4p16.3 yes "bladder, MM, T-cell lymphoma" "L, E" Dom "Mis, T" "IGH@, ETV6" yes "Hypochondroplasia, Thanatophoric dysplasia" FH fumarate hydratase 2271 1 1q42.1 yes "lieomyomatosis, renal" hereditary leiomyomatosis and renal cell cancer "E, M" Rec "Mis, N, F" FHIT fragile histidine triad gene 2272 3 3p14.2 yes pleomorphic salivary gland adenoma E Dom T HMGA2 FIP1L1 FIP1 like 1 (S. cerevisiae) 81608 4 4q12 yes idiopathic hypereosinophilic syndrome L Dom T PDGFRA FLI1 Friend leukemia virus integration 1 2313 11 11q24 yes Ewing sarcoma M Dom T EWSR1 FLJ27352 "BX648577, FLJ27352 hypothetical LOC145788" 145788 15 15q21.3 yes "PMBL, Hodgkin Lymphona, " L Dom T CIITA FLT3 fms-related tyrosine kinase 3 2322 13 13q12 yes "AML, ALL" L Dom "Mis, O" FNBP1 formin binding protein 1 (FBP17) 23048 9 9q23 yes AML L Dom T MLL FOXL2 forkhead box L2 668 3 3q23 yes granulosa-cell tumour of the ovary O Dom Mis yes "Blepharophimosis, ptosis and epicanthus inversus Types I, II; Premature ovarian failure type III" FOXO1A forkhead box O1A (FKHR) 2308 13 13q14.1 yes alveolar rhabdomyosarcomas M Dom T PAX3 FOXO3A forkhead box O3A 2309 6 6q21 yes AL L Dom T MLL FOXP1 forkhead box P1 27086 3 3p14.1 yes ALL L Dom T PAX5 FSTL3 follistatin-like 3 (secreted glycoprotein) 10272 19 19p13 yes B-CLL L Dom T CCND1 FUBP1 far upstream element (FUSE) binding protein 1 8880 1 1p13.1 yes oligodendroglioma O Rec "F, N" FUS "fusion, derived from t(12;16) malignant liposarcoma" 2521 16 16p11.2 yes "liposarcoma, AML, Ewing sarcoma, angiomatoid fibrous histiocytoma, fibromyxoid sarcoma" "M, L" Dom T "DDIT3, ERG, FEV, ATF1, CREB3L2, CREB3L1" FVT1 follicular lymphoma variant translocation 1 2531 18 18q21.3 yes B-NHL L Dom T IGK@ GAS7 growth arrest-specific 7 8522 17 17p yes AML* L Dom T MLL GATA1 GATA binding protein 1 (globin transcription factor 1) 2623 X Xp11.23 yes megakaryoblastic leukemia of Downs Syndrome L Dom "Mis, F" GATA2 GATA binding protein 2 2624 3 3q21.3 yes AML(CML blast transformation) L Dom Mis GATA3 GATA binding protein 3 2625 10 10p15 yes breast E Rec "F, N, S" yes "HDR syndrome (HYPOPARATHYROIDISM, SENSORINEURAL DEAFNESS, AND RENAL DISEASE)" GMPS guanine monphosphate synthetase 8833 3 3q24 yes AML L Dom T MLL GNA11 "guanine nucleotide binding protein (G protein), alpha 11 (Gq class)" 2767 19 19p13.3 yes uveal melanoma E Dom Mis GNAQ "guanine nucleotide binding protein (G protein), q polypeptide" 2776 9 9q21 yes uveal melanoma E Dom Mis GNAS "guanine nucleotide binding protein (G protein), alpha stimulating activity polypeptide 1" 2778 20 20q13.2 yes pituitary adenoma E Dom Mis yes "McCune-Albright syndrome; pseudohypoparathyroidism, type IA" GOLGA5 "golgi autoantigen, golgin subfamily a, 5 (PTC5)" 9950 14 14q yes papillary thyroid E Dom T RET GOPC golgi associated PDZ and coiled-coil motif containing 57120 6 6q21 yes glioblastoma O Dom O ROS1 GPC3 glypican 3 2719 X Xq26.1 yes Wilms tumour Simpson-Golabi-Behmel syndrome O Rec/X "T, D, Mis, N, F, S" GPHN gephyrin (GPH) 10243 14 14q24 yes AL L Dom T MLL GRAF GTPase regulator associated with focal adhesion kinase pp125(FAK) 23092 5 5q31 yes "AML, MDS" L Dom "T, F, S" MLL HCMOGT-1 sperm antigen HCMOGT-1 92521 17 17p11.2 yes JMML L Dom T PDGFRB HEAB ATP_GTP binding protein 10978 11 11q12 yes AML L Dom T MLL HEI10 enhancer of invasion 10 - fused to HMGA2 57820 14 14q11.1 yes uterine leiomyoma M Dom T HMGA2 HERPUD1 "homocysteine-inducible, endoplasmic reticulum stress-inducible, ubiquitin-like domain member 1" 9709 16 16q12.2-q13 yes prostate E Dom T ERG HIP1 huntingtin interacting protein 1 3092 7 7q11.23 yes CMML L Dom T PDGFRB HIST1H4I "histone 1, H4i (H4FM)" 8294 6 6p21.3 yes NHL L Dom T BCL6 HLF hepatic leukemia factor 3131 17 17q22 yes ALL L Dom T TCF3 HLXB9 homeo box HB9 3110 7 7q36 yes AML L Dom T ETV6 yes CURRARINO SYNDROME HMGA1 high mobility group AT-hook 1 3159 6 6p21 yes "microfollicular thyroid adenoma, various benign mesenchymal tumors," "E, M" Dom T ? HMGA2 high mobility group AT-hook 2 (HMGIC) 8091 12 12q15 yes "lipoma, leiomyoma, pleiomorphic salivary gland adenoma" M Dom T " LHFP, RAD51L1, LPP, HEI10, COX6C, CMKOR1, NFIB, ALDH2, CCNB1IP1, EBF1, WIF1, FHIT" HNRNPA2B1 heterogeneous nuclear ribonucleoprotein A2/B1 3181 7 7p15 yes prostate E Dom T ETV1 HOOK3 hook homolog 3 84376 8 8p11.21 yes papillary thyroid E Dom T RET HOXA11 homeo box A11 3207 7 7p15-p14.2 yes CML L Dom T NUP98 HOXA13 homeo box A13 3209 7 7p15-p14.2 yes AML L Dom T NUP98 HOXA9 homeo box A9 3205 7 7p15-p14.2 yes AML* L Dom T "NUP98, MSI2" HOXC11 homeo box C11 3227 12 12q13.3 yes AML L Dom T NUP98 HOXC13 homeo box C13 3229 12 12q13.3 yes AML L Dom T NUP98 HOXD11 homeo box D11 3237 2 2q31-q32 yes AML L Dom T NUP98 HOXD13 homeo box D13 3239 2 2q31-q32 yes AML* L Dom T NUP98 HRAS v-Ha-ras Harvey rat sarcoma viral oncogene homolog 3265 11 11p15.5 yes yes "infrequent sarcomas, rare other types" "rhadomyosarcoma, ganglioneuroblastoma, bladder" Costello syndrome "E, L, M" Dom Mis HRPT2 hyperparathyroidism 2 79577 1 1q21-q31 yes yes parathyroid adenoma "parathyroid adenoma, mulitiple ossifying jaw fibroma " Hyperparathyroidism-jaw tumor syndrome "E, M" Rec "Mis, N, F" HSPCA "heat shock 90kDa protein 1, alpha" 3320 14 14q32.31 yes NHL L Dom T BCL6 HSPCB "heat shock 90kDa protein 1, beta" 3326 6 6p12 yes NHL L Dom T BCL6 IDH1 "isocitrate dehydrogenase 1 (NADP+), soluble" 3417 2 2q33.3 yes gliobastoma O Dom Mis IDH2 "socitrate dehydrogenase 2 (NADP+), mitochondrial " 3418 15 15q26.1 yes GBM M Dom M IGH@ immunoglobulin heavy locus 3492 14 14q32.33 yes "MM, Burkitt lymphoma, NHL, CLL, B-ALL, MALT, MLCLS" L Dom T "MYC, FGFR3,PAX5, IRTA1, IRF4, CCND1, BCL9, BCL8, BCL6, BCL2, BCL3, BCL10, BCL11A. LHX4, DDX6, NFKB2, PAFAH1B2, PCSK7, CRLF2" IGK@ immunoglobulin kappa locus 50802 2 2p12 yes "Burkitt lymphoma, B-NHL" L Dom T "MYC, FVT1" IGL@ immunoglobulin lambda locus 3535 22 22q11.1-q11.2 yes Burkitt lymphoma L Dom T "BCL9, MYC, CCND2" IKZF1 IKAROS family zinc finger 1 10320 7 7p12.2 yes ALL L Rec? D IL2 interleukin 2 3558 4 4q26-q27 yes intestinal T-cell lymphoma L Dom T TNFRSF17 IL21R interleukin 21 receptor 50615 16 16p11 yes NHL L Dom T BCL6 IL6ST "interleukin 6 signal transducer (gp130, oncostatin M receptor)" 3572 5 5q11 yes hepatocellular ca E Dom O IL7R interleukin 7 receptor 3575 5 5p13 yes ALL L Dom "Mis, O" yes Severe combined immune deficiency IRF4 interferon regulatory factor 4 3662 6 6p25-p23 yes MM L Dom T IGH@ IRTA1 immunoglobulin superfamily receptor translocation associated 1 83417 1 1q21 yes B-NHL L Dom T IGH@ ITK IL2-inducible T-cell kinase 3702 5 5q31-q32 yes peripheral T-cell lymphoma L Dom T SYK JAK1 Janus kinase 1 3716 1 1p32.3-p31.3 yes ALL L Dom Mis JAK2 Janus kinase 2 3717 9 9p24 yes "ALL, AML, MPD, CML" L Dom "T, Mis, O" "ETV6, PCM1, BCR" JAK3 Janus kinase 3 3718 19 19p13.1 yes "acute megakaryocytic leukemia, " L Dom Mis JAZF1 juxtaposed with another zinc finger gene 1 221895 7 7p15.2-p15.1 yes endometrial stromal tumours M Dom T SUZ12 JUN jun oncogene 3725 1 1p32-p31 yes sarcoma M Dom A KDM5A "lysine (K)-specific demethylase 5A, JARID1A" 5927 12 12p11 yes AML L Dom T NUP98 KDM5C lysine (K)-specific demethylase 5C (JARID1C) 8242 X Xp11.22-p11.21 yes clear cell renal carcinoma E Rec "N, F, S" KDM6A "lysine (K)-specific demethylase 6A, UTX" 7403 X Xp11.2 yes "renal, oesophageal SCC, MM" "E, L" Rec "D, N, F, S" KDR vascular endothelial growth factor receptor 2 3791 4 4q11-q12 yes "NSCLC, angiosarcoma" E Dom Mis KIAA1549 KIAA1549 57670 7 7q34 yes pilocytic astrocytoma O Dom O BRAF KIT v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog 3815 4 4q12 yes yes "GIST, AML, TGCT, mastocytosis, mucosal melanoma" "GIST, epithelioma" Familial gastrointestinal stromal tumour "L, M, O, E" Dom "Mis, O" yes Piebald trait KLK2 kallikrein-related peptidase 2 3817 19 19q13.41 yes prostate E Dom T ETV4 KRAS v-Ki-ras2 Kirsten rat sarcoma 2 viral oncogene homolog 3845 12 12p12.1 yes "pancreatic, colorectal, lung, thyroid, AML, others" "L, E, M, O" Dom Mis KTN1 kinectin 1 (kinesin receptor) 3895 14 14q22.1 yes papillary thryoid E Dom T RET LAF4 lymphoid nuclear protein related to AF4 3899 2 2q11.2-q12 yes "ALL, T-ALL" L Dom T "MLL, RUNX1" LASP1 LIM and SH3 protein 1 3927 17 17q11-q21.3 yes AML L Dom T MLL LCK lymphocyte-specific protein tyrosine kinase 3932 1 1p35-p34.3 yes T-ALL L Dom T TRB@ LCP1 lymphocyte cytosolic protein 1 (L-plastin) 3936 13 13q14.1-q14.3 yes NHL L Dom T BCL6 LCX leukemia-associated protein with a CXXC domain 80312 10 10q21 yes AML L Dom T MLL LHFP lipoma HMGIC fusion partner 10186 13 13q12 yes lipoma M Dom T HMGA2 LIFR leukemia inhibitory factor receptor 3977 5 5p13-p12 yes salivary adenoma E Dom T PLAG1 LMO1 LIM domain only 1 (rhombotin 1) (RBTN1) 4004 11 11p15 yes yes "T-ALL, neuroblastoma" neuroblastoma L Dom "T, A" TRD@ LMO2 LIM domain only 2 (rhombotin-like 1) (RBTN2) 4005 11 11p13 yes T-ALL L Dom T TRD@ LPP LIM domain containing preferred translocation partner in lipoma 4026 3 3q28 yes "lipoma, leukemia" "L, M" Dom T "HMGA2, MLL, C12orf9" LYL1 lymphoblastic leukemia derived sequence 1 4066 19 19p13.2-p13.1 yes T-ALL L Dom T TRB@ MADH4 Homolog of Drosophila Mothers Against Decapentaplegic 4 gene 4089 18 18q21.1 yes yes "colorectal, pancreatic, small intestine " gastrointestinal polyps Juvenile polyposis E Rec "D, Mis, N, F" MAF v-maf musculoaponeurotic fibrosarcoma oncogene homolog 4094 16 16q22-q23 yes MM L Dom T IGH@ MAFB v-maf musculoaponeurotic fibrosarcoma oncogene homolog B (avian) 9935 20 20q11.2-q13.1 yes MM L Dom T IGH@ MALT1 mucosa associated lymphoid tissue lymphoma translocation gene 1 10892 18 18q21 yes MALT L Dom T BIRC3 MAML2 mastermind-like 2 (Drosophila) 84441 11 11q22-q23 yes salivary gland mucoepidermoid E Dom T "MECT1, CRTC3" MAP2K4 mitogen-activated protein kinase kinase 4 6416 17 17p11.2 yes "pancreatic, breast, colorectal" E Rec "D, Mis, N" MDM2 Mdm2 p53 binding protein homolog 4193 12 12q15 yes "sarcoma, glioma, colorectal, other" "M, O, E, L" Dom A MDM4 Mdm4 p53 binding protein homolog 4194 1 1q32 yes "GBM, bladder, retinoblastoma" M Dom A MDS1 myelodysplasia syndrome 1 2122 3 3q26 yes "MDS, AML" L Dom T RUNX1 MDS2 myelodysplastic syndrome 2 259283 1 1p36 yes MDS L Dom T ETV6 MECT1 mucoepidermoid translocated 1 23373 19 19p13 yes salivary gland mucoepidermoid E Dom T MAML2 MED12 mediator complex subunit 12 9968 X Xq13 yes uterine leiomyoma M Dom "M, S" Yes Opitz-Kaveggia Syndrome MEN1 multiple endocrine neoplasia type 1 gene 4221 11 11q13 yes yes "parathyroid tumors, Pancreatic neuroendocrine tumors" "parathyroid adenoma, pituitary adenoma, pancreatic islet cell, carcinoid" Multiple Endocrine Neoplasia Type 1 E Rec "D, Mis, N, F, S" MET met proto-oncogene (hepatocyte growth factor receptor) 4233 7 7q31 yes "papillary renal, head-neck squamous cell " papillary renal Familial Papillary Renal Cancer E Dom Mis MHC2TA MHC class II transactivator 4261 16 16p13 yes NHL L Dom T BCL6 MITF microphthalmia-associated transcription factor 4286 3 3p14.1 yes melanoma E Dom A yes "Waardenburg syndrome type 2, Tietz syndrome" MKL1 megakaryoblastic leukemia (translocation) 1 57591 22 22q13 yes acute megakaryocytic leukemia L Dom T RBM15 MLF1 myeloid leukemia factor 1 4291 3 3q25.1 yes AML L Dom T NPM1 MLH1 E.coli MutL homolog gene 4292 3 3p21.3 yes yes "colorectal, endometrial, ovarian, CNS" "colorectal, endometrial, ovarian, CNS" "Hereditary non-polyposis colorectal cancer, Turcot syndrome" "E, O" Rec "D, Mis, N, F, S" MLL "myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila)" 4297 11 11q23 yes "AML, ALL" L Dom "T, O" "MLL, MLLT1, MLLT2, MLLT3, MLLT4, MLLT7, MLLT10, MLLT6, ELL, EPS15, AF1Q, CREBBP, SH3GL1, FNBP1, PNUTL1, MSF, GPHN, GMPS, SSH3BP1, ARHGEF12, GAS7, FOXO3A, LAF4, LCX, SEPT6, LPP, CBFA2T1, GRAF, EP300, PICALM, HEAB" MLL2 myeloid/lymphoid or mixed-lineage leukemia 2 8085 12 12q12-q14 yes "medulloblastoma, renal" "O, E" Rec "N, F, Mis" MLL3 myeloid/lymphoid or mixed-lineage leukemia 3 58508 7 7q36.1 yes medulloblastoma O Rec N MLLT1 "myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 1 (ENL)" 4298 19 19p13.3 yes AL L Dom T MLL MLLT10 "myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10 (AF10)" 8028 10 10p12 yes AL L Dom T "MLL, PICALM, CDK6" MLLT2 " myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 2 (AF4)" 4299 4 4q21 yes AL L Dom T MLL MLLT3 "myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 3 (AF9)" 4300 9 9p22 yes ALL L Dom T MLL MLLT4 "myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 4 (AF6)" 4301 6 6q27 yes AL L Dom T MLL MLLT6 "myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 6 (AF17)" 4302 17 17q21 yes AL L Dom T MLL MLLT7 "myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 7 (AFX1)" 4303 X Xq13.1 yes AL L Dom T MLL MN1 meningioma (disrupted in balanced translocation) 1 4330 22 22q13 yes "AML, meningioma" "L, O" Dom T ETV6 MPL "myeloproliferative leukemia virus oncogene, thrombopoietin receptor" 4352 1 p34 yes yes MPD MPD Familial essential thrombocythemia L Dom Mis yes congenital amegakaryocytic thrombocytopenia MSF MLL septin-like fusion 10801 17 17q25 yes AML* L Dom T MLL MSH2 mutS homolog 2 (E. coli) 4436 2 2p22-p21 yes yes "colorectal, endometrial, ovarian" "colorectal, endometrial, ovarian" Hereditary non-polyposis colorectal cancer E Rec "D, Mis, N, F, S" MSH6 mutS homolog 6 (E. coli) 2956 2 2p16 yes yes colorectal "colorectal, endometrial, ovarian" Hereditary non-polyposis colorectal cancer E Rec "Mis, N, F, S" MSI2 musashi homolog 2 (Drosophila) 124540 17 17q23.2 yes CML L Dom T HOXA9 MSN moesin 4478 X Xq11.2-q12 yes ALCL L Dom T ALK MTCP1 mature T-cell proliferation 1 4515 X Xq28 yes T cell prolymphocytic leukemia L Dom T TRA@ MUC1 "mucin 1, transmembrane" 4582 1 1q21 yes B-NHL L Dom T IGH@ MUTYH mutY homolog (E. coli) 4595 1 1p34.3-1p32.1 yes colorectal Adenomatous polyposis coli E Rec Mis MYB v-myb myeloblastosis viral oncogene homolog 4602 6 6q22-23 yes adenoid cystic carcinoma E Dom T NFIB MYC v-myc myelocytomatosis viral oncogene homolog (avian) 4609 8 8q24.12-q24.13 yes "Burkitt lymphoma, amplified in other cancers, B-CLL" "L, E" Dom "A, T" "IGK@, BCL5, BCL7A , BTG1, TRA@, IGH@" MYCL1 "v-myc myelocytomatosis viral oncogene homolog 1, lung carcinoma derived (avian)" 4610 1 1p34.3 yes small cell lung E Dom A MYCN "v-myc myelocytomatosis viral related oncogene, neuroblastoma derived (avian)" 4613 2 2p24.1 yes neuroblastoma O Dom A MYD88 myeloid differentiation primary response gene (88) 4615 3 3p22 yes ABC-DLBCL L Dom Mis MYH11 "myosin, heavy polypeptide 11, smooth muscle" 4629 16 16p13.13-p13.12 yes AML L Dom T CBFB MYH9 "myosin, heavy polypeptide 9, non-muscle" 4627 22 22q13.1 yes ALCL L Dom T ALK yes "Deafness, autosomal dominant 17, Epstein syndrome, Fechtner syndrome, May-Hegglin anomaly, Sebastian syndrome" MYST4 MYST histone acetyltransferase (monocytic leukemia) 4 (MORF) 23522 10 10q22 yes AML L Dom T CREBBP NACA nascent-polypeptide-associated complex alpha polypeptide 4666 12 12q23-q24.1 yes NHL L Dom T BCL6 NBS1 Nijmegen breakage syndrome 1 (nibrin) 4683 8 8q21 yes "NHL, glioma, medulloblastoma, rhabdomyosarcoma" Nijmegen breakage syndrome "L, E, M, O" Rec "Mis, N, F" NCOA1 nuclear receptor coactivator 1 8648 2 2p23 yes alveolar rhadomyosarcoma M Dom T PAX3 NCOA2 nuclear receptor coactivator 2 (TIF2) 10499 8 8q13.1 yes AML L Dom T RUNXBP2 NCOA4 nuclear receptor coactivator 4 - PTC3 (ELE1) 8031 10 10q11.2 yes papillary thyroid E Dom T RET NDRG1 N-myc downstream regulated 1 10397 8 8q24.3 yes prostate E Dom T ERG NF1 neurofibromatosis type 1 gene 4763 17 17q12 yes yes "neurofibroma, glioma" "neurofibroma, glioma" Neurofibromatosis type 1 O Rec "D, Mis, N, F, S, O" NF2 neurofibromatosis type 2 gene 4771 22 22q12.2 yes yes "meningioma, acoustic neuroma, renal " "meningioma, acoustic neuroma" Neurofibromatosis type 2 O Rec "D, Mis, N, F, S, O" NFE2L2 nuclear factor (erythroid-derived 2)-like 2 (NRF2) 4780 2 2q31 yes "NSCLC, HNSCC" E Dom Mis NFIB nuclear factor I/B 4781 9 9p24.1 yes "adenoid cystic carcinoma, lipoma" E Dom T "MYB, HGMA2" NFKB2 nuclear factor of kappa light polypeptide gene enhancer in B-cells 2 (p49/p100) 4791 10 10q24 yes B-NHL L Dom T IGH@ NIN ninein (GSK3B interacting protein) 51199 14 14q24 yes MPD L Dom T PDGFRB NKX2-1 NK2 homeobox 1 7080 14 14q13 yes NSCLC E Dom A NONO "non-POU domain containing, octamer-binding" 4841 X Xq13.1 yes papillary renal cancer E Dom T TFE3 NOTCH1 "Notch homolog 1, translocation-associated (Drosophila) (TAN1)" 4851 9 9q34.3 yes T-ALL L Dom "T, Mis, O" TRB@ NOTCH2 Notch homolog 2 4853 1 1p13-p11 yes "marginal zone lymphoma, DLBCL" L Dom "N, F, Mis" NPM1 "nucleophosmin (nucleolar phosphoprotein B23, numatrin)" 4869 5 5q35 yes "NHL, APL, AML" L Dom "T, F " "ALK, RARA, MLF1" NR4A3 "nuclear receptor subfamily 4, group A, member 3 (NOR1)" 8013 9 9q22 yes extraskeletal myxoid chondrosarcoma M Dom T EWSR1 NRAS neuroblastoma RAS viral (v-ras) oncogene homolog 4893 1 1p13.2 yes "melanoma, MM, AML, thyroid" "L, E" Dom Mis NSD1 nuclear receptor binding SET domain protein 1 64324 5 5q35 yes AML L Dom T NUP98 yes Sotos Syndrome NTRK1 "neurotrophic tyrosine kinase, receptor, type 1" 4914 1 1q21-q22 yes papillary thyroid E Dom T "TPM3, TPR, TFG" NTRK3 "neurotrophic tyrosine kinase, receptor, type 3" 4916 15 15q25 yes "congenital fibrosarcoma, Secretory breast " "E, M" Dom T ETV6 NUMA1 nuclear mitotic apparatus protein 1 4926 11 11q13 yes APL L Dom T RARA NUP214 nucleoporin 214kDa (CAN) 8021 9 9q34.1 yes "AML, T-ALL" L Dom T "DEK, SET, ABL1" NUP98 nucleoporin 98kDa 4928 11 11p15 yes AML L Dom T "HOXA9, NSD1, WHSC1L1, DDX10, TOP1, HOXD13, PMX1, HOXA13, HOXD11, HOXA11, RAP1GDS1, HOXC11" NUT nuclear protien in testis 256646 15 q13 yes lethal midline carcinoma of young people E Dom T "BRD4, BRD3" OLIG2 oligodendrocyte lineage transcription factor 2 (BHLHB1) 10215 21 21q22.11 yes T-ALL L Dom T TRA@ OMD osteomodulin 4958 9 9q22.31 yes aneurysmal bone cysts M Dom T USP6 P2RY8 "purinergic receptor P2Y, G-protein coupled, 8" 286530 "X,Y" Xp22.3; Yp11.3 yes "B-ALL, Downs associated ALL" L Dom T CRLF2 PAFAH1B2 "platelet-activating factor acetylhydrolase, isoform Ib, beta subunit 30kDa" 5049 11 11q23 yes MLCLS L Dom T IGH@ PALB2 partner and localizer of BRCA2 79728 16 16p12.1 yes "Wilms tumor, medulloblastoma, AML ,breast" "Fanconi anaemia N, breast cancer susceptibility " "L, O, E" Rec "F, N, Mis" PAX3 paired box gene 3 5077 2 2q35 yes alveolar rhabdomyosarcoma M Dom T "FOXO1A, NCOA1" yes Waardenburg syndrome; craniofacial-deafness-hand syndrome PAX5 paired box gene 5 (B-cell lineage specific activator protein) 5079 9 9p13 yes "NHL, ALL, B-ALL" L Dom "T, Mis, D, F, S" "IGH@, ETV6, PML, FOXP1, ZNF521, ELN" PAX7 paired box gene 7 5081 1 1p36.2-p36.12 yes alveolar rhabdomyosarcoma M Dom T FOXO1A PAX8 paired box gene 8 7849 2 2q12-q14 yes follicular thyroid E Dom T PPARG yes Thyroid dysgenesis PBRM1 polybromo 1 55193 3 3p21 yes "clear cell renal carcinoma, breast" E Rec "Mis, N, F, S, D, O" PBX1 pre-B-cell leukemia transcription factor 1 5087 1 1q23 yes "pre B-ALL, myoepithelioma" "L, M" Dom T "TCF3, EWSR1" PCM1 pericentriolar material 1 (PTC4) 5108 8 8p22-p21.3 yes "papillary thyroid, CML, MPD" "E, L" Dom T "RET, JAK2" PCSK7 proprotein convertase subtilisin/kexin type 7 9159 11 11q23.3 yes MLCLS L Dom T IGH@ PDE4DIP phosphodiesterase 4D interacting protein (myomegalin) 9659 1 1q12 yes MPD L Dom T PDGFRB PDGFB platelet-derived growth factor beta polypeptide (simian sarcoma viral (v-sis) oncogene homolog) 5155 22 22q12.3-q13.1 yes DFSP M Dom T COL1A1 PDGFRA "platelet-derived growth factor, alpha-receptor" 5156 4 4q11-q13 yes "GIST, idiopathic hypereosinophilic syndrome" "L, M, O" Dom "Mis, O, T" FIP1L1 PDGFRB "platelet-derived growth factor receptor, beta polypeptide" 5159 5 5q31-q32 yes "MPD, AML, CMML, CML" L Dom T "ETV6, TRIP11, HIP1, RAB5EP, H4, NIN, HCMOGT-1, PDE4DIP" PER1 period homolog 1 (Drosophila) 5187 17 17p13.1-17p12 yes "AML, CMML" L Dom T ETV6 PHOX2B paired-like homeobox 2b 8929 4 4p12 yes yes neuroblastoma neuroblastoma familial neuroblastoma O Rec "Mis, F" yes congenital central hypoventilation syndrome PICALM phosphatidylinositol binding clathrin assembly protein (CALM) 8301 11 11q14 yes "TALL, AML, " L Dom T "MLLT10, MLL" PIK3CA "phosphoinositide-3-kinase, catalytic, alpha polypeptide" 5290 3 3q26.3 yes "colorectal, gastric, gliobastoma, breast" "E, O" Dom Mis PIK3R1 "phosphoinositide-3-kinase, regulatory subunit 1 (alpha)" 5295 5 5q13.1 yes "gliobastoma, ovarian, colorectal" "E, O" Rec "Mis, F, O" PIM1 pim-1 oncogene 5292 6 6p21.2 yes NHL L Dom T BCL6 PLAG1 pleiomorphic adenoma gene 1 5324 8 8q12 yes salivary adenoma E Dom T "TCEA1, LIFR, CTNNB1, CHCHD7" PML promyelocytic leukemia 5371 15 15q22 yes "APL, ALL" L Dom T "RARA, PAX5" PMS1 PMS1 postmeiotic segregation increased 1 (S. cerevisiae) 5378 2 2q31-q33 yes "colorectal, endometrial, ovarian" Hereditary non-polyposis colorectal cancer E Rec "Mis, N" PMS2 PMS2 postmeiotic segregation increased 2 (S. cerevisiae) 5395 7 7p22 yes "colorectal, endometrial, ovarian, medulloblastoma, glioma" "Hereditary non-polyposis colorectal cancer, Turcot syndrome" E Rec "Mis, N, F" PMX1 paired mesoderm homeo box 1 5396 1 1q24 yes AML L Dom T NUP98 PNUTL1 peanut-like 1 (Drosophila) 5413 22 22q11.2 yes AML L Dom T MLL POU2AF1 "POU domain, class 2, associating factor 1 (OBF1)" 5450 11 11q23.1 yes NHL L Dom T BCL6 POU5F1 "POU domain, class 5, transcription factor 1" 5460 6 6p21.31 yes sarcoma M Dom T EWSR1 PPARG "peroxisome proliferative activated receptor, gamma" 5468 3 3p25 yes follicular thyroid E Dom T PAX8 yes "Insulin resistance ; lipodystrophy, familial partial L;diabetes mellitus, insulin-resistantI, with acanthosis nigricans and hypertension" PPP2R1A "protein phosphatase 2, regulatory subunit A, alpha" 5518 19 19q13.41 yes clear cell ovarian carcinoma E Dom? Mis PRCC papillary renal cell carcinoma (translocation-associated) 5546 1 1q21.1 yes papillary renal E Dom T TFE3 PRDM1 "PR domain containing 1, with ZNF domain" 639 6 6q21 yes DLBCL L Rec "D, N, Mis, F, S" PRDM16 PR domain containing 16 63976 1 1p36.23-p33 yes "MDS, AML" L Dom T EVI1 PRF1 perforin 1 (pore forming protein) 5551 10 10q22 yes "various leukaemia, lymphoma" L Rec M Type 2 familial hemophagocytic lymphohistiocytosis PRKAR1A "protein kinase, cAMP-dependent, regulatory, type I, alpha (tissue specific extinguisher 1)" 5573 17 17q23-q24 yes yes papillary thyroid "myxoma, endocrine, papillary thyroid" Carney complex "E, M" "Dom, Rec" "T, Mis, N, F, S" RET PRO1073 PRO1073 protein (ALPHA) 378938 11 11q31.1 yes renal cell carcinoma (childhood epithelioid) E Dom T TFEB PSIP2 PC4 and SFRS1 interacting protein 2 (LEDGF) 11168 9 9p22.2 yes AML L Dom T NUP98 PTCH Homolog of Drosophila Patched gene 5727 9 9q22.3 yes yes "skin basal cell , medulloblastoma" "skin basal cell, medulloblastoma" Nevoid Basal Cell Carcinoma Syndrome "E, M" Rec "Mis, N, F, S" PTEN phosphatase and tensin homolog gene 5728 10 10q23.3 yes yes "glioma, prostate, endometrial" "harmartoma, glioma, prostate, endometrial" "Cowden Syndrome, Bannayan-Riley-Ruvalcaba syndrome" "L, E, M, O" Rec "D, Mis, N, F, S" PTPN11 "protein tyrosine phosphatase, non-receptor type 11" 5781 12 12q24.1 yes "JMML, AML, MDS" L Dom Mis yes Noonan Syndrome RAB5EP "rabaptin, RAB GTPase binding effector protein 1 (RABPT5)" 9135 17 17p13 yes CMML L Dom T PDGFRB RAD51L1 RAD51-like 1 (S. cerevisiae) (RAD51B) 5890 14 14q23-q24.2 yes "lipoma, uterine leiomyoma" M Dom T HMGA2 RAF1 v-raf-1 murine leukemia viral oncogene homolog 1 5894 3 3p25 yes pilocytic astrocytoma M Dom T SRGAP3 RALGDS ral guanine nucleotide dissociation stimulator 5900 9 9q34.3 yes "PMBL, Hodgkin Lymphona, " L Dom T CIITA RANBP17 RAN binding protein 17 64901 5 5q34 yes ALL L Dom T TRD@ RAP1GDS1 "RAP1, GTP-GDP dissociation stimulator 1" 5910 4 4q21-q25 yes T-ALL L Dom T NUP98 RARA "retinoic acid receptor, alpha" 5914 17 17q12 yes APL L Dom T "PML, ZNF145, TIF1, NUMA1, NPM1" RB1 retinoblastoma gene 5925 13 13q14 yes yes "retinoblastoma, sarcoma, breast, small cell lung" "retinoblastoma, sarcoma, breast, small cell lung" Familial retinoblastoma "L, E, M, O" Rec "D, Mis, N, F, S" RBM15 RNA binding motif protein 15 64783 1 1p13 yes acute megakaryocytic leukemia L Dom T MKL1 RECQL4 RecQ protein-like 4 9401 8 8q24.3 yes "osteosarcoma, skin basal and sqamous cell" Rothmund-Thompson Syndrome M Rec "N, F, S" REL v-rel reticuloendotheliosis viral oncogene homolog (avian) 5966 2 2p13-p12 yes Hodgkin Lymphoma L Dom A RET ret proto-oncogene 5979 10 10q11.2 yes yes "medullary thyroid, papillary thyroid, pheochromocytoma" "medullary thyroid, papillary thyroid, pheochromocytoma" Multiple endocrine neoplasia 2A/2B "E, O" Dom "T, Mis, N, F" "H4, PRKAR1A, NCOA4, PCM1, GOLGA5, TRIM33, KTN1, TRIM27, HOOK3" yes Hirschsprung disease ROS1 v-ros UR2 sarcoma virus oncogene homolog 1 (avian) 6098 6 6q22 yes "glioblastoma, NSCLC" O Dom T "GOPC, ROS1" RPL22 ribosomal protein L22 (EAP) 6146 1 1p36.31 yes "AML, CML" L Dom T RUNX1 RPN1 ribophorin I 6184 3 3q21.3-q25.2 yes AML L Dom T EVI1 RUNDC2A RUN domain containing 2A 92017 16 16p13.13 yes "PMBL, Hodgkin Lymphona, " L Dom T CIITA RUNX1 runt-related transcription factor 1 (AML1) 861 21 21q22.3 yes "AML, preB- ALL, T-ALL" L Dom T "RPL22, MDS1, EVI1, CBFA2T3, CBFA2T1, ETV6, LAF4" RUNXBP2 runt-related transcription factor binding protein 2 (MOZ/ZNF220) 7994 8 8p11 yes AML L Dom T "CREBBP, NCOA2, EP300" SBDS Shwachman-Bodian-Diamond syndrome protein 51119 7 7q11 yes "AML, MDS" Schwachman-Diamond syndrome L Rec Gene Conversion SDH5 cytoband 11 open reading frame 79 54949 11 11q12.2 yes paraganglioma Familial paraganglioma M Rec M SDHB "succinate dehydrogenase complex, subunit B, iron sulfur (Ip)" 6390 1 1p36.1-p35 yes "paraganglioma, pheochromocytoma" Familial paraganglioma O Rec "Mis, N, F" SDHC "succinate dehydrogenase complex, subunit C, integral membrane protein, 15kDa" 6391 1 1q21 yes "paraganglioma, pheochromocytoma" Familial paraganglioma O Rec "Mis, N, F" SDHD "succinate dehydrogenase complex, subunit D, integral membrane protein" 6392 11 11q23 yes "paraganglioma, pheochromocytoma" Familial paraganglioma O Rec "Mis, N, F, S" SEPT6 septin 6 23157 X Xq24 yes AML L Dom T MLL SET SET translocation 6418 9 9q34 yes AML L Dom T NUP214 SETD2 SET domain containing 2 29072 3 3p21.31 yes clear cell renal carcinoma E Rec "N, F, S, Mis" SF3B1 "splicing factor 3b, subunit 1, 155kDa" 23451 2 2q33.1 yes myelodysplastic syndrome L Dom Mis SFPQ splicing factor proline/glutamine rich(polypyrimidine tract binding protein associated) 6421 1 1p34.3 yes papillary renal cell E Dom T TFE3 SFRS3 "splicing factor, arginine/serine-rich 3" 6428 6 6p21 yes follicular lymphoma L Dom T BCL6 SH3GL1 SH3-domain GRB2-like 1 (EEN) 6455 19 19p13.3 yes AL L Dom T MLL SIL TAL1 (SCL) interrupting locus 6491 1 1p32 yes T-ALL L Dom T TAL1 SLC45A3 "solute carrier family 45, member 3" 85414 1 1q32 yes prostate E Dom T "ETV1, ETV5, ELK4, ERG" SMARCA4 "SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4" 6597 19 19p13.2 yes NSCLC E Rec "F, N, Mis" SMARCB1 "SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1" 6598 22 22q11 yes yes malignant rhabdoid malignant rhabdoid Rhabdoid predisposition syndrome M Rec "D, N, F, S" SMO smoothened homolog (Drosophila) 6608 7 7q31-q32 yes skin basal cell E Dom Mis SOCS1 suppressor of cytokine signaling 1� 8651 16 16p13.13 yes "Hodgkin Lymphoma, PMBL" L Rec "F, O" SOX2 SRY (sex determining region Y)-box 2 6657 3 3q26.3-q27 yes "NSCLC, oesophageal squamous carcinoma" E Dom A yes MICROPHTHALMIA AND ESOPHAGEAL ATRESIA SYNDROME SRGAP3 SLIT-ROBO Rho GTPase activating protein 3 9901 3 3p25.3 yes pilocytic astrocytoma M Dom T RAF1 SS18 "synovial sarcoma translocation, cytoband 18" 6760 18 18q11.2 yes synovial sarcoma M Dom T "SSX1, SSX2" SS18L1 synovial sarcoma translocation gene on cytoband 18-like 1 26039 20 20q13.3 yes synovial sarcoma M Dom T SSX1 SSH3BP1 spectrin SH3 domain binding protein 1 10006 10 10p11.2 yes AML L Dom T MLL SSX1 "synovial sarcoma, X breakpoint 1" 6756 X Xp11.23-p11.22 yes synovial sarcoma M Dom T SS18 SSX2 "synovial sarcoma, X breakpoint 2" 6757 X Xp11.23-p11.22 yes synovial sarcoma M Dom T SS18 SSX4 "synovial sarcoma, X breakpoint 4" 6759 X Xp11.23 yes synovial sarcoma M Dom T SS18 STK11 serine/threonine kinase 11 gene (LKB1) 6794 19 19p13.3 yes yes "NSCLC, pancreatic" "jejunal harmartoma, ovarian, testicular, pancreatic" Peutz-Jeghers syndrome "E, M, O" Rec "D, Mis, N, F, S" STL Six-twelve leukemia gene 7955 6 6q23 yes B-ALL L Dom T ETV6 SUFU suppressor of fused homolog (Drosophila) 51684 10 10q24.32 yes yes medulloblastoma medulloblastoma Medulloblastoma predisposition O Rec "D, F, S" SUZ12 suppressor of zeste 12 homolog (Drosophila) 23512 17 17q11.2 yes endometrial stromal tumours M Dom T JAZF1 SYK spleen tyrosine kinase 6850 9 9q22 yes "MDS, peripheral T-cell lymphoma" L Dom T "ETV6, ITK" TAF15 "TAF15 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 68kDa" 8148 17 17q11.1-q11.2 yes "extraskeletal myxoid chondrosarcomas, ALL" "L, M" Dom T "TEC, CHN1, ZNF384" TAL1 T-cell acute lymphocytic leukemia 1 (SCL) 6886 1 1p32 yes lymphoblastic leukemia/biphasic L Dom T "TRD@, SIL" TAL2 T-cell acute lymphocytic leukemia 2 6887 9 9q31 yes T-ALL L Dom T TRB@ TCEA1 "transcription elongation factor A (SII), 1" 6917 8 8q11.2 yes salivary adenoma E Dom T PLAG1 TCF1 "transcription factor 1, hepatic (HNF1)" 6927 12 12q24.2 yes yes "hepatic adenoma, hepatocellular ca" "hepatic adenoma, hepatocellular ca" Familial Hepatic Adenoma E Rec "Mis, F" yes "Maturity-onset diabetes of the young, TYPE III" TCF12 "transcription factor 12 (HTF4, helix-loop-helix transcription factors 4)" 6938 15 15q21 yes extraskeletal myxoid chondrosarcoma M Dom T TEC TCF3 transcription factor 3 (E2A immunoglobulin enhancer binding factors E12/E47) 6929 19 19p13.3 yes pre B-ALL L Dom T "PBX1, HLF, TFPT" TCF7L2 transcription factor 7-like 2 6934 10 10q25.3 yes colorectal E Dom T VTI1A TCL1A T-cell leukemia/lymphoma 1A 8115 14 14q32.1 yes T-CLL L Dom T TRA@ TCL6 T-cell leukemia/lymphoma 6 27004 14 14q32.1 yes T-ALL L Dom T TRA@ TET2 tet oncogene family member 2 54790 4 4q24 yes MDS L Rec "Mis N, F" TFE3 transcription factor binding to IGHM enhancer 3 7030 X Xp11.22 yes "papillary renal, alveolar soft part sarcoma, renal" E Dom T "SFPQ, ASPSCR1, PRCC, NONO, CLTC" TFEB transcription factor EB 7942 6 6p21 yes renal (childhood epithelioid) "E,M" Dom T ALPHA TFG TRK-fused gene 10342 3 3q11-q12 yes "papillary thyroid, ALCL, NSCLC" "E, L" Dom T "NTRK1, ALK" TFPT TCF3 (E2A) fusion partner (in childhood Leukemia) 29844 19 19q13 yes pre-B ALL L Dom T TCF3 TFRC "transferrin receptor (p90, CD71)" 7037 3 3q29 yes NHL L Dom T BCL6 THRAP3 thyroid hormone receptor associated protein 3 (TRAP150) 9967 1 1p34.3 yes aneurysmal bone cysts M Dom T USP6 TIF1 "transcriptional intermediary factor 1 (PTC6,TIF1A)" 8805 7 7q32-q34 yes APL L Dom T RARA TLX1 " T-cell leukemia, homeobox 1 (HOX11)" 3195 10 10q24 yes T-ALL L Dom T "TRB@, TRD@" TLX3 "T-cell leukemia, homeobox 3 (HOX11L2)" 30012 5 5q35.1 yes T-ALL L Dom T BCL11B TMPRSS2 "transmembrane protease, serine 2" 7113 21 21q22.3 yes prostate E Dom T "ERG, ETV1, ETV4, ETV5" TNFAIP3 "tumor necrosis factor, alpha-induced protein 3" 7128 6 6q23 yes "marginal zone B-cell lymphomas, Hodgkin's lymphoma, primary mediastinal B cell lymphoma" L Rec "D, N, F" TNFRSF14 "tumor necrosis factor receptor superfamily, member 14 (herpesvirus entry mediator)" 8764 1 1p36.32 yes follicular lymphoma L Rec "Mis, N, F" TNFRSF17 "tumor necrosis factor receptor superfamily, member 17" 608 16 16p13.1 yes intestinal T-cell lymphoma L Dom T IL2 TNFRSF6 "tumor necrosis factor receptor superfamily, member 6 (FAS)" 355 10 10q24.1 yes "TGCT, nasal NK/T lymphoma, skin squamous cell ca -burn scar-related" "L, E, O" Rec Mis yes Autoimmune lymphoproliferative syndrome TOP1 topoisomerase (DNA) I 7150 20 20q12-q13.1 yes AML* L Dom T NUP98 TP53 tumor protein p53 7157 17 17p13 yes yes "breast, colorectal, lung, sarcoma, adrenocortical, glioma, multiple other tumour types" "breast, sarcoma, adrenocortical carcinoma, glioma, multiple other tumour types" Li-Fraumeni syndrome "L, E, M, O" Rec "Mis, N, F" TPM3 tropomyosin 3 7170 1 1q22-q23 yes "papillary thyroid, ALCL" "E, L" Dom T "NTRK1, ALK" TPM4 tropomyosin 4 7171 19 19p13.1 yes ALCL L Dom T ALK TPR translocated promoter region 7175 1 1q25 yes papillary thyroid E Dom T NTRK1 TRA@ T cell receptor alpha locus 6955 14 14q11.2 yes T-ALL L Dom T "ATL,OLIG2, MYC, TCL1A, TCL6, MTCP1, TCL6" TRB@ T cell receptor beta locus 6957 7 7q35 yes T-ALL L Dom T "HOX11, LCK, NOTCH1, TAL2, LYL1" TRD@ T cell receptor delta locus 6964 14 14q11 yes T-cell leukemia L Dom T "TAL1, HOX11, TLX1, LMO1, LMO2, RANBP17" TRIM27 tripartite motif-containing 27 5987 6 6p22 yes papillary thyroid E Dom T RET TRIM33 " tripartite motif-containing 33 (PTC7,TIF1G)" 51592 1 1p13 yes papillary thyroid E Dom T RET TRIP11 thyroid hormone receptor interactor 11 9321 14 14q31-q32 yes AML L Dom T PDGFRB TSC1 tuberous sclerosis 1 gene 7248 9 9q34 yes "hamartoma, renal cell" Tuberous sclerosis 1 "E, O" Rec "D, Mis, N, F, S" TSC2 tuberous sclerosis 2 gene 7249 16 16p13.3 yes "hamartoma, renal cell" Tuberous sclerosis 2 "E, O" Rec "D, Mis, N, F, S" TSHR thyroid stimulating hormone receptor 7253 14 14q31 yes yes toxic thyroid adenoma thyroid adenoma E Dom Mis yes Hereditary nonautoimmune hyperthyroidism; subclinical hypothyroidism TTL tubulin tyrosine ligase 150465 2 2q13 yes ALL L Dom T ETV6 USP6 ubiquitin specific peptidase 6 (Tre-2 oncogene) 9098 17 17p13 yes aneurysmal bone cysts M Dom T "COL1A1, CDH11, ZNF9, OMD" VHL von Hippel-Lindau syndrome gene 7428 3 3p25 yes yes "renal, hemangioma, pheochromocytoma" "renal, hemangioma, pheochromocytoma" von Hippel-Lindau syndrome "E, M, O" Rec "D, Mis, N, F, S" VTI1A vesicle transport through interaction with t-SNAREs homolog 1A 143187 10 10q25.2 yes colorectal E Dom T TCF7L2 WAS Wiskott-Aldrich syndrome 7454 X Xp11.23-p11.22 lymphoma Wiskott-Aldrich syndrome L X-linked recessive "Mis, N, F, S" WHSC1 Wolf-Hirschhorn syndrome candidate 1(MMSET) 7468 4 4p16.3 yes MM L Dom T IGH@ WHSC1L1 Wolf-Hirschhorn syndrome candidate 1-like 1 (NSD3) 54904 8 8p12 yes AML L Dom T NUP98 WIF1 WNT inhibitory factor 1 11197 12 12q14.3 yes pleomorphic salivary gland adenoma E Dom T HMGA2 WRN Werner syndrome (RECQL2) 7486 8 8p12-p11.2 yes "osteosarcoma, meningioma, others" Werner Syndrome "L, E, M, O" Rec "Mis, N, F, S" WT1 Wilms tumour 1 gene 7490 11 11p13 yes yes "Wilms, desmoplastic small round cell tumor" Wilms "Denys-Drash syndrome, Frasier syndrome, Familial Wilms tumor" O Rec "D, Mis, N, F, S" EWSR1 WTX family with sequence similarity 123B (FAM123B) 139285 X Xq11.1 yes Wilms tumour O Rec "F, D, N, Mis" XPA "xeroderma pigmentosum, complementation group A" 7507 9 9q22.3 yes "skin basal cell, skin squamous cell, melanoma" Xeroderma pigmentosum (A) E Rec "Mis, N, F, S" XPC "xeroderma pigmentosum, complementation group C" 7508 3 3p25 yes "skin basal cell, skin squamous cell, melanoma" Xeroderma pigmentosum (C) E Rec "Mis, N, F, S" XPO1 "exportin 1 (CRM1 homolog, yeast)" 7514 2 2p15 yes CLL L Dom Mis ZNF145 zinc finger protein 145 (PLZF) 7704 11 11q23.1 yes APL L Dom T RARA ZNF198 zinc finger protein 198 7750 13 13q11-q12 yes "MPD, NHL" L Dom T FGFR1 ZNF278 zinc finger protein 278 (ZSG) 23598 22 22q12-q14 yes Ewing sarcoma M Dom T EWSR1 ZNF331 zinc finger protein 331 55422 19 19q13.3-q13.4 yes follicular thyroid adenoma E Dom T ? ZNF384 zinc finger protein 384 (CIZ/NMP4) 171017 12 12p13 yes ALL L Dom T "EWSR1, TAF15 " ZNF521 zinc finger protein 521 25925 18 18q11.2 yes ALL L Dom T PAX5 ZNF9 zinc finger protein 9 (a cellular retroviral nucleic acid binding protein) 7555 3 3q21 yes aneurysmal bone cysts M Dom T USP6 ZNFN1A1 "zinc finger protein, subfamily 1A, 1 (Ikaros)" 10320 7 7p12 yes "ALL, DLBCL" L Dom T BCL6 \ No newline at end of file diff --git a/core/src/main/resources/sample_data/genes/uniprot_id_mapping.txt b/core/src/main/resources/sample_data/genes/uniprot_id_mapping.txt deleted file mode 100644 index 7ccb00b9d1c..00000000000 --- a/core/src/main/resources/sample_data/genes/uniprot_id_mapping.txt +++ /dev/null @@ -1,27859 +0,0 @@ -1 P04217 -2 P01023 -9 F5H5R8 -9 P18440 -9 Q400J6 -10 A4Z6T7 -10 P11245 -12 P01011 -13 P22760 -14 Q13685 -15 F1T0I5 -15 Q16613 -16 P49588 -18 P80404 -19 B2RUU2 -19 B7XCW9 -19 O95477 -20 Q9BZC7 -21 Q4LE27 -21 Q6P5P9 -21 Q99758 -22 O75027 -23 A2BF75 -23 Q2L6I2 -23 Q8NE71 -24 P78363 -24 Q6AI28 -25 P00519 -25 Q59FK4 -26 P19801 -27 P42684 -28 P16442 -29 B3KW89 -29 F5H8B3 -29 Q12979 -29 Q6ZT60 -30 G5E935 -30 P09110 -30 Q96CA6 -31 B2ZZ90 -31 Q13085 -31 Q7Z5W8 -32 O00763 -33 P28330 -34 P11310 -35 E5KSD5 -35 P16219 -36 P45954 -36 Q5SQN6 -37 P49748 -38 P24752 -39 Q9BWD1 -40 E9PBX2 -40 Q16515 -41 P78348 -43 P22303 -47 G3XAI4 -47 P53396 -48 P21399 -49 P10323 -50 Q99798 -51 A8KAA0 -51 B4DK61 -51 F5GYQ8 -51 Q15067 -52 B5MCC7 -52 P24666 -52 Q59EH3 -53 E9PCI1 -53 P11117 -54 P13686 -55 P15309 -56 P26436 -58 P68133 -59 D2JYH4 -59 P62736 -60 P60709 -60 Q1KLZ0 -70 B3KPP5 -70 P68032 -71 P63261 -72 B4E315 -72 E9PG30 -72 P63267 -81 O43707 -86 O96019 -87 P12814 -87 Q1HE25 -88 P35609 -89 Q08043 -90 D3DPA4 -90 Q04771 -91 P36896 -92 P27037 -93 Q13705 -94 P37023 -95 C9J6I6 -95 C9J9D8 -95 C9JWD4 -95 Q03154 -97 A6NDV8 -97 P07311 -98 P14621 -100 P00813 -101 B4DVM6 -101 Q14C66 -102 O14672 -103 P55265 -104 P78563 -104 Q4AE77 -105 Q9NS39 -107 Q08828 -107 Q59FG4 -107 Q8NFM5 -108 Q08462 -108 Q71UM8 -109 B3KT86 -109 O60266 -111 B7Z2C7 -111 B7Z8A6 -111 O95622 -112 O43306 -113 P51828 -114 P40145 -114 Q4F7X0 -115 O60503 -116 P18509 -117 B7ZLA7 -117 B8ZZK3 -117 P41586 -117 Q17S10 -118 A2A3N8 -118 P35611 -118 Q86XM2 -119 B4DM17 -119 P35612 -119 Q05DK5 -120 Q5VU08 -120 Q9UEY8 -123 Q6FHZ7 -123 Q99541 -124 P07327 -125 P00325 -126 P00326 -127 P08319 -128 P11766 -128 Q6IRT1 -130 P28332 -130 Q8IUN7 -131 A8MVN9 -131 P40394 -132 B7Z783 -132 B7Z800 -132 P55263 -132 Q5JQ10 -133 P35318 -134 P30542 -135 B3KVQ4 -135 P29274 -136 P29275 -140 P33765 -140 Q5QNY7 -140 Q6P2N6 -141 P54922 -142 P09874 -143 Q9UKK3 -146 B0ZBE0 -146 P25100 -147 P35368 -148 B0ZBD3 -148 P35348 -150 P08913 -151 A2RUS0 -151 P18089 -152 P18825 -152 Q4W594 -153 P08588 -154 P07550 -155 A8KAG8 -155 P13945 -156 P25098 -157 P35626 -157 Q8N433 -158 P30566 -159 P30520 -160 O95782 -161 O94973 -162 Q10567 -162 Q86X54 -163 P63010 -163 Q96EL6 -164 O43747 -164 Q8IY97 -165 Q8IUX7 -166 Q08117 -166 Q14CJ1 -166 Q8WY48 -167 P54107 -173 P43652 -174 P02771 -175 P20933 -176 E7ENV9 -176 E7EX88 -177 A7Y2U9 -177 B4DNX3 -177 Q15109 -177 Q3L1R5 -177 Q3L1R6 -177 Q3L1R7 -177 Q3L1R8 -177 Q3L1S0 -178 P35573 -181 C6SUN5 -181 O00253 -182 P78504 -182 Q99740 -183 B0ZBE2 -183 B2R5S1 -183 P01019 -185 P30556 -185 Q53YY0 -186 P50052 -187 B2RDH3 -187 B3KQN4 -187 P35414 -189 P21549 -190 F1D8P4 -190 P51843 -191 B3KUN3 -191 F5H737 -191 P23526 -196 P35869 -197 P02765 -199 O43904 -199 P55008 -199 Q4V347 -199 Q9UIV4 -202 B3KPT0 -202 Q9Y4K1 -203 P00568 -203 Q6FGX9 -204 P54819 -205 P27144 -207 B0LPE5 -207 B3KVH4 -207 P31749 -208 B4DG79 -208 P31751 -210 P13716 -210 Q6ZMU0 -211 P13196 -211 Q5JAM2 -212 A8K3F0 -212 A8K6C4 -212 P22557 -212 Q5JZF5 -213 P02768 -214 B3KNN9 -214 B4DTU0 -214 Q13740 -214 Q6PEY4 -215 P33897 -216 P00352 -217 B4DW54 -217 E7EUE5 -217 P05091 -218 A8K828 -218 P30838 -218 Q6PKA6 -219 P30837 -220 P47895 -221 A3FMP9 -221 P43353 -222 P48448 -223 B9EKV4 -223 P49189 -224 P51648 -224 Q6I9T3 -225 Q9UBJ2 -226 P04075 -229 P05062 -230 P09972 -231 P15121 -238 B6D4Y2 -238 Q9UM73 -239 P18054 -240 P09917 -241 P20292 -242 O75342 -244 P13928 -244 Q5VT79 -246 P16050 -247 O15296 -248 P09923 -249 B7Z387 -249 B7Z4Y6 -249 P05186 -250 P05187 -251 P10696 -257 O95076 -258 Q546D7 -258 Q9NP70 -259 P02760 -262 P17707 -262 Q5VXN4 -265 Q99217 -266 Q99218 -267 Q9UKV5 -268 P03971 -269 E9PGD2 -269 F8W1D2 -269 Q16671 -269 Q647K2 -270 B2RAM1 -270 F2Z3B3 -270 P23109 -270 Q5TF02 -271 Q01433 -272 A0AUX0 -272 B7Z2S2 -272 B7Z763 -272 Q01432 -273 P49418 -274 O00499 -274 Q9BTH3 -275 B4DE61 -275 B4DJQ0 -275 E9PBG1 -275 P48728 -275 Q96IG6 -276 P04745 -276 Q6NSB3 -277 P04745 -278 P04745 -279 P04746 -280 P19961 -283 P03950 -284 Q15389 -284 Q5HYA0 -285 O15123 -286 A0PJN8 -286 B3KX39 -286 E5RFL7 -286 P16157 -286 Q53ER1 -287 Q01484 -288 B1AQT2 -288 B4DIL1 -288 E9PE32 -288 Q12955 -288 Q7Z3G4 -288 Q8NAK2 -288 Q9H0P5 -290 P15144 -290 Q59E93 -291 P12235 -292 P05141 -292 Q6NVC0 -293 P12236 -293 Q6I9V5 -301 P04083 -301 Q5TZZ9 -302 P07355 -306 P12429 -307 P09525 -307 Q6LES2 -308 P08758 -309 B7Z8A7 -309 E9PGK1 -309 P08133 -310 B2R657 -310 P20073 -311 P50995 -311 Q5T0G8 -312 P27216 -313 B7Z490 -313 P28039 -314 O75106 -316 Q06278 -317 O14727 -318 P50583 -319 Q13790 -320 Q02410 -321 E9PGI4 -321 Q59G28 -321 Q5XKC0 -321 Q99767 -322 O00213 -323 B4DJ88 -323 B4DSL4 -323 B4E2F2 -323 E9PG87 -323 Q92870 -324 B7Z2B6 -324 P25054 -324 Q4LE70 -325 P02743 -326 B2RP50 -326 O43918 -327 P13798 -328 P27695 -328 Q5TZP7 -329 Q13490 -330 Q13489 -331 B2R9R2 -331 P98170 -332 O15392 -333 P51693 -334 B3KXX9 -334 B4E3I5 -334 Q06481 -335 P02647 -336 P02652 -338 P04114 -338 Q59HB3 -338 Q7Z7Q0 -339 P41238 -341 B2R526 -341 P02654 -343 O94778 -344 P02655 -345 A3KPE2 -345 P02656 -346 P55056 -347 P05090 -348 P02649 -350 P02749 -351 B4DGD0 -351 E9PG40 -351 P05067 -353 G5E9J2 -353 P07741 -354 C9JXH3 -354 G3V0H4 -354 G3XAE3 -354 P07288 -354 Q15096 -354 Q546G3 -355 P25445 -355 Q5T9P3 -356 P48023 -356 Q53ZZ1 -357 Q13796 -358 E7EM69 -358 E9PC21 -358 F5GY19 -358 P29972 -359 P41181 -360 Q92482 -361 F1DSG4 -361 P55087 -362 P55064 -363 Q13520 -364 O14520 -366 O43315 -367 F1D8N5 -367 P10275 -368 A2RRN8 -368 O95255 -368 Q8TCY8 -369 P10398 -372 B0YIW5 -372 B4E1X2 -372 E9PEU4 -372 P48444 -373 P36406 -374 P15514 -374 Q5U026 -375 P84077 -377 P61204 -378 P18085 -379 P49703 -381 A4D0Z3 -381 P84085 -382 P62330 -382 Q6FGZ2 -383 P05089 -384 P78540 -387 P61586 -387 Q9BVT0 -388 P62745 -389 P08134 -390 P61587 -391 P84095 -391 Q6ICQ8 -392 Q07960 -393 P98171 -393 Q86UY3 -394 Q13017 -395 O43182 -395 Q59HG6 -396 B4DUV9 -396 P52565 -397 P52566 -398 F1T0H7 -398 Q99819 -399 Q15669 -399 Q6ICP4 -400 P40616 -401 O14813 -402 G3V184 -402 P36404 -402 Q53YD8 -403 P36405 -405 A8K6P0 -405 B0AZM1 -405 P27540 -406 A2I2N6 -406 O00327 -407 P36575 -408 B7Z1Q3 -408 P49407 -409 G5E980 -409 P32121 -410 B4DVI5 -410 B7XD04 -410 F8WCC8 -410 P15289 -411 A8K4A0 -411 P15848 -411 Q8N322 -412 P08842 -414 P51689 -415 P51690 -416 P54793 -417 P52961 -419 Q13508 -420 Q93070 -421 O00192 -427 A8K0B6 -427 E9PDS0 -427 Q13510 -427 Q53H01 -427 Q96AS2 -429 P50553 -430 Q99929 -432 F8W7M3 -432 P07306 -432 Q6FGQ5 -433 D3DTN0 -433 P07307 -433 Q7Z4G9 -434 P42127 -435 E7EMI0 -435 E9PE48 -435 P04424 -438 P46597 -439 O43681 -440 B4DXZ1 -440 E9PCI3 -440 E9PCX6 -440 P08243 -443 P45381 -443 Q6FH48 -444 B4DIC9 -444 B4DQ07 -444 B4E2K4 -444 B7ZM95 -444 B7ZM96 -444 F5H667 -444 Q12797 -444 Q6NXR7 -444 Q8TB28 -444 Q9H291 -445 P00966 -445 Q5T6L4 -460 E9PFR8 -460 O14525 -460 Q96BL7 -462 P01008 -463 Q15911 -463 Q8N2Y6 -466 P18846 -467 P18847 -467 Q5VTZ2 -467 Q6ICQ9 -467 Q7Z566 -467 Q8WYM6 -468 P18848 -468 Q96AQ3 -471 P31939 -472 Q13315 -473 Q9P2R6 -474 Q92858 -475 O00244 -476 B7Z2T5 -476 B7Z3U6 -476 F5H3A1 -476 P05023 -477 P50993 -478 B3KNQ8 -478 P13637 -479 B4E0R9 -479 P54707 -480 Q13733 -481 A3KLL5 -481 P05026 -482 P14415 -483 P54709 -486 P54710 -487 O14983 -487 Q7Z675 -488 P16615 -489 A8K9K1 -489 G3XAE1 -489 Q93084 -490 P20020 -491 Q01814 -491 Q4J699 -491 Q4LE63 -492 Q16720 -493 B1APW5 -493 P23634 -495 P20648 -495 Q658V6 -496 P51164 -498 P25705 -501 B4DMA0 -501 E7EPT3 -501 P49419 -506 P06576 -509 P36542 -509 Q6I9V2 -509 Q8TAS0 -513 P30049 -514 P56381 -515 P24539 -515 Q08ET0 -516 P05496 -516 Q6FIH7 -517 Q06055 -518 P48201 -521 P56385 -522 P18859 -522 Q6IB54 -522 Q6NZ59 -523 P38606 -525 P15313 -526 P21281 -527 P27449 -528 P21283 -529 A8MUE4 -529 A8MUN4 -529 P36543 -529 Q53Y06 -533 D3DPY5 -533 Q6IB32 -533 Q99437 -534 B5MEF0 -534 O95670 -534 Q2L6F8 -534 Q5HYU8 -534 Q6NVJ2 -535 B7Z3B7 -535 Q53ET5 -535 Q53X12 -535 Q5CZH6 -535 Q93050 -537 Q15904 -537 Q9H0C7 -538 B4DRW0 -538 Q04656 -538 Q762B6 -539 P48047 -540 B7ZLR4 -540 P35670 -545 Q13535 -546 P46100 -547 B0I1S5 -547 F5H045 -547 Q12756 -549 Q13825 -550 Q9Y679 -551 P01185 -552 P37288 -553 P47901 -554 P30518 -558 P30530 -563 P25311 -566 P20160 -567 P61769 -570 Q14032 -571 O14867 -571 Q6ICU0 -572 Q6FH21 -572 Q92934 -573 Q99933 -574 Q13072 -575 E9PBK0 -575 O14514 -576 O60241 -577 O60242 -578 Q16611 -579 P78367 -580 A0AVN2 -580 Q99728 -581 Q07812 -582 Q8NFJ9 -583 Q9BXC9 -585 Q96RK4 -586 B3KY27 -586 B7Z2M5 -586 B7Z5L0 -586 F5H5E4 -586 P54687 -586 Q68DQ7 -587 O15382 -590 P06276 -593 B4DP47 -593 P12694 -593 Q59EI3 -594 P21953 -594 Q9BQL0 -595 P24385 -595 Q6FI00 -596 C9JHD5 -596 P10415 -597 Q16548 -597 Q86W13 -598 Q07817 -598 Q5TE63 -599 Q92843 -602 P20749 -604 B5B0A5 -604 B8PSA7 -604 P41182 -605 Q4VC05 -607 O00512 -608 Q02223 -610 Q9UL51 -611 P03999 -611 Q0PJU0 -613 P11274 -617 Q9Y276 -622 Q02338 -623 P46663 -624 P30411 -627 P23560 -629 P00751 -631 B7Z999 -631 Q12934 -632 P02818 -633 P21810 -634 P13688 -634 Q3KRG8 -635 Q93088 -636 F8W113 -636 Q96G01 -637 A8ASI8 -637 B2ZP79 -637 B3KT21 -637 P55957 -638 Q13323 -639 B4DW27 -639 O75626 -639 Q86WM7 -640 P51451 -640 Q05D26 -640 Q96IN1 -641 P54132 -642 Q13867 -643 A0N0R2 -643 A8K647 -643 P32302 -643 Q2YD84 -644 P53004 -645 P30043 -646 Q01954 -648 P35226 -649 P13497 -650 C8C060 -650 P12643 -651 P12645 -652 P12644 -652 Q53XC5 -653 P22003 -654 P22004 -654 Q4VBA3 -655 A8K571 -655 P18075 -656 P34820 -657 P36894 -658 O00238 -659 Q13873 -660 P51813 -661 P05423 -662 Q12981 -663 Q12982 -664 Q12983 -665 O60238 -665 Q6IBV1 -666 Q9UMX3 -667 Q03001 -668 P58012 -668 Q53ZD3 -669 A4D1N9 -669 P07738 -670 Q86WA6 -671 P17213 -672 E9PFZ0 -672 P38398 -672 Q1RMC1 -672 Q3LRJ6 -672 Q6IN79 -673 P15056 -675 P51587 -676 B7Z811 -676 B7Z890 -676 B7ZAX7 -676 Q58F21 -677 B3KNA8 -677 Q07352 -678 P47974 -680 P32247 -682 A6NJW1 -682 P35613 -682 Q54A51 -683 Q10588 -684 Q10589 -685 P35070 -686 P43251 -687 Q13886 -688 Q13887 -688 Q5T6X2 -689 P20290 -694 P62324 -694 Q6IBC8 -695 Q06187 -695 Q5JY90 -696 Q13410 -696 Q4VAN2 -699 O43683 -701 O60566 -705 Q13895 -706 B1AH88 -706 P30536 -708 Q07021 -710 E9KL26 -710 P05155 -712 P02745 -713 P02746 -714 P02747 -715 P00736 -716 P09871 -717 B4DPF3 -717 B4DV20 -717 E9PFN7 -717 P06681 -717 Q53HP3 -717 Q5JP69 -718 P01024 -719 A8K2H7 -719 Q16581 -720 A6H8M8 -720 P0C0L4 -720 Q6P4R1 -721 A7E2V2 -721 B0V2C8 -721 F8VZD8 -721 P0C0L5 -721 Q6U2E9 -722 P04003 -722 Q5VVQ8 -725 P20851 -726 O15484 -727 P01031 -728 P21730 -729 P13671 -730 P10643 -730 Q05CI3 -731 P07357 -732 P07358 -732 Q05CV3 -733 P07360 -734 Q9Y236 -735 P02748 -738 Q9UID3 -740 Q13405 -741 Q9UHR6 -744 E9PB10 -744 Q15777 -744 Q59GE6 -745 Q9Y2G1 -746 P61165 -747 Q9Y4D2 -750 O95177 -752 O95466 -753 B3KNT9 -753 E9PAY9 -753 O15165 -754 P53801 -755 O43822 -757 P56557 -758 A8K159 -758 O15442 -759 P00915 -760 P00918 -761 P07451 -762 P22748 -762 Q6FHI7 -763 P35218 -765 P23280 -765 Q5FC00 -765 Q8N4G4 -766 P43166 -766 Q86YU0 -767 P35219 -768 Q16790 -770 O75493 -771 O43570 -773 B5TYJ1 -773 O00555 -773 Q9NS88 -774 B1AQK4 -774 Q00975 -775 E9PDJ0 -775 E9PDJ1 -775 Q13936 -776 B0FYA3 -776 Q01668 -776 Q59GD8 -777 Q15878 -777 Q59FG1 -778 O60840 -779 Q13698 -780 B7Z2K0 -780 Q08345 -780 Q96T61 -780 Q96T62 -781 P54289 -782 Q02641 -783 A6PVM7 -783 Q08289 -783 Q59H42 -783 Q5QJ99 -783 Q5VVH1 -783 Q6TME2 -783 Q6TME3 -784 B7Z973 -784 B7ZAK8 -784 F5GZW7 -784 F5H2P6 -784 F8VSG3 -784 P54284 -785 A7BJ74 -785 B4DG40 -785 O00305 -786 Q06432 -788 O43772 -790 P27708 -793 B2R696 -793 P05937 -794 A6NER6 -794 P22676 -795 P29377 -796 P01258 -796 P06881 -797 P10092 -799 A4D1G6 -799 F5H605 -799 P30988 -800 A8K0X1 -800 Q05682 -801 B4DJ51 -801 P62158 -805 B4DJ51 -805 P62158 -808 B4DJ51 -808 P62158 -808 Q9BRL5 -810 P27482 -811 P27797 -813 B3KPG9 -813 B3KQF5 -813 D6QS48 -813 D6QS49 -813 D6QS54 -813 D6QS59 -813 F5H1Q9 -813 F5H879 -813 O43852 -813 Q6IAW5 -814 Q16566 -815 A8K161 -815 Q7LDD5 -815 Q8IWE0 -815 Q9UQM7 -816 A4D2J9 -816 A4D2K5 -816 Q13554 -817 Q13557 -818 Q13280 -818 Q13555 -819 A1L3Y3 -819 P49069 -820 P49913 -821 P27824 -822 P40121 -823 B2RDI5 -823 B4DWH5 -823 P07384 -824 B4DN77 -824 B7ZA96 -824 P17655 -824 Q59EF6 -825 P20807 -825 Q9BQC8 -826 P04632 -827 Q9Y6Q1 -828 Q13938 -828 Q96ET4 -829 P52907 -830 A4D0V4 -830 P47755 -831 G5E946 -831 G5E9D3 -831 P20810 -831 Q59HE3 -831 Q86YM9 -832 P47756 -832 Q7L4N0 -833 B4DPV7 -833 P49589 -833 Q5HYE4 -834 P29466 -835 D3DXD9 -835 E9PDN0 -835 P42575 -835 Q9BZL0 -836 P42574 -837 A2NHL8 -837 A2NHM0 -837 P49662 -838 P51878 -839 P55212 -840 P55210 -841 Q14790 -842 B4E1A3 -842 P55211 -842 Q59GG2 -843 Q92851 -844 P31415 -845 O14958 -846 P41180 -847 P04040 -857 A9XTE5 -857 Q03135 -857 Q2TNI1 -857 Q59E85 -857 Q7Z4F3 -858 P51636 -858 Q53X57 -859 A8K777 -859 P56539 -860 Q13950 -861 Q01196 -862 B2R6I9 -862 B7Z4P4 -862 E7EPN4 -862 Q06455 -862 Q7Z4J5 -863 O75081 -864 B1AJV5 -864 Q13761 -865 Q13951 -866 P08185 -867 P22681 -868 A8K9S7 -868 B3KSS7 -868 Q13191 -869 P23435 -871 A8K259 -871 P50454 -873 P16152 -874 O75828 -875 P35520 -875 Q9NTF0 -881 Q13939 -881 Q8WWB2 -881 Q8WX35 -883 A8K563 -883 Q16773 -885 P06307 -885 Q6FG82 -886 P32238 -887 P32239 -889 A4D1F7 -889 A6NNU0 -889 O00522 -890 P20248 -891 P14635 -892 B4DPZ1 -892 P24863 -892 Q7Z4L3 -894 P30279 -896 B3KQ22 -896 E9PAS4 -896 E9PB36 -896 P30281 -898 P24864 -899 P41002 -899 Q59HD0 -900 P51959 -901 Q16589 -901 Q6FGC6 -902 P51946 -904 O60563 -905 B4DH21 -905 O60583 -908 A6NCD2 -908 P40227 -909 P06126 -910 P29016 -911 P29017 -912 P15813 -913 A2RRL5 -913 E7EP01 -913 P15812 -914 P06729 -914 Q53F96 -915 A8MVP6 -915 B0YIY4 -915 P04234 -916 P07766 -917 B0YIY5 -917 P09693 -919 P20963 -920 B0AZV7 -920 B4DT49 -920 P01730 -921 P06127 -922 O43866 -923 P30203 -923 Q6AZ88 -923 Q8N4Q7 -924 P09564 -924 Q29VG3 -925 P01732 -925 Q6ZVS2 -925 Q8TAW8 -926 P10966 -926 Q496E2 -928 P21926 -929 P08571 -930 F5H635 -930 P15391 -931 P11836 -932 A8MTP8 -932 Q96HJ5 -933 F5GYU4 -933 F5H7U3 -933 P20273 -933 Q0EAF5 -933 Q32M46 -939 P26842 -940 B4E0L1 -940 P10747 -941 A0N0P2 -941 P33681 -942 A8K632 -942 B7Z2F3 -942 B7Z702 -942 P42081 -943 P28908 -944 P32971 -944 Q52M88 -945 B4E3P8 -945 C9JEN7 -945 F8WAL2 -945 P20138 -945 Q546G0 -946 C9JBE5 -946 F8WA78 -946 O43699 -947 P28906 -948 A4D1B1 -948 P16671 -949 F8W8N0 -949 Q8WTV0 -950 B4DKD8 -950 E7EM68 -950 Q14108 -950 Q53Y63 -951 P11049 -952 P28907 -953 B4DWB9 -953 B7Z599 -953 G3XAF6 -953 P49961 -953 Q86VV3 -954 Q5SPY7 -954 Q9Y5L3 -955 O75354 -956 O75355 -957 O75356 -958 P25942 -959 P29965 -960 B6EAT9 -960 O95370 -960 P16070 -961 Q08722 -962 P09326 -963 P19397 -965 P19256 -966 P13987 -966 Q6FHM9 -967 C9JV86 -967 P08962 -968 B4DVT4 -968 P34810 -969 Q07108 -969 Q53ZX0 -970 P32970 -970 Q53XX4 -971 P21854 -971 Q5TLG3 -972 P04233 -973 A0N775 -973 P11912 -974 P40259 -975 P60033 -976 P48960 -977 P48509 -977 Q6ZNZ0 -978 P32320 -983 B7Z3D6 -983 P06493 -984 P21127 -987 P50851 -988 Q99459 -989 A8K3D0 -989 B4DNE4 -989 Q16181 -990 Q99741 -991 Q12834 -993 P30304 -994 B3KS38 -994 P30305 -994 Q6MZW8 -995 P30307 -996 G3V1C4 -996 P30260 -997 P49427 -998 P60953 -999 A8K1U7 -999 P12830 -1000 P19022 -1001 P22223 -1002 G3V1P8 -1002 P55283 -1003 P33151 -1004 P55285 -1005 Q9ULB5 -1006 P55286 -1007 Q9ULB4 -1008 Q9Y6N8 -1009 P55287 -1010 P55289 -1012 A8W476 -1012 A8W477 -1012 B7Z3H7 -1012 B7Z590 -1012 B7Z9B1 -1012 P55290 -1013 P55291 -1014 B4DPA8 -1014 O75309 -1015 B2R778 -1015 Q12864 -1016 B4DHG6 -1016 Q13634 -1017 P24941 -1018 Q00526 -1019 P11802 -1020 Q00535 -1021 A4D1G0 -1021 Q00534 -1022 P50613 -1024 P49336 -1025 P50750 -1026 P38936 -1026 Q6FI05 -1027 P46527 -1027 Q6I9V6 -1028 P49918 -1029 A5X2G7 -1029 G3XAG3 -1029 P42771 -1029 Q8N726 -1030 O15125 -1030 P42772 -1031 P42773 -1031 Q6ICV4 -1032 P55273 -1033 Q16667 -1036 Q16878 -1038 P51861 -1039 Q01850 -1040 Q92903 -1041 Q15517 -1043 P31358 -1044 P47902 -1045 Q99626 -1046 O14627 -1047 O14967 -1048 P06731 -1050 P49715 -1051 P17676 -1052 P49716 -1053 Q15744 -1054 P53567 -1056 P19835 -1058 P49450 -1059 P07199 -1060 Q03188 -1060 Q6PIR0 -1062 Q02224 -1063 P49454 -1066 E9PAU8 -1066 P23141 -1068 Q12798 -1069 P41208 -1070 O15182 -1071 P11597 -1072 P23528 -1073 G3V5P4 -1073 Q549N0 -1073 Q9Y281 -1075 P53634 -1075 Q2HIY8 -1080 P13569 -1081 P01215 -1081 Q6I9S8 -1082 P01233 -1084 P40198 -1087 Q14002 -1088 B4DLI3 -1088 P31997 -1088 Q0Z7S6 -1089 O75871 -1101 O15335 -1102 O95199 -1103 D3DX95 -1103 P28329 -1103 Q6LEN5 -1103 Q6LEN6 -1104 E9PAT9 -1104 P18754 -1104 Q5T081 -1105 B3KT33 -1105 O14646 -1106 O14647 -1106 Q96IP5 -1107 B3KWV4 -1107 E9PG89 -1107 Q12873 -1107 Q2TAZ1 -1108 B3KY63 -1108 Q05CG6 -1108 Q14839 -1109 P17516 -1111 B4DDD0 -1111 B4DT73 -1111 F5H7S4 -1111 O14757 -1112 O00409 -1113 P10645 -1113 Q86T07 -1114 P05060 -1116 P36222 -1117 A6NNY3 -1117 B4DPR7 -1117 Q15782 -1118 Q13231 -1119 P35790 -1120 A0PJM6 -1120 Q9Y259 -1121 A1L4D2 -1121 P24386 -1122 P26374 -1123 B4DV19 -1123 P15882 -1124 A4D1A2 -1124 E9PGE0 -1124 P52757 -1128 P11229 -1128 Q53XZ3 -1129 A4D1Q0 -1129 P08172 -1129 Q6SL56 -1129 Q6SL59 -1129 Q86SJ1 -1130 Q99698 -1131 P20309 -1132 P08173 -1133 P08912 -1133 Q8IVW0 -1134 P02708 -1134 Q53SH4 -1135 Q15822 -1136 P32297 -1137 P43681 -1138 P30532 -1138 Q6EWN4 -1139 B4DFS0 -1139 P36544 -1140 P11230 -1140 Q8IZ46 -1141 P17787 -1141 Q5SXY3 -1142 Q05901 -1143 P30926 -1144 A8K661 -1144 Q07001 -1145 Q04844 -1146 P07510 -1147 O15111 -1149 O60543 -1149 Q8N5P9 -1152 P12277 -1153 Q14011 -1153 Q53XX5 -1154 G5E9R1 -1154 Q9NSE2 -1155 Q99426 -1158 B2R892 -1158 P06732 -1159 P12532 -1160 P17540 -1161 Q13216 -1163 P61024 -1163 Q5T178 -1164 P33552 -1164 Q6FGI9 -1173 Q96CW1 -1174 P61966 -1175 P53680 -1176 Q92572 -1178 C5HZ13 -1178 Q05315 -1179 A8K7I4 -1180 P35523 -1181 B4DQT9 -1181 B4DZ58 -1181 E9PBD9 -1181 E9PCD2 -1181 P51788 -1182 B3KXK0 -1182 B7Z932 -1182 B9EGJ9 -1182 P51790 -1183 A1L3U1 -1183 P51793 -1184 B3KRR2 -1184 P51795 -1185 P51797 -1186 B3KVJ8 -1186 B3KXZ3 -1186 E9PDB9 -1186 P51798 -1186 Q9BRN4 -1187 P51800 -1187 Q5T5Q4 -1188 B3KUY3 -1188 P51801 -1188 Q8WW53 -1191 P10909 -1192 O00299 -1192 Q5SRT3 -1193 O15247 -1195 B4DFW7 -1195 P49759 -1196 P49760 -1196 Q9BRG8 -1198 B3KRI8 -1198 P49761 -1200 O14773 -1201 Q13286 -1201 Q549S9 -1203 O75503 -1207 P54105 -1208 G3V1M8 -1208 P04118 -1209 B3KQH2 -1209 O96005 -1211 B4DIN1 -1211 F5H6N3 -1211 P09496 -1212 P09497 -1213 Q00610 -1215 P23946 -1230 P32246 -1230 Q5U003 -1232 F5GWL6 -1232 P51677 -1232 Q8TDP4 -1232 Q8TDP5 -1232 Q8TDP6 -1233 A0N0Q1 -1233 P51679 -1234 P51681 -1234 Q38L21 -1235 P51684 -1236 A0N0Q0 -1236 P32248 -1237 P51685 -1238 O00590 -1240 Q99788 -1241 Q15722 -1244 Q92887 -1258 Q14028 -1259 P29973 -1259 Q4W5E3 -1260 B3KXY3 -1260 Q16280 -1261 Q16281 -1261 Q4VAP7 -1262 Q8IV77 -1263 Q9H4B4 -1264 P51911 -1265 A6NFI4 -1265 Q99439 -1266 Q15417 -1266 Q6FHA7 -1267 P09543 -1268 P21554 -1269 C6ES44 -1269 P34972 -1270 P26441 -1271 P26992 -1271 Q5U050 -1272 Q12860 -1277 P02452 -1278 P08123 -1280 P02458 -1281 P02461 -1282 P02462 -1284 P08572 -1285 Q01955 -1286 P53420 -1287 P29400 -1288 Q14031 -1288 Q9BS57 -1289 P20908 -1289 Q59EE7 -1290 P05997 -1291 P12109 -1292 P12110 -1293 A8MT30 -1293 B4E3U5 -1293 B7ZMJ7 -1293 B7ZW00 -1293 D9ZGF2 -1293 E9PFQ6 -1293 E9PGQ9 -1293 P12111 -1293 Q63HQ4 -1293 Q8N4Z1 -1294 Q02388 -1294 Q59F16 -1295 P27658 -1296 P25067 -1297 P20849 -1298 Q14055 -1299 Q14050 -1300 Q03692 -1301 E9PCU0 -1301 P12107 -1301 Q149N0 -1301 Q59HB5 -1302 P13942 -1302 Q7Z6C3 -1303 Q99715 -1305 B9EGD2 -1305 E7EWL8 -1305 Q5TAT6 -1306 P39059 -1307 Q07092 -1308 Q9UMD9 -1310 Q14993 -1311 P49747 -1312 P21964 -1314 P53621 -1315 P53618 -1316 D3GC14 -1316 F5H3M5 -1316 Q99612 -1317 O15431 -1318 O15432 -1318 Q53X94 -1325 O00230 -1325 Q8IUV6 -1326 P41279 -1327 P13073 -1329 P10606 -1329 Q53YB7 -1337 P12074 -1339 Q02221 -1340 P14854 -1345 P09669 -1346 P24310 -1346 Q6FGI7 -1347 P14406 -1349 P24311 -1350 P15954 -1351 P10176 -1351 Q53XN1 -1352 Q12887 -1353 B4DEY8 -1353 B4DI26 -1353 Q9Y6N1 -1355 Q7KZN9 -1356 A5PL27 -1356 P00450 -1357 P15085 -1358 P48052 -1359 P15088 -1360 P15086 -1361 Q96IY4 -1362 B7ZAU4 -1362 F5GZH6 -1362 O75976 -1363 P16870 -1364 O14493 -1364 Q75L80 -1365 O15551 -1365 Q75L79 -1366 F5H496 -1366 O95471 -1368 P14384 -1369 B1AP59 -1369 P15169 -1370 P22792 -1371 P36551 -1373 B7ZAW0 -1373 P31327 -1373 Q53TL5 -1373 Q59HF8 -1373 Q6PEK7 -1374 B2RAQ8 -1374 P50416 -1374 Q8WZ48 -1375 A5PLL0 -1375 B7Z4U4 -1375 B7Z5T8 -1375 E9PCP2 -1375 Q53FV7 -1375 Q92523 -1376 P23786 -1378 E9PDY4 -1378 P17927 -1379 Q2VPA4 -1380 P20023 -1381 F1T0F7 -1381 P29762 -1382 F1T098 -1382 P29373 -1384 P43155 -1385 P16220 -1385 Q53X93 -1385 Q5U0J5 -1386 P15336 -1386 Q8TAR1 -1387 Q4LE28 -1387 Q92793 -1388 Q6AZW6 -1388 Q99941 -1389 O60519 -1390 A8K014 -1390 A8K3J7 -1390 A8K6A1 -1390 A8MPQ2 -1390 E9PAR2 -1390 E9PAR4 -1390 E9PB41 -1390 E9PHM1 -1390 Q03060 -1390 Q14501 -1390 Q5W1A7 -1390 Q5W1B0 -1390 Q5W1B2 -1390 Q96AG7 -1392 P06850 -1393 P24387 -1394 P34998 -1395 B2R967 -1395 B3SXS6 -1395 B3SXT0 -1395 Q13324 -1396 P50238 -1397 P52943 -1398 P46108 -1399 P46109 -1400 A0EJG6 -1400 B3KT07 -1400 Q14194 -1400 Q96I11 -1401 P02741 -1404 P10915 -1406 O43186 -1407 A2I2P0 -1407 Q16526 -1408 B4DZD6 -1408 Q49AN0 -1409 P02489 -1409 Q53X53 -1410 P02511 -1411 P05813 -1412 P53672 -1412 Q4ZFX0 -1413 P53673 -1414 P53674 -1415 P43320 -1417 P26998 -1418 P11844 -1419 P07316 -1420 P07315 -1421 P07320 -1427 P22914 -1428 Q14894 -1429 A6NN60 -1429 Q08257 -1429 Q5HYE7 -1431 O75390 -1432 Q16539 -1434 P55060 -1435 P09603 -1436 P07333 -1437 P04141 -1438 A7J003 -1438 B4DW68 -1438 P15509 -1439 P32927 -1439 Q6NSJ8 -1440 A8MXR7 -1440 P09919 -1440 Q6FH65 -1440 Q8N4W3 -1441 Q99062 -1442 A8K6C2 -1442 P01243 -1443 A6NIT4 -1443 B1A4H9 -1443 P01243 -1444 Q14406 -1445 A8K3B6 -1445 B2R6Q4 -1445 P41240 -1446 E9PB60 -1446 P47710 -1447 P05814 -1448 P07498 -1452 P48729 -1452 Q05DL3 -1452 Q6PJ06 -1453 P48730 -1454 P49674 -1454 Q5U045 -1455 P78368 -1456 Q9Y6M4 -1457 P68400 -1459 P19784 -1460 B0UXA9 -1460 P67870 -1462 P13611 -1462 Q59FG9 -1462 Q6MZK8 -1462 Q86W61 -1463 O14594 -1463 Q4LE67 -1464 Q6UVK1 -1465 A8K268 -1465 B4DY28 -1465 P21291 -1465 Q5U0J2 -1466 Q16527 -1468 Q9UBX3 -1469 P01037 -1470 P09228 -1471 P01034 -1472 P01036 -1473 P28325 -1474 Q15828 -1475 P01040 -1475 Q6IB90 -1476 P04080 -1476 Q76LA1 -1477 Q05048 -1477 Q5QPD8 -1478 P33240 -1479 E9PB40 -1479 Q12996 -1479 Q96QK4 -1482 B4DNB6 -1482 E9PBU6 -1482 P52952 -1485 P78358 -1486 Q01459 -1486 Q5VX50 -1486 Q8TC97 -1487 Q13363 -1487 Q7Z2Q5 -1488 P56545 -1489 Q16619 -1489 Q5U5Y7 -1490 P29279 -1490 Q5M8T4 -1491 B4E1R2 -1491 E9PDV0 -1491 P32929 -1493 P16410 -1495 P35221 -1496 P26232 -1496 Q49AD3 -1497 O60931 -1499 P35222 -1500 O60716 -1501 Q9UQB3 -1503 P17812 -1506 P40313 -1508 P07858 -1509 P07339 -1510 P14091 -1511 P08311 -1512 P09668 -1512 Q96NY6 -1513 P43235 -1513 Q6FHS6 -1514 P07711 -1515 B2R717 -1515 O60911 -1519 P43234 -1520 B4DWC9 -1520 P25774 -1521 P56202 -1522 Q9UBR2 -1523 B3KV79 -1523 B3KWH8 -1523 B4DZZ2 -1523 G3V1Z6 -1523 P39880 -1523 Q13948 -1523 Q3LIA3 -1524 P49238 -1525 B7WPI3 -1525 P78310 -1527 O15482 -1528 F8WEU4 -1528 P00167 -1534 B3KTA1 -1534 P49447 -1535 P13498 -1536 P04839 -1537 P08574 -1538 P35663 -1539 Q14093 -1539 Q6PEJ5 -1540 Q9NQC7 -1543 A0N0X8 -1543 P04798 -1544 P05177 -1545 Q16678 -1545 Q53TK1 -1548 P11509 -1549 F8W816 -1549 P20853 -1551 P24462 -1553 Q16696 -1555 P20813 -1557 P33261 -1558 B7Z1F5 -1558 B7Z1F6 -1558 P10632 -1559 P11712 -1559 Q5VX92 -1562 P33260 -1562 Q4VAT5 -1562 Q7Z348 -1565 Q5Y7H2 -1565 Q6NWU0 -1565 Q6NXU8 -1571 P05181 -1572 P24903 -1573 P51589 -1576 P08684 -1576 Q6GRK0 -1577 B7Z5I7 -1577 P20815 -1577 Q7Z3N0 -1579 Q02928 -1580 P13584 -1581 P22680 -1582 Q9UNU6 -1583 G3XAD7 -1583 P05108 -1584 P15538 -1584 Q4VAQ9 -1584 Q8TDD0 -1585 P19099 -1586 P05093 -1586 Q1HB44 -1588 A8K6W3 -1588 P11511 -1588 Q05CU4 -1588 Q8IYG4 -1588 Q8TCA4 -1589 P08686 -1589 Q08AG9 -1589 Q16874 -1589 Q5ST44 -1589 Q96NU8 -1591 Q07973 -1591 Q32ML3 -1592 O43174 -1592 Q5VXH9 -1593 Q02318 -1594 O15528 -1594 Q548T3 -1595 Q16850 -1600 O75553 -1601 B2RAW0 -1601 P98082 -1602 D0FY35 -1602 D0FY36 -1602 Q9UI36 -1603 P61803 -1603 Q53G02 -1604 P08174 -1605 Q14118 -1606 P23743 -1607 Q9Y6T7 -1608 P49619 -1609 P52824 -1610 P14920 -1611 P51397 -1612 P53355 -1612 Q59H88 -1613 O43293 -1615 P14868 -1616 B4E1C1 -1616 Q53F85 -1616 Q9UER7 -1617 Q1RMF9 -1617 Q9NQZ3 -1618 Q5HYB4 -1618 Q92904 -1620 O60477 -1621 P09172 -1622 B8ZWD1 -1622 B8ZWD2 -1622 B8ZWD6 -1622 B8ZWD7 -1622 P07108 -1627 Q16643 -1628 Q10586 -1629 P11182 -1630 P43146 -1630 Q49AK4 -1632 P42126 -1633 F5CTF3 -1633 P27707 -1634 P07585 -1634 Q6FH10 -1635 P32321 -1636 B4DKH4 -1636 B4DXI3 -1636 P12821 -1638 P40126 -1638 Q09GT4 -1639 A8MY36 -1639 B4DM45 -1639 E9PFS5 -1639 E9PGE1 -1639 G5E9H4 -1639 Q14203 -1639 Q6IQ37 -1639 Q6MZZ3 -1641 A8K340 -1641 O43602 -1642 Q16531 -1643 Q92466 -1644 P20711 -1644 Q53Y41 -1644 Q5W5T9 -1645 Q04828 -1646 B4DKR9 -1646 P52895 -1647 A5JUZ3 -1647 P24522 -1647 Q5TCA7 -1647 Q5TCA8 -1649 F8VS99 -1649 P35638 -1649 Q53YD1 -1650 P39656 -1652 P30046 -1652 Q53Y51 -1653 A3RJH1 -1653 Q92499 -1654 B4E3E8 -1654 O00571 -1655 P17844 -1656 P26196 -1657 Q9Y485 -1659 Q14562 -1660 B3KU66 -1660 Q08211 -1662 Q13206 -1663 Q2NKM7 -1663 Q96FC9 -1665 O43143 -1666 Q16698 -1667 P59665 -1668 P59666 -1668 Q6EZE9 -1669 P12838 -1669 Q6EZF8 -1670 A0JDY6 -1670 Q01523 -1671 Q01524 -1671 Q6EZF9 -1672 P60022 -1673 O15263 -1674 P17661 -1674 Q53SB5 -1675 P00746 -1676 O00273 -1676 Q5T6G6 -1677 O76075 -1677 Q96P73 -1678 O60220 -1687 A4FVA8 -1687 B3KT05 -1687 O60443 -1690 O43405 -1716 E5KSL5 -1716 E5KSL6 -1716 Q16854 -1717 Q9UBM7 -1718 Q15392 -1719 B0YJ76 -1719 P00374 -1723 Q02127 -1725 P49366 -1727 B7Z7L3 -1727 P00387 -1728 B7ZAD1 -1728 P15559 -1729 E9PEZ2 -1729 O60610 -1729 Q17RN4 -1729 Q6URC4 -1730 O60879 -1731 Q8WYJ6 -1733 P49895 -1734 A8K845 -1734 Q92813 -1734 Q9HCP7 -1735 P55073 -1735 Q86TU3 -1736 O60832 -1737 P10515 -1737 Q86YI5 -1738 P09622 -1739 B4DF78 -1739 B4DGU1 -1739 B4DGZ8 -1739 E7EWL7 -1739 E9PG21 -1739 Q12959 -1740 F8W9V6 -1740 Q15700 -1740 Q5H9Q4 -1741 B4E0H1 -1741 Q59FY1 -1741 Q5JUW6 -1741 Q92796 -1742 G5E939 -1742 P78352 -1743 B7Z6J1 -1743 P36957 -1745 P56177 -1745 Q7Z724 -1746 Q07687 -1746 Q53QU7 -1747 O60479 -1748 Q92988 -1749 P56178 -1749 Q53Y73 -1750 P56179 -1755 Q9UGM3 -1756 A1L0U9 -1756 A7E212 -1756 E9PDN1 -1756 P11532 -1756 Q16484 -1756 Q4G0X0 -1756 Q6NSJ9 -1756 Q8N754 -1757 A8K596 -1757 Q9UL12 -1758 Q13316 -1759 Q05193 -1760 E5KR05 -1760 E5KR06 -1760 E5KR07 -1760 E5KR08 -1760 Q09013 -1761 Q9Y5R6 -1762 Q09019 -1762 Q8WUW6 -1763 P51530 -1767 Q8TE73 -1768 Q9C0G6 -1769 Q8IU65 -1769 Q96JB1 -1770 A2VCQ8 -1770 Q99499 -1770 Q9NYC9 -1773 P24855 -1773 Q14UU9 -1774 P49184 -1775 Q6JVM3 -1775 Q92874 -1776 Q13609 -1777 O00115 -1778 Q14204 -1780 A4D1I7 -1780 O14576 -1780 Q8N542 -1781 Q13409 -1783 O43237 -1783 Q63HJ8 -1785 A8K1B6 -1785 E9PEQ4 -1785 P50570 -1785 Q8N1K8 -1786 P26358 -1787 O14717 -1787 Q6ICS7 -1788 E9PEB8 -1788 Q8WVA9 -1788 Q9Y6K1 -1789 B4DSM8 -1789 B4DSU1 -1789 E7EN63 -1789 E9PBF2 -1789 Q9UBC3 -1791 P04053 -1793 Q14185 -1794 Q5XG91 -1794 Q92608 -1795 Q8IZD9 -1796 B3KP83 -1796 Q99704 -1797 O77932 -1798 Q9H3H5 -1800 P16444 -1801 B3KQW7 -1801 Q9BZG8 -1802 A8MVC9 -1802 Q9BQC3 -1803 P27487 -1804 E9PF59 -1804 P42658 -1805 Q07507 -1806 Q12882 -1806 Q96HL6 -1807 Q14117 -1808 B4DR31 -1808 Q16555 -1808 Q59GB4 -1809 B3SXQ8 -1809 Q14195 -1809 Q6DEN2 -1809 Q8IXW6 -1810 Q01658 -1810 Q658N3 -1811 P40879 -1812 P21728 -1813 P14416 -1814 E9PCM4 -1814 P35462 -1815 P21917 -1816 P21918 -1819 P55039 -1820 Q99856 -1821 B4DIZ0 -1821 Q13474 -1822 P54259 -1822 Q86V38 -1823 Q08554 -1823 Q9HB00 -1824 Q02487 -1825 Q14574 -1826 O60469 -1827 P53805 -1827 Q6FGP2 -1828 Q02413 -1829 Q14126 -1830 P32926 -1831 Q5JRJ2 -1831 Q99576 -1832 P15924 -1833 Q99645 -1834 Q9NZW4 -1836 P50443 -1837 A8K541 -1837 B4DGS6 -1837 B4DIR0 -1837 B4DIU8 -1837 B7Z3X3 -1837 E9PEH8 -1837 Q59GK7 -1837 Q9BS59 -1837 Q9Y4J8 -1838 G5E9F6 -1838 O60941 -1838 Q86VR4 -1838 Q96AW0 -1839 Q99075 -1840 Q86Y01 -1841 B7ZW70 -1841 P23919 -1841 Q53F55 -1841 Q6FGU2 -1842 O94769 -1843 B4DU40 -1843 P28562 -1844 Q05923 -1845 P51452 -1846 G5E930 -1846 Q13115 -1847 Q16690 -1848 Q16828 -1849 Q16829 -1850 Q13202 -1852 B2RAL9 -1852 Q99956 -1854 P33316 -1855 O14640 -1856 O14641 -1857 Q92997 -1859 Q13627 -1861 B3KPA1 -1861 O14656 -1869 Q01094 -1869 Q9BSD8 -1870 Q14209 -1871 O00716 -1871 Q68DT0 -1874 Q16254 -1875 E9PBN9 -1875 Q15329 -1876 O75461 -1877 Q66K89 -1879 Q9UH73 -1880 P32249 -1889 P42892 -1889 Q2Z2K8 -1890 B2RBL3 -1890 E5KRG5 -1890 P19971 -1891 Q13011 -1892 P30084 -1893 Q16610 -1894 Q96SJ9 -1894 Q9H8V3 -1896 Q92838 -1901 P21453 -1902 Q5VZX0 -1902 Q92633 -1903 Q99500 -1906 P05305 -1906 Q6FH53 -1907 P20800 -1908 P14138 -1908 Q7Z6D2 -1909 P25101 -1910 P24530 -1911 P78364 -1911 Q6GMQ3 -1911 Q6N083 -1912 Q8IXK0 -1915 P68104 -1915 Q6IPS9 -1917 Q05639 -1933 P24534 -1936 B2RAR6 -1936 B4DDU4 -1936 D3DWK1 -1936 E9PBQ9 -1936 P29692 -1936 Q4VBZ6 -1937 P26641 -1937 Q53YD7 -1938 P13639 -1939 P41214 -1942 P20827 -1943 O43921 -1944 P52797 -1945 G3XAK2 -1945 P52798 -1946 P52803 -1947 P98172 -1948 P52799 -1949 Q15768 -1950 E7EVD2 -1950 P01133 -1951 Q9NYQ7 -1952 Q9HCU4 -1953 O75095 -1954 Q7Z7M0 -1955 Q9H1U4 -1956 P00533 -1958 P18146 -1958 Q546S1 -1959 P11161 -1960 B4DH80 -1960 B4DHJ5 -1960 E7EW38 -1960 Q06889 -1961 B2RAE3 -1961 B7ZKU3 -1961 G3V1T5 -1962 B4DWG3 -1962 Q08426 -1964 P47813 -1965 P05198 -1965 Q53XC0 -1967 Q14232 -1968 P41091 -1969 P29317 -1973 P60842 -1974 Q14240 -1975 P23588 -1977 B7Z6V1 -1977 P06730 -1977 Q32Q75 -1978 Q13541 -1979 Q13542 -1981 B2RU06 -1981 B2RU10 -1981 B4DSI9 -1981 G5E9S1 -1981 O95065 -1981 Q04637 -1981 Q96I65 -1982 P78344 -1982 Q2TU89 -1983 P55010 -1984 P63241 -1990 Q9UNI1 -1991 P08246 -1992 P30740 -1993 Q12926 -1994 Q15717 -1995 Q14576 -1996 B7Z4G7 -1996 P26378 -1997 B4E2I5 -1997 E9PDQ9 -1997 P32519 -1997 Q6MZZ4 -1998 Q15723 -1999 P78545 -2000 Q99607 -2001 A6XAE6 -2001 A8K443 -2001 Q9UKW6 -2002 P19419 -2004 P41970 -2005 P28324 -2005 Q8IXL1 -2006 B3KRT8 -2006 P15502 -2009 O00423 -2010 P50402 -2010 Q6FI02 -2011 A8K2S4 -2011 Q7KZI7 -2012 P54849 -2013 P54851 -2014 P54852 -2015 Q14246 -2016 Q04741 -2017 Q14247 -2017 Q53HG7 -2017 Q8N707 -2017 Q96H99 -2018 G3V305 -2018 Q04743 -2019 Q05925 -2020 P19622 -2021 E5KNL5 -2021 Q14249 -2022 P17813 -2022 Q5T9B9 -2023 E2DRY6 -2023 P06733 -2026 P09104 -2026 Q6FHV6 -2027 D3DTL2 -2027 P13929 -2028 Q07075 -2029 E9PB69 -2029 O43768 -2030 Q99808 -2033 Q09472 -2033 Q7Z6C1 -2034 B3KW07 -2034 Q99814 -2035 P11171 -2035 Q1WWM3 -2035 Q29RX4 -2035 Q59F12 -2036 Q9H4G0 -2037 B4DHI8 -2037 B4DJ76 -2037 E9PPD9 -2037 O43491 -2037 O60642 -2037 Q59FD8 -2037 Q68DV2 -2038 P16452 -2039 B3KRH3 -2039 E9PEJ0 -2039 Q08495 -2040 B1AM77 -2040 P27105 -2040 Q9H376 -2041 B5A967 -2041 P21709 -2042 P29320 -2042 Q6P4R6 -2043 P54764 -2043 Q58F15 -2044 P54756 -2045 Q15375 -2046 P29322 -2047 P54762 -2048 P29323 -2049 P54753 -2050 P54760 -2050 Q541P7 -2050 Q7Z635 -2050 Q96L35 -2051 O15197 -2052 B2R8N0 -2052 P07099 -2053 P34913 -2054 P32856 -2055 Q9UBY8 -2056 P01588 -2057 P19235 -2058 P07814 -2059 B4E3T6 -2059 Q12929 -2060 B7Z240 -2060 P42566 -2063 F1D8R3 -2063 P10588 -2064 P04626 -2065 P21860 -2066 Q15303 -2067 B2RC01 -2067 P07992 -2067 Q7Z7F5 -2067 Q96S40 -2068 P18074 -2068 Q7KZU6 -2069 B2RC66 -2069 O14944 -2070 O95677 -2070 Q96CJ7 -2071 P19447 -2072 Q92889 -2073 P28715 -2074 Q03468 -2077 P50548 -2078 B4DN83 -2078 B4DVX5 -2078 P11308 -2079 P84090 -2081 O75460 -2086 Q14264 -2091 P22087 -2098 P10768 -2099 G4XH65 -2099 P03372 -2099 Q9UBT1 -2100 F1D8N3 -2100 Q7LCB3 -2100 Q92731 -2101 P11474 -2101 Q569H8 -2104 B3KY84 -2104 B7Z5E9 -2104 C0SQ93 -2104 E9PGB7 -2104 F1D8R5 -2104 F1D8R6 -2104 F8W8J3 -2104 P62508 -2107 P62495 -2107 Q96CG1 -2108 B4DT43 -2108 P13804 -2108 Q53XN3 -2109 P38117 -2110 Q16134 -2113 A8K725 -2113 B4DW78 -2113 F5GYX9 -2113 P14921 -2113 Q6N087 -2114 P15036 -2115 B7Z2C9 -2115 B7Z618 -2115 B7Z9P2 -2115 E9PHB1 -2115 F5GXR2 -2115 P50549 -2115 Q59GA7 -2116 B3KUL0 -2116 B9EIN1 -2117 B4E3M7 -2117 P41162 -2118 P43268 -2119 P41161 -2120 P41212 -2121 P57679 -2122 C7FEN9 -2122 Q03112 -2122 Q13465 -2123 P22794 -2124 P34910 -2124 Q9BRW1 -2125 Q92817 -2128 P49640 -2130 B0QYK1 -2130 Q01844 -2130 Q96FE8 -2130 Q96MN4 -2130 Q96MX4 -2130 Q9BWA2 -2131 Q16394 -2132 C9JU51 -2132 Q93063 -2134 Q92935 -2135 Q05DH5 -2135 Q49A43 -2135 Q8N8F1 -2135 Q9UBQ6 -2137 O43909 -2138 G5E9R4 -2138 Q8WX80 -2138 Q99502 -2139 O00167 -2140 Q99504 -2145 Q92800 -2146 Q15910 -2147 P00734 -2149 P25116 -2149 Q2TNB2 -2150 P55085 -2150 Q53XJ8 -2151 O00254 -2152 P13726 -2153 P12259 -2155 P08709 -2157 P00451 -2157 Q14286 -2158 F2RM36 -2158 P00740 -2159 P00742 -2159 Q5JVE7 -2160 P03951 -2161 P00748 -2161 Q8IZZ5 -2162 P00488 -2165 P05160 -2166 O00519 -2166 Q9UG55 -2167 E7DVW4 -2167 P15090 -2168 P07148 -2168 Q05CP7 -2168 Q6FGL7 -2169 P12104 -2170 P05413 -2171 E7DVW5 -2171 Q01469 -2172 P51161 -2173 O15540 -2175 O15360 -2175 Q86U55 -2176 B4E3W2 -2176 Q00597 -2177 Q9BXW9 -2178 Q9HB96 -2180 P33121 -2181 B3KMA6 -2181 O95573 -2182 O60488 -2182 Q5JWV8 -2184 P16930 -2185 Q14289 -2186 Q12830 -2187 Q8NB91 -2188 A3KME0 -2188 Q9NPI8 -2189 O15287 -2189 Q53XM5 -2191 Q12884 -2192 P23142 -2192 Q8NBH6 -2193 Q6IBR2 -2193 Q9Y285 -2194 P49327 -2195 Q14517 -2196 Q6PIA2 -2196 Q9NYQ8 -2197 P35544 -2199 P98095 -2199 Q86V58 -2199 Q9Y3V7 -2200 D2JYH6 -2200 P35555 -2201 P35556 -2202 B2R6M6 -2202 Q12805 -2203 P09467 -2203 Q2TU34 -2204 P24071 -2204 Q53X39 -2204 Q92587 -2204 Q92588 -2204 Q92592 -2204 Q92593 -2204 Q9UEK0 -2205 P12319 -2206 Q01362 -2207 P30273 -2208 P06734 -2209 P12314 -2210 Q92637 -2212 P12318 -2213 P31994 -2214 E9PG94 -2214 P08637 -2215 O75015 -2217 P55899 -2218 B4DUX9 -2218 O75072 -2219 O00602 -2219 Q5VYV5 -2220 Q15485 -2222 P37268 -2222 Q6IAX1 -2224 E9PCI9 -2224 P14324 -2230 P10109 -2232 P22570 -2232 Q6GSK2 -2235 P22830 -2235 Q7KZA3 -2237 P39748 -2237 Q6FHX6 -2239 O75487 -2241 P16591 -2241 Q05DA5 -2242 P07332 -2243 P02671 -2244 P02675 -2245 P98174 -2246 P05230 -2246 Q16089 -2247 P09038 -2248 P11487 -2249 P08620 -2250 P12034 -2250 Q8NBG6 -2250 Q8NF90 -2251 P10767 -2252 P21781 -2252 Q6FGV5 -2253 A1A515 -2253 P55075 -2254 P31371 -2255 C7FDY0 -2255 O15520 -2256 Q92914 -2257 P61328 -2258 A8K1P5 -2258 B7Z4M7 -2258 B7Z8N0 -2258 D3DWH4 -2258 Q92913 -2259 Q92915 -2260 P11362 -2261 P22607 -2261 Q0IJ44 -2262 P78333 -2263 P21802 -2264 G3JVM2 -2264 P22455 -2264 Q96KE5 -2266 P02679 -2267 Q08830 -2268 P09769 -2268 P78453 -2271 B1ANK7 -2271 P07954 -2272 A8K1A9 -2272 P49789 -2272 Q45QG9 -2273 B7Z5T4 -2273 B7Z793 -2273 B7Z9A1 -2273 Q13642 -2273 Q6IB30 -2274 Q14192 -2274 Q2XQU9 -2274 Q6I9R8 -2275 Q13643 -2275 Q96C98 -2277 O43915 -2280 P62942 -2280 Q0VDC6 -2281 P68106 -2286 P26885 -2286 Q53XJ5 -2287 Q00688 -2288 Q02790 -2289 F5H7R1 -2289 Q13451 -2289 Q2TA84 -2289 Q59EB8 -2289 Q5TGM6 -2290 P55316 -2294 Q12946 -2295 Q12947 -2296 Q12948 -2297 Q16676 -2298 Q12950 -2299 E0XEN6 -2299 Q12951 -2300 Q12952 -2300 Q498Y4 -2301 Q13461 -2302 Q92949 -2303 Q99958 -2304 O00358 -2305 A8K591 -2305 Q08050 -2305 Q53Y49 -2306 O60548 -2307 O43638 -2308 Q12778 -2309 O43524 -2312 P20930 -2313 B4DTC6 -2313 G3V183 -2313 Q01543 -2314 Q13045 -2315 Q16655 -2315 Q6ICU4 -2316 E9KL45 -2316 P21333 -2316 Q60FE5 -2316 Q6NXF2 -2317 B2ZZ83 -2317 O75369 -2317 Q60FE7 -2318 Q14315 -2318 Q59H94 -2319 Q14254 -2319 Q9BTI6 -2321 P17948 -2322 P36888 -2323 B7ZLY4 -2323 P49771 -2324 P35916 -2326 Q01740 -2327 Q5JPC7 -2327 Q86U73 -2327 Q99518 -2328 P31513 -2328 Q53FW5 -2329 P31512 -2330 C9JJD1 -2330 P49326 -2330 Q53H53 -2330 Q8IV22 -2330 Q9HA79 -2331 Q06828 -2331 Q12833 -2332 Q06787 -2334 B4DXD5 -2334 P51816 -2335 E9PG29 -2335 P02751 -2335 Q6MZF4 -2335 Q6MZM7 -2335 Q6N084 -2335 Q9UQS6 -2339 P49354 -2342 P49356 -2346 B7Z312 -2346 Q04609 -2348 P15328 -2350 P14207 -2350 Q6GTE8 -2352 P41439 -2352 Q05C14 -2353 P01100 -2353 Q6FG41 -2354 A8VJE1 -2354 E9PHJ3 -2354 P53539 -2355 P15408 -2355 Q9H5M2 -2356 Q05932 -2357 P21462 -2358 P25090 -2359 P25089 -2359 Q6L5J4 -2395 A8MXJ6 -2395 Q16595 -2444 P42685 -2475 P42345 -2483 Q14331 -2487 D9ZGF6 -2487 Q92765 -2488 P01225 -2491 Q92674 -2492 P23945 -2492 Q05AH0 -2494 F1D8R9 -2494 O00482 -2494 Q9UEC0 -2495 P02794 -2512 P02792 -2515 Q99965 -2516 F1D8R8 -2516 Q13285 -2517 P04066 -2519 Q9BTY2 -2520 P01350 -2521 P35637 -2521 Q13344 -2521 Q6IBQ5 -2523 P19526 -2523 Q6IZA2 -2524 A8K2L2 -2524 Q10981 -2525 A8K737 -2525 P21217 -2526 P22083 -2527 Q11128 -2528 P51993 -2528 Q6P7E6 -2529 Q11130 -2530 A8K8P8 -2530 B4DFS7 -2530 G3V5N0 -2530 Q546E0 -2530 Q9BYC5 -2531 Q06136 -2532 Q16570 -2532 Q4VBN9 -2532 Q5Y7A1 -2532 Q5Y7A2 -2533 A8K2Y8 -2533 B4DLN2 -2533 E9PBV9 -2533 O15117 -2533 Q05DE9 -2533 Q9NZI9 -2534 P06241 -2535 Q14332 -2535 Q86UZ8 -2537 P09912 -2537 Q5VVR2 -2537 Q6IE95 -2538 P35575 -2539 P11413 -2542 A8K0S7 -2542 B4DUH2 -2542 O43826 -2543 Q13065 -2543 Q13068 -2547 B1AHC8 -2547 P12956 -2548 P10253 -2549 Q13480 -2549 Q9HA84 -2550 Q5SUJ9 -2550 Q8IW08 -2550 Q9UBS5 -2551 A8IE48 -2551 Q06546 -2551 Q8IYS3 -2553 Q06547 -2554 A8K177 -2554 P14867 -2555 A8K0U7 -2555 P47869 -2556 P34903 -2557 P48169 -2558 P31644 -2559 Q16445 -2560 P18505 -2561 P47870 -2562 B2RCW8 -2562 B7Z2W1 -2562 B7Z825 -2562 F5H3D2 -2562 P28472 -2563 A8K496 -2563 O14764 -2564 P78334 -2564 Q6PCD2 -2565 Q8N1C3 -2566 F5HB82 -2566 P18507 -2567 Q99928 -2568 O00591 -2569 P24046 -2570 P28476 -2571 Q8IVA8 -2571 Q99259 -2572 Q05329 -2572 Q5VZ30 -2574 Q13066 -2576 Q13068 -2576 Q13069 -2577 Q13069 -2578 Q13070 -2579 O76087 -2579 P0CL80 -2579 P0CL81 -2579 P0CL82 -2580 O14976 -2581 E7EPA4 -2581 P54803 -2582 Q14376 -2582 Q38G75 -2583 Q00973 -2583 Q59FK0 -2583 Q8N636 -2584 P51570 -2585 Q01415 -2585 Q7Z4Q4 -2587 P47211 -2588 P34059 -2588 Q96I49 -2589 Q05BM8 -2589 Q10472 -2590 Q10471 -2591 Q14435 -2592 P07902 -2593 A8K0A0 -2593 Q14353 -2595 Q8TET4 -2596 A8K0Y4 -2596 P17677 -2596 Q5U058 -2597 P04406 -2615 Q14392 -2617 P41250 -2618 P22102 -2618 Q59HH3 -2619 P54826 -2620 O43903 -2621 B3KRQ7 -2621 B3KVL4 -2621 E9PBL7 -2621 Q14393 -2622 O95995 -2623 P15976 -2624 P23769 -2625 P23771 -2626 P43694 -2627 Q05CA6 -2627 Q92908 -2628 P50440 -2629 B7Z5G2 -2629 B7Z6S1 -2629 B7Z6S9 -2629 P04062 -2631 C9IYJ3 -2631 O75323 -2632 Q04446 -2632 Q59ET0 -2633 P32455 -2634 P32456 -2634 Q8TCE5 -2635 Q9H0R5 -2636 Q14549 -2637 P52951 -2638 D6RAK8 -2638 P02774 -2639 Q92947 -2641 P01275 -2642 P47871 -2643 P30793 -2643 Q8IZH9 -2644 P30047 -2645 P35557 -2645 Q53Y25 -2646 Q14397 -2647 P78537 -2648 Q92830 -2649 F1D8S0 -2649 Q15406 -2650 Q02742 -2650 Q86T81 -2651 Q06430 -2651 Q08M29 -2651 Q8N0V5 -2651 Q8NFS9 -2652 P04001 -2653 P23434 -2657 P27539 -2658 Q9UK05 -2660 O14793 -2660 Q53S46 -2661 O60383 -2662 P55107 -2662 Q8N6T2 -2664 P31150 -2665 P50395 -2665 Q5SX88 -2665 Q6IAT1 -2668 P39905 -2669 P55040 -2670 A7REI1 -2670 E9PAX3 -2670 P14136 -2671 P55789 -2672 B3KVN4 -2672 Q99684 -2673 Q06210 -2674 P56159 -2675 E9PD47 -2675 O00451 -2675 Q58J92 -2676 O60609 -2677 B4DMC5 -2677 E9PEE1 -2677 P38435 -2678 P19440 -2683 P15291 -2686 A0PJJ9 -2686 Q9UJ14 -2687 P36269 -2687 Q53XM9 -2687 Q6GMP0 -2688 A6NEF6 -2688 B1A4G6 -2688 B1A4G7 -2688 B1A4G9 -2688 B1A4H0 -2688 P01241 -2689 B1A4H5 -2689 B1A4H7 -2689 O14643 -2689 O14644 -2689 P01242 -2690 P10912 -2691 P01286 -2692 Q02643 -2693 Q92847 -2694 P27352 -2695 P09681 -2696 P48546 -2696 Q4VBP1 -2697 P17302 -2700 Q9Y6H8 -2701 P35212 -2702 P36382 -2703 P48165 -2705 P08034 -2706 P29033 -2707 O75712 -2709 O95377 -2710 A6NJP5 -2710 B4DH54 -2710 P32189 -2712 Q14410 -2717 P06280 -2717 Q53Y83 -2719 B4DTD8 -2719 C9JLE3 -2719 G3V1R0 -2719 P51654 -2719 Q2L880 -2719 Q2L882 -2719 Q53H15 -2720 P16278 -2729 E1CEI4 -2729 P48506 -2729 Q14TF0 -2730 P48507 -2731 P23378 -2733 B3KMG0 -2733 Q53GS7 -2734 B7Z8Y4 -2734 Q92896 -2735 B4DNF7 -2735 F5H6H8 -2735 P08151 -2736 P10070 -2736 Q1PSW9 -2736 Q59FV5 -2737 P10071 -2738 P10075 -2739 Q04760 -2740 P43220 -2741 P23415 -2742 B7Z4F5 -2742 P23416 -2743 F5GWE1 -2743 P48167 -2744 O94925 -2745 P35754 -2746 E9KL48 -2746 P00367 -2747 P49448 -2752 A8YXX4 -2752 P15104 -2760 P17900 -2762 O60547 -2764 P60983 -2765 Q99445 -2766 P36959 -2767 P29992 -2768 B3KXS2 -2768 Q03113 -2768 Q6ZQV4 -2769 E9KL47 -2769 P30679 -2770 P63096 -2771 B3KP24 -2771 B3KX51 -2771 B4DYA0 -2771 P04899 -2773 P08754 -2773 Q5TZX1 -2774 A8K1Y9 -2774 P38405 -2774 Q86XU3 -2774 Q8N2B4 -2775 B3KP89 -2775 P09471 -2775 Q6AWC5 -2775 Q8N6I9 -2776 P50148 -2778 A6NI00 -2778 O95467 -2778 P63092 -2778 P84996 -2778 Q5JWF2 -2779 P11488 -2780 P19087 -2780 Q5T697 -2781 P19086 -2781 Q8IY73 -2781 Q8N652 -2782 P62873 -2783 P62879 -2783 Q6FHM2 -2784 F1T0G5 -2784 P16520 -2785 P63215 -2786 B1APZ0 -2786 P50150 -2787 P63218 -2788 O60262 -2790 P50151 -2791 P61952 -2791 Q53Y01 -2792 P63211 -2793 O14610 -2794 B4DYK6 -2794 P36915 -2796 P01148 -2797 O43555 -2797 Q9HBX7 -2798 P30968 -2799 P15586 -2799 Q7Z3X3 -2800 Q92805 -2801 Q08379 -2802 Q08378 -2803 F8W8Q7 -2803 Q13439 -2803 Q49A56 -2803 Q59EW8 -2804 Q14789 -2805 P17174 -2806 P00505 -2810 P31947 -2811 E7ES66 -2812 P13224 -2813 P55259 -2813 Q8N1A3 -2814 D1MER9 -2814 P40197 -2815 P14770 -2817 P35052 -2819 P21695 -2820 P43304 -2821 B4DG39 -2821 P06744 -2822 P80108 -2823 E9PHI5 -2823 P51674 -2823 Q86YB0 -2824 Q13491 -2824 Q8N956 -2825 P46091 -2826 P46092 -2827 F1DAM5 -2827 P46089 -2828 P46093 -2829 P46094 -2829 Q502V0 -2829 Q689E2 -2830 F1DAM6 -2830 P46095 -2831 P48145 -2832 P48146 -2833 P49682 -2834 A5JUU5 -2834 P49683 -2835 A8K2F5 -2835 P47775 -2837 Q9UKP6 -2838 B6V9G9 -2838 P49685 -2840 G4XH68 -2840 Q13304 -2841 Q14330 -2842 Q15760 -2842 Q6IBH2 -2843 Q59GP3 -2843 Q99678 -2844 Q99679 -2845 A4D0R8 -2845 B3KV13 -2845 Q3KNS9 -2845 Q99680 -2846 Q99677 -2847 Q99705 -2848 O00155 -2849 Q8NDV2 -2850 F1DAM3 -2850 Q9NS67 -2852 Q63ZY2 -2852 Q99527 -2853 O00270 -2854 O75388 -2856 D8VER1 -2856 Q49SQ1 -2857 Q5VT14 -2857 Q9UPC5 -2859 A8K2J1 -2859 B2RA17 -2859 Q9HC97 -2861 A4D0Y6 -2861 O15354 -2862 O43193 -2863 O43194 -2864 O14842 -2865 O14843 -2867 C6KYL4 -2867 O15552 -2868 P32298 -2869 P34947 -2870 P43250 -2872 B3KS07 -2872 Q9HBH9 -2873 Q13098 -2874 Q13227 -2875 P24298 -2876 P07203 -2877 P18283 -2878 P22352 -2879 P36969 -2880 A1A4Y0 -2880 O75715 -2882 Q96SL4 -2885 B0LPF3 -2885 P62993 -2886 Q14451 -2887 Q13322 -2888 Q14449 -2889 Q13905 -2890 P42261 -2890 Q59GL5 -2891 P42262 -2892 P42263 -2892 Q17R51 -2893 P48058 -2893 Q1WWK6 -2893 Q86XE8 -2894 A8KAN9 -2894 Q9ULK0 -2895 O43424 -2896 P28799 -2897 P39086 -2898 A8K0H7 -2898 D7RWZ3 -2898 Q13002 -2898 Q8IY40 -2899 A9Z1Z8 -2899 Q13003 -2900 Q16099 -2901 Q16478 -2902 Q05586 -2902 Q59GW0 -2902 Q5VSF4 -2902 Q5VSF5 -2902 Q9UPF8 -2902 Q9UPF9 -2903 B4DII7 -2903 Q12879 -2903 Q17RZ6 -2903 Q547U9 -2903 Q59EW6 -2904 Q13224 -2905 O15398 -2905 Q14957 -2906 O15399 -2906 Q59G17 -2907 Q7Z429 -2908 E5KQF5 -2908 E5KQF6 -2908 F1D8N4 -2908 P04150 -2909 Q9NRY4 -2911 Q13255 -2911 Q59HC2 -2912 Q14416 -2912 Q86YG3 -2913 A4D1D0 -2913 Q14832 -2914 A1L4F9 -2914 Q14833 -2915 A8K5P7 -2915 P41594 -2916 O15303 -2917 B2R693 -2917 B9EGG9 -2917 Q14831 -2917 Q59G95 -2918 O00222 -2919 P09341 -2920 P19875 -2921 P19876 -2922 P07492 -2923 P30101 -2925 P30550 -2926 B3KPW0 -2926 Q12849 -2928 O15499 -2931 P49840 -2932 P49841 -2932 Q6FI27 -2934 A2A418 -2934 B7Z373 -2934 P06396 -2934 Q5T0I2 -2935 B2RCT6 -2935 P15170 -2935 Q7KZX8 -2936 C8KIL8 -2936 C8KIL9 -2936 C8KIM0 -2936 P00390 -2937 P48637 -2938 P08263 -2939 A8K987 -2939 P09210 -2940 Q16772 -2941 O15217 -2941 Q6P4G1 -2944 P09488 -2946 B4DRY4 -2946 E9PEM9 -2946 P28161 -2946 Q0D2I8 -2947 P21266 -2947 Q6FGJ9 -2948 Q03013 -2949 P46439 -2949 Q5T8R2 -2950 P09211 -2952 P30711 -2953 P0CG30 -2954 A6NED0 -2954 O43708 -2956 P52701 -2956 Q3SWU9 -2957 P52655 -2958 B2R506 -2958 P52657 -2959 Q00403 -2960 P29083 -2961 P29084 -2962 P35269 -2963 P13984 -2965 P32780 -2966 Q13888 -2967 Q13889 -2968 Q76KU4 -2968 Q92759 -2969 P78347 -2969 Q499G6 -2971 Q92664 -2972 B3KU36 -2972 B4DIG5 -2972 B7Z2N3 -2972 F5H5Z7 -2972 F8WA46 -2972 Q92994 -2972 Q96KX3 -2975 Q12789 -2976 Q8WUA4 -2977 P33402 -2978 P43080 -2979 Q7Z3V9 -2979 Q9UMX6 -2980 Q02747 -2981 Q16661 -2982 B3KU69 -2982 D6RDW3 -2982 Q02108 -2983 Q02153 -2984 P25092 -2986 P51841 -2987 B1ANH1 -2987 B4E1H6 -2987 Q16774 -2987 Q6IBG8 -2990 P08236 -2992 D3DNH0 -2992 P46976 -2993 P02724 -2994 P06028 -2995 P04921 -2996 P15421 -2997 P13807 -2997 Q9BTT9 -2998 P54840 -2999 P20718 -3000 Q02846 -3001 P12544 -3002 P10144 -3002 Q67BC3 -3003 P49863 -3004 P51124 -3005 P07305 -3006 A8K4I2 -3006 P16403 -3007 P16402 -3008 A3R0T8 -3008 P10412 -3009 P16401 -3010 P22492 -3012 P04908 -3012 Q08AJ9 -3013 P20671 -3014 P16104 -3015 P0C0S5 -3017 P58876 -3017 P62807 -3018 P33778 -3020 B2R4P9 -3020 P84243 -3021 B2R4P9 -3021 P84243 -3024 Q02539 -3026 B7Z8U5 -3026 F5H5M6 -3026 Q14520 -3028 Q6IBS9 -3028 Q99714 -3029 Q16775 -3030 E9KL44 -3030 P40939 -3032 P55084 -3033 Q16836 -3034 P42357 -3035 P12081 -3036 Q8IYH3 -3036 Q92839 -3037 Q92819 -3038 O00219 -3038 Q96RV2 -3039 D1MGQ2 -3039 P69905 -3040 D1MGQ2 -3040 P69905 -3042 Q6B0K9 -3043 D9YZU5 -3043 P68871 -3045 A0N071 -3045 P02042 -3046 D9YZU7 -3046 P02100 -3047 D9YZU8 -3047 P69891 -3048 D9YZU9 -3048 P69892 -3049 P09105 -3050 P02008 -3052 P53701 -3053 P05546 -3053 Q8IVC0 -3054 P51610 -3055 A8K4G3 -3055 P08631 -3059 P14317 -3060 O43612 -3061 O43613 -3062 O43614 -3064 P42858 -3065 Q13547 -3065 Q6IT96 -3066 Q92769 -3067 P19113 -3068 P51858 -3068 Q5SZ07 -3068 Q5SZ08 -3069 B4DTQ2 -3069 Q00341 -3070 Q9NRZ9 -3071 B4DUT5 -3071 P55160 -3073 P06865 -3074 P07686 -3075 F8WDX4 -3075 P08603 -3077 Q30201 -3077 Q96KU6 -3078 Q03591 -3080 P36980 -3081 Q93099 -3082 P14210 -3083 Q04756 -3084 A6MW55 -3084 A6MW56 -3084 B0FWZ3 -3084 B0FYA7 -3084 B0FYA8 -3084 B0FYA9 -3084 B7Z1D7 -3084 B7Z4Z3 -3084 E9PHH4 -3084 Q02297 -3084 Q6PK61 -3084 Q7RTW3 -3084 Q7RTW5 -3087 B1AQ17 -3087 Q03014 -3090 A0PJI1 -3090 Q14526 -3091 C0LZJ3 -3091 D0VY79 -3091 Q16665 -3092 B4E3I7 -3092 E7ES17 -3092 O00291 -3093 C9JGP1 -3093 P61086 -3094 P49773 -3096 P15822 -3097 P31629 -3098 A8K7J7 -3098 B3KXY9 -3098 P19367 -3098 P78542 -3098 Q59FD4 -3099 P52789 -3101 P52790 -3104 P10074 -3105 B1PKY1 -3105 B2R7U3 -3105 P04439 -3105 P30443 -3105 Q5SUL5 -3106 E5FQ95 -3106 P01889 -3107 O19617 -3107 P10321 -3107 Q6R739 -3107 Q95HC2 -3108 Q31604 -3108 Q6ICR9 -3109 P28068 -3110 F5H401 -3110 P50219 -3111 P06340 -3112 P13765 -3112 Q5QNS2 -3113 P20036 -3113 Q5STP1 -3115 P04440 -3117 P01909 -3117 Q8MH44 -3118 P01906 -3119 P01920 -3119 Q5SU54 -3119 Q5Y7A9 -3119 Q5Y7D3 -3119 Q5Y7D6 -3120 Q5SR06 -3122 P01903 -3123 D7RIH8 -3123 P01911 -3123 P01912 -3123 Q29974 -3123 Q5Y7D1 -3125 P79483 -3126 P13762 -3127 Q30154 -3131 Q16534 -3131 Q6FHS9 -3133 A8K8M6 -3133 O19682 -3133 P13747 -3133 Q6DU44 -3134 P30511 -3135 P17693 -3135 Q6DU14 -3140 B4E3B1 -3140 Q95460 -3141 P50747 -3142 Q14774 -3145 P08397 -3146 P09429 -3148 P26583 -3149 O15347 -3150 P05114 -3150 Q6NSG7 -3151 P05204 -3155 B4DUP4 -3155 P35914 -3155 Q6IBC0 -3156 P04035 -3157 Q01581 -3157 Q5XJ04 -3158 B7Z8R3 -3158 P54868 -3159 P17096 -3159 Q5T6U8 -3161 O75330 -3162 P09601 -3162 Q6FH11 -3163 P30519 -3164 B4DML7 -3164 P22736 -3164 Q53Y00 -3166 Q9NP08 -3167 A2RU54 -3169 P55317 -3170 B0ZTD4 -3170 Q9Y261 -3171 P55318 -3172 F1D8S2 -3172 F1D8T0 -3172 F1D8T1 -3172 P41235 -3174 F1D8Q4 -3174 Q14541 -3175 Q9UBC0 -3176 P50135 -3176 Q9BRW6 -3177 Q14542 -3177 Q96FB2 -3178 P09651 -3181 P22626 -3182 Q99729 -3183 P07910 -3184 Q14103 -3185 P52597 -3187 P31943 -3188 P55795 -3189 P31942 -3189 Q53F48 -3190 P61978 -3190 Q6IBN1 -3191 A6NIT8 -3191 P14866 -3191 Q6NTA2 -3192 Q00839 -3192 Q96BA7 -3195 A1L4G3 -3195 P31314 -3196 O43763 -3198 P49639 -3199 O43364 -3200 A4D182 -3200 B3KPN8 -3200 O43365 -3201 Q00056 -3202 P20719 -3203 P31267 -3204 P31268 -3205 P31269 -3206 P31260 -3207 P31270 -3208 P84074 -3209 P31271 -3209 Q6DI00 -3211 P14653 -3212 P14652 -3213 B3KNJ7 -3213 P14651 -3214 P17483 -3215 P09067 -3216 P17509 -3217 P09629 -3218 P17481 -3218 Q8N8T3 -3219 B3KPJ1 -3219 P17482 -3221 P09017 -3221 Q86TF7 -3222 Q00444 -3223 P09630 -3224 P31273 -3225 P31274 -3225 Q8N561 -3226 Q53XI4 -3226 Q9NYD6 -3227 O43248 -3228 P31275 -3229 P31276 -3231 Q9GZZ0 -3232 P31249 -3233 P09016 -3234 F8WBG7 -3234 P13378 -3234 Q8IXZ1 -3235 P28356 -3236 P28358 -3237 P31277 -3238 P35452 -3239 P35453 -3240 P00738 -3240 Q6PEJ8 -3241 O75544 -3241 P37235 -3241 Q6FGY1 -3242 B3KQ63 -3242 P32754 -3248 B4DU74 -3248 B4DV57 -3248 P15428 -3249 P05981 -3250 P00739 -3251 P00492 -3257 Q658M9 -3257 Q92902 -3263 P02790 -3263 Q9BS19 -3265 P01112 -3266 Q7Z444 -3267 B3KUL1 -3267 E9PHX7 -3267 P52594 -3268 A4D2D6 -3268 O95081 -3269 P35367 -3270 P23327 -3273 P04196 -3274 P25021 -3274 Q7Z5R9 -3275 P55345 -3275 Q498Y5 -3275 Q5U7D4 -3275 Q99781 -3276 B4E3C3 -3276 G5E9B6 -3276 Q8WUW5 -3276 Q99873 -3280 Q14469 -3281 O75506 -3283 P14060 -3284 P26439 -3290 P28845 -3291 P80365 -3292 P14061 -3293 P37058 -3293 Q6FH62 -3294 P37059 -3295 B2R659 -3295 B4DNV1 -3295 B4DVS5 -3295 E9PB82 -3295 F5HE57 -3295 P51659 -3297 Q00613 -3298 Q03933 -3298 Q9BS48 -3299 Q9ULV5 -3300 P25686 -3300 Q53QD7 -3301 P31689 -3301 Q5T7Q0 -3303 A8K5I0 -3303 B3KTT5 -3303 P08107 -3304 A8K5I0 -3304 P08107 -3305 P34931 -3306 P54652 -3308 P34932 -3309 P11021 -3310 P17066 -3312 P11142 -3312 Q53HF2 -3313 P38646 -3315 P04792 -3316 A8KAH6 -3316 Q16082 -3320 P07900 -3320 Q86SX1 -3321 A6NJZ6 -3321 O75054 -3326 P08238 -3329 P10809 -3336 P61604 -3337 P25685 -3337 Q6FHS4 -3338 Q9NNZ3 -3339 P98160 -3340 A8K8T3 -3340 P52848 -3344 P32314 -3346 P15515 -3347 P15516 -3350 P08908 -3350 Q5ZGX3 -3351 P28222 -3352 P28221 -3354 P28566 -3355 P30939 -3356 B4DZ79 -3356 F5GWE8 -3356 P28223 -3357 P41595 -3358 P28335 -3359 B4E398 -3359 G5E986 -3359 P46098 -3359 Q7KZM7 -3360 Q13639 -3360 Q546Q1 -3360 Q684M0 -3360 Q712M9 -3361 A4D2N2 -3361 P47898 -3362 P50406 -3363 P34969 -3363 Q5VX03 -3364 A4D2F2 -3364 O60921 -3371 B4E1W8 -3371 P24821 -3371 Q4LE33 -3373 B3KUI5 -3373 Q12794 -3375 P10997 -3376 P41252 -3376 Q7Z3U5 -3381 P21815 -3382 Q05084 -3382 Q96HG3 -3383 P05362 -3384 P13598 -3384 Q6FHE2 -3385 P32942 -3386 Q14773 -3386 Q9BWR0 -3394 Q02556 -3396 Q14197 -3397 P41134 -3398 Q02363 -3398 Q53T66 -3399 Q02535 -3400 P47928 -3416 B7ZAU2 -3416 P14735 -3417 O75874 -3417 Q6FHQ6 -3418 P48735 -3419 P50213 -3420 O43837 -3421 E9PDD5 -3421 O15384 -3421 P51553 -3422 Q13907 -3423 B4DGD7 -3423 P22304 -3425 P35475 -3426 A8K3L0 -3426 P05156 -3428 B4DJT8 -3428 Q16666 -3429 A8K0H0 -3429 P40305 -3430 P80217 -3431 B4DVI4 -3431 F5H1M1 -3431 Q9HB58 -3433 P09913 -3433 Q05DN2 -3434 P09914 -3434 Q5T7J1 -3437 O14879 -3437 Q5T765 -3439 P01562 -3440 P01563 -3440 Q6DJX8 -3441 P05014 -3442 P01569 -3443 P05013 -3444 P01567 -3445 P32881 -3446 P01566 -3447 E9PB07 -3447 P01562 -3448 P01570 -3449 P05015 -3451 P01571 -3452 P01568 -3454 P17181 -3455 P48551 -3455 Q9BUA0 -3456 P01574 -3456 Q5VWC9 -3458 P01579 -3459 P15260 -3460 A8K881 -3460 P38484 -3467 P05000 -3475 A4D0U1 -3475 B7Z5G1 -3475 O00458 -3476 P78318 -3479 E9PD02 -3479 P05019 -3479 Q13429 -3479 Q14620 -3479 Q59GC5 -3479 Q5U743 -3480 P08069 -3481 C9JAF2 -3481 P01344 -3482 P11717 -3483 B4DZY8 -3483 E9PGU3 -3483 P35858 -3483 Q8TAY0 -3484 C1K3N3 -3484 P08833 -3485 P18065 -3486 B3KPF0 -3486 P17936 -3487 P22692 -3488 P24593 -3489 P24592 -3490 Q16270 -3491 O00622 -3491 Q6FI18 -3508 P38935 -3512 P01591 -3516 B4DY22 -3516 Q06330 -3543 P15814 -3543 Q0P681 -3547 Q8N6C5 -3549 Q14623 -3550 Q13123 -3550 Q95HA6 -3550 Q9UK43 -3551 B4E0U4 -3551 O14920 -3552 P01583 -3552 Q53QF9 -3553 P01584 -3554 P14778 -3556 A8K6K4 -3556 Q9NPH3 -3557 P18510 -3557 Q53SC2 -3558 P60568 -3558 Q0GK43 -3559 P01589 -3560 P14784 -3561 P31785 -3562 P08700 -3563 P26951 -3565 D4HNR6 -3565 P05112 -3565 Q5FC01 -3566 P24394 -3567 P05113 -3568 B4E2G0 -3568 Q01344 -3568 Q8NHV7 -3569 B4DVM1 -3569 P05231 -3569 Q75MH2 -3570 A0N0L5 -3570 P08887 -3572 P40189 -3572 Q17RA0 -3572 Q5FC04 -3574 A8K673 -3574 P13232 -3574 Q5FBX5 -3574 Q5FBY9 -3575 P16871 -3576 P10145 -3577 P25024 -3578 P15248 -3579 P25025 -3579 Q53PC4 -3581 Q01113 -3586 P22301 -3586 Q6FGW4 -3587 Q13651 -3588 Q08334 -3589 A8K3F7 -3589 P20809 -3590 Q14626 -3590 Q5VZ79 -3592 O60595 -3592 P29459 -3593 P29460 -3594 P42701 -3595 Q99665 -3596 P35225 -3597 P78552 -3597 Q5JSL4 -3598 Q14627 -3600 P40933 -3600 Q6FGX7 -3601 Q13261 -3601 Q3B769 -3603 Q14005 -3603 Q9UME6 -3604 Q07011 -3605 Q16552 -3606 Q14116 -3606 Q6WWJ7 -3607 Q01167 -3608 F4ZW62 -3608 Q12905 -3609 G5E9M5 -3609 Q12906 -3611 Q13418 -3612 B4DLN3 -3612 B7Z6Q4 -3612 P29218 -3613 O14732 -3614 A4D0Z6 -3614 B3KRZ3 -3614 B3KVM8 -3614 B4DE09 -3614 C9JV30 -3614 P20839 -3615 P12268 -3617 Q17R60 -3619 Q9NQS7 -3620 P14902 -3621 Q5T9H0 -3621 Q9UK53 -3622 Q9H160 -3623 P05111 -3624 A4D1W7 -3624 P08476 -3625 P09529 -3626 P55103 -3627 P02778 -3628 P49441 -3628 Q6IBG4 -3630 P01308 -3631 Q96PE3 -3632 Q14642 -3632 Q8N6C1 -3633 P32019 -3635 Q92835 -3636 O15357 -3638 A4D2N1 -3638 F5H6P3 -3638 O15503 -3640 P51460 -3641 Q14641 -3642 Q01101 -3643 P06213 -3645 P14616 -3646 P60228 -3651 P52945 -3652 A2A6V3 -3652 Q9Y573 -3654 P51617 -3655 G5E9H1 -3655 P23229 -3656 O43187 -3658 D3DW85 -3658 P48200 -3659 P10914 -3659 Q6FHN8 -3660 P14316 -3660 Q6IAS7 -3661 E2GIM5 -3661 E2GIM6 -3661 E2GIM7 -3661 E2GIM8 -3661 E2GIM9 -3661 Q14653 -3661 Q5FBY1 -3661 Q5FBY2 -3661 Q7Z5G6 -3662 Q15306 -3663 E7EW54 -3663 Q13568 -3663 Q64GA9 -3664 B4DLE2 -3664 F5GWX8 -3664 G0Z349 -3664 O14896 -3665 Q92985 -3667 P35568 -3669 Q96AZ6 -3670 P61371 -3671 O14498 -3672 P56199 -3673 P17301 -3674 P08514 -3675 P26006 -3676 P13612 -3678 P08648 -3679 Q13683 -3679 Q4LE35 -3680 Q13797 -3680 Q8N6H6 -3681 Q13349 -3681 Q59H14 -3682 P38570 -3683 B2RAL6 -3683 P20701 -3683 Q96HB1 -3684 P11215 -3685 B7Z883 -3685 B7ZLX0 -3685 P06756 -3687 P20702 -3687 Q8TES5 -3688 P05556 -3689 P05107 -3690 P05106 -3691 A0AVL6 -3691 P16144 -3692 B7ZBG9 -3692 P56537 -3693 P18084 -3694 P18564 -3695 P26010 -3696 P26012 -3696 Q9BUG9 -3697 B7Z558 -3697 B7Z8B6 -3697 B7Z8C0 -3697 F5H165 -3697 F5H7Y8 -3697 P19827 -3698 P19823 -3699 Q06033 -3700 B2RMS9 -3700 B7Z545 -3700 B7ZKJ8 -3700 E9PGN5 -3700 Q14624 -3702 Q08881 -3703 P46977 -3704 B2BCH7 -3704 Q9BY32 -3705 Q13572 -3706 P23677 -3707 B2R9J0 -3707 P27987 -3708 B4DER3 -3708 B4DGH1 -3708 E7EPX7 -3708 Q14643 -3708 Q59H91 -3709 Q14571 -3710 A6H8K3 -3710 Q14573 -3710 Q59ES2 -3712 B3KVI7 -3712 P26440 -3713 P07476 -3714 Q9Y219 -3716 P23458 -3717 O60674 -3718 P52333 -3720 Q92833 -3725 P05412 -3726 P17275 -3726 Q5U079 -3727 P17535 -3728 P14923 -3730 P23352 -3732 E9PC70 -3732 P27701 -3732 Q7Z5N2 -3735 Q15046 -3736 Q09470 -3737 A8K1Z6 -3737 P16389 -3737 Q86XG6 -3738 P22001 -3738 Q6P2D3 -3739 P22459 -3741 P22460 -3742 P17658 -3743 Q96RP8 -3744 Q16322 -3745 Q14721 -3746 P48547 -3746 Q3KNS8 -3747 Q96PR1 -3748 Q14003 -3749 Q03721 -3750 Q9NSA2 -3751 A4D0V9 -3751 Q9NZV8 -3752 Q14D71 -3752 Q9UK17 -3753 C7S316 -3753 P15382 -3753 Q6FHJ6 -3754 Q9H3M0 -3755 Q86Y85 -3755 Q9UIX4 -3756 O95259 -3756 Q14CL3 -3757 G5E9I0 -3757 Q12809 -3757 Q15BH2 -3757 Q708S9 -3758 P48048 -3759 P63252 -3760 P48549 -3761 P48050 -3762 P48544 -3763 P48051 -3764 Q15842 -3765 Q92806 -3766 P78508 -3767 B2RC52 -3767 B4DWI4 -3767 E9PNK0 -3768 Q14500 -3769 A0PGH1 -3769 O60928 -3769 Q53SA1 -3770 Q9UNX9 -3772 Q99712 -3773 Q8N538 -3773 Q9NPI9 -3775 O00180 -3776 O95069 -3776 Q6ZW95 -3777 O14649 -3778 Q12791 -3778 Q59FH2 -3779 Q16558 -3780 Q92952 -3781 Q6PJI0 -3781 Q9H2S1 -3782 Q9UGI6 -3783 O15554 -3784 P51787 -3784 Q96AI9 -3785 O43526 -3785 Q53Y30 -3786 B4DJY4 -3786 E7EQ89 -3786 O43525 -3787 A2RUL8 -3787 Q96KK3 -3788 Q9ULS6 -3790 Q4ZFY1 -3790 Q9BQ31 -3791 P35968 -3792 P23276 -3795 P50053 -3795 Q6IBK2 -3796 B0AZS5 -3796 E9PB70 -3796 O00139 -3797 A2RU78 -3797 O14782 -3798 Q12840 -3799 P33176 -3799 Q6P164 -3800 O60282 -3800 Q59GB8 -3801 A8K6S2 -3801 Q9BVG8 -3802 P43626 -3802 Q6H2H2 -3802 Q6H2H3 -3803 P43627 -3803 Q6H2H0 -3803 Q8N742 -3804 E3NZD8 -3804 P43628 -3805 Q99706 -3806 Q14954 -3808 Q14952 -3809 P43632 -3809 Q6H2G7 -3810 Q7L8K3 -3811 P43629 -3811 Q5UCE2 -3811 Q8N6C9 -3812 P43630 -3812 Q8NHI6 -3812 Q8NHK6 -3812 Q95366 -3813 O43469 -3814 Q15726 -3815 P10721 -3816 P06870 -3817 P20151 -3817 Q6T775 -3818 P03952 -3820 Q12918 -3821 P26715 -3822 P26717 -3822 Q07444 -3823 Q07444 -3824 Q13241 -3824 Q53ZY6 -3827 C9JEX1 -3827 P01042 -3831 F8VTM4 -3831 Q07866 -3831 Q7RTQ2 -3831 Q7RTQ3 -3832 P52732 -3833 Q9BW19 -3834 Q9UIL4 -3835 Q14807 -3836 P52294 -3837 Q14974 -3838 P52292 -3838 Q7Z726 -3839 O00505 -3839 Q8IYQ9 -3840 O00629 -3841 O15131 -3842 Q92973 -3843 B3KWG6 -3843 O00410 -3843 Q9BVS9 -3845 P01116 -3846 P26371 -3848 P04264 -3849 P35908 -3850 P12035 -3851 B4DRS2 -3851 F8VS64 -3852 P13647 -3853 P02538 -3854 P04259 -3855 P08729 -3856 P05787 -3857 P35527 -3858 P13645 -3859 Q99456 -3860 A1A4E9 -3860 P13646 -3861 P02533 -3866 B3KVF5 -3866 P19012 -3868 P08779 -3872 Q04695 -3872 Q14666 -3875 P05783 -3880 P08727 -3881 Q15323 -3882 Q14532 -3883 O76009 -3884 Q14525 -3885 O76011 -3886 Q92764 -3887 Q14533 -3888 Q9NSB4 -3889 P78385 -3890 Q9NSB2 -3891 P78386 -3892 O43790 -3895 Q17RZ5 -3895 Q5GGW3 -3895 Q86UP2 -3897 A4ZYW4 -3897 G3XAF4 -3897 P32004 -3898 O00515 -3899 P51826 -3899 Q8NAP7 -3902 P18627 -3903 Q6GTX8 -3904 Q6ISS4 -3906 P00709 -3908 P24043 -3908 Q59H37 -3909 B0YJ33 -3909 Q16787 -3909 Q6VU67 -3909 Q6VU69 -3910 Q16363 -3910 Q5D044 -3911 O15230 -3912 P07942 -3912 Q8TAS6 -3913 P55268 -3914 Q13751 -3915 P11047 -3915 Q6NVY8 -3916 P11279 -3918 Q13753 -3920 P13473 -3920 Q6Q3G8 -3921 P08865 -3925 P16949 -3927 Q14847 -3929 P18428 -3929 Q8TCF0 -3930 Q14739 -3931 P04180 -3932 P06239 -3933 P31025 -3934 P80188 -3936 P13796 -3937 Q13094 -3938 P09848 -3939 A8MXQ4 -3939 B4DKQ2 -3939 F8W819 -3939 P00338 -3945 P07195 -3945 Q5U077 -3948 P07864 -3949 B4DII3 -3949 B4DJZ8 -3949 B4DR00 -3949 B4DTQ3 -3949 P01130 -3949 Q59FQ1 -3950 O14960 -3952 A4D0Y8 -3952 P41159 -3953 P48357 -3953 Q4G138 -3954 O95202 -3955 B3KTY6 -3955 B5MCR5 -3955 Q8NES3 -3956 P09382 -3957 P05162 -3958 P17931 -3959 Q08380 -3960 P56470 -3960 Q6FHZ4 -3963 P47929 -3964 O00214 -3965 O00182 -3965 Q3B8N1 -3972 P01229 -3973 P22888 -3975 P48742 -3975 Q58F18 -3976 P15018 -3977 A8K1Z4 -3977 P42702 -3978 P18858 -3980 E5KLB5 -3980 E5KLB6 -3980 P49916 -3981 P49917 -3982 P55344 -3983 B3KSG3 -3983 B3KVH2 -3983 O14639 -3984 B7Z6I8 -3984 P53667 -3985 P53671 -3985 Q7L3H5 -3987 B7Z483 -3987 B7Z7R3 -3987 B7Z907 -3987 P48059 -3988 P38571 -3990 A6H8L5 -3990 P11150 -3991 Q05469 -3992 O60427 -3993 A0PJJ0 -3993 Q6P1M3 -3995 Q9Y5Q0 -3996 Q15334 -3998 P49257 -4000 P02545 -4001 B4DZT3 -4001 P20700 -4004 P25800 -4005 P25791 -4007 O43900 -4008 E9PLH4 -4008 Q8WWI1 -4009 Q8TE12 -4010 B7ZLH2 -4010 F8VYP0 -4010 F8W7W6 -4010 O60663 -4010 Q6ISE0 -4012 Q9UIQ6 -4013 O00534 -4014 P23490 -4015 B7ZAJ4 -4015 D0PNI2 -4015 P28300 -4016 Q08397 -4017 Q9Y4K0 -4018 P08519 -4023 P06858 -4025 A5JUY4 -4025 E7EMJ3 -4025 P22079 -4026 B7Z8W0 -4026 B7ZLW0 -4026 Q93052 -4033 Q12912 -4034 O75427 -4035 Q07954 -4035 Q59FG2 -4036 P98164 -4036 Q7Z5C0 -4036 Q7Z5C1 -4037 O75074 -4038 O75096 -4040 O75581 -4041 O75197 -4041 Q9UES7 -4043 P30533 -4045 Q13449 -4046 B3KPP1 -4046 B3KRR6 -4046 E9PBV6 -4046 E9PFP3 -4046 P33241 -4047 B2R694 -4047 B4DJZ9 -4047 E9PEI9 -4047 G5E9Q9 -4047 P48449 -4048 P09960 -4049 P01374 -4049 Q5STV3 -4050 Q06643 -4050 Q52LU8 -4050 Q5STB2 -4051 B7Z8Z3 -4051 Q08477 -4052 B7ZLY3 -4052 Q14766 -4053 Q14767 -4054 B9EG76 -4054 Q8WYU6 -4054 Q9NS15 -4055 P36941 -4056 Q16873 -4057 B7Z4X2 -4057 P02788 -4058 B4DL89 -4058 E9PFX4 -4058 P29376 -4059 P50895 -4060 P51884 -4061 Q16553 -4062 O94772 -4063 Q05CA2 -4063 Q6P2J4 -4063 Q9HBG7 -4064 Q99467 -4065 O60449 -4065 Q59H44 -4066 P12980 -4067 A8K379 -4067 P07948 -4067 Q6NUK7 -4068 O60880 -4068 Q6FGS6 -4069 B2R4C5 -4069 P61626 -4070 P09758 -4071 P30408 -4072 P16422 -4074 P20645 -4076 Q14444 -4077 Q14596 -4081 B2R805 -4081 F1T0A2 -4081 Q13394 -4082 P29966 -4084 B7ZLI6 -4084 B7ZLI7 -4084 Q05195 -4085 Q13257 -4086 Q15797 -4087 Q15796 -4087 Q53XR6 -4088 B7Z4Z5 -4088 B7Z9Q2 -4088 F5H383 -4088 P84022 -4088 Q9P0T0 -4089 Q13485 -4090 Q68DB7 -4090 Q99717 -4091 O43541 -4092 B3KYA8 -4092 B7Z773 -4092 O15105 -4093 O15198 -4094 O75444 -4097 O15525 -4099 F5GYC0 -4099 P20916 -4099 Q53ES7 -4099 Q567S4 -4100 P43355 -4101 P43356 -4102 P43357 -4103 P43358 -4104 P43359 -4105 P43360 -4107 B2R9W4 -4107 P43361 -4108 P43362 -4109 B2RAE8 -4109 P43363 -4110 G5E962 -4110 P43364 -4111 P43365 -4111 Q6FHH8 -4112 P43366 -4113 O15479 -4113 Q53G50 -4114 O15480 -4115 O15481 -4116 P61326 -4117 F1T0K6 -4117 F8VBW7 -4117 G1FL29 -4117 P20794 -4117 Q547D0 -4118 P21145 -4118 Q6FH77 -4121 P33908 -4122 P49641 -4122 Q9P1E4 -4123 Q9NTJ4 -4124 Q16706 -4124 Q49A69 -4125 A8K6A7 -4125 G5E928 -4125 O00754 -4126 O00462 -4128 P21397 -4128 Q53YE7 -4129 P27338 -4130 P78559 -4130 Q504X9 -4131 P46821 -4131 Q6PJD3 -4131 Q86X89 -4133 P11137 -4133 Q6NYC5 -4133 Q8IUX2 -4134 P27816 -4134 Q86V26 -4135 Q6ZWB8 -4135 Q96JE9 -4137 B3KTM0 -4137 P10636 -4139 Q9P0L2 -4140 P27448 -4140 Q86TT8 -4140 Q86U11 -4141 P56192 -4142 P04201 -4143 Q00266 -4144 P31153 -4145 B3KNZ9 -4145 F1T0G6 -4145 P42679 -4145 Q9NST8 -4146 P21941 -4147 O00339 -4147 Q8N2G3 -4148 O15232 -4149 A6NH73 -4149 P61244 -4149 Q14803 -4149 Q8TAX8 -4149 Q96CY8 -4150 G5E927 -4150 P56270 -4150 Q8IUI2 -4150 Q8NFN7 -4151 P02144 -4152 A8K654 -4152 B4DI41 -4152 B4DUR3 -4152 B4DXJ5 -4152 Q9UIS9 -4153 P11226 -4153 Q5SQS3 -4154 E9PBW7 -4154 Q86UV8 -4154 Q86UV9 -4154 Q96P92 -4154 Q96RE3 -4154 Q9NR56 -4155 P02686 -4157 Q01726 -4157 Q1JUL4 -4158 A8K016 -4158 Q01718 -4159 P41968 -4160 P32245 -4161 P33032 -4162 P43121 -4163 P23508 -4166 Q9GZX3 -4168 B2R9S6 -4168 B7ZAV1 -4168 E9PH77 -4168 F5H091 -4168 P10911 -4170 C8YZ26 -4170 Q07820 -4171 P49736 -4172 P25205 -4173 B3KMX0 -4173 B4DLA6 -4173 P33991 -4174 B1AHB0 -4174 P33992 -4175 Q14566 -4176 A4D2A2 -4176 P33993 -4179 P15529 -4184 P49901 -4184 Q5T7P5 -4185 O75078 -4188 Q99750 -4189 Q6FIF1 -4189 Q9UBS3 -4190 B4DUN2 -4190 B7Z3I7 -4190 F5H098 -4190 P40925 -4191 P40926 -4192 P21741 -4193 Q00987 -4194 O15151 -4194 Q2M2Y2 -4194 Q32SL2 -4194 Q59FS6 -4199 P48163 -4200 B2R8J2 -4200 P23368 -4200 Q9BWL6 -4201 Q16626 -4204 D3YJ43 -4204 P51608 -4204 Q59FJ6 -4205 B4DFQ7 -4205 Q02078 -4205 Q7Z6C9 -4207 Q02080 -4208 C9JMZ0 -4208 D7F7N5 -4208 D8L7E9 -4208 F8W7V7 -4208 Q06413 -4209 Q14814 -4210 D2DTW2 -4210 O15553 -4211 O00470 -4212 B3KP98 -4212 B3KPD8 -4212 B3KPQ6 -4212 B7Z6F6 -4212 O14770 -4212 Q96DI2 -4214 Q13233 -4215 Q99759 -4216 Q9P1M2 -4216 Q9Y6R4 -4217 Q99683 -4218 P61006 -4221 O00255 -4221 Q9GZQ5 -4222 A8MWF9 -4222 P50221 -4222 Q15069 -4223 P50222 -4224 Q16819 -4225 Q16820 -4232 Q5EB52 -4233 A1L467 -4233 P08581 -4234 Q53FS9 -4234 Q9UBP6 -4236 P55081 -4237 P55001 -4237 Q5JXY0 -4238 B4DKA1 -4238 P55082 -4239 A8MVM2 -4239 B4E317 -4239 P55083 -4240 Q08431 -4241 P08582 -4241 Q53XS6 -4242 B4DLT6 -4242 O00587 -4245 P26572 -4246 O75556 -4247 Q10469 -4248 Q09327 -4249 Q09328 -4250 Q13296 -4253 G3XAC5 -4253 O15320 -4253 Q4G155 -4253 Q59FD2 -4254 P21583 -4255 B4DEE8 -4256 P08493 -4257 P10620 -4258 D6RBB5 -4258 Q99735 -4259 O14880 -4261 P33076 -4261 Q66X48 -4267 A6NIW1 -4267 P14209 -4277 Q29980 -4281 O15344 -4282 P14174 -4283 Q07325 -4284 P30301 -4285 Q99797 -4286 B4DJL2 -4286 B4DNC7 -4286 D3K197 -4286 E9PFN0 -4286 O75030 -4286 Q8WYR3 -4287 D6RDL9 -4287 E9PB63 -4287 P54252 -4288 P46013 -4289 B4DG30 -4289 Q9UL63 -4291 B2RD48 -4291 P58340 -4291 Q2TLE3 -4291 Q2TLE4 -4291 Q2TLE5 -4291 Q5HYH4 -4291 Q8N8F8 -4291 Q96MH1 -4292 B4DI13 -4292 B4DQ11 -4292 E9PCU2 -4292 P40692 -4292 Q5GJ64 -4293 P80192 -4293 Q8NEB1 -4294 Q02779 -4295 B7ZLR7 -4295 E9PDN2 -4295 P12872 -4296 Q16584 -4297 E9PQG7 -4297 Q03164 -4298 Q03111 -4299 B4DTU1 -4299 E9PBM3 -4299 P51825 -4299 Q14C88 -4300 P42568 -4300 Q6MZE2 -4300 Q8IVB0 -4301 P55196 -4302 P55198 -4303 P98177 -4306 B0ZBF5 -4306 B0ZBF6 -4306 P08235 -4306 Q2NKL1 -4308 D9IDV2 -4308 D9IDV3 -4308 F8W865 -4308 Q6PE48 -4308 Q7Z4N2 -4311 P08473 -4312 B4DN15 -4312 P03956 -4312 Q53G95 -4313 E9PE45 -4313 P08253 -4314 P08254 -4316 P09237 -4317 P22894 -4318 P14780 -4319 P09238 -4320 B3KQS8 -4320 P24347 -4321 P39900 -4322 A8K846 -4322 P45452 -4322 Q53H33 -4323 P50281 -4324 P51511 -4325 P51512 -4326 Q8IWC3 -4326 Q9ULZ9 -4327 Q99542 -4329 Q02252 -4330 Q10571 -4331 G3V1U8 -4331 P51948 -4332 P41218 -4332 Q5VUU6 -4335 Q99583 -4336 Q13875 -4337 Q9NZB8 -4338 O96007 -4338 O96033 -4340 E9PGF0 -4340 F8W9D5 -4340 Q16653 -4340 Q29ZN8 -4340 Q5SSB8 -4340 Q5STL9 -4342 P00540 -4343 Q9HCE1 -4345 P41217 -4350 G5E9E2 -4350 P29372 -4350 Q1W6H1 -4350 Q5J9I4 -4351 P34949 -4352 P40238 -4353 P05164 -4354 B4DZV5 -4354 B4E325 -4354 G3XAI1 -4354 Q00013 -4354 Q2TSB6 -4354 Q5J7V5 -4355 Q14168 -4356 Q13368 -4357 P25325 -4357 Q6FHN9 -4358 P39210 -4359 P25189 -4360 P22897 -4361 P49959 -4361 Q05D78 -4363 P33527 -4430 B0I1S9 -4430 O43795 -4435 Q99966 -4436 P43246 -4437 P20585 -4438 O15457 -4439 O43196 -4440 B3KN16 -4440 O43347 -4477 P08118 -4478 P26038 -4481 P21757 -4482 Q9UJ68 -4485 G3XAK1 -4485 P26927 -4485 Q53GN8 -4486 B4E058 -4486 Q04912 -4487 P28360 -4488 P35548 -4489 P04731 -4490 P07438 -4490 Q86YX0 -4493 P04732 -4494 P04733 -4495 P13640 -4496 P80294 -4499 Q8N339 -4501 P80297 -4502 P02795 -4504 P25713 -4507 Q13126 -4508 P00846 -4508 Q0ZFE3 -4509 P03928 -4509 Q85BD0 -4512 P00395 -4512 Q7GXY8 -4513 P00403 -4513 Q7GXZ8 -4514 P00414 -4514 Q7GIM7 -4515 P56278 -4519 P00156 -4519 Q0ZFD6 -4520 Q14872 -4521 P36639 -4521 Q7Z7N6 -4522 G3V2B8 -4522 P11586 -4524 P42898 -4524 Q59GJ6 -4524 Q8IU67 -4528 P46199 -4528 Q6P1N2 -4534 Q13496 -4535 P03886 -4535 Q85KV6 -4536 P03891 -4536 Q7GXY9 -4537 P03897 -4537 Q7GXZ5 -4538 P03905 -4538 Q85L09 -4539 P03901 -4539 Q7GXZ4 -4540 P03915 -4540 Q7GXZ2 -4541 P03923 -4541 Q7GXZ1 -4542 O00160 -4542 Q4LE34 -4543 P48039 -4544 P49286 -4547 P55157 -4548 Q99707 -4552 Q9UBK8 -4580 Q13505 -4582 A5YRU5 -4582 A5YRU7 -4582 A5YRV0 -4582 A5YRV2 -4582 A6ZID6 -4582 A6ZID7 -4582 A6ZID9 -4582 A6ZIE0 -4582 A6ZIE4 -4582 A6ZIE6 -4582 B1AVQ5 -4582 B1AVR0 -4582 B6ECB3 -4582 P15941 -4582 Q0VAP5 -4582 Q0VAP6 -4582 Q7Z538 -4582 Q7Z550 -4582 Q7Z551 -4583 Q02817 -4585 A0T3F4 -4585 E9PDY6 -4585 Q99102 -4588 Q6W4X9 -4589 Q8TAX7 -4591 A8K0V9 -4591 A8K8U4 -4591 O94972 -4593 O15146 -4594 B2R6K1 -4594 P22033 -4595 E5KP25 -4595 E5KP26 -4595 E5KP27 -4595 E5KP28 -4595 Q9UIF7 -4597 P53602 -4598 B2RDU6 -4598 Q03426 -4599 B2RDA5 -4599 B3KU10 -4599 P20591 -4600 P20592 -4601 P50539 -4601 Q96E53 -4602 E9PI07 -4602 E9PLZ5 -4602 E9PNA4 -4602 E9PNL6 -4602 E9PRS2 -4602 P10242 -4602 Q14025 -4602 Q708E9 -4603 P10243 -4603 Q495F9 -4604 G3XAE8 -4604 Q00872 -4604 Q86TA8 -4605 P10244 -4606 Q14324 -4607 A5PL00 -4607 A5YM48 -4607 Q14896 -4608 Q13203 -4609 P01106 -4610 B4DJH2 -4610 P12524 -4613 P04198 -4613 Q53XS5 -4615 B4DQ60 -4615 B4DQ72 -4615 Q99836 -4616 O75293 -4617 P13349 -4618 P23409 -4619 P12882 -4620 Q567P6 -4620 Q9UKX2 -4621 P11055 -4621 Q5GJ67 -4622 Q9Y623 -4624 D9YZU2 -4624 P13533 -4625 P12883 -4626 P13535 -4627 P35579 -4627 Q60FE2 -4628 P35580 -4628 Q6PK16 -4628 Q9BWG0 -4629 D2JYH7 -4629 P35749 -4629 Q3MIV8 -4629 Q3MNF0 -4629 Q3MNF1 -4632 P05976 -4633 P10916 -4633 Q6IB42 -4634 P08590 -4635 P12829 -4636 Q02045 -4637 P60660 -4638 Q15746 -4638 Q6P2N0 -4638 Q9UBY6 -4640 Q9UBC5 -4641 O00159 -4642 O94832 -4643 Q12965 -4643 Q4KMR3 -4644 A8CDT9 -4644 Q9UES4 -4644 Q9Y4I1 -4645 Q7Z7A5 -4645 Q9H6Y6 -4645 Q9ULV0 -4646 Q9UM54 -4647 B9A012 -4647 F8VUN5 -4647 Q13402 -4648 Q6PIF6 -4649 B2RTY4 -4650 B0I1T6 -4650 Q13459 -4650 Q4LE74 -4650 Q8WVD2 -4651 Q9HD67 -4653 Q99972 -4654 P15172 -4656 P15173 -4659 B2RAH5 -4659 B4DZ09 -4659 F8VWB4 -4659 O14974 -4660 E1CKY7 -4660 O60237 -4660 Q2TAI8 -4661 Q01538 -4661 Q7Z5W2 -4664 Q13506 -4665 Q15742 -4666 B2R4P8 -4666 F8VU71 -4666 Q13765 -4668 P17050 -4669 P54802 -4670 P52272 -4671 B7ZLE8 -4671 E9PHD1 -4671 Q13075 -4671 Q8TDZ4 -4673 P55209 -4674 Q9ULW6 -4675 Q8IYV1 -4675 Q99457 -4676 Q99733 -4677 O43776 -4678 B4DQP3 -4678 F5H3J2 -4678 P49321 -4678 Q5T626 -4680 P40199 -4681 P41271 -4682 P53384 -4683 O60934 -4684 P13591 -4685 O15394 -4686 Q09161 -4688 B4DKQ7 -4688 B4DQA7 -4688 E9PHJ2 -4688 E9PHX3 -4688 P19878 -4689 A8K4F9 -4689 Q15080 -4690 B7Z751 -4690 P16333 -4691 B3KM80 -4691 P19338 -4692 Q99608 -4693 Q00604 -4694 O15239 -4694 Q6IBB5 -4695 D6RJD6 -4695 O43678 -4696 O95167 -4696 Q6FGG4 -4697 O00483 -4698 Q16718 -4700 P56556 -4701 O95182 -4702 B1AM93 -4702 P51970 -4703 P20929 -4703 Q05C45 -4703 Q14214 -4703 Q96MF8 -4704 Q16795 -4705 O95299 -4706 O14561 -4707 O75438 -4708 A4D1T5 -4708 O95178 -4709 O43676 -4709 Q6IB80 -4710 B2RUY3 -4710 O95168 -4711 O43674 -4711 Q561V6 -4712 O95139 -4712 Q5VYT2 -4713 P17568 -4714 O95169 -4715 Q9Y6M9 -4716 A8K761 -4716 O96000 -4717 O43677 -4718 E9PNU8 -4718 E9PRB2 -4718 O95298 -4718 Q549M5 -4719 B4DIN9 -4719 B4DJA0 -4719 B4DPG1 -4719 B4DUC1 -4719 E5KRK5 -4719 E7ENF3 -4719 P28331 -4720 B7Z792 -4720 O75306 -4722 O75489 -4723 E5KNH5 -4723 P49821 -4724 O43181 -4725 O43920 -4725 Q6IBA0 -4726 O75380 -4726 Q6IBC4 -4728 O00217 -4729 P19404 -4731 P56181 -4733 Q9Y295 -4734 P46934 -4735 Q15019 -4736 P62906 -4738 Q15843 -4739 A8K9G7 -4739 G5E9Y9 -4739 Q14511 -4739 Q5XKI0 -4741 E9PBF7 -4741 P07197 -4741 Q9UK51 -4744 P12036 -4745 B3KXR2 -4745 Q92832 -4747 B3KXJ0 -4747 P07196 -4747 Q8TCR7 -4750 G5E9Z3 -4750 Q5JXL9 -4750 Q96PY6 -4751 P51955 -4752 P51956 -4752 Q6ZN64 -4753 B7Z2U7 -4753 B7Z5Q4 -4753 B7Z625 -4753 B7Z9U3 -4753 Q96JS2 -4753 Q99435 -4756 B7ZKM9 -4756 B7ZKN0 -4756 Q59FP8 -4756 Q92859 -4758 Q5JQI0 -4758 Q99519 -4759 Q9Y3R4 -4760 F1T0E1 -4760 Q13562 -4761 Q15784 -4762 F1T0H3 -4762 Q92886 -4763 P21359 -4763 Q14931 -4771 P35240 -4772 B5B2M5 -4772 B5B2M8 -4772 B5B2M9 -4772 O95644 -4772 Q2M1S3 -4773 B5B2N8 -4773 B5B2N9 -4773 B5B2P3 -4773 Q13469 -4774 B4DRJ3 -4774 B4DS53 -4774 F5H0R0 -4774 F8W8W3 -4774 Q12857 -4775 B5B2S0 -4775 B5B2S1 -4775 Q12968 -4776 Q14934 -4778 A8K3E0 -4778 Q16621 -4779 Q14494 -4779 Q8NF22 -4780 B4E338 -4780 E9PGJ7 -4780 Q16236 -4781 O00712 -4781 Q5VW28 -4781 Q5VW29 -4781 Q6ZNF9 -4782 B7Z4T6 -4782 P08651 -4783 Q16649 -4784 Q14938 -4790 P19838 -4791 A8K9D9 -4791 Q00653 -4792 P25963 -4793 Q15653 -4794 O00221 -4794 Q96F31 -4795 A8K778 -4795 Q5ST96 -4795 Q5STV4 -4795 Q5STV6 -4795 Q9UBC1 -4796 Q96HA7 -4798 Q6P4R8 -4799 A0JLR2 -4799 Q12986 -4800 P23511 -4801 P25208 -4802 B4DUS6 -4802 B4DW63 -4802 F8VWM3 -4802 Q13952 -4802 Q59GY4 -4802 Q5T6K9 -4803 P01138 -4804 P08138 -4807 Q02575 -4807 Q5T203 -4808 Q02577 -4809 P55769 -4809 Q6FHM6 -4810 Q6T4R5 -4811 P14543 -4814 Q92982 -4815 Q9NZG7 -4817 B1AQP4 -4817 B7Z410 -4817 Q86X76 -4818 Q16617 -4820 P30414 -4821 O95096 -4824 Q99801 -4825 P78426 -4826 Q16517 -4828 P08949 -4829 E9KL38 -4829 P28336 -4830 P15531 -4831 P22392 -4831 Q6FHN3 -4832 Q13232 -4833 O00746 -4835 P16083 -4836 P30419 -4837 P40261 -4837 Q6FH49 -4838 Q96S42 -4839 P46087 -4841 B7Z4C2 -4841 F5GYZ3 -4841 Q15233 -4842 A0PJJ7 -4842 B3VK56 -4842 B4DG68 -4842 E9PH30 -4842 O75713 -4842 P29475 -4843 P35228 -4846 A0S0A6 -4846 A0S0A7 -4846 A0S0A8 -4846 E9PFR2 -4846 P29474 -4848 B2RDX7 -4848 B3KTL6 -4848 Q9NZN8 -4849 O75175 -4850 E7ET38 -4850 F8VQP3 -4850 O95628 -4851 P46531 -4852 A4D158 -4852 P01303 -4853 Q04721 -4853 Q6IQ50 -4853 Q9UFD5 -4854 Q9UM47 -4855 Q99466 -4856 P48745 -4857 D3DS81 -4857 P51513 -4858 Q9UNW9 -4860 P00491 -4861 Q99742 -4862 A2I2P5 -4862 Q99743 -4863 Q14207 -4864 O15118 -4867 O15259 -4868 O60500 -4869 P06748 -4869 Q9BYG9 -4878 P01160 -4879 P16860 -4880 E5LCN7 -4880 P23582 -4881 P16066 -4882 P20594 -4883 A8K4A5 -4883 B4DT84 -4883 E7EPG9 -4883 P17342 -4883 Q60I31 -4884 Q15818 -4885 P47972 -4886 P25929 -4887 P49146 -4889 Q15761 -4891 B4DK84 -4891 F5H741 -4891 P49281 -4892 Q86VF7 -4893 P01111 -4893 Q5U091 -4897 B7Z670 -4897 E9PDA4 -4897 Q14BM2 -4897 Q14CA1 -4897 Q92823 -4898 B1AKJ5 -4898 G3V1R5 -4898 O43847 -4898 Q6UUU9 -4899 Q16656 -4899 Q96AN2 -4900 Q92686 -4901 P54845 -4902 Q99748 -4904 P67809 -4905 P46459 -4907 B3KQI8 -4907 P21589 -4907 Q6NZX3 -4908 B7Z1T5 -4908 P20783 -4909 P34130 -4913 E5KTI5 -4913 P78549 -4914 A6NF12 -4914 P04629 -4915 Q16620 -4915 Q548C2 -4915 Q5VWE5 -4916 Q16288 -4916 Q96CY4 -4917 O00634 -4919 Q01973 -4919 Q66K77 -4920 Q01974 -4921 Q16832 -4922 P30990 -4922 Q6FH20 -4923 P30989 -4924 A8K7Q1 -4924 Q02818 -4925 D3DQX5 -4925 P80303 -4926 Q14980 -4926 Q3SYK8 -4926 Q4LE64 -4927 Q99567 -4928 P52948 -4929 F1D8N6 -4929 P43354 -4929 Q53EL4 -4931 B4DF43 -4931 B4DMC4 -4931 B4DP98 -4931 O15381 -4935 P51810 -4938 P00973 -4939 P29728 -4939 Q6PJ33 -4939 Q7Z6D0 -4940 Q9Y6K5 -4942 P04181 -4942 Q68CS0 -4943 Q3MII6 -4946 P54368 -4947 O95190 -4948 Q04671 -4951 P0CE71 -4952 Q01968 -4953 P11926 -4953 Q53TU3 -4956 Q14990 -4957 B3KSD5 -4957 B4DUU0 -4957 B4DX03 -4957 B4DX73 -4957 B4DX85 -4957 Q5BJF6 -4958 Q99983 -4967 B4E2U9 -4967 B4E3E9 -4967 E9PBM1 -4967 Q02218 -4967 Q96DD3 -4968 E5KPM5 -4968 E5KPM6 -4968 E5KPM7 -4968 E5KPM8 -4968 E5KPM9 -4968 E5KPN0 -4968 E5KPN1 -4968 O15527 -4969 A8K0R3 -4969 P20774 -4969 Q7Z532 -4973 B4DI48 -4973 G3V1I4 -4973 P78380 -4974 P23515 -4975 P47874 -4976 E5KLJ5 -4976 E5KLJ6 -4976 E5KLJ7 -4976 E5KLJ9 -4976 E5KLK0 -4976 E5KLK1 -4976 E5KLK2 -4976 O60313 -4978 A8K0Y0 -4978 Q14982 -4978 Q7Z3W6 -4982 O00300 -4983 O60890 -4985 P41143 -4986 P41145 -4987 P41146 -4988 B0FXJ1 -4988 B8K2Q5 -4988 B8Q1L8 -4988 B8Q1L9 -4988 P35372 -4988 Q6UPP1 -4990 O95475 -4990 Q6P051 -4991 P34982 -4992 O43749 -4993 O95371 -4994 P47881 -4995 P47893 -4998 B7Z8H0 -4998 Q13415 -4998 Q96F82 -4999 Q13416 -5000 A8K7H4 -5000 B7Z3D0 -5000 B7Z5F1 -5000 F5H069 -5000 O43929 -5000 Q96B14 -5001 A4D0P7 -5001 O43913 -5001 Q53FC8 -5002 Q96BI1 -5003 E9PLK8 -5003 Q8N1D0 -5004 P02763 -5005 P19652 -5007 P22059 -5008 P13725 -5009 P00480 -5010 O75508 -5013 B3KTJ4 -5013 P32242 -5015 F1T0D1 -5015 P32243 -5016 Q12889 -5016 Q86YN0 -5017 O14753 -5018 Q15070 -5018 Q2M1J6 -5019 P55809 -5020 P01178 -5021 B2R9L7 -5021 P30559 -5023 P51575 -5024 P56373 -5025 Q99571 -5026 G5E981 -5026 Q308M5 -5026 Q93086 -5027 A8K2Z0 -5027 Q4VKI2 -5028 P47900 -5029 P41231 -5030 P51582 -5031 Q15077 -5032 Q96G91 -5033 C9JL12 -5033 P13674 -5033 Q5VSQ6 -5034 P07237 -5036 Q9UQ80 -5037 D9IAI1 -5037 P30086 -5042 Q5VX58 -5042 Q9H361 -5045 P09958 -5046 P29122 -5047 P09466 -5048 P43034 -5049 A8DPS6 -5049 A8DPS7 -5049 E9PEJ5 -5049 E9PLP3 -5049 P68402 -5049 Q6IBR6 -5050 Q15102 -5051 Q99487 -5052 Q06830 -5053 P00439 -5054 B7Z4S0 -5054 F8WD53 -5054 P05121 -5055 P05120 -5058 Q13153 -5062 A8K5M4 -5062 Q13177 -5063 B1GX77 -5063 B2RCU6 -5063 O75914 -5064 O75781 -5066 P19021 -5067 Q9P232 -5068 Q06141 -5068 Q53S56 -5069 Q13219 -5069 Q7Z613 -5069 Q86YM8 -5069 Q8IWT8 -5071 O60260 -5071 Q5VVX3 -5071 Q5VVX4 -5073 B3KN69 -5073 B4DDG8 -5073 B4DWR4 -5073 O95453 -5074 Q96IZ0 -5075 P15863 -5076 Q02962 -5077 G5E9C1 -5077 P23760 -5077 Q494Z3 -5077 Q494Z4 -5078 O43316 -5079 Q02548 -5079 Q5SFM2 -5080 F1T0F8 -5080 P26367 -5080 Q66SS1 -5081 E9PFV9 -5081 P23759 -5081 Q2PJS5 -5082 Q13371 -5082 Q4VXB6 -5083 P55771 -5083 Q2L4T1 -5087 A8K5V0 -5087 B4DSC1 -5087 F5H4U9 -5087 P40424 -5087 Q53YC7 -5089 P40425 -5090 E9PB27 -5090 P40426 -5090 Q96AL5 -5091 P11498 -5092 P61457 -5093 Q15365 -5093 Q53SS8 -5094 A8K7X6 -5094 F8VYL7 -5094 G3V0E8 -5094 Q15366 -5094 Q32Q82 -5094 Q59HD4 -5094 Q68Y55 -5094 Q6IPF4 -5095 B4DPF9 -5095 C9JPQ8 -5095 P05165 -5096 B7Z2Z4 -5096 P05166 -5097 B3KQM8 -5097 Q08174 -5098 Q9BR81 -5098 Q9UN70 -5099 F5GWJ1 -5099 O60245 -5100 O95206 -5101 Q9HC56 -5104 P05154 -5105 P35558 -5106 Q16822 -5108 A2RUU9 -5108 Q15154 -5110 B7Z972 -5110 P22061 -5111 P12004 -5116 O95613 -5118 Q15113 -5119 A6NG32 -5119 Q9HD42 -5121 P48539 -5121 Q6ICS4 -5122 B7Z8T7 -5122 E9PHA1 -5122 P29120 -5125 Q92824 -5126 B1ANH9 -5126 B4DFQ3 -5126 P16519 -5126 Q5JYQ1 -5126 Q8IWA8 -5127 B7Z7C8 -5127 Q00536 -5127 Q9BRL4 -5128 A8K1U6 -5128 Q00537 -5129 Q07002 -5129 Q59G02 -5130 P49585 -5132 P20941 -5132 Q9UP22 -5133 Q15116 -5133 Q8IX89 -5134 E9PCU7 -5134 F5GYS7 -5134 Q16342 -5134 Q58HM9 -5134 Q58HN0 -5136 P54750 -5137 B3KSS6 -5137 E9PE92 -5137 Q14123 -5137 Q8NB10 -5138 F6W5Z0 -5138 O00408 -5138 Q8IW54 -5139 Q14432 -5140 A7E2E5 -5140 Q13370 -5141 P27815 -5142 Q07343 -5142 Q59GM8 -5142 Q5TEK4 -5142 Q5TEK5 -5142 Q5TEK6 -5143 O43849 -5143 P78505 -5143 Q08493 -5143 Q32MM7 -5143 Q7KYS4 -5144 Q08499 -5145 P16499 -5146 P51160 -5147 O43924 -5147 Q6IB24 -5148 P18545 -5149 Q13956 -5150 Q13946 -5151 O60658 -5152 O76083 -5153 Q01064 -5153 Q7Z364 -5154 P04085 -5155 G3XAG8 -5155 P01127 -5155 Q15354 -5156 P16234 -5157 Q15198 -5158 B4DHV7 -5158 B7Z9T9 -5158 P35913 -5159 P09619 -5159 Q59F04 -5160 A5YVE9 -5160 B7Z3T7 -5160 B7Z3X5 -5160 P08559 -5161 P29803 -5162 B4DDD7 -5162 P11177 -5163 Q15118 -5164 B3KNW0 -5164 Q15119 -5165 B4DXG6 -5165 Q15120 -5166 A4D1H4 -5166 Q16654 -5167 P22413 -5168 E9PHP7 -5168 Q13822 -5169 O14638 -5169 Q308M7 -5170 O15530 -5172 O43511 -5173 P01213 -5174 B4DPB9 -5174 E7EU02 -5174 Q5T2W1 -5175 P16284 -5176 F1T092 -5176 P36955 -5178 A7E2B8 -5178 B4DIM4 -5178 Q96Q96 -5178 Q9GZU2 -5179 P01210 -5184 A8MX47 -5184 B4DDB7 -5184 E9PCE8 -5184 P12955 -5187 O15534 -5188 O75879 -5189 O43933 -5190 Q13608 -5190 Q5T8W1 -5191 O00628 -5191 Q6FGN1 -5192 O60683 -5193 O00623 -5194 Q92968 -5195 O75381 -5196 P02776 -5197 P10720 -5198 A8K9T9 -5198 O15067 -5198 Q6P4B4 -5199 P27918 -5201 O60925 -5202 B1AQP2 -5202 Q9UHV9 -5203 Q9NQP4 -5204 Q99471 -5204 Q9C083 -5205 O43520 -5207 P16118 -5208 O60825 -5208 Q5VVQ3 -5209 Q16875 -5209 Q5VX15 -5209 Q5VX18 -5210 Q16877 -5211 P17858 -5211 Q7L2M7 -5212 A1A526 -5212 E9PF47 -5212 Q6UXI7 -5213 P08237 -5214 B3KS15 -5214 Q01813 -5214 Q5VSR7 -5216 P07737 -5216 Q53Y44 -5217 P35080 -5218 O94921 -5222 B7ZW62 -5222 P00790 -5223 P18669 -5223 Q6FHU2 -5224 P15259 -5225 B4DVZ3 -5225 P20142 -5226 A8K2Y9 -5226 P52209 -5228 P49763 -5228 Q53XY6 -5228 Q86TW6 -5229 P53609 -5230 A8K4W6 -5230 P00558 -5232 P07205 -5236 B4DDQ8 -5236 B4DPV0 -5236 B7Z6C2 -5236 P36871 -5238 B4DX94 -5238 D6RF12 -5238 E9PF86 -5238 O95394 -5239 Q15124 -5241 P06401 -5243 A4D1D2 -5243 P08183 -5244 A4D1D5 -5244 P21439 -5245 A8K401 -5245 P35232 -5250 Q00325 -5250 Q6MZF9 -5251 P78562 -5252 O43189 -5253 O75151 -5255 B7ZL07 -5255 P46020 -5256 P46019 -5257 Q93100 -5260 Q16816 -5261 P15735 -5264 A8MTS8 -5264 O14832 -5265 E9KL23 -5265 P01009 -5266 P19957 -5267 P29622 -5268 P36952 -5269 P35237 -5270 B4DIF2 -5270 P07093 -5271 P50452 -5271 Q8N178 -5272 P50453 -5273 P48595 -5274 Q99574 -5275 Q9UIV8 -5276 O75830 -5277 B4E0V2 -5277 P37287 -5279 Q92535 -5281 Q07326 -5281 Q6IB04 -5283 Q14442 -5284 P01833 -5286 O00443 -5287 A2RUF7 -5287 O00750 -5288 O75747 -5289 Q8NEB9 -5290 P42336 -5291 P42338 -5292 P11309 -5293 A7E2E0 -5293 O00329 -5294 A4D0Q6 -5294 P48736 -5295 B3KT19 -5295 E7EX19 -5295 P27986 -5296 O00459 -5297 B4DYG5 -5297 P42356 -5297 Q4LE69 -5298 Q9UBF8 -5300 Q13526 -5303 B3KXM0 -5303 F5H1P5 -5303 Q9Y237 -5304 P12273 -5305 P48426 -5306 Q00169 -5307 P78337 -5308 Q99697 -5309 O75364 -5310 P98161 -5311 Q13563 -5311 Q9UEU6 -5313 P30613 -5314 P08F94 -5315 B4DNK4 -5315 B4DUU6 -5315 P14618 -5316 P55347 -5316 Q6PKH2 -5316 Q96I87 -5317 Q13835 -5318 A0AV37 -5318 Q99959 -5319 P04054 -5320 P14555 -5321 P47712 -5322 P39877 -5324 B4DLC2 -5324 Q6DJT9 -5325 A1YLA1 -5325 A1YLA2 -5325 Q9UM63 -5326 Q9UPG8 -5327 P00750 -5328 P00749 -5328 Q59GZ8 -5329 Q03405 -5330 Q00722 -5330 Q59F77 -5331 G5E960 -5331 Q01970 -5331 Q8N1A4 -5332 E2QRH8 -5332 Q15147 -5333 A8K8F9 -5333 B3KR14 -5333 P51178 -5334 Q15111 -5335 A2A284 -5335 P19174 -5335 Q4LE43 -5335 Q9UFY1 -5336 P16885 -5337 Q13393 -5337 Q59EA4 -5338 O14939 -5339 Q15149 -5340 P00747 -5340 Q5TEH5 -5341 P08567 -5342 Q02325 -5343 Q02325 -5345 B4E1B7 -5345 P08697 -5346 O60240 -5347 P53350 -5348 O00168 -5349 C9JDU2 -5349 F5H174 -5349 F8WB34 -5349 Q14802 -5350 P26678 -5350 Q5R352 -5351 Q02809 -5352 O00469 -5354 A8K9L3 -5354 P60201 -5355 Q04941 -5356 O43660 -5357 Q14651 -5358 A8K579 -5358 B4DPW9 -5358 P13797 -5359 O15162 -5360 B4DDD5 -5360 B4DRB4 -5360 E7EV16 -5360 P55058 -5361 Q9UIW2 -5362 O75051 -5364 O43157 -5365 A8K920 -5365 B7Z3E6 -5365 F5H773 -5365 Q9ULL4 -5366 Q13794 -5366 Q8N589 -5367 P20382 -5368 Q13519 -5368 Q6FH16 -5371 E9PBR7 -5371 P29590 -5372 A8K003 -5372 Q92871 -5373 O15305 -5373 Q59F02 -5375 P02689 -5376 Q01453 -5376 Q6FH25 -5378 P54277 -5378 Q4VAL4 -5378 Q5FBZ3 -5378 Q5FBZ8 -5393 Q06265 -5394 Q01780 -5394 Q96G78 -5395 P54278 -5396 P54821 -5406 P16233 -5407 P54315 -5408 P54317 -5409 P11086 -5411 Q9H307 -5412 B2R4J1 -5412 O95164 -5413 Q99719 -5414 O43236 -5420 O00592 -5420 Q96N83 -5422 P09884 -5423 P06746 -5424 P28340 -5425 A4D2J4 -5425 B2R5S4 -5425 P49005 -5426 Q07864 -5427 A4FU92 -5427 B4DDE6 -5427 P56282 -5428 E5KNU5 -5428 P54098 -5429 Q9Y253 -5430 P24928 -5431 P30876 -5432 P19387 -5432 Q6FGR6 -5433 O15514 -5434 P19388 -5435 P61218 -5436 P62487 -5437 P52434 -5438 P36954 -5439 P52435 -5440 P53803 -5441 P62875 -5442 O00411 -5442 Q4G0F4 -5443 P01189 -5443 Q53T23 -5443 Q6FHC8 -5444 P27169 -5445 A4D1H7 -5445 Q15165 -5446 Q15166 -5447 P16435 -5449 P28069 -5450 Q16633 -5451 B4E029 -5451 P14859 -5452 P09086 -5453 Q03052 -5454 B3KTH8 -5454 P20265 -5455 P20264 -5456 B2RC71 -5456 P49335 -5457 Q01851 -5458 Q12837 -5459 Q15319 -5460 D2IYK3 -5460 Q01860 -5462 D5K9T1 -5462 Q06416 -5463 Q14863 -5464 Q15181 -5465 F1D8S4 -5465 Q07869 -5467 B4E3V3 -5467 B7Z3W1 -5467 E9PE18 -5467 F1D8S7 -5467 Q03181 -5468 D2KUA6 -5468 P37231 -5469 Q15648 -5470 O14830 -5471 A8K4H7 -5471 Q06203 -5471 Q59G63 -5473 P02775 -5475 O14829 -5476 B4E324 -5476 P10619 -5478 A8K220 -5478 P62937 -5479 P23284 -5480 P45877 -5481 E5KN55 -5481 Q08752 -5493 O60437 -5494 B2R8E4 -5494 P35813 -5495 O75688 -5495 Q4J6C1 -5495 Q4J6C2 -5495 Q658R4 -5496 O15355 -5496 Q6IAU5 -5498 P50336 -5499 A6NNR3 -5499 P62136 -5499 Q07161 -5500 P62140 -5501 P36873 -5502 Q13522 -5504 P41236 -5504 Q6NXS2 -5506 Q16821 -5507 Q9UQK1 -5509 O95685 -5509 Q86X09 -5510 Q15435 -5511 Q12972 -5511 Q5TEJ4 -5511 Q6ICT4 -5514 Q2L6I0 -5514 Q58F28 -5514 Q96QC0 -5515 B3KUN1 -5515 P67775 -5516 P62714 -5518 A8K7B7 -5518 P30153 -5519 A8MY67 -5519 B4DGQ6 -5519 B4DK91 -5519 B4DWW5 -5519 F8W8G1 -5519 P30154 -5520 B4E1T7 -5520 P63151 -5521 G3V149 -5521 Q00005 -5522 B7Z3Y1 -5522 Q9Y2T4 -5523 B4DNU1 -5523 Q06190 -5524 Q15257 -5525 B7Z7L2 -5525 Q15172 -5526 Q15173 -5527 B4DYJ8 -5527 F5GWP3 -5527 Q13362 -5527 Q6ZN33 -5528 Q14738 -5529 Q16537 -5530 A8W6Z7 -5530 Q08209 -5531 P60510 -5532 P16298 -5532 Q8N1F0 -5533 B4DRT5 -5533 P48454 -5534 P63098 -5535 Q96LZ3 -5536 P53041 -5537 O00743 -5538 P50897 -5538 Q6FGQ4 -5539 P01298 -5540 P50391 -5542 G3V1M9 -5542 G3V1R1 -5542 P04280 -5544 Q04118 -5545 E9PAL0 -5545 P10163 -5546 Q92733 -5546 Q96FT4 -5547 A8MU24 -5547 B3KRK5 -5547 P42785 -5549 P51888 -5549 Q6FG38 -5550 B2RAH7 -5550 P48147 -5551 P14222 -5552 P10124 -5553 A6XMW0 -5553 P13727 -5554 P02810 -5555 P02810 -5557 P49642 -5558 P49643 -5562 Q13131 -5563 P54646 -5564 Q9Y478 -5565 O43741 -5566 P17612 -5567 B1APG4 -5567 B2RB89 -5567 B4DKB0 -5567 B7ZA00 -5567 P22694 -5568 P22612 -5569 P61925 -5570 Q9C010 -5571 B4DDT7 -5571 P54619 -5571 Q8N7V9 -5573 B2R5T5 -5573 P10644 -5575 P31321 -5576 P13861 -5576 Q9BUB1 -5577 B3KY43 -5577 P31323 -5578 B5BU22 -5578 P17252 -5578 Q7Z727 -5579 P05771 -5580 Q05655 -5581 Q02156 -5582 P05129 -5583 P24723 -5584 P41743 -5585 Q16512 -5586 Q16513 -5587 Q15139 -5588 Q04759 -5589 A8K318 -5589 P14314 -5590 B7Z2J7 -5590 E9PCW2 -5590 Q05513 -5591 P78527 -5592 Q13976 -5593 Q13237 -5594 P28482 -5594 Q1HBJ4 -5594 Q499G7 -5595 P27361 -5595 Q9BWJ1 -5596 A1A4C4 -5596 P31152 -5596 Q0VG04 -5597 Q16659 -5598 Q13164 -5599 A1L4K2 -5599 P45983 -5600 Q15759 -5601 P45984 -5602 P53779 -5603 O15264 -5604 A4QPA9 -5604 Q02750 -5605 P36507 -5606 P46734 -5606 Q6FI23 -5607 B4DE43 -5607 Q13163 -5608 A8K3Y2 -5608 P52564 -5609 O14733 -5610 E9PC80 -5610 P19525 -5610 Q8IW76 -5611 A8KA82 -5611 Q13217 -5612 O43422 -5613 P51817 -5617 P01236 -5617 Q5THQ0 -5618 P16471 -5619 P04553 -5619 Q3MN80 -5620 P04554 -5620 Q1LZN1 -5621 P04156 -5621 Q53YK7 -5623 O60542 -5624 P04070 -5625 O43272 -5626 O75360 -5627 P07225 -5629 Q92786 -5630 B3KWQ6 -5630 P41219 -5631 B7ZB02 -5631 P60891 -5634 P11908 -5635 Q14558 -5636 B4E1M8 -5636 B4E329 -5636 B7ZKZ1 -5636 E7EMY2 -5636 O60256 -5638 C9JXL7 -5638 O14668 -5638 Q8NEK6 -5639 O14669 -5641 Q53XC6 -5641 Q96CY7 -5641 Q99538 -5644 P07477 -5645 P07478 -5645 Q5NV56 -5646 A8CED1 -5646 A8CED3 -5646 P35030 -5646 Q6ISJ4 -5646 Q7Z5F4 -5648 P48740 -5649 P78509 -5650 A8K0U5 -5650 B4DHX9 -5650 P49862 -5651 P98073 -5652 Q16651 -5653 Q92876 -5654 Q92743 -5655 O43240 -5657 P24158 -5660 P07602 -5662 A5PKW4 -5663 P49768 -5664 A8K8D4 -5664 P49810 -5669 P11464 -5670 P11465 -5671 Q16557 -5672 B3KQL2 -5672 Q00888 -5672 Q6P520 -5673 Q15238 -5675 Q00889 -5676 Q13046 -5678 Q00887 -5680 Q9UQ72 -5681 P11801 -5682 B4E0X6 -5682 P25786 -5683 P25787 -5684 P25788 -5685 P25789 -5685 Q567Q5 -5685 Q7Z474 -5686 B4E2V4 -5686 P28066 -5687 P60900 -5688 O14818 -5689 P20618 -5690 B7Z478 -5690 P49721 -5691 P49720 -5692 P28070 -5693 E9PAV2 -5693 P28074 -5694 P28072 -5694 Q6IAT9 -5695 E9KL30 -5695 Q99436 -5696 P28062 -5697 P10082 -5698 P28065 -5698 Q5JNW4 -5699 P40306 -5700 P62191 -5700 Q53XL8 -5701 B7Z571 -5701 P35998 -5702 P17980 -5704 A8K2M0 -5704 P43686 -5705 A8K3Z3 -5705 P62195 -5706 P62333 -5707 Q99460 -5708 Q13200 -5709 O43242 -5709 Q8N9M2 -5710 P55036 -5711 Q16401 -5713 P51665 -5714 P48556 -5715 O00233 -5716 O75832 -5716 Q8IZK9 -5717 O00231 -5718 A6NP15 -5718 O00232 -5719 Q9UNM6 -5720 A6NJG9 -5720 Q06323 -5720 Q6IBM2 -5720 Q86SZ9 -5721 Q86SZ7 -5721 Q9UL46 -5723 P78330 -5724 A8K7N8 -5724 P25105 -5725 A6NLN1 -5725 P26599 -5725 Q9BUQ0 -5726 A4D1U6 -5726 P59533 -5727 Q13635 -5727 Q59FG5 -5728 F6KD01 -5728 P60484 -5729 Q13258 -5730 P41222 -5731 P34995 -5732 P43116 -5733 B1AK19 -5733 O00325 -5733 P43115 -5734 A0PJF5 -5734 P35408 -5737 P43088 -5738 Q9P2B2 -5739 P43119 -5740 Q16647 -5741 P01270 -5742 P23219 -5743 P35354 -5744 P12272 -5744 Q53XY9 -5745 Q03431 -5745 Q0VGD7 -5746 P49190 -5747 Q05397 -5747 Q59GM6 -5747 Q658W2 -5753 Q13882 -5754 Q13308 -5756 Q12792 -5757 P06454 -5757 Q53S24 -5763 P20962 -5764 P21246 -5768 O00391 -5768 Q13876 -5770 A8K3M3 -5770 P18031 -5771 A8K3N4 -5771 P17706 -5771 Q59F91 -5771 Q96AU5 -5774 B7Z3V3 -5774 B7Z9V1 -5774 B7ZA03 -5774 E7EN99 -5774 E9PGU7 -5774 P26045 -5774 Q8N4S3 -5775 P29074 -5777 G3V0F8 -5777 P29350 -5777 Q53XS4 -5777 Q9UK67 -5778 B4DZD9 -5778 P35236 -5778 Q5SXQ0 -5780 P43378 -5781 Q06124 -5782 A4D1C5 -5782 B4DKY2 -5782 B4E105 -5782 E9PBR5 -5782 E9PEH9 -5782 Q05209 -5783 Q12923 -5784 A8K6H6 -5784 Q15678 -5786 P18433 -5787 B7ZKS8 -5787 F5H3G6 -5787 P23467 -5787 Q86VA4 -5788 P08575 -5788 Q0VAE8 -5789 F5GWT7 -5789 P23468 -5789 Q2HXI4 -5789 Q3KPI9 -5789 Q3KPJ0 -5789 Q3KPJ1 -5789 Q3KPJ2 -5789 Q59H90 -5790 Q14761 -5791 P23469 -5791 Q5VWH4 -5791 Q96P81 -5792 P10586 -5793 P23470 -5793 Q49A02 -5794 C9JCH2 -5794 Q9HD43 -5795 Q12913 -5795 Q6P4H4 -5795 Q9NPR5 -5796 B4DHC3 -5796 Q15262 -5796 Q59EZ1 -5796 Q86WJ2 -5797 A7MBN1 -5797 P28827 -5798 B4DK12 -5798 F5GZS3 -5798 Q16849 -5798 Q6NSL1 -5798 Q96IA0 -5799 E9PC57 -5799 Q92932 -5799 Q9Y4I6 -5800 Q16827 -5800 Q9UBF0 -5800 Q9UBT5 -5801 B7Z3J1 -5801 F5GXR7 -5801 Q15256 -5801 Q7Z2V8 -5802 Q13332 -5802 Q59FX6 -5802 Q8NHS7 -5803 B4DFE7 -5803 C9JFM0 -5803 P23471 -5805 Q03393 -5806 P26022 -5810 O60671 -5813 Q00577 -5814 Q96QR8 -5816 P20472 -5817 P15151 -5818 Q15223 -5819 Q92692 -5822 Q15269 -5824 P40855 -5825 P28288 -5826 O14678 -5827 Q9NR77 -5828 P28328 -5829 P49023 -5830 B4DR50 -5830 B4DZ45 -5830 P50542 -5831 A6NFM2 -5831 P32322 -5831 Q9HBQ4 -5832 P54886 -5833 F5H8B1 -5833 Q99447 -5834 P11216 -5836 F5H816 -5836 P06737 -5837 A6NDY6 -5837 P11217 -5859 P47897 -5860 P09417 -5861 P62820 -5861 Q5U0I6 -5862 B4DMQ5 -5862 P61019 -5863 O15211 -5864 P20336 -5865 P20337 -5866 Q8TBN0 -5867 P20338 -5868 P20339 -5868 Q6FI44 -5869 B4DKD7 -5869 P61020 -5870 B7Z772 -5870 F5H668 -5870 P20340 -5870 Q1W5D8 -5870 Q53ET8 -5871 Q12851 -5872 P51153 -5873 A2RU94 -5873 P51159 -5874 O00194 -5875 Q92696 -5876 P53611 -5876 Q6IB63 -5877 P47224 -5877 Q53EV1 -5878 F8W1H5 -5878 P51148 -5879 A4D2P0 -5879 A4D2P1 -5879 P63000 -5880 P15153 -5881 P60763 -5883 Q99638 -5884 O75943 -5885 O60216 -5886 P54725 -5887 B7Z4W4 -5887 G5E9P0 -5887 P54727 -5887 Q7Z5K8 -5888 Q06609 -5888 Q6ZNA8 -5889 O43502 -5889 O43503 -5890 O15315 -5891 Q9UQ07 -5892 B4DJU7 -5892 O75771 -5893 P43351 -5893 Q3MI84 -5893 Q5DR82 -5894 P04049 -5896 P15918 -5897 P55895 -5898 P11233 -5899 P11234 -5899 Q53T32 -5899 Q6ZS74 -5900 Q12967 -5900 Q6KH11 -5900 Q6PCE1 -5900 Q6ZSD5 -5900 Q8N4Y1 -5901 A8K3Z8 -5901 P62826 -5902 P43487 -5903 P49792 -5905 P46060 -5906 A8KAH9 -5906 P62834 -5908 B4DQI8 -5908 B4DW74 -5908 B4DW94 -5908 B7ZAY2 -5908 P61224 -5909 P47736 -5909 Q7Z5S8 -5910 B3KNU0 -5910 E9PH06 -5910 G5E9P9 -5910 P52306 -5910 Q499L7 -5910 Q4QQI8 -5910 Q6U7G8 -5910 Q9BUX6 -5911 P10114 -5912 P61225 -5912 Q5JQ44 -5913 Q13702 -5914 A8K840 -5914 B8Y636 -5914 F1D8N9 -5914 P10276 -5914 Q6I9R7 -5915 F1D8S6 -5915 P10826 -5915 Q5QHG3 -5916 A8K3H3 -5916 B7Z492 -5916 B7Z4B4 -5916 B7Z4F1 -5916 F1D8P1 -5916 P13631 -5917 P54136 -5918 P49788 -5919 Q7LE02 -5919 Q99969 -5920 Q9UL19 -5921 P20936 -5921 Q59GK3 -5922 Q15283 -5923 A8K270 -5923 F8VPA5 -5923 Q13972 -5923 Q8IUU5 -5924 O14827 -5924 Q68DX5 -5925 P06400 -5926 P29374 -5926 Q05CG0 -5927 P29375 -5928 Q09028 -5929 B4DLF8 -5929 Q15291 -5930 Q7Z6E9 -5931 Q16576 -5931 Q5JP00 -5931 Q6FHQ0 -5932 A6NKN2 -5932 Q99708 -5933 P28749 -5934 Q08999 -5934 Q8NE70 -5935 P98179 -5936 B4E1U0 -5936 E7EQS3 -5936 Q9BWF3 -5937 P29558 -5939 Q15434 -5940 Q15414 -5947 E7EWV0 -5947 F2Z2F2 -5947 P09455 -5948 P50120 -5949 P10745 -5949 Q8IXN0 -5950 P02753 -5954 Q15293 -5955 Q14257 -5956 P04000 -5957 P35243 -5957 Q53XL0 -5959 Q92781 -5961 P23942 -5962 B0YJ88 -5962 P35241 -5962 Q6PKD3 -5965 P46063 -5966 Q04864 -5967 A8K7G6 -5967 P05451 -5967 Q4ZG28 -5968 P48304 -5968 Q6ICS1 -5970 Q04206 -5971 Q01201 -5972 P00797 -5973 P51606 -5976 Q92900 -5977 Q92785 -5978 Q13127 -5979 P07949 -5979 Q9BTX6 -5980 O60673 -5981 P35251 -5982 P35250 -5982 Q75MT5 -5983 C9JU95 -5983 P40938 -5984 P35249 -5985 A8MZ62 -5985 F8W9B4 -5985 P40937 -5985 Q59GW7 -5986 Q8N9R1 -5986 Q9Y644 -5987 P14373 -5988 O75677 -5989 P22670 -5990 P48378 -5991 P48380 -5992 B2RDW4 -5992 Q33E94 -5993 P48382 -5994 O00287 -5995 P47804 -5996 Q08116 -5997 P41220 -5998 B3KWG8 -5998 P49796 -5998 Q5VZ06 -5998 Q8WV02 -5998 Q9NX91 -5999 A7XA58 -5999 A7XA59 -5999 A7YVV7 -5999 B1APZ3 -5999 P49798 -6000 P49802 -6001 O43665 -6002 O14924 -6003 O14921 -6004 O15492 -6005 Q02094 -6005 Q96E98 -6006 P18577 -6007 Q02161 -6007 Q1KT12 -6007 Q5XLT3 -6007 Q7RU08 -6009 Q15382 -6010 P08100 -6011 Q15835 -6013 P04808 -6014 Q99578 -6015 Q06587 -6016 Q5VY90 -6016 Q92963 -6017 P12271 -6018 Q13129 -6019 P04090 -6035 P07998 -6036 P10153 -6037 P12724 -6038 P34096 -6038 Q53XB4 -6039 Q6IB39 -6039 Q93091 -6041 Q05823 -6041 Q5W0L2 -6045 Q99496 -6046 A2AAU0 -6046 P25440 -6046 Q63HQ9 -6046 Q658Y7 -6047 D6RF58 -6047 P78317 -6048 Q99942 -6049 B4DDP0 -6049 Q5W0H0 -6049 Q9Y252 -6050 P13489 -6051 Q9H4A4 -6059 P61221 -6091 B2RXI1 -6091 E9PD49 -6091 Q1RMC7 -6091 Q1RMC8 -6091 Q9Y6N7 -6092 Q19AB5 -6092 Q9HCK4 -6093 Q13464 -6094 Q03395 -6095 P35398 -6096 Q58EY0 -6096 Q92753 -6097 F1D8P6 -6097 P51449 -6097 Q6I9R9 -6098 P08922 -6100 Q8TA86 -6101 P56715 -6102 O75695 -6103 E9PE28 -6103 Q3KN84 -6103 Q92834 -6117 P27694 -6118 P15927 -6119 A4D105 -6119 P35244 -6120 Q53TV9 -6120 Q96AT9 -6121 Q16518 -6122 B3KS36 -6122 P39023 -6122 Q96QL0 -6123 Q92901 -6124 P36578 -6125 A2RUM7 -6125 P46777 -6128 Q02878 -6128 Q8TBK5 -6129 P18124 -6130 P62424 -6130 Q5T8U4 -6132 P62917 -6133 P32969 -6133 Q53Z07 -6134 P27635 -6135 P62913 -6135 Q5VVD0 -6136 P30050 -6137 A8K4C8 -6137 B4DLX3 -6137 F5H1S2 -6137 P26373 -6138 P61313 -6139 B4E3C2 -6139 P18621 -6141 Q07020 -6142 Q02543 -6143 P84098 -6144 P46778 -6144 Q6IAX2 -6146 P35268 -6147 P62750 -6150 Q16540 -6152 P83731 -6154 P61254 -6155 P61353 -6156 P62888 -6157 P46776 -6158 B4DEP9 -6158 C9JB50 -6158 E9PB24 -6158 G5E9L2 -6158 P46779 -6159 P47914 -6160 B7Z4K2 -6160 P62899 -6160 Q6IRZ0 -6161 P62910 -6164 P49207 -6165 P18077 -6166 Q969Q0 -6167 P61927 -6168 P61513 -6169 P63173 -6170 P62891 -6171 P62945 -6173 P83881 -6175 P05388 -6176 A6NIB2 -6176 P05386 -6181 P05387 -6181 Q6FG96 -6182 P52815 -6183 O15235 -6184 P04843 -6185 P04844 -6185 Q5JYR6 -6187 P15880 -6188 P23396 -6189 P61247 -6191 B2R491 -6191 P62701 -6192 P22090 -6193 P46782 -6194 A2A3R6 -6194 P62753 -6195 Q15418 -6196 Q15349 -6197 P51812 -6198 P23443 -6199 Q9UBS0 -6201 P62081 -6201 Q57Z92 -6202 P62241 -6202 Q5JR94 -6203 A9C4C1 -6203 P46781 -6204 P46783 -6205 P62280 -6206 P25398 -6207 P62277 -6208 P62263 -6209 P62841 -6210 B2R4W8 -6210 P62244 -6217 P62249 -6218 P08708 -6218 P0CW22 -6222 P62269 -6223 B0ZBD0 -6223 P39019 -6224 B4DW28 -6224 P60866 -6227 P63220 -6227 Q6FGH5 -6228 A8K517 -6228 P62266 -6229 E7EPK6 -6229 P62847 -6229 Q5T0P8 -6230 P62851 -6231 P62854 -6232 P42677 -6232 Q5T4L6 -6233 B2RDW1 -6233 P62979 -6234 B2R4R9 -6234 P62857 -6235 A8MZ73 -6235 P62273 -6236 P55042 -6237 P10301 -6238 Q9P2E9 -6239 Q92766 -6240 P23921 -6241 P31350 -6242 Q9BST9 -6247 O15537 -6247 Q0QD39 -6248 Q92681 -6249 B3KXA5 -6249 P30622 -6251 A8KA46 -6251 Q15404 -6252 A8K3B9 -6252 Q16799 -6253 O75298 -6253 Q7RTM9 -6253 Q96CG9 -6256 F1D8Q5 -6256 P19793 -6256 Q6P3U7 -6257 P28702 -6257 Q5STP9 -6258 F1D8Q7 -6258 P48443 -6259 P34925 -6259 Q59FQ5 -6259 Q8WTZ8 -6261 P21817 -6262 Q92736 -6263 Q15413 -6271 B2R5D9 -6271 P23297 -6272 B4DWI3 -6272 Q99523 -6273 P29034 -6274 P33764 -6275 P26447 -6276 P33763 -6277 P06703 -6278 P31151 -6279 P05109 -6280 P06702 -6281 P60903 -6282 P31949 -6283 P80511 -6284 Q99584 -6285 P04271 -6286 P25815 -6288 P02735 -6289 G3XAK9 -6289 P02735 -6291 P35542 -6293 Q8N1B4 -6294 A0AV56 -6294 B7Z5B6 -6294 B7ZLP6 -6294 F5H0H3 -6294 Q15424 -6295 A0FDN6 -6295 P10523 -6296 Q53FZ2 -6297 Q9Y467 -6299 Q9NSC2 -6300 P53778 -6301 P49591 -6301 Q0VGA5 -6302 Q12999 -6302 Q53X76 -6303 P21673 -6303 Q6ICU9 -6304 Q01826 -6305 O95248 -6307 A8MYF6 -6307 Q15800 -6309 O75845 -6309 Q6GTM5 -6310 P54253 -6310 Q96FF1 -6311 Q99700 -6314 B4E207 -6314 E9PHP9 -6314 O15265 -6314 Q9UPD8 -6317 P29508 -6318 P48594 -6319 O00767 -6320 Q9Y240 -6322 Q9UN30 -6323 E9PG49 -6323 P35498 -6323 Q8IUJ6 -6324 Q07699 -6326 Q99250 -6327 O60939 -6327 Q5U0K8 -6328 Q9C007 -6328 Q9NY46 -6329 P35499 -6330 B0YJ93 -6330 E9PPT5 -6330 Q8IWT1 -6331 E9PG18 -6331 E9PHB6 -6331 Q14524 -6331 Q86V90 -6332 Q01118 -6334 Q9UQD0 -6335 Q15858 -6336 Q9Y5Y9 -6337 B4E2Q5 -6337 P37088 -6338 B2R812 -6338 P51168 -6339 A6NNF7 -6339 P51172 -6340 A5X2V1 -6340 P51170 -6341 O75880 -6342 A6NM69 -6342 B2R761 -6342 B4DGJ9 -6342 B4DHP6 -6342 C9JC79 -6342 E1B6W5 -6342 F2Z3J1 -6342 P22307 -6342 Q59HG9 -6342 Q6NXF4 -6343 P09683 -6344 P47872 -6344 Q8IV17 -6345 B3KPP4 -6345 Q86TD4 -6346 P22362 -6347 P13500 -6348 A0N0R1 -6348 P10147 -6349 P16619 -6351 P13236 -6352 D0EI67 -6352 P13501 -6354 P80098 -6355 P80075 -6356 P51671 -6356 Q6I9T4 -6357 Q99616 -6358 Q16627 -6359 Q16663 -6360 O15467 -6361 Q92583 -6362 P55774 -6363 Q6IBD6 -6363 Q99731 -6364 P78556 -6366 O00585 -6366 Q6ICR7 -6367 O00626 -6368 P55773 -6369 O00175 -6370 A6NI52 -6370 O15444 -6372 P80162 -6373 O14625 -6374 P42830 -6374 Q6I9S7 -6375 P47992 -6376 A0N0N7 -6376 P78423 -6382 P18827 -6383 P34741 -6383 Q6PIS6 -6385 P31431 -6385 Q6FGN3 -6386 B2R5Q7 -6386 O00560 -6387 P48061 -6388 Q6IBU4 -6388 Q99470 -6389 P31040 -6390 P21912 -6391 Q99643 -6392 O14521 -6396 A8MV37 -6396 P55735 -6397 A5PLM6 -6397 A8K4E8 -6397 Q59HE8 -6397 Q7Z3R7 -6397 Q92503 -6398 Q8WVN6 -6399 P0DI81 -6399 P0DI82 -6399 Q6IBE5 -6400 Q3ZCU6 -6400 Q9UBV2 -6401 P16581 -6402 P14151 -6402 Q9UJ43 -6403 P16109 -6403 Q5R349 -6403 Q6NUL9 -6404 B7Z5C7 -6404 Q14242 -6405 Q13275 -6406 P04279 -6407 Q02383 -6414 P49908 -6415 P63302 -6416 P45985 -6418 A6NGV1 -6418 B2REB8 -6418 Q01105 -6418 Q5VXV2 -6418 Q5VXV3 -6419 B4DY74 -6419 E7EN68 -6419 Q53H47 -6421 P23246 -6421 Q86VG2 -6422 Q8N474 -6423 B3KSM5 -6423 Q96HF1 -6424 Q6FHJ7 -6425 Q5T4F7 -6426 Q07955 -6426 Q59FA2 -6427 Q01130 -6427 Q53FN0 -6428 B2R6F3 -6428 P84103 -6429 Q08170 -6430 Q13243 -6431 Q13247 -6432 B4DLU6 -6432 G5E9M3 -6432 Q16629 -6433 Q12872 -6434 P62995 -6439 D6W5L6 -6439 P07988 -6440 E9PGX3 -6440 P11686 -6441 P35247 -6442 Q16586 -6443 Q16585 -6443 Q5U0N0 -6444 Q92629 -6445 Q13326 -6446 O00141 -6447 P05408 -6447 Q6FHD0 -6448 P51688 -6449 O43765 -6450 A6ND59 -6450 P55822 -6451 O75368 -6452 B4DT04 -6452 D6R919 -6452 P78314 -6453 Q15811 -6453 Q6PD56 -6455 B4DRA1 -6455 E7EVZ4 -6455 Q6FGM0 -6455 Q99961 -6456 Q7Z376 -6456 Q8IZ09 -6456 Q99962 -6457 Q99963 -6461 Q15464 -6462 B0FWH2 -6462 B0FWH4 -6462 E9PGW1 -6462 F5H5Z8 -6462 P04278 -6464 P29353 -6468 P57775 -6469 Q15465 -6470 P34896 -6472 B4DJQ3 -6472 B7Z9F1 -6472 P34897 -6472 Q5BJF5 -6472 Q5HYG8 -6472 Q8N1A5 -6473 O15266 -6474 O60902 -6476 P14410 -6477 Q8IUQ4 -6478 O43255 -6480 B2R513 -6480 P15907 -6482 Q11201 -6483 B3KXG9 -6483 Q16842 -6484 Q11206 -6484 Q6IBE6 -6487 B4DX62 -6487 Q11203 -6487 Q5T4W8 -6487 Q5T4Y1 -6487 Q96L53 -6489 Q92185 -6490 P40967 -6491 Q15468 -6492 P81133 -6493 Q14190 -6494 Q96FS4 -6495 Q15475 -6496 O95343 -6497 P12755 -6498 P12757 -6499 Q15477 -6499 Q9NPK3 -6500 P63208 -6502 B4DJT4 -6502 Q13309 -6503 Q13239 -6503 Q6FI01 -6504 Q13291 -6505 P43005 -6506 A2A2U1 -6506 P43004 -6507 P43003 -6507 Q4JCQ8 -6507 Q7Z5T0 -6507 Q8N169 -6508 P48751 -6509 B7Z3C0 -6509 P43007 -6510 B4DR77 -6510 B4DWS4 -6510 E9PC01 -6510 Q15758 -6510 Q59ES3 -6511 P48664 -6512 O00341 -6512 Q9BW45 -6513 P11166 -6513 Q59GX2 -6514 P11168 -6515 P11169 -6517 P14672 -6517 Q05BQ3 -6518 P22732 -6519 Q07837 -6520 P08195 -6521 G4V2I6 -6521 P02730 -6522 B4DIT0 -6522 F8W682 -6522 P04920 -6522 Q59GF1 -6523 P13866 -6524 P31639 -6525 B4DI56 -6525 B4E229 -6525 E7ETT8 -6525 P53814 -6526 P53794 -6527 Q9NY91 -6528 Q92911 -6529 P30531 -6530 B4DX48 -6530 P23975 -6530 Q96KH8 -6531 A2RUN4 -6531 Q01959 -6532 B2R7Y7 -6532 P31645 -6532 Q5EE02 -6533 B2RNU7 -6533 P31641 -6533 Q9BRI2 -6534 Q99884 -6535 B4DIA3 -6535 E9PFC0 -6535 P48029 -6535 Q59EV7 -6536 P48067 -6538 P48066 -6539 P48065 -6540 B4DJL1 -6540 Q8WW56 -6540 Q9NSD5 -6541 P30825 -6542 P52569 -6543 Q9UPR5 -6545 O43246 -6546 F6VPY9 -6546 P32418 -6546 Q4QQH3 -6546 Q59GN4 -6547 B3KU59 -6547 P57103 -6547 Q5K3P6 -6547 Q5K3P7 -6547 Q96QG1 -6547 Q96QG2 -6548 B2RAH2 -6548 P19634 -6549 Q9UBY0 -6550 P48764 -6553 Q14940 -6553 Q9NSW9 -6554 B2RA41 -6554 Q14973 -6555 Q12908 -6556 P49279 -6557 B4DPF4 -6557 E9PDW4 -6557 Q13621 -6557 Q8IUN5 -6558 P55011 -6558 Q53ZR1 -6559 P55017 -6560 B4DF30 -6560 B4DF69 -6560 B4DR04 -6560 B7ZAV0 -6560 F5H066 -6560 F5H0S9 -6560 F5H3C0 -6560 Q9UP95 -6561 A4D0X1 -6561 Q9BZW2 -6563 G0W2N5 -6563 Q13336 -6564 B2CQT6 -6564 P46059 -6565 B4E2A7 -6565 Q16348 -6566 B4DKS0 -6566 P53985 -6567 B1ALU8 -6567 P36021 -6568 Q14916 -6569 B4DPE3 -6569 Q06495 -6569 Q7Z725 -6569 Q86VN6 -6570 E9PB33 -6570 E9PDJ5 -6570 P54219 -6570 Q96GL6 -6570 Q9BRE4 -6571 Q05940 -6572 Q16572 -6573 B7Z8C3 -6573 E9PFY4 -6573 P41440 -6573 Q9BTX8 -6574 A7LNJ1 -6574 Q8WUM9 -6575 Q08357 -6576 P53007 -6578 Q92959 -6579 P46721 -6580 O15245 -6581 O75751 -6581 Q5SYN6 -6582 O15244 -6583 Q9H015 -6584 O76082 -6585 A6H8V1 -6585 O75093 -6585 Q5T0V1 -6586 O75094 -6588 O00631 -6590 P03973 -6591 O43623 -6594 P28370 -6594 Q86UA8 -6595 P51531 -6595 Q56A76 -6595 Q8N9Q1 -6596 Q05BZ6 -6596 Q14527 -6597 A7E2E1 -6597 B1A8Z4 -6597 B1A8Z5 -6597 B1A8Z6 -6597 B1A8Z7 -6597 B3KNW7 -6597 P51532 -6597 Q9HBD4 -6598 Q12824 -6598 Q17S11 -6598 Q9H836 -6599 Q58EY4 -6599 Q92922 -6601 F8VTJ5 -6601 Q59GV3 -6601 Q8TAQ2 -6602 Q96GM5 -6603 Q92925 -6604 Q6STE5 -6605 Q969G3 -6606 Q16637 -6607 Q16637 -6608 A4D1K5 -6608 Q99835 -6609 E9PKS3 -6609 P17405 -6609 Q59EN6 -6610 O60906 -6611 P52788 -6612 P55854 -6613 F2Z3D0 -6613 P61956 -6614 Q9BZZ2 -6615 O95863 -6616 P60880 -6617 B2RC42 -6617 Q16533 -6618 Q13487 -6619 Q92966 -6620 Q16143 -6621 Q5SXM2 -6622 P37840 -6623 O76070 -6623 Q6FHG5 -6624 B3KTA3 -6624 Q16658 -6625 P08621 -6626 P09012 -6627 P09661 -6628 P14678 -6628 Q66K91 -6629 P08579 -6631 P09234 -6631 Q5TAL4 -6632 P62314 -6633 P62316 -6634 P62318 -6635 P62304 -6636 P62306 -6637 P62308 -6638 P63162 -6640 Q13424 -6641 Q13884 -6642 Q13596 -6642 Q6ZRJ8 -6643 B3KN57 -6643 O60749 -6645 Q13425 -6646 A8K3P4 -6646 B4DU95 -6646 P35610 -6647 P00441 -6648 B4DL20 -6648 P04179 -6649 P08294 -6650 O75808 -6651 P18583 -6652 Q00796 -6653 Q92673 -6654 Q07889 -6655 Q07890 -6656 O00570 -6657 P48431 -6658 P41225 -6659 Q06945 -6660 P35711 -6662 P48436 -6663 P56693 -6664 P35716 -6665 O60248 -6666 O15370 -6667 E4Z9M7 -6667 G5E9M8 -6667 P08047 -6668 Q02086 -6670 B7ZLN9 -6670 Q02447 -6670 Q59FX5 -6670 Q86TP0 -6671 Q02446 -6672 B4DDX5 -6672 B8ZZD8 -6672 E7EUA7 -6672 F8WFE2 -6672 P23497 -6672 Q6ZMK3 -6674 B3KQ58 -6674 Q07617 -6675 Q16222 -6676 Q9NPE6 -6677 P38567 -6677 Q5D1J4 -6677 Q8TC30 -6678 P09486 -6683 E5KRP5 -6683 E5KRP6 -6683 Q9UBP0 -6687 Q9UQ90 -6688 P17947 -6689 B4DUG6 -6689 Q01892 -6690 P00995 -6691 P20155 -6691 Q6FGH2 -6692 O43278 -6693 A8K9B1 -6693 P16150 -6694 Q13103 -6695 Q08629 -6696 B2RDA1 -6696 B7Z351 -6696 P10451 -6696 Q3LGB0 -6696 Q4W597 -6696 Q567T5 -6697 P35270 -6698 P35321 -6699 P22528 -6700 P35326 -6701 P35325 -6703 P22532 -6704 P22531 -6705 Q96RM1 -6706 Q9BYE4 -6707 Q9UBC9 -6708 P02549 -6709 Q13813 -6710 P11277 -6710 Q59FP5 -6710 Q86TX9 -6711 B2ZZ89 -6711 Q01082 -6712 O15020 -6713 Q14534 -6713 Q5HYI4 -6713 Q9UNR6 -6714 P12931 -6715 P18405 -6716 P31213 -6717 A8MTH6 -6717 P30626 -6718 B4DPN3 -6718 B4DPN8 -6718 P51857 -6720 P36956 -6721 Q12772 -6721 Q8NCY3 -6722 P11831 -6723 P19623 -6725 Q9H3Y6 -6726 A8K0N0 -6726 P49458 -6727 P37108 -6728 D6RA36 -6728 D6RCQ5 -6728 P09132 -6728 Q05D77 -6729 B4DUW6 -6729 P61011 -6730 B3KMI9 -6730 Q9UHB9 -6731 O76094 -6731 Q7Z3C0 -6732 B4DS61 -6732 Q96SB4 -6733 P78362 -6734 B4E0H3 -6734 E9PJS4 -6734 P08240 -6736 A7WPU8 -6736 Q05066 -6737 P19474 -6738 P10155 -6738 Q5LJ98 -6738 Q5LJ99 -6738 Q5LJA0 -6738 Q86WL3 -6738 Q86WL4 -6741 P05455 -6742 A4D1U3 -6742 Q04837 -6744 P28290 -6745 P43307 -6746 P43308 -6747 Q9UNL2 -6748 P51571 -6749 Q08945 -6750 P61278 -6751 P30872 -6751 Q86SW9 -6752 P30874 -6753 P32745 -6753 Q86YF2 -6754 P31391 -6755 P35346 -6756 Q16384 -6757 Q16385 -6758 O60225 -6759 A8MYD4 -6759 O60224 -6760 Q15532 -6760 Q4VAX0 -6764 P78524 -6767 P50502 -6767 Q2TU77 -6768 Q9Y5Y6 -6769 Q99469 -6770 P49675 -6770 Q6IBK0 -6772 P42224 -6773 B4DLC7 -6773 G3V2M6 -6773 P52630 -6774 P40763 -6775 Q14765 -6776 A8K6I5 -6776 P42229 -6776 Q59GY7 -6777 P51692 -6778 A8K4S9 -6778 B4DQB3 -6778 B7ZA27 -6778 F5GXI9 -6778 P42226 -6779 A6NKE9 -6779 P02808 -6780 B3KRE0 -6780 O95793 -6780 Q5JW29 -6780 Q6PJX3 -6781 P52823 -6782 P48723 -6783 P49888 -6783 Q53X91 -6785 Q9GZR5 -6786 Q13586 -6787 B7Z200 -6787 P51957 -6787 Q05DF6 -6788 Q13188 -6789 Q13043 -6790 O14965 -6792 O76039 -6793 O94804 -6794 Q15831 -6795 Q9UQB9 -6799 P50226 -6801 O43815 -6804 Q16623 -6804 Q75ME0 -6809 B4DME0 -6809 Q13277 -6809 Q53YE2 -6810 Q12846 -6811 F8W8Q9 -6811 Q13190 -6812 P61764 -6812 Q68CM6 -6813 Q15833 -6813 Q53GF4 -6814 O00186 -6815 B9EJG0 -6815 Q8WUJ0 -6817 P50225 -6818 P50224 -6818 Q1ET61 -6819 O00338 -6820 O00204 -6821 P51687 -6822 A8K015 -6822 Q06520 -6827 P63272 -6829 O00267 -6830 Q7KZ85 -6832 Q8IYB8 -6833 Q09428 -6834 E5KRX5 -6834 Q15526 -6835 Q15527 -6836 O15260 -6837 Q15528 -6838 O75683 -6839 O43463 -6840 O95425 -6840 Q569J5 -6843 P23763 -6844 P63027 -6845 P51809 -6846 Q9UBD3 -6847 Q15431 -6850 A8K4G2 -6850 P43405 -6853 P17600 -6854 Q86VA8 -6855 P08247 -6856 A4D0R1 -6856 A4D0R2 -6856 Q16563 -6857 P21579 -6857 Q6AI31 -6860 Q9H2B2 -6861 O00445 -6862 O15178 -6863 P20366 -6863 Q9Y494 -6865 P21452 -6866 Q9UHF0 -6867 O75410 -6867 Q5HYH0 -6868 B2RNB2 -6868 P78536 -6869 P25103 -6870 P29371 -6871 O75478 -6872 P21675 -6873 B3KMD8 -6873 Q6P1X5 -6874 O00268 -6875 Q92750 -6876 Q01995 -6876 Q5U0D2 -6877 Q15542 -6878 B4DT11 -6878 P49848 -6879 Q15545 -6880 Q16594 -6880 Q9Y3D8 -6881 Q12962 -6882 Q15544 -6883 Q16514 -6884 Q15543 -6885 O43318 -6886 P17542 -6887 Q16559 -6888 P37837 -6890 Q03518 -6891 Q03519 -6891 Q5HY71 -6891 Q9UP03 -6892 B2ZUA4 -6892 E9PGM2 -6892 O15533 -6894 Q13395 -6895 Q15633 -6897 B3KTN2 -6897 P26639 -6898 P17735 -6899 D9ZGG0 -6899 O43435 -6899 Q152R5 -6900 A1L3A3 -6900 Q02246 -6901 Q16635 -6902 O75347 -6902 Q6FGD7 -6903 Q15814 -6904 Q9BTW9 -6905 Q15813 -6906 P05543 -6907 O60907 -6908 B4E3B3 -6908 F5H869 -6908 P20226 -6908 Q32MN7 -6909 Q13207 -6910 A6ND77 -6910 Q96TB0 -6910 Q99593 -6911 O95947 -6913 Q8N8P2 -6913 Q96SF7 -6915 P21731 -6915 Q05C92 -6915 Q0VAB0 -6916 B4DJG6 -6916 P24557 -6916 Q16843 -6916 Q53F23 -6916 Q96CN2 -6917 P23193 -6919 Q15560 -6919 Q6IB64 -6919 Q86VL0 -6920 A8K2K7 -6920 O75764 -6921 E5RGD9 -6921 Q15369 -6923 B7WPD3 -6923 Q15370 -6924 Q14241 -6925 B3KT62 -6925 B3KUC0 -6925 B3KVA4 -6925 B4DUG3 -6925 B7Z5M6 -6925 E9PH57 -6925 G0LNT9 -6925 G0LNU0 -6925 G0LNU5 -6925 G0LNU9 -6925 G0LNV0 -6925 G0LNV1 -6925 P15884 -6926 O15119 -6927 P20823 -6928 E0YMJ6 -6928 P35680 -6928 Q6FHW6 -6929 P15923 -6932 P36402 -6934 B4DRJ8 -6934 B9X074 -6934 C6ZRJ7 -6934 C6ZRJ8 -6934 C6ZRJ9 -6934 C6ZRK0 -6934 C6ZRK1 -6934 C6ZRK2 -6934 C6ZRK5 -6934 F8W742 -6934 F8W7T5 -6934 Q6FHW4 -6934 Q9NQB0 -6935 B2RBI8 -6935 B4DUW9 -6935 E9PCM7 -6935 F5H4I8 -6935 P37275 -6935 Q2KJ05 -6935 Q5VZ84 -6936 A4UHQ8 -6936 A4UHR0 -6936 B3KUM5 -6936 P16383 -6936 Q9BVX3 -6938 Q99081 -6939 A4LBB6 -6939 Q12870 -6939 Q6NVX3 -6940 O60765 -6941 Q9Y242 -6942 Q9UGU0 -6943 O43680 -6944 Q15906 -6945 Q9UH92 -6947 P20061 -6948 P20062 -6948 Q96FD4 -6949 B4DRA2 -6949 Q13428 -6950 E7EQR6 -6950 P17987 -6953 D1MPS5 -6953 Q12799 -6954 Q8WWU5 -6975 Q96PL2 -6988 P57738 -6990 P51808 -6990 Q6ICS3 -6991 Q8IZS6 -6992 A2BEK1 -6992 O60927 -6993 P63172 -6993 Q5VTU4 -6996 B4E127 -6996 Q13569 -6997 F5H1T8 -6997 P13385 -6999 P48775 -7001 A8K0C0 -7001 P32119 -7003 A4FUP2 -7003 P28347 -7003 Q59EF3 -7004 Q15561 -7004 Q6MZR9 -7004 Q8NEV5 -7005 Q99594 -7006 P42680 -7007 O75443 -7008 Q10587 -7009 F8W034 -7009 P55061 -7010 Q02763 -7010 Q59HG2 -7011 Q99973 -7013 P54274 -7014 Q15554 -7015 O14746 -7016 Q15569 -7016 Q8NFJ4 -7018 A0PJA6 -7018 P02787 -7018 Q06AH7 -7019 E5KSU5 -7019 Q00059 -7020 P05549 -7020 Q5TAV5 -7020 Q8N1C6 -7021 Q92481 -7022 Q92754 -7023 Q01664 -7024 Q12800 -7025 P10589 -7026 B4DQJ2 -7026 F1D8R0 -7026 P24468 -7026 Q3KQR7 -7027 Q14186 -7029 B7Z8C8 -7029 B7Z8L5 -7029 E9PFC3 -7029 F8WAI2 -7029 Q14188 -7029 Q9UG28 -7030 B4DIA5 -7030 P19532 -7031 P04155 -7032 Q03403 -7033 E9PBB5 -7033 Q07654 -7035 P10646 -7036 Q9UP52 -7037 A8K6Q8 -7037 P02786 -7038 P01266 -7039 P01135 -7040 P01137 -7041 O43294 -7042 P61812 -7043 A5YM40 -7043 B3KVH9 -7043 P10600 -7044 B4E332 -7044 E9PDM4 -7044 O00292 -7045 Q15582 -7046 P36897 -7046 Q5T7S2 -7047 P49221 -7048 A3QNQ0 -7048 D2JYI1 -7048 P37173 -7049 Q03167 -7050 A6NE42 -7050 F8VZB6 -7050 Q15583 -7051 P22735 -7052 P21980 -7053 Q08188 -7054 P07101 -7054 P78428 -7056 P07204 -7057 P07996 -7058 P35442 -7058 Q6MZL6 -7059 B4DQ20 -7059 P49746 -7060 P35443 -7062 Q07283 -7064 P52888 -7066 P40225 -7066 Q5FBX8 -7067 P10827 -7067 Q6FH41 -7068 F1D8N7 -7068 P10828 -7069 Q92748 -7070 B0YJA4 -7070 P04216 -7071 O75411 -7071 Q13118 -7072 P31483 -7073 A8K4L9 -7073 Q01085 -7073 Q49AS9 -7074 Q13009 -7075 P35590 -7076 P01033 -7076 Q6FGX5 -7077 P16035 -7078 P35625 -7079 Q99727 -7080 P43699 -7082 Q07157 -7082 Q6MZU1 -7083 P04183 -7084 B4DIW4 -7084 B4E0Z4 -7084 B7ZAB1 -7084 E9PH08 -7084 O00142 -7084 Q8IZR3 -7086 P29401 -7087 Q8N6I2 -7087 Q9UMF0 -7088 Q04724 -7089 B4DE03 -7089 E9PEV7 -7089 F8WCH2 -7089 Q04725 -7090 B3KM67 -7090 B3KUA2 -7090 E9PD64 -7090 Q04726 -7090 Q6PI57 -7090 Q6PRX2 -7091 O60756 -7091 Q04727 -7092 B7ZLW3 -7092 O43897 -7093 Q9Y6L7 -7094 Q9Y490 -7095 Q99442 -7096 Q15399 -7096 Q32MK4 -7097 B3KWR9 -7097 D1CS45 -7097 O60603 -7098 E6Y0F1 -7098 O15455 -7099 D1CS53 -7099 O00206 -7100 O60602 -7101 B6ZGT9 -7101 Q9Y466 -7102 P41732 -7103 P19075 -7104 P48230 -7105 O43657 -7106 A8MVV6 -7106 O14817 -7107 O60478 -7108 O76062 -7109 P48553 -7110 P82094 -7110 Q6PII6 -7111 P28289 -7112 P42166 -7112 P42167 -7112 Q59G12 -7113 F8WES1 -7113 O15393 -7114 A2VCK8 -7114 P62328 -7114 Q0P5T0 -7122 D3DX19 -7122 O00501 -7123 P05452 -7124 C1K3N5 -7124 P01375 -7124 Q5STB3 -7125 P02585 -7125 Q6FH92 -7126 Q13829 -7127 Q03169 -7128 P21580 -7130 P98066 -7132 P19438 -7133 P20333 -7134 P63316 -7134 Q6FH91 -7135 P19237 -7136 A6NIV8 -7136 P48788 -7137 P19429 -7137 Q6FGX2 -7138 P13805 -7139 P45379 -7139 Q7Z554 -7139 Q9BUF6 -7140 P45378 -7141 P09430 -7141 Q4ZG82 -7142 Q05952 -7142 Q4VB56 -7143 A1L306 -7143 Q92752 -7145 A1L0S7 -7145 Q59G71 -7145 Q86VB0 -7145 Q9HBL0 -7148 O95680 -7148 O95681 -7148 P22105 -7148 Q6IPK3 -7148 Q9Y464 -7150 P11387 -7153 P11388 -7155 Q02880 -7155 Q8WTY5 -7156 Q13472 -7157 P04637 -7157 Q53GA5 -7158 F8VY86 -7158 Q12888 -7159 B4DG66 -7159 Q13625 -7161 B7Z7J4 -7161 C9J521 -7161 O15350 -7162 A8K555 -7162 Q13641 -7163 D0UFD4 -7163 E5RKB4 -7163 P55327 -7164 F6V707 -7164 Q16890 -7165 B4DPJ6 -7165 O43399 -7165 Q5JWU6 -7165 Q5U0E0 -7165 Q68E05 -7165 Q6FGS1 -7166 P17752 -7167 P60174 -7167 Q53HE2 -7168 D9YZV2 -7168 D9YZV3 -7168 D9YZV4 -7168 D9YZV5 -7168 D9YZV7 -7168 D9YZV8 -7168 O15513 -7168 P09493 -7168 Q9Y427 -7169 P07951 -7170 P06753 -7170 Q5VU66 -7170 Q5VU72 -7171 P67936 -7172 P51580 -7172 Q9BS45 -7173 P07202 -7173 Q502Y3 -7173 Q6P534 -7174 P29144 -7175 P12270 -7175 Q99968 -7177 P20231 -7177 Q15661 -7178 P13693 -7179 P56180 -7180 P16562 -7180 Q5U8Z9 -7180 Q7Z7B2 -7181 P13056 -7182 F2YGU2 -7182 P49116 -7182 Q6PHZ7 -7184 P14625 -7185 B4DJ77 -7185 Q13077 -7186 Q12933 -7187 A6NHG8 -7187 Q13114 -7188 O00463 -7188 Q6FHY1 -7189 Q9Y4K3 -7200 P20396 -7201 P34981 -7203 B3KX11 -7203 P49368 -7203 Q59H77 -7204 O75962 -7205 Q15654 -7216 Q12816 -7216 Q96SX2 -7216 Q9BX90 -7220 P48995 -7222 Q13507 -7222 Q5G1L5 -7223 Q3KR50 -7223 Q9UBN4 -7224 Q9UL62 -7225 Q9Y210 -7226 O94759 -7227 Q9UHF7 -7247 Q15631 -7248 B7Z897 -7248 Q32NF0 -7248 Q86WV8 -7248 Q92574 -7249 P49815 -7251 Q99816 -7252 P01222 -7253 A0PJU7 -7253 F5GYU5 -7253 G3V2A9 -7253 P16473 -7257 B1APC6 -7257 Q99598 -7258 A4FUW6 -7258 Q01534 -7258 Q540R4 -7259 Q9H0U9 -7260 Q53HC9 -7262 Q53GA4 -7263 Q16762 -7264 Q13630 -7265 Q99614 -7266 Q7Z784 -7266 Q99615 -7267 P53804 -7268 O95801 -7270 Q15361 -7272 A8K8U5 -7272 P33981 -7273 A6NKB1 -7273 E7EQE6 -7273 E7ET18 -7273 E9PPD3 -7273 Q8WZ42 -7274 P49638 -7275 P50607 -7276 E9KL36 -7276 P02766 -7277 P68366 -7278 Q13748 -7278 Q1ZYQ1 -7280 Q13885 -7283 P23258 -7284 P49411 -7286 Q9NNX1 -7287 O00294 -7288 O00295 -7289 B7Z1E7 -7289 F8WBZ9 -7289 O75386 -7290 P54198 -7291 Q15672 -7292 P23510 -7293 P43489 -7294 P42681 -7295 B1ALW1 -7295 O60744 -7295 P10599 -7296 Q16881 -7297 P29597 -7298 P04818 -7298 Q53Y97 -7299 P14679 -7301 Q06418 -7305 F5H389 -7305 O43914 -7306 P17643 -7307 Q01081 -7307 Q701P4 -7307 Q71RF1 -7307 Q7Z780 -7311 P62987 -7311 Q3MIH3 -7311 Q7Z4P3 -7314 P0CG47 -7314 Q5U5U6 -7316 P0CG48 -7317 P22314 -7318 P41226 -7319 A6NFE9 -7319 A6NGR2 -7319 P49459 -7320 P63146 -7321 P51668 -7322 P62837 -7322 Q96RP6 -7323 P61077 -7324 C9J8K2 -7324 P51965 -7325 Q96LR5 -7326 P62253 -7327 A6NMQ7 -7327 P60604 -7328 A4D1L5 -7328 A4D1L6 -7328 P62256 -7328 Q7Z6F4 -7329 A8K503 -7329 P63279 -7332 P68036 -7334 P61088 -7335 Q13404 -7336 A0M8W4 -7336 Q15819 -7337 Q05086 -7337 Q9BUI6 -7337 Q9H2G0 -7341 A8MUS8 -7341 P63165 -7342 A8KAN5 -7342 Q9NZI7 -7343 P17480 -7345 P09936 -7347 P15374 -7348 O75841 -7349 P55089 -7350 P25874 -7351 P55851 -7352 P55916 -7353 A8MW31 -7353 Q541A5 -7353 Q92890 -7355 P78381 -7356 P11684 -7357 Q16739 -7358 B3KUU2 -7358 B4DN25 -7358 O60701 -7360 Q16851 -7363 P06133 -7364 P16662 -7365 B4DPP1 -7365 P36537 -7365 Q53GU2 -7366 B7ZW53 -7366 P54855 -7367 O75795 -7368 Q16880 -7369 P07911 -7371 Q9BZX2 -7372 A8K5J1 -7372 P11172 -7373 Q05707 -7374 E5KTA5 -7374 E5KTA6 -7374 P13051 -7375 C9IY91 -7375 Q08AK7 -7375 Q13107 -7376 F1D8P7 -7376 P55055 -7378 Q16831 -7379 O00526 -7380 O75631 -7381 P14927 -7384 P31930 -7385 P22695 -7386 P47985 -7388 P07919 -7389 P06132 -7390 P10746 -7391 P22415 -7391 Q7Z5Y1 -7392 Q15853 -7398 O94782 -7399 O75445 -7401 E1ACU9 -7401 P58418 -7402 P46939 -7402 Q6LBS5 -7403 O15550 -7403 Q59HG3 -7404 O14607 -7404 Q86UB8 -7405 Q9P2Y5 -7407 P26640 -7408 P50552 -7409 P15498 -7410 P52735 -7411 P61758 -7412 B4DKS4 -7412 E9PDD1 -7412 P19320 -7414 B3KXA2 -7414 P18206 -7415 P55072 -7415 Q96IF9 -7416 B3KTS5 -7416 P21796 -7417 P45880 -7419 Q9Y277 -7421 F1D8P8 -7421 G3V1V9 -7421 P11473 -7422 P15692 -7423 P49765 -7423 Q7LAP4 -7424 P49767 -7425 O15240 -7428 P40337 -7429 P09327 -7429 Q53F91 -7430 P15311 -7431 P08670 -7432 P01282 -7433 B3KPV1 -7433 B4DEB5 -7433 B4DGI4 -7433 B4DNY6 -7433 F5H1F5 -7433 G3V0I1 -7433 P32241 -7434 P41587 -7436 P98155 -7436 Q5VVF5 -7439 O76090 -7441 P12018 -7442 Q8NER1 -7443 Q99986 -7444 Q86Y07 -7447 P62760 -7448 D9ZGG2 -7448 P04004 -7450 P04275 -7453 P23381 -7454 P42768 -7455 Q9Y493 -7456 O43516 -7456 Q2YDC4 -7458 Q15056 -7461 A7E2F7 -7461 Q9UDT6 -7462 Q9GZY6 -7464 A8K9S3 -7464 Q92828 -7465 B3KVE1 -7465 P30291 -7465 Q86V29 -7466 O76024 -7468 O96028 -7469 Q9H3P2 -7471 P04628 -7472 A4D0V1 -7472 P09544 -7473 P56703 -7474 P41221 -7475 Q8N2E5 -7475 Q9Y6F9 -7476 O00755 -7477 P56706 -7478 Q9H1J5 -7479 Q93098 -7480 O00744 -7481 O96014 -7482 Q5TEH9 -7482 Q93097 -7483 D9ZGG3 -7483 O14904 -7484 O14905 -7485 A8MQ44 -7485 O00258 -7486 Q14191 -7486 Q59F09 -7490 B3KSA5 -7490 E9PMK7 -7490 E9PP08 -7490 P19544 -7490 Q6PI38 -7494 P17861 -7498 P47989 -7499 B4E289 -7499 P55808 -7504 P51811 -7507 P23025 -7508 B4DIP3 -7508 E9PH69 -7508 Q01831 -7511 G5E9Y2 -7511 Q9NQW7 -7512 O43895 -7514 B3KWD0 -7514 O14980 -7515 B2RCY5 -7515 P18887 -7515 Q59HH7 -7516 O43543 -7517 O43542 -7517 Q53XC8 -7518 Q13426 -7518 Q7Z763 -7520 P13010 -7525 P07947 -7528 P25490 -7529 P31946 -7531 P62258 -7532 P61981 -7533 Q04917 -7533 Q9H4N8 -7534 D0PNI1 -7534 P63104 -7535 P43403 -7536 B7Z1Q1 -7536 C9JJE2 -7536 Q15637 -7538 P26651 -7539 Q9Y6Q3 -7541 B2R850 -7541 O43829 -7542 O95159 -7543 P17010 -7543 Q59EB9 -7543 Q8WXB7 -7544 B4DVF7 -7544 P08048 -7544 Q24JR0 -7545 Q15915 -7546 O95409 -7547 O60481 -7549 B0AZN8 -7549 Q9BSG1 -7551 P17036 -7552 Q6PK66 -7552 Q9Y462 -7553 P17097 -7554 B3KS94 -7554 P17098 -7555 A8K7V4 -7555 E9PDR7 -7555 P62633 -7555 Q4JGY0 -7555 Q4JGY1 -7555 Q5U0E9 -7556 P21506 -7556 Q9UG14 -7559 P17014 -7561 P17017 -7562 P17019 -7564 P17020 -7564 Q45SH7 -7564 Q9NRA4 -7565 P17021 -7566 P17022 -7567 P17023 -7568 P17024 -7569 P17025 -7569 Q96QH7 -7570 P17026 -7570 Q5T741 -7571 P17027 -7572 P17028 -7574 P17031 -7576 P17035 -7579 P17040 -7580 P17041 -7581 F8WAJ5 -7581 Q06730 -7582 Q06732 -7584 P13682 -7586 P17029 -7586 Q96FA2 -7587 P17032 -7589 Q9Y5A6 -7592 P51814 -7593 P28698 -7594 P17038 -7596 Q02386 -7597 P24278 -7620 Q9UC07 -7621 Q9UC06 -7625 Q16587 -7626 A6NK62 -7626 B3KRI7 -7626 P51815 -7627 Q68CU0 -7627 Q96N20 -7629 P36508 -7633 Q15937 -7634 P51504 -7637 P51523 -7638 Q9UK13 -7639 Q03923 -7639 Q49A12 -7643 Q03938 -7644 Q05481 -7673 G5E9B9 -7673 Q8N6G7 -7673 Q9UK12 -7675 P58317 -7678 Q15973 -7681 Q13064 -7690 P52739 -7691 B3KQ54 -7691 P52740 -7692 P52736 -7693 P52741 -7694 B4DHH9 -7694 B4DLZ7 -7694 E9PEV2 -7694 F5GYY9 -7694 Q8N1I7 -7694 Q8N9M3 -7695 P52737 -7697 A2RRP7 -7697 B4DFX2 -7697 B4DP87 -7697 E9PHK7 -7699 P52738 -7700 Q15928 -7701 P52746 -7702 P52747 -7703 P35227 -7704 Q05516 -7705 Q15072 -7706 Q14258 -7707 Q9UQR1 -7709 B4DXB4 -7709 F5H411 -7709 Q13105 -7710 Q13106 -7711 Q12901 -7711 Q9H9E2 -7712 P51786 -7716 Q14119 -7718 P49910 -7718 Q53Z40 -7726 Q12899 -7726 Q5SRL2 -7727 Q15697 -7728 Q9Y473 -7730 B4DY57 -7730 Q13360 -7732 Q7Z5V9 -7733 Q9UJW8 -7737 O15541 -7738 Q99676 -7739 B3KPM4 -7739 B7Z771 -7739 B8K2L9 -7739 B8K2M0 -7739 B8K2M1 -7739 B8K2M2 -7739 F5GXF7 -7739 F5GZL4 -7739 F8W8V7 -7739 O15231 -7739 Q8N1R8 -7741 B3KTR1 -7741 Q16670 -7743 O75820 -7745 Q15776 -7746 B4E1W6 -7746 E7EVQ2 -7746 O15535 -7748 O14628 -7750 Q9UBW7 -7752 B3KP91 -7752 D3DUB7 -7752 P98182 -7752 Q7Z5V1 -7753 O95125 -7755 O95201 -7756 E1P660 -7756 O43670 -7760 O14771 -7761 Q9UL59 -7762 Q9UL58 -7763 O76080 -7764 O75362 -7766 Q9UK11 -7767 Q9NZL3 -7768 Q9UK10 -7769 B2RBM0 -7769 Q8WWE6 -7769 Q9NYT6 -7770 Q86WZ6 -7771 Q0VG01 -7771 Q9UJU3 -7772 Q9UJW7 -7773 Q9UIE0 -7775 Q9UNY5 -7776 Q9UL36 -7779 Q9Y6M5 -7780 B3KSN7 -7780 Q9BRI3 -7781 Q99726 -7782 O14863 -7783 Q05996 -7784 P21754 -7786 B3KSS9 -7786 G3V1Y2 -7786 Q12852 -7789 P98168 -7791 Q15942 -7791 Q96AF9 -7798 Q05DE3 -7798 Q86V48 -7799 B1AJZ4 -7799 Q13029 -7799 Q5THJ1 -7802 O14645 -7803 Q93096 -7804 Q14114 -7805 Q13571 -7805 Q5TBB8 -7809 Q5VU50 -7809 Q8WZ55 -7812 E9PGZ0 -7812 G5E9Q2 -7812 O75534 -7812 Q68DF1 -7813 O60447 -7813 Q59FE7 -7818 B4DP59 -7818 B4DY62 -7818 E7EM60 -7818 P51398 -7827 Q9NP85 -7832 P78543 -7837 Q92626 -7840 Q8TCU4 -7841 F5H6D0 -7841 Q13724 -7841 Q58F09 -7844 O00237 -7846 Q71U36 -7849 Q06710 -7850 P27930 -7851 Q13021 -7852 P61073 -7855 Q13467 -7857 P13521 -7862 P55201 -7866 Q12894 -7867 Q16644 -7869 Q13214 -7871 Q14BN4 -7873 P55145 -7874 Q6U8A4 -7874 Q93009 -7879 P51149 -7881 B3KPZ4 -7881 Q14722 -7884 Q14493 -7884 Q53XR2 -7903 G3V104 -7903 Q8N1F4 -7903 Q92187 -7905 Q00765 -7913 B4DN37 -7913 P35659 -7915 G5E949 -7915 P51649 -7915 Q546H9 -7915 Q8N3W6 -7916 P48634 -7917 B4DZ12 -7917 B4E3V4 -7917 E7EMZ4 -7917 F8VXY4 -7917 P46379 -7918 B2RA66 -7918 O95872 -7919 Q13838 -7920 B3KNX9 -7920 B7Z4R6 -7920 O95870 -7922 Q92504 -7923 Q92506 -7932 O95918 -7936 P18615 -7940 O00453 -7940 Q2HNT3 -7940 Q5SP24 -7940 Q5STA5 -7940 Q5STA6 -7940 Q5STA8 -7941 Q13093 -7942 P19484 -7957 O95278 -7957 Q6IS15 -7965 Q13155 -7975 A4D214 -7975 O60675 -7976 A8K615 -7976 Q9NPG1 -7978 Q99551 -7979 P60896 -7979 Q6IBB7 -7980 P48307 -7982 Q9NRC1 -7984 Q12774 -7988 B3KQE6 -7988 Q9UDV6 -7991 Q13454 -7993 O00124 -7994 A5PKX7 -7994 Q92794 -8000 D3DWI6 -8001 O75311 -8001 Q9UPF3 -8013 Q92570 -8019 Q15059 -8021 P35658 -8022 F1T0D5 -8022 F1T0D9 -8022 Q9UBR4 -8027 Q92783 -8028 B1ANA8 -8028 P55197 -8028 Q59EQ6 -8028 Q5VX90 -8028 Q66K63 -8028 Q6N002 -8029 O60494 -8030 Q05CP8 -8030 Q16204 -8031 A8K8W5 -8031 B2R5V0 -8031 B4E260 -8031 E9PAV7 -8031 Q13772 -8031 Q96E88 -8034 P16260 -8036 Q9UQ13 -8038 A8K6G4 -8038 O43184 -8045 G5E9N9 -8045 Q02833 -8045 Q3KP41 -8048 A2TDB8 -8048 P50461 -8050 E9PB14 -8050 E9PBP7 -8050 O00330 -8061 P15407 -8065 Q93034 -8073 B4DM39 -8073 E9PGJ6 -8073 Q12974 -8074 Q9GZV9 -8076 B3KW70 -8076 Q13361 -8078 P45974 -8079 A8K1F4 -8079 Q15773 -8079 Q5U0N1 -8082 B3KS67 -8082 Q14714 -8085 O14686 -8085 Q59FG6 -8085 Q6PIA1 -8086 Q5JB47 -8086 Q9NRG9 -8087 P51114 -8089 O95619 -8091 P52926 -8091 Q1M182 -8092 Q15699 -8099 O14519 -8100 B3KX42 -8100 Q13099 -8106 Q86U42 -8110 Q92784 -8111 A1A5B2 -8111 Q15743 -8115 P56279 -8120 Q13367 -8125 P39687 -8128 B2R9U8 -8128 Q92186 -8131 B7Z220 -8131 B7Z6Q0 -8131 Q12980 -8131 Q9BTE2 -8139 B3KTC3 -8139 Q9H2C0 -8140 Q01650 -8140 Q8IV97 -8148 Q86X94 -8148 Q92804 -8153 P52198 -8161 P38432 -8165 B4DN86 -8165 Q92667 -8170 Q15849 -8174 B2RPL9 -8174 Q13477 -8174 Q5UGI7 -8175 Q05DF2 -8175 Q15428 -8178 P55199 -8187 Q16600 -8189 Q92797 -8190 Q16674 -8192 Q16740 -8193 Q6PJ73 -8193 Q92782 -8195 Q9NPJ1 -8200 P43026 -8202 Q59EE8 -8202 Q9Y6Q9 -8204 A8K171 -8204 P48552 -8208 Q13112 -8209 P30042 -8214 Q14129 -8216 Q8N653 -8218 P53675 -8220 Q96DF8 -8224 B1B1F9 -8224 O14994 -8224 Q17R54 -8224 Q59EX7 -8225 O43824 -8226 E9PAV8 -8226 Q08623 -8227 Q02040 -8227 Q05DA9 -8228 B4E362 -8228 P41247 -8233 Q15696 -8237 P51784 -8239 Q6P468 -8239 Q86X58 -8239 Q93008 -8241 P98175 -8241 Q7Z3D7 -8242 B4E3I2 -8242 F5H3T1 -8242 P41229 -8243 Q14683 -8260 P41227 -8263 P23610 -8266 P11441 -8269 Q14656 -8270 Q14657 -8273 P09131 -8273 Q9BSL2 -8277 B7Z7I0 -8277 P51854 -8277 Q5TYJ8 -8284 B7ZLX1 -8284 Q9BY66 -8287 O00507 -8288 P11678 -8289 O14497 -8290 Q16695 -8291 O75923 -8292 Q9Y215 -8293 O75920 -8294 B2R4R0 -8294 P62805 -8295 Q9Y4A5 -8301 B4DTM3 -8301 E9PN05 -8301 F8VPG7 -8301 Q13492 -8301 Q4LE54 -8302 O43908 -8303 O75324 -8309 Q99424 -8310 O15254 -8312 O15169 -8313 Q9Y2T1 -8314 Q92560 -8315 Q59H81 -8315 Q7Z569 -8317 B2R6V2 -8317 O00311 -8318 B4DDB4 -8318 B4DDU3 -8318 E9PDH7 -8318 O75419 -8320 O95936 -8321 Q9UP38 -8322 Q9ULV1 -8323 B4DRN0 -8323 B4E236 -8323 O60353 -8324 O75084 -8325 Q9H461 -8326 O00144 -8328 Q5VTD9 -8329 A4FTV9 -8329 P0C0S8 -8330 A4FTV9 -8330 P0C0S8 -8331 Q99878 -8332 A4FTV9 -8332 P0C0S8 -8334 Q93077 -8335 P04908 -8335 Q08AJ9 -8336 A4FTV9 -8336 P0C0S8 -8337 Q6FI13 -8338 Q16777 -8339 B2R4S9 -8339 P62807 -8340 Q99880 -8341 Q99877 -8342 Q99879 -8343 B2R4S9 -8343 P62807 -8344 B2R4S9 -8344 P62807 -8345 Q93079 -8346 B2R4S9 -8346 P62807 -8347 B2R4S9 -8347 P62807 -8348 P23527 -8349 Q16778 -8350 P68431 -8351 P68431 -8352 P68431 -8353 P68431 -8354 P68431 -8355 P68431 -8356 P68431 -8357 P68431 -8358 P68431 -8359 B2R4R0 -8359 P62805 -8360 B2R4R0 -8360 P62805 -8361 B2R4R0 -8361 P62805 -8362 B2R4R0 -8362 P62805 -8363 B2R4R0 -8363 P62805 -8364 B2R4R0 -8364 P62805 -8365 B2R4R0 -8365 P62805 -8366 B2R4R0 -8366 P62805 -8367 B2R4R0 -8367 P62805 -8368 B2R4R0 -8368 P62805 -8369 Q99525 -8370 B2R4R0 -8370 P62805 -8372 O43820 -8379 Q9Y6D9 -8382 P56597 -8383 Q9P1Q5 -8386 P58170 -8387 P30953 -8388 P47887 -8388 Q6IFM7 -8390 P47890 -8392 P47888 -8394 Q99755 -8395 O14986 -8396 P78356 -8398 A8K460 -8398 O60733 -8399 O15496 -8402 F5GY65 -8402 Q02978 -8402 Q6IBH0 -8403 O95416 -8404 Q14515 -8405 O43791 -8406 B3KWP8 -8406 B4DDB8 -8406 B4DQH5 -8406 F5H4D7 -8406 G3V1L0 -8406 P78539 -8407 E9KL39 -8407 P37802 -8408 O75385 -8409 Q9UBK9 -8411 Q15075 -8412 O75815 -8416 O76027 -8417 O15400 -8419 Q13515 -8424 O75936 -8425 B3KXY6 -8425 Q8N2S1 -8427 Q9UDV7 -8428 Q5U0E6 -8428 Q6P0Y1 -8428 Q9Y6E0 -8431 F1D8P5 -8431 Q15466 -8433 Q5T230 -8434 A8K9D8 -8434 O95980 -8435 O75908 -8436 O95810 -8437 F8VQX1 -8437 O95294 -8437 Q59H24 -8438 A8K996 -8438 Q92698 -8439 Q92636 -8440 E7ERP6 -8440 O43639 -8443 O15228 -8444 O43781 -8445 Q92630 -8446 O75319 -8447 Q14184 -8448 Q14183 -8449 B4DZ28 -8449 O60231 -8449 Q5SQH4 -8450 Q13620 -8451 Q13619 -8452 Q13618 -8453 G3V1S2 -8453 Q13617 -8454 B3KTW0 -8454 Q13616 -8455 B4DZ36 -8455 O75882 -8456 O15353 -8458 Q9UNY4 -8459 O60704 -8460 A4D2M0 -8460 O60507 -8462 B4DZE7 -8462 B7ZAX4 -8462 O14901 -8462 Q53QU8 -8463 Q15562 -8464 O75486 -8467 O60264 -8468 O75344 -8470 B3KPQ7 -8470 B7Z1G5 -8470 B7Z3X6 -8470 B7Z997 -8470 C9JKV9 -8470 E9PAS5 -8470 E9PAW4 -8470 G3XAI0 -8470 O94875 -8471 O14654 -8473 O15294 -8476 Q5VT25 -8477 B5B0C2 -8477 Q8IYL9 -8479 Q9BW71 -8480 A8K882 -8480 P78406 -8481 E9KL37 -8481 O75665 -8482 B4DDP7 -8482 F5GYX3 -8482 F5H1S0 -8482 O75326 -8483 O75339 -8484 O60755 -8487 O14893 -8490 O15539 -8490 Q599J0 -8491 Q8IVH8 -8492 P56730 -8492 Q96I80 -8493 O15297 -8493 Q6P991 -8495 Q8ND30 -8496 Q86W92 -8497 B3KN22 -8497 O75335 -8498 Q53GE1 -8498 Q9H6Z4 -8499 B3KVT5 -8499 B3KXA0 -8499 B7Z2A6 -8499 B7Z3U9 -8499 B7Z663 -8499 B7ZKZ5 -8499 E7ETG6 -8499 F8VP68 -8499 O75334 -8499 Q2M3G8 -8499 Q4LE62 -8500 B3KVS8 -8500 Q13136 -8501 O75387 -8502 Q99569 -8503 Q8N381 -8503 Q92569 -8504 P56589 -8504 Q6FGP5 -8505 Q86W56 -8506 P78357 -8507 O14682 -8507 Q53XS2 -8508 B4DQI7 -8508 Q9BPW8 -8509 B4E139 -8509 P52849 -8510 O75900 -8513 B7Z723 -8513 F5H1P4 -8513 P07098 -8513 Q5VXI7 -8513 Q5VXI8 -8513 Q658L8 -8514 B0AZR7 -8514 B2R776 -8514 Q13303 -8515 O75578 -8516 P53708 -8517 Q9Y6K9 -8518 O95163 -8518 Q8N516 -8519 P13164 -8519 Q53XZ0 -8520 O14929 -8521 Q9NP62 -8522 A8KAC2 -8522 O60861 -8525 B7Z2M9 -8525 B7Z6M3 -8525 E9PPW4 -8525 G3V0F6 -8525 Q13574 -8525 Q6ZVG7 -8526 A1L4Q0 -8526 P52429 -8527 Q16760 -8528 Q99489 -8529 P78329 -8530 O76096 -8531 P16989 -8532 Q66K79 -8533 B4DY81 -8533 Q9UNS2 -8534 O43916 -8535 O00257 -8536 B0YIY3 -8536 Q14012 -8537 O75363 -8538 Q9UMQ3 -8539 B4DDR3 -8539 B4DGR0 -8539 Q9BZZ5 -8540 O00116 -8541 O75145 -8542 B1AH95 -8542 B4DU12 -8542 E9PF24 -8542 O14791 -8542 Q2KHQ6 -8543 P61968 -8544 O00625 -8545 Q9UFW8 -8546 O00203 -8547 O75636 -8547 Q6UXM4 -8548 Q9H2G9 -8549 O75473 -8550 Q8IW41 -8553 O14503 -8553 Q6IB83 -8554 O75925 -8555 A8MQ20 -8555 O60729 -8556 Q52LH9 -8556 Q59EF4 -8556 Q9UNH5 -8557 A2TDC0 -8557 O15273 -8558 B7Z537 -8558 Q15131 -8559 Q99633 -8560 O15121 -8562 O43583 -8563 Q13769 -8564 A8K693 -8564 O15229 -8565 P54577 -8566 O00764 -8567 A8K8S7 -8567 B5MEE5 -8567 Q8WXG6 -8568 P56182 -8569 A8K341 -8569 Q9BUB5 -8570 Q92945 -8572 P50479 -8573 O14936 -8574 O43488 -8575 O75569 -8576 O75716 -8577 Q8IYR6 -8578 Q14162 -8581 Q14210 -8590 O95222 -8600 O14788 -8600 Q54A98 -8600 Q5T9Y4 -8601 O76081 -8602 P78316 -8603 P78312 -8604 O75746 -8605 B4DI40 -8605 Q9UP65 -8607 Q9Y265 -8608 O75452 -8609 O75840 -8611 G3XA95 -8611 O14494 -8612 E9PAY8 -8612 O43688 -8613 O14495 -8614 O76061 -8614 Q6FHC9 -8615 O60763 -8618 Q9ULU8 -8620 O15130 -8621 Q14004 -8621 Q9BVE2 -8622 B3KN77 -8622 O95263 -8623 B3KM43 -8623 B4DX75 -8623 F5GXH4 -8623 O95671 -8624 O95456 -8625 O14593 -8626 Q9H3D4 -8630 O14756 -8631 Q86WV1 -8633 A8K385 -8633 O95185 -8634 O00442 -8635 O00584 -8636 O43805 -8637 O60516 -8638 B3KN79 -8638 Q15646 -8639 Q16853 -8641 Q9UN71 -8642 Q96JQ0 -8643 Q9Y6C5 -8644 P42330 -8645 O95279 -8646 Q9H2X0 -8647 O95342 -8648 Q15788 -8649 Q9UHA4 -8650 P49757 -8651 O15524 -8651 Q4JHT5 -8653 O15523 -8654 G5E9C5 -8654 O76074 -8655 P63167 -8655 Q6FGH9 -8658 O95271 -8658 Q4G0F2 -8659 B4DGE4 -8659 P30038 -8660 Q9P084 -8660 Q9Y4H2 -8661 Q14152 -8662 P55884 -8663 Q99613 -8664 O15371 -8665 O00303 -8666 O75821 -8667 O15372 -8667 Q6IB98 -8668 Q13347 -8668 Q5U0F4 -8669 O75822 -8671 A5JJ20 -8671 Q9Y6R1 -8672 B9EGQ7 -8672 O43432 -8672 Q504Z1 -8672 Q59GJ0 -8673 Q9BV40 -8674 O75379 -8674 Q6IAZ3 -8675 B4DJX9 -8675 E1P5M0 -8675 O14662 -8675 Q6GMS8 -8676 O75558 -8677 O60499 -8678 Q14457 -8681 P0C869 -8682 B1AKZ4 -8682 Q15121 -8683 Q13242 -8685 Q4ZG40 -8685 Q9UEW3 -8687 O76015 -8688 O76014 -8689 O76013 -8690 Q9Y4A0 -8692 B3KRZ2 -8692 Q12891 -8693 Q8N4A0 -8694 O75907 -8697 Q9UJX2 -8698 O95977 -8701 Q96DT5 -8701 Q96NT7 -8702 B2RAZ5 -8702 B3KM35 -8702 O60513 -8703 A8K5Z0 -8703 O60512 -8704 B4DE14 -8704 O60909 -8705 B3KQP5 -8705 O96024 -8705 Q5STJ7 -8706 B3KTQ4 -8706 O75752 -8706 Q49AT3 -8706 Q7L9G8 -8706 Q8TDY1 -8707 O43825 -8708 Q9Y5Z6 -8710 O75635 -8711 Q13470 -8712 O75459 -8714 O15438 -8714 Q86VN9 -8715 B4DLW2 -8715 B4DSQ0 -8715 B7Z3Z7 -8715 F5H1E3 -8715 O94818 -8717 Q15628 -8718 Q93038 -8720 Q14703 -8721 O60869 -8722 Q9UBX1 -8723 O95219 -8723 Q9H398 -8724 O60493 -8725 O94763 -8726 O75530 -8727 Q9UBT7 -8728 Q8TBU7 -8728 Q9H013 -8729 Q149P0 -8729 Q149P1 -8729 Q92538 -8731 O43148 -8732 O60942 -8733 O43292 -8735 Q9UKX3 -8736 P52179 -8737 Q13546 -8738 P78560 -8738 Q53XL1 -8739 O00198 -8740 O43557 -8741 A8MYD5 -8741 B3KR02 -8741 B4DVT2 -8741 O75888 -8741 Q2QBA2 -8741 Q541E1 -8742 O43508 -8742 Q4ACW9 -8743 A1Y9B3 -8743 P50591 -8743 Q6IBA9 -8744 P41273 -8745 O75077 -8747 Q9UKJ8 -8748 O43506 -8749 Q6IRW9 -8749 Q9Y3Q7 -8751 Q13444 -8754 Q13443 -8756 Q9H2U9 -8760 O95674 -8761 Q13310 -8761 Q4VC03 -8763 Q04900 -8764 Q92956 -8766 B4DT13 -8766 P62491 -8767 O43353 -8771 O95407 -8772 Q13158 -8773 A8K287 -8773 O00161 -8774 Q6FHY4 -8774 Q99747 -8775 P54920 -8776 Q13613 -8776 Q8NEC6 -8777 O75970 -8778 O15389 -8780 B0YJ89 -8780 O14730 -8784 B1AME3 -8784 Q5U0I4 -8784 Q9Y5U5 -8785 A2RRP8 -8785 A5D8U1 -8785 A6NNA4 -8785 O95460 -8786 O94810 -8786 Q4TT70 -8786 Q4TT72 -8787 A8K1G1 -8787 O75916 -8788 P80370 -8788 Q969Y6 -8789 O00757 -8790 A6NMH3 -8790 B4DRX2 -8790 B4E2Y7 -8790 E9PNQ2 -8790 O14772 -8792 Q9Y6Q6 -8793 Q9UBN6 -8794 O14798 -8795 O14763 -8795 Q7Z2I8 -8796 B7Z797 -8796 F5H651 -8796 O95171 -8797 O00220 -8798 Q9NR20 -8799 B4DXH9 -8799 O96011 -8800 B2R8C6 -8800 O75192 -8801 Q96I99 -8802 P53597 -8803 E5KS60 -8803 Q9P2R7 -8803 Q9Y4T0 -8804 O75629 -8805 O15164 -8807 O95256 -8808 Q9HB29 -8809 Q13478 -8811 O43603 -8812 O75909 -8813 O60762 -8814 Q00532 -8815 O75531 -8816 Q96JK2 -8817 O76093 -8818 O94777 -8818 Q5XKK9 -8819 O75446 -8820 Q9UBX0 -8821 O15327 -8822 O60258 -8823 O43320 -8824 O00748 -8825 O14910 -8826 P46940 -8828 O60462 -8828 Q7LBX6 -8828 Q7LBX7 -8828 Q7Z3T9 -8828 Q9H2E2 -8829 A8K9V7 -8829 O14786 -8829 Q59F20 -8829 Q68DN3 -8829 Q6AWA9 -8829 Q96I90 -8831 Q96PV0 -8832 Q9UIB8 -8833 A8K639 -8833 P49915 -8834 P17152 -8835 A8K3D1 -8835 O14508 -8836 Q92820 -8837 B4DJE0 -8837 B4E361 -8837 O15519 -8838 O95389 -8839 O76076 -8840 E7EMM5 -8840 O95388 -8840 Q5JBS6 -8841 O15379 -8842 O43490 -8843 E9PI97 -8843 P49019 -8844 A8MY87 -8844 Q8IVT5 -8846 Q13686 -8846 Q5XKL0 -8848 A8K3Y6 -8848 B3KRL7 -8848 Q15714 -8850 Q92831 -8851 Q15078 -8851 Q8N619 -8852 Q5JQC9 -8853 O43150 -8854 B4DZR2 -8854 E9PF31 -8854 F5H2Y9 -8854 O94788 -8856 F1D8P9 -8856 O75469 -8857 Q9Y6R7 -8858 P22891 -8859 P49842 -8861 Q86U70 -8862 Q9ULZ1 -8863 A2I2N5 -8863 P56645 -8864 O15055 -8867 B9EGN3 -8867 C9JFZ1 -8867 O43426 -8867 Q05CZ1 -8869 Q9UNP4 -8870 P46695 -8871 B4DG94 -8871 O15056 -8872 O75794 -8874 Q14155 -8875 A8K7W0 -8875 O95498 -8876 O95497 -8877 Q53ZR5 -8877 Q96GK1 -8877 Q9NYA1 -8878 Q13501 -8879 O95470 -8880 Q96AE4 -8881 Q13042 -8882 O75312 -8883 A6NFN4 -8883 A8MU28 -8883 Q13564 -8884 Q9HD19 -8884 Q9Y289 -8886 Q8N254 -8886 Q9NVP1 -8887 A4D196 -8887 B4DSG5 -8887 E7ENV2 -8887 Q86VP1 -8888 O60318 -8890 Q9UI10 -8891 Q9HA31 -8891 Q9NR50 -8892 P49770 -8892 Q53XC2 -8893 Q13144 -8894 P20042 -8894 Q6IBR8 -8895 O75131 -8895 Q05DL8 -8896 P41223 -8897 Q13615 -8898 A6NN98 -8898 Q13614 -8899 Q13523 -8900 B7Z7E3 -8900 P78396 -8904 B0QZ18 -8904 Q99829 -8905 P56377 -8905 Q549M9 -8906 O75843 -8907 B3KNH5 -8907 Q4TTY5 -8907 Q59EK3 -8907 Q9BXS5 -8908 B3KUV6 -8908 O15488 -8908 Q1ZYL7 -8909 P21128 -8910 E9PF60 -8910 G5E9K6 -8910 O43556 -8910 Q6L8P0 -8911 Q9P0X4 -8912 B3KQH9 -8912 O95180 -8913 O43497 -8913 Q19QZ8 -8913 Q19QZ9 -8913 Q19R02 -8913 Q19R03 -8913 Q19R08 -8913 Q19R11 -8913 Q19R12 -8913 Q19R13 -8913 Q19R17 -8913 Q2TAC4 -8914 Q9UNS1 -8915 O95999 -8915 Q5VUF1 -8916 Q15034 -8924 O95714 -8925 Q15751 -8926 Q9Y675 -8927 Q9UPA5 -8928 O75593 -8929 Q99453 -8930 O95243 -8932 Q9UBB5 -8933 A6ZKI3 -8934 B2R7I9 -8934 B4E1K3 -8934 C9JE77 -8934 O14966 -8934 Q6FGU7 -8935 A4D173 -8935 O75563 -8936 Q92558 -8938 B4DGS5 -8938 B4DIK3 -8938 B4DRK9 -8938 B4DRP1 -8938 E7EUB9 -8938 O94812 -8939 A3KFK8 -8939 Q96I24 -8940 O95985 -8941 Q13319 -8941 Q5XKD4 -8942 Q16719 -8942 Q9BVW3 -8943 G5E988 -8943 O14617 -8943 Q6PK82 -8945 Q5W141 -8945 Q9Y297 -8968 P68431 -8969 A4FTV9 -8969 B2R5B3 -8969 P0C0S8 -8970 P06899 -8971 Q92522 -8972 O43451 -8973 B4DQH1 -8973 Q15825 -8974 O15460 -8974 Q05DA4 -8975 Q92995 -8976 O00401 -8985 O60568 -8985 Q9UG85 -8986 A0PJF8 -8986 O75676 -8987 O95210 -8988 Q12988 -8988 Q6ICS9 -8989 O75762 -8991 Q13228 -8992 O15342 -8993 O75594 -8994 Q9UGP4 -8995 Q9UNG2 -8996 B4DFL0 -8996 O60936 -8996 Q5TZN6 -8997 C9JQ37 -8997 O60229 -8999 Q92772 -9001 P54257 -9002 Q96RI0 -9013 B3KUE8 -9013 F5H0H4 -9013 Q15572 -9014 B4DI42 -9014 Q53T94 -9015 A8K4K5 -9015 B4DS21 -9015 Q15573 -9016 O95258 -9019 A8K5D4 -9019 B2REC0 -9019 O95297 -9020 Q99558 -9021 O14543 -9021 Q6FI39 -9022 O95833 -9023 O95992 -9024 Q8IWQ3 -9025 O76064 -9026 B3KN98 -9026 B3KQW8 -9026 O75146 -9026 Q6NXG8 -9027 Q9UHE5 -9028 O75783 -9031 Q9UIG0 -9032 O14894 -9033 Q9P0L9 -9034 B2R8C0 -9034 O00421 -9037 Q13591 -9038 D8KZS1 -9038 O14804 -9039 Q8TBC4 -9040 P61081 -9043 A6H8U5 -9043 B4DHH2 -9043 E7ENU2 -9043 O60271 -9044 O14981 -9044 Q2M1V9 -9044 Q8N6J1 -9045 P50914 -9046 O60496 -9047 Q5UBZ2 -9047 Q5UBZ3 -9047 Q5VZS4 -9047 Q9NP31 -9048 Q5T4W7 -9049 O00170 -9050 Q9H939 -9051 O43586 -9052 Q8NFJ5 -9053 B7Z290 -9053 B7Z3E1 -9053 B7Z3Y3 -9053 B7Z400 -9053 B7Z5S7 -9053 B7Z9U7 -9053 B7ZB64 -9053 E9PCP3 -9053 F5H1E2 -9053 Q14244 -9054 B4DXK9 -9054 F5GYK5 -9054 Q53FP3 -9054 Q9Y697 -9055 O43663 -9056 Q9UM01 -9057 Q92536 -9058 B4DPL1 -9058 E7ETH5 -9058 F5GWV6 -9058 Q13183 -9060 O95340 -9060 Q5TB52 -9061 O43252 -9061 Q6IAX6 -9063 O75928 -9064 O95382 -9066 F5GZU9 -9066 O43581 -9068 O95841 -9069 B2R687 -9069 P56749 -9070 Q9UBL3 -9071 P78369 -9071 Q6IBF9 -9071 Q96N78 -9073 P56748 -9074 P56747 -9075 B2R6B9 -9075 P57739 -9076 A5JSJ9 -9076 O95832 -9077 O95661 -9079 O43679 -9080 O95484 -9081 O14603 -9082 A2RUG3 -9082 O14609 -9083 O14599 -9084 O14598 -9085 Q9Y6F8 -9086 O14602 -9087 O14604 -9088 F8W164 -9088 Q0IJ49 -9088 Q99640 -9091 B2RAU6 -9091 Q9BRB3 -9092 O43290 -9093 B3KM81 -9093 Q53G26 -9093 Q59E88 -9093 Q96EY1 -9094 F1T095 -9094 Q13432 -9095 B3KRD9 -9095 O60806 -9096 O95935 -9097 A6NJA2 -9097 P54578 -9098 P35125 -9099 E9PPM2 -9099 O75604 -9100 Q14694 -9101 B3KRK3 -9101 P40818 -9101 Q05DF5 -9104 Q15493 -9107 Q9Y217 -9108 B7Z9Q7 -9108 B7ZAG8 -9108 Q9Y216 -9110 Q9NYA4 -9111 Q13287 -9111 Q8WTW2 -9112 Q13330 -9112 Q9BRL8 -9113 O95835 -9114 P61421 -9117 Q9BRL7 -9118 Q16352 -9119 O95678 -9120 O15403 -9121 O15375 -9122 A8K3V5 -9122 B4DJ67 -9122 B4DPX7 -9122 E7EPY8 -9122 G3V175 -9122 O15374 -9122 Q8WU09 -9123 O15427 -9124 O00151 -9125 D5MQE1 -9125 Q92600 -9126 Q9UQE7 -9127 F6V3D7 -9127 O15547 -9127 Q32MB6 -9128 O43172 -9128 Q5T1M7 -9129 O43395 -9130 Q14320 -9131 O95831 -9131 Q1L6K6 -9131 Q2QKE4 -9132 B3KQH8 -9132 P56696 -9133 O95067 -9134 O96020 -9135 Q15276 -9136 O43818 -9138 Q92888 -9139 F8W6D7 -9139 O43439 -9140 O94817 -9141 O14737 -9142 O96002 -9143 O43761 -9144 O43760 -9145 O43759 -9146 O14964 -9147 O60524 -9148 B4DS86 -9148 O76050 -9149 Q9Y463 -9150 Q9Y5B0 -9152 Q4VAM5 -9152 Q4VAM6 -9152 Q9Y345 -9153 O43868 -9153 Q2M2A7 -9153 Q53H72 -9154 O00337 -9154 Q96PL7 -9156 Q9UQ84 -9158 O43427 -9159 Q16549 -9162 O75912 -9166 O00559 -9167 O14548 -9167 Q6FGA0 -9168 P63313 -9168 Q596K9 -9169 Q99590 -9170 Q9HBW0 -9172 P54296 -9173 Q01638 -9175 O43283 -9177 O95264 -9179 O00189 -9180 Q99650 -9181 Q92974 -9182 O75901 -9183 A1A528 -9183 O43264 -9184 O43684 -9185 Q8NFH8 -9187 O60721 -9188 Q9NR30 -9189 O96006 -9191 O75618 -9194 O60669 -9194 Q8NEM3 -9196 O43448 -9197 O00400 -9200 B0YJ81 -9201 B7Z5K4 -9201 O15075 -9202 Q5VZL5 -9203 A8K3Z7 -9203 Q14202 -9203 Q96E26 -9204 O95789 -9205 Q9UJ78 -9208 B4DPC0 -9208 E9PGZ2 -9208 Q32MZ4 -9208 Q9Y607 -9209 Q9Y608 -9210 O95972 -9211 O95970 -9212 C7G533 -9212 Q96GD4 -9213 Q9UBH6 -9214 B7Z6Z0 -9214 D9MWM3 -9214 O60667 -9215 O95461 -9217 O95292 -9217 Q53XM7 -9218 Q9P0L0 -9219 O94776 -9220 O95411 -9221 Q14978 -9223 Q96QZ7 -9227 O95237 -9228 Q9P1A6 -9229 A8MWN8 -9229 B7Z2H2 -9229 B7Z2I2 -9229 B7Z2J5 -9229 B7Z9Y4 -9229 O14490 -9230 Q15907 -9231 Q8TDM6 -9232 O95997 -9232 Q6IAL9 -9235 A6NNM0 -9235 A8MPX0 -9235 P24001 -9236 A8K9T0 -9236 Q9ULG6 -9238 B3KM73 -9238 Q969Z0 -9240 Q8ND90 -9241 Q13253 -9242 O60682 -9244 O75462 -9245 O95395 -9246 O14933 -9247 D3GDV6 -9247 O75603 -9248 Q13585 -9249 O75911 -9252 O75582 -9252 Q9UG98 -9253 Q9Y6R0 -9254 Q9NY47 -9255 B4DNK3 -9255 Q12904 -9256 A7E2C5 -9256 O95153 -9258 Q9Y4C4 -9260 Q9NR12 -9261 P49137 -9262 O94768 -9262 Q53QE7 -9263 Q9UEE5 -9265 O43739 -9266 Q99418 -9267 Q15438 -9270 O14713 -9271 Q96J94 -9274 Q8WUZ0 -9275 C9JWD3 -9275 Q9BQE9 -9276 P35606 -9277 A8K806 -9277 B4DP15 -9277 O15213 -9278 O15209 -9282 O60244 -9283 O60883 -9284 Q9UND3 -9287 Q9P1P5 -9289 B3KQN7 -9289 B3KQV4 -9289 B4DR54 -9289 Q9Y653 -9290 A8K858 -9290 Q9Y2T6 -9293 F2YGU0 -9293 Q9Y2T5 -9294 O95136 -9295 Q05519 -9295 Q8IWE6 -9296 A4D1K0 -9296 C9J2K4 -9296 Q16864 -9306 O14544 -9308 Q01151 -9310 Q14590 -9311 Q9UHC3 -9312 Q92953 -9313 O60882 -9314 O43474 -9315 B7Z5D2 -9315 Q16612 -9317 Q96BW5 -9318 P61201 -9318 Q59EL2 -9319 Q15645 -9320 Q14669 -9321 B2RUT2 -9321 Q15643 -9321 Q6MZL5 -9322 Q15642 -9324 Q15651 -9325 Q15650 -9326 Q15649 -9328 Q9Y5Q8 -9329 B3KNH2 -9329 Q9UKN8 -9330 Q9Y5Q9 -9331 Q9UBX8 -9332 Q86VB7 -9333 B4DPS8 -9333 O43548 -9334 O43286 -9337 Q9UFF9 -9338 Q15170 -9340 O95838 -9341 Q15836 -9341 Q6FGG2 -9341 Q9BRV4 -9342 O95721 -9343 B3KX19 -9343 B4DK30 -9343 Q15029 -9344 B7ZM88 -9344 Q9UL54 -9348 O95803 -9349 P62829 -9350 O95813 -9351 D3DU85 -9351 Q15599 -9352 O43396 -9353 O94813 -9354 Q14139 -9355 B3KNJ5 -9355 P50458 -9356 Q4U2R8 -9358 O95965 -9360 Q13427 -9361 P36776 -9362 O95741 -9363 Q14088 -9364 P51157 -9365 Q9UEF7 -9367 P51151 -9368 O14745 -9369 Q9HDB5 -9369 Q9Y4C0 -9370 A8K660 -9370 B2R773 -9370 Q15848 -9371 O15066 -9372 O95405 -9373 Q9Y263 -9374 Q9UMR5 -9375 Q99805 -9376 B2R807 -9376 B4DPH7 -9376 F5GWA8 -9376 F5H5J1 -9376 Q8TCC7 -9377 P20674 -9378 A4FVB9 -9378 A7E294 -9378 P58400 -9378 Q49A31 -9378 Q9ULB1 -9379 P58401 -9379 Q9P2S2 -9380 Q5T945 -9380 Q9UBQ7 -9381 Q9HC10 -9382 Q8WTW3 -9388 Q9Y5X9 -9389 Q9Y267 -9390 Q9Y226 -9391 O76071 -9392 Q8WUH2 -9394 O60243 -9397 O60551 -9398 Q93033 -9399 Q9UBI4 -9400 B3KQK2 -9400 O94762 -9400 Q8WYH5 -9401 O94761 -9402 O75791 -9402 Q6FI14 -9403 O60613 -9404 B4DV71 -9404 O60711 -9406 O95218 -9407 O60235 -9409 Q9Y5Y5 -9410 A0MNP2 -9410 Q96DI7 -9411 Q52LW3 -9412 Q13503 -9413 Q15884 -9413 Q8WU02 -9414 B7Z2R3 -9414 B7Z2R8 -9414 B7Z7T6 -9414 B7Z954 -9414 F5H301 -9414 F5H886 -9414 Q9UDY2 -9415 O95864 -9416 B3KY11 -9416 Q9BUQ8 -9419 Q9P021 -9420 O75881 -9420 Q05C57 -9421 O96004 -9422 O43296 -9423 E9KL51 -9423 O95631 -9424 B2RDS2 -9424 Q9Y257 -9425 Q9Y232 -9426 Q9Y6F7 -9427 O95672 -9429 Q9UNQ0 -9435 Q9Y4C5 -9436 O95944 -9437 B0V3L0 -9437 B0V3L5 -9437 O76036 -9439 Q05DL5 -9439 Q9ULK4 -9440 Q9NVC6 -9441 O95402 -9442 Q6P2C8 -9443 O43513 -9443 Q6IAZ5 -9444 Q8WY44 -9444 Q96PU8 -9445 Q5W0A3 -9445 Q9Y287 -9446 D3DRA3 -9446 F5H7H0 -9446 P78417 -9447 O14862 -9448 B7Z3V5 -9448 O95819 -9450 O95711 -9451 B3KY45 -9451 Q9NZJ5 -9452 B4E062 -9452 O43736 -9453 O95749 -9454 B2RA10 -9454 E9PCW9 -9454 Q9NSC1 -9454 Q9NSC5 -9455 Q9NSB8 -9456 Q5U5K4 -9456 Q86YM7 -9457 Q5TD97 -9459 Q15052 -9459 Q8N4Q3 -9462 A8K2P3 -9462 F8W755 -9462 Q2TB22 -9462 Q9UJF2 -9463 B3KS52 -9463 Q9NRD5 -9464 B6ECG9 -9464 P61296 -9465 O43687 -9465 Q2TAJ5 -9465 Q6P4D3 -9465 Q9P0M2 -9466 Q6UWB1 -9467 B3KQW6 -9467 O60239 -9468 E9PD84 -9468 Q9Y5K3 -9469 Q7LGC8 -9470 O60573 -9470 Q53RG0 -9472 B2RP22 -9472 Q13023 -9473 Q5TEJ8 -9473 Q8N1V6 -9474 A9UGY9 -9474 Q9H1Y0 -9475 O75116 -9476 O96009 -9477 Q9H944 -9478 Q9NZU7 -9479 Q6NUQ9 -9479 Q9UQF2 -9480 O95948 -9481 B4DHR4 -9481 F5GWR4 -9481 O95847 -9481 Q5VTS9 -9481 Q8N518 -9482 Q9UNK0 -9486 O43529 -9486 Q53T18 -9487 Q9Y2B2 -9488 Q92521 -9489 Q32NB8 -9491 Q92530 -9493 Q02241 -9495 P24588 -9495 Q6PG46 -9496 P57082 -9497 Q9Y6M7 -9498 Q2Y0W8 -9499 B4DT79 -9499 Q9UBF9 -9500 Q9Y5V3 -9501 A8K7D5 -9501 Q9UNE2 -9502 Q96GT9 -9503 Q9HD64 -9506 O60829 -9507 O75173 -9508 B7Z2U9 -9508 O15072 -9508 Q96AY5 -9509 O95450 -9510 Q8NE26 -9510 Q9UHI8 -9512 B3KM34 -9512 O75439 -9512 Q96CP5 -9513 P51116 -9514 Q99999 -9515 Q9Y2K9 -9516 G5E9K0 -9516 Q99732 -9517 O15270 -9518 Q99988 -9519 A8K8F5 -9519 P62380 -9520 P55786 -9521 C9JLK5 -9521 O43324 -9522 O15126 -9524 Q9NZ01 -9525 O75351 -9526 O75352 -9527 E9PCW1 -9527 G5E9T8 -9527 O95249 -9528 Q9BXS4 -9529 Q9UL15 -9530 B4E217 -9530 O95429 -9531 O95817 -9532 O95816 -9533 O15160 -9534 O75437 -9535 O60234 -9535 Q6IB37 -9536 O14684 -9537 O14683 -9538 O14681 -9540 Q53FA7 -9541 Q86X95 -9542 F5GZS7 -9542 O14511 -9543 Q8IVU1 -9545 O95716 -9546 O96018 -9547 O95715 -9550 O75348 -9550 Q6IB33 -9551 C9J8H9 -9551 F8W7V3 -9551 P56134 -9551 Q6IBB3 -9552 O75391 -9553 O75394 -9553 Q5FVE3 -9554 O75396 -9555 O75367 -9556 P56378 -9557 Q86WJ1 -9559 A8MZ56 -9559 O75436 -9560 P13236 -9560 Q8NHW4 -9562 F5H683 -9562 Q9UNW1 -9563 O95479 -9564 B2RBL9 -9564 B3KWD7 -9564 B3KWE2 -9564 B4DEV4 -9564 B4DIW5 -9564 B7Z7X7 -9564 E9PCL5 -9564 E9PCV2 -9564 F5GXA2 -9564 F5GXV6 -9564 F5H7Z0 -9564 F8WA69 -9564 P56945 -9564 Q6QEF7 -9567 O00178 -9568 O75899 -9569 Q6DSU6 -9569 Q9UHL9 -9570 O14653 -9570 Q8N4B8 -9572 F1D8S3 -9572 P20393 -9573 Q9NR23 -9575 O15516 -9576 O75602 -9577 Q9NXR7 -9578 Q86XZ8 -9578 Q9Y5S2 -9580 Q9UN79 -9581 Q4J6C6 -9582 Q9UH17 -9583 Q9Y227 -9584 A2RRD3 -9584 B4DRA0 -9584 Q14498 -9585 Q96Q89 -9586 B4DU13 -9586 Q02930 -9586 Q59G47 -9587 E9PAT7 -9587 Q15013 -9588 P30041 -9589 Q15007 -9589 Q5TCL9 -9590 Q02952 -9590 Q86TJ9 -9592 Q9BTL4 -9595 O60759 -9600 B2R787 -9600 O00562 -9601 P13667 -9603 Q9Y4A8 -9604 A8MTW5 -9604 Q9UBS8 -9605 Q9Y2B5 -9607 Q16568 -9609 O95755 -9610 Q13671 -9611 E9PGV6 -9611 O75376 -9611 Q6PGR4 -9611 Q86YY0 -9612 C9J0Q5 -9612 C9JE98 -9612 C9JFD3 -9612 Q9Y618 -9615 Q9Y2T3 -9616 C9JYL3 -9616 Q9UBF6 -9617 O75570 -9618 Q9BUZ4 -9619 P45844 -9620 Q9NYQ6 -9622 Q9Y5K2 -9623 O95988 -9625 Q6ZMQ8 -9626 O95843 -9627 Q9NVG1 -9627 Q9Y6H5 -9628 B7Z2A0 -9628 B7Z2N1 -9628 P49758 -9628 Q2M3K2 -9630 B1ALW3 -9630 O95837 -9631 O75694 -9632 P53992 -9633 Q9Y4I5 -9635 Q9UQC9 -9636 P05161 -9637 Q9UHY8 -9638 Q99689 -9639 O15013 -9640 Q92610 -9641 Q14164 -9641 Q3B754 -9643 Q15014 -9644 B3KPL1 -9644 Q5TCZ1 -9645 O94851 -9646 Q6PD62 -9647 P49593 -9648 B3KR21 -9648 Q8IWJ2 -9649 B4DR86 -9649 E9PBQ5 -9649 Q5JS13 -9650 B4E3G8 -9650 E7EP84 -9650 Q15390 -9650 Q7Z669 -9651 O75038 -9652 Q6PGP7 -9653 Q7LGA3 -9654 Q14679 -9655 O75159 -9655 Q53SD4 -9656 A1Z5I9 -9656 Q14676 -9657 Q15051 -9657 Q3KS08 -9658 Q2YDX2 -9658 Q92618 -9659 Q5VU43 -9662 Q66GS9 -9663 Q92539 -9665 F8VV09 -9665 Q9Y4F3 -9666 Q86Y13 -9667 Q14151 -9668 O94892 -9669 O60841 -9669 Q8N5A0 -9670 O94829 -9671 Q2TBF2 -9672 O75056 -9673 Q96H78 -9674 Q15053 -9675 D6W4K3 -9675 O43156 -9677 Q6PFW1 -9678 B4DG57 -9678 O94880 -9679 Q14153 -9681 A8MPX9 -9681 B4DH93 -9681 B9EGN9 -9681 O75140 -9682 O75164 -9683 O75113 -9684 Q15048 -9685 B7Z6F8 -9685 Q14677 -9686 G5E9M7 -9686 Q0H0I7 -9686 Q14135 -9687 Q4ZG55 -9688 B3KPQ8 -9688 Q8N1F7 -9689 B4DLZ8 -9689 B4DWF7 -9689 Q3LIC9 -9689 Q7L1Q6 -9690 Q15386 -9692 O15091 -9693 Q9Y4G8 -9694 Q15006 -9695 Q92611 -9696 Q5TZA2 -9697 Q15035 -9698 E9PCJ0 -9698 Q14671 -9698 Q53HH5 -9699 B3KX91 -9699 F8WD47 -9699 Q9UQ26 -9700 Q14674 -9701 O75170 -9702 F5H5F7 -9702 Q86XR8 -9703 Q14667 -9704 Q14147 -9705 O60284 -9706 Q8IYT8 -9708 Q9Y5G5 -9709 E9PGD1 -9709 Q15011 -9710 O15063 -9711 Q92622 -9712 Q92738 -9715 Q86XD5 -9716 O60306 -9717 O43304 -9718 O60344 -9719 Q86TH1 -9720 A2RUR9 -9721 O60269 -9722 B7ZLF5 -9722 O75052 -9722 Q3T551 -9723 B4E1P1 -9723 O15041 -9724 Q5TAP6 -9725 O94886 -9726 O15015 -9727 O75154 -9728 Q93073 -9729 Q6ZU52 -9730 Q9Y4B6 -9731 O60308 -9732 Q8N1I0 -9733 Q15020 -9734 B7Z3P7 -9734 B7Z4I4 -9734 B7Z917 -9734 B7Z928 -9734 B7Z940 -9734 C9JS87 -9734 E7EX34 -9734 F8W9E0 -9734 Q9UKV0 -9735 P50748 -9736 Q70CQ2 -9737 Q5JY77 -9738 B4DTZ1 -9738 O43303 -9739 O15047 -9741 Q15012 -9741 Q6IBP4 -9742 Q96RY7 -9743 A7KAX9 -9743 Q86T64 -9744 Q15027 -9745 O15090 -9746 Q9BQT9 -9747 B4DST7 -9747 Q9Y4C2 -9748 Q9H2G2 -9749 O75167 -9750 Q9Y4F9 -9751 O15079 -9752 Q9Y5H5 -9754 Q92502 -9755 A7MCY6 -9757 Q9UMN6 -9758 Q14CM0 -9759 P56524 -9759 Q86YH7 -9760 O94900 -9761 Q14165 -9762 O60299 -9764 O60268 -9765 Q7Z3T8 -9766 Q92537 -9767 Q92613 -9768 A6NNU5 -9768 Q15004 -9770 P50749 -9771 A8MQ07 -9771 Q5JPD2 -9771 Q92565 -9772 Q12767 -9774 Q9NYF8 -9775 P38919 -9776 A8K0S6 -9776 B4DFI4 -9776 E9PQZ8 -9776 O75143 -9776 Q53EN6 -9777 Q92544 -9778 A5YKK5 -9778 Q92628 -9779 B9A6K1 -9779 C9JP52 -9779 Q92609 -9780 Q92508 -9781 P50876 -9782 B7ZAV5 -9782 P43243 -9782 Q9H4N1 -9783 Q9UJD0 -9784 Q15036 -9785 Q92620 -9786 B4DYW5 -9786 B4DZB6 -9786 B7Z7W7 -9786 E7EWM8 -9786 Q6UV20 -9786 Q9BVV6 -9787 A8MTM6 -9787 B4DRM8 -9787 Q15398 -9787 Q86T11 -9788 O43312 -9789 Q15005 -9790 Q14692 -9791 P48651 -9792 Q14140 -9793 Q14008 -9794 Q92585 -9796 Q92561 -9797 Q93075 -9798 P53990 -9801 P49406 -9802 B4DDT5 -9802 B4E1G3 -9802 C9JA96 -9802 C9JP84 -9802 E9PB45 -9802 F8VU62 -9802 Q15038 -9804 Q15388 -9805 B4DHM0 -9805 B4DIP5 -9805 C9JPG0 -9805 Q12765 -9806 C9J767 -9806 Q92563 -9807 A8MUX4 -9807 Q92551 -9810 A8K6K1 -9810 O75150 -9811 O43310 -9812 Q14154 -9813 O75071 -9814 A8K8P3 -9815 Q14161 -9815 Q6FI58 -9816 Q14146 -9817 Q14145 -9818 A6NI12 -9818 Q9BVL2 -9819 O75157 -9820 B4DYZ0 -9820 F5H0L1 -9820 Q14999 -9821 Q8TDY2 -9823 Q7L311 -9824 Q6P4F7 -9825 A8K0S9 -9825 B4DID4 -9825 Q9UM82 -9826 O15085 -9827 A8K0K1 -9827 Q92546 -9828 Q96PE2 -9829 O75061 -9830 Q14142 -9830 Q548W9 -9831 O75123 -9832 Q96AA8 -9833 Q14680 -9836 O60294 -9837 Q14691 -9839 B7Z2P2 -9839 F5H814 -9839 O60315 -9840 A2RU30 -9841 O43167 -9842 Q9Y4G2 -9843 E9PHN8 -9843 Q9BQS7 -9844 A4D1X5 -9844 Q92556 -9846 Q9UQC2 -9847 Q86YS7 -9848 O75121 -9849 Q6AHZ1 -9851 Q2KHM9 -9852 Q7L775 -9853 Q8N2Y8 -9854 O14523 -9855 O94887 -9856 B7ZML3 -9856 F5H123 -9856 Q5VV43 -9857 Q5VT06 -9858 Q5T8A7 -9859 Q5SW79 -9860 O94898 -9861 Q15008 -9862 O75448 -9863 Q86UL8 -9865 Q7L0X0 -9866 O15016 -9867 O43164 -9868 O94826 -9869 Q15047 -9870 O15033 -9871 A8K6V0 -9871 O94855 -9873 O94868 -9874 B3KR15 -9874 B4DX87 -9874 Q9UKI8 -9875 O60287 -9877 O75152 -9878 O94842 -9879 Q7L014 -9880 O15060 -9881 O15050 -9882 O60343 -9883 Q96HA1 -9884 A6NMS7 -9885 Q9H1P3 -9886 O94844 -9887 B4DRB2 -9887 E9PCI0 -9887 E9PEH2 -9887 Q6TV06 -9887 Q92540 -9889 O75132 -9890 E7EPS1 -9890 Q7Z2D5 -9891 O60285 -9892 E5RI02 -9892 O60641 -9894 B4DXS2 -9894 Q9Y4R8 -9895 A5PKY3 -9895 O15040 -9896 Q92562 -9897 Q12768 -9898 Q14157 -9899 B4DH30 -9899 Q7L1I2 -9900 Q7L0J3 -9901 O43295 -9902 Q9UBG0 -9903 Q9UJP4 -9904 A8K5X9 -9904 Q9Y4C8 -9905 B9A6J3 -9905 O43147 -9906 P0CK97 -9907 O43299 -9908 Q9UN86 -9909 O75064 -9910 B7ZAP0 -9910 F1LJ00 -9910 Q5R372 -9910 Q9Y3L8 -9911 B7Z1P7 -9911 O75069 -9912 Q17R89 -9912 Q69Z00 -9913 O94864 -9914 O75185 -9914 Q5HYC3 -9915 Q7Z3A3 -9915 Q86TN1 -9915 Q9HBZ2 -9917 O75063 -9918 B3KMS0 -9918 B3KY03 -9918 Q15021 -9919 O15027 -9920 O94819 -9921 Q8N5U6 -9922 B4DGC5 -9922 E9PG60 -9922 Q6DN90 -9923 B3KR52 -9923 Q1RMZ5 -9923 Q9NUA8 -9924 Q504Q3 -9925 O15062 -9925 Q5T942 -9926 Q53YL2 -9926 Q92604 -9927 O95140 -9928 Q15058 -9929 Q15040 -9933 Q15397 -9934 A5JUU3 -9934 Q15391 -9935 Q9Y5Q3 -9936 B4E2T9 -9936 Q8IX05 -9937 Q6PJP8 -9938 B7Z498 -9938 E9PFQ7 -9938 G5E9G2 -9938 P42331 -9939 Q9Y5S9 -9940 Q9Y238 -9941 Q9Y2C4 -9942 O75191 -9943 O95747 -9945 O94808 -9946 O95825 -9947 O60732 -9948 O75083 -9949 Q5JYV9 -9949 Q9Y4X0 -9950 Q8TBA6 -9951 Q9Y661 -9953 Q9Y662 -9955 Q9Y663 -9956 Q9Y278 -9957 O14792 -9958 Q08AL5 -9958 Q9H8G9 -9958 Q9Y4E8 -9960 Q9Y6I4 -9961 Q14764 -9962 Q9UGH3 -9963 Q9UHI7 -9965 O95750 -9966 O95150 -9967 Q9Y2W1 -9968 Q93074 -9969 Q9UHV7 -9970 E9PB75 -9970 E9PC13 -9970 E9PDU3 -9970 E9PGH6 -9970 E9PH10 -9970 E9PHC8 -9970 E9PHN4 -9970 F1D8Q0 -9970 F1D8Q1 -9970 Q0VAC9 -9970 Q14994 -9970 Q4U0F0 -9970 Q6GZ68 -9970 Q6GZ76 -9970 Q6GZ77 -9970 Q6GZ78 -9970 Q6GZ79 -9970 Q6GZ82 -9970 Q6GZ83 -9970 Q6GZ84 -9970 Q6GZ85 -9970 Q6GZ87 -9970 Q6GZ89 -9971 B6ZGS9 -9971 F1DAL1 -9971 F8VYG8 -9971 Q96RI1 -9972 P49790 -9973 O14618 -9975 B4DXD3 -9975 F1D8P2 -9975 Q14995 -9976 Q92478 -9978 P62877 -9980 Q9Y3R5 -9982 Q14512 -9984 Q96FV9 -9985 O95072 -9986 Q0P5W4 -9986 Q9Y256 -9987 O14979 -9988 B3KMJ8 -9988 Q9Y222 -9989 Q8TF05 -9990 Q6NSI7 -9990 Q9UHW9 -9991 B1ALY5 -9991 B1ALY6 -9991 B3KME7 -9991 O95758 -9992 Q9Y6J6 -9993 B7Z3T5 -9993 B7Z935 -9993 P98153 -9993 Q5CZ70 -9993 Q8IWC8 -9994 Q9UKL3 -9997 O43819 -10000 Q9Y243 -10001 O75586 -10002 B6ZGU0 -10002 F1D8Q9 -10002 Q9Y5X4 -10003 Q9Y3Q0 -10004 Q9UQQ1 -10005 O14734 -10006 B3KX62 -10006 B4DQ58 -10006 B6VEX3 -10006 B6VEX4 -10006 B6VEX5 -10006 Q5T2R9 -10006 Q8IZP0 -10007 P46926 -10008 Q6IAE6 -10008 Q9Y6H6 -10009 Q86T24 -10010 B2R7S3 -10010 Q6NW12 -10010 Q7Z4J6 -10010 Q92844 -10011 Q9HD15 -10013 Q9UBN7 -10014 Q9UQL6 -10015 E9PFU1 -10015 Q6NUS1 -10015 Q8WUM4 -10016 O75340 -10016 Q53FC3 -10017 Q9HD36 -10018 O43521 -10019 Q59H48 -10019 Q9UQQ2 -10020 A7UNU7 -10020 B7Z372 -10020 B7Z428 -10020 F5H499 -10020 Q9Y223 -10021 Q9Y3Q4 -10022 Q9Y5Q6 -10023 Q92837 -10024 Q12815 -10024 Q6PJU7 -10025 Q9Y2X0 -10026 Q92643 -10036 Q13111 -10038 Q9UGN5 -10039 Q9Y6F1 -10040 O75674 -10042 Q7Z641 -10042 Q9UGU5 -10043 B3KUF5 -10043 O60784 -10044 A8K5S8 -10044 B4DG32 -10044 E7EUN5 -10044 E9PG48 -10044 Q8N5H7 -10045 A8K2M8 -10045 Q9BRG2 -10046 Q13495 -10047 O60676 -10048 Q96S59 -10049 O75190 -10050 Q9Y2C5 -10051 Q9NTJ3 -10052 P36383 -10053 Q9Y6Q5 -10054 Q9UBT2 -10055 B3KMQ2 -10055 F5GXX7 -10055 G3XAK6 -10055 Q9UBE0 -10056 Q9NSD9 -10057 O15440 -10057 Q86W30 -10058 Q9NP58 -10059 O00429 -10059 Q59GN9 -10060 O60706 -10061 Q75MJ0 -10061 Q75MJ1 -10061 Q9UG63 -10062 B4DXU5 -10062 F1D8N1 -10062 Q13133 -10062 Q8IW13 -10063 Q14061 -10066 O15127 -10067 O14828 -10068 G3V1C5 -10068 O95998 -10069 P57060 -10071 F5GWV9 -10072 Q53GT4 -10072 Q5JPB8 -10072 Q9NY33 -10073 O95149 -10075 Q7Z6Z7 -10076 Q92729 -10077 Q96QS1 -10078 Q9Y5U2 -10079 O75110 -10081 Q6IEG3 -10081 Q8N8D1 -10082 Q9Y625 -10083 Q7RTU8 -10083 Q9Y6N9 -10084 O60828 -10085 O43854 -10085 Q8N610 -10086 C9JL84 -10087 Q9Y5P4 -10089 Q9Y2U2 -10090 Q9Y2C2 -10092 O15511 -10093 C9JWM7 -10093 F6TTL5 -10093 P59998 -10094 O15145 -10095 A4D275 -10095 O15143 -10096 P61158 -10096 Q53QM2 -10097 E9PF41 -10097 P61160 -10098 P62079 -10099 A6NEH4 -10099 B4DP19 -10099 O60637 -10100 O60636 -10101 Q9Y5Y2 -10102 B4E391 -10102 E5KS95 -10102 F5H2T7 -10102 P43897 -10103 O60635 -10105 P30405 -10106 O14595 -10107 Q9UDY6 -10109 O15144 -10109 Q53R19 -10110 Q9HBY8 -10111 A5D6Y3 -10111 Q92878 -10112 O95235 -10113 Q53SZ8 -10113 Q9HCU5 -10114 Q9H422 -10116 Q9UK73 -10117 Q9NRM1 -10120 P42025 -10121 P61163 -10123 P56559 -10124 P40617 -10125 B2RA89 -10125 O95267 -10126 O96015 -10126 Q6FGD0 -10127 O14978 -10128 E5KNY5 -10128 P42704 -10129 Q5TBA9 -10130 Q15084 -10130 Q53RC7 -10131 Q12931 -10133 Q96CV9 -10134 B3KQ79 -10134 P51572 -10135 P43490 -10136 P09093 -10137 Q9NTZ6 -10138 B4DFU3 -10138 G3V465 -10138 Q8IY57 -10139 B3KTR4 -10139 B7ZKX7 -10139 Q13795 -10140 P50616 -10141 Q99440 -10142 Q5GIA7 -10142 Q6PJH3 -10142 Q99996 -10143 O75596 -10144 O94988 -10146 Q13283 -10146 Q5HYE9 -10146 Q5U0Q1 -10146 Q6ZP53 -10147 A8K5G0 -10147 Q8IX01 -10148 Q14213 -10149 A8K4P7 -10149 Q499H0 -10149 Q8IZP9 -10150 A2A3S3 -10150 Q5VZF2 -10152 Q9NYB9 -10153 Q03701 -10154 O60486 -10155 Q13263 -10156 O43374 -10157 A4D0W4 -10157 Q9UDR5 -10158 Q13113 -10159 O75787 -10160 Q5JVI9 -10160 Q9Y4F1 -10161 B3KVQ5 -10161 F2YGU4 -10161 P43657 -10162 Q6P1A2 -10163 B4DZN0 -10163 Q9Y6W5 -10164 Q8NCG5 -10165 Q546F9 -10165 Q9UJS0 -10166 Q9Y619 -10168 O14709 -10168 Q7Z6G1 -10168 Q86VG0 -10169 A6NL45 -10169 B5MCG1 -10169 B9A026 -10169 P84101 -10170 Q9BPW9 -10171 Q9Y2P8 -10172 Q9Y2P7 -10174 O60504 -10175 B2R4P1 -10175 O95406 -10178 B2RTR5 -10178 B7ZMH4 -10178 Q9UKZ4 -10179 Q9Y580 -10180 A8K6Q4 -10180 P78332 -10180 Q86SS3 -10181 P52756 -10184 Q6ZUX7 -10186 Q9Y693 -10188 B3KXJ4 -10188 Q07912 -10189 E9PB61 -10189 Q86V81 -10190 O14530 -10193 A6NFW0 -10193 Q9H4P4 -10194 Q6ZSZ6 -10195 A8JZZ6 -10195 Q92685 -10196 O60678 -10196 Q8WUV3 -10197 P61289 -10198 Q99550 -10199 O00566 -10200 Q99547 -10201 O75414 -10202 D3DS54 -10202 Q13268 -10203 Q16602 -10204 P61970 -10205 O60487 -10206 O60858 -10206 Q8N5I3 -10207 Q8NI35 -10208 A8K1B1 -10208 Q5W0Q7 -10209 P41567 -10209 Q6IAV3 -10210 Q9NS56 -10211 O75955 -10211 Q5ST80 -10212 O00148 -10213 O00487 -10213 Q96DE8 -10214 Q99909 -10214 Q9BRW7 -10215 Q13516 -10216 Q92954 -10217 O15194 -10218 F1T0A6 -10218 O43827 -10219 Q96E93 -10220 O95390 -10221 Q96RU8 -10223 Q5VZP6 -10223 Q99795 -10224 Q9Y2A4 -10225 P40200 -10226 O60664 -10227 Q14728 -10228 O43752 -10229 Q99807 -10231 B2R612 -10231 Q14206 -10232 Q13421 -10233 A8K8K2 -10233 Q53EV4 -10234 Q8N6Y2 -10235 Q7LDG7 -10236 O43390 -10236 Q0VGD6 -10236 Q6MZS5 -10237 P78383 -10238 P61962 -10239 P59780 -10240 Q92665 -10241 Q13137 -10242 Q9Y691 -10243 Q9NQX3 -10244 A8K403 -10244 Q7Z6M1 -10245 O60830 -10246 O00624 -10247 P52758 -10247 Q6IBG0 -10248 O75817 -10249 Q6IB77 -10250 Q8IYB3 -10251 O43610 -10252 O43609 -10253 O43597 -10254 O75886 -10256 Q53GM7 -10256 Q969H4 -10257 O15439 -10257 Q8IVZ4 -10260 E7EPL3 -10260 Q05C90 -10260 Q7Z401 -10261 O95976 -10262 B3KUJ0 -10262 Q15427 -10263 O75956 -10263 Q6IAV4 -10265 P78411 -10266 O60895 -10267 O60894 -10268 A4D2L1 -10268 O60896 -10269 O75844 -10270 O43823 -10272 O95633 -10273 Q9UNE7 -10274 Q6P275 -10274 Q8WVM7 -10276 Q5SQI5 -10276 Q5SQI7 -10276 Q7Z628 -10277 A8K8S9 -10277 O95155 -10278 O43281 -10279 Q9NQE7 -10280 A2A3U5 -10280 Q99720 -10281 P56555 -10282 O15155 -10282 Q53XK0 -10283 Q6UX04 -10284 O00422 -10285 O75940 -10286 B2R7W3 -10286 O75934 -10287 P49795 -10288 A2IXV5 -10288 Q8N423 -10289 O60739 -10289 Q6FG85 -10290 Q15772 -10291 E9PAW1 -10291 Q15459 -10293 Q9BWF2 -10294 O60884 -10295 A8MY43 -10295 O14874 -10295 Q96G95 -10296 Q7L5Y9 -10297 O95996 -10298 O96013 -10299 O60337 -10300 Q9BVA0 -10302 O75971 -10307 O95704 -10307 Q59EH2 -10307 Q96DX9 -10308 Q14586 -10309 P22674 -10311 O14972 -10312 Q13488 -10313 O95197 -10314 B2R602 -10314 O43813 -10314 Q53TN2 -10316 Q9HB89 -10317 Q9Y2C3 -10318 A4F1W8 -10318 A4F1W9 -10318 Q15025 -10318 Q6N077 -10319 Q8N2D6 -10319 Q9Y6N6 -10320 Q13422 -10321 P54108 -10322 Q6GMV2 -10324 O60662 -10325 Q5VZM2 -10326 O00241 -10326 Q5TFQ8 -10327 P14550 -10328 C9JB21 -10328 O43402 -10328 Q53Y03 -10329 Q9Y2B1 -10330 Q9Y2B0 -10331 Q9Y2A9 -10332 B4E2Z5 -10332 Q9H2X3 -10333 B2R933 -10333 Q9Y2C9 -10335 B7Z3T4 -10335 B7Z9A3 -10335 E9PQY6 -10335 F5H6A1 -10335 Q9Y6F6 -10336 Q3KNV8 -10342 G5E9V1 -10342 Q05BK6 -10342 Q92734 -10343 Q9NTG1 -10344 Q9Y258 -10345 Q13061 -10345 Q68D40 -10345 Q8IVK2 -10346 B4DQS5 -10346 Q8IYM9 -10347 B3KUJ3 -10347 Q8IZY2 -10349 Q8WWZ4 -10350 Q8IUA7 -10351 O94911 -10352 B1ALR1 -10352 Q9UGM6 -10360 O75607 -10361 Q86SE8 -10362 Q9P0W2 -10363 Q9NP66 -10365 Q8IUN4 -10365 Q9Y5W3 -10367 Q9BPX6 -10368 O60359 -10369 Q9Y698 -10370 D9ZGF1 -10370 Q99967 -10371 Q14563 -10376 P68363 -10379 Q00978 -10380 O95861 -10381 A8K854 -10381 Q13509 -10381 Q53G92 -10382 P04350 -10383 P68371 -10384 B4DWI7 -10384 E9PCP5 -10384 O00478 -10385 A6NM84 -10385 B4DE97 -10385 B4DQ01 -10385 E9PH07 -10385 Q8WVV5 -10388 Q8IWA1 -10388 Q9BX26 -10389 Q9UQR0 -10390 B3KN25 -10390 Q9Y6K0 -10391 Q9UQ03 -10392 Q9Y239 -10393 Q9UM13 -10394 Q9Y2Y8 -10395 A8K119 -10395 B4DR10 -10395 E9PF76 -10395 E9PGY9 -10395 Q86UC6 -10395 Q96QB1 -10396 Q32M35 -10396 Q9Y2Q0 -10397 Q92597 -10398 P24844 -10398 Q9BUF9 -10399 E9KL35 -10399 P63244 -10400 Q9UBM1 -10401 B3KNI3 -10401 Q9Y6X2 -10402 Q9Y274 -10403 A8K031 -10403 O14777 -10404 Q9Y646 -10406 Q14508 -10407 A8MZA0 -10407 E9PAK7 -10407 E9PFH0 -10407 Q08648 -10407 Q6PDA7 -10409 P80723 -10410 Q01628 -10410 Q53Y76 -10411 A8K2G5 -10411 Q99777 -10412 O95478 -10412 Q5J7U2 -10413 B4DTY1 -10413 B7ZA01 -10413 E3WEB6 -10413 E9PRV2 -10413 P46937 -10413 Q86T74 -10417 Q9BUD6 -10418 Q9HCB6 -10419 A8MZ91 -10419 O14744 -10420 Q5T422 -10420 Q96S53 -10421 O95400 -10422 Q9BSL1 -10423 A8K3L7 -10423 O14735 -10425 O95376 -10425 Q6IBL8 -10426 Q5T8L2 -10426 Q96CW5 -10427 O95487 -10428 Q9UEE9 -10430 A8MWW0 -10430 Q9BVK8 -10432 Q2PYN1 -10432 Q96PK6 -10434 O75608 -10434 Q6IAQ1 -10435 O14613 -10436 Q92979 -10437 P13284 -10438 Q13901 -10439 Q6IMJ7 -10439 Q6IMJ8 -10439 Q99784 -10440 Q99595 -10443 Q92802 -10443 Q9Y3H6 -10444 Q7Z7L7 -10445 Q96EZ8 -10446 O75325 -10447 Q92520 -10449 B3KNP8 -10449 P42765 -10450 Q3S611 -10450 Q5TGA3 -10450 Q9UNP9 -10451 O60498 -10451 Q9UKW4 -10452 O96008 -10454 A8K6K3 -10454 Q15750 -10455 O75521 -10456 O00165 -10457 Q14956 -10457 Q96F58 -10458 Q9UQB8 -10459 Q9UI95 -10460 Q9Y6A5 -10461 Q12866 -10462 Q8IUN9 -10463 Q6PML9 -10464 Q8WXW3 -10465 O43447 -10465 Q6FH36 -10466 Q9UP83 -10467 O43257 -10468 P19883 -10469 O43615 -10471 O15212 -10471 Q5STK2 -10472 Q99592 -10473 O00479 -10474 O75528 -10475 O00635 -10476 A0PJH2 -10476 O75947 -10477 Q969T4 -10478 O43808 -10479 B4DU30 -10479 Q5JPP8 -10479 Q92581 -10480 Q7L2H7 -10481 Q4KR72 -10481 Q92826 -10482 Q59E96 -10482 Q9UBU9 -10483 B4DJW8 -10483 Q15437 -10484 B3KXI2 -10484 Q15436 -10485 Q13536 -10486 P40123 -10486 Q5JPJ8 -10487 D3DPU2 -10487 Q01518 -10488 O43889 -10489 Q15345 -10490 Q9UEU0 -10491 O75718 -10492 B7Z645 -10492 O60506 -10492 Q59GL1 -10493 Q99536 -10494 O00506 -10495 Q16206 -10497 O14795 -10497 Q4LE73 -10498 Q86X55 -10499 Q15596 -10500 Q9H3T2 -10501 Q9H3T3 -10505 O95754 -10507 Q92854 -10512 B4E2I9 -10512 Q99985 -10513 Q92624 -10514 Q9BQG0 -10516 Q6IAL4 -10516 Q9UBX5 -10517 Q5XX13 -10518 O75838 -10518 Q05BT6 -10519 Q99828 -10520 B9ZVW1 -10520 Q13398 -10521 Q59F66 -10521 Q92841 -10522 O75398 -10523 Q8IWX8 -10524 B4E3C7 -10524 Q92993 -10525 A8C1Z0 -10525 Q6IN67 -10525 Q9Y4L1 -10526 B7Z7M3 -10526 O15397 -10527 B3KNG9 -10527 O95373 -10528 O00567 -10529 O76041 -10529 Q59FZ8 -10529 Q70I54 -10531 B4E0J8 -10531 C9JSL2 -10531 E7ES23 -10531 Q5JRX3 -10533 B4E170 -10533 E9PB95 -10533 O95352 -10534 O60232 -10535 O75792 -10536 Q8IVL6 -10537 O15205 -10538 Q16520 -10539 O76003 -10540 Q13561 -10541 Q92688 -10542 O43504 -10544 Q9UNN8 -10548 O15321 -10548 Q86SZ6 -10549 Q13162 -10550 O75915 -10551 O95994 -10551 Q4JM46 -10552 Q92747 -10553 Q9BUP3 -10554 Q99943 -10555 O15120 -10556 E9PB02 -10556 P78346 -10557 P78345 -10558 O15269 -10558 Q96IX6 -10559 P78382 -10559 Q5W1L8 -10560 O60779 -10561 Q8TCB0 -10562 Q6UX06 -10563 O43927 -10563 Q53X90 -10564 Q59FR3 -10564 Q86TH5 -10564 Q9Y6D5 -10565 Q9Y6D6 -10566 O75969 -10567 Q9UI14 -10568 O95436 -10569 O95391 -10570 O14531 -10572 O15304 -10573 Q13084 -10574 A8MWI8 -10574 B7Z4T9 -10574 B7Z4Z7 -10574 Q99832 -10575 P50991 -10576 B7ZAT2 -10576 P78371 -10577 P61916 -10578 P22749 -10579 O95359 -10580 Q9BX66 -10581 Q01629 -10584 Q9Y6Z7 -10585 Q9Y6A1 -10586 Q9Y586 -10587 Q9NNW7 -10588 P49914 -10589 Q14919 -10590 O76038 -10591 O43598 -10592 B3KMB1 -10592 O95347 -10592 Q05BV1 -10592 Q05D74 -10592 Q6IPS5 -10592 Q7Z2X1 -10594 Q6P2Q9 -10595 Q76MJ5 -10598 O95433 -10599 Q05CV5 -10599 Q9Y6L6 -10600 Q9Y5T5 -10602 Q9UKI2 -10603 O14492 -10605 A6NKV8 -10605 Q9H074 -10606 P22234 -10607 Q12788 -10608 Q14582 -10609 Q92791 -10610 Q9UJ37 -10611 Q96HC4 -10612 B7Z5E6 -10612 B7Z5Y8 -10612 F5H2Q8 -10612 O75382 -10613 D3DR65 -10613 O75477 -10614 O94992 -10615 Q96R06 -10616 Q9BYM8 -10617 O95630 -10618 O43493 -10620 Q8IVW6 -10621 Q9H1D9 -10622 O15318 -10623 Q9BUI4 -10625 Q9Y6Y0 -10626 O95361 -10627 P19105 -10627 Q53X45 -10628 Q9H3M7 -10629 A8K0D4 -10629 Q9Y6J9 -10630 E9PB68 -10630 F6QWX5 -10630 Q86YL7 -10631 Q15063 -10632 O75964 -10633 Q92737 -10634 A0A5E8 -10634 Q99501 -10635 Q96B01 -10636 O43566 -10637 O75610 -10638 Q15513 -10640 O00471 -10640 Q8IW24 -10641 Q8WTW4 -10642 C9JT33 -10642 Q9NZI8 -10643 O00425 -10644 Q9Y6M1 -10645 Q96RR4 -10647 O95969 -10648 O95968 -10650 B4E0C9 -10650 Q96N28 -10651 O75431 -10652 A4D2J0 -10652 O15498 -10653 B4DLU1 -10653 O43291 -10654 Q15126 -10654 Q6FGV9 -10655 Q05C20 -10655 Q5HYK2 -10655 Q9Y5R5 -10656 O75525 -10657 Q07666 -10658 B4E2U5 -10658 F8W940 -10658 Q92879 -10659 E9PC62 -10659 O95319 -10660 P52954 -10661 Q13351 -10663 A0N0N3 -10663 O00574 -10664 B5MC38 -10664 P49711 -10664 Q59EL8 -10665 Q13647 -10665 Q5SRN2 -10666 Q15762 -10667 O95363 -10668 Q99675 -10669 B4DXY8 -10669 B5MCB7 -10669 B5MCP5 -10669 E7EU99 -10669 Q99674 -10670 Q7L523 -10671 O00399 -10672 Q14344 -10673 Q9Y275 -10675 B7Z2E0 -10675 O95196 -10677 O75366 -10678 Q9NY97 -10681 O14775 -10682 Q15125 -10683 E9PFG2 -10683 Q8NBS4 -10683 Q9NYJ7 -10686 Q9Y5I7 -10687 Q5U5Z3 -10687 Q9UL42 -10690 Q9Y231 -10691 B1AT47 -10691 B2RCN8 -10691 Q9Y692 -10692 O14718 -10693 B4DX20 -10693 B4DYB0 -10693 Q92526 -10694 P50990 -10695 Q9BT09 -10699 Q9Y5Q5 -10712 P81408 -10712 Q96AD8 -10712 Q96H71 -10713 Q53GS9 -10714 Q15054 -10715 P27544 -10716 Q16650 -10717 Q9Y6B7 -10718 B3KVG8 -10718 B9EGV5 -10718 P56975 -10720 O75310 -10721 O75417 -10721 Q59EE4 -10723 Q9Y666 -10724 E9PGF9 -10724 O60502 -10725 A2RRB4 -10725 E9PHR7 -10725 O94916 -10725 Q7LA65 -10725 Q96QH3 -10726 Q9Y266 -10728 Q15185 -10730 Q96TA2 -10732 Q86TP4 -10732 Q9UL49 -10733 O00444 -10734 Q9UJ98 -10735 Q6MZM3 -10735 Q6MZP3 -10735 Q8N3U4 -10736 Q8TBA2 -10736 Q9NPC8 -10738 A2A279 -10738 O75679 -10738 Q8N5R4 -10739 O75678 -10741 O75884 -10742 B2RBE9 -10742 B3KPD7 -10742 B4DQM9 -10742 Q9Y5P3 -10743 Q7Z5J4 -10744 Q9NZH5 -10745 Q9UMS5 -10746 Q9Y2U5 -10747 O00187 -10749 O43896 -10750 Q13588 -10752 O00533 -10753 O14815 -10753 Q6PIV8 -10755 A8K4I3 -10755 O14908 -10758 O43734 -10758 Q7Z6Q1 -10761 Q9HBJ0 -10762 Q9UKX7 -10763 P48681 -10763 Q9H6U9 -10765 Q9UFD3 -10765 Q9UGL1 -10766 Q14106 -10767 D9YZV0 -10767 Q9Y450 -10768 O43865 -10769 Q9NYY3 -10771 B7Z293 -10771 B7Z2J6 -10771 Q15326 -10771 Q2LD45 -10771 Q2LD46 -10771 Q2LD47 -10771 Q2LD48 -10771 Q5BJG6 -10771 Q5UGI2 -10771 Q8N4B3 -10772 B4DJP9 -10772 O75494 -10772 Q5JRI3 -10773 Q15916 -10775 O95707 -10776 P56211 -10777 A8K1F3 -10777 Q9UBL0 -10780 Q14588 -10781 Q14584 -10782 Q96GC6 -10783 Q9HC98 -10785 P57081 -10786 B7Z511 -10786 O00476 -10787 Q9Y2A7 -10788 Q13576 -10788 Q59HA3 -10791 O95183 -10791 Q6FG93 -10793 Q14593 -10794 Q14592 -10795 F5GZJ4 -10795 F5H1T2 -10795 F5H670 -10795 F5H848 -10795 Q14587 -10795 Q2TB61 -10795 Q8TDG8 -10797 P13995 -10798 Q13606 -10799 O75818 -10800 Q9Y271 -10801 Q9UHD8 -10802 O95486 -10803 P51686 -10804 O95452 -10806 Q86SQ7 -10807 Q96C92 -10808 Q92598 -10809 Q9Y365 -10810 Q5T8P4 -10810 Q86VQ2 -10810 Q9UPY6 -10811 Q86UR1 -10813 B4DQ08 -10813 E9PEL7 -10813 Q9BVJ6 -10814 Q6PUV4 -10815 F1T0G1 -10815 O14810 -10816 P49223 -10817 O43559 -10818 Q8WU20 -10825 A8K327 -10826 Q96IV6 -10827 Q9NRY5 -10838 A6NFS0 -10840 O75891 -10841 O95954 -10842 B4DE58 -10842 O96001 -10844 Q9BSJ2 -10845 O76031 -10846 Q9ULW9 -10846 Q9Y233 -10847 Q6ZRS2 -10848 Q8WUF5 -10849 O15446 -10850 Q5VZ77 -10850 Q9Y4X3 -10855 A9JIG7 -10855 C7F7I3 -10855 E9PCA9 -10855 E9PGR1 -10855 Q9Y251 -10856 Q9Y230 -10857 O00264 -10857 Q6IB11 -10858 Q9Y6A2 -10859 A2IXV4 -10859 Q8NHL6 -10861 Q96BK0 -10861 Q9H2B4 -10863 Q9UKQ2 -10864 Q9Y694 -10865 Q03989 -10867 O75954 -10868 Q9Y2K6 -10869 A5PKX8 -10869 B4DGT3 -10869 B4DTZ0 -10869 E7EN22 -10869 E7ETS0 -10869 E9PEG8 -10869 O94966 -10870 Q9UBK5 -10871 Q08708 -10873 B2R995 -10873 Q16798 -10873 Q6TCH8 -10873 Q8TBJ0 -10874 P48645 -10875 A4D1B8 -10875 Q14314 -10876 Q14507 -10877 A8K9N7 -10877 C9J7J7 -10877 Q5DVJ7 -10877 Q92496 -10878 B4DPR0 -10878 Q02985 -10879 P02814 -10879 Q504X8 -10880 Q9Y614 -10881 Q9Y615 -10882 O75973 -10884 Q9NP92 -10885 Q5TDG3 -10885 Q9UNX4 -10886 A0PJM9 -10886 Q9Y5X5 -10887 Q8TCW9 -10888 Q9NYM4 -10890 P61026 -10891 Q4W5M7 -10891 Q9UBK2 -10892 Q9UDY8 -10893 Q86VV6 -10893 Q9Y5R2 -10894 B2R672 -10894 Q9Y5Y7 -10896 Q9Y5M6 -10897 A8K509 -10897 O95070 -10898 O95639 -10899 O76095 -10900 Q59EK9 -10901 Q9BTZ2 -10902 Q9H0E9 -10903 A4FU01 -10904 P62952 -10905 O60476 -10906 O14545 -10907 P83876 -10908 B4DFB9 -10908 B7Z7T2 -10908 F5H5K9 -10908 Q8IY17 -10910 Q9Y2Z0 -10911 A0AVP6 -10911 O95399 -10912 O95257 -10912 Q5VZ87 -10913 Q9UNE0 -10914 P51003 -10915 O14776 -10916 Q9UNF1 -10917 Q6UXE8 -10919 Q96KQ7 -10920 A8K1H6 -10920 Q53QS9 -10920 Q99627 -10921 D3DU92 -10921 Q15287 -10922 Q14296 -10922 Q8IVA0 -10923 P53999 -10923 Q6IBA2 -10924 Q92484 -10926 Q9UBU7 -10927 A8K0X6 -10927 Q9Y657 -10928 Q15311 -10929 Q9BRL6 -10930 Q9Y235 -10933 Q9UBU8 -10935 E9PH29 -10935 P30048 -10936 O95800 -10938 B2R5U3 -10938 Q9H4M9 -10939 Q8TA92 -10939 Q9Y4W6 -10940 Q96F88 -10940 Q99575 -10941 E9PDM7 -10941 Q9Y4X1 -10942 Q9Y6M0 -10943 A6NCU2 -10943 A6NHW8 -10943 B4DUV8 -10943 Q8N5Y2 -10944 O00193 -10945 P24390 -10946 B3KY12 -10946 Q12874 -10947 P53677 -10948 A8MXA4 -10948 B4DUY1 -10948 F5H0G2 -10948 Q14849 -10949 Q13151 -10950 Q14201 -10950 Q6IAU3 -10951 P83916 -10951 Q6IBN6 -10952 P60468 -10953 Q15785 -10954 Q14554 -10955 Q13530 -10956 A6NLB2 -10956 E9PEY5 -10956 Q13438 -10956 Q9BW99 -10957 Q12796 -10959 Q15363 -10959 Q6FHT8 -10960 Q12907 -10961 C9J183 -10961 P30040 -10962 Q13015 -10962 Q6FGF7 -10963 P31948 -10964 Q53G44 -10965 P49753 -10966 Q12829 -10969 Q6IB29 -10969 Q99848 -10970 Q07065 -10971 P27348 -10972 P49755 -10973 Q4G1A0 -10973 Q8N3C0 -10973 Q9H5A2 -10974 Q15847 -10974 Q5TBU5 -10975 O14957 -10978 Q92989 -10979 B5TJY2 -10979 Q96AC1 -10980 Q7L5N1 -10981 Q13637 -10982 E9PHR3 -10982 G5E9I6 -10982 Q15555 -10983 Q14094 -10985 Q92616 -10987 Q92905 -10988 P50579 -10989 Q16891 -10990 O75023 -10991 Q99624 -10992 Q13435 -10993 P20132 -10993 Q8WW81 -10994 A1L0T0 -10998 Q9Y2P5 -10999 Q6P1M0 -11000 Q5K4L6 -11001 O14975 -11001 Q6PF09 -11004 Q99661 -11005 Q9NQ38 -11006 Q8NHJ6 -11007 Q15834 -11009 Q13007 -11009 Q2YHE5 -11009 Q53XZ7 -11009 Q5YLN8 -11010 P48060 -11011 Q86UE8 -11012 Q0WXX5 -11012 Q8IXD7 -11012 Q9UBX7 -11013 P0CG34 -11013 P0CG35 -11014 P33947 -11015 O43731 -11016 A5D6Y4 -11016 B2RMP1 -11016 P17544 -11016 Q8IVR8 -11017 A8K513 -11017 Q8WVK2 -11018 Q13445 -11019 O43766 -11020 E9PE51 -11020 Q9BW83 -11021 B4E390 -11021 Q15286 -11022 Q5SZR5 -11022 Q9Y2W6 -11023 Q5SQQ9 -11024 O75019 -11025 O75022 -11026 Q8N6C8 -11027 Q8N149 -11030 Q93062 -11031 Q13636 -11033 O75689 -11034 B4DYA6 -11034 P60981 -11035 Q9Y572 -11036 Q9UNN4 -11037 B2RB25 -11037 Q9Y6Q2 -11040 Q9P1W9 -11041 O43505 -11043 Q9UJV3 -11044 B4E0T3 -11044 B7ZLL4 -11044 Q5XG87 -11045 O00322 -11046 Q76EJ3 -11047 Q16186 -11051 O43809 -11052 Q16630 -11054 Q9NZT2 -11055 C9JPU1 -11055 Q9BS86 -11056 Q59H21 -11056 Q9Y2R4 -11057 P08910 -11059 Q5YLC1 -11059 Q9H0M0 -11060 O00308 -11060 Q6ZTQ5 -11061 O75829 -11062 A4D0R5 -11062 O95620 -11063 O94993 -11064 Q7Z7A1 -11065 A6NP33 -11065 E1P5N7 -11065 G3XAB7 -11065 O00762 -11065 Q5TZN3 -11066 Q16560 -11067 B2R6A1 -11067 Q9NTK1 -11068 O14569 -11069 Q8WZA2 -11070 Q12893 -11072 O95147 -11072 Q6FI36 -11073 A0AV47 -11073 A7E2X7 -11073 Q05BV8 -11073 Q92547 -11074 Q2L6J1 -11074 Q9BZY9 -11075 G3V110 -11075 Q93045 -11076 O94811 -11076 Q4L233 -11077 O75031 -11077 Q6IAT7 -11078 F2Z2W0 -11078 F8W6V6 -11078 Q9H2D6 -11079 O15258 -11079 Q5T094 -11080 Q9UDY4 -11081 O60938 -11082 Q3V4E3 -11082 Q9NQ30 -11083 Q9BTC0 -11085 Q8TBZ7 -11085 Q9UKF2 -11086 Q4W5F3 -11086 Q9UKF5 -11091 P61964 -11092 Q96E40 -11093 B3KWF7 -11093 Q76LX8 -11094 B7Z3T8 -11094 B7Z5E1 -11094 F5GXX4 -11094 Q9UGQ2 -11095 Q5FWF1 -11095 Q9UP79 -11096 Q9UNA0 -11097 O15504 -11098 O95084 -11099 Q16825 -11100 Q9BUJ2 -11101 O95260 -11102 O95059 -11103 Q13601 -11104 A8K7S5 -11104 O75449 -11105 Q9NQW5 -11107 Q9NQX1 -11108 B3KPI0 -11108 Q9UKN5 -11112 P31937 -11112 Q546Z2 -11113 O14578 -11113 Q2M5E1 -11116 O95684 -11117 Q9Y6C2 -11118 A8K4B5 -11118 B4DRT7 -11118 B4E103 -11118 F5H791 -11118 F8W6E0 -11118 P78410 -11119 A8K547 -11119 B4DRM2 -11119 E9PGB4 -11119 O00481 -11120 B4DLP9 -11120 E9PGR4 -11120 Q59EN4 -11120 Q7KYR7 -11120 Q96AV7 -11122 B1AJR7 -11122 O14522 -11123 A4GU14 -11123 A4LA69 -11123 E3VWE2 -11123 E5L4P0 -11123 E7ENV1 -11123 E7EWD8 -11123 Q5ECL3 -11123 Q9UKA8 -11124 Q549F0 -11124 Q9UNN5 -11126 O95971 -11126 Q6FH89 -11127 Q05CT3 -11127 Q9Y496 -11128 O14802 -11129 Q8N2M8 -11130 A6NNV6 -11130 O95229 -11131 Q9UMQ6 -11132 Q9HC96 -11133 Q9Y664 -11135 Q00587 -11136 P82251 -11137 Q13610 -11138 O95759 -11140 Q16543 -11141 Q9NZN1 -11142 Q549H9 -11142 Q9Y2B9 -11143 B4DF85 -11143 B4DFB4 -11143 B4DFE0 -11143 B4DGY4 -11143 E7ER15 -11143 G5E9K7 -11143 O95251 -11144 Q14565 -11145 P53816 -11146 Q92990 -11147 Q5VZP2 -11147 Q9XRX5 -11148 Q9UM44 -11149 Q8NE79 -11151 P31146 -11152 Q9Y484 -11153 Q9BVA6 -11154 Q9Y587 -11155 B4E3K3 -11155 O75112 -11156 O75365 -11157 P62312 -11157 Q4W5J5 -11158 Q9UNT1 -11159 Q9UBK7 -11160 O94905 -11161 Q6FII3 -11161 Q86TW5 -11161 Q9UKR5 -11162 B4DG76 -11162 P53370 -11163 Q9NZJ9 -11164 Q9UKK9 -11165 O95989 -11166 Q9Y651 -11167 Q12841 -11168 O75475 -11169 F6W0U7 -11169 O75717 -11170 O95990 -11170 Q6IAM1 -11171 Q9Y3F4 -11172 Q9Y581 -11173 Q9UFZ4 -11173 Q9UKP4 -11174 Q5IR90 -11174 Q9UKP5 -11176 Q9UIF9 -11177 Q9NRL2 -11178 Q9Y250 -11179 Q9NRM2 -11180 B3KRR8 -11180 Q9H9M3 -11180 Q9NNW5 -11181 O43280 -11182 Q9UGQ3 -11183 B3KWC4 -11183 Q9Y4K4 -11184 Q92918 -11185 B8ZZ69 -11185 O95050 -11185 Q3MIB5 -11186 Q5TZT2 -11186 Q9NS23 -11187 Q9Y446 -11188 Q9Y2I1 -11189 Q59G45 -11189 Q5SZQ7 -11189 Q5SZQ8 -11190 Q9BV73 -11193 O75554 -11194 Q9NUT2 -11196 Q9Y6Y8 -11197 Q9Y5W5 -11198 Q9Y5B9 -11199 Q9UJ72 -11200 O96017 -11201 Q9UNA4 -11202 O60259 -11211 Q6NSL8 -11211 Q9ULW2 -11212 O94903 -11213 Q9Y616 -11214 A8MYJ1 -11214 Q12802 -11215 Q9UKA4 -11216 O43572 -11217 Q9Y2D5 -11218 Q9H4N4 -11218 Q9UHI6 -11219 Q9BQ50 -11221 Q9Y6W6 -11222 P09001 -11224 P42766 -11226 Q8NCL4 -11227 A5PKZ1 -11227 Q7Z7M9 -11228 A8K8G8 -11228 Q8NHQ8 -11230 O60831 -11231 Q9UGP8 -11232 E5KS15 -11232 Q9UHN1 -11234 Q9UPZ3 -11235 Q9BUL8 -11236 Q8WU17 -11237 Q9Y225 -11238 Q9Y2D0 -11240 Q9Y2J8 -11243 Q5TCK1 -11243 Q6P1K2 -11243 Q6ZVE6 -11244 Q9UKY1 -11245 Q14439 -11247 O95158 -11248 O95157 -11249 O95156 -11250 B5B0C1 -11250 O43898 -11250 Q9Y5Y3 -11251 Q9Y5Y4 -11252 Q6FIA3 -11252 Q9UNF0 -11253 Q9UKM7 -11254 Q9UN76 -11255 Q9Y5N1 -11258 O75935 -11259 Q4L180 -11260 A8KA19 -11260 O43592 -11261 Q99653 -11262 B4DVW8 -11262 Q13342 -11262 Q3KR17 -11262 Q6NSG4 -11262 Q8IWJ1 -11264 A2A2I7 -11264 Q9Y6I8 -11266 Q9UNI6 -11267 Q96H20 -11269 Q9UMR2 -11270 B0S7R0 -11270 Q8IXM6 -11272 F5H0D7 -11272 Q16378 -11273 A8K1R6 -11273 Q8WWM7 -11274 Q53Y90 -11274 Q9UMW8 -11275 B4DFH7 -11275 F5H6M3 -11275 O95198 -11276 A8MWU4 -11276 B7ZKZ2 -11276 Q9UMZ2 -11277 Q9NSU2 -11278 Q8WWI3 -11278 Q9Y4X4 -11279 B4DJN3 -11279 E7EQQ8 -11279 O95600 -11280 Q9UI33 -11281 P78424 -11282 A8MPR0 -11282 Q9UQ53 -11283 P98187 -11284 Q96T60 -11285 Q9UBV7 -11309 B4DGA9 -11309 O94956 -11311 Q9NRW7 -11313 O95372 -11314 Q9UGN4 -11315 Q99497 -11316 A6NE29 -11316 A6NKA3 -11316 O14579 -11317 Q9UBG7 -11318 O15218 -11319 C9JX46 -11319 E9PAW8 -11319 O95905 -11320 B4E2R6 -11320 E9PEN2 -11320 Q9UM21 -11321 B4DQJ5 -11321 B4DQM4 -11321 B4DXU4 -11321 B5MBZ5 -11321 Q9HCN4 -11322 Q7Z403 -11325 Q86XP3 -11326 C9J1L3 -11326 Q9Y279 -11328 A7YQ73 -11328 O95302 -11329 Q15208 -11330 Q99895 -11331 Q99623 -11332 O00154 -11333 Q13442 -11334 O75896 -11335 A4D177 -11335 Q13185 -11336 O60645 -11336 Q69YP2 -11336 Q6P2E8 -11337 O95166 -11337 Q6IAW1 -11338 P26368 -11339 O43482 -11340 Q96B26 -11341 O75711 -11341 Q6FGG5 -11342 O43567 -11343 B3KRC2 -11343 Q99685 -11344 Q6IBS0 -11345 P60520 -11345 Q6FG91 -11346 Q8N3V7 -22794 O15234 -22795 Q14112 -22796 B1ALW7 -22796 Q14746 -22796 Q86U99 -22797 O14948 -22798 A4D0S4 -22800 B7Z6C4 -22800 B7Z7H6 -22800 P62070 -22801 B3KTN6 -22801 Q9UKX5 -22802 Q14CN2 -22803 Q9H0D6 -22806 Q9UKT9 -22807 Q9UKS7 -22808 B4DIK0 -22808 O14807 -22808 Q6FGP0 -22808 Q8WVM9 -22809 Q9Y2D1 -22818 P61923 -22820 Q9Y678 -22821 Q14644 -22822 Q8WV24 -22823 B4DZ69 -22823 B4DZG1 -22823 Q7Z534 -22823 Q96G26 -22823 Q9Y483 -22824 A2ICT2 -22824 O95757 -22826 O75937 -22827 Q9UHX1 -22828 Q05BU5 -22828 Q8NDE9 -22828 Q9UPN6 -22829 F5H6W0 -22829 Q8N5B6 -22829 Q8NFZ3 -22832 Q5TB80 -22834 A8K9F2 -22834 Q9Y2D9 -22835 D3Y2A0 -22835 Q9Y2G7 -22836 O94955 -22837 Q53SF7 -22838 Q7L0R7 -22839 Q9Y2H0 -22841 Q7L804 -22843 Q8WY54 -22844 Q5SYB0 -22845 Q9UPQ8 -22846 Q7L8A9 -22847 Q8TCN5 -22848 Q2M2I8 -22849 B3KXC1 -22849 Q5QP71 -22849 Q8NE35 -22850 Q6IQ32 -22852 Q9UPS8 -22853 Q8IWU2 -22854 Q5IEC3 -22854 Q5IEC6 -22854 Q5IEC8 -22854 Q9Y2I2 -22856 Q86X52 -22858 B3KQG4 -22858 Q9UPZ9 -22859 O94910 -22861 E9PE50 -22861 Q9C000 -22861 Q9H5Z7 -22862 Q9Y2H6 -22863 Q6ZNE5 -22864 Q9Y2K5 -22865 O94933 -22866 B3KPN2 -22866 B4DGR4 -22866 B7ZLJ1 -22866 Q8WXI2 -22868 Q9NYY8 -22869 Q5SZP5 -22869 Q9Y2H8 -22870 Q9UPN7 -22871 Q8N2Q7 -22872 B4DIW6 -22872 O94979 -22873 Q86YF9 -22874 Q96FR0 -22874 Q9Y2H5 -22875 Q9Y6X5 -22876 Q5W135 -22876 Q9Y2H2 -22877 Q9HAP2 -22878 Q9Y2L5 -22879 Q6ZR87 -22879 Q7L1V2 -22880 Q9Y6X9 -22881 B3KUC3 -22881 B7Z3D2 -22881 Q9Y2G4 -22882 Q9Y6X8 -22883 B3KMD3 -22883 O94985 -22884 Q9Y2I8 -22885 O94929 -22887 Q9UPW0 -22888 O94941 -22888 Q86X87 -22889 Q7Z7F0 -22890 Q9Y2K1 -22891 Q70YC4 -22891 Q70YC5 -22893 Q8TBE0 -22894 Q9Y2L1 -22895 Q9Y2J0 -22897 Q9UPV0 -22898 A2RUS2 -22899 O94989 -22900 B5KVR6 -22900 B7Z4A2 -22900 E5RFV9 -22900 E9PEM7 -22900 G3XAM9 -22900 Q9Y2G2 -22901 Q96EG1 -22902 Q7L099 -22903 Q9Y2F9 -22904 Q9Y2G9 -22905 A8MTV8 -22905 B3KRX8 -22905 E9PBC2 -22905 O95208 -22905 Q52LD0 -22906 Q9UPV9 -22907 Q7L2E3 -22908 Q9NTJ5 -22909 Q9Y2M0 -22911 A8MX09 -22911 O94967 -22913 Q53GL6 -22913 Q9UKM9 -22914 P26718 -22915 Q13201 -22916 E9PAR5 -22916 P52298 -22917 P60852 -22918 Q9NPY3 -22919 Q15691 -22920 B1AKU4 -22920 B1AKU5 -22920 B7Z8A3 -22920 F5H591 -22920 Q92845 -22921 Q9Y3D2 -22924 Q6FHB0 -22924 Q9UPY8 -22925 B7ZML4 -22925 Q13018 -22926 A8K383 -22926 P18850 -22927 Q5JVS0 -22928 Q8N9T3 -22928 Q99611 -22929 B4DWK0 -22929 D3DRS9 -22929 P49903 -22929 Q5T5U9 -22930 B9A6J2 -22930 C9J837 -22930 Q15042 -22931 Q9NP72 -22932 F6STJ3 -22932 Q6PJE2 -22933 Q8IXJ6 -22934 P49247 -22936 O00472 -22936 Q59FW6 -22936 Q7Z656 -22937 Q12770 -22938 Q13573 -22941 C0SPH0 -22941 Q9UPX8 -22943 O94907 -22944 O60870 -22947 F5GZ66 -22948 P48643 -22949 B4DPK3 -22949 F5GY50 -22949 Q14914 -22950 Q9BWU0 -22953 Q9UBL9 -22954 Q13049 -22955 B3KMZ7 -22955 B4DRQ8 -22955 Q96GD3 -22974 Q643R0 -22974 Q9ULW0 -22976 Q6ZW49 -22977 O95154 -22978 A8K6K2 -22978 P49902 -22979 B3KT90 -22979 Q9Y2G0 -22980 Q9BQ70 -22981 Q9Y2I6 -22982 Q86XV3 -22982 Q9Y2E4 -22983 Q9Y2H9 -22984 Q14690 -22985 B4DQZ7 -22985 Q9UKV3 -22986 Q9UPU3 -22987 Q496J9 -22989 Q9Y2K3 -22990 Q96RV3 -22992 Q9Y2K7 -22993 Q12766 -22993 Q562E5 -22994 Q9UPN4 -22995 O94986 -22995 Q3B7A2 -22996 G3XAF8 -22996 Q5SRH9 -22997 Q8N7W7 -22997 Q9UPX0 -22998 E9PHM7 -22998 Q9UPQ0 -22999 B7Z2M0 -22999 B7Z2Q9 -22999 B7Z3S3 -22999 B7Z6S2 -22999 B7Z9Z3 -22999 E9PCB7 -22999 E9PCZ1 -22999 E9PF48 -22999 E9PHF5 -22999 Q3ZCW0 -22999 Q86UR5 -23001 Q8IZQ1 -23002 Q9Y4D1 -23005 O60336 -23007 Q4KWH8 -23008 Q6PID8 -23011 Q9UL25 -23012 Q9Y2H1 -23013 Q96T58 -23014 O94952 -23014 Q4G104 -23014 Q8IUQ5 -23015 A7E2F4 -23016 B2RDZ9 -23016 Q15024 -23017 Q9BWQ8 -23019 A5YKK6 -23020 O75643 -23022 B2RTX2 -23022 B3KTG2 -23022 B7ZMM5 -23022 Q8WX93 -23023 E9PC87 -23023 O94876 -23024 Q9UPQ7 -23025 Q9UPW8 -23026 B4DZI1 -23026 Q9Y6X6 -23028 O60341 -23029 P42696 -23030 O94953 -23031 O60307 -23032 Q8TEY7 -23033 B2RWN9 -23033 Q5JWR5 -23034 G3V2R1 -23034 Q8WW19 -23034 Q9UPU9 -23035 Q3ZCW4 -23035 Q6ZVD8 -23036 O60281 -23036 Q3LIB3 -23036 Q6P495 -23036 Q6ZS01 -23036 Q6ZW83 -23037 O15018 -23038 Q8N5D0 -23039 Q9UIA9 -23040 Q49A74 -23040 Q9UL68 -23041 Q7Z3U7 -23042 Q6P996 -23042 Q6XYB5 -23043 Q9UKE5 -23046 B2RP62 -23046 B7ZMI0 -23046 O75037 -23046 Q2UVF0 -23047 Q9NTI5 -23048 Q96RU3 -23049 Q96Q15 -23051 Q9H4I2 -23052 O94919 -23053 A7E2V4 -23054 F6M2K2 -23054 Q14686 -23057 Q9BZQ4 -23059 Q96AJ1 -23060 O15014 -23061 B3KM54 -23061 Q66K14 -23061 Q9BW24 -23062 Q9UJY4 -23063 Q7Z5K2 -23064 Q7Z333 -23065 Q8N766 -23066 E9KL24 -23066 O75155 -23067 Q9UPS6 -23070 Q8N1G2 -23071 Q9BS26 -23072 Q76N89 -23074 A0JNW5 -23075 Q9UH65 -23076 Q14684 -23077 O75592 -23078 A3KMH1 -23080 Q8NBF6 -23081 B4E142 -23081 B4E1Y4 -23081 B4E239 -23081 B7Z3V6 -23081 F5H347 -23081 F5H7P0 -23081 Q9H3R0 -23082 Q5VV67 -23085 Q8IUD2 -23086 Q149M6 -23087 Q9UPQ4 -23089 B4DSP0 -23089 Q86TG7 -23090 B3KNG7 -23090 Q2M1K9 -23091 A0PJJ2 -23091 Q5T200 -23092 Q9UNA1 -23093 Q6EMB2 -23094 O60292 -23094 Q8IUV1 -23095 O60333 -23096 Q5JU85 -23097 Q9BWU1 -23098 Q6SZW1 -23099 O43298 -23099 Q5JU96 -23101 Q86YR7 -23102 B2RTQ2 -23102 Q9UPU7 -23105 Q6MZW2 -23107 Q92552 -23108 Q684P5 -23109 O94850 -23111 Q8N0X7 -23112 Q9UPQ9 -23113 Q8IWT3 -23114 B4DRH7 -23114 O94856 -23116 Q6P183 -23116 Q9Y4F4 -23117 B4DG78 -23117 Q92617 -23118 B4DIR9 -23118 Q9NYJ8 -23119 Q96JB3 -23120 O94823 -23122 B2RTR1 -23122 O75122 -23125 E7EWU5 -23125 O94983 -23126 B4DTP8 -23126 B4DYL9 -23126 B7ZBY5 -23126 E9PM80 -23126 Q7Z3K3 -23127 Q8IYK4 -23129 Q9Y4D7 -23130 Q2TAZ0 -23131 Q9UKJ3 -23132 B3KV54 -23132 Q9Y4B4 -23133 B7Z911 -23133 O95327 -23133 Q9UPP1 -23135 O15054 -23136 Q9Y2J2 -23137 Q8IY18 -23138 O15049 -23139 Q6P0Q8 -23140 O43149 -23141 B3KN97 -23141 Q86XL3 -23142 Q92564 -23143 B7ZLL5 -23143 Q17R43 -23143 Q9Y2L9 -23144 Q8IXZ2 -23145 A2VEC9 -23148 O15069 -23149 B4E120 -23149 B7ZAZ3 -23149 O14526 -23150 B3KNA2 -23150 Q2TB00 -23150 Q9Y2L6 -23151 Q6IC98 -23152 Q96RK0 -23154 Q9UBB6 -23155 Q96S66 -23157 Q14141 -23157 Q541S4 -23157 Q548C9 -23158 Q6ZT07 -23160 Q15061 -23160 Q8TB67 -23161 Q86XC4 -23161 Q9Y5W8 -23162 E9PFH7 -23162 Q9UPT6 -23163 A8K6I6 -23163 A8K6M0 -23163 B7Z7E2 -23163 B7Z7M9 -23163 G3V1K5 -23163 Q9NZ52 -23164 Q6WCQ1 -23164 Q8N236 -23165 Q92621 -23166 Q9NY15 -23167 Q14156 -23168 Q92541 -23169 Q9NTN3 -23170 Q14166 -23171 Q8N335 -23172 Q15018 -23173 P53582 -23174 Q8WYQ9 -23175 Q14693 -23176 F6W7K9 -23176 Q92599 -23177 Q76N32 -23178 B7Z7R6 -23178 G5E9F1 -23178 Q05BE4 -23178 Q96RG2 -23179 Q5SXQ6 -23179 Q9NZL6 -23180 Q14699 -23180 Q8N5I0 -23181 B4E0F0 -23181 E7EMA5 -23181 Q14689 -23181 Q96NX2 -23184 Q14696 -23185 Q92615 -23186 Q9UKL0 -23187 Q6ZUD6 -23187 Q86UU1 -23187 Q8NC75 -23189 A2A2W8 -23189 Q14678 -23190 Q92575 -23191 Q7L576 -23192 B3KVU2 -23192 Q9Y4P1 -23193 Q14697 -23193 Q9BS14 -23194 Q9UJT9 -23195 Q9NU22 -23196 Q9NZB2 -23197 Q96CS3 -23198 Q14997 -23199 Q14687 -23200 Q9Y2G3 -23201 Q92567 -23203 Q10713 -23203 Q5SXM9 -23204 Q15041 -23205 B3KNS7 -23205 B7Z2Y6 -23205 Q96GR2 -23207 Q8IWE5 -23208 Q9BT88 -23209 Q15049 -23210 Q6NYC1 -23211 Q9UPT8 -23212 Q15050 -23213 Q8IWU6 -23214 Q96QU8 -23215 Q9Y520 -23216 B9A6J6 -23216 Q7Z6H2 -23216 Q86TI0 -23216 Q8NC59 -23217 Q9UPR6 -23218 Q6ZNJ1 -23219 E9PEM8 -23219 Q9NVF7 -23220 Q9Y2E6 -23221 A8K9Z8 -23221 E9PBU2 -23221 E9PEI7 -23221 Q9BYZ6 -23223 B3KMR5 -23223 B4DK00 -23223 E9PCK7 -23223 Q5JTH9 -23224 Q6MZP0 -23224 Q8WXH0 -23225 Q8TEM1 -23228 Q9UPR0 -23229 B4DHC7 -23229 F8W7P8 -23229 O43307 -23230 Q96RL7 -23231 Q68CR1 -23232 O60347 -23233 Q9H8D6 -23233 Q9Y2D4 -23234 B2RMW6 -23234 Q8WXX5 -23235 Q9H0K1 -23236 Q9NQ66 -23237 Q7LC44 -23239 O60346 -23240 A2VDJ0 -23240 B3KU55 -23241 Q86VP3 -23242 O75128 -23243 O15084 -23244 G1UI16 -23244 Q29RF7 -23245 B3KN99 -23245 B7ZKP4 -23245 B7ZKP5 -23245 O75129 -23246 Q14137 -23247 O60303 -23248 Q5VT52 -23250 E9PEJ6 -23250 P98196 -23250 Q659C3 -23250 Q6PJ25 -23251 Q9UPX6 -23252 Q5T2D3 -23253 Q6UB98 -23254 Q674X7 -23255 Q9Y4B5 -23256 B7Z4U7 -23256 Q8WVM8 -23258 B4DJ15 -23258 E9PS91 -23258 Q6IQ26 -23259 B3KPM6 -23259 O94830 -23261 G3V3Z7 -23261 Q96S92 -23261 Q9Y6Y1 -23262 O43314 -23263 B4DHD6 -23263 E9PDN8 -23263 O15068 -23264 Q9UGR2 -23265 Q63HP7 -23265 Q9UPT5 -23266 O95490 -23268 Q6XZF7 -23269 B9EGR5 -23269 E7ENI0 -23269 F5H7K2 -23269 Q8IWI9 -23270 Q9UJ04 -23271 B3KTI4 -23271 Q08AD1 -23272 Q9UK61 -23274 Q2KHT3 -23275 Q9Y2G5 -23276 O94889 -23277 O75153 -23279 Q12769 -23281 Q5JR59 -23283 Q9H0L4 -23284 E9PE04 -23284 Q9HAR2 -23285 E9PEZ5 -23285 Q9UPP5 -23286 Q8IX03 -23287 Q9UPW5 -23288 Q6IPM2 -23291 Q9UKB1 -23293 Q86US8 -23294 Q05CP0 -23294 Q92625 -23295 O60291 -23299 Q8TD16 -23299 Q96FU2 -23300 O43313 -23301 A8K930 -23301 Q8NDI1 -23302 Q658N2 -23303 F8VPJ2 -23303 Q9NQT8 -23304 B3KXG6 -23304 Q8IWV8 -23305 B2RB13 -23305 B4DFW3 -23305 Q9UKU0 -23306 O14524 -23307 Q5T1M5 -23308 A0N0L8 -23308 A8MUZ1 -23308 O75144 -23309 O75182 -23310 P42695 -23312 B2RTR3 -23312 B7ZMH3 -23312 F5GWF1 -23312 Q8TDJ6 -23313 Q6ICG6 -23314 B3KPQ9 -23314 Q59FT3 -23314 Q9UPW6 -23315 Q9Y2E8 -23316 O14529 -23317 O75165 -23318 Q5TAX3 -23321 D3DP09 -23321 Q9C040 -23322 Q68CZ1 -23324 Q05BN7 -23324 Q9Y2E5 -23325 Q2M389 -23326 Q9UPT9 -23327 B7Z2P9 -23327 B7Z6K0 -23327 Q3LSM7 -23327 Q96PU5 -23328 O94885 -23329 B9A6M9 -23329 F5GYJ9 -23331 Q96AY4 -23332 A2RU21 -23332 B7ZLX3 -23332 Q7Z460 -23333 Q2PZI1 -23334 Q5T011 -23335 Q9Y4E6 -23336 O15061 -23338 Q9NQC1 -23339 Q96JC1 -23341 Q9Y2G8 -23344 Q9BSJ8 -23345 E7EQI5 -23345 Q8NF91 -23347 A6NHR9 -23348 A6H8Z6 -23348 B3KX25 -23348 B3KXE2 -23348 E9PFM9 -23348 Q9BZ29 -23349 Q9UPV7 -23350 O15042 -23351 O15037 -23352 Q5T4S7 -23353 B4DZF7 -23353 E9PDU4 -23353 E9PF23 -23353 F8WD13 -23353 O94901 -23354 O94927 -23355 B3KPR6 -23355 Q8N3P4 -23357 Q9UNK9 -23358 Q9UPU5 -23359 O60320 -23360 B3KNP0 -23360 Q8N3X1 -23361 Q9UEG4 -23362 B3KRC4 -23362 E9KL50 -23362 Q9NYI0 -23363 A4KVA4 -23363 O75147 -23363 Q9H8B3 -23365 B4E2K6 -23365 Q9NZN5 -23366 B4DF35 -23366 B4DYW2 -23366 B7ZLT4 -23366 Q8NCT3 -23367 Q6PKG0 -23368 Q96KQ4 -23369 Q8TB72 -23370 Q6ZSZ5 -23371 Q63HR2 -23373 Q6UUV9 -23376 O94874 -23378 O43159 -23379 Q9Y2F5 -23380 A2RUF3 -23380 B3KM24 -23380 B7ZM87 -23380 O75044 -23381 Q9UPR3 -23382 B4DIZ5 -23382 D9N155 -23382 Q96HN2 -23383 Q9Y6X3 -23384 B2RMV2 -23384 Q69YQ0 -23385 Q5T208 -23385 Q92542 -23386 Q8IVD9 -23387 Q9Y2K2 -23389 Q71F56 -23390 Q8IUH5 -23394 Q9H2P0 -23395 Q15031 -23396 O60331 -23397 Q15003 -23398 Q96BP3 -23399 O95476 -23400 Q5JXY1 -23400 Q6S9Z9 -23400 Q9NQ11 -23401 O75474 -23403 Q6PJ61 -23404 Q13868 -23405 E0AD28 -23405 Q9UPY3 -23406 Q14019 -23408 B4DFM4 -23408 B4DYJ5 -23408 F5H5Z9 -23408 Q9NXA8 -23409 Q9Y6E7 -23410 B7Z5U6 -23410 Q9NTG7 -23411 A8K128 -23411 E9PC49 -23411 Q96EB6 -23412 Q9UBI1 -23413 E9PAY3 -23413 P62166 -23414 Q8WW38 -23414 Q9NPQ0 -23415 Q9UQ05 -23416 Q9ULD8 -23417 O95822 -23418 P82279 -23420 Q15155 -23421 Q13352 -23423 Q9Y3Q3 -23424 Q8NHU6 -23426 Q9Y3R0 -23428 F2Z2J4 -23428 Q86U05 -23428 Q8N424 -23428 Q9UHI5 -23429 Q8N488 -23430 Q9BZJ3 -23431 B4DM48 -23431 Q68D31 -23431 Q9UPM8 -23432 Q8N6U8 -23433 P17081 -23434 O15544 -23435 Q13148 -23435 Q9H256 -23436 P08861 -23438 P49590 -23439 Q9UN42 -23440 Q5XKR4 -23443 Q9Y2D2 -23446 Q8WWI5 -23450 A8K6V3 -23450 Q15393 -23451 A0JLT9 -23451 E9PCH3 -23451 O75533 -23451 Q7Z497 -23452 Q8NCH7 -23452 Q9UKU9 -23456 Q9NRK6 -23457 B4E2J0 -23457 Q9NP78 -23460 Q8N139 -23461 Q8WWZ7 -23462 Q9Y5J3 -23463 O60725 -23464 A8K228 -23464 E2QC23 -23464 O75600 -23464 Q6ZWF1 -23466 O95503 -23467 O95502 -23468 P45973 -23469 Q92576 -23471 Q15629 -23471 Q6FHL3 -23473 Q7Z479 -23473 Q9Y6W3 -23474 O95571 -23475 Q15274 -23476 O60885 -23476 Q4G0X8 -23478 P67812 -23479 Q9H1K1 -23480 P60059 -23481 B2RDF2 -23481 O00541 -23483 O95455 -23483 Q05DQ3 -23483 Q2TU31 -23484 E9PHP8 -23484 O95214 -23484 Q6FHL7 -23491 F5H242 -23491 Q6UWW8 -23491 Q9H6X7 -23492 O95931 -23493 Q9UBP5 -23495 O14836 -23495 Q4ACX1 -23498 P46952 -23499 Q6ZSD7 -23499 Q96PK2 -23499 Q9UPN3 -23500 G5EA45 -23500 Q86T65 -23503 Q68DK2 -23504 O15034 -23505 Q92545 -23506 Q6AI39 -23507 Q6P9F7 -23508 Q92623 -23509 Q9H488 -23510 Q14681 -23510 Q8IYY2 -23511 Q5SRE5 -23512 A8K1U9 -23512 Q15022 -23513 A0PJK8 -23513 Q14160 -23514 B3KP42 -23514 B4DFV2 -23514 B4DWT8 -23514 B4E0Y6 -23514 Q14159 -23515 Q14149 -23515 Q4VBZ9 -23516 Q15043 -23517 P42285 -23517 Q3MHC9 -23518 Q15032 -23519 O95626 -23520 O43423 -23521 P40429 -23522 Q8WYB5 -23523 Q6PHY0 -23523 Q9Y6J0 -23524 Q9UQ35 -23526 Q92619 -23527 Q15057 -23528 Q9Y2X9 -23529 B4DNT4 -23529 Q9UBD9 -23530 Q13423 -23531 Q15546 -23532 P78395 -23533 Q8WYR1 -23534 B3KMX1 -23534 C9IZM0 -23534 Q9Y5L0 -23536 Q9BUB4 -23538 Q9UKL2 -23539 O95907 -23541 B7Z8Q1 -23541 F5H3U4 -23541 O76054 -23542 Q13387 -23543 O43251 -23544 B0QYG3 -23544 B7ZLJ6 -23544 B7ZLJ8 -23544 Q9BYH1 -23545 Q9Y487 -23546 O95473 -23547 P59901 -23548 Q6PID6 -23549 Q9NV55 -23549 Q9ULA0 -23550 Q8NDX1 -23551 Q96D21 -23552 A2A390 -23552 Q8IZL9 -23553 D0VXG1 -23553 Q2M3T9 -23554 O95859 -23555 O95858 -23556 O95427 -23557 O95295 -23558 Q969T9 -23559 Q96G27 -23560 D2CFK9 -23560 Q9BZE4 -23562 O95500 -23563 Q9GZS9 -23564 O95865 -23566 Q9UBY5 -23567 Q9UL40 -23568 Q9Y2Y0 -23569 B2RBW0 -23569 Q9UM07 -23576 B1AKK2 -23576 B4E3V1 -23576 O94760 -23576 Q5HYC8 -23580 B2R6D8 -23580 Q9H3Q1 -23581 B2CIS9 -23581 P31944 -23582 O95273 -23583 Q53HV7 -23584 Q96IQ7 -23585 O95807 -23585 Q7RU07 -23586 O95786 -23587 A8K1M5 -23587 Q8TE02 -23588 Q9Y2U9 -23589 Q9Y2V2 -23590 Q5T2R2 -23592 Q9Y2U8 -23593 Q9Y5Z4 -23594 Q9Y5N6 -23595 B4E025 -23595 Q9UBD5 -23596 Q9H1Y3 -23597 Q9Y305 -23598 Q9HBE1 -23600 F8W9N1 -23600 Q3KT79 -23600 Q9UHK6 -23601 A4D1U7 -23601 Q9NY25 -23603 Q9ULV4 -23604 Q9UIK4 -23607 Q9Y5K6 -23608 Q9UHC7 -23609 Q9H000 -23612 Q9Y5J5 -23613 Q9ULU4 -23616 Q9Y3L3 -23617 A0ZT99 -23617 Q96PF2 -23619 Q9NZV7 -23620 O95665 -23621 B7Z3K2 -23621 B7Z3Z4 -23621 P56817 -23621 Q5W9H2 -23623 B3KWM9 -23623 Q5T9U9 -23623 Q5T9V0 -23623 Q9BVN2 -23624 Q9ULV8 -23625 E9PB01 -23625 E9PL72 -23625 Q8N5H3 -23626 Q9Y5K1 -23627 Q9UKY0 -23630 Q5JWV7 -23630 Q9UJ90 -23632 A8K3J4 -23632 Q9ULX7 -23633 O60684 -23635 P81877 -23635 Q9P038 -23636 P37198 -23637 Q9Y3P9 -23639 Q86X45 -23640 Q9NZL4 -23641 O95751 -23643 E5RJJ7 -23643 Q9Y6Y9 -23644 Q6P2E9 -23645 O75807 -23646 Q8IV08 -23647 B4DUZ3 -23647 B4DX86 -23647 B4DXH2 -23647 B4E306 -23647 P53365 -23648 Q9BWW4 -23649 Q14181 -23650 Q14134 -23654 O15031 -23657 A8K2U4 -23657 Q9UPY5 -23658 Q9Y4Y9 -23659 Q8NCC3 -23660 B3KNK8 -23660 Q9Y2L8 -23670 Q9UHN6 -23671 Q9UIK5 -23673 Q86Y82 -23676 Q9UHP9 -23677 Q9P0V3 -23678 Q53EW6 -23678 Q5H9Q5 -23678 Q96BR1 -23682 P57729 -23683 O94806 -23704 A5H1P5 -23704 Q8WWG9 -23705 Q9BY67 -23708 Q8IYD1 -23710 Q9H0R8 -23729 Q9UHJ6 -23731 Q9H330 -23732 Q9P0K9 -23741 Q9Y6B2 -23742 Q9NZP6 -23743 B7Z516 -23743 Q9H2M3 -23746 F1T0B6 -23746 Q6ZZB5 -23746 Q9NZN9 -23753 Q9HCN8 -23759 Q13356 -23760 P48739 -23761 Q9UG56 -23762 Q969R2 -23764 B4DV49 -23764 Q9ULX9 -23765 Q96F46 -23767 Q9NZU0 -23768 B3KPR2 -23768 O43155 -23769 Q9NZU1 -23770 Q14318 -23774 O95696 -23779 A6ZJ79 -23779 P85298 -23779 Q6PJW1 -23780 Q9BQE5 -23784 Q6S545 -23786 Q86T62 -23786 Q9BXK5 -23787 Q9NZJ7 -23788 Q9Y6C9 -24137 O95239 -24137 Q59HG1 -24138 Q13325 -24139 B7Z3I2 -24139 B7Z3Q9 -24139 O95834 -24140 B3KN91 -24140 Q9UET6 -24141 Q9UJQ1 -24142 Q6IAP1 -24142 Q93015 -24144 Q9UBB9 -24145 Q96RD7 -24146 P56746 -24147 Q86VR8 -24148 O94906 -24149 Q5VUA4 -24150 Q9ULZ0 -25758 Q12914 -25758 Q6ZVL6 -25759 P98077 -25763 O75409 -25764 Q9NX55 -25766 Q6NWY9 -25769 Q9UI40 -25770 O95567 -25771 B9A6M3 -25771 Q8WUA7 -25775 Q9Y442 -25776 Q9Y3M2 -25777 B0QY62 -25777 B4E2A6 -25777 Q504T5 -25777 Q9UH99 -25778 Q6XUX3 -25780 D6W583 -25780 Q53SD7 -25780 Q8IV61 -25782 A6H8V0 -25782 Q9H2M9 -25788 F6WBS8 -25788 O95073 -25788 Q9Y620 -25789 Q9UK28 -25790 Q9UL16 -25791 E9PC42 -25791 Q8N5V2 -25792 B4E0A3 -25792 B4E131 -25792 Q9BTG3 -25792 Q9ULV3 -25793 Q9Y3I1 -25794 A8MRA6 -25794 O14926 -25796 O95336 -25797 Q16769 -25797 Q53TR4 -25798 F5GXW6 -25798 O95415 -25799 O75467 -25800 Q13433 -25801 P28676 -25802 P29536 -25803 F5H778 -25803 O95238 -25804 Q9Y4Z0 -25805 Q13145 -25806 F1T0K5 -25806 Q9UIW0 -25807 Q9Y3P4 -25809 O95922 -25813 Q9Y512 -25814 A6NLC4 -25814 Q9UBB4 -25816 O95379 -25817 Q7Z5A7 -25818 Q53ZR3 -25818 Q9Y337 -25819 Q8WTX0 -25819 Q9UK39 -25820 Q9Y4X5 -25821 Q9Y2Z2 -25822 B4DSA6 -25822 O75953 -25823 Q9NRR2 -25824 B7ZLJ4 -25824 B7ZVW3 -25824 P30044 -25825 Q9Y5Z0 -25827 B4DQV0 -25827 E9PD06 -25827 Q9UKC9 -25828 Q99757 -25829 Q9Y519 -25830 Q9BR01 -25831 Q9ULT8 -25832 Q5TI25 -25833 B4DY07 -25833 F5GWW6 -25833 Q9UKI9 -25834 Q9UBM8 -25836 Q6KC79 -25837 Q3L6K5 -25837 Q9ULW5 -25839 Q8N8L9 -25839 Q9H9E3 -25840 Q9H8H3 -25841 A8K6S9 -25841 E9PRW7 -25842 Q9Y294 -25843 Q9Y3A3 -25844 Q9GZM5 -25847 A8K3Z6 -25847 Q9BS18 -25849 Q6UWI2 -25850 B2RCE4 -25850 Q14585 -25851 Q7Z6L1 -25852 Q8IUR7 -25853 Q5T6F0 -25854 A5PLN7 -25855 G5E9I4 -25855 Q9HCU9 -25858 Q9NTU4 -25861 B9EGE6 -25861 Q9P202 -25862 Q70CQ1 -25864 Q9BUJ0 -25865 Q8NCK8 -25865 Q9BZL6 -25870 Q8NBJ7 -25871 Q6NW34 -25873 Q9Y3U8 -25874 O95563 -25875 B3KXK7 -25875 Q6P1Q0 -25876 Q9Y4P9 -25878 Q9NR99 -25879 Q9NV06 -25880 Q96B77 -25884 Q6WN34 -25884 Q9BZ90 -25885 O95602 -25885 Q9H6T2 -25886 A4FUW4 -25886 E9PFC6 -25886 Q8NBT0 -25888 Q8WTR7 -25890 Q7Z7G0 -25891 Q6UXH9 -25893 Q8NG06 -25894 Q58EX7 -25895 Q96AZ1 -25896 B4DLZ6 -25896 Q9NVH2 -25897 Q9NV58 -25898 C7E542 -25898 Q96PM5 -25900 B4DQQ1 -25900 Q0D2I5 -25900 Q6P593 -25900 Q9Y4M3 -25901 Q8IWP9 -25902 B2RD24 -25902 B7ZM99 -25902 Q6UB35 -25903 Q68BL8 -25904 Q9H9A5 -25906 P60006 -25907 Q8WZ71 -25909 Q8WYP5 -25911 Q9BVM2 -25912 Q09GN0 -25912 Q9BWL3 -25913 A8MTK3 -25913 Q5MJ33 -25913 Q9NUX5 -25914 Q86VV8 -25915 A4FU71 -25915 Q9BU61 -25915 Q9Y3Z0 -25917 Q9BV44 -25920 Q8WX92 -25921 Q9C0B5 -25923 Q6DD88 -25924 Q8NFW9 -25925 Q96K83 -25926 Q9H8H0 -25927 Q96F85 -25928 A4D125 -25928 Q6X4U4 -25929 B7ZLC9 -25929 Q58EZ8 -25929 Q8TEQ6 -25930 Q9H3S7 -25932 Q6FIC5 -25932 Q9Y696 -25934 Q9UFN0 -25936 E7ETD5 -25936 Q53FM2 -25936 Q96IY1 -25937 Q9GZV5 -25938 F5H619 -25938 Q86XA9 -25939 Q59H15 -25939 Q9Y3Z3 -25940 Q8NCA5 -25941 Q68CL5 -25942 Q96ST3 -25943 Q0IIP3 -25943 Q5TEA3 -25945 E9PFR0 -25945 Q8NC05 -25945 Q9NQS3 -25946 F1T0F1 -25946 Q96PM9 -25948 Q8IY47 -25949 O95926 -25950 D3DT49 -25950 Q9Y3V2 -25953 Q8N490 -25956 Q9NQW1 -25957 Q8TEZ9 -25957 Q8TF01 -25959 Q63ZY3 -25960 Q6YN44 -25960 Q96PE1 -25961 Q86X67 -25962 Q69YN4 -25963 Q8NBN3 -25966 E9PEW2 -25966 Q9Y426 -25970 B3KNV5 -25970 B4DLN5 -25970 Q9NRF2 -25972 Q53HI1 -25973 Q7L3T8 -25974 Q9Y4U1 -25975 Q8IUX8 -25976 Q05BQ2 -25976 Q7Z3E1 -25977 Q8NC96 -25978 B2RE76 -25978 B4DJG8 -25978 Q9UQN3 -25979 Q6IAN0 -25980 Q9Y312 -25981 Q9P2D7 -25983 Q8NEJ9 -25984 Q8TC04 -25984 Q9C075 -25984 Q9UFN7 -25987 B3KRF9 -25987 Q8WUA8 -25988 B4DWB4 -25988 E9PQF4 -25988 Q9BQA5 -25989 Q6PHR2 -25992 Q8TER0 -25994 Q9Y241 -25996 B2R532 -25996 Q9Y3B8 -25998 Q9P2D0 -25999 Q96DZ5 -26000 Q4KMP7 -26001 Q9H6Y7 -26002 Q6UVY6 -26003 Q9H8Y8 -26005 Q4AC94 -26007 Q3LXA3 -26009 Q8IYH5 -26010 Q9NUQ6 -26011 Q6N022 -26012 Q2TB96 -26012 Q6X4W1 -26013 Q9Y468 -26015 Q9BWH6 -26017 Q9Y421 -26018 Q96JA1 -26019 Q9HAU5 -26020 Q7Z4F1 -26022 Q9Y2Y6 -26024 A4D273 -26024 O75127 -26025 O60330 -26027 Q8WXI4 -26030 A1L390 -26031 Q9H4L5 -26032 O60279 -26033 Q5VV63 -26034 Q8WWN9 -26035 B3KML4 -26035 O94923 -26036 Q96JY2 -26036 Q9Y4E5 -26037 O43166 -26038 Q8TDI0 -26039 O75177 -26040 Q9Y6X0 -26043 O94888 -26045 O43300 -26046 O94822 -26047 B2RCH4 -26047 Q9UHC6 -26048 O60304 -26049 Q9Y6X4 -26050 O94991 -26051 E9PFS8 -26051 Q5W9G4 -26051 Q96T49 -26052 Q9UQ16 -26053 Q6PJU5 -26053 Q86WD8 -26053 Q8WXX7 -26054 B3KMM0 -26054 Q9GZR1 -26056 Q9BXF6 -26056 Q9UFM0 -26057 G5E964 -26057 O75179 -26058 A6H8W4 -26058 E9PBB0 -26058 Q6Y7W6 -26059 O15083 -26060 Q9UKG1 -26061 Q9UJ83 -26063 Q9NUI1 -26064 E9PED3 -26064 Q9P0K7 -26065 Q8ND56 -26071 Q9BWD3 -26073 Q9Y2S7 -26074 Q8NHU2 -26083 Q9UFV1 -26084 B3KVP8 -26084 B3KXG0 -26084 E9PBD0 -26084 Q96DR7 -26085 Q9UKR3 -26086 Q86YR5 -26088 B0QYR7 -26088 Q86YA9 -26088 Q8NCS6 -26088 Q9UJY5 -26090 Q8N2K0 -26091 Q5GLZ8 -26092 Q5JTV8 -26093 B4DXW2 -26093 Q9Y3X0 -26094 B2RDD6 -26094 B4DN30 -26094 B4DUT6 -26094 G3V522 -26094 Q8IV10 -26094 Q8WV16 -26095 Q4JDK3 -26095 Q4JDL3 -26095 Q9Y406 -26097 Q9Y3Y2 -26098 Q3B7T1 -26099 Q7Z422 -26100 Q9Y4P8 -26103 Q9P2V4 -26108 Q9Y3Y4 -26112 A6NI79 -26112 Q7L2X4 -26115 Q9HCD6 -26118 Q9Y6I7 -26119 B3KR97 -26119 Q5SW96 -26121 F1T0A5 -26121 Q8WWY3 -26122 Q52LR7 -26123 B4DR81 -26123 Q6NUS6 -26127 Q9NVK5 -26128 Q96EK5 -26130 B3KN67 -26130 Q14C86 -26133 E1P5Q0 -26133 Q8TEL6 -26135 Q5VU21 -26135 Q63HR1 -26135 Q8NC51 -26136 A4D0U5 -26136 Q9UGI8 -26137 A8K251 -26137 B2RCW4 -26137 Q9HC78 -26140 Q9Y4R7 -26145 Q8IU81 -26146 Q8TDR0 -26147 B3KV88 -26147 Q5T6S3 -26148 Q8N655 -26149 Q5TYW1 -26150 Q9H4K1 -26151 Q9BTE0 -26152 Q9Y3M9 -26153 Q9ULI4 -26154 Q86UK0 -26155 Q9Y3T9 -26156 O76021 -26157 Q9UG22 -26160 B3KP68 -26160 Q9UG01 -26164 Q9H4K7 -26165 Q8IWB4 -26166 Q8NE09 -26167 Q9Y5E4 -26168 Q9H4L4 -26173 Q8N201 -26175 Q8N6I4 -26188 Q15619 -26189 Q9Y585 -26190 Q9UKT8 -26191 B4DZW8 -26191 Q9Y2R2 -26205 Q9UKD1 -26206 E9PDV6 -26206 Q99932 -26207 Q9UKF7 -26211 Q13607 -26212 P58173 -26219 A3KME5 -26219 Q8NGS1 -26223 Q3KPF8 -26223 Q9UKT6 -26224 Q9UKT7 -26225 Q9Y689 -26227 O43175 -26228 Q9ULZ2 -26229 O94766 -26230 B3KW11 -26230 Q8IVF5 -26231 Q8WV35 -26232 Q9UK22 -26233 Q8N531 -26234 Q9UKA1 -26235 Q9UKA2 -26239 O14633 -26240 Q9Y247 -26245 Q96R27 -26246 Q8NH16 -26248 Q8NGT1 -26249 Q9UH77 -26251 Q9UJ96 -26253 Q9ULY5 -26254 Q9UBM4 -26256 O75952 -26257 O15522 -26258 B3KY40 -26258 Q9UL45 -26259 Q8N3Y1 -26260 Q8TCJ0 -26261 A4D2D3 -26261 B4DX91 -26261 B4DY42 -26261 O75426 -26262 Q96FV3 -26263 Q8NEZ5 -26266 Q9UKG4 -26267 Q59F51 -26267 Q9UK96 -26268 Q9UK97 -26269 Q8IXA8 -26269 Q9NRD0 -26270 Q9NRD1 -26271 Q5TF47 -26271 Q9UKT4 -26272 B3KNA0 -26272 Q9UKT5 -26273 Q49AF1 -26273 Q9UK99 -26275 Q6NVY1 -26276 Q9H267 -26277 Q9BSI4 -26278 Q9NZJ4 -26279 Q9UNK4 -26280 Q2M3U3 -26280 Q9NP60 -26281 B2RPH5 -26281 Q9NP95 -26284 O75616 -26285 P56750 -26286 E9PB03 -26286 Q9NP61 -26287 Q9GZV1 -26289 Q9Y6K8 -26290 Q9NY28 -26291 Q9NSA1 -26292 Q99417 -26297 Q9UGK8 -26298 E9PSB2 -26298 Q9NZC4 -26301 Q8N5D6 -26330 O14556 -26333 O14581 -26338 Q8NGL0 -26339 Q8NHB7 -26341 A6NKK0 -26353 Q9UJY1 -26354 Q9BVP2 -26355 Q96A26 -26355 Q9H2P1 -26468 A8K1B2 -26468 Q9UPM6 -26469 B4E1E6 -26469 Q99952 -26470 B7Z1N0 -26470 B7Z5L4 -26470 F5H293 -26470 Q6UXD5 -26470 Q9BW82 -26471 O60356 -26472 Q96C90 -26476 P30954 -26492 Q8N0Y1 -26493 Q15620 -26494 Q15617 -26496 P58181 -26499 Q9NYT0 -26502 B3KPX2 -26502 Q9UHQ1 -26503 Q9NRA2 -26504 Q6P4Q7 -26505 Q8NE01 -26507 Q9NRU3 -26508 Q9NQ87 -26509 Q9NZM1 -26511 Q9UKJ5 -26512 Q9UL03 -26515 B2R4A9 -26515 Q9Y5J6 -26517 Q9Y5L4 -26519 P62072 -26520 Q9Y5J7 -26521 G3XAN8 -26521 Q9Y5J9 -26523 Q9UL18 -26524 Q9NRM7 -26525 Q9UBH0 -26526 Q9UKR8 -26528 Q96EP5 -26529 P58182 -26531 Q9GZK7 -26532 O60404 -26533 Q8NGC4 -26534 Q8NGC3 -26538 O60403 -26539 Q9Y4A9 -26548 Q9UKP3 -26574 Q9NY61 -26575 Q9UGC6 -26576 Q9UPE1 -26577 Q9UKZ9 -26578 Q92882 -26579 Q96EZ4 -26580 G3XAE4 -26580 Q96G97 -26581 Q96PT3 -26582 Q96PT4 -26584 O43812 -26584 Q96PT3 -26585 A6XAA7 -26585 B3KTR9 -26585 O60565 -26586 Q8WWK9 -26589 Q9H2W6 -26595 Q96RD0 -26608 Q9Y4P3 -26609 Q9H320 -26610 Q96EB1 -26648 Q6IFN5 -26658 O60412 -26659 Q15622 -26664 O76099 -26682 Q96R69 -26683 Q6IEY1 -26686 Q8NGC2 -26689 Q15615 -26692 Q9Y3N9 -26696 O43869 -26707 O76002 -26716 B0S7T4 -26716 Q9GZK4 -26735 Q8NH93 -26737 Q8NH94 -26740 Q8NGS2 -26747 Q9UHK0 -26748 O76087 -26748 P0CL80 -26748 P0CL81 -26748 P0CL82 -26749 Q4V326 -26750 B1APS8 -26750 Q96S38 -26751 Q96HL8 -26762 Q96D42 -26872 Q9UHE8 -26873 O14841 -26952 Q99954 -26953 B4DTX6 -26953 O60518 -26958 Q9UBF2 -26959 B4DJ36 -26959 O60381 -26960 B3KXQ8 -26960 B7Z2H9 -26960 Q8NFP9 -26973 Q9UHD1 -26974 Q96NJ3 -26984 Q96IW7 -26985 Q9Y2T2 -26986 P11940 -26993 Q9ULX6 -26994 Q9Y3C5 -26995 O95900 -26996 Q9UJ42 -26998 Q9UGM5 -26999 Q96F07 -27000 Q99543 -27005 Q9UK80 -27006 Q9HCT0 -27010 F5GZG6 -27010 Q9H3S4 -27012 Q6PIU1 -27013 Q9BV87 -27018 Q00994 -27019 Q9UI46 -27020 B2RAL7 -27020 Q9Y639 -27022 Q9UJU5 -27023 Q99853 -27030 Q2M1Z1 -27030 Q9UHC1 -27031 Q7Z494 -27032 B4DSW3 -27032 B4E295 -27032 B4E2Q0 -27032 B7Z3X9 -27032 G3XAH8 -27032 P98194 -27033 Q9Y2Y4 -27034 Q6ZWP6 -27034 Q9UKU7 -27035 Q9Y5S8 -27036 Q9Y286 -27037 Q8IZ69 -27039 Q9NZM6 -27040 B7WPI0 -27040 G5E9K3 -27040 O43561 -27042 Q68CQ4 -27043 Q8IZL8 -27044 Q7KZF4 -27063 Q15327 -27065 B2R5R8 -27065 P42857 -27067 A8K276 -27067 B7Z1I6 -27067 B7Z292 -27067 B7Z8B4 -27067 E7ER74 -27067 E9PEI3 -27067 E9PF26 -27067 E9PF50 -27067 E9PH62 -27067 F8VPI7 -27067 Q4LE57 -27067 Q9NUL3 -27068 F8WDN9 -27068 Q9H2U2 -27069 Q9H3K2 -27071 Q9UN19 -27072 E9PF36 -27072 P49754 -27074 Q9UQV4 -27075 O95857 -27075 Q6FGK0 -27076 B2RBR3 -27076 O95274 -27077 B4DN64 -27077 E7ENC0 -27077 Q9UPM9 -27079 Q8IZ73 -27085 Q96DY7 -27086 B3KV70 -27086 E9PFD3 -27086 G5E9V8 -27086 Q548T7 -27086 Q8N2P0 -27086 Q8NAN6 -27086 Q8TEA2 -27086 Q9BSG9 -27086 Q9H334 -27087 Q9P2W7 -27089 O14949 -27090 A8K7N4 -27090 Q9H4F1 -27091 Q9UF02 -27092 Q9UBN1 -27094 B7Z9C9 -27094 E9PER5 -27094 Q9NPA1 -27095 O43617 -27097 O75529 -27098 Q15846 -27101 B3KSF1 -27101 Q5R370 -27101 Q5R371 -27101 Q9HB71 -27102 Q9BQI3 -27106 Q8TBH0 -27107 O95625 -27107 Q59H97 -27109 Q99766 -27111 Q9H190 -27112 O75949 -27113 E9PAW3 -27113 Q96PG8 -27113 Q9BXH1 -27115 Q9NP56 -27120 Q9UK85 -27121 Q9UBT3 -27122 Q9UBP4 -27123 Q9UBU2 -27124 Q15735 -27125 Q9UHB7 -27127 Q8NDV3 -27128 Q9UIA0 -27129 Q9UBY9 -27130 Q9Y283 -27131 Q9Y5X3 -27132 Q9UBL6 -27133 C9JP98 -27133 Q8NCM2 -27134 O95049 -27136 Q86VD1 -27141 Q9UHD4 -27143 Q9ULE6 -27145 Q7Z7B0 -27146 Q9ULE4 -27147 Q9ULE3 -27148 Q9NRP7 -27151 Q6NVW5 -27151 Q8IZJ3 -27152 Q9ULD6 -27153 Q9ULD5 -27154 Q9ULD4 -27156 Q9UHP6 -27158 D3YTG6 -27158 D3YTH9 -27158 Q9UHB4 -27159 Q9BZP6 -27161 A4FVC0 -27161 Q9UKV8 -27163 Q02083 -27164 A9JR48 -27164 Q9BXA9 -27165 Q9UI32 -27166 Q9Y255 -27173 Q5T4K1 -27173 Q9NY26 -27175 Q9NRH3 -27177 Q9NZH7 -27178 Q9NZH6 -27179 Q9UHA7 -27180 Q9Y336 -27181 Q9NYZ4 -27183 Q9UN37 -27185 A6NLH2 -27185 C4P091 -27185 C4P094 -27185 C4P095 -27185 C4P096 -27185 C4P098 -27185 C4P0A1 -27185 C4P0A3 -27185 C4P0A4 -27185 C4P0A5 -27185 C4P0B6 -27185 C4P0C1 -27185 C4P0C4 -27185 C4P0C8 -27185 C4P0D0 -27185 C4P0D1 -27185 C4P0D2 -27185 C4P0D3 -27185 Q9NRI5 -27189 Q9P0M4 -27190 Q9UHF5 -27197 Q5VT13 -27197 Q96P67 -27198 Q9BXC0 -27199 B2R986 -27199 Q96P68 -27201 B2R7M4 -27201 Q96P69 -27202 Q9P296 -27229 Q9UGJ1 -27230 Q9Y6X1 -27231 Q9NPI5 -27232 Q14749 -27233 O75897 -27235 Q96H96 -27236 B4E273 -27236 P53367 -27236 Q2M2X4 -27237 B3KTS4 -27237 Q5VV41 -27238 Q92917 -27239 Q16538 -27240 Q9Y3P8 -27241 E9PDC9 -27241 Q3SYG4 -27242 B3KMB6 -27242 O75509 -27243 O43633 -27244 Q9Y6P5 -27245 Q5TGY3 -27246 Q9Y4L5 -27247 E9PAQ8 -27247 Q9UMS0 -27248 B5MC72 -27248 Q96DZ1 -27249 Q9H3L0 -27250 B2RCV4 -27250 B4DKX4 -27250 B5ME91 -27250 Q53EL6 -27252 Q9Y2M5 -27253 O14917 -27254 Q9Y534 -27255 Q9UQ52 -27257 O15116 -27258 P62310 -27283 Q6NSC1 -27283 Q9UJW2 -27284 O43704 -27285 Q9UIF3 -27286 O60687 -27287 O95231 -27288 O75526 -27289 Q92730 -27290 O60575 -27291 Q4KMY3 -27292 Q9UNQ2 -27293 Q92485 -27294 Q9UQ10 -27295 Q53GG5 -27296 Q9Y2B4 -27297 A8MUZ4 -27297 B4E198 -27297 O75575 -27299 B7Z6V5 -27299 B7ZAK5 -27299 O15204 -27300 Q6NX49 -27301 E5KN95 -27301 Q9UBZ4 -27302 O95393 -27303 A8K9S4 -27303 G5E9J9 -27303 Q6XE24 -27304 O95396 -27306 O60760 -27309 Q9Y3S2 -27314 A8K5R1 -27314 Q15771 -27315 Q9UHJ9 -27316 B4E3U4 -27316 P38159 -27319 B4DF88 -27319 Q8NFJ8 -27324 B4DRD0 -27324 O15405 -27327 Q8NDV7 -27328 Q9BZA7 -27329 B1ALJ0 -27329 Q9Y5C1 -27330 Q9UK32 -27332 Q14966 -27333 O00461 -27334 O00398 -27335 Q9UBQ5 -27336 O43719 -27338 Q16763 -27339 Q9UMS4 -27340 O75691 -27341 Q9Y3A4 -27342 Q9UJ41 -27343 A8K860 -27343 Q9UGP5 -27344 Q9UHG2 -27345 Q86W47 -27346 Q5BJF2 -27347 Q9UEW8 -27348 O14657 -27349 B0QY72 -27349 Q8IVS2 -27350 Q9NRW3 -27351 Q6ICB0 -27352 B9A6J5 -27352 Q96HU1 -27429 O43464 -27430 Q9NZL9 -27433 Q5JU69 -27433 Q8N2E6 -27434 Q9NP87 -27436 A6H8Y6 -27436 Q9HC35 -27439 A8MYY1 -27439 Q9BXQ6 -27440 Q9BXW7 -27443 Q9BXF3 -27445 Q9Y6V0 -28227 Q9Y5P8 -28231 Q96BD0 -28232 Q9UIG8 -28234 Q9NPD5 -28316 Q9HBT6 -28511 B4DNM3 -28511 E9PAZ8 -28511 Q9NYR9 -28512 Q9NYS0 -28513 Q9H159 -28514 O00548 -28951 Q92519 -28952 O60826 -28954 O75628 -28955 O95424 -28956 Q5VY98 -28956 Q9Y2Q5 -28957 Q9Y2Q9 -28958 Q9Y2R0 -28959 E9PAV4 -28959 Q3YBM2 -28960 Q96C86 -28962 Q86WC4 -28964 B4DGU9 -28964 Q59FC3 -28964 Q9Y2X7 -28965 Q9Y2P4 -28966 Q9Y343 -28968 Q9GZN6 -28969 Q9Y6E2 -28970 Q9H0W9 -28971 Q9H7C9 -28972 Q9Y6A9 -28973 B0S7P4 -28973 Q9Y676 -28974 Q9UNZ5 -28976 Q9H845 -28977 Q9Y6G3 -28978 Q9Y6G1 -28981 Q8WYA0 -28982 B2RB38 -28982 Q9Y5Y0 -28983 Q9UL52 -28984 Q9H4X1 -28985 Q9ULC4 -28986 Q9H213 -28987 Q9ULX3 -28988 Q9UJU6 -28989 Q9BV86 -28990 Q2TB18 -28991 Q9GZQ3 -28992 Q9BQ69 -28996 Q9H2X6 -28998 Q9BYD1 -28999 Q9UIH9 -29015 Q8NBI5 -29028 Q6PL18 -29035 Q14CZ0 -29057 Q8NDB6 -29058 Q96A57 -29062 A4D1P6 -29063 Q9H5U6 -29066 Q8IWR0 -29068 Q8NCP5 -29070 B4DR20 -29070 Q9H0I3 -29071 Q96EU7 -29072 Q9BYW2 -29074 Q9H0U6 -29078 Q9P032 -29079 Q9NPJ6 -29080 Q9P031 -29081 Q9NRN9 -29082 Q14D22 -29082 Q9BY43 -29083 Q8N3Z3 -29083 Q9P025 -29085 Q9NRX4 -29085 Q9P019 -29086 Q9NWV8 -29087 Q9P016 -29088 Q9P015 -29089 Q9NPD8 -29090 A8K1K8 -29090 Q9BVV7 -29091 Q8NFX7 -29093 A6NGJ8 -29093 Q9NWU5 -29094 Q3ZCW2 -29095 Q53FV1 -29097 Q9P003 -29098 Q9HD47 -29099 Q53FR9 -29099 Q9P000 -29100 Q9BTX3 -29101 Q9NP77 -29102 E7EMP9 -29102 Q9NRR4 -29103 Q9Y5T4 -29104 Q9Y5N5 -29105 Q9Y6A4 -29106 B4DK99 -29106 F5H3R8 -29106 Q8WXD2 -29107 Q9UKK6 -29108 Q9ULZ3 -29109 Q9Y613 -29110 Q9UHD2 -29113 Q6UXA7 -29114 Q9UI15 -29115 Q9UHR5 -29116 Q8WY64 -29117 Q9NPI1 -29118 Q9UHL0 -29119 A8K141 -29119 Q9UI47 -29121 Q9UHP7 -29122 Q9UI38 -29123 Q6UB99 -29123 Q8IVY9 -29124 C5HZ15 -29124 Q9UHV8 -29125 E9PAM5 -29125 Q9P2W6 -29126 Q9NZQ7 -29127 B2RE34 -29127 Q9H0H5 -29128 A0JBR2 -29128 Q2HIX7 -29128 Q96T88 -29760 Q8WV28 -29761 Q9UHP3 -29763 Q9UKS6 -29765 Q9NZQ9 -29766 Q9NYL9 -29767 Q9NZR1 -29775 Q9BWT7 -29777 Q9ULW3 -29780 B0QYM8 -29780 Q9HBI1 -29781 Q6IBW4 -29785 Q96SQ9 -29789 D7EHM2 -29789 Q9NTK5 -29796 Q9UDW1 -29798 Q580R0 -29799 O60688 -29800 Q8WTX9 -29801 Q9ULC8 -29802 Q9UKI3 -29803 C9J3L7 -29803 Q9BWE0 -29841 Q9NZI5 -29842 Q9NZI6 -29843 Q6N001 -29843 Q7Z3G1 -29843 Q9P0U3 -29844 P0C1Z6 -29850 Q9NZQ8 -29851 Q53QY6 -29851 Q9Y6W8 -29855 Q9NPG3 -29880 Q9Y673 -29881 D3DVK9 -29881 Q17RV5 -29881 Q9UHC9 -29882 Q9UJX6 -29883 B3KN35 -29883 G3V108 -29883 Q9UIV1 -29886 Q9Y5X2 -29887 B4DJM0 -29887 E9PFH5 -29887 Q8N5Z3 -29887 Q9Y5X0 -29888 F8VYA6 -29888 Q59GV6 -29888 Q9NRL3 -29889 Q13823 -29889 Q5T0F3 -29890 Q8NDT2 -29893 Q9P2W1 -29894 Q10570 -29895 Q96A32 -29896 Q13595 -29896 Q549U1 -29899 P81274 -29901 F8WC89 -29902 Q8WUB2 -29903 Q9BWC9 -29904 O00418 -29906 B3KSU2 -29906 O15466 -29907 E5KQS5 -29907 E5KQS6 -29907 Q9NRS6 -29909 O14626 -29911 Q96ED9 -29914 Q9Y5Z9 -29915 Q9Y5Z7 -29916 Q9Y5W9 -29919 Q96DM3 -29920 Q96C36 -29922 Q9Y5B8 -29923 Q9Y5L2 -29924 Q9Y6I3 -29925 Q9Y5P6 -29926 Q96IJ6 -29927 B3KME8 -29927 B3KNF6 -29927 P61619 -29928 Q9Y584 -29929 Q9Y672 -29930 Q9Y5F3 -29933 A8K7X7 -29933 Q9UNW8 -29934 Q3SYF1 -29934 Q9UMY4 -29935 Q13156 -29937 Q9UMX5 -29940 Q9UL01 -29941 Q6P5Z2 -29942 Q9UJV8 -29943 Q9ULC6 -29944 Q9UL41 -29945 Q9UJX5 -29946 Q9UJW9 -29947 Q9UJW3 -29948 Q9UJX0 -29949 Q5VUT3 -29949 Q9UHD0 -29950 Q53GC0 -29950 Q9UHV2 -29951 B4DGD1 -29951 Q6ZMN7 -29952 Q9UHL4 -29953 Q9UKU6 -29954 Q9UKY4 -29956 Q96G23 -29957 Q6NUK1 -29958 B3KQ84 -29958 Q9UI17 -29959 Q9UHY1 -29960 Q9UI43 -29964 Q2TBC4 -29965 B4DFU1 -29965 B4DY75 -29965 Q9H305 -29966 Q13033 -29967 Q59H02 -29967 Q9Y561 -29968 Q9Y617 -29969 Q9P1T7 -29970 Q9P0W5 -29974 B4E1E3 -29974 Q9NQ94 -29978 Q9UHD9 -29979 Q9UMX0 -29980 Q9NYP3 -29982 Q96F24 -29984 O00212 -29985 Q9BRY0 -29986 Q9NP94 -29988 Q9NY64 -29989 Q9NPH6 -29990 Q9UKJ0 -29991 Q9NY56 -29992 Q9UKJ1 -29993 Q5TZC3 -29993 Q9BY11 -29994 Q9UIF8 -29995 Q9NZU5 -29997 Q9NZM5 -29998 Q9NZM4 -29999 Q9NQT6 -30000 O14787 -30000 Q05D48 -30000 Q4LE60 -30000 Q6IN77 -30001 Q96HE7 -30008 O95967 -30008 Q9H3D5 -30009 Q9UL17 -30010 P58417 -30010 Q3LID8 -30011 B7Z1D5 -30011 Q5JPT4 -30011 Q5JPT5 -30011 Q5JPT6 -30011 Q96B97 -30012 O43711 -30014 Q9NS26 -30061 Q6FI62 -30061 Q9NP59 -30062 Q9Y2V3 -30811 P57058 -30812 P57073 -30813 Q9NZR4 -30814 Q9NZK7 -30815 Q969X2 -30816 D0EYG5 -30816 Q9UQF0 -30817 Q9H7M4 -30817 Q9UHX3 -30818 Q3YAC4 -30818 Q9Y2W7 -30819 B3KSZ5 -30819 Q3YAC6 -30819 Q9NS61 -30820 Q3YAD1 -30820 Q3YAD2 -30820 Q3YAD3 -30820 Q9NZI2 -30827 Q9P0U4 -30832 Q86Y25 -30833 Q8TCD5 -30834 Q2L6J2 -30834 Q9P1U0 -30835 B2R907 -30835 B4E2A8 -30835 G5E9C4 -30835 Q9NNX6 -30836 Q5QJE6 -30837 O14512 -30844 A8K9B9 -30844 Q9H223 -30845 B4DFR5 -30845 Q9NZN3 -30846 Q9NZN4 -30848 O75638 -30849 Q99570 -30850 Q86X02 -30851 O14907 -30968 Q9UJZ1 -43847 Q9P0G3 -43849 Q9UKR0 -43849 Q9UKR2 -49854 Q5R2W2 -49854 Q9ULJ3 -49855 F5H7X8 -49855 Q6NSF1 -49855 Q9BY12 -49856 Q9P2S5 -49860 Q9UBG3 -49861 P56880 -50484 B4E2N4 -50484 Q7LG56 -50485 Q9NZC9 -50486 P27469 -50486 Q6FGC8 -50487 Q9NZ20 -50488 Q8N4C8 -50489 Q9UJ71 -50506 Q9NRD8 -50507 B3KQ17 -50507 B7Z520 -50507 Q9NPH5 -50508 Q9HBY0 -50509 P25940 -50511 Q8IZU3 -50512 Q9NZ53 -50514 Q9P2X7 -50515 Q9NPF2 -50604 Q9NYY1 -50613 Q9H347 -50614 Q9HCQ5 -50615 Q9HBE5 -50616 Q9GZX6 -50617 Q9HBG4 -50618 A6H8W8 -50618 E7EUQ1 -50618 E9PBE9 -50618 Q9NZM3 -50619 Q9H4E7 -50624 Q86UP6 -50626 Q6ZMK1 -50628 P57678 -50628 Q8WUM5 -50632 Q9NYX4 -50636 Q6IWH7 -50640 Q9NP80 -50649 Q9NR80 -50650 Q9NR81 -50651 Q9Y2W3 -50674 Q9Y4Z2 -50700 Q9NYR8 -50717 B7Z8C9 -50717 Q5TAQ9 -50801 Q2YDA1 -50801 Q9NYG8 -50804 Q9P2K5 -50805 P78413 -50807 Q9ULH1 -50808 B4DP58 -50808 E7ET30 -50808 Q7Z4Y4 -50808 Q9HC01 -50808 Q9UIJ7 -50809 Q5SSJ5 -50810 Q9Y3E1 -50813 A8K9A6 -50813 Q9UBW8 -50814 Q15738 -50831 Q9NYW6 -50832 Q9NYW5 -50833 Q9NYV7 -50834 Q502V6 -50834 Q9NYW7 -50835 Q9NYW1 -50836 Q9NYW2 -50837 Q9NYW3 -50838 Q9NYV9 -50839 Q9NYW0 -50840 Q9NYV8 -50846 O43323 -50848 Q6FIB4 -50848 Q9Y624 -50852 Q6PIZ9 -50853 O15195 -50854 Q9UBA6 -50855 Q9NPB6 -50856 Q9UMR7 -50859 B4DGK5 -50859 B4DHB4 -50859 B4DHV3 -50859 B4DI46 -50859 B4DI52 -50859 B4DJY3 -50859 E7EP61 -50859 F5H099 -50859 Q9BQ16 -50861 Q9NZ72 -50862 Q8WVD5 -50863 Q9P121 -50865 Q9NRV9 -50937 Q4KMG0 -50939 F1T0J3 -50939 Q9BZV3 -50940 Q9HCR9 -50943 Q9BZS1 -50944 Q9Y566 -50945 B3KUL8 -50945 Q5JZ06 -50945 Q9Y458 -50964 Q9BQB4 -50999 B1AKT4 -50999 Q9Y3A6 -51000 Q9H1N7 -51001 Q96E29 -51002 Q9Y3C4 -51003 Q9Y3C7 -51004 B7Z3K8 -51004 Q9Y2Z9 -51005 Q9Y303 -51006 Q9NQQ7 -51008 B3KU20 -51008 Q8N9N2 -51009 Q9GZP9 -51010 A8K0K6 -51010 Q9NQT5 -51011 Q96GK7 -51012 Q9Y3B1 -51013 Q9Y3B2 -51014 Q9Y3B3 -51015 Q96CN7 -51016 Q9Y3B6 -51018 Q9Y3B9 -51019 Q9Y3C0 -51020 Q7Z4H3 -51021 Q9Y3D3 -51022 Q9NS18 -51023 Q9Y3D5 -51024 Q9Y3D6 -51025 Q9Y3D7 -51026 Q9Y3E0 -51027 Q9Y3E2 -51028 Q86VN1 -51029 Q9BSY9 -51030 Q9NYZ1 -51031 Q9HC38 -51032 P08218 -51032 Q6ISP9 -51035 Q04323 -51042 O00488 -51043 O15156 -51046 O43173 -51046 Q59GW3 -51050 O43692 -51052 P81277 -51052 Q53QV7 -51053 O75496 -51056 P28838 -51057 O95876 -51058 B4DJR7 -51058 Q5VV52 -51059 Q49AJ0 -51060 O95831 -51060 O95881 -51061 Q6PKC3 -51062 G5E9T1 -51062 Q53F53 -51062 Q69YH7 -51062 Q8WXF7 -51063 Q9HA72 -51065 Q71UM5 -51066 Q9Y2M2 -51067 Q9Y2Z4 -51068 Q96D46 -51069 Q5T653 -51070 Q9Y314 -51071 Q9Y315 -51072 Q9Y316 -51073 Q9BYD3 -51074 Q96GX9 -51075 Q9Y320 -51076 Q9NTM9 -51077 Q4FZ45 -51077 Q9Y324 -51078 Q8WY91 -51079 Q9P0J0 -51081 Q9Y2R9 -51082 Q9Y2S0 -51083 P22466 -51084 Q9Y2S2 -51085 Q9NP71 -51086 Q59H18 -51087 Q9Y2T7 -51088 E9PCF4 -51088 F8WAE7 -51088 G3XA92 -51088 Q59HD9 -51088 Q6Y881 -51088 Q7Z6D5 -51088 Q96PQ7 -51090 Q9Y342 -51091 Q9HD40 -51092 Q8NBJ9 -51093 Q4VX71 -51093 Q96FB5 -51094 Q96A54 -51095 Q96Q11 -51096 Q9Y5J1 -51097 Q8NBX0 -51098 Q9Y366 -51099 Q8WTS1 -51100 B4E182 -51100 Q9Y371 -51101 B2R9B8 -51101 Q96GY0 -51102 Q9BV79 -51103 Q9Y375 -51104 Q5VST6 -51105 A8MW92 -51105 Q9H8G4 -51106 E5KTM5 -51106 Q8WVM0 -51107 B4DQK0 -51107 B4DUG7 -51107 Q5TB22 -51107 Q96BI3 -51108 Q9H1A3 -51109 B4DDW0 -51109 Q8TC12 -51110 Q53H82 -51111 Q4FZB7 -51112 Q8N9N0 -51112 Q8WVT3 -51114 Q9Y397 -51115 Q96DB5 -51116 Q9Y399 -51117 Q9Y3A0 -51118 Q9Y3A2 -51119 Q9Y3A5 -51121 Q9UNX3 -51122 Q86X83 -51123 Q9Y5V0 -51124 Q9Y5U9 -51125 Q7Z5G4 -51126 A6NHA3 -51126 A8MZB2 -51126 P61599 -51127 Q9Y577 -51128 Q9Y6B6 -51129 A8MY84 -51129 Q9BY76 -51130 Q9Y575 -51131 Q9UIL8 -51132 Q9NVW2 -51133 Q9Y597 -51134 Q3B787 -51134 Q9Y592 -51135 B2RAP9 -51135 B4E359 -51135 Q69FE3 -51135 Q9NWZ3 -51136 Q5M7Z0 -51138 B3KM48 -51138 Q9BT78 -51141 Q9Y5U4 -51142 Q9Y6H1 -51143 Q9Y6G9 -51144 Q53GQ0 -51146 Q9UNA3 -51147 A4KYM6 -51147 Q4VBQ6 -51147 Q9UNL4 -51148 Q5T4B2 -51149 E9PAK6 -51149 Q6NTE8 -51150 Q9BRK5 -51151 Q9UMX9 -51154 Q9UKD2 -51155 Q9H3K0 -51155 Q9UK76 -51156 Q9UK55 -51157 Q9UK33 -51160 Q548N1 -51160 Q9UK41 -51161 C9JNP0 -51161 Q9UK00 -51162 Q9UHF1 -51163 Q9UK59 -51164 Q9NSJ5 -51164 Q9UJW0 -51166 Q4W5N8 -51166 Q8N5Z0 -51167 Q7L1T6 -51168 Q9UKN7 -51170 Q8NBQ5 -51171 Q9BPX1 -51172 Q9UK23 -51174 B4DPT8 -51174 B4DW01 -51174 E9PCA7 -51174 E9PCQ8 -51174 Q5KU36 -51174 Q9UJT1 -51175 Q9UJT0 -51176 B7Z8E2 -51176 E9PDK3 -51176 Q659G9 -51176 Q9UJU2 -51177 Q53GL0 -51179 Q9NYQ3 -51181 Q7Z4W1 -51182 Q0VDF9 -51184 D4YWV1 -51184 F5H759 -51184 Q9UHW5 -51185 Q96SW2 -51186 Q9UHQ7 -51187 Q9UHA3 -51188 Q9UHA2 -51191 B3KSA4 -51191 Q9UII4 -51192 Q5BJH6 -51192 Q9UBR5 -51193 Q9UID6 -51194 Q9UI26 -51195 Q9UHV5 -51196 Q9P212 -51199 Q5BKU3 -51199 Q5XUU0 -51199 Q8N4C6 -51200 A4D1M3 -51200 B7Z576 -51200 Q9UI42 -51201 Q9UIJ5 -51202 G5E955 -51202 Q9H0S4 -51202 Q9UI98 -51203 B4DDF1 -51203 E7ERR5 -51203 Q9BXS6 -51204 Q9BSH4 -51205 Q9NPH0 -51206 Q9HCN6 -51207 Q6B8I1 -51207 Q9UII6 -51208 P56856 -51209 Q9NP90 -51213 Q9P127 -51218 Q86SX6 -51222 Q9P2Y4 -51224 Q8IYF1 -51225 Q9P2A4 -51226 Q9P299 -51227 P57054 -51228 Q9NZD2 -51230 Q566Q2 -51230 Q9BVI0 -51231 A6NEG5 -51231 Q8IV63 -51232 Q9NZV1 -51233 Q6PGQ1 -51234 Q5J8M3 -51236 Q9BTY7 -51237 D2IYS0 -51237 Q8WU39 -51239 Q53RE8 -51241 B8XYC5 -51241 Q9P0S2 -51244 Q6PII3 -51246 Q8N114 -51247 Q9BPZ3 -51248 Q5EBL8 -51249 Q5SWH9 -51250 Q9P0P8 -51251 Q9H0P0 -51252 B3KV66 -51252 E9PD86 -51252 Q8IXR5 -51253 Q9BZE1 -51255 Q9P0P0 -51256 Q53F44 -51256 Q5JPB9 -51256 Q9P0N9 -51257 Q9P0N8 -51258 Q4U2R6 -51259 Q9P0N5 -51260 Q9BVG4 -51263 Q8TCC3 -51264 Q9P0M9 -51265 Q8IVW4 -51266 Q9P126 -51267 Q8NC01 -51268 Q9P0Z9 -51270 Q5H9I0 -51271 B7Z348 -51271 B7Z8N9 -51271 F5GXE2 -51271 F5H0J8 -51271 Q9NZ09 -51272 Q9NYM9 -51274 P57682 -51276 Q7Z3V5 -51277 Q9NZQ0 -51278 Q5VY09 -51279 Q9NZP8 -51280 B3KNK9 -51280 Q8NBJ4 -51281 Q4ZFV3 -51281 Q9P2S6 -51282 P57086 -51282 Q9NZG6 -51283 Q9NZS9 -51284 B2R9N9 -51284 Q9NYK1 -51285 Q9NYN1 -51286 Q8N111 -51287 Q9NYJ1 -51289 Q9NSD7 -51290 Q86TD3 -51290 Q96RQ1 -51291 Q9P107 -51292 Q86T14 -51292 Q9P2T1 -51293 F5H6D3 -51293 Q9NPF0 -51294 Q9NPG4 -51295 E9PAN9 -51295 Q9BQ95 -51296 Q8IY34 -51297 Q9NP55 -51298 Q9P2T0 -51299 Q9NPD7 -51300 Q9NPL8 -51301 Q9P109 -51302 Q9NYL5 -51303 B4DWB7 -51303 E9PAR0 -51303 Q9NYL4 -51304 Q9NYG2 -51305 Q9NPC2 -51306 G3V0H9 -51306 Q9NYF5 -51307 Q9NYF3 -51308 Q9BRK0 -51309 Q9P291 -51310 Q8WUG5 -51311 Q9NR97 -51312 Q9NYZ2 -51313 Q6UWH4 -51313 Q9NYZ0 -51314 Q8N427 -51315 Q9NPI7 -51316 Q9NZF1 -51317 Q96BD5 -51318 Q9NZE8 -51319 Q96IZ7 -51320 Q5U5Q3 -51321 A6NLD9 -51321 Q86W34 -51322 Q9BTA9 -51324 Q9NZD8 -51326 Q8IVW1 -51327 Q549J4 -51327 Q9NZD4 -51329 B3V0L0 -51329 Q66PJ3 -51330 Q9NP84 -51332 Q9NRC6 -51333 B2R9V3 -51333 Q7L3S4 -51334 Q569H4 -51335 Q9NPE2 -51337 Q8WUY1 -51338 Q4JF27 -51338 Q96JQ5 -51339 A8MYJ2 -51339 Q9NYF0 -51340 Q9BZJ0 -51341 O95365 -51341 Q8TB76 -51343 Q9UM11 -51347 Q9H2K8 -51348 Q9NZS2 -51350 Q01546 -51351 Q03924 -51360 O43462 -51361 Q9UJC3 -51362 O60508 -51363 B4DH74 -51363 Q7LFX5 -51364 B3KU54 -51364 O75800 -51365 B4DXA2 -51365 Q53H76 -51366 O95071 -51367 A6NL80 -51367 Q969H6 -51368 Q53GI2 -51368 Q9Y6I9 -51371 D6MXU3 -51371 Q9Y244 -51372 Q9Y2S6 -51373 Q9Y2R5 -51374 Q6UW56 -51375 B4DP69 -51375 E9PNL2 -51375 Q9UNH6 -51377 Q9Y5K5 -51378 Q9Y264 -51379 Q8IUI8 -51380 Q86V02 -51380 Q96JQ3 -51380 Q9Y600 -51382 Q9Y5K8 -51384 E9PH60 -51384 Q9UBV4 -51385 Q86UQ0 -51386 B4DYB2 -51386 Q9Y262 -51388 Q9Y221 -51389 A8MT24 -51389 Q9H446 -51390 Q9NVV5 -51393 Q9Y5S1 -51397 Q9Y6G5 -51398 Q9Y284 -51399 Q9Y296 -51400 Q9Y570 -51406 Q9UMY1 -51409 Q9Y5R4 -51411 Q9UBW5 -51412 O94805 -51421 Q9Y2J4 -51422 Q9UGJ0 -51426 Q9UBT6 -51427 Q8WVL4 -51427 Q9UII5 -51428 Q9UJV9 -51429 Q9Y5X1 -51430 Q9UBS9 -51433 E9PFB2 -51433 Q9UJX4 -51434 Q4KMX6 -51434 Q69YV3 -51434 Q9UJX3 -51435 Q6AZY7 -51438 Q9UBF1 -51439 Q9UBU6 -51440 Q9UM19 -51441 Q9Y5A9 -51442 Q99990 -51444 Q8WVD3 -51447 A8K3B1 -51447 B2RCP4 -51447 B4E3G6 -51447 Q9UHH9 -51449 Q9UHG3 -51450 Q99811 -51451 Q9UIC8 -51454 B8ZZ72 -51454 E9PB86 -51454 Q9UBP9 -51455 Q9UBZ9 -51458 A8K4D4 -51458 Q9UBD6 -51460 Q402F7 -51460 Q9UHJ3 -51463 B7ZAQ6 -51463 P0CG08 -51465 Q9Y385 -51466 Q9UI08 -51471 Q9UHF3 -51473 Q9UHG0 -51474 Q59FE8 -51474 Q9UHB6 -51475 Q9NPB3 -51477 B3KRT1 -51477 B3KSG0 -51477 G3V1R9 -51477 G5E9U0 -51477 Q9NPH2 -51478 P56937 -51479 B3KPZ0 -51479 Q9P2R3 -51480 Q9H322 -51481 Q9NNX9 -51490 Q5T280 -51491 Q9Y3C1 -51493 Q9Y3I0 -51495 Q9P035 -51496 Q05D32 -51497 Q8IXH7 -51499 O43715 -51501 Q53FT3 -51503 Q9P013 -51504 Q9UI30 -51506 Q9Y3C8 -51507 Q9BY42 -51510 B4DIR6 -51510 Q9NZZ3 -51512 Q9NYZ3 -51513 B4DVB6 -51513 Q9Y603 -51514 Q9NZJ0 -51517 Q9NZQ3 -51520 Q9P2J5 -51522 Q9P0S9 -51523 C8CBA8 -51523 Q7LFL8 -51524 Q9NPI0 -51526 Q9NX31 -51527 Q9P0R6 -51528 Q9P055 -51529 Q9NYG5 -51530 Q86WB0 -51530 Q9BWJ8 -51531 Q9BU70 -51533 Q9BWX1 -51533 Q9NS08 -51534 Q9NP79 -51535 E9PAX8 -51535 Q8NEY8 -51537 Q9UDX5 -51538 Q9NP64 -51540 B4DDP9 -51540 Q59FK2 -51540 Q96I15 -51542 Q9P1Q0 -51545 Q9P0T4 -51547 Q9NRC8 -51548 Q8N6T7 -51550 F5H7P3 -51550 F5H8A7 -51550 Q9BW66 -51552 P61106 -51554 Q9NPB9 -51555 Q8IYB4 -51557 Q5TDP6 -51559 Q86UY8 -51560 Q9NRW1 -51561 Q9NPF7 -51562 B2RCV0 -51562 Q9NS73 -51564 Q8WUI4 -51566 Q9UH62 -51567 O95551 -51569 P61960 -51571 Q9NUQ9 -51573 Q9NZC3 -51574 Q4G0J3 -51575 Q9H501 -51582 O14977 -51585 O94913 -51586 Q96RN5 -51588 Q8N2W9 -51592 B3KN30 -51592 Q9UPN9 -51593 Q9BXP5 -51594 A2RRP1 -51596 O60888 -51599 A6NDW3 -51599 E9PHD4 -51599 Q86X29 -51599 Q9BT33 -51599 Q9BWS2 -51601 Q9Y234 -51602 Q9Y2X3 -51603 C4B4C6 -51603 Q8N6R0 -51604 B7Z3N1 -51604 Q969N2 -51605 Q9UJA5 -51606 B3KUZ7 -51606 Q9UI12 -51608 Q7L5D6 -51611 A8JZY6 -51611 B3KWP1 -51611 Q9H2P9 -51614 A2TJK5 -51614 Q9Y282 -51616 Q9HBM6 -51617 Q9Y328 -51619 Q9Y2X8 -51621 Q9Y2Y9 -51622 P86790 -51622 P86791 -51626 Q8TCX1 -51629 Q9BZJ4 -51631 B7Z4Q3 -51631 B7Z500 -51631 Q9Y383 -51633 Q8N6M0 -51634 Q05DU0 -51634 Q9Y388 -51635 Q9Y394 -51637 Q549M8 -51637 Q9Y224 -51639 Q53TM1 -51639 Q9Y3B4 -51642 Q96GC5 -51643 Q9HC24 -51645 Q9Y3C6 -51646 P62699 -51647 Q9Y3D0 -51649 Q9Y3D9 -51650 A4D1T3 -51650 Q3KRB4 -51650 Q9Y291 -51651 Q9Y3E5 -51652 Q9Y3E7 -51654 Q96SZ6 -51655 B4DFF4 -51655 Q9Y272 -51657 Q9Y6J8 -51659 Q9Y248 -51660 Q9Y5U8 -51661 Q9Y680 -51663 Q05D65 -51663 Q96KR1 -51665 Q9Y576 -51666 Q14D68 -51666 Q8TBT2 -51666 Q9Y574 -51667 Q9Y5A7 -51668 Q9Y547 -51669 Q96BY9 -51673 Q9BW30 -51676 B4E166 -51676 Q96Q27 -51678 Q9NZW5 -51684 Q9UMX1 -51686 Q6GMR0 -51686 Q9UMX2 -51690 Q9UK45 -51691 A4D0W0 -51691 O95777 -51692 Q9UKF6 -51693 Q9UL33 -51696 Q9UBI9 -51699 Q9UBQ0 -51700 Q6BCY4 -51701 Q9UBE8 -51702 Q9ULW8 -51703 Q9ULC5 -51704 Q9NZH0 -51705 B4E347 -51705 Q4W5J1 -51705 Q9ULC0 -51706 Q9UHQ9 -51710 F8W7T7 -51710 P15621 -51714 P62341 -51714 Q6IAK0 -51715 Q9ULC3 -51719 A8K8L7 -51719 Q9Y376 -51720 Q96RL1 -51725 Q9UH90 -51726 Q9UBS4 -51727 B2R6S5 -51727 E9PGI8 -51727 P30085 -51728 Q9Y2Y1 -51729 Q9Y2W2 -51733 B3KNC1 -51733 Q9UBR1 -51734 Q9NZV6 -51735 A3KN82 -51735 A5PLL6 -51735 B2RTU6 -51735 B7ZML2 -51735 E9PDV7 -51735 Q8TEU7 -51738 Q9UBU3 -51741 Q9NZC7 -51742 Q4LE39 -51744 Q9BZW8 -51747 A8K3C5 -51747 O95232 -51747 Q86Y74 -51750 Q9NZ71 -51751 Q9P298 -51752 Q9NZ08 -51754 A6NDV4 -51755 Q9NYV4 -51759 Q9NZ63 -51760 Q9BSW7 -51761 Q6ZSP3 -51761 Q6ZU25 -51761 Q9NTI2 -51762 Q92930 -51763 Q9BT40 -51764 Q9P2W3 -51765 Q9P289 -51768 Q9NS93 -51773 Q05DG0 -51773 Q96T23 -51776 D4Q8H0 -51776 Q9NYL2 -51778 Q9NPC6 -51780 Q7LBC6 -51802 Q9NY37 -51804 Q9UIU6 -51805 Q9NZJ6 -51806 Q53H37 -51806 Q9NZT1 -51807 B3KPW9 -51807 Q9NY65 -51808 Q9H814 -51809 Q86SF2 -51816 Q9NZK5 -53335 D6W5D9 -53335 D9YZV9 -53335 Q9H165 -53336 Q8N123 -53339 A6NMI8 -53339 Q9H0C5 -53340 Q15506 -53342 Q8TAD2 -53343 Q8NG26 -53343 Q96KB3 -53343 Q9BW91 -53344 Q5VXU3 -53345 Q8N8A7 -53345 Q9BZW4 -53346 E9PD04 -53346 Q4U0U5 -53346 Q9BZW5 -53347 G5E9E4 -53347 P57075 -53349 Q9HBF4 -53353 Q9NZR2 -53354 Q8TE04 -53358 Q92529 -53371 Q7Z3B4 -53373 Q9ULQ1 -53405 Q53G01 -53405 Q9NZA1 -53407 Q9P2W9 -53615 O95983 -53616 Q08AL8 -53616 Q9P0K1 -53630 Q9HAY6 -53632 Q9UGI9 -53635 Q86YD1 -53637 Q9H228 -53820 P57055 -53822 P58549 -53826 Q9H0Q3 -53827 Q96DB9 -53828 P59646 -53829 Q9BPV8 -53831 Q9NQS5 -53832 Q9UHF4 -53833 B4DL40 -53833 Q6UXL0 -53834 A0PJ49 -53834 Q8N441 -53836 Q9BY21 -53838 Q96F05 -53840 Q9BYJ4 -53841 B4DV98 -53841 Q58EZ6 -53841 Q9HBB8 -53842 Q8N7P3 -53904 Q8NEV4 -53905 Q9NRD9 -53916 P61018 -53917 Q969Q5 -53918 Q9BRX2 -53919 B7Z251 -53919 B7Z3Q3 -53919 B7Z8P1 -53919 F5GZD6 -53919 Q5JPA4 -53919 Q9NYB5 -53938 Q9H2H8 -53940 Q9BXU8 -53942 E9PKE8 -53942 O94779 -53942 Q49AF3 -53944 Q9HCP0 -53947 Q9NPC4 -53981 Q9P2I0 -54014 Q6P2D1 -54014 Q9NSI6 -54020 P57057 -54033 P57052 -54039 P57721 -54058 P58505 -54059 P58557 -54059 Q8TBC8 -54065 P58511 -54069 Q9NYP9 -54084 Q8WU66 -54093 Q9NVD3 -54097 P58499 -54101 Q96T11 -54101 Q9H4D1 -54102 Q96NY7 -54103 A4D1B5 -54106 C3W5P5 -54106 D1CS56 -54106 Q9NR96 -54107 Q9NRF9 -54108 Q9NRG0 -54112 Q9GZN0 -54148 Q9NYK5 -54149 Q68DA1 -54149 Q9NYK6 -54165 Q96GG9 -54187 Q9NR45 -54205 G4XXL9 -54205 P99999 -54206 B3KTV8 -54206 Q9UJM3 -54207 B2R8T4 -54207 B5TJL4 -54207 P57789 -54207 Q6B014 -54209 Q5TCX1 -54209 Q9NZC2 -54210 Q38L15 -54210 Q9NP99 -54212 Q9NSN8 -54221 Q9NY99 -54328 Q9NS66 -54329 A4D0T8 -54329 P60893 -54329 Q8NEN2 -54331 P59768 -54332 Q8TB36 -54344 Q5SR62 -54344 Q86TM7 -54344 Q9P2X0 -54345 P35713 -54346 Q4QQJ4 -54346 Q86WB7 -54360 Q9NRR1 -54361 P56705 -54363 A8K058 -54363 Q9UJM8 -54386 Q9NYB0 -54407 Q96QD8 -54413 D2X2H6 -54413 D3DVV1 -54413 Q4G160 -54413 Q86V51 -54413 Q9NZ94 -54414 Q9HAT2 -54429 A4D1U0 -54429 Q502V5 -54429 Q9NYW4 -54431 Q8IXB1 -54432 Q9Y548 -54433 Q9NY12 -54434 Q8WYL5 -54436 B3KWX8 -54436 Q8TE82 -54437 Q9P283 -54438 Q9NXC2 -54439 Q9P2N5 -54440 O75995 -54442 Q9NXV2 -54443 Q9NQW6 -54453 A1A4T0 -54453 Q8WYP3 -54454 Q9ULI0 -54455 Q6P3S6 -54456 A7E211 -54456 A8MXC6 -54456 B7Z7R1 -54456 F5H403 -54456 Q9BXT6 -54457 Q5H9L4 -54458 Q9NZ81 -54460 P82921 -54460 Q5TB11 -54461 Q969U6 -54462 Q9H7U1 -54463 Q9H6L5 -54464 Q8IZH2 -54465 Q9NY74 -54466 Q99865 -54467 Q9P2G1 -54468 Q9NXC5 -54469 Q6FIF0 -54470 Q7L4S7 -54471 Q7L890 -54471 Q9NQG6 -54472 Q6FIE9 -54472 Q9H0E2 -54474 P35900 -54475 Q9NVX2 -54476 A8K8N1 -54476 Q9NWF9 -54477 Q86ST7 -54477 Q9HAU0 -54478 Q9BSJ6 -54480 Q9P2E5 -54482 Q9NUP7 -54487 Q8WYQ5 -54490 Q9BY64 -54491 Q9NUU6 -54492 A8MQ27 -54492 C9DQJ5 -54494 Q6IPW1 -54495 Q96JJ7 -54496 Q9NVM4 -54497 Q9P2D3 -54498 Q9NWM0 -54499 Q9UM00 -54502 A0AV96 -54503 Q8IUH4 -54504 Q9H3G5 -54505 Q7Z478 -54507 Q6UY14 -54507 Q9UFG7 -54509 Q9HBH0 -54510 Q9HCL0 -54511 O95896 -54511 Q8TB92 -54511 Q9NT06 -54512 Q9NPD3 -54514 B3KSF4 -54514 D6RDK4 -54514 E9PCD8 -54514 Q9NQI0 -54516 Q9UGC7 -54517 B3KRB2 -54517 B3KY42 -54517 Q96PZ0 -54518 Q7Z5R6 -54520 Q567U6 -54521 B4DSE9 -54521 F8W913 -54521 Q5JSH3 -54522 F8WEI4 -54522 Q6P6B7 -54529 Q9NWL6 -54531 Q8N344 -54532 Q70EK8 -54532 Q9H9I0 -54534 Q8N5N7 -54535 E9PE84 -54535 Q2TB68 -54535 Q769H0 -54535 Q8TD31 -54536 B3KXY5 -54536 E9PHI3 -54536 Q8TAG9 -54537 Q86V20 -54538 Q8WZ75 -54539 Q9NX14 -54540 E9PET5 -54540 Q6IPW0 -54541 Q9NX09 -54542 Q9HBD1 -54543 Q75MR5 -54543 Q9P0U1 -54544 Q9UGL9 -54545 Q9C0I1 -54546 Q9NXI6 -54549 Q58EX2 -54550 Q7Z6G3 -54552 Q05DU1 -54552 Q9NVN8 -54554 Q86VZ2 -54555 Q9Y6V7 -54556 Q9NXR8 -54557 Q96EQ0 -54558 Q9NWH7 -54566 Q59GC2 -54566 Q9H329 -54566 Q9NSG9 -54566 Q9NX84 -54567 Q9NR61 -54575 Q5DT02 -54575 Q9HAW8 -54576 Q5DSZ6 -54576 Q9HAW9 -54577 Q5DSZ7 -54577 Q9HAW7 -54578 A6NKK6 -54578 P19224 -54578 Q5DSZ8 -54578 Q5DT01 -54579 P35504 -54579 Q5DSZ9 -54583 Q9GZT9 -54584 Q9BYB4 -54585 Q9NQ48 -54586 Q9NQ60 -54587 Q9BRK3 -54596 Q5T7N2 -54600 O60656 -54600 Q5DSZ5 -54602 B4DGY6 -54602 Q9NV92 -54606 Q9NY93 -54617 Q9NUK2 -54617 Q9ULG1 -54619 Q5T5M9 -54620 Q6PCT2 -54621 Q8N0Z9 -54622 Q9NXU5 -54623 Q8N7H5 -54625 Q460N5 -54625 Q8N546 -54626 A2RTZ9 -54626 Q9Y543 -54627 Q9P2G4 -54629 Q8NBR6 -54657 P22310 -54657 Q5DT00 -54658 P22309 -54658 Q5DT03 -54659 P35503 -54659 Q5DT01 -54662 Q9NVG8 -54663 Q6RFH5 -54664 Q9NUM4 -54665 Q5VWQ0 -54674 A4D0T1 -54674 Q9H3W5 -54674 Q9NUU4 -54675 Q9UJA2 -54676 Q9BX10 -54677 E7EQF2 -54677 Q86V17 -54677 Q9UKG9 -54680 B4DP13 -54680 Q9NWK9 -54681 Q9NXG6 -54682 Q9H8J5 -54700 Q9NYV6 -54704 B4DYX8 -54704 Q6P1N1 -54704 Q9P0J1 -54707 Q9H9Y4 -54708 Q9NX47 -54714 Q9NQW8 -54715 Q59HD3 -54715 Q9NWB1 -54716 Q9NP91 -54726 Q01804 -54732 Q9BVK6 -54733 Q8IXU6 -54734 Q14964 -54737 Q99549 -54738 Q99581 -54739 B3KPW1 -54739 Q6GPH4 -54741 O15243 -54742 Q17RY6 -54749 C9JYS3 -54749 Q96J80 -54749 Q9UM22 -54751 Q8WUP2 -54752 Q8TC99 -54753 P0CG23 -54754 A1L443 -54756 Q8NFM7 -54757 B7Z4Y3 -54757 Q8IYA5 -54757 Q96MK3 -54758 Q8TBB5 -54760 B3KQ28 -54760 Q6UW60 -54762 A8KA99 -54762 Q8IYS0 -54763 Q9HAT0 -54764 Q9UGI0 -54765 Q96DX7 -54766 Q9NY30 -54768 B4DQY4 -54768 B4DRN4 -54768 F5H6V3 -54768 F8WD23 -54768 Q4G0P3 -54769 Q96HU8 -54776 Q9BZL4 -54777 Q8IYW2 -54778 Q6ZNA4 -54780 Q9NXX6 -54784 Q9NXW9 -54785 Q96GS4 -54788 Q9NXW2 -54790 Q6N021 -54793 Q7L273 -54795 Q8TD43 -54796 Q6ZN30 -54797 Q9BUE0 -54798 B2RU14 -54798 E9PC11 -54798 E9PG03 -54798 Q6V1P8 -54798 Q6V1P9 -54799 Q05BQ5 -54800 Q6TFL4 -54801 Q7Z4H7 -54802 Q53F11 -54802 Q9H3H1 -54805 Q9H8M5 -54806 Q8N157 -54806 Q8NER0 -54807 B3KTS9 -54807 G3XAH3 -54807 Q9NXT0 -54808 Q7RTS9 -54809 Q5K651 -54810 Q8TF65 -54811 Q6V9R5 -54812 Q53GW0 -54812 Q6ULP2 -54813 Q9NXS3 -54814 Q9NXS2 -54815 Q86YP4 -54816 Q6N043 -54816 Q7Z6J5 -54819 Q8TBK6 -54820 Q9NXR1 -54821 Q2NKX8 -54822 Q96QT4 -54823 B3KXU9 -54823 Q5T5J6 -54825 A1L3U4 -54825 Q9BYE9 -54826 Q9NXP7 -54827 Q6UWF7 -54828 Q05D99 -54828 Q9H6U6 -54829 B4E2Z7 -54829 Q9BXN1 -54830 Q9H1M0 -54831 Q8NFU1 -54832 Q709C8 -54834 Q9NXN4 -54836 Q5W0U4 -54838 Q9NX94 -54839 B7Z366 -54839 B7Z7G0 -54839 G5E9T5 -54839 Q8IUZ0 -54840 Q5T782 -54840 Q6JV85 -54840 Q7Z2E3 -54841 Q86UB2 -54842 Q6ZSS7 -54843 Q9HCH5 -54845 E9PB47 -54845 Q6NXG1 -54847 Q9NXL6 -54848 C9JIB4 -54848 Q9NXL2 -54849 Q6ZN54 -54850 Q9NXK8 -54851 Q8WVL7 -54852 Q9NXK6 -54853 Q9H6Y2 -54854 Q2M2I3 -54855 Q5VWP2 -54856 Q3T8J9 -54856 Q6PHZ4 -54857 B4DRH4 -54857 B4DVC9 -54857 Q9HCC8 -54858 Q9NXJ5 -54859 Q0PNE2 -54860 F5GX98 -54860 Q9NXJ0 -54861 Q9NRH2 -54862 Q6P1N0 -54863 Q9NXH8 -54865 A8KAG1 -54865 E9PAV9 -54865 Q5T3I0 -54866 E9PAT1 -54866 Q4V755 -54866 Q9NXH3 -54867 Q6NUQ4 -54868 Q8NE00 -54869 Q8TE68 -54870 A1L3Z9 -54870 Q2TAL8 -54872 Q5H8A4 -54872 Q8NCI4 -54873 Q9NP74 -54874 B4DSI7 -54874 Q5T0N5 -54875 Q9NXG0 -54876 Q9NXF7 -54877 Q9BRD4 -54877 Q9C0B9 -54878 Q6V1X1 -54879 Q8TDW4 -54880 Q6W2J9 -54881 B4DYV2 -54881 Q9NXF1 -54882 Q8IWZ3 -54883 Q9NXE8 -54884 Q6NUM9 -54885 B9A6K5 -54885 B9A6K6 -54885 Q0IIM8 -54886 Q8TBJ4 -54887 Q6BDS2 -54888 B4DQW2 -54888 Q08J23 -54890 Q6P6C2 -54891 Q53TQ3 -54892 Q86XI2 -54893 Q9NXD2 -54894 Q68DV7 -54896 B3KWQ5 -54896 Q6ZP29 -54897 B3KRV8 -54897 Q86V15 -54898 Q9NXB9 -54899 Q7Z7A4 -54900 Q8IWV1 -54901 Q5VV42 -54902 Q6DKK2 -54903 F5H885 -54903 Q9NXB0 -54904 Q9BZ95 -54905 Q8TAV3 -54906 Q5VWN6 -54908 Q96EA4 -54910 Q9C0C4 -54913 Q9BUL9 -54914 B3KNV9 -54914 Q5VW36 -54915 Q9BYJ9 -54916 B3KN73 -54916 Q9NX78 -54918 Q9NX76 -54919 B3KPE2 -54919 Q86Y56 -54920 Q9NX74 -54921 P0CG13 -54922 Q5U651 -54922 Q7L251 -54922 Q8IUR2 -54923 Q9H400 -54925 Q9NX65 -54926 Q712K3 -54927 A4D1N4 -54927 Q9NX63 -54928 Q9NX62 -54929 Q9NX61 -54930 Q9H6D7 -54931 Q7L0Y3 -54932 Q8N9H8 -54933 B3KUN4 -54933 Q9NX52 -54934 Q9H9L4 -54935 Q9BVJ7 -54936 Q9NX46 -54937 Q9NX45 -54938 B4DE10 -54938 Q9NP81 -54939 Q9H0A8 -54940 Q9NX40 -54941 Q96EQ8 -54942 Q9NX38 -54943 Q9NX36 -54946 B7Z4Y2 -54946 D3DNA7 -54946 Q96GZ6 -54947 Q7L5N7 -54948 Q9NX20 -54949 Q9NX18 -54951 Q9NX08 -54952 Q9NX07 -54953 B4DNY0 -54953 E9PFR7 -54953 Q5SWX8 -54954 Q9NX05 -54955 Q9NX04 -54956 Q8N5Y8 -54957 Q9NX01 -54958 Q9NX00 -54959 A1E959 -54960 Q9NWZ8 -54961 Q8TE77 -54962 Q9BVW5 -54963 B7Z8N2 -54963 Q53HM1 -54963 Q9NWZ5 -54964 Q9BUN1 -54965 Q8TBF5 -54967 Q8WUE5 -54968 E9PDY9 -54968 Q9BUB7 -54969 Q9NWY4 -54970 A8K8G6 -54970 Q53G14 -54970 Q9H892 -54971 B2RCF7 -54971 B3KM38 -54971 B4DE54 -54971 B4DNJ9 -54971 F5GZM0 -54971 Q8N9N5 -54971 Q9NSS6 -54972 Q24JP5 -54973 B3KPR3 -54973 Q5TA45 -54974 Q9NWX6 -54976 Q9GZN8 -54977 Q96DW6 -54978 Q8N357 -54979 Q9NWW9 -54980 Q9NWW7 -54981 Q9NWW6 -54982 Q9NWW5 -54984 Q96BK5 -54985 Q9NWW0 -54986 B3KSE5 -54986 Q96C45 -54987 Q9NWV4 -54988 Q6NUN0 -54989 Q6IQ21 -54991 Q96HA4 -54993 Q7Z7L9 -54994 Q9NWU2 -54995 Q9NWU1 -54996 Q969Z3 -54997 F5H1Y5 -54997 Q96BS2 -54998 Q9NWT8 -55001 Q5TAA0 -55002 Q6UWJ1 -55003 Q9NWT1 -55004 Q6IAA8 -55005 Q9NWS8 -55006 Q9BVS5 -55007 Q9NWS6 -55008 Q8IVU3 -55009 Q9BVV8 -55010 B4DT40 -55010 Q9NWS1 -55011 Q9NWS0 -55012 Q969Q6 -55013 Q9NWR8 -55014 P56962 -55015 Q86UA1 -55016 A8K0Z6 -55016 Q8TCQ1 -55017 Q9NWQ9 -55020 Q5R3I4 -55022 Q7Z2X4 -55023 A7J992 -55023 Q8WWQ0 -55024 Q8NDB2 -55026 B1APR4 -55026 B3KPI6 -55026 E9PAR3 -55026 Q5JRV8 -55026 Q7Z4S8 -55027 Q7Z4Q2 -55028 Q9BSJ5 -55030 Q9NWN3 -55031 Q96K76 -55032 Q9BS91 -55033 Q9NWM8 -55034 Q96EN8 -55035 Q76FK4 -55036 Q4G0X9 -55037 Q96EY7 -55038 Q9BXL8 -55039 Q53H54 -55040 Q9H201 -55041 Q53FF1 -55041 Q96CS7 -55048 A5D8V6 -55049 E9PAS0 -55049 Q96EN9 -55051 Q9H7Z3 -55052 Q9BYC9 -55054 A3EXL0 -55054 Q17RG0 -55054 Q53SV2 -55054 Q676U5 -55055 Q9H900 -55057 Q8N1P7 -55057 Q9NWG5 -55061 B3KTY0 -55061 Q5VX71 -55062 Q5MNZ9 -55063 Q9H0M4 -55064 B4DIY4 -55065 Q9NWF4 -55066 Q8NCN5 -55068 Q8TC92 -55069 Q9NWD8 -55070 B3KNN6 -55070 Q7L5Y6 -55071 Q8IXQ3 -55072 A0A962 -55072 Q96EP0 -55074 B7Z8N5 -55074 D3HIS6 -55074 Q8N573 -55075 G3XAG2 -55075 Q05DB3 -55075 Q96NH6 -55075 Q9BZF9 -55076 Q9NWC5 -55079 Q8TBJ5 -55080 Q9BX59 -55081 Q9NWB7 -55082 Q9NWB6 -55083 Q2KJY2 -55084 A7XYQ1 -55084 Q24K27 -55086 Q6NSI4 -55086 Q9H7W5 -55088 Q7Z3E2 -55089 Q969I6 -55090 Q9NWA0 -55092 Q9NW97 -55093 Q96HA8 -55094 Q9BRR8 -55095 A5Z0M6 -55095 Q5PRF9 -55096 Q6P2I7 -55100 Q9NW82 -55101 B4DDC0 -55101 B4DMZ4 -55101 B4DP55 -55101 B4DXE8 -55101 E9PDC6 -55101 F5H4W7 -55101 Q9NW81 -55102 Q96BY7 -55103 Q86X27 -55105 Q9NW75 -55106 Q8IYM2 -55107 Q5XXA6 -55107 Q9NW72 -55108 Q9NW68 -55109 Q8N302 -55110 Q96A72 -55111 Q9NW61 -55112 Q8WVS4 -55113 Q9H6D3 -55114 Q68EM7 -55116 Q9BT39 -55116 Q9GZU3 -55117 B7Z2P7 -55117 Q8IXG2 -55117 Q9H2J7 -55117 Q9H9F5 -55117 Q9NW50 -55118 Q9NQ79 -55119 Q5VTL8 -55119 Q69YH0 -55120 Q9NW38 -55122 Q53H80 -55122 Q9NW35 -55124 Q8TC59 -55125 B7ZMF0 -55125 E9PF99 -55125 Q9HCK3 -55127 A2VDI1 -55127 B2RWN5 -55127 Q9H583 -55128 Q6AZZ1 -55129 B4DNK2 -55129 C9JHS1 -55129 Q9NW15 -55130 A8K906 -55130 Q5T2S8 -55131 B4DU52 -55131 E9PDD9 -55131 Q9NW13 -55132 G3V0E9 -55132 G3XAJ5 -55132 Q659C4 -55133 Q8N5C6 -55135 Q9BUR4 -55137 Q5HY92 -55138 Q86YD7 -55139 Q9H8Y5 -55140 Q9H9T3 -55142 Q9NVX0 -55143 Q53HL2 -55144 B3KRU1 -55144 Q7L1W4 -55144 Q96GG5 -55145 Q9NVV9 -55146 Q9NPG8 -55147 Q86U06 -55148 Q8N806 -55149 Q9NVV4 -55150 Q9NVV2 -55151 Q9NVV0 -55152 Q5D0E6 -55153 Q9NVU7 -55154 Q9BUK6 -55156 Q9NVT9 -55157 Q6PI48 -55157 Q9H9J7 -55159 Q6PCD5 -55160 Q9HCE6 -55161 P57088 -55163 Q9NVS9 -55164 Q6PI26 -55165 Q53EZ4 -55166 Q7L2Z9 -55167 G5E9I1 -55167 Q9HCI7 -55168 Q5QPA4 -55168 Q9NVS2 -55170 Q96LA8 -55171 Q9NVR7 -55172 Q9NVR5 -55173 P82664 -55174 Q9NVR2 -55175 Q9NVR0 -55176 B3KQ68 -55176 B4DX72 -55176 F8W773 -55176 Q8TC24 -55176 Q9H9S3 -55177 Q96TC7 -55178 Q9HC36 -55179 Q9NVQ4 -55180 Q8NG48 -55181 Q8ND04 -55182 Q5VTB9 -55183 Q5UIP0 -55184 A1L3Z8 -55184 Q9NVP4 -55186 Q96CQ1 -55187 Q5THJ4 -55188 Q9NVN3 -55190 Q96G61 -55191 Q6IA69 -55192 Q9NVM6 -55193 Q86U86 -55194 Q9NVM1 -55195 Q9NVL8 -55196 Q9HCM1 -55197 Q96P16 -55198 B7Z411 -55198 B7Z4B0 -55198 F5GZG0 -55198 F8W1P5 -55198 Q8NEU8 -55199 Q9NVL1 -55200 Q3KR16 -55201 Q66K74 -55203 Q8N0V4 -55204 Q9H4A5 -55205 B3KXW2 -55205 Q9HCE3 -55206 A3KN83 -55207 Q9NVJ2 -55208 Q6PH85 -55209 Q9C0A6 -55210 B3KPB3 -55210 D2K8Q1 -55210 G3V1I6 -55210 Q9NVI7 -55211 Q7L190 -55212 Q8IWZ6 -55213 B3KR20 -55213 Q8NDN9 -55214 D3DNV8 -55214 Q8IVL5 -55215 B3KNW8 -55215 Q9NVI1 -55216 Q6ZUT1 -55217 Q9NVH6 -55218 A8K948 -55218 B4DIH6 -55218 G5E947 -55218 Q6AWB6 -55218 Q86TX3 -55218 Q9NVH0 -55219 Q8N5G2 -55220 Q8IYD2 -55222 Q8TCA0 -55223 Q9BVG3 -55224 Q9NVF9 -55225 Q9HCJ3 -55226 B4DFD5 -55226 Q9H0A0 -55227 Q9BTT6 -55228 Q86V59 -55229 Q9NVE7 -55230 Q9NVE5 -55231 Q9NVE4 -55233 Q9H8S9 -55234 A0MNN4 -55234 Q2TAY7 -55236 A0AVT1 -55237 Q9H8Y1 -55238 Q9NVC3 -55239 Q8N543 -55240 Q658P3 -55243 Q96J84 -55244 Q96FL8 -55245 B1AKV5 -55245 B7ZBG3 -55245 Q3KRB6 -55245 Q9NVA1 -55246 Q86WR0 -55247 Q8TAT5 -55248 B7Z4D6 -55248 Q9H813 -55249 B4DMP2 -55249 B4DQQ0 -55249 Q5VYZ1 -55249 Q9H869 -55250 A8KAI6 -55250 B4DTG0 -55250 B4DXP0 -55250 E7EP23 -55250 E9PCX0 -55250 Q6IA86 -55251 Q9NV79 -55252 Q76L83 -55253 Q9NV66 -55254 Q9NV64 -55255 Q9HAD4 -55256 Q9BV57 -55257 A8C4L5 -55257 Q9NV56 -55258 A8K0C1 -55258 Q86YJ6 -55259 B4DNP2 -55259 Q6TDU7 -55260 Q96AN5 -55262 Q8WVR3 -55266 Q96HH6 -55267 Q9NV39 -55268 Q86YB7 -55269 B4DWI8 -55269 Q8WXF1 -55270 Q9NV35 -55272 Q9NV31 -55273 Q9NV29 -55274 Q8WUB8 -55275 B3KS06 -55275 Q5VIR6 -55276 Q96G03 -55277 B1AK94 -55277 Q96C11 -55278 Q9H0R6 -55279 Q8IZM8 -55280 Q69YN2 -55281 Q9NV12 -55282 B7Z4G3 -55282 Q1X8D7 -55283 Q8TDD5 -55284 Q96B02 -55285 Q96IZ5 -55286 Q8IY42 -55287 Q8WWA1 -55288 Q8IXI2 -55289 B4DU63 -55289 E9PB20 -55289 Q9NUZ1 -55290 Q9HAW0 -55291 Q5H9R7 -55293 Q8IX04 -55294 Q969H0 -55295 Q53HC5 -55296 Q8N5T2 -55297 Q05D28 -55297 Q7Z6B0 -55298 Q9H920 -55299 Q8TDN6 -55300 Q8TCG2 -55301 Q9NV23 -55303 Q9NUV9 -55304 Q8N2H1 -55304 Q9NUV7 -55308 Q9NUU7 -55311 Q8N0Y2 -55312 B2RDZ2 -55312 Q969G6 -55313 Q9BRF8 -55314 Q7Z5S9 -55315 Q9BZD2 -55316 Q9HA92 -55317 Q9NUS5 -55319 Q96EY4 -55320 Q6P0N0 -55321 Q9NUR3 -55322 Q49AR2 -55323 Q5XKE4 -55323 Q9BRS8 -55324 Q9NUQ8 -55325 B3KRI4 -55325 Q9NUQ7 -55326 Q9NUQ2 -55327 Q9NUP9 -55328 Q5VYX0 -55329 B3KQ70 -55329 Q8NEH6 -55330 Q9NUP1 -55331 Q9NUN7 -55332 Q8N682 -55333 P57105 -55334 B4DDK0 -55334 C4N9M8 -55334 G3V5J8 -55334 Q9NUM3 -55335 Q9BS92 -55336 Q96CD0 -55337 Q9NUL5 -55339 Q6NUQ0 -55339 Q9C0J8 -55340 Q96F15 -55341 Q9H089 -55342 Q96SI9 -55343 B2RDB2 -55343 B3KQH0 -55343 Q96A29 -55344 Q9NUJ7 -55345 B4DSN6 -55345 G5EA02 -55345 Q6ZU11 -55345 Q86YA3 -55346 B3KQZ4 -55346 Q9NUJ3 -55347 Q9NUJ1 -55349 Q8NE62 -55351 Q9NY57 -55352 Q9NQ92 -55353 Q86VI4 -55355 Q8NCD3 -55356 Q8IZD6 -55357 Q9BYX2 -55359 Q6J9G0 -55361 Q9BTU6 -55362 Q5T3F8 -55363 Q9BXL5 -55364 Q9P2X3 -55365 Q96HP8 -55366 Q59ER8 -55366 Q9BXB1 -55367 Q9HB75 -55374 Q96DC7 -55379 Q96AG4 -55388 Q7L590 -55421 Q53F19 -55422 Q68D63 -55422 Q71QC5 -55422 Q71QC6 -55422 Q9NQX6 -55423 Q9P1W8 -55425 Q8IXQ4 -55432 Q5VVQ6 -55435 Q63HQ0 -55437 Q9C0K7 -55450 Q7Z7J9 -55454 Q8N6G5 -55466 E9PDM9 -55466 Q69YX3 -55466 Q8N5Z4 -55466 Q8WW22 -55471 Q7L592 -55486 Q9H300 -55500 G5E969 -55500 Q9HBU6 -55501 Q9NRB3 -55502 Q96HZ4 -55503 Q9H1D0 -55504 B4E2I6 -55504 Q9NS68 -55505 Q9NPE3 -55506 Q9P0M6 -55507 Q9NZD1 -55508 Q7Z769 -55509 Q9NR55 -55510 Q9NXZ2 -55511 Q9NXZ1 -55512 A8K0T6 -55512 Q9NY59 -55515 Q96FT7 -55520 Q9H777 -55521 A6NDD0 -55521 Q0P5Z9 -55521 Q9NQ86 -55526 Q96HY7 -55527 Q9BSK4 -55529 Q8N4L2 -55530 Q8N4V2 -55531 G5E9S5 -55531 Q8N336 -55532 B3KR19 -55532 Q6XR72 -55534 Q96JK9 -55534 Q9NPV6 -55536 A8K8X5 -55536 B3KTR5 -55536 B4DUT3 -55536 C9K0Y1 -55536 Q96GN5 -55540 Q9NRM6 -55544 Q9H0Z9 -55552 P16415 -55553 P35712 -55554 Q96RQ0 -55554 Q9H2R5 -55556 A6NMP3 -55556 Q7L5Y1 -55558 P51805 -55559 Q99871 -55561 Q6DT37 -55565 B4DKK4 -55565 O75541 -55567 Q8TD57 -55568 Q86SR1 -55571 Q9UKZ1 -55572 Q96CU9 -55573 Q9UKY7 -55576 Q8WWQ8 -55577 B4DLZ5 -55577 Q9UJ70 -55578 Q8NEM7 -55582 Q86VH2 -55584 Q9UGM1 -55585 Q29SN7 -55585 Q7Z7E8 -55586 Q9UGB7 -55588 B4DUA7 -55588 Q9NX70 -55589 Q4W5H2 -55589 Q9NSY1 -55591 Q9HBM0 -55593 B4DGG7 -55593 G5E9D7 -55593 Q96G74 -55596 Q6NZY4 -55599 Q96LT9 -55600 Q8WWA0 -55601 Q6B0F7 -55601 Q8IY21 -55601 Q9H616 -55601 Q9NXV7 -55602 Q9NXV6 -55603 Q96IP4 -55604 Q5VZK9 -55605 B9EGE4 -55605 F5H0C3 -55605 F5H219 -55605 Q2UVF1 -55605 Q7Z4S6 -55607 A1L494 -55607 B2RWQ1 -55607 B7ZLX4 -55607 E9PCK6 -55607 E9PDX1 -55607 F8W7J9 -55607 Q9ULJ8 -55608 Q9NXR5 -55609 Q8ND82 -55610 D1MQ00 -55610 Q96JG6 -55611 B3KUV5 -55611 Q96FW1 -55612 Q49AC8 -55612 Q54A15 -55612 Q9BQL6 -55613 Q96EF0 -55614 Q96L93 -55615 A8K699 -55615 B1AHF6 -55615 B3KP73 -55615 P85299 -55616 Q8TDY4 -55617 Q9H6P5 -55619 Q68DA4 -55619 Q96BY6 -55620 Q9UGK3 -55621 A8K8L2 -55621 Q9NXH9 -55622 B4DRC7 -55622 Q6P3X3 -55623 Q6MZT3 -55623 Q9NXG2 -55624 Q8WZA1 -55625 Q9NXF8 -55626 Q9C0C7 -55627 B1PBA3 -55627 B4DRB8 -55627 E7ESA2 -55627 Q9NXE4 -55628 Q9C0G0 -55629 Q9NPJ4 -55630 Q6P5W5 -55631 Q9H9A6 -55632 Q7L622 -55633 A8KA28 -55633 Q9NU19 -55634 Q5JUW0 -55635 Q5TB30 -55636 Q6ZWF9 -55636 Q9P2D1 -55638 Q9NX95 -55640 B7Z485 -55640 Q9UPI3 -55643 Q9BX70 -55644 Q9NPF4 -55646 Q9NX58 -55647 Q9NX57 -55650 Q9NUD9 -55651 Q9NX24 -55652 Q6P1K1 -55653 Q8TDM0 -55654 O75204 -55655 B4DZL7 -55655 Q9NX02 -55656 Q75QN2 -55657 B4DXZ0 -55657 Q9BU19 -55658 A8K0Q1 -55658 Q9BV68 -55659 Q9BWM5 -55660 O75400 -55660 Q05C41 -55661 Q96GQ7 -55662 Q9NWT6 -55663 Q9NWS9 -55664 Q7L3B6 -55665 E9PFF6 -55665 Q8TCY9 -55666 Q8TAT6 -55667 B3KXP9 -55667 Q5VZ89 -55668 Q9NWQ4 -55669 Q8IWA4 -55670 F6UBB5 -55670 Q7Z2D7 -55670 Q7Z412 -55671 Q6IN85 -55672 Q3BBV0 -55676 B7Z901 -55676 Q6NXT4 -55677 Q96ST2 -55679 B3KNZ3 -55679 F5H6E6 -55679 Q7Z4I7 -55680 Q8WXA3 -55681 Q6P3W7 -55683 Q9P2N6 -55684 A8QVZ7 -55684 C6K8I4 -55684 Q3YEC7 -55686 Q8N565 -55687 O75648 -55689 Q9ULM3 -55690 Q6VY07 -55691 Q9P2Q2 -55692 Q1W6G4 -55692 Q9NQ29 -55693 Q6B0I6 -55695 B3KX04 -55695 B4DP79 -55695 G3V0G9 -55695 Q96P11 -55696 Q9NW64 -55697 Q08AM6 -55697 Q9NTB8 -55698 Q96JH8 -55699 Q9NSE4 -55700 Q3KQU3 -55701 Q8TER5 -55702 Q9BW85 -55703 B3KV73 -55703 F5H1E6 -55703 Q7Z3R8 -55703 Q9NW08 -55704 Q3V6T2 -55704 Q6DCA5 -55704 Q86YH1 -55705 Q96P70 -55706 B4DHA3 -55706 Q9BTX1 -55707 Q9NVZ3 -55709 Q9NVX7 -55711 Q96K12 -55713 Q5XKG8 -55713 Q9HCZ1 -55714 Q9P273 -55715 Q8TEW6 -55716 Q6UX01 -55717 Q9BZH6 -55718 Q9NVU0 -55719 B1AL17 -55719 Q6GMU6 -55719 Q8IX21 -55720 Q2NL82 -55721 F5H7T8 -55721 Q4KMZ1 -55722 Q9P209 -55723 Q9NVP2 -55726 Q9NVM9 -55727 Q9P203 -55728 Q86UW6 -55729 B3KNI7 -55729 B3KQF8 -55729 Q6VMQ6 -55731 B3KQ88 -55731 Q8WU58 -55732 Q9NSG2 -55733 B7Z4D5 -55733 B7Z5I1 -55733 B7Z5N1 -55733 B7Z868 -55733 F5H444 -55733 Q5VTY9 -55734 Q5JWM1 -55734 Q9NPA5 -55734 Q9NTW7 -55735 Q9NVH1 -55737 Q96QK1 -55738 Q8N6T3 -55739 Q8IW45 -55740 Q8N8S7 -55741 Q9BV94 -55742 Q9NVD7 -55743 Q96EP1 -55744 Q9GZY4 -55745 Q9H0R1 -55746 Q8WUM0 -55747 Q5SNT6 -55748 Q96KP4 -55749 Q8IX12 -55750 A4D1U5 -55750 Q53H12 -55751 Q9NVA4 -55752 Q9NVA2 -55753 Q9ULD0 -55754 Q9NV96 -55755 B3KVI2 -55755 Q05CZ3 -55755 Q96SN8 -55756 B7Z560 -55756 B7Z6M5 -55756 Q9NV88 -55757 Q05D90 -55757 Q8N5K0 -55757 Q9NYU1 -55758 Q9P2K3 -55759 Q53T99 -55759 Q9GZL7 -55760 Q7L7V1 -55761 Q49A97 -55761 Q96AE7 -55762 F5GZM6 -55762 Q6NWZ7 -55762 Q9NV72 -55763 Q9NV70 -55764 G3XAB1 -55764 Q9BTY4 -55764 Q9HBG5 -55764 Q9HBG6 -55764 Q9NV68 -55765 B4E1K9 -55765 E9PFY0 -55765 Q3KP66 -55766 Q9BTM1 -55768 B4DJE9 -55768 Q96IV0 -55769 B3KQJ6 -55769 P51522 -55769 Q96K00 -55770 B3KPN7 -55770 Q96KP1 -55771 D2SNZ4 -55771 Q96HE9 -55773 Q9NUY8 -55775 B3KN41 -55775 Q9NUW8 -55776 Q9NPB0 -55777 Q9P267 -55778 A8K0R7 -55779 Q96MT7 -55779 Q9NUU0 -55779 Q9UF55 -55780 Q5T6L9 -55781 D6RDI3 -55781 Q9BVS4 -55783 Q8IYT2 -55784 Q6DN12 -55785 Q6ZV73 -55786 B3KTG1 -55786 F5H287 -55786 Q09FC8 -55787 Q9NUQ3 -55788 Q9NUN5 -55789 B4DUT4 -55789 Q8WUY9 -55790 Q8TDX6 -55791 Q5T3J3 -55793 D3DV11 -55793 Q8N5J2 -55794 Q9NUL7 -55795 A8K097 -55795 Q5JVF3 -55796 Q8IUR4 -55796 Q9NUK0 -55798 Q6P1Q9 -55799 Q8IZS8 -55800 Q9NY72 -55801 Q9NPH9 -55802 Q9NPI6 -55803 Q9NPF8 -55805 Q9P2M1 -55806 O43593 -55808 Q9NSC7 -55808 Q9NXQ7 -55809 Q96PN7 -55810 Q9P0K8 -55811 B4DZF0 -55811 F5GWS5 -55811 Q96PN6 -55812 Q9P0W8 -55813 Q9NYH9 -55814 A6H8Y1 -55815 Q2TAA8 -55816 Q9P104 -55818 Q9Y4C1 -55819 Q86XS8 -55821 B4DY77 -55821 Q8N6M5 -55823 Q9H270 -55824 Q9NWQ8 -55825 Q9BY49 -55827 B4DNB8 -55827 Q58WW2 -55829 Q9BQE4 -55830 Q68CQ7 -55831 Q9P0I2 -55832 Q86VP6 -55833 Q5T6F2 -55833 Q9P0H6 -55835 Q9HC77 -55837 Q56P03 -55839 D3DUK9 -55839 Q96H22 -55840 Q96CJ1 -55841 Q9ULE0 -55843 Q53QZ3 -55844 Q66LE6 -55844 Q6PEG1 -55845 Q8WUW1 -55846 Q969R8 -55847 Q9NZ45 -55848 Q9HBL7 -55850 Q9NZ43 -55851 Q9NZ42 -55852 Q8IWB9 -55854 Q8WU90 -55856 F5H2L4 -55856 Q9NPJ3 -55857 Q2M2Z5 -55858 Q9HC07 -55859 Q9HBH7 -55860 Q9NZ32 -55861 Q5QPV4 -55861 Q5QPV6 -55861 Q9BQY9 -55862 E9PEN7 -55862 E9PR31 -55862 Q5TEF6 -55862 Q9NTX5 -55863 A8K535 -55863 B4DP48 -55863 Q8IUX1 -55867 Q9NSA0 -55869 A6ND12 -55869 A6ND61 -55869 A6NJR3 -55869 B4DKN0 -55869 B4DV22 -55869 Q9BY41 -55870 Q9NR48 -55871 Q9BRT8 -55872 Q96KB5 -55876 B4DKK7 -55876 Q8TAX9 -55879 Q9UN88 -55884 Q9NYS7 -55885 B4DG90 -55885 B4DH35 -55885 Q58A67 -55885 Q8TAP4 -55885 Q9NYC6 -55888 Q9P0L1 -55889 A6NDN3 -55890 Q9BSP0 -55890 Q9NQ84 -55891 Q9Y5L5 -55892 B2R6C9 -55892 Q9NPC7 -55893 Q7L9C8 -55893 Q9H8N7 -55894 P81534 -55897 Q9BRJ9 -55898 A8K6F7 -55898 Q9H3U1 -55900 Q9NR11 -55901 B3KTY7 -55901 Q9NS62 -55902 Q4G0E8 -55902 Q5QPH3 -55902 Q6DKJ3 -55902 Q8N238 -55902 Q96FY7 -55902 Q9NR19 -55904 Q8IZD2 -55905 Q9Y508 -55906 B4DED0 -55906 Q9NQZ6 -55907 Q8NFW8 -55908 Q6UXH0 -55909 Q9NQY0 -55914 Q96RT1 -55915 B3KTN5 -55915 Q9NS86 -55916 Q9NPJ8 -55917 Q9P2B4 -55920 Q9P258 -55922 A3F768 -55922 A3F769 -55922 G3V1N1 -55922 O15226 -55924 Q9NTI7 -55929 Q9NPF5 -55930 Q9NQX4 -55937 O95445 -55954 Q9UDW3 -55957 Q96GY3 -55958 Q58EZ4 -55958 Q9P2J3 -55959 Q8IWU5 -55964 Q9UH03 -55966 Q9UKB5 -55967 Q9UI09 -55968 Q53FE8 -55968 Q9UNZ2 -55969 Q5QPG6 -55969 Q9BUV8 -55970 Q69YP5 -55970 Q9UBI6 -55971 Q9UHR4 -55972 Q8TBP6 -55973 E9PAJ1 -55973 G5E9L4 -55973 Q9UHQ4 -55974 Q9BRV3 -55975 A8K364 -55975 B7Z5I9 -55975 G5E9G3 -55975 Q8IXQ5 -55997 P0CG37 -55998 A2RRM0 -55998 Q9H1B4 -56000 Q9H4D5 -56001 Q9GZY0 -56005 Q969H8 -56006 Q9H0W8 -56033 Q9HBU1 -56034 Q9NRA1 -56052 Q9BT22 -56061 O14562 -56062 A5PKX1 -56062 Q9C0H6 -56063 Q8WY98 -56097 Q9Y5F6 -56098 A4FU17 -56098 Q9Y5F7 -56099 Q9Y5F8 -56100 Q9Y5F9 -56101 Q9Y5G0 -56102 Q9Y5G1 -56103 Q9Y5G2 -56104 Q9Y5G3 -56105 Q9Y5H2 -56106 Q9Y5H3 -56107 Q9Y5G4 -56108 Q9Y5G6 -56109 Q9Y5G7 -56110 Q9Y5G8 -56111 Q9Y5G9 -56112 Q9Y5H0 -56113 Q9Y5H1 -56114 Q9Y5H4 -56121 Q9Y5E8 -56122 Q9Y5E9 -56123 Q9HAB4 -56123 Q9Y5F0 -56124 Q9Y5F1 -56125 Q9Y5F2 -56126 Q9UN67 -56127 Q9Y5E1 -56128 B9EGV1 -56128 Q9UN66 -56129 A1L3Y8 -56129 Q9Y5E2 -56130 Q9Y5E3 -56131 Q9Y5E5 -56132 Q9Y5E6 -56133 Q9Y5E7 -56134 Q9Y5I4 -56135 Q9H158 -56136 Q9Y5I0 -56137 Q9UN75 -56138 Q9Y5I1 -56139 Q9Y5I2 -56140 Q9Y5H6 -56141 Q9UN72 -56142 Q9UN73 -56143 Q9Y5H7 -56144 Q9UN74 -56145 Q9Y5H8 -56146 Q9Y5H9 -56147 Q9Y5I3 -56154 Q9BXT5 -56155 Q8IWB6 -56156 Q9BXU2 -56157 Q9BXU3 -56158 Q9BXU0 -56159 Q8IYF3 -56160 Q96MG7 -56163 B7Z7S1 -56163 Q9BXT8 -56164 Q9BXU1 -56165 Q9BXT4 -56169 Q9BYG8 -56171 Q8WXX0 -56172 Q9HCJ1 -56180 Q9UJG1 -56181 Q9H019 -56203 Q0VAK6 -56204 Q32MH5 -56241 Q9UGT4 -56242 O75346 -56243 Q5T5P2 -56244 Q9UIR0 -56245 Q9NYP8 -56246 Q8TCY5 -56252 P49750 -56252 Q8NF45 -56253 O95727 -56254 Q5VTR2 -56255 Q9H1E5 -56256 Q9NUC0 -56257 B3KP86 -56257 D6W5V7 -56257 Q7L2J0 -56259 Q8WYA6 -56260 Q96CB5 -56261 Q9NPB8 -56262 A8K1C7 -56262 Q8IWT6 -56265 Q96SM3 -56267 B3KQ13 -56267 B4DW13 -56267 Q6YP21 -56269 Q6NXR0 -56270 Q5MNZ6 -56271 Q9NWD9 -56287 Q53YU7 -56287 Q9NS71 -56288 F5H5T0 -56288 Q6IQ47 -56288 Q8TEW0 -56300 Q9NZH8 -56301 Q9NS82 -56302 Q9NQA5 -56311 Q92527 -56339 Q86U44 -56341 Q59GT2 -56341 Q9NR22 -56342 Q9NQ55 -56344 Q9NP86 -56413 B4E292 -56413 Q5KU28 -56413 Q9NPC1 -56474 Q9NRF8 -56475 Q9NS64 -56477 A0N0Q3 -56477 Q9NRJ3 -56478 B1AKL3 -56478 Q9NRA8 -56479 A6PVT6 -56479 B4DS33 -56479 F5GZV0 -56479 Q9NR82 -56521 Q6IAH1 -56521 Q9UKB3 -56547 Q9NRE1 -56548 Q9NS84 -56603 Q9NR63 -56605 Q86YB8 -56606 Q9NRM0 -56616 Q6W3F3 -56616 Q9NR28 -56623 Q9NRR6 -56624 Q9NR71 -56647 Q9P287 -56648 Q9GZV4 -56649 B7Z8C5 -56649 B7Z8X1 -56649 B7Z900 -56649 Q9NRS4 -56650 F2Z2D9 -56650 Q9NY35 -56652 E5KSY5 -56652 Q96RR1 -56652 Q9H6V3 -56654 Q9NQX5 -56655 Q9NR33 -56656 Q9NQN1 -56658 Q5STG3 -56658 Q9HCM9 -56659 B5TJL8 -56659 Q9HB14 -56660 Q9HB15 -56666 B3KTT7 -56666 Q495U3 -56666 Q96RD6 -56667 Q9H3R2 -56670 Q9BXA5 -56672 Q9NQ31 -56673 Q9NQ32 -56674 Q543A1 -56674 Q9NQ34 -56675 Q9NQ35 -56676 Q9NQ33 -56681 Q5SQT9 -56681 Q9NR31 -56683 P57076 -56704 Q7Z682 -56704 Q86VR1 -56704 Q9HDC5 -56729 Q9HD89 -56731 Q9NR83 -56751 Q5T6V2 -56751 Q9BZE3 -56776 Q9HBL1 -56776 Q9NZ56 -56829 Q7Z2W4 -56832 Q9P0W0 -56833 Q9P0V8 -56834 B4DTG7 -56834 B7Z7M1 -56834 Q96N19 -56834 Q9NQC5 -56848 B3KV83 -56848 B4DU87 -56848 Q9NRA0 -56849 Q9BRU2 -56850 Q4V328 -56851 Q9NPA0 -56852 Q9NS91 -56853 Q9BZC1 -56882 Q9NRR8 -56884 E9PCP6 -56884 F8VZ90 -56884 Q8N475 -56886 Q9NYU2 -56888 Q9P0J7 -56889 Q9HD45 -56890 B2RB22 -56890 B4DM65 -56890 E7EPQ3 -56890 Q8TC05 -56891 A8MPV8 -56891 B2R530 -56891 Q8TCE9 -56892 Q9NR00 -56893 Q9NRR5 -56894 Q9NRZ7 -56895 Q9NRZ5 -56896 Q9BPU6 -56897 Q96S55 -56898 Q9BUT1 -56899 B1VKB5 -56899 B4DFP6 -56899 B4DH98 -56899 B7Z9I9 -56899 F8VPM3 -56899 F8VZR9 -56899 F8WC27 -56899 Q6V0K8 -56899 Q7Z6G8 -56900 B2RUU9 -56900 Q9NRX6 -56901 Q9NRX3 -56902 Q9NRX1 -56903 A4D1Z6 -56903 Q9NRJ5 -56904 Q9NR46 -56905 Q6ZRI6 -56906 Q9P2Z0 -56907 Q08AE8 -56910 Q9NQZ5 -56911 P57077 -56912 Q9NQC8 -56913 Q9NS00 -56914 Q9NRC9 -56915 Q9NQT4 -56916 Q9H4L7 -56917 Q99687 -56918 B8ZZI8 -56918 Q53S99 -56919 B4DIS6 -56919 Q9H6R0 -56920 Q9NS98 -56922 Q96RQ3 -56923 Q9GZQ4 -56924 A8K2G2 -56924 B3KYB0 -56924 Q9NQU5 -56925 Q9BS40 -56926 Q969V3 -56927 Q9NPR9 -56928 Q8TCT7 -56929 Q96JP0 -56931 B2RDV7 -56931 Q96G46 -56934 Q9NS85 -56935 Q9NRQ5 -56937 Q5JY37 -56937 Q8NER4 -56937 Q969W9 -56938 B7Z429 -56938 F5H402 -56938 Q8WYA1 -56940 Q9NRW4 -56941 Q96FZ2 -56942 Q9NRP2 -56943 G3V117 -56943 Q9NPA8 -56944 Q9NRN5 -56945 P82650 -56946 Q7Z589 -56947 Q9GZY8 -56948 Q86TZ5 -56948 Q9NRG7 -56949 Q9HCS7 -56950 Q9NRG4 -56951 Q8NC54 -56952 Q9NRG1 -56953 Q9NPB1 -56954 Q9NQR4 -56955 F5H5C5 -56955 Q8NC19 -56955 Q9NQ76 -56956 Q9NQ69 -56957 Q6GQQ9 -56961 Q96IW2 -56963 B7Z5S8 -56963 Q96B86 -56964 Q6P2C0 -56965 Q2NL67 -56970 Q14CW9 -56971 Q5XJ15 -56971 Q7Z692 -56975 Q8IXL6 -56977 Q9P2F5 -56978 Q05CA1 -56978 Q9NQV8 -56979 Q9NQV7 -56980 G3XAE5 -56980 Q9NQV6 -56981 Q9NQV5 -56983 Q8NBL1 -56984 Q969U7 -56984 Q9P1R6 -56985 Q3LIE5 -56986 Q8N5C7 -56987 A8K6U2 -56987 Q8WY36 -56990 Q9NRR3 -56992 Q9NS87 -56993 Q549C5 -56993 Q9NS69 -56994 Q8WUD6 -56995 Q9NRJ4 -56996 Q9BXP2 -56996 Q9H7I6 -56997 Q8NI60 -56998 Q5T4V2 -56998 Q9NSA3 -56999 Q9P2N4 -57001 Q9NRP4 -57002 B2RC46 -57002 Q9NRH1 -57003 Q96A33 -57007 P25106 -57010 P57796 -57016 O60218 -57017 O75208 -57018 Q9UK58 -57019 Q6FI81 -57020 E7EWW0 -57020 Q7Z3J2 -57026 Q96GD0 -57030 Q9P2U7 -57035 Q9BUV0 -57037 Q8IV38 -57038 Q5T160 -57045 Q9GZX9 -57047 B4DXC3 -57047 Q7Z4L7 -57047 Q9NRY7 -57048 Q9NRY6 -57050 Q9NQZ2 -57053 Q9GZZ6 -57054 Q9NR90 -57055 B4DZ07 -57055 E7EU39 -57055 Q13117 -57057 Q9UMR3 -57060 P57723 -57062 Q9GZR7 -57082 Q8NG31 -57084 Q9P2U8 -57085 Q6RW13 -57088 E9PHR9 -57088 Q6ZR73 -57088 Q9NRQ2 -57089 Q9NQZ7 -57091 B4DII4 -57091 Q9NQ75 -57092 Q8WW12 -57093 P0CI25 -57094 Q8N4T0 -57095 Q9GZP4 -57096 Q96KN7 -57097 Q9NR21 -57099 Q9NQS1 -57101 Q9NQ90 -57102 Q9NQ89 -57103 Q9NQ88 -57104 Q96AD5 -57105 Q5KU17 -57105 Q9NS75 -57106 Q8WUY8 -57107 Q86YH6 -57109 Q9GZR2 -57110 D2KX19 -57110 Q6X7C0 -57110 Q86WS9 -57110 Q9HDD0 -57111 P57735 -57113 F5H5U9 -57113 Q70T26 -57113 Q8IWP7 -57113 Q9HCX4 -57115 Q96LB8 -57116 Q8IW36 -57117 Q96CB8 -57118 Q5SQQ7 -57118 Q8IU85 -57119 O95925 -57120 Q9HD26 -57121 Q5KU18 -57121 Q9H1C0 -57122 P57740 -57124 Q9HCU0 -57125 Q8IUK5 -57126 Q8N6Q3 -57127 Q9H310 -57128 C9JRX8 -57128 F5H189 -57128 Q9HD34 -57129 Q9HD33 -57130 Q9HD20 -57132 Q7LBR1 -57134 Q9NR34 -57135 Q658T2 -57135 Q86SG3 -57136 Q9HDC9 -57139 B5ME84 -57139 B7ZL22 -57139 Q3MIN7 -57140 Q9HAU8 -57142 Q7L7Q5 -57142 Q7L7Q6 -57142 Q8IUA4 -57142 Q9NQC3 -57143 B3KUD5 -57143 Q86TW2 -57143 Q9UIE6 -57144 B0AZM9 -57144 Q9P286 -57146 Q96B96 -57147 Q8IZE3 -57148 Q86X10 -57149 O43325 -57150 Q96KF7 -57151 O75951 -57152 P55000 -57153 Q8IWA5 -57154 Q9HCE7 -57156 B2RN22 -57156 Q9P1W3 -57157 E9PEE3 -57157 G5E9H7 -57157 Q6NW35 -57157 Q8N3S3 -57157 Q8TBW4 -57158 Q86VZ3 -57158 Q9BR39 -57159 Q9BYV2 -57161 Q9H716 -57161 Q9HAT8 -57162 Q53T26 -57162 Q96FA3 -57165 Q5T442 -57167 Q9UJQ4 -57168 Q6ICH7 -57169 Q9P2E3 -57171 Q86YN1 -57172 Q96NX5 -57175 Q9BR76 -57176 B4DET4 -57176 B4E0K6 -57176 B4E3P5 -57176 F5GXJ0 -57176 F5H323 -57176 Q5ST30 -57178 A0JLS3 -57178 Q9ULJ6 -57179 Q96A73 -57180 Q9P1U1 -57181 Q05C42 -57181 Q9ULF5 -57182 B4DHJ6 -57182 E9PDW0 -57182 Q8TB46 -57182 Q9ULJ7 -57184 Q5XKK7 -57185 A2A298 -57185 Q6P499 -57186 Q2PPJ7 -57187 Q8NI27 -57188 P82987 -57189 A4D1U4 -57190 Q9NZV5 -57191 Q9GZP7 -57192 Q9GZU1 -57194 O60312 -57198 P98198 -57198 Q6P3T1 -57205 Q9P241 -57209 A2RUI7 -57209 Q8NDW4 -57210 Q5BKX6 -57211 Q86SQ4 -57213 Q5W111 -57214 Q8WUJ3 -57215 Q96EK4 -57216 A8K4L6 -57216 Q9ULK5 -57217 Q2T9J9 -57217 Q9ULT0 -57221 C5NM88 -57221 Q5TH69 -57222 Q969X5 -57223 Q5MIZ7 -57224 Q5SYE7 -57226 Q9NU23 -57228 Q0VAQ4 -57231 Q9Y5W7 -57232 F8WAG4 -57232 Q2M218 -57282 B7Z1R0 -57282 F8W675 -57282 Q6U841 -57292 Q8N109 -57325 Q9H8E8 -57326 Q96AQ6 -57332 Q9HC52 -57333 Q96D15 -57335 B2RCD9 -57335 Q9HBT8 -57336 Q6PEZ3 -57336 Q9HBT7 -57337 Q9BQF6 -57338 B3KP13 -57338 Q8WXH2 -57343 Q2T9G7 -57343 Q9HCX3 -57348 Q9H313 -57369 Q9UKL4 -57379 Q546Y9 -57379 Q7Z599 -57379 Q9GZX7 -57380 Q9HD23 -57381 Q9H4E5 -57393 Q9HBJ8 -57396 Q9HAZ1 -57402 Q9HCY8 -57403 Q9UL26 -57404 Q6UW02 -57405 Q9HBM1 -57406 Q9BV23 -57407 Q9HBL8 -57408 Q9HBL6 -57409 A9UHW6 -57409 B4DUM7 -57410 Q96KG9 -57412 Q0VDK3 -57412 Q9HBK9 -57414 Q6NTF9 -57415 Q9HBI5 -57418 Q9BV38 -57419 Q9HC58 -57446 Q9UGV2 -57447 Q9UN36 -57448 Q9NR09 -57449 O94827 -57452 Q68VJ8 -57452 Q8N428 -57453 Q8TD84 -57455 Q8N1G1 -57456 Q96AT1 -57458 Q9ULS5 -57459 Q8WXI9 -57460 Q9ULR3 -57461 Q9ULR0 -57462 Q6NSJ0 -57463 Q86WK6 -57464 Q9ULQ0 -57465 Q9ULP9 -57466 C9JLZ0 -57466 O95104 -57467 Q5QTR4 -57467 Q9HCP6 -57468 Q9H2X9 -57469 Q9ULN7 -57470 Q8N1G4 -57471 Q8TAM6 -57472 Q9ULM6 -57473 Q96KM6 -57474 Q9ULM2 -57475 Q9ULM0 -57476 B3KXJ5 -57476 Q3KR37 -57477 Q9ULL8 -57478 Q70CQ4 -57479 Q9ULL5 -57480 Q5JYA6 -57480 Q9ULL1 -57481 Q9ULL0 -57482 Q6ZU35 -57484 Q9ULK6 -57486 Q9BYT8 -57488 A0FGR8 -57489 B4E037 -57489 Q9ULJ1 -57491 A9YTQ3 -57492 Q8NFD5 -57493 Q9ULI3 -57494 Q9ULI2 -57495 Q9ULI1 -57496 Q9ULH7 -57497 Q9ULH4 -57498 Q7Z322 -57498 Q9ULH0 -57501 Q9ULG3 -57502 Q8N0W4 -57504 Q9BTC8 -57505 Q5JTZ9 -57506 F5H6C8 -57506 Q7Z434 -57507 B3KPE6 -57507 Q9ULD9 -57508 Q9H0H0 -57509 B4DH03 -57509 Q9ULD2 -57510 Q9HAV4 -57511 Q9Y2V7 -57512 Q5T848 -57513 Q8WXE0 -57514 Q2M1Z3 -57515 Q9NRX5 -57520 Q9P2P5 -57521 F5H7J5 -57521 Q6DKI0 -57521 Q8N122 -57522 Q7Z6B7 -57523 Q9P2P1 -57524 Q8WXD9 -57526 B3KU71 -57526 E9PAM6 -57526 Q8TAB3 -57528 A8K8W2 -57528 Q68DU8 -57529 Q8NET4 -57530 Q9P2M7 -57531 B3KY89 -57531 Q8IYU2 -57532 A1L3A7 -57532 Q7Z417 -57533 Q9P2M4 -57534 Q86YT6 -57535 B4DWM4 -57535 Q6UXG2 -57536 Q86T90 -57537 Q96PQ0 -57538 Q96L96 -57539 Q9P2L0 -57540 Q9P2K9 -57541 Q8TD17 -57542 B2RNT7 -57542 Q9P2K6 -57544 B7ZME4 -57544 Q9P2K2 -57545 D6RB72 -57545 E7EP21 -57545 Q9P2K1 -57546 Q9P2J9 -57547 Q9P2J8 -57549 Q9P2J2 -57551 B7ZLV6 -57551 Q7L7X3 -57552 F5H7K4 -57552 Q6PIU2 -57553 B2RXJ5 -57553 Q7RTP6 -57554 Q96NW7 -57555 Q8NFZ4 -57556 Q9H2E6 -57558 B3KPE1 -57558 Q9P2H5 -57559 Q96FJ0 -57560 C9J8I0 -57560 Q9P2H3 -57561 Q96B67 -57562 Q9P2H0 -57563 Q49A95 -57563 Q7Z330 -57563 Q9P2G9 -57565 Q9P2G3 -57567 Q9P2F9 -57568 Q9P2F8 -57569 Q9P2F6 -57570 Q32P41 -57571 A5YM72 -57571 B4DFC6 -57571 F5H427 -57572 Q96HP0 -57573 Q9BX82 -57574 Q9P2E8 -57575 Q96SF0 -57575 Q9NSR3 -57575 Q9P2E7 -57576 Q9P2E2 -57577 Q8NCU4 -57578 Q9P2D8 -57579 Q9P2D6 -57580 Q8TCU6 -57582 B3KXF7 -57582 B7ZVY4 -57582 B9EGP2 -57583 Q9P2C4 -57584 Q5T5U3 -57585 A7MD53 -57585 B2RNX8 -57585 Q96RY5 -57586 Q7L8C5 -57587 Q9P2B7 -57589 B2RN24 -57589 B7ZM67 -57589 G5E932 -57589 Q4ADV7 -57590 Q53S17 -57590 Q8IWB7 -57590 Q9H8N9 -57591 Q969V6 -57592 Q8N1G0 -57593 E9PEI2 -57593 Q7Z5T1 -57593 Q9BQW3 -57594 Q8IX15 -57595 Q76G19 -57596 Q9BUH8 -57597 Q9P281 -57599 Q8TAF3 -57600 Q9P278 -57602 Q9P275 -57604 Q9P272 -57605 Q9BZ72 -57605 Q9UF51 -57606 Q9P270 -57608 Q9P266 -57609 Q7Z3H2 -57609 Q96IB4 -57609 Q9P265 -57610 Q6VN20 -57611 Q6UXK2 -57613 A2RU67 -57614 Q96ES0 -57614 Q9P260 -57615 Q9P255 -57616 Q63HK5 -57617 Q9P253 -57619 B3KY47 -57619 Q8TF72 -57620 A6H8L7 -57620 B3KUB5 -57620 Q9P246 -57621 Q8N680 -57622 Q9P244 -57623 B7Z6H1 -57623 B7ZL15 -57623 E9PBN4 -57623 E9PER3 -57623 Q4KMQ4 -57623 Q6PJQ2 -57623 Q9P243 -57624 Q9P242 -57626 Q8TBJ7 -57626 Q9NR64 -57628 B2RCJ8 -57628 B4DKB5 -57628 Q0GLB7 -57628 Q0GLB8 -57628 Q0GLB9 -57628 Q8N608 -57630 Q7Z6J0 -57631 F5H2T1 -57631 Q08AD5 -57631 Q5VUJ6 -57633 Q6UXK5 -57634 Q96L91 -57636 Q9P227 -57639 Q8IYE0 -57639 Q96MS1 -57642 Q9P218 -57643 Q9P217 -57644 A7E2Y1 -57645 Q5TIJ1 -57645 Q9P215 -57646 Q96RU2 -57647 Q8IY37 -57648 B4DQU8 -57648 Q9P206 -57649 Q96QT6 -57650 Q8TCG1 -57654 Q2YD98 -57655 Q96CP6 -57657 Q86WJ5 -57657 Q9P1Z3 -57658 Q9P1Z2 -57659 B3KVD4 -57659 Q9P1Z0 -57661 Q9P1Y6 -57662 Q9P1Y5 -57663 Q9HBJ7 -57664 Q9H4M7 -57665 Q53RX3 -57665 Q9HBH5 -57666 Q9HCM7 -57669 Q9HCM4 -57670 Q9HCM3 -57673 Q5T5X7 -57674 C9JCP4 -57674 Q9HCF4 -57677 Q9HCL3 -57678 Q86T70 -57678 Q8N1G6 -57678 Q9HCL2 -57679 A8K4R4 -57679 Q96Q42 -57680 Q9HCK8 -57683 Q9HCK1 -57684 Q9HCK0 -57685 Q5VU97 -57687 Q9HCJ6 -57688 Q9HCJ5 -57689 Q9HCJ2 -57690 G3XAB8 -57690 Q9HCJ0 -57691 B4DIC2 -57691 Q9HCI6 -57692 Q5JXC7 -57692 Q9HCI5 -57693 Q96PQ6 -57695 Q86T82 -57696 Q8NHQ9 -57696 Q8TEC9 -57697 Q8IYD8 -57698 A0MZ66 -57699 Q9HCH3 -57700 Q5W0V3 -57701 Q9HCH0 -57703 Q9HCG8 -57704 Q9HCG7 -57705 Q6ZS81 -57706 Q8TEH3 -57706 Q9HCG4 -57707 A8K5C2 -57707 Q6P9B6 -57708 Q08AE0 -57708 Q32NC4 -57708 Q5TAD2 -57708 Q5TAD4 -57708 Q5TAD5 -57708 Q8N108 -57709 Q8TBB6 -57710 Q5VZ46 -57711 Q6P280 -57713 Q5VUG0 -57715 A1A5C6 -57715 Q9NTN9 -57715 Q9NWU8 -57716 Q9BXM0 -57717 Q9NRJ7 -57718 Q6NUP7 -57719 Q9HCE9 -57720 G5E994 -57720 Q5VW38 -57721 Q9HCE5 -57722 Q8TDY8 -57724 Q9BTI0 -57724 Q9HCE0 -57727 Q9HCD5 -57728 Q8NEZ3 -57730 Q8N2N9 -57731 E9PGQ5 -57731 Q9H253 -57731 Q9H254 -57732 E9PB54 -57732 E9PB64 -57732 E9PG77 -57732 Q7Z6J3 -57732 Q9HCC9 -57733 A8K9N1 -57733 Q9H227 -57758 Q9NQ36 -57761 Q96RU7 -57763 Q9H9E1 -57786 Q9NYW8 -57787 Q96L34 -57794 Q8IWZ8 -57795 Q9C0B6 -57798 Q8WUU5 -57799 Q5PXE8 -57799 Q6PIU5 -57799 Q96S21 -57801 E9PB28 -57801 Q9HCC6 -57804 Q6NSD7 -57804 Q9BVB1 -57804 Q9HCU8 -57805 Q8N163 -57817 P81172 -57818 E9PAX2 -57818 Q9NQR9 -57819 Q6FGG1 -57819 Q9Y333 -57820 Q9NPC3 -57821 Q5TID7 -57822 A2A297 -57822 B2RCL1 -57822 G3XAF0 -57822 Q8TE85 -57823 Q9NQ25 -57824 O97980 -57826 Q9Y3L5 -57827 O95873 -57827 Q9UMP7 -57828 Q32MQ2 -57828 Q6ZRH7 -57829 Q12836 -57830 O75690 -57834 Q9HBI6 -57835 Q9BY07 -57862 B4DDV5 -57862 B4DR78 -57862 Q53FM1 -57862 Q86VK4 -57863 Q8N126 -57864 B1ALK1 -57864 Q9BY10 -58155 Q9UKA9 -58157 A0M8W9 -58157 Q9NPG2 -58158 Q8IW56 -58158 Q9HD90 -58160 Q86UQ8 -58189 Q9HC57 -58190 C9IYG0 -58190 Q9GZU7 -58191 Q9H2A7 -58472 Q9Y6N5 -58473 Q9UF11 -58475 Q9GZW8 -58476 Q8IXH6 -58477 Q549N5 -58477 Q9Y5M8 -58478 Q9UHY7 -58480 Q7L0Q8 -58484 B3KTF0 -58484 Q9NPP4 -58485 Q9Y5R8 -58486 Q49AG3 -58487 Q9NS37 -58488 Q549N3 -58488 Q9UKL6 -58489 Q6PCB6 -58490 Q9NQG5 -58491 Q9NQZ8 -58492 Q15935 -58493 Q9NRY2 -58494 P57087 -58495 Q9BRP0 -58496 Q8NDX9 -58497 Q86TP1 -58498 Q01449 -58499 Q63HJ5 -58499 Q96JM2 -58500 B3KNS9 -58500 D3DWP1 -58500 P15622 -58500 Q59HE9 -58503 Q99935 -58504 Q7Z5H3 -58505 Q9NRP0 -58506 Q9H7N4 -58508 Q8NEZ4 -58509 Q8WUQ7 -58510 Q9UF12 -58511 Q66K39 -58511 Q8WZ79 -58512 O95886 -58513 Q9UBC2 -58515 Q9Y6D0 -58516 Q9NP50 -58517 P49756 -58524 Q9NQL9 -58525 O95785 -58526 Q9NPA3 -58527 Q9P1F3 -58528 Q9NQL2 -58529 Q9NP98 -58530 O95868 -58531 Q9NNZ6 -58533 C0H5W9 -58533 Q9UNH7 -58538 Q96JB8 -58985 Q8N6P7 -58986 Q9HCN3 -59067 Q9HBE4 -59082 P57730 -59084 Q9UJA9 -59269 Q5T1R4 -59271 B3KWG0 -59271 P58658 -59272 C7ECU1 -59272 Q9BYF1 -59274 Q9H1K6 -59277 Q9HB63 -59283 Q8WXS5 -59284 P62955 -59285 A6NFR2 -59285 A6NP74 -59285 Q9BXT2 -59286 Q9BZL1 -59307 Q6IA17 -59335 Q9H4Q4 -59336 Q9H4Q3 -59338 B3KQ55 -59338 B3KQL5 -59338 Q9HB21 -59339 A8K727 -59339 Q9HB19 -59340 B2KJ48 -59340 B2KJ49 -59340 Q9H3N8 -59341 Q9HBA0 -59342 Q9H2J9 -59342 Q9HB40 -59343 Q9HC62 -59344 B7Z3W0 -59344 Q9BYJ1 -59345 Q9HAV0 -59348 Q9GZX5 -59349 Q53G59 -59350 Q9HBX9 -59351 Q9GZY1 -59352 Q9HBX8 -59353 Q53FP2 -60312 B4DMU2 -60312 E9PDT7 -60312 Q6ZRV0 -60312 Q8N556 -60313 Q9HC44 -60314 Q86UA3 -60343 A6QRH6 -60343 B4DFI8 -60343 P98173 -60370 Q5T686 -60385 Q9UJT2 -60386 Q5JPC1 -60386 Q9HC21 -60401 B2RBZ9 -60401 Q9HAV5 -60412 E9PED2 -60412 Q6NX51 -60412 Q96A65 -60436 Q9GZN2 -60437 Q8IXH8 -60468 Q9BYV9 -60481 B4DZJ2 -60481 F6SH78 -60481 Q5TGH5 -60481 Q9NYP7 -60482 Q9GZV3 -60484 Q5T3J0 -60484 Q9GZV7 -60485 Q9H4B6 -60487 Q7Z4G4 -60488 P82673 -60489 Q9HC16 -60490 Q96CD2 -60491 Q6X735 -60491 Q9GZT8 -60492 Q9GZT6 -60493 Q7L8L6 -60494 Q6ZN84 -60495 Q2M1H9 -60495 Q8WWQ2 -60496 Q9NRN7 -60506 Q9GZU5 -60509 Q8NDL9 -60526 Q9H6V9 -60528 B4DPL9 -60528 Q9BQ52 -60529 Q9H161 -60558 Q8N442 -60559 P61009 -60560 Q5VZE5 -60561 Q6NUQ1 -60592 E9PB65 -60592 Q9UIL1 -60598 Q9H427 -60625 F5GXM6 -60625 Q9H5Z1 -60626 Q9NPQ8 -60672 Q5JXC2 -60673 Q9BSB4 -60675 Q6ISR0 -60675 Q9HC23 -60676 A9Z1Y8 -60676 Q9BXP8 -60677 B4DG28 -60677 B4DJB6 -60677 Q96J87 -60678 P57772 -60678 Q96HZ6 -60680 Q8N6W0 -60681 Q658U4 -60681 Q8NAG5 -60681 Q96AY3 -60682 Q8IYB5 -60684 Q7Z392 -60685 Q9H8U3 -60686 Q9H972 -63027 A1A5C7 -63035 Q5H9F3 -63036 B2R5I4 -63036 P08217 -63826 Q9GZT4 -63827 Q96GW7 -63874 Q8TB40 -63875 Q9NRX2 -63876 Q96KN3 -63877 Q9H8W3 -63891 Q5XPI4 -63892 Q6YHU6 -63893 Q9C0C9 -63894 B4DMB7 -63894 B4DPI6 -63894 Q6IA61 -63894 Q9H9C1 -63895 Q6ZS91 -63895 Q9H5I5 -63897 Q6AI08 -63898 B4DDR1 -63898 Q9H788 -63899 Q9H649 -63901 Q96PZ2 -63904 Q9H596 -63905 Q9NQG1 -63906 Q96I76 -63908 Q9H115 -63910 Q9BYT1 -63915 Q0VDJ6 -63915 Q8TDH9 -63916 Q7Z5G9 -63916 Q96JJ3 -63917 B3KWF4 -63917 Q8NCW6 -63920 Q8IZ13 -63922 Q8WVB6 -63923 B3KXB6 -63923 Q9UQP3 -63924 C9JMN7 -63924 Q96AQ7 -63925 Q8IW09 -63925 Q9H4Z2 -63926 Q9NU02 -63928 A8K2I8 -63928 O43745 -63929 Q9NQH7 -63931 O60783 -63932 A8MPX7 -63932 B4DQN2 -63932 F5GWL7 -63932 Q9H5V9 -63933 Q96AQ8 -63934 Q5HYK9 -63935 Q9H4Z3 -63939 B4E2D0 -63939 Q9NTX9 -63940 A2BFJ3 -63940 Q9Y4H4 -63941 Q96P71 -63943 Q9UIM3 -63946 Q8IXT2 -63947 Q5HYR2 -63948 Q96MA1 -63950 Q96SC8 -63951 Q5VZB9 -63967 Q9HAW4 -63970 Q9HCN2 -63971 F2Z382 -63971 Q9H1H9 -63973 Q9H2A3 -63974 Q548T9 -63974 Q96NK8 -63976 Q9HAZ2 -63977 E9PF37 -63977 P57071 -63977 Q4W8S5 -63978 Q9GZV8 -63979 Q6PIW4 -63982 Q9BYT9 -64005 B0I1T2 -64061 Q9H2G4 -64062 Q5T8P6 -64063 Q9GZN4 -64064 Q9BYC2 -64065 Q96FX8 -64066 Q9H306 -64067 Q8IXF0 -64072 A5D6V9 -64072 Q5QGS1 -64072 Q5QGS2 -64072 Q5QGS5 -64072 Q5QGS6 -64072 Q6P152 -64072 Q8N5B3 -64072 Q9H251 -64073 Q9GZP8 -64077 Q9H008 -64078 B2RA51 -64078 Q9HAS3 -64080 Q9H477 -64081 C9JIM0 -64081 P30039 -64083 Q9H4A6 -64084 Q9H4D0 -64087 Q9HCC0 -64089 P57768 -64089 Q658L0 -64090 Q9H3Q3 -64091 Q9HBU9 -64092 Q9NSI8 -64093 Q9H4F8 -64094 Q9H3U7 -64096 Q9GZZ7 -64097 Q8N8X1 -64097 Q8NEH8 -64097 Q9HCS5 -64098 Q9HBI0 -64100 Q96BH3 -64101 Q9HBW1 -64102 Q9H2S6 -64105 Q9BS16 -64106 Q9GZQ6 -64108 Q96DX8 -64109 D0E2W4 -64109 Q5G7M1 -64109 Q9HC73 -64110 Q9HAY2 -64111 Q9HCQ7 -64112 Q96BY2 -64114 B3KSM0 -64114 Q969X1 -64115 Q9H7M9 -64116 B4E2H3 -64116 Q9C0K1 -64118 Q6P1R4 -64121 Q9HB90 -64122 Q9H479 -64123 Q9HBW9 -64127 Q9HC29 -64129 B4DPK6 -64129 Q9GZM7 -64130 Q9HAP6 -64131 Q86Y38 -64132 Q9H1B5 -64135 Q9BYX4 -64137 Q9H172 -64145 Q9H1K0 -64146 Q9HBH1 -64147 A8K932 -64147 Q9HAQ2 -64149 Q9HAS0 -64151 Q9BPX3 -64167 B2R769 -64167 Q6P179 -64168 Q8N987 -64170 Q5SXM5 -64170 Q9H257 -64172 Q9H4B0 -64174 Q9H4A9 -64175 Q32P28 -64180 Q9H4B8 -64184 P56851 -64207 Q9H1B7 -64208 Q9HBV1 -64210 Q96T76 -64211 Q9H2C1 -64215 Q96KC8 -64216 Q9H5Q4 -64218 B3KR76 -64218 Q5TCJ6 -64218 Q9H3S1 -64219 A2A322 -64219 Q8NG27 -64220 B3KPB8 -64220 B7Z5M9 -64220 B7Z862 -64220 F5GYI8 -64220 Q9BX79 -64221 Q96MS0 -64222 Q9H497 -64223 Q9BVC4 -64224 Q9BSE4 -64225 Q8NHH9 -64231 B4DUN6 -64231 F8W9K1 -64231 Q9H2W1 -64232 Q9H3V2 -64236 Q96JY6 -64240 Q9H222 -64241 Q9H221 -64282 B4DV38 -64282 Q8NDF8 -64283 B2RXG7 -64283 B4E3K4 -64283 B5MDA3 -64283 B7ZW32 -64283 E9PC75 -64283 Q8N1W1 -64284 Q6PJZ0 -64284 Q9H0T7 -64285 Q96CC6 -64288 Q6P178 -64288 Q96LW9 -64288 Q96QL1 -64318 Q8WTT2 -64319 Q9HAH7 -64320 Q96BH1 -64321 Q9H6I2 -64324 Q96L73 -64324 Q96MN8 -64326 Q05CT6 -64326 Q504W6 -64326 Q8NHY2 -64327 Q8WVP7 -64328 Q9C0E2 -64332 Q9BYH8 -64333 B4DVI3 -64333 E9PDX9 -64333 Q8NAF3 -64333 Q9BRR9 -64342 Q53T59 -64342 Q9H7U7 -64343 C9JB40 -64343 Q9H6S1 -64344 B2RBI6 -64344 B4DNA2 -64344 Q9Y2N7 -64359 B4DXQ0 -64359 Q6DKJ4 -64359 Q7L4C6 -64374 Q9H173 -64375 Q9H2S9 -64376 Q9H5V7 -64377 Q9H2A9 -64386 Q9NPA2 -64388 Q9H772 -64393 Q9HA38 -64395 Q53SE7 -64395 Q96IK5 -64397 Q9H2Y7 -64398 Q658X5 -64398 Q8N3R9 -64399 Q96QV1 -64400 Q9H8T0 -64403 Q86UP0 -64405 Q9UJ99 -64407 Q9NS28 -64409 Q2L4S5 -64409 Q6IS24 -64410 Q9H0H3 -64411 Q05CH1 -64411 Q8WWN8 -64411 Q9H7C1 -64412 Q9H116 -64417 Q0VDI3 -64418 Q9H0V1 -64419 Q8NCE2 -64419 Q8WYY9 -64420 Q6UWL2 -64421 B3KMX5 -64421 Q96SD1 -64422 Q9NT62 -64423 Q27J81 -64425 Q9GZS1 -64426 Q9H7L9 -64427 Q49AM3 -64428 Q9H6Q4 -64429 Q9H6R6 -64430 B6ZDM2 -64430 Q63HM2 -64431 Q9GZN1 -64432 P82663 -64434 Q5C9Z4 -64446 Q9GZS0 -64478 F5GZ18 -64478 Q59FF8 -64478 Q96PZ7 -64499 P20231 -64506 Q9BZB8 -64518 Q9BXF9 -64577 B7Z521 -64577 Q9H2A2 -64579 Q9H3R1 -64581 Q68D78 -64581 Q96D32 -64581 Q9BXN2 -64582 Q8IZ08 -64591 A6NKD2 -64598 C9JE89 -64598 O75425 -64599 O75420 -64600 Q9BZM2 -64601 Q9H269 -64641 B2RNT0 -64641 B7Z934 -64641 Q9HAK2 -64645 Q96MC6 -64648 Q9BXN6 -64651 Q96S65 -64663 Q9NY87 -64682 Q9H1A4 -64689 Q9BQQ3 -64693 Q8NEG8 -64693 Q96RT6 -64699 P57727 -64708 Q9H9Q2 -64710 Q9H1E3 -64711 C9JH64 -64714 Q13087 -64718 Q9H9P5 -64743 Q06DX0 -64743 Q9H1Z4 -64744 B7Z5B5 -64744 Q8WU79 -64745 Q9H7H0 -64746 Q9H3P7 -64747 C9JS94 -64747 Q9H3U5 -64748 Q96GM1 -64750 Q96DE7 -64750 Q9HAU4 -64753 Q96JN2 -64754 Q9H7B4 -64755 Q96GQ5 -64756 B7Z7I6 -64756 Q5TC12 -64757 Q5VT66 -64759 Q68CZ2 -64760 Q86V87 -64761 A4D1T0 -64761 Q9H0J9 -64762 Q9H706 -64763 Q6ZN55 -64763 Q71MF7 -64764 Q70SY1 -64766 A8MTZ6 -64766 Q96BU1 -64768 Q9H8X2 -64769 Q9HAF1 -64770 Q49A88 -64771 Q9H6K1 -64772 Q8NFI3 -64773 Q9H1Q7 -64776 Q9H5F2 -64777 Q96G75 -64778 Q53EP0 -64779 B4DN17 -64779 B7ZLC2 -64779 E9PAM1 -64779 Q2M296 -64780 Q8TDZ2 -64781 Q8TCT0 -64782 Q8WTP8 -64783 Q86VW9 -64783 Q96T37 -64784 Q6UUV7 -64784 Q8TEF4 -64785 E9PB21 -64785 Q9BRX5 -64786 B4DMT9 -64786 E9PH93 -64786 Q8TC07 -64787 Q9H6S3 -64788 B3KS80 -64788 Q96S06 -64789 Q9H790 -64792 Q49AG1 -64792 Q9H7X7 -64793 Q6P2H3 -64794 Q9H8H2 -64795 Q9H871 -64798 Q8TB45 -64799 D6RJ88 -64799 Q86VS3 -64800 Q5THR3 -64801 Q9H2C2 -64802 B1AN63 -64802 Q9HAN9 -64805 Q9H244 -64806 Q9H293 -64816 Q75MK2 -64816 Q75MK3 -64816 Q9HB55 -64834 Q9BW60 -64837 A8MXL7 -64837 Q9H0B6 -64838 Q9H6D8 -64839 Q9UF56 -64840 Q9H237 -64841 Q96EK6 -64843 Q96A47 -64844 Q9H992 -64847 Q8TB22 -64848 Q9H6S0 -64849 B4DF27 -64849 B4DIR8 -64849 F6WI18 -64849 Q8WWT9 -64850 B7Z1Y0 -64850 E9PBY0 -64850 Q8TBG4 -64852 F5H0R1 -64852 Q9H6E5 -64853 Q96BJ3 -64854 P62068 -64855 Q96TA1 -64856 E9PB53 -64856 Q6PCB0 -64857 Q9H7P9 -64858 Q9H816 -64859 Q96AH0 -64860 Q6P1M9 -64863 Q8N3J2 -64864 Q2KHR2 -64866 Q9H5V8 -64881 A8K1K9 -64881 B3KSZ7 -64881 Q8N6Y1 -64895 Q59G05 -64895 Q9BWT3 -64897 Q96C57 -64900 Q9BQK8 -64901 Q546R4 -64901 Q9H2T7 -64902 Q9BYV1 -64919 Q9C0K0 -64921 Q8WZ77 -64921 Q96PB1 -64922 Q9H756 -64924 B7ZM89 -64924 Q8TAD4 -64924 Q9BVY8 -64925 Q8IV32 -64926 Q86YV0 -64926 Q9H7J2 -64927 Q5W5X9 -64928 Q6P1L8 -64943 E9PAL9 -64943 Q9H857 -64946 Q9H3R5 -64949 Q9BYN8 -64951 Q96EL2 -64960 P82914 -64963 P82912 -64965 P82933 -64968 P82932 -64969 P82675 -64975 Q8IXM3 -64976 Q9NQ50 -64978 Q96DV4 -64979 Q9P0J6 -64981 Q9BQ48 -64983 A4D1V4 -64983 Q9BYC8 -65003 A6NLT0 -65003 Q9Y3B7 -65005 Q9BYD2 -65008 Q9BYD6 -65009 B4DK66 -65009 B4DSW5 -65009 B7Z9X4 -65009 Q9ULP0 -65010 Q548A7 -65010 Q9BXS9 -65010 Q9NQU1 -65010 Q9Y3Y1 -65012 Q8NG04 -65018 Q9BXM7 -65055 B7Z4D7 -65055 B7Z4F2 -65055 B7Z5R9 -65055 Q9H902 -65056 Q86WP2 -65057 Q96AP0 -65059 Q70E73 -65059 Q8N8R9 -65061 Q96Q40 -65062 E9PAR8 -65062 Q96Q45 -65065 Q6ZS30 -65078 Q9BZR6 -65080 Q9H9J2 -65082 Q96AX1 -65083 Q9H6R4 -65084 Q86UB9 -65094 Q9H9V9 -65095 Q8N9T8 -65108 P49006 -65109 Q9BZI7 -65110 Q9H1J1 -65117 Q7L4I2 -65121 B3KWQ4 -65121 O95521 -65121 Q8IW67 -65122 O60811 -65123 Q68E01 -65124 Q53LP3 -65125 A5D8Z4 -65125 F5GWT4 -65125 Q9H4A3 -65217 A2A3E3 -65217 A2A3E6 -65217 A2A3E7 -65217 A2A3E8 -65217 E7EMG0 -65217 Q96QU1 -65220 B7Z434 -65220 F5GXR5 -65220 O95544 -65220 Q5QPS4 -65220 Q6PJ22 -65220 Q9H2P2 -65243 D3DPV3 -65243 Q9UJL9 -65244 Q86XZ4 -65249 Q9H7M6 -65249 Q9HA55 -65250 B7ZLV7 -65250 E9PH94 -65251 Q9BS31 -65258 Q53F39 -65260 Q96BR5 -65263 Q53H96 -65264 Q9H832 -65265 Q9H7E9 -65266 B0LPI0 -65266 Q96J92 -65267 Q9BYP7 -65268 F8W9F9 -65268 Q9Y3S1 -65975 Q9BYT3 -65977 Q9HB20 -65979 Q8IZ21 -65980 B4DMQ2 -65980 B4DXI2 -65980 Q9H8M2 -65981 E4NKG2 -65981 Q149P6 -65981 Q6IMN6 -65982 B4DG23 -65982 E9PBI0 -65982 Q8TBC5 -65983 B7Z1F2 -65983 B7Z3R1 -65983 B7Z6D8 -65983 B7Z8T2 -65983 Q96HH9 -65985 Q86V21 -65986 Q96DT7 -65986 Q9H9H3 -65987 Q9BQ13 -65988 Q9BV97 -65989 Q6UY11 -65990 Q9BQD7 -65991 Q9BWH2 -65992 Q96HY6 -65993 P82930 -65997 Q9BPW5 -65998 C9JLR9 -65999 Q9BV99 -66000 Q6UXF1 -66002 Q9HCS2 -66004 G3XAC2 -66004 Q86SR0 -66004 Q9BZG9 -66005 Q9BWS9 -66008 O60296 -66035 E9PH55 -66035 Q504W2 -66035 Q6PJ99 -66035 Q8WXF9 -66035 Q9BYW1 -66036 Q96QG7 -66037 Q8N9W6 -78986 Q9BV47 -78987 Q96HD1 -78988 Q9BQC6 -78989 Q9BWP8 -78990 Q96DC9 -78991 Q8NBM8 -78992 Q9BWQ6 -78994 Q9BWN1 -78995 A8K7A9 -78995 Q8N3J3 -78996 Q9BWK5 -78997 Q96MZ0 -78999 Q6PJG9 -79000 Q9H7T9 -79001 A6NIQ6 -79001 Q9BQB6 -79002 Q9BQ61 -79003 Q9H081 -79004 Q9H467 -79005 Q9BWG6 -79006 Q9UJH8 -79007 Q9H9R9 -79008 Q9BQ83 -79009 Q9BQ39 -79012 Q8NCB2 -79016 Q9BW61 -79017 B8ZZN4 -79017 B8ZZR8 -79017 O75223 -79018 B3KXL6 -79018 Q8IVV7 -79019 B1AHQ9 -79019 Q9NSP4 -79020 Q9BPX7 -79022 Q9BVX2 -79023 Q8NFH4 -79025 Q9BVV2 -79026 A1A586 -79026 Q09666 -79026 Q96EC4 -79026 Q9BVU3 -79027 A6NGD3 -79027 Q68DU4 -79027 Q8N720 -79029 Q9BVQ7 -79031 Q9H2J4 -79033 O43414 -79034 Q96N11 -79035 Q9BQ15 -79036 Q9BQD3 -79037 Q6DKI7 -79038 Q9BQ24 -79039 Q8TDD1 -79041 Q9H6F2 -79042 Q9BSV6 -79047 Q96SI1 -79048 Q96T21 -79050 Q9BVI4 -79053 A6NDW6 -79053 Q9BVK2 -79054 Q3YFM7 -79054 Q7Z2W7 -79056 Q9BZD6 -79057 Q9BZD7 -79058 Q9BZE9 -79064 A0PJW6 -79065 Q7Z3C6 -79066 Q86W50 -79068 B3KU60 -79068 Q99770 -79068 Q9C0B1 -79070 Q6UW63 -79071 Q9H5J4 -79072 Q14CZ7 -79073 Q9BVC6 -79074 Q9BVC5 -79075 Q9BVC3 -79077 Q9H773 -79078 Q9BV19 -79080 Q9H6F5 -79081 Q9BQE6 -79083 Q9BV36 -79084 Q9BQA1 -79085 Q9BV35 -79086 Q9BQ49 -79087 Q9BV10 -79088 Q9BUY5 -79089 Q71RG4 -79090 O75865 -79091 Q9BUU2 -79092 Q9BXL6 -79094 Q9BUX1 -79095 Q9BUW7 -79096 E9PAX7 -79096 Q9H6J7 -79097 Q8IWZ4 -79098 Q9BW04 -79101 Q9H5J8 -79102 Q9BY78 -79109 Q9BPZ7 -79132 Q96C10 -79133 Q5TEU4 -79134 Q9H7F4 -79135 Q9BUR5 -79137 Q8NC44 -79139 Q9BUN8 -79140 Q9BUN5 -79142 Q9BUL5 -79143 Q96N66 -79144 Q9H3Y8 -79145 E9PBH3 -79145 Q9BUK0 -79147 Q9H9S5 -79148 Q9H239 -79149 Q9BUG6 -79152 Q7L5A8 -79153 Q7L5L3 -79154 Q6UWP2 -79155 Q8NFZ5 -79156 Q96S99 -79157 O43934 -79158 Q3T906 -79159 Q9UGY1 -79161 Q9BU79 -79165 A9C4B2 -79165 Q96BZ8 -79168 Q6PI73 -79169 Q9BU76 -79170 Q9BU68 -79171 Q9BTD8 -79172 Q9BU64 -79173 Q0VDD7 -79174 Q6UXH1 -79175 Q6P1L6 -79176 Q9H469 -79177 Q9H609 -79178 Q9BU02 -79180 Q96C19 -79183 Q9BTX7 -79184 P46736 -79187 Q9BTV5 -79188 Q9BTV4 -79190 P78412 -79191 P78415 -79192 P78414 -79228 Q86W42 -79230 Q8N988 -79258 B3KS82 -79258 Q495T6 -79269 Q5QP82 -79290 Q8NGR1 -79295 Q8NGV6 -79310 Q8NGV7 -79317 Q8NGD3 -79324 Q8NGK1 -79334 Q8NH07 -79339 A4FU14 -79339 Q9Y5P0 -79345 Q17R53 -79345 Q9Y5P1 -79363 Q9BU20 -79364 Q2QGD7 -79365 Q8TAT1 -79365 Q9C0J9 -79366 P82970 -79368 B4E0W2 -79368 Q96LA5 -79369 Q9C0J1 -79370 Q9BZR8 -79400 A3QRJ0 -79400 Q96PH1 -79411 Q6UWU2 -79412 Q8NCW0 -79413 Q9BTP6 -79414 Q9BTN0 -79415 E1B6X3 -79415 Q9BQA9 -79441 Q68CZ6 -79442 Q9BYS8 -79443 Q9BQS8 -79444 Q96CA5 -79446 Q64LD2 -79447 Q9BTK6 -79465 Q5VY82 -79465 Q9BZM4 -79473 Q8NH53 -79501 Q8NH21 -79541 O95047 -79544 Q8NGD4 -79567 B4DEQ9 -79567 B4DIM2 -79567 E9PBS3 -79567 Q6ZS17 -79568 Q8WWC4 -79570 B7Z5F5 -79570 Q4KMZ8 -79571 A4D0Z4 -79571 Q96CN9 -79572 Q9H7F0 -79573 Q8NBP0 -79574 A8K2J6 -79574 Q8TE67 -79575 B2C6G3 -79575 Q96I13 -79576 Q8N5F7 -79577 Q6P1J9 -79581 G1UCY1 -79581 Q9HAB3 -79582 Q4G1A2 -79582 Q8N0X2 -79583 B3KU85 -79583 G5E9E3 -79583 Q6P450 -79583 Q9H6L2 -79585 B4DFD6 -79585 P57737 -79586 B4DXU0 -79586 Q8IZ52 -79587 B7Z7E6 -79587 Q9HA77 -79589 Q8TEB7 -79590 Q96A35 -79591 B3KUU6 -79591 Q5T2E6 -79594 Q969V5 -79595 B7ZLM3 -79595 Q9H0E3 -79596 Q5W0B1 -79598 Q8IW35 -79600 B4DIB9 -79600 Q2MV58 -79602 Q86V24 -79603 Q53HF9 -79603 Q9HA82 -79605 Q8N414 -79607 Q9BPY3 -79608 B0B1U0 -79608 B7Z3Z0 -79608 Q7Z5B4 -79609 B7ZLA4 -79609 Q9H867 -79611 Q9H6R3 -79612 A4FU51 -79612 Q6N069 -79613 B3KTB6 -79613 Q9C0B7 -79616 Q8IV13 -79618 Q6NT76 -79621 G3XAJ1 -79621 Q5TBB1 -79621 Q8N451 -79622 Q9BV90 -79623 Q96FL9 -79624 Q9H993 -79625 Q8TB73 -79626 Q6P589 -79627 Q5TC84 -79628 Q8TF17 -79629 Q9H607 -79630 Q8WWF1 -79631 Q7Z2Z2 -79632 F8W8D6 -79632 Q6P9G8 -79632 Q7Z323 -79632 Q8NB25 -79633 B3KU84 -79633 Q6V0I7 -79634 B4DI11 -79634 Q0VDG4 -79634 Q0VDG5 -79635 Q6ZUS5 -79637 Q9H6L4 -79639 Q6P2H8 -79640 C9J442 -79641 Q9GZN7 -79642 Q5FYB0 -79643 Q96FZ7 -79644 Q9H8P0 -79645 Q9HAE3 -79646 Q9H999 -79647 B4DZU6 -79647 Q9H9L7 -79648 B4DWW2 -79648 E9PH63 -79648 Q8NEM0 -79649 B4DWD2 -79649 Q8IWC1 -79650 B4DWE3 -79650 B4DZW5 -79650 Q9BQ65 -79651 Q6PJF5 -79652 Q9BSN7 -79654 A1A4G1 -79654 B3KU34 -79654 Q5T447 -79656 Q7L4P6 -79657 B4DRW9 -79657 Q9H6T3 -79658 A1A4S6 -79659 Q8NCM8 -79660 Q86XI6 -79661 Q96FI4 -79663 A8K045 -79663 Q96EW2 -79664 G3V0H6 -79664 Q659A1 -79665 B4DR88 -79665 F5H625 -79665 Q8IX18 -79666 Q9H8W4 -79668 B2RB27 -79668 Q8N3A8 -79669 Q5BVD1 -79670 Q5VYS8 -79670 Q96KX5 -79671 Q86UT6 -79672 Q9HA64 -79673 Q86UD4 -79674 F5GZ91 -79674 Q14D04 -79675 Q53R41 -79676 Q6N063 -79677 Q96SB8 -79679 Q7Z7D3 -79680 Q7L3V2 -79682 Q71F23 -79683 Q8IZN3 -79684 Q6P1R3 -79685 E9PAU7 -79685 E9PAY2 -79685 Q9HAJ7 -79689 Q687X5 -79690 Q96RP7 -79691 Q9H974 -79692 Q6U7Q0 -79693 Q86U90 -79694 Q5SRI9 -79695 Q8IXK2 -79696 E9PJQ0 -79696 Q53FD0 -79697 Q9H6W3 -79698 Q9H898 -79699 B4DK95 -79699 Q9C0D3 -79701 Q6PK18 -79703 Q8N6T0 -79705 Q38SD2 -79706 Q9H875 -79707 Q5SY16 -79709 Q8NBJ5 -79710 A1YR23 -79710 B4DTP6 -79710 Q8TE76 -79711 B3KT38 -79711 Q8TEX9 -79712 G1UFN1 -79712 Q4AE62 -79713 Q9H665 -79714 Q96ER9 -79716 B4DMW7 -79716 E9PN47 -79716 G5EA34 -79716 Q8NDH3 -79717 Q5VVM0 -79717 Q9HAB8 -79718 Q9BZK7 -79719 Q6PD74 -79720 Q9H9H4 -79722 B3KVT8 -79722 Q3KP44 -79723 Q9H5I1 -79724 Q9H5H4 -79725 Q9H5L6 -79726 Q6PJI9 -79727 Q9H9Z2 -79728 Q86YC2 -79729 A4FU49 -79731 B3KPX5 -79731 G3V178 -79731 Q96I59 -79731 Q9H5H1 -79733 A0AVK6 -79734 Q8N5Z5 -79735 B4DT12 -79735 Q9HA65 -79736 Q96QE5 -79738 Q8TAM1 -79739 Q6ZT98 -79740 A8MT70 -79740 B7ZMD2 -79740 F2Z370 -79741 Q9H943 -79742 Q8WZ11 -79742 Q9H7Y0 -79744 E9PCP4 -79744 E9PED0 -79744 E9PET3 -79744 E9PFX9 -79744 Q96HQ0 -79745 Q8N3C7 -79746 Q96DC8 -79747 Q8N7X0 -79747 Q9H5S1 -79748 Q9HAT1 -79750 Q9H6B1 -79751 Q9H936 -79752 E5RIG0 -79752 E5RJ99 -79752 Q8TCF1 -79753 B1AK66 -79753 Q8TAD8 -79754 Q8WXK3 -79755 Q32MQ0 -79758 A0PJE2 -79759 A8K1I4 -79759 Q96K58 -79760 Q9H840 -79762 Q9H7X2 -79763 Q96AB3 -79767 Q96BJ8 -79768 Q9H079 -79770 Q7Z345 -79770 Q96J42 -79772 Q6DN14 -79774 Q5TC63 -79776 G3V138 -79776 Q86UP3 -79777 B4DJP3 -79777 Q8NC06 -79778 Q6UWK3 -79778 Q8IY33 -79780 Q8N4S0 -79781 Q86XH1 -79782 Q6UY01 -79783 Q4KMW8 -79783 Q9HAC7 -79784 A1L2Z2 -79784 B3KWH4 -79784 Q7Z406 -79785 Q9H628 -79786 Q8N4N3 -79788 Q9H7R5 -79789 Q6NUQ2 -79789 Q96JQ2 -79791 Q5XUX0 -79792 A8K702 -79792 P57764 -79794 Q9H741 -79796 Q9H6U8 -79797 B4DXY4 -79797 Q9H9D4 -79798 Q96C12 -79799 Q6UWM9 -79800 Q8N187 -79801 Q8NEM2 -79802 Q6UWX4 -79803 Q86YV9 -79805 B4DYZ5 -79805 Q86V25 -79807 Q8NEC7 -79809 A8KA77 -79809 Q7Z4L5 -79810 Q8WV60 -79811 Q9NWH9 -79812 Q9H8L6 -79813 Q9H9B1 -79814 Q9BSE5 -79815 Q9H841 -79816 Q6PJM9 -79816 Q9H808 -79817 Q86TA1 -79818 Q9H707 -79819 A0AVI9 -79819 Q5VTH9 -79820 B3KWW9 -79820 Q9H7T0 -79822 B4DXL2 -79823 Q7Z624 -79825 Q9HA90 -79827 Q9H6B4 -79828 A8K7U3 -79828 B3KW44 -79829 Q86UY6 -79830 Q5SVZ6 -79831 Q8N371 -79832 B3KWV1 -79832 Q2KHR3 -79833 Q8WXD5 -79834 Q9H792 -79836 Q496Y0 -79837 B3KQV3 -79837 B4DM11 -79837 B4DY44 -79837 Q8TBX8 -79838 Q6UXY8 -79839 A1A4H1 -79839 Q68D86 -79840 Q9H9Q4 -79841 Q5U5Z8 -79842 Q9H5J0 -79843 Q9H5Z6 -79844 Q9H8X9 -79845 Q9H9V4 -79846 A5D8W1 -79847 Q14CX5 -79848 Q1MSJ5 -79849 B0YJ61 -79849 Q86UT5 -79850 Q8TBR7 -79852 Q9H6B9 -79853 Q53R12 -79856 Q96L94 -79858 B4DM56 -79858 Q8NG66 -79861 A6NHL2 -79862 B3KP94 -79862 Q96BR6 -79863 Q8N0V3 -79864 B3KUM2 -79864 Q6NUN7 -79865 Q5T2D2 -79866 Q6PGQ7 -79867 A8K7Y8 -79867 Q96GX1 -79868 Q9NP73 -79869 B4DGF8 -79869 Q8N684 -79870 Q8WXS3 -79871 Q8IXW5 -79872 B4DDV7 -79872 Q75N03 -79873 Q6ZVK8 -79874 Q9H5N1 -79875 Q6ZMP0 -79876 Q9GZZ9 -79877 Q8WVC6 -79879 Q9H6E4 -79882 B4E2H4 -79882 G3V5R4 -79882 Q6PJT7 -79883 A8K3W6 -79883 B7Z3M0 -79883 B7Z564 -79883 F5H7F9 -79883 G3V1J6 -79883 Q6PEZ8 -79884 Q05CN5 -79884 Q49MG5 -79885 B4DDK1 -79885 Q96DB2 -79886 B4DWT4 -79886 Q9H8G2 -79887 Q6P4A8 -79888 Q8NF37 -79890 Q86U22 -79890 Q8TB24 -79891 Q8TAW3 -79892 Q9BTE3 -79893 Q9H3C7 -79894 Q499Z4 -79895 Q8TF62 -79896 Q8IYQ7 -79896 Q9H6P9 -79897 Q5SU41 -79897 Q9H633 -79898 Q6PF04 -79899 B3KNU3 -79899 E9PKY1 -79899 Q6MZQ0 -79901 Q53TN4 -79902 Q9BW27 -79903 Q9H7X0 -79905 E7ERB6 -79905 Q7Z402 -79906 Q5T089 -79908 A4QMZ8 -79908 A6NEX6 -79908 B7Z409 -79908 B7Z5B1 -79908 E9PEF6 -79908 E9PG07 -79908 F2Z2B2 -79908 F8W712 -79908 Q6UX41 -79912 Q8WU10 -79913 Q9H9F9 -79915 Q96QE3 -79917 Q9H6Y5 -79918 Q8TBK2 -79919 Q08AI8 -79921 Q96EI5 -79922 Q6IN84 -79923 Q9H9S0 -79924 Q7Z4H4 -79925 Q9C093 -79927 Q8TAY7 -79929 Q9H9H5 -79930 E9PAT0 -79930 Q7L591 -79931 B4DVF5 -79931 B4E023 -79931 Q96KP6 -79932 Q8IZA0 -79933 Q9H987 -79934 Q96D53 -79935 B4DX65 -79937 Q9BZ76 -79939 Q96K37 -79943 Q9H7X3 -79944 Q9H9P8 -79946 Q9H7T3 -79947 B7Z4B9 -79947 B7ZB20 -79947 Q86SQ9 -79948 Q6T4P5 -79949 Q5SXH7 -79953 Q9H7V2 -79954 Q9BSC4 -79955 Q9H5P4 -79956 B3KSB1 -79956 Q6ZMD3 -79956 Q7Z2K6 -79957 Q5TCK7 -79957 Q6TCH4 -79958 Q8IV53 -79959 Q8TAP6 -79960 Q6IE81 -79961 Q9H6A0 -79962 Q8N4W6 -79966 Q86SK9 -79966 Q86UC8 -79968 Q9H967 -79969 B7Z4Q7 -79969 Q5SQI0 -79971 Q5JRS7 -79971 Q5T9L3 -79973 Q9H7R0 -79974 A4D0V7 -79974 Q9H6Q5 -79977 Q6ISB3 -79979 Q96GJ1 -79980 A8K3X3 -79980 B4DWT2 -79980 Q5JW55 -79980 Q9H410 -79981 Q8N878 -79982 Q8TBM8 -79983 Q8WVV4 -79987 B3KQM1 -79987 Q4LDE5 -79989 A0AVF1 -79989 B7Z5M0 -79989 C9J2N7 -79989 E7ET00 -79989 F8W724 -79990 Q7Z736 -79991 Q9H668 -79993 A1L3X0 -79998 Q8N9V6 -80000 B4DDS9 -80000 Q9C091 -80003 A6NKB5 -80003 B3KNZ5 -80004 Q9H6T0 -80005 Q68DL4 -80005 Q9H7D0 -80006 A5PLN9 -80007 Q9H8K7 -80008 Q8N614 -80010 Q9H9A7 -80011 Q9GZU8 -80012 Q8NDX5 -80013 Q9H8M7 -80014 Q6AWC2 -80017 Q4LE40 -80017 Q7Z3D6 -80018 Q14CX7 -80019 Q9HAC8 -80020 Q8IWF2 -80021 Q0P6H9 -80023 Q9GZP1 -80024 Q6J4K2 -80025 Q6P1K9 -80025 Q9BZ23 -80028 Q96ME1 -80031 A6NM95 -80031 Q8NFY4 -80032 Q9HAH1 -80034 Q8WYN3 -80036 A2A3F4 -80036 A9Z1Y7 -80036 E9PBI7 -80036 G5E9G1 -80036 Q6NW43 -80036 Q9H200 -80036 Q9HCF6 -80045 Q5UAW9 -80055 Q75T13 -80059 B3KV11 -80059 Q6ZT31 -80059 Q86VH4 -80059 Q9H9T0 -80063 Q5U623 -80067 F5H7W1 -80067 Q5H9S7 -80070 P59510 -80071 Q0P6D6 -80095 Q8WXB4 -80095 Q9H7U2 -80097 Q6NZ67 -80099 Q9H7B7 -80108 Q6ZN57 -80110 Q8N883 -80111 Q3SXR2 -80114 Q9H694 -80115 Q6UXY1 -80117 Q8N4G2 -80119 B2RPL7 -80119 Q9H611 -80122 Q56UN5 -80124 Q96JH7 -80125 Q8N5R6 -80127 Q8ND07 -80128 Q7Z4K8 -80129 Q8IYT3 -80131 Q6NSJ5 -80133 F5GWX6 -80133 Q5TGP6 -80135 Q9H9Y2 -80139 Q9H7S9 -80142 Q9H7Z7 -80143 Q9BRV8 -80144 A2RRR8 -80144 E9PHH6 -80144 Q86XX4 -80145 Q6I9Y2 -80146 Q8NBZ7 -80148 B7Z7D9 -80148 G5E989 -80148 Q8N2U9 -80149 Q5D1E8 -80150 Q7L266 -80152 B3KPB2 -80152 Q96BT3 -80153 Q96F86 -80155 Q58F05 -80155 Q9BXJ9 -80157 Q9H720 -80162 Q32M88 -80164 F5H1R7 -80167 Q0P651 -80168 Q3SYC2 -80169 Q2NKJ3 -80173 A0PJM7 -80173 Q96LB3 -80174 Q8NFT6 -80176 Q96BD6 -80177 Q8N699 -80178 Q7L2K0 -80179 B4E218 -80179 B7Z1T7 -80179 Q96H55 -80183 Q9H714 -80184 O15078 -80184 Q05BJ6 -80185 Q6NXR4 -80194 Q9H6X4 -80195 Q8TBM7 -80196 Q969K3 -80198 Q53ES5 -80198 Q96NY9 -80199 Q9BT04 -80201 B3KT70 -80201 Q2TB90 -80204 A1L491 -80204 Q86XK2 -80205 Q3L8U1 -80205 Q461N2 -80206 Q2V2M9 -80207 Q9H6K4 -80208 B9EK60 -80208 F5H3N6 -80208 Q96JI7 -80209 A6NJ97 -80209 Q86XN7 -80210 Q7Z3E5 -80212 Q53HC0 -80213 Q9BRN9 -80216 Q96QP1 -80217 Q8NDM7 -80218 Q9GZZ1 -80219 Q9H8M1 -80221 Q96CM8 -80222 Q9BW92 -80223 Q6WKZ4 -80224 B3KSK2 -80224 B4DWB0 -80224 Q8TB37 -80227 Q9BRP4 -80228 Q96SN7 -80230 Q96T51 -80231 Q9HAI6 -80232 Q9H7D7 -80233 A4ZI32 -80233 Q0VG06 -80235 Q86VD9 -80237 B3KX08 -80237 Q9HB65 -80243 Q70Z35 -80254 Q96MT8 -80255 Q8WV83 -80256 Q7L5A3 -80258 Q5JST6 -80262 Q9BSU1 -80263 Q9H8W5 -80264 A8K360 -80264 Q2NKJ9 -80264 Q9H8G1 -80267 Q7L2Y5 -80267 Q9BZQ6 -80270 Q96M28 -80270 Q9H2F3 -80271 Q96DU7 -80273 Q9HAV7 -80274 A0JP65 -80274 Q6ZS56 -80274 Q86TI6 -80274 Q8IWY4 -80279 Q96JB5 -80298 Q49AM1 -80301 Q8TD55 -80303 E9PFH3 -80303 Q9BUP0 -80304 Q9H6R7 -80305 Q9H4I3 -80306 Q9H204 -80308 Q8NFF5 -80309 Q2M3C7 -80310 Q9GZP0 -80311 Q96M94 -80312 Q8NFU7 -80313 B3KUK5 -80313 Q9C0I9 -80314 Q9H2F5 -80315 Q17RY0 -80317 B3KVC0 -80317 Q9BRR0 -80318 Q5VSY0 -80319 Q9H2H0 -80320 B3KXP2 -80320 Q3SY56 -80321 Q8NHQ1 -80323 Q9H2F9 -80324 E5KMT5 -80324 E5KMT6 -80324 Q9Y606 -80325 Q969K4 -80326 Q53S44 -80326 Q9GZT5 -80328 Q9BZM5 -80329 Q5VY81 -80329 Q9BZM6 -80331 Q6AHX3 -80331 Q9H3Z4 -80332 Q9BZ11 -80333 A8K4N3 -80333 Q3YAB8 -80333 Q3YAB9 -80333 Q3YAC0 -80333 Q3YAC1 -80333 Q3YAC2 -80333 Q6PIL6 -80335 Q6UXN9 -80336 Q4VXU2 -80339 Q9NST1 -80341 Q6ZME0 -80341 Q8N4F0 -80342 Q9Y228 -80343 Q5TEA6 -80344 B3KSW2 -80344 Q59GN6 -80344 Q8TEB1 -80345 Q9H4T2 -80346 Q9H6H4 -80347 Q13057 -80349 Q9GZS3 -80351 Q9H2K2 -80352 Q96QB5 -80352 Q9H2S5 -80380 Q9BQ51 -80381 Q5ZPR3 -80700 Q9BZV1 -80704 Q9BZV2 -80705 Q9BZW7 -80709 Q64FY1 -80709 Q7Z591 -80712 Q8N693 -80714 Q9BYU1 -80723 Q8TBE7 -80724 G3XAJ0 -80724 Q6JQN1 -80725 Q9C0H9 -80726 A0JP07 -80726 B4DYH2 -80726 E9PDE0 -80726 E9PH54 -80726 Q2KHR5 -80726 Q9H0B3 -80727 Q8WYU9 -80727 Q9C0H2 -80728 B3KS00 -80728 Q9C0H5 -80736 B4DU94 -80736 B4DWM2 -80736 E9PEK7 -80736 Q53GD3 -80737 Q9Y334 -80739 B0V023 -80739 O95866 -80740 O95867 -80740 Q5SRS8 -80741 Q5SRR4 -80742 B3KQA4 -80742 P79522 -80742 Q96QB9 -80745 D6W593 -80745 Q969Z2 -80745 Q9BTF0 -80746 B7Z6K1 -80746 C9IZI7 -80746 G5E9Q3 -80746 Q8NCE0 -80755 B4DI73 -80755 B9A003 -80755 E9PB15 -80755 Q9BTE6 -80757 Q9BTD3 -80758 Q8TB68 -80759 Q4VXA5 -80759 Q5JSQ7 -80760 G5E9D8 -80760 Q86UX2 -80760 Q96JW9 -80761 Q9BT76 -80762 Q9BT67 -80763 Q9BT56 -80764 Q9BT49 -80765 Q9NSY2 -80772 Q5TA50 -80774 Q9BT23 -80775 Q53S58 -80776 Q9BPU9 -80777 O43169 -80778 B3KU46 -80778 Q8IZ26 -80781 D3DSM4 -80781 D3DSM5 -80781 P39060 -80789 Q6P9B9 -80790 Q8IY22 -80816 Q9C0F0 -80817 Q9C0F1 -80818 Q9C0F3 -80820 Q7L9B9 -80821 G5E9D1 -80821 Q8NEL9 -80823 Q6PI77 -80824 Q9BY84 -80829 Q96JP5 -80830 B3KTP4 -80830 Q9BWW8 -80831 Q9BWW9 -80832 Q9BPW4 -80833 O95236 -80834 Q8TE23 -80835 A8K7J9 -80835 Q7RTX1 -80851 Q7L8J4 -80852 Q9C0E4 -80853 Q6ZMT4 -80854 Q8WTS6 -80856 Q9C0E8 -80863 Q99946 -80864 Q99944 -80895 Q9H0C8 -80896 Q9BXD5 -80975 Q0P513 -80975 Q9H3S3 -81025 P57773 -81027 Q9H4B7 -81029 Q9H1J7 -81030 A2A2F7 -81030 B3KVA1 -81030 F5GYT1 -81030 Q9H171 -81031 O95528 -81033 Q9H252 -81034 Q9H2D1 -81035 Q5KU26 -81037 Q96KA5 -81050 Q9NZP5 -81061 Q8NG94 -81099 Q8NGA8 -81127 Q8NH41 -81168 Q8NGG0 -81282 Q8NGK0 -81285 Q9H255 -81300 Q8NGL7 -81309 Q8NGM1 -81318 Q8NH83 -81327 Q8NH70 -81328 Q8NGL6 -81341 Q8NGF6 -81392 Q8NHA4 -81399 Q6IEY1 -81442 Q8NGY6 -81448 Q8NGY2 -81469 Q8NGZ4 -81470 Q8NGZ5 -81472 Q8N628 -81488 P0CAP1 -81488 P0CAP2 -81488 Q6EEV4 -81490 Q9BVG9 -81491 A8K1C4 -81491 Q9BZJ6 -81492 Q9H0K4 -81493 Q9H7C4 -81494 Q9BXR6 -81501 Q9H295 -81502 Q8TCT9 -81532 B4DKP3 -81532 E9PDA5 -81532 Q70IA6 -81533 Q8TB96 -81537 Q9BX95 -81539 Q9H2H9 -81542 Q9H3N1 -81543 Q6ZSA1 -81543 Q9BY71 -81544 Q8WTR4 -81545 Q6PIJ6 -81550 Q9H7E2 -81551 Q9H169 -81552 Q96AW1 -81553 Q53QW2 -81553 Q9H0Q0 -81554 Q96I51 -81555 Q969M3 -81556 B4DDI6 -81556 B4DVD5 -81556 B4DWZ3 -81557 Q96JG8 -81558 Q9C073 -81559 Q96F44 -81562 Q9H0V9 -81563 Q9H246 -81565 A6NIZ0 -81565 Q9GZM8 -81566 Q9H175 -81567 B2RDM2 -81567 Q6EHZ3 -81567 Q8NBS9 -81569 Q9H568 -81570 Q9H078 -81572 Q9NUG6 -81573 Q8N6S4 -81575 A0AVN6 -81575 Q96LR9 -81576 P13994 -81577 Q3B7J2 -81578 Q96P44 -81579 Q542Y6 -81579 Q9BZM1 -81602 Q9BWV3 -81603 Q9BZR9 -81605 Q9BTM9 -81606 Q53QV2 -81607 Q96NY8 -81608 B4DIR3 -81608 G3XAD6 -81608 Q6UN15 -81609 Q96L92 -81610 Q9H4H8 -81611 B4E0I6 -81611 E9PEA6 -81611 Q5TB20 -81611 Q9BTT0 -81614 F8W7Y8 -81614 Q8N8Q9 -81615 Q8TC26 -81616 Q5FVE4 -81617 Q9H9S4 -81618 Q9NQX7 -81619 B4DHY6 -81619 Q8NG11 -81620 Q9H211 -81621 Q96I82 -81622 Q05BS6 -81622 Q58F16 -81622 Q9H1C4 -81623 Q9BYW3 -81624 Q9NSV4 -81626 Q9BZQ2 -81627 B4DXX1 -81627 Q7Z2T5 -81628 Q9Y3Q8 -81629 Q96PN8 -81631 Q658J6 -81631 Q9GZQ8 -81669 Q96S94 -81671 Q96GC9 -81688 Q9GZU0 -81689 Q9BUE6 -81691 Q96IC2 -81693 Q9BXJ7 -81696 Q9UGF6 -81697 Q9GZK3 -81704 B7ZLP0 -81704 E2J6M5 -81704 E2J6M6 -81704 E9PH09 -81704 Q8NF50 -81706 Q8TAE6 -81786 Q9C029 -81788 Q9H093 -81789 Q17RP2 -81790 E9PIL4 -81790 Q96K19 -81792 P58397 -81793 D1CS21 -81793 Q9BXR5 -81794 Q6ZN14 -81794 Q9H324 -81796 A4QPC2 -81796 B3KMU7 -81796 B3KUC7 -81796 E9PKK5 -81796 G3V1C0 -81796 Q9H2Y9 -81797 D2XT27 -81797 Q9UGF7 -81831 Q32NC3 -81831 Q8NC67 -81832 Q8TDF5 -81833 Q9HBV2 -81839 Q8TAA9 -81844 Q9BRZ2 -81846 Q86WG5 -81847 Q9NTX7 -81848 Q9C004 -81849 Q9BVH7 -81850 Q8IUG1 -81851 Q07627 -81853 Q5THN7 -81853 Q9NUH8 -81855 Q9BWM7 -81856 Q8N823 -81857 Q71SY5 -81858 Q6PJD5 -81858 Q9H0F6 -81870 B5MDD6 -81871 Q9BYQ5 -81872 Q9BYU5 -81873 Q9BPX5 -81875 Q9H9L3 -81876 Q9H0U4 -81887 Q9Y4W2 -81888 Q5T013 -81889 B1AK40 -81889 Q6P587 -81890 Q71RF8 -81890 Q9BXR0 -81892 Q9GZT3 -81894 Q96A46 -81926 Q96GS6 -81928 Q9BTV7 -81929 Q96EE3 -81930 Q8NI77 -81931 P35789 -81931 Q6NS90 -81932 Q9BSH5 -83259 Q9BZA8 -83394 A1A5C9 -83394 F8WEW5 -83394 Q9BZ71 -83401 Q9HB03 -83416 Q96RD9 -83417 Q96PJ5 -83439 Q9HCS4 -83440 Q9BRR6 -83442 Q9H299 -83443 Q9BWJ5 -83444 Q9C086 -83445 F1T0A0 -83445 F1T0A1 -83445 G3XAB9 -83445 Q2KHT4 -83446 Q6NSX1 -83447 Q9H0C2 -83448 Q9H0K6 -83449 B3KVI9 -83449 Q8TBY8 -83450 B3KSC6 -83450 Q9H069 -83451 Q8NFV4 -83452 Q9H082 -83460 Q9BV81 -83461 B2R749 -83461 Q99618 -83463 Q9BW11 -83464 Q564N3 -83464 Q8WW43 -83468 Q9H1C3 -83473 Q8IYT4 -83475 Q9BU89 -83478 Q8N264 -83479 Q5T1V6 -83480 Q9BZE2 -83481 P58107 -83482 Q9BWW7 -83483 Q9BX97 -83538 Q96NG3 -83539 Q7L1S5 -83540 Q9BZD4 -83541 Q9BQ89 -83543 Q9BQI0 -83544 B2RD38 -83544 Q4LDG9 -83546 Q9BSG5 -83547 Q96NA2 -83548 Q96JB2 -83549 Q9HA47 -83550 Q96P66 -83551 Q969N4 -83552 Q9BXJ0 -83552 Q9BY79 -83590 Q9BVT8 -83591 Q9H0W7 -83592 Q96JD6 -83593 Q8WWW0 -83594 Q9BQG2 -83595 Q9BT81 -83596 Q3SY13 -83596 Q9HB09 -83597 Q9BQQ7 -83604 Q9BQJ4 -83605 E9PDJ3 -83605 F5H0E1 -83605 F5H551 -83605 Q9BSQ5 -83606 Q96NT3 -83607 Q6DCA0 -83608 A6NFX5 -83608 Q32NC0 -83608 Q8TBS0 -83636 Q9NSK7 -83637 Q8NF64 -83638 Q9H3H3 -83639 Q9BY14 -83640 Q9BTL3 -83641 Q9H098 -83642 Q9BVL4 -83643 Q9BQI4 -83648 Q96KS9 -83650 Q96KT7 -83657 Q8TF09 -83658 Q9NP97 -83659 Q969V4 -83660 Q9Y4G6 -83661 Q9BY19 -83666 E9PFM7 -83666 Q59ER9 -83666 Q8IXQ6 -83667 P58004 -83690 Q9H336 -83692 B4DDL7 -83692 E9PD27 -83692 Q8TCZ2 -83693 B4DSL2 -83693 Q3SXM5 -83694 B4DSP6 -83694 Q9Y6S9 -83695 B7Z989 -83695 Q9BSD3 -83696 Q96Q05 -83697 Q96Q91 -83698 A4D1Z1 -83698 Q9BXU9 -83699 Q9UJC5 -83700 B3KWG9 -83700 Q9BX67 -83706 Q86UX7 -83707 A8MU17 -83707 F5H2B2 -83707 Q86TN4 -83714 A2RRE3 -83714 Q9BQI9 -83715 B1AK53 -83716 Q9H0B8 -83719 P61236 -83723 F1T0F5 -83723 Q71RH2 -83729 P58166 -83732 Q9BRS2 -83732 Q9H2L9 -83733 Q9H1K4 -83734 Q9H0Y0 -83737 Q5QP37 -83737 Q96J02 -83740 P0C5Z0 -83741 Q7Z6R9 -83742 Q9BSK0 -83743 A0MNN5 -83743 Q9BQ67 -83744 B1AL89 -83744 Q5JVG2 -83746 Q969R5 -83752 Q86WA8 -83755 Q9BQ66 -83756 Q7RTX0 -83758 P82980 -83759 Q9BQ04 -83786 Q9BZ67 -83787 B4DWJ8 -83787 F5GX65 -83787 Q8N2F6 -83795 B5TJL9 -83795 Q96T55 -83844 Q9BXU7 -83849 Q9BQS2 -83850 A0FGR9 -83851 Q17RD7 -83852 Q96T68 -83853 Q96C74 -83854 Q8NI99 -83855 Q9BXK1 -83856 B7Z3W5 -83856 Q8N450 -83856 Q9BXM9 -83857 Q8IUR5 -83858 Q5T9A4 -83860 Q5VWG9 -83861 Q86UC2 -83862 Q9BXJ8 -83871 B4DNC0 -83871 E7ES60 -83871 Q96PJ7 -83871 Q9BZG1 -83872 Q96RW7 -83873 G4XH66 -83873 Q9BZJ8 -83874 A7E244 -83874 B3KXT8 -83874 B7ZVY9 -83874 Q20WK7 -83874 Q9BXI6 -83875 Q8IUS0 -83875 Q9BYV7 -83876 E9PAT5 -83876 E9PBI3 -83876 E9PFU2 -83876 Q9BYG7 -83877 Q9BX73 -83878 Q8N6Y0 -83879 Q9BWT1 -83881 Q9H2W2 -83882 Q9H1Z9 -83884 Q9BXI2 -83886 Q9BQR3 -83887 Q9BWV7 -83888 Q9BYJ0 -83889 Q6ZQQ6 -83890 Q9BWV2 -83891 B3KTI8 -83891 Q9H3E2 -83892 Q9H3F6 -83893 Q9BXB7 -83894 Q8NA56 -83894 Q8TC83 -83895 Q9BYS1 -83896 Q9BYR8 -83897 Q9BYR7 -83899 Q6ISF6 -83899 Q9BYQ4 -83900 Q9BYQ3 -83901 Q9BYQ0 -83902 Q9BYP8 -83903 A0PJ70 -83903 Q8TF76 -83930 A4D1X0 -83930 O95772 -83931 Q8N2I9 -83932 Q9H040 -83933 Q969S8 -83935 Q9H2Q1 -83937 Q9H2L5 -83938 Q9H2I8 -83939 Q9BY44 -83940 Q6P1N9 -83941 Q9BX74 -83942 A0ZT98 -83942 Q9BXA7 -83943 A4D0S9 -83943 Q96T52 -83953 Q8WWV6 -83954 Q3KNW7 -83954 Q7LBC9 -83959 B4DKC8 -83959 B4DKX9 -83959 G3V1M3 -83959 Q8NBS3 -83982 Q9H2X8 -83983 Q9BXA6 -83985 Q9H2V7 -83986 Q9H0X4 -83987 Q9H0W5 -83988 B2RB70 -83988 P61601 -83989 B4DJ14 -83989 B4DLG5 -83989 Q8WUF8 -83990 Q9BX63 -83992 Q20BG9 -83992 Q8WZ74 -83998 Q9BYZ8 -83999 Q96MU8 -84000 E9PIJ5 -84000 E9PRA0 -84000 F8WAJ3 -84000 Q1RMF8 -84000 Q9BYE2 -84002 Q9BYG0 -84033 Q5VST9 -84034 Q9BXX0 -84056 B3KUK7 -84056 Q9BW62 -84057 Q9BWT6 -84058 Q9H977 -84059 Q8WXG9 -84060 Q5RL73 -84061 Q9H0U3 -84062 Q96EV8 -84063 Q6UWL6 -84064 Q9H0R4 -84065 Q9H0R3 -84066 Q5T0J7 -84066 Q5T0J8 -84067 Q8N612 -84068 Q0GE19 -84069 Q494U1 -84070 Q8IYM0 -84071 Q8NEN0 -84072 Q86X24 -84073 B4DZQ1 -84073 Q8TBZ2 -84074 Q9H0J4 -84075 Q5H9T9 -84076 Q9H0I9 -84077 Q8ND61 -84078 Q8WVZ9 -84079 Q96NW4 -84080 Q9H0I2 -84081 Q9H0G5 -84083 Q5FWF4 -84084 Q9H0N0 -84085 Q8TB52 -84100 Q9H0F7 -84101 Q9H0E7 -84102 Q96JW4 -84103 Q53FE4 -84105 Q9H0N5 -84106 Q96QH2 -84107 B4DF89 -84107 B7Z2L2 -84107 C9J7D5 -84107 Q8N9L1 -84108 Q9BYE7 -84109 Q96P65 -84124 Q53GI3 -84125 Q96JM4 -84126 Q8WXE1 -84128 Q8IWA0 -84129 Q709F0 -84131 E9PHX5 -84131 Q5JTW2 -84132 Q9H9J4 -84133 B3KU18 -84133 Q9ULT6 -84134 Q969M1 -84135 Q8TED0 -84138 Q96CW6 -84140 Q3B820 -84141 Q9H8M9 -84142 Q6UWZ7 -84144 Q5VT97 -84146 A7E234 -84146 Q9H582 -84148 G5E9P2 -84148 Q9H7Z6 -84152 B3KVQ9 -84152 Q9UD71 -84153 Q8TDP1 -84154 Q9H7B2 -84159 Q14865 -84162 Q2LD37 -84163 Q86UP8 -84164 B7Z8E0 -84164 F5H6J9 -84164 Q9H1I8 -84166 Q6MZW3 -84166 Q86WI3 -84166 Q9H6Y0 -84167 Q9H6X5 -84168 Q53FL1 -84168 Q96EC6 -84168 Q9H6X2 -84171 Q96JB6 -84172 Q9H9Y6 -84173 Q96FG2 -84174 Q9H6Q3 -84179 Q6UXD7 -84181 Q8TD26 -84182 Q4G0A6 -84186 Q05DN1 -84186 Q8N3Z6 -84187 B3KSQ8 -84187 F5H2P2 -84187 Q5U3C3 -84188 Q8WVX9 -84189 Q9H5Y7 -84190 Q8N6Q8 -84191 B7Z8Z5 -84191 Q9H5X1 -84193 A0PJU3 -84193 Q86TU7 -84196 Q86UV5 -84197 Q9H5K3 -84203 Q86VQ3 -84206 Q6ZN04 -84210 Q5TYW2 -84215 Q9H0D2 -84216 Q9H0C3 -84217 B4DX70 -84217 E9PFV0 -84217 Q9H0C1 -84218 A6NER0 -84219 Q96S15 -84220 Q99666 -84221 Q9H0A9 -84223 Q9H095 -84223 Q9H5C8 -84224 B3KTI0 -84224 Q9H094 -84225 Q9H091 -84226 Q68DN1 -84229 Q8IY82 -84230 Q8TDW0 -84231 B3KQY7 -84231 Q6Q0C0 -84232 Q9H063 -84233 E9PI16 -84233 Q9H061 -84236 Q8TEB9 -84239 B3KU47 -84239 Q4VNC1 -84240 Q8N567 -84243 Q9NUE0 -84245 Q9BV20 -84246 Q9BTT4 -84247 Q6ICC9 -84247 Q9BQJ3 -84248 Q96QD9 -84249 Q9BQI7 -84250 Q9BQI6 -84251 Q9BQI5 -84253 Q5VVW2 -84254 Q8N5S9 -84255 Q8NCC5 -84256 Q4VC44 -84258 Q9BQG1 -84259 Q9BTE7 -84260 Q9BT92 -84261 Q5XUX1 -84262 Q9BT73 -84263 Q6YN16 -84264 Q6PII5 -84265 Q9BT43 -84266 Q9BT30 -84267 Q5T6V5 -84268 B3KTT3 -84268 B4DI36 -84268 E9PDG9 -84268 E9PES3 -84268 F5GYE1 -84268 F5H3Q7 -84268 Q86UA6 -84269 Q585T4 -84269 Q9BSY4 -84270 Q96LW7 -84271 Q9BY77 -84272 Q9BSR8 -84273 Q8NC60 -84274 Q5HYK3 -84275 Q9BSK2 -84276 B2R7Q3 -84276 Q9BSH3 -84277 B3KSU4 -84277 Q96LL9 -84279 Q2Z1P2 -84279 Q9BSG0 -84280 D3DQW7 -84280 Q6P5W1 -84280 Q9BSF8 -84281 Q9BSF0 -84282 B2R7G9 -84282 B6ZLM5 -84282 F5GX60 -84282 Q8IUD6 -84283 Q9BSE2 -84284 Q5TDE9 -84284 Q9BSD7 -84285 Q8N9N8 -84286 Q9BSA9 -84287 Q969W1 -84288 B4DZE9 -84288 Q5VUJ9 -84289 Q8WYH8 -84290 Q96L46 -84292 Q9BRX9 -84293 A6NDF1 -84293 Q9BRX8 -84294 Q9BRU9 -84295 A8K230 -84295 Q8IWS0 -84296 Q9BRT9 -84298 Q9BRT6 -84299 Q9BRT3 -84300 Q9BRT2 -84301 Q5TDH0 -84302 Q9BRR3 -84303 Q9BRQ6 -84304 Q9BRQ3 -84305 Q9BRP8 -84306 Q9BRP1 -84307 Q8NF99 -84309 B2RD96 -84309 Q9BRJ7 -84310 Q9BRJ6 -84311 Q9BRJ2 -84312 Q5PSV4 -84313 Q9BRG1 -84314 Q6UX40 -84315 G5E9N1 -84315 Q86VX9 -84316 Q9BRA0 -84317 Q96NT0 -84318 B4DDE8 -84318 Q9BR77 -84319 B4DUM1 -84319 E9PHS3 -84319 Q9BQ75 -84320 B2RAA8 -84320 Q9BR61 -84321 Q96J01 -84324 P82979 -84326 D6REA6 -84326 F6TF62 -84326 F6VM53 -84326 Q96S19 -84327 Q96IU2 -84328 Q8WZA0 -84329 Q96D96 -84330 A8MY94 -84330 Q96IQ9 -84331 Q9BUT9 -84332 Q96IM9 -84333 Q86SE9 -84334 Q96IL0 -84335 Q96B36 -84336 Q96IK0 -84337 P60002 -84340 Q969S9 -84342 Q96MW5 -84343 Q969F9 -84364 B4DX29 -84364 Q8N6H7 -84365 Q9BYG3 -84366 Q96KF2 -84376 Q86VS8 -84417 Q9H1Z8 -84418 Q9H1C7 -84419 Q9C002 -84432 P58294 -84433 Q8TES3 -84433 Q9BXL7 -84435 Q86SQ6 -84436 Q3MIS6 -84437 Q8NCY6 -84439 F1T0G3 -84439 Q96JK4 -84440 Q86YS3 -84441 Q8IZL2 -84444 Q8TEK3 -84445 Q9BRK4 -84446 Q8TDC3 -84447 Q86TM6 -84448 E9PF39 -84448 Q08E71 -84448 Q19VH0 -84448 Q6H8Q1 -84449 Q6P2E6 -84449 Q96JL9 -84450 Q96ME7 -84451 Q5TCX8 -84455 A8K855 -84456 Q96JM7 -84457 Q96FC7 -84458 Q96JN0 -84460 A7MD47 -84461 Q96JN8 -84464 Q8IY92 -84465 A6BM72 -84466 Q96KG7 -84467 Q75N90 -84498 Q96EK7 -84501 Q8WWL2 -84502 Q96JJ6 -84503 Q8NB42 -84504 Q9C056 -84513 C9JKF5 -84513 Q8NEB5 -84514 B4DQS4 -84514 E9PDB5 -84514 Q8N2G8 -84515 Q9UJA3 -84516 Q9BTE1 -84517 Q9BYD9 -84518 Q9BYD5 -84519 Q8NEB7 -84520 Q9BXV9 -84522 Q8N5M9 -84524 Q8N5P1 -84525 E9PB55 -84525 G3V294 -84525 Q9BPY8 -84527 B3KPL8 -84527 B4DP29 -84527 Q3LIC1 -84527 Q9BR84 -84528 Q9BQY4 -84529 Q9Y2V0 -84530 A7MD48 -84532 Q9NUB1 -84539 Q969V1 -84541 Q8NFY9 -84542 Q6NSI8 -84545 A8K4V4 -84545 C9J5Q3 -84545 Q8N983 -84547 Q96JS3 -84548 B7Z4G6 -84548 Q8NFB2 -84549 Q9BXY0 -84552 Q9BYG4 -84553 Q5TGI0 -84557 Q9H492 -84560 P47944 -84561 A0AV02 -84569 Q6UWQ5 -84570 Q9BXS0 -84572 Q9UJJ9 -84612 Q9BYG5 -84614 Q5TC79 -84614 Q8WYT0 -84616 Q9BYR3 -84617 Q9BUF5 -84618 Q9BXI3 -84619 Q8N5A5 -84620 Q96JF0 -84622 Q6ZNC6 -84622 Q96JF6 -84623 Q8IZU9 -84624 Q4ZHG4 -84626 A5PL33 -84627 Q96JG9 -84628 O95898 -84628 Q96CW9 -84629 A3KMH2 -84629 O15417 -84630 Q5TCY1 -84631 B3KTY4 -84631 Q9H156 -84632 Q8N4X5 -84634 Q969F8 -84636 Q9BXC1 -84639 Q8WWZ1 -84640 Q3ZCV1 -84640 Q8NB14 -84641 Q5SR56 -84643 Q8N4N8 -84645 Q9BZE7 -84647 Q9BX93 -84648 Q9BYE3 -84649 Q96PD7 -84650 Q6GPH7 -84650 Q9BY08 -84651 P58062 -84654 Q9BXG8 -84656 Q49A26 -84658 Q9BY15 -84659 Q9H1E1 -84660 Q6P9F0 -84661 Q9C005 -84662 Q9BZE0 -84665 Q86TC9 -84666 Q9BQ08 -84667 F8VPC9 -84667 Q9BYE0 -84668 Q9BYI3 -84669 Q8NFA0 -84671 A8K1S9 -84671 B3KU77 -84671 G5E9N4 -84671 Q96SE7 -84674 Q9BX69 -84675 Q9BYV6 -84676 Q969Q1 -84678 A8MRS1 -84678 Q8NHM5 -84679 Q96T83 -84680 Q96QU6 -84681 Q9BX68 -84684 Q96T92 -84687 D3DTX6 -84687 Q96SB3 -84688 Q5T598 -84688 Q5T5A0 -84688 Q8NCR6 -84689 Q96JA4 -84690 B4DXB1 -84690 Q8NHS9 -84691 Q96KD3 -84692 Q8NEL0 -84693 Q96PE7 -84694 Q969M2 -84695 P58215 -84696 Q96SE0 -84698 Q9BXY5 -84699 Q68CJ9 -84700 F5GYU7 -84700 Q8IUG5 -84701 Q96KJ9 -84705 A6NIG5 -84705 B7Z4V8 -84705 B7Z563 -84705 Q969Y2 -84706 Q8TD30 -84707 F5H7H5 -84707 Q9BXY8 -84708 Q8TBB1 -84709 Q8TDB4 -84717 Q7Z4V5 -84720 Q8TEQ8 -84722 A8K0M8 -84722 Q6PGN9 -84725 B4DH00 -84725 Q96JA3 -84726 Q5JSZ5 -84726 Q9BU62 -84727 Q99619 -84733 Q14781 -84734 Q9BTA0 -84735 Q96KN2 -84747 A6NIH7 -84749 Q70CQ3 -84750 Q6P4F1 -84752 Q6UX72 -84759 Q9BSM1 -84765 Q9BSK1 -84766 Q9BSW2 -84767 Q9BSJ1 -84769 Q567V2 -84775 F5H141 -84775 Q96SK3 -84779 Q9BSU3 -84787 Q86Y97 -84790 Q9BQE3 -84792 Q7Z4H9 -84795 Q8N2H3 -84798 Q6RUI8 -84803 Q53EU6 -84804 Q8NBP5 -84807 Q8NI38 -84811 Q9BRD0 -84812 Q9BRC7 -84814 Q8NBV4 -84816 Q8WWV3 -84817 Q9BRA2 -84818 A8BWC1 -84818 A8BWC9 -84818 A8BWD5 -84818 Q8NAC3 -84823 Q03252 -84824 A6NC03 -84824 A6NL20 -84824 F5H720 -84824 F8W743 -84824 G3V1J2 -84824 Q5VXB1 -84824 Q6MZF2 -84824 Q7L513 -84826 Q587I9 -84830 Q96IZ2 -84833 Q96IX5 -84836 Q96IU4 -84838 Q96IT1 -84839 Q96IS3 -84842 Q96IR7 -84844 Q7RTV0 -84851 Q96A61 -84858 Q96F45 -84859 Q96II8 -84861 Q53GT1 -84864 Q8IUF8 -84865 Q17RM4 -84866 G5E9U4 -84866 Q86YD3 -84866 Q8NBL5 -84867 B3KXG7 -84867 P54829 -84867 Q86TL3 -84868 Q8TDQ0 -84869 Q8N4T8 -84870 Q9BXY4 -84871 Q5VU57 -84872 Q96K80 -84873 Q6ZMH4 -84873 Q96K78 -84874 Q96K75 -84875 Q53GL7 -84876 Q96D31 -84878 Q96K62 -84879 Q8NA29 -84881 E9PML2 -84881 Q96CM3 -84883 Q9BRQ8 -84885 Q96GR4 -84886 A8K8R8 -84886 B3KTW1 -84886 G5EA08 -84886 Q9H425 -84888 Q8TCT8 -84889 Q8WY07 -84890 B3KXN9 -84890 Q96SZ5 -84891 Q96SZ4 -84892 Q8NAT1 -84893 Q8NFZ0 -84894 Q96FE5 -84895 Q7L4E1 -84896 Q8NBU5 -84897 Q3YBR2 -84898 Q6UX71 -84899 Q5T4D3 -84900 E9PAM7 -84900 Q96EX2 -84901 Q8NCF5 -84902 Q96ST8 -84904 Q8N4T4 -84905 B3KU97 -84905 Q9BYN7 -84908 Q96C01 -84909 Q8N6M6 -84910 Q96K49 -84911 Q96SR6 -84912 Q969S0 -84913 Q96SQ7 -84914 G3V0H5 -84914 Q96SQ5 -84915 Q5U5X8 -84916 Q969X6 -84918 B4DS68 -84918 Q86VZ4 -84919 Q5SWA1 -84920 Q5BKT4 -84922 Q96SL8 -84923 Q969W3 -84924 B7ZL95 -84924 Q969W8 -84925 Q96SL1 -84926 Q8NCJ5 -84928 Q96SK2 -84929 Q8N539 -84930 Q96GX5 -84932 B4DUD4 -84932 Q6NZ33 -84932 Q8WUD1 -84933 Q96K31 -84934 Q96K30 -84935 Q5VYS4 -84936 Q96K21 -84937 Q8ND25 -84938 Q96DT6 -84939 Q2TAK8 -84940 B3KRY9 -84940 Q6QEF8 -84941 Q96JZ2 -84942 Q6P4I2 -84944 Q96JY0 -84945 Q7L211 -84946 Q96GA3 -84947 Q96JX3 -84948 E7EWS2 -84950 Q8NAV1 -84951 Q6PJP3 -84951 Q8IZW8 -84952 Q0VF96 -84953 Q6ZW33 -84954 Q8N594 -84955 Q96RS6 -84957 Q969Z4 -84958 Q8IYJ3 -84959 Q8TF42 -84960 Q5T5S1 -84960 Q96IG8 -84961 Q96IG2 -84962 A8MX18 -84962 Q96IF1 -84964 Q3KRA9 -84966 Q96ID5 -84967 Q969L4 -84968 P0C5W0 -84968 P0CW24 -84969 E1P5X0 -84969 G3XAC7 -84969 Q96NM4 -84970 Q6P1W5 -84971 Q86TL0 -84971 Q969K0 -84975 G3V1N7 -84975 Q6N075 -84976 Q96F81 -84978 Q7Z6J6 -84984 Q96LK0 -84985 Q86UY5 -84986 Q14CB8 -84987 Q96I36 -84988 Q96I34 -84991 Q5W009 -84991 Q96I25 -84992 Q3MUY2 -84992 Q96I23 -84993 Q96S82 -85002 Q4KMP3 -85002 Q8N7N1 -85004 B4DI02 -85004 Q96A58 -85007 A8K7P6 -85007 Q8IUZ5 -85012 Q969E4 -85013 Q5BJH2 -85014 Q96I45 -85015 Q70EL2 -85016 E9PJU1 -85016 Q7Z2V0 -85016 Q9BRQ4 -85019 Q24JQ0 -85021 Q96D71 -85025 Q9H2L4 -85026 Q9H2J1 -85027 Q9BZL3 -85235 A3KPC7 -85235 Q96KK5 -85236 O60814 -85280 Q9BYQ2 -85285 Q9BYQ7 -85289 Q9BYR2 -85290 Q9BYR4 -85291 Q9BYR5 -85293 Q9BYR6 -85294 Q9BYR9 -85300 Q86WG3 -85301 Q8IZC6 -85313 Q8WUA2 -85315 B3KXW6 -85315 Q8TEZ7 -85316 Q86Y27 -85317 Q86Y28 -85318 Q86Y29 -85320 Q96J66 -85329 G5E970 -85329 Q96DT0 -85352 Q3SXP7 -85358 F2Z3L0 -85359 Q9BY27 -85360 Q6ZW31 -85363 Q9C035 -85364 Q9NUD5 -85365 Q9H553 -85366 Q9H1R3 -85369 Q5VSL9 -85377 Q8N3F8 -85378 Q96RT7 -85379 Q9BY89 -85395 Q9NSI2 -85397 P57771 -85403 Q96JC9 -85406 Q6Y2X3 -85407 Q969G9 -85409 Q969F2 -85413 Q86VW1 -85414 A8K2U9 -85414 Q96JT2 -85415 Q8IUC4 -85416 Q96T25 -85417 Q8WWL7 -85437 Q8TBF4 -85438 Q96KC9 -85439 Q8WXE9 -85440 Q96N67 -85440 Q96NI0 -85441 Q9BYK8 -85442 Q5U5J6 -85442 Q76NI1 -85443 B3KVM3 -85443 Q9C098 -85444 B4DTJ0 -85444 Q9C099 -85445 E9PFZ6 -85445 Q86YZ7 -85445 Q9C0A0 -85446 B7ZM83 -85446 B9EK48 -85446 Q9C0A1 -85449 Q5JYT7 -85450 Q8IWB1 -85451 Q9C0B0 -85452 Q9C0B2 -85453 Q86VY4 -85455 A7MBM2 -85456 Q9C0C2 -85457 Q9C0C6 -85458 Q155Q3 -85459 Q9C0D2 -85460 Q9C0D4 -85461 B9EK39 -85461 Q9C0D5 -85462 Q9C0D6 -85463 Q9C0D7 -85464 Q76I76 -85465 Q9C0D9 -85474 Q6XYB7 -85476 E5KND5 -85476 Q96RP9 -85477 Q9Y6U3 -85478 Q8IXS2 -85479 Q9UF47 -85480 Q969D9 -85481 Q96QS6 -85508 Q9NQ03 -85509 Q8WWY6 -85569 Q9UBC7 -85865 A4D1E9 -86614 Q96LI6 -87178 Q8TCS8 -87769 Q9BVM4 -88455 Q3ZTS7 -88455 Q8IZ07 -88455 Q9Y5A3 -88745 Q96EU6 -89122 Q9C037 -89765 Q8WYR4 -89766 Q5DID0 -89777 Q96P63 -89778 F5GYW9 -89778 Q96P15 -89780 P56704 -89781 Q9NQG7 -89782 B4DR62 -89782 F8WB28 -89782 Q96KR4 -89790 B7ZL06 -89790 C9JJ33 -89790 C9JM10 -89790 F8W917 -89790 Q96LC7 -89792 Q96A11 -89795 Q8IVL0 -89796 Q8NEY1 -89797 A7E2D6 -89797 Q8IVL1 -89801 A2VDJ8 -89801 E9PCM3 -89801 Q0D2I0 -89801 Q6ZSY5 -89822 E9PB46 -89822 Q96T54 -89832 Q494W8 -89832 Q8IUZ4 -89839 Q3KRB8 -89845 Q5T3U5 -89846 Q5JSP0 -89848 Q86WN1 -89849 Q8NAA4 -89849 Q9H7Q5 -89853 Q9H7P6 -89857 Q8WZ60 -89858 Q96PQ1 -89866 Q96JE7 -89869 Q86YW0 -89870 Q5SRL0 -89870 Q9C019 -89872 Q96PS8 -89874 A8K0L0 -89874 G3V4L5 -89874 Q9BQT8 -89876 Q7Z4T9 -89882 Q96J77 -89884 Q969G2 -89885 Q969F0 -89886 Q6NSE6 -89886 Q96A28 -89887 Q5EBL2 -89890 Q86V97 -89891 Q96EX3 -89894 G3V1W7 -89894 G5E985 -89894 Q8NCL8 -89894 Q9BWF8 -89910 Q7Z3V4 -89927 Q96MC5 -89932 B3KXI1 -89932 O95428 -89941 Q8IXI1 -89944 Q8IW92 -89953 Q96EG6 -89953 Q9NSK0 -89958 Q86UD0 -89970 Q96DX4 -89978 B3KWG1 -89978 Q7L8W6 -90007 Q504T8 -90019 Q8NBV8 -90025 Q7Z6J8 -90050 Q8N9Y4 -90060 A8K5Q5 -90060 B4DF24 -90060 B4DFC1 -90060 B4DTU2 -90060 F5GZU4 -90060 Q96HB5 -90070 Q9GZZ8 -90075 P17039 -90102 Q86SQ0 -90113 B9EGN7 -90113 Q9BVH8 -90121 Q969E8 -90134 Q9NS40 -90135 Q96KE9 -90139 Q96SJ8 -90141 Q9BUY7 -90161 E9PDY5 -90161 Q96MM7 -90167 Q6ZUT3 -90187 Q9NT22 -90196 C9JFB3 -90196 Q8N2H4 -90199 Q8IUA0 -90203 Q05DJ0 -90203 Q5JZH5 -90203 Q5JZH7 -90203 Q8WUR6 -90203 Q8WY78 -90203 Q969T3 -90204 Q9BR11 -90226 Q96RP3 -90231 Q8IYS2 -90233 Q7Z340 -90249 Q6ZN44 -90268 Q96BN8 -90273 Q3KPI0 -90293 B7ZB44 -90293 Q96HC9 -90293 Q9P2N7 -90313 Q8NBR0 -90316 Q8IUE1 -90317 Q08AN1 -90321 Q5HY98 -90324 Q96F63 -90326 Q8WTV1 -90332 Q2M3D2 -90333 Q5VIY5 -90338 Q9HCG1 -90342 A0AVI2 -90353 Q7Z7A3 -90355 Q96GV9 -90362 B3KRT5 -90362 Q8TC76 -90378 Q6SPF0 -90379 Q66K64 -90381 Q7Z2Z1 -90390 Q96HR3 -90407 Q96HV5 -90410 Q8IY31 -90411 B4DF17 -90411 E9PD95 -90411 Q68D61 -90411 Q8NI22 -90416 Q9BV29 -90417 Q9Y448 -90423 Q96A05 -90427 Q96LC9 -90441 Q969S3 -90459 Q8IV48 -90480 Q8TAE8 -90485 B7Z5Y0 -90485 G3V1S0 -90488 Q8WUH6 -90506 A8K9Q0 -90506 Q96FV0 -90507 E9PBV5 -90507 Q96FV2 -90507 Q9BU04 -90522 Q5BJH7 -90522 Q9H5F7 -90523 Q5VWP3 -90525 B3KTY1 -90527 A8K9Q6 -90527 Q1HG43 -90529 Q5TH74 -90550 Q8NE86 -90557 Q96AQ1 -90576 Q96GE5 -90580 Q9BSF4 -90589 Q96I27 -90592 Q9H0M5 -90594 Q8NDP4 -90624 Q5U5X0 -90627 B2R789 -90627 B3KRK6 -90627 Q9Y3M8 -90634 Q5TBK1 -90634 Q9UQP6 -90637 Q8N6M9 -90639 Q49B96 -90649 Q96H40 -90655 Q8IUE0 -90665 Q9BQ87 -90668 Q8ND23 -90678 Q6UWE0 -90693 Q96EE4 -90701 Q9BY50 -90736 B4DSV6 -90736 D6R9S5 -90736 D6RDJ5 -90736 E9PH40 -90736 Q5XKR9 -90737 Q5JUL0 -90737 Q96GU1 -90780 Q5T170 -90780 Q9BRQ0 -90799 Q96GE4 -90806 Q5VTE6 -90806 Q96AL9 -90809 Q86T03 -90826 Q6P2P2 -90827 Q96JC4 -90835 A1A4V9 -90835 F5GX13 -90843 Q8IYN2 -90850 Q86UK7 -90853 Q6ZMY3 -90861 Q9H910 -90864 Q6PJ21 -90865 B4DJ35 -90865 B4E1Q9 -90865 O95760 -90871 Q96GE9 -90874 Q5TEC3 -90933 Q8WV44 -90952 Q96AP7 -90956 A4D1T6 -90956 Q7Z695 -90957 Q6P158 -90957 Q8N4U2 -90987 Q9BRH9 -90990 Q96AC6 -90993 Q96BA8 -91010 Q8IVF7 -91012 Q8N5B7 -91039 Q1ZZB8 -91039 Q86TI2 -91050 B4DK90 -91050 B4DZG3 -91050 G5EA04 -91056 Q2VPB7 -91057 Q96HJ3 -91074 Q9BXX3 -91107 Q96LD4 -91120 B3KUX2 -91120 E9PFJ5 -91120 O95780 -91133 Q8NA19 -91137 Q96AG3 -91147 B3KRU5 -91147 G5E9H2 -91147 Q5HYA8 -91151 Q6NT04 -91156 F8WAI1 -91179 E5RFB8 -91179 Q58A83 -91179 Q96GP6 -91181 E7EP56 -91181 Q5VU65 -91181 Q9UF31 -91227 Q14390 -91252 Q96H72 -91272 Q96IK1 -91283 Q96H12 -91289 Q9BU23 -91298 Q8N999 -91300 Q96D70 -91304 B3KTL0 -91304 Q4ZIN3 -91319 F2Z3B6 -91319 Q96Q80 -91351 Q5H9U9 -91355 A4QPB2 -91368 Q96HQ2 -91369 A8IK34 -91369 Q6AI12 -91373 Q3KQV9 -91392 Q8TBZ5 -91392 Q96K08 -91404 B3KTX3 -91404 Q86VW0 -91408 B3KNJ1 -91408 G3V1C6 -91408 Q96K17 -91409 Q96LY2 -91419 Q9Y6H3 -91433 A6NED2 -91442 Q9BTP7 -91445 Q96GF1 -91452 Q5T8D3 -91452 Q8NCM9 -91461 Q504Y2 -91464 Q2M1V0 -91522 Q86Y22 -91523 Q96HM7 -91526 B7Z6Z7 -91526 Q8N8A2 -91543 Q8WXG1 -91544 Q5T124 -91574 Q9H3J6 -91582 Q86WX3 -91584 A4D1N6 -91584 Q9HCM2 -91603 Q96NB3 -91607 Q7Z7L1 -91608 B3KV31 -91608 Q96S79 -91612 G3V1X3 -91612 G3V214 -91612 G3V215 -91612 Q8WUH1 -91614 G5E941 -91614 Q96QD5 -91624 B4DDI0 -91624 B4DPZ7 -91624 Q0ZGT2 -91646 Q587J7 -91647 Q8N5M1 -91653 Q96DN7 -91653 Q9BWV1 -91661 Q7L2R6 -91662 P59046 -91663 Q96S97 -91664 Q96IR2 -91683 B0AZL9 -91683 Q8IV01 -91683 Q8NDM9 -91687 Q8N0S6 -91689 Q9H4I9 -91694 Q17RB8 -91703 Q96HD9 -91734 Q9BXS1 -91746 Q96MU7 -91748 Q6PJG2 -91749 B3KSA1 -91749 Q5TF39 -91750 B3KN83 -91750 Q52LA3 -91752 Q7Z570 -91754 Q6PKF2 -91754 Q8TD19 -91768 A7K6Y5 -91768 Q8TDN4 -91775 Q969Y0 -91782 B3KUH0 -91782 Q8WUX9 -91801 Q96BT7 -91807 Q32MK0 -91828 Q17RC7 -91833 B4DN18 -91833 E7EUY8 -91833 F8W9S4 -91833 G3V2F8 -91833 G3V5R0 -91833 Q5JPH5 -91833 Q86TU2 -91833 Q8NCN7 -91833 Q8TBZ3 -91851 B4DMP3 -91851 D3DUY6 -91851 E9PGS5 -91851 Q9BU40 -91860 F8W6Y4 -91860 Q6MZY3 -91860 Q96GE6 -91862 Q96A59 -91869 Q96AA3 -91875 Q86T04 -91875 Q8N0Z6 -91893 Q9BRP7 -91894 Q96A22 -91937 B5MCL9 -91937 Q96H15 -91942 Q8N183 -91947 A8K2F6 -91947 Q8NCT1 -91949 P83436 -91966 B7Z6H6 -91966 Q8TE69 -91975 F5GWS1 -91975 Q96RE9 -91977 Q8TDC0 -91978 Q6ZTW0 -92002 Q8N1B3 -92014 Q9H1U9 -92017 Q8TEQ0 -92086 Q9BX51 -92092 Q96H79 -92104 Q86WT1 -92105 Q96HW7 -92106 Q96HP4 -92126 Q8IZU8 -92129 Q0D2K3 -92140 Q86UE4 -92154 Q765P7 -92162 Q6PEY1 -92170 Q9BT17 -92181 B3KMW8 -92181 Q8WUN7 -92196 A0PJW8 -92211 B3KWC7 -92211 F1T0L2 -92211 Q96JP9 -92235 Q5VZP5 -92241 Q6JBY9 -92255 Q68DH5 -92259 P82909 -92270 Q52LC2 -92283 Q8TAF7 -92285 Q52M93 -92291 Q6MZZ7 -92292 A9ZM15 -92292 Q969I3 -92293 Q8N3T6 -92304 Q96QR1 -92305 A0AVI4 -92312 A1L020 -92335 B4DDE3 -92335 B4DW17 -92335 Q5JPI2 -92335 Q7RTN6 -92335 Q86YC8 -92340 B4DZJ9 -92340 B4E2F8 -92340 E9PGL5 -92340 P0C7W0 -92342 O95568 -92344 B3KQ87 -92344 Q5T7V8 -92345 E9PAZ2 -92345 Q96HR8 -92346 O95561 -92359 Q9BUF7 -92369 Q96A44 -92370 Q8TE99 -92370 Q9NT50 -92399 Q96E11 -92400 Q96H35 -92421 Q96CF2 -92482 A8MTZ0 -92482 E9PIY9 -92482 E9PM41 -92482 E9PRI7 -92483 Q9BYZ2 -92521 B4DW07 -92521 B4E2A4 -92521 Q5M775 -92552 B4DYC7 -92552 Q9H3M9 -92558 Q6ZP65 -92565 Q8TC84 -92579 Q9BUM1 -92591 Q96NS5 -92595 B3KSN2 -92595 Q96H86 -92597 B3KSH6 -92597 B4DRY3 -92597 Q7L9L4 -92609 Q3ZCQ8 -92610 Q96CG3 -92667 Q9BQP7 -92675 Q8TEA8 -92689 Q8IWE2 -92691 Q96HH4 -92703 A8K5W1 -92703 Q8IXX5 -92714 Q8N5I2 -92715 Q9BTV6 -92736 Q7RTS6 -92737 Q8NFT8 -92745 Q8WUX1 -92747 Q8TDL5 -92749 Q96MC2 -92797 Q8NG08 -92799 Q8TBC3 -92806 B2RD01 -92815 Q7L7L0 -92822 Q8N554 -92840 Q96HR9 -92856 Q3ZTT3 -92856 Q96G21 -92906 A8K894 -92906 Q8WVV9 -92912 B7Z3Q2 -92912 E9PHD0 -92912 Q8WVN8 -92922 Q96A19 -92935 Q96GW9 -92949 Q6MZQ3 -92949 Q8N6G6 -92960 Q96HA9 -92979 Q86YJ5 -92979 Q8N9T1 -92999 Q6ZSY6 -92999 Q9UFB7 -93010 Q8NFL0 -93034 B3KUK6 -93034 B4DXZ9 -93034 B4DZ86 -93034 E7EXB7 -93034 Q96P26 -93035 Q86WI1 -93058 Q8TAL2 -93058 Q96MF6 -93081 Q5JUR7 -93099 A3EZ84 -93099 Q6E0U4 -93100 Q6XQN6 -93107 Q32MC1 -93107 Q547S7 -93107 Q8TDN1 -93109 B7ZLZ5 -93109 E9PGA9 -93109 Q2T9K0 -93129 Q9BRQ5 -93134 Q8N587 -93145 O95897 -93166 Q9NQX0 -93183 Q9H3S5 -93185 Q969P0 -93190 Q8N1D5 -93210 Q96FM1 -93233 Q96M63 -93273 Q68G75 -93323 C9JBZ4 -93323 Q9BT25 -93343 Q96EY5 -93349 Q9H930 -93377 A8MYG4 -93377 B4DK96 -93377 Q5W102 -93377 Q96PE5 -93380 Q8N4V1 -93408 Q9BUA6 -93426 Q8N0S2 -93436 Q6NXE6 -93474 Q9BS34 -93487 Q8NDC0 -93492 A1A4X0 -93492 A8MX64 -93492 Q6XPS3 -93517 Q8WUS8 -93550 Q86XD8 -93587 Q8TBZ6 -93589 Q7Z3S7 -93594 B7ZL19 -93594 Q96DN5 -93611 Q9H4M3 -93621 Q9Y605 -93624 Q86TJ2 -93627 Q8TEA7 -93643 Q5JTD0 -93649 Q6N065 -93649 Q8IZQ8 -93650 Q9BZG2 -93659 P01233 -93661 Q96KX2 -93663 Q8N392 -93664 B7ZM57 -93664 Q86UW7 -93953 Q96QF7 -93973 Q9H981 -93974 Q9UII2 -93978 Q6EIG7 -93979 A4D1M2 -93979 G3V0G8 -93979 Q6ZNI6 -93979 Q8WXQ8 -93986 B4DLD9 -93986 B7ZLK5 -93986 O15409 -93986 Q8N6B5 -93986 Q8N6B6 -94005 Q8NBL9 -94005 Q96IR5 -94005 Q96S52 -94015 Q8N3U8 -94015 Q9BSA4 -94025 B3KY81 -94025 B5ME49 -94025 Q8WXI7 -94026 C9J1I7 -94027 P01233 -94030 Q9NT99 -94031 P83110 -94032 Q96S95 -94033 Q8N4E7 -94039 Q8IZC7 -94056 Q96A49 -94059 Q96B70 -94081 Q9H9B4 -94086 Q9BQS6 -94097 Q8TD22 -94101 Q9P0S3 -94103 Q8N138 -94104 Q8N6E6 -94104 Q9Y5B6 -94107 Q969S6 -94115 P01233 -94120 B4E2A9 -94120 Q4VX76 -94121 A8K973 -94121 B2R7R4 -94121 Q71SF7 -94121 Q96C24 -94122 A2RRF2 -94122 Q8TDW5 -94134 Q8IWW6 -94137 A6NKC6 -94160 Q96J65 -94233 Q9UHM6 -94234 Q9C009 -94235 Q9UK08 -94239 A6NFA8 -94239 A6NKY0 -94239 A6NN01 -94239 A8MQC5 -94239 Q71UI9 -94240 Q96J88 -94241 Q96A56 -94274 Q96A00 -95681 A4D1M0 -95681 Q9BYV8 -96459 Q8TF40 -96626 P0CW19 -96626 P0CW20 -96764 Q96RS0 -103910 O14950 -112398 Q96KS0 -112399 Q9H6Z9 -112401 Q6PIA0 -112401 Q96P09 -112464 Q969G5 -112476 Q7Z6L0 -112479 A8K979 -112483 Q96F10 -112487 Q96FN9 -112495 Q969F1 -112574 B4E2B3 -112574 Q96RF0 -112609 Q96G30 -112611 Q9UIY3 -112616 Q5VLK1 -112616 Q96FZ5 -112703 Q6IPT2 -112714 Q6PEY2 -112724 B3KVA3 -112724 Q8NBN7 -112744 Q96PD4 -112752 Q96FT9 -112755 P61266 -112770 Q8WWB7 -112802 Q3SY84 -112812 Q6P4F2 -112817 Q86XE5 -112840 Q96FK6 -112849 Q96EM0 -112858 Q96S44 -112869 Q96ES7 -112885 B1AHC5 -112885 B7Z4F8 -112885 Q96EK2 -112936 Q4G0F5 -112937 Q8NCI6 -112939 Q96RE7 -112942 Q96G28 -112950 Q96G25 -112970 Q96EK9 -113000 Q9UJJ7 -113026 Q8N3E9 -113091 Q96A98 -113115 Q6P444 -113130 Q96FF9 -113146 Q8IVF2 -113174 G1UCX3 -113174 Q96ER3 -113177 A7RA93 -113177 Q1ZYL8 -113178 Q969E2 -113179 Q96EY9 -113189 Q8NCH0 -113201 G5E934 -113201 Q6P4E1 -113220 B1ALC3 -113220 Q96FN5 -113235 Q96NT5 -113246 Q99622 -113251 E9PDG5 -113251 G3XAA8 -113251 G5E976 -113251 Q6P4E2 -113251 Q71RC2 -113251 Q8TBL5 -113251 Q96J85 -113263 Q86VQ1 -113277 A8K2X2 -113277 Q96A25 -113278 Q9NQ40 -113402 Q8WV19 -113419 Q6UWH6 -113444 Q96EX1 -113451 Q96A70 -113452 Q969K7 -113457 Q13748 -113457 Q1ZYQ1 -113510 Q8TDG4 -113540 E9PAX0 -113540 Q6PEV5 -113540 Q8IZ96 -113612 Q7Z449 -113622 Q8NDY3 -113655 Q96ES6 -113675 Q96GA7 -113730 Q96G42 -113746 Q96PU9 -113763 Q96FA7 -113791 B4DRR9 -113791 Q96FE7 -113802 Q5T8I9 -113828 Q8NEG4 -113829 Q96G79 -113835 Q9Y2Q1 -113878 Q6XM87 -113878 Q86UW9 -114026 Q96PE6 -114034 Q96GM8 -114049 A8K501 -114049 C9K060 -114049 O43709 -114088 Q9C026 -114112 B4DRZ5 -114112 Q86VQ6 -114131 Q969E3 -114132 Q96RL6 -114134 Q96QE2 -114294 P83111 -114299 Q8IXS6 -114327 B2CKC5 -114327 B4DMU3 -114327 F5GZD8 -114327 Q5JVL4 -114335 A6NKQ9 -114548 B2RC97 -114548 Q96P20 -114569 Q969L2 -114571 A4PB24 -114571 Q8IVM8 -114609 P58753 -114609 Q56UH9 -114625 Q96PL5 -114659 Q96QE4 -114757 Q8WWM9 -114769 Q5EG05 -114770 Q96PD5 -114771 Q96LB9 -114780 Q7Z442 -114781 Q494V9 -114781 Q494W1 -114781 Q96Q07 -114784 Q53TY4 -114784 Q7Z408 -114785 Q6P0P0 -114785 Q96DN6 -114786 Q5GH76 -114787 Q7Z2K8 -114788 Q7Z407 -114789 Q6KCM7 -114790 Q8N1F8 -114791 E9PB12 -114791 Q96RT8 -114792 Q96NJ5 -114793 Q96PY5 -114794 Q5R3F8 -114795 Q14DG7 -114798 Q96PX8 -114799 Q5FWF5 -114800 Q96PX6 -114801 A8K2A1 -114801 Q86VY9 -114803 Q5VVJ2 -114804 Q96PX1 -114805 Q68VI8 -114805 Q8IUC8 -114815 A8K182 -114815 B3KVZ0 -114815 B3KWN9 -114815 E6Y3G0 -114815 Q8WY21 -114818 Q96CT2 -114821 Q6R2W3 -114822 Q8TCX5 -114823 Q96PV6 -114824 Q96PV4 -114825 Q96N64 -114826 Q8IYR2 -114827 B1AJZ9 -114836 B2R8X8 -114836 B4E1U5 -114836 Q5TAS6 -114836 Q96DU3 -114876 B0YJ56 -114876 B3KU11 -114876 B7Z7D3 -114876 Q6GSK5 -114876 Q9BXW6 -114879 A8KAD5 -114879 Q8N596 -114879 Q9H0X9 -114880 Q9BZF3 -114881 Q8WXP9 -114881 Q9BZF2 -114882 E9PE68 -114882 Q5HYM3 -114882 Q9BZF1 -114883 B3KPQ4 -114883 Q86YQ3 -114883 Q96SU4 -114884 B4E212 -114884 Q9BXB5 -114884 Q9NX98 -114885 Q9BXB4 -114897 Q9BXJ1 -114898 Q9BXJ5 -114899 Q0VAN4 -114899 Q542Y2 -114899 Q9BXJ4 -114900 Q9BXJ3 -114902 Q9BXJ0 -114902 Q9BY79 -114904 Q9BXI9 -114905 Q9BXJ2 -114907 A4KYM0 -114907 Q0VAQ6 -114907 Q498Y9 -114907 Q969P5 -114908 Q8N131 -114926 Q96E16 -114928 B3KW05 -114928 Q96D09 -114932 Q96HT8 -114960 Q96PP4 -114971 E9PAT8 -114971 Q8WUK0 -114984 Q96CP2 -114987 Q8NA23 -114990 Q6EMK4 -114991 Q5T7W0 -115004 Q8N884 -115019 B1AVM8 -115019 B3KXK1 -115019 Q7LBE3 -115024 C9JKC4 -115098 Q96CT7 -115106 Q96CS2 -115111 Q8TE54 -115123 Q86UD3 -115196 B3KNM4 -115196 Q86TJ5 -115201 Q8WYN0 -115207 Q96CX2 -115209 Q96E52 -115265 Q96D03 -115273 Q8N4Z0 -115286 F8WAB8 -115286 Q70HW3 -115290 Q96EF6 -115294 Q96MG8 -115330 A4D2Q3 -115330 Q96CH1 -115350 Q96LA6 -115352 Q96P31 -115353 Q9Y546 -115361 Q96PP9 -115362 Q96PP8 -115399 Q8IYG6 -115416 A4D154 -115416 Q96EH3 -115426 Q96PU4 -115509 Q96CS4 -115548 B4DHK0 -115548 E9PG79 -115548 Q0JRZ9 -115557 A9CQZ6 -115557 Q86VW2 -115560 Q96CX3 -115572 Q96A09 -115584 Q8WWX8 -115650 Q5H8V1 -115650 Q96RJ3 -115653 Q8N743 -115677 B3KSF5 -115677 E7EPT9 -115677 Q8IVI9 -115701 Q86TB3 -115703 A1A5D2 -115703 O14559 -115704 B9A6I9 -115704 Q96CN4 -115708 Q96FX7 -115727 C0LTP2 -115727 C0LTP3 -115727 C0LTP4 -115727 C0LTP5 -115727 C0LTP7 -115727 Q8TDF6 -115749 Q8IXR9 -115752 Q8TF46 -115761 Q969Q4 -115795 Q96PS1 -115811 Q96DY2 -115817 Q96LJ7 -115825 Q96P53 -115827 Q96E17 -115861 Q96CM4 -115908 Q96CG8 -115939 Q9UJK0 -115948 A5D8V7 -115948 B3KPH7 -115950 Q96CK0 -115992 F5H1X7 -115992 Q96A37 -116028 Q96E14 -116039 Q8N2R0 -116064 Q96CX6 -116068 A8K613 -116068 Q7Z3D4 -116071 D9IC56 -116071 Q8N1L9 -116085 G3XAN7 -116085 Q96S37 -116092 Q9H147 -116093 Q969H9 -116113 Q7Z7F8 -116113 Q8IVH2 -116113 Q8IW55 -116115 Q8TF50 -116135 Q96PB8 -116138 B4DYA4 -116138 Q9BQ90 -116143 Q96MX6 -116150 Q96E22 -116151 Q96KR6 -116154 B1AKX0 -116154 B1AN68 -116154 Q96KR7 -116159 Q96J86 -116173 E9PH91 -116173 Q5PY48 -116173 Q96DZ9 -116179 Q96PF1 -116211 B7ZW46 -116211 E9PH22 -116211 Q96DZ7 -116224 B3KX07 -116224 Q96E09 -116225 Q96E35 -116228 B3KM21 -116228 Q5RI15 -116236 Q6UXT9 -116238 A8MYP9 -116238 Q96CP7 -116254 Q9NU53 -116255 Q96PD6 -116285 Q08AH1 -116328 G3XAM6 -116328 Q49A92 -116337 Q96QZ0 -116349 Q8N2X6 -116362 Q96R05 -116369 Q96RN1 -116372 Q8N2G4 -116379 Q969J5 -116412 Q96EG3 -116441 Q96CE8 -116442 Q96DA2 -116443 Q8TCU5 -116444 O60391 -116447 E5KMK7 -116447 Q969P6 -116448 Q8TAK6 -116449 Q7Z7G1 -116461 B1ALV0 -116461 B4DKP0 -116461 Q8WW01 -116496 Q9BZQ8 -116511 P35410 -116511 Q5SUN5 -116512 Q8TDS7 -116519 Q6Q788 -116534 Q86SM8 -116535 Q96AM1 -116540 Q96EL3 -116541 Q6P161 -116729 Q86WC6 -116832 Q96EH5 -116835 B7ZLP2 -116835 Q96MM6 -116840 Q8N137 -116841 Q5SQN1 -116842 Q969E1 -116843 Q6NT16 -116844 P02750 -116844 Q68CK4 -116931 Q86YW9 -116966 E7EQX0 -116966 Q8IZU2 -116969 Q96L15 -116983 Q8WTZ1 -116983 Q96P50 -116984 A7E2A5 -116984 Q8WZ64 -116985 B2RTS2 -116985 Q96P48 -116986 F8VVT9 -116986 Q99490 -116987 B2RZG9 -116987 Q9UPQ3 -116988 E9PAL8 -116988 Q86XV5 -116988 Q96P47 -117143 Q96BN2 -117144 Q8NEC5 -117145 A8K0C9 -117145 Q5T1C6 -117153 Q96PC5 -117154 A8K3I1 -117154 B4DQG3 -117154 Q96NX9 -117155 Q96P56 -117156 Q2L6B3 -117156 Q96PL1 -117157 O14796 -117159 P81605 -117159 Q53YJ2 -117166 Q96NZ8 -117177 Q96QF0 -117178 B4DFE3 -117178 B7ZB07 -117178 Q9Y2D8 -117194 Q96LB1 -117195 Q96LB0 -117196 Q96LA9 -117245 B4DY88 -117245 B7X6T1 -117245 Q8NE88 -117245 Q96KN8 -117246 Q8IY81 -117247 Q8TF71 -117248 F1LIP6 -117248 Q8N3T1 -117283 A8K1M0 -117283 Q5TAQ4 -117283 Q96PC2 -117285 Q96PH6 -117286 Q96Q77 -117289 Q8N103 -117531 Q8TDI8 -117532 Q8TDI7 -117579 Q8WXF3 -117581 Q8WVJ9 -117583 E9PE87 -117583 Q8TEW8 -117584 Q8WZ73 -117608 Q96LW1 -117854 B4DDQ5 -117854 Q9C030 -118424 A6NGS0 -118424 A8MYC7 -118424 Q8N2K1 -118426 Q969J3 -118427 B3KTG9 -118427 Q5T3V6 -118427 Q96PB7 -118429 P58335 -118430 Q96DR8 -118442 Q8TAM0 -118442 Q9BZJ7 -118460 Q5RKV6 -118461 Q711Q0 -118471 A6XND8 -118471 Q96NZ9 -118472 Q8NB15 -118487 Q96BP2 -118490 Q4VC12 -118491 Q5T0N1 -118611 Q96M02 -118663 Q32M84 -118670 A6NFZ4 -118672 Q8IV42 -118738 Q96MN9 -118788 Q6ZUJ8 -118788 Q86YV3 -118812 A6XB87 -118812 Q8NDC4 -118813 B7Z3S0 -118813 B7Z404 -118813 B7Z626 -118813 Q5T4F4 -118856 Q8N119 -118881 Q86VU5 -118924 Q70Z53 -118932 Q5VYY1 -118980 Q5JSM6 -118980 Q96NB2 -118987 Q8NEN9 -119016 Q96P64 -119032 Q96B45 -119180 Q7Z4W2 -119385 Q8TF27 -119391 B4DJW6 -119391 Q5JU15 -119391 Q9H4Y5 -119392 Q86XK3 -119395 Q86XJ0 -119467 Q8NCR9 -119504 C5H3H2 -119504 Q96DE5 -119548 Q17RR3 -119559 Q6P4A7 -119587 Q8N436 -119678 Q8NGJ4 -119679 Q8NH60 -119682 Q8NGJ5 -119687 Q8NH64 -119692 Q8NGJ8 -119694 Q8NH61 -119695 Q8NGF1 -119710 Q86VG3 -119749 A6NHA9 -119764 Q8NGF9 -119765 Q8NGF8 -119772 Q8NGK5 -119774 Q8NGK3 -120065 Q8WZ92 -120066 Q8WZ94 -120071 B3KP69 -120071 Q8N3Y3 -120103 Q6YBV0 -120114 Q8TDW7 -120146 A6NGJ6 -120224 Q96B21 -120227 Q6VVX0 -120237 A6NMT0 -120376 A8K830 -120379 E9PD82 -120379 Q8WWB5 -120400 Q8N323 -120406 Q96DL1 -120425 B3KUI3 -120425 Q86YT9 -120526 Q6P3W2 -120534 Q8N8R7 -120586 Q8N0Y5 -120775 Q8NGH3 -120776 Q9H210 -120787 Q6IF63 -120793 Q8NGH8 -120796 Q8NGH5 -120863 Q8N2C3 -120892 Q17RV3 -120892 Q5S007 -120935 Q502W7 -120939 Q4KMG9 -121006 A6NE01 -121053 Q8N5I9 -121130 Q8NGE3 -121214 Q8NEX9 -121227 Q6UXM1 -121256 Q14C87 -121260 Q8N697 -121268 Q8TAI7 -121273 Q6X4T0 -121274 B3KS43 -121274 B4DNU5 -121274 Q96N77 -121275 Q8NGE0 -121278 Q8IWU9 -121340 Q8TDD2 -121355 Q8WW33 -121364 Q8NGE5 -121391 Q7RTS7 -121441 A8K1Z3 -121441 B4E145 -121441 G3V3F1 -121441 Q8NHV4 -121457 Q70UQ0 -121504 B2R4R0 -121504 P62805 -121506 Q96DN0 -121512 Q96M96 -121536 Q6ZN18 -121549 Q6XD76 -121551 A6QL63 -121551 B3KVD0 -121551 B3KXB0 -121551 B3KXG3 -121551 E9PHS4 -121599 Q8N5J4 -121601 Q32M45 -121642 A4PET2 -121642 Q6NS38 -121643 A6H901 -121643 Q96NZ1 -121665 Q3MJ04 -121665 Q8TCT6 -121665 Q9UG23 -121793 Q8N6K0 -122011 Q8N752 -122042 Q3KU23 -122042 Q8WXD0 -122046 Q8N6G2 -122060 B7Z209 -122060 B7Z326 -122060 Q7L0J2 -122060 Q8ND10 -122060 Q8ND83 -122183 P86478 -122183 P86479 -122183 P86480 -122183 P86481 -122183 P86496 -122258 Q96KW9 -122402 Q86WA0 -122402 Q8NDG6 -122416 Q96BM1 -122481 Q96M32 -122509 Q96BM0 -122525 Q4W4Y0 -122553 Q86SZ2 -122616 Q96F83 -122618 Q96BZ4 -122622 B3KTV4 -122622 Q8N142 -122651 Q5GAN5 -122651 Q8TAA1 -122664 P59282 -122665 Q8TDE3 -122704 A6NMQ8 -122704 A8MXK5 -122704 G3XCN9 -122704 Q86TS9 -122706 A5LHX3 -122706 B3KVC3 -122740 Q8NGD5 -122742 Q8NH43 -122748 Q8NGC7 -122769 Q6AWA7 -122769 Q96L50 -122773 Q8N7A1 -122786 Q96NE9 -122809 Q5H9R6 -122809 Q8WXH5 -122830 B3KS28 -122830 Q147X3 -122876 Q86YW7 -122945 Q6NXP6 -122953 Q8WYK2 -122961 Q86U28 -122970 Q8N9L9 -123016 B3KSL8 -123016 Q86U25 -123016 Q8TAM2 -123036 Q8N9U0 -123041 Q8NFF2 -123096 Q8N8R3 -123099 Q6QHC5 -123103 A6NCF5 -123103 B2RUZ8 -123169 Q8WVC0 -123207 F5GX92 -123207 F8WD31 -123207 G5EA00 -123207 Q8WUR7 -123228 A8K8D3 -123228 Q96LD8 -123263 Q96DP5 -123264 Q86UW2 -123283 A2RTX5 -123355 Q86X40 -123591 Q2M3C6 -123606 Q7RTP0 -123606 Q8TAY1 -123624 Q96MI9 -123688 A2RU49 -123688 F8W6X5 -123720 Q8TF30 -123722 A1L4K1 -123745 B7WPN2 -123745 Q3MJ16 -123775 Q6P387 -123803 Q96AB6 -123811 Q96NB1 -123872 Q8NEP3 -123876 B3KP75 -123876 Q08AH3 -123879 Q8IWE4 -123904 Q496H8 -123920 Q96MX0 -123970 Q8WTQ4 -124044 Q8IUW3 -124045 Q96N06 -124056 Q8NFA2 -124093 A2IDD5 -124152 Q8N0W5 -124220 Q96DA0 -124222 Q8N4S7 -124245 Q86VM9 -124274 A8K5R9 -124274 Q6DWJ6 -124359 Q8N8U2 -124401 Q6ZW76 -124402 Q8TB05 -124404 Q8IYM1 -124411 Q7Z2F6 -124446 D5FK14 -124446 Q86XT9 -124454 Q5JPH6 -124460 Q7Z614 -124491 Q8WVE7 -124512 Q86XA0 -124512 Q8N712 -124535 Q4G112 -124538 P58180 -124540 Q96DH6 -124565 Q9HBR0 -124583 Q8WVQ1 -124590 Q495M9 -124599 A8K4G0 -124602 Q2TAC6 -124626 Q6X784 -124637 Q6P9G0 -124641 Q8WZ82 -124739 Q70EL4 -124751 Q6ZNG9 -124773 Q86WR6 -124783 Q96LK8 -124790 Q96MH2 -124801 Q3MHD2 -124808 Q96MW1 -124817 Q8N815 -124842 Q6IEE7 -124857 Q8TEU8 -124872 B4DZE4 -124872 Q8NHY0 -124912 Q8IXA5 -124925 Q53EL9 -124930 B3KS27 -124930 Q86YJ7 -124935 Q8N370 -124936 Q8WUJ1 -124944 C9J4G0 -124944 E9PB29 -124944 Q8IXM2 -124961 Q96NJ6 -124975 Q6P531 -124975 Q6ZPD7 -124976 Q8IVW8 -124989 G3V128 -124989 Q8IY85 -124995 Q7Z7H8 -124997 B3KW16 -124997 B3KXU1 -124997 B7Z579 -124997 E9PHG7 -124997 Q24JR4 -125058 B9A6L7 -125058 Q8TBP0 -125061 Q63HM1 -125111 Q8N144 -125113 Q8N1A0 -125115 Q6A162 -125150 Q19AV6 -125170 Q96C03 -125206 A0PJK1 -125228 Q96ND0 -125336 B7Z7T7 -125336 F5GZB4 -125336 Q8IVV2 -125476 E9PCS7 -125476 Q6PI98 -125488 Q8N584 -125704 Q0P6D2 -125875 Q8NHS1 -125893 Q0VGE8 -125919 Q08ER8 -125931 A7LFK7 -125931 A7LFK8 -125931 A7LFK9 -125931 A7LFL0 -125931 Q6UY09 -125950 E9PAU2 -125950 Q8IY67 -125958 Q8NG98 -125962 Q8NGA0 -125963 Q8NGA1 -125965 Q6YFQ2 -125972 Q96L12 -125981 Q8TDN7 -125988 Q5XKP0 -125997 Q8NHZ7 -126003 Q8IUR0 -126006 Q8IVA1 -126014 Q8IYS5 -126017 Q6ZN06 -126068 Q8N8Z8 -126069 Q8N8L2 -126070 Q8IYI8 -126074 Q6NVH7 -126075 P0C7I6 -126119 Q8TAC2 -126123 Q6UXV1 -126129 A8K0Z8 -126129 Q8TCG5 -126133 B4DLQ1 -126133 Q8IZ83 -126147 Q8WTR8 -126204 Q86W25 -126205 Q86W28 -126206 P59047 -126208 Q6DD87 -126231 Q86YE8 -126248 Q6ZMY6 -126259 Q96BF3 -126272 Q96D98 -126282 Q8WVP5 -126295 A5HJR3 -126295 Q68EA5 -126298 Q8WZA9 -126299 Q96B54 -126306 Q96MG2 -126308 Q96BX8 -126321 A8MXP7 -126321 E9PAJ8 -126321 Q6NUT3 -126326 Q8TF64 -126328 C9JT23 -126328 Q86Y39 -126353 Q8IVT2 -126364 Q8N386 -126370 O60431 -126375 Q3KQV3 -126382 Q86WQ0 -126393 O14558 -126402 Q8IYK2 -126410 Q6NT55 -126432 B4DPG5 -126432 Q6ZS11 -126433 Q8NI29 -126520 Q496M5 -126526 Q8N9M1 -126541 Q8NGA5 -126549 Q8NAG6 -126567 Q8TF44 -126626 Q8TAK5 -126637 Q5QJ38 -126638 Q6XPR3 -126668 Q5VZ19 -126669 Q5VZ18 -126695 Q8NAX2 -126731 Q6IQ19 -126755 Q5VT99 -126767 Q5VUY0 -126789 Q8N0Z8 -126792 Q96L58 -126820 Q8IWG1 -126823 Q8NEP7 -126859 Q5T1B0 -126868 Q8N8X9 -126917 Q5TF58 -126961 Q71DI3 -126969 Q8N4M1 -127002 Q5T6C5 -127003 Q5T5A4 -127018 Q5VWZ2 -127059 A3KFT3 -127062 Q8NG83 -127064 Q8NG77 -127066 Q8NHC7 -127068 Q8NGX1 -127069 Q8NGZ9 -127074 Q8NH00 -127077 Q8NH01 -127124 Q96LB4 -127247 Q8WXJ9 -127253 B4DSP9 -127253 E9PGR7 -127253 Q6IPR3 -127253 Q96GE7 -127254 Q5RHP9 -127255 A6PVS8 -127262 Q5T0D9 -127281 Q8TBF2 -127294 Q5VTT5 -127343 Q8NFW5 -127385 Q8NHC4 -127391 Q7Z6W1 -127396 B3KSP5 -127396 Q5T5D7 -127428 Q96MN5 -127435 Q7Z5L7 -127495 Q96DD0 -127534 Q9NTQ9 -127540 B2R4X7 -127544 E9PAW6 -127544 Q6ZMZ0 -127579 Q5T1A1 -127602 Q0VDD8 -127623 Q5JQS5 -127665 Q5T619 -127670 Q5T9Z0 -127687 E9PQ13 -127687 Q6ZSJ8 -127700 Q8WVF1 -127703 Q8TAB5 -127707 Q5VTJ3 -127731 Q5TIE3 -127733 Q96LJ8 -127795 Q8N0U7 -127829 Q96BM9 -127833 Q8N9I0 -127845 Q6ZVE7 -127933 G3V1M1 -127933 Q8TAS1 -127943 Q6BAA4 -128025 B1ANS9 -128061 Q8NDD1 -128077 Q8IVB5 -128153 A5D6N2 -128153 Q96L03 -128178 A8K7B5 -128178 Q8WWZ3 -128209 Q5JT82 -128218 Q96AQ2 -128229 Q96A04 -128239 Q86VI3 -128240 Q8NCW5 -128272 Q8IW93 -128308 Q7Z7F7 -128312 Q8N257 -128338 Q6UX65 -128344 Q8TCI5 -128346 Q8NEQ5 -128360 Q8NGX3 -128366 Q8NGX9 -128367 Q8NGY0 -128368 Q8NGY1 -128371 Q8NGW6 -128372 Q8NGY5 -128387 B7Z1C1 -128387 B7Z978 -128387 E9PJE5 -128387 E9PNH3 -128387 G3V151 -128387 Q17R31 -128408 Q8NDY6 -128414 B3KWY5 -128414 Q8IVV8 -128434 Q96N03 -128486 Q8N6M3 -128488 Q8WWY7 -128497 Q9BR10 -128506 Q9BR26 -128553 B7Z7W1 -128553 Q9NRE2 -128602 Q9H1P6 -128611 Q5JPB2 -128637 B9A6M1 -128637 Q96BZ9 -128646 Q9H106 -128653 Q9NUB4 -128674 Q8NFJ6 -128710 Q5VYV7 -128817 Q9H114 -128821 Q9H4G1 -128822 Q5W186 -128826 Q9H1L0 -128853 A8MVC8 -128853 Q9H1R2 -128859 Q8NFQ5 -128861 Q9BQP9 -128864 Q1AHR2 -128864 Q9BQM9 -128866 Q9H444 -128869 Q9H490 -128876 Q9BQN1 -128954 Q2WGN9 -128977 F5H3A8 -128977 Q6P5X5 -128989 Q6ICL3 -129025 B3KS93 -129025 P59817 -129049 Q2NKQ1 -129080 Q96A84 -129138 Q6NXT1 -129285 E1B6W7 -129285 Q6ZMI0 -129293 Q86V40 -129303 Q86TG1 -129401 Q8NFH5 -129446 A4UGR9 -129450 A2RUC4 -129521 Q5H8A3 -129530 Q8N1E2 -129531 Q8WV92 -129563 Q8IYB7 -129607 Q5EBM0 -129642 Q6ZWT7 -129684 Q8WYK1 -129685 Q7Z7C8 -129787 Q96B42 -129804 Q53RD9 -129807 B3KR54 -129807 Q8WWR8 -129831 Q8IUH3 -129852 Q8N5S3 -129868 Q96BQ3 -129880 Q8N3I7 -129881 B4DX81 -129881 Q0VFZ6 -130013 Q8TDX5 -130026 Q8NDH6 -130026 Q96Q33 -130074 A1KXE4 -130075 Q8NGU2 -130106 A0PJX0 -130120 Q6UW15 -130132 Q52LD8 -130162 Q8NHS4 -130271 Q8IVE3 -130340 Q96PC3 -130355 Q3KRA6 -130367 Q8IWX5 -130399 Q8NER5 -130497 Q8TAX0 -130502 Q5I0X7 -130507 Q6ZT12 -130535 Q6PI47 -130540 G5E9S3 -130540 Q8N1B6 -130540 Q96Q35 -130557 Q8N8E2 -130560 Q8NHX4 -130574 Q86Y78 -130576 Q8NI32 -130589 Q53RY1 -130589 Q96C23 -130612 Q66K66 -130617 Q8WV99 -130733 Q8NBL3 -130749 Q8IVL8 -130752 Q5I0G3 -130813 Q96LR7 -130814 Q8N755 -130827 Q6ZP80 -130872 Q719I0 -130888 B3KVQ6 -130888 Q8NEA4 -130916 Q7Z6M4 -130940 F5H839 -130940 Q8NFR7 -130951 Q8TC57 -131034 Q96A23 -131076 Q4VC31 -131096 Q96L42 -131118 C9JBV1 -131118 Q96DA6 -131149 A6NHN0 -131177 Q96BQ1 -131368 Q8TCW7 -131375 Q96KX0 -131377 Q2TBA0 -131405 Q2Q1W2 -131408 G5E9B1 -131408 Q6UXB0 -131450 Q8TD46 -131474 Q8N4Q1 -131540 Q8WVZ1 -131566 Q96PD2 -131578 B3KWI4 -131578 Q8TF66 -131583 Q8N2R8 -131601 Q86W33 -131616 Q69YG0 -131669 E9PE13 -131669 Q68CJ7 -131669 Q96N76 -131831 Q7L0X2 -131870 B4E3B4 -131870 E9PED4 -131870 F5GYJ1 -131870 Q96DE0 -131873 A6NMZ7 -131890 Q8WTQ7 -131920 Q6UWW9 -131965 Q8TCB7 -132001 Q96BW9 -132014 B4DMZ3 -132014 Q8NFR9 -132112 P59025 -132141 Q8N6M8 -132158 Q8IVS8 -132160 B7XGB9 -132160 Q96MI6 -132203 A6NMZ2 -132204 G5E9W4 -132204 Q8TBG9 -132228 Q8N112 -132243 Q8IZA3 -132299 Q56VL3 -132320 Q96NL6 -132321 Q8N1A6 -132332 Q4W5P6 -132612 Q96M93 -132625 Q96MM3 -132660 Q6MZP7 -132660 Q7Z3G2 -132671 Q8TC71 -132720 Q8N8J7 -132724 Q86T26 -132789 Q8TDQ7 -132851 Q8NEY3 -132864 E7EPM3 -132864 F5H160 -132864 F5H659 -132864 Q7Z5Q1 -132884 Q86UK5 -132946 Q6T311 -132949 Q4L235 -132954 Q8N4E4 -132989 Q96KX1 -133015 B4DMN7 -133015 Q8N7B6 -133022 Q8N609 -133060 Q7RTM1 -133121 Q6UWR7 -133308 Q86UD5 -133383 F5H713 -133383 Q8NE22 -133396 B4DNJ2 -133396 Q8NI17 -133418 Q6PCB8 -133482 Q86UG4 -133491 Q569G3 -133522 B3KVW0 -133522 B7ZM40 -133522 Q86YN6 -133558 B3KXY2 -133558 Q4G0Z6 -133558 Q7Z745 -133584 Q63HQ2 -133619 Q96M27 -133686 Q4G0N4 -133688 A8K444 -133688 B7Z3N0 -133688 G5E961 -133688 Q6NUS8 -133688 Q8IYS9 -133690 Q8WWF8 -133746 Q8N9B5 -133874 C9J3I9 -133923 Q6S9Z5 -133957 Q96BQ5 -134083 Q8NGV0 -134111 A1L167 -134121 A4QMS7 -134145 Q6P4H8 -134147 Q96DG6 -134187 Q8N7G0 -134218 Q5F1R6 -134265 Q8TED9 -134266 Q8TAA5 -134285 Q8WVE6 -134288 Q8WUU8 -134353 P83369 -134359 Q8NA72 -134391 Q8TDV0 -134429 Q96DR4 -134430 Q68E02 -134430 Q8NI36 -134492 B2R4V0 -134492 Q8WVJ2 -134510 Q8WVY7 -134526 Q5FWE9 -134526 Q8WYK0 -134548 Q2M3V2 -134549 Q2M3G4 -134553 Q7Z6I8 -134637 Q7Z6V5 -134701 Q5TAB7 -134728 Q5VVH5 -134829 Q5SYC1 -134860 Q96RI9 -134864 Q96RJ0 -134957 Q5T5C0 -135112 B3KXK4 -135112 B7Z2C4 -135112 Q8N3C8 -135112 Q8NI08 -135114 Q9NQE9 -135138 Q96M98 -135152 Q9NPZ5 -135154 Q5VUM1 -135228 Q6YHK3 -135250 A6YF59 -135250 Q8TD07 -135293 Q8IYS1 -135295 Q8WXF0 -135398 Q5SZD1 -135458 Q8NHY5 -135644 Q5SRJ6 -135644 Q6P9F5 -135656 E9PEI6 -135656 Q3MIW9 -135886 Q6UE05 -135892 Q86XT4 -135924 A4D2H9 -135924 Q8NGT5 -135927 Q96L11 -135932 Q8IV31 -135935 O60393 -135941 Q96R47 -135946 O95007 -135948 O95006 -136051 Q8N393 -136227 Q96A83 -136242 A4D1T9 -136242 B7ZMK3 -136259 A4D1N0 -136259 Q8TD94 -136263 A4D1L0 -136263 Q8WWF3 -136288 Q8NEG2 -136306 Q8N434 -136319 P58546 -136319 Q69YG1 -136332 Q96M69 -136371 Q8WXI3 -136541 Q8IYP2 -136647 A4D1W6 -136647 Q8TAP9 -136853 Q8WTU2 -136895 Q8N865 -136991 Q8WWH4 -137075 Q96B33 -137209 Q7Z3I7 -137362 Q8NHS2 -137392 A1XBS5 -137492 Q8NEZ2 -137682 Q330K2 -137695 Q96MH6 -137735 Q8N0Z2 -137797 F1T0L0 -137797 Q6UXB3 -137814 A6NCS4 -137835 Q6P5X7 -137868 Q96LD1 -137872 Q8IWW8 -137886 Q14CS0 -137902 A1KZ92 -137964 Q2TU73 -137964 Q86UL3 -137970 Q6UXZ4 -137994 Q2VYF4 -138009 Q8NA75 -138046 B3KSX3 -138046 B3KT61 -138046 G3V129 -138046 Q86SE5 -138050 Q68CP4 -138050 Q8IVU6 -138065 Q96D59 -138151 Q96BF6 -138162 Q5BN46 -138199 Q8N4J0 -138240 Q5W0N0 -138241 Q96MD7 -138255 Q5VTT2 -138307 Q6JVE9 -138307 Q6ZT51 -138311 Q5VUD6 -138428 Q86Y79 -138429 Q5T9C9 -138474 Q8IZX4 -138639 A2A3K4 -138715 A6NKF2 -138716 Q8N5L8 -138724 A6NLE6 -138724 E9PB26 -138724 Q5VYM1 -138799 Q8NGS8 -138802 Q8NGS7 -138803 Q8NGS6 -138804 Q8NGS5 -138805 Q8NGS4 -138881 Q8NGR8 -138882 Q8NGR9 -138883 Q8NGS0 -139065 B2RCC8 -139065 Q8IW52 -139067 Q5MJ09 -139081 Q3SYA7 -139081 Q8TD91 -139105 B3KXX8 -139105 E9PFY2 -139105 Q4V9S2 -139105 Q8NDZ0 -139135 Q8IV76 -139170 Q5VU92 -139189 Q5KSL6 -139212 Q9NQM4 -139221 Q5H9M0 -139231 B0QYU2 -139231 Q6PEV8 -139285 Q5JTC6 -139322 Q6UXV4 -139324 Q7Z353 -139341 Q8IVP5 -139378 Q8IZF6 -139411 Q96NR3 -139422 Q96LZ2 -139425 A6NGE4 -139562 Q7L8S5 -139596 A8KAF9 -139596 Q96BW1 -139599 Q8TD90 -139604 A2A368 -139628 Q6PJQ5 -139716 E9PB44 -139716 Q8WWW8 -139728 B4E1A6 -139728 Q6P2M8 -139735 A6NM28 -139741 Q8TDG2 -139760 Q8TDV5 -139804 Q8N7X1 -139818 Q5JSL3 -139886 Q56A73 -140032 Q8TD47 -140258 Q8IUC0 -140290 Q8TDR4 -140290 Q9NV44 -140432 Q8IZP6 -140453 Q685J3 -140456 E9PEN1 -140456 Q7Z667 -140456 Q7Z670 -140456 Q8WXH4 -140458 Q5HYF3 -140458 Q8WWX0 -140459 Q9NWX5 -140460 Q9H672 -140461 Q9H765 -140462 Q96DX5 -140462 Q9BVF5 -140465 P14649 -140467 Q9NW07 -140469 B7ZM71 -140469 Q8WXR4 -140545 Q9H0A6 -140564 B2CML4 -140564 Q96AK3 -140576 Q96FQ6 -140578 B4DJB8 -140578 Q9H9P2 -140596 Q8WTQ1 -140597 Q9H3H9 -140606 Q8WWX9 -140609 B2R8K8 -140609 Q8TDX7 -140612 Q8NHY6 -140625 Q8TDY3 -140625 Q96LK1 -140628 D9ZGF7 -140628 Q9BWX5 -140679 Q9H598 -140680 B7ZML9 -140680 Q9NUD7 -140683 Q96DR5 -140685 Q6ZMU8 -140685 Q86UZ6 -140686 Q8IUB2 -140687 F2Z6J8 -140687 Q6ZNI0 -140688 Q96MY1 -140689 Q9NTU7 -140690 Q8NI51 -140691 Q86WT6 -140699 Q0P682 -140699 Q6PF12 -140699 Q9H579 -140700 Q9BYL1 -140701 Q9H3Z7 -140706 Q9NUG4 -140707 Q8WY22 -140710 O94964 -140711 A0PJX2 -140730 A4FU94 -140730 E1P613 -140730 Q9H426 -140732 Q8TC36 -140733 A1Z1Q3 -140735 Q96FJ2 -140738 Q8WXS4 -140739 Q969M7 -140766 Q5T4G1 -140766 Q8WXS8 -140767 Q8IZ57 -140775 Q8TEV9 -140801 Q96L21 -140803 Q9BX84 -140807 B4DEI8 -140807 Q14CN4 -140809 Q9BYN0 -140823 P60602 -140825 Q9BR09 -140831 Q96MP5 -140832 Q9H1F0 -140836 F5H3F6 -140836 Q9H503 -140838 Q8TBE9 -140850 Q9H1M4 -140856 Q9UJQ7 -140862 B1AKI9 -140870 Q9BQY6 -140873 E9PFA0 -140873 Q96LM9 -140876 Q96MK2 -140880 Q9H112 -140881 Q9H1M3 -140883 B3KUN2 -140883 Q86YH2 -140885 B2R6C3 -140885 P78324 -140886 Q96DU9 -140890 B3KRJ9 -140890 Q8WXA9 -140893 Q8NC74 -140894 Q14C79 -140894 Q96M20 -140901 Q8TDR2 -140902 Q9H3Y0 -140947 Q8TF63 -142678 B3KXY1 -142678 B4DZ57 -142678 E9PGU1 -142678 E9PHQ1 -142678 F8WA73 -142678 Q96AX9 -142679 Q8WTR2 -142680 Q8N130 -142683 Q8WWU7 -142684 Q8WXH6 -142685 Q8WXK1 -142686 A6NK59 -142686 C9JX97 -142689 Q8N8F5 -142689 Q8WXK4 -142827 Q6P461 -142891 Q96LT4 -142910 Q5W064 -142940 Q8WWH5 -143098 B3KQ45 -143098 Q5T2T1 -143162 Q68DX3 -143187 Q5W0D7 -143187 Q96AJ9 -143241 Q8WWB3 -143244 Q6IS14 -143279 B3KV18 -143279 Q5U5R9 -143279 Q5VZ98 -143279 Q8N1X7 -143282 Q8TAT2 -143379 Q8WW14 -143384 Q86Y37 -143425 Q86SS6 -143458 Q86YD5 -143471 Q8TAA3 -143496 Q8NGK2 -143501 Q8WZ69 -143502 Q8NH67 -143503 Q8TCB6 -143570 Q6P2D8 -143570 Q8TEH2 -143630 Q8IYU4 -143662 E9PII6 -143662 F8W945 -143662 Q8N387 -143678 C9JXX5 -143684 Q5HYJ3 -143686 P58005 -143689 Q7Z3Z4 -143872 A6NI28 -143879 A8K1K0 -143879 Q8NAB2 -143884 Q2TBE0 -143888 Q7Z4H8 -143903 Q6UX15 -143941 A6NLP5 -144097 Q9BUA3 -144100 Q6IQ23 -144108 Q68D10 -144110 Q8N2M4 -144124 Q9H207 -144125 Q9H205 -144132 B0I1S4 -144132 Q96M86 -144165 B3KVG3 -144165 B3KVG6 -144165 Q96MT3 -144193 B3KVC5 -144193 Q96NU7 -144195 Q8TDB8 -144233 Q7Z5W3 -144245 Q5I7T1 -144321 Q4G1C9 -144347 Q6ZTI6 -144348 Q8N3J9 -144363 Q6IPR1 -144402 Q86VY2 -144402 Q86YQ8 -144404 A0PK00 -144406 Q8TBY9 -144423 Q96MS3 -144448 P0C672 -144453 B5MDI8 -144453 Q8N1M1 -144455 Q96AV8 -144501 Q6KB66 -144568 B3KVV6 -144577 Q96MD2 -144608 Q5U649 -144699 Q8N1E6 -144715 Q6WBX8 -144717 Q8N4B1 -144809 Q8N7L0 -144811 Q7Z395 -144811 Q8IV20 -144983 Q32P51 -145173 Q6Y288 -145226 Q96NR8 -145258 P56915 -145264 Q8IW75 -145270 Q86XR5 -145282 A8K735 -145282 Q4G0U7 -145282 Q8TD10 -145376 Q96LQ0 -145389 Q8IZM9 -145407 Q86TY3 -145447 Q7Z5M8 -145482 Q8N8N7 -145483 B7Z882 -145483 Q96MY7 -145497 Q0VAA2 -145501 Q6H9L7 -145508 Q6ZU80 -145508 Q86TS1 -145553 Q86V88 -145567 Q6PIF1 -145567 Q86TV6 -145581 Q96NI6 -145645 Q8NHR7 -145741 Q8NCU7 -145748 B3KWE4 -145748 Q5XG99 -145773 Q8TBF8 -145781 P0CAP1 -145781 P0CAP2 -145814 A6NFU8 -145853 A6NNL5 -145858 Q32M92 -145864 Q96S86 -145873 Q0VG99 -145942 Q8N6Q1 -145946 Q6RVD6 -145957 Q8WWG1 -146050 Q05BJ4 -146050 Q8IWY8 -146050 Q96AG1 -146057 Q6IQ55 -146057 Q8IWY7 -146059 Q8IWY9 -146167 A6NNN8 -146177 A6NCI4 -146183 A2VDI0 -146183 B3KWU3 -146183 E9PF51 -146183 Q05BM7 -146183 Q7RTW8 -146198 Q8TF47 -146206 Q6F5E8 -146212 Q17RG1 -146223 Q8IZR5 -146225 Q5I2A4 -146225 Q8TAZ6 -146227 Q3B7T3 -146279 Q96M29 -146310 Q2KHN1 -146325 P0CG20 -146330 Q8N461 -146378 Q96LL3 -146395 B3KY67 -146395 Q6UXU4 -146433 Q6ZMJ4 -146434 Q96LX8 -146439 A1A5D9 -146456 Q8WW62 -146540 A8K8V0 -146542 A8MV39 -146542 P0C7X2 -146547 Q5K4E3 -146556 Q6UX73 -146562 Q8IYS4 -146664 Q3V5L5 -146691 Q6ZVM7 -146705 Q96N21 -146712 Q67FW5 -146713 A6NFN3 -146722 Q8TDQ1 -146723 Q96MU5 -146754 Q9P225 -146760 Q86UN2 -146779 Q8N7B9 -146802 Q86VL8 -146822 Q96T59 -146845 Q8N1V2 -146849 Q96M95 -146850 Q5UE93 -146852 Q2M2E3 -146853 Q8WW18 -146857 Q68D06 -146861 Q8N808 -146862 Q8IWX7 -146894 B4DNY5 -146894 F5H7P9 -146894 F8W9M3 -146894 Q6UXG3 -146923 Q96C34 -146956 Q96AY2 -147007 Q8N511 -147011 Q8NCQ7 -147015 Q6UX07 -147040 Q693B1 -147111 Q6P988 -147138 B3KXZ8 -147138 Q8IU68 -147166 Q309B1 -147179 Q8TF74 -147183 Q6ZPD6 -147183 Q7Z3Z0 -147184 Q8N816 -147199 Q8TD33 -147323 P59095 -147339 Q96B23 -147372 Q6UXH8 -147381 Q8IUK8 -147407 Q3SY17 -147409 Q86SJ6 -147463 Q8N6D5 -147495 Q8J025 -147645 Q86VR7 -147657 Q7Z2X8 -147657 Q8WV37 -147658 Q76KX8 -147660 G3V4F6 -147660 Q3MI94 -147660 Q96N58 -147664 B6SEH8 -147685 Q8NEA5 -147686 Q8TF45 -147687 Q8TAU3 -147694 Q8NEK5 -147699 Q8N819 -147700 Q6P597 -147710 A1L1A6 -147719 A8K8E0 -147719 Q6UWN0 -147741 Q96MR9 -147744 Q8WZ59 -147746 Q8NE63 -147798 Q7Z404 -147807 Q96C55 -147808 Q8NCA9 -147837 Q8TA94 -147841 Q8NBT2 -147872 Q8N6L0 -147906 Q96B18 -147912 Q8N196 -147920 Q6UWQ7 -147923 Q8TAQ5 -147929 Q8N9K5 -147945 B2RCA1 -147945 Q96MN2 -147948 Q96NG8 -147949 Q96ND8 -147965 Q17RN3 -147968 Q6ZSI9 -147991 Q6ZPD9 -148003 A8MUM7 -148014 Q8N6N2 -148022 Q8IUC6 -148066 Q8WWF5 -148103 Q96NL3 -148109 Q17R55 -148113 Q8IUL8 -148137 Q2NL68 -148156 Q96NG5 -148170 Q6NZY7 -148198 A6NK75 -148206 Q96N38 -148213 Q96N22 -148223 Q9UFG5 -148229 O60423 -148229 Q6ZUX8 -148229 Q7Z485 -148252 O95057 -148254 Q8NEP9 -148266 Q5MCW4 -148268 Q96NI8 -148281 Q5T7P8 -148304 Q96LT6 -148327 Q8TEY5 -148345 B7ZLG7 -148362 Q5VW32 -148398 Q96NU1 -148418 D3DT11 -148418 Q5VXD3 -148423 Q8N6N3 -148479 Q86YI8 -148523 Q8N365 -148534 Q96MV1 -148545 B7ZAX3 -148545 Q96M43 -148581 Q5VVX9 -148641 Q8IY50 -148738 A8K466 -148738 Q6ZVN8 -148741 Q8N283 -148753 A8K8R7 -148753 Q96GL9 -148789 Q8NCR0 -148808 Q8N468 -148808 Q96KX6 -148811 Q6GTS8 -148823 Q5JQS6 -148867 Q8NEW0 -148870 Q2M243 -148930 A6PVL3 -148932 Q70IA8 -148979 Q8NBF1 -149018 Q5T871 -149041 Q5TC82 -149069 A2VCK2 -149076 Q5T0B9 -149095 B4DXA0 -149095 B4DXB8 -149095 B4DXE3 -149095 E9PHV3 -149095 Q5T197 -149111 Q8TBE1 -149175 Q5VSG8 -149233 Q5VWK5 -149281 Q5VVY1 -149297 Q5VT40 -149345 Q96DD7 -149371 Q8IYI6 -149420 Q8N165 -149428 Q7Z465 -149461 B7Z5I2 -149461 F5H5P9 -149461 Q8N6F1 -149465 Q96MR6 -149466 Q8IVY1 -149473 Q8N4L8 -149478 C9JJ37 -149483 Q96LX7 -149499 A8K8H7 -149499 Q8N4P6 -149563 Q8NEQ6 -149603 Q5TA31 -149628 Q6K0P9 -149643 Q537H7 -149647 B2RCB4 -149647 B3KQ44 -149647 B4DXH7 -149647 Q8IYT1 -149685 Q0VDE8 -149699 Q5JWH5 -149699 Q9H1H1 -149708 Q8TCV5 -149840 Q8IYI0 -149951 Q86VX2 -149954 P59827 -149986 Q9BX40 -149998 Q5D1Q2 -149998 Q6XZB0 -150082 O95447 -150084 Q9NSI5 -150094 P57059 -150159 Q4ZJI4 -150160 Q96SF2 -150165 Q5GH77 -150209 B7Z376 -150209 Q96NN9 -150223 A8MPS7 -150248 Q8WYQ4 -150274 Q8IWL3 -150275 Q8IWD4 -150280 Q8N7B1 -150290 Q8NEJ0 -150297 Q6IC83 -150350 Q8IYW4 -150353 Q7Z6W7 -150356 Q6NUI6 -150365 Q4G0I1 -150365 Q5TIA1 -150368 Q6ICB4 -150372 Q8NET5 -150379 Q7Z6Z6 -150383 Q6NVV7 -150465 Q8NG68 -150468 Q8IYA6 -150472 Q8IUF1 -150483 Q8WW24 -150572 Q5HYE8 -150572 Q8NB12 -150590 Q8WU43 -150677 Q8NHW6 -150678 Q8WXC6 -150681 Q8NGW1 -150684 Q8N668 -150696 B2R879 -150696 Q8N271 -150709 Q70AK8 -150709 Q7Z5J8 -150726 G3V0Z7 -150726 Q2M1V8 -150726 Q8TF61 -150737 Q8N4P2 -150763 Q6NUI2 -150771 F5H1L8 -150771 Q6GPH6 -150786 Q53S08 -150864 Q6P1L5 -150864 Q7Z3M2 -150921 Q7RTU1 -150946 B7WNK9 -150946 Q75VX8 -150962 Q3MIT2 -151011 Q9P0V9 -151050 A0AUZ9 -151056 B2RWP8 -151056 Q6P1J6 -151112 Q8NEG5 -151126 Q569K4 -151188 B3KMZ5 -151188 Q8N6S5 -151194 Q8WXB1 -151195 Q8N7R7 -151230 Q8NBE8 -151242 Q8WVI7 -151246 B7Z7S9 -151246 Q562F6 -151254 C9IZH7 -151254 E9PGG4 -151254 Q53TS8 -151258 Q08AI6 -151278 Q96MF4 -151295 B7Z508 -151295 B7Z512 -151295 Q6PIS1 -151306 B3KV35 -151306 Q8TDU6 -151313 Q6P2I3 -151354 Q96KN4 -151393 Q96LZ7 -151449 Q75RY1 -151449 Q7Z4P5 -151473 Q7RTX9 -151516 Q53RT3 -151525 D3DPA6 -151525 Q8N9V3 -151531 O95045 -151556 Q7Z3F1 -151613 G5E9X0 -151613 Q69YS0 -151613 Q86TA5 -151613 Q96N46 -151636 Q8TDB6 -151647 Q96LR4 -151648 B5BUA4 -151648 Q5FBB7 -151649 A8MPX8 -151651 Q8N7U6 -151742 Q5SGD2 -151790 Q8IV35 -151827 B4DEJ7 -151827 B4DHF2 -151827 E9PBH2 -151827 G5E9T7 -151827 Q8IZ02 -151835 Q8IYJ1 -151871 Q7Z7J5 -151887 Q76M96 -151888 Q7Z6A9 -151903 Q8WUD4 -151963 Q8IYB1 -151987 Q9NY27 -152002 Q8NBI6 -152006 Q9H0F5 -152007 Q9H4G4 -152015 Q9BZX4 -152065 Q8N5N4 -152078 A1A4F0 -152078 C9JP04 -152078 C9JXB5 -152098 Q504Y3 -152100 Q7Z7K0 -152110 Q6ZWH5 -152110 Q8N774 -152118 P0CE67 -152137 Q8IVM0 -152138 Q56P42 -152185 Q8N0Z3 -152189 Q8IZV2 -152206 Q8IYE1 -152206 Q96LI1 -152273 Q6ZNL6 -152330 Q8IWV2 -152404 Q5DX21 -152405 Q96M34 -152485 Q17R98 -152503 Q5HYK7 -152518 Q6ZNB6 -152518 Q8J028 -152519 Q6NVV3 -152559 Q6TCH7 -152573 A0PJX4 -152579 Q8WU76 -152586 D6RCD3 -152687 Q7Z3I0 -152756 Q96MZ4 -152789 Q96N16 -152815 Q5JPC6 -152815 Q8TBB0 -152816 B4DTI3 -152816 E7ETQ0 -152816 Q17RF5 -152831 B4DYH5 -152831 Q86Z14 -152877 Q6NSI3 -152926 Q8N3J5 -152940 Q96LM5 -152992 Q8IYL2 -153020 Q0VAM2 -153090 G3XA90 -153090 Q5VWQ8 -153129 Q8NBW4 -153201 Q495M3 -153218 Q1W4C9 -153222 Q8IUR6 -153241 B4DLH5 -153241 Q8N960 -153328 Q6ZT89 -153339 Q8TBQ9 -153364 B3KY36 -153364 Q68D91 -153396 Q8NDZ6 -153443 Q8NEF9 -153478 Q96PX9 -153527 Q96NC0 -153562 Q8N4S9 -153571 Q86SI9 -153572 Q9BZI1 -153579 Q6UXG8 -153579 Q8N324 -153642 Q6UWY0 -153643 Q96LP2 -153657 Q6PF05 -153733 Q8NEF3 -153745 Q8TC56 -153768 G5EA01 -153768 Q8N945 -153769 Q08AM8 -153769 Q8TEC5 -153770 A1L4L8 -153830 A8K9Y9 -153830 B7Z903 -153830 B7Z949 -153830 E7EVI7 -153830 Q8NDT8 -153830 Q96MT1 -153918 Q5TFG8 -154007 Q6IEG0 -154043 Q6P9H4 -154064 Q5VY80 -154075 Q8N6K7 -154091 Q8TD20 -154141 Q6ZNC8 -154150 Q5TGJ6 -154197 Q8NA58 -154214 Q8TC41 -154215 Q5VXU1 -154288 Q587J8 -154313 Q8IYR0 -154313 Q8N771 -154386 Q96MT4 -154467 Q9P0B6 -154661 B4DFD0 -154661 E9PBR4 -154661 Q96NL0 -154664 Q86UQ4 -154743 Q1RMZ1 -154790 P0C7M8 -154791 Q96HJ9 -154796 Q4VCS5 -154807 Q8N0U8 -154810 Q8IY63 -154865 Q8NA54 -154872 A4D0Y5 -154881 Q96MP8 -154907 A4D0T2 -155006 A2RRL7 -155038 Q8ND71 -155051 Q8WXF5 -155054 Q6IV72 -155061 Q6NUN9 -155066 E9PAS2 -155066 Q8NHE4 -155184 Q6PXP3 -155185 A4D202 -155185 Q400G9 -155368 Q8N6F8 -155382 Q86XT2 -155435 Q96EV2 -155465 Q8TD06 -157285 Q86YV5 -157310 Q96S96 -157313 Q69YH5 -157378 Q6PI78 -157506 Q8IZV5 -157567 Q86W74 -157570 Q56NI9 -157574 Q8IX29 -157638 Q96KN1 -157657 F4Y588 -157657 Q96NL8 -157680 Q7Z7G8 -157695 Q86YL5 -157697 Q86X53 -157724 Q8TCU3 -157753 Q96NL1 -157769 B6YY23 -157769 Q658Y4 -157773 Q96LL4 -157777 B4DXX4 -157777 Q4G0Z9 -157807 Q8IUQ0 -157848 A6NJ46 -157855 A8MYU2 -157869 Q8IVN8 -157922 Q5T5Y3 -157983 Q5T8R8 -158038 Q7L985 -158046 Q5VZ03 -158055 Q8N9P6 -158055 Q96NJ1 -158056 Q6UXC1 -158062 P62502 -158067 Q96MA6 -158131 Q15612 -158135 F8W6M1 -158135 Q6ZUZ3 -158135 Q8NHH1 -158158 Q8IZ41 -158219 A5PLN1 -158219 B4DQ10 -158219 B4DQX4 -158219 B4DW93 -158219 E9PAQ9 -158219 E9PC88 -158219 E9PE60 -158219 F5H705 -158219 Q5VTQ0 -158219 Q8IXZ6 -158234 Q6PF06 -158248 Q8NEE8 -158293 Q5T036 -158297 Q8IYX7 -158326 B7ZBX4 -158326 Q5H8C1 -158358 Q5HYC2 -158399 A7MD06 -158399 Q8NAE1 -158399 Q8TF39 -158401 A2A2V3 -158401 Q5VXU9 -158401 Q6ZU10 -158405 Q8N8K9 -158427 Q5T7W7 -158431 Q6ZMW2 -158471 B3KYC4 -158471 Q8WUY3 -158506 E3SBK4 -158506 Q8N7E2 -158511 Q6PB30 -158521 Q8N0W7 -158584 B2C6G4 -158584 Q6GMR7 -158586 P98169 -158724 Q5JRC9 -158747 Q8NHP6 -158763 Q6ZRI8 -158787 Q8N443 -158798 A6NNZ0 -158798 Q86UN6 -158800 Q8NHV9 -158809 Q8N7X4 -158830 A6NEN9 -158833 Q58HT5 -158835 Q6E213 -158866 B3KVG7 -158866 B3KY34 -158866 Q96MV8 -158880 Q70EK9 -158931 Q6IPX3 -158983 Q7Z2G1 -159013 Q8TB03 -159090 B4DN12 -159090 G1UD80 -159090 Q7Z309 -159091 B3KQY3 -159091 F5H036 -159091 Q6P187 -159091 Q6P4D5 -159119 Q96LI6 -159163 Q15415 -159195 Q70EL1 -159296 Q8TAU0 -159371 Q2M3R5 -159686 Q5T655 -159963 Q1EHB4 -159989 Q05D60 -160065 Q8WXA2 -160140 Q8NCR3 -160287 Q6ZMR3 -160298 Q8N5U0 -160335 Q8N394 -160364 Q5QGZ9 -160365 Q8IZS7 -160418 A8K321 -160418 Q6ZXV5 -160419 Q8NA57 -160428 B4DTU7 -160428 Q3SY69 -160492 Q8N9Z9 -160518 Q6ZUT9 -160622 Q7Z6J2 -160728 Q8N695 -160760 Q8NI37 -160762 Q8NA47 -160777 Q8IWA6 -160851 A8K0I1 -160851 B4DYW1 -160851 B4DZ34 -160851 Q86XP1 -160857 Q5T0U0 -160897 Q86V85 -161003 B4E285 -161003 Q8TAV4 -161142 Q8N9W8 -161145 Q8NBD8 -161176 Q6ZMZ3 -161198 Q86T13 -161247 A5D6W6 -161253 Q8IYK8 -161291 Q3MIR4 -161357 F6W3S7 -161357 Q7Z553 -161394 Q9P1V8 -161424 Q86U38 -161436 Q05BV3 -161497 Q7RTU9 -161502 Q6P656 -161514 Q8IYX1 -161582 Q8WXU2 -161725 Q8TE49 -161742 Q7Z699 -161753 Q8IXM7 -161779 Q96DM1 -161823 B4DQM8 -161823 Q6DHV7 -161829 Q8NHP7 -161835 Q8NA03 -161882 Q8IX07 -161931 Q8NCV1 -162073 Q3MIP1 -162083 Q7Z2V1 -162239 Q6P2D0 -162282 Q8N957 -162333 B3KVK0 -162333 Q8NA82 -162387 Q8IWD5 -162394 Q08AF3 -162417 Q8N159 -162427 Q86VR2 -162461 Q6UXU6 -162466 E9PAM0 -162466 Q8TCT1 -162494 P58872 -162494 Q495Y4 -162514 Q8NET8 -162515 Q8NCK7 -162517 Q8N4B4 -162540 F8WEP6 -162540 Q8IUH8 -162605 Q7Z3Y7 -162655 Q8TB69 -162681 Q8IYD9 -162699 Q8NG57 -162962 Q6ZNA1 -162963 Q8N9Z0 -162966 Q6ZNG1 -162967 A2RRD8 -162967 Q6ZP55 -162968 Q6ZNH5 -162972 Q7Z398 -162979 Q8WUU4 -162989 Q8WXF8 -162993 Q147U1 -162998 Q96RA2 -163033 Q8NAF0 -163049 Q3KP31 -163050 Q8TBZ8 -163051 A8K4E6 -163051 Q8N972 -163059 Q8N7K0 -163071 Q8NC26 -163081 Q8N184 -163087 Q8NA42 -163115 Q8N8C0 -163126 Q8N6I1 -163131 Q9Y6R6 -163154 E9PB31 -163154 Q8IZ63 -163175 A5D6Y5 -163175 Q8N135 -163183 Q8N205 -163223 Q8N7Q3 -163227 Q8IYN0 -163255 Q8NDQ6 -163259 Q68D51 -163351 Q6ZN66 -163404 Q32ZL2 -163479 E9PAZ5 -163479 Q5VTL7 -163486 Q6P3S1 -163589 Q8NAT2 -163590 Q05BU2 -163590 Q8NFQ8 -163590 Q9H496 -163688 Q8TD86 -163702 Q8IU57 -163702 Q8IV66 -163732 Q96RK1 -163747 Q3ZCV2 -163778 Q96PI1 -163782 Q5T7N3 -163786 Q6UVJ0 -163859 Q6IQ49 -163882 Q6PJW8 -163933 Q6ZT52 -164022 Q9Y536 -164045 A2PYH4 -164091 Q86WK9 -164118 A2A3L6 -164127 Q8N715 -164153 Q8N7F7 -164237 Q8IUB5 -164284 Q8NCL9 -164312 Q8WUT4 -164395 Q3SXZ7 -164592 Q8IYX3 -164633 Q86V35 -164656 Q8IU80 -164668 B7TQM3 -164668 B7TQM5 -164668 B7TQM9 -164668 E9PF38 -164668 Q6NTF7 -164684 Q6ICG8 -164781 Q8N136 -164832 Q1L5Z9 -165055 Q96M89 -165082 B4DF15 -165082 E9PEV1 -165082 Q8IZF5 -165100 Q53QW1 -165140 Q8TDS5 -165186 Q6ZUX3 -165215 Q6P995 -165257 Q7Z5L3 -165324 P68543 -165530 Q8N1N0 -165545 Q8TE96 -165631 Q460N3 -165679 Q6ZWB5 -165679 Q8NFR3 -165721 B3KWV7 -165721 Q8NHS0 -165829 B7ZL66 -165829 E9PFZ4 -165829 Q8NFN8 -165904 Q702N8 -165918 Q8IYW5 -166012 Q8NET6 -166336 Q7Z3G6 -166348 Q3ZCT8 -166378 Q8NB90 -166379 Q6ZW61 -166614 Q8N568 -166647 Q8IWK6 -166655 Q495X7 -166752 P0C091 -166785 Q8IVH4 -166793 A8K936 -166793 Q32ML0 -166793 Q6ZSB9 -166815 B3KNK0 -166815 Q4W5G0 -166824 Q6ZTQ3 -166863 B3KWU8 -166863 Q8TBY0 -166929 Q8NHU3 -166968 Q7Z3K6 -166979 Q86Y33 -167127 B4DUQ7 -167127 E9PFK7 -167127 Q3SY77 -167153 Q6PIY7 -167227 Q8IU60 -167359 Q8IY84 -167410 Q8N485 -167465 Q5HYI9 -167465 Q8N895 -167555 Q6UXP7 -167681 Q8N3Z0 -167691 Q86VQ0 -167826 Q7RTU3 -167838 Q8N3L3 -168002 Q5SW24 -168090 Q5T5N4 -168374 Q03936 -168391 Q7Z4T8 -168400 Q86TM3 -168417 Q8IYX0 -168433 Q8WVZ7 -168451 Q7Z6K1 -168455 Q8N9Z2 -168507 Q8TDX9 -168537 Q8NHV1 -168544 Q7Z7K2 -168620 Q7RTS1 -168667 Q8N8U9 -168850 Q2TB10 -168850 Q49A13 -168850 Q4G0T8 -168975 Q8NA66 -169026 Q8IWU4 -169044 Q8NFW1 -169166 Q8N9S9 -169200 B4DUC0 -169200 F5GXM4 -169200 Q6YI46 -169270 Q8TC21 -169355 F5H5G0 -169355 Q6ZQW0 -169436 Q8NE28 -169522 Q8TDN2 -169611 Q68BL7 -169693 Q8N6L7 -169714 Q6ZRP7 -169792 Q1PHJ8 -169792 Q8NEA6 -169834 P0CG24 -169841 Q14929 -169966 B2R9Q6 -169966 Q8NEK8 -169981 Q5JUX0 -170062 Q8NA70 -170063 Q6ZTR5 -170067 P0C7V6 -170082 Q8N8B7 -170261 Q6PEW1 -170302 Q96QS3 -170370 A6NMN3 -170371 Q5T292 -170384 Q495W5 -170392 Q8WWZ8 -170393 Q5T1B1 -170394 Q6NUJ5 -170463 Q9BWG4 -170463 Q9BWW5 -170482 Q8WTT0 -170487 Q5JWF8 -170506 Q9H2U1 -170572 Q8WXA8 -170575 Q8WWP7 -170589 Q96T91 -170591 Q8WXG8 -170622 Q7Z4G1 -170626 Q8WTP9 -170627 Q3SY49 -170627 Q8WWM1 -170679 D2IYL0 -170679 Q9UIG5 -170680 Q9UIG4 -170685 Q8NFP7 -170689 Q8TE58 -170690 Q2XQZ0 -170690 Q8TE57 -170691 Q8TE56 -170692 Q2VYF7 -170692 Q6ZN25 -170692 Q8TE60 -170712 Q8TF08 -170825 B2LYG3 -170825 Q9BZM3 -170850 Q8TAE7 -170954 Q6NYC8 -170959 Q8TF32 -170960 D9N162 -170961 Q8TF21 -171017 Q8TF68 -171019 Q8TE59 -171023 Q498B9 -171023 Q8IXJ9 -171024 Q9UMS6 -171169 Q8TDM5 -171177 Q96L33 -171389 P59044 -171392 Q8TD23 -171425 Q8N0X4 -171482 Q8IZU1 -171483 Q8IZU0 -171483 Q8N7Z8 -171484 Q8IZT9 -171489 Q8TAD1 -171490 Q9NS25 -171546 Q969W0 -171558 Q6ISU1 -171558 Q6ZNR1 -171568 Q6ZPA8 -171568 Q9Y535 -171586 Q8WU67 -191585 Q8WY50 -192111 A9LN06 -192111 Q96HS1 -192134 A8K9Q8 -192134 Q6ZMB0 -192286 Q9BW72 -192666 Q2M2I5 -192668 Q717R9 -192669 B1ALI0 -192669 B4E1P5 -192669 Q9H9G7 -192670 A7MD27 -192670 Q9HCK5 -192683 Q8TAC9 -195814 B3KT84 -195814 Q8N3Y7 -195827 Q7RTV5 -195828 Q7RTV3 -196051 Q5VZY2 -196074 A6NJ78 -196264 A8K025 -196264 Q6UWV2 -196294 Q96LU5 -196335 Q8NH76 -196374 Q8N1N4 -196383 Q969X0 -196385 B0I1S1 -196385 Q8IVF4 -196394 Q8IY45 -196403 Q53ZZ2 -196403 Q8N9I9 -196410 Q6UX53 -196415 C9JDV5 -196441 O60293 -196446 F5GYH9 -196463 F5H5E2 -196463 Q8NHP8 -196472 Q8NEG0 -196477 Q8TC90 -196483 Q96G04 -196500 A8K0T3 -196500 Q8IYJ0 -196513 Q8IZD4 -196527 B3KX12 -196527 B4DZA5 -196527 B9EGG0 -196527 E9PB30 -196527 E9PCT2 -196527 Q4KMQ2 -196528 Q68CP9 -196541 Q5VZV1 -196740 Q8IW00 -196743 Q6QHF9 -196792 Q8N5W8 -196883 Q86TZ7 -196883 Q8NFM4 -196913 Q8WXQ3 -196951 Q96M60 -196993 P0C5K7 -196996 Q8IUY3 -197021 B3KQY0 -197021 Q6UWM7 -197131 Q8IWV7 -197135 C9JE40 -197257 Q86WU2 -197258 Q8N0W3 -197259 Q8NB16 -197320 Q96MU6 -197322 Q4G176 -197335 Q96KV7 -197342 A4GXA9 -197350 P0CB46 -197358 C3VPR7 -197358 Q7RTR2 -197370 Q8WV22 -197407 Q96MX3 -198437 Q8TD35 -199221 Q8IYY4 -199223 Q8NDW8 -199675 Q8IX19 -199692 Q7L945 -199699 Q8N907 -199704 Q6P3V2 -199713 Q8WX94 -199720 Q86UU5 -199731 Q8NFZ8 -199745 Q8NA92 -199746 Q8WU68 -199777 Q68DY1 -199777 Q96QM1 -199786 Q86XR2 -199800 C9JUS6 -199834 Q5TA78 -199857 Q96F25 -199870 B4DWT3 -199870 Q8TAV0 -199920 Q5VWT5 -199953 Q5SNT2 -199964 Q8N0U2 -199974 Q86W10 -199990 Q6NZ36 -199990 Q6ZRT9 -200008 Q5VXM1 -200010 E9PAK4 -200010 Q2M3M2 -200014 Q5T0F9 -200030 Q86T75 -200035 P0C025 -200081 P40222 -200132 Q8N7M0 -200150 Q8N7P1 -200159 Q5SVJ3 -200162 Q6Q759 -200172 Q499Z3 -200185 Q8N6L1 -200186 Q53ET0 -200205 Q5T440 -200232 Q5JX71 -200312 Q9Y6U7 -200315 P31941 -200316 Q6ICH3 -200316 Q8IUX4 -200316 Q9HC16 -200350 B3KVK3 -200350 Q9NU39 -200373 Q4G0U5 -200403 Q502W6 -200407 Q8IUH2 -200424 O43151 -200504 Q86XP6 -200523 Q96LM6 -200539 Q86SG2 -200558 Q8IW19 -200576 Q08AR7 -200576 Q9Y2I7 -200634 Q53RY4 -200728 Q86X19 -200734 B3KPL5 -200734 E9PEP0 -200734 Q7Z698 -200765 Q96MW7 -200810 Q6GMV1 -200844 Q6ZVT6 -200845 Q8NC69 -200879 Q8WWY8 -200894 G3V1S8 -200894 Q3SXY8 -200894 Q8TCL5 -200895 Q86XF0 -200909 F6WC43 -200909 Q70Z44 -200916 Q6P5R6 -200931 Q86UW1 -200933 P0C2W1 -200942 Q8IXV7 -200942 Q96DZ8 -200958 E9PH32 -200958 Q8N307 -200959 A8MPY1 -201134 A2RRR7 -201134 B4DR29 -201134 Q8N8E3 -201140 A6NNS2 -201140 B9EJH3 -201158 Q96ET8 -201161 Q7Z7K6 -201163 Q8NFG4 -201164 Q8N2A8 -201176 Q6ZUM4 -201176 Q8N2Y9 -201191 Q8IZD0 -201229 A8MSI8 -201232 Q7RTY0 -201243 Q0P670 -201254 A8MT69 -201255 Q96CN5 -201266 Q8N1S5 -201292 Q6PJ69 -201292 Q96DX1 -201294 Q70J99 -201299 A8MY68 -201299 Q8NG50 -201305 Q6ZMD2 -201456 B3KST3 -201456 Q8NCQ5 -201475 Q6IQ22 -201501 A1YPR0 -201501 B2RG49 -201514 Q8IVC4 -201516 Q8NAM6 -201562 Q6Y1H2 -201595 Q8TCJ2 -201625 Q6ZR08 -201626 Q6L8Q7 -201627 Q8IWF6 -201633 Q495A1 -201725 Q504U0 -201780 Q96EP9 -201798 Q8IY51 -201799 Q6P9G4 -201895 Q96QK8 -201931 Q8IY95 -201965 Q6NW29 -201973 Q96LW4 -202018 Q6NXT6 -202051 Q86W54 -202052 Q9H819 -202134 P0C7A2 -202151 B7Z866 -202151 E9PGP9 -202151 Q86VV4 -202243 Q86Z20 -202309 Q8N292 -202333 Q8N3K9 -202374 Q8WU08 -202500 Q5JU00 -202559 Q5VWX1 -202658 A6ZJ12 -202865 Q8WU49 -202915 Q6ZMB5 -203054 B3KS46 -203054 Q3MIX3 -203062 Q96NA8 -203068 P07437 -203068 Q5SU16 -203069 Q9Y3T6 -203074 E5RJX5 -203074 Q6UWB4 -203076 Q6P047 -203100 P83105 -203102 Q8TC27 -203111 G3V1K4 -203111 Q6P6B1 -203190 Q8N145 -203197 Q5VZI3 -203228 Q96LT7 -203228 Q9NUW0 -203238 Q6TFL3 -203245 Q69YI7 -203259 Q8IW50 -203260 F8W8S5 -203260 Q8WV48 -203286 B3KXP1 -203286 Q68DC2 -203328 Q96L08 -203413 Q5H943 -203427 Q8WUT9 -203430 Q8N8U3 -203447 Q7Z2Y5 -203522 Q5JSJ4 -203523 Q6P9G9 -203523 Q7Z3P1 -203547 Q3ZAQ7 -203562 Q5JXX7 -203569 Q7Z2X7 -203611 Q9Y6F7 -203859 Q75V66 -204219 Q8IU89 -204474 Q8N807 -204801 P59045 -204851 B4DZ33 -204851 Q86Z02 -204962 Q8NCS7 -205147 Q8N944 -205327 Q8N8R5 -205428 B3KTD4 -205428 B7Z1W3 -205428 Q8NDZ4 -205564 Q96HI0 -205717 Q68DE3 -205860 Q8N7C3 -206338 Q0P5U8 -206338 Q6Q4G3 -206358 Q1LZ56 -206358 Q7Z2H8 -206412 Q5TEZ5 -207063 Q8N5I4 -219285 Q8IVG5 -219287 Q8N7J2 -219293 Q5T2N8 -219333 O75317 -219348 Q5JTB6 -219402 Q9H2K0 -219409 Q9H4S2 -219417 Q8NH10 -219428 Q8NGL9 -219429 Q6IEV9 -219431 Q8NH73 -219432 Q8NH72 -219436 Q8NGL3 -219437 Q8NGL2 -219438 Q8NGL1 -219447 Q8N127 -219453 Q8NH50 -219464 Q8NGG2 -219469 Q8NGG4 -219473 Q8NH51 -219477 Q8NGP2 -219479 Q8NH85 -219482 Q8NGP4 -219484 Q8NGP6 -219487 Q96RB7 -219493 Q8NGP9 -219527 Q6ZSA7 -219537 E9PPJ3 -219539 Q96NS1 -219541 A0JLT2 -219557 Q8TBZ9 -219578 A4D1E1 -219595 Q9HBA9 -219621 Q8IVU9 -219623 Q6ZUK4 -219654 Q8N2G6 -219670 Q8TC29 -219681 Q5W041 -219699 Q8IZJ1 -219736 C9JRL1 -219736 Q6ZVD7 -219738 Q96D05 -219743 Q2T9J0 -219749 P17030 -219770 Q96KN9 -219771 Q8ND76 -219790 Q8IZC4 -219793 Q96M53 -219833 Q8TAV5 -219844 Q96M11 -219854 A2RU14 -219855 Q8TED4 -219858 Q8NGG6 -219865 B2RND3 -219865 Q8NG78 -219869 Q8NGN5 -219870 Q8NGN4 -219873 Q8NGN2 -219874 Q8NGN1 -219875 Q8NGN0 -219899 B2R8D2 -219899 Q5QJ74 -219902 A8K0W5 -219902 Q6ZRR5 -219927 C9JPR2 -219927 Q7Z2W9 -219931 Q59G56 -219931 Q8NHX9 -219938 Q7Z5L4 -219952 Q8NGQ2 -219954 Q8NGQ6 -219956 Q8NGQ5 -219957 Q8NGE9 -219958 Q8NGQ3 -219959 Q8NH92 -219960 Q8NGQ4 -219965 Q8NGF7 -219968 A6NL26 -219970 A5LGC7 -219970 Q8WU03 -219972 Q2M385 -219981 Q8NGI9 -219982 Q8NGJ0 -219983 Q8NGJ1 -219986 Q8NGI4 -219988 Q86TB9 -219990 Q86WS3 -219995 Q8N5U1 -220001 Q96DN2 -220002 B4DLN9 -220002 Q8NBI2 -220004 G3F4G3 -220004 Q7Z5V6 -220032 Q6W3E5 -220042 Q8IXT1 -220047 Q8IWF9 -220064 Q8WV07 -220074 Q8WZ04 -220074 Q96E66 -220081 Q5W0A0 -220082 Q8NA61 -220107 Q6UYE1 -220108 Q86V42 -220134 Q96BD8 -220136 Q96M91 -220164 Q6PKX4 -220202 F1T0H4 -220202 Q8N100 -220213 Q5VV17 -220296 Q14CZ8 -220323 Q86UD1 -220359 Q6B0B8 -220382 A6NEQ2 -220388 Q8N998 -220441 Q8N8N0 -220869 Q5RIA9 -220929 Q7Z4V0 -220963 Q7RTY1 -220965 A8K181 -220965 B4DSU7 -220965 B7ZB77 -220965 E9PFT0 -220965 Q8NE31 -220972 Q5T0T0 -220979 Q5T742 -220988 P51991 -220992 Q8NCK3 -221002 Q8N9B8 -221016 Q96M83 -221035 Q6NUK4 -221037 A0T124 -221037 Q15652 -221044 Q8WVF2 -221060 Q8N326 -221061 B3KMX9 -221061 Q5VUB5 -221061 Q9Y438 -221074 Q504Y0 -221078 Q8TEA1 -221079 B0YIW9 -221079 Q96KC2 -221091 Q8ND94 -221092 Q1KMD3 -221120 Q96Q83 -221143 Q8WVE0 -221150 Q8IX90 -221154 Q8IYU8 -221178 Q96N96 -221184 Q96FN4 -221188 Q8IZF4 -221191 Q6PEW0 -221223 B7Z252 -221223 Q6NT32 -221264 Q5TCS8 -221294 B3KR35 -221294 Q5TFE4 -221294 Q9H2R1 -221301 Q5JW98 -221302 Q96AP4 -221303 Q5T6X4 -221322 Q96NH3 -221336 Q5SZJ8 -221357 Q7RTV2 -221391 Q6U736 -221393 Q8IZF3 -221395 Q8IZF2 -221400 B3KWU2 -221400 F5H5M3 -221400 O60522 -221409 Q496A3 -221416 E9PB59 -221416 Q8N319 -221421 Q96NH9 -221421 Q9H1X1 -221424 Q5JTD7 -221443 Q9Y530 -221458 Q6ZMV9 -221468 Q8N7C4 -221472 Q7Z6J4 -221476 Q6UXB8 -221477 Q6UWU4 -221481 Q5T9G4 -221491 Q86T20 -221496 E7EVT2 -221496 Q8NC56 -221504 A2AB19 -221504 Q96C00 -221527 Q9Y330 -221545 A9R9P8 -221545 A9R9P9 -221545 F8VX15 -221545 Q0P5T2 -221545 Q5SQH8 -221613 Q96QV6 -221656 A2A2C6 -221656 Q8NB78 -221662 A8KAI7 -221662 E9PAY4 -221662 Q9BX46 -221687 Q8N6D2 -221692 Q9C0D0 -221710 P0DJ93 -221711 B4DFB8 -221711 Q5T4T6 -221749 Q5TGL8 -221785 Q6NSZ9 -221786 Q8TCP9 -221806 Q8N2E2 -221823 P21108 -221830 Q3B726 -221833 Q8IXZ3 -221895 Q86VZ6 -221908 Q8TAP8 -221914 Q8N158 -221927 Q6PJG6 -221935 Q7Z5N4 -221937 P85037 -221938 Q8IY49 -221955 B4DQU0 -221955 Q8NCG7 -221960 P86790 -221960 P86791 -221981 Q9UPZ6 -222008 Q8TAG5 -222068 Q7Z7H5 -222166 Q8N3F0 -222171 A4D1A1 -222171 Q8IV56 -222194 Q6PCB5 -222223 A8MWY0 -222223 B4DJV3 -222229 Q9UFC0 -222234 Q8N0U4 -222235 Q8N1P0 -222235 Q8NEE6 -222236 Q6IQ20 -222255 A4D0Q2 -222255 Q9ULK2 -222256 Q6ZTQ4 -222389 Q8N7W2 -222484 Q8N448 -222487 Q86Y34 -222537 Q8IZT8 -222545 Q5T6X5 -222546 Q8HWS3 -222553 Q5T1Q4 -222584 Q5T0W9 -222611 Q8IZF7 -222642 Q5TGU0 -222643 Q8IV45 -222658 Q7Z5Y7 -222659 Q8NFP0 -222662 B3KX66 -222662 Q8TAF8 -222663 Q8IX30 -222696 Q3MJ62 -222698 Q5M9Q1 -222826 Q8IXS0 -222865 Q8N3G9 -222894 Q96RJ6 -222950 Q6ZVC0 -222962 Q7RTT9 -222967 B2RC85 -223075 Q6ZRS4 -223082 Q8NHG8 -223117 O95025 -225689 Q8TD08 -245711 Q5MJ70 -245802 Q96DS6 -245806 Q8N8G2 -245812 Q8N129 -245908 Q8NG35 -245909 Q8N104 -245910 Q8IZN7 -245911 Q8NET1 -245913 Q30KQ9 -245915 Q30KQ8 -245927 Q30KQ7 -245928 Q30KQ6 -245929 Q30KQ5 -245930 Q30KQ4 -245932 Q5TH42 -245932 Q8N690 -245934 Q5GRF9 -245934 Q5J5C9 -245936 Q5GRF8 -245936 Q8N688 -245937 Q8NES8 -245938 Q8N687 -245939 Q7Z7B8 -245940 Q30KQ2 -245972 Q8N8Y2 -245973 Q8NEY4 -246100 P78358 -246175 Q96LI5 -246176 Q8NHY3 -246184 Q8NHZ8 -246213 Q8NDX2 -246243 B3KUD4 -246243 E5KN15 -246243 O60930 -246269 Q8WV93 -246329 Q96MF2 -246330 Q8N2H9 -246721 F6W009 -246744 Q8IWL8 -246777 Q6UW49 -246778 Q8NEV9 -252839 Q9P0T7 -252884 Q96N95 -252969 B4DFR7 -252969 Q969S2 -252983 Q6ZWJ1 -252995 Q8NAU1 -253012 A8MVW5 -253017 Q5HYJ1 -253143 Q5THK1 -253152 Q8IUS5 -253175 Q9Y6F8 -253190 Q9H4I8 -253260 Q6R327 -253314 A6NMX2 -253430 Q8NFU5 -253461 Q8NAP3 -253461 Q9H6F0 -253512 Q5SVS4 -253558 A6H8Z7 -253558 Q6UWP7 -253559 G3XHN4 -253559 Q8N3J6 -253582 Q5VVB8 -253635 Q8N954 -253639 Q6ZNG0 -253650 Q8IVF6 -253714 Q6ZRQ5 -253725 A8K5W5 -253725 B3KMC4 -253725 B4DZQ6 -253725 B9EK53 -253725 F5H0J6 -253725 F5H871 -253738 Q9H4W6 -253769 A2RRH5 -253769 C9JGV0 -253782 Q6ZMG9 -253827 Q8IXL7 -253832 Q5W0Z9 -253935 Q86XS5 -253943 Q7Z739 -253959 Q6GYQ0 -253970 P0C7M3 -253980 Q8WZ19 -253982 Q5U4P2 -254013 Q8IXQ9 -254042 Q6UB28 -254048 Q6ZU65 -254050 Q8N309 -254065 Q6RI45 -254102 Q8N3D4 -254122 Q86XE0 -254158 B7ZLS7 -254158 Q96LI9 -254170 Q7Z6M2 -254173 Q6ZVT0 -254187 Q3SY00 -254225 Q8NCN4 -254228 Q8N5C1 -254240 Q8NFQ6 -254251 Q8N3X6 -254263 Q6PI25 -254268 Q5T1N1 -254272 Q2M2D7 -254295 Q5SRE7 -254359 Q6UX98 -254394 Q9NXL9 -254427 Q86WR7 -254428 B2RMP2 -254428 B3KWH2 -254428 Q8IVJ1 -254439 A6NJI1 -254528 C9J0S1 -254528 Q8N635 -254531 Q643R3 -254552 Q8WV74 -254773 Q86SG7 -254778 Q8TAG6 -254783 A6NCV1 -254786 Q9NZP0 -254827 Q58DX5 -254863 Q8N2U0 -254879 Q8NHC8 -254887 Q8IYP9 -254910 Q5TCM9 -254950 Q3LI76 -254956 Q5VZ52 -254958 Q8IX06 -254973 Q8NGR5 -255022 Q8IU99 -255027 Q2QL34 -255043 Q8N661 -255057 Q8N350 -255061 Q86UU9 -255101 E9PCR1 -255101 Q49A14 -255101 Q4ZFW9 -255101 Q6ZU64 -255101 Q8N0T4 -255104 Q5TGY1 -255104 Q6ZSC6 -255119 E7EQ13 -255119 Q6V702 -255189 A5PKZ7 -255189 Q68DD2 -255220 Q6A555 -255231 Q8IZK6 -255239 Q8NFD2 -255252 Q8N9N7 -255275 A6NDP7 -255313 Q5JQC4 -255324 Q6UW88 -255349 Q6ICI0 -255352 Q5SR76 -255374 A4D2B0 -255394 Q8N4U5 -255403 Q3SXZ3 -255426 Q8N431 -255488 Q7Z419 -255520 Q8IZ81 -255626 Q96A08 -255631 Q17RW2 -255725 Q96RD2 -255738 Q8NBP7 -255743 B4DIT4 -255743 B4DYK3 -255743 B4E2H7 -255743 B4E3H2 -255743 E9PCK8 -255743 E9PCQ1 -255743 E9PE64 -255743 E9PF04 -255743 Q6UXI9 -255758 Q8WW35 -255762 F5GWW8 -255762 Q8IXQ8 -255783 C9JVW0 -255798 Q147U7 -255809 A8MVS5 -255877 A8KA13 -255877 Q8N143 -255919 Q8N9A8 -255928 A1L3Y1 -255928 F5H426 -255928 Q8NB59 -255967 Q58A45 -256006 Q8N7Z5 -256051 Q6P9A3 -256076 A8TX70 -256126 Q6PIF2 -256130 Q5HYL7 -256144 Q8NH37 -256148 Q8NGB4 -256223 A8MXV6 -256227 B5MCI2 -256227 Q6NZ63 -256281 O95848 -256297 Q7RTS3 -256302 Q8N6N6 -256309 Q8TBZ0 -256329 Q8IXW0 -256356 Q6ZS86 -256364 Q32P44 -256380 Q8N228 -256394 Q86U17 -256435 Q8NDV1 -256471 Q8NHS3 -256472 Q8N4L1 -256536 Q5VWI1 -256586 Q8IV50 -256643 A2AJT9 -256646 Q86Y26 -256691 Q7Z304 -256710 Q6UWM5 -256714 B7Z2J8 -256714 B7Z3S7 -256714 C9JYW0 -256714 Q96T17 -256764 Q3MJ13 -256815 Q8IYJ2 -256892 A6NLW9 -256933 Q8NG41 -256949 Q6NY19 -256957 A2RTY3 -256979 Q8TAQ9 -256987 B4DMH7 -256987 Q86VE9 -257019 A2A2Y4 -257044 B4DZR4 -257044 Q5SY80 -257062 Q86XM0 -257068 Q0VAA5 -257101 Q8IZ20 -257106 Q7Z6I6 -257144 C9JD17 -257144 C9JUG6 -257144 Q8N6F7 -257160 B2RUW0 -257160 Q8ND24 -257169 Q8TAL5 -257177 Q5VTH2 -257194 Q7Z3B1 -257202 P59796 -257218 B3KX98 -257218 Q149N8 -257236 Q2M329 -257240 Q8N239 -257313 Q765I0 -257364 B1NM17 -257364 Q8WV41 -257397 Q8N5C8 -257407 A6NCS6 -257415 Q5BKY9 -257629 Q8N8V4 -258010 Q8NHG7 -259173 Q60I27 -259173 Q8NAL7 -259197 O14931 -259197 Q05D23 -259215 B0UXB7 -259215 Q5SQ64 -259217 O43301 -259230 D3DWC4 -259230 Q86VZ5 -259232 B3KMK1 -259232 Q8IZF0 -259236 Q8NEW7 -259239 Q8NEX6 -259240 Q8NEX5 -259249 Q96LB2 -259266 B3KWI2 -259266 Q4G1H1 -259266 Q8IZT6 -259282 Q8NFC6 -259285 P59534 -259286 P59535 -259287 P59536 -259289 P59537 -259290 P59538 -259291 P59539 -259292 P59540 -259294 P59542 -259295 P59543 -259296 P59544 -259307 Q1WMJ3 -259307 Q96RQ9 -259308 B4DY95 -259308 Q6ZU69 -260293 Q5VVE5 -260293 Q8N118 -260425 Q5TCQ9 -260429 Q8NF86 -260434 Q8WXC3 -260436 Q540F3 -260436 Q8NFU4 -261726 O75663 -261729 B3KS24 -261729 G5E9C6 -261729 Q6YPB1 -261729 Q6YPB2 -261729 Q8NFT2 -261734 O75161 -261734 Q8IWC0 -266629 Q6XCI7 -266629 Q9UDX4 -266675 Q8NFU0 -266722 B3KX95 -266722 Q8IZP7 -266727 Q8NFP4 -266740 P43356 -266740 Q96E03 -266743 Q8IUM7 -266747 Q8IZJ4 -266812 Q96NT1 -266977 A0PJH0 -266977 Q5T601 -267002 Q6P3X8 -267004 Q8N328 -267012 A2T115 -267012 P59103 -267012 Q8IWM4 -267020 Q7Z4Y8 -280636 Q8IZQ5 -280658 Q7RTT5 -280664 Q8IUB3 -282616 Q45KQ8 -282616 Q8IZJ0 -282617 Q8IZI9 -282618 Q8IU54 -282679 Q8NBQ7 -282763 Q05CQ2 -282763 Q9H339 -282770 Q8NH19 -282775 Q8NH18 -282808 P0C0E4 -282809 A0MNP0 -282809 G3V1X0 -282809 Q8TC44 -282890 B0S7Y4 -282890 Q5JNZ3 -282966 B9ZVK6 -282966 Q8N6V4 -282969 A2VDF0 -282974 Q86UX6 -282991 F1T0F0 -282991 Q6QNY1 -282996 Q5T481 -283078 Q8IYA7 -283092 Q8NGP0 -283093 Q96R67 -283111 Q9H2C8 -283116 A6NDI0 -283129 Q3KP22 -283130 Q8N413 -283149 Q86UU0 -283150 Q6PIV2 -283152 Q494R4 -283159 Q8WZ84 -283160 Q9GZM6 -283162 Q96RC9 -283189 Q8NGQ1 -283208 Q7Z4N8 -283209 Q6PCE3 -283212 F5H412 -283212 Q6PF15 -283219 Q4G0X4 -283229 Q8N4Y2 -283232 Q96HE8 -283234 A6NC98 -283234 B2RTU8 -283237 Q8N5M4 -283248 Q8IZ40 -283254 Q96MB7 -283284 Q8N9C0 -283297 Q9H209 -283298 Q5HYE3 -283298 Q6UWY5 -283316 Q2M3B7 -283316 Q9NR16 -283337 Q8NDX6 -283349 Q86WH2 -283358 Q6L9W6 -283358 Q8N9V0 -283365 A6NF89 -283373 B3KWN0 -283373 Q8NB46 -283375 Q6ZMH5 -283377 Q8WW59 -283383 B2CKK9 -283383 Q6QNK2 -283383 Q9NSM3 -283385 Q6PF18 -283416 Q8N7H1 -283417 Q6NUT2 -283420 Q6UXN8 -283431 Q86XJ1 -283446 B4DNW6 -283446 F5H3C6 -283455 E9PB13 -283455 Q6VAB6 -283459 O43716 -283461 Q86WS4 -283464 Q4G148 -283471 Q86WS5 -283489 Q96JM3 -283514 Q8IW03 -283518 Q8N5I3 -283537 Q7Z3Q1 -283551 A1A4T8 -283554 B3KW22 -283554 Q6AWC7 -283554 Q8N3F9 -283571 G3V3G0 -283571 Q3B8N5 -283576 Q8N966 -283578 Q6PL24 -283579 F8WAD5 -283579 Q8N769 -283598 Q52M58 -283600 Q6Q0C1 -283629 Q6SA08 -283635 Q8N128 -283638 Q9Y4F5 -283643 B5MDG3 -283643 E9PAQ4 -283643 Q86SX3 -283643 Q86TT4 -283652 A5X8Z8 -283652 Q71RS6 -283659 Q2VWP7 -283677 Q7Z4M0 -283694 Q8N0Y3 -283726 Q658L1 -283742 A8MUW5 -283742 Q52LJ0 -283748 Q86XP0 -283777 Q8N8A8 -283807 Q6P050 -283820 Q4G177 -283820 Q5JPE7 -283847 Q8NA31 -283848 Q5XG92 -283848 Q6P2E5 -283849 Q86VI1 -283869 Q8N729 -283870 Q6PL45 -283871 A6NDG6 -283897 Q6UWD8 -283899 Q8NBZ0 -283927 B4DLE5 -283927 P0C024 -283933 Q8N446 -283948 P0CG21 -283951 Q4G0I0 -283953 B3SHH9 -283971 Q8NCF0 -283985 Q8N9I5 -283987 Q8IV36 -283989 Q7Z6J9 -283991 Q8IYN6 -283999 A6NFC5 -284001 Q2TAC2 -284004 Q8WVB3 -284013 C9JQ15 -284013 E9PAU9 -284013 E9PGP4 -284013 Q7Z5L0 -284018 Q2M2W7 -284021 Q7Z6M3 -284040 D3DTT2 -284040 Q8N9R6 -284058 Q7Z3B3 -284067 B2RV13 -284069 A8MVW0 -284071 A2RUB1 -284076 G5E937 -284076 Q8N841 -284083 Q8NEP4 -284086 Q86SG6 -284098 Q7Z7B1 -284099 Q8N4C9 -284106 P0C7P0 -284110 Q96QA5 -284111 B7ZLB4 -284111 Q86YT5 -284114 Q8N9M5 -284119 Q6NZI2 -284129 Q86WA9 -284131 Q8N8Q3 -284161 Q8N9F7 -284184 A1L188 -284186 Q8N8V8 -284194 Q3B8N2 -284207 Q641Q3 -284217 P25391 -284252 Q719H9 -284254 Q8N1N2 -284266 Q6ZMC9 -284273 Q4G1C4 -284273 Q8N4Q0 -284274 Q3B7S5 -284293 A8MTL9 -284297 A1L4H1 -284306 Q8IVP9 -284307 Q3SY52 -284309 B2RN90 -284309 B4DSC6 -284309 Q68DI1 -284312 Q8NBB4 -284323 E9PB48 -284323 O75290 -284323 Q05CQ7 -284325 Q5BKX5 -284338 A6NJB7 -284339 Q8NBT3 -284340 Q6UXB2 -284346 Q86XF7 -284348 Q6UWN5 -284349 Q8N7M2 -284352 B5MDA4 -284355 Q8N7U7 -284358 Q6ZN01 -284359 Q8IYV9 -284361 Q5UCC4 -284366 Q2XQG6 -284366 Q9UKQ9 -284369 Q8N7X8 -284370 Q8N8J6 -284371 Q6ZN19 -284382 Q8TC94 -284383 Q8NG97 -284390 Q0D2J5 -284391 Q08AG5 -284402 Q4G0G5 -284403 O43379 -284406 D3Y299 -284406 Q8N141 -284415 Q6UX27 -284417 A6NC51 -284418 Q8N5Q1 -284418 Q8ND99 -284422 O75264 -284427 Q8N5S1 -284428 A6NJ08 -284433 Q8NGA6 -284434 Q149M9 -284439 Q86VD7 -284443 G5E974 -284443 Q6ZR52 -284443 Q9BR99 -284451 Q3SX64 -284459 P10072 -284467 Q7Z5A8 -284485 A6NNX1 -284486 Q8N1Q8 -284521 Q8N349 -284525 B3KXW8 -284525 Q5TAH2 -284532 Q8NHC5 -284541 Q5TCH4 -284546 Q5T7R7 -284565 Q8N660 -284611 Q5T8I3 -284612 Q5VXT5 -284613 E9PCM8 -284613 Q5T6C3 -284613 Q6ZQS1 -284613 Q8N8Q1 -284615 Q69YU3 -284618 Q66K80 -284654 Q0H8S6 -284654 Q2MKA7 -284656 Q4G0R4 -284656 Q5JZY3 -284656 Q8N289 -284677 Q5VU13 -284680 Q5T0L3 -284695 Q5BKZ1 -284697 Q5XKL5 -284716 Q8IXN7 -284723 Q6PIV7 -284756 Q8N268 -284759 B3KTG0 -284759 B4DLM9 -284759 E9PCW6 -284759 Q5JXA9 -284805 Q8NBC4 -284827 Q3LI77 -284904 A5D6W7 -284904 B2RMR2 -284904 B3KRP9 -284904 Q9UDX3 -284948 Q7Z4S9 -284992 Q8NCX0 -284996 Q8NC42 -285016 Q6UX46 -285025 Q6ZP82 -285033 Q3KRF4 -285051 Q8N801 -285093 Q14D33 -285126 Q53SY5 -285126 Q8N7S2 -285141 A1L162 -285148 Q2TAA2 -285172 B3KUG1 -285172 Q8IXS8 -285175 C9J1U3 -285175 Q8N2C7 -285180 Q6ZNE9 -285190 Q7Z3J3 -285193 Q4G0W2 -285195 Q8IVB4 -285203 Q5NDL2 -285220 B3KS12 -285220 Q9UF33 -285231 E9PG36 -285231 Q494Y9 -285231 Q494Z0 -285231 Q6X9E4 -285237 Q5JPI3 -285242 A5X5Y0 -285267 B4E271 -285267 C9JRN5 -285267 E9PCD9 -285268 Q6ZSS3 -285282 Q5HYI8 -285299 A6NGY1 -285313 Q6WRI0 -285315 Q96NB5 -285331 A2RUB6 -285335 Q4G0N8 -285343 Q8N3R3 -285346 B6EU87 -285349 Q6AZW8 -285362 B4DXK5 -285362 B7XD05 -285362 E9PGL0 -285362 G5E9B0 -285362 Q0VAC6 -285362 Q8NBK3 -285367 A8K773 -285367 Q6P087 -285368 Q5FWE3 -285381 Q96FX2 -285382 A6NLC5 -285386 Q6ZUI0 -285429 Q3SXM0 -285440 Q6ZWL3 -285464 B3KX85 -285464 Q8N1N5 -285489 E9PB56 -285489 Q18PE1 -285498 C9J8N0 -285498 Q495C1 -285513 Q6ZVF9 -285521 Q8N8Q8 -285525 Q8N8F6 -285527 B3KXG5 -285527 O94915 -285527 Q6ZR29 -285533 Q8N4F7 -285550 P0CF97 -285555 Q8N412 -285588 A8MZ26 -285590 A1X283 -285596 Q9UHL3 -285598 Q6PCE2 -285598 Q8N8L6 -285600 Q8IV33 -285601 G4XH61 -285601 Q8NGU9 -285605 Q8NBA8 -285613 Q8NC24 -285636 A6NDU8 -285636 Q6AW98 -285641 Q495N2 -285643 Q2VIQ3 -285659 Q96R30 -285668 Q2M2E5 -285671 Q86T96 -285672 Q8N9Q2 -285676 Q2M1P2 -285676 Q8N9F8 -285679 A6NFR6 -285704 Q6NW40 -285753 Q8IYX8 -285755 A9NIU9 -285755 Q8IXY8 -285761 Q8N8Z6 -285782 D6RCT9 -285782 Q8TC20 -285800 Q8N4B5 -285848 B8XXQ3 -285848 Q8N8W4 -285852 Q6UXN2 -285855 Q6DKI1 -285877 Q8N7R1 -285888 Q3B7I2 -285941 A4D174 -285955 Q8NFV5 -285966 A6NFQ2 -285971 Q96BV0 -285973 Q674R7 -285989 A6NH61 -285989 Q5FWF6 -286006 Q8N8F7 -286046 Q5GH73 -286053 Q96MF7 -286075 Q96C28 -286077 Q6ZRV2 -286077 Q71RB4 -286097 Q86XE3 -286122 Q8N9H6 -286128 Q69YS5 -286128 Q8N8Y5 -286133 Q6ZMJ2 -286144 Q629K1 -286148 Q7Z388 -286151 Q4G163 -286183 Q8N8D7 -286187 Q7Z4L9 -286204 Q5IJ48 -286205 Q8N9R8 -286207 Q5JU67 -286223 Q6ZRZ4 -286234 Q6ZUB1 -286256 Q6JVE5 -286257 Q9BUH6 -286262 Q4KMQ1 -286319 Q2TAM9 -286336 Q5JUQ0 -286336 Q8N2W3 -286343 Q8IV03 -286362 Q8NGT0 -286365 Q8NGV5 -286380 Q6VB84 -286410 Q8NB49 -286451 B4E1U7 -286451 G5E997 -286451 Q96EC8 -286464 Q8N9S7 -286499 Q8N9E0 -286514 Q96M61 -286527 P0CG34 -286527 P0CG35 -286530 Q86VZ1 -286676 Q86SU0 -286749 A8MXJ1 -286749 B5MCF5 -286749 B7ZL16 -286749 Q3MIM1 -286749 Q53S48 -286753 Q8IXB3 -286826 Q5TKA1 -286827 Q8IWR1 -286887 P48668 -287015 Q8IWZ5 -317649 Q8N5X7 -317662 Q96BN6 -317671 Q8TAC1 -317701 Q8NFZ6 -317703 Q7Z5H5 -317705 Q7Z5H4 -317719 Q6JEL2 -317749 D5KJA1 -317749 D5KJA2 -317754 Q86YR6 -317761 Q08AQ4 -317762 A6NKD9 -317772 Q8IUE6 -317781 Q8N8A6 -319100 Q96RI8 -319101 Q86Y46 -326340 Q86SH2 -326624 A8MXF5 -326624 A8MYT0 -326624 Q96AX2 -326625 Q96EY8 -327657 Q86WD7 -333926 Q5JR12 -333929 Q3KNW1 -333932 Q71DI3 -337867 A8K2S7 -337867 Q8NBM4 -337876 Q70JA7 -337878 Q8IUC3 -337879 Q8IUC2 -337880 Q8IUC1 -337882 Q8IUB9 -337959 Q52LG2 -337960 Q3SY46 -337963 A1A580 -337966 Q3LI64 -337967 Q3LI66 -337969 Q3LHN2 -337970 Q7Z4W3 -337971 Q3LI73 -337972 Q3LI72 -337973 Q3LI70 -337974 Q3SYF9 -337975 Q3LI63 -337976 Q3LI61 -337977 Q3LI58 -337978 Q3LI59 -337979 Q3MIV0 -337985 Q3LI60 -338094 Q8WW52 -338321 Q7RTR0 -338322 Q86W26 -338323 Q86W24 -338324 Q86SG5 -338328 Q8IV16 -338339 Q8WXI8 -338376 Q86WN2 -338382 Q96AH8 -338398 P59551 -338440 A1A5B4 -338442 Q8TDS4 -338557 B4DWG6 -338557 Q5NUL3 -338567 Q7Z418 -338596 P61647 -338599 Q68J44 -338645 E9PN53 -338645 Q86TE4 -338657 Q86UT8 -338661 Q6GV28 -338662 Q8NGM9 -338674 O95221 -338675 Q8NGF4 -338692 Q6ZTN6 -338699 Q8N9B4 -338707 Q76KP1 -338751 Q8NGH7 -338755 A6NM03 -338761 Q86Z23 -338773 Q4V9L6 -338785 Q5XKE5 -338809 F5H4P0 -338809 Q32Q52 -338811 Q8N3H0 -338821 G3V0H7 -338821 Q71QF0 -338872 P0C862 -338879 Q5GAN6 -338917 P58304 -338949 A6NGA9 -339010 Q6S5H4 -339105 Q2L4Q9 -339122 E9PBQ0 -339122 Q86YS6 -339123 Q96S16 -339145 Q6ZTR7 -339168 Q3KNT9 -339175 B3KM33 -339175 Q96IZ6 -339184 Q6NUI1 -339201 Q495Z4 -339210 Q0P5P2 -339221 Q6UWV6 -339229 Q5BKU9 -339230 Q6PK04 -339231 Q0P5N6 -339263 A8MQB3 -339287 B3KWR7 -339287 Q68DK7 -339291 A6NM36 -339302 F1T0L6 -339302 Q7Z7G2 -339318 B4DM69 -339318 B7ZKX3 -339318 Q2M3W8 -339324 A8K5X7 -339324 Q3ZCT1 -339327 B3KVL3 -339327 Q86UE3 -339344 Q86VE0 -339345 P60321 -339366 Q0VD77 -339366 Q6ZMM2 -339390 B7ZKQ2 -339390 Q08G24 -339390 Q6UXB4 -339390 Q6XYD1 -339398 Q6UY18 -339403 Q8TDU9 -339416 Q5TZF3 -339448 Q8IYL3 -339451 Q6TDP4 -339453 Q5SV17 -339456 Q8NDY8 -339457 Q69YW0 -339479 Q76B58 -339487 A8K0B5 -339487 Q8IWT0 -339488 Q6VUC0 -339500 F5GXA7 -339501 A1L453 -339512 Q86UF4 -339521 P0C7Q3 -339541 Q6PIY5 -339559 Q49AA0 -339665 Q6ICL7 -339669 O43247 -339745 Q6IQ16 -339761 Q4G0S4 -339768 Q6ZVH7 -339778 A6NJV1 -339779 Q53SZ7 -339804 A8MZ97 -339804 C9JBF1 -339829 Q9UFE4 -339834 B4DZP6 -339834 Q8IYA8 -339855 Q8NBH2 -339883 Q8IVJ6 -339883 Q8IVJ8 -339896 Q6ZQY3 -339906 Q7Z5A4 -339965 Q5M9N0 -339967 A8KA85 -339967 B5MDI9 -339967 Q6ZMR5 -339976 Q8N9V2 -339977 Q68CR7 -339983 Q8N9F0 -340024 Q695T7 -340061 Q86WV6 -340069 A1A519 -340075 Q5FYB1 -340120 A5PLL1 -340146 Q5M8T2 -340152 A2A288 -340156 Q86YV6 -340168 A6NC42 -340204 A2RUU4 -340204 F6TG72 -340205 Q86YW5 -340252 Q6ZNF3 -340252 Q8NEM1 -340260 A6NJT0 -340267 Q2UY09 -340273 A7BKA4 -340273 B5MD19 -340273 F8QQP8 -340273 Q2M3G0 -340277 A4D161 -340307 Q86UF2 -340348 Q86UF1 -340351 Q8NEM8 -340359 Q2WGJ6 -340371 Q9NSY0 -340385 A0AV05 -340385 Q6ZMY9 -340393 Q2WGJ8 -340419 B3KVP3 -340419 Q6UXX9 -340441 Q6S8J7 -340481 Q8IVQ6 -340485 B3KVV5 -340485 Q5QJU3 -340526 Q5HYW3 -340527 F5H593 -340529 Q5JQF8 -340533 Q5QGS0 -340542 Q5H9J7 -340543 Q5H9L2 -340547 C9J4P2 -340547 Q86XK7 -340554 E9PAJ6 -340554 Q5HYM0 -340562 E9PB72 -340562 Q86VE3 -340578 Q5VW00 -340595 Q6ZR62 -340596 Q86WI0 -340654 B2RXK7 -340654 Q5VYY2 -340665 Q6V0L0 -340706 Q5GFL6 -340719 Q8WY41 -340745 A6NDA9 -340784 A6NHT5 -340980 Q8NGF0 -340990 Q6ZRI0 -341019 P59894 -341032 Q8IXP5 -341116 Q96PG2 -341152 A6NND4 -341208 Q6MZM0 -341276 Q9H208 -341346 A6NFE2 -341350 Q7RTY7 -341359 Q6XYQ8 -341392 P0C7M7 -341405 Q0VAA8 -341405 Q5K617 -341405 Q7Z3H0 -341416 Q9NZP2 -341418 Q8NGE1 -341567 Q75WM6 -341568 Q8NH09 -341640 Q5SZK8 -341676 Q6P3R8 -341799 Q8NH40 -341880 A4IF30 -341947 Q7Z4L0 -342035 Q6ZMI3 -342096 A2VDJ1 -342096 Q9NYA3 -342125 Q7Z5M5 -342132 Q6NX45 -342184 Q68DA7 -342346 A6NNT2 -342357 Q63HK3 -342371 P0C7T5 -342510 B4E0V9 -342510 Q496F6 -342527 Q2TAL5 -342538 Q9H009 -342574 Q7Z3Y8 -342618 P0C7P3 -342667 D0IN09 -342667 Q6ZMT1 -342850 A6NC57 -342865 A6NLU5 -342892 A8MQ14 -342897 Q6ZVX7 -342898 Q0VAF6 -342900 A8MZ59 -342908 Q494X3 -342909 Q2VY69 -342918 C9J6K1 -342926 Q86XU0 -342931 A6NLU0 -342933 A6NJL1 -342945 P10073 -342977 P60323 -342979 A6NDB9 -343035 Q7Z3Z2 -343066 Q5VUY2 -343068 Q5TYX0 -343069 O60812 -343070 Q5VWM5 -343071 O60809 -343099 E9PFB9 -343099 Q5T9S5 -343099 Q6PH87 -343169 Q8NGZ6 -343171 Q7Z3T1 -343172 A6NH00 -343173 Q8NH03 -343263 A2RUH7 -343406 Q8NGX6 -343413 Q6DN72 -343450 A9LNM6 -343450 Q6UVM3 -343450 Q6ZS12 -343472 Q9NY43 -343505 P0C2Y1 -343521 Q5JR98 -343563 Q8NH02 -343637 Q2I0M5 -343641 O95932 -343702 Q5GH72 -343930 A6NI15 -343990 Q6NV74 -344018 Q6QHK4 -344022 A8MTQ0 -344148 O14513 -344167 A8MTJ6 -344191 Q03828 -344387 Q5MAI5 -344558 Q8TEJ3 -344561 Q8TDV2 -344657 A6NIV6 -344658 Q7Z3H4 -344752 Q6P093 -344758 Q2MKA6 -344758 Q86SP6 -344787 A6NHJ4 -344805 Q7RTY8 -344807 Q6Q8B3 -344838 Q6ZVX9 -344892 Q5QGT7 -344901 P61366 -344905 Q4VNC0 -345062 Q7RTY5 -345079 A6NEL2 -345193 Q3SXY7 -345222 Q6ZTZ1 -345274 Q3KNW5 -345275 Q7Z5P4 -345456 P60673 -345462 B4DU55 -345557 B3KXD1 -345557 Q63HM9 -345611 A1A4Y4 -345643 D6RGH6 -345643 F8KGQ8 -345651 Q562R1 -345757 Q8TBP5 -345778 E9PB57 -345778 Q5HYI7 -345778 Q7Z380 -345895 B3KTA9 -345895 Q5TD94 -345930 Q008S8 -346007 Q5SZM4 -346007 Q5T1H1 -346157 Q9UJN7 -346171 B7ZW61 -346171 Q9NU63 -346288 Q6ZU15 -346389 Q6ZN28 -346517 Q8N148 -346525 A4D2G4 -346525 Q8NGT7 -346528 Q8NGT9 -346562 A8MTJ3 -346606 Q86VF5 -346653 Q6NXP2 -346673 Q7Z7C7 -346689 A4D1S0 -347051 Q5PT55 -347088 Q7Z7M1 -347148 P83859 -347168 Q8NGS3 -347169 Q8NGR6 -347240 Q5T7B8 -347252 Q8WX77 -347273 Q5BKX8 -347344 P51508 -347365 Q6UXX5 -347404 Q6ZV70 -347454 A6NJG2 -347468 Q8NG92 -347475 A6NGH7 -347487 Q5JRM2 -347516 Q6ZPD8 -347517 Q5JT25 -347527 Q5FYA8 -347541 Q9BZ81 -347688 Q3ZCM7 -347730 Q86UE6 -347731 Q86VH5 -347732 Q86XQ3 -347733 Q9BVA1 -347734 Q8TB61 -347735 B4DJK5 -347735 B7Z567 -347735 B7ZAP2 -347735 E7EUZ9 -347735 F5GZP5 -347735 Q96IM8 -347735 Q96SA4 -347736 Q86XW9 -347741 Q7RTS5 -347744 Q5T4I8 -347853 O75333 -347862 Q8NB37 -347902 Q86SJ2 -348013 Q8WV15 -348093 Q6ZRY4 -348094 Q495B1 -348094 Q6PI29 -348110 Q7Z6K5 -348158 Q68CK6 -348174 A5D8T8 -348180 Q2VPK5 -348235 E9PCB8 -348235 Q8WVK7 -348262 C9JLW8 -348303 P59797 -348327 Q6P9A1 -348378 Q6UWV7 -348487 Q96AQ9 -348654 Q17RS7 -348738 Q96LS8 -348793 A0MNP1 -348793 Q7Z5U6 -348801 A1A4G5 -348807 Q494V2 -348932 Q96N87 -348938 Q0D2K0 -348980 O60741 -348980 Q86WJ6 -348995 Q8NFH3 -348995 Q8TEA6 -349075 Q8N859 -349136 Q86TI4 -349149 Q8NFK1 -349334 Q6VB85 -349334 Q8WXT5 -349565 B3KVR6 -349565 Q96T66 -349633 Q6UQ28 -349667 Q86UN3 -350383 Q7Z601 -352909 Q8N9W5 -352954 Q8NAP1 -352999 Q6P5S2 -353088 Q86V71 -353091 Q6H3X3 -353116 Q5EBL4 -353131 Q5T7P2 -353132 Q5T7P3 -353133 Q5T751 -353134 Q5T752 -353135 Q5T753 -353137 Q5T754 -353139 Q5TA79 -353140 Q5TA81 -353141 Q5TA82 -353142 Q5TA76 -353143 Q5TA77 -353144 Q5T5A8 -353145 Q5T5B0 -353149 Q86UD7 -353164 Q7RTR8 -353174 Q401N2 -353189 Q6ZQN7 -353219 Q9UBP8 -353238 Q330K5 -353238 Q6TGC4 -353274 P59923 -353288 Q7Z3Y9 -353299 A5PLK6 -353322 Q7Z713 -353323 P59991 -353324 Q7Z6I5 -353332 P59990 -353333 P60014 -353345 Q7Z602 -353355 A6NK53 -353376 Q86XR7 -353497 Q7Z5Q5 -353500 Q7Z5Y6 -353513 O14598 -353514 A6NI73 -353515 A2RUG3 -359710 P59826 -359787 Q6W0C5 -359845 Q8N5W9 -359948 Q7Z5L9 -360023 Q5SVQ8 -360030 Q7Z5D8 -360200 Q7Z410 -360203 Q5T6T3 -360203 Q7Z4J2 -360226 Q7RTY9 -373156 Q6FII1 -373156 Q9Y2Q3 -373509 E9PP86 -373863 Q8IYX4 -374286 O95170 -374286 Q59EB2 -374291 O75251 -374291 Q7LD69 -374308 Q3KNS1 -374354 Q7Z658 -374354 Q8NBF2 -374355 P0C7W6 -374378 Q58A54 -374378 Q6P9A2 -374383 Q68D85 -374393 Q6SJ93 -374395 Q7Z7N9 -374403 Q8IV04 -374407 B3LEP4 -374407 P59910 -374454 Q0IIN1 -374454 Q7Z794 -374470 Q96LP6 -374569 Q86U10 -374618 Q8N6V9 -374654 Q2M1P5 -374655 Q8N1W2 -374659 Q8N4P3 -374739 Q6URK8 -374768 Q8N4L4 -374786 A4FU69 -374786 B4DS75 -374786 B4DZR5 -374819 O60309 -374860 B4DGP1 -374860 F8WAG3 -374860 Q9BXX2 -374864 A1L4G8 -374864 Q5BJE1 -374868 B3KSI8 -374868 O43861 -374868 Q69YZ7 -374868 Q7Z3J4 -374872 Q6ZS72 -374875 Q7Z5J1 -374877 Q8NA69 -374879 Q32M78 -374882 Q6UW68 -374887 A6XGL0 -374887 Q6ZT45 -374897 E9PBV3 -374897 Q6UWP8 -374899 Q3KNS6 -374900 A2VDJ6 -374900 B4DS92 -374900 E7ER33 -374900 Q3ZCX4 -374900 Q96AZ9 -374907 Q7Z7M8 -374918 Q6UW32 -374928 Q6PK81 -374946 Q8NBI3 -374955 Q7Z572 -374969 Q8N300 -374973 C9W8M6 -374973 Q6PEX7 -374977 B7Z7S6 -374977 Q68CQ1 -374986 Q8NAN2 -375033 Q5VY43 -375035 O95562 -375056 Q5JRA6 -375057 Q69YW2 -375061 Q96GI7 -375189 Q8NHR9 -375248 A6QL64 -375287 Q6ZSC3 -375298 B4DEY1 -375298 Q49MI3 -375307 Q7Z7H3 -375316 Q6ZP01 -375316 Q8N7S3 -375318 Q8IXF9 -375323 Q7Z7J7 -375337 Q8N9V7 -375341 Q6ZUJ4 -375346 Q86TL2 -375387 Q86YC3 -375444 Q96MH7 -375449 O15021 -375484 Q8NDZ2 -375519 Q6PEY0 -375567 Q2TAL6 -375593 Q86UV7 -375607 Q8N8M0 -375611 P58743 -375611 Q496J2 -375612 A4D0Q5 -375612 Q86UP9 -375616 Q6ZWJ8 -375686 B4DWW9 -375686 Q76KD6 -375704 Q6UWT2 -375743 Q7Z6K3 -375748 Q5T890 -375757 Q1ZZU3 -375759 Q5SZB4 -375775 Q6ZV29 -375790 O00468 -375791 A8MQ03 -376132 Q5BKY1 -376267 P59190 -376497 Q6PCB7 -376940 P61129 -376940 Q6ZN12 -377007 Q0D2K2 -377047 Q7RTY3 -377630 Q6R6M4 -377677 Q8N1Q1 -377841 Q5MY95 -378108 Q86UV6 -378708 Q8N2Z9 -378807 Q7RTX7 -378884 Q6VVB1 -378925 A4D0X4 -378925 Q8N7C7 -378948 A6NDE4 -378949 P0C7P1 -378950 A6NEQ0 -378951 Q15415 -386617 Q6ZWB6 -386618 Q8WVF5 -386653 Q6EBC2 -386672 P60372 -386674 P60371 -386675 P60409 -386676 P60411 -386677 P60331 -386678 P60411 -386678 P60412 -386679 P60368 -386680 P60370 -386681 P60410 -386682 P60369 -386683 P60328 -386684 P60329 -386685 P60413 -386724 Q86WK7 -386746 Q86SM5 -387032 Q969J2 -387082 Q6EEV6 -387103 Q5EE01 -387104 A5PLQ8 -387104 Q5TF21 -387119 F8W6J2 -387119 G3V0H3 -387119 Q3ZCQ5 -387119 Q5SZL2 -387129 Q6W5P4 -387263 Q7Z4R8 -387264 Q6L8H4 -387266 Q6L8H2 -387267 Q6L8H1 -387273 Q6L8G5 -387328 Q5SYY0 -387332 Q6SJ96 -387338 Q96CB9 -387357 F5H1J9 -387357 Q8N1K5 -387496 Q6T310 -387509 Q6NV75 -387521 A5PLL7 -387522 A5PLL7 -387522 Q13404 -387597 Q71H61 -387601 A4IF29 -387601 Q6T423 -387638 E9PRX7 -387638 Q5VZT2 -387640 E9PAX1 -387640 Q1XH10 -387680 Q641Q2 -387680 Q6P0Q7 -387680 Q9NVB8 -387694 Q5SQS7 -387695 Q6UWK7 -387700 E9PSF9 -387700 Q6ZSM3 -387707 B4DYD4 -387707 E9PCC3 -387707 Q6DHV5 -387715 P0C7Q2 -387718 Q5VZQ5 -387733 A6NNB3 -387748 Q8NGI3 -387755 Q1MX18 -387758 Q8TAL6 -387763 Q7Z7L8 -387775 Q63ZE4 -387775 Q68CJ0 -387778 Q5MJ68 -387787 A6NK58 -387804 A8MXK1 -387836 Q6UVW9 -387837 Q2HXU8 -387849 Q6BDI9 -387856 Q52MB2 -387882 Q8TAD7 -387885 A6NFT4 -387890 B4DJY2 -387893 Q9NQR1 -387911 B2RNN3 -387914 Q6UWI4 -387921 B4DTL0 -387921 Q5JS37 -387921 Q68DP7 -387923 Q8N6R1 -387990 Q6UXN7 -388015 B9EK54 -388015 E9PKS8 -388021 Q6ZVK1 -388115 Q6ZUT6 -388121 Q5GJ75 -388125 A6NLJ0 -388135 Q2T9L4 -388199 Q96S07 -388228 Q52WX2 -388272 Q6PH81 -388284 Q6ZW13 -388324 Q0VD86 -388325 Q6UWF3 -388327 D3DTM5 -388333 A6NLX3 -388335 Q6QAJ8 -388336 Q6ZSJ9 -388341 Q8NAA5 -388364 Q6UXZ0 -388372 P13236 -388372 Q8NHW4 -388381 A8MV24 -388389 Q8IW40 -388394 Q8N4K4 -388403 Q96QA6 -388407 Q86X59 -388419 A6NE02 -388468 B2RU33 -388512 Q6ZS10 -388531 Q6ZS82 -388533 P60985 -388536 B4DMI3 -388536 Q6PG37 -388551 A7LI12 -388552 Q6QNY0 -388555 Q6UXB1 -388558 Q8N4W9 -388561 Q86XN6 -388564 C9JI98 -388566 Q6ECI4 -388567 O43361 -388569 Q6AW86 -388581 Q5T7M4 -388585 Q5TA89 -388588 B2RUZ4 -388591 Q6ZRF8 -388595 A0PJX8 -388610 Q6NT89 -388611 Q6UWJ8 -388630 A6NFA1 -388633 Q5T700 -388646 Q8N8V2 -388649 Q5VVC0 -388650 Q5T7M9 -388662 Q9H1V8 -388677 Q7Z3S9 -388695 Q96S90 -388697 Q86YZ3 -388698 Q5D862 -388701 Q5VU69 -388722 Q5VUE5 -388730 Q6P7N7 -388743 A6NHC0 -388753 Q5JTJ3 -388759 Q6ZS94 -388799 Q5JX69 -388818 Q6PEX3 -388886 Q2VPJ9 -388931 A6NFX1 -388939 A6NGG8 -388946 A6NEH6 -388951 Q8N831 -388960 A6NCI8 -388962 G3XAB0 -388962 Q53S33 -388962 Q8N338 -388963 G3XAA6 -388969 Q2NKX9 -389015 Q6AI14 -389058 Q6BEB4 -389072 Q6ZWE6 -389073 Q0P641 -389075 Q5W5W9 -389084 Q6UX34 -389090 Q6IFH4 -389114 A1A4T9 -389114 F8W7S8 -389114 Q6ZS27 -389118 A6H8M9 -389119 Q96EL1 -389123 Q8IXL9 -389124 A8MTL0 -389125 Q8IVN3 -389136 A8MV65 -389151 Q6ZRT6 -389152 Q6ZRP0 -389158 A0PG75 -389161 B4E2N8 -389161 E9PHT4 -389170 D3DNK7 -389177 A6NML5 -389197 Q6ZRC1 -389203 Q8N5G0 -389206 Q6ZU67 -389207 A8MXD5 -389208 Q6ZWK6 -389257 A6NHZ5 -389289 Q3ZCQ2 -389320 Q6ZNM6 -389333 E7EW31 -389336 Q6UWT4 -389337 A1IGU5 -389362 C9J2F8 -389362 F8WBZ2 -389362 Q5JS54 -389376 Q6UW10 -389383 Q6UWE3 -389384 P0C671 -389396 Q5SZD4 -389400 Q6UXV0 -389421 Q6ZN17 -389432 Q5TGI4 -389434 C9JFW2 -389434 Q6PHW0 -389493 A6NF83 -389523 A6NNH0 -389524 Q6EKJ0 -389541 Q0VGL1 -389549 A0PJY2 -389558 Q6UWF9 -389610 Q6UX68 -389630 P0C7V4 -389643 Q68CJ6 -389649 Q6ZUL3 -389658 Q6UXT8 -389668 Q5GH70 -389676 E5RJ46 -389677 Q8IXT5 -389690 Q6ZMW9 -389690 Q6ZUA9 -389692 Q8NHW3 -389730 Q5VVP1 -389761 Q6ZUB0 -389762 P0C874 -389763 Q6ZQQ2 -389766 Q5TBE3 -389792 Q5T953 -389799 Q6ZQR2 -389812 Q6UWW0 -389813 C9J069 -389816 Q2I0M4 -389827 A6NI61 -389840 Q6ZN16 -389852 Q96QH8 -389856 A6NNY8 -389860 Q5JRK9 -389874 Q8WW36 -389898 E9KL27 -389898 Q5JXB2 -389903 Q9Y5P2 -389941 Q5VWW1 -390010 Q9UD57 -390036 Q8NGK4 -390037 Q8NGK6 -390038 Q8NGF3 -390054 Q9H2C5 -390058 Q9H340 -390059 B2RNI9 -390061 Q8NH59 -390063 Q9H343 -390064 Q9H344 -390066 Q9H346 -390067 Q8NGJ2 -390072 Q8NGI2 -390075 Q8NH56 -390077 Q8NGI0 -390078 Q96RD3 -390079 Q6IFG1 -390081 Q8NGH9 -390083 Q8NH54 -390084 P0C7T3 -390093 Q8NH74 -390110 Q3C1W0 -390110 Q4AC99 -390113 Q8NH49 -390142 Q8NGL4 -390144 Q8NGK9 -390148 Q8NH69 -390151 Q8N162 -390152 Q8N146 -390154 Q8NGG3 -390155 Q8NG75 -390157 Q8NGG5 -390162 Q8NGP3 -390167 Q6IEU7 -390168 Q8NGP8 -390174 Q8NH87 -390181 Q8NH90 -390190 Q96R09 -390191 Q96R08 -390195 Q8NGI8 -390197 Q8NGI6 -390199 Q8NGE8 -390201 Q8NGI7 -390205 A6NIK2 -390212 Q8TDT2 -390243 A6ND01 -390245 B2RXH2 -390259 Q3C1V8 -390260 Q8NH79 -390261 Q8NGM8 -390264 Q8NGN3 -390265 Q8NGN6 -390271 Q8NGG8 -390275 Q8NGG7 -390321 Q96RD1 -390323 A6NL08 -390326 A6NM76 -390327 A6NIJ9 -390429 Q8NGD1 -390431 Q8NGD2 -390433 Q8NH42 -390436 Q8NGC6 -390437 Q8IXE1 -390439 Q8NGC1 -390442 Q8NGC9 -390443 P60153 -390445 Q8NGC0 -390531 A6NDP1 -390538 Q8NGB6 -390594 C9JR72 -390595 F5GYI3 -390598 P84550 -390637 Q6ZNW5 -390648 Q8NGB9 -390649 Q8NGB8 -390664 P60827 -390667 Q96A99 -390748 A6NDY0 -390748 B6RF28 -390790 A6NH57 -390792 Q6A163 -390874 O60422 -390882 Q8NG99 -390883 Q8NG95 -390892 O76100 -390916 A8MXV4 -390927 E9PGN4 -390927 Q6ZN11 -390928 Q6ZNF0 -390940 B7Z457 -390980 Q5CZA5 -390992 Q5TGS1 -390999 O95522 -391001 Q5VT98 -391002 Q5VWM4 -391003 Q5VWM3 -391004 Q5VTA0 -391059 Q6ZNA5 -391104 Q6RSH7 -391107 Q6IF99 -391109 Q8NGX5 -391112 Q8NGX8 -391114 Q8NGY3 -391123 Q5VU13 -391189 Q8NGX0 -391190 Q8NGY9 -391191 Q8NG84 -391192 Q8NG85 -391194 Q96R28 -391195 Q8NG76 -391196 Q8NG81 -391211 Q5TZ20 -391253 Q6UDR6 -391356 Q6GMV3 -391365 Q6IMI4 -391475 A2CJ06 -391712 Q5EBN2 -391723 A6NFD8 -392138 A4D2G3 -392255 Q6KF10 -392307 A6H8Z2 -392309 Q8NGT2 -392376 Q8NGS9 -392390 Q8NGR2 -392391 Q8NGR4 -392392 Q8NGR3 -392399 Q8WX39 -392490 Q56UQ5 -392509 B2RTT6 -392509 Q5H913 -392636 Q6ZNB7 -392862 A4D2P6 -393046 Q96R48 -394263 Q5SSG8 -399473 Q2MJR0 -399473 Q2MJR1 -399474 Q69YZ2 -399512 Q3KQZ1 -399664 E9PAL6 -399664 Q86XN8 -399665 A2A329 -399665 Q5T9C2 -399671 Q86WZ0 -399687 Q92614 -399687 Q9NYE8 -399693 Q8IVT4 -399694 Q6S5L8 -399697 P0C2S0 -399726 Q5T4H9 -399814 Q5SQS8 -399818 Q5JPI9 -399818 Q8TC28 -399823 Q6ZQN5 -399888 Q6P0A1 -399909 Q9H6A9 -399939 C9J1S8 -399947 Q6NUJ2 -399949 E9PAN0 -399949 Q6PI97 -399967 Q6UY27 -399968 P0C8F1 -399979 Q92543 -400073 Q8N812 -400120 A2A2V5 -400165 Q6ZP68 -400224 B9EJC2 -400258 Q8N912 -400359 Q8NAA6 -400360 Q8N8G6 -400410 Q9HBF5 -400451 Q3ZCQ3 -400506 Q1ED39 -400566 Q6ZQX7 -400569 Q9P086 -400581 Q8TC17 -400591 A2RUQ5 -400629 Q8NA77 -400668 Q6UWY2 -400673 Q2NL98 -400713 Q6PDB4 -400720 A6NJK9 -400720 Q68DY9 -400735 O60810 -400736 Q5VWM6 -400745 Q6ZV89 -400746 Q5T1S8 -400757 Q5JVX7 -400793 A1L170 -400818 Q3BBV1 -400823 A6PVY3 -400830 Q7Z7B7 -400831 A1L168 -400916 Q8WYQ3 -400935 Q6ZVW7 -400950 Q6ZV80 -400954 Q6ZMW3 -400961 Q9ULR5 -401027 Q6UXQ4 -401036 Q6ZVZ8 -401052 B3KMQ7 -401067 B2RUV0 -401067 P0C7M6 -401089 Q6ZUU3 -401097 F5H4A9 -401124 Q6ZMT9 -401136 B3KVV0 -401137 Q6MZM9 -401138 F1T0L8 -401138 Q6UX39 -401145 Q9C0I3 -401152 Q8WVX3 -401190 Q6MZT1 -401207 A6NC05 -401207 G3V557 -401250 P59942 -401251 Q5SSQ6 -401262 Q6Q6R5 -401265 Q9H511 -401285 B9ZVM9 -401335 Q6ZTY9 -401387 A4D1F6 -401388 B7ZVW6 -401388 Q6ZVN7 -401399 C9JH25 -401409 A4D1S5 -401427 Q96R45 -401466 Q8N0T1 -401474 B8ZZB7 -401474 Q8N8I0 -401494 Q5VWC8 -401498 Q68D42 -401505 F6S928 -401505 Q5JRT7 -401505 Q8N4H5 -401535 A2RU37 -401541 B3KRA5 -401541 Q6IPU0 -401541 Q7Z672 -401546 A8K2L3 -401546 Q5JTZ5 -401548 Q5VWJ9 -401551 Q5JTN6 -401562 Q6ZST4 -401563 Q6ZV77 -401565 Q6J272 -401612 Q5H9E4 -401647 Q2TAP0 -401647 Q6ZUQ1 -401665 Q8NGJ9 -401666 Q8NGJ6 -401667 Q8NGJ7 -401720 A6NMB9 -401720 Q6ZP58 -401827 Q96KJ4 -401934 E7ERA6 -401944 Q5SZI1 -401992 Q6IF00 -401993 Q6IEZ7 -401994 A6ND48 -402055 Q9UH36 -402117 B2RUY7 -402117 B7X8X1 -402135 Q8NHB8 -402317 Q8NGT9 -402381 Q5JUK2 -402415 Q6PP77 -402569 A9QM74 -402573 Q8IZ16 -402665 A6NGN9 -402682 Q6NVU6 -402778 A6NMD0 -403239 Q8NH04 -403244 Q8NGX2 -403253 Q6IF82 -403273 A6NHG9 -403274 A6NDH6 -403277 A6NET4 -403278 A6NMS3 -403282 A6NJZ3 -403284 A6NDL8 -403313 Q8IY26 -403314 Q8WW27 -403339 Q30KQ1 -403341 Q8NCN2 -404037 Q86UW8 -404093 Q9NWM3 -404203 E0X656 -404203 Q6UWN8 -404217 P60606 -404220 B3KW47 -404220 Q7Z4U5 -404281 O15391 -404550 Q96GX8 -404552 Q6XE38 -404636 Q8TCE6 -404672 Q6ZYL4 -404734 Q8IWZ2 -404785 Q6S5H5 -405753 Q1HG44 -405754 P60508 -407738 Q7Z5A9 -407977 Q8IZK7 -408029 Q580R0 -408050 P69849 -408050 Q1LZN2 -408187 Q6IE38 -408263 Q8TBE3 -414059 A6NDS4 -414059 Q8IZP1 -414060 A6NI40 -414060 A8K8E3 -414060 Q6IPX1 -414061 Q8WWF6 -414062 P16619 -414149 Q8N6N7 -414152 Q8TEF2 -414157 Q5T681 -414236 Q5SWW7 -414301 Q8WTU0 -414318 Q8NAJ2 -414325 P81534 -414328 F8W7J0 -414328 Q5T6J7 -414332 Q6JVE6 -414899 Q8IZY5 -414918 Q8NEG7 -414919 Q6P1X6 -415116 Q86V86 -415117 Q8N4C7 -425054 C9JS46 -425054 Q9H321 -431704 Q2M5E4 -431705 Q6HA08 -431707 Q68G74 -439915 Q701N2 -439921 P84157 -439996 Q5T764 -440021 Q701N4 -440023 Q6L8G9 -440026 E9PP29 -440026 Q5BJD5 -440044 A6NK97 -440050 Q6L8G8 -440051 Q6L8G4 -440068 Q5XLA6 -440073 Q9UPP2 -440077 Q6ZN79 -440087 A2RU48 -440093 Q6NXT2 -440097 Q6ZNG2 -440107 Q6ZR37 -440138 Q2TAA5 -440145 Q08AG7 -440153 B2RN74 -440163 Q5GAN3 -440193 B4DZB8 -440193 Q9P219 -440270 A8MQT2 -440275 Q9P2K8 -440279 Q8NB66 -440295 A6NEM1 -440307 A6NNM8 -440348 C9J9U8 -440387 Q6GPI1 -440400 G3V1Z9 -440400 Q6P5S7 -440435 Q6PRD1 -440498 C9JCN9 -440503 Q00G26 -440515 Q5JVG8 -440533 A5PKV3 -440533 Q9UQ74 -440560 O60813 -440561 Q5VXH4 -440563 B2RXH8 -440574 Q5TGZ0 -440585 A6NL82 -440590 Q6WRX3 -440603 Q5TBC7 -440689 B4DLA9 -440689 Q5QNW6 -440695 Q6ZN32 -440699 Q8N7C0 -440712 Q6ZWK4 -440730 Q6ZTA4 -440738 Q9BXW4 -440822 Q7Z3Z3 -440836 A1L1A8 -440836 A8MYP8 -440854 A8MX76 -440854 B7Z467 -440955 A2RUT3 -440957 Q8WVI0 -441024 Q9H903 -441027 B9EJG8 -441054 A7E2U8 -441056 E9PEK5 -441061 A6NNE9 -441150 Q5I0X4 -441151 Q8IW70 -441161 A6NGQ2 -441168 Q5R3K3 -441250 Q6NUM6 -441272 A6NKU9 -441273 Q495Y8 -441282 C9JRZ8 -441294 A4D2H0 -441308 O95013 -441314 P0C7W8 -441315 A8MXJ8 -441317 A6NKC0 -441324 A6NJQ4 -441326 A6NE21 -441327 A6NNJ1 -441328 A6NDY2 -441376 B2RU19 -441376 Q4LEZ3 -441381 Q50LG9 -441425 Q5VUR7 -441430 Q5SQ80 -441457 Q5VZR2 -441476 Q8N7X2 -441478 Q7Z6K4 -441509 Q5JXX5 -441518 Q17RB0 -441519 Q8NHU0 -441520 Q8N7B7 -441521 Q6NSH3 -441525 Q5MJ08 -441531 Q8N0Y7 -441549 Q49AH0 -441581 Q96QU4 -441608 Q8NH48 -441631 A1L157 -441639 Q8NGE7 -441669 Q8NH05 -441670 Q8NGD0 -441864 B6A8C7 -441869 E5RJM6 -441871 Q5VXH5 -441911 Q5JRS4 -441932 A6NFC9 -441933 Q8NGZ3 -442038 Q6IMI6 -442117 E5D8G0 -442117 Q49A17 -442186 O76001 -442191 Q9UGF5 -442194 Q96KK4 -442213 B2RPC0 -442213 Q6ZW05 -442247 Q6ZWI9 -442319 A8MUV8 -442361 Q6IF42 -442425 Q5VYV0 -442444 Q5HY64 -442590 A6NIY4 -442721 Q6P5Q4 -442862 O14603 -442867 O14599 -442868 O14599 -444882 Q6B9Z1 -445328 A5YM69 -445329 P50224 -445329 Q1ET61 -445347 A2JGV3 -445347 Q0VGM3 -445372 B2RNG4 -445571 Q5JTY5 -445571 Q6VB91 -445577 Q5T035 -445582 Q6S8J3 -445815 Q9Y2D5 -448831 Q64ET8 -448834 Q5T749 -448835 A0A183 -474170 A6NM11 -474170 Q5YKG5 -474343 Q9BPZ2 -474344 B4DH95 -474344 C9J7B6 -474344 Q6P9H5 -474354 Q8N456 -474381 P0C5Z0 -474382 P0C5Y9 -474383 P23610 -474384 P23610 -492307 Q8WWR9 -492311 A6NJ69 -493753 Q86WW8 -493829 Q6ZMU5 -493856 Q8N5K1 -493860 Q6ZRK6 -493861 Q8N140 -493869 Q8TED1 -493901 Q5GAN4 -493911 Q8TCD6 -494115 Q96E39 -494118 Q5VSR9 -494119 Q5MJ10 -494143 Q8WUX2 -494188 Q5MNV8 -494197 Q5MJ07 -494470 B3KVD1 -494470 Q6ZSG1 -494513 Q0ZLH3 -494514 Q8TAI1 -494551 P0C1S8 -497189 Q6ZNK6 -497190 Q6UXF7 -497661 Q8TCD1 -503497 Q5J8X5 -503542 Q5BIV9 -503582 A6NJG6 -503614 Q8IZN7 -503618 Q8WTQ1 -503834 A6NFQ7 -503835 A6NLW8 -503841 Q8N104 -504180 Q8NG35 -504189 P0C7N1 -504190 P0C7N5 -504191 P0C7N8 -541465 Q8N7B7 -541466 Q5HYN5 -541468 Q96LR2 -541565 Q8NAV2 -541578 Q96DE9 -542767 Q58A44 -548313 A8MYD4 -548313 O60224 -548324 Q8N7I0 -548593 Q9BQ83 -548596 P12532 -548644 Q9GZM3 -548645 Q9H1X3 -550631 Q569K6 -552889 Q96GX2 -552891 Q9H1X3 -552900 Q9H3K6 -553115 Q9UBV8 -553128 Q8NHK4 -553158 F8W6F3 -554223 Q86V94 -554235 A6ND91 -554251 Q5FWF7 -554313 B2R4R0 -554313 P62805 -574016 Q5K130 -574414 Q5T870 -574537 Q9Y4X1 -594855 Q8WVH0 -594857 P0C0P6 -606495 Q6IPT4 -613209 Q30KP9 -613210 Q30KP8 -613211 Q4QY38 -613212 Q4LDR2 -613227 A8MV81 -619189 A6NH21 -619208 Q4G0N7 -619279 Q6ZNC4 -619373 Q96T53 -641339 E9PHQ4 -641339 Q2M3X9 -641371 E9KL42 -641371 Q86TX2 -641372 Q3I5F7 -641455 A6NI47 -641649 C9J9D1 -641649 C9JZ62 -641649 C9K046 -641649 Q6P434 -641649 Q6ZNR0 -641654 Q6WQI6 -641700 C3RSF2 -641700 Q19T08 -642265 Q5RGS2 -642273 Q1W6H9 -642446 A6NI03 -642475 A6NGR9 -642517 D3YTF3 -642597 P0CW23 -642612 P0CI26 -642623 P0CB47 -642636 Q9H4I0 -642658 Q7RTU7 -642778 F8WFD2 -642778 O15103 -642799 O15103 -642799 Q9UND3 -642843 A6NMK7 -642938 Q6ZSG2 -642968 A8MTS3 -642968 P0C2L3 -642987 C9JQI7 -643008 Q71RC9 -643155 Q7Z3B0 -643161 Q5VTM1 -643226 A6NFK2 -643236 A0PK05 -643246 A6NCE7 -643311 P0C2W7 -643314 O94854 -643338 A8K5M9 -643376 B2RXH4 -643382 P0C7T8 -643394 Q5DT21 -643414 Q5VXJ0 -643418 Q5VXI9 -643596 P0DH78 -643641 O60290 -643664 P0C7Q6 -643803 Q3LI83 -643812 Q3LI81 -643832 A6NGK3 -643834 F8WAB4 -643836 Q8NB50 -643847 P00790 -643853 Q6ZT21 -643854 A4FU28 -643866 Q6UW01 -643904 A6NCQ9 -643905 Q8WXC7 -643965 A6NKF7 -643988 F2Z333 -644019 Q4V339 -644041 Q68DL7 -644054 Q5VTM1 -644096 A6NFY7 -644139 P0C851 -644150 B8ZZV2 -644168 C9JW76 -644186 A1L190 -644353 P0CG32 -644378 Q5T4J0 -644414 P59861 -644524 Q9H2Z4 -644538 Q96HG1 -644591 A2BFH1 -644672 C9JDP6 -644809 Q8N910 -644815 A6ND36 -644844 C9JFL3 -644890 Q5JSS6 -644943 A6NK89 -644974 C9J202 -645027 A8MZ36 -645073 O76087 -645073 P0CL80 -645073 P0CL81 -645073 P0CL82 -645090 A6PW82 -645104 A0PK11 -645121 Q6ZMN8 -645142 F5H284 -645191 P0C6S8 -645202 B4DY83 -645202 C9IYW0 -645369 A6NKL6 -645414 F5H544 -645425 Q5VT98 -645432 A6NEK1 -645651 P0C7W9 -645832 Q9HB31 -645840 Q6F5E7 -645843 Q6UXP3 -645879 A8MX19 -645961 B4DYI2 -645961 Q9Y4N5 -645974 Q5JQF8 -646000 P0C7Q5 -646019 A6NI87 -646174 A8MZG2 -646409 Q6IED9 -646424 P0C7L1 -646450 Q8N7S6 -646480 Q0Z7S8 -646486 A6NFH5 -646508 A6NNH2 -646603 C9J302 -646625 A6NGE7 -646627 Q6UX82 -646643 P0C263 -646658 A6NDD5 -646799 A6NP61 -646802 A6NCX1 -646851 B7Z7C6 -646851 F5H4B4 -646892 A6NKC9 -646960 P0CW18 -646962 Q6UXD1 -647024 Q5T0Z8 -647042 A6NI86 -647060 Q5TZJ5 -647087 E0CX11 -647174 A8MV23 -647309 A6NCL1 -647310 C9J3V5 -647589 E9PGG2 -647589 Q96MC1 -648791 B7ZBB8 -649330 B7ZW38 -650293 Q8NGT4 -651746 A6NCL7 -652968 Q8WTX7 -653048 Q9HD64 -653067 Q9HD64 -653121 Q96BR9 -653129 Q4JDK3 -653129 Q4JDL3 -653140 Q86W67 -653145 P13928 -653149 E9PDL3 -653149 Q5VWK0 -653192 A6NCK2 -653219 Q9HD64 -653220 Q9HD64 -653240 Q9BYQ6 -653268 Q5VUJ5 -653269 P0CG38 -653275 P0CG36 -653282 Q5JQC4 -653308 P0C7U1 -653308 Q9NR71 -653319 Q68EN5 -653333 P0C5J1 -653361 P14598 -653404 Q3SYB3 -653423 Q6PDA7 -653427 Q5VV16 -653437 A6NM10 -653437 Q8IUS6 -653486 Q8TD33 -653489 A6NKT7 -653499 P47929 -653505 Q9Y536 -653509 B4DNP6 -653509 E3VLE0 -653509 G5E9J3 -653509 Q8IWL2 -653519 B4DLT3 -653519 B7ZAQ6 -653519 P0CG08 -653543 F5GZ66 -653544 F5GZ66 -653545 F5GZ66 -653548 F5GZ66 -653550 Q9ULZ0 -653567 Q5W0B7 -653583 Q6NSJ2 -653583 Q96HZ0 -653598 Q9Y536 -653604 Q71DI3 -653606 A3QJZ6 -653619 Q5VWM5 -653641 A6NDK9 -653643 P0CG33 -653656 A6NDZ8 -653657 A6NE82 -653659 Q1AE95 -653689 P0CG30 -653781 P0CG39 -653784 Q6P582 -653808 O60844 -653820 Q86X60 -653857 Q9C0K3 -654231 P0CE72 -654254 B4DXR9 -654341 Q6DHY5 -654341 Q6IPX1 -654346 Q6DKI2 -654348 Q5VWM1 -654364 P22392 -654429 A7E2U6 -654429 Q8N967 -654463 Q2WGJ9 -654483 Q9H3K6 -654502 B7ZMM2 -654502 Q1A5X6 -654790 A6NKN8 -692094 Q1L6U9 -692312 C9J3F9 -692312 Q9NQ55 -723790 Q6FI13 -723961 F8WCM5 -723961 Q1WM24 -727738 P15514 -727738 Q5U026 -727764 Q8WZ33 -727800 Q9H0X6 -727830 Q5VYP0 -727832 A8MZA4 -727837 Q16385 -727851 O14715 -727857 Q7RTU4 -727866 Q8NDB6 -727897 Q9HC84 -727905 Q5VU36 -727910 A6NGC4 -727936 A0PJZ3 -727940 P0C7M4 -727957 Q8NDA8 -727983 E2QRI0 -728036 Q5JQC4 -728042 Q5JQC4 -728047 E7ENU5 -728049 Q5JQC4 -728062 Q5JQC4 -728071 P0CB43 -728072 Q5JQC4 -728075 Q5JQC4 -728082 Q5JQC4 -728090 Q5JQC4 -728096 Q5JQC4 -728113 Q5T2P8 -728116 Q8NAP8 -728118 Q8IVF1 -728130 Q5VT03 -728137 P0CV98 -728137 Q01534 -728194 B2RC85 -728215 B1AL88 -728224 Q9BYQ9 -728239 Q96JG8 -728242 Q96GT9 -728262 C9JC47 -728269 P43362 -728279 A8MTN3 -728294 Q8N465 -728299 Q3LI54 -728318 A8MXZ3 -728340 Q6P1K8 -728343 Q9GZY0 -728358 P59665 -728369 Q0WX57 -728373 Q0WX57 -728378 A5A3E0 -728379 Q0WX57 -728386 A8MUK1 -728393 Q0WX57 -728395 P0CV99 -728395 P0CW00 -728395 P0CW01 -728400 Q0WX57 -728403 A6NGL4 -728404 Q5SRD3 -728405 Q0WX57 -728410 F5GZ66 -728419 Q0WX57 -728430 A6NIJ5 -728458 P04001 -728461 Q9Y5P2 -728464 Q5JXM2 -728489 Q5SXM8 -728492 O75920 -728513 P0C5W0 -728513 P0CW24 -728568 Q69YU5 -728577 Q96NU0 -728591 A6NNP5 -728591 B7ZW49 -728621 Q5VVM6 -728635 P0CG22 -728642 Q4VBY6 -728642 Q9UQ88 -728656 Q5HYR2 -728661 P0CK96 -728689 B5ME19 -728695 Q9NS25 -728712 Q9NS26 -728747 Q4UJ75 -728753 A6NE21 -728833 Q6L9T8 -728858 A8MTZ7 -728911 Q5DJT8 -728912 Q5RGN0 -728927 B4DX44 -728929 Q3SY89 -728932 A6NKF9 -728945 F5H284 -728957 P0CH99 -729020 Q2QD12 -729025 A6NIM6 -729085 Q9UFP1 -729092 A6NIR3 -729201 Q96QH8 -729220 Q6ZSH9 -729230 P41597 -729230 Q4VBL2 -729233 P86478 -729233 P86479 -729233 P86480 -729233 P86481 -729233 P86496 -729238 E3VLC8 -729238 Q8IWL1 -729240 P86478 -729240 P86479 -729240 P86480 -729240 P86481 -729240 P86496 -729246 P86478 -729246 P86479 -729246 P86480 -729246 P86481 -729246 P86496 -729250 P86478 -729250 P86479 -729250 P86480 -729250 P86481 -729250 P86496 -729264 Q9ULZ0 -729288 P0CG31 -729330 Q02509 -729355 Q9ULZ0 -729359 Q96Q06 -729384 C9J1S8 -729396 A6NER3 -729408 Q9UEU5 -729422 A1L429 -729428 A1L429 -729431 A1L429 -729438 A6NHX0 -729442 A6NDE8 -729447 Q6NT46 -729458 Q8NHZ7 -729475 Q09MP3 -729515 Q9NWH2 -729528 Q5SWL7 -729533 Q5TYM5 -729540 Q99666 -729574 A6NEA5 -729587 A6NEA5 -729597 P0CI01 -729627 A6NEV1 -729648 P0C7V5 -729665 G3V5J7 -729747 C9JN71 -729759 Q6IEY1 -729767 A8MTB9 -729830 Q05DH4 -729857 B4DYH0 -729873 A8MV28 -729873 Q6DHY5 -729873 Q6IPX1 -729873 Q8IZP1 -729877 A6NH17 -729920 A4D126 -729956 A6NL88 -729967 Q502X0 -729974 F8VTS6 -729991 Q96FH0 -729993 B4DS77 -730005 B5MCN3 -730051 B7Z6K7 -730112 A8MTA8 -730130 B2RXF0 -730256 F5H305 -730262 F5H284 -730291 P0CB33 -730394 Q6P1K8 -730755 Q9BYR9 -731220 Q6ZV50 -751071 A8MUP2 -752014 Q6PRD7 -767558 Q538Z0 -768206 Q00LT1 -768211 Q8IUW5 -768239 Q6NUJ1 -780776 A6NH52 -790955 Q6UW78 -100008586 O76087 -100008586 P0CL80 -100008586 P0CL81 -100008586 P0CL82 -100036519 Q6VB85 -100036519 Q8WXT5 -100037417 A6NHG4 -100038246 P0CAT3 -100049587 Q08ET2 -100101267 A8CG34 -100101467 Q86W11 -100101629 Q9UEU5 -100113407 Q5T4T1 -100125288 P0C6A0 -100127885 Q6SA06 -100127889 B4DG41 -100128124 Q9UM08 -100128327 Q5T215 -100128496 Q9BR46 -100128553 Q8IX94 -100128569 A6NCJ1 -100128731 P0C6T2 -100128927 B2RXF5 -100129128 Q5JSQ8 -100129271 Q5T750 -100129307 A8MX80 -100129583 Q6ZV65 -100129792 Q4G0S7 -100129842 C9JHM3 -100129885 Q7RTU7 -100130086 Q9UBD0 -100130156 Q8N7Y7 -100130274 P0CW27 -100130311 Q6ZR85 -100130539 B7Z368 -100130613 B1ATL7 -100130733 Q7Z2Q7 -100130742 Q6ZNQ3 -100130827 P0C264 -100130933 P0DI80 -100130958 A8MT33 -100130967 Q4VX62 -100131094 Q6ZTZ0 -100131107 A8MUI8 -100131137 Q075Z2 -100131187 Q8NFU3 -100131211 A6NFY4 -100131244 C9JTQ0 -100131378 Q3C1V1 -100131390 P0CG40 -100131392 C9J1S8 -100131439 Q6UXZ3 -100131801 P0DJ07 -100131827 C9JSV9 -100131897 A6NMK8 -100131902 Q3LHN0 -100131980 A8MUZ8 -100131997 Q08E93 -100132055 P0CG43 -100132146 Q6ZNS2 -100132174 Q6ZRX7 -100132202 E7EU86 -100132247 A8MRT5 -100132247 B4E0Y1 -100132285 P43631 -100132285 Q14949 -100132285 Q14950 -100132386 Q9BYQ8 -100132396 P0CI00 -100132399 A1L429 -100132403 P0CG42 -100132406 A6NDV3 -100132463 F5H040 -100132911 Q9H4G8 -100132916 A6NKW6 -100132929 Q5VTM1 -100132963 A6NGZ8 -100133046 Q8N743 -100133093 Q5VTM1 -100133171 Q9NS25 -100133267 Q30KQ2 -100133301 A6NCW3 -100133941 B6EC88 -100133941 P25063 -100134444 B7U540 -100134934 D3U720 -100134934 Q86WV5 -100134938 B0FP48 -100137047 P0C870 -100137049 P0C869 -100141515 Q6UX52 -100144748 B2CW77 -100169851 B3GLJ2 -100170229 B3KS81 -100170229 Q4G0Z0 -100170765 A6NGS2 -100170841 A6NHQ4 -100188893 Q96B49 -100190949 A6NGY3 -100191040 B7Z1M9 -100271846 B6SEH9 -100271849 G5E9M1 -100271927 C9J798 -100271927 F5GXT2 -100271927 F8W6L0 -100272147 P56277 -100272148 Q32VQ0 -100286914 D6R9T1 -100287036 B7Z1S9 -100287045 D6RGX4 -100287144 C9JJH3 -100287171 A8K0Z3 -100287178 C9JVI0 -100287205 C9JPN9 -100287238 C9JLJ4 -100287290 Q7Z585 -100287327 D6RBQ6 -100287362 E5RG02 -100287364 D6R9N7 -100287404 D6RCP7 -100287428 P0CW26 -100287428 P0CZ20 -100287441 D6RJB6 -100287466 P0CW26 -100287466 P0CZ20 -100287478 D6R901 -100287513 D6RA61 -100287515 F5H6R4 -100287515 P17031 -100287654 D6R9T1 -100287718 B4E2M5 -100287898 A8MYJ7 -100287932 O14925 -100288255 Q64ET8 -100288287 Q3LI68 -100288323 Q3LHN1 -100288332 C9J9V8 -100288332 E9PKD4 -100288332 Q0P618 -100288368 B7Z384 -100288413 Q9H9K5 -100288485 P0CJ74 -100288562 F5GW92 -100288601 B4DXX6 -100288646 D6R9T1 -100288676 B9EGU7 -100288695 P0CW19 -100288695 P0CW20 -100288797 Q8WW34 -100288801 A6NGY1 -100288902 Q6ZUI3 -100288966 Q86YR6 -100289087 F2Z2I4 -100289087 P0CV98 -100289087 Q01534 -100289151 B7Z2W2 -100289296 Q6ZUI3 -100289462 O15263 -100289635 B3KVG4 -100289635 Q86T29 -100289678 C9J9J2 -100293516 B4DR41 -100293516 E7ETH6 -100293534 A2BHY4 -100293534 P0C0L5 -100293977 B4DJG1 -100293977 P01920 -100294341 F8W153 -100302652 Q2TAI4 -100302736 Q6JUT2 -100302736 Q86XR7 -100302736 Q8NBU8 -100303755 Q6UWS5 -100310812 A6NHP3 -100316904 Q8TEE9 -100329135 A6NMA1 -100381270 P86452 -100423062 B9A064 -100431172 D3W0D1 -100462977 P0CJ68 -100462981 P0CJ69 -100462983 P0CJ70 -100463285 P0CJ71 -100463289 P0CJ72 -100463482 P0CJ73 -100463486 P0CJ75 -100463488 P0CJ77 -100499483 B4DZK1 -100499483 Q9P1Z9 -100505385 B3KU38 -100505385 Q9P0W5 -100505503 P08708 -100505503 P0CW22 -100505591 A6NJW4 -100505603 Q9NPJ4 -100505724 A8MTY7 -100505753 A8MUX0 -100505793 B4DJP9 -100505793 O75494 -100505870 Q9P1L5 -100505970 Q6ZP64 -100506049 A6NJI9 -100506084 Q8IVW1 -100506144 Q8NCS4 -100506164 Q9UBD0 -100506243 C9JBD0 -100506255 Q6ZT95 -100506290 F5GWC1 -100506422 Q6ZN92 -100506447 Q6ZQP9 -100506504 Q9NW32 -100506571 Q9NT86 -100506581 Q9H693 -100506596 A0PK07 -100506650 F2Z3M2 -100506658 A8K3T2 -100506658 D2DU64 -100506658 Q16625 -100506688 Q6ZTU6 -100506736 F5H6G3 -100506736 Q6IEE8 -100506742 D6RBN7 -100506742 Q6UXS9 -100506871 Q6UXV5 -100506888 A6NLF2 -100507170 Q5JQC4 -100507200 D6R9T1 -100507290 P0CJ78 -100507436 Q29983 -100507436 Q96QC4 -100507445 Q6ZPB6 -100507527 C9W8M7 -100507608 A8MVA2 -100507679 E2RYF6 -100507709 D7RIG5 -100507709 P13761 -100507714 D7RIG5 -100507714 P13761 -100507718 Q5Y7H0 -100507855 P27144 -100507904 Q6P5W2 -100508383 C9JSC8 -100509121 Q8N4A2 -100509457 P01909 -100509457 Q08AS3 -100509575 B7Z813 -100509620 Q8WX69 -100509646 O14603 -100526664 O60449 -100526693 E7ETI0 -100526694 Q8IYR6 -100526737 B0LM41 -100526737 D6RGD8 -100526739 Q8N2Z9 -100526740 B4DJ38 -100526740 G3V325 -100526761 B4DX90 -100526767 Q9Y3E7 -100526772 A8MSY1 -100526773 A6PVD6 -100526783 E2QRD5 -100526794 Q96P26 -100526832 Q8NBE8 -100526835 Q59H18 -100527963 Q6P1K2 -100528030 B4DMX6 -100528030 F8VUJ3 -100528032 P26718 -100528062 Q96D09 -100529215 E9PDG0 -100529215 Q13360 -100529240 Q8N8H1 -100529251 E9PSG2 -100529261 B4DL54 -100529261 B4E1A0 -100532726 E9PQ53 -100532731 P35226 -100532736 P41271 -100533105 Q96BR1 -100533106 Q96EF9 -100533183 Q6ZTI6 -100533467 Q59FZ7 -100533496 Q96ET8 -100533952 F8W6M7 -100533997 P43359 -100534012 Q9BWG6 -100534599 Q9ULR0 -100631383 Q6ZV65 -100652736 F1T0H6 -100652758 F1T0I6 -100652763 Q6ZNP8 -100652774 Q6UWF6 -100652775 F1T0M2 -100652822 Q8N7A4 -100652825 Q9H5S2 -100652835 F1T0J5 -100652853 F1T0I4 -100652894 Q6ZQR8 -100652901 Q6ZNX4 -100652926 Q6ZR93 -100652929 F1T0K8 -100652943 Q6ZUQ7 -100653022 Q8WYW9 -100653049 O76011 -100653061 B7ZVW5 -100653061 Q15486 -100653071 B4DPA3 -100653074 Q96T57 -100653075 F1T0I6 -100653112 Q8IZP7 -100653121 Q6UWF6 -100653123 F1T0M2 -100653137 Q5QGS5 -100653137 Q5QGS6 -100653137 Q8N5B3 -100653140 F1T0I4 -100653147 B5BUM4 -100653180 Q6ZNX4 -100653194 Q5TFQ8 -100653202 F1T0H6 -100653219 Q6ZNP8 -100653227 Q9P192 -100653230 F1T0K8 -100653254 Q6UXU0 -100653256 Q6ZP24 -100653271 Q8WYW9 -100653286 B4DKR9 -100653301 Q9NSY0 -100653323 Q9NZ47 -100653325 Q9H5S2 -100653328 Q6ZUQ7 -100653358 D6R9T1 -100653515 Q96MC4 -100820829 P0CAP1 diff --git a/core/src/main/resources/sample_data/genes/universalSomaticGeneWhitelist.txt b/core/src/main/resources/sample_data/genes/universalSomaticGeneWhitelist.txt deleted file mode 100644 index 5152e8343dd..00000000000 --- a/core/src/main/resources/sample_data/genes/universalSomaticGeneWhitelist.txt +++ /dev/null @@ -1,8 +0,0 @@ -PTEN -PIK3CA -KRAS -BRAF -NF1 -RB1 -TP53 -EGFR diff --git a/core/src/main/resources/sample_data/network/cell-map.sif b/core/src/main/resources/sample_data/network/cell-map.sif deleted file mode 100644 index 30c26bfe2db..00000000000 --- a/core/src/main/resources/sample_data/network/cell-map.sif +++ /dev/null @@ -1,2027 +0,0 @@ -ABI1 INTERACTS_WITH SOS1 -ABL1 INTERACTS_WITH TP73 -ACTL6A INTERACTS_WITH RELA -AES INTERACTS_WITH AR -AKT1 IN_SAME_COMPONENT APPL1 -AKT1 INTERACTS_WITH APPL1 -AKT1 INTERACTS_WITH AR -AKT1 INTERACTS_WITH CHUK -AKT1 INTERACTS_WITH RAF1 -AKT1 STATE_CHANGE AR -AKT1 STATE_CHANGE CHUK -AKT1 STATE_CHANGE FOXO1 -AKT1 STATE_CHANGE MST1R -AKT1 STATE_CHANGE RAF1 -AKT1 STATE_CHANGE STAT1 -AKT2 INTERACTS_WITH CHUK -AKT2 STATE_CHANGE CHUK -ALPL INTERACTS_WITH MAP3K14 -ALPL INTERACTS_WITH TRAF2 -ALPL INTERACTS_WITH TRAF3 -ANAPC10 IN_SAME_COMPONENT ANAPC1 -ANAPC10 IN_SAME_COMPONENT ANAPC2 -ANAPC10 IN_SAME_COMPONENT ANAPC4 -ANAPC10 IN_SAME_COMPONENT ANAPC5 -ANAPC10 IN_SAME_COMPONENT CDC23 -ANAPC10 IN_SAME_COMPONENT CDC27 -ANAPC10 INTERACTS_WITH FZR1 -ANAPC1 IN_SAME_COMPONENT ANAPC10 -ANAPC1 IN_SAME_COMPONENT ANAPC2 -ANAPC1 IN_SAME_COMPONENT ANAPC4 -ANAPC1 IN_SAME_COMPONENT ANAPC5 -ANAPC1 IN_SAME_COMPONENT CDC23 -ANAPC1 IN_SAME_COMPONENT CDC27 -ANAPC1 INTERACTS_WITH FZR1 -ANAPC2 IN_SAME_COMPONENT ANAPC1 -ANAPC2 IN_SAME_COMPONENT ANAPC10 -ANAPC2 IN_SAME_COMPONENT ANAPC4 -ANAPC2 IN_SAME_COMPONENT ANAPC5 -ANAPC2 IN_SAME_COMPONENT CDC23 -ANAPC2 IN_SAME_COMPONENT CDC27 -ANAPC2 INTERACTS_WITH FZR1 -ANAPC4 IN_SAME_COMPONENT ANAPC1 -ANAPC4 IN_SAME_COMPONENT ANAPC10 -ANAPC4 IN_SAME_COMPONENT ANAPC2 -ANAPC4 IN_SAME_COMPONENT ANAPC5 -ANAPC4 IN_SAME_COMPONENT CDC23 -ANAPC4 IN_SAME_COMPONENT CDC27 -ANAPC4 INTERACTS_WITH FZR1 -ANAPC5 IN_SAME_COMPONENT ANAPC1 -ANAPC5 IN_SAME_COMPONENT ANAPC10 -ANAPC5 IN_SAME_COMPONENT ANAPC2 -ANAPC5 IN_SAME_COMPONENT ANAPC4 -ANAPC5 IN_SAME_COMPONENT CDC23 -ANAPC5 IN_SAME_COMPONENT CDC27 -ANAPC5 INTERACTS_WITH FZR1 -APC IN_SAME_COMPONENT AXIN1 -APC IN_SAME_COMPONENT CTNNB1 -APC INTERACTS_WITH AXIN1 -APC INTERACTS_WITH CTNNB1 -APC INTERACTS_WITH DLG4 -APC INTERACTS_WITH Fzd2 -APC INTERACTS_WITH GSK3B -APC INTERACTS_WITH JUP -APC INTERACTS_WITH TFAP2A -APH1A IN_SAME_COMPONENT APH1B -APH1A IN_SAME_COMPONENT NCSTN -APH1A IN_SAME_COMPONENT PSEN1 -APH1A IN_SAME_COMPONENT PSEN2 -APH1A IN_SAME_COMPONENT PSENEN -APH1A STATE_CHANGE APP -APH1A STATE_CHANGE JAG2 -APH1B IN_SAME_COMPONENT APH1A -APH1B IN_SAME_COMPONENT NCSTN -APH1B IN_SAME_COMPONENT PSEN1 -APH1B IN_SAME_COMPONENT PSEN2 -APH1B IN_SAME_COMPONENT PSENEN -APH1B STATE_CHANGE APP -APH1B STATE_CHANGE JAG2 -APPL1 IN_SAME_COMPONENT AKT1 -APPL1 INTERACTS_WITH AKT1 -APPL1 INTERACTS_WITH AR -APPL2 INTERACTS_WITH MTA2 -APPL2 INTERACTS_WITH RAB5A -APPL2 INTERACTS_WITH RBBP7 -ARAF STATE_CHANGE MAP2K1 -ARF4 INTERACTS_WITH EGFR -AR IN_SAME_COMPONENT RNF4 -AR INTERACTS_WITH AES -AR INTERACTS_WITH AKT1 -AR INTERACTS_WITH APPL1 -AR INTERACTS_WITH ATF2 -AR INTERACTS_WITH BAG1 -AR INTERACTS_WITH BRCA1 -AR INTERACTS_WITH CAV1 -AR INTERACTS_WITH CCND1 -AR INTERACTS_WITH CCNE1 -AR INTERACTS_WITH CCNH -AR INTERACTS_WITH CDC37 -AR INTERACTS_WITH CDK9 -AR INTERACTS_WITH COX5B -AR INTERACTS_WITH CREBBP -AR INTERACTS_WITH CTNNB1 -AR INTERACTS_WITH EGFR -AR INTERACTS_WITH ESR1 -AR INTERACTS_WITH ETV5 -AR INTERACTS_WITH FHL2 -AR INTERACTS_WITH FLNA -AR INTERACTS_WITH GTF2F1 -AR INTERACTS_WITH GTF2F2 -AR INTERACTS_WITH GTF2H1 -AR INTERACTS_WITH IL6ST -AR INTERACTS_WITH JUN -AR INTERACTS_WITH KAT2B -AR INTERACTS_WITH MDM2 -AR INTERACTS_WITH MNAT1 -AR INTERACTS_WITH MYST2 -AR INTERACTS_WITH NCOA1 -AR INTERACTS_WITH NCOA2 -AR INTERACTS_WITH NCOA3 -AR INTERACTS_WITH NCOR2 -AR INTERACTS_WITH NR0B2 -AR INTERACTS_WITH NR2C2 -AR INTERACTS_WITH NR5A1 -AR INTERACTS_WITH NSD1 -AR INTERACTS_WITH PA2G4 -AR INTERACTS_WITH PAK6 -AR INTERACTS_WITH PATZ1 -AR INTERACTS_WITH PIAS1 -AR INTERACTS_WITH PIAS3 -AR INTERACTS_WITH PIAS4 -AR INTERACTS_WITH PNRC1 -AR INTERACTS_WITH POU2F2 -AR INTERACTS_WITH PRMT1 -AR INTERACTS_WITH PRPF6 -AR INTERACTS_WITH PSMC3IP -AR INTERACTS_WITH PTEN -AR INTERACTS_WITH RAC3 -AR INTERACTS_WITH RAN -AR INTERACTS_WITH RANBP9 -AR INTERACTS_WITH RB1 -AR INTERACTS_WITH RCHY1 -AR INTERACTS_WITH RELA -AR INTERACTS_WITH RNF14 -AR INTERACTS_WITH RNF4 -AR INTERACTS_WITH RUNX2 -AR INTERACTS_WITH SMAD4 -AR INTERACTS_WITH SP1 -AR INTERACTS_WITH SPDEF -AR INTERACTS_WITH SRY -AR INTERACTS_WITH STAT3 -AR INTERACTS_WITH STUB1 -AR INTERACTS_WITH SVIL -AR INTERACTS_WITH TGFB1I1 -AR INTERACTS_WITH TGIF1 -AR INTERACTS_WITH TMF1 -AR INTERACTS_WITH UBE2I -AR INTERACTS_WITH UBE3A -ARRB2 INTERACTS_WITH DVL2 -ARRB2 INTERACTS_WITH FZD4 -ARRB2 INTERACTS_WITH TGFBR3 -ASAP1 INTERACTS_WITH SH3KBP1 -ATF2 INTERACTS_WITH AR -ATF2 INTERACTS_WITH SMAD4 -AXIN1 IN_SAME_COMPONENT APC -AXIN1 IN_SAME_COMPONENT CTNNB1 -AXIN1 IN_SAME_COMPONENT DVL3 -AXIN1 INTERACTS_WITH APC -AXIN1 INTERACTS_WITH CTNNB1 -Axin1 INTERACTS_WITH Dvl1 -AXIN1 INTERACTS_WITH GSK3B -AXIN1 INTERACTS_WITH LRP6 -AXIN1 INTERACTS_WITH MAP3K4 -AXIN1 INTERACTS_WITH PPP2CA -AXIN1 INTERACTS_WITH PPP2R5B -AXIN1 INTERACTS_WITH RUNX2 -AZI2 INTERACTS_WITH IKBKE -AZI2 INTERACTS_WITH TBK1 -BAG1 INTERACTS_WITH AR -BAG4 INTERACTS_WITH TNFRSF1A -BCL7A INTERACTS_WITH RELB -BCL9 IN_SAME_COMPONENT CTNNB1 -BIRC2 IN_SAME_COMPONENT RIPK1 -BIRC2 IN_SAME_COMPONENT TRADD -BIRC2 IN_SAME_COMPONENT TRAF2 -BIRC2 INTERACTS_WITH TNFRSF1A -BIRC2 INTERACTS_WITH TNFRSF1B -BIRC2 INTERACTS_WITH TRAF2 -BIRC2 STATE_CHANGE TRAF2 -BIRC3 IN_SAME_COMPONENT TRAF2 -BIRC3 INTERACTS_WITH TNFRSF1B -BRCA1 INTERACTS_WITH AR -BTRC INTERACTS_WITH SMAD4 -BTRC STATE_CHANGE SMAD4 -CAMK2B IN_SAME_COMPONENT CAMK2D -CAMK2B INTERACTS_WITH MAP3K7 -CAMK2B STATE_CHANGE MAP3K7 -CAMK2D IN_SAME_COMPONENT CAMK2B -CAMK2D INTERACTS_WITH MAP3K7 -CAMK2D STATE_CHANGE MAP3K7 -CAPN3 STATE_CHANGE NFKBIA -CASP10 IN_SAME_COMPONENT FADD -CASP10 IN_SAME_COMPONENT RIPK1 -CASP10 IN_SAME_COMPONENT TRADD -CASP10 IN_SAME_COMPONENT TRAF2 -CASP10 INTERACTS_WITH CASP8 -CASP2 INTERACTS_WITH CRADD -CASP3 INTERACTS_WITH CFLAR -CASP7 STATE_CHANGE TNFRSF1A -CASP8AP2 INTERACTS_WITH TRAF2 -CASP8 INTERACTS_WITH CASP10 -CASP8 INTERACTS_WITH FADD -CASP8 INTERACTS_WITH RIPK1 -CASP8 INTERACTS_WITH TRADD -CASP8 INTERACTS_WITH TRAF2 -CASP8 STATE_CHANGE MAP3K14 -CASP8 STATE_CHANGE RIPK1 -CASP9 INTERACTS_WITH MAPK1 -CASP9 INTERACTS_WITH MAPK3 -CAV1 IN_SAME_COMPONENT TRAF2 -CAV1 INTERACTS_WITH AR -CAV1 INTERACTS_WITH DNM1 -CAV1 INTERACTS_WITH EGFR -CAV1 INTERACTS_WITH GRB7 -CAV1 INTERACTS_WITH MAPK1 -CAV1 INTERACTS_WITH MAPK3 -CAV1 INTERACTS_WITH TNFRSF1B -CAV1 INTERACTS_WITH TRAF2 -CAV2 INTERACTS_WITH NCK1 -CAV2 INTERACTS_WITH RASA1 -CBLB INTERACTS_WITH EGFR -CBLB STATE_CHANGE EGFR -CBLC INTERACTS_WITH CRK -CBLC INTERACTS_WITH EGFR -CBLC INTERACTS_WITH SPRY2 -CBL IN_SAME_COMPONENT KIT -CBL INTERACTS_WITH CRKL -CBL INTERACTS_WITH EGFR -CBL INTERACTS_WITH KIT -CBL INTERACTS_WITH PIK3R1 -CBL INTERACTS_WITH PIK3R2 -CBL INTERACTS_WITH SH3KBP1 -CBL INTERACTS_WITH SHC1 -CBL STATE_CHANGE EGFR -CCNA2 INTERACTS_WITH CDK2 -CCNB1 IN_SAME_COMPONENT CDK1 -CCNB1 INTERACTS_WITH CDK1 -CCNB1 INTERACTS_WITH PTCH1 -CCNB2 IN_SAME_COMPONENT CDK1 -CCNB2 INTERACTS_WITH TGFBR2 -CCND1 IN_SAME_COMPONENT CDK4 -CCND1 IN_SAME_COMPONENT CDK6 -CCND1 INTERACTS_WITH AR -CCND1 STATE_CHANGE RB1 -CCND1 STATE_CHANGE RBL1 -CCND1 STATE_CHANGE RBL2 -CCNE1 IN_SAME_COMPONENT CDK2 -CCNE1 INTERACTS_WITH AR -CCNE1 INTERACTS_WITH CDK2 -CCNE1 INTERACTS_WITH RBL1 -CCNH IN_SAME_COMPONENT GTF2H1 -CCNH INTERACTS_WITH AR -CD151 INTERACTS_WITH ITGA6 -CD3EAP INTERACTS_WITH NFKBIB -CDC16 INTERACTS_WITH SKIL -CDC16 INTERACTS_WITH SMAD2 -CDC23 IN_SAME_COMPONENT ANAPC1 -CDC23 IN_SAME_COMPONENT ANAPC10 -CDC23 IN_SAME_COMPONENT ANAPC2 -CDC23 IN_SAME_COMPONENT ANAPC4 -CDC23 IN_SAME_COMPONENT ANAPC5 -CDC23 IN_SAME_COMPONENT CDC27 -CDC23 INTERACTS_WITH FZR1 -CDC25A INTERACTS_WITH ROCK1 -CDC25C STATE_CHANGE CDK1 -CDC27 IN_SAME_COMPONENT ANAPC1 -CDC27 IN_SAME_COMPONENT ANAPC10 -CDC27 IN_SAME_COMPONENT ANAPC2 -CDC27 IN_SAME_COMPONENT ANAPC4 -CDC27 IN_SAME_COMPONENT ANAPC5 -CDC27 IN_SAME_COMPONENT CDC23 -CDC27 INTERACTS_WITH FZR1 -CDC27 INTERACTS_WITH SKIL -CDC27 INTERACTS_WITH SMAD2 -CDC34 STATE_CHANGE NFKBIA -CDC37 IN_SAME_COMPONENT CHUK -CDC37 IN_SAME_COMPONENT HSP90AA1 -CDC37 INTERACTS_WITH AR -CDC37 INTERACTS_WITH CHUK -CDC37 INTERACTS_WITH IKBKE -CDC37 INTERACTS_WITH MAP3K14 -CDC37 INTERACTS_WITH MAP3K3 -CDC37 INTERACTS_WITH NR2C2 -CDC37 INTERACTS_WITH TBK1 -CDC37 REACTS_WITH CDC37 -CDC37 REACTS_WITH CHUK -CDC37 REACTS_WITH HSP90AA1 -CDC42 INTERACTS_WITH MAP3K4 -CDC42 INTERACTS_WITH TNK2 -CDH1 INTERACTS_WITH CTNNB1 -CDK1 IN_SAME_COMPONENT CCNB1 -CDK1 IN_SAME_COMPONENT CCNB2 -CDK1 INTERACTS_WITH CCNB1 -CDK1 INTERACTS_WITH PTCH1 -CDK1 INTERACTS_WITH TGFBR2 -CDK2 IN_SAME_COMPONENT CCNE1 -CDK2 INTERACTS_WITH CCNA2 -CDK2 INTERACTS_WITH CCNE1 -CDK2 INTERACTS_WITH CDKN1A -CDK2 INTERACTS_WITH ID2 -CDK2 INTERACTS_WITH ID3 -CDK2 INTERACTS_WITH RBL1 -CDK2 STATE_CHANGE ID2 -CDK2 STATE_CHANGE ID3 -CDK4 IN_SAME_COMPONENT CCND1 -CDK4 IN_SAME_COMPONENT CDK6 -CDK4 STATE_CHANGE RB1 -CDK4 STATE_CHANGE RBL1 -CDK4 STATE_CHANGE RBL2 -CDK6 IN_SAME_COMPONENT CCND1 -CDK6 IN_SAME_COMPONENT CDK4 -CDK6 STATE_CHANGE RB1 -CDK6 STATE_CHANGE RBL2 -CDK9 INTERACTS_WITH AR -CDKN1A INTERACTS_WITH CDK2 -CDX1 INTERACTS_WITH LEF1 -CEBPA INTERACTS_WITH MYC -CEBPB INTERACTS_WITH MYC -CFLAR INTERACTS_WITH CASP3 -CFLAR INTERACTS_WITH FADD -CFLAR INTERACTS_WITH NFKB1 -CFLAR INTERACTS_WITH TRAF2 -CHUK IN_SAME_COMPONENT CDC37 -CHUK IN_SAME_COMPONENT HSP90AA1 -CHUK INTERACTS_WITH AKT1 -CHUK INTERACTS_WITH AKT2 -CHUK INTERACTS_WITH CDC37 -CHUK INTERACTS_WITH CREBBP -CHUK INTERACTS_WITH FKBP5 -CHUK INTERACTS_WITH HSP90AA1 -CHUK INTERACTS_WITH HSP90AB1 -CHUK INTERACTS_WITH MAP3K14 -CHUK INTERACTS_WITH NFKB1 -CHUK INTERACTS_WITH NFKB2 -CHUK INTERACTS_WITH NFKBIA -CHUK INTERACTS_WITH NFKBIB -CHUK INTERACTS_WITH NLRP4 -CHUK INTERACTS_WITH PEBP1 -CHUK INTERACTS_WITH PTPN11 -CHUK REACTS_WITH CDC37 -CHUK REACTS_WITH CHUK -CHUK REACTS_WITH HSP90AA1 -CHUK STATE_CHANGE CHUK -CHUK STATE_CHANGE HIST3H3 -CHUK STATE_CHANGE NFKB1 -CHUK STATE_CHANGE NFKBIA -CHUK STATE_CHANGE NFKBIB -CHUK STATE_CHANGE RELA -CIR1 INTERACTS_WITH HDAC2 -CIR1 INTERACTS_WITH RBPJ -CIR1 INTERACTS_WITH SAP30 -CITED1 INTERACTS_WITH CREBBP -CITED1 INTERACTS_WITH EP300 -CITED1 INTERACTS_WITH HSPA8 -CITED1 INTERACTS_WITH SMAD4 -CLCA1 INTERACTS_WITH ITGB4 -CLCA2 INTERACTS_WITH ITGB4 -Cntn1 INTERACTS_WITH Notch2 -COL17A1 INTERACTS_WITH DSP -COL17A1 INTERACTS_WITH ITGA6 -COL17A1 INTERACTS_WITH ITGB4 -COL17A1 INTERACTS_WITH PLEC -COMMD1 INTERACTS_WITH NFKBIA -COMMD1 INTERACTS_WITH RELA -COPS5 INTERACTS_WITH SMAD4 -COPS5 STATE_CHANGE SMAD4 -COX5B INTERACTS_WITH AR -CRADD INTERACTS_WITH CASP2 -CRADD INTERACTS_WITH RIPK1 -CREBBP INTERACTS_WITH AR -CREBBP INTERACTS_WITH CHUK -CREBBP INTERACTS_WITH CITED1 -CREBBP INTERACTS_WITH RELA -CREBBP INTERACTS_WITH SNIP1 -CRK INTERACTS_WITH CBLC -CRK INTERACTS_WITH KIT -CRK INTERACTS_WITH PIK3R1 -CRK INTERACTS_WITH SOS1 -CRKL INTERACTS_WITH CBL -CRKL INTERACTS_WITH DOK1 -CRKL INTERACTS_WITH KIT -CRKL INTERACTS_WITH PIK3R1 -CRKL INTERACTS_WITH PIK3R2 -CSF2RB INTERACTS_WITH KIT -CSK INTERACTS_WITH EGFR -CSNK1D STATE_CHANGE CTNNB1 -Csnk1e INTERACTS_WITH Dvl1 -CSNK1E INTERACTS_WITH DVL3 -Csnk1e STATE_CHANGE Dvl1 -CSNK2A1 IN_SAME_COMPONENT CSNK2A2 -CSNK2A1 IN_SAME_COMPONENT CSNK2B -CSNK2A1 STATE_CHANGE RELA -CSNK2A2 IN_SAME_COMPONENT CSNK2A1 -CSNK2A2 IN_SAME_COMPONENT CSNK2B -CSNK2A2 STATE_CHANGE RELA -CSNK2B IN_SAME_COMPONENT CSNK2A1 -CSNK2B IN_SAME_COMPONENT CSNK2A2 -CSNK2B STATE_CHANGE RELA -CTCF INTERACTS_WITH SMAD4 -CTNNB1 IN_SAME_COMPONENT APC -CTNNB1 IN_SAME_COMPONENT AXIN1 -CTNNB1 IN_SAME_COMPONENT BCL9 -CTNNB1 IN_SAME_COMPONENT DVL3 -CTNNB1 INTERACTS_WITH APC -CTNNB1 INTERACTS_WITH AR -CTNNB1 INTERACTS_WITH AXIN1 -CTNNB1 INTERACTS_WITH CDH1 -Ctnnb1 INTERACTS_WITH Ctnnbip1 -CTNNB1 INTERACTS_WITH CUL1 -CTNNB1 INTERACTS_WITH DVL3 -CTNNB1 INTERACTS_WITH FHL2 -CTNNB1 INTERACTS_WITH GSK3B -CTNNB1 INTERACTS_WITH JUP -CTNNB1 INTERACTS_WITH LEF1 -CTNNB1 INTERACTS_WITH NLK -CTNNB1 INTERACTS_WITH NR5A1 -CTNNB1 INTERACTS_WITH PIN1 -CTNNB1 INTERACTS_WITH PPP2CA -CTNNB1 INTERACTS_WITH RUVBL1 -CTNNB1 INTERACTS_WITH SALL1 -CTNNB1 INTERACTS_WITH SKP1 -CTNNB1 INTERACTS_WITH SMAD2 -CTNNB1 INTERACTS_WITH SMAD4 -CTNNB1 INTERACTS_WITH SOX1 -CTNNB1 INTERACTS_WITH TFAP2A -CTNNB1 INTERACTS_WITH TGFBR2 -Ctnnbip1 INTERACTS_WITH Ctnnb1 -CTNND1 INTERACTS_WITH PTPN6 -CUL1 IN_SAME_COMPONENT FBXW11 -CUL1 IN_SAME_COMPONENT RBX1 -CUL1 IN_SAME_COMPONENT SKP1 -CUL1 IN_SAME_COMPONENT SKP2 -CUL1 INTERACTS_WITH CTNNB1 -CUL1 INTERACTS_WITH FBXW7 -CUL1 INTERACTS_WITH NFKBIA -CUL1 INTERACTS_WITH NFKBIB -CUL1 INTERACTS_WITH NFKBIE -CUL1 INTERACTS_WITH SKP1 -CUL1 STATE_CHANGE CTNNB1 -CUL1 STATE_CHANGE TCF3 -CYLD INTERACTS_WITH TRAF2 -CYLD INTERACTS_WITH TRAIP -CYLD STATE_CHANGE TRAF2 -CYLD STATE_CHANGE TRAF6 -DAAM1 INTERACTS_WITH RHOA -DAB2 INTERACTS_WITH DVL3 -DAB2 INTERACTS_WITH SMAD2 -DAB2 INTERACTS_WITH TGFBR2 -DAP INTERACTS_WITH TNFRSF1A -DAXX INTERACTS_WITH TGFBR2 -DDX3X INTERACTS_WITH NFKB2 -DHH INTERACTS_WITH HHIP -DHH INTERACTS_WITH PTCH1 -DHH INTERACTS_WITH PTCH2 -DKK1 INTERACTS_WITH LRP5 -DKK1 INTERACTS_WITH LRP6 -DLG4 IN_SAME_COMPONENT Fzd2 -DLG4 INTERACTS_WITH APC -DLL1 INTERACTS_WITH NOTCH3 -DNM1 INTERACTS_WITH CAV1 -DNM1 INTERACTS_WITH SH3GL3 -DOK1 IN_SAME_COMPONENT LYN -DOK1 INTERACTS_WITH CRKL -DOK1 INTERACTS_WITH FES -DOK1 INTERACTS_WITH FGR -DOK1 INTERACTS_WITH HCK -DOK1 INTERACTS_WITH INPP5D -DOK1 INTERACTS_WITH KIT -DOK1 INTERACTS_WITH LYN -DOK1 INTERACTS_WITH PIK3R1 -DOK1 INTERACTS_WITH PIK3R2 -DOK1 INTERACTS_WITH PLCG1 -DOK1 INTERACTS_WITH RASA1 -DOK1 INTERACTS_WITH SHC1 -DOK1 INTERACTS_WITH SRC -DOK1 INTERACTS_WITH YES1 -DPF2 INTERACTS_WITH RELB -DSP INTERACTS_WITH COL17A1 -DTX1 INTERACTS_WITH EP300 -Dvl1 INTERACTS_WITH Axin1 -Dvl1 INTERACTS_WITH Csnk1e -DVL1 INTERACTS_WITH DVL3 -Dvl1 INTERACTS_WITH Smad2 -Dvl1 INTERACTS_WITH Vangl2 -DVL2 INTERACTS_WITH ARRB2 -DVL2 INTERACTS_WITH FZD4 -DVL2 INTERACTS_WITH PRKCA -DVL2 INTERACTS_WITH PRKCB -DVL2 INTERACTS_WITH PRKCG -DVL2 INTERACTS_WITH RUNX2 -DVL3 IN_SAME_COMPONENT AXIN1 -DVL3 IN_SAME_COMPONENT CTNNB1 -DVL3 INTERACTS_WITH CSNK1E -DVL3 INTERACTS_WITH CTNNB1 -DVL3 INTERACTS_WITH DAB2 -DVL3 INTERACTS_WITH DVL1 -DVL3 INTERACTS_WITH PPP2CA -DYRK1A INTERACTS_WITH GLI1 -DYRK1A STATE_CHANGE GLI1 -E2F4 IN_SAME_COMPONENT RBL1 -E2F4 IN_SAME_COMPONENT RBL2 -E2F4 IN_SAME_COMPONENT TFDP1 -E2F4 IN_SAME_COMPONENT TFDP2 -E2F4 INTERACTS_WITH RB1 -E2F4 INTERACTS_WITH RBL1 -E2F4 INTERACTS_WITH RBL2 -E2F4 INTERACTS_WITH SMAD4 -E2F4 INTERACTS_WITH TFDP1 -E2F4 INTERACTS_WITH TFDP2 -E2F4 REACTS_WITH E2F4 -E2F4 REACTS_WITH RBL1 -E2F4 REACTS_WITH RBL2 -E2F4 REACTS_WITH TFDP2 -EGF INTERACTS_WITH EGFR -EGFR INTERACTS_WITH AR -EGFR INTERACTS_WITH ARF4 -EGFR INTERACTS_WITH CAV1 -EGFR INTERACTS_WITH CBL -EGFR INTERACTS_WITH CBLB -EGFR INTERACTS_WITH CBLC -EGFR INTERACTS_WITH CSK -EGFR INTERACTS_WITH EGF -EGFR INTERACTS_WITH EPS8 -EGFR INTERACTS_WITH ERRFI1 -EGFR INTERACTS_WITH HIST3H3 -EGFR INTERACTS_WITH HTT -EGFR INTERACTS_WITH INPPL1 -EGFR INTERACTS_WITH KRT17 -EGFR INTERACTS_WITH KRT18 -EGFR INTERACTS_WITH KRT7 -EGFR INTERACTS_WITH KRT8 -EGFR INTERACTS_WITH MAP2K1 -EGFR INTERACTS_WITH MAP3K14 -EGFR INTERACTS_WITH MAPK1 -EGFR INTERACTS_WITH NCK1 -EGFR INTERACTS_WITH NCK2 -EGFR INTERACTS_WITH PIK3C2B -EGFR INTERACTS_WITH PITPNA -EGFR INTERACTS_WITH PLEC -EGFR INTERACTS_WITH PLSCR1 -EGFR INTERACTS_WITH PRKAR1A -EGFR INTERACTS_WITH PRKCA -EGFR INTERACTS_WITH PTK6 -EGFR INTERACTS_WITH PTPN11 -EGFR INTERACTS_WITH PTPN6 -EGFR INTERACTS_WITH RASA1 -EGFR INTERACTS_WITH RGS16 -EGFR INTERACTS_WITH RIPK1 -EGFR INTERACTS_WITH SH3BGRL -EGFR INTERACTS_WITH SOCS1 -EGFR INTERACTS_WITH SOCS3 -EGFR INTERACTS_WITH SOS1 -EGFR INTERACTS_WITH STAT1 -EGFR INTERACTS_WITH STAT5A -EGFR INTERACTS_WITH STAT5B -EGFR INTERACTS_WITH VAV1 -EGFR STATE_CHANGE EGFR -EGFR STATE_CHANGE GAB1 -EGFR STATE_CHANGE PTPN6 -EGFR STATE_CHANGE RASA1 -EGFR STATE_CHANGE RGS16 -EGFR STATE_CHANGE STAT1 -EGFR STATE_CHANGE STAT3 -EGFR STATE_CHANGE STAT5B -EID2 INTERACTS_WITH SMAD2 -EID2 INTERACTS_WITH SMAD4 -EIF3I INTERACTS_WITH TGFBR2 -EIF4EBP1 INTERACTS_WITH EIF4E -EIF4E INTERACTS_WITH EIF4EBP1 -ELF3 STATE_CHANGE EGFR -ELF3 STATE_CHANGE MYC -ELK1 INTERACTS_WITH ID2 -ELK1 INTERACTS_WITH ID3 -ELK1 INTERACTS_WITH MAPK3 -ELK3 INTERACTS_WITH ID2 -ELK4 INTERACTS_WITH ID2 -ELK4 INTERACTS_WITH ID3 -ENG INTERACTS_WITH TGFBR2 -EP300 INTERACTS_WITH CITED1 -EP300 INTERACTS_WITH DTX1 -EP300 INTERACTS_WITH MAML1 -EP300 INTERACTS_WITH NCOA1 -EP300 INTERACTS_WITH SMAD2 -EP300 INTERACTS_WITH SMAD4 -EP300 INTERACTS_WITH SMAD7 -EP300 INTERACTS_WITH SNIP1 -EP300 STATE_CHANGE AR -EP300 STATE_CHANGE CTNNB1 -EPN1 INTERACTS_WITH EPS15 -EPOR INTERACTS_WITH KIT -EPS15 INTERACTS_WITH EPN1 -EPS8 INTERACTS_WITH EGFR -ERBB2 INTERACTS_WITH ITGB4 -ERBB2 STATE_CHANGE ERBB2 -ERRFI1 INTERACTS_WITH EGFR -ESR1 INTERACTS_WITH AR -ESR1 INTERACTS_WITH SMAD2 -ESR1 INTERACTS_WITH SMAD4 -ETS1 INTERACTS_WITH SP1 -ETV5 INTERACTS_WITH AR -FADD IN_SAME_COMPONENT CASP10 -FADD IN_SAME_COMPONENT RIPK1 -FADD IN_SAME_COMPONENT TRADD -FADD IN_SAME_COMPONENT TRAF2 -FADD INTERACTS_WITH CASP8 -FADD INTERACTS_WITH CFLAR -FADD INTERACTS_WITH STAT1 -FAF1 INTERACTS_WITH RELA -FANCD2 INTERACTS_WITH TNFRSF1A -FANCD2 INTERACTS_WITH TNFRSF1B -FBL INTERACTS_WITH MAP3K14 -FBXW11 IN_SAME_COMPONENT CUL1 -FBXW11 IN_SAME_COMPONENT SKP1 -FBXW11 INTERACTS_WITH NFKB1 -FBXW11 INTERACTS_WITH NFKBIA -FBXW11 STATE_CHANGE NFKBIA -FBXW7 INTERACTS_WITH CUL1 -FBXW7 INTERACTS_WITH HEY1 -FBXW7 INTERACTS_WITH SKP1 -FES INTERACTS_WITH DOK1 -FGR INTERACTS_WITH DOK1 -FHL2 INTERACTS_WITH AR -FHL2 INTERACTS_WITH CTNNB1 -FKBP5 INTERACTS_WITH CHUK -FKBP5 INTERACTS_WITH IKBKE -FKBP5 INTERACTS_WITH NR2C2 -FLNA INTERACTS_WITH AR -FLNA INTERACTS_WITH TRAF2 -FOSB INTERACTS_WITH JUND -FOS IN_SAME_COMPONENT JUN -FOS INTERACTS_WITH JUN -FOS INTERACTS_WITH JUND -FOS INTERACTS_WITH SMAD4 -Foxg1 INTERACTS_WITH Foxh1 -Foxh1 INTERACTS_WITH Foxg1 -FOXH1 INTERACTS_WITH SMAD2 -FOXO1 INTERACTS_WITH SMAD4 -FOXO3 INTERACTS_WITH SMAD2 -FOXO3 INTERACTS_WITH SMAD4 -FOXO4 INTERACTS_WITH SMAD4 -FYN INTERACTS_WITH ITGB4 -FYN INTERACTS_WITH KHDRBS1 -FYN INTERACTS_WITH KIT -FYN STATE_CHANGE DOK1 -FYN STATE_CHANGE ITGB4 -FYN STATE_CHANGE KHDRBS1 -FZD1 INTERACTS_WITH LRP1 -FZD1 INTERACTS_WITH LRP6 -FZD1 INTERACTS_WITH WNT1 -FZD1 INTERACTS_WITH WNT2 -FZD1 INTERACTS_WITH WNT3 -FZD1 INTERACTS_WITH WNT3A -Fzd2 IN_SAME_COMPONENT DLG4 -Fzd2 INTERACTS_WITH APC -FZD4 IN_SAME_COMPONENT MAGI3 -FZD4 INTERACTS_WITH ARRB2 -FZD4 INTERACTS_WITH DVL2 -FZD4 INTERACTS_WITH MAGI3 -FZD5 INTERACTS_WITH LRP6 -FZD5 INTERACTS_WITH WNT7A -Fzd6 INTERACTS_WITH Wnt4 -FZD7 INTERACTS_WITH MAGI3 -FZR1 INTERACTS_WITH ANAPC1 -FZR1 INTERACTS_WITH ANAPC10 -FZR1 INTERACTS_WITH ANAPC2 -FZR1 INTERACTS_WITH ANAPC4 -FZR1 INTERACTS_WITH ANAPC5 -FZR1 INTERACTS_WITH CDC23 -FZR1 INTERACTS_WITH CDC27 -FZR1 INTERACTS_WITH SKIL -G3BP2 INTERACTS_WITH NFKBIA -G3BP2 INTERACTS_WITH RELA -GAB1 INTERACTS_WITH MAP3K3 -GAB1 INTERACTS_WITH PIK3CA -GAB1 INTERACTS_WITH PIK3CB -GAB1 INTERACTS_WITH PIK3CG -GAB1 INTERACTS_WITH PIK3R2 -GAB1 INTERACTS_WITH PIK3R3 -GAB1 INTERACTS_WITH PTPN11 -GATA1 INTERACTS_WITH HEY1 -GLI1 INTERACTS_WITH DYRK1A -GLI1 INTERACTS_WITH STK36 -GLI1 INTERACTS_WITH SUFU -GLI3 INTERACTS_WITH STK36 -GLI3 INTERACTS_WITH SUFU -GRAP INTERACTS_WITH KIT -Grb10 INTERACTS_WITH Kit -GRB14 INTERACTS_WITH MAP3K14 -GRB7 INTERACTS_WITH CAV1 -GRB7 INTERACTS_WITH KIT -GRB7 INTERACTS_WITH MAP3K14 -GSK3B INTERACTS_WITH APC -GSK3B INTERACTS_WITH AXIN1 -GSK3B INTERACTS_WITH CTNNB1 -GSK3B INTERACTS_WITH NOTCH2 -GSK3B STATE_CHANGE APC -GSK3B STATE_CHANGE CTNNB1 -GSK3B STATE_CHANGE MAP1B -GSK3B STATE_CHANGE NOTCH2 -GTF2F1 INTERACTS_WITH AR -GTF2F2 INTERACTS_WITH AR -GTF2H1 IN_SAME_COMPONENT CCNH -GTF2H1 INTERACTS_WITH AR -GTF2I INTERACTS_WITH NFKB2 -HAT1 STATE_CHANGE HIST3H3 -HCK INTERACTS_WITH DOK1 -HCK INTERACTS_WITH KIT -Hdac1 INTERACTS_WITH Rbl2 -HDAC1 INTERACTS_WITH SMAD2 -HDAC1 INTERACTS_WITH TGIF1 -HDAC2 INTERACTS_WITH CIR1 -HDAC2 INTERACTS_WITH RELA -HDAC6 INTERACTS_WITH RELB -Hes1 INTERACTS_WITH Hey2 -HEY1 INTERACTS_WITH FBXW7 -HEY1 INTERACTS_WITH GATA1 -Hey2 INTERACTS_WITH Hes1 -Hgs INTERACTS_WITH Smad2 -HHIP INTERACTS_WITH DHH -HHIP INTERACTS_WITH IHH -HIP1 INTERACTS_WITH HTT -HIPK2 INTERACTS_WITH NLK -HIPK2 STATE_CHANGE NLK -HIST3H3 INTERACTS_WITH EGFR -HOXA9 INTERACTS_WITH SMAD4 -HRAS INTERACTS_WITH RAF1 -HRAS INTERACTS_WITH SHOC2 -HSP90AA1 IN_SAME_COMPONENT CDC37 -HSP90AA1 IN_SAME_COMPONENT CHUK -HSP90AA1 INTERACTS_WITH CHUK -HSP90AA1 INTERACTS_WITH IKBKE -HSP90AA1 INTERACTS_WITH MAP3K14 -HSP90AA1 INTERACTS_WITH MAP3K3 -HSP90AA1 INTERACTS_WITH NR2C2 -HSP90AA1 INTERACTS_WITH RIPK1 -HSP90AA1 INTERACTS_WITH TBK1 -HSP90AA1 REACTS_WITH CDC37 -HSP90AA1 REACTS_WITH CHUK -HSP90AA1 REACTS_WITH HSP90AA1 -HSP90AB1 INTERACTS_WITH CHUK -HSP90AB1 INTERACTS_WITH IKBKE -HSP90AB1 INTERACTS_WITH MAP3K14 -HSP90AB1 INTERACTS_WITH MAP3K3 -HSP90AB1 INTERACTS_WITH NR2C2 -HSP90AB1 INTERACTS_WITH TBK1 -HSPA8 INTERACTS_WITH CITED1 -HSPB1 INTERACTS_WITH NFKBIA -HSPB1 STATE_CHANGE NFKBIA -HTT INTERACTS_WITH EGFR -HTT INTERACTS_WITH HIP1 -HTT INTERACTS_WITH RASA1 -ID2 INTERACTS_WITH CDK2 -ID2 INTERACTS_WITH ELK1 -ID2 INTERACTS_WITH ELK3 -ID2 INTERACTS_WITH ELK4 -ID2 INTERACTS_WITH MSC -ID2 INTERACTS_WITH RB1 -ID3 INTERACTS_WITH CDK2 -ID3 INTERACTS_WITH ELK1 -ID3 INTERACTS_WITH ELK4 -Id3 INTERACTS_WITH Myog -Id3 INTERACTS_WITH Tcf12 -ID4 INTERACTS_WITH MYOD1 -IHH INTERACTS_WITH HHIP -IHH INTERACTS_WITH PTCH1 -IHH INTERACTS_WITH PTCH2 -IKBKAP INTERACTS_WITH NFKBIA -IKBKE INTERACTS_WITH AZI2 -IKBKE INTERACTS_WITH CDC37 -IKBKE INTERACTS_WITH FKBP5 -IKBKE INTERACTS_WITH HSP90AA1 -IKBKE INTERACTS_WITH HSP90AB1 -IL6ST INTERACTS_WITH AR -INPP5D INTERACTS_WITH DOK1 -INPP5D INTERACTS_WITH KIT -INPPL1 INTERACTS_WITH EGFR -IQGAP2 INTERACTS_WITH NFKBIB -IQGAP2 INTERACTS_WITH RELA -ITGA6 INTERACTS_WITH CD151 -ITGA6 INTERACTS_WITH COL17A1 -ITGA6 INTERACTS_WITH ITGB4 -ITGA6 INTERACTS_WITH RPSA -ITGB4 INTERACTS_WITH CLCA1 -ITGB4 INTERACTS_WITH CLCA2 -ITGB4 INTERACTS_WITH COL17A1 -ITGB4 INTERACTS_WITH ERBB2 -ITGB4 INTERACTS_WITH FYN -ITGB4 INTERACTS_WITH ITGA6 -ITGB4 INTERACTS_WITH MET -ITGB4 INTERACTS_WITH PIK3CA -ITGB4 INTERACTS_WITH PIK3CB -ITGB4 INTERACTS_WITH PIK3CG -ITGB4 INTERACTS_WITH PIK3R2 -ITGB4 INTERACTS_WITH PIK3R3 -ITGB4 INTERACTS_WITH PLEC -ITGB4 INTERACTS_WITH PTK2 -ITGB4 INTERACTS_WITH SHC1 -ITGB4 INTERACTS_WITH VIM -ITGB4 INTERACTS_WITH YES1 -ITGB4 INTERACTS_WITH YWHAB -ITGB4 INTERACTS_WITH YWHAQ -JAG2 INTERACTS_WITH NOTCH3 -JAK1 INTERACTS_WITH STAT1 -JAK1 INTERACTS_WITH STAT3 -JAK2 INTERACTS_WITH KIT -JAK2 INTERACTS_WITH PTPN12 -JAK2 INTERACTS_WITH STAT1 -JAK2 INTERACTS_WITH STAT3 -JUNB INTERACTS_WITH SMAD4 -JUND INTERACTS_WITH FOS -JUND INTERACTS_WITH FOSB -JUND INTERACTS_WITH SMAD4 -JUN IN_SAME_COMPONENT FOS -JUN INTERACTS_WITH AR -JUN INTERACTS_WITH FOS -JUN INTERACTS_WITH MAPK1 -JUN INTERACTS_WITH MAPK3 -JUN INTERACTS_WITH SMAD4 -JUN INTERACTS_WITH SP1 -JUN INTERACTS_WITH TGIF1 -JUP INTERACTS_WITH APC -JUP INTERACTS_WITH CTNNB1 -KAT2B INTERACTS_WITH AR -KAT2B INTERACTS_WITH NOTCH3 -KAT2B INTERACTS_WITH SMAD2 -KAT2B STATE_CHANGE AR -KCNQ1 INTERACTS_WITH TRAF6 -KHDRBS1 INTERACTS_WITH FYN -KHDRBS1 INTERACTS_WITH PLCG1 -KIT IN_SAME_COMPONENT CBL -KIT INTERACTS_WITH CBL -KIT INTERACTS_WITH CRK -KIT INTERACTS_WITH CRKL -KIT INTERACTS_WITH CSF2RB -KIT INTERACTS_WITH DOK1 -KIT INTERACTS_WITH EPOR -KIT INTERACTS_WITH FYN -KIT INTERACTS_WITH GRAP -Kit INTERACTS_WITH Grb10 -KIT INTERACTS_WITH GRB7 -KIT INTERACTS_WITH HCK -KIT INTERACTS_WITH INPP5D -KIT INTERACTS_WITH JAK2 -KIT INTERACTS_WITH KITLG -KIT INTERACTS_WITH LYN -KIT INTERACTS_WITH MATK -KIT INTERACTS_WITH PIK3CG -KIT INTERACTS_WITH PIK3R1 -KIT INTERACTS_WITH PLCE1 -KIT INTERACTS_WITH PLCG1 -Kit INTERACTS_WITH Ptpn6 -KIT INTERACTS_WITH PTPRU -KIT INTERACTS_WITH RASA1 -KIT INTERACTS_WITH SH3KBP1 -KIT INTERACTS_WITH SOCS1 -KIT INTERACTS_WITH SPRED1 -KIT INTERACTS_WITH SPRED2 -KIT INTERACTS_WITH SRC -Kit INTERACTS_WITH Stap1 -KIT INTERACTS_WITH STAT1 -KIT INTERACTS_WITH STAT5A -KIT INTERACTS_WITH STAT5B -KIT INTERACTS_WITH YES1 -KITLG INTERACTS_WITH KIT -KIT STATE_CHANGE KIT -KIT STATE_CHANGE SPRED1 -KIT STATE_CHANGE SPRED2 -KIT STATE_CHANGE STAT1 -KIT STATE_CHANGE STAT5A -KIT STATE_CHANGE STAT5B -Kit STATE_CHANGE Vav1 -KPNA2 INTERACTS_WITH NFKBIB -KPNA2 INTERACTS_WITH RELB -KPNA3 INTERACTS_WITH NFKB1 -KPNA6 INTERACTS_WITH RELB -KRAS INTERACTS_WITH SHOC2 -KRT17 INTERACTS_WITH EGFR -KRT18 INTERACTS_WITH EGFR -KRT7 INTERACTS_WITH EGFR -KRT8 INTERACTS_WITH EGFR -Lck IN_SAME_COMPONENT PIK3R2 -LEF1 IN_SAME_COMPONENT NLK -LEF1 INTERACTS_WITH CDX1 -LEF1 INTERACTS_WITH CTNNB1 -LEF1 INTERACTS_WITH NLK -LEF1 INTERACTS_WITH SMAD2 -LEF1 INTERACTS_WITH SMAD4 -Lef1 INTERACTS_WITH Sumo2 -LRP1 INTERACTS_WITH FZD1 -LRP5 INTERACTS_WITH DKK1 -LRP6 INTERACTS_WITH AXIN1 -LRP6 INTERACTS_WITH DKK1 -LRP6 INTERACTS_WITH FZD1 -LRP6 INTERACTS_WITH FZD5 -LRP6 INTERACTS_WITH WNT1 -LRPPRC INTERACTS_WITH NFKBIB -LYN IN_SAME_COMPONENT DOK1 -LYN INTERACTS_WITH DOK1 -LYN INTERACTS_WITH KIT -LYN STATE_CHANGE DOK1 -LYN STATE_CHANGE KIT -LYN STATE_CHANGE LYN -MAGEA1 INTERACTS_WITH SNW1 -MAGI3 IN_SAME_COMPONENT FZD4 -MAGI3 INTERACTS_WITH FZD4 -MAGI3 INTERACTS_WITH FZD7 -MAML1 INTERACTS_WITH EP300 -MAML1 INTERACTS_WITH NOTCH2 -MAML1 INTERACTS_WITH NOTCH4 -MAML3 INTERACTS_WITH NOTCH2 -MAML3 INTERACTS_WITH NOTCH4 -MAP2K1 INTERACTS_WITH EGFR -MAP2K1 INTERACTS_WITH MAPK14 -MAP2K1 INTERACTS_WITH MAPK3 -MAP2K1 INTERACTS_WITH PEBP1 -MAP2K1 INTERACTS_WITH RAF1 -MAP2K1 STATE_CHANGE MAP2K1 -MAP2K1 STATE_CHANGE MAPK1 -MAP2K1 STATE_CHANGE MAPK3 -MAP2K2 INTERACTS_WITH MAPK3 -MAP2K2 STATE_CHANGE MAP2K2 -MAP2K2 STATE_CHANGE MAPK3 -MAP2K6 INTERACTS_WITH SMAD7 -MAP2K6 STATE_CHANGE MAPK14 -MAP3K14 INTERACTS_WITH ALPL -MAP3K14 INTERACTS_WITH CDC37 -MAP3K14 INTERACTS_WITH CHUK -MAP3K14 INTERACTS_WITH EGFR -MAP3K14 INTERACTS_WITH FBL -MAP3K14 INTERACTS_WITH GRB14 -MAP3K14 INTERACTS_WITH GRB7 -MAP3K14 INTERACTS_WITH HSP90AA1 -MAP3K14 INTERACTS_WITH HSP90AB1 -MAP3K14 INTERACTS_WITH NFKB2 -MAP3K14 INTERACTS_WITH PEBP1 -MAP3K14 INTERACTS_WITH RIPK1 -MAP3K14 INTERACTS_WITH RPL4 -MAP3K14 INTERACTS_WITH RPL6 -MAP3K14 INTERACTS_WITH TRAF2 -MAP3K14 INTERACTS_WITH TRAF3 -MAP3K14 INTERACTS_WITH TRAF5 -MAP3K14 INTERACTS_WITH TRAF6 -MAP3K14 STATE_CHANGE CHUK -MAP3K14 STATE_CHANGE MAP3K14 -MAP3K2 STATE_CHANGE NFKBIA -MAP3K3 INTERACTS_WITH CDC37 -MAP3K3 INTERACTS_WITH GAB1 -MAP3K3 INTERACTS_WITH HSP90AA1 -MAP3K3 INTERACTS_WITH HSP90AB1 -MAP3K3 INTERACTS_WITH MARK2 -MAP3K3 INTERACTS_WITH PFDN2 -MAP3K3 INTERACTS_WITH YWHAB -MAP3K3 INTERACTS_WITH YWHAE -MAP3K3 INTERACTS_WITH YWHAG -MAP3K3 INTERACTS_WITH YWHAH -MAP3K3 INTERACTS_WITH YWHAQ -MAP3K3 INTERACTS_WITH YWHAZ -MAP3K3 STATE_CHANGE MAP3K3 -MAP3K3 STATE_CHANGE NFKBIA -MAP3K4 INTERACTS_WITH AXIN1 -MAP3K4 INTERACTS_WITH CDC42 -MAP3K4 INTERACTS_WITH RAC1 -MAP3K4 INTERACTS_WITH RUNX2 -MAP3K7 INTERACTS_WITH CAMK2B -MAP3K7 INTERACTS_WITH CAMK2D -MAP3K7 INTERACTS_WITH SMAD7 -MAP3K7 STATE_CHANGE HIPK2 -MAP3K7 STATE_CHANGE MAP3K7 -MAP3K7 STATE_CHANGE MAPK14 -MAP3K8 INTERACTS_WITH NFKB1 -MAP3K8 INTERACTS_WITH NFKB2 -MAP3K8 INTERACTS_WITH REL -MAP3K8 INTERACTS_WITH RELA -MAP3K8 INTERACTS_WITH TNIP2 -MAPK14 INTERACTS_WITH MAP2K1 -MAPK14 INTERACTS_WITH MAPK1 -MAPK14 INTERACTS_WITH MAPK3 -MAPK14 INTERACTS_WITH SMAD7 -MAPK14 STATE_CHANGE ATF2 -MAPK14 STATE_CHANGE MEF2C -MAPK1 INTERACTS_WITH CASP9 -MAPK1 INTERACTS_WITH CAV1 -MAPK1 INTERACTS_WITH EGFR -MAPK1 INTERACTS_WITH JUN -MAPK1 INTERACTS_WITH MAPK14 -MAPK1 INTERACTS_WITH PEBP1 -MAPK1 INTERACTS_WITH RPS6KA1 -MAPK1 INTERACTS_WITH TNIP1 -MAPK1 STATE_CHANGE CASP9 -MAPK1 STATE_CHANGE ELK1 -MAPK1 STATE_CHANGE JUND -MAPK1 STATE_CHANGE KLF11 -MAPK1 STATE_CHANGE SMAD2 -MAPK1 STATE_CHANGE TCF3 -MAPK1 STATE_CHANGE TGIF1 -MAPK3 INTERACTS_WITH CASP9 -MAPK3 INTERACTS_WITH CAV1 -MAPK3 INTERACTS_WITH ELK1 -MAPK3 INTERACTS_WITH JUN -MAPK3 INTERACTS_WITH MAP2K1 -MAPK3 INTERACTS_WITH MAP2K2 -MAPK3 INTERACTS_WITH MAPK14 -MAPK3 INTERACTS_WITH RPS6KA1 -MAPK3 STATE_CHANGE ELK1 -MAPK3 STATE_CHANGE JUND -MAPK3 STATE_CHANGE TCF3 -MAPK3 STATE_CHANGE TGIF1 -MAPK7 INTERACTS_WITH PTPRR -MAPK7 STATE_CHANGE GJA1 -MAPK7 STATE_CHANGE PTPRR -MAPK8 INTERACTS_WITH MAPK8IP1 -MAPK8 INTERACTS_WITH PAX2 -MAPK8IP1 INTERACTS_WITH MAPK8 -MAPK8IP1 INTERACTS_WITH PAX2 -MAPK8 STATE_CHANGE ELK1 -MAPK8 STATE_CHANGE JUN -MAPK8 STATE_CHANGE JUND -MAPK8 STATE_CHANGE PAX2 -MARK2 INTERACTS_WITH MAP3K3 -MATK INTERACTS_WITH KIT -MCC INTERACTS_WITH NFKBIB -MCM5 INTERACTS_WITH NFKBIA -MCM7 INTERACTS_WITH NFKBIA -MDM2 INTERACTS_WITH AR -MDM2 STATE_CHANGE AR -MET INTERACTS_WITH ITGB4 -MET STATE_CHANGE ITGB4 -MFNG STATE_CHANGE NOTCH2 -MMP7 STATE_CHANGE ITGB4 -MNAT1 INTERACTS_WITH AR -MSC INTERACTS_WITH ID2 -MST1R INTERACTS_WITH SFN -MST1R INTERACTS_WITH YWHAB -MST1R INTERACTS_WITH YWHAE -MST1R INTERACTS_WITH YWHAH -MST1R INTERACTS_WITH YWHAQ -MST1R INTERACTS_WITH YWHAZ -MTA2 INTERACTS_WITH APPL2 -MTIF2 INTERACTS_WITH NFKBIB -MTOR STATE_CHANGE EIF4EBP1 -MYC INTERACTS_WITH CEBPA -MYC INTERACTS_WITH CEBPB -MYC INTERACTS_WITH SMAD2 -MYOD1 INTERACTS_WITH ID4 -Myog INTERACTS_WITH Id3 -MYST2 INTERACTS_WITH AR -NCK1 INTERACTS_WITH CAV2 -NCK1 INTERACTS_WITH EGFR -NCK1 INTERACTS_WITH PKN2 -NCK1 INTERACTS_WITH SOS1 -NCK2 INTERACTS_WITH EGFR -NCK2 INTERACTS_WITH PKN2 -NCK2 INTERACTS_WITH SOS1 -NCOA1 INTERACTS_WITH AR -NCOA1 INTERACTS_WITH EP300 -NCOA2 INTERACTS_WITH AR -NCOA3 INTERACTS_WITH AR -NCOR1 INTERACTS_WITH RBPJ -NCOR2 INTERACTS_WITH AR -NCOR2 INTERACTS_WITH NFKBIA -NCOR2 INTERACTS_WITH RBPJ -NCOR2 INTERACTS_WITH RELA -NCOR2 INTERACTS_WITH SNW1 -NCSTN IN_SAME_COMPONENT APH1A -NCSTN IN_SAME_COMPONENT APH1B -NCSTN IN_SAME_COMPONENT PSEN1 -NCSTN IN_SAME_COMPONENT PSEN2 -NCSTN IN_SAME_COMPONENT PSENEN -NCSTN STATE_CHANGE APP -NCSTN STATE_CHANGE JAG2 -Ndufa13 INTERACTS_WITH Stat3 -NFKB1 IN_SAME_COMPONENT NFKBIA -NFKB1 IN_SAME_COMPONENT RELA -NFKB1 INTERACTS_WITH CFLAR -NFKB1 INTERACTS_WITH CHUK -NFKB1 INTERACTS_WITH FBXW11 -NFKB1 INTERACTS_WITH KPNA3 -NFKB1 INTERACTS_WITH MAP3K8 -NFKB1 INTERACTS_WITH NFKB2 -NFKB1 INTERACTS_WITH NFKBIA -NFKB1 INTERACTS_WITH NFKBIB -NFKB1 INTERACTS_WITH NFKBIE -NFKB1 INTERACTS_WITH NFKBIZ -NFKB1 INTERACTS_WITH REL -NFKB1 INTERACTS_WITH RELA -NFKB1 INTERACTS_WITH RELB -NFKB1 INTERACTS_WITH TNIP2 -NFKB1 INTERACTS_WITH UNC5CL -NFKB1 REACTS_WITH NFKB1 -NFKB1 REACTS_WITH NFKBIA -NFKB2 INTERACTS_WITH CHUK -NFKB2 INTERACTS_WITH DDX3X -NFKB2 INTERACTS_WITH GTF2I -NFKB2 INTERACTS_WITH MAP3K14 -NFKB2 INTERACTS_WITH MAP3K8 -NFKB2 INTERACTS_WITH NFKB1 -NFKB2 INTERACTS_WITH NFKBIA -NFKB2 INTERACTS_WITH NFKBIB -NFKB2 INTERACTS_WITH NFKBIE -NFKB2 INTERACTS_WITH REL -NFKB2 INTERACTS_WITH RELA -NFKB2 INTERACTS_WITH RELB -NFKB2 INTERACTS_WITH RPL6 -NFKB2 INTERACTS_WITH TNIP2 -NFKB2 INTERACTS_WITH USP2 -NFKBIA IN_SAME_COMPONENT NFKB1 -NFKBIA IN_SAME_COMPONENT RELA -NFKBIA INTERACTS_WITH CHUK -NFKBIA INTERACTS_WITH COMMD1 -NFKBIA INTERACTS_WITH CUL1 -NFKBIA INTERACTS_WITH FBXW11 -NFKBIA INTERACTS_WITH G3BP2 -NFKBIA INTERACTS_WITH HSPB1 -NFKBIA INTERACTS_WITH IKBKAP -NFKBIA INTERACTS_WITH MCM5 -NFKBIA INTERACTS_WITH MCM7 -NFKBIA INTERACTS_WITH NCOR2 -NFKBIA INTERACTS_WITH NFKB1 -NFKBIA INTERACTS_WITH NFKB2 -NFKBIA INTERACTS_WITH NFKBIB -NFKBIA INTERACTS_WITH NKIRAS1 -NFKBIA INTERACTS_WITH NKIRAS2 -NFKBIA INTERACTS_WITH REL -NFKBIA INTERACTS_WITH RELA -NFKBIA INTERACTS_WITH SKP1 -NFKBIA REACTS_WITH NFKB1 -NFKBIA REACTS_WITH NFKBIA -NFKBIA REACTS_WITH RELA -NFKBIB INTERACTS_WITH CD3EAP -NFKBIB INTERACTS_WITH CHUK -NFKBIB INTERACTS_WITH CUL1 -NFKBIB INTERACTS_WITH IQGAP2 -NFKBIB INTERACTS_WITH KPNA2 -NFKBIB INTERACTS_WITH LRPPRC -NFKBIB INTERACTS_WITH MCC -NFKBIB INTERACTS_WITH MTIF2 -NFKBIB INTERACTS_WITH NFKB1 -NFKBIB INTERACTS_WITH NFKB2 -NFKBIB INTERACTS_WITH NFKBIA -NFKBIB INTERACTS_WITH NKIRAS1 -NFKBIB INTERACTS_WITH NKIRAS2 -NFKBIB INTERACTS_WITH PDCD2 -NFKBIB INTERACTS_WITH POLR1A -NFKBIB INTERACTS_WITH POLR1B -NFKBIB INTERACTS_WITH POLR1D -NFKBIB INTERACTS_WITH POLR1E -NFKBIB INTERACTS_WITH POLR2H -NFKBIB INTERACTS_WITH RASAL2 -NFKBIB INTERACTS_WITH REL -NFKBIB INTERACTS_WITH RELA -NFKBIB INTERACTS_WITH SKP1 -NFKBIE INTERACTS_WITH CUL1 -NFKBIE INTERACTS_WITH NFKB1 -NFKBIE INTERACTS_WITH NFKB2 -NFKBIE INTERACTS_WITH PPP6C -NFKBIE INTERACTS_WITH REL -NFKBIE INTERACTS_WITH RELA -NFKBIE INTERACTS_WITH SKP1 -NFKBIZ INTERACTS_WITH NFKB1 -NFYA INTERACTS_WITH NFYB -NFYB INTERACTS_WITH NFYA -Nfyc INTERACTS_WITH Smad2 -NKIRAS1 INTERACTS_WITH NFKBIA -NKIRAS1 INTERACTS_WITH NFKBIB -NKIRAS2 INTERACTS_WITH NFKBIA -NKIRAS2 INTERACTS_WITH NFKBIB -NLK IN_SAME_COMPONENT LEF1 -NLK INTERACTS_WITH CTNNB1 -NLK INTERACTS_WITH HIPK2 -NLK INTERACTS_WITH LEF1 -NLK STATE_CHANGE LEF1 -NLK STATE_CHANGE NLK -NLRP4 INTERACTS_WITH CHUK -NOTCH2 IN_SAME_COMPONENT RBPJ -Notch2 INTERACTS_WITH Cntn1 -NOTCH2 INTERACTS_WITH GSK3B -NOTCH2 INTERACTS_WITH MAML1 -NOTCH2 INTERACTS_WITH MAML3 -Notch2 INTERACTS_WITH Rbpj -NOTCH3 INTERACTS_WITH DLL1 -NOTCH3 INTERACTS_WITH JAG2 -NOTCH3 INTERACTS_WITH KAT2B -Notch3 INTERACTS_WITH Rbpj -NOTCH3 INTERACTS_WITH SNW1 -NOTCH4 IN_SAME_COMPONENT RBPJ -NOTCH4 INTERACTS_WITH MAML1 -NOTCH4 INTERACTS_WITH MAML3 -NR0B2 INTERACTS_WITH AR -NR2C2 INTERACTS_WITH AR -NR2C2 INTERACTS_WITH CDC37 -NR2C2 INTERACTS_WITH FKBP5 -NR2C2 INTERACTS_WITH HSP90AA1 -NR2C2 INTERACTS_WITH HSP90AB1 -NR2C2 INTERACTS_WITH PEBP1 -NR2C2 INTERACTS_WITH TAB1 -NR2C2 INTERACTS_WITH TAB2 -NR2C2 INTERACTS_WITH TAB3 -NR2C2 INTERACTS_WITH TRAF2 -NR2C2 INTERACTS_WITH TRAF6 -NR5A1 INTERACTS_WITH AR -NR5A1 INTERACTS_WITH CTNNB1 -NRAS INTERACTS_WITH SHOC2 -NSD1 INTERACTS_WITH AR -NSMAF INTERACTS_WITH TNFRSF1A -NUP153 INTERACTS_WITH SMAD2 -NUP214 INTERACTS_WITH SMAD2 -NUP214 INTERACTS_WITH SMAD4 -PA2G4 INTERACTS_WITH AR -PAK1 INTERACTS_WITH RAC1 -PAK1 STATE_CHANGE MBP -PAK6 INTERACTS_WITH AR -PAK6 STATE_CHANGE AR -PAPOLA INTERACTS_WITH REL -PATZ1 INTERACTS_WITH AR -PATZ1 INTERACTS_WITH RNF4 -PAX2 INTERACTS_WITH MAPK8 -PAX2 INTERACTS_WITH MAPK8IP1 -PDCD2 INTERACTS_WITH NFKBIB -PEBP1 INTERACTS_WITH CHUK -PEBP1 INTERACTS_WITH MAP2K1 -PEBP1 INTERACTS_WITH MAP3K14 -PEBP1 INTERACTS_WITH MAPK1 -PEBP1 INTERACTS_WITH NR2C2 -PEBP1 INTERACTS_WITH RAF1 -PEG3 INTERACTS_WITH TRAF2 -PFDN2 INTERACTS_WITH MAP3K3 -PIAS1 INTERACTS_WITH AR -PIAS3 INTERACTS_WITH AR -PIAS3 INTERACTS_WITH STAT3 -PIAS4 INTERACTS_WITH AR -Pias4 STATE_CHANGE Lef1 -PIK3C2B INTERACTS_WITH EGFR -PIK3CA IN_SAME_COMPONENT PIK3CB -PIK3CA IN_SAME_COMPONENT PIK3CG -PIK3CA IN_SAME_COMPONENT PIK3R2 -PIK3CA IN_SAME_COMPONENT PIK3R3 -PIK3CA INTERACTS_WITH GAB1 -PIK3CA INTERACTS_WITH ITGB4 -PIK3CB IN_SAME_COMPONENT PIK3CA -PIK3CB IN_SAME_COMPONENT PIK3CG -PIK3CB IN_SAME_COMPONENT PIK3R2 -PIK3CB IN_SAME_COMPONENT PIK3R3 -PIK3CB INTERACTS_WITH GAB1 -PIK3CB INTERACTS_WITH ITGB4 -PIK3CG IN_SAME_COMPONENT PIK3CA -PIK3CG IN_SAME_COMPONENT PIK3CB -PIK3CG IN_SAME_COMPONENT PIK3R2 -PIK3CG IN_SAME_COMPONENT PIK3R3 -PIK3CG INTERACTS_WITH GAB1 -PIK3CG INTERACTS_WITH ITGB4 -PIK3CG INTERACTS_WITH KIT -PIK3R1 IN_SAME_COMPONENT PIK3R2 -PIK3R1 INTERACTS_WITH CBL -PIK3R1 INTERACTS_WITH CRK -PIK3R1 INTERACTS_WITH CRKL -PIK3R1 INTERACTS_WITH DOK1 -PIK3R1 INTERACTS_WITH KIT -PIK3R2 IN_SAME_COMPONENT Lck -PIK3R2 IN_SAME_COMPONENT PIK3CA -PIK3R2 IN_SAME_COMPONENT PIK3CB -PIK3R2 IN_SAME_COMPONENT PIK3CG -PIK3R2 IN_SAME_COMPONENT PIK3R1 -PIK3R2 IN_SAME_COMPONENT PIK3R3 -PIK3R2 INTERACTS_WITH CBL -PIK3R2 INTERACTS_WITH CRKL -PIK3R2 INTERACTS_WITH DOK1 -PIK3R2 INTERACTS_WITH GAB1 -PIK3R2 INTERACTS_WITH ITGB4 -PIK3R2 INTERACTS_WITH TGFBR2 -PIK3R3 IN_SAME_COMPONENT PIK3CA -PIK3R3 IN_SAME_COMPONENT PIK3CB -PIK3R3 IN_SAME_COMPONENT PIK3CG -PIK3R3 IN_SAME_COMPONENT PIK3R2 -PIK3R3 INTERACTS_WITH GAB1 -PIK3R3 INTERACTS_WITH ITGB4 -PIN1 INTERACTS_WITH CTNNB1 -PITPNA INTERACTS_WITH EGFR -PKN1 INTERACTS_WITH TRAF2 -PKN2 INTERACTS_WITH NCK1 -PKN2 INTERACTS_WITH NCK2 -PLCE1 INTERACTS_WITH KIT -PLCG1 INTERACTS_WITH DOK1 -PLCG1 INTERACTS_WITH KHDRBS1 -PLCG1 INTERACTS_WITH KIT -PLD2 INTERACTS_WITH PRKCA -PLEC INTERACTS_WITH COL17A1 -PLEC INTERACTS_WITH EGFR -PLEC INTERACTS_WITH ITGB4 -PLSCR1 INTERACTS_WITH EGFR -PNRC1 INTERACTS_WITH AR -POLR1A INTERACTS_WITH NFKBIB -POLR1B INTERACTS_WITH NFKBIB -POLR1D INTERACTS_WITH NFKBIB -POLR1E INTERACTS_WITH NFKBIB -POLR2H INTERACTS_WITH NFKBIB -POU2F2 INTERACTS_WITH AR -PPP1R13L INTERACTS_WITH RELA -PPP2CA INTERACTS_WITH AXIN1 -PPP2CA INTERACTS_WITH CTNNB1 -PPP2CA INTERACTS_WITH DVL3 -PPP2CA STATE_CHANGE APC -PPP2CA STATE_CHANGE AXIN1 -PPP2CA STATE_CHANGE RELA -PPP2R5B INTERACTS_WITH AXIN1 -PPP6C INTERACTS_WITH NFKBIE -PRKACA STATE_CHANGE RELA -PRKAR1A INTERACTS_WITH EGFR -PRKAR1B INTERACTS_WITH SMAD4 -PRKAR2A INTERACTS_WITH SMAD4 -PRKCA INTERACTS_WITH DVL2 -PRKCA INTERACTS_WITH EGFR -PRKCA INTERACTS_WITH PLD2 -PRKCA STATE_CHANGE DVL2 -PRKCA STATE_CHANGE ITGB4 -PRKCA STATE_CHANGE KIT -PRKCB INTERACTS_WITH DVL2 -PRKCB STATE_CHANGE DAB2 -PRKCB STATE_CHANGE DVL2 -PRKCB STATE_CHANGE KIT -PRKCD STATE_CHANGE DAB2 -PRKCD STATE_CHANGE ITGA6 -PRKCD STATE_CHANGE ITGB4 -PRKCG INTERACTS_WITH DVL2 -PRKCG STATE_CHANGE DAB2 -PRKCG STATE_CHANGE DVL2 -PRKCZ STATE_CHANGE RELA -PRKD1 STATE_CHANGE EGFR -PRMT1 INTERACTS_WITH AR -PRPF6 INTERACTS_WITH AR -PSEN1 IN_SAME_COMPONENT APH1A -PSEN1 IN_SAME_COMPONENT APH1B -PSEN1 IN_SAME_COMPONENT NCSTN -PSEN1 IN_SAME_COMPONENT PSEN2 -PSEN1 IN_SAME_COMPONENT PSENEN -PSEN1 INTERACTS_WITH PSENEN -PSEN1 STATE_CHANGE APP -PSEN1 STATE_CHANGE JAG2 -PSEN2 IN_SAME_COMPONENT APH1A -PSEN2 IN_SAME_COMPONENT APH1B -PSEN2 IN_SAME_COMPONENT NCSTN -PSEN2 IN_SAME_COMPONENT PSEN1 -PSEN2 IN_SAME_COMPONENT PSENEN -PSEN2 STATE_CHANGE APP -PSEN2 STATE_CHANGE JAG2 -PSENEN IN_SAME_COMPONENT APH1A -PSENEN IN_SAME_COMPONENT APH1B -PSENEN IN_SAME_COMPONENT NCSTN -PSENEN IN_SAME_COMPONENT PSEN1 -PSENEN IN_SAME_COMPONENT PSEN2 -PSENEN INTERACTS_WITH PSEN1 -PSENEN STATE_CHANGE APP -PSENEN STATE_CHANGE JAG2 -PSMB5 INTERACTS_WITH TRAF6 -PSMC1 INTERACTS_WITH TRAF6 -PSMC2 INTERACTS_WITH TRAF6 -PSMC3 INTERACTS_WITH TRAF6 -PSMC3IP INTERACTS_WITH AR -PSMD12 INTERACTS_WITH TRAF6 -PSMD13 INTERACTS_WITH TRAF6 -PSMD1 INTERACTS_WITH TRAF6 -PSMD3 INTERACTS_WITH TRAF6 -PSMD6 INTERACTS_WITH TRAF6 -PSMD7 INTERACTS_WITH TRAF6 -PTCH1 INTERACTS_WITH CCNB1 -PTCH1 INTERACTS_WITH CDK1 -PTCH1 INTERACTS_WITH DHH -PTCH1 INTERACTS_WITH IHH -PTCH1 INTERACTS_WITH SMO -PTCH2 INTERACTS_WITH DHH -PTCH2 INTERACTS_WITH IHH -PTCH2 INTERACTS_WITH SMO -PTEN INTERACTS_WITH AR -PTK2B INTERACTS_WITH STAT3 -PTK2 INTERACTS_WITH ITGB4 -Ptk2 INTERACTS_WITH Tnfrsf1a -PTK6 INTERACTS_WITH EGFR -PTPN11 INTERACTS_WITH CHUK -PTPN11 INTERACTS_WITH EGFR -PTPN11 INTERACTS_WITH GAB1 -PTPN11 STATE_CHANGE EGFR -PTPN11 STATE_CHANGE PXN -PTPN12 INTERACTS_WITH JAK2 -PTPN6 INTERACTS_WITH CTNND1 -PTPN6 INTERACTS_WITH EGFR -Ptpn6 INTERACTS_WITH Kit -PTPN6 STATE_CHANGE CTNND1 -PTPN6 STATE_CHANGE PTPN6 -PTPRR INTERACTS_WITH MAPK7 -PTPRR STATE_CHANGE MAPK7 -PTPRU INTERACTS_WITH KIT -RAB5A INTERACTS_WITH APPL2 -RAC1 INTERACTS_WITH MAP3K4 -RAC1 INTERACTS_WITH PAK1 -RAC1 INTERACTS_WITH RUNX2 -RAC1 INTERACTS_WITH STAT3 -RAC3 INTERACTS_WITH AR -RAF1 INTERACTS_WITH AKT1 -RAF1 INTERACTS_WITH HRAS -RAF1 INTERACTS_WITH MAP2K1 -RAF1 INTERACTS_WITH PEBP1 -RAF1 INTERACTS_WITH SHOC2 -RALB INTERACTS_WITH RALBP1 -RALBP1 INTERACTS_WITH RALB -RANBP9 INTERACTS_WITH AR -RAN INTERACTS_WITH AR -RASA1 INTERACTS_WITH CAV2 -RASA1 INTERACTS_WITH DOK1 -RASA1 INTERACTS_WITH EGFR -RASA1 INTERACTS_WITH HTT -RASA1 INTERACTS_WITH KIT -RASA1 INTERACTS_WITH SOCS3 -RASAL2 INTERACTS_WITH NFKBIB -RB1 INTERACTS_WITH AR -RB1 INTERACTS_WITH E2F4 -RB1 INTERACTS_WITH ID2 -RBBP7 INTERACTS_WITH APPL2 -RBL1 IN_SAME_COMPONENT E2F4 -RBL1 IN_SAME_COMPONENT TFDP1 -RBL1 INTERACTS_WITH CCNE1 -RBL1 INTERACTS_WITH CDK2 -RBL1 INTERACTS_WITH E2F4 -RBL1 INTERACTS_WITH SMAD4 -RBL1 INTERACTS_WITH TFDP1 -RBL1 REACTS_WITH E2F4 -RBL1 REACTS_WITH RBL1 -RBL2 IN_SAME_COMPONENT E2F4 -RBL2 INTERACTS_WITH E2F4 -Rbl2 INTERACTS_WITH Hdac1 -RBL2 INTERACTS_WITH TFDP1 -RBL2 REACTS_WITH E2F4 -RBL2 REACTS_WITH RBL2 -RBPJ IN_SAME_COMPONENT NOTCH2 -RBPJ IN_SAME_COMPONENT NOTCH4 -RBPJ INTERACTS_WITH CIR1 -RBPJ INTERACTS_WITH NCOR1 -RBPJ INTERACTS_WITH NCOR2 -Rbpj INTERACTS_WITH Notch2 -Rbpj INTERACTS_WITH Notch3 -RBPJ INTERACTS_WITH SNW1 -RBPJ INTERACTS_WITH SPEN -RBX1 IN_SAME_COMPONENT CUL1 -RBX1 IN_SAME_COMPONENT SKP1 -RBX1 IN_SAME_COMPONENT SKP2 -RBX1 STATE_CHANGE TCF3 -RCHY1 INTERACTS_WITH AR -RCHY1 STATE_CHANGE AR -RELA IN_SAME_COMPONENT NFKB1 -RELA IN_SAME_COMPONENT NFKBIA -RELA INTERACTS_WITH ACTL6A -RELA INTERACTS_WITH AR -RELA INTERACTS_WITH COMMD1 -RELA INTERACTS_WITH CREBBP -RELA INTERACTS_WITH FAF1 -RELA INTERACTS_WITH G3BP2 -RELA INTERACTS_WITH HDAC2 -RELA INTERACTS_WITH IQGAP2 -RELA INTERACTS_WITH MAP3K8 -RELA INTERACTS_WITH NCOR2 -RELA INTERACTS_WITH NFKB1 -RELA INTERACTS_WITH NFKB2 -RELA INTERACTS_WITH NFKBIA -RELA INTERACTS_WITH NFKBIB -RELA INTERACTS_WITH NFKBIE -RELA INTERACTS_WITH PPP1R13L -RELA INTERACTS_WITH REL -RELA INTERACTS_WITH RELB -RELA INTERACTS_WITH RNF25 -RELA INTERACTS_WITH TNIP2 -RELA INTERACTS_WITH TRIB3 -RELA INTERACTS_WITH UNC5CL -RELA REACTS_WITH NFKBIA -RELA REACTS_WITH RELA -RELB INTERACTS_WITH BCL7A -RELB INTERACTS_WITH DPF2 -RELB INTERACTS_WITH HDAC6 -RELB INTERACTS_WITH KPNA2 -RELB INTERACTS_WITH KPNA6 -RELB INTERACTS_WITH NFKB1 -RELB INTERACTS_WITH NFKB2 -RELB INTERACTS_WITH RELA -RELB INTERACTS_WITH SMARCB1 -RELB INTERACTS_WITH SMARCC1 -RELB INTERACTS_WITH SMARCE1 -RELB INTERACTS_WITH USP11 -REL INTERACTS_WITH MAP3K8 -REL INTERACTS_WITH NFKB1 -REL INTERACTS_WITH NFKB2 -REL INTERACTS_WITH NFKBIA -REL INTERACTS_WITH NFKBIB -REL INTERACTS_WITH NFKBIE -REL INTERACTS_WITH PAPOLA -REL INTERACTS_WITH RELA -REL INTERACTS_WITH TNIP2 -RGS16 INTERACTS_WITH EGFR -RHOA INTERACTS_WITH DAAM1 -RIPK1 IN_SAME_COMPONENT BIRC2 -RIPK1 IN_SAME_COMPONENT CASP10 -RIPK1 IN_SAME_COMPONENT FADD -RIPK1 IN_SAME_COMPONENT TRADD -RIPK1 IN_SAME_COMPONENT TRAF2 -RIPK1 INTERACTS_WITH CASP8 -RIPK1 INTERACTS_WITH CRADD -RIPK1 INTERACTS_WITH EGFR -RIPK1 INTERACTS_WITH HSP90AA1 -RIPK1 INTERACTS_WITH MAP3K14 -RIPK1 INTERACTS_WITH RIPK3 -RIPK1 INTERACTS_WITH TNFRSF1A -RIPK1 INTERACTS_WITH ZFAND5 -RIPK1 STATE_CHANGE RIPK1 -RIPK3 INTERACTS_WITH RIPK1 -RIPK3 INTERACTS_WITH TRAF2 -RIPK3 STATE_CHANGE RIPK1 -RNF14 INTERACTS_WITH AR -RNF25 INTERACTS_WITH RELA -RNF4 IN_SAME_COMPONENT AR -RNF4 INTERACTS_WITH AR -RNF4 INTERACTS_WITH PATZ1 -ROCK1 INTERACTS_WITH CDC25A -RPL4 INTERACTS_WITH MAP3K14 -RPL6 INTERACTS_WITH MAP3K14 -RPL6 INTERACTS_WITH NFKB2 -RPS6KA1 INTERACTS_WITH MAPK1 -RPS6KA1 INTERACTS_WITH MAPK3 -RPS6KA3 STATE_CHANGE HIST3H3 -RPS6KB2 INTERACTS_WITH TRAF4 -RPSA INTERACTS_WITH ITGA6 -RUNX2 INTERACTS_WITH AR -RUNX2 INTERACTS_WITH AXIN1 -RUNX2 INTERACTS_WITH DVL2 -RUNX2 INTERACTS_WITH MAP3K4 -RUNX2 INTERACTS_WITH RAC1 -RUNX2 INTERACTS_WITH SMAD2 -RUVBL1 INTERACTS_WITH CTNNB1 -RUVBL1 INTERACTS_WITH TBP -SALL1 INTERACTS_WITH CTNNB1 -SAP30 INTERACTS_WITH CIR1 -SDC2 INTERACTS_WITH TGFB1 -SDC2 INTERACTS_WITH TGFBR3 -SFN INTERACTS_WITH MST1R -SFRP1 INTERACTS_WITH WNT1 -SFRP1 INTERACTS_WITH WNT4 -SH3BGRL INTERACTS_WITH EGFR -SH3GL3 INTERACTS_WITH DNM1 -SH3GL3 INTERACTS_WITH WASL -SH3KBP1 INTERACTS_WITH ASAP1 -SH3KBP1 INTERACTS_WITH CBL -SH3KBP1 INTERACTS_WITH KIT -SHC1 INTERACTS_WITH CBL -SHC1 INTERACTS_WITH DOK1 -SHC1 INTERACTS_WITH ITGB4 -SHC1 INTERACTS_WITH SOS1 -SHOC2 INTERACTS_WITH HRAS -SHOC2 INTERACTS_WITH KRAS -SHOC2 INTERACTS_WITH NRAS -SHOC2 INTERACTS_WITH RAF1 -SIN3A INTERACTS_WITH TGIF1 -SKI INTERACTS_WITH SMAD2 -SKI INTERACTS_WITH SMAD4 -SKIL INTERACTS_WITH CDC16 -SKIL INTERACTS_WITH CDC27 -SKIL INTERACTS_WITH FZR1 -SKIL INTERACTS_WITH SMAD2 -SKIL INTERACTS_WITH SMAD4 -SKP1 IN_SAME_COMPONENT CUL1 -SKP1 IN_SAME_COMPONENT FBXW11 -SKP1 IN_SAME_COMPONENT RBX1 -SKP1 IN_SAME_COMPONENT SKP2 -SKP1 INTERACTS_WITH CTNNB1 -SKP1 INTERACTS_WITH CUL1 -SKP1 INTERACTS_WITH FBXW7 -SKP1 INTERACTS_WITH NFKBIA -SKP1 INTERACTS_WITH NFKBIB -SKP1 INTERACTS_WITH NFKBIE -SKP1 STATE_CHANGE CTNNB1 -SKP1 STATE_CHANGE TCF3 -SKP2 IN_SAME_COMPONENT CUL1 -SKP2 IN_SAME_COMPONENT RBX1 -SKP2 IN_SAME_COMPONENT SKP1 -SKP2 INTERACTS_WITH TCF3 -SKP2 STATE_CHANGE TCF3 -SMAD2 IN_SAME_COMPONENT SMAD4 -SMAD2 INTERACTS_WITH CDC16 -SMAD2 INTERACTS_WITH CDC27 -SMAD2 INTERACTS_WITH CTNNB1 -SMAD2 INTERACTS_WITH DAB2 -Smad2 INTERACTS_WITH Dvl1 -SMAD2 INTERACTS_WITH EID2 -SMAD2 INTERACTS_WITH EP300 -SMAD2 INTERACTS_WITH ESR1 -SMAD2 INTERACTS_WITH FOXH1 -SMAD2 INTERACTS_WITH FOXO3 -SMAD2 INTERACTS_WITH HDAC1 -Smad2 INTERACTS_WITH Hgs -SMAD2 INTERACTS_WITH KAT2B -SMAD2 INTERACTS_WITH LEF1 -SMAD2 INTERACTS_WITH MYC -Smad2 INTERACTS_WITH Nfyc -SMAD2 INTERACTS_WITH NUP153 -SMAD2 INTERACTS_WITH NUP214 -SMAD2 INTERACTS_WITH RUNX2 -SMAD2 INTERACTS_WITH SKI -SMAD2 INTERACTS_WITH SKIL -SMAD2 INTERACTS_WITH SMAD4 -SMAD2 INTERACTS_WITH SNIP1 -SMAD2 INTERACTS_WITH SNW1 -SMAD2 INTERACTS_WITH SP1 -SMAD2 INTERACTS_WITH STAMBPL1 -SMAD2 INTERACTS_WITH STRAP -SMAD2 INTERACTS_WITH TGIF1 -SMAD2 INTERACTS_WITH TP53 -SMAD2 INTERACTS_WITH TP73 -SMAD2 INTERACTS_WITH ZEB1 -SMAD2 INTERACTS_WITH ZFYVE9 -SMAD2 REACTS_WITH SMAD2 -SMAD2 REACTS_WITH SMAD4 -SMAD4 IN_SAME_COMPONENT SMAD2 -SMAD4 INTERACTS_WITH AR -SMAD4 INTERACTS_WITH ATF2 -SMAD4 INTERACTS_WITH BTRC -SMAD4 INTERACTS_WITH CITED1 -SMAD4 INTERACTS_WITH COPS5 -SMAD4 INTERACTS_WITH CTCF -SMAD4 INTERACTS_WITH CTNNB1 -SMAD4 INTERACTS_WITH E2F4 -SMAD4 INTERACTS_WITH EID2 -SMAD4 INTERACTS_WITH EP300 -SMAD4 INTERACTS_WITH ESR1 -SMAD4 INTERACTS_WITH FOS -SMAD4 INTERACTS_WITH FOXO1 -SMAD4 INTERACTS_WITH FOXO3 -SMAD4 INTERACTS_WITH FOXO4 -SMAD4 INTERACTS_WITH HOXA9 -SMAD4 INTERACTS_WITH JUN -SMAD4 INTERACTS_WITH JUNB -SMAD4 INTERACTS_WITH JUND -SMAD4 INTERACTS_WITH LEF1 -SMAD4 INTERACTS_WITH NUP214 -SMAD4 INTERACTS_WITH PRKAR1B -SMAD4 INTERACTS_WITH PRKAR2A -SMAD4 INTERACTS_WITH RBL1 -SMAD4 INTERACTS_WITH SKI -SMAD4 INTERACTS_WITH SKIL -SMAD4 INTERACTS_WITH SMAD2 -SMAD4 INTERACTS_WITH SNIP1 -SMAD4 INTERACTS_WITH SP1 -SMAD4 INTERACTS_WITH Stk11 -SMAD4 INTERACTS_WITH STK11IP -SMAD4 INTERACTS_WITH TFDP1 -SMAD4 INTERACTS_WITH TGFBRAP1 -SMAD4 REACTS_WITH SMAD2 -SMAD4 REACTS_WITH SMAD4 -SMAD6 INTERACTS_WITH STRAP -SMAD7 IN_SAME_COMPONENT SMURF1 -SMAD7 IN_SAME_COMPONENT SMURF2 -SMAD7 INTERACTS_WITH EP300 -SMAD7 INTERACTS_WITH MAP2K6 -SMAD7 INTERACTS_WITH MAP3K7 -SMAD7 INTERACTS_WITH MAPK14 -SMAD7 INTERACTS_WITH SMURF1 -SMAD7 INTERACTS_WITH SMURF2 -SMAD7 INTERACTS_WITH STAMBPL1 -SMAD7 INTERACTS_WITH STRAP -SMAD7 INTERACTS_WITH TGFBR2 -SMAD7 REACTS_WITH SMAD7 -SMAD7 REACTS_WITH SMURF1 -SMAD7 REACTS_WITH SMURF2 -SMARCB1 INTERACTS_WITH RELB -SMARCC1 INTERACTS_WITH RELB -SMARCE1 INTERACTS_WITH RELB -SMO INTERACTS_WITH PTCH1 -SMO INTERACTS_WITH PTCH2 -SMURF1 IN_SAME_COMPONENT SMAD7 -SMURF1 INTERACTS_WITH SMAD7 -SMURF1 INTERACTS_WITH TGFBR2 -SMURF1 INTERACTS_WITH XPO1 -SMURF1 REACTS_WITH SMAD7 -SMURF1 REACTS_WITH SMURF1 -SMURF1 STATE_CHANGE SMAD7 -SMURF2 IN_SAME_COMPONENT SMAD7 -SMURF2 INTERACTS_WITH SMAD7 -SMURF2 REACTS_WITH SMAD7 -SMURF2 REACTS_WITH SMURF2 -SNIP1 INTERACTS_WITH CREBBP -SNIP1 INTERACTS_WITH EP300 -SNIP1 INTERACTS_WITH SMAD2 -SNIP1 INTERACTS_WITH SMAD4 -SNW1 INTERACTS_WITH MAGEA1 -SNW1 INTERACTS_WITH NCOR2 -SNW1 INTERACTS_WITH NOTCH3 -SNW1 INTERACTS_WITH RBPJ -SNW1 INTERACTS_WITH SMAD2 -SOCS1 INTERACTS_WITH EGFR -SOCS1 INTERACTS_WITH KIT -SOCS1 INTERACTS_WITH VAV2 -SOCS3 INTERACTS_WITH EGFR -SOCS3 INTERACTS_WITH RASA1 -SOS1 INTERACTS_WITH ABI1 -SOS1 INTERACTS_WITH CRK -SOS1 INTERACTS_WITH EGFR -SOS1 INTERACTS_WITH NCK1 -SOS1 INTERACTS_WITH NCK2 -SOS1 INTERACTS_WITH SHC1 -SOX1 INTERACTS_WITH CTNNB1 -SP1 INTERACTS_WITH AR -SP1 INTERACTS_WITH ETS1 -SP1 INTERACTS_WITH JUN -SP1 INTERACTS_WITH SMAD2 -SP1 INTERACTS_WITH SMAD4 -SPDEF INTERACTS_WITH AR -SPEN INTERACTS_WITH RBPJ -SPRED1 INTERACTS_WITH KIT -SPRED2 INTERACTS_WITH KIT -SPRY2 INTERACTS_WITH CBLC -SRC INTERACTS_WITH DOK1 -SRC INTERACTS_WITH KIT -SRC STATE_CHANGE CHUK -SRC STATE_CHANGE KIT -SRC STATE_CHANGE NFKBIA -SRC STATE_CHANGE PTK2 -SRY INTERACTS_WITH AR -STAMBPL1 INTERACTS_WITH SMAD2 -STAMBPL1 INTERACTS_WITH SMAD7 -Stap1 INTERACTS_WITH Kit -STAT1 INTERACTS_WITH EGFR -STAT1 INTERACTS_WITH FADD -STAT1 INTERACTS_WITH JAK1 -STAT1 INTERACTS_WITH JAK2 -STAT1 INTERACTS_WITH KIT -STAT1 INTERACTS_WITH STAT3 -STAT1 INTERACTS_WITH STAT5A -STAT1 INTERACTS_WITH STAT5B -STAT1 INTERACTS_WITH TNFRSF1A -STAT1 INTERACTS_WITH TNFRSF1B -STAT1 INTERACTS_WITH TRADD -STAT3 INTERACTS_WITH AR -STAT3 INTERACTS_WITH JAK1 -STAT3 INTERACTS_WITH JAK2 -Stat3 INTERACTS_WITH Ndufa13 -STAT3 INTERACTS_WITH PIAS3 -STAT3 INTERACTS_WITH PTK2B -STAT3 INTERACTS_WITH RAC1 -STAT3 INTERACTS_WITH STAT1 -STAT3 INTERACTS_WITH STAT5B -STAT5A INTERACTS_WITH EGFR -STAT5A INTERACTS_WITH KIT -STAT5A INTERACTS_WITH STAT1 -STAT5A INTERACTS_WITH STAT5B -STAT5B INTERACTS_WITH EGFR -STAT5B INTERACTS_WITH KIT -STAT5B INTERACTS_WITH STAT1 -STAT5B INTERACTS_WITH STAT3 -STAT5B INTERACTS_WITH STAT5A -Stk11 IN_SAME_COMPONENT STK11IP -Stk11 INTERACTS_WITH SMAD4 -STK11IP IN_SAME_COMPONENT Stk11 -STK11IP INTERACTS_WITH SMAD4 -STK36 INTERACTS_WITH GLI1 -STK36 INTERACTS_WITH GLI3 -STK36 INTERACTS_WITH SUFU -STRAP INTERACTS_WITH SMAD2 -STRAP INTERACTS_WITH SMAD6 -STRAP INTERACTS_WITH SMAD7 -STRAP INTERACTS_WITH TGFBR2 -STUB1 INTERACTS_WITH AR -SUFU INTERACTS_WITH GLI1 -SUFU INTERACTS_WITH GLI3 -SUFU INTERACTS_WITH STK36 -Sumo2 INTERACTS_WITH Lef1 -SVIL INTERACTS_WITH AR -TAB1 INTERACTS_WITH NR2C2 -TAB1 INTERACTS_WITH TAB2 -TAB1 INTERACTS_WITH TRAF2 -TAB2 INTERACTS_WITH NR2C2 -TAB2 INTERACTS_WITH TAB1 -TAB2 INTERACTS_WITH TAB3 -TAB2 INTERACTS_WITH TRAF2 -TAB2 INTERACTS_WITH TRAF6 -TAB3 IN_SAME_COMPONENT TRAF2 -TAB3 IN_SAME_COMPONENT TRAF6 -TAB3 INTERACTS_WITH NR2C2 -TAB3 INTERACTS_WITH TAB2 -TAB3 INTERACTS_WITH TRAF2 -TAB3 INTERACTS_WITH TRAF6 -TANK INTERACTS_WITH TBK1 -TANK INTERACTS_WITH TRAF2 -TANK INTERACTS_WITH TRAF3 -TBK1 INTERACTS_WITH AZI2 -TBK1 INTERACTS_WITH CDC37 -TBK1 INTERACTS_WITH HSP90AA1 -TBK1 INTERACTS_WITH HSP90AB1 -TBK1 INTERACTS_WITH TANK -TBK1 INTERACTS_WITH TRAF2 -TBK1 STATE_CHANGE AZI2 -TBK1 STATE_CHANGE NFKBIA -TBK1 STATE_CHANGE RELA -TBK1 STATE_CHANGE TBK1 -TBP INTERACTS_WITH RUVBL1 -Tcf12 INTERACTS_WITH Id3 -TCF3 INTERACTS_WITH SKP2 -TFAP2A INTERACTS_WITH APC -TFAP2A INTERACTS_WITH CTNNB1 -TFDP1 IN_SAME_COMPONENT E2F4 -TFDP1 IN_SAME_COMPONENT RBL1 -TFDP1 INTERACTS_WITH E2F4 -TFDP1 INTERACTS_WITH RBL1 -TFDP1 INTERACTS_WITH RBL2 -TFDP1 INTERACTS_WITH SMAD4 -TFDP2 IN_SAME_COMPONENT E2F4 -TFDP2 INTERACTS_WITH E2F4 -TFDP2 REACTS_WITH E2F4 -TFDP2 REACTS_WITH TFDP2 -TGFB1I1 INTERACTS_WITH AR -TGFB1 IN_SAME_COMPONENT Tgfbr3 -TGFB1 INTERACTS_WITH SDC2 -TGFB1 INTERACTS_WITH TGFBR2 -TGFB3 INTERACTS_WITH TGFBR2 -TGFB3 INTERACTS_WITH TGFBR3 -TGFBR2 INTERACTS_WITH CCNB2 -TGFBR2 INTERACTS_WITH CDK1 -TGFBR2 INTERACTS_WITH CTNNB1 -TGFBR2 INTERACTS_WITH DAB2 -TGFBR2 INTERACTS_WITH DAXX -TGFBR2 INTERACTS_WITH EIF3I -TGFBR2 INTERACTS_WITH ENG -TGFBR2 INTERACTS_WITH PIK3R2 -TGFBR2 INTERACTS_WITH SMAD7 -TGFBR2 INTERACTS_WITH SMURF1 -TGFBR2 INTERACTS_WITH STRAP -TGFBR2 INTERACTS_WITH TGFB1 -TGFBR2 INTERACTS_WITH TGFB3 -TGFBR2 INTERACTS_WITH Tgfbr3 -TGFBR2 INTERACTS_WITH TGFBR3 -TGFBR2 INTERACTS_WITH TGFBRAP1 -TGFBR2 INTERACTS_WITH ZFYVE9 -TGFBR2 STATE_CHANGE CDK1 -TGFBR2 STATE_CHANGE EIF3I -TGFBR2 STATE_CHANGE ENG -TGFBR2 STATE_CHANGE TGFBR2 -TGFBR2 STATE_CHANGE TGFBR3 -Tgfbr3 IN_SAME_COMPONENT TGFB1 -TGFBR3 INTERACTS_WITH ARRB2 -TGFBR3 INTERACTS_WITH SDC2 -TGFBR3 INTERACTS_WITH TGFB3 -Tgfbr3 INTERACTS_WITH TGFBR2 -TGFBR3 INTERACTS_WITH TGFBR2 -TGFBRAP1 INTERACTS_WITH SMAD4 -TGFBRAP1 INTERACTS_WITH TGFBR2 -TGIF1 INTERACTS_WITH AR -TGIF1 INTERACTS_WITH HDAC1 -TGIF1 INTERACTS_WITH JUN -TGIF1 INTERACTS_WITH SIN3A -TGIF1 INTERACTS_WITH SMAD2 -TIFA INTERACTS_WITH TRAF2 -TMF1 INTERACTS_WITH AR -TNFAIP3 INTERACTS_WITH TRAF2 -TNFAIP3 INTERACTS_WITH ZFAND5 -TNFAIP3 STATE_CHANGE RIPK1 -TNF INTERACTS_WITH TNFRSF1A -TNF INTERACTS_WITH TNFRSF1B -TNFRSF11A INTERACTS_WITH TRAF2 -TNFRSF1A INTERACTS_WITH BAG4 -TNFRSF1A INTERACTS_WITH BIRC2 -TNFRSF1A INTERACTS_WITH DAP -TNFRSF1A INTERACTS_WITH FANCD2 -TNFRSF1A INTERACTS_WITH NSMAF -Tnfrsf1a INTERACTS_WITH Ptk2 -TNFRSF1A INTERACTS_WITH RIPK1 -TNFRSF1A INTERACTS_WITH STAT1 -TNFRSF1A INTERACTS_WITH TNF -TNFRSF1A INTERACTS_WITH TRADD -TNFRSF1A INTERACTS_WITH TRAF2 -TNFRSF1A INTERACTS_WITH UBE2I -TNFRSF1B INTERACTS_WITH BIRC2 -TNFRSF1B INTERACTS_WITH BIRC3 -TNFRSF1B INTERACTS_WITH CAV1 -TNFRSF1B INTERACTS_WITH FANCD2 -TNFRSF1B INTERACTS_WITH STAT1 -TNFRSF1B INTERACTS_WITH TNF -TNFRSF1B INTERACTS_WITH TRAF2 -TNIP1 INTERACTS_WITH MAPK1 -TNIP2 INTERACTS_WITH MAP3K8 -TNIP2 INTERACTS_WITH NFKB1 -TNIP2 INTERACTS_WITH NFKB2 -TNIP2 INTERACTS_WITH REL -TNIP2 INTERACTS_WITH RELA -TNK2 INTERACTS_WITH CDC42 -TNK2 STATE_CHANGE MCF2 -TP53 INTERACTS_WITH SMAD2 -TP73 INTERACTS_WITH ABL1 -TP73 INTERACTS_WITH SMAD2 -TRADD IN_SAME_COMPONENT BIRC2 -TRADD IN_SAME_COMPONENT CASP10 -TRADD IN_SAME_COMPONENT FADD -TRADD IN_SAME_COMPONENT RIPK1 -TRADD IN_SAME_COMPONENT TRAF2 -TRADD INTERACTS_WITH CASP8 -TRADD INTERACTS_WITH STAT1 -TRADD INTERACTS_WITH TNFRSF1A -TRADD INTERACTS_WITH TRAF2 -TRAF2 IN_SAME_COMPONENT BIRC2 -TRAF2 IN_SAME_COMPONENT BIRC3 -TRAF2 IN_SAME_COMPONENT CASP10 -TRAF2 IN_SAME_COMPONENT CAV1 -TRAF2 IN_SAME_COMPONENT FADD -TRAF2 IN_SAME_COMPONENT RIPK1 -TRAF2 IN_SAME_COMPONENT TAB3 -TRAF2 IN_SAME_COMPONENT TRADD -TRAF2 INTERACTS_WITH ALPL -TRAF2 INTERACTS_WITH BIRC2 -TRAF2 INTERACTS_WITH CASP8 -TRAF2 INTERACTS_WITH CASP8AP2 -TRAF2 INTERACTS_WITH CAV1 -TRAF2 INTERACTS_WITH CFLAR -TRAF2 INTERACTS_WITH CYLD -TRAF2 INTERACTS_WITH FLNA -TRAF2 INTERACTS_WITH MAP3K14 -TRAF2 INTERACTS_WITH NR2C2 -TRAF2 INTERACTS_WITH PEG3 -TRAF2 INTERACTS_WITH PKN1 -TRAF2 INTERACTS_WITH RIPK3 -TRAF2 INTERACTS_WITH TAB1 -TRAF2 INTERACTS_WITH TAB2 -TRAF2 INTERACTS_WITH TAB3 -TRAF2 INTERACTS_WITH TANK -TRAF2 INTERACTS_WITH TBK1 -TRAF2 INTERACTS_WITH TIFA -TRAF2 INTERACTS_WITH TNFAIP3 -TRAF2 INTERACTS_WITH TNFRSF11A -TRAF2 INTERACTS_WITH TNFRSF1A -TRAF2 INTERACTS_WITH TNFRSF1B -TRAF2 INTERACTS_WITH TRADD -TRAF2 STATE_CHANGE RIPK1 -TRAF3 INTERACTS_WITH ALPL -TRAF3 INTERACTS_WITH MAP3K14 -TRAF3 INTERACTS_WITH TANK -TRAF4 INTERACTS_WITH RPS6KB2 -TRAF5 INTERACTS_WITH MAP3K14 -TRAF6 IN_SAME_COMPONENT TAB3 -TRAF6 INTERACTS_WITH KCNQ1 -TRAF6 INTERACTS_WITH MAP3K14 -TRAF6 INTERACTS_WITH NR2C2 -TRAF6 INTERACTS_WITH PSMB5 -TRAF6 INTERACTS_WITH PSMC1 -TRAF6 INTERACTS_WITH PSMC2 -TRAF6 INTERACTS_WITH PSMC3 -TRAF6 INTERACTS_WITH PSMD1 -TRAF6 INTERACTS_WITH PSMD12 -TRAF6 INTERACTS_WITH PSMD13 -TRAF6 INTERACTS_WITH PSMD3 -TRAF6 INTERACTS_WITH PSMD6 -TRAF6 INTERACTS_WITH PSMD7 -TRAF6 INTERACTS_WITH TAB2 -TRAF6 INTERACTS_WITH TAB3 -TRAF6 INTERACTS_WITH ZFAND5 -TRAIP INTERACTS_WITH CYLD -TRIB3 INTERACTS_WITH RELA -UBE2D1 IN_SAME_COMPONENT UBE2D2 -UBE2D1 IN_SAME_COMPONENT UBE2D3 -UBE2D1 STATE_CHANGE SKIL -UBE2D2 IN_SAME_COMPONENT UBE2D1 -UBE2D2 IN_SAME_COMPONENT UBE2D3 -UBE2D2 STATE_CHANGE NFKBIA -UBE2D2 STATE_CHANGE SKIL -UBE2D2 STATE_CHANGE SMAD2 -UBE2D3 IN_SAME_COMPONENT UBE2D1 -UBE2D3 IN_SAME_COMPONENT UBE2D2 -UBE2D3 STATE_CHANGE NFKB1 -UBE2D3 STATE_CHANGE NFKBIA -UBE2D3 STATE_CHANGE SKIL -UBE2D3 STATE_CHANGE SMAD2 -UBE2E1 IN_SAME_COMPONENT UBE2L3 -UBE2E1 STATE_CHANGE SMAD4 -UBE2I INTERACTS_WITH AR -UBE2I INTERACTS_WITH TNFRSF1A -UBE2L3 IN_SAME_COMPONENT UBE2E1 -UBE2L3 STATE_CHANGE SMAD4 -UBE3A INTERACTS_WITH AR -UNC5CL INTERACTS_WITH NFKB1 -UNC5CL INTERACTS_WITH RELA -USP11 INTERACTS_WITH RELB -USP2 INTERACTS_WITH NFKB2 -Vangl2 INTERACTS_WITH Dvl1 -VAV1 INTERACTS_WITH EGFR -VAV2 INTERACTS_WITH SOCS1 -VIM INTERACTS_WITH ITGB4 -WASL INTERACTS_WITH SH3GL3 -WNT1 INTERACTS_WITH FZD1 -WNT1 INTERACTS_WITH LRP6 -WNT1 INTERACTS_WITH SFRP1 -WNT2 INTERACTS_WITH FZD1 -WNT3A INTERACTS_WITH FZD1 -WNT3 INTERACTS_WITH FZD1 -Wnt4 INTERACTS_WITH Fzd6 -WNT4 INTERACTS_WITH SFRP1 -WNT7A INTERACTS_WITH FZD5 -XPO1 INTERACTS_WITH SMURF1 -YES1 INTERACTS_WITH DOK1 -YES1 INTERACTS_WITH ITGB4 -YES1 INTERACTS_WITH KIT -YWHAB INTERACTS_WITH ITGB4 -YWHAB INTERACTS_WITH MAP3K3 -YWHAB INTERACTS_WITH MST1R -YWHAE INTERACTS_WITH MAP3K3 -YWHAE INTERACTS_WITH MST1R -YWHAG INTERACTS_WITH MAP3K3 -YWHAH INTERACTS_WITH MAP3K3 -YWHAH INTERACTS_WITH MST1R -YWHAQ INTERACTS_WITH ITGB4 -YWHAQ INTERACTS_WITH MAP3K3 -YWHAQ INTERACTS_WITH MST1R -YWHAZ INTERACTS_WITH MAP3K3 -YWHAZ INTERACTS_WITH MST1R -ZEB1 INTERACTS_WITH SMAD2 -ZFAND5 INTERACTS_WITH RIPK1 -ZFAND5 INTERACTS_WITH TNFAIP3 -ZFAND5 INTERACTS_WITH TRAF6 -ZFYVE9 INTERACTS_WITH SMAD2 -ZFYVE9 INTERACTS_WITH TGFBR2 diff --git a/core/src/main/resources/sample_data/network/nci-nature.sif b/core/src/main/resources/sample_data/network/nci-nature.sif deleted file mode 100644 index e2f68db6545..00000000000 --- a/core/src/main/resources/sample_data/network/nci-nature.sif +++ /dev/null @@ -1,27321 +0,0 @@ -AATF IN_SAME_COMPONENT RB1 -AATF IN_SAME_COMPONENT TFDP1 -AATF REACTS_WITH AATF -AATF REACTS_WITH HDAC1 -AATF REACTS_WITH RB1 -AATF REACTS_WITH TFDP1 -ABI1 IN_SAME_COMPONENT C3orf10 -ABI1 IN_SAME_COMPONENT CYFIP2 -ABI1 IN_SAME_COMPONENT EPS8 -ABI1 IN_SAME_COMPONENT ITGA4 -ABI1 IN_SAME_COMPONENT ITGB1 -ABI1 IN_SAME_COMPONENT NCKAP1 -ABI1 IN_SAME_COMPONENT SOS1 -ABI1 IN_SAME_COMPONENT VCAM1 -ABI1 IN_SAME_COMPONENT WASF2 -ABI1 IN_SAME_COMPONENT WASL -ABI1 REACTS_WITH ABI1 -ABI1 REACTS_WITH C3orf10 -ABI1 REACTS_WITH CYFIP2 -ABI1 REACTS_WITH EPS8 -ABI1 REACTS_WITH ITGA4 -ABI1 REACTS_WITH ITGB1 -ABI1 REACTS_WITH NCKAP1 -ABI1 REACTS_WITH SOS1 -ABI1 REACTS_WITH USP6NL -ABI1 REACTS_WITH VCAM1 -ABI1 REACTS_WITH WASF2 -ABI1 REACTS_WITH WASL -ABI1 STATE_CHANGE ACTR3 -ABI1 STATE_CHANGE ARPC1B -ABI1 STATE_CHANGE ARPC2 -ABI1 STATE_CHANGE ARPC3 -ABI1 STATE_CHANGE ARPC5 -ABI1 STATE_CHANGE DIAPH1 -ABI1 STATE_CHANGE DIAPH3 -ABI1 STATE_CHANGE RAC1 -ABI1 STATE_CHANGE WASF2 -ABI2 IN_SAME_COMPONENT C3orf10 -ABI2 IN_SAME_COMPONENT CYFIP2 -ABI2 IN_SAME_COMPONENT NCKAP1 -ABI2 IN_SAME_COMPONENT WASF1 -ABL1 CO_CONTROL BAIAP2 -ABL1 CO_CONTROL RAC1 -ABL1 IN_SAME_COMPONENT CABLES1 -ABL1 IN_SAME_COMPONENT RB1 -ABL1 IN_SAME_COMPONENT ROBO1 -ABL1 IN_SAME_COMPONENT SLIT1 -ABL1 IN_SAME_COMPONENT TERT -ABL1 REACTS_WITH ABL1 -ABL1 REACTS_WITH RB1 -ABL1 REACTS_WITH TERT -ABL1 STATE_CHANGE ABI1 -ABL1 STATE_CHANGE C3orf10 -ABL1 STATE_CHANGE CDH2 -ABL1 STATE_CHANGE CDK5 -ABL1 STATE_CHANGE CTNNA1 -ABL1 STATE_CHANGE CTNNB1 -ABL1 STATE_CHANGE CTNND1 -ABL1 STATE_CHANGE CYFIP2 -ABL1 STATE_CHANGE EPS8 -ABL1 STATE_CHANGE MDM2 -ABL1 STATE_CHANGE NCKAP1 -ABL1 STATE_CHANGE PDGFB -ABL1 STATE_CHANGE PDGFRB -ABL1 STATE_CHANGE PLCG1 -ABL1 STATE_CHANGE RAC1 -ABL1 STATE_CHANGE SOS1 -ABL1 STATE_CHANGE WASF2 -ABR STATE_CHANGE RAC1 -ABR STATE_CHANGE RHOA -ACAP1 CO_CONTROL ACAP1 -ACAP1 CO_CONTROL GULP1 -ACAP1 IN_SAME_COMPONENT CLTC -ACAP1 IN_SAME_COMPONENT GULP1 -ACAP1 IN_SAME_COMPONENT SLC2A4 -ACAP1 REACTS_WITH ACAP1 -ACAP1 REACTS_WITH CLTC -ACAP1 REACTS_WITH GULP1 -ACAP1 REACTS_WITH SLC2A4 -ACD IN_SAME_COMPONENT POT1 -ACD IN_SAME_COMPONENT TERF1 -ACD IN_SAME_COMPONENT TINF2 -ACD REACTS_WITH ACD -ACD REACTS_WITH POT1 -ACD REACTS_WITH TERF1 -ACD REACTS_WITH TERF2 -ACD REACTS_WITH TERF2IP -ACD REACTS_WITH TINF2 -ACP1 IN_SAME_COMPONENT EFNA1 -ACP1 IN_SAME_COMPONENT EPHA2 -ACP1 REACTS_WITH ACP1 -ACP1 REACTS_WITH EFNA1 -ACP1 REACTS_WITH EPHA2 -ACP1 STATE_CHANGE GRLF1 -ACTA1 REACTS_WITH ACTA1 -ACTA1 REACTS_WITH ACTN1 -ACTL6A CO_CONTROL MAX -ACTL6A CO_CONTROL MYC -ACTL6A IN_SAME_COMPONENT KAT5 -ACTL6A IN_SAME_COMPONENT MAX -ACTL6A IN_SAME_COMPONENT MYC -ACTL6A IN_SAME_COMPONENT RUVBL1 -ACTL6A IN_SAME_COMPONENT RUVBL2 -ACTL6A IN_SAME_COMPONENT TRRAP -ACTL6A METABOLIC_CATALYSIS CAD -ACTL6A METABOLIC_CATALYSIS GPAM -ACTL6A METABOLIC_CATALYSIS HSPD1 -ACTL6A METABOLIC_CATALYSIS NCL -ACTL6A METABOLIC_CATALYSIS NME1 -ACTL6A METABOLIC_CATALYSIS PTMA -ACTL6A REACTS_WITH ACTL6A -ACTL6A REACTS_WITH KAT5 -ACTL6A REACTS_WITH MAX -ACTL6A REACTS_WITH MYC -ACTL6A REACTS_WITH RUVBL1 -ACTL6A REACTS_WITH RUVBL2 -ACTL6A REACTS_WITH TRRAP -ACTN1 IN_SAME_COMPONENT SDC4 -ACTN1 REACTS_WITH ACTA1 -ACTN1 REACTS_WITH ACTN1 -ACTN1 REACTS_WITH SDC4 -ACTN1 STATE_CHANGE LPP -ACTN4 IN_SAME_COMPONENT RAB5A -ACTN4 IN_SAME_COMPONENT USP6NL -ACTN4 REACTS_WITH ACTN4 -ACTN4 REACTS_WITH RAB5A -ACTN4 REACTS_WITH USP6NL -ACTR3 IN_SAME_COMPONENT ARPC1B -ACTR3 IN_SAME_COMPONENT ARPC2 -ACTR3 IN_SAME_COMPONENT ARPC3 -ACTR3 IN_SAME_COMPONENT ARPC5 -ACVR1 IN_SAME_COMPONENT ACVR2A -ACVR1 IN_SAME_COMPONENT AMH -ACVR1 IN_SAME_COMPONENT AMHR2 -ACVR1 IN_SAME_COMPONENT BMP7 -ACVR1 IN_SAME_COMPONENT BMPR2 -ACVR1 IN_SAME_COMPONENT FKBP1A -ACVR1 REACTS_WITH ACVR1 -ACVR1 REACTS_WITH ACVR2A -ACVR1 REACTS_WITH AMH -ACVR1 REACTS_WITH AMHR2 -ACVR1 REACTS_WITH BMP7 -ACVR1 REACTS_WITH BMPR2 -ACVR1 REACTS_WITH FKBP1A -ACVR1 REACTS_WITH INHBA -ACVR2A IN_SAME_COMPONENT ACVR1 -ACVR2A IN_SAME_COMPONENT INHBA -ACVR2A REACTS_WITH ACVR1 -ACVR2A REACTS_WITH ACVR2A -ACVR2A REACTS_WITH INHBA -ACVRL1 CO_CONTROL ACVRL1 -ACVRL1 CO_CONTROL BMPR2 -ACVRL1 CO_CONTROL CAV1 -ACVRL1 CO_CONTROL GDF2 -ACVRL1 CO_CONTROL PPP1CA -ACVRL1 CO_CONTROL TGFB1 -ACVRL1 CO_CONTROL TGFBR1 -ACVRL1 CO_CONTROL TGFBR2 -ACVRL1 IN_SAME_COMPONENT BMPR2 -ACVRL1 IN_SAME_COMPONENT CAV1 -ACVRL1 IN_SAME_COMPONENT CSNK2B -ACVRL1 IN_SAME_COMPONENT FKBP1A -ACVRL1 IN_SAME_COMPONENT GDF2 -ACVRL1 IN_SAME_COMPONENT INHBA -ACVRL1 IN_SAME_COMPONENT PPP1CA -ACVRL1 IN_SAME_COMPONENT TGFB1 -ACVRL1 IN_SAME_COMPONENT TGFB3 -ACVRL1 IN_SAME_COMPONENT TGFBR1 -ACVRL1 IN_SAME_COMPONENT TGFBR2 -ACVRL1 REACTS_WITH ACVRL1 -ACVRL1 REACTS_WITH BMPR2 -ACVRL1 REACTS_WITH CAV1 -ACVRL1 REACTS_WITH CSNK2B -ACVRL1 REACTS_WITH FKBP1A -ACVRL1 REACTS_WITH GDF2 -ACVRL1 REACTS_WITH INHBA -ACVRL1 REACTS_WITH PPP1CA -ACVRL1 REACTS_WITH TGFB1 -ACVRL1 REACTS_WITH TGFB3 -ACVRL1 REACTS_WITH TGFBR1 -ACVRL1 REACTS_WITH TGFBR2 -ADAM10 STATE_CHANGE CDH1 -ADAM10 STATE_CHANGE CDH2 -ADAM10 STATE_CHANGE CTNNA1 -ADAM10 STATE_CHANGE CTNND1 -ADAM10 STATE_CHANGE DLL1 -ADAM10 STATE_CHANGE DTX1 -ADAM10 STATE_CHANGE NOTCH1 -ADAM12 IN_SAME_COMPONENT ITGA9 -ADAM12 IN_SAME_COMPONENT ITGB1 -ADAM12 IN_SAME_COMPONENT SDC4 -ADAM12 INTERACTS_WITH PRKCA -ADAM12 INTERACTS_WITH RHOA -ADAM12 REACTS_WITH ADAM12 -ADAM12 REACTS_WITH ITGA9 -ADAM12 REACTS_WITH ITGB1 -ADAM12 REACTS_WITH SDC4 -ADAM12 STATE_CHANGE DLL1 -ADAM15 IN_SAME_COMPONENT ITGA9 -ADAM15 IN_SAME_COMPONENT ITGB1 -ADAM15 REACTS_WITH ADAM15 -ADAM15 REACTS_WITH ITGA9 -ADAM15 REACTS_WITH ITGB1 -ADAM17 STATE_CHANGE BDNF -ADAM17 STATE_CHANGE ERBB2 -ADAM17 STATE_CHANGE NGFR -ADAM17 STATE_CHANGE SORT1 -ADAM17 STATE_CHANGE TNF -ADAM17 STATE_CHANGE TNFRSF1B -ADAM17 STATE_CHANGE TRAF6 -ADAM17 STATE_CHANGE ZNF274 -ADAM28 IN_SAME_COMPONENT ITGA4 -ADAM28 IN_SAME_COMPONENT ITGB1 -ADAM28 REACTS_WITH ADAM28 -ADAM28 REACTS_WITH ITGA4 -ADAM28 REACTS_WITH ITGB1 -ADAM2 IN_SAME_COMPONENT ITGA9 -ADAM2 IN_SAME_COMPONENT ITGB1 -ADAM2 REACTS_WITH ADAM2 -ADAM2 REACTS_WITH ITGA9 -ADAM2 REACTS_WITH ITGB1 -ADAM8 IN_SAME_COMPONENT ITGA9 -ADAM8 IN_SAME_COMPONENT ITGB1 -ADAM8 REACTS_WITH ADAM8 -ADAM8 REACTS_WITH ITGA9 -ADAM8 REACTS_WITH ITGB1 -ADAP1 CO_CONTROL ADAP1 -ADAP1 CO_CONTROL KIF13B -ADAP1 IN_SAME_COMPONENT KIF13B -ADAP1 REACTS_WITH ADAP1 -ADAP1 REACTS_WITH KIF13B -ADCY7 IN_SAME_COMPONENT CTNNB1 -ADCY7 IN_SAME_COMPONENT TCF7L2 -ADCY7 METABOLIC_CATALYSIS INCENP -ADCY7 REACTS_WITH ADCY7 -ADCY7 REACTS_WITH CTNNB1 -ADCY7 REACTS_WITH TCF7L2 -ADRBK1 STATE_CHANGE CXCL12 -ADRBK1 STATE_CHANGE CXCR1 -ADRBK1 STATE_CHANGE CXCR4 -ADRBK1 STATE_CHANGE GNG2 -ADRBK1 STATE_CHANGE HDAC5 -ADRBK1 STATE_CHANGE IL8 -ADRBK1 STATE_CHANGE SMO -ADRBK2 STATE_CHANGE F2R -AES IN_SAME_COMPONENT CREBBP -AES IN_SAME_COMPONENT CTBP1 -AES IN_SAME_COMPONENT CTNNB1 -AES IN_SAME_COMPONENT HNF1A -AES IN_SAME_COMPONENT LEF1 -AES IN_SAME_COMPONENT TLE1 -AES METABOLIC_CATALYSIS CCND1 -AES METABOLIC_CATALYSIS MYC -AES METABOLIC_CATALYSIS PPARD -AES REACTS_WITH AES -AES REACTS_WITH CREBBP -AES REACTS_WITH CTBP1 -AES REACTS_WITH CTNNB1 -AES REACTS_WITH HNF1A -AES REACTS_WITH LEF1 -AES REACTS_WITH TLE1 -AGAP2 IN_SAME_COMPONENT EPB41L1 -AGAP2 IN_SAME_COMPONENT PIK3CA -AGAP2 IN_SAME_COMPONENT PIK3R1 -AGAP2 METABOLIC_CATALYSIS CCND1 -AGAP2 REACTS_WITH AGAP2 -AGAP2 REACTS_WITH EPB41L1 -AGAP2 REACTS_WITH PIK3CA -AGAP2 REACTS_WITH PIK3R1 -AGER IN_SAME_COMPONENT HMGB1 -AGER IN_SAME_COMPONENT ITGAM -AGER IN_SAME_COMPONENT ITGB2 -AGER REACTS_WITH AGER -AGER REACTS_WITH HMGB1 -AGER REACTS_WITH ITGAM -AGER REACTS_WITH ITGB2 -AGER STATE_CHANGE NFKB1 -AGRP IN_SAME_COMPONENT MC4R -AGRP IN_SAME_COMPONENT SDC3 -AGRP REACTS_WITH AGRP -AGRP REACTS_WITH MC4R -AGRP REACTS_WITH POMC -AGRP REACTS_WITH SDC3 -AGTR1 METABOLIC_CATALYSIS ANGPT2 -AHSG IN_SAME_COMPONENT BMP6 -AHSG REACTS_WITH AHSG -AHSG REACTS_WITH BAMBI -AHSG REACTS_WITH BMP6 -AHSG REACTS_WITH BMPR2 -AKAP13 CO_CONTROL CDKN1B -AKAP13 STATE_CHANGE RHOA -AKAP1 STATE_CHANGE KDR -AKAP1 STATE_CHANGE PRKACA -AKAP1 STATE_CHANGE VEGFA -AKAP5 IN_SAME_COMPONENT PRKACA -AKAP5 REACTS_WITH AKAP5 -AKAP5 REACTS_WITH PRKACA -AKT1 CO_CONTROL BCL10 -AKT1 CO_CONTROL CARD11 -AKT1 CO_CONTROL MALT1 -AKT1 CO_CONTROL MAP3K7 -AKT1 CO_CONTROL NCOA1 -AKT1 CO_CONTROL PDPK1 -AKT1 CO_CONTROL RHEB -AKT1 CO_CONTROL TRAF6 -AKT1 IN_SAME_COMPONENT DKC1 -AKT1 IN_SAME_COMPONENT HSP90AA1 -AKT1 IN_SAME_COMPONENT MAP3K5 -AKT1 IN_SAME_COMPONENT MAP3K8 -AKT1 IN_SAME_COMPONENT MTOR -AKT1 IN_SAME_COMPONENT PTGES3 -AKT1 IN_SAME_COMPONENT PTPN1 -AKT1 IN_SAME_COMPONENT RAF1 -AKT1 IN_SAME_COMPONENT RPS6KB1 -AKT1 IN_SAME_COMPONENT TERT -AKT1 INTERACTS_WITH CDKN1B -AKT1 INTERACTS_WITH ICAM1 -AKT1 INTERACTS_WITH ITGAM -AKT1 INTERACTS_WITH ITGB2 -AKT1 INTERACTS_WITH PRKCZ -AKT1 METABOLIC_CATALYSIS GLI2 -AKT1 METABOLIC_CATALYSIS MCL1 -AKT1 METABOLIC_CATALYSIS MYC -AKT1 METABOLIC_CATALYSIS PCK2 -AKT1 METABOLIC_CATALYSIS TERT -AKT1 REACTS_WITH AKT1 -AKT1 REACTS_WITH DKC1 -AKT1 REACTS_WITH HSP90AA1 -AKT1 REACTS_WITH MAP3K5 -AKT1 REACTS_WITH MAP3K8 -AKT1 REACTS_WITH MTOR -AKT1 REACTS_WITH PTGES3 -AKT1 REACTS_WITH PTPN1 -AKT1 REACTS_WITH RAF1 -AKT1 REACTS_WITH RPS6KB1 -AKT1 REACTS_WITH TERT -AKT1S1 IN_SAME_COMPONENT DEPTOR -AKT1S1 IN_SAME_COMPONENT MLST8 -AKT1S1 IN_SAME_COMPONENT MTOR -AKT1S1 IN_SAME_COMPONENT RPTOR -AKT1S1 REACTS_WITH AKT1S1 -AKT1S1 REACTS_WITH DEPTOR -AKT1S1 REACTS_WITH MLST8 -AKT1S1 REACTS_WITH MTOR -AKT1S1 REACTS_WITH RPTOR -AKT1 STATE_CHANGE AKT1S1 -AKT1 STATE_CHANGE AKT2 -AKT1 STATE_CHANGE APPL1 -AKT1 STATE_CHANGE BAD -AKT1 STATE_CHANGE CASP9 -AKT1 STATE_CHANGE CDKN1A -AKT1 STATE_CHANGE CDKN1B -AKT1 STATE_CHANGE CHUK -AKT1 STATE_CHANGE DEPTOR -AKT1 STATE_CHANGE EIF4EBP1 -AKT1 STATE_CHANGE FOXA2 -AKT1 STATE_CHANGE FOXO1 -AKT1 STATE_CHANGE FOXO3 -AKT1 STATE_CHANGE FOXO4 -AKT1 STATE_CHANGE GSK3B -AKT1 STATE_CHANGE HSP90AA1 -AKT1 STATE_CHANGE IKBKB -AKT1 STATE_CHANGE IKBKG -AKT1 STATE_CHANGE INS -AKT1 STATE_CHANGE INSR -AKT1 STATE_CHANGE MAP3K14 -AKT1 STATE_CHANGE MDM2 -AKT1 STATE_CHANGE MLST8 -AKT1 STATE_CHANGE MST1 -AKT1 STATE_CHANGE MST1R -AKT1 STATE_CHANGE MTOR -AKT1 STATE_CHANGE NCOR2 -AKT1 STATE_CHANGE NFKB1 -AKT1 STATE_CHANGE NOS3 -AKT1 STATE_CHANGE NRIP1 -AKT1 STATE_CHANGE RAF1 -AKT1 STATE_CHANGE RALGDS -AKT1 STATE_CHANGE RARA -AKT1 STATE_CHANGE RPS6KB1 -AKT1 STATE_CHANGE RPTOR -AKT1 STATE_CHANGE TBC1D4 -AKT1 STATE_CHANGE TERT -AKT1 STATE_CHANGE TSC1 -AKT1 STATE_CHANGE TSC2 -AKT1 STATE_CHANGE UBE2D1 -AKT1 STATE_CHANGE USP8 -AKT1 STATE_CHANGE YWHAE -AKT2 CO_CONTROL CDKN1A -AKT2 IN_SAME_COMPONENT CDKN1A -AKT2 REACTS_WITH AKT2 -AKT2 REACTS_WITH CDKN1A -AKT2 STATE_CHANGE GSK3B -AKT2 STATE_CHANGE TBC1D4 -AMH IN_SAME_COMPONENT ACVR1 -AMH IN_SAME_COMPONENT AMHR2 -AMHR2 IN_SAME_COMPONENT ACVR1 -AMHR2 IN_SAME_COMPONENT AMH -AMHR2 REACTS_WITH ACVR1 -AMHR2 REACTS_WITH AMH -AMHR2 REACTS_WITH AMHR2 -AMHR2 REACTS_WITH FKBP1A -AMH REACTS_WITH ACVR1 -AMH REACTS_WITH AMH -AMH REACTS_WITH AMHR2 -AMH REACTS_WITH FKBP1A -AMICA1 REACTS_WITH AMICA1 -AMPH CO_CONTROL DNM1 -AMPH CO_CONTROL SH3GL2 -AMPH CO_CONTROL SH3KBP1 -AMPH CO_CONTROL SYNJ1 -AMPH STATE_CHANGE EGF -AMPH STATE_CHANGE EGFR -ANGPT1 IN_SAME_COMPONENT GRB14 -ANGPT1 IN_SAME_COMPONENT GRB7 -ANGPT1 IN_SAME_COMPONENT ITGA5 -ANGPT1 IN_SAME_COMPONENT ITGB1 -ANGPT1 IN_SAME_COMPONENT SHC1 -ANGPT1 IN_SAME_COMPONENT TEK -ANGPT1 IN_SAME_COMPONENT TNIP2 -ANGPT1 METABOLIC_CATALYSIS ELF2 -ANGPT1 REACTS_WITH ANGPT1 -ANGPT1 REACTS_WITH GRB14 -ANGPT1 REACTS_WITH GRB7 -ANGPT1 REACTS_WITH ITGA5 -ANGPT1 REACTS_WITH ITGB1 -ANGPT1 REACTS_WITH SHC1 -ANGPT1 REACTS_WITH TEK -ANGPT1 REACTS_WITH TNIP2 -ANGPT1 STATE_CHANGE BMX -ANGPT1 STATE_CHANGE CRK -ANGPT1 STATE_CHANGE DOK2 -ANGPT1 STATE_CHANGE FES -ANGPT1 STATE_CHANGE MAPK14 -ANGPT1 STATE_CHANGE MAPK8 -ANGPT1 STATE_CHANGE MMP2 -ANGPT1 STATE_CHANGE NCK1 -ANGPT1 STATE_CHANGE PIK3CA -ANGPT1 STATE_CHANGE PIK3R1 -ANGPT1 STATE_CHANGE PLD2 -ANGPT1 STATE_CHANGE PLG -ANGPT1 STATE_CHANGE RASA1 -ANGPT2 IN_SAME_COMPONENT TEK -ANGPT2 METABOLIC_CATALYSIS CDKN1A -ANGPT2 REACTS_WITH ANGPT2 -ANGPT2 REACTS_WITH TEK -ANGPT2 STATE_CHANGE FES -ANGPT2 STATE_CHANGE FYN -ANGPT2 STATE_CHANGE MAPK14 -ANGPT2 STATE_CHANGE PIK3CA -ANGPT2 STATE_CHANGE PIK3R1 -ANGPT2 STATE_CHANGE STAT5A -ANGPTL3 IN_SAME_COMPONENT ITGAV -ANGPTL3 IN_SAME_COMPONENT ITGB3 -ANGPTL3 REACTS_WITH ANGPTL3 -ANGPTL3 REACTS_WITH ITGAV -ANGPTL3 REACTS_WITH ITGB3 -ANKRA2 IN_SAME_COMPONENT HDAC4 -ANKRA2 IN_SAME_COMPONENT HDAC5 -ANKRA2 REACTS_WITH ANKRA2 -ANKRA2 REACTS_WITH HDAC4 -ANKRA2 REACTS_WITH HDAC5 -AP1M1 IN_SAME_COMPONENT PIP5K1C -AP1M1 REACTS_WITH AP1M1 -AP1M1 REACTS_WITH PIP5K1C -AP1M1 STATE_CHANGE CDH1 -AP1M1 STATE_CHANGE CTNNB1 -AP2A1 IN_SAME_COMPONENT AP2M1 -AP2A1 REACTS_WITH CD4 -AP2M1 IN_SAME_COMPONENT AP2A1 -AP2M1 REACTS_WITH CD4 -APAF1 IN_SAME_COMPONENT CASP9 -APAF1 STATE_CHANGE CASP3 -APAF1 STATE_CHANGE CASP6 -APAF1 STATE_CHANGE CASP7 -APC IN_SAME_COMPONENT ARHGEF4 -APC IN_SAME_COMPONENT AXIN1 -APC IN_SAME_COMPONENT AXIN2 -APC IN_SAME_COMPONENT CTBP1 -APC IN_SAME_COMPONENT CTNNB1 -APC IN_SAME_COMPONENT DLG1 -APC IN_SAME_COMPONENT SPATA13 -APC REACTS_WITH APC -APC REACTS_WITH ARHGEF4 -APC REACTS_WITH AXIN1 -APC REACTS_WITH AXIN2 -APC REACTS_WITH CTBP1 -APC REACTS_WITH CTNNB1 -APC REACTS_WITH DLG1 -APC REACTS_WITH FZD5 -APC REACTS_WITH LRP6 -APC REACTS_WITH WNT3A -APC STATE_CHANGE CDC42 -APC STATE_CHANGE RAC1 -APEX1 STATE_CHANGE ARNT -APEX1 STATE_CHANGE EPAS1 -APH1A IN_SAME_COMPONENT APH1B -APH1A IN_SAME_COMPONENT NCSTN -APH1A IN_SAME_COMPONENT PSEN1 -APH1A IN_SAME_COMPONENT PSENEN -APH1A STATE_CHANGE CNTN1 -APH1A STATE_CHANGE CNTN6 -APH1A STATE_CHANGE CTNNB1 -APH1A STATE_CHANGE DLL1 -APH1A STATE_CHANGE DLL4 -APH1A STATE_CHANGE DNER -APH1A STATE_CHANGE FBXW11 -APH1A STATE_CHANGE NOTCH1 -APH1A STATE_CHANGE NOTCH2 -APH1A STATE_CHANGE NOTCH3 -APH1A STATE_CHANGE NOTCH4 -APH1A STATE_CHANGE SDC3 -APH1A STATE_CHANGE SORT1 -APH1A STATE_CHANGE TRAF6 -APH1A STATE_CHANGE ZNF274 -APH1B IN_SAME_COMPONENT APH1A -APH1B IN_SAME_COMPONENT NCSTN -APH1B IN_SAME_COMPONENT PSEN1 -APH1B IN_SAME_COMPONENT PSENEN -APH1B STATE_CHANGE CNTN1 -APH1B STATE_CHANGE CNTN6 -APH1B STATE_CHANGE CTNNB1 -APH1B STATE_CHANGE DLL1 -APH1B STATE_CHANGE DLL4 -APH1B STATE_CHANGE DNER -APH1B STATE_CHANGE FBXW11 -APH1B STATE_CHANGE NOTCH1 -APH1B STATE_CHANGE NOTCH2 -APH1B STATE_CHANGE NOTCH3 -APH1B STATE_CHANGE NOTCH4 -APH1B STATE_CHANGE SDC3 -APH1B STATE_CHANGE SORT1 -APH1B STATE_CHANGE TRAF6 -APH1B STATE_CHANGE ZNF274 -APOB IN_SAME_COMPONENT ITGAM -APOB IN_SAME_COMPONENT ITGB2 -APOB IN_SAME_COMPONENT LPA -APOB REACTS_WITH APOB -APOB REACTS_WITH ITGAM -APOB REACTS_WITH ITGB2 -APOB REACTS_WITH LPA -APPBP2 STATE_CHANGE AR -APP IN_SAME_COMPONENT GPC1 -APP IN_SAME_COMPONENT NGFR -APPL1 CO_CONTROL AR -APPL1 METABOLIC_CATALYSIS KLK3 -APP REACTS_WITH APP -APP REACTS_WITH GPC1 -APP REACTS_WITH NGFR -AQP3 REACTS_WITH AQP5 -AQP5 REACTS_WITH AQP3 -ARAP1 STATE_CHANGE RHOA -ARAP3 IN_SAME_COMPONENT RAP1A -ARAP3 REACTS_WITH ARAP3 -ARAP3 REACTS_WITH RAP1A -ARAP3 STATE_CHANGE RHOA -AR CO_CONTROL APPL1 -AR CO_CONTROL AR -AR CO_CONTROL BRCA1 -AR CO_CONTROL CARM1 -AR CO_CONTROL CASP8 -AR CO_CONTROL CCND1 -AR CO_CONTROL CCND3 -AR CO_CONTROL CDK6 -AR CO_CONTROL CEBPA -AR CO_CONTROL CMTM2 -AR CO_CONTROL CTDSP1 -AR CO_CONTROL CTDSP2 -AR CO_CONTROL CTNNB1 -AR CO_CONTROL EGR1 -AR CO_CONTROL EHMT2 -AR CO_CONTROL FHL2 -AR CO_CONTROL FKBP4 -AR CO_CONTROL FOXA1 -AR CO_CONTROL FOXO1 -AR CO_CONTROL GATA2 -AR CO_CONTROL GSN -AR CO_CONTROL HDAC1 -AR CO_CONTROL HDAC7 -AR CO_CONTROL HIP1 -AR CO_CONTROL HNRNPA1 -AR CO_CONTROL HOXB13 -AR CO_CONTROL JUN -AR CO_CONTROL KDM1A -AR CO_CONTROL KDM3A -AR CO_CONTROL KDM4C -AR CO_CONTROL LATS2 -AR CO_CONTROL MAK -AR CO_CONTROL MDM2 -AR CO_CONTROL MED1 -AR CO_CONTROL MYST2 -AR CO_CONTROL NCOA1 -AR CO_CONTROL NCOA2 -AR CO_CONTROL NCOA6 -AR CO_CONTROL NR2C1 -AR CO_CONTROL NR2C2 -AR CO_CONTROL NRIP1 -AR CO_CONTROL PA2G4 -AR CO_CONTROL PATZ1 -AR CO_CONTROL PAWR -AR CO_CONTROL PELP1 -AR CO_CONTROL PIAS1 -AR CO_CONTROL PIAS3 -AR CO_CONTROL PIAS4 -AR CO_CONTROL POU2F1 -AR CO_CONTROL PRKDC -AR CO_CONTROL PTK2B -AR CO_CONTROL REL -AR CO_CONTROL RPS6KA3 -AR CO_CONTROL SMARCA2 -AR CO_CONTROL SMARCC1 -AR CO_CONTROL SMARCE1 -AR CO_CONTROL SPDEF -AR CO_CONTROL SRC -AR CO_CONTROL SRF -AR CO_CONTROL SRY -AR CO_CONTROL SVIL -AR CO_CONTROL TCF4 -AR CO_CONTROL TGFB1I1 -AR CO_CONTROL TGIF1 -AR CO_CONTROL TMF1 -AR CO_CONTROL TRIM24 -AR CO_CONTROL UBA3 -AR CO_CONTROL UBE3A -AR CO_CONTROL VAV3 -AR CO_CONTROL XRCC5 -AR CO_CONTROL XRCC6 -AR CO_CONTROL ZMIZ2 -AREG IN_SAME_COMPONENT EGFR -AREG IN_SAME_COMPONENT ERBB2 -AREG IN_SAME_COMPONENT ERBB3 -AREG REACTS_WITH AREG -AREG REACTS_WITH EGFR -AREG REACTS_WITH ERBB2 -AREG REACTS_WITH ERBB3 -ARF4 REACTS_WITH ARF4 -ARF4 STATE_CHANGE PLD2 -ARFGAP1 CO_CONTROL ARFGAP1 -ARFGAP1 CO_CONTROL ASAP1 -ARFGAP1 CO_CONTROL GGA3 -ARFGAP1 CO_CONTROL KDELR1 -ARFGAP1 IN_SAME_COMPONENT CLTA -ARFGAP1 IN_SAME_COMPONENT CLTB -ARFGAP1 IN_SAME_COMPONENT COPA -ARFGAP1 IN_SAME_COMPONENT GGA3 -ARFGAP1 IN_SAME_COMPONENT KDELR1 -ARFGAP1 REACTS_WITH ARFGAP1 -ARFGAP1 REACTS_WITH CLTA -ARFGAP1 REACTS_WITH CLTB -ARFGAP1 REACTS_WITH COPA -ARFGAP1 REACTS_WITH GGA3 -ARFGAP1 REACTS_WITH KDELR1 -ARFGAP1 STATE_CHANGE ARFGAP1 -ARFGAP1 STATE_CHANGE CLTA -ARFGAP1 STATE_CHANGE CLTB -ARFGAP1 STATE_CHANGE COPA -ARFIP2 IN_SAME_COMPONENT RAC1 -ARFIP2 REACTS_WITH ARFIP2 -ARFIP2 REACTS_WITH RAC1 -ARFIP2 STATE_CHANGE PLD2 -ARHGAP17 STATE_CHANGE CDC42 -ARHGAP17 STATE_CHANGE RAC1 -ARHGAP1 STATE_CHANGE CDC42 -ARHGAP1 STATE_CHANGE RAC1 -ARHGAP26 REACTS_WITH ARHGAP26 -ARHGAP26 STATE_CHANGE RHOA -ARHGAP32 IN_SAME_COMPONENT NGF -ARHGAP32 REACTS_WITH ARHGAP32 -ARHGAP32 REACTS_WITH NGF -ARHGAP4 STATE_CHANGE RHOA -ARHGAP5 STATE_CHANGE RHOA -ARHGAP6 STATE_CHANGE RHOA -ARHGAP8 STATE_CHANGE RHOA -ARHGAP9 STATE_CHANGE RAC1 -ARHGAP9 STATE_CHANGE RHOA -ARHGDIA CO_CONTROL MCF2 -ARHGDIA IN_SAME_COMPONENT LINGO1 -ARHGDIA IN_SAME_COMPONENT NGFR -ARHGDIA IN_SAME_COMPONENT RAC1 -ARHGDIA IN_SAME_COMPONENT RHOA -ARHGDIA IN_SAME_COMPONENT RTN4R -ARHGDIA REACTS_WITH ARHGDIA -ARHGDIA REACTS_WITH LINGO1 -ARHGDIA REACTS_WITH NGFR -ARHGDIA REACTS_WITH RAC1 -ARHGDIA REACTS_WITH RHOA -ARHGDIA REACTS_WITH RTN4R -ARHGDIA STATE_CHANGE CDC42 -ARHGDIA STATE_CHANGE RAC1 -ARHGDIB IN_SAME_COMPONENT RHOA -ARHGDIB REACTS_WITH ARHGDIB -ARHGDIB REACTS_WITH RHOA -ARHGDIG IN_SAME_COMPONENT RHOA -ARHGDIG REACTS_WITH ARHGDIG -ARHGDIG REACTS_WITH RHOA -ARHGEF10L STATE_CHANGE RHOA -ARHGEF10 STATE_CHANGE RHOA -ARHGEF11 STATE_CHANGE RHOA -ARHGEF12 STATE_CHANGE RHOA -ARHGEF15 IN_SAME_COMPONENT EFNA1 -ARHGEF15 IN_SAME_COMPONENT EPHA4 -ARHGEF15 REACTS_WITH ARHGEF15 -ARHGEF15 REACTS_WITH EFNA1 -ARHGEF15 REACTS_WITH EPHA4 -ARHGEF15 STATE_CHANGE RHOA -ARHGEF17 STATE_CHANGE RHOA -ARHGEF18 STATE_CHANGE RHOA -ARHGEF1 CO_CONTROL CDKN1B -ARHGEF1 IN_SAME_COMPONENT GNA13 -ARHGEF1 REACTS_WITH ARHGEF1 -ARHGEF1 REACTS_WITH GNA13 -ARHGEF1 STATE_CHANGE RHOA -ARHGEF25 STATE_CHANGE CDC42 -ARHGEF25 STATE_CHANGE RAC1 -ARHGEF25 STATE_CHANGE RHOA -ARHGEF2 IN_SAME_COMPONENT DAB1 -ARHGEF2 IN_SAME_COMPONENT FYN -ARHGEF2 IN_SAME_COMPONENT LRP8 -ARHGEF2 IN_SAME_COMPONENT MAP2K7 -ARHGEF2 IN_SAME_COMPONENT MAP3K11 -ARHGEF2 IN_SAME_COMPONENT MAPK8 -ARHGEF2 IN_SAME_COMPONENT RELN -ARHGEF2 REACTS_WITH ARHGEF2 -ARHGEF2 REACTS_WITH DAB1 -ARHGEF2 REACTS_WITH FYN -ARHGEF2 REACTS_WITH LRP8 -ARHGEF2 REACTS_WITH MAP2K7 -ARHGEF2 REACTS_WITH MAP3K11 -ARHGEF2 REACTS_WITH MAPK8 -ARHGEF2 REACTS_WITH RELN -ARHGEF2 STATE_CHANGE RAC1 -ARHGEF2 STATE_CHANGE RHOA -ARHGEF3 STATE_CHANGE RHOA -ARHGEF4 IN_SAME_COMPONENT APC -ARHGEF4 REACTS_WITH APC -ARHGEF4 REACTS_WITH ARHGEF4 -ARHGEF4 STATE_CHANGE RAC1 -ARHGEF5 STATE_CHANGE RHOA -ARHGEF6 STATE_CHANGE CDC42 -ARHGEF6 STATE_CHANGE RAC1 -ARHGEF7 IN_SAME_COMPONENT CBL -ARHGEF7 IN_SAME_COMPONENT CDC42 -ARHGEF7 IN_SAME_COMPONENT GIT1 -ARHGEF7 IN_SAME_COMPONENT GIT2 -ARHGEF7 IN_SAME_COMPONENT PAK1 -ARHGEF7 IN_SAME_COMPONENT PLCG1 -ARHGEF7 IN_SAME_COMPONENT PXN -ARHGEF7 IN_SAME_COMPONENT RAC1 -ARHGEF7 REACTS_WITH ARHGEF7 -ARHGEF7 REACTS_WITH AURKA -ARHGEF7 REACTS_WITH CBL -ARHGEF7 REACTS_WITH CDC42 -ARHGEF7 REACTS_WITH GIT1 -ARHGEF7 REACTS_WITH GIT2 -ARHGEF7 REACTS_WITH PAK1 -ARHGEF7 REACTS_WITH PXN -ARHGEF7 REACTS_WITH RAC1 -ARHGEF7 STATE_CHANGE CDC42 -ARHGEF7 STATE_CHANGE RAC1 -ARHGEF9 STATE_CHANGE CDC42 -AR IN_SAME_COMPONENT CARM1 -AR IN_SAME_COMPONENT CASP8 -AR IN_SAME_COMPONENT CCND1 -AR IN_SAME_COMPONENT CCND3 -AR IN_SAME_COMPONENT CDK6 -AR IN_SAME_COMPONENT CTNNB1 -AR IN_SAME_COMPONENT FOXA1 -AR IN_SAME_COMPONENT HEY1 -AR IN_SAME_COMPONENT HSP90AA1 -AR IN_SAME_COMPONENT KAT5 -AR IN_SAME_COMPONENT NCOA1 -AR IN_SAME_COMPONENT NCOA2 -AR IN_SAME_COMPONENT NCOA4 -AR IN_SAME_COMPONENT NR0B1 -AR IN_SAME_COMPONENT NR3C1 -AR IN_SAME_COMPONENT PELP1 -AR IN_SAME_COMPONENT PIK3CA -AR IN_SAME_COMPONENT PIK3R1 -AR IN_SAME_COMPONENT PRDX1 -AR IN_SAME_COMPONENT SMAD4 -AR IN_SAME_COMPONENT SNURF -AR IN_SAME_COMPONENT SRC -AR IN_SAME_COMPONENT UBE2I -AR METABOLIC_CATALYSIS FHL2 -AR METABOLIC_CATALYSIS KLK2 -AR METABOLIC_CATALYSIS KLK3 -AR METABOLIC_CATALYSIS NKX3-1 -AR METABOLIC_CATALYSIS PDE9A -AR METABOLIC_CATALYSIS SMARCC1 -AR METABOLIC_CATALYSIS TMPRSS2 -ARNT CO_CONTROL CREB1 -ARNT CO_CONTROL FOS -ARNT CO_CONTROL GATA2 -ARNT CO_CONTROL HNF4A -ARNT CO_CONTROL JUN -ARNT CO_CONTROL NCOA2 -ARNT CO_CONTROL SP1 -ARNT IN_SAME_COMPONENT EPAS1 -ARNT IN_SAME_COMPONENT HDAC7 -ARNT IN_SAME_COMPONENT HEY2 -ARNT IN_SAME_COMPONENT HIF1A -ARNT IN_SAME_COMPONENT HIF3A -ARNT IN_SAME_COMPONENT NCOA1 -ARNT IN_SAME_COMPONENT SIRT1 -ARNT IN_SAME_COMPONENT SMAD4 -ARNT IN_SAME_COMPONENT SP1 -ARNTL IN_SAME_COMPONENT CLOCK -ARNTL IN_SAME_COMPONENT DEC1 -ARNTL IN_SAME_COMPONENT NPAS2 -ARNTL METABOLIC_CATALYSIS NR1D1 -ARNTL METABOLIC_CATALYSIS TIMELESS -ARNTL REACTS_WITH ARNTL -ARNTL REACTS_WITH BHLHE40 -ARNTL REACTS_WITH CLOCK -ARNTL REACTS_WITH DEC1 -ARNTL REACTS_WITH NPAS2 -ARNT METABOLIC_CATALYSIS ABCB1 -ARNT METABOLIC_CATALYSIS ABCG2 -ARNT METABOLIC_CATALYSIS ADM -ARNT METABOLIC_CATALYSIS ADORA2A -ARNT METABOLIC_CATALYSIS ALDOA -ARNT METABOLIC_CATALYSIS BHLHE40 -ARNT METABOLIC_CATALYSIS BHLHE41 -ARNT METABOLIC_CATALYSIS BNIP3 -ARNT METABOLIC_CATALYSIS CA9 -ARNT METABOLIC_CATALYSIS CITED2 -ARNT METABOLIC_CATALYSIS CP -ARNT METABOLIC_CATALYSIS CXCL12 -ARNT METABOLIC_CATALYSIS CXCR4 -ARNT METABOLIC_CATALYSIS EDN1 -ARNT METABOLIC_CATALYSIS EFNA1 -ARNT METABOLIC_CATALYSIS EGLN1 -ARNT METABOLIC_CATALYSIS EGLN3 -ARNT METABOLIC_CATALYSIS ENG -ARNT METABOLIC_CATALYSIS ENO1 -ARNT METABOLIC_CATALYSIS EPO -ARNT METABOLIC_CATALYSIS ETS1 -ARNT METABOLIC_CATALYSIS FECH -ARNT METABOLIC_CATALYSIS FLT1 -ARNT METABOLIC_CATALYSIS FURIN -ARNT METABOLIC_CATALYSIS FXN -ARNT METABOLIC_CATALYSIS GCK -ARNT METABOLIC_CATALYSIS HK1 -ARNT METABOLIC_CATALYSIS HK2 -ARNT METABOLIC_CATALYSIS HMOX1 -ARNT METABOLIC_CATALYSIS ID2 -ARNT METABOLIC_CATALYSIS IGFBP1 -ARNT METABOLIC_CATALYSIS ITGB2 -ARNT METABOLIC_CATALYSIS KDR -ARNT METABOLIC_CATALYSIS LDHA -ARNT METABOLIC_CATALYSIS LEP -ARNT METABOLIC_CATALYSIS MCL1 -ARNT METABOLIC_CATALYSIS MMP14 -ARNT METABOLIC_CATALYSIS NDRG1 -ARNT METABOLIC_CATALYSIS NOS2 -ARNT METABOLIC_CATALYSIS NT5E -ARNT METABOLIC_CATALYSIS PFKFB3 -ARNT METABOLIC_CATALYSIS PFKL -ARNT METABOLIC_CATALYSIS PGK1 -ARNT METABOLIC_CATALYSIS PGM1 -ARNT METABOLIC_CATALYSIS PKM2 -ARNT METABOLIC_CATALYSIS PLIN2 -ARNT METABOLIC_CATALYSIS POU5F1 -ARNT METABOLIC_CATALYSIS SERPINE1 -ARNT METABOLIC_CATALYSIS SLC11A2 -ARNT METABOLIC_CATALYSIS SLC2A1 -ARNT METABOLIC_CATALYSIS TERT -ARNT METABOLIC_CATALYSIS TF -ARNT METABOLIC_CATALYSIS TFF3 -ARNT METABOLIC_CATALYSIS TFRC -ARNT METABOLIC_CATALYSIS TWIST1 -ARNT METABOLIC_CATALYSIS VEGFA -ARNT REACTS_WITH ARNT -ARNT REACTS_WITH CITED2 -ARNT REACTS_WITH EPAS1 -ARNT REACTS_WITH HDAC7 -ARNT REACTS_WITH HEY2 -ARNT REACTS_WITH HIF1A -ARNT REACTS_WITH HIF3A -ARNT REACTS_WITH NCOA1 -ARNT REACTS_WITH SIRT1 -ARNT REACTS_WITH SMAD4 -ARNT REACTS_WITH SP1 -ARPC1B IN_SAME_COMPONENT ACTR3 -ARPC1B IN_SAME_COMPONENT ARPC2 -ARPC1B IN_SAME_COMPONENT ARPC3 -ARPC1B IN_SAME_COMPONENT ARPC5 -ARPC2 IN_SAME_COMPONENT ACTR3 -ARPC2 IN_SAME_COMPONENT ARPC1B -ARPC2 IN_SAME_COMPONENT ARPC3 -ARPC2 IN_SAME_COMPONENT ARPC5 -ARPC3 IN_SAME_COMPONENT ACTR3 -ARPC3 IN_SAME_COMPONENT ARPC1B -ARPC3 IN_SAME_COMPONENT ARPC2 -ARPC3 IN_SAME_COMPONENT ARPC5 -ARPC5 IN_SAME_COMPONENT ACTR3 -ARPC5 IN_SAME_COMPONENT ARPC1B -ARPC5 IN_SAME_COMPONENT ARPC2 -ARPC5 IN_SAME_COMPONENT ARPC3 -ARR3 IN_SAME_COMPONENT RAB11A -ARR3 IN_SAME_COMPONENT TBXA2R -ARR3 REACTS_WITH ARR3 -ARR3 REACTS_WITH RAB11A -ARR3 REACTS_WITH TBXA2R -ARR3 STATE_CHANGE CXCL12 -ARR3 STATE_CHANGE CXCR4 -ARRB1 IN_SAME_COMPONENT F2R -ARRB1 REACTS_WITH ARRB1 -ARRB1 REACTS_WITH F2R -ARRB1 STATE_CHANGE CXCL10 -ARRB1 STATE_CHANGE CXCR3 -ARRB2 CO_CONTROL HDAC1 -ARRB2 CO_CONTROL HDAC2 -ARRB2 CO_CONTROL RAB23 -ARRB2 CO_CONTROL RBBP4 -ARRB2 CO_CONTROL RBBP7 -ARRB2 CO_CONTROL SAP18 -ARRB2 CO_CONTROL SAP30 -ARRB2 CO_CONTROL SIN3A -ARRB2 CO_CONTROL SIN3B -ARRB2 CO_CONTROL STK36 -ARRB2 CO_CONTROL SUFU -ARRB2 CO_CONTROL TGFB1 -ARRB2 IN_SAME_COMPONENT KIRREL -ARRB2 IN_SAME_COMPONENT LHCGR -ARRB2 IN_SAME_COMPONENT NFKB1 -ARRB2 IN_SAME_COMPONENT NFKBIA -ARRB2 IN_SAME_COMPONENT NPHS1 -ARRB2 IN_SAME_COMPONENT RAB11A -ARRB2 IN_SAME_COMPONENT RELA -ARRB2 IN_SAME_COMPONENT SMO -ARRB2 IN_SAME_COMPONENT TBXA2R -ARRB2 IN_SAME_COMPONENT TGFBR3 -ARRB2 METABOLIC_CATALYSIS GLI2 -ARRB2 REACTS_WITH ARRB2 -ARRB2 REACTS_WITH KIRREL -ARRB2 REACTS_WITH LHCGR -ARRB2 REACTS_WITH NFKB1 -ARRB2 REACTS_WITH NFKBIA -ARRB2 REACTS_WITH NPHS1 -ARRB2 REACTS_WITH RAB11A -ARRB2 REACTS_WITH RELA -ARRB2 REACTS_WITH SMO -ARRB2 REACTS_WITH TBXA2R -ARRB2 REACTS_WITH TGFBR3 -ARRB2 STATE_CHANGE CXCL12 -ARRB2 STATE_CHANGE CXCR4 -ARRB2 STATE_CHANGE DVL2 -ARRB2 STATE_CHANGE FZD2 -ARRB2 STATE_CHANGE GLI1 -ARRB2 STATE_CHANGE GLI2 -ARRB2 STATE_CHANGE ROR2 -ARRB2 STATE_CHANGE SUFU -ARRB2 STATE_CHANGE WNT5A -AR REACTS_WITH AR -AR REACTS_WITH CARM1 -AR REACTS_WITH CCND1 -AR REACTS_WITH CCND3 -AR REACTS_WITH CDK6 -AR REACTS_WITH CTNNB1 -AR REACTS_WITH FOXA1 -AR REACTS_WITH HEY1 -AR REACTS_WITH HSP90AA1 -AR REACTS_WITH KAT5 -AR REACTS_WITH NCOA1 -AR REACTS_WITH NCOA2 -AR REACTS_WITH NCOA4 -AR REACTS_WITH NR0B1 -AR REACTS_WITH NR3C1 -AR REACTS_WITH PELP1 -AR REACTS_WITH PIK3CA -AR REACTS_WITH PIK3R1 -AR REACTS_WITH PRDX1 -AR REACTS_WITH SMAD4 -AR REACTS_WITH SNURF -AR REACTS_WITH SRC -AR REACTS_WITH TCF7L2 -AR REACTS_WITH UBE2I -AR STATE_CHANGE GNG2 -AR STATE_CHANGE HDAC7 -AR STATE_CHANGE HRAS -ASAH1 CO_CONTROL PDGFA -ASAP1 CO_CONTROL ARFGAP1 -ASAP1 CO_CONTROL GGA3 -ASAP1 CO_CONTROL KDELR1 -ASAP1 REACTS_WITH ASAP1 -ASAP1 STATE_CHANGE CLTA -ASAP1 STATE_CHANGE CLTB -ASAP1 STATE_CHANGE COPA -ASAP2 IN_SAME_COMPONENT BIN1 -ASIP STATE_CHANGE LNPEP -ASIP STATE_CHANGE SLC2A4 -ASIP STATE_CHANGE VAMP2 -ATF1 METABOLIC_CATALYSIS JUN -ATF2 CO_CONTROL ATF2 -ATF2 CO_CONTROL CUL3 -ATF2 CO_CONTROL EP300 -ATF2 CO_CONTROL FOS -ATF2 CO_CONTROL JDP2 -ATF2 CO_CONTROL JUN -ATF2 IN_SAME_COMPONENT BRCA1 -ATF2 IN_SAME_COMPONENT CREB1 -ATF2 IN_SAME_COMPONENT EP300 -ATF2 IN_SAME_COMPONENT ESR1 -ATF2 IN_SAME_COMPONENT H2AFY -ATF2 IN_SAME_COMPONENT JDP2 -ATF2 IN_SAME_COMPONENT JUN -ATF2 IN_SAME_COMPONENT JUNB -ATF2 IN_SAME_COMPONENT JUND -ATF2 IN_SAME_COMPONENT NF1 -ATF2 IN_SAME_COMPONENT POU2F1 -ATF2 IN_SAME_COMPONENT RUVBL2 -ATF2 IN_SAME_COMPONENT SMAD4 -ATF2 METABOLIC_CATALYSIS ACHE -ATF2 METABOLIC_CATALYSIS ARG1 -ATF2 METABOLIC_CATALYSIS ATF3 -ATF2 METABOLIC_CATALYSIS BCL2 -ATF2 METABOLIC_CATALYSIS CBFB -ATF2 METABOLIC_CATALYSIS CCNA2 -ATF2 METABOLIC_CATALYSIS CCND1 -ATF2 METABOLIC_CATALYSIS CDK4 -ATF2 METABOLIC_CATALYSIS COL24A1 -ATF2 METABOLIC_CATALYSIS CSRP2 -ATF2 METABOLIC_CATALYSIS DDIT3 -ATF2 METABOLIC_CATALYSIS DUSP1 -ATF2 METABOLIC_CATALYSIS DUSP10 -ATF2 METABOLIC_CATALYSIS DUSP5 -ATF2 METABOLIC_CATALYSIS DUSP8 -ATF2 METABOLIC_CATALYSIS ESR1 -ATF2 METABOLIC_CATALYSIS GADD45A -ATF2 METABOLIC_CATALYSIS HES1 -ATF2 METABOLIC_CATALYSIS HRK -ATF2 METABOLIC_CATALYSIS IFNG -ATF2 METABOLIC_CATALYSIS IL23A -ATF2 METABOLIC_CATALYSIS IL6 -ATF2 METABOLIC_CATALYSIS IL8 -ATF2 METABOLIC_CATALYSIS INS -ATF2 METABOLIC_CATALYSIS JUN -ATF2 METABOLIC_CATALYSIS MMP2 -ATF2 METABOLIC_CATALYSIS NOS2 -ATF2 METABOLIC_CATALYSIS PDGFRA -ATF2 METABOLIC_CATALYSIS PLAU -ATF2 METABOLIC_CATALYSIS PPARGC1A -ATF2 METABOLIC_CATALYSIS RB1 -ATF2 METABOLIC_CATALYSIS SELE -ATF2 METABOLIC_CATALYSIS SERPINB5 -ATF2 METABOLIC_CATALYSIS SOCS3 -ATF2 METABOLIC_CATALYSIS TGFB2 -ATF2 METABOLIC_CATALYSIS TH -ATF2 REACTS_WITH ATF2 -ATF2 REACTS_WITH BRCA1 -ATF2 REACTS_WITH CREB1 -ATF2 REACTS_WITH EP300 -ATF2 REACTS_WITH ESR1 -ATF2 REACTS_WITH H2AFY -ATF2 REACTS_WITH JDP2 -ATF2 REACTS_WITH JUN -ATF2 REACTS_WITH JUNB -ATF2 REACTS_WITH JUND -ATF2 REACTS_WITH NF1 -ATF2 REACTS_WITH POU2F1 -ATF2 REACTS_WITH RUVBL2 -ATF2 REACTS_WITH SMAD4 -ATF2 STATE_CHANGE KAT5 -ATF3 IN_SAME_COMPONENT JUN -ATF3 IN_SAME_COMPONENT SMAD4 -ATF3 METABOLIC_CATALYSIS IFNG -ATF3 REACTS_WITH ATF3 -ATF3 REACTS_WITH JUN -ATF4 METABOLIC_CATALYSIS BGLAP -ATF4 REACTS_WITH ATF4 -ATF5 IN_SAME_COMPONENT PTP4A1 -ATF5 REACTS_WITH ATF5 -ATF5 REACTS_WITH PTP4A1 -ATF7 METABOLIC_CATALYSIS TGFB2 -ATG13 IN_SAME_COMPONENT MLST8 -ATG13 IN_SAME_COMPONENT MTOR -ATG13 IN_SAME_COMPONENT RB1CC1 -ATG13 IN_SAME_COMPONENT RPTOR -ATG13 REACTS_WITH ATG13 -ATG13 REACTS_WITH MLST8 -ATG13 REACTS_WITH MTOR -ATG13 REACTS_WITH RB1CC1 -ATG13 REACTS_WITH RPTOR -ATM IN_SAME_COMPONENT BRCA1 -ATM IN_SAME_COMPONENT FAM175A -ATM IN_SAME_COMPONENT H2AFX -ATM IN_SAME_COMPONENT IKBKG -ATM IN_SAME_COMPONENT MDC1 -ATM IN_SAME_COMPONENT MRE11A -ATM IN_SAME_COMPONENT NBN -ATM IN_SAME_COMPONENT RAD50 -ATM IN_SAME_COMPONENT RNF8 -ATM IN_SAME_COMPONENT TERF2 -ATM IN_SAME_COMPONENT TP53BP1 -ATM IN_SAME_COMPONENT UIMC1 -ATM METABOLIC_CATALYSIS SMC3 -ATM REACTS_WITH ATM -ATM REACTS_WITH BRCA1 -ATM REACTS_WITH CTBP1 -ATM REACTS_WITH FAM175A -ATM REACTS_WITH H2AFX -ATM REACTS_WITH IKBKG -ATM REACTS_WITH MDC1 -ATM REACTS_WITH MRE11A -ATM REACTS_WITH NBN -ATM REACTS_WITH RAD50 -ATM REACTS_WITH RBBP8 -ATM REACTS_WITH RNF8 -ATM REACTS_WITH TERF2 -ATM REACTS_WITH TP53BP1 -ATM REACTS_WITH UIMC1 -ATM STATE_CHANGE ABL1 -ATM STATE_CHANGE BARD1 -ATM STATE_CHANGE BID -ATM STATE_CHANGE BLM -ATM STATE_CHANGE BRCA1 -ATM STATE_CHANGE CHEK2 -ATM STATE_CHANGE DCLRE1C -ATM STATE_CHANGE DYRK2 -ATM STATE_CHANGE E2F1 -ATM STATE_CHANGE FANCD2 -ATM STATE_CHANGE H2AFX -ATM STATE_CHANGE MDM2 -ATM STATE_CHANGE MDM4 -ATM STATE_CHANGE MRE11A -ATM STATE_CHANGE NBN -ATM STATE_CHANGE RAD17 -ATM STATE_CHANGE RAD50 -ATM STATE_CHANGE RAD9A -ATM STATE_CHANGE RBBP8 -ATM STATE_CHANGE RFWD2 -ATM STATE_CHANGE SMC1A -ATM STATE_CHANGE TOP3A -ATM STATE_CHANGE TP53 -ATM STATE_CHANGE TRIM28 -ATM STATE_CHANGE TTC5 -ATM STATE_CHANGE XRCC4 -ATP6AP2 IN_SAME_COMPONENT FZD8 -ATP6AP2 IN_SAME_COMPONENT LRP6 -ATP6AP2 IN_SAME_COMPONENT WNT3A -ATP6AP2 REACTS_WITH ATP6AP2 -ATP6AP2 REACTS_WITH FZD8 -ATP6AP2 REACTS_WITH LRP6 -ATP6AP2 REACTS_WITH WNT3A -ATR CO_CONTROL SRC -ATR CO_CONTROL STAT3 -ATR IN_SAME_COMPONENT ATRIP -ATR IN_SAME_COMPONENT CDC6 -ATR IN_SAME_COMPONENT CEP164 -ATR IN_SAME_COMPONENT CHEK1 -ATR IN_SAME_COMPONENT CLSPN -ATR IN_SAME_COMPONENT HUS1 -ATR IN_SAME_COMPONENT RAD1 -ATR IN_SAME_COMPONENT RAD17 -ATR IN_SAME_COMPONENT RAD9A -ATR IN_SAME_COMPONENT RFC2 -ATR IN_SAME_COMPONENT RFC3 -ATR IN_SAME_COMPONENT RFC4 -ATR IN_SAME_COMPONENT RFC5 -ATR IN_SAME_COMPONENT RPA1 -ATR IN_SAME_COMPONENT RPA2 -ATR IN_SAME_COMPONENT SMARCAL1 -ATR IN_SAME_COMPONENT TIMELESS -ATR IN_SAME_COMPONENT TIPIN -ATR IN_SAME_COMPONENT TOPBP1 -ATRIP IN_SAME_COMPONENT ATR -ATRIP IN_SAME_COMPONENT CDC6 -ATRIP IN_SAME_COMPONENT CEP164 -ATRIP IN_SAME_COMPONENT CHEK1 -ATRIP IN_SAME_COMPONENT CLSPN -ATRIP IN_SAME_COMPONENT HUS1 -ATRIP IN_SAME_COMPONENT RAD1 -ATRIP IN_SAME_COMPONENT RAD17 -ATRIP IN_SAME_COMPONENT RAD9A -ATRIP IN_SAME_COMPONENT RFC2 -ATRIP IN_SAME_COMPONENT RFC3 -ATRIP IN_SAME_COMPONENT RFC4 -ATRIP IN_SAME_COMPONENT RFC5 -ATRIP IN_SAME_COMPONENT RPA1 -ATRIP IN_SAME_COMPONENT RPA2 -ATRIP IN_SAME_COMPONENT SMARCAL1 -ATRIP IN_SAME_COMPONENT TIMELESS -ATRIP IN_SAME_COMPONENT TIPIN -ATRIP IN_SAME_COMPONENT TOPBP1 -ATRIP REACTS_WITH ATR -ATRIP REACTS_WITH ATRIP -ATRIP REACTS_WITH CDC6 -ATRIP REACTS_WITH CEP164 -ATRIP REACTS_WITH CHEK1 -ATRIP REACTS_WITH CLSPN -ATRIP REACTS_WITH HUS1 -ATRIP REACTS_WITH RAD1 -ATRIP REACTS_WITH RAD17 -ATRIP REACTS_WITH RAD9A -ATRIP REACTS_WITH RFC2 -ATRIP REACTS_WITH RFC3 -ATRIP REACTS_WITH RFC4 -ATRIP REACTS_WITH RFC5 -ATRIP REACTS_WITH RPA1 -ATRIP REACTS_WITH RPA2 -ATRIP REACTS_WITH SMARCAL1 -ATRIP REACTS_WITH TIMELESS -ATRIP REACTS_WITH TIPIN -ATRIP REACTS_WITH TOPBP1 -ATRIP STATE_CHANGE FANCD2 -ATRIP STATE_CHANGE MCM2 -ATRIP STATE_CHANGE MDM2 -ATRIP STATE_CHANGE NBN -ATR REACTS_WITH ATR -ATR REACTS_WITH ATRIP -ATR REACTS_WITH CDC6 -ATR REACTS_WITH CEP164 -ATR REACTS_WITH CHEK1 -ATR REACTS_WITH CLSPN -ATR REACTS_WITH HUS1 -ATR REACTS_WITH RAD1 -ATR REACTS_WITH RAD17 -ATR REACTS_WITH RAD9A -ATR REACTS_WITH RFC2 -ATR REACTS_WITH RFC3 -ATR REACTS_WITH RFC4 -ATR REACTS_WITH RFC5 -ATR REACTS_WITH RPA1 -ATR REACTS_WITH RPA2 -ATR REACTS_WITH SMARCAL1 -ATR REACTS_WITH TIMELESS -ATR REACTS_WITH TIPIN -ATR REACTS_WITH TOPBP1 -ATR STATE_CHANGE BARD1 -ATR STATE_CHANGE BRCA1 -ATR STATE_CHANGE FANCD2 -ATR STATE_CHANGE MCM2 -ATR STATE_CHANGE MDM2 -ATR STATE_CHANGE NBN -ATR STATE_CHANGE TP53 -AURKA IN_SAME_COMPONENT BIRC5 -AURKA IN_SAME_COMPONENT BORA -AURKA IN_SAME_COMPONENT BRCA1 -AURKA IN_SAME_COMPONENT CKAP5 -AURKA IN_SAME_COMPONENT CPEB1 -AURKA IN_SAME_COMPONENT GADD45A -AURKA IN_SAME_COMPONENT JUB -AURKA IN_SAME_COMPONENT NDEL1 -AURKA IN_SAME_COMPONENT OAZ1 -AURKA IN_SAME_COMPONENT PAK1 -AURKA IN_SAME_COMPONENT PPP2R5D -AURKA IN_SAME_COMPONENT RASA1 -AURKA IN_SAME_COMPONENT TACC1 -AURKA IN_SAME_COMPONENT TACC3 -AURKA IN_SAME_COMPONENT TDRD7 -AURKA IN_SAME_COMPONENT TPX2 -AURKA INTERACTS_WITH DLGAP5 -AURKAIP1 STATE_CHANGE AURKA -AURKAIP1 STATE_CHANGE OAZ1 -AURKA REACTS_WITH ARHGEF7 -AURKA REACTS_WITH AURKA -AURKA REACTS_WITH BIRC5 -AURKA REACTS_WITH BORA -AURKA REACTS_WITH BRCA1 -AURKA REACTS_WITH CKAP5 -AURKA REACTS_WITH CPEB1 -AURKA REACTS_WITH GADD45A -AURKA REACTS_WITH GIT1 -AURKA REACTS_WITH JUB -AURKA REACTS_WITH NDEL1 -AURKA REACTS_WITH OAZ1 -AURKA REACTS_WITH PAK1 -AURKA REACTS_WITH PPP2R5D -AURKA REACTS_WITH RASA1 -AURKA REACTS_WITH TACC1 -AURKA REACTS_WITH TACC3 -AURKA REACTS_WITH TDRD7 -AURKA REACTS_WITH TPX2 -AURKA STATE_CHANGE AKT1 -AURKA STATE_CHANGE CDC25B -AURKA STATE_CHANGE CENPA -AURKA STATE_CHANGE DLGAP5 -AURKA STATE_CHANGE NDEL1 -AURKA STATE_CHANGE NFKBIA -AURKA STATE_CHANGE PLK1 -AURKA STATE_CHANGE TACC3 -AURKA STATE_CHANGE TP53 -AURKB IN_SAME_COMPONENT AURKC -AURKB IN_SAME_COMPONENT BIRC5 -AURKB IN_SAME_COMPONENT CDCA8 -AURKB IN_SAME_COMPONENT CUL3 -AURKB IN_SAME_COMPONENT EVI5 -AURKB IN_SAME_COMPONENT INCENP -AURKB IN_SAME_COMPONENT KLHL13 -AURKB IN_SAME_COMPONENT KLHL9 -AURKB IN_SAME_COMPONENT PPP1CC -AURKB IN_SAME_COMPONENT PPP2R5D -AURKB IN_SAME_COMPONENT PSMA3 -AURKB IN_SAME_COMPONENT RASA1 -AURKB IN_SAME_COMPONENT SEPT1 -AURKB IN_SAME_COMPONENT SGOL1 -AURKB IN_SAME_COMPONENT TACC1 -AURKB INTERACTS_WITH BUB1 -AURKB REACTS_WITH AURKB -AURKB REACTS_WITH AURKC -AURKB REACTS_WITH BIRC5 -AURKB REACTS_WITH CDCA8 -AURKB REACTS_WITH CUL3 -AURKB REACTS_WITH EVI5 -AURKB REACTS_WITH INCENP -AURKB REACTS_WITH KLHL13 -AURKB REACTS_WITH KLHL9 -AURKB REACTS_WITH PPP1CC -AURKB REACTS_WITH PPP2R5D -AURKB REACTS_WITH PSMA3 -AURKB REACTS_WITH RASA1 -AURKB REACTS_WITH SEPT1 -AURKB REACTS_WITH SGOL1 -AURKB REACTS_WITH TACC1 -AURKB STATE_CHANGE CENPA -AURKB STATE_CHANGE DES -AURKB STATE_CHANGE KIF23 -AURKB STATE_CHANGE KIF2C -AURKB STATE_CHANGE MYLK -AURKB STATE_CHANGE NCAPD2 -AURKB STATE_CHANGE NCAPG -AURKB STATE_CHANGE NCAPH -AURKB STATE_CHANGE NCL -AURKB STATE_CHANGE NDC80 -AURKB STATE_CHANGE NSUN2 -AURKB STATE_CHANGE RACGAP1 -AURKB STATE_CHANGE SMC2 -AURKB STATE_CHANGE SMC4 -AURKB STATE_CHANGE STMN1 -AURKB STATE_CHANGE VIM -AURKC IN_SAME_COMPONENT AURKB -AURKC IN_SAME_COMPONENT INCENP -AURKC REACTS_WITH AURKB -AURKC REACTS_WITH AURKC -AURKC REACTS_WITH INCENP -AXIN1 IN_SAME_COMPONENT APC -AXIN1 IN_SAME_COMPONENT CDH2 -AXIN1 IN_SAME_COMPONENT CTNNA1 -AXIN1 IN_SAME_COMPONENT CTNNB1 -AXIN1 IN_SAME_COMPONENT CTNND1 -AXIN1 IN_SAME_COMPONENT FZD5 -AXIN1 IN_SAME_COMPONENT GSK3B -AXIN1 IN_SAME_COMPONENT LRP5 -AXIN1 IN_SAME_COMPONENT LRP6 -AXIN1 IN_SAME_COMPONENT PIN1 -AXIN1 IN_SAME_COMPONENT PPP2CA -AXIN1 IN_SAME_COMPONENT PPP2R5A -AXIN1 IN_SAME_COMPONENT RNF111 -AXIN1 IN_SAME_COMPONENT SMAD7 -AXIN1 IN_SAME_COMPONENT WNT3A -AXIN1 REACTS_WITH APC -AXIN1 REACTS_WITH AXIN1 -AXIN1 REACTS_WITH CDH2 -AXIN1 REACTS_WITH CTNNA1 -AXIN1 REACTS_WITH CTNNB1 -AXIN1 REACTS_WITH CTNND1 -AXIN1 REACTS_WITH FZD5 -AXIN1 REACTS_WITH LRP5 -AXIN1 REACTS_WITH LRP6 -AXIN1 REACTS_WITH RNF111 -AXIN1 REACTS_WITH SMAD7 -AXIN1 REACTS_WITH WNT3A -AXIN1 STATE_CHANGE APC -AXIN1 STATE_CHANGE AXIN1 -AXIN1 STATE_CHANGE CTNNB1 -AXIN1 STATE_CHANGE FZD5 -AXIN1 STATE_CHANGE LRP6 -AXIN1 STATE_CHANGE MAX -AXIN1 STATE_CHANGE MYC -AXIN1 STATE_CHANGE WNT3A -AXIN2 IN_SAME_COMPONENT APC -AXIN2 IN_SAME_COMPONENT CTNNB1 -AXIN2 REACTS_WITH APC -AXIN2 REACTS_WITH AXIN2 -AXIN2 REACTS_WITH CTNNB1 -B2M CO_CONTROL MAPK8 -B2M IN_SAME_COMPONENT CBL -B2M IN_SAME_COMPONENT CD247 -B2M IN_SAME_COMPONENT CD3D -B2M IN_SAME_COMPONENT CD3E -B2M IN_SAME_COMPONENT CD3G -B2M IN_SAME_COMPONENT CD8A -B2M IN_SAME_COMPONENT CD8B -B2M IN_SAME_COMPONENT FYN -B2M IN_SAME_COMPONENT HLA-A -B2M IN_SAME_COMPONENT LCK -B2M IN_SAME_COMPONENT ZAP70 -B2M METABOLIC_CATALYSIS EOMES -B2M METABOLIC_CATALYSIS LAT -B2M METABOLIC_CATALYSIS PRF1 -B2M REACTS_WITH B2M -B2M REACTS_WITH CBL -B2M REACTS_WITH CD247 -B2M REACTS_WITH CD3D -B2M REACTS_WITH CD3E -B2M REACTS_WITH CD3G -B2M REACTS_WITH CD8A -B2M REACTS_WITH CD8B -B2M REACTS_WITH FYN -B2M REACTS_WITH HLA-A -B2M REACTS_WITH LCK -B2M REACTS_WITH ZAP70 -B2M STATE_CHANGE CD28 -B2M STATE_CHANGE CSK -B2M STATE_CHANGE GRAP2 -B2M STATE_CHANGE IL2 -B2M STATE_CHANGE IL2RA -B2M STATE_CHANGE IL2RB -B2M STATE_CHANGE IL2RG -B2M STATE_CHANGE JUN -B2M STATE_CHANGE LCP2 -B2M STATE_CHANGE PAG1 -B2M STATE_CHANGE PRKCQ -B2M STATE_CHANGE PTPN6 -B2M STATE_CHANGE VAV1 -BAD IN_SAME_COMPONENT CALM1 -BAD IN_SAME_COMPONENT PRKCD -BAD IN_SAME_COMPONENT SNCA -BAD IN_SAME_COMPONENT YWHAZ -BAD REACTS_WITH BAD -BAD REACTS_WITH CALM1 -BAD REACTS_WITH PRKCD -BAD REACTS_WITH SNCA -BAD REACTS_WITH YWHAZ -BAD STATE_CHANGE AIFM1 -BAD STATE_CHANGE CASP3 -BAD STATE_CHANGE CYCS -BAG1 IN_SAME_COMPONENT JUN -BAG1 METABOLIC_CATALYSIS BCL2L11 -BAG1 REACTS_WITH BAG1 -BAG1 REACTS_WITH JUN -BAG4 IN_SAME_COMPONENT TNF -BAG4 IN_SAME_COMPONENT TNFRSF1A -BAG4 REACTS_WITH BAG4 -BAG4 REACTS_WITH BIRC3 -BAG4 REACTS_WITH CASP2 -BAG4 REACTS_WITH CRADD -BAG4 REACTS_WITH FADD -BAG4 REACTS_WITH MADD -BAG4 REACTS_WITH MAP3K5 -BAG4 REACTS_WITH RIPK1 -BAG4 REACTS_WITH TNF -BAG4 REACTS_WITH TNFRSF1A -BAG4 REACTS_WITH TRADD -BAG4 REACTS_WITH TRAF1 -BAG4 REACTS_WITH TRAF2 -BAIAP2 CO_CONTROL ABL1 -BAIAP2 CO_CONTROL RAC1 -BAIAP2 IN_SAME_COMPONENT CDC42 -BAIAP2 IN_SAME_COMPONENT ENAH -BAIAP2 IN_SAME_COMPONENT EPS8 -BAIAP2 IN_SAME_COMPONENT WASL -BAIAP2 REACTS_WITH BAIAP2 -BAIAP2 REACTS_WITH CDC42 -BAIAP2 REACTS_WITH ENAH -BAIAP2 REACTS_WITH EPS8 -BAIAP2 REACTS_WITH WASL -BAIAP2 STATE_CHANGE ABI1 -BAIAP2 STATE_CHANGE C3orf10 -BAIAP2 STATE_CHANGE CYFIP2 -BAIAP2 STATE_CHANGE NCKAP1 -BAIAP2 STATE_CHANGE WASF2 -BAK1 IN_SAME_COMPONENT MCL1 -BAK1 IN_SAME_COMPONENT TP53 -BAK1 REACTS_WITH BAK1 -BAK1 REACTS_WITH MCL1 -BAK1 REACTS_WITH TP53 -BAMBI IN_SAME_COMPONENT TGFBR1 -BAMBI REACTS_WITH AHSG -BAMBI REACTS_WITH BAMBI -BAMBI REACTS_WITH BMP6 -BAMBI REACTS_WITH BMP7 -BAMBI REACTS_WITH BMPR2 -BAMBI REACTS_WITH CER1 -BAMBI REACTS_WITH CHRD -BAMBI REACTS_WITH CHRDL1 -BAMBI REACTS_WITH FST -BAMBI REACTS_WITH GREM1 -BAMBI REACTS_WITH NOG -BAMBI REACTS_WITH SOSTDC1 -BAMBI STATE_CHANGE FKBP1A -BAMBI STATE_CHANGE TGFBR1 -BAMBI STATE_CHANGE TGFBR2 -BAMBI STATE_CHANGE TGFBR3 -BARD1 IN_SAME_COMPONENT BRCA1 -BARD1 IN_SAME_COMPONENT CSTF1 -BARD1 IN_SAME_COMPONENT EWSR1 -BARD1 IN_SAME_COMPONENT MRE11A -BARD1 IN_SAME_COMPONENT NBN -BARD1 IN_SAME_COMPONENT PCNA -BARD1 IN_SAME_COMPONENT PRKDC -BARD1 IN_SAME_COMPONENT RAD50 -BARD1 IN_SAME_COMPONENT RAD51 -BARD1 IN_SAME_COMPONENT RBBP8 -BARD1 IN_SAME_COMPONENT TOPBP1 -BARD1 IN_SAME_COMPONENT TP53 -BARD1 IN_SAME_COMPONENT UBE2D3 -BARD1 IN_SAME_COMPONENT UBE2L3 -BARD1 IN_SAME_COMPONENT XRCC5 -BARD1 IN_SAME_COMPONENT XRCC6 -BARD1 INTERACTS_WITH BARD1 -BARD1 INTERACTS_WITH BRCA1 -BARD1 REACTS_WITH BARD1 -BARD1 REACTS_WITH BRCA1 -BARD1 REACTS_WITH CSTF1 -BARD1 REACTS_WITH EWSR1 -BARD1 REACTS_WITH MRE11A -BARD1 REACTS_WITH NBN -BARD1 REACTS_WITH PCNA -BARD1 REACTS_WITH PRKDC -BARD1 REACTS_WITH RAD50 -BARD1 REACTS_WITH RAD51 -BARD1 REACTS_WITH RBBP8 -BARD1 REACTS_WITH TOPBP1 -BARD1 REACTS_WITH TP53 -BARD1 REACTS_WITH UBE2D3 -BARD1 REACTS_WITH UBE2L3 -BARD1 REACTS_WITH XRCC5 -BARD1 REACTS_WITH XRCC6 -BARD1 STATE_CHANGE FANCA -BARD1 STATE_CHANGE FANCC -BARD1 STATE_CHANGE FANCD2 -BARD1 STATE_CHANGE FANCE -BARD1 STATE_CHANGE FANCF -BARD1 STATE_CHANGE FANCG -BARD1 STATE_CHANGE FANCL -BATF3 CO_CONTROL FOS -BATF3 CO_CONTROL JUN -BATF3 IN_SAME_COMPONENT JUN -BATF3 METABOLIC_CATALYSIS IL2 -BATF3 REACTS_WITH BATF3 -BATF3 REACTS_WITH FOS -BATF3 REACTS_WITH JUN -BAX CO_CONTROL GSN -BAX IN_SAME_COMPONENT BCL2 -BAX IN_SAME_COMPONENT BID -BAX IN_SAME_COMPONENT SIRT1 -BAX IN_SAME_COMPONENT XRCC6 -BAX INTERACTS_WITH CASP3 -BAX REACTS_WITH BAX -BAX REACTS_WITH BCL2 -BAX REACTS_WITH BID -BAX REACTS_WITH SIRT1 -BAX REACTS_WITH XRCC6 -BAX STATE_CHANGE AIFM1 -BAX STATE_CHANGE CYCS -BBC3 REACTS_WITH BBC3 -BBC3 REACTS_WITH TP53 -BCAR1 CO_CONTROL RHOA -BCAR1 IN_SAME_COMPONENT CBL -BCAR1 IN_SAME_COMPONENT CRK -BCAR1 IN_SAME_COMPONENT CSF1R -BCAR1 IN_SAME_COMPONENT DCC -BCAR1 IN_SAME_COMPONENT DOCK1 -BCAR1 IN_SAME_COMPONENT ELMO1 -BCAR1 IN_SAME_COMPONENT ESR1 -BCAR1 IN_SAME_COMPONENT FYN -BCAR1 IN_SAME_COMPONENT ITGAV -BCAR1 IN_SAME_COMPONENT ITGB3 -BCAR1 IN_SAME_COMPONENT NTN1 -BCAR1 IN_SAME_COMPONENT PELP1 -BCAR1 IN_SAME_COMPONENT PTK2 -BCAR1 IN_SAME_COMPONENT PTK2B -BCAR1 IN_SAME_COMPONENT PTPN1 -BCAR1 IN_SAME_COMPONENT PXN -BCAR1 IN_SAME_COMPONENT SRC -BCAR1 IN_SAME_COMPONENT TRIP6 -BCAR1 REACTS_WITH BCAR1 -BCAR1 REACTS_WITH CBL -BCAR1 REACTS_WITH CRK -BCAR1 REACTS_WITH CSF1R -BCAR1 REACTS_WITH DCC -BCAR1 REACTS_WITH DOCK1 -BCAR1 REACTS_WITH ELMO1 -BCAR1 REACTS_WITH ESR1 -BCAR1 REACTS_WITH FYN -BCAR1 REACTS_WITH ITGAV -BCAR1 REACTS_WITH ITGB3 -BCAR1 REACTS_WITH NTN1 -BCAR1 REACTS_WITH PELP1 -BCAR1 REACTS_WITH PTK2 -BCAR1 REACTS_WITH PTK2B -BCAR1 REACTS_WITH PTPN1 -BCAR1 REACTS_WITH PXN -BCAR1 REACTS_WITH SRC -BCAR1 REACTS_WITH TRIP6 -BCAR1 STATE_CHANGE BCAR1 -BCAR1 STATE_CHANGE CRK -BCAR1 STATE_CHANGE MAP2K4 -BCAR1 STATE_CHANGE MAPK8 -BCAR1 STATE_CHANGE RAC1 -BCAR1 STATE_CHANGE RAP1B -BCAR1 STATE_CHANGE RAPGEF1 -BCAR1 STATE_CHANGE VAV3 -BCAR3 STATE_CHANGE CDC42 -BCL10 CO_CONTROL AKT1 -BCL10 CO_CONTROL GAB2 -BCL10 CO_CONTROL TRAF6 -BCL10 IN_SAME_COMPONENT CARD11 -BCL10 IN_SAME_COMPONENT MALT1 -BCL10 IN_SAME_COMPONENT MAP3K7 -BCL10 IN_SAME_COMPONENT PDPK1 -BCL10 IN_SAME_COMPONENT TRAF6 -BCL10 REACTS_WITH BCL10 -BCL10 REACTS_WITH CARD11 -BCL10 REACTS_WITH MALT1 -BCL10 REACTS_WITH MAP3K7 -BCL10 REACTS_WITH PDPK1 -BCL10 REACTS_WITH TRAF6 -BCL10 STATE_CHANGE CHUK -BCL10 STATE_CHANGE IKBKB -BCL10 STATE_CHANGE IKBKG -BCL2A1 REACTS_WITH POU2F2 -BCL2 CO_CONTROL CASP3 -BCL2 IN_SAME_COMPONENT BAX -BCL2 IN_SAME_COMPONENT FKBP8 -BCL2 IN_SAME_COMPONENT NR4A1 -BCL2L11 STATE_CHANGE CASP3 -BCL2 REACTS_WITH BAX -BCL2 REACTS_WITH BCL2 -BCL2 REACTS_WITH CALM1 -BCL2 REACTS_WITH FKBP8 -BCL2 REACTS_WITH NR4A1 -BCL2 STATE_CHANGE AIFM1 -BCL2 STATE_CHANGE CYCS -BCL3 IN_SAME_COMPONENT NFKB1 -BCL3 IN_SAME_COMPONENT RELA -BCL3 REACTS_WITH BCL3 -BCL3 REACTS_WITH NFKB1 -BCL3 REACTS_WITH RELA -BCL6 CO_CONTROL CEBPB -BCL6 CO_CONTROL EGR2 -BCL6 CO_CONTROL FES -BCL6 CO_CONTROL HMGA1 -BCL6 CO_CONTROL IL2RG -BCL6 CO_CONTROL IL4 -BCL6 CO_CONTROL IL4R -BCL6 CO_CONTROL IRF4 -BCL6 CO_CONTROL IRS2 -BCL6 CO_CONTROL JAK1 -BCL6 CO_CONTROL JAK3 -BCL6 CO_CONTROL PARP14 -BCL6 CO_CONTROL STAT6 -BCL6 IN_SAME_COMPONENT BCOR -BCL6 IN_SAME_COMPONENT HDAC5 -BCL6 IN_SAME_COMPONENT IRF4 -BCL6 METABOLIC_CATALYSIS FCER2 -BCL6 METABOLIC_CATALYSIS IGHE -BCL6 REACTS_WITH BCL6 -BCL6 REACTS_WITH BCOR -BCL6 REACTS_WITH HDAC5 -BCL9 IN_SAME_COMPONENT CTNNB1 -BCL9 METABOLIC_CATALYSIS CDX1 -BCL9 REACTS_WITH BCL9 -BCL9 REACTS_WITH CTNNB1 -BCOR IN_SAME_COMPONENT BCL6 -BCOR IN_SAME_COMPONENT HDAC5 -BCOR REACTS_WITH BCL6 -BCOR REACTS_WITH BCOR -BCOR REACTS_WITH HDAC5 -BDNF IN_SAME_COMPONENT GIPC1 -BDNF IN_SAME_COMPONENT NGFR -BDNF IN_SAME_COMPONENT NTRK2 -BDNF IN_SAME_COMPONENT SORT1 -BDNF IN_SAME_COMPONENT TRAF6 -BDNF IN_SAME_COMPONENT ZNF274 -BDNF REACTS_WITH BDNF -BDNF REACTS_WITH GIPC1 -BDNF REACTS_WITH NGFR -BDNF REACTS_WITH NTRK2 -BDNF REACTS_WITH SORT1 -BDNF REACTS_WITH TRAF6 -BDNF REACTS_WITH ZNF274 -BDNF STATE_CHANGE CASP6 -BDNF STATE_CHANGE CDC42 -BDNF STATE_CHANGE CDH2 -BDNF STATE_CHANGE CTNNA1 -BDNF STATE_CHANGE CTNNB1 -BDNF STATE_CHANGE CTNND1 -BDNF STATE_CHANGE TP53 -BEX1 IN_SAME_COMPONENT NGF -BEX1 IN_SAME_COMPONENT NGFR -BEX1 REACTS_WITH BEX1 -BEX1 REACTS_WITH NGF -BEX1 REACTS_WITH NGFR -BEX1 REACTS_WITH RIPK2 -BEX1 REACTS_WITH TRAF6 -BGN IN_SAME_COMPONENT LY96 -BGN IN_SAME_COMPONENT MYD88 -BGN IN_SAME_COMPONENT TIRAP -BGN IN_SAME_COMPONENT TLR1 -BGN IN_SAME_COMPONENT TLR2 -BGN IN_SAME_COMPONENT TLR4 -BGN REACTS_WITH BGN -BGN REACTS_WITH LY96 -BGN REACTS_WITH MYD88 -BGN REACTS_WITH TIRAP -BGN REACTS_WITH TLR1 -BGN REACTS_WITH TLR2 -BGN REACTS_WITH TLR4 -BHLHE40 REACTS_WITH ARNTL -BHLHE40 REACTS_WITH DEC1 -BID CO_CONTROL GSN -BID IN_SAME_COMPONENT BAX -BID REACTS_WITH BAX -BID REACTS_WITH BID -BID STATE_CHANGE CYCS -BIN1 IN_SAME_COMPONENT ASAP2 -BIRC2 IN_SAME_COMPONENT BIRC3 -BIRC2 IN_SAME_COMPONENT CD40 -BIRC2 IN_SAME_COMPONENT CD40LG -BIRC2 IN_SAME_COMPONENT RIPK1 -BIRC2 IN_SAME_COMPONENT TNF -BIRC2 IN_SAME_COMPONENT TNFRSF1A -BIRC2 IN_SAME_COMPONENT TNFRSF1B -BIRC2 IN_SAME_COMPONENT TRADD -BIRC2 IN_SAME_COMPONENT TRAF1 -BIRC2 IN_SAME_COMPONENT TRAF2 -BIRC2 IN_SAME_COMPONENT TRAF3 -BIRC2 IN_SAME_COMPONENT UBE2D3 -BIRC2 REACTS_WITH BIRC2 -BIRC2 REACTS_WITH BIRC3 -BIRC2 REACTS_WITH CD40 -BIRC2 REACTS_WITH CD40LG -BIRC2 REACTS_WITH RIPK1 -BIRC2 REACTS_WITH TNF -BIRC2 REACTS_WITH TNFRSF1A -BIRC2 REACTS_WITH TNFRSF1B -BIRC2 REACTS_WITH TRADD -BIRC2 REACTS_WITH TRAF1 -BIRC2 REACTS_WITH TRAF2 -BIRC2 REACTS_WITH TRAF3 -BIRC2 STATE_CHANGE CASP8 -BIRC2 STATE_CHANGE IKBKG -BIRC2 STATE_CHANGE MAP3K14 -BIRC2 STATE_CHANGE TRAF3 -BIRC3 CO_CONTROL CTSD -BIRC3 CO_CONTROL NSMAF -BIRC3 CO_CONTROL TNF -BIRC3 CO_CONTROL TNFRSF1A -BIRC3 IN_SAME_COMPONENT BIRC2 -BIRC3 IN_SAME_COMPONENT CASP2 -BIRC3 IN_SAME_COMPONENT CD40 -BIRC3 IN_SAME_COMPONENT CD40LG -BIRC3 IN_SAME_COMPONENT CRADD -BIRC3 IN_SAME_COMPONENT FADD -BIRC3 IN_SAME_COMPONENT LRDD -BIRC3 IN_SAME_COMPONENT MADD -BIRC3 IN_SAME_COMPONENT MAP3K5 -BIRC3 IN_SAME_COMPONENT RIPK1 -BIRC3 IN_SAME_COMPONENT TNF -BIRC3 IN_SAME_COMPONENT TNFRSF1A -BIRC3 IN_SAME_COMPONENT TNFRSF1B -BIRC3 IN_SAME_COMPONENT TRADD -BIRC3 IN_SAME_COMPONENT TRAF1 -BIRC3 IN_SAME_COMPONENT TRAF2 -BIRC3 IN_SAME_COMPONENT TRAF3 -BIRC3 REACTS_WITH BAG4 -BIRC3 REACTS_WITH BIRC2 -BIRC3 REACTS_WITH BIRC3 -BIRC3 REACTS_WITH CASP2 -BIRC3 REACTS_WITH CD40 -BIRC3 REACTS_WITH CD40LG -BIRC3 REACTS_WITH CRADD -BIRC3 REACTS_WITH FADD -BIRC3 REACTS_WITH MADD -BIRC3 REACTS_WITH MAP3K5 -BIRC3 REACTS_WITH RIPK1 -BIRC3 REACTS_WITH TNF -BIRC3 REACTS_WITH TNFRSF1A -BIRC3 REACTS_WITH TNFRSF1B -BIRC3 REACTS_WITH TRADD -BIRC3 REACTS_WITH TRAF1 -BIRC3 REACTS_WITH TRAF2 -BIRC3 REACTS_WITH TRAF3 -BIRC3 STATE_CHANGE BID -BIRC3 STATE_CHANGE CASP2 -BIRC3 STATE_CHANGE CASP3 -BIRC3 STATE_CHANGE CASP7 -BIRC3 STATE_CHANGE CASP8 -BIRC3 STATE_CHANGE FADD -BIRC3 STATE_CHANGE MAP2K7 -BIRC3 STATE_CHANGE MAP3K14 -BIRC3 STATE_CHANGE MAP4K4 -BIRC3 STATE_CHANGE SMPD1 -BIRC3 STATE_CHANGE SMPD3 -BIRC3 STATE_CHANGE TRAF3 -BIRC5 IN_SAME_COMPONENT AURKA -BIRC5 IN_SAME_COMPONENT AURKB -BIRC5 IN_SAME_COMPONENT CDCA8 -BIRC5 IN_SAME_COMPONENT CUL3 -BIRC5 IN_SAME_COMPONENT EVI5 -BIRC5 IN_SAME_COMPONENT INCENP -BIRC5 IN_SAME_COMPONENT KLHL13 -BIRC5 IN_SAME_COMPONENT KLHL9 -BIRC5 IN_SAME_COMPONENT RASA1 -BIRC5 IN_SAME_COMPONENT SGOL1 -BIRC5 REACTS_WITH AURKA -BIRC5 REACTS_WITH AURKB -BIRC5 REACTS_WITH BIRC5 -BIRC5 REACTS_WITH CDCA8 -BIRC5 REACTS_WITH CUL3 -BIRC5 REACTS_WITH EVI5 -BIRC5 REACTS_WITH INCENP -BIRC5 REACTS_WITH KLHL13 -BIRC5 REACTS_WITH KLHL9 -BIRC5 REACTS_WITH PSMA3 -BIRC5 REACTS_WITH RASA1 -BIRC5 REACTS_WITH SGOL1 -BIRC5 STATE_CHANGE CENPA -BIRC5 STATE_CHANGE KIF23 -BIRC5 STATE_CHANGE KIF2C -BIRC5 STATE_CHANGE RACGAP1 -BLM IN_SAME_COMPONENT TERF2 -BLM IN_SAME_COMPONENT TOP3A -BLM REACTS_WITH BLM -BLM REACTS_WITH TERF2 -BLM REACTS_WITH TOP3A -BLNK CO_CONTROL CD19 -BLNK CO_CONTROL INPP5D -BLNK IN_SAME_COMPONENT BTK -BLNK IN_SAME_COMPONENT CD72 -BLNK IN_SAME_COMPONENT CD79A -BLNK IN_SAME_COMPONENT CD79B -BLNK IN_SAME_COMPONENT LYN -BLNK IN_SAME_COMPONENT PLCG2 -BLNK IN_SAME_COMPONENT SYK -BLNK REACTS_WITH BLNK -BLNK REACTS_WITH BTK -BLNK REACTS_WITH CD72 -BLNK REACTS_WITH CD79A -BLNK REACTS_WITH CD79B -BLNK REACTS_WITH LYN -BLNK REACTS_WITH PLCG2 -BLNK REACTS_WITH PTPN6 -BLNK REACTS_WITH SYK -BLNK STATE_CHANGE VAV2 -BMP4 CO_CONTROL GPC3 -BMP6 IN_SAME_COMPONENT AHSG -BMP6 IN_SAME_COMPONENT BMPR2 -BMP6 REACTS_WITH AHSG -BMP6 REACTS_WITH BAMBI -BMP6 REACTS_WITH BMP6 -BMP6 REACTS_WITH BMPR2 -BMP6 STATE_CHANGE SMAD1 -BMP6 STATE_CHANGE SMAD5 -BMP7 IN_SAME_COMPONENT ACVR1 -BMP7 IN_SAME_COMPONENT BMPR2 -BMP7 IN_SAME_COMPONENT FST -BMP7 IN_SAME_COMPONENT SMAD6 -BMP7 IN_SAME_COMPONENT SMURF1 -BMP7 IN_SAME_COMPONENT SOSTDC1 -BMP7 REACTS_WITH ACVR1 -BMP7 REACTS_WITH BAMBI -BMP7 REACTS_WITH BMP7 -BMP7 REACTS_WITH BMPR2 -BMP7 REACTS_WITH FKBP1A -BMP7 REACTS_WITH FST -BMP7 REACTS_WITH SMAD1 -BMP7 REACTS_WITH SMAD6 -BMP7 REACTS_WITH SMURF1 -BMP7 REACTS_WITH SOSTDC1 -BMPR2 CO_CONTROL ACVRL1 -BMPR2 CO_CONTROL GDF2 -BMPR2 CO_CONTROL MAP3K7 -BMPR2 CO_CONTROL SMAD6 -BMPR2 IN_SAME_COMPONENT ACVR1 -BMPR2 IN_SAME_COMPONENT ACVRL1 -BMPR2 IN_SAME_COMPONENT BMP6 -BMPR2 IN_SAME_COMPONENT BMP7 -BMPR2 IN_SAME_COMPONENT CSNK2B -BMPR2 IN_SAME_COMPONENT FST -BMPR2 IN_SAME_COMPONENT GDF2 -BMPR2 IN_SAME_COMPONENT PPP1CA -BMPR2 IN_SAME_COMPONENT PPP1R15A -BMPR2 IN_SAME_COMPONENT SMAD6 -BMPR2 IN_SAME_COMPONENT SMAD7 -BMPR2 IN_SAME_COMPONENT SMURF1 -BMPR2 IN_SAME_COMPONENT XIAP -BMPR2 IN_SAME_COMPONENT ZFYVE16 -BMPR2 REACTS_WITH ACVR1 -BMPR2 REACTS_WITH ACVRL1 -BMPR2 REACTS_WITH AHSG -BMPR2 REACTS_WITH BAMBI -BMPR2 REACTS_WITH BMP6 -BMPR2 REACTS_WITH BMP7 -BMPR2 REACTS_WITH BMPR2 -BMPR2 REACTS_WITH CER1 -BMPR2 REACTS_WITH CHRD -BMPR2 REACTS_WITH CHRDL1 -BMPR2 REACTS_WITH CSNK2B -BMPR2 REACTS_WITH FKBP1A -BMPR2 REACTS_WITH FST -BMPR2 REACTS_WITH GDF2 -BMPR2 REACTS_WITH GREM1 -BMPR2 REACTS_WITH NOG -BMPR2 REACTS_WITH PPP1CA -BMPR2 REACTS_WITH PPP1R15A -BMPR2 REACTS_WITH SMAD1 -BMPR2 REACTS_WITH SMAD6 -BMPR2 REACTS_WITH SMAD7 -BMPR2 REACTS_WITH SMURF1 -BMPR2 REACTS_WITH SOSTDC1 -BMPR2 REACTS_WITH XIAP -BMPR2 REACTS_WITH ZFYVE16 -BMPR2 STATE_CHANGE MAP3K7 -BMPR2 STATE_CHANGE SMAD1 -BMPR2 STATE_CHANGE SMAD5 -BMPR2 STATE_CHANGE SMAD9 -BNIP3 IN_SAME_COMPONENT RHEB -BNIP3 REACTS_WITH BNIP3 -BNIP3 REACTS_WITH RHEB -BOC IN_SAME_COMPONENT SHH -BOC REACTS_WITH BOC -BOC REACTS_WITH SHH -BORA IN_SAME_COMPONENT AURKA -BORA REACTS_WITH AURKA -BORA REACTS_WITH BORA -BORA STATE_CHANGE PLK1 -BRCA1 CO_CONTROL AR -BRCA1 CO_CONTROL FOXA1 -BRCA1 CO_CONTROL MAX -BRCA1 CO_CONTROL MYC -BRCA1 CO_CONTROL TBP -BRCA1 IN_SAME_COMPONENT ATF2 -BRCA1 IN_SAME_COMPONENT ATM -BRCA1 IN_SAME_COMPONENT AURKA -BRCA1 IN_SAME_COMPONENT BARD1 -BRCA1 IN_SAME_COMPONENT CSTF1 -BRCA1 IN_SAME_COMPONENT CTBP1 -BRCA1 IN_SAME_COMPONENT FAM175A -BRCA1 IN_SAME_COMPONENT H2AFX -BRCA1 IN_SAME_COMPONENT MDC1 -BRCA1 IN_SAME_COMPONENT MRE11A -BRCA1 IN_SAME_COMPONENT NBN -BRCA1 IN_SAME_COMPONENT NF1 -BRCA1 IN_SAME_COMPONENT PCNA -BRCA1 IN_SAME_COMPONENT POU2F1 -BRCA1 IN_SAME_COMPONENT RAD50 -BRCA1 IN_SAME_COMPONENT RAD51 -BRCA1 IN_SAME_COMPONENT RBBP8 -BRCA1 IN_SAME_COMPONENT RNF8 -BRCA1 IN_SAME_COMPONENT TOPBP1 -BRCA1 IN_SAME_COMPONENT TP53 -BRCA1 IN_SAME_COMPONENT TP53BP1 -BRCA1 IN_SAME_COMPONENT UBE2D3 -BRCA1 IN_SAME_COMPONENT UBE2L3 -BRCA1 IN_SAME_COMPONENT UIMC1 -BRCA1 INTERACTS_WITH BARD1 -BRCA1 INTERACTS_WITH BRCA1 -BRCA1 METABOLIC_CATALYSIS CDKN1B -BRCA1 METABOLIC_CATALYSIS GADD45A -BRCA1 METABOLIC_CATALYSIS KLK3 -BRCA1 METABOLIC_CATALYSIS S100A7 -BRCA1 METABOLIC_CATALYSIS SMC3 -BRCA1 REACTS_WITH ATF2 -BRCA1 REACTS_WITH ATM -BRCA1 REACTS_WITH AURKA -BRCA1 REACTS_WITH BARD1 -BRCA1 REACTS_WITH BRCA1 -BRCA1 REACTS_WITH CSTF1 -BRCA1 REACTS_WITH CTBP1 -BRCA1 REACTS_WITH FAM175A -BRCA1 REACTS_WITH H2AFX -BRCA1 REACTS_WITH MDC1 -BRCA1 REACTS_WITH MRE11A -BRCA1 REACTS_WITH NBN -BRCA1 REACTS_WITH NF1 -BRCA1 REACTS_WITH PCNA -BRCA1 REACTS_WITH POU2F1 -BRCA1 REACTS_WITH RAD50 -BRCA1 REACTS_WITH RAD51 -BRCA1 REACTS_WITH RBBP8 -BRCA1 REACTS_WITH RNF8 -BRCA1 REACTS_WITH TOPBP1 -BRCA1 REACTS_WITH TP53 -BRCA1 REACTS_WITH TP53BP1 -BRCA1 REACTS_WITH UBE2D3 -BRCA1 REACTS_WITH UBE2L3 -BRCA1 REACTS_WITH UIMC1 -BRCA1 STATE_CHANGE CHEK2 -BRCA1 STATE_CHANGE FANCA -BRCA1 STATE_CHANGE FANCC -BRCA1 STATE_CHANGE FANCD2 -BRCA1 STATE_CHANGE FANCE -BRCA1 STATE_CHANGE FANCF -BRCA1 STATE_CHANGE FANCG -BRCA1 STATE_CHANGE FANCL -BRCA1 STATE_CHANGE SMC1A -BRCA2 IN_SAME_COMPONENT RAD51 -BRCA2 REACTS_WITH BRCA2 -BRCA2 REACTS_WITH RAD51 -BRSK1 STATE_CHANGE MAP2 -BRSK2 STATE_CHANGE MAP2 -BSG IN_SAME_COMPONENT SDC1 -BSG REACTS_WITH BSG -BSG REACTS_WITH SDC1 -BTC IN_SAME_COMPONENT EGFR -BTC IN_SAME_COMPONENT ERBB2 -BTC REACTS_WITH BTC -BTC REACTS_WITH EGFR -BTC REACTS_WITH ERBB2 -BTK CO_CONTROL INPP5D -BTK IN_SAME_COMPONENT BLNK -BTK IN_SAME_COMPONENT CD72 -BTK IN_SAME_COMPONENT CD79A -BTK IN_SAME_COMPONENT CD79B -BTK IN_SAME_COMPONENT FAS -BTK IN_SAME_COMPONENT FASLG -BTK IN_SAME_COMPONENT LYN -BTK IN_SAME_COMPONENT PLCG2 -BTK IN_SAME_COMPONENT SYK -BTK REACTS_WITH BLNK -BTK REACTS_WITH BTK -BTK REACTS_WITH CD72 -BTK REACTS_WITH CD79A -BTK REACTS_WITH CD79B -BTK REACTS_WITH FADD -BTK REACTS_WITH FAS -BTK REACTS_WITH FASLG -BTK REACTS_WITH LYN -BTK REACTS_WITH PLCG2 -BTK REACTS_WITH PTPN6 -BTK REACTS_WITH SYK -BTK STATE_CHANGE HRAS -BTK STATE_CHANGE MAPK8 -BTK STATE_CHANGE PLCG1 -BTRC IN_SAME_COMPONENT CTNNB1 -BTRC IN_SAME_COMPONENT CUL1 -BTRC IN_SAME_COMPONENT FBXW7 -BTRC IN_SAME_COMPONENT SKP1 -BTRC IN_SAME_COMPONENT TCF7L2 -BTRC IN_SAME_COMPONENT TRRAP -BTRC METABOLIC_CATALYSIS GLI2 -BTRC REACTS_WITH BTRC -BTRC REACTS_WITH CTNNB1 -BTRC REACTS_WITH CUL1 -BTRC REACTS_WITH SKP1 -BTRC REACTS_WITH TCF7L2 -BTRC REACTS_WITH TRRAP -BTRC STATE_CHANGE APC -BTRC STATE_CHANGE CTNNB1 -BTRC STATE_CHANGE HDAC3 -BTRC STATE_CHANGE NFKB1 -BTRC STATE_CHANGE NFKB2 -BTRC STATE_CHANGE NFKBIA -BTRC STATE_CHANGE RELA -BTRC STATE_CHANGE RELB -BUB1 IN_SAME_COMPONENT BUB3 -BUB1 INTERACTS_WITH AURKB -BUB1 REACTS_WITH BUB1 -BUB1 REACTS_WITH BUB3 -BUB1 STATE_CHANGE AURKB -BUB1 STATE_CHANGE BIRC5 -BUB1 STATE_CHANGE CDCA8 -BUB1 STATE_CHANGE INCENP -BUB1 STATE_CHANGE PLK1 -BUB1 STATE_CHANGE PPP2CA -BUB1 STATE_CHANGE PPP2R1A -BUB3 IN_SAME_COMPONENT BUB1 -BUB3 REACTS_WITH BUB1 -BUB3 REACTS_WITH BUB3 -C3 IN_SAME_COMPONENT ITGAM -C3 IN_SAME_COMPONENT ITGAX -C3 IN_SAME_COMPONENT ITGB2 -C3orf10 IN_SAME_COMPONENT ABI1 -C3orf10 IN_SAME_COMPONENT ABI2 -C3orf10 IN_SAME_COMPONENT CYFIP2 -C3orf10 IN_SAME_COMPONENT NCKAP1 -C3orf10 IN_SAME_COMPONENT WASF1 -C3orf10 IN_SAME_COMPONENT WASF2 -C3orf10 REACTS_WITH ABI1 -C3orf10 REACTS_WITH C3orf10 -C3orf10 REACTS_WITH CYFIP2 -C3orf10 REACTS_WITH NCKAP1 -C3orf10 REACTS_WITH WASF2 -C3 REACTS_WITH C3 -C3 REACTS_WITH ITGAM -C3 REACTS_WITH ITGAX -C3 REACTS_WITH ITGB2 -C4BPA IN_SAME_COMPONENT CD40 -C4BPA REACTS_WITH C4BPA -C4BPA REACTS_WITH CD40 -C4BPA STATE_CHANGE NFKB1 -C4BPA STATE_CHANGE NFKBIA -C4BPA STATE_CHANGE RELA -CAB39 IN_SAME_COMPONENT STK11 -CAB39 REACTS_WITH CAB39 -CAB39 REACTS_WITH STK11 -CAB39 STATE_CHANGE BRSK1 -CAB39 STATE_CHANGE BRSK2 -CAB39 STATE_CHANGE MARK2 -CAB39 STATE_CHANGE MARK4 -CAB39 STATE_CHANGE MST4 -CAB39 STATE_CHANGE SIK1 -CAB39 STATE_CHANGE SIK2 -CAB39 STATE_CHANGE SIK3 -CABIN1 IN_SAME_COMPONENT CALM1 -CABIN1 IN_SAME_COMPONENT CAMK4 -CABIN1 IN_SAME_COMPONENT MEF2D -CABIN1 IN_SAME_COMPONENT YWHAQ -CABIN1 REACTS_WITH CABIN1 -CABIN1 REACTS_WITH CALM1 -CABIN1 REACTS_WITH CAMK4 -CABIN1 REACTS_WITH MEF2D -CABIN1 REACTS_WITH NFATC2 -CABIN1 REACTS_WITH YWHAQ -CABLES1 IN_SAME_COMPONENT ABL1 -CABLES1 IN_SAME_COMPONENT ROBO1 -CABLES1 IN_SAME_COMPONENT SLIT1 -CABLES1 STATE_CHANGE CDH2 -CABLES1 STATE_CHANGE CTNNA1 -CABLES1 STATE_CHANGE CTNNB1 -CABLES1 STATE_CHANGE CTNND1 -CALM1 CO_CONTROL PRKCZ -CALM1 CO_CONTROL RHOQ -CALM1 CO_CONTROL STX4 -CALM1 CO_CONTROL STXBP4 -CALM1 CO_CONTROL TRIP10 -CALM1 CO_CONTROL VAMP2 -CALM1 IN_SAME_COMPONENT BAD -CALM1 IN_SAME_COMPONENT CABIN1 -CALM1 IN_SAME_COMPONENT CAMK2B -CALM1 IN_SAME_COMPONENT CAMK4 -CALM1 IN_SAME_COMPONENT FKBP8 -CALM1 IN_SAME_COMPONENT GAP43 -CALM1 IN_SAME_COMPONENT IQGAP1 -CALM1 IN_SAME_COMPONENT MAP3K5 -CALM1 IN_SAME_COMPONENT MEF2D -CALM1 IN_SAME_COMPONENT SLC9A1 -CALM1 IN_SAME_COMPONENT YWHAQ -CALM1 METABOLIC_CATALYSIS CBLB -CALM1 METABOLIC_CATALYSIS ITCH -CALM1 METABOLIC_CATALYSIS RNF128 -CALM1 REACTS_WITH BAD -CALM1 REACTS_WITH BCL2 -CALM1 REACTS_WITH CABIN1 -CALM1 REACTS_WITH CALM1 -CALM1 REACTS_WITH CAMK2B -CALM1 REACTS_WITH CAMK4 -CALM1 REACTS_WITH CHP -CALM1 REACTS_WITH FKBP8 -CALM1 REACTS_WITH GAP43 -CALM1 REACTS_WITH IQGAP1 -CALM1 REACTS_WITH MAP3K5 -CALM1 REACTS_WITH MAPK8 -CALM1 REACTS_WITH MAPK9 -CALM1 REACTS_WITH MEF2D -CALM1 REACTS_WITH NFATC1 -CALM1 REACTS_WITH NFATC3 -CALM1 REACTS_WITH PAFAH1B1 -CALM1 REACTS_WITH SLC9A1 -CALM1 REACTS_WITH TBC1D4 -CALM1 REACTS_WITH YWHAQ -CALM1 STATE_CHANGE CAMK2G -CALM1 STATE_CHANGE CAMKK2 -CALM1 STATE_CHANGE CAV1 -CALM1 STATE_CHANGE CSNK1A1 -CALM1 STATE_CHANGE HSP90AA1 -CALM1 STATE_CHANGE LNPEP -CALM1 STATE_CHANGE MAP2K3 -CALM1 STATE_CHANGE MAP2K6 -CALM1 STATE_CHANGE NFATC1 -CALM1 STATE_CHANGE NFATC2 -CALM1 STATE_CHANGE NFATC3 -CALM1 STATE_CHANGE NOS3 -CALM1 STATE_CHANGE SLC2A4 -CALM1 STATE_CHANGE SMAD2 -CALM1 STATE_CHANGE STAT1 -CALM1 STATE_CHANGE VAMP2 -CAMK2A CO_CONTROL TGFBR1 -CAMK2A CO_CONTROL TGFBR2 -CAMK2A STATE_CHANGE MAP3K7 -CAMK2A STATE_CHANGE SMAD2 -CAMK2B IN_SAME_COMPONENT CALM1 -CAMK2B IN_SAME_COMPONENT MAP3K5 -CAMK2B REACTS_WITH CALM1 -CAMK2B REACTS_WITH CAMK2B -CAMK2B REACTS_WITH MAP3K5 -CAMK2B STATE_CHANGE MAP2K3 -CAMK2B STATE_CHANGE MAP2K6 -CAMK2D STATE_CHANGE HES1 -CAMK2D STATE_CHANGE PARP1 -CAMK2D STATE_CHANGE TLE1 -CAMK2G STATE_CHANGE ETS1 -CAMK4 IN_SAME_COMPONENT CABIN1 -CAMK4 IN_SAME_COMPONENT CALM1 -CAMK4 IN_SAME_COMPONENT MEF2D -CAMK4 IN_SAME_COMPONENT YWHAQ -CAMK4 REACTS_WITH CABIN1 -CAMK4 REACTS_WITH CALM1 -CAMK4 REACTS_WITH CAMK4 -CAMK4 REACTS_WITH MEF2D -CAMK4 REACTS_WITH YWHAQ -CAMK4 STATE_CHANGE HDAC4 -CAMK4 STATE_CHANGE SRF -CAPN2 IN_SAME_COMPONENT MAPK1 -CAPN2 REACTS_WITH CAPN2 -CAPN2 REACTS_WITH MAPK1 -CARD11 CO_CONTROL AKT1 -CARD11 CO_CONTROL GAB2 -CARD11 CO_CONTROL TRAF6 -CARD11 IN_SAME_COMPONENT BCL10 -CARD11 IN_SAME_COMPONENT MALT1 -CARD11 IN_SAME_COMPONENT MAP3K7 -CARD11 IN_SAME_COMPONENT PDPK1 -CARD11 IN_SAME_COMPONENT TRAF6 -CARD11 REACTS_WITH BCL10 -CARD11 REACTS_WITH CARD11 -CARD11 REACTS_WITH MALT1 -CARD11 REACTS_WITH MAP3K7 -CARD11 REACTS_WITH PDPK1 -CARD11 REACTS_WITH TRAF6 -CARD11 STATE_CHANGE CHUK -CARD11 STATE_CHANGE IKBKB -CARD11 STATE_CHANGE IKBKG -CARM1 CO_CONTROL AR -CARM1 CO_CONTROL CCND3 -CARM1 CO_CONTROL CEBPA -CARM1 CO_CONTROL EHMT2 -CARM1 CO_CONTROL SRC -CARM1 CO_CONTROL TADA2B -CARM1 CO_CONTROL TAF9 -CARM1 IN_SAME_COMPONENT AR -CARM1 IN_SAME_COMPONENT NCOA2 -CARM1 IN_SAME_COMPONENT PRMT1 -CARM1 IN_SAME_COMPONENT TP53 -CARM1 METABOLIC_CATALYSIS GADD45A -CARM1 METABOLIC_CATALYSIS KLK2 -CARM1 METABOLIC_CATALYSIS KLK3 -CARM1 REACTS_WITH AR -CARM1 REACTS_WITH CARM1 -CARM1 REACTS_WITH NCOA2 -CARM1 REACTS_WITH PRMT1 -CARM1 REACTS_WITH TP53 -CASK IN_SAME_COMPONENT EPB41 -CASK IN_SAME_COMPONENT SDC1 -CASK IN_SAME_COMPONENT SDC2 -CASK IN_SAME_COMPONENT SDC3 -CASK REACTS_WITH CASK -CASK REACTS_WITH EPB41 -CASK REACTS_WITH SDC1 -CASK REACTS_WITH SDC2 -CASK REACTS_WITH SDC3 -CASP10 IN_SAME_COMPONENT FADD -CASP10 IN_SAME_COMPONENT FAS -CASP10 IN_SAME_COMPONENT FASLG -CASP10 REACTS_WITH CASP10 -CASP10 REACTS_WITH CFLAR -CASP10 REACTS_WITH FADD -CASP10 REACTS_WITH FAS -CASP10 REACTS_WITH FASLG -CASP10 STATE_CHANGE CASP3 -CASP10 STATE_CHANGE CYCS -CASP1 METABOLIC_CATALYSIS IL1B -CASP1 REACTS_WITH CASP1 -CASP1 STATE_CHANGE CASP3 -CASP1 STATE_CHANGE IL18 -CASP1 STATE_CHANGE IL1B -CASP2 IN_SAME_COMPONENT BIRC3 -CASP2 IN_SAME_COMPONENT CRADD -CASP2 IN_SAME_COMPONENT FADD -CASP2 IN_SAME_COMPONENT MAP3K5 -CASP2 IN_SAME_COMPONENT RIPK1 -CASP2 IN_SAME_COMPONENT TNF -CASP2 IN_SAME_COMPONENT TNFRSF1A -CASP2 IN_SAME_COMPONENT TRADD -CASP2 IN_SAME_COMPONENT TRAF1 -CASP2 IN_SAME_COMPONENT TRAF2 -CASP2 REACTS_WITH BAG4 -CASP2 REACTS_WITH BIRC3 -CASP2 REACTS_WITH CASP2 -CASP2 REACTS_WITH CRADD -CASP2 REACTS_WITH FADD -CASP2 REACTS_WITH MAP3K5 -CASP2 REACTS_WITH RIPK1 -CASP2 REACTS_WITH TNF -CASP2 REACTS_WITH TNFRSF1A -CASP2 REACTS_WITH TRADD -CASP2 REACTS_WITH TRAF1 -CASP2 REACTS_WITH TRAF2 -CASP2 STATE_CHANGE CASP3 -CASP2 STATE_CHANGE CASP6 -CASP2 STATE_CHANGE CASP7 -CASP2 STATE_CHANGE MAP2K7 -CASP2 STATE_CHANGE MAP3K14 -CASP3 CO_CONTROL BCL2 -CASP3 INTERACTS_WITH BAX -CASP3 METABOLIC_CATALYSIS GAS2 -CASP3 METABOLIC_CATALYSIS GSN -CASP3 METABOLIC_CATALYSIS NFATC2 -CASP3 METABOLIC_CATALYSIS PARP1 -CASP3 METABOLIC_CATALYSIS SREBF1 -CASP3 REACTS_WITH CASP3 -CASP3 STATE_CHANGE CASP6 -CASP3 STATE_CHANGE DFFA -CASP3 STATE_CHANGE DFFB -CASP3 STATE_CHANGE LIMK1 -CASP3 STATE_CHANGE SLK -CASP4 STATE_CHANGE CASP1 -CASP6 CO_CONTROL TNF -CASP6 METABOLIC_CATALYSIS TFAP2A -CASP6 REACTS_WITH CASP6 -CASP7 METABOLIC_CATALYSIS PARP1 -CASP7 REACTS_WITH CASP7 -CASP8 CO_CONTROL AR -CASP8 IN_SAME_COMPONENT AR -CASP8 IN_SAME_COMPONENT CFLAR -CASP8 IN_SAME_COMPONENT DAXX -CASP8 IN_SAME_COMPONENT FADD -CASP8 IN_SAME_COMPONENT FAS -CASP8 IN_SAME_COMPONENT FASLG -CASP8 IN_SAME_COMPONENT MAP3K5 -CASP8 METABOLIC_CATALYSIS KLK3 -CASP8 METABOLIC_CATALYSIS RIPK1 -CASP8 REACTS_WITH CASP8 -CASP8 REACTS_WITH CFLAR -CASP8 REACTS_WITH DAXX -CASP8 REACTS_WITH FADD -CASP8 REACTS_WITH FAS -CASP8 REACTS_WITH FASLG -CASP8 REACTS_WITH ITGAV -CASP8 REACTS_WITH ITGB3 -CASP8 REACTS_WITH MAP3K5 -CASP8 STATE_CHANGE BID -CASP8 STATE_CHANGE CASP3 -CASP8 STATE_CHANGE CASP6 -CASP8 STATE_CHANGE CASP7 -CASP8 STATE_CHANGE CASP8 -CASP8 STATE_CHANGE FADD -CASP8 STATE_CHANGE FAS -CASP8 STATE_CHANGE FASLG -CASP8 STATE_CHANGE MAP2K7 -CASP9 IN_SAME_COMPONENT APAF1 -CASP9 STATE_CHANGE CASP3 -CASP9 STATE_CHANGE CASP6 -CASP9 STATE_CHANGE CASP7 -CASR STATE_CHANGE FYN -CAV1 CO_CONTROL ACVRL1 -CAV1 CO_CONTROL PPP1CA -CAV1 CO_CONTROL TGFB1 -CAV1 CO_CONTROL TGFBR1 -CAV1 CO_CONTROL TGFBR2 -CAV1 IN_SAME_COMPONENT ACVRL1 -CAV1 IN_SAME_COMPONENT NOS3 -CAV1 IN_SAME_COMPONENT PDGFRA -CAV1 IN_SAME_COMPONENT SMAD7 -CAV1 IN_SAME_COMPONENT TGFB1 -CAV1 IN_SAME_COMPONENT TGFBR1 -CAV1 IN_SAME_COMPONENT TGFBR2 -CAV1 REACTS_WITH ACVRL1 -CAV1 REACTS_WITH CAV1 -CAV1 REACTS_WITH HSP90AA1 -CAV1 REACTS_WITH NOS3 -CAV1 REACTS_WITH PDGFRA -CAV1 REACTS_WITH SMAD7 -CAV1 REACTS_WITH TGFB1 -CAV1 REACTS_WITH TGFBR1 -CAV1 REACTS_WITH TGFBR2 -CAV1 REACTS_WITH ZFYVE9 -CAV1 STATE_CHANGE FZD5 -CAV1 STATE_CHANGE LRP6 -CAV1 STATE_CHANGE RIPK1 -CAV1 STATE_CHANGE TNF -CAV1 STATE_CHANGE TNFRSF1A -CAV1 STATE_CHANGE TRADD -CAV1 STATE_CHANGE TRAF2 -CAV1 STATE_CHANGE WNT3A -CAV2 IN_SAME_COMPONENT HRAS -CAV2 IN_SAME_COMPONENT SDC2 -CAV2 REACTS_WITH CAV2 -CAV2 REACTS_WITH HRAS -CAV2 REACTS_WITH SDC2 -CAV3 IN_SAME_COMPONENT PDGFRA -CAV3 REACTS_WITH CAV3 -CAV3 REACTS_WITH PDGFRA -CBFA2T3 REACTS_WITH CBFA2T3 -CBFB CO_CONTROL CREB1 -CBFB IN_SAME_COMPONENT SMAD4 -CBFB METABOLIC_CATALYSIS IGHA1 -CBFB REACTS_WITH CBFB -CBFB REACTS_WITH SMAD4 -CBLB IN_SAME_COMPONENT CD40 -CBLB IN_SAME_COMPONENT CD40LG -CBLB IN_SAME_COMPONENT TRAF2 -CBLB IN_SAME_COMPONENT TRAF6 -CBLB REACTS_WITH CBLB -CBLB REACTS_WITH CD40 -CBLB REACTS_WITH CD40LG -CBLB REACTS_WITH TRAF2 -CBLB REACTS_WITH TRAF6 -CBLB STATE_CHANGE AKT1 -CBLB STATE_CHANGE EGF -CBLB STATE_CHANGE EGFR -CBL IN_SAME_COMPONENT ARHGEF7 -CBL IN_SAME_COMPONENT B2M -CBL IN_SAME_COMPONENT BCAR1 -CBL IN_SAME_COMPONENT CD247 -CBL IN_SAME_COMPONENT CD2AP -CBL IN_SAME_COMPONENT CD3D -CBL IN_SAME_COMPONENT CD3E -CBL IN_SAME_COMPONENT CD3G -CBL IN_SAME_COMPONENT CD4 -CBL IN_SAME_COMPONENT CD8A -CBL IN_SAME_COMPONENT CD8B -CBL IN_SAME_COMPONENT CDC42 -CBL IN_SAME_COMPONENT CRKL -CBL IN_SAME_COMPONENT CSF1R -CBL IN_SAME_COMPONENT EGF -CBL IN_SAME_COMPONENT EGFR -CBL IN_SAME_COMPONENT FLT1 -CBL IN_SAME_COMPONENT FRS2 -CBL IN_SAME_COMPONENT GNG2 -CBL IN_SAME_COMPONENT HLA-A -CBL IN_SAME_COMPONENT HLA-DRA -CBL IN_SAME_COMPONENT HLA-DRB1 -CBL IN_SAME_COMPONENT ITGAV -CBL IN_SAME_COMPONENT ITGB3 -CBL IN_SAME_COMPONENT KDR -CBL IN_SAME_COMPONENT LCK -CBL IN_SAME_COMPONENT PDGFB -CBL IN_SAME_COMPONENT PDGFRB -CBL IN_SAME_COMPONENT PIK3CG -CBL IN_SAME_COMPONENT PIK3R6 -CBL IN_SAME_COMPONENT RAPGEF1 -CBL IN_SAME_COMPONENT SDC2 -CBL IN_SAME_COMPONENT SH2B2 -CBL IN_SAME_COMPONENT SH3GL2 -CBL IN_SAME_COMPONENT SH3KBP1 -CBL IN_SAME_COMPONENT SHC1 -CBL IN_SAME_COMPONENT SLA2 -CBL IN_SAME_COMPONENT SORBS1 -CBL IN_SAME_COMPONENT SOS1 -CBL IN_SAME_COMPONENT SPRY2 -CBL IN_SAME_COMPONENT VAV1 -CBL IN_SAME_COMPONENT VEGFA -CBL IN_SAME_COMPONENT ZAP70 -CBL INTERACTS_WITH KIT -CBL INTERACTS_WITH KITLG -CBLL1 STATE_CHANGE CDH1 -CBLL1 STATE_CHANGE CTNNB1 -CBL REACTS_WITH ARHGEF7 -CBL REACTS_WITH B2M -CBL REACTS_WITH BCAR1 -CBL REACTS_WITH CBL -CBL REACTS_WITH CD247 -CBL REACTS_WITH CD2AP -CBL REACTS_WITH CD3D -CBL REACTS_WITH CD3E -CBL REACTS_WITH CD3G -CBL REACTS_WITH CD4 -CBL REACTS_WITH CD8A -CBL REACTS_WITH CD8B -CBL REACTS_WITH CDC42 -CBL REACTS_WITH CRKL -CBL REACTS_WITH CSF1R -CBL REACTS_WITH EGF -CBL REACTS_WITH EGFR -CBL REACTS_WITH FLT1 -CBL REACTS_WITH FRS2 -CBL REACTS_WITH GNG2 -CBL REACTS_WITH GRAP2 -CBL REACTS_WITH HLA-A -CBL REACTS_WITH HLA-DRA -CBL REACTS_WITH HLA-DRB1 -CBL REACTS_WITH ITGAV -CBL REACTS_WITH ITGB3 -CBL REACTS_WITH ITK -CBL REACTS_WITH KDR -CBL REACTS_WITH LCK -CBL REACTS_WITH LCP2 -CBL REACTS_WITH PDGFB -CBL REACTS_WITH PDGFRB -CBL REACTS_WITH PIK3CG -CBL REACTS_WITH PIK3R6 -CBL REACTS_WITH PLCG1 -CBL REACTS_WITH RAPGEF1 -CBL REACTS_WITH SDC2 -CBL REACTS_WITH SH2B2 -CBL REACTS_WITH SHC1 -CBL REACTS_WITH SLA2 -CBL REACTS_WITH SORBS1 -CBL REACTS_WITH SOS1 -CBL REACTS_WITH SPRY2 -CBL REACTS_WITH VAV1 -CBL REACTS_WITH VEGFA -CBL REACTS_WITH ZAP70 -CBL STATE_CHANGE ARHGEF7 -CBL STATE_CHANGE EGF -CBL STATE_CHANGE EGFR -CBL STATE_CHANGE HGF -CBL STATE_CHANGE MET -CBL STATE_CHANGE PIK3CA -CBL STATE_CHANGE PIK3R1 -CBL STATE_CHANGE PLCG1 -CBL STATE_CHANGE RHOQ -CBL STATE_CHANGE SH3GL2 -CBL STATE_CHANGE SH3KBP1 -CBL STATE_CHANGE VAV3 -CBX4 IN_SAME_COMPONENT CTBP1 -CBX4 IN_SAME_COMPONENT E2F4 -CBX4 IN_SAME_COMPONENT RB1 -CBX4 IN_SAME_COMPONENT TFDP1 -CBX4 REACTS_WITH CBX4 -CBX4 REACTS_WITH CTBP1 -CBX4 REACTS_WITH E2F4 -CBX4 REACTS_WITH RB1 -CBX4 REACTS_WITH TFDP1 -CBY1 IN_SAME_COMPONENT CTNNB1 -CBY1 REACTS_WITH CBY1 -CBY1 REACTS_WITH CTNNB1 -CCL11 IN_SAME_COMPONENT CXCR3 -CCL11 REACTS_WITH CCL11 -CCL11 REACTS_WITH CXCL10 -CCL11 REACTS_WITH CXCR3 -CCL11 REACTS_WITH GNAI2 -CCL11 REACTS_WITH GNG2 -CCL5 IN_SAME_COMPONENT SDC1 -CCL5 IN_SAME_COMPONENT SDC4 -CCL5 REACTS_WITH CCL5 -CCL5 REACTS_WITH SDC1 -CCL5 REACTS_WITH SDC4 -CCM2 IN_SAME_COMPONENT MAP2K3 -CCM2 IN_SAME_COMPONENT MAP3K3 -CCM2 IN_SAME_COMPONENT RAC1 -CCM2 REACTS_WITH CCM2 -CCM2 REACTS_WITH MAP2K3 -CCM2 REACTS_WITH MAP3K3 -CCM2 REACTS_WITH RAC1 -CCNA2 CO_CONTROL MAPK14 -CCNA2 IN_SAME_COMPONENT CDK2 -CCNA2 INTERACTS_WITH CCNE1 -CCNA2 INTERACTS_WITH CDK2 -CCNA2 STATE_CHANGE ABL1 -CCNA2 STATE_CHANGE ATR -CCNA2 STATE_CHANGE ATRIP -CCNA2 STATE_CHANGE MDM2 -CCNA2 STATE_CHANGE RB1 -CCNA2 STATE_CHANGE TFDP1 -CCNA2 STATE_CHANGE TP53 -CCNB1 CO_CONTROL INCENP -CCNB1 CO_CONTROL PLK1 -CCNB1 IN_SAME_COMPONENT CDK1 -CCNB1 REACTS_WITH CCNB1 -CCNB1 REACTS_WITH CDK1 -CCNB1 STATE_CHANGE BUB1 -CCNB1 STATE_CHANGE BUB1B -CCNB1 STATE_CHANGE ERCC6L -CCNB1 STATE_CHANGE FBXO5 -CCNB1 STATE_CHANGE GOLGA2 -CCNB1 STATE_CHANGE GORASP1 -CCNB1 STATE_CHANGE RAB1A -CCNB1 STATE_CHANGE WEE1 -CCND1 CO_CONTROL AR -CCND1 CO_CONTROL CDK6 -CCND1 IN_SAME_COMPONENT AR -CCND1 IN_SAME_COMPONENT CDK4 -CCND1 IN_SAME_COMPONENT CDK6 -CCND1 IN_SAME_COMPONENT MYB -CCND1 METABOLIC_CATALYSIS KLK3 -CCND1 REACTS_WITH AR -CCND1 REACTS_WITH CCND1 -CCND1 REACTS_WITH CDK6 -CCND1 REACTS_WITH MYB -CCND1 STATE_CHANGE RB1 -CCND3 CO_CONTROL AR -CCND3 CO_CONTROL CARM1 -CCND3 CO_CONTROL NCOA2 -CCND3 IN_SAME_COMPONENT AR -CCND3 METABOLIC_CATALYSIS KLK3 -CCND3 REACTS_WITH AR -CCND3 REACTS_WITH CCND3 -CCNE1 CO_CONTROL MLST8 -CCNE1 CO_CONTROL MTOR -CCNE1 CO_CONTROL RPTOR -CCNE1 IN_SAME_COMPONENT CDK2 -CCNE1 INTERACTS_WITH CCNA2 -CCNE1 STATE_CHANGE BARD1 -CCNE1 STATE_CHANGE BRCA1 -CCNE1 STATE_CHANGE E2F5 -CCNE1 STATE_CHANGE RB1 -CCNE1 STATE_CHANGE RRN3 -CCNE1 STATE_CHANGE TFDP1 -CCNG1 IN_SAME_COMPONENT PPP2CA -CCNG1 IN_SAME_COMPONENT PPP2R4 -CCNG1 REACTS_WITH CCNG1 -CCNG1 REACTS_WITH PPP2CA -CCNG1 REACTS_WITH PPP2R4 -CCNG1 STATE_CHANGE MDM2 -CCNH IN_SAME_COMPONENT CDK7 -CCNH IN_SAME_COMPONENT MNAT1 -CCNH IN_SAME_COMPONENT RARA -CCNH IN_SAME_COMPONENT RXRA -CCNH REACTS_WITH CCNH -CCNH REACTS_WITH RARA -CCNH REACTS_WITH RXRA -CCNH STATE_CHANGE CCNH -CCNH STATE_CHANGE RARA -CD14 IN_SAME_COMPONENT ITGA4 -CD14 IN_SAME_COMPONENT ITGB1 -CD14 METABOLIC_CATALYSIS TLR6 -CD14 REACTS_WITH CD14 -CD14 REACTS_WITH ITGA4 -CD14 REACTS_WITH ITGB1 -CD14 STATE_CHANGE BGN -CD14 STATE_CHANGE HSPD1 -CD14 STATE_CHANGE LY96 -CD14 STATE_CHANGE TLR1 -CD14 STATE_CHANGE TLR2 -CD14 STATE_CHANGE TLR4 -CD14 STATE_CHANGE VCAN -CD19 CO_CONTROL BLNK -CD19 CO_CONTROL CD79A -CD19 CO_CONTROL CD79B -CD19 CO_CONTROL LYN -CD19 CO_CONTROL SYK -CD19 IN_SAME_COMPONENT PIK3CA -CD19 IN_SAME_COMPONENT PIK3R1 -CD19 REACTS_WITH CD19 -CD19 REACTS_WITH PIK3CA -CD19 REACTS_WITH PIK3R1 -CD19 STATE_CHANGE AKT1 -CD19 STATE_CHANGE VAV2 -CD22 STATE_CHANGE PTPN6 -CD247 CO_CONTROL CD28 -CD247 CO_CONTROL FYN -CD247 CO_CONTROL ITK -CD247 CO_CONTROL MAPK8 -CD247 CO_CONTROL PTPN11 -CD247 CO_CONTROL STAT4 -CD247 CO_CONTROL TBX21 -CD247 IN_SAME_COMPONENT B2M -CD247 IN_SAME_COMPONENT CBL -CD247 IN_SAME_COMPONENT CD3D -CD247 IN_SAME_COMPONENT CD3E -CD247 IN_SAME_COMPONENT CD3G -CD247 IN_SAME_COMPONENT CD4 -CD247 IN_SAME_COMPONENT CD8A -CD247 IN_SAME_COMPONENT CD8B -CD247 IN_SAME_COMPONENT FYN -CD247 IN_SAME_COMPONENT HLA-A -CD247 IN_SAME_COMPONENT HLA-DRA -CD247 IN_SAME_COMPONENT HLA-DRB1 -CD247 IN_SAME_COMPONENT LCK -CD247 IN_SAME_COMPONENT SH3BP2 -CD247 IN_SAME_COMPONENT SLA2 -CD247 IN_SAME_COMPONENT ZAP70 -CD247 METABOLIC_CATALYSIS EOMES -CD247 METABOLIC_CATALYSIS FASLG -CD247 METABOLIC_CATALYSIS FOS -CD247 METABOLIC_CATALYSIS IFNG -CD247 METABOLIC_CATALYSIS LAT -CD247 METABOLIC_CATALYSIS PRF1 -CD247 REACTS_WITH B2M -CD247 REACTS_WITH CBL -CD247 REACTS_WITH CD247 -CD247 REACTS_WITH CD3D -CD247 REACTS_WITH CD3E -CD247 REACTS_WITH CD3G -CD247 REACTS_WITH CD4 -CD247 REACTS_WITH CD8A -CD247 REACTS_WITH CD8B -CD247 REACTS_WITH FYN -CD247 REACTS_WITH HLA-A -CD247 REACTS_WITH HLA-DRA -CD247 REACTS_WITH HLA-DRB1 -CD247 REACTS_WITH LCK -CD247 REACTS_WITH SH3BP2 -CD247 REACTS_WITH SLA2 -CD247 REACTS_WITH ZAP70 -CD247 STATE_CHANGE CBL -CD247 STATE_CHANGE CD28 -CD247 STATE_CHANGE CSK -CD247 STATE_CHANGE DBNL -CD247 STATE_CHANGE FYB -CD247 STATE_CHANGE GRAP2 -CD247 STATE_CHANGE IL2 -CD247 STATE_CHANGE IL2RA -CD247 STATE_CHANGE IL2RB -CD247 STATE_CHANGE IL2RG -CD247 STATE_CHANGE ITK -CD247 STATE_CHANGE JUN -CD247 STATE_CHANGE LCP2 -CD247 STATE_CHANGE MAP4K1 -CD247 STATE_CHANGE PAG1 -CD247 STATE_CHANGE PRKCQ -CD247 STATE_CHANGE PTPN11 -CD247 STATE_CHANGE PTPN6 -CD247 STATE_CHANGE SHC1 -CD247 STATE_CHANGE VAV1 -CD28 CO_CONTROL CD247 -CD28 CO_CONTROL CD3D -CD28 CO_CONTROL CD3E -CD28 CO_CONTROL CD3G -CD28 CO_CONTROL CD4 -CD28 CO_CONTROL HLA-DRA -CD28 CO_CONTROL HLA-DRB1 -CD28 CO_CONTROL LCK -CD28 CO_CONTROL STAT4 -CD28 CO_CONTROL TBX21 -CD28 METABOLIC_CATALYSIS IFNG -CD28 METABOLIC_CATALYSIS PRF1 -CD28 REACTS_WITH CD28 -CD28 STATE_CHANGE B2M -CD28 STATE_CHANGE CD247 -CD28 STATE_CHANGE CD3D -CD28 STATE_CHANGE CD3E -CD28 STATE_CHANGE CD3G -CD28 STATE_CHANGE CD4 -CD28 STATE_CHANGE CD8A -CD28 STATE_CHANGE CD8B -CD28 STATE_CHANGE GAB2 -CD28 STATE_CHANGE HLA-A -CD28 STATE_CHANGE HLA-DRA -CD28 STATE_CHANGE HLA-DRB1 -CD28 STATE_CHANGE ITK -CD28 STATE_CHANGE LCK -CD28 STATE_CHANGE PRKCQ -CD28 STATE_CHANGE STK39 -CD28 STATE_CHANGE ZAP70 -CD2AP IN_SAME_COMPONENT CBL -CD2AP IN_SAME_COMPONENT FLT1 -CD2AP IN_SAME_COMPONENT KIRREL -CD2AP IN_SAME_COMPONENT NPHS1 -CD2AP IN_SAME_COMPONENT NPHS2 -CD2AP IN_SAME_COMPONENT VEGFA -CD2AP REACTS_WITH CBL -CD2AP REACTS_WITH CD2AP -CD2AP REACTS_WITH FLT1 -CD2AP REACTS_WITH KIRREL -CD2AP REACTS_WITH NPHS1 -CD2AP REACTS_WITH NPHS2 -CD2AP REACTS_WITH VEGFA -CD3D CO_CONTROL CD28 -CD3D CO_CONTROL FYN -CD3D CO_CONTROL ITK -CD3D CO_CONTROL MAPK8 -CD3D CO_CONTROL PTPN11 -CD3D CO_CONTROL STAT4 -CD3D CO_CONTROL TBX21 -CD3D IN_SAME_COMPONENT B2M -CD3D IN_SAME_COMPONENT CBL -CD3D IN_SAME_COMPONENT CD247 -CD3D IN_SAME_COMPONENT CD3E -CD3D IN_SAME_COMPONENT CD3G -CD3D IN_SAME_COMPONENT CD4 -CD3D IN_SAME_COMPONENT CD8A -CD3D IN_SAME_COMPONENT CD8B -CD3D IN_SAME_COMPONENT FYN -CD3D IN_SAME_COMPONENT HLA-A -CD3D IN_SAME_COMPONENT HLA-DRA -CD3D IN_SAME_COMPONENT HLA-DRB1 -CD3D IN_SAME_COMPONENT LCK -CD3D IN_SAME_COMPONENT SH3BP2 -CD3D IN_SAME_COMPONENT SLA2 -CD3D IN_SAME_COMPONENT ZAP70 -CD3D METABOLIC_CATALYSIS EOMES -CD3D METABOLIC_CATALYSIS FOS -CD3D METABOLIC_CATALYSIS IFNG -CD3D METABOLIC_CATALYSIS LAT -CD3D METABOLIC_CATALYSIS PRF1 -CD3D REACTS_WITH B2M -CD3D REACTS_WITH CBL -CD3D REACTS_WITH CD247 -CD3D REACTS_WITH CD3D -CD3D REACTS_WITH CD3E -CD3D REACTS_WITH CD3G -CD3D REACTS_WITH CD4 -CD3D REACTS_WITH CD8A -CD3D REACTS_WITH CD8B -CD3D REACTS_WITH FYN -CD3D REACTS_WITH HLA-A -CD3D REACTS_WITH HLA-DRA -CD3D REACTS_WITH HLA-DRB1 -CD3D REACTS_WITH LCK -CD3D REACTS_WITH SH3BP2 -CD3D REACTS_WITH SLA2 -CD3D REACTS_WITH ZAP70 -CD3D STATE_CHANGE CBL -CD3D STATE_CHANGE CD28 -CD3D STATE_CHANGE CSK -CD3D STATE_CHANGE DBNL -CD3D STATE_CHANGE FYB -CD3D STATE_CHANGE GRAP2 -CD3D STATE_CHANGE IL2 -CD3D STATE_CHANGE IL2RA -CD3D STATE_CHANGE IL2RB -CD3D STATE_CHANGE IL2RG -CD3D STATE_CHANGE ITK -CD3D STATE_CHANGE JUN -CD3D STATE_CHANGE LCP2 -CD3D STATE_CHANGE MAP4K1 -CD3D STATE_CHANGE PAG1 -CD3D STATE_CHANGE PRKCQ -CD3D STATE_CHANGE PTPN11 -CD3D STATE_CHANGE PTPN6 -CD3D STATE_CHANGE SHC1 -CD3D STATE_CHANGE VAV1 -CD3E CO_CONTROL CD28 -CD3E CO_CONTROL FYN -CD3E CO_CONTROL ITK -CD3E CO_CONTROL MAPK8 -CD3E CO_CONTROL PTPN11 -CD3E CO_CONTROL STAT4 -CD3E CO_CONTROL TBX21 -CD3E IN_SAME_COMPONENT B2M -CD3E IN_SAME_COMPONENT CBL -CD3E IN_SAME_COMPONENT CD247 -CD3E IN_SAME_COMPONENT CD3D -CD3E IN_SAME_COMPONENT CD3G -CD3E IN_SAME_COMPONENT CD4 -CD3E IN_SAME_COMPONENT CD8A -CD3E IN_SAME_COMPONENT CD8B -CD3E IN_SAME_COMPONENT FYN -CD3E IN_SAME_COMPONENT HLA-A -CD3E IN_SAME_COMPONENT HLA-DRA -CD3E IN_SAME_COMPONENT HLA-DRB1 -CD3E IN_SAME_COMPONENT LCK -CD3E IN_SAME_COMPONENT SH3BP2 -CD3E IN_SAME_COMPONENT SLA2 -CD3E IN_SAME_COMPONENT ZAP70 -CD3E METABOLIC_CATALYSIS EOMES -CD3E METABOLIC_CATALYSIS FOS -CD3E METABOLIC_CATALYSIS IFNG -CD3E METABOLIC_CATALYSIS LAT -CD3E METABOLIC_CATALYSIS PRF1 -CD3E REACTS_WITH B2M -CD3E REACTS_WITH CBL -CD3E REACTS_WITH CD247 -CD3E REACTS_WITH CD3D -CD3E REACTS_WITH CD3E -CD3E REACTS_WITH CD3G -CD3E REACTS_WITH CD4 -CD3E REACTS_WITH CD8A -CD3E REACTS_WITH CD8B -CD3E REACTS_WITH FYN -CD3E REACTS_WITH HLA-A -CD3E REACTS_WITH HLA-DRA -CD3E REACTS_WITH HLA-DRB1 -CD3E REACTS_WITH LCK -CD3E REACTS_WITH SH3BP2 -CD3E REACTS_WITH SLA2 -CD3E REACTS_WITH ZAP70 -CD3E STATE_CHANGE CBL -CD3E STATE_CHANGE CD28 -CD3E STATE_CHANGE CSK -CD3E STATE_CHANGE DBNL -CD3E STATE_CHANGE FYB -CD3E STATE_CHANGE GRAP2 -CD3E STATE_CHANGE IL2 -CD3E STATE_CHANGE IL2RA -CD3E STATE_CHANGE IL2RB -CD3E STATE_CHANGE IL2RG -CD3E STATE_CHANGE ITK -CD3E STATE_CHANGE JUN -CD3E STATE_CHANGE LCP2 -CD3E STATE_CHANGE MAP4K1 -CD3E STATE_CHANGE PAG1 -CD3E STATE_CHANGE PRKCQ -CD3E STATE_CHANGE PTPN11 -CD3E STATE_CHANGE PTPN6 -CD3E STATE_CHANGE SHC1 -CD3E STATE_CHANGE VAV1 -CD3G CO_CONTROL CD28 -CD3G CO_CONTROL FYN -CD3G CO_CONTROL ITK -CD3G CO_CONTROL MAPK8 -CD3G CO_CONTROL PTPN11 -CD3G CO_CONTROL STAT4 -CD3G CO_CONTROL TBX21 -CD3G IN_SAME_COMPONENT B2M -CD3G IN_SAME_COMPONENT CBL -CD3G IN_SAME_COMPONENT CD247 -CD3G IN_SAME_COMPONENT CD3D -CD3G IN_SAME_COMPONENT CD3E -CD3G IN_SAME_COMPONENT CD4 -CD3G IN_SAME_COMPONENT CD8A -CD3G IN_SAME_COMPONENT CD8B -CD3G IN_SAME_COMPONENT FYN -CD3G IN_SAME_COMPONENT HLA-A -CD3G IN_SAME_COMPONENT HLA-DRA -CD3G IN_SAME_COMPONENT HLA-DRB1 -CD3G IN_SAME_COMPONENT LCK -CD3G IN_SAME_COMPONENT SH3BP2 -CD3G IN_SAME_COMPONENT SLA2 -CD3G IN_SAME_COMPONENT ZAP70 -CD3G METABOLIC_CATALYSIS EOMES -CD3G METABOLIC_CATALYSIS FOS -CD3G METABOLIC_CATALYSIS IFNG -CD3G METABOLIC_CATALYSIS LAT -CD3G METABOLIC_CATALYSIS PRF1 -CD3G REACTS_WITH B2M -CD3G REACTS_WITH CBL -CD3G REACTS_WITH CD247 -CD3G REACTS_WITH CD3D -CD3G REACTS_WITH CD3E -CD3G REACTS_WITH CD3G -CD3G REACTS_WITH CD4 -CD3G REACTS_WITH CD8A -CD3G REACTS_WITH CD8B -CD3G REACTS_WITH FYN -CD3G REACTS_WITH HLA-A -CD3G REACTS_WITH HLA-DRA -CD3G REACTS_WITH HLA-DRB1 -CD3G REACTS_WITH LCK -CD3G REACTS_WITH SH3BP2 -CD3G REACTS_WITH SLA2 -CD3G REACTS_WITH ZAP70 -CD3G STATE_CHANGE CBL -CD3G STATE_CHANGE CD28 -CD3G STATE_CHANGE CSK -CD3G STATE_CHANGE DBNL -CD3G STATE_CHANGE FYB -CD3G STATE_CHANGE GRAP2 -CD3G STATE_CHANGE IL2 -CD3G STATE_CHANGE IL2RA -CD3G STATE_CHANGE IL2RB -CD3G STATE_CHANGE IL2RG -CD3G STATE_CHANGE ITK -CD3G STATE_CHANGE JUN -CD3G STATE_CHANGE LCP2 -CD3G STATE_CHANGE MAP4K1 -CD3G STATE_CHANGE PAG1 -CD3G STATE_CHANGE PRKCQ -CD3G STATE_CHANGE PTPN11 -CD3G STATE_CHANGE PTPN6 -CD3G STATE_CHANGE SHC1 -CD3G STATE_CHANGE VAV1 -CD40 IN_SAME_COMPONENT BIRC2 -CD40 IN_SAME_COMPONENT BIRC3 -CD40 IN_SAME_COMPONENT C4BPA -CD40 IN_SAME_COMPONENT CBLB -CD40 IN_SAME_COMPONENT CD40LG -CD40 IN_SAME_COMPONENT JAK3 -CD40 IN_SAME_COMPONENT MAP3K1 -CD40 IN_SAME_COMPONENT TDP2 -CD40 IN_SAME_COMPONENT TRAF1 -CD40 IN_SAME_COMPONENT TRAF2 -CD40 IN_SAME_COMPONENT TRAF3 -CD40 IN_SAME_COMPONENT TRAF6 -CD40LG CO_CONTROL IL2RG -CD40LG CO_CONTROL IL4 -CD40LG CO_CONTROL IL4R -CD40LG CO_CONTROL JAK1 -CD40LG CO_CONTROL JAK3 -CD40LG IN_SAME_COMPONENT BIRC2 -CD40LG IN_SAME_COMPONENT BIRC3 -CD40LG IN_SAME_COMPONENT CBLB -CD40LG IN_SAME_COMPONENT CD40 -CD40LG IN_SAME_COMPONENT ITGAM -CD40LG IN_SAME_COMPONENT ITGB2 -CD40LG IN_SAME_COMPONENT JAK3 -CD40LG IN_SAME_COMPONENT MAP3K1 -CD40LG IN_SAME_COMPONENT TDP2 -CD40LG IN_SAME_COMPONENT TRAF1 -CD40LG IN_SAME_COMPONENT TRAF2 -CD40LG IN_SAME_COMPONENT TRAF3 -CD40LG IN_SAME_COMPONENT TRAF6 -CD40LG METABOLIC_CATALYSIS IRF4 -CD40LG REACTS_WITH BIRC2 -CD40LG REACTS_WITH BIRC3 -CD40LG REACTS_WITH CBLB -CD40LG REACTS_WITH CD40 -CD40LG REACTS_WITH CD40LG -CD40LG REACTS_WITH ITGAM -CD40LG REACTS_WITH ITGB2 -CD40LG REACTS_WITH JAK3 -CD40LG REACTS_WITH MAP3K1 -CD40LG REACTS_WITH TDP2 -CD40LG REACTS_WITH TRAF1 -CD40LG REACTS_WITH TRAF2 -CD40LG REACTS_WITH TRAF3 -CD40LG REACTS_WITH TRAF6 -CD40LG STATE_CHANGE AKT1 -CD40LG STATE_CHANGE MAP2K4 -CD40LG STATE_CHANGE NFKB1 -CD40LG STATE_CHANGE NFKBIA -CD40LG STATE_CHANGE RELA -CD40LG STATE_CHANGE STAT5A -CD40LG STATE_CHANGE TRAF3 -CD40 REACTS_WITH BIRC2 -CD40 REACTS_WITH BIRC3 -CD40 REACTS_WITH C4BPA -CD40 REACTS_WITH CBLB -CD40 REACTS_WITH CD40 -CD40 REACTS_WITH CD40LG -CD40 REACTS_WITH JAK3 -CD40 REACTS_WITH MAP3K1 -CD40 REACTS_WITH TDP2 -CD40 REACTS_WITH TRAF1 -CD40 REACTS_WITH TRAF2 -CD40 REACTS_WITH TRAF3 -CD40 REACTS_WITH TRAF6 -CD40 STATE_CHANGE AKT1 -CD40 STATE_CHANGE MAP2K4 -CD40 STATE_CHANGE NFKB1 -CD40 STATE_CHANGE NFKBIA -CD40 STATE_CHANGE RELA -CD40 STATE_CHANGE STAT5A -CD40 STATE_CHANGE TRAF3 -CD44 IN_SAME_COMPONENT ROCK2 -CD44 INTERACTS_WITH ITGA4 -CD44 INTERACTS_WITH ITGB7 -CD44 REACTS_WITH CD44 -CD44 REACTS_WITH ROCK2 -CD47 IN_SAME_COMPONENT ITGA2B -CD47 IN_SAME_COMPONENT ITGAV -CD47 IN_SAME_COMPONENT ITGB3 -CD47 IN_SAME_COMPONENT THBS1 -CD47 REACTS_WITH CD47 -CD47 REACTS_WITH ITGA2B -CD47 REACTS_WITH ITGAV -CD47 REACTS_WITH ITGB3 -CD47 REACTS_WITH THBS1 -CD4 CO_CONTROL CD28 -CD4 CO_CONTROL FYN -CD4 CO_CONTROL ITK -CD4 CO_CONTROL PTPN11 -CD4 CO_CONTROL STAT4 -CD4 CO_CONTROL TBX21 -CD4 IN_SAME_COMPONENT CBL -CD4 IN_SAME_COMPONENT CD247 -CD4 IN_SAME_COMPONENT CD3D -CD4 IN_SAME_COMPONENT CD3E -CD4 IN_SAME_COMPONENT CD3G -CD4 IN_SAME_COMPONENT CLTA -CD4 IN_SAME_COMPONENT CLTB -CD4 IN_SAME_COMPONENT COPA -CD4 IN_SAME_COMPONENT FYN -CD4 IN_SAME_COMPONENT HLA-DRA -CD4 IN_SAME_COMPONENT HLA-DRB1 -CD4 IN_SAME_COMPONENT LCK -CD4 IN_SAME_COMPONENT SH3BP2 -CD4 IN_SAME_COMPONENT SLA2 -CD4 IN_SAME_COMPONENT ZAP70 -CD4 METABOLIC_CATALYSIS FOS -CD4 METABOLIC_CATALYSIS IFNG -CD4 REACTS_WITH AP2A1 -CD4 REACTS_WITH AP2M1 -CD4 REACTS_WITH CBL -CD4 REACTS_WITH CD247 -CD4 REACTS_WITH CD3D -CD4 REACTS_WITH CD3E -CD4 REACTS_WITH CD3G -CD4 REACTS_WITH CD4 -CD4 REACTS_WITH CLTA -CD4 REACTS_WITH CLTB -CD4 REACTS_WITH COPA -CD4 REACTS_WITH FYN -CD4 REACTS_WITH HLA-DRA -CD4 REACTS_WITH HLA-DRB1 -CD4 REACTS_WITH LCK -CD4 REACTS_WITH SH3BP2 -CD4 REACTS_WITH SLA2 -CD4 REACTS_WITH ZAP70 -CD4 STATE_CHANGE CBL -CD4 STATE_CHANGE CD28 -CD4 STATE_CHANGE CSK -CD4 STATE_CHANGE DBNL -CD4 STATE_CHANGE FYB -CD4 STATE_CHANGE GRAP2 -CD4 STATE_CHANGE ITK -CD4 STATE_CHANGE LCP2 -CD4 STATE_CHANGE MAP4K1 -CD4 STATE_CHANGE PAG1 -CD4 STATE_CHANGE PRKCQ -CD4 STATE_CHANGE PTPN11 -CD4 STATE_CHANGE PTPN6 -CD4 STATE_CHANGE SHC1 -CD4 STATE_CHANGE VAV1 -CD72 IN_SAME_COMPONENT BLNK -CD72 IN_SAME_COMPONENT BTK -CD72 IN_SAME_COMPONENT CD79A -CD72 IN_SAME_COMPONENT CD79B -CD72 IN_SAME_COMPONENT LYN -CD72 IN_SAME_COMPONENT PLCG2 -CD72 IN_SAME_COMPONENT PTPN6 -CD72 IN_SAME_COMPONENT SYK -CD72 REACTS_WITH BLNK -CD72 REACTS_WITH BTK -CD72 REACTS_WITH CD72 -CD72 REACTS_WITH CD79A -CD72 REACTS_WITH CD79B -CD72 REACTS_WITH LYN -CD72 REACTS_WITH PLCG2 -CD72 REACTS_WITH PTPN6 -CD72 REACTS_WITH SYK -CD79A CO_CONTROL CD19 -CD79A CO_CONTROL INPP5D -CD79A CO_CONTROL PIK3CA -CD79A CO_CONTROL PIK3R1 -CD79A CO_CONTROL VAV2 -CD79A IN_SAME_COMPONENT BLNK -CD79A IN_SAME_COMPONENT BTK -CD79A IN_SAME_COMPONENT CD72 -CD79A IN_SAME_COMPONENT CD79B -CD79A IN_SAME_COMPONENT FCGR2B -CD79A IN_SAME_COMPONENT LYN -CD79A IN_SAME_COMPONENT PLCG2 -CD79A IN_SAME_COMPONENT SYK -CD79A REACTS_WITH BLNK -CD79A REACTS_WITH BTK -CD79A REACTS_WITH CD72 -CD79A REACTS_WITH CD79A -CD79A REACTS_WITH CD79B -CD79A REACTS_WITH FCGR2B -CD79A REACTS_WITH LYN -CD79A REACTS_WITH PLCG2 -CD79A REACTS_WITH PTPN6 -CD79A REACTS_WITH SYK -CD79A STATE_CHANGE CD19 -CD79A STATE_CHANGE CD22 -CD79A STATE_CHANGE CSK -CD79A STATE_CHANGE DAPP1 -CD79A STATE_CHANGE DOK1 -CD79A STATE_CHANGE INPP5D -CD79A STATE_CHANGE PIK3CA -CD79A STATE_CHANGE PIK3R1 -CD79A STATE_CHANGE RASA1 -CD79A STATE_CHANGE VAV2 -CD79B CO_CONTROL CD19 -CD79B CO_CONTROL INPP5D -CD79B CO_CONTROL PIK3CA -CD79B CO_CONTROL PIK3R1 -CD79B CO_CONTROL VAV2 -CD79B IN_SAME_COMPONENT BLNK -CD79B IN_SAME_COMPONENT BTK -CD79B IN_SAME_COMPONENT CD72 -CD79B IN_SAME_COMPONENT CD79A -CD79B IN_SAME_COMPONENT FCGR2B -CD79B IN_SAME_COMPONENT LYN -CD79B IN_SAME_COMPONENT PLCG2 -CD79B IN_SAME_COMPONENT SYK -CD79B REACTS_WITH BLNK -CD79B REACTS_WITH BTK -CD79B REACTS_WITH CD72 -CD79B REACTS_WITH CD79A -CD79B REACTS_WITH CD79B -CD79B REACTS_WITH FCGR2B -CD79B REACTS_WITH LYN -CD79B REACTS_WITH PLCG2 -CD79B REACTS_WITH PTPN6 -CD79B REACTS_WITH SYK -CD79B STATE_CHANGE CD19 -CD79B STATE_CHANGE CD22 -CD79B STATE_CHANGE CSK -CD79B STATE_CHANGE DAPP1 -CD79B STATE_CHANGE DOK1 -CD79B STATE_CHANGE INPP5D -CD79B STATE_CHANGE PIK3CA -CD79B STATE_CHANGE PIK3R1 -CD79B STATE_CHANGE RASA1 -CD79B STATE_CHANGE VAV2 -CD81 IN_SAME_COMPONENT ITGA4 -CD81 IN_SAME_COMPONENT ITGB1 -CD81 REACTS_WITH CD81 -CD81 REACTS_WITH ITGA4 -CD81 REACTS_WITH ITGB1 -CD8A CO_CONTROL MAPK8 -CD8A IN_SAME_COMPONENT B2M -CD8A IN_SAME_COMPONENT CBL -CD8A IN_SAME_COMPONENT CD247 -CD8A IN_SAME_COMPONENT CD3D -CD8A IN_SAME_COMPONENT CD3E -CD8A IN_SAME_COMPONENT CD3G -CD8A IN_SAME_COMPONENT CD8B -CD8A IN_SAME_COMPONENT FYN -CD8A IN_SAME_COMPONENT HLA-A -CD8A IN_SAME_COMPONENT LCK -CD8A IN_SAME_COMPONENT ZAP70 -CD8A METABOLIC_CATALYSIS EOMES -CD8A METABOLIC_CATALYSIS LAT -CD8A METABOLIC_CATALYSIS PRF1 -CD8A REACTS_WITH B2M -CD8A REACTS_WITH CBL -CD8A REACTS_WITH CD247 -CD8A REACTS_WITH CD3D -CD8A REACTS_WITH CD3E -CD8A REACTS_WITH CD3G -CD8A REACTS_WITH CD8A -CD8A REACTS_WITH CD8B -CD8A REACTS_WITH FYN -CD8A REACTS_WITH HLA-A -CD8A REACTS_WITH LCK -CD8A REACTS_WITH ZAP70 -CD8A STATE_CHANGE CD28 -CD8A STATE_CHANGE CSK -CD8A STATE_CHANGE GRAP2 -CD8A STATE_CHANGE IL2 -CD8A STATE_CHANGE IL2RA -CD8A STATE_CHANGE IL2RB -CD8A STATE_CHANGE IL2RG -CD8A STATE_CHANGE JUN -CD8A STATE_CHANGE LCP2 -CD8A STATE_CHANGE PAG1 -CD8A STATE_CHANGE PRKCQ -CD8A STATE_CHANGE PTPN6 -CD8A STATE_CHANGE VAV1 -CD8B CO_CONTROL MAPK8 -CD8B IN_SAME_COMPONENT B2M -CD8B IN_SAME_COMPONENT CBL -CD8B IN_SAME_COMPONENT CD247 -CD8B IN_SAME_COMPONENT CD3D -CD8B IN_SAME_COMPONENT CD3E -CD8B IN_SAME_COMPONENT CD3G -CD8B IN_SAME_COMPONENT CD8A -CD8B IN_SAME_COMPONENT FYN -CD8B IN_SAME_COMPONENT HLA-A -CD8B IN_SAME_COMPONENT LCK -CD8B IN_SAME_COMPONENT ZAP70 -CD8B METABOLIC_CATALYSIS EOMES -CD8B METABOLIC_CATALYSIS LAT -CD8B METABOLIC_CATALYSIS PRF1 -CD8B REACTS_WITH B2M -CD8B REACTS_WITH CBL -CD8B REACTS_WITH CD247 -CD8B REACTS_WITH CD3D -CD8B REACTS_WITH CD3E -CD8B REACTS_WITH CD3G -CD8B REACTS_WITH CD8A -CD8B REACTS_WITH CD8B -CD8B REACTS_WITH FYN -CD8B REACTS_WITH HLA-A -CD8B REACTS_WITH LCK -CD8B REACTS_WITH ZAP70 -CD8B STATE_CHANGE CD28 -CD8B STATE_CHANGE CSK -CD8B STATE_CHANGE GRAP2 -CD8B STATE_CHANGE IL2 -CD8B STATE_CHANGE IL2RA -CD8B STATE_CHANGE IL2RB -CD8B STATE_CHANGE IL2RG -CD8B STATE_CHANGE JUN -CD8B STATE_CHANGE LCP2 -CD8B STATE_CHANGE PAG1 -CD8B STATE_CHANGE PRKCQ -CD8B STATE_CHANGE PTPN6 -CD8B STATE_CHANGE VAV1 -CD9 IN_SAME_COMPONENT ITGA6 -CD9 IN_SAME_COMPONENT ITGB1 -CD9 REACTS_WITH CD9 -CD9 REACTS_WITH ITGA6 -CD9 REACTS_WITH ITGB1 -CDC14B STATE_CHANGE FZR1 -CDC25B REACTS_WITH CDC25B -CDC25B STATE_CHANGE CCNB1 -CDC25B STATE_CHANGE CDK1 -CDC25C IN_SAME_COMPONENT YWHAB -CDC25C REACTS_WITH CDC25C -CDC25C REACTS_WITH YWHAB -CDC37 IN_SAME_COMPONENT HSP90AA1 -CDC37 IN_SAME_COMPONENT STK11 -CDC37 REACTS_WITH CDC37 -CDC37 REACTS_WITH HSP90AA1 -CDC37 REACTS_WITH STK11 -CDC42 CO_CONTROL IQGAP1 -CDC42 CO_CONTROL RAC1 -CDC42 IN_SAME_COMPONENT ARHGEF7 -CDC42 IN_SAME_COMPONENT BAIAP2 -CDC42 IN_SAME_COMPONENT CBL -CDC42 IN_SAME_COMPONENT DOCK11 -CDC42 IN_SAME_COMPONENT ENAH -CDC42 IN_SAME_COMPONENT EPS8 -CDC42 IN_SAME_COMPONENT F2RL2 -CDC42 IN_SAME_COMPONENT IQGAP1 -CDC42 IN_SAME_COMPONENT PARD6A -CDC42 IN_SAME_COMPONENT PRKCE -CDC42 IN_SAME_COMPONENT PRKCZ -CDC42 IN_SAME_COMPONENT TNK2 -CDC42 IN_SAME_COMPONENT WAS -CDC42 IN_SAME_COMPONENT WASL -CDC42 INTERACTS_WITH RAC1 -CDC42 REACTS_WITH ARHGEF7 -CDC42 REACTS_WITH BAIAP2 -CDC42 REACTS_WITH CBL -CDC42 REACTS_WITH CDC42 -CDC42 REACTS_WITH DOCK11 -CDC42 REACTS_WITH ENAH -CDC42 REACTS_WITH EPS8 -CDC42 REACTS_WITH F2RL2 -CDC42 REACTS_WITH IQGAP1 -CDC42 REACTS_WITH PARD6A -CDC42 REACTS_WITH PRKCE -CDC42 REACTS_WITH PRKCZ -CDC42 REACTS_WITH TNK2 -CDC42 REACTS_WITH WAS -CDC42 REACTS_WITH WASL -CDC42 STATE_CHANGE BCAR1 -CDC42 STATE_CHANGE CDC42 -CDC42 STATE_CHANGE CDC42BPA -CDC42 STATE_CHANGE CDH1 -CDC42 STATE_CHANGE CSNK1A1 -CDC42 STATE_CHANGE CTNNA1 -CDC42 STATE_CHANGE CTNNB1 -CDC42 STATE_CHANGE DIAPH3 -CDC42 STATE_CHANGE EXOC7 -CDC42 STATE_CHANGE IQGAP1 -CDC42 STATE_CHANGE IQGAP3 -CDC42 STATE_CHANGE LIMK2 -CDC42 STATE_CHANGE MAP2K3 -CDC42 STATE_CHANGE MAP3K1 -CDC42 STATE_CHANGE MAP3K11 -CDC42 STATE_CHANGE MTOR -CDC42 STATE_CHANGE NFATC2 -CDC42 STATE_CHANGE PAK1 -CDC42 STATE_CHANGE PAK2 -CDC42 STATE_CHANGE PAK4 -CDC42 STATE_CHANGE PARD6A -CDC42 STATE_CHANGE PLD1 -CDC42 STATE_CHANGE PRKCZ -CDC42 STATE_CHANGE RASGRF1 -CDC42 STATE_CHANGE RPS6KB1 -CDC42 STATE_CHANGE SEPT2 -CDC42 STATE_CHANGE TIAM1 -CDC42 STATE_CHANGE VAV2 -CDC42 STATE_CHANGE WASL -CDC6 IN_SAME_COMPONENT ATR -CDC6 IN_SAME_COMPONENT ATRIP -CDC6 IN_SAME_COMPONENT HUS1 -CDC6 IN_SAME_COMPONENT RAD1 -CDC6 IN_SAME_COMPONENT RAD17 -CDC6 IN_SAME_COMPONENT RAD9A -CDC6 IN_SAME_COMPONENT RFC2 -CDC6 IN_SAME_COMPONENT RFC3 -CDC6 IN_SAME_COMPONENT RFC4 -CDC6 IN_SAME_COMPONENT RFC5 -CDC6 IN_SAME_COMPONENT RPA1 -CDC6 IN_SAME_COMPONENT RPA2 -CDC6 IN_SAME_COMPONENT TOPBP1 -CDC6 REACTS_WITH ATR -CDC6 REACTS_WITH ATRIP -CDC6 REACTS_WITH CDC6 -CDC6 REACTS_WITH HUS1 -CDC6 REACTS_WITH RAD1 -CDC6 REACTS_WITH RAD17 -CDC6 REACTS_WITH RAD9A -CDC6 REACTS_WITH RFC2 -CDC6 REACTS_WITH RFC3 -CDC6 REACTS_WITH RFC4 -CDC6 REACTS_WITH RFC5 -CDC6 REACTS_WITH RPA1 -CDC6 REACTS_WITH RPA2 -CDC6 REACTS_WITH TOPBP1 -CDCA8 IN_SAME_COMPONENT AURKB -CDCA8 IN_SAME_COMPONENT BIRC5 -CDCA8 IN_SAME_COMPONENT CUL3 -CDCA8 IN_SAME_COMPONENT EVI5 -CDCA8 IN_SAME_COMPONENT INCENP -CDCA8 IN_SAME_COMPONENT KLHL13 -CDCA8 IN_SAME_COMPONENT KLHL9 -CDCA8 REACTS_WITH AURKB -CDCA8 REACTS_WITH BIRC5 -CDCA8 REACTS_WITH CDCA8 -CDCA8 REACTS_WITH CUL3 -CDCA8 REACTS_WITH EVI5 -CDCA8 REACTS_WITH INCENP -CDCA8 REACTS_WITH KLHL13 -CDCA8 REACTS_WITH KLHL9 -CDCA8 REACTS_WITH PSMA3 -CDCA8 STATE_CHANGE CENPA -CDCA8 STATE_CHANGE KIF23 -CDCA8 STATE_CHANGE KIF2C -CDCA8 STATE_CHANGE RACGAP1 -CDH1 CO_CONTROL PVRL2 -CDH1 CO_CONTROL ZBTB33 -CDH1 IN_SAME_COMPONENT CTNNA1 -CDH1 IN_SAME_COMPONENT CTNNB1 -CDH1 IN_SAME_COMPONENT CTNND1 -CDH1 IN_SAME_COMPONENT F2RL2 -CDH1 IN_SAME_COMPONENT IQGAP1 -CDH1 IN_SAME_COMPONENT ITGAE -CDH1 IN_SAME_COMPONENT ITGB7 -CDH1 IN_SAME_COMPONENT JUP -CDH1 IN_SAME_COMPONENT LIMA1 -CDH1 IN_SAME_COMPONENT NUMB -CDH1 IN_SAME_COMPONENT PARD6A -CDH1 IN_SAME_COMPONENT ZBTB33 -CDH1 INTERACTS_WITH ERBB2 -CDH1 METABOLIC_CATALYSIS MMP7 -CDH1 REACTS_WITH CDH1 -CDH1 REACTS_WITH CTNNA1 -CDH1 REACTS_WITH CTNNB1 -CDH1 REACTS_WITH CTNND1 -CDH1 REACTS_WITH F2RL2 -CDH1 REACTS_WITH IGF1R -CDH1 REACTS_WITH IGF2 -CDH1 REACTS_WITH IQGAP1 -CDH1 REACTS_WITH ITGA6 -CDH1 REACTS_WITH ITGAE -CDH1 REACTS_WITH ITGB4 -CDH1 REACTS_WITH ITGB7 -CDH1 REACTS_WITH JUP -CDH1 REACTS_WITH LIMA1 -CDH1 REACTS_WITH MET -CDH1 REACTS_WITH NUMB -CDH1 REACTS_WITH PARD6A -CDH1 REACTS_WITH PIK3CA -CDH1 REACTS_WITH PIK3R1 -CDH1 REACTS_WITH RHOA -CDH1 REACTS_WITH ZBTB33 -CDH1 STATE_CHANGE ACTN1 -CDH1 STATE_CHANGE CTTN -CDH1 STATE_CHANGE DLG1 -CDH1 STATE_CHANGE EFNA1 -CDH1 STATE_CHANGE EGF -CDH1 STATE_CHANGE EGFR -CDH1 STATE_CHANGE ENAH -CDH1 STATE_CHANGE EPHA2 -CDH1 STATE_CHANGE EXOC3 -CDH1 STATE_CHANGE EXOC4 -CDH1 STATE_CHANGE FMN1 -CDH1 STATE_CHANGE HGF -CDH1 STATE_CHANGE IGF1 -CDH1 STATE_CHANGE IGF1R -CDH1 STATE_CHANGE JUB -CDH1 STATE_CHANGE KIFC3 -CDH1 STATE_CHANGE MET -CDH1 STATE_CHANGE MGAT3 -CDH1 STATE_CHANGE MYO6 -CDH1 STATE_CHANGE PIK3CA -CDH1 STATE_CHANGE PIK3R1 -CDH1 STATE_CHANGE PIP5K1A -CDH1 STATE_CHANGE PIP5K1C -CDH1 STATE_CHANGE PLEKHA7 -CDH1 STATE_CHANGE RHOA -CDH1 STATE_CHANGE SRC -CDH1 STATE_CHANGE STX4 -CDH1 STATE_CHANGE TJP1 -CDH1 STATE_CHANGE VASP -CDH1 STATE_CHANGE VCL -CDH1 STATE_CHANGE ZYX -CDH2 IN_SAME_COMPONENT AXIN1 -CDH2 IN_SAME_COMPONENT CREBBP -CDH2 IN_SAME_COMPONENT CTNNA1 -CDH2 IN_SAME_COMPONENT CTNNB1 -CDH2 IN_SAME_COMPONENT CTNND1 -CDH2 IN_SAME_COMPONENT FER -CDH2 IN_SAME_COMPONENT LRP5 -CDH2 IN_SAME_COMPONENT PTPN1 -CDH2 METABOLIC_CATALYSIS MMP9 -CDH2 REACTS_WITH AXIN1 -CDH2 REACTS_WITH CDH2 -CDH2 REACTS_WITH CREBBP -CDH2 REACTS_WITH CTNNA1 -CDH2 REACTS_WITH CTNNB1 -CDH2 REACTS_WITH CTNND1 -CDH2 REACTS_WITH LRP5 -CDH2 REACTS_WITH PTPN1 -CDH2 STATE_CHANGE CDH2 -CDH2 STATE_CHANGE CTNNA1 -CDH2 STATE_CHANGE CTNND1 -CDH2 STATE_CHANGE FER -CDH2 STATE_CHANGE FGFR1 -CDH2 STATE_CHANGE GJA1 -CDH2 STATE_CHANGE GRIA2 -CDH2 STATE_CHANGE PIK3CA -CDH2 STATE_CHANGE PIK3R1 -CDH2 STATE_CHANGE PIP5K1C -CDH2 STATE_CHANGE PTPN11 -CDH2 STATE_CHANGE RAC1 -CDH2 STATE_CHANGE RHOA -CDH5 IN_SAME_COMPONENT CTNNA1 -CDH5 IN_SAME_COMPONENT CTNNB1 -CDH5 IN_SAME_COMPONENT IQGAP1 -CDH5 IN_SAME_COMPONENT KDR -CDH5 IN_SAME_COMPONENT VEGFA -CDH5 REACTS_WITH CDH5 -CDH5 REACTS_WITH CTNNA1 -CDH5 REACTS_WITH CTNNB1 -CDH5 REACTS_WITH IQGAP1 -CDH5 REACTS_WITH KDR -CDH5 REACTS_WITH VEGFA -CDH5 STATE_CHANGE PTPRJ -CDK1 CO_CONTROL INCENP -CDK1 CO_CONTROL PLK1 -CDK1 IN_SAME_COMPONENT CCNB1 -CDK1 REACTS_WITH CCNB1 -CDK1 REACTS_WITH CDK1 -CDK1 STATE_CHANGE BUB1 -CDK1 STATE_CHANGE BUB1B -CDK1 STATE_CHANGE ERCC6L -CDK1 STATE_CHANGE FBXO5 -CDK1 STATE_CHANGE GOLGA2 -CDK1 STATE_CHANGE GORASP1 -CDK1 STATE_CHANGE RAB1A -CDK1 STATE_CHANGE RXRA -CDK1 STATE_CHANGE WEE1 -CDK2 CO_CONTROL CDKN1B -CDK2 CO_CONTROL MAPK14 -CDK2 CO_CONTROL MLST8 -CDK2 CO_CONTROL MTOR -CDK2 CO_CONTROL RPTOR -CDK2 IN_SAME_COMPONENT CCNA2 -CDK2 IN_SAME_COMPONENT CCNE1 -CDK2 IN_SAME_COMPONENT CDKN1A -CDK2 IN_SAME_COMPONENT CDKN1B -CDK2 IN_SAME_COMPONENT CEBPA -CDK2 INTERACTS_WITH CCNA2 -CDK2 REACTS_WITH CDK2 -CDK2 REACTS_WITH CDKN1A -CDK2 REACTS_WITH CDKN1B -CDK2 REACTS_WITH CEBPA -CDK2 REACTS_WITH SMARCA2 -CDK2 STATE_CHANGE ABL1 -CDK2 STATE_CHANGE ATR -CDK2 STATE_CHANGE ATRIP -CDK2 STATE_CHANGE BARD1 -CDK2 STATE_CHANGE BRCA1 -CDK2 STATE_CHANGE E2F5 -CDK2 STATE_CHANGE FOXO1 -CDK2 STATE_CHANGE MDM2 -CDK2 STATE_CHANGE RB1 -CDK2 STATE_CHANGE RRN3 -CDK2 STATE_CHANGE TFDP1 -CDK2 STATE_CHANGE TP53 -CDK4 IN_SAME_COMPONENT CCND1 -CDK4 STATE_CHANGE RB1 -CDK5 IN_SAME_COMPONENT CDK5R1 -CDK5 IN_SAME_COMPONENT CDK5R2 -CDK5R1 IN_SAME_COMPONENT CDK5 -CDK5R1 REACTS_WITH CDK5 -CDK5R1 REACTS_WITH CDK5R1 -CDK5R1 STATE_CHANGE NDEL1 -CDK5R2 IN_SAME_COMPONENT CDK5 -CDK5R2 REACTS_WITH CDK5 -CDK5R2 REACTS_WITH CDK5R2 -CDK5R2 STATE_CHANGE NDEL1 -CDK5 REACTS_WITH CDK5 -CDK5 REACTS_WITH CDK5R1 -CDK5 REACTS_WITH CDK5R2 -CDK5 STATE_CHANGE NDEL1 -CDK6 CO_CONTROL AR -CDK6 CO_CONTROL CCND1 -CDK6 IN_SAME_COMPONENT AR -CDK6 IN_SAME_COMPONENT CCND1 -CDK6 IN_SAME_COMPONENT MYB -CDK6 METABOLIC_CATALYSIS KLK3 -CDK6 REACTS_WITH AR -CDK6 REACTS_WITH CCND1 -CDK6 REACTS_WITH CDK6 -CDK6 REACTS_WITH MYB -CDK7 IN_SAME_COMPONENT CCNH -CDK7 IN_SAME_COMPONENT MNAT1 -CDK7 STATE_CHANGE CCNH -CDK7 STATE_CHANGE RARA -CDKN1A CO_CONTROL AKT2 -CDKN1A CO_CONTROL CDKN1A -CDKN1A IN_SAME_COMPONENT AKT2 -CDKN1A IN_SAME_COMPONENT CDK2 -CDKN1A REACTS_WITH AKT2 -CDKN1A REACTS_WITH CDK2 -CDKN1A REACTS_WITH CDKN1A -CDKN1A STATE_CHANGE RB1 -CDKN1A STATE_CHANGE TFDP1 -CDKN1B CO_CONTROL AKAP13 -CDKN1B CO_CONTROL ARHGEF1 -CDKN1B CO_CONTROL CDK2 -CDKN1B IN_SAME_COMPONENT CDK2 -CDKN1B IN_SAME_COMPONENT KPNA1 -CDKN1B IN_SAME_COMPONENT SKP2 -CDKN1B INTERACTS_WITH AKT1 -CDKN1B REACTS_WITH CDK2 -CDKN1B REACTS_WITH CDKN1B -CDKN1B REACTS_WITH KPNA1 -CDKN1B REACTS_WITH RB1 -CDKN1B REACTS_WITH SKP2 -CDKN1B STATE_CHANGE FOXO1 -CDKN1B STATE_CHANGE RHOA -CDON IN_SAME_COMPONENT SHH -CDON METABOLIC_CATALYSIS GLI2 -CDON REACTS_WITH CDON -CDON REACTS_WITH SHH -CDX1 IN_SAME_COMPONENT CTNNB1 -CDX1 IN_SAME_COMPONENT LEF1 -CDX1 METABOLIC_CATALYSIS CDX1 -CDX1 REACTS_WITH CDX1 -CDX1 REACTS_WITH CTNNB1 -CDX1 REACTS_WITH LEF1 -CEBPA CO_CONTROL AR -CEBPA CO_CONTROL CARM1 -CEBPA CO_CONTROL NCOA2 -CEBPA CO_CONTROL TFDP1 -CEBPA IN_SAME_COMPONENT CDK2 -CEBPA IN_SAME_COMPONENT E2F4 -CEBPA IN_SAME_COMPONENT RB1 -CEBPA IN_SAME_COMPONENT SMARCA2 -CEBPA METABOLIC_CATALYSIS KLK3 -CEBPA METABOLIC_CATALYSIS LYZ -CEBPA METABOLIC_CATALYSIS MYC -CEBPA REACTS_WITH CDK2 -CEBPA REACTS_WITH CEBPA -CEBPA REACTS_WITH E2F4 -CEBPA REACTS_WITH RB1 -CEBPA REACTS_WITH SMARCA2 -CEBPB CO_CONTROL BCL6 -CEBPB CO_CONTROL FOS -CEBPB CO_CONTROL FOXA1 -CEBPB CO_CONTROL HMGA1 -CEBPB CO_CONTROL JUN -CEBPB CO_CONTROL RBL1 -CEBPB CO_CONTROL SMAD4 -CEBPB CO_CONTROL SPI1 -CEBPB CO_CONTROL STAT3 -CEBPB CO_CONTROL STAT6 -CEBPB CO_CONTROL TFDP1 -CEBPB IN_SAME_COMPONENT PTGES2 -CEBPB IN_SAME_COMPONENT SMAD4 -CEBPB METABOLIC_CATALYSIS ARG1 -CEBPB METABOLIC_CATALYSIS CDKN2B -CEBPB METABOLIC_CATALYSIS CEBPB -CEBPB METABOLIC_CATALYSIS DAPK1 -CEBPB METABOLIC_CATALYSIS HSP90B1 -CEBPB METABOLIC_CATALYSIS ID1 -CEBPB METABOLIC_CATALYSIS IGHE -CEBPB METABOLIC_CATALYSIS IGHG1 -CEBPB METABOLIC_CATALYSIS IRF9 -CEBPB METABOLIC_CATALYSIS LBP -CEBPB METABOLIC_CATALYSIS SERPINA1 -CEBPB REACTS_WITH CEBPB -CEBPB REACTS_WITH PTGES2 -CEBPB REACTS_WITH SMAD4 -CEBPZ CO_CONTROL TP53 -CENPA CO_CONTROL PEBP1 -CENPA STATE_CHANGE AURKB -CENPA STATE_CHANGE BIRC5 -CENPA STATE_CHANGE CDCA8 -CENPA STATE_CHANGE INCENP -CEP164 IN_SAME_COMPONENT ATR -CEP164 IN_SAME_COMPONENT ATRIP -CEP164 IN_SAME_COMPONENT CHEK1 -CEP164 IN_SAME_COMPONENT CLSPN -CEP164 IN_SAME_COMPONENT HUS1 -CEP164 IN_SAME_COMPONENT RAD1 -CEP164 IN_SAME_COMPONENT RAD17 -CEP164 IN_SAME_COMPONENT RAD9A -CEP164 IN_SAME_COMPONENT RFC2 -CEP164 IN_SAME_COMPONENT RFC3 -CEP164 IN_SAME_COMPONENT RFC4 -CEP164 IN_SAME_COMPONENT RFC5 -CEP164 IN_SAME_COMPONENT RPA1 -CEP164 IN_SAME_COMPONENT RPA2 -CEP164 IN_SAME_COMPONENT TIMELESS -CEP164 IN_SAME_COMPONENT TIPIN -CEP164 IN_SAME_COMPONENT TOPBP1 -CEP164 REACTS_WITH ATR -CEP164 REACTS_WITH ATRIP -CEP164 REACTS_WITH CEP164 -CEP164 REACTS_WITH CHEK1 -CEP164 REACTS_WITH CLSPN -CEP164 REACTS_WITH HUS1 -CEP164 REACTS_WITH RAD1 -CEP164 REACTS_WITH RAD17 -CEP164 REACTS_WITH RAD9A -CEP164 REACTS_WITH RFC2 -CEP164 REACTS_WITH RFC3 -CEP164 REACTS_WITH RFC4 -CEP164 REACTS_WITH RFC5 -CEP164 REACTS_WITH RPA1 -CEP164 REACTS_WITH RPA2 -CEP164 REACTS_WITH TIMELESS -CEP164 REACTS_WITH TIPIN -CEP164 REACTS_WITH TOPBP1 -CER1 REACTS_WITH BAMBI -CER1 REACTS_WITH BMPR2 -CER1 REACTS_WITH CER1 -CFL1 CO_CONTROL DIAPH1 -CFL1 STATE_CHANGE ACTA1 -CFLAR IN_SAME_COMPONENT CASP8 -CFLAR IN_SAME_COMPONENT FADD -CFLAR IN_SAME_COMPONENT FAS -CFLAR IN_SAME_COMPONENT FASLG -CFLAR REACTS_WITH CASP10 -CFLAR REACTS_WITH CASP8 -CFLAR REACTS_WITH CFLAR -CFLAR REACTS_WITH FADD -CFLAR REACTS_WITH FAS -CFLAR REACTS_WITH FASLG -CFLAR STATE_CHANGE CASP8 -CFLAR STATE_CHANGE FADD -CFLAR STATE_CHANGE FAS -CFLAR STATE_CHANGE FASLG -CFLAR STATE_CHANGE RIPK1 -CHD3 IN_SAME_COMPONENT CHD4 -CHD3 IN_SAME_COMPONENT GATA1 -CHD3 IN_SAME_COMPONENT GATAD2A -CHD3 IN_SAME_COMPONENT GATAD2B -CHD3 IN_SAME_COMPONENT HDAC1 -CHD3 IN_SAME_COMPONENT HDAC2 -CHD3 IN_SAME_COMPONENT MBD2 -CHD3 IN_SAME_COMPONENT MBD3 -CHD3 IN_SAME_COMPONENT MBD3L2 -CHD3 IN_SAME_COMPONENT MTA2 -CHD3 IN_SAME_COMPONENT RBBP4 -CHD3 IN_SAME_COMPONENT RBBP7 -CHD3 IN_SAME_COMPONENT ZFPM1 -CHD3 REACTS_WITH CHD3 -CHD3 REACTS_WITH CHD4 -CHD3 REACTS_WITH GATA1 -CHD3 REACTS_WITH GATAD2A -CHD3 REACTS_WITH GATAD2B -CHD3 REACTS_WITH HDAC1 -CHD3 REACTS_WITH HDAC2 -CHD3 REACTS_WITH MBD2 -CHD3 REACTS_WITH MBD3 -CHD3 REACTS_WITH MBD3L2 -CHD3 REACTS_WITH MTA2 -CHD3 REACTS_WITH PRMT5 -CHD3 REACTS_WITH RBBP4 -CHD3 REACTS_WITH RBBP7 -CHD3 REACTS_WITH WDR77 -CHD3 REACTS_WITH ZFPM1 -CHD4 IN_SAME_COMPONENT CHD3 -CHD4 IN_SAME_COMPONENT GATA1 -CHD4 IN_SAME_COMPONENT GATAD2A -CHD4 IN_SAME_COMPONENT GATAD2B -CHD4 IN_SAME_COMPONENT HDAC1 -CHD4 IN_SAME_COMPONENT HDAC2 -CHD4 IN_SAME_COMPONENT MBD2 -CHD4 IN_SAME_COMPONENT MBD3 -CHD4 IN_SAME_COMPONENT MBD3L2 -CHD4 IN_SAME_COMPONENT MTA2 -CHD4 IN_SAME_COMPONENT RBBP4 -CHD4 IN_SAME_COMPONENT RBBP7 -CHD4 IN_SAME_COMPONENT ZFPM1 -CHD4 REACTS_WITH CHD3 -CHD4 REACTS_WITH CHD4 -CHD4 REACTS_WITH GATA1 -CHD4 REACTS_WITH GATAD2A -CHD4 REACTS_WITH GATAD2B -CHD4 REACTS_WITH HDAC1 -CHD4 REACTS_WITH HDAC2 -CHD4 REACTS_WITH MBD2 -CHD4 REACTS_WITH MBD3 -CHD4 REACTS_WITH MBD3L2 -CHD4 REACTS_WITH MTA2 -CHD4 REACTS_WITH PRMT5 -CHD4 REACTS_WITH RBBP4 -CHD4 REACTS_WITH RBBP7 -CHD4 REACTS_WITH WDR77 -CHD4 REACTS_WITH ZFPM1 -CHD7 IN_SAME_COMPONENT NLK -CHD7 IN_SAME_COMPONENT PPARG -CHD7 IN_SAME_COMPONENT SETDB1 -CHD7 REACTS_WITH CHD7 -CHD7 REACTS_WITH NLK -CHD7 REACTS_WITH PPARG -CHD7 REACTS_WITH SETDB1 -CHD8 IN_SAME_COMPONENT CTNNB1 -CHD8 REACTS_WITH CHD8 -CHD8 REACTS_WITH CTNNB1 -CHEK1 IN_SAME_COMPONENT ATR -CHEK1 IN_SAME_COMPONENT ATRIP -CHEK1 IN_SAME_COMPONENT CEP164 -CHEK1 IN_SAME_COMPONENT CLSPN -CHEK1 IN_SAME_COMPONENT HUS1 -CHEK1 IN_SAME_COMPONENT RAD1 -CHEK1 IN_SAME_COMPONENT RAD17 -CHEK1 IN_SAME_COMPONENT RAD9A -CHEK1 IN_SAME_COMPONENT RFC2 -CHEK1 IN_SAME_COMPONENT RFC3 -CHEK1 IN_SAME_COMPONENT RFC4 -CHEK1 IN_SAME_COMPONENT RFC5 -CHEK1 IN_SAME_COMPONENT RPA1 -CHEK1 IN_SAME_COMPONENT RPA2 -CHEK1 IN_SAME_COMPONENT TIMELESS -CHEK1 IN_SAME_COMPONENT TIPIN -CHEK1 IN_SAME_COMPONENT TOPBP1 -CHEK1 REACTS_WITH ATR -CHEK1 REACTS_WITH ATRIP -CHEK1 REACTS_WITH CEP164 -CHEK1 REACTS_WITH CHEK1 -CHEK1 REACTS_WITH CLSPN -CHEK1 REACTS_WITH HUS1 -CHEK1 REACTS_WITH RAD1 -CHEK1 REACTS_WITH RAD17 -CHEK1 REACTS_WITH RAD9A -CHEK1 REACTS_WITH RFC2 -CHEK1 REACTS_WITH RFC3 -CHEK1 REACTS_WITH RFC4 -CHEK1 REACTS_WITH RFC5 -CHEK1 REACTS_WITH RPA1 -CHEK1 REACTS_WITH RPA2 -CHEK1 REACTS_WITH TIMELESS -CHEK1 REACTS_WITH TIPIN -CHEK1 REACTS_WITH TOPBP1 -CHEK1 STATE_CHANGE BRCA2 -CHEK1 STATE_CHANGE CDC25A -CHEK1 STATE_CHANGE CDC25C -CHEK1 STATE_CHANGE RAD51 -CHEK2 STATE_CHANGE CDC25A -CHEK2 STATE_CHANGE CDC25C -CHN1 STATE_CHANGE RAC1 -CHN2 STATE_CHANGE RAC1 -CHP REACTS_WITH CALM1 -CHP REACTS_WITH CHP -CHRDL1 REACTS_WITH BAMBI -CHRDL1 REACTS_WITH BMPR2 -CHRDL1 REACTS_WITH CHRDL1 -CHRD REACTS_WITH BAMBI -CHRD REACTS_WITH BMPR2 -CHRD REACTS_WITH CHRD -CHRNA1 REACTS_WITH CHRNA1 -CHUK CO_CONTROL CHUK -CHUK CO_CONTROL ERC1 -CHUK CO_CONTROL IKBKB -CHUK CO_CONTROL IKBKG -CHUK CO_CONTROL MAP3K14 -CHUK CO_CONTROL PRKCA -CHUK IN_SAME_COMPONENT ERC1 -CHUK IN_SAME_COMPONENT IKBKB -CHUK IN_SAME_COMPONENT IKBKG -CHUK IN_SAME_COMPONENT PRKCA -CHUK REACTS_WITH CHUK -CHUK REACTS_WITH ERC1 -CHUK REACTS_WITH IKBKB -CHUK REACTS_WITH IKBKG -CHUK REACTS_WITH PRKCA -CHUK REACTS_WITH TNFAIP3 -CHUK STATE_CHANGE FOXO3 -CHUK STATE_CHANGE NFKB1 -CHUK STATE_CHANGE NFKB2 -CHUK STATE_CHANGE NFKBIA -CHUK STATE_CHANGE RELA -CHUK STATE_CHANGE RELB -CISH IN_SAME_COMPONENT IL2RB -CISH IN_SAME_COMPONENT JAK1 -CISH IN_SAME_COMPONENT LCK -CISH STATE_CHANGE IL2 -CISH STATE_CHANGE IL2RA -CISH STATE_CHANGE IL2RB -CISH STATE_CHANGE IL2RG -CISH STATE_CHANGE JAK1 -CISH STATE_CHANGE JAK3 -CISH STATE_CHANGE LCK -CITED1 CO_CONTROL CITED1 -CITED1 CO_CONTROL CTBP1 -CITED1 CO_CONTROL HDAC1 -CITED1 CO_CONTROL HDAC2 -CITED1 CO_CONTROL HSPA8 -CITED1 CO_CONTROL NCOR1 -CITED1 CO_CONTROL RBBP4 -CITED1 CO_CONTROL RBBP7 -CITED1 CO_CONTROL SAP18 -CITED1 CO_CONTROL SAP30 -CITED1 CO_CONTROL SIN3A -CITED1 CO_CONTROL SIN3B -CITED1 CO_CONTROL SKI -CITED1 CO_CONTROL SNIP1 -CITED1 CO_CONTROL TGIF1 -CITED1 IN_SAME_COMPONENT HSPA8 -CITED1 STATE_CHANGE SMAD2 -CITED1 STATE_CHANGE SMAD4 -CITED2 REACTS_WITH ARNT -CITED2 REACTS_WITH CITED2 -CITED2 REACTS_WITH HDAC7 -CITED2 REACTS_WITH HIF1A -CKAP5 IN_SAME_COMPONENT AURKA -CKAP5 IN_SAME_COMPONENT TACC1 -CKAP5 IN_SAME_COMPONENT TDRD7 -CKAP5 REACTS_WITH AURKA -CKAP5 REACTS_WITH CKAP5 -CKAP5 REACTS_WITH TACC1 -CKAP5 REACTS_WITH TDRD7 -CLDN1 IN_SAME_COMPONENT F11R -CLDN1 REACTS_WITH CLDN1 -CLDN1 REACTS_WITH F11R -CLIP1 IN_SAME_COMPONENT PAFAH1B1 -CLIP1 REACTS_WITH CLIP1 -CLIP1 REACTS_WITH PAFAH1B1 -CLOCK IN_SAME_COMPONENT ARNTL -CLOCK IN_SAME_COMPONENT NPAS2 -CLOCK METABOLIC_CATALYSIS NR1D1 -CLOCK METABOLIC_CATALYSIS TIMELESS -CLOCK REACTS_WITH ARNTL -CLOCK REACTS_WITH CLOCK -CLOCK REACTS_WITH NPAS2 -CLSPN IN_SAME_COMPONENT ATR -CLSPN IN_SAME_COMPONENT ATRIP -CLSPN IN_SAME_COMPONENT CEP164 -CLSPN IN_SAME_COMPONENT CHEK1 -CLSPN IN_SAME_COMPONENT HUS1 -CLSPN IN_SAME_COMPONENT RAD1 -CLSPN IN_SAME_COMPONENT RAD17 -CLSPN IN_SAME_COMPONENT RAD9A -CLSPN IN_SAME_COMPONENT RFC2 -CLSPN IN_SAME_COMPONENT RFC3 -CLSPN IN_SAME_COMPONENT RFC4 -CLSPN IN_SAME_COMPONENT RFC5 -CLSPN IN_SAME_COMPONENT RPA1 -CLSPN IN_SAME_COMPONENT RPA2 -CLSPN IN_SAME_COMPONENT TIMELESS -CLSPN IN_SAME_COMPONENT TIPIN -CLSPN IN_SAME_COMPONENT TOPBP1 -CLSPN REACTS_WITH ATR -CLSPN REACTS_WITH ATRIP -CLSPN REACTS_WITH CEP164 -CLSPN REACTS_WITH CHEK1 -CLSPN REACTS_WITH CLSPN -CLSPN REACTS_WITH HUS1 -CLSPN REACTS_WITH RAD1 -CLSPN REACTS_WITH RAD17 -CLSPN REACTS_WITH RAD9A -CLSPN REACTS_WITH RFC2 -CLSPN REACTS_WITH RFC3 -CLSPN REACTS_WITH RFC4 -CLSPN REACTS_WITH RFC5 -CLSPN REACTS_WITH RPA1 -CLSPN REACTS_WITH RPA2 -CLSPN REACTS_WITH TIMELESS -CLSPN REACTS_WITH TIPIN -CLSPN REACTS_WITH TOPBP1 -CLTA IN_SAME_COMPONENT ARFGAP1 -CLTA IN_SAME_COMPONENT CD4 -CLTA IN_SAME_COMPONENT CLTB -CLTA IN_SAME_COMPONENT COPA -CLTA REACTS_WITH ARFGAP1 -CLTA REACTS_WITH CD4 -CLTA REACTS_WITH CLTA -CLTA REACTS_WITH CLTB -CLTA REACTS_WITH COPA -CLTA REACTS_WITH GBF1 -CLTA REACTS_WITH GOSR2 -CLTA REACTS_WITH USO1 -CLTB IN_SAME_COMPONENT ARFGAP1 -CLTB IN_SAME_COMPONENT CD4 -CLTB IN_SAME_COMPONENT CLTA -CLTB IN_SAME_COMPONENT COPA -CLTB REACTS_WITH ARFGAP1 -CLTB REACTS_WITH CD4 -CLTB REACTS_WITH CLTA -CLTB REACTS_WITH CLTB -CLTB REACTS_WITH COPA -CLTB REACTS_WITH GBF1 -CLTB REACTS_WITH GOSR2 -CLTB REACTS_WITH USO1 -CLTC IN_SAME_COMPONENT ACAP1 -CLTC IN_SAME_COMPONENT SLC2A4 -CLTC REACTS_WITH ACAP1 -CLTC REACTS_WITH CLTC -CLTC REACTS_WITH SLC2A4 -CLTC STATE_CHANGE CASP8 -CLTC STATE_CHANGE FADD -CLTC STATE_CHANGE FAS -CLTC STATE_CHANGE FASLG -CMTM2 CO_CONTROL AR -CMTM2 METABOLIC_CATALYSIS KLK3 -CNGA1 IN_SAME_COMPONENT CNGB1 -CNGA1 REACTS_WITH CNGA1 -CNGA1 REACTS_WITH CNGB1 -CNGA3 IN_SAME_COMPONENT CNGB3 -CNGA3 REACTS_WITH CNGA3 -CNGA3 REACTS_WITH CNGB3 -CNGB1 IN_SAME_COMPONENT CNGA1 -CNGB1 REACTS_WITH CNGA1 -CNGB1 REACTS_WITH CNGB1 -CNGB3 IN_SAME_COMPONENT CNGA3 -CNGB3 REACTS_WITH CNGA3 -CNGB3 REACTS_WITH CNGB3 -CNTN1 IN_SAME_COMPONENT NOTCH1 -CNTN1 IN_SAME_COMPONENT NOTCH2 -CNTN1 REACTS_WITH CNTN1 -CNTN1 REACTS_WITH NOTCH1 -CNTN1 REACTS_WITH NOTCH2 -CNTN6 IN_SAME_COMPONENT NOTCH1 -CNTN6 REACTS_WITH CNTN6 -CNTN6 REACTS_WITH NOTCH1 -COL11A1 IN_SAME_COMPONENT COL11A2 -COL11A1 IN_SAME_COMPONENT COL2A1 -COL11A1 IN_SAME_COMPONENT ITGA2 -COL11A1 IN_SAME_COMPONENT ITGB1 -COL11A1 REACTS_WITH COL11A1 -COL11A1 REACTS_WITH COL11A2 -COL11A1 REACTS_WITH COL2A1 -COL11A1 REACTS_WITH ITGA2 -COL11A1 REACTS_WITH ITGB1 -COL11A2 IN_SAME_COMPONENT COL11A1 -COL11A2 IN_SAME_COMPONENT COL2A1 -COL11A2 IN_SAME_COMPONENT ITGA2 -COL11A2 IN_SAME_COMPONENT ITGB1 -COL11A2 REACTS_WITH COL11A1 -COL11A2 REACTS_WITH COL11A2 -COL11A2 REACTS_WITH COL2A1 -COL11A2 REACTS_WITH ITGA2 -COL11A2 REACTS_WITH ITGB1 -COL17A1 REACTS_WITH ITGA6 -COL17A1 REACTS_WITH ITGB4 -COL18A1 IN_SAME_COMPONENT ITGA5 -COL18A1 IN_SAME_COMPONENT ITGB1 -COL18A1 REACTS_WITH COL18A1 -COL18A1 REACTS_WITH ITGA5 -COL18A1 REACTS_WITH ITGB1 -COL1A1 IN_SAME_COMPONENT COL1A2 -COL1A1 IN_SAME_COMPONENT FIGF -COL1A1 IN_SAME_COMPONENT FLT4 -COL1A1 IN_SAME_COMPONENT ITGA1 -COL1A1 IN_SAME_COMPONENT ITGA11 -COL1A1 IN_SAME_COMPONENT ITGA2 -COL1A1 IN_SAME_COMPONENT ITGAV -COL1A1 IN_SAME_COMPONENT ITGB1 -COL1A1 IN_SAME_COMPONENT ITGB3 -COL1A1 REACTS_WITH COL1A1 -COL1A1 REACTS_WITH COL1A2 -COL1A1 REACTS_WITH FIGF -COL1A1 REACTS_WITH FLT4 -COL1A1 REACTS_WITH ITGA1 -COL1A1 REACTS_WITH ITGA11 -COL1A1 REACTS_WITH ITGA2 -COL1A1 REACTS_WITH ITGAV -COL1A1 REACTS_WITH ITGB1 -COL1A1 REACTS_WITH ITGB3 -COL1A2 IN_SAME_COMPONENT COL1A1 -COL1A2 IN_SAME_COMPONENT FIGF -COL1A2 IN_SAME_COMPONENT FLT4 -COL1A2 IN_SAME_COMPONENT ITGA1 -COL1A2 IN_SAME_COMPONENT ITGA11 -COL1A2 IN_SAME_COMPONENT ITGA2 -COL1A2 IN_SAME_COMPONENT ITGAV -COL1A2 IN_SAME_COMPONENT ITGB1 -COL1A2 IN_SAME_COMPONENT ITGB3 -COL1A2 REACTS_WITH COL1A1 -COL1A2 REACTS_WITH COL1A2 -COL1A2 REACTS_WITH FIGF -COL1A2 REACTS_WITH FLT4 -COL1A2 REACTS_WITH ITGA1 -COL1A2 REACTS_WITH ITGA11 -COL1A2 REACTS_WITH ITGA2 -COL1A2 REACTS_WITH ITGAV -COL1A2 REACTS_WITH ITGB1 -COL1A2 REACTS_WITH ITGB3 -COL2A1 IN_SAME_COMPONENT COL11A1 -COL2A1 IN_SAME_COMPONENT COL11A2 -COL2A1 IN_SAME_COMPONENT ITGA1 -COL2A1 IN_SAME_COMPONENT ITGA10 -COL2A1 IN_SAME_COMPONENT ITGA2 -COL2A1 IN_SAME_COMPONENT ITGB1 -COL2A1 REACTS_WITH COL11A1 -COL2A1 REACTS_WITH COL11A2 -COL2A1 REACTS_WITH COL2A1 -COL2A1 REACTS_WITH ITGA1 -COL2A1 REACTS_WITH ITGA10 -COL2A1 REACTS_WITH ITGA2 -COL2A1 REACTS_WITH ITGB1 -COL3A1 IN_SAME_COMPONENT ITGA2 -COL3A1 IN_SAME_COMPONENT ITGB1 -COL3A1 REACTS_WITH COL3A1 -COL3A1 REACTS_WITH ITGA2 -COL3A1 REACTS_WITH ITGB1 -COL4A3 IN_SAME_COMPONENT ITGAV -COL4A3 IN_SAME_COMPONENT ITGB3 -COL4A3 REACTS_WITH COL4A3 -COL4A3 REACTS_WITH ITGAV -COL4A3 REACTS_WITH ITGB3 -COL5A1 IN_SAME_COMPONENT COL5A2 -COL5A1 IN_SAME_COMPONENT ITGA1 -COL5A1 IN_SAME_COMPONENT ITGB1 -COL5A1 REACTS_WITH COL5A1 -COL5A1 REACTS_WITH COL5A2 -COL5A1 REACTS_WITH ITGA1 -COL5A1 REACTS_WITH ITGB1 -COL5A2 IN_SAME_COMPONENT COL5A1 -COL5A2 IN_SAME_COMPONENT ITGA1 -COL5A2 IN_SAME_COMPONENT ITGB1 -COL5A2 REACTS_WITH COL5A1 -COL5A2 REACTS_WITH COL5A2 -COL5A2 REACTS_WITH ITGA1 -COL5A2 REACTS_WITH ITGB1 -COL6A1 IN_SAME_COMPONENT COL6A2 -COL6A1 IN_SAME_COMPONENT ITGA1 -COL6A1 IN_SAME_COMPONENT ITGA2 -COL6A1 IN_SAME_COMPONENT ITGB1 -COL6A1 REACTS_WITH COL6A1 -COL6A1 REACTS_WITH COL6A2 -COL6A1 REACTS_WITH ITGA1 -COL6A1 REACTS_WITH ITGA2 -COL6A1 REACTS_WITH ITGB1 -COL6A2 IN_SAME_COMPONENT COL6A1 -COL6A2 IN_SAME_COMPONENT ITGA1 -COL6A2 IN_SAME_COMPONENT ITGA2 -COL6A2 IN_SAME_COMPONENT ITGB1 -COL6A2 REACTS_WITH COL6A1 -COL6A2 REACTS_WITH COL6A2 -COL6A2 REACTS_WITH ITGA1 -COL6A2 REACTS_WITH ITGA2 -COL6A2 REACTS_WITH ITGB1 -COL7A1 IN_SAME_COMPONENT ITGA2 -COL7A1 IN_SAME_COMPONENT ITGB1 -COL7A1 REACTS_WITH COL7A1 -COL7A1 REACTS_WITH ITGA2 -COL7A1 REACTS_WITH ITGB1 -COPA IN_SAME_COMPONENT ARFGAP1 -COPA IN_SAME_COMPONENT CD4 -COPA IN_SAME_COMPONENT CLTA -COPA IN_SAME_COMPONENT CLTB -COPA REACTS_WITH ARFGAP1 -COPA REACTS_WITH CD4 -COPA REACTS_WITH CLTA -COPA REACTS_WITH CLTB -COPA REACTS_WITH COPA -COPA REACTS_WITH GBF1 -COPA REACTS_WITH GOSR2 -COPA REACTS_WITH USO1 -COPS5 IN_SAME_COMPONENT HIF1A -COPS5 IN_SAME_COMPONENT JUN -COPS5 METABOLIC_CATALYSIS EPO -COPS5 METABOLIC_CATALYSIS MMP1 -COPS5 REACTS_WITH COPS5 -COPS5 REACTS_WITH HIF1A -COPS5 REACTS_WITH JUN -COPS5 REACTS_WITH TP53 -CPEB1 IN_SAME_COMPONENT AURKA -CPEB1 REACTS_WITH AURKA -CPEB1 REACTS_WITH CPEB1 -CRADD CO_CONTROL CTSD -CRADD CO_CONTROL NSMAF -CRADD CO_CONTROL TNF -CRADD CO_CONTROL TNFRSF1A -CRADD IN_SAME_COMPONENT BIRC3 -CRADD IN_SAME_COMPONENT CASP2 -CRADD IN_SAME_COMPONENT FADD -CRADD IN_SAME_COMPONENT LRDD -CRADD IN_SAME_COMPONENT MADD -CRADD IN_SAME_COMPONENT MAP3K5 -CRADD IN_SAME_COMPONENT RIPK1 -CRADD IN_SAME_COMPONENT TNF -CRADD IN_SAME_COMPONENT TNFRSF1A -CRADD IN_SAME_COMPONENT TRADD -CRADD IN_SAME_COMPONENT TRAF1 -CRADD IN_SAME_COMPONENT TRAF2 -CRADD REACTS_WITH BAG4 -CRADD REACTS_WITH BIRC3 -CRADD REACTS_WITH CASP2 -CRADD REACTS_WITH CRADD -CRADD REACTS_WITH FADD -CRADD REACTS_WITH MADD -CRADD REACTS_WITH MAP3K5 -CRADD REACTS_WITH RIPK1 -CRADD REACTS_WITH TNF -CRADD REACTS_WITH TNFRSF1A -CRADD REACTS_WITH TRADD -CRADD REACTS_WITH TRAF1 -CRADD REACTS_WITH TRAF2 -CRADD STATE_CHANGE BID -CRADD STATE_CHANGE CASP2 -CRADD STATE_CHANGE CASP8 -CRADD STATE_CHANGE FADD -CRADD STATE_CHANGE MAP2K7 -CRADD STATE_CHANGE MAP3K14 -CRADD STATE_CHANGE MAP4K4 -CRADD STATE_CHANGE SMPD1 -CRADD STATE_CHANGE SMPD3 -CREB1 CO_CONTROL ARNT -CREB1 CO_CONTROL CBFB -CREB1 CO_CONTROL ELK1 -CREB1 CO_CONTROL FOXA3 -CREB1 CO_CONTROL HIF1A -CREB1 CO_CONTROL HNF1A -CREB1 CO_CONTROL MAX -CREB1 CO_CONTROL MEF2C -CREB1 CO_CONTROL MYC -CREB1 CO_CONTROL SMAD4 -CREB1 CO_CONTROL SP1 -CREB1 CO_CONTROL SRF -CREB1 CO_CONTROL TBP -CREB1 CO_CONTROL ZBTB17 -CREB1 IN_SAME_COMPONENT ATF2 -CREB1 IN_SAME_COMPONENT JUN -CREB1 METABOLIC_CATALYSIS BCL2 -CREB1 METABOLIC_CATALYSIS CCND1 -CREB1 METABOLIC_CATALYSIS CEBPD -CREB1 METABOLIC_CATALYSIS CGA -CREB1 METABOLIC_CATALYSIS DUSP1 -CREB1 METABOLIC_CATALYSIS FOS -CREB1 METABOLIC_CATALYSIS G6PC -CREB1 METABOLIC_CATALYSIS IGHA1 -CREB1 METABOLIC_CATALYSIS LDHA -CREB1 METABOLIC_CATALYSIS NTF3 -CREB1 METABOLIC_CATALYSIS PCK1 -CREB1 REACTS_WITH ATF2 -CREB1 REACTS_WITH CREB1 -CREB1 REACTS_WITH JUN -CREBBP CO_CONTROL HES1 -CREBBP CO_CONTROL PARP1 -CREBBP CO_CONTROL TLE1 -CREBBP IN_SAME_COMPONENT AES -CREBBP IN_SAME_COMPONENT CDH2 -CREBBP IN_SAME_COMPONENT CTBP1 -CREBBP IN_SAME_COMPONENT CTNNB1 -CREBBP IN_SAME_COMPONENT HES1 -CREBBP IN_SAME_COMPONENT HNF1A -CREBBP IN_SAME_COMPONENT JUN -CREBBP IN_SAME_COMPONENT MYB -CREBBP IN_SAME_COMPONENT PARP1 -CREBBP IN_SAME_COMPONENT STAT4 -CREBBP IN_SAME_COMPONENT TLE1 -CREBBP METABOLIC_CATALYSIS ASCL1 -CREBBP METABOLIC_CATALYSIS BCL2 -CREBBP METABOLIC_CATALYSIS CCND1 -CREBBP METABOLIC_CATALYSIS EPOR -CREBBP METABOLIC_CATALYSIS GLI1 -CREBBP METABOLIC_CATALYSIS IL2RA -CREBBP METABOLIC_CATALYSIS KIT -CREBBP METABOLIC_CATALYSIS LECT2 -CREBBP METABOLIC_CATALYSIS MYC -CREBBP METABOLIC_CATALYSIS PPARD -CREBBP REACTS_WITH AES -CREBBP REACTS_WITH CDH2 -CREBBP REACTS_WITH CREBBP -CREBBP REACTS_WITH CTBP1 -CREBBP REACTS_WITH CTNNB1 -CREBBP REACTS_WITH HES1 -CREBBP REACTS_WITH HNF1A -CREBBP REACTS_WITH JUN -CREBBP REACTS_WITH MYB -CREBBP REACTS_WITH PARP1 -CREBBP REACTS_WITH STAT4 -CREBBP REACTS_WITH TLE1 -CREBBP STATE_CHANGE STAT1 -CREM CO_CONTROL FOS -CREM CO_CONTROL JUN -CREM METABOLIC_CATALYSIS IL2 -CREM REACTS_WITH CREM -CREM REACTS_WITH FOS -CREM REACTS_WITH JUN -CRK IN_SAME_COMPONENT BCAR1 -CRK IN_SAME_COMPONENT DOCK1 -CRK IN_SAME_COMPONENT DOK2 -CRK IN_SAME_COMPONENT EFNA5 -CRK IN_SAME_COMPONENT ELMO1 -CRK IN_SAME_COMPONENT EPHA3 -CRK IN_SAME_COMPONENT FLT4 -CRK IN_SAME_COMPONENT GAB1 -CRK IN_SAME_COMPONENT HGF -CRK IN_SAME_COMPONENT IRS1 -CRK IN_SAME_COMPONENT IRS2 -CRK IN_SAME_COMPONENT MET -CRK IN_SAME_COMPONENT PDGFRA -CRK IN_SAME_COMPONENT PTK2B -CRK IN_SAME_COMPONENT PXN -CRK IN_SAME_COMPONENT RAPGEF1 -CRK IN_SAME_COMPONENT SRC -CRK IN_SAME_COMPONENT TRIP6 -CRKL IN_SAME_COMPONENT CBL -CRKL IN_SAME_COMPONENT DAB1 -CRKL IN_SAME_COMPONENT GAB1 -CRKL IN_SAME_COMPONENT HGF -CRKL IN_SAME_COMPONENT MET -CRKL IN_SAME_COMPONENT PDGFRA -CRKL IN_SAME_COMPONENT RAPGEF1 -CRKL INTERACTS_WITH KIT -CRKL INTERACTS_WITH KITLG -CRKL REACTS_WITH CBL -CRKL REACTS_WITH CRKL -CRKL REACTS_WITH DAB1 -CRKL REACTS_WITH GAB1 -CRKL REACTS_WITH HGF -CRKL REACTS_WITH MET -CRKL REACTS_WITH PDGFRA -CRKL REACTS_WITH RAPGEF1 -CRKL STATE_CHANGE MAP4K1 -CRKL STATE_CHANGE RAP1A -CRKL STATE_CHANGE RAPGEF1 -CRK REACTS_WITH BCAR1 -CRK REACTS_WITH CRK -CRK REACTS_WITH DOCK1 -CRK REACTS_WITH DOK2 -CRK REACTS_WITH EFNA5 -CRK REACTS_WITH ELMO1 -CRK REACTS_WITH EPHA3 -CRK REACTS_WITH FLT4 -CRK REACTS_WITH GAB1 -CRK REACTS_WITH HGF -CRK REACTS_WITH IRS1 -CRK REACTS_WITH IRS2 -CRK REACTS_WITH MET -CRK REACTS_WITH PDGFRA -CRK REACTS_WITH PTK2 -CRK REACTS_WITH PTK2B -CRK REACTS_WITH PXN -CRK REACTS_WITH RAPGEF1 -CRK REACTS_WITH SRC -CRK REACTS_WITH TRIP6 -CRK STATE_CHANGE MAP2K4 -CRK STATE_CHANGE MAPK8 -CRK STATE_CHANGE RAC1 -CRK STATE_CHANGE RAPGEF1 -CRK STATE_CHANGE RHOA -CRTC1 IN_SAME_COMPONENT FOS -CRTC1 IN_SAME_COMPONENT JUN -CRTC1 METABOLIC_CATALYSIS MMP1 -CRTC1 REACTS_WITH CRTC1 -CRTC1 REACTS_WITH FOS -CRTC1 REACTS_WITH JUN -CRY2 IN_SAME_COMPONENT TIMELESS -CRY2 REACTS_WITH CRY2 -CRY2 REACTS_WITH TIMELESS -CSE1L CO_CONTROL TP53 -CSE1L METABOLIC_CATALYSIS RRM2B -CSE1L METABOLIC_CATALYSIS TP53AIP1 -CSE1L METABOLIC_CATALYSIS TP53I3 -CSF1 IN_SAME_COMPONENT CSF1R -CSF1 REACTS_WITH CSF1 -CSF1 REACTS_WITH CSF1R -CSF1R IN_SAME_COMPONENT BCAR1 -CSF1R IN_SAME_COMPONENT CBL -CSF1R IN_SAME_COMPONENT CSF1 -CSF1R IN_SAME_COMPONENT ITGAV -CSF1R IN_SAME_COMPONENT ITGB3 -CSF1R REACTS_WITH BCAR1 -CSF1R REACTS_WITH CBL -CSF1R REACTS_WITH CSF1 -CSF1R REACTS_WITH CSF1R -CSF1R REACTS_WITH ITGAV -CSF1R REACTS_WITH ITGB3 -CSF1R STATE_CHANGE VAV3 -CSF1 STATE_CHANGE BCAR1 -CSF1 STATE_CHANGE CBL -CSF1 STATE_CHANGE CSF1R -CSF1 STATE_CHANGE ITGAV -CSF1 STATE_CHANGE ITGB3 -CSF2 IN_SAME_COMPONENT CSF2RA -CSF2 IN_SAME_COMPONENT CSF2RB -CSF2 IN_SAME_COMPONENT GAB2 -CSF2 IN_SAME_COMPONENT IKBKB -CSF2 IN_SAME_COMPONENT INPP5D -CSF2 IN_SAME_COMPONENT ITGA9 -CSF2 IN_SAME_COMPONENT ITGB1 -CSF2 IN_SAME_COMPONENT JAK2 -CSF2 IN_SAME_COMPONENT LYN -CSF2 IN_SAME_COMPONENT PIK3CA -CSF2 IN_SAME_COMPONENT PIK3R1 -CSF2 IN_SAME_COMPONENT PTPN11 -CSF2 IN_SAME_COMPONENT SDC2 -CSF2 IN_SAME_COMPONENT SHC1 -CSF2 IN_SAME_COMPONENT SOS1 -CSF2 IN_SAME_COMPONENT SYK -CSF2 IN_SAME_COMPONENT YWHAZ -CSF2RA IN_SAME_COMPONENT CSF2 -CSF2RA IN_SAME_COMPONENT CSF2RB -CSF2RA IN_SAME_COMPONENT GAB2 -CSF2RA IN_SAME_COMPONENT IKBKB -CSF2RA IN_SAME_COMPONENT INPP5D -CSF2RA IN_SAME_COMPONENT ITGA9 -CSF2RA IN_SAME_COMPONENT ITGB1 -CSF2RA IN_SAME_COMPONENT JAK2 -CSF2RA IN_SAME_COMPONENT LYN -CSF2RA IN_SAME_COMPONENT PIK3CA -CSF2RA IN_SAME_COMPONENT PIK3R1 -CSF2RA IN_SAME_COMPONENT PTPN11 -CSF2RA IN_SAME_COMPONENT SHC1 -CSF2RA IN_SAME_COMPONENT SOS1 -CSF2RA IN_SAME_COMPONENT SYK -CSF2RA IN_SAME_COMPONENT YWHAZ -CSF2RA REACTS_WITH CSF2 -CSF2RA REACTS_WITH CSF2RA -CSF2RA REACTS_WITH CSF2RB -CSF2RA REACTS_WITH GAB2 -CSF2RA REACTS_WITH IKBKB -CSF2RA REACTS_WITH INPP5D -CSF2RA REACTS_WITH ITGA9 -CSF2RA REACTS_WITH ITGB1 -CSF2RA REACTS_WITH JAK2 -CSF2RA REACTS_WITH LYN -CSF2RA REACTS_WITH PIK3CA -CSF2RA REACTS_WITH PIK3R1 -CSF2RA REACTS_WITH PTPN11 -CSF2RA REACTS_WITH SHC1 -CSF2RA REACTS_WITH SOS1 -CSF2RA REACTS_WITH SYK -CSF2RA REACTS_WITH YWHAZ -CSF2RB IN_SAME_COMPONENT CSF2 -CSF2RB IN_SAME_COMPONENT CSF2RA -CSF2RB IN_SAME_COMPONENT GAB2 -CSF2RB IN_SAME_COMPONENT IKBKB -CSF2RB IN_SAME_COMPONENT IL3 -CSF2RB IN_SAME_COMPONENT IL3RA -CSF2RB IN_SAME_COMPONENT IL5 -CSF2RB IN_SAME_COMPONENT IL5RA -CSF2RB IN_SAME_COMPONENT INPP5D -CSF2RB IN_SAME_COMPONENT JAK2 -CSF2RB IN_SAME_COMPONENT LYN -CSF2RB IN_SAME_COMPONENT PIK3CA -CSF2RB IN_SAME_COMPONENT PIK3R1 -CSF2RB IN_SAME_COMPONENT PTPN11 -CSF2RB IN_SAME_COMPONENT SHC1 -CSF2RB IN_SAME_COMPONENT SOS1 -CSF2RB IN_SAME_COMPONENT SYK -CSF2RB IN_SAME_COMPONENT YWHAZ -CSF2RB REACTS_WITH CSF2 -CSF2RB REACTS_WITH CSF2RA -CSF2RB REACTS_WITH CSF2RB -CSF2RB REACTS_WITH GAB2 -CSF2RB REACTS_WITH IKBKB -CSF2RB REACTS_WITH IL3 -CSF2RB REACTS_WITH IL3RA -CSF2RB REACTS_WITH IL5 -CSF2RB REACTS_WITH IL5RA -CSF2RB REACTS_WITH INPP5D -CSF2RB REACTS_WITH JAK2 -CSF2RB REACTS_WITH LYN -CSF2RB REACTS_WITH PIK3CA -CSF2RB REACTS_WITH PIK3R1 -CSF2RB REACTS_WITH PTPN11 -CSF2RB REACTS_WITH SHC1 -CSF2RB REACTS_WITH SOS1 -CSF2RB REACTS_WITH SYK -CSF2RB REACTS_WITH YWHAZ -CSF2RB STATE_CHANGE PIK3CA -CSF2RB STATE_CHANGE PIK3R1 -CSF2 REACTS_WITH CSF2 -CSF2 REACTS_WITH CSF2RA -CSF2 REACTS_WITH CSF2RB -CSF2 REACTS_WITH GAB2 -CSF2 REACTS_WITH IKBKB -CSF2 REACTS_WITH INPP5D -CSF2 REACTS_WITH ITGA9 -CSF2 REACTS_WITH ITGB1 -CSF2 REACTS_WITH JAK2 -CSF2 REACTS_WITH LYN -CSF2 REACTS_WITH PIK3CA -CSF2 REACTS_WITH PIK3R1 -CSF2 REACTS_WITH PTPN11 -CSF2 REACTS_WITH SDC2 -CSF2 REACTS_WITH SHC1 -CSF2 REACTS_WITH SOS1 -CSF2 REACTS_WITH SYK -CSF2 REACTS_WITH YWHAZ -CSK CO_CONTROL PTPRC -CSK IN_SAME_COMPONENT PAG1 -CSK IN_SAME_COMPONENT RASA1 -CSK REACTS_WITH CSK -CSK REACTS_WITH PAG1 -CSK REACTS_WITH RASA1 -CSK STATE_CHANGE CD79A -CSK STATE_CHANGE CD79B -CSK STATE_CHANGE FYN -CSK STATE_CHANGE LCK -CSK STATE_CHANGE LYN -CSK STATE_CHANGE SRC -CSNK1A1 CO_CONTROL GSK3B -CSNK1A1 CO_CONTROL MAPK14 -CSNK1A1 CO_CONTROL PRKACA -CSNK1A1 IN_SAME_COMPONENT NFATC2 -CSNK1A1 IN_SAME_COMPONENT NFATC3 -CSNK1A1 REACTS_WITH CSNK1A1 -CSNK1A1 REACTS_WITH NFATC2 -CSNK1A1 REACTS_WITH NFATC3 -CSNK1A1 STATE_CHANGE DVL1 -CSNK1A1 STATE_CHANGE NFATC2 -CSNK1E REACTS_WITH CSNK1E -CSNK1G1 STATE_CHANGE AXIN1 -CSNK1G1 STATE_CHANGE FZD5 -CSNK1G1 STATE_CHANGE LRP6 -CSNK1G1 STATE_CHANGE WNT3A -CSNK2A1 CO_CONTROL MAPK3 -CSNK2A1 CO_CONTROL MAPK8 -CSNK2A1 STATE_CHANGE DVL1 -CSNK2A1 STATE_CHANGE JUN -CSNK2A1 STATE_CHANGE MAP1B -CSNK2A1 STATE_CHANGE NFATC1 -CSNK2A1 STATE_CHANGE PAFAH1B1 -CSNK2A1 STATE_CHANGE SNCA -CSNK2A1 STATE_CHANGE SRF -CSNK2B IN_SAME_COMPONENT ACVRL1 -CSNK2B IN_SAME_COMPONENT BMPR2 -CSNK2B IN_SAME_COMPONENT FKBP1A -CSNK2B IN_SAME_COMPONENT GDF2 -CSNK2B IN_SAME_COMPONENT TGFB1 -CSNK2B IN_SAME_COMPONENT TGFBR1 -CSNK2B IN_SAME_COMPONENT TGFBR2 -CSNK2B REACTS_WITH ACVRL1 -CSNK2B REACTS_WITH BMPR2 -CSNK2B REACTS_WITH CSNK2B -CSNK2B REACTS_WITH FKBP1A -CSNK2B REACTS_WITH GDF2 -CSNK2B REACTS_WITH TGFB1 -CSNK2B REACTS_WITH TGFBR1 -CSNK2B REACTS_WITH TGFBR2 -CSPG4 IN_SAME_COMPONENT ITGA3 -CSPG4 IN_SAME_COMPONENT ITGA4 -CSPG4 IN_SAME_COMPONENT ITGB1 -CSPG4 REACTS_WITH CSPG4 -CSPG4 REACTS_WITH ITGA3 -CSPG4 REACTS_WITH ITGA4 -CSPG4 REACTS_WITH ITGB1 -CSTF1 IN_SAME_COMPONENT BARD1 -CSTF1 IN_SAME_COMPONENT BRCA1 -CSTF1 REACTS_WITH BARD1 -CSTF1 REACTS_WITH BRCA1 -CSTF1 REACTS_WITH CSTF1 -CTBP1 CO_CONTROL CITED1 -CTBP1 CO_CONTROL NOTCH1 -CTBP1 CO_CONTROL RBPJ -CTBP1 IN_SAME_COMPONENT AES -CTBP1 IN_SAME_COMPONENT APC -CTBP1 IN_SAME_COMPONENT BRCA1 -CTBP1 IN_SAME_COMPONENT CBX4 -CTBP1 IN_SAME_COMPONENT CREBBP -CTBP1 IN_SAME_COMPONENT CTNNB1 -CTBP1 IN_SAME_COMPONENT E2F4 -CTBP1 IN_SAME_COMPONENT HDAC1 -CTBP1 IN_SAME_COMPONENT HDAC2 -CTBP1 IN_SAME_COMPONENT HNF1A -CTBP1 IN_SAME_COMPONENT KDM1A -CTBP1 IN_SAME_COMPONENT RB1 -CTBP1 IN_SAME_COMPONENT RBBP4 -CTBP1 IN_SAME_COMPONENT RBBP7 -CTBP1 IN_SAME_COMPONENT RBBP8 -CTBP1 IN_SAME_COMPONENT RBPJ -CTBP1 IN_SAME_COMPONENT SAP18 -CTBP1 IN_SAME_COMPONENT SAP30 -CTBP1 IN_SAME_COMPONENT SIN3A -CTBP1 IN_SAME_COMPONENT SIN3B -CTBP1 IN_SAME_COMPONENT SPEN -CTBP1 IN_SAME_COMPONENT TFDP1 -CTBP1 IN_SAME_COMPONENT TGIF1 -CTBP1 IN_SAME_COMPONENT TLE1 -CTBP1 METABOLIC_CATALYSIS CCND1 -CTBP1 METABOLIC_CATALYSIS HEY1 -CTBP1 METABOLIC_CATALYSIS MYC -CTBP1 METABOLIC_CATALYSIS PPARD -CTBP1 REACTS_WITH AES -CTBP1 REACTS_WITH APC -CTBP1 REACTS_WITH ATM -CTBP1 REACTS_WITH BRCA1 -CTBP1 REACTS_WITH CBX4 -CTBP1 REACTS_WITH CREBBP -CTBP1 REACTS_WITH CTBP1 -CTBP1 REACTS_WITH CTNNB1 -CTBP1 REACTS_WITH E2F4 -CTBP1 REACTS_WITH H2AFX -CTBP1 REACTS_WITH HNF1A -CTBP1 REACTS_WITH KDM1A -CTBP1 REACTS_WITH MDC1 -CTBP1 REACTS_WITH MRE11A -CTBP1 REACTS_WITH NBN -CTBP1 REACTS_WITH NOTCH1 -CTBP1 REACTS_WITH RAD50 -CTBP1 REACTS_WITH RB1 -CTBP1 REACTS_WITH RBBP8 -CTBP1 REACTS_WITH RBPJ -CTBP1 REACTS_WITH RNF8 -CTBP1 REACTS_WITH SPEN -CTBP1 REACTS_WITH TFDP1 -CTBP1 REACTS_WITH TLE1 -CTBP1 REACTS_WITH TP53BP1 -CTBP1 STATE_CHANGE SMAD2 -CTBP1 STATE_CHANGE SMAD4 -CTDSP1 CO_CONTROL AR -CTDSP1 METABOLIC_CATALYSIS KLK3 -CTDSP2 CO_CONTROL AR -CTDSP2 METABOLIC_CATALYSIS KLK3 -CTGF IN_SAME_COMPONENT ITGAM -CTGF IN_SAME_COMPONENT ITGB2 -CTGF REACTS_WITH CTGF -CTGF REACTS_WITH ITGAM -CTGF REACTS_WITH ITGB2 -CTGF STATE_CHANGE TGFBR2 -CTGF STATE_CHANGE TGFBR3 -CTHRC1 IN_SAME_COMPONENT ROR2 -CTHRC1 REACTS_WITH CTHRC1 -CTHRC1 REACTS_WITH ROR2 -CTNNA1 CO_CONTROL PVRL2 -CTNNA1 IN_SAME_COMPONENT AXIN1 -CTNNA1 IN_SAME_COMPONENT CDH1 -CTNNA1 IN_SAME_COMPONENT CDH2 -CTNNA1 IN_SAME_COMPONENT CDH5 -CTNNA1 IN_SAME_COMPONENT CTNNB1 -CTNNA1 IN_SAME_COMPONENT CTNND1 -CTNNA1 IN_SAME_COMPONENT F2RL2 -CTNNA1 IN_SAME_COMPONENT FER -CTNNA1 IN_SAME_COMPONENT IQGAP1 -CTNNA1 IN_SAME_COMPONENT ITGAE -CTNNA1 IN_SAME_COMPONENT ITGB7 -CTNNA1 IN_SAME_COMPONENT JUP -CTNNA1 IN_SAME_COMPONENT KDR -CTNNA1 IN_SAME_COMPONENT LIMA1 -CTNNA1 IN_SAME_COMPONENT LRP5 -CTNNA1 IN_SAME_COMPONENT NUMB -CTNNA1 IN_SAME_COMPONENT PARD6A -CTNNA1 IN_SAME_COMPONENT VEGFA -CTNNA1 REACTS_WITH AXIN1 -CTNNA1 REACTS_WITH CDH1 -CTNNA1 REACTS_WITH CDH2 -CTNNA1 REACTS_WITH CDH5 -CTNNA1 REACTS_WITH CTNNA1 -CTNNA1 REACTS_WITH CTNNB1 -CTNNA1 REACTS_WITH CTNND1 -CTNNA1 REACTS_WITH F2RL2 -CTNNA1 REACTS_WITH IGF1R -CTNNA1 REACTS_WITH IGF2 -CTNNA1 REACTS_WITH IQGAP1 -CTNNA1 REACTS_WITH ITGAE -CTNNA1 REACTS_WITH ITGB7 -CTNNA1 REACTS_WITH JUP -CTNNA1 REACTS_WITH KDR -CTNNA1 REACTS_WITH LIMA1 -CTNNA1 REACTS_WITH LRP5 -CTNNA1 REACTS_WITH MET -CTNNA1 REACTS_WITH NUMB -CTNNA1 REACTS_WITH PARD6A -CTNNA1 REACTS_WITH RHOA -CTNNA1 REACTS_WITH VEGFA -CTNNA1 STATE_CHANGE ACTN1 -CTNNA1 STATE_CHANGE CDH2 -CTNNA1 STATE_CHANGE CTNNA1 -CTNNA1 STATE_CHANGE CTNND1 -CTNNA1 STATE_CHANGE CTTN -CTNNA1 STATE_CHANGE DLG1 -CTNNA1 STATE_CHANGE EFNA1 -CTNNA1 STATE_CHANGE EGF -CTNNA1 STATE_CHANGE EGFR -CTNNA1 STATE_CHANGE ENAH -CTNNA1 STATE_CHANGE EPHA2 -CTNNA1 STATE_CHANGE EXOC3 -CTNNA1 STATE_CHANGE EXOC4 -CTNNA1 STATE_CHANGE FER -CTNNA1 STATE_CHANGE FGFR1 -CTNNA1 STATE_CHANGE FMN1 -CTNNA1 STATE_CHANGE GJA1 -CTNNA1 STATE_CHANGE GRIA2 -CTNNA1 STATE_CHANGE HGF -CTNNA1 STATE_CHANGE IGF1 -CTNNA1 STATE_CHANGE IGF1R -CTNNA1 STATE_CHANGE JUB -CTNNA1 STATE_CHANGE KIFC3 -CTNNA1 STATE_CHANGE MET -CTNNA1 STATE_CHANGE MGAT3 -CTNNA1 STATE_CHANGE MYO6 -CTNNA1 STATE_CHANGE PIK3CA -CTNNA1 STATE_CHANGE PIK3R1 -CTNNA1 STATE_CHANGE PIP5K1A -CTNNA1 STATE_CHANGE PIP5K1C -CTNNA1 STATE_CHANGE PLEKHA7 -CTNNA1 STATE_CHANGE PTPN11 -CTNNA1 STATE_CHANGE PTPRJ -CTNNA1 STATE_CHANGE RAC1 -CTNNA1 STATE_CHANGE RHOA -CTNNA1 STATE_CHANGE SRC -CTNNA1 STATE_CHANGE STX4 -CTNNA1 STATE_CHANGE TJP1 -CTNNA1 STATE_CHANGE VASP -CTNNA1 STATE_CHANGE VCL -CTNNA1 STATE_CHANGE ZYX -CTNNB1 CO_CONTROL AR -CTNNB1 CO_CONTROL PVRL2 -CTNNB1 IN_SAME_COMPONENT ADCY7 -CTNNB1 IN_SAME_COMPONENT AES -CTNNB1 IN_SAME_COMPONENT APC -CTNNB1 IN_SAME_COMPONENT AR -CTNNB1 IN_SAME_COMPONENT AXIN1 -CTNNB1 IN_SAME_COMPONENT AXIN2 -CTNNB1 IN_SAME_COMPONENT BCL9 -CTNNB1 IN_SAME_COMPONENT BTRC -CTNNB1 IN_SAME_COMPONENT CBY1 -CTNNB1 IN_SAME_COMPONENT CDH1 -CTNNB1 IN_SAME_COMPONENT CDH2 -CTNNB1 IN_SAME_COMPONENT CDH5 -CTNNB1 IN_SAME_COMPONENT CDX1 -CTNNB1 IN_SAME_COMPONENT CHD8 -CTNNB1 IN_SAME_COMPONENT CREBBP -CTNNB1 IN_SAME_COMPONENT CTBP1 -CTNNB1 IN_SAME_COMPONENT CTNNA1 -CTNNB1 IN_SAME_COMPONENT CTNNBIP1 -CTNNB1 IN_SAME_COMPONENT CTNND1 -CTNNB1 IN_SAME_COMPONENT CUL1 -CTNNB1 IN_SAME_COMPONENT DVL3 -CTNNB1 IN_SAME_COMPONENT EP300 -CTNNB1 IN_SAME_COMPONENT F2RL2 -CTNNB1 IN_SAME_COMPONENT FBXW11 -CTNNB1 IN_SAME_COMPONENT FER -CTNNB1 IN_SAME_COMPONENT FOS -CTNNB1 IN_SAME_COMPONENT HBP1 -CTNNB1 IN_SAME_COMPONENT HNF1A -CTNNB1 IN_SAME_COMPONENT IQGAP1 -CTNNB1 IN_SAME_COMPONENT ITGAE -CTNNB1 IN_SAME_COMPONENT ITGB7 -CTNNB1 IN_SAME_COMPONENT JUN -CTNNB1 IN_SAME_COMPONENT KDR -CTNNB1 IN_SAME_COMPONENT KLF4 -CTNNB1 IN_SAME_COMPONENT LEF1 -CTNNB1 IN_SAME_COMPONENT LIMA1 -CTNNB1 IN_SAME_COMPONENT LRP5 -CTNNB1 IN_SAME_COMPONENT MDFIC -CTNNB1 IN_SAME_COMPONENT MED12 -CTNNB1 IN_SAME_COMPONENT MET -CTNNB1 IN_SAME_COMPONENT MYOG -CTNNB1 IN_SAME_COMPONENT NCOA2 -CTNNB1 IN_SAME_COMPONENT NUMB -CTNNB1 IN_SAME_COMPONENT PARD6A -CTNNB1 IN_SAME_COMPONENT PITX2 -CTNNB1 IN_SAME_COMPONENT RUVBL2 -CTNNB1 IN_SAME_COMPONENT SKP1 -CTNNB1 IN_SAME_COMPONENT TBL1X -CTNNB1 IN_SAME_COMPONENT TBL1XR1 -CTNNB1 IN_SAME_COMPONENT TCF4 -CTNNB1 IN_SAME_COMPONENT TCF7 -CTNNB1 IN_SAME_COMPONENT TCF7L1 -CTNNB1 IN_SAME_COMPONENT TCF7L2 -CTNNB1 IN_SAME_COMPONENT TLE1 -CTNNB1 IN_SAME_COMPONENT TNIK -CTNNB1 IN_SAME_COMPONENT TRRAP -CTNNB1 IN_SAME_COMPONENT VEGFA -CTNNB1 METABOLIC_CATALYSIS AXIN2 -CTNNB1 METABOLIC_CATALYSIS CACNA1G -CTNNB1 METABOLIC_CATALYSIS CAMK4 -CTNNB1 METABOLIC_CATALYSIS CCND1 -CTNNB1 METABOLIC_CATALYSIS CCND2 -CTNNB1 METABOLIC_CATALYSIS CDH1 -CTNNB1 METABOLIC_CATALYSIS CDKN1B -CTNNB1 METABOLIC_CATALYSIS CDX1 -CTNNB1 METABOLIC_CATALYSIS CDX4 -CTNNB1 METABOLIC_CATALYSIS CYR61 -CTNNB1 METABOLIC_CATALYSIS DKK1 -CTNNB1 METABOLIC_CATALYSIS DKK4 -CTNNB1 METABOLIC_CATALYSIS FGF4 -CTNNB1 METABOLIC_CATALYSIS ID2 -CTNNB1 METABOLIC_CATALYSIS IGF2BP1 -CTNNB1 METABOLIC_CATALYSIS IL8 -CTNNB1 METABOLIC_CATALYSIS INCENP -CTNNB1 METABOLIC_CATALYSIS KCNIP4 -CTNNB1 METABOLIC_CATALYSIS KLK3 -CTNNB1 METABOLIC_CATALYSIS KRT1 -CTNNB1 METABOLIC_CATALYSIS LEF1 -CTNNB1 METABOLIC_CATALYSIS MITF -CTNNB1 METABOLIC_CATALYSIS MMP2 -CTNNB1 METABOLIC_CATALYSIS MMP9 -CTNNB1 METABOLIC_CATALYSIS MT-CO2 -CTNNB1 METABOLIC_CATALYSIS MYC -CTNNB1 METABOLIC_CATALYSIS NEUROG1 -CTNNB1 METABOLIC_CATALYSIS PITX2 -CTNNB1 METABOLIC_CATALYSIS PPARD -CTNNB1 METABOLIC_CATALYSIS SALL4 -CTNNB1 METABOLIC_CATALYSIS SNAI2 -CTNNB1 METABOLIC_CATALYSIS SP5 -CTNNB1 METABOLIC_CATALYSIS T -CTNNB1 METABOLIC_CATALYSIS TCF7 -CTNNB1 METABOLIC_CATALYSIS VCAN -CTNNB1 METABOLIC_CATALYSIS ZCCHC12 -CTNNB1 REACTS_WITH ADCY7 -CTNNB1 REACTS_WITH AES -CTNNB1 REACTS_WITH APC -CTNNB1 REACTS_WITH AR -CTNNB1 REACTS_WITH AXIN1 -CTNNB1 REACTS_WITH AXIN2 -CTNNB1 REACTS_WITH BCL9 -CTNNB1 REACTS_WITH BTRC -CTNNB1 REACTS_WITH CBY1 -CTNNB1 REACTS_WITH CDH1 -CTNNB1 REACTS_WITH CDH2 -CTNNB1 REACTS_WITH CDH5 -CTNNB1 REACTS_WITH CDX1 -CTNNB1 REACTS_WITH CHD8 -CTNNB1 REACTS_WITH CREBBP -CTNNB1 REACTS_WITH CTBP1 -CTNNB1 REACTS_WITH CTNNA1 -CTNNB1 REACTS_WITH CTNNB1 -CTNNB1 REACTS_WITH CTNNBIP1 -CTNNB1 REACTS_WITH CTNND1 -CTNNB1 REACTS_WITH CUL1 -CTNNB1 REACTS_WITH DVL3 -CTNNB1 REACTS_WITH EP300 -CTNNB1 REACTS_WITH F2RL2 -CTNNB1 REACTS_WITH FBXW11 -CTNNB1 REACTS_WITH FOS -CTNNB1 REACTS_WITH FZD5 -CTNNB1 REACTS_WITH HBP1 -CTNNB1 REACTS_WITH HDAC1 -CTNNB1 REACTS_WITH HGF -CTNNB1 REACTS_WITH HNF1A -CTNNB1 REACTS_WITH IGF1R -CTNNB1 REACTS_WITH IGF2 -CTNNB1 REACTS_WITH IQGAP1 -CTNNB1 REACTS_WITH ITGAE -CTNNB1 REACTS_WITH ITGB7 -CTNNB1 REACTS_WITH JUN -CTNNB1 REACTS_WITH KDR -CTNNB1 REACTS_WITH KLF4 -CTNNB1 REACTS_WITH LEF1 -CTNNB1 REACTS_WITH LIMA1 -CTNNB1 REACTS_WITH LRP5 -CTNNB1 REACTS_WITH LRP6 -CTNNB1 REACTS_WITH MDFIC -CTNNB1 REACTS_WITH MED12 -CTNNB1 REACTS_WITH MET -CTNNB1 REACTS_WITH MYF5 -CTNNB1 REACTS_WITH MYOG -CTNNB1 REACTS_WITH NCOA2 -CTNNB1 REACTS_WITH NUMB -CTNNB1 REACTS_WITH PARD6A -CTNNB1 REACTS_WITH PITX2 -CTNNB1 REACTS_WITH RHOA -CTNNB1 REACTS_WITH RUVBL2 -CTNNB1 REACTS_WITH SKP1 -CTNNB1 REACTS_WITH SMARCA4 -CTNNB1 REACTS_WITH TBL1X -CTNNB1 REACTS_WITH TBL1XR1 -CTNNB1 REACTS_WITH TCF4 -CTNNB1 REACTS_WITH TCF7 -CTNNB1 REACTS_WITH TCF7L1 -CTNNB1 REACTS_WITH TCF7L2 -CTNNB1 REACTS_WITH TERT -CTNNB1 REACTS_WITH TLE1 -CTNNB1 REACTS_WITH TLE2 -CTNNB1 REACTS_WITH TLE4 -CTNNB1 REACTS_WITH TNIK -CTNNB1 REACTS_WITH TRRAP -CTNNB1 REACTS_WITH VEGFA -CTNNB1 REACTS_WITH WNT3A -CTNNB1 STATE_CHANGE ACTN1 -CTNNB1 STATE_CHANGE CTNNB1 -CTNNB1 STATE_CHANGE CTTN -CTNNB1 STATE_CHANGE DLG1 -CTNNB1 STATE_CHANGE EFNA1 -CTNNB1 STATE_CHANGE EGF -CTNNB1 STATE_CHANGE EGFR -CTNNB1 STATE_CHANGE ENAH -CTNNB1 STATE_CHANGE EP300 -CTNNB1 STATE_CHANGE EPHA2 -CTNNB1 STATE_CHANGE EXOC3 -CTNNB1 STATE_CHANGE EXOC4 -CTNNB1 STATE_CHANGE HGF -CTNNB1 STATE_CHANGE IGF1 -CTNNB1 STATE_CHANGE IGF1R -CTNNB1 STATE_CHANGE KIFC3 -CTNNB1 STATE_CHANGE MET -CTNNB1 STATE_CHANGE MGAT3 -CTNNB1 STATE_CHANGE MYO6 -CTNNB1 STATE_CHANGE PIP5K1C -CTNNB1 STATE_CHANGE PLEKHA7 -CTNNB1 STATE_CHANGE PTPN11 -CTNNB1 STATE_CHANGE PTPRJ -CTNNB1 STATE_CHANGE RHOA -CTNNB1 STATE_CHANGE SRC -CTNNB1 STATE_CHANGE STX4 -CTNNB1 STATE_CHANGE TCF7L2 -CTNNB1 STATE_CHANGE TJP1 -CTNNB1 STATE_CHANGE VCL -CTNNB1 STATE_CHANGE ZYX -CTNNBIP1 IN_SAME_COMPONENT CTNNB1 -CTNNBIP1 REACTS_WITH CTNNB1 -CTNNBIP1 REACTS_WITH CTNNBIP1 -CTNND1 CO_CONTROL PVRL2 -CTNND1 CO_CONTROL ZBTB33 -CTNND1 IN_SAME_COMPONENT AXIN1 -CTNND1 IN_SAME_COMPONENT CDH1 -CTNND1 IN_SAME_COMPONENT CDH2 -CTNND1 IN_SAME_COMPONENT CTNNA1 -CTNND1 IN_SAME_COMPONENT CTNNB1 -CTNND1 IN_SAME_COMPONENT FER -CTNND1 IN_SAME_COMPONENT JUP -CTNND1 IN_SAME_COMPONENT LIMA1 -CTNND1 IN_SAME_COMPONENT LRP5 -CTNND1 IN_SAME_COMPONENT RHOA -CTNND1 IN_SAME_COMPONENT ZBTB33 -CTNND1 METABOLIC_CATALYSIS MMP7 -CTNND1 REACTS_WITH AXIN1 -CTNND1 REACTS_WITH CDH1 -CTNND1 REACTS_WITH CDH2 -CTNND1 REACTS_WITH CTNNA1 -CTNND1 REACTS_WITH CTNNB1 -CTNND1 REACTS_WITH CTNND1 -CTNND1 REACTS_WITH IGF1R -CTNND1 REACTS_WITH IGF2 -CTNND1 REACTS_WITH IQGAP1 -CTNND1 REACTS_WITH JUP -CTNND1 REACTS_WITH LIMA1 -CTNND1 REACTS_WITH LRP5 -CTNND1 REACTS_WITH RHOA -CTNND1 REACTS_WITH ZBTB33 -CTNND1 STATE_CHANGE ACTN1 -CTNND1 STATE_CHANGE CDH1 -CTNND1 STATE_CHANGE CDH2 -CTNND1 STATE_CHANGE CTNNA1 -CTNND1 STATE_CHANGE CTNND1 -CTNND1 STATE_CHANGE CTTN -CTNND1 STATE_CHANGE DLG1 -CTNND1 STATE_CHANGE EFNA1 -CTNND1 STATE_CHANGE EGF -CTNND1 STATE_CHANGE EGFR -CTNND1 STATE_CHANGE ENAH -CTNND1 STATE_CHANGE EPHA2 -CTNND1 STATE_CHANGE EXOC3 -CTNND1 STATE_CHANGE EXOC4 -CTNND1 STATE_CHANGE FER -CTNND1 STATE_CHANGE FGFR1 -CTNND1 STATE_CHANGE FMN1 -CTNND1 STATE_CHANGE GJA1 -CTNND1 STATE_CHANGE GRIA2 -CTNND1 STATE_CHANGE HGF -CTNND1 STATE_CHANGE IGF1 -CTNND1 STATE_CHANGE IGF1R -CTNND1 STATE_CHANGE JUB -CTNND1 STATE_CHANGE KIFC3 -CTNND1 STATE_CHANGE MET -CTNND1 STATE_CHANGE MGAT3 -CTNND1 STATE_CHANGE MYO6 -CTNND1 STATE_CHANGE PIK3CA -CTNND1 STATE_CHANGE PIK3R1 -CTNND1 STATE_CHANGE PIP5K1A -CTNND1 STATE_CHANGE PIP5K1C -CTNND1 STATE_CHANGE PLEKHA7 -CTNND1 STATE_CHANGE PTPN11 -CTNND1 STATE_CHANGE RAC1 -CTNND1 STATE_CHANGE RHOA -CTNND1 STATE_CHANGE SRC -CTNND1 STATE_CHANGE STX4 -CTNND1 STATE_CHANGE TJP1 -CTNND1 STATE_CHANGE VASP -CTNND1 STATE_CHANGE VCL -CTNND1 STATE_CHANGE ZYX -CTRC STATE_CHANGE PLAUR -CTSD CO_CONTROL BIRC3 -CTSD CO_CONTROL CRADD -CTSD CO_CONTROL MADD -CTSD CO_CONTROL RIPK1 -CTSD CO_CONTROL TNF -CTSD CO_CONTROL TNFRSF1A -CTSD CO_CONTROL TRADD -CTSD CO_CONTROL TRAF2 -CTSD REACTS_WITH CTSD -CTSD STATE_CHANGE BID -CTSG STATE_CHANGE PLAUR -CTTN IN_SAME_COMPONENT FYN -CTTN IN_SAME_COMPONENT SDC3 -CTTN IN_SAME_COMPONENT SRC -CTTN REACTS_WITH CTTN -CTTN REACTS_WITH FYN -CTTN REACTS_WITH SDC3 -CTTN REACTS_WITH SRC -CUL1 IN_SAME_COMPONENT BTRC -CUL1 IN_SAME_COMPONENT CTNNB1 -CUL1 IN_SAME_COMPONENT FBXW7 -CUL1 IN_SAME_COMPONENT SKP1 -CUL1 IN_SAME_COMPONENT TCF7L2 -CUL1 IN_SAME_COMPONENT TRRAP -CUL1 REACTS_WITH BTRC -CUL1 REACTS_WITH CTNNB1 -CUL1 REACTS_WITH CUL1 -CUL1 REACTS_WITH SKP1 -CUL1 REACTS_WITH TCF7L2 -CUL1 REACTS_WITH TRRAP -CUL1 STATE_CHANGE APC -CUL1 STATE_CHANGE CTNNB1 -CUL2 IN_SAME_COMPONENT HIF1A -CUL2 IN_SAME_COMPONENT RBX1 -CUL2 IN_SAME_COMPONENT TCEB1 -CUL2 IN_SAME_COMPONENT TCEB2 -CUL2 IN_SAME_COMPONENT VHL -CUL2 REACTS_WITH CUL2 -CUL2 REACTS_WITH HIF1A -CUL2 REACTS_WITH RBX1 -CUL2 REACTS_WITH TCEB1 -CUL2 REACTS_WITH TCEB2 -CUL2 REACTS_WITH VHL -CUL3 CO_CONTROL ATF2 -CUL3 IN_SAME_COMPONENT AURKB -CUL3 IN_SAME_COMPONENT BIRC5 -CUL3 IN_SAME_COMPONENT CDCA8 -CUL3 IN_SAME_COMPONENT INCENP -CUL3 IN_SAME_COMPONENT KLHL12 -CUL3 IN_SAME_COMPONENT KLHL13 -CUL3 IN_SAME_COMPONENT KLHL9 -CUL3 REACTS_WITH AURKB -CUL3 REACTS_WITH BIRC5 -CUL3 REACTS_WITH CDCA8 -CUL3 REACTS_WITH CUL3 -CUL3 REACTS_WITH INCENP -CUL3 REACTS_WITH KLHL12 -CUL3 REACTS_WITH KLHL13 -CUL3 REACTS_WITH KLHL9 -CUL3 REACTS_WITH PSMA3 -CUL3 STATE_CHANGE KAT5 -CXCL10 IN_SAME_COMPONENT CXCR3 -CXCL10 REACTS_WITH CCL11 -CXCL10 REACTS_WITH CXCL10 -CXCL10 REACTS_WITH CXCL13 -CXCL10 REACTS_WITH CXCR3 -CXCL10 REACTS_WITH GNAI2 -CXCL10 REACTS_WITH GNG2 -CXCL11 IN_SAME_COMPONENT CXCR3 -CXCL11 REACTS_WITH CXCL11 -CXCL11 REACTS_WITH CXCR3 -CXCL11 REACTS_WITH GNAI2 -CXCL11 REACTS_WITH GNG2 -CXCL12 IN_SAME_COMPONENT CXCR4 -CXCL12 IN_SAME_COMPONENT JAK2 -CXCL12 IN_SAME_COMPONENT PTPRC -CXCL12 IN_SAME_COMPONENT SDC4 -CXCL12 IN_SAME_COMPONENT VAV1 -CXCL12 REACTS_WITH CXCL12 -CXCL12 REACTS_WITH CXCR4 -CXCL12 REACTS_WITH JAK2 -CXCL12 REACTS_WITH PTPRC -CXCL12 REACTS_WITH SDC4 -CXCL12 REACTS_WITH VAV1 -CXCL12 STATE_CHANGE BCAR1 -CXCL12 STATE_CHANGE GNA13 -CXCL12 STATE_CHANGE GNG2 -CXCL12 STATE_CHANGE LCK -CXCL12 STATE_CHANGE PXN -CXCL12 STATE_CHANGE RALB -CXCL12 STATE_CHANGE SSH1 -CXCL12 STATE_CHANGE STAT2 -CXCL13 IN_SAME_COMPONENT CXCR3 -CXCL13 REACTS_WITH CXCL10 -CXCL13 REACTS_WITH CXCL13 -CXCL13 REACTS_WITH CXCR3 -CXCL13 REACTS_WITH GNAI2 -CXCL13 REACTS_WITH GNG2 -CXCL9 IN_SAME_COMPONENT CXCR3 -CXCL9 REACTS_WITH CXCL9 -CXCL9 REACTS_WITH CXCR3 -CXCL9 REACTS_WITH GNAI2 -CXCL9 REACTS_WITH GNG2 -CXCR1 IN_SAME_COMPONENT IL8 -CXCR1 REACTS_WITH CXCR1 -CXCR1 REACTS_WITH GNA14 -CXCR1 REACTS_WITH GNA15 -CXCR1 REACTS_WITH GNAI2 -CXCR1 REACTS_WITH GNG2 -CXCR1 REACTS_WITH IL8 -CXCR2 IN_SAME_COMPONENT IL8 -CXCR2 IN_SAME_COMPONENT VASP -CXCR2 REACTS_WITH CXCR2 -CXCR2 REACTS_WITH GNA14 -CXCR2 REACTS_WITH GNA15 -CXCR2 REACTS_WITH GNAI2 -CXCR2 REACTS_WITH GNG2 -CXCR2 REACTS_WITH IL8 -CXCR2 REACTS_WITH VASP -CXCR3 IN_SAME_COMPONENT CCL11 -CXCR3 IN_SAME_COMPONENT CXCL10 -CXCR3 IN_SAME_COMPONENT CXCL11 -CXCR3 IN_SAME_COMPONENT CXCL13 -CXCR3 IN_SAME_COMPONENT CXCL9 -CXCR3 IN_SAME_COMPONENT GNAI2 -CXCR3 IN_SAME_COMPONENT GNG2 -CXCR3 IN_SAME_COMPONENT PF4 -CXCR3 REACTS_WITH CCL11 -CXCR3 REACTS_WITH CXCL10 -CXCR3 REACTS_WITH CXCL11 -CXCR3 REACTS_WITH CXCL13 -CXCR3 REACTS_WITH CXCL9 -CXCR3 REACTS_WITH CXCR3 -CXCR3 REACTS_WITH GNAI2 -CXCR3 REACTS_WITH GNG2 -CXCR3 STATE_CHANGE GNG2 -CXCR4 CO_CONTROL SRC -CXCR4 IN_SAME_COMPONENT CXCL12 -CXCR4 IN_SAME_COMPONENT JAK2 -CXCR4 IN_SAME_COMPONENT PTPRC -CXCR4 IN_SAME_COMPONENT SDC4 -CXCR4 IN_SAME_COMPONENT VAV1 -CXCR4 REACTS_WITH CXCL12 -CXCR4 REACTS_WITH CXCR4 -CXCR4 REACTS_WITH JAK2 -CXCR4 REACTS_WITH PTPRC -CXCR4 REACTS_WITH SDC4 -CXCR4 REACTS_WITH VAV1 -CXCR4 STATE_CHANGE BCAR1 -CXCR4 STATE_CHANGE GNA13 -CXCR4 STATE_CHANGE GNG2 -CXCR4 STATE_CHANGE JAK2 -CXCR4 STATE_CHANGE LCK -CXCR4 STATE_CHANGE PXN -CXCR4 STATE_CHANGE RALB -CXCR4 STATE_CHANGE SSH1 -CXCR4 STATE_CHANGE STAT2 -CYBA IN_SAME_COMPONENT CYBB -CYBA IN_SAME_COMPONENT NCF1 -CYBA IN_SAME_COMPONENT NCF2 -CYBA IN_SAME_COMPONENT RAC1 -CYBA REACTS_WITH CYBA -CYBA REACTS_WITH CYBB -CYBA REACTS_WITH NCF1 -CYBA REACTS_WITH NCF2 -CYBA REACTS_WITH RAC1 -CYBB IN_SAME_COMPONENT CYBA -CYBB IN_SAME_COMPONENT NCF1 -CYBB IN_SAME_COMPONENT NCF2 -CYBB IN_SAME_COMPONENT RAC1 -CYBB REACTS_WITH CYBA -CYBB REACTS_WITH CYBB -CYBB REACTS_WITH NCF1 -CYBB REACTS_WITH NCF2 -CYBB REACTS_WITH RAC1 -CYCS CO_CONTROL DIABLO -CYFIP2 IN_SAME_COMPONENT ABI1 -CYFIP2 IN_SAME_COMPONENT ABI2 -CYFIP2 IN_SAME_COMPONENT C3orf10 -CYFIP2 IN_SAME_COMPONENT NCKAP1 -CYFIP2 IN_SAME_COMPONENT WASF1 -CYFIP2 IN_SAME_COMPONENT WASF2 -CYFIP2 REACTS_WITH ABI1 -CYFIP2 REACTS_WITH C3orf10 -CYFIP2 REACTS_WITH CYFIP2 -CYFIP2 REACTS_WITH NCKAP1 -CYFIP2 REACTS_WITH WASF2 -CYFIP2 STATE_CHANGE DIAPH1 -CYFIP2 STATE_CHANGE DIAPH3 -CYFIP2 STATE_CHANGE WASF2 -CYLD STATE_CHANGE IKBKG -CYLD STATE_CHANGE RIPK1 -CYLD STATE_CHANGE STAT1 -CYLD STATE_CHANGE TNF -CYLD STATE_CHANGE TNFRSF1A -CYLD STATE_CHANGE TRADD -CYLD STATE_CHANGE TRAF2 -CYR61 IN_SAME_COMPONENT ITGAM -CYR61 IN_SAME_COMPONENT ITGAV -CYR61 IN_SAME_COMPONENT ITGB2 -CYR61 IN_SAME_COMPONENT ITGB3 -CYR61 IN_SAME_COMPONENT ITGB5 -CYR61 REACTS_WITH CYR61 -CYR61 REACTS_WITH ITGAM -CYR61 REACTS_WITH ITGAV -CYR61 REACTS_WITH ITGB2 -CYR61 REACTS_WITH ITGB3 -CYR61 REACTS_WITH ITGB5 -CYTH2 IN_SAME_COMPONENT GNAQ -CYTH2 IN_SAME_COMPONENT IPCEF1 -CYTH2 REACTS_WITH CYTH2 -CYTH2 REACTS_WITH GNAQ -CYTH2 REACTS_WITH IPCEF1 -DAAM1 IN_SAME_COMPONENT DVL2 -DAAM1 REACTS_WITH DAAM1 -DAAM1 REACTS_WITH DVL2 -DAAM1 STATE_CHANGE RHOA -DAB1 IN_SAME_COMPONENT ARHGEF2 -DAB1 IN_SAME_COMPONENT CRKL -DAB1 IN_SAME_COMPONENT FYN -DAB1 IN_SAME_COMPONENT GRIN2A -DAB1 IN_SAME_COMPONENT GRIN2B -DAB1 IN_SAME_COMPONENT ITGA3 -DAB1 IN_SAME_COMPONENT ITGB1 -DAB1 IN_SAME_COMPONENT LRP8 -DAB1 IN_SAME_COMPONENT MAP2K7 -DAB1 IN_SAME_COMPONENT MAP3K11 -DAB1 IN_SAME_COMPONENT MAPK8 -DAB1 IN_SAME_COMPONENT NCK2 -DAB1 IN_SAME_COMPONENT PAFAH1B1 -DAB1 IN_SAME_COMPONENT PAFAH1B2 -DAB1 IN_SAME_COMPONENT PAFAH1B3 -DAB1 IN_SAME_COMPONENT PIK3CA -DAB1 IN_SAME_COMPONENT PIK3R1 -DAB1 IN_SAME_COMPONENT RAPGEF1 -DAB1 IN_SAME_COMPONENT RELN -DAB1 IN_SAME_COMPONENT VLDLR -DAB1 INTERACTS_WITH DAB1 -DAB1 INTERACTS_WITH FYN -DAB1 INTERACTS_WITH LRP8 -DAB1 INTERACTS_WITH RELN -DAB1 INTERACTS_WITH VLDLR -DAB1 REACTS_WITH ARHGEF2 -DAB1 REACTS_WITH CRKL -DAB1 REACTS_WITH DAB1 -DAB1 REACTS_WITH FYN -DAB1 REACTS_WITH GRIN2A -DAB1 REACTS_WITH GRIN2B -DAB1 REACTS_WITH ITGA3 -DAB1 REACTS_WITH ITGB1 -DAB1 REACTS_WITH LRP8 -DAB1 REACTS_WITH MAP2K7 -DAB1 REACTS_WITH MAP3K11 -DAB1 REACTS_WITH MAPK8 -DAB1 REACTS_WITH NCK2 -DAB1 REACTS_WITH PAFAH1B1 -DAB1 REACTS_WITH PAFAH1B2 -DAB1 REACTS_WITH PAFAH1B3 -DAB1 REACTS_WITH PIK3CA -DAB1 REACTS_WITH PIK3R1 -DAB1 REACTS_WITH RAPGEF1 -DAB1 REACTS_WITH RELN -DAB1 REACTS_WITH VLDLR -DAB1 STATE_CHANGE AKT1 -DAB1 STATE_CHANGE MAP1B -DAB1 STATE_CHANGE RAP1A -DAB2 IN_SAME_COMPONENT TGFBR1 -DAB2 IN_SAME_COMPONENT TGFBR2 -DAP3 IN_SAME_COMPONENT FADD -DAP3 IN_SAME_COMPONENT TNFRSF10A -DAP3 IN_SAME_COMPONENT TNFSF10 -DAP3 REACTS_WITH DAP3 -DAP3 REACTS_WITH FADD -DAP3 REACTS_WITH TNFRSF10A -DAP3 REACTS_WITH TNFSF10 -DAP3 STATE_CHANGE CASP8 -DAPP1 CO_CONTROL MAP3K7 -DAPP1 CO_CONTROL PPP3CA -DAPP1 CO_CONTROL PPP3CB -DAPP1 CO_CONTROL PPP3CC -DAPP1 CO_CONTROL RAC1 -DAPP1 CO_CONTROL VAV2 -DAPP1 IN_SAME_COMPONENT MAP4K1 -DAPP1 REACTS_WITH DAPP1 -DAPP1 REACTS_WITH MAP4K1 -DAPP1 STATE_CHANGE MAP3K1 -DAPP1 STATE_CHANGE NFATC1 -DAXX CO_CONTROL RASSF1 -DAXX IN_SAME_COMPONENT CASP8 -DAXX IN_SAME_COMPONENT FADD -DAXX IN_SAME_COMPONENT FAS -DAXX IN_SAME_COMPONENT FASLG -DAXX IN_SAME_COMPONENT MAP3K5 -DAXX IN_SAME_COMPONENT TGFBR1 -DAXX IN_SAME_COMPONENT TGFBR2 -DAXX IN_SAME_COMPONENT USP7 -DAXX REACTS_WITH CASP8 -DAXX REACTS_WITH DAXX -DAXX REACTS_WITH FADD -DAXX REACTS_WITH FAS -DAXX REACTS_WITH FASLG -DAXX REACTS_WITH MAP3K5 -DAXX STATE_CHANGE BID -DAXX STATE_CHANGE MAP2K7 -DAXX STATE_CHANGE MDM2 -DBNL IN_SAME_COMPONENT GRAP2 -DBNL IN_SAME_COMPONENT LCP2 -DBNL IN_SAME_COMPONENT MAP4K1 -DBNL REACTS_WITH DBNL -DBNL REACTS_WITH GRAP2 -DBNL REACTS_WITH LCP2 -DBNL REACTS_WITH MAP4K1 -DBNL STATE_CHANGE MAP3K1 -DBNL STATE_CHANGE MAP3K7 -DCC IN_SAME_COMPONENT BCAR1 -DCC IN_SAME_COMPONENT DOCK1 -DCC IN_SAME_COMPONENT ELMO1 -DCC IN_SAME_COMPONENT FYN -DCC IN_SAME_COMPONENT MYO10 -DCC IN_SAME_COMPONENT NCK1 -DCC IN_SAME_COMPONENT NTN1 -DCC IN_SAME_COMPONENT PAK1 -DCC IN_SAME_COMPONENT UNC5A -DCC IN_SAME_COMPONENT UNC5B -DCC IN_SAME_COMPONENT UNC5C -DCC REACTS_WITH BCAR1 -DCC REACTS_WITH DCC -DCC REACTS_WITH DOCK1 -DCC REACTS_WITH ELMO1 -DCC REACTS_WITH FYN -DCC REACTS_WITH MYO10 -DCC REACTS_WITH NCK1 -DCC REACTS_WITH NTN1 -DCC REACTS_WITH PAK1 -DCC REACTS_WITH UNC5A -DCC REACTS_WITH UNC5B -DCC REACTS_WITH UNC5C -DCC STATE_CHANGE CDC42 -DCC STATE_CHANGE FYN -DCC STATE_CHANGE MAP1B -DCC STATE_CHANGE PITPNA -DCC STATE_CHANGE RAC1 -DCC STATE_CHANGE RHOA -DCC STATE_CHANGE TRIO -DCP1A IN_SAME_COMPONENT FOXH1 -DCP1A IN_SAME_COMPONENT SMAD2 -DCP1A IN_SAME_COMPONENT SMAD4 -DCP1A REACTS_WITH DCP1A -DCP1A REACTS_WITH FOXH1 -DCP1A REACTS_WITH SMAD2 -DCP1A REACTS_WITH SMAD4 -DCTN1 STATE_CHANGE GJA1 -DDIT4 REACTS_WITH DDIT4 -DDIT4 REACTS_WITH TSC1 -DDIT4 REACTS_WITH TSC2 -DDX5 IN_SAME_COMPONENT DGCR8 -DDX5 IN_SAME_COMPONENT DROSHA -DDX5 IN_SAME_COMPONENT TP53 -DDX5 REACTS_WITH DDX5 -DDX5 REACTS_WITH DGCR8 -DDX5 REACTS_WITH DROSHA -DDX5 REACTS_WITH TP53 -DEC1 IN_SAME_COMPONENT ARNTL -DEC1 REACTS_WITH ARNTL -DEC1 REACTS_WITH BHLHE40 -DEF6 STATE_CHANGE RAC1 -DEF6 STATE_CHANGE RHOA -DEPTOR IN_SAME_COMPONENT AKT1S1 -DEPTOR IN_SAME_COMPONENT MAPKAP1 -DEPTOR IN_SAME_COMPONENT MLST8 -DEPTOR IN_SAME_COMPONENT MTOR -DEPTOR IN_SAME_COMPONENT RICTOR -DEPTOR IN_SAME_COMPONENT RPTOR -DEPTOR REACTS_WITH AKT1S1 -DEPTOR REACTS_WITH DEPTOR -DEPTOR REACTS_WITH MAPKAP1 -DEPTOR REACTS_WITH MLST8 -DEPTOR REACTS_WITH MTOR -DEPTOR REACTS_WITH RICTOR -DEPTOR REACTS_WITH RPTOR -DFFA IN_SAME_COMPONENT DFFB -DFFA INTERACTS_WITH DFFA -DFFA INTERACTS_WITH DFFB -DFFA REACTS_WITH DFFA -DFFA REACTS_WITH DFFB -DFFB IN_SAME_COMPONENT DFFA -DFFB INTERACTS_WITH DFFA -DFFB INTERACTS_WITH DFFB -DFFB REACTS_WITH DFFA -DFFB REACTS_WITH DFFB -DGCR8 IN_SAME_COMPONENT DDX5 -DGCR8 IN_SAME_COMPONENT DROSHA -DGCR8 IN_SAME_COMPONENT TP53 -DGCR8 REACTS_WITH DDX5 -DGCR8 REACTS_WITH DGCR8 -DGCR8 REACTS_WITH DROSHA -DGCR8 REACTS_WITH TP53 -DHH IN_SAME_COMPONENT HHIP -DHH IN_SAME_COMPONENT PTCH1 -DHH IN_SAME_COMPONENT PTCH2 -DHH REACTS_WITH DHH -DHH REACTS_WITH HHIP -DHH REACTS_WITH PTCH1 -DHH REACTS_WITH PTCH2 -DIABLO CO_CONTROL CYCS -DIABLO REACTS_WITH DIABLO -DIAPH1 CO_CONTROL CFL1 -DIAPH1 STATE_CHANGE ACTA1 -DKC1 IN_SAME_COMPONENT AKT1 -DKC1 IN_SAME_COMPONENT HNRNPC -DKC1 IN_SAME_COMPONENT HSP90AA1 -DKC1 IN_SAME_COMPONENT HUS1 -DKC1 IN_SAME_COMPONENT MTOR -DKC1 IN_SAME_COMPONENT NCL -DKC1 IN_SAME_COMPONENT PINX1 -DKC1 IN_SAME_COMPONENT PTGES3 -DKC1 IN_SAME_COMPONENT RAD1 -DKC1 IN_SAME_COMPONENT RAD9A -DKC1 IN_SAME_COMPONENT RPS6KB1 -DKC1 IN_SAME_COMPONENT SMG5 -DKC1 IN_SAME_COMPONENT SMG6 -DKC1 IN_SAME_COMPONENT TERT -DKC1 REACTS_WITH AKT1 -DKC1 REACTS_WITH DKC1 -DKC1 REACTS_WITH HNRNPC -DKC1 REACTS_WITH HSP90AA1 -DKC1 REACTS_WITH HUS1 -DKC1 REACTS_WITH MTOR -DKC1 REACTS_WITH NCL -DKC1 REACTS_WITH PINX1 -DKC1 REACTS_WITH PTGES3 -DKC1 REACTS_WITH RAD1 -DKC1 REACTS_WITH RAD9A -DKC1 REACTS_WITH RPS6KB1 -DKC1 REACTS_WITH SMG5 -DKC1 REACTS_WITH SMG6 -DKC1 REACTS_WITH TERT -DKK1 IN_SAME_COMPONENT KREMEN2 -DKK1 IN_SAME_COMPONENT LRP5 -DKK1 IN_SAME_COMPONENT LRP6 -DKK1 INTERACTS_WITH DKK2 -DKK1 INTERACTS_WITH KREMEN2 -DKK1 INTERACTS_WITH LRP6 -DKK1 REACTS_WITH DKK1 -DKK1 REACTS_WITH DKK2 -DKK1 REACTS_WITH FZD1 -DKK1 REACTS_WITH FZD8 -DKK1 REACTS_WITH KREMEN2 -DKK1 REACTS_WITH LRP5 -DKK1 REACTS_WITH LRP6 -DKK1 REACTS_WITH WNT1 -DKK1 REACTS_WITH WNT3A -DKK2 IN_SAME_COMPONENT KREMEN2 -DKK2 IN_SAME_COMPONENT LRP6 -DKK2 INTERACTS_WITH DKK1 -DKK2 INTERACTS_WITH KREMEN2 -DKK2 INTERACTS_WITH LRP6 -DKK2 REACTS_WITH DKK1 -DKK2 REACTS_WITH DKK2 -DKK2 REACTS_WITH KREMEN2 -DKK2 REACTS_WITH LRP6 -DLC1 STATE_CHANGE RHOA -DLG1 IN_SAME_COMPONENT APC -DLG1 REACTS_WITH APC -DLG1 REACTS_WITH DLG1 -DLG1 STATE_CHANGE PIK3CA -DLG1 STATE_CHANGE PIK3R1 -DLG4 STATE_CHANGE SHC1 -DLGAP5 INTERACTS_WITH AURKA -DLGAP5 INTERACTS_WITH TPX2 -DLK1 IN_SAME_COMPONENT NOTCH1 -DLK1 REACTS_WITH DLK1 -DLK1 REACTS_WITH NOTCH1 -DLL1 IN_SAME_COMPONENT NOTCH1 -DLL1 REACTS_WITH DLL1 -DLL1 REACTS_WITH DTX1 -DLL1 REACTS_WITH NOTCH1 -DLL3 STATE_CHANGE DLL1 -DLL3 STATE_CHANGE JAG1 -DLL3 STATE_CHANGE NOTCH1 -DLL4 IN_SAME_COMPONENT NOTCH4 -DLL4 REACTS_WITH DLL4 -DLL4 REACTS_WITH NOTCH4 -DLX1 IN_SAME_COMPONENT SMAD4 -DLX1 REACTS_WITH DLX1 -DLX1 REACTS_WITH SMAD4 -DNAJA1 STATE_CHANGE AR -DNER IN_SAME_COMPONENT NOTCH1 -DNER REACTS_WITH DNER -DNER REACTS_WITH NOTCH1 -DNM1 CO_CONTROL AMPH -DNM1 CO_CONTROL DYNLT1 -DNM1 CO_CONTROL EPS15 -DNM1 CO_CONTROL RAB5A -DNM1 CO_CONTROL SH3GL2 -DNM1 CO_CONTROL SH3KBP1 -DNM1 CO_CONTROL SYNJ1 -DNM1 STATE_CHANGE ARR3 -DNM1 STATE_CHANGE ARRB2 -DNM1 STATE_CHANGE CXCL10 -DNM1 STATE_CHANGE CXCL12 -DNM1 STATE_CHANGE CXCR1 -DNM1 STATE_CHANGE CXCR2 -DNM1 STATE_CHANGE CXCR3 -DNM1 STATE_CHANGE CXCR4 -DNM1 STATE_CHANGE DLL1 -DNM1 STATE_CHANGE EFNB1 -DNM1 STATE_CHANGE EGF -DNM1 STATE_CHANGE EGFR -DNM1 STATE_CHANGE GIPC1 -DNM1 STATE_CHANGE IL8 -DNM1 STATE_CHANGE JAG1 -DNM1 STATE_CHANGE NGF -DNM1 STATE_CHANGE NOTCH1 -DNM1 STATE_CHANGE RGS19 -DNM1 STATE_CHANGE TBXA2R -DNM2 CO_CONTROL RAB5A -DNM2 IN_SAME_COMPONENT DOCK4 -DNM2 IN_SAME_COMPONENT KDR -DNM2 IN_SAME_COMPONENT MYOF -DNM2 IN_SAME_COMPONENT PDGFB -DNM2 IN_SAME_COMPONENT PDGFRB -DNM2 IN_SAME_COMPONENT SDC4 -DNM2 IN_SAME_COMPONENT VEGFA -DNM2 REACTS_WITH DNM2 -DNM2 REACTS_WITH DOCK4 -DNM2 REACTS_WITH KDR -DNM2 REACTS_WITH MYOF -DNM2 REACTS_WITH PDGFB -DNM2 REACTS_WITH PDGFRB -DNM2 REACTS_WITH SDC4 -DNM2 REACTS_WITH VEGFA -DNM2 STATE_CHANGE CBL -DNM2 STATE_CHANGE CDH1 -DNM2 STATE_CHANGE CTNNA1 -DNM2 STATE_CHANGE CTNNB1 -DNM2 STATE_CHANGE CTNND1 -DNM2 STATE_CHANGE KDR -DNM2 STATE_CHANGE VEGFA -DNMBP STATE_CHANGE CDC42 -DNMT1 IN_SAME_COMPONENT HDAC1 -DNMT1 IN_SAME_COMPONENT RB1 -DNMT1 IN_SAME_COMPONENT TFDP1 -DNMT1 REACTS_WITH DNMT1 -DNMT1 REACTS_WITH HDAC1 -DNMT1 REACTS_WITH RB1 -DNMT1 REACTS_WITH TFDP1 -DNMT3A CO_CONTROL ZBTB17 -DNMT3A IN_SAME_COMPONENT GFI1 -DNMT3A IN_SAME_COMPONENT MAX -DNMT3A IN_SAME_COMPONENT MYC -DNMT3A IN_SAME_COMPONENT ZBTB17 -DNMT3A METABOLIC_CATALYSIS CDKN1A -DNMT3A REACTS_WITH DNMT3A -DNMT3A REACTS_WITH GFI1 -DNMT3A REACTS_WITH MAX -DNMT3A REACTS_WITH MYC -DNMT3A REACTS_WITH ZBTB17 -DOCK10 STATE_CHANGE CDC42 -DOCK11 IN_SAME_COMPONENT CDC42 -DOCK11 REACTS_WITH CDC42 -DOCK11 REACTS_WITH DOCK11 -DOCK11 STATE_CHANGE CDC42 -DOCK1 IN_SAME_COMPONENT BCAR1 -DOCK1 IN_SAME_COMPONENT CRK -DOCK1 IN_SAME_COMPONENT DCC -DOCK1 IN_SAME_COMPONENT ELMO1 -DOCK1 IN_SAME_COMPONENT NTN1 -DOCK1 REACTS_WITH BCAR1 -DOCK1 REACTS_WITH CRK -DOCK1 REACTS_WITH DCC -DOCK1 REACTS_WITH DOCK1 -DOCK1 REACTS_WITH ELMO1 -DOCK1 REACTS_WITH NTN1 -DOCK1 STATE_CHANGE RAC1 -DOCK2 CO_CONTROL ELMO1 -DOCK2 IN_SAME_COMPONENT ELMO1 -DOCK2 REACTS_WITH DOCK2 -DOCK2 REACTS_WITH ELMO1 -DOCK2 STATE_CHANGE RAC1 -DOCK2 STATE_CHANGE RAC2 -DOCK4 IN_SAME_COMPONENT DNM2 -DOCK4 IN_SAME_COMPONENT PDGFB -DOCK4 IN_SAME_COMPONENT PDGFRB -DOCK4 REACTS_WITH DNM2 -DOCK4 REACTS_WITH DOCK4 -DOCK4 REACTS_WITH PDGFB -DOCK4 REACTS_WITH PDGFRB -DOCK6 STATE_CHANGE CDC42 -DOCK6 STATE_CHANGE RAC1 -DOCK9 STATE_CHANGE CDC42 -DOK1 CO_CONTROL SHC1 -DOK1 CO_CONTROL SOS1 -DOK1 IN_SAME_COMPONENT FCER1A -DOK1 IN_SAME_COMPONENT FCER1G -DOK1 IN_SAME_COMPONENT FCGR2B -DOK1 IN_SAME_COMPONENT GDNF -DOK1 IN_SAME_COMPONENT GFRA1 -DOK1 IN_SAME_COMPONENT INPP5D -DOK1 IN_SAME_COMPONENT LYN -DOK1 IN_SAME_COMPONENT MS4A2 -DOK1 IN_SAME_COMPONENT NCK1 -DOK1 IN_SAME_COMPONENT RASA1 -DOK1 IN_SAME_COMPONENT TEC -DOK1 REACTS_WITH DOK1 -DOK1 REACTS_WITH FCER1A -DOK1 REACTS_WITH FCER1G -DOK1 REACTS_WITH FCGR2B -DOK1 REACTS_WITH GDNF -DOK1 REACTS_WITH GFRA1 -DOK1 REACTS_WITH INPP5D -DOK1 REACTS_WITH LYN -DOK1 REACTS_WITH MS4A2 -DOK1 REACTS_WITH NCK1 -DOK1 REACTS_WITH RASA1 -DOK1 REACTS_WITH TEC -DOK1 STATE_CHANGE CSK -DOK1 STATE_CHANGE HRAS -DOK1 STATE_CHANGE MAPK8 -DOK1 STATE_CHANGE RAF1 -DOK2 IN_SAME_COMPONENT CRK -DOK2 IN_SAME_COMPONENT IL2RG -DOK2 IN_SAME_COMPONENT IL4 -DOK2 IN_SAME_COMPONENT IL4R -DOK2 IN_SAME_COMPONENT JAK1 -DOK2 IN_SAME_COMPONENT JAK3 -DOK2 IN_SAME_COMPONENT NCK1 -DOK2 IN_SAME_COMPONENT PAK1 -DOK2 IN_SAME_COMPONENT RASA1 -DOK2 REACTS_WITH CRK -DOK2 REACTS_WITH DOK2 -DOK2 REACTS_WITH IL2RG -DOK2 REACTS_WITH IL4 -DOK2 REACTS_WITH IL4R -DOK2 REACTS_WITH JAK1 -DOK2 REACTS_WITH JAK3 -DOK2 REACTS_WITH NCK1 -DOK2 REACTS_WITH PAK1 -DOK2 REACTS_WITH RASA1 -DOK2 STATE_CHANGE IKZF3 -DOK4 IN_SAME_COMPONENT GDNF -DOK4 IN_SAME_COMPONENT GFRA1 -DOK4 REACTS_WITH DOK4 -DOK4 REACTS_WITH GDNF -DOK4 REACTS_WITH GFRA1 -DOK4 STATE_CHANGE RAP1A -DOK5 IN_SAME_COMPONENT GDNF -DOK5 IN_SAME_COMPONENT GFRA1 -DOK5 REACTS_WITH DOK5 -DOK5 REACTS_WITH GDNF -DOK5 REACTS_WITH GFRA1 -DOK6 IN_SAME_COMPONENT GDNF -DOK6 IN_SAME_COMPONENT GFRA1 -DOK6 REACTS_WITH DOK6 -DOK6 REACTS_WITH GDNF -DOK6 REACTS_WITH GFRA1 -DROSHA IN_SAME_COMPONENT DDX5 -DROSHA IN_SAME_COMPONENT DGCR8 -DROSHA IN_SAME_COMPONENT TP53 -DROSHA REACTS_WITH DDX5 -DROSHA REACTS_WITH DGCR8 -DROSHA REACTS_WITH DROSHA -DROSHA REACTS_WITH TP53 -DSP IN_SAME_COMPONENT JUP -DSP REACTS_WITH DSP -DSP REACTS_WITH JUP -DTX1 CO_CONTROL NOTCH1 -DTX1 CO_CONTROL NOTCH2 -DTX1 IN_SAME_COMPONENT NOTCH1 -DTX1 REACTS_WITH DLL1 -DTX1 REACTS_WITH DTX1 -DTX1 REACTS_WITH NOTCH1 -DUSP10 REACTS_WITH DUSP10 -DUSP16 REACTS_WITH DUSP16 -DUSP1 REACTS_WITH DUSP1 -DUSP1 STATE_CHANGE DOK1 -DUSP1 STATE_CHANGE RASA1 -DVL1 IN_SAME_COMPONENT NOTCH1 -DVL1 REACTS_WITH DVL1 -DVL1 REACTS_WITH NOTCH1 -DVL1 STATE_CHANGE APC -DVL1 STATE_CHANGE AXIN1 -DVL1 STATE_CHANGE CTNNB1 -DVL1 STATE_CHANGE PPP2R5D -DVL2 IN_SAME_COMPONENT DAAM1 -DVL2 IN_SAME_COMPONENT FZD2 -DVL2 IN_SAME_COMPONENT ROR2 -DVL2 IN_SAME_COMPONENT WNT5A -DVL2 REACTS_WITH DAAM1 -DVL2 REACTS_WITH DVL2 -DVL2 REACTS_WITH FZD2 -DVL2 REACTS_WITH ROR2 -DVL2 REACTS_WITH WNT5A -DVL2 STATE_CHANGE RAC1 -DVL3 IN_SAME_COMPONENT CTNNB1 -DVL3 IN_SAME_COMPONENT JUN -DVL3 IN_SAME_COMPONENT TCF7L2 -DVL3 METABOLIC_CATALYSIS MYC -DVL3 REACTS_WITH CTNNB1 -DVL3 REACTS_WITH DVL3 -DVL3 REACTS_WITH JUN -DVL3 REACTS_WITH TCF7L2 -DYNC1H1 IN_SAME_COMPONENT DYNLT1 -DYNC1H1 IN_SAME_COMPONENT KATNA1 -DYNC1H1 IN_SAME_COMPONENT MAP1B -DYNC1H1 IN_SAME_COMPONENT NDEL1 -DYNC1H1 IN_SAME_COMPONENT PAFAH1B1 -DYNC1H1 REACTS_WITH DYNC1H1 -DYNC1H1 REACTS_WITH DYNLT1 -DYNC1H1 REACTS_WITH KATNA1 -DYNC1H1 REACTS_WITH MAP1B -DYNC1H1 REACTS_WITH NDEL1 -DYNC1H1 REACTS_WITH PAFAH1B1 -DYNLRB1 IN_SAME_COMPONENT SMAD2 -DYNLRB1 IN_SAME_COMPONENT TGFBR1 -DYNLRB1 IN_SAME_COMPONENT TGFBR2 -DYNLRB1 REACTS_WITH DYNLRB1 -DYNLRB1 REACTS_WITH SMAD2 -DYNLRB1 REACTS_WITH SMURF2 -DYNLRB1 REACTS_WITH TGFBR1 -DYNLRB1 REACTS_WITH TGFBR2 -DYNLT1 CO_CONTROL DNM1 -DYNLT1 IN_SAME_COMPONENT DYNC1H1 -DYNLT1 IN_SAME_COMPONENT KATNA1 -DYNLT1 IN_SAME_COMPONENT NDEL1 -DYNLT1 IN_SAME_COMPONENT PAFAH1B1 -DYNLT1 REACTS_WITH DYNC1H1 -DYNLT1 REACTS_WITH DYNLT1 -DYNLT1 REACTS_WITH KATNA1 -DYNLT1 REACTS_WITH NDEL1 -DYNLT1 REACTS_WITH PAFAH1B1 -DYNLT1 STATE_CHANGE BDNF -DYNLT1 STATE_CHANGE GIPC1 -DYNLT1 STATE_CHANGE NGF -DYNLT1 STATE_CHANGE NTRK2 -DYNLT1 STATE_CHANGE RGS19 -DYRK2 CO_CONTROL PPP1R13L -DYRK2 STATE_CHANGE TP53 -E2F1 CO_CONTROL E2F1 -E2F1 CO_CONTROL E2F4 -E2F1 CO_CONTROL E2F6 -E2F1 CO_CONTROL HBP1 -E2F1 CO_CONTROL HDAC1 -E2F1 CO_CONTROL RB1 -E2F1 CO_CONTROL RBL1 -E2F1 CO_CONTROL SIRT1 -E2F1 CO_CONTROL SP1 -E2F1 CO_CONTROL TFDP1 -E2F1 CO_CONTROL TFDP2 -E2F1 CO_CONTROL TOPBP1 -E2F1 CO_CONTROL TRIM28 -E2F1 IN_SAME_COMPONENT HDAC1 -E2F1 IN_SAME_COMPONENT KAT2B -E2F1 IN_SAME_COMPONENT NDN -E2F1 IN_SAME_COMPONENT NDNL2 -E2F1 IN_SAME_COMPONENT RB1 -E2F1 IN_SAME_COMPONENT TOPBP1 -E2F1 METABOLIC_CATALYSIS APAF1 -E2F1 METABOLIC_CATALYSIS CASP7 -E2F1 METABOLIC_CATALYSIS CCNA2 -E2F1 METABOLIC_CATALYSIS CDC25A -E2F1 METABOLIC_CATALYSIS CDK4 -E2F1 METABOLIC_CATALYSIS CDKN1A -E2F1 METABOLIC_CATALYSIS CDKN1B -E2F1 METABOLIC_CATALYSIS CDKN2C -E2F1 METABOLIC_CATALYSIS DHFR -E2F1 METABOLIC_CATALYSIS E2F1 -E2F1 METABOLIC_CATALYSIS E2F2 -E2F1 METABOLIC_CATALYSIS HIC1 -E2F1 METABOLIC_CATALYSIS MCL1 -E2F1 METABOLIC_CATALYSIS MYB -E2F1 METABOLIC_CATALYSIS RANBP1 -E2F1 METABOLIC_CATALYSIS RB1 -E2F1 METABOLIC_CATALYSIS RBL1 -E2F1 METABOLIC_CATALYSIS SIRT1 -E2F1 METABOLIC_CATALYSIS SULT2A1 -E2F1 METABOLIC_CATALYSIS TERT -E2F1 METABOLIC_CATALYSIS TK1 -E2F1 METABOLIC_CATALYSIS TP73 -E2F1 METABOLIC_CATALYSIS WASF1 -E2F1 METABOLIC_CATALYSIS XRCC1 -E2F1 REACTS_WITH E2F1 -E2F1 REACTS_WITH HDAC1 -E2F1 REACTS_WITH KAT2B -E2F1 REACTS_WITH NDN -E2F1 REACTS_WITH NDNL2 -E2F1 REACTS_WITH NGF -E2F1 REACTS_WITH NGFR -E2F1 REACTS_WITH SORT1 -E2F1 REACTS_WITH TOPBP1 -E2F2 IN_SAME_COMPONENT RYBP -E2F2 IN_SAME_COMPONENT YY1 -E2F2 METABOLIC_CATALYSIS CDC6 -E2F3 CO_CONTROL E2F7 -E2F3 IN_SAME_COMPONENT RYBP -E2F3 IN_SAME_COMPONENT TFE3 -E2F3 IN_SAME_COMPONENT YY1 -E2F3 METABOLIC_CATALYSIS CDC6 -E2F3 METABOLIC_CATALYSIS POLA1 -E2F3 METABOLIC_CATALYSIS RRM1 -E2F3 METABOLIC_CATALYSIS RRM2 -E2F3 METABOLIC_CATALYSIS TK1 -E2F3 METABOLIC_CATALYSIS TYMS -E2F3 REACTS_WITH E2F3 -E2F3 REACTS_WITH RYBP -E2F3 REACTS_WITH TFE3 -E2F3 REACTS_WITH YY1 -E2F4 CO_CONTROL E2F1 -E2F4 CO_CONTROL E2F4 -E2F4 CO_CONTROL MYBL2 -E2F4 CO_CONTROL SP1 -E2F4 CO_CONTROL TFDP1 -E2F4 CO_CONTROL TFDP2 -E2F4 IN_SAME_COMPONENT CBX4 -E2F4 IN_SAME_COMPONENT CEBPA -E2F4 IN_SAME_COMPONENT CTBP1 -E2F4 IN_SAME_COMPONENT HDAC1 -E2F4 IN_SAME_COMPONENT KAT2A -E2F4 IN_SAME_COMPONENT RB1 -E2F4 IN_SAME_COMPONENT SMARCA2 -E2F4 IN_SAME_COMPONENT TFDP1 -E2F4 IN_SAME_COMPONENT TFDP2 -E2F4 IN_SAME_COMPONENT TRRAP -E2F4 METABOLIC_CATALYSIS BRCA1 -E2F4 METABOLIC_CATALYSIS CDC25A -E2F4 METABOLIC_CATALYSIS CDK1 -E2F4 METABOLIC_CATALYSIS DHFR -E2F4 METABOLIC_CATALYSIS E2F1 -E2F4 METABOLIC_CATALYSIS MYBL2 -E2F4 METABOLIC_CATALYSIS MYC -E2F4 REACTS_WITH CBX4 -E2F4 REACTS_WITH CEBPA -E2F4 REACTS_WITH CTBP1 -E2F4 REACTS_WITH E2F4 -E2F4 REACTS_WITH HDAC1 -E2F4 REACTS_WITH RB1 -E2F4 REACTS_WITH SMARCA2 -E2F4 REACTS_WITH TFDP1 -E2F4 REACTS_WITH TFDP2 -E2F5 REACTS_WITH E2F5 -E2F6 CO_CONTROL E2F1 -E2F6 CO_CONTROL SP1 -E2F6 METABOLIC_CATALYSIS BRCA1 -E2F6 METABOLIC_CATALYSIS CBX5 -E2F6 METABOLIC_CATALYSIS E2F1 -E2F6 METABOLIC_CATALYSIS RBBP4 -E2F6 METABOLIC_CATALYSIS RBBP8 -E2F6 METABOLIC_CATALYSIS TK1 -E2F6 METABOLIC_CATALYSIS UXT -E2F7 CO_CONTROL E2F3 -E2F7 CO_CONTROL RYBP -E2F7 CO_CONTROL TFDP1 -E2F7 CO_CONTROL YY1 -E2F7 METABOLIC_CATALYSIS CDC6 -E4F1 STATE_CHANGE TP53 -EBI3 CO_CONTROL IL12A -EBI3 CO_CONTROL IL12B -EBI3 CO_CONTROL IL12RB1 -EBI3 CO_CONTROL IL12RB2 -EBI3 CO_CONTROL JAK2 -EBI3 CO_CONTROL TYK2 -EBI3 IN_SAME_COMPONENT IL27 -EBI3 IN_SAME_COMPONENT IL27RA -EBI3 IN_SAME_COMPONENT IL6ST -EBI3 IN_SAME_COMPONENT JAK1 -EBI3 IN_SAME_COMPONENT JAK2 -EBI3 IN_SAME_COMPONENT TYK2 -EBI3 METABOLIC_CATALYSIS IFNG -EBI3 METABOLIC_CATALYSIS IL2 -EBI3 REACTS_WITH EBI3 -EBI3 REACTS_WITH IL27 -EBI3 REACTS_WITH IL27RA -EBI3 REACTS_WITH IL6ST -EBI3 REACTS_WITH JAK1 -EBI3 REACTS_WITH JAK2 -EBI3 REACTS_WITH TYK2 -EBI3 STATE_CHANGE STAT1 -EBI3 STATE_CHANGE STAT2 -EBI3 STATE_CHANGE STAT3 -EBI3 STATE_CHANGE STAT4 -EBI3 STATE_CHANGE STAT5A -ECT2 STATE_CHANGE RHOA -EDIL3 IN_SAME_COMPONENT ITGAV -EDIL3 IN_SAME_COMPONENT ITGB3 -EDIL3 IN_SAME_COMPONENT ITGB5 -EDIL3 REACTS_WITH EDIL3 -EDIL3 REACTS_WITH ITGAV -EDIL3 REACTS_WITH ITGB3 -EDIL3 REACTS_WITH ITGB5 -EDN1 IN_SAME_COMPONENT EDNRA -EDN1 IN_SAME_COMPONENT EDNRB -EDN1 IN_SAME_COMPONENT GNA12 -EDN1 METABOLIC_CATALYSIS COL1A2 -EDN1 METABOLIC_CATALYSIS COL3A1 -EDN1 METABOLIC_CATALYSIS CYSLTR1 -EDN1 METABOLIC_CATALYSIS CYSLTR2 -EDN1 METABOLIC_CATALYSIS MMP1 -EDN1 REACTS_WITH EDN1 -EDN1 REACTS_WITH EDNRA -EDN1 REACTS_WITH EDNRB -EDN1 REACTS_WITH GNA12 -EDN1 STATE_CHANGE AKT1 -EDN1 STATE_CHANGE EGF -EDN1 STATE_CHANGE EGFR -EDN1 STATE_CHANGE JAK2 -EDN1 STATE_CHANGE MAPK14 -EDN1 STATE_CHANGE MAPK8 -EDN1 STATE_CHANGE RAC1 -EDN1 STATE_CHANGE SLC9A1 -EDN1 STATE_CHANGE SLC9A3 -EDN2 IN_SAME_COMPONENT EDNRA -EDN2 IN_SAME_COMPONENT EDNRB -EDN2 REACTS_WITH EDN2 -EDN2 REACTS_WITH EDNRA -EDN2 REACTS_WITH EDNRB -EDN3 IN_SAME_COMPONENT EDNRA -EDN3 IN_SAME_COMPONENT EDNRB -EDN3 REACTS_WITH EDN3 -EDN3 REACTS_WITH EDNRA -EDN3 REACTS_WITH EDNRB -EDNRA IN_SAME_COMPONENT EDN1 -EDNRA IN_SAME_COMPONENT EDN2 -EDNRA IN_SAME_COMPONENT EDN3 -EDNRA IN_SAME_COMPONENT GNA12 -EDNRA METABOLIC_CATALYSIS COL1A2 -EDNRA METABOLIC_CATALYSIS COL3A1 -EDNRA METABOLIC_CATALYSIS CYSLTR1 -EDNRA METABOLIC_CATALYSIS CYSLTR2 -EDNRA METABOLIC_CATALYSIS MMP1 -EDNRA REACTS_WITH EDN1 -EDNRA REACTS_WITH EDN2 -EDNRA REACTS_WITH EDN3 -EDNRA REACTS_WITH EDNRA -EDNRA REACTS_WITH GNA12 -EDNRA STATE_CHANGE AKT1 -EDNRA STATE_CHANGE EGF -EDNRA STATE_CHANGE EGFR -EDNRA STATE_CHANGE JAK2 -EDNRA STATE_CHANGE MAPK8 -EDNRA STATE_CHANGE RAC1 -EDNRA STATE_CHANGE SLC9A1 -EDNRB IN_SAME_COMPONENT EDN1 -EDNRB IN_SAME_COMPONENT EDN2 -EDNRB IN_SAME_COMPONENT EDN3 -EDNRB METABOLIC_CATALYSIS COL1A2 -EDNRB REACTS_WITH EDN1 -EDNRB REACTS_WITH EDN2 -EDNRB REACTS_WITH EDN3 -EDNRB REACTS_WITH EDNRB -EDNRB STATE_CHANGE MAPK14 -EDNRB STATE_CHANGE SLC9A3 -EEF2K STATE_CHANGE EEF2 -EFNA1 CO_CONTROL GIT1 -EFNA1 IN_SAME_COMPONENT ACP1 -EFNA1 IN_SAME_COMPONENT ARHGEF15 -EFNA1 IN_SAME_COMPONENT EPHA2 -EFNA1 IN_SAME_COMPONENT EPHA4 -EFNA1 IN_SAME_COMPONENT GIT1 -EFNA1 IN_SAME_COMPONENT NCK1 -EFNA1 IN_SAME_COMPONENT NGEF -EFNA1 IN_SAME_COMPONENT PIK3CA -EFNA1 IN_SAME_COMPONENT PIK3R1 -EFNA1 IN_SAME_COMPONENT SRC -EFNA1 IN_SAME_COMPONENT TIAM1 -EFNA1 REACTS_WITH ACP1 -EFNA1 REACTS_WITH ARHGEF15 -EFNA1 REACTS_WITH EFNA1 -EFNA1 REACTS_WITH EPHA2 -EFNA1 REACTS_WITH EPHA4 -EFNA1 REACTS_WITH GIT1 -EFNA1 REACTS_WITH NCK1 -EFNA1 REACTS_WITH NGEF -EFNA1 REACTS_WITH PIK3CA -EFNA1 REACTS_WITH PIK3R1 -EFNA1 REACTS_WITH SRC -EFNA1 REACTS_WITH TIAM1 -EFNA1 STATE_CHANGE BCAR1 -EFNA1 STATE_CHANGE CBL -EFNA1 STATE_CHANGE GRLF1 -EFNA1 STATE_CHANGE RAC1 -EFNA1 STATE_CHANGE RHOA -EFNA2 REACTS_WITH EFNA2 -EFNA2 STATE_CHANGE RHOA -EFNA5 IN_SAME_COMPONENT CRK -EFNA5 IN_SAME_COMPONENT EPHA3 -EFNA5 IN_SAME_COMPONENT EPHA5 -EFNA5 IN_SAME_COMPONENT EPHA8 -EFNA5 IN_SAME_COMPONENT EPHB2 -EFNA5 REACTS_WITH CRK -EFNA5 REACTS_WITH EFNA5 -EFNA5 REACTS_WITH EPHA3 -EFNA5 REACTS_WITH EPHA5 -EFNA5 REACTS_WITH EPHA8 -EFNA5 REACTS_WITH EPHB2 -EFNA5 STATE_CHANGE CDK5 -EFNA5 STATE_CHANGE FYN -EFNA5 STATE_CHANGE RHOA -EFNB1 IN_SAME_COMPONENT EPHB1 -EFNB1 IN_SAME_COMPONENT EPHB3 -EFNB1 IN_SAME_COMPONENT NCK1 -EFNB1 IN_SAME_COMPONENT NCK2 -EFNB1 IN_SAME_COMPONENT RGS3 -EFNB1 IN_SAME_COMPONENT TIAM1 -EFNB1 REACTS_WITH EFNB1 -EFNB1 REACTS_WITH EPHB1 -EFNB1 REACTS_WITH EPHB3 -EFNB1 REACTS_WITH NCK1 -EFNB1 REACTS_WITH NCK2 -EFNB1 REACTS_WITH RGS3 -EFNB1 REACTS_WITH TIAM1 -EFNB1 STATE_CHANGE MAP3K7 -EFNB1 STATE_CHANGE MAP4K4 -EFNB1 STATE_CHANGE RAC1 -EFNB1 STATE_CHANGE ROCK1 -EFNB2 IN_SAME_COMPONENT EPHB4 -EFNB2 REACTS_WITH EFNB2 -EFNB2 REACTS_WITH EPHB4 -EFNB2 STATE_CHANGE RAC1 -EGF CO_CONTROL EGF -EGF CO_CONTROL EGFR -EGF CO_CONTROL GAB1 -EGF CO_CONTROL SMPD1 -EGF CO_CONTROL SMPD3 -EGF IN_SAME_COMPONENT CBL -EGF IN_SAME_COMPONENT EGFR -EGF IN_SAME_COMPONENT ERBB2 -EGF IN_SAME_COMPONENT ERBB3 -EGF IN_SAME_COMPONENT GAB1 -EGF IN_SAME_COMPONENT GNAI1 -EGF IN_SAME_COMPONENT GNAI3 -EGF IN_SAME_COMPONENT IQSEC1 -EGF IN_SAME_COMPONENT PAK1 -EGF IN_SAME_COMPONENT PLCG1 -EGF IN_SAME_COMPONENT RASA1 -EGF IN_SAME_COMPONENT SOS1 -EGF IN_SAME_COMPONENT WASL -EGF METABOLIC_CATALYSIS TERT -EGFR CO_CONTROL EGF -EGFR CO_CONTROL EGFR -EGFR CO_CONTROL GAB1 -EGF REACTS_WITH CBL -EGF REACTS_WITH EGF -EGF REACTS_WITH EGFR -EGF REACTS_WITH ERBB2 -EGF REACTS_WITH ERBB3 -EGF REACTS_WITH GAB1 -EGF REACTS_WITH GNAI1 -EGF REACTS_WITH GNAI3 -EGF REACTS_WITH HSP90AA1 -EGF REACTS_WITH IQSEC1 -EGF REACTS_WITH PAK1 -EGF REACTS_WITH PLCG1 -EGF REACTS_WITH RASA1 -EGF REACTS_WITH SOS1 -EGF REACTS_WITH WASL -EGFR IN_SAME_COMPONENT AREG -EGFR IN_SAME_COMPONENT BTC -EGFR IN_SAME_COMPONENT CBL -EGFR IN_SAME_COMPONENT EGF -EGFR IN_SAME_COMPONENT ERBB2 -EGFR IN_SAME_COMPONENT ERBB3 -EGFR IN_SAME_COMPONENT EREG -EGFR IN_SAME_COMPONENT GAB1 -EGFR IN_SAME_COMPONENT GNAI1 -EGFR IN_SAME_COMPONENT GNAI3 -EGFR IN_SAME_COMPONENT HBEGF -EGFR IN_SAME_COMPONENT IQSEC1 -EGFR IN_SAME_COMPONENT NRG4 -EGFR IN_SAME_COMPONENT PAK1 -EGFR IN_SAME_COMPONENT PIK3CB -EGFR IN_SAME_COMPONENT PIK3R1 -EGFR IN_SAME_COMPONENT PLCG1 -EGFR IN_SAME_COMPONENT RASA1 -EGFR IN_SAME_COMPONENT SDC3 -EGFR IN_SAME_COMPONENT SOS1 -EGFR IN_SAME_COMPONENT TGFA -EGFR IN_SAME_COMPONENT WASL -EGFR METABOLIC_CATALYSIS IL8 -EGFR METABOLIC_CATALYSIS TERT -EGFR REACTS_WITH AREG -EGFR REACTS_WITH BTC -EGFR REACTS_WITH CBL -EGFR REACTS_WITH EGF -EGFR REACTS_WITH EGFR -EGFR REACTS_WITH ERBB2 -EGFR REACTS_WITH ERBB3 -EGFR REACTS_WITH EREG -EGFR REACTS_WITH GAB1 -EGFR REACTS_WITH GNAI1 -EGFR REACTS_WITH GNAI3 -EGFR REACTS_WITH HBEGF -EGFR REACTS_WITH HSP90AA1 -EGFR REACTS_WITH IQSEC1 -EGFR REACTS_WITH NRG4 -EGFR REACTS_WITH PAK1 -EGFR REACTS_WITH PIK3CB -EGFR REACTS_WITH PIK3R1 -EGFR REACTS_WITH PLCG1 -EGFR REACTS_WITH RASA1 -EGFR REACTS_WITH SDC3 -EGFR REACTS_WITH SOS1 -EGFR REACTS_WITH TGFA -EGFR REACTS_WITH WASL -EGFR STATE_CHANGE ABI1 -EGFR STATE_CHANGE ARF4 -EGFR STATE_CHANGE CALM1 -EGFR STATE_CHANGE CAV1 -EGFR STATE_CHANGE CBL -EGFR STATE_CHANGE CDH1 -EGFR STATE_CHANGE CTNNA1 -EGFR STATE_CHANGE CTNNB1 -EGFR STATE_CHANGE CTNND1 -EGFR STATE_CHANGE CYTH2 -EGFR STATE_CHANGE EPS15 -EGFR STATE_CHANGE EPS8 -EGFR STATE_CHANGE GSN -EGFR STATE_CHANGE HRAS -EGFR STATE_CHANGE IPCEF1 -EGFR STATE_CHANGE ITGA6 -EGFR STATE_CHANGE ITGB4 -EGFR STATE_CHANGE MTOR -EGFR STATE_CHANGE PIP5K1C -EGFR STATE_CHANGE PPP2CA -EGFR STATE_CHANGE PPP2R1A -EGFR STATE_CHANGE PPP2R2A -EGFR STATE_CHANGE PTPN1 -EGFR STATE_CHANGE PTPN11 -EGFR STATE_CHANGE PTPN6 -EGFR STATE_CHANGE RAC1 -EGFR STATE_CHANGE SLC9A1 -EGFR STATE_CHANGE SOS1 -EGFR STATE_CHANGE SRC -EGFR STATE_CHANGE STAT1 -EGFR STATE_CHANGE STAT3 -EGFR STATE_CHANGE USP6NL -EGF STATE_CHANGE ABI1 -EGF STATE_CHANGE ARF4 -EGF STATE_CHANGE CALM1 -EGF STATE_CHANGE CAV1 -EGF STATE_CHANGE CBL -EGF STATE_CHANGE CDH1 -EGF STATE_CHANGE CTNNA1 -EGF STATE_CHANGE CTNNB1 -EGF STATE_CHANGE CTNND1 -EGF STATE_CHANGE CYTH2 -EGF STATE_CHANGE EPS15 -EGF STATE_CHANGE EPS8 -EGF STATE_CHANGE GSN -EGF STATE_CHANGE HRAS -EGF STATE_CHANGE IPCEF1 -EGF STATE_CHANGE ITGA6 -EGF STATE_CHANGE ITGB4 -EGF STATE_CHANGE MTOR -EGF STATE_CHANGE PIP5K1C -EGF STATE_CHANGE PPP2CA -EGF STATE_CHANGE PPP2R1A -EGF STATE_CHANGE PPP2R2A -EGF STATE_CHANGE PTPN1 -EGF STATE_CHANGE PTPN11 -EGF STATE_CHANGE PTPN6 -EGF STATE_CHANGE RAC1 -EGF STATE_CHANGE SLC9A1 -EGF STATE_CHANGE SOS1 -EGF STATE_CHANGE SRC -EGF STATE_CHANGE STAT1 -EGF STATE_CHANGE STAT3 -EGF STATE_CHANGE USP6NL -EGR1 CO_CONTROL AR -EGR1 CO_CONTROL PRKCQ -EGR1 METABOLIC_CATALYSIS CDK5R1 -EGR1 METABOLIC_CATALYSIS KLK3 -EGR1 METABOLIC_CATALYSIS PTP4A1 -EGR1 METABOLIC_CATALYSIS SNAI1 -EGR1 METABOLIC_CATALYSIS TNF -EGR1 REACTS_WITH EGR1 -EGR2 CO_CONTROL BCL6 -EGR2 CO_CONTROL FOS -EGR2 CO_CONTROL IRF4 -EGR2 CO_CONTROL JUN -EGR2 CO_CONTROL PARP14 -EGR2 CO_CONTROL STAT6 -EGR2 METABOLIC_CATALYSIS FASLG -EGR2 METABOLIC_CATALYSIS FCER2 -EGR2 METABOLIC_CATALYSIS IL2 -EGR3 CO_CONTROL FOS -EGR3 CO_CONTROL JUN -EGR3 METABOLIC_CATALYSIS FASLG -EGR3 METABOLIC_CATALYSIS IL2 -EGR4 CO_CONTROL PRKCQ -EGR4 METABOLIC_CATALYSIS TNF -EGR4 REACTS_WITH EGR4 -EHD4 STATE_CHANGE BDNF -EHD4 STATE_CHANGE NTRK2 -EHMT2 CO_CONTROL AR -EHMT2 CO_CONTROL CARM1 -EHMT2 CO_CONTROL NCOA2 -EHMT2 METABOLIC_CATALYSIS KLK3 -EIF2A IN_SAME_COMPONENT YWHAE -EIF2AK2 CO_CONTROL PDGFB -EIF2AK2 CO_CONTROL PDGFRB -EIF2AK2 STATE_CHANGE EIF2A -EIF2AK2 STATE_CHANGE STAT3 -EIF2A REACTS_WITH EIF2A -EIF2A REACTS_WITH YWHAE -EIF2A STATE_CHANGE STAT1 -EIF3A REACTS_WITH EIF3A -EIF4A1 IN_SAME_COMPONENT PDCD4 -EIF4A1 REACTS_WITH EIF4A1 -EIF4A1 REACTS_WITH PDCD4 -EIF4B STATE_CHANGE EIF4A1 -EIF4EBP1 IN_SAME_COMPONENT EIF4E -EIF4EBP1 REACTS_WITH EIF4E -EIF4EBP1 REACTS_WITH EIF4EBP1 -EIF4E IN_SAME_COMPONENT EIF4EBP1 -EIF4E REACTS_WITH EIF4E -EIF4E REACTS_WITH EIF4EBP1 -ELANE STATE_CHANGE PLAUR -ELF1 CO_CONTROL FOS -ELF1 CO_CONTROL JUNB -ELF1 IN_SAME_COMPONENT RB1 -ELF1 METABOLIC_CATALYSIS CSF2 -ELF1 METABOLIC_CATALYSIS IL2RA -ELF1 METABOLIC_CATALYSIS TEK -ELF1 REACTS_WITH ELF1 -ELF1 REACTS_WITH RB1 -ELF1 REACTS_WITH TFDP1 -ELF2 METABOLIC_CATALYSIS TEK -ELK1 CO_CONTROL CREB1 -ELK1 CO_CONTROL MYOCD -ELK1 CO_CONTROL SRF -ELK1 IN_SAME_COMPONENT SRF -ELK1 METABOLIC_CATALYSIS ACTA2 -ELK1 METABOLIC_CATALYSIS CITED2 -ELK1 METABOLIC_CATALYSIS EGR1 -ELK1 METABOLIC_CATALYSIS FOS -ELK1 METABOLIC_CATALYSIS TAGLN -ELK1 REACTS_WITH ELK1 -ELK1 REACTS_WITH MYOCD -ELK1 REACTS_WITH SRF -ELK1 STATE_CHANGE FOS -ELMO1 CO_CONTROL DOCK2 -ELMO1 IN_SAME_COMPONENT BCAR1 -ELMO1 IN_SAME_COMPONENT CRK -ELMO1 IN_SAME_COMPONENT DCC -ELMO1 IN_SAME_COMPONENT DOCK1 -ELMO1 IN_SAME_COMPONENT DOCK2 -ELMO1 IN_SAME_COMPONENT NTN1 -ELMO1 REACTS_WITH BCAR1 -ELMO1 REACTS_WITH CRK -ELMO1 REACTS_WITH DCC -ELMO1 REACTS_WITH DOCK1 -ELMO1 REACTS_WITH DOCK2 -ELMO1 REACTS_WITH ELMO1 -ELMO1 REACTS_WITH NTN1 -ELMO1 STATE_CHANGE RAC1 -ELMO1 STATE_CHANGE RAC2 -ENAH IN_SAME_COMPONENT BAIAP2 -ENAH IN_SAME_COMPONENT CDC42 -ENAH REACTS_WITH BAIAP2 -ENAH REACTS_WITH CDC42 -ENAH REACTS_WITH ENAH -ENO1 CO_CONTROL MYCBP -ENO1 CO_CONTROL NOTCH1 -ENO1 CO_CONTROL YY1 -ENO1 METABOLIC_CATALYSIS MYC -EOMES METABOLIC_CATALYSIS IFNG -EOMES METABOLIC_CATALYSIS PRF1 -EP300 CO_CONTROL ATF2 -EP300 CO_CONTROL EP300 -EP300 CO_CONTROL HDAC1 -EP300 CO_CONTROL HES1 -EP300 CO_CONTROL JDP2 -EP300 CO_CONTROL NOC2L -EP300 CO_CONTROL RBPJ -EP300 CO_CONTROL SIRT1 -EP300 CO_CONTROL SPEN -EP300 CO_CONTROL TWIST1 -EP300 IN_SAME_COMPONENT ATF2 -EP300 IN_SAME_COMPONENT CTNNB1 -EP300 IN_SAME_COMPONENT FOSL1 -EP300 IN_SAME_COMPONENT GATA1 -EP300 IN_SAME_COMPONENT JUN -EP300 IN_SAME_COMPONENT JUNB -EP300 IN_SAME_COMPONENT JUND -EP300 IN_SAME_COMPONENT NOTCH1 -EP300 IN_SAME_COMPONENT RBPJ -EP300 IN_SAME_COMPONENT SIRT1 -EP300 IN_SAME_COMPONENT SP1 -EP300 IN_SAME_COMPONENT TCF7L2 -EP300 IN_SAME_COMPONENT ZBTB17 -EP300 METABOLIC_CATALYSIS CDKN1A -EP300 METABOLIC_CATALYSIS CDX1 -EP300 METABOLIC_CATALYSIS DMP1 -EP300 METABOLIC_CATALYSIS GATA3 -EP300 METABOLIC_CATALYSIS HES1 -EP300 METABOLIC_CATALYSIS IVL -EP300 METABOLIC_CATALYSIS JUN -EP300 METABOLIC_CATALYSIS MMP1 -EP300 REACTS_WITH ATF2 -EP300 REACTS_WITH CTNNB1 -EP300 REACTS_WITH EP300 -EP300 REACTS_WITH FOSL1 -EP300 REACTS_WITH GATA1 -EP300 REACTS_WITH HDAC1 -EP300 REACTS_WITH HES1 -EP300 REACTS_WITH JUN -EP300 REACTS_WITH JUNB -EP300 REACTS_WITH JUND -EP300 REACTS_WITH MAX -EP300 REACTS_WITH MYC -EP300 REACTS_WITH NOTCH1 -EP300 REACTS_WITH RBPJ -EP300 REACTS_WITH SIRT1 -EP300 REACTS_WITH SP1 -EP300 REACTS_WITH SPEN -EP300 REACTS_WITH TCF7L2 -EP300 REACTS_WITH ZBTB17 -EP300 STATE_CHANGE DCP1A -EP300 STATE_CHANGE FOXH1 -EP300 STATE_CHANGE FOXO3 -EP300 STATE_CHANGE SMAD2 -EP300 STATE_CHANGE SMAD4 -EPAS1 IN_SAME_COMPONENT ARNT -EPAS1 IN_SAME_COMPONENT SIRT1 -EPAS1 IN_SAME_COMPONENT TCEB1 -EPAS1 IN_SAME_COMPONENT TCEB2 -EPAS1 IN_SAME_COMPONENT VHL -EPAS1 METABOLIC_CATALYSIS ABCG2 -EPAS1 METABOLIC_CATALYSIS ADORA2A -EPAS1 METABOLIC_CATALYSIS BHLHE40 -EPAS1 METABOLIC_CATALYSIS CITED2 -EPAS1 METABOLIC_CATALYSIS EFNA1 -EPAS1 METABOLIC_CATALYSIS EPO -EPAS1 METABOLIC_CATALYSIS FLT1 -EPAS1 METABOLIC_CATALYSIS FXN -EPAS1 METABOLIC_CATALYSIS KDR -EPAS1 METABOLIC_CATALYSIS MMP14 -EPAS1 METABOLIC_CATALYSIS PGK1 -EPAS1 METABOLIC_CATALYSIS POU5F1 -EPAS1 METABOLIC_CATALYSIS SERPINE1 -EPAS1 METABOLIC_CATALYSIS SLC11A2 -EPAS1 METABOLIC_CATALYSIS SLC2A1 -EPAS1 METABOLIC_CATALYSIS TWIST1 -EPAS1 METABOLIC_CATALYSIS VEGFA -EPAS1 REACTS_WITH ARNT -EPAS1 REACTS_WITH EPAS1 -EPAS1 REACTS_WITH SIRT1 -EPAS1 REACTS_WITH TCEB1 -EPAS1 REACTS_WITH TCEB2 -EPAS1 REACTS_WITH VHL -EPB41 IN_SAME_COMPONENT CASK -EPB41 IN_SAME_COMPONENT SDC2 -EPB41L1 IN_SAME_COMPONENT AGAP2 -EPB41L1 REACTS_WITH AGAP2 -EPB41L1 REACTS_WITH EPB41L1 -EPB41L1 REACTS_WITH PIK3CA -EPB41L1 REACTS_WITH PIK3R1 -EPB41 REACTS_WITH CASK -EPB41 REACTS_WITH EPB41 -EPB41 REACTS_WITH SDC2 -EPHA2 CO_CONTROL GIT1 -EPHA2 IN_SAME_COMPONENT ACP1 -EPHA2 IN_SAME_COMPONENT EFNA1 -EPHA2 IN_SAME_COMPONENT GIT1 -EPHA2 IN_SAME_COMPONENT NCK1 -EPHA2 IN_SAME_COMPONENT PIK3CA -EPHA2 IN_SAME_COMPONENT PIK3R1 -EPHA2 IN_SAME_COMPONENT SRC -EPHA2 IN_SAME_COMPONENT TIAM1 -EPHA2 REACTS_WITH ACP1 -EPHA2 REACTS_WITH EFNA1 -EPHA2 REACTS_WITH EPHA2 -EPHA2 REACTS_WITH GIT1 -EPHA2 REACTS_WITH NCK1 -EPHA2 REACTS_WITH PIK3CA -EPHA2 REACTS_WITH PIK3R1 -EPHA2 REACTS_WITH SRC -EPHA2 REACTS_WITH TIAM1 -EPHA2 STATE_CHANGE BCAR1 -EPHA2 STATE_CHANGE GRLF1 -EPHA2 STATE_CHANGE RAC1 -EPHA2 STATE_CHANGE RHOA -EPHA3 IN_SAME_COMPONENT CRK -EPHA3 IN_SAME_COMPONENT EFNA5 -EPHA3 REACTS_WITH CRK -EPHA3 REACTS_WITH EFNA5 -EPHA3 REACTS_WITH EPHA3 -EPHA3 STATE_CHANGE RHOA -EPHA4 IN_SAME_COMPONENT ARHGEF15 -EPHA4 IN_SAME_COMPONENT EFNA1 -EPHA4 REACTS_WITH ARHGEF15 -EPHA4 REACTS_WITH EFNA1 -EPHA4 REACTS_WITH EPHA4 -EPHA4 STATE_CHANGE PLCG1 -EPHA4 STATE_CHANGE RHOA -EPHA5 IN_SAME_COMPONENT EFNA5 -EPHA5 REACTS_WITH EFNA5 -EPHA5 REACTS_WITH EPHA5 -EPHA5 STATE_CHANGE FYN -EPHA8 IN_SAME_COMPONENT EFNA5 -EPHA8 REACTS_WITH EFNA5 -EPHA8 REACTS_WITH EPHA8 -EPHB1 IN_SAME_COMPONENT EFNB1 -EPHB1 IN_SAME_COMPONENT GRB7 -EPHB1 IN_SAME_COMPONENT PXN -EPHB1 IN_SAME_COMPONENT SRC -EPHB1 REACTS_WITH EFNB1 -EPHB1 REACTS_WITH EPHB1 -EPHB1 REACTS_WITH GRB7 -EPHB1 REACTS_WITH PXN -EPHB1 REACTS_WITH SRC -EPHB1 STATE_CHANGE HRAS -EPHB1 STATE_CHANGE MAP2K1 -EPHB1 STATE_CHANGE RAC1 -EPHB2 IN_SAME_COMPONENT EFNA5 -EPHB2 IN_SAME_COMPONENT ITSN1 -EPHB2 IN_SAME_COMPONENT KALRN -EPHB2 IN_SAME_COMPONENT RASA1 -EPHB2 IN_SAME_COMPONENT WASL -EPHB2 REACTS_WITH EFNA5 -EPHB2 REACTS_WITH EPHB2 -EPHB2 REACTS_WITH ITSN1 -EPHB2 REACTS_WITH KALRN -EPHB2 REACTS_WITH RASA1 -EPHB2 REACTS_WITH WASL -EPHB2 STATE_CHANGE CDC42 -EPHB2 STATE_CHANGE PAK1 -EPHB2 STATE_CHANGE RRAS -EPHB2 STATE_CHANGE SDC2 -EPHB2 STATE_CHANGE SYNJ1 -EPHB3 IN_SAME_COMPONENT EFNB1 -EPHB3 REACTS_WITH EFNB1 -EPHB3 REACTS_WITH EPHB3 -EPHB3 STATE_CHANGE ROCK1 -EPHB4 IN_SAME_COMPONENT EFNB2 -EPHB4 REACTS_WITH EFNB2 -EPHB4 REACTS_WITH EPHB4 -EPHB4 STATE_CHANGE RAC1 -EPN1 CO_CONTROL EPS15 -EPN1 STATE_CHANGE EGF -EPN1 STATE_CHANGE EGFR -EPO IN_SAME_COMPONENT EPOR -EPO IN_SAME_COMPONENT JAK2 -EPO IN_SAME_COMPONENT KIT -EPO IN_SAME_COMPONENT KITLG -EPO IN_SAME_COMPONENT LYN -EPO IN_SAME_COMPONENT SOCS3 -EPO INTERACTS_WITH TRPC6 -EPO REACTS_WITH EPO -EPO REACTS_WITH EPOR -EPO REACTS_WITH JAK2 -EPO REACTS_WITH KIT -EPO REACTS_WITH KITLG -EPO REACTS_WITH LYN -EPO REACTS_WITH SOCS3 -EPOR IN_SAME_COMPONENT EPO -EPOR IN_SAME_COMPONENT JAK2 -EPOR IN_SAME_COMPONENT KIT -EPOR IN_SAME_COMPONENT KITLG -EPOR IN_SAME_COMPONENT LYN -EPOR IN_SAME_COMPONENT SOCS3 -EPOR INTERACTS_WITH TRPC6 -EPOR REACTS_WITH EPO -EPOR REACTS_WITH EPOR -EPOR REACTS_WITH JAK2 -EPOR REACTS_WITH KIT -EPOR REACTS_WITH KITLG -EPOR REACTS_WITH LYN -EPOR REACTS_WITH SOCS3 -EPOR STATE_CHANGE BTK -EPOR STATE_CHANGE CBL -EPOR STATE_CHANGE CRKL -EPOR STATE_CHANGE GAB1 -EPOR STATE_CHANGE IRS2 -EPOR STATE_CHANGE JAK2 -EPOR STATE_CHANGE MAPK14 -EPOR STATE_CHANGE MAPK8 -EPOR STATE_CHANGE NFKB1 -EPOR STATE_CHANGE PLCG1 -EPOR STATE_CHANGE PTPN6 -EPOR STATE_CHANGE RAP1A -EPOR STATE_CHANGE STAT1 -EPOR STATE_CHANGE TEC -EPOR STATE_CHANGE VAV2 -EPO STATE_CHANGE BTK -EPO STATE_CHANGE CBL -EPO STATE_CHANGE CRKL -EPO STATE_CHANGE GAB1 -EPO STATE_CHANGE IRS2 -EPO STATE_CHANGE JAK2 -EPO STATE_CHANGE MAPK14 -EPO STATE_CHANGE MAPK8 -EPO STATE_CHANGE NFKB1 -EPO STATE_CHANGE PLCG1 -EPO STATE_CHANGE PTPN6 -EPO STATE_CHANGE RAP1A -EPO STATE_CHANGE STAT1 -EPO STATE_CHANGE TEC -EPO STATE_CHANGE VAV2 -EPS15 CO_CONTROL DNM1 -EPS15 CO_CONTROL EPN1 -EPS15 IN_SAME_COMPONENT HGF -EPS15 IN_SAME_COMPONENT MET -EPS15 REACTS_WITH EPS15 -EPS15 REACTS_WITH HGF -EPS15 REACTS_WITH MET -EPS15 STATE_CHANGE CBL -EPS15 STATE_CHANGE DLL1 -EPS15 STATE_CHANGE EGF -EPS15 STATE_CHANGE EGFR -EPS15 STATE_CHANGE JAG1 -EPS15 STATE_CHANGE NOTCH1 -EPS8 IN_SAME_COMPONENT ABI1 -EPS8 IN_SAME_COMPONENT BAIAP2 -EPS8 IN_SAME_COMPONENT CDC42 -EPS8 IN_SAME_COMPONENT SOS1 -EPS8 IN_SAME_COMPONENT USP6NL -EPS8 REACTS_WITH ABI1 -EPS8 REACTS_WITH BAIAP2 -EPS8 REACTS_WITH CDC42 -EPS8 REACTS_WITH EPS8 -EPS8 REACTS_WITH SOS1 -EPS8 REACTS_WITH USP6NL -EPS8 STATE_CHANGE RAB5A -EPS8 STATE_CHANGE RAC1 -ERBB2 IN_SAME_COMPONENT AREG -ERBB2 IN_SAME_COMPONENT BTC -ERBB2 IN_SAME_COMPONENT EGF -ERBB2 IN_SAME_COMPONENT EGFR -ERBB2 IN_SAME_COMPONENT ERBB3 -ERBB2 IN_SAME_COMPONENT EREG -ERBB2 IN_SAME_COMPONENT HBEGF -ERBB2 IN_SAME_COMPONENT HSP90AA1 -ERBB2 IN_SAME_COMPONENT NRG2 -ERBB2 IN_SAME_COMPONENT NRG4 -ERBB2 IN_SAME_COMPONENT SHC1 -ERBB2 IN_SAME_COMPONENT SOS1 -ERBB2 IN_SAME_COMPONENT TGFA -ERBB2 INTERACTS_WITH CDH1 -ERBB2 REACTS_WITH AREG -ERBB2 REACTS_WITH BTC -ERBB2 REACTS_WITH EGF -ERBB2 REACTS_WITH EGFR -ERBB2 REACTS_WITH ERBB2 -ERBB2 REACTS_WITH ERBB3 -ERBB2 REACTS_WITH EREG -ERBB2 REACTS_WITH HBEGF -ERBB2 REACTS_WITH HSP90AA1 -ERBB2 REACTS_WITH NRG2 -ERBB2 REACTS_WITH NRG4 -ERBB2 REACTS_WITH SHC1 -ERBB2 REACTS_WITH SOS1 -ERBB2 REACTS_WITH TGFA -ERBB2 STATE_CHANGE DOCK7 -ERBB2 STATE_CHANGE HRAS -ERBB2 STATE_CHANGE JAK2 -ERBB2 STATE_CHANGE MAP2K1 -ERBB2 STATE_CHANGE MAPK8 -ERBB2 STATE_CHANGE PRKACA -ERBB2 STATE_CHANGE PTPN11 -ERBB3 IN_SAME_COMPONENT AREG -ERBB3 IN_SAME_COMPONENT EGF -ERBB3 IN_SAME_COMPONENT EGFR -ERBB3 IN_SAME_COMPONENT ERBB2 -ERBB3 IN_SAME_COMPONENT EREG -ERBB3 IN_SAME_COMPONENT NRG2 -ERBB3 IN_SAME_COMPONENT SHC1 -ERBB3 IN_SAME_COMPONENT SOS1 -ERBB3 IN_SAME_COMPONENT TGFA -ERBB3 REACTS_WITH AREG -ERBB3 REACTS_WITH EGF -ERBB3 REACTS_WITH EGFR -ERBB3 REACTS_WITH ERBB2 -ERBB3 REACTS_WITH ERBB3 -ERBB3 REACTS_WITH EREG -ERBB3 REACTS_WITH HSP90AA1 -ERBB3 REACTS_WITH ITGA6 -ERBB3 REACTS_WITH ITGB4 -ERBB3 REACTS_WITH NRG2 -ERBB3 REACTS_WITH SHC1 -ERBB3 REACTS_WITH SOS1 -ERBB3 REACTS_WITH TGFA -ERBB3 STATE_CHANGE AKT1 -ERBB3 STATE_CHANGE DOCK7 -ERBB3 STATE_CHANGE JAK2 -ERBB3 STATE_CHANGE MAP2K1 -ERBB3 STATE_CHANGE MAPK8 -ERBB3 STATE_CHANGE PRKACA -ERBB3 STATE_CHANGE PTPN11 -ERC1 CO_CONTROL CHUK -ERC1 CO_CONTROL IKBKB -ERC1 CO_CONTROL IKBKG -ERC1 CO_CONTROL PRKCA -ERC1 IN_SAME_COMPONENT CHUK -ERC1 IN_SAME_COMPONENT IKBKB -ERC1 IN_SAME_COMPONENT IKBKG -ERC1 REACTS_WITH CHUK -ERC1 REACTS_WITH ERC1 -ERC1 REACTS_WITH IKBKB -ERC1 REACTS_WITH IKBKG -ERC1 STATE_CHANGE NFKB1 -ERC1 STATE_CHANGE NFKBIA -ERC1 STATE_CHANGE RELA -ERCC6L IN_SAME_COMPONENT PLK1 -ERCC6L REACTS_WITH ERCC6L -ERCC6L REACTS_WITH PLK1 -EREG IN_SAME_COMPONENT EGFR -EREG IN_SAME_COMPONENT ERBB2 -EREG IN_SAME_COMPONENT ERBB3 -EREG REACTS_WITH EGFR -EREG REACTS_WITH ERBB2 -EREG REACTS_WITH ERBB3 -EREG REACTS_WITH EREG -ESR1 CO_CONTROL FOS -ESR1 CO_CONTROL FOXA1 -ESR1 CO_CONTROL JUN -ESR1 CO_CONTROL NCOA3 -ESR1 CO_CONTROL POU2F1 -ESR1 CO_CONTROL SMAD4 -ESR1 CO_CONTROL SP1 -ESR1 IN_SAME_COMPONENT ATF2 -ESR1 IN_SAME_COMPONENT BCAR1 -ESR1 IN_SAME_COMPONENT FOS -ESR1 IN_SAME_COMPONENT GNG2 -ESR1 IN_SAME_COMPONENT HDAC4 -ESR1 IN_SAME_COMPONENT JUN -ESR1 IN_SAME_COMPONENT PELP1 -ESR1 IN_SAME_COMPONENT PIK3CA -ESR1 IN_SAME_COMPONENT PIK3R1 -ESR1 IN_SAME_COMPONENT SMAD4 -ESR1 IN_SAME_COMPONENT SOS1 -ESR1 IN_SAME_COMPONENT SRC -ESR1 IN_SAME_COMPONENT STK11 -ESR1 IN_SAME_COMPONENT STRN -ESR1 METABOLIC_CATALYSIS AP1B1 -ESR1 METABOLIC_CATALYSIS ATP5J -ESR1 METABOLIC_CATALYSIS COL18A1 -ESR1 METABOLIC_CATALYSIS COL1A2 -ESR1 METABOLIC_CATALYSIS CTSD -ESR1 METABOLIC_CATALYSIS DSCAM -ESR1 METABOLIC_CATALYSIS ESR1 -ESR1 METABOLIC_CATALYSIS FOXA1 -ESR1 METABOLIC_CATALYSIS MYC -ESR1 METABOLIC_CATALYSIS NDUFV3 -ESR1 METABOLIC_CATALYSIS NRIP1 -ESR1 METABOLIC_CATALYSIS PISD -ESR1 METABOLIC_CATALYSIS PSEN2 -ESR1 METABOLIC_CATALYSIS SOD1 -ESR1 METABOLIC_CATALYSIS TFF1 -ESR1 METABOLIC_CATALYSIS XBP1 -ESR1 REACTS_WITH ATF2 -ESR1 REACTS_WITH BCAR1 -ESR1 REACTS_WITH ESR1 -ESR1 REACTS_WITH FOS -ESR1 REACTS_WITH GNG2 -ESR1 REACTS_WITH HDAC4 -ESR1 REACTS_WITH JUN -ESR1 REACTS_WITH PELP1 -ESR1 REACTS_WITH PIK3CA -ESR1 REACTS_WITH PIK3R1 -ESR1 REACTS_WITH SMAD4 -ESR1 REACTS_WITH SOS1 -ESR1 REACTS_WITH SRC -ESR1 REACTS_WITH STK11 -ESR1 REACTS_WITH STRN -ESR1 STATE_CHANGE AKT1 -ESR1 STATE_CHANGE GNA13 -ESR1 STATE_CHANGE GNG2 -ESR1 STATE_CHANGE IGF1 -ESR1 STATE_CHANGE IGF1R -ESR1 STATE_CHANGE NOS3 -ESR1 STATE_CHANGE SRC -ESR2 REACTS_WITH ESR2 -ESR2 STATE_CHANGE MAPK11 -ESR2 STATE_CHANGE NOS3 -ETS1 CO_CONTROL FOS -ETS1 CO_CONTROL JUN -ETS1 IN_SAME_COMPONENT STAT6 -ETS1 METABOLIC_CATALYSIS ANGPT1 -ETS1 METABOLIC_CATALYSIS ANGPT2 -ETS1 METABOLIC_CATALYSIS ANPEP -ETS1 METABOLIC_CATALYSIS CCND1 -ETS1 METABOLIC_CATALYSIS ETS1 -ETS1 METABOLIC_CATALYSIS FLT1 -ETS1 METABOLIC_CATALYSIS IL5 -ETS1 METABOLIC_CATALYSIS KDR -ETS1 METABOLIC_CATALYSIS MMP1 -ETS1 METABOLIC_CATALYSIS SOCS1 -ETS1 REACTS_WITH ETS1 -ETS1 REACTS_WITH STAT6 -ETS2 METABOLIC_CATALYSIS KIT -EVI5 IN_SAME_COMPONENT AURKB -EVI5 IN_SAME_COMPONENT BIRC5 -EVI5 IN_SAME_COMPONENT CDCA8 -EVI5 IN_SAME_COMPONENT INCENP -EVI5 REACTS_WITH AURKB -EVI5 REACTS_WITH BIRC5 -EVI5 REACTS_WITH CDCA8 -EVI5 REACTS_WITH EVI5 -EVI5 REACTS_WITH INCENP -EWSR1 IN_SAME_COMPONENT BARD1 -EWSR1 REACTS_WITH BARD1 -EWSR1 REACTS_WITH EWSR1 -EXOC1 IN_SAME_COMPONENT EXOC2 -EXOC1 IN_SAME_COMPONENT EXOC3 -EXOC1 IN_SAME_COMPONENT EXOC4 -EXOC1 IN_SAME_COMPONENT EXOC5 -EXOC1 IN_SAME_COMPONENT EXOC6 -EXOC1 IN_SAME_COMPONENT EXOC7 -EXOC1 REACTS_WITH RHOQ -EXOC1 REACTS_WITH TRIP10 -EXOC2 IN_SAME_COMPONENT EXOC1 -EXOC2 IN_SAME_COMPONENT EXOC3 -EXOC2 IN_SAME_COMPONENT EXOC4 -EXOC2 IN_SAME_COMPONENT EXOC5 -EXOC2 IN_SAME_COMPONENT EXOC6 -EXOC2 IN_SAME_COMPONENT EXOC7 -EXOC2 REACTS_WITH RHOQ -EXOC2 REACTS_WITH TRIP10 -EXOC3 CO_CONTROL STX4 -EXOC3 IN_SAME_COMPONENT EXOC1 -EXOC3 IN_SAME_COMPONENT EXOC2 -EXOC3 IN_SAME_COMPONENT EXOC4 -EXOC3 IN_SAME_COMPONENT EXOC5 -EXOC3 IN_SAME_COMPONENT EXOC6 -EXOC3 IN_SAME_COMPONENT EXOC7 -EXOC3 REACTS_WITH RHOQ -EXOC3 REACTS_WITH TRIP10 -EXOC3 STATE_CHANGE AQP3 -EXOC4 CO_CONTROL STX4 -EXOC4 IN_SAME_COMPONENT EXOC1 -EXOC4 IN_SAME_COMPONENT EXOC2 -EXOC4 IN_SAME_COMPONENT EXOC3 -EXOC4 IN_SAME_COMPONENT EXOC5 -EXOC4 IN_SAME_COMPONENT EXOC6 -EXOC4 IN_SAME_COMPONENT EXOC7 -EXOC4 REACTS_WITH RHOQ -EXOC4 REACTS_WITH TRIP10 -EXOC4 STATE_CHANGE AQP3 -EXOC5 IN_SAME_COMPONENT EXOC1 -EXOC5 IN_SAME_COMPONENT EXOC2 -EXOC5 IN_SAME_COMPONENT EXOC3 -EXOC5 IN_SAME_COMPONENT EXOC4 -EXOC5 IN_SAME_COMPONENT EXOC6 -EXOC5 IN_SAME_COMPONENT EXOC7 -EXOC5 REACTS_WITH RHOQ -EXOC5 REACTS_WITH TRIP10 -EXOC6 IN_SAME_COMPONENT EXOC1 -EXOC6 IN_SAME_COMPONENT EXOC2 -EXOC6 IN_SAME_COMPONENT EXOC3 -EXOC6 IN_SAME_COMPONENT EXOC4 -EXOC6 IN_SAME_COMPONENT EXOC5 -EXOC6 IN_SAME_COMPONENT EXOC7 -EXOC6 REACTS_WITH RHOQ -EXOC6 REACTS_WITH TRIP10 -EXOC7 IN_SAME_COMPONENT EXOC1 -EXOC7 IN_SAME_COMPONENT EXOC2 -EXOC7 IN_SAME_COMPONENT EXOC3 -EXOC7 IN_SAME_COMPONENT EXOC4 -EXOC7 IN_SAME_COMPONENT EXOC5 -EXOC7 IN_SAME_COMPONENT EXOC6 -EXOC7 IN_SAME_COMPONENT IQGAP1 -EXOC7 IN_SAME_COMPONENT SEPT2 -EXOC7 REACTS_WITH EXOC7 -EXOC7 REACTS_WITH IQGAP1 -EXOC7 REACTS_WITH RHOQ -EXOC7 REACTS_WITH SEPT2 -EXOC7 REACTS_WITH TRIP10 -EZR IN_SAME_COMPONENT SDC2 -EZR REACTS_WITH EZR -EZR REACTS_WITH SDC2 -EZR STATE_CHANGE CASP8 -EZR STATE_CHANGE FADD -EZR STATE_CHANGE FAS -EZR STATE_CHANGE FASLG -F10 IN_SAME_COMPONENT ITGAM -F10 IN_SAME_COMPONENT ITGB2 -F10 REACTS_WITH F10 -F10 REACTS_WITH ITGAM -F10 REACTS_WITH ITGB2 -F11R IN_SAME_COMPONENT CLDN1 -F11R IN_SAME_COMPONENT ITGAL -F11R IN_SAME_COMPONENT ITGAV -F11R IN_SAME_COMPONENT ITGB2 -F11R IN_SAME_COMPONENT ITGB3 -F11R REACTS_WITH CLDN1 -F11R REACTS_WITH F11R -F11R REACTS_WITH ITGAL -F11R REACTS_WITH ITGAV -F11R REACTS_WITH ITGB2 -F11R REACTS_WITH ITGB3 -F13A1 IN_SAME_COMPONENT ITGA4 -F13A1 IN_SAME_COMPONENT ITGA9 -F13A1 IN_SAME_COMPONENT ITGB1 -F13A1 REACTS_WITH F13A1 -F13A1 REACTS_WITH ITGA4 -F13A1 REACTS_WITH ITGA9 -F13A1 REACTS_WITH ITGB1 -F2 IN_SAME_COMPONENT F2RL2 -F2 METABOLIC_CATALYSIS ANGPT1 -F2 METABOLIC_CATALYSIS ANGPT2 -F2 REACTS_WITH F2 -F2 REACTS_WITH F2RL2 -F2R IN_SAME_COMPONENT ARRB1 -F2R IN_SAME_COMPONENT F2RL2 -F2R IN_SAME_COMPONENT ZYX -F2RL2 IN_SAME_COMPONENT CDC42 -F2RL2 IN_SAME_COMPONENT CDH1 -F2RL2 IN_SAME_COMPONENT CTNNA1 -F2RL2 IN_SAME_COMPONENT CTNNB1 -F2RL2 IN_SAME_COMPONENT F2 -F2RL2 IN_SAME_COMPONENT F2R -F2RL2 IN_SAME_COMPONENT KIRREL -F2RL2 IN_SAME_COMPONENT NPHS1 -F2RL2 IN_SAME_COMPONENT NUMB -F2RL2 IN_SAME_COMPONENT PARD6A -F2RL2 IN_SAME_COMPONENT PRKCE -F2RL2 IN_SAME_COMPONENT PRKCZ -F2RL2 REACTS_WITH CDC42 -F2RL2 REACTS_WITH CDH1 -F2RL2 REACTS_WITH CTNNA1 -F2RL2 REACTS_WITH CTNNB1 -F2RL2 REACTS_WITH F2 -F2RL2 REACTS_WITH F2R -F2RL2 REACTS_WITH F2RL2 -F2RL2 REACTS_WITH KIRREL -F2RL2 REACTS_WITH NPHS1 -F2RL2 REACTS_WITH NUMB -F2RL2 REACTS_WITH PARD6A -F2RL2 REACTS_WITH PRKCE -F2RL2 REACTS_WITH PRKCZ -F2RL2 STATE_CHANGE F2RL3 -F2RL2 STATE_CHANGE GNA13 -F2RL2 STATE_CHANGE GNG2 -F2RL2 STATE_CHANGE TIAM1 -F2RL3 STATE_CHANGE GNA13 -F2RL3 STATE_CHANGE GNG2 -F2R REACTS_WITH ARRB1 -F2R REACTS_WITH F2R -F2R REACTS_WITH F2RL2 -F2R REACTS_WITH ZYX -F2R STATE_CHANGE GNA12 -F2R STATE_CHANGE GNA13 -F2R STATE_CHANGE GNG2 -F2 STATE_CHANGE F2R -F2 STATE_CHANGE F2RL2 -F2 STATE_CHANGE F2RL3 -F2 STATE_CHANGE SDC4 -F2 STATE_CHANGE ZYX -FADD IN_SAME_COMPONENT BIRC3 -FADD IN_SAME_COMPONENT CASP10 -FADD IN_SAME_COMPONENT CASP2 -FADD IN_SAME_COMPONENT CASP8 -FADD IN_SAME_COMPONENT CFLAR -FADD IN_SAME_COMPONENT CRADD -FADD IN_SAME_COMPONENT DAP3 -FADD IN_SAME_COMPONENT DAXX -FADD IN_SAME_COMPONENT FAS -FADD IN_SAME_COMPONENT FASLG -FADD IN_SAME_COMPONENT MAP3K5 -FADD IN_SAME_COMPONENT RIPK1 -FADD IN_SAME_COMPONENT TNF -FADD IN_SAME_COMPONENT TNFRSF10A -FADD IN_SAME_COMPONENT TNFRSF10B -FADD IN_SAME_COMPONENT TNFRSF1A -FADD IN_SAME_COMPONENT TNFSF10 -FADD IN_SAME_COMPONENT TRADD -FADD IN_SAME_COMPONENT TRAF1 -FADD IN_SAME_COMPONENT TRAF2 -FADD REACTS_WITH BAG4 -FADD REACTS_WITH BIRC3 -FADD REACTS_WITH BTK -FADD REACTS_WITH CASP10 -FADD REACTS_WITH CASP2 -FADD REACTS_WITH CASP8 -FADD REACTS_WITH CFLAR -FADD REACTS_WITH CRADD -FADD REACTS_WITH DAP3 -FADD REACTS_WITH DAXX -FADD REACTS_WITH FADD -FADD REACTS_WITH FAS -FADD REACTS_WITH FASLG -FADD REACTS_WITH MAP3K5 -FADD REACTS_WITH RIPK1 -FADD REACTS_WITH TNF -FADD REACTS_WITH TNFRSF10A -FADD REACTS_WITH TNFRSF10B -FADD REACTS_WITH TNFRSF1A -FADD REACTS_WITH TNFSF10 -FADD REACTS_WITH TRADD -FADD REACTS_WITH TRAF1 -FADD REACTS_WITH TRAF2 -FADD STATE_CHANGE BID -FADD STATE_CHANGE CASP10 -FADD STATE_CHANGE CASP3 -FADD STATE_CHANGE CASP8 -FADD STATE_CHANGE FADD -FADD STATE_CHANGE FAS -FADD STATE_CHANGE FASLG -FADD STATE_CHANGE MAP2K7 -FADD STATE_CHANGE MAP3K1 -FADD STATE_CHANGE MAP3K14 -FADD STATE_CHANGE SMPD1 -FAIM2 IN_SAME_COMPONENT FAS -FAIM2 REACTS_WITH FAIM2 -FAIM2 REACTS_WITH FAS -FAIM IN_SAME_COMPONENT NGF -FAIM REACTS_WITH FAIM -FAIM REACTS_WITH NGF -FAM120B IN_SAME_COMPONENT RXRA -FAM120B REACTS_WITH FAM120B -FAM120B REACTS_WITH RXRA -FAM175A IN_SAME_COMPONENT ATM -FAM175A IN_SAME_COMPONENT BRCA1 -FAM175A IN_SAME_COMPONENT H2AFX -FAM175A IN_SAME_COMPONENT MDC1 -FAM175A IN_SAME_COMPONENT MRE11A -FAM175A IN_SAME_COMPONENT NBN -FAM175A IN_SAME_COMPONENT RAD50 -FAM175A IN_SAME_COMPONENT RNF8 -FAM175A IN_SAME_COMPONENT TP53BP1 -FAM175A IN_SAME_COMPONENT UIMC1 -FAM175A REACTS_WITH ATM -FAM175A REACTS_WITH BRCA1 -FAM175A REACTS_WITH FAM175A -FAM175A REACTS_WITH H2AFX -FAM175A REACTS_WITH MDC1 -FAM175A REACTS_WITH MRE11A -FAM175A REACTS_WITH NBN -FAM175A REACTS_WITH RAD50 -FAM175A REACTS_WITH RNF8 -FAM175A REACTS_WITH TP53BP1 -FAM175A REACTS_WITH UIMC1 -FANCA IN_SAME_COMPONENT FANCC -FANCA IN_SAME_COMPONENT FANCD2 -FANCA IN_SAME_COMPONENT FANCE -FANCA IN_SAME_COMPONENT FANCF -FANCA IN_SAME_COMPONENT FANCG -FANCA IN_SAME_COMPONENT FANCL -FANCA REACTS_WITH FANCA -FANCA REACTS_WITH FANCC -FANCA REACTS_WITH FANCD2 -FANCA REACTS_WITH FANCE -FANCA REACTS_WITH FANCF -FANCA REACTS_WITH FANCG -FANCA REACTS_WITH FANCL -FANCC IN_SAME_COMPONENT FANCA -FANCC IN_SAME_COMPONENT FANCD2 -FANCC IN_SAME_COMPONENT FANCE -FANCC IN_SAME_COMPONENT FANCF -FANCC IN_SAME_COMPONENT FANCG -FANCC IN_SAME_COMPONENT FANCL -FANCC REACTS_WITH FANCA -FANCC REACTS_WITH FANCC -FANCC REACTS_WITH FANCD2 -FANCC REACTS_WITH FANCE -FANCC REACTS_WITH FANCF -FANCC REACTS_WITH FANCG -FANCC REACTS_WITH FANCL -FANCD2 IN_SAME_COMPONENT FANCA -FANCD2 IN_SAME_COMPONENT FANCC -FANCD2 IN_SAME_COMPONENT FANCE -FANCD2 IN_SAME_COMPONENT FANCF -FANCD2 IN_SAME_COMPONENT FANCG -FANCD2 IN_SAME_COMPONENT FANCL -FANCD2 REACTS_WITH FANCA -FANCD2 REACTS_WITH FANCC -FANCD2 REACTS_WITH FANCD2 -FANCD2 REACTS_WITH FANCE -FANCD2 REACTS_WITH FANCF -FANCD2 REACTS_WITH FANCG -FANCD2 REACTS_WITH FANCL -FANCE IN_SAME_COMPONENT FANCA -FANCE IN_SAME_COMPONENT FANCC -FANCE IN_SAME_COMPONENT FANCD2 -FANCE IN_SAME_COMPONENT FANCF -FANCE IN_SAME_COMPONENT FANCG -FANCE IN_SAME_COMPONENT FANCL -FANCE REACTS_WITH FANCA -FANCE REACTS_WITH FANCC -FANCE REACTS_WITH FANCD2 -FANCE REACTS_WITH FANCE -FANCE REACTS_WITH FANCF -FANCE REACTS_WITH FANCG -FANCE REACTS_WITH FANCL -FANCF IN_SAME_COMPONENT FANCA -FANCF IN_SAME_COMPONENT FANCC -FANCF IN_SAME_COMPONENT FANCD2 -FANCF IN_SAME_COMPONENT FANCE -FANCF IN_SAME_COMPONENT FANCG -FANCF IN_SAME_COMPONENT FANCL -FANCF REACTS_WITH FANCA -FANCF REACTS_WITH FANCC -FANCF REACTS_WITH FANCD2 -FANCF REACTS_WITH FANCE -FANCF REACTS_WITH FANCF -FANCF REACTS_WITH FANCG -FANCF REACTS_WITH FANCL -FANCG IN_SAME_COMPONENT FANCA -FANCG IN_SAME_COMPONENT FANCC -FANCG IN_SAME_COMPONENT FANCD2 -FANCG IN_SAME_COMPONENT FANCE -FANCG IN_SAME_COMPONENT FANCF -FANCG IN_SAME_COMPONENT FANCL -FANCG REACTS_WITH FANCA -FANCG REACTS_WITH FANCC -FANCG REACTS_WITH FANCD2 -FANCG REACTS_WITH FANCE -FANCG REACTS_WITH FANCF -FANCG REACTS_WITH FANCG -FANCG REACTS_WITH FANCL -FANCL IN_SAME_COMPONENT FANCA -FANCL IN_SAME_COMPONENT FANCC -FANCL IN_SAME_COMPONENT FANCD2 -FANCL IN_SAME_COMPONENT FANCE -FANCL IN_SAME_COMPONENT FANCF -FANCL IN_SAME_COMPONENT FANCG -FANCL REACTS_WITH FANCA -FANCL REACTS_WITH FANCC -FANCL REACTS_WITH FANCD2 -FANCL REACTS_WITH FANCE -FANCL REACTS_WITH FANCF -FANCL REACTS_WITH FANCG -FANCL REACTS_WITH FANCL -FARP1 STATE_CHANGE RHOA -FARP2 STATE_CHANGE CDC42 -FAS IN_SAME_COMPONENT BTK -FAS IN_SAME_COMPONENT CASP10 -FAS IN_SAME_COMPONENT CASP8 -FAS IN_SAME_COMPONENT CFLAR -FAS IN_SAME_COMPONENT DAXX -FAS IN_SAME_COMPONENT FADD -FAS IN_SAME_COMPONENT FAIM2 -FAS IN_SAME_COMPONENT FASLG -FAS IN_SAME_COMPONENT MAP3K5 -FAS IN_SAME_COMPONENT RIPK1 -FAS IN_SAME_COMPONENT SRC -FAS IN_SAME_COMPONENT SYK -FASLG IN_SAME_COMPONENT BTK -FASLG IN_SAME_COMPONENT CASP10 -FASLG IN_SAME_COMPONENT CASP8 -FASLG IN_SAME_COMPONENT CFLAR -FASLG IN_SAME_COMPONENT DAXX -FASLG IN_SAME_COMPONENT FADD -FASLG IN_SAME_COMPONENT FAS -FASLG IN_SAME_COMPONENT MAP3K5 -FASLG IN_SAME_COMPONENT RIPK1 -FASLG IN_SAME_COMPONENT SRC -FASLG IN_SAME_COMPONENT SYK -FASLG REACTS_WITH BTK -FASLG REACTS_WITH CASP10 -FASLG REACTS_WITH CASP8 -FASLG REACTS_WITH CFLAR -FASLG REACTS_WITH DAXX -FASLG REACTS_WITH FADD -FASLG REACTS_WITH FAS -FASLG REACTS_WITH FASLG -FASLG REACTS_WITH MAP3K5 -FASLG REACTS_WITH RIPK1 -FASLG REACTS_WITH SRC -FASLG REACTS_WITH SYK -FASLG STATE_CHANGE BID -FASLG STATE_CHANGE CASP8 -FASLG STATE_CHANGE FADD -FASLG STATE_CHANGE FAS -FASLG STATE_CHANGE FASLG -FASLG STATE_CHANGE MAP2K6 -FASLG STATE_CHANGE MAP2K7 -FASLG STATE_CHANGE SMPD1 -FAS REACTS_WITH BTK -FAS REACTS_WITH CASP10 -FAS REACTS_WITH CASP8 -FAS REACTS_WITH CFLAR -FAS REACTS_WITH DAXX -FAS REACTS_WITH FADD -FAS REACTS_WITH FAIM2 -FAS REACTS_WITH FAS -FAS REACTS_WITH FASLG -FAS REACTS_WITH MAP3K5 -FAS REACTS_WITH RIPK1 -FAS REACTS_WITH SRC -FAS REACTS_WITH SYK -FAS STATE_CHANGE BID -FAS STATE_CHANGE CASP8 -FAS STATE_CHANGE FADD -FAS STATE_CHANGE FAS -FAS STATE_CHANGE FASLG -FAS STATE_CHANGE MAP2K6 -FAS STATE_CHANGE MAP2K7 -FAS STATE_CHANGE SMPD1 -FBN1 IN_SAME_COMPONENT ITGA5 -FBN1 IN_SAME_COMPONENT ITGAV -FBN1 IN_SAME_COMPONENT ITGB1 -FBN1 IN_SAME_COMPONENT ITGB3 -FBN1 IN_SAME_COMPONENT ITGB6 -FBN1 REACTS_WITH FBN1 -FBN1 REACTS_WITH ITGA5 -FBN1 REACTS_WITH ITGAV -FBN1 REACTS_WITH ITGB1 -FBN1 REACTS_WITH ITGB3 -FBN1 REACTS_WITH ITGB6 -FBXO11 STATE_CHANGE NEDD8 -FBXO11 STATE_CHANGE TP53 -FBXW11 IN_SAME_COMPONENT CTNNB1 -FBXW11 METABOLIC_CATALYSIS GLI3 -FBXW11 REACTS_WITH CTNNB1 -FBXW11 STATE_CHANGE KDR -FBXW11 STATE_CHANGE VEGFA -FBXW7 IN_SAME_COMPONENT BTRC -FBXW7 IN_SAME_COMPONENT CUL1 -FBXW7 IN_SAME_COMPONENT SKP1 -FCER1A IN_SAME_COMPONENT DOK1 -FCER1A IN_SAME_COMPONENT FCER1G -FCER1A IN_SAME_COMPONENT FCGR2B -FCER1A IN_SAME_COMPONENT FYN -FCER1A IN_SAME_COMPONENT IGHE -FCER1A IN_SAME_COMPONENT INPP5D -FCER1A IN_SAME_COMPONENT LYN -FCER1A IN_SAME_COMPONENT MS4A2 -FCER1A IN_SAME_COMPONENT RASA1 -FCER1A IN_SAME_COMPONENT SYK -FCER1A IN_SAME_COMPONENT WIPF1 -FCER1A REACTS_WITH DOK1 -FCER1A REACTS_WITH FCER1A -FCER1A REACTS_WITH FCER1G -FCER1A REACTS_WITH FCGR2B -FCER1A REACTS_WITH FYN -FCER1A REACTS_WITH IGHE -FCER1A REACTS_WITH INPP5D -FCER1A REACTS_WITH LYN -FCER1A REACTS_WITH MS4A2 -FCER1A REACTS_WITH RASA1 -FCER1A REACTS_WITH SYK -FCER1A REACTS_WITH WIPF1 -FCER1A STATE_CHANGE BTK -FCER1A STATE_CHANGE CBL -FCER1A STATE_CHANGE CBLB -FCER1A STATE_CHANGE FER -FCER1A STATE_CHANGE GAB2 -FCER1A STATE_CHANGE HCLS1 -FCER1A STATE_CHANGE ITK -FCER1A STATE_CHANGE KLRG1 -FCER1A STATE_CHANGE LAT -FCER1A STATE_CHANGE LAT2 -FCER1A STATE_CHANGE LCP2 -FCER1A STATE_CHANGE NFATC2 -FCER1A STATE_CHANGE PIK3CA -FCER1A STATE_CHANGE PIK3R1 -FCER1A STATE_CHANGE PLA2G4A -FCER1A STATE_CHANGE PLCG1 -FCER1A STATE_CHANGE PLD2 -FCER1A STATE_CHANGE PTPN11 -FCER1A STATE_CHANGE RAF1 -FCER1A STATE_CHANGE SPHK1 -FCER1A STATE_CHANGE VAV1 -FCER1G IN_SAME_COMPONENT DOK1 -FCER1G IN_SAME_COMPONENT FCER1A -FCER1G IN_SAME_COMPONENT FCGR2B -FCER1G IN_SAME_COMPONENT FYN -FCER1G IN_SAME_COMPONENT IGHE -FCER1G IN_SAME_COMPONENT INPP5D -FCER1G IN_SAME_COMPONENT LYN -FCER1G IN_SAME_COMPONENT MS4A2 -FCER1G IN_SAME_COMPONENT RASA1 -FCER1G IN_SAME_COMPONENT SYK -FCER1G IN_SAME_COMPONENT WIPF1 -FCER1G REACTS_WITH DOK1 -FCER1G REACTS_WITH FCER1A -FCER1G REACTS_WITH FCER1G -FCER1G REACTS_WITH FCGR2B -FCER1G REACTS_WITH FYN -FCER1G REACTS_WITH IGHE -FCER1G REACTS_WITH INPP5D -FCER1G REACTS_WITH LYN -FCER1G REACTS_WITH MS4A2 -FCER1G REACTS_WITH RASA1 -FCER1G REACTS_WITH SYK -FCER1G REACTS_WITH WIPF1 -FCER1G STATE_CHANGE BTK -FCER1G STATE_CHANGE CBL -FCER1G STATE_CHANGE CBLB -FCER1G STATE_CHANGE FER -FCER1G STATE_CHANGE GAB2 -FCER1G STATE_CHANGE HCLS1 -FCER1G STATE_CHANGE ITK -FCER1G STATE_CHANGE KLRG1 -FCER1G STATE_CHANGE LAT -FCER1G STATE_CHANGE LAT2 -FCER1G STATE_CHANGE LCP2 -FCER1G STATE_CHANGE NFATC2 -FCER1G STATE_CHANGE PIK3CA -FCER1G STATE_CHANGE PIK3R1 -FCER1G STATE_CHANGE PLA2G4A -FCER1G STATE_CHANGE PLCG1 -FCER1G STATE_CHANGE PLD2 -FCER1G STATE_CHANGE PTPN11 -FCER1G STATE_CHANGE RAF1 -FCER1G STATE_CHANGE SPHK1 -FCER1G STATE_CHANGE VAV1 -FCGR2A IN_SAME_COMPONENT ITGAM -FCGR2A IN_SAME_COMPONENT ITGB2 -FCGR2A REACTS_WITH FCGR2A -FCGR2A REACTS_WITH ITGAM -FCGR2A REACTS_WITH ITGB2 -FCGR2A STATE_CHANGE LAT -FCGR2B IN_SAME_COMPONENT CD79A -FCGR2B IN_SAME_COMPONENT CD79B -FCGR2B IN_SAME_COMPONENT DOK1 -FCGR2B IN_SAME_COMPONENT FCER1A -FCGR2B IN_SAME_COMPONENT FCER1G -FCGR2B IN_SAME_COMPONENT INPP5D -FCGR2B IN_SAME_COMPONENT MS4A2 -FCGR2B IN_SAME_COMPONENT RASA1 -FCGR2B REACTS_WITH CD79A -FCGR2B REACTS_WITH CD79B -FCGR2B REACTS_WITH DOK1 -FCGR2B REACTS_WITH FCER1A -FCGR2B REACTS_WITH FCER1G -FCGR2B REACTS_WITH FCGR2B -FCGR2B REACTS_WITH INPP5D -FCGR2B REACTS_WITH MS4A2 -FCGR2B REACTS_WITH RASA1 -FCGR2B STATE_CHANGE CSK -FCGR2B STATE_CHANGE DOK1 -FCGR2B STATE_CHANGE INPP5D -FCGR2B STATE_CHANGE RAF1 -FCGR2B STATE_CHANGE RASA1 -FER IN_SAME_COMPONENT CDH2 -FER IN_SAME_COMPONENT CTNNA1 -FER IN_SAME_COMPONENT CTNNB1 -FER IN_SAME_COMPONENT CTNND1 -FER STATE_CHANGE CTTN -FER STATE_CHANGE PTPN1 -FER STATE_CHANGE PTPN11 -FER STATE_CHANGE STAT5A -FES CO_CONTROL BCL6 -FES CO_CONTROL STAT6 -FES IN_SAME_COMPONENT IL2RG -FES IN_SAME_COMPONENT IL4 -FES IN_SAME_COMPONENT IL4R -FES IN_SAME_COMPONENT IRS2 -FES IN_SAME_COMPONENT JAK1 -FES IN_SAME_COMPONENT JAK3 -FES REACTS_WITH FES -FES REACTS_WITH IL2RG -FES REACTS_WITH IL4 -FES REACTS_WITH IL4R -FES REACTS_WITH IRS2 -FES REACTS_WITH JAK1 -FES REACTS_WITH JAK3 -FES STATE_CHANGE PIK3CA -FES STATE_CHANGE PIK3R1 -FGA IN_SAME_COMPONENT FGB -FGA IN_SAME_COMPONENT FGG -FGA IN_SAME_COMPONENT ITGA2B -FGA IN_SAME_COMPONENT ITGA5 -FGA IN_SAME_COMPONENT ITGAM -FGA IN_SAME_COMPONENT ITGAV -FGA IN_SAME_COMPONENT ITGAX -FGA IN_SAME_COMPONENT ITGB1 -FGA IN_SAME_COMPONENT ITGB2 -FGA IN_SAME_COMPONENT ITGB3 -FGA IN_SAME_COMPONENT PLAU -FGA IN_SAME_COMPONENT PLAUR -FGA REACTS_WITH FGA -FGA REACTS_WITH FGB -FGA REACTS_WITH FGG -FGA REACTS_WITH ITGA2B -FGA REACTS_WITH ITGA5 -FGA REACTS_WITH ITGAM -FGA REACTS_WITH ITGAV -FGA REACTS_WITH ITGAX -FGA REACTS_WITH ITGB1 -FGA REACTS_WITH ITGB2 -FGA REACTS_WITH ITGB3 -FGA REACTS_WITH PLAU -FGA REACTS_WITH PLAUR -FGB IN_SAME_COMPONENT FGA -FGB IN_SAME_COMPONENT FGG -FGB IN_SAME_COMPONENT ITGA2B -FGB IN_SAME_COMPONENT ITGA5 -FGB IN_SAME_COMPONENT ITGAM -FGB IN_SAME_COMPONENT ITGAV -FGB IN_SAME_COMPONENT ITGAX -FGB IN_SAME_COMPONENT ITGB1 -FGB IN_SAME_COMPONENT ITGB2 -FGB IN_SAME_COMPONENT ITGB3 -FGB IN_SAME_COMPONENT PLAU -FGB IN_SAME_COMPONENT PLAUR -FGB REACTS_WITH FGA -FGB REACTS_WITH FGB -FGB REACTS_WITH FGG -FGB REACTS_WITH ITGA2B -FGB REACTS_WITH ITGA5 -FGB REACTS_WITH ITGAM -FGB REACTS_WITH ITGAV -FGB REACTS_WITH ITGAX -FGB REACTS_WITH ITGB1 -FGB REACTS_WITH ITGB2 -FGB REACTS_WITH ITGB3 -FGB REACTS_WITH PLAU -FGB REACTS_WITH PLAUR -FGD1 STATE_CHANGE CDC42 -FGF19 IN_SAME_COMPONENT FGFR4 -FGF19 IN_SAME_COMPONENT KLB -FGF19 REACTS_WITH FGF19 -FGF19 REACTS_WITH FGFR4 -FGF19 REACTS_WITH KLB -FGF1 IN_SAME_COMPONENT SSH1 -FGF1 REACTS_WITH FGF1 -FGF1 REACTS_WITH PAK4 -FGF1 REACTS_WITH SSH1 -FGF23 IN_SAME_COMPONENT KLB -FGF23 REACTS_WITH FGF23 -FGF23 REACTS_WITH KLB -FGF2 IN_SAME_COMPONENT FGFR1 -FGF2 IN_SAME_COMPONENT GPC1 -FGF2 IN_SAME_COMPONENT SDC4 -FGF2 METABOLIC_CATALYSIS ANGPT2 -FGF2 REACTS_WITH FGF2 -FGF2 REACTS_WITH FGFR1 -FGF2 REACTS_WITH GPC1 -FGF2 REACTS_WITH SDC4 -FGF2 STATE_CHANGE F11R -FGF2 STATE_CHANGE ITGAV -FGF2 STATE_CHANGE ITGB3 -FGF7 CO_CONTROL GPC3 -FGFR1 IN_SAME_COMPONENT FGF2 -FGFR1 IN_SAME_COMPONENT GPC1 -FGFR1 IN_SAME_COMPONENT NCAM1 -FGFR1 IN_SAME_COMPONENT SDC4 -FGFR1 REACTS_WITH FGF2 -FGFR1 REACTS_WITH FGFR1 -FGFR1 REACTS_WITH GPC1 -FGFR1 REACTS_WITH NCAM1 -FGFR1 REACTS_WITH SDC4 -FGFR1 STATE_CHANGE PLCG1 -FGFR2 IN_SAME_COMPONENT NCAM1 -FGFR2 REACTS_WITH FGFR2 -FGFR2 REACTS_WITH NCAM1 -FGFR4 IN_SAME_COMPONENT FGF19 -FGFR4 IN_SAME_COMPONENT KLB -FGFR4 REACTS_WITH FGF19 -FGFR4 REACTS_WITH FGFR4 -FGFR4 REACTS_WITH KLB -FGG IN_SAME_COMPONENT FGA -FGG IN_SAME_COMPONENT FGB -FGG IN_SAME_COMPONENT ITGA2B -FGG IN_SAME_COMPONENT ITGA5 -FGG IN_SAME_COMPONENT ITGAM -FGG IN_SAME_COMPONENT ITGAV -FGG IN_SAME_COMPONENT ITGAX -FGG IN_SAME_COMPONENT ITGB1 -FGG IN_SAME_COMPONENT ITGB2 -FGG IN_SAME_COMPONENT ITGB3 -FGG IN_SAME_COMPONENT PLAU -FGG IN_SAME_COMPONENT PLAUR -FGG REACTS_WITH FGA -FGG REACTS_WITH FGB -FGG REACTS_WITH FGG -FGG REACTS_WITH ITGA2B -FGG REACTS_WITH ITGA5 -FGG REACTS_WITH ITGAM -FGG REACTS_WITH ITGAV -FGG REACTS_WITH ITGAX -FGG REACTS_WITH ITGB1 -FGG REACTS_WITH ITGB2 -FGG REACTS_WITH ITGB3 -FGG REACTS_WITH PLAU -FGG REACTS_WITH PLAUR -FHL2 CO_CONTROL AR -FHL2 CO_CONTROL PELP1 -FHL2 IN_SAME_COMPONENT FOXO1 -FHL2 IN_SAME_COMPONENT SIRT1 -FHL2 METABOLIC_CATALYSIS KLK3 -FHL2 REACTS_WITH FHL2 -FHL2 REACTS_WITH FOXO1 -FHL2 REACTS_WITH SIRT1 -FIGF IN_SAME_COMPONENT COL1A1 -FIGF IN_SAME_COMPONENT COL1A2 -FIGF IN_SAME_COMPONENT FLT4 -FIGF IN_SAME_COMPONENT FN1 -FIGF IN_SAME_COMPONENT ITGA1 -FIGF IN_SAME_COMPONENT ITGA2 -FIGF IN_SAME_COMPONENT ITGA4 -FIGF IN_SAME_COMPONENT ITGA5 -FIGF IN_SAME_COMPONENT ITGA9 -FIGF IN_SAME_COMPONENT ITGB1 -FIGF REACTS_WITH COL1A1 -FIGF REACTS_WITH COL1A2 -FIGF REACTS_WITH FIGF -FIGF REACTS_WITH FLT4 -FIGF REACTS_WITH FN1 -FIGF REACTS_WITH ITGA1 -FIGF REACTS_WITH ITGA2 -FIGF REACTS_WITH ITGA4 -FIGF REACTS_WITH ITGA5 -FIGF REACTS_WITH ITGA9 -FIGF REACTS_WITH ITGB1 -FKBP1A IN_SAME_COMPONENT ACVR1 -FKBP1A IN_SAME_COMPONENT ACVRL1 -FKBP1A IN_SAME_COMPONENT CSNK2B -FKBP1A IN_SAME_COMPONENT TGFBR1 -FKBP1A METABOLIC_CATALYSIS SNCA -FKBP1A REACTS_WITH ACVR1 -FKBP1A REACTS_WITH ACVRL1 -FKBP1A REACTS_WITH AMH -FKBP1A REACTS_WITH AMHR2 -FKBP1A REACTS_WITH BMP7 -FKBP1A REACTS_WITH BMPR2 -FKBP1A REACTS_WITH CSNK2B -FKBP1A REACTS_WITH FKBP1A -FKBP1A REACTS_WITH GDF2 -FKBP1A REACTS_WITH INHBA -FKBP1A REACTS_WITH TGFB1 -FKBP1A REACTS_WITH TGFB3 -FKBP1A REACTS_WITH TGFBR1 -FKBP1A REACTS_WITH TGFBR2 -FKBP1A REACTS_WITH TGFBR3 -FKBP1A STATE_CHANGE CAV1 -FKBP1A STATE_CHANGE SMAD7 -FKBP1A STATE_CHANGE TGFBR1 -FKBP1A STATE_CHANGE TGFBR2 -FKBP1A STATE_CHANGE ZFYVE9 -FKBP3 IN_SAME_COMPONENT HDAC1 -FKBP3 IN_SAME_COMPONENT HDAC2 -FKBP3 REACTS_WITH FKBP3 -FKBP3 REACTS_WITH HDAC1 -FKBP3 REACTS_WITH HDAC2 -FKBP4 CO_CONTROL AR -FKBP4 IN_SAME_COMPONENT HSP90AA1 -FKBP4 METABOLIC_CATALYSIS KLK3 -FKBP4 REACTS_WITH FKBP4 -FKBP4 REACTS_WITH FKBP5 -FKBP4 REACTS_WITH HSP90AA1 -FKBP5 IN_SAME_COMPONENT HSP90AA1 -FKBP5 IN_SAME_COMPONENT PPP5C -FKBP5 IN_SAME_COMPONENT SFN -FKBP5 REACTS_WITH FKBP4 -FKBP5 REACTS_WITH FKBP5 -FKBP5 REACTS_WITH HSP90AA1 -FKBP5 REACTS_WITH PPP5C -FKBP5 REACTS_WITH SFN -FKBP8 IN_SAME_COMPONENT BCL2 -FKBP8 IN_SAME_COMPONENT CALM1 -FKBP8 REACTS_WITH BCL2 -FKBP8 REACTS_WITH CALM1 -FKBP8 REACTS_WITH FKBP8 -FLNA CO_CONTROL PDPK1 -FLNA CO_CONTROL PRKCQ -FLNA CO_CONTROL PRKCZ -FLNA IN_SAME_COMPONENT FZD2 -FLNA IN_SAME_COMPONENT PRKCQ -FLNA IN_SAME_COMPONENT ROR2 -FLNA IN_SAME_COMPONENT WNT5A -FLNA REACTS_WITH FLNA -FLNA REACTS_WITH FZD2 -FLNA REACTS_WITH PRKCQ -FLNA REACTS_WITH ROR2 -FLNA REACTS_WITH WNT5A -FLT1 CO_CONTROL S1PR3 -FLT1 IN_SAME_COMPONENT CBL -FLT1 IN_SAME_COMPONENT CD2AP -FLT1 IN_SAME_COMPONENT GPC1 -FLT1 IN_SAME_COMPONENT KDR -FLT1 IN_SAME_COMPONENT NCK1 -FLT1 IN_SAME_COMPONENT NRP1 -FLT1 IN_SAME_COMPONENT NRP2 -FLT1 IN_SAME_COMPONENT PGF -FLT1 IN_SAME_COMPONENT PTPN11 -FLT1 IN_SAME_COMPONENT VEGFA -FLT1 IN_SAME_COMPONENT VEGFB -FLT1 METABOLIC_CATALYSIS AKT3 -FLT1 REACTS_WITH CBL -FLT1 REACTS_WITH CD2AP -FLT1 REACTS_WITH FLT1 -FLT1 REACTS_WITH GPC1 -FLT1 REACTS_WITH NCK1 -FLT1 REACTS_WITH NRP1 -FLT1 REACTS_WITH NRP2 -FLT1 REACTS_WITH PGF -FLT1 REACTS_WITH PTPN11 -FLT1 REACTS_WITH SHC2 -FLT1 REACTS_WITH VEGFA -FLT1 REACTS_WITH VEGFB -FLT1 STATE_CHANGE GAB1 -FLT1 STATE_CHANGE PIK3CA -FLT1 STATE_CHANGE PIK3R1 -FLT1 STATE_CHANGE PLCG1 -FLT1 STATE_CHANGE RASA1 -FLT4 IN_SAME_COMPONENT COL1A1 -FLT4 IN_SAME_COMPONENT COL1A2 -FLT4 IN_SAME_COMPONENT CRK -FLT4 IN_SAME_COMPONENT FIGF -FLT4 IN_SAME_COMPONENT FN1 -FLT4 IN_SAME_COMPONENT ITGA1 -FLT4 IN_SAME_COMPONENT ITGA2 -FLT4 IN_SAME_COMPONENT ITGA4 -FLT4 IN_SAME_COMPONENT ITGA5 -FLT4 IN_SAME_COMPONENT ITGB1 -FLT4 REACTS_WITH COL1A1 -FLT4 REACTS_WITH COL1A2 -FLT4 REACTS_WITH CRK -FLT4 REACTS_WITH FIGF -FLT4 REACTS_WITH FLT4 -FLT4 REACTS_WITH FN1 -FLT4 REACTS_WITH ITGA1 -FLT4 REACTS_WITH ITGA2 -FLT4 REACTS_WITH ITGA4 -FLT4 REACTS_WITH ITGA5 -FLT4 REACTS_WITH ITGB1 -FLT4 STATE_CHANGE MAP2K4 -FLT4 STATE_CHANGE SOS1 -FN1 CO_CONTROL ITGA5 -FN1 CO_CONTROL ITGB1 -FN1 CO_CONTROL PRKCA -FN1 CO_CONTROL PTPRA -FN1 CO_CONTROL RHOA -FN1 CO_CONTROL SDC4 -FN1 IN_SAME_COMPONENT FIGF -FN1 IN_SAME_COMPONENT FLT4 -FN1 IN_SAME_COMPONENT GIT1 -FN1 IN_SAME_COMPONENT ITGA2 -FN1 IN_SAME_COMPONENT ITGA2B -FN1 IN_SAME_COMPONENT ITGA4 -FN1 IN_SAME_COMPONENT ITGA5 -FN1 IN_SAME_COMPONENT ITGA8 -FN1 IN_SAME_COMPONENT ITGA9 -FN1 IN_SAME_COMPONENT ITGAV -FN1 IN_SAME_COMPONENT ITGB1 -FN1 IN_SAME_COMPONENT ITGB3 -FN1 IN_SAME_COMPONENT ITGB6 -FN1 IN_SAME_COMPONENT ITGB7 -FN1 IN_SAME_COMPONENT MYH2 -FN1 IN_SAME_COMPONENT PLAU -FN1 IN_SAME_COMPONENT PLAUR -FN1 IN_SAME_COMPONENT PXN -FN1 IN_SAME_COMPONENT SDC2 -FN1 IN_SAME_COMPONENT YWHAZ -FN1 REACTS_WITH FIGF -FN1 REACTS_WITH FLT4 -FN1 REACTS_WITH FN1 -FN1 REACTS_WITH GIT1 -FN1 REACTS_WITH ITGA2 -FN1 REACTS_WITH ITGA2B -FN1 REACTS_WITH ITGA4 -FN1 REACTS_WITH ITGA5 -FN1 REACTS_WITH ITGA8 -FN1 REACTS_WITH ITGA9 -FN1 REACTS_WITH ITGAV -FN1 REACTS_WITH ITGB1 -FN1 REACTS_WITH ITGB3 -FN1 REACTS_WITH ITGB6 -FN1 REACTS_WITH ITGB7 -FN1 REACTS_WITH MYH2 -FN1 REACTS_WITH PLAU -FN1 REACTS_WITH PLAUR -FN1 REACTS_WITH PXN -FN1 REACTS_WITH SDC2 -FN1 REACTS_WITH YWHAZ -FN1 STATE_CHANGE ANGPT1 -FN1 STATE_CHANGE IGF1 -FN1 STATE_CHANGE IGF1R -FN1 STATE_CHANGE IRS1 -FN1 STATE_CHANGE ITGA5 -FN1 STATE_CHANGE ITGB1 -FN1 STATE_CHANGE PRKACA -FN1 STATE_CHANGE PRKACB -FN1 STATE_CHANGE PRKAR1A -FN1 STATE_CHANGE PRKAR1B -FN1 STATE_CHANGE RAC1 -FN1 STATE_CHANGE SDC4 -FN1 STATE_CHANGE SRC -FN1 STATE_CHANGE TEK -FOSB IN_SAME_COMPONENT JUN -FOSB IN_SAME_COMPONENT JUNB -FOSB IN_SAME_COMPONENT JUND -FOSB IN_SAME_COMPONENT MAFG -FOSB METABOLIC_CATALYSIS MMP1 -FOSB METABOLIC_CATALYSIS MMP9 -FOSB METABOLIC_CATALYSIS TH -FOSB REACTS_WITH FOSB -FOSB REACTS_WITH JUN -FOSB REACTS_WITH JUNB -FOSB REACTS_WITH JUND -FOSB REACTS_WITH MAFG -FOS CO_CONTROL ARNT -FOS CO_CONTROL ATF2 -FOS CO_CONTROL BATF3 -FOS CO_CONTROL CEBPB -FOS CO_CONTROL CREM -FOS CO_CONTROL EGR2 -FOS CO_CONTROL EGR3 -FOS CO_CONTROL ELF1 -FOS CO_CONTROL ESR1 -FOS CO_CONTROL ETS1 -FOS CO_CONTROL FOS -FOS CO_CONTROL FOXA1 -FOS CO_CONTROL FOXP3 -FOS CO_CONTROL GATA2 -FOS CO_CONTROL GATA3 -FOS CO_CONTROL HDAC1 -FOS CO_CONTROL HIF1A -FOS CO_CONTROL IFNAR1 -FOS CO_CONTROL IFNAR2 -FOS CO_CONTROL JUN -FOS CO_CONTROL MAPK9 -FOS CO_CONTROL NFATC2 -FOS CO_CONTROL POU2F1 -FOS CO_CONTROL PPARG -FOS CO_CONTROL PRKCQ -FOS CO_CONTROL RNF128 -FOS CO_CONTROL SMAD4 -FOS CO_CONTROL SP1 -FOS CO_CONTROL STAT3 -FOS CO_CONTROL STAT4 -FOS CO_CONTROL TBX21 -FOS CO_CONTROL TRIP6 -FOS IN_SAME_COMPONENT CRTC1 -FOS IN_SAME_COMPONENT CTNNB1 -FOS IN_SAME_COMPONENT ESR1 -FOS IN_SAME_COMPONENT GATA2 -FOS IN_SAME_COMPONENT JUN -FOS IN_SAME_COMPONENT JUNB -FOS IN_SAME_COMPONENT JUND -FOS IN_SAME_COMPONENT NFATC2 -FOS IN_SAME_COMPONENT SMAD4 -FOS IN_SAME_COMPONENT TCF7L2 -FOS IN_SAME_COMPONENT TRIP6 -FOSL1 CO_CONTROL FOSL1 -FOSL1 CO_CONTROL JUN -FOSL1 CO_CONTROL JUNB -FOSL1 CO_CONTROL TXLNG -FOSL1 IN_SAME_COMPONENT EP300 -FOSL1 IN_SAME_COMPONENT JUN -FOSL1 IN_SAME_COMPONENT JUNB -FOSL1 IN_SAME_COMPONENT JUND -FOSL1 IN_SAME_COMPONENT NFATC2 -FOSL1 IN_SAME_COMPONENT SP1 -FOSL1 IN_SAME_COMPONENT TXLNG -FOSL1 IN_SAME_COMPONENT USF2 -FOSL1 METABOLIC_CATALYSIS CCL2 -FOSL1 METABOLIC_CATALYSIS CCNA2 -FOSL1 METABOLIC_CATALYSIS CCND1 -FOSL1 METABOLIC_CATALYSIS DCN -FOSL1 METABOLIC_CATALYSIS DMTF1 -FOSL1 METABOLIC_CATALYSIS FOSL1 -FOSL1 METABOLIC_CATALYSIS HMOX1 -FOSL1 METABOLIC_CATALYSIS IL2 -FOSL1 METABOLIC_CATALYSIS IL6 -FOSL1 METABOLIC_CATALYSIS IL8 -FOSL1 METABOLIC_CATALYSIS ITGB4 -FOSL1 METABOLIC_CATALYSIS IVL -FOSL1 METABOLIC_CATALYSIS MGP -FOSL1 METABOLIC_CATALYSIS MMP1 -FOSL1 METABOLIC_CATALYSIS MMP2 -FOSL1 METABOLIC_CATALYSIS MMP9 -FOSL1 METABOLIC_CATALYSIS NOS3 -FOSL1 METABOLIC_CATALYSIS PLAU -FOSL1 METABOLIC_CATALYSIS PLAUR -FOSL1 METABOLIC_CATALYSIS THBD -FOSL1 REACTS_WITH EP300 -FOSL1 REACTS_WITH FOSL1 -FOSL1 REACTS_WITH JUN -FOSL1 REACTS_WITH JUNB -FOSL1 REACTS_WITH JUND -FOSL1 REACTS_WITH NFATC2 -FOSL1 REACTS_WITH SP1 -FOSL1 REACTS_WITH TXLNG -FOSL1 REACTS_WITH USF2 -FOSL2 IN_SAME_COMPONENT JUN -FOSL2 IN_SAME_COMPONENT JUNB -FOSL2 IN_SAME_COMPONENT JUND -FOSL2 REACTS_WITH FOSL2 -FOSL2 REACTS_WITH JUN -FOSL2 REACTS_WITH JUNB -FOSL2 REACTS_WITH JUND -FOS METABOLIC_CATALYSIS ACTA1 -FOS METABOLIC_CATALYSIS AGT -FOS METABOLIC_CATALYSIS CBFB -FOS METABOLIC_CATALYSIS CCND1 -FOS METABOLIC_CATALYSIS CD40LG -FOS METABOLIC_CATALYSIS CDKN1B -FOS METABOLIC_CATALYSIS CSF2 -FOS METABOLIC_CATALYSIS CYR61 -FOS METABOLIC_CATALYSIS EDN1 -FOS METABOLIC_CATALYSIS ESR1 -FOS METABOLIC_CATALYSIS ETS1 -FOS METABOLIC_CATALYSIS FASLG -FOS METABOLIC_CATALYSIS FOS -FOS METABOLIC_CATALYSIS FOSL2 -FOS METABOLIC_CATALYSIS GJA1 -FOS METABOLIC_CATALYSIS IFNG -FOS METABOLIC_CATALYSIS IL13 -FOS METABOLIC_CATALYSIS IL2 -FOS METABOLIC_CATALYSIS IL2RA -FOS METABOLIC_CATALYSIS IL3 -FOS METABOLIC_CATALYSIS IL4 -FOS METABOLIC_CATALYSIS IL5 -FOS METABOLIC_CATALYSIS IL8 -FOS METABOLIC_CATALYSIS JUN -FOS METABOLIC_CATALYSIS KRT17 -FOS METABOLIC_CATALYSIS KRT5 -FOS METABOLIC_CATALYSIS LBP -FOS METABOLIC_CATALYSIS MMP1 -FOS METABOLIC_CATALYSIS MMP2 -FOS METABOLIC_CATALYSIS NPPA -FOS METABOLIC_CATALYSIS NR3C1 -FOS METABOLIC_CATALYSIS NTS -FOS METABOLIC_CATALYSIS PENK -FOS METABOLIC_CATALYSIS PLAU -FOS METABOLIC_CATALYSIS PTGS2 -FOS METABOLIC_CATALYSIS SMAD7 -FOS METABOLIC_CATALYSIS TCF7L2 -FOS METABOLIC_CATALYSIS TERT -FOS METABOLIC_CATALYSIS TGFB1 -FOS METABOLIC_CATALYSIS TH -FOS METABOLIC_CATALYSIS TIMP1 -FOS METABOLIC_CATALYSIS TP53 -FOS REACTS_WITH BATF3 -FOS REACTS_WITH CREM -FOS REACTS_WITH CRTC1 -FOS REACTS_WITH CTNNB1 -FOS REACTS_WITH ESR1 -FOS REACTS_WITH FOS -FOS REACTS_WITH FOXP3 -FOS REACTS_WITH GATA2 -FOS REACTS_WITH JUN -FOS REACTS_WITH JUNB -FOS REACTS_WITH JUND -FOS REACTS_WITH NFATC2 -FOS REACTS_WITH PPARG -FOS REACTS_WITH SMAD4 -FOS REACTS_WITH TCF7L2 -FOS REACTS_WITH TRIP6 -FOS STATE_CHANGE ELK1 -FOXA1 CO_CONTROL AR -FOXA1 CO_CONTROL BRCA1 -FOXA1 CO_CONTROL CEBPB -FOXA1 CO_CONTROL ESR1 -FOXA1 CO_CONTROL FOS -FOXA1 CO_CONTROL FOXA2 -FOXA1 CO_CONTROL JUN -FOXA1 CO_CONTROL NCOA3 -FOXA1 CO_CONTROL NR2F2 -FOXA1 CO_CONTROL POU2F1 -FOXA1 CO_CONTROL SP1 -FOXA1 CO_CONTROL TP53 -FOXA1 IN_SAME_COMPONENT AR -FOXA1 METABOLIC_CATALYSIS AFP -FOXA1 METABOLIC_CATALYSIS AP1B1 -FOXA1 METABOLIC_CATALYSIS APOB -FOXA1 METABOLIC_CATALYSIS ATP5J -FOXA1 METABOLIC_CATALYSIS CDKN1B -FOXA1 METABOLIC_CATALYSIS COL18A1 -FOXA1 METABOLIC_CATALYSIS CYP2C18 -FOXA1 METABOLIC_CATALYSIS DSCAM -FOXA1 METABOLIC_CATALYSIS FOXA2 -FOXA1 METABOLIC_CATALYSIS GCG -FOXA1 METABOLIC_CATALYSIS INS -FOXA1 METABOLIC_CATALYSIS KLK3 -FOXA1 METABOLIC_CATALYSIS NDUFV3 -FOXA1 METABOLIC_CATALYSIS NKX2-1 -FOXA1 METABOLIC_CATALYSIS NKX3-1 -FOXA1 METABOLIC_CATALYSIS NRIP1 -FOXA1 METABOLIC_CATALYSIS PISD -FOXA1 METABOLIC_CATALYSIS SCGB1A1 -FOXA1 METABOLIC_CATALYSIS SERPINA1 -FOXA1 METABOLIC_CATALYSIS SFTPD -FOXA1 METABOLIC_CATALYSIS SHH -FOXA1 METABOLIC_CATALYSIS SOD1 -FOXA1 METABOLIC_CATALYSIS TFF1 -FOXA1 METABOLIC_CATALYSIS VTN -FOXA1 METABOLIC_CATALYSIS XBP1 -FOXA1 REACTS_WITH AR -FOXA1 REACTS_WITH FOXA1 -FOXA2 CO_CONTROL FOXA1 -FOXA2 CO_CONTROL FOXF1 -FOXA2 CO_CONTROL HNF1A -FOXA2 CO_CONTROL HNF4A -FOXA2 CO_CONTROL INS -FOXA2 CO_CONTROL NF1 -FOXA2 CO_CONTROL NR3C1 -FOXA2 CO_CONTROL SP1 -FOXA2 METABOLIC_CATALYSIS ABCC8 -FOXA2 METABOLIC_CATALYSIS ACADM -FOXA2 METABOLIC_CATALYSIS ACADVL -FOXA2 METABOLIC_CATALYSIS ALAS1 -FOXA2 METABOLIC_CATALYSIS ALDOB -FOXA2 METABOLIC_CATALYSIS APOA1 -FOXA2 METABOLIC_CATALYSIS BDH1 -FOXA2 METABOLIC_CATALYSIS DLK1 -FOXA2 METABOLIC_CATALYSIS F2 -FOXA2 METABOLIC_CATALYSIS FOXA1 -FOXA2 METABOLIC_CATALYSIS GCG -FOXA2 METABOLIC_CATALYSIS GCK -FOXA2 METABOLIC_CATALYSIS HADH -FOXA2 METABOLIC_CATALYSIS HMGCS1 -FOXA2 METABOLIC_CATALYSIS HNF4A -FOXA2 METABOLIC_CATALYSIS IGFBP1 -FOXA2 METABOLIC_CATALYSIS KCNJ11 -FOXA2 METABOLIC_CATALYSIS NKX2-1 -FOXA2 METABOLIC_CATALYSIS PDX1 -FOXA2 METABOLIC_CATALYSIS PKLR -FOXA2 METABOLIC_CATALYSIS SCGB1A1 -FOXA2 METABOLIC_CATALYSIS SLC2A2 -FOXA2 METABOLIC_CATALYSIS UCP2 -FOXA3 CO_CONTROL CREB1 -FOXA3 CO_CONTROL HNF1A -FOXA3 METABOLIC_CATALYSIS G6PC -FOXF1 CO_CONTROL FOXA2 -FOXF1 METABOLIC_CATALYSIS NKX2-1 -FOXG1 CO_CONTROL SMAD4 -FOXG1 IN_SAME_COMPONENT SMAD4 -FOXG1 METABOLIC_CATALYSIS CDKN1A -FOXG1 REACTS_WITH FOXG1 -FOXG1 REACTS_WITH SMAD4 -FOXH1 CO_CONTROL SMAD4 -FOXH1 IN_SAME_COMPONENT DCP1A -FOXH1 IN_SAME_COMPONENT NKX2-5 -FOXH1 IN_SAME_COMPONENT SMAD2 -FOXH1 IN_SAME_COMPONENT SMAD4 -FOXH1 METABOLIC_CATALYSIS GSC -FOXH1 METABOLIC_CATALYSIS MEF2C -FOXH1 REACTS_WITH DCP1A -FOXH1 REACTS_WITH FOXH1 -FOXH1 REACTS_WITH NKX2-5 -FOXH1 REACTS_WITH SMAD2 -FOXH1 REACTS_WITH SMAD4 -FOXM1 METABOLIC_CATALYSIS AURKB -FOXM1 METABOLIC_CATALYSIS BIRC5 -FOXM1 METABOLIC_CATALYSIS CCNB1 -FOXM1 METABOLIC_CATALYSIS CCNB2 -FOXM1 METABOLIC_CATALYSIS CDK1 -FOXM1 METABOLIC_CATALYSIS CENPA -FOXM1 METABOLIC_CATALYSIS CENPB -FOXM1 METABOLIC_CATALYSIS CENPF -FOXM1 METABOLIC_CATALYSIS CKS1B -FOXM1 METABOLIC_CATALYSIS ETV5 -FOXM1 METABOLIC_CATALYSIS GAS1 -FOXM1 METABOLIC_CATALYSIS LAMA4 -FOXM1 METABOLIC_CATALYSIS NEK2 -FOXM1 METABOLIC_CATALYSIS NFATC3 -FOXM1 METABOLIC_CATALYSIS PLK1 -FOXM1 METABOLIC_CATALYSIS SKP2 -FOXO1 CO_CONTROL AR -FOXO1 CO_CONTROL GATA2 -FOXO1 CO_CONTROL NCOA2 -FOXO1 CO_CONTROL POU2F1 -FOXO1 CO_CONTROL PTPN11 -FOXO1 CO_CONTROL SOS1 -FOXO1 IN_SAME_COMPONENT FHL2 -FOXO1 IN_SAME_COMPONENT SIRT1 -FOXO1 IN_SAME_COMPONENT SKP2 -FOXO1 IN_SAME_COMPONENT STAT3 -FOXO1 METABOLIC_CATALYSIS A2M -FOXO1 METABOLIC_CATALYSIS ANGPT2 -FOXO1 METABOLIC_CATALYSIS CDKN1B -FOXO1 METABOLIC_CATALYSIS G6PC -FOXO1 METABOLIC_CATALYSIS KLK3 -FOXO1 METABOLIC_CATALYSIS SOD2 -FOXO1 REACTS_WITH FHL2 -FOXO1 REACTS_WITH FOXO1 -FOXO1 REACTS_WITH SIRT1 -FOXO1 REACTS_WITH SKP2 -FOXO1 REACTS_WITH STAT3 -FOXO3 CO_CONTROL FOXO3 -FOXO3 CO_CONTROL MAX -FOXO3 CO_CONTROL MYC -FOXO3 CO_CONTROL SIRT1 -FOXO3 IN_SAME_COMPONENT SIRT1 -FOXO3 METABOLIC_CATALYSIS BCL2L11 -FOXO3 METABOLIC_CATALYSIS BCL6 -FOXO3 METABOLIC_CATALYSIS CAT -FOXO3 METABOLIC_CATALYSIS CCNB1 -FOXO3 METABOLIC_CATALYSIS CDKN1B -FOXO3 METABOLIC_CATALYSIS FASLG -FOXO3 METABOLIC_CATALYSIS FBXO32 -FOXO3 METABOLIC_CATALYSIS GADD45A -FOXO3 METABOLIC_CATALYSIS PLK1 -FOXO3 METABOLIC_CATALYSIS RBL2 -FOXO3 METABOLIC_CATALYSIS SOD2 -FOXO3 REACTS_WITH FOXO3 -FOXO3 REACTS_WITH SIRT1 -FOXO4 IN_SAME_COMPONENT SIRT1 -FOXO4 METABOLIC_CATALYSIS BCL6 -FOXO4 METABOLIC_CATALYSIS GADD45A -FOXO4 METABOLIC_CATALYSIS RBL2 -FOXO4 METABOLIC_CATALYSIS SOD2 -FOXO4 METABOLIC_CATALYSIS ZFAND5 -FOXO4 REACTS_WITH FOXO4 -FOXO4 REACTS_WITH SIRT1 -FOXP3 CO_CONTROL FOS -FOXP3 CO_CONTROL JUN -FOXP3 CO_CONTROL NFATC2 -FOXP3 IN_SAME_COMPONENT NFATC2 -FOXP3 METABOLIC_CATALYSIS CTLA4 -FOXP3 METABOLIC_CATALYSIS IL2 -FOXP3 METABOLIC_CATALYSIS IL2RA -FOXP3 REACTS_WITH FOS -FOXP3 REACTS_WITH FOXP3 -FOXP3 REACTS_WITH JUN -FOXP3 REACTS_WITH NFATC2 -FRAT1 STATE_CHANGE APC -FRAT1 STATE_CHANGE AXIN1 -FRAT1 STATE_CHANGE CTNNB1 -FRS2 CO_CONTROL IL17RD -FRS2 IN_SAME_COMPONENT CBL -FRS2 IN_SAME_COMPONENT GAB1 -FRS2 IN_SAME_COMPONENT GDNF -FRS2 IN_SAME_COMPONENT GFRA1 -FRS2 IN_SAME_COMPONENT PTPN11 -FRS2 IN_SAME_COMPONENT SDC2 -FRS2 IN_SAME_COMPONENT SHC1 -FRS2 IN_SAME_COMPONENT SOS1 -FRS2 IN_SAME_COMPONENT SPRY2 -FRS2 REACTS_WITH CBL -FRS2 REACTS_WITH FRS2 -FRS2 REACTS_WITH GAB1 -FRS2 REACTS_WITH GDNF -FRS2 REACTS_WITH GFRA1 -FRS2 REACTS_WITH PTPN11 -FRS2 REACTS_WITH SDC2 -FRS2 REACTS_WITH SHC1 -FRS2 REACTS_WITH SOS1 -FRS2 REACTS_WITH SPRY2 -FRS2 STATE_CHANGE PIK3CA -FRS2 STATE_CHANGE PIK3R1 -FST IN_SAME_COMPONENT BMP7 -FST IN_SAME_COMPONENT BMPR2 -FST REACTS_WITH BAMBI -FST REACTS_WITH BMP7 -FST REACTS_WITH BMPR2 -FST REACTS_WITH FST -FURIN STATE_CHANGE GPC3 -FURIN STATE_CHANGE NGF -FURIN STATE_CHANGE NOTCH1 -FYB IN_SAME_COMPONENT GRAP2 -FYB IN_SAME_COMPONENT LCP2 -FYB REACTS_WITH FYB -FYB REACTS_WITH GRAP2 -FYB REACTS_WITH LCP2 -FYN CO_CONTROL CD247 -FYN CO_CONTROL CD3D -FYN CO_CONTROL CD3E -FYN CO_CONTROL CD3G -FYN CO_CONTROL CD4 -FYN CO_CONTROL HLA-DRA -FYN CO_CONTROL HLA-DRB1 -FYN CO_CONTROL LCK -FYN CO_CONTROL PTPN11 -FYN CO_CONTROL SRC -FYN CO_CONTROL ZAP70 -FYN IN_SAME_COMPONENT ARHGEF2 -FYN IN_SAME_COMPONENT B2M -FYN IN_SAME_COMPONENT BCAR1 -FYN IN_SAME_COMPONENT CD247 -FYN IN_SAME_COMPONENT CD3D -FYN IN_SAME_COMPONENT CD3E -FYN IN_SAME_COMPONENT CD3G -FYN IN_SAME_COMPONENT CD4 -FYN IN_SAME_COMPONENT CD8A -FYN IN_SAME_COMPONENT CD8B -FYN IN_SAME_COMPONENT CTTN -FYN IN_SAME_COMPONENT DAB1 -FYN IN_SAME_COMPONENT DCC -FYN IN_SAME_COMPONENT FCER1A -FYN IN_SAME_COMPONENT FCER1G -FYN IN_SAME_COMPONENT GRIN2A -FYN IN_SAME_COMPONENT GRIN2B -FYN IN_SAME_COMPONENT HLA-A -FYN IN_SAME_COMPONENT HLA-DRA -FYN IN_SAME_COMPONENT HLA-DRB1 -FYN IN_SAME_COMPONENT IGHE -FYN IN_SAME_COMPONENT IL2 -FYN IN_SAME_COMPONENT IL2RB -FYN IN_SAME_COMPONENT IL2RG -FYN IN_SAME_COMPONENT JAK1 -FYN IN_SAME_COMPONENT JAK3 -FYN IN_SAME_COMPONENT KDR -FYN IN_SAME_COMPONENT LRP8 -FYN IN_SAME_COMPONENT MAP2K7 -FYN IN_SAME_COMPONENT MAP3K11 -FYN IN_SAME_COMPONENT MAPK8 -FYN IN_SAME_COMPONENT MS4A2 -FYN IN_SAME_COMPONENT NTN1 -FYN IN_SAME_COMPONENT PAK2 -FYN IN_SAME_COMPONENT PIK3CA -FYN IN_SAME_COMPONENT PIK3R1 -FYN IN_SAME_COMPONENT RELN -FYN IN_SAME_COMPONENT SDC3 -FYN IN_SAME_COMPONENT VEGFA -FYN IN_SAME_COMPONENT VLDLR -FYN INTERACTS_WITH DAB1 -FYN INTERACTS_WITH FYN -FYN INTERACTS_WITH LRP8 -FYN INTERACTS_WITH RELN -FYN INTERACTS_WITH VLDLR -FYN REACTS_WITH ARHGEF2 -FYN REACTS_WITH B2M -FYN REACTS_WITH BCAR1 -FYN REACTS_WITH CD247 -FYN REACTS_WITH CD3D -FYN REACTS_WITH CD3E -FYN REACTS_WITH CD3G -FYN REACTS_WITH CD4 -FYN REACTS_WITH CD8A -FYN REACTS_WITH CD8B -FYN REACTS_WITH CTTN -FYN REACTS_WITH DAB1 -FYN REACTS_WITH DCC -FYN REACTS_WITH FCER1A -FYN REACTS_WITH FCER1G -FYN REACTS_WITH FYN -FYN REACTS_WITH GRIN2A -FYN REACTS_WITH GRIN2B -FYN REACTS_WITH HLA-A -FYN REACTS_WITH HLA-DRA -FYN REACTS_WITH HLA-DRB1 -FYN REACTS_WITH IGHE -FYN REACTS_WITH IL2 -FYN REACTS_WITH IL2RB -FYN REACTS_WITH IL2RG -FYN REACTS_WITH JAK1 -FYN REACTS_WITH JAK3 -FYN REACTS_WITH KDR -FYN REACTS_WITH LRP8 -FYN REACTS_WITH MAP2K7 -FYN REACTS_WITH MAP3K11 -FYN REACTS_WITH MAPK8 -FYN REACTS_WITH MS4A2 -FYN REACTS_WITH NTN1 -FYN REACTS_WITH PAK2 -FYN REACTS_WITH PIK3CA -FYN REACTS_WITH PIK3R1 -FYN REACTS_WITH RELN -FYN REACTS_WITH SDC3 -FYN REACTS_WITH VEGFA -FYN REACTS_WITH VLDLR -FYN STATE_CHANGE ARRB2 -FYN STATE_CHANGE CDC42 -FYN STATE_CHANGE CDH1 -FYN STATE_CHANGE CTNNA1 -FYN STATE_CHANGE CTNNB1 -FYN STATE_CHANGE CTNND1 -FYN STATE_CHANGE DCC -FYN STATE_CHANGE FYB -FYN STATE_CHANGE FYN -FYN STATE_CHANGE GAB2 -FYN STATE_CHANGE GRIN2B -FYN STATE_CHANGE KIRREL -FYN STATE_CHANGE NPHS1 -FYN STATE_CHANGE NPHS2 -FYN STATE_CHANGE NTN1 -FYN STATE_CHANGE PIK3CA -FYN STATE_CHANGE PIK3R1 -FYN STATE_CHANGE PLD2 -FYN STATE_CHANGE PTPN11 -FYN STATE_CHANGE RAC1 -FYN STATE_CHANGE RHOA -FYN STATE_CHANGE VAV1 -FZD10 IN_SAME_COMPONENT LRP5 -FZD10 IN_SAME_COMPONENT WNT7B -FZD10 REACTS_WITH FZD10 -FZD10 REACTS_WITH LRP5 -FZD10 REACTS_WITH WNT7B -FZD1 IN_SAME_COMPONENT LRP5 -FZD1 IN_SAME_COMPONENT LRP6 -FZD1 IN_SAME_COMPONENT WNT1 -FZD1 IN_SAME_COMPONENT WNT2 -FZD1 IN_SAME_COMPONENT WNT3 -FZD1 IN_SAME_COMPONENT WNT3A -FZD1 IN_SAME_COMPONENT WNT7B -FZD1 INTERACTS_WITH WIF1 -FZD1 INTERACTS_WITH WNT1 -FZD1 REACTS_WITH DKK1 -FZD1 REACTS_WITH FZD1 -FZD1 REACTS_WITH LRP5 -FZD1 REACTS_WITH LRP6 -FZD1 REACTS_WITH WNT1 -FZD1 REACTS_WITH WNT2 -FZD1 REACTS_WITH WNT3 -FZD1 REACTS_WITH WNT3A -FZD1 REACTS_WITH WNT7B -FZD1 STATE_CHANGE DVL1 -FZD2 CO_CONTROL FZD2 -FZD2 CO_CONTROL LRP6 -FZD2 CO_CONTROL PRKCZ -FZD2 CO_CONTROL WNT3A -FZD2 CO_CONTROL WNT5A -FZD2 IN_SAME_COMPONENT DVL2 -FZD2 IN_SAME_COMPONENT FLNA -FZD2 IN_SAME_COMPONENT LRP6 -FZD2 IN_SAME_COMPONENT ROR2 -FZD2 IN_SAME_COMPONENT WNT3A -FZD2 IN_SAME_COMPONENT WNT5A -FZD2 REACTS_WITH DVL2 -FZD2 REACTS_WITH FLNA -FZD2 REACTS_WITH FZD2 -FZD2 REACTS_WITH LRP6 -FZD2 REACTS_WITH ROR2 -FZD2 REACTS_WITH WNT3A -FZD2 REACTS_WITH WNT5A -FZD2 STATE_CHANGE RAC1 -FZD2 STATE_CHANGE YES1 -FZD4 IN_SAME_COMPONENT LRP5 -FZD4 IN_SAME_COMPONENT WNT5A -FZD4 REACTS_WITH FZD4 -FZD4 REACTS_WITH LRP5 -FZD4 REACTS_WITH ROR2 -FZD4 REACTS_WITH WNT5A -FZD5 IN_SAME_COMPONENT AXIN1 -FZD5 IN_SAME_COMPONENT LRP6 -FZD5 IN_SAME_COMPONENT WNT3A -FZD5 IN_SAME_COMPONENT WNT7A -FZD5 REACTS_WITH APC -FZD5 REACTS_WITH AXIN1 -FZD5 REACTS_WITH CTNNB1 -FZD5 REACTS_WITH FZD5 -FZD5 REACTS_WITH LRP6 -FZD5 REACTS_WITH WNT3A -FZD5 REACTS_WITH WNT7A -FZD5 STATE_CHANGE APC -FZD5 STATE_CHANGE AXIN1 -FZD5 STATE_CHANGE CTNNB1 -FZD5 STATE_CHANGE FZD5 -FZD5 STATE_CHANGE LRP6 -FZD5 STATE_CHANGE PI4K2A -FZD5 STATE_CHANGE PPP2R5A -FZD5 STATE_CHANGE WNT3A -FZD7 IN_SAME_COMPONENT ROR2 -FZD7 IN_SAME_COMPONENT SDC4 -FZD7 IN_SAME_COMPONENT WNT5A -FZD7 REACTS_WITH FZD7 -FZD7 REACTS_WITH SDC4 -FZD7 REACTS_WITH WNT5A -FZD8 IN_SAME_COMPONENT ATP6AP2 -FZD8 IN_SAME_COMPONENT IGFBP4 -FZD8 IN_SAME_COMPONENT LRP6 -FZD8 IN_SAME_COMPONENT RYK -FZD8 IN_SAME_COMPONENT WNT1 -FZD8 IN_SAME_COMPONENT WNT3A -FZD8 REACTS_WITH ATP6AP2 -FZD8 REACTS_WITH DKK1 -FZD8 REACTS_WITH FZD8 -FZD8 REACTS_WITH IGFBP4 -FZD8 REACTS_WITH LRP6 -FZD8 REACTS_WITH RYK -FZD8 REACTS_WITH WNT1 -FZD8 REACTS_WITH WNT3A -FZD9 IN_SAME_COMPONENT LRP6 -FZD9 IN_SAME_COMPONENT WNT2 -FZD9 REACTS_WITH FZD9 -FZD9 REACTS_WITH LRP6 -FZD9 REACTS_WITH WNT2 -FZR1 REACTS_WITH FZR1 -GAB1 CO_CONTROL EGF -GAB1 CO_CONTROL EGFR -GAB1 CO_CONTROL GAB1 -GAB1 CO_CONTROL KPNB1 -GAB1 CO_CONTROL SRC -GAB1 IN_SAME_COMPONENT CRK -GAB1 IN_SAME_COMPONENT CRKL -GAB1 IN_SAME_COMPONENT EGF -GAB1 IN_SAME_COMPONENT EGFR -GAB1 IN_SAME_COMPONENT FRS2 -GAB1 IN_SAME_COMPONENT GDNF -GAB1 IN_SAME_COMPONENT GFRA1 -GAB1 IN_SAME_COMPONENT GNAI1 -GAB1 IN_SAME_COMPONENT GNAI3 -GAB1 IN_SAME_COMPONENT HGF -GAB1 IN_SAME_COMPONENT INPP5D -GAB1 IN_SAME_COMPONENT MET -GAB1 IN_SAME_COMPONENT NOS3 -GAB1 IN_SAME_COMPONENT PAK4 -GAB1 IN_SAME_COMPONENT PDGFB -GAB1 IN_SAME_COMPONENT PDGFRB -GAB1 IN_SAME_COMPONENT PIK3CA -GAB1 IN_SAME_COMPONENT PIK3CB -GAB1 IN_SAME_COMPONENT PIK3R1 -GAB1 IN_SAME_COMPONENT PRKACA -GAB1 IN_SAME_COMPONENT PTPN11 -GAB1 IN_SAME_COMPONENT RASA1 -GAB1 IN_SAME_COMPONENT SDC2 -GAB1 IN_SAME_COMPONENT SHC1 -GAB1 IN_SAME_COMPONENT SOS1 -GAB1 IN_SAME_COMPONENT WASL -GAB1 REACTS_WITH CRK -GAB1 REACTS_WITH CRKL -GAB1 REACTS_WITH EGF -GAB1 REACTS_WITH EGFR -GAB1 REACTS_WITH FRS2 -GAB1 REACTS_WITH GAB1 -GAB1 REACTS_WITH GDNF -GAB1 REACTS_WITH GFRA1 -GAB1 REACTS_WITH GNAI1 -GAB1 REACTS_WITH GNAI3 -GAB1 REACTS_WITH HGF -GAB1 REACTS_WITH INPP5D -GAB1 REACTS_WITH MET -GAB1 REACTS_WITH NOS3 -GAB1 REACTS_WITH PAK4 -GAB1 REACTS_WITH PDGFB -GAB1 REACTS_WITH PDGFRB -GAB1 REACTS_WITH PIK3CA -GAB1 REACTS_WITH PIK3CB -GAB1 REACTS_WITH PIK3R1 -GAB1 REACTS_WITH PRKACA -GAB1 REACTS_WITH PTPN11 -GAB1 REACTS_WITH RASA1 -GAB1 REACTS_WITH SDC2 -GAB1 REACTS_WITH SHC1 -GAB1 REACTS_WITH SOS1 -GAB1 REACTS_WITH WASL -GAB1 STATE_CHANGE CRKL -GAB1 STATE_CHANGE GAB1 -GAB1 STATE_CHANGE HGF -GAB1 STATE_CHANGE HRAS -GAB1 STATE_CHANGE MAP2K1 -GAB1 STATE_CHANGE MAPK8 -GAB1 STATE_CHANGE MET -GAB1 STATE_CHANGE PIK3CA -GAB1 STATE_CHANGE PIK3R1 -GAB1 STATE_CHANGE PLCG1 -GAB1 STATE_CHANGE PTPN11 -GAB1 STATE_CHANGE RAC1 -GAB1 STATE_CHANGE RAPGEF1 -GAB2 CO_CONTROL BCL10 -GAB2 CO_CONTROL CARD11 -GAB2 CO_CONTROL MALT1 -GAB2 CO_CONTROL PDPK1 -GAB2 CO_CONTROL SHC1 -GAB2 CO_CONTROL SOS1 -GAB2 CO_CONTROL TRAF6 -GAB2 IN_SAME_COMPONENT CSF2 -GAB2 IN_SAME_COMPONENT CSF2RA -GAB2 IN_SAME_COMPONENT CSF2RB -GAB2 IN_SAME_COMPONENT HGF -GAB2 IN_SAME_COMPONENT IL2 -GAB2 IN_SAME_COMPONENT IL2RA -GAB2 IN_SAME_COMPONENT IL2RB -GAB2 IN_SAME_COMPONENT IL2RG -GAB2 IN_SAME_COMPONENT IL3 -GAB2 IN_SAME_COMPONENT IL3RA -GAB2 IN_SAME_COMPONENT JAK1 -GAB2 IN_SAME_COMPONENT JAK2 -GAB2 IN_SAME_COMPONENT JAK3 -GAB2 IN_SAME_COMPONENT LCK -GAB2 IN_SAME_COMPONENT MET -GAB2 IN_SAME_COMPONENT PIK3CA -GAB2 IN_SAME_COMPONENT PIK3R1 -GAB2 IN_SAME_COMPONENT PTPN11 -GAB2 IN_SAME_COMPONENT RAPGEF1 -GAB2 IN_SAME_COMPONENT SHC1 -GAB2 IN_SAME_COMPONENT SOS1 -GAB2 METABOLIC_CATALYSIS CCND3 -GAB2 REACTS_WITH CSF2 -GAB2 REACTS_WITH CSF2RA -GAB2 REACTS_WITH CSF2RB -GAB2 REACTS_WITH GAB2 -GAB2 REACTS_WITH HGF -GAB2 REACTS_WITH IL2 -GAB2 REACTS_WITH IL2RA -GAB2 REACTS_WITH IL2RB -GAB2 REACTS_WITH IL2RG -GAB2 REACTS_WITH IL3 -GAB2 REACTS_WITH IL3RA -GAB2 REACTS_WITH JAK1 -GAB2 REACTS_WITH JAK2 -GAB2 REACTS_WITH JAK3 -GAB2 REACTS_WITH LCK -GAB2 REACTS_WITH MET -GAB2 REACTS_WITH PIK3CA -GAB2 REACTS_WITH PIK3R1 -GAB2 REACTS_WITH PTPN11 -GAB2 REACTS_WITH RAPGEF1 -GAB2 REACTS_WITH SHC1 -GAB2 REACTS_WITH SOS1 -GAB2 STATE_CHANGE AKT1 -GAB2 STATE_CHANGE IKBKG -GAB2 STATE_CHANGE IKZF3 -GAB2 STATE_CHANGE PRKCZ -GAB2 STATE_CHANGE SGMS1 -GAB2 STATE_CHANGE SMPD1 -GAB2 STATE_CHANGE UGCG -GADD45A IN_SAME_COMPONENT AURKA -GADD45A REACTS_WITH AURKA -GADD45A REACTS_WITH GADD45A -GAP43 IN_SAME_COMPONENT CALM1 -GAP43 REACTS_WITH CALM1 -GAP43 REACTS_WITH GAP43 -GAS1 IN_SAME_COMPONENT SHH -GAS1 REACTS_WITH GAS1 -GAS1 REACTS_WITH SHH -GATA1 IN_SAME_COMPONENT CHD3 -GATA1 IN_SAME_COMPONENT CHD4 -GATA1 IN_SAME_COMPONENT EP300 -GATA1 IN_SAME_COMPONENT GATAD2A -GATA1 IN_SAME_COMPONENT GATAD2B -GATA1 IN_SAME_COMPONENT HDAC1 -GATA1 IN_SAME_COMPONENT HDAC2 -GATA1 IN_SAME_COMPONENT HDAC3 -GATA1 IN_SAME_COMPONENT HDAC4 -GATA1 IN_SAME_COMPONENT HDAC5 -GATA1 IN_SAME_COMPONENT HES1 -GATA1 IN_SAME_COMPONENT HEY1 -GATA1 IN_SAME_COMPONENT MBD3 -GATA1 IN_SAME_COMPONENT MTA2 -GATA1 IN_SAME_COMPONENT MYB -GATA1 IN_SAME_COMPONENT RBBP4 -GATA1 IN_SAME_COMPONENT RBBP7 -GATA1 IN_SAME_COMPONENT ZFPM1 -GATA1 METABOLIC_CATALYSIS CA1 -GATA1 METABOLIC_CATALYSIS GATA1 -GATA1 METABOLIC_CATALYSIS MYB -GATA1 REACTS_WITH CHD3 -GATA1 REACTS_WITH CHD4 -GATA1 REACTS_WITH EP300 -GATA1 REACTS_WITH GATA1 -GATA1 REACTS_WITH GATAD2A -GATA1 REACTS_WITH GATAD2B -GATA1 REACTS_WITH HDAC1 -GATA1 REACTS_WITH HDAC2 -GATA1 REACTS_WITH HDAC3 -GATA1 REACTS_WITH HDAC4 -GATA1 REACTS_WITH HDAC5 -GATA1 REACTS_WITH HES1 -GATA1 REACTS_WITH HEY1 -GATA1 REACTS_WITH MBD3 -GATA1 REACTS_WITH MTA2 -GATA1 REACTS_WITH MYB -GATA1 REACTS_WITH RBBP4 -GATA1 REACTS_WITH RBBP7 -GATA1 REACTS_WITH ZFPM1 -GATA2 CO_CONTROL AR -GATA2 CO_CONTROL ARNT -GATA2 CO_CONTROL FOS -GATA2 CO_CONTROL FOXO1 -GATA2 CO_CONTROL HIF1A -GATA2 CO_CONTROL JUN -GATA2 CO_CONTROL NCOA2 -GATA2 CO_CONTROL POU2F1 -GATA2 IN_SAME_COMPONENT FOS -GATA2 IN_SAME_COMPONENT HDAC3 -GATA2 IN_SAME_COMPONENT HDAC5 -GATA2 IN_SAME_COMPONENT JUN -GATA2 METABOLIC_CATALYSIS EDN1 -GATA2 REACTS_WITH FOS -GATA2 REACTS_WITH GATA2 -GATA2 REACTS_WITH HDAC3 -GATA2 REACTS_WITH HDAC5 -GATA2 REACTS_WITH JUN -GATA3 CO_CONTROL FOS -GATA3 CO_CONTROL HDAC1 -GATA3 CO_CONTROL JUN -GATA3 CO_CONTROL NFATC2 -GATA3 CO_CONTROL NOTCH1 -GATA3 CO_CONTROL RBPJ -GATA3 IN_SAME_COMPONENT SMAD4 -GATA3 METABOLIC_CATALYSIS IL10 -GATA3 METABOLIC_CATALYSIS IL13 -GATA3 METABOLIC_CATALYSIS IL4 -GATA3 METABOLIC_CATALYSIS IL5 -GATA3 REACTS_WITH GATA3 -GATA3 REACTS_WITH SMAD4 -GATA4 IN_SAME_COMPONENT HEY1 -GATA4 IN_SAME_COMPONENT HEY2 -GATA4 REACTS_WITH GATA4 -GATA4 REACTS_WITH HEY1 -GATA4 REACTS_WITH HEY2 -GATA6 IN_SAME_COMPONENT HEY1 -GATA6 IN_SAME_COMPONENT HEY2 -GATA6 REACTS_WITH GATA6 -GATA6 REACTS_WITH HEY1 -GATA6 REACTS_WITH HEY2 -GATAD2A IN_SAME_COMPONENT CHD3 -GATAD2A IN_SAME_COMPONENT CHD4 -GATAD2A IN_SAME_COMPONENT GATA1 -GATAD2A IN_SAME_COMPONENT GATAD2B -GATAD2A IN_SAME_COMPONENT HDAC1 -GATAD2A IN_SAME_COMPONENT HDAC2 -GATAD2A IN_SAME_COMPONENT MBD2 -GATAD2A IN_SAME_COMPONENT MBD3 -GATAD2A IN_SAME_COMPONENT MBD3L2 -GATAD2A IN_SAME_COMPONENT MTA2 -GATAD2A IN_SAME_COMPONENT RBBP4 -GATAD2A IN_SAME_COMPONENT RBBP7 -GATAD2A IN_SAME_COMPONENT ZFPM1 -GATAD2A REACTS_WITH CHD3 -GATAD2A REACTS_WITH CHD4 -GATAD2A REACTS_WITH GATA1 -GATAD2A REACTS_WITH GATAD2A -GATAD2A REACTS_WITH GATAD2B -GATAD2A REACTS_WITH HDAC1 -GATAD2A REACTS_WITH HDAC2 -GATAD2A REACTS_WITH MBD2 -GATAD2A REACTS_WITH MBD3 -GATAD2A REACTS_WITH MBD3L2 -GATAD2A REACTS_WITH MTA2 -GATAD2A REACTS_WITH PRMT5 -GATAD2A REACTS_WITH RBBP4 -GATAD2A REACTS_WITH RBBP7 -GATAD2A REACTS_WITH WDR77 -GATAD2A REACTS_WITH ZFPM1 -GATAD2B IN_SAME_COMPONENT CHD3 -GATAD2B IN_SAME_COMPONENT CHD4 -GATAD2B IN_SAME_COMPONENT GATA1 -GATAD2B IN_SAME_COMPONENT GATAD2A -GATAD2B IN_SAME_COMPONENT HDAC1 -GATAD2B IN_SAME_COMPONENT HDAC2 -GATAD2B IN_SAME_COMPONENT MBD2 -GATAD2B IN_SAME_COMPONENT MBD3 -GATAD2B IN_SAME_COMPONENT MBD3L2 -GATAD2B IN_SAME_COMPONENT MTA2 -GATAD2B IN_SAME_COMPONENT RBBP4 -GATAD2B IN_SAME_COMPONENT RBBP7 -GATAD2B IN_SAME_COMPONENT ZFPM1 -GATAD2B REACTS_WITH CHD3 -GATAD2B REACTS_WITH CHD4 -GATAD2B REACTS_WITH GATA1 -GATAD2B REACTS_WITH GATAD2A -GATAD2B REACTS_WITH GATAD2B -GATAD2B REACTS_WITH HDAC1 -GATAD2B REACTS_WITH HDAC2 -GATAD2B REACTS_WITH MBD2 -GATAD2B REACTS_WITH MBD3 -GATAD2B REACTS_WITH MBD3L2 -GATAD2B REACTS_WITH MTA2 -GATAD2B REACTS_WITH PRMT5 -GATAD2B REACTS_WITH RBBP4 -GATAD2B REACTS_WITH RBBP7 -GATAD2B REACTS_WITH WDR77 -GATAD2B REACTS_WITH ZFPM1 -GBF1 IN_SAME_COMPONENT GOSR2 -GBF1 IN_SAME_COMPONENT USO1 -GBF1 REACTS_WITH CLTA -GBF1 REACTS_WITH CLTB -GBF1 REACTS_WITH COPA -GBF1 REACTS_WITH GBF1 -GBF1 REACTS_WITH GOSR2 -GBF1 REACTS_WITH USO1 -GDF2 CO_CONTROL ACVRL1 -GDF2 CO_CONTROL BMPR2 -GDF2 CO_CONTROL GDF2 -GDF2 IN_SAME_COMPONENT ACVRL1 -GDF2 IN_SAME_COMPONENT BMPR2 -GDF2 IN_SAME_COMPONENT CSNK2B -GDF2 REACTS_WITH ACVRL1 -GDF2 REACTS_WITH BMPR2 -GDF2 REACTS_WITH CSNK2B -GDF2 REACTS_WITH FKBP1A -GDF2 REACTS_WITH GDF2 -GDI1 IN_SAME_COMPONENT RAB5A -GDI1 REACTS_WITH GDI1 -GDI1 REACTS_WITH RAB5A -GDNF IN_SAME_COMPONENT DOK1 -GDNF IN_SAME_COMPONENT DOK4 -GDNF IN_SAME_COMPONENT DOK5 -GDNF IN_SAME_COMPONENT DOK6 -GDNF IN_SAME_COMPONENT FRS2 -GDNF IN_SAME_COMPONENT GAB1 -GDNF IN_SAME_COMPONENT GFRA1 -GDNF IN_SAME_COMPONENT GRB10 -GDNF IN_SAME_COMPONENT GRB7 -GDNF IN_SAME_COMPONENT IRS1 -GDNF IN_SAME_COMPONENT NCK1 -GDNF IN_SAME_COMPONENT PDLIM7 -GDNF IN_SAME_COMPONENT PRKCA -GDNF IN_SAME_COMPONENT PTPN11 -GDNF IN_SAME_COMPONENT RASA1 -GDNF IN_SAME_COMPONENT SHANK3 -GDNF IN_SAME_COMPONENT SHC1 -GDNF IN_SAME_COMPONENT SOS1 -GDNF REACTS_WITH DOK1 -GDNF REACTS_WITH DOK4 -GDNF REACTS_WITH DOK5 -GDNF REACTS_WITH DOK6 -GDNF REACTS_WITH FRS2 -GDNF REACTS_WITH GAB1 -GDNF REACTS_WITH GDNF -GDNF REACTS_WITH GFRA1 -GDNF REACTS_WITH GRB10 -GDNF REACTS_WITH GRB7 -GDNF REACTS_WITH IRS1 -GDNF REACTS_WITH NCK1 -GDNF REACTS_WITH PDLIM7 -GDNF REACTS_WITH PRKCA -GDNF REACTS_WITH PTPN11 -GDNF REACTS_WITH RASA1 -GDNF REACTS_WITH SHANK3 -GDNF REACTS_WITH SHC1 -GDNF REACTS_WITH SOS1 -GDNF STATE_CHANGE BCAR1 -GDNF STATE_CHANGE CDH1 -GDNF STATE_CHANGE CREB1 -GDNF STATE_CHANGE CRK -GDNF STATE_CHANGE CTNNA1 -GDNF STATE_CHANGE CTNNB1 -GDNF STATE_CHANGE CTNND1 -GDNF STATE_CHANGE HRAS -GDNF STATE_CHANGE MAPK8 -GDNF STATE_CHANGE PXN -GDNF STATE_CHANGE RAP1A -GFI1 CO_CONTROL ZBTB17 -GFI1 IN_SAME_COMPONENT DNMT3A -GFI1 IN_SAME_COMPONENT MAX -GFI1 IN_SAME_COMPONENT MYC -GFI1 IN_SAME_COMPONENT ZBTB17 -GFI1 METABOLIC_CATALYSIS CDKN1A -GFI1 REACTS_WITH DNMT3A -GFI1 REACTS_WITH GFI1 -GFI1 REACTS_WITH MAX -GFI1 REACTS_WITH MYC -GFI1 REACTS_WITH ZBTB17 -GFRA1 IN_SAME_COMPONENT DOK1 -GFRA1 IN_SAME_COMPONENT DOK4 -GFRA1 IN_SAME_COMPONENT DOK5 -GFRA1 IN_SAME_COMPONENT DOK6 -GFRA1 IN_SAME_COMPONENT FRS2 -GFRA1 IN_SAME_COMPONENT GAB1 -GFRA1 IN_SAME_COMPONENT GDNF -GFRA1 IN_SAME_COMPONENT GRB10 -GFRA1 IN_SAME_COMPONENT GRB7 -GFRA1 IN_SAME_COMPONENT IRS1 -GFRA1 IN_SAME_COMPONENT NCK1 -GFRA1 IN_SAME_COMPONENT PDLIM7 -GFRA1 IN_SAME_COMPONENT PRKCA -GFRA1 IN_SAME_COMPONENT PTPN11 -GFRA1 IN_SAME_COMPONENT RASA1 -GFRA1 IN_SAME_COMPONENT SHANK3 -GFRA1 IN_SAME_COMPONENT SHC1 -GFRA1 IN_SAME_COMPONENT SOS1 -GFRA1 REACTS_WITH DOK1 -GFRA1 REACTS_WITH DOK4 -GFRA1 REACTS_WITH DOK5 -GFRA1 REACTS_WITH DOK6 -GFRA1 REACTS_WITH FRS2 -GFRA1 REACTS_WITH GAB1 -GFRA1 REACTS_WITH GDNF -GFRA1 REACTS_WITH GFRA1 -GFRA1 REACTS_WITH GRB10 -GFRA1 REACTS_WITH GRB7 -GFRA1 REACTS_WITH IRS1 -GFRA1 REACTS_WITH NCK1 -GFRA1 REACTS_WITH PDLIM7 -GFRA1 REACTS_WITH PRKCA -GFRA1 REACTS_WITH PTPN11 -GFRA1 REACTS_WITH RASA1 -GFRA1 REACTS_WITH SHANK3 -GFRA1 REACTS_WITH SHC1 -GFRA1 REACTS_WITH SOS1 -GFRA1 STATE_CHANGE BCAR1 -GFRA1 STATE_CHANGE CDH1 -GFRA1 STATE_CHANGE CREB1 -GFRA1 STATE_CHANGE CRK -GFRA1 STATE_CHANGE CTNNA1 -GFRA1 STATE_CHANGE CTNNB1 -GFRA1 STATE_CHANGE CTNND1 -GFRA1 STATE_CHANGE HRAS -GFRA1 STATE_CHANGE MAPK8 -GFRA1 STATE_CHANGE PXN -GFRA1 STATE_CHANGE RAP1A -GGA3 CO_CONTROL ARFGAP1 -GGA3 CO_CONTROL ASAP1 -GGA3 CO_CONTROL KDELR1 -GGA3 IN_SAME_COMPONENT ARFGAP1 -GGA3 REACTS_WITH ARFGAP1 -GGA3 REACTS_WITH GGA3 -GGA3 STATE_CHANGE CLTA -GGA3 STATE_CHANGE CLTB -GGA3 STATE_CHANGE COPA -GIPC1 IN_SAME_COMPONENT BDNF -GIPC1 IN_SAME_COMPONENT NGF -GIPC1 IN_SAME_COMPONENT NTRK2 -GIPC1 IN_SAME_COMPONENT RGS19 -GIPC1 IN_SAME_COMPONENT SDC4 -GIPC1 REACTS_WITH BDNF -GIPC1 REACTS_WITH GIPC1 -GIPC1 REACTS_WITH NGF -GIPC1 REACTS_WITH NTRK2 -GIPC1 REACTS_WITH RGS19 -GIPC1 REACTS_WITH SDC4 -GIT1 CO_CONTROL EFNA1 -GIT1 CO_CONTROL EPHA2 -GIT1 CO_CONTROL GIT1 -GIT1 CO_CONTROL ITGA2B -GIT1 CO_CONTROL ITGB3 -GIT1 CO_CONTROL NCK1 -GIT1 IN_SAME_COMPONENT ARHGEF7 -GIT1 IN_SAME_COMPONENT EFNA1 -GIT1 IN_SAME_COMPONENT EPHA2 -GIT1 IN_SAME_COMPONENT FN1 -GIT1 IN_SAME_COMPONENT ITGA2B -GIT1 IN_SAME_COMPONENT ITGB3 -GIT1 IN_SAME_COMPONENT NCK1 -GIT1 IN_SAME_COMPONENT PAK1 -GIT1 IN_SAME_COMPONENT PLCG1 -GIT1 IN_SAME_COMPONENT PXN -GIT1 REACTS_WITH ARHGEF7 -GIT1 REACTS_WITH AURKA -GIT1 REACTS_WITH EFNA1 -GIT1 REACTS_WITH EPHA2 -GIT1 REACTS_WITH FN1 -GIT1 REACTS_WITH GIT1 -GIT1 REACTS_WITH NCK1 -GIT1 REACTS_WITH PAK1 -GIT1 REACTS_WITH PXN -GIT1 STATE_CHANGE CDC42 -GIT2 IN_SAME_COMPONENT ARHGEF7 -GIT2 IN_SAME_COMPONENT PAK1 -GIT2 IN_SAME_COMPONENT PXN -GIT2 REACTS_WITH ARHGEF7 -GIT2 REACTS_WITH GIT2 -GIT2 REACTS_WITH PAK1 -GIT2 REACTS_WITH PXN -GLI1 IN_SAME_COMPONENT MTSS1 -GLI1 IN_SAME_COMPONENT SUFU -GLI1 METABOLIC_CATALYSIS FOXA2 -GLI1 METABOLIC_CATALYSIS PTCH1 -GLI1 REACTS_WITH GLI1 -GLI1 REACTS_WITH MTSS1 -GLI1 REACTS_WITH SUFU -GLI2 IN_SAME_COMPONENT SPOP -GLI2 IN_SAME_COMPONENT SUFU -GLI2 REACTS_WITH GLI2 -GLI2 REACTS_WITH SPOP -GLI2 REACTS_WITH SUFU -GLI3 IN_SAME_COMPONENT SPOP -GLI3 IN_SAME_COMPONENT SUFU -GLI3 REACTS_WITH GLI3 -GLI3 REACTS_WITH SPOP -GLI3 REACTS_WITH SUFU -GNA12 IN_SAME_COMPONENT EDN1 -GNA12 IN_SAME_COMPONENT EDNRA -GNA12 IN_SAME_COMPONENT GNA13 -GNA12 IN_SAME_COMPONENT GNG2 -GNA12 IN_SAME_COMPONENT S1PR2 -GNA12 IN_SAME_COMPONENT S1PR3 -GNA12 IN_SAME_COMPONENT S1PR4 -GNA12 IN_SAME_COMPONENT S1PR5 -GNA12 REACTS_WITH EDN1 -GNA12 REACTS_WITH EDNRA -GNA12 REACTS_WITH GNA12 -GNA12 REACTS_WITH GNA13 -GNA12 REACTS_WITH GNG2 -GNA12 REACTS_WITH S1PR2 -GNA12 REACTS_WITH S1PR3 -GNA12 REACTS_WITH S1PR4 -GNA12 REACTS_WITH S1PR5 -GNA12 STATE_CHANGE AKAP13 -GNA12 STATE_CHANGE ARHGEF1 -GNA12 STATE_CHANGE RHOA -GNA13 IN_SAME_COMPONENT ARHGEF1 -GNA13 IN_SAME_COMPONENT GNA12 -GNA13 IN_SAME_COMPONENT GNG2 -GNA13 IN_SAME_COMPONENT S1PR2 -GNA13 IN_SAME_COMPONENT S1PR3 -GNA13 IN_SAME_COMPONENT S1PR4 -GNA13 REACTS_WITH ARHGEF1 -GNA13 REACTS_WITH GNA12 -GNA13 REACTS_WITH GNA13 -GNA13 REACTS_WITH GNG2 -GNA13 REACTS_WITH S1PR2 -GNA13 REACTS_WITH S1PR3 -GNA13 REACTS_WITH S1PR4 -GNA13 STATE_CHANGE ARHGEF1 -GNA13 STATE_CHANGE RHOA -GNA14 IN_SAME_COMPONENT GNG2 -GNA14 REACTS_WITH CXCR1 -GNA14 REACTS_WITH CXCR2 -GNA14 REACTS_WITH GNA14 -GNA14 REACTS_WITH GNG2 -GNA14 REACTS_WITH IL8 -GNA15 IN_SAME_COMPONENT GNG2 -GNA15 REACTS_WITH CXCR1 -GNA15 REACTS_WITH CXCR2 -GNA15 REACTS_WITH GNA15 -GNA15 REACTS_WITH GNG2 -GNA15 REACTS_WITH IL8 -GNAI1 IN_SAME_COMPONENT EGF -GNAI1 IN_SAME_COMPONENT EGFR -GNAI1 IN_SAME_COMPONENT GAB1 -GNAI1 IN_SAME_COMPONENT GNAI3 -GNAI1 IN_SAME_COMPONENT RASA1 -GNAI1 REACTS_WITH EGF -GNAI1 REACTS_WITH EGFR -GNAI1 REACTS_WITH GAB1 -GNAI1 REACTS_WITH GNAI1 -GNAI1 REACTS_WITH GNAI3 -GNAI1 REACTS_WITH RASA1 -GNAI1 STATE_CHANGE PTPN11 -GNAI2 IN_SAME_COMPONENT CXCR3 -GNAI2 IN_SAME_COMPONENT GNG2 -GNAI2 IN_SAME_COMPONENT TBXA2R -GNAI2 REACTS_WITH CCL11 -GNAI2 REACTS_WITH CXCL10 -GNAI2 REACTS_WITH CXCL11 -GNAI2 REACTS_WITH CXCL13 -GNAI2 REACTS_WITH CXCL9 -GNAI2 REACTS_WITH CXCR1 -GNAI2 REACTS_WITH CXCR2 -GNAI2 REACTS_WITH CXCR3 -GNAI2 REACTS_WITH GNAI2 -GNAI2 REACTS_WITH GNG2 -GNAI2 REACTS_WITH IL8 -GNAI2 REACTS_WITH TBXA2R -GNAI2 STATE_CHANGE DOCK2 -GNAI2 STATE_CHANGE ELMO1 -GNAI3 IN_SAME_COMPONENT EGF -GNAI3 IN_SAME_COMPONENT EGFR -GNAI3 IN_SAME_COMPONENT GAB1 -GNAI3 IN_SAME_COMPONENT GNAI1 -GNAI3 IN_SAME_COMPONENT RASA1 -GNAI3 REACTS_WITH EGF -GNAI3 REACTS_WITH EGFR -GNAI3 REACTS_WITH GAB1 -GNAI3 REACTS_WITH GNAI1 -GNAI3 REACTS_WITH GNAI3 -GNAI3 REACTS_WITH RASA1 -GNAI3 STATE_CHANGE PTPN11 -GNAQ IN_SAME_COMPONENT CYTH2 -GNAQ REACTS_WITH CYTH2 -GNAQ REACTS_WITH GNAQ -GNAT1 IN_SAME_COMPONENT GNGT1 -GNAT1 IN_SAME_COMPONENT PDE6G -GNAT1 IN_SAME_COMPONENT RHO -GNAT1 REACTS_WITH GNAT1 -GNAT1 REACTS_WITH GNGT1 -GNAT1 REACTS_WITH PDE6A -GNAT1 REACTS_WITH PDE6B -GNAT1 REACTS_WITH PDE6G -GNAT1 REACTS_WITH RHO -GNAT1 STATE_CHANGE CNGA1 -GNAT1 STATE_CHANGE CNGB1 -GNAT2 IN_SAME_COMPONENT GNB3 -GNAT2 IN_SAME_COMPONENT GNGT2 -GNAT2 IN_SAME_COMPONENT PDE6H -GNAT2 REACTS_WITH GNAT2 -GNAT2 REACTS_WITH GNB3 -GNAT2 REACTS_WITH GNGT2 -GNAT2 REACTS_WITH PDE6C -GNAT2 REACTS_WITH PDE6H -GNAT2 STATE_CHANGE CNGA3 -GNAT2 STATE_CHANGE CNGB3 -GNB3 IN_SAME_COMPONENT GNAT2 -GNB3 IN_SAME_COMPONENT GNGT2 -GNB3 REACTS_WITH GNAT2 -GNB3 REACTS_WITH GNB3 -GNB3 REACTS_WITH GNGT2 -GNB5 IN_SAME_COMPONENT GNG2 -GNB5 IN_SAME_COMPONENT RGS9 -GNB5 IN_SAME_COMPONENT RGS9BP -GNB5 IN_SAME_COMPONENT TBXA2R -GNB5 REACTS_WITH GNB5 -GNB5 REACTS_WITH GNG2 -GNB5 REACTS_WITH SLC9A3R1 -GNB5 REACTS_WITH TBXA2R -GNB5 STATE_CHANGE GNAT1 -GNB5 STATE_CHANGE GNAT2 -GNB5 STATE_CHANGE PDE6A -GNB5 STATE_CHANGE PDE6B -GNB5 STATE_CHANGE PDE6C -GNB5 STATE_CHANGE PDE6G -GNB5 STATE_CHANGE PDE6H -GNB5 STATE_CHANGE PLCB2 -GNG2 IN_SAME_COMPONENT CBL -GNG2 IN_SAME_COMPONENT CXCR3 -GNG2 IN_SAME_COMPONENT ESR1 -GNG2 IN_SAME_COMPONENT GNA12 -GNG2 IN_SAME_COMPONENT GNA13 -GNG2 IN_SAME_COMPONENT GNA14 -GNG2 IN_SAME_COMPONENT GNA15 -GNG2 IN_SAME_COMPONENT GNAI2 -GNG2 IN_SAME_COMPONENT GNB5 -GNG2 IN_SAME_COMPONENT HDAC5 -GNG2 IN_SAME_COMPONENT PIK3CA -GNG2 IN_SAME_COMPONENT PIK3CG -GNG2 IN_SAME_COMPONENT PIK3R1 -GNG2 IN_SAME_COMPONENT PIK3R6 -GNG2 IN_SAME_COMPONENT TBXA2R -GNG2 IN_SAME_COMPONENT TGM2 -GNG2 IN_SAME_COMPONENT UBQLN1 -GNG2 REACTS_WITH CBL -GNG2 REACTS_WITH CCL11 -GNG2 REACTS_WITH CXCL10 -GNG2 REACTS_WITH CXCL11 -GNG2 REACTS_WITH CXCL13 -GNG2 REACTS_WITH CXCL9 -GNG2 REACTS_WITH CXCR1 -GNG2 REACTS_WITH CXCR2 -GNG2 REACTS_WITH CXCR3 -GNG2 REACTS_WITH ESR1 -GNG2 REACTS_WITH GNA12 -GNG2 REACTS_WITH GNA13 -GNG2 REACTS_WITH GNA14 -GNG2 REACTS_WITH GNA15 -GNG2 REACTS_WITH GNAI2 -GNG2 REACTS_WITH GNB5 -GNG2 REACTS_WITH GNG2 -GNG2 REACTS_WITH HDAC5 -GNG2 REACTS_WITH IL8 -GNG2 REACTS_WITH PIK3CA -GNG2 REACTS_WITH PIK3CG -GNG2 REACTS_WITH PIK3R1 -GNG2 REACTS_WITH PIK3R6 -GNG2 REACTS_WITH SLC9A3R1 -GNG2 REACTS_WITH TBXA2R -GNG2 REACTS_WITH TGM2 -GNG2 REACTS_WITH UBQLN1 -GNG2 STATE_CHANGE BCAR1 -GNG2 STATE_CHANGE CD247 -GNG2 STATE_CHANGE CD3D -GNG2 STATE_CHANGE CD3E -GNG2 STATE_CHANGE CD3G -GNG2 STATE_CHANGE CD4 -GNG2 STATE_CHANGE CXCL12 -GNG2 STATE_CHANGE CXCR4 -GNG2 STATE_CHANGE HLA-DRA -GNG2 STATE_CHANGE HLA-DRB1 -GNG2 STATE_CHANGE HRAS -GNG2 STATE_CHANGE LCK -GNG2 STATE_CHANGE NOS3 -GNG2 STATE_CHANGE PLCB2 -GNG2 STATE_CHANGE PLCB3 -GNG2 STATE_CHANGE PXN -GNG2 STATE_CHANGE SRC -GNGT1 IN_SAME_COMPONENT GNAT1 -GNGT1 IN_SAME_COMPONENT RHO -GNGT1 REACTS_WITH GNAT1 -GNGT1 REACTS_WITH GNGT1 -GNGT1 REACTS_WITH RHO -GNGT2 IN_SAME_COMPONENT GNAT2 -GNGT2 IN_SAME_COMPONENT GNB3 -GNGT2 REACTS_WITH GNAT2 -GNGT2 REACTS_WITH GNB3 -GNGT2 REACTS_WITH GNGT2 -GOLGA2 IN_SAME_COMPONENT GORASP1 -GOLGA2 IN_SAME_COMPONENT PLK1 -GOLGA2 IN_SAME_COMPONENT RAB1A -GOLGA2 REACTS_WITH GOLGA2 -GOLGA2 REACTS_WITH GORASP1 -GOLGA2 REACTS_WITH PLK1 -GOLGA2 REACTS_WITH RAB1A -GORASP1 IN_SAME_COMPONENT GOLGA2 -GORASP1 IN_SAME_COMPONENT PLK1 -GORASP1 IN_SAME_COMPONENT RAB1A -GORASP1 REACTS_WITH GOLGA2 -GORASP1 REACTS_WITH GORASP1 -GORASP1 REACTS_WITH PLK1 -GORASP1 REACTS_WITH RAB1A -GOSR2 IN_SAME_COMPONENT GBF1 -GOSR2 IN_SAME_COMPONENT USO1 -GOSR2 REACTS_WITH CLTA -GOSR2 REACTS_WITH CLTB -GOSR2 REACTS_WITH COPA -GOSR2 REACTS_WITH GBF1 -GOSR2 REACTS_WITH GOSR2 -GOSR2 REACTS_WITH USO1 -GP1BA IN_SAME_COMPONENT ITGAM -GP1BA IN_SAME_COMPONENT ITGB2 -GP1BA REACTS_WITH GP1BA -GP1BA REACTS_WITH ITGAM -GP1BA REACTS_WITH ITGB2 -GPC1 IN_SAME_COMPONENT APP -GPC1 IN_SAME_COMPONENT FGF2 -GPC1 IN_SAME_COMPONENT FGFR1 -GPC1 IN_SAME_COMPONENT FLT1 -GPC1 IN_SAME_COMPONENT LAMA1 -GPC1 IN_SAME_COMPONENT NRG1 -GPC1 IN_SAME_COMPONENT PLA2G2A -GPC1 IN_SAME_COMPONENT PRNP -GPC1 IN_SAME_COMPONENT SERPINC1 -GPC1 IN_SAME_COMPONENT SLIT2 -GPC1 IN_SAME_COMPONENT TDGF1 -GPC1 IN_SAME_COMPONENT TGFBR1 -GPC1 IN_SAME_COMPONENT TGFBR2 -GPC1 IN_SAME_COMPONENT VEGFA -GPC1 REACTS_WITH APP -GPC1 REACTS_WITH FGF2 -GPC1 REACTS_WITH FGFR1 -GPC1 REACTS_WITH FLT1 -GPC1 REACTS_WITH GPC1 -GPC1 REACTS_WITH LAMA1 -GPC1 REACTS_WITH NRG1 -GPC1 REACTS_WITH PLA2G2A -GPC1 REACTS_WITH PRNP -GPC1 REACTS_WITH SERPINC1 -GPC1 REACTS_WITH SLIT2 -GPC1 REACTS_WITH TDGF1 -GPC1 REACTS_WITH TGFBR1 -GPC1 REACTS_WITH TGFBR2 -GPC1 REACTS_WITH VEGFA -GPC1 STATE_CHANGE SMAD2 -GPC2 IN_SAME_COMPONENT MDK -GPC2 REACTS_WITH GPC2 -GPC2 REACTS_WITH MDK -GPC3 CO_CONTROL BMP4 -GPC3 CO_CONTROL FGF7 -GPC3 IN_SAME_COMPONENT SHH -GPC3 REACTS_WITH GPC3 -GPC3 REACTS_WITH PTCH1 -GPC3 REACTS_WITH SHH -GPLD1 STATE_CHANGE PLAUR -GPR124 IN_SAME_COMPONENT ITGAV -GPR124 IN_SAME_COMPONENT ITGB3 -GPR124 REACTS_WITH GPR124 -GPR124 REACTS_WITH ITGAV -GPR124 REACTS_WITH ITGB3 -GRAP2 CO_CONTROL GRAP2 -GRAP2 CO_CONTROL ITK -GRAP2 CO_CONTROL LCP2 -GRAP2 CO_CONTROL PLCG1 -GRAP2 CO_CONTROL VAV1 -GRAP2 IN_SAME_COMPONENT DBNL -GRAP2 IN_SAME_COMPONENT FYB -GRAP2 IN_SAME_COMPONENT ITK -GRAP2 IN_SAME_COMPONENT LCP2 -GRAP2 IN_SAME_COMPONENT MAP4K1 -GRAP2 IN_SAME_COMPONENT NCK1 -GRAP2 IN_SAME_COMPONENT PLCG1 -GRAP2 IN_SAME_COMPONENT SHC1 -GRAP2 IN_SAME_COMPONENT VAV1 -GRAP2 REACTS_WITH CBL -GRAP2 REACTS_WITH DBNL -GRAP2 REACTS_WITH FYB -GRAP2 REACTS_WITH GRAP2 -GRAP2 REACTS_WITH ITK -GRAP2 REACTS_WITH LCP2 -GRAP2 REACTS_WITH MAP4K1 -GRAP2 REACTS_WITH NCK1 -GRAP2 REACTS_WITH PLCG1 -GRAP2 REACTS_WITH SHC1 -GRAP2 REACTS_WITH VAV1 -GRAP2 STATE_CHANGE CDC42 -GRAP2 STATE_CHANGE HRAS -GRAP2 STATE_CHANGE MAP3K1 -GRAP2 STATE_CHANGE MAP3K7 -GRAP2 STATE_CHANGE PRKCQ -GRAP2 STATE_CHANGE WAS -GRB10 CO_CONTROL INS -GRB10 CO_CONTROL INSR -GRB10 CO_CONTROL SHC1 -GRB10 CO_CONTROL SOS1 -GRB10 IN_SAME_COMPONENT GDNF -GRB10 IN_SAME_COMPONENT GFRA1 -GRB10 IN_SAME_COMPONENT IGF1 -GRB10 IN_SAME_COMPONENT IGF1R -GRB10 IN_SAME_COMPONENT INS -GRB10 IN_SAME_COMPONENT INSR -GRB10 IN_SAME_COMPONENT NEDD4 -GRB10 IN_SAME_COMPONENT PDGFB -GRB10 IN_SAME_COMPONENT PDGFRB -GRB10 IN_SAME_COMPONENT SHC1 -GRB10 REACTS_WITH GDNF -GRB10 REACTS_WITH GFRA1 -GRB10 REACTS_WITH GRB10 -GRB10 REACTS_WITH GRB7 -GRB10 REACTS_WITH IGF1 -GRB10 REACTS_WITH IGF1R -GRB10 REACTS_WITH INS -GRB10 REACTS_WITH INSR -GRB10 REACTS_WITH PDGFB -GRB10 REACTS_WITH PDGFRB -GRB10 REACTS_WITH SHC1 -GRB10 STATE_CHANGE AKT1 -GRB10 STATE_CHANGE DOK1 -GRB14 IN_SAME_COMPONENT ANGPT1 -GRB14 IN_SAME_COMPONENT INS -GRB14 IN_SAME_COMPONENT INSR -GRB14 IN_SAME_COMPONENT PDPK1 -GRB14 IN_SAME_COMPONENT TEK -GRB14 REACTS_WITH ANGPT1 -GRB14 REACTS_WITH GRB14 -GRB14 REACTS_WITH INS -GRB14 REACTS_WITH INSR -GRB14 REACTS_WITH PDPK1 -GRB14 REACTS_WITH TEK -GRB14 STATE_CHANGE AKT1 -GRB14 STATE_CHANGE AKT2 -GRB14 STATE_CHANGE SGK1 -GRB7 IN_SAME_COMPONENT ANGPT1 -GRB7 IN_SAME_COMPONENT EPHB1 -GRB7 IN_SAME_COMPONENT GDNF -GRB7 IN_SAME_COMPONENT GFRA1 -GRB7 IN_SAME_COMPONENT TEK -GRB7 REACTS_WITH ANGPT1 -GRB7 REACTS_WITH EPHB1 -GRB7 REACTS_WITH GDNF -GRB7 REACTS_WITH GFRA1 -GRB7 REACTS_WITH GRB10 -GRB7 REACTS_WITH GRB7 -GRB7 REACTS_WITH TEK -GREM1 REACTS_WITH BAMBI -GREM1 REACTS_WITH BMPR2 -GREM1 REACTS_WITH GREM1 -GRIN2A IN_SAME_COMPONENT DAB1 -GRIN2A IN_SAME_COMPONENT FYN -GRIN2A IN_SAME_COMPONENT LRP8 -GRIN2A IN_SAME_COMPONENT RELN -GRIN2A REACTS_WITH DAB1 -GRIN2A REACTS_WITH FYN -GRIN2A REACTS_WITH GRIN2A -GRIN2A REACTS_WITH GRIN2B -GRIN2A REACTS_WITH LRP8 -GRIN2A REACTS_WITH RELN -GRIN2B IN_SAME_COMPONENT DAB1 -GRIN2B IN_SAME_COMPONENT FYN -GRIN2B IN_SAME_COMPONENT LRP8 -GRIN2B IN_SAME_COMPONENT RELN -GRIN2B REACTS_WITH DAB1 -GRIN2B REACTS_WITH FYN -GRIN2B REACTS_WITH GRIN2A -GRIN2B REACTS_WITH GRIN2B -GRIN2B REACTS_WITH LRP8 -GRIN2B REACTS_WITH RELN -GRK1 STATE_CHANGE RHO -GRK5 STATE_CHANGE SNCA -GRK6 STATE_CHANGE CXCL12 -GRK6 STATE_CHANGE CXCR4 -GRLF1 IN_SAME_COMPONENT RASA1 -GRLF1 REACTS_WITH GRLF1 -GRLF1 REACTS_WITH RASA1 -GRLF1 STATE_CHANGE RHOA -GSC IN_SAME_COMPONENT SPI1 -GSC REACTS_WITH GSC -GSC REACTS_WITH RB1 -GSC REACTS_WITH SPI1 -GSC REACTS_WITH TFDP1 -GSK3B CO_CONTROL CSNK1A1 -GSK3B CO_CONTROL MAPK14 -GSK3B CO_CONTROL PRKACA -GSK3B IN_SAME_COMPONENT AXIN1 -GSK3B IN_SAME_COMPONENT PIN1 -GSK3B IN_SAME_COMPONENT PPP2CA -GSK3B IN_SAME_COMPONENT PPP2R5A -GSK3B REACTS_WITH GSK3B -GSK3B REACTS_WITH PPP1CC -GSK3B REACTS_WITH PPP1R3A -GSK3B REACTS_WITH PPP2R5A -GSK3B STATE_CHANGE APC -GSK3B STATE_CHANGE AR -GSK3B STATE_CHANGE AURKA -GSK3B STATE_CHANGE AXIN1 -GSK3B STATE_CHANGE CTNNB1 -GSK3B STATE_CHANGE GLI2 -GSK3B STATE_CHANGE GLI3 -GSK3B STATE_CHANGE GYS1 -GSK3B STATE_CHANGE MAPT -GSK3B STATE_CHANGE MAX -GSK3B STATE_CHANGE MYC -GSK3B STATE_CHANGE NFATC1 -GSK3B STATE_CHANGE NFATC2 -GSK3B STATE_CHANGE TP53 -GSK3B STATE_CHANGE TSC1 -GSK3B STATE_CHANGE TSC2 -GSN CO_CONTROL AR -GSN CO_CONTROL BAX -GSN CO_CONTROL BID -GSN IN_SAME_COMPONENT PIK3CA -GSN IN_SAME_COMPONENT PIK3R1 -GSN METABOLIC_CATALYSIS KLK3 -GSN REACTS_WITH GSN -GSN REACTS_WITH PIK3CA -GSN REACTS_WITH PIK3R1 -GSN STATE_CHANGE CYCS -GTF3A CO_CONTROL STAT6 -GTF3A METABOLIC_CATALYSIS COL1A1 -GUCY2D REACTS_WITH GUCY2D -GUCY2F REACTS_WITH GUCY2F -GULP1 CO_CONTROL ACAP1 -GULP1 IN_SAME_COMPONENT ACAP1 -GULP1 REACTS_WITH ACAP1 -GULP1 REACTS_WITH GULP1 -GZMB STATE_CHANGE BID -GZMB STATE_CHANGE CASP10 -GZMB STATE_CHANGE CASP3 -GZMB STATE_CHANGE CASP7 -H2AFX IN_SAME_COMPONENT ATM -H2AFX IN_SAME_COMPONENT BRCA1 -H2AFX IN_SAME_COMPONENT FAM175A -H2AFX IN_SAME_COMPONENT MDC1 -H2AFX IN_SAME_COMPONENT MRE11A -H2AFX IN_SAME_COMPONENT NBN -H2AFX IN_SAME_COMPONENT RAD50 -H2AFX IN_SAME_COMPONENT RNF8 -H2AFX IN_SAME_COMPONENT TP53BP1 -H2AFX IN_SAME_COMPONENT UIMC1 -H2AFX METABOLIC_CATALYSIS SMC3 -H2AFX REACTS_WITH ATM -H2AFX REACTS_WITH BRCA1 -H2AFX REACTS_WITH CTBP1 -H2AFX REACTS_WITH FAM175A -H2AFX REACTS_WITH H2AFX -H2AFX REACTS_WITH MDC1 -H2AFX REACTS_WITH MRE11A -H2AFX REACTS_WITH NBN -H2AFX REACTS_WITH RAD50 -H2AFX REACTS_WITH RBBP8 -H2AFX REACTS_WITH RNF8 -H2AFX REACTS_WITH TP53BP1 -H2AFX REACTS_WITH UIMC1 -H2AFX STATE_CHANGE CHEK2 -H2AFX STATE_CHANGE DCLRE1C -H2AFX STATE_CHANGE SMC1A -H2AFX STATE_CHANGE TRIM28 -H2AFY IN_SAME_COMPONENT ATF2 -H2AFY IN_SAME_COMPONENT JUND -H2AFY METABOLIC_CATALYSIS IL8 -H2AFY REACTS_WITH ATF2 -H2AFY REACTS_WITH H2AFY -H2AFY REACTS_WITH JUND -HBEGF IN_SAME_COMPONENT EGFR -HBEGF IN_SAME_COMPONENT ERBB2 -HBEGF IN_SAME_COMPONENT JAK2 -HBEGF IN_SAME_COMPONENT PRL -HBEGF IN_SAME_COMPONENT PRLR -HBEGF METABOLIC_CATALYSIS IL8 -HBEGF REACTS_WITH EGFR -HBEGF REACTS_WITH ERBB2 -HBEGF REACTS_WITH HBEGF -HBEGF REACTS_WITH JAK2 -HBEGF REACTS_WITH PRL -HBEGF REACTS_WITH PRLR -HBEGF STATE_CHANGE STAT5A -HBP1 CO_CONTROL E2F1 -HBP1 CO_CONTROL SP1 -HBP1 IN_SAME_COMPONENT CTNNB1 -HBP1 IN_SAME_COMPONENT MAX -HBP1 IN_SAME_COMPONENT MYC -HBP1 IN_SAME_COMPONENT TCF7L2 -HBP1 METABOLIC_CATALYSIS CCND1 -HBP1 METABOLIC_CATALYSIS CDKN1A -HBP1 REACTS_WITH CTNNB1 -HBP1 REACTS_WITH HBP1 -HBP1 REACTS_WITH MAX -HBP1 REACTS_WITH MYC -HBP1 REACTS_WITH TCF7L2 -HCK IN_SAME_COMPONENT IL6 -HCK IN_SAME_COMPONENT IL6R -HCK IN_SAME_COMPONENT IL6ST -HCK IN_SAME_COMPONENT ITGAM -HCK IN_SAME_COMPONENT ITGB2 -HCK IN_SAME_COMPONENT JAK1 -HCK REACTS_WITH HCK -HCK REACTS_WITH IL6 -HCK REACTS_WITH IL6R -HCK REACTS_WITH IL6ST -HCK REACTS_WITH ITGAM -HCK REACTS_WITH ITGB2 -HCK REACTS_WITH JAK1 -HCK STATE_CHANGE PTPN11 -HCK STATE_CHANGE SOS1 -HDAC11 IN_SAME_COMPONENT HDAC6 -HDAC11 REACTS_WITH HDAC11 -HDAC11 REACTS_WITH HDAC6 -HDAC1 CO_CONTROL AR -HDAC1 CO_CONTROL ARRB2 -HDAC1 CO_CONTROL CITED1 -HDAC1 CO_CONTROL E2F1 -HDAC1 CO_CONTROL EP300 -HDAC1 CO_CONTROL FOS -HDAC1 CO_CONTROL GATA3 -HDAC1 CO_CONTROL JUN -HDAC1 CO_CONTROL KAT5 -HDAC1 CO_CONTROL MDM2 -HDAC1 CO_CONTROL NOTCH1 -HDAC1 CO_CONTROL PRMT5 -HDAC1 CO_CONTROL RBPJ -HDAC1 CO_CONTROL SMO -HDAC1 CO_CONTROL SP1 -HDAC1 CO_CONTROL TFDP1 -HDAC1 CO_CONTROL ZBTB17 -HDAC1 IN_SAME_COMPONENT CHD3 -HDAC1 IN_SAME_COMPONENT CHD4 -HDAC1 IN_SAME_COMPONENT CTBP1 -HDAC1 IN_SAME_COMPONENT DNMT1 -HDAC1 IN_SAME_COMPONENT E2F1 -HDAC1 IN_SAME_COMPONENT E2F4 -HDAC1 IN_SAME_COMPONENT FKBP3 -HDAC1 IN_SAME_COMPONENT GATA1 -HDAC1 IN_SAME_COMPONENT GATAD2A -HDAC1 IN_SAME_COMPONENT GATAD2B -HDAC1 IN_SAME_COMPONENT HDAC2 -HDAC1 IN_SAME_COMPONENT LEF1 -HDAC1 IN_SAME_COMPONENT MAX -HDAC1 IN_SAME_COMPONENT MBD2 -HDAC1 IN_SAME_COMPONENT MBD3 -HDAC1 IN_SAME_COMPONENT MBD3L2 -HDAC1 IN_SAME_COMPONENT MTA2 -HDAC1 IN_SAME_COMPONENT MXD1 -HDAC1 IN_SAME_COMPONENT NCOR1 -HDAC1 IN_SAME_COMPONENT NFKBIA -HDAC1 IN_SAME_COMPONENT NRIP1 -HDAC1 IN_SAME_COMPONENT PITX2 -HDAC1 IN_SAME_COMPONENT RAN -HDAC1 IN_SAME_COMPONENT RB1 -HDAC1 IN_SAME_COMPONENT RBBP4 -HDAC1 IN_SAME_COMPONENT RBBP7 -HDAC1 IN_SAME_COMPONENT RBPJ -HDAC1 IN_SAME_COMPONENT SAP18 -HDAC1 IN_SAME_COMPONENT SAP30 -HDAC1 IN_SAME_COMPONENT SIN3A -HDAC1 IN_SAME_COMPONENT SIN3B -HDAC1 IN_SAME_COMPONENT SKI -HDAC1 IN_SAME_COMPONENT SKIL -HDAC1 IN_SAME_COMPONENT SMAD2 -HDAC1 IN_SAME_COMPONENT SMAD4 -HDAC1 IN_SAME_COMPONENT SMAD7 -HDAC1 IN_SAME_COMPONENT SUFU -HDAC1 IN_SAME_COMPONENT TCF4 -HDAC1 IN_SAME_COMPONENT TFCP2 -HDAC1 IN_SAME_COMPONENT TFDP1 -HDAC1 IN_SAME_COMPONENT TFDP2 -HDAC1 IN_SAME_COMPONENT TGIF1 -HDAC1 IN_SAME_COMPONENT TLE1 -HDAC1 IN_SAME_COMPONENT UBE3A -HDAC1 IN_SAME_COMPONENT XPO1 -HDAC1 IN_SAME_COMPONENT YY1 -HDAC1 IN_SAME_COMPONENT ZFPM1 -HDAC1 METABOLIC_CATALYSIS CCND1 -HDAC1 METABOLIC_CATALYSIS E2F1 -HDAC1 METABOLIC_CATALYSIS HES1 -HDAC1 METABOLIC_CATALYSIS ID1 -HDAC1 METABOLIC_CATALYSIS IL5 -HDAC1 METABOLIC_CATALYSIS KLK3 -HDAC1 METABOLIC_CATALYSIS TERT -HDAC1 REACTS_WITH AATF -HDAC1 REACTS_WITH CHD3 -HDAC1 REACTS_WITH CHD4 -HDAC1 REACTS_WITH CTNNB1 -HDAC1 REACTS_WITH DNMT1 -HDAC1 REACTS_WITH E2F1 -HDAC1 REACTS_WITH E2F4 -HDAC1 REACTS_WITH EP300 -HDAC1 REACTS_WITH FKBP3 -HDAC1 REACTS_WITH GATA1 -HDAC1 REACTS_WITH GATAD2A -HDAC1 REACTS_WITH GATAD2B -HDAC1 REACTS_WITH HDAC1 -HDAC1 REACTS_WITH HDAC2 -HDAC1 REACTS_WITH HDAC3 -HDAC1 REACTS_WITH LEF1 -HDAC1 REACTS_WITH MAX -HDAC1 REACTS_WITH MBD2 -HDAC1 REACTS_WITH MBD3 -HDAC1 REACTS_WITH MBD3L2 -HDAC1 REACTS_WITH MTA2 -HDAC1 REACTS_WITH MXD1 -HDAC1 REACTS_WITH NCOR1 -HDAC1 REACTS_WITH NFKBIA -HDAC1 REACTS_WITH NOTCH1 -HDAC1 REACTS_WITH NRIP1 -HDAC1 REACTS_WITH PITX2 -HDAC1 REACTS_WITH PRMT5 -HDAC1 REACTS_WITH RAN -HDAC1 REACTS_WITH RB1 -HDAC1 REACTS_WITH RBBP4 -HDAC1 REACTS_WITH RBBP7 -HDAC1 REACTS_WITH RBPJ -HDAC1 REACTS_WITH SAP18 -HDAC1 REACTS_WITH SAP30 -HDAC1 REACTS_WITH SIN3A -HDAC1 REACTS_WITH SIN3B -HDAC1 REACTS_WITH SKIL -HDAC1 REACTS_WITH SMAD2 -HDAC1 REACTS_WITH SMAD4 -HDAC1 REACTS_WITH SMAD7 -HDAC1 REACTS_WITH SUFU -HDAC1 REACTS_WITH TBL1X -HDAC1 REACTS_WITH TBL1XR1 -HDAC1 REACTS_WITH TCF4 -HDAC1 REACTS_WITH TFCP2 -HDAC1 REACTS_WITH TFDP1 -HDAC1 REACTS_WITH TFDP2 -HDAC1 REACTS_WITH TLE1 -HDAC1 REACTS_WITH UBE3A -HDAC1 REACTS_WITH WDR77 -HDAC1 REACTS_WITH XPO1 -HDAC1 REACTS_WITH YY1 -HDAC1 REACTS_WITH ZFPM1 -HDAC1 STATE_CHANGE GLI1 -HDAC1 STATE_CHANGE GLI3 -HDAC1 STATE_CHANGE SMAD2 -HDAC1 STATE_CHANGE SMAD4 -HDAC2 CO_CONTROL ARRB2 -HDAC2 CO_CONTROL CITED1 -HDAC2 CO_CONTROL POU4F1 -HDAC2 CO_CONTROL SMARCA4 -HDAC2 CO_CONTROL SMO -HDAC2 CO_CONTROL TADA2B -HDAC2 CO_CONTROL TAF9 -HDAC2 CO_CONTROL TP53 -HDAC2 CO_CONTROL TRRAP -HDAC2 CO_CONTROL ZNF385A -HDAC2 IN_SAME_COMPONENT CHD3 -HDAC2 IN_SAME_COMPONENT CHD4 -HDAC2 IN_SAME_COMPONENT CTBP1 -HDAC2 IN_SAME_COMPONENT FKBP3 -HDAC2 IN_SAME_COMPONENT GATA1 -HDAC2 IN_SAME_COMPONENT GATAD2A -HDAC2 IN_SAME_COMPONENT GATAD2B -HDAC2 IN_SAME_COMPONENT HDAC1 -HDAC2 IN_SAME_COMPONENT MAX -HDAC2 IN_SAME_COMPONENT MBD2 -HDAC2 IN_SAME_COMPONENT MBD3 -HDAC2 IN_SAME_COMPONENT MBD3L2 -HDAC2 IN_SAME_COMPONENT MTA2 -HDAC2 IN_SAME_COMPONENT MXD1 -HDAC2 IN_SAME_COMPONENT NCOR1 -HDAC2 IN_SAME_COMPONENT NFKB1 -HDAC2 IN_SAME_COMPONENT RBBP4 -HDAC2 IN_SAME_COMPONENT RBBP7 -HDAC2 IN_SAME_COMPONENT RELA -HDAC2 IN_SAME_COMPONENT SAP18 -HDAC2 IN_SAME_COMPONENT SAP30 -HDAC2 IN_SAME_COMPONENT SIN3A -HDAC2 IN_SAME_COMPONENT SIN3B -HDAC2 IN_SAME_COMPONENT SKI -HDAC2 IN_SAME_COMPONENT SKIL -HDAC2 IN_SAME_COMPONENT SMAD2 -HDAC2 IN_SAME_COMPONENT SMAD4 -HDAC2 IN_SAME_COMPONENT SP1 -HDAC2 IN_SAME_COMPONENT SP3 -HDAC2 IN_SAME_COMPONENT SUFU -HDAC2 IN_SAME_COMPONENT TGIF1 -HDAC2 IN_SAME_COMPONENT UBE3A -HDAC2 IN_SAME_COMPONENT YY1 -HDAC2 IN_SAME_COMPONENT ZFPM1 -HDAC2 METABOLIC_CATALYSIS CDKN1A -HDAC2 METABOLIC_CATALYSIS CSF2 -HDAC2 METABOLIC_CATALYSIS DKK1 -HDAC2 METABOLIC_CATALYSIS FDXR -HDAC2 METABOLIC_CATALYSIS MDM2 -HDAC2 METABOLIC_CATALYSIS TERT -HDAC2 REACTS_WITH CHD3 -HDAC2 REACTS_WITH CHD4 -HDAC2 REACTS_WITH FKBP3 -HDAC2 REACTS_WITH GATA1 -HDAC2 REACTS_WITH GATAD2A -HDAC2 REACTS_WITH GATAD2B -HDAC2 REACTS_WITH HDAC1 -HDAC2 REACTS_WITH HDAC2 -HDAC2 REACTS_WITH MAX -HDAC2 REACTS_WITH MBD2 -HDAC2 REACTS_WITH MBD3 -HDAC2 REACTS_WITH MBD3L2 -HDAC2 REACTS_WITH MTA2 -HDAC2 REACTS_WITH MXD1 -HDAC2 REACTS_WITH NCOR1 -HDAC2 REACTS_WITH NFKB1 -HDAC2 REACTS_WITH PRMT5 -HDAC2 REACTS_WITH RBBP4 -HDAC2 REACTS_WITH RBBP7 -HDAC2 REACTS_WITH RELA -HDAC2 REACTS_WITH SAP18 -HDAC2 REACTS_WITH SAP30 -HDAC2 REACTS_WITH SIN3A -HDAC2 REACTS_WITH SIN3B -HDAC2 REACTS_WITH SKIL -HDAC2 REACTS_WITH SMAD2 -HDAC2 REACTS_WITH SMAD4 -HDAC2 REACTS_WITH SUFU -HDAC2 REACTS_WITH UBE3A -HDAC2 REACTS_WITH WDR77 -HDAC2 REACTS_WITH YY1 -HDAC2 REACTS_WITH ZFPM1 -HDAC2 STATE_CHANGE GLI1 -HDAC2 STATE_CHANGE GLI3 -HDAC2 STATE_CHANGE SMAD2 -HDAC2 STATE_CHANGE SMAD4 -HDAC3 CO_CONTROL HDAC4 -HDAC3 CO_CONTROL MAX -HDAC3 CO_CONTROL MYC -HDAC3 CO_CONTROL UBE2I -HDAC3 CO_CONTROL ZBTB17 -HDAC3 IN_SAME_COMPONENT GATA1 -HDAC3 IN_SAME_COMPONENT GATA2 -HDAC3 IN_SAME_COMPONENT HDAC4 -HDAC3 IN_SAME_COMPONENT HDAC7 -HDAC3 IN_SAME_COMPONENT MAX -HDAC3 IN_SAME_COMPONENT MYC -HDAC3 IN_SAME_COMPONENT NCOR2 -HDAC3 IN_SAME_COMPONENT NFKBIA -HDAC3 IN_SAME_COMPONENT NR2C1 -HDAC3 IN_SAME_COMPONENT NRIP1 -HDAC3 IN_SAME_COMPONENT PPARG -HDAC3 IN_SAME_COMPONENT RB1 -HDAC3 IN_SAME_COMPONENT RBBP4 -HDAC3 IN_SAME_COMPONENT STAT3 -HDAC3 IN_SAME_COMPONENT TFDP1 -HDAC3 IN_SAME_COMPONENT YY1 -HDAC3 METABOLIC_CATALYSIS DDIT3 -HDAC3 METABOLIC_CATALYSIS ID2 -HDAC3 REACTS_WITH GATA1 -HDAC3 REACTS_WITH GATA2 -HDAC3 REACTS_WITH HDAC1 -HDAC3 REACTS_WITH HDAC3 -HDAC3 REACTS_WITH HDAC4 -HDAC3 REACTS_WITH HDAC7 -HDAC3 REACTS_WITH MAX -HDAC3 REACTS_WITH MYC -HDAC3 REACTS_WITH NCOR2 -HDAC3 REACTS_WITH NFKB1 -HDAC3 REACTS_WITH NFKBIA -HDAC3 REACTS_WITH NR2C1 -HDAC3 REACTS_WITH NRIP1 -HDAC3 REACTS_WITH PPARG -HDAC3 REACTS_WITH RB1 -HDAC3 REACTS_WITH RBBP4 -HDAC3 REACTS_WITH RELA -HDAC3 REACTS_WITH STAT3 -HDAC3 REACTS_WITH TFDP1 -HDAC3 REACTS_WITH YY1 -HDAC3 STATE_CHANGE HDAC4 -HDAC3 STATE_CHANGE MEF2C -HDAC3 STATE_CHANGE PPARG -HDAC3 STATE_CHANGE RELA -HDAC4 CO_CONTROL HDAC3 -HDAC4 CO_CONTROL HDAC4 -HDAC4 CO_CONTROL NCOR2 -HDAC4 CO_CONTROL UBE2I -HDAC4 IN_SAME_COMPONENT ANKRA2 -HDAC4 IN_SAME_COMPONENT ESR1 -HDAC4 IN_SAME_COMPONENT GATA1 -HDAC4 IN_SAME_COMPONENT HDAC3 -HDAC4 IN_SAME_COMPONENT MEF2C -HDAC4 IN_SAME_COMPONENT MEF2D -HDAC4 IN_SAME_COMPONENT NCOR2 -HDAC4 IN_SAME_COMPONENT RAN -HDAC4 IN_SAME_COMPONENT RFXANK -HDAC4 IN_SAME_COMPONENT SIRT1 -HDAC4 IN_SAME_COMPONENT SRF -HDAC4 IN_SAME_COMPONENT UBE2I -HDAC4 IN_SAME_COMPONENT XPO1 -HDAC4 IN_SAME_COMPONENT YWHAB -HDAC4 IN_SAME_COMPONENT YWHAE -HDAC4 REACTS_WITH ANKRA2 -HDAC4 REACTS_WITH ESR1 -HDAC4 REACTS_WITH GATA1 -HDAC4 REACTS_WITH HDAC3 -HDAC4 REACTS_WITH HDAC4 -HDAC4 REACTS_WITH MEF2C -HDAC4 REACTS_WITH MEF2D -HDAC4 REACTS_WITH NCOR2 -HDAC4 REACTS_WITH RAN -HDAC4 REACTS_WITH RFXANK -HDAC4 REACTS_WITH SIRT1 -HDAC4 REACTS_WITH SRF -HDAC4 REACTS_WITH UBE2I -HDAC4 REACTS_WITH XPO1 -HDAC4 REACTS_WITH YWHAB -HDAC4 REACTS_WITH YWHAE -HDAC4 STATE_CHANGE HDAC4 -HDAC4 STATE_CHANGE MEF2C -HDAC5 IN_SAME_COMPONENT ANKRA2 -HDAC5 IN_SAME_COMPONENT BCL6 -HDAC5 IN_SAME_COMPONENT BCOR -HDAC5 IN_SAME_COMPONENT GATA1 -HDAC5 IN_SAME_COMPONENT GATA2 -HDAC5 IN_SAME_COMPONENT GNG2 -HDAC5 IN_SAME_COMPONENT RFXANK -HDAC5 IN_SAME_COMPONENT YWHAB -HDAC5 IN_SAME_COMPONENT YWHAE -HDAC5 REACTS_WITH ANKRA2 -HDAC5 REACTS_WITH BCL6 -HDAC5 REACTS_WITH BCOR -HDAC5 REACTS_WITH GATA1 -HDAC5 REACTS_WITH GATA2 -HDAC5 REACTS_WITH GNG2 -HDAC5 REACTS_WITH HDAC5 -HDAC5 REACTS_WITH RFXANK -HDAC5 REACTS_WITH YWHAB -HDAC5 REACTS_WITH YWHAE -HDAC6 IN_SAME_COMPONENT HDAC11 -HDAC6 IN_SAME_COMPONENT HSP90AA1 -HDAC6 IN_SAME_COMPONENT NR3C1 -HDAC6 IN_SAME_COMPONENT TUBB2A -HDAC6 REACTS_WITH HDAC11 -HDAC6 REACTS_WITH HDAC6 -HDAC6 REACTS_WITH HSP90AA1 -HDAC6 REACTS_WITH NR3C1 -HDAC6 REACTS_WITH TUBB2A -HDAC7 CO_CONTROL AR -HDAC7 IN_SAME_COMPONENT ARNT -HDAC7 IN_SAME_COMPONENT HDAC3 -HDAC7 IN_SAME_COMPONENT HIF1A -HDAC7 METABOLIC_CATALYSIS KLK3 -HDAC7 METABOLIC_CATALYSIS SLC2A1 -HDAC7 METABOLIC_CATALYSIS VEGFA -HDAC7 REACTS_WITH ARNT -HDAC7 REACTS_WITH CITED2 -HDAC7 REACTS_WITH HDAC3 -HDAC7 REACTS_WITH HDAC7 -HDAC7 REACTS_WITH HIF1A -HDAC8 IN_SAME_COMPONENT SMG5 -HDAC8 REACTS_WITH HDAC8 -HDAC8 REACTS_WITH SMG5 -HES1 CO_CONTROL CREBBP -HES1 CO_CONTROL EP300 -HES1 CO_CONTROL HES1 -HES1 CO_CONTROL HES6 -HES1 CO_CONTROL NOTCH1 -HES1 CO_CONTROL PARP1 -HES1 CO_CONTROL RBPJ -HES1 CO_CONTROL TLE1 -HES1 CO_CONTROL YY1 -HES1 IN_SAME_COMPONENT CREBBP -HES1 IN_SAME_COMPONENT GATA1 -HES1 IN_SAME_COMPONENT HES6 -HES1 IN_SAME_COMPONENT JAK2 -HES1 IN_SAME_COMPONENT MYB -HES1 IN_SAME_COMPONENT PARP1 -HES1 IN_SAME_COMPONENT PTF1A -HES1 IN_SAME_COMPONENT RB1 -HES1 IN_SAME_COMPONENT RBPJ -HES1 IN_SAME_COMPONENT RUNX2 -HES1 IN_SAME_COMPONENT TLE1 -HES1 METABOLIC_CATALYSIS ASCL1 -HES1 METABOLIC_CATALYSIS BGLAP -HES1 METABOLIC_CATALYSIS CD4 -HES1 METABOLIC_CATALYSIS CDKN1B -HES1 METABOLIC_CATALYSIS E2F1 -HES1 METABOLIC_CATALYSIS GAA -HES1 METABOLIC_CATALYSIS GHR -HES1 METABOLIC_CATALYSIS HES1 -HES1 METABOLIC_CATALYSIS NEUROG3 -HES1 METABOLIC_CATALYSIS RCAN1 -HES1 REACTS_WITH CREBBP -HES1 REACTS_WITH EP300 -HES1 REACTS_WITH GATA1 -HES1 REACTS_WITH HES1 -HES1 REACTS_WITH HES6 -HES1 REACTS_WITH JAK2 -HES1 REACTS_WITH MYB -HES1 REACTS_WITH NOTCH1 -HES1 REACTS_WITH PARP1 -HES1 REACTS_WITH PTF1A -HES1 REACTS_WITH RB1 -HES1 REACTS_WITH RBPJ -HES1 REACTS_WITH RUNX2 -HES1 REACTS_WITH TLE1 -HES1 STATE_CHANGE STAT3 -HES6 CO_CONTROL HES1 -HES6 CO_CONTROL PARP1 -HES6 CO_CONTROL TLE1 -HES6 IN_SAME_COMPONENT HES1 -HES6 METABOLIC_CATALYSIS ASCL1 -HES6 METABOLIC_CATALYSIS NEUROG3 -HES6 REACTS_WITH HES1 -HES6 REACTS_WITH HES6 -HEY1 IN_SAME_COMPONENT AR -HEY1 IN_SAME_COMPONENT GATA1 -HEY1 IN_SAME_COMPONENT GATA4 -HEY1 IN_SAME_COMPONENT GATA6 -HEY1 IN_SAME_COMPONENT MYOD1 -HEY1 IN_SAME_COMPONENT NCOA1 -HEY1 IN_SAME_COMPONENT RBPJ -HEY1 METABOLIC_CATALYSIS KDR -HEY1 REACTS_WITH AR -HEY1 REACTS_WITH GATA1 -HEY1 REACTS_WITH GATA4 -HEY1 REACTS_WITH GATA6 -HEY1 REACTS_WITH HEY1 -HEY1 REACTS_WITH MYOD1 -HEY1 REACTS_WITH NCOA1 -HEY1 REACTS_WITH NOTCH1 -HEY1 REACTS_WITH RBPJ -HEY1 REACTS_WITH TCF3 -HEY2 IN_SAME_COMPONENT ARNT -HEY2 IN_SAME_COMPONENT GATA4 -HEY2 IN_SAME_COMPONENT GATA6 -HEY2 IN_SAME_COMPONENT RUNX2 -HEY2 REACTS_WITH ARNT -HEY2 REACTS_WITH GATA4 -HEY2 REACTS_WITH GATA6 -HEY2 REACTS_WITH HEY2 -HEY2 REACTS_WITH HIF1A -HEY2 REACTS_WITH RUNX2 -HGF CO_CONTROL SRC -HGF IN_SAME_COMPONENT CRK -HGF IN_SAME_COMPONENT CRKL -HGF IN_SAME_COMPONENT EPS15 -HGF IN_SAME_COMPONENT GAB1 -HGF IN_SAME_COMPONENT GAB2 -HGF IN_SAME_COMPONENT INPP5D -HGF IN_SAME_COMPONENT INPPL1 -HGF IN_SAME_COMPONENT MET -HGF IN_SAME_COMPONENT PAK4 -HGF IN_SAME_COMPONENT PTPN11 -HGF IN_SAME_COMPONENT RANBP10 -HGF IN_SAME_COMPONENT RANBP9 -HGF IN_SAME_COMPONENT SDC1 -HGF IN_SAME_COMPONENT SOS1 -HGF IN_SAME_COMPONENT WASL -HGF INTERACTS_WITH PLAU -HGF INTERACTS_WITH PLAUR -HGF REACTS_WITH CRK -HGF REACTS_WITH CRKL -HGF REACTS_WITH CTNNB1 -HGF REACTS_WITH EPS15 -HGF REACTS_WITH GAB1 -HGF REACTS_WITH GAB2 -HGF REACTS_WITH HGF -HGF REACTS_WITH INPP5D -HGF REACTS_WITH INPPL1 -HGF REACTS_WITH MET -HGF REACTS_WITH PAK4 -HGF REACTS_WITH PTPN11 -HGF REACTS_WITH RANBP10 -HGF REACTS_WITH RANBP9 -HGF REACTS_WITH SDC1 -HGF REACTS_WITH SOS1 -HGF REACTS_WITH WASL -HGF STATE_CHANGE BCAR1 -HGF STATE_CHANGE CDC42 -HGF STATE_CHANGE CRK -HGF STATE_CHANGE GAB1 -HGF STATE_CHANGE HGF -HGF STATE_CHANGE HRAS -HGF STATE_CHANGE MAPK8 -HGF STATE_CHANGE MET -HGF STATE_CHANGE PLCG1 -HGF STATE_CHANGE RAPGEF1 -HGF STATE_CHANGE SRC -HGS CO_CONTROL RAB7A -HGS CO_CONTROL TSG101 -HGS CO_CONTROL VPS24 -HGS CO_CONTROL ZFYVE28 -HGS STATE_CHANGE CDH1 -HGS STATE_CHANGE CTNNB1 -HGS STATE_CHANGE CXCL12 -HGS STATE_CHANGE CXCR4 -HGS STATE_CHANGE EGF -HGS STATE_CHANGE EGFR -HGS STATE_CHANGE HGF -HGS STATE_CHANGE MET -HGS STATE_CHANGE SOS1 -HHAT STATE_CHANGE SHH -HHIP IN_SAME_COMPONENT DHH -HHIP IN_SAME_COMPONENT IHH -HHIP IN_SAME_COMPONENT SHH -HHIP REACTS_WITH DHH -HHIP REACTS_WITH HHIP -HHIP REACTS_WITH IHH -HHIP REACTS_WITH SHH -HIF1A CO_CONTROL CREB1 -HIF1A CO_CONTROL FOS -HIF1A CO_CONTROL GATA2 -HIF1A CO_CONTROL HNF4A -HIF1A CO_CONTROL JUN -HIF1A CO_CONTROL JUND -HIF1A CO_CONTROL NCOA2 -HIF1A CO_CONTROL SP1 -HIF1A IN_SAME_COMPONENT ARNT -HIF1A IN_SAME_COMPONENT COPS5 -HIF1A IN_SAME_COMPONENT CUL2 -HIF1A IN_SAME_COMPONENT HDAC7 -HIF1A IN_SAME_COMPONENT HSP90AA1 -HIF1A IN_SAME_COMPONENT NCOA1 -HIF1A IN_SAME_COMPONENT RBX1 -HIF1A IN_SAME_COMPONENT SMAD4 -HIF1A IN_SAME_COMPONENT SP1 -HIF1A IN_SAME_COMPONENT TCEB1 -HIF1A IN_SAME_COMPONENT TCEB2 -HIF1A IN_SAME_COMPONENT TP53 -HIF1A IN_SAME_COMPONENT VHL -HIF1A METABOLIC_CATALYSIS ABCB1 -HIF1A METABOLIC_CATALYSIS ABCG2 -HIF1A METABOLIC_CATALYSIS ADM -HIF1A METABOLIC_CATALYSIS AGT -HIF1A METABOLIC_CATALYSIS ALDOA -HIF1A METABOLIC_CATALYSIS BHLHE40 -HIF1A METABOLIC_CATALYSIS BHLHE41 -HIF1A METABOLIC_CATALYSIS BNIP3 -HIF1A METABOLIC_CATALYSIS CA9 -HIF1A METABOLIC_CATALYSIS CITED2 -HIF1A METABOLIC_CATALYSIS CP -HIF1A METABOLIC_CATALYSIS CXCL12 -HIF1A METABOLIC_CATALYSIS CXCR4 -HIF1A METABOLIC_CATALYSIS EDN1 -HIF1A METABOLIC_CATALYSIS EGLN1 -HIF1A METABOLIC_CATALYSIS EGLN3 -HIF1A METABOLIC_CATALYSIS ENG -HIF1A METABOLIC_CATALYSIS ENO1 -HIF1A METABOLIC_CATALYSIS EPO -HIF1A METABOLIC_CATALYSIS ETS1 -HIF1A METABOLIC_CATALYSIS FECH -HIF1A METABOLIC_CATALYSIS FLT1 -HIF1A METABOLIC_CATALYSIS FURIN -HIF1A METABOLIC_CATALYSIS GCK -HIF1A METABOLIC_CATALYSIS HK1 -HIF1A METABOLIC_CATALYSIS HK2 -HIF1A METABOLIC_CATALYSIS HMOX1 -HIF1A METABOLIC_CATALYSIS ID2 -HIF1A METABOLIC_CATALYSIS IGFBP1 -HIF1A METABOLIC_CATALYSIS ITGB2 -HIF1A METABOLIC_CATALYSIS LDHA -HIF1A METABOLIC_CATALYSIS LEP -HIF1A METABOLIC_CATALYSIS MCL1 -HIF1A METABOLIC_CATALYSIS NDRG1 -HIF1A METABOLIC_CATALYSIS NOS2 -HIF1A METABOLIC_CATALYSIS NT5E -HIF1A METABOLIC_CATALYSIS PFKFB3 -HIF1A METABOLIC_CATALYSIS PFKL -HIF1A METABOLIC_CATALYSIS PGK1 -HIF1A METABOLIC_CATALYSIS PGM1 -HIF1A METABOLIC_CATALYSIS PKM2 -HIF1A METABOLIC_CATALYSIS PLIN2 -HIF1A METABOLIC_CATALYSIS SERPINE1 -HIF1A METABOLIC_CATALYSIS SLC2A1 -HIF1A METABOLIC_CATALYSIS TERT -HIF1A METABOLIC_CATALYSIS TF -HIF1A METABOLIC_CATALYSIS TFF3 -HIF1A METABOLIC_CATALYSIS TFRC -HIF1A METABOLIC_CATALYSIS VEGFA -HIF1AN STATE_CHANGE EPAS1 -HIF1AN STATE_CHANGE HIF1A -HIF1A REACTS_WITH ARNT -HIF1A REACTS_WITH CITED2 -HIF1A REACTS_WITH COPS5 -HIF1A REACTS_WITH CUL2 -HIF1A REACTS_WITH HDAC7 -HIF1A REACTS_WITH HEY2 -HIF1A REACTS_WITH HIF1A -HIF1A REACTS_WITH HIF3A -HIF1A REACTS_WITH HSP90AA1 -HIF1A REACTS_WITH NCOA1 -HIF1A REACTS_WITH RBX1 -HIF1A REACTS_WITH SMAD4 -HIF1A REACTS_WITH SP1 -HIF1A REACTS_WITH TCEB1 -HIF1A REACTS_WITH TCEB2 -HIF1A REACTS_WITH TP53 -HIF1A REACTS_WITH VHL -HIF3A IN_SAME_COMPONENT ARNT -HIF3A REACTS_WITH ARNT -HIF3A REACTS_WITH HIF1A -HIF3A REACTS_WITH HIF3A -HIP1 CO_CONTROL AR -HIP1 METABOLIC_CATALYSIS KLK3 -HIPK2 CO_CONTROL PPP1R13L -HIPK2 STATE_CHANGE NLK -HIPK2 STATE_CHANGE TP53 -HIST1H1E IN_SAME_COMPONENT SIRT1 -HIST1H1E REACTS_WITH HIST1H1E -HIST1H1E REACTS_WITH SIRT1 -HLA-A CO_CONTROL MAPK8 -HLA-A IN_SAME_COMPONENT B2M -HLA-A IN_SAME_COMPONENT CBL -HLA-A IN_SAME_COMPONENT CD247 -HLA-A IN_SAME_COMPONENT CD3D -HLA-A IN_SAME_COMPONENT CD3E -HLA-A IN_SAME_COMPONENT CD3G -HLA-A IN_SAME_COMPONENT CD8A -HLA-A IN_SAME_COMPONENT CD8B -HLA-A IN_SAME_COMPONENT FYN -HLA-A IN_SAME_COMPONENT LCK -HLA-A IN_SAME_COMPONENT ZAP70 -HLA-A METABOLIC_CATALYSIS EOMES -HLA-A METABOLIC_CATALYSIS LAT -HLA-A METABOLIC_CATALYSIS PRF1 -HLA-A REACTS_WITH B2M -HLA-A REACTS_WITH CBL -HLA-A REACTS_WITH CD247 -HLA-A REACTS_WITH CD3D -HLA-A REACTS_WITH CD3E -HLA-A REACTS_WITH CD3G -HLA-A REACTS_WITH CD8A -HLA-A REACTS_WITH CD8B -HLA-A REACTS_WITH FYN -HLA-A REACTS_WITH HLA-A -HLA-A REACTS_WITH LCK -HLA-A REACTS_WITH ZAP70 -HLA-A STATE_CHANGE CD28 -HLA-A STATE_CHANGE CSK -HLA-A STATE_CHANGE GRAP2 -HLA-A STATE_CHANGE IL2 -HLA-A STATE_CHANGE IL2RA -HLA-A STATE_CHANGE IL2RB -HLA-A STATE_CHANGE IL2RG -HLA-A STATE_CHANGE JUN -HLA-A STATE_CHANGE LCP2 -HLA-A STATE_CHANGE PAG1 -HLA-A STATE_CHANGE PRKCQ -HLA-A STATE_CHANGE PTPN6 -HLA-A STATE_CHANGE VAV1 -HLA-DRA CO_CONTROL CD28 -HLA-DRA CO_CONTROL FYN -HLA-DRA CO_CONTROL ITK -HLA-DRA CO_CONTROL PTPN11 -HLA-DRA CO_CONTROL STAT4 -HLA-DRA CO_CONTROL TBX21 -HLA-DRA IN_SAME_COMPONENT CBL -HLA-DRA IN_SAME_COMPONENT CD247 -HLA-DRA IN_SAME_COMPONENT CD3D -HLA-DRA IN_SAME_COMPONENT CD3E -HLA-DRA IN_SAME_COMPONENT CD3G -HLA-DRA IN_SAME_COMPONENT CD4 -HLA-DRA IN_SAME_COMPONENT FYN -HLA-DRA IN_SAME_COMPONENT HLA-DRB1 -HLA-DRA IN_SAME_COMPONENT LCK -HLA-DRA IN_SAME_COMPONENT SH3BP2 -HLA-DRA IN_SAME_COMPONENT SLA2 -HLA-DRA IN_SAME_COMPONENT ZAP70 -HLA-DRA METABOLIC_CATALYSIS FOS -HLA-DRA METABOLIC_CATALYSIS IFNG -HLA-DRA REACTS_WITH CBL -HLA-DRA REACTS_WITH CD247 -HLA-DRA REACTS_WITH CD3D -HLA-DRA REACTS_WITH CD3E -HLA-DRA REACTS_WITH CD3G -HLA-DRA REACTS_WITH CD4 -HLA-DRA REACTS_WITH FYN -HLA-DRA REACTS_WITH HLA-DRA -HLA-DRA REACTS_WITH HLA-DRB1 -HLA-DRA REACTS_WITH LCK -HLA-DRA REACTS_WITH SH3BP2 -HLA-DRA REACTS_WITH SLA2 -HLA-DRA REACTS_WITH ZAP70 -HLA-DRA STATE_CHANGE CBL -HLA-DRA STATE_CHANGE CD28 -HLA-DRA STATE_CHANGE CSK -HLA-DRA STATE_CHANGE DBNL -HLA-DRA STATE_CHANGE FYB -HLA-DRA STATE_CHANGE GRAP2 -HLA-DRA STATE_CHANGE ITK -HLA-DRA STATE_CHANGE LCP2 -HLA-DRA STATE_CHANGE MAP4K1 -HLA-DRA STATE_CHANGE PAG1 -HLA-DRA STATE_CHANGE PRKCQ -HLA-DRA STATE_CHANGE PTPN11 -HLA-DRA STATE_CHANGE PTPN6 -HLA-DRA STATE_CHANGE SHC1 -HLA-DRA STATE_CHANGE VAV1 -HLA-DRB1 CO_CONTROL CD28 -HLA-DRB1 CO_CONTROL FYN -HLA-DRB1 CO_CONTROL ITK -HLA-DRB1 CO_CONTROL PTPN11 -HLA-DRB1 CO_CONTROL STAT4 -HLA-DRB1 CO_CONTROL TBX21 -HLA-DRB1 IN_SAME_COMPONENT CBL -HLA-DRB1 IN_SAME_COMPONENT CD247 -HLA-DRB1 IN_SAME_COMPONENT CD3D -HLA-DRB1 IN_SAME_COMPONENT CD3E -HLA-DRB1 IN_SAME_COMPONENT CD3G -HLA-DRB1 IN_SAME_COMPONENT CD4 -HLA-DRB1 IN_SAME_COMPONENT FYN -HLA-DRB1 IN_SAME_COMPONENT HLA-DRA -HLA-DRB1 IN_SAME_COMPONENT LCK -HLA-DRB1 IN_SAME_COMPONENT SH3BP2 -HLA-DRB1 IN_SAME_COMPONENT SLA2 -HLA-DRB1 IN_SAME_COMPONENT ZAP70 -HLA-DRB1 METABOLIC_CATALYSIS FOS -HLA-DRB1 METABOLIC_CATALYSIS IFNG -HLA-DRB1 REACTS_WITH CBL -HLA-DRB1 REACTS_WITH CD247 -HLA-DRB1 REACTS_WITH CD3D -HLA-DRB1 REACTS_WITH CD3E -HLA-DRB1 REACTS_WITH CD3G -HLA-DRB1 REACTS_WITH CD4 -HLA-DRB1 REACTS_WITH FYN -HLA-DRB1 REACTS_WITH HLA-DRA -HLA-DRB1 REACTS_WITH HLA-DRB1 -HLA-DRB1 REACTS_WITH LCK -HLA-DRB1 REACTS_WITH SH3BP2 -HLA-DRB1 REACTS_WITH SLA2 -HLA-DRB1 REACTS_WITH ZAP70 -HLA-DRB1 STATE_CHANGE CBL -HLA-DRB1 STATE_CHANGE CD28 -HLA-DRB1 STATE_CHANGE CSK -HLA-DRB1 STATE_CHANGE DBNL -HLA-DRB1 STATE_CHANGE FYB -HLA-DRB1 STATE_CHANGE GRAP2 -HLA-DRB1 STATE_CHANGE ITK -HLA-DRB1 STATE_CHANGE LCP2 -HLA-DRB1 STATE_CHANGE MAP4K1 -HLA-DRB1 STATE_CHANGE PAG1 -HLA-DRB1 STATE_CHANGE PRKCQ -HLA-DRB1 STATE_CHANGE PTPN11 -HLA-DRB1 STATE_CHANGE PTPN6 -HLA-DRB1 STATE_CHANGE SHC1 -HLA-DRB1 STATE_CHANGE VAV1 -HLX STATE_CHANGE STAT4 -HMGA1 CO_CONTROL BCL6 -HMGA1 CO_CONTROL CEBPB -HMGA1 CO_CONTROL STAT6 -HMGA1 METABOLIC_CATALYSIS IGHE -HMGB1 IN_SAME_COMPONENT AGER -HMGB1 IN_SAME_COMPONENT IRAK1 -HMGB1 IN_SAME_COMPONENT IRAK2 -HMGB1 IN_SAME_COMPONENT IRAK4 -HMGB1 IN_SAME_COMPONENT ITGAM -HMGB1 IN_SAME_COMPONENT ITGAV -HMGB1 IN_SAME_COMPONENT ITGB2 -HMGB1 IN_SAME_COMPONENT ITGB3 -HMGB1 IN_SAME_COMPONENT LY96 -HMGB1 IN_SAME_COMPONENT MYD88 -HMGB1 IN_SAME_COMPONENT TIRAP -HMGB1 IN_SAME_COMPONENT TLR1 -HMGB1 IN_SAME_COMPONENT TLR2 -HMGB1 IN_SAME_COMPONENT TLR4 -HMGB1 REACTS_WITH AGER -HMGB1 REACTS_WITH HMGB1 -HMGB1 REACTS_WITH IRAK1 -HMGB1 REACTS_WITH IRAK2 -HMGB1 REACTS_WITH IRAK4 -HMGB1 REACTS_WITH ITGAM -HMGB1 REACTS_WITH ITGAV -HMGB1 REACTS_WITH ITGB2 -HMGB1 REACTS_WITH ITGB3 -HMGB1 REACTS_WITH LY96 -HMGB1 REACTS_WITH MYD88 -HMGB1 REACTS_WITH TIRAP -HMGB1 REACTS_WITH TLR1 -HMGB1 REACTS_WITH TLR2 -HMGB1 REACTS_WITH TLR4 -HMGB1 STATE_CHANGE NFKB1 -HMGB1 STATE_CHANGE RHOA -HNF1A CO_CONTROL CREB1 -HNF1A CO_CONTROL FOXA2 -HNF1A CO_CONTROL FOXA3 -HNF1A CO_CONTROL SP1 -HNF1A IN_SAME_COMPONENT AES -HNF1A IN_SAME_COMPONENT CREBBP -HNF1A IN_SAME_COMPONENT CTBP1 -HNF1A IN_SAME_COMPONENT CTNNB1 -HNF1A IN_SAME_COMPONENT TLE1 -HNF1A METABOLIC_CATALYSIS CCND1 -HNF1A METABOLIC_CATALYSIS G6PC -HNF1A METABOLIC_CATALYSIS MYC -HNF1A METABOLIC_CATALYSIS PDX1 -HNF1A METABOLIC_CATALYSIS PPARD -HNF1A METABOLIC_CATALYSIS SLC2A2 -HNF1A REACTS_WITH AES -HNF1A REACTS_WITH CREBBP -HNF1A REACTS_WITH CTBP1 -HNF1A REACTS_WITH CTNNB1 -HNF1A REACTS_WITH HNF1A -HNF1A REACTS_WITH TLE1 -HNF4A CO_CONTROL ARNT -HNF4A CO_CONTROL FOXA2 -HNF4A CO_CONTROL HIF1A -HNF4A IN_SAME_COMPONENT SMAD4 -HNF4A METABOLIC_CATALYSIS APOA1 -HNF4A METABOLIC_CATALYSIS F2 -HNF4A METABOLIC_CATALYSIS GCK -HNF4A METABOLIC_CATALYSIS TTR -HNF4A REACTS_WITH HNF4A -HNF4A REACTS_WITH SMAD4 -HNRNPA1 CO_CONTROL AR -HNRNPA1 METABOLIC_CATALYSIS KLK3 -HNRNPC IN_SAME_COMPONENT DKC1 -HNRNPC IN_SAME_COMPONENT HSP90AA1 -HNRNPC IN_SAME_COMPONENT PTGES3 -HNRNPC IN_SAME_COMPONENT TERT -HNRNPC REACTS_WITH DKC1 -HNRNPC REACTS_WITH HNRNPC -HNRNPC REACTS_WITH HSP90AA1 -HNRNPC REACTS_WITH PTGES3 -HNRNPC REACTS_WITH TERT -HOXA10 IN_SAME_COMPONENT SIRT2 -HOXA10 REACTS_WITH HOXA10 -HOXA10 REACTS_WITH SIRT2 -HOXB13 CO_CONTROL AR -HOXB13 METABOLIC_CATALYSIS KLK3 -HRAS IN_SAME_COMPONENT CAV2 -HRAS IN_SAME_COMPONENT SDC2 -HRAS IN_SAME_COMPONENT SPRED1 -HRAS IN_SAME_COMPONENT SPRED2 -HRAS REACTS_WITH CAV2 -HRAS REACTS_WITH HRAS -HRAS REACTS_WITH SDC2 -HRAS REACTS_WITH SPRED1 -HRAS REACTS_WITH SPRED2 -HRAS STATE_CHANGE PAK2 -HRAS STATE_CHANGE RAF1 -HRAS STATE_CHANGE RASA1 -HRAS STATE_CHANGE RIN2 -HRAS STATE_CHANGE SDC2 -HSP90AA1 IN_SAME_COMPONENT AKT1 -HSP90AA1 IN_SAME_COMPONENT AR -HSP90AA1 IN_SAME_COMPONENT CDC37 -HSP90AA1 IN_SAME_COMPONENT DKC1 -HSP90AA1 IN_SAME_COMPONENT ERBB2 -HSP90AA1 IN_SAME_COMPONENT FKBP4 -HSP90AA1 IN_SAME_COMPONENT FKBP5 -HSP90AA1 IN_SAME_COMPONENT HDAC6 -HSP90AA1 IN_SAME_COMPONENT HIF1A -HSP90AA1 IN_SAME_COMPONENT HNRNPC -HSP90AA1 IN_SAME_COMPONENT HUS1 -HSP90AA1 IN_SAME_COMPONENT ITGAV -HSP90AA1 IN_SAME_COMPONENT ITGB3 -HSP90AA1 IN_SAME_COMPONENT KDR -HSP90AA1 IN_SAME_COMPONENT MTOR -HSP90AA1 IN_SAME_COMPONENT NCL -HSP90AA1 IN_SAME_COMPONENT NOS3 -HSP90AA1 IN_SAME_COMPONENT NR3C1 -HSP90AA1 IN_SAME_COMPONENT PDPK1 -HSP90AA1 IN_SAME_COMPONENT PINX1 -HSP90AA1 IN_SAME_COMPONENT PPP5C -HSP90AA1 IN_SAME_COMPONENT PTGES3 -HSP90AA1 IN_SAME_COMPONENT RAD1 -HSP90AA1 IN_SAME_COMPONENT RAD9A -HSP90AA1 IN_SAME_COMPONENT RHOA -HSP90AA1 IN_SAME_COMPONENT ROCK1 -HSP90AA1 IN_SAME_COMPONENT RPS6KB1 -HSP90AA1 IN_SAME_COMPONENT SFN -HSP90AA1 IN_SAME_COMPONENT SMG5 -HSP90AA1 IN_SAME_COMPONENT SMG6 -HSP90AA1 IN_SAME_COMPONENT SRC -HSP90AA1 IN_SAME_COMPONENT STK11 -HSP90AA1 IN_SAME_COMPONENT TERT -HSP90AA1 IN_SAME_COMPONENT VEGFA -HSP90AA1 IN_SAME_COMPONENT VTN -HSP90AA1 REACTS_WITH AKT1 -HSP90AA1 REACTS_WITH AR -HSP90AA1 REACTS_WITH CAV1 -HSP90AA1 REACTS_WITH CDC37 -HSP90AA1 REACTS_WITH DKC1 -HSP90AA1 REACTS_WITH EGF -HSP90AA1 REACTS_WITH EGFR -HSP90AA1 REACTS_WITH ERBB2 -HSP90AA1 REACTS_WITH ERBB3 -HSP90AA1 REACTS_WITH FKBP4 -HSP90AA1 REACTS_WITH FKBP5 -HSP90AA1 REACTS_WITH HDAC6 -HSP90AA1 REACTS_WITH HIF1A -HSP90AA1 REACTS_WITH HNRNPC -HSP90AA1 REACTS_WITH HSP90AA1 -HSP90AA1 REACTS_WITH HUS1 -HSP90AA1 REACTS_WITH ITGAV -HSP90AA1 REACTS_WITH ITGB3 -HSP90AA1 REACTS_WITH KDR -HSP90AA1 REACTS_WITH MTOR -HSP90AA1 REACTS_WITH NCL -HSP90AA1 REACTS_WITH NOS3 -HSP90AA1 REACTS_WITH NR3C1 -HSP90AA1 REACTS_WITH PINX1 -HSP90AA1 REACTS_WITH PPP5C -HSP90AA1 REACTS_WITH PTGES3 -HSP90AA1 REACTS_WITH RAD1 -HSP90AA1 REACTS_WITH RAD9A -HSP90AA1 REACTS_WITH RHOA -HSP90AA1 REACTS_WITH ROCK1 -HSP90AA1 REACTS_WITH RPS6KB1 -HSP90AA1 REACTS_WITH SFN -HSP90AA1 REACTS_WITH SMG5 -HSP90AA1 REACTS_WITH SMG6 -HSP90AA1 REACTS_WITH STK11 -HSP90AA1 REACTS_WITH TCEB1 -HSP90AA1 REACTS_WITH TCEB2 -HSP90AA1 REACTS_WITH TERT -HSP90AA1 REACTS_WITH VEGFA -HSP90AA1 REACTS_WITH VTN -HSP90AA1 STATE_CHANGE AKT1 -HSP90AA1 STATE_CHANGE RHOA -HSP90AA1 STATE_CHANGE SGK1 -HSP90AB1 IN_SAME_COMPONENT NOS3 -HSP90AB1 REACTS_WITH HSP90AB1 -HSP90AB1 REACTS_WITH NOS3 -HSPA8 CO_CONTROL CITED1 -HSPA8 IN_SAME_COMPONENT CITED1 -HSPA8 STATE_CHANGE SMAD2 -HSPA8 STATE_CHANGE SMAD4 -HSPD1 IN_SAME_COMPONENT LY96 -HSPD1 IN_SAME_COMPONENT MYD88 -HSPD1 IN_SAME_COMPONENT TIRAP -HSPD1 IN_SAME_COMPONENT TLR1 -HSPD1 IN_SAME_COMPONENT TLR2 -HSPD1 IN_SAME_COMPONENT TLR4 -HSPD1 REACTS_WITH HSPD1 -HSPD1 REACTS_WITH LY96 -HSPD1 REACTS_WITH MYD88 -HSPD1 REACTS_WITH TIRAP -HSPD1 REACTS_WITH TLR1 -HSPD1 REACTS_WITH TLR2 -HSPD1 REACTS_WITH TLR4 -HUS1 IN_SAME_COMPONENT ATR -HUS1 IN_SAME_COMPONENT ATRIP -HUS1 IN_SAME_COMPONENT CDC6 -HUS1 IN_SAME_COMPONENT CEP164 -HUS1 IN_SAME_COMPONENT CHEK1 -HUS1 IN_SAME_COMPONENT CLSPN -HUS1 IN_SAME_COMPONENT DKC1 -HUS1 IN_SAME_COMPONENT HSP90AA1 -HUS1 IN_SAME_COMPONENT PTGES3 -HUS1 IN_SAME_COMPONENT RAD1 -HUS1 IN_SAME_COMPONENT RAD17 -HUS1 IN_SAME_COMPONENT RAD9A -HUS1 IN_SAME_COMPONENT RFC2 -HUS1 IN_SAME_COMPONENT RFC3 -HUS1 IN_SAME_COMPONENT RFC4 -HUS1 IN_SAME_COMPONENT RFC5 -HUS1 IN_SAME_COMPONENT RPA1 -HUS1 IN_SAME_COMPONENT RPA2 -HUS1 IN_SAME_COMPONENT SMARCAL1 -HUS1 IN_SAME_COMPONENT TERT -HUS1 IN_SAME_COMPONENT TIMELESS -HUS1 IN_SAME_COMPONENT TIPIN -HUS1 IN_SAME_COMPONENT TOPBP1 -HUS1 REACTS_WITH ATR -HUS1 REACTS_WITH ATRIP -HUS1 REACTS_WITH CDC6 -HUS1 REACTS_WITH CEP164 -HUS1 REACTS_WITH CHEK1 -HUS1 REACTS_WITH CLSPN -HUS1 REACTS_WITH DKC1 -HUS1 REACTS_WITH HSP90AA1 -HUS1 REACTS_WITH HUS1 -HUS1 REACTS_WITH PTGES3 -HUS1 REACTS_WITH RAD1 -HUS1 REACTS_WITH RAD17 -HUS1 REACTS_WITH RAD9A -HUS1 REACTS_WITH RFC2 -HUS1 REACTS_WITH RFC3 -HUS1 REACTS_WITH RFC4 -HUS1 REACTS_WITH RFC5 -HUS1 REACTS_WITH RPA1 -HUS1 REACTS_WITH RPA2 -HUS1 REACTS_WITH SMARCAL1 -HUS1 REACTS_WITH TERT -HUS1 REACTS_WITH TIMELESS -HUS1 REACTS_WITH TIPIN -HUS1 REACTS_WITH TOPBP1 -HUS1 STATE_CHANGE FANCD2 -HUS1 STATE_CHANGE MCM2 -HUS1 STATE_CHANGE MDM2 -HUS1 STATE_CHANGE NBN -HUWE1 REACTS_WITH HUWE1 -HUWE1 STATE_CHANGE MAX -HUWE1 STATE_CHANGE MYC -IBSP IN_SAME_COMPONENT ITGAV -IBSP IN_SAME_COMPONENT ITGB3 -IBSP REACTS_WITH IBSP -IBSP REACTS_WITH ITGAV -IBSP REACTS_WITH ITGB3 -IBTK CO_CONTROL SH3BP5 -IBTK STATE_CHANGE BLNK -IBTK STATE_CHANGE BTK -IBTK STATE_CHANGE CD79A -IBTK STATE_CHANGE CD79B -IBTK STATE_CHANGE LYN -IBTK STATE_CHANGE PLCG2 -IBTK STATE_CHANGE SYK -ICAM1 IN_SAME_COMPONENT ITGAL -ICAM1 IN_SAME_COMPONENT ITGAM -ICAM1 IN_SAME_COMPONENT ITGAX -ICAM1 IN_SAME_COMPONENT ITGB2 -ICAM1 INTERACTS_WITH AKT1 -ICAM1 INTERACTS_WITH PRKCZ -ICAM1 REACTS_WITH ICAM1 -ICAM1 REACTS_WITH ITGAL -ICAM1 REACTS_WITH ITGAM -ICAM1 REACTS_WITH ITGAX -ICAM1 REACTS_WITH ITGB2 -ICAM2 IN_SAME_COMPONENT ITGAL -ICAM2 IN_SAME_COMPONENT ITGAM -ICAM2 IN_SAME_COMPONENT ITGB2 -ICAM2 REACTS_WITH ICAM2 -ICAM2 REACTS_WITH ITGAL -ICAM2 REACTS_WITH ITGAM -ICAM2 REACTS_WITH ITGB2 -ICAM3 IN_SAME_COMPONENT ITGAL -ICAM3 IN_SAME_COMPONENT ITGB2 -ICAM3 REACTS_WITH ICAM3 -ICAM3 REACTS_WITH ITGAD -ICAM3 REACTS_WITH ITGAL -ICAM3 REACTS_WITH ITGB2 -ICAM4 IN_SAME_COMPONENT ITGAL -ICAM4 IN_SAME_COMPONENT ITGAM -ICAM4 IN_SAME_COMPONENT ITGB2 -ICAM4 REACTS_WITH ICAM4 -ICAM4 REACTS_WITH ITGAL -ICAM4 REACTS_WITH ITGAM -ICAM4 REACTS_WITH ITGB2 -IFNAR1 CO_CONTROL FOS -IFNAR1 CO_CONTROL JUN -IFNAR1 IN_SAME_COMPONENT IFNAR2 -IFNAR1 METABOLIC_CATALYSIS IFNG -IFNAR2 CO_CONTROL FOS -IFNAR2 CO_CONTROL JUN -IFNAR2 IN_SAME_COMPONENT IFNAR1 -IFNAR2 METABOLIC_CATALYSIS IFNG -IFNAR2 METABOLIC_CATALYSIS TERT -IFNG IN_SAME_COMPONENT IFNGR1 -IFNG IN_SAME_COMPONENT IRF1 -IFNG IN_SAME_COMPONENT JAK1 -IFNG IN_SAME_COMPONENT JAK2 -IFNG IN_SAME_COMPONENT SOCS1 -IFNG INTERACTS_WITH PDGFRA -IFNG METABOLIC_CATALYSIS CDKN1B -IFNG METABOLIC_CATALYSIS IL23R -IFNG METABOLIC_CATALYSIS TERT -IFNGR1 IN_SAME_COMPONENT IFNG -IFNGR1 IN_SAME_COMPONENT JAK1 -IFNGR1 IN_SAME_COMPONENT JAK2 -IFNGR1 IN_SAME_COMPONENT SOCS1 -IFNGR1 REACTS_WITH IFNG -IFNGR1 REACTS_WITH IFNGR1 -IFNGR1 REACTS_WITH JAK1 -IFNGR1 REACTS_WITH JAK2 -IFNGR1 REACTS_WITH SOCS1 -IFNGR1 STATE_CHANGE CALM1 -IFNGR1 STATE_CHANGE CBL -IFNGR1 STATE_CHANGE MAP3K1 -IFNGR1 STATE_CHANGE MAP3K11 -IFNGR1 STATE_CHANGE PTPN11 -IFNGR1 STATE_CHANGE STAT1 -IFNG REACTS_WITH IFNG -IFNG REACTS_WITH IFNGR1 -IFNG REACTS_WITH JAK1 -IFNG REACTS_WITH JAK2 -IFNG REACTS_WITH SOCS1 -IFNG STATE_CHANGE CALM1 -IFNG STATE_CHANGE CBL -IFNG STATE_CHANGE MAP3K1 -IFNG STATE_CHANGE MAP3K11 -IFNG STATE_CHANGE PTPN11 -IFNG STATE_CHANGE STAT1 -IFNG STATE_CHANGE STAT5A -IFT172 METABOLIC_CATALYSIS GLI2 -IFT172 STATE_CHANGE GLI3 -IFT88 METABOLIC_CATALYSIS GLI2 -IFT88 STATE_CHANGE GLI3 -IGF1 IN_SAME_COMPONENT GRB10 -IGF1 IN_SAME_COMPONENT IGF1R -IGF1 IN_SAME_COMPONENT IRS1 -IGF1 IN_SAME_COMPONENT NCK2 -IGF1 IN_SAME_COMPONENT PTPN1 -IGF1 IN_SAME_COMPONENT PTPN11 -IGF1 IN_SAME_COMPONENT SHC1 -IGF1 IN_SAME_COMPONENT SOS1 -IGF1 REACTS_WITH GRB10 -IGF1 REACTS_WITH IGF1 -IGF1 REACTS_WITH IGF1R -IGF1 REACTS_WITH IRS1 -IGF1 REACTS_WITH NCK2 -IGF1 REACTS_WITH PTPN1 -IGF1 REACTS_WITH PTPN11 -IGF1 REACTS_WITH SHC1 -IGF1 REACTS_WITH SOS1 -IGF1R IN_SAME_COMPONENT GRB10 -IGF1R IN_SAME_COMPONENT IGF1 -IGF1R IN_SAME_COMPONENT IGF2 -IGF1R IN_SAME_COMPONENT IRS1 -IGF1R IN_SAME_COMPONENT NCK2 -IGF1R IN_SAME_COMPONENT PTPN1 -IGF1R IN_SAME_COMPONENT PTPN11 -IGF1R IN_SAME_COMPONENT SHC1 -IGF1R IN_SAME_COMPONENT SOS1 -IGF1R REACTS_WITH CDH1 -IGF1R REACTS_WITH CTNNA1 -IGF1R REACTS_WITH CTNNB1 -IGF1R REACTS_WITH CTNND1 -IGF1R REACTS_WITH GRB10 -IGF1R REACTS_WITH IGF1 -IGF1R REACTS_WITH IGF1R -IGF1R REACTS_WITH IRS1 -IGF1R REACTS_WITH NCK2 -IGF1R REACTS_WITH PTPN1 -IGF1R REACTS_WITH PTPN11 -IGF1R REACTS_WITH SHC1 -IGF1R REACTS_WITH SOS1 -IGF1R STATE_CHANGE BCAR1 -IGF1R STATE_CHANGE CRK -IGF1R STATE_CHANGE CRKL -IGF1R STATE_CHANGE HRAS -IGF1R STATE_CHANGE IRS1 -IGF1R STATE_CHANGE IRS2 -IGF1R STATE_CHANGE PRKCD -IGF1R STATE_CHANGE PRKD1 -IGF1R STATE_CHANGE PTPN11 -IGF1R STATE_CHANGE PXN -IGF1R STATE_CHANGE RPS6KB1 -IGF1 STATE_CHANGE BCAR1 -IGF1 STATE_CHANGE CRK -IGF1 STATE_CHANGE CRKL -IGF1 STATE_CHANGE HRAS -IGF1 STATE_CHANGE IRS1 -IGF1 STATE_CHANGE IRS2 -IGF1 STATE_CHANGE MAPK3 -IGF1 STATE_CHANGE PRKCD -IGF1 STATE_CHANGE PRKD1 -IGF1 STATE_CHANGE PTPN11 -IGF1 STATE_CHANGE PXN -IGF1 STATE_CHANGE RPS6KB1 -IGF2 IN_SAME_COMPONENT IGF1R -IGF2 REACTS_WITH CDH1 -IGF2 REACTS_WITH CTNNA1 -IGF2 REACTS_WITH CTNNB1 -IGF2 REACTS_WITH CTNND1 -IGFBP4 IN_SAME_COMPONENT FZD8 -IGFBP4 IN_SAME_COMPONENT LRP6 -IGFBP4 REACTS_WITH FZD8 -IGFBP4 REACTS_WITH IGFBP4 -IGFBP4 REACTS_WITH LRP6 -IGFBP4 REACTS_WITH WNT3A -IGHE IN_SAME_COMPONENT FCER1A -IGHE IN_SAME_COMPONENT FCER1G -IGHE IN_SAME_COMPONENT FYN -IGHE IN_SAME_COMPONENT LYN -IGHE IN_SAME_COMPONENT MS4A2 -IGHE IN_SAME_COMPONENT SYK -IGHE IN_SAME_COMPONENT WIPF1 -IGHE REACTS_WITH FCER1A -IGHE REACTS_WITH FCER1G -IGHE REACTS_WITH FYN -IGHE REACTS_WITH IGHE -IGHE REACTS_WITH LYN -IGHE REACTS_WITH MS4A2 -IGHE REACTS_WITH SYK -IGHE REACTS_WITH WIPF1 -IGHE STATE_CHANGE BTK -IGHE STATE_CHANGE CBL -IGHE STATE_CHANGE CBLB -IGHE STATE_CHANGE FER -IGHE STATE_CHANGE GAB2 -IGHE STATE_CHANGE HCLS1 -IGHE STATE_CHANGE ITK -IGHE STATE_CHANGE KLRG1 -IGHE STATE_CHANGE LAT -IGHE STATE_CHANGE LAT2 -IGHE STATE_CHANGE LCP2 -IGHE STATE_CHANGE NFATC2 -IGHE STATE_CHANGE PIK3CA -IGHE STATE_CHANGE PIK3R1 -IGHE STATE_CHANGE PLA2G4A -IGHE STATE_CHANGE PLCG1 -IGHE STATE_CHANGE PLD2 -IGHE STATE_CHANGE PTPN11 -IGHE STATE_CHANGE SPHK1 -IGHE STATE_CHANGE VAV1 -IGSF8 IN_SAME_COMPONENT ITGA4 -IGSF8 IN_SAME_COMPONENT ITGB1 -IGSF8 REACTS_WITH IGSF8 -IGSF8 REACTS_WITH ITGA4 -IGSF8 REACTS_WITH ITGB1 -IHH IN_SAME_COMPONENT HHIP -IHH IN_SAME_COMPONENT PTCH1 -IHH IN_SAME_COMPONENT PTCH2 -IHH METABOLIC_CATALYSIS PTCH1 -IHH METABOLIC_CATALYSIS PTHLH -IHH METABOLIC_CATALYSIS TGFB2 -IHH REACTS_WITH HHIP -IHH REACTS_WITH IHH -IHH REACTS_WITH PTCH1 -IHH REACTS_WITH PTCH2 -IHH STATE_CHANGE SMO -IKBKB CO_CONTROL CHUK -IKBKB CO_CONTROL ERC1 -IKBKB CO_CONTROL IKBKB -IKBKB CO_CONTROL IKBKG -IKBKB CO_CONTROL NFKB1 -IKBKB CO_CONTROL PRKCA -IKBKB CO_CONTROL RELA -IKBKB IN_SAME_COMPONENT CHUK -IKBKB IN_SAME_COMPONENT CSF2 -IKBKB IN_SAME_COMPONENT CSF2RA -IKBKB IN_SAME_COMPONENT CSF2RB -IKBKB IN_SAME_COMPONENT ERC1 -IKBKB IN_SAME_COMPONENT IKBKG -IKBKB IN_SAME_COMPONENT PRKCA -IKBKB IN_SAME_COMPONENT TSC1 -IKBKB IN_SAME_COMPONENT TSC2 -IKBKB REACTS_WITH CHUK -IKBKB REACTS_WITH CSF2 -IKBKB REACTS_WITH CSF2RA -IKBKB REACTS_WITH CSF2RB -IKBKB REACTS_WITH ERC1 -IKBKB REACTS_WITH IKBKB -IKBKB REACTS_WITH IKBKG -IKBKB REACTS_WITH PRKCA -IKBKB REACTS_WITH TNFAIP3 -IKBKB REACTS_WITH TSC1 -IKBKB REACTS_WITH TSC2 -IKBKB STATE_CHANGE FOXO3 -IKBKB STATE_CHANGE NFKB1 -IKBKB STATE_CHANGE NFKBIA -IKBKB STATE_CHANGE NFKBIB -IKBKB STATE_CHANGE RELA -IKBKG CO_CONTROL CHUK -IKBKG CO_CONTROL ERC1 -IKBKG CO_CONTROL IKBKB -IKBKG CO_CONTROL IKBKG -IKBKG CO_CONTROL PRKCA -IKBKG IN_SAME_COMPONENT ATM -IKBKG IN_SAME_COMPONENT CHUK -IKBKG IN_SAME_COMPONENT ERC1 -IKBKG IN_SAME_COMPONENT IKBKB -IKBKG IN_SAME_COMPONENT PRKCA -IKBKG REACTS_WITH ATM -IKBKG REACTS_WITH CHUK -IKBKG REACTS_WITH ERC1 -IKBKG REACTS_WITH IKBKB -IKBKG REACTS_WITH IKBKG -IKBKG REACTS_WITH PRKCA -IKBKG REACTS_WITH RIPK2 -IKBKG REACTS_WITH TNFAIP3 -IKBKG STATE_CHANGE NFKB1 -IKBKG STATE_CHANGE NFKBIA -IKBKG STATE_CHANGE RELA -IKZF3 METABOLIC_CATALYSIS BCL2 -IKZF3 REACTS_WITH IKZF3 -IL12A CO_CONTROL EBI3 -IL12A CO_CONTROL IL27 -IL12A CO_CONTROL IL27RA -IL12A CO_CONTROL IL6ST -IL12A CO_CONTROL JAK2 -IL12A CO_CONTROL TYK2 -IL12A IN_SAME_COMPONENT IL12B -IL12A IN_SAME_COMPONENT IL12RB1 -IL12A IN_SAME_COMPONENT IL12RB2 -IL12A IN_SAME_COMPONENT JAK2 -IL12A IN_SAME_COMPONENT SOCS1 -IL12A IN_SAME_COMPONENT SPHK2 -IL12A IN_SAME_COMPONENT TYK2 -IL12A METABOLIC_CATALYSIS CCL3 -IL12A METABOLIC_CATALYSIS CCL4 -IL12A METABOLIC_CATALYSIS CCR5 -IL12A METABOLIC_CATALYSIS EOMES -IL12A METABOLIC_CATALYSIS FASLG -IL12A METABOLIC_CATALYSIS FOS -IL12A METABOLIC_CATALYSIS GADD45B -IL12A METABOLIC_CATALYSIS GADD45G -IL12A METABOLIC_CATALYSIS GZMA -IL12A METABOLIC_CATALYSIS GZMB -IL12A METABOLIC_CATALYSIS IFNG -IL12A METABOLIC_CATALYSIS IL1R1 -IL12A METABOLIC_CATALYSIS NOS2 -IL12A METABOLIC_CATALYSIS TBX21 -IL12A REACTS_WITH IL12A -IL12A REACTS_WITH IL12B -IL12A REACTS_WITH IL12RB1 -IL12A REACTS_WITH IL12RB2 -IL12A REACTS_WITH JAK2 -IL12A REACTS_WITH SOCS1 -IL12A REACTS_WITH SPHK2 -IL12A REACTS_WITH TYK2 -IL12A STATE_CHANGE LCK -IL12A STATE_CHANGE NFKB2 -IL12A STATE_CHANGE RELB -IL12A STATE_CHANGE STAT1 -IL12A STATE_CHANGE STAT3 -IL12A STATE_CHANGE STAT4 -IL12A STATE_CHANGE STAT5A -IL12A STATE_CHANGE STAT6 -IL12B CO_CONTROL EBI3 -IL12B CO_CONTROL IL27 -IL12B CO_CONTROL IL27RA -IL12B CO_CONTROL IL6ST -IL12B CO_CONTROL JAK2 -IL12B CO_CONTROL TYK2 -IL12B IN_SAME_COMPONENT IL12A -IL12B IN_SAME_COMPONENT IL12RB1 -IL12B IN_SAME_COMPONENT IL12RB2 -IL12B IN_SAME_COMPONENT IL23A -IL12B IN_SAME_COMPONENT IL23R -IL12B IN_SAME_COMPONENT JAK2 -IL12B IN_SAME_COMPONENT SOCS1 -IL12B IN_SAME_COMPONENT SOCS3 -IL12B IN_SAME_COMPONENT SPHK2 -IL12B IN_SAME_COMPONENT TYK2 -IL12B METABOLIC_CATALYSIS ALOX12B -IL12B METABOLIC_CATALYSIS CCL2 -IL12B METABOLIC_CATALYSIS CCL3 -IL12B METABOLIC_CATALYSIS CCL4 -IL12B METABOLIC_CATALYSIS CCR5 -IL12B METABOLIC_CATALYSIS CD3E -IL12B METABOLIC_CATALYSIS CD4 -IL12B METABOLIC_CATALYSIS CXCL1 -IL12B METABOLIC_CATALYSIS CXCL9 -IL12B METABOLIC_CATALYSIS EOMES -IL12B METABOLIC_CATALYSIS FASLG -IL12B METABOLIC_CATALYSIS FOS -IL12B METABOLIC_CATALYSIS GADD45B -IL12B METABOLIC_CATALYSIS GADD45G -IL12B METABOLIC_CATALYSIS GZMA -IL12B METABOLIC_CATALYSIS GZMB -IL12B METABOLIC_CATALYSIS IFNG -IL12B METABOLIC_CATALYSIS IL19 -IL12B METABOLIC_CATALYSIS IL1B -IL12B METABOLIC_CATALYSIS IL1R1 -IL12B METABOLIC_CATALYSIS IL23R -IL12B METABOLIC_CATALYSIS IL24 -IL12B METABOLIC_CATALYSIS IL6 -IL12B METABOLIC_CATALYSIS ITGA3 -IL12B METABOLIC_CATALYSIS MPO -IL12B METABOLIC_CATALYSIS NOS2 -IL12B METABOLIC_CATALYSIS TBX21 -IL12B METABOLIC_CATALYSIS TNF -IL12B REACTS_WITH IL12A -IL12B REACTS_WITH IL12B -IL12B REACTS_WITH IL12RB1 -IL12B REACTS_WITH IL12RB2 -IL12B REACTS_WITH IL23A -IL12B REACTS_WITH IL23R -IL12B REACTS_WITH JAK2 -IL12B REACTS_WITH SOCS1 -IL12B REACTS_WITH SOCS3 -IL12B REACTS_WITH SPHK2 -IL12B REACTS_WITH TYK2 -IL12B STATE_CHANGE LCK -IL12B STATE_CHANGE NFKB1 -IL12B STATE_CHANGE NFKB2 -IL12B STATE_CHANGE NFKBIA -IL12B STATE_CHANGE PIK3CA -IL12B STATE_CHANGE PIK3R1 -IL12B STATE_CHANGE RELA -IL12B STATE_CHANGE RELB -IL12B STATE_CHANGE STAT1 -IL12B STATE_CHANGE STAT3 -IL12B STATE_CHANGE STAT4 -IL12B STATE_CHANGE STAT5A -IL12B STATE_CHANGE STAT6 -IL12RB1 CO_CONTROL EBI3 -IL12RB1 CO_CONTROL IL27 -IL12RB1 CO_CONTROL IL27RA -IL12RB1 CO_CONTROL IL6ST -IL12RB1 CO_CONTROL JAK2 -IL12RB1 CO_CONTROL TYK2 -IL12RB1 IN_SAME_COMPONENT IL12A -IL12RB1 IN_SAME_COMPONENT IL12B -IL12RB1 IN_SAME_COMPONENT IL12RB2 -IL12RB1 IN_SAME_COMPONENT IL23A -IL12RB1 IN_SAME_COMPONENT IL23R -IL12RB1 IN_SAME_COMPONENT JAK2 -IL12RB1 IN_SAME_COMPONENT SOCS1 -IL12RB1 IN_SAME_COMPONENT SOCS3 -IL12RB1 IN_SAME_COMPONENT SPHK2 -IL12RB1 IN_SAME_COMPONENT TYK2 -IL12RB1 METABOLIC_CATALYSIS ALOX12B -IL12RB1 METABOLIC_CATALYSIS CCL2 -IL12RB1 METABOLIC_CATALYSIS CCL3 -IL12RB1 METABOLIC_CATALYSIS CCL4 -IL12RB1 METABOLIC_CATALYSIS CCR5 -IL12RB1 METABOLIC_CATALYSIS CD3E -IL12RB1 METABOLIC_CATALYSIS CD4 -IL12RB1 METABOLIC_CATALYSIS CXCL1 -IL12RB1 METABOLIC_CATALYSIS CXCL9 -IL12RB1 METABOLIC_CATALYSIS EOMES -IL12RB1 METABOLIC_CATALYSIS FASLG -IL12RB1 METABOLIC_CATALYSIS FOS -IL12RB1 METABOLIC_CATALYSIS GADD45B -IL12RB1 METABOLIC_CATALYSIS GADD45G -IL12RB1 METABOLIC_CATALYSIS GZMA -IL12RB1 METABOLIC_CATALYSIS GZMB -IL12RB1 METABOLIC_CATALYSIS IFNG -IL12RB1 METABOLIC_CATALYSIS IL19 -IL12RB1 METABOLIC_CATALYSIS IL1B -IL12RB1 METABOLIC_CATALYSIS IL1R1 -IL12RB1 METABOLIC_CATALYSIS IL23R -IL12RB1 METABOLIC_CATALYSIS IL24 -IL12RB1 METABOLIC_CATALYSIS IL6 -IL12RB1 METABOLIC_CATALYSIS ITGA3 -IL12RB1 METABOLIC_CATALYSIS MPO -IL12RB1 METABOLIC_CATALYSIS NOS2 -IL12RB1 METABOLIC_CATALYSIS TBX21 -IL12RB1 METABOLIC_CATALYSIS TNF -IL12RB1 REACTS_WITH IL12A -IL12RB1 REACTS_WITH IL12B -IL12RB1 REACTS_WITH IL12RB1 -IL12RB1 REACTS_WITH IL12RB2 -IL12RB1 REACTS_WITH IL23A -IL12RB1 REACTS_WITH IL23R -IL12RB1 REACTS_WITH JAK2 -IL12RB1 REACTS_WITH SOCS1 -IL12RB1 REACTS_WITH SOCS3 -IL12RB1 REACTS_WITH SPHK2 -IL12RB1 REACTS_WITH TYK2 -IL12RB1 STATE_CHANGE LCK -IL12RB1 STATE_CHANGE NFKB1 -IL12RB1 STATE_CHANGE NFKB2 -IL12RB1 STATE_CHANGE NFKBIA -IL12RB1 STATE_CHANGE PIK3CA -IL12RB1 STATE_CHANGE PIK3R1 -IL12RB1 STATE_CHANGE RELA -IL12RB1 STATE_CHANGE RELB -IL12RB1 STATE_CHANGE STAT1 -IL12RB1 STATE_CHANGE STAT3 -IL12RB1 STATE_CHANGE STAT4 -IL12RB1 STATE_CHANGE STAT5A -IL12RB1 STATE_CHANGE STAT6 -IL12RB2 CO_CONTROL EBI3 -IL12RB2 CO_CONTROL IL27 -IL12RB2 CO_CONTROL IL27RA -IL12RB2 CO_CONTROL IL6ST -IL12RB2 CO_CONTROL JAK2 -IL12RB2 CO_CONTROL TYK2 -IL12RB2 IN_SAME_COMPONENT IL12A -IL12RB2 IN_SAME_COMPONENT IL12B -IL12RB2 IN_SAME_COMPONENT IL12RB1 -IL12RB2 IN_SAME_COMPONENT JAK2 -IL12RB2 IN_SAME_COMPONENT SOCS1 -IL12RB2 IN_SAME_COMPONENT SPHK2 -IL12RB2 IN_SAME_COMPONENT TYK2 -IL12RB2 METABOLIC_CATALYSIS CCL3 -IL12RB2 METABOLIC_CATALYSIS CCL4 -IL12RB2 METABOLIC_CATALYSIS CCR5 -IL12RB2 METABOLIC_CATALYSIS EOMES -IL12RB2 METABOLIC_CATALYSIS FASLG -IL12RB2 METABOLIC_CATALYSIS FOS -IL12RB2 METABOLIC_CATALYSIS GADD45B -IL12RB2 METABOLIC_CATALYSIS GADD45G -IL12RB2 METABOLIC_CATALYSIS GZMA -IL12RB2 METABOLIC_CATALYSIS GZMB -IL12RB2 METABOLIC_CATALYSIS IFNG -IL12RB2 METABOLIC_CATALYSIS IL1R1 -IL12RB2 METABOLIC_CATALYSIS NOS2 -IL12RB2 METABOLIC_CATALYSIS TBX21 -IL12RB2 REACTS_WITH IL12A -IL12RB2 REACTS_WITH IL12B -IL12RB2 REACTS_WITH IL12RB1 -IL12RB2 REACTS_WITH IL12RB2 -IL12RB2 REACTS_WITH JAK2 -IL12RB2 REACTS_WITH SOCS1 -IL12RB2 REACTS_WITH SPHK2 -IL12RB2 REACTS_WITH TYK2 -IL12RB2 STATE_CHANGE LCK -IL12RB2 STATE_CHANGE NFKB2 -IL12RB2 STATE_CHANGE RELB -IL12RB2 STATE_CHANGE STAT1 -IL12RB2 STATE_CHANGE STAT3 -IL12RB2 STATE_CHANGE STAT4 -IL12RB2 STATE_CHANGE STAT5A -IL12RB2 STATE_CHANGE STAT6 -IL13RA1 IN_SAME_COMPONENT IL4 -IL13RA1 IN_SAME_COMPONENT IL4R -IL13RA1 IN_SAME_COMPONENT JAK1 -IL13RA1 IN_SAME_COMPONENT JAK2 -IL13RA1 REACTS_WITH IL13RA1 -IL13RA1 REACTS_WITH IL4 -IL13RA1 REACTS_WITH IL4R -IL13RA1 REACTS_WITH JAK1 -IL13RA1 REACTS_WITH JAK2 -IL13RA1 STATE_CHANGE STAT6 -IL17RD CO_CONTROL FRS2 -IL17RD CO_CONTROL SDC2 -IL17RD CO_CONTROL SHC1 -IL17RD CO_CONTROL SOS1 -IL17RD REACTS_WITH IL17RD -IL18 CO_CONTROL STAT4 -IL18 IN_SAME_COMPONENT IL18R1 -IL18 IN_SAME_COMPONENT IL18RAP -IL18 METABOLIC_CATALYSIS CCR5 -IL18 METABOLIC_CATALYSIS GADD45B -IL18 METABOLIC_CATALYSIS GADD45G -IL18 METABOLIC_CATALYSIS IFNG -IL18 METABOLIC_CATALYSIS IL13 -IL18 METABOLIC_CATALYSIS NOS2 -IL18R1 CO_CONTROL STAT4 -IL18R1 IN_SAME_COMPONENT IL18 -IL18R1 IN_SAME_COMPONENT IL18RAP -IL18R1 METABOLIC_CATALYSIS CCR5 -IL18R1 METABOLIC_CATALYSIS GADD45B -IL18R1 METABOLIC_CATALYSIS GADD45G -IL18R1 METABOLIC_CATALYSIS IFNG -IL18R1 METABOLIC_CATALYSIS IL13 -IL18R1 METABOLIC_CATALYSIS NOS2 -IL18R1 REACTS_WITH IL18 -IL18R1 REACTS_WITH IL18R1 -IL18R1 REACTS_WITH IL18RAP -IL18R1 STATE_CHANGE NFKB1 -IL18R1 STATE_CHANGE RELA -IL18R1 STATE_CHANGE STAT4 -IL18RAP CO_CONTROL STAT4 -IL18RAP IN_SAME_COMPONENT IL18 -IL18RAP IN_SAME_COMPONENT IL18R1 -IL18RAP METABOLIC_CATALYSIS CCR5 -IL18RAP METABOLIC_CATALYSIS GADD45B -IL18RAP METABOLIC_CATALYSIS GADD45G -IL18RAP METABOLIC_CATALYSIS IFNG -IL18RAP METABOLIC_CATALYSIS IL13 -IL18RAP METABOLIC_CATALYSIS NOS2 -IL18RAP REACTS_WITH IL18 -IL18RAP REACTS_WITH IL18R1 -IL18RAP REACTS_WITH IL18RAP -IL18RAP STATE_CHANGE NFKB1 -IL18RAP STATE_CHANGE RELA -IL18RAP STATE_CHANGE STAT4 -IL18 REACTS_WITH IL18 -IL18 REACTS_WITH IL18R1 -IL18 REACTS_WITH IL18RAP -IL18 STATE_CHANGE NFKB1 -IL18 STATE_CHANGE RELA -IL18 STATE_CHANGE STAT4 -IL1A IN_SAME_COMPONENT IL1R1 -IL1A IN_SAME_COMPONENT IL1R2 -IL1A IN_SAME_COMPONENT IRAK1 -IL1A IN_SAME_COMPONENT IRAK4 -IL1A IN_SAME_COMPONENT MYD88 -IL1A IN_SAME_COMPONENT TOLLIP -IL1A METABOLIC_CATALYSIS ITGA6 -IL1A REACTS_WITH IL1A -IL1A REACTS_WITH IL1R1 -IL1A REACTS_WITH IL1R2 -IL1A REACTS_WITH IRAK1 -IL1A REACTS_WITH IRAK4 -IL1A REACTS_WITH MYD88 -IL1A REACTS_WITH TOLLIP -IL1A REACTS_WITH TRAF6 -IL1B IN_SAME_COMPONENT IL1R1 -IL1B IN_SAME_COMPONENT IL1R2 -IL1B IN_SAME_COMPONENT IRAK1 -IL1B IN_SAME_COMPONENT IRAK4 -IL1B IN_SAME_COMPONENT MYD88 -IL1B IN_SAME_COMPONENT PIK3CA -IL1B IN_SAME_COMPONENT PIK3R1 -IL1B IN_SAME_COMPONENT TICAM2 -IL1B IN_SAME_COMPONENT TOLLIP -IL1B METABOLIC_CATALYSIS IL23A -IL1B REACTS_WITH IL1B -IL1B REACTS_WITH IL1R1 -IL1B REACTS_WITH IL1R2 -IL1B REACTS_WITH IRAK1 -IL1B REACTS_WITH IRAK4 -IL1B REACTS_WITH MYD88 -IL1B REACTS_WITH PIK3CA -IL1B REACTS_WITH PIK3R1 -IL1B REACTS_WITH TOLLIP -IL1B REACTS_WITH TRAF6 -IL1B STATE_CHANGE IL12A -IL1B STATE_CHANGE IL12B -IL1B STATE_CHANGE IL12RB1 -IL1B STATE_CHANGE IL12RB2 -IL1B STATE_CHANGE IL1B -IL1B STATE_CHANGE IL1R1 -IL1B STATE_CHANGE IRAK1 -IL1B STATE_CHANGE IRAK4 -IL1B STATE_CHANGE JAK2 -IL1B STATE_CHANGE MYD88 -IL1B STATE_CHANGE NFKB1 -IL1B STATE_CHANGE RELA -IL1B STATE_CHANGE TRAF6 -IL1B STATE_CHANGE TYK2 -IL1R1 IN_SAME_COMPONENT IL1A -IL1R1 IN_SAME_COMPONENT IL1B -IL1R1 IN_SAME_COMPONENT IL1RN -IL1R1 IN_SAME_COMPONENT IRAK1 -IL1R1 IN_SAME_COMPONENT IRAK4 -IL1R1 IN_SAME_COMPONENT MYD88 -IL1R1 IN_SAME_COMPONENT PIK3CA -IL1R1 IN_SAME_COMPONENT PIK3R1 -IL1R1 IN_SAME_COMPONENT TICAM2 -IL1R1 IN_SAME_COMPONENT TOLLIP -IL1R1 REACTS_WITH IL1A -IL1R1 REACTS_WITH IL1B -IL1R1 REACTS_WITH IL1R1 -IL1R1 REACTS_WITH IL1RN -IL1R1 REACTS_WITH IRAK1 -IL1R1 REACTS_WITH IRAK4 -IL1R1 REACTS_WITH MYD88 -IL1R1 REACTS_WITH PIK3CA -IL1R1 REACTS_WITH PIK3R1 -IL1R1 REACTS_WITH TOLLIP -IL1R1 REACTS_WITH TRAF6 -IL1R1 STATE_CHANGE IL1B -IL1R1 STATE_CHANGE IL1R1 -IL1R1 STATE_CHANGE IRAK1 -IL1R1 STATE_CHANGE IRAK4 -IL1R1 STATE_CHANGE MYD88 -IL1R1 STATE_CHANGE NFKB1 -IL1R1 STATE_CHANGE RELA -IL1R1 STATE_CHANGE TRAF6 -IL1R2 IN_SAME_COMPONENT IL1A -IL1R2 IN_SAME_COMPONENT IL1B -IL1R2 IN_SAME_COMPONENT IL1RN -IL1R2 REACTS_WITH IL1A -IL1R2 REACTS_WITH IL1B -IL1R2 REACTS_WITH IL1R2 -IL1R2 REACTS_WITH IL1RN -IL1RN IN_SAME_COMPONENT IL1R1 -IL1RN IN_SAME_COMPONENT IL1R2 -IL1RN REACTS_WITH IL1R1 -IL1RN REACTS_WITH IL1R2 -IL1RN REACTS_WITH IL1RN -IL23A IN_SAME_COMPONENT IL12B -IL23A IN_SAME_COMPONENT IL12RB1 -IL23A IN_SAME_COMPONENT IL23R -IL23A IN_SAME_COMPONENT JAK2 -IL23A IN_SAME_COMPONENT SOCS3 -IL23A IN_SAME_COMPONENT TYK2 -IL23A METABOLIC_CATALYSIS ALOX12B -IL23A METABOLIC_CATALYSIS CCL2 -IL23A METABOLIC_CATALYSIS CD3E -IL23A METABOLIC_CATALYSIS CD4 -IL23A METABOLIC_CATALYSIS CXCL1 -IL23A METABOLIC_CATALYSIS CXCL9 -IL23A METABOLIC_CATALYSIS IFNG -IL23A METABOLIC_CATALYSIS IL19 -IL23A METABOLIC_CATALYSIS IL1B -IL23A METABOLIC_CATALYSIS IL23R -IL23A METABOLIC_CATALYSIS IL24 -IL23A METABOLIC_CATALYSIS IL6 -IL23A METABOLIC_CATALYSIS ITGA3 -IL23A METABOLIC_CATALYSIS MPO -IL23A METABOLIC_CATALYSIS NOS2 -IL23A METABOLIC_CATALYSIS TNF -IL23A REACTS_WITH IL12B -IL23A REACTS_WITH IL12RB1 -IL23A REACTS_WITH IL23A -IL23A REACTS_WITH IL23R -IL23A REACTS_WITH JAK2 -IL23A REACTS_WITH SOCS3 -IL23A REACTS_WITH TYK2 -IL23A STATE_CHANGE NFKB1 -IL23A STATE_CHANGE NFKBIA -IL23A STATE_CHANGE PIK3CA -IL23A STATE_CHANGE PIK3R1 -IL23A STATE_CHANGE RELA -IL23A STATE_CHANGE STAT1 -IL23A STATE_CHANGE STAT3 -IL23A STATE_CHANGE STAT4 -IL23A STATE_CHANGE STAT5A -IL23R IN_SAME_COMPONENT IL12B -IL23R IN_SAME_COMPONENT IL12RB1 -IL23R IN_SAME_COMPONENT IL23A -IL23R IN_SAME_COMPONENT JAK2 -IL23R IN_SAME_COMPONENT SOCS3 -IL23R IN_SAME_COMPONENT TYK2 -IL23R METABOLIC_CATALYSIS ALOX12B -IL23R METABOLIC_CATALYSIS CCL2 -IL23R METABOLIC_CATALYSIS CD3E -IL23R METABOLIC_CATALYSIS CD4 -IL23R METABOLIC_CATALYSIS CXCL1 -IL23R METABOLIC_CATALYSIS CXCL9 -IL23R METABOLIC_CATALYSIS IFNG -IL23R METABOLIC_CATALYSIS IL19 -IL23R METABOLIC_CATALYSIS IL1B -IL23R METABOLIC_CATALYSIS IL23R -IL23R METABOLIC_CATALYSIS IL24 -IL23R METABOLIC_CATALYSIS IL6 -IL23R METABOLIC_CATALYSIS ITGA3 -IL23R METABOLIC_CATALYSIS MPO -IL23R METABOLIC_CATALYSIS NOS2 -IL23R METABOLIC_CATALYSIS TNF -IL23R REACTS_WITH IL12B -IL23R REACTS_WITH IL12RB1 -IL23R REACTS_WITH IL23A -IL23R REACTS_WITH IL23R -IL23R REACTS_WITH JAK2 -IL23R REACTS_WITH SOCS3 -IL23R REACTS_WITH TYK2 -IL23R STATE_CHANGE NFKB1 -IL23R STATE_CHANGE NFKBIA -IL23R STATE_CHANGE PIK3CA -IL23R STATE_CHANGE PIK3R1 -IL23R STATE_CHANGE RELA -IL23R STATE_CHANGE STAT1 -IL23R STATE_CHANGE STAT3 -IL23R STATE_CHANGE STAT4 -IL23R STATE_CHANGE STAT5A -IL27 CO_CONTROL IL12A -IL27 CO_CONTROL IL12B -IL27 CO_CONTROL IL12RB1 -IL27 CO_CONTROL IL12RB2 -IL27 CO_CONTROL JAK2 -IL27 CO_CONTROL TYK2 -IL27 IN_SAME_COMPONENT EBI3 -IL27 IN_SAME_COMPONENT IL27RA -IL27 IN_SAME_COMPONENT IL6ST -IL27 IN_SAME_COMPONENT JAK1 -IL27 IN_SAME_COMPONENT JAK2 -IL27 IN_SAME_COMPONENT TYK2 -IL27 METABOLIC_CATALYSIS IFNG -IL27 METABOLIC_CATALYSIS IL2 -IL27RA CO_CONTROL IL12A -IL27RA CO_CONTROL IL12B -IL27RA CO_CONTROL IL12RB1 -IL27RA CO_CONTROL IL12RB2 -IL27RA CO_CONTROL JAK2 -IL27RA CO_CONTROL TYK2 -IL27RA IN_SAME_COMPONENT EBI3 -IL27RA IN_SAME_COMPONENT IL27 -IL27RA IN_SAME_COMPONENT IL6ST -IL27RA IN_SAME_COMPONENT JAK1 -IL27RA IN_SAME_COMPONENT JAK2 -IL27RA IN_SAME_COMPONENT TYK2 -IL27RA METABOLIC_CATALYSIS IFNG -IL27RA METABOLIC_CATALYSIS IL2 -IL27RA REACTS_WITH EBI3 -IL27RA REACTS_WITH IL27 -IL27RA REACTS_WITH IL27RA -IL27RA REACTS_WITH IL6ST -IL27RA REACTS_WITH JAK1 -IL27RA REACTS_WITH JAK2 -IL27RA REACTS_WITH TYK2 -IL27RA STATE_CHANGE STAT1 -IL27RA STATE_CHANGE STAT2 -IL27RA STATE_CHANGE STAT3 -IL27RA STATE_CHANGE STAT4 -IL27RA STATE_CHANGE STAT5A -IL27 REACTS_WITH EBI3 -IL27 REACTS_WITH IL27 -IL27 REACTS_WITH IL27RA -IL27 REACTS_WITH IL6ST -IL27 REACTS_WITH JAK1 -IL27 REACTS_WITH JAK2 -IL27 REACTS_WITH TYK2 -IL27 STATE_CHANGE STAT1 -IL27 STATE_CHANGE STAT2 -IL27 STATE_CHANGE STAT3 -IL27 STATE_CHANGE STAT4 -IL27 STATE_CHANGE STAT5A -IL2 CO_CONTROL STAT4 -IL2 CO_CONTROL TBX21 -IL2 CO_CONTROL TGFB1 -IL2 IN_SAME_COMPONENT FYN -IL2 IN_SAME_COMPONENT GAB2 -IL2 IN_SAME_COMPONENT IL2RA -IL2 IN_SAME_COMPONENT IL2RB -IL2 IN_SAME_COMPONENT IL2RG -IL2 IN_SAME_COMPONENT JAK1 -IL2 IN_SAME_COMPONENT JAK3 -IL2 IN_SAME_COMPONENT LCK -IL2 IN_SAME_COMPONENT PIK3CA -IL2 IN_SAME_COMPONENT PIK3R1 -IL2 IN_SAME_COMPONENT PTK2B -IL2 IN_SAME_COMPONENT PTPN11 -IL2 IN_SAME_COMPONENT SHC1 -IL2 IN_SAME_COMPONENT SOS1 -IL2 IN_SAME_COMPONENT SYK -IL2 METABOLIC_CATALYSIS BCL2L1 -IL2 METABOLIC_CATALYSIS CCND3 -IL2 METABOLIC_CATALYSIS GZMB -IL2 METABOLIC_CATALYSIS IFNG -IL2 METABOLIC_CATALYSIS IL27RA -IL2 METABOLIC_CATALYSIS IL2RA -IL2 METABOLIC_CATALYSIS IL2RG -IL2 METABOLIC_CATALYSIS MYC -IL2 METABOLIC_CATALYSIS PRF1 -IL2 METABOLIC_CATALYSIS SOCS3 -IL2 METABOLIC_CATALYSIS TERT -IL2 METABOLIC_CATALYSIS TNFRSF18 -IL2 METABOLIC_CATALYSIS TNFRSF4 -IL2 METABOLIC_CATALYSIS TNFRSF9 -IL2RA IN_SAME_COMPONENT GAB2 -IL2RA IN_SAME_COMPONENT IL2 -IL2RA IN_SAME_COMPONENT IL2RB -IL2RA IN_SAME_COMPONENT IL2RG -IL2RA IN_SAME_COMPONENT JAK1 -IL2RA IN_SAME_COMPONENT JAK3 -IL2RA IN_SAME_COMPONENT LCK -IL2RA IN_SAME_COMPONENT PIK3CA -IL2RA IN_SAME_COMPONENT PIK3R1 -IL2RA IN_SAME_COMPONENT PTK2B -IL2RA IN_SAME_COMPONENT PTPN11 -IL2RA IN_SAME_COMPONENT SHC1 -IL2RA IN_SAME_COMPONENT SOS1 -IL2RA IN_SAME_COMPONENT SYK -IL2RA METABOLIC_CATALYSIS CCND3 -IL2RA METABOLIC_CATALYSIS GZMB -IL2RA METABOLIC_CATALYSIS IL2RA -IL2RA METABOLIC_CATALYSIS IL2RG -IL2RA METABOLIC_CATALYSIS MYC -IL2RA METABOLIC_CATALYSIS PRF1 -IL2RA METABOLIC_CATALYSIS SOCS3 -IL2RA METABOLIC_CATALYSIS TNFRSF18 -IL2RA METABOLIC_CATALYSIS TNFRSF4 -IL2RA METABOLIC_CATALYSIS TNFRSF9 -IL2RA REACTS_WITH GAB2 -IL2RA REACTS_WITH IL2 -IL2RA REACTS_WITH IL2RA -IL2RA REACTS_WITH IL2RB -IL2RA REACTS_WITH IL2RG -IL2RA REACTS_WITH JAK1 -IL2RA REACTS_WITH JAK3 -IL2RA REACTS_WITH LCK -IL2RA REACTS_WITH PIK3CA -IL2RA REACTS_WITH PIK3R1 -IL2RA REACTS_WITH PTK2B -IL2RA REACTS_WITH PTPN11 -IL2RA REACTS_WITH SHC1 -IL2RA REACTS_WITH SOS1 -IL2RA REACTS_WITH SYK -IL2RA STATE_CHANGE AKT1 -IL2RA STATE_CHANGE DOK2 -IL2RA STATE_CHANGE IKZF3 -IL2RA STATE_CHANGE PRKCE -IL2RA STATE_CHANGE PRKCZ -IL2RA STATE_CHANGE RHOA -IL2RA STATE_CHANGE SGMS1 -IL2RA STATE_CHANGE SMPD1 -IL2RA STATE_CHANGE SOCS3 -IL2RA STATE_CHANGE STAT1 -IL2RA STATE_CHANGE STAT3 -IL2RA STATE_CHANGE UGCG -IL2RB IN_SAME_COMPONENT CISH -IL2RB IN_SAME_COMPONENT FYN -IL2RB IN_SAME_COMPONENT GAB2 -IL2RB IN_SAME_COMPONENT IL2 -IL2RB IN_SAME_COMPONENT IL2RA -IL2RB IN_SAME_COMPONENT IL2RG -IL2RB IN_SAME_COMPONENT JAK1 -IL2RB IN_SAME_COMPONENT JAK3 -IL2RB IN_SAME_COMPONENT LCK -IL2RB IN_SAME_COMPONENT PIK3CA -IL2RB IN_SAME_COMPONENT PIK3R1 -IL2RB IN_SAME_COMPONENT PTK2B -IL2RB IN_SAME_COMPONENT PTPN11 -IL2RB IN_SAME_COMPONENT SHC1 -IL2RB IN_SAME_COMPONENT SOCS1 -IL2RB IN_SAME_COMPONENT SOCS2 -IL2RB IN_SAME_COMPONENT SOCS3 -IL2RB IN_SAME_COMPONENT SOS1 -IL2RB IN_SAME_COMPONENT SYK -IL2RB METABOLIC_CATALYSIS BCL2L1 -IL2RB METABOLIC_CATALYSIS CCND3 -IL2RB METABOLIC_CATALYSIS GZMB -IL2RB METABOLIC_CATALYSIS IL2RA -IL2RB METABOLIC_CATALYSIS IL2RG -IL2RB METABOLIC_CATALYSIS MYC -IL2RB METABOLIC_CATALYSIS PRF1 -IL2RB METABOLIC_CATALYSIS SOCS3 -IL2RB METABOLIC_CATALYSIS TNFRSF18 -IL2RB METABOLIC_CATALYSIS TNFRSF4 -IL2RB METABOLIC_CATALYSIS TNFRSF9 -IL2RB REACTS_WITH FYN -IL2RB REACTS_WITH GAB2 -IL2RB REACTS_WITH IL2 -IL2RB REACTS_WITH IL2RA -IL2RB REACTS_WITH IL2RB -IL2RB REACTS_WITH IL2RG -IL2RB REACTS_WITH JAK1 -IL2RB REACTS_WITH JAK3 -IL2RB REACTS_WITH LCK -IL2RB REACTS_WITH PIK3CA -IL2RB REACTS_WITH PIK3R1 -IL2RB REACTS_WITH PTK2B -IL2RB REACTS_WITH PTPN11 -IL2RB REACTS_WITH SHC1 -IL2RB REACTS_WITH SOCS2 -IL2RB REACTS_WITH SOCS3 -IL2RB REACTS_WITH SOS1 -IL2RB REACTS_WITH SYK -IL2RB STATE_CHANGE AKT1 -IL2RB STATE_CHANGE DOK2 -IL2RB STATE_CHANGE IKZF3 -IL2RB STATE_CHANGE IL2 -IL2RB STATE_CHANGE IL2RA -IL2RB STATE_CHANGE IL2RB -IL2RB STATE_CHANGE IL2RG -IL2RB STATE_CHANGE JAK1 -IL2RB STATE_CHANGE JAK3 -IL2RB STATE_CHANGE LCK -IL2RB STATE_CHANGE PRKCB -IL2RB STATE_CHANGE PRKCE -IL2RB STATE_CHANGE PRKCZ -IL2RB STATE_CHANGE RHOA -IL2RB STATE_CHANGE SGMS1 -IL2RB STATE_CHANGE SMPD1 -IL2RB STATE_CHANGE SOCS3 -IL2RB STATE_CHANGE STAT1 -IL2RB STATE_CHANGE STAT3 -IL2RB STATE_CHANGE UGCG -IL2 REACTS_WITH FYN -IL2 REACTS_WITH GAB2 -IL2 REACTS_WITH IL2 -IL2 REACTS_WITH IL2RA -IL2 REACTS_WITH IL2RB -IL2 REACTS_WITH IL2RG -IL2 REACTS_WITH JAK1 -IL2 REACTS_WITH JAK3 -IL2 REACTS_WITH LCK -IL2 REACTS_WITH PIK3CA -IL2 REACTS_WITH PIK3R1 -IL2 REACTS_WITH PTK2B -IL2 REACTS_WITH PTPN11 -IL2 REACTS_WITH SHC1 -IL2 REACTS_WITH SOS1 -IL2 REACTS_WITH SYK -IL2RG CO_CONTROL BCL6 -IL2RG CO_CONTROL CD40LG -IL2RG CO_CONTROL IL2RG -IL2RG CO_CONTROL IL4 -IL2RG CO_CONTROL IL4R -IL2RG CO_CONTROL JAK1 -IL2RG CO_CONTROL JAK3 -IL2RG CO_CONTROL PTPN6 -IL2RG CO_CONTROL STAT6 -IL2RG IN_SAME_COMPONENT DOK2 -IL2RG IN_SAME_COMPONENT FES -IL2RG IN_SAME_COMPONENT FYN -IL2RG IN_SAME_COMPONENT GAB2 -IL2RG IN_SAME_COMPONENT IL2 -IL2RG IN_SAME_COMPONENT IL2RA -IL2RG IN_SAME_COMPONENT IL2RB -IL2RG IN_SAME_COMPONENT IL4 -IL2RG IN_SAME_COMPONENT IL4R -IL2RG IN_SAME_COMPONENT INPP5D -IL2RG IN_SAME_COMPONENT IRS1 -IL2RG IN_SAME_COMPONENT IRS2 -IL2RG IN_SAME_COMPONENT JAK1 -IL2RG IN_SAME_COMPONENT JAK3 -IL2RG IN_SAME_COMPONENT LCK -IL2RG IN_SAME_COMPONENT PIK3CA -IL2RG IN_SAME_COMPONENT PIK3R1 -IL2RG IN_SAME_COMPONENT PTK2B -IL2RG IN_SAME_COMPONENT PTPN11 -IL2RG IN_SAME_COMPONENT PTPN6 -IL2RG IN_SAME_COMPONENT SHC1 -IL2RG IN_SAME_COMPONENT SOCS1 -IL2RG IN_SAME_COMPONENT SOS1 -IL2RG IN_SAME_COMPONENT SYK -IL2RG METABOLIC_CATALYSIS BCL2L1 -IL2RG METABOLIC_CATALYSIS CCND3 -IL2RG METABOLIC_CATALYSIS GZMB -IL2RG METABOLIC_CATALYSIS IL2RA -IL2RG METABOLIC_CATALYSIS IL2RG -IL2RG METABOLIC_CATALYSIS IRF4 -IL2RG METABOLIC_CATALYSIS MYC -IL2RG METABOLIC_CATALYSIS PRF1 -IL2RG METABOLIC_CATALYSIS SOCS3 -IL2RG METABOLIC_CATALYSIS TNFRSF18 -IL2RG METABOLIC_CATALYSIS TNFRSF4 -IL2RG METABOLIC_CATALYSIS TNFRSF9 -IL2RG REACTS_WITH DOK2 -IL2RG REACTS_WITH FES -IL2RG REACTS_WITH FYN -IL2RG REACTS_WITH GAB2 -IL2RG REACTS_WITH IL2 -IL2RG REACTS_WITH IL2RA -IL2RG REACTS_WITH IL2RB -IL2RG REACTS_WITH IL2RG -IL2RG REACTS_WITH IL4 -IL2RG REACTS_WITH IL4R -IL2RG REACTS_WITH INPP5D -IL2RG REACTS_WITH IRS1 -IL2RG REACTS_WITH IRS2 -IL2RG REACTS_WITH JAK1 -IL2RG REACTS_WITH JAK3 -IL2RG REACTS_WITH LCK -IL2RG REACTS_WITH PIK3CA -IL2RG REACTS_WITH PIK3R1 -IL2RG REACTS_WITH PTK2B -IL2RG REACTS_WITH PTPN11 -IL2RG REACTS_WITH PTPN6 -IL2RG REACTS_WITH SHC1 -IL2RG REACTS_WITH SOS1 -IL2RG REACTS_WITH SYK -IL2RG STATE_CHANGE AKT1 -IL2RG STATE_CHANGE CBL -IL2RG STATE_CHANGE DOK2 -IL2RG STATE_CHANGE ETS1 -IL2RG STATE_CHANGE IKZF3 -IL2RG STATE_CHANGE IL2 -IL2RG STATE_CHANGE IL2RA -IL2RG STATE_CHANGE IL2RB -IL2RG STATE_CHANGE IL2RG -IL2RG STATE_CHANGE JAK1 -IL2RG STATE_CHANGE JAK3 -IL2RG STATE_CHANGE LCK -IL2RG STATE_CHANGE MAPK14 -IL2RG STATE_CHANGE PIK3CA -IL2RG STATE_CHANGE PIK3R1 -IL2RG STATE_CHANGE PRKCB -IL2RG STATE_CHANGE PRKCE -IL2RG STATE_CHANGE PRKCZ -IL2RG STATE_CHANGE RHOA -IL2RG STATE_CHANGE SGMS1 -IL2RG STATE_CHANGE SMPD1 -IL2RG STATE_CHANGE SOCS3 -IL2RG STATE_CHANGE STAT1 -IL2RG STATE_CHANGE STAT3 -IL2RG STATE_CHANGE STAT6 -IL2RG STATE_CHANGE UGCG -IL2 STATE_CHANGE AKT1 -IL2 STATE_CHANGE DKC1 -IL2 STATE_CHANGE DOK2 -IL2 STATE_CHANGE HSP90AA1 -IL2 STATE_CHANGE IKZF3 -IL2 STATE_CHANGE MTOR -IL2 STATE_CHANGE PRKCB -IL2 STATE_CHANGE PRKCE -IL2 STATE_CHANGE PRKCZ -IL2 STATE_CHANGE PTGES3 -IL2 STATE_CHANGE RHOA -IL2 STATE_CHANGE RPS6KB1 -IL2 STATE_CHANGE SGMS1 -IL2 STATE_CHANGE SMPD1 -IL2 STATE_CHANGE SOCS3 -IL2 STATE_CHANGE STAT1 -IL2 STATE_CHANGE STAT3 -IL2 STATE_CHANGE TERT -IL2 STATE_CHANGE UGCG -IL3 IN_SAME_COMPONENT CSF2RB -IL3 IN_SAME_COMPONENT GAB2 -IL3 IN_SAME_COMPONENT IL3RA -IL3 IN_SAME_COMPONENT INPP5D -IL3 IN_SAME_COMPONENT JAK2 -IL3 IN_SAME_COMPONENT PIK3CA -IL3 IN_SAME_COMPONENT PIK3R1 -IL3 IN_SAME_COMPONENT PTPN11 -IL3 IN_SAME_COMPONENT SHC1 -IL3 IN_SAME_COMPONENT YWHAZ -IL3RA IN_SAME_COMPONENT CSF2RB -IL3RA IN_SAME_COMPONENT GAB2 -IL3RA IN_SAME_COMPONENT IL3 -IL3RA IN_SAME_COMPONENT INPP5D -IL3RA IN_SAME_COMPONENT JAK2 -IL3RA IN_SAME_COMPONENT PIK3CA -IL3RA IN_SAME_COMPONENT PIK3R1 -IL3RA IN_SAME_COMPONENT PTPN11 -IL3RA IN_SAME_COMPONENT SHC1 -IL3RA IN_SAME_COMPONENT YWHAZ -IL3RA REACTS_WITH CSF2RB -IL3RA REACTS_WITH GAB2 -IL3RA REACTS_WITH IL3 -IL3RA REACTS_WITH IL3RA -IL3RA REACTS_WITH INPP5D -IL3RA REACTS_WITH JAK2 -IL3RA REACTS_WITH PIK3CA -IL3RA REACTS_WITH PIK3R1 -IL3RA REACTS_WITH PTPN11 -IL3RA REACTS_WITH SHC1 -IL3RA REACTS_WITH YWHAZ -IL3RA STATE_CHANGE PIK3CA -IL3RA STATE_CHANGE PIK3R1 -IL3 REACTS_WITH CSF2RB -IL3 REACTS_WITH GAB2 -IL3 REACTS_WITH IL3 -IL3 REACTS_WITH IL3RA -IL3 REACTS_WITH INPP5D -IL3 REACTS_WITH JAK2 -IL3 REACTS_WITH PIK3CA -IL3 REACTS_WITH PIK3R1 -IL3 REACTS_WITH PTPN11 -IL3 REACTS_WITH SHC1 -IL3 REACTS_WITH YWHAZ -IL3 STATE_CHANGE PIK3CA -IL3 STATE_CHANGE PIK3R1 -IL4 CO_CONTROL BCL6 -IL4 CO_CONTROL CD40LG -IL4 CO_CONTROL IL2RG -IL4 CO_CONTROL IL4 -IL4 CO_CONTROL IL4R -IL4 CO_CONTROL JAK1 -IL4 CO_CONTROL JAK3 -IL4 CO_CONTROL PTPN6 -IL4 CO_CONTROL STAT6 -IL4 IN_SAME_COMPONENT DOK2 -IL4 IN_SAME_COMPONENT FES -IL4 IN_SAME_COMPONENT IL13RA1 -IL4 IN_SAME_COMPONENT IL2RG -IL4 IN_SAME_COMPONENT IL4R -IL4 IN_SAME_COMPONENT INPP5D -IL4 IN_SAME_COMPONENT IRS1 -IL4 IN_SAME_COMPONENT IRS2 -IL4 IN_SAME_COMPONENT JAK1 -IL4 IN_SAME_COMPONENT JAK2 -IL4 IN_SAME_COMPONENT JAK3 -IL4 IN_SAME_COMPONENT PTPN6 -IL4 IN_SAME_COMPONENT SHC1 -IL4 METABOLIC_CATALYSIS IRF4 -IL4R CO_CONTROL BCL6 -IL4R CO_CONTROL CD40LG -IL4R CO_CONTROL IL2RG -IL4R CO_CONTROL IL4 -IL4R CO_CONTROL IL4R -IL4R CO_CONTROL JAK1 -IL4R CO_CONTROL JAK3 -IL4R CO_CONTROL PTPN6 -IL4R CO_CONTROL STAT6 -IL4 REACTS_WITH DOK2 -IL4 REACTS_WITH FES -IL4 REACTS_WITH IL13RA1 -IL4 REACTS_WITH IL2RG -IL4 REACTS_WITH IL4 -IL4 REACTS_WITH IL4R -IL4 REACTS_WITH INPP5D -IL4 REACTS_WITH IRS1 -IL4 REACTS_WITH IRS2 -IL4 REACTS_WITH JAK1 -IL4 REACTS_WITH JAK2 -IL4 REACTS_WITH JAK3 -IL4 REACTS_WITH PTPN6 -IL4 REACTS_WITH SHC1 -IL4R IN_SAME_COMPONENT DOK2 -IL4R IN_SAME_COMPONENT FES -IL4R IN_SAME_COMPONENT IL13RA1 -IL4R IN_SAME_COMPONENT IL2RG -IL4R IN_SAME_COMPONENT IL4 -IL4R IN_SAME_COMPONENT INPP5D -IL4R IN_SAME_COMPONENT IRS1 -IL4R IN_SAME_COMPONENT IRS2 -IL4R IN_SAME_COMPONENT JAK1 -IL4R IN_SAME_COMPONENT JAK2 -IL4R IN_SAME_COMPONENT JAK3 -IL4R IN_SAME_COMPONENT PTPN6 -IL4R IN_SAME_COMPONENT SHC1 -IL4R METABOLIC_CATALYSIS IRF4 -IL4R REACTS_WITH DOK2 -IL4R REACTS_WITH FES -IL4R REACTS_WITH IL13RA1 -IL4R REACTS_WITH IL2RG -IL4R REACTS_WITH IL4 -IL4R REACTS_WITH IL4R -IL4R REACTS_WITH INPP5D -IL4R REACTS_WITH IRS1 -IL4R REACTS_WITH IRS2 -IL4R REACTS_WITH JAK1 -IL4R REACTS_WITH JAK2 -IL4R REACTS_WITH JAK3 -IL4R REACTS_WITH PTPN6 -IL4R REACTS_WITH SHC1 -IL4R STATE_CHANGE CBL -IL4R STATE_CHANGE ETS1 -IL4R STATE_CHANGE MAPK14 -IL4R STATE_CHANGE PIK3CA -IL4R STATE_CHANGE PIK3R1 -IL4R STATE_CHANGE STAT6 -IL4 STATE_CHANGE CBL -IL4 STATE_CHANGE ETS1 -IL4 STATE_CHANGE IL12A -IL4 STATE_CHANGE IL12B -IL4 STATE_CHANGE IL12RB1 -IL4 STATE_CHANGE IL12RB2 -IL4 STATE_CHANGE JAK2 -IL4 STATE_CHANGE MAPK14 -IL4 STATE_CHANGE PIK3CA -IL4 STATE_CHANGE PIK3R1 -IL4 STATE_CHANGE STAT6 -IL4 STATE_CHANGE TYK2 -IL5 IN_SAME_COMPONENT CSF2RB -IL5 IN_SAME_COMPONENT IL5RA -IL5 IN_SAME_COMPONENT JAK2 -IL5 IN_SAME_COMPONENT LYN -IL5 IN_SAME_COMPONENT PTPN11 -IL5 IN_SAME_COMPONENT SDCBP -IL5RA IN_SAME_COMPONENT CSF2RB -IL5RA IN_SAME_COMPONENT IL5 -IL5RA IN_SAME_COMPONENT JAK2 -IL5RA IN_SAME_COMPONENT LYN -IL5RA IN_SAME_COMPONENT PTPN11 -IL5RA IN_SAME_COMPONENT SDCBP -IL5RA REACTS_WITH CSF2RB -IL5RA REACTS_WITH IL5 -IL5RA REACTS_WITH IL5RA -IL5RA REACTS_WITH JAK2 -IL5RA REACTS_WITH LYN -IL5RA REACTS_WITH PTPN11 -IL5RA REACTS_WITH SDCBP -IL5RA STATE_CHANGE PIK3CA -IL5RA STATE_CHANGE PIK3R1 -IL5 REACTS_WITH CSF2RB -IL5 REACTS_WITH IL5 -IL5 REACTS_WITH IL5RA -IL5 REACTS_WITH JAK2 -IL5 REACTS_WITH LYN -IL5 REACTS_WITH PTPN11 -IL5 REACTS_WITH SDCBP -IL5 STATE_CHANGE PIK3CA -IL5 STATE_CHANGE PIK3R1 -IL6 CO_CONTROL IL6 -IL6 CO_CONTROL IL6R -IL6 CO_CONTROL IL6ST -IL6 CO_CONTROL JAK1 -IL6 CO_CONTROL PRKCD -IL6 CO_CONTROL SOCS3 -IL6 CO_CONTROL STAT1 -IL6 CO_CONTROL TGFB1 -IL6 IN_SAME_COMPONENT HCK -IL6 IN_SAME_COMPONENT IL6R -IL6 IN_SAME_COMPONENT IL6ST -IL6 IN_SAME_COMPONENT JAK1 -IL6 IN_SAME_COMPONENT JAK2 -IL6 IN_SAME_COMPONENT SOCS3 -IL6 IN_SAME_COMPONENT TYK2 -IL6 METABOLIC_CATALYSIS IL17A -IL6R CO_CONTROL IL6 -IL6R CO_CONTROL IL6R -IL6R CO_CONTROL IL6ST -IL6R CO_CONTROL JAK1 -IL6R CO_CONTROL PRKCD -IL6R CO_CONTROL SOCS3 -IL6 REACTS_WITH HCK -IL6 REACTS_WITH IL6 -IL6 REACTS_WITH IL6R -IL6 REACTS_WITH IL6ST -IL6 REACTS_WITH JAK1 -IL6 REACTS_WITH JAK2 -IL6 REACTS_WITH SOCS3 -IL6 REACTS_WITH TYK2 -IL6R IN_SAME_COMPONENT HCK -IL6R IN_SAME_COMPONENT IL6 -IL6R IN_SAME_COMPONENT IL6ST -IL6R IN_SAME_COMPONENT JAK1 -IL6R IN_SAME_COMPONENT JAK2 -IL6R IN_SAME_COMPONENT SOCS3 -IL6R IN_SAME_COMPONENT TYK2 -IL6R REACTS_WITH HCK -IL6R REACTS_WITH IL6 -IL6R REACTS_WITH IL6R -IL6R REACTS_WITH IL6ST -IL6R REACTS_WITH JAK1 -IL6R REACTS_WITH JAK2 -IL6R REACTS_WITH SOCS3 -IL6R REACTS_WITH TYK2 -IL6R STATE_CHANGE FOXO1 -IL6R STATE_CHANGE MAP2K6 -IL6R STATE_CHANGE MITF -IL6R STATE_CHANGE PIAS1 -IL6R STATE_CHANGE PIAS3 -IL6R STATE_CHANGE PTPN11 -IL6R STATE_CHANGE SOS1 -IL6R STATE_CHANGE STAT1 -IL6R STATE_CHANGE STAT3 -IL6R STATE_CHANGE VAV1 -IL6 STATE_CHANGE FOXO1 -IL6 STATE_CHANGE MAP2K6 -IL6 STATE_CHANGE MITF -IL6 STATE_CHANGE PIAS1 -IL6 STATE_CHANGE PIAS3 -IL6 STATE_CHANGE PTPN11 -IL6 STATE_CHANGE SOS1 -IL6 STATE_CHANGE STAT1 -IL6 STATE_CHANGE STAT3 -IL6 STATE_CHANGE VAV1 -IL6ST CO_CONTROL IL12A -IL6ST CO_CONTROL IL12B -IL6ST CO_CONTROL IL12RB1 -IL6ST CO_CONTROL IL12RB2 -IL6ST CO_CONTROL IL6 -IL6ST CO_CONTROL IL6R -IL6ST CO_CONTROL IL6ST -IL6ST CO_CONTROL JAK1 -IL6ST CO_CONTROL JAK2 -IL6ST CO_CONTROL PRKCD -IL6ST CO_CONTROL SOCS3 -IL6ST CO_CONTROL TYK2 -IL6ST IN_SAME_COMPONENT EBI3 -IL6ST IN_SAME_COMPONENT HCK -IL6ST IN_SAME_COMPONENT IL27 -IL6ST IN_SAME_COMPONENT IL27RA -IL6ST IN_SAME_COMPONENT IL6 -IL6ST IN_SAME_COMPONENT IL6R -IL6ST IN_SAME_COMPONENT JAK1 -IL6ST IN_SAME_COMPONENT JAK2 -IL6ST IN_SAME_COMPONENT SOCS3 -IL6ST IN_SAME_COMPONENT TYK2 -IL6ST METABOLIC_CATALYSIS IFNG -IL6ST METABOLIC_CATALYSIS IL2 -IL6ST REACTS_WITH EBI3 -IL6ST REACTS_WITH HCK -IL6ST REACTS_WITH IL27 -IL6ST REACTS_WITH IL27RA -IL6ST REACTS_WITH IL6 -IL6ST REACTS_WITH IL6R -IL6ST REACTS_WITH IL6ST -IL6ST REACTS_WITH JAK1 -IL6ST REACTS_WITH JAK2 -IL6ST REACTS_WITH SOCS3 -IL6ST REACTS_WITH TYK2 -IL6ST STATE_CHANGE FOXO1 -IL6ST STATE_CHANGE MAP2K6 -IL6ST STATE_CHANGE MITF -IL6ST STATE_CHANGE PIAS1 -IL6ST STATE_CHANGE PIAS3 -IL6ST STATE_CHANGE PTPN11 -IL6ST STATE_CHANGE SOS1 -IL6ST STATE_CHANGE STAT1 -IL6ST STATE_CHANGE STAT2 -IL6ST STATE_CHANGE STAT3 -IL6ST STATE_CHANGE STAT4 -IL6ST STATE_CHANGE STAT5A -IL6ST STATE_CHANGE VAV1 -IL8 IN_SAME_COMPONENT CXCR1 -IL8 IN_SAME_COMPONENT CXCR2 -IL8 IN_SAME_COMPONENT SDC2 -IL8 IN_SAME_COMPONENT SDC3 -IL8 IN_SAME_COMPONENT VASP -IL8 REACTS_WITH CXCR1 -IL8 REACTS_WITH CXCR2 -IL8 REACTS_WITH GNA14 -IL8 REACTS_WITH GNA15 -IL8 REACTS_WITH GNAI2 -IL8 REACTS_WITH GNG2 -IL8 REACTS_WITH IL8 -IL8 REACTS_WITH SDC2 -IL8 REACTS_WITH SDC3 -IL8 REACTS_WITH VASP -ILK STATE_CHANGE AKT1 -INCENP CO_CONTROL CCNB1 -INCENP CO_CONTROL CDK1 -INCENP IN_SAME_COMPONENT AURKB -INCENP IN_SAME_COMPONENT AURKC -INCENP IN_SAME_COMPONENT BIRC5 -INCENP IN_SAME_COMPONENT CDCA8 -INCENP IN_SAME_COMPONENT CUL3 -INCENP IN_SAME_COMPONENT EVI5 -INCENP IN_SAME_COMPONENT KLHL13 -INCENP IN_SAME_COMPONENT KLHL9 -INCENP REACTS_WITH AURKB -INCENP REACTS_WITH AURKC -INCENP REACTS_WITH BIRC5 -INCENP REACTS_WITH CDCA8 -INCENP REACTS_WITH CUL3 -INCENP REACTS_WITH EVI5 -INCENP REACTS_WITH INCENP -INCENP REACTS_WITH KLHL13 -INCENP REACTS_WITH KLHL9 -INCENP REACTS_WITH PSMA3 -INCENP STATE_CHANGE BUB1 -INCENP STATE_CHANGE CENPA -INCENP STATE_CHANGE KIF23 -INCENP STATE_CHANGE KIF2C -INCENP STATE_CHANGE RACGAP1 -INHBA IN_SAME_COMPONENT ACVR2A -INHBA IN_SAME_COMPONENT ACVRL1 -INHBA REACTS_WITH ACVR1 -INHBA REACTS_WITH ACVR2A -INHBA REACTS_WITH ACVRL1 -INHBA REACTS_WITH FKBP1A -INHBA REACTS_WITH INHBA -INPP5D CO_CONTROL BLNK -INPP5D CO_CONTROL BTK -INPP5D CO_CONTROL CD79A -INPP5D CO_CONTROL CD79B -INPP5D CO_CONTROL INS -INPP5D CO_CONTROL INSR -INPP5D CO_CONTROL IRS1 -INPP5D CO_CONTROL LYN -INPP5D CO_CONTROL PLCG2 -INPP5D CO_CONTROL SHC1 -INPP5D CO_CONTROL SOS1 -INPP5D CO_CONTROL SYK -INPP5D IN_SAME_COMPONENT CSF2 -INPP5D IN_SAME_COMPONENT CSF2RA -INPP5D IN_SAME_COMPONENT CSF2RB -INPP5D IN_SAME_COMPONENT DOK1 -INPP5D IN_SAME_COMPONENT FCER1A -INPP5D IN_SAME_COMPONENT FCER1G -INPP5D IN_SAME_COMPONENT FCGR2B -INPP5D IN_SAME_COMPONENT GAB1 -INPP5D IN_SAME_COMPONENT HGF -INPP5D IN_SAME_COMPONENT IL2RG -INPP5D IN_SAME_COMPONENT IL3 -INPP5D IN_SAME_COMPONENT IL3RA -INPP5D IN_SAME_COMPONENT IL4 -INPP5D IN_SAME_COMPONENT IL4R -INPP5D IN_SAME_COMPONENT IRS2 -INPP5D IN_SAME_COMPONENT JAK1 -INPP5D IN_SAME_COMPONENT JAK2 -INPP5D IN_SAME_COMPONENT JAK3 -INPP5D IN_SAME_COMPONENT KLRG1 -INPP5D IN_SAME_COMPONENT MET -INPP5D IN_SAME_COMPONENT MS4A2 -INPP5D IN_SAME_COMPONENT PIK3R1 -INPP5D IN_SAME_COMPONENT PTPN11 -INPP5D IN_SAME_COMPONENT RASA1 -INPP5D IN_SAME_COMPONENT SHC1 -INPP5D REACTS_WITH CSF2 -INPP5D REACTS_WITH CSF2RA -INPP5D REACTS_WITH CSF2RB -INPP5D REACTS_WITH DOK1 -INPP5D REACTS_WITH FCER1A -INPP5D REACTS_WITH FCER1G -INPP5D REACTS_WITH FCGR2B -INPP5D REACTS_WITH GAB1 -INPP5D REACTS_WITH HGF -INPP5D REACTS_WITH IL2RG -INPP5D REACTS_WITH IL3 -INPP5D REACTS_WITH IL3RA -INPP5D REACTS_WITH IL4 -INPP5D REACTS_WITH IL4R -INPP5D REACTS_WITH INPP5D -INPP5D REACTS_WITH INS -INPP5D REACTS_WITH INSR -INPP5D REACTS_WITH IRS1 -INPP5D REACTS_WITH IRS2 -INPP5D REACTS_WITH JAK1 -INPP5D REACTS_WITH JAK2 -INPP5D REACTS_WITH JAK3 -INPP5D REACTS_WITH KLRG1 -INPP5D REACTS_WITH MET -INPP5D REACTS_WITH MS4A2 -INPP5D REACTS_WITH PIK3R1 -INPP5D REACTS_WITH PTPN11 -INPP5D REACTS_WITH RASA1 -INPP5D REACTS_WITH SHC1 -INPP5D STATE_CHANGE BTK -INPP5D STATE_CHANGE HRAS -INPP5D STATE_CHANGE PRKCB -INPP5D STATE_CHANGE RAF1 -INPPL1 IN_SAME_COMPONENT HGF -INPPL1 IN_SAME_COMPONENT MET -INPPL1 REACTS_WITH HGF -INPPL1 REACTS_WITH INPPL1 -INPPL1 REACTS_WITH MET -INS CO_CONTROL FOXA2 -INS CO_CONTROL GRB10 -INS CO_CONTROL INPP5D -INS CO_CONTROL INS -INS CO_CONTROL INSR -INS CO_CONTROL NF1 -INS CO_CONTROL NR3C1 -INS CO_CONTROL SHC1 -INS CO_CONTROL SOS1 -INS IN_SAME_COMPONENT GRB10 -INS IN_SAME_COMPONENT GRB14 -INS IN_SAME_COMPONENT INSR -INS IN_SAME_COMPONENT IRS1 -INS IN_SAME_COMPONENT NCK2 -INS IN_SAME_COMPONENT PDPK1 -INS IN_SAME_COMPONENT PTPN1 -INS IN_SAME_COMPONENT PTPN11 -INS IN_SAME_COMPONENT SHC1 -INS IN_SAME_COMPONENT SOS1 -INS METABOLIC_CATALYSIS ALAS1 -INS METABOLIC_CATALYSIS FOXA1 -INS METABOLIC_CATALYSIS IGFBP1 -INS METABOLIC_CATALYSIS PTPN1 -INSR CO_CONTROL GRB10 -INSR CO_CONTROL INPP5D -INSR CO_CONTROL INS -INSR CO_CONTROL INSR -INSR CO_CONTROL SHC1 -INSR CO_CONTROL SOS1 -INS REACTS_WITH GRB10 -INS REACTS_WITH GRB14 -INS REACTS_WITH INPP5D -INS REACTS_WITH INS -INS REACTS_WITH INSR -INS REACTS_WITH IRS1 -INS REACTS_WITH NCK2 -INS REACTS_WITH PDPK1 -INS REACTS_WITH PTPN1 -INS REACTS_WITH PTPN11 -INS REACTS_WITH SHC1 -INS REACTS_WITH SOS1 -INSR IN_SAME_COMPONENT GRB10 -INSR IN_SAME_COMPONENT GRB14 -INSR IN_SAME_COMPONENT INS -INSR IN_SAME_COMPONENT IRS1 -INSR IN_SAME_COMPONENT NCK2 -INSR IN_SAME_COMPONENT PDPK1 -INSR IN_SAME_COMPONENT PTPN1 -INSR IN_SAME_COMPONENT PTPN11 -INSR IN_SAME_COMPONENT SHC1 -INSR IN_SAME_COMPONENT SOS1 -INSR METABOLIC_CATALYSIS PTPN1 -INSR REACTS_WITH GRB10 -INSR REACTS_WITH GRB14 -INSR REACTS_WITH INPP5D -INSR REACTS_WITH INS -INSR REACTS_WITH INSR -INSR REACTS_WITH IRS1 -INSR REACTS_WITH NCK2 -INSR REACTS_WITH PDPK1 -INSR REACTS_WITH PTPN1 -INSR REACTS_WITH PTPN11 -INSR REACTS_WITH SHC1 -INSR REACTS_WITH SOS1 -INSR STATE_CHANGE AKT1 -INSR STATE_CHANGE AKT2 -INSR STATE_CHANGE CAV1 -INSR STATE_CHANGE CBL -INSR STATE_CHANGE DOK1 -INSR STATE_CHANGE HRAS -INSR STATE_CHANGE INPP5D -INSR STATE_CHANGE PPP1CC -INSR STATE_CHANGE PPP1R3A -INSR STATE_CHANGE PTPN1 -INSR STATE_CHANGE SGK1 -INSR STATE_CHANGE SH2B2 -INSR STATE_CHANGE SORBS1 -INS STATE_CHANGE AKT1 -INS STATE_CHANGE AKT2 -INS STATE_CHANGE CAV1 -INS STATE_CHANGE CBL -INS STATE_CHANGE DOK1 -INS STATE_CHANGE HRAS -INS STATE_CHANGE INPP5D -INS STATE_CHANGE PPP1CC -INS STATE_CHANGE PPP1R3A -INS STATE_CHANGE PTPN1 -INS STATE_CHANGE SGK1 -INS STATE_CHANGE SH2B2 -INS STATE_CHANGE SORBS1 -IPCEF1 IN_SAME_COMPONENT CYTH2 -IPCEF1 REACTS_WITH CYTH2 -IPCEF1 REACTS_WITH IPCEF1 -IQGAP1 CO_CONTROL CDC42 -IQGAP1 CO_CONTROL IQGAP1 -IQGAP1 CO_CONTROL MAP2K1 -IQGAP1 CO_CONTROL RAC1 -IQGAP1 IN_SAME_COMPONENT CALM1 -IQGAP1 IN_SAME_COMPONENT CDC42 -IQGAP1 IN_SAME_COMPONENT CDH1 -IQGAP1 IN_SAME_COMPONENT CDH5 -IQGAP1 IN_SAME_COMPONENT CTNNA1 -IQGAP1 IN_SAME_COMPONENT CTNNB1 -IQGAP1 IN_SAME_COMPONENT EXOC7 -IQGAP1 IN_SAME_COMPONENT KDR -IQGAP1 IN_SAME_COMPONENT PAFAH1B1 -IQGAP1 IN_SAME_COMPONENT RAC1 -IQGAP1 IN_SAME_COMPONENT SEPT2 -IQGAP1 IN_SAME_COMPONENT VEGFA -IQGAP1 METABOLIC_CATALYSIS IQGAP1 -IQGAP1 REACTS_WITH CALM1 -IQGAP1 REACTS_WITH CDC42 -IQGAP1 REACTS_WITH CDH1 -IQGAP1 REACTS_WITH CDH5 -IQGAP1 REACTS_WITH CTNNA1 -IQGAP1 REACTS_WITH CTNNB1 -IQGAP1 REACTS_WITH CTNND1 -IQGAP1 REACTS_WITH EXOC7 -IQGAP1 REACTS_WITH IQGAP1 -IQGAP1 REACTS_WITH KDR -IQGAP1 REACTS_WITH PAFAH1B1 -IQGAP1 REACTS_WITH RAC1 -IQGAP1 REACTS_WITH SEPT2 -IQGAP1 REACTS_WITH VEGFA -IQGAP1 STATE_CHANGE CDC42 -IQGAP1 STATE_CHANGE CDH1 -IQGAP1 STATE_CHANGE CTNNA1 -IQGAP1 STATE_CHANGE CTNNB1 -IQGAP1 STATE_CHANGE CTNND1 -IQGAP1 STATE_CHANGE EXOC7 -IQGAP1 STATE_CHANGE IQGAP1 -IQGAP1 STATE_CHANGE MAP2K1 -IQGAP1 STATE_CHANGE RAC1 -IQGAP1 STATE_CHANGE RHOA -IQGAP1 STATE_CHANGE SEPT2 -IQSEC1 IN_SAME_COMPONENT EGF -IQSEC1 IN_SAME_COMPONENT EGFR -IQSEC1 REACTS_WITH EGF -IQSEC1 REACTS_WITH EGFR -IQSEC1 REACTS_WITH IQSEC1 -IRAK1 IN_SAME_COMPONENT HMGB1 -IRAK1 IN_SAME_COMPONENT IL1A -IRAK1 IN_SAME_COMPONENT IL1B -IRAK1 IN_SAME_COMPONENT IL1R1 -IRAK1 IN_SAME_COMPONENT IRAK2 -IRAK1 IN_SAME_COMPONENT IRAK4 -IRAK1 IN_SAME_COMPONENT LY96 -IRAK1 IN_SAME_COMPONENT MAP3K3 -IRAK1 IN_SAME_COMPONENT MAP3K7 -IRAK1 IN_SAME_COMPONENT MYD88 -IRAK1 IN_SAME_COMPONENT NGF -IRAK1 IN_SAME_COMPONENT NGFR -IRAK1 IN_SAME_COMPONENT RIPK2 -IRAK1 IN_SAME_COMPONENT SQSTM1 -IRAK1 IN_SAME_COMPONENT TAB1 -IRAK1 IN_SAME_COMPONENT TAB2 -IRAK1 IN_SAME_COMPONENT TIRAP -IRAK1 IN_SAME_COMPONENT TLR1 -IRAK1 IN_SAME_COMPONENT TLR2 -IRAK1 IN_SAME_COMPONENT TLR4 -IRAK1 IN_SAME_COMPONENT TOLLIP -IRAK1 IN_SAME_COMPONENT TRAF6 -IRAK1 REACTS_WITH HMGB1 -IRAK1 REACTS_WITH IL1A -IRAK1 REACTS_WITH IL1B -IRAK1 REACTS_WITH IL1R1 -IRAK1 REACTS_WITH IRAK1 -IRAK1 REACTS_WITH IRAK2 -IRAK1 REACTS_WITH IRAK4 -IRAK1 REACTS_WITH LY96 -IRAK1 REACTS_WITH MAP3K3 -IRAK1 REACTS_WITH MAP3K7 -IRAK1 REACTS_WITH MYD88 -IRAK1 REACTS_WITH NGF -IRAK1 REACTS_WITH NGFR -IRAK1 REACTS_WITH RIPK2 -IRAK1 REACTS_WITH SQSTM1 -IRAK1 REACTS_WITH TAB1 -IRAK1 REACTS_WITH TAB2 -IRAK1 REACTS_WITH TIRAP -IRAK1 REACTS_WITH TLR1 -IRAK1 REACTS_WITH TLR2 -IRAK1 REACTS_WITH TLR4 -IRAK1 REACTS_WITH TOLLIP -IRAK1 REACTS_WITH TRAF6 -IRAK1 STATE_CHANGE CHUK -IRAK1 STATE_CHANGE ERC1 -IRAK1 STATE_CHANGE IKBKB -IRAK1 STATE_CHANGE IKBKG -IRAK2 IN_SAME_COMPONENT HMGB1 -IRAK2 IN_SAME_COMPONENT IRAK1 -IRAK2 IN_SAME_COMPONENT IRAK4 -IRAK2 IN_SAME_COMPONENT LY96 -IRAK2 IN_SAME_COMPONENT MYD88 -IRAK2 IN_SAME_COMPONENT TIRAP -IRAK2 IN_SAME_COMPONENT TLR1 -IRAK2 IN_SAME_COMPONENT TLR2 -IRAK2 IN_SAME_COMPONENT TLR4 -IRAK2 REACTS_WITH HMGB1 -IRAK2 REACTS_WITH IRAK1 -IRAK2 REACTS_WITH IRAK2 -IRAK2 REACTS_WITH IRAK4 -IRAK2 REACTS_WITH LY96 -IRAK2 REACTS_WITH MYD88 -IRAK2 REACTS_WITH TIRAP -IRAK2 REACTS_WITH TLR1 -IRAK2 REACTS_WITH TLR2 -IRAK2 REACTS_WITH TLR4 -IRAK3 STATE_CHANGE IL1B -IRAK3 STATE_CHANGE IL1R1 -IRAK3 STATE_CHANGE IRAK1 -IRAK3 STATE_CHANGE IRAK4 -IRAK3 STATE_CHANGE MYD88 -IRAK3 STATE_CHANGE TOLLIP -IRAK4 IN_SAME_COMPONENT HMGB1 -IRAK4 IN_SAME_COMPONENT IL1A -IRAK4 IN_SAME_COMPONENT IL1B -IRAK4 IN_SAME_COMPONENT IL1R1 -IRAK4 IN_SAME_COMPONENT IRAK1 -IRAK4 IN_SAME_COMPONENT IRAK2 -IRAK4 IN_SAME_COMPONENT LY96 -IRAK4 IN_SAME_COMPONENT MYD88 -IRAK4 IN_SAME_COMPONENT TICAM2 -IRAK4 IN_SAME_COMPONENT TIRAP -IRAK4 IN_SAME_COMPONENT TLR1 -IRAK4 IN_SAME_COMPONENT TLR2 -IRAK4 IN_SAME_COMPONENT TLR4 -IRAK4 IN_SAME_COMPONENT TOLLIP -IRAK4 REACTS_WITH HMGB1 -IRAK4 REACTS_WITH IL1A -IRAK4 REACTS_WITH IL1B -IRAK4 REACTS_WITH IL1R1 -IRAK4 REACTS_WITH IRAK1 -IRAK4 REACTS_WITH IRAK2 -IRAK4 REACTS_WITH IRAK4 -IRAK4 REACTS_WITH LY96 -IRAK4 REACTS_WITH MYD88 -IRAK4 REACTS_WITH TIRAP -IRAK4 REACTS_WITH TLR1 -IRAK4 REACTS_WITH TLR2 -IRAK4 REACTS_WITH TLR4 -IRAK4 REACTS_WITH TOLLIP -IRAK4 REACTS_WITH TRAF6 -IRAK4 STATE_CHANGE IRAK1 -IRAK4 STATE_CHANGE TRAF6 -IRF1 IN_SAME_COMPONENT IFNG -IRF1 METABOLIC_CATALYSIS CDKN1B -IRF1 METABOLIC_CATALYSIS SOCS1 -IRF1 METABOLIC_CATALYSIS TERT -IRF4 CO_CONTROL BCL6 -IRF4 CO_CONTROL EGR2 -IRF4 CO_CONTROL IRF4 -IRF4 CO_CONTROL PARP14 -IRF4 CO_CONTROL STAT6 -IRF4 IN_SAME_COMPONENT BCL6 -IRF4 IN_SAME_COMPONENT MAF -IRF4 METABOLIC_CATALYSIS FCER2 -IRF4 METABOLIC_CATALYSIS IL4 -IRF4 REACTS_WITH IRF4 -IRF4 REACTS_WITH MAF -IRF7 IN_SAME_COMPONENT SMAD4 -IRF7 METABOLIC_CATALYSIS IFNB1 -IRF7 REACTS_WITH IRF7 -IRF7 REACTS_WITH SMAD4 -IRF8 CO_CONTROL SPI1 -IRF8 IN_SAME_COMPONENT ZBTB17 -IRF8 METABOLIC_CATALYSIS SLC11A1 -IRF8 REACTS_WITH IRF8 -IRF8 REACTS_WITH MAX -IRF8 REACTS_WITH MYC -IRF8 REACTS_WITH ZBTB17 -IRS1 CO_CONTROL INPP5D -IRS1 CO_CONTROL SHC1 -IRS1 IN_SAME_COMPONENT CRK -IRS1 IN_SAME_COMPONENT GDNF -IRS1 IN_SAME_COMPONENT GFRA1 -IRS1 IN_SAME_COMPONENT IGF1 -IRS1 IN_SAME_COMPONENT IGF1R -IRS1 IN_SAME_COMPONENT IL2RG -IRS1 IN_SAME_COMPONENT IL4 -IRS1 IN_SAME_COMPONENT IL4R -IRS1 IN_SAME_COMPONENT INS -IRS1 IN_SAME_COMPONENT INSR -IRS1 IN_SAME_COMPONENT JAK1 -IRS1 IN_SAME_COMPONENT JAK3 -IRS1 IN_SAME_COMPONENT NCK2 -IRS1 IN_SAME_COMPONENT PTPN1 -IRS1 IN_SAME_COMPONENT PTPN11 -IRS1 IN_SAME_COMPONENT SHC1 -IRS1 IN_SAME_COMPONENT SOS1 -IRS1 REACTS_WITH CRK -IRS1 REACTS_WITH GDNF -IRS1 REACTS_WITH GFRA1 -IRS1 REACTS_WITH IGF1 -IRS1 REACTS_WITH IGF1R -IRS1 REACTS_WITH IL2RG -IRS1 REACTS_WITH IL4 -IRS1 REACTS_WITH IL4R -IRS1 REACTS_WITH INPP5D -IRS1 REACTS_WITH INS -IRS1 REACTS_WITH INSR -IRS1 REACTS_WITH IRS1 -IRS1 REACTS_WITH JAK1 -IRS1 REACTS_WITH JAK3 -IRS1 REACTS_WITH NCK2 -IRS1 REACTS_WITH PTPN1 -IRS1 REACTS_WITH PTPN11 -IRS1 REACTS_WITH SHC1 -IRS1 REACTS_WITH SOS1 -IRS1 STATE_CHANGE BCAR1 -IRS1 STATE_CHANGE CAV1 -IRS1 STATE_CHANGE CBL -IRS1 STATE_CHANGE CRK -IRS1 STATE_CHANGE CRKL -IRS1 STATE_CHANGE HRAS -IRS1 STATE_CHANGE INPP5D -IRS1 STATE_CHANGE IRS1 -IRS1 STATE_CHANGE IRS2 -IRS1 STATE_CHANGE PIK3CA -IRS1 STATE_CHANGE PIK3R1 -IRS1 STATE_CHANGE PRKCD -IRS1 STATE_CHANGE PRKD1 -IRS1 STATE_CHANGE PTPN11 -IRS1 STATE_CHANGE PXN -IRS1 STATE_CHANGE RPS6KB1 -IRS1 STATE_CHANGE SH2B2 -IRS1 STATE_CHANGE SORBS1 -IRS2 CO_CONTROL BCL6 -IRS2 CO_CONTROL STAT6 -IRS2 IN_SAME_COMPONENT CRK -IRS2 IN_SAME_COMPONENT FES -IRS2 IN_SAME_COMPONENT IL2RG -IRS2 IN_SAME_COMPONENT IL4 -IRS2 IN_SAME_COMPONENT IL4R -IRS2 IN_SAME_COMPONENT INPP5D -IRS2 IN_SAME_COMPONENT JAK1 -IRS2 IN_SAME_COMPONENT JAK3 -IRS2 IN_SAME_COMPONENT PIK3R1 -IRS2 REACTS_WITH CRK -IRS2 REACTS_WITH FES -IRS2 REACTS_WITH IL2RG -IRS2 REACTS_WITH IL4 -IRS2 REACTS_WITH IL4R -IRS2 REACTS_WITH INPP5D -IRS2 REACTS_WITH IRS2 -IRS2 REACTS_WITH JAK1 -IRS2 REACTS_WITH JAK3 -IRS2 REACTS_WITH PIK3R1 -IRS2 STATE_CHANGE PIK3CA -IRS2 STATE_CHANGE PIK3R1 -ITCH IN_SAME_COMPONENT NUMB -ITCH REACTS_WITH ITCH -ITCH REACTS_WITH NUMB -ITCH STATE_CHANGE CXCL12 -ITCH STATE_CHANGE CXCR4 -ITCH STATE_CHANGE HGS -ITCH STATE_CHANGE NOTCH1 -ITGA10 IN_SAME_COMPONENT COL2A1 -ITGA10 IN_SAME_COMPONENT ITGB1 -ITGA10 REACTS_WITH COL2A1 -ITGA10 REACTS_WITH ITGA10 -ITGA10 REACTS_WITH ITGB1 -ITGA11 IN_SAME_COMPONENT COL1A1 -ITGA11 IN_SAME_COMPONENT COL1A2 -ITGA11 IN_SAME_COMPONENT ITGB1 -ITGA11 REACTS_WITH COL1A1 -ITGA11 REACTS_WITH COL1A2 -ITGA11 REACTS_WITH ITGA11 -ITGA11 REACTS_WITH ITGB1 -ITGA1 IN_SAME_COMPONENT COL1A1 -ITGA1 IN_SAME_COMPONENT COL1A2 -ITGA1 IN_SAME_COMPONENT COL2A1 -ITGA1 IN_SAME_COMPONENT COL5A1 -ITGA1 IN_SAME_COMPONENT COL5A2 -ITGA1 IN_SAME_COMPONENT COL6A1 -ITGA1 IN_SAME_COMPONENT COL6A2 -ITGA1 IN_SAME_COMPONENT FIGF -ITGA1 IN_SAME_COMPONENT FLT4 -ITGA1 IN_SAME_COMPONENT ITGB1 -ITGA1 IN_SAME_COMPONENT LAMA1 -ITGA1 IN_SAME_COMPONENT LAMA2 -ITGA1 IN_SAME_COMPONENT LAMB1 -ITGA1 IN_SAME_COMPONENT LAMC1 -ITGA1 IN_SAME_COMPONENT PTP4A3 -ITGA1 REACTS_WITH COL1A1 -ITGA1 REACTS_WITH COL1A2 -ITGA1 REACTS_WITH COL2A1 -ITGA1 REACTS_WITH COL5A1 -ITGA1 REACTS_WITH COL5A2 -ITGA1 REACTS_WITH COL6A1 -ITGA1 REACTS_WITH COL6A2 -ITGA1 REACTS_WITH FIGF -ITGA1 REACTS_WITH FLT4 -ITGA1 REACTS_WITH ITGA1 -ITGA1 REACTS_WITH ITGB1 -ITGA1 REACTS_WITH LAMA1 -ITGA1 REACTS_WITH LAMA2 -ITGA1 REACTS_WITH LAMB1 -ITGA1 REACTS_WITH LAMC1 -ITGA1 REACTS_WITH PTP4A3 -ITGA1 STATE_CHANGE EGF -ITGA1 STATE_CHANGE EGFR -ITGA1 STATE_CHANGE KDR -ITGA1 STATE_CHANGE VEGFA -ITGA2B CO_CONTROL GIT1 -ITGA2B CO_CONTROL ITGA2B -ITGA2B CO_CONTROL ITGB3 -ITGA2B CO_CONTROL PIK3CA -ITGA2B CO_CONTROL PIK3R1 -ITGA2B CO_CONTROL PXN -ITGA2B IN_SAME_COMPONENT CD47 -ITGA2B IN_SAME_COMPONENT FGA -ITGA2B IN_SAME_COMPONENT FGB -ITGA2B IN_SAME_COMPONENT FGG -ITGA2B IN_SAME_COMPONENT FN1 -ITGA2B IN_SAME_COMPONENT GIT1 -ITGA2B IN_SAME_COMPONENT ITGB3 -ITGA2B IN_SAME_COMPONENT PXN -ITGA2B IN_SAME_COMPONENT THBS1 -ITGA2B IN_SAME_COMPONENT VTN -ITGA2B REACTS_WITH CD47 -ITGA2B REACTS_WITH FGA -ITGA2B REACTS_WITH FGB -ITGA2B REACTS_WITH FGG -ITGA2B REACTS_WITH FN1 -ITGA2B REACTS_WITH ITGA2B -ITGA2B REACTS_WITH ITGB3 -ITGA2B REACTS_WITH THBS1 -ITGA2B REACTS_WITH VTN -ITGA2 IN_SAME_COMPONENT COL11A1 -ITGA2 IN_SAME_COMPONENT COL11A2 -ITGA2 IN_SAME_COMPONENT COL1A1 -ITGA2 IN_SAME_COMPONENT COL1A2 -ITGA2 IN_SAME_COMPONENT COL2A1 -ITGA2 IN_SAME_COMPONENT COL3A1 -ITGA2 IN_SAME_COMPONENT COL6A1 -ITGA2 IN_SAME_COMPONENT COL6A2 -ITGA2 IN_SAME_COMPONENT COL7A1 -ITGA2 IN_SAME_COMPONENT FIGF -ITGA2 IN_SAME_COMPONENT FLT4 -ITGA2 IN_SAME_COMPONENT FN1 -ITGA2 IN_SAME_COMPONENT ITGB1 -ITGA2 IN_SAME_COMPONENT LAMA1 -ITGA2 IN_SAME_COMPONENT LAMA2 -ITGA2 IN_SAME_COMPONENT LAMA3 -ITGA2 IN_SAME_COMPONENT LAMB1 -ITGA2 IN_SAME_COMPONENT LAMB3 -ITGA2 IN_SAME_COMPONENT LAMC1 -ITGA2 IN_SAME_COMPONENT LAMC2 -ITGA2 IN_SAME_COMPONENT SDC2 -ITGA2 IN_SAME_COMPONENT TNC -ITGA2 REACTS_WITH COL11A1 -ITGA2 REACTS_WITH COL11A2 -ITGA2 REACTS_WITH COL1A1 -ITGA2 REACTS_WITH COL1A2 -ITGA2 REACTS_WITH COL2A1 -ITGA2 REACTS_WITH COL3A1 -ITGA2 REACTS_WITH COL6A1 -ITGA2 REACTS_WITH COL6A2 -ITGA2 REACTS_WITH COL7A1 -ITGA2 REACTS_WITH FIGF -ITGA2 REACTS_WITH FLT4 -ITGA2 REACTS_WITH FN1 -ITGA2 REACTS_WITH ITGA2 -ITGA2 REACTS_WITH ITGB1 -ITGA2 REACTS_WITH LAMA1 -ITGA2 REACTS_WITH LAMA2 -ITGA2 REACTS_WITH LAMA3 -ITGA2 REACTS_WITH LAMB1 -ITGA2 REACTS_WITH LAMB3 -ITGA2 REACTS_WITH LAMC1 -ITGA2 REACTS_WITH LAMC2 -ITGA2 REACTS_WITH SDC2 -ITGA2 REACTS_WITH TNC -ITGA3 CO_CONTROL PLAU -ITGA3 CO_CONTROL PLAUR -ITGA3 IN_SAME_COMPONENT CSPG4 -ITGA3 IN_SAME_COMPONENT DAB1 -ITGA3 IN_SAME_COMPONENT ITGB1 -ITGA3 IN_SAME_COMPONENT LAMA1 -ITGA3 IN_SAME_COMPONENT LAMA2 -ITGA3 IN_SAME_COMPONENT LAMA3 -ITGA3 IN_SAME_COMPONENT LAMA4 -ITGA3 IN_SAME_COMPONENT LAMA5 -ITGA3 IN_SAME_COMPONENT LAMB1 -ITGA3 IN_SAME_COMPONENT LAMB2 -ITGA3 IN_SAME_COMPONENT LAMB3 -ITGA3 IN_SAME_COMPONENT LAMC1 -ITGA3 IN_SAME_COMPONENT LAMC2 -ITGA3 IN_SAME_COMPONENT NID1 -ITGA3 IN_SAME_COMPONENT PLAU -ITGA3 IN_SAME_COMPONENT PLAUR -ITGA3 IN_SAME_COMPONENT TGFBI -ITGA3 IN_SAME_COMPONENT THBS1 -ITGA3 IN_SAME_COMPONENT VTN -ITGA3 REACTS_WITH CSPG4 -ITGA3 REACTS_WITH DAB1 -ITGA3 REACTS_WITH ITGA3 -ITGA3 REACTS_WITH ITGB1 -ITGA3 REACTS_WITH LAMA1 -ITGA3 REACTS_WITH LAMA2 -ITGA3 REACTS_WITH LAMA3 -ITGA3 REACTS_WITH LAMA4 -ITGA3 REACTS_WITH LAMA5 -ITGA3 REACTS_WITH LAMB1 -ITGA3 REACTS_WITH LAMB2 -ITGA3 REACTS_WITH LAMB3 -ITGA3 REACTS_WITH LAMC1 -ITGA3 REACTS_WITH LAMC2 -ITGA3 REACTS_WITH NID1 -ITGA3 REACTS_WITH PLAU -ITGA3 REACTS_WITH PLAUR -ITGA3 REACTS_WITH TGFBI -ITGA3 REACTS_WITH THBS1 -ITGA3 REACTS_WITH VTN -ITGA4 CO_CONTROL PTPRA -ITGA4 IN_SAME_COMPONENT ABI1 -ITGA4 IN_SAME_COMPONENT ADAM28 -ITGA4 IN_SAME_COMPONENT CD14 -ITGA4 IN_SAME_COMPONENT CD81 -ITGA4 IN_SAME_COMPONENT CSPG4 -ITGA4 IN_SAME_COMPONENT F13A1 -ITGA4 IN_SAME_COMPONENT FIGF -ITGA4 IN_SAME_COMPONENT FLT4 -ITGA4 IN_SAME_COMPONENT FN1 -ITGA4 IN_SAME_COMPONENT IGSF8 -ITGA4 IN_SAME_COMPONENT ITGB1 -ITGA4 IN_SAME_COMPONENT ITGB7 -ITGA4 IN_SAME_COMPONENT JAM2 -ITGA4 IN_SAME_COMPONENT MADCAM1 -ITGA4 IN_SAME_COMPONENT MDK -ITGA4 IN_SAME_COMPONENT MYH2 -ITGA4 IN_SAME_COMPONENT PXN -ITGA4 IN_SAME_COMPONENT SPP1 -ITGA4 IN_SAME_COMPONENT TGM2 -ITGA4 IN_SAME_COMPONENT THBS1 -ITGA4 IN_SAME_COMPONENT THBS2 -ITGA4 IN_SAME_COMPONENT TLN1 -ITGA4 IN_SAME_COMPONENT VCAM1 -ITGA4 IN_SAME_COMPONENT YWHAZ -ITGA4 INTERACTS_WITH CD44 -ITGA4 INTERACTS_WITH ITGA4 -ITGA4 INTERACTS_WITH ITGB1 -ITGA4 INTERACTS_WITH ITGB7 -ITGA4 REACTS_WITH ABI1 -ITGA4 REACTS_WITH ADAM28 -ITGA4 REACTS_WITH CD14 -ITGA4 REACTS_WITH CD81 -ITGA4 REACTS_WITH CSPG4 -ITGA4 REACTS_WITH F13A1 -ITGA4 REACTS_WITH FIGF -ITGA4 REACTS_WITH FLT4 -ITGA4 REACTS_WITH FN1 -ITGA4 REACTS_WITH IGSF8 -ITGA4 REACTS_WITH ITGA4 -ITGA4 REACTS_WITH ITGB1 -ITGA4 REACTS_WITH ITGB7 -ITGA4 REACTS_WITH JAM2 -ITGA4 REACTS_WITH MADCAM1 -ITGA4 REACTS_WITH MDK -ITGA4 REACTS_WITH MYH2 -ITGA4 REACTS_WITH PXN -ITGA4 REACTS_WITH SPP1 -ITGA4 REACTS_WITH TGM2 -ITGA4 REACTS_WITH THBS1 -ITGA4 REACTS_WITH THBS2 -ITGA4 REACTS_WITH TLN1 -ITGA4 REACTS_WITH VCAM1 -ITGA4 REACTS_WITH YWHAZ -ITGA4 STATE_CHANGE AMICA1 -ITGA4 STATE_CHANGE PRKACA -ITGA4 STATE_CHANGE PRKACB -ITGA4 STATE_CHANGE PRKAR1A -ITGA4 STATE_CHANGE PRKAR1B -ITGA4 STATE_CHANGE PTK2B -ITGA4 STATE_CHANGE SRC -ITGA5 CO_CONTROL FN1 -ITGA5 CO_CONTROL PRKCA -ITGA5 CO_CONTROL SDC4 -ITGA5 IN_SAME_COMPONENT ANGPT1 -ITGA5 IN_SAME_COMPONENT COL18A1 -ITGA5 IN_SAME_COMPONENT FBN1 -ITGA5 IN_SAME_COMPONENT FGA -ITGA5 IN_SAME_COMPONENT FGB -ITGA5 IN_SAME_COMPONENT FGG -ITGA5 IN_SAME_COMPONENT FIGF -ITGA5 IN_SAME_COMPONENT FLT4 -ITGA5 IN_SAME_COMPONENT FN1 -ITGA5 IN_SAME_COMPONENT ITGB1 -ITGA5 IN_SAME_COMPONENT PLAU -ITGA5 IN_SAME_COMPONENT PLAUR -ITGA5 IN_SAME_COMPONENT TEK -ITGA5 INTERACTS_WITH SDC2 -ITGA5 REACTS_WITH ANGPT1 -ITGA5 REACTS_WITH COL18A1 -ITGA5 REACTS_WITH FBN1 -ITGA5 REACTS_WITH FGA -ITGA5 REACTS_WITH FGB -ITGA5 REACTS_WITH FGG -ITGA5 REACTS_WITH FIGF -ITGA5 REACTS_WITH FLT4 -ITGA5 REACTS_WITH FN1 -ITGA5 REACTS_WITH ITGA5 -ITGA5 REACTS_WITH ITGB1 -ITGA5 REACTS_WITH PLAU -ITGA5 REACTS_WITH PLAUR -ITGA5 REACTS_WITH TEK -ITGA5 STATE_CHANGE RAC1 -ITGA6 IN_SAME_COMPONENT CD9 -ITGA6 IN_SAME_COMPONENT ITGB1 -ITGA6 IN_SAME_COMPONENT ITGB4 -ITGA6 IN_SAME_COMPONENT LAMA1 -ITGA6 IN_SAME_COMPONENT LAMA2 -ITGA6 IN_SAME_COMPONENT LAMA3 -ITGA6 IN_SAME_COMPONENT LAMA4 -ITGA6 IN_SAME_COMPONENT LAMA5 -ITGA6 IN_SAME_COMPONENT LAMB1 -ITGA6 IN_SAME_COMPONENT LAMB2 -ITGA6 IN_SAME_COMPONENT LAMB3 -ITGA6 IN_SAME_COMPONENT LAMC1 -ITGA6 IN_SAME_COMPONENT LAMC2 -ITGA6 IN_SAME_COMPONENT MDK -ITGA6 IN_SAME_COMPONENT PIK3CA -ITGA6 IN_SAME_COMPONENT PIK3R1 -ITGA6 IN_SAME_COMPONENT PMP22 -ITGA6 IN_SAME_COMPONENT SHC1 -ITGA6 IN_SAME_COMPONENT THBS1 -ITGA6 IN_SAME_COMPONENT THBS2 -ITGA6 INTERACTS_WITH MST1 -ITGA6 INTERACTS_WITH MST1R -ITGA6 REACTS_WITH CD9 -ITGA6 REACTS_WITH CDH1 -ITGA6 REACTS_WITH COL17A1 -ITGA6 REACTS_WITH ERBB3 -ITGA6 REACTS_WITH ITGA6 -ITGA6 REACTS_WITH ITGB1 -ITGA6 REACTS_WITH ITGB4 -ITGA6 REACTS_WITH LAMA1 -ITGA6 REACTS_WITH LAMA2 -ITGA6 REACTS_WITH LAMA3 -ITGA6 REACTS_WITH LAMA4 -ITGA6 REACTS_WITH LAMA5 -ITGA6 REACTS_WITH LAMB1 -ITGA6 REACTS_WITH LAMB2 -ITGA6 REACTS_WITH LAMB3 -ITGA6 REACTS_WITH LAMC1 -ITGA6 REACTS_WITH LAMC2 -ITGA6 REACTS_WITH MDK -ITGA6 REACTS_WITH MET -ITGA6 REACTS_WITH PIK3CA -ITGA6 REACTS_WITH PIK3R1 -ITGA6 REACTS_WITH PMP22 -ITGA6 REACTS_WITH SHC1 -ITGA6 REACTS_WITH THBS1 -ITGA6 REACTS_WITH THBS2 -ITGA6 STATE_CHANGE AKT1 -ITGA6 STATE_CHANGE HRAS -ITGA6 STATE_CHANGE RPS6KB1 -ITGA7 IN_SAME_COMPONENT ITGB1 -ITGA7 IN_SAME_COMPONENT TNC -ITGA7 REACTS_WITH ITGA7 -ITGA7 REACTS_WITH ITGB1 -ITGA7 REACTS_WITH TNC -ITGA8 IN_SAME_COMPONENT FN1 -ITGA8 IN_SAME_COMPONENT ITGB1 -ITGA8 IN_SAME_COMPONENT NPNT -ITGA8 IN_SAME_COMPONENT SPP1 -ITGA8 IN_SAME_COMPONENT TNC -ITGA8 IN_SAME_COMPONENT VTN -ITGA8 REACTS_WITH FN1 -ITGA8 REACTS_WITH ITGA8 -ITGA8 REACTS_WITH ITGB1 -ITGA8 REACTS_WITH NPNT -ITGA8 REACTS_WITH SPP1 -ITGA8 REACTS_WITH TNC -ITGA8 REACTS_WITH VTN -ITGA9 IN_SAME_COMPONENT ADAM12 -ITGA9 IN_SAME_COMPONENT ADAM15 -ITGA9 IN_SAME_COMPONENT ADAM2 -ITGA9 IN_SAME_COMPONENT ADAM8 -ITGA9 IN_SAME_COMPONENT CSF2 -ITGA9 IN_SAME_COMPONENT CSF2RA -ITGA9 IN_SAME_COMPONENT F13A1 -ITGA9 IN_SAME_COMPONENT FIGF -ITGA9 IN_SAME_COMPONENT FN1 -ITGA9 IN_SAME_COMPONENT ITGB1 -ITGA9 IN_SAME_COMPONENT PXN -ITGA9 IN_SAME_COMPONENT SAT1 -ITGA9 IN_SAME_COMPONENT SPP1 -ITGA9 IN_SAME_COMPONENT TGM2 -ITGA9 IN_SAME_COMPONENT TNC -ITGA9 IN_SAME_COMPONENT VCAM1 -ITGA9 IN_SAME_COMPONENT VEGFA -ITGA9 IN_SAME_COMPONENT VEGFC -ITGA9 REACTS_WITH ADAM12 -ITGA9 REACTS_WITH ADAM15 -ITGA9 REACTS_WITH ADAM2 -ITGA9 REACTS_WITH ADAM8 -ITGA9 REACTS_WITH CSF2 -ITGA9 REACTS_WITH CSF2RA -ITGA9 REACTS_WITH F13A1 -ITGA9 REACTS_WITH FIGF -ITGA9 REACTS_WITH FN1 -ITGA9 REACTS_WITH ITGA9 -ITGA9 REACTS_WITH ITGB1 -ITGA9 REACTS_WITH PXN -ITGA9 REACTS_WITH SAT1 -ITGA9 REACTS_WITH SPP1 -ITGA9 REACTS_WITH TGM2 -ITGA9 REACTS_WITH TNC -ITGA9 REACTS_WITH VCAM1 -ITGA9 REACTS_WITH VEGFA -ITGA9 REACTS_WITH VEGFC -ITGA9 STATE_CHANGE SRC -ITGAD IN_SAME_COMPONENT ITGB2 -ITGAD IN_SAME_COMPONENT VCAM1 -ITGAD REACTS_WITH ICAM3 -ITGAD REACTS_WITH ITGAD -ITGAD REACTS_WITH ITGB2 -ITGAD REACTS_WITH VCAM1 -ITGAE IN_SAME_COMPONENT CDH1 -ITGAE IN_SAME_COMPONENT CTNNA1 -ITGAE IN_SAME_COMPONENT CTNNB1 -ITGAE IN_SAME_COMPONENT ITGB7 -ITGAE IN_SAME_COMPONENT JUP -ITGAE REACTS_WITH CDH1 -ITGAE REACTS_WITH CTNNA1 -ITGAE REACTS_WITH CTNNB1 -ITGAE REACTS_WITH ITGAE -ITGAE REACTS_WITH ITGB7 -ITGAE REACTS_WITH JUP -ITGAL IN_SAME_COMPONENT F11R -ITGAL IN_SAME_COMPONENT ICAM1 -ITGAL IN_SAME_COMPONENT ICAM2 -ITGAL IN_SAME_COMPONENT ICAM3 -ITGAL IN_SAME_COMPONENT ICAM4 -ITGAL IN_SAME_COMPONENT ITGB2 -ITGAL REACTS_WITH F11R -ITGAL REACTS_WITH ICAM1 -ITGAL REACTS_WITH ICAM2 -ITGAL REACTS_WITH ICAM3 -ITGAL REACTS_WITH ICAM4 -ITGAL REACTS_WITH ITGAL -ITGAL REACTS_WITH ITGB2 -ITGAM IN_SAME_COMPONENT AGER -ITGAM IN_SAME_COMPONENT APOB -ITGAM IN_SAME_COMPONENT C3 -ITGAM IN_SAME_COMPONENT CD40LG -ITGAM IN_SAME_COMPONENT CTGF -ITGAM IN_SAME_COMPONENT CYR61 -ITGAM IN_SAME_COMPONENT F10 -ITGAM IN_SAME_COMPONENT FCGR2A -ITGAM IN_SAME_COMPONENT FGA -ITGAM IN_SAME_COMPONENT FGB -ITGAM IN_SAME_COMPONENT FGG -ITGAM IN_SAME_COMPONENT GP1BA -ITGAM IN_SAME_COMPONENT HCK -ITGAM IN_SAME_COMPONENT HMGB1 -ITGAM IN_SAME_COMPONENT ICAM1 -ITGAM IN_SAME_COMPONENT ICAM2 -ITGAM IN_SAME_COMPONENT ICAM4 -ITGAM IN_SAME_COMPONENT ITGB2 -ITGAM IN_SAME_COMPONENT JAM3 -ITGAM IN_SAME_COMPONENT KNG1 -ITGAM IN_SAME_COMPONENT LPA -ITGAM IN_SAME_COMPONENT LRP1 -ITGAM IN_SAME_COMPONENT MMP2 -ITGAM IN_SAME_COMPONENT MMP9 -ITGAM IN_SAME_COMPONENT PLAT -ITGAM IN_SAME_COMPONENT PLAU -ITGAM IN_SAME_COMPONENT PLAUR -ITGAM IN_SAME_COMPONENT PLG -ITGAM IN_SAME_COMPONENT PROC -ITGAM IN_SAME_COMPONENT SELP -ITGAM IN_SAME_COMPONENT SELPLG -ITGAM IN_SAME_COMPONENT SPON2 -ITGAM IN_SAME_COMPONENT TGFBI -ITGAM IN_SAME_COMPONENT THY1 -ITGAM IN_SAME_COMPONENT TLN1 -ITGAM INTERACTS_WITH AKT1 -ITGAM INTERACTS_WITH PRKCZ -ITGAM REACTS_WITH AGER -ITGAM REACTS_WITH APOB -ITGAM REACTS_WITH C3 -ITGAM REACTS_WITH CD40LG -ITGAM REACTS_WITH CTGF -ITGAM REACTS_WITH CYR61 -ITGAM REACTS_WITH F10 -ITGAM REACTS_WITH FCGR2A -ITGAM REACTS_WITH FGA -ITGAM REACTS_WITH FGB -ITGAM REACTS_WITH FGG -ITGAM REACTS_WITH GP1BA -ITGAM REACTS_WITH HCK -ITGAM REACTS_WITH HMGB1 -ITGAM REACTS_WITH ICAM1 -ITGAM REACTS_WITH ICAM2 -ITGAM REACTS_WITH ICAM4 -ITGAM REACTS_WITH ITGAM -ITGAM REACTS_WITH ITGB2 -ITGAM REACTS_WITH JAM2 -ITGAM REACTS_WITH JAM3 -ITGAM REACTS_WITH KNG1 -ITGAM REACTS_WITH LPA -ITGAM REACTS_WITH LRP1 -ITGAM REACTS_WITH MMP2 -ITGAM REACTS_WITH MMP9 -ITGAM REACTS_WITH PLAT -ITGAM REACTS_WITH PLAU -ITGAM REACTS_WITH PLAUR -ITGAM REACTS_WITH PLG -ITGAM REACTS_WITH PROC -ITGAM REACTS_WITH SELP -ITGAM REACTS_WITH SELPLG -ITGAM REACTS_WITH SPON2 -ITGAM REACTS_WITH TGFBI -ITGAM REACTS_WITH THY1 -ITGAM REACTS_WITH TLN1 -ITGAM STATE_CHANGE NFKB1 -ITGAM STATE_CHANGE PLG -ITGAM STATE_CHANGE RHOA -ITGAV CO_CONTROL SYK -ITGAV IN_SAME_COMPONENT ANGPTL3 -ITGAV IN_SAME_COMPONENT BCAR1 -ITGAV IN_SAME_COMPONENT CBL -ITGAV IN_SAME_COMPONENT CD47 -ITGAV IN_SAME_COMPONENT COL1A1 -ITGAV IN_SAME_COMPONENT COL1A2 -ITGAV IN_SAME_COMPONENT COL4A3 -ITGAV IN_SAME_COMPONENT CSF1R -ITGAV IN_SAME_COMPONENT CYR61 -ITGAV IN_SAME_COMPONENT EDIL3 -ITGAV IN_SAME_COMPONENT F11R -ITGAV IN_SAME_COMPONENT FBN1 -ITGAV IN_SAME_COMPONENT FGA -ITGAV IN_SAME_COMPONENT FGB -ITGAV IN_SAME_COMPONENT FGG -ITGAV IN_SAME_COMPONENT FN1 -ITGAV IN_SAME_COMPONENT GPR124 -ITGAV IN_SAME_COMPONENT HMGB1 -ITGAV IN_SAME_COMPONENT HSP90AA1 -ITGAV IN_SAME_COMPONENT IBSP -ITGAV IN_SAME_COMPONENT ITGB1 -ITGAV IN_SAME_COMPONENT ITGB3 -ITGAV IN_SAME_COMPONENT ITGB5 -ITGAV IN_SAME_COMPONENT ITGB6 -ITGAV IN_SAME_COMPONENT ITGB8 -ITGAV IN_SAME_COMPONENT KDR -ITGAV IN_SAME_COMPONENT L1CAM -ITGAV IN_SAME_COMPONENT LAMA4 -ITGAV IN_SAME_COMPONENT LAMB1 -ITGAV IN_SAME_COMPONENT LAMC1 -ITGAV IN_SAME_COMPONENT MFGE8 -ITGAV IN_SAME_COMPONENT NCL -ITGAV IN_SAME_COMPONENT PDGFB -ITGAV IN_SAME_COMPONENT PDGFRA -ITGAV IN_SAME_COMPONENT PDGFRB -ITGAV IN_SAME_COMPONENT PECAM1 -ITGAV IN_SAME_COMPONENT PLAU -ITGAV IN_SAME_COMPONENT PLAUR -ITGAV IN_SAME_COMPONENT PTK2B -ITGAV IN_SAME_COMPONENT PVR -ITGAV IN_SAME_COMPONENT RHOA -ITGAV IN_SAME_COMPONENT ROCK1 -ITGAV IN_SAME_COMPONENT SDC1 -ITGAV IN_SAME_COMPONENT SDC4 -ITGAV IN_SAME_COMPONENT SERPINE1 -ITGAV IN_SAME_COMPONENT SPHK1 -ITGAV IN_SAME_COMPONENT SPP1 -ITGAV IN_SAME_COMPONENT TGFBI -ITGAV IN_SAME_COMPONENT TGFBR1 -ITGAV IN_SAME_COMPONENT TGFBR2 -ITGAV IN_SAME_COMPONENT THY1 -ITGAV IN_SAME_COMPONENT TLN1 -ITGAV IN_SAME_COMPONENT VEGFA -ITGAV IN_SAME_COMPONENT VTN -ITGAV INTERACTS_WITH RAC1 -ITGAV INTERACTS_WITH RHOA -ITGAV INTERACTS_WITH VCL -ITGAV METABOLIC_CATALYSIS ILK -ITGAV REACTS_WITH ANGPTL3 -ITGAV REACTS_WITH BCAR1 -ITGAV REACTS_WITH CASP8 -ITGAV REACTS_WITH CBL -ITGAV REACTS_WITH CD47 -ITGAV REACTS_WITH COL1A1 -ITGAV REACTS_WITH COL1A2 -ITGAV REACTS_WITH COL4A3 -ITGAV REACTS_WITH CSF1R -ITGAV REACTS_WITH CYR61 -ITGAV REACTS_WITH EDIL3 -ITGAV REACTS_WITH F11R -ITGAV REACTS_WITH FBN1 -ITGAV REACTS_WITH FGA -ITGAV REACTS_WITH FGB -ITGAV REACTS_WITH FGG -ITGAV REACTS_WITH FN1 -ITGAV REACTS_WITH GPR124 -ITGAV REACTS_WITH HMGB1 -ITGAV REACTS_WITH HSP90AA1 -ITGAV REACTS_WITH IBSP -ITGAV REACTS_WITH ITGAV -ITGAV REACTS_WITH ITGB1 -ITGAV REACTS_WITH ITGB3 -ITGAV REACTS_WITH ITGB5 -ITGAV REACTS_WITH ITGB6 -ITGAV REACTS_WITH ITGB8 -ITGAV REACTS_WITH KDR -ITGAV REACTS_WITH L1CAM -ITGAV REACTS_WITH LAMA4 -ITGAV REACTS_WITH LAMB1 -ITGAV REACTS_WITH LAMC1 -ITGAV REACTS_WITH MFGE8 -ITGAV REACTS_WITH NCL -ITGAV REACTS_WITH PDGFB -ITGAV REACTS_WITH PDGFRA -ITGAV REACTS_WITH PDGFRB -ITGAV REACTS_WITH PECAM1 -ITGAV REACTS_WITH PLAU -ITGAV REACTS_WITH PLAUR -ITGAV REACTS_WITH PTK2B -ITGAV REACTS_WITH PVR -ITGAV REACTS_WITH RHOA -ITGAV REACTS_WITH ROCK1 -ITGAV REACTS_WITH SDC1 -ITGAV REACTS_WITH SDC4 -ITGAV REACTS_WITH SERPINE1 -ITGAV REACTS_WITH SPHK1 -ITGAV REACTS_WITH SPP1 -ITGAV REACTS_WITH TGFBI -ITGAV REACTS_WITH TGFBR1 -ITGAV REACTS_WITH TGFBR2 -ITGAV REACTS_WITH THY1 -ITGAV REACTS_WITH TLN1 -ITGAV REACTS_WITH TNC -ITGAV REACTS_WITH VEGFA -ITGAV REACTS_WITH VTN -ITGAV STATE_CHANGE BCAR1 -ITGAV STATE_CHANGE CDKN1B -ITGAV STATE_CHANGE CRK -ITGAV STATE_CHANGE IGF1 -ITGAV STATE_CHANGE IGF1R -ITGAV STATE_CHANGE ILK -ITGAV STATE_CHANGE IRS1 -ITGAV STATE_CHANGE MAP3K1 -ITGAV STATE_CHANGE MAP3K14 -ITGAV STATE_CHANGE PI4KA -ITGAV STATE_CHANGE PI4KB -ITGAV STATE_CHANGE PIK3C2A -ITGAV STATE_CHANGE PTK2B -ITGAV STATE_CHANGE RHOA -ITGAV STATE_CHANGE SRC -ITGAV STATE_CHANGE SYK -ITGAV STATE_CHANGE VAV3 -ITGAX IN_SAME_COMPONENT C3 -ITGAX IN_SAME_COMPONENT FGA -ITGAX IN_SAME_COMPONENT FGB -ITGAX IN_SAME_COMPONENT FGG -ITGAX IN_SAME_COMPONENT ICAM1 -ITGAX IN_SAME_COMPONENT ITGB2 -ITGAX REACTS_WITH C3 -ITGAX REACTS_WITH FGA -ITGAX REACTS_WITH FGB -ITGAX REACTS_WITH FGG -ITGAX REACTS_WITH ICAM1 -ITGAX REACTS_WITH ITGAX -ITGAX REACTS_WITH ITGB2 -ITGB1 CO_CONTROL FN1 -ITGB1 CO_CONTROL PLAU -ITGB1 CO_CONTROL PLAUR -ITGB1 CO_CONTROL PRKCA -ITGB1 CO_CONTROL PTPRA -ITGB1 CO_CONTROL SDC4 -ITGB1 IN_SAME_COMPONENT ABI1 -ITGB1 IN_SAME_COMPONENT ADAM12 -ITGB1 IN_SAME_COMPONENT ADAM15 -ITGB1 IN_SAME_COMPONENT ADAM2 -ITGB1 IN_SAME_COMPONENT ADAM28 -ITGB1 IN_SAME_COMPONENT ADAM8 -ITGB1 IN_SAME_COMPONENT ANGPT1 -ITGB1 IN_SAME_COMPONENT CD14 -ITGB1 IN_SAME_COMPONENT CD81 -ITGB1 IN_SAME_COMPONENT CD9 -ITGB1 IN_SAME_COMPONENT COL11A1 -ITGB1 IN_SAME_COMPONENT COL11A2 -ITGB1 IN_SAME_COMPONENT COL18A1 -ITGB1 IN_SAME_COMPONENT COL1A1 -ITGB1 IN_SAME_COMPONENT COL1A2 -ITGB1 IN_SAME_COMPONENT COL2A1 -ITGB1 IN_SAME_COMPONENT COL3A1 -ITGB1 IN_SAME_COMPONENT COL5A1 -ITGB1 IN_SAME_COMPONENT COL5A2 -ITGB1 IN_SAME_COMPONENT COL6A1 -ITGB1 IN_SAME_COMPONENT COL6A2 -ITGB1 IN_SAME_COMPONENT COL7A1 -ITGB1 IN_SAME_COMPONENT CSF2 -ITGB1 IN_SAME_COMPONENT CSF2RA -ITGB1 IN_SAME_COMPONENT CSPG4 -ITGB1 IN_SAME_COMPONENT DAB1 -ITGB1 IN_SAME_COMPONENT F13A1 -ITGB1 IN_SAME_COMPONENT FBN1 -ITGB1 IN_SAME_COMPONENT FGA -ITGB1 IN_SAME_COMPONENT FGB -ITGB1 IN_SAME_COMPONENT FGG -ITGB1 IN_SAME_COMPONENT FIGF -ITGB1 IN_SAME_COMPONENT FLT4 -ITGB1 IN_SAME_COMPONENT FN1 -ITGB1 IN_SAME_COMPONENT IGSF8 -ITGB1 IN_SAME_COMPONENT ITGA1 -ITGB1 IN_SAME_COMPONENT ITGA10 -ITGB1 IN_SAME_COMPONENT ITGA11 -ITGB1 IN_SAME_COMPONENT ITGA2 -ITGB1 IN_SAME_COMPONENT ITGA3 -ITGB1 IN_SAME_COMPONENT ITGA4 -ITGB1 IN_SAME_COMPONENT ITGA5 -ITGB1 IN_SAME_COMPONENT ITGA6 -ITGB1 IN_SAME_COMPONENT ITGA7 -ITGB1 IN_SAME_COMPONENT ITGA8 -ITGB1 IN_SAME_COMPONENT ITGA9 -ITGB1 IN_SAME_COMPONENT ITGAV -ITGB1 IN_SAME_COMPONENT JAM2 -ITGB1 IN_SAME_COMPONENT LAMA1 -ITGB1 IN_SAME_COMPONENT LAMA2 -ITGB1 IN_SAME_COMPONENT LAMA3 -ITGB1 IN_SAME_COMPONENT LAMA4 -ITGB1 IN_SAME_COMPONENT LAMA5 -ITGB1 IN_SAME_COMPONENT LAMB1 -ITGB1 IN_SAME_COMPONENT LAMB2 -ITGB1 IN_SAME_COMPONENT LAMB3 -ITGB1 IN_SAME_COMPONENT LAMC1 -ITGB1 IN_SAME_COMPONENT LAMC2 -ITGB1 IN_SAME_COMPONENT MDK -ITGB1 IN_SAME_COMPONENT MYH2 -ITGB1 IN_SAME_COMPONENT NID1 -ITGB1 IN_SAME_COMPONENT NPNT -ITGB1 IN_SAME_COMPONENT PLAU -ITGB1 IN_SAME_COMPONENT PLAUR -ITGB1 IN_SAME_COMPONENT PXN -ITGB1 IN_SAME_COMPONENT SAT1 -ITGB1 IN_SAME_COMPONENT SDC2 -ITGB1 IN_SAME_COMPONENT SPP1 -ITGB1 IN_SAME_COMPONENT TEK -ITGB1 IN_SAME_COMPONENT TGFBI -ITGB1 IN_SAME_COMPONENT TGM2 -ITGB1 IN_SAME_COMPONENT THBS1 -ITGB1 IN_SAME_COMPONENT THBS2 -ITGB1 IN_SAME_COMPONENT TLN1 -ITGB1 IN_SAME_COMPONENT TNC -ITGB1 IN_SAME_COMPONENT VCAM1 -ITGB1 IN_SAME_COMPONENT VEGFA -ITGB1 IN_SAME_COMPONENT VEGFC -ITGB1 IN_SAME_COMPONENT VTN -ITGB1 IN_SAME_COMPONENT YWHAZ -ITGB1 INTERACTS_WITH ITGA4 -ITGB1 INTERACTS_WITH ITGB7 -ITGB1 INTERACTS_WITH SDC2 -ITGB1 REACTS_WITH ABI1 -ITGB1 REACTS_WITH ADAM12 -ITGB1 REACTS_WITH ADAM15 -ITGB1 REACTS_WITH ADAM2 -ITGB1 REACTS_WITH ADAM28 -ITGB1 REACTS_WITH ADAM8 -ITGB1 REACTS_WITH ANGPT1 -ITGB1 REACTS_WITH CD14 -ITGB1 REACTS_WITH CD81 -ITGB1 REACTS_WITH CD9 -ITGB1 REACTS_WITH COL11A1 -ITGB1 REACTS_WITH COL11A2 -ITGB1 REACTS_WITH COL18A1 -ITGB1 REACTS_WITH COL1A1 -ITGB1 REACTS_WITH COL1A2 -ITGB1 REACTS_WITH COL2A1 -ITGB1 REACTS_WITH COL3A1 -ITGB1 REACTS_WITH COL5A1 -ITGB1 REACTS_WITH COL5A2 -ITGB1 REACTS_WITH COL6A1 -ITGB1 REACTS_WITH COL6A2 -ITGB1 REACTS_WITH COL7A1 -ITGB1 REACTS_WITH CSF2 -ITGB1 REACTS_WITH CSF2RA -ITGB1 REACTS_WITH CSPG4 -ITGB1 REACTS_WITH DAB1 -ITGB1 REACTS_WITH F13A1 -ITGB1 REACTS_WITH FBN1 -ITGB1 REACTS_WITH FGA -ITGB1 REACTS_WITH FGB -ITGB1 REACTS_WITH FGG -ITGB1 REACTS_WITH FIGF -ITGB1 REACTS_WITH FLT4 -ITGB1 REACTS_WITH FN1 -ITGB1 REACTS_WITH IGSF8 -ITGB1 REACTS_WITH ITGA1 -ITGB1 REACTS_WITH ITGA10 -ITGB1 REACTS_WITH ITGA11 -ITGB1 REACTS_WITH ITGA2 -ITGB1 REACTS_WITH ITGA3 -ITGB1 REACTS_WITH ITGA4 -ITGB1 REACTS_WITH ITGA5 -ITGB1 REACTS_WITH ITGA6 -ITGB1 REACTS_WITH ITGA7 -ITGB1 REACTS_WITH ITGA8 -ITGB1 REACTS_WITH ITGA9 -ITGB1 REACTS_WITH ITGAV -ITGB1 REACTS_WITH ITGB1 -ITGB1 REACTS_WITH ITGB4 -ITGB1 REACTS_WITH ITGB7 -ITGB1 REACTS_WITH JAM2 -ITGB1 REACTS_WITH LAMA1 -ITGB1 REACTS_WITH LAMA2 -ITGB1 REACTS_WITH LAMA3 -ITGB1 REACTS_WITH LAMA4 -ITGB1 REACTS_WITH LAMA5 -ITGB1 REACTS_WITH LAMB1 -ITGB1 REACTS_WITH LAMB2 -ITGB1 REACTS_WITH LAMB3 -ITGB1 REACTS_WITH LAMC1 -ITGB1 REACTS_WITH LAMC2 -ITGB1 REACTS_WITH MDK -ITGB1 REACTS_WITH MYH2 -ITGB1 REACTS_WITH NID1 -ITGB1 REACTS_WITH NPNT -ITGB1 REACTS_WITH PLAU -ITGB1 REACTS_WITH PLAUR -ITGB1 REACTS_WITH PXN -ITGB1 REACTS_WITH SAT1 -ITGB1 REACTS_WITH SDC2 -ITGB1 REACTS_WITH SPP1 -ITGB1 REACTS_WITH TEK -ITGB1 REACTS_WITH TGFBI -ITGB1 REACTS_WITH TGM2 -ITGB1 REACTS_WITH THBS1 -ITGB1 REACTS_WITH THBS2 -ITGB1 REACTS_WITH TLN1 -ITGB1 REACTS_WITH TNC -ITGB1 REACTS_WITH VCAM1 -ITGB1 REACTS_WITH VEGFA -ITGB1 REACTS_WITH VEGFC -ITGB1 REACTS_WITH VTN -ITGB1 REACTS_WITH YWHAZ -ITGB1 STATE_CHANGE AMICA1 -ITGB1 STATE_CHANGE EGF -ITGB1 STATE_CHANGE EGFR -ITGB1 STATE_CHANGE KDR -ITGB1 STATE_CHANGE PRKACA -ITGB1 STATE_CHANGE PRKACB -ITGB1 STATE_CHANGE PRKAR1A -ITGB1 STATE_CHANGE PRKAR1B -ITGB1 STATE_CHANGE PTK2B -ITGB1 STATE_CHANGE RAC1 -ITGB1 STATE_CHANGE RPS6KB1 -ITGB1 STATE_CHANGE SRC -ITGB1 STATE_CHANGE VEGFA -ITGB2 IN_SAME_COMPONENT AGER -ITGB2 IN_SAME_COMPONENT APOB -ITGB2 IN_SAME_COMPONENT C3 -ITGB2 IN_SAME_COMPONENT CD40LG -ITGB2 IN_SAME_COMPONENT CTGF -ITGB2 IN_SAME_COMPONENT CYR61 -ITGB2 IN_SAME_COMPONENT F10 -ITGB2 IN_SAME_COMPONENT F11R -ITGB2 IN_SAME_COMPONENT FCGR2A -ITGB2 IN_SAME_COMPONENT FGA -ITGB2 IN_SAME_COMPONENT FGB -ITGB2 IN_SAME_COMPONENT FGG -ITGB2 IN_SAME_COMPONENT GP1BA -ITGB2 IN_SAME_COMPONENT HCK -ITGB2 IN_SAME_COMPONENT HMGB1 -ITGB2 IN_SAME_COMPONENT ICAM1 -ITGB2 IN_SAME_COMPONENT ICAM2 -ITGB2 IN_SAME_COMPONENT ICAM3 -ITGB2 IN_SAME_COMPONENT ICAM4 -ITGB2 IN_SAME_COMPONENT ITGAD -ITGB2 IN_SAME_COMPONENT ITGAL -ITGB2 IN_SAME_COMPONENT ITGAM -ITGB2 IN_SAME_COMPONENT ITGAX -ITGB2 IN_SAME_COMPONENT JAM3 -ITGB2 IN_SAME_COMPONENT KNG1 -ITGB2 IN_SAME_COMPONENT LPA -ITGB2 IN_SAME_COMPONENT LRP1 -ITGB2 IN_SAME_COMPONENT MMP2 -ITGB2 IN_SAME_COMPONENT MMP9 -ITGB2 IN_SAME_COMPONENT PLAT -ITGB2 IN_SAME_COMPONENT PLAU -ITGB2 IN_SAME_COMPONENT PLAUR -ITGB2 IN_SAME_COMPONENT PLG -ITGB2 IN_SAME_COMPONENT PROC -ITGB2 IN_SAME_COMPONENT SELP -ITGB2 IN_SAME_COMPONENT SELPLG -ITGB2 IN_SAME_COMPONENT SPON2 -ITGB2 IN_SAME_COMPONENT TGFBI -ITGB2 IN_SAME_COMPONENT THY1 -ITGB2 IN_SAME_COMPONENT TLN1 -ITGB2 IN_SAME_COMPONENT VCAM1 -ITGB2 INTERACTS_WITH AKT1 -ITGB2 INTERACTS_WITH PRKCZ -ITGB2 REACTS_WITH AGER -ITGB2 REACTS_WITH APOB -ITGB2 REACTS_WITH C3 -ITGB2 REACTS_WITH CD40LG -ITGB2 REACTS_WITH CTGF -ITGB2 REACTS_WITH CYR61 -ITGB2 REACTS_WITH F10 -ITGB2 REACTS_WITH F11R -ITGB2 REACTS_WITH FCGR2A -ITGB2 REACTS_WITH FGA -ITGB2 REACTS_WITH FGB -ITGB2 REACTS_WITH FGG -ITGB2 REACTS_WITH GP1BA -ITGB2 REACTS_WITH HCK -ITGB2 REACTS_WITH HMGB1 -ITGB2 REACTS_WITH ICAM1 -ITGB2 REACTS_WITH ICAM2 -ITGB2 REACTS_WITH ICAM3 -ITGB2 REACTS_WITH ICAM4 -ITGB2 REACTS_WITH ITGAD -ITGB2 REACTS_WITH ITGAL -ITGB2 REACTS_WITH ITGAM -ITGB2 REACTS_WITH ITGAX -ITGB2 REACTS_WITH ITGB2 -ITGB2 REACTS_WITH JAM2 -ITGB2 REACTS_WITH JAM3 -ITGB2 REACTS_WITH KNG1 -ITGB2 REACTS_WITH LPA -ITGB2 REACTS_WITH LRP1 -ITGB2 REACTS_WITH MMP2 -ITGB2 REACTS_WITH MMP9 -ITGB2 REACTS_WITH PLAT -ITGB2 REACTS_WITH PLAU -ITGB2 REACTS_WITH PLAUR -ITGB2 REACTS_WITH PLG -ITGB2 REACTS_WITH PROC -ITGB2 REACTS_WITH SELP -ITGB2 REACTS_WITH SELPLG -ITGB2 REACTS_WITH SPON2 -ITGB2 REACTS_WITH TGFBI -ITGB2 REACTS_WITH THY1 -ITGB2 REACTS_WITH TLN1 -ITGB2 REACTS_WITH VCAM1 -ITGB2 STATE_CHANGE NFKB1 -ITGB2 STATE_CHANGE PLG -ITGB2 STATE_CHANGE RHOA -ITGB3 CO_CONTROL GIT1 -ITGB3 CO_CONTROL ITGA2B -ITGB3 CO_CONTROL ITGB3 -ITGB3 CO_CONTROL PIK3CA -ITGB3 CO_CONTROL PIK3R1 -ITGB3 CO_CONTROL PXN -ITGB3 CO_CONTROL SYK -ITGB3 IN_SAME_COMPONENT ANGPTL3 -ITGB3 IN_SAME_COMPONENT BCAR1 -ITGB3 IN_SAME_COMPONENT CBL -ITGB3 IN_SAME_COMPONENT CD47 -ITGB3 IN_SAME_COMPONENT COL1A1 -ITGB3 IN_SAME_COMPONENT COL1A2 -ITGB3 IN_SAME_COMPONENT COL4A3 -ITGB3 IN_SAME_COMPONENT CSF1R -ITGB3 IN_SAME_COMPONENT CYR61 -ITGB3 IN_SAME_COMPONENT EDIL3 -ITGB3 IN_SAME_COMPONENT F11R -ITGB3 IN_SAME_COMPONENT FBN1 -ITGB3 IN_SAME_COMPONENT FGA -ITGB3 IN_SAME_COMPONENT FGB -ITGB3 IN_SAME_COMPONENT FGG -ITGB3 IN_SAME_COMPONENT FN1 -ITGB3 IN_SAME_COMPONENT GIT1 -ITGB3 IN_SAME_COMPONENT GPR124 -ITGB3 IN_SAME_COMPONENT HMGB1 -ITGB3 IN_SAME_COMPONENT HSP90AA1 -ITGB3 IN_SAME_COMPONENT IBSP -ITGB3 IN_SAME_COMPONENT ITGA2B -ITGB3 IN_SAME_COMPONENT ITGAV -ITGB3 IN_SAME_COMPONENT KDR -ITGB3 IN_SAME_COMPONENT L1CAM -ITGB3 IN_SAME_COMPONENT LAMA4 -ITGB3 IN_SAME_COMPONENT LAMB1 -ITGB3 IN_SAME_COMPONENT LAMC1 -ITGB3 IN_SAME_COMPONENT MFGE8 -ITGB3 IN_SAME_COMPONENT NCL -ITGB3 IN_SAME_COMPONENT PDGFB -ITGB3 IN_SAME_COMPONENT PDGFRB -ITGB3 IN_SAME_COMPONENT PECAM1 -ITGB3 IN_SAME_COMPONENT PLAU -ITGB3 IN_SAME_COMPONENT PLAUR -ITGB3 IN_SAME_COMPONENT PTK2B -ITGB3 IN_SAME_COMPONENT PVR -ITGB3 IN_SAME_COMPONENT PXN -ITGB3 IN_SAME_COMPONENT RHOA -ITGB3 IN_SAME_COMPONENT ROCK1 -ITGB3 IN_SAME_COMPONENT SDC1 -ITGB3 IN_SAME_COMPONENT SDC4 -ITGB3 IN_SAME_COMPONENT SERPINE1 -ITGB3 IN_SAME_COMPONENT SPHK1 -ITGB3 IN_SAME_COMPONENT SPP1 -ITGB3 IN_SAME_COMPONENT TGFBI -ITGB3 IN_SAME_COMPONENT TGFBR2 -ITGB3 IN_SAME_COMPONENT THBS1 -ITGB3 IN_SAME_COMPONENT THY1 -ITGB3 IN_SAME_COMPONENT TLN1 -ITGB3 IN_SAME_COMPONENT VEGFA -ITGB3 IN_SAME_COMPONENT VTN -ITGB3 INTERACTS_WITH RAC1 -ITGB3 INTERACTS_WITH RHOA -ITGB3 INTERACTS_WITH VCL -ITGB3 METABOLIC_CATALYSIS ILK -ITGB3 REACTS_WITH ANGPTL3 -ITGB3 REACTS_WITH BCAR1 -ITGB3 REACTS_WITH CASP8 -ITGB3 REACTS_WITH CBL -ITGB3 REACTS_WITH CD47 -ITGB3 REACTS_WITH COL1A1 -ITGB3 REACTS_WITH COL1A2 -ITGB3 REACTS_WITH COL4A3 -ITGB3 REACTS_WITH CSF1R -ITGB3 REACTS_WITH CYR61 -ITGB3 REACTS_WITH EDIL3 -ITGB3 REACTS_WITH F11R -ITGB3 REACTS_WITH FBN1 -ITGB3 REACTS_WITH FGA -ITGB3 REACTS_WITH FGB -ITGB3 REACTS_WITH FGG -ITGB3 REACTS_WITH FN1 -ITGB3 REACTS_WITH GPR124 -ITGB3 REACTS_WITH HMGB1 -ITGB3 REACTS_WITH HSP90AA1 -ITGB3 REACTS_WITH IBSP -ITGB3 REACTS_WITH ITGA2B -ITGB3 REACTS_WITH ITGAV -ITGB3 REACTS_WITH ITGB3 -ITGB3 REACTS_WITH KDR -ITGB3 REACTS_WITH L1CAM -ITGB3 REACTS_WITH LAMA4 -ITGB3 REACTS_WITH LAMB1 -ITGB3 REACTS_WITH LAMC1 -ITGB3 REACTS_WITH MFGE8 -ITGB3 REACTS_WITH NCL -ITGB3 REACTS_WITH PDGFB -ITGB3 REACTS_WITH PDGFRB -ITGB3 REACTS_WITH PECAM1 -ITGB3 REACTS_WITH PLAU -ITGB3 REACTS_WITH PLAUR -ITGB3 REACTS_WITH PTK2B -ITGB3 REACTS_WITH PVR -ITGB3 REACTS_WITH RHOA -ITGB3 REACTS_WITH ROCK1 -ITGB3 REACTS_WITH SDC1 -ITGB3 REACTS_WITH SDC4 -ITGB3 REACTS_WITH SERPINE1 -ITGB3 REACTS_WITH SPHK1 -ITGB3 REACTS_WITH SPP1 -ITGB3 REACTS_WITH TGFBI -ITGB3 REACTS_WITH TGFBR2 -ITGB3 REACTS_WITH THBS1 -ITGB3 REACTS_WITH THY1 -ITGB3 REACTS_WITH TLN1 -ITGB3 REACTS_WITH TNC -ITGB3 REACTS_WITH VEGFA -ITGB3 REACTS_WITH VTN -ITGB3 STATE_CHANGE BCAR1 -ITGB3 STATE_CHANGE CDKN1B -ITGB3 STATE_CHANGE CRK -ITGB3 STATE_CHANGE IGF1 -ITGB3 STATE_CHANGE IGF1R -ITGB3 STATE_CHANGE ILK -ITGB3 STATE_CHANGE IRS1 -ITGB3 STATE_CHANGE MAP3K1 -ITGB3 STATE_CHANGE MAP3K14 -ITGB3 STATE_CHANGE PI4KA -ITGB3 STATE_CHANGE PI4KB -ITGB3 STATE_CHANGE PIK3C2A -ITGB3 STATE_CHANGE PTK2B -ITGB3 STATE_CHANGE RHOA -ITGB3 STATE_CHANGE SRC -ITGB3 STATE_CHANGE SYK -ITGB3 STATE_CHANGE VAV3 -ITGB4 IN_SAME_COMPONENT ITGA6 -ITGB4 IN_SAME_COMPONENT LAMA1 -ITGB4 IN_SAME_COMPONENT LAMA2 -ITGB4 IN_SAME_COMPONENT LAMA3 -ITGB4 IN_SAME_COMPONENT LAMA5 -ITGB4 IN_SAME_COMPONENT LAMB1 -ITGB4 IN_SAME_COMPONENT LAMB2 -ITGB4 IN_SAME_COMPONENT LAMB3 -ITGB4 IN_SAME_COMPONENT LAMC1 -ITGB4 IN_SAME_COMPONENT LAMC2 -ITGB4 IN_SAME_COMPONENT PMP22 -ITGB4 IN_SAME_COMPONENT SHC1 -ITGB4 INTERACTS_WITH MST1 -ITGB4 INTERACTS_WITH MST1R -ITGB4 REACTS_WITH CDH1 -ITGB4 REACTS_WITH COL17A1 -ITGB4 REACTS_WITH ERBB3 -ITGB4 REACTS_WITH ITGA6 -ITGB4 REACTS_WITH ITGB1 -ITGB4 REACTS_WITH ITGB4 -ITGB4 REACTS_WITH LAMA1 -ITGB4 REACTS_WITH LAMA2 -ITGB4 REACTS_WITH LAMA3 -ITGB4 REACTS_WITH LAMA5 -ITGB4 REACTS_WITH LAMB1 -ITGB4 REACTS_WITH LAMB2 -ITGB4 REACTS_WITH LAMB3 -ITGB4 REACTS_WITH LAMC1 -ITGB4 REACTS_WITH LAMC2 -ITGB4 REACTS_WITH MET -ITGB4 REACTS_WITH PIK3CA -ITGB4 REACTS_WITH PIK3R1 -ITGB4 REACTS_WITH PMP22 -ITGB4 REACTS_WITH SHC1 -ITGB4 STATE_CHANGE AKT1 -ITGB4 STATE_CHANGE HRAS -ITGB5 IN_SAME_COMPONENT CYR61 -ITGB5 IN_SAME_COMPONENT EDIL3 -ITGB5 IN_SAME_COMPONENT ITGAV -ITGB5 IN_SAME_COMPONENT PLAU -ITGB5 IN_SAME_COMPONENT PLAUR -ITGB5 IN_SAME_COMPONENT SDC1 -ITGB5 IN_SAME_COMPONENT SERPINE1 -ITGB5 IN_SAME_COMPONENT VTN -ITGB5 REACTS_WITH CYR61 -ITGB5 REACTS_WITH EDIL3 -ITGB5 REACTS_WITH ITGAV -ITGB5 REACTS_WITH ITGB5 -ITGB5 REACTS_WITH PLAU -ITGB5 REACTS_WITH PLAUR -ITGB5 REACTS_WITH SDC1 -ITGB5 REACTS_WITH SERPINE1 -ITGB5 REACTS_WITH VTN -ITGB6 IN_SAME_COMPONENT FBN1 -ITGB6 IN_SAME_COMPONENT FN1 -ITGB6 IN_SAME_COMPONENT ITGAV -ITGB6 IN_SAME_COMPONENT VTN -ITGB6 REACTS_WITH FBN1 -ITGB6 REACTS_WITH FN1 -ITGB6 REACTS_WITH ITGAV -ITGB6 REACTS_WITH ITGB6 -ITGB6 REACTS_WITH VTN -ITGB7 IN_SAME_COMPONENT CDH1 -ITGB7 IN_SAME_COMPONENT CTNNA1 -ITGB7 IN_SAME_COMPONENT CTNNB1 -ITGB7 IN_SAME_COMPONENT FN1 -ITGB7 IN_SAME_COMPONENT ITGA4 -ITGB7 IN_SAME_COMPONENT ITGAE -ITGB7 IN_SAME_COMPONENT JUP -ITGB7 IN_SAME_COMPONENT MADCAM1 -ITGB7 IN_SAME_COMPONENT VCAM1 -ITGB7 INTERACTS_WITH CD44 -ITGB7 INTERACTS_WITH ITGA4 -ITGB7 INTERACTS_WITH ITGB1 -ITGB7 REACTS_WITH CDH1 -ITGB7 REACTS_WITH CTNNA1 -ITGB7 REACTS_WITH CTNNB1 -ITGB7 REACTS_WITH FN1 -ITGB7 REACTS_WITH ITGA4 -ITGB7 REACTS_WITH ITGAE -ITGB7 REACTS_WITH ITGB1 -ITGB7 REACTS_WITH ITGB7 -ITGB7 REACTS_WITH JUP -ITGB7 REACTS_WITH MADCAM1 -ITGB7 REACTS_WITH PXN -ITGB7 REACTS_WITH VCAM1 -ITGB8 IN_SAME_COMPONENT ITGAV -ITGB8 IN_SAME_COMPONENT TGFBR1 -ITGB8 IN_SAME_COMPONENT VTN -ITGB8 REACTS_WITH ITGAV -ITGB8 REACTS_WITH ITGB8 -ITGB8 REACTS_WITH TGFBR1 -ITGB8 REACTS_WITH VTN -ITK CO_CONTROL CD247 -ITK CO_CONTROL CD3D -ITK CO_CONTROL CD3E -ITK CO_CONTROL CD3G -ITK CO_CONTROL CD4 -ITK CO_CONTROL GRAP2 -ITK CO_CONTROL HLA-DRA -ITK CO_CONTROL HLA-DRB1 -ITK CO_CONTROL ITK -ITK CO_CONTROL LCK -ITK CO_CONTROL LCP2 -ITK CO_CONTROL PLCG1 -ITK CO_CONTROL VAV1 -ITK CO_CONTROL ZAP70 -ITK IN_SAME_COMPONENT GRAP2 -ITK IN_SAME_COMPONENT LCP2 -ITK IN_SAME_COMPONENT PLCG1 -ITK IN_SAME_COMPONENT VAV1 -ITK REACTS_WITH CBL -ITK REACTS_WITH GRAP2 -ITK REACTS_WITH ITK -ITK REACTS_WITH LCP2 -ITK REACTS_WITH PLCG1 -ITK REACTS_WITH VAV1 -ITSN1 IN_SAME_COMPONENT EPHB2 -ITSN1 IN_SAME_COMPONENT WASL -ITSN1 REACTS_WITH EPHB2 -ITSN1 REACTS_WITH ITSN1 -ITSN1 REACTS_WITH WASL -ITSN1 STATE_CHANGE CBL -ITSN1 STATE_CHANGE CDC42 -ITSN2 STATE_CHANGE CDC42 -JAG1 IN_SAME_COMPONENT NOTCH1 -JAG1 REACTS_WITH JAG1 -JAG1 REACTS_WITH NOTCH1 -JAG2 IN_SAME_COMPONENT NOTCH1 -JAG2 REACTS_WITH JAG2 -JAG2 REACTS_WITH NOTCH1 -JAK1 CO_CONTROL BCL6 -JAK1 CO_CONTROL CD40LG -JAK1 CO_CONTROL IL2RG -JAK1 CO_CONTROL IL4 -JAK1 CO_CONTROL IL4R -JAK1 CO_CONTROL IL6 -JAK1 CO_CONTROL IL6R -JAK1 CO_CONTROL IL6ST -JAK1 CO_CONTROL JAK1 -JAK1 CO_CONTROL JAK3 -JAK1 CO_CONTROL PRKCD -JAK1 CO_CONTROL PTPN6 -JAK1 CO_CONTROL SOCS3 -JAK1 CO_CONTROL STAT6 -JAK1 IN_SAME_COMPONENT CISH -JAK1 IN_SAME_COMPONENT DOK2 -JAK1 IN_SAME_COMPONENT EBI3 -JAK1 IN_SAME_COMPONENT FES -JAK1 IN_SAME_COMPONENT FYN -JAK1 IN_SAME_COMPONENT GAB2 -JAK1 IN_SAME_COMPONENT HCK -JAK1 IN_SAME_COMPONENT IFNG -JAK1 IN_SAME_COMPONENT IFNGR1 -JAK1 IN_SAME_COMPONENT IL13RA1 -JAK1 IN_SAME_COMPONENT IL2 -JAK1 IN_SAME_COMPONENT IL27 -JAK1 IN_SAME_COMPONENT IL27RA -JAK1 IN_SAME_COMPONENT IL2RA -JAK1 IN_SAME_COMPONENT IL2RB -JAK1 IN_SAME_COMPONENT IL2RG -JAK1 IN_SAME_COMPONENT IL4 -JAK1 IN_SAME_COMPONENT IL4R -JAK1 IN_SAME_COMPONENT IL6 -JAK1 IN_SAME_COMPONENT IL6R -JAK1 IN_SAME_COMPONENT IL6ST -JAK1 IN_SAME_COMPONENT INPP5D -JAK1 IN_SAME_COMPONENT IRS1 -JAK1 IN_SAME_COMPONENT IRS2 -JAK1 IN_SAME_COMPONENT JAK2 -JAK1 IN_SAME_COMPONENT JAK3 -JAK1 IN_SAME_COMPONENT LCK -JAK1 IN_SAME_COMPONENT PIK3CA -JAK1 IN_SAME_COMPONENT PIK3R1 -JAK1 IN_SAME_COMPONENT PTK2B -JAK1 IN_SAME_COMPONENT PTPN11 -JAK1 IN_SAME_COMPONENT PTPN6 -JAK1 IN_SAME_COMPONENT SHC1 -JAK1 IN_SAME_COMPONENT SOCS1 -JAK1 IN_SAME_COMPONENT SOCS2 -JAK1 IN_SAME_COMPONENT SOCS3 -JAK1 IN_SAME_COMPONENT SOS1 -JAK1 IN_SAME_COMPONENT SYK -JAK1 METABOLIC_CATALYSIS BCL2L1 -JAK1 METABOLIC_CATALYSIS CCND3 -JAK1 METABOLIC_CATALYSIS IRF4 -JAK1 METABOLIC_CATALYSIS MYC -JAK1 METABOLIC_CATALYSIS SOCS3 -JAK1 REACTS_WITH DOK2 -JAK1 REACTS_WITH EBI3 -JAK1 REACTS_WITH FES -JAK1 REACTS_WITH FYN -JAK1 REACTS_WITH GAB2 -JAK1 REACTS_WITH HCK -JAK1 REACTS_WITH IFNG -JAK1 REACTS_WITH IFNGR1 -JAK1 REACTS_WITH IL13RA1 -JAK1 REACTS_WITH IL2 -JAK1 REACTS_WITH IL27 -JAK1 REACTS_WITH IL27RA -JAK1 REACTS_WITH IL2RA -JAK1 REACTS_WITH IL2RB -JAK1 REACTS_WITH IL2RG -JAK1 REACTS_WITH IL4 -JAK1 REACTS_WITH IL4R -JAK1 REACTS_WITH IL6 -JAK1 REACTS_WITH IL6R -JAK1 REACTS_WITH IL6ST -JAK1 REACTS_WITH INPP5D -JAK1 REACTS_WITH IRS1 -JAK1 REACTS_WITH IRS2 -JAK1 REACTS_WITH JAK1 -JAK1 REACTS_WITH JAK2 -JAK1 REACTS_WITH JAK3 -JAK1 REACTS_WITH LCK -JAK1 REACTS_WITH PIK3CA -JAK1 REACTS_WITH PIK3R1 -JAK1 REACTS_WITH PTK2B -JAK1 REACTS_WITH PTPN11 -JAK1 REACTS_WITH PTPN6 -JAK1 REACTS_WITH SHC1 -JAK1 REACTS_WITH SOCS1 -JAK1 REACTS_WITH SOCS2 -JAK1 REACTS_WITH SOCS3 -JAK1 REACTS_WITH SOS1 -JAK1 REACTS_WITH SYK -JAK1 STATE_CHANGE AKT1 -JAK1 STATE_CHANGE CALM1 -JAK1 STATE_CHANGE CBL -JAK1 STATE_CHANGE DOK2 -JAK1 STATE_CHANGE ETS1 -JAK1 STATE_CHANGE FOXO1 -JAK1 STATE_CHANGE IKZF3 -JAK1 STATE_CHANGE IL2 -JAK1 STATE_CHANGE IL2RA -JAK1 STATE_CHANGE IL2RB -JAK1 STATE_CHANGE IL2RG -JAK1 STATE_CHANGE JAK1 -JAK1 STATE_CHANGE JAK3 -JAK1 STATE_CHANGE LCK -JAK1 STATE_CHANGE MAP2K6 -JAK1 STATE_CHANGE MAP3K1 -JAK1 STATE_CHANGE MAP3K11 -JAK1 STATE_CHANGE MAPK14 -JAK1 STATE_CHANGE MITF -JAK1 STATE_CHANGE PIAS1 -JAK1 STATE_CHANGE PIAS3 -JAK1 STATE_CHANGE PIK3CA -JAK1 STATE_CHANGE PIK3R1 -JAK1 STATE_CHANGE PRKCB -JAK1 STATE_CHANGE PRKCE -JAK1 STATE_CHANGE PRKCZ -JAK1 STATE_CHANGE PTPN11 -JAK1 STATE_CHANGE RHOA -JAK1 STATE_CHANGE SGMS1 -JAK1 STATE_CHANGE SMPD1 -JAK1 STATE_CHANGE SOCS3 -JAK1 STATE_CHANGE SOS1 -JAK1 STATE_CHANGE STAT1 -JAK1 STATE_CHANGE STAT3 -JAK1 STATE_CHANGE STAT6 -JAK1 STATE_CHANGE UGCG -JAK1 STATE_CHANGE VAV1 -JAK2 CO_CONTROL EBI3 -JAK2 CO_CONTROL IL12A -JAK2 CO_CONTROL IL12B -JAK2 CO_CONTROL IL12RB1 -JAK2 CO_CONTROL IL12RB2 -JAK2 CO_CONTROL IL27 -JAK2 CO_CONTROL IL27RA -JAK2 CO_CONTROL IL6ST -JAK2 CO_CONTROL JAK2 -JAK2 CO_CONTROL SRC -JAK2 CO_CONTROL TYK2 -JAK2 IN_SAME_COMPONENT CSF2 -JAK2 IN_SAME_COMPONENT CSF2RA -JAK2 IN_SAME_COMPONENT CSF2RB -JAK2 IN_SAME_COMPONENT CXCL12 -JAK2 IN_SAME_COMPONENT CXCR4 -JAK2 IN_SAME_COMPONENT EBI3 -JAK2 IN_SAME_COMPONENT EPO -JAK2 IN_SAME_COMPONENT EPOR -JAK2 IN_SAME_COMPONENT GAB2 -JAK2 IN_SAME_COMPONENT HBEGF -JAK2 IN_SAME_COMPONENT HES1 -JAK2 IN_SAME_COMPONENT IFNG -JAK2 IN_SAME_COMPONENT IFNGR1 -JAK2 IN_SAME_COMPONENT IL12A -JAK2 IN_SAME_COMPONENT IL12B -JAK2 IN_SAME_COMPONENT IL12RB1 -JAK2 IN_SAME_COMPONENT IL12RB2 -JAK2 IN_SAME_COMPONENT IL13RA1 -JAK2 IN_SAME_COMPONENT IL23A -JAK2 IN_SAME_COMPONENT IL23R -JAK2 IN_SAME_COMPONENT IL27 -JAK2 IN_SAME_COMPONENT IL27RA -JAK2 IN_SAME_COMPONENT IL3 -JAK2 IN_SAME_COMPONENT IL3RA -JAK2 IN_SAME_COMPONENT IL4 -JAK2 IN_SAME_COMPONENT IL4R -JAK2 IN_SAME_COMPONENT IL5 -JAK2 IN_SAME_COMPONENT IL5RA -JAK2 IN_SAME_COMPONENT IL6 -JAK2 IN_SAME_COMPONENT IL6R -JAK2 IN_SAME_COMPONENT IL6ST -JAK2 IN_SAME_COMPONENT INPP5D -JAK2 IN_SAME_COMPONENT JAK1 -JAK2 IN_SAME_COMPONENT LEP -JAK2 IN_SAME_COMPONENT LEPR -JAK2 IN_SAME_COMPONENT PIK3CA -JAK2 IN_SAME_COMPONENT PIK3R1 -JAK2 IN_SAME_COMPONENT PRL -JAK2 IN_SAME_COMPONENT PRLR -JAK2 IN_SAME_COMPONENT PTPN11 -JAK2 IN_SAME_COMPONENT SHC1 -JAK2 IN_SAME_COMPONENT SOCS1 -JAK2 IN_SAME_COMPONENT SOCS3 -JAK2 IN_SAME_COMPONENT SOS1 -JAK2 IN_SAME_COMPONENT SPHK2 -JAK2 IN_SAME_COMPONENT TYK2 -JAK2 IN_SAME_COMPONENT YWHAZ -JAK2 INTERACTS_WITH TRPC6 -JAK2 METABOLIC_CATALYSIS ALOX12B -JAK2 METABOLIC_CATALYSIS CCL2 -JAK2 METABOLIC_CATALYSIS CCL3 -JAK2 METABOLIC_CATALYSIS CCL4 -JAK2 METABOLIC_CATALYSIS CCR5 -JAK2 METABOLIC_CATALYSIS CD3E -JAK2 METABOLIC_CATALYSIS CD4 -JAK2 METABOLIC_CATALYSIS CXCL1 -JAK2 METABOLIC_CATALYSIS CXCL9 -JAK2 METABOLIC_CATALYSIS EOMES -JAK2 METABOLIC_CATALYSIS FASLG -JAK2 METABOLIC_CATALYSIS FOS -JAK2 METABOLIC_CATALYSIS GADD45B -JAK2 METABOLIC_CATALYSIS GADD45G -JAK2 METABOLIC_CATALYSIS GZMA -JAK2 METABOLIC_CATALYSIS GZMB -JAK2 METABOLIC_CATALYSIS IFNG -JAK2 METABOLIC_CATALYSIS IL19 -JAK2 METABOLIC_CATALYSIS IL1B -JAK2 METABOLIC_CATALYSIS IL1R1 -JAK2 METABOLIC_CATALYSIS IL2 -JAK2 METABOLIC_CATALYSIS IL23R -JAK2 METABOLIC_CATALYSIS IL24 -JAK2 METABOLIC_CATALYSIS IL6 -JAK2 METABOLIC_CATALYSIS ITGA3 -JAK2 METABOLIC_CATALYSIS MPO -JAK2 METABOLIC_CATALYSIS NOS2 -JAK2 METABOLIC_CATALYSIS SOCS3 -JAK2 METABOLIC_CATALYSIS TBX21 -JAK2 METABOLIC_CATALYSIS TNF -JAK2 REACTS_WITH CSF2 -JAK2 REACTS_WITH CSF2RA -JAK2 REACTS_WITH CSF2RB -JAK2 REACTS_WITH CXCL12 -JAK2 REACTS_WITH CXCR4 -JAK2 REACTS_WITH EBI3 -JAK2 REACTS_WITH EPO -JAK2 REACTS_WITH EPOR -JAK2 REACTS_WITH GAB2 -JAK2 REACTS_WITH HBEGF -JAK2 REACTS_WITH HES1 -JAK2 REACTS_WITH IFNG -JAK2 REACTS_WITH IFNGR1 -JAK2 REACTS_WITH IL12A -JAK2 REACTS_WITH IL12B -JAK2 REACTS_WITH IL12RB1 -JAK2 REACTS_WITH IL12RB2 -JAK2 REACTS_WITH IL13RA1 -JAK2 REACTS_WITH IL23A -JAK2 REACTS_WITH IL23R -JAK2 REACTS_WITH IL27 -JAK2 REACTS_WITH IL27RA -JAK2 REACTS_WITH IL3 -JAK2 REACTS_WITH IL3RA -JAK2 REACTS_WITH IL4 -JAK2 REACTS_WITH IL4R -JAK2 REACTS_WITH IL5 -JAK2 REACTS_WITH IL5RA -JAK2 REACTS_WITH IL6 -JAK2 REACTS_WITH IL6R -JAK2 REACTS_WITH IL6ST -JAK2 REACTS_WITH INPP5D -JAK2 REACTS_WITH JAK1 -JAK2 REACTS_WITH JAK2 -JAK2 REACTS_WITH LEP -JAK2 REACTS_WITH LEPR -JAK2 REACTS_WITH PIK3CA -JAK2 REACTS_WITH PIK3R1 -JAK2 REACTS_WITH PRL -JAK2 REACTS_WITH PRLR -JAK2 REACTS_WITH PTPN11 -JAK2 REACTS_WITH SHC1 -JAK2 REACTS_WITH SOCS1 -JAK2 REACTS_WITH SOCS3 -JAK2 REACTS_WITH SOS1 -JAK2 REACTS_WITH SPHK2 -JAK2 REACTS_WITH TYK2 -JAK2 REACTS_WITH YWHAZ -JAK2 STATE_CHANGE BCAR1 -JAK2 STATE_CHANGE BTK -JAK2 STATE_CHANGE CALM1 -JAK2 STATE_CHANGE CBL -JAK2 STATE_CHANGE CRKL -JAK2 STATE_CHANGE GAB1 -JAK2 STATE_CHANGE IRS2 -JAK2 STATE_CHANGE LCK -JAK2 STATE_CHANGE MAP3K1 -JAK2 STATE_CHANGE MAP3K11 -JAK2 STATE_CHANGE NFKB1 -JAK2 STATE_CHANGE NFKB2 -JAK2 STATE_CHANGE NFKBIA -JAK2 STATE_CHANGE PIK3CA -JAK2 STATE_CHANGE PIK3R1 -JAK2 STATE_CHANGE PLCG1 -JAK2 STATE_CHANGE PTPN11 -JAK2 STATE_CHANGE PTPN6 -JAK2 STATE_CHANGE PXN -JAK2 STATE_CHANGE RAP1A -JAK2 STATE_CHANGE RELA -JAK2 STATE_CHANGE RELB -JAK2 STATE_CHANGE STAT1 -JAK2 STATE_CHANGE STAT2 -JAK2 STATE_CHANGE STAT3 -JAK2 STATE_CHANGE STAT4 -JAK2 STATE_CHANGE STAT5A -JAK2 STATE_CHANGE STAT5B -JAK2 STATE_CHANGE STAT6 -JAK2 STATE_CHANGE TEC -JAK2 STATE_CHANGE VAV2 -JAK3 CO_CONTROL BCL6 -JAK3 CO_CONTROL CD40LG -JAK3 CO_CONTROL IL2RG -JAK3 CO_CONTROL IL4 -JAK3 CO_CONTROL IL4R -JAK3 CO_CONTROL JAK1 -JAK3 CO_CONTROL JAK3 -JAK3 CO_CONTROL PTPN6 -JAK3 CO_CONTROL STAT6 -JAK3 IN_SAME_COMPONENT CD40 -JAK3 IN_SAME_COMPONENT CD40LG -JAK3 IN_SAME_COMPONENT DOK2 -JAK3 IN_SAME_COMPONENT FES -JAK3 IN_SAME_COMPONENT FYN -JAK3 IN_SAME_COMPONENT GAB2 -JAK3 IN_SAME_COMPONENT IL2 -JAK3 IN_SAME_COMPONENT IL2RA -JAK3 IN_SAME_COMPONENT IL2RB -JAK3 IN_SAME_COMPONENT IL2RG -JAK3 IN_SAME_COMPONENT IL4 -JAK3 IN_SAME_COMPONENT IL4R -JAK3 IN_SAME_COMPONENT INPP5D -JAK3 IN_SAME_COMPONENT IRS1 -JAK3 IN_SAME_COMPONENT IRS2 -JAK3 IN_SAME_COMPONENT JAK1 -JAK3 IN_SAME_COMPONENT LCK -JAK3 IN_SAME_COMPONENT PIK3CA -JAK3 IN_SAME_COMPONENT PIK3R1 -JAK3 IN_SAME_COMPONENT PTK2B -JAK3 IN_SAME_COMPONENT PTPN11 -JAK3 IN_SAME_COMPONENT PTPN6 -JAK3 IN_SAME_COMPONENT SHC1 -JAK3 IN_SAME_COMPONENT SOCS1 -JAK3 IN_SAME_COMPONENT SOS1 -JAK3 IN_SAME_COMPONENT SYK -JAK3 METABOLIC_CATALYSIS BCL2L1 -JAK3 METABOLIC_CATALYSIS CCND3 -JAK3 METABOLIC_CATALYSIS IRF4 -JAK3 METABOLIC_CATALYSIS MYC -JAK3 METABOLIC_CATALYSIS SOCS3 -JAK3 REACTS_WITH CD40 -JAK3 REACTS_WITH CD40LG -JAK3 REACTS_WITH DOK2 -JAK3 REACTS_WITH FES -JAK3 REACTS_WITH FYN -JAK3 REACTS_WITH GAB2 -JAK3 REACTS_WITH IL2 -JAK3 REACTS_WITH IL2RA -JAK3 REACTS_WITH IL2RB -JAK3 REACTS_WITH IL2RG -JAK3 REACTS_WITH IL4 -JAK3 REACTS_WITH IL4R -JAK3 REACTS_WITH INPP5D -JAK3 REACTS_WITH IRS1 -JAK3 REACTS_WITH IRS2 -JAK3 REACTS_WITH JAK1 -JAK3 REACTS_WITH JAK3 -JAK3 REACTS_WITH LCK -JAK3 REACTS_WITH PIK3CA -JAK3 REACTS_WITH PIK3R1 -JAK3 REACTS_WITH PTK2B -JAK3 REACTS_WITH PTPN11 -JAK3 REACTS_WITH PTPN6 -JAK3 REACTS_WITH SHC1 -JAK3 REACTS_WITH SOS1 -JAK3 REACTS_WITH SYK -JAK3 STATE_CHANGE AKT1 -JAK3 STATE_CHANGE CBL -JAK3 STATE_CHANGE DOK2 -JAK3 STATE_CHANGE ETS1 -JAK3 STATE_CHANGE IKZF3 -JAK3 STATE_CHANGE IL2 -JAK3 STATE_CHANGE IL2RA -JAK3 STATE_CHANGE IL2RB -JAK3 STATE_CHANGE IL2RG -JAK3 STATE_CHANGE JAK1 -JAK3 STATE_CHANGE JAK3 -JAK3 STATE_CHANGE LCK -JAK3 STATE_CHANGE MAPK14 -JAK3 STATE_CHANGE PIK3CA -JAK3 STATE_CHANGE PIK3R1 -JAK3 STATE_CHANGE PRKCB -JAK3 STATE_CHANGE PRKCE -JAK3 STATE_CHANGE PRKCZ -JAK3 STATE_CHANGE RHOA -JAK3 STATE_CHANGE SGMS1 -JAK3 STATE_CHANGE SMPD1 -JAK3 STATE_CHANGE SOCS3 -JAK3 STATE_CHANGE STAT1 -JAK3 STATE_CHANGE STAT3 -JAK3 STATE_CHANGE STAT5A -JAK3 STATE_CHANGE STAT6 -JAK3 STATE_CHANGE UGCG -JAM2 IN_SAME_COMPONENT ITGA4 -JAM2 IN_SAME_COMPONENT ITGB1 -JAM2 REACTS_WITH ITGA4 -JAM2 REACTS_WITH ITGAM -JAM2 REACTS_WITH ITGB1 -JAM2 REACTS_WITH ITGB2 -JAM2 REACTS_WITH JAM2 -JAM2 REACTS_WITH JAM3 -JAM3 IN_SAME_COMPONENT ITGAM -JAM3 IN_SAME_COMPONENT ITGB2 -JAM3 REACTS_WITH ITGAM -JAM3 REACTS_WITH ITGB2 -JAM3 REACTS_WITH JAM2 -JAM3 REACTS_WITH JAM3 -JDP2 CO_CONTROL ATF2 -JDP2 CO_CONTROL EP300 -JDP2 IN_SAME_COMPONENT ATF2 -JDP2 METABOLIC_CATALYSIS DDIT3 -JDP2 METABOLIC_CATALYSIS JUN -JDP2 REACTS_WITH ATF2 -JDP2 REACTS_WITH JDP2 -JMY CO_CONTROL POU4F1 -JMY CO_CONTROL SP1 -JMY CO_CONTROL TP53 -JMY METABOLIC_CATALYSIS BAX -JUB IN_SAME_COMPONENT AURKA -JUB REACTS_WITH AURKA -JUB REACTS_WITH JUB -JUNB CO_CONTROL ELF1 -JUNB CO_CONTROL FOSL1 -JUNB CO_CONTROL MAF -JUNB CO_CONTROL TXLNG -JUNB IN_SAME_COMPONENT ATF2 -JUNB IN_SAME_COMPONENT EP300 -JUNB IN_SAME_COMPONENT FOS -JUNB IN_SAME_COMPONENT FOSB -JUNB IN_SAME_COMPONENT FOSL1 -JUNB IN_SAME_COMPONENT FOSL2 -JUNB IN_SAME_COMPONENT JUN -JUNB IN_SAME_COMPONENT JUND -JUNB IN_SAME_COMPONENT NFATC2 -JUNB IN_SAME_COMPONENT SP1 -JUNB METABOLIC_CATALYSIS CBFB -JUNB METABOLIC_CATALYSIS CCNA2 -JUNB METABOLIC_CATALYSIS COL1A2 -JUNB METABOLIC_CATALYSIS CSF2 -JUNB METABOLIC_CATALYSIS DMP1 -JUNB METABOLIC_CATALYSIS DMTF1 -JUNB METABOLIC_CATALYSIS GJA1 -JUNB METABOLIC_CATALYSIS IL10 -JUNB METABOLIC_CATALYSIS IL2 -JUNB METABOLIC_CATALYSIS IL4 -JUNB METABOLIC_CATALYSIS IL6 -JUNB METABOLIC_CATALYSIS ITGB4 -JUNB METABOLIC_CATALYSIS IVL -JUNB METABOLIC_CATALYSIS MGP -JUNB METABOLIC_CATALYSIS MMP2 -JUNB METABOLIC_CATALYSIS MMP9 -JUNB METABOLIC_CATALYSIS NOS3 -JUNB REACTS_WITH ATF2 -JUNB REACTS_WITH EP300 -JUNB REACTS_WITH FOS -JUNB REACTS_WITH FOSB -JUNB REACTS_WITH FOSL1 -JUNB REACTS_WITH FOSL2 -JUNB REACTS_WITH JUN -JUNB REACTS_WITH JUNB -JUNB REACTS_WITH JUND -JUNB REACTS_WITH NFATC2 -JUNB REACTS_WITH SP1 -JUN CO_CONTROL AR -JUN CO_CONTROL ARNT -JUN CO_CONTROL ATF2 -JUN CO_CONTROL BATF3 -JUN CO_CONTROL CEBPB -JUN CO_CONTROL CREM -JUN CO_CONTROL EGR2 -JUN CO_CONTROL EGR3 -JUN CO_CONTROL ESR1 -JUN CO_CONTROL ETS1 -JUN CO_CONTROL FOS -JUN CO_CONTROL FOSL1 -JUN CO_CONTROL FOXA1 -JUN CO_CONTROL FOXP3 -JUN CO_CONTROL GATA2 -JUN CO_CONTROL GATA3 -JUN CO_CONTROL HDAC1 -JUN CO_CONTROL HIF1A -JUN CO_CONTROL IFNAR1 -JUN CO_CONTROL IFNAR2 -JUN CO_CONTROL JUN -JUN CO_CONTROL MAPK9 -JUN CO_CONTROL NFATC2 -JUN CO_CONTROL POU2F1 -JUN CO_CONTROL PPARG -JUN CO_CONTROL PRKCQ -JUN CO_CONTROL RNF128 -JUN CO_CONTROL SMAD4 -JUN CO_CONTROL SP1 -JUN CO_CONTROL STAT3 -JUN CO_CONTROL STAT4 -JUN CO_CONTROL TBX21 -JUN CO_CONTROL TP53 -JUN CO_CONTROL TRIP6 -JUN CO_CONTROL TXLNG -JUND CO_CONTROL HIF1A -JUND IN_SAME_COMPONENT ATF2 -JUND IN_SAME_COMPONENT EP300 -JUND IN_SAME_COMPONENT FOS -JUND IN_SAME_COMPONENT FOSB -JUND IN_SAME_COMPONENT FOSL1 -JUND IN_SAME_COMPONENT FOSL2 -JUND IN_SAME_COMPONENT H2AFY -JUND IN_SAME_COMPONENT JUN -JUND IN_SAME_COMPONENT JUNB -JUND IN_SAME_COMPONENT SP1 -JUND METABOLIC_CATALYSIS AGT -JUND METABOLIC_CATALYSIS CCNA2 -JUND METABOLIC_CATALYSIS CDK4 -JUND METABOLIC_CATALYSIS IL8 -JUND METABOLIC_CATALYSIS IVL -JUND METABOLIC_CATALYSIS LAMA3 -JUND METABOLIC_CATALYSIS MMP1 -JUND METABOLIC_CATALYSIS MYB -JUND METABOLIC_CATALYSIS MYC -JUND METABOLIC_CATALYSIS NPPA -JUND METABOLIC_CATALYSIS PENK -JUND METABOLIC_CATALYSIS PLAU -JUND METABOLIC_CATALYSIS TIMP1 -JUND REACTS_WITH ATF2 -JUND REACTS_WITH EP300 -JUND REACTS_WITH FOS -JUND REACTS_WITH FOSB -JUND REACTS_WITH FOSL1 -JUND REACTS_WITH FOSL2 -JUND REACTS_WITH H2AFY -JUND REACTS_WITH JUN -JUND REACTS_WITH JUNB -JUND REACTS_WITH JUND -JUND REACTS_WITH SP1 -JUN IN_SAME_COMPONENT ATF2 -JUN IN_SAME_COMPONENT ATF3 -JUN IN_SAME_COMPONENT BAG1 -JUN IN_SAME_COMPONENT BATF3 -JUN IN_SAME_COMPONENT COPS5 -JUN IN_SAME_COMPONENT CREB1 -JUN IN_SAME_COMPONENT CREBBP -JUN IN_SAME_COMPONENT CRTC1 -JUN IN_SAME_COMPONENT CTNNB1 -JUN IN_SAME_COMPONENT DVL3 -JUN IN_SAME_COMPONENT EP300 -JUN IN_SAME_COMPONENT ESR1 -JUN IN_SAME_COMPONENT FOS -JUN IN_SAME_COMPONENT FOSB -JUN IN_SAME_COMPONENT FOSL1 -JUN IN_SAME_COMPONENT FOSL2 -JUN IN_SAME_COMPONENT GATA2 -JUN IN_SAME_COMPONENT JUNB -JUN IN_SAME_COMPONENT JUND -JUN IN_SAME_COMPONENT NFATC2 -JUN IN_SAME_COMPONENT RB1 -JUN IN_SAME_COMPONENT SMAD4 -JUN IN_SAME_COMPONENT STAT4 -JUN IN_SAME_COMPONENT TCF7L2 -JUN IN_SAME_COMPONENT TRIP6 -JUN METABOLIC_CATALYSIS ACHE -JUN METABOLIC_CATALYSIS ACTA1 -JUN METABOLIC_CATALYSIS AFP -JUN METABOLIC_CATALYSIS ARG1 -JUN METABOLIC_CATALYSIS ATF3 -JUN METABOLIC_CATALYSIS BCL2L11 -JUN METABOLIC_CATALYSIS CCL2 -JUN METABOLIC_CATALYSIS CCNA2 -JUN METABOLIC_CATALYSIS CCND1 -JUN METABOLIC_CATALYSIS CD40LG -JUN METABOLIC_CATALYSIS CDK1 -JUN METABOLIC_CATALYSIS CDKN1B -JUN METABOLIC_CATALYSIS CHRNE -JUN METABOLIC_CATALYSIS COL1A2 -JUN METABOLIC_CATALYSIS COL24A1 -JUN METABOLIC_CATALYSIS CSF2 -JUN METABOLIC_CATALYSIS CYR61 -JUN METABOLIC_CATALYSIS DCN -JUN METABOLIC_CATALYSIS DMTF1 -JUN METABOLIC_CATALYSIS DUSP1 -JUN METABOLIC_CATALYSIS EDN1 -JUN METABOLIC_CATALYSIS EGR1 -JUN METABOLIC_CATALYSIS ESR1 -JUN METABOLIC_CATALYSIS ETS1 -JUN METABOLIC_CATALYSIS FABP4 -JUN METABOLIC_CATALYSIS FASLG -JUN METABOLIC_CATALYSIS FOS -JUN METABOLIC_CATALYSIS FOSL1 -JUN METABOLIC_CATALYSIS FOSL2 -JUN METABOLIC_CATALYSIS GJA1 -JUN METABOLIC_CATALYSIS HES1 -JUN METABOLIC_CATALYSIS HLA-A -JUN METABOLIC_CATALYSIS HRK -JUN METABOLIC_CATALYSIS IFNG -JUN METABOLIC_CATALYSIS IL10 -JUN METABOLIC_CATALYSIS IL13 -JUN METABOLIC_CATALYSIS IL2 -JUN METABOLIC_CATALYSIS IL23A -JUN METABOLIC_CATALYSIS IL2RA -JUN METABOLIC_CATALYSIS IL3 -JUN METABOLIC_CATALYSIS IL4 -JUN METABOLIC_CATALYSIS IL5 -JUN METABOLIC_CATALYSIS IL6 -JUN METABOLIC_CATALYSIS IL8 -JUN METABOLIC_CATALYSIS JUN -JUN METABOLIC_CATALYSIS KLK3 -JUN METABOLIC_CATALYSIS KRT17 -JUN METABOLIC_CATALYSIS KRT5 -JUN METABOLIC_CATALYSIS LBP -JUN METABOLIC_CATALYSIS LIF -JUN METABOLIC_CATALYSIS MGP -JUN METABOLIC_CATALYSIS MMP1 -JUN METABOLIC_CATALYSIS MMP2 -JUN METABOLIC_CATALYSIS MMP9 -JUN METABOLIC_CATALYSIS MSH2 -JUN METABOLIC_CATALYSIS MT2A -JUN METABOLIC_CATALYSIS MYB -JUN METABOLIC_CATALYSIS MYC -JUN METABOLIC_CATALYSIS NR3C1 -JUN METABOLIC_CATALYSIS NTS -JUN METABOLIC_CATALYSIS PENK -JUN METABOLIC_CATALYSIS PLAU -JUN METABOLIC_CATALYSIS PLAUR -JUN METABOLIC_CATALYSIS PTEN -JUN METABOLIC_CATALYSIS PTGS2 -JUN METABOLIC_CATALYSIS SELE -JUN METABOLIC_CATALYSIS SMAD7 -JUN METABOLIC_CATALYSIS TCF7L2 -JUN METABOLIC_CATALYSIS TERT -JUN METABOLIC_CATALYSIS TGFB1 -JUN METABOLIC_CATALYSIS TH -JUN METABOLIC_CATALYSIS THBD -JUN METABOLIC_CATALYSIS TIMP1 -JUN METABOLIC_CATALYSIS TP53 -JUN REACTS_WITH ATF2 -JUN REACTS_WITH ATF3 -JUN REACTS_WITH BAG1 -JUN REACTS_WITH BATF3 -JUN REACTS_WITH COPS5 -JUN REACTS_WITH CREB1 -JUN REACTS_WITH CREBBP -JUN REACTS_WITH CREM -JUN REACTS_WITH CRTC1 -JUN REACTS_WITH CTNNB1 -JUN REACTS_WITH DVL3 -JUN REACTS_WITH EP300 -JUN REACTS_WITH ESR1 -JUN REACTS_WITH FOS -JUN REACTS_WITH FOSB -JUN REACTS_WITH FOSL1 -JUN REACTS_WITH FOSL2 -JUN REACTS_WITH FOXP3 -JUN REACTS_WITH GATA2 -JUN REACTS_WITH JUN -JUN REACTS_WITH JUNB -JUN REACTS_WITH JUND -JUN REACTS_WITH NFATC2 -JUN REACTS_WITH PPARG -JUN REACTS_WITH RB1 -JUN REACTS_WITH SMAD4 -JUN REACTS_WITH STAT4 -JUN REACTS_WITH TCF7L2 -JUN REACTS_WITH TRIP6 -JUN STATE_CHANGE ELK1 -JUP IN_SAME_COMPONENT CDH1 -JUP IN_SAME_COMPONENT CTNNA1 -JUP IN_SAME_COMPONENT CTNND1 -JUP IN_SAME_COMPONENT DSP -JUP IN_SAME_COMPONENT ITGAE -JUP IN_SAME_COMPONENT ITGB7 -JUP REACTS_WITH CDH1 -JUP REACTS_WITH CTNNA1 -JUP REACTS_WITH CTNND1 -JUP REACTS_WITH DSP -JUP REACTS_WITH ITGAE -JUP REACTS_WITH ITGB7 -JUP REACTS_WITH JUP -KALRN IN_SAME_COMPONENT EPHB2 -KALRN REACTS_WITH EPHB2 -KALRN REACTS_WITH KALRN -KALRN STATE_CHANGE PAK1 -KALRN STATE_CHANGE RAC1 -KAT2A IN_SAME_COMPONENT E2F4 -KAT2A IN_SAME_COMPONENT MAX -KAT2A IN_SAME_COMPONENT MYC -KAT2A IN_SAME_COMPONENT SUPT3H -KAT2A IN_SAME_COMPONENT SUPT7L -KAT2A IN_SAME_COMPONENT TAF10 -KAT2A IN_SAME_COMPONENT TAF12 -KAT2A IN_SAME_COMPONENT TAF9 -KAT2A IN_SAME_COMPONENT TFDP2 -KAT2A IN_SAME_COMPONENT TRRAP -KAT2A METABOLIC_CATALYSIS CAD -KAT2A METABOLIC_CATALYSIS CCND2 -KAT2A METABOLIC_CATALYSIS CDK4 -KAT2A METABOLIC_CATALYSIS E2F1 -KAT2A METABOLIC_CATALYSIS HSPD1 -KAT2A METABOLIC_CATALYSIS MYC -KAT2A METABOLIC_CATALYSIS TERT -KAT2A REACTS_WITH KAT2A -KAT2A REACTS_WITH MAX -KAT2A REACTS_WITH MYC -KAT2A REACTS_WITH SUPT3H -KAT2A REACTS_WITH SUPT7L -KAT2A REACTS_WITH TAF10 -KAT2A REACTS_WITH TAF12 -KAT2A REACTS_WITH TAF9 -KAT2A REACTS_WITH TRRAP -KAT2B IN_SAME_COMPONENT E2F1 -KAT2B IN_SAME_COMPONENT MYOD1 -KAT2B IN_SAME_COMPONENT NCOA1 -KAT2B IN_SAME_COMPONENT NCOA2 -KAT2B IN_SAME_COMPONENT NCOA3 -KAT2B IN_SAME_COMPONENT SIRT1 -KAT2B METABOLIC_CATALYSIS TP73 -KAT2B REACTS_WITH E2F1 -KAT2B REACTS_WITH KAT2B -KAT2B REACTS_WITH MYOD1 -KAT2B REACTS_WITH NCOA1 -KAT2B REACTS_WITH NCOA2 -KAT2B REACTS_WITH NCOA3 -KAT2B REACTS_WITH SIRT1 -KAT2B STATE_CHANGE AR -KAT2B STATE_CHANGE FOXO3 -KAT2B STATE_CHANGE MDM2 -KAT2B STATE_CHANGE MYOD1 -KAT2B STATE_CHANGE NCOA2 -KAT2B STATE_CHANGE SMAD2 -KAT2B STATE_CHANGE SMAD4 -KAT2B STATE_CHANGE TP53 -KAT2B STATE_CHANGE YY1 -KAT5 CO_CONTROL HDAC1 -KAT5 CO_CONTROL MAX -KAT5 CO_CONTROL MDM2 -KAT5 CO_CONTROL MYC -KAT5 IN_SAME_COMPONENT ACTL6A -KAT5 IN_SAME_COMPONENT AR -KAT5 IN_SAME_COMPONENT MAX -KAT5 IN_SAME_COMPONENT MDM2 -KAT5 IN_SAME_COMPONENT MYC -KAT5 IN_SAME_COMPONENT RUVBL1 -KAT5 IN_SAME_COMPONENT RUVBL2 -KAT5 IN_SAME_COMPONENT TRRAP -KAT5 METABOLIC_CATALYSIS CAD -KAT5 METABOLIC_CATALYSIS GPAM -KAT5 METABOLIC_CATALYSIS HSPD1 -KAT5 METABOLIC_CATALYSIS KLK3 -KAT5 METABOLIC_CATALYSIS NCL -KAT5 METABOLIC_CATALYSIS NME1 -KAT5 METABOLIC_CATALYSIS PTMA -KAT5 REACTS_WITH ACTL6A -KAT5 REACTS_WITH AR -KAT5 REACTS_WITH KAT5 -KAT5 REACTS_WITH MAX -KAT5 REACTS_WITH MDM2 -KAT5 REACTS_WITH MYC -KAT5 REACTS_WITH RUVBL1 -KAT5 REACTS_WITH RUVBL2 -KAT5 REACTS_WITH TRRAP -KAT5 STATE_CHANGE ATM -KAT5 STATE_CHANGE TP53 -KATNA1 IN_SAME_COMPONENT DYNC1H1 -KATNA1 IN_SAME_COMPONENT DYNLT1 -KATNA1 IN_SAME_COMPONENT NDEL1 -KATNA1 IN_SAME_COMPONENT PAFAH1B1 -KATNA1 REACTS_WITH DYNC1H1 -KATNA1 REACTS_WITH DYNLT1 -KATNA1 REACTS_WITH KATNA1 -KATNA1 REACTS_WITH NDEL1 -KATNA1 REACTS_WITH PAFAH1B1 -KCNJ15 REACTS_WITH KCNJ15 -KDELR1 CO_CONTROL ARFGAP1 -KDELR1 CO_CONTROL ASAP1 -KDELR1 CO_CONTROL GGA3 -KDELR1 IN_SAME_COMPONENT ARFGAP1 -KDELR1 REACTS_WITH ARFGAP1 -KDELR1 REACTS_WITH KDELR1 -KDELR1 STATE_CHANGE CLTA -KDELR1 STATE_CHANGE CLTB -KDELR1 STATE_CHANGE COPA -KDM1A CO_CONTROL AR -KDM1A CO_CONTROL NOTCH1 -KDM1A CO_CONTROL RBPJ -KDM1A IN_SAME_COMPONENT CTBP1 -KDM1A IN_SAME_COMPONENT RBBP8 -KDM1A IN_SAME_COMPONENT RBPJ -KDM1A IN_SAME_COMPONENT SPEN -KDM1A METABOLIC_CATALYSIS HEY1 -KDM1A METABOLIC_CATALYSIS KLK3 -KDM1A REACTS_WITH CTBP1 -KDM1A REACTS_WITH KDM1A -KDM1A REACTS_WITH NOTCH1 -KDM1A REACTS_WITH RBBP8 -KDM1A REACTS_WITH RBPJ -KDM1A REACTS_WITH SPEN -KDM3A CO_CONTROL AR -KDM3A METABOLIC_CATALYSIS KLK3 -KDM3A METABOLIC_CATALYSIS NKX3-1 -KDM3A METABOLIC_CATALYSIS TMPRSS2 -KDM4C CO_CONTROL AR -KDM4C METABOLIC_CATALYSIS KLK2 -KDM4C METABOLIC_CATALYSIS KLK3 -KDR IN_SAME_COMPONENT CBL -KDR IN_SAME_COMPONENT CDH5 -KDR IN_SAME_COMPONENT CTNNA1 -KDR IN_SAME_COMPONENT CTNNB1 -KDR IN_SAME_COMPONENT DNM2 -KDR IN_SAME_COMPONENT FLT1 -KDR IN_SAME_COMPONENT FYN -KDR IN_SAME_COMPONENT HSP90AA1 -KDR IN_SAME_COMPONENT IQGAP1 -KDR IN_SAME_COMPONENT ITGAV -KDR IN_SAME_COMPONENT ITGB3 -KDR IN_SAME_COMPONENT MYOF -KDR IN_SAME_COMPONENT PAK2 -KDR IN_SAME_COMPONENT RHOA -KDR IN_SAME_COMPONENT ROCK1 -KDR IN_SAME_COMPONENT SH2D2A -KDR IN_SAME_COMPONENT SHB -KDR IN_SAME_COMPONENT SRC -KDR IN_SAME_COMPONENT VEGFA -KDR IN_SAME_COMPONENT VTN -KDR METABOLIC_CATALYSIS S1PR1 -KDR REACTS_WITH CBL -KDR REACTS_WITH CDH5 -KDR REACTS_WITH CTNNA1 -KDR REACTS_WITH CTNNB1 -KDR REACTS_WITH DNM2 -KDR REACTS_WITH FYN -KDR REACTS_WITH HSP90AA1 -KDR REACTS_WITH IQGAP1 -KDR REACTS_WITH ITGAV -KDR REACTS_WITH ITGB3 -KDR REACTS_WITH KDR -KDR REACTS_WITH MYOF -KDR REACTS_WITH PAK2 -KDR REACTS_WITH PRKACA -KDR REACTS_WITH RHOA -KDR REACTS_WITH ROCK1 -KDR REACTS_WITH SH2D2A -KDR REACTS_WITH SHB -KDR REACTS_WITH SRC -KDR REACTS_WITH VEGFA -KDR REACTS_WITH VTN -KDR STATE_CHANGE CBL -KDR STATE_CHANGE CDC42 -KDR STATE_CHANGE FES -KDR STATE_CHANGE GAB1 -KDR STATE_CHANGE IQGAP1 -KDR STATE_CHANGE KDR -KDR STATE_CHANGE NOS3 -KDR STATE_CHANGE PLCG1 -KDR STATE_CHANGE PRKACA -KDR STATE_CHANGE PTK2B -KDR STATE_CHANGE PTPN11 -KDR STATE_CHANGE PTPRJ -KDR STATE_CHANGE RHOA -KDR STATE_CHANGE SRC -KDR STATE_CHANGE VEGFA -KIF13B CO_CONTROL ADAP1 -KIF13B IN_SAME_COMPONENT ADAP1 -KIF13B REACTS_WITH ADAP1 -KIF13B REACTS_WITH KIF13B -KIF20A IN_SAME_COMPONENT PLK1 -KIF20A REACTS_WITH KIF20A -KIF20A REACTS_WITH PLK1 -KIF20A STATE_CHANGE AURKB -KIF20A STATE_CHANGE BIRC5 -KIF20A STATE_CHANGE CDCA8 -KIF20A STATE_CHANGE INCENP -KIF20A STATE_CHANGE PLK1 -KIF23 IN_SAME_COMPONENT RACGAP1 -KIF23 REACTS_WITH KIF23 -KIF23 REACTS_WITH RACGAP1 -KIF23 STATE_CHANGE RHOA -KIF3A METABOLIC_CATALYSIS GLI2 -KIF3A STATE_CHANGE GLI3 -KIF5B STATE_CHANGE CDH2 -KIF5B STATE_CHANGE CTNNA1 -KIF5B STATE_CHANGE CTNND1 -KIRREL IN_SAME_COMPONENT ARRB2 -KIRREL IN_SAME_COMPONENT CD2AP -KIRREL IN_SAME_COMPONENT F2RL2 -KIRREL IN_SAME_COMPONENT NPHS1 -KIRREL IN_SAME_COMPONENT NPHS2 -KIRREL IN_SAME_COMPONENT PARD6A -KIRREL IN_SAME_COMPONENT PLCG1 -KIRREL IN_SAME_COMPONENT TJP1 -KIRREL IN_SAME_COMPONENT WASL -KIRREL REACTS_WITH ARRB2 -KIRREL REACTS_WITH CD2AP -KIRREL REACTS_WITH F2RL2 -KIRREL REACTS_WITH KIRREL -KIRREL REACTS_WITH NPHS1 -KIRREL REACTS_WITH NPHS2 -KIRREL REACTS_WITH PARD6A -KIRREL REACTS_WITH PLCG1 -KIRREL REACTS_WITH TJP1 -KIRREL REACTS_WITH WASL -KIRREL STATE_CHANGE FYN -KIRREL STATE_CHANGE TRPC6 -KIT IN_SAME_COMPONENT EPO -KIT IN_SAME_COMPONENT EPOR -KIT IN_SAME_COMPONENT KITLG -KIT INTERACTS_WITH CBL -KIT INTERACTS_WITH CRKL -KITLG IN_SAME_COMPONENT EPO -KITLG IN_SAME_COMPONENT EPOR -KITLG IN_SAME_COMPONENT KIT -KITLG INTERACTS_WITH CBL -KITLG INTERACTS_WITH CRKL -KITLG REACTS_WITH EPO -KITLG REACTS_WITH EPOR -KITLG REACTS_WITH KIT -KITLG REACTS_WITH KITLG -KITLG STATE_CHANGE DOK1 -KITLG STATE_CHANGE FER -KITLG STATE_CHANGE GAB1 -KITLG STATE_CHANGE GRB10 -KITLG STATE_CHANGE JAK2 -KITLG STATE_CHANGE LYN -KITLG STATE_CHANGE MAPK8 -KITLG STATE_CHANGE MATK -KITLG STATE_CHANGE PIK3C2B -KITLG STATE_CHANGE PTPRO -KITLG STATE_CHANGE RPS6KB1 -KITLG STATE_CHANGE SH2B2 -KITLG STATE_CHANGE SH2B3 -KITLG STATE_CHANGE SNAI2 -KITLG STATE_CHANGE SOCS1 -KITLG STATE_CHANGE STAP1 -KITLG STATE_CHANGE STAT3 -KITLG STATE_CHANGE TEC -KITLG STATE_CHANGE VAV1 -KIT REACTS_WITH EPO -KIT REACTS_WITH EPOR -KIT REACTS_WITH KIT -KIT REACTS_WITH KITLG -KIT STATE_CHANGE DOK1 -KIT STATE_CHANGE FER -KIT STATE_CHANGE GAB1 -KIT STATE_CHANGE GRB10 -KIT STATE_CHANGE JAK2 -KIT STATE_CHANGE LYN -KIT STATE_CHANGE MAPK8 -KIT STATE_CHANGE MATK -KIT STATE_CHANGE PIK3C2B -KIT STATE_CHANGE PTPRO -KIT STATE_CHANGE RPS6KB1 -KIT STATE_CHANGE SH2B2 -KIT STATE_CHANGE SH2B3 -KIT STATE_CHANGE SNAI2 -KIT STATE_CHANGE SOCS1 -KIT STATE_CHANGE STAP1 -KIT STATE_CHANGE STAT3 -KIT STATE_CHANGE TEC -KIT STATE_CHANGE VAV1 -KLB IN_SAME_COMPONENT FGF19 -KLB IN_SAME_COMPONENT FGF23 -KLB IN_SAME_COMPONENT FGFR4 -KLB REACTS_WITH FGF19 -KLB REACTS_WITH FGF23 -KLB REACTS_WITH FGFR4 -KLB REACTS_WITH KLB -KLC1 REACTS_WITH SPAG9 -KLF4 IN_SAME_COMPONENT CTNNB1 -KLF4 IN_SAME_COMPONENT TCF7L2 -KLF4 REACTS_WITH CTNNB1 -KLF4 REACTS_WITH KLF4 -KLF4 REACTS_WITH TCF7L2 -KLF4 STATE_CHANGE CTNNB1 -KLF4 STATE_CHANGE EP300 -KLF4 STATE_CHANGE TCF7L2 -KLF8 METABOLIC_CATALYSIS CCND1 -KLHL12 IN_SAME_COMPONENT CUL3 -KLHL12 REACTS_WITH CUL3 -KLHL12 REACTS_WITH KLHL12 -KLHL13 IN_SAME_COMPONENT AURKB -KLHL13 IN_SAME_COMPONENT BIRC5 -KLHL13 IN_SAME_COMPONENT CDCA8 -KLHL13 IN_SAME_COMPONENT CUL3 -KLHL13 IN_SAME_COMPONENT INCENP -KLHL13 IN_SAME_COMPONENT KLHL9 -KLHL13 REACTS_WITH AURKB -KLHL13 REACTS_WITH BIRC5 -KLHL13 REACTS_WITH CDCA8 -KLHL13 REACTS_WITH CUL3 -KLHL13 REACTS_WITH INCENP -KLHL13 REACTS_WITH KLHL13 -KLHL13 REACTS_WITH KLHL9 -KLHL13 REACTS_WITH PSMA3 -KLHL9 IN_SAME_COMPONENT AURKB -KLHL9 IN_SAME_COMPONENT BIRC5 -KLHL9 IN_SAME_COMPONENT CDCA8 -KLHL9 IN_SAME_COMPONENT CUL3 -KLHL9 IN_SAME_COMPONENT INCENP -KLHL9 IN_SAME_COMPONENT KLHL13 -KLHL9 REACTS_WITH AURKB -KLHL9 REACTS_WITH BIRC5 -KLHL9 REACTS_WITH CDCA8 -KLHL9 REACTS_WITH CUL3 -KLHL9 REACTS_WITH INCENP -KLHL9 REACTS_WITH KLHL13 -KLHL9 REACTS_WITH KLHL9 -KLHL9 REACTS_WITH PSMA3 -KLK4 STATE_CHANGE PLAUR -KLK6 STATE_CHANGE SNCA -KLRG1 IN_SAME_COMPONENT INPP5D -KLRG1 IN_SAME_COMPONENT PTPN11 -KLRG1 REACTS_WITH INPP5D -KLRG1 REACTS_WITH KLRG1 -KLRG1 REACTS_WITH PTPN11 -KLRG1 STATE_CHANGE FCER1A -KLRG1 STATE_CHANGE FCER1G -KLRG1 STATE_CHANGE IGHE -KLRG1 STATE_CHANGE LYN -KLRG1 STATE_CHANGE MS4A2 -KLRG1 STATE_CHANGE SYK -KNG1 IN_SAME_COMPONENT ITGAM -KNG1 IN_SAME_COMPONENT ITGB2 -KNG1 IN_SAME_COMPONENT SDC2 -KNG1 REACTS_WITH ITGAM -KNG1 REACTS_WITH ITGB2 -KNG1 REACTS_WITH KNG1 -KNG1 REACTS_WITH SDC2 -KPNA1 IN_SAME_COMPONENT CDKN1B -KPNA1 REACTS_WITH CDKN1B -KPNA1 REACTS_WITH KPNA1 -KPNA2 CO_CONTROL KPNB1 -KPNA2 CO_CONTROL NUP153 -KPNA2 CO_CONTROL NUP214 -KPNA2 IN_SAME_COMPONENT KPNB1 -KPNA2 STATE_CHANGE NFATC1 -KPNA2 STATE_CHANGE SMAD2 -KPNA2 STATE_CHANGE SMAD4 -KPNB1 CO_CONTROL GAB1 -KPNB1 CO_CONTROL KPNA2 -KPNB1 IN_SAME_COMPONENT KPNA2 -KPNB1 STATE_CHANGE HGF -KPNB1 STATE_CHANGE MET -KPNB1 STATE_CHANGE NFATC1 -KPNB1 STATE_CHANGE SMAD4 -KREMEN2 IN_SAME_COMPONENT DKK1 -KREMEN2 IN_SAME_COMPONENT DKK2 -KREMEN2 IN_SAME_COMPONENT LRP6 -KREMEN2 INTERACTS_WITH DKK1 -KREMEN2 INTERACTS_WITH DKK2 -KREMEN2 INTERACTS_WITH KREMEN2 -KREMEN2 INTERACTS_WITH LRP6 -KREMEN2 REACTS_WITH DKK1 -KREMEN2 REACTS_WITH DKK2 -KREMEN2 REACTS_WITH KREMEN2 -KREMEN2 REACTS_WITH LRP6 -KSR1 CO_CONTROL MAP2K1 -KSR1 CO_CONTROL MAP2K2 -KSR1 CO_CONTROL PPP2CA -KSR1 CO_CONTROL PPP2R1A -KSR1 CO_CONTROL PPP2R2B -KSR1 CO_CONTROL RAF1 -KSR1 CO_CONTROL YWHAZ -KSR1 REACTS_WITH KSR1 -KSR1 STATE_CHANGE MAP2K1 -KSR1 STATE_CHANGE MAP2K2 -KSR1 STATE_CHANGE RAF1 -L1CAM IN_SAME_COMPONENT ITGAV -L1CAM IN_SAME_COMPONENT ITGB3 -L1CAM REACTS_WITH ITGAV -L1CAM REACTS_WITH ITGB3 -L1CAM REACTS_WITH L1CAM -LAMA1 IN_SAME_COMPONENT GPC1 -LAMA1 IN_SAME_COMPONENT ITGA1 -LAMA1 IN_SAME_COMPONENT ITGA2 -LAMA1 IN_SAME_COMPONENT ITGA3 -LAMA1 IN_SAME_COMPONENT ITGA6 -LAMA1 IN_SAME_COMPONENT ITGB1 -LAMA1 IN_SAME_COMPONENT ITGB4 -LAMA1 IN_SAME_COMPONENT LAMB1 -LAMA1 IN_SAME_COMPONENT LAMC1 -LAMA1 IN_SAME_COMPONENT SDC2 -LAMA1 IN_SAME_COMPONENT SDC4 -LAMA1 REACTS_WITH GPC1 -LAMA1 REACTS_WITH ITGA1 -LAMA1 REACTS_WITH ITGA2 -LAMA1 REACTS_WITH ITGA3 -LAMA1 REACTS_WITH ITGA6 -LAMA1 REACTS_WITH ITGB1 -LAMA1 REACTS_WITH ITGB4 -LAMA1 REACTS_WITH LAMA1 -LAMA1 REACTS_WITH LAMB1 -LAMA1 REACTS_WITH LAMC1 -LAMA1 REACTS_WITH SDC2 -LAMA1 REACTS_WITH SDC4 -LAMA2 IN_SAME_COMPONENT ITGA1 -LAMA2 IN_SAME_COMPONENT ITGA2 -LAMA2 IN_SAME_COMPONENT ITGA3 -LAMA2 IN_SAME_COMPONENT ITGA6 -LAMA2 IN_SAME_COMPONENT ITGB1 -LAMA2 IN_SAME_COMPONENT ITGB4 -LAMA2 IN_SAME_COMPONENT LAMB1 -LAMA2 IN_SAME_COMPONENT LAMB2 -LAMA2 IN_SAME_COMPONENT LAMC1 -LAMA2 REACTS_WITH ITGA1 -LAMA2 REACTS_WITH ITGA2 -LAMA2 REACTS_WITH ITGA3 -LAMA2 REACTS_WITH ITGA6 -LAMA2 REACTS_WITH ITGB1 -LAMA2 REACTS_WITH ITGB4 -LAMA2 REACTS_WITH LAMA2 -LAMA2 REACTS_WITH LAMB1 -LAMA2 REACTS_WITH LAMB2 -LAMA2 REACTS_WITH LAMC1 -LAMA3 IN_SAME_COMPONENT ITGA2 -LAMA3 IN_SAME_COMPONENT ITGA3 -LAMA3 IN_SAME_COMPONENT ITGA6 -LAMA3 IN_SAME_COMPONENT ITGB1 -LAMA3 IN_SAME_COMPONENT ITGB4 -LAMA3 IN_SAME_COMPONENT LAMB1 -LAMA3 IN_SAME_COMPONENT LAMB3 -LAMA3 IN_SAME_COMPONENT LAMC1 -LAMA3 IN_SAME_COMPONENT LAMC2 -LAMA3 IN_SAME_COMPONENT SDC2 -LAMA3 IN_SAME_COMPONENT SDC4 -LAMA3 REACTS_WITH ITGA2 -LAMA3 REACTS_WITH ITGA3 -LAMA3 REACTS_WITH ITGA6 -LAMA3 REACTS_WITH ITGB1 -LAMA3 REACTS_WITH ITGB4 -LAMA3 REACTS_WITH LAMA3 -LAMA3 REACTS_WITH LAMB1 -LAMA3 REACTS_WITH LAMB3 -LAMA3 REACTS_WITH LAMC1 -LAMA3 REACTS_WITH LAMC2 -LAMA3 REACTS_WITH SDC2 -LAMA3 REACTS_WITH SDC4 -LAMA4 IN_SAME_COMPONENT ITGA3 -LAMA4 IN_SAME_COMPONENT ITGA6 -LAMA4 IN_SAME_COMPONENT ITGAV -LAMA4 IN_SAME_COMPONENT ITGB1 -LAMA4 IN_SAME_COMPONENT ITGB3 -LAMA4 IN_SAME_COMPONENT LAMB1 -LAMA4 IN_SAME_COMPONENT LAMC1 -LAMA4 REACTS_WITH ITGA3 -LAMA4 REACTS_WITH ITGA6 -LAMA4 REACTS_WITH ITGAV -LAMA4 REACTS_WITH ITGB1 -LAMA4 REACTS_WITH ITGB3 -LAMA4 REACTS_WITH LAMA4 -LAMA4 REACTS_WITH LAMB1 -LAMA4 REACTS_WITH LAMC1 -LAMA5 IN_SAME_COMPONENT ITGA3 -LAMA5 IN_SAME_COMPONENT ITGA6 -LAMA5 IN_SAME_COMPONENT ITGB1 -LAMA5 IN_SAME_COMPONENT ITGB4 -LAMA5 IN_SAME_COMPONENT LAMB1 -LAMA5 IN_SAME_COMPONENT LAMB2 -LAMA5 IN_SAME_COMPONENT LAMC1 -LAMA5 IN_SAME_COMPONENT SDC1 -LAMA5 REACTS_WITH ITGA3 -LAMA5 REACTS_WITH ITGA6 -LAMA5 REACTS_WITH ITGB1 -LAMA5 REACTS_WITH ITGB4 -LAMA5 REACTS_WITH LAMA5 -LAMA5 REACTS_WITH LAMB1 -LAMA5 REACTS_WITH LAMB2 -LAMA5 REACTS_WITH LAMC1 -LAMA5 REACTS_WITH SDC1 -LAMB1 IN_SAME_COMPONENT ITGA1 -LAMB1 IN_SAME_COMPONENT ITGA2 -LAMB1 IN_SAME_COMPONENT ITGA3 -LAMB1 IN_SAME_COMPONENT ITGA6 -LAMB1 IN_SAME_COMPONENT ITGAV -LAMB1 IN_SAME_COMPONENT ITGB1 -LAMB1 IN_SAME_COMPONENT ITGB3 -LAMB1 IN_SAME_COMPONENT ITGB4 -LAMB1 IN_SAME_COMPONENT LAMA1 -LAMB1 IN_SAME_COMPONENT LAMA2 -LAMB1 IN_SAME_COMPONENT LAMA3 -LAMB1 IN_SAME_COMPONENT LAMA4 -LAMB1 IN_SAME_COMPONENT LAMA5 -LAMB1 IN_SAME_COMPONENT LAMC1 -LAMB1 REACTS_WITH ITGA1 -LAMB1 REACTS_WITH ITGA2 -LAMB1 REACTS_WITH ITGA3 -LAMB1 REACTS_WITH ITGA6 -LAMB1 REACTS_WITH ITGAV -LAMB1 REACTS_WITH ITGB1 -LAMB1 REACTS_WITH ITGB3 -LAMB1 REACTS_WITH ITGB4 -LAMB1 REACTS_WITH LAMA1 -LAMB1 REACTS_WITH LAMA2 -LAMB1 REACTS_WITH LAMA3 -LAMB1 REACTS_WITH LAMA4 -LAMB1 REACTS_WITH LAMA5 -LAMB1 REACTS_WITH LAMB1 -LAMB1 REACTS_WITH LAMC1 -LAMB2 IN_SAME_COMPONENT ITGA3 -LAMB2 IN_SAME_COMPONENT ITGA6 -LAMB2 IN_SAME_COMPONENT ITGB1 -LAMB2 IN_SAME_COMPONENT ITGB4 -LAMB2 IN_SAME_COMPONENT LAMA2 -LAMB2 IN_SAME_COMPONENT LAMA5 -LAMB2 IN_SAME_COMPONENT LAMC1 -LAMB2 REACTS_WITH ITGA3 -LAMB2 REACTS_WITH ITGA6 -LAMB2 REACTS_WITH ITGB1 -LAMB2 REACTS_WITH ITGB4 -LAMB2 REACTS_WITH LAMA2 -LAMB2 REACTS_WITH LAMA5 -LAMB2 REACTS_WITH LAMB2 -LAMB2 REACTS_WITH LAMC1 -LAMB3 IN_SAME_COMPONENT ITGA2 -LAMB3 IN_SAME_COMPONENT ITGA3 -LAMB3 IN_SAME_COMPONENT ITGA6 -LAMB3 IN_SAME_COMPONENT ITGB1 -LAMB3 IN_SAME_COMPONENT ITGB4 -LAMB3 IN_SAME_COMPONENT LAMA3 -LAMB3 IN_SAME_COMPONENT LAMC2 -LAMB3 REACTS_WITH ITGA2 -LAMB3 REACTS_WITH ITGA3 -LAMB3 REACTS_WITH ITGA6 -LAMB3 REACTS_WITH ITGB1 -LAMB3 REACTS_WITH ITGB4 -LAMB3 REACTS_WITH LAMA3 -LAMB3 REACTS_WITH LAMB3 -LAMB3 REACTS_WITH LAMC2 -LAMC1 IN_SAME_COMPONENT ITGA1 -LAMC1 IN_SAME_COMPONENT ITGA2 -LAMC1 IN_SAME_COMPONENT ITGA3 -LAMC1 IN_SAME_COMPONENT ITGA6 -LAMC1 IN_SAME_COMPONENT ITGAV -LAMC1 IN_SAME_COMPONENT ITGB1 -LAMC1 IN_SAME_COMPONENT ITGB3 -LAMC1 IN_SAME_COMPONENT ITGB4 -LAMC1 IN_SAME_COMPONENT LAMA1 -LAMC1 IN_SAME_COMPONENT LAMA2 -LAMC1 IN_SAME_COMPONENT LAMA3 -LAMC1 IN_SAME_COMPONENT LAMA4 -LAMC1 IN_SAME_COMPONENT LAMA5 -LAMC1 IN_SAME_COMPONENT LAMB1 -LAMC1 IN_SAME_COMPONENT LAMB2 -LAMC1 REACTS_WITH ITGA1 -LAMC1 REACTS_WITH ITGA2 -LAMC1 REACTS_WITH ITGA3 -LAMC1 REACTS_WITH ITGA6 -LAMC1 REACTS_WITH ITGAV -LAMC1 REACTS_WITH ITGB1 -LAMC1 REACTS_WITH ITGB3 -LAMC1 REACTS_WITH ITGB4 -LAMC1 REACTS_WITH LAMA1 -LAMC1 REACTS_WITH LAMA2 -LAMC1 REACTS_WITH LAMA3 -LAMC1 REACTS_WITH LAMA4 -LAMC1 REACTS_WITH LAMA5 -LAMC1 REACTS_WITH LAMB1 -LAMC1 REACTS_WITH LAMB2 -LAMC1 REACTS_WITH LAMC1 -LAMC2 IN_SAME_COMPONENT ITGA2 -LAMC2 IN_SAME_COMPONENT ITGA3 -LAMC2 IN_SAME_COMPONENT ITGA6 -LAMC2 IN_SAME_COMPONENT ITGB1 -LAMC2 IN_SAME_COMPONENT ITGB4 -LAMC2 IN_SAME_COMPONENT LAMA3 -LAMC2 IN_SAME_COMPONENT LAMB3 -LAMC2 REACTS_WITH ITGA2 -LAMC2 REACTS_WITH ITGA3 -LAMC2 REACTS_WITH ITGA6 -LAMC2 REACTS_WITH ITGB1 -LAMC2 REACTS_WITH ITGB4 -LAMC2 REACTS_WITH LAMA3 -LAMC2 REACTS_WITH LAMB3 -LAMC2 REACTS_WITH LAMC2 -LAT2 IN_SAME_COMPONENT LCP2 -LAT2 IN_SAME_COMPONENT PLCG1 -LAT2 REACTS_WITH LAT -LAT2 REACTS_WITH LAT2 -LAT2 REACTS_WITH LCP2 -LAT2 REACTS_WITH PLCG1 -LAT2 STATE_CHANGE PLCG1 -LAT IN_SAME_COMPONENT LCP2 -LAT IN_SAME_COMPONENT PLCG1 -LAT REACTS_WITH LAT -LAT REACTS_WITH LAT2 -LAT REACTS_WITH LCP2 -LAT REACTS_WITH PLCG1 -LATS2 CO_CONTROL AR -LATS2 METABOLIC_CATALYSIS KLK3 -LCK CO_CONTROL CD28 -LCK CO_CONTROL FYN -LCK CO_CONTROL ITK -LCK CO_CONTROL PTPN11 -LCK IN_SAME_COMPONENT B2M -LCK IN_SAME_COMPONENT CBL -LCK IN_SAME_COMPONENT CD247 -LCK IN_SAME_COMPONENT CD3D -LCK IN_SAME_COMPONENT CD3E -LCK IN_SAME_COMPONENT CD3G -LCK IN_SAME_COMPONENT CD4 -LCK IN_SAME_COMPONENT CD8A -LCK IN_SAME_COMPONENT CD8B -LCK IN_SAME_COMPONENT CISH -LCK IN_SAME_COMPONENT GAB2 -LCK IN_SAME_COMPONENT HLA-A -LCK IN_SAME_COMPONENT HLA-DRA -LCK IN_SAME_COMPONENT HLA-DRB1 -LCK IN_SAME_COMPONENT IL2 -LCK IN_SAME_COMPONENT IL2RA -LCK IN_SAME_COMPONENT IL2RB -LCK IN_SAME_COMPONENT IL2RG -LCK IN_SAME_COMPONENT JAK1 -LCK IN_SAME_COMPONENT JAK3 -LCK IN_SAME_COMPONENT PIK3CA -LCK IN_SAME_COMPONENT PIK3R1 -LCK IN_SAME_COMPONENT PTK2B -LCK IN_SAME_COMPONENT PTPN11 -LCK IN_SAME_COMPONENT SH3BP2 -LCK IN_SAME_COMPONENT SHC1 -LCK IN_SAME_COMPONENT SLA2 -LCK IN_SAME_COMPONENT SOCS1 -LCK IN_SAME_COMPONENT SOCS2 -LCK IN_SAME_COMPONENT SOCS3 -LCK IN_SAME_COMPONENT SOS1 -LCK IN_SAME_COMPONENT SYK -LCK IN_SAME_COMPONENT ZAP70 -LCK METABOLIC_CATALYSIS BCL2L1 -LCK METABOLIC_CATALYSIS CCND3 -LCK METABOLIC_CATALYSIS LAT -LCK METABOLIC_CATALYSIS MYC -LCK METABOLIC_CATALYSIS SOCS3 -LCK REACTS_WITH B2M -LCK REACTS_WITH CBL -LCK REACTS_WITH CD247 -LCK REACTS_WITH CD3D -LCK REACTS_WITH CD3E -LCK REACTS_WITH CD3G -LCK REACTS_WITH CD4 -LCK REACTS_WITH CD8A -LCK REACTS_WITH CD8B -LCK REACTS_WITH GAB2 -LCK REACTS_WITH HLA-A -LCK REACTS_WITH HLA-DRA -LCK REACTS_WITH HLA-DRB1 -LCK REACTS_WITH IL2 -LCK REACTS_WITH IL2RA -LCK REACTS_WITH IL2RB -LCK REACTS_WITH IL2RG -LCK REACTS_WITH JAK1 -LCK REACTS_WITH JAK3 -LCK REACTS_WITH LCK -LCK REACTS_WITH PIK3CA -LCK REACTS_WITH PIK3R1 -LCK REACTS_WITH PTK2B -LCK REACTS_WITH PTPN11 -LCK REACTS_WITH SH3BP2 -LCK REACTS_WITH SHC1 -LCK REACTS_WITH SLA2 -LCK REACTS_WITH SOCS2 -LCK REACTS_WITH SOCS3 -LCK REACTS_WITH SOS1 -LCK REACTS_WITH SYK -LCK REACTS_WITH ZAP70 -LCK STATE_CHANGE AKT1 -LCK STATE_CHANGE CBL -LCK STATE_CHANGE CD28 -LCK STATE_CHANGE CSK -LCK STATE_CHANGE DBNL -LCK STATE_CHANGE DOK2 -LCK STATE_CHANGE GRAP2 -LCK STATE_CHANGE IKZF3 -LCK STATE_CHANGE IL2 -LCK STATE_CHANGE IL2RA -LCK STATE_CHANGE IL2RB -LCK STATE_CHANGE IL2RG -LCK STATE_CHANGE ITK -LCK STATE_CHANGE JAK1 -LCK STATE_CHANGE JAK3 -LCK STATE_CHANGE LCK -LCK STATE_CHANGE LCP2 -LCK STATE_CHANGE MAP4K1 -LCK STATE_CHANGE NFKB1 -LCK STATE_CHANGE NFKBIA -LCK STATE_CHANGE PAG1 -LCK STATE_CHANGE PRKCB -LCK STATE_CHANGE PRKCE -LCK STATE_CHANGE PRKCQ -LCK STATE_CHANGE PRKCZ -LCK STATE_CHANGE PTPN6 -LCK STATE_CHANGE RELA -LCK STATE_CHANGE RHOA -LCK STATE_CHANGE SGMS1 -LCK STATE_CHANGE SHC1 -LCK STATE_CHANGE SMPD1 -LCK STATE_CHANGE SOCS3 -LCK STATE_CHANGE STAT1 -LCK STATE_CHANGE STAT3 -LCK STATE_CHANGE UGCG -LCK STATE_CHANGE VAV1 -LCP2 CO_CONTROL GRAP2 -LCP2 CO_CONTROL ITK -LCP2 CO_CONTROL LCP2 -LCP2 CO_CONTROL PLCG1 -LCP2 CO_CONTROL VAV1 -LCP2 IN_SAME_COMPONENT DBNL -LCP2 IN_SAME_COMPONENT FYB -LCP2 IN_SAME_COMPONENT GRAP2 -LCP2 IN_SAME_COMPONENT ITK -LCP2 IN_SAME_COMPONENT LAT -LCP2 IN_SAME_COMPONENT LAT2 -LCP2 IN_SAME_COMPONENT MAP4K1 -LCP2 IN_SAME_COMPONENT NCK1 -LCP2 IN_SAME_COMPONENT PLCG1 -LCP2 IN_SAME_COMPONENT VAV1 -LCP2 REACTS_WITH CBL -LCP2 REACTS_WITH DBNL -LCP2 REACTS_WITH FYB -LCP2 REACTS_WITH GRAP2 -LCP2 REACTS_WITH ITK -LCP2 REACTS_WITH LAT -LCP2 REACTS_WITH LAT2 -LCP2 REACTS_WITH LCP2 -LCP2 REACTS_WITH MAP4K1 -LCP2 REACTS_WITH NCK1 -LCP2 REACTS_WITH PLCG1 -LCP2 REACTS_WITH VAV1 -LCP2 STATE_CHANGE CDC42 -LCP2 STATE_CHANGE MAP3K1 -LCP2 STATE_CHANGE MAP3K7 -LCP2 STATE_CHANGE PLCG1 -LCP2 STATE_CHANGE PRKCQ -LCP2 STATE_CHANGE WAS -LEF1 IN_SAME_COMPONENT AES -LEF1 IN_SAME_COMPONENT CDX1 -LEF1 IN_SAME_COMPONENT CTNNB1 -LEF1 IN_SAME_COMPONENT HDAC1 -LEF1 IN_SAME_COMPONENT MYB -LEF1 IN_SAME_COMPONENT PITX2 -LEF1 IN_SAME_COMPONENT TLE1 -LEF1 IN_SAME_COMPONENT TLE2 -LEF1 METABOLIC_CATALYSIS CACNA1G -LEF1 METABOLIC_CATALYSIS CCND1 -LEF1 METABOLIC_CATALYSIS CDH1 -LEF1 METABOLIC_CATALYSIS CDX1 -LEF1 METABOLIC_CATALYSIS CDX4 -LEF1 METABOLIC_CATALYSIS DKK4 -LEF1 METABOLIC_CATALYSIS FGF4 -LEF1 METABOLIC_CATALYSIS KCNIP4 -LEF1 METABOLIC_CATALYSIS KRT1 -LEF1 METABOLIC_CATALYSIS LEF1 -LEF1 METABOLIC_CATALYSIS MITF -LEF1 METABOLIC_CATALYSIS MMP2 -LEF1 METABOLIC_CATALYSIS MMP9 -LEF1 METABOLIC_CATALYSIS MT-CO2 -LEF1 METABOLIC_CATALYSIS PITX2 -LEF1 METABOLIC_CATALYSIS RAG2 -LEF1 METABOLIC_CATALYSIS SALL4 -LEF1 METABOLIC_CATALYSIS SNAI2 -LEF1 METABOLIC_CATALYSIS SP5 -LEF1 METABOLIC_CATALYSIS T -LEF1 REACTS_WITH AES -LEF1 REACTS_WITH CDX1 -LEF1 REACTS_WITH CTNNB1 -LEF1 REACTS_WITH HDAC1 -LEF1 REACTS_WITH LEF1 -LEF1 REACTS_WITH MYB -LEF1 REACTS_WITH PITX2 -LEF1 REACTS_WITH TLE1 -LEF1 REACTS_WITH TLE2 -LEP IN_SAME_COMPONENT JAK2 -LEP IN_SAME_COMPONENT LEPR -LEP REACTS_WITH JAK2 -LEP REACTS_WITH LEP -LEP REACTS_WITH LEPR -LEPR IN_SAME_COMPONENT JAK2 -LEPR IN_SAME_COMPONENT LEP -LEPR METABOLIC_CATALYSIS SOCS3 -LEPR REACTS_WITH JAK2 -LEPR REACTS_WITH LEP -LEPR REACTS_WITH LEPR -LEPR STATE_CHANGE STAT3 -LEP STATE_CHANGE STAT3 -LGALS3 IN_SAME_COMPONENT SUFU -LGALS3 REACTS_WITH LGALS3 -LGALS3 REACTS_WITH SUFU -LHCGR IN_SAME_COMPONENT ARRB2 -LHCGR REACTS_WITH ARRB2 -LHCGR REACTS_WITH LHCGR -LHCGR STATE_CHANGE ARRB2 -LIMA1 IN_SAME_COMPONENT CDH1 -LIMA1 IN_SAME_COMPONENT CTNNA1 -LIMA1 IN_SAME_COMPONENT CTNNB1 -LIMA1 IN_SAME_COMPONENT CTNND1 -LIMA1 REACTS_WITH CDH1 -LIMA1 REACTS_WITH CTNNA1 -LIMA1 REACTS_WITH CTNNB1 -LIMA1 REACTS_WITH CTNND1 -LIMA1 REACTS_WITH LIMA1 -LIMK1 STATE_CHANGE CFL1 -LIMK1 STATE_CHANGE CFL2 -LIMK2 STATE_CHANGE CFL1 -LINGO1 IN_SAME_COMPONENT ARHGDIA -LINGO1 IN_SAME_COMPONENT NGFR -LINGO1 IN_SAME_COMPONENT RTN4R -LINGO1 REACTS_WITH ARHGDIA -LINGO1 REACTS_WITH LINGO1 -LINGO1 REACTS_WITH NGFR -LINGO1 REACTS_WITH RHOA -LINGO1 REACTS_WITH RTN4R -LNPEP IN_SAME_COMPONENT SLC2A4 -LNPEP IN_SAME_COMPONENT VAMP2 -LNPEP REACTS_WITH SLC2A4 -LNX1 STATE_CHANGE NUMB -LPA IN_SAME_COMPONENT APOB -LPA IN_SAME_COMPONENT ITGAM -LPA IN_SAME_COMPONENT ITGB2 -LPAR1 METABOLIC_CATALYSIS MMP2 -LPAR1 REACTS_WITH LPAR1 -LPAR1 STATE_CHANGE CASP3 -LPAR1 STATE_CHANGE GNG2 -LPAR1 STATE_CHANGE PTK2B -LPAR2 IN_SAME_COMPONENT SLC9A3R2 -LPAR2 REACTS_WITH LPAR2 -LPAR2 REACTS_WITH SLC9A3R2 -LPAR2 STATE_CHANGE PLCB3 -LPAR2 STATE_CHANGE PTK2B -LPAR2 STATE_CHANGE RHOA -LPAR2 STATE_CHANGE TRIP6 -LPAR3 REACTS_WITH LPAR3 -LPAR3 STATE_CHANGE CASP3 -LPAR4 REACTS_WITH LPAR4 -LPAR4 STATE_CHANGE RPS6KA5 -LPA REACTS_WITH APOB -LPA REACTS_WITH ITGAM -LPA REACTS_WITH ITGB2 -LPA REACTS_WITH LPA -LPP STATE_CHANGE VASP -LRDD IN_SAME_COMPONENT BIRC3 -LRDD IN_SAME_COMPONENT CRADD -LRDD IN_SAME_COMPONENT MADD -LRDD IN_SAME_COMPONENT RIPK1 -LRDD IN_SAME_COMPONENT TNF -LRDD IN_SAME_COMPONENT TNFRSF1A -LRDD IN_SAME_COMPONENT TRADD -LRDD IN_SAME_COMPONENT TRAF2 -LRDD STATE_CHANGE CASP2 -LRIG1 STATE_CHANGE CBL -LRP1 IN_SAME_COMPONENT ITGAM -LRP1 IN_SAME_COMPONENT ITGB2 -LRP1 IN_SAME_COMPONENT PDGFB -LRP1 IN_SAME_COMPONENT PDGFRB -LRP1 IN_SAME_COMPONENT PLAT -LRP1 REACTS_WITH ITGAM -LRP1 REACTS_WITH ITGB2 -LRP1 REACTS_WITH LRP1 -LRP1 REACTS_WITH PDGFB -LRP1 REACTS_WITH PDGFRB -LRP1 REACTS_WITH PLAT -LRP1 STATE_CHANGE ITGAV -LRP1 STATE_CHANGE ITGB3 -LRP1 STATE_CHANGE ITGB5 -LRP1 STATE_CHANGE PLAU -LRP1 STATE_CHANGE PLAUR -LRP1 STATE_CHANGE SERPINE1 -LRP2 IN_SAME_COMPONENT LRPAP1 -LRP2 IN_SAME_COMPONENT SHH -LRP2 REACTS_WITH LRP2 -LRP2 REACTS_WITH LRPAP1 -LRP2 REACTS_WITH SHH -LRP5 IN_SAME_COMPONENT AXIN1 -LRP5 IN_SAME_COMPONENT CDH2 -LRP5 IN_SAME_COMPONENT CTNNA1 -LRP5 IN_SAME_COMPONENT CTNNB1 -LRP5 IN_SAME_COMPONENT CTNND1 -LRP5 IN_SAME_COMPONENT DKK1 -LRP5 IN_SAME_COMPONENT FZD1 -LRP5 IN_SAME_COMPONENT FZD10 -LRP5 IN_SAME_COMPONENT FZD4 -LRP5 IN_SAME_COMPONENT WNT1 -LRP5 IN_SAME_COMPONENT WNT5A -LRP5 IN_SAME_COMPONENT WNT7B -LRP5 REACTS_WITH AXIN1 -LRP5 REACTS_WITH CDH2 -LRP5 REACTS_WITH CTNNA1 -LRP5 REACTS_WITH CTNNB1 -LRP5 REACTS_WITH CTNND1 -LRP5 REACTS_WITH DKK1 -LRP5 REACTS_WITH FZD1 -LRP5 REACTS_WITH FZD10 -LRP5 REACTS_WITH FZD4 -LRP5 REACTS_WITH LRP5 -LRP5 REACTS_WITH ROR2 -LRP5 REACTS_WITH WNT1 -LRP5 REACTS_WITH WNT5A -LRP5 REACTS_WITH WNT7B -LRP6 CO_CONTROL FZD2 -LRP6 CO_CONTROL WNT5A -LRP6 IN_SAME_COMPONENT ATP6AP2 -LRP6 IN_SAME_COMPONENT AXIN1 -LRP6 IN_SAME_COMPONENT DKK1 -LRP6 IN_SAME_COMPONENT DKK2 -LRP6 IN_SAME_COMPONENT FZD1 -LRP6 IN_SAME_COMPONENT FZD2 -LRP6 IN_SAME_COMPONENT FZD5 -LRP6 IN_SAME_COMPONENT FZD8 -LRP6 IN_SAME_COMPONENT FZD9 -LRP6 IN_SAME_COMPONENT IGFBP4 -LRP6 IN_SAME_COMPONENT KREMEN2 -LRP6 IN_SAME_COMPONENT WNT1 -LRP6 IN_SAME_COMPONENT WNT2 -LRP6 IN_SAME_COMPONENT WNT3 -LRP6 IN_SAME_COMPONENT WNT3A -LRP6 IN_SAME_COMPONENT WNT7A -LRP6 INTERACTS_WITH DKK1 -LRP6 INTERACTS_WITH DKK2 -LRP6 INTERACTS_WITH KREMEN2 -LRP6 INTERACTS_WITH LRP6 -LRP6 INTERACTS_WITH WIF1 -LRP6 INTERACTS_WITH WNT1 -LRP6 REACTS_WITH APC -LRP6 REACTS_WITH ATP6AP2 -LRP6 REACTS_WITH AXIN1 -LRP6 REACTS_WITH CTNNB1 -LRP6 REACTS_WITH DKK1 -LRP6 REACTS_WITH DKK2 -LRP6 REACTS_WITH FZD1 -LRP6 REACTS_WITH FZD2 -LRP6 REACTS_WITH FZD5 -LRP6 REACTS_WITH FZD8 -LRP6 REACTS_WITH FZD9 -LRP6 REACTS_WITH IGFBP4 -LRP6 REACTS_WITH KREMEN2 -LRP6 REACTS_WITH LRP6 -LRP6 REACTS_WITH WNT1 -LRP6 REACTS_WITH WNT2 -LRP6 REACTS_WITH WNT3 -LRP6 REACTS_WITH WNT3A -LRP6 REACTS_WITH WNT5A -LRP6 REACTS_WITH WNT7A -LRP6 STATE_CHANGE APC -LRP6 STATE_CHANGE AXIN1 -LRP6 STATE_CHANGE CTNNB1 -LRP6 STATE_CHANGE DVL1 -LRP6 STATE_CHANGE FZD5 -LRP6 STATE_CHANGE LRP6 -LRP6 STATE_CHANGE PI4K2A -LRP6 STATE_CHANGE PPP2R5A -LRP6 STATE_CHANGE WNT3A -LRP8 IN_SAME_COMPONENT ARHGEF2 -LRP8 IN_SAME_COMPONENT DAB1 -LRP8 IN_SAME_COMPONENT FYN -LRP8 IN_SAME_COMPONENT GRIN2A -LRP8 IN_SAME_COMPONENT GRIN2B -LRP8 IN_SAME_COMPONENT LRPAP1 -LRP8 IN_SAME_COMPONENT MAP2K7 -LRP8 IN_SAME_COMPONENT MAP3K11 -LRP8 IN_SAME_COMPONENT MAPK8 -LRP8 IN_SAME_COMPONENT RELN -LRP8 INTERACTS_WITH DAB1 -LRP8 INTERACTS_WITH FYN -LRP8 INTERACTS_WITH RELN -LRP8 INTERACTS_WITH VLDLR -LRP8 REACTS_WITH ARHGEF2 -LRP8 REACTS_WITH DAB1 -LRP8 REACTS_WITH FYN -LRP8 REACTS_WITH GRIN2A -LRP8 REACTS_WITH GRIN2B -LRP8 REACTS_WITH LRP8 -LRP8 REACTS_WITH LRPAP1 -LRP8 REACTS_WITH MAP2K7 -LRP8 REACTS_WITH MAP3K11 -LRP8 REACTS_WITH MAPK8 -LRP8 REACTS_WITH RELN -LRP8 REACTS_WITH VLDLR -LRP8 STATE_CHANGE ABL1 -LRP8 STATE_CHANGE CRKL -LRP8 STATE_CHANGE DAB1 -LRP8 STATE_CHANGE ITGA3 -LRP8 STATE_CHANGE ITGB1 -LRP8 STATE_CHANGE LRP8 -LRP8 STATE_CHANGE MAP1B -LRP8 STATE_CHANGE NCK2 -LRP8 STATE_CHANGE RAPGEF1 -LRP8 STATE_CHANGE RELN -LRP8 STATE_CHANGE VLDLR -LRPAP1 IN_SAME_COMPONENT LRP2 -LRPAP1 IN_SAME_COMPONENT LRP8 -LRPAP1 REACTS_WITH LRP2 -LRPAP1 REACTS_WITH LRP8 -LRPAP1 REACTS_WITH LRPAP1 -LRPAP1 REACTS_WITH SHH -LRPAP1 STATE_CHANGE LRP8 -LRPAP1 STATE_CHANGE RELN -LRPAP1 STATE_CHANGE VLDLR -LY96 IN_SAME_COMPONENT BGN -LY96 IN_SAME_COMPONENT HMGB1 -LY96 IN_SAME_COMPONENT HSPD1 -LY96 IN_SAME_COMPONENT IRAK1 -LY96 IN_SAME_COMPONENT IRAK2 -LY96 IN_SAME_COMPONENT IRAK4 -LY96 IN_SAME_COMPONENT MYD88 -LY96 IN_SAME_COMPONENT S100A8 -LY96 IN_SAME_COMPONENT S100A9 -LY96 IN_SAME_COMPONENT TIRAP -LY96 IN_SAME_COMPONENT TLR1 -LY96 IN_SAME_COMPONENT TLR2 -LY96 IN_SAME_COMPONENT TLR4 -LY96 REACTS_WITH BGN -LY96 REACTS_WITH HMGB1 -LY96 REACTS_WITH HSPD1 -LY96 REACTS_WITH IRAK1 -LY96 REACTS_WITH IRAK2 -LY96 REACTS_WITH IRAK4 -LY96 REACTS_WITH LY96 -LY96 REACTS_WITH MYD88 -LY96 REACTS_WITH S100A8 -LY96 REACTS_WITH S100A9 -LY96 REACTS_WITH TIRAP -LY96 REACTS_WITH TLR1 -LY96 REACTS_WITH TLR2 -LY96 REACTS_WITH TLR4 -LY96 STATE_CHANGE IRAK1 -LY96 STATE_CHANGE RHOA -LYN CO_CONTROL CD19 -LYN CO_CONTROL INPP5D -LYN CO_CONTROL PIK3CA -LYN CO_CONTROL PIK3R1 -LYN CO_CONTROL VAV2 -LYN IN_SAME_COMPONENT BLNK -LYN IN_SAME_COMPONENT BTK -LYN IN_SAME_COMPONENT CD72 -LYN IN_SAME_COMPONENT CD79A -LYN IN_SAME_COMPONENT CD79B -LYN IN_SAME_COMPONENT CSF2 -LYN IN_SAME_COMPONENT CSF2RA -LYN IN_SAME_COMPONENT CSF2RB -LYN IN_SAME_COMPONENT DOK1 -LYN IN_SAME_COMPONENT EPO -LYN IN_SAME_COMPONENT EPOR -LYN IN_SAME_COMPONENT FCER1A -LYN IN_SAME_COMPONENT FCER1G -LYN IN_SAME_COMPONENT IGHE -LYN IN_SAME_COMPONENT IL5 -LYN IN_SAME_COMPONENT IL5RA -LYN IN_SAME_COMPONENT MS4A2 -LYN IN_SAME_COMPONENT PLCG2 -LYN IN_SAME_COMPONENT SYK -LYN IN_SAME_COMPONENT TEC -LYN IN_SAME_COMPONENT WIPF1 -LYN INTERACTS_WITH PIK3CA -LYN INTERACTS_WITH PIK3R1 -LYN REACTS_WITH BLNK -LYN REACTS_WITH BTK -LYN REACTS_WITH CD72 -LYN REACTS_WITH CD79A -LYN REACTS_WITH CD79B -LYN REACTS_WITH CSF2 -LYN REACTS_WITH CSF2RA -LYN REACTS_WITH CSF2RB -LYN REACTS_WITH DOK1 -LYN REACTS_WITH EPO -LYN REACTS_WITH EPOR -LYN REACTS_WITH FCER1A -LYN REACTS_WITH FCER1G -LYN REACTS_WITH IGHE -LYN REACTS_WITH IL5 -LYN REACTS_WITH IL5RA -LYN REACTS_WITH LYN -LYN REACTS_WITH MS4A2 -LYN REACTS_WITH PLCG2 -LYN REACTS_WITH PTPN6 -LYN REACTS_WITH SYK -LYN REACTS_WITH TEC -LYN REACTS_WITH WIPF1 -LYN STATE_CHANGE BTK -LYN STATE_CHANGE CBL -LYN STATE_CHANGE CBLB -LYN STATE_CHANGE CD19 -LYN STATE_CHANGE CD22 -LYN STATE_CHANGE DAPP1 -LYN STATE_CHANGE FER -LYN STATE_CHANGE HCLS1 -LYN STATE_CHANGE ITK -LYN STATE_CHANGE KLRG1 -LYN STATE_CHANGE LAT -LYN STATE_CHANGE LAT2 -LYN STATE_CHANGE MAPK14 -LYN STATE_CHANGE MAPK8 -LYN STATE_CHANGE NFKB1 -LYN STATE_CHANGE PIK3CA -LYN STATE_CHANGE PIK3R1 -LYN STATE_CHANGE PLA2G4A -LYN STATE_CHANGE PLCG1 -LYN STATE_CHANGE SPHK1 -LYN STATE_CHANGE STAT1 -LYN STATE_CHANGE VAV1 -LYN STATE_CHANGE VAV2 -MADCAM1 IN_SAME_COMPONENT ITGA4 -MADCAM1 IN_SAME_COMPONENT ITGB7 -MADCAM1 REACTS_WITH ITGA4 -MADCAM1 REACTS_WITH ITGB7 -MADCAM1 REACTS_WITH MADCAM1 -MADD CO_CONTROL CTSD -MADD CO_CONTROL NSMAF -MADD CO_CONTROL TNF -MADD CO_CONTROL TNFRSF1A -MADD IN_SAME_COMPONENT BIRC3 -MADD IN_SAME_COMPONENT CRADD -MADD IN_SAME_COMPONENT LRDD -MADD IN_SAME_COMPONENT RIPK1 -MADD IN_SAME_COMPONENT TNF -MADD IN_SAME_COMPONENT TNFRSF1A -MADD IN_SAME_COMPONENT TRADD -MADD IN_SAME_COMPONENT TRAF2 -MADD REACTS_WITH BAG4 -MADD REACTS_WITH BIRC3 -MADD REACTS_WITH CRADD -MADD REACTS_WITH MADD -MADD REACTS_WITH RIPK1 -MADD REACTS_WITH TNF -MADD REACTS_WITH TNFRSF1A -MADD REACTS_WITH TRADD -MADD REACTS_WITH TRAF2 -MADD STATE_CHANGE BID -MADD STATE_CHANGE CASP2 -MADD STATE_CHANGE CASP8 -MADD STATE_CHANGE FADD -MADD STATE_CHANGE MAP4K4 -MADD STATE_CHANGE SMPD1 -MADD STATE_CHANGE SMPD3 -MAF CO_CONTROL JUNB -MAFG IN_SAME_COMPONENT FOSB -MAFG METABOLIC_CATALYSIS MMP1 -MAFG REACTS_WITH FOSB -MAFG REACTS_WITH MAFG -MAF IN_SAME_COMPONENT IRF4 -MAF IN_SAME_COMPONENT MYB -MAF METABOLIC_CATALYSIS ANPEP -MAF METABOLIC_CATALYSIS IL4 -MAF REACTS_WITH IRF4 -MAF REACTS_WITH MAF -MAF REACTS_WITH MYB -MAGED1 CO_CONTROL NGFR -MAGED1 CO_CONTROL SH2B1 -MAGED1 IN_SAME_COMPONENT NGF -MAGED1 IN_SAME_COMPONENT NGFR -MAGED1 IN_SAME_COMPONENT SORT1 -MAGED1 REACTS_WITH MAGED1 -MAGED1 REACTS_WITH NGF -MAGED1 REACTS_WITH NGFR -MAGED1 REACTS_WITH SORT1 -MAGED1 STATE_CHANGE CYCS -MAGED1 STATE_CHANGE NGF -MAGEH1 IN_SAME_COMPONENT NGF -MAGEH1 IN_SAME_COMPONENT NGFR -MAGEH1 IN_SAME_COMPONENT SORT1 -MAGEH1 REACTS_WITH MAGEH1 -MAGEH1 REACTS_WITH NGF -MAGEH1 REACTS_WITH NGFR -MAGEH1 REACTS_WITH SORT1 -MAK CO_CONTROL AR -MAK METABOLIC_CATALYSIS KLK3 -MALT1 CO_CONTROL AKT1 -MALT1 CO_CONTROL GAB2 -MALT1 CO_CONTROL TRAF6 -MALT1 IN_SAME_COMPONENT BCL10 -MALT1 IN_SAME_COMPONENT CARD11 -MALT1 IN_SAME_COMPONENT MAP3K7 -MALT1 IN_SAME_COMPONENT PDPK1 -MALT1 IN_SAME_COMPONENT TRAF6 -MALT1 REACTS_WITH BCL10 -MALT1 REACTS_WITH CARD11 -MALT1 REACTS_WITH MALT1 -MALT1 REACTS_WITH MAP3K7 -MALT1 REACTS_WITH PDPK1 -MALT1 REACTS_WITH TRAF6 -MALT1 STATE_CHANGE CHUK -MALT1 STATE_CHANGE IKBKB -MALT1 STATE_CHANGE IKBKG -MAP1B IN_SAME_COMPONENT DYNC1H1 -MAP1B IN_SAME_COMPONENT PAFAH1B1 -MAP1B REACTS_WITH DYNC1H1 -MAP1B REACTS_WITH MAP1B -MAP1B REACTS_WITH PAFAH1B1 -MAP2K1 CO_CONTROL IQGAP1 -MAP2K1 CO_CONTROL KSR1 -MAP2K1 CO_CONTROL MAP2K2 -MAP2K1 IN_SAME_COMPONENT MAP2K2 -MAP2K1 METABOLIC_CATALYSIS GLI2 -MAP2K1 REACTS_WITH MAP2K1 -MAP2K1 REACTS_WITH MAP2K2 -MAP2K1 STATE_CHANGE MAPK1 -MAP2K1 STATE_CHANGE MAPK14 -MAP2K1 STATE_CHANGE MAPK3 -MAP2K1 STATE_CHANGE RUSC1 -MAP2K2 CO_CONTROL KSR1 -MAP2K2 CO_CONTROL MAP2K1 -MAP2K2 IN_SAME_COMPONENT MAP2K1 -MAP2K2 REACTS_WITH MAP2K1 -MAP2K2 REACTS_WITH MAP2K2 -MAP2K2 STATE_CHANGE MAPK1 -MAP2K2 STATE_CHANGE MAPK3 -MAP2K3 IN_SAME_COMPONENT CCM2 -MAP2K3 IN_SAME_COMPONENT MAP3K3 -MAP2K3 IN_SAME_COMPONENT RAC1 -MAP2K3 REACTS_WITH CCM2 -MAP2K3 REACTS_WITH MAP2K3 -MAP2K3 REACTS_WITH MAP3K3 -MAP2K3 REACTS_WITH RAC1 -MAP2K3 STATE_CHANGE MAPK11 -MAP2K3 STATE_CHANGE MAPK13 -MAP2K3 STATE_CHANGE MAPK14 -MAP2K4 CO_CONTROL PRKCB -MAP2K4 CO_CONTROL PRKCZ -MAP2K4 STATE_CHANGE MAPK14 -MAP2K4 STATE_CHANGE MAPK8 -MAP2K4 STATE_CHANGE PRKCD -MAP2K5 STATE_CHANGE MAPK7 -MAP2K6 STATE_CHANGE MAPK11 -MAP2K6 STATE_CHANGE MAPK12 -MAP2K6 STATE_CHANGE MAPK14 -MAP2K6 STATE_CHANGE MAPK8 -MAP2K7 IN_SAME_COMPONENT ARHGEF2 -MAP2K7 IN_SAME_COMPONENT DAB1 -MAP2K7 IN_SAME_COMPONENT FYN -MAP2K7 IN_SAME_COMPONENT LRP8 -MAP2K7 IN_SAME_COMPONENT MAP3K11 -MAP2K7 IN_SAME_COMPONENT MAPK8 -MAP2K7 IN_SAME_COMPONENT RELN -MAP2K7 REACTS_WITH ARHGEF2 -MAP2K7 REACTS_WITH DAB1 -MAP2K7 REACTS_WITH FYN -MAP2K7 REACTS_WITH LRP8 -MAP2K7 REACTS_WITH MAP2K7 -MAP2K7 REACTS_WITH MAP3K11 -MAP2K7 REACTS_WITH MAPK8 -MAP2K7 REACTS_WITH RELN -MAP2K7 STATE_CHANGE MAP2K4 -MAP2K7 STATE_CHANGE MAPK8 -MAP2K7 STATE_CHANGE MAPK9 -MAP3K10 STATE_CHANGE MAP2K3 -MAP3K10 STATE_CHANGE MAP2K6 -MAP3K11 IN_SAME_COMPONENT ARHGEF2 -MAP3K11 IN_SAME_COMPONENT DAB1 -MAP3K11 IN_SAME_COMPONENT FYN -MAP3K11 IN_SAME_COMPONENT LRP8 -MAP3K11 IN_SAME_COMPONENT MAP2K7 -MAP3K11 IN_SAME_COMPONENT MAPK8 -MAP3K11 IN_SAME_COMPONENT RELN -MAP3K11 REACTS_WITH ARHGEF2 -MAP3K11 REACTS_WITH DAB1 -MAP3K11 REACTS_WITH FYN -MAP3K11 REACTS_WITH LRP8 -MAP3K11 REACTS_WITH MAP2K7 -MAP3K11 REACTS_WITH MAP3K11 -MAP3K11 REACTS_WITH MAPK8 -MAP3K11 REACTS_WITH RELN -MAP3K11 STATE_CHANGE CEBPB -MAP3K11 STATE_CHANGE MAP3K1 -MAP3K14 CO_CONTROL CHUK -MAP3K14 STATE_CHANGE CHUK -MAP3K14 STATE_CHANGE NFKB2 -MAP3K14 STATE_CHANGE RELB -MAP3K1 IN_SAME_COMPONENT CD40 -MAP3K1 IN_SAME_COMPONENT CD40LG -MAP3K1 IN_SAME_COMPONENT TRAF2 -MAP3K1 REACTS_WITH CD40 -MAP3K1 REACTS_WITH CD40LG -MAP3K1 REACTS_WITH MAP3K1 -MAP3K1 REACTS_WITH TRAF2 -MAP3K1 STATE_CHANGE CSNK1A1 -MAP3K1 STATE_CHANGE MAP2K1 -MAP3K1 STATE_CHANGE MAP2K3 -MAP3K1 STATE_CHANGE MAP2K4 -MAP3K1 STATE_CHANGE MAP2K6 -MAP3K1 STATE_CHANGE MAP2K7 -MAP3K1 STATE_CHANGE MAPK14 -MAP3K1 STATE_CHANGE MAPK8 -MAP3K1 STATE_CHANGE NFATC3 -MAP3K1 STATE_CHANGE SMAD2 -MAP3K2 IN_SAME_COMPONENT SH2D2A -MAP3K2 REACTS_WITH MAP3K2 -MAP3K2 REACTS_WITH SH2D2A -MAP3K2 STATE_CHANGE MAP2K5 -MAP3K3 IN_SAME_COMPONENT CCM2 -MAP3K3 IN_SAME_COMPONENT IRAK1 -MAP3K3 IN_SAME_COMPONENT MAP2K3 -MAP3K3 IN_SAME_COMPONENT MAP3K7 -MAP3K3 IN_SAME_COMPONENT RAC1 -MAP3K3 IN_SAME_COMPONENT RIPK1 -MAP3K3 IN_SAME_COMPONENT TNF -MAP3K3 IN_SAME_COMPONENT TNFRSF1A -MAP3K3 IN_SAME_COMPONENT TRADD -MAP3K3 IN_SAME_COMPONENT TRAF2 -MAP3K3 IN_SAME_COMPONENT TRAF6 -MAP3K3 REACTS_WITH CCM2 -MAP3K3 REACTS_WITH IRAK1 -MAP3K3 REACTS_WITH MAP2K3 -MAP3K3 REACTS_WITH MAP3K3 -MAP3K3 REACTS_WITH MAP3K7 -MAP3K3 REACTS_WITH RAC1 -MAP3K3 REACTS_WITH RIPK1 -MAP3K3 REACTS_WITH TNF -MAP3K3 REACTS_WITH TNFRSF1A -MAP3K3 REACTS_WITH TRADD -MAP3K3 REACTS_WITH TRAF2 -MAP3K3 REACTS_WITH TRAF6 -MAP3K3 STATE_CHANGE CHUK -MAP3K3 STATE_CHANGE ERC1 -MAP3K3 STATE_CHANGE IKBKB -MAP3K3 STATE_CHANGE IKBKG -MAP3K3 STATE_CHANGE MAPK14 -MAP3K4 REACTS_WITH MAP3K4 -MAP3K4 STATE_CHANGE MAP2K6 -MAP3K5 IN_SAME_COMPONENT AKT1 -MAP3K5 IN_SAME_COMPONENT BIRC3 -MAP3K5 IN_SAME_COMPONENT CALM1 -MAP3K5 IN_SAME_COMPONENT CAMK2B -MAP3K5 IN_SAME_COMPONENT CASP2 -MAP3K5 IN_SAME_COMPONENT CASP8 -MAP3K5 IN_SAME_COMPONENT CRADD -MAP3K5 IN_SAME_COMPONENT DAXX -MAP3K5 IN_SAME_COMPONENT FADD -MAP3K5 IN_SAME_COMPONENT FAS -MAP3K5 IN_SAME_COMPONENT FASLG -MAP3K5 IN_SAME_COMPONENT MAP3K6 -MAP3K5 IN_SAME_COMPONENT RIPK1 -MAP3K5 IN_SAME_COMPONENT TNF -MAP3K5 IN_SAME_COMPONENT TNFRSF1A -MAP3K5 IN_SAME_COMPONENT TRADD -MAP3K5 IN_SAME_COMPONENT TRAF1 -MAP3K5 IN_SAME_COMPONENT TRAF2 -MAP3K5 IN_SAME_COMPONENT TRAF6 -MAP3K5 IN_SAME_COMPONENT TXN -MAP3K5 REACTS_WITH AKT1 -MAP3K5 REACTS_WITH BAG4 -MAP3K5 REACTS_WITH BIRC3 -MAP3K5 REACTS_WITH CALM1 -MAP3K5 REACTS_WITH CAMK2B -MAP3K5 REACTS_WITH CASP2 -MAP3K5 REACTS_WITH CASP8 -MAP3K5 REACTS_WITH CRADD -MAP3K5 REACTS_WITH DAXX -MAP3K5 REACTS_WITH FADD -MAP3K5 REACTS_WITH FAS -MAP3K5 REACTS_WITH FASLG -MAP3K5 REACTS_WITH MAP3K5 -MAP3K5 REACTS_WITH RIPK1 -MAP3K5 REACTS_WITH TNF -MAP3K5 REACTS_WITH TNFRSF1A -MAP3K5 REACTS_WITH TRADD -MAP3K5 REACTS_WITH TRAF1 -MAP3K5 REACTS_WITH TRAF2 -MAP3K5 REACTS_WITH TRAF6 -MAP3K5 REACTS_WITH TXN -MAP3K5 STATE_CHANGE BID -MAP3K5 STATE_CHANGE MAP2K3 -MAP3K5 STATE_CHANGE MAP2K6 -MAP3K5 STATE_CHANGE MAP2K7 -MAP3K5 STATE_CHANGE MAP3K14 -MAP3K6 IN_SAME_COMPONENT MAP3K5 -MAP3K6 STATE_CHANGE MAP2K6 -MAP3K7 CO_CONTROL AKT1 -MAP3K7 CO_CONTROL BMPR2 -MAP3K7 CO_CONTROL DAPP1 -MAP3K7 CO_CONTROL MAP4K1 -MAP3K7 CO_CONTROL RAC1 -MAP3K7 CO_CONTROL TRAF6 -MAP3K7 CO_CONTROL XIAP -MAP3K7 IN_SAME_COMPONENT BCL10 -MAP3K7 IN_SAME_COMPONENT CARD11 -MAP3K7 IN_SAME_COMPONENT IRAK1 -MAP3K7 IN_SAME_COMPONENT MALT1 -MAP3K7 IN_SAME_COMPONENT MAP3K3 -MAP3K7 IN_SAME_COMPONENT RIPK1 -MAP3K7 IN_SAME_COMPONENT SMAD6 -MAP3K7 IN_SAME_COMPONENT TAB1 -MAP3K7 IN_SAME_COMPONENT TAB2 -MAP3K7 IN_SAME_COMPONENT TNF -MAP3K7 IN_SAME_COMPONENT TNFRSF1A -MAP3K7 IN_SAME_COMPONENT TRADD -MAP3K7 IN_SAME_COMPONENT TRAF2 -MAP3K7 IN_SAME_COMPONENT TRAF6 -MAP3K7 IN_SAME_COMPONENT XIAP -MAP3K7 REACTS_WITH BCL10 -MAP3K7 REACTS_WITH CARD11 -MAP3K7 REACTS_WITH IRAK1 -MAP3K7 REACTS_WITH MALT1 -MAP3K7 REACTS_WITH MAP3K3 -MAP3K7 REACTS_WITH MAP3K7 -MAP3K7 REACTS_WITH RIPK1 -MAP3K7 REACTS_WITH TAB1 -MAP3K7 REACTS_WITH TAB2 -MAP3K7 REACTS_WITH TNF -MAP3K7 REACTS_WITH TNFRSF1A -MAP3K7 REACTS_WITH TRADD -MAP3K7 REACTS_WITH TRAF2 -MAP3K7 REACTS_WITH TRAF6 -MAP3K7 REACTS_WITH XIAP -MAP3K7 STATE_CHANGE CHUK -MAP3K7 STATE_CHANGE ERC1 -MAP3K7 STATE_CHANGE HIPK2 -MAP3K7 STATE_CHANGE IKBKB -MAP3K7 STATE_CHANGE IKBKG -MAP3K7 STATE_CHANGE MAP2K3 -MAP3K7 STATE_CHANGE MAP2K4 -MAP3K7 STATE_CHANGE MAP2K6 -MAP3K7 STATE_CHANGE MAP3K1 -MAP3K7 STATE_CHANGE MAP3K7 -MAP3K7 STATE_CHANGE NLK -MAP3K8 IN_SAME_COMPONENT AKT1 -MAP3K8 REACTS_WITH AKT1 -MAP3K8 REACTS_WITH MAP3K8 -MAP3K8 STATE_CHANGE MAP2K1 -MAP3K8 STATE_CHANGE MAP2K4 -MAP3K8 STATE_CHANGE MAP3K14 -MAP3K8 STATE_CHANGE NFATC2 -MAP4K1 CO_CONTROL MAP3K7 -MAP4K1 CO_CONTROL RAC1 -MAP4K1 IN_SAME_COMPONENT DAPP1 -MAP4K1 IN_SAME_COMPONENT DBNL -MAP4K1 IN_SAME_COMPONENT GRAP2 -MAP4K1 IN_SAME_COMPONENT LCP2 -MAP4K1 REACTS_WITH DAPP1 -MAP4K1 REACTS_WITH DBNL -MAP4K1 REACTS_WITH GRAP2 -MAP4K1 REACTS_WITH LCP2 -MAP4K1 REACTS_WITH MAP4K1 -MAP4K1 STATE_CHANGE MAP3K1 -MAP4K1 STATE_CHANGE MAP3K7 -MAPK11 STATE_CHANGE MAPKAPK2 -MAPK12 IN_SAME_COMPONENT SNTA1 -MAPK12 REACTS_WITH MAPK12 -MAPK12 REACTS_WITH SNTA1 -MAPK12 STATE_CHANGE ATF2 -MAPK12 STATE_CHANGE CCND1 -MAPK13 STATE_CHANGE EEF2K -MAPK13 STATE_CHANGE STMN1 -MAPK14 CO_CONTROL CCNA2 -MAPK14 CO_CONTROL CDK2 -MAPK14 CO_CONTROL CSNK1A1 -MAPK14 CO_CONTROL GSK3B -MAPK14 CO_CONTROL PPP1R13L -MAPK14 CO_CONTROL PRKACA -MAPK14 IN_SAME_COMPONENT NFATC1 -MAPK14 IN_SAME_COMPONENT PRKG1 -MAPK14 IN_SAME_COMPONENT TAB1 -MAPK14 METABOLIC_CATALYSIS RAB7A -MAPK14 METABOLIC_CATALYSIS SOCS3 -MAPK14 METABOLIC_CATALYSIS TRPV1 -MAPK14 REACTS_WITH MAPK14 -MAPK14 REACTS_WITH NFATC1 -MAPK14 REACTS_WITH PRKG1 -MAPK14 REACTS_WITH TAB1 -MAPK14 STATE_CHANGE AR -MAPK14 STATE_CHANGE ARRB2 -MAPK14 STATE_CHANGE ATF2 -MAPK14 STATE_CHANGE JUN -MAPK14 STATE_CHANGE KAT2B -MAPK14 STATE_CHANGE MAPKAPK2 -MAPK14 STATE_CHANGE NCOA3 -MAPK14 STATE_CHANGE NFATC2 -MAPK14 STATE_CHANGE NFKB1 -MAPK14 STATE_CHANGE NFKBIA -MAPK14 STATE_CHANGE RELA -MAPK14 STATE_CHANGE RPS6KA5 -MAPK14 STATE_CHANGE STAT1 -MAPK14 STATE_CHANGE STAT3 -MAPK14 STATE_CHANGE STAT4 -MAPK14 STATE_CHANGE TP53 -MAPK1 IN_SAME_COMPONENT CAPN2 -MAPK1 REACTS_WITH CAPN2 -MAPK1 REACTS_WITH MAPK1 -MAPK1 REACTS_WITH MAPK3 -MAPK1 STATE_CHANGE ETS1 -MAPK1 STATE_CHANGE PLA2G1B -MAPK1 STATE_CHANGE SMAD1 -MAPK3 CO_CONTROL CSNK2A1 -MAPK3 CO_CONTROL MAPK8 -MAPK3 IN_SAME_COMPONENT NFATC1 -MAPK3 IN_SAME_COMPONENT PRKCD -MAPK3 REACTS_WITH MAPK1 -MAPK3 REACTS_WITH MAPK3 -MAPK3 REACTS_WITH NFATC1 -MAPK3 REACTS_WITH PRKCD -MAPK3 STATE_CHANGE JUN -MAPK3 STATE_CHANGE PLA2G1B -MAPK3 STATE_CHANGE RXRA -MAPK7 STATE_CHANGE MEF2C -MAPK7 STATE_CHANGE RPS6KA1 -MAPK8 CO_CONTROL B2M -MAPK8 CO_CONTROL CD247 -MAPK8 CO_CONTROL CD3D -MAPK8 CO_CONTROL CD3E -MAPK8 CO_CONTROL CD3G -MAPK8 CO_CONTROL CD8A -MAPK8 CO_CONTROL CD8B -MAPK8 CO_CONTROL CSNK2A1 -MAPK8 CO_CONTROL HLA-A -MAPK8 CO_CONTROL MAPK3 -MAPK8 IN_SAME_COMPONENT ARHGEF2 -MAPK8 IN_SAME_COMPONENT DAB1 -MAPK8 IN_SAME_COMPONENT FYN -MAPK8 IN_SAME_COMPONENT LRP8 -MAPK8 IN_SAME_COMPONENT MAP2K7 -MAPK8 IN_SAME_COMPONENT MAP3K11 -MAPK8 IN_SAME_COMPONENT NFATC1 -MAPK8 IN_SAME_COMPONENT RARA -MAPK8 IN_SAME_COMPONENT RELN -MAPK8IP3 REACTS_WITH MAPK8IP3 -MAPK8 METABOLIC_CATALYSIS BAX -MAPK8 METABOLIC_CATALYSIS JUN -MAPK8 METABOLIC_CATALYSIS TRPC6 -MAPK8 REACTS_WITH ARHGEF2 -MAPK8 REACTS_WITH CALM1 -MAPK8 REACTS_WITH DAB1 -MAPK8 REACTS_WITH FYN -MAPK8 REACTS_WITH LRP8 -MAPK8 REACTS_WITH MAP2K7 -MAPK8 REACTS_WITH MAP3K11 -MAPK8 REACTS_WITH MAPK8 -MAPK8 REACTS_WITH NFATC1 -MAPK8 REACTS_WITH RARA -MAPK8 REACTS_WITH RELN -MAPK8 STATE_CHANGE AR -MAPK8 STATE_CHANGE ATF2 -MAPK8 STATE_CHANGE BCL2 -MAPK8 STATE_CHANGE JUN -MAPK8 STATE_CHANGE NFATC2 -MAPK8 STATE_CHANGE RARA -MAPK8 STATE_CHANGE RXRA -MAPK9 CO_CONTROL FOS -MAPK9 CO_CONTROL JUN -MAPK9 CO_CONTROL NFATC1 -MAPK9 IN_SAME_COMPONENT NFATC3 -MAPK9 METABOLIC_CATALYSIS IFNG -MAPK9 METABOLIC_CATALYSIS IL2 -MAPK9 REACTS_WITH CALM1 -MAPK9 REACTS_WITH MAPK9 -MAPK9 REACTS_WITH NFATC3 -MAPK9 STATE_CHANGE ATF2 -MAPK9 STATE_CHANGE CTNNB1 -MAPKAP1 IN_SAME_COMPONENT DEPTOR -MAPKAP1 IN_SAME_COMPONENT MLST8 -MAPKAP1 IN_SAME_COMPONENT MTOR -MAPKAP1 IN_SAME_COMPONENT RICTOR -MAPKAP1 REACTS_WITH DEPTOR -MAPKAP1 REACTS_WITH MAPKAP1 -MAPKAP1 REACTS_WITH MLST8 -MAPKAP1 REACTS_WITH MTOR -MAPKAP1 REACTS_WITH RICTOR -MAPKAP1 STATE_CHANGE AKT1 -MAPKAP1 STATE_CHANGE PRKCA -MAPKAP1 STATE_CHANGE SGK1 -MAPKAPK2 IN_SAME_COMPONENT TCF3 -MAPKAPK2 REACTS_WITH MAPKAPK2 -MAPKAPK2 REACTS_WITH TCF3 -MAPKAPK2 STATE_CHANGE CDC25B -MAPKAPK2 STATE_CHANGE CREB1 -MAPKAPK2 STATE_CHANGE ETV1 -MAPKAPK2 STATE_CHANGE HSPB1 -MAPKAPK2 STATE_CHANGE LSP1 -MAPKAPK2 STATE_CHANGE MAPK14 -MAPKAPK2 STATE_CHANGE SRF -MAPKAPK2 STATE_CHANGE TH -MAPKAPK2 STATE_CHANGE TSC2 -MAPKAPK2 STATE_CHANGE YWHAZ -MAPKAPK3 REACTS_WITH MAPKAPK3 -MAPKAPK3 STATE_CHANGE HSPB1 -MAPKAPK5 STATE_CHANGE HSPB1 -MAPRE1 STATE_CHANGE GJA1 -MARK2 STATE_CHANGE MAP2 -MARK2 STATE_CHANGE MIB1 -MATK IN_SAME_COMPONENT NGF -MATK REACTS_WITH MATK -MATK REACTS_WITH NGF -MAX CO_CONTROL ACTL6A -MAX CO_CONTROL BRCA1 -MAX CO_CONTROL CREB1 -MAX CO_CONTROL FOXO3 -MAX CO_CONTROL HDAC3 -MAX CO_CONTROL KAT5 -MAX CO_CONTROL MAX -MAX CO_CONTROL MYC -MAX CO_CONTROL NFYA -MAX CO_CONTROL NFYB -MAX CO_CONTROL NFYC -MAX CO_CONTROL RBL1 -MAX CO_CONTROL RUVBL1 -MAX CO_CONTROL RUVBL2 -MAX CO_CONTROL SMAD4 -MAX CO_CONTROL SP1 -MAX CO_CONTROL TBP -MAX CO_CONTROL TFE3 -MAX CO_CONTROL TRRAP -MAX CO_CONTROL UBTF -MAX CO_CONTROL ZBTB17 -MAX IN_SAME_COMPONENT ACTL6A -MAX IN_SAME_COMPONENT DNMT3A -MAX IN_SAME_COMPONENT GFI1 -MAX IN_SAME_COMPONENT HBP1 -MAX IN_SAME_COMPONENT HDAC1 -MAX IN_SAME_COMPONENT HDAC2 -MAX IN_SAME_COMPONENT HDAC3 -MAX IN_SAME_COMPONENT KAT2A -MAX IN_SAME_COMPONENT KAT5 -MAX IN_SAME_COMPONENT MXD1 -MAX IN_SAME_COMPONENT MYC -MAX IN_SAME_COMPONENT NFYA -MAX IN_SAME_COMPONENT NFYB -MAX IN_SAME_COMPONENT NFYC -MAX IN_SAME_COMPONENT PIM1 -MAX IN_SAME_COMPONENT RBBP4 -MAX IN_SAME_COMPONENT RBBP7 -MAX IN_SAME_COMPONENT RUVBL1 -MAX IN_SAME_COMPONENT RUVBL2 -MAX IN_SAME_COMPONENT SAP18 -MAX IN_SAME_COMPONENT SAP30 -MAX IN_SAME_COMPONENT SIN3A -MAX IN_SAME_COMPONENT SIN3B -MAX IN_SAME_COMPONENT SMAD4 -MAX IN_SAME_COMPONENT SUPT3H -MAX IN_SAME_COMPONENT SUPT7L -MAX IN_SAME_COMPONENT TAF10 -MAX IN_SAME_COMPONENT TAF12 -MAX IN_SAME_COMPONENT TAF9 -MAX IN_SAME_COMPONENT TJP2 -MAX IN_SAME_COMPONENT TRRAP -MAX IN_SAME_COMPONENT ZBTB17 -MAX METABOLIC_CATALYSIS ALDH9A1 -MAX METABOLIC_CATALYSIS BAX -MAX METABOLIC_CATALYSIS BCAT1 -MAX METABOLIC_CATALYSIS BCL2 -MAX METABOLIC_CATALYSIS BIRC5 -MAX METABOLIC_CATALYSIS BMI1 -MAX METABOLIC_CATALYSIS CAD -MAX METABOLIC_CATALYSIS CCL5 -MAX METABOLIC_CATALYSIS CCNB1 -MAX METABOLIC_CATALYSIS CCND2 -MAX METABOLIC_CATALYSIS CDC25A -MAX METABOLIC_CATALYSIS CDCA7 -MAX METABOLIC_CATALYSIS CDK4 -MAX METABOLIC_CATALYSIS CDKN1A -MAX METABOLIC_CATALYSIS CDKN1B -MAX METABOLIC_CATALYSIS CDKN2B -MAX METABOLIC_CATALYSIS CEBPA -MAX METABOLIC_CATALYSIS CEBPD -MAX METABOLIC_CATALYSIS CFLAR -MAX METABOLIC_CATALYSIS CLU -MAX METABOLIC_CATALYSIS COL1A2 -MAX METABOLIC_CATALYSIS CSDE1 -MAX METABOLIC_CATALYSIS DDIT3 -MAX METABOLIC_CATALYSIS DDX18 -MAX METABOLIC_CATALYSIS DKK1 -MAX METABOLIC_CATALYSIS DNTT -MAX METABOLIC_CATALYSIS E2F3 -MAX METABOLIC_CATALYSIS EIF2S1 -MAX METABOLIC_CATALYSIS EIF4A1 -MAX METABOLIC_CATALYSIS EIF4E -MAX METABOLIC_CATALYSIS EIF4G1 -MAX METABOLIC_CATALYSIS ENO1 -MAX METABOLIC_CATALYSIS ERBB2 -MAX METABOLIC_CATALYSIS FOSL1 -MAX METABOLIC_CATALYSIS FTH1 -MAX METABOLIC_CATALYSIS GADD45A -MAX METABOLIC_CATALYSIS GAPDH -MAX METABOLIC_CATALYSIS GPAM -MAX METABOLIC_CATALYSIS GTF2H2 -MAX METABOLIC_CATALYSIS HMGA1 -MAX METABOLIC_CATALYSIS HMGCS2 -MAX METABOLIC_CATALYSIS HSP90AA1 -MAX METABOLIC_CATALYSIS HSPA4 -MAX METABOLIC_CATALYSIS HSPD1 -MAX METABOLIC_CATALYSIS ID2 -MAX METABOLIC_CATALYSIS IREB2 -MAX METABOLIC_CATALYSIS ITGA6 -MAX METABOLIC_CATALYSIS ITGB1 -MAX METABOLIC_CATALYSIS ITGB4 -MAX METABOLIC_CATALYSIS KIR3DL1 -MAX METABOLIC_CATALYSIS LDHA -MAX METABOLIC_CATALYSIS LGALS1 -MAX METABOLIC_CATALYSIS LIN28B -MAX METABOLIC_CATALYSIS MINA -MAX METABOLIC_CATALYSIS MMP9 -MAX METABOLIC_CATALYSIS MTA1 -MAX METABOLIC_CATALYSIS MTDH -MAX METABOLIC_CATALYSIS MXD4 -MAX METABOLIC_CATALYSIS MYC -MAX METABOLIC_CATALYSIS MYCT1 -MAX METABOLIC_CATALYSIS NBN -MAX METABOLIC_CATALYSIS NCL -MAX METABOLIC_CATALYSIS NDRG1 -MAX METABOLIC_CATALYSIS NDRG2 -MAX METABOLIC_CATALYSIS NDUFAF2 -MAX METABOLIC_CATALYSIS NME1 -MAX METABOLIC_CATALYSIS NME2 -MAX METABOLIC_CATALYSIS ODC1 -MAX METABOLIC_CATALYSIS PDCD10 -MAX METABOLIC_CATALYSIS PDGFRB -MAX METABOLIC_CATALYSIS PEG10 -MAX METABOLIC_CATALYSIS PFKM -MAX METABOLIC_CATALYSIS PMAIP1 -MAX METABOLIC_CATALYSIS POLR3D -MAX METABOLIC_CATALYSIS PPP2R4 -MAX METABOLIC_CATALYSIS PRDX3 -MAX METABOLIC_CATALYSIS PTMA -MAX METABOLIC_CATALYSIS RCC1 -MAX METABOLIC_CATALYSIS S100A7 -MAX METABOLIC_CATALYSIS SERPINE1 -MAX METABOLIC_CATALYSIS SERPINI1 -MAX METABOLIC_CATALYSIS SFRP1 -MAX METABOLIC_CATALYSIS SFXN3 -MAX METABOLIC_CATALYSIS SHMT1 -MAX METABOLIC_CATALYSIS SLC2A1 -MAX METABOLIC_CATALYSIS SNAI1 -MAX METABOLIC_CATALYSIS TAF4B -MAX METABOLIC_CATALYSIS TERT -MAX METABOLIC_CATALYSIS TFRC -MAX METABOLIC_CATALYSIS TK1 -MAX METABOLIC_CATALYSIS TMEFF2 -MAX METABOLIC_CATALYSIS TMEM126A -MAX METABOLIC_CATALYSIS TP53 -MAX METABOLIC_CATALYSIS TSC2 -MAX METABOLIC_CATALYSIS UBTF -MAX METABOLIC_CATALYSIS WNT5A -MAX METABOLIC_CATALYSIS ZFP36L1 -MAX REACTS_WITH ACTL6A -MAX REACTS_WITH DNMT3A -MAX REACTS_WITH EP300 -MAX REACTS_WITH GFI1 -MAX REACTS_WITH HBP1 -MAX REACTS_WITH HDAC1 -MAX REACTS_WITH HDAC2 -MAX REACTS_WITH HDAC3 -MAX REACTS_WITH IRF8 -MAX REACTS_WITH KAT2A -MAX REACTS_WITH KAT5 -MAX REACTS_WITH MAX -MAX REACTS_WITH MXD1 -MAX REACTS_WITH MYC -MAX REACTS_WITH NFYA -MAX REACTS_WITH NFYB -MAX REACTS_WITH NFYC -MAX REACTS_WITH PIM1 -MAX REACTS_WITH RBBP4 -MAX REACTS_WITH RBBP7 -MAX REACTS_WITH RUVBL1 -MAX REACTS_WITH RUVBL2 -MAX REACTS_WITH SAP18 -MAX REACTS_WITH SAP30 -MAX REACTS_WITH SIN3A -MAX REACTS_WITH SIN3B -MAX REACTS_WITH SMAD4 -MAX REACTS_WITH SUPT3H -MAX REACTS_WITH SUPT7L -MAX REACTS_WITH TAF10 -MAX REACTS_WITH TAF12 -MAX REACTS_WITH TAF9 -MAX REACTS_WITH TJP2 -MAX REACTS_WITH TRRAP -MAX REACTS_WITH ZBTB17 -MBD2 IN_SAME_COMPONENT CHD3 -MBD2 IN_SAME_COMPONENT CHD4 -MBD2 IN_SAME_COMPONENT GATAD2A -MBD2 IN_SAME_COMPONENT GATAD2B -MBD2 IN_SAME_COMPONENT HDAC1 -MBD2 IN_SAME_COMPONENT HDAC2 -MBD2 IN_SAME_COMPONENT MBD3 -MBD2 IN_SAME_COMPONENT MTA2 -MBD2 IN_SAME_COMPONENT RBBP4 -MBD2 IN_SAME_COMPONENT RBBP7 -MBD2 REACTS_WITH CHD3 -MBD2 REACTS_WITH CHD4 -MBD2 REACTS_WITH GATAD2A -MBD2 REACTS_WITH GATAD2B -MBD2 REACTS_WITH HDAC1 -MBD2 REACTS_WITH HDAC2 -MBD2 REACTS_WITH MBD2 -MBD2 REACTS_WITH MBD3 -MBD2 REACTS_WITH MBD3L2 -MBD2 REACTS_WITH MTA2 -MBD2 REACTS_WITH PRMT5 -MBD2 REACTS_WITH RBBP4 -MBD2 REACTS_WITH RBBP7 -MBD2 REACTS_WITH WDR77 -MBD3 IN_SAME_COMPONENT CHD3 -MBD3 IN_SAME_COMPONENT CHD4 -MBD3 IN_SAME_COMPONENT GATA1 -MBD3 IN_SAME_COMPONENT GATAD2A -MBD3 IN_SAME_COMPONENT GATAD2B -MBD3 IN_SAME_COMPONENT HDAC1 -MBD3 IN_SAME_COMPONENT HDAC2 -MBD3 IN_SAME_COMPONENT MBD2 -MBD3 IN_SAME_COMPONENT MBD3L2 -MBD3 IN_SAME_COMPONENT MTA2 -MBD3 IN_SAME_COMPONENT RBBP4 -MBD3 IN_SAME_COMPONENT RBBP7 -MBD3 IN_SAME_COMPONENT ZFPM1 -MBD3L2 IN_SAME_COMPONENT CHD3 -MBD3L2 IN_SAME_COMPONENT CHD4 -MBD3L2 IN_SAME_COMPONENT GATAD2A -MBD3L2 IN_SAME_COMPONENT GATAD2B -MBD3L2 IN_SAME_COMPONENT HDAC1 -MBD3L2 IN_SAME_COMPONENT HDAC2 -MBD3L2 IN_SAME_COMPONENT MBD3 -MBD3L2 IN_SAME_COMPONENT MTA2 -MBD3L2 IN_SAME_COMPONENT RBBP4 -MBD3L2 IN_SAME_COMPONENT RBBP7 -MBD3L2 REACTS_WITH CHD3 -MBD3L2 REACTS_WITH CHD4 -MBD3L2 REACTS_WITH GATAD2A -MBD3L2 REACTS_WITH GATAD2B -MBD3L2 REACTS_WITH HDAC1 -MBD3L2 REACTS_WITH HDAC2 -MBD3L2 REACTS_WITH MBD2 -MBD3L2 REACTS_WITH MBD3 -MBD3L2 REACTS_WITH MBD3L2 -MBD3L2 REACTS_WITH MTA2 -MBD3L2 REACTS_WITH RBBP4 -MBD3L2 REACTS_WITH RBBP7 -MBD3 REACTS_WITH CHD3 -MBD3 REACTS_WITH CHD4 -MBD3 REACTS_WITH GATA1 -MBD3 REACTS_WITH GATAD2A -MBD3 REACTS_WITH GATAD2B -MBD3 REACTS_WITH HDAC1 -MBD3 REACTS_WITH HDAC2 -MBD3 REACTS_WITH MBD2 -MBD3 REACTS_WITH MBD3 -MBD3 REACTS_WITH MBD3L2 -MBD3 REACTS_WITH MTA2 -MBD3 REACTS_WITH RBBP4 -MBD3 REACTS_WITH RBBP7 -MBD3 REACTS_WITH ZFPM1 -MC4R IN_SAME_COMPONENT AGRP -MC4R IN_SAME_COMPONENT POMC -MC4R IN_SAME_COMPONENT SDC3 -MC4R REACTS_WITH AGRP -MC4R REACTS_WITH MC4R -MC4R REACTS_WITH POMC -MC4R REACTS_WITH SDC3 -MCF2 CO_CONTROL ARHGDIA -MCF2L STATE_CHANGE CDC42 -MCF2L STATE_CHANGE RHOA -MCF2 STATE_CHANGE CDC42 -MCF2 STATE_CHANGE RAC1 -MCF2 STATE_CHANGE RHOA -MCL1 IN_SAME_COMPONENT BAK1 -MCL1 REACTS_WITH BAK1 -MCL1 REACTS_WITH MCL1 -MCL1 REACTS_WITH TP53 -MDC1 IN_SAME_COMPONENT ATM -MDC1 IN_SAME_COMPONENT BRCA1 -MDC1 IN_SAME_COMPONENT FAM175A -MDC1 IN_SAME_COMPONENT H2AFX -MDC1 IN_SAME_COMPONENT MRE11A -MDC1 IN_SAME_COMPONENT NBN -MDC1 IN_SAME_COMPONENT RAD50 -MDC1 IN_SAME_COMPONENT RNF8 -MDC1 IN_SAME_COMPONENT TP53BP1 -MDC1 IN_SAME_COMPONENT UIMC1 -MDC1 METABOLIC_CATALYSIS SMC3 -MDC1 REACTS_WITH ATM -MDC1 REACTS_WITH BRCA1 -MDC1 REACTS_WITH CTBP1 -MDC1 REACTS_WITH FAM175A -MDC1 REACTS_WITH H2AFX -MDC1 REACTS_WITH MDC1 -MDC1 REACTS_WITH MRE11A -MDC1 REACTS_WITH NBN -MDC1 REACTS_WITH RAD50 -MDC1 REACTS_WITH RBBP8 -MDC1 REACTS_WITH RNF8 -MDC1 REACTS_WITH TP53BP1 -MDC1 REACTS_WITH UIMC1 -MDC1 STATE_CHANGE CHEK2 -MDC1 STATE_CHANGE DCLRE1C -MDC1 STATE_CHANGE SMC1A -MDC1 STATE_CHANGE TRIM28 -MDFIC IN_SAME_COMPONENT CTNNB1 -MDFIC IN_SAME_COMPONENT MYF5 -MDFIC REACTS_WITH CTNNB1 -MDFIC REACTS_WITH MDFIC -MDFIC REACTS_WITH MYF5 -MDFIC REACTS_WITH MYOG -MDK IN_SAME_COMPONENT GPC2 -MDK IN_SAME_COMPONENT ITGA4 -MDK IN_SAME_COMPONENT ITGA6 -MDK IN_SAME_COMPONENT ITGB1 -MDK IN_SAME_COMPONENT SDC4 -MDK REACTS_WITH GPC2 -MDK REACTS_WITH ITGA4 -MDK REACTS_WITH ITGA6 -MDK REACTS_WITH ITGB1 -MDK REACTS_WITH MDK -MDK REACTS_WITH SDC4 -MDM2 CO_CONTROL AR -MDM2 CO_CONTROL HDAC1 -MDM2 CO_CONTROL KAT5 -MDM2 CO_CONTROL MDM2 -MDM2 CO_CONTROL PIN1 -MDM2 CO_CONTROL TP53 -MDM2 CO_CONTROL UBE2D1 -MDM2 IN_SAME_COMPONENT KAT5 -MDM2 IN_SAME_COMPONENT RPL5 -MDM2 IN_SAME_COMPONENT TRIM28 -MDM2 IN_SAME_COMPONENT UBE2D1 -MDM2 IN_SAME_COMPONENT YY1 -MDM2 METABOLIC_CATALYSIS KLK3 -MDM2 REACTS_WITH KAT5 -MDM2 REACTS_WITH MDM2 -MDM2 REACTS_WITH RPL5 -MDM2 REACTS_WITH UBE2D1 -MDM2 REACTS_WITH YY1 -MDM2 STATE_CHANGE NEDD8 -MDM2 STATE_CHANGE TP53 -MDM4 STATE_CHANGE MDM2 -MED12 IN_SAME_COMPONENT CTNNB1 -MED12 METABOLIC_CATALYSIS AXIN2 -MED12 METABOLIC_CATALYSIS DKK1 -MED12 REACTS_WITH CTNNB1 -MED12 REACTS_WITH MED12 -MED15 IN_SAME_COMPONENT SMAD4 -MED15 REACTS_WITH MED15 -MED15 REACTS_WITH SMAD4 -MED1 CO_CONTROL AR -MED1 IN_SAME_COMPONENT NR1H4 -MED1 METABOLIC_CATALYSIS KLK3 -MED1 REACTS_WITH MED1 -MED1 REACTS_WITH NR1H4 -MEF2C CO_CONTROL CREB1 -MEF2C IN_SAME_COMPONENT HDAC4 -MEF2C IN_SAME_COMPONENT NCOA2 -MEF2C IN_SAME_COMPONENT SMAD4 -MEF2C METABOLIC_CATALYSIS CKM -MEF2C METABOLIC_CATALYSIS NTF3 -MEF2C REACTS_WITH HDAC4 -MEF2C REACTS_WITH MEF2C -MEF2C REACTS_WITH NCOA2 -MEF2C REACTS_WITH SMAD4 -MEF2D IN_SAME_COMPONENT CABIN1 -MEF2D IN_SAME_COMPONENT CALM1 -MEF2D IN_SAME_COMPONENT CAMK4 -MEF2D IN_SAME_COMPONENT HDAC4 -MEF2D IN_SAME_COMPONENT NFATC2 -MEF2D IN_SAME_COMPONENT SIRT1 -MEF2D METABOLIC_CATALYSIS NR4A1 -MEF2D REACTS_WITH CABIN1 -MEF2D REACTS_WITH CALM1 -MEF2D REACTS_WITH CAMK4 -MEF2D REACTS_WITH HDAC4 -MEF2D REACTS_WITH MEF2D -MEF2D REACTS_WITH NFATC2 -MEF2D REACTS_WITH SIRT1 -MEF2D REACTS_WITH YWHAQ -MEP1B STATE_CHANGE CDH1 -MEP1B STATE_CHANGE CTNNA1 -MEP1B STATE_CHANGE CTNND1 -MET CO_CONTROL SRC -MET IN_SAME_COMPONENT CRK -MET IN_SAME_COMPONENT CRKL -MET IN_SAME_COMPONENT CTNNB1 -MET IN_SAME_COMPONENT EPS15 -MET IN_SAME_COMPONENT GAB1 -MET IN_SAME_COMPONENT GAB2 -MET IN_SAME_COMPONENT HGF -MET IN_SAME_COMPONENT INPP5D -MET IN_SAME_COMPONENT INPPL1 -MET IN_SAME_COMPONENT MUC20 -MET IN_SAME_COMPONENT PAK4 -MET IN_SAME_COMPONENT PTPN11 -MET IN_SAME_COMPONENT RANBP10 -MET IN_SAME_COMPONENT RANBP9 -MET IN_SAME_COMPONENT SDC1 -MET IN_SAME_COMPONENT SOS1 -MET IN_SAME_COMPONENT WASL -MET INTERACTS_WITH PLAU -MET INTERACTS_WITH PLAUR -MET REACTS_WITH CDH1 -MET REACTS_WITH CRK -MET REACTS_WITH CRKL -MET REACTS_WITH CTNNA1 -MET REACTS_WITH CTNNB1 -MET REACTS_WITH EPS15 -MET REACTS_WITH GAB1 -MET REACTS_WITH GAB2 -MET REACTS_WITH HGF -MET REACTS_WITH INPP5D -MET REACTS_WITH INPPL1 -MET REACTS_WITH ITGA6 -MET REACTS_WITH ITGB4 -MET REACTS_WITH MET -MET REACTS_WITH PAK4 -MET REACTS_WITH PTPN11 -MET REACTS_WITH RANBP10 -MET REACTS_WITH RANBP9 -MET REACTS_WITH SDC1 -MET REACTS_WITH SOS1 -MET REACTS_WITH WASL -MET STATE_CHANGE BCAR1 -MET STATE_CHANGE CDC42 -MET STATE_CHANGE CDH1 -MET STATE_CHANGE CDH2 -MET STATE_CHANGE CRK -MET STATE_CHANGE CTNNA1 -MET STATE_CHANGE CTNNB1 -MET STATE_CHANGE CTNND1 -MET STATE_CHANGE GAB1 -MET STATE_CHANGE HGF -MET STATE_CHANGE HRAS -MET STATE_CHANGE MAPK8 -MET STATE_CHANGE MET -MET STATE_CHANGE PLCG1 -MET STATE_CHANGE RAPGEF1 -MET STATE_CHANGE SOS1 -MET STATE_CHANGE SRC -MFAP5 STATE_CHANGE JAG1 -MFAP5 STATE_CHANGE NOTCH1 -MFGE8 IN_SAME_COMPONENT ITGAV -MFGE8 IN_SAME_COMPONENT ITGB3 -MFGE8 REACTS_WITH ITGAV -MFGE8 REACTS_WITH ITGB3 -MFGE8 REACTS_WITH MFGE8 -MIB1 STATE_CHANGE DLL1 -MITF IN_SAME_COMPONENT PIAS3 -MITF METABOLIC_CATALYSIS CDKN1A -MITF REACTS_WITH MITF -MITF REACTS_WITH PIAS3 -MITF REACTS_WITH RPS6KB1 -MITF REACTS_WITH STAT3 -MKNK1 REACTS_WITH MKNK1 -MKNK1 STATE_CHANGE EIF4E -MKNK1 STATE_CHANGE PLA2G4A -MLF1IP IN_SAME_COMPONENT PLK1 -MLF1IP REACTS_WITH MLF1IP -MLF1IP REACTS_WITH PLK1 -MLLT4 IN_SAME_COMPONENT PTPN11 -MLLT4 IN_SAME_COMPONENT SIPA1 -MLLT4 REACTS_WITH MLLT4 -MLLT4 REACTS_WITH PTPN11 -MLLT4 REACTS_WITH SIPA1 -MLLT4 STATE_CHANGE PDGFB -MLLT4 STATE_CHANGE PDGFRB -MLST8 CO_CONTROL CCNE1 -MLST8 CO_CONTROL CDK2 -MLST8 CO_CONTROL RPS6KB1 -MLST8 IN_SAME_COMPONENT AKT1S1 -MLST8 IN_SAME_COMPONENT ATG13 -MLST8 IN_SAME_COMPONENT DEPTOR -MLST8 IN_SAME_COMPONENT MAPKAP1 -MLST8 IN_SAME_COMPONENT MTOR -MLST8 IN_SAME_COMPONENT PPARGC1A -MLST8 IN_SAME_COMPONENT RB1CC1 -MLST8 IN_SAME_COMPONENT RICTOR -MLST8 IN_SAME_COMPONENT RPTOR -MLST8 IN_SAME_COMPONENT YY1 -MLST8 METABOLIC_CATALYSIS CYCS -MLST8 METABOLIC_CATALYSIS PPARGC1A -MLST8 REACTS_WITH AKT1S1 -MLST8 REACTS_WITH ATG13 -MLST8 REACTS_WITH DEPTOR -MLST8 REACTS_WITH MAPKAP1 -MLST8 REACTS_WITH MLST8 -MLST8 REACTS_WITH MTOR -MLST8 REACTS_WITH PPARGC1A -MLST8 REACTS_WITH RB1CC1 -MLST8 REACTS_WITH RICTOR -MLST8 REACTS_WITH RPTOR -MLST8 REACTS_WITH YY1 -MLST8 STATE_CHANGE AKT1 -MLST8 STATE_CHANGE CLIP1 -MLST8 STATE_CHANGE EIF4E -MLST8 STATE_CHANGE EIF4EBP1 -MLST8 STATE_CHANGE IRS1 -MLST8 STATE_CHANGE PRKCA -MLST8 STATE_CHANGE RPS6KB1 -MLST8 STATE_CHANGE RRN3 -MLST8 STATE_CHANGE SGK1 -MLST8 STATE_CHANGE SREBF1 -MLTK STATE_CHANGE MAP2K6 -MMP12 STATE_CHANGE PLAUR -MMP2 IN_SAME_COMPONENT ITGAM -MMP2 IN_SAME_COMPONENT ITGB2 -MMP2 IN_SAME_COMPONENT SDC2 -MMP2 INTERACTS_WITH PLAU -MMP2 REACTS_WITH ITGAM -MMP2 REACTS_WITH ITGB2 -MMP2 REACTS_WITH MMP2 -MMP2 REACTS_WITH SDC2 -MMP2 STATE_CHANGE HBEGF -MMP3 STATE_CHANGE BDNF -MMP3 STATE_CHANGE CDH1 -MMP3 STATE_CHANGE CTNNA1 -MMP3 STATE_CHANGE CTNND1 -MMP7 STATE_CHANGE BDNF -MMP7 STATE_CHANGE CDH1 -MMP7 STATE_CHANGE CTNNA1 -MMP7 STATE_CHANGE CTNND1 -MMP7 STATE_CHANGE NGF -MMP9 IN_SAME_COMPONENT ITGAM -MMP9 IN_SAME_COMPONENT ITGB2 -MMP9 REACTS_WITH ITGAM -MMP9 REACTS_WITH ITGB2 -MMP9 REACTS_WITH MMP9 -MMP9 REACTS_WITH NFKB1 -MMP9 REACTS_WITH PLAU -MMP9 REACTS_WITH RELA -MMP9 STATE_CHANGE HBEGF -MMP9 STATE_CHANGE SDC4 -MNAT1 IN_SAME_COMPONENT CCNH -MNAT1 IN_SAME_COMPONENT CDK7 -MNAT1 STATE_CHANGE CCNH -MNAT1 STATE_CHANGE RARA -MRE11A IN_SAME_COMPONENT ATM -MRE11A IN_SAME_COMPONENT BARD1 -MRE11A IN_SAME_COMPONENT BRCA1 -MRE11A IN_SAME_COMPONENT FAM175A -MRE11A IN_SAME_COMPONENT H2AFX -MRE11A IN_SAME_COMPONENT MDC1 -MRE11A IN_SAME_COMPONENT NBN -MRE11A IN_SAME_COMPONENT RAD50 -MRE11A IN_SAME_COMPONENT RBBP8 -MRE11A IN_SAME_COMPONENT RNF8 -MRE11A IN_SAME_COMPONENT TERF2 -MRE11A IN_SAME_COMPONENT TERF2IP -MRE11A IN_SAME_COMPONENT TP53BP1 -MRE11A IN_SAME_COMPONENT UIMC1 -MRE11A METABOLIC_CATALYSIS SMC3 -MRE11A REACTS_WITH ATM -MRE11A REACTS_WITH BARD1 -MRE11A REACTS_WITH BRCA1 -MRE11A REACTS_WITH CTBP1 -MRE11A REACTS_WITH FAM175A -MRE11A REACTS_WITH H2AFX -MRE11A REACTS_WITH MDC1 -MRE11A REACTS_WITH MRE11A -MRE11A REACTS_WITH NBN -MRE11A REACTS_WITH RAD50 -MRE11A REACTS_WITH RBBP8 -MRE11A REACTS_WITH RNF8 -MRE11A REACTS_WITH TERF2 -MRE11A REACTS_WITH TERF2IP -MRE11A REACTS_WITH TP53BP1 -MRE11A REACTS_WITH UIMC1 -MRE11A STATE_CHANGE CHEK2 -MRE11A STATE_CHANGE DCLRE1C -MRE11A STATE_CHANGE FANCD2 -MRE11A STATE_CHANGE H2AFX -MRE11A STATE_CHANGE SMC1A -MRE11A STATE_CHANGE TRIM28 -MRE11A STATE_CHANGE XRCC4 -MS4A2 IN_SAME_COMPONENT DOK1 -MS4A2 IN_SAME_COMPONENT FCER1A -MS4A2 IN_SAME_COMPONENT FCER1G -MS4A2 IN_SAME_COMPONENT FCGR2B -MS4A2 IN_SAME_COMPONENT FYN -MS4A2 IN_SAME_COMPONENT IGHE -MS4A2 IN_SAME_COMPONENT INPP5D -MS4A2 IN_SAME_COMPONENT LYN -MS4A2 IN_SAME_COMPONENT RASA1 -MS4A2 IN_SAME_COMPONENT SYK -MS4A2 IN_SAME_COMPONENT WIPF1 -MS4A2 REACTS_WITH DOK1 -MS4A2 REACTS_WITH FCER1A -MS4A2 REACTS_WITH FCER1G -MS4A2 REACTS_WITH FCGR2B -MS4A2 REACTS_WITH FYN -MS4A2 REACTS_WITH IGHE -MS4A2 REACTS_WITH INPP5D -MS4A2 REACTS_WITH LYN -MS4A2 REACTS_WITH MS4A2 -MS4A2 REACTS_WITH RASA1 -MS4A2 REACTS_WITH SYK -MS4A2 REACTS_WITH WIPF1 -MS4A2 STATE_CHANGE BTK -MS4A2 STATE_CHANGE CBL -MS4A2 STATE_CHANGE CBLB -MS4A2 STATE_CHANGE FER -MS4A2 STATE_CHANGE GAB2 -MS4A2 STATE_CHANGE HCLS1 -MS4A2 STATE_CHANGE ITK -MS4A2 STATE_CHANGE KLRG1 -MS4A2 STATE_CHANGE LAT -MS4A2 STATE_CHANGE LAT2 -MS4A2 STATE_CHANGE LCP2 -MS4A2 STATE_CHANGE NFATC2 -MS4A2 STATE_CHANGE PIK3CA -MS4A2 STATE_CHANGE PIK3R1 -MS4A2 STATE_CHANGE PLA2G4A -MS4A2 STATE_CHANGE PLCG1 -MS4A2 STATE_CHANGE PLD2 -MS4A2 STATE_CHANGE PTPN11 -MS4A2 STATE_CHANGE RAF1 -MS4A2 STATE_CHANGE SPHK1 -MS4A2 STATE_CHANGE VAV1 -MST1 IN_SAME_COMPONENT MST1R -MST1 INTERACTS_WITH ITGA6 -MST1 INTERACTS_WITH ITGB4 -MST1 REACTS_WITH MST1 -MST1 REACTS_WITH MST1R -MST1R IN_SAME_COMPONENT MST1 -MST1R INTERACTS_WITH ITGA6 -MST1R INTERACTS_WITH ITGB4 -MST1R REACTS_WITH MST1 -MST1R REACTS_WITH MST1R -MST1R STATE_CHANGE ICAM1 -MST1R STATE_CHANGE ITGAM -MST1R STATE_CHANGE ITGB2 -MST1 STATE_CHANGE FOXO3 -MST1 STATE_CHANGE ICAM1 -MST1 STATE_CHANGE ITGAM -MST1 STATE_CHANGE ITGB2 -MST4 STATE_CHANGE EZR -MTA2 IN_SAME_COMPONENT CHD3 -MTA2 IN_SAME_COMPONENT CHD4 -MTA2 IN_SAME_COMPONENT GATA1 -MTA2 IN_SAME_COMPONENT GATAD2A -MTA2 IN_SAME_COMPONENT GATAD2B -MTA2 IN_SAME_COMPONENT HDAC1 -MTA2 IN_SAME_COMPONENT HDAC2 -MTA2 IN_SAME_COMPONENT MBD2 -MTA2 IN_SAME_COMPONENT MBD3 -MTA2 IN_SAME_COMPONENT MBD3L2 -MTA2 IN_SAME_COMPONENT RBBP4 -MTA2 IN_SAME_COMPONENT RBBP7 -MTA2 IN_SAME_COMPONENT ZFPM1 -MTA2 REACTS_WITH CHD3 -MTA2 REACTS_WITH CHD4 -MTA2 REACTS_WITH GATA1 -MTA2 REACTS_WITH GATAD2A -MTA2 REACTS_WITH GATAD2B -MTA2 REACTS_WITH HDAC1 -MTA2 REACTS_WITH HDAC2 -MTA2 REACTS_WITH MBD2 -MTA2 REACTS_WITH MBD3 -MTA2 REACTS_WITH MBD3L2 -MTA2 REACTS_WITH MTA2 -MTA2 REACTS_WITH PRMT5 -MTA2 REACTS_WITH RBBP4 -MTA2 REACTS_WITH RBBP7 -MTA2 REACTS_WITH WDR77 -MTA2 REACTS_WITH ZFPM1 -MTOR CO_CONTROL CCNE1 -MTOR CO_CONTROL CDK2 -MTOR CO_CONTROL RPS6KB1 -MTOR IN_SAME_COMPONENT AKT1 -MTOR IN_SAME_COMPONENT AKT1S1 -MTOR IN_SAME_COMPONENT ATG13 -MTOR IN_SAME_COMPONENT DEPTOR -MTOR IN_SAME_COMPONENT DKC1 -MTOR IN_SAME_COMPONENT HSP90AA1 -MTOR IN_SAME_COMPONENT MAPKAP1 -MTOR IN_SAME_COMPONENT MLST8 -MTOR IN_SAME_COMPONENT PPARGC1A -MTOR IN_SAME_COMPONENT PTGES3 -MTOR IN_SAME_COMPONENT RB1CC1 -MTOR IN_SAME_COMPONENT RICTOR -MTOR IN_SAME_COMPONENT RPS6KB1 -MTOR IN_SAME_COMPONENT RPTOR -MTOR IN_SAME_COMPONENT TERT -MTOR IN_SAME_COMPONENT YY1 -MTOR METABOLIC_CATALYSIS BCL2 -MTOR METABOLIC_CATALYSIS CYCS -MTOR METABOLIC_CATALYSIS HES5 -MTOR METABOLIC_CATALYSIS PAX6 -MTOR METABOLIC_CATALYSIS PPARGC1A -MTOR REACTS_WITH AKT1 -MTOR REACTS_WITH AKT1S1 -MTOR REACTS_WITH ATG13 -MTOR REACTS_WITH DEPTOR -MTOR REACTS_WITH DKC1 -MTOR REACTS_WITH HSP90AA1 -MTOR REACTS_WITH MAPKAP1 -MTOR REACTS_WITH MLST8 -MTOR REACTS_WITH MTOR -MTOR REACTS_WITH PPARGC1A -MTOR REACTS_WITH PTGES3 -MTOR REACTS_WITH RB1CC1 -MTOR REACTS_WITH RICTOR -MTOR REACTS_WITH RPS6KB1 -MTOR REACTS_WITH RPTOR -MTOR REACTS_WITH TERT -MTOR REACTS_WITH YY1 -MTOR STATE_CHANGE AKT1 -MTOR STATE_CHANGE CLIP1 -MTOR STATE_CHANGE EIF4E -MTOR STATE_CHANGE EIF4EBP1 -MTOR STATE_CHANGE IRS1 -MTOR STATE_CHANGE NFKB1 -MTOR STATE_CHANGE PRKCA -MTOR STATE_CHANGE RELA -MTOR STATE_CHANGE RPS6KB1 -MTOR STATE_CHANGE RRN3 -MTOR STATE_CHANGE SGK1 -MTOR STATE_CHANGE SREBF1 -MTOR STATE_CHANGE STAT3 -MTSS1 IN_SAME_COMPONENT GLI1 -MTSS1 METABOLIC_CATALYSIS FOXA2 -MTSS1 REACTS_WITH GLI1 -MTSS1 REACTS_WITH MTSS1 -MUC20 IN_SAME_COMPONENT MET -MUC20 STATE_CHANGE HGF -MUC20 STATE_CHANGE MET -MUC20 STATE_CHANGE SOS1 -MXD1 IN_SAME_COMPONENT HDAC1 -MXD1 IN_SAME_COMPONENT HDAC2 -MXD1 IN_SAME_COMPONENT MAX -MXD1 IN_SAME_COMPONENT RBBP4 -MXD1 IN_SAME_COMPONENT RBBP7 -MXD1 IN_SAME_COMPONENT SAP18 -MXD1 IN_SAME_COMPONENT SAP30 -MXD1 IN_SAME_COMPONENT SIN3A -MXD1 IN_SAME_COMPONENT SIN3B -MXD1 METABOLIC_CATALYSIS TERT -MXD1 REACTS_WITH HDAC1 -MXD1 REACTS_WITH HDAC2 -MXD1 REACTS_WITH MAX -MXD1 REACTS_WITH MXD1 -MXD1 REACTS_WITH RBBP4 -MXD1 REACTS_WITH RBBP7 -MXD1 REACTS_WITH SAP18 -MXD1 REACTS_WITH SAP30 -MXD1 REACTS_WITH SIN3A -MXD1 REACTS_WITH SIN3B -MYB IN_SAME_COMPONENT CCND1 -MYB IN_SAME_COMPONENT CDK6 -MYB IN_SAME_COMPONENT CREBBP -MYB IN_SAME_COMPONENT GATA1 -MYB IN_SAME_COMPONENT HES1 -MYB IN_SAME_COMPONENT LEF1 -MYB IN_SAME_COMPONENT MAF -MYB IN_SAME_COMPONENT MYOD1 -MYB IN_SAME_COMPONENT NCOR1 -MYB IN_SAME_COMPONENT PIM1 -MYB IN_SAME_COMPONENT PPID -MYB IN_SAME_COMPONENT SIN3A -MYB IN_SAME_COMPONENT SKI -MYB IN_SAME_COMPONENT SND1 -MYB IN_SAME_COMPONENT TRIM28 -MYBL2 CO_CONTROL E2F4 -MYBL2 CO_CONTROL TFDP1 -MYBL2 CO_CONTROL TFDP2 -MYBL2 METABOLIC_CATALYSIS CDK1 -MYB METABOLIC_CATALYSIS ADA -MYB METABOLIC_CATALYSIS ADORA2B -MYB METABOLIC_CATALYSIS ANPEP -MYB METABOLIC_CATALYSIS ATP2B1 -MYB METABOLIC_CATALYSIS BCL2 -MYB METABOLIC_CATALYSIS BIRC3 -MYB METABOLIC_CATALYSIS CA1 -MYB METABOLIC_CATALYSIS CASP6 -MYB METABOLIC_CATALYSIS CBX4 -MYB METABOLIC_CATALYSIS CCNA1 -MYB METABOLIC_CATALYSIS CCNB1 -MYB METABOLIC_CATALYSIS CD34 -MYB METABOLIC_CATALYSIS CD4 -MYB METABOLIC_CATALYSIS CEBPB -MYB METABOLIC_CATALYSIS CLTA -MYB METABOLIC_CATALYSIS COL1A2 -MYB METABOLIC_CATALYSIS COPA -MYB METABOLIC_CATALYSIS CSF1R -MYB METABOLIC_CATALYSIS ELANE -MYB METABOLIC_CATALYSIS GATA1 -MYB METABOLIC_CATALYSIS GATA3 -MYB METABOLIC_CATALYSIS GSTM1 -MYB METABOLIC_CATALYSIS HSPA8 -MYB METABOLIC_CATALYSIS IQGAP1 -MYB METABOLIC_CATALYSIS KIT -MYB METABOLIC_CATALYSIS KITLG -MYB METABOLIC_CATALYSIS LECT2 -MYB METABOLIC_CATALYSIS LYZ -MYB METABOLIC_CATALYSIS MAD1L1 -MYB METABOLIC_CATALYSIS MAT2A -MYB METABOLIC_CATALYSIS MCM4 -MYB METABOLIC_CATALYSIS MPO -MYB METABOLIC_CATALYSIS MYB -MYB METABOLIC_CATALYSIS MYC -MYB METABOLIC_CATALYSIS MYF6 -MYB METABOLIC_CATALYSIS NRAS -MYB METABOLIC_CATALYSIS PPP3CA -MYB METABOLIC_CATALYSIS PRTN3 -MYB METABOLIC_CATALYSIS PTCRA -MYB METABOLIC_CATALYSIS PTGS2 -MYB METABOLIC_CATALYSIS RAG2 -MYB METABOLIC_CATALYSIS SLC25A3 -MYB METABOLIC_CATALYSIS TFEC -MYB METABOLIC_CATALYSIS TOM1 -MYB METABOLIC_CATALYSIS YEATS4 -MYB REACTS_WITH CCND1 -MYB REACTS_WITH CDK6 -MYB REACTS_WITH CREBBP -MYB REACTS_WITH GATA1 -MYB REACTS_WITH HES1 -MYB REACTS_WITH LEF1 -MYB REACTS_WITH MAF -MYB REACTS_WITH MYB -MYB REACTS_WITH MYOD1 -MYB REACTS_WITH NCOR1 -MYB REACTS_WITH PIM1 -MYB REACTS_WITH PPID -MYB REACTS_WITH SIN3A -MYB REACTS_WITH SKI -MYB REACTS_WITH SND1 -MYB REACTS_WITH TRIM28 -MYCBP CO_CONTROL ENO1 -MYCBP CO_CONTROL NOTCH1 -MYCBP CO_CONTROL YY1 -MYCBP METABOLIC_CATALYSIS MYC -MYC CO_CONTROL ACTL6A -MYC CO_CONTROL BRCA1 -MYC CO_CONTROL CREB1 -MYC CO_CONTROL FOXO3 -MYC CO_CONTROL HDAC3 -MYC CO_CONTROL KAT5 -MYC CO_CONTROL MAX -MYC CO_CONTROL MYC -MYC CO_CONTROL NFYA -MYC CO_CONTROL NFYB -MYC CO_CONTROL NFYC -MYC CO_CONTROL RBL1 -MYC CO_CONTROL RUVBL1 -MYC CO_CONTROL RUVBL2 -MYC CO_CONTROL SMAD4 -MYC CO_CONTROL SP1 -MYC CO_CONTROL TBP -MYC CO_CONTROL TRRAP -MYC CO_CONTROL UBTF -MYC CO_CONTROL ZBTB17 -MYC IN_SAME_COMPONENT ACTL6A -MYC IN_SAME_COMPONENT DNMT3A -MYC IN_SAME_COMPONENT GFI1 -MYC IN_SAME_COMPONENT HBP1 -MYC IN_SAME_COMPONENT HDAC3 -MYC IN_SAME_COMPONENT KAT2A -MYC IN_SAME_COMPONENT KAT5 -MYC IN_SAME_COMPONENT MAX -MYC IN_SAME_COMPONENT NFYA -MYC IN_SAME_COMPONENT NFYB -MYC IN_SAME_COMPONENT NFYC -MYC IN_SAME_COMPONENT PIM1 -MYC IN_SAME_COMPONENT RUVBL1 -MYC IN_SAME_COMPONENT RUVBL2 -MYC IN_SAME_COMPONENT SMAD4 -MYC IN_SAME_COMPONENT SUPT3H -MYC IN_SAME_COMPONENT SUPT7L -MYC IN_SAME_COMPONENT TAF10 -MYC IN_SAME_COMPONENT TAF12 -MYC IN_SAME_COMPONENT TAF9 -MYC IN_SAME_COMPONENT TJP2 -MYC IN_SAME_COMPONENT TRRAP -MYC IN_SAME_COMPONENT ZBTB17 -MYC METABOLIC_CATALYSIS ALDH9A1 -MYC METABOLIC_CATALYSIS BAX -MYC METABOLIC_CATALYSIS BCAT1 -MYC METABOLIC_CATALYSIS BCL2 -MYC METABOLIC_CATALYSIS BIRC5 -MYC METABOLIC_CATALYSIS BMI1 -MYC METABOLIC_CATALYSIS CAD -MYC METABOLIC_CATALYSIS CCL5 -MYC METABOLIC_CATALYSIS CCNB1 -MYC METABOLIC_CATALYSIS CCND2 -MYC METABOLIC_CATALYSIS CDC25A -MYC METABOLIC_CATALYSIS CDCA7 -MYC METABOLIC_CATALYSIS CDK4 -MYC METABOLIC_CATALYSIS CDKN1A -MYC METABOLIC_CATALYSIS CDKN1B -MYC METABOLIC_CATALYSIS CDKN2B -MYC METABOLIC_CATALYSIS CEBPA -MYC METABOLIC_CATALYSIS CEBPD -MYC METABOLIC_CATALYSIS CFLAR -MYC METABOLIC_CATALYSIS CLU -MYC METABOLIC_CATALYSIS COL1A2 -MYC METABOLIC_CATALYSIS CSDE1 -MYC METABOLIC_CATALYSIS DDIT3 -MYC METABOLIC_CATALYSIS DDX18 -MYC METABOLIC_CATALYSIS DKK1 -MYC METABOLIC_CATALYSIS DNTT -MYC METABOLIC_CATALYSIS E2F3 -MYC METABOLIC_CATALYSIS EIF2S1 -MYC METABOLIC_CATALYSIS EIF4A1 -MYC METABOLIC_CATALYSIS EIF4E -MYC METABOLIC_CATALYSIS EIF4G1 -MYC METABOLIC_CATALYSIS ENO1 -MYC METABOLIC_CATALYSIS ERBB2 -MYC METABOLIC_CATALYSIS FOSL1 -MYC METABOLIC_CATALYSIS FTH1 -MYC METABOLIC_CATALYSIS GADD45A -MYC METABOLIC_CATALYSIS GAPDH -MYC METABOLIC_CATALYSIS GPAM -MYC METABOLIC_CATALYSIS GTF2H2 -MYC METABOLIC_CATALYSIS HMGA1 -MYC METABOLIC_CATALYSIS HMGCS2 -MYC METABOLIC_CATALYSIS HSP90AA1 -MYC METABOLIC_CATALYSIS HSPA4 -MYC METABOLIC_CATALYSIS HSPD1 -MYC METABOLIC_CATALYSIS ID2 -MYC METABOLIC_CATALYSIS IREB2 -MYC METABOLIC_CATALYSIS ITGA6 -MYC METABOLIC_CATALYSIS ITGB1 -MYC METABOLIC_CATALYSIS ITGB4 -MYC METABOLIC_CATALYSIS KIR3DL1 -MYC METABOLIC_CATALYSIS LDHA -MYC METABOLIC_CATALYSIS LGALS1 -MYC METABOLIC_CATALYSIS LIN28B -MYC METABOLIC_CATALYSIS MINA -MYC METABOLIC_CATALYSIS MMP9 -MYC METABOLIC_CATALYSIS MTA1 -MYC METABOLIC_CATALYSIS MTDH -MYC METABOLIC_CATALYSIS MXD4 -MYC METABOLIC_CATALYSIS MYC -MYC METABOLIC_CATALYSIS MYCT1 -MYC METABOLIC_CATALYSIS NBN -MYC METABOLIC_CATALYSIS NCL -MYC METABOLIC_CATALYSIS NDRG1 -MYC METABOLIC_CATALYSIS NDRG2 -MYC METABOLIC_CATALYSIS NDUFAF2 -MYC METABOLIC_CATALYSIS NME1 -MYC METABOLIC_CATALYSIS NME2 -MYC METABOLIC_CATALYSIS ODC1 -MYC METABOLIC_CATALYSIS PDCD10 -MYC METABOLIC_CATALYSIS PDGFRB -MYC METABOLIC_CATALYSIS PEG10 -MYC METABOLIC_CATALYSIS PFKM -MYC METABOLIC_CATALYSIS PMAIP1 -MYC METABOLIC_CATALYSIS POLR3D -MYC METABOLIC_CATALYSIS PPP2R4 -MYC METABOLIC_CATALYSIS PRDX3 -MYC METABOLIC_CATALYSIS PTMA -MYC METABOLIC_CATALYSIS RCC1 -MYC METABOLIC_CATALYSIS S100A7 -MYC METABOLIC_CATALYSIS SERPINI1 -MYC METABOLIC_CATALYSIS SFRP1 -MYC METABOLIC_CATALYSIS SFXN3 -MYC METABOLIC_CATALYSIS SHMT1 -MYC METABOLIC_CATALYSIS SLC2A1 -MYC METABOLIC_CATALYSIS SNAI1 -MYC METABOLIC_CATALYSIS TAF4B -MYC METABOLIC_CATALYSIS TERT -MYC METABOLIC_CATALYSIS TFRC -MYC METABOLIC_CATALYSIS TK1 -MYC METABOLIC_CATALYSIS TMEFF2 -MYC METABOLIC_CATALYSIS TMEM126A -MYC METABOLIC_CATALYSIS TP53 -MYC METABOLIC_CATALYSIS TSC2 -MYC METABOLIC_CATALYSIS UBTF -MYC METABOLIC_CATALYSIS WNT5A -MYC METABOLIC_CATALYSIS ZFP36L1 -MYC REACTS_WITH ACTL6A -MYC REACTS_WITH DNMT3A -MYC REACTS_WITH EP300 -MYC REACTS_WITH GFI1 -MYC REACTS_WITH HBP1 -MYC REACTS_WITH HDAC3 -MYC REACTS_WITH IRF8 -MYC REACTS_WITH KAT2A -MYC REACTS_WITH KAT5 -MYC REACTS_WITH MAX -MYC REACTS_WITH MYC -MYC REACTS_WITH NFYA -MYC REACTS_WITH NFYB -MYC REACTS_WITH NFYC -MYC REACTS_WITH PFDN5 -MYC REACTS_WITH PIM1 -MYC REACTS_WITH RUVBL1 -MYC REACTS_WITH RUVBL2 -MYC REACTS_WITH SMAD4 -MYC REACTS_WITH SUPT3H -MYC REACTS_WITH SUPT7L -MYC REACTS_WITH TAF10 -MYC REACTS_WITH TAF12 -MYC REACTS_WITH TAF9 -MYC REACTS_WITH TJP2 -MYC REACTS_WITH TRRAP -MYC REACTS_WITH ZBTB17 -MYD88 IN_SAME_COMPONENT BGN -MYD88 IN_SAME_COMPONENT HMGB1 -MYD88 IN_SAME_COMPONENT HSPD1 -MYD88 IN_SAME_COMPONENT IL1A -MYD88 IN_SAME_COMPONENT IL1B -MYD88 IN_SAME_COMPONENT IL1R1 -MYD88 IN_SAME_COMPONENT IRAK1 -MYD88 IN_SAME_COMPONENT IRAK2 -MYD88 IN_SAME_COMPONENT IRAK4 -MYD88 IN_SAME_COMPONENT LY96 -MYD88 IN_SAME_COMPONENT S100A8 -MYD88 IN_SAME_COMPONENT S100A9 -MYD88 IN_SAME_COMPONENT TIRAP -MYD88 IN_SAME_COMPONENT TLR1 -MYD88 IN_SAME_COMPONENT TLR2 -MYD88 IN_SAME_COMPONENT TLR4 -MYD88 IN_SAME_COMPONENT TOLLIP -MYD88 REACTS_WITH BGN -MYD88 REACTS_WITH HMGB1 -MYD88 REACTS_WITH HSPD1 -MYD88 REACTS_WITH IL1A -MYD88 REACTS_WITH IL1B -MYD88 REACTS_WITH IL1R1 -MYD88 REACTS_WITH IRAK1 -MYD88 REACTS_WITH IRAK2 -MYD88 REACTS_WITH IRAK4 -MYD88 REACTS_WITH LY96 -MYD88 REACTS_WITH MYD88 -MYD88 REACTS_WITH S100A8 -MYD88 REACTS_WITH S100A9 -MYD88 REACTS_WITH TIRAP -MYD88 REACTS_WITH TLR1 -MYD88 REACTS_WITH TLR2 -MYD88 REACTS_WITH TLR4 -MYD88 REACTS_WITH TOLLIP -MYD88 REACTS_WITH TRAF6 -MYD88 STATE_CHANGE IRAK1 -MYD88 STATE_CHANGE NGF -MYD88 STATE_CHANGE NGFR -MYD88 STATE_CHANGE RIPK2 -MYD88 STATE_CHANGE TRAF6 -MYF5 IN_SAME_COMPONENT MDFIC -MYF5 REACTS_WITH CTNNB1 -MYF5 REACTS_WITH MDFIC -MYF5 REACTS_WITH MYF5 -MYF5 REACTS_WITH MYOG -MYH2 IN_SAME_COMPONENT FN1 -MYH2 IN_SAME_COMPONENT ITGA4 -MYH2 IN_SAME_COMPONENT ITGB1 -MYH2 INTERACTS_WITH ROCK1 -MYH2 REACTS_WITH FN1 -MYH2 REACTS_WITH ITGA4 -MYH2 REACTS_WITH ITGB1 -MYH2 REACTS_WITH MYH2 -MYH2 REACTS_WITH ROCK1 -MYL2 REACTS_WITH MYL2 -MYO10 IN_SAME_COMPONENT DCC -MYO10 IN_SAME_COMPONENT NTN1 -MYO10 REACTS_WITH DCC -MYO10 REACTS_WITH MYO10 -MYO10 REACTS_WITH NTN1 -MYO6 STATE_CHANGE VCL -MYO9B STATE_CHANGE RHOA -MYOCD CO_CONTROL ELK1 -MYOCD CO_CONTROL SRF -MYOCD IN_SAME_COMPONENT SRF -MYOCD METABOLIC_CATALYSIS ACTA2 -MYOCD METABOLIC_CATALYSIS TAGLN -MYOCD REACTS_WITH ELK1 -MYOCD REACTS_WITH MYOCD -MYOCD REACTS_WITH SRF -MYOD1 IN_SAME_COMPONENT HEY1 -MYOD1 IN_SAME_COMPONENT KAT2B -MYOD1 IN_SAME_COMPONENT MYB -MYOD1 IN_SAME_COMPONENT SIRT1 -MYOD1 IN_SAME_COMPONENT SMAD4 -MYOD1 IN_SAME_COMPONENT TCF3 -MYOD1 METABOLIC_CATALYSIS MYF6 -MYOD1 REACTS_WITH HEY1 -MYOD1 REACTS_WITH KAT2B -MYOD1 REACTS_WITH MYB -MYOD1 REACTS_WITH MYOD1 -MYOD1 REACTS_WITH SIRT1 -MYOD1 REACTS_WITH SMAD4 -MYOD1 REACTS_WITH TCF3 -MYOD1 STATE_CHANGE MEF2C -MYOF IN_SAME_COMPONENT DNM2 -MYOF IN_SAME_COMPONENT KDR -MYOF IN_SAME_COMPONENT VEGFA -MYOF REACTS_WITH DNM2 -MYOF REACTS_WITH KDR -MYOF REACTS_WITH MYOF -MYOF REACTS_WITH VEGFA -MYOF STATE_CHANGE CBL -MYOF STATE_CHANGE KDR -MYOF STATE_CHANGE VEGFA -MYOG IN_SAME_COMPONENT CTNNB1 -MYOG REACTS_WITH CTNNB1 -MYOG REACTS_WITH MDFIC -MYOG REACTS_WITH MYF5 -MYOG REACTS_WITH MYOG -MYST1 STATE_CHANGE TP53 -MYST2 CO_CONTROL AR -MYST2 METABOLIC_CATALYSIS KLK3 -NAA10 STATE_CHANGE HIF1A -NBN IN_SAME_COMPONENT ATM -NBN IN_SAME_COMPONENT BARD1 -NBN IN_SAME_COMPONENT BRCA1 -NBN IN_SAME_COMPONENT FAM175A -NBN IN_SAME_COMPONENT H2AFX -NBN IN_SAME_COMPONENT MDC1 -NBN IN_SAME_COMPONENT MRE11A -NBN IN_SAME_COMPONENT RAD50 -NBN IN_SAME_COMPONENT RBBP8 -NBN IN_SAME_COMPONENT RNF8 -NBN IN_SAME_COMPONENT TERF2 -NBN IN_SAME_COMPONENT TERF2IP -NBN IN_SAME_COMPONENT TP53BP1 -NBN IN_SAME_COMPONENT UIMC1 -NBN METABOLIC_CATALYSIS SMC3 -NBN REACTS_WITH ATM -NBN REACTS_WITH BARD1 -NBN REACTS_WITH BRCA1 -NBN REACTS_WITH CTBP1 -NBN REACTS_WITH FAM175A -NBN REACTS_WITH H2AFX -NBN REACTS_WITH MDC1 -NBN REACTS_WITH MRE11A -NBN REACTS_WITH NBN -NBN REACTS_WITH RAD50 -NBN REACTS_WITH RBBP8 -NBN REACTS_WITH RNF8 -NBN REACTS_WITH TERF2 -NBN REACTS_WITH TERF2IP -NBN REACTS_WITH TP53BP1 -NBN REACTS_WITH UIMC1 -NBN STATE_CHANGE CHEK2 -NBN STATE_CHANGE DCLRE1C -NBN STATE_CHANGE FANCD2 -NBN STATE_CHANGE H2AFX -NBN STATE_CHANGE SMC1A -NBN STATE_CHANGE TRIM28 -NBN STATE_CHANGE XRCC4 -NCAM1 IN_SAME_COMPONENT FGFR1 -NCAM1 IN_SAME_COMPONENT FGFR2 -NCAM1 REACTS_WITH FGFR1 -NCAM1 REACTS_WITH FGFR2 -NCAM1 REACTS_WITH NCAM1 -NCAN IN_SAME_COMPONENT SDC3 -NCAN REACTS_WITH NCAN -NCAN REACTS_WITH SDC3 -NCAPD2 IN_SAME_COMPONENT NCAPG -NCAPD2 IN_SAME_COMPONENT NCAPH -NCAPD2 IN_SAME_COMPONENT SMC2 -NCAPD2 IN_SAME_COMPONENT SMC4 -NCAPD2 REACTS_WITH NCAPD2 -NCAPD2 REACTS_WITH NCAPG -NCAPD2 REACTS_WITH NCAPH -NCAPD2 REACTS_WITH SMC2 -NCAPD2 REACTS_WITH SMC4 -NCAPG IN_SAME_COMPONENT NCAPD2 -NCAPG IN_SAME_COMPONENT NCAPH -NCAPG IN_SAME_COMPONENT SMC2 -NCAPG IN_SAME_COMPONENT SMC4 -NCAPG REACTS_WITH NCAPD2 -NCAPG REACTS_WITH NCAPG -NCAPG REACTS_WITH NCAPH -NCAPG REACTS_WITH SMC2 -NCAPG REACTS_WITH SMC4 -NCAPH IN_SAME_COMPONENT NCAPD2 -NCAPH IN_SAME_COMPONENT NCAPG -NCAPH IN_SAME_COMPONENT SMC2 -NCAPH IN_SAME_COMPONENT SMC4 -NCAPH REACTS_WITH NCAPD2 -NCAPH REACTS_WITH NCAPG -NCAPH REACTS_WITH NCAPH -NCAPH REACTS_WITH SMC2 -NCAPH REACTS_WITH SMC4 -NCF1 IN_SAME_COMPONENT CYBA -NCF1 IN_SAME_COMPONENT CYBB -NCF1 IN_SAME_COMPONENT NCF2 -NCF1 IN_SAME_COMPONENT RAC1 -NCF1 REACTS_WITH CYBA -NCF1 REACTS_WITH CYBB -NCF1 REACTS_WITH NCF1 -NCF1 REACTS_WITH NCF2 -NCF1 REACTS_WITH RAC1 -NCF2 IN_SAME_COMPONENT CYBA -NCF2 IN_SAME_COMPONENT CYBB -NCF2 IN_SAME_COMPONENT NCF1 -NCF2 IN_SAME_COMPONENT RAC1 -NCF2 REACTS_WITH CYBA -NCF2 REACTS_WITH CYBB -NCF2 REACTS_WITH NCF1 -NCF2 REACTS_WITH NCF2 -NCF2 REACTS_WITH RAC1 -NCK1 CO_CONTROL GIT1 -NCK1 IN_SAME_COMPONENT DCC -NCK1 IN_SAME_COMPONENT DOK1 -NCK1 IN_SAME_COMPONENT DOK2 -NCK1 IN_SAME_COMPONENT EFNA1 -NCK1 IN_SAME_COMPONENT EFNB1 -NCK1 IN_SAME_COMPONENT EPHA2 -NCK1 IN_SAME_COMPONENT FLT1 -NCK1 IN_SAME_COMPONENT GDNF -NCK1 IN_SAME_COMPONENT GFRA1 -NCK1 IN_SAME_COMPONENT GIT1 -NCK1 IN_SAME_COMPONENT GRAP2 -NCK1 IN_SAME_COMPONENT LCP2 -NCK1 IN_SAME_COMPONENT NTN1 -NCK1 IN_SAME_COMPONENT PAK1 -NCK1 IN_SAME_COMPONENT RASA1 -NCK1 IN_SAME_COMPONENT VAV1 -NCK1 IN_SAME_COMPONENT VEGFA -NCK1 REACTS_WITH DCC -NCK1 REACTS_WITH DOK1 -NCK1 REACTS_WITH DOK2 -NCK1 REACTS_WITH EFNA1 -NCK1 REACTS_WITH EFNB1 -NCK1 REACTS_WITH EPHA2 -NCK1 REACTS_WITH FLT1 -NCK1 REACTS_WITH GDNF -NCK1 REACTS_WITH GFRA1 -NCK1 REACTS_WITH GIT1 -NCK1 REACTS_WITH GRAP2 -NCK1 REACTS_WITH LCP2 -NCK1 REACTS_WITH NCK1 -NCK1 REACTS_WITH NTN1 -NCK1 REACTS_WITH PAK1 -NCK1 REACTS_WITH RASA1 -NCK1 REACTS_WITH VAV1 -NCK1 REACTS_WITH VEGFA -NCK1 STATE_CHANGE CDC42 -NCK1 STATE_CHANGE HRAS -NCK1 STATE_CHANGE MAP4K4 -NCK1 STATE_CHANGE MAPK8 -NCK1 STATE_CHANGE TRIO -NCK1 STATE_CHANGE WAS -NCK2 IN_SAME_COMPONENT DAB1 -NCK2 IN_SAME_COMPONENT EFNB1 -NCK2 IN_SAME_COMPONENT IGF1 -NCK2 IN_SAME_COMPONENT IGF1R -NCK2 IN_SAME_COMPONENT INS -NCK2 IN_SAME_COMPONENT INSR -NCK2 IN_SAME_COMPONENT IRS1 -NCK2 REACTS_WITH DAB1 -NCK2 REACTS_WITH EFNB1 -NCK2 REACTS_WITH IGF1 -NCK2 REACTS_WITH IGF1R -NCK2 REACTS_WITH INS -NCK2 REACTS_WITH INSR -NCK2 REACTS_WITH IRS1 -NCK2 REACTS_WITH NCK2 -NCKAP1 IN_SAME_COMPONENT ABI1 -NCKAP1 IN_SAME_COMPONENT ABI2 -NCKAP1 IN_SAME_COMPONENT C3orf10 -NCKAP1 IN_SAME_COMPONENT CYFIP2 -NCKAP1 IN_SAME_COMPONENT WASF1 -NCKAP1 IN_SAME_COMPONENT WASF2 -NCKAP1 REACTS_WITH ABI1 -NCKAP1 REACTS_WITH C3orf10 -NCKAP1 REACTS_WITH CYFIP2 -NCKAP1 REACTS_WITH NCKAP1 -NCKAP1 REACTS_WITH WASF2 -NCKAP1 STATE_CHANGE DIAPH1 -NCKAP1 STATE_CHANGE DIAPH3 -NCKAP1 STATE_CHANGE WASF2 -NCL IN_SAME_COMPONENT DKC1 -NCL IN_SAME_COMPONENT HSP90AA1 -NCL IN_SAME_COMPONENT ITGAV -NCL IN_SAME_COMPONENT ITGB3 -NCL IN_SAME_COMPONENT NSUN2 -NCL IN_SAME_COMPONENT PLAU -NCL IN_SAME_COMPONENT PLAUR -NCL IN_SAME_COMPONENT PTGES3 -NCL IN_SAME_COMPONENT TERT -NCL IN_SAME_COMPONENT VTN -NCL REACTS_WITH DKC1 -NCL REACTS_WITH HSP90AA1 -NCL REACTS_WITH ITGAV -NCL REACTS_WITH ITGB3 -NCL REACTS_WITH NCL -NCL REACTS_WITH NSUN2 -NCL REACTS_WITH PLAU -NCL REACTS_WITH PLAUR -NCL REACTS_WITH PTGES3 -NCL REACTS_WITH TERT -NCL REACTS_WITH VTN -NCOA1 CO_CONTROL AKT1 -NCOA1 CO_CONTROL AR -NCOA1 CO_CONTROL SMARCC1 -NCOA1 IN_SAME_COMPONENT AR -NCOA1 IN_SAME_COMPONENT ARNT -NCOA1 IN_SAME_COMPONENT HEY1 -NCOA1 IN_SAME_COMPONENT HIF1A -NCOA1 IN_SAME_COMPONENT KAT2B -NCOA1 METABOLIC_CATALYSIS EPO -NCOA1 METABOLIC_CATALYSIS KLK3 -NCOA1 METABOLIC_CATALYSIS PCK2 -NCOA1 METABOLIC_CATALYSIS SMARCC1 -NCOA1 REACTS_WITH AR -NCOA1 REACTS_WITH ARNT -NCOA1 REACTS_WITH HEY1 -NCOA1 REACTS_WITH HIF1A -NCOA1 REACTS_WITH KAT2B -NCOA1 REACTS_WITH NCOA1 -NCOA1 REACTS_WITH NCOR2 -NCOA1 STATE_CHANGE SMAD4 -NCOA1 STATE_CHANGE VDR -NCOA2 CO_CONTROL AR -NCOA2 CO_CONTROL ARNT -NCOA2 CO_CONTROL CCND3 -NCOA2 CO_CONTROL CEBPA -NCOA2 CO_CONTROL EHMT2 -NCOA2 CO_CONTROL FOXO1 -NCOA2 CO_CONTROL GATA2 -NCOA2 CO_CONTROL HIF1A -NCOA2 CO_CONTROL POU2F1 -NCOA2 CO_CONTROL SRC -NCOA2 CO_CONTROL TRIM24 -NCOA2 IN_SAME_COMPONENT AR -NCOA2 IN_SAME_COMPONENT CARM1 -NCOA2 IN_SAME_COMPONENT CTNNB1 -NCOA2 IN_SAME_COMPONENT KAT2B -NCOA2 IN_SAME_COMPONENT MEF2C -NCOA2 IN_SAME_COMPONENT SUV420H1 -NCOA2 METABOLIC_CATALYSIS EPO -NCOA2 METABOLIC_CATALYSIS KLK2 -NCOA2 METABOLIC_CATALYSIS KLK3 -NCOA2 REACTS_WITH AR -NCOA2 REACTS_WITH CARM1 -NCOA2 REACTS_WITH CTNNB1 -NCOA2 REACTS_WITH KAT2B -NCOA2 REACTS_WITH MEF2C -NCOA2 REACTS_WITH NCOA2 -NCOA2 REACTS_WITH SMAD4 -NCOA2 REACTS_WITH SUV420H1 -NCOA2 REACTS_WITH TCF7L2 -NCOA3 CO_CONTROL ESR1 -NCOA3 CO_CONTROL FOXA1 -NCOA3 IN_SAME_COMPONENT KAT2B -NCOA3 METABOLIC_CATALYSIS DSCAM -NCOA3 METABOLIC_CATALYSIS NRIP1 -NCOA3 METABOLIC_CATALYSIS SOD1 -NCOA3 METABOLIC_CATALYSIS TFF1 -NCOA3 METABOLIC_CATALYSIS XBP1 -NCOA3 REACTS_WITH KAT2B -NCOA3 REACTS_WITH NCOA3 -NCOA4 IN_SAME_COMPONENT AR -NCOA4 METABOLIC_CATALYSIS KLK3 -NCOA4 REACTS_WITH AR -NCOA4 REACTS_WITH NCOA4 -NCOA6 CO_CONTROL AR -NCOA6 METABOLIC_CATALYSIS KLK3 -NCOR1 CO_CONTROL CITED1 -NCOR1 IN_SAME_COMPONENT HDAC1 -NCOR1 IN_SAME_COMPONENT HDAC2 -NCOR1 IN_SAME_COMPONENT MYB -NCOR1 IN_SAME_COMPONENT RBBP4 -NCOR1 IN_SAME_COMPONENT RBBP7 -NCOR1 IN_SAME_COMPONENT SAP18 -NCOR1 IN_SAME_COMPONENT SAP30 -NCOR1 IN_SAME_COMPONENT SIN3A -NCOR1 IN_SAME_COMPONENT SIN3B -NCOR1 IN_SAME_COMPONENT SKI -NCOR1 IN_SAME_COMPONENT SKIL -NCOR1 IN_SAME_COMPONENT SMAD2 -NCOR1 IN_SAME_COMPONENT SMAD4 -NCOR1 IN_SAME_COMPONENT TAB2 -NCOR1 IN_SAME_COMPONENT TRIM28 -NCOR1 METABOLIC_CATALYSIS MYC -NCOR1 REACTS_WITH HDAC1 -NCOR1 REACTS_WITH HDAC2 -NCOR1 REACTS_WITH MYB -NCOR1 REACTS_WITH NCOR1 -NCOR1 REACTS_WITH RBBP4 -NCOR1 REACTS_WITH RBBP7 -NCOR1 REACTS_WITH SAP18 -NCOR1 REACTS_WITH SAP30 -NCOR1 REACTS_WITH SIN3A -NCOR1 REACTS_WITH SIN3B -NCOR1 REACTS_WITH SKI -NCOR1 REACTS_WITH SKIL -NCOR1 REACTS_WITH SMAD2 -NCOR1 REACTS_WITH SMAD4 -NCOR1 REACTS_WITH TAB2 -NCOR1 REACTS_WITH TRIM28 -NCOR1 STATE_CHANGE PPARG -NCOR1 STATE_CHANGE SMAD2 -NCOR1 STATE_CHANGE SMAD4 -NCOR2 CO_CONTROL HDAC4 -NCOR2 CO_CONTROL UBE2I -NCOR2 IN_SAME_COMPONENT HDAC3 -NCOR2 IN_SAME_COMPONENT HDAC4 -NCOR2 REACTS_WITH HDAC3 -NCOR2 REACTS_WITH HDAC4 -NCOR2 REACTS_WITH NCOA1 -NCOR2 REACTS_WITH NCOR2 -NCOR2 REACTS_WITH NRIP1 -NCOR2 STATE_CHANGE HDAC4 -NCOR2 STATE_CHANGE MEF2C -NCOR2 STATE_CHANGE PPARG -NCSTN IN_SAME_COMPONENT APH1A -NCSTN IN_SAME_COMPONENT APH1B -NCSTN IN_SAME_COMPONENT PSEN1 -NCSTN IN_SAME_COMPONENT PSENEN -NCSTN STATE_CHANGE CNTN1 -NCSTN STATE_CHANGE CNTN6 -NCSTN STATE_CHANGE CTNNB1 -NCSTN STATE_CHANGE DLL1 -NCSTN STATE_CHANGE DLL4 -NCSTN STATE_CHANGE DNER -NCSTN STATE_CHANGE FBXW11 -NCSTN STATE_CHANGE NOTCH1 -NCSTN STATE_CHANGE NOTCH2 -NCSTN STATE_CHANGE NOTCH3 -NCSTN STATE_CHANGE NOTCH4 -NCSTN STATE_CHANGE SDC3 -NCSTN STATE_CHANGE SORT1 -NCSTN STATE_CHANGE TRAF6 -NCSTN STATE_CHANGE ZNF274 -NDC80 IN_SAME_COMPONENT SPC24 -NDEL1 IN_SAME_COMPONENT AURKA -NDEL1 IN_SAME_COMPONENT DYNC1H1 -NDEL1 IN_SAME_COMPONENT DYNLT1 -NDEL1 IN_SAME_COMPONENT KATNA1 -NDEL1 IN_SAME_COMPONENT PAFAH1B1 -NDEL1 IN_SAME_COMPONENT TACC3 -NDEL1 IN_SAME_COMPONENT YWHAE -NDEL1 REACTS_WITH AURKA -NDEL1 REACTS_WITH DYNC1H1 -NDEL1 REACTS_WITH DYNLT1 -NDEL1 REACTS_WITH KATNA1 -NDEL1 REACTS_WITH NDEL1 -NDEL1 REACTS_WITH PAFAH1B1 -NDEL1 REACTS_WITH TACC3 -NDEL1 REACTS_WITH YWHAE -NDN IN_SAME_COMPONENT E2F1 -NDN IN_SAME_COMPONENT NGF -NDN IN_SAME_COMPONENT NGFR -NDN IN_SAME_COMPONENT SORT1 -NDNL2 IN_SAME_COMPONENT E2F1 -NDNL2 IN_SAME_COMPONENT NGF -NDNL2 IN_SAME_COMPONENT NGFR -NDNL2 IN_SAME_COMPONENT SORT1 -NDNL2 REACTS_WITH E2F1 -NDNL2 REACTS_WITH NDNL2 -NDNL2 REACTS_WITH NGF -NDNL2 REACTS_WITH NGFR -NDNL2 REACTS_WITH SORT1 -NDN REACTS_WITH E2F1 -NDN REACTS_WITH NDN -NDN REACTS_WITH NGF -NDN REACTS_WITH NGFR -NDN REACTS_WITH SORT1 -NEDD4 IN_SAME_COMPONENT GRB10 -NEDD4L IN_SAME_COMPONENT NGF -NEDD4L IN_SAME_COMPONENT SMAD2 -NEDD4L IN_SAME_COMPONENT SMAD7 -NEDD4L IN_SAME_COMPONENT STRAP -NEDD4L IN_SAME_COMPONENT TGFBR1 -NEDD4L IN_SAME_COMPONENT TGFBR2 -NEDD4L REACTS_WITH NEDD4L -NEDD4L REACTS_WITH NGF -NEDD4L REACTS_WITH SMAD2 -NEDD4L REACTS_WITH SMAD7 -NEDD4L REACTS_WITH STRAP -NEDD4L REACTS_WITH TGFBR1 -NEDD4L REACTS_WITH TGFBR2 -NEDD8 IN_SAME_COMPONENT TP53 -NEDD8 REACTS_WITH NEDD8 -NEDD8 REACTS_WITH TP53 -NET1 STATE_CHANGE RHOA -NEURL STATE_CHANGE JAG1 -NF1 CO_CONTROL FOXA2 -NF1 CO_CONTROL INS -NF1 IN_SAME_COMPONENT ATF2 -NF1 IN_SAME_COMPONENT BRCA1 -NF1 IN_SAME_COMPONENT POU2F1 -NF1 IN_SAME_COMPONENT SDC2 -NF1 METABOLIC_CATALYSIS ALAS1 -NF1 METABOLIC_CATALYSIS GADD45A -NF1 REACTS_WITH ATF2 -NF1 REACTS_WITH BRCA1 -NF1 REACTS_WITH NF1 -NF1 REACTS_WITH POU2F1 -NF1 REACTS_WITH SDC2 -NF1 STATE_CHANGE PRKACA -NFATC1 CO_CONTROL MAPK9 -NFATC1 IN_SAME_COMPONENT MAPK14 -NFATC1 IN_SAME_COMPONENT MAPK3 -NFATC1 IN_SAME_COMPONENT MAPK8 -NFATC1 METABOLIC_CATALYSIS IFNG -NFATC1 METABOLIC_CATALYSIS IL4 -NFATC1 REACTS_WITH CALM1 -NFATC1 REACTS_WITH MAPK14 -NFATC1 REACTS_WITH MAPK3 -NFATC1 REACTS_WITH MAPK8 -NFATC1 REACTS_WITH NFATC1 -NFATC2 CO_CONTROL FOS -NFATC2 CO_CONTROL FOXP3 -NFATC2 CO_CONTROL GATA3 -NFATC2 CO_CONTROL JUN -NFATC2 CO_CONTROL NFATC2 -NFATC2 IN_SAME_COMPONENT CSNK1A1 -NFATC2 IN_SAME_COMPONENT FOS -NFATC2 IN_SAME_COMPONENT FOSL1 -NFATC2 IN_SAME_COMPONENT FOXP3 -NFATC2 IN_SAME_COMPONENT JUN -NFATC2 IN_SAME_COMPONENT JUNB -NFATC2 IN_SAME_COMPONENT MEF2D -NFATC2 METABOLIC_CATALYSIS BCE1 -NFATC2 METABOLIC_CATALYSIS CASP3 -NFATC2 METABOLIC_CATALYSIS CTLA4 -NFATC2 METABOLIC_CATALYSIS DGKA -NFATC2 METABOLIC_CATALYSIS FASLG -NFATC2 METABOLIC_CATALYSIS GBP3 -NFATC2 METABOLIC_CATALYSIS IFNG -NFATC2 METABOLIC_CATALYSIS IKZF1 -NFATC2 METABOLIC_CATALYSIS IL2 -NFATC2 METABOLIC_CATALYSIS IL2RA -NFATC2 METABOLIC_CATALYSIS IL4 -NFATC2 METABOLIC_CATALYSIS NR4A1 -NFATC2 METABOLIC_CATALYSIS PTPN1 -NFATC2 METABOLIC_CATALYSIS PTPRK -NFATC2 METABOLIC_CATALYSIS SLC3A2 -NFATC2 REACTS_WITH CABIN1 -NFATC2 REACTS_WITH CSNK1A1 -NFATC2 REACTS_WITH FOS -NFATC2 REACTS_WITH FOSL1 -NFATC2 REACTS_WITH FOXP3 -NFATC2 REACTS_WITH JUN -NFATC2 REACTS_WITH JUNB -NFATC2 REACTS_WITH MEF2D -NFATC2 REACTS_WITH NFATC2 -NFATC3 IN_SAME_COMPONENT CSNK1A1 -NFATC3 IN_SAME_COMPONENT MAPK9 -NFATC3 REACTS_WITH CALM1 -NFATC3 REACTS_WITH CSNK1A1 -NFATC3 REACTS_WITH MAPK9 -NFATC3 REACTS_WITH NFATC3 -NFKB1 CO_CONTROL IKBKB -NFKB1 CO_CONTROL NFKBIA -NFKB1 CO_CONTROL NFKBIB -NFKB1 IN_SAME_COMPONENT ARRB2 -NFKB1 IN_SAME_COMPONENT BCL3 -NFKB1 IN_SAME_COMPONENT HDAC2 -NFKB1 IN_SAME_COMPONENT NFKBIA -NFKB1 IN_SAME_COMPONENT NFKBIB -NFKB1 IN_SAME_COMPONENT REL -NFKB1 IN_SAME_COMPONENT RELA -NFKB1 IN_SAME_COMPONENT RELB -NFKB1 IN_SAME_COMPONENT TERT -NFKB1 IN_SAME_COMPONENT YWHAE -NFKB1 INTERACTS_WITH NFKB1 -NFKB1 INTERACTS_WITH NFKBIA -NFKB1 INTERACTS_WITH RELA -NFKB1 METABOLIC_CATALYSIS BIRC3 -NFKB1 METABOLIC_CATALYSIS CSF2 -NFKB1 METABOLIC_CATALYSIS ICAM1 -NFKB1 METABOLIC_CATALYSIS IL17A -NFKB1 METABOLIC_CATALYSIS IL23A -NFKB1 METABOLIC_CATALYSIS IL6 -NFKB1 METABOLIC_CATALYSIS IL8 -NFKB1 METABOLIC_CATALYSIS MYC -NFKB1 METABOLIC_CATALYSIS NFKBIA -NFKB1 METABOLIC_CATALYSIS NFKBIB -NFKB1 METABOLIC_CATALYSIS SELE -NFKB1 METABOLIC_CATALYSIS TNF -NFKB1 METABOLIC_CATALYSIS TNFAIP3 -NFKB1 REACTS_WITH ARRB2 -NFKB1 REACTS_WITH BCL3 -NFKB1 REACTS_WITH HDAC2 -NFKB1 REACTS_WITH HDAC3 -NFKB1 REACTS_WITH MMP9 -NFKB1 REACTS_WITH NFKB1 -NFKB1 REACTS_WITH NFKBIA -NFKB1 REACTS_WITH NFKBIB -NFKB1 REACTS_WITH NR3C1 -NFKB1 REACTS_WITH PIK3CA -NFKB1 REACTS_WITH PIK3R1 -NFKB1 REACTS_WITH PLAU -NFKB1 REACTS_WITH REL -NFKB1 REACTS_WITH RELA -NFKB1 REACTS_WITH RELB -NFKB1 REACTS_WITH TERT -NFKB1 REACTS_WITH YWHAE -NFKB1 STATE_CHANGE BCL2A1 -NFKB1 STATE_CHANGE CASP8 -NFKB1 STATE_CHANGE NFKB1 -NFKB1 STATE_CHANGE NFKBIA -NFKB1 STATE_CHANGE NFKBIB -NFKB1 STATE_CHANGE POU2F2 -NFKB1 STATE_CHANGE RELA -NFKB2 IN_SAME_COMPONENT RELB -NFKB2 REACTS_WITH NFKB2 -NFKB2 REACTS_WITH RELB -NFKBIA CO_CONTROL NFKB1 -NFKBIA CO_CONTROL RELA -NFKBIA IN_SAME_COMPONENT ARRB2 -NFKBIA IN_SAME_COMPONENT HDAC1 -NFKBIA IN_SAME_COMPONENT HDAC3 -NFKBIA IN_SAME_COMPONENT NFKB1 -NFKBIA IN_SAME_COMPONENT PIK3R1 -NFKBIA IN_SAME_COMPONENT RELA -NFKBIA INTERACTS_WITH NFKB1 -NFKBIA INTERACTS_WITH NFKBIA -NFKBIA INTERACTS_WITH RELA -NFKBIA METABOLIC_CATALYSIS BIRC3 -NFKBIA METABOLIC_CATALYSIS IL17A -NFKBIA METABOLIC_CATALYSIS IL23A -NFKBIA METABOLIC_CATALYSIS NFKBIA -NFKBIA REACTS_WITH ARRB2 -NFKBIA REACTS_WITH HDAC1 -NFKBIA REACTS_WITH HDAC3 -NFKBIA REACTS_WITH NFKB1 -NFKBIA REACTS_WITH NFKBIA -NFKBIA REACTS_WITH PIK3CA -NFKBIA REACTS_WITH PIK3R1 -NFKBIA REACTS_WITH RELA -NFKBIA STATE_CHANGE NFKB1 -NFKBIA STATE_CHANGE RELA -NFKBIB CO_CONTROL NFKB1 -NFKBIB CO_CONTROL RELA -NFKBIB IN_SAME_COMPONENT NFKB1 -NFKBIB IN_SAME_COMPONENT RELA -NFKBIB METABOLIC_CATALYSIS NFKBIB -NFKBIB REACTS_WITH NFKB1 -NFKBIB REACTS_WITH NFKBIB -NFKBIB REACTS_WITH RELA -NFYA CO_CONTROL MAX -NFYA CO_CONTROL MYC -NFYA CO_CONTROL NFYA -NFYA CO_CONTROL NFYB -NFYA CO_CONTROL NFYC -NFYA IN_SAME_COMPONENT MAX -NFYA IN_SAME_COMPONENT MYC -NFYA IN_SAME_COMPONENT NFYB -NFYA IN_SAME_COMPONENT NFYC -NFYA IN_SAME_COMPONENT TP53 -NFYA METABOLIC_CATALYSIS PDGFRB -NFYA REACTS_WITH MAX -NFYA REACTS_WITH MYC -NFYA REACTS_WITH NFYA -NFYA REACTS_WITH NFYB -NFYA REACTS_WITH NFYC -NFYA REACTS_WITH TP53 -NFYB CO_CONTROL MAX -NFYB CO_CONTROL MYC -NFYB CO_CONTROL NFYA -NFYB CO_CONTROL NFYB -NFYB CO_CONTROL NFYC -NFYB IN_SAME_COMPONENT MAX -NFYB IN_SAME_COMPONENT MYC -NFYB IN_SAME_COMPONENT NFYA -NFYB IN_SAME_COMPONENT NFYC -NFYB IN_SAME_COMPONENT TP53 -NFYB METABOLIC_CATALYSIS PDGFRB -NFYB REACTS_WITH MAX -NFYB REACTS_WITH MYC -NFYB REACTS_WITH NFYA -NFYB REACTS_WITH NFYB -NFYB REACTS_WITH NFYC -NFYB REACTS_WITH TP53 -NFYC CO_CONTROL MAX -NFYC CO_CONTROL MYC -NFYC CO_CONTROL NFYA -NFYC CO_CONTROL NFYB -NFYC CO_CONTROL NFYC -NFYC IN_SAME_COMPONENT MAX -NFYC IN_SAME_COMPONENT MYC -NFYC IN_SAME_COMPONENT NFYA -NFYC IN_SAME_COMPONENT NFYB -NFYC IN_SAME_COMPONENT TP53 -NFYC METABOLIC_CATALYSIS PDGFRB -NFYC REACTS_WITH MAX -NFYC REACTS_WITH MYC -NFYC REACTS_WITH NFYA -NFYC REACTS_WITH NFYB -NFYC REACTS_WITH NFYC -NFYC REACTS_WITH TP53 -NGEF IN_SAME_COMPONENT EFNA1 -NGEF REACTS_WITH EFNA1 -NGEF REACTS_WITH NGEF -NGEF STATE_CHANGE CDC42 -NGEF STATE_CHANGE RAC1 -NGEF STATE_CHANGE RHOA -NGF IN_SAME_COMPONENT ARHGAP32 -NGF IN_SAME_COMPONENT BEX1 -NGF IN_SAME_COMPONENT FAIM -NGF IN_SAME_COMPONENT GIPC1 -NGF IN_SAME_COMPONENT IRAK1 -NGF IN_SAME_COMPONENT MAGED1 -NGF IN_SAME_COMPONENT MAGEH1 -NGF IN_SAME_COMPONENT MATK -NGF IN_SAME_COMPONENT NDN -NGF IN_SAME_COMPONENT NDNL2 -NGF IN_SAME_COMPONENT NEDD4L -NGF IN_SAME_COMPONENT NGFR -NGF IN_SAME_COMPONENT NGFRAP1 -NGF IN_SAME_COMPONENT PLCG1 -NGF IN_SAME_COMPONENT RGS19 -NGF IN_SAME_COMPONENT RIPK2 -NGF IN_SAME_COMPONENT SORT1 -NGF IN_SAME_COMPONENT SQSTM1 -NGF IN_SAME_COMPONENT TRAF6 -NGF IN_SAME_COMPONENT TRPV1 -NGF IN_SAME_COMPONENT YWHAE -NGF IN_SAME_COMPONENT ZNF274 -NGFRAP1 IN_SAME_COMPONENT NGF -NGFRAP1 IN_SAME_COMPONENT NGFR -NGFRAP1 IN_SAME_COMPONENT SORT1 -NGFRAP1 IN_SAME_COMPONENT YWHAE -NGFRAP1 REACTS_WITH NGF -NGFRAP1 REACTS_WITH NGFR -NGFRAP1 REACTS_WITH NGFRAP1 -NGFRAP1 REACTS_WITH SORT1 -NGFRAP1 REACTS_WITH YWHAE -NGFR CO_CONTROL MAGED1 -NGFR CO_CONTROL SH2B1 -NGF REACTS_WITH ARHGAP32 -NGF REACTS_WITH BEX1 -NGF REACTS_WITH E2F1 -NGF REACTS_WITH FAIM -NGF REACTS_WITH GIPC1 -NGF REACTS_WITH IRAK1 -NGF REACTS_WITH MAGED1 -NGF REACTS_WITH MAGEH1 -NGF REACTS_WITH MATK -NGF REACTS_WITH NDN -NGF REACTS_WITH NDNL2 -NGF REACTS_WITH NEDD4L -NGF REACTS_WITH NGF -NGF REACTS_WITH NGFR -NGF REACTS_WITH NGFRAP1 -NGF REACTS_WITH PLCG1 -NGF REACTS_WITH RGS19 -NGF REACTS_WITH RIPK2 -NGF REACTS_WITH SORT1 -NGF REACTS_WITH SQSTM1 -NGF REACTS_WITH TRAF6 -NGF REACTS_WITH TRPV1 -NGF REACTS_WITH YWHAE -NGF REACTS_WITH ZNF274 -NGFR IN_SAME_COMPONENT APP -NGFR IN_SAME_COMPONENT ARHGDIA -NGFR IN_SAME_COMPONENT BDNF -NGFR IN_SAME_COMPONENT BEX1 -NGFR IN_SAME_COMPONENT IRAK1 -NGFR IN_SAME_COMPONENT LINGO1 -NGFR IN_SAME_COMPONENT MAGED1 -NGFR IN_SAME_COMPONENT MAGEH1 -NGFR IN_SAME_COMPONENT NDN -NGFR IN_SAME_COMPONENT NDNL2 -NGFR IN_SAME_COMPONENT NGF -NGFR IN_SAME_COMPONENT NGFRAP1 -NGFR IN_SAME_COMPONENT NTF3 -NGFR IN_SAME_COMPONENT NTF4 -NGFR IN_SAME_COMPONENT RIPK2 -NGFR IN_SAME_COMPONENT RTN4R -NGFR IN_SAME_COMPONENT SORT1 -NGFR IN_SAME_COMPONENT SQSTM1 -NGFR IN_SAME_COMPONENT TRAF6 -NGFR IN_SAME_COMPONENT YWHAE -NGFR IN_SAME_COMPONENT ZNF274 -NGFR REACTS_WITH APP -NGFR REACTS_WITH ARHGDIA -NGFR REACTS_WITH BDNF -NGFR REACTS_WITH BEX1 -NGFR REACTS_WITH E2F1 -NGFR REACTS_WITH IRAK1 -NGFR REACTS_WITH LINGO1 -NGFR REACTS_WITH MAGED1 -NGFR REACTS_WITH MAGEH1 -NGFR REACTS_WITH NDN -NGFR REACTS_WITH NDNL2 -NGFR REACTS_WITH NGF -NGFR REACTS_WITH NGFR -NGFR REACTS_WITH NGFRAP1 -NGFR REACTS_WITH NTF3 -NGFR REACTS_WITH NTF4 -NGFR REACTS_WITH RHOA -NGFR REACTS_WITH RIPK2 -NGFR REACTS_WITH RTN4R -NGFR REACTS_WITH SORT1 -NGFR REACTS_WITH SQSTM1 -NGFR REACTS_WITH TRAF6 -NGFR REACTS_WITH YWHAE -NGFR REACTS_WITH ZNF274 -NGFR STATE_CHANGE CASP6 -NGFR STATE_CHANGE CYCS -NGFR STATE_CHANGE NGF -NGFR STATE_CHANGE NTF3 -NGFR STATE_CHANGE NTF4 -NGFR STATE_CHANGE NTRK2 -NGFR STATE_CHANGE PIK3CA -NGFR STATE_CHANGE PIK3R1 -NGFR STATE_CHANGE PRDM4 -NGFR STATE_CHANGE RAC1 -NGFR STATE_CHANGE SHC1 -NGFR STATE_CHANGE SMPD2 -NGFR STATE_CHANGE TP53 -NGF STATE_CHANGE AGAP2 -NGF STATE_CHANGE CASP6 -NGF STATE_CHANGE CYCS -NGF STATE_CHANGE DNAJA3 -NGF STATE_CHANGE EPB41L1 -NGF STATE_CHANGE PIK3CA -NGF STATE_CHANGE PIK3R1 -NGF STATE_CHANGE PRDM4 -NGF STATE_CHANGE RAC1 -NGF STATE_CHANGE RASGRF1 -NGF STATE_CHANGE SHC1 -NGF STATE_CHANGE SMPD2 -NID1 IN_SAME_COMPONENT ITGA3 -NID1 IN_SAME_COMPONENT ITGB1 -NID1 REACTS_WITH ITGA3 -NID1 REACTS_WITH ITGB1 -NID1 REACTS_WITH NID1 -NINL IN_SAME_COMPONENT TUBG1 -NINL REACTS_WITH NINL -NINL REACTS_WITH TUBG1 -NKD1 STATE_CHANGE PPP2R5D -NKD2 REACTS_WITH NKD2 -NKX2-5 IN_SAME_COMPONENT FOXH1 -NKX2-5 IN_SAME_COMPONENT SMAD2 -NKX2-5 IN_SAME_COMPONENT SMAD4 -NKX2-5 METABOLIC_CATALYSIS MEF2C -NKX2-5 REACTS_WITH FOXH1 -NKX2-5 REACTS_WITH NKX2-5 -NKX2-5 REACTS_WITH SMAD2 -NKX2-5 REACTS_WITH SMAD4 -NLK IN_SAME_COMPONENT CHD7 -NLK IN_SAME_COMPONENT PPARG -NLK IN_SAME_COMPONENT SETDB1 -NLK REACTS_WITH CHD7 -NLK REACTS_WITH NLK -NLK REACTS_WITH PPARG -NLK REACTS_WITH SETDB1 -NLK STATE_CHANGE AES -NLK STATE_CHANGE CREBBP -NLK STATE_CHANGE CTBP1 -NLK STATE_CHANGE CTNNB1 -NLK STATE_CHANGE HNF1A -NLK STATE_CHANGE MYB -NLK STATE_CHANGE TLE1 -NLRP1 STATE_CHANGE CASP1 -NME1 CO_CONTROL VAV2 -NME1 IN_SAME_COMPONENT TIAM1 -NME1 REACTS_WITH NME1 -NME1 REACTS_WITH TIAM1 -NME1 STATE_CHANGE CDC42 -NME1 STATE_CHANGE DNM2 -NME1 STATE_CHANGE RAC1 -NOC2L CO_CONTROL EP300 -NOC2L METABOLIC_CATALYSIS CDKN1A -NOD2 IN_SAME_COMPONENT RIPK2 -NOD2 STATE_CHANGE IKBKG -NOG REACTS_WITH BAMBI -NOG REACTS_WITH BMPR2 -NOG REACTS_WITH NOG -NONO REACTS_WITH NONO -NOS2 STATE_CHANGE IL12A -NOS2 STATE_CHANGE IL12B -NOS2 STATE_CHANGE IL12RB1 -NOS2 STATE_CHANGE IL12RB2 -NOS2 STATE_CHANGE JAK2 -NOS2 STATE_CHANGE TYK2 -NOS3 IN_SAME_COMPONENT CAV1 -NOS3 IN_SAME_COMPONENT GAB1 -NOS3 IN_SAME_COMPONENT HSP90AA1 -NOS3 IN_SAME_COMPONENT HSP90AB1 -NOS3 IN_SAME_COMPONENT PRKACA -NOS3 IN_SAME_COMPONENT PTPN11 -NOS3 REACTS_WITH CAV1 -NOS3 REACTS_WITH GAB1 -NOS3 REACTS_WITH HSP90AA1 -NOS3 REACTS_WITH HSP90AB1 -NOS3 REACTS_WITH NOS3 -NOS3 REACTS_WITH PRKACA -NOS3 REACTS_WITH PTPN11 -NOTCH1 CO_CONTROL CTBP1 -NOTCH1 CO_CONTROL DTX1 -NOTCH1 CO_CONTROL ENO1 -NOTCH1 CO_CONTROL GATA3 -NOTCH1 CO_CONTROL HDAC1 -NOTCH1 CO_CONTROL HES1 -NOTCH1 CO_CONTROL KDM1A -NOTCH1 CO_CONTROL MYCBP -NOTCH1 CO_CONTROL NOTCH2 -NOTCH1 CO_CONTROL RBBP8 -NOTCH1 CO_CONTROL RBPJ -NOTCH1 CO_CONTROL SPEN -NOTCH1 CO_CONTROL TWIST1 -NOTCH1 IN_SAME_COMPONENT CNTN1 -NOTCH1 IN_SAME_COMPONENT CNTN6 -NOTCH1 IN_SAME_COMPONENT DLK1 -NOTCH1 IN_SAME_COMPONENT DLL1 -NOTCH1 IN_SAME_COMPONENT DNER -NOTCH1 IN_SAME_COMPONENT DTX1 -NOTCH1 IN_SAME_COMPONENT DVL1 -NOTCH1 IN_SAME_COMPONENT EP300 -NOTCH1 IN_SAME_COMPONENT JAG1 -NOTCH1 IN_SAME_COMPONENT JAG2 -NOTCH1 IN_SAME_COMPONENT RBPJ -NOTCH1 IN_SAME_COMPONENT YY1 -NOTCH1 METABOLIC_CATALYSIS CCND1 -NOTCH1 METABOLIC_CATALYSIS CDKN1A -NOTCH1 METABOLIC_CATALYSIS GATA3 -NOTCH1 METABOLIC_CATALYSIS HES1 -NOTCH1 METABOLIC_CATALYSIS HEY1 -NOTCH1 METABOLIC_CATALYSIS HEY2 -NOTCH1 METABOLIC_CATALYSIS IL4 -NOTCH1 METABOLIC_CATALYSIS MYC -NOTCH1 METABOLIC_CATALYSIS PTCRA -NOTCH1 METABOLIC_CATALYSIS SKP2 -NOTCH1 REACTS_WITH CNTN1 -NOTCH1 REACTS_WITH CNTN6 -NOTCH1 REACTS_WITH CTBP1 -NOTCH1 REACTS_WITH DLK1 -NOTCH1 REACTS_WITH DLL1 -NOTCH1 REACTS_WITH DNER -NOTCH1 REACTS_WITH DTX1 -NOTCH1 REACTS_WITH DVL1 -NOTCH1 REACTS_WITH EP300 -NOTCH1 REACTS_WITH HDAC1 -NOTCH1 REACTS_WITH HES1 -NOTCH1 REACTS_WITH HEY1 -NOTCH1 REACTS_WITH JAG1 -NOTCH1 REACTS_WITH JAG2 -NOTCH1 REACTS_WITH KDM1A -NOTCH1 REACTS_WITH NOTCH1 -NOTCH1 REACTS_WITH RBBP8 -NOTCH1 REACTS_WITH RBPJ -NOTCH1 REACTS_WITH SPEN -NOTCH1 REACTS_WITH YY1 -NOTCH1 STATE_CHANGE APC -NOTCH1 STATE_CHANGE AXIN1 -NOTCH1 STATE_CHANGE CTNNB1 -NOTCH2 CO_CONTROL DTX1 -NOTCH2 CO_CONTROL NOTCH1 -NOTCH2 IN_SAME_COMPONENT CNTN1 -NOTCH2 REACTS_WITH CNTN1 -NOTCH2 REACTS_WITH NOTCH2 -NOTCH3 REACTS_WITH NOTCH3 -NOTCH4 IN_SAME_COMPONENT DLL4 -NOTCH4 REACTS_WITH DLL4 -NOTCH4 REACTS_WITH NOTCH4 -NOX1 IN_SAME_COMPONENT NOXA1 -NOX1 IN_SAME_COMPONENT NOXO1 -NOX1 IN_SAME_COMPONENT RAC1 -NOX1 REACTS_WITH NOX1 -NOX1 REACTS_WITH NOXA1 -NOX1 REACTS_WITH NOXO1 -NOX1 REACTS_WITH RAC1 -NOX4 STATE_CHANGE PTPN1 -NOXA1 IN_SAME_COMPONENT NOX1 -NOXA1 IN_SAME_COMPONENT NOXO1 -NOXA1 IN_SAME_COMPONENT RAC1 -NOXA1 REACTS_WITH NOX1 -NOXA1 REACTS_WITH NOXA1 -NOXA1 REACTS_WITH NOXO1 -NOXA1 REACTS_WITH RAC1 -NOXO1 IN_SAME_COMPONENT NOX1 -NOXO1 IN_SAME_COMPONENT NOXA1 -NOXO1 IN_SAME_COMPONENT RAC1 -NOXO1 REACTS_WITH NOX1 -NOXO1 REACTS_WITH NOXA1 -NOXO1 REACTS_WITH NOXO1 -NOXO1 REACTS_WITH RAC1 -NPAS2 IN_SAME_COMPONENT ARNTL -NPAS2 IN_SAME_COMPONENT CLOCK -NPAS2 METABOLIC_CATALYSIS NR1D1 -NPAS2 METABOLIC_CATALYSIS TIMELESS -NPAS2 REACTS_WITH ARNTL -NPAS2 REACTS_WITH CLOCK -NPAS2 REACTS_WITH NPAS2 -NPHS1 IN_SAME_COMPONENT ARRB2 -NPHS1 IN_SAME_COMPONENT CD2AP -NPHS1 IN_SAME_COMPONENT F2RL2 -NPHS1 IN_SAME_COMPONENT KIRREL -NPHS1 IN_SAME_COMPONENT NPHS2 -NPHS1 IN_SAME_COMPONENT PARD6A -NPHS1 IN_SAME_COMPONENT PLCG1 -NPHS1 IN_SAME_COMPONENT TJP1 -NPHS1 IN_SAME_COMPONENT WASL -NPHS1 REACTS_WITH ARRB2 -NPHS1 REACTS_WITH CD2AP -NPHS1 REACTS_WITH F2RL2 -NPHS1 REACTS_WITH KIRREL -NPHS1 REACTS_WITH NPHS1 -NPHS1 REACTS_WITH NPHS2 -NPHS1 REACTS_WITH PARD6A -NPHS1 REACTS_WITH PLCG1 -NPHS1 REACTS_WITH TJP1 -NPHS1 REACTS_WITH WASL -NPHS1 STATE_CHANGE FYN -NPHS1 STATE_CHANGE TRPC6 -NPHS2 IN_SAME_COMPONENT CD2AP -NPHS2 IN_SAME_COMPONENT KIRREL -NPHS2 IN_SAME_COMPONENT NPHS1 -NPHS2 IN_SAME_COMPONENT PLCG1 -NPHS2 IN_SAME_COMPONENT WASL -NPHS2 REACTS_WITH CD2AP -NPHS2 REACTS_WITH KIRREL -NPHS2 REACTS_WITH NPHS1 -NPHS2 REACTS_WITH NPHS2 -NPHS2 REACTS_WITH PLCG1 -NPHS2 REACTS_WITH WASL -NPHS2 STATE_CHANGE FYN -NPHS2 STATE_CHANGE TRPC6 -NPNT IN_SAME_COMPONENT ITGA8 -NPNT IN_SAME_COMPONENT ITGB1 -NPNT REACTS_WITH ITGA8 -NPNT REACTS_WITH ITGB1 -NPNT REACTS_WITH NPNT -NR0B1 IN_SAME_COMPONENT AR -NR0B1 REACTS_WITH AR -NR0B1 REACTS_WITH NR0B1 -NR1H4 IN_SAME_COMPONENT MED1 -NR1H4 REACTS_WITH MED1 -NR1H4 REACTS_WITH NR1H4 -NR2C1 CO_CONTROL AR -NR2C1 IN_SAME_COMPONENT HDAC3 -NR2C1 METABOLIC_CATALYSIS KLK3 -NR2C1 REACTS_WITH HDAC3 -NR2C1 REACTS_WITH NR2C1 -NR2C2 CO_CONTROL AR -NR2C2 METABOLIC_CATALYSIS KLK3 -NR2F2 CO_CONTROL FOXA1 -NR2F2 CO_CONTROL SP1 -NR2F2 METABOLIC_CATALYSIS APOB -NR2F2 METABOLIC_CATALYSIS TERT -NR3C1 CO_CONTROL FOXA2 -NR3C1 CO_CONTROL INS -NR3C1 CO_CONTROL SMAD4 -NR3C1 IN_SAME_COMPONENT AR -NR3C1 IN_SAME_COMPONENT HDAC6 -NR3C1 IN_SAME_COMPONENT HSP90AA1 -NR3C1 IN_SAME_COMPONENT SMAD4 -NR3C1 METABOLIC_CATALYSIS IGFBP1 -NR3C1 METABOLIC_CATALYSIS SERPINE1 -NR3C1 METABOLIC_CATALYSIS TAT -NR3C1 REACTS_WITH AR -NR3C1 REACTS_WITH HDAC6 -NR3C1 REACTS_WITH HSP90AA1 -NR3C1 REACTS_WITH NFKB1 -NR3C1 REACTS_WITH NR3C1 -NR3C1 REACTS_WITH RELA -NR3C1 REACTS_WITH SMAD4 -NR4A1 IN_SAME_COMPONENT BCL2 -NR4A1 METABOLIC_CATALYSIS POMC -NR4A1 REACTS_WITH BCL2 -NR4A1 REACTS_WITH NR4A1 -NRG1 IN_SAME_COMPONENT GPC1 -NRG1 REACTS_WITH GPC1 -NRG1 REACTS_WITH NRG1 -NRG2 IN_SAME_COMPONENT ERBB2 -NRG2 IN_SAME_COMPONENT ERBB3 -NRG2 REACTS_WITH ERBB2 -NRG2 REACTS_WITH ERBB3 -NRG2 REACTS_WITH NRG2 -NRG3 REACTS_WITH NRG3 -NRG4 IN_SAME_COMPONENT EGFR -NRG4 IN_SAME_COMPONENT ERBB2 -NRG4 REACTS_WITH EGFR -NRG4 REACTS_WITH ERBB2 -NRG4 REACTS_WITH NRG4 -NRIP1 CO_CONTROL AR -NRIP1 IN_SAME_COMPONENT HDAC1 -NRIP1 IN_SAME_COMPONENT HDAC3 -NRIP1 METABOLIC_CATALYSIS KLK3 -NRIP1 REACTS_WITH HDAC1 -NRIP1 REACTS_WITH HDAC3 -NRIP1 REACTS_WITH NCOR2 -NRIP1 REACTS_WITH NRIP1 -NRP1 IN_SAME_COMPONENT FLT1 -NRP1 REACTS_WITH FLT1 -NRP1 REACTS_WITH NRP1 -NRP2 IN_SAME_COMPONENT FLT1 -NRP2 REACTS_WITH FLT1 -NRP2 REACTS_WITH NRP2 -NSMAF CO_CONTROL BIRC3 -NSMAF CO_CONTROL CRADD -NSMAF CO_CONTROL MADD -NSMAF CO_CONTROL RIPK1 -NSMAF CO_CONTROL TNF -NSMAF CO_CONTROL TNFRSF1A -NSMAF CO_CONTROL TRADD -NSMAF CO_CONTROL TRAF2 -NSMAF IN_SAME_COMPONENT SMPD2 -NSMAF IN_SAME_COMPONENT TNF -NSMAF IN_SAME_COMPONENT TNFRSF1A -NSMAF REACTS_WITH NSMAF -NSMAF REACTS_WITH SMPD2 -NSMAF REACTS_WITH TNF -NSMAF REACTS_WITH TNFRSF1A -NSMAF STATE_CHANGE SMPD1 -NSMAF STATE_CHANGE SMPD3 -NSUN2 IN_SAME_COMPONENT NCL -NSUN2 REACTS_WITH NCL -NSUN2 REACTS_WITH NSUN2 -NTF3 IN_SAME_COMPONENT NGFR -NTF3 IN_SAME_COMPONENT NTRK2 -NTF3 REACTS_WITH NGFR -NTF3 REACTS_WITH NTF3 -NTF3 REACTS_WITH NTRK2 -NTF3 REACTS_WITH NTRK3 -NTF3 STATE_CHANGE MCF2L -NTF3 STATE_CHANGE TIAM1 -NTF4 IN_SAME_COMPONENT NGFR -NTF4 IN_SAME_COMPONENT NTRK2 -NTF4 IN_SAME_COMPONENT TRAF6 -NTF4 REACTS_WITH NGFR -NTF4 REACTS_WITH NTF4 -NTF4 REACTS_WITH NTRK2 -NTF4 REACTS_WITH TRAF6 -NTN1 IN_SAME_COMPONENT BCAR1 -NTN1 IN_SAME_COMPONENT DCC -NTN1 IN_SAME_COMPONENT DOCK1 -NTN1 IN_SAME_COMPONENT ELMO1 -NTN1 IN_SAME_COMPONENT FYN -NTN1 IN_SAME_COMPONENT MYO10 -NTN1 IN_SAME_COMPONENT NCK1 -NTN1 IN_SAME_COMPONENT PAK1 -NTN1 IN_SAME_COMPONENT UNC5A -NTN1 IN_SAME_COMPONENT UNC5B -NTN1 IN_SAME_COMPONENT UNC5C -NTN1 REACTS_WITH BCAR1 -NTN1 REACTS_WITH DCC -NTN1 REACTS_WITH DOCK1 -NTN1 REACTS_WITH ELMO1 -NTN1 REACTS_WITH FYN -NTN1 REACTS_WITH MYO10 -NTN1 REACTS_WITH NCK1 -NTN1 REACTS_WITH NTN1 -NTN1 REACTS_WITH PAK1 -NTN1 REACTS_WITH UNC5A -NTN1 REACTS_WITH UNC5B -NTN1 REACTS_WITH UNC5C -NTN1 STATE_CHANGE CDC42 -NTN1 STATE_CHANGE DAPK1 -NTN1 STATE_CHANGE FYN -NTN1 STATE_CHANGE MAP1B -NTN1 STATE_CHANGE PITPNA -NTN1 STATE_CHANGE RAC1 -NTN1 STATE_CHANGE RHOA -NTN1 STATE_CHANGE TRIO -NTRK2 IN_SAME_COMPONENT BDNF -NTRK2 IN_SAME_COMPONENT GIPC1 -NTRK2 IN_SAME_COMPONENT NTF3 -NTRK2 IN_SAME_COMPONENT NTF4 -NTRK2 REACTS_WITH BDNF -NTRK2 REACTS_WITH GIPC1 -NTRK2 REACTS_WITH NTF3 -NTRK2 REACTS_WITH NTF4 -NTRK2 REACTS_WITH NTRK2 -NTRK2 STATE_CHANGE CDC42 -NTRK2 STATE_CHANGE CDH2 -NTRK2 STATE_CHANGE CTNNA1 -NTRK2 STATE_CHANGE CTNNB1 -NTRK2 STATE_CHANGE CTNND1 -NTRK3 REACTS_WITH NTF3 -NUDC IN_SAME_COMPONENT PAFAH1B1 -NUDC REACTS_WITH NUDC -NUDC REACTS_WITH PAFAH1B1 -NUDC STATE_CHANGE PLK1 -NUDT16L1 IN_SAME_COMPONENT SDC4 -NUDT16L1 REACTS_WITH NUDT16L1 -NUDT16L1 REACTS_WITH SDC4 -NUMB IN_SAME_COMPONENT CDH1 -NUMB IN_SAME_COMPONENT CTNNA1 -NUMB IN_SAME_COMPONENT CTNNB1 -NUMB IN_SAME_COMPONENT F2RL2 -NUMB IN_SAME_COMPONENT ITCH -NUMB IN_SAME_COMPONENT PARD6A -NUMB REACTS_WITH CDH1 -NUMB REACTS_WITH CTNNA1 -NUMB REACTS_WITH CTNNB1 -NUMB REACTS_WITH F2RL2 -NUMB REACTS_WITH ITCH -NUMB REACTS_WITH NUMB -NUMB REACTS_WITH PARD6A -NUMB STATE_CHANGE NOTCH1 -NUP153 CO_CONTROL KPNA2 -NUP153 CO_CONTROL NUP214 -NUP153 STATE_CHANGE SMAD2 -NUP153 STATE_CHANGE SMAD4 -NUP214 CO_CONTROL KPNA2 -NUP214 CO_CONTROL NUP153 -NUP214 CO_CONTROL SMAD1 -NUP214 CO_CONTROL SMURF1 -NUP214 IN_SAME_COMPONENT RAN -NUP214 IN_SAME_COMPONENT XPO1 -NUP214 STATE_CHANGE NFATC1 -NUP214 STATE_CHANGE NFATC2 -NUP214 STATE_CHANGE SMAD1 -NUP214 STATE_CHANGE SMAD2 -NUP214 STATE_CHANGE SMAD4 -OAZ1 IN_SAME_COMPONENT AURKA -OAZ1 REACTS_WITH AURKA -OAZ1 REACTS_WITH OAZ1 -OBSCN STATE_CHANGE RHOA -OCLN IN_SAME_COMPONENT PARD6A -OCLN IN_SAME_COMPONENT SMURF1 -OCLN IN_SAME_COMPONENT TGFBR1 -OCLN IN_SAME_COMPONENT TGFBR2 -OCLN REACTS_WITH OCLN -OCLN REACTS_WITH PARD6A -OCLN REACTS_WITH SMURF1 -OCLN REACTS_WITH TGFBR1 -OCLN REACTS_WITH TGFBR2 -OCLN REACTS_WITH TGFBR3 -ONECUT1 METABOLIC_CATALYSIS CCND1 -ONECUT1 METABOLIC_CATALYSIS ONECUT1 -ONECUT1 METABOLIC_CATALYSIS TGFA -ONECUT1 REACTS_WITH ONECUT1 -OPHN1 STATE_CHANGE RHOA -OS9 STATE_CHANGE HIF1A -PA2G4 CO_CONTROL AR -PA2G4 METABOLIC_CATALYSIS KLK3 -PAFAH1B1 IN_SAME_COMPONENT CLIP1 -PAFAH1B1 IN_SAME_COMPONENT DAB1 -PAFAH1B1 IN_SAME_COMPONENT DYNC1H1 -PAFAH1B1 IN_SAME_COMPONENT DYNLT1 -PAFAH1B1 IN_SAME_COMPONENT IQGAP1 -PAFAH1B1 IN_SAME_COMPONENT KATNA1 -PAFAH1B1 IN_SAME_COMPONENT MAP1B -PAFAH1B1 IN_SAME_COMPONENT NDEL1 -PAFAH1B1 IN_SAME_COMPONENT NUDC -PAFAH1B1 IN_SAME_COMPONENT PAFAH1B2 -PAFAH1B1 IN_SAME_COMPONENT PAFAH1B3 -PAFAH1B1 IN_SAME_COMPONENT PLA2G7 -PAFAH1B1 IN_SAME_COMPONENT RELN -PAFAH1B1 IN_SAME_COMPONENT VLDLR -PAFAH1B1 REACTS_WITH CALM1 -PAFAH1B1 REACTS_WITH CLIP1 -PAFAH1B1 REACTS_WITH DAB1 -PAFAH1B1 REACTS_WITH DYNC1H1 -PAFAH1B1 REACTS_WITH DYNLT1 -PAFAH1B1 REACTS_WITH IQGAP1 -PAFAH1B1 REACTS_WITH KATNA1 -PAFAH1B1 REACTS_WITH MAP1B -PAFAH1B1 REACTS_WITH NDEL1 -PAFAH1B1 REACTS_WITH NUDC -PAFAH1B1 REACTS_WITH PAFAH1B1 -PAFAH1B1 REACTS_WITH PAFAH1B2 -PAFAH1B1 REACTS_WITH PAFAH1B3 -PAFAH1B1 REACTS_WITH PLA2G7 -PAFAH1B1 REACTS_WITH RELN -PAFAH1B1 REACTS_WITH VLDLR -PAFAH1B1 STATE_CHANGE CDC42 -PAFAH1B1 STATE_CHANGE RAC1 -PAFAH1B1 STATE_CHANGE RHOA -PAFAH1B2 IN_SAME_COMPONENT DAB1 -PAFAH1B2 IN_SAME_COMPONENT PAFAH1B1 -PAFAH1B2 IN_SAME_COMPONENT PAFAH1B3 -PAFAH1B2 IN_SAME_COMPONENT RELN -PAFAH1B2 IN_SAME_COMPONENT VLDLR -PAFAH1B2 REACTS_WITH DAB1 -PAFAH1B2 REACTS_WITH PAFAH1B1 -PAFAH1B2 REACTS_WITH PAFAH1B2 -PAFAH1B2 REACTS_WITH PAFAH1B3 -PAFAH1B2 REACTS_WITH RELN -PAFAH1B2 REACTS_WITH VLDLR -PAFAH1B3 IN_SAME_COMPONENT DAB1 -PAFAH1B3 IN_SAME_COMPONENT PAFAH1B1 -PAFAH1B3 IN_SAME_COMPONENT PAFAH1B2 -PAFAH1B3 IN_SAME_COMPONENT RELN -PAFAH1B3 IN_SAME_COMPONENT VLDLR -PAFAH1B3 REACTS_WITH DAB1 -PAFAH1B3 REACTS_WITH PAFAH1B1 -PAFAH1B3 REACTS_WITH PAFAH1B2 -PAFAH1B3 REACTS_WITH PAFAH1B3 -PAFAH1B3 REACTS_WITH RELN -PAFAH1B3 REACTS_WITH VLDLR -PAG1 CO_CONTROL PTPRC -PAG1 IN_SAME_COMPONENT CSK -PAG1 REACTS_WITH CSK -PAG1 REACTS_WITH PAG1 -PAG1 STATE_CHANGE CD79A -PAG1 STATE_CHANGE CD79B -PAG1 STATE_CHANGE CSK -PAG1 STATE_CHANGE FYN -PAG1 STATE_CHANGE LCK -PAG1 STATE_CHANGE LYN -PAK1 IN_SAME_COMPONENT ARHGEF7 -PAK1 IN_SAME_COMPONENT AURKA -PAK1 IN_SAME_COMPONENT DCC -PAK1 IN_SAME_COMPONENT DOK2 -PAK1 IN_SAME_COMPONENT EGF -PAK1 IN_SAME_COMPONENT EGFR -PAK1 IN_SAME_COMPONENT GIT1 -PAK1 IN_SAME_COMPONENT GIT2 -PAK1 IN_SAME_COMPONENT NCK1 -PAK1 IN_SAME_COMPONENT NTN1 -PAK1 IN_SAME_COMPONENT PXN -PAK1 REACTS_WITH ARHGEF7 -PAK1 REACTS_WITH AURKA -PAK1 REACTS_WITH DCC -PAK1 REACTS_WITH DOK2 -PAK1 REACTS_WITH EGF -PAK1 REACTS_WITH EGFR -PAK1 REACTS_WITH GIT1 -PAK1 REACTS_WITH GIT2 -PAK1 REACTS_WITH NCK1 -PAK1 REACTS_WITH NTN1 -PAK1 REACTS_WITH PAK1 -PAK1 REACTS_WITH PXN -PAK1 STATE_CHANGE ARHGDIA -PAK1 STATE_CHANGE LIMK1 -PAK1 STATE_CHANGE MAP2K1 -PAK1 STATE_CHANGE MAP2K4 -PAK1 STATE_CHANGE NCF1 -PAK1 STATE_CHANGE NCF2 -PAK1 STATE_CHANGE PLK1 -PAK1 STATE_CHANGE RAC1 -PAK1 STATE_CHANGE RAF1 -PAK1 STATE_CHANGE TRIO -PAK2 IN_SAME_COMPONENT FYN -PAK2 IN_SAME_COMPONENT KDR -PAK2 IN_SAME_COMPONENT VEGFA -PAK2 REACTS_WITH FYN -PAK2 REACTS_WITH KDR -PAK2 REACTS_WITH PAK2 -PAK2 REACTS_WITH VEGFA -PAK2 STATE_CHANGE CDC42 -PAK2 STATE_CHANGE MAP3K1 -PAK2 STATE_CHANGE MAX -PAK2 STATE_CHANGE MYC -PAK4 IN_SAME_COMPONENT GAB1 -PAK4 IN_SAME_COMPONENT HGF -PAK4 IN_SAME_COMPONENT MET -PAK4 REACTS_WITH FGF1 -PAK4 REACTS_WITH GAB1 -PAK4 REACTS_WITH HGF -PAK4 REACTS_WITH MET -PAK4 REACTS_WITH PAK4 -PAK4 REACTS_WITH SSH1 -PARD6A IN_SAME_COMPONENT CDC42 -PARD6A IN_SAME_COMPONENT CDH1 -PARD6A IN_SAME_COMPONENT CTNNA1 -PARD6A IN_SAME_COMPONENT CTNNB1 -PARD6A IN_SAME_COMPONENT F2RL2 -PARD6A IN_SAME_COMPONENT KIRREL -PARD6A IN_SAME_COMPONENT NPHS1 -PARD6A IN_SAME_COMPONENT NUMB -PARD6A IN_SAME_COMPONENT OCLN -PARD6A IN_SAME_COMPONENT PRKCE -PARD6A IN_SAME_COMPONENT PRKCZ -PARD6A IN_SAME_COMPONENT SMURF1 -PARD6A IN_SAME_COMPONENT TGFBR1 -PARD6A IN_SAME_COMPONENT TGFBR2 -PARD6A REACTS_WITH CDC42 -PARD6A REACTS_WITH CDH1 -PARD6A REACTS_WITH CTNNA1 -PARD6A REACTS_WITH CTNNB1 -PARD6A REACTS_WITH F2RL2 -PARD6A REACTS_WITH KIRREL -PARD6A REACTS_WITH NPHS1 -PARD6A REACTS_WITH NUMB -PARD6A REACTS_WITH OCLN -PARD6A REACTS_WITH PARD6A -PARD6A REACTS_WITH PRKCE -PARD6A REACTS_WITH PRKCZ -PARD6A REACTS_WITH SMURF1 -PARD6A REACTS_WITH TGFBR1 -PARD6A REACTS_WITH TGFBR2 -PARD6A REACTS_WITH TGFBR3 -PARD6A STATE_CHANGE DLG1 -PARD6A STATE_CHANGE GSK3B -PARD6A STATE_CHANGE TIAM1 -PARK2 STATE_CHANGE SNCA -PARK2 STATE_CHANGE SNCAIP -PARK7 IN_SAME_COMPONENT SNCA -PARK7 REACTS_WITH PARK7 -PARK7 REACTS_WITH SNCA -PARP14 CO_CONTROL BCL6 -PARP14 CO_CONTROL EGR2 -PARP14 CO_CONTROL IRF4 -PARP14 IN_SAME_COMPONENT STAT6 -PARP14 METABOLIC_CATALYSIS FCER2 -PARP1 CO_CONTROL CREBBP -PARP1 CO_CONTROL HES1 -PARP1 CO_CONTROL HES6 -PARP1 CO_CONTROL PARP1 -PARP1 CO_CONTROL TLE1 -PARP1 IN_SAME_COMPONENT CREBBP -PARP1 IN_SAME_COMPONENT HES1 -PARP1 IN_SAME_COMPONENT TLE1 -PARP1 METABOLIC_CATALYSIS ASCL1 -PARP1 REACTS_WITH CREBBP -PARP1 REACTS_WITH HES1 -PARP1 REACTS_WITH PARP1 -PARP1 REACTS_WITH TLE1 -PARP2 IN_SAME_COMPONENT TERF2 -PARP2 REACTS_WITH PARP2 -PARP2 REACTS_WITH TERF2 -PATZ1 CO_CONTROL AR -PATZ1 METABOLIC_CATALYSIS KLK3 -PAWR CO_CONTROL AR -PAWR IN_SAME_COMPONENT PRKCZ -PAWR METABOLIC_CATALYSIS KLK3 -PAWR REACTS_WITH PAWR -PAWR REACTS_WITH PRKCZ -PAWR STATE_CHANGE NFKB1 -PAWR STATE_CHANGE NFKBIA -PAWR STATE_CHANGE RELA -PAX3 METABOLIC_CATALYSIS MET -PBX1 CO_CONTROL POU2F1 -PBX1 METABOLIC_CATALYSIS PRL -PCNA IN_SAME_COMPONENT BARD1 -PCNA IN_SAME_COMPONENT BRCA1 -PCNA IN_SAME_COMPONENT RAD51 -PCNA REACTS_WITH BARD1 -PCNA REACTS_WITH BRCA1 -PCNA REACTS_WITH PCNA -PCNA REACTS_WITH RAD51 -PDCD4 IN_SAME_COMPONENT EIF4A1 -PDCD4 REACTS_WITH EIF4A1 -PDCD4 REACTS_WITH PDCD4 -PDE3B REACTS_WITH PDE3B -PDE6A IN_SAME_COMPONENT PDE6B -PDE6A IN_SAME_COMPONENT PDE6G -PDE6A REACTS_WITH GNAT1 -PDE6A REACTS_WITH PDE6A -PDE6A REACTS_WITH PDE6B -PDE6A REACTS_WITH PDE6G -PDE6A STATE_CHANGE CNGA1 -PDE6A STATE_CHANGE CNGB1 -PDE6B IN_SAME_COMPONENT PDE6A -PDE6B IN_SAME_COMPONENT PDE6G -PDE6B REACTS_WITH GNAT1 -PDE6B REACTS_WITH PDE6A -PDE6B REACTS_WITH PDE6B -PDE6B REACTS_WITH PDE6G -PDE6B STATE_CHANGE CNGA1 -PDE6B STATE_CHANGE CNGB1 -PDE6C IN_SAME_COMPONENT PDE6H -PDE6C REACTS_WITH GNAT2 -PDE6C REACTS_WITH PDE6C -PDE6C REACTS_WITH PDE6H -PDE6C STATE_CHANGE CNGA3 -PDE6C STATE_CHANGE CNGB3 -PDE6G IN_SAME_COMPONENT GNAT1 -PDE6G IN_SAME_COMPONENT PDE6A -PDE6G IN_SAME_COMPONENT PDE6B -PDE6G REACTS_WITH GNAT1 -PDE6G REACTS_WITH PDE6A -PDE6G REACTS_WITH PDE6B -PDE6G REACTS_WITH PDE6G -PDE6G STATE_CHANGE CNGA1 -PDE6G STATE_CHANGE CNGB1 -PDE6H IN_SAME_COMPONENT GNAT2 -PDE6H IN_SAME_COMPONENT PDE6C -PDE6H REACTS_WITH GNAT2 -PDE6H REACTS_WITH PDE6C -PDE6H REACTS_WITH PDE6H -PDE6H STATE_CHANGE CNGA3 -PDE6H STATE_CHANGE CNGB3 -PDGFA CO_CONTROL ASAH1 -PDGFA IN_SAME_COMPONENT PDGFB -PDGFA IN_SAME_COMPONENT PDGFRA -PDGFA IN_SAME_COMPONENT PDGFRB -PDGFA REACTS_WITH PDGFA -PDGFA REACTS_WITH PDGFB -PDGFA REACTS_WITH PDGFRA -PDGFA REACTS_WITH PDGFRB -PDGFA STATE_CHANGE SPHK2 -PDGFB CO_CONTROL EIF2AK2 -PDGFB CO_CONTROL S1PR3 -PDGFB CO_CONTROL SLA -PDGFB IN_SAME_COMPONENT CBL -PDGFB IN_SAME_COMPONENT DNM2 -PDGFB IN_SAME_COMPONENT DOCK4 -PDGFB IN_SAME_COMPONENT GAB1 -PDGFB IN_SAME_COMPONENT GRB10 -PDGFB IN_SAME_COMPONENT ITGAV -PDGFB IN_SAME_COMPONENT ITGB3 -PDGFB IN_SAME_COMPONENT LRP1 -PDGFB IN_SAME_COMPONENT PDGFA -PDGFB IN_SAME_COMPONENT PDGFRA -PDGFB IN_SAME_COMPONENT PDGFRB -PDGFB IN_SAME_COMPONENT PLCG1 -PDGFB IN_SAME_COMPONENT PTEN -PDGFB IN_SAME_COMPONENT PTPN11 -PDGFB IN_SAME_COMPONENT RASA1 -PDGFB IN_SAME_COMPONENT S1PR1 -PDGFB IN_SAME_COMPONENT SOS1 -PDGFB IN_SAME_COMPONENT WASL -PDGFB METABOLIC_CATALYSIS BCAR1 -PDGFB REACTS_WITH CBL -PDGFB REACTS_WITH DNM2 -PDGFB REACTS_WITH DOCK4 -PDGFB REACTS_WITH GAB1 -PDGFB REACTS_WITH GRB10 -PDGFB REACTS_WITH ITGAV -PDGFB REACTS_WITH ITGB3 -PDGFB REACTS_WITH LRP1 -PDGFB REACTS_WITH PDGFA -PDGFB REACTS_WITH PDGFB -PDGFB REACTS_WITH PDGFRA -PDGFB REACTS_WITH PDGFRB -PDGFB REACTS_WITH PLCG1 -PDGFB REACTS_WITH PTEN -PDGFB REACTS_WITH PTPN11 -PDGFB REACTS_WITH RASA1 -PDGFB REACTS_WITH S1PR1 -PDGFB REACTS_WITH SOS1 -PDGFB REACTS_WITH WASL -PDGFB STATE_CHANGE AKT1 -PDGFB STATE_CHANGE CRK -PDGFB STATE_CHANGE DOK1 -PDGFB STATE_CHANGE JAK2 -PDGFB STATE_CHANGE PAG1 -PDGFB STATE_CHANGE PAK1 -PDGFB STATE_CHANGE PIK3CA -PDGFB STATE_CHANGE PIK3R1 -PDGFB STATE_CHANGE RAB5A -PDGFB STATE_CHANGE RAC1 -PDGFB STATE_CHANGE SPHK1 -PDGFB STATE_CHANGE STAT1 -PDGFB STATE_CHANGE STAT3 -PDGFC IN_SAME_COMPONENT PDGFRA -PDGFC IN_SAME_COMPONENT PDGFRB -PDGFC REACTS_WITH PDGFC -PDGFC REACTS_WITH PDGFRA -PDGFC REACTS_WITH PDGFRB -PDGFD IN_SAME_COMPONENT PDGFRA -PDGFD IN_SAME_COMPONENT PDGFRB -PDGFD REACTS_WITH PDGFD -PDGFD REACTS_WITH PDGFRA -PDGFD REACTS_WITH PDGFRB -PDGFRA IN_SAME_COMPONENT CAV1 -PDGFRA IN_SAME_COMPONENT CAV3 -PDGFRA IN_SAME_COMPONENT CRK -PDGFRA IN_SAME_COMPONENT CRKL -PDGFRA IN_SAME_COMPONENT ITGAV -PDGFRA IN_SAME_COMPONENT PDGFA -PDGFRA IN_SAME_COMPONENT PDGFB -PDGFRA IN_SAME_COMPONENT PDGFC -PDGFRA IN_SAME_COMPONENT PDGFD -PDGFRA IN_SAME_COMPONENT PDGFRB -PDGFRA IN_SAME_COMPONENT RAPGEF1 -PDGFRA IN_SAME_COMPONENT SHB -PDGFRA IN_SAME_COMPONENT SHF -PDGFRA INTERACTS_WITH IFNG -PDGFRA REACTS_WITH CAV1 -PDGFRA REACTS_WITH CAV3 -PDGFRA REACTS_WITH CRK -PDGFRA REACTS_WITH CRKL -PDGFRA REACTS_WITH ITGAV -PDGFRA REACTS_WITH PDGFA -PDGFRA REACTS_WITH PDGFB -PDGFRA REACTS_WITH PDGFC -PDGFRA REACTS_WITH PDGFD -PDGFRA REACTS_WITH PDGFRA -PDGFRA REACTS_WITH PDGFRB -PDGFRA REACTS_WITH RAPGEF1 -PDGFRA REACTS_WITH SHB -PDGFRA REACTS_WITH SHF -PDGFRA STATE_CHANGE JAK1 -PDGFRA STATE_CHANGE PLCG1 -PDGFRB CO_CONTROL EIF2AK2 -PDGFRB CO_CONTROL S1PR3 -PDGFRB CO_CONTROL SLA -PDGFRB IN_SAME_COMPONENT CBL -PDGFRB IN_SAME_COMPONENT DNM2 -PDGFRB IN_SAME_COMPONENT DOCK4 -PDGFRB IN_SAME_COMPONENT GAB1 -PDGFRB IN_SAME_COMPONENT GRB10 -PDGFRB IN_SAME_COMPONENT ITGAV -PDGFRB IN_SAME_COMPONENT ITGB3 -PDGFRB IN_SAME_COMPONENT LRP1 -PDGFRB IN_SAME_COMPONENT PDGFA -PDGFRB IN_SAME_COMPONENT PDGFB -PDGFRB IN_SAME_COMPONENT PDGFC -PDGFRB IN_SAME_COMPONENT PDGFD -PDGFRB IN_SAME_COMPONENT PDGFRA -PDGFRB IN_SAME_COMPONENT PLCG1 -PDGFRB IN_SAME_COMPONENT PTEN -PDGFRB IN_SAME_COMPONENT PTPN11 -PDGFRB IN_SAME_COMPONENT RASA1 -PDGFRB IN_SAME_COMPONENT S1PR1 -PDGFRB IN_SAME_COMPONENT SOS1 -PDGFRB IN_SAME_COMPONENT WASL -PDGFRB METABOLIC_CATALYSIS BCAR1 -PDGFRB REACTS_WITH CBL -PDGFRB REACTS_WITH DNM2 -PDGFRB REACTS_WITH DOCK4 -PDGFRB REACTS_WITH GAB1 -PDGFRB REACTS_WITH GRB10 -PDGFRB REACTS_WITH ITGAV -PDGFRB REACTS_WITH ITGB3 -PDGFRB REACTS_WITH LRP1 -PDGFRB REACTS_WITH PDGFA -PDGFRB REACTS_WITH PDGFB -PDGFRB REACTS_WITH PDGFC -PDGFRB REACTS_WITH PDGFD -PDGFRB REACTS_WITH PDGFRA -PDGFRB REACTS_WITH PDGFRB -PDGFRB REACTS_WITH PLAU -PDGFRB REACTS_WITH PLAUR -PDGFRB REACTS_WITH PLCG1 -PDGFRB REACTS_WITH PTEN -PDGFRB REACTS_WITH PTPN11 -PDGFRB REACTS_WITH RASA1 -PDGFRB REACTS_WITH S1PR1 -PDGFRB REACTS_WITH SOS1 -PDGFRB REACTS_WITH WASL -PDGFRB STATE_CHANGE AKT1 -PDGFRB STATE_CHANGE CRK -PDGFRB STATE_CHANGE DOK1 -PDGFRB STATE_CHANGE JAK2 -PDGFRB STATE_CHANGE PAG1 -PDGFRB STATE_CHANGE PAK1 -PDGFRB STATE_CHANGE PIK3CA -PDGFRB STATE_CHANGE PIK3R1 -PDGFRB STATE_CHANGE RAB5A -PDGFRB STATE_CHANGE RAC1 -PDGFRB STATE_CHANGE SPHK1 -PDGFRB STATE_CHANGE STAT1 -PDGFRB STATE_CHANGE STAT3 -PDLIM7 IN_SAME_COMPONENT GDNF -PDLIM7 IN_SAME_COMPONENT GFRA1 -PDLIM7 REACTS_WITH GDNF -PDLIM7 REACTS_WITH GFRA1 -PDLIM7 REACTS_WITH PDLIM7 -PDPK1 CO_CONTROL AKT1 -PDPK1 CO_CONTROL FLNA -PDPK1 CO_CONTROL GAB2 -PDPK1 CO_CONTROL PRKCQ -PDPK1 IN_SAME_COMPONENT BCL10 -PDPK1 IN_SAME_COMPONENT CARD11 -PDPK1 IN_SAME_COMPONENT GRB14 -PDPK1 IN_SAME_COMPONENT HSP90AA1 -PDPK1 IN_SAME_COMPONENT INS -PDPK1 IN_SAME_COMPONENT INSR -PDPK1 IN_SAME_COMPONENT MALT1 -PDPK1 IN_SAME_COMPONENT PRKCQ -PDPK1 IN_SAME_COMPONENT SRC -PDPK1 IN_SAME_COMPONENT TRAF6 -PDPK1 REACTS_WITH BCL10 -PDPK1 REACTS_WITH CARD11 -PDPK1 REACTS_WITH GRB14 -PDPK1 REACTS_WITH INS -PDPK1 REACTS_WITH INSR -PDPK1 REACTS_WITH MALT1 -PDPK1 REACTS_WITH PDPK1 -PDPK1 REACTS_WITH PRKCQ -PDPK1 REACTS_WITH TRAF6 -PDPK1 STATE_CHANGE AKT1 -PDPK1 STATE_CHANGE AKT2 -PDPK1 STATE_CHANGE AKT3 -PDPK1 STATE_CHANGE IKBKG -PDPK1 STATE_CHANGE PRKCZ -PDPK1 STATE_CHANGE RALGDS -PDPK1 STATE_CHANGE RPS6KA3 -PDPK1 STATE_CHANGE RPS6KB1 -PDPK1 STATE_CHANGE SGK1 -PDPK1 STATE_CHANGE SMAD7 -PDPK1 STATE_CHANGE STRAP -PDPK1 STATE_CHANGE TGFBR1 -PDPK1 STATE_CHANGE TGFBR2 -PEBP1 CO_CONTROL CENPA -PEBP1 IN_SAME_COMPONENT RAF1 -PEBP1 REACTS_WITH PEBP1 -PEBP1 REACTS_WITH RAF1 -PEBP1 STATE_CHANGE AURKB -PEBP1 STATE_CHANGE BIRC5 -PEBP1 STATE_CHANGE CDCA8 -PEBP1 STATE_CHANGE INCENP -PECAM1 IN_SAME_COMPONENT ITGAV -PECAM1 IN_SAME_COMPONENT ITGB3 -PECAM1 IN_SAME_COMPONENT SPHK1 -PECAM1 REACTS_WITH ITGAV -PECAM1 REACTS_WITH ITGB3 -PECAM1 REACTS_WITH PECAM1 -PECAM1 REACTS_WITH SPHK1 -PELP1 CO_CONTROL AR -PELP1 CO_CONTROL FHL2 -PELP1 IN_SAME_COMPONENT AR -PELP1 IN_SAME_COMPONENT BCAR1 -PELP1 IN_SAME_COMPONENT ESR1 -PELP1 IN_SAME_COMPONENT PIK3CA -PELP1 IN_SAME_COMPONENT PIK3R1 -PELP1 IN_SAME_COMPONENT SOS1 -PELP1 IN_SAME_COMPONENT SRC -PELP1 METABOLIC_CATALYSIS KLK3 -PELP1 REACTS_WITH AR -PELP1 REACTS_WITH BCAR1 -PELP1 REACTS_WITH ESR1 -PELP1 REACTS_WITH PELP1 -PELP1 REACTS_WITH PIK3CA -PELP1 REACTS_WITH PIK3R1 -PELP1 REACTS_WITH SOS1 -PELP1 REACTS_WITH SRC -PELP1 STATE_CHANGE AKT1 -PELP1 STATE_CHANGE HRAS -PELP1 STATE_CHANGE IGF1 -PELP1 STATE_CHANGE IGF1R -PER1 IN_SAME_COMPONENT TIMELESS -PER1 REACTS_WITH PER1 -PER1 REACTS_WITH TIMELESS -PF4 IN_SAME_COMPONENT CXCR3 -PF4 REACTS_WITH PF4 -PF4 STATE_CHANGE GNG2 -PFDN5 REACTS_WITH MYC -PFDN5 REACTS_WITH PFDN5 -PGF IN_SAME_COMPONENT FLT1 -PGF REACTS_WITH FLT1 -PGF REACTS_WITH PGF -PGF STATE_CHANGE PIK3CA -PGF STATE_CHANGE PIK3R1 -PGF STATE_CHANGE PLCG1 -PI4KA IN_SAME_COMPONENT PI4KB -PI4KA IN_SAME_COMPONENT PTK2B -PI4KA REACTS_WITH PI4KA -PI4KA REACTS_WITH PI4KB -PI4KA REACTS_WITH PTK2B -PI4KB IN_SAME_COMPONENT PI4KA -PI4KB IN_SAME_COMPONENT PTK2B -PI4KB REACTS_WITH PI4KA -PI4KB REACTS_WITH PI4KB -PI4KB REACTS_WITH PTK2B -PIAS1 CO_CONTROL AR -PIAS1 IN_SAME_COMPONENT STAT1 -PIAS1 IN_SAME_COMPONENT SUFU -PIAS1 METABOLIC_CATALYSIS KLK3 -PIAS1 REACTS_WITH PIAS1 -PIAS1 REACTS_WITH STAT1 -PIAS1 REACTS_WITH SUFU -PIAS1 STATE_CHANGE MDM2 -PIAS2 IN_SAME_COMPONENT STAT4 -PIAS2 REACTS_WITH PIAS2 -PIAS2 REACTS_WITH STAT4 -PIAS2 STATE_CHANGE MDM2 -PIAS3 CO_CONTROL AR -PIAS3 CO_CONTROL PIAS4 -PIAS3 IN_SAME_COMPONENT MITF -PIAS3 IN_SAME_COMPONENT STAT3 -PIAS3 METABOLIC_CATALYSIS KLK3 -PIAS3 REACTS_WITH MITF -PIAS3 REACTS_WITH PIAS3 -PIAS3 REACTS_WITH STAT3 -PIAS3 STATE_CHANGE MYB -PIAS3 STATE_CHANGE SMAD2 -PIAS3 STATE_CHANGE SMAD4 -PIAS4 CO_CONTROL AR -PIAS4 CO_CONTROL PIAS3 -PIAS4 IN_SAME_COMPONENT SMAD4 -PIAS4 IN_SAME_COMPONENT STAT1 -PIAS4 IN_SAME_COMPONENT UBE2I -PIAS4 METABOLIC_CATALYSIS KLK3 -PIAS4 METABOLIC_CATALYSIS SOCS1 -PIAS4 REACTS_WITH PIAS4 -PIAS4 REACTS_WITH SMAD4 -PIAS4 REACTS_WITH STAT1 -PIAS4 REACTS_WITH UBE2I -PIK3C2B REACTS_WITH PIK3CA -PIK3C2B REACTS_WITH PIK3R1 -PIK3CA CO_CONTROL CD79A -PIK3CA CO_CONTROL CD79B -PIK3CA CO_CONTROL ITGA2B -PIK3CA CO_CONTROL ITGB3 -PIK3CA CO_CONTROL LYN -PIK3CA CO_CONTROL PTEN -PIK3CA CO_CONTROL RAC1 -PIK3CA CO_CONTROL SRC -PIK3CA IN_SAME_COMPONENT AGAP2 -PIK3CA IN_SAME_COMPONENT AR -PIK3CA IN_SAME_COMPONENT CD19 -PIK3CA IN_SAME_COMPONENT CSF2 -PIK3CA IN_SAME_COMPONENT CSF2RA -PIK3CA IN_SAME_COMPONENT CSF2RB -PIK3CA IN_SAME_COMPONENT DAB1 -PIK3CA IN_SAME_COMPONENT EFNA1 -PIK3CA IN_SAME_COMPONENT EPHA2 -PIK3CA IN_SAME_COMPONENT ESR1 -PIK3CA IN_SAME_COMPONENT FYN -PIK3CA IN_SAME_COMPONENT GAB1 -PIK3CA IN_SAME_COMPONENT GAB2 -PIK3CA IN_SAME_COMPONENT GNG2 -PIK3CA IN_SAME_COMPONENT GSN -PIK3CA IN_SAME_COMPONENT IL1B -PIK3CA IN_SAME_COMPONENT IL1R1 -PIK3CA IN_SAME_COMPONENT IL2 -PIK3CA IN_SAME_COMPONENT IL2RA -PIK3CA IN_SAME_COMPONENT IL2RB -PIK3CA IN_SAME_COMPONENT IL2RG -PIK3CA IN_SAME_COMPONENT IL3 -PIK3CA IN_SAME_COMPONENT IL3RA -PIK3CA IN_SAME_COMPONENT ITGA6 -PIK3CA IN_SAME_COMPONENT JAK1 -PIK3CA IN_SAME_COMPONENT JAK2 -PIK3CA IN_SAME_COMPONENT JAK3 -PIK3CA IN_SAME_COMPONENT LCK -PIK3CA IN_SAME_COMPONENT PELP1 -PIK3CA IN_SAME_COMPONENT PIK3R1 -PIK3CA IN_SAME_COMPONENT PTPN11 -PIK3CA IN_SAME_COMPONENT RELN -PIK3CA IN_SAME_COMPONENT SHC1 -PIK3CA IN_SAME_COMPONENT SOS1 -PIK3CA IN_SAME_COMPONENT SRC -PIK3CA IN_SAME_COMPONENT VLDLR -PIK3CA IN_SAME_COMPONENT YWHAZ -PIK3CA INTERACTS_WITH LYN -PIK3CA METABOLIC_CATALYSIS BCL2L1 -PIK3CA METABOLIC_CATALYSIS CCND1 -PIK3CA METABOLIC_CATALYSIS CCND3 -PIK3CA METABOLIC_CATALYSIS PLAU -PIK3CA REACTS_WITH AGAP2 -PIK3CA REACTS_WITH AR -PIK3CA REACTS_WITH CD19 -PIK3CA REACTS_WITH CDH1 -PIK3CA REACTS_WITH CSF2 -PIK3CA REACTS_WITH CSF2RA -PIK3CA REACTS_WITH CSF2RB -PIK3CA REACTS_WITH DAB1 -PIK3CA REACTS_WITH EFNA1 -PIK3CA REACTS_WITH EPB41L1 -PIK3CA REACTS_WITH EPHA2 -PIK3CA REACTS_WITH ESR1 -PIK3CA REACTS_WITH FYN -PIK3CA REACTS_WITH GAB1 -PIK3CA REACTS_WITH GAB2 -PIK3CA REACTS_WITH GNG2 -PIK3CA REACTS_WITH GSN -PIK3CA REACTS_WITH IL1B -PIK3CA REACTS_WITH IL1R1 -PIK3CA REACTS_WITH IL2 -PIK3CA REACTS_WITH IL2RA -PIK3CA REACTS_WITH IL2RB -PIK3CA REACTS_WITH IL2RG -PIK3CA REACTS_WITH IL3 -PIK3CA REACTS_WITH IL3RA -PIK3CA REACTS_WITH ITGA6 -PIK3CA REACTS_WITH ITGB4 -PIK3CA REACTS_WITH JAK1 -PIK3CA REACTS_WITH JAK2 -PIK3CA REACTS_WITH JAK3 -PIK3CA REACTS_WITH LCK -PIK3CA REACTS_WITH NFKB1 -PIK3CA REACTS_WITH NFKBIA -PIK3CA REACTS_WITH PELP1 -PIK3CA REACTS_WITH PIK3C2B -PIK3CA REACTS_WITH PIK3CA -PIK3CA REACTS_WITH PIK3R1 -PIK3CA REACTS_WITH PTPN11 -PIK3CA REACTS_WITH RELA -PIK3CA REACTS_WITH RELN -PIK3CA REACTS_WITH SHC1 -PIK3CA REACTS_WITH SOS1 -PIK3CA REACTS_WITH SRC -PIK3CA REACTS_WITH VLDLR -PIK3CA REACTS_WITH YWHAZ -PIK3CA STATE_CHANGE AKT1 -PIK3CA STATE_CHANGE BCAR1 -PIK3CA STATE_CHANGE BTK -PIK3CA STATE_CHANGE CRK -PIK3CA STATE_CHANGE DAPP1 -PIK3CA STATE_CHANGE MTOR -PIK3CA STATE_CHANGE NFKB1 -PIK3CA STATE_CHANGE NGF -PIK3CA STATE_CHANGE PDPK1 -PIK3CA STATE_CHANGE PRKCD -PIK3CA STATE_CHANGE PRKCZ -PIK3CA STATE_CHANGE PXN -PIK3CA STATE_CHANGE RAC1 -PIK3CA STATE_CHANGE RELA -PIK3CA STATE_CHANGE RHOA -PIK3CA STATE_CHANGE RPS6KB1 -PIK3CA STATE_CHANGE SGMS1 -PIK3CA STATE_CHANGE SMPD1 -PIK3CA STATE_CHANGE STAT3 -PIK3CA STATE_CHANGE TRPV1 -PIK3CA STATE_CHANGE UGCG -PIK3CA STATE_CHANGE VAV2 -PIK3CB IN_SAME_COMPONENT EGFR -PIK3CB IN_SAME_COMPONENT GAB1 -PIK3CB IN_SAME_COMPONENT PIK3R1 -PIK3CB REACTS_WITH EGFR -PIK3CB REACTS_WITH GAB1 -PIK3CB REACTS_WITH PIK3CB -PIK3CB REACTS_WITH PIK3R1 -PIK3CB STATE_CHANGE AKT1 -PIK3CB STATE_CHANGE TIAM1 -PIK3CG IN_SAME_COMPONENT CBL -PIK3CG IN_SAME_COMPONENT GNG2 -PIK3CG IN_SAME_COMPONENT PIK3R6 -PIK3CG REACTS_WITH CBL -PIK3CG REACTS_WITH GNG2 -PIK3CG REACTS_WITH PIK3CG -PIK3CG REACTS_WITH PIK3R6 -PIK3R1 CO_CONTROL CD79A -PIK3R1 CO_CONTROL CD79B -PIK3R1 CO_CONTROL ITGA2B -PIK3R1 CO_CONTROL ITGB3 -PIK3R1 CO_CONTROL LYN -PIK3R1 CO_CONTROL PTEN -PIK3R1 CO_CONTROL RAC1 -PIK3R1 CO_CONTROL SRC -PIK3R1 IN_SAME_COMPONENT AGAP2 -PIK3R1 IN_SAME_COMPONENT AR -PIK3R1 IN_SAME_COMPONENT CD19 -PIK3R1 IN_SAME_COMPONENT CSF2 -PIK3R1 IN_SAME_COMPONENT CSF2RA -PIK3R1 IN_SAME_COMPONENT CSF2RB -PIK3R1 IN_SAME_COMPONENT DAB1 -PIK3R1 IN_SAME_COMPONENT EFNA1 -PIK3R1 IN_SAME_COMPONENT EGFR -PIK3R1 IN_SAME_COMPONENT EPHA2 -PIK3R1 IN_SAME_COMPONENT ESR1 -PIK3R1 IN_SAME_COMPONENT FYN -PIK3R1 IN_SAME_COMPONENT GAB1 -PIK3R1 IN_SAME_COMPONENT GAB2 -PIK3R1 IN_SAME_COMPONENT GNG2 -PIK3R1 IN_SAME_COMPONENT GSN -PIK3R1 IN_SAME_COMPONENT IL1B -PIK3R1 IN_SAME_COMPONENT IL1R1 -PIK3R1 IN_SAME_COMPONENT IL2 -PIK3R1 IN_SAME_COMPONENT IL2RA -PIK3R1 IN_SAME_COMPONENT IL2RB -PIK3R1 IN_SAME_COMPONENT IL2RG -PIK3R1 IN_SAME_COMPONENT IL3 -PIK3R1 IN_SAME_COMPONENT IL3RA -PIK3R1 IN_SAME_COMPONENT INPP5D -PIK3R1 IN_SAME_COMPONENT IRS2 -PIK3R1 IN_SAME_COMPONENT ITGA6 -PIK3R1 IN_SAME_COMPONENT JAK1 -PIK3R1 IN_SAME_COMPONENT JAK2 -PIK3R1 IN_SAME_COMPONENT JAK3 -PIK3R1 IN_SAME_COMPONENT LCK -PIK3R1 IN_SAME_COMPONENT NFKBIA -PIK3R1 IN_SAME_COMPONENT PELP1 -PIK3R1 IN_SAME_COMPONENT PIK3CA -PIK3R1 IN_SAME_COMPONENT PIK3CB -PIK3R1 IN_SAME_COMPONENT PTPN11 -PIK3R1 IN_SAME_COMPONENT RELN -PIK3R1 IN_SAME_COMPONENT SHC1 -PIK3R1 IN_SAME_COMPONENT SOS1 -PIK3R1 IN_SAME_COMPONENT SRC -PIK3R1 IN_SAME_COMPONENT VLDLR -PIK3R1 IN_SAME_COMPONENT YWHAZ -PIK3R1 INTERACTS_WITH LYN -PIK3R1 METABOLIC_CATALYSIS BCL2L1 -PIK3R1 METABOLIC_CATALYSIS CCND1 -PIK3R1 METABOLIC_CATALYSIS CCND3 -PIK3R1 METABOLIC_CATALYSIS PLAU -PIK3R1 REACTS_WITH AGAP2 -PIK3R1 REACTS_WITH AR -PIK3R1 REACTS_WITH CD19 -PIK3R1 REACTS_WITH CDH1 -PIK3R1 REACTS_WITH CSF2 -PIK3R1 REACTS_WITH CSF2RA -PIK3R1 REACTS_WITH CSF2RB -PIK3R1 REACTS_WITH DAB1 -PIK3R1 REACTS_WITH EFNA1 -PIK3R1 REACTS_WITH EGFR -PIK3R1 REACTS_WITH EPB41L1 -PIK3R1 REACTS_WITH EPHA2 -PIK3R1 REACTS_WITH ESR1 -PIK3R1 REACTS_WITH FYN -PIK3R1 REACTS_WITH GAB1 -PIK3R1 REACTS_WITH GAB2 -PIK3R1 REACTS_WITH GNG2 -PIK3R1 REACTS_WITH GSN -PIK3R1 REACTS_WITH IL1B -PIK3R1 REACTS_WITH IL1R1 -PIK3R1 REACTS_WITH IL2 -PIK3R1 REACTS_WITH IL2RA -PIK3R1 REACTS_WITH IL2RB -PIK3R1 REACTS_WITH IL2RG -PIK3R1 REACTS_WITH IL3 -PIK3R1 REACTS_WITH IL3RA -PIK3R1 REACTS_WITH INPP5D -PIK3R1 REACTS_WITH IRS2 -PIK3R1 REACTS_WITH ITGA6 -PIK3R1 REACTS_WITH ITGB4 -PIK3R1 REACTS_WITH JAK1 -PIK3R1 REACTS_WITH JAK2 -PIK3R1 REACTS_WITH JAK3 -PIK3R1 REACTS_WITH LCK -PIK3R1 REACTS_WITH NFKB1 -PIK3R1 REACTS_WITH NFKBIA -PIK3R1 REACTS_WITH PELP1 -PIK3R1 REACTS_WITH PIK3C2B -PIK3R1 REACTS_WITH PIK3CA -PIK3R1 REACTS_WITH PIK3CB -PIK3R1 REACTS_WITH PIK3R1 -PIK3R1 REACTS_WITH PTPN11 -PIK3R1 REACTS_WITH RELA -PIK3R1 REACTS_WITH RELN -PIK3R1 REACTS_WITH SHC1 -PIK3R1 REACTS_WITH SOS1 -PIK3R1 REACTS_WITH SRC -PIK3R1 REACTS_WITH VLDLR -PIK3R1 REACTS_WITH YWHAZ -PIK3R1 STATE_CHANGE AKT1 -PIK3R1 STATE_CHANGE BCAR1 -PIK3R1 STATE_CHANGE BTK -PIK3R1 STATE_CHANGE CRK -PIK3R1 STATE_CHANGE DAPP1 -PIK3R1 STATE_CHANGE MTOR -PIK3R1 STATE_CHANGE NFKB1 -PIK3R1 STATE_CHANGE NGF -PIK3R1 STATE_CHANGE PDPK1 -PIK3R1 STATE_CHANGE PRKCD -PIK3R1 STATE_CHANGE PRKCZ -PIK3R1 STATE_CHANGE PXN -PIK3R1 STATE_CHANGE RAC1 -PIK3R1 STATE_CHANGE RELA -PIK3R1 STATE_CHANGE RHOA -PIK3R1 STATE_CHANGE RPS6KB1 -PIK3R1 STATE_CHANGE SGMS1 -PIK3R1 STATE_CHANGE SMPD1 -PIK3R1 STATE_CHANGE STAT3 -PIK3R1 STATE_CHANGE TIAM1 -PIK3R1 STATE_CHANGE TRPV1 -PIK3R1 STATE_CHANGE UGCG -PIK3R1 STATE_CHANGE VAV2 -PIK3R6 IN_SAME_COMPONENT CBL -PIK3R6 IN_SAME_COMPONENT GNG2 -PIK3R6 IN_SAME_COMPONENT PIK3CG -PIK3R6 REACTS_WITH CBL -PIK3R6 REACTS_WITH GNG2 -PIK3R6 REACTS_WITH PIK3CG -PIK3R6 REACTS_WITH PIK3R6 -PIM1 IN_SAME_COMPONENT MAX -PIM1 IN_SAME_COMPONENT MYB -PIM1 IN_SAME_COMPONENT MYC -PIM1 IN_SAME_COMPONENT SND1 -PIM1 METABOLIC_CATALYSIS FOSL1 -PIM1 METABOLIC_CATALYSIS ID2 -PIM1 METABOLIC_CATALYSIS LECT2 -PIM1 REACTS_WITH MAX -PIM1 REACTS_WITH MYB -PIM1 REACTS_WITH MYC -PIM1 REACTS_WITH PIM1 -PIM1 REACTS_WITH SND1 -PIM1 STATE_CHANGE NFATC1 -PIN1 CO_CONTROL MDM2 -PIN1 CO_CONTROL PPP2CA -PIN1 CO_CONTROL PPP2R1A -PIN1 CO_CONTROL PPP2R2B -PIN1 CO_CONTROL UBE2D1 -PIN1 IN_SAME_COMPONENT AXIN1 -PIN1 IN_SAME_COMPONENT GSK3B -PIN1 IN_SAME_COMPONENT PPP2CA -PIN1 IN_SAME_COMPONENT PPP2R5A -PIN1 IN_SAME_COMPONENT TP53 -PIN1 REACTS_WITH PIN1 -PIN1 REACTS_WITH TP53 -PIN1 STATE_CHANGE MAX -PIN1 STATE_CHANGE MYC -PIN1 STATE_CHANGE RAF1 -PINX1 IN_SAME_COMPONENT DKC1 -PINX1 IN_SAME_COMPONENT HSP90AA1 -PINX1 IN_SAME_COMPONENT PTGES3 -PINX1 IN_SAME_COMPONENT TERT -PINX1 REACTS_WITH DKC1 -PINX1 REACTS_WITH HSP90AA1 -PINX1 REACTS_WITH PINX1 -PINX1 REACTS_WITH PTGES3 -PINX1 REACTS_WITH TERT -PIP5K1C IN_SAME_COMPONENT AP1M1 -PIP5K1C IN_SAME_COMPONENT TLN1 -PIP5K1C REACTS_WITH AP1M1 -PIP5K1C REACTS_WITH PIP5K1C -PIP5K1C REACTS_WITH TLN1 -PIP5K1C STATE_CHANGE CDH1 -PIP5K1C STATE_CHANGE CTNNB1 -PIP5K1C STATE_CHANGE TLN1 -PITX2 IN_SAME_COMPONENT CTNNB1 -PITX2 IN_SAME_COMPONENT HDAC1 -PITX2 IN_SAME_COMPONENT LEF1 -PITX2 METABOLIC_CATALYSIS CCND2 -PITX2 METABOLIC_CATALYSIS LEF1 -PITX2 REACTS_WITH CTNNB1 -PITX2 REACTS_WITH HDAC1 -PITX2 REACTS_WITH LEF1 -PITX2 REACTS_WITH PITX2 -PKN1 STATE_CHANGE AR -PKN1 STATE_CHANGE MLTK -PKN1 STATE_CHANGE NCOA2 -PLA2G1B INTERACTS_WITH PLA2G4A -PLA2G2A IN_SAME_COMPONENT GPC1 -PLA2G2A REACTS_WITH GPC1 -PLA2G2A REACTS_WITH PLA2G2A -PLA2G4A INTERACTS_WITH PLA2G1B -PLA2G4A INTERACTS_WITH PRKCB -PLA2G7 IN_SAME_COMPONENT PAFAH1B1 -PLA2G7 REACTS_WITH PAFAH1B1 -PLA2G7 REACTS_WITH PLA2G7 -PLAT IN_SAME_COMPONENT ITGAM -PLAT IN_SAME_COMPONENT ITGB2 -PLAT IN_SAME_COMPONENT LRP1 -PLAT REACTS_WITH ITGAM -PLAT REACTS_WITH ITGB2 -PLAT REACTS_WITH LRP1 -PLAT REACTS_WITH PLAT -PLAU CO_CONTROL ITGA3 -PLAU CO_CONTROL ITGB1 -PLAU IN_SAME_COMPONENT FGA -PLAU IN_SAME_COMPONENT FGB -PLAU IN_SAME_COMPONENT FGG -PLAU IN_SAME_COMPONENT FN1 -PLAU IN_SAME_COMPONENT ITGA3 -PLAU IN_SAME_COMPONENT ITGA5 -PLAU IN_SAME_COMPONENT ITGAM -PLAU IN_SAME_COMPONENT ITGAV -PLAU IN_SAME_COMPONENT ITGB1 -PLAU IN_SAME_COMPONENT ITGB2 -PLAU IN_SAME_COMPONENT ITGB3 -PLAU IN_SAME_COMPONENT ITGB5 -PLAU IN_SAME_COMPONENT NCL -PLAU IN_SAME_COMPONENT PLAUR -PLAU IN_SAME_COMPONENT PLG -PLAU IN_SAME_COMPONENT SERPINE1 -PLAU IN_SAME_COMPONENT VTN -PLAU INTERACTS_WITH HGF -PLAU INTERACTS_WITH MET -PLAU INTERACTS_WITH MMP2 -PLAU INTERACTS_WITH PLAUR -PLAUR CO_CONTROL ITGA3 -PLAUR CO_CONTROL ITGB1 -PLAU REACTS_WITH FGA -PLAU REACTS_WITH FGB -PLAU REACTS_WITH FGG -PLAU REACTS_WITH FN1 -PLAU REACTS_WITH ITGA3 -PLAU REACTS_WITH ITGA5 -PLAU REACTS_WITH ITGAM -PLAU REACTS_WITH ITGAV -PLAU REACTS_WITH ITGB1 -PLAU REACTS_WITH ITGB2 -PLAU REACTS_WITH ITGB3 -PLAU REACTS_WITH ITGB5 -PLAU REACTS_WITH MMP9 -PLAU REACTS_WITH NCL -PLAU REACTS_WITH NFKB1 -PLAU REACTS_WITH PDGFRB -PLAU REACTS_WITH PLAU -PLAU REACTS_WITH PLAUR -PLAU REACTS_WITH PLG -PLAU REACTS_WITH RELA -PLAU REACTS_WITH SERPINE1 -PLAU REACTS_WITH VTN -PLAUR IN_SAME_COMPONENT FGA -PLAUR IN_SAME_COMPONENT FGB -PLAUR IN_SAME_COMPONENT FGG -PLAUR IN_SAME_COMPONENT FN1 -PLAUR IN_SAME_COMPONENT ITGA3 -PLAUR IN_SAME_COMPONENT ITGA5 -PLAUR IN_SAME_COMPONENT ITGAM -PLAUR IN_SAME_COMPONENT ITGAV -PLAUR IN_SAME_COMPONENT ITGB1 -PLAUR IN_SAME_COMPONENT ITGB2 -PLAUR IN_SAME_COMPONENT ITGB3 -PLAUR IN_SAME_COMPONENT ITGB5 -PLAUR IN_SAME_COMPONENT NCL -PLAUR IN_SAME_COMPONENT PLAU -PLAUR IN_SAME_COMPONENT SERPINE1 -PLAUR IN_SAME_COMPONENT VTN -PLAUR INTERACTS_WITH HGF -PLAUR INTERACTS_WITH MET -PLAUR INTERACTS_WITH PLAU -PLAUR REACTS_WITH FGA -PLAUR REACTS_WITH FGB -PLAUR REACTS_WITH FGG -PLAUR REACTS_WITH FN1 -PLAUR REACTS_WITH ITGA3 -PLAUR REACTS_WITH ITGA5 -PLAUR REACTS_WITH ITGAM -PLAUR REACTS_WITH ITGAV -PLAUR REACTS_WITH ITGB1 -PLAUR REACTS_WITH ITGB2 -PLAUR REACTS_WITH ITGB3 -PLAUR REACTS_WITH ITGB5 -PLAUR REACTS_WITH NCL -PLAUR REACTS_WITH PDGFRB -PLAUR REACTS_WITH PLAU -PLAUR REACTS_WITH PLAUR -PLAUR REACTS_WITH SERPINE1 -PLAUR REACTS_WITH VTN -PLAUR STATE_CHANGE HGF -PLAUR STATE_CHANGE PDGFD -PLAUR STATE_CHANGE PLG -PLAUR STATE_CHANGE SRC -PLAU STATE_CHANGE HGF -PLAU STATE_CHANGE PDGFD -PLAU STATE_CHANGE PLAUR -PLAU STATE_CHANGE PLG -PLAU STATE_CHANGE SRC -PLCB2 IN_SAME_COMPONENT SNCA -PLCB2 REACTS_WITH PLCB2 -PLCB2 REACTS_WITH SNCA -PLCG1 CO_CONTROL GRAP2 -PLCG1 CO_CONTROL ITK -PLCG1 CO_CONTROL LCP2 -PLCG1 CO_CONTROL PLCG1 -PLCG1 CO_CONTROL SRC -PLCG1 CO_CONTROL VAV1 -PLCG1 IN_SAME_COMPONENT ARHGEF7 -PLCG1 IN_SAME_COMPONENT EGF -PLCG1 IN_SAME_COMPONENT EGFR -PLCG1 IN_SAME_COMPONENT GIT1 -PLCG1 IN_SAME_COMPONENT GRAP2 -PLCG1 IN_SAME_COMPONENT ITK -PLCG1 IN_SAME_COMPONENT KIRREL -PLCG1 IN_SAME_COMPONENT LAT -PLCG1 IN_SAME_COMPONENT LAT2 -PLCG1 IN_SAME_COMPONENT LCP2 -PLCG1 IN_SAME_COMPONENT NGF -PLCG1 IN_SAME_COMPONENT NPHS1 -PLCG1 IN_SAME_COMPONENT NPHS2 -PLCG1 IN_SAME_COMPONENT PDGFB -PLCG1 IN_SAME_COMPONENT PDGFRB -PLCG1 IN_SAME_COMPONENT TRPV1 -PLCG1 IN_SAME_COMPONENT VAV1 -PLCG1 METABOLIC_CATALYSIS EGR1 -PLCG1 REACTS_WITH CBL -PLCG1 REACTS_WITH EGF -PLCG1 REACTS_WITH EGFR -PLCG1 REACTS_WITH GRAP2 -PLCG1 REACTS_WITH ITK -PLCG1 REACTS_WITH KIRREL -PLCG1 REACTS_WITH LAT -PLCG1 REACTS_WITH LAT2 -PLCG1 REACTS_WITH LCP2 -PLCG1 REACTS_WITH NGF -PLCG1 REACTS_WITH NPHS1 -PLCG1 REACTS_WITH NPHS2 -PLCG1 REACTS_WITH PDGFB -PLCG1 REACTS_WITH PDGFRB -PLCG1 REACTS_WITH PLCG1 -PLCG1 REACTS_WITH TRPV1 -PLCG1 REACTS_WITH VAV1 -PLCG1 STATE_CHANGE ABL1 -PLCG1 STATE_CHANGE CAMK2A -PLCG1 STATE_CHANGE CAMK4 -PLCG1 STATE_CHANGE CDC42 -PLCG1 STATE_CHANGE CREB1 -PLCG1 STATE_CHANGE GSN -PLCG1 STATE_CHANGE PLCG1 -PLCG1 STATE_CHANGE SPHK1 -PLCG1 STATE_CHANGE STAT5A -PLCG2 CO_CONTROL INPP5D -PLCG2 IN_SAME_COMPONENT BLNK -PLCG2 IN_SAME_COMPONENT BTK -PLCG2 IN_SAME_COMPONENT CD72 -PLCG2 IN_SAME_COMPONENT CD79A -PLCG2 IN_SAME_COMPONENT CD79B -PLCG2 IN_SAME_COMPONENT LYN -PLCG2 IN_SAME_COMPONENT SYK -PLCG2 REACTS_WITH BLNK -PLCG2 REACTS_WITH BTK -PLCG2 REACTS_WITH CD72 -PLCG2 REACTS_WITH CD79A -PLCG2 REACTS_WITH CD79B -PLCG2 REACTS_WITH LYN -PLCG2 REACTS_WITH PLCG2 -PLCG2 REACTS_WITH PTPN6 -PLCG2 REACTS_WITH SYK -PLD1 IN_SAME_COMPONENT SNCA -PLD1 REACTS_WITH PLD1 -PLD1 REACTS_WITH SNCA -PLD2 IN_SAME_COMPONENT SNCA -PLD2 REACTS_WITH PLD2 -PLD2 REACTS_WITH RHOA -PLD2 REACTS_WITH SNCA -PLEKHA7 STATE_CHANGE KIAA1543 -PLEKHG6 STATE_CHANGE RHOA -PLG IN_SAME_COMPONENT ITGAM -PLG IN_SAME_COMPONENT ITGB2 -PLG IN_SAME_COMPONENT PLAU -PLG REACTS_WITH ITGAM -PLG REACTS_WITH ITGB2 -PLG REACTS_WITH PLAU -PLG REACTS_WITH PLG -PLG STATE_CHANGE BDNF -PLG STATE_CHANGE MMP12 -PLG STATE_CHANGE MMP13 -PLG STATE_CHANGE MMP3 -PLG STATE_CHANGE MMP9 -PLG STATE_CHANGE NGF -PLG STATE_CHANGE PLAU -PLG STATE_CHANGE PLAUR -PLG STATE_CHANGE SDC4 -PLG STATE_CHANGE TGFB1 -PLK1 CO_CONTROL CCNB1 -PLK1 CO_CONTROL CDK1 -PLK1 CO_CONTROL PPP2CA -PLK1 CO_CONTROL PPP2R1A -PLK1 CO_CONTROL RHOA -PLK1 IN_SAME_COMPONENT ERCC6L -PLK1 IN_SAME_COMPONENT GOLGA2 -PLK1 IN_SAME_COMPONENT GORASP1 -PLK1 IN_SAME_COMPONENT KIF20A -PLK1 IN_SAME_COMPONENT MLF1IP -PLK1 IN_SAME_COMPONENT RAB1A -PLK1 REACTS_WITH ERCC6L -PLK1 REACTS_WITH GOLGA2 -PLK1 REACTS_WITH GORASP1 -PLK1 REACTS_WITH KIF20A -PLK1 REACTS_WITH MLF1IP -PLK1 REACTS_WITH PLK1 -PLK1 REACTS_WITH RAB1A -PLK1 STATE_CHANGE AURKA -PLK1 STATE_CHANGE BORA -PLK1 STATE_CHANGE BUB1B -PLK1 STATE_CHANGE CDC20 -PLK1 STATE_CHANGE CDC25C -PLK1 STATE_CHANGE CENPE -PLK1 STATE_CHANGE CLSPN -PLK1 STATE_CHANGE ECT2 -PLK1 STATE_CHANGE FBXO5 -PLK1 STATE_CHANGE KIF2A -PLK1 STATE_CHANGE NDC80 -PLK1 STATE_CHANGE NINL -PLK1 STATE_CHANGE NUDC -PLK1 STATE_CHANGE PLK1S1 -PLK1 STATE_CHANGE ROCK2 -PLK1 STATE_CHANGE SGOL1 -PLK1 STATE_CHANGE SPC24 -PLK1 STATE_CHANGE STAG2 -PLK1 STATE_CHANGE TPT1 -PLK1 STATE_CHANGE TPX2 -PLK1 STATE_CHANGE TUBG1 -PLK1 STATE_CHANGE WEE1 -PLK3 METABOLIC_CATALYSIS CCNE1 -PLK3 STATE_CHANGE CDC25C -PLK3 STATE_CHANGE CHEK2 -PLK3 STATE_CHANGE TP53 -PMP22 IN_SAME_COMPONENT ITGA6 -PMP22 IN_SAME_COMPONENT ITGB4 -PMP22 REACTS_WITH ITGA6 -PMP22 REACTS_WITH ITGB4 -PMP22 REACTS_WITH PMP22 -POLDIP3 IN_SAME_COMPONENT RPS6KB1 -POLDIP3 REACTS_WITH POLDIP3 -POLDIP3 REACTS_WITH RPS6KB1 -POMC IN_SAME_COMPONENT MC4R -POMC REACTS_WITH AGRP -POMC REACTS_WITH MC4R -POMC REACTS_WITH POMC -POMC REACTS_WITH SDC3 -POT1 IN_SAME_COMPONENT ACD -POT1 IN_SAME_COMPONENT TERF1 -POT1 IN_SAME_COMPONENT TINF2 -POT1 REACTS_WITH ACD -POT1 REACTS_WITH POT1 -POT1 REACTS_WITH TERF1 -POT1 REACTS_WITH TERF2 -POT1 REACTS_WITH TERF2IP -POT1 REACTS_WITH TINF2 -POU1F1 METABOLIC_CATALYSIS PRL -POU2F1 CO_CONTROL AR -POU2F1 CO_CONTROL ESR1 -POU2F1 CO_CONTROL FOS -POU2F1 CO_CONTROL FOXA1 -POU2F1 CO_CONTROL FOXO1 -POU2F1 CO_CONTROL GATA2 -POU2F1 CO_CONTROL JUN -POU2F1 CO_CONTROL NCOA2 -POU2F1 CO_CONTROL PBX1 -POU2F1 CO_CONTROL REL -POU2F1 CO_CONTROL SP1 -POU2F1 IN_SAME_COMPONENT ATF2 -POU2F1 IN_SAME_COMPONENT BRCA1 -POU2F1 IN_SAME_COMPONENT NF1 -POU2F1 METABOLIC_CATALYSIS GADD45A -POU2F1 METABOLIC_CATALYSIS IL3 -POU2F1 METABOLIC_CATALYSIS KLK3 -POU2F1 METABOLIC_CATALYSIS PDE9A -POU2F1 METABOLIC_CATALYSIS PRL -POU2F1 METABOLIC_CATALYSIS TMPRSS2 -POU2F1 REACTS_WITH ATF2 -POU2F1 REACTS_WITH BRCA1 -POU2F1 REACTS_WITH NF1 -POU2F1 REACTS_WITH POU2F1 -POU2F2 REACTS_WITH BCL2A1 -POU4F1 CO_CONTROL HDAC2 -POU4F1 CO_CONTROL JMY -POU4F1 CO_CONTROL POU4F2 -POU4F1 CO_CONTROL SMARCA4 -POU4F1 CO_CONTROL SP1 -POU4F1 CO_CONTROL TADA2B -POU4F1 CO_CONTROL TAF9 -POU4F1 CO_CONTROL TP53 -POU4F1 CO_CONTROL ZNF385A -POU4F1 METABOLIC_CATALYSIS BAX -POU4F1 METABOLIC_CATALYSIS BCL2 -POU4F1 METABOLIC_CATALYSIS CDKN1A -POU4F1 METABOLIC_CATALYSIS PMAIP1 -POU4F2 CO_CONTROL POU4F1 -POU4F2 CO_CONTROL SP1 -POU4F2 CO_CONTROL TP53 -POU4F2 METABOLIC_CATALYSIS BAX -PPARGC1A IN_SAME_COMPONENT MLST8 -PPARGC1A IN_SAME_COMPONENT MTOR -PPARGC1A IN_SAME_COMPONENT RPTOR -PPARGC1A IN_SAME_COMPONENT SIRT1 -PPARGC1A IN_SAME_COMPONENT YY1 -PPARGC1A METABOLIC_CATALYSIS CYCS -PPARGC1A METABOLIC_CATALYSIS PPARGC1A -PPARGC1A REACTS_WITH MLST8 -PPARGC1A REACTS_WITH MTOR -PPARGC1A REACTS_WITH PPARGC1A -PPARGC1A REACTS_WITH RPTOR -PPARGC1A REACTS_WITH SIRT1 -PPARGC1A REACTS_WITH YY1 -PPARG CO_CONTROL FOS -PPARG CO_CONTROL JUN -PPARG IN_SAME_COMPONENT CHD7 -PPARG IN_SAME_COMPONENT HDAC3 -PPARG IN_SAME_COMPONENT NLK -PPARG IN_SAME_COMPONENT RB1 -PPARG IN_SAME_COMPONENT SETDB1 -PPARG METABOLIC_CATALYSIS IL2 -PPARG METABOLIC_CATALYSIS IL4 -PPARG REACTS_WITH CHD7 -PPARG REACTS_WITH FOS -PPARG REACTS_WITH HDAC3 -PPARG REACTS_WITH JUN -PPARG REACTS_WITH NLK -PPARG REACTS_WITH PPARG -PPARG REACTS_WITH RB1 -PPARG REACTS_WITH SETDB1 -PPIB STATE_CHANGE BSG -PPIB STATE_CHANGE SDC1 -PPID IN_SAME_COMPONENT MYB -PPID REACTS_WITH MYB -PPID REACTS_WITH PPID -PPM1A STATE_CHANGE SMAD1 -PPM1A STATE_CHANGE SMAD2 -PPM1A STATE_CHANGE SMAD5 -PPM1A STATE_CHANGE SMAD9 -PPM1D STATE_CHANGE MDM2 -PPP1CA CO_CONTROL ACVRL1 -PPP1CA CO_CONTROL CAV1 -PPP1CA CO_CONTROL TGFB1 -PPP1CA CO_CONTROL TGFBR1 -PPP1CA CO_CONTROL TGFBR2 -PPP1CA IN_SAME_COMPONENT ACVRL1 -PPP1CA IN_SAME_COMPONENT BMPR2 -PPP1CA IN_SAME_COMPONENT PPP1R15A -PPP1CA IN_SAME_COMPONENT SMAD7 -PPP1CA IN_SAME_COMPONENT TGFB1 -PPP1CA IN_SAME_COMPONENT TGFBR1 -PPP1CA IN_SAME_COMPONENT TGFBR2 -PPP1CA IN_SAME_COMPONENT ZFYVE16 -PPP1CA REACTS_WITH ACVRL1 -PPP1CA REACTS_WITH BMPR2 -PPP1CA REACTS_WITH PPP1CA -PPP1CA REACTS_WITH PPP1R15A -PPP1CA REACTS_WITH SMAD1 -PPP1CA REACTS_WITH SMAD7 -PPP1CA REACTS_WITH TGFB1 -PPP1CA REACTS_WITH TGFBR1 -PPP1CA REACTS_WITH TGFBR2 -PPP1CA REACTS_WITH ZFYVE16 -PPP1CB IN_SAME_COMPONENT PPP1R12A -PPP1CB STATE_CHANGE PLK1 -PPP1CC IN_SAME_COMPONENT AURKB -PPP1CC IN_SAME_COMPONENT PPP1R3A -PPP1CC REACTS_WITH AURKB -PPP1CC REACTS_WITH GSK3B -PPP1CC REACTS_WITH PPP1CC -PPP1CC REACTS_WITH PPP1R3A -PPP1CC REACTS_WITH PPP2R5D -PPP1R12A IN_SAME_COMPONENT PPP1CB -PPP1R12A REACTS_WITH PPP1R12A -PPP1R12A STATE_CHANGE MYL2 -PPP1R12A STATE_CHANGE PLK1 -PPP1R13L CO_CONTROL DYRK2 -PPP1R13L CO_CONTROL HIPK2 -PPP1R13L CO_CONTROL MAPK14 -PPP1R13L CO_CONTROL PRKCD -PPP1R13L STATE_CHANGE TP53 -PPP1R15A IN_SAME_COMPONENT BMPR2 -PPP1R15A IN_SAME_COMPONENT PPP1CA -PPP1R15A IN_SAME_COMPONENT SMAD7 -PPP1R15A IN_SAME_COMPONENT TGFBR1 -PPP1R15A IN_SAME_COMPONENT TGFBR2 -PPP1R15A IN_SAME_COMPONENT ZFYVE16 -PPP1R15A REACTS_WITH BMPR2 -PPP1R15A REACTS_WITH PPP1CA -PPP1R15A REACTS_WITH PPP1R15A -PPP1R15A REACTS_WITH SMAD1 -PPP1R15A REACTS_WITH SMAD7 -PPP1R15A REACTS_WITH TGFBR1 -PPP1R15A REACTS_WITH TGFBR2 -PPP1R15A REACTS_WITH ZFYVE16 -PPP1R3A IN_SAME_COMPONENT PPP1CC -PPP1R3A REACTS_WITH GSK3B -PPP1R3A REACTS_WITH PPP1CC -PPP1R3A REACTS_WITH PPP1R3A -PPP2CA CO_CONTROL KSR1 -PPP2CA CO_CONTROL PIN1 -PPP2CA CO_CONTROL PLK1 -PPP2CA CO_CONTROL PPP2CB -PPP2CA CO_CONTROL PPP2R2A -PPP2CA CO_CONTROL TGFBR1 -PPP2CA CO_CONTROL TGFBR2 -PPP2CA IN_SAME_COMPONENT AXIN1 -PPP2CA IN_SAME_COMPONENT CCNG1 -PPP2CA IN_SAME_COMPONENT GSK3B -PPP2CA IN_SAME_COMPONENT PIN1 -PPP2CA IN_SAME_COMPONENT PPP2R1A -PPP2CA IN_SAME_COMPONENT PPP2R2A -PPP2CA IN_SAME_COMPONENT PPP2R2B -PPP2CA IN_SAME_COMPONENT PPP2R3B -PPP2CA IN_SAME_COMPONENT PPP2R4 -PPP2CA IN_SAME_COMPONENT PPP2R5A -PPP2CA REACTS_WITH CCNG1 -PPP2CA REACTS_WITH PPP2CA -PPP2CA REACTS_WITH PPP2R1A -PPP2CA REACTS_WITH PPP2R2A -PPP2CA REACTS_WITH PPP2R4 -PPP2CA STATE_CHANGE CHEK1 -PPP2CA STATE_CHANGE CXCR2 -PPP2CA STATE_CHANGE IL8 -PPP2CA STATE_CHANGE KSR1 -PPP2CA STATE_CHANGE MAX -PPP2CA STATE_CHANGE MDM2 -PPP2CA STATE_CHANGE MYC -PPP2CA STATE_CHANGE RAF1 -PPP2CA STATE_CHANGE RB1 -PPP2CA STATE_CHANGE RPS6KB1 -PPP2CA STATE_CHANGE SGOL1 -PPP2CB CO_CONTROL PPP2CA -PPP2CB CO_CONTROL PPP2R2A -PPP2CB CO_CONTROL TGFBR1 -PPP2CB CO_CONTROL TGFBR2 -PPP2CB STATE_CHANGE RPS6KB1 -PPP2R1A CO_CONTROL KSR1 -PPP2R1A CO_CONTROL PIN1 -PPP2R1A CO_CONTROL PLK1 -PPP2R1A IN_SAME_COMPONENT PPP2CA -PPP2R1A IN_SAME_COMPONENT PPP2R2A -PPP2R1A IN_SAME_COMPONENT PPP2R2B -PPP2R1A REACTS_WITH PPP2CA -PPP2R1A REACTS_WITH PPP2R1A -PPP2R1A REACTS_WITH PPP2R2A -PPP2R1A STATE_CHANGE CHEK1 -PPP2R1A STATE_CHANGE CXCR2 -PPP2R1A STATE_CHANGE IL8 -PPP2R1A STATE_CHANGE KSR1 -PPP2R1A STATE_CHANGE RAF1 -PPP2R1A STATE_CHANGE SGOL1 -PPP2R2A CO_CONTROL PPP2CA -PPP2R2A CO_CONTROL PPP2CB -PPP2R2A IN_SAME_COMPONENT PPP2CA -PPP2R2A IN_SAME_COMPONENT PPP2R1A -PPP2R2A IN_SAME_COMPONENT TGFBR1 -PPP2R2A IN_SAME_COMPONENT TGFBR2 -PPP2R2A REACTS_WITH PPP2CA -PPP2R2A REACTS_WITH PPP2R1A -PPP2R2A REACTS_WITH PPP2R2A -PPP2R2A REACTS_WITH TGFBR1 -PPP2R2A REACTS_WITH TGFBR2 -PPP2R2A STATE_CHANGE KSR1 -PPP2R2A STATE_CHANGE RAF1 -PPP2R2A STATE_CHANGE RPS6KB1 -PPP2R2B CO_CONTROL KSR1 -PPP2R2B CO_CONTROL PIN1 -PPP2R2B IN_SAME_COMPONENT PPP2CA -PPP2R2B IN_SAME_COMPONENT PPP2R1A -PPP2R2B STATE_CHANGE CHEK1 -PPP2R2B STATE_CHANGE KSR1 -PPP2R2B STATE_CHANGE RAF1 -PPP2R3B IN_SAME_COMPONENT PPP2CA -PPP2R3B STATE_CHANGE RB1 -PPP2R4 IN_SAME_COMPONENT CCNG1 -PPP2R4 IN_SAME_COMPONENT PPP2CA -PPP2R4 REACTS_WITH CCNG1 -PPP2R4 REACTS_WITH PPP2CA -PPP2R4 REACTS_WITH PPP2R4 -PPP2R4 STATE_CHANGE MDM2 -PPP2R5A IN_SAME_COMPONENT AXIN1 -PPP2R5A IN_SAME_COMPONENT GSK3B -PPP2R5A IN_SAME_COMPONENT PIN1 -PPP2R5A IN_SAME_COMPONENT PPP2CA -PPP2R5A REACTS_WITH GSK3B -PPP2R5A REACTS_WITH PPP2R5A -PPP2R5A STATE_CHANGE APC -PPP2R5A STATE_CHANGE AXIN1 -PPP2R5A STATE_CHANGE CTNNB1 -PPP2R5A STATE_CHANGE MAX -PPP2R5A STATE_CHANGE MYC -PPP2R5D IN_SAME_COMPONENT AURKA -PPP2R5D IN_SAME_COMPONENT AURKB -PPP2R5D REACTS_WITH AURKA -PPP2R5D REACTS_WITH AURKB -PPP2R5D REACTS_WITH PPP1CC -PPP2R5D REACTS_WITH PPP2R5D -PPP2R5D STATE_CHANGE APC -PPP2R5D STATE_CHANGE AXIN1 -PPP2R5D STATE_CHANGE CTNNB1 -PPP2R5D STATE_CHANGE MAP1B -PPP2R5D STATE_CHANGE TH -PPP3CA CO_CONTROL DAPP1 -PPP3CA CO_CONTROL VAV2 -PPP3CA IN_SAME_COMPONENT PPP3CB -PPP3CA IN_SAME_COMPONENT PPP3CC -PPP3CA STATE_CHANGE NFATC1 -PPP3CB CO_CONTROL DAPP1 -PPP3CB CO_CONTROL VAV2 -PPP3CB IN_SAME_COMPONENT PPP3CA -PPP3CB IN_SAME_COMPONENT PPP3CC -PPP3CB STATE_CHANGE NFATC1 -PPP3CB STATE_CHANGE NFATC4 -PPP3CC CO_CONTROL DAPP1 -PPP3CC CO_CONTROL VAV2 -PPP3CC IN_SAME_COMPONENT PPP3CA -PPP3CC IN_SAME_COMPONENT PPP3CB -PPP3CC STATE_CHANGE NFATC1 -PPP5C IN_SAME_COMPONENT FKBP5 -PPP5C IN_SAME_COMPONENT HSP90AA1 -PPP5C REACTS_WITH FKBP5 -PPP5C REACTS_WITH HSP90AA1 -PPP5C REACTS_WITH PPP5C -PPP5C STATE_CHANGE RAF1 -PRDX1 IN_SAME_COMPONENT AR -PRDX1 METABOLIC_CATALYSIS KLK3 -PRDX1 REACTS_WITH AR -PRDX1 REACTS_WITH PRDX1 -PREX1 STATE_CHANGE RAC1 -PREX2 STATE_CHANGE RAC1 -PRF1 STATE_CHANGE GZMB -PRKACA CO_CONTROL CSNK1A1 -PRKACA CO_CONTROL GSK3B -PRKACA CO_CONTROL MAPK14 -PRKACA CO_CONTROL RPS6KA5 -PRKACA CO_CONTROL SMO -PRKACA CO_CONTROL TGFB1 -PRKACA IN_SAME_COMPONENT AKAP5 -PRKACA IN_SAME_COMPONENT GAB1 -PRKACA IN_SAME_COMPONENT NOS3 -PRKACA IN_SAME_COMPONENT PRKACB -PRKACA IN_SAME_COMPONENT PRKAR1A -PRKACA IN_SAME_COMPONENT PRKAR1B -PRKACA IN_SAME_COMPONENT PTPN11 -PRKACA REACTS_WITH AKAP5 -PRKACA REACTS_WITH GAB1 -PRKACA REACTS_WITH KDR -PRKACA REACTS_WITH NOS3 -PRKACA REACTS_WITH PRKACA -PRKACA REACTS_WITH PTPN11 -PRKACA REACTS_WITH VEGFA -PRKACA STATE_CHANGE AURKA -PRKACA STATE_CHANGE BAD -PRKACA STATE_CHANGE CAB39 -PRKACA STATE_CHANGE CREB1 -PRKACA STATE_CHANGE ERBB2 -PRKACA STATE_CHANGE ERBB3 -PRKACA STATE_CHANGE FN1 -PRKACA STATE_CHANGE GDNF -PRKACA STATE_CHANGE GFRA1 -PRKACA STATE_CHANGE GLI2 -PRKACA STATE_CHANGE GLI3 -PRKACA STATE_CHANGE GNB5 -PRKACA STATE_CHANGE GNG2 -PRKACA STATE_CHANGE HDAC8 -PRKACA STATE_CHANGE HSP90AA1 -PRKACA STATE_CHANGE ITGA4 -PRKACA STATE_CHANGE ITGB1 -PRKACA STATE_CHANGE MAP2K6 -PRKACA STATE_CHANGE NF2 -PRKACA STATE_CHANGE NFATC1 -PRKACA STATE_CHANGE NFATC2 -PRKACA STATE_CHANGE NOS3 -PRKACA STATE_CHANGE PXN -PRKACA STATE_CHANGE RARA -PRKACA STATE_CHANGE SDC1 -PRKACA STATE_CHANGE SMG5 -PRKACA STATE_CHANGE STK11 -PRKACA STATE_CHANGE YWHAZ -PRKACB IN_SAME_COMPONENT PRKACA -PRKACB IN_SAME_COMPONENT PRKAR1A -PRKACB IN_SAME_COMPONENT PRKAR1B -PRKACB REACTS_WITH PRKACB -PRKACB STATE_CHANGE FN1 -PRKACB STATE_CHANGE ITGA4 -PRKACB STATE_CHANGE ITGB1 -PRKACB STATE_CHANGE PXN -PRKAR1A IN_SAME_COMPONENT PRKACA -PRKAR1A IN_SAME_COMPONENT PRKACB -PRKAR1A IN_SAME_COMPONENT PRKAR1B -PRKAR1A STATE_CHANGE FN1 -PRKAR1A STATE_CHANGE ITGA4 -PRKAR1A STATE_CHANGE ITGB1 -PRKAR1A STATE_CHANGE PXN -PRKAR1B IN_SAME_COMPONENT PRKACA -PRKAR1B IN_SAME_COMPONENT PRKACB -PRKAR1B IN_SAME_COMPONENT PRKAR1A -PRKAR1B STATE_CHANGE FN1 -PRKAR1B STATE_CHANGE ITGA4 -PRKAR1B STATE_CHANGE ITGB1 -PRKAR1B STATE_CHANGE PXN -PRKCA CO_CONTROL CHUK -PRKCA CO_CONTROL ERC1 -PRKCA CO_CONTROL FN1 -PRKCA CO_CONTROL IKBKB -PRKCA CO_CONTROL IKBKG -PRKCA CO_CONTROL ITGA5 -PRKCA CO_CONTROL ITGB1 -PRKCA CO_CONTROL SDC4 -PRKCA IN_SAME_COMPONENT CHUK -PRKCA IN_SAME_COMPONENT GDNF -PRKCA IN_SAME_COMPONENT GFRA1 -PRKCA IN_SAME_COMPONENT IKBKB -PRKCA IN_SAME_COMPONENT IKBKG -PRKCA IN_SAME_COMPONENT SDC4 -PRKCA INTERACTS_WITH ADAM12 -PRKCA INTERACTS_WITH RHOA -PRKCA INTERACTS_WITH SDC4 -PRKCA REACTS_WITH CHUK -PRKCA REACTS_WITH GDNF -PRKCA REACTS_WITH GFRA1 -PRKCA REACTS_WITH IKBKB -PRKCA REACTS_WITH IKBKG -PRKCA REACTS_WITH PRKCA -PRKCA REACTS_WITH SDC4 -PRKCA STATE_CHANGE ARHGDIA -PRKCA STATE_CHANGE ATF2 -PRKCA STATE_CHANGE ITGA6 -PRKCA STATE_CHANGE ITGB4 -PRKCA STATE_CHANGE NFKB1 -PRKCA STATE_CHANGE NFKBIA -PRKCA STATE_CHANGE PLD1 -PRKCA STATE_CHANGE RAB4A -PRKCA STATE_CHANGE RAC1 -PRKCA STATE_CHANGE RAF1 -PRKCA STATE_CHANGE RARA -PRKCA STATE_CHANGE RELA -PRKCA STATE_CHANGE RHOA -PRKCA STATE_CHANGE SDC4 -PRKCB CO_CONTROL MAP2K4 -PRKCB INTERACTS_WITH PLA2G4A -PRKCB STATE_CHANGE CHUK -PRKCB STATE_CHANGE IKBKB -PRKCB STATE_CHANGE IKBKG -PRKCB STATE_CHANGE MAPK8 -PRKCB STATE_CHANGE RAF1 -PRKCD CO_CONTROL IL6 -PRKCD CO_CONTROL IL6R -PRKCD CO_CONTROL IL6ST -PRKCD CO_CONTROL JAK1 -PRKCD CO_CONTROL PPP1R13L -PRKCD CO_CONTROL SOCS3 -PRKCD IN_SAME_COMPONENT BAD -PRKCD IN_SAME_COMPONENT MAPK3 -PRKCD IN_SAME_COMPONENT SDC2 -PRKCD IN_SAME_COMPONENT SNCA -PRKCD METABOLIC_CATALYSIS GLI2 -PRKCD REACTS_WITH BAD -PRKCD REACTS_WITH MAPK3 -PRKCD REACTS_WITH PRKCD -PRKCD REACTS_WITH SDC2 -PRKCD REACTS_WITH SNCA -PRKCD STATE_CHANGE CASP3 -PRKCD STATE_CHANGE LYN -PRKCD STATE_CHANGE MAP2K1 -PRKCD STATE_CHANGE MYLPF -PRKCD STATE_CHANGE NFKB1 -PRKCD STATE_CHANGE NFKBIA -PRKCD STATE_CHANGE NOS3 -PRKCD STATE_CHANGE RAF1 -PRKCD STATE_CHANGE RELA -PRKCD STATE_CHANGE SDC4 -PRKCD STATE_CHANGE STAT1 -PRKCD STATE_CHANGE STAT3 -PRKCD STATE_CHANGE TP53 -PRKCE IN_SAME_COMPONENT CDC42 -PRKCE IN_SAME_COMPONENT F2RL2 -PRKCE IN_SAME_COMPONENT PARD6A -PRKCE METABOLIC_CATALYSIS FASLG -PRKCE REACTS_WITH CDC42 -PRKCE REACTS_WITH F2RL2 -PRKCE REACTS_WITH PARD6A -PRKCE REACTS_WITH PRKCE -PRKCE STATE_CHANGE TIAM1 -PRKCG STATE_CHANGE RARA -PRKCQ CO_CONTROL EGR1 -PRKCQ CO_CONTROL EGR4 -PRKCQ CO_CONTROL FLNA -PRKCQ CO_CONTROL FOS -PRKCQ CO_CONTROL JUN -PRKCQ CO_CONTROL PDPK1 -PRKCQ CO_CONTROL PRKCQ -PRKCQ IN_SAME_COMPONENT FLNA -PRKCQ IN_SAME_COMPONENT PDPK1 -PRKCQ IN_SAME_COMPONENT STK39 -PRKCQ METABOLIC_CATALYSIS FASLG -PRKCQ METABOLIC_CATALYSIS TNF -PRKCQ REACTS_WITH FLNA -PRKCQ REACTS_WITH PDPK1 -PRKCQ REACTS_WITH PRKCQ -PRKCQ REACTS_WITH STK39 -PRKCQ STATE_CHANGE MAPK8 -PRKCQ STATE_CHANGE RASGRP1 -PRKCZ CO_CONTROL CALM1 -PRKCZ CO_CONTROL FLNA -PRKCZ CO_CONTROL FZD2 -PRKCZ CO_CONTROL MAP2K4 -PRKCZ CO_CONTROL ROR2 -PRKCZ CO_CONTROL WNT5A -PRKCZ IN_SAME_COMPONENT CDC42 -PRKCZ IN_SAME_COMPONENT F2RL2 -PRKCZ IN_SAME_COMPONENT PARD6A -PRKCZ IN_SAME_COMPONENT PAWR -PRKCZ INTERACTS_WITH AKT1 -PRKCZ INTERACTS_WITH ICAM1 -PRKCZ INTERACTS_WITH ITGAM -PRKCZ INTERACTS_WITH ITGB2 -PRKCZ METABOLIC_CATALYSIS MMP9 -PRKCZ REACTS_WITH CDC42 -PRKCZ REACTS_WITH F2RL2 -PRKCZ REACTS_WITH PARD6A -PRKCZ REACTS_WITH PAWR -PRKCZ REACTS_WITH PRKCZ -PRKCZ STATE_CHANGE AKT1 -PRKCZ STATE_CHANGE DLG1 -PRKCZ STATE_CHANGE GSK3B -PRKCZ STATE_CHANGE MAPK8 -PRKCZ STATE_CHANGE NFKB1 -PRKCZ STATE_CHANGE NFKBIA -PRKCZ STATE_CHANGE PEBP1 -PRKCZ STATE_CHANGE RAF1 -PRKCZ STATE_CHANGE RELA -PRKCZ STATE_CHANGE TIAM1 -PRKDC CO_CONTROL AR -PRKDC IN_SAME_COMPONENT BARD1 -PRKDC IN_SAME_COMPONENT TP53 -PRKDC IN_SAME_COMPONENT XRCC5 -PRKDC IN_SAME_COMPONENT XRCC6 -PRKDC METABOLIC_CATALYSIS KLK3 -PRKDC REACTS_WITH BARD1 -PRKDC REACTS_WITH PRKDC -PRKDC REACTS_WITH TP53 -PRKDC REACTS_WITH XRCC5 -PRKDC REACTS_WITH XRCC6 -PRKDC STATE_CHANGE AKT1 -PRKG1 IN_SAME_COMPONENT MAPK14 -PRKG1 REACTS_WITH MAPK14 -PRKG1 REACTS_WITH PRKG1 -PRKG1 REACTS_WITH TAB1 -PRKRA STATE_CHANGE EIF2AK2 -PRL IN_SAME_COMPONENT HBEGF -PRL IN_SAME_COMPONENT JAK2 -PRL IN_SAME_COMPONENT PRLR -PRL METABOLIC_CATALYSIS CSN2 -PRL REACTS_WITH HBEGF -PRL REACTS_WITH JAK2 -PRL REACTS_WITH PRL -PRL REACTS_WITH PRLR -PRLR IN_SAME_COMPONENT HBEGF -PRLR IN_SAME_COMPONENT JAK2 -PRLR IN_SAME_COMPONENT PRL -PRLR METABOLIC_CATALYSIS CSN2 -PRLR REACTS_WITH HBEGF -PRLR REACTS_WITH JAK2 -PRLR REACTS_WITH PRL -PRLR REACTS_WITH PRLR -PRLR STATE_CHANGE JAK2 -PRLR STATE_CHANGE STAT5A -PRL STATE_CHANGE JAK2 -PRL STATE_CHANGE STAT5A -PRMT1 CO_CONTROL TADA2B -PRMT1 CO_CONTROL TAF9 -PRMT1 IN_SAME_COMPONENT CARM1 -PRMT1 IN_SAME_COMPONENT TP53 -PRMT1 METABOLIC_CATALYSIS GADD45A -PRMT1 REACTS_WITH CARM1 -PRMT1 REACTS_WITH PRMT1 -PRMT1 REACTS_WITH TP53 -PRMT5 CO_CONTROL HDAC1 -PRMT5 CO_CONTROL RB1 -PRMT5 CO_CONTROL RBBP4 -PRMT5 CO_CONTROL TFDP1 -PRMT5 IN_SAME_COMPONENT TTC5 -PRMT5 IN_SAME_COMPONENT WDR77 -PRMT5 REACTS_WITH CHD3 -PRMT5 REACTS_WITH CHD4 -PRMT5 REACTS_WITH GATAD2A -PRMT5 REACTS_WITH GATAD2B -PRMT5 REACTS_WITH HDAC1 -PRMT5 REACTS_WITH HDAC2 -PRMT5 REACTS_WITH MBD2 -PRMT5 REACTS_WITH MTA2 -PRMT5 REACTS_WITH PRMT5 -PRMT5 REACTS_WITH RBBP4 -PRMT5 REACTS_WITH RBBP7 -PRMT5 REACTS_WITH TTC5 -PRMT5 STATE_CHANGE TP53 -PRNP IN_SAME_COMPONENT GPC1 -PRNP REACTS_WITH GPC1 -PRNP REACTS_WITH PRNP -PROC IN_SAME_COMPONENT ITGAM -PROC IN_SAME_COMPONENT ITGB2 -PROC REACTS_WITH ITGAM -PROC REACTS_WITH ITGB2 -PROC REACTS_WITH PROC -PSEN1 IN_SAME_COMPONENT APH1A -PSEN1 IN_SAME_COMPONENT APH1B -PSEN1 IN_SAME_COMPONENT NCSTN -PSEN1 IN_SAME_COMPONENT PSENEN -PSEN1 STATE_CHANGE CNTN1 -PSEN1 STATE_CHANGE CNTN6 -PSEN1 STATE_CHANGE CTNNB1 -PSEN1 STATE_CHANGE DLL1 -PSEN1 STATE_CHANGE DLL4 -PSEN1 STATE_CHANGE DNER -PSEN1 STATE_CHANGE FBXW11 -PSEN1 STATE_CHANGE NOTCH1 -PSEN1 STATE_CHANGE NOTCH2 -PSEN1 STATE_CHANGE NOTCH3 -PSEN1 STATE_CHANGE NOTCH4 -PSEN1 STATE_CHANGE SDC3 -PSEN1 STATE_CHANGE SORT1 -PSEN1 STATE_CHANGE TRAF6 -PSEN1 STATE_CHANGE ZNF274 -PSENEN IN_SAME_COMPONENT APH1A -PSENEN IN_SAME_COMPONENT APH1B -PSENEN IN_SAME_COMPONENT NCSTN -PSENEN IN_SAME_COMPONENT PSEN1 -PSENEN STATE_CHANGE CNTN1 -PSENEN STATE_CHANGE CNTN6 -PSENEN STATE_CHANGE CTNNB1 -PSENEN STATE_CHANGE DLL1 -PSENEN STATE_CHANGE DLL4 -PSENEN STATE_CHANGE DNER -PSENEN STATE_CHANGE FBXW11 -PSENEN STATE_CHANGE NOTCH1 -PSENEN STATE_CHANGE NOTCH2 -PSENEN STATE_CHANGE NOTCH3 -PSENEN STATE_CHANGE NOTCH4 -PSENEN STATE_CHANGE SDC3 -PSENEN STATE_CHANGE SORT1 -PSENEN STATE_CHANGE TRAF6 -PSENEN STATE_CHANGE ZNF274 -PSMA3 IN_SAME_COMPONENT AURKB -PSMA3 REACTS_WITH AURKB -PSMA3 REACTS_WITH BIRC5 -PSMA3 REACTS_WITH CDCA8 -PSMA3 REACTS_WITH CUL3 -PSMA3 REACTS_WITH INCENP -PSMA3 REACTS_WITH KLHL13 -PSMA3 REACTS_WITH KLHL9 -PSMA3 REACTS_WITH PSMA3 -PTCH1 IN_SAME_COMPONENT DHH -PTCH1 IN_SAME_COMPONENT IHH -PTCH1 IN_SAME_COMPONENT SHH -PTCH1 METABOLIC_CATALYSIS PTCH1 -PTCH1 METABOLIC_CATALYSIS PTHLH -PTCH1 METABOLIC_CATALYSIS TGFB2 -PTCH1 REACTS_WITH DHH -PTCH1 REACTS_WITH GPC3 -PTCH1 REACTS_WITH IHH -PTCH1 REACTS_WITH PTCH1 -PTCH1 REACTS_WITH SHH -PTCH1 STATE_CHANGE SMO -PTCH1 STATE_CHANGE STIL -PTCH2 IN_SAME_COMPONENT DHH -PTCH2 IN_SAME_COMPONENT IHH -PTCH2 IN_SAME_COMPONENT SHH -PTCH2 REACTS_WITH DHH -PTCH2 REACTS_WITH IHH -PTCH2 REACTS_WITH PTCH2 -PTCH2 REACTS_WITH SHH -PTEN CO_CONTROL PIK3CA -PTEN CO_CONTROL PIK3R1 -PTEN IN_SAME_COMPONENT PDGFB -PTEN IN_SAME_COMPONENT PDGFRB -PTEN REACTS_WITH PDGFB -PTEN REACTS_WITH PDGFRB -PTEN REACTS_WITH PTEN -PTF1A IN_SAME_COMPONENT HES1 -PTF1A REACTS_WITH HES1 -PTF1A REACTS_WITH PTF1A -PTGDR STATE_CHANGE PRKACA -PTGES2 IN_SAME_COMPONENT CEBPB -PTGES2 METABOLIC_CATALYSIS IRF9 -PTGES2 REACTS_WITH CEBPB -PTGES2 REACTS_WITH PTGES2 -PTGES3 IN_SAME_COMPONENT AKT1 -PTGES3 IN_SAME_COMPONENT DKC1 -PTGES3 IN_SAME_COMPONENT HNRNPC -PTGES3 IN_SAME_COMPONENT HSP90AA1 -PTGES3 IN_SAME_COMPONENT HUS1 -PTGES3 IN_SAME_COMPONENT MTOR -PTGES3 IN_SAME_COMPONENT NCL -PTGES3 IN_SAME_COMPONENT PINX1 -PTGES3 IN_SAME_COMPONENT RAD1 -PTGES3 IN_SAME_COMPONENT RAD9A -PTGES3 IN_SAME_COMPONENT RPS6KB1 -PTGES3 IN_SAME_COMPONENT SMG5 -PTGES3 IN_SAME_COMPONENT SMG6 -PTGES3 IN_SAME_COMPONENT TERT -PTGES3 REACTS_WITH AKT1 -PTGES3 REACTS_WITH DKC1 -PTGES3 REACTS_WITH HNRNPC -PTGES3 REACTS_WITH HSP90AA1 -PTGES3 REACTS_WITH HUS1 -PTGES3 REACTS_WITH MTOR -PTGES3 REACTS_WITH NCL -PTGES3 REACTS_WITH PINX1 -PTGES3 REACTS_WITH PTGES3 -PTGES3 REACTS_WITH RAD1 -PTGES3 REACTS_WITH RAD9A -PTGES3 REACTS_WITH RPS6KB1 -PTGES3 REACTS_WITH SMG5 -PTGES3 REACTS_WITH SMG6 -PTGES3 REACTS_WITH TERT -PTGIR STATE_CHANGE PRKACA -PTK2B CO_CONTROL AR -PTK2B CO_CONTROL TGFB1I1 -PTK2B IN_SAME_COMPONENT BCAR1 -PTK2B IN_SAME_COMPONENT CRK -PTK2B IN_SAME_COMPONENT IL2 -PTK2B IN_SAME_COMPONENT IL2RA -PTK2B IN_SAME_COMPONENT IL2RB -PTK2B IN_SAME_COMPONENT IL2RG -PTK2B IN_SAME_COMPONENT ITGAV -PTK2B IN_SAME_COMPONENT ITGB3 -PTK2B IN_SAME_COMPONENT JAK1 -PTK2B IN_SAME_COMPONENT JAK3 -PTK2B IN_SAME_COMPONENT LCK -PTK2B IN_SAME_COMPONENT PI4KA -PTK2B IN_SAME_COMPONENT PI4KB -PTK2B IN_SAME_COMPONENT PTPN11 -PTK2B IN_SAME_COMPONENT PXN -PTK2B IN_SAME_COMPONENT SRC -PTK2B METABOLIC_CATALYSIS KLK3 -PTK2B REACTS_WITH BCAR1 -PTK2B REACTS_WITH CRK -PTK2B REACTS_WITH IL2 -PTK2B REACTS_WITH IL2RA -PTK2B REACTS_WITH IL2RB -PTK2B REACTS_WITH IL2RG -PTK2B REACTS_WITH ITGAV -PTK2B REACTS_WITH ITGB3 -PTK2B REACTS_WITH JAK1 -PTK2B REACTS_WITH JAK3 -PTK2B REACTS_WITH LCK -PTK2B REACTS_WITH PI4KA -PTK2B REACTS_WITH PI4KB -PTK2B REACTS_WITH PTK2B -PTK2B REACTS_WITH PTPN11 -PTK2B REACTS_WITH PXN -PTK2B REACTS_WITH SRC -PTK2B STATE_CHANGE GSK3B -PTK2B STATE_CHANGE MAPK8 -PTK2B STATE_CHANGE PXN -PTK2B STATE_CHANGE STAT5B -PTK2 IN_SAME_COMPONENT BCAR1 -PTK2 IN_SAME_COMPONENT PXN -PTK2 REACTS_WITH BCAR1 -PTK2 REACTS_WITH CRK -PTK2 REACTS_WITH PXN -PTK2 REACTS_WITH TRIP6 -PTK2 STATE_CHANGE RAP1B -PTN STATE_CHANGE CTTN -PTN STATE_CHANGE SDC3 -PTN STATE_CHANGE SRC -PTP4A1 IN_SAME_COMPONENT ATF5 -PTP4A1 REACTS_WITH ATF5 -PTP4A1 REACTS_WITH PTP4A1 -PTP4A1 STATE_CHANGE CCNA2 -PTP4A1 STATE_CHANGE CDKN1A -PTP4A1 STATE_CHANGE RAC1 -PTP4A1 STATE_CHANGE RHOA -PTP4A1 STATE_CHANGE RHOC -PTP4A2 IN_SAME_COMPONENT RABGGTB -PTP4A2 REACTS_WITH PTP4A2 -PTP4A2 REACTS_WITH RABGGTA -PTP4A2 REACTS_WITH RABGGTB -PTP4A2 STATE_CHANGE CDKN1A -PTP4A3 IN_SAME_COMPONENT ITGA1 -PTP4A3 REACTS_WITH ITGA1 -PTP4A3 REACTS_WITH PTP4A3 -PTP4A3 STATE_CHANGE BCAR1 -PTP4A3 STATE_CHANGE ITGB1 -PTP4A3 STATE_CHANGE RAC1 -PTP4A3 STATE_CHANGE RHOA -PTP4A3 STATE_CHANGE RHOC -PTPN11 CO_CONTROL CD247 -PTPN11 CO_CONTROL CD3D -PTPN11 CO_CONTROL CD3E -PTPN11 CO_CONTROL CD3G -PTPN11 CO_CONTROL CD4 -PTPN11 CO_CONTROL FOXO1 -PTPN11 CO_CONTROL FYN -PTPN11 CO_CONTROL HLA-DRA -PTPN11 CO_CONTROL HLA-DRB1 -PTPN11 CO_CONTROL LCK -PTPN11 CO_CONTROL SRC -PTPN11 CO_CONTROL STAT3 -PTPN11 CO_CONTROL ZAP70 -PTPN11 IN_SAME_COMPONENT CSF2 -PTPN11 IN_SAME_COMPONENT CSF2RA -PTPN11 IN_SAME_COMPONENT CSF2RB -PTPN11 IN_SAME_COMPONENT FLT1 -PTPN11 IN_SAME_COMPONENT FRS2 -PTPN11 IN_SAME_COMPONENT GAB1 -PTPN11 IN_SAME_COMPONENT GAB2 -PTPN11 IN_SAME_COMPONENT GDNF -PTPN11 IN_SAME_COMPONENT GFRA1 -PTPN11 IN_SAME_COMPONENT HGF -PTPN11 IN_SAME_COMPONENT IGF1 -PTPN11 IN_SAME_COMPONENT IGF1R -PTPN11 IN_SAME_COMPONENT IL2 -PTPN11 IN_SAME_COMPONENT IL2RA -PTPN11 IN_SAME_COMPONENT IL2RB -PTPN11 IN_SAME_COMPONENT IL2RG -PTPN11 IN_SAME_COMPONENT IL3 -PTPN11 IN_SAME_COMPONENT IL3RA -PTPN11 IN_SAME_COMPONENT IL5 -PTPN11 IN_SAME_COMPONENT IL5RA -PTPN11 IN_SAME_COMPONENT INPP5D -PTPN11 IN_SAME_COMPONENT INS -PTPN11 IN_SAME_COMPONENT INSR -PTPN11 IN_SAME_COMPONENT IRS1 -PTPN11 IN_SAME_COMPONENT JAK1 -PTPN11 IN_SAME_COMPONENT JAK2 -PTPN11 IN_SAME_COMPONENT JAK3 -PTPN11 IN_SAME_COMPONENT KLRG1 -PTPN11 IN_SAME_COMPONENT LCK -PTPN11 IN_SAME_COMPONENT MET -PTPN11 IN_SAME_COMPONENT MLLT4 -PTPN11 IN_SAME_COMPONENT NOS3 -PTPN11 IN_SAME_COMPONENT PDGFB -PTPN11 IN_SAME_COMPONENT PDGFRB -PTPN11 IN_SAME_COMPONENT PIK3CA -PTPN11 IN_SAME_COMPONENT PIK3R1 -PTPN11 IN_SAME_COMPONENT PRKACA -PTPN11 IN_SAME_COMPONENT PTK2B -PTPN11 IN_SAME_COMPONENT RAPGEF1 -PTPN11 IN_SAME_COMPONENT SDC2 -PTPN11 IN_SAME_COMPONENT SHC1 -PTPN11 IN_SAME_COMPONENT SOS1 -PTPN11 IN_SAME_COMPONENT STAT1 -PTPN11 IN_SAME_COMPONENT TEK -PTPN11 IN_SAME_COMPONENT VEGFA -PTPN11 METABOLIC_CATALYSIS A2M -PTPN11 METABOLIC_CATALYSIS CCND3 -PTPN11 REACTS_WITH CSF2 -PTPN11 REACTS_WITH CSF2RA -PTPN11 REACTS_WITH CSF2RB -PTPN11 REACTS_WITH FLT1 -PTPN11 REACTS_WITH FRS2 -PTPN11 REACTS_WITH GAB1 -PTPN11 REACTS_WITH GAB2 -PTPN11 REACTS_WITH GDNF -PTPN11 REACTS_WITH GFRA1 -PTPN11 REACTS_WITH HGF -PTPN11 REACTS_WITH IGF1 -PTPN11 REACTS_WITH IGF1R -PTPN11 REACTS_WITH IL2 -PTPN11 REACTS_WITH IL2RA -PTPN11 REACTS_WITH IL2RB -PTPN11 REACTS_WITH IL2RG -PTPN11 REACTS_WITH IL3 -PTPN11 REACTS_WITH IL3RA -PTPN11 REACTS_WITH IL5 -PTPN11 REACTS_WITH IL5RA -PTPN11 REACTS_WITH INPP5D -PTPN11 REACTS_WITH INS -PTPN11 REACTS_WITH INSR -PTPN11 REACTS_WITH IRS1 -PTPN11 REACTS_WITH JAK1 -PTPN11 REACTS_WITH JAK2 -PTPN11 REACTS_WITH JAK3 -PTPN11 REACTS_WITH KLRG1 -PTPN11 REACTS_WITH LCK -PTPN11 REACTS_WITH MET -PTPN11 REACTS_WITH MLLT4 -PTPN11 REACTS_WITH NOS3 -PTPN11 REACTS_WITH PDGFB -PTPN11 REACTS_WITH PDGFRB -PTPN11 REACTS_WITH PIK3CA -PTPN11 REACTS_WITH PIK3R1 -PTPN11 REACTS_WITH PRKACA -PTPN11 REACTS_WITH PTK2B -PTPN11 REACTS_WITH PTPN11 -PTPN11 REACTS_WITH RAPGEF1 -PTPN11 REACTS_WITH SDC2 -PTPN11 REACTS_WITH SHC1 -PTPN11 REACTS_WITH SOS1 -PTPN11 REACTS_WITH STAT1 -PTPN11 REACTS_WITH TEK -PTPN11 REACTS_WITH VEGFA -PTPN11 STATE_CHANGE AKT1 -PTPN11 STATE_CHANGE EGF -PTPN11 STATE_CHANGE EGFR -PTPN11 STATE_CHANGE ERBB2 -PTPN11 STATE_CHANGE ERBB3 -PTPN11 STATE_CHANGE FCER1A -PTPN11 STATE_CHANGE FCER1G -PTPN11 STATE_CHANGE FYB -PTPN11 STATE_CHANGE GAB1 -PTPN11 STATE_CHANGE GNAI1 -PTPN11 STATE_CHANGE GNAI3 -PTPN11 STATE_CHANGE HGF -PTPN11 STATE_CHANGE IFNG -PTPN11 STATE_CHANGE IFNGR1 -PTPN11 STATE_CHANGE IGHE -PTPN11 STATE_CHANGE JAK1 -PTPN11 STATE_CHANGE JAK2 -PTPN11 STATE_CHANGE KIT -PTPN11 STATE_CHANGE KITLG -PTPN11 STATE_CHANGE LYN -PTPN11 STATE_CHANGE MET -PTPN11 STATE_CHANGE MS4A2 -PTPN11 STATE_CHANGE PAG1 -PTPN11 STATE_CHANGE PDGFB -PTPN11 STATE_CHANGE PDGFRB -PTPN11 STATE_CHANGE PIK3CA -PTPN11 STATE_CHANGE PIK3R1 -PTPN11 STATE_CHANGE PRKCZ -PTPN11 STATE_CHANGE SGMS1 -PTPN11 STATE_CHANGE SHC1 -PTPN11 STATE_CHANGE SMPD1 -PTPN11 STATE_CHANGE SOS1 -PTPN11 STATE_CHANGE SYK -PTPN11 STATE_CHANGE UGCG -PTPN11 STATE_CHANGE VAV1 -PTPN13 STATE_CHANGE EFNB1 -PTPN1 IN_SAME_COMPONENT AKT1 -PTPN1 IN_SAME_COMPONENT BCAR1 -PTPN1 IN_SAME_COMPONENT CDH2 -PTPN1 IN_SAME_COMPONENT IGF1 -PTPN1 IN_SAME_COMPONENT IGF1R -PTPN1 IN_SAME_COMPONENT INS -PTPN1 IN_SAME_COMPONENT INSR -PTPN1 IN_SAME_COMPONENT IRS1 -PTPN1 IN_SAME_COMPONENT SHC1 -PTPN1 IN_SAME_COMPONENT TRPV6 -PTPN1 METABOLIC_CATALYSIS CSN2 -PTPN1 REACTS_WITH AKT1 -PTPN1 REACTS_WITH BCAR1 -PTPN1 REACTS_WITH CDH2 -PTPN1 REACTS_WITH IGF1 -PTPN1 REACTS_WITH IGF1R -PTPN1 REACTS_WITH INS -PTPN1 REACTS_WITH INSR -PTPN1 REACTS_WITH IRS1 -PTPN1 REACTS_WITH PTPN1 -PTPN1 REACTS_WITH SHC1 -PTPN1 REACTS_WITH TRPV6 -PTPN1 STATE_CHANGE BCAR1 -PTPN1 STATE_CHANGE CAV1 -PTPN1 STATE_CHANGE CRK -PTPN1 STATE_CHANGE CSF1 -PTPN1 STATE_CHANGE CSF1R -PTPN1 STATE_CHANGE DOK1 -PTPN1 STATE_CHANGE EGF -PTPN1 STATE_CHANGE EGFR -PTPN1 STATE_CHANGE HGF -PTPN1 STATE_CHANGE INS -PTPN1 STATE_CHANGE INSR -PTPN1 STATE_CHANGE JAK2 -PTPN1 STATE_CHANGE LAT -PTPN1 STATE_CHANGE LEP -PTPN1 STATE_CHANGE LEPR -PTPN1 STATE_CHANGE MET -PTPN1 STATE_CHANGE PDGFB -PTPN1 STATE_CHANGE PDGFRB -PTPN1 STATE_CHANGE SRC -PTPN1 STATE_CHANGE STAT5A -PTPN1 STATE_CHANGE STAT5B -PTPN1 STATE_CHANGE TYK2 -PTPN21 IN_SAME_COMPONENT SRC -PTPN21 REACTS_WITH PTPN21 -PTPN21 REACTS_WITH SRC -PTPN6 CO_CONTROL IL2RG -PTPN6 CO_CONTROL IL4 -PTPN6 CO_CONTROL IL4R -PTPN6 CO_CONTROL JAK1 -PTPN6 CO_CONTROL JAK3 -PTPN6 IN_SAME_COMPONENT CD72 -PTPN6 IN_SAME_COMPONENT IL2RG -PTPN6 IN_SAME_COMPONENT IL4 -PTPN6 IN_SAME_COMPONENT IL4R -PTPN6 IN_SAME_COMPONENT JAK1 -PTPN6 IN_SAME_COMPONENT JAK3 -PTPN6 REACTS_WITH BLNK -PTPN6 REACTS_WITH BTK -PTPN6 REACTS_WITH CD72 -PTPN6 REACTS_WITH CD79A -PTPN6 REACTS_WITH CD79B -PTPN6 REACTS_WITH IL2RG -PTPN6 REACTS_WITH IL4 -PTPN6 REACTS_WITH IL4R -PTPN6 REACTS_WITH JAK1 -PTPN6 REACTS_WITH JAK3 -PTPN6 REACTS_WITH LYN -PTPN6 REACTS_WITH PLCG2 -PTPN6 REACTS_WITH PTPN6 -PTPN6 REACTS_WITH SYK -PTPN6 STATE_CHANGE CD247 -PTPN6 STATE_CHANGE CD3D -PTPN6 STATE_CHANGE CD3E -PTPN6 STATE_CHANGE CD3G -PTPN6 STATE_CHANGE CD4 -PTPN6 STATE_CHANGE CD79A -PTPN6 STATE_CHANGE CD79B -PTPN6 STATE_CHANGE CTNNB1 -PTPN6 STATE_CHANGE EGF -PTPN6 STATE_CHANGE EGFR -PTPN6 STATE_CHANGE EPO -PTPN6 STATE_CHANGE EPOR -PTPN6 STATE_CHANGE FYN -PTPN6 STATE_CHANGE HLA-DRA -PTPN6 STATE_CHANGE HLA-DRB1 -PTPN6 STATE_CHANGE JAK2 -PTPN6 STATE_CHANGE KDR -PTPN6 STATE_CHANGE KIT -PTPN6 STATE_CHANGE KITLG -PTPN6 STATE_CHANGE LCK -PTPN6 STATE_CHANGE LYN -PTPN6 STATE_CHANGE PIK3CA -PTPN6 STATE_CHANGE PIK3R1 -PTPN6 STATE_CHANGE SH3BP2 -PTPN6 STATE_CHANGE SOCS3 -PTPN6 STATE_CHANGE STAT6 -PTPN6 STATE_CHANGE SYK -PTPN6 STATE_CHANGE VEGFA -PTPN6 STATE_CHANGE ZAP70 -PTPRA CO_CONTROL FN1 -PTPRA CO_CONTROL ITGA4 -PTPRA CO_CONTROL ITGB1 -PTPRA CO_CONTROL VCAM1 -PTPRA STATE_CHANGE INS -PTPRA STATE_CHANGE INSR -PTPRA STATE_CHANGE SRC -PTPRC CO_CONTROL CSK -PTPRC CO_CONTROL PAG1 -PTPRC IN_SAME_COMPONENT CXCL12 -PTPRC IN_SAME_COMPONENT CXCR4 -PTPRC REACTS_WITH CXCL12 -PTPRC REACTS_WITH CXCR4 -PTPRC REACTS_WITH PTPRC -PTPRC STATE_CHANGE CD79A -PTPRC STATE_CHANGE CD79B -PTPRC STATE_CHANGE FYN -PTPRC STATE_CHANGE LCK -PTPRC STATE_CHANGE LYN -PTPRJ STATE_CHANGE HGF -PTPRJ STATE_CHANGE KDR -PTPRJ STATE_CHANGE MET -PTPRJ STATE_CHANGE PDGFB -PTPRJ STATE_CHANGE PDGFRB -PTPRJ STATE_CHANGE SRC -PTPRJ STATE_CHANGE VEGFA -PTPRM STATE_CHANGE PIP5K1C -PVR IN_SAME_COMPONENT ITGAV -PVR IN_SAME_COMPONENT ITGB3 -PVR IN_SAME_COMPONENT PVRL3 -PVRL1 IN_SAME_COMPONENT PVRL3 -PVRL1 REACTS_WITH PVR -PVRL1 REACTS_WITH PVRL1 -PVRL1 REACTS_WITH PVRL3 -PVRL1 STATE_CHANGE CDH1 -PVRL1 STATE_CHANGE CTNNA1 -PVRL1 STATE_CHANGE CTNNB1 -PVRL2 CO_CONTROL CDH1 -PVRL2 CO_CONTROL CTNNA1 -PVRL2 CO_CONTROL CTNNB1 -PVRL2 CO_CONTROL CTNND1 -PVRL2 IN_SAME_COMPONENT PVRL3 -PVRL2 REACTS_WITH PVRL2 -PVRL2 REACTS_WITH PVRL3 -PVRL2 STATE_CHANGE CDH1 -PVRL2 STATE_CHANGE CTNNA1 -PVRL2 STATE_CHANGE CTNNB1 -PVRL2 STATE_CHANGE EXOC3 -PVRL2 STATE_CHANGE EXOC4 -PVRL3 IN_SAME_COMPONENT PVR -PVRL3 IN_SAME_COMPONENT PVRL1 -PVRL3 IN_SAME_COMPONENT PVRL2 -PVRL3 REACTS_WITH PVR -PVRL3 REACTS_WITH PVRL1 -PVRL3 REACTS_WITH PVRL2 -PVRL3 REACTS_WITH PVRL3 -PVRL3 STATE_CHANGE CLDN1 -PVRL3 STATE_CHANGE F11R -PVRL3 STATE_CHANGE PIK3CA -PVRL3 STATE_CHANGE PIK3R1 -PVRL3 STATE_CHANGE PTPRM -PVRL3 STATE_CHANGE SRC -PVR REACTS_WITH ITGAV -PVR REACTS_WITH ITGB3 -PVR REACTS_WITH PVR -PVR REACTS_WITH PVRL1 -PVR REACTS_WITH PVRL3 -PVR STATE_CHANGE SRC -PXN CO_CONTROL ITGA2B -PXN CO_CONTROL ITGB3 -PXN IN_SAME_COMPONENT ARHGEF7 -PXN IN_SAME_COMPONENT BCAR1 -PXN IN_SAME_COMPONENT CRK -PXN IN_SAME_COMPONENT EPHB1 -PXN IN_SAME_COMPONENT FN1 -PXN IN_SAME_COMPONENT GIT1 -PXN IN_SAME_COMPONENT GIT2 -PXN IN_SAME_COMPONENT ITGA2B -PXN IN_SAME_COMPONENT ITGA4 -PXN IN_SAME_COMPONENT ITGA9 -PXN IN_SAME_COMPONENT ITGB1 -PXN IN_SAME_COMPONENT ITGB3 -PXN IN_SAME_COMPONENT PAK1 -PXN IN_SAME_COMPONENT PTK2 -PXN IN_SAME_COMPONENT PTK2B -PXN IN_SAME_COMPONENT SRC -PXN IN_SAME_COMPONENT TLN1 -PXN IN_SAME_COMPONENT TNC -PXN IN_SAME_COMPONENT VCAM1 -PXN IN_SAME_COMPONENT YWHAZ -PXN INTERACTS_WITH RAC1 -PXN INTERACTS_WITH RHOA -PXN REACTS_WITH ARHGEF7 -PXN REACTS_WITH BCAR1 -PXN REACTS_WITH CRK -PXN REACTS_WITH EPHB1 -PXN REACTS_WITH FN1 -PXN REACTS_WITH GIT1 -PXN REACTS_WITH GIT2 -PXN REACTS_WITH ITGA4 -PXN REACTS_WITH ITGA9 -PXN REACTS_WITH ITGB1 -PXN REACTS_WITH ITGB7 -PXN REACTS_WITH PAK1 -PXN REACTS_WITH PTK2 -PXN REACTS_WITH PTK2B -PXN REACTS_WITH PXN -PXN REACTS_WITH SRC -PXN REACTS_WITH TLN1 -PXN REACTS_WITH TNC -PXN REACTS_WITH TRIP6 -PXN REACTS_WITH VCAM1 -PXN REACTS_WITH YWHAZ -PXN STATE_CHANGE PTK2B -PXN STATE_CHANGE RAP1B -RAB11A IN_SAME_COMPONENT ARR3 -RAB11A IN_SAME_COMPONENT ARRB2 -RAB11A IN_SAME_COMPONENT RAB11FIP3 -RAB11A IN_SAME_COMPONENT TBXA2R -RAB11A REACTS_WITH ARR3 -RAB11A REACTS_WITH ARRB2 -RAB11A REACTS_WITH RAB11A -RAB11A REACTS_WITH RAB11FIP3 -RAB11A REACTS_WITH TBXA2R -RAB11A STATE_CHANGE CXCR2 -RAB11A STATE_CHANGE DLL1 -RAB11A STATE_CHANGE IL8 -RAB11FIP3 IN_SAME_COMPONENT RAB11A -RAB11FIP3 REACTS_WITH RAB11A -RAB11FIP3 REACTS_WITH RAB11FIP3 -RAB1A IN_SAME_COMPONENT GOLGA2 -RAB1A IN_SAME_COMPONENT GORASP1 -RAB1A IN_SAME_COMPONENT PLK1 -RAB1A REACTS_WITH GOLGA2 -RAB1A REACTS_WITH GORASP1 -RAB1A REACTS_WITH PLK1 -RAB1A REACTS_WITH RAB1A -RAB23 CO_CONTROL ARRB2 -RAB23 CO_CONTROL SMO -RAB23 METABOLIC_CATALYSIS GLI2 -RAB23 STATE_CHANGE GLI3 -RAB3GAP2 IN_SAME_COMPONENT RIMS1 -RAB3GAP2 IN_SAME_COMPONENT UNC13B -RAB3GAP2 REACTS_WITH RAB3GAP2 -RAB3GAP2 REACTS_WITH RIMS1 -RAB3GAP2 REACTS_WITH UNC13B -RAB3GAP2 STATE_CHANGE STX1A -RAB3GAP2 STATE_CHANGE VAMP2 -RAB4A REACTS_WITH RAB4A -RAB5A CO_CONTROL DNM1 -RAB5A CO_CONTROL DNM2 -RAB5A IN_SAME_COMPONENT ACTN4 -RAB5A IN_SAME_COMPONENT GDI1 -RAB5A IN_SAME_COMPONENT USP6NL -RAB5A REACTS_WITH ACTN4 -RAB5A REACTS_WITH GDI1 -RAB5A REACTS_WITH RAB5A -RAB5A REACTS_WITH USP6NL -RAB5A STATE_CHANGE CDH1 -RAB5A STATE_CHANGE CTNNA1 -RAB5A STATE_CHANGE CTNNB1 -RAB5A STATE_CHANGE CXCR1 -RAB5A STATE_CHANGE CXCR2 -RAB5A STATE_CHANGE EGF -RAB5A STATE_CHANGE EGFR -RAB5A STATE_CHANGE IL8 -RAB5A STATE_CHANGE MET -RAB7A CO_CONTROL HGS -RAB7A STATE_CHANGE CDH1 -RAB7A STATE_CHANGE CTNNB1 -RAB7A STATE_CHANGE CXCR2 -RAB7A STATE_CHANGE IL8 -RABGGTA IN_SAME_COMPONENT RABGGTB -RABGGTA REACTS_WITH PTP4A2 -RABGGTA REACTS_WITH RABGGTA -RABGGTA REACTS_WITH RABGGTB -RABGGTB IN_SAME_COMPONENT PTP4A2 -RABGGTB IN_SAME_COMPONENT RABGGTA -RABGGTB REACTS_WITH PTP4A2 -RABGGTB REACTS_WITH RABGGTA -RABGGTB REACTS_WITH RABGGTB -RAC1 CO_CONTROL ABL1 -RAC1 CO_CONTROL BAIAP2 -RAC1 CO_CONTROL CDC42 -RAC1 CO_CONTROL DAPP1 -RAC1 CO_CONTROL IQGAP1 -RAC1 CO_CONTROL MAP3K7 -RAC1 CO_CONTROL MAP4K1 -RAC1 CO_CONTROL PIK3CA -RAC1 CO_CONTROL PIK3R1 -RAC1 CO_CONTROL RAC1 -RAC1 CO_CONTROL RACGAP1 -RAC1 CO_CONTROL RHOA -RAC1 IN_SAME_COMPONENT ARFIP2 -RAC1 IN_SAME_COMPONENT ARHGDIA -RAC1 IN_SAME_COMPONENT ARHGEF7 -RAC1 IN_SAME_COMPONENT CCM2 -RAC1 IN_SAME_COMPONENT CYBA -RAC1 IN_SAME_COMPONENT CYBB -RAC1 IN_SAME_COMPONENT IQGAP1 -RAC1 IN_SAME_COMPONENT MAP2K3 -RAC1 IN_SAME_COMPONENT MAP3K3 -RAC1 IN_SAME_COMPONENT NCF1 -RAC1 IN_SAME_COMPONENT NCF2 -RAC1 IN_SAME_COMPONENT NOX1 -RAC1 IN_SAME_COMPONENT NOXA1 -RAC1 IN_SAME_COMPONENT NOXO1 -RAC1 INTERACTS_WITH CDC42 -RAC1 INTERACTS_WITH ITGAV -RAC1 INTERACTS_WITH ITGB3 -RAC1 INTERACTS_WITH PXN -RAC1 INTERACTS_WITH RHOA -RAC1 METABOLIC_CATALYSIS CCND1 -RAC1 REACTS_WITH ARFIP2 -RAC1 REACTS_WITH ARHGDIA -RAC1 REACTS_WITH ARHGEF7 -RAC1 REACTS_WITH CCM2 -RAC1 REACTS_WITH CYBA -RAC1 REACTS_WITH CYBB -RAC1 REACTS_WITH IQGAP1 -RAC1 REACTS_WITH MAP2K3 -RAC1 REACTS_WITH MAP3K3 -RAC1 REACTS_WITH NCF1 -RAC1 REACTS_WITH NCF2 -RAC1 REACTS_WITH NOX1 -RAC1 REACTS_WITH NOXA1 -RAC1 REACTS_WITH NOXO1 -RAC1 REACTS_WITH RAC1 -RAC1 STATE_CHANGE ABI1 -RAC1 STATE_CHANGE ABI2 -RAC1 STATE_CHANGE AKT1 -RAC1 STATE_CHANGE ARHGAP5 -RAC1 STATE_CHANGE ARHGEF7 -RAC1 STATE_CHANGE ARR3 -RAC1 STATE_CHANGE ARRB2 -RAC1 STATE_CHANGE BCAR1 -RAC1 STATE_CHANGE C3orf10 -RAC1 STATE_CHANGE CDH1 -RAC1 STATE_CHANGE CRK -RAC1 STATE_CHANGE CTNNA1 -RAC1 STATE_CHANGE CTNNB1 -RAC1 STATE_CHANGE CTNND1 -RAC1 STATE_CHANGE CTTN -RAC1 STATE_CHANGE CYFIP2 -RAC1 STATE_CHANGE DOK2 -RAC1 STATE_CHANGE GAB1 -RAC1 STATE_CHANGE GIT2 -RAC1 STATE_CHANGE GRLF1 -RAC1 STATE_CHANGE IQGAP1 -RAC1 STATE_CHANGE IQGAP3 -RAC1 STATE_CHANGE KLHL20 -RAC1 STATE_CHANGE MAP2K4 -RAC1 STATE_CHANGE MAP3K1 -RAC1 STATE_CHANGE MAP3K11 -RAC1 STATE_CHANGE MAPK9 -RAC1 STATE_CHANGE NCK1 -RAC1 STATE_CHANGE NCKAP1 -RAC1 STATE_CHANGE PAK1 -RAC1 STATE_CHANGE PAK2 -RAC1 STATE_CHANGE PDGFB -RAC1 STATE_CHANGE PDGFRB -RAC1 STATE_CHANGE PIP5K1A -RAC1 STATE_CHANGE PIP5K1B -RAC1 STATE_CHANGE PIP5K1C -RAC1 STATE_CHANGE PLCB2 -RAC1 STATE_CHANGE RHOA -RAC1 STATE_CHANGE STAT3 -RAC1 STATE_CHANGE STAT5A -RAC1 STATE_CHANGE TBXA2R -RAC1 STATE_CHANGE WASF1 -RAC1 STATE_CHANGE WASF2 -RAC1 STATE_CHANGE WASL -RAC2 REACTS_WITH RAC2 -RACGAP1 CO_CONTROL RAC1 -RACGAP1 IN_SAME_COMPONENT KIF23 -RACGAP1 REACTS_WITH KIF23 -RACGAP1 REACTS_WITH RACGAP1 -RACGAP1 STATE_CHANGE CDC42 -RACGAP1 STATE_CHANGE RAC1 -RACGAP1 STATE_CHANGE RHOA -RACGAP1 STATE_CHANGE STAT3 -RACGAP1 STATE_CHANGE STAT5A -RAD17 IN_SAME_COMPONENT ATR -RAD17 IN_SAME_COMPONENT ATRIP -RAD17 IN_SAME_COMPONENT CDC6 -RAD17 IN_SAME_COMPONENT CEP164 -RAD17 IN_SAME_COMPONENT CHEK1 -RAD17 IN_SAME_COMPONENT CLSPN -RAD17 IN_SAME_COMPONENT HUS1 -RAD17 IN_SAME_COMPONENT RAD1 -RAD17 IN_SAME_COMPONENT RAD9A -RAD17 IN_SAME_COMPONENT RFC2 -RAD17 IN_SAME_COMPONENT RFC3 -RAD17 IN_SAME_COMPONENT RFC4 -RAD17 IN_SAME_COMPONENT RFC5 -RAD17 IN_SAME_COMPONENT RPA1 -RAD17 IN_SAME_COMPONENT RPA2 -RAD17 IN_SAME_COMPONENT SMARCAL1 -RAD17 IN_SAME_COMPONENT TIMELESS -RAD17 IN_SAME_COMPONENT TIPIN -RAD17 IN_SAME_COMPONENT TOPBP1 -RAD17 REACTS_WITH ATR -RAD17 REACTS_WITH ATRIP -RAD17 REACTS_WITH CDC6 -RAD17 REACTS_WITH CEP164 -RAD17 REACTS_WITH CHEK1 -RAD17 REACTS_WITH CLSPN -RAD17 REACTS_WITH HUS1 -RAD17 REACTS_WITH RAD1 -RAD17 REACTS_WITH RAD17 -RAD17 REACTS_WITH RAD9A -RAD17 REACTS_WITH RFC2 -RAD17 REACTS_WITH RFC3 -RAD17 REACTS_WITH RFC4 -RAD17 REACTS_WITH RFC5 -RAD17 REACTS_WITH RPA1 -RAD17 REACTS_WITH RPA2 -RAD17 REACTS_WITH SMARCAL1 -RAD17 REACTS_WITH TIMELESS -RAD17 REACTS_WITH TIPIN -RAD17 REACTS_WITH TOPBP1 -RAD17 STATE_CHANGE FANCD2 -RAD17 STATE_CHANGE MCM2 -RAD17 STATE_CHANGE MDM2 -RAD17 STATE_CHANGE NBN -RAD1 IN_SAME_COMPONENT ATR -RAD1 IN_SAME_COMPONENT ATRIP -RAD1 IN_SAME_COMPONENT CDC6 -RAD1 IN_SAME_COMPONENT CEP164 -RAD1 IN_SAME_COMPONENT CHEK1 -RAD1 IN_SAME_COMPONENT CLSPN -RAD1 IN_SAME_COMPONENT DKC1 -RAD1 IN_SAME_COMPONENT HSP90AA1 -RAD1 IN_SAME_COMPONENT HUS1 -RAD1 IN_SAME_COMPONENT PTGES3 -RAD1 IN_SAME_COMPONENT RAD17 -RAD1 IN_SAME_COMPONENT RAD9A -RAD1 IN_SAME_COMPONENT RFC2 -RAD1 IN_SAME_COMPONENT RFC3 -RAD1 IN_SAME_COMPONENT RFC4 -RAD1 IN_SAME_COMPONENT RFC5 -RAD1 IN_SAME_COMPONENT RPA1 -RAD1 IN_SAME_COMPONENT RPA2 -RAD1 IN_SAME_COMPONENT SMARCAL1 -RAD1 IN_SAME_COMPONENT TERT -RAD1 IN_SAME_COMPONENT TIMELESS -RAD1 IN_SAME_COMPONENT TIPIN -RAD1 IN_SAME_COMPONENT TOPBP1 -RAD1 REACTS_WITH ATR -RAD1 REACTS_WITH ATRIP -RAD1 REACTS_WITH CDC6 -RAD1 REACTS_WITH CEP164 -RAD1 REACTS_WITH CHEK1 -RAD1 REACTS_WITH CLSPN -RAD1 REACTS_WITH DKC1 -RAD1 REACTS_WITH HSP90AA1 -RAD1 REACTS_WITH HUS1 -RAD1 REACTS_WITH PTGES3 -RAD1 REACTS_WITH RAD1 -RAD1 REACTS_WITH RAD17 -RAD1 REACTS_WITH RAD9A -RAD1 REACTS_WITH RFC2 -RAD1 REACTS_WITH RFC3 -RAD1 REACTS_WITH RFC4 -RAD1 REACTS_WITH RFC5 -RAD1 REACTS_WITH RPA1 -RAD1 REACTS_WITH RPA2 -RAD1 REACTS_WITH SMARCAL1 -RAD1 REACTS_WITH TERT -RAD1 REACTS_WITH TIMELESS -RAD1 REACTS_WITH TIPIN -RAD1 REACTS_WITH TOPBP1 -RAD1 STATE_CHANGE FANCD2 -RAD1 STATE_CHANGE MCM2 -RAD1 STATE_CHANGE MDM2 -RAD1 STATE_CHANGE NBN -RAD50 IN_SAME_COMPONENT ATM -RAD50 IN_SAME_COMPONENT BARD1 -RAD50 IN_SAME_COMPONENT BRCA1 -RAD50 IN_SAME_COMPONENT FAM175A -RAD50 IN_SAME_COMPONENT H2AFX -RAD50 IN_SAME_COMPONENT MDC1 -RAD50 IN_SAME_COMPONENT MRE11A -RAD50 IN_SAME_COMPONENT NBN -RAD50 IN_SAME_COMPONENT RBBP8 -RAD50 IN_SAME_COMPONENT RNF8 -RAD50 IN_SAME_COMPONENT TERF2 -RAD50 IN_SAME_COMPONENT TERF2IP -RAD50 IN_SAME_COMPONENT TP53BP1 -RAD50 IN_SAME_COMPONENT UIMC1 -RAD50 METABOLIC_CATALYSIS SMC3 -RAD50 REACTS_WITH ATM -RAD50 REACTS_WITH BARD1 -RAD50 REACTS_WITH BRCA1 -RAD50 REACTS_WITH CTBP1 -RAD50 REACTS_WITH FAM175A -RAD50 REACTS_WITH H2AFX -RAD50 REACTS_WITH MDC1 -RAD50 REACTS_WITH MRE11A -RAD50 REACTS_WITH NBN -RAD50 REACTS_WITH RAD50 -RAD50 REACTS_WITH RBBP8 -RAD50 REACTS_WITH RNF8 -RAD50 REACTS_WITH TERF2 -RAD50 REACTS_WITH TERF2IP -RAD50 REACTS_WITH TP53BP1 -RAD50 REACTS_WITH UIMC1 -RAD50 STATE_CHANGE CHEK2 -RAD50 STATE_CHANGE DCLRE1C -RAD50 STATE_CHANGE FANCD2 -RAD50 STATE_CHANGE H2AFX -RAD50 STATE_CHANGE SMC1A -RAD50 STATE_CHANGE TRIM28 -RAD50 STATE_CHANGE XRCC4 -RAD51 IN_SAME_COMPONENT BARD1 -RAD51 IN_SAME_COMPONENT BRCA1 -RAD51 IN_SAME_COMPONENT BRCA2 -RAD51 IN_SAME_COMPONENT PCNA -RAD51 REACTS_WITH BARD1 -RAD51 REACTS_WITH BRCA1 -RAD51 REACTS_WITH BRCA2 -RAD51 REACTS_WITH PCNA -RAD51 REACTS_WITH RAD51 -RAD9A IN_SAME_COMPONENT ATR -RAD9A IN_SAME_COMPONENT ATRIP -RAD9A IN_SAME_COMPONENT CDC6 -RAD9A IN_SAME_COMPONENT CEP164 -RAD9A IN_SAME_COMPONENT CHEK1 -RAD9A IN_SAME_COMPONENT CLSPN -RAD9A IN_SAME_COMPONENT DKC1 -RAD9A IN_SAME_COMPONENT HSP90AA1 -RAD9A IN_SAME_COMPONENT HUS1 -RAD9A IN_SAME_COMPONENT PTGES3 -RAD9A IN_SAME_COMPONENT RAD1 -RAD9A IN_SAME_COMPONENT RAD17 -RAD9A IN_SAME_COMPONENT RFC2 -RAD9A IN_SAME_COMPONENT RFC3 -RAD9A IN_SAME_COMPONENT RFC4 -RAD9A IN_SAME_COMPONENT RFC5 -RAD9A IN_SAME_COMPONENT RPA1 -RAD9A IN_SAME_COMPONENT RPA2 -RAD9A IN_SAME_COMPONENT SMARCAL1 -RAD9A IN_SAME_COMPONENT TERT -RAD9A IN_SAME_COMPONENT TIMELESS -RAD9A IN_SAME_COMPONENT TIPIN -RAD9A IN_SAME_COMPONENT TOPBP1 -RAD9A REACTS_WITH ATR -RAD9A REACTS_WITH ATRIP -RAD9A REACTS_WITH CDC6 -RAD9A REACTS_WITH CEP164 -RAD9A REACTS_WITH CHEK1 -RAD9A REACTS_WITH CLSPN -RAD9A REACTS_WITH DKC1 -RAD9A REACTS_WITH HSP90AA1 -RAD9A REACTS_WITH HUS1 -RAD9A REACTS_WITH PTGES3 -RAD9A REACTS_WITH RAD1 -RAD9A REACTS_WITH RAD17 -RAD9A REACTS_WITH RAD9A -RAD9A REACTS_WITH RFC2 -RAD9A REACTS_WITH RFC3 -RAD9A REACTS_WITH RFC4 -RAD9A REACTS_WITH RFC5 -RAD9A REACTS_WITH RPA1 -RAD9A REACTS_WITH RPA2 -RAD9A REACTS_WITH SMARCAL1 -RAD9A REACTS_WITH TERT -RAD9A REACTS_WITH TIMELESS -RAD9A REACTS_WITH TIPIN -RAD9A REACTS_WITH TOPBP1 -RAD9A STATE_CHANGE FANCD2 -RAD9A STATE_CHANGE MCM2 -RAD9A STATE_CHANGE MDM2 -RAD9A STATE_CHANGE NBN -RAF1 CO_CONTROL KSR1 -RAF1 CO_CONTROL RAF1 -RAF1 CO_CONTROL YWHAE -RAF1 IN_SAME_COMPONENT AKT1 -RAF1 IN_SAME_COMPONENT PEBP1 -RAF1 IN_SAME_COMPONENT YWHAE -RAF1 IN_SAME_COMPONENT YWHAZ -RAF1 REACTS_WITH AKT1 -RAF1 REACTS_WITH PEBP1 -RAF1 REACTS_WITH RAF1 -RAF1 REACTS_WITH YWHAE -RAF1 REACTS_WITH YWHAZ -RAF1 STATE_CHANGE KSR1 -RAF1 STATE_CHANGE MAP2K1 -RAF1 STATE_CHANGE MAP2K2 -RAF1 STATE_CHANGE RB1 -RALA REACTS_WITH RALA -RALA STATE_CHANGE SRC -RALBP1 STATE_CHANGE CDC42 -RALBP1 STATE_CHANGE RAC1 -RALB REACTS_WITH RALB -RALGDS STATE_CHANGE RALA -RANBP10 IN_SAME_COMPONENT HGF -RANBP10 IN_SAME_COMPONENT MET -RANBP10 REACTS_WITH HGF -RANBP10 REACTS_WITH MET -RANBP10 REACTS_WITH RANBP10 -RANBP10 REACTS_WITH RANBP9 -RANBP10 REACTS_WITH SOS1 -RANBP2 IN_SAME_COMPONENT RANGAP1 -RANBP2 IN_SAME_COMPONENT UBE2I -RANBP2 REACTS_WITH RANBP2 -RANBP2 REACTS_WITH RANGAP1 -RANBP2 REACTS_WITH UBE2I -RANBP2 STATE_CHANGE HDAC1 -RANBP2 STATE_CHANGE HDAC4 -RANBP2 STATE_CHANGE MDM2 -RANBP2 STATE_CHANGE RAN -RANBP2 STATE_CHANGE XPO1 -RANBP3 STATE_CHANGE CTNNB1 -RANBP9 IN_SAME_COMPONENT HGF -RANBP9 IN_SAME_COMPONENT MET -RANBP9 IN_SAME_COMPONENT SOS1 -RANBP9 REACTS_WITH HGF -RANBP9 REACTS_WITH MET -RANBP9 REACTS_WITH RANBP10 -RANBP9 REACTS_WITH RANBP9 -RANBP9 REACTS_WITH SOS1 -RANBP9 STATE_CHANGE HRAS -RANGAP1 IN_SAME_COMPONENT RANBP2 -RANGAP1 IN_SAME_COMPONENT UBE2I -RANGAP1 REACTS_WITH RANBP2 -RANGAP1 REACTS_WITH RANGAP1 -RANGAP1 REACTS_WITH UBE2I -RANGAP1 STATE_CHANGE HDAC1 -RANGAP1 STATE_CHANGE HDAC4 -RANGAP1 STATE_CHANGE MDM2 -RANGAP1 STATE_CHANGE RAN -RANGAP1 STATE_CHANGE XPO1 -RAN IN_SAME_COMPONENT HDAC1 -RAN IN_SAME_COMPONENT HDAC4 -RAN IN_SAME_COMPONENT NUP214 -RAN IN_SAME_COMPONENT XPO1 -RAN REACTS_WITH HDAC1 -RAN REACTS_WITH HDAC4 -RAN REACTS_WITH RAN -RAN REACTS_WITH XPO1 -RAN STATE_CHANGE FOXO1 -RAN STATE_CHANGE FOXO3 -RAN STATE_CHANGE FOXO4 -RAN STATE_CHANGE NFATC1 -RAN STATE_CHANGE NFATC2 -RAN STATE_CHANGE NFKB1 -RAN STATE_CHANGE NFKBIA -RAN STATE_CHANGE RELA -RAN STATE_CHANGE TPX2 -RAP1A IN_SAME_COMPONENT ARAP3 -RAP1A IN_SAME_COMPONENT RASSF5 -RAP1A REACTS_WITH ARAP3 -RAP1A REACTS_WITH RAP1A -RAP1A REACTS_WITH RASSF5 -RAP1A STATE_CHANGE RHOA -RAP1B REACTS_WITH RAP1B -RAP1B STATE_CHANGE CRK -RAP1B STATE_CHANGE PTK2B -RAP1B STATE_CHANGE PXN -RAP1GDS1 STATE_CHANGE RAC1 -RAPGEF1 IN_SAME_COMPONENT CBL -RAPGEF1 IN_SAME_COMPONENT CRK -RAPGEF1 IN_SAME_COMPONENT CRKL -RAPGEF1 IN_SAME_COMPONENT DAB1 -RAPGEF1 IN_SAME_COMPONENT GAB2 -RAPGEF1 IN_SAME_COMPONENT PDGFRA -RAPGEF1 IN_SAME_COMPONENT PTPN11 -RAPGEF1 IN_SAME_COMPONENT SH2B2 -RAPGEF1 IN_SAME_COMPONENT SORBS1 -RAPGEF1 REACTS_WITH CBL -RAPGEF1 REACTS_WITH CRK -RAPGEF1 REACTS_WITH CRKL -RAPGEF1 REACTS_WITH DAB1 -RAPGEF1 REACTS_WITH GAB2 -RAPGEF1 REACTS_WITH PDGFRA -RAPGEF1 REACTS_WITH PTPN11 -RAPGEF1 REACTS_WITH RAPGEF1 -RAPGEF1 REACTS_WITH SH2B2 -RAPGEF1 REACTS_WITH SORBS1 -RAPGEF1 STATE_CHANGE RAP1A -RAPGEF1 STATE_CHANGE RHOQ -RARA IN_SAME_COMPONENT CCNH -RARA IN_SAME_COMPONENT MAPK8 -RARA IN_SAME_COMPONENT RXRA -RARA REACTS_WITH CCNH -RARA REACTS_WITH MAPK8 -RARA REACTS_WITH RARA -RARA REACTS_WITH RXRA -RASA1 CO_CONTROL SHC1 -RASA1 CO_CONTROL SOS1 -RASA1 IN_SAME_COMPONENT AURKA -RASA1 IN_SAME_COMPONENT AURKB -RASA1 IN_SAME_COMPONENT BIRC5 -RASA1 IN_SAME_COMPONENT CSK -RASA1 IN_SAME_COMPONENT DOK1 -RASA1 IN_SAME_COMPONENT DOK2 -RASA1 IN_SAME_COMPONENT EGF -RASA1 IN_SAME_COMPONENT EGFR -RASA1 IN_SAME_COMPONENT EPHB2 -RASA1 IN_SAME_COMPONENT FCER1A -RASA1 IN_SAME_COMPONENT FCER1G -RASA1 IN_SAME_COMPONENT FCGR2B -RASA1 IN_SAME_COMPONENT GAB1 -RASA1 IN_SAME_COMPONENT GDNF -RASA1 IN_SAME_COMPONENT GFRA1 -RASA1 IN_SAME_COMPONENT GNAI1 -RASA1 IN_SAME_COMPONENT GNAI3 -RASA1 IN_SAME_COMPONENT GRLF1 -RASA1 IN_SAME_COMPONENT INPP5D -RASA1 IN_SAME_COMPONENT MS4A2 -RASA1 IN_SAME_COMPONENT NCK1 -RASA1 IN_SAME_COMPONENT PDGFB -RASA1 IN_SAME_COMPONENT PDGFRB -RASA1 IN_SAME_COMPONENT SDC2 -RASA1 IN_SAME_COMPONENT SHC1 -RASA1 IN_SAME_COMPONENT SOCS3 -RASA1 IN_SAME_COMPONENT SRC -RASA1 REACTS_WITH AURKA -RASA1 REACTS_WITH AURKB -RASA1 REACTS_WITH BIRC5 -RASA1 REACTS_WITH CSK -RASA1 REACTS_WITH DOK1 -RASA1 REACTS_WITH DOK2 -RASA1 REACTS_WITH EGF -RASA1 REACTS_WITH EGFR -RASA1 REACTS_WITH EPHB2 -RASA1 REACTS_WITH FCER1A -RASA1 REACTS_WITH FCER1G -RASA1 REACTS_WITH FCGR2B -RASA1 REACTS_WITH GAB1 -RASA1 REACTS_WITH GDNF -RASA1 REACTS_WITH GFRA1 -RASA1 REACTS_WITH GNAI1 -RASA1 REACTS_WITH GNAI3 -RASA1 REACTS_WITH GRLF1 -RASA1 REACTS_WITH INPP5D -RASA1 REACTS_WITH MS4A2 -RASA1 REACTS_WITH NCK1 -RASA1 REACTS_WITH PDGFB -RASA1 REACTS_WITH PDGFRB -RASA1 REACTS_WITH RASA1 -RASA1 REACTS_WITH SDC2 -RASA1 REACTS_WITH SHC1 -RASA1 REACTS_WITH SOCS3 -RASA1 REACTS_WITH SRC -RASA1 STATE_CHANGE CD79A -RASA1 STATE_CHANGE CD79B -RASA1 STATE_CHANGE HRAS -RASA1 STATE_CHANGE IKZF3 -RASA1 STATE_CHANGE LYN -RASA1 STATE_CHANGE MAPK8 -RASA1 STATE_CHANGE RAF1 -RASA1 STATE_CHANGE RHOA -RASGRF1 STATE_CHANGE HRAS -RASGRF1 STATE_CHANGE RAC1 -RASGRF2 STATE_CHANGE RAC1 -RASGRP2 STATE_CHANGE RAP1A -RASSF1 CO_CONTROL DAXX -RASSF1 CO_CONTROL USP7 -RASSF1 STATE_CHANGE MDM2 -RASSF5 IN_SAME_COMPONENT RAP1A -RASSF5 REACTS_WITH RAP1A -RASSF5 REACTS_WITH RASSF5 -RB1CC1 IN_SAME_COMPONENT ATG13 -RB1CC1 IN_SAME_COMPONENT MLST8 -RB1CC1 IN_SAME_COMPONENT MTOR -RB1CC1 IN_SAME_COMPONENT RPTOR -RB1CC1 REACTS_WITH ATG13 -RB1CC1 REACTS_WITH MLST8 -RB1CC1 REACTS_WITH MTOR -RB1CC1 REACTS_WITH RB1CC1 -RB1CC1 REACTS_WITH RPTOR -RB1 CO_CONTROL E2F1 -RB1 CO_CONTROL PRMT5 -RB1 CO_CONTROL TFDP1 -RB1 IN_SAME_COMPONENT AATF -RB1 IN_SAME_COMPONENT ABL1 -RB1 IN_SAME_COMPONENT CBX4 -RB1 IN_SAME_COMPONENT CEBPA -RB1 IN_SAME_COMPONENT CTBP1 -RB1 IN_SAME_COMPONENT DNMT1 -RB1 IN_SAME_COMPONENT E2F1 -RB1 IN_SAME_COMPONENT E2F4 -RB1 IN_SAME_COMPONENT ELF1 -RB1 IN_SAME_COMPONENT HDAC1 -RB1 IN_SAME_COMPONENT HDAC3 -RB1 IN_SAME_COMPONENT HES1 -RB1 IN_SAME_COMPONENT JUN -RB1 IN_SAME_COMPONENT PPARG -RB1 IN_SAME_COMPONENT RBBP4 -RB1 IN_SAME_COMPONENT RUNX2 -RB1 IN_SAME_COMPONENT SKP2 -RB1 IN_SAME_COMPONENT SMARCA2 -RB1 IN_SAME_COMPONENT SPI1 -RB1 IN_SAME_COMPONENT SUV39H1 -RB1 IN_SAME_COMPONENT TFDP1 -RB1 METABOLIC_CATALYSIS BGLAP -RB1 METABOLIC_CATALYSIS BRD2 -RB1 METABOLIC_CATALYSIS CASP7 -RB1 METABOLIC_CATALYSIS CDKN1A -RB1 METABOLIC_CATALYSIS MET -RB1 METABOLIC_CATALYSIS MYC -RB1 METABOLIC_CATALYSIS RBL1 -RB1 METABOLIC_CATALYSIS SFTPD -RB1 METABOLIC_CATALYSIS TGFB2 -RB1 REACTS_WITH AATF -RB1 REACTS_WITH ABL1 -RB1 REACTS_WITH CBX4 -RB1 REACTS_WITH CDKN1B -RB1 REACTS_WITH CEBPA -RB1 REACTS_WITH CTBP1 -RB1 REACTS_WITH DNMT1 -RB1 REACTS_WITH E2F4 -RB1 REACTS_WITH ELF1 -RB1 REACTS_WITH GSC -RB1 REACTS_WITH HDAC1 -RB1 REACTS_WITH HDAC3 -RB1 REACTS_WITH HES1 -RB1 REACTS_WITH JUN -RB1 REACTS_WITH PPARG -RB1 REACTS_WITH RB1 -RB1 REACTS_WITH RBBP4 -RB1 REACTS_WITH RUNX2 -RB1 REACTS_WITH SKP2 -RB1 REACTS_WITH SMARCA2 -RB1 REACTS_WITH SPI1 -RB1 REACTS_WITH SUV39H1 -RB1 REACTS_WITH TFDP1 -RB1 STATE_CHANGE ATF2 -RB1 STATE_CHANGE MEF2C -RB1 STATE_CHANGE SPI1 -RB1 STATE_CHANGE TAF1 -RB1 STATE_CHANGE TBP -RBBP4 CO_CONTROL ARRB2 -RBBP4 CO_CONTROL CITED1 -RBBP4 CO_CONTROL PRMT5 -RBBP4 CO_CONTROL SMO -RBBP4 CO_CONTROL TFDP1 -RBBP4 IN_SAME_COMPONENT CHD3 -RBBP4 IN_SAME_COMPONENT CHD4 -RBBP4 IN_SAME_COMPONENT CTBP1 -RBBP4 IN_SAME_COMPONENT GATA1 -RBBP4 IN_SAME_COMPONENT GATAD2A -RBBP4 IN_SAME_COMPONENT GATAD2B -RBBP4 IN_SAME_COMPONENT HDAC1 -RBBP4 IN_SAME_COMPONENT HDAC2 -RBBP4 IN_SAME_COMPONENT HDAC3 -RBBP4 IN_SAME_COMPONENT MAX -RBBP4 IN_SAME_COMPONENT MBD2 -RBBP4 IN_SAME_COMPONENT MBD3 -RBBP4 IN_SAME_COMPONENT MBD3L2 -RBBP4 IN_SAME_COMPONENT MTA2 -RBBP4 IN_SAME_COMPONENT MXD1 -RBBP4 IN_SAME_COMPONENT NCOR1 -RBBP4 IN_SAME_COMPONENT RB1 -RBBP4 IN_SAME_COMPONENT RBBP7 -RBBP4 IN_SAME_COMPONENT SAP18 -RBBP4 IN_SAME_COMPONENT SAP30 -RBBP4 IN_SAME_COMPONENT SIN3A -RBBP4 IN_SAME_COMPONENT SIN3B -RBBP4 IN_SAME_COMPONENT SKI -RBBP4 IN_SAME_COMPONENT SKIL -RBBP4 IN_SAME_COMPONENT SMAD2 -RBBP4 IN_SAME_COMPONENT SMAD4 -RBBP4 IN_SAME_COMPONENT SUFU -RBBP4 IN_SAME_COMPONENT TFDP1 -RBBP4 IN_SAME_COMPONENT TGIF1 -RBBP4 IN_SAME_COMPONENT UBE3A -RBBP4 IN_SAME_COMPONENT ZFPM1 -RBBP4 METABOLIC_CATALYSIS TERT -RBBP4 REACTS_WITH CHD3 -RBBP4 REACTS_WITH CHD4 -RBBP4 REACTS_WITH GATA1 -RBBP4 REACTS_WITH GATAD2A -RBBP4 REACTS_WITH GATAD2B -RBBP4 REACTS_WITH HDAC1 -RBBP4 REACTS_WITH HDAC2 -RBBP4 REACTS_WITH HDAC3 -RBBP4 REACTS_WITH MAX -RBBP4 REACTS_WITH MBD2 -RBBP4 REACTS_WITH MBD3 -RBBP4 REACTS_WITH MBD3L2 -RBBP4 REACTS_WITH MTA2 -RBBP4 REACTS_WITH MXD1 -RBBP4 REACTS_WITH NCOR1 -RBBP4 REACTS_WITH PRMT5 -RBBP4 REACTS_WITH RB1 -RBBP4 REACTS_WITH RBBP4 -RBBP4 REACTS_WITH RBBP7 -RBBP4 REACTS_WITH SAP18 -RBBP4 REACTS_WITH SAP30 -RBBP4 REACTS_WITH SIN3A -RBBP4 REACTS_WITH SIN3B -RBBP4 REACTS_WITH SKIL -RBBP4 REACTS_WITH SMAD2 -RBBP4 REACTS_WITH SMAD4 -RBBP4 REACTS_WITH SUFU -RBBP4 REACTS_WITH TFDP1 -RBBP4 REACTS_WITH UBE3A -RBBP4 REACTS_WITH WDR77 -RBBP4 REACTS_WITH ZFPM1 -RBBP4 STATE_CHANGE GLI1 -RBBP4 STATE_CHANGE GLI3 -RBBP4 STATE_CHANGE SMAD2 -RBBP4 STATE_CHANGE SMAD4 -RBBP7 CO_CONTROL ARRB2 -RBBP7 CO_CONTROL CITED1 -RBBP7 CO_CONTROL SMO -RBBP7 IN_SAME_COMPONENT CHD3 -RBBP7 IN_SAME_COMPONENT CHD4 -RBBP7 IN_SAME_COMPONENT CTBP1 -RBBP7 IN_SAME_COMPONENT GATA1 -RBBP7 IN_SAME_COMPONENT GATAD2A -RBBP7 IN_SAME_COMPONENT GATAD2B -RBBP7 IN_SAME_COMPONENT HDAC1 -RBBP7 IN_SAME_COMPONENT HDAC2 -RBBP7 IN_SAME_COMPONENT MAX -RBBP7 IN_SAME_COMPONENT MBD2 -RBBP7 IN_SAME_COMPONENT MBD3 -RBBP7 IN_SAME_COMPONENT MBD3L2 -RBBP7 IN_SAME_COMPONENT MTA2 -RBBP7 IN_SAME_COMPONENT MXD1 -RBBP7 IN_SAME_COMPONENT NCOR1 -RBBP7 IN_SAME_COMPONENT RBBP4 -RBBP7 IN_SAME_COMPONENT SAP18 -RBBP7 IN_SAME_COMPONENT SAP30 -RBBP7 IN_SAME_COMPONENT SIN3A -RBBP7 IN_SAME_COMPONENT SIN3B -RBBP7 IN_SAME_COMPONENT SKI -RBBP7 IN_SAME_COMPONENT SKIL -RBBP7 IN_SAME_COMPONENT SMAD2 -RBBP7 IN_SAME_COMPONENT SMAD4 -RBBP7 IN_SAME_COMPONENT SUFU -RBBP7 IN_SAME_COMPONENT TGIF1 -RBBP7 IN_SAME_COMPONENT UBE3A -RBBP7 IN_SAME_COMPONENT ZFPM1 -RBBP7 METABOLIC_CATALYSIS TERT -RBBP7 REACTS_WITH CHD3 -RBBP7 REACTS_WITH CHD4 -RBBP7 REACTS_WITH GATA1 -RBBP7 REACTS_WITH GATAD2A -RBBP7 REACTS_WITH GATAD2B -RBBP7 REACTS_WITH HDAC1 -RBBP7 REACTS_WITH HDAC2 -RBBP7 REACTS_WITH MAX -RBBP7 REACTS_WITH MBD2 -RBBP7 REACTS_WITH MBD3 -RBBP7 REACTS_WITH MBD3L2 -RBBP7 REACTS_WITH MTA2 -RBBP7 REACTS_WITH MXD1 -RBBP7 REACTS_WITH NCOR1 -RBBP7 REACTS_WITH PRMT5 -RBBP7 REACTS_WITH RBBP4 -RBBP7 REACTS_WITH RBBP7 -RBBP7 REACTS_WITH SAP18 -RBBP7 REACTS_WITH SAP30 -RBBP7 REACTS_WITH SIN3A -RBBP7 REACTS_WITH SIN3B -RBBP7 REACTS_WITH SKIL -RBBP7 REACTS_WITH SMAD2 -RBBP7 REACTS_WITH SMAD4 -RBBP7 REACTS_WITH SUFU -RBBP7 REACTS_WITH UBE3A -RBBP7 REACTS_WITH WDR77 -RBBP7 REACTS_WITH ZFPM1 -RBBP7 STATE_CHANGE GLI1 -RBBP7 STATE_CHANGE GLI3 -RBBP7 STATE_CHANGE SMAD2 -RBBP7 STATE_CHANGE SMAD4 -RBBP8 CO_CONTROL NOTCH1 -RBBP8 CO_CONTROL RBPJ -RBBP8 IN_SAME_COMPONENT BARD1 -RBBP8 IN_SAME_COMPONENT BRCA1 -RBBP8 IN_SAME_COMPONENT CTBP1 -RBBP8 IN_SAME_COMPONENT KDM1A -RBBP8 IN_SAME_COMPONENT MRE11A -RBBP8 IN_SAME_COMPONENT NBN -RBBP8 IN_SAME_COMPONENT RAD50 -RBBP8 IN_SAME_COMPONENT RBPJ -RBBP8 IN_SAME_COMPONENT SPEN -RBBP8 METABOLIC_CATALYSIS HEY1 -RBBP8 REACTS_WITH ATM -RBBP8 REACTS_WITH BARD1 -RBBP8 REACTS_WITH BRCA1 -RBBP8 REACTS_WITH CTBP1 -RBBP8 REACTS_WITH H2AFX -RBBP8 REACTS_WITH KDM1A -RBBP8 REACTS_WITH MDC1 -RBBP8 REACTS_WITH MRE11A -RBBP8 REACTS_WITH NBN -RBBP8 REACTS_WITH NOTCH1 -RBBP8 REACTS_WITH RAD50 -RBBP8 REACTS_WITH RBBP8 -RBBP8 REACTS_WITH RBPJ -RBBP8 REACTS_WITH RNF8 -RBBP8 REACTS_WITH SPEN -RBBP8 REACTS_WITH TP53BP1 -RBL1 CO_CONTROL CEBPB -RBL1 CO_CONTROL E2F1 -RBL1 CO_CONTROL MAX -RBL1 CO_CONTROL MYC -RBL1 IN_SAME_COMPONENT SMAD4 -RBL1 IN_SAME_COMPONENT TFDP1 -RBL1 METABOLIC_CATALYSIS MYC -RBL1 METABOLIC_CATALYSIS RBL1 -RBP1 REACTS_WITH RBP1 -RBP1 STATE_CHANGE AKT1 -RBP2 METABOLIC_CATALYSIS BRD2 -RBPJ CO_CONTROL CTBP1 -RBPJ CO_CONTROL EP300 -RBPJ CO_CONTROL GATA3 -RBPJ CO_CONTROL HDAC1 -RBPJ CO_CONTROL HES1 -RBPJ CO_CONTROL KDM1A -RBPJ CO_CONTROL NOTCH1 -RBPJ CO_CONTROL RBBP8 -RBPJ CO_CONTROL RBPJ -RBPJ CO_CONTROL SPEN -RBPJ CO_CONTROL TWIST1 -RBPJ IN_SAME_COMPONENT CTBP1 -RBPJ IN_SAME_COMPONENT EP300 -RBPJ IN_SAME_COMPONENT HDAC1 -RBPJ IN_SAME_COMPONENT HES1 -RBPJ IN_SAME_COMPONENT HEY1 -RBPJ IN_SAME_COMPONENT KDM1A -RBPJ IN_SAME_COMPONENT NOTCH1 -RBPJ IN_SAME_COMPONENT RBBP8 -RBPJ IN_SAME_COMPONENT SPEN -RBPJ METABOLIC_CATALYSIS CCND1 -RBPJ METABOLIC_CATALYSIS CDKN1A -RBPJ METABOLIC_CATALYSIS GATA3 -RBPJ METABOLIC_CATALYSIS HES1 -RBPJ METABOLIC_CATALYSIS HEY1 -RBPJ METABOLIC_CATALYSIS HEY2 -RBPJ METABOLIC_CATALYSIS IL4 -RBPJ METABOLIC_CATALYSIS PTCRA -RBPJ METABOLIC_CATALYSIS SKP2 -RBPJ REACTS_WITH CTBP1 -RBPJ REACTS_WITH EP300 -RBPJ REACTS_WITH HDAC1 -RBPJ REACTS_WITH HES1 -RBPJ REACTS_WITH HEY1 -RBPJ REACTS_WITH KDM1A -RBPJ REACTS_WITH NOTCH1 -RBPJ REACTS_WITH RBBP8 -RBPJ REACTS_WITH RBPJ -RBPJ REACTS_WITH SPEN -RBX1 IN_SAME_COMPONENT CUL2 -RBX1 IN_SAME_COMPONENT HIF1A -RBX1 IN_SAME_COMPONENT TCEB1 -RBX1 IN_SAME_COMPONENT TCEB2 -RBX1 IN_SAME_COMPONENT VHL -RBX1 REACTS_WITH CUL2 -RBX1 REACTS_WITH HIF1A -RBX1 REACTS_WITH RBX1 -RBX1 REACTS_WITH TCEB1 -RBX1 REACTS_WITH TCEB2 -RBX1 REACTS_WITH VHL -RCAN1 REACTS_WITH RCAN1 -RCAN2 REACTS_WITH RCAN2 -RELA CO_CONTROL IKBKB -RELA CO_CONTROL NFKBIA -RELA CO_CONTROL NFKBIB -RELA IN_SAME_COMPONENT ARRB2 -RELA IN_SAME_COMPONENT BCL3 -RELA IN_SAME_COMPONENT HDAC2 -RELA IN_SAME_COMPONENT NFKB1 -RELA IN_SAME_COMPONENT NFKBIA -RELA IN_SAME_COMPONENT NFKBIB -RELA INTERACTS_WITH NFKB1 -RELA INTERACTS_WITH NFKBIA -RELA INTERACTS_WITH RELA -RELA METABOLIC_CATALYSIS BAX -RELA METABOLIC_CATALYSIS BIRC3 -RELA METABOLIC_CATALYSIS CSF2 -RELA METABOLIC_CATALYSIS ICAM1 -RELA METABOLIC_CATALYSIS IL17A -RELA METABOLIC_CATALYSIS IL23A -RELA METABOLIC_CATALYSIS IL6 -RELA METABOLIC_CATALYSIS IL8 -RELA METABOLIC_CATALYSIS MYC -RELA METABOLIC_CATALYSIS NFKBIA -RELA METABOLIC_CATALYSIS NFKBIB -RELA METABOLIC_CATALYSIS SELE -RELA METABOLIC_CATALYSIS TNFAIP3 -RELA REACTS_WITH ARRB2 -RELA REACTS_WITH BCL3 -RELA REACTS_WITH HDAC2 -RELA REACTS_WITH HDAC3 -RELA REACTS_WITH MMP9 -RELA REACTS_WITH NFKB1 -RELA REACTS_WITH NFKBIA -RELA REACTS_WITH NFKBIB -RELA REACTS_WITH NR3C1 -RELA REACTS_WITH PIK3CA -RELA REACTS_WITH PIK3R1 -RELA REACTS_WITH PLAU -RELA REACTS_WITH RELA -RELA STATE_CHANGE BCL2A1 -RELA STATE_CHANGE CASP8 -RELA STATE_CHANGE NFKB1 -RELA STATE_CHANGE NFKBIA -RELA STATE_CHANGE NFKBIB -RELA STATE_CHANGE POU2F2 -RELA STATE_CHANGE RELA -RELB IN_SAME_COMPONENT NFKB1 -RELB IN_SAME_COMPONENT NFKB2 -RELB REACTS_WITH NFKB1 -RELB REACTS_WITH NFKB2 -RELB REACTS_WITH RELB -REL CO_CONTROL AR -REL CO_CONTROL POU2F1 -REL IN_SAME_COMPONENT NFKB1 -REL METABOLIC_CATALYSIS KLK3 -RELN IN_SAME_COMPONENT ARHGEF2 -RELN IN_SAME_COMPONENT DAB1 -RELN IN_SAME_COMPONENT FYN -RELN IN_SAME_COMPONENT GRIN2A -RELN IN_SAME_COMPONENT GRIN2B -RELN IN_SAME_COMPONENT LRP8 -RELN IN_SAME_COMPONENT MAP2K7 -RELN IN_SAME_COMPONENT MAP3K11 -RELN IN_SAME_COMPONENT MAPK8 -RELN IN_SAME_COMPONENT PAFAH1B1 -RELN IN_SAME_COMPONENT PAFAH1B2 -RELN IN_SAME_COMPONENT PAFAH1B3 -RELN IN_SAME_COMPONENT PIK3CA -RELN IN_SAME_COMPONENT PIK3R1 -RELN IN_SAME_COMPONENT VLDLR -RELN INTERACTS_WITH DAB1 -RELN INTERACTS_WITH FYN -RELN INTERACTS_WITH LRP8 -RELN INTERACTS_WITH RELN -RELN INTERACTS_WITH VLDLR -RELN REACTS_WITH ARHGEF2 -RELN REACTS_WITH DAB1 -RELN REACTS_WITH FYN -RELN REACTS_WITH GRIN2A -RELN REACTS_WITH GRIN2B -RELN REACTS_WITH LRP8 -RELN REACTS_WITH MAP2K7 -RELN REACTS_WITH MAP3K11 -RELN REACTS_WITH MAPK8 -RELN REACTS_WITH PAFAH1B1 -RELN REACTS_WITH PAFAH1B2 -RELN REACTS_WITH PAFAH1B3 -RELN REACTS_WITH PIK3CA -RELN REACTS_WITH PIK3R1 -RELN REACTS_WITH RELN -RELN REACTS_WITH VLDLR -RELN STATE_CHANGE ABL1 -RELN STATE_CHANGE AKT1 -RELN STATE_CHANGE CRKL -RELN STATE_CHANGE DAB1 -RELN STATE_CHANGE ITGA3 -RELN STATE_CHANGE ITGB1 -RELN STATE_CHANGE MAP1B -RELN STATE_CHANGE NCK2 -RELN STATE_CHANGE PAFAH1B1 -RELN STATE_CHANGE RAPGEF1 -REL REACTS_WITH NFKB1 -REL REACTS_WITH REL -RFC2 IN_SAME_COMPONENT ATR -RFC2 IN_SAME_COMPONENT ATRIP -RFC2 IN_SAME_COMPONENT CDC6 -RFC2 IN_SAME_COMPONENT CEP164 -RFC2 IN_SAME_COMPONENT CHEK1 -RFC2 IN_SAME_COMPONENT CLSPN -RFC2 IN_SAME_COMPONENT HUS1 -RFC2 IN_SAME_COMPONENT RAD1 -RFC2 IN_SAME_COMPONENT RAD17 -RFC2 IN_SAME_COMPONENT RAD9A -RFC2 IN_SAME_COMPONENT RFC3 -RFC2 IN_SAME_COMPONENT RFC4 -RFC2 IN_SAME_COMPONENT RFC5 -RFC2 IN_SAME_COMPONENT RPA1 -RFC2 IN_SAME_COMPONENT RPA2 -RFC2 IN_SAME_COMPONENT SMARCAL1 -RFC2 IN_SAME_COMPONENT TIMELESS -RFC2 IN_SAME_COMPONENT TIPIN -RFC2 IN_SAME_COMPONENT TOPBP1 -RFC2 REACTS_WITH ATR -RFC2 REACTS_WITH ATRIP -RFC2 REACTS_WITH CDC6 -RFC2 REACTS_WITH CEP164 -RFC2 REACTS_WITH CHEK1 -RFC2 REACTS_WITH CLSPN -RFC2 REACTS_WITH HUS1 -RFC2 REACTS_WITH RAD1 -RFC2 REACTS_WITH RAD17 -RFC2 REACTS_WITH RAD9A -RFC2 REACTS_WITH RFC2 -RFC2 REACTS_WITH RFC3 -RFC2 REACTS_WITH RFC4 -RFC2 REACTS_WITH RFC5 -RFC2 REACTS_WITH RPA1 -RFC2 REACTS_WITH RPA2 -RFC2 REACTS_WITH SMARCAL1 -RFC2 REACTS_WITH TIMELESS -RFC2 REACTS_WITH TIPIN -RFC2 REACTS_WITH TOPBP1 -RFC2 STATE_CHANGE FANCD2 -RFC2 STATE_CHANGE MCM2 -RFC2 STATE_CHANGE MDM2 -RFC2 STATE_CHANGE NBN -RFC3 IN_SAME_COMPONENT ATR -RFC3 IN_SAME_COMPONENT ATRIP -RFC3 IN_SAME_COMPONENT CDC6 -RFC3 IN_SAME_COMPONENT CEP164 -RFC3 IN_SAME_COMPONENT CHEK1 -RFC3 IN_SAME_COMPONENT CLSPN -RFC3 IN_SAME_COMPONENT HUS1 -RFC3 IN_SAME_COMPONENT RAD1 -RFC3 IN_SAME_COMPONENT RAD17 -RFC3 IN_SAME_COMPONENT RAD9A -RFC3 IN_SAME_COMPONENT RFC2 -RFC3 IN_SAME_COMPONENT RFC4 -RFC3 IN_SAME_COMPONENT RFC5 -RFC3 IN_SAME_COMPONENT RPA1 -RFC3 IN_SAME_COMPONENT RPA2 -RFC3 IN_SAME_COMPONENT SMARCAL1 -RFC3 IN_SAME_COMPONENT TIMELESS -RFC3 IN_SAME_COMPONENT TIPIN -RFC3 IN_SAME_COMPONENT TOPBP1 -RFC3 REACTS_WITH ATR -RFC3 REACTS_WITH ATRIP -RFC3 REACTS_WITH CDC6 -RFC3 REACTS_WITH CEP164 -RFC3 REACTS_WITH CHEK1 -RFC3 REACTS_WITH CLSPN -RFC3 REACTS_WITH HUS1 -RFC3 REACTS_WITH RAD1 -RFC3 REACTS_WITH RAD17 -RFC3 REACTS_WITH RAD9A -RFC3 REACTS_WITH RFC2 -RFC3 REACTS_WITH RFC3 -RFC3 REACTS_WITH RFC4 -RFC3 REACTS_WITH RFC5 -RFC3 REACTS_WITH RPA1 -RFC3 REACTS_WITH RPA2 -RFC3 REACTS_WITH SMARCAL1 -RFC3 REACTS_WITH TIMELESS -RFC3 REACTS_WITH TIPIN -RFC3 REACTS_WITH TOPBP1 -RFC3 STATE_CHANGE FANCD2 -RFC3 STATE_CHANGE MCM2 -RFC3 STATE_CHANGE MDM2 -RFC3 STATE_CHANGE NBN -RFC4 IN_SAME_COMPONENT ATR -RFC4 IN_SAME_COMPONENT ATRIP -RFC4 IN_SAME_COMPONENT CDC6 -RFC4 IN_SAME_COMPONENT CEP164 -RFC4 IN_SAME_COMPONENT CHEK1 -RFC4 IN_SAME_COMPONENT CLSPN -RFC4 IN_SAME_COMPONENT HUS1 -RFC4 IN_SAME_COMPONENT RAD1 -RFC4 IN_SAME_COMPONENT RAD17 -RFC4 IN_SAME_COMPONENT RAD9A -RFC4 IN_SAME_COMPONENT RFC2 -RFC4 IN_SAME_COMPONENT RFC3 -RFC4 IN_SAME_COMPONENT RFC5 -RFC4 IN_SAME_COMPONENT RPA1 -RFC4 IN_SAME_COMPONENT RPA2 -RFC4 IN_SAME_COMPONENT SMARCAL1 -RFC4 IN_SAME_COMPONENT TIMELESS -RFC4 IN_SAME_COMPONENT TIPIN -RFC4 IN_SAME_COMPONENT TOPBP1 -RFC4 REACTS_WITH ATR -RFC4 REACTS_WITH ATRIP -RFC4 REACTS_WITH CDC6 -RFC4 REACTS_WITH CEP164 -RFC4 REACTS_WITH CHEK1 -RFC4 REACTS_WITH CLSPN -RFC4 REACTS_WITH HUS1 -RFC4 REACTS_WITH RAD1 -RFC4 REACTS_WITH RAD17 -RFC4 REACTS_WITH RAD9A -RFC4 REACTS_WITH RFC2 -RFC4 REACTS_WITH RFC3 -RFC4 REACTS_WITH RFC4 -RFC4 REACTS_WITH RFC5 -RFC4 REACTS_WITH RPA1 -RFC4 REACTS_WITH RPA2 -RFC4 REACTS_WITH SMARCAL1 -RFC4 REACTS_WITH TIMELESS -RFC4 REACTS_WITH TIPIN -RFC4 REACTS_WITH TOPBP1 -RFC4 STATE_CHANGE FANCD2 -RFC4 STATE_CHANGE MCM2 -RFC4 STATE_CHANGE MDM2 -RFC4 STATE_CHANGE NBN -RFC5 IN_SAME_COMPONENT ATR -RFC5 IN_SAME_COMPONENT ATRIP -RFC5 IN_SAME_COMPONENT CDC6 -RFC5 IN_SAME_COMPONENT CEP164 -RFC5 IN_SAME_COMPONENT CHEK1 -RFC5 IN_SAME_COMPONENT CLSPN -RFC5 IN_SAME_COMPONENT HUS1 -RFC5 IN_SAME_COMPONENT RAD1 -RFC5 IN_SAME_COMPONENT RAD17 -RFC5 IN_SAME_COMPONENT RAD9A -RFC5 IN_SAME_COMPONENT RFC2 -RFC5 IN_SAME_COMPONENT RFC3 -RFC5 IN_SAME_COMPONENT RFC4 -RFC5 IN_SAME_COMPONENT RPA1 -RFC5 IN_SAME_COMPONENT RPA2 -RFC5 IN_SAME_COMPONENT SMARCAL1 -RFC5 IN_SAME_COMPONENT TIMELESS -RFC5 IN_SAME_COMPONENT TIPIN -RFC5 IN_SAME_COMPONENT TOPBP1 -RFC5 REACTS_WITH ATR -RFC5 REACTS_WITH ATRIP -RFC5 REACTS_WITH CDC6 -RFC5 REACTS_WITH CEP164 -RFC5 REACTS_WITH CHEK1 -RFC5 REACTS_WITH CLSPN -RFC5 REACTS_WITH HUS1 -RFC5 REACTS_WITH RAD1 -RFC5 REACTS_WITH RAD17 -RFC5 REACTS_WITH RAD9A -RFC5 REACTS_WITH RFC2 -RFC5 REACTS_WITH RFC3 -RFC5 REACTS_WITH RFC4 -RFC5 REACTS_WITH RFC5 -RFC5 REACTS_WITH RPA1 -RFC5 REACTS_WITH RPA2 -RFC5 REACTS_WITH SMARCAL1 -RFC5 REACTS_WITH TIMELESS -RFC5 REACTS_WITH TIPIN -RFC5 REACTS_WITH TOPBP1 -RFC5 STATE_CHANGE FANCD2 -RFC5 STATE_CHANGE MCM2 -RFC5 STATE_CHANGE MDM2 -RFC5 STATE_CHANGE NBN -RFFL STATE_CHANGE RIPK1 -RFFL STATE_CHANGE TNF -RFFL STATE_CHANGE TNFRSF1A -RFFL STATE_CHANGE TRADD -RFFL STATE_CHANGE TRAF2 -RFXANK IN_SAME_COMPONENT HDAC4 -RFXANK IN_SAME_COMPONENT HDAC5 -RFXANK REACTS_WITH HDAC4 -RFXANK REACTS_WITH HDAC5 -RFXANK REACTS_WITH RFXANK -RGNEF STATE_CHANGE RHOA -RGS19 IN_SAME_COMPONENT GIPC1 -RGS19 IN_SAME_COMPONENT NGF -RGS19 REACTS_WITH GIPC1 -RGS19 REACTS_WITH NGF -RGS19 REACTS_WITH RGS19 -RGS1 STATE_CHANGE BCAR1 -RGS1 STATE_CHANGE CD247 -RGS1 STATE_CHANGE CD3D -RGS1 STATE_CHANGE CD3E -RGS1 STATE_CHANGE CD3G -RGS1 STATE_CHANGE CD4 -RGS1 STATE_CHANGE HLA-DRA -RGS1 STATE_CHANGE HLA-DRB1 -RGS1 STATE_CHANGE LCK -RGS1 STATE_CHANGE PXN -RGS3 IN_SAME_COMPONENT EFNB1 -RGS3 REACTS_WITH EFNB1 -RGS3 REACTS_WITH RGS3 -RGS9BP IN_SAME_COMPONENT GNB5 -RGS9BP IN_SAME_COMPONENT RGS9 -RGS9BP STATE_CHANGE GNAT1 -RGS9BP STATE_CHANGE GNAT2 -RGS9BP STATE_CHANGE PDE6A -RGS9BP STATE_CHANGE PDE6B -RGS9BP STATE_CHANGE PDE6C -RGS9BP STATE_CHANGE PDE6G -RGS9BP STATE_CHANGE PDE6H -RGS9 IN_SAME_COMPONENT GNB5 -RGS9 IN_SAME_COMPONENT RGS9BP -RGS9 STATE_CHANGE GNAT1 -RGS9 STATE_CHANGE GNAT2 -RGS9 STATE_CHANGE PDE6A -RGS9 STATE_CHANGE PDE6B -RGS9 STATE_CHANGE PDE6C -RGS9 STATE_CHANGE PDE6G -RGS9 STATE_CHANGE PDE6H -RHEB CO_CONTROL AKT1 -RHEB IN_SAME_COMPONENT BNIP3 -RHEB REACTS_WITH BNIP3 -RHEB REACTS_WITH RHEB -RHEB STATE_CHANGE AKT1S1 -RHEB STATE_CHANGE DEPTOR -RHEB STATE_CHANGE MLST8 -RHEB STATE_CHANGE MTOR -RHEB STATE_CHANGE RPTOR -RHOA CO_CONTROL BCAR1 -RHOA CO_CONTROL FN1 -RHOA CO_CONTROL PLK1 -RHOA CO_CONTROL RAC1 -RHOA CO_CONTROL S1PR2 -RHOA CO_CONTROL SDC4 -RHOA IN_SAME_COMPONENT ARHGDIA -RHOA IN_SAME_COMPONENT ARHGDIB -RHOA IN_SAME_COMPONENT ARHGDIG -RHOA IN_SAME_COMPONENT CTNND1 -RHOA IN_SAME_COMPONENT HSP90AA1 -RHOA IN_SAME_COMPONENT ITGAV -RHOA IN_SAME_COMPONENT ITGB3 -RHOA IN_SAME_COMPONENT KDR -RHOA IN_SAME_COMPONENT ROCK1 -RHOA IN_SAME_COMPONENT VEGFA -RHOA INTERACTS_WITH ADAM12 -RHOA INTERACTS_WITH ITGAV -RHOA INTERACTS_WITH ITGB3 -RHOA INTERACTS_WITH PRKCA -RHOA INTERACTS_WITH PXN -RHOA INTERACTS_WITH RAC1 -RHOA INTERACTS_WITH SDC4 -RHOA METABOLIC_CATALYSIS FOS -RHOA REACTS_WITH ARHGDIA -RHOA REACTS_WITH ARHGDIB -RHOA REACTS_WITH ARHGDIG -RHOA REACTS_WITH CDH1 -RHOA REACTS_WITH CTNNA1 -RHOA REACTS_WITH CTNNB1 -RHOA REACTS_WITH CTNND1 -RHOA REACTS_WITH HSP90AA1 -RHOA REACTS_WITH ITGAV -RHOA REACTS_WITH ITGB3 -RHOA REACTS_WITH KDR -RHOA REACTS_WITH LINGO1 -RHOA REACTS_WITH NGFR -RHOA REACTS_WITH PLD2 -RHOA REACTS_WITH RHOA -RHOA REACTS_WITH ROCK1 -RHOA REACTS_WITH RTN4R -RHOA REACTS_WITH VEGFA -RHOA STATE_CHANGE AKT1 -RHOA STATE_CHANGE CDH5 -RHOA STATE_CHANGE CDKN1B -RHOA STATE_CHANGE DIAPH1 -RHOA STATE_CHANGE EZR -RHOA STATE_CHANGE FYN -RHOA STATE_CHANGE GAB2 -RHOA STATE_CHANGE IL2 -RHOA STATE_CHANGE IL2RA -RHOA STATE_CHANGE IL2RB -RHOA STATE_CHANGE IL2RG -RHOA STATE_CHANGE ITGA4 -RHOA STATE_CHANGE ITGB7 -RHOA STATE_CHANGE JAK1 -RHOA STATE_CHANGE JAK3 -RHOA STATE_CHANGE LCK -RHOA STATE_CHANGE MADCAM1 -RHOA STATE_CHANGE MYH2 -RHOA STATE_CHANGE PIK3CA -RHOA STATE_CHANGE PIK3R1 -RHOA STATE_CHANGE PKN1 -RHOA STATE_CHANGE PKN2 -RHOA STATE_CHANGE PTPN1 -RHOA STATE_CHANGE PTPN11 -RHOA STATE_CHANGE RAC1 -RHOA STATE_CHANGE ROCK1 -RHOA STATE_CHANGE ROCK2 -RHOA STATE_CHANGE SDC2 -RHOA STATE_CHANGE SHC1 -RHOA STATE_CHANGE SOS1 -RHOC STATE_CHANGE ROCK1 -RHO IN_SAME_COMPONENT GNAT1 -RHO IN_SAME_COMPONENT GNGT1 -RHO IN_SAME_COMPONENT SAG -RHOQ CO_CONTROL CALM1 -RHOQ CO_CONTROL STX4 -RHOQ CO_CONTROL STXBP4 -RHOQ CO_CONTROL VAMP2 -RHOQ IN_SAME_COMPONENT TRIP10 -RHOQ REACTS_WITH EXOC1 -RHOQ REACTS_WITH EXOC2 -RHOQ REACTS_WITH EXOC3 -RHOQ REACTS_WITH EXOC4 -RHOQ REACTS_WITH EXOC5 -RHOQ REACTS_WITH EXOC6 -RHOQ REACTS_WITH EXOC7 -RHOQ REACTS_WITH RHOQ -RHOQ REACTS_WITH TRIP10 -RHOQ STATE_CHANGE F2RL2 -RHOQ STATE_CHANGE LNPEP -RHOQ STATE_CHANGE PARD6A -RHOQ STATE_CHANGE SLC2A4 -RHOQ STATE_CHANGE VAMP2 -RHO REACTS_WITH GNAT1 -RHO REACTS_WITH GNGT1 -RHO REACTS_WITH RHO -RHO REACTS_WITH SAG -RICTOR IN_SAME_COMPONENT DEPTOR -RICTOR IN_SAME_COMPONENT MAPKAP1 -RICTOR IN_SAME_COMPONENT MLST8 -RICTOR IN_SAME_COMPONENT MTOR -RICTOR REACTS_WITH DEPTOR -RICTOR REACTS_WITH MAPKAP1 -RICTOR REACTS_WITH MLST8 -RICTOR REACTS_WITH MTOR -RICTOR REACTS_WITH RICTOR -RICTOR STATE_CHANGE AKT1 -RICTOR STATE_CHANGE PRKCA -RICTOR STATE_CHANGE SGK1 -RIMS1 IN_SAME_COMPONENT RAB3GAP2 -RIMS1 IN_SAME_COMPONENT UNC13B -RIMS1 REACTS_WITH RAB3GAP2 -RIMS1 REACTS_WITH RIMS1 -RIMS1 REACTS_WITH UNC13B -RIMS1 STATE_CHANGE STX1A -RIMS1 STATE_CHANGE VAMP2 -RIN1 REACTS_WITH RIN1 -RIN1 STATE_CHANGE RAB5A -RIN2 STATE_CHANGE RAB5A -RIPK1 CO_CONTROL CTSD -RIPK1 CO_CONTROL NSMAF -RIPK1 CO_CONTROL TNF -RIPK1 CO_CONTROL TNFRSF1A -RIPK1 IN_SAME_COMPONENT BIRC2 -RIPK1 IN_SAME_COMPONENT BIRC3 -RIPK1 IN_SAME_COMPONENT CASP2 -RIPK1 IN_SAME_COMPONENT CRADD -RIPK1 IN_SAME_COMPONENT FADD -RIPK1 IN_SAME_COMPONENT FAS -RIPK1 IN_SAME_COMPONENT FASLG -RIPK1 IN_SAME_COMPONENT LRDD -RIPK1 IN_SAME_COMPONENT MADD -RIPK1 IN_SAME_COMPONENT MAP3K3 -RIPK1 IN_SAME_COMPONENT MAP3K5 -RIPK1 IN_SAME_COMPONENT MAP3K7 -RIPK1 IN_SAME_COMPONENT SQSTM1 -RIPK1 IN_SAME_COMPONENT TNF -RIPK1 IN_SAME_COMPONENT TNFRSF10A -RIPK1 IN_SAME_COMPONENT TNFRSF10B -RIPK1 IN_SAME_COMPONENT TNFRSF1A -RIPK1 IN_SAME_COMPONENT TNFSF10 -RIPK1 IN_SAME_COMPONENT TRADD -RIPK1 IN_SAME_COMPONENT TRAF1 -RIPK1 IN_SAME_COMPONENT TRAF2 -RIPK1 REACTS_WITH BAG4 -RIPK1 REACTS_WITH BIRC2 -RIPK1 REACTS_WITH BIRC3 -RIPK1 REACTS_WITH CASP2 -RIPK1 REACTS_WITH CRADD -RIPK1 REACTS_WITH FADD -RIPK1 REACTS_WITH FAS -RIPK1 REACTS_WITH FASLG -RIPK1 REACTS_WITH MADD -RIPK1 REACTS_WITH MAP3K3 -RIPK1 REACTS_WITH MAP3K5 -RIPK1 REACTS_WITH MAP3K7 -RIPK1 REACTS_WITH RIPK1 -RIPK1 REACTS_WITH SQSTM1 -RIPK1 REACTS_WITH STAT1 -RIPK1 REACTS_WITH TNF -RIPK1 REACTS_WITH TNFRSF10A -RIPK1 REACTS_WITH TNFRSF10B -RIPK1 REACTS_WITH TNFRSF1A -RIPK1 REACTS_WITH TNFRSF1B -RIPK1 REACTS_WITH TNFSF10 -RIPK1 REACTS_WITH TRADD -RIPK1 REACTS_WITH TRAF1 -RIPK1 REACTS_WITH TRAF2 -RIPK1 STATE_CHANGE BID -RIPK1 STATE_CHANGE CASP2 -RIPK1 STATE_CHANGE CASP8 -RIPK1 STATE_CHANGE FADD -RIPK1 STATE_CHANGE MAP2K3 -RIPK1 STATE_CHANGE MAP2K7 -RIPK1 STATE_CHANGE MAP3K1 -RIPK1 STATE_CHANGE MAP3K14 -RIPK1 STATE_CHANGE MAP4K4 -RIPK1 STATE_CHANGE MAPK14 -RIPK1 STATE_CHANGE NFKB1 -RIPK1 STATE_CHANGE RELA -RIPK1 STATE_CHANGE SMPD1 -RIPK1 STATE_CHANGE SMPD3 -RIPK2 IN_SAME_COMPONENT IRAK1 -RIPK2 IN_SAME_COMPONENT NGF -RIPK2 IN_SAME_COMPONENT NGFR -RIPK2 IN_SAME_COMPONENT NOD2 -RIPK2 IN_SAME_COMPONENT SQSTM1 -RIPK2 IN_SAME_COMPONENT TRAF6 -RIPK2 REACTS_WITH BEX1 -RIPK2 REACTS_WITH IKBKG -RIPK2 REACTS_WITH IRAK1 -RIPK2 REACTS_WITH NGF -RIPK2 REACTS_WITH NGFR -RIPK2 REACTS_WITH RIPK2 -RIPK2 REACTS_WITH SQSTM1 -RIPK2 REACTS_WITH TNFAIP3 -RIPK2 REACTS_WITH TRAF6 -RIPK2 STATE_CHANGE IKBKG -RIPK2 STATE_CHANGE STAT4 -RIT1 REACTS_WITH RIT1 -RIT2 REACTS_WITH RIT2 -RNF111 IN_SAME_COMPONENT AXIN1 -RNF111 IN_SAME_COMPONENT SMAD7 -RNF111 REACTS_WITH AXIN1 -RNF111 REACTS_WITH RNF111 -RNF111 REACTS_WITH SMAD7 -RNF128 CO_CONTROL FOS -RNF128 CO_CONTROL JUN -RNF128 METABOLIC_CATALYSIS IL2 -RNF128 METABOLIC_CATALYSIS IL4 -RNF41 STATE_CHANGE ERBB2 -RNF41 STATE_CHANGE ERBB3 -RNF8 IN_SAME_COMPONENT ATM -RNF8 IN_SAME_COMPONENT BRCA1 -RNF8 IN_SAME_COMPONENT FAM175A -RNF8 IN_SAME_COMPONENT H2AFX -RNF8 IN_SAME_COMPONENT MDC1 -RNF8 IN_SAME_COMPONENT MRE11A -RNF8 IN_SAME_COMPONENT NBN -RNF8 IN_SAME_COMPONENT RAD50 -RNF8 IN_SAME_COMPONENT TP53BP1 -RNF8 IN_SAME_COMPONENT UIMC1 -RNF8 METABOLIC_CATALYSIS SMC3 -RNF8 REACTS_WITH ATM -RNF8 REACTS_WITH BRCA1 -RNF8 REACTS_WITH CTBP1 -RNF8 REACTS_WITH FAM175A -RNF8 REACTS_WITH H2AFX -RNF8 REACTS_WITH MDC1 -RNF8 REACTS_WITH MRE11A -RNF8 REACTS_WITH NBN -RNF8 REACTS_WITH RAD50 -RNF8 REACTS_WITH RBBP8 -RNF8 REACTS_WITH RNF8 -RNF8 REACTS_WITH TP53BP1 -RNF8 REACTS_WITH UIMC1 -RNF8 STATE_CHANGE CHEK2 -RNF8 STATE_CHANGE DCLRE1C -RNF8 STATE_CHANGE SMC1A -RNF8 STATE_CHANGE TRIM28 -ROBO1 IN_SAME_COMPONENT ABL1 -ROBO1 IN_SAME_COMPONENT CABLES1 -ROBO1 IN_SAME_COMPONENT SLIT1 -ROBO1 STATE_CHANGE CDH2 -ROBO1 STATE_CHANGE CTNNA1 -ROBO1 STATE_CHANGE CTNNB1 -ROBO1 STATE_CHANGE CTNND1 -ROCK1 IN_SAME_COMPONENT HSP90AA1 -ROCK1 IN_SAME_COMPONENT ITGAV -ROCK1 IN_SAME_COMPONENT ITGB3 -ROCK1 IN_SAME_COMPONENT KDR -ROCK1 IN_SAME_COMPONENT RHOA -ROCK1 IN_SAME_COMPONENT VEGFA -ROCK1 INTERACTS_WITH MYH2 -ROCK1 REACTS_WITH HSP90AA1 -ROCK1 REACTS_WITH ITGAV -ROCK1 REACTS_WITH ITGB3 -ROCK1 REACTS_WITH KDR -ROCK1 REACTS_WITH MYH2 -ROCK1 REACTS_WITH RHOA -ROCK1 REACTS_WITH ROCK1 -ROCK1 REACTS_WITH VEGFA -ROCK1 STATE_CHANGE ENAH -ROCK1 STATE_CHANGE MYL2 -ROCK2 IN_SAME_COMPONENT CD44 -ROCK2 REACTS_WITH CD44 -ROCK2 REACTS_WITH ROCK2 -ROCK2 STATE_CHANGE MSN -ROR2 CO_CONTROL PRKCZ -ROR2 IN_SAME_COMPONENT CTHRC1 -ROR2 IN_SAME_COMPONENT DVL2 -ROR2 IN_SAME_COMPONENT FLNA -ROR2 IN_SAME_COMPONENT FZD2 -ROR2 IN_SAME_COMPONENT FZD7 -ROR2 IN_SAME_COMPONENT WNT5A -ROR2 REACTS_WITH CTHRC1 -ROR2 REACTS_WITH DVL2 -ROR2 REACTS_WITH FLNA -ROR2 REACTS_WITH FZD2 -ROR2 REACTS_WITH FZD4 -ROR2 REACTS_WITH LRP5 -ROR2 REACTS_WITH ROR2 -ROR2 REACTS_WITH WNT5A -ROR2 STATE_CHANGE RAC1 -RPA1 IN_SAME_COMPONENT ATR -RPA1 IN_SAME_COMPONENT ATRIP -RPA1 IN_SAME_COMPONENT CDC6 -RPA1 IN_SAME_COMPONENT CEP164 -RPA1 IN_SAME_COMPONENT CHEK1 -RPA1 IN_SAME_COMPONENT CLSPN -RPA1 IN_SAME_COMPONENT HUS1 -RPA1 IN_SAME_COMPONENT RAD1 -RPA1 IN_SAME_COMPONENT RAD17 -RPA1 IN_SAME_COMPONENT RAD9A -RPA1 IN_SAME_COMPONENT RFC2 -RPA1 IN_SAME_COMPONENT RFC3 -RPA1 IN_SAME_COMPONENT RFC4 -RPA1 IN_SAME_COMPONENT RFC5 -RPA1 IN_SAME_COMPONENT RPA2 -RPA1 IN_SAME_COMPONENT SMARCAL1 -RPA1 IN_SAME_COMPONENT TIMELESS -RPA1 IN_SAME_COMPONENT TIPIN -RPA1 IN_SAME_COMPONENT TOPBP1 -RPA1 REACTS_WITH ATR -RPA1 REACTS_WITH ATRIP -RPA1 REACTS_WITH CDC6 -RPA1 REACTS_WITH CEP164 -RPA1 REACTS_WITH CHEK1 -RPA1 REACTS_WITH CLSPN -RPA1 REACTS_WITH HUS1 -RPA1 REACTS_WITH RAD1 -RPA1 REACTS_WITH RAD17 -RPA1 REACTS_WITH RAD9A -RPA1 REACTS_WITH RFC2 -RPA1 REACTS_WITH RFC3 -RPA1 REACTS_WITH RFC4 -RPA1 REACTS_WITH RFC5 -RPA1 REACTS_WITH RPA1 -RPA1 REACTS_WITH RPA2 -RPA1 REACTS_WITH SMARCAL1 -RPA1 REACTS_WITH TIMELESS -RPA1 REACTS_WITH TIPIN -RPA1 REACTS_WITH TOPBP1 -RPA1 STATE_CHANGE FANCD2 -RPA1 STATE_CHANGE MCM2 -RPA1 STATE_CHANGE MDM2 -RPA1 STATE_CHANGE NBN -RPA2 IN_SAME_COMPONENT ATR -RPA2 IN_SAME_COMPONENT ATRIP -RPA2 IN_SAME_COMPONENT CDC6 -RPA2 IN_SAME_COMPONENT CEP164 -RPA2 IN_SAME_COMPONENT CHEK1 -RPA2 IN_SAME_COMPONENT CLSPN -RPA2 IN_SAME_COMPONENT HUS1 -RPA2 IN_SAME_COMPONENT RAD1 -RPA2 IN_SAME_COMPONENT RAD17 -RPA2 IN_SAME_COMPONENT RAD9A -RPA2 IN_SAME_COMPONENT RFC2 -RPA2 IN_SAME_COMPONENT RFC3 -RPA2 IN_SAME_COMPONENT RFC4 -RPA2 IN_SAME_COMPONENT RFC5 -RPA2 IN_SAME_COMPONENT RPA1 -RPA2 IN_SAME_COMPONENT SMARCAL1 -RPA2 IN_SAME_COMPONENT TIMELESS -RPA2 IN_SAME_COMPONENT TIPIN -RPA2 IN_SAME_COMPONENT TOPBP1 -RPA2 REACTS_WITH ATR -RPA2 REACTS_WITH ATRIP -RPA2 REACTS_WITH CDC6 -RPA2 REACTS_WITH CEP164 -RPA2 REACTS_WITH CHEK1 -RPA2 REACTS_WITH CLSPN -RPA2 REACTS_WITH HUS1 -RPA2 REACTS_WITH RAD1 -RPA2 REACTS_WITH RAD17 -RPA2 REACTS_WITH RAD9A -RPA2 REACTS_WITH RFC2 -RPA2 REACTS_WITH RFC3 -RPA2 REACTS_WITH RFC4 -RPA2 REACTS_WITH RFC5 -RPA2 REACTS_WITH RPA1 -RPA2 REACTS_WITH RPA2 -RPA2 REACTS_WITH SMARCAL1 -RPA2 REACTS_WITH TIMELESS -RPA2 REACTS_WITH TIPIN -RPA2 REACTS_WITH TOPBP1 -RPA2 STATE_CHANGE FANCD2 -RPA2 STATE_CHANGE MCM2 -RPA2 STATE_CHANGE MDM2 -RPA2 STATE_CHANGE NBN -RPL5 IN_SAME_COMPONENT MDM2 -RPL5 REACTS_WITH MDM2 -RPL5 REACTS_WITH RPL5 -RPS6KA1 STATE_CHANGE CREB1 -RPS6KA1 STATE_CHANGE TSC1 -RPS6KA1 STATE_CHANGE TSC2 -RPS6KA3 CO_CONTROL AR -RPS6KA3 METABOLIC_CATALYSIS KLK3 -RPS6KA3 STATE_CHANGE CREB1 -RPS6KA3 STATE_CHANGE PDPK1 -RPS6KA3 STATE_CHANGE SRF -RPS6KA5 CO_CONTROL PRKACA -RPS6KA5 STATE_CHANGE CREB1 -RPS6KB1 CO_CONTROL MLST8 -RPS6KB1 CO_CONTROL MTOR -RPS6KB1 CO_CONTROL RPTOR -RPS6KB1 IN_SAME_COMPONENT AKT1 -RPS6KB1 IN_SAME_COMPONENT DKC1 -RPS6KB1 IN_SAME_COMPONENT HSP90AA1 -RPS6KB1 IN_SAME_COMPONENT MTOR -RPS6KB1 IN_SAME_COMPONENT POLDIP3 -RPS6KB1 IN_SAME_COMPONENT PTGES3 -RPS6KB1 IN_SAME_COMPONENT TERT -RPS6KB1 METABOLIC_CATALYSIS TGFB1 -RPS6KB1 REACTS_WITH AKT1 -RPS6KB1 REACTS_WITH DKC1 -RPS6KB1 REACTS_WITH HSP90AA1 -RPS6KB1 REACTS_WITH MITF -RPS6KB1 REACTS_WITH MTOR -RPS6KB1 REACTS_WITH POLDIP3 -RPS6KB1 REACTS_WITH PTGES3 -RPS6KB1 REACTS_WITH RPS6KB1 -RPS6KB1 REACTS_WITH TERT -RPS6KB1 STATE_CHANGE BCAR1 -RPS6KB1 STATE_CHANGE CRK -RPS6KB1 STATE_CHANGE E2F1 -RPS6KB1 STATE_CHANGE EEF2K -RPS6KB1 STATE_CHANGE EIF3A -RPS6KB1 STATE_CHANGE EIF4A1 -RPS6KB1 STATE_CHANGE EIF4B -RPS6KB1 STATE_CHANGE IRS1 -RPS6KB1 STATE_CHANGE PDCD4 -RPS6KB1 STATE_CHANGE PXN -RPTOR CO_CONTROL CCNE1 -RPTOR CO_CONTROL CDK2 -RPTOR CO_CONTROL RPS6KB1 -RPTOR IN_SAME_COMPONENT AKT1S1 -RPTOR IN_SAME_COMPONENT ATG13 -RPTOR IN_SAME_COMPONENT DEPTOR -RPTOR IN_SAME_COMPONENT MLST8 -RPTOR IN_SAME_COMPONENT MTOR -RPTOR IN_SAME_COMPONENT PPARGC1A -RPTOR IN_SAME_COMPONENT RB1CC1 -RPTOR IN_SAME_COMPONENT YY1 -RPTOR METABOLIC_CATALYSIS CYCS -RPTOR METABOLIC_CATALYSIS PPARGC1A -RPTOR REACTS_WITH AKT1S1 -RPTOR REACTS_WITH ATG13 -RPTOR REACTS_WITH DEPTOR -RPTOR REACTS_WITH MLST8 -RPTOR REACTS_WITH MTOR -RPTOR REACTS_WITH PPARGC1A -RPTOR REACTS_WITH RB1CC1 -RPTOR REACTS_WITH RPTOR -RPTOR REACTS_WITH YY1 -RPTOR STATE_CHANGE CLIP1 -RPTOR STATE_CHANGE EIF4E -RPTOR STATE_CHANGE EIF4EBP1 -RPTOR STATE_CHANGE IRS1 -RPTOR STATE_CHANGE RPS6KB1 -RPTOR STATE_CHANGE RRN3 -RPTOR STATE_CHANGE SREBF1 -RRAS REACTS_WITH RRAS -RRAS STATE_CHANGE RAF1 -RSPO1 STATE_CHANGE DKK1 -RSPO1 STATE_CHANGE LRP6 -RTN4R IN_SAME_COMPONENT ARHGDIA -RTN4R IN_SAME_COMPONENT LINGO1 -RTN4R IN_SAME_COMPONENT NGFR -RTN4R REACTS_WITH ARHGDIA -RTN4R REACTS_WITH LINGO1 -RTN4R REACTS_WITH NGFR -RTN4R REACTS_WITH RHOA -RTN4R REACTS_WITH RTN4R -RUNX2 IN_SAME_COMPONENT HES1 -RUNX2 IN_SAME_COMPONENT HEY2 -RUNX2 IN_SAME_COMPONENT RB1 -RUNX2 IN_SAME_COMPONENT SMAD4 -RUNX2 METABOLIC_CATALYSIS BGLAP -RUNX2 REACTS_WITH HES1 -RUNX2 REACTS_WITH HEY2 -RUNX2 REACTS_WITH RB1 -RUNX2 REACTS_WITH RUNX2 -RUNX2 REACTS_WITH SMAD4 -RUVBL1 CO_CONTROL MAX -RUVBL1 CO_CONTROL MYC -RUVBL1 IN_SAME_COMPONENT ACTL6A -RUVBL1 IN_SAME_COMPONENT KAT5 -RUVBL1 IN_SAME_COMPONENT MAX -RUVBL1 IN_SAME_COMPONENT MYC -RUVBL1 IN_SAME_COMPONENT RUVBL2 -RUVBL1 IN_SAME_COMPONENT TRRAP -RUVBL1 METABOLIC_CATALYSIS CAD -RUVBL1 METABOLIC_CATALYSIS GPAM -RUVBL1 METABOLIC_CATALYSIS HSPD1 -RUVBL1 METABOLIC_CATALYSIS NCL -RUVBL1 METABOLIC_CATALYSIS NME1 -RUVBL1 METABOLIC_CATALYSIS PTMA -RUVBL1 REACTS_WITH ACTL6A -RUVBL1 REACTS_WITH KAT5 -RUVBL1 REACTS_WITH MAX -RUVBL1 REACTS_WITH MYC -RUVBL1 REACTS_WITH RUVBL1 -RUVBL1 REACTS_WITH RUVBL2 -RUVBL1 REACTS_WITH TRRAP -RUVBL2 CO_CONTROL MAX -RUVBL2 CO_CONTROL MYC -RUVBL2 IN_SAME_COMPONENT ACTL6A -RUVBL2 IN_SAME_COMPONENT ATF2 -RUVBL2 IN_SAME_COMPONENT CTNNB1 -RUVBL2 IN_SAME_COMPONENT KAT5 -RUVBL2 IN_SAME_COMPONENT MAX -RUVBL2 IN_SAME_COMPONENT MYC -RUVBL2 IN_SAME_COMPONENT RUVBL1 -RUVBL2 IN_SAME_COMPONENT TCF7L2 -RUVBL2 IN_SAME_COMPONENT TRRAP -RUVBL2 METABOLIC_CATALYSIS CAD -RUVBL2 METABOLIC_CATALYSIS GPAM -RUVBL2 METABOLIC_CATALYSIS HSPD1 -RUVBL2 METABOLIC_CATALYSIS NCL -RUVBL2 METABOLIC_CATALYSIS NME1 -RUVBL2 METABOLIC_CATALYSIS PTMA -RUVBL2 REACTS_WITH ACTL6A -RUVBL2 REACTS_WITH ATF2 -RUVBL2 REACTS_WITH CTNNB1 -RUVBL2 REACTS_WITH KAT5 -RUVBL2 REACTS_WITH MAX -RUVBL2 REACTS_WITH MYC -RUVBL2 REACTS_WITH RUVBL1 -RUVBL2 REACTS_WITH RUVBL2 -RUVBL2 REACTS_WITH TCF7L2 -RUVBL2 REACTS_WITH TRRAP -RXRA IN_SAME_COMPONENT CCNH -RXRA IN_SAME_COMPONENT FAM120B -RXRA IN_SAME_COMPONENT RARA -RXRA REACTS_WITH CCNH -RXRA REACTS_WITH FAM120B -RXRA REACTS_WITH RARA -RXRA REACTS_WITH RXRA -RYBP CO_CONTROL E2F7 -RYBP IN_SAME_COMPONENT E2F2 -RYBP IN_SAME_COMPONENT E2F3 -RYBP IN_SAME_COMPONENT YY1 -RYBP METABOLIC_CATALYSIS CDC6 -RYBP REACTS_WITH E2F3 -RYBP REACTS_WITH RYBP -RYBP REACTS_WITH YY1 -RYK IN_SAME_COMPONENT FZD8 -RYK IN_SAME_COMPONENT WNT1 -RYK REACTS_WITH FZD8 -RYK REACTS_WITH RYK -RYK REACTS_WITH WNT1 -S100A8 IN_SAME_COMPONENT LY96 -S100A8 IN_SAME_COMPONENT MYD88 -S100A8 IN_SAME_COMPONENT S100A9 -S100A8 IN_SAME_COMPONENT TIRAP -S100A8 IN_SAME_COMPONENT TLR4 -S100A8 REACTS_WITH LY96 -S100A8 REACTS_WITH MYD88 -S100A8 REACTS_WITH S100A8 -S100A8 REACTS_WITH S100A9 -S100A8 REACTS_WITH TIRAP -S100A8 REACTS_WITH TLR4 -S100A8 STATE_CHANGE IRAK1 -S100A9 IN_SAME_COMPONENT LY96 -S100A9 IN_SAME_COMPONENT MYD88 -S100A9 IN_SAME_COMPONENT S100A8 -S100A9 IN_SAME_COMPONENT TIRAP -S100A9 IN_SAME_COMPONENT TLR4 -S100A9 REACTS_WITH LY96 -S100A9 REACTS_WITH MYD88 -S100A9 REACTS_WITH S100A8 -S100A9 REACTS_WITH S100A9 -S100A9 REACTS_WITH TIRAP -S100A9 REACTS_WITH TLR4 -S100A9 STATE_CHANGE IRAK1 -S1PR1 IN_SAME_COMPONENT PDGFB -S1PR1 IN_SAME_COMPONENT PDGFRB -S1PR1 INTERACTS_WITH S1PR2 -S1PR1 INTERACTS_WITH S1PR3 -S1PR1 REACTS_WITH PDGFB -S1PR1 REACTS_WITH PDGFRB -S1PR1 REACTS_WITH S1PR1 -S1PR1 STATE_CHANGE PLCB2 -S1PR1 STATE_CHANGE PLCG1 -S1PR1 STATE_CHANGE RAC1 -S1PR1 STATE_CHANGE RHOA -S1PR2 CO_CONTROL RHOA -S1PR2 IN_SAME_COMPONENT GNA12 -S1PR2 IN_SAME_COMPONENT GNA13 -S1PR2 INTERACTS_WITH S1PR1 -S1PR2 INTERACTS_WITH S1PR3 -S1PR2 REACTS_WITH GNA12 -S1PR2 REACTS_WITH GNA13 -S1PR2 REACTS_WITH S1PR2 -S1PR2 STATE_CHANGE MAPK14 -S1PR2 STATE_CHANGE MAPK8 -S1PR2 STATE_CHANGE RHOA -S1PR3 CO_CONTROL FLT1 -S1PR3 CO_CONTROL PDGFB -S1PR3 CO_CONTROL PDGFRB -S1PR3 CO_CONTROL VEGFA -S1PR3 IN_SAME_COMPONENT GNA12 -S1PR3 IN_SAME_COMPONENT GNA13 -S1PR3 INTERACTS_WITH S1PR1 -S1PR3 INTERACTS_WITH S1PR2 -S1PR3 METABOLIC_CATALYSIS AKT3 -S1PR3 REACTS_WITH GNA12 -S1PR3 REACTS_WITH GNA13 -S1PR3 REACTS_WITH S1PR3 -S1PR3 STATE_CHANGE AKT1 -S1PR3 STATE_CHANGE CXCR4 -S1PR3 STATE_CHANGE RAC1 -S1PR3 STATE_CHANGE RHOA -S1PR3 STATE_CHANGE SRC -S1PR4 IN_SAME_COMPONENT GNA12 -S1PR4 IN_SAME_COMPONENT GNA13 -S1PR4 REACTS_WITH GNA12 -S1PR4 REACTS_WITH GNA13 -S1PR4 REACTS_WITH S1PR4 -S1PR4 STATE_CHANGE CDC42 -S1PR4 STATE_CHANGE PLCG1 -S1PR4 STATE_CHANGE RHOA -S1PR5 IN_SAME_COMPONENT GNA12 -S1PR5 REACTS_WITH GNA12 -S1PR5 REACTS_WITH S1PR5 -S1PR5 STATE_CHANGE RHOA -SAA1 IN_SAME_COMPONENT TLR1 -SAA1 IN_SAME_COMPONENT TLR2 -SAA1 REACTS_WITH SAA1 -SAA1 REACTS_WITH TLR1 -SAA1 REACTS_WITH TLR2 -SAG IN_SAME_COMPONENT RHO -SAG REACTS_WITH RHO -SAG REACTS_WITH SAG -SAP18 CO_CONTROL ARRB2 -SAP18 CO_CONTROL CITED1 -SAP18 CO_CONTROL SMO -SAP18 IN_SAME_COMPONENT CTBP1 -SAP18 IN_SAME_COMPONENT HDAC1 -SAP18 IN_SAME_COMPONENT HDAC2 -SAP18 IN_SAME_COMPONENT MAX -SAP18 IN_SAME_COMPONENT MXD1 -SAP18 IN_SAME_COMPONENT NCOR1 -SAP18 IN_SAME_COMPONENT RBBP4 -SAP18 IN_SAME_COMPONENT RBBP7 -SAP18 IN_SAME_COMPONENT SAP30 -SAP18 IN_SAME_COMPONENT SIN3A -SAP18 IN_SAME_COMPONENT SIN3B -SAP18 IN_SAME_COMPONENT SKI -SAP18 IN_SAME_COMPONENT SKIL -SAP18 IN_SAME_COMPONENT SMAD2 -SAP18 IN_SAME_COMPONENT SMAD4 -SAP18 IN_SAME_COMPONENT SUFU -SAP18 IN_SAME_COMPONENT TGIF1 -SAP18 IN_SAME_COMPONENT UBE3A -SAP18 METABOLIC_CATALYSIS TERT -SAP18 REACTS_WITH HDAC1 -SAP18 REACTS_WITH HDAC2 -SAP18 REACTS_WITH MAX -SAP18 REACTS_WITH MXD1 -SAP18 REACTS_WITH NCOR1 -SAP18 REACTS_WITH RBBP4 -SAP18 REACTS_WITH RBBP7 -SAP18 REACTS_WITH SAP18 -SAP18 REACTS_WITH SAP30 -SAP18 REACTS_WITH SIN3A -SAP18 REACTS_WITH SIN3B -SAP18 REACTS_WITH SKIL -SAP18 REACTS_WITH SMAD2 -SAP18 REACTS_WITH SMAD4 -SAP18 REACTS_WITH SUFU -SAP18 REACTS_WITH UBE3A -SAP18 STATE_CHANGE GLI1 -SAP18 STATE_CHANGE GLI3 -SAP18 STATE_CHANGE SMAD2 -SAP18 STATE_CHANGE SMAD4 -SAP30 CO_CONTROL ARRB2 -SAP30 CO_CONTROL CITED1 -SAP30 CO_CONTROL SMO -SAP30 IN_SAME_COMPONENT CTBP1 -SAP30 IN_SAME_COMPONENT HDAC1 -SAP30 IN_SAME_COMPONENT HDAC2 -SAP30 IN_SAME_COMPONENT MAX -SAP30 IN_SAME_COMPONENT MXD1 -SAP30 IN_SAME_COMPONENT NCOR1 -SAP30 IN_SAME_COMPONENT RBBP4 -SAP30 IN_SAME_COMPONENT RBBP7 -SAP30 IN_SAME_COMPONENT SAP18 -SAP30 IN_SAME_COMPONENT SIN3A -SAP30 IN_SAME_COMPONENT SIN3B -SAP30 IN_SAME_COMPONENT SKI -SAP30 IN_SAME_COMPONENT SKIL -SAP30 IN_SAME_COMPONENT SMAD2 -SAP30 IN_SAME_COMPONENT SMAD4 -SAP30 IN_SAME_COMPONENT SUFU -SAP30 IN_SAME_COMPONENT TGIF1 -SAP30 IN_SAME_COMPONENT UBE3A -SAP30 IN_SAME_COMPONENT YY1 -SAP30 METABOLIC_CATALYSIS TERT -SAP30 REACTS_WITH HDAC1 -SAP30 REACTS_WITH HDAC2 -SAP30 REACTS_WITH MAX -SAP30 REACTS_WITH MXD1 -SAP30 REACTS_WITH NCOR1 -SAP30 REACTS_WITH RBBP4 -SAP30 REACTS_WITH RBBP7 -SAP30 REACTS_WITH SAP18 -SAP30 REACTS_WITH SAP30 -SAP30 REACTS_WITH SIN3A -SAP30 REACTS_WITH SIN3B -SAP30 REACTS_WITH SKIL -SAP30 REACTS_WITH SMAD2 -SAP30 REACTS_WITH SMAD4 -SAP30 REACTS_WITH SUFU -SAP30 REACTS_WITH UBE3A -SAP30 REACTS_WITH YY1 -SAP30 STATE_CHANGE GLI1 -SAP30 STATE_CHANGE GLI3 -SAP30 STATE_CHANGE SMAD2 -SAP30 STATE_CHANGE SMAD4 -SAT1 IN_SAME_COMPONENT ITGA9 -SAT1 IN_SAME_COMPONENT ITGB1 -SAT1 IN_SAME_COMPONENT TNC -SAT1 REACTS_WITH ITGA9 -SAT1 REACTS_WITH ITGB1 -SAT1 REACTS_WITH SAT1 -SAT1 REACTS_WITH TNC -SCAI IN_SAME_COMPONENT SRF -SCAI METABOLIC_CATALYSIS ITGB1 -SCAI REACTS_WITH SCAI -SCAI REACTS_WITH SRF -SDC1 IN_SAME_COMPONENT BSG -SDC1 IN_SAME_COMPONENT CASK -SDC1 IN_SAME_COMPONENT CCL5 -SDC1 IN_SAME_COMPONENT HGF -SDC1 IN_SAME_COMPONENT ITGAV -SDC1 IN_SAME_COMPONENT ITGB3 -SDC1 IN_SAME_COMPONENT ITGB5 -SDC1 IN_SAME_COMPONENT LAMA5 -SDC1 IN_SAME_COMPONENT MET -SDC1 IN_SAME_COMPONENT SDCBP -SDC1 INTERACTS_WITH VCL -SDC1 REACTS_WITH BSG -SDC1 REACTS_WITH CASK -SDC1 REACTS_WITH CCL5 -SDC1 REACTS_WITH HGF -SDC1 REACTS_WITH ITGAV -SDC1 REACTS_WITH ITGB3 -SDC1 REACTS_WITH ITGB5 -SDC1 REACTS_WITH LAMA5 -SDC1 REACTS_WITH MET -SDC1 REACTS_WITH SDC1 -SDC1 REACTS_WITH SDC2 -SDC1 REACTS_WITH SDC3 -SDC1 REACTS_WITH SDC4 -SDC1 REACTS_WITH SDCBP -SDC2 CO_CONTROL IL17RD -SDC2 IN_SAME_COMPONENT CASK -SDC2 IN_SAME_COMPONENT CAV2 -SDC2 IN_SAME_COMPONENT CBL -SDC2 IN_SAME_COMPONENT CSF2 -SDC2 IN_SAME_COMPONENT EPB41 -SDC2 IN_SAME_COMPONENT EZR -SDC2 IN_SAME_COMPONENT FN1 -SDC2 IN_SAME_COMPONENT FRS2 -SDC2 IN_SAME_COMPONENT GAB1 -SDC2 IN_SAME_COMPONENT HRAS -SDC2 IN_SAME_COMPONENT IL8 -SDC2 IN_SAME_COMPONENT ITGA2 -SDC2 IN_SAME_COMPONENT ITGB1 -SDC2 IN_SAME_COMPONENT KNG1 -SDC2 IN_SAME_COMPONENT LAMA1 -SDC2 IN_SAME_COMPONENT LAMA3 -SDC2 IN_SAME_COMPONENT MMP2 -SDC2 IN_SAME_COMPONENT NF1 -SDC2 IN_SAME_COMPONENT PRKCD -SDC2 IN_SAME_COMPONENT PTPN11 -SDC2 IN_SAME_COMPONENT RASA1 -SDC2 IN_SAME_COMPONENT SDCBP -SDC2 IN_SAME_COMPONENT SHC1 -SDC2 IN_SAME_COMPONENT SOS1 -SDC2 IN_SAME_COMPONENT SPRY2 -SDC2 IN_SAME_COMPONENT SRC -SDC2 IN_SAME_COMPONENT TGFB1 -SDC2 IN_SAME_COMPONENT TNFRSF13B -SDC2 IN_SAME_COMPONENT TRAPPC4 -SDC2 INTERACTS_WITH ITGA5 -SDC2 INTERACTS_WITH ITGB1 -SDC2 METABOLIC_CATALYSIS SPP1 -SDC2 REACTS_WITH CASK -SDC2 REACTS_WITH CAV2 -SDC2 REACTS_WITH CBL -SDC2 REACTS_WITH CSF2 -SDC2 REACTS_WITH EPB41 -SDC2 REACTS_WITH EZR -SDC2 REACTS_WITH FN1 -SDC2 REACTS_WITH FRS2 -SDC2 REACTS_WITH GAB1 -SDC2 REACTS_WITH HRAS -SDC2 REACTS_WITH IL8 -SDC2 REACTS_WITH ITGA2 -SDC2 REACTS_WITH ITGB1 -SDC2 REACTS_WITH KNG1 -SDC2 REACTS_WITH LAMA1 -SDC2 REACTS_WITH LAMA3 -SDC2 REACTS_WITH MMP2 -SDC2 REACTS_WITH NF1 -SDC2 REACTS_WITH PRKCD -SDC2 REACTS_WITH PTPN11 -SDC2 REACTS_WITH RASA1 -SDC2 REACTS_WITH SDC1 -SDC2 REACTS_WITH SDC2 -SDC2 REACTS_WITH SDC3 -SDC2 REACTS_WITH SDC4 -SDC2 REACTS_WITH SDCBP -SDC2 REACTS_WITH SHC1 -SDC2 REACTS_WITH SOS1 -SDC2 REACTS_WITH SPRY2 -SDC2 REACTS_WITH SRC -SDC2 REACTS_WITH TGFB1 -SDC2 REACTS_WITH TNFRSF13B -SDC2 REACTS_WITH TRAPPC4 -SDC2 STATE_CHANGE CASP3 -SDC2 STATE_CHANGE MAPK8 -SDC2 STATE_CHANGE PIK3CA -SDC2 STATE_CHANGE PIK3R1 -SDC2 STATE_CHANGE PLCG1 -SDC2 STATE_CHANGE PRKACA -SDC2 STATE_CHANGE RASA1 -SDC2 STATE_CHANGE SDC2 -SDC2 STATE_CHANGE SRC -SDC2 STATE_CHANGE STAT1 -SDC3 IN_SAME_COMPONENT AGRP -SDC3 IN_SAME_COMPONENT CASK -SDC3 IN_SAME_COMPONENT CTTN -SDC3 IN_SAME_COMPONENT EGFR -SDC3 IN_SAME_COMPONENT FYN -SDC3 IN_SAME_COMPONENT IL8 -SDC3 IN_SAME_COMPONENT MC4R -SDC3 IN_SAME_COMPONENT NCAN -SDC3 IN_SAME_COMPONENT SRC -SDC3 REACTS_WITH AGRP -SDC3 REACTS_WITH CASK -SDC3 REACTS_WITH CTTN -SDC3 REACTS_WITH EGFR -SDC3 REACTS_WITH FYN -SDC3 REACTS_WITH IL8 -SDC3 REACTS_WITH MC4R -SDC3 REACTS_WITH NCAN -SDC3 REACTS_WITH POMC -SDC3 REACTS_WITH SDC1 -SDC3 REACTS_WITH SDC2 -SDC3 REACTS_WITH SDC3 -SDC3 REACTS_WITH SDC4 -SDC3 REACTS_WITH SRC -SDC4 CO_CONTROL FN1 -SDC4 CO_CONTROL ITGA5 -SDC4 CO_CONTROL ITGB1 -SDC4 CO_CONTROL PRKCA -SDC4 CO_CONTROL RHOA -SDC4 IN_SAME_COMPONENT ACTN1 -SDC4 IN_SAME_COMPONENT ADAM12 -SDC4 IN_SAME_COMPONENT CCL5 -SDC4 IN_SAME_COMPONENT CXCL12 -SDC4 IN_SAME_COMPONENT CXCR4 -SDC4 IN_SAME_COMPONENT DNM2 -SDC4 IN_SAME_COMPONENT FGF2 -SDC4 IN_SAME_COMPONENT FGFR1 -SDC4 IN_SAME_COMPONENT FZD7 -SDC4 IN_SAME_COMPONENT GIPC1 -SDC4 IN_SAME_COMPONENT ITGAV -SDC4 IN_SAME_COMPONENT ITGB3 -SDC4 IN_SAME_COMPONENT LAMA1 -SDC4 IN_SAME_COMPONENT LAMA3 -SDC4 IN_SAME_COMPONENT MDK -SDC4 IN_SAME_COMPONENT NUDT16L1 -SDC4 IN_SAME_COMPONENT PRKCA -SDC4 IN_SAME_COMPONENT SDCBP -SDC4 IN_SAME_COMPONENT TFPI -SDC4 IN_SAME_COMPONENT THBS1 -SDC4 IN_SAME_COMPONENT THY1 -SDC4 IN_SAME_COMPONENT TNC -SDC4 IN_SAME_COMPONENT TNFRSF13B -SDC4 INTERACTS_WITH PRKCA -SDC4 INTERACTS_WITH RHOA -SDC4 REACTS_WITH ACTN1 -SDC4 REACTS_WITH ADAM12 -SDC4 REACTS_WITH CCL5 -SDC4 REACTS_WITH CXCL12 -SDC4 REACTS_WITH CXCR4 -SDC4 REACTS_WITH DNM2 -SDC4 REACTS_WITH FGF2 -SDC4 REACTS_WITH FGFR1 -SDC4 REACTS_WITH FZD7 -SDC4 REACTS_WITH GIPC1 -SDC4 REACTS_WITH ITGAV -SDC4 REACTS_WITH ITGB3 -SDC4 REACTS_WITH LAMA1 -SDC4 REACTS_WITH LAMA3 -SDC4 REACTS_WITH MDK -SDC4 REACTS_WITH NUDT16L1 -SDC4 REACTS_WITH PRKCA -SDC4 REACTS_WITH SDC1 -SDC4 REACTS_WITH SDC2 -SDC4 REACTS_WITH SDC3 -SDC4 REACTS_WITH SDC4 -SDC4 REACTS_WITH SDCBP -SDC4 REACTS_WITH TFPI -SDC4 REACTS_WITH THBS1 -SDC4 REACTS_WITH THY1 -SDC4 REACTS_WITH TNC -SDC4 REACTS_WITH TNFRSF13B -SDC4 STATE_CHANGE PRKCA -SDC4 STATE_CHANGE RAC1 -SDC4 STATE_CHANGE SDC4 -SDC4 STATE_CHANGE SDCBP -SDCBP IN_SAME_COMPONENT IL5 -SDCBP IN_SAME_COMPONENT IL5RA -SDCBP IN_SAME_COMPONENT SDC1 -SDCBP IN_SAME_COMPONENT SDC2 -SDCBP IN_SAME_COMPONENT SDC4 -SDCBP REACTS_WITH IL5 -SDCBP REACTS_WITH IL5RA -SDCBP REACTS_WITH SDC1 -SDCBP REACTS_WITH SDC2 -SDCBP REACTS_WITH SDC4 -SDCBP REACTS_WITH SDCBP -SELP IN_SAME_COMPONENT ITGAM -SELP IN_SAME_COMPONENT ITGB2 -SELP IN_SAME_COMPONENT SELPLG -SELPLG IN_SAME_COMPONENT ITGAM -SELPLG IN_SAME_COMPONENT ITGB2 -SELPLG IN_SAME_COMPONENT SELP -SELPLG REACTS_WITH ITGAM -SELPLG REACTS_WITH ITGB2 -SELPLG REACTS_WITH SELP -SELPLG REACTS_WITH SELPLG -SELP REACTS_WITH ITGAM -SELP REACTS_WITH ITGB2 -SELP REACTS_WITH SELP -SELP REACTS_WITH SELPLG -SENP1 STATE_CHANGE HDAC1 -SEPT1 IN_SAME_COMPONENT AURKB -SEPT1 REACTS_WITH AURKB -SEPT1 REACTS_WITH SEPT1 -SEPT2 IN_SAME_COMPONENT EXOC7 -SEPT2 IN_SAME_COMPONENT IQGAP1 -SEPT2 REACTS_WITH EXOC7 -SEPT2 REACTS_WITH IQGAP1 -SEPT2 REACTS_WITH SEPT2 -SERPINC1 IN_SAME_COMPONENT GPC1 -SERPINC1 REACTS_WITH GPC1 -SERPINC1 REACTS_WITH SERPINC1 -SERPINE1 IN_SAME_COMPONENT ITGAV -SERPINE1 IN_SAME_COMPONENT ITGB3 -SERPINE1 IN_SAME_COMPONENT ITGB5 -SERPINE1 IN_SAME_COMPONENT PLAU -SERPINE1 IN_SAME_COMPONENT PLAUR -SERPINE1 IN_SAME_COMPONENT VTN -SERPINE1 REACTS_WITH ITGAV -SERPINE1 REACTS_WITH ITGB3 -SERPINE1 REACTS_WITH ITGB5 -SERPINE1 REACTS_WITH PLAU -SERPINE1 REACTS_WITH PLAUR -SERPINE1 REACTS_WITH SERPINE1 -SERPINE1 REACTS_WITH VTN -SETD7 STATE_CHANGE TP53 -SETD8 STATE_CHANGE TP53 -SETDB1 IN_SAME_COMPONENT CHD7 -SETDB1 IN_SAME_COMPONENT NLK -SETDB1 IN_SAME_COMPONENT PPARG -SETDB1 REACTS_WITH CHD7 -SETDB1 REACTS_WITH NLK -SETDB1 REACTS_WITH PPARG -SETDB1 REACTS_WITH SETDB1 -SFN IN_SAME_COMPONENT FKBP5 -SFN IN_SAME_COMPONENT HSP90AA1 -SFN REACTS_WITH FKBP5 -SFN REACTS_WITH HSP90AA1 -SFN REACTS_WITH SFN -SGK1 STATE_CHANGE FOXO3 -SGMS1 CO_CONTROL SMPD1 -SGOL1 IN_SAME_COMPONENT AURKB -SGOL1 IN_SAME_COMPONENT BIRC5 -SGOL1 REACTS_WITH AURKB -SGOL1 REACTS_WITH BIRC5 -SGOL1 REACTS_WITH SGOL1 -SH2B1 CO_CONTROL MAGED1 -SH2B1 CO_CONTROL NGFR -SH2B1 STATE_CHANGE NGF -SH2B2 IN_SAME_COMPONENT CBL -SH2B2 IN_SAME_COMPONENT RAPGEF1 -SH2B2 IN_SAME_COMPONENT SORBS1 -SH2B2 REACTS_WITH CBL -SH2B2 REACTS_WITH RAPGEF1 -SH2B2 REACTS_WITH SH2B2 -SH2B2 REACTS_WITH SORBS1 -SH2B2 STATE_CHANGE RHOQ -SH2B3 STATE_CHANGE EPO -SH2B3 STATE_CHANGE EPOR -SH2B3 STATE_CHANGE JAK2 -SH2B3 STATE_CHANGE SOCS3 -SH2D2A IN_SAME_COMPONENT KDR -SH2D2A IN_SAME_COMPONENT MAP3K2 -SH2D2A IN_SAME_COMPONENT VEGFA -SH2D2A REACTS_WITH KDR -SH2D2A REACTS_WITH MAP3K2 -SH2D2A REACTS_WITH SH2D2A -SH2D2A REACTS_WITH VEGFA -SH3BP2 IN_SAME_COMPONENT CD247 -SH3BP2 IN_SAME_COMPONENT CD3D -SH3BP2 IN_SAME_COMPONENT CD3E -SH3BP2 IN_SAME_COMPONENT CD3G -SH3BP2 IN_SAME_COMPONENT CD4 -SH3BP2 IN_SAME_COMPONENT HLA-DRA -SH3BP2 IN_SAME_COMPONENT HLA-DRB1 -SH3BP2 IN_SAME_COMPONENT LCK -SH3BP2 IN_SAME_COMPONENT ZAP70 -SH3BP2 REACTS_WITH CD247 -SH3BP2 REACTS_WITH CD3D -SH3BP2 REACTS_WITH CD3E -SH3BP2 REACTS_WITH CD3G -SH3BP2 REACTS_WITH CD4 -SH3BP2 REACTS_WITH HLA-DRA -SH3BP2 REACTS_WITH HLA-DRB1 -SH3BP2 REACTS_WITH LCK -SH3BP2 REACTS_WITH SH3BP2 -SH3BP2 REACTS_WITH ZAP70 -SH3BP5 CO_CONTROL IBTK -SH3BP5 STATE_CHANGE BLNK -SH3BP5 STATE_CHANGE BTK -SH3BP5 STATE_CHANGE CD79A -SH3BP5 STATE_CHANGE CD79B -SH3BP5 STATE_CHANGE LYN -SH3BP5 STATE_CHANGE PLCG2 -SH3BP5 STATE_CHANGE SYK -SH3GL1 REACTS_WITH SH3GL1 -SH3GL2 CO_CONTROL AMPH -SH3GL2 CO_CONTROL DNM1 -SH3GL2 CO_CONTROL SYNJ1 -SH3GL2 IN_SAME_COMPONENT CBL -SH3GL2 IN_SAME_COMPONENT SH3KBP1 -SH3GL2 REACTS_WITH SH3GL2 -SH3GL2 REACTS_WITH SH3KBP1 -SH3GL2 STATE_CHANGE EGF -SH3GL2 STATE_CHANGE EGFR -SH3GL2 STATE_CHANGE HGF -SH3GL2 STATE_CHANGE MET -SH3KBP1 CO_CONTROL AMPH -SH3KBP1 CO_CONTROL DNM1 -SH3KBP1 CO_CONTROL SYNJ1 -SH3KBP1 IN_SAME_COMPONENT CBL -SH3KBP1 IN_SAME_COMPONENT SH3GL2 -SH3KBP1 REACTS_WITH SH3GL2 -SH3KBP1 REACTS_WITH SH3KBP1 -SH3KBP1 STATE_CHANGE EGF -SH3KBP1 STATE_CHANGE EGFR -SH3KBP1 STATE_CHANGE HGF -SH3KBP1 STATE_CHANGE MET -SHANK3 IN_SAME_COMPONENT GDNF -SHANK3 IN_SAME_COMPONENT GFRA1 -SHANK3 REACTS_WITH GDNF -SHANK3 REACTS_WITH GFRA1 -SHANK3 REACTS_WITH SHANK3 -SHBG REACTS_WITH SHBG -SHB IN_SAME_COMPONENT KDR -SHB IN_SAME_COMPONENT PDGFRA -SHB IN_SAME_COMPONENT SRC -SHB IN_SAME_COMPONENT VEGFA -SHB REACTS_WITH KDR -SHB REACTS_WITH PDGFRA -SHB REACTS_WITH SHB -SHB REACTS_WITH SRC -SHB REACTS_WITH VEGFA -SHC1 CO_CONTROL DOK1 -SHC1 CO_CONTROL GAB2 -SHC1 CO_CONTROL GRB10 -SHC1 CO_CONTROL IL17RD -SHC1 CO_CONTROL INPP5D -SHC1 CO_CONTROL INS -SHC1 CO_CONTROL INSR -SHC1 CO_CONTROL IRS1 -SHC1 CO_CONTROL RASA1 -SHC1 CO_CONTROL SHC1 -SHC1 CO_CONTROL SOS1 -SHC1 IN_SAME_COMPONENT ANGPT1 -SHC1 IN_SAME_COMPONENT CBL -SHC1 IN_SAME_COMPONENT CSF2 -SHC1 IN_SAME_COMPONENT CSF2RA -SHC1 IN_SAME_COMPONENT CSF2RB -SHC1 IN_SAME_COMPONENT ERBB2 -SHC1 IN_SAME_COMPONENT ERBB3 -SHC1 IN_SAME_COMPONENT FRS2 -SHC1 IN_SAME_COMPONENT GAB1 -SHC1 IN_SAME_COMPONENT GAB2 -SHC1 IN_SAME_COMPONENT GDNF -SHC1 IN_SAME_COMPONENT GFRA1 -SHC1 IN_SAME_COMPONENT GRAP2 -SHC1 IN_SAME_COMPONENT GRB10 -SHC1 IN_SAME_COMPONENT IGF1 -SHC1 IN_SAME_COMPONENT IGF1R -SHC1 IN_SAME_COMPONENT IL2 -SHC1 IN_SAME_COMPONENT IL2RA -SHC1 IN_SAME_COMPONENT IL2RB -SHC1 IN_SAME_COMPONENT IL2RG -SHC1 IN_SAME_COMPONENT IL3 -SHC1 IN_SAME_COMPONENT IL3RA -SHC1 IN_SAME_COMPONENT IL4 -SHC1 IN_SAME_COMPONENT IL4R -SHC1 IN_SAME_COMPONENT INPP5D -SHC1 IN_SAME_COMPONENT INS -SHC1 IN_SAME_COMPONENT INSR -SHC1 IN_SAME_COMPONENT IRS1 -SHC1 IN_SAME_COMPONENT ITGA6 -SHC1 IN_SAME_COMPONENT ITGB4 -SHC1 IN_SAME_COMPONENT JAK1 -SHC1 IN_SAME_COMPONENT JAK2 -SHC1 IN_SAME_COMPONENT JAK3 -SHC1 IN_SAME_COMPONENT LCK -SHC1 IN_SAME_COMPONENT PIK3CA -SHC1 IN_SAME_COMPONENT PIK3R1 -SHC1 IN_SAME_COMPONENT PTPN1 -SHC1 IN_SAME_COMPONENT PTPN11 -SHC1 IN_SAME_COMPONENT RASA1 -SHC1 IN_SAME_COMPONENT SDC2 -SHC1 IN_SAME_COMPONENT SOS1 -SHC1 IN_SAME_COMPONENT TEK -SHC1 IN_SAME_COMPONENT YWHAZ -SHC1 METABOLIC_CATALYSIS CCND3 -SHC1 REACTS_WITH ANGPT1 -SHC1 REACTS_WITH CBL -SHC1 REACTS_WITH CSF2 -SHC1 REACTS_WITH CSF2RA -SHC1 REACTS_WITH CSF2RB -SHC1 REACTS_WITH ERBB2 -SHC1 REACTS_WITH ERBB3 -SHC1 REACTS_WITH FRS2 -SHC1 REACTS_WITH GAB1 -SHC1 REACTS_WITH GAB2 -SHC1 REACTS_WITH GDNF -SHC1 REACTS_WITH GFRA1 -SHC1 REACTS_WITH GRAP2 -SHC1 REACTS_WITH GRB10 -SHC1 REACTS_WITH IGF1 -SHC1 REACTS_WITH IGF1R -SHC1 REACTS_WITH IL2 -SHC1 REACTS_WITH IL2RA -SHC1 REACTS_WITH IL2RB -SHC1 REACTS_WITH IL2RG -SHC1 REACTS_WITH IL3 -SHC1 REACTS_WITH IL3RA -SHC1 REACTS_WITH IL4 -SHC1 REACTS_WITH IL4R -SHC1 REACTS_WITH INPP5D -SHC1 REACTS_WITH INS -SHC1 REACTS_WITH INSR -SHC1 REACTS_WITH IRS1 -SHC1 REACTS_WITH ITGA6 -SHC1 REACTS_WITH ITGB4 -SHC1 REACTS_WITH JAK1 -SHC1 REACTS_WITH JAK2 -SHC1 REACTS_WITH JAK3 -SHC1 REACTS_WITH LCK -SHC1 REACTS_WITH PIK3CA -SHC1 REACTS_WITH PIK3R1 -SHC1 REACTS_WITH PTPN1 -SHC1 REACTS_WITH PTPN11 -SHC1 REACTS_WITH RASA1 -SHC1 REACTS_WITH SDC2 -SHC1 REACTS_WITH SHC1 -SHC1 REACTS_WITH SOS1 -SHC1 REACTS_WITH SPRY2 -SHC1 REACTS_WITH TEK -SHC1 REACTS_WITH YWHAZ -SHC1 STATE_CHANGE AKT1 -SHC1 STATE_CHANGE CREB1 -SHC1 STATE_CHANGE DOK1 -SHC1 STATE_CHANGE HRAS -SHC1 STATE_CHANGE IKZF3 -SHC1 STATE_CHANGE MAP2K1 -SHC1 STATE_CHANGE PIK3CA -SHC1 STATE_CHANGE PIK3R1 -SHC1 STATE_CHANGE PRKCD -SHC1 STATE_CHANGE PRKCZ -SHC1 STATE_CHANGE PRKD1 -SHC1 STATE_CHANGE SGMS1 -SHC1 STATE_CHANGE SMPD1 -SHC1 STATE_CHANGE UGCG -SHC2 REACTS_WITH FLT1 -SHC2 REACTS_WITH VEGFA -SHF IN_SAME_COMPONENT PDGFRA -SHF REACTS_WITH PDGFRA -SHF REACTS_WITH SHF -SHH IN_SAME_COMPONENT BOC -SHH IN_SAME_COMPONENT CDON -SHH IN_SAME_COMPONENT GAS1 -SHH IN_SAME_COMPONENT GPC3 -SHH IN_SAME_COMPONENT HHIP -SHH IN_SAME_COMPONENT LRP2 -SHH IN_SAME_COMPONENT PTCH1 -SHH IN_SAME_COMPONENT PTCH2 -SHH METABOLIC_CATALYSIS GLI2 -SHH REACTS_WITH BOC -SHH REACTS_WITH CDON -SHH REACTS_WITH GAS1 -SHH REACTS_WITH GPC3 -SHH REACTS_WITH HHIP -SHH REACTS_WITH LRP2 -SHH REACTS_WITH LRPAP1 -SHH REACTS_WITH PTCH1 -SHH REACTS_WITH PTCH2 -SHH REACTS_WITH SHH -SHH STATE_CHANGE MAP2K1 -SHH STATE_CHANGE PRKCD -SHH STATE_CHANGE SMO -SHH STATE_CHANGE STIL -SIK1 REACTS_WITH SIK1 -SIK1 STATE_CHANGE CRTC2 -SIK1 STATE_CHANGE TP53 -SIK2 STATE_CHANGE CRTC2 -SIK3 REACTS_WITH SIK3 -SIK3 STATE_CHANGE CRTC2 -SIN3A CO_CONTROL ARRB2 -SIN3A CO_CONTROL CITED1 -SIN3A CO_CONTROL SMO -SIN3A IN_SAME_COMPONENT CTBP1 -SIN3A IN_SAME_COMPONENT HDAC1 -SIN3A IN_SAME_COMPONENT HDAC2 -SIN3A IN_SAME_COMPONENT MAX -SIN3A IN_SAME_COMPONENT MXD1 -SIN3A IN_SAME_COMPONENT MYB -SIN3A IN_SAME_COMPONENT NCOR1 -SIN3A IN_SAME_COMPONENT RBBP4 -SIN3A IN_SAME_COMPONENT RBBP7 -SIN3A IN_SAME_COMPONENT SAP18 -SIN3A IN_SAME_COMPONENT SAP30 -SIN3A IN_SAME_COMPONENT SIN3B -SIN3A IN_SAME_COMPONENT SKI -SIN3A IN_SAME_COMPONENT SKIL -SIN3A IN_SAME_COMPONENT SMAD2 -SIN3A IN_SAME_COMPONENT SMAD4 -SIN3A IN_SAME_COMPONENT SUFU -SIN3A IN_SAME_COMPONENT TGIF1 -SIN3A IN_SAME_COMPONENT TRIM28 -SIN3A IN_SAME_COMPONENT UBE3A -SIN3A METABOLIC_CATALYSIS MYC -SIN3A METABOLIC_CATALYSIS TERT -SIN3A REACTS_WITH HDAC1 -SIN3A REACTS_WITH HDAC2 -SIN3A REACTS_WITH MAX -SIN3A REACTS_WITH MXD1 -SIN3A REACTS_WITH MYB -SIN3A REACTS_WITH NCOR1 -SIN3A REACTS_WITH RBBP4 -SIN3A REACTS_WITH RBBP7 -SIN3A REACTS_WITH SAP18 -SIN3A REACTS_WITH SAP30 -SIN3A REACTS_WITH SIN3A -SIN3A REACTS_WITH SIN3B -SIN3A REACTS_WITH SKI -SIN3A REACTS_WITH SKIL -SIN3A REACTS_WITH SMAD2 -SIN3A REACTS_WITH SMAD4 -SIN3A REACTS_WITH SUFU -SIN3A REACTS_WITH TRIM28 -SIN3A REACTS_WITH UBE3A -SIN3A STATE_CHANGE GLI1 -SIN3A STATE_CHANGE GLI3 -SIN3A STATE_CHANGE SMAD2 -SIN3A STATE_CHANGE SMAD4 -SIN3B CO_CONTROL ARRB2 -SIN3B CO_CONTROL CITED1 -SIN3B CO_CONTROL SMO -SIN3B IN_SAME_COMPONENT CTBP1 -SIN3B IN_SAME_COMPONENT HDAC1 -SIN3B IN_SAME_COMPONENT HDAC2 -SIN3B IN_SAME_COMPONENT MAX -SIN3B IN_SAME_COMPONENT MXD1 -SIN3B IN_SAME_COMPONENT NCOR1 -SIN3B IN_SAME_COMPONENT RBBP4 -SIN3B IN_SAME_COMPONENT RBBP7 -SIN3B IN_SAME_COMPONENT SAP18 -SIN3B IN_SAME_COMPONENT SAP30 -SIN3B IN_SAME_COMPONENT SIN3A -SIN3B IN_SAME_COMPONENT SKI -SIN3B IN_SAME_COMPONENT SKIL -SIN3B IN_SAME_COMPONENT SMAD2 -SIN3B IN_SAME_COMPONENT SMAD4 -SIN3B IN_SAME_COMPONENT SUFU -SIN3B IN_SAME_COMPONENT TGIF1 -SIN3B IN_SAME_COMPONENT UBE3A -SIN3B METABOLIC_CATALYSIS TERT -SIN3B REACTS_WITH HDAC1 -SIN3B REACTS_WITH HDAC2 -SIN3B REACTS_WITH MAX -SIN3B REACTS_WITH MXD1 -SIN3B REACTS_WITH NCOR1 -SIN3B REACTS_WITH RBBP4 -SIN3B REACTS_WITH RBBP7 -SIN3B REACTS_WITH SAP18 -SIN3B REACTS_WITH SAP30 -SIN3B REACTS_WITH SIN3A -SIN3B REACTS_WITH SIN3B -SIN3B REACTS_WITH SKIL -SIN3B REACTS_WITH SMAD2 -SIN3B REACTS_WITH SMAD4 -SIN3B REACTS_WITH SUFU -SIN3B REACTS_WITH UBE3A -SIN3B STATE_CHANGE GLI1 -SIN3B STATE_CHANGE GLI3 -SIN3B STATE_CHANGE SMAD2 -SIN3B STATE_CHANGE SMAD4 -SIPA1 IN_SAME_COMPONENT MLLT4 -SIPA1 REACTS_WITH MLLT4 -SIPA1 REACTS_WITH SIPA1 -SIRT1 CO_CONTROL E2F1 -SIRT1 CO_CONTROL EP300 -SIRT1 CO_CONTROL FOXO3 -SIRT1 CO_CONTROL SP1 -SIRT1 IN_SAME_COMPONENT ARNT -SIRT1 IN_SAME_COMPONENT BAX -SIRT1 IN_SAME_COMPONENT EP300 -SIRT1 IN_SAME_COMPONENT EPAS1 -SIRT1 IN_SAME_COMPONENT FHL2 -SIRT1 IN_SAME_COMPONENT FOXO1 -SIRT1 IN_SAME_COMPONENT FOXO3 -SIRT1 IN_SAME_COMPONENT FOXO4 -SIRT1 IN_SAME_COMPONENT HDAC4 -SIRT1 IN_SAME_COMPONENT HIST1H1E -SIRT1 IN_SAME_COMPONENT KAT2B -SIRT1 IN_SAME_COMPONENT MEF2D -SIRT1 IN_SAME_COMPONENT MYOD1 -SIRT1 IN_SAME_COMPONENT PPARGC1A -SIRT1 IN_SAME_COMPONENT TP53 -SIRT1 IN_SAME_COMPONENT XRCC6 -SIRT1 METABOLIC_CATALYSIS BCL2L11 -SIRT1 METABOLIC_CATALYSIS CDKN1A -SIRT1 METABOLIC_CATALYSIS CDKN1B -SIRT1 METABOLIC_CATALYSIS E2F1 -SIRT1 METABOLIC_CATALYSIS EPO -SIRT1 METABOLIC_CATALYSIS FASLG -SIRT1 METABOLIC_CATALYSIS GADD45A -SIRT1 METABOLIC_CATALYSIS SOD2 -SIRT1 REACTS_WITH ARNT -SIRT1 REACTS_WITH BAX -SIRT1 REACTS_WITH EP300 -SIRT1 REACTS_WITH EPAS1 -SIRT1 REACTS_WITH FHL2 -SIRT1 REACTS_WITH FOXO1 -SIRT1 REACTS_WITH FOXO3 -SIRT1 REACTS_WITH FOXO4 -SIRT1 REACTS_WITH HDAC4 -SIRT1 REACTS_WITH HIST1H1E -SIRT1 REACTS_WITH KAT2B -SIRT1 REACTS_WITH MEF2D -SIRT1 REACTS_WITH MYOD1 -SIRT1 REACTS_WITH PPARGC1A -SIRT1 REACTS_WITH SIRT1 -SIRT1 REACTS_WITH TP53 -SIRT1 REACTS_WITH XRCC6 -SIRT1 STATE_CHANGE ACSS2 -SIRT1 STATE_CHANGE AR -SIRT1 STATE_CHANGE FOXO3 -SIRT1 STATE_CHANGE NCOA2 -SIRT1 STATE_CHANGE RB1 -SIRT2 IN_SAME_COMPONENT HOXA10 -SIRT2 IN_SAME_COMPONENT TUBB2A -SIRT2 REACTS_WITH HOXA10 -SIRT2 REACTS_WITH SIRT2 -SIRT2 REACTS_WITH TUBB2A -SIRT3 STATE_CHANGE ACSS1 -SIRT7 REACTS_WITH SIRT7 -SKI CO_CONTROL CITED1 -SKI IN_SAME_COMPONENT HDAC1 -SKI IN_SAME_COMPONENT HDAC2 -SKI IN_SAME_COMPONENT MYB -SKI IN_SAME_COMPONENT NCOR1 -SKI IN_SAME_COMPONENT RBBP4 -SKI IN_SAME_COMPONENT RBBP7 -SKI IN_SAME_COMPONENT SAP18 -SKI IN_SAME_COMPONENT SAP30 -SKI IN_SAME_COMPONENT SIN3A -SKI IN_SAME_COMPONENT SIN3B -SKI IN_SAME_COMPONENT SMAD1 -SKI IN_SAME_COMPONENT SMAD5 -SKI IN_SAME_COMPONENT TRIM28 -SKIL IN_SAME_COMPONENT HDAC1 -SKIL IN_SAME_COMPONENT HDAC2 -SKIL IN_SAME_COMPONENT NCOR1 -SKIL IN_SAME_COMPONENT RBBP4 -SKIL IN_SAME_COMPONENT RBBP7 -SKIL IN_SAME_COMPONENT SAP18 -SKIL IN_SAME_COMPONENT SAP30 -SKIL IN_SAME_COMPONENT SIN3A -SKIL IN_SAME_COMPONENT SIN3B -SKIL IN_SAME_COMPONENT SMAD2 -SKIL IN_SAME_COMPONENT SMAD4 -SKIL REACTS_WITH HDAC1 -SKIL REACTS_WITH HDAC2 -SKIL REACTS_WITH NCOR1 -SKIL REACTS_WITH RBBP4 -SKIL REACTS_WITH RBBP7 -SKIL REACTS_WITH SAP18 -SKIL REACTS_WITH SAP30 -SKIL REACTS_WITH SIN3A -SKIL REACTS_WITH SIN3B -SKIL REACTS_WITH SKIL -SKIL REACTS_WITH SMAD2 -SKIL REACTS_WITH SMAD4 -SKI METABOLIC_CATALYSIS MYC -SKI REACTS_WITH MYB -SKI REACTS_WITH NCOR1 -SKI REACTS_WITH SIN3A -SKI REACTS_WITH SKI -SKI REACTS_WITH SMAD1 -SKI REACTS_WITH SMAD5 -SKI REACTS_WITH TRIM28 -SKI STATE_CHANGE SMAD2 -SKI STATE_CHANGE SMAD4 -SKP1 IN_SAME_COMPONENT BTRC -SKP1 IN_SAME_COMPONENT CTNNB1 -SKP1 IN_SAME_COMPONENT CUL1 -SKP1 IN_SAME_COMPONENT FBXW7 -SKP1 IN_SAME_COMPONENT TCF7L2 -SKP1 IN_SAME_COMPONENT TRRAP -SKP1 REACTS_WITH BTRC -SKP1 REACTS_WITH CTNNB1 -SKP1 REACTS_WITH CUL1 -SKP1 REACTS_WITH SKP1 -SKP1 REACTS_WITH TCF7L2 -SKP1 REACTS_WITH TRRAP -SKP1 STATE_CHANGE APC -SKP1 STATE_CHANGE CTNNB1 -SKP2 IN_SAME_COMPONENT CDKN1B -SKP2 IN_SAME_COMPONENT FOXO1 -SKP2 IN_SAME_COMPONENT RB1 -SKP2 REACTS_WITH CDKN1B -SKP2 REACTS_WITH FOXO1 -SKP2 REACTS_WITH RB1 -SKP2 REACTS_WITH SKP2 -SKP2 STATE_CHANGE MAX -SKP2 STATE_CHANGE MYC -SKP2 STATE_CHANGE TP53 -SLA2 IN_SAME_COMPONENT CBL -SLA2 IN_SAME_COMPONENT CD247 -SLA2 IN_SAME_COMPONENT CD3D -SLA2 IN_SAME_COMPONENT CD3E -SLA2 IN_SAME_COMPONENT CD3G -SLA2 IN_SAME_COMPONENT CD4 -SLA2 IN_SAME_COMPONENT HLA-DRA -SLA2 IN_SAME_COMPONENT HLA-DRB1 -SLA2 IN_SAME_COMPONENT LCK -SLA2 IN_SAME_COMPONENT ZAP70 -SLA2 REACTS_WITH CBL -SLA2 REACTS_WITH CD247 -SLA2 REACTS_WITH CD3D -SLA2 REACTS_WITH CD3E -SLA2 REACTS_WITH CD3G -SLA2 REACTS_WITH CD4 -SLA2 REACTS_WITH HLA-DRA -SLA2 REACTS_WITH HLA-DRB1 -SLA2 REACTS_WITH LCK -SLA2 REACTS_WITH SLA2 -SLA2 REACTS_WITH ZAP70 -SLA CO_CONTROL PDGFB -SLA CO_CONTROL PDGFRB -SLC2A4 IN_SAME_COMPONENT ACAP1 -SLC2A4 IN_SAME_COMPONENT CLTC -SLC2A4 IN_SAME_COMPONENT LNPEP -SLC2A4 IN_SAME_COMPONENT VAMP2 -SLC2A4 REACTS_WITH ACAP1 -SLC2A4 REACTS_WITH CLTC -SLC2A4 REACTS_WITH LNPEP -SLC2A4 REACTS_WITH SLC2A4 -SLC2A4 REACTS_WITH VAMP2 -SLC6A3 IN_SAME_COMPONENT SNCA -SLC6A3 REACTS_WITH SLC6A3 -SLC6A3 REACTS_WITH SNCA -SLC9A1 IN_SAME_COMPONENT CALM1 -SLC9A1 REACTS_WITH CALM1 -SLC9A1 REACTS_WITH SLC9A1 -SLC9A3R1 REACTS_WITH GNB5 -SLC9A3R1 REACTS_WITH GNG2 -SLC9A3R1 REACTS_WITH SLC9A3R1 -SLC9A3R1 STATE_CHANGE ARR3 -SLC9A3R1 STATE_CHANGE ARRB2 -SLC9A3R1 STATE_CHANGE TBXA2R -SLC9A3R2 IN_SAME_COMPONENT LPAR2 -SLC9A3R2 REACTS_WITH LPAR2 -SLC9A3R2 REACTS_WITH SLC9A3R2 -SLC9A3R2 STATE_CHANGE PLCB3 -SLIT1 IN_SAME_COMPONENT ABL1 -SLIT1 IN_SAME_COMPONENT CABLES1 -SLIT1 IN_SAME_COMPONENT ROBO1 -SLIT1 STATE_CHANGE CDH2 -SLIT1 STATE_CHANGE CTNNA1 -SLIT1 STATE_CHANGE CTNNB1 -SLIT1 STATE_CHANGE CTNND1 -SLIT2 IN_SAME_COMPONENT GPC1 -SLIT2 REACTS_WITH GPC1 -SLIT2 REACTS_WITH SLIT2 -SMAD1 CO_CONTROL NUP214 -SMAD1 IN_SAME_COMPONENT SKI -SMAD1 IN_SAME_COMPONENT SMAD4 -SMAD1 IN_SAME_COMPONENT SMAD6 -SMAD1 IN_SAME_COMPONENT SMURF1 -SMAD1 IN_SAME_COMPONENT SMURF2 -SMAD1 IN_SAME_COMPONENT ZFYVE16 -SMAD1 REACTS_WITH BMP7 -SMAD1 REACTS_WITH BMPR2 -SMAD1 REACTS_WITH PPP1CA -SMAD1 REACTS_WITH PPP1R15A -SMAD1 REACTS_WITH SKI -SMAD1 REACTS_WITH SMAD1 -SMAD1 REACTS_WITH SMAD4 -SMAD1 REACTS_WITH SMAD6 -SMAD1 REACTS_WITH SMAD7 -SMAD1 REACTS_WITH SMURF1 -SMAD1 REACTS_WITH SMURF2 -SMAD1 REACTS_WITH ZFYVE16 -SMAD1 STATE_CHANGE SMAD1 -SMAD1 STATE_CHANGE SMAD4 -SMAD2 CO_CONTROL SMAD4 -SMAD2 IN_SAME_COMPONENT DCP1A -SMAD2 IN_SAME_COMPONENT DYNLRB1 -SMAD2 IN_SAME_COMPONENT FOXH1 -SMAD2 IN_SAME_COMPONENT HDAC1 -SMAD2 IN_SAME_COMPONENT HDAC2 -SMAD2 IN_SAME_COMPONENT NCOR1 -SMAD2 IN_SAME_COMPONENT NEDD4L -SMAD2 IN_SAME_COMPONENT NKX2-5 -SMAD2 IN_SAME_COMPONENT RBBP4 -SMAD2 IN_SAME_COMPONENT RBBP7 -SMAD2 IN_SAME_COMPONENT SAP18 -SMAD2 IN_SAME_COMPONENT SAP30 -SMAD2 IN_SAME_COMPONENT SIN3A -SMAD2 IN_SAME_COMPONENT SIN3B -SMAD2 IN_SAME_COMPONENT SKIL -SMAD2 IN_SAME_COMPONENT SMAD4 -SMAD2 IN_SAME_COMPONENT SMURF2 -SMAD2 IN_SAME_COMPONENT TGFBR1 -SMAD2 IN_SAME_COMPONENT TGFBR2 -SMAD2 METABOLIC_CATALYSIS GSC -SMAD2 METABOLIC_CATALYSIS MEF2C -SMAD2 REACTS_WITH DCP1A -SMAD2 REACTS_WITH DYNLRB1 -SMAD2 REACTS_WITH FOXH1 -SMAD2 REACTS_WITH HDAC1 -SMAD2 REACTS_WITH HDAC2 -SMAD2 REACTS_WITH NCOR1 -SMAD2 REACTS_WITH NEDD4L -SMAD2 REACTS_WITH NKX2-5 -SMAD2 REACTS_WITH RBBP4 -SMAD2 REACTS_WITH RBBP7 -SMAD2 REACTS_WITH SAP18 -SMAD2 REACTS_WITH SAP30 -SMAD2 REACTS_WITH SIN3A -SMAD2 REACTS_WITH SIN3B -SMAD2 REACTS_WITH SKIL -SMAD2 REACTS_WITH SMAD2 -SMAD2 REACTS_WITH SMAD4 -SMAD2 REACTS_WITH SMURF2 -SMAD2 REACTS_WITH TGFBR1 -SMAD2 REACTS_WITH TGFBR2 -SMAD2 REACTS_WITH TGFBRAP1 -SMAD2 REACTS_WITH ZFYVE16 -SMAD4 CO_CONTROL CEBPB -SMAD4 CO_CONTROL CREB1 -SMAD4 CO_CONTROL ESR1 -SMAD4 CO_CONTROL FOS -SMAD4 CO_CONTROL FOXG1 -SMAD4 CO_CONTROL FOXH1 -SMAD4 CO_CONTROL JUN -SMAD4 CO_CONTROL MAX -SMAD4 CO_CONTROL MYC -SMAD4 CO_CONTROL NR3C1 -SMAD4 CO_CONTROL SMAD2 -SMAD4 CO_CONTROL SMAD4 -SMAD4 CO_CONTROL SP1 -SMAD4 CO_CONTROL TFE3 -SMAD4 CO_CONTROL ZBTB17 -SMAD4 IN_SAME_COMPONENT AR -SMAD4 IN_SAME_COMPONENT ARNT -SMAD4 IN_SAME_COMPONENT ATF2 -SMAD4 IN_SAME_COMPONENT ATF3 -SMAD4 IN_SAME_COMPONENT CBFB -SMAD4 IN_SAME_COMPONENT CEBPB -SMAD4 IN_SAME_COMPONENT DCP1A -SMAD4 IN_SAME_COMPONENT DLX1 -SMAD4 IN_SAME_COMPONENT ESR1 -SMAD4 IN_SAME_COMPONENT FOS -SMAD4 IN_SAME_COMPONENT FOXG1 -SMAD4 IN_SAME_COMPONENT FOXH1 -SMAD4 IN_SAME_COMPONENT GATA3 -SMAD4 IN_SAME_COMPONENT HDAC1 -SMAD4 IN_SAME_COMPONENT HDAC2 -SMAD4 IN_SAME_COMPONENT HIF1A -SMAD4 IN_SAME_COMPONENT HNF4A -SMAD4 IN_SAME_COMPONENT IRF7 -SMAD4 IN_SAME_COMPONENT JUN -SMAD4 IN_SAME_COMPONENT MAX -SMAD4 IN_SAME_COMPONENT MED15 -SMAD4 IN_SAME_COMPONENT MEF2C -SMAD4 IN_SAME_COMPONENT MYC -SMAD4 IN_SAME_COMPONENT MYOD1 -SMAD4 IN_SAME_COMPONENT NCOR1 -SMAD4 IN_SAME_COMPONENT NKX2-5 -SMAD4 IN_SAME_COMPONENT NR3C1 -SMAD4 IN_SAME_COMPONENT PIAS4 -SMAD4 IN_SAME_COMPONENT RBBP4 -SMAD4 IN_SAME_COMPONENT RBBP7 -SMAD4 IN_SAME_COMPONENT RBL1 -SMAD4 IN_SAME_COMPONENT RUNX2 -SMAD4 IN_SAME_COMPONENT SAP18 -SMAD4 IN_SAME_COMPONENT SAP30 -SMAD4 IN_SAME_COMPONENT SIN3A -SMAD4 IN_SAME_COMPONENT SIN3B -SMAD4 IN_SAME_COMPONENT SKIL -SMAD4 IN_SAME_COMPONENT SMAD1 -SMAD4 IN_SAME_COMPONENT SMAD2 -SMAD4 IN_SAME_COMPONENT SMAD5 -SMAD4 IN_SAME_COMPONENT SMAD9 -SMAD4 IN_SAME_COMPONENT SP1 -SMAD4 IN_SAME_COMPONENT STK11 -SMAD4 IN_SAME_COMPONENT STK11IP -SMAD4 IN_SAME_COMPONENT TFDP1 -SMAD4 IN_SAME_COMPONENT TFE3 -SMAD4 IN_SAME_COMPONENT TGFBR1 -SMAD4 IN_SAME_COMPONENT TGFBR2 -SMAD4 IN_SAME_COMPONENT TGFBRAP1 -SMAD4 IN_SAME_COMPONENT TGIF2 -SMAD4 IN_SAME_COMPONENT UBE2I -SMAD4 IN_SAME_COMPONENT VDR -SMAD4 IN_SAME_COMPONENT ZBTB17 -SMAD4 IN_SAME_COMPONENT ZFYVE16 -SMAD4 METABOLIC_CATALYSIS CDKN1A -SMAD4 METABOLIC_CATALYSIS CDKN2B -SMAD4 METABOLIC_CATALYSIS COL1A2 -SMAD4 METABOLIC_CATALYSIS ENG -SMAD4 METABOLIC_CATALYSIS GSC -SMAD4 METABOLIC_CATALYSIS ID1 -SMAD4 METABOLIC_CATALYSIS IFNB1 -SMAD4 METABOLIC_CATALYSIS IGHA1 -SMAD4 METABOLIC_CATALYSIS IL10 -SMAD4 METABOLIC_CATALYSIS IL5 -SMAD4 METABOLIC_CATALYSIS ITGB5 -SMAD4 METABOLIC_CATALYSIS JUN -SMAD4 METABOLIC_CATALYSIS LAMC1 -SMAD4 METABOLIC_CATALYSIS MEF2C -SMAD4 METABOLIC_CATALYSIS SERPINE1 -SMAD4 METABOLIC_CATALYSIS SMAD7 -SMAD4 METABOLIC_CATALYSIS SNAI1 -SMAD4 METABOLIC_CATALYSIS TLX2 -SMAD4 REACTS_WITH AR -SMAD4 REACTS_WITH ARNT -SMAD4 REACTS_WITH ATF2 -SMAD4 REACTS_WITH CBFB -SMAD4 REACTS_WITH CEBPB -SMAD4 REACTS_WITH DCP1A -SMAD4 REACTS_WITH DLX1 -SMAD4 REACTS_WITH ESR1 -SMAD4 REACTS_WITH FOS -SMAD4 REACTS_WITH FOXG1 -SMAD4 REACTS_WITH FOXH1 -SMAD4 REACTS_WITH GATA3 -SMAD4 REACTS_WITH HDAC1 -SMAD4 REACTS_WITH HDAC2 -SMAD4 REACTS_WITH HIF1A -SMAD4 REACTS_WITH HNF4A -SMAD4 REACTS_WITH IRF7 -SMAD4 REACTS_WITH JUN -SMAD4 REACTS_WITH MAX -SMAD4 REACTS_WITH MED15 -SMAD4 REACTS_WITH MEF2C -SMAD4 REACTS_WITH MYC -SMAD4 REACTS_WITH MYOD1 -SMAD4 REACTS_WITH NCOA2 -SMAD4 REACTS_WITH NCOR1 -SMAD4 REACTS_WITH NKX2-5 -SMAD4 REACTS_WITH NR3C1 -SMAD4 REACTS_WITH PIAS4 -SMAD4 REACTS_WITH RBBP4 -SMAD4 REACTS_WITH RBBP7 -SMAD4 REACTS_WITH RUNX2 -SMAD4 REACTS_WITH SAP18 -SMAD4 REACTS_WITH SAP30 -SMAD4 REACTS_WITH SIN3A -SMAD4 REACTS_WITH SIN3B -SMAD4 REACTS_WITH SKIL -SMAD4 REACTS_WITH SMAD1 -SMAD4 REACTS_WITH SMAD2 -SMAD4 REACTS_WITH SMAD4 -SMAD4 REACTS_WITH SMAD5 -SMAD4 REACTS_WITH SMAD6 -SMAD4 REACTS_WITH SMAD9 -SMAD4 REACTS_WITH SP1 -SMAD4 REACTS_WITH STK11 -SMAD4 REACTS_WITH STK11IP -SMAD4 REACTS_WITH TCF3 -SMAD4 REACTS_WITH TFE3 -SMAD4 REACTS_WITH TGFBR1 -SMAD4 REACTS_WITH TGFBR2 -SMAD4 REACTS_WITH TGFBRAP1 -SMAD4 REACTS_WITH TGIF2 -SMAD4 REACTS_WITH UBE2I -SMAD4 REACTS_WITH VDR -SMAD4 REACTS_WITH ZBTB17 -SMAD4 REACTS_WITH ZFYVE16 -SMAD5 IN_SAME_COMPONENT SKI -SMAD5 IN_SAME_COMPONENT SMAD4 -SMAD5 IN_SAME_COMPONENT SMAD6 -SMAD5 IN_SAME_COMPONENT SMURF1 -SMAD5 REACTS_WITH SKI -SMAD5 REACTS_WITH SMAD4 -SMAD5 REACTS_WITH SMAD5 -SMAD5 REACTS_WITH SMAD6 -SMAD5 REACTS_WITH SMURF1 -SMAD6 CO_CONTROL BMPR2 -SMAD6 CO_CONTROL XIAP -SMAD6 IN_SAME_COMPONENT BMP7 -SMAD6 IN_SAME_COMPONENT BMPR2 -SMAD6 IN_SAME_COMPONENT MAP3K7 -SMAD6 IN_SAME_COMPONENT SMAD1 -SMAD6 IN_SAME_COMPONENT SMAD5 -SMAD6 IN_SAME_COMPONENT SMURF1 -SMAD6 REACTS_WITH BMP7 -SMAD6 REACTS_WITH BMPR2 -SMAD6 REACTS_WITH SMAD1 -SMAD6 REACTS_WITH SMAD4 -SMAD6 REACTS_WITH SMAD5 -SMAD6 REACTS_WITH SMAD6 -SMAD6 REACTS_WITH SMURF1 -SMAD6 STATE_CHANGE MAP3K7 -SMAD7 CO_CONTROL TGFBR1 -SMAD7 CO_CONTROL TGFBR2 -SMAD7 CO_CONTROL ZFYVE9 -SMAD7 IN_SAME_COMPONENT AXIN1 -SMAD7 IN_SAME_COMPONENT BMPR2 -SMAD7 IN_SAME_COMPONENT CAV1 -SMAD7 IN_SAME_COMPONENT HDAC1 -SMAD7 IN_SAME_COMPONENT NEDD4L -SMAD7 IN_SAME_COMPONENT PPP1CA -SMAD7 IN_SAME_COMPONENT PPP1R15A -SMAD7 IN_SAME_COMPONENT RNF111 -SMAD7 IN_SAME_COMPONENT SMURF1 -SMAD7 IN_SAME_COMPONENT STRAP -SMAD7 IN_SAME_COMPONENT TGFBR1 -SMAD7 IN_SAME_COMPONENT TGFBR2 -SMAD7 IN_SAME_COMPONENT WWP1 -SMAD7 IN_SAME_COMPONENT YAP1 -SMAD7 REACTS_WITH AXIN1 -SMAD7 REACTS_WITH BMPR2 -SMAD7 REACTS_WITH CAV1 -SMAD7 REACTS_WITH HDAC1 -SMAD7 REACTS_WITH NEDD4L -SMAD7 REACTS_WITH PPP1CA -SMAD7 REACTS_WITH PPP1R15A -SMAD7 REACTS_WITH RNF111 -SMAD7 REACTS_WITH SMAD1 -SMAD7 REACTS_WITH SMAD7 -SMAD7 REACTS_WITH SMURF1 -SMAD7 REACTS_WITH STRAP -SMAD7 REACTS_WITH TGFBR1 -SMAD7 REACTS_WITH TGFBR2 -SMAD7 REACTS_WITH WWP1 -SMAD7 REACTS_WITH YAP1 -SMAD7 REACTS_WITH ZFYVE9 -SMAD7 STATE_CHANGE ACVRL1 -SMAD7 STATE_CHANGE CTNNB1 -SMAD7 STATE_CHANGE MAP3K7 -SMAD7 STATE_CHANGE PPP1CA -SMAD7 STATE_CHANGE SMAD2 -SMAD7 STATE_CHANGE TGFB1 -SMAD7 STATE_CHANGE TGFBR1 -SMAD7 STATE_CHANGE TGFBR2 -SMAD7 STATE_CHANGE XIAP -SMAD9 IN_SAME_COMPONENT SMAD4 -SMAD9 REACTS_WITH SMAD4 -SMAD9 REACTS_WITH SMAD9 -SMARCA2 CO_CONTROL AR -SMARCA2 CO_CONTROL TFDP1 -SMARCA2 CO_CONTROL ZMIZ2 -SMARCA2 IN_SAME_COMPONENT CEBPA -SMARCA2 IN_SAME_COMPONENT E2F4 -SMARCA2 IN_SAME_COMPONENT RB1 -SMARCA2 IN_SAME_COMPONENT SMARCE1 -SMARCA2 METABOLIC_CATALYSIS KLK3 -SMARCA2 METABOLIC_CATALYSIS LECT2 -SMARCA2 METABOLIC_CATALYSIS MYC -SMARCA2 REACTS_WITH CDK2 -SMARCA2 REACTS_WITH CEBPA -SMARCA2 REACTS_WITH E2F4 -SMARCA2 REACTS_WITH RB1 -SMARCA2 REACTS_WITH SMARCA2 -SMARCA4 CO_CONTROL HDAC2 -SMARCA4 CO_CONTROL POU4F1 -SMARCA4 CO_CONTROL TADA2B -SMARCA4 CO_CONTROL TAF9 -SMARCA4 CO_CONTROL TP53 -SMARCA4 CO_CONTROL ZNF385A -SMARCA4 IN_SAME_COMPONENT SMARCB1 -SMARCA4 IN_SAME_COMPONENT SMARCC1 -SMARCA4 IN_SAME_COMPONENT SMARCC2 -SMARCA4 IN_SAME_COMPONENT SMARCD1 -SMARCA4 METABOLIC_CATALYSIS CDKN1A -SMARCA4 METABOLIC_CATALYSIS SGK1 -SMARCA4 REACTS_WITH CTNNB1 -SMARCA4 REACTS_WITH SMARCA4 -SMARCA4 REACTS_WITH SMARCC1 -SMARCA4 REACTS_WITH SMARCC2 -SMARCA4 REACTS_WITH SMARCD1 -SMARCA4 REACTS_WITH TCF7L1 -SMARCA4 REACTS_WITH TERT -SMARCAL1 IN_SAME_COMPONENT ATR -SMARCAL1 IN_SAME_COMPONENT ATRIP -SMARCAL1 IN_SAME_COMPONENT HUS1 -SMARCAL1 IN_SAME_COMPONENT RAD1 -SMARCAL1 IN_SAME_COMPONENT RAD17 -SMARCAL1 IN_SAME_COMPONENT RAD9A -SMARCAL1 IN_SAME_COMPONENT RFC2 -SMARCAL1 IN_SAME_COMPONENT RFC3 -SMARCAL1 IN_SAME_COMPONENT RFC4 -SMARCAL1 IN_SAME_COMPONENT RFC5 -SMARCAL1 IN_SAME_COMPONENT RPA1 -SMARCAL1 IN_SAME_COMPONENT RPA2 -SMARCAL1 IN_SAME_COMPONENT TOPBP1 -SMARCAL1 REACTS_WITH ATR -SMARCAL1 REACTS_WITH ATRIP -SMARCAL1 REACTS_WITH HUS1 -SMARCAL1 REACTS_WITH RAD1 -SMARCAL1 REACTS_WITH RAD17 -SMARCAL1 REACTS_WITH RAD9A -SMARCAL1 REACTS_WITH RFC2 -SMARCAL1 REACTS_WITH RFC3 -SMARCAL1 REACTS_WITH RFC4 -SMARCAL1 REACTS_WITH RFC5 -SMARCAL1 REACTS_WITH RPA1 -SMARCAL1 REACTS_WITH RPA2 -SMARCAL1 REACTS_WITH SMARCAL1 -SMARCAL1 REACTS_WITH TOPBP1 -SMARCB1 IN_SAME_COMPONENT SMARCA4 -SMARCB1 METABOLIC_CATALYSIS CDKN1A -SMARCC1 CO_CONTROL AR -SMARCC1 CO_CONTROL NCOA1 -SMARCC1 IN_SAME_COMPONENT SMARCA4 -SMARCC1 IN_SAME_COMPONENT SMARCC2 -SMARCC1 IN_SAME_COMPONENT SMARCD1 -SMARCC1 METABOLIC_CATALYSIS KLK3 -SMARCC1 METABOLIC_CATALYSIS SGK1 -SMARCC1 METABOLIC_CATALYSIS SMARCC1 -SMARCC1 REACTS_WITH SMARCA4 -SMARCC1 REACTS_WITH SMARCC1 -SMARCC1 REACTS_WITH SMARCC2 -SMARCC1 REACTS_WITH SMARCD1 -SMARCC2 IN_SAME_COMPONENT SMARCA4 -SMARCC2 IN_SAME_COMPONENT SMARCC1 -SMARCC2 IN_SAME_COMPONENT SMARCD1 -SMARCC2 METABOLIC_CATALYSIS SGK1 -SMARCC2 REACTS_WITH SMARCA4 -SMARCC2 REACTS_WITH SMARCC1 -SMARCC2 REACTS_WITH SMARCC2 -SMARCC2 REACTS_WITH SMARCD1 -SMARCD1 IN_SAME_COMPONENT SMARCA4 -SMARCD1 IN_SAME_COMPONENT SMARCC1 -SMARCD1 IN_SAME_COMPONENT SMARCC2 -SMARCD1 METABOLIC_CATALYSIS SGK1 -SMARCD1 REACTS_WITH SMARCA4 -SMARCD1 REACTS_WITH SMARCC1 -SMARCD1 REACTS_WITH SMARCC2 -SMARCD1 REACTS_WITH SMARCD1 -SMARCE1 CO_CONTROL AR -SMARCE1 CO_CONTROL ZMIZ2 -SMARCE1 IN_SAME_COMPONENT SMARCA2 -SMARCE1 METABOLIC_CATALYSIS KLK3 -SMC2 IN_SAME_COMPONENT NCAPD2 -SMC2 IN_SAME_COMPONENT NCAPG -SMC2 IN_SAME_COMPONENT NCAPH -SMC2 IN_SAME_COMPONENT SMC4 -SMC2 REACTS_WITH NCAPD2 -SMC2 REACTS_WITH NCAPG -SMC2 REACTS_WITH NCAPH -SMC2 REACTS_WITH SMC2 -SMC2 REACTS_WITH SMC4 -SMC4 IN_SAME_COMPONENT NCAPD2 -SMC4 IN_SAME_COMPONENT NCAPG -SMC4 IN_SAME_COMPONENT NCAPH -SMC4 IN_SAME_COMPONENT SMC2 -SMC4 REACTS_WITH NCAPD2 -SMC4 REACTS_WITH NCAPG -SMC4 REACTS_WITH NCAPH -SMC4 REACTS_WITH SMC2 -SMC4 REACTS_WITH SMC4 -SMG5 IN_SAME_COMPONENT DKC1 -SMG5 IN_SAME_COMPONENT HDAC8 -SMG5 IN_SAME_COMPONENT HSP90AA1 -SMG5 IN_SAME_COMPONENT PTGES3 -SMG5 IN_SAME_COMPONENT TERT -SMG5 REACTS_WITH DKC1 -SMG5 REACTS_WITH HDAC8 -SMG5 REACTS_WITH HSP90AA1 -SMG5 REACTS_WITH PTGES3 -SMG5 REACTS_WITH SMG5 -SMG5 REACTS_WITH TERT -SMG6 IN_SAME_COMPONENT DKC1 -SMG6 IN_SAME_COMPONENT HSP90AA1 -SMG6 IN_SAME_COMPONENT PTGES3 -SMG6 IN_SAME_COMPONENT TERT -SMG6 REACTS_WITH DKC1 -SMG6 REACTS_WITH HSP90AA1 -SMG6 REACTS_WITH PTGES3 -SMG6 REACTS_WITH SMG6 -SMG6 REACTS_WITH TERT -SMO CO_CONTROL HDAC1 -SMO CO_CONTROL HDAC2 -SMO CO_CONTROL PRKACA -SMO CO_CONTROL RAB23 -SMO CO_CONTROL RBBP4 -SMO CO_CONTROL RBBP7 -SMO CO_CONTROL SAP18 -SMO CO_CONTROL SAP30 -SMO CO_CONTROL SIN3A -SMO CO_CONTROL SIN3B -SMO CO_CONTROL STK36 -SMO CO_CONTROL SUFU -SMO IN_SAME_COMPONENT ARRB2 -SMO METABOLIC_CATALYSIS GLI2 -SMO METABOLIC_CATALYSIS GLI3 -SMO REACTS_WITH ARRB2 -SMO REACTS_WITH SMO -SMO STATE_CHANGE AKT1 -SMO STATE_CHANGE GLI1 -SMO STATE_CHANGE GLI2 -SMO STATE_CHANGE GLI3 -SMO STATE_CHANGE GNG2 -SMO STATE_CHANGE SUFU -SMPD1 CO_CONTROL EGF -SMPD1 CO_CONTROL SGMS1 -SMPD2 IN_SAME_COMPONENT NSMAF -SMPD2 IN_SAME_COMPONENT TNF -SMPD2 IN_SAME_COMPONENT TNFRSF1A -SMPD2 REACTS_WITH NSMAF -SMPD2 REACTS_WITH SMPD2 -SMPD2 REACTS_WITH TNF -SMPD2 REACTS_WITH TNFRSF1A -SMPD3 CO_CONTROL EGF -SMURF1 CO_CONTROL NUP214 -SMURF1 IN_SAME_COMPONENT BMP7 -SMURF1 IN_SAME_COMPONENT BMPR2 -SMURF1 IN_SAME_COMPONENT OCLN -SMURF1 IN_SAME_COMPONENT PARD6A -SMURF1 IN_SAME_COMPONENT SMAD1 -SMURF1 IN_SAME_COMPONENT SMAD5 -SMURF1 IN_SAME_COMPONENT SMAD6 -SMURF1 IN_SAME_COMPONENT SMAD7 -SMURF1 IN_SAME_COMPONENT TGFBR1 -SMURF1 IN_SAME_COMPONENT TGFBR2 -SMURF1 REACTS_WITH BMP7 -SMURF1 REACTS_WITH BMPR2 -SMURF1 REACTS_WITH OCLN -SMURF1 REACTS_WITH PARD6A -SMURF1 REACTS_WITH SMAD1 -SMURF1 REACTS_WITH SMAD5 -SMURF1 REACTS_WITH SMAD6 -SMURF1 REACTS_WITH SMAD7 -SMURF1 REACTS_WITH SMURF1 -SMURF1 REACTS_WITH TGFBR1 -SMURF1 REACTS_WITH TGFBR2 -SMURF1 STATE_CHANGE HDAC1 -SMURF1 STATE_CHANGE SMAD1 -SMURF1 STATE_CHANGE SMAD4 -SMURF1 STATE_CHANGE SMAD7 -SMURF2 IN_SAME_COMPONENT SMAD1 -SMURF2 IN_SAME_COMPONENT SMAD2 -SMURF2 REACTS_WITH DYNLRB1 -SMURF2 REACTS_WITH SMAD1 -SMURF2 REACTS_WITH SMAD2 -SMURF2 REACTS_WITH SMURF2 -SMURF2 REACTS_WITH TGFBR1 -SMURF2 REACTS_WITH TGFBR2 -SMYD2 CO_CONTROL TP53 -SMYD2 STATE_CHANGE TP53 -SNAI1 METABOLIC_CATALYSIS EGR1 -SNAI2 CO_CONTROL SP1 -SNAI2 CO_CONTROL TADA2B -SNAI2 CO_CONTROL TAF9 -SNAI2 CO_CONTROL TP53 -SNAI2 METABOLIC_CATALYSIS BBC3 -SNCA IN_SAME_COMPONENT BAD -SNCA IN_SAME_COMPONENT PARK7 -SNCA IN_SAME_COMPONENT PLCB2 -SNCA IN_SAME_COMPONENT PLD1 -SNCA IN_SAME_COMPONENT PLD2 -SNCA IN_SAME_COMPONENT PRKCD -SNCA IN_SAME_COMPONENT SLC6A3 -SNCA IN_SAME_COMPONENT SNCAIP -SNCA IN_SAME_COMPONENT STUB1 -SNCA IN_SAME_COMPONENT TOR1A -SNCAIP IN_SAME_COMPONENT SNCA -SNCAIP REACTS_WITH SNCA -SNCAIP REACTS_WITH SNCAIP -SNCA METABOLIC_CATALYSIS SNCA -SNCA REACTS_WITH BAD -SNCA REACTS_WITH PARK7 -SNCA REACTS_WITH PLCB2 -SNCA REACTS_WITH PLD1 -SNCA REACTS_WITH PLD2 -SNCA REACTS_WITH PRKCD -SNCA REACTS_WITH SLC6A3 -SNCA REACTS_WITH SNCA -SNCA REACTS_WITH SNCAIP -SNCA REACTS_WITH STUB1 -SNCA REACTS_WITH TOR1A -SNCA STATE_CHANGE PPP2R5D -SNCA STATE_CHANGE SNCA -SNCA STATE_CHANGE SNCAIP -SND1 IN_SAME_COMPONENT MYB -SND1 IN_SAME_COMPONENT PIM1 -SND1 METABOLIC_CATALYSIS LECT2 -SND1 REACTS_WITH MYB -SND1 REACTS_WITH PIM1 -SND1 REACTS_WITH SND1 -SNIP1 CO_CONTROL CITED1 -SNIP1 STATE_CHANGE SMAD2 -SNIP1 STATE_CHANGE SMAD4 -SNTA1 IN_SAME_COMPONENT MAPK12 -SNTA1 REACTS_WITH MAPK12 -SNTA1 REACTS_WITH SNTA1 -SNURF IN_SAME_COMPONENT AR -SNURF REACTS_WITH AR -SNURF REACTS_WITH SNURF -SNX1 CO_CONTROL SNX1 -SNX1 CO_CONTROL SNX2 -SNX1 IN_SAME_COMPONENT SNX2 -SNX1 STATE_CHANGE CDH1 -SNX1 STATE_CHANGE CTNNB1 -SNX1 STATE_CHANGE CTNND1 -SNX1 STATE_CHANGE F2R -SNX2 CO_CONTROL SNX1 -SNX2 IN_SAME_COMPONENT SNX1 -SNX2 STATE_CHANGE F2R -SOCS1 IN_SAME_COMPONENT IFNG -SOCS1 IN_SAME_COMPONENT IFNGR1 -SOCS1 IN_SAME_COMPONENT IL12A -SOCS1 IN_SAME_COMPONENT IL12B -SOCS1 IN_SAME_COMPONENT IL12RB1 -SOCS1 IN_SAME_COMPONENT IL12RB2 -SOCS1 IN_SAME_COMPONENT IL2RB -SOCS1 IN_SAME_COMPONENT IL2RG -SOCS1 IN_SAME_COMPONENT JAK1 -SOCS1 IN_SAME_COMPONENT JAK2 -SOCS1 IN_SAME_COMPONENT JAK3 -SOCS1 IN_SAME_COMPONENT LCK -SOCS1 IN_SAME_COMPONENT TYK2 -SOCS1 IN_SAME_COMPONENT VAV1 -SOCS1 REACTS_WITH IFNG -SOCS1 REACTS_WITH IFNGR1 -SOCS1 REACTS_WITH IL12A -SOCS1 REACTS_WITH IL12B -SOCS1 REACTS_WITH IL12RB1 -SOCS1 REACTS_WITH IL12RB2 -SOCS1 REACTS_WITH JAK1 -SOCS1 REACTS_WITH JAK2 -SOCS1 REACTS_WITH SOCS1 -SOCS1 REACTS_WITH TYK2 -SOCS1 REACTS_WITH VAV1 -SOCS1 STATE_CHANGE HRAS -SOCS1 STATE_CHANGE IL13RA1 -SOCS1 STATE_CHANGE IL2 -SOCS1 STATE_CHANGE IL2RA -SOCS1 STATE_CHANGE IL2RB -SOCS1 STATE_CHANGE IL2RG -SOCS1 STATE_CHANGE IL4 -SOCS1 STATE_CHANGE IL4R -SOCS1 STATE_CHANGE JAK1 -SOCS1 STATE_CHANGE JAK2 -SOCS1 STATE_CHANGE JAK3 -SOCS1 STATE_CHANGE LCK -SOCS2 IN_SAME_COMPONENT IL2RB -SOCS2 IN_SAME_COMPONENT JAK1 -SOCS2 IN_SAME_COMPONENT LCK -SOCS2 IN_SAME_COMPONENT SOCS3 -SOCS2 REACTS_WITH IL2RB -SOCS2 REACTS_WITH JAK1 -SOCS2 REACTS_WITH LCK -SOCS2 REACTS_WITH SOCS2 -SOCS2 REACTS_WITH SOCS3 -SOCS3 CO_CONTROL IL6 -SOCS3 CO_CONTROL IL6R -SOCS3 CO_CONTROL IL6ST -SOCS3 CO_CONTROL JAK1 -SOCS3 CO_CONTROL PRKCD -SOCS3 IN_SAME_COMPONENT EPO -SOCS3 IN_SAME_COMPONENT EPOR -SOCS3 IN_SAME_COMPONENT IL12B -SOCS3 IN_SAME_COMPONENT IL12RB1 -SOCS3 IN_SAME_COMPONENT IL23A -SOCS3 IN_SAME_COMPONENT IL23R -SOCS3 IN_SAME_COMPONENT IL2RB -SOCS3 IN_SAME_COMPONENT IL6 -SOCS3 IN_SAME_COMPONENT IL6R -SOCS3 IN_SAME_COMPONENT IL6ST -SOCS3 IN_SAME_COMPONENT JAK1 -SOCS3 IN_SAME_COMPONENT JAK2 -SOCS3 IN_SAME_COMPONENT LCK -SOCS3 IN_SAME_COMPONENT RASA1 -SOCS3 IN_SAME_COMPONENT SOCS2 -SOCS3 IN_SAME_COMPONENT TYK2 -SOCS3 REACTS_WITH EPO -SOCS3 REACTS_WITH EPOR -SOCS3 REACTS_WITH IL12B -SOCS3 REACTS_WITH IL12RB1 -SOCS3 REACTS_WITH IL23A -SOCS3 REACTS_WITH IL23R -SOCS3 REACTS_WITH IL2RB -SOCS3 REACTS_WITH IL6 -SOCS3 REACTS_WITH IL6R -SOCS3 REACTS_WITH IL6ST -SOCS3 REACTS_WITH JAK1 -SOCS3 REACTS_WITH JAK2 -SOCS3 REACTS_WITH LCK -SOCS3 REACTS_WITH RASA1 -SOCS3 REACTS_WITH SOCS2 -SOCS3 REACTS_WITH SOCS3 -SOCS3 REACTS_WITH TYK2 -SOCS3 STATE_CHANGE IKZF3 -SOCS3 STATE_CHANGE IL2 -SOCS3 STATE_CHANGE IL2RA -SOCS3 STATE_CHANGE IL2RB -SOCS3 STATE_CHANGE IL2RG -SOCS3 STATE_CHANGE JAK1 -SOCS3 STATE_CHANGE JAK2 -SOCS3 STATE_CHANGE JAK3 -SOCS3 STATE_CHANGE LCK -SOCS3 STATE_CHANGE LEP -SOCS3 STATE_CHANGE LEPR -SOCS3 STATE_CHANGE PTPN11 -SOCS3 STATE_CHANGE STAT1 -SOCS3 STATE_CHANGE STAT3 -SOCS5 STATE_CHANGE IL2RG -SOCS5 STATE_CHANGE IL4 -SOCS5 STATE_CHANGE IL4R -SOCS5 STATE_CHANGE JAK1 -SOCS5 STATE_CHANGE JAK3 -SORBS1 IN_SAME_COMPONENT CBL -SORBS1 IN_SAME_COMPONENT RAPGEF1 -SORBS1 IN_SAME_COMPONENT SH2B2 -SORBS1 REACTS_WITH CBL -SORBS1 REACTS_WITH RAPGEF1 -SORBS1 REACTS_WITH SH2B2 -SORBS1 REACTS_WITH SORBS1 -SORBS1 STATE_CHANGE RHOQ -SORT1 IN_SAME_COMPONENT BDNF -SORT1 IN_SAME_COMPONENT MAGED1 -SORT1 IN_SAME_COMPONENT MAGEH1 -SORT1 IN_SAME_COMPONENT NDN -SORT1 IN_SAME_COMPONENT NDNL2 -SORT1 IN_SAME_COMPONENT NGF -SORT1 IN_SAME_COMPONENT NGFR -SORT1 IN_SAME_COMPONENT NGFRAP1 -SORT1 IN_SAME_COMPONENT TRAF6 -SORT1 IN_SAME_COMPONENT YWHAE -SORT1 IN_SAME_COMPONENT ZNF274 -SORT1 REACTS_WITH BDNF -SORT1 REACTS_WITH E2F1 -SORT1 REACTS_WITH MAGED1 -SORT1 REACTS_WITH MAGEH1 -SORT1 REACTS_WITH NDN -SORT1 REACTS_WITH NDNL2 -SORT1 REACTS_WITH NGF -SORT1 REACTS_WITH NGFR -SORT1 REACTS_WITH NGFRAP1 -SORT1 REACTS_WITH SORT1 -SORT1 REACTS_WITH TRAF6 -SORT1 REACTS_WITH YWHAE -SORT1 REACTS_WITH ZNF274 -SORT1 STATE_CHANGE CASP6 -SORT1 STATE_CHANGE CYCS -SORT1 STATE_CHANGE PRDM4 -SORT1 STATE_CHANGE SMPD2 -SORT1 STATE_CHANGE TP53 -SOS1 CO_CONTROL DOK1 -SOS1 CO_CONTROL FOXO1 -SOS1 CO_CONTROL GAB2 -SOS1 CO_CONTROL GRB10 -SOS1 CO_CONTROL IL17RD -SOS1 CO_CONTROL INPP5D -SOS1 CO_CONTROL INS -SOS1 CO_CONTROL INSR -SOS1 CO_CONTROL RASA1 -SOS1 CO_CONTROL SHC1 -SOS1 CO_CONTROL STAT3 -SOS1 IN_SAME_COMPONENT ABI1 -SOS1 IN_SAME_COMPONENT CBL -SOS1 IN_SAME_COMPONENT CSF2 -SOS1 IN_SAME_COMPONENT CSF2RA -SOS1 IN_SAME_COMPONENT CSF2RB -SOS1 IN_SAME_COMPONENT EGF -SOS1 IN_SAME_COMPONENT EGFR -SOS1 IN_SAME_COMPONENT EPS8 -SOS1 IN_SAME_COMPONENT ERBB2 -SOS1 IN_SAME_COMPONENT ERBB3 -SOS1 IN_SAME_COMPONENT ESR1 -SOS1 IN_SAME_COMPONENT FRS2 -SOS1 IN_SAME_COMPONENT GAB1 -SOS1 IN_SAME_COMPONENT GAB2 -SOS1 IN_SAME_COMPONENT GDNF -SOS1 IN_SAME_COMPONENT GFRA1 -SOS1 IN_SAME_COMPONENT HGF -SOS1 IN_SAME_COMPONENT IGF1 -SOS1 IN_SAME_COMPONENT IGF1R -SOS1 IN_SAME_COMPONENT IL2 -SOS1 IN_SAME_COMPONENT IL2RA -SOS1 IN_SAME_COMPONENT IL2RB -SOS1 IN_SAME_COMPONENT IL2RG -SOS1 IN_SAME_COMPONENT INS -SOS1 IN_SAME_COMPONENT INSR -SOS1 IN_SAME_COMPONENT IRS1 -SOS1 IN_SAME_COMPONENT JAK1 -SOS1 IN_SAME_COMPONENT JAK2 -SOS1 IN_SAME_COMPONENT JAK3 -SOS1 IN_SAME_COMPONENT LCK -SOS1 IN_SAME_COMPONENT MET -SOS1 IN_SAME_COMPONENT PDGFB -SOS1 IN_SAME_COMPONENT PDGFRB -SOS1 IN_SAME_COMPONENT PELP1 -SOS1 IN_SAME_COMPONENT PIK3CA -SOS1 IN_SAME_COMPONENT PIK3R1 -SOS1 IN_SAME_COMPONENT PTPN11 -SOS1 IN_SAME_COMPONENT RANBP9 -SOS1 IN_SAME_COMPONENT SDC2 -SOS1 IN_SAME_COMPONENT SHC1 -SOS1 IN_SAME_COMPONENT SRC -SOS1 METABOLIC_CATALYSIS A2M -SOS1 METABOLIC_CATALYSIS CCND3 -SOS1 REACTS_WITH ABI1 -SOS1 REACTS_WITH CBL -SOS1 REACTS_WITH CSF2 -SOS1 REACTS_WITH CSF2RA -SOS1 REACTS_WITH CSF2RB -SOS1 REACTS_WITH EGF -SOS1 REACTS_WITH EGFR -SOS1 REACTS_WITH EPS8 -SOS1 REACTS_WITH ERBB2 -SOS1 REACTS_WITH ERBB3 -SOS1 REACTS_WITH ESR1 -SOS1 REACTS_WITH FRS2 -SOS1 REACTS_WITH GAB1 -SOS1 REACTS_WITH GAB2 -SOS1 REACTS_WITH GDNF -SOS1 REACTS_WITH GFRA1 -SOS1 REACTS_WITH HGF -SOS1 REACTS_WITH IGF1 -SOS1 REACTS_WITH IGF1R -SOS1 REACTS_WITH IL2 -SOS1 REACTS_WITH IL2RA -SOS1 REACTS_WITH IL2RB -SOS1 REACTS_WITH IL2RG -SOS1 REACTS_WITH INS -SOS1 REACTS_WITH INSR -SOS1 REACTS_WITH IRS1 -SOS1 REACTS_WITH JAK1 -SOS1 REACTS_WITH JAK2 -SOS1 REACTS_WITH JAK3 -SOS1 REACTS_WITH LCK -SOS1 REACTS_WITH MET -SOS1 REACTS_WITH PDGFB -SOS1 REACTS_WITH PDGFRB -SOS1 REACTS_WITH PELP1 -SOS1 REACTS_WITH PIK3CA -SOS1 REACTS_WITH PIK3R1 -SOS1 REACTS_WITH PTPN11 -SOS1 REACTS_WITH RANBP10 -SOS1 REACTS_WITH RANBP9 -SOS1 REACTS_WITH SDC2 -SOS1 REACTS_WITH SHC1 -SOS1 REACTS_WITH SOS1 -SOS1 REACTS_WITH SPRY2 -SOS1 REACTS_WITH SRC -SOS1 REACTS_WITH USP6NL -SOS1 STATE_CHANGE AKT1 -SOS1 STATE_CHANGE CREB1 -SOS1 STATE_CHANGE DOK1 -SOS1 STATE_CHANGE HRAS -SOS1 STATE_CHANGE IKZF3 -SOS1 STATE_CHANGE MAP2K1 -SOS1 STATE_CHANGE MTOR -SOS1 STATE_CHANGE PRKCD -SOS1 STATE_CHANGE PRKCZ -SOS1 STATE_CHANGE PRKD1 -SOS1 STATE_CHANGE RAC1 -SOS1 STATE_CHANGE RRAS -SOS1 STATE_CHANGE SGMS1 -SOS1 STATE_CHANGE SMPD1 -SOS1 STATE_CHANGE UGCG -SOSTDC1 IN_SAME_COMPONENT BMP7 -SOSTDC1 REACTS_WITH BAMBI -SOSTDC1 REACTS_WITH BMP7 -SOSTDC1 REACTS_WITH BMPR2 -SOSTDC1 REACTS_WITH SOSTDC1 -SP1 CO_CONTROL ARNT -SP1 CO_CONTROL CREB1 -SP1 CO_CONTROL E2F1 -SP1 CO_CONTROL E2F4 -SP1 CO_CONTROL E2F6 -SP1 CO_CONTROL ESR1 -SP1 CO_CONTROL FOS -SP1 CO_CONTROL FOXA1 -SP1 CO_CONTROL FOXA2 -SP1 CO_CONTROL HBP1 -SP1 CO_CONTROL HDAC1 -SP1 CO_CONTROL HIF1A -SP1 CO_CONTROL HNF1A -SP1 CO_CONTROL JMY -SP1 CO_CONTROL JUN -SP1 CO_CONTROL MAX -SP1 CO_CONTROL MYC -SP1 CO_CONTROL NR2F2 -SP1 CO_CONTROL POU2F1 -SP1 CO_CONTROL POU4F1 -SP1 CO_CONTROL POU4F2 -SP1 CO_CONTROL SIRT1 -SP1 CO_CONTROL SMAD4 -SP1 CO_CONTROL SNAI2 -SP1 CO_CONTROL SP1 -SP1 CO_CONTROL STAT6 -SP1 CO_CONTROL TADA2B -SP1 CO_CONTROL TAF9 -SP1 CO_CONTROL TBP -SP1 CO_CONTROL TFDP1 -SP1 CO_CONTROL TFDP2 -SP1 CO_CONTROL TP53 -SP1 CO_CONTROL ZBTB17 -SP1 IN_SAME_COMPONENT ARNT -SP1 IN_SAME_COMPONENT EP300 -SP1 IN_SAME_COMPONENT FOSL1 -SP1 IN_SAME_COMPONENT HDAC2 -SP1 IN_SAME_COMPONENT HIF1A -SP1 IN_SAME_COMPONENT JUNB -SP1 IN_SAME_COMPONENT JUND -SP1 IN_SAME_COMPONENT SMAD4 -SP1 IN_SAME_COMPONENT TP53 -SP1 IN_SAME_COMPONENT ZBTB17 -SP1 METABOLIC_CATALYSIS ABCB1 -SP1 METABOLIC_CATALYSIS APC -SP1 METABOLIC_CATALYSIS APOB -SP1 METABOLIC_CATALYSIS BAX -SP1 METABOLIC_CATALYSIS BBC3 -SP1 METABOLIC_CATALYSIS CAV1 -SP1 METABOLIC_CATALYSIS CCNB1 -SP1 METABOLIC_CATALYSIS CCND2 -SP1 METABOLIC_CATALYSIS CDKN1A -SP1 METABOLIC_CATALYSIS CDKN2B -SP1 METABOLIC_CATALYSIS CDKN2C -SP1 METABOLIC_CATALYSIS CEBPD -SP1 METABOLIC_CATALYSIS COL1A2 -SP1 METABOLIC_CATALYSIS DHFR -SP1 METABOLIC_CATALYSIS E2F1 -SP1 METABOLIC_CATALYSIS ENG -SP1 METABOLIC_CATALYSIS HMGCS2 -SP1 METABOLIC_CATALYSIS IVL -SP1 METABOLIC_CATALYSIS MAT2A -SP1 METABOLIC_CATALYSIS MMP14 -SP1 METABOLIC_CATALYSIS MT2A -SP1 METABOLIC_CATALYSIS MYC -SP1 METABOLIC_CATALYSIS PDX1 -SP1 METABOLIC_CATALYSIS RANBP1 -SP1 METABOLIC_CATALYSIS SMAD7 -SP1 METABOLIC_CATALYSIS TERT -SP1 METABOLIC_CATALYSIS TK1 -SP1 REACTS_WITH ARNT -SP1 REACTS_WITH EP300 -SP1 REACTS_WITH FOSL1 -SP1 REACTS_WITH HIF1A -SP1 REACTS_WITH JUNB -SP1 REACTS_WITH JUND -SP1 REACTS_WITH SMAD4 -SP1 REACTS_WITH SP1 -SP1 REACTS_WITH TP53 -SP1 REACTS_WITH ZBTB17 -SP3 IN_SAME_COMPONENT HDAC2 -SP3 METABOLIC_CATALYSIS TERT -SPAG9 METABOLIC_CATALYSIS KLC1 -SPAG9 REACTS_WITH KLC1 -SPAG9 REACTS_WITH SPAG9 -SPAG9 STATE_CHANGE SPAG9 -SPATA13 IN_SAME_COMPONENT APC -SPATA13 STATE_CHANGE CDC42 -SPATA13 STATE_CHANGE RAC1 -SPC24 IN_SAME_COMPONENT NDC80 -SPDEF CO_CONTROL AR -SPDEF METABOLIC_CATALYSIS KLK3 -SPEN CO_CONTROL EP300 -SPEN CO_CONTROL NOTCH1 -SPEN CO_CONTROL RBPJ -SPEN IN_SAME_COMPONENT CTBP1 -SPEN IN_SAME_COMPONENT KDM1A -SPEN IN_SAME_COMPONENT RBBP8 -SPEN IN_SAME_COMPONENT RBPJ -SPEN METABOLIC_CATALYSIS HES1 -SPEN METABOLIC_CATALYSIS HEY1 -SPEN REACTS_WITH CTBP1 -SPEN REACTS_WITH EP300 -SPEN REACTS_WITH KDM1A -SPEN REACTS_WITH NOTCH1 -SPEN REACTS_WITH RBBP8 -SPEN REACTS_WITH RBPJ -SPEN REACTS_WITH SPEN -SPHK1 IN_SAME_COMPONENT ITGAV -SPHK1 IN_SAME_COMPONENT ITGB3 -SPHK1 IN_SAME_COMPONENT PECAM1 -SPHK1 REACTS_WITH ITGAV -SPHK1 REACTS_WITH ITGB3 -SPHK1 REACTS_WITH PECAM1 -SPHK1 REACTS_WITH SPHK1 -SPHK2 IN_SAME_COMPONENT IL12A -SPHK2 IN_SAME_COMPONENT IL12B -SPHK2 IN_SAME_COMPONENT IL12RB1 -SPHK2 IN_SAME_COMPONENT IL12RB2 -SPHK2 IN_SAME_COMPONENT JAK2 -SPHK2 IN_SAME_COMPONENT TYK2 -SPHK2 REACTS_WITH IL12A -SPHK2 REACTS_WITH IL12B -SPHK2 REACTS_WITH IL12RB1 -SPHK2 REACTS_WITH IL12RB2 -SPHK2 REACTS_WITH JAK2 -SPHK2 REACTS_WITH SPHK2 -SPHK2 REACTS_WITH TYK2 -SPHK2 STATE_CHANGE STAT4 -SPI1 CO_CONTROL CEBPB -SPI1 CO_CONTROL IRF8 -SPI1 CO_CONTROL STAT6 -SPI1 CO_CONTROL ZBTB17 -SPI1 IN_SAME_COMPONENT GSC -SPI1 IN_SAME_COMPONENT RB1 -SPI1 IN_SAME_COMPONENT TBP -SPI1 IN_SAME_COMPONENT TFDP1 -SPI1 METABOLIC_CATALYSIS ARG1 -SPI1 METABOLIC_CATALYSIS CSF1R -SPI1 METABOLIC_CATALYSIS ELANE -SPI1 METABOLIC_CATALYSIS LYZ -SPI1 METABOLIC_CATALYSIS PRTN3 -SPI1 METABOLIC_CATALYSIS SLC11A1 -SPI1 REACTS_WITH GSC -SPI1 REACTS_WITH RB1 -SPI1 REACTS_WITH SPI1 -SPI1 REACTS_WITH TBP -SPI1 REACTS_WITH TFDP1 -SPON2 IN_SAME_COMPONENT ITGAM -SPON2 IN_SAME_COMPONENT ITGB2 -SPON2 REACTS_WITH ITGAM -SPON2 REACTS_WITH ITGB2 -SPON2 REACTS_WITH SPON2 -SPOP IN_SAME_COMPONENT GLI2 -SPOP IN_SAME_COMPONENT GLI3 -SPOP REACTS_WITH GLI2 -SPOP REACTS_WITH GLI3 -SPOP REACTS_WITH SPOP -SPP1 CO_CONTROL SYK -SPP1 IN_SAME_COMPONENT ITGA4 -SPP1 IN_SAME_COMPONENT ITGA8 -SPP1 IN_SAME_COMPONENT ITGA9 -SPP1 IN_SAME_COMPONENT ITGAV -SPP1 IN_SAME_COMPONENT ITGB1 -SPP1 IN_SAME_COMPONENT ITGB3 -SPP1 METABOLIC_CATALYSIS ILK -SPP1 REACTS_WITH ITGA4 -SPP1 REACTS_WITH ITGA8 -SPP1 REACTS_WITH ITGA9 -SPP1 REACTS_WITH ITGAV -SPP1 REACTS_WITH ITGB1 -SPP1 REACTS_WITH ITGB3 -SPP1 REACTS_WITH SPP1 -SPP1 STATE_CHANGE BCAR1 -SPP1 STATE_CHANGE MAP3K1 -SPP1 STATE_CHANGE MAP3K14 -SPP1 STATE_CHANGE PTK2B -SPP1 STATE_CHANGE SYK -SPRED1 IN_SAME_COMPONENT HRAS -SPRED1 REACTS_WITH HRAS -SPRED1 REACTS_WITH SPRED1 -SPRED2 IN_SAME_COMPONENT HRAS -SPRED2 REACTS_WITH HRAS -SPRED2 REACTS_WITH SPRED2 -SPRY2 IN_SAME_COMPONENT CBL -SPRY2 IN_SAME_COMPONENT FRS2 -SPRY2 IN_SAME_COMPONENT SDC2 -SPRY2 REACTS_WITH CBL -SPRY2 REACTS_WITH FRS2 -SPRY2 REACTS_WITH SDC2 -SPRY2 REACTS_WITH SHC1 -SPRY2 REACTS_WITH SOS1 -SPRY2 REACTS_WITH SPRY2 -SPRY2 STATE_CHANGE PTPN1 -SPTBN1 REACTS_WITH SPTBN1 -SQSTM1 IN_SAME_COMPONENT IRAK1 -SQSTM1 IN_SAME_COMPONENT NGF -SQSTM1 IN_SAME_COMPONENT NGFR -SQSTM1 IN_SAME_COMPONENT RIPK1 -SQSTM1 IN_SAME_COMPONENT RIPK2 -SQSTM1 IN_SAME_COMPONENT TNF -SQSTM1 IN_SAME_COMPONENT TNFRSF1A -SQSTM1 IN_SAME_COMPONENT TRADD -SQSTM1 IN_SAME_COMPONENT TRAF2 -SQSTM1 IN_SAME_COMPONENT TRAF6 -SQSTM1 REACTS_WITH IRAK1 -SQSTM1 REACTS_WITH NGF -SQSTM1 REACTS_WITH NGFR -SQSTM1 REACTS_WITH RIPK1 -SQSTM1 REACTS_WITH RIPK2 -SQSTM1 REACTS_WITH SQSTM1 -SQSTM1 REACTS_WITH TNF -SQSTM1 REACTS_WITH TNFRSF1A -SQSTM1 REACTS_WITH TRADD -SQSTM1 REACTS_WITH TRAF2 -SQSTM1 REACTS_WITH TRAF6 -SQSTM1 STATE_CHANGE CHUK -SQSTM1 STATE_CHANGE ERC1 -SQSTM1 STATE_CHANGE IKBKB -SQSTM1 STATE_CHANGE IKBKG -SQSTM1 STATE_CHANGE NFKB1 -SQSTM1 STATE_CHANGE RELA -SRC CO_CONTROL AR -SRC CO_CONTROL ATR -SRC CO_CONTROL CARM1 -SRC CO_CONTROL CXCR4 -SRC CO_CONTROL FYN -SRC CO_CONTROL GAB1 -SRC CO_CONTROL HGF -SRC CO_CONTROL JAK2 -SRC CO_CONTROL MET -SRC CO_CONTROL NCOA2 -SRC CO_CONTROL PIK3CA -SRC CO_CONTROL PIK3R1 -SRC CO_CONTROL PLCG1 -SRC CO_CONTROL PTPN11 -SRC CO_CONTROL STAT3 -SRC IN_SAME_COMPONENT AR -SRC IN_SAME_COMPONENT BCAR1 -SRC IN_SAME_COMPONENT CRK -SRC IN_SAME_COMPONENT CTTN -SRC IN_SAME_COMPONENT EFNA1 -SRC IN_SAME_COMPONENT EPHA2 -SRC IN_SAME_COMPONENT EPHB1 -SRC IN_SAME_COMPONENT ESR1 -SRC IN_SAME_COMPONENT FAS -SRC IN_SAME_COMPONENT FASLG -SRC IN_SAME_COMPONENT HSP90AA1 -SRC IN_SAME_COMPONENT KDR -SRC IN_SAME_COMPONENT PDPK1 -SRC IN_SAME_COMPONENT PELP1 -SRC IN_SAME_COMPONENT PIK3CA -SRC IN_SAME_COMPONENT PIK3R1 -SRC IN_SAME_COMPONENT PTK2B -SRC IN_SAME_COMPONENT PTPN21 -SRC IN_SAME_COMPONENT PXN -SRC IN_SAME_COMPONENT RASA1 -SRC IN_SAME_COMPONENT SDC2 -SRC IN_SAME_COMPONENT SDC3 -SRC IN_SAME_COMPONENT SHB -SRC IN_SAME_COMPONENT SOS1 -SRC IN_SAME_COMPONENT SYK -SRC IN_SAME_COMPONENT VEGFA -SRC METABOLIC_CATALYSIS KLK2 -SRC METABOLIC_CATALYSIS KLK3 -SRC REACTS_WITH AR -SRC REACTS_WITH BCAR1 -SRC REACTS_WITH CRK -SRC REACTS_WITH CTTN -SRC REACTS_WITH EFNA1 -SRC REACTS_WITH EPHA2 -SRC REACTS_WITH EPHB1 -SRC REACTS_WITH ESR1 -SRC REACTS_WITH FAS -SRC REACTS_WITH FASLG -SRC REACTS_WITH KDR -SRC REACTS_WITH PELP1 -SRC REACTS_WITH PIK3CA -SRC REACTS_WITH PIK3R1 -SRC REACTS_WITH PTK2B -SRC REACTS_WITH PTPN21 -SRC REACTS_WITH PXN -SRC REACTS_WITH RASA1 -SRC REACTS_WITH SDC2 -SRC REACTS_WITH SDC3 -SRC REACTS_WITH SHB -SRC REACTS_WITH SOS1 -SRC REACTS_WITH SRC -SRC REACTS_WITH SYK -SRC REACTS_WITH VEGFA -SRC STATE_CHANGE AKT1 -SRC STATE_CHANGE BCAR1 -SRC STATE_CHANGE CAV1 -SRC STATE_CHANGE CDH1 -SRC STATE_CHANGE CRK -SRC STATE_CHANGE CTNNA1 -SRC STATE_CHANGE CTNNB1 -SRC STATE_CHANGE CTNND1 -SRC STATE_CHANGE DOK6 -SRC STATE_CHANGE EGFR -SRC STATE_CHANGE F2RL2 -SRC STATE_CHANGE FARP2 -SRC STATE_CHANGE FRS2 -SRC STATE_CHANGE GAB1 -SRC STATE_CHANGE GDNF -SRC STATE_CHANGE GFRA1 -SRC STATE_CHANGE HGF -SRC STATE_CHANGE HGS -SRC STATE_CHANGE HRAS -SRC STATE_CHANGE HSP90AB1 -SRC STATE_CHANGE IGF1 -SRC STATE_CHANGE IGF1R -SRC STATE_CHANGE IQGAP1 -SRC STATE_CHANGE JAK2 -SRC STATE_CHANGE JUP -SRC STATE_CHANGE MAP2K1 -SRC STATE_CHANGE MAP3K2 -SRC STATE_CHANGE MAPK8 -SRC STATE_CHANGE MET -SRC STATE_CHANGE MMP2 -SRC STATE_CHANGE MMP9 -SRC STATE_CHANGE NFKB1 -SRC STATE_CHANGE NFKBIA -SRC STATE_CHANGE NOS2 -SRC STATE_CHANGE NUMB -SRC STATE_CHANGE PARD6A -SRC STATE_CHANGE PIK3CA -SRC STATE_CHANGE PIK3R1 -SRC STATE_CHANGE PTP4A1 -SRC STATE_CHANGE PXN -SRC STATE_CHANGE RAB5A -SRC STATE_CHANGE RELA -SRC STATE_CHANGE SDC2 -SRC STATE_CHANGE SGK1 -SRC STATE_CHANGE SH2D2A -SRC STATE_CHANGE SPRY2 -SRC STATE_CHANGE STAT3 -SRC STATE_CHANGE STAT5A -SRC STATE_CHANGE TIAM1 -SRC STATE_CHANGE TRIP6 -SRC STATE_CHANGE TRPV1 -SRC STATE_CHANGE VAV2 -SRF CO_CONTROL AR -SRF CO_CONTROL CREB1 -SRF CO_CONTROL ELK1 -SRF CO_CONTROL MYOCD -SRF CO_CONTROL SRF -SRF IN_SAME_COMPONENT ELK1 -SRF IN_SAME_COMPONENT HDAC4 -SRF IN_SAME_COMPONENT MYOCD -SRF IN_SAME_COMPONENT SCAI -SRF METABOLIC_CATALYSIS ACTA2 -SRF METABOLIC_CATALYSIS CYR61 -SRF METABOLIC_CATALYSIS FHL2 -SRF METABOLIC_CATALYSIS FOS -SRF METABOLIC_CATALYSIS ITGB1 -SRF METABOLIC_CATALYSIS SRF -SRF METABOLIC_CATALYSIS TAGLN -SRF METABOLIC_CATALYSIS VCL -SRF REACTS_WITH ELK1 -SRF REACTS_WITH HDAC4 -SRF REACTS_WITH MYOCD -SRF REACTS_WITH SCAI -SRF REACTS_WITH SRF -SRGAP1 STATE_CHANGE RHOA -SRY CO_CONTROL AR -SRY METABOLIC_CATALYSIS KLK3 -SSH1 IN_SAME_COMPONENT FGF1 -SSH1 REACTS_WITH FGF1 -SSH1 REACTS_WITH PAK4 -SSH1 STATE_CHANGE CFL1 -SSRP1 METABOLIC_CATALYSIS CDKN1A -SSRP1 METABOLIC_CATALYSIS MDM2 -SSRP1 REACTS_WITH SSRP1 -STAG2 REACTS_WITH STAG2 -STAMBP STATE_CHANGE EGF -STAMBP STATE_CHANGE EGFR -STAP1 IN_SAME_COMPONENT STAT5A -STAP1 REACTS_WITH STAP1 -STAP1 REACTS_WITH STAT5A -STAT1 CO_CONTROL IL6 -STAT1 CO_CONTROL TGFB1 -STAT1 IN_SAME_COMPONENT PIAS1 -STAT1 IN_SAME_COMPONENT PIAS4 -STAT1 IN_SAME_COMPONENT PTPN11 -STAT1 IN_SAME_COMPONENT STAT3 -STAT1 IN_SAME_COMPONENT TNF -STAT1 IN_SAME_COMPONENT TNFRSF1A -STAT1 IN_SAME_COMPONENT TRADD -STAT1 METABOLIC_CATALYSIS BCL2 -STAT1 METABOLIC_CATALYSIS BCL2L1 -STAT1 METABOLIC_CATALYSIS CASP1 -STAT1 METABOLIC_CATALYSIS EPOR -STAT1 METABOLIC_CATALYSIS GATA3 -STAT1 METABOLIC_CATALYSIS IL12RB2 -STAT1 METABOLIC_CATALYSIS IL17A -STAT1 METABOLIC_CATALYSIS IRF1 -STAT1 METABOLIC_CATALYSIS KIT -STAT1 METABOLIC_CATALYSIS SMAD7 -STAT1 METABOLIC_CATALYSIS SOCS1 -STAT1 METABOLIC_CATALYSIS TBX21 -STAT1 REACTS_WITH PIAS1 -STAT1 REACTS_WITH PIAS4 -STAT1 REACTS_WITH PTPN11 -STAT1 REACTS_WITH RIPK1 -STAT1 REACTS_WITH STAT1 -STAT1 REACTS_WITH STAT3 -STAT1 REACTS_WITH TNF -STAT1 REACTS_WITH TNFRSF1A -STAT1 REACTS_WITH TRADD -STAT1 REACTS_WITH TRAF2 -STAT1 STATE_CHANGE FADD -STAT1 STATE_CHANGE TNF -STAT1 STATE_CHANGE TNFRSF1A -STAT1 STATE_CHANGE TRADD -STAT1 STATE_CHANGE TRAF2 -STAT2 REACTS_WITH STAT2 -STAT3 CO_CONTROL ATR -STAT3 CO_CONTROL CEBPB -STAT3 CO_CONTROL FOS -STAT3 CO_CONTROL JUN -STAT3 CO_CONTROL PTPN11 -STAT3 CO_CONTROL SOS1 -STAT3 CO_CONTROL SRC -STAT3 CO_CONTROL STAT4 -STAT3 CO_CONTROL TBX21 -STAT3 IN_SAME_COMPONENT FOXO1 -STAT3 IN_SAME_COMPONENT HDAC3 -STAT3 IN_SAME_COMPONENT PIAS3 -STAT3 IN_SAME_COMPONENT STAT1 -STAT3 IN_SAME_COMPONENT STAT4 -STAT3 METABOLIC_CATALYSIS A2M -STAT3 METABOLIC_CATALYSIS CCND1 -STAT3 METABOLIC_CATALYSIS CEBPD -STAT3 METABOLIC_CATALYSIS CRP -STAT3 METABOLIC_CATALYSIS FGG -STAT3 METABOLIC_CATALYSIS HSP90B1 -STAT3 METABOLIC_CATALYSIS IFNG -STAT3 METABOLIC_CATALYSIS IL17A -STAT3 METABOLIC_CATALYSIS IL17F -STAT3 METABOLIC_CATALYSIS IRF1 -STAT3 METABOLIC_CATALYSIS JUNB -STAT3 METABOLIC_CATALYSIS LBP -STAT3 METABOLIC_CATALYSIS MYC -STAT3 METABOLIC_CATALYSIS SOCS3 -STAT3 METABOLIC_CATALYSIS TIMP1 -STAT3 METABOLIC_CATALYSIS TNFSF11 -STAT3 REACTS_WITH FOXO1 -STAT3 REACTS_WITH HDAC3 -STAT3 REACTS_WITH MITF -STAT3 REACTS_WITH PIAS3 -STAT3 REACTS_WITH STAT1 -STAT3 REACTS_WITH STAT3 -STAT3 REACTS_WITH STAT4 -STAT4 CO_CONTROL CD247 -STAT4 CO_CONTROL CD28 -STAT4 CO_CONTROL CD3D -STAT4 CO_CONTROL CD3E -STAT4 CO_CONTROL CD3G -STAT4 CO_CONTROL CD4 -STAT4 CO_CONTROL FOS -STAT4 CO_CONTROL HLA-DRA -STAT4 CO_CONTROL HLA-DRB1 -STAT4 CO_CONTROL IL18 -STAT4 CO_CONTROL IL18R1 -STAT4 CO_CONTROL IL18RAP -STAT4 CO_CONTROL IL2 -STAT4 CO_CONTROL JUN -STAT4 CO_CONTROL STAT3 -STAT4 CO_CONTROL TBX21 -STAT4 CO_CONTROL TGFB1 -STAT4 IN_SAME_COMPONENT CREBBP -STAT4 IN_SAME_COMPONENT JUN -STAT4 IN_SAME_COMPONENT PIAS2 -STAT4 IN_SAME_COMPONENT STAT3 -STAT4 METABOLIC_CATALYSIS ETV5 -STAT4 METABOLIC_CATALYSIS IFNG -STAT4 METABOLIC_CATALYSIS IL13 -STAT4 METABOLIC_CATALYSIS IL18R1 -STAT4 METABOLIC_CATALYSIS IL18RAP -STAT4 METABOLIC_CATALYSIS IL2 -STAT4 METABOLIC_CATALYSIS IL2RA -STAT4 METABOLIC_CATALYSIS IRF1 -STAT4 METABOLIC_CATALYSIS PRF1 -STAT4 REACTS_WITH CREBBP -STAT4 REACTS_WITH JUN -STAT4 REACTS_WITH PIAS2 -STAT4 REACTS_WITH STAT3 -STAT4 REACTS_WITH STAT4 -STAT4 STATE_CHANGE NFKB1 -STAT4 STATE_CHANGE RELA -STAT5A IN_SAME_COMPONENT STAP1 -STAT5A METABOLIC_CATALYSIS CDKN1A -STAT5A REACTS_WITH STAP1 -STAT5A REACTS_WITH STAT5A -STAT5B REACTS_WITH STAT5B -STAT6 CO_CONTROL BCL6 -STAT6 CO_CONTROL CEBPB -STAT6 CO_CONTROL EGR2 -STAT6 CO_CONTROL FES -STAT6 CO_CONTROL GTF3A -STAT6 CO_CONTROL HMGA1 -STAT6 CO_CONTROL IL2RG -STAT6 CO_CONTROL IL4 -STAT6 CO_CONTROL IL4R -STAT6 CO_CONTROL IRF4 -STAT6 CO_CONTROL IRS2 -STAT6 CO_CONTROL JAK1 -STAT6 CO_CONTROL JAK3 -STAT6 CO_CONTROL SP1 -STAT6 CO_CONTROL SPI1 -STAT6 IN_SAME_COMPONENT ETS1 -STAT6 IN_SAME_COMPONENT PARP14 -STAT6 METABOLIC_CATALYSIS AICDA -STAT6 METABOLIC_CATALYSIS ALOX15 -STAT6 METABOLIC_CATALYSIS ARG1 -STAT6 METABOLIC_CATALYSIS CCL11 -STAT6 METABOLIC_CATALYSIS CCL17 -STAT6 METABOLIC_CATALYSIS CCL26 -STAT6 METABOLIC_CATALYSIS COL1A1 -STAT6 METABOLIC_CATALYSIS COL1A2 -STAT6 METABOLIC_CATALYSIS EGR2 -STAT6 METABOLIC_CATALYSIS FCER2 -STAT6 METABOLIC_CATALYSIS IGHE -STAT6 METABOLIC_CATALYSIS IGHG1 -STAT6 METABOLIC_CATALYSIS IGHG3 -STAT6 METABOLIC_CATALYSIS IL10 -STAT6 METABOLIC_CATALYSIS IL13RA2 -STAT6 METABOLIC_CATALYSIS IL4 -STAT6 METABOLIC_CATALYSIS IL4R -STAT6 METABOLIC_CATALYSIS IL5 -STAT6 METABOLIC_CATALYSIS ITGB3 -STAT6 METABOLIC_CATALYSIS LTA -STAT6 METABOLIC_CATALYSIS OPRM1 -STAT6 METABOLIC_CATALYSIS PIGR -STAT6 METABOLIC_CATALYSIS RETNLB -STAT6 METABOLIC_CATALYSIS SELP -STAT6 METABOLIC_CATALYSIS SOCS1 -STAT6 METABOLIC_CATALYSIS TFF3 -STAT6 METABOLIC_CATALYSIS THY1 -STAT6 REACTS_WITH ETS1 -STAT6 REACTS_WITH STAT6 -STIM1 STATE_CHANGE ORAI1 -STK11 IN_SAME_COMPONENT CAB39 -STK11 IN_SAME_COMPONENT CDC37 -STK11 IN_SAME_COMPONENT ESR1 -STK11 IN_SAME_COMPONENT HSP90AA1 -STK11 IN_SAME_COMPONENT SMAD4 -STK11 IN_SAME_COMPONENT STK11IP -STK11IP IN_SAME_COMPONENT SMAD4 -STK11IP IN_SAME_COMPONENT STK11 -STK11IP REACTS_WITH SMAD4 -STK11IP REACTS_WITH STK11 -STK11IP REACTS_WITH STK11IP -STK11 METABOLIC_CATALYSIS CTSD -STK11 METABOLIC_CATALYSIS MYC -STK11 METABOLIC_CATALYSIS PSEN2 -STK11 REACTS_WITH CAB39 -STK11 REACTS_WITH CDC37 -STK11 REACTS_WITH ESR1 -STK11 REACTS_WITH HSP90AA1 -STK11 REACTS_WITH SMAD4 -STK11 REACTS_WITH STK11 -STK11 REACTS_WITH STK11IP -STK11 STATE_CHANGE BRSK1 -STK11 STATE_CHANGE BRSK2 -STK11 STATE_CHANGE ETV4 -STK11 STATE_CHANGE MARK2 -STK11 STATE_CHANGE MARK4 -STK11 STATE_CHANGE MST4 -STK11 STATE_CHANGE SIK1 -STK11 STATE_CHANGE SIK2 -STK11 STATE_CHANGE SIK3 -STK11 STATE_CHANGE SMARCD3 -STK36 CO_CONTROL ARRB2 -STK36 CO_CONTROL SMO -STK36 STATE_CHANGE GLI1 -STK36 STATE_CHANGE GLI2 -STK36 STATE_CHANGE SUFU -STK39 IN_SAME_COMPONENT PRKCQ -STK39 REACTS_WITH PRKCQ -STK39 REACTS_WITH STK39 -STRAP CO_CONTROL TGFBR1 -STRAP CO_CONTROL TGFBR2 -STRAP CO_CONTROL ZFYVE9 -STRAP IN_SAME_COMPONENT NEDD4L -STRAP IN_SAME_COMPONENT SMAD7 -STRAP IN_SAME_COMPONENT TGFBR1 -STRAP IN_SAME_COMPONENT TGFBR2 -STRAP REACTS_WITH NEDD4L -STRAP REACTS_WITH SMAD7 -STRAP REACTS_WITH STRAP -STRAP REACTS_WITH TGFBR1 -STRAP REACTS_WITH TGFBR2 -STRAP STATE_CHANGE CTNNB1 -STRAP STATE_CHANGE MAP3K7 -STRAP STATE_CHANGE SMAD2 -STRAP STATE_CHANGE XIAP -STRN IN_SAME_COMPONENT ESR1 -STRN REACTS_WITH ESR1 -STRN REACTS_WITH STRN -STRN STATE_CHANGE AKT1 -STUB1 IN_SAME_COMPONENT SNCA -STUB1 METABOLIC_CATALYSIS SNCA -STUB1 REACTS_WITH SNCA -STUB1 REACTS_WITH STUB1 -STX1A IN_SAME_COMPONENT VAMP2 -STX1A REACTS_WITH STX1A -STX1A REACTS_WITH VAMP2 -STX1A STATE_CHANGE STX1A -STX1A STATE_CHANGE SYT1 -STX1A STATE_CHANGE VAMP2 -STX4 CO_CONTROL CALM1 -STX4 CO_CONTROL EXOC3 -STX4 CO_CONTROL EXOC4 -STX4 CO_CONTROL RHOQ -STX4 CO_CONTROL TRIP10 -STX4 IN_SAME_COMPONENT STXBP4 -STX4 IN_SAME_COMPONENT VAMP2 -STX4 STATE_CHANGE AQP3 -STX4 STATE_CHANGE LNPEP -STX4 STATE_CHANGE SLC2A4 -STX4 STATE_CHANGE VAMP2 -STXBP4 CO_CONTROL CALM1 -STXBP4 CO_CONTROL RHOQ -STXBP4 CO_CONTROL TRIP10 -STXBP4 IN_SAME_COMPONENT STX4 -STXBP4 IN_SAME_COMPONENT VAMP2 -STXBP4 STATE_CHANGE LNPEP -STXBP4 STATE_CHANGE SLC2A4 -STXBP4 STATE_CHANGE VAMP2 -SUFU CO_CONTROL ARRB2 -SUFU CO_CONTROL SMO -SUFU IN_SAME_COMPONENT GLI1 -SUFU IN_SAME_COMPONENT GLI2 -SUFU IN_SAME_COMPONENT GLI3 -SUFU IN_SAME_COMPONENT HDAC1 -SUFU IN_SAME_COMPONENT HDAC2 -SUFU IN_SAME_COMPONENT LGALS3 -SUFU IN_SAME_COMPONENT PIAS1 -SUFU IN_SAME_COMPONENT RBBP4 -SUFU IN_SAME_COMPONENT RBBP7 -SUFU IN_SAME_COMPONENT SAP18 -SUFU IN_SAME_COMPONENT SAP30 -SUFU IN_SAME_COMPONENT SIN3A -SUFU IN_SAME_COMPONENT SIN3B -SUFU REACTS_WITH GLI1 -SUFU REACTS_WITH GLI2 -SUFU REACTS_WITH GLI3 -SUFU REACTS_WITH HDAC1 -SUFU REACTS_WITH HDAC2 -SUFU REACTS_WITH LGALS3 -SUFU REACTS_WITH PIAS1 -SUFU REACTS_WITH RBBP4 -SUFU REACTS_WITH RBBP7 -SUFU REACTS_WITH SAP18 -SUFU REACTS_WITH SAP30 -SUFU REACTS_WITH SIN3A -SUFU REACTS_WITH SIN3B -SUFU REACTS_WITH SUFU -SUFU STATE_CHANGE GLI1 -SUFU STATE_CHANGE GLI3 -SUPT3H IN_SAME_COMPONENT KAT2A -SUPT3H IN_SAME_COMPONENT MAX -SUPT3H IN_SAME_COMPONENT MYC -SUPT3H IN_SAME_COMPONENT SUPT7L -SUPT3H IN_SAME_COMPONENT TAF10 -SUPT3H IN_SAME_COMPONENT TAF12 -SUPT3H IN_SAME_COMPONENT TAF9 -SUPT3H IN_SAME_COMPONENT TRRAP -SUPT3H METABOLIC_CATALYSIS CAD -SUPT3H METABOLIC_CATALYSIS CCND2 -SUPT3H METABOLIC_CATALYSIS CDK4 -SUPT3H METABOLIC_CATALYSIS HSPD1 -SUPT3H METABOLIC_CATALYSIS TERT -SUPT3H REACTS_WITH KAT2A -SUPT3H REACTS_WITH MAX -SUPT3H REACTS_WITH MYC -SUPT3H REACTS_WITH SUPT3H -SUPT3H REACTS_WITH SUPT7L -SUPT3H REACTS_WITH TAF10 -SUPT3H REACTS_WITH TAF12 -SUPT3H REACTS_WITH TAF9 -SUPT3H REACTS_WITH TRRAP -SUPT7L IN_SAME_COMPONENT KAT2A -SUPT7L IN_SAME_COMPONENT MAX -SUPT7L IN_SAME_COMPONENT MYC -SUPT7L IN_SAME_COMPONENT SUPT3H -SUPT7L IN_SAME_COMPONENT TAF10 -SUPT7L IN_SAME_COMPONENT TAF12 -SUPT7L IN_SAME_COMPONENT TAF9 -SUPT7L IN_SAME_COMPONENT TRRAP -SUPT7L METABOLIC_CATALYSIS CAD -SUPT7L METABOLIC_CATALYSIS CCND2 -SUPT7L METABOLIC_CATALYSIS CDK4 -SUPT7L METABOLIC_CATALYSIS HSPD1 -SUPT7L METABOLIC_CATALYSIS TERT -SUPT7L REACTS_WITH KAT2A -SUPT7L REACTS_WITH MAX -SUPT7L REACTS_WITH MYC -SUPT7L REACTS_WITH SUPT3H -SUPT7L REACTS_WITH SUPT7L -SUPT7L REACTS_WITH TAF10 -SUPT7L REACTS_WITH TAF12 -SUPT7L REACTS_WITH TAF9 -SUPT7L REACTS_WITH TRRAP -SUV39H1 IN_SAME_COMPONENT RB1 -SUV39H1 IN_SAME_COMPONENT TFDP1 -SUV39H1 REACTS_WITH RB1 -SUV39H1 REACTS_WITH SUV39H1 -SUV39H1 REACTS_WITH TFDP1 -SUV420H1 IN_SAME_COMPONENT NCOA2 -SUV420H1 REACTS_WITH NCOA2 -SUV420H1 REACTS_WITH SUV420H1 -SVIL CO_CONTROL AR -SVIL METABOLIC_CATALYSIS KLK3 -SYK CO_CONTROL CD19 -SYK CO_CONTROL INPP5D -SYK CO_CONTROL ITGAV -SYK CO_CONTROL ITGB3 -SYK CO_CONTROL SPP1 -SYK CO_CONTROL VAV2 -SYK IN_SAME_COMPONENT BLNK -SYK IN_SAME_COMPONENT BTK -SYK IN_SAME_COMPONENT CD72 -SYK IN_SAME_COMPONENT CD79A -SYK IN_SAME_COMPONENT CD79B -SYK IN_SAME_COMPONENT CSF2 -SYK IN_SAME_COMPONENT CSF2RA -SYK IN_SAME_COMPONENT CSF2RB -SYK IN_SAME_COMPONENT FAS -SYK IN_SAME_COMPONENT FASLG -SYK IN_SAME_COMPONENT FCER1A -SYK IN_SAME_COMPONENT FCER1G -SYK IN_SAME_COMPONENT IGHE -SYK IN_SAME_COMPONENT IL2 -SYK IN_SAME_COMPONENT IL2RA -SYK IN_SAME_COMPONENT IL2RB -SYK IN_SAME_COMPONENT IL2RG -SYK IN_SAME_COMPONENT JAK1 -SYK IN_SAME_COMPONENT JAK3 -SYK IN_SAME_COMPONENT LCK -SYK IN_SAME_COMPONENT LYN -SYK IN_SAME_COMPONENT MS4A2 -SYK IN_SAME_COMPONENT PLCG2 -SYK IN_SAME_COMPONENT SRC -SYK IN_SAME_COMPONENT WIPF1 -SYK REACTS_WITH BLNK -SYK REACTS_WITH BTK -SYK REACTS_WITH CD72 -SYK REACTS_WITH CD79A -SYK REACTS_WITH CD79B -SYK REACTS_WITH CSF2 -SYK REACTS_WITH CSF2RA -SYK REACTS_WITH CSF2RB -SYK REACTS_WITH FAS -SYK REACTS_WITH FASLG -SYK REACTS_WITH FCER1A -SYK REACTS_WITH FCER1G -SYK REACTS_WITH IGHE -SYK REACTS_WITH IL2 -SYK REACTS_WITH IL2RA -SYK REACTS_WITH IL2RB -SYK REACTS_WITH IL2RG -SYK REACTS_WITH JAK1 -SYK REACTS_WITH JAK3 -SYK REACTS_WITH LCK -SYK REACTS_WITH LYN -SYK REACTS_WITH MS4A2 -SYK REACTS_WITH PLCG2 -SYK REACTS_WITH PTPN6 -SYK REACTS_WITH SRC -SYK REACTS_WITH SYK -SYK REACTS_WITH WIPF1 -SYK STATE_CHANGE BCAR1 -SYK STATE_CHANGE BTK -SYK STATE_CHANGE CBL -SYK STATE_CHANGE CBLB -SYK STATE_CHANGE CD19 -SYK STATE_CHANGE FER -SYK STATE_CHANGE HCLS1 -SYK STATE_CHANGE ITK -SYK STATE_CHANGE KLRG1 -SYK STATE_CHANGE LAT -SYK STATE_CHANGE LAT2 -SYK STATE_CHANGE NFKB1 -SYK STATE_CHANGE NFKBIA -SYK STATE_CHANGE PIK3CA -SYK STATE_CHANGE PIK3R1 -SYK STATE_CHANGE PLA2G4A -SYK STATE_CHANGE PTK2B -SYK STATE_CHANGE RELA -SYK STATE_CHANGE SNCA -SYK STATE_CHANGE SPHK1 -SYK STATE_CHANGE VAV1 -SYK STATE_CHANGE VAV2 -SYK STATE_CHANGE VAV3 -SYNJ1 CO_CONTROL AMPH -SYNJ1 CO_CONTROL DNM1 -SYNJ1 CO_CONTROL SH3GL2 -SYNJ1 CO_CONTROL SH3KBP1 -SYNJ1 REACTS_WITH SYNJ1 -SYNJ1 STATE_CHANGE EGF -SYNJ1 STATE_CHANGE EGFR -SYNJ1 STATE_CHANGE TF -SYT1 REACTS_WITH SYT1 -TAB1 IN_SAME_COMPONENT IRAK1 -TAB1 IN_SAME_COMPONENT MAP3K7 -TAB1 IN_SAME_COMPONENT MAPK14 -TAB1 IN_SAME_COMPONENT TAB2 -TAB1 IN_SAME_COMPONENT TRAF6 -TAB1 REACTS_WITH IRAK1 -TAB1 REACTS_WITH MAP3K7 -TAB1 REACTS_WITH MAPK14 -TAB1 REACTS_WITH PRKG1 -TAB1 REACTS_WITH TAB1 -TAB1 REACTS_WITH TAB2 -TAB1 REACTS_WITH TRAF6 -TAB1 STATE_CHANGE CHUK -TAB1 STATE_CHANGE ERC1 -TAB1 STATE_CHANGE IKBKB -TAB1 STATE_CHANGE IKBKG -TAB1 STATE_CHANGE MAP2K6 -TAB1 STATE_CHANGE NLK -TAB2 IN_SAME_COMPONENT IRAK1 -TAB2 IN_SAME_COMPONENT MAP3K7 -TAB2 IN_SAME_COMPONENT NCOR1 -TAB2 IN_SAME_COMPONENT TAB1 -TAB2 IN_SAME_COMPONENT TRAF6 -TAB2 REACTS_WITH IRAK1 -TAB2 REACTS_WITH MAP3K7 -TAB2 REACTS_WITH NCOR1 -TAB2 REACTS_WITH TAB1 -TAB2 REACTS_WITH TAB2 -TAB2 REACTS_WITH TRAF6 -TAB2 STATE_CHANGE CHUK -TAB2 STATE_CHANGE ERC1 -TAB2 STATE_CHANGE IKBKB -TAB2 STATE_CHANGE IKBKG -TAB2 STATE_CHANGE MAP2K6 -TAB2 STATE_CHANGE TRAF6 -TACC1 IN_SAME_COMPONENT AURKA -TACC1 IN_SAME_COMPONENT AURKB -TACC1 IN_SAME_COMPONENT CKAP5 -TACC1 IN_SAME_COMPONENT TDRD7 -TACC1 REACTS_WITH AURKA -TACC1 REACTS_WITH AURKB -TACC1 REACTS_WITH CKAP5 -TACC1 REACTS_WITH TACC1 -TACC1 REACTS_WITH TDRD7 -TACC3 IN_SAME_COMPONENT AURKA -TACC3 IN_SAME_COMPONENT NDEL1 -TACC3 REACTS_WITH AURKA -TACC3 REACTS_WITH NDEL1 -TACC3 REACTS_WITH TACC3 -TADA2B CO_CONTROL CARM1 -TADA2B CO_CONTROL HDAC2 -TADA2B CO_CONTROL POU4F1 -TADA2B CO_CONTROL PRMT1 -TADA2B CO_CONTROL SMARCA4 -TADA2B CO_CONTROL SNAI2 -TADA2B CO_CONTROL SP1 -TADA2B CO_CONTROL TP53 -TADA2B CO_CONTROL ZNF385A -TADA2B IN_SAME_COMPONENT TAF9 -TADA2B METABOLIC_CATALYSIS BBC3 -TADA2B METABOLIC_CATALYSIS CDKN1A -TADA2B METABOLIC_CATALYSIS GADD45A -TAF10 IN_SAME_COMPONENT KAT2A -TAF10 IN_SAME_COMPONENT MAX -TAF10 IN_SAME_COMPONENT MYC -TAF10 IN_SAME_COMPONENT SUPT3H -TAF10 IN_SAME_COMPONENT SUPT7L -TAF10 IN_SAME_COMPONENT TAF12 -TAF10 IN_SAME_COMPONENT TAF9 -TAF10 IN_SAME_COMPONENT TRRAP -TAF10 METABOLIC_CATALYSIS CAD -TAF10 METABOLIC_CATALYSIS CCND2 -TAF10 METABOLIC_CATALYSIS CDK4 -TAF10 METABOLIC_CATALYSIS HSPD1 -TAF10 METABOLIC_CATALYSIS TERT -TAF10 REACTS_WITH KAT2A -TAF10 REACTS_WITH MAX -TAF10 REACTS_WITH MYC -TAF10 REACTS_WITH SUPT3H -TAF10 REACTS_WITH SUPT7L -TAF10 REACTS_WITH TAF10 -TAF10 REACTS_WITH TAF12 -TAF10 REACTS_WITH TAF9 -TAF10 REACTS_WITH TRRAP -TAF12 IN_SAME_COMPONENT KAT2A -TAF12 IN_SAME_COMPONENT MAX -TAF12 IN_SAME_COMPONENT MYC -TAF12 IN_SAME_COMPONENT SUPT3H -TAF12 IN_SAME_COMPONENT SUPT7L -TAF12 IN_SAME_COMPONENT TAF10 -TAF12 IN_SAME_COMPONENT TAF9 -TAF12 IN_SAME_COMPONENT TRRAP -TAF12 METABOLIC_CATALYSIS CAD -TAF12 METABOLIC_CATALYSIS CCND2 -TAF12 METABOLIC_CATALYSIS CDK4 -TAF12 METABOLIC_CATALYSIS HSPD1 -TAF12 METABOLIC_CATALYSIS TERT -TAF12 REACTS_WITH KAT2A -TAF12 REACTS_WITH MAX -TAF12 REACTS_WITH MYC -TAF12 REACTS_WITH SUPT3H -TAF12 REACTS_WITH SUPT7L -TAF12 REACTS_WITH TAF10 -TAF12 REACTS_WITH TAF12 -TAF12 REACTS_WITH TAF9 -TAF12 REACTS_WITH TRRAP -TAF9 CO_CONTROL CARM1 -TAF9 CO_CONTROL HDAC2 -TAF9 CO_CONTROL POU4F1 -TAF9 CO_CONTROL PRMT1 -TAF9 CO_CONTROL SMARCA4 -TAF9 CO_CONTROL SNAI2 -TAF9 CO_CONTROL SP1 -TAF9 CO_CONTROL TP53 -TAF9 CO_CONTROL ZNF385A -TAF9 IN_SAME_COMPONENT KAT2A -TAF9 IN_SAME_COMPONENT MAX -TAF9 IN_SAME_COMPONENT MYC -TAF9 IN_SAME_COMPONENT SUPT3H -TAF9 IN_SAME_COMPONENT SUPT7L -TAF9 IN_SAME_COMPONENT TADA2B -TAF9 IN_SAME_COMPONENT TAF10 -TAF9 IN_SAME_COMPONENT TAF12 -TAF9 IN_SAME_COMPONENT TRRAP -TAF9 METABOLIC_CATALYSIS BBC3 -TAF9 METABOLIC_CATALYSIS CAD -TAF9 METABOLIC_CATALYSIS CCND2 -TAF9 METABOLIC_CATALYSIS CDK4 -TAF9 METABOLIC_CATALYSIS CDKN1A -TAF9 METABOLIC_CATALYSIS GADD45A -TAF9 METABOLIC_CATALYSIS HSPD1 -TAF9 METABOLIC_CATALYSIS TERT -TAF9 REACTS_WITH KAT2A -TAF9 REACTS_WITH MAX -TAF9 REACTS_WITH MYC -TAF9 REACTS_WITH SUPT3H -TAF9 REACTS_WITH SUPT7L -TAF9 REACTS_WITH TAF10 -TAF9 REACTS_WITH TAF12 -TAF9 REACTS_WITH TAF9 -TAF9 REACTS_WITH TRRAP -TBC1D4 CO_CONTROL TBC1D4 -TBC1D4 REACTS_WITH CALM1 -TBC1D4 REACTS_WITH TBC1D4 -TBC1D4 STATE_CHANGE LNPEP -TBC1D4 STATE_CHANGE SLC2A4 -TBC1D4 STATE_CHANGE VAMP2 -TBL1X IN_SAME_COMPONENT CTNNB1 -TBL1X IN_SAME_COMPONENT TBL1XR1 -TBL1X IN_SAME_COMPONENT TCF4 -TBL1X IN_SAME_COMPONENT TCF7L2 -TBL1X METABOLIC_CATALYSIS AXIN2 -TBL1XR1 IN_SAME_COMPONENT CTNNB1 -TBL1XR1 IN_SAME_COMPONENT TBL1X -TBL1XR1 IN_SAME_COMPONENT TCF4 -TBL1XR1 IN_SAME_COMPONENT TCF7L2 -TBL1XR1 METABOLIC_CATALYSIS AXIN2 -TBL1XR1 REACTS_WITH CTNNB1 -TBL1XR1 REACTS_WITH HDAC1 -TBL1XR1 REACTS_WITH TBL1X -TBL1XR1 REACTS_WITH TBL1XR1 -TBL1XR1 REACTS_WITH TCF4 -TBL1XR1 REACTS_WITH TLE1 -TBL1X REACTS_WITH CTNNB1 -TBL1X REACTS_WITH HDAC1 -TBL1X REACTS_WITH TBL1X -TBL1X REACTS_WITH TBL1XR1 -TBL1X REACTS_WITH TCF4 -TBL1X REACTS_WITH TLE1 -TBP CO_CONTROL BRCA1 -TBP CO_CONTROL CREB1 -TBP CO_CONTROL MAX -TBP CO_CONTROL MYC -TBP CO_CONTROL SP1 -TBP CO_CONTROL ZBTB17 -TBP IN_SAME_COMPONENT SPI1 -TBP METABOLIC_CATALYSIS BGLAP -TBP METABOLIC_CATALYSIS CEBPD -TBP METABOLIC_CATALYSIS S100A7 -TBP REACTS_WITH SPI1 -TBP REACTS_WITH TBP -TBX21 CO_CONTROL CD247 -TBX21 CO_CONTROL CD28 -TBX21 CO_CONTROL CD3D -TBX21 CO_CONTROL CD3E -TBX21 CO_CONTROL CD3G -TBX21 CO_CONTROL CD4 -TBX21 CO_CONTROL FOS -TBX21 CO_CONTROL HLA-DRA -TBX21 CO_CONTROL HLA-DRB1 -TBX21 CO_CONTROL IL2 -TBX21 CO_CONTROL JUN -TBX21 CO_CONTROL STAT3 -TBX21 CO_CONTROL STAT4 -TBX21 CO_CONTROL TGFB1 -TBX21 METABOLIC_CATALYSIS IFNG -TBXA2R IN_SAME_COMPONENT ARR3 -TBXA2R IN_SAME_COMPONENT ARRB2 -TBXA2R IN_SAME_COMPONENT GNAI2 -TBXA2R IN_SAME_COMPONENT GNB5 -TBXA2R IN_SAME_COMPONENT GNG2 -TBXA2R IN_SAME_COMPONENT RAB11A -TBXA2R REACTS_WITH ARR3 -TBXA2R REACTS_WITH ARRB2 -TBXA2R REACTS_WITH GNAI2 -TBXA2R REACTS_WITH GNB5 -TBXA2R REACTS_WITH GNG2 -TBXA2R REACTS_WITH RAB11A -TBXA2R REACTS_WITH TBXA2R -TBXA2R STATE_CHANGE GNAI2 -TBXA2R STATE_CHANGE GNB5 -TBXA2R STATE_CHANGE GNG2 -TBXA2R STATE_CHANGE TBXA2R -TCEB1 IN_SAME_COMPONENT CUL2 -TCEB1 IN_SAME_COMPONENT EPAS1 -TCEB1 IN_SAME_COMPONENT HIF1A -TCEB1 IN_SAME_COMPONENT RBX1 -TCEB1 IN_SAME_COMPONENT TCEB2 -TCEB1 IN_SAME_COMPONENT VHL -TCEB1 REACTS_WITH CUL2 -TCEB1 REACTS_WITH EPAS1 -TCEB1 REACTS_WITH HIF1A -TCEB1 REACTS_WITH HSP90AA1 -TCEB1 REACTS_WITH RBX1 -TCEB1 REACTS_WITH TCEB1 -TCEB1 REACTS_WITH TCEB2 -TCEB1 REACTS_WITH VHL -TCEB2 IN_SAME_COMPONENT CUL2 -TCEB2 IN_SAME_COMPONENT EPAS1 -TCEB2 IN_SAME_COMPONENT HIF1A -TCEB2 IN_SAME_COMPONENT RBX1 -TCEB2 IN_SAME_COMPONENT TCEB1 -TCEB2 IN_SAME_COMPONENT VHL -TCEB2 REACTS_WITH CUL2 -TCEB2 REACTS_WITH EPAS1 -TCEB2 REACTS_WITH HIF1A -TCEB2 REACTS_WITH HSP90AA1 -TCEB2 REACTS_WITH RBX1 -TCEB2 REACTS_WITH TCEB1 -TCEB2 REACTS_WITH TCEB2 -TCEB2 REACTS_WITH VHL -TCF3 IN_SAME_COMPONENT MAPKAPK2 -TCF3 IN_SAME_COMPONENT MYOD1 -TCF3 REACTS_WITH HEY1 -TCF3 REACTS_WITH MAPKAPK2 -TCF3 REACTS_WITH MYOD1 -TCF3 REACTS_WITH SMAD4 -TCF3 REACTS_WITH TCF3 -TCF4 CO_CONTROL AR -TCF4 IN_SAME_COMPONENT CTNNB1 -TCF4 IN_SAME_COMPONENT HDAC1 -TCF4 IN_SAME_COMPONENT TBL1X -TCF4 IN_SAME_COMPONENT TBL1XR1 -TCF4 IN_SAME_COMPONENT TLE1 -TCF4 METABOLIC_CATALYSIS KLK3 -TCF4 REACTS_WITH CTNNB1 -TCF4 REACTS_WITH HDAC1 -TCF4 REACTS_WITH TBL1X -TCF4 REACTS_WITH TBL1XR1 -TCF4 REACTS_WITH TCF4 -TCF4 REACTS_WITH TLE1 -TCF7 IN_SAME_COMPONENT CTNNB1 -TCF7 IN_SAME_COMPONENT TLE2 -TCF7L1 IN_SAME_COMPONENT CTNNB1 -TCF7L1 IN_SAME_COMPONENT TLE2 -TCF7L1 METABOLIC_CATALYSIS AXIN2 -TCF7L1 METABOLIC_CATALYSIS CCND1 -TCF7L1 METABOLIC_CATALYSIS MYC -TCF7L1 REACTS_WITH CTNNB1 -TCF7L1 REACTS_WITH SMARCA4 -TCF7L1 REACTS_WITH TCF7L1 -TCF7L1 REACTS_WITH TERT -TCF7L1 REACTS_WITH TLE2 -TCF7L2 IN_SAME_COMPONENT ADCY7 -TCF7L2 IN_SAME_COMPONENT BTRC -TCF7L2 IN_SAME_COMPONENT CTNNB1 -TCF7L2 IN_SAME_COMPONENT CUL1 -TCF7L2 IN_SAME_COMPONENT DVL3 -TCF7L2 IN_SAME_COMPONENT EP300 -TCF7L2 IN_SAME_COMPONENT FOS -TCF7L2 IN_SAME_COMPONENT HBP1 -TCF7L2 IN_SAME_COMPONENT JUN -TCF7L2 IN_SAME_COMPONENT KLF4 -TCF7L2 IN_SAME_COMPONENT RUVBL2 -TCF7L2 IN_SAME_COMPONENT SKP1 -TCF7L2 IN_SAME_COMPONENT TBL1X -TCF7L2 IN_SAME_COMPONENT TBL1XR1 -TCF7L2 IN_SAME_COMPONENT TLE2 -TCF7L2 IN_SAME_COMPONENT TLE4 -TCF7L2 IN_SAME_COMPONENT TNIK -TCF7L2 IN_SAME_COMPONENT TRRAP -TCF7L2 METABOLIC_CATALYSIS AXIN2 -TCF7L2 METABOLIC_CATALYSIS CCND1 -TCF7L2 METABOLIC_CATALYSIS DKK1 -TCF7L2 METABOLIC_CATALYSIS ID2 -TCF7L2 METABOLIC_CATALYSIS IGF2BP1 -TCF7L2 METABOLIC_CATALYSIS IL8 -TCF7L2 METABOLIC_CATALYSIS INCENP -TCF7L2 METABOLIC_CATALYSIS MYC -TCF7L2 METABOLIC_CATALYSIS T -TCF7L2 METABOLIC_CATALYSIS TCF7 -TCF7L2 METABOLIC_CATALYSIS ZCCHC12 -TCF7L2 REACTS_WITH ADCY7 -TCF7L2 REACTS_WITH AR -TCF7L2 REACTS_WITH BTRC -TCF7L2 REACTS_WITH CTNNB1 -TCF7L2 REACTS_WITH CUL1 -TCF7L2 REACTS_WITH DVL3 -TCF7L2 REACTS_WITH EP300 -TCF7L2 REACTS_WITH FOS -TCF7L2 REACTS_WITH HBP1 -TCF7L2 REACTS_WITH JUN -TCF7L2 REACTS_WITH KLF4 -TCF7L2 REACTS_WITH NCOA2 -TCF7L2 REACTS_WITH RUVBL2 -TCF7L2 REACTS_WITH SKP1 -TCF7L2 REACTS_WITH TCF7L2 -TCF7L2 REACTS_WITH TLE2 -TCF7L2 REACTS_WITH TLE4 -TCF7L2 REACTS_WITH TNIK -TCF7L2 REACTS_WITH TRRAP -TCF7L2 STATE_CHANGE CTNNB1 -TCF7L2 STATE_CHANGE EP300 -TCF7L2 STATE_CHANGE TCF7L2 -TCF7 REACTS_WITH CTNNB1 -TCF7 REACTS_WITH TCF7 -TCF7 REACTS_WITH TLE2 -TDGF1 IN_SAME_COMPONENT GPC1 -TDGF1 REACTS_WITH GPC1 -TDGF1 REACTS_WITH TDGF1 -TDP2 IN_SAME_COMPONENT CD40 -TDP2 IN_SAME_COMPONENT CD40LG -TDP2 REACTS_WITH CD40 -TDP2 REACTS_WITH CD40LG -TDP2 REACTS_WITH TDP2 -TDP2 STATE_CHANGE NFKB1 -TDP2 STATE_CHANGE NFKBIA -TDP2 STATE_CHANGE RELA -TDRD7 IN_SAME_COMPONENT AURKA -TDRD7 IN_SAME_COMPONENT CKAP5 -TDRD7 IN_SAME_COMPONENT TACC1 -TDRD7 REACTS_WITH AURKA -TDRD7 REACTS_WITH CKAP5 -TDRD7 REACTS_WITH TACC1 -TDRD7 REACTS_WITH TDRD7 -TEC IN_SAME_COMPONENT DOK1 -TEC IN_SAME_COMPONENT LYN -TEC IN_SAME_COMPONENT VAV2 -TEC REACTS_WITH DOK1 -TEC REACTS_WITH LYN -TEC REACTS_WITH TEC -TEC REACTS_WITH VAV2 -TEK IN_SAME_COMPONENT ANGPT1 -TEK IN_SAME_COMPONENT ANGPT2 -TEK IN_SAME_COMPONENT GRB14 -TEK IN_SAME_COMPONENT GRB7 -TEK IN_SAME_COMPONENT ITGA5 -TEK IN_SAME_COMPONENT ITGB1 -TEK IN_SAME_COMPONENT PTPN11 -TEK IN_SAME_COMPONENT SHC1 -TEK IN_SAME_COMPONENT TNIP2 -TEK METABOLIC_CATALYSIS CDKN1A -TEK METABOLIC_CATALYSIS ELF2 -TEK REACTS_WITH ANGPT1 -TEK REACTS_WITH ANGPT2 -TEK REACTS_WITH GRB14 -TEK REACTS_WITH GRB7 -TEK REACTS_WITH ITGA5 -TEK REACTS_WITH ITGB1 -TEK REACTS_WITH PTPN11 -TEK REACTS_WITH SHC1 -TEK REACTS_WITH TEK -TEK REACTS_WITH TNIP2 -TEK STATE_CHANGE BMX -TEK STATE_CHANGE CRK -TEK STATE_CHANGE DOK2 -TEK STATE_CHANGE FES -TEK STATE_CHANGE FYN -TEK STATE_CHANGE MAPK14 -TEK STATE_CHANGE MAPK8 -TEK STATE_CHANGE MMP2 -TEK STATE_CHANGE NCK1 -TEK STATE_CHANGE PIK3CA -TEK STATE_CHANGE PIK3R1 -TEK STATE_CHANGE PLD2 -TEK STATE_CHANGE PLG -TEK STATE_CHANGE RASA1 -TEK STATE_CHANGE STAT5A -TERF1 IN_SAME_COMPONENT ACD -TERF1 IN_SAME_COMPONENT POT1 -TERF1 IN_SAME_COMPONENT TINF2 -TERF1 IN_SAME_COMPONENT TNKS -TERF1 REACTS_WITH ACD -TERF1 REACTS_WITH POT1 -TERF1 REACTS_WITH TERF1 -TERF1 REACTS_WITH TERF2 -TERF1 REACTS_WITH TERF2IP -TERF1 REACTS_WITH TINF2 -TERF1 REACTS_WITH TNKS -TERF2 IN_SAME_COMPONENT ATM -TERF2 IN_SAME_COMPONENT BLM -TERF2 IN_SAME_COMPONENT MRE11A -TERF2 IN_SAME_COMPONENT NBN -TERF2 IN_SAME_COMPONENT PARP2 -TERF2 IN_SAME_COMPONENT RAD50 -TERF2 IN_SAME_COMPONENT TERF2IP -TERF2 IN_SAME_COMPONENT WRN -TERF2IP IN_SAME_COMPONENT MRE11A -TERF2IP IN_SAME_COMPONENT NBN -TERF2IP IN_SAME_COMPONENT RAD50 -TERF2IP IN_SAME_COMPONENT TERF2 -TERF2IP REACTS_WITH ACD -TERF2IP REACTS_WITH MRE11A -TERF2IP REACTS_WITH NBN -TERF2IP REACTS_WITH POT1 -TERF2IP REACTS_WITH RAD50 -TERF2IP REACTS_WITH TERF1 -TERF2IP REACTS_WITH TERF2 -TERF2IP REACTS_WITH TERF2IP -TERF2IP REACTS_WITH TINF2 -TERF2 REACTS_WITH ACD -TERF2 REACTS_WITH ATM -TERF2 REACTS_WITH BLM -TERF2 REACTS_WITH MRE11A -TERF2 REACTS_WITH NBN -TERF2 REACTS_WITH PARP2 -TERF2 REACTS_WITH POT1 -TERF2 REACTS_WITH RAD50 -TERF2 REACTS_WITH TERF1 -TERF2 REACTS_WITH TERF2 -TERF2 REACTS_WITH TERF2IP -TERF2 REACTS_WITH TINF2 -TERF2 REACTS_WITH WRN -TERF2 STATE_CHANGE ATM -TERT IN_SAME_COMPONENT ABL1 -TERT IN_SAME_COMPONENT AKT1 -TERT IN_SAME_COMPONENT DKC1 -TERT IN_SAME_COMPONENT HNRNPC -TERT IN_SAME_COMPONENT HSP90AA1 -TERT IN_SAME_COMPONENT HUS1 -TERT IN_SAME_COMPONENT MTOR -TERT IN_SAME_COMPONENT NCL -TERT IN_SAME_COMPONENT NFKB1 -TERT IN_SAME_COMPONENT PINX1 -TERT IN_SAME_COMPONENT PTGES3 -TERT IN_SAME_COMPONENT RAD1 -TERT IN_SAME_COMPONENT RAD9A -TERT IN_SAME_COMPONENT RPS6KB1 -TERT IN_SAME_COMPONENT SMG5 -TERT IN_SAME_COMPONENT SMG6 -TERT IN_SAME_COMPONENT XRCC5 -TERT IN_SAME_COMPONENT XRCC6 -TERT IN_SAME_COMPONENT YWHAE -TERT METABOLIC_CATALYSIS CCND1 -TERT REACTS_WITH ABL1 -TERT REACTS_WITH AKT1 -TERT REACTS_WITH CTNNB1 -TERT REACTS_WITH DKC1 -TERT REACTS_WITH HNRNPC -TERT REACTS_WITH HSP90AA1 -TERT REACTS_WITH HUS1 -TERT REACTS_WITH MTOR -TERT REACTS_WITH NCL -TERT REACTS_WITH NFKB1 -TERT REACTS_WITH PINX1 -TERT REACTS_WITH PTGES3 -TERT REACTS_WITH RAD1 -TERT REACTS_WITH RAD9A -TERT REACTS_WITH RPS6KB1 -TERT REACTS_WITH SMARCA4 -TERT REACTS_WITH SMG5 -TERT REACTS_WITH SMG6 -TERT REACTS_WITH TCF7L1 -TERT REACTS_WITH TERT -TERT REACTS_WITH XRCC5 -TERT REACTS_WITH XRCC6 -TERT REACTS_WITH YWHAE -TFCP2 IN_SAME_COMPONENT HDAC1 -TFCP2 IN_SAME_COMPONENT YY1 -TFCP2 REACTS_WITH HDAC1 -TFCP2 REACTS_WITH TFCP2 -TFCP2 REACTS_WITH YY1 -TFDP1 CO_CONTROL CEBPA -TFDP1 CO_CONTROL CEBPB -TFDP1 CO_CONTROL E2F1 -TFDP1 CO_CONTROL E2F4 -TFDP1 CO_CONTROL E2F7 -TFDP1 CO_CONTROL HDAC1 -TFDP1 CO_CONTROL MYBL2 -TFDP1 CO_CONTROL PRMT5 -TFDP1 CO_CONTROL RB1 -TFDP1 CO_CONTROL RBBP4 -TFDP1 CO_CONTROL SMARCA2 -TFDP1 CO_CONTROL SP1 -TFDP1 CO_CONTROL TFDP1 -TFDP1 CO_CONTROL TFDP2 -TFDP1 CO_CONTROL TP53 -TFDP1 CO_CONTROL TRIM28 -TFDP1 IN_SAME_COMPONENT AATF -TFDP1 IN_SAME_COMPONENT CBX4 -TFDP1 IN_SAME_COMPONENT CTBP1 -TFDP1 IN_SAME_COMPONENT DNMT1 -TFDP1 IN_SAME_COMPONENT E2F4 -TFDP1 IN_SAME_COMPONENT HDAC1 -TFDP1 IN_SAME_COMPONENT HDAC3 -TFDP1 IN_SAME_COMPONENT RB1 -TFDP1 IN_SAME_COMPONENT RBBP4 -TFDP1 IN_SAME_COMPONENT RBL1 -TFDP1 IN_SAME_COMPONENT SMAD4 -TFDP1 IN_SAME_COMPONENT SPI1 -TFDP1 IN_SAME_COMPONENT SUV39H1 -TFDP1 METABOLIC_CATALYSIS CASP7 -TFDP1 METABOLIC_CATALYSIS CAV1 -TFDP1 METABOLIC_CATALYSIS CCND3 -TFDP1 METABOLIC_CATALYSIS CDK1 -TFDP1 METABOLIC_CATALYSIS MCM3 -TFDP1 METABOLIC_CATALYSIS MYC -TFDP1 METABOLIC_CATALYSIS ORC1 -TFDP1 METABOLIC_CATALYSIS PLAU -TFDP1 METABOLIC_CATALYSIS RBL1 -TFDP1 METABOLIC_CATALYSIS SERPINE1 -TFDP1 REACTS_WITH AATF -TFDP1 REACTS_WITH CBX4 -TFDP1 REACTS_WITH CTBP1 -TFDP1 REACTS_WITH DNMT1 -TFDP1 REACTS_WITH E2F4 -TFDP1 REACTS_WITH ELF1 -TFDP1 REACTS_WITH GSC -TFDP1 REACTS_WITH HDAC1 -TFDP1 REACTS_WITH HDAC3 -TFDP1 REACTS_WITH RB1 -TFDP1 REACTS_WITH RBBP4 -TFDP1 REACTS_WITH SPI1 -TFDP1 REACTS_WITH SUV39H1 -TFDP1 REACTS_WITH TFDP1 -TFDP1 STATE_CHANGE MEF2C -TFDP1 STATE_CHANGE SPI1 -TFDP1 STATE_CHANGE TBP -TFDP2 CO_CONTROL E2F1 -TFDP2 CO_CONTROL E2F4 -TFDP2 CO_CONTROL MYBL2 -TFDP2 CO_CONTROL SP1 -TFDP2 CO_CONTROL TFDP1 -TFDP2 CO_CONTROL TFDP2 -TFDP2 IN_SAME_COMPONENT E2F4 -TFDP2 IN_SAME_COMPONENT HDAC1 -TFDP2 IN_SAME_COMPONENT KAT2A -TFDP2 IN_SAME_COMPONENT TRRAP -TFDP2 METABOLIC_CATALYSIS BRCA1 -TFDP2 METABOLIC_CATALYSIS CDC25A -TFDP2 METABOLIC_CATALYSIS CDK1 -TFDP2 METABOLIC_CATALYSIS DHFR -TFDP2 METABOLIC_CATALYSIS E2F1 -TFDP2 METABOLIC_CATALYSIS MYBL2 -TFDP2 METABOLIC_CATALYSIS MYC -TFDP2 REACTS_WITH E2F4 -TFDP2 REACTS_WITH HDAC1 -TFDP2 REACTS_WITH TFDP2 -TFE3 CO_CONTROL MAX -TFE3 CO_CONTROL SMAD4 -TFE3 IN_SAME_COMPONENT E2F3 -TFE3 IN_SAME_COMPONENT SMAD4 -TFE3 METABOLIC_CATALYSIS LAMC1 -TFE3 METABOLIC_CATALYSIS POLA1 -TFE3 METABOLIC_CATALYSIS RRM1 -TFE3 METABOLIC_CATALYSIS RRM2 -TFE3 METABOLIC_CATALYSIS SERPINE1 -TFE3 METABOLIC_CATALYSIS SMAD7 -TFE3 REACTS_WITH E2F3 -TFE3 REACTS_WITH SMAD4 -TFE3 REACTS_WITH TFE3 -TFPI IN_SAME_COMPONENT SDC4 -TFPI REACTS_WITH SDC4 -TFPI REACTS_WITH TFPI -TGFA IN_SAME_COMPONENT EGFR -TGFA IN_SAME_COMPONENT ERBB2 -TGFA IN_SAME_COMPONENT ERBB3 -TGFA REACTS_WITH EGFR -TGFA REACTS_WITH ERBB2 -TGFA REACTS_WITH ERBB3 -TGFA REACTS_WITH TGFA -TGFB1 CO_CONTROL ACVRL1 -TGFB1 CO_CONTROL ARRB2 -TGFB1 CO_CONTROL CAV1 -TGFB1 CO_CONTROL IL2 -TGFB1 CO_CONTROL IL6 -TGFB1 CO_CONTROL PPP1CA -TGFB1 CO_CONTROL PRKACA -TGFB1 CO_CONTROL STAT1 -TGFB1 CO_CONTROL STAT4 -TGFB1 CO_CONTROL TBX21 -TGFB1 CO_CONTROL TGFB1 -TGFB1 CO_CONTROL TGFBR1 -TGFB1 CO_CONTROL TGFBR2 -TGFB1I1 CO_CONTROL AR -TGFB1I1 CO_CONTROL PTK2B -TGFB1I1 METABOLIC_CATALYSIS KLK3 -TGFB1 IN_SAME_COMPONENT ACVRL1 -TGFB1 IN_SAME_COMPONENT CAV1 -TGFB1 IN_SAME_COMPONENT CSNK2B -TGFB1 IN_SAME_COMPONENT PPP1CA -TGFB1 IN_SAME_COMPONENT SDC2 -TGFB1 IN_SAME_COMPONENT TGFBR1 -TGFB1 IN_SAME_COMPONENT TGFBR2 -TGFB1 METABOLIC_CATALYSIS IFNG -TGFB1 METABOLIC_CATALYSIS IL17A -TGFB1 REACTS_WITH ACVRL1 -TGFB1 REACTS_WITH CAV1 -TGFB1 REACTS_WITH CSNK2B -TGFB1 REACTS_WITH FKBP1A -TGFB1 REACTS_WITH PPP1CA -TGFB1 REACTS_WITH SDC2 -TGFB1 REACTS_WITH TGFB1 -TGFB1 REACTS_WITH TGFBR1 -TGFB1 REACTS_WITH TGFBR2 -TGFB1 STATE_CHANGE SDC1 -TGFB2 METABOLIC_CATALYSIS PTHLH -TGFB3 IN_SAME_COMPONENT ACVRL1 -TGFB3 IN_SAME_COMPONENT TGFBR1 -TGFB3 IN_SAME_COMPONENT TGFBR2 -TGFB3 REACTS_WITH ACVRL1 -TGFB3 REACTS_WITH FKBP1A -TGFB3 REACTS_WITH TGFB3 -TGFB3 REACTS_WITH TGFBR1 -TGFB3 REACTS_WITH TGFBR2 -TGFBI IN_SAME_COMPONENT ITGA3 -TGFBI IN_SAME_COMPONENT ITGAM -TGFBI IN_SAME_COMPONENT ITGAV -TGFBI IN_SAME_COMPONENT ITGB1 -TGFBI IN_SAME_COMPONENT ITGB2 -TGFBI IN_SAME_COMPONENT ITGB3 -TGFBI REACTS_WITH ITGA3 -TGFBI REACTS_WITH ITGAM -TGFBI REACTS_WITH ITGAV -TGFBI REACTS_WITH ITGB1 -TGFBI REACTS_WITH ITGB2 -TGFBI REACTS_WITH ITGB3 -TGFBI REACTS_WITH TGFBI -TGFBR1 CO_CONTROL ACVRL1 -TGFBR1 CO_CONTROL CAMK2A -TGFBR1 CO_CONTROL CAV1 -TGFBR1 CO_CONTROL PPP1CA -TGFBR1 CO_CONTROL PPP2CA -TGFBR1 CO_CONTROL PPP2CB -TGFBR1 CO_CONTROL SMAD7 -TGFBR1 CO_CONTROL STRAP -TGFBR1 CO_CONTROL TGFB1 -TGFBR1 CO_CONTROL TGFBR1 -TGFBR1 CO_CONTROL TGFBR2 -TGFBR1 CO_CONTROL ZFYVE9 -TGFBR1 IN_SAME_COMPONENT ACVRL1 -TGFBR1 IN_SAME_COMPONENT BAMBI -TGFBR1 IN_SAME_COMPONENT CAV1 -TGFBR1 IN_SAME_COMPONENT CSNK2B -TGFBR1 IN_SAME_COMPONENT DAB2 -TGFBR1 IN_SAME_COMPONENT DAXX -TGFBR1 IN_SAME_COMPONENT DYNLRB1 -TGFBR1 IN_SAME_COMPONENT FKBP1A -TGFBR1 IN_SAME_COMPONENT GPC1 -TGFBR1 IN_SAME_COMPONENT ITGAV -TGFBR1 IN_SAME_COMPONENT ITGB8 -TGFBR1 IN_SAME_COMPONENT NEDD4L -TGFBR1 IN_SAME_COMPONENT OCLN -TGFBR1 IN_SAME_COMPONENT PARD6A -TGFBR1 IN_SAME_COMPONENT PPP1CA -TGFBR1 IN_SAME_COMPONENT PPP1R15A -TGFBR1 IN_SAME_COMPONENT PPP2R2A -TGFBR1 IN_SAME_COMPONENT SMAD2 -TGFBR1 IN_SAME_COMPONENT SMAD4 -TGFBR1 IN_SAME_COMPONENT SMAD7 -TGFBR1 IN_SAME_COMPONENT SMURF1 -TGFBR1 IN_SAME_COMPONENT STRAP -TGFBR1 IN_SAME_COMPONENT TGFB1 -TGFBR1 IN_SAME_COMPONENT TGFB3 -TGFBR1 IN_SAME_COMPONENT TGFBR2 -TGFBR1 IN_SAME_COMPONENT TGFBRAP1 -TGFBR1 IN_SAME_COMPONENT WWP1 -TGFBR1 IN_SAME_COMPONENT YAP1 -TGFBR1 IN_SAME_COMPONENT ZFYVE16 -TGFBR1 IN_SAME_COMPONENT ZFYVE9 -TGFBR1 REACTS_WITH ACVRL1 -TGFBR1 REACTS_WITH CAV1 -TGFBR1 REACTS_WITH CSNK2B -TGFBR1 REACTS_WITH DYNLRB1 -TGFBR1 REACTS_WITH FKBP1A -TGFBR1 REACTS_WITH GPC1 -TGFBR1 REACTS_WITH ITGAV -TGFBR1 REACTS_WITH ITGB8 -TGFBR1 REACTS_WITH NEDD4L -TGFBR1 REACTS_WITH OCLN -TGFBR1 REACTS_WITH PARD6A -TGFBR1 REACTS_WITH PPP1CA -TGFBR1 REACTS_WITH PPP1R15A -TGFBR1 REACTS_WITH PPP2R2A -TGFBR1 REACTS_WITH SMAD2 -TGFBR1 REACTS_WITH SMAD4 -TGFBR1 REACTS_WITH SMAD7 -TGFBR1 REACTS_WITH SMURF1 -TGFBR1 REACTS_WITH SMURF2 -TGFBR1 REACTS_WITH STRAP -TGFBR1 REACTS_WITH TGFB1 -TGFBR1 REACTS_WITH TGFB3 -TGFBR1 REACTS_WITH TGFBR1 -TGFBR1 REACTS_WITH TGFBR2 -TGFBR1 REACTS_WITH TGFBR3 -TGFBR1 REACTS_WITH TGFBRAP1 -TGFBR1 REACTS_WITH WWP1 -TGFBR1 REACTS_WITH YAP1 -TGFBR1 REACTS_WITH ZFYVE16 -TGFBR1 REACTS_WITH ZFYVE9 -TGFBR1 STATE_CHANGE AXIN1 -TGFBR1 STATE_CHANGE CTNNB1 -TGFBR1 STATE_CHANGE EIF2A -TGFBR1 STATE_CHANGE FKBP1A -TGFBR1 STATE_CHANGE MAP3K7 -TGFBR1 STATE_CHANGE RPS6KB1 -TGFBR1 STATE_CHANGE SHC1 -TGFBR1 STATE_CHANGE SMAD2 -TGFBR1 STATE_CHANGE SMAD7 -TGFBR1 STATE_CHANGE SPTBN1 -TGFBR1 STATE_CHANGE STRAP -TGFBR1 STATE_CHANGE TGFBR1 -TGFBR1 STATE_CHANGE TGFBR2 -TGFBR1 STATE_CHANGE TGFBR3 -TGFBR1 STATE_CHANGE XIAP -TGFBR2 CO_CONTROL ACVRL1 -TGFBR2 CO_CONTROL CAMK2A -TGFBR2 CO_CONTROL CAV1 -TGFBR2 CO_CONTROL PPP1CA -TGFBR2 CO_CONTROL PPP2CA -TGFBR2 CO_CONTROL PPP2CB -TGFBR2 CO_CONTROL SMAD7 -TGFBR2 CO_CONTROL STRAP -TGFBR2 CO_CONTROL TGFB1 -TGFBR2 CO_CONTROL TGFBR1 -TGFBR2 CO_CONTROL TGFBR2 -TGFBR2 CO_CONTROL ZFYVE9 -TGFBR2 IN_SAME_COMPONENT ACVRL1 -TGFBR2 IN_SAME_COMPONENT CAV1 -TGFBR2 IN_SAME_COMPONENT CSNK2B -TGFBR2 IN_SAME_COMPONENT DAB2 -TGFBR2 IN_SAME_COMPONENT DAXX -TGFBR2 IN_SAME_COMPONENT DYNLRB1 -TGFBR2 IN_SAME_COMPONENT GPC1 -TGFBR2 IN_SAME_COMPONENT ITGAV -TGFBR2 IN_SAME_COMPONENT ITGB3 -TGFBR2 IN_SAME_COMPONENT NEDD4L -TGFBR2 IN_SAME_COMPONENT OCLN -TGFBR2 IN_SAME_COMPONENT PARD6A -TGFBR2 IN_SAME_COMPONENT PPP1CA -TGFBR2 IN_SAME_COMPONENT PPP1R15A -TGFBR2 IN_SAME_COMPONENT PPP2R2A -TGFBR2 IN_SAME_COMPONENT SMAD2 -TGFBR2 IN_SAME_COMPONENT SMAD4 -TGFBR2 IN_SAME_COMPONENT SMAD7 -TGFBR2 IN_SAME_COMPONENT SMURF1 -TGFBR2 IN_SAME_COMPONENT STRAP -TGFBR2 IN_SAME_COMPONENT TGFB1 -TGFBR2 IN_SAME_COMPONENT TGFB3 -TGFBR2 IN_SAME_COMPONENT TGFBR1 -TGFBR2 IN_SAME_COMPONENT TGFBR3 -TGFBR2 IN_SAME_COMPONENT WWP1 -TGFBR2 IN_SAME_COMPONENT YAP1 -TGFBR2 IN_SAME_COMPONENT ZFYVE16 -TGFBR2 IN_SAME_COMPONENT ZFYVE9 -TGFBR2 REACTS_WITH ACVRL1 -TGFBR2 REACTS_WITH CAV1 -TGFBR2 REACTS_WITH CSNK2B -TGFBR2 REACTS_WITH DYNLRB1 -TGFBR2 REACTS_WITH FKBP1A -TGFBR2 REACTS_WITH GPC1 -TGFBR2 REACTS_WITH ITGAV -TGFBR2 REACTS_WITH ITGB3 -TGFBR2 REACTS_WITH NEDD4L -TGFBR2 REACTS_WITH OCLN -TGFBR2 REACTS_WITH PARD6A -TGFBR2 REACTS_WITH PPP1CA -TGFBR2 REACTS_WITH PPP1R15A -TGFBR2 REACTS_WITH PPP2R2A -TGFBR2 REACTS_WITH SMAD2 -TGFBR2 REACTS_WITH SMAD4 -TGFBR2 REACTS_WITH SMAD7 -TGFBR2 REACTS_WITH SMURF1 -TGFBR2 REACTS_WITH SMURF2 -TGFBR2 REACTS_WITH STRAP -TGFBR2 REACTS_WITH TGFB1 -TGFBR2 REACTS_WITH TGFB3 -TGFBR2 REACTS_WITH TGFBR1 -TGFBR2 REACTS_WITH TGFBR2 -TGFBR2 REACTS_WITH TGFBR3 -TGFBR2 REACTS_WITH TGFBRAP1 -TGFBR2 REACTS_WITH WWP1 -TGFBR2 REACTS_WITH YAP1 -TGFBR2 REACTS_WITH ZFYVE16 -TGFBR2 REACTS_WITH ZFYVE9 -TGFBR2 STATE_CHANGE AXIN1 -TGFBR2 STATE_CHANGE CTNNB1 -TGFBR2 STATE_CHANGE EIF2A -TGFBR2 STATE_CHANGE MAP3K7 -TGFBR2 STATE_CHANGE RPS6KB1 -TGFBR2 STATE_CHANGE SHC1 -TGFBR2 STATE_CHANGE SMAD2 -TGFBR2 STATE_CHANGE SMAD7 -TGFBR2 STATE_CHANGE SPTBN1 -TGFBR2 STATE_CHANGE STRAP -TGFBR2 STATE_CHANGE TGFBR1 -TGFBR2 STATE_CHANGE TGFBR2 -TGFBR2 STATE_CHANGE XIAP -TGFBR3 IN_SAME_COMPONENT ARRB2 -TGFBR3 IN_SAME_COMPONENT TGFBR2 -TGFBR3 REACTS_WITH ARRB2 -TGFBR3 REACTS_WITH FKBP1A -TGFBR3 REACTS_WITH OCLN -TGFBR3 REACTS_WITH PARD6A -TGFBR3 REACTS_WITH TGFBR1 -TGFBR3 REACTS_WITH TGFBR2 -TGFBR3 REACTS_WITH TGFBR3 -TGFBR3 REACTS_WITH TGFBRAP1 -TGFBRAP1 IN_SAME_COMPONENT SMAD4 -TGFBRAP1 IN_SAME_COMPONENT TGFBR1 -TGFBRAP1 REACTS_WITH SMAD2 -TGFBRAP1 REACTS_WITH SMAD4 -TGFBRAP1 REACTS_WITH TGFBR1 -TGFBRAP1 REACTS_WITH TGFBR2 -TGFBRAP1 REACTS_WITH TGFBR3 -TGFBRAP1 REACTS_WITH TGFBRAP1 -TGIF1 CO_CONTROL AR -TGIF1 CO_CONTROL CITED1 -TGIF1 IN_SAME_COMPONENT CTBP1 -TGIF1 IN_SAME_COMPONENT HDAC1 -TGIF1 IN_SAME_COMPONENT HDAC2 -TGIF1 IN_SAME_COMPONENT RBBP4 -TGIF1 IN_SAME_COMPONENT RBBP7 -TGIF1 IN_SAME_COMPONENT SAP18 -TGIF1 IN_SAME_COMPONENT SAP30 -TGIF1 IN_SAME_COMPONENT SIN3A -TGIF1 IN_SAME_COMPONENT SIN3B -TGIF1 METABOLIC_CATALYSIS KLK3 -TGIF1 STATE_CHANGE SMAD2 -TGIF1 STATE_CHANGE SMAD4 -TGIF2 IN_SAME_COMPONENT SMAD4 -TGIF2 REACTS_WITH SMAD4 -TGIF2 REACTS_WITH TGIF2 -TGM2 IN_SAME_COMPONENT GNG2 -TGM2 IN_SAME_COMPONENT ITGA4 -TGM2 IN_SAME_COMPONENT ITGA9 -TGM2 IN_SAME_COMPONENT ITGB1 -TGM2 REACTS_WITH GNG2 -TGM2 REACTS_WITH ITGA4 -TGM2 REACTS_WITH ITGA9 -TGM2 REACTS_WITH ITGB1 -TGM2 REACTS_WITH TGM2 -TGM2 STATE_CHANGE PLCB2 -THBS1 IN_SAME_COMPONENT CD47 -THBS1 IN_SAME_COMPONENT ITGA2B -THBS1 IN_SAME_COMPONENT ITGA3 -THBS1 IN_SAME_COMPONENT ITGA4 -THBS1 IN_SAME_COMPONENT ITGA6 -THBS1 IN_SAME_COMPONENT ITGB1 -THBS1 IN_SAME_COMPONENT ITGB3 -THBS1 IN_SAME_COMPONENT SDC4 -THBS1 REACTS_WITH CD47 -THBS1 REACTS_WITH ITGA2B -THBS1 REACTS_WITH ITGA3 -THBS1 REACTS_WITH ITGA4 -THBS1 REACTS_WITH ITGA6 -THBS1 REACTS_WITH ITGB1 -THBS1 REACTS_WITH ITGB3 -THBS1 REACTS_WITH SDC4 -THBS1 REACTS_WITH THBS1 -THBS1 REACTS_WITH VCAM1 -THBS2 IN_SAME_COMPONENT ITGA4 -THBS2 IN_SAME_COMPONENT ITGA6 -THBS2 IN_SAME_COMPONENT ITGB1 -THBS2 REACTS_WITH ITGA4 -THBS2 REACTS_WITH ITGA6 -THBS2 REACTS_WITH ITGB1 -THBS2 REACTS_WITH THBS2 -THY1 IN_SAME_COMPONENT ITGAM -THY1 IN_SAME_COMPONENT ITGAV -THY1 IN_SAME_COMPONENT ITGB2 -THY1 IN_SAME_COMPONENT ITGB3 -THY1 IN_SAME_COMPONENT SDC4 -THY1 REACTS_WITH ITGAM -THY1 REACTS_WITH ITGAV -THY1 REACTS_WITH ITGB2 -THY1 REACTS_WITH ITGB3 -THY1 REACTS_WITH SDC4 -THY1 REACTS_WITH THY1 -TIAM1 CO_CONTROL VAV2 -TIAM1 IN_SAME_COMPONENT EFNA1 -TIAM1 IN_SAME_COMPONENT EFNB1 -TIAM1 IN_SAME_COMPONENT EPHA2 -TIAM1 IN_SAME_COMPONENT NME1 -TIAM1 REACTS_WITH EFNA1 -TIAM1 REACTS_WITH EFNB1 -TIAM1 REACTS_WITH EPHA2 -TIAM1 REACTS_WITH NME1 -TIAM1 REACTS_WITH TIAM1 -TIAM1 STATE_CHANGE RAC1 -TIAM1 STATE_CHANGE RHOA -TIAM2 STATE_CHANGE RAC1 -TICAM1 IN_SAME_COMPONENT TLR3 -TICAM1 REACTS_WITH TICAM1 -TICAM1 REACTS_WITH TLR3 -TICAM2 IN_SAME_COMPONENT IL1B -TICAM2 IN_SAME_COMPONENT IL1R1 -TICAM2 IN_SAME_COMPONENT IRAK4 -TICAM2 STATE_CHANGE IRAK1 -TICAM2 STATE_CHANGE TRAF6 -TIMELESS IN_SAME_COMPONENT ATR -TIMELESS IN_SAME_COMPONENT ATRIP -TIMELESS IN_SAME_COMPONENT CEP164 -TIMELESS IN_SAME_COMPONENT CHEK1 -TIMELESS IN_SAME_COMPONENT CLSPN -TIMELESS IN_SAME_COMPONENT CRY2 -TIMELESS IN_SAME_COMPONENT HUS1 -TIMELESS IN_SAME_COMPONENT PER1 -TIMELESS IN_SAME_COMPONENT RAD1 -TIMELESS IN_SAME_COMPONENT RAD17 -TIMELESS IN_SAME_COMPONENT RAD9A -TIMELESS IN_SAME_COMPONENT RFC2 -TIMELESS IN_SAME_COMPONENT RFC3 -TIMELESS IN_SAME_COMPONENT RFC4 -TIMELESS IN_SAME_COMPONENT RFC5 -TIMELESS IN_SAME_COMPONENT RPA1 -TIMELESS IN_SAME_COMPONENT RPA2 -TIMELESS IN_SAME_COMPONENT TIPIN -TIMELESS IN_SAME_COMPONENT TOPBP1 -TIMELESS REACTS_WITH ATR -TIMELESS REACTS_WITH ATRIP -TIMELESS REACTS_WITH CEP164 -TIMELESS REACTS_WITH CHEK1 -TIMELESS REACTS_WITH CLSPN -TIMELESS REACTS_WITH CRY2 -TIMELESS REACTS_WITH HUS1 -TIMELESS REACTS_WITH PER1 -TIMELESS REACTS_WITH RAD1 -TIMELESS REACTS_WITH RAD17 -TIMELESS REACTS_WITH RAD9A -TIMELESS REACTS_WITH RFC2 -TIMELESS REACTS_WITH RFC3 -TIMELESS REACTS_WITH RFC4 -TIMELESS REACTS_WITH RFC5 -TIMELESS REACTS_WITH RPA1 -TIMELESS REACTS_WITH RPA2 -TIMELESS REACTS_WITH TIMELESS -TIMELESS REACTS_WITH TIPIN -TIMELESS REACTS_WITH TOPBP1 -TINF2 IN_SAME_COMPONENT ACD -TINF2 IN_SAME_COMPONENT POT1 -TINF2 IN_SAME_COMPONENT TERF1 -TINF2 REACTS_WITH ACD -TINF2 REACTS_WITH POT1 -TINF2 REACTS_WITH TERF1 -TINF2 REACTS_WITH TERF2 -TINF2 REACTS_WITH TERF2IP -TINF2 REACTS_WITH TINF2 -TIPIN IN_SAME_COMPONENT ATR -TIPIN IN_SAME_COMPONENT ATRIP -TIPIN IN_SAME_COMPONENT CEP164 -TIPIN IN_SAME_COMPONENT CHEK1 -TIPIN IN_SAME_COMPONENT CLSPN -TIPIN IN_SAME_COMPONENT HUS1 -TIPIN IN_SAME_COMPONENT RAD1 -TIPIN IN_SAME_COMPONENT RAD17 -TIPIN IN_SAME_COMPONENT RAD9A -TIPIN IN_SAME_COMPONENT RFC2 -TIPIN IN_SAME_COMPONENT RFC3 -TIPIN IN_SAME_COMPONENT RFC4 -TIPIN IN_SAME_COMPONENT RFC5 -TIPIN IN_SAME_COMPONENT RPA1 -TIPIN IN_SAME_COMPONENT RPA2 -TIPIN IN_SAME_COMPONENT TIMELESS -TIPIN IN_SAME_COMPONENT TOPBP1 -TIPIN REACTS_WITH ATR -TIPIN REACTS_WITH ATRIP -TIPIN REACTS_WITH CEP164 -TIPIN REACTS_WITH CHEK1 -TIPIN REACTS_WITH CLSPN -TIPIN REACTS_WITH HUS1 -TIPIN REACTS_WITH RAD1 -TIPIN REACTS_WITH RAD17 -TIPIN REACTS_WITH RAD9A -TIPIN REACTS_WITH RFC2 -TIPIN REACTS_WITH RFC3 -TIPIN REACTS_WITH RFC4 -TIPIN REACTS_WITH RFC5 -TIPIN REACTS_WITH RPA1 -TIPIN REACTS_WITH RPA2 -TIPIN REACTS_WITH TIMELESS -TIPIN REACTS_WITH TIPIN -TIPIN REACTS_WITH TOPBP1 -TIRAP IN_SAME_COMPONENT BGN -TIRAP IN_SAME_COMPONENT HMGB1 -TIRAP IN_SAME_COMPONENT HSPD1 -TIRAP IN_SAME_COMPONENT IRAK1 -TIRAP IN_SAME_COMPONENT IRAK2 -TIRAP IN_SAME_COMPONENT IRAK4 -TIRAP IN_SAME_COMPONENT LY96 -TIRAP IN_SAME_COMPONENT MYD88 -TIRAP IN_SAME_COMPONENT S100A8 -TIRAP IN_SAME_COMPONENT S100A9 -TIRAP IN_SAME_COMPONENT TLR1 -TIRAP IN_SAME_COMPONENT TLR2 -TIRAP IN_SAME_COMPONENT TLR4 -TIRAP REACTS_WITH BGN -TIRAP REACTS_WITH HMGB1 -TIRAP REACTS_WITH HSPD1 -TIRAP REACTS_WITH IRAK1 -TIRAP REACTS_WITH IRAK2 -TIRAP REACTS_WITH IRAK4 -TIRAP REACTS_WITH LY96 -TIRAP REACTS_WITH MYD88 -TIRAP REACTS_WITH S100A8 -TIRAP REACTS_WITH S100A9 -TIRAP REACTS_WITH TIRAP -TIRAP REACTS_WITH TLR1 -TIRAP REACTS_WITH TLR2 -TIRAP REACTS_WITH TLR4 -TIRAP STATE_CHANGE IRAK1 -TJP1 IN_SAME_COMPONENT KIRREL -TJP1 IN_SAME_COMPONENT NPHS1 -TJP1 REACTS_WITH KIRREL -TJP1 REACTS_WITH NPHS1 -TJP1 REACTS_WITH TJP1 -TJP2 IN_SAME_COMPONENT MAX -TJP2 IN_SAME_COMPONENT MYC -TJP2 IN_SAME_COMPONENT ZBTB17 -TJP2 REACTS_WITH MAX -TJP2 REACTS_WITH MYC -TJP2 REACTS_WITH TJP2 -TJP2 REACTS_WITH ZBTB17 -TLE1 CO_CONTROL CREBBP -TLE1 CO_CONTROL HES1 -TLE1 CO_CONTROL HES6 -TLE1 CO_CONTROL PARP1 -TLE1 IN_SAME_COMPONENT AES -TLE1 IN_SAME_COMPONENT CREBBP -TLE1 IN_SAME_COMPONENT CTBP1 -TLE1 IN_SAME_COMPONENT CTNNB1 -TLE1 IN_SAME_COMPONENT HDAC1 -TLE1 IN_SAME_COMPONENT HES1 -TLE1 IN_SAME_COMPONENT HNF1A -TLE1 IN_SAME_COMPONENT LEF1 -TLE1 IN_SAME_COMPONENT PARP1 -TLE1 IN_SAME_COMPONENT TCF4 -TLE1 METABOLIC_CATALYSIS ASCL1 -TLE1 METABOLIC_CATALYSIS CCND1 -TLE1 METABOLIC_CATALYSIS MYC -TLE1 METABOLIC_CATALYSIS PPARD -TLE1 METABOLIC_CATALYSIS RCAN1 -TLE1 REACTS_WITH AES -TLE1 REACTS_WITH CREBBP -TLE1 REACTS_WITH CTBP1 -TLE1 REACTS_WITH CTNNB1 -TLE1 REACTS_WITH HDAC1 -TLE1 REACTS_WITH HES1 -TLE1 REACTS_WITH HNF1A -TLE1 REACTS_WITH LEF1 -TLE1 REACTS_WITH PARP1 -TLE1 REACTS_WITH TBL1X -TLE1 REACTS_WITH TBL1XR1 -TLE1 REACTS_WITH TCF4 -TLE1 REACTS_WITH TLE1 -TLE2 IN_SAME_COMPONENT LEF1 -TLE2 IN_SAME_COMPONENT TCF7 -TLE2 IN_SAME_COMPONENT TCF7L1 -TLE2 IN_SAME_COMPONENT TCF7L2 -TLE2 REACTS_WITH CTNNB1 -TLE2 REACTS_WITH LEF1 -TLE2 REACTS_WITH TCF7 -TLE2 REACTS_WITH TCF7L1 -TLE2 REACTS_WITH TCF7L2 -TLE2 REACTS_WITH TLE2 -TLE4 IN_SAME_COMPONENT TCF7L2 -TLE4 REACTS_WITH CTNNB1 -TLE4 REACTS_WITH TCF7L2 -TLE4 REACTS_WITH TLE4 -TLN1 IN_SAME_COMPONENT ITGA4 -TLN1 IN_SAME_COMPONENT ITGAM -TLN1 IN_SAME_COMPONENT ITGAV -TLN1 IN_SAME_COMPONENT ITGB1 -TLN1 IN_SAME_COMPONENT ITGB2 -TLN1 IN_SAME_COMPONENT ITGB3 -TLN1 IN_SAME_COMPONENT PIP5K1C -TLN1 IN_SAME_COMPONENT PXN -TLN1 IN_SAME_COMPONENT VCAM1 -TLN1 IN_SAME_COMPONENT VCL -TLN1 REACTS_WITH ITGA4 -TLN1 REACTS_WITH ITGAM -TLN1 REACTS_WITH ITGAV -TLN1 REACTS_WITH ITGB1 -TLN1 REACTS_WITH ITGB2 -TLN1 REACTS_WITH ITGB3 -TLN1 REACTS_WITH PIP5K1C -TLN1 REACTS_WITH PXN -TLN1 REACTS_WITH TLN1 -TLN1 REACTS_WITH VCAM1 -TLN1 REACTS_WITH VCL -TLR1 IN_SAME_COMPONENT BGN -TLR1 IN_SAME_COMPONENT HMGB1 -TLR1 IN_SAME_COMPONENT HSPD1 -TLR1 IN_SAME_COMPONENT IRAK1 -TLR1 IN_SAME_COMPONENT IRAK2 -TLR1 IN_SAME_COMPONENT IRAK4 -TLR1 IN_SAME_COMPONENT LY96 -TLR1 IN_SAME_COMPONENT MYD88 -TLR1 IN_SAME_COMPONENT SAA1 -TLR1 IN_SAME_COMPONENT TIRAP -TLR1 IN_SAME_COMPONENT TLR2 -TLR1 IN_SAME_COMPONENT VCAN -TLR1 REACTS_WITH BGN -TLR1 REACTS_WITH HMGB1 -TLR1 REACTS_WITH HSPD1 -TLR1 REACTS_WITH IRAK1 -TLR1 REACTS_WITH IRAK2 -TLR1 REACTS_WITH IRAK4 -TLR1 REACTS_WITH LY96 -TLR1 REACTS_WITH MYD88 -TLR1 REACTS_WITH SAA1 -TLR1 REACTS_WITH TIRAP -TLR1 REACTS_WITH TLR1 -TLR1 REACTS_WITH TLR2 -TLR1 REACTS_WITH TLR6 -TLR1 REACTS_WITH VCAN -TLR2 IN_SAME_COMPONENT BGN -TLR2 IN_SAME_COMPONENT HMGB1 -TLR2 IN_SAME_COMPONENT HSPD1 -TLR2 IN_SAME_COMPONENT IRAK1 -TLR2 IN_SAME_COMPONENT IRAK2 -TLR2 IN_SAME_COMPONENT IRAK4 -TLR2 IN_SAME_COMPONENT LY96 -TLR2 IN_SAME_COMPONENT MYD88 -TLR2 IN_SAME_COMPONENT SAA1 -TLR2 IN_SAME_COMPONENT TIRAP -TLR2 IN_SAME_COMPONENT TLR1 -TLR2 IN_SAME_COMPONENT TLR6 -TLR2 IN_SAME_COMPONENT VCAN -TLR2 REACTS_WITH BGN -TLR2 REACTS_WITH HMGB1 -TLR2 REACTS_WITH HSPD1 -TLR2 REACTS_WITH IRAK1 -TLR2 REACTS_WITH IRAK2 -TLR2 REACTS_WITH IRAK4 -TLR2 REACTS_WITH LY96 -TLR2 REACTS_WITH MYD88 -TLR2 REACTS_WITH SAA1 -TLR2 REACTS_WITH TIRAP -TLR2 REACTS_WITH TLR1 -TLR2 REACTS_WITH TLR2 -TLR2 REACTS_WITH TLR6 -TLR2 REACTS_WITH VCAN -TLR3 IN_SAME_COMPONENT TICAM1 -TLR3 REACTS_WITH TICAM1 -TLR3 REACTS_WITH TLR3 -TLR4 IN_SAME_COMPONENT BGN -TLR4 IN_SAME_COMPONENT HMGB1 -TLR4 IN_SAME_COMPONENT HSPD1 -TLR4 IN_SAME_COMPONENT IRAK1 -TLR4 IN_SAME_COMPONENT IRAK2 -TLR4 IN_SAME_COMPONENT IRAK4 -TLR4 IN_SAME_COMPONENT LY96 -TLR4 IN_SAME_COMPONENT MYD88 -TLR4 IN_SAME_COMPONENT S100A8 -TLR4 IN_SAME_COMPONENT S100A9 -TLR4 IN_SAME_COMPONENT TIRAP -TLR4 REACTS_WITH BGN -TLR4 REACTS_WITH HMGB1 -TLR4 REACTS_WITH HSPD1 -TLR4 REACTS_WITH IRAK1 -TLR4 REACTS_WITH IRAK2 -TLR4 REACTS_WITH IRAK4 -TLR4 REACTS_WITH LY96 -TLR4 REACTS_WITH MYD88 -TLR4 REACTS_WITH S100A8 -TLR4 REACTS_WITH S100A9 -TLR4 REACTS_WITH TIRAP -TLR4 REACTS_WITH TLR4 -TLR4 STATE_CHANGE IRAK1 -TLR4 STATE_CHANGE RHOA -TLR6 IN_SAME_COMPONENT TLR2 -TLR6 REACTS_WITH TLR1 -TLR6 REACTS_WITH TLR2 -TLR6 REACTS_WITH TLR6 -TLR6 REACTS_WITH VCAN -TMF1 CO_CONTROL AR -TMF1 METABOLIC_CATALYSIS KLK3 -TNC IN_SAME_COMPONENT ITGA2 -TNC IN_SAME_COMPONENT ITGA7 -TNC IN_SAME_COMPONENT ITGA8 -TNC IN_SAME_COMPONENT ITGA9 -TNC IN_SAME_COMPONENT ITGB1 -TNC IN_SAME_COMPONENT PXN -TNC IN_SAME_COMPONENT SAT1 -TNC IN_SAME_COMPONENT SDC4 -TNC REACTS_WITH ITGA2 -TNC REACTS_WITH ITGA7 -TNC REACTS_WITH ITGA8 -TNC REACTS_WITH ITGA9 -TNC REACTS_WITH ITGAV -TNC REACTS_WITH ITGB1 -TNC REACTS_WITH ITGB3 -TNC REACTS_WITH PXN -TNC REACTS_WITH SAT1 -TNC REACTS_WITH SDC4 -TNC REACTS_WITH TNC -TNC STATE_CHANGE SRC -TNFAIP3 REACTS_WITH CHUK -TNFAIP3 REACTS_WITH IKBKB -TNFAIP3 REACTS_WITH IKBKG -TNFAIP3 REACTS_WITH RIPK2 -TNFAIP3 STATE_CHANGE RIPK1 -TNFAIP3 STATE_CHANGE TNF -TNFAIP3 STATE_CHANGE TNFRSF1A -TNFAIP3 STATE_CHANGE TRADD -TNFAIP3 STATE_CHANGE TRAF2 -TNF CO_CONTROL BIRC3 -TNF CO_CONTROL CASP6 -TNF CO_CONTROL CRADD -TNF CO_CONTROL CTSD -TNF CO_CONTROL MADD -TNF CO_CONTROL NSMAF -TNF CO_CONTROL RIPK1 -TNF CO_CONTROL TNF -TNF CO_CONTROL TNFRSF1A -TNF CO_CONTROL TRADD -TNF CO_CONTROL TRAF2 -TNF IN_SAME_COMPONENT BAG4 -TNF IN_SAME_COMPONENT BIRC2 -TNF IN_SAME_COMPONENT BIRC3 -TNF IN_SAME_COMPONENT CASP2 -TNF IN_SAME_COMPONENT CRADD -TNF IN_SAME_COMPONENT FADD -TNF IN_SAME_COMPONENT LRDD -TNF IN_SAME_COMPONENT MADD -TNF IN_SAME_COMPONENT MAP3K3 -TNF IN_SAME_COMPONENT MAP3K5 -TNF IN_SAME_COMPONENT MAP3K7 -TNF IN_SAME_COMPONENT NSMAF -TNF IN_SAME_COMPONENT RIPK1 -TNF IN_SAME_COMPONENT SMPD2 -TNF IN_SAME_COMPONENT SQSTM1 -TNF IN_SAME_COMPONENT STAT1 -TNF IN_SAME_COMPONENT TNFRSF1A -TNF IN_SAME_COMPONENT TNFRSF1B -TNF IN_SAME_COMPONENT TRADD -TNF IN_SAME_COMPONENT TRAF1 -TNF IN_SAME_COMPONENT TRAF2 -TNF METABOLIC_CATALYSIS ANGPT1 -TNF METABOLIC_CATALYSIS IL23A -TNF METABOLIC_CATALYSIS TFAP2A -TNF METABOLIC_CATALYSIS TNFAIP3 -TNF REACTS_WITH BAG4 -TNF REACTS_WITH BIRC2 -TNF REACTS_WITH BIRC3 -TNF REACTS_WITH CASP2 -TNF REACTS_WITH CRADD -TNF REACTS_WITH FADD -TNF REACTS_WITH MADD -TNF REACTS_WITH MAP3K3 -TNF REACTS_WITH MAP3K5 -TNF REACTS_WITH MAP3K7 -TNF REACTS_WITH NSMAF -TNF REACTS_WITH RIPK1 -TNF REACTS_WITH SMPD2 -TNF REACTS_WITH SQSTM1 -TNF REACTS_WITH STAT1 -TNF REACTS_WITH TNF -TNF REACTS_WITH TNFRSF1A -TNF REACTS_WITH TNFRSF1B -TNF REACTS_WITH TRADD -TNF REACTS_WITH TRAF1 -TNF REACTS_WITH TRAF2 -TNFRSF10A IN_SAME_COMPONENT DAP3 -TNFRSF10A IN_SAME_COMPONENT FADD -TNFRSF10A IN_SAME_COMPONENT RIPK1 -TNFRSF10A IN_SAME_COMPONENT TNFSF10 -TNFRSF10A IN_SAME_COMPONENT TRADD -TNFRSF10A IN_SAME_COMPONENT TRAF2 -TNFRSF10A REACTS_WITH DAP3 -TNFRSF10A REACTS_WITH FADD -TNFRSF10A REACTS_WITH RIPK1 -TNFRSF10A REACTS_WITH TNFRSF10A -TNFRSF10A REACTS_WITH TNFSF10 -TNFRSF10A REACTS_WITH TRADD -TNFRSF10A REACTS_WITH TRAF2 -TNFRSF10A STATE_CHANGE CASP10 -TNFRSF10A STATE_CHANGE CASP8 -TNFRSF10A STATE_CHANGE MAP3K1 -TNFRSF10B IN_SAME_COMPONENT FADD -TNFRSF10B IN_SAME_COMPONENT RIPK1 -TNFRSF10B IN_SAME_COMPONENT TNFSF10 -TNFRSF10B IN_SAME_COMPONENT TRADD -TNFRSF10B IN_SAME_COMPONENT TRAF2 -TNFRSF10B REACTS_WITH FADD -TNFRSF10B REACTS_WITH RIPK1 -TNFRSF10B REACTS_WITH TNFRSF10B -TNFRSF10B REACTS_WITH TNFSF10 -TNFRSF10B REACTS_WITH TRADD -TNFRSF10B REACTS_WITH TRAF2 -TNFRSF10B STATE_CHANGE CASP10 -TNFRSF10B STATE_CHANGE CASP8 -TNFRSF10B STATE_CHANGE MAP3K1 -TNFRSF10B STATE_CHANGE SMPD1 -TNFRSF10C IN_SAME_COMPONENT TNFSF10 -TNFRSF10C REACTS_WITH TNFRSF10C -TNFRSF10C REACTS_WITH TNFSF10 -TNFRSF10D IN_SAME_COMPONENT TNFSF10 -TNFRSF10D REACTS_WITH TNFRSF10D -TNFRSF10D REACTS_WITH TNFSF10 -TNFRSF10D STATE_CHANGE CASP10 -TNFRSF13B IN_SAME_COMPONENT SDC2 -TNFRSF13B IN_SAME_COMPONENT SDC4 -TNFRSF13B REACTS_WITH SDC2 -TNFRSF13B REACTS_WITH SDC4 -TNFRSF13B REACTS_WITH TNFRSF13B -TNFRSF1A CO_CONTROL BIRC3 -TNFRSF1A CO_CONTROL CRADD -TNFRSF1A CO_CONTROL CTSD -TNFRSF1A CO_CONTROL MADD -TNFRSF1A CO_CONTROL NSMAF -TNFRSF1A CO_CONTROL RIPK1 -TNFRSF1A CO_CONTROL TNF -TNFRSF1A CO_CONTROL TNFRSF1A -TNFRSF1A CO_CONTROL TRADD -TNFRSF1A CO_CONTROL TRAF2 -TNFRSF1A IN_SAME_COMPONENT BAG4 -TNFRSF1A IN_SAME_COMPONENT BIRC2 -TNFRSF1A IN_SAME_COMPONENT BIRC3 -TNFRSF1A IN_SAME_COMPONENT CASP2 -TNFRSF1A IN_SAME_COMPONENT CRADD -TNFRSF1A IN_SAME_COMPONENT FADD -TNFRSF1A IN_SAME_COMPONENT LRDD -TNFRSF1A IN_SAME_COMPONENT MADD -TNFRSF1A IN_SAME_COMPONENT MAP3K3 -TNFRSF1A IN_SAME_COMPONENT MAP3K5 -TNFRSF1A IN_SAME_COMPONENT MAP3K7 -TNFRSF1A IN_SAME_COMPONENT NSMAF -TNFRSF1A IN_SAME_COMPONENT RIPK1 -TNFRSF1A IN_SAME_COMPONENT SMPD2 -TNFRSF1A IN_SAME_COMPONENT SQSTM1 -TNFRSF1A IN_SAME_COMPONENT STAT1 -TNFRSF1A IN_SAME_COMPONENT TNF -TNFRSF1A IN_SAME_COMPONENT TRADD -TNFRSF1A IN_SAME_COMPONENT TRAF1 -TNFRSF1A IN_SAME_COMPONENT TRAF2 -TNFRSF1A METABOLIC_CATALYSIS TNFAIP3 -TNFRSF1A REACTS_WITH BAG4 -TNFRSF1A REACTS_WITH BIRC2 -TNFRSF1A REACTS_WITH BIRC3 -TNFRSF1A REACTS_WITH CASP2 -TNFRSF1A REACTS_WITH CRADD -TNFRSF1A REACTS_WITH FADD -TNFRSF1A REACTS_WITH MADD -TNFRSF1A REACTS_WITH MAP3K3 -TNFRSF1A REACTS_WITH MAP3K5 -TNFRSF1A REACTS_WITH MAP3K7 -TNFRSF1A REACTS_WITH NSMAF -TNFRSF1A REACTS_WITH RIPK1 -TNFRSF1A REACTS_WITH SMPD2 -TNFRSF1A REACTS_WITH SQSTM1 -TNFRSF1A REACTS_WITH STAT1 -TNFRSF1A REACTS_WITH TNF -TNFRSF1A REACTS_WITH TNFRSF1A -TNFRSF1A REACTS_WITH TNFRSF1B -TNFRSF1A REACTS_WITH TRADD -TNFRSF1A REACTS_WITH TRAF1 -TNFRSF1A REACTS_WITH TRAF2 -TNFRSF1A STATE_CHANGE BID -TNFRSF1A STATE_CHANGE CASP2 -TNFRSF1A STATE_CHANGE CASP8 -TNFRSF1A STATE_CHANGE CHUK -TNFRSF1A STATE_CHANGE FADD -TNFRSF1A STATE_CHANGE HDAC3 -TNFRSF1A STATE_CHANGE IKBKB -TNFRSF1A STATE_CHANGE IKBKG -TNFRSF1A STATE_CHANGE MAP2K3 -TNFRSF1A STATE_CHANGE MAP2K7 -TNFRSF1A STATE_CHANGE MAP3K14 -TNFRSF1A STATE_CHANGE MAP3K5 -TNFRSF1A STATE_CHANGE MAP4K4 -TNFRSF1A STATE_CHANGE NFKB1 -TNFRSF1A STATE_CHANGE NFKBIA -TNFRSF1A STATE_CHANGE PPARG -TNFRSF1A STATE_CHANGE RELA -TNFRSF1A STATE_CHANGE SMPD1 -TNFRSF1A STATE_CHANGE SMPD3 -TNFRSF1A STATE_CHANGE TNF -TNFRSF1A STATE_CHANGE TNFRSF1A -TNFRSF1A STATE_CHANGE TRADD -TNFRSF1A STATE_CHANGE TRAF2 -TNFRSF1A STATE_CHANGE TXN -TNFRSF1B IN_SAME_COMPONENT BIRC2 -TNFRSF1B IN_SAME_COMPONENT BIRC3 -TNFRSF1B IN_SAME_COMPONENT TNF -TNFRSF1B IN_SAME_COMPONENT TRAF1 -TNFRSF1B IN_SAME_COMPONENT TRAF2 -TNFRSF1B REACTS_WITH BIRC2 -TNFRSF1B REACTS_WITH BIRC3 -TNFRSF1B REACTS_WITH RIPK1 -TNFRSF1B REACTS_WITH TNF -TNFRSF1B REACTS_WITH TNFRSF1A -TNFRSF1B REACTS_WITH TNFRSF1B -TNFRSF1B REACTS_WITH TRADD -TNFRSF1B REACTS_WITH TRAF1 -TNFRSF1B REACTS_WITH TRAF2 -TNFSF10 IN_SAME_COMPONENT DAP3 -TNFSF10 IN_SAME_COMPONENT FADD -TNFSF10 IN_SAME_COMPONENT RIPK1 -TNFSF10 IN_SAME_COMPONENT TNFRSF10A -TNFSF10 IN_SAME_COMPONENT TNFRSF10B -TNFSF10 IN_SAME_COMPONENT TNFRSF10C -TNFSF10 IN_SAME_COMPONENT TNFRSF10D -TNFSF10 IN_SAME_COMPONENT TRADD -TNFSF10 IN_SAME_COMPONENT TRAF2 -TNFSF10 REACTS_WITH DAP3 -TNFSF10 REACTS_WITH FADD -TNFSF10 REACTS_WITH RIPK1 -TNFSF10 REACTS_WITH TNFRSF10A -TNFSF10 REACTS_WITH TNFRSF10B -TNFSF10 REACTS_WITH TNFRSF10C -TNFSF10 REACTS_WITH TNFRSF10D -TNFSF10 REACTS_WITH TNFSF10 -TNFSF10 REACTS_WITH TRADD -TNFSF10 REACTS_WITH TRAF2 -TNFSF10 STATE_CHANGE CASP10 -TNFSF10 STATE_CHANGE CASP8 -TNFSF10 STATE_CHANGE MAP3K1 -TNFSF10 STATE_CHANGE SMPD1 -TNF STATE_CHANGE BID -TNF STATE_CHANGE CASP2 -TNF STATE_CHANGE CASP8 -TNF STATE_CHANGE CHUK -TNF STATE_CHANGE FADD -TNF STATE_CHANGE HDAC3 -TNF STATE_CHANGE IKBKB -TNF STATE_CHANGE IKBKG -TNF STATE_CHANGE MAP2K3 -TNF STATE_CHANGE MAP2K7 -TNF STATE_CHANGE MAP3K14 -TNF STATE_CHANGE MAP3K5 -TNF STATE_CHANGE MAP4K4 -TNF STATE_CHANGE NFKB1 -TNF STATE_CHANGE NFKBIA -TNF STATE_CHANGE PPARG -TNF STATE_CHANGE RELA -TNF STATE_CHANGE SMPD1 -TNF STATE_CHANGE SMPD3 -TNF STATE_CHANGE TNF -TNF STATE_CHANGE TNFRSF1A -TNF STATE_CHANGE TRADD -TNF STATE_CHANGE TRAF2 -TNF STATE_CHANGE TXN -TNF STATE_CHANGE VCAM1 -TNIK IN_SAME_COMPONENT CTNNB1 -TNIK IN_SAME_COMPONENT TCF7L2 -TNIK METABOLIC_CATALYSIS AXIN2 -TNIK METABOLIC_CATALYSIS MYC -TNIK REACTS_WITH CTNNB1 -TNIK REACTS_WITH TCF7L2 -TNIK REACTS_WITH TNIK -TNIP2 IN_SAME_COMPONENT ANGPT1 -TNIP2 IN_SAME_COMPONENT TEK -TNIP2 REACTS_WITH ANGPT1 -TNIP2 REACTS_WITH TEK -TNIP2 REACTS_WITH TNIP2 -TNK2 IN_SAME_COMPONENT CDC42 -TNK2 REACTS_WITH CDC42 -TNK2 REACTS_WITH TNK2 -TNK2 STATE_CHANGE BCAR1 -TNKS IN_SAME_COMPONENT TERF1 -TNKS REACTS_WITH TERF1 -TNKS REACTS_WITH TNKS -TOLLIP IN_SAME_COMPONENT IL1A -TOLLIP IN_SAME_COMPONENT IL1B -TOLLIP IN_SAME_COMPONENT IL1R1 -TOLLIP IN_SAME_COMPONENT IRAK1 -TOLLIP IN_SAME_COMPONENT IRAK4 -TOLLIP IN_SAME_COMPONENT MYD88 -TOLLIP REACTS_WITH IL1A -TOLLIP REACTS_WITH IL1B -TOLLIP REACTS_WITH IL1R1 -TOLLIP REACTS_WITH IRAK1 -TOLLIP REACTS_WITH IRAK4 -TOLLIP REACTS_WITH MYD88 -TOLLIP REACTS_WITH TOLLIP -TOLLIP REACTS_WITH TRAF6 -TOP3A IN_SAME_COMPONENT BLM -TOP3A REACTS_WITH BLM -TOPBP1 CO_CONTROL E2F1 -TOPBP1 IN_SAME_COMPONENT ATR -TOPBP1 IN_SAME_COMPONENT ATRIP -TOPBP1 IN_SAME_COMPONENT BARD1 -TOPBP1 IN_SAME_COMPONENT BRCA1 -TOPBP1 IN_SAME_COMPONENT CDC6 -TOPBP1 IN_SAME_COMPONENT CEP164 -TOPBP1 IN_SAME_COMPONENT CHEK1 -TOPBP1 IN_SAME_COMPONENT CLSPN -TOPBP1 IN_SAME_COMPONENT E2F1 -TOPBP1 IN_SAME_COMPONENT HUS1 -TOPBP1 IN_SAME_COMPONENT RAD1 -TOPBP1 IN_SAME_COMPONENT RAD17 -TOPBP1 IN_SAME_COMPONENT RAD9A -TOPBP1 IN_SAME_COMPONENT RFC2 -TOPBP1 IN_SAME_COMPONENT RFC3 -TOPBP1 IN_SAME_COMPONENT RFC4 -TOPBP1 IN_SAME_COMPONENT RFC5 -TOPBP1 IN_SAME_COMPONENT RPA1 -TOPBP1 IN_SAME_COMPONENT RPA2 -TOPBP1 IN_SAME_COMPONENT SMARCAL1 -TOPBP1 IN_SAME_COMPONENT TIMELESS -TOPBP1 IN_SAME_COMPONENT TIPIN -TOPBP1 REACTS_WITH ATR -TOPBP1 REACTS_WITH ATRIP -TOPBP1 REACTS_WITH BARD1 -TOPBP1 REACTS_WITH BRCA1 -TOPBP1 REACTS_WITH CDC6 -TOPBP1 REACTS_WITH CEP164 -TOPBP1 REACTS_WITH CHEK1 -TOPBP1 REACTS_WITH CLSPN -TOPBP1 REACTS_WITH E2F1 -TOPBP1 REACTS_WITH HUS1 -TOPBP1 REACTS_WITH RAD1 -TOPBP1 REACTS_WITH RAD17 -TOPBP1 REACTS_WITH RAD9A -TOPBP1 REACTS_WITH RFC2 -TOPBP1 REACTS_WITH RFC3 -TOPBP1 REACTS_WITH RFC4 -TOPBP1 REACTS_WITH RFC5 -TOPBP1 REACTS_WITH RPA1 -TOPBP1 REACTS_WITH RPA2 -TOPBP1 REACTS_WITH SMARCAL1 -TOPBP1 REACTS_WITH TIMELESS -TOPBP1 REACTS_WITH TIPIN -TOPBP1 REACTS_WITH TOPBP1 -TOPBP1 STATE_CHANGE FANCD2 -TOPBP1 STATE_CHANGE MCM2 -TOPBP1 STATE_CHANGE MDM2 -TOPBP1 STATE_CHANGE NBN -TOR1A IN_SAME_COMPONENT SNCA -TOR1A METABOLIC_CATALYSIS SNCA -TOR1A REACTS_WITH SNCA -TOR1A REACTS_WITH TOR1A -TP53BP1 IN_SAME_COMPONENT ATM -TP53BP1 IN_SAME_COMPONENT BRCA1 -TP53BP1 IN_SAME_COMPONENT FAM175A -TP53BP1 IN_SAME_COMPONENT H2AFX -TP53BP1 IN_SAME_COMPONENT MDC1 -TP53BP1 IN_SAME_COMPONENT MRE11A -TP53BP1 IN_SAME_COMPONENT NBN -TP53BP1 IN_SAME_COMPONENT RAD50 -TP53BP1 IN_SAME_COMPONENT RNF8 -TP53BP1 IN_SAME_COMPONENT UIMC1 -TP53BP1 METABOLIC_CATALYSIS SMC3 -TP53BP1 REACTS_WITH ATM -TP53BP1 REACTS_WITH BRCA1 -TP53BP1 REACTS_WITH CTBP1 -TP53BP1 REACTS_WITH FAM175A -TP53BP1 REACTS_WITH H2AFX -TP53BP1 REACTS_WITH MDC1 -TP53BP1 REACTS_WITH MRE11A -TP53BP1 REACTS_WITH NBN -TP53BP1 REACTS_WITH RAD50 -TP53BP1 REACTS_WITH RBBP8 -TP53BP1 REACTS_WITH RNF8 -TP53BP1 REACTS_WITH TP53BP1 -TP53BP1 REACTS_WITH UIMC1 -TP53BP1 STATE_CHANGE CHEK2 -TP53BP1 STATE_CHANGE DCLRE1C -TP53BP1 STATE_CHANGE SMC1A -TP53BP1 STATE_CHANGE TRIM28 -TP53 CO_CONTROL CEBPZ -TP53 CO_CONTROL CSE1L -TP53 CO_CONTROL FOXA1 -TP53 CO_CONTROL HDAC2 -TP53 CO_CONTROL JMY -TP53 CO_CONTROL JUN -TP53 CO_CONTROL MDM2 -TP53 CO_CONTROL POU4F1 -TP53 CO_CONTROL POU4F2 -TP53 CO_CONTROL SMARCA4 -TP53 CO_CONTROL SMYD2 -TP53 CO_CONTROL SNAI2 -TP53 CO_CONTROL SP1 -TP53 CO_CONTROL TADA2B -TP53 CO_CONTROL TAF9 -TP53 CO_CONTROL TFDP1 -TP53 CO_CONTROL TP53 -TP53 CO_CONTROL TRRAP -TP53 CO_CONTROL UBE2D1 -TP53 CO_CONTROL ZNF385A -TP53 IN_SAME_COMPONENT BAK1 -TP53 IN_SAME_COMPONENT BARD1 -TP53 IN_SAME_COMPONENT BRCA1 -TP53 IN_SAME_COMPONENT CARM1 -TP53 IN_SAME_COMPONENT DDX5 -TP53 IN_SAME_COMPONENT DGCR8 -TP53 IN_SAME_COMPONENT DROSHA -TP53 IN_SAME_COMPONENT HIF1A -TP53 IN_SAME_COMPONENT NEDD8 -TP53 IN_SAME_COMPONENT NFYA -TP53 IN_SAME_COMPONENT NFYB -TP53 IN_SAME_COMPONENT NFYC -TP53 IN_SAME_COMPONENT PIN1 -TP53 IN_SAME_COMPONENT PRKDC -TP53 IN_SAME_COMPONENT PRMT1 -TP53 IN_SAME_COMPONENT SIRT1 -TP53 IN_SAME_COMPONENT SP1 -TP53 IN_SAME_COMPONENT XRCC5 -TP53 IN_SAME_COMPONENT XRCC6 -TP53 METABOLIC_CATALYSIS AFP -TP53 METABOLIC_CATALYSIS AIFM2 -TP53 METABOLIC_CATALYSIS APAF1 -TP53 METABOLIC_CATALYSIS APC -TP53 METABOLIC_CATALYSIS ARID3A -TP53 METABOLIC_CATALYSIS ATF3 -TP53 METABOLIC_CATALYSIS BAX -TP53 METABOLIC_CATALYSIS BBC3 -TP53 METABOLIC_CATALYSIS BCL2 -TP53 METABOLIC_CATALYSIS BCL2L14 -TP53 METABOLIC_CATALYSIS BCL6 -TP53 METABOLIC_CATALYSIS BDKRB2 -TP53 METABOLIC_CATALYSIS BID -TP53 METABOLIC_CATALYSIS BNIP3L -TP53 METABOLIC_CATALYSIS BTG2 -TP53 METABOLIC_CATALYSIS CASP1 -TP53 METABOLIC_CATALYSIS CASP10 -TP53 METABOLIC_CATALYSIS CASP6 -TP53 METABOLIC_CATALYSIS CAV1 -TP53 METABOLIC_CATALYSIS CCNB1 -TP53 METABOLIC_CATALYSIS CCNG1 -TP53 METABOLIC_CATALYSIS CCNK -TP53 METABOLIC_CATALYSIS CD82 -TP53 METABOLIC_CATALYSIS CDKN1A -TP53 METABOLIC_CATALYSIS COL18A1 -TP53 METABOLIC_CATALYSIS CTSD -TP53 METABOLIC_CATALYSIS CX3CL1 -TP53 METABOLIC_CATALYSIS DDB2 -TP53 METABOLIC_CATALYSIS DDIT4 -TP53 METABOLIC_CATALYSIS DKK1 -TP53 METABOLIC_CATALYSIS DUSP1 -TP53 METABOLIC_CATALYSIS DUSP5 -TP53 METABOLIC_CATALYSIS EDN2 -TP53 METABOLIC_CATALYSIS EGFR -TP53 METABOLIC_CATALYSIS EPHA2 -TP53 METABOLIC_CATALYSIS FAS -TP53 METABOLIC_CATALYSIS FDXR -TP53 METABOLIC_CATALYSIS GADD45A -TP53 METABOLIC_CATALYSIS GDF15 -TP53 METABOLIC_CATALYSIS GPX1 -TP53 METABOLIC_CATALYSIS HGF -TP53 METABOLIC_CATALYSIS HIC1 -TP53 METABOLIC_CATALYSIS HTT -TP53 METABOLIC_CATALYSIS IGFBP3 -TP53 METABOLIC_CATALYSIS IRF5 -TP53 METABOLIC_CATALYSIS LIF -TP53 METABOLIC_CATALYSIS LRDD -TP53 METABOLIC_CATALYSIS MAP4K4 -TP53 METABOLIC_CATALYSIS MDM2 -TP53 METABOLIC_CATALYSIS MET -TP53 METABOLIC_CATALYSIS MLH1 -TP53 METABOLIC_CATALYSIS MMP2 -TP53 METABOLIC_CATALYSIS MSH2 -TP53 METABOLIC_CATALYSIS NDRG1 -TP53 METABOLIC_CATALYSIS NLRC4 -TP53 METABOLIC_CATALYSIS PCBP4 -TP53 METABOLIC_CATALYSIS PCNA -TP53 METABOLIC_CATALYSIS PERP -TP53 METABOLIC_CATALYSIS PLK3 -TP53 METABOLIC_CATALYSIS PMAIP1 -TP53 METABOLIC_CATALYSIS PMS2 -TP53 METABOLIC_CATALYSIS PPM1J -TP53 METABOLIC_CATALYSIS PRDM1 -TP53 METABOLIC_CATALYSIS PRKAB1 -TP53 METABOLIC_CATALYSIS PTEN -TP53 METABOLIC_CATALYSIS PYCARD -TP53 METABOLIC_CATALYSIS RB1 -TP53 METABOLIC_CATALYSIS RCHY1 -TP53 METABOLIC_CATALYSIS RFWD2 -TP53 METABOLIC_CATALYSIS RGC32 -TP53 METABOLIC_CATALYSIS RNF144B -TP53 METABOLIC_CATALYSIS RPS27L -TP53 METABOLIC_CATALYSIS RRM2B -TP53 METABOLIC_CATALYSIS S100A2 -TP53 METABOLIC_CATALYSIS SCN3B -TP53 METABOLIC_CATALYSIS SERPINB5 -TP53 METABOLIC_CATALYSIS SERPINE1 -TP53 METABOLIC_CATALYSIS SESN1 -TP53 METABOLIC_CATALYSIS SFN -TP53 METABOLIC_CATALYSIS SH2D1A -TP53 METABOLIC_CATALYSIS SNAI2 -TP53 METABOLIC_CATALYSIS SPP1 -TP53 METABOLIC_CATALYSIS STEAP3 -TP53 METABOLIC_CATALYSIS TAP1 -TP53 METABOLIC_CATALYSIS TGFA -TP53 METABOLIC_CATALYSIS TIGAR -TP53 METABOLIC_CATALYSIS TNFRSF10A -TP53 METABOLIC_CATALYSIS TNFRSF10B -TP53 METABOLIC_CATALYSIS TNFRSF10C -TP53 METABOLIC_CATALYSIS TNFRSF10D -TP53 METABOLIC_CATALYSIS TP53 -TP53 METABOLIC_CATALYSIS TP53AIP1 -TP53 METABOLIC_CATALYSIS TP53I3 -TP53 METABOLIC_CATALYSIS TP53INP1 -TP53 METABOLIC_CATALYSIS TP63 -TP53 METABOLIC_CATALYSIS TP73 -TP53 METABOLIC_CATALYSIS TRIAP1 -TP53 METABOLIC_CATALYSIS TSC2 -TP53 METABOLIC_CATALYSIS TYRP1 -TP53 METABOLIC_CATALYSIS VCAN -TP53 METABOLIC_CATALYSIS VDR -TP53 REACTS_WITH BAK1 -TP53 REACTS_WITH BARD1 -TP53 REACTS_WITH BBC3 -TP53 REACTS_WITH BRCA1 -TP53 REACTS_WITH CARM1 -TP53 REACTS_WITH COPS5 -TP53 REACTS_WITH DDX5 -TP53 REACTS_WITH DGCR8 -TP53 REACTS_WITH DROSHA -TP53 REACTS_WITH HIF1A -TP53 REACTS_WITH MCL1 -TP53 REACTS_WITH NEDD8 -TP53 REACTS_WITH NFYA -TP53 REACTS_WITH NFYB -TP53 REACTS_WITH NFYC -TP53 REACTS_WITH PIN1 -TP53 REACTS_WITH PRKDC -TP53 REACTS_WITH PRMT1 -TP53 REACTS_WITH SIRT1 -TP53 REACTS_WITH SP1 -TP53 REACTS_WITH TP53 -TP53 REACTS_WITH XRCC5 -TP53 REACTS_WITH XRCC6 -TP53 STATE_CHANGE BAX -TP53 STATE_CHANGE TP53 -TPX2 IN_SAME_COMPONENT AURKA -TPX2 INTERACTS_WITH DLGAP5 -TPX2 REACTS_WITH AURKA -TPX2 REACTS_WITH TPX2 -TRADD CO_CONTROL CTSD -TRADD CO_CONTROL NSMAF -TRADD CO_CONTROL TNF -TRADD CO_CONTROL TNFRSF1A -TRADD IN_SAME_COMPONENT BIRC2 -TRADD IN_SAME_COMPONENT BIRC3 -TRADD IN_SAME_COMPONENT CASP2 -TRADD IN_SAME_COMPONENT CRADD -TRADD IN_SAME_COMPONENT FADD -TRADD IN_SAME_COMPONENT LRDD -TRADD IN_SAME_COMPONENT MADD -TRADD IN_SAME_COMPONENT MAP3K3 -TRADD IN_SAME_COMPONENT MAP3K5 -TRADD IN_SAME_COMPONENT MAP3K7 -TRADD IN_SAME_COMPONENT RIPK1 -TRADD IN_SAME_COMPONENT SQSTM1 -TRADD IN_SAME_COMPONENT STAT1 -TRADD IN_SAME_COMPONENT TNF -TRADD IN_SAME_COMPONENT TNFRSF10A -TRADD IN_SAME_COMPONENT TNFRSF10B -TRADD IN_SAME_COMPONENT TNFRSF1A -TRADD IN_SAME_COMPONENT TNFSF10 -TRADD IN_SAME_COMPONENT TRAF1 -TRADD IN_SAME_COMPONENT TRAF2 -TRADD REACTS_WITH BAG4 -TRADD REACTS_WITH BIRC2 -TRADD REACTS_WITH BIRC3 -TRADD REACTS_WITH CASP2 -TRADD REACTS_WITH CRADD -TRADD REACTS_WITH FADD -TRADD REACTS_WITH MADD -TRADD REACTS_WITH MAP3K3 -TRADD REACTS_WITH MAP3K5 -TRADD REACTS_WITH MAP3K7 -TRADD REACTS_WITH RIPK1 -TRADD REACTS_WITH SQSTM1 -TRADD REACTS_WITH STAT1 -TRADD REACTS_WITH TNF -TRADD REACTS_WITH TNFRSF10A -TRADD REACTS_WITH TNFRSF10B -TRADD REACTS_WITH TNFRSF1A -TRADD REACTS_WITH TNFRSF1B -TRADD REACTS_WITH TNFSF10 -TRADD REACTS_WITH TRADD -TRADD REACTS_WITH TRAF1 -TRADD REACTS_WITH TRAF2 -TRADD STATE_CHANGE BID -TRADD STATE_CHANGE CASP2 -TRADD STATE_CHANGE CASP8 -TRADD STATE_CHANGE FADD -TRADD STATE_CHANGE MAP2K3 -TRADD STATE_CHANGE MAP2K7 -TRADD STATE_CHANGE MAP3K1 -TRADD STATE_CHANGE MAP3K14 -TRADD STATE_CHANGE MAP3K5 -TRADD STATE_CHANGE MAP4K4 -TRADD STATE_CHANGE NFKB1 -TRADD STATE_CHANGE RELA -TRADD STATE_CHANGE SMPD1 -TRADD STATE_CHANGE SMPD3 -TRADD STATE_CHANGE TNF -TRADD STATE_CHANGE TNFRSF1A -TRADD STATE_CHANGE TRADD -TRADD STATE_CHANGE TRAF2 -TRADD STATE_CHANGE TXN -TRAF1 IN_SAME_COMPONENT BIRC2 -TRAF1 IN_SAME_COMPONENT BIRC3 -TRAF1 IN_SAME_COMPONENT CASP2 -TRAF1 IN_SAME_COMPONENT CD40 -TRAF1 IN_SAME_COMPONENT CD40LG -TRAF1 IN_SAME_COMPONENT CRADD -TRAF1 IN_SAME_COMPONENT FADD -TRAF1 IN_SAME_COMPONENT MAP3K5 -TRAF1 IN_SAME_COMPONENT RIPK1 -TRAF1 IN_SAME_COMPONENT TNF -TRAF1 IN_SAME_COMPONENT TNFRSF1A -TRAF1 IN_SAME_COMPONENT TNFRSF1B -TRAF1 IN_SAME_COMPONENT TRADD -TRAF1 IN_SAME_COMPONENT TRAF2 -TRAF1 REACTS_WITH BAG4 -TRAF1 REACTS_WITH BIRC2 -TRAF1 REACTS_WITH BIRC3 -TRAF1 REACTS_WITH CASP2 -TRAF1 REACTS_WITH CD40 -TRAF1 REACTS_WITH CD40LG -TRAF1 REACTS_WITH CRADD -TRAF1 REACTS_WITH FADD -TRAF1 REACTS_WITH MAP3K5 -TRAF1 REACTS_WITH RIPK1 -TRAF1 REACTS_WITH TNF -TRAF1 REACTS_WITH TNFRSF1A -TRAF1 REACTS_WITH TNFRSF1B -TRAF1 REACTS_WITH TRADD -TRAF1 REACTS_WITH TRAF1 -TRAF1 REACTS_WITH TRAF2 -TRAF1 STATE_CHANGE MAP2K7 -TRAF1 STATE_CHANGE MAP3K14 -TRAF1 STATE_CHANGE NFKB1 -TRAF1 STATE_CHANGE NFKBIA -TRAF1 STATE_CHANGE RELA -TRAF2 CO_CONTROL CTSD -TRAF2 CO_CONTROL NSMAF -TRAF2 CO_CONTROL TNF -TRAF2 CO_CONTROL TNFRSF1A -TRAF2 IN_SAME_COMPONENT BIRC2 -TRAF2 IN_SAME_COMPONENT BIRC3 -TRAF2 IN_SAME_COMPONENT CASP2 -TRAF2 IN_SAME_COMPONENT CBLB -TRAF2 IN_SAME_COMPONENT CD40 -TRAF2 IN_SAME_COMPONENT CD40LG -TRAF2 IN_SAME_COMPONENT CRADD -TRAF2 IN_SAME_COMPONENT FADD -TRAF2 IN_SAME_COMPONENT LRDD -TRAF2 IN_SAME_COMPONENT MADD -TRAF2 IN_SAME_COMPONENT MAP3K1 -TRAF2 IN_SAME_COMPONENT MAP3K3 -TRAF2 IN_SAME_COMPONENT MAP3K5 -TRAF2 IN_SAME_COMPONENT MAP3K7 -TRAF2 IN_SAME_COMPONENT RIPK1 -TRAF2 IN_SAME_COMPONENT SQSTM1 -TRAF2 IN_SAME_COMPONENT TNF -TRAF2 IN_SAME_COMPONENT TNFRSF10A -TRAF2 IN_SAME_COMPONENT TNFRSF10B -TRAF2 IN_SAME_COMPONENT TNFRSF1A -TRAF2 IN_SAME_COMPONENT TNFRSF1B -TRAF2 IN_SAME_COMPONENT TNFSF10 -TRAF2 IN_SAME_COMPONENT TRADD -TRAF2 IN_SAME_COMPONENT TRAF1 -TRAF2 IN_SAME_COMPONENT TRAF3 -TRAF2 REACTS_WITH BAG4 -TRAF2 REACTS_WITH BIRC2 -TRAF2 REACTS_WITH BIRC3 -TRAF2 REACTS_WITH CASP2 -TRAF2 REACTS_WITH CBLB -TRAF2 REACTS_WITH CD40 -TRAF2 REACTS_WITH CD40LG -TRAF2 REACTS_WITH CRADD -TRAF2 REACTS_WITH FADD -TRAF2 REACTS_WITH MADD -TRAF2 REACTS_WITH MAP3K1 -TRAF2 REACTS_WITH MAP3K3 -TRAF2 REACTS_WITH MAP3K5 -TRAF2 REACTS_WITH MAP3K7 -TRAF2 REACTS_WITH RIPK1 -TRAF2 REACTS_WITH SQSTM1 -TRAF2 REACTS_WITH STAT1 -TRAF2 REACTS_WITH TNF -TRAF2 REACTS_WITH TNFRSF10A -TRAF2 REACTS_WITH TNFRSF10B -TRAF2 REACTS_WITH TNFRSF1A -TRAF2 REACTS_WITH TNFRSF1B -TRAF2 REACTS_WITH TNFSF10 -TRAF2 REACTS_WITH TRADD -TRAF2 REACTS_WITH TRAF1 -TRAF2 REACTS_WITH TRAF2 -TRAF2 REACTS_WITH TRAF3 -TRAF2 REACTS_WITH TRAF6 -TRAF2 REACTS_WITH TXN -TRAF2 STATE_CHANGE BID -TRAF2 STATE_CHANGE CASP2 -TRAF2 STATE_CHANGE CASP8 -TRAF2 STATE_CHANGE FADD -TRAF2 STATE_CHANGE MAP2K3 -TRAF2 STATE_CHANGE MAP2K4 -TRAF2 STATE_CHANGE MAP2K6 -TRAF2 STATE_CHANGE MAP2K7 -TRAF2 STATE_CHANGE MAP3K1 -TRAF2 STATE_CHANGE MAP3K14 -TRAF2 STATE_CHANGE MAP3K5 -TRAF2 STATE_CHANGE MAP4K4 -TRAF2 STATE_CHANGE NFKB1 -TRAF2 STATE_CHANGE NFKBIA -TRAF2 STATE_CHANGE RELA -TRAF2 STATE_CHANGE SMPD1 -TRAF2 STATE_CHANGE SMPD3 -TRAF2 STATE_CHANGE TRAF3 -TRAF2 STATE_CHANGE TXN -TRAF3 IN_SAME_COMPONENT BIRC2 -TRAF3 IN_SAME_COMPONENT BIRC3 -TRAF3 IN_SAME_COMPONENT CD40 -TRAF3 IN_SAME_COMPONENT CD40LG -TRAF3 IN_SAME_COMPONENT TRAF2 -TRAF3 REACTS_WITH BIRC2 -TRAF3 REACTS_WITH BIRC3 -TRAF3 REACTS_WITH CD40 -TRAF3 REACTS_WITH CD40LG -TRAF3 REACTS_WITH TRAF2 -TRAF3 REACTS_WITH TRAF3 -TRAF3 STATE_CHANGE MAP3K14 -TRAF6 CO_CONTROL AKT1 -TRAF6 CO_CONTROL BCL10 -TRAF6 CO_CONTROL CARD11 -TRAF6 CO_CONTROL GAB2 -TRAF6 CO_CONTROL MALT1 -TRAF6 CO_CONTROL MAP3K7 -TRAF6 IN_SAME_COMPONENT BCL10 -TRAF6 IN_SAME_COMPONENT BDNF -TRAF6 IN_SAME_COMPONENT CARD11 -TRAF6 IN_SAME_COMPONENT CBLB -TRAF6 IN_SAME_COMPONENT CD40 -TRAF6 IN_SAME_COMPONENT CD40LG -TRAF6 IN_SAME_COMPONENT IRAK1 -TRAF6 IN_SAME_COMPONENT MALT1 -TRAF6 IN_SAME_COMPONENT MAP3K3 -TRAF6 IN_SAME_COMPONENT MAP3K5 -TRAF6 IN_SAME_COMPONENT MAP3K7 -TRAF6 IN_SAME_COMPONENT NGF -TRAF6 IN_SAME_COMPONENT NGFR -TRAF6 IN_SAME_COMPONENT NTF4 -TRAF6 IN_SAME_COMPONENT PDPK1 -TRAF6 IN_SAME_COMPONENT RIPK2 -TRAF6 IN_SAME_COMPONENT SORT1 -TRAF6 IN_SAME_COMPONENT SQSTM1 -TRAF6 IN_SAME_COMPONENT TAB1 -TRAF6 IN_SAME_COMPONENT TAB2 -TRAF6 IN_SAME_COMPONENT ZNF274 -TRAF6 REACTS_WITH BCL10 -TRAF6 REACTS_WITH BDNF -TRAF6 REACTS_WITH BEX1 -TRAF6 REACTS_WITH CARD11 -TRAF6 REACTS_WITH CBLB -TRAF6 REACTS_WITH CD40 -TRAF6 REACTS_WITH CD40LG -TRAF6 REACTS_WITH IL1A -TRAF6 REACTS_WITH IL1B -TRAF6 REACTS_WITH IL1R1 -TRAF6 REACTS_WITH IRAK1 -TRAF6 REACTS_WITH IRAK4 -TRAF6 REACTS_WITH MALT1 -TRAF6 REACTS_WITH MAP3K3 -TRAF6 REACTS_WITH MAP3K5 -TRAF6 REACTS_WITH MAP3K7 -TRAF6 REACTS_WITH MYD88 -TRAF6 REACTS_WITH NGF -TRAF6 REACTS_WITH NGFR -TRAF6 REACTS_WITH NTF4 -TRAF6 REACTS_WITH PDPK1 -TRAF6 REACTS_WITH RIPK2 -TRAF6 REACTS_WITH SORT1 -TRAF6 REACTS_WITH SQSTM1 -TRAF6 REACTS_WITH TAB1 -TRAF6 REACTS_WITH TAB2 -TRAF6 REACTS_WITH TOLLIP -TRAF6 REACTS_WITH TRAF2 -TRAF6 REACTS_WITH TRAF6 -TRAF6 REACTS_WITH TXN -TRAF6 REACTS_WITH ZNF274 -TRAF6 STATE_CHANGE AKT1 -TRAF6 STATE_CHANGE CHUK -TRAF6 STATE_CHANGE ERC1 -TRAF6 STATE_CHANGE IKBKB -TRAF6 STATE_CHANGE IKBKG -TRAF6 STATE_CHANGE MAP2K3 -TRAF6 STATE_CHANGE MAP2K6 -TRAF6 STATE_CHANGE MAP3K7 -TRAF6 STATE_CHANGE NFKB1 -TRAF6 STATE_CHANGE NFKBIA -TRAF6 STATE_CHANGE RELA -TRAF6 STATE_CHANGE TP53 -TRAPPC4 IN_SAME_COMPONENT SDC2 -TRAPPC4 REACTS_WITH SDC2 -TRAPPC4 REACTS_WITH TRAPPC4 -TRIM24 CO_CONTROL AR -TRIM24 CO_CONTROL NCOA2 -TRIM24 METABOLIC_CATALYSIS KLK3 -TRIM28 CO_CONTROL E2F1 -TRIM28 CO_CONTROL TFDP1 -TRIM28 IN_SAME_COMPONENT MDM2 -TRIM28 IN_SAME_COMPONENT MYB -TRIM28 IN_SAME_COMPONENT NCOR1 -TRIM28 IN_SAME_COMPONENT SIN3A -TRIM28 IN_SAME_COMPONENT SKI -TRIM28 METABOLIC_CATALYSIS CCND3 -TRIM28 METABOLIC_CATALYSIS CDKN1B -TRIM28 METABOLIC_CATALYSIS MYC -TRIM28 METABOLIC_CATALYSIS SIRT1 -TRIM28 REACTS_WITH MYB -TRIM28 REACTS_WITH NCOR1 -TRIM28 REACTS_WITH SIN3A -TRIM28 REACTS_WITH SKI -TRIM28 REACTS_WITH TRIM28 -TRIM28 STATE_CHANGE E2F1 -TRIM28 STATE_CHANGE HDAC1 -TRIM28 STATE_CHANGE TP53 -TRIO STATE_CHANGE RAC1 -TRIO STATE_CHANGE RHOA -TRIP10 CO_CONTROL CALM1 -TRIP10 CO_CONTROL STX4 -TRIP10 CO_CONTROL STXBP4 -TRIP10 CO_CONTROL VAMP2 -TRIP10 IN_SAME_COMPONENT RHOQ -TRIP10 REACTS_WITH EXOC1 -TRIP10 REACTS_WITH EXOC2 -TRIP10 REACTS_WITH EXOC3 -TRIP10 REACTS_WITH EXOC4 -TRIP10 REACTS_WITH EXOC5 -TRIP10 REACTS_WITH EXOC6 -TRIP10 REACTS_WITH EXOC7 -TRIP10 REACTS_WITH RHOQ -TRIP10 REACTS_WITH TRIP10 -TRIP10 STATE_CHANGE F2RL2 -TRIP10 STATE_CHANGE LNPEP -TRIP10 STATE_CHANGE PARD6A -TRIP10 STATE_CHANGE SLC2A4 -TRIP10 STATE_CHANGE VAMP2 -TRIP6 CO_CONTROL FOS -TRIP6 CO_CONTROL JUN -TRIP6 CO_CONTROL TRIP6 -TRIP6 IN_SAME_COMPONENT BCAR1 -TRIP6 IN_SAME_COMPONENT CRK -TRIP6 IN_SAME_COMPONENT FOS -TRIP6 IN_SAME_COMPONENT JUN -TRIP6 METABOLIC_CATALYSIS MMP1 -TRIP6 METABOLIC_CATALYSIS PLAU -TRIP6 REACTS_WITH BCAR1 -TRIP6 REACTS_WITH CRK -TRIP6 REACTS_WITH FOS -TRIP6 REACTS_WITH JUN -TRIP6 REACTS_WITH PTK2 -TRIP6 REACTS_WITH PXN -TRIP6 REACTS_WITH TRIP6 -TRPC6 INTERACTS_WITH EPO -TRPC6 INTERACTS_WITH EPOR -TRPC6 INTERACTS_WITH JAK2 -TRPV1 IN_SAME_COMPONENT NGF -TRPV1 IN_SAME_COMPONENT PLCG1 -TRPV1 REACTS_WITH NGF -TRPV1 REACTS_WITH PLCG1 -TRPV1 REACTS_WITH TRPV1 -TRPV6 IN_SAME_COMPONENT PTPN1 -TRPV6 REACTS_WITH PTPN1 -TRPV6 REACTS_WITH TRPV6 -TRRAP CO_CONTROL HDAC2 -TRRAP CO_CONTROL MAX -TRRAP CO_CONTROL MYC -TRRAP CO_CONTROL TP53 -TRRAP CO_CONTROL UBTF -TRRAP IN_SAME_COMPONENT ACTL6A -TRRAP IN_SAME_COMPONENT BTRC -TRRAP IN_SAME_COMPONENT CTNNB1 -TRRAP IN_SAME_COMPONENT CUL1 -TRRAP IN_SAME_COMPONENT E2F4 -TRRAP IN_SAME_COMPONENT KAT2A -TRRAP IN_SAME_COMPONENT KAT5 -TRRAP IN_SAME_COMPONENT MAX -TRRAP IN_SAME_COMPONENT MYC -TRRAP IN_SAME_COMPONENT RUVBL1 -TRRAP IN_SAME_COMPONENT RUVBL2 -TRRAP IN_SAME_COMPONENT SKP1 -TRRAP IN_SAME_COMPONENT SUPT3H -TRRAP IN_SAME_COMPONENT SUPT7L -TRRAP IN_SAME_COMPONENT TAF10 -TRRAP IN_SAME_COMPONENT TAF12 -TRRAP IN_SAME_COMPONENT TAF9 -TRRAP IN_SAME_COMPONENT TCF7L2 -TRRAP IN_SAME_COMPONENT TFDP2 -TRRAP METABOLIC_CATALYSIS CAD -TRRAP METABOLIC_CATALYSIS CCND2 -TRRAP METABOLIC_CATALYSIS CDK4 -TRRAP METABOLIC_CATALYSIS GPAM -TRRAP METABOLIC_CATALYSIS HSPD1 -TRRAP METABOLIC_CATALYSIS MDM2 -TRRAP METABOLIC_CATALYSIS MYC -TRRAP METABOLIC_CATALYSIS NCL -TRRAP METABOLIC_CATALYSIS NME1 -TRRAP METABOLIC_CATALYSIS PTMA -TRRAP METABOLIC_CATALYSIS TERT -TRRAP REACTS_WITH ACTL6A -TRRAP REACTS_WITH BTRC -TRRAP REACTS_WITH CTNNB1 -TRRAP REACTS_WITH CUL1 -TRRAP REACTS_WITH KAT2A -TRRAP REACTS_WITH KAT5 -TRRAP REACTS_WITH MAX -TRRAP REACTS_WITH MYC -TRRAP REACTS_WITH RUVBL1 -TRRAP REACTS_WITH RUVBL2 -TRRAP REACTS_WITH SKP1 -TRRAP REACTS_WITH SUPT3H -TRRAP REACTS_WITH SUPT7L -TRRAP REACTS_WITH TAF10 -TRRAP REACTS_WITH TAF12 -TRRAP REACTS_WITH TAF9 -TRRAP REACTS_WITH TCF7L2 -TRRAP REACTS_WITH TRRAP -TSC1 IN_SAME_COMPONENT IKBKB -TSC1 IN_SAME_COMPONENT TSC2 -TSC1 REACTS_WITH DDIT4 -TSC1 REACTS_WITH IKBKB -TSC1 REACTS_WITH TSC1 -TSC1 REACTS_WITH TSC2 -TSC1 STATE_CHANGE DEPTOR -TSC1 STATE_CHANGE MAPKAP1 -TSC1 STATE_CHANGE MLST8 -TSC1 STATE_CHANGE MTOR -TSC1 STATE_CHANGE RHEB -TSC1 STATE_CHANGE RICTOR -TSC2 IN_SAME_COMPONENT IKBKB -TSC2 IN_SAME_COMPONENT TSC1 -TSC2 REACTS_WITH DDIT4 -TSC2 REACTS_WITH IKBKB -TSC2 REACTS_WITH TSC1 -TSC2 REACTS_WITH TSC2 -TSC2 STATE_CHANGE DEPTOR -TSC2 STATE_CHANGE MAPKAP1 -TSC2 STATE_CHANGE MLST8 -TSC2 STATE_CHANGE MTOR -TSC2 STATE_CHANGE RHEB -TSC2 STATE_CHANGE RICTOR -TSG101 CO_CONTROL HGS -TSG101 CO_CONTROL VPS24 -TSG101 CO_CONTROL ZFYVE28 -TSG101 STATE_CHANGE EGF -TSG101 STATE_CHANGE EGFR -TSG101 STATE_CHANGE SOS1 -TTC5 IN_SAME_COMPONENT PRMT5 -TTC5 REACTS_WITH PRMT5 -TTC5 REACTS_WITH TTC5 -TTC5 STATE_CHANGE TP53 -TUBB2A IN_SAME_COMPONENT HDAC6 -TUBB2A IN_SAME_COMPONENT SIRT2 -TUBB2A REACTS_WITH HDAC6 -TUBB2A REACTS_WITH SIRT2 -TUBB2A REACTS_WITH TUBB2A -TUBG1 IN_SAME_COMPONENT NINL -TUBG1 REACTS_WITH NINL -TUBG1 REACTS_WITH TUBG1 -TWIST1 CO_CONTROL EP300 -TWIST1 CO_CONTROL NOTCH1 -TWIST1 CO_CONTROL RBPJ -TWIST1 METABOLIC_CATALYSIS HES1 -TXLNG CO_CONTROL FOSL1 -TXLNG CO_CONTROL JUN -TXLNG CO_CONTROL JUNB -TXLNG IN_SAME_COMPONENT FOSL1 -TXLNG METABOLIC_CATALYSIS MGP -TXLNG METABOLIC_CATALYSIS MMP9 -TXLNG REACTS_WITH FOSL1 -TXLNG REACTS_WITH TXLNG -TXN IN_SAME_COMPONENT MAP3K5 -TXN REACTS_WITH MAP3K5 -TXN REACTS_WITH TRAF2 -TXN REACTS_WITH TRAF6 -TXN REACTS_WITH TXN -TXN STATE_CHANGE PTPN1 -TYK2 CO_CONTROL EBI3 -TYK2 CO_CONTROL IL12A -TYK2 CO_CONTROL IL12B -TYK2 CO_CONTROL IL12RB1 -TYK2 CO_CONTROL IL12RB2 -TYK2 CO_CONTROL IL27 -TYK2 CO_CONTROL IL27RA -TYK2 CO_CONTROL IL6ST -TYK2 CO_CONTROL JAK2 -TYK2 CO_CONTROL TYK2 -TYK2 IN_SAME_COMPONENT EBI3 -TYK2 IN_SAME_COMPONENT IL12A -TYK2 IN_SAME_COMPONENT IL12B -TYK2 IN_SAME_COMPONENT IL12RB1 -TYK2 IN_SAME_COMPONENT IL12RB2 -TYK2 IN_SAME_COMPONENT IL23A -TYK2 IN_SAME_COMPONENT IL23R -TYK2 IN_SAME_COMPONENT IL27 -TYK2 IN_SAME_COMPONENT IL27RA -TYK2 IN_SAME_COMPONENT IL6 -TYK2 IN_SAME_COMPONENT IL6R -TYK2 IN_SAME_COMPONENT IL6ST -TYK2 IN_SAME_COMPONENT JAK2 -TYK2 IN_SAME_COMPONENT SOCS1 -TYK2 IN_SAME_COMPONENT SOCS3 -TYK2 IN_SAME_COMPONENT SPHK2 -TYK2 METABOLIC_CATALYSIS ALOX12B -TYK2 METABOLIC_CATALYSIS CCL2 -TYK2 METABOLIC_CATALYSIS CCL3 -TYK2 METABOLIC_CATALYSIS CCL4 -TYK2 METABOLIC_CATALYSIS CCR5 -TYK2 METABOLIC_CATALYSIS CD3E -TYK2 METABOLIC_CATALYSIS CD4 -TYK2 METABOLIC_CATALYSIS CXCL1 -TYK2 METABOLIC_CATALYSIS CXCL9 -TYK2 METABOLIC_CATALYSIS EOMES -TYK2 METABOLIC_CATALYSIS FASLG -TYK2 METABOLIC_CATALYSIS FOS -TYK2 METABOLIC_CATALYSIS GADD45B -TYK2 METABOLIC_CATALYSIS GADD45G -TYK2 METABOLIC_CATALYSIS GZMA -TYK2 METABOLIC_CATALYSIS GZMB -TYK2 METABOLIC_CATALYSIS IFNG -TYK2 METABOLIC_CATALYSIS IL19 -TYK2 METABOLIC_CATALYSIS IL1B -TYK2 METABOLIC_CATALYSIS IL1R1 -TYK2 METABOLIC_CATALYSIS IL2 -TYK2 METABOLIC_CATALYSIS IL23R -TYK2 METABOLIC_CATALYSIS IL24 -TYK2 METABOLIC_CATALYSIS IL6 -TYK2 METABOLIC_CATALYSIS ITGA3 -TYK2 METABOLIC_CATALYSIS MPO -TYK2 METABOLIC_CATALYSIS NOS2 -TYK2 METABOLIC_CATALYSIS TBX21 -TYK2 METABOLIC_CATALYSIS TNF -TYK2 REACTS_WITH EBI3 -TYK2 REACTS_WITH IL12A -TYK2 REACTS_WITH IL12B -TYK2 REACTS_WITH IL12RB1 -TYK2 REACTS_WITH IL12RB2 -TYK2 REACTS_WITH IL23A -TYK2 REACTS_WITH IL23R -TYK2 REACTS_WITH IL27 -TYK2 REACTS_WITH IL27RA -TYK2 REACTS_WITH IL6 -TYK2 REACTS_WITH IL6R -TYK2 REACTS_WITH IL6ST -TYK2 REACTS_WITH JAK2 -TYK2 REACTS_WITH SOCS1 -TYK2 REACTS_WITH SOCS3 -TYK2 REACTS_WITH SPHK2 -TYK2 REACTS_WITH TYK2 -TYK2 STATE_CHANGE LCK -TYK2 STATE_CHANGE NFKB1 -TYK2 STATE_CHANGE NFKB2 -TYK2 STATE_CHANGE NFKBIA -TYK2 STATE_CHANGE PIK3CA -TYK2 STATE_CHANGE PIK3R1 -TYK2 STATE_CHANGE RELA -TYK2 STATE_CHANGE RELB -TYK2 STATE_CHANGE STAT1 -TYK2 STATE_CHANGE STAT2 -TYK2 STATE_CHANGE STAT3 -TYK2 STATE_CHANGE STAT4 -TYK2 STATE_CHANGE STAT5A -TYK2 STATE_CHANGE STAT6 -UBA3 CO_CONTROL AR -UBA3 METABOLIC_CATALYSIS KLK3 -UBE2D1 CO_CONTROL MDM2 -UBE2D1 CO_CONTROL PIN1 -UBE2D1 CO_CONTROL TP53 -UBE2D1 IN_SAME_COMPONENT MDM2 -UBE2D1 IN_SAME_COMPONENT YY1 -UBE2D1 REACTS_WITH MDM2 -UBE2D1 REACTS_WITH UBE2D1 -UBE2D1 REACTS_WITH YY1 -UBE2D1 STATE_CHANGE TP53 -UBE2D3 IN_SAME_COMPONENT BARD1 -UBE2D3 IN_SAME_COMPONENT BIRC2 -UBE2D3 IN_SAME_COMPONENT BRCA1 -UBE2D3 REACTS_WITH BARD1 -UBE2D3 REACTS_WITH BRCA1 -UBE2D3 REACTS_WITH UBE2D3 -UBE2D3 STATE_CHANGE IKBKG -UBE2I CO_CONTROL HDAC3 -UBE2I CO_CONTROL HDAC4 -UBE2I CO_CONTROL NCOR2 -UBE2I IN_SAME_COMPONENT AR -UBE2I IN_SAME_COMPONENT HDAC4 -UBE2I IN_SAME_COMPONENT PIAS4 -UBE2I IN_SAME_COMPONENT RANBP2 -UBE2I IN_SAME_COMPONENT RANGAP1 -UBE2I IN_SAME_COMPONENT SMAD4 -UBE2I REACTS_WITH AR -UBE2I REACTS_WITH HDAC4 -UBE2I REACTS_WITH PIAS4 -UBE2I REACTS_WITH RANBP2 -UBE2I REACTS_WITH RANGAP1 -UBE2I REACTS_WITH SMAD4 -UBE2I REACTS_WITH UBE2I -UBE2I STATE_CHANGE HDAC1 -UBE2I STATE_CHANGE HDAC4 -UBE2I STATE_CHANGE MDM2 -UBE2I STATE_CHANGE MEF2C -UBE2I STATE_CHANGE MYB -UBE2I STATE_CHANGE RAN -UBE2I STATE_CHANGE XPO1 -UBE2L3 IN_SAME_COMPONENT BARD1 -UBE2L3 IN_SAME_COMPONENT BRCA1 -UBE2L3 REACTS_WITH BARD1 -UBE2L3 REACTS_WITH BRCA1 -UBE2L3 REACTS_WITH UBE2L3 -UBE2L3 STATE_CHANGE SNCA -UBE2N IN_SAME_COMPONENT UBE2V1 -UBE2N STATE_CHANGE ATM -UBE2N STATE_CHANGE H2AFX -UBE2N STATE_CHANGE IRAK1 -UBE2N STATE_CHANGE MAP3K7 -UBE2N STATE_CHANGE MDC1 -UBE2N STATE_CHANGE MRE11A -UBE2N STATE_CHANGE NBN -UBE2N STATE_CHANGE RAD50 -UBE2N STATE_CHANGE RNF8 -UBE2N STATE_CHANGE TAB1 -UBE2N STATE_CHANGE TAB2 -UBE2N STATE_CHANGE TRAF6 -UBE2V1 IN_SAME_COMPONENT UBE2N -UBE2V1 STATE_CHANGE IRAK1 -UBE2V1 STATE_CHANGE MAP3K7 -UBE2V1 STATE_CHANGE TAB1 -UBE2V1 STATE_CHANGE TAB2 -UBE2V1 STATE_CHANGE TRAF6 -UBE3A CO_CONTROL AR -UBE3A IN_SAME_COMPONENT HDAC1 -UBE3A IN_SAME_COMPONENT HDAC2 -UBE3A IN_SAME_COMPONENT RBBP4 -UBE3A IN_SAME_COMPONENT RBBP7 -UBE3A IN_SAME_COMPONENT SAP18 -UBE3A IN_SAME_COMPONENT SAP30 -UBE3A IN_SAME_COMPONENT SIN3A -UBE3A IN_SAME_COMPONENT SIN3B -UBE3A METABOLIC_CATALYSIS KLK3 -UBE3A METABOLIC_CATALYSIS TERT -UBE3A REACTS_WITH HDAC1 -UBE3A REACTS_WITH HDAC2 -UBE3A REACTS_WITH RBBP4 -UBE3A REACTS_WITH RBBP7 -UBE3A REACTS_WITH SAP18 -UBE3A REACTS_WITH SAP30 -UBE3A REACTS_WITH SIN3A -UBE3A REACTS_WITH SIN3B -UBE3A REACTS_WITH UBE3A -UBE3A STATE_CHANGE DKC1 -UBE3A STATE_CHANGE HSP90AA1 -UBE3A STATE_CHANGE PTGES3 -UBE3A STATE_CHANGE TERT -UBQLN1 IN_SAME_COMPONENT GNG2 -UBQLN1 REACTS_WITH GNG2 -UBQLN1 REACTS_WITH UBQLN1 -UBTF CO_CONTROL MAX -UBTF CO_CONTROL MYC -UBTF CO_CONTROL TRRAP -UCHL1 STATE_CHANGE SNCA -UIMC1 IN_SAME_COMPONENT ATM -UIMC1 IN_SAME_COMPONENT BRCA1 -UIMC1 IN_SAME_COMPONENT FAM175A -UIMC1 IN_SAME_COMPONENT H2AFX -UIMC1 IN_SAME_COMPONENT MDC1 -UIMC1 IN_SAME_COMPONENT MRE11A -UIMC1 IN_SAME_COMPONENT NBN -UIMC1 IN_SAME_COMPONENT RAD50 -UIMC1 IN_SAME_COMPONENT RNF8 -UIMC1 IN_SAME_COMPONENT TP53BP1 -UIMC1 REACTS_WITH ATM -UIMC1 REACTS_WITH BRCA1 -UIMC1 REACTS_WITH FAM175A -UIMC1 REACTS_WITH H2AFX -UIMC1 REACTS_WITH MDC1 -UIMC1 REACTS_WITH MRE11A -UIMC1 REACTS_WITH NBN -UIMC1 REACTS_WITH RAD50 -UIMC1 REACTS_WITH RNF8 -UIMC1 REACTS_WITH TP53BP1 -UIMC1 REACTS_WITH UIMC1 -UNC13B IN_SAME_COMPONENT RAB3GAP2 -UNC13B IN_SAME_COMPONENT RIMS1 -UNC13B REACTS_WITH RAB3GAP2 -UNC13B REACTS_WITH RIMS1 -UNC13B REACTS_WITH UNC13B -UNC13B STATE_CHANGE STX1A -UNC13B STATE_CHANGE VAMP2 -UNC5A IN_SAME_COMPONENT DCC -UNC5A IN_SAME_COMPONENT NTN1 -UNC5A REACTS_WITH DCC -UNC5A REACTS_WITH NTN1 -UNC5A REACTS_WITH UNC5A -UNC5A STATE_CHANGE RAC1 -UNC5A STATE_CHANGE RHOA -UNC5B IN_SAME_COMPONENT DCC -UNC5B IN_SAME_COMPONENT NTN1 -UNC5B REACTS_WITH DCC -UNC5B REACTS_WITH NTN1 -UNC5B REACTS_WITH UNC5B -UNC5B STATE_CHANGE DAPK1 -UNC5B STATE_CHANGE FYN -UNC5C IN_SAME_COMPONENT DCC -UNC5C IN_SAME_COMPONENT NTN1 -UNC5C REACTS_WITH DCC -UNC5C REACTS_WITH NTN1 -UNC5C REACTS_WITH UNC5C -USF2 IN_SAME_COMPONENT FOSL1 -USF2 METABOLIC_CATALYSIS HMOX1 -USF2 REACTS_WITH FOSL1 -USF2 REACTS_WITH USF2 -USO1 IN_SAME_COMPONENT GBF1 -USO1 IN_SAME_COMPONENT GOSR2 -USO1 REACTS_WITH CLTA -USO1 REACTS_WITH CLTB -USO1 REACTS_WITH COPA -USO1 REACTS_WITH GBF1 -USO1 REACTS_WITH GOSR2 -USO1 REACTS_WITH USO1 -USP6NL IN_SAME_COMPONENT ACTN4 -USP6NL IN_SAME_COMPONENT EPS8 -USP6NL IN_SAME_COMPONENT RAB5A -USP6NL REACTS_WITH ABI1 -USP6NL REACTS_WITH ACTN4 -USP6NL REACTS_WITH EPS8 -USP6NL REACTS_WITH RAB5A -USP6NL REACTS_WITH SOS1 -USP6NL REACTS_WITH USP6NL -USP6NL STATE_CHANGE RAB5A -USP7 CO_CONTROL RASSF1 -USP7 IN_SAME_COMPONENT DAXX -USP7 STATE_CHANGE FOXO4 -USP7 STATE_CHANGE MDM2 -USP7 STATE_CHANGE TP53 -USP8 STATE_CHANGE EGF -USP8 STATE_CHANGE EGFR -USP8 STATE_CHANGE RNF41 -VAMP2 CO_CONTROL CALM1 -VAMP2 CO_CONTROL RHOQ -VAMP2 CO_CONTROL TRIP10 -VAMP2 IN_SAME_COMPONENT LNPEP -VAMP2 IN_SAME_COMPONENT SLC2A4 -VAMP2 IN_SAME_COMPONENT STX1A -VAMP2 IN_SAME_COMPONENT STX4 -VAMP2 IN_SAME_COMPONENT STXBP4 -VAMP2 REACTS_WITH SLC2A4 -VAMP2 REACTS_WITH STX1A -VAMP2 REACTS_WITH VAMP2 -VAMP2 STATE_CHANGE LNPEP -VAMP2 STATE_CHANGE SLC2A4 -VAMP2 STATE_CHANGE SYT1 -VAMP2 STATE_CHANGE VAMP2 -VASP IN_SAME_COMPONENT CXCR2 -VASP IN_SAME_COMPONENT IL8 -VASP REACTS_WITH CXCR2 -VASP REACTS_WITH IL8 -VASP REACTS_WITH VASP -VAV1 CO_CONTROL GRAP2 -VAV1 CO_CONTROL ITK -VAV1 CO_CONTROL LCP2 -VAV1 CO_CONTROL PLCG1 -VAV1 CO_CONTROL VAV1 -VAV1 IN_SAME_COMPONENT CBL -VAV1 IN_SAME_COMPONENT CXCL12 -VAV1 IN_SAME_COMPONENT CXCR4 -VAV1 IN_SAME_COMPONENT GRAP2 -VAV1 IN_SAME_COMPONENT ITK -VAV1 IN_SAME_COMPONENT LCP2 -VAV1 IN_SAME_COMPONENT NCK1 -VAV1 IN_SAME_COMPONENT PLCG1 -VAV1 IN_SAME_COMPONENT SOCS1 -VAV1 REACTS_WITH CBL -VAV1 REACTS_WITH CXCL12 -VAV1 REACTS_WITH CXCR4 -VAV1 REACTS_WITH GRAP2 -VAV1 REACTS_WITH ITK -VAV1 REACTS_WITH LCP2 -VAV1 REACTS_WITH NCK1 -VAV1 REACTS_WITH PLCG1 -VAV1 REACTS_WITH SOCS1 -VAV1 REACTS_WITH VAV1 -VAV1 STATE_CHANGE CDC42 -VAV1 STATE_CHANGE HRAS -VAV1 STATE_CHANGE PLCG1 -VAV1 STATE_CHANGE PRKCQ -VAV1 STATE_CHANGE RAC1 -VAV1 STATE_CHANGE RHOA -VAV1 STATE_CHANGE WAS -VAV2 CO_CONTROL CD79A -VAV2 CO_CONTROL CD79B -VAV2 CO_CONTROL DAPP1 -VAV2 CO_CONTROL LYN -VAV2 CO_CONTROL NME1 -VAV2 CO_CONTROL PPP3CA -VAV2 CO_CONTROL PPP3CB -VAV2 CO_CONTROL PPP3CC -VAV2 CO_CONTROL SYK -VAV2 CO_CONTROL TIAM1 -VAV2 IN_SAME_COMPONENT TEC -VAV2 REACTS_WITH TEC -VAV2 REACTS_WITH VAV2 -VAV2 STATE_CHANGE CD19 -VAV2 STATE_CHANGE CDC42 -VAV2 STATE_CHANGE NFATC1 -VAV2 STATE_CHANGE PIK3CA -VAV2 STATE_CHANGE PIK3R1 -VAV2 STATE_CHANGE RAC1 -VAV2 STATE_CHANGE RHOA -VAV3 CO_CONTROL AR -VAV3 METABOLIC_CATALYSIS KLK3 -VAV3 STATE_CHANGE CDC42 -VAV3 STATE_CHANGE RAC1 -VAV3 STATE_CHANGE RHOA -VCAM1 CO_CONTROL PTPRA -VCAM1 IN_SAME_COMPONENT ABI1 -VCAM1 IN_SAME_COMPONENT ITGA4 -VCAM1 IN_SAME_COMPONENT ITGA9 -VCAM1 IN_SAME_COMPONENT ITGAD -VCAM1 IN_SAME_COMPONENT ITGB1 -VCAM1 IN_SAME_COMPONENT ITGB2 -VCAM1 IN_SAME_COMPONENT ITGB7 -VCAM1 IN_SAME_COMPONENT PXN -VCAM1 IN_SAME_COMPONENT TLN1 -VCAM1 REACTS_WITH ABI1 -VCAM1 REACTS_WITH ITGA4 -VCAM1 REACTS_WITH ITGA9 -VCAM1 REACTS_WITH ITGAD -VCAM1 REACTS_WITH ITGB1 -VCAM1 REACTS_WITH ITGB2 -VCAM1 REACTS_WITH ITGB7 -VCAM1 REACTS_WITH PXN -VCAM1 REACTS_WITH THBS1 -VCAM1 REACTS_WITH TLN1 -VCAM1 REACTS_WITH VCAM1 -VCAM1 STATE_CHANGE PTK2B -VCAM1 STATE_CHANGE SRC -VCAN IN_SAME_COMPONENT TLR1 -VCAN IN_SAME_COMPONENT TLR2 -VCAN REACTS_WITH TLR1 -VCAN REACTS_WITH TLR2 -VCAN REACTS_WITH TLR6 -VCAN REACTS_WITH VCAN -VCL IN_SAME_COMPONENT TLN1 -VCL INTERACTS_WITH ITGAV -VCL INTERACTS_WITH ITGB3 -VCL INTERACTS_WITH SDC1 -VCL REACTS_WITH TLN1 -VCL REACTS_WITH VCL -VDR IN_SAME_COMPONENT SMAD4 -VDR REACTS_WITH SMAD4 -VDR REACTS_WITH VDR -VEGFA CO_CONTROL S1PR3 -VEGFA IN_SAME_COMPONENT CBL -VEGFA IN_SAME_COMPONENT CD2AP -VEGFA IN_SAME_COMPONENT CDH5 -VEGFA IN_SAME_COMPONENT CTNNA1 -VEGFA IN_SAME_COMPONENT CTNNB1 -VEGFA IN_SAME_COMPONENT DNM2 -VEGFA IN_SAME_COMPONENT FLT1 -VEGFA IN_SAME_COMPONENT FYN -VEGFA IN_SAME_COMPONENT GPC1 -VEGFA IN_SAME_COMPONENT HSP90AA1 -VEGFA IN_SAME_COMPONENT IQGAP1 -VEGFA IN_SAME_COMPONENT ITGA9 -VEGFA IN_SAME_COMPONENT ITGAV -VEGFA IN_SAME_COMPONENT ITGB1 -VEGFA IN_SAME_COMPONENT ITGB3 -VEGFA IN_SAME_COMPONENT KDR -VEGFA IN_SAME_COMPONENT MYOF -VEGFA IN_SAME_COMPONENT NCK1 -VEGFA IN_SAME_COMPONENT PAK2 -VEGFA IN_SAME_COMPONENT PTPN11 -VEGFA IN_SAME_COMPONENT RHOA -VEGFA IN_SAME_COMPONENT ROCK1 -VEGFA IN_SAME_COMPONENT SH2D2A -VEGFA IN_SAME_COMPONENT SHB -VEGFA IN_SAME_COMPONENT SRC -VEGFA IN_SAME_COMPONENT VTN -VEGFA METABOLIC_CATALYSIS AKT3 -VEGFA METABOLIC_CATALYSIS S1PR1 -VEGFA REACTS_WITH CBL -VEGFA REACTS_WITH CD2AP -VEGFA REACTS_WITH CDH5 -VEGFA REACTS_WITH CTNNA1 -VEGFA REACTS_WITH CTNNB1 -VEGFA REACTS_WITH DNM2 -VEGFA REACTS_WITH FLT1 -VEGFA REACTS_WITH FYN -VEGFA REACTS_WITH GPC1 -VEGFA REACTS_WITH HSP90AA1 -VEGFA REACTS_WITH IQGAP1 -VEGFA REACTS_WITH ITGA9 -VEGFA REACTS_WITH ITGAV -VEGFA REACTS_WITH ITGB1 -VEGFA REACTS_WITH ITGB3 -VEGFA REACTS_WITH KDR -VEGFA REACTS_WITH MYOF -VEGFA REACTS_WITH NCK1 -VEGFA REACTS_WITH PAK2 -VEGFA REACTS_WITH PRKACA -VEGFA REACTS_WITH PTPN11 -VEGFA REACTS_WITH RHOA -VEGFA REACTS_WITH ROCK1 -VEGFA REACTS_WITH SH2D2A -VEGFA REACTS_WITH SHB -VEGFA REACTS_WITH SHC2 -VEGFA REACTS_WITH SRC -VEGFA REACTS_WITH VEGFA -VEGFA REACTS_WITH VTN -VEGFA STATE_CHANGE CBL -VEGFA STATE_CHANGE CDC42 -VEGFA STATE_CHANGE FES -VEGFA STATE_CHANGE GAB1 -VEGFA STATE_CHANGE IQGAP1 -VEGFA STATE_CHANGE KDR -VEGFA STATE_CHANGE NOS3 -VEGFA STATE_CHANGE PLCG1 -VEGFA STATE_CHANGE PRKACA -VEGFA STATE_CHANGE PTK2B -VEGFA STATE_CHANGE PTPN11 -VEGFA STATE_CHANGE PTPRJ -VEGFA STATE_CHANGE RHOA -VEGFA STATE_CHANGE SRC -VEGFA STATE_CHANGE VEGFA -VEGFB IN_SAME_COMPONENT FLT1 -VEGFB REACTS_WITH FLT1 -VEGFB REACTS_WITH VEGFB -VEGFB STATE_CHANGE RASA1 -VEGFC IN_SAME_COMPONENT ITGA9 -VEGFC IN_SAME_COMPONENT ITGB1 -VEGFC REACTS_WITH ITGA9 -VEGFC REACTS_WITH ITGB1 -VEGFC REACTS_WITH VEGFC -VHL IN_SAME_COMPONENT CUL2 -VHL IN_SAME_COMPONENT EPAS1 -VHL IN_SAME_COMPONENT HIF1A -VHL IN_SAME_COMPONENT RBX1 -VHL IN_SAME_COMPONENT TCEB1 -VHL IN_SAME_COMPONENT TCEB2 -VHL REACTS_WITH CUL2 -VHL REACTS_WITH EPAS1 -VHL REACTS_WITH HIF1A -VHL REACTS_WITH RBX1 -VHL REACTS_WITH TCEB1 -VHL REACTS_WITH TCEB2 -VHL REACTS_WITH VHL -VLDLR IN_SAME_COMPONENT DAB1 -VLDLR IN_SAME_COMPONENT FYN -VLDLR IN_SAME_COMPONENT PAFAH1B1 -VLDLR IN_SAME_COMPONENT PAFAH1B2 -VLDLR IN_SAME_COMPONENT PAFAH1B3 -VLDLR IN_SAME_COMPONENT PIK3CA -VLDLR IN_SAME_COMPONENT PIK3R1 -VLDLR IN_SAME_COMPONENT RELN -VLDLR INTERACTS_WITH DAB1 -VLDLR INTERACTS_WITH FYN -VLDLR INTERACTS_WITH LRP8 -VLDLR INTERACTS_WITH RELN -VLDLR REACTS_WITH DAB1 -VLDLR REACTS_WITH FYN -VLDLR REACTS_WITH LRP8 -VLDLR REACTS_WITH PAFAH1B1 -VLDLR REACTS_WITH PAFAH1B2 -VLDLR REACTS_WITH PAFAH1B3 -VLDLR REACTS_WITH PIK3CA -VLDLR REACTS_WITH PIK3R1 -VLDLR REACTS_WITH RELN -VLDLR REACTS_WITH VLDLR -VLDLR STATE_CHANGE AKT1 -VLDLR STATE_CHANGE CRKL -VLDLR STATE_CHANGE DAB1 -VLDLR STATE_CHANGE ITGA3 -VLDLR STATE_CHANGE ITGB1 -VLDLR STATE_CHANGE MAP1B -VLDLR STATE_CHANGE NCK2 -VLDLR STATE_CHANGE PAFAH1B1 -VLDLR STATE_CHANGE PLAU -VLDLR STATE_CHANGE PLAUR -VLDLR STATE_CHANGE RAPGEF1 -VLDLR STATE_CHANGE SERPINE1 -VPS24 CO_CONTROL HGS -VPS24 CO_CONTROL TSG101 -VPS24 CO_CONTROL ZFYVE28 -VPS24 STATE_CHANGE EGF -VPS24 STATE_CHANGE EGFR -VPS24 STATE_CHANGE SOS1 -VTN IN_SAME_COMPONENT HSP90AA1 -VTN IN_SAME_COMPONENT ITGA2B -VTN IN_SAME_COMPONENT ITGA3 -VTN IN_SAME_COMPONENT ITGA8 -VTN IN_SAME_COMPONENT ITGAV -VTN IN_SAME_COMPONENT ITGB1 -VTN IN_SAME_COMPONENT ITGB3 -VTN IN_SAME_COMPONENT ITGB5 -VTN IN_SAME_COMPONENT ITGB6 -VTN IN_SAME_COMPONENT ITGB8 -VTN IN_SAME_COMPONENT KDR -VTN IN_SAME_COMPONENT NCL -VTN IN_SAME_COMPONENT PLAU -VTN IN_SAME_COMPONENT PLAUR -VTN IN_SAME_COMPONENT SERPINE1 -VTN IN_SAME_COMPONENT VEGFA -VTN REACTS_WITH HSP90AA1 -VTN REACTS_WITH ITGA2B -VTN REACTS_WITH ITGA3 -VTN REACTS_WITH ITGA8 -VTN REACTS_WITH ITGAV -VTN REACTS_WITH ITGB1 -VTN REACTS_WITH ITGB3 -VTN REACTS_WITH ITGB5 -VTN REACTS_WITH ITGB6 -VTN REACTS_WITH ITGB8 -VTN REACTS_WITH KDR -VTN REACTS_WITH NCL -VTN REACTS_WITH PLAU -VTN REACTS_WITH PLAUR -VTN REACTS_WITH SERPINE1 -VTN REACTS_WITH VEGFA -VTN REACTS_WITH VTN -VTN STATE_CHANGE CDKN1B -VTN STATE_CHANGE F11R -VTN STATE_CHANGE HSP90AA1 -VTN STATE_CHANGE ILK -VTN STATE_CHANGE ITGAV -VTN STATE_CHANGE ITGB3 -VTN STATE_CHANGE KDR -VTN STATE_CHANGE PI4KA -VTN STATE_CHANGE PI4KB -VTN STATE_CHANGE PIK3C2A -VTN STATE_CHANGE PTK2B -VTN STATE_CHANGE RHOA -VTN STATE_CHANGE ROCK1 -VTN STATE_CHANGE SRC -VTN STATE_CHANGE VEGFA -WASF1 IN_SAME_COMPONENT ABI2 -WASF1 IN_SAME_COMPONENT C3orf10 -WASF1 IN_SAME_COMPONENT CYFIP2 -WASF1 IN_SAME_COMPONENT NCKAP1 -WASF2 IN_SAME_COMPONENT ABI1 -WASF2 IN_SAME_COMPONENT C3orf10 -WASF2 IN_SAME_COMPONENT CYFIP2 -WASF2 IN_SAME_COMPONENT NCKAP1 -WASF2 REACTS_WITH ABI1 -WASF2 REACTS_WITH C3orf10 -WASF2 REACTS_WITH CYFIP2 -WASF2 REACTS_WITH NCKAP1 -WASF2 REACTS_WITH WASF2 -WASF2 STATE_CHANGE DIAPH3 -WAS IN_SAME_COMPONENT CDC42 -WASL IN_SAME_COMPONENT ABI1 -WASL IN_SAME_COMPONENT BAIAP2 -WASL IN_SAME_COMPONENT CDC42 -WASL IN_SAME_COMPONENT EGF -WASL IN_SAME_COMPONENT EGFR -WASL IN_SAME_COMPONENT EPHB2 -WASL IN_SAME_COMPONENT GAB1 -WASL IN_SAME_COMPONENT HGF -WASL IN_SAME_COMPONENT ITSN1 -WASL IN_SAME_COMPONENT KIRREL -WASL IN_SAME_COMPONENT MET -WASL IN_SAME_COMPONENT NPHS1 -WASL IN_SAME_COMPONENT NPHS2 -WASL IN_SAME_COMPONENT PDGFB -WASL IN_SAME_COMPONENT PDGFRB -WASL REACTS_WITH ABI1 -WASL REACTS_WITH BAIAP2 -WASL REACTS_WITH CDC42 -WASL REACTS_WITH EGF -WASL REACTS_WITH EGFR -WASL REACTS_WITH EPHB2 -WASL REACTS_WITH GAB1 -WASL REACTS_WITH HGF -WASL REACTS_WITH ITSN1 -WASL REACTS_WITH KIRREL -WASL REACTS_WITH MET -WASL REACTS_WITH NPHS1 -WASL REACTS_WITH NPHS2 -WASL REACTS_WITH PDGFB -WASL REACTS_WITH PDGFRB -WASL REACTS_WITH WASL -WASL STATE_CHANGE ACTR3 -WASL STATE_CHANGE ARPC1B -WASL STATE_CHANGE ARPC2 -WASL STATE_CHANGE ARPC3 -WASL STATE_CHANGE ARPC5 -WASL STATE_CHANGE CDC42 -WASL STATE_CHANGE RAC1 -WAS REACTS_WITH CDC42 -WAS REACTS_WITH WAS -WDR5 REACTS_WITH WDR5 -WDR77 IN_SAME_COMPONENT PRMT5 -WDR77 REACTS_WITH CHD3 -WDR77 REACTS_WITH CHD4 -WDR77 REACTS_WITH GATAD2A -WDR77 REACTS_WITH GATAD2B -WDR77 REACTS_WITH HDAC1 -WDR77 REACTS_WITH HDAC2 -WDR77 REACTS_WITH MBD2 -WDR77 REACTS_WITH MTA2 -WDR77 REACTS_WITH RBBP4 -WDR77 REACTS_WITH RBBP7 -WEE1 STATE_CHANGE CCNB1 -WEE1 STATE_CHANGE CDK1 -WIF1 IN_SAME_COMPONENT WNT3A -WIF1 INTERACTS_WITH FZD1 -WIF1 INTERACTS_WITH LRP6 -WIF1 INTERACTS_WITH WNT1 -WIF1 REACTS_WITH WIF1 -WIF1 REACTS_WITH WNT3A -WIF1 STATE_CHANGE FZD1 -WIF1 STATE_CHANGE LRP6 -WIF1 STATE_CHANGE WNT1 -WIPF1 IN_SAME_COMPONENT FCER1A -WIPF1 IN_SAME_COMPONENT FCER1G -WIPF1 IN_SAME_COMPONENT IGHE -WIPF1 IN_SAME_COMPONENT LYN -WIPF1 IN_SAME_COMPONENT MS4A2 -WIPF1 IN_SAME_COMPONENT SYK -WIPF1 REACTS_WITH FCER1A -WIPF1 REACTS_WITH FCER1G -WIPF1 REACTS_WITH IGHE -WIPF1 REACTS_WITH LYN -WIPF1 REACTS_WITH MS4A2 -WIPF1 REACTS_WITH SYK -WIPF1 REACTS_WITH WIPF1 -WNT1 IN_SAME_COMPONENT FZD1 -WNT1 IN_SAME_COMPONENT FZD8 -WNT1 IN_SAME_COMPONENT LRP5 -WNT1 IN_SAME_COMPONENT LRP6 -WNT1 IN_SAME_COMPONENT RYK -WNT1 INTERACTS_WITH FZD1 -WNT1 INTERACTS_WITH LRP6 -WNT1 INTERACTS_WITH WIF1 -WNT1 REACTS_WITH DKK1 -WNT1 REACTS_WITH FZD1 -WNT1 REACTS_WITH FZD8 -WNT1 REACTS_WITH LRP5 -WNT1 REACTS_WITH LRP6 -WNT1 REACTS_WITH RYK -WNT1 REACTS_WITH WNT1 -WNT1 STATE_CHANGE DVL1 -WNT1 STATE_CHANGE MAP3K7 -WNT2 IN_SAME_COMPONENT FZD1 -WNT2 IN_SAME_COMPONENT FZD9 -WNT2 IN_SAME_COMPONENT LRP6 -WNT2 REACTS_WITH FZD1 -WNT2 REACTS_WITH FZD9 -WNT2 REACTS_WITH LRP6 -WNT2 REACTS_WITH WNT2 -WNT3A CO_CONTROL FZD2 -WNT3A CO_CONTROL WNT5A -WNT3A IN_SAME_COMPONENT ATP6AP2 -WNT3A IN_SAME_COMPONENT AXIN1 -WNT3A IN_SAME_COMPONENT FZD1 -WNT3A IN_SAME_COMPONENT FZD2 -WNT3A IN_SAME_COMPONENT FZD5 -WNT3A IN_SAME_COMPONENT FZD8 -WNT3A IN_SAME_COMPONENT LRP6 -WNT3A IN_SAME_COMPONENT WIF1 -WNT3A REACTS_WITH APC -WNT3A REACTS_WITH ATP6AP2 -WNT3A REACTS_WITH AXIN1 -WNT3A REACTS_WITH CTNNB1 -WNT3A REACTS_WITH DKK1 -WNT3A REACTS_WITH FZD1 -WNT3A REACTS_WITH FZD2 -WNT3A REACTS_WITH FZD5 -WNT3A REACTS_WITH FZD8 -WNT3A REACTS_WITH IGFBP4 -WNT3A REACTS_WITH LRP6 -WNT3A REACTS_WITH WIF1 -WNT3A REACTS_WITH WNT3A -WNT3A REACTS_WITH WNT5A -WNT3A STATE_CHANGE APC -WNT3A STATE_CHANGE AXIN1 -WNT3A STATE_CHANGE CTNNB1 -WNT3A STATE_CHANGE FZD5 -WNT3A STATE_CHANGE LRP6 -WNT3A STATE_CHANGE PI4K2A -WNT3A STATE_CHANGE PPP2R5A -WNT3A STATE_CHANGE WNT3A -WNT3 IN_SAME_COMPONENT FZD1 -WNT3 IN_SAME_COMPONENT LRP6 -WNT3 REACTS_WITH FZD1 -WNT3 REACTS_WITH LRP6 -WNT3 REACTS_WITH WNT3 -WNT5A CO_CONTROL FZD2 -WNT5A CO_CONTROL LRP6 -WNT5A CO_CONTROL PRKCZ -WNT5A CO_CONTROL WNT3A -WNT5A IN_SAME_COMPONENT DVL2 -WNT5A IN_SAME_COMPONENT FLNA -WNT5A IN_SAME_COMPONENT FZD2 -WNT5A IN_SAME_COMPONENT FZD4 -WNT5A IN_SAME_COMPONENT FZD7 -WNT5A IN_SAME_COMPONENT LRP5 -WNT5A IN_SAME_COMPONENT ROR2 -WNT5A REACTS_WITH DVL2 -WNT5A REACTS_WITH FLNA -WNT5A REACTS_WITH FZD2 -WNT5A REACTS_WITH FZD4 -WNT5A REACTS_WITH FZD7 -WNT5A REACTS_WITH LRP5 -WNT5A REACTS_WITH LRP6 -WNT5A REACTS_WITH ROR2 -WNT5A REACTS_WITH WNT3A -WNT5A REACTS_WITH WNT5A -WNT5A STATE_CHANGE RAC1 -WNT5A STATE_CHANGE YES1 -WNT7A IN_SAME_COMPONENT FZD5 -WNT7A IN_SAME_COMPONENT LRP6 -WNT7A REACTS_WITH FZD5 -WNT7A REACTS_WITH LRP6 -WNT7A REACTS_WITH WNT7A -WNT7B IN_SAME_COMPONENT FZD1 -WNT7B IN_SAME_COMPONENT FZD10 -WNT7B IN_SAME_COMPONENT LRP5 -WNT7B REACTS_WITH FZD1 -WNT7B REACTS_WITH FZD10 -WNT7B REACTS_WITH LRP5 -WNT7B REACTS_WITH WNT7B -WRN IN_SAME_COMPONENT TERF2 -WRN REACTS_WITH TERF2 -WRN REACTS_WITH WRN -WT1 METABOLIC_CATALYSIS TERT -WT1 REACTS_WITH WT1 -WWOX REACTS_WITH WWOX -WWOX STATE_CHANGE YAP1 -WWP1 IN_SAME_COMPONENT SMAD7 -WWP1 IN_SAME_COMPONENT TGFBR1 -WWP1 IN_SAME_COMPONENT TGFBR2 -WWP1 REACTS_WITH SMAD7 -WWP1 REACTS_WITH TGFBR1 -WWP1 REACTS_WITH TGFBR2 -WWP1 REACTS_WITH WWP1 -XIAP CO_CONTROL MAP3K7 -XIAP CO_CONTROL SMAD6 -XIAP IN_SAME_COMPONENT BMPR2 -XIAP IN_SAME_COMPONENT MAP3K7 -XIAP REACTS_WITH BMPR2 -XIAP REACTS_WITH MAP3K7 -XIAP REACTS_WITH XIAP -XIAP STATE_CHANGE MAP3K7 -XPO1 IN_SAME_COMPONENT HDAC1 -XPO1 IN_SAME_COMPONENT HDAC4 -XPO1 IN_SAME_COMPONENT NUP214 -XPO1 IN_SAME_COMPONENT RAN -XPO1 REACTS_WITH HDAC1 -XPO1 REACTS_WITH HDAC4 -XPO1 REACTS_WITH RAN -XPO1 REACTS_WITH XPO1 -XPO1 STATE_CHANGE APC -XPO1 STATE_CHANGE CBY1 -XPO1 STATE_CHANGE CTNNB1 -XPO1 STATE_CHANGE FOXO1 -XPO1 STATE_CHANGE FOXO3 -XPO1 STATE_CHANGE FOXO4 -XPO1 STATE_CHANGE GLI1 -XPO1 STATE_CHANGE NFATC1 -XPO1 STATE_CHANGE NFATC2 -XPO1 STATE_CHANGE NFKB1 -XPO1 STATE_CHANGE NFKBIA -XPO1 STATE_CHANGE RELA -XRCC5 CO_CONTROL AR -XRCC5 IN_SAME_COMPONENT BARD1 -XRCC5 IN_SAME_COMPONENT PRKDC -XRCC5 IN_SAME_COMPONENT TERT -XRCC5 IN_SAME_COMPONENT TP53 -XRCC5 IN_SAME_COMPONENT XRCC6 -XRCC5 METABOLIC_CATALYSIS KLK3 -XRCC5 REACTS_WITH BARD1 -XRCC5 REACTS_WITH PRKDC -XRCC5 REACTS_WITH TERT -XRCC5 REACTS_WITH TP53 -XRCC5 REACTS_WITH XRCC5 -XRCC5 REACTS_WITH XRCC6 -XRCC6 CO_CONTROL AR -XRCC6 IN_SAME_COMPONENT BARD1 -XRCC6 IN_SAME_COMPONENT BAX -XRCC6 IN_SAME_COMPONENT PRKDC -XRCC6 IN_SAME_COMPONENT SIRT1 -XRCC6 IN_SAME_COMPONENT TERT -XRCC6 IN_SAME_COMPONENT TP53 -XRCC6 IN_SAME_COMPONENT XRCC5 -XRCC6 METABOLIC_CATALYSIS KLK3 -XRCC6 REACTS_WITH BARD1 -XRCC6 REACTS_WITH BAX -XRCC6 REACTS_WITH PRKDC -XRCC6 REACTS_WITH SIRT1 -XRCC6 REACTS_WITH TERT -XRCC6 REACTS_WITH TP53 -XRCC6 REACTS_WITH XRCC5 -XRCC6 REACTS_WITH XRCC6 -YAP1 IN_SAME_COMPONENT SMAD7 -YAP1 IN_SAME_COMPONENT TGFBR1 -YAP1 IN_SAME_COMPONENT TGFBR2 -YAP1 REACTS_WITH SMAD7 -YAP1 REACTS_WITH TGFBR1 -YAP1 REACTS_WITH TGFBR2 -YAP1 REACTS_WITH YAP1 -YBX1 METABOLIC_CATALYSIS PTPN1 -YES1 STATE_CHANGE CDC42 -YWHAB IN_SAME_COMPONENT CDC25C -YWHAB IN_SAME_COMPONENT HDAC4 -YWHAB IN_SAME_COMPONENT HDAC5 -YWHAB REACTS_WITH CDC25C -YWHAB REACTS_WITH HDAC4 -YWHAB REACTS_WITH HDAC5 -YWHAB REACTS_WITH YWHAB -YWHAE CO_CONTROL RAF1 -YWHAE IN_SAME_COMPONENT EIF2A -YWHAE IN_SAME_COMPONENT HDAC4 -YWHAE IN_SAME_COMPONENT HDAC5 -YWHAE IN_SAME_COMPONENT NDEL1 -YWHAE IN_SAME_COMPONENT NFKB1 -YWHAE IN_SAME_COMPONENT NGF -YWHAE IN_SAME_COMPONENT NGFR -YWHAE IN_SAME_COMPONENT NGFRAP1 -YWHAE IN_SAME_COMPONENT RAF1 -YWHAE IN_SAME_COMPONENT SORT1 -YWHAE IN_SAME_COMPONENT TERT -YWHAE REACTS_WITH EIF2A -YWHAE REACTS_WITH HDAC4 -YWHAE REACTS_WITH HDAC5 -YWHAE REACTS_WITH NDEL1 -YWHAE REACTS_WITH NFKB1 -YWHAE REACTS_WITH NGF -YWHAE REACTS_WITH NGFR -YWHAE REACTS_WITH NGFRAP1 -YWHAE REACTS_WITH RAF1 -YWHAE REACTS_WITH SORT1 -YWHAE REACTS_WITH TERT -YWHAE REACTS_WITH YWHAE -YWHAQ IN_SAME_COMPONENT CABIN1 -YWHAQ IN_SAME_COMPONENT CALM1 -YWHAQ IN_SAME_COMPONENT CAMK4 -YWHAQ REACTS_WITH CABIN1 -YWHAQ REACTS_WITH CALM1 -YWHAQ REACTS_WITH CAMK4 -YWHAQ REACTS_WITH MEF2D -YWHAQ REACTS_WITH YWHAQ -YWHAZ CO_CONTROL KSR1 -YWHAZ IN_SAME_COMPONENT BAD -YWHAZ IN_SAME_COMPONENT CSF2 -YWHAZ IN_SAME_COMPONENT CSF2RA -YWHAZ IN_SAME_COMPONENT CSF2RB -YWHAZ IN_SAME_COMPONENT FN1 -YWHAZ IN_SAME_COMPONENT IL3 -YWHAZ IN_SAME_COMPONENT IL3RA -YWHAZ IN_SAME_COMPONENT ITGA4 -YWHAZ IN_SAME_COMPONENT ITGB1 -YWHAZ IN_SAME_COMPONENT JAK2 -YWHAZ IN_SAME_COMPONENT PIK3CA -YWHAZ IN_SAME_COMPONENT PIK3R1 -YWHAZ IN_SAME_COMPONENT PXN -YWHAZ IN_SAME_COMPONENT RAF1 -YWHAZ IN_SAME_COMPONENT SHC1 -YWHAZ REACTS_WITH BAD -YWHAZ REACTS_WITH CSF2 -YWHAZ REACTS_WITH CSF2RA -YWHAZ REACTS_WITH CSF2RB -YWHAZ REACTS_WITH FN1 -YWHAZ REACTS_WITH IL3 -YWHAZ REACTS_WITH IL3RA -YWHAZ REACTS_WITH ITGA4 -YWHAZ REACTS_WITH ITGB1 -YWHAZ REACTS_WITH JAK2 -YWHAZ REACTS_WITH PIK3CA -YWHAZ REACTS_WITH PIK3R1 -YWHAZ REACTS_WITH PXN -YWHAZ REACTS_WITH RAF1 -YWHAZ REACTS_WITH SHC1 -YWHAZ REACTS_WITH YWHAZ -YWHAZ STATE_CHANGE ATR -YWHAZ STATE_CHANGE ATRIP -YWHAZ STATE_CHANGE CEP164 -YWHAZ STATE_CHANGE CHEK1 -YWHAZ STATE_CHANGE CLSPN -YWHAZ STATE_CHANGE HUS1 -YWHAZ STATE_CHANGE PIK3CA -YWHAZ STATE_CHANGE PIK3R1 -YWHAZ STATE_CHANGE RAD1 -YWHAZ STATE_CHANGE RAD17 -YWHAZ STATE_CHANGE RAD9A -YWHAZ STATE_CHANGE RAF1 -YWHAZ STATE_CHANGE RFC2 -YWHAZ STATE_CHANGE RFC3 -YWHAZ STATE_CHANGE RFC4 -YWHAZ STATE_CHANGE RFC5 -YWHAZ STATE_CHANGE RPA1 -YWHAZ STATE_CHANGE RPA2 -YWHAZ STATE_CHANGE TIMELESS -YWHAZ STATE_CHANGE TIPIN -YWHAZ STATE_CHANGE TOPBP1 -YY1 CO_CONTROL E2F7 -YY1 CO_CONTROL ENO1 -YY1 CO_CONTROL HES1 -YY1 CO_CONTROL MYCBP -YY1 IN_SAME_COMPONENT E2F2 -YY1 IN_SAME_COMPONENT E2F3 -YY1 IN_SAME_COMPONENT HDAC1 -YY1 IN_SAME_COMPONENT HDAC2 -YY1 IN_SAME_COMPONENT HDAC3 -YY1 IN_SAME_COMPONENT MDM2 -YY1 IN_SAME_COMPONENT MLST8 -YY1 IN_SAME_COMPONENT MTOR -YY1 IN_SAME_COMPONENT NOTCH1 -YY1 IN_SAME_COMPONENT PPARGC1A -YY1 IN_SAME_COMPONENT RPTOR -YY1 IN_SAME_COMPONENT RYBP -YY1 IN_SAME_COMPONENT SAP30 -YY1 IN_SAME_COMPONENT TFCP2 -YY1 IN_SAME_COMPONENT UBE2D1 -YY1 METABOLIC_CATALYSIS CDC6 -YY1 METABOLIC_CATALYSIS CYCS -YY1 METABOLIC_CATALYSIS GAA -YY1 METABOLIC_CATALYSIS MYC -YY1 METABOLIC_CATALYSIS PPARGC1A -YY1 REACTS_WITH E2F3 -YY1 REACTS_WITH HDAC1 -YY1 REACTS_WITH HDAC2 -YY1 REACTS_WITH HDAC3 -YY1 REACTS_WITH MDM2 -YY1 REACTS_WITH MLST8 -YY1 REACTS_WITH MTOR -YY1 REACTS_WITH NOTCH1 -YY1 REACTS_WITH PPARGC1A -YY1 REACTS_WITH RPTOR -YY1 REACTS_WITH RYBP -YY1 REACTS_WITH SAP30 -YY1 REACTS_WITH TFCP2 -YY1 REACTS_WITH UBE2D1 -YY1 REACTS_WITH YY1 -YY1 STATE_CHANGE TP53 -ZAP70 CO_CONTROL FYN -ZAP70 CO_CONTROL ITK -ZAP70 CO_CONTROL PTPN11 -ZAP70 IN_SAME_COMPONENT B2M -ZAP70 IN_SAME_COMPONENT CBL -ZAP70 IN_SAME_COMPONENT CD247 -ZAP70 IN_SAME_COMPONENT CD3D -ZAP70 IN_SAME_COMPONENT CD3E -ZAP70 IN_SAME_COMPONENT CD3G -ZAP70 IN_SAME_COMPONENT CD4 -ZAP70 IN_SAME_COMPONENT CD8A -ZAP70 IN_SAME_COMPONENT CD8B -ZAP70 IN_SAME_COMPONENT HLA-A -ZAP70 IN_SAME_COMPONENT HLA-DRA -ZAP70 IN_SAME_COMPONENT HLA-DRB1 -ZAP70 IN_SAME_COMPONENT LCK -ZAP70 IN_SAME_COMPONENT SH3BP2 -ZAP70 IN_SAME_COMPONENT SLA2 -ZAP70 METABOLIC_CATALYSIS LAT -ZAP70 REACTS_WITH B2M -ZAP70 REACTS_WITH CBL -ZAP70 REACTS_WITH CD247 -ZAP70 REACTS_WITH CD3D -ZAP70 REACTS_WITH CD3E -ZAP70 REACTS_WITH CD3G -ZAP70 REACTS_WITH CD4 -ZAP70 REACTS_WITH CD8A -ZAP70 REACTS_WITH CD8B -ZAP70 REACTS_WITH HLA-A -ZAP70 REACTS_WITH HLA-DRA -ZAP70 REACTS_WITH HLA-DRB1 -ZAP70 REACTS_WITH LCK -ZAP70 REACTS_WITH SH3BP2 -ZAP70 REACTS_WITH SLA2 -ZAP70 REACTS_WITH ZAP70 -ZAP70 STATE_CHANGE CBL -ZAP70 STATE_CHANGE CSK -ZAP70 STATE_CHANGE DBNL -ZAP70 STATE_CHANGE GRAP2 -ZAP70 STATE_CHANGE LCP2 -ZAP70 STATE_CHANGE MAP4K1 -ZAP70 STATE_CHANGE PAG1 -ZAP70 STATE_CHANGE PRKCQ -ZAP70 STATE_CHANGE SHC1 -ZAP70 STATE_CHANGE VAV1 -ZBTB17 CO_CONTROL CREB1 -ZBTB17 CO_CONTROL DNMT3A -ZBTB17 CO_CONTROL GFI1 -ZBTB17 CO_CONTROL HDAC1 -ZBTB17 CO_CONTROL HDAC3 -ZBTB17 CO_CONTROL MAX -ZBTB17 CO_CONTROL MYC -ZBTB17 CO_CONTROL SMAD4 -ZBTB17 CO_CONTROL SP1 -ZBTB17 CO_CONTROL SPI1 -ZBTB17 CO_CONTROL TBP -ZBTB17 CO_CONTROL ZBTB17 -ZBTB17 IN_SAME_COMPONENT DNMT3A -ZBTB17 IN_SAME_COMPONENT EP300 -ZBTB17 IN_SAME_COMPONENT GFI1 -ZBTB17 IN_SAME_COMPONENT IRF8 -ZBTB17 IN_SAME_COMPONENT MAX -ZBTB17 IN_SAME_COMPONENT MYC -ZBTB17 IN_SAME_COMPONENT SMAD4 -ZBTB17 IN_SAME_COMPONENT SP1 -ZBTB17 IN_SAME_COMPONENT TJP2 -ZBTB17 METABOLIC_CATALYSIS BCL2 -ZBTB17 METABOLIC_CATALYSIS CCL5 -ZBTB17 METABOLIC_CATALYSIS CCND1 -ZBTB17 METABOLIC_CATALYSIS CDKN1A -ZBTB17 METABOLIC_CATALYSIS CDKN2B -ZBTB17 METABOLIC_CATALYSIS CEBPD -ZBTB17 METABOLIC_CATALYSIS CLU -ZBTB17 METABOLIC_CATALYSIS COL1A2 -ZBTB17 METABOLIC_CATALYSIS DDIT3 -ZBTB17 METABOLIC_CATALYSIS HMGCS2 -ZBTB17 METABOLIC_CATALYSIS ITGA6 -ZBTB17 METABOLIC_CATALYSIS ITGB1 -ZBTB17 METABOLIC_CATALYSIS ITGB4 -ZBTB17 METABOLIC_CATALYSIS LGALS1 -ZBTB17 METABOLIC_CATALYSIS MXD4 -ZBTB17 METABOLIC_CATALYSIS NDRG2 -ZBTB17 METABOLIC_CATALYSIS SLC11A1 -ZBTB17 REACTS_WITH DNMT3A -ZBTB17 REACTS_WITH EP300 -ZBTB17 REACTS_WITH GFI1 -ZBTB17 REACTS_WITH IRF8 -ZBTB17 REACTS_WITH MAX -ZBTB17 REACTS_WITH MYC -ZBTB17 REACTS_WITH SMAD4 -ZBTB17 REACTS_WITH SP1 -ZBTB17 REACTS_WITH TJP2 -ZBTB17 REACTS_WITH ZBTB17 -ZBTB33 CO_CONTROL CDH1 -ZBTB33 CO_CONTROL CTNND1 -ZBTB33 CO_CONTROL ZBTB33 -ZBTB33 IN_SAME_COMPONENT CDH1 -ZBTB33 IN_SAME_COMPONENT CTNND1 -ZBTB33 METABOLIC_CATALYSIS MMP7 -ZBTB33 REACTS_WITH CDH1 -ZBTB33 REACTS_WITH CTNND1 -ZBTB33 REACTS_WITH ZBTB33 -ZFPM1 IN_SAME_COMPONENT CHD3 -ZFPM1 IN_SAME_COMPONENT CHD4 -ZFPM1 IN_SAME_COMPONENT GATA1 -ZFPM1 IN_SAME_COMPONENT GATAD2A -ZFPM1 IN_SAME_COMPONENT GATAD2B -ZFPM1 IN_SAME_COMPONENT HDAC1 -ZFPM1 IN_SAME_COMPONENT HDAC2 -ZFPM1 IN_SAME_COMPONENT MBD3 -ZFPM1 IN_SAME_COMPONENT MTA2 -ZFPM1 IN_SAME_COMPONENT RBBP4 -ZFPM1 IN_SAME_COMPONENT RBBP7 -ZFPM1 METABOLIC_CATALYSIS MYB -ZFPM1 REACTS_WITH CHD3 -ZFPM1 REACTS_WITH CHD4 -ZFPM1 REACTS_WITH GATA1 -ZFPM1 REACTS_WITH GATAD2A -ZFPM1 REACTS_WITH GATAD2B -ZFPM1 REACTS_WITH HDAC1 -ZFPM1 REACTS_WITH HDAC2 -ZFPM1 REACTS_WITH MBD3 -ZFPM1 REACTS_WITH MTA2 -ZFPM1 REACTS_WITH RBBP4 -ZFPM1 REACTS_WITH RBBP7 -ZFPM1 REACTS_WITH ZFPM1 -ZFYVE16 IN_SAME_COMPONENT BMPR2 -ZFYVE16 IN_SAME_COMPONENT PPP1CA -ZFYVE16 IN_SAME_COMPONENT PPP1R15A -ZFYVE16 IN_SAME_COMPONENT SMAD1 -ZFYVE16 IN_SAME_COMPONENT SMAD4 -ZFYVE16 IN_SAME_COMPONENT TGFBR1 -ZFYVE16 IN_SAME_COMPONENT TGFBR2 -ZFYVE16 REACTS_WITH BMPR2 -ZFYVE16 REACTS_WITH PPP1CA -ZFYVE16 REACTS_WITH PPP1R15A -ZFYVE16 REACTS_WITH SMAD1 -ZFYVE16 REACTS_WITH SMAD2 -ZFYVE16 REACTS_WITH SMAD4 -ZFYVE16 REACTS_WITH TGFBR1 -ZFYVE16 REACTS_WITH TGFBR2 -ZFYVE16 REACTS_WITH ZFYVE16 -ZFYVE28 CO_CONTROL HGS -ZFYVE28 CO_CONTROL TSG101 -ZFYVE28 CO_CONTROL VPS24 -ZFYVE28 STATE_CHANGE EGF -ZFYVE28 STATE_CHANGE EGFR -ZFYVE28 STATE_CHANGE SOS1 -ZFYVE9 CO_CONTROL SMAD7 -ZFYVE9 CO_CONTROL STRAP -ZFYVE9 CO_CONTROL TGFBR1 -ZFYVE9 CO_CONTROL TGFBR2 -ZFYVE9 IN_SAME_COMPONENT TGFBR1 -ZFYVE9 IN_SAME_COMPONENT TGFBR2 -ZFYVE9 REACTS_WITH CAV1 -ZFYVE9 REACTS_WITH SMAD7 -ZFYVE9 REACTS_WITH TGFBR1 -ZFYVE9 REACTS_WITH TGFBR2 -ZFYVE9 REACTS_WITH ZFYVE9 -ZFYVE9 STATE_CHANGE PPP1CA -ZFYVE9 STATE_CHANGE PPP1R15A -ZFYVE9 STATE_CHANGE SMAD2 -ZFYVE9 STATE_CHANGE SMAD7 -ZFYVE9 STATE_CHANGE STRAP -ZFYVE9 STATE_CHANGE TGFBR1 -ZFYVE9 STATE_CHANGE TGFBR2 -ZMIZ1 STATE_CHANGE AR -ZMIZ2 CO_CONTROL AR -ZMIZ2 CO_CONTROL SMARCA2 -ZMIZ2 CO_CONTROL SMARCE1 -ZMIZ2 METABOLIC_CATALYSIS KLK3 -ZNF274 IN_SAME_COMPONENT BDNF -ZNF274 IN_SAME_COMPONENT NGF -ZNF274 IN_SAME_COMPONENT NGFR -ZNF274 IN_SAME_COMPONENT SORT1 -ZNF274 IN_SAME_COMPONENT TRAF6 -ZNF274 REACTS_WITH BDNF -ZNF274 REACTS_WITH NGF -ZNF274 REACTS_WITH NGFR -ZNF274 REACTS_WITH SORT1 -ZNF274 REACTS_WITH TRAF6 -ZNF274 REACTS_WITH ZNF274 -ZNF274 STATE_CHANGE TP53 -ZNF385A CO_CONTROL HDAC2 -ZNF385A CO_CONTROL POU4F1 -ZNF385A CO_CONTROL SMARCA4 -ZNF385A CO_CONTROL TADA2B -ZNF385A CO_CONTROL TAF9 -ZNF385A CO_CONTROL TP53 -ZNF385A METABOLIC_CATALYSIS CDKN1A -ZNF385A METABOLIC_CATALYSIS SFN -ZYX IN_SAME_COMPONENT F2R -ZYX REACTS_WITH F2R -ZYX REACTS_WITH ZYX -ZYX STATE_CHANGE VASP diff --git a/core/src/main/resources/survival_no_plots.txt b/core/src/main/resources/survival_no_plots.txt deleted file mode 100644 index 9d0e163bbb0..00000000000 --- a/core/src/main/resources/survival_no_plots.txt +++ /dev/null @@ -1,51 +0,0 @@ -library(survival) -attach(df) - -os_p_val = -1 -dfs_p_val = -1 -num_groups = -1 -os_error = 0 -dfs_error = 0 - -# Determine number of groups we are dealing with -num_groups = length(unique(df$GENE_SET_ALTERED)) -# Perform Overall Survival Analysis -os_surv = Surv (df$OS_MONTHS, df$OS_STATUS) -two_colors = c("red", "blue") -os_surv_fit = tryCatch(survfit(os_surv ~ GENE_SET_ALTERED), - error=function(e) NULL) - -if (num_groups > 1) { - if (! is.null(os_surv_fit)) { - os_log_rank = survdiff (os_surv ~ GENE_SET_ALTERED) - os_p_val <- 1 - pchisq(os_log_rank$chisq, length(os_log_rank$n) - 1) - } else { - os_error = 1 - } -} else { - if (is.null(os_surv_fit)) { - os_error = 1 - } -} - -# Perform Disease Free Survival Analysis -dfs_surv = Surv (df$DFS_MONTHS, df$DFS_STATUS) -dfs_surv_fit = tryCatch(survfit(dfs_surv ~ GENE_SET_ALTERED), - error=function(e) NULL) -if (num_groups > 1) { - if (! is.null(dfs_surv_fit)) { - dfs_log_rank = tryCatch(survdiff (dfs_surv ~ GENE_SET_ALTERED), - error=function(e) NULL) - if (! is.null(dfs_log_rank)) { - dfs_p_val <- 1 - pchisq(dfs_log_rank$chisq, length(dfs_log_rank$n) - 1) - } else { - dfs_error = 1 - } - } else { - dfs_error = 1 - } -} else { - if (is.null(dfs_surv_fit)) { - dfs_error = 1 - } -} \ No newline at end of file diff --git a/core/src/main/scripts/addCaseList.pl b/core/src/main/scripts/addCaseList.pl deleted file mode 100755 index fa41586598e..00000000000 --- a/core/src/main/scripts/addCaseList.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/envSimple.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -Dspring.profiles.active=dbcp -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.AddCaseList @ARGV"); diff --git a/core/src/main/scripts/all-breast-su2c.sh b/core/src/main/scripts/all-breast-su2c.sh deleted file mode 100755 index c1105ec1ce6..00000000000 --- a/core/src/main/scripts/all-breast-su2c.sh +++ /dev/null @@ -1,39 +0,0 @@ -# Load up the Breast Meta Data File -./importCancerStudy.pl $GDAC_CGDS_STAGING_HOME/brca_tcga/brca_tcga.txt - -# Imports All Case Lists -./importCaseList.pl $GDAC_CGDS_STAGING_HOME/brca_tcga/case_lists - -# Imports Clinical Data -./importClinicalData.pl $GDAC_CGDS_STAGING_HOME/brca_tcga/brca_tcga_clinical.txt brca_tcga - -# Imports Mutation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_mutations_extended.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_mutations_extended.txt --dbmsAction clobber - -# Imports Copy Number Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_CNA.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_CNA.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_log2CNA.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_log2CNA.txt --dbmsAction clobber - -# Imports MRNA Expression Data -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_expression_median.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_expression_median.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_RNA_Seq_expression_median.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_RNA_Seq_expression_median.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_mRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_mRNA_median_Zscores.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_RNA_Seq_mRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_RNA_Seq_mRNA_median_Zscores.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_expression_merged_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_expression_merged_median_Zscores.txt --dbmsAction clobber - -# Imports miRNA Data -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_expression_miRNA.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_expression_miRNA.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_miRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_miRNA_median_Zscores.txt --dbmsAction clobber - -# Imports Methylation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/brca_tcga/data_methylation.txt --meta $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_methylation.txt --dbmsAction clobber - -# MutSig -./importMutSig.pl $GDAC_CGDS_STAGING_HOME/brca_tcga/data_mutsig.txt $GDAC_CGDS_STAGING_HOME/brca_tcga/meta_mutsig.txt - -# Gistic -./importGistic.pl $GDAC_CGDS_STAGING_HOME/brca_tcga/data_GISTIC_GENE_AMPS.txt brca_tcga -./importGistic.pl $GDAC_CGDS_STAGING_HOME/brca_tcga/data_GISTIC_GENE_DELS.txt brca_tcga - -# Copy number segment -./importCopyNumberSegmentData.pl $GDAC_CGDS_STAGING_HOME/brca_tcga/brca_tcga_scna_minus_germline_cnv_hg19.seg brca_tcga \ No newline at end of file diff --git a/core/src/main/scripts/all-coadread-public.sh b/core/src/main/scripts/all-coadread-public.sh deleted file mode 100755 index 2aa926a15ff..00000000000 --- a/core/src/main/scripts/all-coadread-public.sh +++ /dev/null @@ -1,39 +0,0 @@ -# Load up the Meta Data File -./importCancerStudy.pl $GDAC_CGDS_STAGING_HOME/coadread_tcga/coadread_tcga.txt - -# Imports All Case Lists -./importCaseList.pl $GDAC_CGDS_STAGING_HOME/coadread_tcga/case_lists - -# Imports Clinical Data -./importClinicalData.pl $GDAC_CGDS_STAGING_HOME/coadread_tcga/coadread_tcga_clinical.txt coadread_tcga - -# Imports Mutation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_mutations_extended.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_mutations_extended.txt --dbmsAction clobber - -# Imports Copy Number Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_CNA.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_CNA.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_log2CNA.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_log2CNA.txt --dbmsAction clobber - -# Imports MRNA Expression Data -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_expression_median.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_expression_median.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_RNA_Seq_expression_median.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_RNA_Seq_expression_median.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_mRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_mRNA_median_Zscores.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_RNA_Seq_mRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_RNA_Seq_mRNA_median_Zscores.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_expression_merged_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_expression_merged_median_Zscores.txt --dbmsAction clobber - -# Imports miRNA Data -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_expression_miRNA.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_expression_miRNA.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_miRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_miRNA_median_Zscores.txt --dbmsAction clobber - -# Imports Methylation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_methylation.txt --meta $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_methylation.txt --dbmsAction clobber - -# MutSig -./importMutSig.pl $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_mutsig.txt $GDAC_CGDS_STAGING_HOME/coadread_tcga/meta_mutsig.txt - -# Gistic -./importGistic.pl $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_GISTIC_GENE_AMPS.txt coadread_tcga -./importGistic.pl $GDAC_CGDS_STAGING_HOME/coadread_tcga/data_GISTIC_GENE_DELS.txt coadread_tcga - -# Copy number segment -./importCopyNumberSegmentData.pl $GDAC_CGDS_STAGING_HOME/coadread_tcga/coadread_tcga_scna_minus_germline_cnv_hg19.seg coadread_tcga \ No newline at end of file diff --git a/core/src/main/scripts/all-gbm-public.sh b/core/src/main/scripts/all-gbm-public.sh deleted file mode 100755 index acf036bbabf..00000000000 --- a/core/src/main/scripts/all-gbm-public.sh +++ /dev/null @@ -1,41 +0,0 @@ -################################################# -# WARNING - these scripts should not be used -# to create a Public Portal within the cBio Lab. -# The firehose converter should be used instead. -################################################ - -# Load up the GBM_TCGA Meta Data File -./importCancerStudy.pl $GDAC_CGDS_STAGING_HOME/gbm_tcga/gbm_tcga.txt - -# Load Cases and Clinical Data -./importCaseList.pl $GDAC_CGDS_STAGING_HOME/gbm_tcga/case_lists -./importClinicalData.pl $GDAC_CGDS_STAGING_HOME/gbm_tcga/gbm_tcga_clinical.txt gbm_tcga - -# Load Mutation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_mutations_extended.txt --meta $GDAC_CGDS_STAGING_HOME/gbm_tcga/meta_mutations_extended.txt --dbmsAction clobber - -# Load CNA Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_CNA.txt --meta $GDAC_CGDS_STAGING_HOME/gbm_tcga/meta_CNA.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_log2CNA.txt --meta $GDAC_CGDS_STAGING_HOME/gbm_tcga/meta_log2CNA.txt --dbmsAction clobber - -# Load mRNA Data -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_expression_median.txt --meta $GDAC_CGDS_STAGING_HOME/gbm_tcga/meta_expression_median.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_expression_merged_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/gbm_tcga/meta_expression_merged_median_Zscores.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_mRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/gbm_tcga/meta_mRNA_median_Zscores.txt --dbmsAction clobber - -# Load miRNA -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_miRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/gbm_tcga/meta_miRNA_median_Zscores.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_expression_miRNA.txt --meta $GDAC_CGDS_STAGING_HOME/gbm_tcga/meta_expression_miRNA.txt --dbmsAction clobber - -# Import Methylation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_methylation.txt --meta $GDAC_CGDS_STAGING_HOME/gbm_tcga/meta_methylation.txt --dbmsAction clobber - -# MutSig -./importMutSig.pl $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_mutsig.txt $GDAC_CGDS_STAGING_HOME/gbm_tcga/meta_mutsig.txt - -# Gistic -./importGistic.pl $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_GISTIC_GENE_AMPS.txt gbm_tcga -./importGistic.pl $GDAC_CGDS_STAGING_HOME/gbm_tcga/data_GISTIC_GENE_DELS.txt gbm_tcga - -# Copy number segment -./importCopyNumberSegmentData.pl $GDAC_CGDS_STAGING_HOME/gbm_tcga/gbm_tcga_scna_minus_germline_cnv_hg19.seg gbm_tcga \ No newline at end of file diff --git a/core/src/main/scripts/all-lusc-public.sh b/core/src/main/scripts/all-lusc-public.sh deleted file mode 100644 index 5fad101f004..00000000000 --- a/core/src/main/scripts/all-lusc-public.sh +++ /dev/null @@ -1,42 +0,0 @@ -# Load up the Meta Data File -./importCancerStudy.pl $GDAC_CGDS_STAGING_HOME/lusc_tcga/lusc_tcga.txt - -# Imports All Case Lists -./importCaseList.pl $GDAC_CGDS_STAGING_HOME/lusc_tcga/case_lists - -# Imports Clinical Data -./importClinicalData.pl $GDAC_CGDS_STAGING_HOME/lusc_tcga/lusc_tcga_clinical.txt lusc_tcga - -# Imports Mutation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_mutations_extended.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_mutations_extended.txt --dbmsAction clobber - -# Imports Copy Number Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_CNA.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_CNA.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_log2CNA.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_log2CNA.txt --dbmsAction clobber - -# Imports MRNA Expression Data -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_expression_median.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_expression_median.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_RNA_Seq_expression_median.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_RNA_Seq_expression_median.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_mRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_mRNA_median_Zscores.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_RNA_Seq_mRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_RNA_Seq_mRNA_median_Zscores.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_expression_merged_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_expression_merged_median_Zscores.txt --dbmsAction clobber - -# Imports miRNA Data -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_expression_miRNA.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_expression_miRNA.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_miRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_miRNA_median_Zscores.txt --dbmsAction clobber - -# Imports Methylation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_methylation.txt --meta $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_methylation.txt --dbmsAction clobber - -# RPPA -#./importProteinArrayData.pl $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_rppa.txt lusc_tcga - -# MutSig -#./importMutSig.pl $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_mutsig.txt $GDAC_CGDS_STAGING_HOME/lusc_tcga/meta_mutsig.txt - -# Gistic -./importGistic.pl $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_GISTIC_GENE_AMPS.txt lusc_tcga -./importGistic.pl $GDAC_CGDS_STAGING_HOME/lusc_tcga/data_GISTIC_GENE_DELS.txt lusc_tcga - -# Copy number segment -./importCopyNumberSegmentData.pl $GDAC_CGDS_STAGING_HOME/lusc_tcga/lusc_tcga_scna_minus_germline_cnv_hg19.seg lusc_tcga \ No newline at end of file diff --git a/core/src/main/scripts/all-ovarian-public.sh b/core/src/main/scripts/all-ovarian-public.sh deleted file mode 100755 index 217704a444e..00000000000 --- a/core/src/main/scripts/all-ovarian-public.sh +++ /dev/null @@ -1,40 +0,0 @@ -################################################# -# WARNING - these scripts should not be used -# to create a Public Portal within the cBio Lab. -# The firehose converter should be used instead. -################################################ - -# Load up the Ovarian Meta Data File -./importCancerStudy.pl $PORTAL_DATA_HOME/public-override/ov_tcga_pub/ov_tcga_pub.txt - -# Imports All Case Lists -./importCaseList.pl $PORTAL_DATA_HOME/public-override/ov_tcga_pub/case_lists - -# Imports Clinical Data -./importClinicalData.pl $PORTAL_DATA_HOME/public-override/ov_tcga_pub/ov_tcga_clinical.txt ov_tcga_pub - -# Imports Mutation Data -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_mutations_extended.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_mutations_extended.txt --dbmsAction clobber - -# Imports Copy Number Data -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_CNA.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_CNA.txt --dbmsAction clobber -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_CNA_RAE.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_CNA_RAE.txt --dbmsAction clobber -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_log2CNA.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_log2CNA.txt --dbmsAction clobber - -# Imports MRNA Expression Data -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_expression_median.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_expression_median.txt --dbmsAction clobber -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_expression_merged_median_Zscores.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_expression_merged_median_Zscores.txt --dbmsAction clobber -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_mRNA_median_Zscores.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_mRNA_median_Zscores.txt --dbmsAction clobber -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_mRNA_unified.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_mRNA_unified.txt --dbmsAction clobber -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_mRNA_unified_Zscores.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_mRNA_unified_Zscores.txt --dbmsAction clobber - -# Imports miRNA Data -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_expression_miRNA.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_expression_miRNA.txt --dbmsAction clobber -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_miRNA_median_Zscores.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_miRNA_median_Zscores.txt --dbmsAction clobber - -# Imports Methylation Data -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_methylation.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_methylation.txt --dbmsAction clobber -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/ov_tcga_pub/data_brca1_binary_methylation.txt --meta $PORTAL_DATA_HOME/public-override/ov_tcga_pub/meta_brca1_binary_methylation.txt --dbmsAction clobber - -# Copy number segment -#./importCopyNumberSegmentData.pl $PORTAL_DATA_HOME/public-override/ov_tcga_pub/ov_tcga_pub_scna_hg18.seg ov_tcga_pub diff --git a/core/src/main/scripts/all-ovarian-su2c.sh b/core/src/main/scripts/all-ovarian-su2c.sh deleted file mode 100755 index 1a5e7806ebf..00000000000 --- a/core/src/main/scripts/all-ovarian-su2c.sh +++ /dev/null @@ -1,51 +0,0 @@ -# Delete all preprocessed files -rm -v $GDAC_CGDS_STAGING_HOME/ovarian/processed_* - -# Load up the Ovarian Meta Data File -./importCancerStudy.pl $GDAC_CGDS_STAGING_HOME/ov_tcga/ov_tcga.txt - -# Pre-process data for import -# Runs: -# /scripts/ovarian/gen-rae.py -# --> this script converts RefSeq IDs to Entrez Gene Ids. -# /scripts/ovarian/gen-mrna-expression.py -# --> this script also converts RefSeq IDs to Entrez Gene Ids. -./ovarian/preprocess-all.py - -# Imports All Case Lists -./importCaseList.pl $GDAC_CGDS_STAGING_HOME/ov_tcga/case_lists - -# Imports Clinical Data -./importClinicalData.pl $GDAC_CGDS_STAGING_HOME/ov_tcga/ov_tcga_clinical.txt ov_tcga - -# Imports Mutation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ov_tcga/data_mutations_extended.txt --meta $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_mutations_extended.txt --dbmsAction clobber --germlineWhiteList $GDAC_CGDS_STAGING_HOME/ov_tcga/ovarianGermlineWhiteList.txt - -# Imports Copy Number Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ov_tcga/data_CNA.txt --meta $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_CNA.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ov_tcga/data_log2CNA.txt --meta $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_log2CNA.txt --dbmsAction clobber - -# Imports MRNA Expression Data Files -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ov_tcga/data_expression_median.txt --meta $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_expression_median.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ov_tcga/data_mRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_mRNA_median_Zscores.txt --dbmsAction clobber - -# Imports microRNA Expression Data Files -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ov_tcga/data_miRNA.txt --meta $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_miRNA.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ov_tcga/data_miRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_miRNA_median_Zscores.txt --dbmsAction clobber - -# Import Methylation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ov_tcga/data_methylation.txt --meta $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_methylation.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ov_tcga/data_brca1_binary_methylation.txt --meta $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_brca1_binary_methylation.txt --dbmsAction clobber - -# import ovarian protein data -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ov_tcga/data_protein.txt --meta $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_protein.txt --dbmsAction clobber - -# MutSig -./importMutSig.pl $GDAC_CGDS_STAGING_HOME/ov_tcga/data_mutsig.txt $GDAC_CGDS_STAGING_HOME/ov_tcga/meta_mutsig.txt - -# Gistic -./importGistic.pl $GDAC_CGDS_STAGING_HOME/ov_tcga/data_GISTIC_GENE_AMPS.txt ov_tcga -./importGistic.pl $GDAC_CGDS_STAGING_HOME/ov_tcga/data_GISTIC_GENE_DELS.txt ov_tcga - -# Copy number segment -./importCopyNumberSegmentData.pl $GDAC_CGDS_STAGING_HOME/ov_tcga/ov_tcga_scna_minus_germline_cnv_hg19.seg ov_tcga diff --git a/core/src/main/scripts/all-prostate-broad.sh b/core/src/main/scripts/all-prostate-broad.sh deleted file mode 100755 index 5cb686db8a9..00000000000 --- a/core/src/main/scripts/all-prostate-broad.sh +++ /dev/null @@ -1,20 +0,0 @@ -# Load up the PRAD_BROAD Meta Data File -./importCancerStudy.pl $PORTAL_DATA_HOME/private-override/prad_broad/prad_broad.txt - -# Imports All Case Lists -./importCaseList.pl $PORTAL_DATA_HOME/private-override/prad_broad/case_lists - -# Imports Clinical Data -./importClinicalData.pl $PORTAL_DATA_HOME/private-override/prad_broad/prad_broad_clinical.txt prad_broad - -# Imports Mutation Data -./importProfileData.pl --data $PORTAL_DATA_HOME/private-override/prad_broad/data_mutations_extended.txt --meta $PORTAL_DATA_HOME/private-override/prad_broad/meta_mutations_extended.txt --dbmsAction clobber - -# Imports Copy Number Data -./importProfileData.pl --data $PORTAL_DATA_HOME/private-override/prad_broad/data_CNA.txt --meta $PORTAL_DATA_HOME/private-override/prad_broad/meta_CNA.txt --dbmsAction clobber - -# Copy number segment -#./importCopyNumberSegmentData.pl $PORTAL_DATA_HOME/private-override/prad_broad/prad_broad_scna_hg18.seg prad_broad - -# MutSig -./importMutSig.pl $PORTAL_DATA_HOME/private-override/prad_broad/data_mutsig.txt $PORTAL_DATA_HOME/private-override/prad_broad/meta_mutsig.txt diff --git a/core/src/main/scripts/all-prostate-mich.sh b/core/src/main/scripts/all-prostate-mich.sh deleted file mode 100755 index 70180ba2a4a..00000000000 --- a/core/src/main/scripts/all-prostate-mich.sh +++ /dev/null @@ -1,23 +0,0 @@ -# Load up the PRAD_MICH Meta Data File -./importCancerStudy.pl $PORTAL_DATA_HOME/studies/prad/mich/meta_study.txt - -# Imports All Case Lists -./importCaseList.pl $PORTAL_DATA_HOME/studies/prad/mich/case_lists - -# Imports Clinical Data -./importClinicalData.pl $PORTAL_DATA_HOME/studies/prad/mich/data_clinical.txt prad_mich - -# Imports Mutation Data -./importProfileData.pl --data $PORTAL_DATA_HOME/studies/prad/mich/data_mutations_extended.txt --meta $PORTAL_DATA_HOME/studies/prad/mich/meta_mutations_extended.txt --dbmsAction clobber - -# Imports Copy Number Data -./importProfileData.pl --data $PORTAL_DATA_HOME/studies/prad/mich/data_CNA.txt --meta $PORTAL_DATA_HOME/studies/prad/mich/meta_CNA.txt --dbmsAction clobber - -# Copy number segment -#./importCopyNumberSegmentData.pl $PORTAL_DATA_HOME/studies/prad/mich/prad_mich_scna_hg18.seg prad_mich - -# Imports MRNA Expression Data -./importProfileData.pl --data $PORTAL_DATA_HOME/studies/prad/mich/data_expression_median.txt --meta $PORTAL_DATA_HOME/studies/prad/mich/meta_expression_median.txt --dbmsAction clobber - -# MutSig -./importMutSig.pl $PORTAL_DATA_HOME/studies/prad/mich/data_mutsig.txt $PORTAL_DATA_HOME/studies/prad/mich/meta_mutsig.txt diff --git a/core/src/main/scripts/all-prostate-mskcc.sh b/core/src/main/scripts/all-prostate-mskcc.sh deleted file mode 100755 index 9e8b90d5f5d..00000000000 --- a/core/src/main/scripts/all-prostate-mskcc.sh +++ /dev/null @@ -1,23 +0,0 @@ -# Load up the PRAD_BROAD Meta Data File -./importCancerStudy.pl $PORTAL_DATA_HOME/public-override/prad_mskcc/prad_mskcc.txt - -# Imports All Case Lists -./importCaseList.pl $PORTAL_DATA_HOME/public-override/prad_mskcc/case_lists - -# Imports Clinical Data -./importClinicalData.pl $PORTAL_DATA_HOME/public-override/prad_mskcc/prad_mskcc_clinical.txt prad_mskcc - -# Imports Mutation Data -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/prad_mskcc/data_mutations_extended.txt --meta $PORTAL_DATA_HOME/public-override/prad_mskcc/meta_mutations_extended.txt --dbmsAction clobber - -# Imports Copy Number Data -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/prad_mskcc/data_CNA.txt --meta $PORTAL_DATA_HOME/public-override/prad_mskcc/meta_CNA.txt --dbmsAction clobber - -# Copy number segment -#./importCopyNumberSegmentData.pl $PORTAL_DATA_HOME/public-override/prad_mskcc/prad_mskcc_scna_hg18.seg prad_mskcc - -# Imports MRNA Expression Data -./importProfileData.pl --data $PORTAL_DATA_HOME/public-override/prad_mskcc/data_mRNA_ZbyNorm.txt --meta $PORTAL_DATA_HOME/public-override/prad_mskcc/meta_mRNA_ZbyNorm.txt --dbmsAction clobber - -# MutSig -./importMutSig.pl $PORTAL_DATA_HOME/public-override/prad_mskcc/data_mutsig.txt $PORTAL_DATA_HOME/public-override/prad_mskcc/meta_mutsig.txt \ No newline at end of file diff --git a/core/src/main/scripts/all-prostate-su2c.sh b/core/src/main/scripts/all-prostate-su2c.sh deleted file mode 100755 index 23dad03c4b3..00000000000 --- a/core/src/main/scripts/all-prostate-su2c.sh +++ /dev/null @@ -1,4 +0,0 @@ -./all-prostate-tcga.sh -./all-prostate-broad.sh -./all-prostate-mich.sh -./all-prostate-mskcc.sh diff --git a/core/src/main/scripts/all-prostate-tcga.sh b/core/src/main/scripts/all-prostate-tcga.sh deleted file mode 100755 index 7bf3c19af49..00000000000 --- a/core/src/main/scripts/all-prostate-tcga.sh +++ /dev/null @@ -1,25 +0,0 @@ -# Load up the PRAD_TCGA Meta Data File -./importCancerStudy.pl $GDAC_CGDS_STAGING_HOME/prad_tcga/prad_tcga.txt - -# Imports All Case Lists -./importCaseList.pl $GDAC_CGDS_STAGING_HOME/prad_tcga/case_lists - -# Imports Clinical Data -./importClinicalData.pl $GDAC_CGDS_STAGING_HOME/prad_tcga/prad_tcga_clinical.txt prad_tcga - -# Imports Mutation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/prad_tcga/data_mutations_extended.txt --meta $GDAC_CGDS_STAGING_HOME/prad_tcga/meta_mutations_extended.txt --dbmsAction clobber - -# Imports Copy Number Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/prad_tcga/data_CNA.txt --meta $GDAC_CGDS_STAGING_HOME/prad_tcga/meta_CNA.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/prad_tcga/data_log2CNA.txt --meta $GDAC_CGDS_STAGING_HOME/prad_tcga/meta_log2CNA.txt --dbmsAction clobber - -# MutSig -./importMutSig.pl $GDAC_CGDS_STAGING_HOME/prad_tcga/data_mutsig.txt $GDAC_CGDS_STAGING_HOME/prad_tcga/meta_mutsig.txt - -# Gistic -./importGistic.pl $GDAC_CGDS_STAGING_HOME/prad_tcga/data_GISTIC_GENE_AMPS.txt prad_tcga -./importGistic.pl $GDAC_CGDS_STAGING_HOME/prad_tcga/data_GISTIC_GENE_DELS.txt prad_tcga - -# Copy number segment -./importCopyNumberSegmentData.pl $GDAC_CGDS_STAGING_HOME/prad_tcga/prad_tcga_scna_minus_germline_cnv_hg19.seg prad_tcga diff --git a/core/src/main/scripts/all-su2c.sh b/core/src/main/scripts/all-su2c.sh deleted file mode 100755 index c4c4507642d..00000000000 --- a/core/src/main/scripts/all-su2c.sh +++ /dev/null @@ -1,22 +0,0 @@ -./init.sh - -# ovarian -./all-ovarian-su2c.sh - -# gdac-breast -./all-breast-su2c.sh - -# gdac-endometrial -./all-ucec-su2c.sh - -# Gray cell line -#./all-gray-cell-line-su2c.sh - -# prostate -./all-prostate-su2c.sh - -# gbm -./all-gbm-public.sh - -# coadread -./all-coadread-public.sh \ No newline at end of file diff --git a/core/src/main/scripts/all-ucec-su2c.sh b/core/src/main/scripts/all-ucec-su2c.sh deleted file mode 100755 index 3ad0f858c83..00000000000 --- a/core/src/main/scripts/all-ucec-su2c.sh +++ /dev/null @@ -1,34 +0,0 @@ -# Load up the Endometrioid (UCEC_TCGA) Meta Data File -./importCancerStudy.pl $GDAC_CGDS_STAGING_HOME/ucec_tcga/ucec_tcga.txt - -# Imports All Case Lists -./importCaseList.pl $GDAC_CGDS_STAGING_HOME/ucec_tcga/case_lists - -# Imports Clinical Data -./importClinicalData.pl $GDAC_CGDS_STAGING_HOME/ucec_tcga/ucec_tcga_clinical.txt ucec_tcga - -# Imports Mutation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_mutations_extended.txt --meta $GDAC_CGDS_STAGING_HOME/ucec_tcga/meta_mutations_extended.txt --dbmsAction clobber - -# Imports Copy Number Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_CNA.txt --meta $GDAC_CGDS_STAGING_HOME/ucec_tcga/meta_CNA.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_log2CNA.txt --meta $GDAC_CGDS_STAGING_HOME/ucec_tcga/meta_log2CNA.txt --dbmsAction clobber - -# Imports MRNA Expression Data -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_expression_median.txt --meta $GDAC_CGDS_STAGING_HOME/ucec_tcga/meta_expression_median.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_RNA_Seq_expression_median.txt --meta $GDAC_CGDS_STAGING_HOME/ucec_tcga/meta_RNA_Seq_expression_median.txt --dbmsAction clobber -#./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_mRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/ucec_tcga/meta_mRNA_median_Zscores.txt --dbmsAction clobber -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_RNA_Seq_mRNA_median_Zscores.txt --meta $GDAC_CGDS_STAGING_HOME/ucec_tcga/meta_RNA_Seq_mRNA_median_Zscores.txt --dbmsAction clobber - -# Imports Methylation Data -./importProfileData.pl --data $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_methylation.txt --meta $GDAC_CGDS_STAGING_HOME/ucec_tcga/meta_methylation.txt --dbmsAction clobber - -# MutSig -./importMutSig.pl $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_mutsig.txt $GDAC_CGDS_STAGING_HOME/ucec_tcga/meta_mutsig.txt - -# Gistic -./importGistic.pl $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_GISTIC_GENE_AMPS.txt ucec_tcga -./importGistic.pl $GDAC_CGDS_STAGING_HOME/ucec_tcga/data_GISTIC_GENE_DELS.txt ucec_tcga - -# Copy number segment -./importCopyNumberSegmentData.pl $GDAC_CGDS_STAGING_HOME/ucec_tcga/ucec_tcga.seg ucec_tcga diff --git a/core/src/main/scripts/calculateCoExpression.pl b/core/src/main/scripts/calculateCoExpression.pl deleted file mode 100644 index 7e1a2a27887..00000000000 --- a/core/src/main/scripts/calculateCoExpression.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx2048M -XX:-UseGCOverheadLimit -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.CalculateCoexpression @ARGV"); diff --git a/core/src/main/scripts/calculateMutationFrequencies.py b/core/src/main/scripts/calculateMutationFrequencies.py deleted file mode 100755 index 208bda1e2b9..00000000000 --- a/core/src/main/scripts/calculateMutationFrequencies.py +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.CalculateMutationFrequencies @ARGV"); diff --git a/core/src/main/scripts/compareDirectAndBulkDBMSload.pl b/core/src/main/scripts/compareDirectAndBulkDBMSload.pl deleted file mode 100755 index 27bbb9b7836..00000000000 --- a/core/src/main/scripts/compareDirectAndBulkDBMSload.pl +++ /dev/null @@ -1,332 +0,0 @@ -#!/usr/bin/perl -use strict; -use warnings; -use File::Util; -use Cwd 'abs_path'; # unfortunately, File::Util doesn't find absolute paths -use Data::Dumper; -use Path::Class; -use Getopt::Long; - -# compareDirectAndBulkDBMSload.pl -# automate performance comparison of cgds upload scripts -# test performance of upload of all cgds shellscripts, and plot results - -# author: Arthur Goldberg -# date: Oct 2010 -# this program compares the performance and results of direct load (record insert via SQL INSERT) and bulkload (record insert via -# MySQL LOAD FILE). It executes a set of shell scripts in cgds/bin, provided by the --cgdsScripts option or cgdsLoadScripts(). -# each script is executed twice, once using direct load and once using bulk load. We compare -# 1) the performance of each execution, and -# 2) the DBMS results of each execution -# performance results are written to a file named by $outFileName, structured for import into a spreadsheed and plotting -# DBMS results are compared via MySQL checksum, and written to a file named by $checksumCompareOutput; direct and bulk load should -# produce identical results in each table; as of Oct 2010, they do. - -# on laptop: ./compareDirectAndBulkDBMSload.pl --outputDir "/Users/goldbera/Documents/Projects/TCGA Portal/Fast DBMS load/data/" --MySQLdbParams h=localhost,u=root,p=anOKpwd --database cgds -# on toro: nohup ./compareDirectAndBulkDBMSload.pl --outputDir "/home/goldberg/data" --MySQLdbParams h=localhost,u=cbio,p=cbio --database cgds_arthur &> stdout.txt& -# on toro: uses ./build/WEB-INF/classes/org/mskcc/cbio/portal/util/portal.properties - - -# CONSTANTS -my $loadTypeFile = '/tmp/loadTypeFile.txt'; # TODO: put this file in a private (hidden) directory for cgds, so it won't be removed by other code -my $resetDBcmd = 'resetDb.pl'; -my $LOAD_FILE_TYPE = 'LOAD_FILE'; # name for LOAD FILE timing, and a hash key for storing the LOAD FILE timings -my $RECORD_COUNT = 'RECORD_COUNT'; # a hash key for storing the RECORD_COUNT info - -my @loadTypes = qw( directLoad bulkLoad ); -my $totalLoadTimeName = "Total load time"; - -# COMMAND LINE OPTIONS -my $cgdsScriptsDir; # cgds root directory -my $outputDir; # results output directory -my $MySQLdbParams; # params used by checksum -my $database; # database name - -# GLOBALS -my $checksumCompareOutput; - -my $cgdsScripts; - -my $usage = < ---outputDir ---MySQLdbParams ---database ---cgdsScripts -EndOfUsage - -main(); -sub main{ - - my $result = GetOptions ( - "cgdsScriptsDir=s" => \$cgdsScriptsDir, - "outputDir=s" => \$outputDir, - "MySQLdbParams=s" => \$MySQLdbParams, - "database=s" => \$database, - "cgdsScripts=s" => \$cgdsScripts, - ); - unless( $result and allDefined( $outputDir, $MySQLdbParams, $database ) ){ - # TODO: more detailed errors on command line options - print STDERR "Problem with command line options:\n"; - print STDERR $usage; - exit(1); - } - - # use current dir if $cgdsScriptsDir opt not provided - unless( defined( $cgdsScriptsDir ) ){ - $cgdsScriptsDir = File::Spec->rel2abs( File::Spec->curdir() ); - # print $cgdsScriptsDir, "\n"; - } - - $checksumCompareOutput = File::Spec->catfile( $outputDir, "checksumCompare.txt" ); - measureDBMSload(); - collectAndOutputDBMSloadMeasures(); -} - -# return true iff all arguments are defined -sub allDefined{ - my( @args ) = @_; - foreach my $a (@args){ - if( !defined($a) ){ - return 0; - } - } - return 1; -} - -# get list of scripts used by cgds; *.sh in the scripts directory -sub cgdsLoadScripts { - if( defined($cgdsScripts) ){ - # print "cgdsLoadScripts returning ", Dumper( split( ' ', $cgdsScripts) ); - return split( ' ', $cgdsScripts); - } else { - my $f = File::Util->new(); - my @dirs_and_files = $f->list_dir( $cgdsScriptsDir,'--files-only', '--pattern=\.sh$'); - # print "cgdsLoadScripts returning ", Dumper( @dirs_and_files ); - return @dirs_and_files - } -# return qw( all-breast.sh all-ovarian.sh all-test.sh all-gbm.sh all-prostate.sh ); -} - -# run all the scripts provided by cgdsLoadScripts, and run each script with the old, direct dbms writing approach -# and our new, bulk LOAD FILE approach. For each run of each script -# 1. measure its overall execution time and the execution time of some of its components, and -# 2. check that the run creates the same database -sub measureDBMSload { - - foreach my $loadScript (cgdsLoadScripts()) { - - # pair of checksum files for each dbms writing approach - my @checksumOutputFiles = (); - - # run script with direct and bulk load, saving output to file named 'script..perf.txt' - foreach my $loadType ( @loadTypes ) { - - # empty the dbms; don't want to time that - my $cmd = File::Spec->catfile( $cgdsScriptsDir, $resetDBcmd ); - print "Running '$cmd'.\n"; - system( $cmd ); - - # write to load script and load type dependent file - my $outFileName = 'performance.' . $loadScript . '.' . $loadType . '.out.txt'; - - # to control type of load, have importProfileData.pl read it from a file - system( "echo $loadType > $loadTypeFile" ); - - # measure total time - my $startTime = time(); - my $now_string = localtime; - - my $outputDirEscapeForShell = $outputDir; - # TODO: make this a little, portable sub - $outputDirEscapeForShell =~ s/ /\\ /g; - - my $outFile = File::Spec->catfile( $outputDirEscapeForShell, $outFileName ); - # was my $outFile = $outputDirEscapeForShell . $outFileName; - - $cmd = File::Spec->catfile( $cgdsScriptsDir, $loadScript ) . " > $outFile"; - # was $cmd = $cgdsScriptsDir . $loadScript . " > $outFile"; - print "Running '$cmd'.\n"; - system( $cmd ); - my $endTime = time(); - my $executionTimeMins = ($endTime - $startTime)/60; - - # remove $loadTypeFile - system( "rm $loadTypeFile" ); - - # take checkpoint of database, and save it into file with name that indicates the $loadScript and $loadType - my $checkSumCmd = "mk-table-checksum " . $MySQLdbParams . ' --databases ' . $database; - - my $checkSumOutfile = $outFile . ".checksum"; - system( "$checkSumCmd > $checkSumOutfile" ); - push @checksumOutputFiles, $checkSumOutfile; - - my $resultsFile = file( $outputDir, $outFileName ); # Path::Class::File object - open(my $resultsFH, ">>", $resultsFile ) or die "Can't open '$resultsFile' for appending: $!"; - - # save total time in same file, to be grabbed by collectAndOutputDBMSloadMeasures(); - print $resultsFH sprintf("%.1f", $executionTimeMins), "\t$totalLoadTimeName", "\t$now_string\t$loadScript\t$loadType\n"; - close( $resultsFH ); - - } - - # compare checkpoints from two different $loadType(s) - my $compareCheckSums = "mk-checksum-filter " . join( ' ', @checksumOutputFiles ); - print "Comparing checksums: $compareCheckSums\n"; - my $checksumComparison = `$compareCheckSums`; - - # if result is empty string, report good news, otherwise report that DBMSes differ - my $msg = "Compare checksums for '$loadScript':\n"; - if( $checksumComparison eq '' ){ - $msg .= "EXCELLENT, databases are identical.\n"; - } else { - $msg .= "ERROR, DATABASES DIFFER.\n"; - $msg .= $checksumComparison; - } - # output report to STDERR and append to file that tracks results of from multiple - print STDERR $msg; - - # label checksum comparison report with date timestamp - system( "date >> " . '"' . $checksumCompareOutput . '"' ); - open(my $checksumCompareFH, ">>", $checksumCompareOutput ) - or die "Can't open '$checksumCompareOutput' for appending: $!"; - print $checksumCompareFH $msg, "\n"; - close( $checksumCompareFH ); - - } -} - -# create matrix of data types vs. load type, save to data directory -# suitable for inserting into a spreadsheet -sub collectAndOutputDBMSloadMeasures { - - # create hash of timings as fn of data types, load type, & script - my $timings = {}; - - # hash of total response times, as fn of load type, & script - my $totalTimes = {}; - - my $resultsFile = file( $outputDir, 'performance.out.txt' ); - my $summarizedTimingsFH = $resultsFile->openw(); - # for debugging: $summarizedTimingsFH = *STDOUT; - - foreach my $loadScript (cgdsLoadScripts()) { - - my @dataTypes = (); - # COLLECT DATA - foreach my $loadType ( @loadTypes ) { - - # read file for this script, loadType - my $fileContainingMeasurements = File::Spec->catfile( $outputDir, 'performance.' . $loadScript . '.' . $loadType . '.out.txt' ); - # was: my $fileContainingMeasurements = $outputDir . 'performance.' . $loadScript . '.' . $loadType . '.out.txt'; - - open(my $in, "<", $fileContainingMeasurements ) - or die "Can't open '$fileContainingMeasurements' for reading: $!"; - - my $loadFileTime = 0; - my $tableName = 0; - my $numRecords = 0; - - while( <$in> ){ - chomp; - my $line = $_; - - # get right lines from output files - if( $line =~ /ImportProfileData/ ) { - my( $minutes, $constant, $measuredDataType, @rest) = split( "\t", $line ); - my $cgdsRoot = abs_path( File::Spec->updir($cgdsScriptsDir) ); - - $measuredDataType =~ s|$cgdsRoot|..|g; # get rid of dir - my @tmp = split( ' ', $measuredDataType ); # keep just first dir - $measuredDataType = $tmp[0]; - - $measuredDataType =~ s/ clobber.*$//g; # get rid of other args to org.mskcc.cbio.portal.scripts.ImportProfileData - - $timings->{$loadScript}->{$measuredDataType}->{$loadType} = $minutes; - - # sum "LOAD FILE" timings into $timings - $timings->{$loadScript}->{$measuredDataType}->{ $LOAD_FILE_TYPE } = $loadFileTime; - $loadFileTime = 0; - - $timings->{$loadScript}->{$measuredDataType}->{ $RECORD_COUNT } = $numRecords; - $numRecords = 0; - - # keep @dataTypes in order, but don't duplicate for each loadType - unless( grep( /$measuredDataType/, @dataTypes ) ){ - push @dataTypes, $measuredDataType; - } - } - - if( $line =~ /$totalLoadTimeName/ ) { - my( $minutes, $constant, @rest) = split( "\t", $line ); - $totalTimes->{$loadScript}->{$loadType} = $minutes; - } - - # sum "LOAD FILE" timings - if( $line =~ /$LOAD_FILE_TYPE/ ) { - # parse output from line ~146 of MySQLbulkLoader.java - my( $minutes, $constant, $table, $constant2, $recordCount, @rest ) = split( "\t", $line ); - $loadFileTime += $minutes; - $numRecords += $recordCount; - $tableName = $table; - } - - } - } - - # OUTPUT DATA - # START A NEW SET OF ROWS; OUTPUT HEADER WITH $loadScript - print $summarizedTimingsFH "\n$loadScript\n"; - - # add $LOAD_FILE_TYPE to the @loadTypes; each corresponds to a measurement in a column - my @loadTypesAndSubtypes = (@loadTypes, $LOAD_FILE_TYPE, $RECORD_COUNT); - - # OUTPUT HEADER WITH @loadTypesAndSubtypes; - print $summarizedTimingsFH "Data type\t", join( "\t", @loadTypesAndSubtypes ), "\n"; - - foreach my $dataType ( @dataTypes ) { - - print $summarizedTimingsFH $dataType; - foreach my $loadType ( @loadTypesAndSubtypes ) { - - # OUTPUT timing - print $summarizedTimingsFH "\t", $timings->{$loadScript}->{$dataType}->{$loadType}; - - } - - print $summarizedTimingsFH "\n"; - } - - # output TOTAL across @dataTypes - my $total = {}; - foreach my $loadType ( @loadTypesAndSubtypes ) { - $total->{$loadType} = 0.0; - foreach my $dataType ( @dataTypes ) { - $total->{$loadType} += $timings->{$loadScript}->{$dataType}->{$loadType}; - } - } - print $summarizedTimingsFH "Total"; - foreach my $loadType ( @loadTypesAndSubtypes ) { - print $summarizedTimingsFH "\t", $total->{$loadType}; - } - print $summarizedTimingsFH "\n"; - - # output measured TOTAL - print $summarizedTimingsFH "Total time for $loadScript"; - foreach my $loadType ( @loadTypesAndSubtypes ) { - if( defined( $totalTimes->{$loadScript}->{$loadType} )){ - print $summarizedTimingsFH "\t", $totalTimes->{$loadScript}->{$loadType}; - }else{ - print $summarizedTimingsFH "\t"; - } - } - print $summarizedTimingsFH "\n"; - - } - - # Close file - close( $summarizedTimingsFH ); - # open in OO and draw chart - print "Results written to '$resultsFile'\n"; -} diff --git a/core/src/main/scripts/convertCosmicVcfToMaf.pl b/core/src/main/scripts/convertCosmicVcfToMaf.pl deleted file mode 100755 index 47290ab596a..00000000000 --- a/core/src/main/scripts/convertCosmicVcfToMaf.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ConvertCosmicVcfToMaf @ARGV"); diff --git a/core/src/main/scripts/convertExpressionZscores.pl b/core/src/main/scripts/convertExpressionZscores.pl deleted file mode 100755 index 248c55c1e46..00000000000 --- a/core/src/main/scripts/convertExpressionZscores.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/envSimple.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -Dspring.profiles.active=dbcp -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.NormalizeExpressionLevels @ARGV"); diff --git a/core/src/main/scripts/convertGeneIds.pl b/core/src/main/scripts/convertGeneIds.pl deleted file mode 100755 index aa7dd6dd291..00000000000 --- a/core/src/main/scripts/convertGeneIds.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ConvertGeneIds @ARGV"); diff --git a/core/src/main/scripts/convertGeneSymbols.pl b/core/src/main/scripts/convertGeneSymbols.pl deleted file mode 100755 index 34e435d6368..00000000000 --- a/core/src/main/scripts/convertGeneSymbols.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ConvertGeneSymbols @ARGV"); diff --git a/core/src/main/scripts/convertSvsImages.pl b/core/src/main/scripts/convertSvsImages.pl deleted file mode 100755 index 2c0c99611d1..00000000000 --- a/core/src/main/scripts/convertSvsImages.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx4g -cp $cp org.mskcc.cbio.portal.scripts.ConvertSvsImages @ARGV"); diff --git a/core/src/main/scripts/cutInvalidCases.pl b/core/src/main/scripts/cutInvalidCases.pl deleted file mode 100755 index ab4bfd4315f..00000000000 --- a/core/src/main/scripts/cutInvalidCases.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.CutInvalidCases @ARGV"); diff --git a/core/src/main/scripts/deleteAllCaseLists.pl b/core/src/main/scripts/deleteAllCaseLists.pl deleted file mode 100755 index bb0e9303ba2..00000000000 --- a/core/src/main/scripts/deleteAllCaseLists.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.DeleteAllSampleLists @ARGV"); diff --git a/core/src/main/scripts/downloadChromosomeSizes.py b/core/src/main/scripts/downloadChromosomeSizes.py deleted file mode 100755 index b483b107355..00000000000 --- a/core/src/main/scripts/downloadChromosomeSizes.py +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -""" -Created on Tue Aug 11 14:40:04 2020 - -@author: Sander Rodenburg, The Hyve -""" - -from pandas import DataFrame, read_csv -import json -from sys import argv, exit - -if len(argv) == 1: - outfile = 'importer/chromosome_sizes.json' -elif len(argv) == 2: - outfile = argv[1] -else: - exit('Usage: downloadChromosomeSizes.py [output.json]') - -build_sizes = {} -for build in ['hg19','hg38','mm10']: - sizes = read_csv('http://hgdownload.cse.ucsc.edu/goldenPath/%s/bigZips/%s.chrom.sizes' % (build, build), - sep='\t', header=None, index_col=False, names=['chromosome','size']) - # extract chr[0-9] and XY - sizes = sizes[sizes['chromosome'].str.match('chr([0-9]{1,2}|[XY])$')] - - # remove prefix - sizes['chromosome'] = sizes['chromosome'].str.replace('chr','') - - # parse to json - sizes = sizes.set_index('chromosome').to_json(orient='columns') - - build_sizes[build] = json.loads(sizes)['size'] - -with open(outfile,'w') as f: - json.dump(build_sizes, f) \ No newline at end of file diff --git a/core/src/main/scripts/dumpPortalInfo.pl b/core/src/main/scripts/dumpPortalInfo.pl deleted file mode 100755 index 3d19fbac34d..00000000000 --- a/core/src/main/scripts/dumpPortalInfo.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/envSimple.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -Dspring.profiles.active=dbcp -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.DumpPortalInfo @ARGV"); diff --git a/core/src/main/scripts/env.pl b/core/src/main/scripts/env.pl deleted file mode 100755 index c50da9d3986..00000000000 --- a/core/src/main/scripts/env.pl +++ /dev/null @@ -1,57 +0,0 @@ -# Set up Environment for Running cBio Portal Java Tools - -use File::Spec; -use Cwd 'abs_path'; - -# check for JAVA_HOME -$JAVA_HOME = $ENV{JAVA_HOME}; -if ($JAVA_HOME eq "") { - die "JAVA_HOME Environment Variable is not set. Please set, and try again.\n"; -} - -# Check to see if PORTAL_HOME is set via command line arguments -if ($#ARGV >= 0) { - $arg0 = $ARGV[0]; - $index = index($arg0, "PORTAL_HOME"); - if ($index >= 0) { - $home = substr($arg0, 11); - $ENV{PORTAL_HOME}=$home; - } -} - -$portalHome = $ENV{PORTAL_HOME}; -$portalDataHome = $ENV{PORTAL_DATA_HOME}; -my $osCheck = $ENV{OS}; -my $pathDelim; - -if( $osCheck =~ /win/i){ - $pathDelim=";"; -}else{ - $pathDelim=":"; -} - -if ($portalHome eq "") { - die "PORTAL_HOME Environment Variable is not set. Please set, and try again.\n"; -} - -if ($portalDataHome eq "") { - die "PORTAL_DATA_HOME Environment Variable is not set. Please set, and try again.\n"; -} - -# Set up Classpath to use the scripts jar -sub locate_src_root { - # isolate the directory this code file is in - my ($volume, $script_dir, undef) = File::Spec->splitpath(__FILE__); - # go up from cbioportal/core/src/main/scripts/ to cbioportal/ - my $src_root_dir = File::Spec->catdir($script_dir, (File::Spec->updir()) x 4); - # reassamble the path and resolve updirs (/../) - return abs_path(File::Spec->catpath($volume, $src_root_dir)); -} -$src_root = locate_src_root(); -@jar_files = glob("$src_root/scripts/target/scripts-*.jar"); -if (scalar @jar_files != 1) { - die "Expected to find 1 scripts-*.jar, but found: " . scalar @jar_files; -} -$cp = pop @jar_files; - -return 1; diff --git a/core/src/main/scripts/env.sh b/core/src/main/scripts/env.sh deleted file mode 100755 index 38b7c08c354..00000000000 --- a/core/src/main/scripts/env.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -# rewrite of env.pl in BASH -# -# example usage in BASH scripts: -# bash env.sh && echo "everthing is OK" || echo "we are missing variables" - -# checks to make sure the basic enviroment variables are set -[ ! -z "${JAVA_HOME}" ] && -[ ! -z "${PORTAL_HOME}" ] && -[ ! -z "${PORTAL_DATA_HOME}" ] && exit 0 || exit -1 diff --git a/core/src/main/scripts/envSimple.pl b/core/src/main/scripts/envSimple.pl deleted file mode 100755 index c0080156828..00000000000 --- a/core/src/main/scripts/envSimple.pl +++ /dev/null @@ -1,52 +0,0 @@ -# Set up Environment for Running cBio Portal Java Tools - -use File::Spec; -use Cwd 'abs_path'; - -# check for JAVA_HOME -$JAVA_HOME = $ENV{JAVA_HOME}; -if ($JAVA_HOME eq "") { - die "JAVA_HOME Environment Variable is not set. Please set, and try again.\n"; -} - -# Check to see if PORTAL_HOME is set via command line arguments -if ($#ARGV >= 0) { - $arg0 = $ARGV[0]; - $index = index($arg0, "PORTAL_HOME"); - if ($index >= 0) { - $home = substr($arg0, 11); - $ENV{PORTAL_HOME}=$home; - } -} - -$portalHome = $ENV{PORTAL_HOME}; -my $osCheck = $ENV{OS}; -my $pathDelim; - -if( $osCheck =~ /win/i){ - $pathDelim=";"; -}else{ - $pathDelim=":"; -} - -if ($portalHome eq "") { - die "PORTAL_HOME Environment Variable is not set. Please set, and try again.\n"; -} - -# Set up Classpath to use the scripts jar -sub locate_src_root { - # isolate the directory this code file is in - my ($volume, $script_dir, undef) = File::Spec->splitpath(__FILE__); - # go up from cbioportal/core/src/main/scripts/ to cbioportal/ - my $src_root_dir = File::Spec->catdir($script_dir, (File::Spec->updir()) x 4); - # reassamble the path and resolve updirs (/../) - return abs_path(File::Spec->catpath($volume, $src_root_dir)); -} -$src_root = locate_src_root(); -@jar_files = glob("$src_root/scripts/target/scripts-*.jar"); -if (scalar @jar_files != 1) { - die "Expected to find 1 scripts-*.jar, but found: " . scalar @jar_files; -} -$cp = pop @jar_files; - -return 1; diff --git a/core/src/main/scripts/exportProfile.pl b/core/src/main/scripts/exportProfile.pl deleted file mode 100755 index 8b056af0847..00000000000 --- a/core/src/main/scripts/exportProfile.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ExportProfileData @ARGV"); diff --git a/core/src/main/scripts/fetchBCRDataDict.sh b/core/src/main/scripts/fetchBCRDataDict.sh deleted file mode 100755 index 0e5b8d81765..00000000000 --- a/core/src/main/scripts/fetchBCRDataDict.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -echo "downloading BCR Data Dictionary (XML)..." -echo -wget --no-check-certificate -O $PORTAL_DATA_HOME/reference-data/TCGA_BCR_DataDictionary.html https://tcga-data.nci.nih.gov/docs/dictionary/ diff --git a/core/src/main/scripts/filterCases.pl b/core/src/main/scripts/filterCases.pl deleted file mode 100755 index fca97387eb4..00000000000 --- a/core/src/main/scripts/filterCases.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.FilterCases @ARGV"); diff --git a/core/src/main/scripts/filterCases.sh b/core/src/main/scripts/filterCases.sh deleted file mode 100755 index a08186b1dbd..00000000000 --- a/core/src/main/scripts/filterCases.sh +++ /dev/null @@ -1,13 +0,0 @@ -./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_clinical.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_clinical.txt.new c0 r4 -#./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/luad_tcga_pub_scna_hg18.seg $PORTAL_DATA_HOME/studies/luad/tcga/pub/luad_tcga_pub_scna_hg18.seg.new c0 r1 -#./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/luad_tcga_pub_scna_minus_germline_cnv_hg19.seg $PORTAL_DATA_HOME/studies/luad/tcga/pub/luad_tcga_pub_scna_minus_germline_cnv_hg19.seg.new c0 r1 -#./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_CNA.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_CNA.txt.new r0 c2 -./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_expression_median.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_expression_median.txt.new r0 c2 -#./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_RNA_Seq_v2_expression_median.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_RNA_Seq_v2_expression_median.txt.new r0 c2 -#./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_RNA_Seq_v2_mRNA_median_Zscores.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_RNA_Seq_v2_mRNA_median_Zscores.txt.new r0 c2 -#./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_fusions.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_fusions.txt.new c3 r1 -#./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_log2CNA.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_log2CNA.txt.new r0 c2 -./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_methylation_hm27.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_methylation_hm27.txt.new r0 c2 -./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_methylation_hm450.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_methylation_hm450.txt.new r0 c2 -#./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_mutations_extended.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_mutations_extended.txt.new c15 r1 -./filterCases.pl $PORTAL_DATA_HOME/studies/luad/tcga/pub/cases_manuscript.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_rppa.txt $PORTAL_DATA_HOME/studies/luad/tcga/pub/data_rppa.txt.new r0 c1 diff --git a/core/src/main/scripts/flagStudyForProductionPortalDeployment.py b/core/src/main/scripts/flagStudyForProductionPortalDeployment.py deleted file mode 100755 index 1b237ad34fa..00000000000 --- a/core/src/main/scripts/flagStudyForProductionPortalDeployment.py +++ /dev/null @@ -1,183 +0,0 @@ -#! /usr/bin/env python - -# ------------------------------------------------------------------------------ -# Script which flags a study within the triage portal for deployment into -# production portal. -# ------------------------------------------------------------------------------ - - -# ------------------------------------------------------------------------------ -# imports -import sys -import getopt - -import gdata.docs.client -import gdata.docs.service -import gdata.spreadsheet.service - -import httplib2 -from oauth2client import client -from oauth2client.file import Storage -from oauth2client.client import flow_from_clientsecrets -from oauth2client.tools import run_flow, argparser - -# ------------------------------------------------------------------------------ -# globals - -# some file descriptors -ERROR_FILE = sys.stderr -OUTPUT_FILE = sys.stdout - -# column constants on google spreadsheet -TRIAGE_PORTAL_KEY = "triage-portal" -MSK_AUTOMATION_PORTAL_KEY = "msk-automation-portal" - -# ------------------------------------------------------------------------------ -# subroutines - -# ------------------------------------------------------------------------------ -# logs into google spreadsheet client - -def get_gdata_credentials(secrets, creds, scope, force=False): - storage = Storage(creds) - credentials = storage.get() - if credentials is None or credentials.invalid or force: - credentials = run_flow(flow_from_clientsecrets(secrets, scope=scope), storage, argparser.parse_args([])) - - if credentials.access_token_expired: - credentials.refresh(httplib2.Http()) - - return credentials - -def google_login(secrets, creds, user, pw, app_name): - - credentials = get_gdata_credentials(secrets, creds, ["https://spreadsheets.google.com/feeds"], False) - client = gdata.spreadsheet.service.SpreadsheetsService(additional_headers={'Authorization' : 'Bearer %s' % credentials.access_token}) - - # google spreadsheet - client.email = user - client.password = pw - client.source = app_name - client.ProgrammaticLogin() - - return client - -# ------------------------------------------------------------------------------ -# given a feed & feed name, returns its id - -def get_feed_id(feed, name): - - to_return = '' - - for entry in feed.entry: - if entry.title.text.strip() == name: - id_parts = entry.id.text.split('/') - to_return = id_parts[len(id_parts) - 1] - - return to_return - -# ------------------------------------------------------------------------------ -# gets a worksheet feed - -def get_worksheet_feed(client, ss, ws): - - ss_id = get_feed_id(client.GetSpreadsheetsFeed(), ss) - ws_id = get_feed_id(client.GetWorksheetsFeed(ss_id), ws) - - return client.GetListFeed(ss_id, ws_id) - -# ------------------------------------------------------------------------------ -# Flags a study on the given worksheet -# for deployment into the msk automation portal. - -def flag_study_for_production_portal_deployment(client, worksheet_feed, cancer_study_id, remove_from_triage): - - for entry in worksheet_feed.entry: - for key in entry.custom: - if entry.custom[key].text == cancer_study_id: - client.UpdateRow(entry, get_row_data(entry, remove_from_triage)) - return - -# ------------------------------------------------------------------------------ -# constructs new row entry - -def get_row_data(entry, remove_from_triage): - - dict = {} - for key in entry.custom: - if key == TRIAGE_PORTAL_KEY: - if remove_from_triage == 't': - dict[key] = 'r' - else: - dict[key] = '' - elif key == MSK_AUTOMATION_PORTAL_KEY: - dict[key] = 'x' - else: - dict[key] = entry.custom[key].text - return dict - -# ------------------------------------------------------------------------------ -# displays program usage (invalid args) - -def usage(): - print >> OUTPUT_FILE, ('flagStudyForProductionPortalDeployment.py --secrets-file [google secrets.json] --creds-file [oauth creds filename] --google-id --google-password ' + - '--google-spreadsheet --google-worksheet --cancer-study-id [STABLE_ID] [--remove-from-triage [t/f]]') - -# ------------------------------------------------------------------------------ -# the big deal main. - -def main(): - - # process command line options - try: - opts, args = getopt.getopt(sys.argv[1:], '', - ['secrets-file=', 'creds-file=', 'google-id=', 'google-password=', - 'google-spreadsheet=', 'google-worksheet=', - 'cancer-study-id=', 'remove-from-triage=']) - except getopt.error, msg: - print >> ERROR_FILE, msg - usage() - sys.exit(2) - - secrets_filename = '' - creds_filename = '' - google_id = '' - google_password = '' - google_spreadsheet = '' - google_worksheet = '' - cancer_study_id = '' - remove_from_triage = '' - - for o, a in opts: - if o == '--secrets-file': - secrets_filename = a - elif o == '--creds-file': - creds_filename = a - elif o == '--google-id': - google_id = a - elif o == '--google-password': - google_password = a - elif o == '--google-spreadsheet': - google_spreadsheet = a - elif o == '--google-worksheet': - google_worksheet = a - elif o == '--cancer-study-id': - cancer_study_id = a - elif o == '--remove-from-triage': - remove_from_triage = a - - if (secrets_filename == '' or creds_filename == '' or google_id == '' or google_password == '' or - google_spreadsheet == '' or google_worksheet == '' or cancer_study_id == ''): - usage() - sys.exit(2) - - # the point of the script - client = google_login(secrets_filename, creds_filename, google_id, google_password, sys.argv[1]) - worksheet_feed = get_worksheet_feed(client, google_spreadsheet, google_worksheet) - flag_study_for_production_portal_deployment(client, worksheet_feed, cancer_study_id, remove_from_triage) - -# ------------------------------------------------------------------------------ -# ready to roll - -if __name__ == '__main__': - main() diff --git a/core/src/main/scripts/generateMutationData.pl b/core/src/main/scripts/generateMutationData.pl deleted file mode 100755 index 0d586f232d3..00000000000 --- a/core/src/main/scripts/generateMutationData.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1192M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.GenerateMutationData @ARGV"); diff --git a/core/src/main/scripts/hot-deploy.sh b/core/src/main/scripts/hot-deploy.sh deleted file mode 100755 index 7eb50c16c4f..00000000000 --- a/core/src/main/scripts/hot-deploy.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -# convenience script to drive $PORTAL_HOME/portal/scripts/hotDeploy.py -# example usage: -# -# ./hot-deploy.sh miso.cbio.mskcc.org grossb v1.1.5 - -# setup the enviroment vars (maybe easier to source bashrc, etc, like . /home/user/.bashrc) -PYTHONHOME= -PYTHONPATH= -PORTAL_HOME= - -# host, user, rev (mercurial) get passed in command line -HOST=$1 -USER=$2 -REV=$3 - -# Note, this script was intended to be run via cron. Please ensure that the path to portal.properties.* -$PORTAL_HOME/portal/scripts/hotDeploy.py --credentials $PORTAL_HOME/src/main/resources/properties.txt --portal-properties $PORTAL_HOME/src/main/resources/portal.properties.GDAC --rev $REV --host $HOST --user $USER diff --git a/core/src/main/scripts/hotDeploy.py b/core/src/main/scripts/hotDeploy.py deleted file mode 100755 index 0a1581fb279..00000000000 --- a/core/src/main/scripts/hotDeploy.py +++ /dev/null @@ -1,229 +0,0 @@ -#! /usr/bin/env python - -# ------------------------------------------------------------------------------ -# Script which hot deploys cbio portal fixes. Script assumes -# properties file argument lives within $PORTAL_HOME/portal. This -# script will clobber any existing portal.properties file within $PORTAL_HOME/portal. - -# ------------------------------------------------------------------------------ -# imports -import os -import sys -import getopt -import subprocess -from mercurial import commands, ui, hg - -# ------------------------------------------------------------------------------ -# globals - -# some file descriptors -ERROR_FILE = sys.stderr -OUTPUT_FILE = sys.stdout - -# portal home -PORTAL_HOME = os.environ['PORTAL_HOME'] -if PORTAL_HOME is None: - print >> OUTPUT_FILE, 'PORTAL_HOME environment variable is not set, exiting.' - sys.exit(1) -PORTAL_PROJECT = PORTAL_HOME + os.sep + "portal" - -WAR_FILE_DEST = "/srv/www/sander-tomcat/tomcat6/webapps/" - -# fields in credentials - should match portal portal.properties -CGDS_DATABASE_USER = 'db.user' -CGDS_DATABASE_PW = 'db.password' -BITLY_USER = 'bitly.user' -BITLY_KEY = 'bitly.api_key' -CGDS_USERS_SPREADSHEET = 'users.spreadsheet' - -# ------------------------------------------------------------------------------ -# class definitions - -class Credentials(object): - def __init__(self, - cgds_database_user, cgds_database_pw, - bitly_user, bitly_key): - self.cgds_database_user = cgds_database_user - self.cgds_database_pw = cgds_database_pw - self.bitly_user = bitly_user - self.bitly_key = bitly_key - -# ------------------------------------------------------------------------------ -# functions - -# ------------------------------------------------------------------------------ -# parse credentials - -def get_portal_credentials(credentials): - - properties = {} - credentials_file = open(credentials, 'r') - for line in credentials_file: - line = line.strip() - # skip line if its blank or a comment - if len(line) == 0 or line.startswith('#') or line.startswith(CGDS_USERS_SPREADSHEET): - continue - # store name/value - property = line.split('=') - if (len(property) != 2): - print >> ERROR_FILE, 'Skipping invalid entry in property file: ' + line - continue - properties[property[0]] = property[1].strip() - credentials_file.close() - - # error check - if (CGDS_DATABASE_USER not in properties or len(properties[CGDS_DATABASE_USER]) == 0 or - CGDS_DATABASE_PW not in properties or len(properties[CGDS_DATABASE_PW]) == 0 or - BITLY_USER not in properties or len(properties[BITLY_USER]) == 0 or - BITLY_KEY not in properties or len(properties[BITLY_KEY]) == 0): - print >> ERROR_FILE, 'Missing one or more required properties, please check property file' - return None - - # return an instance of Credentials - return Credentials(properties[CGDS_DATABASE_USER], - properties[CGDS_DATABASE_PW], - properties[BITLY_USER], - properties[BITLY_KEY]) - -# ------------------------------------------------------------------------------ -# build war with given properties file - -def deploy_war(host, user): - - # war file to scp - war_file = PORTAL_PROJECT + os.sep + "build" + os.sep + "war" + os.sep + "*.war" - # setup the scp command & execute - scp_command = "scp %s %s@%s:%s" % (war_file, user, host, WAR_FILE_DEST) - scp_process = subprocess.call(scp_command, shell=True) - if scp_process != 0: - print >> ERROR_FILE, "Error secure copying file, aborting." - sys.exit(1) - -# ------------------------------------------------------------------------------ -# build war with given credentials & portal properties file - -def build_war(portal_credentials, portal_properties): - - # setup portal.properties - portal_properties = PORTAL_PROJECT + os.sep + "portal.properties" - if os.path.exists(portal_properties): - print >> OUTPUT_FILE, "Clobbering %s" % portal_properties - - # we are going to create a new portal.properties file using - # portal_properties as the template and get credentials from portal_credentials - portal_properties_file = open(portal_properties, 'w') - portal_properties_file = open(portal_properties, 'r') - for line in portal_properties_file: - new_line = line - if line.startswith(CGDS_DATABASE_USER): - new_line = '%s=%s\n' % (CGDS_DATABASE_USER, portal_credentials.cgds_database_user) - elif line.startswith(CGDS_DATABASE_PW): - new_line = '%s=%s\n' % (CGDS_DATABASE_PW, portal_credentials.cgds_database_pw) - elif line.startswith(BITLY_USER): - new_line = '%s=%s\n' % (BITLY_USER, portal_credentials.bitly_user) - elif line.startswith(BITLY_KEY): - new_line = '%s=%s\n' % (BITLY_KEY, portal_credentials.bitly_key) - portal_properties_file.write(new_line); - portal_properties_file.close() - portal_properties_file.close() - - # run ant - os.chdir(PORTAL_PROJECT) - - ant_process = subprocess.call('ant clean war', shell=True) - if ant_process != 0: - print >> ERROR_FILE, "Error building war file, aborting." - sys.exit(1) - -# ------------------------------------------------------------------------------ -# update repos to proper tag - -def update_repos(rev): - - try: - print >> OUTPUT_FILE, 'accessing repository: %s' % PORTAL_HOME - repos = hg.repository(ui.ui(), PORTAL_HOME) - print >> OUTPUT_FILE, 'updating to revision: %s' % rev - commands.update(ui.ui(), repos, rev=rev, check=True) - except Exception, e: - print >> ERROR_FILE, "Error: %s" % e - print >> ERROR_FILE, "Aborting." - sys.exit(1) - -# ------------------------------------------------------------------------------ -# displays program usage (invalid args) - -def usage(): - print >> OUTPUT_FILE, ('hotDeploy.py --credentials [credentials] ' + - '--portal-properties-file [build props] ' + - '--rev [tag] --host [deploy location] --user [user on host]') - -# ------------------------------------------------------------------------------ -# the big deal main. - -def main(): - - # parse command line options - try: - opts, args = getopt.getopt(sys.argv[1:], '', ['credentials=', 'portal-properties=', 'rev=', 'host=', 'user=']) - except getopt.error, msg: - print >> ERROR_FILE, msg - usage() - sys.exit(1) - - # process the options - credentials = '' - portal_properties = '' - rev = '' - host = '' - user = '' - - for o, a in opts: - if o == '--credentials': - credentials = a - elif o == '--portal-properties': - portal_properties = a - elif o == '--rev': - rev = a - elif o == '--host': - host = a - elif o == '--user': - user = a - if (credentials == '' or portal_properties == '' or rev == '' or host == '' or user == ''): - usage() - sys.exit(1) - - # check existence of credentials - if not os.path.exists(credentials): - print >> ERROR_FILE, 'credentials file does not exist: ' + credentials - sys.exit(2) - - # check existence of portal properties - if not os.path.exists(portal_properties): - print >> ERROR_FILE, 'portal properties does not exist: ' + portal_properties - sys.exit(2) - - # get portal credentials - print >> OUTPUT_FILE, 'Reading credentials file: ' + credentials - portal_credentials = get_portal_credentials(credentials) - if not portal_credentials: - print >> ERROR_FILE, 'Error reading %s, exiting' % credentials - sys.exit(2) - - # lets update our portal repos to proper tag and build a new war - print >> OUTPUT_FILE, 'Updating mercurial repository to rev: %s' % rev - update_repos(rev) - - # build war - print >> OUTPUT_FILE, 'Building war file using properties file: %s' % portal_properties - build_war(portal_credentials, portal_properties) - - # deploy - print >> OUTPUT_FILE, 'Deploying war file to: %s@%s:%s' % (user, host, WAR_FILE_DEST) - deploy_war(host, user) - -# ------------------------------------------------------------------------------ -# ready to roll - -if __name__ == '__main__': - main() diff --git a/core/src/main/scripts/import-portal-users.sh b/core/src/main/scripts/import-portal-users.sh deleted file mode 100644 index a1026de883b..00000000000 --- a/core/src/main/scripts/import-portal-users.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -# setup the enviroment vars (maybe easier to source bashrc, etc, like . /home/user/.bashrc) -PYTHONHOME= -PYTHONPATH= -PORTAL_HOME= - -# Note, this script was intended to be run via cron. Please ensure that the path to portal.properties.* -# points to an unchanging location and version of the file. The path below is only meant for illustrative purposes. -$PORTAL_HOME/portal/scripts/importUsers.py --properties-file $PORTAL_HOME/portal/portal.properties.GDAC --send-email-confirm true 2>&1 > /dev/null -$PORTAL_HOME/portal/scripts/importUsers.py --properties-file $PORTAL_HOME/portal/portal.properties.PRIVATE --send-email-confirm true 2>&1 > /dev/null -$PORTAL_HOME/portal/scripts/importUsers.py --properties-file $PORTAL_HOME/portal/portal.properties.SU2C --send-email-confirm true 2>&1 > /dev/null diff --git a/core/src/main/scripts/import-prad-su2c-caises-xml.sh b/core/src/main/scripts/import-prad-su2c-caises-xml.sh deleted file mode 100644 index ed210e0bbac..00000000000 --- a/core/src/main/scripts/import-prad-su2c-caises-xml.sh +++ /dev/null @@ -1 +0,0 @@ -importCaisesXml $PORTAL_DATA_HOME/studies/prad/su2c/data_clinical_caises.xml $PORTAL_DATA_HOME/studies/prad/su2c/patient_id_mapping.txt $PORTAL_DATA_HOME/studies/prad/su2c/meta_clinical_caises.txt \ No newline at end of file diff --git a/core/src/main/scripts/importAccessRights.pl b/core/src/main/scripts/importAccessRights.pl deleted file mode 100755 index 51eb1f3eb37..00000000000 --- a/core/src/main/scripts/importAccessRights.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportUserAccessRights @ARGV"); diff --git a/core/src/main/scripts/importCancerStudy.pl b/core/src/main/scripts/importCancerStudy.pl deleted file mode 100755 index 2f14f56ac8e..00000000000 --- a/core/src/main/scripts/importCancerStudy.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportCancerStudy @ARGV"); diff --git a/core/src/main/scripts/importCaseList.pl b/core/src/main/scripts/importCaseList.pl deleted file mode 100755 index e30225149c4..00000000000 --- a/core/src/main/scripts/importCaseList.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportCaisesClinicalXML @ARGV"); diff --git a/core/src/main/scripts/importCaseListData.pl b/core/src/main/scripts/importCaseListData.pl deleted file mode 100755 index 4405dbbcd19..00000000000 --- a/core/src/main/scripts/importCaseListData.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportSampleList @ARGV"); diff --git a/core/src/main/scripts/importClinicalData.pl b/core/src/main/scripts/importClinicalData.pl deleted file mode 100755 index 27cde835c2e..00000000000 --- a/core/src/main/scripts/importClinicalData.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportClinicalData @ARGV"); diff --git a/core/src/main/scripts/importCopyNumberSegmentData.pl b/core/src/main/scripts/importCopyNumberSegmentData.pl deleted file mode 100755 index 5077069b697..00000000000 --- a/core/src/main/scripts/importCopyNumberSegmentData.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/perl -require "../scripts/env.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportCopyNumberSegmentData @ARGV"); diff --git a/core/src/main/scripts/importCosmicData.pl b/core/src/main/scripts/importCosmicData.pl deleted file mode 100755 index 9e716e1862a..00000000000 --- a/core/src/main/scripts/importCosmicData.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportCosmicData @ARGV"); diff --git a/core/src/main/scripts/importDrugData.pl b/core/src/main/scripts/importDrugData.pl deleted file mode 100755 index f1aef47d5bd..00000000000 --- a/core/src/main/scripts/importDrugData.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.drug.ImportDrugBank $portalDataHome/reference-data/drugbank/drugbank.xml $portalDataHome/reference-data/drugbank/target_links.csv"); diff --git a/core/src/main/scripts/importGenePanel.pl b/core/src/main/scripts/importGenePanel.pl deleted file mode 100755 index 2a74e6cd8b1..00000000000 --- a/core/src/main/scripts/importGenePanel.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/envSimple.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -Dspring.profiles.active=dbcp -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportGenePanel @ARGV"); diff --git a/core/src/main/scripts/importGenes.pl b/core/src/main/scripts/importGenes.pl deleted file mode 100755 index 1efce819c75..00000000000 --- a/core/src/main/scripts/importGenes.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/envSimple.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -Dspring.profiles.active=dbcp -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportGeneData @ARGV"); diff --git a/core/src/main/scripts/importGenesetData.pl b/core/src/main/scripts/importGenesetData.pl deleted file mode 100755 index 0554938cccc..00000000000 --- a/core/src/main/scripts/importGenesetData.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/envSimple.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -Dspring.profiles.active=dbcp -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportGenesetData @ARGV"); diff --git a/core/src/main/scripts/importGenesetHierarchy.pl b/core/src/main/scripts/importGenesetHierarchy.pl deleted file mode 100755 index c7a7275d846..00000000000 --- a/core/src/main/scripts/importGenesetHierarchy.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/envSimple.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -Dspring.profiles.active=dbcp -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportGenesetHierarchy @ARGV"); diff --git a/core/src/main/scripts/importGistic.pl b/core/src/main/scripts/importGistic.pl deleted file mode 100755 index 1183ae3f59b..00000000000 --- a/core/src/main/scripts/importGistic.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportGisticData @ARGV"); diff --git a/core/src/main/scripts/importHprd.pl b/core/src/main/scripts/importHprd.pl deleted file mode 100755 index e8a8271a34c..00000000000 --- a/core/src/main/scripts/importHprd.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportHprd @ARGV"); diff --git a/core/src/main/scripts/importMicroRNAIDs.pl b/core/src/main/scripts/importMicroRNAIDs.pl deleted file mode 100755 index bfae553cdc9..00000000000 --- a/core/src/main/scripts/importMicroRNAIDs.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportMicroRNAIDs @ARGV"); diff --git a/core/src/main/scripts/importMicroRna.pl b/core/src/main/scripts/importMicroRna.pl deleted file mode 100755 index 6920abf91bf..00000000000 --- a/core/src/main/scripts/importMicroRna.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportMicroRnaData @ARGV"); diff --git a/core/src/main/scripts/importMutSig.pl b/core/src/main/scripts/importMutSig.pl deleted file mode 100755 index 419d02c2ae6..00000000000 --- a/core/src/main/scripts/importMutSig.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportMutSigData @ARGV"); diff --git a/core/src/main/scripts/importPiHelperData.pl b/core/src/main/scripts/importPiHelperData.pl deleted file mode 100755 index ce431eb36d9..00000000000 --- a/core/src/main/scripts/importPiHelperData.pl +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.drug.ImportPiHelperData $portalDataHome/reference-data/pihelper/drugs.tsv $portalDataHome/reference-data/pihelper/drugtargets.tsv"); - diff --git a/core/src/main/scripts/importProfileData.pl b/core/src/main/scripts/importProfileData.pl deleted file mode 100755 index a2fcc04a7d3..00000000000 --- a/core/src/main/scripts/importProfileData.pl +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -$startTime = time; -my $loadTypeFile = '/tmp/loadTypeFile.txt'; -# $loadTypeFile is used by compareDirectAndBulkDBMSload.pl to control the load type used by *.sh files it tests -# it writes the load type into $loadTypeFile, which is read here. -# $loadTypeFile is awkward; perhaps a standard importProfileData.pl could ignore it, and then, if we want to make DBMS load measurements, -# we could temporarily replace importProfileData.pl; but that's awkward too - -unless( 2 <= $#ARGV ){ - die "Insufficient number of arguments in '", join( ' ', @ARGV ), "'\n"; -} -my $args = join( ' ', @ARGV ); - -# if $loadTypeFile exists then use it to determine $loadType, else do bulkload -if( -e $loadTypeFile ){ - open(my $in, "<", $loadTypeFile ) or die "Can't open $loadTypeFile: $!"; - my $loadType = <$in>; - print "Load type is '$loadType'.\n"; - system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportProfileData $args --loadMode $loadType"); - $elapsedMin = (time - $startTime)/60; - print sprintf("%.1f", $elapsedMin), "\t(min) to run ImportProfileData on\t", "$args --loadMode $loadType"; -}else{ - # $loadTypeFile does not exist, so compareDirectAndBulkDBMSload.pl is not being run - my $cmd = "$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportProfileData $args --loadMode bulkLoad"; - print "-DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportProfileData $args --loadMode bulkLoad\n"; - system( $cmd ); -} diff --git a/core/src/main/scripts/importReferenceGenome.pl b/core/src/main/scripts/importReferenceGenome.pl deleted file mode 100755 index 1b76aea642c..00000000000 --- a/core/src/main/scripts/importReferenceGenome.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportReferenceGenome @ARGV"); diff --git a/core/src/main/scripts/importSif.pl b/core/src/main/scripts/importSif.pl deleted file mode 100755 index 3749d3a7515..00000000000 --- a/core/src/main/scripts/importSif.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportSif @ARGV"); diff --git a/core/src/main/scripts/importTimelineData.pl b/core/src/main/scripts/importTimelineData.pl deleted file mode 100644 index 29cf4a34068..00000000000 --- a/core/src/main/scripts/importTimelineData.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportTimelineData @ARGV"); diff --git a/core/src/main/scripts/importTypesOfCancer.pl b/core/src/main/scripts/importTypesOfCancer.pl deleted file mode 100755 index f21ae985ef1..00000000000 --- a/core/src/main/scripts/importTypesOfCancer.pl +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env perl -# author: Arthur Goldberg, goldberg@cbio.mskcc.org -require "../scripts/env.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ImportTypesOfCancers @ARGV"); diff --git a/core/src/main/scripts/importUsers.py b/core/src/main/scripts/importUsers.py deleted file mode 100755 index 4be76706e0b..00000000000 --- a/core/src/main/scripts/importUsers.py +++ /dev/null @@ -1,609 +0,0 @@ -#! /usr/bin/env python - -# ------------------------------------------------------------------------------ -# Script which adds new users fram google spreadsheet into the the cgds -# user table. The following properties must be specified in portal.properties: -# -# db.name -# db.user -# db.password -# db.host -# google.id -# google.pw -# users.spreadsheet -# users.worksheet -# -# The script considers all users in the google spreadsheet -# that have an "APPROVED" value in the "Status (APPROVED or BLANK)" column. If that -# user does not exist in the user table of the cgds database, the user will be added -# to both the user table and authority table. In addition, a confirmation email will -# be sent to the user notifying them of their acct activation. -# -# ------------------------------------------------------------------------------ -# imports -import os -import sys -import time -import getopt -import MySQLdb - -import smtplib -import gdata.docs.client -import gdata.docs.service -import gdata.spreadsheet.service - -import httplib2 -from oauth2client import client -from oauth2client.file import Storage -from oauth2client.client import flow_from_clientsecrets -from oauth2client.tools import run_flow, argparser - -from email.MIMEMultipart import MIMEMultipart -from email.MIMEBase import MIMEBase -from email.MIMEText import MIMEText -from email.Utils import COMMASPACE, formatdate -from email import Encoders - -# ------------------------------------------------------------------------------ -# globals - -# some file descriptors -ERROR_FILE = sys.stderr -OUTPUT_FILE = sys.stdout - -# fields in portal.properties -CGDS_DATABASE_HOST = 'db.host' -CGDS_DATABASE_NAME = 'db.portal_db_name' -CGDS_DATABASE_USER = 'db.user' -CGDS_DATABASE_PW = 'db.password' -GOOGLE_ID = 'google.id' -GOOGLE_PW = 'google.pw' -CGDS_USERS_SPREADSHEET = 'users.spreadsheet' -CGDS_USERS_WORKSHEET = 'users.worksheet' -IMPORTER_SPREADSHEET = 'importer.spreadsheet' - -# Worksheet that contains email contents -IMPORTER_WORKSHEET = 'import_user_email' - -# Worksheet that contains portal names -ACCESS_CONTROL_WORKSHEET = 'access_control' - -# column constants on google spreadsheet -FULLNAME_KEY = "fullname" -INST_EMAIL_KEY = "institutionalemailaddress" -MSKCC_EMAIL_KEY = "mskccemailaddress" -OPENID_EMAIL_KEY = "googleoropenidaddress" -STATUS_KEY = "statusapprovedorblank" -AUTHORITIES_KEY = "authoritiesalloralltcgaandorsemicolondelimitedcancerstudylist" -LAB_PI_KEY = "labpi" -TIMESTAMP_KEY = "timestamp" -SUBJECT_KEY = "subject" -BODY_KEY = "body" -PORTAL_NAME_KEY = 'portalname' -SPREADSHEET_NAME_KEY = 'spreadsheetname' - -# possible values in status column -STATUS_APPROVED = "APPROVED" - -DEFAULT_AUTHORITIES = "PUBLIC;EXTENDED;MSKPUB" - -# consts used in email -MSKCC_EMAIL_SUFFIX = "@mskcc.org" -SMTP_SERVER = "cbio.mskcc.org" -MESSAGE_FROM = "cbioportal-access@cbio.mskcc.org" -MESSAGE_BCC = [] - - - -# ------------------------------------------------------------------------------ -# class definitions - -class PortalProperties(object): - def __init__(self, - cgds_database_host, - cgds_database_name, cgds_database_user, cgds_database_pw, - google_id, google_pw, google_spreadsheet, google_worksheet,google_importer_spreadsheet): - self.cgds_database_host = cgds_database_host - self.cgds_database_name = cgds_database_name - self.cgds_database_user = cgds_database_user - self.cgds_database_pw = cgds_database_pw - self.google_id = google_id - self.google_pw = google_pw - self.google_spreadsheet = google_spreadsheet - self.google_worksheet = google_worksheet - self.google_importer_spreadsheet = google_importer_spreadsheet - -class User(object): - def __init__(self, inst_email, google_email, name, enabled, authorities): - self.inst_email = inst_email.lower() - self.google_email = google_email.lower() - self.name = name - self.enabled = enabled - self.authorities = authorities - -# ------------------------------------------------------------------------------ -# functions - -# -# Uses smtplib to send email. -# -def send_mail(to, subject, body, server=SMTP_SERVER): - - assert type(to)==list - - msg = MIMEMultipart() - msg['Subject'] = subject - msg['From'] = MESSAGE_FROM - msg['To'] = COMMASPACE.join(to) - msg['Date'] = formatdate(localtime=True) - - msg.attach(MIMEText(body)) - - # combine to and bcc lists for sending - combined_to_list = [] - for to_name in to: - combined_to_list.append(to_name) - for bcc_name in MESSAGE_BCC: - combined_to_list.append(bcc_name) - - smtp = smtplib.SMTP(server) - smtp.sendmail(MESSAGE_FROM, combined_to_list, msg.as_string() ) - smtp.close() - - -# ------------------------------------------------------------------------------ - -# logs into google spreadsheet client - -def get_gdata_credentials(secrets, creds, scope, force=False): - storage = Storage(creds) - credentials = storage.get() - if credentials is None or credentials.invalid or force: - credentials = run_flow(flow_from_clientsecrets(secrets, scope=scope), storage, argparser.parse_args([])) - - if credentials.access_token_expired: - credentials.refresh(httplib2.Http()) - - return credentials - -def google_login(secrets, creds, user, pw, app_name): - - credentials = get_gdata_credentials(secrets, creds, ["https://spreadsheets.google.com/feeds"], False) - client = gdata.spreadsheet.service.SpreadsheetsService(additional_headers={'Authorization' : 'Bearer %s' % credentials.access_token}) - - # google spreadsheet - client.email = user - client.password = pw - client.source = app_name - client.ProgrammaticLogin() - - return client - - -# ------------------------------------------------------------------------------ -# given a feed & feed name, returns its id -# -def get_feed_id(feed, name): - - to_return = '' - - for entry in feed.entry: - if entry.title.text.strip() == name: - id_parts = entry.id.text.split('/') - to_return = id_parts[len(id_parts) - 1] - - return to_return - -# ------------------------------------------------------------------------------ -# gets a worksheet feed - -def get_worksheet_feed(client, ss, ws): - - ss_id = get_feed_id(client.GetSpreadsheetsFeed(), ss) - ws_id = get_feed_id(client.GetWorksheetsFeed(ss_id), ws) - - return client.GetListFeed(ss_id, ws_id) - -# ------------------------------------------------------------------------------ -# insert new users into table - this list does not contain users already in table - -def insert_new_users(cursor, new_user_list): - - try: - for user in new_user_list: - print >> OUTPUT_FILE, "new user: %s" % user.google_email; - cursor.executemany("insert into users values(%s, %s, %s)", - [(user.google_email.lower(), user.name, user.enabled) for user in new_user_list]) - for user in new_user_list: - # authorities is semicolon delimited - authorities = user.authorities - cursor.executemany("insert into authorities values(%s, %s)", - [(user.google_email.lower(), authority) for authority in authorities]) - except MySQLdb.Error, msg: - print >> OUTPUT_FILE, msg - print >> ERROR_FILE, msg - return False - - return True - -# ------------------------------------------------------------------------------ -# get current users from database - -def get_current_user_map(cursor): - - # map that we are returning - # key is the email address of the user (primary key) and value is a User object - to_return = {} - - # recall each tuple in user table is ['EMAIL', 'NAME', 'ENABLED'] & - # no tuple can contain nulls - try: - cursor.execute('select * from users') - for row in cursor.fetchall(): - to_return[row[0].lower()] = User(row[0].lower(), row[0].lower(), row[1], row[2], 'not_used_here') - except MySQLdb.Error, msg: - print >> ERROR_FILE, msg - return None - - return to_return - -# ------------------------------------------------------------------------------ -# get current user authorities - -def get_user_authorities(cursor, google_email): - - # list of authorities (cancer studies) we are returning -- as a set - to_return = [] - - # recall each tuple in authorities table is ['EMAIL', 'AUTHORITY'] - # no tuple can contain nulls - try: - cursor.execute('select * from authorities where email = (%s)', [google_email]) - for row in cursor.fetchall(): - to_return.append(row[1]) - except MySQLdb.Error, msg: - print >> ERROR_FILE, msg - return None - - return to_return - -# ------------------------------------------------------------------------------ -# get current users from google spreadsheet - -def get_new_user_map(spreadsheet, worksheet_feed, current_user_map, portal_name,mskcc_user_spreadsheet): - - # map that we are returning - # key is the institutional email address + google (in case user has multiple google ids) - # of the user and value is a User object - to_return = {} - - for entry in worksheet_feed.entry: - # we are only concerned with 'APPROVED' entries - if (entry.custom[STATUS_KEY].text is not None and - entry.custom[STATUS_KEY].text.strip() == STATUS_APPROVED): - if spreadsheet == mskcc_user_spreadsheet: - inst_email = entry.custom[MSKCC_EMAIL_KEY].text.strip().lower() - google_email = entry.custom[MSKCC_EMAIL_KEY].text.strip().lower() - else: - inst_email = entry.custom[INST_EMAIL_KEY].text.strip().lower() - google_email = entry.custom[OPENID_EMAIL_KEY].text.strip().lower() - name = entry.custom[FULLNAME_KEY].text.strip() - authorities = entry.custom[AUTHORITIES_KEY].text.strip() - # do not add entry if this entry is a current user - # we lowercase google account because entries added to mysql are lowercased. - if google_email.lower() not in current_user_map: - if authorities[-1:] == ';': - authorities = authorities[:-1] - if google_email.lower() in to_return: - # there may be multiple entries per email address - # in google spreadsheet, combine entries - user = to_return[google_email.lower()] - user.authorities.extend([portal_name + ':' + au for au in authorities.split(';')]) - to_return[google_email.lower()] = user - else: - to_return[google_email] = User(inst_email, google_email, name, 1, - [portal_name + ':' + au for au in authorities.split(';')]) - - return to_return - -# ------------------------------------------------------------------------------ -# get all users from google spreadsheet. note only inst & google email is returned - -def get_all_user_map(spreadsheet, worksheet_feed,mskcc_user_spreadsheet): - - # map that we are returning - # key is the institutional email address + google (in case user has multiple google ids) - # of the user and value is a User object - to_return = {} - - for entry in worksheet_feed.entry: - if spreadsheet == mskcc_user_spreadsheet: - inst_email = entry.custom[MSKCC_EMAIL_KEY].text.strip().lower() - google_email = entry.custom[MSKCC_EMAIL_KEY].text.strip().lower() - else: - inst_email = entry.custom[INST_EMAIL_KEY].text.strip().lower() - google_email = entry.custom[OPENID_EMAIL_KEY].text.strip().lower() - to_return[google_email] = User(inst_email, google_email, "not_used", 1, "not_used") - - return to_return - -# ------------------------------------------------------------------------------ -# get db connection -def get_db_connection(portal_properties): - - # try and create a connection to the db - try: - connection = MySQLdb.connect(host=portal_properties.cgds_database_host, port=3306, - user=portal_properties.cgds_database_user, - passwd=portal_properties.cgds_database_pw, - db=portal_properties.cgds_database_name) - except MySQLdb.Error, msg: - print >> ERROR_FILE, msg - return None - - return connection - - -# ------------------------------------------------------------------------------ -# parse portal.properties - -def get_portal_properties(portal_properties_filename): - - properties = {} - portal_properties_file = open(portal_properties_filename, 'r') - for line in portal_properties_file: - line = line.strip() - # skip line if its blank or a comment - if len(line) == 0 or line.startswith('#'): - continue - # store name/value - property = line.split('=') - # spreadsheet url contains an '=' sign - if line.startswith(CGDS_USERS_SPREADSHEET): - property = [property[0], line[line.index('=')+1:len(line)]] - if (len(property) != 2): - print >> ERROR_FILE, 'Skipping invalid entry in property file: ' + line - continue - properties[property[0]] = property[1].strip() - portal_properties_file.close() - - # error check - if (CGDS_DATABASE_HOST not in properties or len(properties[CGDS_DATABASE_HOST]) == 0 or - CGDS_DATABASE_NAME not in properties or len(properties[CGDS_DATABASE_NAME]) == 0 or - CGDS_DATABASE_USER not in properties or len(properties[CGDS_DATABASE_USER]) == 0 or - CGDS_DATABASE_PW not in properties or len(properties[CGDS_DATABASE_PW]) == 0 or - GOOGLE_ID not in properties or len(properties[GOOGLE_ID]) == 0 or - GOOGLE_PW not in properties or len(properties[GOOGLE_PW]) == 0 or - CGDS_USERS_SPREADSHEET not in properties or len(properties[CGDS_USERS_SPREADSHEET]) == 0 or - CGDS_USERS_WORKSHEET not in properties or len(properties[CGDS_USERS_WORKSHEET]) == 0 or - IMPORTER_SPREADSHEET not in properties or len(properties[IMPORTER_SPREADSHEET]) == 0): - print >> ERROR_FILE, 'Missing one or more required properties, please check property file' - return None - - # return an instance of PortalProperties - return PortalProperties(properties[CGDS_DATABASE_HOST], - properties[CGDS_DATABASE_NAME], - properties[CGDS_DATABASE_USER], - properties[CGDS_DATABASE_PW], - properties[GOOGLE_ID], - properties[GOOGLE_PW], - properties[CGDS_USERS_SPREADSHEET], - properties[CGDS_USERS_WORKSHEET], - properties[IMPORTER_SPREADSHEET]) - -# ------------------------------------------------------------------------------ -# adds new users from the google spreadsheet into the cgds portal database -# returns new user map if users have been inserted, None otherwise - -def manage_users(spreadsheet, cursor, worksheet_feed, portal_name, mskcc_user_spreadsheet): - - # get map of current portal users - print >> OUTPUT_FILE, 'Getting list of current portal users' - current_user_map = get_current_user_map(cursor) - if current_user_map is not None: - print >> OUTPUT_FILE, 'We have found %s current portal users' % len(current_user_map) - else: - print >> OUTPUT_FILE, 'Error reading user table' - return None - - # get list of new users and insert - print >> OUTPUT_FILE, 'Checking for new users' - new_user_map = get_new_user_map(spreadsheet, worksheet_feed, current_user_map, portal_name, mskcc_user_spreadsheet) - if (len(new_user_map) > 0): - print >> OUTPUT_FILE, 'We have %s new user(s) to add' % len(new_user_map) - success = insert_new_users(cursor, new_user_map.values()) - if success: - print >> OUTPUT_FILE, 'Successfully inserted new users in database' - return new_user_map - else: - print >> OUTPUT_FILE, 'Error inserting new users in database' - return None - else: - print >> OUTPUT_FILE, 'No new users to insert, exiting' - return None - -# ------------------------------------------------------------------------------ -# updates user study access -def update_user_authorities(spreadsheet, cursor, worksheet_feed, portal_name, mskcc_user_spreadsheet): - - # get map of current portal users - print >> OUTPUT_FILE, 'Getting list of current portal users from spreadsheet' - all_user_map = get_new_user_map(spreadsheet, worksheet_feed, {}, portal_name, mskcc_user_spreadsheet) - if all_user_map is None: - return None; - print >> OUTPUT_FILE, 'Updating authorities for each user in current portal user list' - for user in all_user_map.values(): - worksheet_authorities = set(user.authorities) - db_authorities = set(get_user_authorities(cursor, user.google_email)) - try: - cursor.executemany("insert into authorities values(%s, %s)", - [(user.google_email, authority) for authority in worksheet_authorities - db_authorities]) - except MySQLdb.Error, msg: - print >> ERROR_FILE, msg - -# ------------------------------------------------------------------------------ -# Adds unknown users to user spreadsheet. MSKCC users are given default access. -# during MSK signon. If this happens, we want to make sure they get into the google -# spreadsheet for tracking purposes. -def add_unknown_users_to_spreadsheet(client, cursor, spreadsheet, worksheet, mskcc_user_spreadsheet): - - # get map of all users in google spreadsheet and portal database - worksheet_feed = get_worksheet_feed(client, spreadsheet, worksheet) - google_spreadsheet_user_map = get_all_user_map(spreadsheet, worksheet_feed, mskcc_user_spreadsheet) - portal_db_user_map = get_current_user_map(cursor) - current_time = time.strftime("%m/%d/%y %H:%M:%S") - # for each user in portal database not in google spreadsheet, insert user into google spreadsheet - for email in portal_db_user_map.keys(): - if email.endswith(MSKCC_EMAIL_SUFFIX) and email not in google_spreadsheet_user_map: - user = portal_db_user_map[email] - print >> OUTPUT_FILE, user.name - def_authorities = DEFAULT_AUTHORITIES + ";" + email[0:email.index('@')].upper() - # we only got here if user was inserted via MSK AD - in which case name is formatted as: - # Gross, Benjamin E./Sloan Kettering Institute - if "/" in user.name: - user_name_parts = user.name.split("/") - row = { TIMESTAMP_KEY : current_time, MSKCC_EMAIL_KEY : user.inst_email, FULLNAME_KEY : user_name_parts[0], LAB_PI_KEY : user_name_parts[1], STATUS_KEY : STATUS_APPROVED, AUTHORITIES_KEY : def_authorities } - else: - row = { TIMESTAMP_KEY : current_time, MSKCC_EMAIL_KEY : user.inst_email, FULLNAME_KEY : user.name, STATUS_KEY : STATUS_APPROVED, AUTHORITIES_KEY : def_authorities } - add_row_to_google_worksheet(client, spreadsheet, worksheet, row) - - -# ------------------------------------------------------------------------------ -# adds a row to the google spreadsheet -def add_row_to_google_worksheet(client, spreadsheet, worksheet, row): - ss_id = get_feed_id(client.GetSpreadsheetsFeed(), spreadsheet) - ws_id = get_feed_id(client.GetWorksheetsFeed(ss_id), worksheet) - client.InsertRow(row, ss_id, ws_id); - -# ------------------------------------------------------------------------------ -# gets email parameters from google spreadsheet - -def get_email_parameters(google_spreadsheet,client): - subject = '' - body = '' - print >> OUTPUT_FILE, 'Getting email parameters from google spreadsheet' - email_worksheet_feed = get_worksheet_feed(client, google_spreadsheet, IMPORTER_WORKSHEET) - for entry in email_worksheet_feed.entry: - if entry.custom[SUBJECT_KEY].text is not None and entry.custom[BODY_KEY].text is not None: - subject = entry.custom[SUBJECT_KEY].text.strip() - body = entry.custom[BODY_KEY].text.strip() - return subject, body - -def get_portal_name_map(google_spreadsheet,client): - portal_name = {} - print >> OUTPUT_FILE, 'Getting access control parameter from google spreadsheet' - access_control_worksheet_feed = get_worksheet_feed(client,google_spreadsheet,ACCESS_CONTROL_WORKSHEET) - for entry in access_control_worksheet_feed.entry: - if entry.custom[PORTAL_NAME_KEY] is not None and entry.custom[SPREADSHEET_NAME_KEY] is not None: - portal_name[entry.custom[SPREADSHEET_NAME_KEY].text.strip()] = entry.custom[PORTAL_NAME_KEY].text.strip() - if entry.custom[PORTAL_NAME_KEY].text.strip() == 'mskcc-portal': - mskcc_user_spreadsheet = entry.custom[SPREADSHEET_NAME_KEY].text.strip() - - return portal_name,mskcc_user_spreadsheet - - -# ------------------------------------------------------------------------------ -# displays program usage (invalid args) - -def usage(): - print >> OUTPUT_FILE, 'importUsers.py --secrets-file [google secrets.json] --creds-file [oauth creds filename] --properties-file [properties file] --send-email-confirm [true or false] --use-institutional-id [true or false]' - -# ------------------------------------------------------------------------------ -# the big deal main. - -def main(): - - # parse command line options - try: - opts, args = getopt.getopt(sys.argv[1:], '', ['secrets-file=', 'creds-file=', 'properties-file=', 'send-email-confirm=', 'use-institutional-id=']) - except getopt.error, msg: - print >> ERROR_FILE, msg - usage() - sys.exit(2) - - # process the options - secrets_filename = '' - creds_filename = '' - properties_filename = '' - send_email_confirm = '' - - for o, a in opts: - if o == '--secrets-file': - secrets_filename = a - elif o == '--creds-file': - creds_filename = a - elif o == '--properties-file': - properties_filename = a - elif o == '--send-email-confirm': - send_email_confirm = a - - if (secrets_filename == '' or creds_filename == '' or properties_filename == '' or send_email_confirm == '' or - (send_email_confirm != 'true' and send_email_confirm != 'false')): - usage() - sys.exit(2) - - # check existence of file - if not os.path.exists(properties_filename): - print >> ERROR_FILE, 'properties file cannot be found: ' + properties_filename - sys.exit(2) - - # parse/get relevant portal properties - print >> OUTPUT_FILE, 'Reading portal properties file: ' + properties_filename - portal_properties = get_portal_properties(properties_filename) - if not portal_properties: - print >> OUTPUT_FILE, 'Error reading %s, exiting' % properties_filename - return - - # get db connection & create cursor - print >> OUTPUT_FILE, 'Connecting to database: ' + portal_properties.cgds_database_name - connection = get_db_connection(portal_properties) - if connection is not None: - cursor = connection.cursor() - else: - print >> OUTPUT_FILE, 'Error connecting to database, exiting' - return - - # login to google and get spreadsheet feed - client = google_login(secrets_filename, creds_filename, portal_properties.google_id, portal_properties.google_pw, sys.argv[0]) - - portal_name_map,mskcc_user_spreadsheet = get_portal_name_map(portal_properties.google_importer_spreadsheet,client) - - google_spreadsheets = portal_properties.google_spreadsheet.split(';') - - for google_spreadsheet in google_spreadsheets: - if not google_spreadsheet == '': - print >> OUTPUT_FILE, 'Importing ' + google_spreadsheet + ' ...' - - worksheet_feed = get_worksheet_feed(client, google_spreadsheet, - portal_properties.google_worksheet) - - # the 'guts' of the script - new_user_map = manage_users(google_spreadsheet, cursor, worksheet_feed, portal_name_map[google_spreadsheet], mskcc_user_spreadsheet) - - # update user authorities - update_user_authorities(google_spreadsheet, cursor, worksheet_feed, portal_name_map[google_spreadsheet], mskcc_user_spreadsheet) - - # sending emails - if new_user_map is not None: - if send_email_confirm == 'true': - subject,body = get_email_parameters(google_spreadsheet,client) - for new_user_key in new_user_map.keys(): - new_user = new_user_map[new_user_key] - print >> OUTPUT_FILE, ('Sending confirmation email to new user: %s at %s' % - (new_user.name, new_user.inst_email)) - send_mail([new_user.inst_email],subject,body) - - if google_spreadsheet == mskcc_user_spreadsheet: - add_unknown_users_to_spreadsheet(client, cursor, google_spreadsheet, portal_properties.google_worksheet,mskcc_user_spreadsheet) - - # clean up - cursor.close() - connection.commit() - connection.close() - - -# ------------------------------------------------------------------------------ -# ready to roll - -if __name__ == '__main__': - main() diff --git a/core/src/main/scripts/importer/allowed_data_types.txt b/core/src/main/scripts/importer/allowed_data_types.txt deleted file mode 100644 index 671bc447380..00000000000 --- a/core/src/main/scripts/importer/allowed_data_types.txt +++ /dev/null @@ -1,70 +0,0 @@ -# Users, admins: DO NOT CHANGE THIS FILE! -# These are the combinations of GENETIC_ALTERATION_TYPE, DATATYPE and STABLE_ID that will -# be allowed by the validator. Changing this file is not recommended by end users as parts of the -# cBioPortal code currently depend on some of these stable IDs to be exactly as they are specified -# here. The validator will check if the users used the right combinations and can also warn them -# when specific important combinations were found to be missing in their study directory. -GENETIC_ALTERATION_TYPE DATATYPE STABLE_ID -COPY_NUMBER_ALTERATION DISCRETE cna -COPY_NUMBER_ALTERATION DISCRETE_LONG cna -COPY_NUMBER_ALTERATION DISCRETE cna_rae -COPY_NUMBER_ALTERATION DISCRETE cna_consensus -COPY_NUMBER_ALTERATION DISCRETE gistic -COPY_NUMBER_ALTERATION DISCRETE_LONG gistic -COPY_NUMBER_ALTERATION CONTINUOUS linear_CNA -COPY_NUMBER_ALTERATION LOG2-VALUE log2CNA -MUTATION_EXTENDED MAF mutations -MUTATION_UNCALLED MAF mutations_uncalled -MRNA_EXPRESSION CONTINUOUS mrna_U133 -MRNA_EXPRESSION Z-SCORE mrna_U133_Zscores -MRNA_EXPRESSION Z-SCORE rna_seq_mrna_median_Zscores -MRNA_EXPRESSION Z-SCORE mrna_median_Zscores -MRNA_EXPRESSION CONTINUOUS rna_seq_mrna -MRNA_EXPRESSION CONTINUOUS rna_seq_v2_mrna -MRNA_EXPRESSION Z-SCORE rna_seq_v2_mrna_median_Zscores -MRNA_EXPRESSION CONTINUOUS rna_seq_v2_mrna_median_normals -MRNA_EXPRESSION Z-SCORE rna_seq_v2_mrna_median_normals_Zscores -MRNA_EXPRESSION CONTINUOUS mirna -MRNA_EXPRESSION Z-SCORE mirna_median_Zscores -MRNA_EXPRESSION Z-SCORE mrna_merged_median_Zscores -MRNA_EXPRESSION CONTINUOUS mrna -MRNA_EXPRESSION DISCRETE mrna_outliers -MRNA_EXPRESSION Z-SCORE mrna_zbynorm -MRNA_EXPRESSION CONTINUOUS rna_seq_mrna_capture -MRNA_EXPRESSION CONTINUOUS mrna_seq_cpm -MRNA_EXPRESSION CONTINUOUS mrna_seq_tpm -MRNA_EXPRESSION Z-SCORE mrna_seq_tpm_Zscores -MRNA_EXPRESSION Z-SCORE mrna_seq_cpm_Zscores -MRNA_EXPRESSION Z-SCORE rna_seq_mrna_capture_Zscores -MRNA_EXPRESSION CONTINUOUS mrna_seq_fpkm_capture -MRNA_EXPRESSION Z-SCORE mrna_seq_fpkm_capture_Zscores -MRNA_EXPRESSION CONTINUOUS mrna_seq_fpkm_polya -MRNA_EXPRESSION Z-SCORE mrna_seq_fpkm_polya_Zscores -MRNA_EXPRESSION Z-SCORE mrna_U133_all_sample_Zscores -MRNA_EXPRESSION Z-SCORE mrna_all_sample_Zscores -MRNA_EXPRESSION Z-SCORE rna_seq_mrna_median_all_sample_Zscores -MRNA_EXPRESSION Z-SCORE mrna_median_all_sample_Zscores -MRNA_EXPRESSION Z-SCORE rna_seq_v2_mrna_median_all_sample_Zscores -MRNA_EXPRESSION Z-SCORE rna_seq_v2_mrna_median_all_sample_ref_normal_Zscores -MRNA_EXPRESSION Z-SCORE mrna_seq_cpm_all_sample_Zscores -MRNA_EXPRESSION Z-SCORE mrna_seq_tpm_all_sample_Zscores -MRNA_EXPRESSION Z-SCORE rna_seq_mrna_capture_all_sample_Zscores -MRNA_EXPRESSION Z-SCORE mrna_seq_fpkm_capture_all_sample_Zscores -MRNA_EXPRESSION Z-SCORE mrna_seq_fpkm_polya_all_sample_Zscores -MRNA_EXPRESSION Z-SCORE mrna_seq_fpkm_Zscores -MRNA_EXPRESSION Z-SCORE mrna_seq_fpkm_all_sample_Zscores -METHYLATION CONTINUOUS methylation_hm27 -METHYLATION CONTINUOUS methylation_hm450 -METHYLATION CONTINUOUS methylation_epic -METHYLATION CONTINUOUS methylation_promoters_rrbs -PROTEIN_LEVEL LOG2-VALUE rppa -PROTEIN_LEVEL Z-SCORE rppa_Zscores -PROTEIN_LEVEL CONTINUOUS protein_quantification -PROTEIN_LEVEL LOG2-VALUE protein_quantification -PROTEIN_LEVEL Z-SCORE protein_quantification_zscores -GENESET_SCORE GSVA-SCORE gsva_scores -GENESET_SCORE P-VALUE gsva_pvalues -GENERIC_ASSAY LIMIT-VALUE * -GENERIC_ASSAY BINARY * -GENERIC_ASSAY CATEGORICAL * -STRUCTURAL_VARIANT SV structural_variants diff --git a/core/src/main/scripts/importer/cbioportalImporter.py b/core/src/main/scripts/importer/cbioportalImporter.py deleted file mode 100755 index 2e0d812a191..00000000000 --- a/core/src/main/scripts/importer/cbioportalImporter.py +++ /dev/null @@ -1,553 +0,0 @@ -#!/usr/bin/env python3 - -# ------------------------------------------------------------------------------ -# Script which imports portal data. -# -# ------------------------------------------------------------------------------ - -import os -import sys -import importlib -import argparse -import logging -import re -from pathlib import Path - -# configure relative imports if running as a script; see PEP 366 -# it might passed as empty string by certain tooling to mark a top level module -if __name__ == "__main__" and (__package__ is None or __package__ == ''): - # replace the script's location in the Python search path by the main - # scripts/ folder, above it, so that the importer package folder is in - # scope and *not* directly in sys.path; see PEP 395 - sys.path[0] = str(Path(sys.path[0]).resolve().parent) - __package__ = 'importer' - # explicitly load the package, which is needed on CPython 3.4 because it - # doesn't include https://github.com/python/cpython/pull/2639 - importlib.import_module(__package__) - -from . import cbioportal_common -from .cbioportal_common import OUTPUT_FILE -from .cbioportal_common import ERROR_FILE -from .cbioportal_common import MetaFileTypes -from .cbioportal_common import IMPORTER_CLASSNAME_BY_META_TYPE -from .cbioportal_common import IMPORTER_REQUIRES_METADATA -from .cbioportal_common import IMPORT_CANCER_TYPE_CLASS -from .cbioportal_common import IMPORT_STUDY_CLASS -from .cbioportal_common import UPDATE_STUDY_STATUS_CLASS -from .cbioportal_common import REMOVE_STUDY_CLASS -from .cbioportal_common import IMPORT_CASE_LIST_CLASS -from .cbioportal_common import ADD_CASE_LIST_CLASS -from .cbioportal_common import VERSION_UTIL_CLASS -from .cbioportal_common import run_java - - -# ------------------------------------------------------------------------------ -# globals - -LOGGER = None - -# commands -IMPORT_CANCER_TYPE = "import-cancer-type" -IMPORT_STUDY = "import-study" -REMOVE_STUDY = "remove-study" -IMPORT_STUDY_DATA = "import-study-data" -IMPORT_CASE_LIST = "import-case-list" - -COMMANDS = [IMPORT_CANCER_TYPE, IMPORT_STUDY, REMOVE_STUDY, IMPORT_STUDY_DATA, IMPORT_CASE_LIST] - -# ------------------------------------------------------------------------------ -# sub-routines - -def import_cancer_type(jvm_args, data_filename): - args = jvm_args.split(' ') - args.append(IMPORT_CANCER_TYPE_CLASS) - args.append(data_filename) - args.append("false") # don't clobber existing table - args.append("--noprogress") # don't report memory usage and % progress - run_java(*args) - -def import_study(jvm_args, meta_filename): - args = jvm_args.split(' ') - args.append(IMPORT_STUDY_CLASS) - args.append(meta_filename) - args.append("--noprogress") # don't report memory usage and % progress - run_java(*args) - -def update_study_status(jvm_args, study_id): - args = jvm_args.split(' ') - args.append(UPDATE_STUDY_STATUS_CLASS) - args.append(study_id) - args.append("AVAILABLE") - args.append("--noprogress") # don't report memory usage and % progress - run_java(*args) - -def remove_study_meta(jvm_args, meta_filename): - args = jvm_args.split(' ') - args.append(REMOVE_STUDY_CLASS) - meta_dictionary = cbioportal_common.parse_metadata_file( - meta_filename, logger=LOGGER) - if meta_dictionary['meta_file_type'] != MetaFileTypes.STUDY: - # invalid file, skip - print('Not a study meta file: ' + meta_filename, file=ERROR_FILE) - return - args.append(meta_dictionary['cancer_study_identifier']) - args.append("--noprogress") # don't report memory usage and % progress - run_java(*args) - -def remove_study_id(jvm_args, study_id): - args = jvm_args.split(' ') - args.append(REMOVE_STUDY_CLASS) - args.append(study_id) - args.append("--noprogress") # don't report memory usage and % progress - run_java(*args) - - -def import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity = None, meta_file_dictionary = None): - args = jvm_args.split(' ') - - # In case the meta file is already parsed in a previous function, it is not - # necessary to parse it again - if meta_file_dictionary is None: - meta_file_dictionary = cbioportal_common.parse_metadata_file( - meta_filename, logger=LOGGER) - - # Retrieve meta file type - meta_file_type = meta_file_dictionary['meta_file_type'] - - # Do not update entities by default - shouldUpdateGenericAssayEntities = False - if update_generic_assay_entity != None and update_generic_assay_entity.casefold() == "True".casefold(): - shouldUpdateGenericAssayEntities = True - - # invalid file, skip - if meta_file_type is None: - print(("Unrecognized meta file type '%s', skipping file" - % (meta_file_type)), file=ERROR_FILE) - return - - if not data_filename.endswith(meta_file_dictionary['data_filename']): - print(("'data_filename' in meta file contradicts " - "data filename in command, skipping file"), file=ERROR_FILE) - return - - importer = IMPORTER_CLASSNAME_BY_META_TYPE[meta_file_type] - - args.append(importer) - if IMPORTER_REQUIRES_METADATA[importer]: - args.append("--meta") - args.append(meta_filename) - args.append("--loadMode") - args.append("bulkload") - if importer == "org.mskcc.cbio.portal.scripts.ImportProfileData" and shouldUpdateGenericAssayEntities: - args.append("--update-info") - args.append("True") - elif importer == "org.mskcc.cbio.portal.scripts.ImportProfileData" and not shouldUpdateGenericAssayEntities: - args.append("--update-info") - args.append("False") - if importer in ("org.mskcc.cbio.portal.scripts.ImportMutSigData", "org.mskcc.cbio.portal.scripts.ImportGisticData"): - args.append("--data") - args.append(data_filename) - args.append("--study") - args.append(meta_file_dictionary['cancer_study_identifier']) - elif importer == "org.mskcc.cbio.portal.scripts.ImportGenePanelProfileMap": - args.append("--meta") - args.append(meta_filename) - args.append("--data") - args.append(data_filename) - else: - args.append("--data") - args.append(data_filename) - - args.append("--noprogress") # don't report memory usage and % progress - run_java(*args) - -def import_case_list(jvm_args, meta_filename): - args = jvm_args.split(' ') - args.append(IMPORT_CASE_LIST_CLASS) - args.append(meta_filename) - args.append("--noprogress") # don't report memory usage and % progress - run_java(*args) - -def add_global_case_list(jvm_args, study_id): - args = jvm_args.split(' ') - args.append(ADD_CASE_LIST_CLASS) - args.append(study_id) - args.append("all") - args.append("--noprogress") # don't report memory usage and % progress - run_java(*args) - -def check_version(jvm_args): - args = jvm_args.split(' ') - args.append(VERSION_UTIL_CLASS) - try: - run_java(*args) - except: - print( - 'Error, probably due to this version of the portal ' - 'being out of sync with the database. ' - 'Run the database migration script located at ' - 'CBIOPORTAL_SRC/core/src/main/scripts/migrate_db.py ' - 'before continuing.', - file=OUTPUT_FILE) - raise - -def process_case_lists(jvm_args, case_list_dir): - for case_list in os.listdir(case_list_dir): - # skip "temp"/backup files made by some text editors: - if not (case_list.startswith('.') or case_list.endswith('~')): - import_case_list(jvm_args, os.path.join(case_list_dir, case_list)) - -def process_command(jvm_args, command, meta_filename, data_filename, study_ids, update_generic_assay_entity = None): - if command == IMPORT_CANCER_TYPE: - import_cancer_type(jvm_args, data_filename) - elif command == IMPORT_STUDY: - import_study(jvm_args, meta_filename) - elif command == REMOVE_STUDY: - if study_ids == None: - remove_study_meta(jvm_args, meta_filename) - elif meta_filename == None: - study_ids = study_ids.split(",") - for study_id in study_ids: - remove_study_id(jvm_args, study_id) - else: - raise RuntimeError('Your command uses both -id and -meta. Please, use only one of the two parameters.') - elif command == IMPORT_STUDY_DATA: - import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity) - elif command == IMPORT_CASE_LIST: - import_case_list(jvm_args, meta_filename) - -def process_directory(jvm_args, study_directory, update_generic_assay_entity = None): - """ - Import an entire study directory based on meta files found. - - 1. Determine meta files in study directory. - 2. Read all meta files and determine file types. - 3. Import data files in specific order by file type. - """ - - study_id = None - study_meta_filename = None - study_meta_dictionary = {} - cancer_type_filepairs = [] - sample_attr_filepair = None - sample_resource_filepair = None - resource_definition_filepair = None - regular_filepairs = [] - gene_panel_matrix_filepair = None - zscore_filepairs = [] - gsva_score_filepair = None - gsva_pvalue_filepair = None - structural_variant_filepair = None - cna_long_filepair = None - - # Determine meta filenames in study directory - meta_filenames = ( - os.path.join(study_directory, meta_filename) for - meta_filename in os.listdir(study_directory) if - re.search(r'(\b|_)meta(\b|[_0-9])', meta_filename, - flags=re.IGNORECASE) and - not (meta_filename.startswith('.') or meta_filename.endswith('~'))) - - # Read all meta files (excluding case lists) to determine what to import - for meta_filename in meta_filenames: - - # Parse meta file - meta_dictionary = cbioportal_common.parse_metadata_file( - meta_filename, study_id=study_id, logger=LOGGER) - - # Save meta dictionary in study meta dictionary - study_meta_dictionary[meta_filename] = meta_dictionary - - # Retrieve meta file type - meta_file_type = meta_dictionary['meta_file_type'] - if meta_file_type is None: - # invalid meta file, let's die - raise RuntimeError('Invalid meta file: ' + meta_filename) - - # remember study id to give an error in case any other file is referencing a different one - if study_id is None and 'cancer_study_identifier' in meta_dictionary: - study_id = meta_dictionary['cancer_study_identifier'] - - # Check the type of metafile. It is to know which metafile types the - # study contains because at a later stage we want to import in a - # specific order. - - # Check for cancer type file - if meta_file_type == MetaFileTypes.CANCER_TYPE: - cancer_type_filepairs.append( - (meta_filename, os.path.join(study_directory, meta_dictionary['data_filename']))) - # Check for meta study file - elif meta_file_type == MetaFileTypes.STUDY: - if study_meta_filename is not None: - raise RuntimeError( - 'Multiple meta_study files found: {} and {}'.format( - study_meta_filename, meta_filename)) - # Determine the study meta filename - study_meta_filename = meta_filename - study_meta_dictionary[study_meta_filename] = meta_dictionary - # Check for resource definitions - elif meta_file_type == MetaFileTypes.RESOURCES_DEFINITION: - if resource_definition_filepair is not None: - raise RuntimeError( - 'Multiple resource definition files found: {} and {}'.format( - resource_definition_filepair[0], meta_filename)) # pylint: disable=unsubscriptable-object - resource_definition_filepair = ( - meta_filename, os.path.join(study_directory, meta_dictionary['data_filename'])) - # Check for sample attributes - elif meta_file_type == MetaFileTypes.SAMPLE_ATTRIBUTES: - if sample_attr_filepair is not None: - raise RuntimeError( - 'Multiple sample attribute files found: {} and {}'.format( - sample_attr_filepair[0], meta_filename)) # pylint: disable=unsubscriptable-object - sample_attr_filepair = ( - meta_filename, os.path.join(study_directory, meta_dictionary['data_filename'])) - elif meta_file_type == MetaFileTypes.SAMPLE_RESOURCES: - if sample_resource_filepair is not None: - raise RuntimeError( - 'Multiple sample resource files found: {} and {}'.format( - sample_resource_filepair[0], meta_filename)) # pylint: disable=unsubscriptable-object - sample_resource_filepair = ( - meta_filename, os.path.join(study_directory, meta_dictionary['data_filename'])) - # Check for gene panel matrix - elif meta_file_type == MetaFileTypes.GENE_PANEL_MATRIX: - gene_panel_matrix_filepair = ( - (meta_filename, os.path.join(study_directory, meta_dictionary['data_filename']))) - # Check for z-score exression files - elif meta_file_type == MetaFileTypes.EXPRESSION and meta_dictionary['datatype'] == "Z-SCORE": - zscore_filepairs.append( - (meta_filename, os.path.join(study_directory, meta_dictionary['data_filename']))) - # Check for GSVA scores - elif meta_file_type == MetaFileTypes.GSVA_SCORES: - gsva_score_filepair = ( - (meta_filename, os.path.join(study_directory, meta_dictionary['data_filename']))) - # Check for GSVA p-values - elif meta_file_type == MetaFileTypes.GSVA_PVALUES: - gsva_pvalue_filepair = ( - (meta_filename, os.path.join(study_directory, meta_dictionary['data_filename']))) - # Check for structural variant data - elif meta_file_type == MetaFileTypes.STRUCTURAL_VARIANT: - structural_variant_filepair = ( - (meta_filename, os.path.join(study_directory, meta_dictionary['data_filename']))) - elif meta_file_type == MetaFileTypes.CNA_DISCRETE_LONG: - cna_long_filepair = ( - (meta_filename, os.path.join(study_directory, meta_dictionary['data_filename']))) - # Add all other types of data - else: - regular_filepairs.append( - (meta_filename, os.path.join(study_directory, meta_dictionary['data_filename']))) - - # First, import cancer types - for meta_filename, data_filename in cancer_type_filepairs: - import_cancer_type(jvm_args, data_filename) - - # Then define the study - if study_meta_filename is None: - raise RuntimeError('No meta_study file found') - else: - # First remove study if exists - remove_study_meta(jvm_args, study_meta_filename) - import_study(jvm_args, study_meta_filename) - - # Next, we need to import sample definitions - if sample_attr_filepair is None: - raise RuntimeError('No sample attribute file found') - else: - meta_filename, data_filename = sample_attr_filepair - import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity, study_meta_dictionary[meta_filename]) - - # Next, we need to import resource definitions for resource data - if resource_definition_filepair is not None: - meta_filename, data_filename = resource_definition_filepair - import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity, study_meta_dictionary[meta_filename]) - - # Next, we need to import sample definitions for resource data - if sample_resource_filepair is not None: - meta_filename, data_filename = sample_resource_filepair - import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity, study_meta_dictionary[meta_filename]) - - # Next, import everything else except gene panel, structural variant data, GSVA and - # z-score expression. If in the future more types refer to each other, (like - # in a tree structure) this could be programmed in a recursive fashion. - for meta_filename, data_filename in regular_filepairs: - import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity, study_meta_dictionary[meta_filename]) - - # Import structural variant data - if structural_variant_filepair is not None: - meta_filename, data_filename = structural_variant_filepair - import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity, study_meta_dictionary[meta_filename]) - - # Import cna data - if cna_long_filepair is not None: - meta_filename, data_filename = cna_long_filepair - import_study_data(jvm_args=jvm_args, meta_filename=meta_filename, data_filename=data_filename, - meta_file_dictionary=study_meta_dictionary[meta_filename]) - - # Import expression z-score (after expression) - for meta_filename, data_filename in zscore_filepairs: - import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity, study_meta_dictionary[meta_filename]) - - # Import GSVA genetic profiles (after expression and z-scores) - if gsva_score_filepair is not None: - - # First import the GSVA score data - meta_filename, data_filename = gsva_score_filepair - import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity, study_meta_dictionary[meta_filename]) - - # Second import the GSVA p-value data - meta_filename, data_filename = gsva_pvalue_filepair - import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity, study_meta_dictionary[meta_filename]) - - if gene_panel_matrix_filepair is not None: - meta_filename, data_filename = gene_panel_matrix_filepair - import_study_data(jvm_args, meta_filename, data_filename, update_generic_assay_entity, study_meta_dictionary[meta_filename]) - - # Import the case lists - case_list_dirname = os.path.join(study_directory, 'case_lists') - if os.path.isdir(case_list_dirname): - process_case_lists(jvm_args, case_list_dirname) - - if study_meta_dictionary[study_meta_filename].get('add_global_case_list', 'false').lower() == 'true': - add_global_case_list(jvm_args, study_id) - - # enable study - update_study_status(jvm_args, study_id) - - -def usage(): - # TODO : replace this by usage string from interface() - print(('cbioportalImporter.py --jar-path (path to scripts jar file) ' + - '--command [%s] --study_directory ' - '--meta_filename ' - '--data_filename ' - '--study_ids ' % (COMMANDS)), file=OUTPUT_FILE) - -def check_args(command): - if command not in COMMANDS: - usage() - sys.exit(2) - - -def check_files(meta_filename, data_filename): - if meta_filename and not os.path.exists(meta_filename): - print('meta-file cannot be found: ' + meta_filename, file=ERROR_FILE) - sys.exit(2) - if data_filename and not os.path.exists(data_filename): - print('data-file cannot be found:' + data_filename, file=ERROR_FILE) - sys.exit(2) - -def check_dir(study_directory): - # check existence of directory - if not os.path.exists(study_directory) and study_directory != '': - print('Study cannot be found: ' + study_directory, file=ERROR_FILE) - sys.exit(2) - -def add_parser_args(parser): - parser.add_argument('-s', '--study_directory', type=str, required=False, - help='Path to Study Directory') - parser.add_argument('-jar', '--jar_path', type=str, required=False, - help='Path to scripts JAR file') - parser.add_argument('-meta', '--meta_filename', type=str, required=False, - help='Path to meta file') - parser.add_argument('-data', '--data_filename', type=str, required=False, - help='Path to Data file') - -def interface(): - parent_parser = argparse.ArgumentParser(description='cBioPortal meta Importer') - add_parser_args(parent_parser) - parser = argparse.ArgumentParser() - subparsers = parser.add_subparsers(title='subcommands', dest='subcommand', - help='Command for import. Allowed commands: import-cancer-type, ' - 'import-study, import-study-data, import-case-list or ' - 'remove-study') - import_cancer_type = subparsers.add_parser('import-cancer-type', parents=[parent_parser], add_help=False) - import_study = subparsers.add_parser('import-study', parents=[parent_parser], add_help=False) - import_study_data = subparsers.add_parser('import-study-data', parents=[parent_parser], add_help=False) - import_case_list = subparsers.add_parser('import-case-list', parents=[parent_parser], add_help=False) - remove_study = subparsers.add_parser('remove-study', parents=[parent_parser], add_help=False) - - remove_study.add_argument('-id', '--study_ids', type=str, required=False, - help='Cancer Study IDs for `remove-study` command, comma separated') - parser.add_argument('-c', '--command', type=str, required=False, - help='This argument is outdated. Please use the listed subcommands, without the -c flag. ' - 'Command for import. Allowed commands: import-cancer-type, ' - 'import-study, import-study-data, import-case-list or ' - 'remove-study') - add_parser_args(parser) - parser.add_argument('-id', '--study_ids', type=str, required=False, - help='Cancer Study IDs for `remove-study` command, comma separated') - - parser.add_argument('-update', '--update_generic_assay_entity', type=str, required=False, - help='Set as True to update the existing generic assay entities, set as False to keep the existing generic assay entities for generic assay') - # TODO - add same argument to metaimporter - # TODO - harmonize on - and _ - - parser = parser.parse_args() - if parser.command is not None and parser.subcommand is not None: - print('Cannot call multiple commands') - sys.exit(2) - elif parser.subcommand is not None: - parser.command = parser.subcommand - return parser - - -def locate_jar(): - """Locate the scripts jar file relative to this script. - - Throws a FileNotFoundError with a message if the jar file couldn't be - identified. - """ - # get the directory name of the currently running script, - # resolving any symlinks - script_dir = Path(__file__).resolve().parent - # go up from cbioportal/core/src/main/scripts/importer/ to cbioportal/ - src_root = script_dir.parent.parent.parent.parent.parent - jars = list((src_root / 'scripts' / 'target').glob('scripts-*.jar')) - if len(jars) != 1: - raise FileNotFoundError( - 'Expected to find 1 scripts-*.jar, but found ' + str(len(jars))) - return str(jars[0]) - - -def main(args): - global LOGGER - - # get the logger with a handler to print logged error messages to stderr - module_logger = logging.getLogger(__name__) - error_handler = logging.StreamHandler(sys.stderr) - error_handler.setFormatter(cbioportal_common.LogfileStyleFormatter( - os.getcwd())) - error_handler.setLevel(logging.ERROR) - module_logger.addHandler(error_handler) - LOGGER = module_logger - - # jar_path is optional. If not set, try to find it relative to this script - if args.jar_path is None: - try: - args.jar_path = locate_jar() - except FileNotFoundError as e: - print(e) - sys.exit(2) - print('Data loading step using', args.jar_path) - print() - - # process the options - jvm_args = "-Dspring.profiles.active=dbcp -cp " + args.jar_path - study_directory = args.study_directory - - # check if DB version and application version are in sync - check_version(jvm_args) - - if study_directory != None: - check_dir(study_directory) - process_directory(jvm_args, study_directory, args.update_generic_assay_entity) - else: - check_args(args.command) - check_files(args.meta_filename, args.data_filename) - process_command(jvm_args, args.command, args.meta_filename, args.data_filename, args.study_ids, args.update_generic_assay_entity) - -# ------------------------------------------------------------------------------ -# ready to roll - -if __name__ == '__main__': - parsed_args = interface() - main(parsed_args) diff --git a/core/src/main/scripts/importer/cbioportal_common.py b/core/src/main/scripts/importer/cbioportal_common.py deleted file mode 100644 index b3a97279cdb..00000000000 --- a/core/src/main/scripts/importer/cbioportal_common.py +++ /dev/null @@ -1,1113 +0,0 @@ -#!/usr/bin/env python3 - -# ------------------------------------------------------------------------------ -# Common components used by various cbioportal scripts. -# ------------------------------------------------------------------------------ - - -import os -import sys -import csv -import logging.handlers -from collections import OrderedDict -from subprocess import Popen, PIPE, STDOUT -from typing import Dict, Optional -import dsnparse -import MySQLdb - -# ------------------------------------------------------------------------------ -# globals - -ERROR_FILE = sys.stderr -OUTPUT_FILE = sys.stdout - -# global variables to check `source_stable_id` for `genomic_profile_link` -expression_stable_ids = {} -gsva_scores_stable_id = "" -expression_zscores_source_stable_ids = {} -gsva_scores_source_stable_id = "" -gsva_pvalues_source_stable_id = "" -expression_zscores_filename = "" -gsva_scores_filename = "" -gsva_pvalues_filename = "" - -IMPORT_STUDY_CLASS = "org.mskcc.cbio.portal.scripts.ImportCancerStudy" -UPDATE_STUDY_STATUS_CLASS = "org.mskcc.cbio.portal.scripts.UpdateCancerStudy" -REMOVE_STUDY_CLASS = "org.mskcc.cbio.portal.scripts.RemoveCancerStudy" -IMPORT_CANCER_TYPE_CLASS = "org.mskcc.cbio.portal.scripts.ImportTypesOfCancers" -IMPORT_CASE_LIST_CLASS = "org.mskcc.cbio.portal.scripts.ImportSampleList" -ADD_CASE_LIST_CLASS = "org.mskcc.cbio.portal.scripts.AddCaseList" -VERSION_UTIL_CLASS = "org.mskcc.cbio.portal.util.VersionUtil" - -PORTAL_PROPERTY_DATABASE_USER = 'db.user' -PORTAL_PROPERTY_DATABASE_PW = 'db.password' -PORTAL_PROPERTY_DATABASE_HOST = 'db.host' -PORTAL_PROPERTY_DATABASE_NAME = 'db.portal_db_name' -PORTAL_PROPERTY_DATABASE_URL = 'db.connection_string' -PORTAL_PROPERTY_DATABASE_USESSL = 'db.use_ssl' -REQUIRED_DATABASE_PROPERTIES = [PORTAL_PROPERTY_DATABASE_USER, PORTAL_PROPERTY_DATABASE_PW, PORTAL_PROPERTY_DATABASE_URL] - -# provides a key for data types to metafile specification dict. -class MetaFileTypes(object): - """how we differentiate between data types.""" - STUDY = 'meta_study' - CANCER_TYPE = 'meta_cancer_type' - SAMPLE_ATTRIBUTES = 'meta_clinical_sample' - PATIENT_ATTRIBUTES = 'meta_clinical_patient' - CNA_DISCRETE = 'meta_CNA' - CNA_DISCRETE_LONG = 'meta_CNA_long' - CNA_LOG2 = 'meta_log2CNA' - CNA_CONTINUOUS = 'meta_contCNA' - SEG = 'meta_segment' - EXPRESSION = 'meta_expression' - MUTATION = 'meta_mutations_extended' - MUTATION_UNCALLED = 'meta_mutations_uncalled' - METHYLATION = 'meta_methylation' - PROTEIN = 'meta_protein' - GISTIC_GENES = 'meta_gistic_genes' - TIMELINE = 'meta_timeline' - CASE_LIST = 'case_list' - MUTATION_SIGNIFICANCE = 'meta_mutsig' - GENE_PANEL_MATRIX = 'meta_gene_panel_matrix' - GSVA_SCORES = 'meta_gsva_scores' - GSVA_PVALUES = 'meta_gsva_pvalues' - GENERIC_ASSAY_CONTINUOUS = 'meta_generic_assay_continuous' - GENERIC_ASSAY_BINARY = 'meta_generic_assay_binary' - GENERIC_ASSAY_CATEGORICAL = 'meta_generic_assay_categorical' - STRUCTURAL_VARIANT = 'meta_structural_variants' - SAMPLE_RESOURCES = 'meta_resource_sample' - PATIENT_RESOURCES = 'meta_resource_patient' - STUDY_RESOURCES = 'meta_resource_study' - RESOURCES_DEFINITION = 'meta_resource_definition' - - -# fields allowed in each meta file type, maps to True if required -META_FIELD_MAP = { - MetaFileTypes.CANCER_TYPE: { - 'genetic_alteration_type': True, - 'datatype': True, - 'data_filename': True - }, - MetaFileTypes.STUDY: { - 'cancer_study_identifier': True, - 'type_of_cancer': True, - 'name': True, - 'description': True, - 'citation': False, - 'pmid': False, - 'groups': False, - 'add_global_case_list': False, - 'tags_file': False, - 'reference_genome': False - }, - MetaFileTypes.SAMPLE_ATTRIBUTES: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'data_filename': True - }, - MetaFileTypes.PATIENT_ATTRIBUTES: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'data_filename': True - }, - MetaFileTypes.CNA_DISCRETE: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'show_profile_in_analysis_tab': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'gene_panel': False, - 'pd_annotations_filename': False - }, - MetaFileTypes.CNA_DISCRETE_LONG: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'show_profile_in_analysis_tab': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'gene_panel': False, - 'namespaces': False - }, - MetaFileTypes.CNA_LOG2: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'show_profile_in_analysis_tab': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'gene_panel': False - }, - MetaFileTypes.CNA_CONTINUOUS: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'show_profile_in_analysis_tab': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'gene_panel': False - }, - MetaFileTypes.SEG: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'reference_genome_id': True, - 'data_filename': True, - 'description': True - }, - MetaFileTypes.MUTATION: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'show_profile_in_analysis_tab': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'normal_samples_list': False, - 'swissprot_identifier': False, - 'gene_panel': False, - 'variant_classification_filter': False, - 'namespaces': False - }, - MetaFileTypes.MUTATION_UNCALLED: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'show_profile_in_analysis_tab': False, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'normal_samples_list': False, - 'swissprot_identifier': False, - 'gene_panel': False, - 'variant_classification_filter': False, - 'namespaces': False - }, - MetaFileTypes.EXPRESSION: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'source_stable_id': False, - 'show_profile_in_analysis_tab': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'gene_panel': False - }, - MetaFileTypes.METHYLATION: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'show_profile_in_analysis_tab': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'gene_panel': False - }, - MetaFileTypes.PROTEIN: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'show_profile_in_analysis_tab': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'gene_panel': False - }, - MetaFileTypes.GISTIC_GENES: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'reference_genome_id': True, - 'data_filename': True - }, - MetaFileTypes.TIMELINE: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'data_filename': True - }, - MetaFileTypes.CASE_LIST: { - 'cancer_study_identifier': True, - 'stable_id': True, - 'case_list_name': True, - 'case_list_description': True, - 'case_list_ids': True, - 'case_list_category': False # TODO this is used in org.mskcc.cbio.portal.model.AnnotatedPatientSets.getDefaultPatientList(), decide whether to keeep, see #494 - }, - MetaFileTypes.MUTATION_SIGNIFICANCE: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'data_filename': True - }, - MetaFileTypes.GENE_PANEL_MATRIX: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'data_filename': True - }, - MetaFileTypes.GSVA_PVALUES: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'source_stable_id': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'geneset_def_version': True - }, - MetaFileTypes.GSVA_SCORES: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'source_stable_id': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'show_profile_in_analysis_tab': True, - 'geneset_def_version': True - }, - MetaFileTypes.GENERIC_ASSAY_CONTINUOUS: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'generic_assay_type': True, - 'datatype': True, - 'stable_id': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'show_profile_in_analysis_tab': True, - 'generic_entity_meta_properties': False, - 'pivot_threshold_value': False, - 'value_sort_order': False, - 'patient_level': False - }, - MetaFileTypes.GENERIC_ASSAY_BINARY: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'generic_assay_type': True, - 'datatype': True, - 'stable_id': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'show_profile_in_analysis_tab': True, - 'generic_entity_meta_properties': False, - 'patient_level': False - }, - MetaFileTypes.GENERIC_ASSAY_CATEGORICAL: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'generic_assay_type': True, - 'datatype': True, - 'stable_id': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'show_profile_in_analysis_tab': True, - 'generic_entity_meta_properties': False, - 'patient_level': False - }, - MetaFileTypes.STRUCTURAL_VARIANT: { - 'cancer_study_identifier': True, - 'genetic_alteration_type': True, - 'datatype': True, - 'stable_id': True, - 'show_profile_in_analysis_tab': True, - 'profile_name': True, - 'profile_description': True, - 'data_filename': True, - 'gene_panel': False, - 'namespaces': False - }, - MetaFileTypes.SAMPLE_RESOURCES: { - 'cancer_study_identifier': True, - 'resource_type': True, - 'data_filename': True - }, - MetaFileTypes.PATIENT_RESOURCES: { - 'cancer_study_identifier': True, - 'resource_type': True, - 'data_filename': True - }, - MetaFileTypes.STUDY_RESOURCES: { - 'cancer_study_identifier': True, - 'resource_type': True, - 'data_filename': True - }, - MetaFileTypes.RESOURCES_DEFINITION: { - 'cancer_study_identifier': True, - 'resource_type': True, - 'data_filename': True - }, -} - -IMPORTER_CLASSNAME_BY_META_TYPE = { - MetaFileTypes.STUDY: IMPORT_STUDY_CLASS, - MetaFileTypes.CANCER_TYPE: IMPORT_CANCER_TYPE_CLASS, - MetaFileTypes.SAMPLE_ATTRIBUTES: "org.mskcc.cbio.portal.scripts.ImportClinicalData", - MetaFileTypes.PATIENT_ATTRIBUTES: "org.mskcc.cbio.portal.scripts.ImportClinicalData", - MetaFileTypes.CNA_DISCRETE: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.CNA_DISCRETE_LONG: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.CNA_LOG2: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.CNA_CONTINUOUS: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.SEG: "org.mskcc.cbio.portal.scripts.ImportCopyNumberSegmentData", - MetaFileTypes.EXPRESSION: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.MUTATION: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.MUTATION_UNCALLED: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.METHYLATION: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.PROTEIN: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.GISTIC_GENES: "org.mskcc.cbio.portal.scripts.ImportGisticData", - MetaFileTypes.TIMELINE: "org.mskcc.cbio.portal.scripts.ImportTimelineData", - MetaFileTypes.CASE_LIST: IMPORT_CASE_LIST_CLASS, - MetaFileTypes.MUTATION_SIGNIFICANCE: "org.mskcc.cbio.portal.scripts.ImportMutSigData", - MetaFileTypes.GENE_PANEL_MATRIX: "org.mskcc.cbio.portal.scripts.ImportGenePanelProfileMap", - MetaFileTypes.GSVA_SCORES: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.GSVA_PVALUES: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.GENERIC_ASSAY_CONTINUOUS: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.GENERIC_ASSAY_BINARY: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.GENERIC_ASSAY_CATEGORICAL: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.STRUCTURAL_VARIANT: "org.mskcc.cbio.portal.scripts.ImportProfileData", - MetaFileTypes.SAMPLE_RESOURCES: "org.mskcc.cbio.portal.scripts.ImportResourceData", - MetaFileTypes.PATIENT_RESOURCES: "org.mskcc.cbio.portal.scripts.ImportResourceData", - MetaFileTypes.STUDY_RESOURCES: "org.mskcc.cbio.portal.scripts.ImportResourceData", - MetaFileTypes.RESOURCES_DEFINITION: "org.mskcc.cbio.portal.scripts.ImportResourceDefinition", -} - -IMPORTER_REQUIRES_METADATA = { - "org.mskcc.cbio.portal.scripts.ImportClinicalData" : True, - "org.mskcc.cbio.portal.scripts.ImportCopyNumberSegmentData" : True, - "org.mskcc.cbio.portal.scripts.ImportGisticData" : False, - "org.mskcc.cbio.portal.scripts.ImportMutSigData" : False, - "org.mskcc.cbio.portal.scripts.ImportProfileData" : True, - "org.mskcc.cbio.portal.scripts.ImportTimelineData" : True, - "org.mskcc.cbio.portal.scripts.ImportGenePanelProfileMap" : False, - "org.mskcc.cbio.portal.scripts.ImportResourceData" : True, - "org.mskcc.cbio.portal.scripts.ImportResourceDefinition" : True -} - -# ------------------------------------------------------------------------------ -# class definitions - -class ValidationMessageFormatter(logging.Formatter): - - """Logging formatter with optional fields for data validation messages. - - These fields are: - filename_ - the path to the file the message is about (if applicable) - line_number - a line number within the above file (if applicable) - column_number - a column number within the above file (if applicable) - cause - the unexpected value found in the input (if applicable) - - If instead a message pertains to multiple values of one of these - fields (as the result of aggregation by CollapsingLogMessageHandler), - these will be expected in the field _list. - """ - - def format(self, record, *args, **kwargs): - """Check consistency of expected fields and format the record.""" - if ( - ( - hasattr(record, 'line_number') or - hasattr(record, 'line_number_list') or - hasattr(record, 'column_number') or - hasattr(record, 'column_number_list')) - and not hasattr(record, 'filename_')): - raise ValueError( - 'Tried to log about a line/column with no filename') - return super(ValidationMessageFormatter, self).format(record, - *args, - **kwargs) - - @staticmethod - def format_aggregated(record, - field_name, - single_fmt='%s', - multiple_fmt='[%s]', - join_string=', ', - max_join=3, - optional=False): - """Format a human-readable string for a field or its _list. - - From log records as generated by the flush() method of - CollapsingLogMessageHandler. If the field was not aggregated, format - it according to the format string `single_fmt`. If it was, coerce the - first `max_join` values to strings, concatenate them separated by - `join_string`, and format the result according to `multiple_fmt`. - - If `max_join` is None, join all values and apply no maximum length. - - If `optional` is True and both the field and its list are absent, - return an empty string. - """ - attr_val = getattr(record, field_name, None) - attr_list = getattr(record, field_name + '_list', None) - if attr_val is not None: - attr_indicator = single_fmt % attr_val - elif attr_list is not None: - # treat None as 'format all of them, no maximum' - if max_join is None: - max_join = len(attr_list) - string_list = list(str(val) for val in attr_list[:max_join]) - num_skipped = len(attr_list) - len(string_list) - if num_skipped != 0: - string_list.append('(%d more)' % num_skipped) - attr_indicator = multiple_fmt % join_string.join(string_list) - elif optional: - attr_indicator = '' - else: - raise ValueError( - "Tried to format an absent non-optional log field: '%s'" % - field_name) - return attr_indicator - - -class LogfileStyleFormatter(ValidationMessageFormatter): - - """Formatter for validation messages in a simple one-per-line format.""" - - def __init__(self, study_dir): - """Initialize a logging Formatter with an appropriate format string.""" - super(LogfileStyleFormatter, self).__init__( - fmt='%(levelname)s: %(file_indicator)s:' - '%(line_indicator)s%(column_indicator)s' - ' %(message)s%(cause_indicator)s') - self.study_dir = study_dir - self.previous_filename = None - - def format(self, record): - - """Generate descriptions for optional fields and format the record.""" - - - if not hasattr(record, 'filename_'): - record.file_indicator = '-' - else: - record.file_indicator = os.path.relpath(record.filename_.strip(), - self.study_dir) - record.line_indicator = self.format_aggregated( - record, - 'line_number', - ' line %d:', - ' lines [%s]:', - optional=True) - record.column_indicator = self.format_aggregated( - record, - 'column_number', - ' column %d:', - ' columns [%s]:', - optional=True) - record.cause_indicator = self.format_aggregated( - record, - 'cause', - "; value encountered: '%s'", - "; values encountered: ['%s']", - join_string="', '", - optional=True) - - # format the string based on these fields - formatted_result = super(LogfileStyleFormatter, self).format(record) - - # prepend an empty line if the filename is different than before - current_filename = getattr(record, 'filename_', '') - if (self.previous_filename is not None and - current_filename != self.previous_filename): - formatted_result = '\n' + formatted_result - self.previous_filename = current_filename - - return formatted_result - - -class CollapsingLogMessageHandler(logging.handlers.MemoryHandler): - - """Logging handler that aggregates repeated log messages into one. - - This collapses validation LogRecords based on the source code line that - emitted them and their formatted message, and flushes the resulting - records to another handler. - """ - - # TODO make it collapse messages on emit, instead of keeping it all in RAM - def flush(self): - - """Aggregate LogRecords by message and send them to the target handler. - - Fields that occur with multiple different values in LogRecords - emitted from the same line with the same message (and optional - 'filename_' attribute) will be collected in a field named - _list. - """ - - # group buffered LogRecords by their source code line and message - grouping_dict = OrderedDict() - for record in self.buffer: - identifying_tuple = (record.module, - record.lineno, - getattr(record, 'filename_', None), - record.getMessage()) - if identifying_tuple not in grouping_dict: - grouping_dict[identifying_tuple] = [] - - # add a tuple that keeps the relation between the line number, - # the column number and the cause for the HTML report - record.__dict__['value'] = ( - getattr(record, 'line_number', None), - getattr(record, 'column_number', None), - getattr(record, 'cause', None)) - - grouping_dict[identifying_tuple].append(record) - - aggregated_buffer = [] - # for each list of same-message records - for record_list in list(grouping_dict.values()): - # make a dict to collect the fields for the aggregate record - aggregated_field_dict = {} - # for each field found in (the first of) the records - for field_name in record_list[0].__dict__: - # collect the values found for this field across the records. - # Use the keys of an OrderedDict, as OrderedSet is for some - # reason not to be found in the Python standard library. - field_values = OrderedDict((record.__dict__[field_name], None) - for record in record_list) - # if this field has the same value in all records - if len(field_values) == 1: - # use that value in the new dict - aggregated_field_dict[field_name] = field_values.popitem()[0] - else: - # set a _list field instead - aggregated_field_dict[field_name + '_list'] = \ - list(field_values.keys()) - - # add a new log record with these fields tot the output buffer - aggregated_buffer.append( - logging.makeLogRecord(aggregated_field_dict)) - - # replace the buffer with the aggregated one and flush - self.buffer = aggregated_buffer - super(CollapsingLogMessageHandler, self).flush() - - def shouldFlush(self, record): - """Collapse and flush every time a debug message is emitted.""" - return (record.levelno == logging.DEBUG or - super(CollapsingLogMessageHandler, self).shouldFlush(record)) - - -# ------------------------------------------------------------------------------ -# sub-routines - -def get_meta_file_type(meta_dictionary, logger, filename): - """ - Returns one of the metatypes found in MetaFileTypes - - NB: a subset of these types (combined with allowed_data_types.txt) - is also tracked in org.cbioportal.model.GeneticProfile.java. If you add - things here, please make sure to update there as well if it regards a - genetic profile data type. - """ - # The following dictionary is required to define the MetaFileType for all - # combinations, which are used in validateData to determine which validator - # should be used. There is some redundancy with allowed_data_types.txt, which - # also contains genetic alteration types and datatype combinations, but is used - # to check if the correct stable id is used. - # GENETIC_ALTERATION_TYPE DATATYPE meta - alt_type_datatype_to_meta = { - # cancer type - ("CANCER_TYPE", "CANCER_TYPE"): MetaFileTypes.CANCER_TYPE, - # clinical and timeline - ("CLINICAL", "PATIENT_ATTRIBUTES"): MetaFileTypes.PATIENT_ATTRIBUTES, - ("CLINICAL", "SAMPLE_ATTRIBUTES"): MetaFileTypes.SAMPLE_ATTRIBUTES, - ("CLINICAL", "TIMELINE"): MetaFileTypes.TIMELINE, - # rppa and mass spectrometry - ("PROTEIN_LEVEL", "LOG2-VALUE"): MetaFileTypes.PROTEIN, - ("PROTEIN_LEVEL", "Z-SCORE"): MetaFileTypes.PROTEIN, - ("PROTEIN_LEVEL", "CONTINUOUS"): MetaFileTypes.PROTEIN, - # cna - ("COPY_NUMBER_ALTERATION", "DISCRETE"): MetaFileTypes.CNA_DISCRETE, - ("COPY_NUMBER_ALTERATION", "DISCRETE_LONG"): MetaFileTypes.CNA_DISCRETE_LONG, - ("COPY_NUMBER_ALTERATION", "CONTINUOUS"): MetaFileTypes.CNA_CONTINUOUS, - ("COPY_NUMBER_ALTERATION", "LOG2-VALUE"): MetaFileTypes.CNA_LOG2, - ("COPY_NUMBER_ALTERATION", "SEG"): MetaFileTypes.SEG, - # expression - ("MRNA_EXPRESSION", "CONTINUOUS"): MetaFileTypes.EXPRESSION, - ("MRNA_EXPRESSION", "Z-SCORE"): MetaFileTypes.EXPRESSION, - ("MRNA_EXPRESSION", "DISCRETE"): MetaFileTypes.EXPRESSION, - # mutations - ("MUTATION_EXTENDED", "MAF"): MetaFileTypes.MUTATION, - ("MUTATION_UNCALLED", "MAF"): MetaFileTypes.MUTATION_UNCALLED, - # others - ("METHYLATION", "CONTINUOUS"): MetaFileTypes.METHYLATION, - ("GENE_PANEL_MATRIX", "GENE_PANEL_MATRIX"): MetaFileTypes.GENE_PANEL_MATRIX, - ("STRUCTURAL_VARIANT", "SV"): MetaFileTypes.STRUCTURAL_VARIANT, - # cross-sample molecular statistics (for gene selection) - ("GISTIC_GENES_AMP", "Q-VALUE"): MetaFileTypes.GISTIC_GENES, - ("GISTIC_GENES_DEL", "Q-VALUE"): MetaFileTypes.GISTIC_GENES, - ("MUTSIG", "Q-VALUE"): MetaFileTypes.MUTATION_SIGNIFICANCE, - ("GENESET_SCORE", "GSVA-SCORE"): MetaFileTypes.GSVA_SCORES, - ("GENESET_SCORE", "P-VALUE"): MetaFileTypes.GSVA_PVALUES, - ("GENERIC_ASSAY", "LIMIT-VALUE"): MetaFileTypes.GENERIC_ASSAY_CONTINUOUS, - ("GENERIC_ASSAY", "BINARY"): MetaFileTypes.GENERIC_ASSAY_BINARY, - ("GENERIC_ASSAY", "CATEGORICAL"): MetaFileTypes.GENERIC_ASSAY_CATEGORICAL - } - result = None - if 'genetic_alteration_type' in meta_dictionary and 'datatype' in meta_dictionary: - genetic_alteration_type = meta_dictionary['genetic_alteration_type'] - data_type = meta_dictionary['datatype'] - if (genetic_alteration_type, data_type) in alt_type_datatype_to_meta: - result = alt_type_datatype_to_meta[(genetic_alteration_type, data_type)] - else: - if meta_dictionary['datatype'] == 'FUSION': - logger.error( - 'The Fusion file format is deprecated. Consider adding the data in Structural Variant format.', - extra={'filename_': filename, - 'cause': ('genetic_alteration_type: %s, ' - 'datatype: %s' % ( - meta_dictionary['genetic_alteration_type'], - meta_dictionary['datatype']))}) - else: - logger.error( - 'Could not determine the file type. Please check your meta files for correct configuration.', - extra={'filename_': filename, - 'cause': ('genetic_alteration_type: %s, ' - 'datatype: %s' % ( - meta_dictionary['genetic_alteration_type'], - meta_dictionary['datatype']))}) - elif 'cancer_study_identifier' in meta_dictionary and 'type_of_cancer' in meta_dictionary: - result = MetaFileTypes.STUDY - elif 'type_of_cancer' in meta_dictionary: - result = MetaFileTypes.CANCER_TYPE - elif 'cancer_study_identifier' in meta_dictionary and 'resource_type' in meta_dictionary: - if meta_dictionary['resource_type'] == 'PATIENT': - result = MetaFileTypes.PATIENT_RESOURCES - elif meta_dictionary['resource_type'] == 'SAMPLE': - result = MetaFileTypes.SAMPLE_RESOURCES - elif meta_dictionary['resource_type'] == 'STUDY': - result = MetaFileTypes.STUDY_RESOURCES - elif meta_dictionary['resource_type'] == 'DEFINITION': - result = MetaFileTypes.RESOURCES_DEFINITION - else: - logger.error('Could not determine the file type. Did not find expected meta file fields. Please check your meta files for correct configuration.', - extra={'filename_': filename}) - return result - - -def validate_types_and_id(meta_dictionary, logger, filename): - """Validate a genetic_alteration_type, datatype (and stable_id in some cases) against the predefined - allowed combinations found in ./allowed_data_types.txt - """ - result = True - # this validation only applies to items that have genetic_alteration_type and datatype and stable_id - if 'genetic_alteration_type' in meta_dictionary and 'datatype' in meta_dictionary and 'stable_id' in meta_dictionary: - alt_type_datatype_and_stable_id = {} - script_dir = os.path.dirname(__file__) - allowed_data_types_file_name = os.path.join(script_dir, "allowed_data_types.txt") - data_line_nr = 0 - # build up map alt_type_datatype_and_stable_id: - with open(allowed_data_types_file_name) as allowed_data_types_file: - for line in allowed_data_types_file: - if line.startswith("#"): - continue - data_line_nr += 1 - # skip header, so if line is not header then process as tab separated: - if (data_line_nr > 1): - line_cols = next(csv.reader([line], delimiter='\t')) - genetic_alteration_type = line_cols[0] - data_type = line_cols[1] - # add to map: - if (genetic_alteration_type, data_type) not in alt_type_datatype_and_stable_id: - alt_type_datatype_and_stable_id[(genetic_alteration_type, data_type)] = [] - alt_type_datatype_and_stable_id[(genetic_alteration_type, data_type)].append(line_cols[2]) - # init: - stable_id = meta_dictionary['stable_id'] - genetic_alteration_type = meta_dictionary['genetic_alteration_type'] - data_type = meta_dictionary['datatype'] - # validate the genetic_alteration_type/data_type combination: - if (genetic_alteration_type, data_type) not in alt_type_datatype_and_stable_id: - # unexpected as this is already validated in get_meta_file_type - raise RuntimeError('Unexpected error: genetic_alteration_type and data_type combination not found in allowed_data_types.txt.', - genetic_alteration_type, data_type) - # Check whether a wild card ('*') is set in allowed_data_types.txt for the alteration type-data type combination. - # For these entries the stable_id is not validated, but assumed to be checked for uniqueness by the user. - elif alt_type_datatype_and_stable_id[(genetic_alteration_type, data_type)][0] == "*": - pass - # validate stable_id: - elif stable_id not in alt_type_datatype_and_stable_id[(genetic_alteration_type, data_type)]: - logger.error("Invalid stable id for genetic_alteration_type '%s', " - "data_type '%s'; expected one of [%s]", - genetic_alteration_type, - data_type, - ', '.join(alt_type_datatype_and_stable_id[(genetic_alteration_type, data_type)]), - extra={'filename_': filename, - 'cause': stable_id} - ) - result = False - - return result - - -def parse_metadata_file(filename, - logger, - study_id=None, - case_list=False, - gene_panel_list=None): - - """Validate a metafile and return a dictionary of values read from it and - the meta_file_type according to get_meta_file_type. - - `meta_file_type` will be `None` if the file is invalid. If `case_list` - is True, read the file as a case list instead of a meta file. - - :param filename: name of the meta file - :param logger: the logging.Logger instance to log warnings and errors to - :param study_id: (optional - set if you want study_id to be validated) - cancer study id found in previous files (or None). All subsequent - meta files should comply to this in the field 'cancer_study_identifier' - :param case_list: whether this meta file is a case list (special case) - :param gene_panel_list: (optional - set if you want this to be validated) - list of gene panels in the database - """ - - logger.debug('Starting validation of meta file', extra={'filename_': filename}) - - # Read meta file - meta_dictionary = OrderedDict() - with open(filename, 'r') as metafile: - for line_index, line in enumerate(metafile): - # skip empty lines: - if line.strip() == '': - continue - if ':' not in line: - logger.error( - "Invalid %s file entry, no ':' found", - {True: 'case list', False: 'meta'}[case_list], - extra={'filename_': filename, - 'line_number': line_index + 1}) - meta_dictionary['meta_file_type'] = None - return dict(meta_dictionary) - key_value = line.split(':', 1) - if len(key_value) == 2: - meta_dictionary[key_value[0]] = key_value[1].strip() - - # Determine meta file type - if case_list: - meta_file_type = MetaFileTypes.CASE_LIST - meta_dictionary['meta_file_type'] = meta_file_type - else: - meta_file_type = get_meta_file_type(meta_dictionary, logger, filename) - meta_dictionary['meta_file_type'] = meta_file_type - # if type could not be inferred, no further validations are possible - if meta_file_type is None: - return dict(meta_dictionary) - - - # Check for missing fields for this specific meta file type - missing_fields = [] - for field in META_FIELD_MAP[meta_file_type]: - mandatory = META_FIELD_MAP[meta_file_type][field] - if field not in meta_dictionary and mandatory: - logger.error("Missing field '%s' in %s file", - field, - {True: 'case list', False: 'meta'}[case_list], - extra={'filename_': filename}) - missing_fields.append(field) - - if missing_fields: - # all further checks would depend on these fields being present - meta_dictionary['meta_file_type'] = None - return dict(meta_dictionary) - - # validate genetic_alteration_type, datatype, stable_id - stable_id_mandatory = META_FIELD_MAP[meta_file_type].get('stable_id', - False) - if stable_id_mandatory: - valid_types_and_id = validate_types_and_id(meta_dictionary, logger, filename) - if not valid_types_and_id: - # invalid meta file type - meta_dictionary['meta_file_type'] = None - return dict(meta_dictionary) - - # check for extra unrecognized fields - for field in meta_dictionary: - if field not in META_FIELD_MAP[meta_file_type]: - - # Don't give warning for added 'meta_file_type' - if field == "meta_file_type": - pass - else: - logger.warning( - 'Unrecognized field in %s file', - {True: 'case list', False: 'meta'}[case_list], - extra={'filename_': filename, - 'cause': field}) - - # check that cancer study identifiers across files so far are consistent. - if ( - study_id is not None and - 'cancer_study_identifier' in meta_dictionary and - study_id != meta_dictionary['cancer_study_identifier']): - logger.error( - "Cancer study identifier is not consistent across " - "files, expected '%s'", - study_id, - extra={'filename_': filename, - 'cause': meta_dictionary['cancer_study_identifier']}) - # not a valid meta file in this study - meta_dictionary['meta_file_type'] = None - return dict(meta_dictionary) - - # type-specific validations - - # Validate length of attributes in meta study file - # TODO: do this for all other meta files as well - meta_study_attribute_size_dict = {'cancer_study_identifier': 255, - 'type_of_cancer': 63, - 'name': 255, - 'description': 1024, - 'citation': 200, - 'pmid': 1024, - 'groups': 200, - 'short_name': 64 - } - if meta_file_type == MetaFileTypes.STUDY: - for attribute in meta_study_attribute_size_dict: - if attribute in meta_dictionary: - if len(meta_dictionary[attribute]) > meta_study_attribute_size_dict[attribute]: - logger.error("The maximum length of the '%s' " - "value is %s" % (attribute, - meta_study_attribute_size_dict[attribute]), - extra={'filename_': filename, - 'cause': meta_dictionary[attribute] + ' (%s)' % len(meta_dictionary[attribute])} - ) - - # Restrict the show_profile_in_analysis_tab value to false (https://github.com/cBioPortal/cbioportal/issues/5023) - if meta_file_type in (MetaFileTypes.CNA_CONTINUOUS, MetaFileTypes.CNA_LOG2): - if meta_dictionary['show_profile_in_analysis_tab'] != 'false': - logger.error("The 'show_profile_in_analysis_tab' setting must be 'false', as this is only applicable for " - "CNA data of the DISCRETE type.", - extra={'filename_': filename, - 'cause': 'show_profile_in_analysis_tab: %s' % meta_dictionary['show_profile_in_analysis_tab']}) - - if meta_file_type in (MetaFileTypes.SEG, MetaFileTypes.GISTIC_GENES): - # Todo: Restore validation for reference genome in segment files - # Validation can be restored to normal when hg18 data on public portal and data hub has been - # liftovered to hg19. It was decided in the data hub call of August 14 2018 to remove validation until then. - valid_segment_reference_genomes = ['hg19','hg38'] - if meta_dictionary['reference_genome_id'] not in valid_segment_reference_genomes: - logger.error( - 'Reference_genome_id is not %s', - ' or '.join(valid_segment_reference_genomes), - extra={'filename_': filename, - 'cause': meta_dictionary['reference_genome_id']}) - meta_dictionary['meta_file_type'] = None - - if meta_file_type in [MetaFileTypes.MUTATION, MetaFileTypes.MUTATION_UNCALLED]: - if ('swissprot_identifier' in meta_dictionary and - meta_dictionary['swissprot_identifier'] not in ('name', - 'accession')): - logger.error( - "Invalid swissprot_identifier specification, must be either " - "'name' or 'accession'", - extra={'filename_': filename, - 'cause': meta_dictionary['swissprot_identifier']}) - meta_dictionary['meta_file_type'] = None - - # Check whether the gene panel property is included in the mutation meta file. This should be an error. - if 'gene_panel' in meta_dictionary: - logger.warning("Including the stable ID for gene panels in meta file might lead to incorrect " - "results for samples that are profiled but nu mutations are called. Consider adding a column" - " for mutation profile to gene panel matrix file", - extra={'filename_': filename, - 'cause': 'gene_panel: %s' % meta_dictionary['gene_panel']}) - - # When validating - if gene_panel_list: - # Check whether the gene panel in the gene panel property field corresponds with a gene panel in the database - if 'gene_panel' in meta_dictionary: - if meta_dictionary['gene_panel'] not in gene_panel_list and meta_dictionary['gene_panel'] != 'NA': - logger.error('Gene panel ID is not in database. Please import this gene panel before loading ' - 'study data.', - extra={'filename_': filename, - 'cause': meta_dictionary['gene_panel']}) - - # Save information regarding `source_stable_id`, so that after all meta files are validated, - # we can validate fields between meta files in validate_data_relations() in validateData.py - global gsva_scores_stable_id - global gsva_scores_source_stable_id - global gsva_pvalues_source_stable_id - global gsva_scores_filename - global gsva_pvalues_filename - - # save all expression `stable_id` in a dictionary with their filenames - if meta_file_type is MetaFileTypes.EXPRESSION: - if 'stable_id' in meta_dictionary: - expression_stable_ids[meta_dictionary['stable_id']] = filename - - # Save all zscore expression `source_stable_id` in dictionary with their filenames. - # Multiple zscore expression files are possible, and we want to validate all their - # source_stable_ids with expression stable ids - if meta_dictionary['datatype'] == "Z-SCORE": - if 'source_stable_id' in meta_dictionary: - expression_zscores_source_stable_ids[meta_dictionary['source_stable_id']] = filename - - # save stable_id and source_stable_id of GSVA Scores - if meta_file_type is MetaFileTypes.GSVA_SCORES: - gsva_scores_filename = filename - if 'source_stable_id' in meta_dictionary: - gsva_scores_source_stable_id = meta_dictionary['source_stable_id'] - - # save 'stable_id' to check the 'source_stable_id' in GSVA_PVALUES file - if 'stable_id' in meta_dictionary: - gsva_scores_stable_id = meta_dictionary['stable_id'] - - # save stable_id and source_stable_id of GSVA Pvalues - if meta_file_type is MetaFileTypes.GSVA_PVALUES: - gsva_pvalues_filename = filename - if 'source_stable_id' in meta_dictionary: - gsva_pvalues_source_stable_id = meta_dictionary['source_stable_id'] - - logger.info('Validation of meta file complete', extra={'filename_': filename}) - - return meta_dictionary - - -def run_java(*args): - java_home = os.environ.get('JAVA_HOME', '') - if java_home: - java_command = os.path.join(java_home, 'bin', 'java') - else: - java_command = 'java' - process = Popen([java_command] + list(args), stdout=PIPE, stderr=STDOUT, - universal_newlines=True) - ret = [] - while process.poll() is None: - line = process.stdout.readline() - if line != '' and line.endswith('\n'): - print(line.strip(), file=OUTPUT_FILE) - ret.append(line[:-1]) - ret.append(process.returncode) - # if cmd line parameters error: - if process.returncode == 64 or process.returncode == 2: - raise RuntimeError('Aborting. Step failed due to wrong parameters passed to subprocess.') - # any other error: - elif process.returncode != 0: - raise RuntimeError('Aborting due to error while executing step.') - return ret - - -def properties_error_message(display_name: str, property_name: str) -> str: - return f"No {display_name} provided for database connection. Please set '{property_name}' in portal.properties." - - -class PortalProperties(object): - """ Properties object class, just has fields for db conn """ - - def __init__(self, database_user, database_pw, database_url): - self.database_user = database_user - self.database_pw = database_pw - self.database_url = database_url - - -def get_database_properties(properties_filename: str) -> Optional[PortalProperties]: - - properties = parse_properties_file(properties_filename) - - missing_properties = [] - for required_property in REQUIRED_DATABASE_PROPERTIES: - if required_property not in properties or len(properties[required_property]) == 0: - missing_properties.append(required_property) - if missing_properties: - print( - 'Missing required properties : (%s)' % (', '.join(missing_properties)), - file=ERROR_FILE) - return None - - if properties.get(PORTAL_PROPERTY_DATABASE_HOST) is not None \ - or properties.get(PORTAL_PROPERTY_DATABASE_NAME) is not None \ - or properties.get(PORTAL_PROPERTY_DATABASE_USESSL) is not None: - print(""" - ---------------------------------------------------------------------------------------------------------------- - -- Connection error: - -- You try to connect to the database using the deprecated 'db.host', 'db.portal_db_name' and 'db.use_ssl' properties. - -- Please remove these properties and use the 'db.connection_string' property instead. See https://docs.cbioportal.org/deployment/customization/portal.properties-reference/ - -- for assistance on building a valid connection string. - ------------------------------------------------------------f--------------------------------------------------- - """, file=ERROR_FILE) - return None - - return PortalProperties(properties[PORTAL_PROPERTY_DATABASE_USER], - properties[PORTAL_PROPERTY_DATABASE_PW], - properties[PORTAL_PROPERTY_DATABASE_URL]) - - -def parse_properties_file(properties_filename: str) -> Dict[str, str]: - - if not os.path.exists(properties_filename): - print('properties file %s cannot be found' % properties_filename, file=ERROR_FILE) - sys.exit(2) - - properties = {} - with open(properties_filename, 'r') as properties_file: - for line in properties_file: - line = line.strip() - # skip line if its blank or a comment - if len(line) == 0 or line.startswith('#'): - continue - try: - name, value = line.split('=', maxsplit=1) - except ValueError: - print( - 'Skipping invalid entry in property file: %s' % line, - file=ERROR_FILE) - continue - properties[name] = value.strip() - return properties - - -def get_db_cursor(portal_properties: PortalProperties): - - try: - url_elements = dsnparse.parse(portal_properties.database_url) - connection_kwargs = { - "host": url_elements.host, - "port": url_elements.port if url_elements.port is not None else 3306, - "db": url_elements.paths[0], - "user": portal_properties.database_user, - "passwd": portal_properties.database_pw - } - if url_elements.query.get("useSSL") == "true": - connection_kwargs['ssl_mode'] = 'REQUIRED' - connection_kwargs['ssl'] = {"ssl_mode": True} - else: - connection_kwargs['ssl_mode'] = 'DISABLED' - if url_elements.query.get("get-server-public-key") == "true": - connection_kwargs['ssl'] = { - 'MYSQL_OPT_GET_SERVER_PUBLIC_KEY': True - } - connection = MySQLdb.connect(**connection_kwargs) - except MySQLdb.Error as exception: - print(exception, file=ERROR_FILE) - message = ( - "--> Error connecting to server with URL: " - + portal_properties.database_url) - print(message, file=ERROR_FILE) - raise ConnectionError(message) from exception - if connection is not None: - return connection, connection.cursor() diff --git a/core/src/main/scripts/importer/chromosome_sizes.json b/core/src/main/scripts/importer/chromosome_sizes.json deleted file mode 100644 index 4a6ddebb99a..00000000000 --- a/core/src/main/scripts/importer/chromosome_sizes.json +++ /dev/null @@ -1 +0,0 @@ -{"hg19": {"1": 249250621, "2": 243199373, "3": 198022430, "4": 191154276, "5": 180915260, "6": 171115067, "7": 159138663, "X": 155270560, "8": 146364022, "9": 141213431, "10": 135534747, "11": 135006516, "12": 133851895, "13": 115169878, "14": 107349540, "15": 102531392, "16": 90354753, "17": 81195210, "18": 78077248, "20": 63025520, "Y": 59373566, "19": 59128983, "22": 51304566, "21": 48129895}, "hg38": {"1": 248956422, "2": 242193529, "3": 198295559, "4": 190214555, "5": 181538259, "6": 170805979, "7": 159345973, "X": 156040895, "8": 145138636, "9": 138394717, "11": 135086622, "10": 133797422, "12": 133275309, "13": 114364328, "14": 107043718, "15": 101991189, "16": 90338345, "17": 83257441, "18": 80373285, "20": 64444167, "19": 58617616, "Y": 57227415, "22": 50818468, "21": 46709983}, "mm10": {"1": 195471971, "2": 182113224, "X": 171031299, "3": 160039680, "4": 156508116, "5": 151834684, "6": 149736546, "7": 145441459, "10": 130694993, "8": 129401213, "14": 124902244, "9": 124595110, "11": 122082543, "13": 120421639, "12": 120129022, "15": 104043685, "16": 98207768, "17": 94987271, "Y": 91744698, "18": 90702639, "19": 61431566}} \ No newline at end of file diff --git a/core/src/main/scripts/importer/data_cna_pd_annotations.txt b/core/src/main/scripts/importer/data_cna_pd_annotations.txt deleted file mode 100644 index 55d03a9bfe7..00000000000 --- a/core/src/main/scripts/importer/data_cna_pd_annotations.txt +++ /dev/null @@ -1,1744 +0,0 @@ -SAMPLE_ID Entrez_Gene_Id cbp_driver cbp_driver_annotation -TCGA-A1-A0SD-01 116983 Putative_Passenger -TCGA-A1-A0SH-01 116983 Putative_Passenger -TCGA-A1-A0SM-01 116983 Putative_Passenger -TCGA-A1-A0SN-01 116983 Putative_Passenger -TCGA-A1-A0SO-01 116983 Putative_Passenger -TCGA-A2-A04R-01 116983 Putative_Passenger -TCGA-A2-A04U-01 116983 Putative_Passenger -TCGA-A2-A04Y-01 116983 Putative_Passenger -TCGA-A2-A0CS-01 116983 Putative_Passenger -TCGA-A2-A0CT-01 116983 Putative_Passenger -TCGA-A2-A0CW-01 116983 Putative_Passenger -TCGA-A2-A0D0-01 116983 Putative_Passenger -TCGA-A2-A0D4-01 116983 Putative_Passenger -TCGA-A2-A0EN-01 116983 Putative_Passenger -TCGA-A2-A0EO-01 116983 Putative_Passenger -TCGA-A2-A0ET-01 116983 Putative_Passenger -TCGA-A2-A0EY-01 116983 Putative_Passenger -TCGA-A2-A0T2-01 116983 Putative_Passenger -TCGA-A2-A0T4-01 116983 Putative_Passenger -TCGA-A2-A0T7-01 116983 Putative_Passenger -TCGA-A2-A0YF-01 116983 Putative_Passenger -TCGA-A2-A0YI-01 116983 Putative_Passenger -TCGA-A2-A0YJ-01 116983 Putative_Passenger -TCGA-A2-A1FX-01 116983 Putative_Passenger -TCGA-A2-A1G0-01 116983 Putative_Passenger -TCGA-A2-A25C-01 116983 Putative_Passenger -TCGA-A7-A13F-01 116983 Putative_Passenger -TCGA-A7-A26F-01 116983 Putative_Passenger -TCGA-A8-A06T-01 116983 Putative_Passenger -TCGA-A8-A06U-01 116983 Putative_Passenger -TCGA-A8-A06Y-01 116983 Putative_Passenger -TCGA-A8-A06Z-01 116983 Putative_Passenger -TCGA-A8-A075-01 116983 Putative_Passenger -TCGA-A8-A076-01 116983 Putative_Passenger -TCGA-A8-A079-01 116983 Putative_Passenger -TCGA-A8-A07B-01 116983 Putative_Passenger -TCGA-A8-A07F-01 116983 Putative_Passenger -TCGA-A8-A07L-01 116983 Putative_Passenger -TCGA-A8-A081-01 116983 Putative_Passenger -TCGA-A8-A084-01 116983 Putative_Passenger -TCGA-A8-A08I-01 116983 Putative_Passenger -TCGA-A8-A08J-01 116983 Putative_Passenger -TCGA-A8-A08O-01 116983 Putative_Passenger -TCGA-A8-A08S-01 116983 Putative_Passenger -TCGA-A8-A092-01 116983 Putative_Passenger -TCGA-A8-A099-01 116983 Putative_Passenger -TCGA-A8-A09A-01 116983 Putative_Passenger -TCGA-A8-A09C-01 116983 Putative_Passenger -TCGA-A8-A09E-01 116983 Putative_Passenger -TCGA-A8-A09I-01 116983 Putative_Passenger -TCGA-A8-A09M-01 116983 Putative_Passenger -TCGA-A8-A09R-01 116983 Putative_Passenger -TCGA-A8-A09W-01 116983 Putative_Passenger -TCGA-A8-A0A2-01 116983 Putative_Passenger -TCGA-A8-A0AB-01 116983 Putative_Passenger -TCGA-AN-A03X-01 116983 Putative_Passenger -TCGA-AN-A03Y-01 116983 Putative_Passenger -TCGA-AN-A041-01 116983 Putative_Passenger -TCGA-AN-A049-01 116983 Putative_Passenger -TCGA-AN-A04A-01 116983 Putative_Passenger -TCGA-AN-A04D-01 116983 Putative_Passenger -TCGA-AN-A0AJ-01 116983 Putative_Passenger -TCGA-AN-A0AK-01 116983 Putative_Passenger -TCGA-AN-A0AL-01 116983 Putative_Passenger -TCGA-AN-A0FD-01 116983 Putative_Passenger -TCGA-AN-A0FJ-01 116983 Putative_Passenger -TCGA-AN-A0FK-01 116983 Putative_Passenger -TCGA-AN-A0FL-01 116983 Putative_Passenger -TCGA-AN-A0FT-01 116983 Putative_Passenger -TCGA-AN-A0FV-01 116983 Putative_Passenger -TCGA-AN-A0FY-01 116983 Putative_Passenger -TCGA-AN-A0XT-01 116983 Putative_Passenger -TCGA-AN-A0XU-01 116983 Putative_Passenger -TCGA-AO-A03L-01 116983 Putative_Passenger -TCGA-AO-A03N-01 116983 Putative_Passenger -TCGA-AO-A0J3-01 116983 Putative_Passenger -TCGA-AO-A0J4-01 116983 Putative_Passenger -TCGA-AO-A0J6-01 116983 Putative_Passenger -TCGA-AO-A0J7-01 116983 Putative_Passenger -TCGA-AO-A0J9-01 116983 Putative_Passenger -TCGA-AO-A0JA-01 116983 Putative_Passenger -TCGA-AO-A0JE-01 116983 Putative_Passenger -TCGA-AO-A0JG-01 116983 Putative_Passenger -TCGA-AO-A0JI-01 116983 Putative_Passenger -TCGA-AO-A0JM-01 116983 Putative_Passenger -TCGA-AO-A129-01 116983 Putative_Passenger -TCGA-AO-A12F-01 116983 Putative_Passenger -TCGA-AO-A1KP-01 116983 Putative_Passenger -TCGA-AO-A1KQ-01 116983 Putative_Passenger -TCGA-AO-A1KS-01 116983 Putative_Passenger -TCGA-AO-A1KT-01 116983 Putative_Passenger -TCGA-AQ-A0Y5-01 116983 Putative_Passenger -TCGA-AR-A0TW-01 116983 Putative_Passenger -TCGA-AR-A0TY-01 116983 Putative_Passenger -TCGA-AR-A0TZ-01 116983 Putative_Passenger -TCGA-AR-A0U1-01 116983 Putative_Passenger -TCGA-AR-A0U3-01 116983 Putative_Passenger -TCGA-AR-A1AH-01 116983 Putative_Passenger -TCGA-AR-A1AW-01 116983 Putative_Passenger -TCGA-AR-A1AY-01 116983 Putative_Passenger -TCGA-AR-A24H-01 116983 Putative_Passenger -TCGA-AR-A24L-01 116983 Putative_Passenger -TCGA-AR-A24Q-01 116983 Putative_Passenger -TCGA-AR-A24R-01 116983 Putative_Passenger -TCGA-AR-A24S-01 116983 Putative_Passenger -TCGA-AR-A24T-01 116983 Putative_Passenger -TCGA-AR-A250-01 116983 Putative_Passenger -TCGA-AR-A251-01 116983 Putative_Passenger -TCGA-AR-A254-01 116983 Putative_Passenger -TCGA-AR-A255-01 116983 Putative_Passenger -TCGA-AR-A256-01 116983 Putative_Passenger -TCGA-B6-A0I9-01 116983 Putative_Passenger -TCGA-B6-A0IB-01 116983 Putative_Passenger -TCGA-B6-A0RE-01 116983 Putative_Passenger -TCGA-B6-A0RG-01 116983 Putative_Passenger -TCGA-B6-A0RL-01 116983 Putative_Passenger -TCGA-B6-A0RP-01 116983 Putative_Passenger -TCGA-B6-A0RS-01 116983 Putative_Passenger -TCGA-B6-A0RU-01 116983 Putative_Passenger -TCGA-B6-A0WV-01 116983 Putative_Passenger -TCGA-B6-A0WW-01 116983 Putative_Passenger -TCGA-B6-A0WX-01 116983 Putative_Passenger -TCGA-B6-A0X1-01 116983 Putative_Passenger -TCGA-B6-A1KC-01 116983 Putative_Passenger -TCGA-B6-A1KF-01 116983 Putative_Passenger -TCGA-B6-A1KN-01 116983 Putative_Passenger -TCGA-BH-A0AV-01 116983 Putative_Passenger -TCGA-BH-A0B4-01 116983 Putative_Passenger -TCGA-BH-A0B9-01 116983 Putative_Passenger -TCGA-BH-A0BP-01 116983 Putative_Passenger -TCGA-BH-A0BT-01 116983 Putative_Passenger -TCGA-BH-A0C1-01 116983 Putative_Passenger -TCGA-BH-A0C7-01 116983 Putative_Passenger -TCGA-BH-A0DD-01 116983 Putative_Passenger -TCGA-BH-A0DE-01 116983 Putative_Passenger -TCGA-BH-A0DG-01 116983 Putative_Passenger -TCGA-BH-A0DK-01 116983 Putative_Passenger -TCGA-BH-A0DL-01 116983 Putative_Passenger -TCGA-BH-A0DZ-01 116983 Putative_Passenger -TCGA-BH-A0E2-01 116983 Putative_Passenger -TCGA-BH-A0GY-01 116983 Putative_Passenger -TCGA-BH-A0GZ-01 116983 Putative_Passenger -TCGA-BH-A0H7-01 116983 Putative_Passenger -TCGA-BH-A0H9-01 116983 Putative_Passenger -TCGA-BH-A0HU-01 116983 Putative_Passenger -TCGA-BH-A0HW-01 116983 Putative_Passenger -TCGA-BH-A0W3-01 116983 Putative_Passenger -TCGA-BH-A18J-01 116983 Putative_Passenger -TCGA-BH-A18K-01 116983 Putative_Passenger -TCGA-BH-A18P-01 116983 Putative_Passenger -TCGA-BH-A18Q-01 116983 Putative_Passenger -TCGA-BH-A18R-01 116983 Putative_Passenger -TCGA-BH-A18U-01 116983 Putative_Passenger -TCGA-BH-A18V-01 116983 Putative_Passenger -TCGA-BH-A1EN-01 116983 Putative_Passenger -TCGA-BH-A1EV-01 116983 Putative_Passenger -TCGA-BH-A1EY-01 116983 Putative_Passenger -TCGA-BH-A1F2-01 116983 Putative_Passenger -TCGA-BH-A1F8-01 116983 Putative_Passenger -TCGA-BH-A1FM-01 116983 Putative_Passenger -TCGA-BH-A204-01 116983 Putative_Passenger -TCGA-C8-A12L-01 116983 Putative_Passenger -TCGA-C8-A12Z-01 116983 Putative_Passenger -TCGA-C8-A134-01 116983 Putative_Passenger -TCGA-C8-A138-01 116983 Putative_Passenger -TCGA-C8-A1HJ-01 116983 Putative_Passenger -TCGA-C8-A1HK-01 116983 Putative_Passenger -TCGA-C8-A1HL-01 116983 Putative_Passenger -TCGA-C8-A26W-01 116983 Putative_Passenger -TCGA-C8-A274-01 116983 Putative_Passenger -TCGA-C8-A27A-01 116983 Putative_Passenger -TCGA-D8-A13Y-01 116983 Putative_Passenger -TCGA-D8-A147-01 116983 Putative_Passenger -TCGA-D8-A1J8-01 116983 Putative_Passenger -TCGA-D8-A1JA-01 116983 Putative_Passenger -TCGA-D8-A1JC-01 116983 Putative_Passenger -TCGA-D8-A1JD-01 116983 Putative_Passenger -TCGA-D8-A1JE-01 116983 Putative_Passenger -TCGA-D8-A1JF-01 116983 Putative_Passenger -TCGA-D8-A1JI-01 116983 Putative_Passenger -TCGA-D8-A1JJ-01 116983 Putative_Passenger -TCGA-D8-A1JL-01 116983 Putative_Passenger -TCGA-D8-A1JM-01 116983 Putative_Passenger -TCGA-D8-A1X5-01 116983 Putative_Passenger -TCGA-D8-A1X8-01 116983 Putative_Passenger -TCGA-D8-A1XF-01 116983 Putative_Passenger -TCGA-D8-A1XG-01 116983 Putative_Passenger -TCGA-D8-A1XJ-01 116983 Putative_Passenger -TCGA-D8-A1XK-01 116983 Putative_Passenger -TCGA-D8-A1XL-01 116983 Putative_Passenger -TCGA-D8-A1XR-01 116983 Putative_Passenger -TCGA-D8-A1XS-01 116983 Putative_Passenger -TCGA-D8-A1XT-01 116983 Putative_Passenger -TCGA-D8-A1XU-01 116983 Putative_Passenger -TCGA-D8-A1XY-01 116983 Putative_Passenger -TCGA-D8-A1XZ-01 116983 Putative_Passenger -TCGA-D8-A1Y0-01 116983 Putative_Passenger -TCGA-D8-A1Y1-01 116983 Putative_Passenger -TCGA-D8-A27F-01 116983 Putative_Passenger -TCGA-D8-A27H-01 116983 Putative_Passenger -TCGA-E2-A107-01 116983 Putative_Passenger -TCGA-E2-A109-01 116983 Putative_Passenger -TCGA-E2-A10A-01 116983 Putative_Passenger -TCGA-E2-A10E-01 116983 Putative_Passenger -TCGA-E2-A14O-01 116983 Putative_Passenger -TCGA-E2-A14R-01 116983 Putative_Passenger -TCGA-E2-A14V-01 116983 Putative_Passenger -TCGA-E2-A150-01 116983 Putative_Passenger -TCGA-E2-A154-01 116983 Putative_Passenger -TCGA-E2-A158-01 116983 Putative_Passenger -TCGA-E2-A159-01 116983 Putative_Passenger -TCGA-E2-A15H-01 116983 Putative_Passenger -TCGA-E2-A15O-01 116983 Putative_Passenger -TCGA-E2-A15R-01 116983 Putative_Passenger -TCGA-E2-A1IE-01 116983 Putative_Passenger -TCGA-E2-A1IH-01 116983 Putative_Passenger -TCGA-E2-A1II-01 116983 Putative_Passenger -TCGA-E2-A1L7-01 116983 Putative_Passenger -TCGA-E2-A1L8-01 116983 Putative_Passenger -TCGA-E2-A1LA-01 116983 Putative_Passenger -TCGA-E2-A1LB-01 116983 Putative_Passenger -TCGA-E2-A1LG-01 116983 Putative_Passenger -TCGA-E2-A1LH-01 116983 Putative_Passenger -TCGA-E2-A1LL-01 116983 Putative_Passenger -TCGA-E9-A1N9-01 116983 Putative_Passenger -TCGA-E9-A1NC-01 116983 Putative_Passenger -TCGA-E9-A1NH-01 116983 Putative_Passenger -TCGA-E9-A1R2-01 116983 Putative_Passenger -TCGA-E9-A1R3-01 116983 Putative_Passenger -TCGA-E9-A1R5-01 116983 Putative_Passenger -TCGA-E9-A1R7-01 116983 Putative_Passenger -TCGA-E9-A1RC-01 116983 Putative_Passenger -TCGA-E9-A1RE-01 116983 Putative_Passenger -TCGA-E9-A1RF-01 116983 Putative_Passenger -TCGA-E9-A226-01 116983 Putative_Passenger -TCGA-E9-A229-01 116983 Putative_Passenger -TCGA-E9-A22A-01 116983 Putative_Passenger -TCGA-E9-A22G-01 116983 Putative_Passenger -TCGA-E9-A244-01 116983 Putative_Passenger -TCGA-E9-A247-01 116983 Putative_Passenger -TCGA-E9-A295-01 116983 Putative_Passenger -TCGA-EW-A1IW-01 116983 Putative_Passenger -TCGA-EW-A1J6-01 116983 Putative_Passenger -TCGA-EW-A1OV-01 116983 Putative_Passenger -TCGA-EW-A1OW-01 116983 Putative_Passenger -TCGA-EW-A1OY-01 116983 Putative_Passenger -TCGA-EW-A1PF-01 116983 Putative_Passenger -TCGA-EW-A2FW-01 116983 Putative_Passenger -TCGA-GI-A2C8-01 116983 Putative_Passenger -TCGA-A1-A0SD-01 375790 Putative_Passenger -TCGA-A1-A0SH-01 375790 Putative_Passenger -TCGA-A1-A0SM-01 375790 Putative_Passenger -TCGA-A1-A0SN-01 375790 Putative_Passenger -TCGA-A1-A0SO-01 375790 Putative_Passenger -TCGA-A2-A04R-01 375790 Putative_Passenger -TCGA-A2-A04U-01 375790 Putative_Passenger -TCGA-A2-A04Y-01 375790 Putative_Passenger -TCGA-A2-A0CS-01 375790 Putative_Passenger -TCGA-A2-A0CT-01 375790 Putative_Passenger -TCGA-A2-A0CW-01 375790 Putative_Passenger -TCGA-A2-A0D0-01 375790 Putative_Passenger -TCGA-A2-A0D4-01 375790 Putative_Passenger -TCGA-A2-A0EN-01 375790 Putative_Passenger -TCGA-A2-A0EO-01 375790 Putative_Passenger -TCGA-A2-A0ET-01 375790 Putative_Passenger -TCGA-A2-A0EY-01 375790 Putative_Passenger -TCGA-A2-A0T2-01 375790 Putative_Passenger -TCGA-A2-A0T4-01 375790 Putative_Passenger -TCGA-A2-A0T7-01 375790 Putative_Passenger -TCGA-A2-A0YF-01 375790 Putative_Passenger -TCGA-A2-A0YI-01 375790 Putative_Passenger -TCGA-A2-A0YJ-01 375790 Putative_Passenger -TCGA-A2-A1FX-01 375790 Putative_Passenger -TCGA-A2-A1G0-01 375790 Putative_Passenger -TCGA-A2-A25C-01 375790 Putative_Passenger -TCGA-A7-A13F-01 375790 Putative_Passenger -TCGA-A7-A26F-01 375790 Putative_Passenger -TCGA-A8-A06T-01 375790 Putative_Passenger -TCGA-A8-A06U-01 375790 Putative_Passenger -TCGA-A8-A06Y-01 375790 Putative_Passenger -TCGA-A8-A06Z-01 375790 Putative_Passenger -TCGA-A8-A075-01 375790 Putative_Passenger -TCGA-A8-A076-01 375790 Putative_Passenger -TCGA-A8-A079-01 375790 Putative_Passenger -TCGA-A8-A07B-01 375790 Putative_Passenger -TCGA-A8-A07F-01 375790 Putative_Passenger -TCGA-A8-A07L-01 375790 Putative_Passenger -TCGA-A8-A081-01 375790 Putative_Passenger -TCGA-A8-A084-01 375790 Putative_Passenger -TCGA-A8-A08I-01 375790 Putative_Passenger -TCGA-A8-A08J-01 375790 Putative_Passenger -TCGA-A8-A08O-01 375790 Putative_Passenger -TCGA-A8-A08S-01 375790 Putative_Passenger -TCGA-A8-A092-01 375790 Putative_Passenger -TCGA-A8-A099-01 375790 Putative_Passenger -TCGA-A8-A09A-01 375790 Putative_Passenger -TCGA-A8-A09C-01 375790 Putative_Passenger -TCGA-A8-A09E-01 375790 Putative_Passenger -TCGA-A8-A09I-01 375790 Putative_Passenger -TCGA-A8-A09M-01 375790 Putative_Passenger -TCGA-A8-A09R-01 375790 Putative_Passenger -TCGA-A8-A09W-01 375790 Putative_Passenger -TCGA-A8-A0A2-01 375790 Putative_Passenger -TCGA-A8-A0AB-01 375790 Putative_Passenger -TCGA-AN-A03X-01 375790 Putative_Passenger -TCGA-AN-A03Y-01 375790 Putative_Passenger -TCGA-AN-A041-01 375790 Putative_Passenger -TCGA-AN-A049-01 375790 Putative_Passenger -TCGA-AN-A04A-01 375790 Putative_Passenger -TCGA-AN-A04D-01 375790 Putative_Passenger -TCGA-AN-A0AJ-01 375790 Putative_Passenger -TCGA-AN-A0AK-01 375790 Putative_Passenger -TCGA-AN-A0AL-01 375790 Putative_Passenger -TCGA-AN-A0FD-01 375790 Putative_Passenger -TCGA-AN-A0FJ-01 375790 Putative_Passenger -TCGA-AN-A0FK-01 375790 Putative_Passenger -TCGA-AN-A0FL-01 375790 Putative_Passenger -TCGA-AN-A0FT-01 375790 Putative_Passenger -TCGA-AN-A0FV-01 375790 Putative_Passenger -TCGA-AN-A0FY-01 375790 Putative_Passenger -TCGA-AN-A0XT-01 375790 Putative_Passenger -TCGA-AN-A0XU-01 375790 Putative_Passenger -TCGA-AO-A03L-01 375790 Putative_Passenger -TCGA-AO-A03N-01 375790 Putative_Passenger -TCGA-AO-A0J3-01 375790 Putative_Passenger -TCGA-AO-A0J4-01 375790 Putative_Passenger -TCGA-AO-A0J6-01 375790 Putative_Passenger -TCGA-AO-A0J7-01 375790 Putative_Passenger -TCGA-AO-A0J9-01 375790 Putative_Passenger -TCGA-AO-A0JA-01 375790 Putative_Passenger -TCGA-AO-A0JE-01 375790 Putative_Passenger -TCGA-AO-A0JG-01 375790 Putative_Passenger -TCGA-AO-A0JI-01 375790 Putative_Passenger -TCGA-AO-A0JM-01 375790 Putative_Passenger -TCGA-AO-A129-01 375790 Putative_Passenger -TCGA-AO-A12F-01 375790 Putative_Passenger -TCGA-AO-A1KP-01 375790 Putative_Passenger -TCGA-AO-A1KQ-01 375790 Putative_Passenger -TCGA-AO-A1KS-01 375790 Putative_Passenger -TCGA-AO-A1KT-01 375790 Putative_Passenger -TCGA-AQ-A0Y5-01 375790 Putative_Passenger -TCGA-AR-A0TW-01 375790 Putative_Passenger -TCGA-AR-A0TY-01 375790 Putative_Passenger -TCGA-AR-A0TZ-01 375790 Putative_Passenger -TCGA-AR-A0U1-01 375790 Putative_Passenger -TCGA-AR-A0U3-01 375790 Putative_Passenger -TCGA-AR-A1AH-01 375790 Putative_Passenger -TCGA-AR-A1AW-01 375790 Putative_Passenger -TCGA-AR-A1AY-01 375790 Putative_Passenger -TCGA-AR-A24H-01 375790 Putative_Passenger -TCGA-AR-A24L-01 375790 Putative_Passenger -TCGA-AR-A24Q-01 375790 Putative_Passenger -TCGA-AR-A24R-01 375790 Putative_Passenger -TCGA-AR-A24S-01 375790 Putative_Passenger -TCGA-AR-A24T-01 375790 Putative_Passenger -TCGA-AR-A250-01 375790 Putative_Passenger -TCGA-AR-A251-01 375790 Putative_Passenger -TCGA-AR-A254-01 375790 Putative_Passenger -TCGA-AR-A255-01 375790 Putative_Passenger -TCGA-AR-A256-01 375790 Putative_Passenger -TCGA-B6-A0I9-01 375790 Putative_Passenger -TCGA-B6-A0IB-01 375790 Putative_Passenger -TCGA-B6-A0RE-01 375790 Putative_Passenger -TCGA-B6-A0RG-01 375790 Putative_Passenger -TCGA-B6-A0RL-01 375790 Putative_Passenger -TCGA-B6-A0RP-01 375790 Putative_Passenger -TCGA-B6-A0RS-01 375790 Putative_Passenger -TCGA-B6-A0RU-01 375790 Putative_Passenger -TCGA-B6-A0WV-01 375790 Putative_Passenger -TCGA-B6-A0WW-01 375790 Putative_Passenger -TCGA-B6-A0WX-01 375790 Putative_Passenger -TCGA-B6-A0X1-01 375790 Putative_Passenger -TCGA-B6-A1KC-01 375790 Putative_Passenger -TCGA-B6-A1KF-01 375790 Putative_Passenger -TCGA-B6-A1KN-01 375790 Putative_Passenger -TCGA-BH-A0AV-01 375790 Putative_Passenger -TCGA-BH-A0B4-01 375790 Putative_Passenger -TCGA-BH-A0B9-01 375790 Putative_Passenger -TCGA-BH-A0BP-01 375790 Putative_Passenger -TCGA-BH-A0BT-01 375790 Putative_Passenger -TCGA-BH-A0C1-01 375790 Putative_Passenger -TCGA-BH-A0C7-01 375790 Putative_Passenger -TCGA-BH-A0DD-01 375790 Putative_Passenger -TCGA-BH-A0DE-01 375790 Putative_Passenger -TCGA-BH-A0DG-01 375790 Putative_Passenger -TCGA-BH-A0DK-01 375790 Putative_Passenger -TCGA-BH-A0DL-01 375790 Putative_Passenger -TCGA-BH-A0DZ-01 375790 Putative_Passenger -TCGA-BH-A0E2-01 375790 Putative_Passenger -TCGA-BH-A0GY-01 375790 Putative_Passenger -TCGA-BH-A0GZ-01 375790 Putative_Passenger -TCGA-BH-A0H7-01 375790 Putative_Passenger -TCGA-BH-A0H9-01 375790 Putative_Passenger -TCGA-BH-A0HU-01 375790 Putative_Passenger -TCGA-BH-A0HW-01 375790 Putative_Passenger -TCGA-BH-A0W3-01 375790 Putative_Passenger -TCGA-BH-A18J-01 375790 Putative_Passenger -TCGA-BH-A18K-01 375790 Putative_Passenger -TCGA-BH-A18P-01 375790 Putative_Passenger -TCGA-BH-A18Q-01 375790 Putative_Passenger -TCGA-BH-A18R-01 375790 Putative_Passenger -TCGA-BH-A18U-01 375790 Putative_Passenger -TCGA-BH-A18V-01 375790 Putative_Passenger -TCGA-BH-A1EN-01 375790 Putative_Passenger -TCGA-BH-A1EV-01 375790 Putative_Passenger -TCGA-BH-A1EY-01 375790 Putative_Passenger -TCGA-BH-A1F2-01 375790 Putative_Passenger -TCGA-BH-A1F8-01 375790 Putative_Passenger -TCGA-BH-A1FM-01 375790 Putative_Passenger -TCGA-BH-A204-01 375790 Putative_Passenger -TCGA-C8-A12L-01 375790 Putative_Passenger -TCGA-C8-A12Z-01 375790 Putative_Passenger -TCGA-C8-A134-01 375790 Putative_Passenger -TCGA-C8-A138-01 375790 Putative_Passenger -TCGA-C8-A1HJ-01 375790 Putative_Passenger -TCGA-C8-A1HK-01 375790 Putative_Passenger -TCGA-C8-A1HL-01 375790 Putative_Passenger -TCGA-C8-A26W-01 375790 Putative_Passenger -TCGA-C8-A274-01 375790 Putative_Passenger -TCGA-C8-A27A-01 375790 Putative_Passenger -TCGA-D8-A13Y-01 375790 Putative_Passenger -TCGA-D8-A147-01 375790 Putative_Passenger -TCGA-D8-A1J8-01 375790 Putative_Passenger -TCGA-D8-A1JA-01 375790 Putative_Passenger -TCGA-D8-A1JC-01 375790 Putative_Passenger -TCGA-D8-A1JD-01 375790 Putative_Passenger -TCGA-D8-A1JE-01 375790 Putative_Passenger -TCGA-D8-A1JF-01 375790 Putative_Passenger -TCGA-D8-A1JI-01 375790 Putative_Passenger -TCGA-D8-A1JJ-01 375790 Putative_Passenger -TCGA-D8-A1JL-01 375790 Putative_Passenger -TCGA-D8-A1JM-01 375790 Putative_Passenger -TCGA-D8-A1X5-01 375790 Putative_Passenger -TCGA-D8-A1X8-01 375790 Putative_Passenger -TCGA-D8-A1XF-01 375790 Putative_Passenger -TCGA-D8-A1XG-01 375790 Putative_Passenger -TCGA-D8-A1XJ-01 375790 Putative_Passenger -TCGA-D8-A1XK-01 375790 Putative_Passenger -TCGA-D8-A1XL-01 375790 Putative_Passenger -TCGA-D8-A1XR-01 375790 Putative_Passenger -TCGA-D8-A1XS-01 375790 Putative_Passenger -TCGA-D8-A1XT-01 375790 Putative_Passenger -TCGA-D8-A1XU-01 375790 Putative_Passenger -TCGA-D8-A1XY-01 375790 Putative_Passenger -TCGA-D8-A1XZ-01 375790 Putative_Passenger -TCGA-D8-A1Y0-01 375790 Putative_Passenger -TCGA-D8-A1Y1-01 375790 Putative_Passenger -TCGA-D8-A27F-01 375790 Putative_Passenger -TCGA-D8-A27H-01 375790 Putative_Passenger -TCGA-E2-A107-01 375790 Putative_Passenger -TCGA-E2-A109-01 375790 Putative_Passenger -TCGA-E2-A10A-01 375790 Putative_Passenger -TCGA-E2-A10E-01 375790 Putative_Passenger -TCGA-E2-A14O-01 375790 Putative_Passenger -TCGA-E2-A14R-01 375790 Putative_Passenger -TCGA-E2-A14V-01 375790 Putative_Passenger -TCGA-E2-A150-01 375790 Putative_Passenger -TCGA-E2-A154-01 375790 Putative_Passenger -TCGA-E2-A158-01 375790 Putative_Passenger -TCGA-E2-A159-01 375790 Putative_Passenger -TCGA-E2-A15H-01 375790 Putative_Passenger -TCGA-E2-A15O-01 375790 Putative_Passenger -TCGA-E2-A15R-01 375790 Putative_Passenger -TCGA-E2-A1IE-01 375790 Putative_Passenger -TCGA-E2-A1IH-01 375790 Putative_Passenger -TCGA-E2-A1II-01 375790 Putative_Passenger -TCGA-E2-A1L7-01 375790 Putative_Passenger -TCGA-E2-A1L8-01 375790 Putative_Passenger -TCGA-E2-A1LA-01 375790 Putative_Passenger -TCGA-E2-A1LB-01 375790 Putative_Passenger -TCGA-E2-A1LG-01 375790 Putative_Passenger -TCGA-E2-A1LH-01 375790 Putative_Passenger -TCGA-E2-A1LL-01 375790 Putative_Passenger -TCGA-E9-A1N9-01 375790 Putative_Passenger -TCGA-E9-A1NC-01 375790 Putative_Passenger -TCGA-E9-A1NH-01 375790 Putative_Passenger -TCGA-E9-A1R2-01 375790 Putative_Passenger -TCGA-E9-A1R3-01 375790 Putative_Passenger -TCGA-E9-A1R5-01 375790 Putative_Passenger -TCGA-E9-A1R7-01 375790 Putative_Passenger -TCGA-E9-A1RC-01 375790 Putative_Passenger -TCGA-E9-A1RE-01 375790 Putative_Passenger -TCGA-E9-A1RF-01 375790 Putative_Passenger -TCGA-E9-A226-01 375790 Putative_Passenger -TCGA-E9-A229-01 375790 Putative_Passenger -TCGA-E9-A22A-01 375790 Putative_Passenger -TCGA-E9-A22G-01 375790 Putative_Passenger -TCGA-E9-A244-01 375790 Putative_Passenger -TCGA-E9-A247-01 375790 Putative_Passenger -TCGA-E9-A295-01 375790 Putative_Passenger -TCGA-EW-A1IW-01 375790 Putative_Passenger -TCGA-EW-A1J6-01 375790 Putative_Passenger -TCGA-EW-A1OV-01 375790 Putative_Passenger -TCGA-EW-A1OW-01 375790 Putative_Passenger -TCGA-EW-A1OY-01 375790 Putative_Passenger -TCGA-EW-A1PF-01 375790 Putative_Passenger -TCGA-EW-A2FW-01 375790 Putative_Passenger -TCGA-GI-A2C8-01 375790 Putative_Passenger -TCGA-A1-A0SD-01 55210 Putative_Passenger -TCGA-A1-A0SH-01 55210 Putative_Passenger -TCGA-A1-A0SM-01 55210 Putative_Passenger -TCGA-A1-A0SN-01 55210 Putative_Passenger -TCGA-A1-A0SO-01 55210 Putative_Passenger -TCGA-A2-A04R-01 55210 Putative_Passenger -TCGA-A2-A04U-01 55210 Putative_Passenger -TCGA-A2-A04Y-01 55210 Putative_Passenger -TCGA-A2-A0CS-01 55210 Putative_Passenger -TCGA-A2-A0CT-01 55210 Putative_Passenger -TCGA-A2-A0CW-01 55210 Putative_Passenger -TCGA-A2-A0D0-01 55210 Putative_Passenger -TCGA-A2-A0D4-01 55210 Putative_Passenger -TCGA-A2-A0EN-01 55210 Putative_Passenger -TCGA-A2-A0EO-01 55210 Putative_Passenger -TCGA-A2-A0ET-01 55210 Putative_Passenger -TCGA-A2-A0EY-01 55210 Putative_Passenger -TCGA-A2-A0T2-01 55210 Putative_Passenger -TCGA-A2-A0T4-01 55210 Putative_Passenger -TCGA-A2-A0T7-01 55210 Putative_Passenger -TCGA-A2-A0YF-01 55210 Putative_Passenger -TCGA-A2-A0YI-01 55210 Putative_Passenger -TCGA-A2-A0YJ-01 55210 Putative_Passenger -TCGA-A2-A1FX-01 55210 Putative_Passenger -TCGA-A2-A1G0-01 55210 Putative_Passenger -TCGA-A2-A25C-01 55210 Putative_Passenger -TCGA-A7-A13F-01 55210 Putative_Passenger -TCGA-A7-A26F-01 55210 Putative_Passenger -TCGA-A8-A06T-01 55210 Putative_Passenger -TCGA-A8-A06U-01 55210 Putative_Passenger -TCGA-A8-A06Y-01 55210 Putative_Passenger -TCGA-A8-A06Z-01 55210 Putative_Passenger -TCGA-A8-A075-01 55210 Putative_Passenger -TCGA-A8-A076-01 55210 Putative_Passenger -TCGA-A8-A079-01 55210 Putative_Passenger -TCGA-A8-A07B-01 55210 Putative_Passenger -TCGA-A8-A07F-01 55210 Putative_Passenger -TCGA-A8-A07L-01 55210 Putative_Passenger -TCGA-A8-A081-01 55210 Putative_Passenger -TCGA-A8-A084-01 55210 Putative_Passenger -TCGA-A8-A08I-01 55210 Putative_Passenger -TCGA-A8-A08J-01 55210 Putative_Passenger -TCGA-A8-A08O-01 55210 Putative_Passenger -TCGA-A8-A08S-01 55210 Putative_Passenger -TCGA-A8-A092-01 55210 Putative_Passenger -TCGA-A8-A099-01 55210 Putative_Passenger -TCGA-A8-A09A-01 55210 Putative_Passenger -TCGA-A8-A09C-01 55210 Putative_Passenger -TCGA-A8-A09E-01 55210 Putative_Passenger -TCGA-A8-A09I-01 55210 Putative_Passenger -TCGA-A8-A09M-01 55210 Putative_Passenger -TCGA-A8-A09R-01 55210 Putative_Passenger -TCGA-A8-A09W-01 55210 Putative_Passenger -TCGA-A8-A0A2-01 55210 Putative_Passenger -TCGA-A8-A0AB-01 55210 Putative_Passenger -TCGA-AN-A03X-01 55210 Putative_Passenger -TCGA-AN-A03Y-01 55210 Putative_Passenger -TCGA-AN-A041-01 55210 Putative_Passenger -TCGA-AN-A049-01 55210 Putative_Passenger -TCGA-AN-A04A-01 55210 Putative_Passenger -TCGA-AN-A04D-01 55210 Putative_Passenger -TCGA-AN-A0AJ-01 55210 Putative_Passenger -TCGA-AN-A0AK-01 55210 Putative_Passenger -TCGA-AN-A0AL-01 55210 Putative_Passenger -TCGA-AN-A0FD-01 55210 Putative_Passenger -TCGA-AN-A0FJ-01 55210 Putative_Passenger -TCGA-AN-A0FK-01 55210 Putative_Passenger -TCGA-AN-A0FL-01 55210 Putative_Passenger -TCGA-AN-A0FT-01 55210 Putative_Passenger -TCGA-AN-A0FV-01 55210 Putative_Passenger -TCGA-AN-A0FY-01 55210 Putative_Passenger -TCGA-AN-A0XT-01 55210 Putative_Passenger -TCGA-AN-A0XU-01 55210 Putative_Passenger -TCGA-AO-A03L-01 55210 Putative_Passenger -TCGA-AO-A03N-01 55210 Putative_Passenger -TCGA-AO-A0J3-01 55210 Putative_Passenger -TCGA-AO-A0J4-01 55210 Putative_Passenger -TCGA-AO-A0J6-01 55210 Putative_Passenger -TCGA-AO-A0J7-01 55210 Putative_Passenger -TCGA-AO-A0J9-01 55210 Putative_Passenger -TCGA-AO-A0JA-01 55210 Putative_Passenger -TCGA-AO-A0JE-01 55210 Putative_Passenger -TCGA-AO-A0JG-01 55210 Putative_Passenger -TCGA-AO-A0JI-01 55210 Putative_Passenger -TCGA-AO-A0JM-01 55210 Putative_Passenger -TCGA-AO-A129-01 55210 Putative_Passenger -TCGA-AO-A12F-01 55210 Putative_Passenger -TCGA-AO-A1KP-01 55210 Putative_Passenger -TCGA-AO-A1KQ-01 55210 Putative_Passenger -TCGA-AO-A1KS-01 55210 Putative_Passenger -TCGA-AO-A1KT-01 55210 Putative_Passenger -TCGA-AQ-A0Y5-01 55210 Putative_Passenger -TCGA-AR-A0TW-01 55210 Putative_Passenger -TCGA-AR-A0TY-01 55210 Putative_Passenger -TCGA-AR-A0TZ-01 55210 Putative_Passenger -TCGA-AR-A0U1-01 55210 Putative_Passenger -TCGA-AR-A0U3-01 55210 Putative_Passenger -TCGA-AR-A1AH-01 55210 Putative_Passenger -TCGA-AR-A1AW-01 55210 Putative_Passenger -TCGA-AR-A1AY-01 55210 Putative_Passenger -TCGA-AR-A24H-01 55210 Putative_Passenger -TCGA-AR-A24L-01 55210 Putative_Passenger -TCGA-AR-A24Q-01 55210 Putative_Passenger -TCGA-AR-A24R-01 55210 Putative_Passenger -TCGA-AR-A24S-01 55210 Putative_Passenger -TCGA-AR-A24T-01 55210 Putative_Passenger -TCGA-AR-A250-01 55210 Putative_Passenger -TCGA-AR-A251-01 55210 Putative_Passenger -TCGA-AR-A254-01 55210 Putative_Passenger -TCGA-AR-A255-01 55210 Putative_Passenger -TCGA-AR-A256-01 55210 Putative_Passenger -TCGA-B6-A0I9-01 55210 Putative_Passenger -TCGA-B6-A0IB-01 55210 Putative_Passenger -TCGA-B6-A0RE-01 55210 Putative_Passenger -TCGA-B6-A0RG-01 55210 Putative_Passenger -TCGA-B6-A0RL-01 55210 Putative_Passenger -TCGA-B6-A0RP-01 55210 Putative_Passenger -TCGA-B6-A0RS-01 55210 Putative_Passenger -TCGA-B6-A0RU-01 55210 Putative_Passenger -TCGA-B6-A0WV-01 55210 Putative_Passenger -TCGA-B6-A0WW-01 55210 Putative_Passenger -TCGA-B6-A0WX-01 55210 Putative_Passenger -TCGA-B6-A0X1-01 55210 Putative_Passenger -TCGA-B6-A1KC-01 55210 Putative_Passenger -TCGA-B6-A1KF-01 55210 Putative_Passenger -TCGA-B6-A1KN-01 55210 Putative_Passenger -TCGA-BH-A0AV-01 55210 Putative_Passenger -TCGA-BH-A0B4-01 55210 Putative_Passenger -TCGA-BH-A0B9-01 55210 Putative_Passenger -TCGA-BH-A0BP-01 55210 Putative_Passenger -TCGA-BH-A0BT-01 55210 Putative_Passenger -TCGA-BH-A0C1-01 55210 Putative_Passenger -TCGA-BH-A0C7-01 55210 Putative_Passenger -TCGA-BH-A0DD-01 55210 Putative_Passenger -TCGA-BH-A0DE-01 55210 Putative_Passenger -TCGA-BH-A0DG-01 55210 Putative_Passenger -TCGA-BH-A0DK-01 55210 Putative_Passenger -TCGA-BH-A0DL-01 55210 Putative_Passenger -TCGA-BH-A0DZ-01 55210 Putative_Passenger -TCGA-BH-A0E2-01 55210 Putative_Passenger -TCGA-BH-A0GY-01 55210 Putative_Passenger -TCGA-BH-A0GZ-01 55210 Putative_Passenger -TCGA-BH-A0H7-01 55210 Putative_Passenger -TCGA-BH-A0H9-01 55210 Putative_Passenger -TCGA-BH-A0HU-01 55210 Putative_Passenger -TCGA-BH-A0HW-01 55210 Putative_Passenger -TCGA-BH-A0W3-01 55210 Putative_Passenger -TCGA-BH-A18J-01 55210 Putative_Passenger -TCGA-BH-A18K-01 55210 Putative_Passenger -TCGA-BH-A18P-01 55210 Putative_Passenger -TCGA-BH-A18Q-01 55210 Putative_Passenger -TCGA-BH-A18R-01 55210 Putative_Passenger -TCGA-BH-A18U-01 55210 Putative_Passenger -TCGA-BH-A18V-01 55210 Putative_Passenger -TCGA-BH-A1EN-01 55210 Putative_Passenger -TCGA-BH-A1EV-01 55210 Putative_Passenger -TCGA-BH-A1EY-01 55210 Putative_Passenger -TCGA-BH-A1F2-01 55210 Putative_Passenger -TCGA-BH-A1F8-01 55210 Putative_Passenger -TCGA-BH-A1FM-01 55210 Putative_Passenger -TCGA-BH-A204-01 55210 Putative_Passenger -TCGA-C8-A12L-01 55210 Putative_Passenger -TCGA-C8-A12Z-01 55210 Putative_Passenger -TCGA-C8-A134-01 55210 Putative_Passenger -TCGA-C8-A138-01 55210 Putative_Passenger -TCGA-C8-A1HJ-01 55210 Putative_Passenger -TCGA-C8-A1HK-01 55210 Putative_Passenger -TCGA-C8-A1HL-01 55210 Putative_Passenger -TCGA-C8-A26W-01 55210 Putative_Passenger -TCGA-C8-A274-01 55210 Putative_Passenger -TCGA-C8-A27A-01 55210 Putative_Passenger -TCGA-D8-A13Y-01 55210 Putative_Passenger -TCGA-D8-A147-01 55210 Putative_Passenger -TCGA-D8-A1J8-01 55210 Putative_Passenger -TCGA-D8-A1JA-01 55210 Putative_Passenger -TCGA-D8-A1JC-01 55210 Putative_Passenger -TCGA-D8-A1JD-01 55210 Putative_Passenger -TCGA-D8-A1JE-01 55210 Putative_Passenger -TCGA-D8-A1JF-01 55210 Putative_Passenger -TCGA-D8-A1JI-01 55210 Putative_Passenger -TCGA-D8-A1JJ-01 55210 Putative_Passenger -TCGA-D8-A1JL-01 55210 Putative_Passenger -TCGA-D8-A1JM-01 55210 Putative_Passenger -TCGA-D8-A1X5-01 55210 Putative_Passenger -TCGA-D8-A1X8-01 55210 Putative_Passenger -TCGA-D8-A1XF-01 55210 Putative_Passenger -TCGA-D8-A1XG-01 55210 Putative_Passenger -TCGA-D8-A1XJ-01 55210 Putative_Passenger -TCGA-D8-A1XK-01 55210 Putative_Passenger -TCGA-D8-A1XL-01 55210 Putative_Passenger -TCGA-D8-A1XR-01 55210 Putative_Passenger -TCGA-D8-A1XS-01 55210 Putative_Passenger -TCGA-D8-A1XT-01 55210 Putative_Passenger -TCGA-D8-A1XU-01 55210 Putative_Passenger -TCGA-D8-A1XY-01 55210 Putative_Passenger -TCGA-D8-A1XZ-01 55210 Putative_Passenger -TCGA-D8-A1Y0-01 55210 Putative_Passenger -TCGA-D8-A1Y1-01 55210 Putative_Passenger -TCGA-D8-A27F-01 55210 Putative_Passenger -TCGA-D8-A27H-01 55210 Putative_Passenger -TCGA-E2-A107-01 55210 Putative_Passenger -TCGA-E2-A109-01 55210 Putative_Passenger -TCGA-E2-A10A-01 55210 Putative_Passenger -TCGA-E2-A10E-01 55210 Putative_Passenger -TCGA-E2-A14O-01 55210 Putative_Passenger -TCGA-E2-A14R-01 55210 Putative_Passenger -TCGA-E2-A14V-01 55210 Putative_Passenger -TCGA-E2-A150-01 55210 Putative_Passenger -TCGA-E2-A154-01 55210 Putative_Passenger -TCGA-E2-A158-01 55210 Putative_Passenger -TCGA-E2-A159-01 55210 Putative_Passenger -TCGA-E2-A15H-01 55210 Putative_Passenger -TCGA-E2-A15O-01 55210 Putative_Passenger -TCGA-E2-A15R-01 55210 Putative_Passenger -TCGA-E2-A1IE-01 55210 Putative_Passenger -TCGA-E2-A1IH-01 55210 Putative_Passenger -TCGA-E2-A1II-01 55210 Putative_Passenger -TCGA-E2-A1L7-01 55210 Putative_Passenger -TCGA-E2-A1L8-01 55210 Putative_Passenger -TCGA-E2-A1LA-01 55210 Putative_Passenger -TCGA-E2-A1LB-01 55210 Putative_Passenger -TCGA-E2-A1LG-01 55210 Putative_Passenger -TCGA-E2-A1LH-01 55210 Putative_Passenger -TCGA-E2-A1LL-01 55210 Putative_Passenger -TCGA-E9-A1N9-01 55210 Putative_Passenger -TCGA-E9-A1NC-01 55210 Putative_Passenger -TCGA-E9-A1NH-01 55210 Putative_Passenger -TCGA-E9-A1R2-01 55210 Putative_Passenger -TCGA-E9-A1R3-01 55210 Putative_Passenger -TCGA-E9-A1R5-01 55210 Putative_Passenger -TCGA-E9-A1R7-01 55210 Putative_Passenger -TCGA-E9-A1RC-01 55210 Putative_Passenger -TCGA-E9-A1RE-01 55210 Putative_Passenger -TCGA-E9-A1RF-01 55210 Putative_Passenger -TCGA-E9-A226-01 55210 Putative_Passenger -TCGA-E9-A229-01 55210 Putative_Passenger -TCGA-E9-A22A-01 55210 Putative_Passenger -TCGA-E9-A22G-01 55210 Putative_Passenger -TCGA-E9-A244-01 55210 Putative_Passenger -TCGA-E9-A247-01 55210 Putative_Passenger -TCGA-E9-A295-01 55210 Putative_Passenger -TCGA-EW-A1IW-01 55210 Putative_Passenger -TCGA-EW-A1J6-01 55210 Putative_Passenger -TCGA-EW-A1OV-01 55210 Putative_Passenger -TCGA-EW-A1OW-01 55210 Putative_Passenger -TCGA-EW-A1OY-01 55210 Putative_Passenger -TCGA-EW-A1PF-01 55210 Putative_Passenger -TCGA-EW-A2FW-01 55210 Putative_Passenger -TCGA-GI-A2C8-01 55210 Putative_Passenger -TCGA-A1-A0SD-01 83858 Putative_Passenger -TCGA-A1-A0SH-01 83858 Putative_Passenger -TCGA-A1-A0SM-01 83858 Putative_Passenger -TCGA-A1-A0SN-01 83858 Putative_Passenger -TCGA-A1-A0SO-01 83858 Putative_Passenger -TCGA-A2-A04R-01 83858 Putative_Passenger -TCGA-A2-A04U-01 83858 Putative_Passenger -TCGA-A2-A04Y-01 83858 Putative_Passenger -TCGA-A2-A0CS-01 83858 Putative_Passenger -TCGA-A2-A0CT-01 83858 Putative_Passenger -TCGA-A2-A0CW-01 83858 Putative_Passenger -TCGA-A2-A0D0-01 83858 Putative_Passenger -TCGA-A2-A0D4-01 83858 Putative_Passenger -TCGA-A2-A0EN-01 83858 Putative_Passenger -TCGA-A2-A0EO-01 83858 Putative_Passenger -TCGA-A2-A0ET-01 83858 Putative_Passenger -TCGA-A2-A0EY-01 83858 Putative_Passenger -TCGA-A2-A0T2-01 83858 Putative_Passenger -TCGA-A2-A0T4-01 83858 Putative_Passenger -TCGA-A2-A0T7-01 83858 Putative_Passenger -TCGA-A2-A0YF-01 83858 Putative_Passenger -TCGA-A2-A0YI-01 83858 Putative_Passenger -TCGA-A2-A0YJ-01 83858 Putative_Passenger -TCGA-A2-A1FX-01 83858 Putative_Passenger -TCGA-A2-A1G0-01 83858 Putative_Passenger -TCGA-A2-A25C-01 83858 Putative_Passenger -TCGA-A7-A13F-01 83858 Putative_Passenger -TCGA-A7-A26F-01 83858 Putative_Passenger -TCGA-A8-A06T-01 83858 Putative_Passenger -TCGA-A8-A06U-01 83858 Putative_Passenger -TCGA-A8-A06Y-01 83858 Putative_Passenger -TCGA-A8-A06Z-01 83858 Putative_Passenger -TCGA-A8-A075-01 83858 Putative_Passenger -TCGA-A8-A076-01 83858 Putative_Passenger -TCGA-A8-A079-01 83858 Putative_Passenger -TCGA-A8-A07B-01 83858 Putative_Passenger -TCGA-A8-A07F-01 83858 Putative_Passenger -TCGA-A8-A07L-01 83858 Putative_Passenger -TCGA-A8-A081-01 83858 Putative_Passenger -TCGA-A8-A084-01 83858 Putative_Passenger -TCGA-A8-A08I-01 83858 Putative_Passenger -TCGA-A8-A08J-01 83858 Putative_Passenger -TCGA-A8-A08O-01 83858 Putative_Passenger -TCGA-A8-A08S-01 83858 Putative_Passenger -TCGA-A8-A092-01 83858 Putative_Passenger -TCGA-A8-A099-01 83858 Putative_Passenger -TCGA-A8-A09A-01 83858 Putative_Passenger -TCGA-A8-A09C-01 83858 Putative_Passenger -TCGA-A8-A09E-01 83858 Putative_Passenger -TCGA-A8-A09I-01 83858 Putative_Passenger -TCGA-A8-A09M-01 83858 Putative_Passenger -TCGA-A8-A09R-01 83858 Putative_Passenger -TCGA-A8-A09W-01 83858 Putative_Passenger -TCGA-A8-A0A2-01 83858 Putative_Passenger -TCGA-A8-A0AB-01 83858 Putative_Passenger -TCGA-AN-A03X-01 83858 Putative_Passenger -TCGA-AN-A03Y-01 83858 Putative_Passenger -TCGA-AN-A041-01 83858 Putative_Passenger -TCGA-AN-A049-01 83858 Putative_Passenger -TCGA-AN-A04A-01 83858 Putative_Passenger -TCGA-AN-A04D-01 83858 Putative_Passenger -TCGA-AN-A0AJ-01 83858 Putative_Passenger -TCGA-AN-A0AK-01 83858 Putative_Passenger -TCGA-AN-A0AL-01 83858 Putative_Passenger -TCGA-AN-A0FD-01 83858 Putative_Passenger -TCGA-AN-A0FJ-01 83858 Putative_Passenger -TCGA-AN-A0FK-01 83858 Putative_Passenger -TCGA-AN-A0FL-01 83858 Putative_Passenger -TCGA-AN-A0FT-01 83858 Putative_Passenger -TCGA-AN-A0FV-01 83858 Putative_Passenger -TCGA-AN-A0FY-01 83858 Putative_Passenger -TCGA-AN-A0XT-01 83858 Putative_Passenger -TCGA-AN-A0XU-01 83858 Putative_Passenger -TCGA-AO-A03L-01 83858 Putative_Passenger -TCGA-AO-A03N-01 83858 Putative_Passenger -TCGA-AO-A0J3-01 83858 Putative_Passenger -TCGA-AO-A0J4-01 83858 Putative_Passenger -TCGA-AO-A0J6-01 83858 Putative_Passenger -TCGA-AO-A0J7-01 83858 Putative_Passenger -TCGA-AO-A0J9-01 83858 Putative_Passenger -TCGA-AO-A0JA-01 83858 Putative_Passenger -TCGA-AO-A0JE-01 83858 Putative_Passenger -TCGA-AO-A0JG-01 83858 Putative_Passenger -TCGA-AO-A0JI-01 83858 Putative_Passenger -TCGA-AO-A0JM-01 83858 Putative_Passenger -TCGA-AO-A129-01 83858 Putative_Passenger -TCGA-AO-A12F-01 83858 Putative_Passenger -TCGA-AO-A1KP-01 83858 Putative_Passenger -TCGA-AO-A1KQ-01 83858 Putative_Passenger -TCGA-AO-A1KS-01 83858 Putative_Passenger -TCGA-AO-A1KT-01 83858 Putative_Passenger -TCGA-AQ-A0Y5-01 83858 Putative_Passenger -TCGA-AR-A0TW-01 83858 Putative_Passenger -TCGA-AR-A0TY-01 83858 Putative_Passenger -TCGA-AR-A0TZ-01 83858 Putative_Passenger -TCGA-AR-A0U1-01 83858 Putative_Passenger -TCGA-AR-A0U3-01 83858 Putative_Passenger -TCGA-AR-A1AH-01 83858 Putative_Passenger -TCGA-AR-A1AW-01 83858 Putative_Passenger -TCGA-AR-A1AY-01 83858 Putative_Passenger -TCGA-AR-A24H-01 83858 Putative_Passenger -TCGA-AR-A24L-01 83858 Putative_Passenger -TCGA-AR-A24Q-01 83858 Putative_Passenger -TCGA-AR-A24R-01 83858 Putative_Passenger -TCGA-AR-A24S-01 83858 Putative_Passenger -TCGA-AR-A24T-01 83858 Putative_Passenger -TCGA-AR-A250-01 83858 Putative_Passenger -TCGA-AR-A251-01 83858 Putative_Passenger -TCGA-AR-A254-01 83858 Putative_Passenger -TCGA-AR-A255-01 83858 Putative_Passenger -TCGA-AR-A256-01 83858 Putative_Passenger -TCGA-B6-A0I9-01 83858 Putative_Passenger -TCGA-B6-A0IB-01 83858 Putative_Passenger -TCGA-B6-A0RE-01 83858 Putative_Passenger -TCGA-B6-A0RG-01 83858 Putative_Passenger -TCGA-B6-A0RL-01 83858 Putative_Passenger -TCGA-B6-A0RP-01 83858 Putative_Passenger -TCGA-B6-A0RS-01 83858 Putative_Passenger -TCGA-B6-A0RU-01 83858 Putative_Passenger -TCGA-B6-A0WV-01 83858 Putative_Passenger -TCGA-B6-A0WW-01 83858 Putative_Passenger -TCGA-B6-A0WX-01 83858 Putative_Passenger -TCGA-B6-A0X1-01 83858 Putative_Passenger -TCGA-B6-A1KC-01 83858 Putative_Passenger -TCGA-B6-A1KF-01 83858 Putative_Passenger -TCGA-B6-A1KN-01 83858 Putative_Passenger -TCGA-BH-A0AV-01 83858 Putative_Passenger -TCGA-BH-A0B4-01 83858 Putative_Passenger -TCGA-BH-A0B9-01 83858 Putative_Passenger -TCGA-BH-A0BP-01 83858 Putative_Passenger -TCGA-BH-A0BT-01 83858 Putative_Passenger -TCGA-BH-A0C1-01 83858 Putative_Passenger -TCGA-BH-A0C7-01 83858 Putative_Passenger -TCGA-BH-A0DD-01 83858 Putative_Passenger -TCGA-BH-A0DE-01 83858 Putative_Passenger -TCGA-BH-A0DG-01 83858 Putative_Passenger -TCGA-BH-A0DK-01 83858 Putative_Passenger -TCGA-BH-A0DL-01 83858 Putative_Passenger -TCGA-BH-A0DZ-01 83858 Putative_Passenger -TCGA-BH-A0E2-01 83858 Putative_Passenger -TCGA-BH-A0GY-01 83858 Putative_Passenger -TCGA-BH-A0GZ-01 83858 Putative_Passenger -TCGA-BH-A0H7-01 83858 Putative_Passenger -TCGA-BH-A0H9-01 83858 Putative_Passenger -TCGA-BH-A0HU-01 83858 Putative_Passenger -TCGA-BH-A0HW-01 83858 Putative_Passenger -TCGA-BH-A0W3-01 83858 Putative_Passenger -TCGA-BH-A18J-01 83858 Putative_Passenger -TCGA-BH-A18K-01 83858 Putative_Passenger -TCGA-BH-A18P-01 83858 Putative_Passenger -TCGA-BH-A18Q-01 83858 Putative_Passenger -TCGA-BH-A18R-01 83858 Putative_Passenger -TCGA-BH-A18U-01 83858 Putative_Passenger -TCGA-BH-A18V-01 83858 Putative_Passenger -TCGA-BH-A1EN-01 83858 Putative_Passenger -TCGA-BH-A1EV-01 83858 Putative_Passenger -TCGA-BH-A1EY-01 83858 Putative_Passenger -TCGA-BH-A1F2-01 83858 Putative_Passenger -TCGA-BH-A1F8-01 83858 Putative_Passenger -TCGA-BH-A1FM-01 83858 Putative_Passenger -TCGA-BH-A204-01 83858 Putative_Passenger -TCGA-C8-A12L-01 83858 Putative_Passenger -TCGA-C8-A12Z-01 83858 Putative_Passenger -TCGA-C8-A134-01 83858 Putative_Passenger -TCGA-C8-A138-01 83858 Putative_Passenger -TCGA-C8-A1HJ-01 83858 Putative_Passenger -TCGA-C8-A1HK-01 83858 Putative_Passenger -TCGA-C8-A1HL-01 83858 Putative_Passenger -TCGA-C8-A26W-01 83858 Putative_Passenger -TCGA-C8-A274-01 83858 Putative_Passenger -TCGA-C8-A27A-01 83858 Putative_Passenger -TCGA-D8-A13Y-01 83858 Putative_Passenger -TCGA-D8-A147-01 83858 Putative_Passenger -TCGA-D8-A1J8-01 83858 Putative_Passenger -TCGA-D8-A1JA-01 83858 Putative_Passenger -TCGA-D8-A1JC-01 83858 Putative_Passenger -TCGA-D8-A1JD-01 83858 Putative_Passenger -TCGA-D8-A1JE-01 83858 Putative_Passenger -TCGA-D8-A1JF-01 83858 Putative_Passenger -TCGA-D8-A1JI-01 83858 Putative_Passenger -TCGA-D8-A1JJ-01 83858 Putative_Passenger -TCGA-D8-A1JL-01 83858 Putative_Passenger -TCGA-D8-A1JM-01 83858 Putative_Passenger -TCGA-D8-A1X5-01 83858 Putative_Passenger -TCGA-D8-A1X8-01 83858 Putative_Passenger -TCGA-D8-A1XF-01 83858 Putative_Passenger -TCGA-D8-A1XG-01 83858 Putative_Passenger -TCGA-D8-A1XJ-01 83858 Putative_Passenger -TCGA-D8-A1XK-01 83858 Putative_Passenger -TCGA-D8-A1XL-01 83858 Putative_Passenger -TCGA-D8-A1XR-01 83858 Putative_Passenger -TCGA-D8-A1XS-01 83858 Putative_Passenger -TCGA-D8-A1XT-01 83858 Putative_Passenger -TCGA-D8-A1XU-01 83858 Putative_Passenger -TCGA-D8-A1XY-01 83858 Putative_Passenger -TCGA-D8-A1XZ-01 83858 Putative_Passenger -TCGA-D8-A1Y0-01 83858 Putative_Passenger -TCGA-D8-A1Y1-01 83858 Putative_Passenger -TCGA-D8-A27F-01 83858 Putative_Passenger -TCGA-D8-A27H-01 83858 Putative_Passenger -TCGA-E2-A107-01 83858 Putative_Passenger -TCGA-E2-A109-01 83858 Putative_Passenger -TCGA-E2-A10A-01 83858 Putative_Passenger -TCGA-E2-A10E-01 83858 Putative_Passenger -TCGA-E2-A14O-01 83858 Putative_Passenger -TCGA-E2-A14R-01 83858 Putative_Passenger -TCGA-E2-A14V-01 83858 Putative_Passenger -TCGA-E2-A150-01 83858 Putative_Passenger -TCGA-E2-A154-01 83858 Putative_Passenger -TCGA-E2-A158-01 83858 Putative_Passenger -TCGA-E2-A159-01 83858 Putative_Passenger -TCGA-E2-A15H-01 83858 Putative_Passenger -TCGA-E2-A15O-01 83858 Putative_Passenger -TCGA-E2-A15R-01 83858 Putative_Passenger -TCGA-E2-A1IE-01 83858 Putative_Passenger -TCGA-E2-A1IH-01 83858 Putative_Passenger -TCGA-E2-A1II-01 83858 Putative_Passenger -TCGA-E2-A1L7-01 83858 Putative_Passenger -TCGA-E2-A1L8-01 83858 Putative_Passenger -TCGA-E2-A1LA-01 83858 Putative_Passenger -TCGA-E2-A1LB-01 83858 Putative_Passenger -TCGA-E2-A1LG-01 83858 Putative_Passenger -TCGA-E2-A1LH-01 83858 Putative_Passenger -TCGA-E2-A1LL-01 83858 Putative_Passenger -TCGA-E9-A1N9-01 83858 Putative_Passenger -TCGA-E9-A1NC-01 83858 Putative_Passenger -TCGA-E9-A1NH-01 83858 Putative_Passenger -TCGA-E9-A1R2-01 83858 Putative_Passenger -TCGA-E9-A1R3-01 83858 Putative_Passenger -TCGA-E9-A1R5-01 83858 Putative_Passenger -TCGA-E9-A1R7-01 83858 Putative_Passenger -TCGA-E9-A1RC-01 83858 Putative_Passenger -TCGA-E9-A1RE-01 83858 Putative_Passenger -TCGA-E9-A1RF-01 83858 Putative_Passenger -TCGA-E9-A226-01 83858 Putative_Passenger -TCGA-E9-A229-01 83858 Putative_Passenger -TCGA-E9-A22A-01 83858 Putative_Passenger -TCGA-E9-A22G-01 83858 Putative_Passenger -TCGA-E9-A244-01 83858 Putative_Passenger -TCGA-E9-A247-01 83858 Putative_Passenger -TCGA-E9-A295-01 83858 Putative_Passenger -TCGA-EW-A1IW-01 83858 Putative_Passenger -TCGA-EW-A1J6-01 83858 Putative_Passenger -TCGA-EW-A1OV-01 83858 Putative_Passenger -TCGA-EW-A1OW-01 83858 Putative_Passenger -TCGA-EW-A1OY-01 83858 Putative_Passenger -TCGA-EW-A1PF-01 83858 Putative_Passenger -TCGA-EW-A2FW-01 83858 Putative_Passenger -TCGA-GI-A2C8-01 83858 Putative_Passenger -TCGA-A1-A0SD-01 219293 Putative_Passenger -TCGA-A1-A0SH-01 219293 Putative_Passenger -TCGA-A1-A0SM-01 219293 Putative_Passenger -TCGA-A1-A0SN-01 219293 Putative_Passenger -TCGA-A1-A0SO-01 219293 Putative_Passenger -TCGA-A2-A04R-01 219293 Putative_Passenger -TCGA-A2-A04U-01 219293 Putative_Passenger -TCGA-A2-A04Y-01 219293 Putative_Passenger -TCGA-A2-A0CS-01 219293 Putative_Passenger -TCGA-A2-A0CT-01 219293 Putative_Passenger -TCGA-A2-A0CW-01 219293 Putative_Passenger -TCGA-A2-A0D0-01 219293 Putative_Passenger -TCGA-A2-A0D4-01 219293 Putative_Passenger -TCGA-A2-A0EN-01 219293 Putative_Passenger -TCGA-A2-A0EO-01 219293 Putative_Passenger -TCGA-A2-A0ET-01 219293 Putative_Passenger -TCGA-A2-A0EY-01 219293 Putative_Passenger -TCGA-A2-A0T2-01 219293 Putative_Passenger -TCGA-A2-A0T4-01 219293 Putative_Passenger -TCGA-A2-A0T7-01 219293 Putative_Passenger -TCGA-A2-A0YF-01 219293 Putative_Passenger -TCGA-A2-A0YI-01 219293 Putative_Passenger -TCGA-A2-A0YJ-01 219293 Putative_Passenger -TCGA-A2-A1FX-01 219293 Putative_Passenger -TCGA-A2-A1G0-01 219293 Putative_Passenger -TCGA-A2-A25C-01 219293 Putative_Passenger -TCGA-A7-A13F-01 219293 Putative_Passenger -TCGA-A7-A26F-01 219293 Putative_Passenger -TCGA-A8-A06T-01 219293 Putative_Passenger -TCGA-A8-A06U-01 219293 Putative_Passenger -TCGA-A8-A06Y-01 219293 Putative_Passenger -TCGA-A8-A06Z-01 219293 Putative_Passenger -TCGA-A8-A075-01 219293 Putative_Passenger -TCGA-A8-A076-01 219293 Putative_Passenger -TCGA-A8-A079-01 219293 Putative_Passenger -TCGA-A8-A07B-01 219293 Putative_Passenger -TCGA-A8-A07F-01 219293 Putative_Passenger -TCGA-A8-A07L-01 219293 Putative_Passenger -TCGA-A8-A081-01 219293 Putative_Passenger -TCGA-A8-A084-01 219293 Putative_Passenger -TCGA-A8-A08I-01 219293 Putative_Passenger -TCGA-A8-A08J-01 219293 Putative_Passenger -TCGA-A8-A08O-01 219293 Putative_Passenger -TCGA-A8-A08S-01 219293 Putative_Passenger -TCGA-A8-A092-01 219293 Putative_Passenger -TCGA-A8-A099-01 219293 Putative_Passenger -TCGA-A8-A09A-01 219293 Putative_Passenger -TCGA-A8-A09C-01 219293 Putative_Passenger -TCGA-A8-A09E-01 219293 Putative_Passenger -TCGA-A8-A09I-01 219293 Putative_Passenger -TCGA-A8-A09M-01 219293 Putative_Passenger -TCGA-A8-A09R-01 219293 Putative_Passenger -TCGA-A8-A09W-01 219293 Putative_Passenger -TCGA-A8-A0A2-01 219293 Putative_Passenger -TCGA-A8-A0AB-01 219293 Putative_Passenger -TCGA-AN-A03X-01 219293 Putative_Passenger -TCGA-AN-A03Y-01 219293 Putative_Passenger -TCGA-AN-A041-01 219293 Putative_Passenger -TCGA-AN-A049-01 219293 Putative_Passenger -TCGA-AN-A04A-01 219293 Putative_Passenger -TCGA-AN-A04D-01 219293 Putative_Passenger -TCGA-AN-A0AJ-01 219293 Putative_Passenger -TCGA-AN-A0AK-01 219293 Putative_Passenger -TCGA-AN-A0AL-01 219293 Putative_Passenger -TCGA-AN-A0FD-01 219293 Putative_Passenger -TCGA-AN-A0FJ-01 219293 Putative_Passenger -TCGA-AN-A0FK-01 219293 Putative_Passenger -TCGA-AN-A0FL-01 219293 Putative_Passenger -TCGA-AN-A0FT-01 219293 Putative_Passenger -TCGA-AN-A0FV-01 219293 Putative_Passenger -TCGA-AN-A0FY-01 219293 Putative_Passenger -TCGA-AN-A0XT-01 219293 Putative_Passenger -TCGA-AN-A0XU-01 219293 Putative_Passenger -TCGA-AO-A03L-01 219293 Putative_Passenger -TCGA-AO-A03N-01 219293 Putative_Passenger -TCGA-AO-A0J3-01 219293 Putative_Passenger -TCGA-AO-A0J4-01 219293 Putative_Passenger -TCGA-AO-A0J6-01 219293 Putative_Passenger -TCGA-AO-A0J7-01 219293 Putative_Passenger -TCGA-AO-A0J9-01 219293 Putative_Passenger -TCGA-AO-A0JA-01 219293 Putative_Passenger -TCGA-AO-A0JE-01 219293 Putative_Passenger -TCGA-AO-A0JG-01 219293 Putative_Passenger -TCGA-AO-A0JI-01 219293 Putative_Passenger -TCGA-AO-A0JM-01 219293 Putative_Passenger -TCGA-AO-A129-01 219293 Putative_Passenger -TCGA-AO-A12F-01 219293 Putative_Passenger -TCGA-AO-A1KP-01 219293 Putative_Passenger -TCGA-AO-A1KQ-01 219293 Putative_Passenger -TCGA-AO-A1KS-01 219293 Putative_Passenger -TCGA-AO-A1KT-01 219293 Putative_Passenger -TCGA-AQ-A0Y5-01 219293 Putative_Passenger -TCGA-AR-A0TW-01 219293 Putative_Passenger -TCGA-AR-A0TY-01 219293 Putative_Passenger -TCGA-AR-A0TZ-01 219293 Putative_Passenger -TCGA-AR-A0U1-01 219293 Putative_Passenger -TCGA-AR-A0U3-01 219293 Putative_Passenger -TCGA-AR-A1AH-01 219293 Putative_Passenger -TCGA-AR-A1AW-01 219293 Putative_Passenger -TCGA-AR-A1AY-01 219293 Putative_Passenger -TCGA-AR-A24H-01 219293 Putative_Passenger -TCGA-AR-A24L-01 219293 Putative_Passenger -TCGA-AR-A24Q-01 219293 Putative_Passenger -TCGA-AR-A24R-01 219293 Putative_Passenger -TCGA-AR-A24S-01 219293 Putative_Passenger -TCGA-AR-A24T-01 219293 Putative_Passenger -TCGA-AR-A250-01 219293 Putative_Passenger -TCGA-AR-A251-01 219293 Putative_Passenger -TCGA-AR-A254-01 219293 Putative_Passenger -TCGA-AR-A255-01 219293 Putative_Passenger -TCGA-AR-A256-01 219293 Putative_Passenger -TCGA-B6-A0I9-01 219293 Putative_Passenger -TCGA-B6-A0IB-01 219293 Putative_Passenger -TCGA-B6-A0RE-01 219293 Putative_Passenger -TCGA-B6-A0RG-01 219293 Putative_Passenger -TCGA-B6-A0RL-01 219293 Putative_Passenger -TCGA-B6-A0RP-01 219293 Putative_Passenger -TCGA-B6-A0RS-01 219293 Putative_Passenger -TCGA-B6-A0RU-01 219293 Putative_Passenger -TCGA-B6-A0WV-01 219293 Putative_Passenger -TCGA-B6-A0WW-01 219293 Putative_Passenger -TCGA-B6-A0WX-01 219293 Putative_Passenger -TCGA-B6-A0X1-01 219293 Putative_Passenger -TCGA-B6-A1KC-01 219293 Putative_Passenger -TCGA-B6-A1KF-01 219293 Putative_Passenger -TCGA-B6-A1KN-01 219293 Putative_Passenger -TCGA-BH-A0AV-01 219293 Putative_Passenger -TCGA-BH-A0B4-01 219293 Putative_Passenger -TCGA-BH-A0B9-01 219293 Putative_Passenger -TCGA-BH-A0BP-01 219293 Putative_Passenger -TCGA-BH-A0BT-01 219293 Putative_Passenger -TCGA-BH-A0C1-01 219293 Putative_Passenger -TCGA-BH-A0C7-01 219293 Putative_Passenger -TCGA-BH-A0DD-01 219293 Putative_Passenger -TCGA-BH-A0DE-01 219293 Putative_Passenger -TCGA-BH-A0DG-01 219293 Putative_Passenger -TCGA-BH-A0DK-01 219293 Putative_Passenger -TCGA-BH-A0DL-01 219293 Putative_Passenger -TCGA-BH-A0DZ-01 219293 Putative_Passenger -TCGA-BH-A0E2-01 219293 Putative_Passenger -TCGA-BH-A0GY-01 219293 Putative_Passenger -TCGA-BH-A0GZ-01 219293 Putative_Passenger -TCGA-BH-A0H7-01 219293 Putative_Passenger -TCGA-BH-A0H9-01 219293 Putative_Passenger -TCGA-BH-A0HU-01 219293 Putative_Passenger -TCGA-BH-A0HW-01 219293 Putative_Passenger -TCGA-BH-A0W3-01 219293 Putative_Passenger -TCGA-BH-A18J-01 219293 Putative_Passenger -TCGA-BH-A18K-01 219293 Putative_Passenger -TCGA-BH-A18P-01 219293 Putative_Passenger -TCGA-BH-A18Q-01 219293 Putative_Passenger -TCGA-BH-A18R-01 219293 Putative_Passenger -TCGA-BH-A18U-01 219293 Putative_Passenger -TCGA-BH-A18V-01 219293 Putative_Passenger -TCGA-BH-A1EN-01 219293 Putative_Passenger -TCGA-BH-A1EV-01 219293 Putative_Passenger -TCGA-BH-A1EY-01 219293 Putative_Passenger -TCGA-BH-A1F2-01 219293 Putative_Passenger -TCGA-BH-A1F8-01 219293 Putative_Passenger -TCGA-BH-A1FM-01 219293 Putative_Passenger -TCGA-BH-A204-01 219293 Putative_Passenger -TCGA-C8-A12L-01 219293 Putative_Passenger -TCGA-C8-A12Z-01 219293 Putative_Passenger -TCGA-C8-A134-01 219293 Putative_Passenger -TCGA-C8-A138-01 219293 Putative_Passenger -TCGA-C8-A1HJ-01 219293 Putative_Passenger -TCGA-C8-A1HK-01 219293 Putative_Passenger -TCGA-C8-A1HL-01 219293 Putative_Passenger -TCGA-C8-A26W-01 219293 Putative_Passenger -TCGA-C8-A274-01 219293 Putative_Passenger -TCGA-C8-A27A-01 219293 Putative_Passenger -TCGA-D8-A13Y-01 219293 Putative_Passenger -TCGA-D8-A147-01 219293 Putative_Passenger -TCGA-D8-A1J8-01 219293 Putative_Passenger -TCGA-D8-A1JA-01 219293 Putative_Passenger -TCGA-D8-A1JC-01 219293 Putative_Passenger -TCGA-D8-A1JD-01 219293 Putative_Passenger -TCGA-D8-A1JE-01 219293 Putative_Passenger -TCGA-D8-A1JF-01 219293 Putative_Passenger -TCGA-D8-A1JI-01 219293 Putative_Passenger -TCGA-D8-A1JJ-01 219293 Putative_Passenger -TCGA-D8-A1JL-01 219293 Putative_Passenger -TCGA-D8-A1JM-01 219293 Putative_Passenger -TCGA-D8-A1X5-01 219293 Putative_Passenger -TCGA-D8-A1X8-01 219293 Putative_Passenger -TCGA-D8-A1XF-01 219293 Putative_Passenger -TCGA-D8-A1XG-01 219293 Putative_Passenger -TCGA-D8-A1XJ-01 219293 Putative_Passenger -TCGA-D8-A1XK-01 219293 Putative_Passenger -TCGA-D8-A1XL-01 219293 Putative_Passenger -TCGA-D8-A1XR-01 219293 Putative_Passenger -TCGA-D8-A1XS-01 219293 Putative_Passenger -TCGA-D8-A1XT-01 219293 Putative_Passenger -TCGA-D8-A1XU-01 219293 Putative_Passenger -TCGA-D8-A1XY-01 219293 Putative_Passenger -TCGA-D8-A1XZ-01 219293 Putative_Passenger -TCGA-D8-A1Y0-01 219293 Putative_Passenger -TCGA-D8-A1Y1-01 219293 Putative_Passenger -TCGA-D8-A27F-01 219293 Putative_Passenger -TCGA-D8-A27H-01 219293 Putative_Passenger -TCGA-E2-A107-01 219293 Putative_Passenger -TCGA-E2-A109-01 219293 Putative_Passenger -TCGA-E2-A10A-01 219293 Putative_Passenger -TCGA-E2-A10E-01 219293 Putative_Passenger -TCGA-E2-A14O-01 219293 Putative_Passenger -TCGA-E2-A14R-01 219293 Putative_Passenger -TCGA-E2-A14V-01 219293 Putative_Passenger -TCGA-E2-A150-01 219293 Putative_Passenger -TCGA-E2-A154-01 219293 Putative_Passenger -TCGA-E2-A158-01 219293 Putative_Passenger -TCGA-E2-A159-01 219293 Putative_Passenger -TCGA-E2-A15H-01 219293 Putative_Passenger -TCGA-E2-A15O-01 219293 Putative_Passenger -TCGA-E2-A15R-01 219293 Putative_Passenger -TCGA-E2-A1IE-01 219293 Putative_Passenger -TCGA-E2-A1IH-01 219293 Putative_Passenger -TCGA-E2-A1II-01 219293 Putative_Passenger -TCGA-E2-A1L7-01 219293 Putative_Passenger -TCGA-E2-A1L8-01 219293 Putative_Passenger -TCGA-E2-A1LA-01 219293 Putative_Passenger -TCGA-E2-A1LB-01 219293 Putative_Passenger -TCGA-E2-A1LG-01 219293 Putative_Passenger -TCGA-E2-A1LH-01 219293 Putative_Passenger -TCGA-E2-A1LL-01 219293 Putative_Passenger -TCGA-E9-A1N9-01 219293 Putative_Passenger -TCGA-E9-A1NC-01 219293 Putative_Passenger -TCGA-E9-A1NH-01 219293 Putative_Passenger -TCGA-E9-A1R2-01 219293 Putative_Passenger -TCGA-E9-A1R3-01 219293 Putative_Passenger -TCGA-E9-A1R5-01 219293 Putative_Passenger -TCGA-E9-A1R7-01 219293 Putative_Passenger -TCGA-E9-A1RC-01 219293 Putative_Passenger -TCGA-E9-A1RE-01 219293 Putative_Passenger -TCGA-E9-A1RF-01 219293 Putative_Passenger -TCGA-E9-A226-01 219293 Putative_Passenger -TCGA-E9-A229-01 219293 Putative_Passenger -TCGA-E9-A22A-01 219293 Putative_Passenger -TCGA-E9-A22G-01 219293 Putative_Passenger -TCGA-E9-A244-01 219293 Putative_Passenger -TCGA-E9-A247-01 219293 Putative_Passenger -TCGA-E9-A295-01 219293 Putative_Passenger -TCGA-EW-A1IW-01 219293 Putative_Passenger -TCGA-EW-A1J6-01 219293 Putative_Passenger -TCGA-EW-A1OV-01 219293 Putative_Passenger -TCGA-EW-A1OW-01 219293 Putative_Passenger -TCGA-EW-A1OY-01 219293 Putative_Passenger -TCGA-EW-A1PF-01 219293 Putative_Passenger -TCGA-EW-A2FW-01 219293 Putative_Passenger -TCGA-GI-A2C8-01 219293 Putative_Passenger -TCGA-A1-A0SD-01 54998 Putative_Passenger -TCGA-A1-A0SH-01 54998 Putative_Passenger -TCGA-A1-A0SM-01 54998 Putative_Passenger -TCGA-A1-A0SN-01 54998 Putative_Passenger -TCGA-A1-A0SO-01 54998 Putative_Passenger -TCGA-A2-A04R-01 54998 Putative_Passenger -TCGA-A2-A04U-01 54998 Putative_Passenger -TCGA-A2-A04Y-01 54998 Putative_Passenger -TCGA-A2-A0CS-01 54998 Putative_Passenger -TCGA-A2-A0CT-01 54998 Putative_Passenger -TCGA-A2-A0CW-01 54998 Putative_Passenger -TCGA-A2-A0D0-01 54998 Putative_Passenger -TCGA-A2-A0D4-01 54998 Putative_Passenger -TCGA-A2-A0EN-01 54998 Putative_Passenger -TCGA-A2-A0EO-01 54998 Putative_Passenger -TCGA-A2-A0ET-01 54998 Putative_Passenger -TCGA-A2-A0EY-01 54998 Putative_Passenger -TCGA-A2-A0T2-01 54998 Putative_Passenger -TCGA-A2-A0T4-01 54998 Putative_Passenger -TCGA-A2-A0T7-01 54998 Putative_Passenger -TCGA-A2-A0YF-01 54998 Putative_Passenger -TCGA-A2-A0YI-01 54998 Putative_Passenger -TCGA-A2-A0YJ-01 54998 Putative_Passenger -TCGA-A2-A1FX-01 54998 Putative_Passenger -TCGA-A2-A1G0-01 54998 Putative_Passenger -TCGA-A2-A25C-01 54998 Putative_Passenger -TCGA-A7-A13F-01 54998 Putative_Passenger -TCGA-A7-A26F-01 54998 Putative_Passenger -TCGA-A8-A06T-01 54998 Putative_Passenger -TCGA-A8-A06U-01 54998 Putative_Passenger -TCGA-A8-A06Y-01 54998 Putative_Passenger -TCGA-A8-A06Z-01 54998 Putative_Passenger -TCGA-A8-A075-01 54998 Putative_Passenger -TCGA-A8-A076-01 54998 Putative_Passenger -TCGA-A8-A079-01 54998 Putative_Passenger -TCGA-A8-A07B-01 54998 Putative_Passenger -TCGA-A8-A07F-01 54998 Putative_Passenger -TCGA-A8-A07L-01 54998 Putative_Passenger -TCGA-A8-A081-01 54998 Putative_Passenger -TCGA-A8-A084-01 54998 Putative_Passenger -TCGA-A8-A08I-01 54998 Putative_Passenger -TCGA-A8-A08J-01 54998 Putative_Passenger -TCGA-A8-A08O-01 54998 Putative_Passenger -TCGA-A8-A08S-01 54998 Putative_Passenger -TCGA-A8-A092-01 54998 Putative_Passenger -TCGA-A8-A099-01 54998 Putative_Passenger -TCGA-A8-A09A-01 54998 Putative_Passenger -TCGA-A8-A09C-01 54998 Putative_Passenger -TCGA-A8-A09E-01 54998 Putative_Passenger -TCGA-A8-A09I-01 54998 Putative_Passenger -TCGA-A8-A09M-01 54998 Putative_Passenger -TCGA-A8-A09R-01 54998 Putative_Passenger -TCGA-A8-A09W-01 54998 Putative_Passenger -TCGA-A8-A0A2-01 54998 Putative_Passenger -TCGA-A8-A0AB-01 54998 Putative_Passenger -TCGA-AN-A03X-01 54998 Putative_Passenger -TCGA-AN-A03Y-01 54998 Putative_Passenger -TCGA-AN-A041-01 54998 Putative_Passenger -TCGA-AN-A049-01 54998 Putative_Passenger -TCGA-AN-A04A-01 54998 Putative_Passenger -TCGA-AN-A04D-01 54998 Putative_Passenger -TCGA-AN-A0AJ-01 54998 Putative_Passenger -TCGA-AN-A0AK-01 54998 Putative_Passenger -TCGA-AN-A0AL-01 54998 Putative_Passenger -TCGA-AN-A0FD-01 54998 Putative_Passenger -TCGA-AN-A0FJ-01 54998 Putative_Passenger -TCGA-AN-A0FK-01 54998 Putative_Passenger -TCGA-AN-A0FL-01 54998 Putative_Passenger -TCGA-AN-A0FT-01 54998 Putative_Passenger -TCGA-AN-A0FV-01 54998 Putative_Passenger -TCGA-AN-A0FY-01 54998 Putative_Passenger -TCGA-AN-A0XT-01 54998 Putative_Passenger -TCGA-AN-A0XU-01 54998 Putative_Passenger -TCGA-AO-A03L-01 54998 Putative_Passenger -TCGA-AO-A03N-01 54998 Putative_Passenger -TCGA-AO-A0J3-01 54998 Putative_Passenger -TCGA-AO-A0J4-01 54998 Putative_Passenger -TCGA-AO-A0J6-01 54998 Putative_Passenger -TCGA-AO-A0J7-01 54998 Putative_Passenger -TCGA-AO-A0J9-01 54998 Putative_Passenger -TCGA-AO-A0JA-01 54998 Putative_Passenger -TCGA-AO-A0JE-01 54998 Putative_Passenger -TCGA-AO-A0JG-01 54998 Putative_Passenger -TCGA-AO-A0JI-01 54998 Putative_Passenger -TCGA-AO-A0JM-01 54998 Putative_Passenger -TCGA-AO-A129-01 54998 Putative_Passenger -TCGA-AO-A12F-01 54998 Putative_Passenger -TCGA-AO-A1KP-01 54998 Putative_Passenger -TCGA-AO-A1KQ-01 54998 Putative_Passenger -TCGA-AO-A1KS-01 54998 Putative_Passenger -TCGA-AO-A1KT-01 54998 Putative_Passenger -TCGA-AQ-A0Y5-01 54998 Putative_Passenger -TCGA-AR-A0TW-01 54998 Putative_Passenger -TCGA-AR-A0TY-01 54998 Putative_Passenger -TCGA-AR-A0TZ-01 54998 Putative_Passenger -TCGA-AR-A0U1-01 54998 Putative_Passenger -TCGA-AR-A0U3-01 54998 Putative_Passenger -TCGA-AR-A1AH-01 54998 Putative_Passenger -TCGA-AR-A1AW-01 54998 Putative_Passenger -TCGA-AR-A1AY-01 54998 Putative_Passenger -TCGA-AR-A24H-01 54998 Putative_Passenger -TCGA-AR-A24L-01 54998 Putative_Passenger -TCGA-AR-A24Q-01 54998 Putative_Passenger -TCGA-AR-A24R-01 54998 Putative_Passenger -TCGA-AR-A24S-01 54998 Putative_Passenger -TCGA-AR-A24T-01 54998 Putative_Passenger -TCGA-AR-A250-01 54998 Putative_Passenger -TCGA-AR-A251-01 54998 Putative_Passenger -TCGA-AR-A254-01 54998 Putative_Passenger -TCGA-AR-A255-01 54998 Putative_Passenger -TCGA-AR-A256-01 54998 Putative_Passenger -TCGA-B6-A0I9-01 54998 Putative_Passenger -TCGA-B6-A0IB-01 54998 Putative_Passenger -TCGA-B6-A0RE-01 54998 Putative_Passenger -TCGA-B6-A0RG-01 54998 Putative_Passenger -TCGA-B6-A0RL-01 54998 Putative_Passenger -TCGA-B6-A0RP-01 54998 Putative_Passenger -TCGA-B6-A0RS-01 54998 Putative_Passenger -TCGA-B6-A0RU-01 54998 Putative_Passenger -TCGA-B6-A0WV-01 54998 Putative_Passenger -TCGA-B6-A0WW-01 54998 Putative_Passenger -TCGA-B6-A0WX-01 54998 Putative_Passenger -TCGA-B6-A0X1-01 54998 Putative_Passenger -TCGA-B6-A1KC-01 54998 Putative_Passenger -TCGA-B6-A1KF-01 54998 Putative_Passenger -TCGA-B6-A1KN-01 54998 Putative_Passenger -TCGA-BH-A0AV-01 54998 Putative_Passenger -TCGA-BH-A0B4-01 54998 Putative_Passenger -TCGA-BH-A0B9-01 54998 Putative_Passenger -TCGA-BH-A0BP-01 54998 Putative_Passenger -TCGA-BH-A0BT-01 54998 Putative_Passenger -TCGA-BH-A0C1-01 54998 Putative_Passenger -TCGA-BH-A0C7-01 54998 Putative_Passenger -TCGA-BH-A0DD-01 54998 Putative_Passenger -TCGA-BH-A0DE-01 54998 Putative_Passenger -TCGA-BH-A0DG-01 54998 Putative_Passenger -TCGA-BH-A0DK-01 54998 Putative_Passenger -TCGA-BH-A0DL-01 54998 Putative_Passenger -TCGA-BH-A0DZ-01 54998 Putative_Passenger -TCGA-BH-A0E2-01 54998 Putative_Passenger -TCGA-BH-A0GY-01 54998 Putative_Passenger -TCGA-BH-A0GZ-01 54998 Putative_Passenger -TCGA-BH-A0H7-01 54998 Putative_Passenger -TCGA-BH-A0H9-01 54998 Putative_Passenger -TCGA-BH-A0HU-01 54998 Putative_Passenger -TCGA-BH-A0HW-01 54998 Putative_Passenger -TCGA-BH-A0W3-01 54998 Putative_Passenger -TCGA-BH-A18J-01 54998 Putative_Passenger -TCGA-BH-A18K-01 54998 Putative_Passenger -TCGA-BH-A18P-01 54998 Putative_Passenger -TCGA-BH-A18Q-01 54998 Putative_Passenger -TCGA-BH-A18R-01 54998 Putative_Passenger -TCGA-BH-A18U-01 54998 Putative_Passenger -TCGA-BH-A18V-01 54998 Putative_Passenger -TCGA-BH-A1EN-01 54998 Putative_Passenger -TCGA-BH-A1EV-01 54998 Putative_Passenger -TCGA-BH-A1EY-01 54998 Putative_Passenger -TCGA-BH-A1F2-01 54998 Putative_Passenger -TCGA-BH-A1F8-01 54998 Putative_Passenger -TCGA-BH-A1FM-01 54998 Putative_Passenger -TCGA-BH-A204-01 54998 Putative_Passenger -TCGA-C8-A12L-01 54998 Putative_Passenger -TCGA-C8-A12Z-01 54998 Putative_Passenger -TCGA-C8-A134-01 54998 Putative_Passenger -TCGA-C8-A138-01 54998 Putative_Passenger -TCGA-C8-A1HJ-01 54998 Putative_Passenger -TCGA-C8-A1HK-01 54998 Putative_Passenger -TCGA-C8-A1HL-01 54998 Putative_Passenger -TCGA-C8-A26W-01 54998 Putative_Passenger -TCGA-C8-A274-01 54998 Putative_Passenger -TCGA-C8-A27A-01 54998 Putative_Passenger -TCGA-D8-A13Y-01 54998 Putative_Passenger -TCGA-D8-A147-01 54998 Putative_Passenger -TCGA-D8-A1J8-01 54998 Putative_Passenger -TCGA-D8-A1JA-01 54998 Putative_Passenger -TCGA-D8-A1JC-01 54998 Putative_Passenger -TCGA-D8-A1JD-01 54998 Putative_Passenger -TCGA-D8-A1JE-01 54998 Putative_Passenger -TCGA-D8-A1JF-01 54998 Putative_Passenger -TCGA-D8-A1JI-01 54998 Putative_Passenger -TCGA-D8-A1JJ-01 54998 Putative_Passenger -TCGA-D8-A1JL-01 54998 Putative_Passenger -TCGA-D8-A1JM-01 54998 Putative_Passenger -TCGA-D8-A1X5-01 54998 Putative_Passenger -TCGA-D8-A1X8-01 54998 Putative_Passenger -TCGA-D8-A1XF-01 54998 Putative_Passenger -TCGA-D8-A1XG-01 54998 Putative_Passenger -TCGA-D8-A1XJ-01 54998 Putative_Passenger -TCGA-D8-A1XK-01 54998 Putative_Passenger -TCGA-D8-A1XL-01 54998 Putative_Passenger -TCGA-D8-A1XR-01 54998 Putative_Passenger -TCGA-D8-A1XS-01 54998 Putative_Passenger -TCGA-D8-A1XT-01 54998 Putative_Passenger -TCGA-D8-A1XU-01 54998 Putative_Passenger -TCGA-D8-A1XY-01 54998 Putative_Passenger -TCGA-D8-A1XZ-01 54998 Putative_Passenger -TCGA-D8-A1Y0-01 54998 Putative_Passenger -TCGA-D8-A1Y1-01 54998 Putative_Passenger -TCGA-D8-A27F-01 54998 Putative_Passenger -TCGA-D8-A27H-01 54998 Putative_Passenger -TCGA-E2-A107-01 54998 Putative_Passenger -TCGA-E2-A109-01 54998 Putative_Passenger -TCGA-E2-A10A-01 54998 Putative_Passenger -TCGA-E2-A10E-01 54998 Putative_Passenger -TCGA-E2-A14O-01 54998 Putative_Passenger -TCGA-E2-A14R-01 54998 Putative_Passenger -TCGA-E2-A14V-01 54998 Putative_Passenger -TCGA-E2-A150-01 54998 Putative_Passenger -TCGA-E2-A154-01 54998 Putative_Passenger -TCGA-E2-A158-01 54998 Putative_Passenger -TCGA-E2-A159-01 54998 Putative_Passenger -TCGA-E2-A15H-01 54998 Putative_Passenger -TCGA-E2-A15O-01 54998 Putative_Passenger -TCGA-E2-A15R-01 54998 Putative_Passenger -TCGA-E2-A1IE-01 54998 Putative_Passenger -TCGA-E2-A1IH-01 54998 Putative_Passenger -TCGA-E2-A1II-01 54998 Putative_Passenger -TCGA-E2-A1L7-01 54998 Putative_Passenger -TCGA-E2-A1L8-01 54998 Putative_Passenger -TCGA-E2-A1LA-01 54998 Putative_Passenger -TCGA-E2-A1LB-01 54998 Putative_Passenger -TCGA-E2-A1LG-01 54998 Putative_Passenger -TCGA-E2-A1LH-01 54998 Putative_Passenger -TCGA-E2-A1LL-01 54998 Putative_Passenger -TCGA-E9-A1N9-01 54998 Putative_Passenger -TCGA-E9-A1NC-01 54998 Putative_Passenger -TCGA-E9-A1NH-01 54998 Putative_Passenger -TCGA-E9-A1R2-01 54998 Putative_Passenger -TCGA-E9-A1R3-01 54998 Putative_Passenger -TCGA-E9-A1R5-01 54998 Putative_Passenger -TCGA-E9-A1R7-01 54998 Putative_Passenger -TCGA-E9-A1RC-01 54998 Putative_Passenger -TCGA-E9-A1RE-01 54998 Putative_Passenger -TCGA-E9-A1RF-01 54998 Putative_Passenger -TCGA-E9-A226-01 54998 Putative_Passenger -TCGA-E9-A229-01 54998 Putative_Passenger -TCGA-E9-A22A-01 54998 Putative_Passenger -TCGA-E9-A22G-01 54998 Putative_Passenger -TCGA-E9-A244-01 54998 Putative_Passenger -TCGA-E9-A247-01 54998 Putative_Passenger -TCGA-E9-A295-01 54998 Putative_Passenger -TCGA-EW-A1IW-01 54998 Putative_Passenger -TCGA-EW-A1J6-01 54998 Putative_Passenger -TCGA-EW-A1OV-01 54998 Putative_Passenger -TCGA-EW-A1OW-01 54998 Putative_Passenger -TCGA-EW-A1OY-01 54998 Putative_Passenger -TCGA-EW-A1PF-01 54998 Putative_Passenger -TCGA-EW-A2FW-01 54998 Putative_Passenger -TCGA-GI-A2C8-01 54998 Putative_Passenger -TCGA-A1-A0SD-01 2073 Putative_Passenger -TCGA-A1-A0SH-01 2073 Putative_Passenger -TCGA-A1-A0SM-01 2073 Putative_Passenger -TCGA-A1-A0SN-01 2073 Putative_Passenger -TCGA-A1-A0SO-01 2073 Putative_Passenger -TCGA-A2-A04R-01 2073 Putative_Passenger -TCGA-A2-A04U-01 2073 Putative_Passenger -TCGA-A2-A04Y-01 2073 Putative_Passenger -TCGA-A2-A0CS-01 2073 Putative_Passenger -TCGA-A2-A0CT-01 2073 Putative_Passenger -TCGA-A2-A0CW-01 2073 Putative_Passenger -TCGA-A2-A0D0-01 2073 Putative_Passenger -TCGA-A2-A0D4-01 2073 Putative_Passenger -TCGA-A2-A0EN-01 2073 Putative_Passenger -TCGA-A2-A0EO-01 2073 Putative_Passenger -TCGA-A2-A0ET-01 2073 Putative_Passenger -TCGA-A2-A0EY-01 2073 Putative_Passenger -TCGA-A2-A0T2-01 2073 Putative_Passenger -TCGA-A2-A0T4-01 2073 Putative_Passenger -TCGA-A2-A0T7-01 2073 Putative_Passenger -TCGA-A2-A0YF-01 2073 Putative_Passenger -TCGA-A2-A0YI-01 2073 Putative_Passenger -TCGA-A2-A0YJ-01 2073 Putative_Passenger -TCGA-A2-A1FX-01 2073 Putative_Passenger -TCGA-A2-A1G0-01 2073 Putative_Passenger -TCGA-A2-A25C-01 2073 Putative_Passenger -TCGA-A7-A13F-01 2073 Putative_Passenger -TCGA-A7-A26F-01 2073 Putative_Passenger -TCGA-A8-A06T-01 2073 Putative_Passenger -TCGA-A8-A06U-01 2073 Putative_Passenger -TCGA-A8-A06Y-01 2073 Putative_Passenger -TCGA-A8-A06Z-01 2073 Putative_Passenger -TCGA-A8-A075-01 2073 Putative_Passenger -TCGA-A8-A076-01 2073 Putative_Passenger -TCGA-A8-A079-01 2073 Putative_Passenger -TCGA-A8-A07B-01 2073 Putative_Passenger -TCGA-A8-A07F-01 2073 Putative_Passenger -TCGA-A8-A07L-01 2073 Putative_Passenger -TCGA-A8-A081-01 2073 Putative_Passenger -TCGA-A8-A084-01 2073 Putative_Passenger -TCGA-A8-A08I-01 2073 Putative_Passenger -TCGA-A8-A08J-01 2073 Putative_Passenger -TCGA-A8-A08O-01 2073 Putative_Passenger -TCGA-A8-A08S-01 2073 Putative_Passenger -TCGA-A8-A092-01 2073 Putative_Passenger -TCGA-A8-A099-01 2073 Putative_Passenger -TCGA-A8-A09A-01 2073 Putative_Passenger -TCGA-A8-A09C-01 2073 Putative_Passenger -TCGA-A8-A09E-01 2073 Putative_Passenger -TCGA-A8-A09I-01 2073 Putative_Passenger -TCGA-A8-A09M-01 2073 Putative_Passenger -TCGA-A8-A09R-01 2073 Putative_Passenger -TCGA-A8-A09W-01 2073 Putative_Passenger -TCGA-A8-A0A2-01 2073 Putative_Passenger -TCGA-A8-A0AB-01 2073 Putative_Passenger -TCGA-AN-A03X-01 2073 Putative_Passenger -TCGA-AN-A03Y-01 2073 Putative_Passenger -TCGA-AN-A041-01 2073 Putative_Passenger -TCGA-AN-A049-01 2073 Putative_Passenger -TCGA-AN-A04A-01 2073 Putative_Passenger -TCGA-AN-A04D-01 2073 Putative_Passenger -TCGA-AN-A0AJ-01 2073 Putative_Passenger -TCGA-AN-A0AK-01 2073 Putative_Passenger -TCGA-AN-A0AL-01 2073 Putative_Passenger -TCGA-AN-A0FD-01 2073 Putative_Passenger -TCGA-AN-A0FJ-01 2073 Putative_Passenger -TCGA-AN-A0FK-01 2073 Putative_Passenger -TCGA-AN-A0FL-01 2073 Putative_Passenger -TCGA-AN-A0FT-01 2073 Putative_Passenger -TCGA-AN-A0FV-01 2073 Putative_Passenger -TCGA-AN-A0FY-01 2073 Putative_Passenger -TCGA-AN-A0XT-01 2073 Putative_Passenger -TCGA-AN-A0XU-01 2073 Putative_Passenger -TCGA-AO-A03L-01 2073 Putative_Passenger -TCGA-AO-A03N-01 2073 Putative_Passenger -TCGA-AO-A0J3-01 2073 Putative_Passenger -TCGA-AO-A0J4-01 2073 Putative_Passenger -TCGA-AO-A0J6-01 2073 Putative_Passenger -TCGA-AO-A0J7-01 2073 Putative_Passenger -TCGA-AO-A0J9-01 2073 Putative_Passenger -TCGA-AO-A0JA-01 2073 Putative_Passenger -TCGA-AO-A0JE-01 2073 Putative_Passenger -TCGA-AO-A0JG-01 2073 Putative_Passenger -TCGA-AO-A0JI-01 2073 Putative_Passenger -TCGA-AO-A0JM-01 2073 Putative_Passenger -TCGA-AO-A129-01 2073 Putative_Passenger -TCGA-AO-A12F-01 2073 Putative_Passenger -TCGA-AO-A1KP-01 2073 Putative_Passenger -TCGA-AO-A1KQ-01 2073 Putative_Passenger -TCGA-AO-A1KS-01 2073 Putative_Passenger -TCGA-AO-A1KT-01 2073 Putative_Passenger -TCGA-AQ-A0Y5-01 2073 Putative_Passenger -TCGA-AR-A0TW-01 2073 Putative_Passenger -TCGA-AR-A0TY-01 2073 Putative_Passenger -TCGA-AR-A0TZ-01 2073 Putative_Passenger -TCGA-AR-A0U1-01 2073 Putative_Passenger -TCGA-AR-A0U3-01 2073 Putative_Passenger -TCGA-AR-A1AH-01 2073 Putative_Passenger -TCGA-AR-A1AW-01 2073 Putative_Passenger -TCGA-AR-A1AY-01 2073 Putative_Passenger -TCGA-AR-A24H-01 2073 Putative_Passenger -TCGA-AR-A24L-01 2073 Putative_Passenger -TCGA-AR-A24Q-01 2073 Putative_Passenger -TCGA-AR-A24R-01 2073 Putative_Passenger -TCGA-AR-A24S-01 2073 Putative_Passenger -TCGA-AR-A24T-01 2073 Putative_Passenger -TCGA-AR-A250-01 2073 Putative_Passenger -TCGA-AR-A251-01 2073 Putative_Passenger -TCGA-AR-A254-01 2073 Putative_Passenger -TCGA-AR-A255-01 2073 Putative_Passenger -TCGA-AR-A256-01 2073 Putative_Passenger -TCGA-B6-A0I9-01 2073 Putative_Passenger -TCGA-B6-A0IB-01 2073 Putative_Passenger -TCGA-B6-A0RE-01 2073 Putative_Passenger -TCGA-B6-A0RG-01 2073 Putative_Passenger -TCGA-B6-A0RL-01 2073 Putative_Passenger -TCGA-B6-A0RP-01 2073 Putative_Passenger -TCGA-B6-A0RS-01 2073 Putative_Passenger -TCGA-B6-A0RU-01 2073 Putative_Passenger -TCGA-B6-A0WV-01 2073 Putative_Passenger -TCGA-B6-A0WW-01 2073 Putative_Passenger -TCGA-B6-A0WX-01 2073 Putative_Passenger -TCGA-B6-A0X1-01 2073 Putative_Passenger -TCGA-B6-A1KC-01 2073 Putative_Passenger -TCGA-B6-A1KF-01 2073 Putative_Passenger -TCGA-B6-A1KN-01 2073 Putative_Passenger -TCGA-BH-A0AV-01 2073 Putative_Passenger -TCGA-BH-A0B4-01 2073 Putative_Passenger -TCGA-BH-A0B9-01 2073 Putative_Passenger -TCGA-BH-A0BP-01 2073 Putative_Passenger -TCGA-BH-A0BT-01 2073 Putative_Passenger -TCGA-BH-A0C1-01 2073 Putative_Passenger -TCGA-BH-A0C7-01 2073 Putative_Passenger -TCGA-BH-A0DD-01 2073 Putative_Passenger -TCGA-BH-A0DE-01 2073 Putative_Passenger -TCGA-BH-A0DG-01 2073 Putative_Passenger -TCGA-BH-A0DK-01 2073 Putative_Passenger -TCGA-BH-A0DL-01 2073 Putative_Passenger -TCGA-BH-A0DZ-01 2073 Putative_Passenger -TCGA-BH-A0E2-01 2073 Putative_Passenger -TCGA-BH-A0GY-01 2073 Putative_Passenger -TCGA-BH-A0GZ-01 2073 Putative_Passenger -TCGA-BH-A0H7-01 2073 Putative_Passenger -TCGA-BH-A0H9-01 2073 Putative_Passenger -TCGA-BH-A0HU-01 2073 Putative_Passenger -TCGA-BH-A0HW-01 2073 Putative_Passenger -TCGA-BH-A0W3-01 2073 Putative_Passenger -TCGA-BH-A18J-01 2073 Putative_Passenger -TCGA-BH-A18K-01 2073 Putative_Passenger -TCGA-BH-A18P-01 2073 Putative_Passenger -TCGA-BH-A18Q-01 2073 Putative_Passenger -TCGA-BH-A18R-01 2073 Putative_Passenger -TCGA-BH-A18U-01 2073 Putative_Passenger -TCGA-BH-A18V-01 2073 Putative_Passenger -TCGA-BH-A1EN-01 2073 Putative_Passenger -TCGA-BH-A1EV-01 2073 Putative_Passenger -TCGA-BH-A1EY-01 2073 Putative_Passenger -TCGA-BH-A1F2-01 2073 Putative_Passenger -TCGA-BH-A1F8-01 2073 Putative_Passenger -TCGA-BH-A1FM-01 2073 Putative_Passenger -TCGA-BH-A204-01 2073 Putative_Passenger -TCGA-C8-A12L-01 2073 Putative_Passenger -TCGA-C8-A12Z-01 2073 Putative_Passenger -TCGA-C8-A134-01 2073 Putative_Passenger -TCGA-C8-A138-01 2073 Putative_Passenger -TCGA-C8-A1HJ-01 2073 Putative_Passenger -TCGA-C8-A1HK-01 2073 Putative_Passenger -TCGA-C8-A1HL-01 2073 Putative_Passenger -TCGA-C8-A26W-01 2073 Putative_Passenger -TCGA-C8-A274-01 2073 Putative_Passenger -TCGA-C8-A27A-01 2073 Putative_Passenger -TCGA-D8-A13Y-01 2073 Putative_Passenger -TCGA-D8-A147-01 2073 Putative_Passenger -TCGA-D8-A1J8-01 2073 Putative_Passenger -TCGA-D8-A1JA-01 2073 Putative_Passenger -TCGA-D8-A1JC-01 2073 Putative_Passenger -TCGA-D8-A1JD-01 2073 Putative_Passenger -TCGA-D8-A1JE-01 2073 Putative_Passenger -TCGA-D8-A1JF-01 2073 Putative_Passenger -TCGA-D8-A1JI-01 2073 Putative_Passenger -TCGA-D8-A1JJ-01 2073 Putative_Passenger -TCGA-D8-A1JL-01 2073 Putative_Passenger -TCGA-D8-A1JM-01 2073 Putative_Passenger -TCGA-D8-A1X5-01 2073 Putative_Passenger -TCGA-D8-A1X8-01 2073 Putative_Passenger -TCGA-D8-A1XF-01 2073 Putative_Passenger -TCGA-D8-A1XG-01 2073 Putative_Passenger -TCGA-D8-A1XJ-01 2073 Putative_Passenger -TCGA-D8-A1XK-01 2073 Putative_Passenger -TCGA-D8-A1XL-01 2073 Putative_Passenger -TCGA-D8-A1XR-01 2073 Putative_Passenger -TCGA-D8-A1XS-01 2073 Putative_Passenger -TCGA-D8-A1XT-01 2073 Putative_Passenger -TCGA-D8-A1XU-01 2073 Putative_Passenger -TCGA-D8-A1XY-01 2073 Putative_Passenger -TCGA-D8-A1XZ-01 2073 Putative_Passenger -TCGA-D8-A1Y0-01 2073 Putative_Passenger -TCGA-D8-A1Y1-01 2073 Putative_Passenger -TCGA-D8-A27F-01 2073 Putative_Passenger -TCGA-D8-A27H-01 2073 Putative_Passenger -TCGA-E2-A107-01 2073 Putative_Passenger -TCGA-E2-A109-01 2073 Putative_Passenger -TCGA-E2-A10A-01 2073 Putative_Passenger -TCGA-E2-A10E-01 2073 Putative_Passenger -TCGA-E2-A14O-01 2073 Putative_Passenger -TCGA-E2-A14R-01 2073 Putative_Passenger -TCGA-E2-A14V-01 2073 Putative_Passenger -TCGA-E2-A150-01 2073 Putative_Passenger -TCGA-E2-A154-01 2073 Putative_Passenger -TCGA-E2-A158-01 2073 Putative_Passenger -TCGA-E2-A159-01 2073 Putative_Passenger -TCGA-E2-A15H-01 2073 Putative_Passenger -TCGA-E2-A15O-01 2073 Putative_Passenger -TCGA-E2-A15R-01 2073 Putative_Passenger -TCGA-E2-A1IE-01 2073 Putative_Passenger -TCGA-E2-A1IH-01 2073 Putative_Passenger -TCGA-E2-A1II-01 2073 Putative_Passenger -TCGA-E2-A1L7-01 2073 Putative_Passenger -TCGA-E2-A1L8-01 2073 Putative_Passenger -TCGA-E2-A1LA-01 2073 Putative_Passenger -TCGA-E2-A1LB-01 2073 Putative_Passenger -TCGA-E2-A1LG-01 2073 Putative_Passenger -TCGA-E2-A1LH-01 2073 Putative_Passenger -TCGA-E2-A1LL-01 2073 Putative_Passenger -TCGA-E9-A1N9-01 2073 Putative_Passenger -TCGA-E9-A1NC-01 2073 Putative_Passenger -TCGA-E9-A1NH-01 2073 Putative_Passenger -TCGA-E9-A1R2-01 2073 Putative_Passenger -TCGA-E9-A1R3-01 2073 Putative_Passenger -TCGA-E9-A1R5-01 2073 Putative_Passenger -TCGA-E9-A1R7-01 2073 Putative_Passenger -TCGA-E9-A1RC-01 2073 Putative_Passenger -TCGA-E9-A1RE-01 2073 Putative_Passenger -TCGA-E9-A1RF-01 2073 Putative_Passenger -TCGA-E9-A226-01 2073 Putative_Passenger -TCGA-E9-A229-01 2073 Putative_Passenger -TCGA-E9-A22A-01 2073 Putative_Passenger -TCGA-E9-A22G-01 2073 Putative_Passenger -TCGA-E9-A244-01 2073 Putative_Passenger -TCGA-E9-A247-01 2073 Putative_Passenger -TCGA-E9-A295-01 2073 Putative_Passenger -TCGA-EW-A1IW-01 2073 Putative_Passenger -TCGA-EW-A1J6-01 2073 Putative_Passenger -TCGA-EW-A1OV-01 2073 Putative_Passenger -TCGA-EW-A1OW-01 2073 Putative_Passenger -TCGA-EW-A1OY-01 2073 Putative_Passenger -TCGA-EW-A1PF-01 2073 Putative_Passenger -TCGA-EW-A2FW-01 2073 Putative_Passenger -TCGA-GI-A2C8-01 2073 Putative_Passenger diff --git a/core/src/main/scripts/importer/importOncokbDiscreteCNA.py b/core/src/main/scripts/importer/importOncokbDiscreteCNA.py deleted file mode 100644 index 1e81da6b70f..00000000000 --- a/core/src/main/scripts/importer/importOncokbDiscreteCNA.py +++ /dev/null @@ -1,279 +0,0 @@ -#!/usr/bin/env python3 - -# -# Copyright (c) 2020 The Hyve B.V. -# This code is licensed under the GNU Affero General Public License (AGPL), -# version 3, or (at your option) any later version. -# - -# -# This file is part of cBioPortal. -# -# cBioPortal is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# - -"""OncoKB annotation import script for discrete CNA files. -""" - -import importlib -import logging.handlers -import os -import sys -from os import path -from pathlib import Path - -""" Configure relative imports if running as a script; see PEP 366 - It might passed as empty string by certain tooling to mark a top level module. """ -if __name__ == "__main__" and (__package__ is None or __package__ == ''): - """ Replace the script's location in the Python search path by the main - scripts/ folder, above it, so that the importer package folder is in - scope and *not* directly in sys.path; see PEP 395. """ - sys.path[0] = str(Path(sys.path[0]).resolve().parent) - __package__ = 'importer' - """ Explicitly import the package, which is needed on CPython 3.4 because it - doesn't include https://github.com/python/cpython/pull/2639. """ - importlib.import_module(__package__) - -from . import cbioportal_common -from . import libImportOncokb -from . import validateData - -FIELD_ENTREZ_ID = 'Entrez_Gene_Id' -FIELD_HUGO_SYMBOL = 'Hugo_Symbol' -CNA_TYPE = 'copyNameAlterationType' -ALTERATION = 'alteration' -SAMPLE_ID = 'sample_id' -INTERNAL_ID = 'id' -ONCOGENIC = libImportOncokb.ONCOKB_JSON_ONCOGENIC_FIELD - -required_cna_columns = [FIELD_HUGO_SYMBOL] - -# from: cbioportal-frontend file CopyNumberUtils.ts -cna_alteration_types = { - "DELETION": -2, - "LOSS": -1, - "GAIN": 1, - "AMPLIFICATION": 2, -} -cna_null_values = [ - '0', - 'NA', - 'nan', - '' -] - - -def main_import(args): - - study_dir = args.study_directory - server_url = args.url_server - - # get a logger to emit messages - logger = logging.getLogger(__name__) - logger.setLevel(logging.INFO) - exit_status_handler = validateData.MaxLevelTrackingHandler() - logger.addHandler(exit_status_handler) - - # set default message handler - text_handler = logging.StreamHandler(sys.stdout) - text_handler.setFormatter( - cbioportal_common.LogfileStyleFormatter(study_dir)) - collapsing_text_handler = cbioportal_common.CollapsingLogMessageHandler( - capacity=5e5, - flushLevel=logging.CRITICAL, - target=text_handler) - collapsing_text_handler.setLevel(logging.INFO) - logger.addHandler(collapsing_text_handler) - - meta_cna_file_path = libImportOncokb.find_meta_file_by_fields(study_dir, {'genetic_alteration_type': 'COPY_NUMBER_ALTERATION', 'datatype': 'DISCRETE'}) - cna_file_path = os.path.join(study_dir, libImportOncokb.find_data_file_from_meta_file(meta_cna_file_path)) - pd_file_name = 'data_cna_pd_annotations.txt' - pd_file_path = os.path.join(study_dir, pd_file_name) - meta_dict = libImportOncokb.read_meta_file(meta_cna_file_path) - if 'pd_annotations_filename' in meta_dict: - raise RuntimeError( - "Custom driver annotations filename already specified in discrete CNA meta file. Please remove and rerun.") - if path.exists(pd_file_path): - raise RuntimeError( - "Custom driver annotations file '" + pd_file_path + "' for discrete CNA already exists . Please remove and rerun.") - libImportOncokb.check_required_columns(libImportOncokb.get_first_line_cells(libImportOncokb.open_file(cna_file_path), '\t'), required_cna_columns) - - global portal_instance - if hasattr(args, 'portal_info_dir') and args.portal_info_dir is not None: - portal_instance = validateData.load_portal_info(args.portal_info_dir, logger, - offline=True) - else: - portal_instance = validateData.load_portal_info(server_url, logger) - - cna_events = get_cna_events(cna_file_path, server_url, portal_instance.alias_entrez_map) - id_to_annotation = fetch_and_map_oncokb_annotations(cna_events) - for cna_event in cna_events: - if cna_event[INTERNAL_ID] in id_to_annotation: - cna_event[ONCOGENIC] = id_to_annotation[cna_event[INTERNAL_ID]][ONCOGENIC] - - print("Updating study files ...", end = '') - write_annotations_to_file(cna_events, pd_file_path) - update_cna_metafile(meta_cna_file_path, pd_file_name) - print(" DONE") - - logger.info('Import complete') - - return exit_status_handler.get_exit_status() - -def get_cna_events(cna_file_path, server_url=None, alias_map=None): - """Extract CNA events from CNA data file.""" - assert server_url or alias_map, 'At least one of "server_url" or "alias_map" must be specified' - header_elements = libImportOncokb.get_first_line_cells(libImportOncokb.open_file(cna_file_path), '\t') - header_indexes = {} - for required_column in required_cna_columns + [FIELD_ENTREZ_ID]: - header_indexes[required_column] = header_elements.index(required_column) - sample_ids = [i for j, i in enumerate(header_elements) if j not in header_indexes.values()] - sample_indexes = {} - for sample_id in sample_ids: - sample_indexes[sample_id] = header_elements.index(sample_id) - - # reduce API requests - resolved_aliases = {} - - features = [] - cna_file = libImportOncokb.open_file(cna_file_path) - print("Reading features from file ...", end = '') - for line in cna_file: - if line == '\n' or line.startswith('#') or line.startswith(header_elements[0]): - continue # skip comment and header line - line_elements = line.rstrip('\n').split('\t') - for sample_id in sample_ids: - feature = {} - feature[SAMPLE_ID] = sample_id - cna_value = line_elements[sample_indexes[sample_id]] - try: - feature[ALTERATION] = 0 if cna_value in cna_null_values else int(round(float(cna_value))) - except TypeError: - continue - # CNA value 0 (no CNA) is skipped - if not feature[ALTERATION] in cna_alteration_types.values(): - continue - feature[CNA_TYPE] = list(cna_alteration_types.keys())[ - list(cna_alteration_types.values()).index(feature[ALTERATION])] - for column_name, index in header_indexes.items(): - value = line_elements[index] - if value != '': - feature[column_name] = value - elif column_name != FIELD_ENTREZ_ID: - print(Color.RED + "Empty value encounterd in column '" + column_name + "' in row " + str( - row_counter) + ". OncoKB annotations cannot be imported. Please fix and rerun." + Color.END, - file=sys.stderr) - print("!" * 71, file=sys.stderr) - sys.exit(1) - - # resolve gene symbols to Entrez Ids if needed - if FIELD_ENTREZ_ID in feature and feature[FIELD_ENTREZ_ID] is not None and feature[ - FIELD_ENTREZ_ID] != '': - entrez_gene_ids = [feature[FIELD_ENTREZ_ID]] - elif feature[FIELD_HUGO_SYMBOL] in portal_instance.hugo_entrez_map: - # in case of failure, try aliases - entrez_gene_ids = portal_instance.hugo_entrez_map.get( - feature[FIELD_HUGO_SYMBOL], - resolved_aliases.get(feature[FIELD_HUGO_SYMBOL]) - ) or libImportOncokb.try_get_entrez_from_alias(feature[FIELD_HUGO_SYMBOL], server_url, alias_map) - resolved_aliases[feature[FIELD_HUGO_SYMBOL]] = entrez_gene_ids - - if len(entrez_gene_ids) > 1: - logger.error(""" Multiple Entrez gene ids were found for a gene. - OncoKB annotations will not be imported for this gene. - Please fix and rerun. """, - extra={'symbol': feature[FIELD_HUGO_SYMBOL]}) - feature[FIELD_ENTREZ_ID] = None - elif len(entrez_gene_ids) == 0: - logger.error(""" Could not find the Entrez gene id for a gene. - OncoKB annotations will not be imported for this gene. - Please fix and rerun. """, - extra={'symbol': feature[FIELD_HUGO_SYMBOL]}) - feature[FIELD_ENTREZ_ID] = None - else: - feature[FIELD_ENTREZ_ID] = str(entrez_gene_ids[0]) - feature[INTERNAL_ID] = "_".join([feature[FIELD_ENTREZ_ID], feature[CNA_TYPE]]) - - features.append(feature) - cna_file.close() - # FIXME this should not occur, right? - # Remove duplicate entrez_gene_id/sample_id occurrences. - non_redundant_features_dict = {x[FIELD_ENTREZ_ID]+x[SAMPLE_ID]:x for x in features} - print(" DONE") - return non_redundant_features_dict.values(); - - -def fetch_and_map_oncokb_annotations(features): - """Submit CNA events to OncoKB.org and return OncoKB annotations.""" - id_to_annotation = {} - payload_list = create_request_payload(features) - annotations = libImportOncokb.fetch_oncokb_annotations(payload_list, libImportOncokb.DEFAULT_ONCOKB_URL + "/annotate/copyNumberAlterations") - for annotation in annotations: - id = annotation[libImportOncokb.ONCOKB_JSON_QUERY_FIELD][libImportOncokb.ONCOKB_JSON_ID_FIELD] - id_to_annotation[id] = annotation - return id_to_annotation - - -def create_request_payload(features): - """Translate CNA events into JSON for message body.""" - elements = {} - for feature in features: - elements[feature[INTERNAL_ID]] = '{ "copyNameAlterationType":"%s", "gene":{"entrezGeneId":%s}, "id":"%s", "tumorType":null} ' \ - % (feature[CNA_TYPE], feature[FIELD_ENTREZ_ID], feature[INTERNAL_ID]) - # normalize for alteration id since same alteration is represented in multiple samples - return list(elements.values()) - - -def update_cna_metafile(meta_cna_file_path, pd_file_name): - """Add reference to pd annotation file to CNA meta file.""" - meta_file = open(meta_cna_file_path, "r") - lines = meta_file.readlines() - meta_file.close() - meta_file_name = os.path.basename(meta_cna_file_path) - dir = os.path.dirname(meta_cna_file_path) - os.rename(meta_cna_file_path, os.path.join(dir, 'ONCOKB_IMPORT_BACKUP_' + meta_file_name)) - if lines[-1] == '\n': - lines = lines[:-1] - meta_file = open(meta_cna_file_path, "w") - for line in lines: - meta_file.write(line) - meta_file.write('pd_annotations_filename: ' + pd_file_name + '\n') - meta_file.close() - - -def write_annotations_to_file(features, pd_file_name): - """Write CNA pd annotations to data file.""" - new_file = open(pd_file_name, "w") - new_file.write("SAMPLE_ID\tEntrez_Gene_Id\tcbp_driver\tcbp_driver_annotation\tcbp_driver_tiers\tcbp_driver_tiers_annotation\n") - for feature in features: - if ONCOGENIC in feature: - oncokb_annotation = feature[ONCOGENIC] - line = feature[SAMPLE_ID] + '\t' + feature[FIELD_ENTREZ_ID] + libImportOncokb.get_annotation_cells(oncokb_annotation) - new_file.write(line) - new_file.close() - - -if __name__ == '__main__': - try: - parsed_args = libImportOncokb.interface() - exit_status = main_import(parsed_args) - finally: - logging.shutdown() - del logging._handlerList[:] # workaround for harmless exceptions on exit - print(('Import of OncoKB annotations for discrete CNA {status}.'.format( - status={0: 'succeeded', - 1: 'failed', - 2: 'not performed as problems occurred', - 3: 'succeeded with warnings'}.get(exit_status, 'unknown'))), file=sys.stderr) - sys.exit(exit_status) diff --git a/core/src/main/scripts/importer/importOncokbMutation.py b/core/src/main/scripts/importer/importOncokbMutation.py deleted file mode 100644 index 1b2cc9b0909..00000000000 --- a/core/src/main/scripts/importer/importOncokbMutation.py +++ /dev/null @@ -1,278 +0,0 @@ -#!/usr/bin/env python3 - -# -# Copyright (c) 2020 The Hyve B.V. -# This code is licensed under the GNU Affero General Public License (AGPL), -# version 3, or (at your option) any later version. -# - -# -# This file is part of cBioPortal. -# -# cBioPortal is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# - -"""OncoKB annotation import script for MAF files. -""" - -import importlib -import logging.handlers -import os -import sys -from pathlib import Path - -""" Configure relative imports if running as a script; see PEP 366 - It might passed as empty string by certain tooling to mark a top level module. """ -if __name__ == "__main__" and (__package__ is None or __package__ == ''): - """ Replace the script's location in the Python search path by the main - scripts/ folder, above it, so that the importer package folder is in - scope and *not* directly in sys.path; see PEP 395. """ - sys.path[0] = str(Path(sys.path[0]).resolve().parent) - __package__ = 'importer' - """ Explicitly import the package, which is needed on CPython 3.4 because it - doesn't include https://github.com/python/cpython/pull/2639. """ - importlib.import_module(__package__) - -from . import cbioportal_common -from . import libImportOncokb -from . import validateData - -required_mutation_columns = ['Hugo_Symbol', 'HGVSp_Short', 'Variant_Classification', 'Protein_position'] -disallowed_mutation_columns = ['cbp_driver', 'cbp_driver_annotation', 'cbp_driver_tiers', 'cbp_driver_tiers_annotation'] -portal_instance = None -FIELD_ENTREZ_ID = 'Entrez_Gene_Id' -FIELD_HUGO_SYMBOL = 'Hugo_Symbol' -INTERNAL_ID = 'id' -FIELD_PROTEIN_CHANGE = 'HGVSp_Short' -FIELD_VARIANT_CLASS = 'Variant_Classification' -FIELD_PROTEIN_POSITION = 'Protein_position' -ONCOGENIC = libImportOncokb.ONCOKB_JSON_ONCOGENIC_FIELD -ONCOKB_ID = libImportOncokb.ONCOKB_JSON_ID_FIELD -ONCOKB_QUERY = libImportOncokb.ONCOKB_JSON_QUERY_FIELD - -def main_import(args): - - study_dir = args.study_directory - server_url = args.url_server - - # get a logger to emit messages - logger = logging.getLogger(__name__) - logger.setLevel(logging.INFO) - exit_status_handler = validateData.MaxLevelTrackingHandler() - logger.addHandler(exit_status_handler) - - # set default message handler - text_handler = logging.StreamHandler(sys.stdout) - text_handler.setFormatter( - cbioportal_common.LogfileStyleFormatter(study_dir)) - collapsing_text_handler = cbioportal_common.CollapsingLogMessageHandler( - capacity=5e5, - flushLevel=logging.CRITICAL, - target=text_handler) - collapsing_text_handler.setLevel(logging.INFO) - logger.addHandler(collapsing_text_handler) - - meta_file_mutation = libImportOncokb.find_meta_file_by_fields(study_dir, {'genetic_alteration_type': 'MUTATION_EXTENDED'}) - mutation_file_path = os.path.join(study_dir, libImportOncokb.find_data_file_from_meta_file(meta_file_mutation)) - libImportOncokb.check_required_columns(libImportOncokb.get_first_line_cells(libImportOncokb.open_file(mutation_file_path), '\t'), required_mutation_columns) - check_disallowed_columns(libImportOncokb.get_first_line_cells(libImportOncokb.open_file(mutation_file_path), '\t')) - - global portal_instance - if hasattr(args, 'portal_info_dir') and args.portal_info_dir is not None: - portal_instance = validateData.load_portal_info(args.portal_info_dir, logger, - offline=True) - else: - portal_instance = validateData.load_portal_info(server_url, logger) - - row_number_to_mutation_event = get_features(mutation_file_path, server_url, portal_instance.alias_entrez_map) - row_number_to_annotation = fetch_and_map_oncokb_annotations(row_number_to_mutation_event) - write_annotations_to_file(row_number_to_annotation, mutation_file_path) - - logger.info('Import complete') - - return exit_status_handler.get_exit_status() - -def check_disallowed_columns(header_elements): - disallowed_columns = [] - for disallowed_column in disallowed_mutation_columns: - if disallowed_column in header_elements: - disallowed_columns.append(disallowed_column) - if len(disallowed_columns) > 0: - raise RuntimeError("One or more disallowed columns for OncoKB import are present in the MAF file. " \ - "Disallowed column(s): [" + ", ".join(disallowed_columns) + "]") - - -def get_features(mutation_file_path, server_url=None, alias_map=None): - """Extract Mutation events from MAF data file.""" - assert server_url or alias_map, 'At least one of "server_url" or "alias_map" must be specified' - - header_elements = libImportOncokb.get_first_line_cells(libImportOncokb.open_file(mutation_file_path), '\t') - header_indexes = {} - for required_column in required_mutation_columns + [FIELD_ENTREZ_ID]: - header_indexes[required_column] = header_elements.index(required_column) - row_number_to_feature = {} - row_counter = 0 - mutation_file = libImportOncokb.open_file(mutation_file_path) - - # reduce API requests - resolved_aliases = {} - - print("Reading features from file ...", end = '') - for line in mutation_file: - row_counter += 1 - if line == '\n' or line.startswith('#') or line.startswith(header_elements[0]): - continue # skip comment and header line - line_elements = line.rstrip('\n').split('\t') - feature = {} - for column_name, index in header_indexes.items(): - value = line_elements[index] - if value != '': - if column_name == FIELD_PROTEIN_CHANGE: - value = value.replace('p.', '') - feature[column_name] = value - elif column_name != FIELD_ENTREZ_ID and column_name != FIELD_PROTEIN_POSITION and column_name != FIELD_PROTEIN_CHANGE: - raise RuntimeError("Empty value encountered in column '" + - column_name + "' in row " + str(row_counter) + "." \ - "OncoKB annotations cannot be imported. Please fix and rerun.") - - # skip lines that have empty protein change column - if FIELD_PROTEIN_CHANGE not in feature: - continue - - # resolve gene symbols to Entrez Ids if needed - if FIELD_ENTREZ_ID in feature and feature[FIELD_ENTREZ_ID] is not None and feature[FIELD_ENTREZ_ID] != '': - entrez_gene_ids = [feature[FIELD_ENTREZ_ID]] - else: - # in case of failure, try aliases - entrez_gene_ids = portal_instance.hugo_entrez_map.get( - feature[FIELD_HUGO_SYMBOL], - resolved_aliases.get(feature[FIELD_HUGO_SYMBOL]) - ) or libImportOncokb.try_get_entrez_from_alias(feature[FIELD_HUGO_SYMBOL], server_url, alias_map) - resolved_aliases[feature[FIELD_HUGO_SYMBOL]] = entrez_gene_ids - - if len(entrez_gene_ids) > 1: - logger.error(""" Multiple Entrez gene ids were found for a gene. - OncoKB annotations will not be imported for this gene. - Please fix and rerun. """, - extra={'symbol': feature[FIELD_HUGO_SYMBOL], 'row': str(row_counter)}) - feature[FIELD_ENTREZ_ID] = None - elif len(entrez_gene_ids) == 0: - logger.error(""" Could not find the Entrez gene id for a gene. - OncoKB annotations will not be imported for this gene. - Please fix and rerun. """, - extra={'symbol': feature[FIELD_HUGO_SYMBOL], 'row': str(row_counter)}) - feature[FIELD_ENTREZ_ID] = None - else: - feature[FIELD_ENTREZ_ID] = str(entrez_gene_ids[0]) - feature[INTERNAL_ID] = "_".join( - [feature[FIELD_ENTREZ_ID], feature[FIELD_PROTEIN_CHANGE], feature[FIELD_VARIANT_CLASS]]) - - row_number_to_feature[row_counter] = feature - mutation_file.close() - print(" DONE") - return row_number_to_feature - - -def fetch_and_map_oncokb_annotations(row_number_to_feature): - """Submit mutation events to OncoKB.org and return OncoKB annotations.""" - id_to_rownumber = {} - for row_number, feature in row_number_to_feature.items(): - id_to_rownumber[feature[INTERNAL_ID]] = row_number - payload_list = create_request_payload(row_number_to_feature) - annotations = libImportOncokb.fetch_oncokb_annotations(payload_list, libImportOncokb.DEFAULT_ONCOKB_URL + "/annotate/mutations/byProteinChange") - row_number_to_annotation = {} - id_to_annotation = {annotation[ONCOKB_QUERY][ONCOKB_ID]: annotation for annotation in annotations} - for row_number, feature in row_number_to_feature.items(): - if feature[INTERNAL_ID] in id_to_annotation: - row_number_to_annotation[row_number] = id_to_annotation[feature[INTERNAL_ID]] - return row_number_to_annotation - - -def create_request_payload(row_number_to_feature): - """Translate mutation events into JSON for message body.""" - elements = {} - for row_number, feature in row_number_to_feature.items(): - protein_position = feature[FIELD_PROTEIN_POSITION] if FIELD_PROTEIN_POSITION in feature and feature[ - FIELD_PROTEIN_POSITION] != 'NA' else None - protein_change = feature[FIELD_PROTEIN_CHANGE] if FIELD_PROTEIN_CHANGE in feature and feature[FIELD_PROTEIN_CHANGE] != 'NA' else None - proteinStart = libImportOncokb.get_protein_pos_start(protein_position, protein_change) - proteinEnd = libImportOncokb.get_protein_pos_end(protein_position, protein_change) - if proteinEnd == -1: - proteinEnd = proteinStart - if proteinStart != -1: - elements[feature[ - INTERNAL_ID]] = '{ "alteration":"%s", "consequence":"%s", "gene":{"entrezGeneId":%s}, "id":"%s", "proteinStart":%s, "proteinEnd":%s, "tumorType":null} ' \ - % (feature[FIELD_PROTEIN_CHANGE], feature[FIELD_VARIANT_CLASS], feature[FIELD_ENTREZ_ID], - feature[INTERNAL_ID], proteinStart, proteinEnd) - else: - elements[feature[ - INTERNAL_ID]] = '{ "alteration":"%s", "consequence":"%s", "gene":{"entrezGeneId":%s}, "id":"%s", "tumorType":null} ' \ - % (feature[FIELD_PROTEIN_CHANGE], feature[FIELD_VARIANT_CLASS], feature[FIELD_ENTREZ_ID], - feature[INTERNAL_ID]) - - # normalize for alteration id since same alteration is represented in multiple samples - return list(elements.values()) - - -def write_annotations_to_file(row_number_to_annotation, mutations_file_path): - """Add pd annotation columns and data fields to MAF file.""" - meta_cna_file_name = os.path.basename(mutations_file_path) - dir = os.path.dirname(mutations_file_path) - backup_file_name = 'ONCOKB_IMPORT_BACKUP_' + meta_cna_file_name - backup_file_path = os.path.join(dir, backup_file_name) - print("Updating study files ...", end = '') - try: - new_file = open(mutations_file_path + '_temp', "x") - header_updated = False - row_counter = 0 - mutations_file = libImportOncokb.open_file(mutations_file_path) - for line in mutations_file: - row_counter += 1 - if not line.startswith('#'): - if not header_updated: - line = line.rstrip( - '\n') + '\tcbp_driver\tcbp_driver_annotation\tcbp_driver_tiers\tcbp_driver_tiers_annotation\n' # add custom driver columns to header - header_updated = True - else: - if row_counter in row_number_to_annotation: - oncokb_annotation = row_number_to_annotation[row_counter][ONCOGENIC] - line = line.rstrip('\n') + libImportOncokb.get_annotation_cells(oncokb_annotation) - else: - line = line.rstrip('\n') + '\t\t\t\t\n' - new_file.write(line) - except FileExistsError: - raise FileExistsError("""Backup MAF file that does not contain OncoKB annotations does already exist. - Please remove file '""" + backup_file_name + "' and try again.") - finally: - mutations_file.close() - new_file.close() - os.rename(mutations_file_path, backup_file_path) - os.rename(mutations_file_path + '_temp', mutations_file_path) - print(" DONE") - return - - -if __name__ == '__main__': - try: - parsed_args = libImportOncokb.interface() - exit_status = main_import(parsed_args) - finally: - logging.shutdown() - del logging._handlerList[:] # workaround for harmless exceptions on exit - print(('Import of OncoKB annotations for mutations {status}.'.format( - status={0: 'succeeded', - 1: 'failed', - 2: 'not performed as problems occurred', - 3: 'succeeded with warnings'}.get(exit_status, 'unknown'))), file=sys.stderr) - sys.exit(exit_status) diff --git a/core/src/main/scripts/importer/libImportOncokb.py b/core/src/main/scripts/importer/libImportOncokb.py deleted file mode 100644 index 97a2c506913..00000000000 --- a/core/src/main/scripts/importer/libImportOncokb.py +++ /dev/null @@ -1,295 +0,0 @@ -#!/usr/bin/env python3 - -# -# Copyright (c) 2020 The Hyve B.V. -# This code is licensed under the GNU Affero General Public License (AGPL), -# version 3, or (at your option) any later version. -# - -# -# This file is part of cBioPortal. -# -# cBioPortal is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# - -"""OncoKB annotation import script. - -Run with the command line option --help for usage information. -""" - -import re -import os -import requests -import json -import argparse - -BATCH_SIZE = 200 -DEFAULT_ONCOKB_URL = "https://public.api.oncokb.org/api/v1" -ONCOKB_JSON_QUERY_FIELD = 'query' -ONCOKB_JSON_ID_FIELD = 'id' -ONCOKB_JSON_ONCOGENIC_FIELD = 'oncogenic' - -def load_portal_genes(server_url): - parsed_json = request_from_portal_api(server_url, "genes", logging.getLogger(__name__)) - return transform_symbol_entrez_map(parsed_json, 'hugoGeneSymbol') - - -def try_get_entrez_from_alias(alias, server_url=None, alias_map=None): - assert server_url or alias_map - - if server_url: - response = requests.get(f'{server_url}/api/genes?alias={alias}').json() - entrez = [gene['entrezGeneId'] for gene in response] - elif alias_map: - entrez = alias_map.get(alias, []) - - return entrez - - -# after: getProteinStart() in ExtendedMutationUtil.java -def get_protein_pos_start(protein_position, protein_change): - start = -1 - if protein_position is not None: - start_end = protein_position.split('/')[0].split('-') - if len(start_end) > 0: - start = start_end[0] - if start == -1 and protein_change is not None: - start_stop = annotate_protein_change(protein_change) - start = str(start_stop['start']) - return start - - -# after: getProteinPosEnd() in ExtendedMutationUtil.java -def get_protein_pos_end(protein_position, protein_change): - end = -1 - if protein_position is not None: - start_end = protein_position.split('/')[0].split('-') - if len(start_end) > 1: - end = start_end[1] - if end == -1 and protein_change is not None: - start_stop = annotate_protein_change(protein_change) - end = str(start_stop['stop']) - return end - - -# after: annotateProteinChange() in ExtendedMutationUtil.java -def annotate_protein_change(protein_change): - start = -1 - end = -1 - match = re.findall(r'^([A-Z\*]+)([0-9]+)([A-Z\*\?]*)$', protein_change) - if len(match) > 0: - ref = match[0][0] - var = match[0][2] - refL = len(ref) - start = int(match[0][1]) - if ref == var or ref == '*' or var == '*' or start == 1 or var == '?': - end = start - else: - end = start + refL - 1 - else: - match = re.findall(r'[A-Z]?([0-9]+)(_[A-Z]?([0-9]+))?(delins|ins)([A-Z]+)', protein_change) - if len(match) > 0: - start = int(match[0][0]) - if match[0][2] is not None and match[0][2] != '': - end = int(match[0][2]) - else: - end = start - else: - match = re.findall(r'[A-Z]?([0-9]+)(_[A-Z]?([0-9]+))?(_)?splice', protein_change) - if len(match) > 0: - start = int(match[0][0]) - if match[0][2] is not None and match[0][2] != '': - end = int(match[0][2]) - else: - end = start - else: - match = re.findall(r'[A-Z]?([0-9]+)_[A-Z]?([0-9]+)(.+)', protein_change) - if len(match) > 0: - start = int(match[0][0]) - end = int(match[0][1]) - else: - match = re.findall(r'([A-Z\*])([0-9]+)[A-Z]?fs.*', protein_change) - if len(match) > 0: - start = int(match[0][1]) - end = start - else: - match = re.findall(r'([A-Z]+)?([0-9]+)((ins)|(del)|(dup))', protein_change) - if len(match) > 0: - start = int(match[0][1]) - end = start - return {"start": start, "stop": end} - - -def evaluate_driver_passenger(oncogenic): - """Translate the OncoKB 'oncogenic' value to Putative_Driver' or Putative_Passenger'""" - custom_annotation = 'Putative_Passenger' - if oncogenic.lower() in ['oncogenic', 'likely oncogenic', 'predicted oncogenic']: - custom_annotation = 'Putative_Driver' - return custom_annotation - - -def get_first_line(file_handle): - """Read the first line of a file ignoring comment lines.""" - while True: - first_line = file_handle.readline() - if not first_line.startswith('#'): - file_handle.close() - return first_line.rstrip('\n') - -def get_first_line_cells(file_handle, separator = '\t'): - return get_first_line(file_handle).split(separator); - -def find_meta_file_by_fields(study_dir, field_dict): - """In the study directory find the meta file that holds specified field values.""" - filenames = os.listdir(study_dir) - meta_files = [ file for file in filenames if file.startswith('meta_')] - meta_files = [ study_dir + "/" + file for file in meta_files ] - for meta_file in meta_files: - fields = read_meta_file(meta_file) - match_found = True - for field_name, field_value in field_dict.items(): - if field_name not in fields or fields[field_name] != field_value: - match_found = False - if match_found: - return os.path.join(study_dir, meta_file) - return None - - -def find_data_file_from_meta_file(metafile_path): - """From specified meta file return the value of the 'data_filename' field.""" - fields = read_meta_file(metafile_path) - return fields['data_filename'] - - -def read_meta_file(metafile_path): - """Read fields of specified meta into a dict.""" - fields = {} - with open(metafile_path) as metafile: - for line in metafile: - if line == '\n': - continue - match = re.findall(r'\s*(\S+)\s*:\s*(\S+)', line)[0] - fields[match[0]] = match[1] - return fields - -def get_oncokb_curated_genes(): - """Do a call to OncoKB to retrieve the Curated Gene List. """ - request_url = DEFAULT_ONCOKB_URL + "/utils/allCuratedGenes" - request = requests.get(url=request_url) - - if request.ok: - return request.json() - else: - if request.status_code == 404: - raise ConnectionError( - "An error occurred when trying to connect to OncoKB for retrieving of mutation annotations.") - else: - request.raise_for_status() - -def get_annotated_oncokb_curated_genes_by_entrezId(): - """ Get a list with the Entrez Gene IDs of the OncoKB Curated Gene List, only the genes that have - annotations. """ - curated_genes = get_oncokb_curated_genes() - entrez_ids = [] - for gene in curated_genes: - entrez_ids += [gene["entrezGeneId"]] - return entrez_ids - -def filter_payload(payload_list, sv): - """ Remove the genes that are not an OncoKB Curated Gene List from the payload. """ - curated_genes = get_annotated_oncokb_curated_genes_by_entrezId() - filtered_payload = [] - for element in payload_list: - parsed_element = json.loads(element) - if sv: - if parsed_element["geneA"]["entrezGeneId"] in curated_genes and parsed_element["geneB"]["entrezGeneId"] in curated_genes: - filtered_payload += [element] - else: - if parsed_element["gene"]["entrezGeneId"] in curated_genes: - filtered_payload += [element] - return filtered_payload - -def fetch_oncokb_annotations(payload_list, request_url, sv=False): - """Submit alterations to OncoKB.org and return OncoKB annotations.""" - annotations = [] - request_headers = {'Content-Type': 'application/json', 'Accept': 'application/json'} - filtered_payload = filter_payload(payload_list, sv) - payload_batches = partition_list(filtered_payload, BATCH_SIZE) - for payload_batch in payload_batches: - payload = '['+ ', '.join(payload_batch) + ']' - print("Fetching batch of " + str(len(payload_batch)) + " annotations ...", end = '') - request = requests.post(url=request_url, headers=request_headers, data=payload) - if request.ok: - print(" DONE") - # Parse transcripts and exons from JSON - result_json = request.json() - annotations = annotations + result_json - else: - if request.status_code == 404: - print( - Color.RED + 'An error occurred when trying to connect to OncoKB for retrieving of mutation annotations' + Color.END, - file=sys.stderr) - sys.exit(1) - else: - request.raise_for_status() - return annotations - -def partition_list(list, n): - """Yield successive n-sized chunks from list.""" - for i in range(0, len(list), n): - yield list[i:i + n] - - -def check_required_columns(header_elements, required_columns): - missing_columns = [] - for required_column in required_columns: - if not required_column in header_elements: - missing_columns.append(required_column) - if len(missing_columns) > 0: - raise RuntimeError("One or more required columns for OncoKB import are missing in the input file. " \ - "Missing column(s): [" + ", ".join(missing_columns) + "]") - -def open_file(file_name): - """Open file and handle exception when not found.""" - try: - file = open(file_name) - except FileNotFoundError: - raise FilenotFoundError("Could not open file at path '" + file_name + "'") - return file - - -def interface(): - parser = argparse.ArgumentParser(description='cBioPortal OncoKB annotation importer') - parser.add_argument('-u', '--url_server', - type=str, - default='http://localhost:8080', - help='URL to cBioPortal server. You can ' - 'set this if your URL is not ' - 'http://localhost:8080') - parser.add_argument('-m', '--study_directory', type=str, required=True, - help='path to study directory.') - parser.add_argument('-p', '--portal-info-dir', help='Specify a directory of database export JSON files for validation.' - 'genes.json is used to resolved gene symbols/IDs') - parser = parser.parse_args() - return parser - -def get_annotation_cells(oncokb_annotation): - oncogenicity = evaluate_driver_passenger(oncokb_annotation) - driver_field_annotation = '' - tier_field_annotation = '' - if oncogenicity != '': - driver_field_annotation = 'Annotation imported from OncoKB.org' - if oncokb_annotation != '': - tier_field_annotation = 'Annotation imported from OncoKB.org' - return '\t%s\t%s\t%s\t%s\n' % (oncogenicity, driver_field_annotation, oncokb_annotation, tier_field_annotation) diff --git a/core/src/main/scripts/importer/metaImport.py b/core/src/main/scripts/importer/metaImport.py deleted file mode 100755 index f8262a5958d..00000000000 --- a/core/src/main/scripts/importer/metaImport.py +++ /dev/null @@ -1,219 +0,0 @@ -#!/usr/bin/env python3 - -__author__ = 'priti' - -# ---------------------------------------------------------------------------- -# Import -# ---------------------------------------------------------------------------- - - -import sys -import os -import importlib -import argparse -import logging -from pathlib import Path - -# configure relative imports if running as a script; see PEP 366 -# it might passed as empty string by certain tooling to mark a top level module -if __name__ == "__main__" and (__package__ is None or __package__ == ''): - # replace the script's location in the Python search path by the main - # scripts/ folder, above it, so that the importer package folder is in - # scope and *not* directly in sys.path; see PEP 395 - sys.path[0] = str(Path(sys.path[0]).resolve().parent) - __package__ = 'importer' - # explicitly import the package, which is needed on CPython 3.4 because it - # doesn't include https://github.com/python/cpython/pull/2639 - importlib.import_module(__package__) - -from . import validateData -from . import cbioportalImporter -from . import importOncokbMutation -from . import importOncokbDiscreteCNA -from . import libImportOncokb - - -# ---------------------------------------------------------------------------- -# Global variables -# ---------------------------------------------------------------------------- - -class Color(object): - PURPLE = '\033[95m' - CYAN = '\033[96m' - DARKCYAN = '\033[36m' - BLUE = '\033[94m' - GREEN = '\033[92m' - YELLOW = '\033[93m' - RED = '\033[91m' - BOLD = '\033[1m' - UNDERLINE = '\033[4m' - END = '\033[0m' - - -# ---------------------------------------------------------------------------- -# Functions -# ---------------------------------------------------------------------------- - -def interface(): - parser = argparse.ArgumentParser(description='cBioPortal meta Importer') - parser.add_argument('-s', '--study_directory', type=str, required=True, - help='path to directory.') - portal_mode_group = parser.add_mutually_exclusive_group() - portal_mode_group.add_argument('-u', '--url_server', - type=str, - default='http://localhost/cbioportal', - help='URL to cBioPortal server. You can ' - 'set this if your URL is not ' - 'http://localhost/cbioportal') - portal_mode_group.add_argument('-p', '--portal_info_dir', - type=str, - help='Path to a directory of cBioPortal ' - 'info files to be used instead of ' - 'contacting the web API') - # temporary workaround to simplify import process when no web-server is running. TODO: replace by solution for #1466 - portal_mode_group.add_argument('-n', '--no_portal_checks', default=False, - action='store_true', - help='Skip tests requiring information ' - 'from the cBioPortal installation') - parser.add_argument('-jar', '--jar_path', type=str, required=False, - help=( - 'Path to scripts JAR file (default: locate it ' - 'relative to the import script)')) - parser.add_argument('-html', '--html_table', type=str, - help='path to html report') - parser.add_argument('-v', '--verbose', action='store_true', - help='report status info messages while validating') - parser.add_argument('-o', '--override_warning', action='store_true', - help='override warnings and continue importing') - parser.add_argument('-r', '--relaxed_clinical_definitions', required=False, - action='store_true', default=False, - help='Option to enable relaxed mode for validator when ' - 'validating clinical data without header definitions') - parser.add_argument('-m', '--strict_maf_checks', required=False, - action='store_true', default=False, - help='Option to enable strict mode for validator when ' - 'validating mutation data') - parser.add_argument('-update', '--update_generic_assay_entity', type=str, required=False, default="False", - help='Set as True to update the existing generic assay entities, set as False to keep the existing generic assay entities for generic assay') - parser.add_argument('-oncokb', '--import_oncokb', action='store_true', - help='Set as True to download OncoKB annotations for Mutations and CNA and load as custom driver annotations') - parser.add_argument('-skipimport', '--skip_db_import', action='store_true', - help='Perform validation and OncoKB download but do not import study into database.') - parser = parser.parse_args() - return parser - - -# ---------------------------------------------------------------------------- -# Main -# ---------------------------------------------------------------------------- - -if __name__ == '__main__': - # Parse user input - args = interface() - # supply parameters that the validation script expects to have parsed - args.error_file = False - - study_dir = args.study_directory - - # Validate the study directory. - print("Starting validation...\n", file=sys.stderr) - try: - exitcode = validateData.main_validate(args) - except KeyboardInterrupt: - print(Color.BOLD + "\nProcess interrupted. " + Color.END, file=sys.stderr) - print("#" * 71 + "\n", file=sys.stderr) - raise - except: - print("!" * 71, file=sys.stderr) - print(Color.RED + "Error occurred during validation step:" + Color.END, file=sys.stderr) - raise - finally: - # make sure all log messages are flushed - validator_logger = logging.getLogger(validateData.__name__) - for log_handler in validator_logger.handlers: - log_handler.close() - validator_logger.handlers = [] - - # Import OncoKB annotations when asked, and there are no validation warnings or warnings are overruled - study_is_valid = exitcode == 0 or (exitcode == 3 and args.override_warning) - if study_is_valid and args.import_oncokb: - mutation_meta_file_path = libImportOncokb.find_meta_file_by_fields(study_dir, {'genetic_alteration_type': 'MUTATION_EXTENDED'}) - mutation_data_file_name = libImportOncokb.find_data_file_from_meta_file(mutation_meta_file_path) - mutation_data_file_path = os.path.join(study_dir, mutation_data_file_name) - study_is_modified = False - print("\n") - if os.path.exists(mutation_data_file_path): - print("Starting import of OncoKB annotations for mutations file ...\n", file=sys.stderr) - try: - exitcode = importOncokbMutation.main_import(args) - study_is_modified = True - except KeyboardInterrupt: - print(Color.BOLD + "\nProcess interrupted. " + Color.END, file=sys.stderr) - print("#" * 71 + "\n", file=sys.stderr) - raise - except: - print("!" * 71, file=sys.stderr) - print(Color.RED + "Error occurred during import of OncoKB for mutations file:" + Color.END, file=sys.stderr) - raise - finally: - # make sure all log messages are flushed - validator_logger = logging.getLogger(importOncokbMutation.__name__) - for log_handler in validator_logger.handlers: - log_handler.close() - validator_logger.handlers = [] - cna_meta_file_path = libImportOncokb.find_meta_file_by_fields(study_dir, {'genetic_alteration_type': 'COPY_NUMBER_ALTERATION', 'datatype': 'DISCRETE'}) - cna_data_file_name = libImportOncokb.find_data_file_from_meta_file(cna_meta_file_path) - cna_data_file_path = os.path.join(study_dir, cna_data_file_name) - if os.path.exists(cna_data_file_path): - print("Starting import of OncoKB annotations for discrete CNA file ...\n", file=sys.stderr) - try: - exitcode = importOncokbDiscreteCNA.main_import(args) - study_is_modified = True - except KeyboardInterrupt: - print(Color.BOLD + "\nProcess interrupted. " + Color.END, file=sys.stderr) - print("#" * 71 + "\n", file=sys.stderr) - raise - except: - print("!" * 71, file=sys.stderr) - print(Color.RED + "Error occurred during import of OncoKB for discrete CNA file:" + Color.END, file=sys.stderr) - raise - finally: - # make sure all log messages are flushed - validator_logger = logging.getLogger(importOncokbDiscreteCNA.__name__) - for log_handler in validator_logger.handlers: - log_handler.close() - validator_logger.handlers = [] - # Revalidate when custom annotations were added - if study_is_modified: - print("Starting re-validation of study with OncoKB annotations ...\n", file=sys.stderr) - exitcode = validateData.main_validate(args) - - # Depending on validation results, load the study or notify the user - try: - print("\n") - print("#" * 71, file=sys.stderr) - if exitcode == 1: - print(Color.RED + "One or more errors reported above. Please fix your files accordingly" + Color.END, file=sys.stderr) - print("!" * 71, file=sys.stderr) - elif exitcode == 3: - if args.override_warning and not args.skip_db_import: - print(Color.BOLD + "Overriding Warnings. Importing study now" + Color.END, file=sys.stderr) - print("#" * 71 + "\n", file=sys.stderr) - cbioportalImporter.main(args) - exitcode = 0 - else: - print(Color.BOLD + "Warnings. Please fix your files or import with override warning option" + Color.END, file=sys.stderr) - print("#" * 71, file=sys.stderr) - elif exitcode == 0 and not args.skip_db_import: - print(Color.BOLD + "Everything looks good. Importing study now" + Color.END, file=sys.stderr) - print("#" * 71 + "\n", file=sys.stderr) - cbioportalImporter.main(args) - except KeyboardInterrupt: - print(Color.BOLD + "\nProcess interrupted. You will have to run this again to make sure study is completely loaded." + Color.END, file=sys.stderr) - print("#" * 71, file=sys.stderr) - raise - except: - print("!" * 71, file=sys.stderr) - print(Color.RED + "Error occurred during data loading step. Please fix the problem and run this again to make sure study is completely loaded." + Color.END, file=sys.stderr) - raise - sys.exit(exitcode) diff --git a/core/src/main/scripts/importer/updateOncokbAnnotations.py b/core/src/main/scripts/importer/updateOncokbAnnotations.py deleted file mode 100644 index df7799387ca..00000000000 --- a/core/src/main/scripts/importer/updateOncokbAnnotations.py +++ /dev/null @@ -1,289 +0,0 @@ -#!/usr/bin/env python3 - -# -# Copyright (c) 2020 The Hyve B.V. -# This code is licensed under the GNU Affero General Public License (AGPL), -# version 3, or (at your option) any later version. -# - -# -# This file is part of cBioPortal. -# -# cBioPortal is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# - -"""Script to update OncoKB annotation for the provided study. -""" - -import argparse -import importlib -import logging.handlers -import sys -import MySQLdb -from pathlib import Path -from cbioportal_common import get_database_properties, get_db_cursor -import libImportOncokb - - -# configure relative imports if running as a script; see PEP 366 -# it might passed as empty string by certain tooling to mark a top level module -if __name__ == "__main__" and (__package__ is None or __package__ == ''): - # replace the script's location in the Python search path by the main - # scripts/ folder, above it, so that the importer package folder is in - # scope and *not* directly in sys.path; see PEP 395 - sys.path[0] = str(Path(sys.path[0]).resolve().parent) - __package__ = 'importer' - # explicitly import the package, which is needed on CPython 3.4 because it - # doesn't include https://github.com/python/cpython/pull/2639 - importlib.import_module(__package__) - - -ERROR_FILE = sys.stderr -REFERENCE_GENOME = {'hg19': 'GRCh37', 'hg38': 'GRCh38'} - -# from: cbioportal-frontend file CopyNumberUtils.ts -cna_alteration_types = { - "DELETION": -2, - "LOSS": -1, - "GAIN": 1, - "AMPLIFICATION": 2, -} - -def get_current_mutation_data(study_id, cursor): - """ Get mutation data from the current study. - Returns an array of dictionaries, with the following keys: - id, geneticProfileId, entrezGeneId, alteration, and consequence - """ - mutations = [] - try: - cursor.execute('SELECT genetic_profile.GENETIC_PROFILE_ID, mutation_event.ENTREZ_GENE_ID, PROTEIN_CHANGE as ALTERATION, ' + - 'MUTATION_TYPE as CONSEQUENCE, mutation.MUTATION_EVENT_ID, mutation.SAMPLE_ID FROM cbioportal.mutation_event ' + - 'inner join mutation on mutation.MUTATION_EVENT_ID = mutation_event.MUTATION_EVENT_ID ' + - 'inner join genetic_profile on genetic_profile.GENETIC_PROFILE_ID = mutation.GENETIC_PROFILE_ID ' + - 'inner join cancer_study on cancer_study.CANCER_STUDY_ID = genetic_profile.CANCER_STUDY_ID ' + - 'WHERE cancer_study.CANCER_STUDY_IDENTIFIER = "'+study_id +'"') - for row in cursor.fetchall(): - mutations += [{ "id": "_".join([str(row[4]), str(row[0]), str(row[5])]), "geneticProfileId": row[0], "entrezGeneId": row[1], - "alteration": row[2], "consequence": row[3]}] - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - return None - return mutations - -def get_current_cna_data(study_id, cursor): - """ Get cna data from the current study. - Returns an array of dictionaries, with the following keys: - id, geneticProfileId, entrezGeneId, and alteration - """ - cna = [] - try: - cursor.execute('SELECT genetic_profile.GENETIC_PROFILE_ID, '+ 'cna_event.ENTREZ_GENE_ID, cna_event.ALTERATION, '+ - 'sample_cna_event.CNA_EVENT_ID, sample_cna_event.SAMPLE_ID from cbioportal.cna_event ' + - 'inner join sample_cna_event on sample_cna_event.CNA_EVENT_ID = cna_event.CNA_EVENT_ID '+ - 'inner join genetic_profile on genetic_profile.GENETIC_PROFILE_ID = sample_cna_event.GENETIC_PROFILE_ID '+ - 'inner join cancer_study on cancer_study.CANCER_STUDY_ID = genetic_profile.CANCER_STUDY_ID '+ - 'WHERE cancer_study.CANCER_STUDY_IDENTIFIER = "'+study_id +'"') - for row in cursor.fetchall(): - alteration = list(cna_alteration_types.keys())[ - list(cna_alteration_types.values()).index(row[2])] - cna += [{"id": "_".join([str(row[3]), str(row[0]), str(row[4])]), "geneticProfileId": row[0], "entrezGeneId": row[1], - "alteration": alteration}] - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - return None - return cna - -def get_current_sv_data(study_id, cursor): - """ Get structural variant data from the current study. - Returns an array of dictionaries, with the following keys: - id, geneticProfileId, entrezGeneIdA, entrezGeneIdB, and structuralVariantType - """ - sv = [] - try: - cursor.execute('SELECT genetic_profile.GENETIC_PROFILE_ID, '+ 'structural_variant.SITE1_ENTREZ_GENE_ID, '+ - 'structural_variant.SITE2_ENTREZ_GENE_ID, structural_variant.EVENT_INFO, ' + - 'structural_variant.INTERNAL_ID, structural_variant.SAMPLE_ID from cbioportal.structural_variant ' + - 'inner join genetic_profile on genetic_profile.GENETIC_PROFILE_ID = structural_variant.GENETIC_PROFILE_ID '+ - 'inner join cancer_study on cancer_study.CANCER_STUDY_ID = genetic_profile.CANCER_STUDY_ID '+ - 'WHERE cancer_study.CANCER_STUDY_IDENTIFIER = "'+study_id +'"') - for row in cursor.fetchall(): - sv += [{"id": "_".join([str(row[4]), str(row[0]), str(row[5])]), "geneticProfileId": row[0], "entrezGeneIdA": row[1], - "entrezGeneIdB": row[2], "structuralVariantType": row[3]}] - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - return None - return sv - -def get_reference_genome(study_id, cursor): - """ Get reference genome from the study """ - ref_genome = [] - try: - cursor.execute('SELECT reference_genome.NAME FROM reference_genome ' + - 'inner join cancer_study ON cancer_study.reference_genome_id = reference_genome.reference_genome_id ' + - 'WHERE cancer_study.CANCER_STUDY_IDENTIFIER = "'+study_id +'"') - for row in cursor.fetchall(): - ref_genome += [row[0]] - if len(ref_genome) == 1: - return REFERENCE_GENOME[ref_genome[0]] - else: - raise ValueError("There is an error when retrieving the reference genome, as multiple values have been retrieved: "+ref_genome) - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - -def fetch_oncokb_mutation_annotations(mutation_data, ref_genome): - request_url = libImportOncokb.DEFAULT_ONCOKB_URL + "/annotate/mutations/byProteinChange" - request_payload = create_mutation_request_payload(mutation_data, ref_genome) - result = libImportOncokb.fetch_oncokb_annotations(request_payload, request_url) - return result - -def create_mutation_request_payload(mutation_data, ref_genome): - elements = {} - for mutation in mutation_data: - elements[mutation["id"]] = '{"alteration": "' + mutation["alteration"] + '", "consequence": "'+mutation["consequence"] + \ - '", "gene": {"entrezGeneId": '+ str(mutation["entrezGeneId"]) +'}, "id": "'+mutation["id"] + \ - '", "referenceGenome": "'+ref_genome+'"}' - - return list(elements.values()) - -def fetch_oncokb_copy_number_annotations(copy_number_data, ref_genome): - request_url = libImportOncokb.DEFAULT_ONCOKB_URL + "/annotate/copyNumberAlterations" - request_payload = create_copy_number_request_payload(copy_number_data, ref_genome) - result = libImportOncokb.fetch_oncokb_annotations(request_payload, request_url) - return result - -def create_copy_number_request_payload(copy_number_data, ref_genome): - elements = {} - for copy_number in copy_number_data: - elements[copy_number["id"]] = '{"copyNameAlterationType":"'+ copy_number["alteration"]+'", "gene":{"entrezGeneId":'+str(copy_number["entrezGeneId"])+ \ - '}, "id":"'+copy_number["id"]+'", "referenceGenome": "'+ref_genome+'"}' - - return list(elements.values()) - -def fetch_oncokb_sv_annotations(sv_data, ref_genome): - request_url = libImportOncokb.DEFAULT_ONCOKB_URL + "/annotate/structuralVariants" - request_payload = create_sv_request_payload(sv_data, ref_genome) - result = libImportOncokb.fetch_oncokb_annotations(request_payload, request_url, sv=True) - return result - -def create_sv_request_payload(sv_data, ref_genome): - elements = {} - for sv in sv_data: - elements[sv["id"]] = '{"structuralVariantType":"'+ sv["structuralVariantType"].upper()+'", "geneA":{"entrezGeneId":'+str(sv["entrezGeneIdA"])+ \ - '}, "geneB":{"entrezGeneId":'+str(sv["entrezGeneIdB"])+'}, "id":"'+sv["id"]+'", "referenceGenome": "'+ref_genome+'"}' - - return list(elements.values()) - -def get_current_annotation_data(connection, cursor, study_id): - annotation_data = [] - try: - cursor.execute('SELECT ALTERATION_EVENT_ID, alteration_driver_annotation.GENETIC_PROFILE_ID, SAMPLE_ID, DRIVER_FILTER_ANNOTATION,' + - ' DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION FROM cbioportal.alteration_driver_annotation' + - ' INNER JOIN cbioportal.genetic_profile ON (genetic_profile.GENETIC_PROFILE_ID = alteration_driver_annotation.GENETIC_PROFILE_ID)' + - ' INNER JOIN cbioportal.cancer_study ON (cancer_study.CANCER_STUDY_ID = genetic_profile.CANCER_STUDY_ID)' + - ' WHERE cancer_study.CANCER_STUDY_IDENTIFIER = "'+study_id+'"') - for row in cursor.fetchall(): - annotation_data += ["_".join([str(row[0]), str(row[1]), str(row[2])])] - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - return annotation_data - -def update_annotations(result, connection, cursor, study_id): - current_annotation_data = get_current_annotation_data(connection, cursor, study_id) - #Go over all the entries retrieved and add them to the database - for entry in result: - parsed_id = entry["query"]["id"].split("_") - event_id = parsed_id[0] - genetic_profile_id = parsed_id[1] - sample_id = parsed_id[2] - oncogenic = libImportOncokb.evaluate_driver_passenger(entry["oncogenic"]) - if entry["query"]["id"] in current_annotation_data: - try: - cursor.execute('UPDATE cbioportal.alteration_driver_annotation'+ - ' SET DRIVER_FILTER = "' + oncogenic + '"' + - ' WHERE ALTERATION_EVENT_ID = ' + event_id + ' AND GENETIC_PROFILE_ID = '+ genetic_profile_id + - ' AND SAMPLE_ID = '+ sample_id) - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - else: - try: - cursor.execute('INSERT INTO cbioportal.alteration_driver_annotation'+ - ' VALUES (' + event_id + ', '+ genetic_profile_id + ', '+ sample_id + ', "'+ oncogenic + '", "", "", "")') - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - -def main_import(study_id, properties_filename): - - portal_properties = get_database_properties(properties_filename) - if portal_properties is None: - print('failure reading properties file (%s)' % properties_filename, file=ERROR_FILE) - sys.exit(1) - - # Connect to the database. - # TODO: must be a unique transaction - connection, cursor = get_db_cursor(portal_properties) - if cursor is None: - print('failure connecting to sql database', file=ERROR_FILE) - sys.exit(1) - - # Query DB to get mutation, cna and structural variant data of the study. - mutation_study_data = get_current_mutation_data(study_id, cursor) - cna_study_data = get_current_cna_data(study_id, cursor) - sv_study_data = get_current_sv_data(study_id, cursor) - - # Call OncoKB to get annotations for the mutation, cna and structural variant data retrieved. - ref_genome = get_reference_genome(study_id, cursor) - mutation_result = fetch_oncokb_mutation_annotations(mutation_study_data, ref_genome) - cna_result = fetch_oncokb_copy_number_annotations(cna_study_data, ref_genome) - sv_result = fetch_oncokb_sv_annotations(sv_study_data, ref_genome) - all_results = mutation_result + cna_result + sv_result - - # Query DB to update alteration_driver_annotation table data, one record at a time. - update_annotations(all_results, connection, cursor, study_id) - - # Commit changes to the database at once to ensure a unique transaction. - try: - connection.commit() - print('Update complete') - return 0 - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - connection.rollback() - return 1 - - -def interface(): - parser = argparse.ArgumentParser(description='cBioPortal OncoKB annotation updater') - parser.add_argument('-s', '--study_id', - type=str, - required=True, - help='Study Identifier') - parser.add_argument('-p', '--portal_properties', type=str, required=True, - help='portal.properties of cBioPortal') - parser = parser.parse_args() - return parser - - -if __name__ == '__main__': - try: - parsed_args = interface() - exit_status = main_import(parsed_args.study_id, parsed_args.portal_properties) - finally: - logging.shutdown() - del logging._handlerList[:] # workaround for harmless exceptions on exit - print(('Update of OncoKB annotations for mutations {status}.'.format( - status={0: 'succeeded', - 1: 'failed', - 2: 'not performed as problems occurred', - 3: 'succeeded with warnings'}.get(exit_status, 'unknown'))), file=sys.stderr) - sys.exit(exit_status) diff --git a/core/src/main/scripts/importer/validateData.py b/core/src/main/scripts/importer/validateData.py deleted file mode 100755 index f4339b9110e..00000000000 --- a/core/src/main/scripts/importer/validateData.py +++ /dev/null @@ -1,5683 +0,0 @@ -#!/usr/bin/env python3 - -# -# Copyright (c) 2016 The Hyve B.V. -# This code is licensed under the GNU Affero General Public License (AGPL), -# version 3, or (at your option) any later version. -# - -# -# This file is part of cBioPortal. -# -# cBioPortal is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# - -"""Data validation script - validate files before import into portal. - -Run with the command line option --help for usage information. -""" - -# imports -import sys -import os -import importlib -import logging.handlers -from collections import OrderedDict, namedtuple -import argparse -import re -import csv -import itertools -import requests -import json -import yaml -import xml.etree.ElementTree as ET -from pathlib import Path -from base64 import urlsafe_b64encode -import math -from abc import ABCMeta, abstractmethod -from urllib.parse import urlparse - -# Configure relative imports if running as a script; see PEP 366 -# it might passed as empty string by certain tooling to mark a top level module. -if __name__ == "__main__" and (__package__ is None or __package__ == ''): - # replace the script's location in the Python search path by the main - # scripts/ folder, above it, so that the importer package folder is in - # scope and *not* directly in sys.path; see PEP 395 - sys.path[0] = str(Path(sys.path[0]).resolve().parent) - __package__ = 'importer' - # explicitly import the package, which is needed on CPython 3.4 because it - # doesn't include https://github.com/python/cpython/pull/2639 - importlib.import_module(__package__) - -from . import cbioportal_common - - -# ------------------------------------------------------------------------------ -# globals - -# study-specific globals -DEFINED_SAMPLE_IDS = None -DEFINED_SAMPLE_ATTRIBUTES = None -PATIENTS_WITH_SAMPLES = None -DEFINED_CANCER_TYPES = None -mutation_sample_ids = None -mutation_file_sample_ids = set() -sample_ids_panel_dict = {} - -# resource globals -RESOURCE_DEFINITION_DICTIONARY = {} -RESOURCE_PATIENTS_WITH_SAMPLES = None - -# globals required for gene set scoring validation -prior_validated_sample_ids = None -prior_validated_geneset_ids = None - -# Global variable to compare stable IDs from meta file with gene panel matrix file -study_meta_dictionary = {} - -# Global variable for the regex that checks hexadecimal colors -COLOR_REGEX = re.compile("^#[a-fA-F0-9]{6}$") - -# global character limit on sample stable ids -MAX_SAMPLE_STABLE_ID_LENGTH = 63 - -# ---------------------------------------------------------------------------- - -VALIDATOR_IDS = { - cbioportal_common.MetaFileTypes.CNA_DISCRETE: 'CNADiscreteValidator', - cbioportal_common.MetaFileTypes.CNA_DISCRETE_LONG: 'CNADiscreteLongValidator', - cbioportal_common.MetaFileTypes.CNA_LOG2:'CNAContinuousValuesValidator', - cbioportal_common.MetaFileTypes.CNA_CONTINUOUS:'CNAContinuousValuesValidator', - cbioportal_common.MetaFileTypes.EXPRESSION:'ContinuousValuesValidator', - cbioportal_common.MetaFileTypes.METHYLATION:'ContinuousValuesValidator', - cbioportal_common.MetaFileTypes.MUTATION:'MutationsExtendedValidator', - cbioportal_common.MetaFileTypes.MUTATION_UNCALLED:'MutationsExtendedValidator', - cbioportal_common.MetaFileTypes.CANCER_TYPE:'CancerTypeValidator', - cbioportal_common.MetaFileTypes.SAMPLE_ATTRIBUTES:'SampleClinicalValidator', - cbioportal_common.MetaFileTypes.PATIENT_ATTRIBUTES:'PatientClinicalValidator', - cbioportal_common.MetaFileTypes.SEG:'SegValidator', - cbioportal_common.MetaFileTypes.PROTEIN:'ProteinLevelValidator', - cbioportal_common.MetaFileTypes.GISTIC_GENES: 'GisticGenesValidator', - cbioportal_common.MetaFileTypes.TIMELINE:'TimelineValidator', - cbioportal_common.MetaFileTypes.MUTATION_SIGNIFICANCE:'MutationSignificanceValidator', - cbioportal_common.MetaFileTypes.GENE_PANEL_MATRIX:'GenePanelMatrixValidator', - cbioportal_common.MetaFileTypes.GSVA_SCORES:'GsvaScoreValidator', - cbioportal_common.MetaFileTypes.GSVA_PVALUES:'GsvaPvalueValidator', - cbioportal_common.MetaFileTypes.GENERIC_ASSAY_CONTINUOUS:'GenericAssayContinuousValidator', - cbioportal_common.MetaFileTypes.GENERIC_ASSAY_BINARY:'GenericAssayBinaryValidator', - cbioportal_common.MetaFileTypes.GENERIC_ASSAY_CATEGORICAL:'GenericAssayCategoricalValidator', - cbioportal_common.MetaFileTypes.STRUCTURAL_VARIANT:'StructuralVariantValidator', - cbioportal_common.MetaFileTypes.SAMPLE_RESOURCES:'SampleResourceValidator', - cbioportal_common.MetaFileTypes.PATIENT_RESOURCES:'PatientResourceValidator', - cbioportal_common.MetaFileTypes.STUDY_RESOURCES:'StudyResourceValidator', - cbioportal_common.MetaFileTypes.RESOURCES_DEFINITION:'ResourceDefinitionValidator', -} - - -# ---------------------------------------------------------------------------- -# class definitions - -class MaxLevelTrackingHandler(logging.Handler): - - """Handler that does nothing but track the maximum msg level emitted.""" - - def __init__(self): - """Initialize the handler with an attribute to track the level.""" - super(MaxLevelTrackingHandler, self).__init__() - self.max_level = logging.NOTSET - - def emit(self, record): - """Update the maximum level with a new record.""" - self.max_level = max(self.max_level, record.levelno) - - def get_exit_status(self): - """Return an exit status for the validator script based on max_level.""" - if self.max_level <= logging.INFO: - return 0 - elif self.max_level == logging.WARNING: - return 3 - elif self.max_level == logging.ERROR: - return 1 - else: - return 2 - -class LineCountHandler(logging.Handler): - - """Handler that does nothing but track the number of lines with error and warnings.""" - - def __init__(self): - """Initialize the handler with an attribute to track the lines.""" - super(LineCountHandler, self).__init__() - self.warning_lines = set() - self.error_lines = set() - - def emit(self, record): - """Update the line sets.""" - if hasattr(record, 'line_number'): - if record.levelno == logging.WARNING: - self.warning_lines.add(record.line_number) - if record.levelno == logging.ERROR: - self.error_lines.add(record.line_number) - - def get_nr_lines_with_error(self): - """Return the number of lines with an error.""" - return len(self.error_lines) - - def get_nr_lines_with_warning(self): - """Return the number of lines with an warning.""" - return len(self.warning_lines) - - def get_nr_lines_with_issue(self): - """Return the number of lines with an error or warning.""" - return len(self.error_lines | self.warning_lines) - - -class Jinja2HtmlHandler(logging.handlers.BufferingHandler): - - """Logging handler that formats aggregated HTML reports using Jinja2.""" - - def __init__(self, study_dir, output_filename, *args, **kwargs): - """Set study directory name, output filename and buffer size.""" - self.study_dir = study_dir - self.output_filename = output_filename - self.max_level = logging.NOTSET - self.closed = False - # get the directory name of the currently running script, - # resolving any symlinks - self.template_dir = os.path.dirname(os.path.realpath(__file__)) - super(Jinja2HtmlHandler, self).__init__(*args, **kwargs) - - def emit(self, record): - """Buffer a message if the buffer is not full.""" - self.max_level = max(self.max_level, record.levelno) - if len(self.buffer) < self.capacity: - return super(Jinja2HtmlHandler, self).emit(record) - - def flush(self): - """Do nothing; emit() caps the buffer and close() renders output.""" - pass - - def shouldFlush(self, record): - """Never flush; emit() caps the buffer and close() renders output.""" - return False - - def generateHtml(self, **kwargs): - """Render the HTML page for the current content in self.buffer - - **kwargs allows to override logger variables to display. - """ - # require Jinja2 only if it is actually used - import jinja2 - j_env = jinja2.Environment( - loader=jinja2.FileSystemLoader(self.template_dir), - # trim whitespace around Jinja2 operators - trim_blocks=True, - lstrip_blocks=True) - # register these functions to be used as filters in the template - def url_b64(unsafe_string): - """Encode a string as a base64 string with only id-safe chars.""" - encoded_bytes = unsafe_string.encode('utf8') - b64_bytes = urlsafe_b64encode(encoded_bytes) - return b64_bytes.decode('ascii').rstrip('=') - j_env.filters['url_b64'] = url_b64 - j_env.filters['os.path.relpath'] = os.path.relpath - template = j_env.get_template('validation_report_template.html.jinja') - doc = template.render( - study_dir=self.study_dir, - record_list=self.buffer, - max_level=logging.getLevelName(self.max_level), - **kwargs) - with open(self.output_filename, 'w') as f: - f.write(doc) - - -class ErrorFileFormatter(cbioportal_common.ValidationMessageFormatter): - - """Fasta-like formatter listing lines on which error messages occurred.""" - - def __init__(self, study_dir): - """Initialize a logging Formatter with an appropriate format string.""" - super(ErrorFileFormatter, self).__init__( - '>%(rel_filename)s | %(levelname)s: %(message)s\n%(line_string)s') - self.study_dir = study_dir - - def format(self, record): - """Aggregate line numbers to a line_string and format the record.""" - record.line_string = self.format_aggregated( - record, 'line_number', - single_fmt='%d', - multiple_fmt='%s', join_string=',', max_join=None, - optional=False) - record.rel_filename = os.path.relpath(record.filename_, - self.study_dir) - return super(ErrorFileFormatter, self).format(record) - - -class LineMessageFilter(logging.Filter): - """Filter that selects only validation messages about a line in a file.""" - def filter(self, record): - return int(hasattr(record, 'filename_') and - hasattr(record, 'line_number')) - - -class CombiningLoggerAdapter(logging.LoggerAdapter): - """LoggerAdapter that combines its own context info with that in calls.""" - def process(self, msg, kwargs): - """Add contextual information from call to that from LoggerAdapter.""" - extra = self.extra.copy() - if 'extra' in kwargs: - # add elements from the call, possibly overwriting - extra.update(kwargs['extra']) - kwargs["extra"] = extra - return msg, kwargs - - -class PortalInstance(object): - - """Represent a portal instance, storing the data needed for validation. - - This holds a number of dictionaries representing the particular - datatypes queried from the portal, each of which may be None - if the checks are to be skipped. - """ - - def __init__(self, portal_info_dict, cancer_type_dict, hugo_entrez_map, alias_entrez_map, gene_set_list, gene_panel_list, geneset_version, offline=False): - """Represent a portal instance with the given dictionaries.""" - self.portal_info_dict = portal_info_dict - self.cancer_type_dict = cancer_type_dict - self.hugo_entrez_map = hugo_entrez_map - self.alias_entrez_map = alias_entrez_map - self.gene_set_list = gene_set_list - self.gene_panel_list = gene_panel_list - self.geneset_version = geneset_version - self.entrez_set = set() - for entrez_map in (hugo_entrez_map, alias_entrez_map): - if entrez_map is not None: - for entrez_list in list(entrez_map.values()): - for entrez_id in entrez_list: - self.entrez_set.add(int(entrez_id)) - - #Set defaults for genome version and species - self.__species = 'human' - self.__ncbi_build = 'GRCh37' - self.__genome_name = 'hg19' - - # determine version, and the reason why it might be unknown - if portal_info_dict is None: - reason = 'offline instance' if offline else 'skipped checks' - self.portal_version = 'unknown -- ' + reason - else: - # if field is not present in dict, there was an error in the json - if 'portalVersion' not in portal_info_dict: - self.portal_version = 'unknown -- invalid JSON' - else: - self.portal_version = portal_info_dict['portalVersion'] - - @property - def species(self): - return self.__species - - @species.setter - def species(self, species): - self.__species = species - - @property - def reference_genome(self): - return self.__genome_name - - @reference_genome.setter - def reference_genome(self, genome_name): - self.__genome_name = genome_name - - @property - def ncbi_build(self): - return self.__ncbi_build - - @ncbi_build.setter - def ncbi_build(self, ncbi_build): - prefix = 'GRCm' if self.__species == 'mouse' else 'GRCh' - if str(ncbi_build) in ('37', '38'): - ncbi_build = prefix + str(ncbi_build) - self.__ncbi_build = ncbi_build - -class Validator(object): - - """Abstract validator class for tab-delimited data files. - - Subclassed by validators for specific data file types, which - should define a 'REQUIRED_HEADERS' attribute listing the required - column headers and a `REQUIRE_COLUMN_ORDER` boolean stating - whether their position is significant. Unless ALLOW_BLANKS is - set to True, empty cells in lines below the column header will - be reported as errors. An optional 'UNIQUE_COLUMNS' array can be - specified with names of columns that are checked for uniqueness - of cell contents. - - - The methods `processTopLines`, `checkHeader`, `checkLine` and `onComplete` - may be overridden (calling their superclass methods) to perform any - appropriate validation tasks. The superclass `checkHeader` method sets - self.cols to the list of column names found in the header of the file - and self.numCols to the number of columns. - """ - - REQUIRED_HEADERS = [] - UNIQUE_COLUMNS = [] - REQUIRE_COLUMN_ORDER = True - ALLOW_BLANKS = False - - def __init__(self, study_dir, meta_dict, portal_instance, logger, relaxed_mode, strict_maf_checks): - """Initialize a validator for a particular data file. - - :param study_dir: the path at which the study files can be found - :param meta_dict: dictionary of fields found in corresponding meta file - (such as stable id and data file name) - :param portal_instance: a PortalInstance object for which to validate - :param logger: logger instance for writing the log messages - :param relaxed_mode: relaxes validation of headerless clinical data to - prevent fast-failing - """ - self.filename = os.path.join(study_dir, meta_dict['data_filename']) - self.filenameShort = os.path.basename(self.filename) - self.line_number = 0 - self.cols = [] - self.numCols = 0 - self.newlines = ('',) - self.studyId = '' - self.headerWritten = False - # This one is set to True if file could be parsed/read until the end (happens in onComplete) - self.fileCouldBeParsed = False - self.portal = portal_instance - self.logger = CombiningLoggerAdapter( - logger, - extra={'filename_': self.filename}) - self.line_count_handler = None - self.meta_dict = meta_dict - self.relaxed_mode = relaxed_mode - self.strict_maf_checks = strict_maf_checks - self.fill_in_attr_defs = False - self.unique_col_data = {} - - def validate(self): - """Validate the data file.""" - # add a handler to keep track of the number of lines with errors - self.line_count_handler = LineCountHandler() - self.logger.logger.addHandler(self.line_count_handler) - try: - # actually validate the data file - self._validate_file() - finally: - self.logger.logger.removeHandler(self.line_count_handler) - - def _validate_file(self): - """Read through the data file and validate as much as can be parsed.""" - - self.logger.debug('Starting validation of file') - - # Validate whether the file can be opened - try: - opened_file = open(self.filename, 'r', newline=None) - opened_file.close() - except OSError: - self.logger.error('File could not be opened') - return - - # Validate whether the file is correct UTF-8 - try: - with open(self.filename, 'r', newline=None) as opened_file: - for line in opened_file: - pass - except UnicodeDecodeError: - self.logger.error("File contains invalid UTF-8 bytes. Please check values in file") - return - - # Reopen file from the start - with open(self.filename, 'r', newline=None) as data_file: - - # parse any block of start-of-file comment lines and the tsv header - top_comments = [] - line_number = 0 - for line_number, line in enumerate(data_file, - start=line_number + 1): - self.line_number = line_number - if line.startswith('#'): - top_comments.append(line) - else: - header_line = line - # end of the file's header - break - # if the loop wasn't broken by a non-commented line - else: - self.logger.error('No column header or data found in file', - extra={'line_number': self.line_number}) - return - - # parse start-of-file comment lines, if any - if not self.processTopLines(top_comments): - self.logger.error( - 'Invalid header comments, file cannot be parsed') - if not self.relaxed_mode: - return - else: - self.logger.info('Ignoring missing or invalid header comments. ' - 'Continuing with validation...') - self.fill_in_attr_defs = True - - # read five data lines to detect quotes in the tsv file - first_data_lines = [] - for i, line in enumerate(data_file): - first_data_lines.append(line) - if i >= 4: - break - sample_content = header_line + ''.join(first_data_lines) - try: - dialect = csv.Sniffer().sniff(sample_content, delimiters='\t') - except csv.Error: - self.logger.warning('Could not detect a tab separator. Confirm that the file should be single-column' - ' and else if all lines have the same number of columns, and if all separators are ' - 'tabs.') - return - # sniffer assumes " if no quote character exists - if dialect.quotechar == '"' and not ( - dialect.delimiter + '"' in sample_content or - '"' + dialect.delimiter in sample_content): - dialect.quoting = csv.QUOTE_NONE - if not self._checkTsvDialect(dialect): - self.logger.error( - 'Invalid file format, file cannot be parsed') - return - - # parse the first non-commented line as the tsv header - header_cols = next(csv.reader( - [header_line], - delimiter='\t', - quoting=csv.QUOTE_NONE, - strict=True)) - - # init dictionary for detection of unique value columns - # - will use column indexes as key and a set of values as value - # - only columns that are present in the data are added - for unique_col_name in self.UNIQUE_COLUMNS: - col_index = _get_column_index(header_cols, unique_col_name) - if col_index > -1: - self.unique_col_data[_get_column_index(header_cols, unique_col_name)] = [] - - if self.checkHeader(header_cols) > 0: - if not self.relaxed_mode: - self.logger.error( - 'Invalid column header, file cannot be parsed') - return - else: - self.logger.warning('Ignoring invalid column header. ' - 'Continuing with validation...') - - # read through the data lines of the file - csvreader = csv.reader(itertools.chain(first_data_lines, - data_file), - delimiter='\t', - quoting=csv.QUOTE_NONE, - strict=True) - for line_number, fields in enumerate(csvreader, - start=line_number + 1): - self.line_number = line_number - if all(x.strip() == '' for x in fields): - self.logger.error( - 'Blank line', - extra={'line_number': self.line_number}) - elif fields[0].startswith('#'): - self.logger.error( - "Data line starting with '#' skipped", - extra={'line_number': self.line_number}) - else: - # check valid data lines for uniqueness of values in - # unique data columns (set with UNIQUE_COLUMNS option) - for unique_col_index, previous_values in self.unique_col_data.items(): - cell_value = fields[unique_col_index] - # if a value is already in the set of unique values, raise an error - if cell_value in previous_values: - self.logger.error( - 'Cell value `%s` in column `%s` is not unique.', - cell_value, self.cols[unique_col_index]) - continue - # add the value to the set for comparison with other rows - previous_values.append(cell_value) - self.checkLine(fields) - - # (tuple of) string(s) of the newlines read (for 'rU' mode files) - self.newlines = data_file.newlines - - # after the entire file has been read - self.onComplete() - - def onComplete(self): - """Perform final validations after all lines have been checked. - - Overriding methods should call this superclass method *after* their own - validations, as it logs the message that validation was completed. - """ - self._checkLineBreaks() - # finalize - self.fileCouldBeParsed = True - self.logger.info('Validation of file complete') - self.logger.info('Read %d lines. ' - 'Lines with warning: %d. Lines with error: %d', - self.line_number, - self.line_count_handler.get_nr_lines_with_warning(), - self.line_count_handler.get_nr_lines_with_error()) - - def processTopLines(self, line_list): - """Hook to validate any list of comment lines above the TSV header. - - Return False if these lines are invalid and the file cannot be - parsed, True otherwise. - """ - return True - - def checkHeader(self, cols): - - """Check that the header has the correct items and set self.cols. - - :param cols: The list of column headers to be validated - - :return the number of errors found. - """ - - num_errors = 0 - - # TODO check for end-of-line whitespace - - self.cols = cols - self.numCols = len(self.cols) - - num_errors += self._checkRepeatedColumns() - - if self.REQUIRE_COLUMN_ORDER: - num_errors += self._checkOrderedRequiredColumns() - else: - num_errors += self._checkUnorderedRequiredColumns() - - return num_errors - - def checkLine(self, data): - """Check data values from a line after the file header. - - :param data: The list of values parsed from the line - """ - - if data[:self.numCols] == self.cols: - if self.logger.isEnabledFor(logging.ERROR): - self.logger.error( - 'Repeated header', - extra={'line_number': self.line_number, - 'cause': ', '.join(data[:self.numCols])}) - - line_col_count = len(data) - - if line_col_count != self.numCols: - self.logger.error('Expected %d columns based on header, ' - 'found %d', - self.numCols, line_col_count, - extra={'line_number': self.line_number}) - - if not self.ALLOW_BLANKS: - for col_index, col_name in enumerate(self.cols): - if col_index < line_col_count and data[col_index].strip() == '': - self.logger.error( - 'Blank cell found in column', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': "'%s' (in column '%s')" % ( - data[col_index], col_name)}) - - def _checkUnorderedRequiredColumns(self): - """Check for missing column headers, independent of their position. - - Return the number of errors encountered. - """ - num_errors = 0 - for col_name in self.REQUIRED_HEADERS: - if col_name not in self.cols: - self.logger.error( - 'Missing column: %s', - col_name, - extra={'line_number': self.line_number, - 'cause': ', '.join( - self.cols[:len(self.REQUIRED_HEADERS)]) + - ', (...)'}) - num_errors += 1 - return num_errors - - def _checkOrderedRequiredColumns(self): - """Check if the column header for each position is correct. - - Return the number of errors encountered. - """ - num_errors = 0 - for col_index, col_name in enumerate(self.REQUIRED_HEADERS): - if col_index >= self.numCols: - num_errors += 1 - self.logger.error( - "Invalid header: expected '%s' in column %d," - " found end of line", - col_name, col_index + 1, - extra={'line_number': self.line_number}) - elif self.cols[col_index] != col_name: - num_errors += 1 - self.logger.error( - "Invalid header: expected '%s' in this column", - col_name, - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': self.cols[col_index]}) - return num_errors - - def _checkTsvDialect(self, dialect): - """Check if a csv.Dialect subclass describes a valid cBio data file.""" - if dialect.delimiter != '\t': - self.logger.error('Not a tab-delimited file', - extra={'cause': 'delimiters of type: %s' % - repr(dialect.delimiter)}) - return False - if dialect.quoting != csv.QUOTE_NONE: - self.logger.warning('Found quotation marks around field(s) in the first rows of the file. ' - 'Fields and values surrounded by quotation marks might be incorrectly ' - 'loaded (i.e. with the quotation marks included as part of the value)', - extra={'cause': 'quotation marks of type: [%s] ' % - repr(dialect.quotechar)[1:-1]}) - return True - - def _checkLineBreaks(self): - """Checks line breaks, reports to user.""" - if self.newlines not in("\r\n", "\r", "\n"): - self.logger.error('No line breaks recognized in file', - extra={'cause': repr(self.newlines)[1:-1]}) - - def checkInt(self, value): - """Checks if a value is an integer.""" - try: - int(value) - return True - except ValueError: - return False - - def checkFloat(self, value): - """Check if a string represents a floating-point numeral.""" - try: - float(value) - return True - except ValueError: - return False - - def checkSampleId(self, sample_id, column_number): - """Check whether a sample id is defined, logging an error if not. - - Return True if the sample id was valid, False otherwise. - """ - if sample_id not in DEFINED_SAMPLE_IDS: - self.logger.error( - 'Sample ID not defined in clinical file', - extra={'line_number': self.line_number, - 'column_number': column_number, - 'cause': sample_id}) - return False - return True - - def checkPatientId(self, patient_id, column_number): - """Check whether a patient id is defined, logging an error if not. - - Return True if the patient id was valid, False otherwise. - """ - if patient_id not in PATIENTS_WITH_SAMPLES: - self.logger.error( - 'Patient ID not defined in clinical file', - extra={'line_number': self.line_number, - 'column_number': column_number, - 'cause': patient_id}) - return False - return True - - # TODO: let this function know the column numbers for logging messages - def checkGeneIdentification(self, gene_symbol=None, entrez_id=None, profile_type=None): - """Attempt to resolve a symbol-Entrez pair, logging any issues. - - It will fail to resolve in these cases: - 1. (error) Entrez gene id and gene symbol are both missing (None) - If self.portal.hugo_entrez_map and self.portal.alias_entrez_map are - defined: - 2. (warning) Only one of the identifiers is supplied, and its value - cannot be found in the portal - 3. (error) The gene symbol maps to multiple Entrez gene ids - 4. (error) The gene alias maps to multiple Entrez gene ids - - Furthermore, the function logs a warning in the following cases, if - self.portal.hugo_entrez_map and self.portal.alias_entrez_map are - defined: - 1. (warning) Entrez gene id exists, but the gene symbol specified is not - known to the portal - 2. (warning) Gene symbol and Entrez gene id do not match - 3. (warning) The Hugo gene symbol maps to a single Entrez gene id, - but is also associated to other genes as an alias. - - Return the Entrez gene id (or gene symbol if the PortalInstance maps are - undefined and the mapping step is skipped), or None if no gene could be - unambiguously identified. - """ - # set to upper, as both maps contain symbols in upper - if gene_symbol is not None: - gene_symbol = gene_symbol.upper() - if self.portal.species == "human": - # Check in case gene symbol is not null if it starts with an integer - if gene_symbol != '': - # Check if the gene_symbol starts with a number - if gene_symbol[0] in ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']: - # In case portal properties are defined check if the gene symbol that starts - # with an integer is in the alias table, if not report an error - if self.portal.hugo_entrez_map is not None and self.portal.alias_entrez_map is not None: - if gene_symbol not in self.portal.hugo_entrez_map and \ - gene_symbol not in self.portal.alias_entrez_map: - self.logger.warning('Hugo Symbol is not in gene or alias table and starts with a ' - 'number. This can be caused by unintentional gene conversion in Excel.', - extra={'line_number': self.line_number, 'cause': gene_symbol}) - # If alias table cannot be checked report warning that hugo symbols normally do not start - # with a number - else: - self.logger.warning('Hugo Symbol should not start with a number.', - extra={'line_number': self.line_number, 'cause': gene_symbol}) - - if entrez_id is not None: - try: - entrez_as_int = int(entrez_id) - except ValueError: - entrez_as_int = None - if entrez_as_int is None: - self.logger.warning( - 'Entrez gene id is not an integer. ' - 'This record will not be loaded.', - extra={'line_number': self.line_number, - 'cause': entrez_id}) - return None - elif entrez_as_int <= 0: - self.logger.error( - 'Entrez gene id is non-positive.', - extra={'line_number': self.line_number, - 'cause': entrez_id}) - return None - - # check whether at least one is present - if entrez_id is None and gene_symbol is None: - if profile_type != 'SV': - self.logger.error( - 'No Entrez gene id or gene symbol provided for gene.', - extra={'line_number': self.line_number}) - return None - - # if portal information is absent, skip the rest of the checks - if (self.portal.hugo_entrez_map is None or - self.portal.alias_entrez_map is None): - return entrez_id or gene_symbol - - # try to use the portal maps to resolve to a single Entrez gene id - identified_entrez_id = None - if entrez_id is not None: - if entrez_as_int in self.portal.entrez_set: - # set the value to be returned - identified_entrez_id = entrez_id - # some warnings if the gene symbol is specified too - if gene_symbol is not None: - if (gene_symbol not in self.portal.hugo_entrez_map and - gene_symbol not in self.portal.alias_entrez_map): - self.logger.warning( - 'Entrez gene id exists, but gene symbol specified ' - 'is not known to the cBioPortal instance. The ' - 'gene symbol will be ignored. Might be ' - 'wrong mapping, new or deprecated gene symbol.', - extra={'line_number': self.line_number, - 'cause': gene_symbol}) - elif entrez_as_int not in itertools.chain( - self.portal.hugo_entrez_map.get(gene_symbol, []), - self.portal.alias_entrez_map.get(gene_symbol, [])): - self.logger.warning( - 'Entrez gene id and gene symbol do not match. ' - 'The gene symbol will be ignored. Might be ' - 'wrong mapping or recycled gene symbol.', - extra={'line_number': self.line_number, - 'cause': '(%s, %s)' % (gene_symbol, - entrez_id)}) - else: - self.logger.warning( - 'Entrez gene id not known to the cBioPortal instance. ' - 'This record will not be loaded. Might be new or deprecated ' - 'Entrez gene id.', - extra={'line_number': self.line_number, - 'cause': entrez_id}) - # no Entrez gene id, only a gene symbol - elif gene_symbol is not None: - # count canonical gene symbols and aliases that map this symbol to - # a gene - num_entrezs_for_hugo = len( - self.portal.hugo_entrez_map.get(gene_symbol, [])) - num_entrezs_for_alias = len( - self.portal.alias_entrez_map.get(gene_symbol, [])) - if num_entrezs_for_hugo == 1: - # set the value to be returned - identified_entrez_id = \ - str(self.portal.hugo_entrez_map[gene_symbol][0]) - # check if there are other *different* Entrez gene ids associated - # with this gene symbol - other_entrez_ids_in_aliases = [ - x for x in - self.portal.alias_entrez_map.get(gene_symbol, []) if - x != identified_entrez_id] - if len(other_entrez_ids_in_aliases) >= 1: - # give a warning, as the symbol may have been used to refer - # to different entrez_ids over time - self.logger.warning( - 'Gene symbol maps to a single Entrez gene id, ' - 'but is also associated to other genes as an ' - 'alias. The system will assume the official gene ' - 'symbol to be the intended one.', - extra={'line_number': self.line_number, - 'cause': gene_symbol}) - elif num_entrezs_for_hugo > 1: - # nb: this should actually never occur, see also https://github.com/cBioPortal/cbioportal/issues/799 - self.logger.error( - 'Gene symbol maps to multiple Entrez gene ids (%s), ' - 'please specify which one you mean.', - '/'.join(str(entrez) for entrez in self.portal.hugo_entrez_map[gene_symbol]), - extra={'line_number': self.line_number, - 'cause': gene_symbol}) - # no canonical symbol, but a single unambiguous alias - elif num_entrezs_for_alias == 1: - # set the value to be returned - identified_entrez_id = \ - str(self.portal.alias_entrez_map[gene_symbol][0]) - # no canonical symbol, and multiple different aliases - elif num_entrezs_for_alias > 1: - # Loader deals with this, so give warning - # TODO: move matched IDs out of the message for collapsing - self.logger.warning( - 'Gene alias maps to multiple Entrez gene ids (%s), ' - 'please specify which one you mean or choose a non-ambiguous symbol.', - '/'.join(self.portal.alias_entrez_map[gene_symbol]), - extra={'line_number': self.line_number, - 'cause': gene_symbol}) - # no canonical symbol and no alias - else: - self.logger.warning( - 'Gene symbol not known to the cBioPortal instance. This ' - 'record will not be loaded.', - extra={'line_number': self.line_number, - 'cause': gene_symbol}) - - return identified_entrez_id - - def _checkRepeatedColumns(self): - num_errors = 0 - seen = set() - for col_num, col in enumerate(self.cols): - if col not in seen: - seen.add(col) - else: - num_errors += 1 - self.logger.error('Repeated column header', - extra={'line_number': self.line_number, - 'column_number': col_num, - 'cause': col}) - return num_errors - - @staticmethod - def load_chromosome_lengths(reference_genome, logger): - - """Get the length of each chromosome and return a dict. - - The dict will not include unplaced contigs, alternative haplotypes or - the mitochondrial chromosome. - """ - chrom_size_file = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'chromosome_sizes.json') - try: - with open(chrom_size_file,'r') as f: - chrom_sizes = json.load(f) - except FileNotFoundError: - raise FileNotFoundError('Could not open chromosome_sizes.json. ' - 'If it does not exist you can download it using the script ' - 'downloadChromosomeSizes.py.') - - logger.debug("Retrieving chromosome lengths from '%s'", - chrom_size_file) - - try: - chrom_size_dict = chrom_sizes[reference_genome] - except KeyError: - raise KeyError('Could not load chromosome sizes for genome build %s. Expecting one of ' - '["hg19", "hg38", "mm10"]' % reference_genome) - - return chrom_size_dict - - def parse_chromosome_num(self, value, column_number, chromosome_lengths): - """Parse a chromosome number, logging any errors for this column - - Return the parsed value if valid, None otherwise. - """ - - value_is_valid = False - - for chromosome in chromosome_lengths: - if chromosome == value: - value_is_valid = True - - if not value_is_valid: - self.logger.error('Chromosome not found in the genome.', - extra={'line_number': self.line_number, - 'cause': value}) - return None - - return value - - def parse_genomic_coord(self, value, column_number): - """Parse a genomic coordinate, logging any errors for this column. - - Return the parsed value if valid, None otherwise. - """ - parsed_value = None - try: - parsed_value = int(value) - except ValueError: - self.logger.error("Genomic position is not an integer", - extra={'line_number': self.line_number, - 'column_number': column_number, - 'cause': value}) - return parsed_value - - def parse_exon(self, value, column_number): - """Parse a exon, logging any errors for this column. - - Return the parsed value if valid, None otherwise. - """ - parsed_value = None - try: - parsed_value = int(value) - except ValueError: - self.logger.error("Exon is not an integer", - extra={'line_number': self.line_number, - 'column_number': column_number, - 'cause': value}) - return parsed_value - -class FeaturewiseFileValidator(Validator): - - """Validates a file with rows for features and columns for ids and samples. - - The first few columns (collectively defined in the class attributes - REQUIRED_HEADERS and OPTIONAL_HEADERS) identify the features - (e.g. genes) and the rest correspond to the samples. - - Subclasses should override the parseFeatureColumns(self,nonsample_col_vals) - method to check the non-sample columns preceding them, returning the unique - id of the feature. The method can find the names of the columns recognized - in the file in self.nonsample_cols. checkValue(self, value, col_index) - should also be overridden to check a value in a sample column. - """ - - OPTIONAL_HEADERS = [] - REQUIRE_COLUMN_ORDER = False - - def __init__(self, *args, **kwargs): - super(FeaturewiseFileValidator, self).__init__(*args, **kwargs) - self.nonsample_cols = [] - self.num_nonsample_cols = 0 - self.sampleIds = [] - self._feature_id_lines = {} - - def checkHeader(self, cols): - """Validate the header and read sample IDs from it. - - Return the number of fatal errors. - """ - num_errors = super(FeaturewiseFileValidator, self).checkHeader(cols) - # collect non-sample columns: - for col_name in self.cols: - if col_name in self.REQUIRED_HEADERS + self.OPTIONAL_HEADERS: - # add it to the list of non-sample columns in the file: - self.nonsample_cols.append(col_name) - else: - # reached samples group - break - self.num_nonsample_cols = len(self.nonsample_cols) - num_errors += self._set_sample_ids_from_columns() - return num_errors - - def checkLine(self, data): - """Check the feature and sample columns in a data line.""" - super(FeaturewiseFileValidator, self).checkLine(data) - # parse and check the feature identifiers (implemented by subclasses) - feature_id = self.parseFeatureColumns(data[:self.num_nonsample_cols]) - # skip line if no feature was identified - if feature_id is None: - return - # skip line with an error if the feature was encountered before - if feature_id in self._feature_id_lines: - self.logger.warning( - 'Duplicate line for a previously listed feature/gene, ' - 'this line will be ignored.', - extra={ - 'line_number': self.line_number, - 'cause': '%s (already defined on line %d)' % ( - feature_id, - self._feature_id_lines[feature_id])}) - return - # remember the feature id and check the value for each sample - self._feature_id_lines[feature_id] = self.line_number - for column_index, value in enumerate(data): - if column_index >= len(self.nonsample_cols): - # checkValue() should be implemented by subclasses - self.checkValue(value, column_index) - - def parseFeatureColumns(self, nonsample_col_vals): - """Override to check vals in the non-sample cols and return the id.""" - raise NotImplementedError('The {} class did not provide a method to ' - 'validate values in sample columns.'.format( - self.__class__.__name__)) - - def checkValue(self, value, column_index): - """Override to validate a value in a sample column.""" - raise NotImplementedError('The {} class did not provide a method to ' - 'validate values in sample columns.'.format( - self.__class__.__name__)) - - def _set_sample_ids_from_columns(self): - """Extracts sample IDs from column headers and set self.sampleIds.""" - num_errors = 0 - # check whether any sample columns are present - if len(self.cols[self.num_nonsample_cols:]) == 0: - self.logger.error('No sample columns found', - extra={'line_number': self.line_number}) - num_errors += 1 - # set self.sampleIds to the list of sample column names - self.sampleIds = self.cols[self.num_nonsample_cols:] - # validate each sample id - num_errors += self.checkId() - return num_errors - - def checkId(self): - # check either sample Id or patient Id - # override this to check Id - return 0 - - def checkIdInSamples(self): - # check sample Id - num_errors = 0 - for index, sample_id in enumerate(self.sampleIds): - if not self.checkSampleId( - sample_id, - column_number=self.num_nonsample_cols + index + 1): - num_errors += 1 - if ' ' in sample_id: - self.logger.error( - 'White space in SAMPLE_ID is not supported', - extra={'line_number': self.line_number, - 'cause': sample_id}) - num_errors += 1 - return num_errors - - -class GenewiseFileValidator(FeaturewiseFileValidator): - - """FeatureWiseValidator that has gene symbol and/or Entrez gene id as feature columns.""" - - REQUIRED_HEADERS = [] - OPTIONAL_HEADERS = ['Hugo_Symbol', 'Entrez_Gene_Id'] - ALLOW_BLANKS = True - NULL_VALUES = ["NA"] - - def checkHeader(self, cols): - """Validate the header and read sample IDs from it. - - Return the number of fatal errors. - """ - num_errors = super(GenewiseFileValidator, self).checkHeader(cols) - # see if at least one of the gene identifiers is in the right place - - if ('Hugo_Symbol' in self.sampleIds or - 'Entrez_Gene_Id' in self.sampleIds): - self.logger.error('Hugo_Symbol or Entrez_Gene_Id need to be placed before the ' - 'sample ID columns of the file.', - extra={'line_number': self.line_number}) - num_errors += 1 - elif not ('Hugo_Symbol' in self.nonsample_cols or - 'Entrez_Gene_Id' in self.nonsample_cols): - self.logger.error('At least one of the columns Hugo_Symbol or ' - 'Entrez_Gene_Id needs to be present.', - extra={'line_number': self.line_number}) - num_errors += 1 - elif ('Entrez_Gene_Id' not in self.nonsample_cols): - self.logger.warning('The recommended column Entrez_Gene_Id was not found. ' - 'Using Hugo_Symbol for all gene parsing.', - extra={'line_number': self.line_number}) - return num_errors - - def parseFeatureColumns(self, nonsample_col_vals): - """Check the gene identifier columns.""" - hugo_symbol = None - entrez_id = None - if 'Hugo_Symbol' in self.nonsample_cols: - hugo_index = self.nonsample_cols.index('Hugo_Symbol') - hugo_symbol = nonsample_col_vals[hugo_index].strip() - # treat empty string as a missing value - if hugo_symbol == '': - hugo_symbol = None - if 'Entrez_Gene_Id' in self.nonsample_cols: - entrez_index = self.nonsample_cols.index('Entrez_Gene_Id') - entrez_id = nonsample_col_vals[entrez_index].strip() - # treat the empty string as a missing value - if entrez_id == '': - entrez_id = None - return self.checkGeneIdentification(hugo_symbol, entrez_id) - - def checkId(self): - return self.checkIdInSamples() - - -class ContinuousValuesValidator(GenewiseFileValidator): - """Validator for matrix files mapping floats to gene/sample combinations. - - Allowing missing values indicated by GenewiseFileValidator.NULL_VALUES. - """ - - def checkValue(self, value, col_index): - """Check a value in a sample column.""" - - stripped_value = value.strip() - if stripped_value not in self.NULL_VALUES and not self.checkFloat(stripped_value): - self.logger.error("Value is neither a real number nor " + ', '.join(self.NULL_VALUES), - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - -class CNAValidator(GenewiseFileValidator): - """Common logic to validate CNA data types - - This is an abstract class. Should be subclassed to a class that knows how to check values. - """ - - OPTIONAL_HEADERS = ['Cytoband'] + GenewiseFileValidator.OPTIONAL_HEADERS - - def checkGeneIdentification(self, gene_symbol=None, entrez_id=None): - if gene_symbol is not None: - if '|' in gene_symbol: - gene_symbol, __ = gene_symbol.split('|', maxsplit=1) - return super().checkGeneIdentification(gene_symbol, entrez_id) - - -class CNADiscreteValidator(CNAValidator): - """ Logic to validate discrete CNA data.""" - - ALLOWED_VALUES = ['-2', '-1.5', '-1', '0', '1', '2'] + GenewiseFileValidator.NULL_VALUES - - def checkValue(self, value, col_index): - """Check a value in a sample column.""" - if value.strip() not in self.ALLOWED_VALUES: - if self.logger.isEnabledFor(logging.ERROR): - self.logger.error( - 'Invalid CNA value: possible values are [%s]', - ', '.join(self.ALLOWED_VALUES), - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - def validate(self): - super(CNADiscreteValidator, self).validate() - if 'pd_annotations_filename' in self.meta_dict: - study_dir = os.path.dirname(self.filename) - meta_dict = dict(self.meta_dict) - meta_dict['data_filename'] = self.meta_dict['pd_annotations_filename'] - annotations_validator = CNADiscretePDAAnnotationsValidator(study_dir, meta_dict, self.portal, - self.logger.logger, self.relaxed_mode, self.strict_maf_checks) - annotations_validator.data_entrez_gene_ids = set(self._feature_id_lines.keys()) - annotations_validator.validate() - -class CustomDriverAnnotationValidator(Validator): - - NULL_DRIVER_VALUES = ('Putative_Passenger', 'Putative_Driver', 'NA', 'Unknown', '') - NULL_DRIVER_TIERS_VALUES = ('', 'NA') - CUSTOM_DRIVER_CHECK_FUNCTION_MAP = { - 'cbp_driver': 'checkDriver', - 'cbp_driver_tiers': 'checkDriverTiers', - 'cbp_driver_annotation': 'checkFilterAnnotation', - 'cbp_driver_tiers_annotation': 'checkFilterAnnotation', - } - - def __init__(self, *args, **kwargs): - super(CustomDriverAnnotationValidator, self).__init__(*args, **kwargs) - self.extra_exists = False - self.extra = '' - self.tiers = set() - - def checkHeader(self, cols): - # raise errors if the filter_annotations are found without the "filter" columns - num_errors = super(CustomDriverAnnotationValidator, self).checkHeader(cols) - if 'cbp_driver_annotation' in cols and 'cbp_driver' not in cols: - self.logger.error('Column cbp_driver_annotation ' - 'found without any cbp_driver ' - 'column.', extra={'column_number': cols.index('cbp_driver_annotation')}) - num_errors += 1 - if 'cbp_driver_tiers_annotation' in cols and 'cbp_driver_tiers' not in cols: - self.logger.error('Column cbp_driver_tiers_annotation ' - 'found without any cbp_driver_tiers ' - 'column.', extra={'column_number': cols.index('cbp_driver_tiers_annotation')}) - num_errors += 1 - # raise errors if the "filter" columns are found without the filter_annotations - if 'cbp_driver' in cols and 'cbp_driver_annotation' not in cols: - self.logger.error('Column cbp_driver ' - 'found without any cbp_driver_annotation ' - 'column.', extra={'column_number': cols.index('cbp_driver')}) - num_errors += 1 - if 'cbp_driver_tiers' in cols and 'cbp_driver_tiers_annotation' not in cols: - self.logger.error('Column cbp_driver_tiers ' - 'found without any cbp_driver_tiers_annotation ' - 'column.', extra={'column_number': cols.index('cbp_driver_tiers')}) - num_errors += 1 - return num_errors - - def checkLine(self, data): - super(CustomDriverAnnotationValidator, self).checkLine(data) - has_custom_driver_cols = len(list(set(self.cols) & set(self.CUSTOM_DRIVER_CHECK_FUNCTION_MAP.keys()))) > 0 - if not has_custom_driver_cols: - return - - driver_value, driver_annotation, driver_tiers_value, driver_tiers_annotation = self.parsePdAnnotations(data) - if driver_tiers_annotation is not None and driver_tiers_value is None: - self.logger.error( - 'This line has no value for cbp_driver_tiers ' - 'and a value for cbp_driver_tiers_annotation. ' - 'Please, fill the cbp_driver_tiers column.', - extra={'line_number': self.line_number, - 'cause': driver_tiers_value}) - - for col_index, col_name in enumerate(self.cols): - # validate the column if there's a function defined for it - try: - check_function_name = self.CUSTOM_DRIVER_CHECK_FUNCTION_MAP[col_name] - except KeyError: - pass - else: - col_index = self.cols.index(col_name) - value = data[col_index] - # get the checking method for this column - checking_function = getattr(self, check_function_name) - if not checking_function(value): - self.printDataInvalidStatement(value, col_index) - - def parsePdAnnotations(self, data): - driver_value = None - driver_annotation = None - driver_tiers_value = None - driver_tiers_annotation = None - if 'cbp_driver' in self.cols: - driver_value = data[self.cols.index('cbp_driver')].strip() - # treat the empty string as a missing value - if driver_value in (''): - driver_value = None - if 'cbp_driver_annotation' in self.cols: - driver_annotation = data[self.cols.index('cbp_driver_annotation')].strip() - # treat the empty string as a missing value - if driver_annotation in (''): - driver_annotation = None - if 'cbp_driver_tiers' in self.cols: - driver_tiers_value = data[self.cols.index('cbp_driver_tiers')].strip() - # treat the empty string as a missing value - if driver_tiers_value in (''): - driver_tiers_value = None - if 'cbp_driver_tiers_annotation' in self.cols: - driver_tiers_annotation = data[self.cols.index('cbp_driver_tiers_annotation')].strip() - # treat the empty string as a missing value - if driver_tiers_annotation in (''): - driver_tiers_annotation = None - return driver_value, driver_annotation, driver_tiers_value, driver_tiers_annotation - - def checkDriver(self, value): - """Validate the values in the cbp_driver column.""" - if value not in self.NULL_DRIVER_VALUES: - self.extra = 'Only "Putative_Passenger", "Putative_Driver", "NA", "Unknown" and "" (empty) are allowed.' - self.extra_exists = True - return False - return True - - def checkDriverTiers(self, value): - """Report the tiers in the cbp_driver_tiers column (skipping the empty values).""" - if value not in self.NULL_DRIVER_TIERS_VALUES: - self.logger.info('Values contained in the column cbp_driver_tiers that will appear in the "Mutation Color" ' - 'menu of the Oncoprint', - extra={'line_number': self.line_number, 'column_number': self.cols.index('cbp_driver_tiers'), 'cause': value}) - self.tiers.add(value) - if len(self.tiers) > 10: - self.logger.warning('cbp_driver_tiers contains more than 10 different tiers.', - extra={'line_number': self.line_number, 'column_number': self.cols.index('cbp_driver_tiers'), - 'cause': value}) - if len(value) > 50: - self.extra= 'cbp_driver_tiers column does not support values longer than 50 characters' - self.extra_exists = True - return False - return True - - def checkFilterAnnotation(self, value): - """Check if the annotation values are smaller than 80 characters.""" - if len(value) > 80: - self.extra = 'cbp_driver_annotation and cbp_driver_tiers_annotation columns do not support annotations longer than 80 characters' - self.extra_exists = True - return False - return True - - def printDataInvalidStatement(self, value, col_index): - """Prints out statement for invalid values detected.""" - message = ("Value in column '%s' is invalid" % - self.cols[col_index]) - if self.extra_exists: - message = self.extra - self.extra = '' - self.extra_exists = False - self.logger.error( - message, - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - -class CustomNamespacesValidator(Validator): - """ Logic to validate custom namespace data.""" - - def __init__(self, *args, **kwargs): - super(CustomNamespacesValidator, self).__init__(*args, **kwargs) - - def checkHeader(self, cols): - num_errors = super(CustomNamespacesValidator, self).checkHeader(cols) - - #Namespaces column are compulsory when custom namespaces are defined in meta file - namespaces = [] - if 'namespaces' in self.meta_dict: - namespaces = self.meta_dict['namespaces'].split(',') - for namespace in namespaces: - defined_namespace = namespace.strip().lower() - defined_namespace_found = any([True for col in cols if col.lower().startswith(defined_namespace + '.')]) - if not defined_namespace_found: - self.logger.error('%s namespace defined but the file does not have any matching columns' - % (defined_namespace)) - num_errors += 1 - - return num_errors - -class CNADiscreteLongValidator(CustomDriverAnnotationValidator, CustomNamespacesValidator): - """ Logic to validate discrete long CNA data.""" - REQUIRED_HEADERS = [ - 'Sample_Id', - 'Value' - ] - OPTIONAL_HEADERS = [ - 'Hugo_Symbol', - 'Entrez_Gene_Id', - 'cbp_driver', - 'cbp_driver_annotation', - 'cbp_driver_tiers', - 'cbp_driver_tiers_annotation' - ] - REQUIRE_COLUMN_ORDER = False - ALLOW_BLANKS = True - - NULL_VALUES = ['NA'] - - ALLOWED_CNA_VALUES = ['-2', '-1.5', '-1', '0', '1', '2'] + NULL_VALUES - - - - def __init__(self, *args, **kwargs): - super(CNADiscreteLongValidator, self).__init__(*args, **kwargs) - self.cna_entries = {} #Dictionary of dictionaries with sampleid: {entrez: hugo} - self.cna_entry = namedtuple('CNAEntry', 'hugo line') - - def checkHeader(self, cols): - num_errors = super(CNADiscreteLongValidator, self).checkHeader(cols) - if ('Hugo_Symbol' not in cols and - 'Entrez_Gene_Id' not in cols): - self.logger.error('Hugo_Symbol or Entrez_Gene_Id column needs to be present in the file.', - extra={'line_number': self.line_number}) - num_errors += 1 - - return num_errors - - def checkLine(self, data): - super(CNADiscreteLongValidator, self).checkLine(data) - sample_id_index = self.cols.index('Sample_Id') - self.checkSampleId(data[sample_id_index], column_number = sample_id_index + 1) - - entrez_gene_id = None - hugo_symbol = None - if 'Entrez_Gene_Id' in self.cols: - if data[self.cols.index('Entrez_Gene_Id')] != '': - entrez_gene_id = data[self.cols.index('Entrez_Gene_Id')] - if 'Hugo_Symbol' in self.cols: - if data[self.cols.index('Hugo_Symbol')] != '': - hugo_symbol = data[self.cols.index('Hugo_Symbol')] - entrez_gene_id = self.checkGeneIdentification(hugo_symbol, entrez_gene_id) - - #Check uniqueness gene - sampleId - sample_id = data[self.cols.index('Sample_Id')] - if entrez_gene_id is not None: - if sample_id in self.cna_entries.keys(): - if entrez_gene_id in self.cna_entries[sample_id]: - if hugo_symbol is not None and self.cna_entries[sample_id][entrez_gene_id].hugo is not None: - if self.cna_entries[sample_id][entrez_gene_id].hugo == hugo_symbol: - self.logger.error( - 'Duplicated gene found within the same sample.', - extra = {'line_number': self.line_number, - 'cause': 'Sample Id: %s, Hugo Symbol: %s, Entrez Gene Id: %s ' - '(already defined on line %d)' % ( - sample_id, - hugo_symbol, - entrez_gene_id, - self.cna_entries[sample_id][entrez_gene_id].line)}) - else: - self.logger.error( - 'Two different Hugo Symbols that map to the same Entrez Gene Id ' - 'found within the same sample.', - extra = {'line_number': self.line_number, - 'cause': 'Sample Id: %s, Entrez Gene Id: %s, ' - 'Hugo Symbol: %s (already defined on line %d, ' - 'with Hugo Symbol: %s)' % ( - sample_id, - entrez_gene_id, - hugo_symbol, - self.cna_entries[sample_id][entrez_gene_id].line, - self.cna_entries[sample_id][entrez_gene_id].hugo)}) - elif hugo_symbol is not None or self.cna_entries[sample_id][entrez_gene_id].hugo is not None: - #self.logger.error("Error: %s %s %s %s" %(str(sample_id), str(entrez_gene_id), str(hugo_symbol), str(self.cna_entries[sample_id]))) - self.logger.error( - 'A Hugo Symbol that maps to an already existing Entrez Gene ' - 'Id found within the same sample.', - extra = {'line_number': self.line_number, - 'cause': 'Sample Id: %s, Hugo Symbol: %s, ' - 'Entrez Gene Id: %s ' - '(already defined on line %d)' % ( - sample_id, - hugo_symbol if hugo_symbol is not None else self.cna_entries[sample_id][entrez_gene_id].hugo, - entrez_gene_id, - self.cna_entries[sample_id][entrez_gene_id].line)}) - else: - self.logger.error( - 'Duplicated Entrez Gene Id found within the same sample.', - extra = {'line_number': self.line_number, - 'cause': 'Sample Id: %s, Entrez Gene Id: %s ' - '(already defined on line %d)' % ( - sample_id, - entrez_gene_id, - self.cna_entries[sample_id][entrez_gene_id].line)}) - else: - self.cna_entries[sample_id][entrez_gene_id] = self.cna_entry(hugo=hugo_symbol, line=self.line_number) - else: - self.cna_entries[sample_id] = {entrez_gene_id: self.cna_entry(hugo=hugo_symbol, line=self.line_number)} - - if 'Value' in self.cols: - cna_value = data[self.cols.index('Value')] - if cna_value.strip() not in self.ALLOWED_CNA_VALUES: - if self.logger.isEnabledFor(logging.ERROR): - self.logger.error( - 'Invalid CNA value: possible values are [%s]', - ', '.join(self.ALLOWED_CNA_VALUES), - extra={'line_number': self.line_number, - 'column_number': self.cols.index('Value'), - 'cause': cna_value}) - - def onComplete(self): - #End validation of this data type by running the super function - super(CNADiscreteLongValidator, self).onComplete() - -class CNADiscretePDAAnnotationsValidator(CustomDriverAnnotationValidator): - REQUIRED_HEADERS = [ - 'SAMPLE_ID' - ] - OPTIONAL_HEADERS = [ - 'Hugo_Symbol', - 'Entrez_Gene_Id', - 'cbp_driver', - 'cbp_driver_annotation', - 'cbp_driver_tiers', - 'cbp_driver_tiers_annotation' - ] - REQUIRE_COLUMN_ORDER = False - ALLOW_BLANKS = True - - def __init__(self, *args, **kwargs): - super(CNADiscretePDAAnnotationsValidator, self).__init__(*args, **kwargs) - self.data_entrez_gene_ids = None - self.entrez_gene_ids = set() - self.extraCols = [] - - def checkHeader(self, cols): - num_errors = super(CNADiscretePDAAnnotationsValidator, self).checkHeader(cols) - if ('Hugo_Symbol' not in cols and - 'Entrez_Gene_Id' not in cols): - self.logger.error('Hugo_Symbol or Entrez_Gene_Id column needs to be present in the file.', - extra={'line_number': self.line_number}) - num_errors += 1 - return num_errors - - def checkLine(self, data): - super(CNADiscretePDAAnnotationsValidator, self).checkLine(data) - sample_id_index = self.cols.index('SAMPLE_ID') - self.checkSampleId(data[sample_id_index], column_number = sample_id_index + 1) - - entrez_gene_id = None - hugo_symbol = None - if 'Entrez_Gene_Id' in self.cols: - if data[self.cols.index('Entrez_Gene_Id')] != '': - entrez_gene_id = data[self.cols.index('Entrez_Gene_Id')] - if 'Hugo_Symbol' in self.cols: - if data[self.cols.index('Hugo_Symbol')] != '': - hugo_symbol = data[self.cols.index('Hugo_Symbol')] - entrez_gene_id = self.checkGeneIdentification(hugo_symbol, entrez_gene_id) - if entrez_gene_id is not None: - self.entrez_gene_ids.add(entrez_gene_id) - - def onComplete(self): - """Perform final validations based on the data parsed.""" - if self.data_entrez_gene_ids is not None: - extra_entrez_gene_ids = self.entrez_gene_ids.difference(self.data_entrez_gene_ids) - if (extra_entrez_gene_ids): - self.logger.error( - 'Following Entrez_Gene_Id are present in pd annotation file, but not in CNA data [%s]', - ', '.join([ str(id) for id in extra_entrez_gene_ids ])) - super(CNADiscretePDAAnnotationsValidator, self).onComplete() - -class CNAContinuousValuesValidator(CNAValidator, ContinuousValuesValidator): - """Logic to validate continuous CNA data.""" - - -class MutationsExtendedValidator(CustomDriverAnnotationValidator, CustomNamespacesValidator): - """Sub-class mutations_extended validator.""" - - # TODO - maybe this should comply to https://wiki.nci.nih.gov/display/TCGA/Mutation+Annotation+Format+%28MAF%29+Specification ? - REQUIRED_HEADERS = [ - 'Tumor_Sample_Barcode', - 'Hugo_Symbol', # Required to initialize the Mutation Mapper tabs - 'Variant_Classification', # seems to be important during loading/filtering step. - ] - REQUIRE_COLUMN_ORDER = False - ALLOW_BLANKS = True - - # MutationFilter.java filters these types. Therefore, there is no reason to add warnings and errors for them - SKIP_VARIANT_TYPES = [ - 'Silent', - 'Intron', - '3\'UTR', - '3\'Flank', - '5\'UTR', - '5\'Flank', - 'IGR', - 'RNA' - ] - - NULL_AA_CHANGE_VALUES = ('', 'NULL', 'NA') - - # extra unofficial Variant classification values from https://github.com/mskcc/vcf2maf/issues/88: - EXTRA_VARIANT_CLASSIFICATION_VALUES = ['Splice_Region', 'Fusion'] - # MAF values for Variant_Classification column - # from https://wiki.nci.nih.gov/display/TCGA/Mutation+Annotation+Format+%28MAF%29+Specification + EXTRA values + Unknown: - VARIANT_CLASSIFICATION_VALUES = [ - 'Frame_Shift_Del', - 'Frame_Shift_Ins', - 'In_Frame_Del', - 'In_Frame_Ins', - 'Missense_Mutation', - 'Nonsense_Mutation', - 'Splice_Site', - 'Translation_Start_Site', - 'Nonstop_Mutation', - 'Targeted_Region', - 'De_novo_Start_InFrame', - 'De_novo_Start_OutOfFrame'] + SKIP_VARIANT_TYPES + EXTRA_VARIANT_CLASSIFICATION_VALUES + ['Unknown'] - - REQUIRED_ASCN_COLUMNS = [ - 'ASCN.ASCN_METHOD', - 'ASCN.ASCN_INTEGER_COPY_NUMBER', - 'ASCN.TOTAL_COPY_NUMBER', - 'ASCN.MINOR_COPY_NUMBER', - 'ASCN.CCF_EXPECTED_COPIES', - 'ASCN.CCF_EXPECTED_COPIES_UPPER', - 'ASCN.CLONAL', - 'ASCN.EXPECTED_ALT_COPIES' - ] - - # Used for mapping column names to the corresponding function that does a check on the value. - CHECK_FUNCTION_MAP = { - 'Matched_Norm_Sample_Barcode':'checkMatchedNormSampleBarcode', - 'NCBI_Build':'checkNCBIbuild', - 'Verification_Status':'checkVerificationStatus', - 'Validation_Status':'checkValidationStatus', - 't_alt_count':'check_t_alt_count', - 't_ref_count':'check_t_ref_count', - 'n_alt_count':'check_n_alt_count', - 'n_ref_count':'check_n_ref_count', - 'Tumor_Sample_Barcode': 'checkNotBlank', - 'Hugo_Symbol': 'checkNotBlank', - 'HGVSp_Short': 'checkAminoAcidChange', - 'Amino_Acid_Change': 'checkAminoAcidChange', - 'Variant_Classification': 'checkVariantClassification', - 'SWISSPROT': 'checkSwissProt', - 'Start_Position': 'checkStartPosition', - 'End_Position': 'checkEndPosition', - 'Mutation_Status': 'checkMutationStatus' - } - - def __init__(self, *args, **kwargs): - super(MutationsExtendedValidator, self).__init__(*args, **kwargs) - self.extraCols = [] - - def checkHeader(self, cols): - """Validate header, requiring at least one gene id column.""" - num_errors = super(MutationsExtendedValidator, self).checkHeader(cols) - - if not 'SWISSPROT' in cols: - self.logger.warning( - 'Including the SWISSPROT column is recommended to make sure ' - 'that the UniProt canonical isoform is used when drawing Pfam ' - 'domains in the mutations view', - extra={'line_number': self.line_number}) - elif not 'swissprot_identifier' in self.meta_dict: - self.logger.warning( - "A SWISSPROT column was found in datafile without specifying " - "associated 'swissprot_identifier' in metafile, assuming " - "'swissprot_identifier: name'.", - extra={'column_number': cols.index('SWISSPROT') + 1}) - - # one of these columns should be present: - if not ('HGVSp_Short' in cols or 'Amino_Acid_Change' in cols): - self.logger.error('At least one of the columns HGVSp_Short or ' - 'Amino_Acid_Change needs to be present.', - extra={'line_number': self.line_number}) - num_errors += 1 - - namespaces = [] - missing_ascn_columns = [] - ascn_namespace_defined = False - if 'namespaces' in self.meta_dict: - namespaces = self.meta_dict['namespaces'].split(',') - for namespace in namespaces: - if 'ascn' == namespace.strip().lower(): - ascn_namespace_defined = True - - if ascn_namespace_defined: - for required_ascn_column in self.REQUIRED_ASCN_COLUMNS: - if required_ascn_column not in cols: - missing_ascn_columns.append(required_ascn_column) - if len(missing_ascn_columns) > 0: - self.logger.error('ASCN namespace defined but MAF ' - 'missing required ASCN columns. ' - 'Missing %s' % (','.join(missing_ascn_columns))) - num_errors += 1 - - return num_errors - - def checkLine(self, data): - - """Each value in each line is checked individually. - - From the column name (stored in self.cols), the - corresponding function to check the value is selected from - CHECK_FUNCTION_MAP. Will emit a generic warning - message if this function returns False. If the function sets - self.extra_exists to True, self.extra will be used in this - message. - """ - super(MutationsExtendedValidator, self).checkLine(data) - if self.skipValidation(data): - return - self.checkAlleleMAFFormat(data) - self.checkAlleleSpecialCases(data) - self.checkValidationColumns(data) - - for col_index, col_name in enumerate(self.cols): - # validate the column if there's a function defined for it - try: - check_function_name = self.CHECK_FUNCTION_MAP[col_name] - except KeyError: - pass - else: - col_index = self.cols.index(col_name) - value = data[col_index] - # get the checking method for this column - checking_function = getattr(self, check_function_name) - if not checking_function(value): - self.printDataInvalidStatement(value, col_index) - elif self.extra_exists or self.extra: - raise RuntimeError(('Checking function %s set an error ' - 'message but reported no error') % - checking_function.__name__) - - # validate Tumor_Sample_Barcode value to make sure it exists in clinical sample list: - sample_id_column_index = self.cols.index('Tumor_Sample_Barcode') - sample_id = data[sample_id_column_index] - self.checkSampleId(sample_id, column_number=sample_id_column_index + 1) - - # Keep track of all sample IDs in the mutation data file - mutation_file_sample_ids.add(sample_id) - - # parse hugo and entrez to validate them together - hugo_symbol = None - entrez_id = None - if 'Hugo_Symbol' in self.cols: - hugo_symbol = data[self.cols.index('Hugo_Symbol')].strip() - # treat the empty string or 'Unknown' as a missing value - if hugo_symbol in ('NA', '', 'Unknown'): - hugo_symbol = None - if 'Entrez_Gene_Id' in self.cols: - entrez_id = data[self.cols.index('Entrez_Gene_Id')].strip() - # treat the empty string or 0 as a missing value - if entrez_id in ('NA', '', '0'): - entrez_id = None - # validate hugo and entrez together: - normalized_gene = self.checkGeneIdentification(hugo_symbol, entrez_id) - - # validate the gene to make sure its from the targeted panel - if normalized_gene and self.portal.gene_panel_list and data[sample_id_column_index] in sample_ids_panel_dict: - panel_id = sample_ids_panel_dict[data[sample_id_column_index]] - if panel_id in self.portal.gene_panel_list and panel_id != 'NA': - self.checkOffPanelVariant(data, normalized_gene, panel_id, hugo_symbol, entrez_id) - - - # check if a non-blank amino acid change exists for non-splice sites - if ('Variant_Classification' not in self.cols or - data[self.cols.index('Variant_Classification')] not in ( - 'Splice_Site', )): - aachange_value_found = False - for aa_col in ('HGVSp_Short', 'Amino_Acid_Change'): - if (aa_col in self.cols and - data[self.cols.index(aa_col)] not in - self.NULL_AA_CHANGE_VALUES): - aachange_value_found = True - if not aachange_value_found: - self.logger.warning( - 'No Amino_Acid_Change or HGVSp_Short value. This ' - 'mutation record will get a generic "MUTATED" flag', - extra={'line_number': self.line_number}) - - # Report non-supported 'HGVSp_Short' with more than 255 characters. - if 'HGVSp_Short' in self.cols: - if len(data[self.cols.index('HGVSp_Short')]) > 255: - self.logger.error( - 'cBioPortal does not support values longer than 255 ' - 'characters in "HGVSp_Short"', - extra={'line_number': self.line_number}) - - # If strict mode is enforced, log message from mutation checks should be error, - # otherwise warning - def send_log_message(self, strict_maf_checks, log_message, extra_dict): - if not strict_maf_checks: - self.logger.warning(log_message, extra=extra_dict) - else: - self.logger.error(log_message, extra=extra_dict) - - - def checkAlleleMAFFormat(self, data): - """ - Check Start_Position and End_Position against Variant_Type (according to MAF file checks #6, #10 and #11: - https://wiki.nci.nih.gov/display/TCGA/Mutation+Annotation+Format+(MAF)+Specification) - """ - - necessary_columns_check6 = ['Reference_Allele', 'Tumor_Seq_Allele1', 'Tumor_Seq_Allele2'] - necessary_columns_check10 = ['Start_Position', 'End_Position'] - necessary_columns_check11 = ['Variant_Type'] + necessary_columns_check6 + necessary_columns_check10 - - if set(necessary_columns_check6).issubset(self.cols): - ref_allele = data[self.cols.index('Reference_Allele')].strip() - tumor_seq_allele1 = data[self.cols.index('Tumor_Seq_Allele1')].strip() - tumor_seq_allele2 = data[self.cols.index('Tumor_Seq_Allele2')].strip() - if set(necessary_columns_check10).issubset(self.cols): - # Set positions to False if position are empty, so checks will not be performed - if data[self.cols.index('Start_Position')].strip() == '' or data[self.cols.index('Start_Position')] == 'NA' or data[self.cols.index('End_Position')].strip() == '' or data[self.cols.index('End_Position')] == 'NA': - positions = False - else: - positions = True - start_pos = float(data[self.cols.index('Start_Position')].strip('\'').strip('\"')) - end_pos = float(data[self.cols.index('End_Position')].strip('\'').strip('\"')) - if 'Variant_Type' in self.cols: - variant_type = data[self.cols.index('Variant_Type')].strip() - - # MAF file check #6 (for now only Reference_Allele, Tumor_Seq_Allele1 and Tumor_Seq_Allele2) - if set(necessary_columns_check6).issubset(self.cols): - - # Check if Allele columms only contain the following values: -,A,C,T,G - legal_values = ["-", "A", "C", "T", "G"] - illegal_values_ref = [value for value in list(ref_allele) if value not in legal_values] - illegal_values_tumor1 = [value for value in list(tumor_seq_allele1) if value not in legal_values] - illegal_values_tumor2 = [value for value in list(tumor_seq_allele2) if value not in legal_values] - - # Else return an error message - if len(illegal_values_ref) > 0 and len(illegal_values_tumor1) > 0 and len(illegal_values_tumor2) > 0: - log_message = "All Allele Based columns contain invalid character." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (ref_allele, tumor_seq_allele1, tumor_seq_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - elif len(illegal_values_ref) > 0: - log_message = "Allele Based column Reference_Allele contains invalid character." - extra_dict = {'line_number': self.line_number, 'cause': ref_allele} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - elif len(illegal_values_tumor1) > 0: - log_message = "Allele Based column Tumor_Seq_Allele1 contains invalid character." - extra_dict = {'line_number': self.line_number, 'cause': tumor_seq_allele1} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - elif len(illegal_values_tumor2) > 0: - log_message = "Allele Based column Tumor_Seq_Allele2 contains invalid character." - extra_dict = {'line_number': self.line_number, 'cause': tumor_seq_allele2} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - # MAF file check #10: Check if Start_Position is equal or smaller than End_Position - if set(necessary_columns_check10).issubset(self.cols) and positions: - if not (start_pos <= end_pos): - log_message = "Start_Position should be smaller than or equal to End_Position." - extra_dict = {'line_number': self.line_number, 'cause': '(%s, %s)' % (start_pos, end_pos)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - # MAF file check #11: Check Start_Position and End_Position against Variant_Type - if set(necessary_columns_check11).issubset(self.cols): - - if variant_type == "INS": - # Start and End Position should be the same as length reference allele or equal 1 - # and length of Reference_Allele should be equal or smaller than the Tumor_Seq_Allele1 or 2, - # otherwise no insertion, but deletion - if positions: - if not (((end_pos - start_pos + 1) == len(ref_allele)) or ((end_pos - start_pos) == 1)): - log_message = "Variant_Type indicates insertion, but difference in Start_Position and " \ - "End_Position does not equal to 1 or the length or the Reference_Allele." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (start_pos, end_pos, ref_allele)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - if not ((len(ref_allele) <= len(tumor_seq_allele1)) or (len(ref_allele) <= len(tumor_seq_allele2))): - log_message = "Variant_Type indicates insertion, but length of Reference_Allele is bigger than " \ - "the length of the Tumor_Seq_Allele1 and/or 2 and therefore indicates deletion." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (ref_allele, tumor_seq_allele1, tumor_seq_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - if variant_type == "DEL": - # The difference between Start_Position and End_Position for a DEL should be equal to the length - # of the Reference_Allele - if positions: - if not ((end_pos - start_pos + 1) == len(ref_allele)): - log_message = "Variant_Type indicates deletion, but the difference between Start_Position and " \ - "End_Position are not equal to the length of the Reference_Allele." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (start_pos, end_pos, ref_allele)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - # The length of the Reference_Allele should be bigger than of the Tumor_Seq_Alleles for a DEL - if len(ref_allele) < len(tumor_seq_allele1) or len(ref_allele) < len(tumor_seq_allele2): - log_message = "Variant_Type indicates deletion, but length of Reference_Allele is smaller than " \ - "the length of Tumor_Seq_Allele1 and/or Tumor_Seq_Allele2, indicating an insertion." - extra_dict ={'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (ref_allele, tumor_seq_allele1, tumor_seq_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - if variant_type == "SNP": - # Expect alleles to have length 2 when variant type is SNP - if not (len(ref_allele) == 1 and len(tumor_seq_allele1) == 1 and len(tumor_seq_allele2) == 1): - log_message = "Variant_Type indicates a SNP, but length of Reference_Allele, Tumor_Seq_Allele1 " \ - "and/or Tumor_Seq_Allele2 do not equal 1." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (ref_allele, tumor_seq_allele1, tumor_seq_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - if variant_type == "DNP": - # Expect alleles to have length 2 when variant type is DNP - if not (len(ref_allele) == 2 and len(tumor_seq_allele1) == 2 and len(tumor_seq_allele2) == 2): - log_message = "Variant_Type indicates a DNP, but length of Reference_Allele, Tumor_Seq_Allele1 " \ - "and/or Tumor_Seq_Allele2 do not equal 2." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (ref_allele, tumor_seq_allele1, tumor_seq_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - if variant_type == "TNP": - # Expect alleles to have length 3 when variant type is TNP - if not (len(ref_allele) == 3 and len(tumor_seq_allele1) == 3 and len(tumor_seq_allele2) == 3): - log_message = "Variant_Type indicates a TNP, but length of Reference_Allele, Tumor_Seq_Allele1 " \ - "and/or Tumor_Seq_Allele2 do not equal 3." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (ref_allele, tumor_seq_allele1, tumor_seq_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - if variant_type == "ONP": - # Expect alleles to have length >3 when variant type is ONP and are of equal length - if (len(ref_allele) != len(tumor_seq_allele1) or len(tumor_seq_allele1) != len(tumor_seq_allele2))\ - or (len(ref_allele) <= 3 and len(tumor_seq_allele1) <= 3 and len(tumor_seq_allele2) <= 3): - log_message = "Variant_Type indicates a ONP, but length of Reference_Allele, " \ - "Tumor_Seq_Allele1 and 2 are not bigger than 3 or are of unequal lengths." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (ref_allele, tumor_seq_allele1, tumor_seq_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - # Following variant types cannot contain a deletion in the Allele columns - if variant_type == "SNP" or variant_type == "DNP" or variant_type == "TNP" or variant_type == "ONP": - if ("-" in ref_allele) or ("-" in tumor_seq_allele1) or ("-" in tumor_seq_allele2): - log_message = "Variant_Type indicates a %s, but Reference_Allele, Tumor_Seq_Allele1 " \ - "and/or Tumor_Seq_Allele2 contain deletion (-)." % variant_type - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (ref_allele, tumor_seq_allele1, tumor_seq_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - return True - - def checkAlleleSpecialCases(self, data): - """ Check other special cases which should or should not occur in Allele Based columns - Special cases are either from unofficial vcf2maf rules or discrepancies identified. """ - - # First check if columns necessary exist in the data - necessary_columns = ['Reference_Allele', 'Tumor_Seq_Allele1', 'Tumor_Seq_Allele2', 'Variant_Type'] - if set(necessary_columns).issubset(self.cols): - ref_allele = data[self.cols.index('Reference_Allele')].strip() - tumor_seq_allele1 = data[self.cols.index('Tumor_Seq_Allele1')].strip() - tumor_seq_allele2 = data[self.cols.index('Tumor_Seq_Allele2')].strip() - variant_type = data[self.cols.index('Variant_Type')].strip() - - # Check if Allele Based columns are not all the same - if ref_allele == tumor_seq_allele1 and tumor_seq_allele1 == tumor_seq_allele2: - log_message = "All Values in columns Reference_Allele, Tumor_Seq_Allele1 " \ - "and Tumor_Seq_Allele2 are equal." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (ref_allele, tumor_seq_allele1, tumor_seq_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - # In case of deletion, check when Reference_Allele is the same length as both Tumor_Seq_Allele if at least - # one of the Tumor_Seq_Alleles is a deletion ('-') otherwise a SNP - if variant_type == "DEL" and len(ref_allele) == len(tumor_seq_allele1) \ - and len(ref_allele) == len(tumor_seq_allele2) and "-" not in tumor_seq_allele1 \ - and "-" not in tumor_seq_allele2: - log_message = "Variant_Type indicates a deletion, Allele based columns are the same length, " \ - "but Tumor_Seq_Allele columns do not contain -, indicating a SNP." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s)' % (ref_allele, tumor_seq_allele1, tumor_seq_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - return True - - def checkValidationColumns(self, data): - """ - Perform MAF file check #7,#8, #9 and #13 for the Validation columns: - https://wiki.nci.nih.gov/display/TCGA/Mutation+Annotation+Format+(MAF)+Specification) - """ - - # Set variables for the different checks - necessary_columns_check7and8 = ['Validation_Status', 'Tumor_Validation_Allele1', 'Tumor_Validation_Allele2', - 'Match_Norm_Validation_Allele1', 'Match_Norm_Validation_Allele2'] - necessary_columns_check13 = ['Validation_Status', 'Validation_Method'] - necessary_columns_check9 = ['Mutation_Status', 'Reference_Allele'] + necessary_columns_check7and8 - - if set(necessary_columns_check7and8).issubset(self.cols): - validation_status = data[self.cols.index('Validation_Status')].strip().lower() - tumor_allele1 = data[self.cols.index('Tumor_Validation_Allele1')].strip() - tumor_allele2 = data[self.cols.index('Tumor_Validation_Allele2')].strip() - norm_allele1 = data[self.cols.index('Match_Norm_Validation_Allele1')].strip() - norm_allele2 = data[self.cols.index('Match_Norm_Validation_Allele2')].strip() - if set(necessary_columns_check13).issubset(self.cols): - validation_status = data[self.cols.index('Validation_Status')].strip().lower() - validation_method = data[self.cols.index('Validation_Method')].strip().lower() - if 'Mutation_Status' in self.cols and 'Reference_Allele' in self.cols: - mutation_status = data[self.cols.index('Mutation_Status')].strip().lower() - ref_allele = data[self.cols.index('Reference_Allele')].strip() - - # Check #7 and #8: When validation status is valid or invalid the Validation_Allele columns cannot be null - if set(necessary_columns_check7and8).issubset(self.cols): - - if validation_status == "valid" or validation_status == "invalid": - legal_allele_values = ['-', 'A', 'C', 'T', 'G'] - illegal_values_tumor1 = [value for value in list(tumor_allele1) if value not in legal_allele_values] - illegal_values_tumor2 = [value for value in list(tumor_allele2) if value not in legal_allele_values] - illegal_values_norm1 = [value for value in list(norm_allele1) if value not in legal_allele_values] - illegal_values_norm2 = [value for value in list(norm_allele2) if value not in legal_allele_values] - - # Check if Allele Columns are not empty ('' or 'NA') when Validation_Status is valid or invalid - if tumor_allele1 in ['', 'NA'] or tumor_allele2 in ['', 'NA'] or norm_allele1 in ['', 'NA'] \ - or norm_allele2 in ['', 'NA']: - log_message = "Validation Status is %s, but Validation Allele columns are empty." \ - % validation_status - extra_dict = {'line_number': self.line_number} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - # Check when Allele Columns are not empty if the Allele Based columns contain either -,A,C,T,G - elif len(illegal_values_tumor1) > 0 or len(illegal_values_tumor2) > 0 \ - or len(illegal_values_norm1) > 0 or len(illegal_values_norm2) > 0: - log_message = "At least one of the Validation Allele Based columns (Tumor_Validation_Allele1, " \ - "Tumor_Validation_Allele2, Match_Norm_Validation_Allele1, " \ - "Match_Norm_Validation_Allele2) contains invalid character." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s, %s)' % (tumor_allele1, tumor_allele2, - norm_allele1, norm_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - # And in case of invalid also checks if validation alleles from tumor and normal match - elif validation_status == "invalid" \ - and (tumor_allele1 != norm_allele1 or tumor_allele2 != norm_allele2): - log_message = "When Validation_Status is invalid the Tumor_Validation_Allele " \ - "and Match_Norm_Validation_Allele columns should be equal." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s, %s)' % (tumor_allele1, tumor_allele2, - norm_allele1, norm_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - - # Check #13: When Validation_Status is valid or invalid the Validation_Method column cannot be None. - if set(necessary_columns_check13).issubset(self.cols): - if validation_status == "valid" or validation_status == "invalid": - if validation_method == "none" or validation_method == "na": - log_message = "Validation Status is %s, but Validation_Method is not defined." % validation_status - extra_dict = {'line_number': self.line_number} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - - # Check #9: Check Validation_Status against Mutation_Status - if set(necessary_columns_check9).issubset(self.cols): - - # If Mutation_Status is Germline and Validation_Status is valid then the Tumor_Validation_Allele should be - # equal to the matched Norm_Validation_Allele - if mutation_status == "germline" and validation_status == "valid": - if tumor_allele1 != norm_allele1 or tumor_allele2 != norm_allele2: - log_message = "When Validation_Status is valid and Mutation_Status is Germline, the " \ - "Tumor_Validation_Allele should be equal to the Match_Norm_Validation_Allele." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s, %s)' % (tumor_allele1, tumor_allele2, - norm_allele1, norm_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - # When Mutation_Status is Somatic and Validation_Status is valid the Norm_Validation Alleles should be equal - # to the reference alleles and the Tumor_Validation_Alleles should be different from the Reference_Allele - elif mutation_status == "somatic" and validation_status == "valid": - if (norm_allele1 != norm_allele2 or norm_allele2 != ref_allele) and \ - (tumor_allele1 != ref_allele or tumor_allele2 != ref_allele): - log_message = "When Validation_Status is valid and Mutation_Status is Somatic, the " \ - "Match_Norm_Validation_Allele columns should be equal to the Reference Allele and " \ - "one of the Tumor_Validation_Allele columns should not be." - extra_dict = {'line_number': self.line_number, - 'cause': '(%s, %s, %s, %s)' % (tumor_allele1, tumor_allele2, - norm_allele1, norm_allele2)} - self.send_log_message(self.strict_maf_checks, log_message, extra_dict) - - # If for LOH (9C) not implemented, because mutation will not be loaded in cBioPortal - - return True - - def checkOffPanelVariant(self, data, normalized_gene, panel_id, hugo_symbol, entrez_id): - try: - normalized_gene = int(normalized_gene) - except: - pass - if normalized_gene not in self.portal.gene_panel_list[panel_id]: - if hugo_symbol: - self.logger.warning( - 'Off panel variant. Gene symbol not known to the targeted panel.', - extra={'line_number': self.line_number, - 'cause': hugo_symbol}) - else: - self.logger.warning( - 'Off panel variant. Gene symbol is not provided and Entrez gene id not known to the targeted panel.', - extra={'line_number': self.line_number, - 'cause': entrez_id}) - - # These functions check values of the MAF according to their name. - # The mapping of which function checks which value is a global value - # at the top of the script. If any other checks need to be added for - # another field name, add the map in the global corresponding to - # the function name that is created to check it. - - - def checkNCBIbuild(self, value): - """ - Checks whether the value found in MAF NCBI_Build column matches the genome specified in portal.properties at - field ncbi.build. Expecting GRCh37, GRCh38, GRCm38 or without the GRCx prefix - """ - - if value != '': - prefix = 'GRCm' if self.portal.species == 'mouse' else 'GRCh' - if str(value) in ('37', '38'): - value = prefix + str(value) - if value != str(self.portal.ncbi_build): - self.extra = 'The reference genome in column NCBI_Build does not correspond with the ' \ - 'reference genome specified for this study (%s)' % (self.portal.ncbi_build) - self.extra_exists = True - return False - return True - - def checkMatchedNormSampleBarcode(self, value): - if value != '': - if 'normal_samples_list' in self.meta_dict and self.meta_dict['normal_samples_list'] != '': - normal_samples_list = [x.strip() for x in self.meta_dict['normal_samples_list'].split(',')] - if value not in normal_samples_list: - self.extra = "Normal sample id not in list of sample ids configured in corresponding metafile. " \ - "Please check your metafile field 'normal_samples_list'." - self.extra_exists = True - return False - return True - - - def checkVerificationStatus(self, value): - # if value is not blank, then it should be one of these: - if self.checkNotBlank(value) and value.lower() not in ('verified', 'unknown', 'na'): - # Giving only warning instead of error because not used in front end. - self.logger.warning( - "Value in 'Verification_Status' not in MAF format", - extra={'line_number': self.line_number, - 'cause':value}) - # return without error (just warning above) - return True - return True - - def checkValidationStatus(self, value): - # if value is not blank, then it should be one of these: - if self.checkNotBlank(value) and value.lower() not in ('untested', 'inconclusive', - 'valid', 'invalid', 'na', 'redacted', 'unknown'): - # Giving only warning instead of error because front end can handle unofficial values. - self.logger.warning( - "Value in 'Validation_Status' not in MAF format", - extra={'line_number': self.line_number, - 'cause':value}) - # return without error (just warning above) - return True - return True - - def check_t_alt_count(self, value): - if not self.checkInt(value) and value not in ('', '.'): - return False - return True - - def check_t_ref_count(self, value): - if not self.checkInt(value) and value not in ('', '.'): - return False - return True - - def check_n_alt_count(self, value): - if not self.checkInt(value) and value not in ('', '.'): - return False - return True - - def check_n_ref_count(self, value): - if not self.checkInt(value) and value not in ('', '.'): - return False - return True - - def checkAminoAcidChange(self, value): - """Test whether a string is a valid amino acid change specification.""" - # TODO implement this test more properly, - # may require bundling the hgvs package: - # https://pypi.python.org/pypi/hgvs/ - if value not in self.NULL_AA_CHANGE_VALUES: - value = value.strip() - # there should only be a 'p.' prefix at the very start - if len(value) > 1 and 'p.' in value[1:]: - # return with an error message - self.extra = ("Unexpected 'p.' within amino acid change, " - "only one variant can be listed on each line") - self.extra_exists = True - return False - # lines in this format are single mutations, so the haplotype - # syntax supported by HGVS strings is not applicable - if ';' in value: - # return with an error message - self.extra = ("Unexpected ';' in amino acid change, " - "multi-variant allele notation is not supported") - self.extra_exists = True - return False - # commas are not allowed. They are used internally in certain - # servlets, via GeneticAlterationUtil.getMutationMap(). - if ',' in value: - # return with an error message - self.extra = 'Comma in amino acid change' - self.extra_exists = True - return False - return True - - def skipValidation(self, data): - """Test whether the mutation is silent and should be skipped.""" - is_silent = False - variant_classification = data[self.cols.index('Variant_Classification')] - if 'variant_classification_filter' in self.meta_dict: - self.SKIP_VARIANT_TYPES = [x.strip() - for x - in self.meta_dict['variant_classification_filter'].split(',')] - - hugo_symbol = data[self.cols.index('Hugo_Symbol')] - entrez_id = '0' - if 'Entrez_Gene_Id' in self.cols: - entrez_id = data[self.cols.index('Entrez_Gene_Id')] - if hugo_symbol == 'Unknown' and entrez_id == '0': - is_silent = True - if variant_classification in ['IGR', 'Targeted_Region']: - self.logger.info("This variant (Gene symbol 'Unknown', Entrez gene ID 0) will be filtered out", - extra={'line_number': self.line_number, - 'cause': variant_classification}) - else: - # the MAF specification documents the use of Unknown and 0 here - # for intergenic mutations, and since the Variant_Classification - # column is often invalid, cBioPortal interprets this combination - # (or just the symbol if the Entrez column is absent) as such, - # but with a warning: - self.logger.warning( - "Gene specification (Gene symbol 'Unknown', Entrez gene ID 0) for this variant " - "implies intergenic even though Variant_Classification is " - "not 'IGR' or 'Targeted_Region'; this variant will be filtered out", - extra={'line_number': self.line_number, - 'cause': variant_classification}) - elif variant_classification in self.SKIP_VARIANT_TYPES: - self.logger.info("Line will not be loaded due to the variant " - "classification filter. Filtered types: [%s]", - ', '.join(self.SKIP_VARIANT_TYPES), - extra={'line_number': self.line_number, - 'cause': variant_classification}) - is_silent = True - - return is_silent - - def checkNotBlank(self, value): - """Test whether a string is blank.""" - if value is None or value.strip() == '': - return False - return True - - def checkVariantClassification(self, value): - """Validate according to MAF standard list and give warning when value is not recognized.""" - #if blank, return False: - if not self.checkNotBlank(value): - return False - else: - # check whether value conforms to MAF list of values, give warning otherwise: - if value not in self.VARIANT_CLASSIFICATION_VALUES: - self.logger.warning( - 'Given value for Variant_Classification column is not one of the expected values. This ' - 'can result in mapping issues and subsequent missing features in the mutation view UI, ' - 'such as missing COSMIC information.', - extra={'line_number': self.line_number, - 'cause':value}) - # return without error (just warning above) - return True - # if no reasons to return with a message were found, return valid - return True - - def checkSwissProt(self, value): - """Validate the name or accession in the SWISSPROT column.""" - if value is None or value.strip() in ['', 'NA', '[Not Available]']: - self.logger.warning( - 'Missing value in SWISSPROT column; this column is ' - 'recommended to make sure that the UniProt canonical isoform ' - 'is used when drawing Pfam domains in the mutations view.', - extra={'line_number': self.line_number, - 'cause':value}) - # no value to test, return without error - return True - if self.meta_dict.get('swissprot_identifier', 'name') == 'accession': - if not re.match( - # regex from http://www.uniprot.org/help/accession_numbers - r'^([OPQ][0-9][A-Z0-9]{3}[0-9]|' - r'[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2})$', - value): - # Return this as a warning. The cBioPortal front-end currently (1.13.2) does not use the SWISSPROT - # column for the Mutation Tab. It retrieves SWISSPROT accession and name based on Entrez Gene Id - self.logger.warning('SWISSPROT value is not a (single) UniProtKB accession. ' - 'Loader will try to find UniProtKB accession using Entrez gene id or ' - 'gene symbol.', - extra={'line_number': self.line_number, 'cause': value}) - return True - else: - # format described on http://www.uniprot.org/help/entry_name - if not re.match( - r'^[A-Z0-9]{1,5}_[A-Z0-9]{1,5}$', - value): - # if there is a ',' then give a more detailed message: - if ',' in value: - self.logger.warning('SWISSPROT value is not a single UniProtKB/Swiss-Prot name. ' - 'Found multiple separated by a `,`. ' - 'Loader will try to find UniProtKB accession using Entrez gene id or ' - 'gene symbol.', - extra={'line_number': self.line_number, 'cause': value}) - else: - self.logger.warning('SWISSPROT value is not a (single) UniProtKB/Swiss-Prot name. ' - 'Loader will try to find UniProtKB accession using Entrez gene id or ' - 'gene symbol.', - extra={'line_number': self.line_number, 'cause': value}) - return True - # if no reasons to return with a message were found, return valid - return True - - def checkStartPosition(self, value): - """Check that the Start_Position value is an integer.""" - if value.strip() == '' or value == 'NA': - self.logger.warning( - 'The start position of this variant is not ' - 'defined. The chromosome plot in the patient view ' - 'will not be displayed correctly for this variant.', - extra={'line_number': self.line_number, - 'column_number': self.cols.index('Start_Position'), - 'cause': value}) - elif value.isdigit() == False or (value.isdigit() and '.' in value): - self.logger.error( - 'The start position of this variant is not ' - 'an integer', - extra={'line_number': self.line_number, - 'column_number': self.cols.index('Start_Position'), - 'cause': value}) - # if no reasons to return with a message were found, return valid - return True - - def checkEndPosition(self, value): - """Check that the End_Position value is an integer.""" - if value.strip() == '' or value == 'NA': - self.logger.warning( - 'The end position of this variant is not ' - 'defined. The chromosome plot in the patient view ' - 'will not be displayed correctly for this variant.', - extra={'line_number': self.line_number, - 'column_number': self.cols.index('End_Position'), - 'cause': value}) - elif value.isdigit() == False or (value.isdigit() and '.' in value): - self.logger.error( - 'The end position of this variant is not ' - 'an integer', - extra={'line_number': self.line_number, - 'column_number': self.cols.index('End_Position'), - 'cause': value}) - # if no reasons to return with a message were found, return valid - return True - - def checkMutationStatus(self, value): - """Check values in mutation status column.""" - if value.lower() in ['loh', 'none', 'wildtype']: - self.logger.info('Mutation will not be loaded due to value in Mutation_Status', - extra={'line_number': self.line_number, 'cause': value}) - if value.lower() not in ['none', 'germline', 'somatic', 'loh', 'post-transcriptional modification', 'unknown', 'wildtype'] and value != '': - self.logger.warning('Mutation_Status value is not in MAF format', - extra={'line_number': self.line_number, 'cause': value}) - return True - -class ClinicalValidator(Validator): - - """Abstract Validator class for clinical data files. - - Subclasses define the columns that must be present in REQUIRED_HEADERS, - and the value of the 'is_patient_attribute' property for attributes - defined in this file in PROP_IS_PATIENT_ATTRIBUTE. - """ - - REQUIRE_COLUMN_ORDER = False - PROP_IS_PATIENT_ATTRIBUTE = None - NULL_VALUES = ["[not applicable]", "[not available]", "[pending]", "[discrepancy]", "[completed]", "[null]", "", "na"] - ALLOW_BLANKS = True - METADATA_LINES = ('display_name', - 'description', - 'datatype', - 'priority') - - # A core set of attributes must be either specific in the patient or sample clinical data. - # See GET /api/ at http://oncotree.mskcc.org/cdd/swagger-ui.html#/ - PREDEFINED_ATTRIBUTES = { - 'AGE': { - 'is_patient_attribute': '1', - 'datatype': 'NUMBER' - }, - 'CANCER_TYPE': { - 'datatype': 'STRING' - }, - 'CANCER_TYPE_DETAILED': { - 'datatype': 'STRING' - }, - 'DFS_STATUS': { - 'is_patient_attribute': '1', - 'datatype': 'STRING' - }, - 'DFS_MONTHS': { - 'is_patient_attribute': '1', - 'datatype': 'NUMBER' - }, - 'DRIVER_MUTATIONS': { - }, - 'ERG_FUSION_ACGH': { - }, - 'ETS_RAF_SPINK1_STATUS': { - }, - 'GENDER': { - 'is_patient_attribute': '1', - 'datatype': 'STRING' - }, - 'GLEASON_SCORE': { - }, - 'HISTOLOGY': { - 'datatype': 'STRING', - }, - 'KNOWN_MOLECULAR_CLASSIFIER': { - 'datatype': 'STRING', - }, - 'METASTATIC_SITE': { - 'is_patient_attribute': '0', - 'datatype': 'STRING', - }, - 'MOUSE_STRAIN': { - }, - 'OS_STATUS': { - 'is_patient_attribute': '1', - 'datatype': 'STRING' - }, - 'OS_MONTHS': { - 'is_patient_attribute': '1', - 'datatype': 'NUMBER' - }, - 'OTHER_SAMPLE_ID': { - 'is_patient_attribute': '0', - 'datatype': 'STRING' - }, - 'PATIENT_DISPLAY_NAME': { - 'is_patient_attribute': '1', - 'datatype': 'STRING' - }, - 'PRIMARY_SITE': { - 'is_patient_attribute': '0', - 'datatype': 'STRING', - }, - 'SAMPLE_CLASS': { - 'is_patient_attribute': '0', - 'datatype': 'STRING' - }, - 'SAMPLE_DISPLAY_NAME': { - 'is_patient_attribute': '0', - 'datatype': 'STRING' - }, - 'SAMPLE_TYPE': { - 'is_patient_attribute': '0', - 'datatype': 'STRING' - }, - 'SERUM_PSA': { - }, - 'SEX': { - 'is_patient_attribute': '1', - 'datatype': 'STRING' - }, - 'TMPRSS2_ERG_FUSION_STATUS': { - }, - 'TUMOR_GRADE': { - }, - 'TUMOR_SITE': { - 'is_patient_attribute': '1', - 'datatype': 'STRING', - }, - 'TUMOR_STAGE_2009': { - }, - 'TUMOR_TISSUE_SITE': { - 'is_patient_attribute': '0', - 'datatype': 'STRING', - }, - 'TUMOR_TYPE': { - 'is_patient_attribute': '0', - 'datatype': 'STRING' - }, - } - INVALID_ID_CHARACTERS = r'[^A-Za-z0-9._-]' - BANNED_ATTRIBUTES = ['MUTATION_COUNT', 'FRACTION_GENOME_ALTERED'] - - def __init__(self, *args, **kwargs): - """Initialize the instance attributes of the data file validator.""" - super(ClinicalValidator, self).__init__(*args, **kwargs) - self.attr_defs = [] - self.defined_attributes = set() - - def processTopLines(self, line_list): - - """Parse the attribute definitions above the column header.""" - - if not line_list: - if not self.relaxed_mode: - self.logger.warning( - 'No data type definition headers found in clinical data file', - extra={'line_number': self.line_number}) - else: - self.logger.info('Ignoring missing or invalid data type definition ' - ' headers. Continuing with validation...') - return False - - if len(line_list) != len(self.METADATA_LINES): - self.logger.error( - '%d comment lines at start of clinical data file, expected %d', - len(line_list), - len(self.METADATA_LINES)) - return False - - # remove the # signs - line_list = [line[1:] for line in line_list] - - attr_defs = None - num_attrs = 0 - csvreader = csv.reader(line_list, - delimiter='\t', - quoting=csv.QUOTE_NONE, - strict=True) - invalid_values = False - for line_index, row in enumerate(csvreader): - - if attr_defs is None: - # make a list of as many dictionaries as there are columns - num_attrs = len(row) - attr_defs = [OrderedDict() for i in range(num_attrs)] - elif len(row) != num_attrs: - if not self.relaxed_mode: - self.logger.error( - 'Varying numbers of columns in clinical header (%d, %d)', - num_attrs, - len(row), - extra={'line_number': line_index + 1}) - return False - - for col_index, value in enumerate(row): - - # test for invalid values in these columns - if value.strip().lower() in self.NULL_VALUES: - self.logger.error( - 'Empty %s field in clinical attribute definition', - self.METADATA_LINES[line_index], - extra={'line_number': line_index + 1, - 'column_number': col_index + 1, - 'cause': value}) - invalid_values = True - if self.METADATA_LINES[line_index] in ('display_name', - 'description'): - pass - elif self.METADATA_LINES[line_index] == 'datatype': - VALID_DATATYPES = ('STRING', 'NUMBER', 'BOOLEAN') - if value not in VALID_DATATYPES: - self.logger.error( - 'Invalid data type definition, must be one of ' - '[%s]', - ', '.join(VALID_DATATYPES), - extra={'line_number': line_index + 1, - 'colum_number': col_index + 1, - 'cause': value}) - invalid_values = True - invalid_values = True - elif self.METADATA_LINES[line_index] == 'priority': - try: - if int(value) < -1: - raise ValueError() - except ValueError: - self.logger.error( - 'Priority definition should be an integer, and should be ' - 'greater than or equal to -1', - extra={'line_number': line_index + 1, - 'column_number': col_index + 1, - 'cause': value}) - invalid_values = True - else: - if not self.relaxed_mode: - raise RuntimeError('Unknown clinical header line name') - - attr_defs[col_index][self.METADATA_LINES[line_index]] = value - - self.attr_defs = attr_defs - return not invalid_values - - def checkHeader(self, cols): - - """Validate the attributes defined in the column headers and above.""" - - num_errors = super(ClinicalValidator, self).checkHeader(cols) - - if self.numCols != len(self.attr_defs): - if not self.relaxed_mode: - self.logger.error( - 'Varying numbers of columns in clinical header (%d, %d)', - len(self.attr_defs), - len(self.cols), - extra={'line_number': self.line_number}) - num_errors += 1 - - # fill in missing attr_defs data if in relaxed mode and clinical data is headerless - if self.fill_in_attr_defs: - self.logger.info('Filling in missing attribute properties for clinical data.') - missing_attr_defs = {} - for col_index, col_name in enumerate(cols): - missing_attr_defs[col_index] = {'display_name': col_name, - 'description': col_name, - 'datatype': 'STRING', - 'priority': '1'} - self.attr_defs = missing_attr_defs - - for col_index, col_name in enumerate(self.cols): - # Front end can have issues with lower case attribute names as discussed - # in https://github.com/cBioPortal/cbioportal/issues/3518 - if not col_name.isupper(): - self.logger.error( - "Attribute name not in upper case.", - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': col_name}) - # do not check the special ID columns as attributes, - # just parse them with the correct data type - if col_name in ('PATIENT_ID', 'SAMPLE_ID'): - self.attr_defs[col_index] = {'display_name': '', - 'description': '', - 'datatype': 'STRING', - 'priority': '0'} - continue - # check predefined (hard-coded) attribute definitions - if col_name in self.PREDEFINED_ATTRIBUTES: - for attr_property in self.PREDEFINED_ATTRIBUTES[col_name]: - if attr_property == 'is_patient_attribute': - expected_level = self.PREDEFINED_ATTRIBUTES[col_name][attr_property] - if self.PROP_IS_PATIENT_ATTRIBUTE != expected_level: - self.logger.error( - 'Attribute must to be a %s-level attribute', - {'0': 'sample', '1': 'patient'}[expected_level], - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': col_name}) - # check pre-header datatype property: - if attr_property == 'datatype': - # check pre-header metadata if applicable -- if these were - # found missing or unparseable, `relaxed mode' has made - # validation continue assuming all attributes to be - # unformatted strings - if not self.fill_in_attr_defs: - value = self.attr_defs[col_index][attr_property] - expected_value = \ - self.PREDEFINED_ATTRIBUTES[col_name][attr_property] - if (value != expected_value and - not self.fill_in_attr_defs): - self.logger.error( - "%s definition for attribute '%s' must be %s", - attr_property, - col_name, - expected_value, - extra={'line_number': - self.METADATA_LINES.index( - attr_property) + 1, - 'column_number': col_index + 1, - 'cause': value}) - - # Check for banned column names - if col_name in self.BANNED_ATTRIBUTES: - self.logger.error( - "%s is not allowed in data. MUTATION_COUNT and FRACTION_GENOME_ALTERED are calculated in cBioPortal" - "", - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': col_name}) - - self.defined_attributes.add(col_name) - return num_errors - - def checkLine(self, data): - """Check the values in a line of data.""" - super(ClinicalValidator, self).checkLine(data) - for col_index, col_name in enumerate(self.cols): - # treat cells beyond the end of the line as blanks, - # super().checkLine() has already logged an error - value = '' - if col_index < len(data): - value = data[col_index].strip() - data_type = self.attr_defs[col_index]['datatype'] - - # if not blank, check if values match the datatype - if value.strip().lower() in self.NULL_VALUES: - pass - elif data_type == 'NUMBER': - if not self.checkFloat(value): - if (value[0] in ('>','<')) and value[1:].isdigit(): - pass - else: - self.logger.error( - 'Value of numeric attribute is not a real number', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'column_name': col_name, - 'cause': value}) - elif data_type == 'BOOLEAN': - VALID_BOOLEANS = ('TRUE', 'FALSE') - if not value in VALID_BOOLEANS: - self.logger.error( - 'Value of boolean attribute must be one of [%s]', - ', '.join(VALID_BOOLEANS), - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'column_name': col_name, - 'cause': value}) - # make sure that PATIENT_ID is present - if col_name == 'PATIENT_ID': - if value.strip().lower() in self.NULL_VALUES: - self.logger.error( - 'Missing PATIENT_ID', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - if col_name == 'PATIENT_ID' or col_name == 'SAMPLE_ID': - if re.findall(self.INVALID_ID_CHARACTERS, value): - self.logger.error( - 'PATIENT_ID and SAMPLE_ID can only contain letters, ' - 'numbers, points, underscores and/or hyphens', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - # Scan for incorrect usage of dates, accidentally converted by excel. This is often in a format such as - # Jan-99 or 20-Oct. A future improvement would be to add a "DATE" datatype. - excel_months = ["jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec"] - if 'date' not in col_name.lower(): - if '-' in value: - if len(value.split('-')) == 2 and not any(i in value for i in [',', '.', ':', ';']): - if any(value_part.lower() in excel_months for value_part in value.split('-')): - self.logger.error( - 'Date found when no date was expected. Please check if values are accidentally ' - 'converted to dates by Excel. If this data is correct, add "DATE" to column name', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - - -class SampleClinicalValidator(ClinicalValidator): - - """Validator for files defining and setting sample-level attributes.""" - - REQUIRED_HEADERS = ['SAMPLE_ID', 'PATIENT_ID'] - PROP_IS_PATIENT_ATTRIBUTE = '0' - - - def __init__(self, *args, **kwargs): - """Initialize the validator to track sample ids defined.""" - super(SampleClinicalValidator, self).__init__(*args, **kwargs) - self.sample_id_lines = {} - self.sampleIds = self.sample_id_lines.keys() - self.patient_ids = set() - - def checkLine(self, data): - """Check the values in a line of data.""" - super(SampleClinicalValidator, self).checkLine(data) - for col_index, col_name in enumerate(self.cols): - # treat cells beyond the end of the line as blanks, - # super().checkLine() has already logged an error - value = '' - if col_index < len(data): - value = data[col_index].strip() - if col_name == 'SAMPLE_ID': - if value.strip().lower() in self.NULL_VALUES: - self.logger.error( - 'Missing SAMPLE_ID', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - continue - if len(value.strip()) > MAX_SAMPLE_STABLE_ID_LENGTH: - self.logger.error( - 'SAMPLE_ID too long (%s character maximum)' % (MAX_SAMPLE_STABLE_ID_LENGTH), - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - continue - - if value in self.sample_id_lines: - if value.startswith('TCGA-'): - self.logger.warning( - 'TCGA sample defined twice in clinical file, this ' - 'line will be ignored assuming truncated barcodes', - extra={ - 'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': '%s (already defined on line %d)' % ( - value, - self.sample_id_lines[value])}) - else: - self.logger.error( - 'Sample defined twice in clinical file', - extra={ - 'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': '%s (already defined on line %d)' % ( - value, - self.sample_id_lines[value])}) - else: - self.sample_id_lines[value] = self.line_number - elif col_name == 'PATIENT_ID': - self.patient_ids.add(value) - # TODO: check the values in the other documented columns - - -class PatientClinicalValidator(ClinicalValidator): - - """Validator for files defining and setting patient-level attributes.""" - - REQUIRED_HEADERS = ['PATIENT_ID'] - PROP_IS_PATIENT_ATTRIBUTE = '1' - - def __init__(self, *args, **kwargs): - """Initialize the validator to track patient IDs referenced.""" - super(PatientClinicalValidator, self).__init__(*args, **kwargs) - self.patient_id_lines = {} - - def checkHeader(self, cols): - """Validate headers in patient-specific clinical data files.""" - num_errors = super(PatientClinicalValidator, self).checkHeader(cols) - # do not allow the SAMPLE_ID column in this file - if 'SAMPLE_ID' in self.cols: - self.logger.error( - 'SAMPLE_ID column found in a patient attribute file', - extra={'line_number': self.line_number, - 'column_number': self.cols.index('SAMPLE_ID'), - 'cause': 'SAMPLE_ID'}) - # refuse to define attributes also defined in the sample-level file - for attribute_id in self.defined_attributes: - if attribute_id in DEFINED_SAMPLE_ATTRIBUTES: - # log this as a file-aspecific error, using the base logger - self.logger.logger.error( - 'Clinical attribute is defined both as sample-level and ' - 'as patient-level', - extra={'cause': attribute_id}) - # warnings about missing optional columns - if 'OS_MONTHS' not in self.cols or 'OS_STATUS' not in self.cols: - self.logger.warning( - 'Columns OS_MONTHS and/or OS_STATUS not found. Overall ' - 'survival analysis feature will not be available for this ' - 'study.') - if 'DFS_MONTHS' not in self.cols or 'DFS_STATUS' not in self.cols: - self.logger.warning( - 'Columns DFS_MONTHS and/or DFS_STATUS not found. Disease ' - 'free analysis feature will not be available for this study.') - return num_errors - - def checkLine(self, data): - """Check the values in a line of data.""" - super(PatientClinicalValidator, self).checkLine(data) - osstatus_is_deceased = False - osmonths_value = None - for col_index, col_name in enumerate(self.cols): - # treat cells beyond the end of the line as blanks, - # super().checkLine() has already logged an error - value = '' - if col_index < len(data): - value = data[col_index].strip() - if col_name == 'PATIENT_ID': - if value in self.patient_id_lines: - self.logger.error( - 'Patient defined multiple times in file', - extra={ - 'line_number': self.line_number, - 'column_number': self.cols.index('PATIENT_ID') + 1, - 'cause': '%s (already defined on line %d)' % ( - value, - self.patient_id_lines[value])}) - else: - self.patient_id_lines[value] = self.line_number - if value not in PATIENTS_WITH_SAMPLES: - self.logger.warning( - 'Clinical data defined for a patient with ' - 'no samples', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif col_name == 'OS_STATUS': - if value == '1:DECEASED': - osstatus_is_deceased = True - elif (value.lower() not in self.NULL_VALUES and - value not in ('LIVING', 'DECEASED', '0:LIVING', '1:DECEASED')): - self.logger.error( - 'Value in OS_STATUS column is not LIVING, 0:LIVING, DECEASED or' - '1:DECEASED', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif col_name == 'DFS_STATUS': - if (value.lower() not in self.NULL_VALUES and - value not in ('0:DiseaseFree', - '1:Recurred/Progressed', - '1:Recurred', - '1:Progressed', - 'DiseaseFree', - 'Recurred/Progressed', - 'Recurred', - 'Progressed')): - self.logger.error( - 'Value in DFS_STATUS column is not 0:DiseaseFree, ' - '1:Recurred/Progressed, 1:Recurred, 1:Progressed', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif col_name == 'OS_MONTHS': - osmonths_value = value - # check other survival data - elif col_name.endswith('_STATUS'): - # get survival attribute prefix - survival_prefix = col_name[:len(col_name) - 7] - if (survival_prefix + '_MONTHS') in self.cols: - # attribute that has both _months and _status is a survival attribute - # this attribute should have prefix "0:" or "1:", or NULL_VALUES - splited_value = value.lower().split(':') - if len(splited_value) <= 1 or len(splited_value) >= 2 and splited_value[0] not in ('0', '1'): - if value.lower() not in self.NULL_VALUES: - self.logger.error( - 'Value in %s column should be formated like "0:LIVING" (status:lable) ', - col_name, - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - if osstatus_is_deceased and ( - osmonths_value is None or - osmonths_value.lower() in self.NULL_VALUES): - if osmonths_value is None or osmonths_value == '': - osmonths_value = '' - self.logger.warning( - 'OS_MONTHS is not specified for deceased patient. Patient ' - 'will be excluded from survival curve and month of death ' - 'will not be shown on patient view timeline.', - extra={'line_number': self.line_number, - 'cause': osmonths_value}) - - def onComplete(self): - """Perform final validations based on the data parsed.""" - for patient_id in PATIENTS_WITH_SAMPLES: - if patient_id not in self.patient_id_lines: - self.logger.warning( - 'Missing clinical data for a patient associated with ' - 'samples', - extra={'cause': patient_id}) - super(PatientClinicalValidator, self).onComplete() - - -class SegValidator(Validator): - """Validator for .seg files.""" - - REQUIRED_HEADERS = [ - 'ID', - 'chrom', - 'loc.start', - 'loc.end', - 'num.mark', - 'seg.mean'] - REQUIRE_COLUMN_ORDER = True - - def __init__(self, *args, **kwargs): - """Initialize validator to track coverage of the genome.""" - super(SegValidator, self).__init__(*args, **kwargs) - self.chromosome_lengths = self.load_chromosome_lengths( - self.meta_dict['reference_genome_id'], - self.logger.logger) - # add 23 and 24 "chromosomes" as aliases to X and Y, respectively: - self.chromosome_lengths['23'] = self.chromosome_lengths['X'] - self.chromosome_lengths['24'] = self.chromosome_lengths['Y'] - - def checkLine(self, data): - super(SegValidator, self).checkLine(data) - - parsed_coords = {} - for col_index, col_name in enumerate(self.cols): - value = data[col_index].strip() - if col_name == 'ID': - self.checkSampleId(value, column_number=col_index + 1) - elif col_name == 'chrom': - if value in self.chromosome_lengths: - parsed_coords[col_name] = value - else: - self.logger.error( - ('Unknown chromosome, must be one of (%s)' % - '|'.join(list(self.chromosome_lengths.keys()))), - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif col_name in ('loc.start', 'loc.end'): - try: - # convert possible scientific notation to python scientific notation - if "e+" in value: - value = float(value.replace("e+", "e")) - if not value.is_integer(): - # raise value error 'Genomic position is not an integer' - raise ValueError() - parsed_coords[col_name] = int(value) - except ValueError: - self.logger.error( - 'Genomic position is not an integer', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - # skip further validation specific to this column - continue - # 0 is the first base, and loc.end is not part of the segment - # 'chrom' has already been read, as column order is fixed - if parsed_coords[col_name] < 0 or ( - 'chrom' in parsed_coords and - parsed_coords[col_name] > self.chromosome_lengths[ - parsed_coords['chrom']]): - self.logger.error( - 'Genomic position beyond end of chromosome ' - '(chr%s:0-%s)', - parsed_coords['chrom'], - self.chromosome_lengths[parsed_coords['chrom']], - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - # not a valid coordinate usable in further validations - del parsed_coords[col_name] - elif col_name == 'num.mark': - if not self.checkInt(value): - # also check if the value is an int in scientific notation (1e+05) - if not ("e+" in value and self.checkFloat(value)): - self.logger.error( - 'Number of probes is not an integer', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif col_name == 'seg.mean': - if not self.checkFloat(value): - self.logger.error( - 'Mean segment copy number is not a number', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - else: - raise RuntimeError('Could not validate column type: ' + - col_name) - - if 'loc.start' in parsed_coords and 'loc.end' in parsed_coords: - # the convention for genomic coordinates (at least at UCSC) is that - # the chromosome starts at 0 and end positions are excluded. - # see also https://groups.google.com/forum/#!topic/igv-help/LjffjxPul2M - if parsed_coords['loc.start'] == parsed_coords['loc.end']: - self.logger.warning( - 'Segment is zero bases wide and will not be loaded', - extra={'line_number': self.line_number, - 'cause': '{}-{}'.format(parsed_coords['loc.start'], - parsed_coords['loc.end'])}) - elif parsed_coords['loc.start'] > parsed_coords['loc.end']: - self.logger.error( - 'Start position of segment is greater than end position', - extra={'line_number': self.line_number, - 'cause': '{}-{}'.format(parsed_coords['loc.start'], - parsed_coords['loc.end'])}) - - # TODO check for overlap and low genome coverage - # this could be implemented by sorting the segments for a patient - # by (chromosome and) start position and checking if the start position - # of each segment comes after the end position of the previous one, - # meanwhile adding up the number of (non-overlapping) bases covered on - # that chromosome in that patient. - -class StructuralVariantValidator(CustomNamespacesValidator): - - """Basic validation for structural variant data. Validates: - - 1. Required column headers - 2. Gene IDs - 3. If there is a second gene, also validate Gene IDs of second gene - """ - - REQUIRED_HEADERS = [ - 'Sample_Id', - 'SV_Status', - ] - REQUIRE_COLUMN_ORDER = False - ALLOW_BLANKS = True - - UNIQUENESS_COLUMNS = [ - 'Sample_Id', - 'Site1_Hugo_Symbol', - 'Site1_Entrez_Gene_Id', - 'Site1_Chromosome', - 'Site1_Position', - 'Site1_Region_Number', - 'Site1_Ensembl_Transcript_Id', - 'Site2_Hugo_Symbol', - 'Site2_Entrez_Gene_Id', - 'Site2_Chromosome', - 'Site2_Position', - 'Site2_Region_Number', - 'Site2_Ensembl_Transcript_Id', - 'Event_Info'] - - # TODO: Revive the support to validate the events based on transcripts and exons - once the new visualization features (UI for fusion tab, breakpoint visualization) are added to front-end. - - def __init__(self, *args, **kwargs): - super(StructuralVariantValidator, self).__init__(*args, **kwargs) - self.sv_entries = {} - self.ncbi_build = None - self.unique_fields = [] - self.other_required_genomic_fields = ['Site1_Region', 'Site2_Region', 'Site1_Contig', 'Site2_Contig'] - self.missing_genomic_fields = [] - - def checkHeader(self, data): - num_errors = super(StructuralVariantValidator, self).checkHeader(data) - - # Check presence of gene - if not ('Site1_Hugo_Symbol' in self.cols or 'Site1_Entrez_Gene_Id' in self.cols): - self.logger.error('Structural variant event requires Site1_Entrez_Gene_Id and/or Site1_Hugo_Symbol column', - extra={'line_number': self.line_number}) - num_errors += 1 - - # Check second gene column - if not ('Site2_Hugo_Symbol' in self.cols or 'Site2_Entrez_Gene_Id' in self.cols): - self.logger.error('Structural variant event requires Site2_Entrez_Gene_Id and/or Site2_Hugo_Symbol column', - extra={'line_number': self.line_number}) - num_errors += 1 - - # Check the columns to define the uniqueness of SV records - # Report the missing genomic fields - for value in self.UNIQUENESS_COLUMNS: - if value in self.cols: - self.unique_fields.append(value) - else: - self.missing_genomic_fields.append(value) - - self.missing_genomic_fields.extend([value for value in self.other_required_genomic_fields if value not in self.cols]) - - if len(self.missing_genomic_fields) > 1: - self.logger.warning('Missing genomic information. Consider' - ' adding the fields: [%s]', ', '.join(sorted(self.missing_genomic_fields)), - extra={'line_number': self.line_number}) - - return num_errors - - def checkLine(self, data): - super(StructuralVariantValidator, self).checkLine(data) - - # Check whether a value is present or not available - def checkPresenceValue(column_name, self, data): - column_value = None - if column_name in self.cols: - column_value = data[self.cols.index(column_name)].strip() - # Treat the empty string or 'NA' as a missing value - if column_value in ['', 'NA', 'Unknown', '0']: - column_value = None - return column_value - - def checkNCBIbuild(ncbi_build): - if ncbi_build is None: - self.logger.warning('No value in NCBI_Build, assuming GRCh37 is the assembly', - extra={'line_number': self.line_number}) - else: - # Check NCBI build - if not ncbi_build.lower() in ['grch37', 'grch38']: - self.logger.error('Only GRCh37 and GRCh38 are supported', - extra={'line_number': self.line_number, - 'cause': ncbi_build}) - # Check if multiple NCBI builds are found in 1 file - if self.ncbi_build is None: - self.ncbi_build = ncbi_build - else: - if str(self.ncbi_build) != str(ncbi_build): - self.logger.error('Multiple values in NCBI_Build found, this is not supported', - extra={'line_number': self.line_number, - 'cause': '%s and %s' % (self.ncbi_build, ncbi_build)}) - - def checkSVstatus(sv_status): - """ Allowed values for SV_Status column are SOMATIC and GERMLINE """ - if sv_status is None: - self.logger.warning('No value in SV_Status, assuming the variant is SOMATIC', - extra={'line_number': self.line_number}) - else: - if not sv_status.lower() in ['somatic', 'germline']: - self.logger.error('Invalid SV_Status value: possible values are [SOMATIC, GERMLINE]', - extra={'line_number': self.line_number, - 'cause': sv_status}) - - # Check SV_Status - sv_status = checkPresenceValue('SV_Status', self, data) - checkSVstatus(sv_status) - - # Check NCBI build - if 'NCBI_Build' in self.cols: - ncbi_build = checkPresenceValue('NCBI_Build', self, data) - checkNCBIbuild(ncbi_build) - else: - self.logger.warning('No column NCBI_Build, assuming GRCh37 is the assembly', - extra={'line_number': self.line_number}) - - # Check whether sample ID is in clinical sample IDs - sample_id = checkPresenceValue('Sample_Id', self, data) - self.checkSampleId(sample_id, column_number = self.cols.index('Sample_Id') + 1) - - # Parse Hugo Symbol and Entrez Gene Id and check them for Site 1 - site1_hugo_symbol = checkPresenceValue('Site1_Hugo_Symbol', self, data) - site1_entrez_gene_id = checkPresenceValue('Site1_Entrez_Gene_Id', self, data) - site1_gene = self.checkGeneIdentification(site1_hugo_symbol, site1_entrez_gene_id, 'SV') - - # Parse Hugo Symbol and Entrez Gene Id and check them for Site 2 - site2_hugo_symbol = checkPresenceValue('Site2_Hugo_Symbol', self, data) - site2_entrez_gene_id = checkPresenceValue('Site2_Entrez_Gene_Id', self, data) - site2_gene = self.checkGeneIdentification(site2_hugo_symbol, site2_entrez_gene_id, 'SV') - - # Check whether at least one of the Site1 or Site2 is valid. - if site1_gene is None and site2_gene is None: - # Check if the Site1 and Site2 Hugo Symbols or Entrez Gene Ids have been left empty or not - # If they are defined, but the gene is none, it means they are not included in the db so - # we need to throw a warning rather than an error. - non_recognized_genes = [] - if site1_hugo_symbol is not None: - non_recognized_genes += [site1_hugo_symbol] - elif site1_entrez_gene_id is not None: - non_recognized_genes += [site1_entrez_gene_id] - elif site2_hugo_symbol is not None: - non_recognized_genes += [site2_hugo_symbol] - elif site2_entrez_gene_id is not None: - non_recognized_genes += [site2_entrez_gene_id] - if len(non_recognized_genes) > 0: - self.logger.warning( - 'All Entrez Gene Ids and Gene Symbols provided for site 1 and site 2 are not known to the cBioPortal instance. ' \ - 'This record will not be loaded.;', - extra={'line_number': self.line_number, 'cause': ", ".join(non_recognized_genes) }) - else: #Explicit empty Entrez Gene Ids and Gene Symbols in Site1 and Site2 - self.logger.error( - 'No Entrez gene id or gene symbol provided for site 1 and site 2', - extra={'line_number': self.line_number}) - elif site1_gene is None and site2_gene is not None: - self.logger.info( - 'No Entrez gene id or gene symbol provided for site 1. ' - 'Assuming either the intragenic, deletion, duplication, translocation or inversion variant', - extra={'line_number': self.line_number}) - elif site2_gene is None and site1_gene is not None: - self.logger.info( - 'No Entrez gene id or gene symbol provided for site 2. ' - 'Assuming either the intragenic, deletion, duplication, translocation or inversion variant', - extra={'line_number': self.line_number}) - - # validate the uniqueness of SV records - sv_entry = "\t".join([data[self.cols.index(attr)] for attr in self.unique_fields]) - if sv_entry in self.sv_entries: - self.logger.error( - 'Duplicate entry in structural variant data', - extra = {'line_number': self.line_number, - 'cause': '%s (already defined on line %d)' % ( - sv_entry, - self.sv_entries[sv_entry])}) - else: - self.sv_entries[sv_entry] = self.line_number - - - def onComplete(self): - # End validation of this data type by running the super function - super(StructuralVariantValidator, self).onComplete() - - -class MutationSignificanceValidator(Validator): - - # TODO add checks for mutsig files - ALLOW_BLANKS = True - pass - - -class GenePanelMatrixValidator(Validator): - """Validation for gene panel matrix file. - """ - - REQUIRED_HEADERS = ['SAMPLE_ID'] - - def __init__(self, *args, **kwargs): - """Initialize a GenePanelMatrixValidator with the given parameters.""" - super(GenePanelMatrixValidator, self).__init__(*args, **kwargs) - self.mutation_profile_column = None - self.gene_panel_sample_ids = {} - self.mutation_stable_id_index = None - - def checkHeader(self, data): - num_errors = super(GenePanelMatrixValidator, self).checkHeader(data) - - stable_ids = study_meta_dictionary.keys() - property_in_meta_file_list = [] - mutation_stable_id = '' - - for genetic_profile in study_meta_dictionary: - # Extract the mutation stable ID from the study meta dictionary - if study_meta_dictionary[genetic_profile]['genetic_alteration_type'] == 'MUTATION_EXTENDED' and \ - study_meta_dictionary[genetic_profile]['datatype'] == 'MAF' and \ - study_meta_dictionary[genetic_profile]['stable_id'] in data: - mutation_stable_id = study_meta_dictionary[genetic_profile]['stable_id'] - self.mutation_stable_id_index = data.index(mutation_stable_id) - - # Extract the stable IDs for genetic profiles that use the gene_panel property - if 'gene_panel' in study_meta_dictionary[genetic_profile]: - property_in_meta_file_list.append(study_meta_dictionary[genetic_profile]['stable_id']) - - # Check whether the stable IDs match the stable IDs from the meta files - for stable_id in data: - if stable_id != 'SAMPLE_ID': - if stable_id not in stable_ids: - self.logger.error('Stable ID not found in study meta files', - extra={'cause': stable_id}) - num_errors += 1 - - if stable_id != mutation_stable_id: - if stable_id in property_in_meta_file_list: - self.logger.error("The meta file for this genetic profile contains a property for gene panel. " - "This functionality is mutually exclusive with including a column for this " - "genetic profile in the gene panel matrix. Please remove either the property " - "in the meta file or the column in gene the panel matrix file", - extra={'line_number': self.line_number, - 'cause': stable_id}) - else: - self.logger.info("This column can be replaced by a 'gene_panel' property in the respective " - "meta file", - extra={'line_number': self.line_number, - 'cause': stable_id}) - return num_errors - - def checkLine(self, data): - super(GenePanelMatrixValidator, self).checkLine(data) - - # Check whether sample ID is duplicated - sample_id = data.pop(self.cols.index('SAMPLE_ID')) - if sample_id in self.gene_panel_sample_ids: - self.logger.error( - 'Duplicated Sample ID.', - extra={'line_number': self.line_number, - 'cause': '%s (already defined on line %d)' - % (sample_id, self.gene_panel_sample_ids[sample_id])}) - else: - # Add sample ID to check for duplicates - self.gene_panel_sample_ids[sample_id] = self.line_number - - # Check whether sample ID is in clinical sample IDs - self.checkSampleId(sample_id, self.cols.index('SAMPLE_ID')) - - # If stable id is mutation and value not NA, check whether sample ID is in sequenced case list - if self.mutation_stable_id_index is not None: - sample_ids_panel_dict[sample_id] = data[self.mutation_stable_id_index - 1] - # Sample ID has been removed from list, so subtract 1 position. - if data[self.mutation_stable_id_index - 1] != 'NA': - if sample_id not in mutation_sample_ids: - self.logger.error('Sample ID has mutation gene panel, but is not in the sequenced case list', - extra={'line_number': self.line_number, - 'cause': sample_id}) - - # Check whether gene panel stable ids are in the database - if self.portal.gene_panel_list is not None: - for gene_panel_id in data: - if gene_panel_id not in self.portal.gene_panel_list and gene_panel_id not in ['NA','WGS','WXS','WXS/WGS']: - self.logger.error('Gene panel ID is not in database. Please import this gene panel before loading ' - 'study data.', - extra={'line_number': self.line_number, - 'cause': gene_panel_id}) - - -class ProteinLevelValidator(FeaturewiseFileValidator): - - REQUIRED_HEADERS = ['Composite.Element.REF'] - ALLOW_BLANKS = True - NULL_VALUES = ["NA"] - - def parseFeatureColumns(self, nonsample_col_vals): - """Check the IDs in the first column.""" - # the ID consists of a space-separated list of gene symbols and/or - # Entrez identifiers, separated by a pipe symbol from the name of the - # antibody probe used to detect these genes. The values on the line - # will be loaded for each gene in the list, or for fictional genes that - # encode specific phosphorylated versions of the genes' protein - # products if the antibody name has a particular format. - value = nonsample_col_vals[0].strip() - if '|' not in value: - self.logger.error('No pipe symbol in Composite.Element.REF column', - extra={'line_number': self.line_number, - 'column_number': 1, - 'cause': nonsample_col_vals[0]}) - return None - symbol_element, antibody = value.split('|', 1) - symbol_list = symbol_element.split(' ') - for symbol in symbol_list: - entrez_id = None - if symbol.strip() == 'NA': - self.logger.warning( - 'Gene symbol NA will be ignored, assuming Not Available', - extra={'line_number': self.line_number, - 'column_number': 1, - 'cause': nonsample_col_vals[0]}) - elif self.checkInt(symbol): - self.checkGeneIdentification(entrez_id=symbol) - else: - self.checkGeneIdentification(gene_symbol=symbol) - # TODO: return a value for (this phospo-version of) each gene - return antibody - - def checkValue(self, value, col_index): - """Check a value in a sample column.""" - stripped_value = value.strip() - if stripped_value not in self.NULL_VALUES and not self.checkFloat(stripped_value): - self.logger.error("Value is neither a real number nor " + ', '.join(self.NULL_VALUES), - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - def checkId(self): - return self.checkIdInSamples() - - -class TimelineValidator(Validator): - - REQUIRED_HEADERS = [ - 'PATIENT_ID', - 'START_DATE', - 'STOP_DATE', - 'EVENT_TYPE'] - REQUIRE_COLUMN_ORDER = True - ALLOW_BLANKS = True - - def checkLine(self, data): - super(TimelineValidator, self).checkLine(data) - # TODO check the values - for col_index, col_name in enumerate(self.cols): - # treat cells beyond the end of the line as blanks, - # super().checkLine() has already logged an error - value = '' - if col_index < len(data): - value = data[col_index].strip() - if col_name == 'START_DATE': - if not value.strip().lstrip('-').isdigit(): - self.logger.error( - 'Invalid START_DATE', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif col_name == 'STYLE_COLOR': - if not COLOR_REGEX.match(value.strip()): - self.logger.error( - 'Invalid STYLE_COLOR', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif col_name == 'STYLE_SHAPE': - if not value.strip().lower() in ['circle', 'square', 'triangle', 'diamond', 'star', 'camera']: - self.logger.error( - 'Invalid STYLE_SHAPE', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - -class CancerTypeValidator(Validator): - - """Validator for tab-separated cancer type definition files.""" - - REQUIRED_HEADERS = [] - REQUIRE_COLUMN_ORDER = True - # check this in the subclass to avoid emitting an error twice - ALLOW_BLANKS = True - - COLS = ( - 'type_of_cancer', - 'name', - 'color', - 'parent_type_of_cancer' - ) - - def __init__(self, *args, **kwargs): - """Initialize a file validator with a defined_cancer_types field.""" - super(CancerTypeValidator, self).__init__(*args, **kwargs) - self.cols = self.__class__.COLS - self.numCols = len(self.cols) - self.defined_cancer_types = [] - - def checkHeader(self, cols): - """Check the first uncommented line just like any other data line.""" - self.checkLine(cols) - # the number of 'header errors' that break TSV parsing is always zero - return 0 - - def checkLine(self, data): - """Check a data line in a cancer type file.""" - # track whether any errors are emitted while validating this line - tracking_handler = MaxLevelTrackingHandler() - self.logger.logger.addHandler(tracking_handler) - try: - super(CancerTypeValidator, self).checkLine(data) - if len(data) != 4: - self.logger.error('Lines in cancer type files must have these ' - '4 columns, in order: [%s]', - ', '.join(self.cols), - extra={'line_number': self.line_number, - 'cause': '<%d columns>' % len(data)}) - # no assumptions can be made about the meaning of each column - return - line_cancer_type = data[self.cols.index('type_of_cancer')].lower().strip() - # check each column - for col_index, field_name in enumerate(self.cols): - value = data[col_index].strip() - if value == '': - self.logger.error( - "Blank value in '%s' column", - field_name, - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif field_name == 'color': - # validate whether the color field is one of the - # keywords on https://www.w3.org/TR/css3-color/#svg-color - if value.lower() not in [ - 'aliceblue', 'antiquewhite', 'aqua', 'aquamarine', - 'azure', 'beige', 'bisque', 'black', - 'blanchedalmond', 'blue', 'blueviolet', 'brown', - 'burlywood', 'cadetblue', 'chartreuse', 'chocolate', - 'coral', 'cornflowerblue', 'cornsilk', 'crimson', - 'cyan', 'darkblue', 'darkcyan', 'darkgoldenrod', - 'darkgray', 'darkgreen', 'darkgrey', 'darkkhaki', - 'darkmagenta', 'darkolivegreen', 'darkorange', - 'darkorchid', 'darkred', 'darksalmon', - 'darkseagreen', 'darkslateblue', 'darkslategray', - 'darkslategrey', 'darkturquoise', 'darkviolet', - 'deeppink', 'deepskyblue', 'dimgray', 'dimgrey', - 'dodgerblue', 'firebrick', 'floralwhite', - 'forestgreen', 'fuchsia', 'gainsboro', 'ghostwhite', - 'gold', 'goldenrod', 'gray', 'green', 'greenyellow', - 'grey', 'honeydew', 'hotpink', 'indianred', - 'indigo', 'ivory', 'khaki', 'lavender', - 'lavenderblush', 'lawngreen', 'lemonchiffon', - 'lightblue', 'lightcoral', 'lightcyan', - 'lightgoldenrodyellow', 'lightgray', 'lightgreen', - 'lightgrey', 'lightpink', 'lightsalmon', - 'lightseagreen', 'lightskyblue', 'lightslategray', - 'lightslategrey', 'lightsteelblue', 'lightyellow', - 'lime', 'limegreen', 'linen', 'magenta', 'maroon', - 'mediumaquamarine', 'mediumblue', 'mediumorchid', - 'mediumpurple', 'mediumseagreen', 'mediumslateblue', - 'mediumspringgreen', 'mediumturquoise', - 'mediumvioletred', 'midnightblue', 'mintcream', - 'mistyrose', 'moccasin', 'navajowhite', 'navy', - 'oldlace', 'olive', 'olivedrab', 'orange', - 'orangered', 'orchid', 'palegoldenrod', 'palegreen', - 'paleturquoise', 'palevioletred', 'papayawhip', - 'peachpuff', 'peru', 'pink', 'plum', 'powderblue', - 'purple', 'red', 'rosybrown', 'royalblue', - 'saddlebrown', 'salmon', 'sandybrown', 'seagreen', - 'seashell', 'sienna', 'silver', 'skyblue', - 'slateblue', 'slategray', 'slategrey', 'snow', - 'springgreen', 'steelblue', 'tan', 'teal', - 'thistle', 'tomato', 'turquoise', 'violet', 'wheat', - 'white', 'whitesmoke', 'yellow', 'yellowgreen', - 'rebeccapurple']: - self.logger.error( - 'Color field is not a CSS3 color keyword, ' - 'see the table on https://en.wikipedia.org/wiki/Web_colors#X11_color_names', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif field_name == 'parent_type_of_cancer': - parent_cancer_type = value.lower() - # if parent_cancer_type is not 'tissue' (which is a special case when building the oncotree), - # then give error if the given parent is not found in the DB or in the given cancer types of the - # current study: - if (parent_cancer_type != 'tissue' and - self.portal.cancer_type_dict is not None and not - (parent_cancer_type in self.portal.cancer_type_dict or - parent_cancer_type in self.defined_cancer_types)): - self.logger.error( - "Unknown parent for cancer type '%s'", - line_cancer_type, - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - # check for duplicated (possibly inconsistent) cancer types - if line_cancer_type in self.defined_cancer_types: - self.logger.error( - 'Cancer type defined a second time in this file', - extra={'line_number': self.line_number, - 'cause': line_cancer_type}) - # compare the cancer_type definition with the portal instance - if (self.portal.cancer_type_dict is not None and - line_cancer_type in self.portal.cancer_type_dict): - existing_info = self.portal.cancer_type_dict[line_cancer_type] - # depending on version, the API may not return this field - if 'short_name' in existing_info: - if existing_info['short_name'].lower() != line_cancer_type: - self.logger.error( - "Attempting to validate against invalid cancer type " - "in portal: short name '%s' does not match id '%s'", - existing_info['short_name'], - line_cancer_type, - extra={'line_number': self.line_number}) - return - for col_index, field_name in enumerate(self.cols): - value = data[col_index] - # this field is loaded into the database in lowercase - if field_name == 'parent_type_of_cancer': - value = value.lower() - if ( - field_name in existing_info and - value != existing_info[field_name]): - self.logger.error( - "'%s' field of cancer type '%s' does not match " - "the portal, '%s' expected", - field_name, - line_cancer_type, - existing_info[field_name], - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif self.portal.cancer_type_dict is not None: - self.logger.info( - 'New disease type will be added to the portal', - extra={'line_number': self.line_number, - 'cause': line_cancer_type}) - # if no errors have been emitted while validating this line - if tracking_handler.max_level < logging.ERROR: - # add the cancer type defined on this line to the list - self.defined_cancer_types.append(line_cancer_type) - finally: - self.logger.logger.removeHandler(tracking_handler) - -class ResourceDefinitionValidator(Validator): - # 'RESOURCE_ID', 'RESOURCE_TYPE', 'DISPLAY_NAME' are required - REQUIRE_COLUMN_ORDER = False - REQUIRED_HEADERS = ['RESOURCE_ID', 'RESOURCE_TYPE', 'DISPLAY_NAME'] - NULL_VALUES = ["[not applicable]", "[not available]", "[pending]", "[discrepancy]", "[completed]", "[null]", "", "na"] - RESOURCE_TYPES = ["SAMPLE", "PATIENT", "STUDY"] - ALLOW_BLANKS = True - - def __init__(self, *args, **kwargs): - """Initialize a ResourceDefinitionValidator with the given parameters.""" - super(ResourceDefinitionValidator, self).__init__(*args, **kwargs) - self.resource_definition_dictionary = {} - - def checkLine(self, data): - """Check the values in a line of data.""" - super(ResourceDefinitionValidator, self).checkLine(data) - resource_id = '' - resource_type = '' - for col_index, col_name in enumerate(self.cols): - # treat cells beyond the end of the line as blanks, - # super().checkLine() has already logged an error - value = '' - if col_index < len(data): - value = data[col_index].strip() - - # make sure that RESOURCE_ID is present - if col_name == 'RESOURCE_ID': - if value.strip().lower() in self.NULL_VALUES: - self.logger.error( - 'Missing RESOURCE_ID', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - else: - resource_id = value - - # make sure that RESOURCE_TYPE is present and correct - if col_name == 'RESOURCE_TYPE': - if value.strip().lower() in self.NULL_VALUES: - self.logger.error( - 'Missing RESOURCE_TYPE', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - elif value.strip() not in self.RESOURCE_TYPES: - self.logger.error( - 'RESOURCE_TYPE is not one of the following : SAMPLE, PATIENT or STUDY', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - else: - resource_type = value - - # make sure that DISPLAY_NAME is present - if col_name == 'DISPLAY_NAME': - if value.strip().lower() in self.NULL_VALUES: - self.logger.error( - 'Missing DISPLAY_NAME', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - # pass for other null columns - if value.strip().lower() in self.NULL_VALUES: - pass - - # validate if OPEN_BY_DEFAULT and priority are correct - if col_name == 'OPEN_BY_DEFAULT': - if not (value.strip().lower() == 'true' or value.strip().lower() == 'false'): - self.logger.error( - 'wrong value of OPEN_BY_DEFAULT, should be true or false', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - if col_name == 'PRIORITY': - try: - int(value.strip()) - except ValueError: - self.logger.error( - 'wrong value of PRIORITY, the value should be integer', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - # add resource_id into dictionary - self.resource_definition_dictionary.setdefault(resource_id, []).append(resource_type) - -class ResourceValidator(Validator): - - """Abstract Validator class for resource data files. - - Subclasses define the columns that must be present in REQUIRED_HEADERS. - """ - - REQUIRE_COLUMN_ORDER = False - NULL_VALUES = ["[not applicable]", "[not available]", "[pending]", "[discrepancy]", "[completed]", "[null]", "", "na"] - ALLOW_BLANKS = True - - INVALID_ID_CHARACTERS = r'[^A-Za-z0-9._-]' - - def __init__(self, *args, **kwargs): - """Initialize the instance attributes of the data file validator.""" - super(ResourceValidator, self).__init__(*args, **kwargs) - - def url_validator(self, url): - try: - result = urlparse(url) - return all([result.scheme, result.netloc]) - except: - return False - - def checkLine(self, data): - """Check the values in a line of data.""" - super(ResourceValidator, self).checkLine(data) - for col_index, col_name in enumerate(self.cols): - # treat cells beyond the end of the line as blanks, - # super().checkLine() has already logged an error - value = '' - if col_index < len(data): - value = data[col_index].strip() - - # make sure that RESOURCE_ID is present - if col_name == 'RESOURCE_ID': - if value.strip().lower() in self.NULL_VALUES: - self.logger.error( - 'Missing RESOURCE_ID', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - # make sure that RESOURCE_ID is defined in the resource definition file - if value not in RESOURCE_DEFINITION_DICTIONARY: - self.logger.error( - 'RESOURCE_ID is not defined in resource definition file', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - # if not blank, check if values match the datatype - if value.strip().lower() in self.NULL_VALUES: - pass - - if col_name == 'URL': - # value should be a url - # Characters that affect netloc parsing under NFKC normalization will raise ValueError - if self.url_validator(value.strip()): - pass - else: - self.logger.error( - 'Value of resource is not an url, url should start with http or https', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'column_name': col_name, - 'cause': value}) - # make sure that PATIENT_ID is present - if col_name == 'PATIENT_ID': - if value.strip().lower() in self.NULL_VALUES: - self.logger.error( - 'Missing PATIENT_ID', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - if col_name == 'PATIENT_ID' or col_name == 'SAMPLE_ID': - if re.findall(self.INVALID_ID_CHARACTERS, value): - self.logger.error( - 'PATIENT_ID and SAMPLE_ID can only contain letters, ' - 'numbers, points, underscores and/or hyphens', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - -class SampleResourceValidator(ResourceValidator): - """Validator for files defining and setting sample-level attributes.""" - - REQUIRED_HEADERS = ['SAMPLE_ID', 'PATIENT_ID', 'RESOURCE_ID', 'URL'] - - def __init__(self, *args, **kwargs): - """Initialize a SampleResourceValidator with the given parameters.""" - super(SampleResourceValidator, self).__init__(*args, **kwargs) - self.sample_id_lines = {} - self.sampleIds = self.sample_id_lines.keys() - self.patient_ids = set() - self.defined_resources = {} - - def checkLine(self, data): - """Check the values in a line of data.""" - super(SampleResourceValidator, self).checkLine(data) - resource_id = '' - sample_id = '' - resource_url = '' - for col_index, col_name in enumerate(self.cols): - # treat cells beyond the end of the line as blanks, - # super().checkLine() has already logged an error - value = '' - if col_index < len(data): - value = data[col_index].strip() - # make sure RESOURCE_ID is defined correctly - if col_name == 'RESOURCE_ID': - if value not in RESOURCE_DEFINITION_DICTIONARY or 'SAMPLE' not in RESOURCE_DEFINITION_DICTIONARY[value]: - self.logger.error( - 'RESOURCE_ID for sample resource is not defined correctly in resource definition file', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - if value in RESOURCE_DEFINITION_DICTIONARY and len(RESOURCE_DEFINITION_DICTIONARY[value]) > 1: - self.logger.warning( - 'RESOURCE_ID for sample resource has been used by more than one RESOURCE_TYPE', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': RESOURCE_DEFINITION_DICTIONARY[value]}) - resource_id = value - if col_name == 'SAMPLE_ID': - if value.strip().lower() in self.NULL_VALUES: - self.logger.error( - 'Missing SAMPLE_ID', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - continue - if value not in self.sample_id_lines: - self.sample_id_lines[value] = self.line_number - sample_id = value - elif col_name == 'PATIENT_ID': - self.patient_ids.add(value) - if col_name == 'URL': - resource_url = value - # check duplicate - if (resource_id, sample_id, resource_url) in self.defined_resources: - self.logger.error( - 'Duplicated resources found', - extra={'line_number': self.line_number, - 'duplicated_line_number': self.defined_resources[(resource_id, sample_id, resource_url)]}) - else: - self.defined_resources[(resource_id, sample_id, resource_url)] = self.line_number - -class PatientResourceValidator(ResourceValidator): - - REQUIRED_HEADERS = ['PATIENT_ID', 'RESOURCE_ID', 'URL'] - - def __init__(self, *args, **kwargs): - """Initialize a PatientResourceValidator with the given parameters.""" - super(PatientResourceValidator, self).__init__(*args, **kwargs) - self.patient_id_lines = {} - self.defined_resources = {} - - def checkLine(self, data): - """Check the values in a line of data.""" - super(PatientResourceValidator, self).checkLine(data) - resource_id = '' - patient_id = '' - resource_url = '' - for col_index, col_name in enumerate(self.cols): - # treat cells beyond the end of the line as blanks, - # super().checkLine() has already logged an error - value = '' - if col_index < len(data): - value = data[col_index].strip() - # make sure RESOURCE_ID is defined correctly - if col_name == 'RESOURCE_ID': - if value not in RESOURCE_DEFINITION_DICTIONARY or 'PATIENT' not in RESOURCE_DEFINITION_DICTIONARY[value]: - self.logger.error( - 'RESOURCE_ID for patient resource is not defined correctly in resource definition file', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - if value in RESOURCE_DEFINITION_DICTIONARY and len(RESOURCE_DEFINITION_DICTIONARY[value]) > 1: - self.logger.warning( - 'RESOURCE_ID for patient resource has been used by more than one RESOURCE_TYPE', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': RESOURCE_DEFINITION_DICTIONARY[value]}) - resource_id = value - if col_name == 'PATIENT_ID': - if value not in self.patient_id_lines: - self.patient_id_lines[value] = self.line_number - patient_id = value - if col_name == 'URL': - resource_url = value - # check duplicate - if (resource_id, patient_id, resource_url) in self.defined_resources: - self.logger.error( - 'Duplicated resources found', - extra={'line_number': self.line_number, - 'duplicated_line_number': self.defined_resources[(resource_id, patient_id, resource_url)]}) - else: - self.defined_resources[(resource_id, patient_id, resource_url)] = self.line_number - -class StudyResourceValidator(ResourceValidator): - - REQUIRED_HEADERS = ['RESOURCE_ID', 'URL'] - - def __init__(self, *args, **kwargs): - """Initialize a StudyResourceValidator with the given parameters.""" - super(StudyResourceValidator, self).__init__(*args, **kwargs) - self.defined_resources = {} - - def checkLine(self, data): - """Check the values in a line of data.""" - super(StudyResourceValidator, self).checkLine(data) - resource_id = '' - resource_url = '' - for col_index, col_name in enumerate(self.cols): - # treat cells beyond the end of the line as blanks, - # super().checkLine() has already logged an error - value = '' - if col_index < len(data): - value = data[col_index].strip() - # make sure RESOURCE_ID is defined correctly - if col_name == 'RESOURCE_ID': - if value not in RESOURCE_DEFINITION_DICTIONARY or 'STUDY' not in RESOURCE_DEFINITION_DICTIONARY[value]: - self.logger.error( - 'RESOURCE_ID for study resource is not defined correctly in resource definition file', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - if value in RESOURCE_DEFINITION_DICTIONARY and len(RESOURCE_DEFINITION_DICTIONARY[value]) > 1: - self.logger.warning( - 'RESOURCE_ID for study resource has been used by more than one RESOURCE_TYPE', - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': RESOURCE_DEFINITION_DICTIONARY[value]}) - resource_id = value - if col_name == 'URL': - resource_url = value - # check duplicate - if (resource_id, resource_url) in self.defined_resources: - self.logger.error( - 'Duplicated resources found', - extra={'line_number': self.line_number, - 'duplicated_line_number': self.defined_resources[(resource_id, resource_url)]}) - else: - self.defined_resources[(resource_id, resource_url)] = self.line_number - -class GisticGenesValidator(Validator): - - """Validator for files with information aggregated from GISTIC output. - - This file type is produced by the cBioPortal data transformation pipelines, - based on the `table_{amp|del}.conf_*.txt` files in combination with data - from `{amp|del}_genes_conf_*.txt`. - """ - - REQUIRED_HEADERS = [ - 'chromosome', - 'peak_start', - 'peak_end', - 'genes_in_region', - 'amp', - 'cytoband', - 'q_value'] - - REQUIRE_COLUMN_ORDER = False - ALLOW_BLANKS = True - NULL_VALUES = [''] - - def __init__(self, *args, **kwargs): - """Initialize a GisticGenesValidator with the given parameters.""" - super(GisticGenesValidator, self).__init__(*args, **kwargs) - # checkLine() expects particular values here, for the 'amp' column - if not self.meta_dict['reference_genome_id'].startswith('hg'): - if not self.meta_dict['reference_genome_id'].startswith('mm'): - raise RuntimeError( - "GisticGenesValidator requires the metadata field " - "reference_genome_id to start with 'hg' or 'mm'") - if self.meta_dict['genetic_alteration_type'] not in ( - 'GISTIC_GENES_AMP', 'GISTIC_GENES_DEL'): - raise RuntimeError( - "Genetic alteration type '{}' not supported by " - "GisticGenesValidator.".format( - self.meta_dict['genetic_alteration_type'])) - self.chromosome_lengths = self.load_chromosome_lengths( - self.meta_dict['reference_genome_id'], - self.logger.logger - ) - - def checkLine(self, data): - - """Check the values on a data line.""" - - super(GisticGenesValidator, self).checkLine(data) - # properties to be validated in relation to each other if - # individually sensible values are found - parsed_chromosome = None - parsed_peak_start = None - parsed_peak_end = None - parsed_gene_list = None - cytoband_chromosome = None - parsed_cytoband = None - - # perform specific validations for each known column - for col_index, col_name in enumerate(self.cols): - # treat cells beyond the end of the line as blanks, - # super().checkLine() has already logged an error - value = '' - if col_index < len(data): - value = data[col_index] - # of the required columns, only genes_in_region can be blank - if ((col_name in self.REQUIRED_HEADERS and - col_name != 'genes_in_region') and - value.strip() in self.NULL_VALUES): - self.logger.error("Empty cell in column '%s'", - col_name, - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - # skip to the next column - continue - if col_name == 'chromosome': - parsed_chromosome = self.parse_chromosome_num( - value, column_number=col_index + 1, - chromosome_lengths=self.chromosome_lengths) - elif col_name == 'peak_start': - parsed_peak_start = self.parse_genomic_coord( - value, column_number=col_index + 1) - elif col_name == 'peak_end': - parsed_peak_end = self.parse_genomic_coord( - value, column_number=col_index + 1) - elif col_name == 'genes_in_region': - parsed_gene_list = self.parse_gene_list( - value, column_number=col_index + 1) - elif col_name == 'amp': - self.parse_amp_value( - value, column_number=col_index + 1) - elif col_name == 'cytoband': - cytoband_chromosome, parsed_cytoband = self.parse_cytoband( - value, column_number=col_index + 1) - elif col_name == 'q_value': - self.parse_q_value( - value, column_number=col_index + 1) - - # check if the start and the end of the peak are in the right order - if parsed_peak_start is not None and parsed_peak_end is not None: - if parsed_peak_start > parsed_peak_end: - # is an error according to UCSC "0" convention, end location excluded. - # see also https://groups.google.com/forum/#!topic/igv-help/LjffjxPul2M - self.logger.error( - 'Start position of peak is not lower than end position', - extra={'line_number': self.line_number, - 'cause': '{}/{}'.format(parsed_peak_start, - parsed_peak_end)}) - elif parsed_peak_end == parsed_peak_start: - # cBioPortal seems to filter out regions in which the narrow - # peak (based on all samples) is 0 bases wide. I have seen - # examples of peaks of length 0 at the end position of the - # corresponding `wide peak' in Firehose data. - self.logger.warning( - 'Peak is 0 bases wide and will not be shown in cBioPortal', - extra={'line_number': self.line_number, - 'cause': '{}-{}'.format(parsed_peak_start, - parsed_peak_end)}) - - - # check coordinates with the cytoband specification - if cytoband_chromosome and parsed_cytoband: - if parsed_chromosome: - if cytoband_chromosome != parsed_chromosome: - self.logger.error( - 'Cytoband and chromosome specifications do not match', - extra={'line_number': self.line_number, - 'cause': '(%s%s, %s)' % - (cytoband_chromosome, - parsed_cytoband, - parsed_chromosome)}) - # TODO: validate band/coord sets with the UCSC cytoband definitions (using - # parsed_gene_list and some of the other parsed_*list variables - - def parse_gene_list(self, value, column_number): - """Parse a csv gene symbol list, logging any errors for this column. - - Return the parsed value if valid, None otherwise. - """ - comma_sep_list = value.strip() - # ignore any trailing comma - if comma_sep_list.endswith(','): - comma_sep_list = comma_sep_list[:-1] - # list to collect parseable gene symbols - parsed_gene_list = [] - # give a custom warning if the list is empty - if comma_sep_list.strip() == '': - self.logger.warning( - "No genes listed in GISTIC copy-number altered region", - extra={'line_number': self.line_number, - 'column_number': column_number, - 'cause': value}) - else: - # loop over the comma-separated list of gene symbols. Example of such a - # list: RNA5SP149,snoU13|ENSG00000239096.1,GNB4 - for symbol in comma_sep_list.split(','): - symbol = symbol.strip() - # remove the | and trailing part if any (e.g. - # remove |ENSG00000239096.1 from snoU13|ENSG00000239096.1): - symbol = symbol.split('|')[0] - # add valid, unambiguous gene symbols to the list, - # while logging errors about unresolvable ones - # TODO: allow blanks if possible after this fix: - # https://github.com/cBioPortal/cbioportal/issues/884 - if self.checkGeneIdentification(symbol, entrez_id=None): - parsed_gene_list.append(symbol) - - def parse_amp_value(self, value, column_number): - """Parse an `amp` column flag, logging any errors for this column. - - Return the parsed value if valid, None otherwise. - """ - # 1 for _AMP, 0 for _DEL - expected_value = str(int( - self.meta_dict['genetic_alteration_type'] == - 'GISTIC_GENES_AMP')) - if value != expected_value: - self.logger.error( - "'amp' column must be '%s' in files of genetic " - "alteration type '%s'", - expected_value, - self.meta_dict['genetic_alteration_type'], - extra={'line_number': self.line_number, - 'column_number': column_number, - 'cause': value}) - return None - else: - return int(value) - - def parse_cytoband(self, value, column_number): - """Parse a cytoband with chromosome, logging any errors for this col. - - Return a tuple of the chromosome number and the cytoband specification - if valid, a tuple of Nones otherwise. - """ - chromosome_num = None - cytoband = None - # find the index of the (first) p or otherwise q, the arm - arm_index = value.find('p') - if arm_index == -1: - arm_index = value.find('q') - if arm_index == -1: - self.logger.error( - "Cytoband specification contains no 'p' or 'q'", - extra={'line_number': self.line_number, - 'column_number': column_number, - 'cause': value}) - else: - chromosome_num = value[:arm_index] - cytoband = value[arm_index:] - if chromosome_num is not None and chromosome_num == '': - self.logger.error( - 'Cytoband specification does not include the chromosome', - extra={'line_number': self.line_number, - 'column_number': column_number, - 'cause': value}) - chromosome_num, cytoband = None, None - # TODO: check if the cytoband exists in the UCSC cytobands file - return chromosome_num, cytoband - - def parse_q_value(self, value, column_number): - """Parse a q-value (numeral), logging any errors for this colum. - - Return the parsed value if valid, None otherwise. - """ - parsed_value = None - value_invalid = False - try: - parsed_value = float(value) - except ValueError: - self.logger.error('q-value is not a real number', - extra={'line_number': self.line_number, - 'column_number': column_number, - 'cause': value}) - value_invalid = True - if not value_invalid and (not 0 <= parsed_value <= 1): - self.logger.error('q-value is not between 0 and 1', - extra={'line_number': self.line_number, - 'column_number': column_number, - 'cause': value}) - if value_invalid: - return None - else: - return parsed_value - -class MultipleDataFileValidator(FeaturewiseFileValidator, metaclass=ABCMeta): - - """Ensures that multiple files that contain feature x sample data are consistent. - - MultipleDataFileValidator ensures that multiple files that contain feature x sample - data have consistent headers (containing sample id's) and feature columns (containing feature - id's). Errors messages are issued when samples or features are missing or when samples or features - are present in one but not the other file. - .""" - - def __init__(self, *args, **kwargs): - super(MultipleDataFileValidator, self).__init__(*args, **kwargs) - self.feature_ids = [] - - @staticmethod - @abstractmethod - def get_prior_validated_header(): - """Return the header for this group of classes.""" - - @staticmethod - @abstractmethod - def set_prior_validated_header(header_names): - """Set the header for this group of classes.""" - - @staticmethod - @abstractmethod - def get_prior_validated_feature_ids(): - """Return the feature ID list for this group of classes.""" - - @staticmethod - @abstractmethod - def set_prior_validated_feature_ids(feature_ids): - """Set the feature ID list for this group of classes.""" - - @staticmethod - @abstractmethod - def get_prior_validated_sample_ids(): - """Return the sample ID list for this group of classes.""" - - @staticmethod - @abstractmethod - def set_prior_validated_sample_ids(sample_ids): - """Set the sample ID list for this group of classes.""" - - @classmethod - @abstractmethod - def get_message_features_do_not_match(cls): - """Return information on error type 'features do not match'. - - An error will be raised when features are not constent between - files loaded within the context of a MultipleFileValidator. - Classes that extend MultipleDataFileValidator must implement - the get_message_features_do_not_match() method. The expected - return value is a string describing the type of error. - """ - pass - - def checkHeader(self, cols): - """Validate the header and read sample IDs from it. - - Return the number of fatal errors. - """ - num_errors = super(MultipleDataFileValidator, self).checkHeader(cols) - - if self.get_prior_validated_header() is not None: - if self.cols != self.get_prior_validated_header(): - self.logger.error('Headers from data files are different', - extra={'line_number': self.line_number}) - num_errors += 1 - else: - self.set_prior_validated_header(self.cols) - - return num_errors - - def parseFeatureColumns(self, nonsample_col_vals): - - """Check the feature id column.""" - - ALLOWED_CHARACTERS = r'[^A-Za-z0-9_.-]' - - feature_id = nonsample_col_vals[0].strip() - - # Check if genetic entity is present - if feature_id == '': - # Validator already gives warning for this in checkLine method - pass - elif re.search(ALLOWED_CHARACTERS, feature_id) is not None: - self.logger.error('Feature id contains one or more illegal characters', - extra={'line_number': self.line_number, - 'cause': 'id was`'+feature_id+'` and only alpha-numeric, _, . and - are allowed.'}) - else: - # Check if this is the second data file - if self.get_prior_validated_feature_ids() is not None: - # Check if genetic entity is in the first data file - if feature_id not in self.get_prior_validated_feature_ids(): - self.logger.error('Feature id cannot be found in other data file', - extra={'line_number': self.line_number, - 'cause': feature_id}) - # Add genetic entity to list of entities of current data file - self.feature_ids.append(feature_id) - return feature_id - - def onComplete(self): - - def checkConsistencyFeatures(self): - """This function validates whether the features in the data files are the same""" - - # If the prior_validated_features_ids is not filled yet, fill it with the first file. - if self.get_prior_validated_feature_ids() is None: - ids = self.feature_ids - self.set_prior_validated_feature_ids(ids) - else: - # Check if feature ids are the same - if not self.get_prior_validated_feature_ids() == self.feature_ids: - self.logger.error( self.get_message_features_do_not_match() ) - - checkConsistencyFeatures(self) - - super(MultipleDataFileValidator, self).onComplete() - - def checkId(self): - return self.checkIdInSamples() - -class GsvaWiseFileValidator(MultipleDataFileValidator, metaclass=ABCMeta): - """Groups multiple gene set data files from a study to ensure consistency. - - All Validator classes that check validity of different gene set data - types in a study should inherit from this class. - """ - - prior_validated_sample_ids = None - prior_validated_feature_ids = None - prior_validated_header = None - REQUIRED_HEADERS = ['geneset_id'] - - @staticmethod - def get_prior_validated_header(): - return GsvaWiseFileValidator.prior_validated_header - - @staticmethod - def set_prior_validated_header(header_names): - GsvaWiseFileValidator.prior_validated_header = header_names - - @staticmethod - def get_prior_validated_feature_ids(): - return GsvaWiseFileValidator.prior_validated_feature_ids - - @staticmethod - def set_prior_validated_feature_ids(feature_ids): - GsvaWiseFileValidator.prior_validated_feature_ids = feature_ids - - @staticmethod - def get_prior_validated_sample_ids(): - return GsvaWiseFileValidator.prior_validated_sample_ids - - @staticmethod - def set_prior_validated_sample_ids(sample_ids): - GsvaWiseFileValidator.prior_validated_sample_ids = sample_ids - - @classmethod - def get_message_features_do_not_match(cls): - return "Gene sets column in score and p-value file are not equal. The same set of gene sets should be used in the score and p-value files for this study. Please ensure that all gene set id's of one file are present in the other gene set data file." - - -class GsvaScoreValidator(GsvaWiseFileValidator): - - """ Validator for files containing scores per gene set from GSVA algorithm. The GSVA algorithm - in R can calculate a GSVA score or GSVA-like score (such as ssGSEA) per sample per gene set. - """ - - # Score must be between -1 and 1 - def checkValue(self, value, col_index): - """Check a value in a sample column.""" - stripped_value = float(value.strip()) - if stripped_value < -1 or stripped_value > 1: - self.logger.error("Value is not between -1 and 1, and therefore not " - "a valid GSVA score", - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - -class GsvaPvalueValidator(GsvaWiseFileValidator): - - """ Validator for files containing p-values for GSVA scores. The GSVA algorithm in R can - calculate a p-value for each GSVA score using a bootstrapping method. - """ - - # Score must be between -0 and 1 - def checkValue(self, value, col_index): - """Check a value in a sample column.""" - stripped_value = float(value.strip()) - if stripped_value <= 0 or stripped_value > 1: - self.logger.error("Value is not between 0 and 1, and therefore not a valid p-value", - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - -class GenericAssayWiseFileValidator(FeaturewiseFileValidator): - """ Generic assay file base validator - """ - prior_validated_sample_ids = None - prior_validated_feature_ids = None - prior_validated_header = None - def __init__(self, *args, **kwargs): - """Initialize the instance attributes of the data file validator.""" - super(GenericAssayWiseFileValidator, self).__init__(*args, **kwargs) - # reset REQUIRED_HEADERS for each generic assay meta file, and then add headers defined in generic_entity_meta_properties - self.REQUIRED_HEADERS = ['ENTITY_STABLE_ID'] - self.REQUIRED_HEADERS.extend([x.strip() for x in self.meta_dict['generic_entity_meta_properties'].split(',')]) - - REQUIRED_HEADERS = ['ENTITY_STABLE_ID'] - OPTIONAL_HEADERS = [] - UNIQUE_COLUMNS = ['ENTITY_STABLE_ID'] - ALLOW_BLANKS = True - NULL_VALUES = ["NA"] - - def parseFeatureColumns(self, nonsample_col_vals): - """Check the IDs in the first column.""" - - allowed_characters = r'[^A-Za-z0-9_.-]' - - value = nonsample_col_vals[0].strip() - - # Check if genetic entity is present and contains allowed characters - if re.search(allowed_characters, value) is not None: - self.logger.error('Feature id contains one or more illegal characters', - extra={'line_number': self.line_number, - 'cause': 'id was`' + value + '` and only alpha-numeric, _, . and - are allowed.'}) - - return value - - def checkId(self): - """Check if patient/sample IDs are imported""" - num_errors = 0 - is_patient_level = True if 'patient_level' in self.meta_dict and self.meta_dict['patient_level'].strip().lower() == 'true' else False - # self.sampleIds can save either patient ids or sample ids - ids = self.sampleIds - for index, id in enumerate(ids): - if ' ' in id: - self.logger.error( - 'White space in id is not supported', - extra={'line_number': self.line_number, - 'column_number': self.num_nonsample_cols + index + 1, - 'cause': id}) - num_errors += 1 - elif is_patient_level: - # check patient id for patient level data - if not self.checkPatientId( - id, - column_number=self.num_nonsample_cols + index + 1): - num_errors += 1 - else: - # check sample id for non patient level data - if not self.checkSampleId( - id, - column_number=self.num_nonsample_cols + index + 1): - num_errors += 1 - return num_errors - -class GenericAssayContinuousValidator(GenericAssayWiseFileValidator): - - """ Validator for files containing generic assay limit continuous values. - """ - def __init__(self, *args, **kwargs): - """Initialize the instance attributes of the data file validator.""" - super(GenericAssayContinuousValidator, self).__init__(*args, **kwargs) - - # (1) Natural positive number (not 0) - # (2) Number may be prefixed by ">" or "<"; f.i. ">n" means that the real value lies beyond value n. - # (3) NA cell value is allowed; means value was not tested on a sample - # (4) empty cell is allowed; means value was not tested on a sample - # - # Warnings for values: - # (1) Cell contains a value without decimals and is not prefixed by ">"; value appears to be truncated but lacks ">" truncation indicator - def checkValue(self, value, col_index): - """Check a value in a sample column.""" - stripped_value = value.strip() - # if the value is prefixed with '>' or '<' remove this prefix - # prior to evaluation of the numeric value - hasTruncSymbol = re.match("^[><]", stripped_value) - stripped_value = re.sub(r"^[><]\s*","", stripped_value) - - # do not check null values - # 'NA' is an allowed value. No further validations apply. - if stripped_value in self.NULL_VALUES: - return - - # value is not defined (empty cell) - if len(stripped_value) == 0: - # empty cell is allowed - return - - try: - numeric_value = float(stripped_value) - except ValueError: - self.logger.error("Value cannot be interpreted as a floating point number and is not valid value.", - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - return - - if math.isnan(numeric_value): - self.logger.error("Value is NaN, therefore, not a valid value.", - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - return - - if math.isinf(numeric_value): - self.logger.error("Value is infinite and, therefore, not a valid value.", - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - return - - if numeric_value % 1 == 0 and not hasTruncSymbol: - self.logger.warning("Value has no decimals and may represent an invalid value.", - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - return - -class GenericAssayCategoricalValidator(GenericAssayWiseFileValidator): - - """ Validator for files containing generic assay categorical values. - """ - - # Global validation for specific generic assay types - GENERIC_ASSAY_CATEGORICAL_VALUES_MAP_BY_TYPE = { - 'ARMLEVEL_CNA': ['Gain', 'Loss', 'Unchanged'], - } - - ALLOWED_VALUES = None - - def __init__(self, *args, **kwargs): - """Initialize the instance attributes of the data file validator.""" - super(GenericAssayCategoricalValidator, self).__init__(*args, **kwargs) - # Define ALLOWED_VALUES based on generic_assay_type - if 'generic_assay_type' in self.meta_dict: - generic_assay_type = self.meta_dict['generic_assay_type'].strip().upper() - if generic_assay_type in self.GENERIC_ASSAY_CATEGORICAL_VALUES_MAP_BY_TYPE: - self.ALLOWED_VALUES = self.GENERIC_ASSAY_CATEGORICAL_VALUES_MAP_BY_TYPE[generic_assay_type] - - def checkValue(self, value, col_index): - """ Check value if ALLOWED_VALUES defined, or Categorical data do not need further validation """ - if self.ALLOWED_VALUES: - stripped_value = value.strip() - # do not check null values - # 'NA' is an allowed value. No further validations apply. - if stripped_value in self.NULL_VALUES: - return - # value is not defined (empty cell) - if len(stripped_value) == 0: - # empty cell is allowed - return - if stripped_value not in self.ALLOWED_VALUES: - self.logger.error( - 'Invalid generic assay categorical value: possible values are [%s]', - ', '.join(self.ALLOWED_VALUES), - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - return - -class GenericAssayBinaryValidator(GenericAssayWiseFileValidator): - - """ Validator for files containing generic assay binary values. - """ - def __init__(self, *args, **kwargs): - """Initialize the instance attributes of the data file validator.""" - super(GenericAssayBinaryValidator, self).__init__(*args, **kwargs) - - # (1) values defined in ALLOWED_VALUES - # (2) NA cell value is allowed; means value was not tested on a sample - # (3) empty cell is allowed; means value was not tested on a sample - - ALLOWED_VALUES = ['yes', 'no', 'true', 'false'] + GenericAssayWiseFileValidator.NULL_VALUES - - def checkValue(self, value, col_index): - """Check a value in a sample column.""" - stripped_value = value.strip() - # do not check null values - # 'NA' is an allowed value. No further validations apply. - if stripped_value in self.NULL_VALUES: - return - # value is not defined (empty cell) - if len(stripped_value) == 0: - # empty cell is allowed - return - if stripped_value not in self.ALLOWED_VALUES: - self.logger.error( - 'Invalid generic assay binary value: possible values are [%s]', - ', '.join(self.ALLOWED_VALUES), - extra={'line_number': self.line_number, - 'column_number': col_index + 1, - 'cause': value}) - - return - -# ------------------------------------------------------------------------------ -# Functions - -# FIXME: returning simple valid (meta_fn, data_fn) pairs would be cleaner, -# Validator objects can be instantiated with a portal instance elsewhere -def process_metadata_files(directory, portal_instance, logger, relaxed_mode, strict_maf_checks): - - """Parse the meta files in a directory and create data file validators. - - Return a tuple of: - 1. a dict listing the data file validator (or None) for each meta file - by file type, - 2. a dict mapping any case list IDs defined *outside* of the case list - directory to paths of the files in which they were defined - 3. the cancer type of the study, and - 4. the study id - - Possible file types are listed in cbioportal_common.MetaFileTypes. - """ - - # get filenames for all meta files in the directory - filenames = [os.path.join(directory, f) for - f in sorted(os.listdir(directory)) if - re.search(r'(\b|_)meta(\b|[_0-9])', f, - flags=re.IGNORECASE) and - not f.startswith('ONCOKB_IMPORT_BACKUP') and - not f.startswith('.') and - not f.endswith('~')] - - if len(filenames) == 0: - logger.critical( - 'No meta files found in ' + directory +'. Please make sure the directory '\ - 'is the path to the folder containing the files.') - - study_id = None - study_cancer_type = None - study_data_types = [] - validators_by_type = {} - case_list_suffix_fns = {} - stable_ids = [] - global meta_dictionary - tags_file_path = None - - # implemented ref genomes - reference_genome_map = { - 'hg19': ('human', 'GRCh37', 'hg19'), - 'hg38': ('human', 'GRCh38', 'hg38'), - 'mm10': ('mouse', 'GRCm38', 'mm10') - } - - DISALLOWED_CHARACTERS = r'[^A-Za-z0-9_-]' - for filename in filenames: - - meta_dictionary = cbioportal_common.parse_metadata_file( - filename, logger, study_id, gene_panel_list=portal_instance.gene_panel_list) - meta_file_type = meta_dictionary['meta_file_type'] - if meta_file_type is None: - continue - - # check if geneset version is the same in database - if portal_instance.geneset_version is not None and 'geneset_def_version' in meta_dictionary: - geneset_def_version = meta_dictionary['geneset_def_version'].strip() - if (geneset_def_version != portal_instance.geneset_version): - logger.error( - '`geneset_def_version` is different from the geneset_version in the database', - extra={'filename_': filename, - 'cause': geneset_def_version}) - - # validate stable_id to be unique (check can be removed once we deprecate this field): - if 'stable_id' in meta_dictionary: - stable_id = meta_dictionary['stable_id'].strip() - - # Check for non-supported characters in the stable_id - # Note: this check is needed because when using a wildcard for STABLE_ID - # in the allowed_file_types.txt the user can specify a custom stable_id in the meta file. - if stable_id == '' or re.search(DISALLOWED_CHARACTERS, stable_id) != None: - logger.error( - '`stable_id` is not valid (empty string or contains one or more illegal characters)', - extra={'filename_': filename, - 'cause': stable_id}) - - if stable_id in stable_ids: - # stable id already used in other meta file, give error: - logger.error( - 'stable_id repeated. It should be unique across all files in a study', - extra={'filename_': filename, - 'cause': stable_id}) - else: - stable_ids.append(stable_id) - - # Save meta values in a study wide dictionary - study_meta_dictionary[stable_id] = meta_dictionary - - # Validate data types - if 'datatype' in meta_dictionary: - if meta_dictionary['datatype'].lower() in study_data_types: - # For Seg file only one can be loaded - if meta_dictionary['datatype'].lower() == "seg": - logger.error('datatype SEG is repeated. Only one segmentation file can be loaded.') - else: - study_data_types.append(meta_dictionary['datatype'].lower()) - - if study_id is None and 'cancer_study_identifier' in meta_dictionary: - study_id = meta_dictionary['cancer_study_identifier'] - if meta_file_type == cbioportal_common.MetaFileTypes.STUDY: - if study_cancer_type is not None: - logger.error( - 'Encountered a second meta_study file', - extra={'filename_': filename}) - else: - study_cancer_type = meta_dictionary['type_of_cancer'] - if ('add_global_case_list' in meta_dictionary and - meta_dictionary['add_global_case_list'].lower() == 'true'): - case_list_suffix_fns['all'] = filename - - # if reference_genome is specified in the meta file, override the defaults in portal properties - if 'reference_genome' in meta_dictionary: - if meta_dictionary['reference_genome'] not in reference_genome_map: - logger.error('Unknown reference genome defined. Should be one of %s' % - list(reference_genome_map.keys()), - extra={ - 'filename_': filename, - 'cause': meta_dictionary['reference_genome'].strip() - }) - else: - genome_info = reference_genome_map[meta_dictionary['reference_genome']] - logger.info('Setting reference genome to %s (%s, %s)' % genome_info, - extra={'filename_': filename}) - portal_instance.species, portal_instance.ncbi_build, portal_instance.reference_genome = genome_info - else: - logger.info('No reference genome specified -- using default (hg19)', - extra={'filename_': filename}) - - # Validate PMID field in meta_study - if 'pmid' in meta_dictionary: - if 'citation' not in meta_dictionary: - logger.warning('Citation is required when providing a PubMed ID (pmid)') - stripped_pmid_value_len = len(meta_dictionary['pmid'].strip()) - no_whitespace_pmid_value_len = len(''.join(meta_dictionary['pmid'].split())) - if (no_whitespace_pmid_value_len != stripped_pmid_value_len): - logger.error('The PMID field in meta_study should not contain any embedded whitespace', - extra={'cause': meta_dictionary['pmid'].strip()}) - for pmid_entry in [x.strip() for x in meta_dictionary['pmid'].split(',')]: - try: - value = int(pmid_entry) - except ValueError: - logger.error('The PMID field in meta_study should be a comma separated list of integers', - extra={'cause': pmid_entry}) - - # Validate Study Tags file field in meta_study - if 'tags_file' in meta_dictionary: - logger.debug( - 'Study Tag file found. It will be validated.') - tags_file_path = os.path.join(directory, meta_dictionary['tags_file']) - - # create a list for the file type in the dict - if meta_file_type not in validators_by_type: - validators_by_type[meta_file_type] = [] - # check if data_filename is set AND if data_filename is a supported field according to META_FIELD_MAP: - if 'data_filename' in meta_dictionary and 'data_filename' in cbioportal_common.META_FIELD_MAP[meta_file_type]: - validator_class = globals()[VALIDATOR_IDS[meta_file_type]] - validator = validator_class(directory, meta_dictionary, - portal_instance, logger, - relaxed_mode, strict_maf_checks) - validators_by_type[meta_file_type].append(validator) - else: - validators_by_type[meta_file_type].append(None) - - if study_cancer_type is None: - logger.error( - 'Cancer type needs to be defined for a study. Verify that you have a study file ' - 'and have defined the cancer type correctly.') - - # prepend the cancer study id to any case list suffixes - defined_case_list_fns = {} - if study_id is not None: - for suffix in case_list_suffix_fns: - defined_case_list_fns[study_id + '_' + suffix] = \ - case_list_suffix_fns[suffix] - - return (validators_by_type, defined_case_list_fns, - study_cancer_type, study_id, stable_ids, tags_file_path) - - -def processCaseListDirectory(caseListDir, cancerStudyId, logger, - prev_stableid_files=None): - """Validate the case lists in a directory and return an id/file mapping. - - Args: - caseListDir (str): path to the case list directory. - cancerStudyId (str): cancer_study_identifier expected in the files. - logger: logging.Logger instance through which to send output. - prev_stableid_files (Optional): dict mapping the stable IDs of any case - lists already defined to the files they were defined in. - - Returns: - Dict[str, str]: dict mapping the stable IDs of all valid defined case - lists to the files they were defined in, including the - prev_stableid_files argument - """ - - logger.debug('Validating case lists') - - stableid_files = {} - global mutation_sample_ids - - # include the previously defined stable IDs - if prev_stableid_files is not None: - stableid_files.update(prev_stableid_files) - - case_list_fns = [os.path.join(caseListDir, fn) for - fn in os.listdir(caseListDir) if - not (fn.startswith('.') or fn.endswith('~'))] - - # Save case list categories - previous_case_list_categories = [] - - for case in case_list_fns: - - meta_dictionary = cbioportal_common.parse_metadata_file( - case, logger, cancerStudyId, case_list=True) - # skip if invalid, errors have already been emitted - if meta_dictionary['meta_file_type'] is None: - continue - - # check for correct naming of case list stable ids - stable_id = meta_dictionary['stable_id'] - if not stable_id.startswith(cancerStudyId + '_'): - logger.error('Stable_id of case list does not start with the ' - 'study id (%s) followed by an underscore', - cancerStudyId, - extra={'filename_': case, - 'cause': stable_id}) - - # check for duplicated stable ids - elif stable_id in stableid_files: - logger.error('Multiple case lists with this stable_id defined ' - 'in the study', - extra={'filename_': case, - 'cause': '%s (already defined in %s)' % ( - stable_id, - os.path.relpath(stableid_files[stable_id], - os.path.dirname(caseListDir)))}) - else: - stableid_files[stable_id] = case - - if 'case_list_category' in meta_dictionary: - # Valid case list categories - VALID_CATEGORIES = ['all_cases_in_study', - 'all_cases_with_mutation_data', - 'all_cases_with_cna_data', - 'all_cases_with_log2_cna_data', - 'all_cases_with_methylation_data', - 'all_cases_with_mrna_array_data', - 'all_cases_with_mrna_rnaseq_data', - 'all_cases_with_rppa_data', - 'all_cases_with_microrna_data', - 'all_cases_with_mutation_and_cna_data', - 'all_cases_with_mutation_and_cna_and_mrna_data', - 'all_cases_with_gsva_data', - 'all_cases_with_sv_data', - 'other'] - - # If the case list category is invalid, the importer will crash. - if meta_dictionary['case_list_category'] not in VALID_CATEGORIES: - logger.error('Invalid case list category', - extra={'filename_': case, - 'cause': meta_dictionary['case_list_category']}) - - # Check for duplicate case list categories - if meta_dictionary['case_list_category'] in previous_case_list_categories and \ - not meta_dictionary['case_list_category'] == 'other': - logger.warning('Case list category already used in other case list. Both will be loaded', - extra={'filename_': case, - 'cause': meta_dictionary['case_list_category']}) - else: - previous_case_list_categories.append(meta_dictionary['case_list_category']) - - # Check for any duplicate sample IDs - sample_ids = [x.strip() for x in meta_dictionary['case_list_ids'].split('\t')] - seen_sample_ids = OrderedDict() - dupl_sample_ids = OrderedDict() - for sample_id in sample_ids: - if sample_id not in seen_sample_ids: - seen_sample_ids[sample_id] = True - else: - dupl_sample_ids[sample_id] = True - - # Duplicate samples IDs are removed by the importer, therefore this is - # only a warning. - if len(dupl_sample_ids) > 0: - logger.warning('Duplicate Sample ID in case list', - extra={'filename_': case, - 'cause': ', '.join(dupl_sample_ids.keys())}) - - for value in seen_sample_ids: - # Compare case list sample ids with clinical file - if value not in DEFINED_SAMPLE_IDS: - logger.error( - 'Sample ID not defined in clinical file', - extra={'filename_': case, - 'cause': value}) - # Check if there are white spaces in the sample id - if ' ' in value: - logger.error( - 'White space in sample id is not supported', - extra={'filename_': case, - 'cause': value}) - - if stable_id.split('_')[-1] == 'sequenced': - mutation_sample_ids = set(sample_ids) - - # Check all samples in the mutation data are included in the `_sequenced` case list - if len(mutation_file_sample_ids) > 0: - if not mutation_file_sample_ids.issubset(mutation_sample_ids): - mutation_sample_ids_not_in_case_list = ", ".join(mutation_file_sample_ids - mutation_sample_ids) - logger.error( - "Sample IDs from mutation data are missing from the '_sequenced' case list.", - extra={'filename_': case, - 'cause': mutation_sample_ids_not_in_case_list}) - - logger.info('Validation of case list folder complete') - - return stableid_files - - -def validate_defined_caselists(cancer_study_id, case_list_ids, file_types, logger): - - """Validate the set of case lists defined in a study. - - Args: - cancer_study_id (str): the study ID to be expected in the stable IDs - case_list_ids (Iterable[str]): stable ids of defined case lists - file_types (Dict[str, str]): listing of the MetaFileTypes with high- - dimensional data in this study--some imply certain case lists - logger: logging.Logger instance to log output to - """ - - if cancer_study_id + '_all' not in case_list_ids: - logger.error( - "No case list found with stable_id '%s', consider adding " - "'add_global_case_list: true' to the meta_study.txt file", - cancer_study_id + '_all') - - if 'meta_mutations_extended' in file_types: - if cancer_study_id + '_sequenced' not in case_list_ids: - logger.error( - "No case list found with stable_id '%s', please add this " - "case list to specify which samples are profiled for mutations. This " - "is required for calculation of samples with mutations in OncoPrint and Study Summary.", - cancer_study_id + '_sequenced') - - if 'meta_CNA' in file_types: - if cancer_study_id + '_cna' not in case_list_ids: - logger.error( - "No case list found with stable_id '%s', please add this " - "case list to specify which samples are profiled for mutations. This " - "is required for calculation of samples with CNA in OncoPrint and Study Summary.", - cancer_study_id + '_cna') - - if 'meta_mutations_extended' in file_types and 'meta_CNA' in file_types: - if cancer_study_id + '_cnaseq' not in case_list_ids: - logger.warning( - "No case list found with stable_id '%s', please add this " - "case list to specify which samples are profiled for this data type. On the query page, this " - "case list will be selected by default when both mutation and CNA data are available.", - cancer_study_id + '_cnaseq') - -def validateStudyTags(tags_file_path, logger): - """Validate the study tags file.""" - logger.debug('Starting validation of study tags file', - extra={'filename_': tags_file_path}) - with open(tags_file_path, 'r') as stream: - try: - parsedYaml = yaml.load(stream, Loader=yaml.FullLoader) - logger.info('Validation of study tags file complete.', - extra={'filename_': tags_file_path}) - except yaml.YAMLError as exc: - logger.error('The file provided is not in YAML or JSON format', - extra={'filename_': tags_file_path}) - -def validate_data_relations(validators_by_meta_type, logger): - - """Validation after all meta files are individually validated. - - Here we validate that the required cross-linking between expression, - zscore, gsva score and gsva pvalue files is present in the form of - source_stable_id, which is used to link the profiles to each other. - """ - # retrieve values from cbioportal_common.py - expression_stable_ids = cbioportal_common.expression_stable_ids - expression_zscores_source_stable_ids = cbioportal_common.expression_zscores_source_stable_ids - gsva_scores_stable_id = cbioportal_common.gsva_scores_stable_id - gsva_scores_source_stable_id = cbioportal_common.gsva_scores_source_stable_id - gsva_pvalues_source_stable_id = cbioportal_common.gsva_pvalues_source_stable_id - gsva_scores_filename = cbioportal_common.gsva_scores_filename - gsva_pvalues_filename = cbioportal_common.gsva_pvalues_filename - - # validation specific for Z-SCORE expression data - for expression_zscores_source_stable_id in expression_zscores_source_stable_ids: - # check if 'source_stable_id' of EXPRESSION Z-SCORE is an EXPRESSION 'stable_id' - if not expression_zscores_source_stable_id in expression_stable_ids.keys(): - logger.error( - "Invalid source_stable_id. Expected one of ['" + "', '".join(expression_stable_ids.keys()) + - "'], which are stable ids of expression files in this study", - extra={'filename_': expression_zscores_source_stable_ids[expression_zscores_source_stable_id], - 'cause': expression_zscores_source_stable_id}) - # check that source_stable_id is not the same as source_id - for expression_stable_id in expression_stable_ids.keys(): - if expression_zscores_source_stable_ids[expression_zscores_source_stable_id] == expression_stable_ids[expression_stable_id]: - if expression_zscores_source_stable_id == expression_stable_id: - logger.error( - "Both source_stable_id and stable_id refers to the same profile", - extra={'filename_': expression_zscores_source_stable_ids[expression_zscores_source_stable_id], - 'cause': expression_zscores_source_stable_id}) - - # validation specific for GSVA data - if any(m in validators_by_meta_type for m in ["meta_gsva_pvalues", "meta_gsva_scores"]): - - # When missing a gsva file, no subsequent validation will be done - missing_gsva_file = False - - # check if both files are present - if not "meta_gsva_pvalues" in validators_by_meta_type: - logger.error('Required meta GSVA p-value file is missing') - missing_gsva_file = True - if not "meta_gsva_scores" in validators_by_meta_type: - logger.error('Required meta GSVA score file is missing') - missing_gsva_file = True - if not "meta_expression" in validators_by_meta_type: - logger.error('Required meta expression file is missing.') - missing_gsva_file = True - - # check `source_stable_id` in GSVA_SCORES and GSVA_PVALUES - if not missing_gsva_file: - - # check if 'source_stable_id' of GSVA_SCORES is an EXPRESSION 'stable_id' - if not gsva_scores_source_stable_id in expression_stable_ids.keys(): - logger.error( - "Invalid source_stable_id. Expected one of ['" + "', '".join(expression_stable_ids.keys()) + - "'], which are stable ids of expression files in this study", - extra={'filename_': gsva_scores_filename, - 'cause': gsva_scores_source_stable_id}) - - # check if 'source_stable_id'of GSVA_PVALUES is an GSVA_SCORES 'stable_id' - if not gsva_pvalues_source_stable_id == gsva_scores_stable_id: - logger.error( - "Invalid source_stable_id. Expected '" + gsva_scores_stable_id + "', " - "which is the stable id of the gsva score file in this study", - extra={'filename_': gsva_pvalues_filename, - 'cause': gsva_pvalues_source_stable_id}) - - # Validate that there is a Z-SCORE expression file for GSVA study - if len(expression_zscores_source_stable_ids) == 0: - logger.error( - "Study contains GSVA data and is missing Z-Score expression file. " - "Please add a Z-Score expression file calculated from the same " - "expression file used to calculate GSVA scores") - else: - # Validate that GSVA_SCORES 'source_stable_id' is also a 'source_stable_id' - # in a Z-SCORE expression file - if not gsva_scores_source_stable_id in list(expression_zscores_source_stable_ids.keys()): - logger.error( - "source_stable_id does not match source_stable_id from Z-Score expression files. " - "Please make sure sure that Z-Score expression file is added for '" + - gsva_scores_source_stable_id + "'. Current Z-Score source stable ids found are ['" + - "', '".join(list(expression_zscores_source_stable_ids.keys())) +"'].", - extra={'filename_': gsva_scores_filename, - 'cause': gsva_scores_source_stable_id}) - - -def request_from_portal_api(server_url, api_name, logger): - """Send a request to the portal API and return the decoded JSON object.""" - - if api_name in ['info', 'cancer-types', 'genes', 'genesets', 'gene-panels']: - service_url = server_url + '/api/' + api_name - elif api_name in ['genesets_version']: - service_url = server_url + '/api/genesets/version' - - # NOTE: There is no 'genesaliases' API enpoint and iterative querying by symbol is not viable. - # Thus for now, aliases can be imported only in offline mode - elif api_name == 'genesaliases': - return [] - - logger.debug("Requesting %s from portal at '%s'", - api_name, server_url) - # this may raise a requests.exceptions.RequestException subclass, - # usually because the URL provided on the command line was invalid or - # did not include the http:// part - response = requests.get(service_url) - try: - response.raise_for_status() - except requests.exceptions.HTTPError as e: - raise ConnectionError( - 'Failed to fetch metadata from the portal at [{}]'.format(service_url) - ) from e - - if api_name == 'gene-panels': - gene_panels = [] - for data_item in response.json(): - panel = {} - gene_panel_id = data_item['genePanelId'] - gene_panel_url = service_url+'/'+gene_panel_id - response = requests.get(gene_panel_url).json() - panel['description'] = response['description'] - panel['genes'] = response['genes'] - panel['genePanelId'] = response['genePanelId'] - gene_panels.append(panel) - return(gene_panels) - return response.json() - - -def read_portal_json_file(dir_path, api_name, logger): - """Parse a JSON file named `api_name`.json in `dir_path`. - - Replacing any forward slashes in the API name by underscores. - """ - parsed_json = None - json_fn = os.path.join(dir_path, '{}.json'.format( - api_name.replace('/', '_'))) - if os.path.isfile(json_fn): - logger.debug('Reading portal information from %s', - json_fn) - with open(json_fn, 'r') as json_file: - parsed_json = json.load(json_file) - return parsed_json - - -def index_api_data(parsed_json, id_field): - """Transform a list of dicts into a dict indexed by one of their fields. - - >>> index_api_data([{'id': 'eggs', 'val1': 42, 'foo': True}, - ... {'id': 'spam', 'val1': 1, 'foo': True}], 'id') - {'eggs': {'val1': 42, 'foo': True}, 'spam': {'val1': 1, 'foo': True}} - >>> index_api_data([{'id': 'eggs', 'val1': 42, 'foo': True}, - ... {'id': 'spam', 'val1': 1, 'foo': True}], 'val1') - {1: {'foo': True, 'id': 'spam'}, 42: {'foo': True, 'id': 'eggs'}} - """ - transformed_dict = {} - for attr in parsed_json: - # make a copy of the attr dict - # remove id field: - if not id_field in attr: - raise RuntimeError("Field '{}' not found in json object".format( - id_field)) - id_val = attr[id_field] - if id_val in transformed_dict: - raise RuntimeError("Identifier '{}' found more than once in json " - "object".format(id_val)) - # make a copy of the sub-dictionary without the id field - attr_dict = dict(attr) - del attr_dict[id_field] - transformed_dict[id_val] = attr_dict - return transformed_dict - - -def transform_symbol_entrez_map(json_data, - id_field='hugoGeneSymbol', - values_field='entrezGeneId'): - """Transform a list of homogeneous dicts into a dict of lists. - - Using the values of the `id_field` entries as the keys, mapping to lists - of corresponding `values_field` entries. - - >>> transform_symbol_entrez_map( - ... [{"hugoGeneSymbol": "A1BG", "entrezGeneId": 1}, - ... {"hugoGeneSymbol": "A2M", "entrezGeneId": 2}]) - {'A2M': [2], 'A1BG': [1]} - >>> transform_symbol_entrez_map( - ... [{"gene_alias": "A1B", "entrezGeneId": 1}, - ... {"gene_alias": "ANG3", "entrezGeneId": 738}, - ... {"gene_alias": "ANG3", "entrezGeneId": 9068}], - ... id_field="gene_alias") - {'ANG3': [738, 9068], 'A1B': [1]} - """ - result_dict = {} - for data_item in json_data: - symbol = data_item[id_field].upper() - if symbol not in result_dict: - result_dict[symbol] = [] - result_dict[symbol].append( - data_item[values_field]) - return result_dict - - -def extract_ids(json_data, id_key): - """Creates a list of all IDs retrieved from API - :param json_data: - :param id_key: - :return: - """ - result_set = set() - for data_item in json_data: - result_set.add(data_item[id_key]) - return list(result_set) - -def extract_panels(json_data, id_key): - gene_panel_list = {} - for data_item in json_data: - gene_list = [] - for entrez_id in data_item['genes']: - gene_list.append(entrez_id['entrezGeneId']) - gene_panel_list[data_item[id_key]] = gene_list - return gene_panel_list - -# there is no dump function implemented for the /info API. Unable to retrieve version. -def load_portal_metadata(json_data): - return json_data - -def load_portal_info(path, logger, offline=False): - """Create a PortalInstance object based on a server API or offline dir. - - If `offline` is True, interpret `path` as the path to a directory of JSON - files. Otherwise expect `path` to be the URL of a cBioPortal server and - use its web API. - """ - portal_dict = {} - for api_name, transform_function in ( - ('info', - lambda json_data: load_portal_metadata(json_data)), - ('cancer-types', - lambda json_data: index_api_data(json_data, 'cancerTypeId')), - ('genes', - lambda json_data: transform_symbol_entrez_map( - json_data, 'hugoGeneSymbol')), - ('genesets', - lambda json_data: extract_ids(json_data, 'genesetId')), - ('genesets_version', - lambda json_data: str(json_data).strip(' \'[]')), - ('gene-panels', - lambda json_data: extract_panels(json_data, 'genePanelId')), - ('genesaliases', - lambda json_data: transform_symbol_entrez_map(json_data, - id_field='alias', - values_field='entrezGeneId')) - ): - if offline: - parsed_json = read_portal_json_file(path, api_name, logger) - else: - parsed_json = request_from_portal_api(path, api_name, logger) - if parsed_json is not None and transform_function is not None: - parsed_json = transform_function(parsed_json) - portal_dict[api_name] = parsed_json - - if all(d is None for d in list(portal_dict.values())): - raise LookupError('No portal information found at {}'.format(path)) - return PortalInstance(portal_info_dict=portal_dict['info'], - cancer_type_dict=portal_dict['cancer-types'], - hugo_entrez_map=portal_dict['genes'], - # TODO - create a /genealiases equivalent in the new api - alias_entrez_map=portal_dict['genesaliases'], - gene_set_list=portal_dict['genesets'], - gene_panel_list=portal_dict['gene-panels'], - geneset_version = portal_dict['genesets_version'], - offline=offline) - - -# ------------------------------------------------------------------------------ -def interface(args=None): - parser = argparse.ArgumentParser(description='cBioPortal study validator') - parser.add_argument('-s', '--study_directory', - type=str, required=True, help='path to directory.') - portal_mode_group = parser.add_mutually_exclusive_group() - portal_mode_group.add_argument('-u', '--url_server', - type=str, - default='http://localhost:8080', - help='URL to cBioPortal server. You can ' - 'set this if your URL is not ' - 'http://localhost:8080') - portal_mode_group.add_argument('-p', '--portal_info_dir', - type=str, - help='Path to a directory of cBioPortal ' - 'info files to be used instead of ' - 'contacting a server') - portal_mode_group.add_argument('-n', '--no_portal_checks', - action='store_true', - help='Skip tests requiring information ' - 'from the cBioPortal installation') - parser.add_argument('-html', '--html_table', type=str, required=False, - help='path to html report output file') - parser.add_argument('-e', '--error_file', type=str, required=False, - help='File to which to write line numbers on which ' - 'errors were found, for scripts') - parser.add_argument('-v', '--verbose', required=False, action='store_true', - help='report status info messages in addition ' - 'to errors and warnings') - parser.add_argument('-r', '--relaxed_clinical_definitions', required=False, - action='store_true', default=False, - help='Option to enable relaxed mode for validator when ' - 'validating clinical data without header definitions') - parser.add_argument('-m', '--strict_maf_checks', required=False, - action='store_true', default=False, - help='Option to enable strict mode for validator when ' - 'validating mutation data') - parser = parser.parse_args(args) - return parser - - -def validate_study(study_dir, portal_instance, logger, relaxed_mode, strict_maf_checks): - - """Validate the study in `study_dir`, logging messages to `logger`, and relaxing - clinical data validation if `relaxed_mode` is true. - - This will verify that the study is compatible with the portal configuration - represented by the PortalInstance object `portal_instance`, if its - attributes are not None. - """ - - global DEFINED_CANCER_TYPES - global DEFINED_SAMPLE_IDS - global DEFINED_SAMPLE_ATTRIBUTES - global PATIENTS_WITH_SAMPLES - global RESOURCE_DEFINITION_DICTIONARY - global RESOURCE_PATIENTS_WITH_SAMPLES - - if portal_instance.cancer_type_dict is None: - logger.warning('Skipping validations relating to cancer types ' - 'defined in the portal') - if (portal_instance.hugo_entrez_map is None or - portal_instance.alias_entrez_map is None): - logger.warning('Skipping validations relating to gene identifiers and ' - 'aliases defined in the portal') - if (portal_instance.gene_set_list is None or - portal_instance.geneset_version is None): - logger.warning('Skipping validations relating to gene set identifiers') - if portal_instance.gene_panel_list is None: - logger.warning('Skipping validations relating to gene panel identifiers') - - # walk over the meta files in the dir and get properties of the study - (validators_by_meta_type, - defined_case_list_fns, - study_cancer_type, - study_id, - stable_ids, - tags_file_path) = process_metadata_files(study_dir, portal_instance, logger, relaxed_mode, strict_maf_checks) - - # first parse and validate cancer type files - studydefined_cancer_types = [] - if cbioportal_common.MetaFileTypes.CANCER_TYPE in validators_by_meta_type: - cancer_type_validators = validators_by_meta_type[ - cbioportal_common.MetaFileTypes.CANCER_TYPE] - if len(cancer_type_validators) > 1: - logger.error( - 'Multiple cancer type files detected', - extra={'cause': ', '.join( - validator.filenameShort for validator in - validators_by_meta_type[ - cbioportal_common.MetaFileTypes.CANCER_TYPE])}) - else: - cancer_type_validators[0].validate() - studydefined_cancer_types = ( - cancer_type_validators[0].defined_cancer_types) - DEFINED_CANCER_TYPES = studydefined_cancer_types - - # next check the cancer type of the meta_study file - if cbioportal_common.MetaFileTypes.STUDY not in validators_by_meta_type: - logger.error('No valid study file detected') - return - if portal_instance.cancer_type_dict is not None and not ( - study_cancer_type in portal_instance.cancer_type_dict or - study_cancer_type in DEFINED_CANCER_TYPES): - logger.error( - 'Cancer type of study is neither known to the portal nor defined ' - 'in a cancer_type file', - extra={'cause': study_cancer_type}) - - # then validate the clinical data - if cbioportal_common.MetaFileTypes.SAMPLE_ATTRIBUTES not in \ - validators_by_meta_type: - logger.error('No sample attribute file detected') - return - if len(validators_by_meta_type[ - cbioportal_common.MetaFileTypes.SAMPLE_ATTRIBUTES]) > 1: - logger.error( - 'Multiple sample attribute files detected', - extra={'cause': ', '.join( - validator.filenameShort for validator in - validators_by_meta_type[ - cbioportal_common.MetaFileTypes.SAMPLE_ATTRIBUTES])}) - - # parse the data file(s) that define sample IDs valid for this study - defined_sample_ids = None - for sample_validator in validators_by_meta_type[ - cbioportal_common.MetaFileTypes.SAMPLE_ATTRIBUTES]: - sample_validator.validate() - if sample_validator.fileCouldBeParsed: - if defined_sample_ids is None: - defined_sample_ids = set() - # include parsed sample IDs in the set (union) - defined_sample_ids |= sample_validator.sampleIds - # this will be set if a file was successfully parsed - if defined_sample_ids is None: - logger.error("Sample file could not be parsed. Please fix " - "the problems found there first before continuing.") - if not relaxed_mode: - return - DEFINED_SAMPLE_IDS = defined_sample_ids - DEFINED_SAMPLE_ATTRIBUTES = sample_validator.defined_attributes - PATIENTS_WITH_SAMPLES = sample_validator.patient_ids - - if len(validators_by_meta_type.get( - cbioportal_common.MetaFileTypes.PATIENT_ATTRIBUTES, - [])) > 1: - logger.error( - 'Multiple patient attribute files detected', - extra={'cause': ', '.join( - validator.filenameShort for validator in - validators_by_meta_type[ - cbioportal_common.MetaFileTypes.PATIENT_ATTRIBUTES])}) - - # validate resources definition before validate the other resources data - if cbioportal_common.MetaFileTypes.RESOURCES_DEFINITION in validators_by_meta_type: - if len(validators_by_meta_type[ - cbioportal_common.MetaFileTypes.RESOURCES_DEFINITION]) > 1: - logger.error( - 'Multiple resource definition files detected', - extra={'cause': ', '.join( - validator.filenameShort for validator in - validators_by_meta_type[ - cbioportal_common.MetaFileTypes.RESOURCES_DEFINITION])}) - for resources_definition_validator in validators_by_meta_type[ - cbioportal_common.MetaFileTypes.RESOURCES_DEFINITION]: - resources_definition_validator.validate() - RESOURCE_DEFINITION_DICTIONARY = resources_definition_validator.resource_definition_dictionary - - # then validate the resource data if exist - if cbioportal_common.MetaFileTypes.SAMPLE_RESOURCES in validators_by_meta_type: - if len(validators_by_meta_type[ - cbioportal_common.MetaFileTypes.SAMPLE_RESOURCES]) > 1: - logger.error( - 'Multiple sample resources files detected', - extra={'cause': ', '.join( - validator.filenameShort for validator in - validators_by_meta_type[ - cbioportal_common.MetaFileTypes.SAMPLE_RESOURCES])}) - - # parse the data file(s) that define sample IDs valid for this study - defined_resource_sample_ids = None - for sample_validator in validators_by_meta_type[ - cbioportal_common.MetaFileTypes.SAMPLE_RESOURCES]: - sample_validator.validate() - if sample_validator.fileCouldBeParsed: - if defined_resource_sample_ids is None: - defined_resource_sample_ids = set() - # include parsed sample IDs in the set (union) - defined_resource_sample_ids |= sample_validator.sampleIds - # this will be set if a file was successfully parsed - if defined_resource_sample_ids is None: - logger.error("Sample file could not be parsed. Please fix " - "the problems found there first before continuing.") - if not relaxed_mode: - return - RESOURCE_PATIENTS_WITH_SAMPLES = sample_validator.patient_ids - - if cbioportal_common.MetaFileTypes.PATIENT_RESOURCES in validators_by_meta_type: - if len(validators_by_meta_type.get( - cbioportal_common.MetaFileTypes.PATIENT_RESOURCES, - [])) > 1: - logger.error( - 'Multiple patient resources files detected', - extra={'cause': ', '.join( - validator.filenameShort for validator in - validators_by_meta_type[ - cbioportal_common.MetaFileTypes.PATIENT_RESOURCES])}) - - # then validate the study tags YAML file if it exists - if tags_file_path is not None: - validateStudyTags(tags_file_path, logger=logger) - - # validate the case list directory if present - case_list_dirname = os.path.join(study_dir, 'case_lists') - if not os.path.isdir(case_list_dirname): - logger.info("No directory named 'case_lists' found, so assuming no custom case lists.") - else: - # add case lists IDs defined in the directory to any previous ones - defined_case_list_fns = processCaseListDirectory( - case_list_dirname, study_id, logger, - prev_stableid_files=defined_case_list_fns) - - validate_defined_caselists( - study_id, list(defined_case_list_fns.keys()), - file_types=list(validators_by_meta_type.keys()), - logger=logger) - - # Validate the gene panel matrix file. This file is depending on clinical and case list data. - if cbioportal_common.MetaFileTypes.GENE_PANEL_MATRIX in validators_by_meta_type: - if len(validators_by_meta_type[cbioportal_common.MetaFileTypes.GENE_PANEL_MATRIX]) > 1: - logger.error('Multiple gene panel matrix files detected') - else: - # pass stable_ids to data file - validators_by_meta_type[cbioportal_common.MetaFileTypes.GENE_PANEL_MATRIX][0].validate() - - # next validate all other data files - for meta_file_type in sorted(validators_by_meta_type): - # skip cancer type and clinical files, they have already been validated - if meta_file_type in (cbioportal_common.MetaFileTypes.CANCER_TYPE, - cbioportal_common.MetaFileTypes.SAMPLE_ATTRIBUTES, - cbioportal_common.MetaFileTypes.RESOURCES_DEFINITION, - cbioportal_common.MetaFileTypes.SAMPLE_RESOURCES, - cbioportal_common.MetaFileTypes.GENE_PANEL_MATRIX): - continue - for validator in sorted( - validators_by_meta_type[meta_file_type], - key=lambda validator: validator and validator.filename): - # if there was no validator for this meta file - if validator is None: - continue - validator.validate() - - # additional validation between meta files, after all meta files are processed - validate_data_relations(validators_by_meta_type, logger) - - logger.info('Validation complete') - - -def get_pom_path(): - """ - Get location of pom.xml. In system and integration test this is mocked. - """ - pom_path = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))))) + "/pom.xml" - return pom_path - -def main_validate(args): - - """Main function: process parsed arguments and validate the study.""" - # get a logger to emit messages - logger = logging.getLogger(__name__) - logger.setLevel(logging.DEBUG) - exit_status_handler = MaxLevelTrackingHandler() - logger.addHandler(exit_status_handler) - - # process the options - study_dir = args.study_directory - server_url = args.url_server - - html_output_filename = args.html_table - relaxed_mode = args.relaxed_clinical_definitions - strict_maf_checks = args.strict_maf_checks - - # determine the log level for terminal and html output - output_loglevel = logging.INFO - if args.verbose: - output_loglevel = logging.DEBUG - - # check existence of directory - if not os.path.exists(study_dir): - print('directory cannot be found: ' + study_dir, file=sys.stderr) - return 2 - - # set default message handler - text_handler = logging.StreamHandler(sys.stdout) - text_handler.setFormatter( - cbioportal_common.LogfileStyleFormatter(study_dir)) - collapsing_text_handler = cbioportal_common.CollapsingLogMessageHandler( - capacity=5e5, - flushLevel=logging.CRITICAL, - target=text_handler) - collapsing_text_handler.setLevel(output_loglevel) - logger.addHandler(collapsing_text_handler) - - collapsing_html_handler = None - html_handler = None - # add html table handler if applicable - if html_output_filename: - # just to make sure users get dependency error at start: - import jinja2 # pylint: disable=import-error - - html_handler = Jinja2HtmlHandler( - study_dir, - html_output_filename, - capacity=1e5) - # TODO extend CollapsingLogMessageHandler to flush to multiple targets, - # and get rid of the duplicated buffering of messages here - collapsing_html_handler = cbioportal_common.CollapsingLogMessageHandler( - capacity=5e5, - flushLevel=logging.CRITICAL, - target=html_handler) - collapsing_html_handler.setLevel(output_loglevel) - logger.addHandler(collapsing_html_handler) - - if args.error_file: - errfile_handler = logging.FileHandler(args.error_file, 'w') - errfile_handler.setFormatter(ErrorFileFormatter(study_dir)) - # TODO extend CollapsingLogMessageHandler to flush to multiple targets, - # and get rid of the duplicated buffering of messages here - coll_errfile_handler = cbioportal_common.CollapsingLogMessageHandler( - capacity=5e5, - flushLevel=logging.CRITICAL, - target=errfile_handler) - coll_errfile_handler.setLevel(logging.WARNING) - coll_errfile_handler.addFilter(LineMessageFilter()) - logger.addHandler(coll_errfile_handler) - - # load portal-specific information - if args.no_portal_checks: - portal_instance = PortalInstance(portal_info_dict=None, - cancer_type_dict=None, - hugo_entrez_map=None, - alias_entrez_map=None, - gene_set_list=None, - gene_panel_list=None, - geneset_version =None) - elif args.portal_info_dir: - portal_instance = load_portal_info(args.portal_info_dir, logger, - offline=True) - else: - portal_instance = load_portal_info(server_url, logger) - - # set portal version - cbio_version = portal_instance.portal_version - - validate_study(study_dir, portal_instance, logger, relaxed_mode, strict_maf_checks) - - if html_handler is not None: - # flush logger and generate HTML while overriding cbio_version after retrieving it from the API - collapsing_html_handler.flush() - html_handler.generateHtml(cbio_version=cbio_version) - - return exit_status_handler.get_exit_status() - - -def _get_column_index(parts, name): - for i, part in enumerate(parts): - if name == part: - return i - return -1 - - -if __name__ == '__main__': - try: - # parse command line options - parsed_args = interface() - # run the script - exit_status = main_validate(parsed_args) - finally: - logging.shutdown() - del logging._handlerList[:] # workaround for harmless exceptions on exit - print(('Validation of study {status}.'.format( - status={0: 'succeeded', - 1: 'failed', - 2: 'not performed as problems occurred', - 3: 'succeeded with warnings'}.get(exit_status, 'unknown'))), file=sys.stderr) - sys.exit(exit_status) diff --git a/core/src/main/scripts/importer/validateStudies.py b/core/src/main/scripts/importer/validateStudies.py deleted file mode 100755 index 1b7d9a8b0d5..00000000000 --- a/core/src/main/scripts/importer/validateStudies.py +++ /dev/null @@ -1,195 +0,0 @@ -#!/usr/bin/env python3 - -""" -Copyright (c) 2018 The Hyve B.V. -This code is licensed under the GNU Affero General Public License (AGPL), -version 3, or (at your option) any later version. -""" - -import argparse -import os -import traceback -import tempfile -import datetime -import sys -import subprocess - -def main(args): - """Process arguments and run validation""" - - # Set variables for directory and list of studies - root_dir = args.root_directory - studies = args.list_of_studies - - # If studies are filled in, create a list - if studies is not None: - list_studies = [str(study) for study in studies.split(',')] - - # Get all studies in root directory if no list of studies is defined - if root_dir is not None and studies is None: - list_studies = [] - for study_dir in os.listdir(root_dir): - if os.path.isdir(os.path.join(root_dir, study_dir)): - list_studies.append(os.path.join(root_dir, study_dir)) - - # When both root directory and list of studies are given, create list of study files - if root_dir is not None and studies is not None and os.path.dirname != "normals": - list_studies = [os.path.join(root_dir, study) for study in list_studies] - - # Get current date and time to write to logfilename - d_date = datetime.datetime.now() - reg_format_date = d_date.strftime("%Y-%m-%d_%H:%M") - only_logfilename = 'log-validate-studies-' + reg_format_date + '.txt' - - # When html folder is given as input, check if html folder exists, otherwise create folder - # Also, when html folder is defined the logfile is written to this folder as well, otherwise to /tmp - output_folder = args.html_folder - if output_folder is not None: - if not os.path.exists(output_folder): - print("HTML output folder did not exist, so is created: %s" % output_folder) - os.makedirs(output_folder) - logfilename = os.path.join(output_folder, only_logfilename) - else: - # Get systems temp directory and write log file - logfilename = os.path.join(tempfile.gettempdir(), only_logfilename) - print('\nWriting validation logs to: {}'.format(logfilename)) - - # Make dictionary of possible exit status from validateData and values that should be printed in the console - # when these exit statuses occur - possible_exit_status = {0: 'VALID', 1: 'INVALID', 2: 'INVALID (PROBLEMS OCCURRED)', 3: 'VALID (WITH WARNINGS)'} - # This script can have two possible exit statuses 0 or 1. The validation exit status from this script - # will become 1 when one of the studies fails validation. This will be when validateData has for at - # least one of the studies validated exit status 1 or 2 or when another error occurred during the validation - validation_exit_status = 0 - # Go through list of studies and run validation - for study in list_studies: - # Write to stdout and log file that we are validating this particular study - print("\n=== Validating study %s" %study) - - # Check which portal info variable is given as input, and set correctly in the arguments for validateData - if args.portal_info_dir is not None: - validator_args = ['-v', '--study_directory', study, '-p', args.portal_info_dir] - elif args.no_portal_checks: - validator_args = ['-v', '--study_directory', study, '-n'] - else: - validator_args = ['-v', '--study_directory', study, '-u', args.url_server] - - # Append argument for portal properties file if given at input - if args.portal_properties is not None: - validator_args.append('-P') - validator_args.append(args.portal_properties) - - # Append argument for strict mode when supplied by user - if args.strict_maf_checks is not False: - validator_args.append('-m') - - # When HTML file is required, create html file name and add to arguments for validateData - if output_folder is not None: - try: - html = "" - # Look in meta_study file for study name to add to name of validation report - with open(os.path.join(study, "meta_study.txt"), 'r') as meta_study: - for line in meta_study: - if 'cancer_study_identifier' in line: - study_identifier = line.split(':')[1].strip() - html = study_identifier + "-validation.html" - # If in the meta_study file no cancer_study_identifier could be found append study name from input - if html == "": - only_study = study.split("/")[-1] - html = only_study + "-validation.html" - - # Add path to HTML file name and add to arguments for validateData - html_file = os.path.join(output_folder, html) - validator_args.append('--html') - validator_args.append(html_file) - - # Exception can be thrown when the supplied study folder does not exist, when there is no meta_study - # file or when there is no cancer_study_identifier and it will not create the HTML file at all. - except: - var_traceback = traceback.format_exc() - print('\x1b[31m' + "Error occurred during creating html file name:") - print(var_traceback) - print("Validation from study " + study + " will not be written to HTML file" + '\x1b[0m') - - # Get the path to the validator , in the same directory as this script - validation_script = os.path.join( - os.path.dirname(os.path.realpath(__file__)), - 'validateData.py') - # Run validateData on this study and get the exit status - try: - with open(logfilename, 'a') as log_file: - log_file.write('=== Validation study: {}\n'.format(study)) - log_file.flush() - exit_status_study = subprocess.call( - [sys.executable, '--', validation_script] + validator_args, - stdout=log_file) - # If opening the log file or executing the script failed, - except OSError: - # Output the Python stack trace for the error - traceback.print_exc(file=sys.stdout) - # And mark this run as not validated - exit_status_study = 2 - - # Check exit status and print result - exit_status_message = possible_exit_status.get(exit_status_study, 'Unknown status: {}'.format(exit_status_study)) - if exit_status_study == 0 or exit_status_study == 3: - print('\x1b[0m' + "Result: %s" % exit_status_message) - else: - print('\x1b[0m' + "Result: " + '\x1b[31m' + exit_status_message + '\x1b[0m') - validation_exit_status = 1 # When invalid check the exit status to one, for failing circleCI - - return validation_exit_status - - -def interface(args=None): - """Parse arguments from input""" - - parser = argparse.ArgumentParser(description='Wrapper where cBioPortal study validator is run for multiple studies') - parser.add_argument('-d', '--root-directory', - type=str, help='Path to directory with all studies that should be validated') - parser.add_argument('-l', '--list-of-studies', - type=str, help='List with paths of studies which should be validated') - parser.add_argument('-html', '--html-folder', - type=str, help='Path to folder for output HTML reports') - # Only one of the portal arguments can be given, therefore set as mutually exclusive group - portal_mode_group = parser.add_mutually_exclusive_group() - portal_mode_group.add_argument('-u', '--url_server', - type=str, - default='http://localhost:8080', - help='URL to cBioPortal server. You can ' - 'set this if your URL is not ' - 'http://localhost:8080') - portal_mode_group.add_argument('-p', '--portal_info_dir', - type=str, - help='Path to a directory of cBioPortal ' - 'info files to be used instead of ' - 'contacting a server') - portal_mode_group.add_argument('-n', '--no_portal_checks', - action='store_true', - help='Skip tests requiring information ' - 'from the cBioPortal installation') - parser.add_argument('-P', '--portal_properties', type=str, - help='portal.properties file path (default: assumed hg19)', - required=False) - - parser.add_argument('-m', '--strict_maf_checks', required=False, - action='store_true', default=False, - help='Option to enable strict mode for validator when ' - 'validating mutation data') - - args = parser.parse_args(args) - - # Check if -d or -l was given as input, otherwise let the parser give an error and stop - if not (args.root_directory or args.list_of_studies): - parser.error('No action requested, add -d or -l') - - return args - - -if __name__ == '__main__': - parsed_args = interface() - exit_status = main(parsed_args) - - print("\n\nOverall exit status: %s" %exit_status) - sys.exit(exit_status) - diff --git a/core/src/main/scripts/importer/validation_report_template.html.jinja b/core/src/main/scripts/importer/validation_report_template.html.jinja deleted file mode 100644 index 228fb08a95a..00000000000 --- a/core/src/main/scripts/importer/validation_report_template.html.jinja +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - - - - - - cBioPortal validation report: study in '{{ study_dir }}' - - - - - -

    -
    -
    -

    cBioPortal validation report

    -

    Study directory:
    {{ study_dir }}

    -

    For details, please see the documentation on file formats supported by cBioPortal

    -

    cBioPortal version {{ cbio_version }}

    -
    -
    - - {% macro level_icon(level) %} - {% set glyphicon_name = { - 'danger': 'glyphicon-remove', - 'warning': 'glyphicon-warning-sign', - 'success': 'glyphicon-ok', - 'info': 'glyphicon-cog'}[level] %} - {% set glyphicon_alt = { - 'danger': 'Error', - 'warning': 'Warning', - 'success': 'Info', - 'info': 'Debug'}[level] -%} - {{ glyphicon_alt }} - {%- endmacro %} - -
    -
    - {% if max_level in ['ERROR','CRITICAL'] %} - {% set study_level = 'danger' %} - {% elif max_level == 'WARNING' %} - {% set study_level = 'warning' %} - {% elif max_level == 'INFO' %} - {% set study_level = 'success' %} - {% else %} - {% set study_level = 'info' %} - {% endif %} -
    - Validation status: - - {% if study_level == 'danger' %} - Failed - {% elif study_level == 'warning' %} - Please check - {% elif study_level == 'success' %} - Success - {% else %} - Unknown - {% endif %} - -
    - -
    - {% macro generate_group_html(filename, file_record_list) %} - {% set file_level_list = file_record_list|map(attribute='levelname')|list %} - {% if 'ERROR' in file_level_list or 'CRITICAL' in file_level_list %} - {% set file_level = 'danger' %} - {% elif 'WARNING' in file_level_list %} - {% set file_level = 'warning' %} - {# I can't think of a way to check if any values are not INFO right now #} - {% elif 'INFO' in file_level_list %} - {% set file_level = 'success' %} - {% else %} - {% set file_level = 'info' %} - {% endif %} -
    - -
    -
    - - - - - - - - - - - - - {% for record in file_record_list %} - {% if record.levelname == 'ERROR' or record.levelname == 'CRITICAL' %} - {% set record_class = 'danger' %} - {% elif record.levelname == 'WARNING' %} - {% set record_class = 'warning' %} - {% elif record.levelname == 'INFO' %} - {% set record_class = 'success' %} - {% else %} - {% set record_class = 'info' %} - {% endif %} - - {% macro format_aggregated(record, attr_name) %} - {% if record[attr_name + '_list'] is defined -%} - {% if (record['show_all_values'] is not defined or record['show_all_values'] == False) and (record[attr_name + '_list']|length) > 3 -%} - {{ record[attr_name + '_list'][:3]|join(', ')|e }}{{ '…' }} - {%- else -%} - {{ (record[attr_name + '_list']|join(', '))|e }} - {%- endif %} - {%- elif record[attr_name] is defined -%} - {{ record[attr_name]|e }} - {%- else -%} - – - {%- endif %} - {% endmacro %} - - - {% if record['column_name_list'] is defined or record['column_name'] is defined %} - - {% else %} - - {% endif %} - - - {% macro create_modal(filename, record, attr_name, num_record) %} - {% if record[attr_name + '_list'] is defined -%} - {% if (record['show_all_values'] is not defined or record['show_all_values'] == False) and (record[attr_name + '_list']|length) > 3 -%} - - {% set num_values = record[attr_name + '_list']|length|string %} - {% set modal_name = "modal" + filename.rsplit('.', 1)[0] + num_record + attr_name %} - See all {{ num_values }} values - -
    Line NumberColumn NumberMessageValue Encountered
    {{ level_icon(record_class) }}{{ format_aggregated(record, 'line_number') }}{{ format_aggregated(record, 'column_number') }}
    Column names: {{ format_aggregated(record, 'column_name') }}
    {{ format_aggregated(record, 'column_number') }}{{ record.getMessage()|e }}{{ format_aggregated(record, 'cause') }}
    - - - - - - - - - {% for value in record[attr_name + '_list'] %} - - - - - - {% endfor %} - -
    Line NumberColumn NumberValue Encountered
    {{ value[0]|e if value[0] is not none else '–' }}{{ value[1]|e if value[1] is not none else '–' }}{{ value[2]|e if value[2] is not none else '–' }}
    -
    -
    -
    -
    - {%- endif %} - {%- endif %} - {% endmacro %} - {{ create_modal(filename, record, 'value', loop.index|string) }} - - {% endfor %} - - -
    -
    -
    - - {% endmacro %} - {% set fileless_record_list = record_list|selectattr('filename_', 'undefined')|list -%} - {{ generate_group_html('General', fileless_record_list) }} - {% set filerelated_record_list = record_list|selectattr('filename_', 'defined') %} - {% for file_record_group in filerelated_record_list|groupby('filename_') -%} - {{ generate_group_html( - file_record_group.grouper.strip()|os.path.relpath(study_dir), - file_record_group.list) }} - {%- endfor %} - - - - -
    -
    -

    Legend

    -
    -
    -

    - Click on a filename below to see a table of messages about the data - in the file. The colors in the tables have the following meanings: -

    - - - - - - - - - - - - - - - - - - - -
    {{ level_icon('danger') }}Error: cBioPortal will not know how to load this, please revise or remove
    {{ level_icon('warning') }}Warning: possible cause of confusion, please check whether this is intended
    {{ level_icon('success') }}Info: this looks good, no action required
    {{ level_icon('info') }}Verbose output: details on the progress of the validation script
    -
    -
    - - - diff --git a/core/src/main/scripts/init.sh b/core/src/main/scripts/init.sh deleted file mode 100755 index dec485af4c7..00000000000 --- a/core/src/main/scripts/init.sh +++ /dev/null @@ -1,21 +0,0 @@ -# First, verify if all symbols in the sample genesets are latest -#./verifyGeneSets.pl $PORTAL_DATA_HOME/reference-data/human-genes.txt - -# Clear the Database -./resetDb.pl - -# Load up Entrez Genes -./importGenes.pl $PORTAL_DATA_HOME/reference-data/human-genes.txt $PORTAL_DATA_HOME/reference-data/id_mapping_mirbase.txt $PORTAL_DATA_HOME/reference-data/all_exon_loci.bed - -# Load up Cancer Types -./importTypesOfCancer.pl $PORTAL_DATA_HOME/reference-data/public-cancers.txt - -# Network -./loadNetwork.sh - -# Drug -./importPiHelperData.pl - -# Cosmic -# ./prepareCosmicData.sh -./importCosmicData.pl $PORTAL_DATA_HOME/reference-data/CosmicCodingMuts.vcf diff --git a/core/src/main/scripts/loadNetwork.sh b/core/src/main/scripts/loadNetwork.sh deleted file mode 100755 index b9169c0f636..00000000000 --- a/core/src/main/scripts/loadNetwork.sh +++ /dev/null @@ -1,5 +0,0 @@ -./importHprd.pl $PORTAL_DATA_HOME/reference-data/network/HPRD.tsv -#./importSif.pl $PORTAL_DATA_HOME/reference-data/network/cell-map.sif CELLMAP -#./importSif.pl $PORTAL_DATA_HOME/reference-data/network/nci-nature.sif NCI_NATURE -#./importSif.pl $PORTAL_DATA_HOME/reference-data/network/reactome.sif REACTOME -./importSif.pl $PORTAL_DATA_HOME/reference-data/network/reactome.sif REACTOME diff --git a/core/src/main/scripts/loadSampleData.sh b/core/src/main/scripts/loadSampleData.sh deleted file mode 100755 index e38bcfdd4da..00000000000 --- a/core/src/main/scripts/loadSampleData.sh +++ /dev/null @@ -1,42 +0,0 @@ -################################################# -# Inits and Loads a Small Subset of GBM Data -# -# This script loads up sample data located in: -# portal/sample_data -################################################# - -SAMPLE_DATA=$PORTAL_HOME/portal/src/main/resources/sample_data -TEST_DATA=$PORTAL_HOME/portal/src/test/resources - -# Clear the Database -./resetDb.pl - -# Load up Entrez Genes -./importGenes.pl $SAMPLE_DATA/genes/human_genes.txt - -# Load Entrez Gene ID --> UniProt ID mapping -./importUniProtIdMapping.pl $SAMPLE_DATA/genes/uniprot_id_mapping.txt - -# Load up All Cancer Types -./importTypesOfCancer.pl $SAMPLE_DATA/cancers.txt - -# Load up the GBM Meta Data File -./importCancerStudy.pl $SAMPLE_DATA/gbm/gbm.txt - -# Load Cases and Clinical Data -./importCaseList.pl $SAMPLE_DATA/gbm/case_lists -./importClinicalData.pl $SAMPLE_DATA/gbm/GBM_clinical_portal_20110210.txt gbm - -# Load Mutation Data -./importProfileData.pl --data $SAMPLE_DATA/gbm/data_mutations_MAF.txt --meta $SAMPLE_DATA/gbm/meta_mutations_MAF.txt --dbmsAction clobber - -# Load CNA Data -./importProfileData.pl --data $SAMPLE_DATA/gbm/data_CNA_consensus.txt --meta $SAMPLE_DATA/gbm/meta_CNA_consensus.txt --dbmsAction clobber - -# Load network data -#./importSif.pl $SAMPLE_DATA/network/cell-map.sif CELLMAP -#./importSif.pl $SAMPLE_DATA/network/nci-nature.sif NCI_NATURE -./importSif.pl $SAMPLE_DATA/network/reactome.sif REACTOME - -# Load MutSig data -./importMutSig.pl $TEST_DATA/test_mut_sig_data.txt $TEST_DATA/testCancerStudy.txt diff --git a/core/src/main/scripts/massagePortalDataForCancerStudies.pl b/core/src/main/scripts/massagePortalDataForCancerStudies.pl deleted file mode 100644 index 0c62da1b481..00000000000 --- a/core/src/main/scripts/massagePortalDataForCancerStudies.pl +++ /dev/null @@ -1,231 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; -use File::Spec; -use File::Util; -use Data::Dumper; -use File::Temp qw/ tempfile /; - -# root -my $rootDir = File::Spec->catfile( File::Spec->updir(), File::Spec->curdir(), qw( data ) ); -# $rootDir = '/tmp/data'; - -my $fileUtil = File::Util->new(); -my $cancers = File::Spec->catfile( $rootDir, qw( cancers.txt ) ); -my @cancersFile = $fileUtil->load_file( $cancers, '--as-lines'); -my $cancerTypes = {}; -foreach my $cancer (@cancersFile){ - my( $ctype, $desc) = split( /:/, $cancer ); - $ctype =~ s/^\s+//; - $ctype =~ s/\s+$//; - $cancerTypes->{$ctype} = 1; -} - -# find files -# for files of form (cancer_name/cancer_name).txt: -my @allFiles = $fileUtil->list_dir( $rootDir, '--recurse', '--files-only' ); -my @studyFiles; -foreach my $f (@allFiles){ - if( $f =~ m|/(\w+).txt$| ){ - if( $f =~ m|$1/$1.txt$| ){ - push @studyFiles, $f; - } - } -} - -# cancer_type_id: BC => type_of_cancer: \1 -# cancer_type_id: BC => cancer_study_identifier: \1_portal -# check that cancer_name is in cancers -my $cnMap = { - 'BC' => 'brca', - 'Sarc' => 'sarc', - 'ova' => 'ov', - 'pca' => 'PRAD' -}; -foreach my $sf (@studyFiles){ - print "$sf\n"; - my $studyFile = $fileUtil->load_file( $sf ); - my $t = $studyFile; - if( $studyFile =~ /cancer_type_id\s*:\s*(\w+)/ ){ - my $ct = toCT( $1 ); - my $stu_id = toCT( $1 ) . '_portal'; - $studyFile =~ s/cancer_type_id\s*:\s*(\w+)/type_of_cancer: $ct\ncancer_study_identifier: $stu_id/; - # print "changing:\n$t\nto:\n$studyFile\n"; - print "changing: '$sf' => type_of_cancer: $ct, cancer_study_identifier: $stu_id\n"; - } - $fileUtil->write_file('file' => $sf, 'content' => $studyFile ); -} - -# cancer_type_id: BC => cancer_study_identifier: \1_portal -foreach my $fn (@allFiles){ - open my $fh, "<", "$fn" or die $!; - my ($tempFH, $tempFile) = tempfile(); - - # file - while( my $line = <$fh> ){ - my $t = $line; - if( $line =~ /cancer_type_id\s*:\s*(\w+)/ ){ - my $stu_id = toCT( $1 ) . '_portal'; - $line =~ s/cancer_type_id\s*:\s*(\w+)/cancer_study_identifier: $stu_id/; - print "changing: '$fn' => cancer_study_identifier: $stu_id\n"; -# print "changing:\n$t\nto:\n$line\n"; - } - print $tempFH $line; - } - - close $fh; - close $tempFH; - system( "mv $tempFile $fn"); -} - -sub toCT{ - my( $ct ) = @_; - if( $cnMap->{$ct} ){ - $ct = $cnMap->{$ct}; - } - $ct = uc( $ct ); - unless( exists( $cancerTypes->{$ct} ) ) { - warn "$ct not in cancer types\n"; - } - return $ct; -} - -## CHANGES: -# ../data/breast/breast.txt -# changing: '../data/breast/breast.txt' => type_of_cancer: BRCA, cancer_study_identifier: BRCA_portal -# ../data/gbm/gbm.txt -# changing: '../data/gbm/gbm.txt' => type_of_cancer: GBM, cancer_study_identifier: GBM_portal -# ../data/ovarian/ovarian.txt -# changing: '../data/ovarian/ovarian.txt' => type_of_cancer: OV, cancer_study_identifier: OV_portal -# ../data/prostate/prostate.txt -# changing: '../data/prostate/prostate.txt' => type_of_cancer: PRAD, cancer_study_identifier: PRAD_portal -# ../data/sarcoma/sarcoma.txt -# changing: '../data/sarcoma/sarcoma.txt' => type_of_cancer: SARC, cancer_study_identifier: SARC_portal -# changing: '../data/breast/case_lists/cases_DBCG.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_DBCG_mRNA.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_DCIS.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_DCIS_ERneg.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_DCIS_ERpos.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_FW.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_FW_mRNA.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_IDC_T1.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_IDC_T1_ERneg.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_IDC_T1_ERpos.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_IDC_T2.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_IDC_T2_ERneg.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_IDC_T2_ERpos.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_IDC_T3.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_IDC_T3_ERneg.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_IDC_T3_ERpos.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_MDG.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_MDG_mRNA.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_MicMa.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_MicMa_mRNA.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_Normal.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_PIK3CA_Sequenced.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_ULL.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_ULL_mRNA.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_all.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/case_lists/cases_tumors.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/meta_aCGH.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/meta_mRNA_DBCG.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/meta_mRNA_DBCG_Z.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/meta_mRNA_FW_MDG.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/meta_mRNA_MicMa.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/meta_mRNA_ULL.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/breast/meta_mutations.txt' => cancer_study_identifier: BRCA_portal -# changing: '../data/gbm/case_lists/cases_all.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/case_lists/cases_all_three.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/case_lists/cases_expression_classical.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/case_lists/cases_expression_mesenchymal.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/case_lists/cases_expression_neural.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/case_lists/cases_expression_proneural.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/case_lists/cases_seq_manuscript.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/case_lists/cases_seq_no_hypermut.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/case_lists/cases_seq_not_treated.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/case_lists/cases_seq_treated.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/data_clinical.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/meta_CNA_RAE.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/meta_CNA_consensus.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/meta_mRNA.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/meta_mRNA_ZbyDiploidTumors.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/meta_miRNA.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/meta_mutations.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/gbm/meta_mutations_MAF.txt' => cancer_study_identifier: GBM_portal -# changing: '../data/ovarian/case_lists/cases_CGH.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_all.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_complete.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_expression_cluster1.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_expression_cluster2.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_expression_cluster3.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_expression_cluster4.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_mRNA.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_methylation_cluster1.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_methylation_cluster2.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_methylation_cluster3.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_methylation_cluster4.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_normal_mRNA.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_protein.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/case_lists/cases_sequenced.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_CNA.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_CNA_RAE.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_brca1_binary_methylation.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_mRNA_median.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_mRNA_median_Zscores.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_mRNA_unified.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_mRNA_unified_Zscores.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_methylation.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_miRNA.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_miRNA_median_Zscores.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_mutations.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_mutations_BRCA.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_mutations_extended.txt' => cancer_study_identifier: OV_portal -# changing: '../data/ovarian/meta_protein.txt' => cancer_study_identifier: OV_portal -# changing: '../data/prostate/case_lists/cases_all_list.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_all_three.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_cell_lines.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_cluster1.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_cluster2.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_cluster3.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_cluster4.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_cluster5.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_cluster6.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_copy_number_nonflat.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_flat.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_mRNA.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_mRNA_mets.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_mRNA_primaries.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_mRNA_tumors.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_metastatic.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_metastatic_castrate.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_metastatic_non-castrate.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_miRNA.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_normal_mRNA.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_primary.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_sequenced_all.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_sequenced_w_normal.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/case_lists/cases_tumors.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/meta_CNA.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/meta_mRNA.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/meta_mRNA_ZbyNorm.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/meta_mRNA_outliers.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/meta_miRNA.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/meta_miRNA_ZbyNorm.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/meta_miRNA_outliers.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/prostate/meta_mutations.txt' => cancer_study_identifier: PRAD_portal -# changing: '../data/sarcoma/case_lists/cases_DDLPS.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/case_lists/cases_GIST.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/case_lists/cases_LMS.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/case_lists/cases_MFH.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/case_lists/cases_MYXOID.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/case_lists/cases_PLEO.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/case_lists/cases_SYNOVIAL.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/case_lists/cases_all.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/case_lists/cases_all_tumors.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/case_lists/cases_normal_fat.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/meta_CNA.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/meta_mrna.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/meta_mrna_ZbyNormals.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/meta_mrna_outlier.txt' => cancer_study_identifier: SARC_portal -# changing: '../data/sarcoma/meta_mutations.txt' => cancer_study_identifier: SARC_portal diff --git a/core/src/main/scripts/migrate_db.py b/core/src/main/scripts/migrate_db.py deleted file mode 100755 index 6ae0463d249..00000000000 --- a/core/src/main/scripts/migrate_db.py +++ /dev/null @@ -1,453 +0,0 @@ -#!/usr/bin/env python3 - -import os -import re -import sys -import contextlib -import argparse -from collections import OrderedDict - -from importer.cbioportal_common import get_database_properties, get_db_cursor - -import MySQLdb -from pathlib import Path - -# globals -ERROR_FILE = sys.stderr -OUTPUT_FILE = sys.stdout -VERSION_TABLE = 'info' -VERSION_FIELD = 'DB_SCHEMA_VERSION' -ALLOWABLE_GENOME_REFERENCES = ['37', 'hg19', 'GRCh37', '38', 'hg38', 'GRCh38', 'mm10', 'GRCm38'] -DEFAULT_GENOME_REFERENCE = 'hg19' -MULTI_REFERENCE_GENOME_SUPPORT_MIGRATION_STEP = (2, 11, 0) -GENERIC_ASSAY_MIGRATION_STEP = (2, 12, 1) -SAMPLE_FK_MIGRATION_STEP = (2, 12, 9) -FUSIONS_VERBOTEN_STEP = (2, 12, 14) - - -class PortalProperties(object): - """ Properties object class, just has fields for db conn """ - - def __init__(self, database_user, database_pw, database_url): - self.database_user = database_user - self.database_pw = database_pw - self.database_url = database_url - - -def get_db_version(cursor): - """ gets the version number of the database """ - # First, see if the version table exists - version_table_exists = False - try: - cursor.execute('select table_name from information_schema.tables') - for row in cursor.fetchall(): - if VERSION_TABLE == row[0].lower().strip(): - version_table_exists = True - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - return None - if not version_table_exists: - return (0, 0, 0) - # Now query the table for the version number - try: - cursor.execute('select ' + VERSION_FIELD + ' from ' + VERSION_TABLE) - for row in cursor.fetchall(): - version = tuple(map(int, row[0].strip().split('.'))) - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - return None - return version - - -def is_version_larger(version1, version2): - """ Checks if version 1 is larger than version 2 """ - if version1[0] > version2[0]: - return True - if version2[0] > version1[0]: - return False - if version1[1] > version2[1]: - return True - if version2[1] > version1[1]: - return False - if version1[2] > version2[2]: - return True - return False - - -def is_version_equal(version1, version2): - """ Checks if version 1 is equal to version 2""" - return version1[0] == version2[0] and version1[1] == version2[1] and version1[2] == version2[2] - - -def print_all_check_reference_genome_warnings(warnings, force_migration): - """ Format warnings for output according to mode, and print to ERROR_FILE """ - space = ' ' - indent = 28 * space - allowable_reference_genome_string = ','.join(ALLOWABLE_GENOME_REFERENCES) - clean_up_string = ' Please clean up the mutation_event table and ensure it only contains references to one of the valid reference genomes (%s).' % ( - allowable_reference_genome_string) - use_default_string = 'the default reference genome (%s) will be used in place of invalid reference genomes and the first encountered reference genome will be used.' % ( - DEFAULT_GENOME_REFERENCE) - use_force_string = 'OR use the "--force" option to override this warning, then %s' % (use_default_string) - forcing_string = '--force option in effect : %s' % (use_default_string) - for warning in warnings: - if force_migration: - print('%s%s\n%s%s\n' % (indent, warning, indent, forcing_string), file=ERROR_FILE) - else: - print('%s%s%s\n%s%s\n' % (indent, warning, clean_up_string, indent, use_force_string), file=ERROR_FILE) - - -def validate_reference_genome_values_for_study(warnings, ncbi_to_count, study): - """ check if there are unrecognized or varied ncbi_build values for the study, add to warnings if problems are found """ - if len(ncbi_to_count) == 1: - for retrieved_ncbi_build in ncbi_to_count: # single iteration - if retrieved_ncbi_build.upper() not in [x.upper() for x in ALLOWABLE_GENOME_REFERENCES]: - msg = 'WARNING: Study %s contains mutation_event records with unsupported NCBI_BUILD value %s.' % ( - study, retrieved_ncbi_build) - warnings.append(msg) - elif len(ncbi_to_count) > 1: - msg = 'WARNING: Study %s contains mutation_event records with %s NCBI_BUILD values {ncbi_build:record_count,...} %s.' % ( - study, len(ncbi_to_count), ncbi_to_count) - warnings.append(msg) - - -def check_reference_genome(portal_properties, cursor, force_migration): - """ query database for ncbi_build values, aggregate per study, then validate and report problems """ - print('Checking database contents for reference genome information', file=OUTPUT_FILE) - """ Retrieve reference genomes from database """ - warnings = [] - try: - sql_statement = """ - select NCBI_BUILD, count(NCBI_BUILD), CANCER_STUDY_IDENTIFIER - from mutation_event - join mutation on mutation.MUTATION_EVENT_ID = mutation_event.MUTATION_EVENT_ID - join genetic_profile on genetic_profile.GENETIC_PROFILE_ID = mutation.GENETIC_PROFILE_ID - join cancer_study on cancer_study.CANCER_STUDY_ID = genetic_profile.CANCER_STUDY_ID - group by CANCER_STUDY_IDENTIFIER, NCBI_BUILD - """ - cursor.execute(sql_statement) - study_to_ncbi_to_count = {} # {cancer_study_identifier : {ncbi_build : record_count}} - for row in cursor.fetchall(): - retrieved_ncbi_build, ref_count, study = row - if study in study_to_ncbi_to_count: - study_to_ncbi_to_count[study][retrieved_ncbi_build] = ref_count - else: - study_to_ncbi_to_count[study] = {retrieved_ncbi_build: ref_count} - for study in study_to_ncbi_to_count: - validate_reference_genome_values_for_study(warnings, study_to_ncbi_to_count[study], study) - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - sys.exit(1) - if warnings: - print_all_check_reference_genome_warnings(warnings, force_migration) - if not force_migration: - sys.exit(1) - - -def check_and_exit_if_fusions(cursor): - try: - cursor.execute( - """ - SELECT COUNT(*) - FROM mutation_event - WHERE MUTATION_TYPE = "Fusion"; - """) - fusion_count = cursor.fetchone() - if (fusion_count[0] >= 1): - print( - 'Found %i records in the mutation_event table where the mutation_type was "Fusion". The latest database schema does not allow records in the mutation table where mutation_type is set to "Fusion". Studies linked to existing records of this type should be deleted in order to migrate to DB version 2.12.14' % ( - fusion_count), file=ERROR_FILE) - # get the list of studies that need to be cleaned up - cursor.execute( - """ - SELECT cancer_study.CANCER_STUDY_IDENTIFIER, COUNT(mutation.MUTATION_EVENT_ID) - FROM cancer_study, - genetic_profile - LEFT JOIN mutation ON genetic_profile.GENETIC_PROFILE_ID = mutation.GENETIC_PROFILE_ID - LEFT JOIN mutation_event ON mutation.MUTATION_EVENT_ID = mutation_event.MUTATION_EVENT_ID - WHERE - genetic_profile.CANCER_STUDY_ID = cancer_study.CANCER_STUDY_ID - AND mutation_event.MUTATION_TYPE = "Fusion" - GROUP BY cancer_study.CANCER_STUDY_IDENTIFIER - HAVING count(mutation.MUTATION_EVENT_ID) > 0 - """) - rows = cursor.fetchall() - print("The following studies have fusions in the mutation_event table:", file=ERROR_FILE) - for row in rows: - print("\t%s" % (row[0]), file=ERROR_FILE) - sys.exit(1) - - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - sys.exit(1) - - -# TODO: remove this after we update mysql version -def check_and_remove_invalid_foreign_keys(cursor): - try: - # if genetic_alteration_ibfk_2 exists - cursor.execute( - """ - SELECT * - FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS - WHERE CONSTRAINT_TYPE = 'FOREIGN KEY' - AND TABLE_SCHEMA = DATABASE() - AND CONSTRAINT_NAME = 'genetic_alteration_ibfk_2' - """) - rows = cursor.fetchall() - if (len(rows) >= 1): - # if genetic_alteration_fk_2 also exists, delete it - cursor.execute( - """ - SELECT * - FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS - WHERE CONSTRAINT_TYPE = 'FOREIGN KEY' - AND TABLE_SCHEMA = DATABASE() - AND CONSTRAINT_NAME = 'genetic_alteration_fk_2' - """) - rows = cursor.fetchall() - if (len(rows) >= 1): - print('Invalid foreign key found.', file=OUTPUT_FILE) - cursor.execute( - """ - ALTER TABLE `genetic_alteration` DROP FOREIGN KEY genetic_alteration_fk_2; - """) - print('Invalid foreign key has been deleted.', file=OUTPUT_FILE) - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - sys.exit(1) - - -def check_and_remove_type_of_cancer_id_foreign_key(cursor): - """The TYPE_OF_CANCER_ID foreign key in the sample table can be either sample_ibfk_1 or sample_ibfk_2. Figure out which one it is and remove it""" - try: - # if sample_ibfk_1 exists - cursor.execute( - """ - SELECT * - FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS - WHERE CONSTRAINT_SCHEMA = DATABASE() - AND TABLE_NAME = 'sample' - AND REFERENCED_TABLE_NAME = 'type_of_cancer' - AND CONSTRAINT_NAME = 'sample_ibfk_1' - """) - rows = cursor.fetchall() - if (len(rows) >= 1): - print( - 'sample_ibfk_1 is the foreign key in table sample for type_of_cancer_id column in table type_of_cancer.', - file=OUTPUT_FILE) - cursor.execute( - """ - ALTER TABLE `sample` DROP FOREIGN KEY sample_ibfk_1; - """) - print('sample_ibfk_1 foreign key has been deleted.', file=OUTPUT_FILE) - # if sample_ibfk_2 exists - cursor.execute( - """ - SELECT * - FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS - WHERE CONSTRAINT_SCHEMA = DATABASE() - AND TABLE_NAME = 'sample' - AND REFERENCED_TABLE_NAME = 'type_of_cancer' - AND CONSTRAINT_NAME = 'sample_ibfk_2' - """) - rows = cursor.fetchall() - if (len(rows) >= 1): - print( - 'sample_ibfk_2 is the foreign key in table sample for type_of_cancer_id column in table type_of_cancer.', - file=OUTPUT_FILE) - cursor.execute( - """ - ALTER TABLE `sample` DROP FOREIGN KEY sample_ibfk_2; - """) - print('sample_ibfk_2 foreign key has been deleted.', file=OUTPUT_FILE) - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - sys.exit(1) - - -def strip_trailing_comment_from_line(line): - line_parts = re.split("--\s", line) - return line_parts[0] - - -def run_migration(db_version, sql_filename, connection, cursor, no_transaction, stop_at_version=None): - """ - Goes through the sql and runs lines based on the version numbers. SQL version should be stated as follows: - - ##version: 1.0.0 - INSERT INTO ... - - ##version: 1.1.0 - CREATE TABLE ... - """ - sql_file = open(sql_filename, 'r') - sql_version = (0, 0, 0) - run_line = False - statements = OrderedDict() - statement = '' - for line in sql_file: - if line.startswith('##'): - sql_version = tuple(map(int, line.split(':')[1].strip().split('.'))) - # stop at the version specified - if stop_at_version is not None and is_version_equal(sql_version, stop_at_version): - break - else: - run_line = is_version_larger(sql_version, db_version) - continue - # skip blank lines - if len(line.strip()) < 1: - continue - # skip comments - if line.startswith('#'): - continue - # skip sql comments - if line.startswith('--') and len(line) > 2 and line[2].isspace(): - continue - # only execute sql line if the last version seen in the file is greater than the db_version - if run_line: - line = line.strip() - simplified_line = strip_trailing_comment_from_line(line) - statement = statement + ' ' + simplified_line - if simplified_line.endswith(';'): - if sql_version not in statements: - statements[sql_version] = [statement] - else: - statements[sql_version].append(statement) - statement = '' - if len(statements) > 0: - run_statements(statements, connection, cursor, no_transaction) - else: - print('Everything up to date, nothing to migrate.', file=OUTPUT_FILE) - - -def run_statements(statements, connection, cursor, no_transaction): - try: - if no_transaction: - cursor.execute('SET autocommit=1;') - else: - cursor.execute('SET autocommit=0;') - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - sys.exit(1) - for version, statement_list in statements.items(): - print( - 'Running statements for version: %s' % ('.'.join(map(str, version))), - file=OUTPUT_FILE) - for statement in statement_list: - print( - '\tExecuting statement: %s' % (statement.strip()), - file=OUTPUT_FILE) - try: - cursor.execute(statement.strip()) - except MySQLdb.Error as msg: - print(msg, file=ERROR_FILE) - sys.exit(1) - connection.commit() - - -def warn_user(): - """Warn the user to back up their database before the script runs.""" - response = input( - 'WARNING: This script will alter your database! Be sure to back up your data before running.\n' - 'Continue running DB migration? (y/n) ' - ).strip() - while response.lower() != 'y' and response.lower() != 'n': - response = input( - 'Did not recognize response.\nContinue running DB migration? (y/n) ' - ).strip() - if response.lower() == 'n': - sys.exit() - - -def usage(): - print( - 'migrate_db.py --properties-file [portal properties file] --sql [sql migration file]', - file=OUTPUT_FILE) - - -def main(): - """ main function to run mysql migration """ - parser = argparse.ArgumentParser(description='cBioPortal DB migration script') - parser.add_argument('-y', '--suppress_confirmation', default=False, action='store_true') - parser.add_argument('-p', '--properties-file', type=str, required=False, - help='Path to portal.properties file (default: locate it ' - 'relative to the script)') - parser.add_argument('-s', '--sql', type=str, required=False, - help='Path to official migration.sql script. (default: locate it ' - 'relative to the script)') - parser.add_argument('-f', '--force', default=False, action='store_true', help='Force to run database migration') - parser.add_argument('--no-transaction', default=False, action='store_true', help=""" - Do not run migration in a single transaction. Only use this when you known what you are doing!!! - """) - parser = parser.parse_args() - - properties_filename = parser.properties_file - if properties_filename is None: - # get the directory name of the currently running script, - # resolving any symlinks - script_dir = Path(__file__).resolve().parent - # go up from cbioportal/core/src/main/scripts/ to cbioportal/ - src_root = script_dir.parent.parent.parent.parent - properties_filename = src_root / 'portal.properties' - - sql_filename = parser.sql - if sql_filename is None: - # get the directory name of the currently running script, - # resolving any symlinks - script_dir = Path(__file__).resolve().parent - # go up from cbioportal/core/src/main/scripts/ to cbioportal/ - src_root = script_dir.parent.parent.parent.parent - sql_filename = src_root / 'db-scripts/src/main/resources/migration.sql' - - if not os.path.exists(sql_filename): - print('sql file %s cannot be found' % (sql_filename), file=ERROR_FILE) - usage() - sys.exit(2) - - # parse properties file - portal_properties = get_database_properties(properties_filename) - if portal_properties is None: - print('failure reading properties file (%s)' % properties_filename, file=ERROR_FILE) - sys.exit(1) - - # warn user - if not parser.suppress_confirmation: - warn_user() - - # set up - get db cursor - connection, cursor = get_db_cursor(portal_properties) - if cursor is None: - print('failure connecting to sql database', file=ERROR_FILE) - sys.exit(1) - - # execute - get the database version and run the migration - with contextlib.closing(connection): - db_version = get_db_version(cursor) - if is_version_larger(MULTI_REFERENCE_GENOME_SUPPORT_MIGRATION_STEP, db_version): - run_migration(db_version, sql_filename, connection, cursor, parser.no_transaction, - stop_at_version=MULTI_REFERENCE_GENOME_SUPPORT_MIGRATION_STEP) - # retrieve reference genomes from database - check_reference_genome(portal_properties, cursor, parser.force) - db_version = get_db_version(cursor) - if is_version_larger(SAMPLE_FK_MIGRATION_STEP, db_version): - run_migration(db_version, sql_filename, connection, cursor, parser.no_transaction, - stop_at_version=SAMPLE_FK_MIGRATION_STEP) - check_and_remove_type_of_cancer_id_foreign_key(cursor) - db_version = get_db_version(cursor) - if is_version_larger(FUSIONS_VERBOTEN_STEP, db_version): - run_migration(db_version, sql_filename, connection, cursor, parser.no_transaction, - stop_at_version=FUSIONS_VERBOTEN_STEP) - check_and_exit_if_fusions(cursor) - db_version = get_db_version(cursor) - run_migration(db_version, sql_filename, connection, cursor, parser.no_transaction) - # TODO: remove this after we update mysql version - # check invalid foreign key only when current db version larger or qeuals to GENERIC_ASSAY_MIGRATION_STEP - if not is_version_larger(GENERIC_ASSAY_MIGRATION_STEP, db_version): - check_and_remove_invalid_foreign_keys(cursor) - print('Finished.', file=OUTPUT_FILE) - - -# do main -if __name__ == '__main__': - main() diff --git a/core/src/main/scripts/mini_load_ova.sh b/core/src/main/scripts/mini_load_ova.sh deleted file mode 100755 index 31185b7d860..00000000000 --- a/core/src/main/scripts/mini_load_ova.sh +++ /dev/null @@ -1,12 +0,0 @@ -# Clear /Init the Database -./init.sh - -######################## -# Ovarian -######################## - -# Load up the Ovarian Meta Data File -./ImportCancerStudy.pl $PORTAL_DATA_HOME/ovarian/ovarian.txt -./importCaseList.pl $PORTAL_DATA_HOME/ovarian/case_lists -./importClinicalData.pl $PORTAL_DATA_HOME/ovarian/ova_clinical_20110211.txt ovarian -./importProfileData.pl --data $PORTAL_DATA_HOME/ovarian/data_CNA.txt --meta $PORTAL_DATA_HOME/ovarian/meta_CNA.txt --dbmsAction clobber diff --git a/core/src/main/scripts/ovarian/preprocess-all.py b/core/src/main/scripts/ovarian/preprocess-all.py deleted file mode 100755 index 65605890653..00000000000 --- a/core/src/main/scripts/ovarian/preprocess-all.py +++ /dev/null @@ -1,87 +0,0 @@ -#! /usr/bin/env python - -# ------------------------------------------------------------------------------ -# imports - -import os -import sys - -def processMRNA (originalFileName): - finalFileName = getFinalFileName (originalFileName) - if not os.path.exists(originalFileName): - sys.exit("error: cannot find file: " + originalFileName) - else: - print "Preparing mRNA Data file: %s --> %s " % (originalFileName, finalFileName) - os.system(BIN_DIR + "preprocess-mrna.py " + originalFileName + " > " + finalFileName) - -def processCNA (originalFileName): - rae_original_file = originalFileName; - rae_final_file = getFinalFileName (rae_original_file) - - if not os.path.exists(rae_original_file): - sys.exit("error: cannot find " + rae_original_file + ".") - else: - print "Preparing CNA RAE file: %s --> %s " % (rae_original_file, rae_final_file) - os.system(BIN_DIR + "preprocess-rae.py " + rae_original_file + " > " + rae_final_file) - -def getFinalFileName (originalFileName): - return originalFileName.replace("data_", "processed_") - -def convertCaseFile (caseInFile, caseOutFile): - print "Converting case file: %s --> %s." % (caseInFile, caseOutFile) - in_file = open (caseInFile) - out_file = open (caseOutFile, "w") - for line in in_file: - if line.startswith("case_list_ids:"): - line = line.replace ("case_list_ids:", "") - parts = line.split() - for part in parts: - print >> out_file, part.strip() - -# ------------------------------------------------------------------------------ -# check for cgds environment var - -CGDS_HOME = "CGDS_HOME" -PORTAL_DATA_HOME = "PORTAL_DATA_HOME"; -cgds_home_found = 0 -for key in os.environ.keys(): - if key == CGDS_HOME: - cgds_home_found = 1 - CGDS_HOME = os.environ[key] - if key == PORTAL_DATA_HOME: - PORTAL_DATA_HOME = os.environ[key] -if not cgds_home_found: - sys.exit("error: " + CGDS_HOME + " environment variable needs to be set") - -# ------------------------------------------------------------------------------ -# some globals/constants - -BIN_DIR = CGDS_HOME + "/scripts/ovarian/" -DATA_DIR = PORTAL_DATA_HOME + "/ovarian/" -GENE2ACCESSION = DATA_DIR + "gene2accession-cooked.txt" - -# ------------------------------------------------------------------------------ -# pre-process CNA file -#processCNA (DATA_DIR + "data_CNA.txt"); -#processCNA (DATA_DIR + "data_CNA_GISTIC_all.txt"); -#processCNA (DATA_DIR + "data_CNA_GISTIC_focal.txt"); - -# ------------------------------------------------------------------------------ -# pre-process mrna expression files - -#processMRNA (DATA_DIR + "data_mRNA_unified.txt") -#processMRNA (DATA_DIR + "data_mRNA_unified_outliers.txt") - -#processMRNA (DATA_DIR + "data_mRNA_unified_ZbyNormals.txt") -#processMRNA (DATA_DIR + "data_mRNA_unified_ZbyTumors.txt") - -#processMRNA (DATA_DIR + "data_mRNA_median.txt") -#processMRNA (DATA_DIR + "data_mRNA_median_outliers.txt") - -#processMRNA (DATA_DIR + "data_mRNA_median_ZbyNormals.txt") -#processMRNA (DATA_DIR + "data_mRNA_median_ZbyTumors.txt") - -# pre-process the necessary case lists required for the mutation data -# for this, we need cases_all_list.txt and cases_sequenced_with_normal.txt -convertCaseFile (DATA_DIR + "case_lists/cases_all.txt", DATA_DIR + "processed_all_cases.txt") -convertCaseFile (DATA_DIR + "case_lists/cases_sequenced.txt", DATA_DIR + "processed_sequenced_cases.txt") diff --git a/core/src/main/scripts/ovarian/preprocess-mrna.py b/core/src/main/scripts/ovarian/preprocess-mrna.py deleted file mode 100755 index 74b60e77071..00000000000 --- a/core/src/main/scripts/ovarian/preprocess-mrna.py +++ /dev/null @@ -1,29 +0,0 @@ -#! /usr/bin/env python -import sys - -OUTPUT_FILE = sys.stdout - -if len(sys.argv) < 1: - sys.exit("usage: ./preprocess-rae.py ") - -RAW_RAE_FILE = open(sys.argv[1], 'r') -line_count = 0 - -# Read in Raw RAE File -for line in RAW_RAE_FILE: - line = line.strip() - line_count = line_count + 1 - # first line is header - if line_count == 1: - print line - else: - parts = line.split("\t") - # ids look like this: A4GALT|53947 - # we only want the last part, which is the entrez gene id - ids = parts[0].split("|"); - entrez_gene_id = ids[1] - print "%s\t" % (entrez_gene_id), - the_rest = parts[1:] - for col in the_rest: - print (col + "\t"), - print diff --git a/core/src/main/scripts/ovarian/preprocess-rae.py b/core/src/main/scripts/ovarian/preprocess-rae.py deleted file mode 100755 index d12f33de527..00000000000 --- a/core/src/main/scripts/ovarian/preprocess-rae.py +++ /dev/null @@ -1,29 +0,0 @@ -#! /usr/bin/env python -import sys - -OUTPUT_FILE = sys.stdout - -if len(sys.argv) < 1: - sys.exit("usage: ./preprocess-rae.py ") - -RAW_RAE_FILE = open(sys.argv[1], 'r') -line_count = 0 - -# Read in Raw RAE File -for line in RAW_RAE_FILE: - line = line.strip() - line_count = line_count + 1 - # first line is header - if line_count == 1: - print line - else: - parts = line.split("\t") - # ids look like this: chr1:58953-59871|OR4F5|79501 - # we only want the last part, which is the entrez gene id - ids = parts[0].split("|"); - entrez_gene_id = ids[2] - print "%s\t" % (entrez_gene_id), - the_rest = parts[1:] - for col in the_rest: - print (col + "\t"), - print diff --git a/core/src/main/scripts/ovarian/removeNullMutations.py b/core/src/main/scripts/ovarian/removeNullMutations.py deleted file mode 100755 index b6f94ea9030..00000000000 --- a/core/src/main/scripts/ovarian/removeNullMutations.py +++ /dev/null @@ -1,12 +0,0 @@ -#! /usr/bin/env python - -import sys - -file = open (sys.argv[1]) -for line in file: - line = line.strip() - parts = line.split("\t") - if len(parts) == 3: - mutation = parts[2] - if (mutation != "0"): - print line diff --git a/core/src/main/scripts/portal-client.py b/core/src/main/scripts/portal-client.py deleted file mode 100755 index 5c5793497b8..00000000000 --- a/core/src/main/scripts/portal-client.py +++ /dev/null @@ -1,79 +0,0 @@ -#! /usr/bin/python - -# -# This scipt is a test of portal/cgds access from external client -# while spring-security is in place. -# -# The client takes two credentials: a valid webservice url, and a user credential -# for authentication -# -# example url: http://miso-dev.cbio.mskcc.org:58080/oauth-portal/webservice.do?cmd=getCancerTypes -# example credential: B039E875B4BFD4C4493B7C1323F510F6 -# - -# ------------------------------------------------------------------------------ -# imports - -import sys -import getopt -import urllib -import urllib2 - -# ------------------------------------------------------------------------------ -# globals - -ERROR_FILE = sys.stderr -OUTPUT_FILE = sys.stdout - -# ------------------------------------------------------------------------------ -# functions - -# ------------------------------------------------------------------------------ -# executes a call to the portal -def execute_portal_call(url, credential): - - try: - urlOpener = urllib2.build_opener() - urlOpener.addheaders.append(('Cookie', 'JSESSIONID=' + credential)) - response = urlOpener.open(url) - except IOError: - print >> ERROR_FILE, "error fetching url: " + url - return - - print >> OUTPUT_FILE, response.read() - -# ------------------------------------------------------------------------------ -# The big deal main. - -def main(): - - help_text = 'portal-client.py --url [properly constructed portal url] --credential [user credential]' - - # parse command line options - try: - opts, args = getopt.getopt(sys.argv[1:], "", ["url=", "credential="]) - except getopt.error, msg: - print >> ERROR_FILE, help_text - sys.exit(2) - - # process the options - url = '' - credential = '' - for o, a in opts: - if o == "--url": - url = a - elif o == "--credential": - credential = a - - if url == '' or credential == '': - print >> ERROR_FILE, help_text - sys.exit(2) - - execute_portal_call(url, credential) - - -# ------------------------------------------------------------------------------ -# lets shoot this f'in film... -# ------------------------------------------------------------------------------ -if __name__ == '__main__': - main() diff --git a/core/src/main/scripts/prepareBasicPiHelperData.sh b/core/src/main/scripts/prepareBasicPiHelperData.sh deleted file mode 100755 index 4cefe569de8..00000000000 --- a/core/src/main/scripts/prepareBasicPiHelperData.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash - -# *** -# Downloads, unzips and puts the files under $PORTAL_DATA_HOME/reference-data/pihelper . -# -# Assumes you have unzip and wget installed in your PATH -# *** - -# Check if we have all the variables set right -echo -ne "Checking if the variables are set...\t\t" && -[ ! -z "${PORTAL_HOME} " ] && bash $PORTAL_HOME/core/src/main/scripts/env.sh && export ENV_CHECK=1 || export ENV_CHECK=0 - -if [ $ENV_CHECK -lt 1 ] -then - echo "[ failed ]" - exit -1 -else - echo "[ done ]" -fi - -# configurables -TMPDIR="$PORTAL_DATA_HOME/reference-data" -TMPDIRDB=${TMPDIR}/pihelper - -# Create the dir and cd into that -mkdir -p ${TMPDIR} && -cd ${TMPDIR} && - -echo -ne "Downloading files...\t\t" && -# Download drug data -wget --quiet "http://cbio-cancer-genomics-portal.googlecode.com/files/portal-pihelper-data-basic.zip" > /dev/null && -echo "[ done ]" && - -echo -ne "Unzipping files...\t\t" && -unzip portal-pihelper-data-basic.zip > /dev/null && -mv portal-pihelper-data-basic pihelper && -echo "[ done ]" && - -# Go back to where we were -cd - > /dev/null diff --git a/core/src/main/scripts/prepareCosmicData.sh b/core/src/main/scripts/prepareCosmicData.sh deleted file mode 100755 index 0a0056cbb02..00000000000 --- a/core/src/main/scripts/prepareCosmicData.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -rm -rf $PORTAL_DATA_HOME/reference-data/cosmic_tmp -mkdir $PORTAL_DATA_HOME/reference-data/cosmic_tmp - -echo "downloading..." -wget -P $PORTAL_DATA_HOME/reference-data/cosmic_tmp/ ftp://ngs.sanger.ac.uk/production/cosmic/CosmicCodingMuts*.vcf.gz - -echo "extracting..." -gunzip $PORTAL_DATA_HOME/reference-data/cosmic_tmp/CosmicCodingMuts*.vcf.gz - -echo "copying..." -mv $PORTAL_DATA_HOME/reference-data/cosmic_tmp/CosmicCodingMuts*.vcf $PORTAL_DATA_HOME/reference-data/CosmicCodingMuts.vcf - -echo "cleaning up..." -rm -rf $PORTAL_DATA_HOME/reference-data/cosmic_tmp - -echo "done." \ No newline at end of file diff --git a/core/src/main/scripts/prepareGeneData.sh b/core/src/main/scripts/prepareGeneData.sh deleted file mode 100755 index 0cb00cdeacb..00000000000 --- a/core/src/main/scripts/prepareGeneData.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -echo "downloading Homo_sapiens.gene_info.gz from ncbi..." -rm $PORTAL_DATA_HOME/reference-data/Homo_sapiens.gene_info.gz -rm $PORTAL_DATA_HOME/reference-data/Homo_sapiens.gene_info -rm $PORTAL_DATA_HOME/reference-data/human-genes.txt -wget -P $PORTAL_DATA_HOME/reference-data/ ftp://ftp.ncbi.nih.gov//gene/DATA/GENE_INFO/Mammalia/Homo_sapiens.gene_info.gz -echo "unzipping..." -gunzip $PORTAL_DATA_HOME/reference-data/Homo_sapiens.gene_info.gz -mv $PORTAL_DATA_HOME/reference-data/Homo_sapiens.gene_info $PORTAL_DATA_HOME/reference-data/human-genes.txt - - -# loci data for calculating gene length -rm $PORTAL_DATA_HOME/reference-data/gencode.v17.annotation.gtf.gz -rm $PORTAL_DATA_HOME/reference-data/gencode.v17.annotation.gtf -rm $PORTAL_DATA_HOME/reference-data/all_exon_loci.bed - -echo "downloading gencode.v17.annotation.gtf.gz from sanger" -wget -P $PORTAL_DATA_HOME/reference-data/ ftp://ftp.sanger.ac.uk/pub/gencode/release_17/gencode.v17.annotation.gtf.gz - -echo "unzipping..." -gunzip $PORTAL_DATA_HOME/reference-data/gencode.v17.annotation.gtf.gz - -echo "trimming..." -grep -v ^# $PORTAL_DATA_HOME/reference-data/gencode.v17.annotation.gtf | perl -ne 'chomp; @c=split(/\t/); $c[0]=~s/^chr//; $c[3]--; $c[8]=~s/.*gene_name\s\"([^"]+)\".*/$1/; print join("\t",@c[0,3,4,8,5,6])."\n" if($c[2] eq "CDS" or $c[2] eq "exon")' > $PORTAL_DATA_HOME/reference-data/all_exon_loci.bed - -rm $PORTAL_DATA_HOME/reference-data/gencode.v17.annotation.gtf - -echo "done" \ No newline at end of file diff --git a/core/src/main/scripts/preparePathwayCommonsData.sh b/core/src/main/scripts/preparePathwayCommonsData.sh deleted file mode 100755 index f49e61ac078..00000000000 --- a/core/src/main/scripts/preparePathwayCommonsData.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -echo "downloading sif from pc..." -rm $PORTAL_DATA_HOME/reference-data/pcUnfilteredData.sif.gz -rm $PORTAL_DATA_HOME/reference-data/pc.sif -wget http://www.pathwaycommons.org/pc2/downloads/Pathway%20Commons.7.All.EXTENDED_BINARY_SIF.hgnc.sif.gz -O pcUnfilteredData.sif.gz -echo "unzipping..." - -gunzip pcUnfilteredData.sif.gz -#Filter out interactions to a small subset since there is about 4.5M interactions in the uncompressed file -python ./processPathwayCommonsInteractions.py ./pcUnfilteredData.sif $PORTAL_DATA_HOME/reference-data/pc.sif - -#Clean-up -rm ./pcUnfilteredData.sif - -echo "done" diff --git a/core/src/main/scripts/prepareSangerCGC.sh b/core/src/main/scripts/prepareSangerCGC.sh deleted file mode 100755 index 7ba5de5ac1c..00000000000 --- a/core/src/main/scripts/prepareSangerCGC.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -rm $PORTAL_DATA_HOME/reference-data/cancer_gene_census.csv - -echo "downloading..." -wget -P $PORTAL_DATA_HOME/reference-data/ http://cancer.sanger.ac.uk/files/cosmic/current_release/cancer_gene_census.csv - -echo "done." \ No newline at end of file diff --git a/core/src/main/scripts/processPathwayCommonsInteractions.py b/core/src/main/scripts/processPathwayCommonsInteractions.py deleted file mode 100644 index 741c8949ccb..00000000000 --- a/core/src/main/scripts/processPathwayCommonsInteractions.py +++ /dev/null @@ -1,39 +0,0 @@ -import sys - -def main(argv): - inputFileName = sys.argv[1] - outputFileName = sys.argv[2] - inFile = open(inputFileName) - outFile = open(outputFileName, 'wb') - - #read out meta line - meta = inFile.readline() - outFile.write(meta) - - totalCount = 0 - filteredInteractionCount = 0 - - for line in inFile: - lineSize = len(line.split('\t')) - - # This means we are in the section where node data is included in EXTENDED_BINARY_SIF - if lineSize != 1: - sourceName = line.split('\t')[3].lower() - sourceNames = sourceName.split(';') - totalCount = totalCount + 1 - for sourceName in sourceNames: - if checkInteractionSource(sourceName): - outFile.write(line) - filteredInteractionCount = filteredInteractionCount + 1 - break - - inFile.close() - outFile.close() - print 'Wrote ' + str(filteredInteractionCount) + " interactions out of " + str(totalCount) + " interactions after filtering" - - -def checkInteractionSource(source): - return (source=='humancyc' or source=='panther' or source=='phosposite' or source=='reactome' or source=='pid') - -if __name__ == "__main__": - main(sys.argv) diff --git a/core/src/main/scripts/reload.sh b/core/src/main/scripts/reload.sh deleted file mode 100755 index 5e1cab6d49d..00000000000 --- a/core/src/main/scripts/reload.sh +++ /dev/null @@ -1,3 +0,0 @@ -ant remove -ant install - diff --git a/core/src/main/scripts/resetDb.pl b/core/src/main/scripts/resetDb.pl deleted file mode 100755 index 16c8c5f8026..00000000000 --- a/core/src/main/scripts/resetDb.pl +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env perl -require "env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.ResetDatabase @ARGV"); - -print "$cp\n"; diff --git a/core/src/main/scripts/showAllCaseLists.pl b/core/src/main/scripts/showAllCaseLists.pl deleted file mode 100755 index 8d46ab34e76..00000000000 --- a/core/src/main/scripts/showAllCaseLists.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.GetAllCaseLists @ARGV"); diff --git a/core/src/main/scripts/statDb.pl b/core/src/main/scripts/statDb.pl deleted file mode 100755 index ebb1ca45695..00000000000 --- a/core/src/main/scripts/statDb.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.StatDatabase @ARGV"); diff --git a/core/src/main/scripts/updateGenePanel.pl b/core/src/main/scripts/updateGenePanel.pl deleted file mode 100644 index 927787ebc80..00000000000 --- a/core/src/main/scripts/updateGenePanel.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/envSimple.pl"; - -exec("$JAVA_HOME/bin/java -Xmx1524M -Dspring.profiles.active=dbcp -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.UpdateGenePanel @ARGV"); diff --git a/core/src/main/scripts/updateMetaData.pl b/core/src/main/scripts/updateMetaData.pl deleted file mode 100755 index 58a768b79a8..00000000000 --- a/core/src/main/scripts/updateMetaData.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.UpdateMetaData @ARGV"); diff --git a/core/src/main/scripts/verifyGeneSets.pl b/core/src/main/scripts/verifyGeneSets.pl deleted file mode 100755 index ba555db2809..00000000000 --- a/core/src/main/scripts/verifyGeneSets.pl +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env perl -require "../scripts/env.pl"; - -system ("$JAVA_HOME/bin/java -Xmx1524M -cp $cp -DPORTAL_HOME='$portalHome' org.mskcc.cbio.portal.scripts.GeneSetsVerification @ARGV"); diff --git a/core/src/test/java/org/cbioportal/model/util/AlterationFilterTest.java b/core/src/test/java/org/cbioportal/model/util/AlterationFilterTest.java deleted file mode 100644 index fb8c58d76f3..00000000000 --- a/core/src/test/java/org/cbioportal/model/util/AlterationFilterTest.java +++ /dev/null @@ -1,116 +0,0 @@ -package org.cbioportal.model.util; - -import org.cbioportal.model.AlterationFilter; -import org.cbioportal.model.CNA; -import org.cbioportal.model.MutationEventType; -import org.junit.Assert; -import org.junit.Test; - -import java.util.HashMap; -import java.util.Map; - -public class AlterationFilterTest { - - @Test - public void setSelectAllWhenAllCnaTypesTrue() { - AlterationFilter f = new AlterationFilter(); - Map types = new HashMap(); - types.put(CNA.HOMDEL, true); - types.put(CNA.DIPLOID, true); - f.setCopyNumberAlterationEventTypes(types); - Assert.assertFalse(f.getCNAEventTypeSelect().hasValues()); - Assert.assertTrue(f.getCNAEventTypeSelect().hasAll()); - Assert.assertFalse(f.getCNAEventTypeSelect().hasNone()); - } - - @Test - public void setSelectAllWhenSomeCnaTypesTrue() { - AlterationFilter f = new AlterationFilter(); - Map types = new HashMap(); - types.put(CNA.HOMDEL, false); - types.put(CNA.DIPLOID, true); - f.setCopyNumberAlterationEventTypes(types); - Assert.assertTrue(f.getCNAEventTypeSelect().hasValues()); - Assert.assertFalse(f.getCNAEventTypeSelect().hasAll()); - Assert.assertFalse(f.getCNAEventTypeSelect().hasNone()); - } - - @Test - public void setSelectAllWhenAllCnaTypesFalse() { - AlterationFilter f = new AlterationFilter(); - Map types = new HashMap(); - types.put(CNA.HOMDEL, false); - types.put(CNA.DIPLOID, false); - f.setCopyNumberAlterationEventTypes(types); - Assert.assertFalse(f.getCNAEventTypeSelect().hasValues()); - Assert.assertFalse(f.getCNAEventTypeSelect().hasAll()); - Assert.assertTrue(f.getCNAEventTypeSelect().hasNone()); - } - - @Test(expected = IllegalArgumentException.class) - public void setSelectAllWhenCnaTypesNull() { - AlterationFilter f = new AlterationFilter(); - f.setCopyNumberAlterationEventTypes(null); - } - - @Test - public void setSelectAllWhenCnaTypesEmpty() { - AlterationFilter f = new AlterationFilter(); - f.setCopyNumberAlterationEventTypes(new HashMap<>()); - Assert.assertFalse(f.getCNAEventTypeSelect().hasValues()); - Assert.assertTrue(f.getCNAEventTypeSelect().hasAll()); - Assert.assertFalse(f.getCNAEventTypeSelect().hasNone()); - } - - @Test - public void setSelectAllWhenAllMutationTypesTrue() { - AlterationFilter f = new AlterationFilter(); - Map types = new HashMap(); - types.put(MutationEventType.feature_truncation, true); - types.put(MutationEventType.missense_mutation, true); - f.setMutationEventTypes(types); - Assert.assertFalse(f.getMutationTypeSelect().hasValues()); - Assert.assertTrue(f.getMutationTypeSelect().hasAll()); - Assert.assertFalse(f.getMutationTypeSelect().hasNone()); - } - - @Test - public void setSelectAllWhenSomeMutationTypesTrue() { - AlterationFilter f = new AlterationFilter(); - Map types = new HashMap(); - types.put(MutationEventType.feature_truncation, false); - types.put(MutationEventType.missense_mutation, true); - f.setMutationEventTypes(types); - Assert.assertTrue(f.getMutationTypeSelect().hasValues()); - Assert.assertFalse(f.getMutationTypeSelect().hasAll()); - Assert.assertFalse(f.getMutationTypeSelect().hasNone()); - } - - @Test - public void setSelectAllWhenAllMutationTypesFalse() { - AlterationFilter f = new AlterationFilter(); - Map types = new HashMap(); - types.put(MutationEventType.feature_truncation, false); - types.put(MutationEventType.missense_mutation, false); - f.setMutationEventTypes(types); - Assert.assertFalse(f.getMutationTypeSelect().hasValues()); - Assert.assertFalse(f.getMutationTypeSelect().hasAll()); - Assert.assertTrue(f.getMutationTypeSelect().hasNone()); - } - - @Test(expected = IllegalArgumentException.class) - public void setSelectAllWhenMutationTypesNull() { - AlterationFilter f = new AlterationFilter(); - f.setMutationEventTypes(null); - } - - @Test - public void setSelectAllWhenMutationTypesEmpty() { - AlterationFilter f = new AlterationFilter(); - f.setMutationEventTypes(new HashMap<>()); - Assert.assertFalse(f.getMutationTypeSelect().hasValues()); - Assert.assertTrue(f.getMutationTypeSelect().hasAll()); - Assert.assertFalse(f.getMutationTypeSelect().hasNone()); - } - -} \ No newline at end of file diff --git a/core/src/test/java/org/cbioportal/model/util/BaseAlterationFilterTest.java b/core/src/test/java/org/cbioportal/model/util/BaseAlterationFilterTest.java deleted file mode 100644 index 1f247852e08..00000000000 --- a/core/src/test/java/org/cbioportal/model/util/BaseAlterationFilterTest.java +++ /dev/null @@ -1,93 +0,0 @@ -package org.cbioportal.model.util; - -import org.cbioportal.model.BaseAlterationFilter; -import org.junit.Assert; -import org.junit.Test; - -import java.util.HashMap; -import java.util.Map; - -public class BaseAlterationFilterTest { - - @Test - public void testAlterationFilterWithEmptyConstructor() { - BaseAlterationFilter f = new BaseAlterationFilter(); - Assert.assertTrue(f.getIncludeDriver()); - Assert.assertTrue(f.getIncludeVUS()); - Assert.assertTrue(f.getIncludeUnknownOncogenicity()); - Assert.assertTrue(f.getIncludeGermline()); - Assert.assertTrue(f.getIncludeGermline()); - Assert.assertTrue(f.getIncludeUnknownStatus()); - Assert.assertTrue(f.getIncludeUnknownTier()); - Assert.assertTrue(f.getSelectedTiers().hasAll()); - } - - @Test - public void testMutationStatusFilterWithEmptyConstructor() { - BaseAlterationFilter f = new BaseAlterationFilter(); - Assert.assertTrue(f.getIncludeGermline()); - Assert.assertTrue(f.getIncludeUnknownStatus()); - Assert.assertTrue(f.getIncludeUnknownTier()); - Assert.assertTrue(f.getSelectedTiers().hasAll()); - Assert.assertTrue(f.getIncludeDriver()); - Assert.assertTrue(f.getIncludeVUS()); - Assert.assertTrue(f.getIncludeUnknownOncogenicity()); - Assert.assertTrue(f.getIncludeUnknownTier()); - Assert.assertTrue(f.getSelectedTiers().hasAll()); - } - - @Test - public void setSelectAllWhenAllTiersTrue() { - BaseAlterationFilter f = new BaseAlterationFilter(); - Map types = new HashMap(); - types.put("Class 1", true); - types.put("Class 2", true); - f.setTiersBooleanMap(types); - Assert.assertTrue(f.getSelectedTiers().hasValues()); - Assert.assertTrue(f.getSelectedTiers().hasAll()); - Assert.assertFalse(f.getSelectedTiers().hasNone()); - } - - @Test - public void setSelectAllWhenSomeTiersTrue() { - BaseAlterationFilter f = new BaseAlterationFilter(); - Map types = new HashMap(); - types.put("Class 1", false); - types.put("Class 2", true); - f.setTiersBooleanMap(types); - Assert.assertTrue(f.getSelectedTiers().hasValues()); - Assert.assertFalse(f.getSelectedTiers().hasAll()); - Assert.assertFalse(f.getSelectedTiers().hasNone()); - } - - @Test - public void setSelectAllWhenAllTiersFalse() { - BaseAlterationFilter f = new BaseAlterationFilter(); - Map types = new HashMap(); - types.put("Class 1", false); - types.put("Class 2", false); - f.setTiersBooleanMap(types); - Assert.assertFalse(f.getSelectedTiers().hasValues()); - Assert.assertFalse(f.getSelectedTiers().hasAll()); - Assert.assertTrue(f.getSelectedTiers().hasNone()); - } - - @Test - public void setSelectAllWhenTiersEmpty() { - BaseAlterationFilter f = new BaseAlterationFilter(); - f.setTiersBooleanMap(new HashMap()); - Assert.assertFalse(f.getSelectedTiers().hasValues()); - Assert.assertTrue(f.getSelectedTiers().hasAll()); - Assert.assertFalse(f.getSelectedTiers().hasNone()); - } - - @Test - public void setSelectNoneWhenNullTiers() { - BaseAlterationFilter f = new BaseAlterationFilter(); - f.setTiersBooleanMap(null); - Assert.assertFalse(f.getSelectedTiers().hasValues()); - Assert.assertFalse(f.getSelectedTiers().hasAll()); - Assert.assertTrue(f.getSelectedTiers().hasNone()); - } - -} \ No newline at end of file diff --git a/core/src/test/java/org/cbioportal/model/util/SelectTest.java b/core/src/test/java/org/cbioportal/model/util/SelectTest.java deleted file mode 100644 index 5255db7e768..00000000000 --- a/core/src/test/java/org/cbioportal/model/util/SelectTest.java +++ /dev/null @@ -1,52 +0,0 @@ -package org.cbioportal.model.util; - -import org.junit.Assert; -import org.junit.Test; - -import java.util.Arrays; -import java.util.Collections; - -public class SelectTest { - - @Test - public void all() { - Select s = Select.all(); - Assert.assertFalse(s.hasNone()); - Assert.assertFalse(s.hasValues()); - Assert.assertTrue(s.hasAll()); - } - - @Test - public void none() { - Select s = Select.none(); - Assert.assertTrue(s.hasNone()); - Assert.assertFalse(s.hasValues()); - Assert.assertFalse(s.hasAll()); - } - - @Test - public void byValues() { - Select s = Select.byValues(Arrays.asList("A", "B")); - Assert.assertFalse(s.hasNone()); - Assert.assertTrue(s.hasValues()); - Assert.assertFalse(s.hasAll()); - } - - @Test - public void byValuesEmptyList() { - Select s = Select.byValues(Collections.emptyList()); - Assert.assertTrue(s.hasNone()); - Assert.assertFalse(s.hasValues()); - Assert.assertFalse(s.hasAll()); - } - - @Test - public void hasAllExternal() { - Select s = Select.byValues(Arrays.asList("A", "B")); - s.hasAll(true); - Assert.assertFalse(s.hasNone()); - Assert.assertTrue(s.hasValues()); - Assert.assertTrue(s.hasAll()); - } - -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoCancerStudy.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoCancerStudy.java deleted file mode 100644 index 1f0ffc3ec32..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoCancerStudy.java +++ /dev/null @@ -1,184 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.junit.Test; -import org.junit.Ignore; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.CancerStudy; - -import java.io.IOException; -import java.util.ArrayList; - -import org.mskcc.cbio.portal.model.ReferenceGenome; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -/** - * JUnit Tests for DaoCancer Study. - * - * @author Arman Aksoy, Ethan Cerami, Arthur Goldberg, Ersin Ciftci. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoCancerStudy { - - /** - * Tests DaoCancer Study #1. - * @throws DaoException Database Error. - * @throws IOException IO Error. - */ - @Test - public void testDaoCancerStudy() throws DaoException, IOException { - - assertEquals("Breast Invasive Carcinoma", DaoTypeOfCancer.getTypeOfCancerById("BRCA").getName()); - - CancerStudy cancerStudy = new CancerStudy("GBM", "GBM Description", "gbm", "brca", false); - cancerStudy.setReferenceGenome("hg19"); - DaoCancerStudy.addCancerStudy(cancerStudy); - - // Removed testing that depends on internal ids - // `CANCER_STUDY_ID` auto_increment counts from 1 - // assertEquals(1, cancerStudy.getInternalId()); - - cancerStudy.setDescription("Glioblastoma"); - DaoCancerStudy.addCancerStudy(cancerStudy,true); - // Removed testing that depends on internal ids - // assertEquals(2, cancerStudy.getInternalId()); - - cancerStudy = DaoCancerStudy.getCancerStudyByStableId("gbm"); - assertEquals("gbm", cancerStudy.getCancerStudyStableId()); - assertEquals("GBM", cancerStudy.getName()); - assertEquals("Glioblastoma", cancerStudy.getDescription()); - - CancerStudy cancerStudy2 = new CancerStudy("Breast", "Breast Description", "breast", "brca", false); - cancerStudy2.setReferenceGenome("hg19"); - DaoCancerStudy.addCancerStudy(cancerStudy2); - - // Removed testing that depends on internal ids - // assertEquals(3, cancerStudy.getInternalId()); - int testInternalId = cancerStudy2.getInternalId(); - - cancerStudy2 = DaoCancerStudy.getCancerStudyByInternalId(testInternalId); - assertEquals("Breast Description", cancerStudy2.getDescription()); - assertEquals("Breast", cancerStudy2.getName()); - - ArrayList list = DaoCancerStudy.getAllCancerStudies(); - assertEquals(3, list.size()); - - assertEquals(null, DaoCancerStudy.getCancerStudyByStableId("no such study")); - assertTrue(DaoCancerStudy.doesCancerStudyExistByStableId - (cancerStudy.getCancerStudyStableId())); - assertFalse(DaoCancerStudy.doesCancerStudyExistByStableId("no such study")); - - assertTrue(DaoCancerStudy.doesCancerStudyExistByInternalId(cancerStudy.getInternalId())); - assertFalse(DaoCancerStudy.doesCancerStudyExistByInternalId(-1)); - - DaoCancerStudy.deleteCancerStudy(cancerStudy2.getInternalId()); - - list = DaoCancerStudy.getAllCancerStudies(); - assertEquals(2, list.size()); - - cancerStudy = DaoCancerStudy.getCancerStudyByStableId("gbm"); - DaoCancerStudy.deleteCancerStudy(cancerStudy.getInternalId()); - - list = DaoCancerStudy.getAllCancerStudies(); - assertEquals(1, list.size()); - } - - /** - * Tests DaoCancer Study #2. - * @throws DaoException Database Error. - * @throws IOException IO Error. - */ - @Test - public void testDaoCancerStudy2() throws DaoException, IOException { - - CancerStudy cancerStudy1 = new CancerStudy("GBM public study x", "GBM Description", - "tcga_gbm1", "brca", true); - cancerStudy1.setReferenceGenome(ReferenceGenome.HOMO_SAPIENS_DEFAULT_GENOME_NAME); - DaoCancerStudy.addCancerStudy(cancerStudy1); - - CancerStudy cancerStudy2 = new CancerStudy("GBM private study x", "GBM Description 2", - "tcga_gbm2", "brca", false); - cancerStudy2.setReferenceGenome(ReferenceGenome.HOMO_SAPIENS_DEFAULT_GENOME_NAME); - DaoCancerStudy.addCancerStudy(cancerStudy2); - - CancerStudy cancerStudy3 = new CancerStudy("Breast", "Breast Description", - "tcga_gbm3", "brca", false); - cancerStudy3.setReferenceGenome(ReferenceGenome.HOMO_SAPIENS_DEFAULT_GENOME_NAME); - DaoCancerStudy.addCancerStudy(cancerStudy3); - - ArrayList list = DaoCancerStudy.getAllCancerStudies(); - assertEquals(4, list.size()); - - int cancerStudy1Id = cancerStudy1.getInternalId(); - int cancerStudy2Id = cancerStudy2.getInternalId(); - int cancerStudy3Id = cancerStudy3.getInternalId(); - - CancerStudy readCancerStudy1 = DaoCancerStudy.getCancerStudyByInternalId(cancerStudy1Id); - // Removed testing that depends on internal ids - // assertEquals(1, cancerStudy1.getInternalId()); - assertEquals("GBM Description", readCancerStudy1.getDescription()); - assertEquals("GBM public study x", readCancerStudy1.getName()); - assertEquals(true, readCancerStudy1.isPublicStudy()); - - CancerStudy readCancerStudy2 = DaoCancerStudy.getCancerStudyByInternalId(cancerStudy2Id); - // Removed testing that depends on internal ids - // assertEquals(2, cancerStudy1.getInternalId()); - assertEquals("GBM private study x", readCancerStudy2.getName()); - assertEquals("GBM Description 2", readCancerStudy2.getDescription()); - assertEquals(false, readCancerStudy2.isPublicStudy()); - - CancerStudy readCancerStudy3 = DaoCancerStudy.getCancerStudyByInternalId(cancerStudy3Id); - // Removed testing that depends on internal ids - // assertEquals(3, cancerStudy1.getInternalId()); - assertEquals("Breast", readCancerStudy3.getName()); - assertEquals("Breast Description", readCancerStudy3.getDescription()); - assertEquals(false, readCancerStudy3.isPublicStudy()); - - assertEquals(4, DaoCancerStudy.getCount()); - DaoCancerStudy.deleteCancerStudy(readCancerStudy1.getInternalId()); - assertEquals(3, DaoCancerStudy.getCount()); - DaoCancerStudy.deleteCancerStudy(readCancerStudy2.getInternalId()); - assertEquals(2, DaoCancerStudy.getCount()); - DaoCancerStudy.deleteCancerStudy(readCancerStudy3.getInternalId()); - assertEquals(1, DaoCancerStudy.getCount()); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoClinicalAttribute.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoClinicalAttribute.java deleted file mode 100644 index ec79ad91a1f..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoClinicalAttribute.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.ClinicalAttribute; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoClinicalAttribute { - - @Test - public void testDaoClinicalAttribute() throws DaoException { - - int added = DaoClinicalAttributeMeta.addDatum(new ClinicalAttribute("attrId", "some attribute", "test attribute", "nonsense", true, "1", 1)); - assertTrue(added == 1); - - ClinicalAttribute clinicalAttribute = DaoClinicalAttributeMeta.getDatum("attrId", 1); - assertNotNull(clinicalAttribute); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGene.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGene.java deleted file mode 100644 index 31e648270e7..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGene.java +++ /dev/null @@ -1,139 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.util.Arrays; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.dao.MySQLbulkLoader; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.util.HashSet; - -/** - * JUnit Tests for DaoGene and DaoGeneOptimized. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoGene { - - /** - * Tests DaoGene and DaoGeneOptimized. - * @throws DaoException Database Error. - */ - @Test - public void testAddExistingGene() throws DaoException { - - // save bulkload setting before turning off - boolean isBulkLoad = MySQLbulkLoader.isBulkLoad(); - MySQLbulkLoader.bulkLoadOff(); - - // Add BRCA1 and BRCA2 Genes - CanonicalGene gene = new CanonicalGene(672, "BRCA1", - new HashSet(Arrays.asList("BRCAI|BRCC1|BROVCA1|IRIS|PNCA4|PSCP|RNF53".split("\\|")))); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - int num = daoGeneOptimized.addGene(gene); - assertEquals(5, num); - - // restore bulk setting - if (isBulkLoad) { - MySQLbulkLoader.bulkLoadOn(); - } - } - - /** - * Tests DaoGene and DaoGeneOptimized. - * @throws DaoException Database Error. - */ - @Test - public void testAddNewGene() throws DaoException { - - // save bulkload setting before turning off - boolean isBulkLoad = MySQLbulkLoader.isBulkLoad(); - MySQLbulkLoader.bulkLoadOff(); - - // Add BRCA1 and BRCA2 Genes - CanonicalGene gene = new CanonicalGene(1956, "EGFR", - new HashSet(Arrays.asList("ERBB1|ERBB|HER1".split("\\|")))); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - int num = daoGeneOptimized.addGene(gene); - assertEquals(4, num); - - // restore bulk setting - if (isBulkLoad) { - MySQLbulkLoader.bulkLoadOn(); - } - } - - /** - * Validates BRCA1. - */ - @Test - public void testBRCA1ById() { - CanonicalGene gene = DaoGeneOptimized.getInstance().getGene(672); - assertEquals("BRCA1", gene.getHugoGeneSymbolAllCaps()); - assertEquals(672, gene.getEntrezGeneId()); - } - - /** - * Validates BRCA2. - */ - @Test - public void testBRCA2ById() { - CanonicalGene gene = DaoGeneOptimized.getInstance().getGene(675); - assertEquals("BRCA2", gene.getHugoGeneSymbolAllCaps()); - assertEquals(675, gene.getEntrezGeneId()); - } - - /** - * Validates BRCA2. - */ - @Test - public void testBRCA2ByName() { - CanonicalGene gene = DaoGeneOptimized.getInstance().getGene("BRCA2"); - assertEquals("BRCA2", gene.getHugoGeneSymbolAllCaps()); - assertEquals(675, gene.getEntrezGeneId()); - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGenePanel.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGenePanel.java deleted file mode 100644 index dab290ec2b3..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGenePanel.java +++ /dev/null @@ -1,88 +0,0 @@ -/* - * Copyright (c) 2020 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; - -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import org.junit.Test; -import org.junit.runner.RunWith; -import static org.junit.Assert.*; - -import java.util.*; - -/** - * JUnit Tests for DaoGenePanel. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoGenePanel { - - /** - * Tests DaoGenePanel.addGenePanel(). - * @throws DaoException Database Error. - */ - @Test - public void testAddGenePanel() throws DaoException { - - CanonicalGene brca1 = DaoGeneOptimized.getInstance().getGene("BRCA1"); - CanonicalGene brca2 = DaoGeneOptimized.getInstance().getGene("BRCA2"); - CanonicalGene kras = DaoGeneOptimized.getInstance().getGene("KRAS"); - HashSet canonicalGenes = new HashSet(); - canonicalGenes.add(brca1); - canonicalGenes.add(brca2); - canonicalGenes.add(kras); - - DaoGenePanel.addGenePanel("testGenePanel", "Test gene panel description", canonicalGenes); - - GenePanel genePanel = DaoGenePanel.getGenePanelByStableId("testGenePanel"); - assertTrue(genePanel != null); - assertTrue(genePanel.getStableId().equals("testGenePanel")); - assertTrue(genePanel.getDescription().equals("Test gene panel description")); - assertTrue(genePanel.getDescription().equals("Test gene panel description")); - assertEquals(genePanel.getGenes().size(), 3); - - DaoGenePanel.deleteGenePanel(genePanel); - genePanel = DaoGenePanel.getGenePanelByStableId("testGenePanel"); - assertTrue(genePanel == null); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGeneticAlteration.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGeneticAlteration.java deleted file mode 100644 index 5e5a10b9c22..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGeneticAlteration.java +++ /dev/null @@ -1,130 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.*; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.util.*; - -/** - * JUnit tests for DaoGeneticAlteration class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoGeneticAlteration { - - CancerStudy study; - ArrayList internalSampleIds; - int geneticProfileId; - - @Before - public void setUp() throws DaoException { - study = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub"); - geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_mutations").getGeneticProfileId(); - - internalSampleIds = new ArrayList(); - Patient p = new Patient(study, "TCGA-1"); - int pId = DaoPatient.addPatient(p); - - DaoSample.reCache(); - Sample s = new Sample("XCGA-A1-A0SB-01", pId, "brca"); - internalSampleIds.add(DaoSample.addSample(s)); - s = new Sample("XCGA-A1-A0SD-01", pId, "brca"); - internalSampleIds.add(DaoSample.addSample(s)); - s = new Sample("XCGA-A1-A0SE-01", pId, "brca"); - internalSampleIds.add(DaoSample.addSample(s)); - s = new Sample("XCGA-A1-A0SF-01", pId, "brca"); - internalSampleIds.add(DaoSample.addSample(s)); - } - - @Test - public void testDaoGeneticAlterationBulkOn() throws DaoException { - - // test with MySQLbulkLoader.isBulkLoad() - runTheTest(); - } - - @Test - public void testDaoGeneticAlterationBulkOff() throws DaoException { - - // test without MySQLbulkLoader.isBulkLoad() - MySQLbulkLoader.bulkLoadOff(); - runTheTest(); - MySQLbulkLoader.bulkLoadOn(); - } - - private void runTheTest() throws DaoException{ - - // Add the Sample List - int numRows = DaoGeneticProfileSamples.addGeneticProfileSamples(geneticProfileId, internalSampleIds); - assertEquals (1, numRows); - - // Add Some Data - String data = "200:400:600:800"; - String values[] = data.split(":"); - DaoGeneticAlteration dao = DaoGeneticAlteration.getInstance(); - numRows = dao.addGeneticAlterations(geneticProfileId, 672, values); - assertEquals (1, numRows); - - // if bulkLoading, execute LOAD FILE - if( MySQLbulkLoader.isBulkLoad()){ - MySQLbulkLoader.flushAll(); - } - - HashMap valueMap = dao.getGeneticAlterationMap(geneticProfileId, 672); - assertEquals ("200", valueMap.get(internalSampleIds.get(0))); - assertEquals ("400", valueMap.get(internalSampleIds.get(1))); - assertEquals ("600", valueMap.get(internalSampleIds.get(2))); - assertEquals ("800", valueMap.get(internalSampleIds.get(3))); - - // Test the getGenesInProfile method - Set geneSet = dao.getGenesInProfile(geneticProfileId); - ArrayList geneList = new ArrayList (geneSet); - assertEquals (1, geneList.size()); - CanonicalGene gene = geneList.get(0); - assertEquals ("BRCA1", gene.getHugoGeneSymbolAllCaps()); - assertEquals (672, gene.getEntrezGeneId()); - - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGeneticProfile.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGeneticProfile.java deleted file mode 100644 index 8fe0569b8f9..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGeneticProfile.java +++ /dev/null @@ -1,158 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.dao; - -import java.util.ArrayList; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.*; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; -import static org.junit.Assert.*; - -/** - * JUnit tests for DaoGeneticProfile class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoGeneticProfile { - - int studyId; - - @Before - public void setUp() throws DaoException - { - studyId = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub").getInternalId(); - DaoGeneticProfile.reCache(); - } - - @Test - public void testDaoGetAllGeneticProfiles() throws DaoException { - - ArrayList list = DaoGeneticProfile.getAllGeneticProfiles(studyId); - assertEquals(7, list.size()); - } - - @Test - public void testDaoCheckGeneticProfiles() throws DaoException { - - ArrayList list = DaoGeneticProfile.getAllGeneticProfiles(studyId); - GeneticProfile geneticProfile = list.get(0); - assertEquals(studyId, geneticProfile.getCancerStudyId()); - assertEquals("Putative copy-number alterations from GISTIC", geneticProfile.getProfileName()); - assertEquals(GeneticAlterationType.COPY_NUMBER_ALTERATION, geneticProfile.getGeneticAlterationType()); - assertEquals("Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification.", - geneticProfile.getProfileDescription()); - - geneticProfile = list.get(1); - assertEquals(studyId, geneticProfile.getCancerStudyId()); - assertEquals("mRNA expression (microarray)", geneticProfile.getProfileName()); - assertEquals(GeneticAlterationType.MRNA_EXPRESSION, geneticProfile.getGeneticAlterationType()); - assertEquals(false, geneticProfile.showProfileInAnalysisTab()); - } - - @Test - public void testDaoCreateGeneticProfile() throws DaoException { - - GeneticProfile geneticProfile = new GeneticProfile(); - geneticProfile.setCancerStudyId(studyId); - geneticProfile.setProfileName("test profile"); - geneticProfile.setStableId("test"); - geneticProfile.setGeneticAlterationType(GeneticAlterationType.STRUCTURAL_VARIANT); - geneticProfile.setDatatype("test"); - DaoGeneticProfile.addGeneticProfile(geneticProfile); - - GeneticProfile readGeneticProfile = DaoGeneticProfile.getGeneticProfileByStableId("test"); - assertEquals(studyId, readGeneticProfile.getCancerStudyId()); - assertEquals("test", readGeneticProfile.getStableId()); - assertEquals("test profile", readGeneticProfile.getProfileName()); - assertEquals(GeneticAlterationType.STRUCTURAL_VARIANT, readGeneticProfile.getGeneticAlterationType()); - } - - @Test - public void testDaoGetGeneticProfileByStableId() throws DaoException { - - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_gistic"); - assertEquals(studyId, geneticProfile.getCancerStudyId()); - assertEquals("Putative copy-number alterations from GISTIC", geneticProfile.getProfileName()); - assertEquals(GeneticAlterationType.COPY_NUMBER_ALTERATION, geneticProfile.getGeneticAlterationType()); - } - - @Test - public void testDaoGetGeneticProfileByInternalId() throws DaoException { - - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileById(2); - assertEquals(studyId, geneticProfile.getCancerStudyId()); - assertEquals("Putative copy-number alterations from GISTIC", geneticProfile.getProfileName()); - assertEquals(GeneticAlterationType.COPY_NUMBER_ALTERATION, geneticProfile.getGeneticAlterationType()); - } - - @Test - public void testDaoDeleteGeneticProfile() throws DaoException { - - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileById(2); - - assertEquals(7, DaoGeneticProfile.getCount()); - DaoGeneticProfile.deleteGeneticProfile(geneticProfile); - assertEquals(6, DaoGeneticProfile.getCount()); - - ArrayList list = DaoGeneticProfile.getAllGeneticProfiles(studyId); - assertEquals(6, list.size()); - geneticProfile = list.get(0); - assertEquals(studyId, geneticProfile.getCancerStudyId()); - assertEquals("mRNA expression (microarray)", geneticProfile.getProfileName()); - assertEquals(GeneticAlterationType.MRNA_EXPRESSION, geneticProfile.getGeneticAlterationType()); - } - - @Test - public void testDaoUpdateGeneticProfile() throws DaoException { - - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_gistic"); - - assertTrue(DaoGeneticProfile.updateNameAndDescription( - geneticProfile.getGeneticProfileId(), "Updated Name", - "Updated Description")); - ArrayList list = DaoGeneticProfile.getAllGeneticProfiles(studyId); - assertEquals(7, list.size()); - geneticProfile = list.get(0); - assertEquals(studyId, geneticProfile.getCancerStudyId()); - assertEquals("Updated Name", geneticProfile.getProfileName()); - assertEquals(GeneticAlterationType.COPY_NUMBER_ALTERATION, geneticProfile.getGeneticAlterationType()); - assertEquals("Updated Description", geneticProfile.getProfileDescription()); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGeneticProfileSamples.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGeneticProfileSamples.java deleted file mode 100644 index b9bd8e5a1d1..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGeneticProfileSamples.java +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.*; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; - -import static org.junit.Assert.*; - -import java.util.ArrayList; - -/** - * JUnit Tests for the Dao Genetic Profile Cases Class. - * - * @author Ethan Cerami. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -public class TestDaoGeneticProfileSamples { - - CancerStudy study; - ArrayList internalSampleIds; - int geneticProfileId; - - @Before - public void setUp() throws DaoException { - study = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub"); - geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_mutations").getGeneticProfileId(); - - internalSampleIds = new ArrayList(); - Patient p = new Patient(study, "TCGA-1"); - int pId = DaoPatient.addPatient(p); - - DaoSample.reCache(); - Sample s = new Sample("XCGA-A1-A0SB-01", pId, "brca"); - internalSampleIds.add(DaoSample.addSample(s)); - s = new Sample("XCGA-A1-A0SD-01", pId, "brca"); - internalSampleIds.add(DaoSample.addSample(s)); - s = new Sample("XCGA-A1-A0SE-01", pId, "brca"); - internalSampleIds.add(DaoSample.addSample(s)); - s = new Sample("XCGA-A1-A0SF-01", pId, "brca"); - internalSampleIds.add(DaoSample.addSample(s)); - } - - /** - * Tests the Dao Genetic Profile Samples Class. - * @throws DaoException Database Exception. - */ - @Test - public void testDaoGeneticProfileSamples() throws DaoException { - - ArrayList orderedSampleList = new ArrayList(); - int numRows = DaoGeneticProfileSamples.addGeneticProfileSamples(geneticProfileId, internalSampleIds); - - assertEquals (1, numRows); - - orderedSampleList = DaoGeneticProfileSamples.getOrderedSampleList(geneticProfileId); - assertEquals (4, orderedSampleList.size()); - - // Test the Delete method - DaoGeneticProfileSamples.deleteAllSamplesInGeneticProfile(geneticProfileId); - orderedSampleList = DaoGeneticProfileSamples.getOrderedSampleList(geneticProfileId); - assertEquals (0, orderedSampleList.size()); - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGistic.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGistic.java deleted file mode 100644 index 5de4c153b30..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoGistic.java +++ /dev/null @@ -1,99 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.util.Arrays; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGistic; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Gistic; -import org.mskcc.cbio.portal.validate.validationException; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.sql.SQLException; -import java.util.ArrayList; - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoGistic { - - @Test - public void testDaoGistic() throws SQLException, DaoException, validationException { - - // initialize dummy parameters - CanonicalGene brca1 = DaoGeneOptimized.getInstance().getGene("BRCA1"); - CanonicalGene brca2 = DaoGeneOptimized.getInstance().getGene("BRCA2"); - CanonicalGene kras = DaoGeneOptimized.getInstance().getGene("KRAS"); - - ArrayList geneList = - new ArrayList(Arrays.asList(brca1, brca2, kras)); - - Gistic gisticIn1; - Gistic gisticIn2; - gisticIn1 = new Gistic(1, 1, "1q11.1", 1, 2, 0.01f, geneList, Gistic.AMPLIFIED); - gisticIn2 = new Gistic(1, 2, "2q22.2", 1, 2, 0.01f, geneList, Gistic.AMPLIFIED); - - // end initialize - - assertEquals(Gistic.NO_SUCH_GISTIC, gisticIn1.getInternalId()); - // -- put stuff in -- - DaoGistic.addGistic(gisticIn1); - // InternalId is auto-incremented by the db, starting at 1 - //assertEquals(1, gisticIn1.getInternalId()); - DaoGistic.addGistic(gisticIn2); - //assertEquals(2, gisticIn2.getInternalId()); - DaoGistic.deleteGistic(2); - //assertEquals(1, gisticIn1.getInternalId()); - DaoGistic.addGistic(gisticIn2); - - // -- get stuff back -- - -// DaoGistic.getGisticByROI("1q11", 1,2); Perhaps this is a new project of some sort? -// ROIs across various cancers. - - ArrayList gisticOut = DaoGistic.getAllGisticByCancerStudyId(1); - assertTrue(gisticOut != null); - //assertEquals(2, gisticOut.size()); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoMutSig.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoMutSig.java deleted file mode 100644 index 1794d2b4dad..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoMutSig.java +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.MutSig; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.io.IOException; - -/** - * @author Lennart Bastian - */ - - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoMutSig { - - /** - * Tests DaoGene and DaoGeneOptimized. - * - * @throws org.mskcc.cbio.portal.dao.DaoException - * Database Error. - */ - - @Test - public void testDaoMutSig() throws DaoException, IOException { - - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - - // Add Gene TP53 to both gene table and mut_sig table - CanonicalGene gene1 = new CanonicalGene(10298321, "TP53"); - daoGeneOptimized.addGene(gene1); - MutSig tp53 = new MutSig(1, gene1, 1, 145177, 48, 1E-11f, 1E-8f); - - // Add Gene PTEN to both gene table and mut_sig table - CanonicalGene gene2 = new CanonicalGene(10298321, "PTEN"); - daoGeneOptimized.addGene(gene2); - MutSig pten = new MutSig(1, gene2, 2, 156252, 34, 1E-11f, 1E-8f); - DaoMutSig.addMutSig(pten); - - //get tp53 from mutsig table using hugoGeneSymbol - MutSig mutSig = DaoMutSig.getMutSig("TP53", 1); - CanonicalGene testGene = mutSig.getCanonicalGene(); - assertTrue("TP53".equals(testGene.getHugoGeneSymbolAllCaps())); - assertEquals(1, mutSig.getCancerType()); - - //get pten from mutsig table using entrez ID - long foo = 10298321; - MutSig mutSig2 = DaoMutSig.getMutSig(foo, 1); - CanonicalGene testGene2 = mutSig2.getCanonicalGene(); - assertEquals(10298321, testGene2.getEntrezGeneId()); - assertEquals(1, mutSig2.getCancerType()); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoMutation.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoMutation.java deleted file mode 100644 index d55b2085cd1..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoMutation.java +++ /dev/null @@ -1,258 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.io.IOException; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.*; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.util.*; - -import com.fasterxml.jackson.databind.ObjectMapper; - -import org.junit.Assert; - -/** - * JUnit tests for DaoMutation class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoMutation { - - int geneticProfileId; - int sampleId; - CanonicalGene gene; - - @Before - public void setUp() throws DaoException { - int studyId = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub").getInternalId(); - ArrayList list = DaoGeneticProfile.getAllGeneticProfiles(studyId); - geneticProfileId = list.get(0).getGeneticProfileId(); - - sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-A1-A0SB-01").getInternalId(); - - gene = new CanonicalGene(321, "BLAH"); - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - daoGeneOptimized.addGene(gene); - } - - @Test - public void testDaoMutation() throws DaoException { - MySQLbulkLoader.bulkLoadOn(); - runTheTest(); - } - - private void runTheTest() throws DaoException{ - // Add a fake gene - - ExtendedMutation mutation = new ExtendedMutation(); - - mutation.setMutationEventId(1); - mutation.setKeyword("key"); - mutation.setGeneticProfileId(geneticProfileId); - mutation.setSampleId(sampleId); - mutation.setGene(gene); - mutation.setValidationStatus("validated"); - mutation.setMutationStatus("somatic"); - mutation.setMutationType("missense"); - mutation.setChr("chr1"); - mutation.setStartPosition(10000); - mutation.setEndPosition(20000); - mutation.setSequencingCenter("Broad"); - mutation.setSequencer("SOLiD"); - mutation.setProteinChange("BRCA1_123"); - mutation.setNcbiBuild("37/hg19"); - mutation.setStrand("+"); - mutation.setVariantType("Consolidated"); - mutation.setReferenceAllele("ATGC"); - mutation.setTumorSeqAllele1("ATGC"); - mutation.setTumorSeqAllele2("ATGC"); - mutation.setTumorSeqAllele("ATGC"); - mutation.setDbSnpRs("rs12345"); - mutation.setDbSnpValStatus("by2Hit2Allele;byCluster"); - mutation.setMatchedNormSampleBarcode("TCGA-02-0021-10A-01D-0002-04"); - mutation.setMatchNormSeqAllele1("TGCA"); - mutation.setMatchNormSeqAllele2("TGCA"); - mutation.setTumorValidationAllele1("AT-GC"); - mutation.setTumorValidationAllele2("AT-GC"); - mutation.setMatchNormValidationAllele1("C"); - mutation.setMatchNormValidationAllele2("G"); - mutation.setVerificationStatus("Verified"); - mutation.setSequencingPhase("Phase_6"); - mutation.setSequenceSource("PCR;Capture;WGS"); - mutation.setValidationMethod("Sanger_PCR_WGA;Sanger_PCR_gDNA"); - mutation.setScore("NA"); - mutation.setBamFile("NA"); - mutation.setTumorAltCount(6); - mutation.setTumorRefCount(16); - mutation.setNormalAltCount(8); - mutation.setNormalRefCount(18); - mutation.setCodonChange("c.(133-135)TCT>TTT"); - mutation.setRefseqMrnaId("NM_001904"); - mutation.setUniprotAccession("P35222"); - mutation.setProteinPosStart(666); - mutation.setProteinPosEnd(678); - mutation.setCanonicalTranscript(true); - mutation.setAnnotationJson(makeMockAnnotationJsonString()); - - DaoMutation.addMutation(mutation,true); - - // if bulkLoading, execute LOAD FILE - if( MySQLbulkLoader.isBulkLoad()){ - MySQLbulkLoader.flushAll(); - } - ArrayList mutationList = DaoMutation.getMutations(geneticProfileId, 1, 321); - validateMutation(mutationList.get(0)); - - // Test the getGenesInProfile method - Set geneSet = DaoMutation.getGenesInProfile(geneticProfileId); - assertEquals(1, geneSet.size()); - - ArrayList geneList = new ArrayList(geneSet); - CanonicalGene gene = geneList.get(0); - assertEquals(321, gene.getEntrezGeneId()); - assertEquals("BLAH", gene.getHugoGeneSymbolAllCaps()); - } - - private void validateMutation(ExtendedMutation mutation) { - assertEquals(geneticProfileId, mutation.getGeneticProfileId()); - assertEquals(sampleId, mutation.getSampleId()); - assertEquals(321, mutation.getEntrezGeneId()); - assertEquals("validated", mutation.getValidationStatus()); - assertEquals("somatic", mutation.getMutationStatus()); - assertEquals("missense", mutation.getMutationType()); - assertEquals("chr1", mutation.getChr()); - assertEquals(10000, mutation.getStartPosition()); - assertEquals(20000, mutation.getEndPosition()); - assertEquals("Broad", mutation.getSequencingCenter()); - assertEquals("SOLiD", mutation.getSequencer()); - assertEquals("BRCA1_123", mutation.getProteinChange()); - assertEquals("37/hg19", mutation.getNcbiBuild()); - assertEquals("+", mutation.getStrand()); - assertEquals("Consolidated", mutation.getVariantType()); - assertEquals("ATGC", mutation.getReferenceAllele()); - assertEquals("ATGC", mutation.getTumorSeqAllele1()); - assertEquals("ATGC", mutation.getTumorSeqAllele2()); - assertEquals("rs12345", mutation.getDbSnpRs()); - assertEquals("by2Hit2Allele;byCluster", mutation.getDbSnpValStatus()); - assertEquals("TCGA-02-0021-10A-01D-0002-04", mutation.getMatchedNormSampleBarcode()); - assertEquals("TGCA", mutation.getMatchNormSeqAllele1()); - assertEquals("TGCA", mutation.getMatchNormSeqAllele2()); - assertEquals("AT-GC", mutation.getTumorValidationAllele1()); - assertEquals("AT-GC", mutation.getTumorValidationAllele2()); - assertEquals("C", mutation.getMatchNormValidationAllele1()); - assertEquals("G", mutation.getMatchNormValidationAllele2()); - assertEquals("Verified", mutation.getVerificationStatus()); - assertEquals("Phase_6", mutation.getSequencingPhase()); - assertEquals("PCR;Capture;WGS", mutation.getSequenceSource()); - assertEquals("Sanger_PCR_WGA;Sanger_PCR_gDNA", mutation.getValidationMethod()); - assertEquals("NA", mutation.getScore()); - assertEquals("NA", mutation.getBamFile()); - assertEquals(Integer.valueOf(6), mutation.getTumorAltCount()); - assertEquals(Integer.valueOf(16), mutation.getTumorRefCount()); - assertEquals(Integer.valueOf(8), mutation.getNormalAltCount()); - assertEquals(Integer.valueOf(18), mutation.getNormalRefCount()); - assertEquals("c.(133-135)TCT>TTT", mutation.getCodonChange()); - assertEquals("NM_001904", mutation.getRefseqMrnaId()); - assertEquals("P35222", mutation.getUniprotAccession()); - assertEquals(666, mutation.getProteinPosStart()); - assertEquals(678, mutation.getProteinPosEnd()); - assertEquals(true, mutation.isCanonicalTranscript()); - validateMockAnnotationJson(mutation); - - } - - private void validateMockAnnotationJson(ExtendedMutation mutation) { - Map> annotationJsonMap = new HashMap<>(); - ObjectMapper mapper = new ObjectMapper(); - try { - annotationJsonMap = mapper.readValue(mutation.getAnnotationJson(), annotationJsonMap.getClass()); - } catch (IOException ex) { - throw new RuntimeException(ex); - } - Map> expectedAnnotationJsonMap = makeMockExpectedAnnotationJsonMap(); - - // confirm expected sizes - Assert.assertTrue(annotationJsonMap.containsKey("namespace1")); - Assert.assertEquals(expectedAnnotationJsonMap.get("namespace1").size(), annotationJsonMap.get("namespace1").size()); - Assert.assertEquals(2, annotationJsonMap.get("namespace1").size()); - Assert.assertTrue(annotationJsonMap.containsKey("namespace2")); - Assert.assertEquals(1, annotationJsonMap.get("namespace2").size()); - Assert.assertEquals(expectedAnnotationJsonMap.get("namespace2").size(), annotationJsonMap.get("namespace2").size()); - - // compare namespace 1 annotation map values - Map namespace1Map = annotationJsonMap.get("namespace1"); - Map expectedNamespace1Map = expectedAnnotationJsonMap.get("namespace1"); - Assert.assertEquals(expectedNamespace1Map.get("header1"), namespace1Map.get("header1")); - Assert.assertEquals(expectedNamespace1Map.get("header2"), namespace1Map.get("header2")); - - // compare namespace 2 annotation map values - Map namespace2Map = annotationJsonMap.get("namespace2"); - Map expectedNamespace2Map = expectedAnnotationJsonMap.get("namespace2"); - Assert.assertEquals(expectedNamespace2Map.get("header1"), namespace2Map.get("header1")); - } - - private String makeMockAnnotationJsonString() { - // return annotation json map as a string - ObjectMapper mapper = new ObjectMapper(); - try { - return mapper.writeValueAsString(makeMockExpectedAnnotationJsonMap()); - } catch (IOException ex) { - throw new RuntimeException(ex); - } - } - - private Map> makeMockExpectedAnnotationJsonMap() { - // construct map of namespaces to key-value pairs - Map> annotationJsonMap = new HashMap<>(); - Map namespace1Annotations = new HashMap<>(); - namespace1Annotations.put("header1", "ns1_header1_value"); - namespace1Annotations.put("header2", "ns1_header2_value"); - annotationJsonMap.put("namespace1", namespace1Annotations); - - Map namespace2Annotations = new HashMap<>(); - namespace2Annotations.put("header1", "ns2_header1_value"); - annotationJsonMap.put("namespace2", namespace2Annotations); - return annotationJsonMap; - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoSampleList.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoSampleList.java deleted file mode 100644 index ca359e388e9..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoSampleList.java +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import java.util.ArrayList; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.*; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -/** - * JUnit test for DaoCase List. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoSampleList { - - CancerStudy study; - - @Before - public void setUp() throws DaoException { - study = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub"); - Patient p = new Patient(study, "TCGA-1"); - int pId = DaoPatient.addPatient(p); - DaoSample.addSample(new Sample("TCGA-1-S1", pId, "brca")); - - p = new Patient(study, "TCGA-2"); - pId = DaoPatient.addPatient(p); - DaoSample.addSample(new Sample("TCGA-2-S1", pId, "brca")); - } - - @Test - public void testDaoSampleList() throws DaoException { - DaoSampleList daoSampleList = new DaoSampleList(); - SampleList sampleList = new SampleList(); - sampleList.setName("Name0"); - sampleList.setDescription("Description0"); - sampleList.setStableId("stable_0"); - sampleList.setCancerStudyId(study.getInternalId()); - sampleList.setSampleListCategory(SampleListCategory.ALL_CASES_WITH_CNA_DATA); - ArrayList samples = new ArrayList(); - samples.add("TCGA-1-S1"); - samples.add("TCGA-2-S1"); - sampleList.setSampleList(samples); - daoSampleList.addSampleList(sampleList); - - // Only patients with samples are returned. No samples, no returny in the listy. - SampleList sampleListFromDb = daoSampleList.getSampleListByStableId("stable_0"); - assertEquals("Name0", sampleListFromDb.getName()); - assertEquals("Description0", sampleListFromDb.getDescription()); - assertEquals(SampleListCategory.ALL_CASES_WITH_CNA_DATA, sampleListFromDb.getSampleListCategory()); - assertEquals("stable_0", sampleListFromDb.getStableId()); - assertEquals(2, sampleListFromDb.getSampleList().size()); - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoSampleProfile.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoSampleProfile.java deleted file mode 100644 index 0c95252bed5..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoSampleProfile.java +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import org.mskcc.cbio.portal.model.*; - -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import org.junit.Test; -import org.junit.Before; -import org.junit.runner.RunWith; -import static org.junit.Assert.*; - -import java.util.*; - -/** - * JUnit test for DaoSample class - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoSampleProfile { - - CancerStudy study; - GenePanel genePanel; - ArrayList internalSampleIds; - int geneticProfileId; - - @Before - public void setUp() throws DaoException { - CanonicalGene brca1 = DaoGeneOptimized.getInstance().getGene("BRCA1"); - CanonicalGene brca2 = DaoGeneOptimized.getInstance().getGene("BRCA2"); - CanonicalGene kras = DaoGeneOptimized.getInstance().getGene("KRAS"); - HashSet canonicalGenes = new HashSet(); - canonicalGenes.add(brca1); - canonicalGenes.add(brca2); - canonicalGenes.add(kras); - DaoGenePanel.addGenePanel("testGenePanel", "Test gene panel description", canonicalGenes); - genePanel = DaoGenePanel.getGenePanelByStableId("testGenePanel"); - - study = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub"); - geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_mutations").getGeneticProfileId(); - - internalSampleIds = new ArrayList(); - Patient p = new Patient(study, "TCGA-12345"); - int pId = DaoPatient.addPatient(p); - - DaoSample.reCache(); - Sample s = new Sample("TCGA-12345-01", pId, "brca"); - internalSampleIds.add(DaoSample.addSample(s)); - s = new Sample("TCGA-123456-01", pId, "brca"); - internalSampleIds.add(DaoSample.addSample(s)); - } - - @Test - public void testDaoSampleProfile() throws DaoException { - - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(study.getInternalId(), "TCGA-12345"); - Sample sample = DaoSample.getSampleByPatientAndSampleId(patient.getInternalId(), "TCGA-12345-01"); - - int num = DaoSampleProfile.addSampleProfile(sample.getInternalId(), geneticProfileId, null); - assertEquals(1, num); - - boolean exists = DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId); - assertTrue(exists); - - assertEquals(geneticProfileId, DaoSampleProfile.getProfileIdForSample(sample.getInternalId())); - - sample = DaoSample.getSampleByPatientAndSampleId(patient.getInternalId(), "TCGA-123456-01"); - num = DaoSampleProfile.addSampleProfile(sample.getInternalId(), geneticProfileId, genePanel.getInternalId()); - assertEquals(1, num); - - boolean existsByPanelId = DaoSampleProfile.sampleProfileMappingExistsByPanel(genePanel.getInternalId()); - assertTrue(existsByPanelId); - - ArrayList sampleIds = DaoSampleProfile.getAllSampleIdsInProfile(geneticProfileId); - assertEquals(9, sampleIds.size()); - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoUser.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoUser.java deleted file mode 100644 index ba9c4a9af35..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoUser.java +++ /dev/null @@ -1,106 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -import static org.junit.Assert.*; - -import java.util.ArrayList; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoUser; -import org.mskcc.cbio.portal.model.User; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; -import static org.hamcrest.CoreMatchers.*; - -/** - * JUnit test for DaoUser class. - */ - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoUser { - - @Test - public void testDaoSeededUsers() throws Exception { - ArrayList allUsers = DaoUser.getAllUsers(); - assertEquals(3, allUsers.size()); - } - - @Test - public void testDaoFindUser() throws Exception { - - User user = DaoUser.getUserByEmail("Lonnie@openid.org"); - assertThat(user.getEmail(), is("Lonnie@openid.org")); - } - - - @Test - public void testDaoAddUser() throws Exception { - - User user = new User("joe@mail.com", "Joe Smith", false); - DaoUser.addUser(user); - - assertEquals(null, DaoUser.getUserByEmail("foo")); - assertEquals(user, DaoUser.getUserByEmail("joe@mail.com")); - assertFalse(user.isEnabled()); - - ArrayList allUsers = DaoUser.getAllUsers(); - assertEquals(4, allUsers.size()); - - User foundUser = DaoUser.getUserByEmail("joe@mail.com"); - assertThat(foundUser, is(notNullValue())); - assertThat(user.getEmail(), is("joe@mail.com")); - } - - @Test - public void testDaoRemoveUser() throws Exception { - - DaoUser.deleteUser("Lonnie@openid.org"); - - ArrayList allUsers = DaoUser.getAllUsers(); - assertEquals(2, allUsers.size()); - - for(User user : allUsers) { - assertThat(user.getEmail(), is(not("Lonnie@openid.org"))); - } - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoUserAuthorities.java b/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoUserAuthorities.java deleted file mode 100644 index 393450bb1ae..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/dao/TestDaoUserAuthorities.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.dao; - -// imports -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; - -import java.util.Arrays; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.User; -import org.mskcc.cbio.portal.model.UserAuthorities; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/** - * JUnit test for DaoUserAuthorities class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestDaoUserAuthorities { - - @Test - public void testDaoUserAuthorities() throws Exception { - - User userJoe = new User("joe@goggle.com", "Joe User", true); - User userJane = new User("jane@hotmail.com", "Jane User", true); - UserAuthorities authorities = DaoUserAuthorities.getUserAuthorities(userJoe); - assertEquals(authorities.getAuthorities().size(), 0); - - authorities = new UserAuthorities(userJane.getEmail(), Arrays.asList("ROLE_USER")); - DaoUserAuthorities.addUserAuthorities(authorities); - - authorities = new UserAuthorities(userJoe.getEmail(), Arrays.asList("ROLE_MANAGER", "ROLE_USER")); - DaoUserAuthorities.addUserAuthorities(authorities); - - assertTrue(DaoUserAuthorities.getUserAuthorities(userJoe).getAuthorities().contains("ROLE_MANAGER")); - assertFalse(DaoUserAuthorities.getUserAuthorities(userJane).getAuthorities().contains("ROLE_MANAGER")); - - try { - DaoUserAuthorities.removeUserAuthorities(userJane); - assertFalse(DaoUserAuthorities.getUserAuthorities(userJane).getAuthorities().contains("ROLE_USER")); - } catch (Exception e) { - fail("Should not throw Exception " + e.getMessage()); - } - - assertTrue(DaoUserAuthorities.getUserAuthorities(userJoe) != null); - DaoUserAuthorities.deleteAllRecords(); - assertEquals(DaoUserAuthorities.getUserAuthorities(userJoe).getAuthorities().size(), 0); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/model/TestAnnotatedSampleSets.java b/core/src/test/java/org/mskcc/cbio/portal/model/TestAnnotatedSampleSets.java deleted file mode 100644 index a0827bd2d9d..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/model/TestAnnotatedSampleSets.java +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import static org.junit.Assert.assertEquals; - -import java.util.ArrayList; -import java.util.List; - -import org.junit.Before; -import org.junit.Test; - -/** - * JUnit Tests for the Annotated Sample Sets. - * - * @author Ethan Cerami. - */ -public class TestAnnotatedSampleSets { - - List sampleSetList; - - @Before - public void setUp() { - sampleSetList = new ArrayList(); - SampleList sampleList0 = new SampleList("all", 1, 2, "all gbm", SampleListCategory.OTHER); - SampleList sampleList1 = new SampleList("all", 1, 2, "all tumors", SampleListCategory.OTHER); - SampleList sampleList2 = new SampleList("all", 1, 2, "expression subset 1", SampleListCategory.OTHER); - sampleSetList.add(sampleList0); - sampleSetList.add(sampleList1); - sampleSetList.add(sampleList2); - } - - @Test - public void test1() { - AnnotatedSampleSets annotatedSampleSets = new AnnotatedSampleSets(sampleSetList); - SampleList defaultSampleSet = annotatedSampleSets.getDefaultSampleList(); - assertEquals("all tumors", defaultSampleSet.getName()); - } - @Test - public void test2() { - SampleList sampleList3 = new SampleList("all", 1, 2, "all complete tumors", SampleListCategory.OTHER); - sampleSetList.add(sampleList3); - AnnotatedSampleSets annotatedSampleSets = new AnnotatedSampleSets(sampleSetList); - SampleList defaultSampleSet = annotatedSampleSets.getDefaultSampleList(); - assertEquals("all complete tumors", defaultSampleSet.getName()); - } - @Test - public void test3() { - sampleSetList = new ArrayList(); - AnnotatedSampleSets annotatedSampleSets = new AnnotatedSampleSets(sampleSetList); - SampleList defaultSampleSet = annotatedSampleSets.getDefaultSampleList(); - assertEquals(null, defaultSampleSet); - } - @Test - public void test4() { - sampleSetList = new ArrayList(); - SampleList sampleList0 = new SampleList("exp1", 1, 2, "exp1", SampleListCategory.OTHER); - SampleList sampleList1 = new SampleList("exp2", 1, 2, "exp2", SampleListCategory.OTHER); - SampleList sampleList2 = new SampleList("exp3", 1, 2, "exp3", SampleListCategory.OTHER); - sampleSetList.add(sampleList0); - sampleSetList.add(sampleList1); - sampleSetList.add(sampleList2); - AnnotatedSampleSets annotatedSampleSets = new AnnotatedSampleSets(sampleSetList); - SampleList defaultSampleSet = annotatedSampleSets.getDefaultSampleList(); - assertEquals("exp1", defaultSampleSet.getName()); - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/model/TestCategorizedGeneticProfileSet.java b/core/src/test/java/org/mskcc/cbio/portal/model/TestCategorizedGeneticProfileSet.java deleted file mode 100644 index 637b2956a41..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/model/TestCategorizedGeneticProfileSet.java +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import java.util.ArrayList; -import org.junit.Test; -import static org.junit.Assert.assertEquals; - -/** - * JUnit Tests for the Categorized GeneticProfileSet. - * - * @author Ethan Cerami. - */ -public class TestCategorizedGeneticProfileSet { - - @Test - public void testEmptyList() { - ArrayList profileList = new ArrayList(); - CategorizedGeneticProfileSet categorizedSet = new CategorizedGeneticProfileSet(profileList); - assertEquals (0, categorizedSet.getNumDefaultMutationAndCopyNumberProfiles()); - assertEquals (null, categorizedSet.getDefaultCnaProfile()); - assertEquals (null, categorizedSet.getDefaultMutationProfile()); - } - - @Test - public void testMRNADataOnly() { - ArrayList profileList = new ArrayList(); - addMRNAProfile(profileList); - CategorizedGeneticProfileSet categorizedSet = new CategorizedGeneticProfileSet(profileList); - assertEquals (0, categorizedSet.getNumDefaultMutationAndCopyNumberProfiles()); - assertEquals (null, categorizedSet.getDefaultCnaProfile()); - assertEquals (null, categorizedSet.getDefaultMutationProfile()); - } - - @Test - public void testGisticProfile() { - ArrayList profileList = buildProfileList1(); - CategorizedGeneticProfileSet categorizedSet = new CategorizedGeneticProfileSet(profileList); - assertEquals (2, categorizedSet.getNumDefaultMutationAndCopyNumberProfiles()); - GeneticProfile defaultCnaProfile = categorizedSet.getDefaultCnaProfile(); - assertEquals ("gbm_gistic", defaultCnaProfile.getStableId()); - GeneticProfile defaultMutProfile = categorizedSet.getDefaultMutationProfile(); - assertEquals ("gbm_mut", defaultMutProfile.getStableId()); - } - - @Test - public void testRaeProfile() { - ArrayList profileList = buildProfileList2(); - CategorizedGeneticProfileSet categorizedSet = new CategorizedGeneticProfileSet(profileList); - assertEquals (2, categorizedSet.getNumDefaultMutationAndCopyNumberProfiles()); - GeneticProfile defaultCnaProfile = categorizedSet.getDefaultCnaProfile(); - assertEquals ("gbm_rae", defaultCnaProfile.getStableId()); - GeneticProfile defaultMutProfile = categorizedSet.getDefaultMutationProfile(); - assertEquals ("gbm_mut", defaultMutProfile.getStableId()); - } - - private ArrayList buildProfileList1() { - ArrayList profileList = new ArrayList(); - addCnaPathwayProfile(profileList); - addGisticProfile(profileList); - addMutationProfile(profileList); - return profileList; - } - - private ArrayList buildProfileList2() { - ArrayList profileList = new ArrayList(); - addCnaPathwayProfile(profileList); - addRaeProfile(profileList); - addMutationProfile(profileList); - return profileList; - } - - private void addMRNAProfile(ArrayList profileList) { - GeneticProfile geneticProfile = new GeneticProfile("gbm_mrna", 1, - GeneticAlterationType.MRNA_EXPRESSION, - "CONTINUOUS", "GBM mRNA", "GBM Affymetrix mRNA", true); - profileList.add(geneticProfile); - } - - private void addRaeProfile(ArrayList profileList) { - GeneticProfile gisticProfile = new GeneticProfile("gbm_rae", 1, - GeneticAlterationType.COPY_NUMBER_ALTERATION, - "DISCRETE", "GBM RAE", "GBM RAE Results", true); - profileList.add(gisticProfile); - } - - private void addMutationProfile(ArrayList profileList) { - GeneticProfile mutationProfile = new GeneticProfile("gbm_mut", 1, - GeneticAlterationType.MUTATION_EXTENDED, - "MAF", "GBM Mutations", "GBM Whole Exome Mutations", true); - profileList.add(mutationProfile); - } - - private void addGisticProfile(ArrayList profileList) { - GeneticProfile gisticProfile = new GeneticProfile("gbm_gistic", 1, - GeneticAlterationType.COPY_NUMBER_ALTERATION, - "DISCRETE", "GBM GISTIC", "GBM GISTIC Results", true); - profileList.add(gisticProfile); - } - - private void addCnaPathwayProfile(ArrayList profileList) { - GeneticProfile otherCNAProfile = new GeneticProfile("cna_pathways", 1, - GeneticAlterationType.COPY_NUMBER_ALTERATION, - "DISCRETE", "CNA Pathways", "CNA Pathway Results", true); - profileList.add(otherCNAProfile); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/model/TestExtendedMutationMap.java b/core/src/test/java/org/mskcc/cbio/portal/model/TestExtendedMutationMap.java deleted file mode 100644 index e64676d3420..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/model/TestExtendedMutationMap.java +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; -import static org.junit.Assert.assertEquals; - -import java.util.ArrayList; - -import org.junit.Test; - - - -/** - * Tests the Extended Mutation Map. - * - * @author Ethan Cerami. - */ -public class TestExtendedMutationMap { - private static final String BRCA1 = "BRCA1"; - private static final String BRCA2 = "BRCA2"; - private static final Integer SAMPLE_A = 1; - - @Test - public void test1() { - CanonicalGene brca1 = new CanonicalGene(672, BRCA1); - CanonicalGene brca2 = new CanonicalGene(675, BRCA2); - ExtendedMutation mutation1 = createMutation1(brca1, SAMPLE_A); - ExtendedMutation mutation2 = createMutation1(brca1, SAMPLE_A); - ExtendedMutation mutation3 = createMutation1(brca2, SAMPLE_A); - - ArrayList mutationList = - createMutationList(mutation1, mutation2, mutation3); - - ArrayList sampleList = new ArrayList(); - sampleList.add(SAMPLE_A); - - ExtendedMutationMap map = new ExtendedMutationMap(mutationList, sampleList); - ArrayList mutationReturnList = map.getExtendedMutations(BRCA1, SAMPLE_A); - assertEquals (2, mutationReturnList.size()); - - // Try with mixed sample - mutationReturnList = map.getExtendedMutations("brCA1", SAMPLE_A); - assertEquals (2, mutationReturnList.size()); - - mutationReturnList = map.getExtendedMutations(BRCA2, SAMPLE_A); - assertEquals (1, mutationReturnList.size()); - - mutationReturnList = map.getExtendedMutations(BRCA1); - assertEquals(2, mutationReturnList.size()); - - assertEquals(2, map.getNumGenesWithExtendedMutations()); - assertEquals(2, map.getNumExtendedMutations(BRCA1)); - } - - private ArrayList createMutationList(ExtendedMutation mutation1, - ExtendedMutation mutation2, ExtendedMutation mutation3) { - ArrayList mutationList = new ArrayList(); - mutationList.add(mutation1); - mutationList.add(mutation2); - mutationList.add(mutation3); - return mutationList; - } - - private ExtendedMutation createMutation1(CanonicalGene gene, Integer sampleId) { - ExtendedMutation mutation2 = new ExtendedMutation(); - mutation2.setGene(gene); - mutation2.setSampleId(sampleId); - mutation2.setProteinChange("C22G"); - return mutation2; - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/model/TestGeneticEventComparator.java b/core/src/test/java/org/mskcc/cbio/portal/model/TestGeneticEventComparator.java deleted file mode 100644 index 748c3a0d8e3..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/model/TestGeneticEventComparator.java +++ /dev/null @@ -1,138 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - - -import java.util.ArrayList; -import java.util.EnumSet; - -import org.junit.Assert; -import junit.framework.TestCase; - -import org.junit.Test; -import org.mskcc.cbio.portal.model.GeneticEventImpl.CNA; -import org.mskcc.cbio.portal.model.GeneticEventImpl.MRNA; -import org.mskcc.cbio.portal.model.GeneticEventImpl.RPPA; -import org.mskcc.cbio.portal.model.GeneticEventImpl.mutations; - -public class TestGeneticEventComparator extends TestCase{ - - @Test - public void testGeneticEventComparator() { - GeneticEventComparator aGeneticEventComparator = new GeneticEventComparator(); - - GeneticEventImpl ge1 = new GeneticEventImpl( 1, 1, 1,true ); - testReflexiveEquals( aGeneticEventComparator, ge1, Integer.valueOf(0), false ); - - GeneticEventImpl ge2 = new GeneticEventImpl( 1, 1, 1, true ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, true ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, 0 ); - - ge1 = new GeneticEventImpl( 0, 1, 1, true ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, false ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, 1 ); - - ge1 = new GeneticEventImpl( 2, 1, 1, true ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, false ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, -1 ); - - ge1 = new GeneticEventImpl( 1, 0, 0, true ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, false ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, 1 ); - - ge1 = new GeneticEventImpl( 1, 1, 0, false ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, false ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, 1 ); - - } - - @Test - public void testGeneticEventComparatorArrayListOfEnumSetOfCNAArrayListOfEnumSetOfMRNAArrayListOfEnumSetOfmutations() { - - ArrayList> CNAsortOrder = new ArrayList>(); - CNAsortOrder.add(EnumSet.of(CNA.AMPLIFIED)); - CNAsortOrder.add(EnumSet.of(CNA.HOMODELETED)); - CNAsortOrder.add(EnumSet.of(CNA.GAINED, CNA.DIPLOID, CNA.HEMIZYGOUSLYDELETED)); - CNAsortOrder.add(EnumSet.of(CNA.NONE)); - - GeneticEventComparator aGeneticEventComparator = new GeneticEventComparator( - CNAsortOrder, - GeneticEventComparator.defaultMRNASortOrder(), - GeneticEventComparator.defaultRPPASortOrder(), - GeneticEventComparator.defaultMutationsSortOrder()); - - GeneticEventImpl ge1 = new GeneticEventImpl( CNA.AMPLIFIED, MRNA.NORMAL, RPPA.NORMAL, mutations.MUTATED ); - - Assert.assertEquals( false, aGeneticEventComparator.equals(ge1, Integer.valueOf(0)) ); - - GeneticEventImpl ge2 = new GeneticEventImpl( CNA.AMPLIFIED, MRNA.NORMAL, RPPA.NORMAL, mutations.MUTATED ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, true ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, 0 ); - - ge2 = new GeneticEventImpl( CNA.HOMODELETED, MRNA.NORMAL, RPPA.NORMAL, mutations.MUTATED ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, false ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, -1 ); - - ge1 = new GeneticEventImpl( CNA.GAINED, MRNA.NORMAL, RPPA.NORMAL, mutations.MUTATED ); - ge2 = new GeneticEventImpl( CNA.DIPLOID, MRNA.NORMAL, RPPA.NORMAL, mutations.MUTATED ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, true ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, 0 ); - - ge2 = new GeneticEventImpl( CNA.HOMODELETED, MRNA.NORMAL, RPPA.NORMAL, mutations.MUTATED ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, false ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, 1 ); - - ge2 = new GeneticEventImpl( CNA.HOMODELETED, MRNA.NORMAL, RPPA.NORMAL, mutations.UNMUTATED ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, false ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, 1 ); - - ge2 = new GeneticEventImpl( CNA.DIPLOID, MRNA.UPREGULATED, RPPA.UPREGULATED, mutations.UNMUTATED ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, false ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, 1 ); - - ge2 = new GeneticEventImpl( CNA.HEMIZYGOUSLYDELETED, MRNA.DOWNREGULATED, RPPA.DOWNREGULATED, mutations.UNMUTATED ); - testReflexiveEquals( aGeneticEventComparator, ge1, ge2, false ); - testReflexiveCompare( aGeneticEventComparator, ge1, ge2, -1 ); - - } - - private void testReflexiveCompare( GeneticEventComparator aGeneticEventComparator, GeneticEventImpl ge1, GeneticEventImpl ge2, int expected ){ - Assert.assertEquals( expected, aGeneticEventComparator.compare(ge1, ge2) ); - Assert.assertEquals( -expected, aGeneticEventComparator.compare(ge2, ge1) ); - } - - private void testReflexiveEquals( GeneticEventComparator aGeneticEventComparator, Object ge1, Object ge2, boolean expected ){ - Assert.assertEquals( expected, aGeneticEventComparator.equals(ge1, ge2) ); - Assert.assertEquals( expected, aGeneticEventComparator.equals(ge2, ge1) ); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/model/TestGeneticEventImpl.java b/core/src/test/java/org/mskcc/cbio/portal/model/TestGeneticEventImpl.java deleted file mode 100644 index b181f46973a..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/model/TestGeneticEventImpl.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.model; - -import static org.junit.Assert.fail; -import org.junit.Assert; - -import org.junit.Test; -import org.mskcc.cbio.portal.model.GeneticEventImpl.CNA; -import org.mskcc.cbio.portal.model.GeneticEventImpl.MRNA; -import org.mskcc.cbio.portal.model.GeneticEventImpl.mutations; - -public class TestGeneticEventImpl { - - @Test - public void testGeneticEventImplIntIntBoolean() { - - GeneticEventImpl aGeneticEventImpl = new GeneticEventImpl( 2, 1, 1, true ); - Assert.assertEquals( CNA.AMPLIFIED, aGeneticEventImpl.getCnaValue() ); - Assert.assertEquals( true, aGeneticEventImpl.isCnaAmplified() ); - Assert.assertEquals( false, aGeneticEventImpl.isCnaHeterozygousDeleted() ); - Assert.assertEquals( false, aGeneticEventImpl.isCnaHomozygouslyDeleted() ); - - Assert.assertEquals( MRNA.UPREGULATED, aGeneticEventImpl.getMrnaValue() ); - Assert.assertEquals( true, aGeneticEventImpl.isMRNAUpRegulated() ); - Assert.assertEquals( false, aGeneticEventImpl.isMRNADownRegulated() ); - - Assert.assertEquals( mutations.MUTATED, aGeneticEventImpl.getMutationValue() ); - Assert.assertEquals( true, aGeneticEventImpl.isMutated() ); - - aGeneticEventImpl = new GeneticEventImpl( 0, 0, 0, false ); - Assert.assertEquals( CNA.DIPLOID, aGeneticEventImpl.getCnaValue() ); - Assert.assertEquals( false, aGeneticEventImpl.isCnaAmplified() ); - Assert.assertEquals( false, aGeneticEventImpl.isCnaHeterozygousDeleted() ); - Assert.assertEquals( false, aGeneticEventImpl.isCnaHomozygouslyDeleted() ); - - Assert.assertEquals( MRNA.NORMAL, aGeneticEventImpl.getMrnaValue() ); - Assert.assertEquals( false, aGeneticEventImpl.isMRNAUpRegulated() ); - Assert.assertEquals( false, aGeneticEventImpl.isMRNADownRegulated() ); - - Assert.assertEquals( mutations.UNMUTATED, aGeneticEventImpl.getMutationValue() ); - Assert.assertEquals( false, aGeneticEventImpl.isMutated() ); - - try { - aGeneticEventImpl = new GeneticEventImpl( 3, 2, 2, true ); - fail("Should throw IllegalArgumentException"); - } catch (IllegalArgumentException e) { - Assert.assertEquals("Illegal cnaValue: 3", e.getMessage() ); - } - - try { - aGeneticEventImpl = new GeneticEventImpl( 1, 2, 2, true ); - fail("Should throw IllegalArgumentException"); - } catch (IllegalArgumentException e) { - Assert.assertEquals("Illegal mrnaValue: 2", e.getMessage() ); - } - - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/mut_diagram/TestPileup.java b/core/src/test/java/org/mskcc/cbio/portal/mut_diagram/TestPileup.java deleted file mode 100644 index f2215b06c77..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/mut_diagram/TestPileup.java +++ /dev/null @@ -1,302 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; - -import java.util.Collections; -import java.util.List; - -import org.junit.Test; -import org.mskcc.cbio.portal.model.ExtendedMutation; - -import com.google.common.collect.ImmutableList; - -/** - * Unit test for Pileup. - */ -public final class TestPileup { - - @Test - public void testConstructor() { - Pileup pileup = new Pileup("label", 42, 84, 24); - assertNotNull(pileup); - assertEquals("label", pileup.getLabel()); - assertEquals(42, pileup.getLocation()); - assertEquals(84, pileup.getCount()); - } - - @Test - public void testConstructorEmptyLabel() { - Pileup pileup = new Pileup("", 42, 84, 24); - assertEquals("", pileup.getLabel()); - } - - @Test - public void testConstructorNullLabel() { - Pileup pileup = new Pileup(null, 42, 84, 24); - assertNull(pileup.getLabel()); - } - - @Test(expected=NullPointerException.class) - public void testPileupNullMutations() { - Pileup.pileup(null); - } - - @Test - public void testPileupEmptyMutations() { - List pileups = Pileup.pileup(Collections.emptyList()); - assertNotNull(pileups); - assertTrue(pileups.isEmpty()); - } - - @Test - public void testPileupSingleMutation() { - ExtendedMutation mutation = new ExtendedMutation(); - mutation.setProteinChange("A123K"); - mutation.setSampleId(1); - - List pileups = Pileup.pileup(ImmutableList.of(mutation)); - assertNotNull(pileups); - assertEquals(1, pileups.size()); - Pileup pileup = pileups.get(0); - - assertEquals("A123K", pileup.getLabel()); - assertEquals(123, pileup.getLocation()); - assertEquals(1, pileup.getCount()); - } - - @Test - public void testPileupMultipleMutationsSameLocationDifferentSampleIds() { - ExtendedMutation mutation0 = new ExtendedMutation(); - ExtendedMutation mutation1 = new ExtendedMutation(); - ExtendedMutation mutation2 = new ExtendedMutation(); - mutation0.setProteinChange("A123K"); - mutation1.setProteinChange("A123K"); - mutation2.setProteinChange("A123K"); - mutation0.setSampleId(1); - mutation1.setSampleId(2); - mutation2.setSampleId(3); - - List pileups = Pileup.pileup(ImmutableList.of(mutation0, mutation1, mutation2)); - assertNotNull(pileups); - assertEquals(1, pileups.size()); - Pileup pileup = pileups.get(0); - - assertEquals("A123K", pileup.getLabel()); - assertEquals(123, pileup.getLocation()); - assertEquals(3, pileup.getCount()); - } - - @Test - public void testPileupMultipleMutationsSameLocationSameSampleIds() { - ExtendedMutation mutation0 = new ExtendedMutation(); - ExtendedMutation mutation1 = new ExtendedMutation(); - ExtendedMutation mutation2 = new ExtendedMutation(); - mutation0.setProteinChange("A123K"); - mutation1.setProteinChange("A123K"); - mutation2.setProteinChange("A123K"); - mutation0.setSampleId(1); - mutation1.setSampleId(1); - mutation2.setSampleId(1); - - List pileups = Pileup.pileup(ImmutableList.of(mutation0, mutation1, mutation2)); - assertNotNull(pileups); - assertEquals(1, pileups.size()); - Pileup pileup = pileups.get(0); - - assertEquals("A123K", pileup.getLabel()); - assertEquals(123, pileup.getLocation()); - assertEquals(1, pileup.getCount()); - } - - @Test - public void testPileupMultipleMutationsSameLocationNullSampleId() { - ExtendedMutation mutation0 = new ExtendedMutation(); - ExtendedMutation mutation1 = new ExtendedMutation(); - ExtendedMutation mutation2 = new ExtendedMutation(); - mutation0.setProteinChange("A123K"); - mutation1.setProteinChange("A123K"); - mutation2.setProteinChange("A123K"); - mutation0.setSampleId(1); - mutation1.setSampleId(2); - mutation2.setSampleId(3); - - List pileups = Pileup.pileup(ImmutableList.of(mutation0, mutation1, mutation2)); - assertNotNull(pileups); - assertEquals(1, pileups.size()); - Pileup pileup = pileups.get(0); - - assertEquals("A123K", pileup.getLabel()); - assertEquals(123, pileup.getLocation()); - assertEquals(3, pileup.getCount()); - } - - @Test - public void testPileupMultipleMutationsSameLocationDifferentAminoAcidChange() { - ExtendedMutation mutation0 = new ExtendedMutation(); - ExtendedMutation mutation1 = new ExtendedMutation(); - ExtendedMutation mutation2 = new ExtendedMutation(); - mutation0.setProteinChange("A123K"); - mutation1.setProteinChange("A123K"); - mutation2.setProteinChange("A123G"); - mutation0.setSampleId(1); - mutation1.setSampleId(2); - mutation2.setSampleId(3); - - List pileups = Pileup.pileup(ImmutableList.of(mutation0, mutation1, mutation2)); - assertNotNull(pileups); - assertEquals(1, pileups.size()); - Pileup pileup = pileups.get(0); - - assertEquals("A123G/A123K", pileup.getLabel()); - assertEquals(123, pileup.getLocation()); - assertEquals(3, pileup.getCount()); - } - - // not sure this could happen, unless one caseId can have different phases - @Test - public void testPileupMultipleMutationsSameLocationDifferentAminoAcidChangeSameSampleIds() { - ExtendedMutation mutation0 = new ExtendedMutation(); - ExtendedMutation mutation1 = new ExtendedMutation(); - ExtendedMutation mutation2 = new ExtendedMutation(); - mutation0.setProteinChange("A123K"); - mutation1.setProteinChange("A123K"); - mutation2.setProteinChange("A123G"); - mutation0.setSampleId(1); - mutation1.setSampleId(1); - mutation2.setSampleId(1); - - List pileups = Pileup.pileup(ImmutableList.of(mutation0, mutation1, mutation2)); - assertNotNull(pileups); - assertEquals(1, pileups.size()); - Pileup pileup = pileups.get(0); - - assertEquals("A123G/A123K", pileup.getLabel()); - assertEquals(123, pileup.getLocation()); - assertEquals(2, pileup.getCount()); - } - - @Test - public void testPileupMultipleMutationsDifferentLocations() { - ExtendedMutation mutation0 = new ExtendedMutation(); - ExtendedMutation mutation1 = new ExtendedMutation(); - ExtendedMutation mutation2 = new ExtendedMutation(); - mutation0.setProteinChange("A123K"); - mutation1.setProteinChange("A123K"); - mutation2.setProteinChange("K234G"); - mutation0.setSampleId(1); - mutation1.setSampleId(2); - mutation2.setSampleId(3); - - List pileups = Pileup.pileup(ImmutableList.of(mutation0, mutation1, mutation2)); - assertNotNull(pileups); - assertEquals(2, pileups.size()); - Pileup pileup = pileups.get(0); - if (pileup.getLocation() == 123) { - assertEquals("A123K", pileup.getLabel()); - assertEquals(2, pileup.getCount()); - } - else if (pileup.getLocation() == 234) { - assertEquals("K234G", pileup.getLabel()); - assertEquals(1, pileup.getCount()); - } - else { - fail(); - } - } - - @Test - public void testPileupMultipleMutationsNumberFormatException() { - ExtendedMutation mutation0 = new ExtendedMutation(); - ExtendedMutation mutation1 = new ExtendedMutation(); - ExtendedMutation mutation2 = new ExtendedMutation(); - mutation0.setProteinChange("A123K"); - mutation1.setProteinChange("missense"); - mutation2.setProteinChange("A123K"); - mutation0.setSampleId(1); - mutation1.setSampleId(2); - mutation2.setSampleId(3); - - List pileups = Pileup.pileup(ImmutableList.of(mutation0, mutation1, mutation2)); - assertNotNull(pileups); - assertEquals(1, pileups.size()); - Pileup pileup = pileups.get(0); - - assertEquals("A123K", pileup.getLabel()); - assertEquals(123, pileup.getLocation()); - assertEquals(2, pileup.getCount()); - } - - @Test - public void testPileupMultipleMutationsNullLabel() { - ExtendedMutation mutation0 = new ExtendedMutation(); - ExtendedMutation mutation1 = new ExtendedMutation(); - ExtendedMutation mutation2 = new ExtendedMutation(); - mutation0.setProteinChange("A123K"); - mutation1.setProteinChange(null); - mutation2.setProteinChange("A123K"); - mutation0.setSampleId(1); - mutation1.setSampleId(2); - mutation2.setSampleId(3); - - List pileups = Pileup.pileup(ImmutableList.of(mutation0, mutation1, mutation2)); - assertNotNull(pileups); - assertEquals(1, pileups.size()); - Pileup pileup = pileups.get(0); - - assertEquals("A123K", pileup.getLabel()); - assertEquals(123, pileup.getLocation()); - assertEquals(2, pileup.getCount()); - } - - @Test - public void testPileupsLowercasePDotSAnimoAcidPosition() { - ExtendedMutation mutation = new ExtendedMutation(); - mutation.setProteinChange("p.S310F"); - mutation.setSampleId(1); - - List pileups = Pileup.pileup(ImmutableList.of(mutation)); - assertNotNull(pileups); - assertEquals(1, pileups.size()); - Pileup pileup = pileups.get(0); - - assertEquals("p.S310F", pileup.getLabel()); - assertEquals(310, pileup.getLocation()); - assertEquals(1, pileup.getCount()); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/mut_diagram/TestSequence.java b/core/src/test/java/org/mskcc/cbio/portal/mut_diagram/TestSequence.java deleted file mode 100644 index ecd19d657d4..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/mut_diagram/TestSequence.java +++ /dev/null @@ -1,222 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.mut_diagram; - -import static com.fasterxml.jackson.databind.DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY; -import static com.google.common.collect.Maps.newHashMap; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertNotSame; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertTrue; - -import java.io.InputStream; -import java.io.StringWriter; -import java.util.Collections; -import java.util.List; -import java.util.Map; - -import org.junit.Before; -import org.junit.Test; - -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.databind.type.TypeFactory; -import com.google.common.collect.ImmutableList; - -/** - * Unit test for Sequence. - */ -public class TestSequence { - private Sequence sequence; - - @Before - public void setUp() { - sequence = new Sequence(); - sequence.setLength(42); - Options options = new Options(); - options.setBaseUrl("baseUrl"); - sequence.setOptions(options); - Markup markup = new Markup(); - markup.setStart(24); - sequence.setMarkups(ImmutableList.of(markup)); - Map metadata = newHashMap(); - metadata.put("key", "value"); - sequence.setMetadata(metadata); - Motif motif = new Motif(); - motif.setStart(24); - sequence.setMotifs(ImmutableList.of(motif)); - Region region = new Region(); - region.setStart(24); - sequence.setRegions(ImmutableList.of(region)); - } - - @Test - public void testSerializeToJson() throws Exception { - ObjectMapper objectMapper = new ObjectMapper(); - StringWriter stringWriter = new StringWriter(); - objectMapper.writeValue(stringWriter, sequence); - assertNotNull(stringWriter.toString()); - } - - @Test - public void testDeserializeFromJsonO14640() throws Exception { - ObjectMapper objectMapper = new ObjectMapper(); - objectMapper.configure(ACCEPT_SINGLE_VALUE_AS_ARRAY, true); - TypeFactory typeFactory = objectMapper.getTypeFactory(); - InputStream inputStream = getClass().getResourceAsStream("/O14640.json"); - List sequences = objectMapper.readValue(inputStream, typeFactory.constructCollectionType(List.class, Sequence.class)); - assertNotNull(sequences); - assertEquals(1, sequences.size()); - Sequence s = sequences.get(0); - assertEquals(695, s.getLength()); - assertEquals(5, s.getRegions().size()); - assertEquals(0, s.getMarkups().size()); - assertEquals(7, s.getMotifs().size()); - assertEquals("uniprot", s.getMetadata().get("database")); - } - - @Test - public void testDeserializeFromJsonEGFR_HUMAN() throws Exception { - ObjectMapper objectMapper = new ObjectMapper(); - objectMapper.configure(ACCEPT_SINGLE_VALUE_AS_ARRAY, true); - TypeFactory typeFactory = objectMapper.getTypeFactory(); - InputStream inputStream = getClass().getResourceAsStream("/EGFR_HUMAN.json"); - List sequences = objectMapper.readValue(inputStream, typeFactory.constructCollectionType(List.class, Sequence.class)); - assertNotNull(sequences); - assertEquals(1, sequences.size()); - Sequence s = sequences.get(0); - assertEquals(1210, s.getLength()); - assertEquals(4, s.getRegions().size()); - assertEquals(27, s.getMarkups().size()); - assertEquals(8, s.getMotifs().size()); - assertEquals("uniprot", s.getMetadata().get("database")); - } - - @Test - public void testDeepCopyNullMarkups() { - sequence.setMarkups(null); - Sequence copy = sequence.deepCopy(); - assertNull(copy.getMarkups()); - } - - @Test - public void testDeepCopyNullMetadata() { - sequence.setMetadata(null); - Sequence copy = sequence.deepCopy(); - assertNull(copy.getMetadata()); - } - - @Test - public void testDeepCopyNullMotifs() { - sequence.setMotifs(null); - Sequence copy = sequence.deepCopy(); - assertNull(copy.getMotifs()); - } - - @Test - public void testDeepCopyNullOptions() { - sequence.setOptions(null); - Sequence copy = sequence.deepCopy(); - assertNull(copy.getOptions()); - } - - @Test - public void testDeepCopyOptionsNullBaseUrl() { - Options options = new Options(); - options.setBaseUrl(null); - sequence.setOptions(options); - Sequence copy = sequence.deepCopy(); - assertNotNull(copy.getOptions()); - assertNull(copy.getOptions().getBaseUrl()); - } - - @Test - public void testDeepCopyNullRegions() { - sequence.setRegions(null); - Sequence copy = sequence.deepCopy(); - assertNull(copy.getRegions()); - } - - @Test - public void testDeepCopy() { - Sequence copy = sequence.deepCopy(); - assertNotSame(sequence, copy); - assertEquals(sequence.getLength(), copy.getLength()); - assertEquals(sequence.getMarkups(), copy.getMarkups()); - assertNotSame(sequence.getMarkups(), copy.getMarkups()); - assertEquals(sequence.getMetadata(), copy.getMetadata()); - assertNotSame(sequence.getMetadata(), copy.getMetadata()); - assertEquals(sequence.getMotifs(), copy.getMotifs()); - assertNotSame(sequence.getMotifs(), copy.getMotifs()); - assertEquals(sequence.getOptions().getBaseUrl(), copy.getOptions().getBaseUrl()); - assertNotSame(sequence.getOptions(), copy.getOptions()); - assertEquals(sequence.getRegions(), copy.getRegions()); - assertNotSame(sequence.getRegions(), copy.getRegions()); - } - - @Test - public void testWithMarkupsNullMarkups() { - sequence.setMarkups(null); - Sequence withMarkups = sequence.withMarkups(null); - assertNull(withMarkups.getMarkups()); - } - - @Test - public void testWithMarkupsNullAdditionalMarkups() { - Sequence withMarkups = sequence.withMarkups(null); - assertNotNull(withMarkups.getMarkups()); - assertEquals(1, withMarkups.getMarkups().size()); - assertEquals(24, withMarkups.getMarkups().get(0).getStart()); - } - - @Test - public void testWithMarkupsEmptyAdditionalMarkups() { - List empty = Collections.emptyList(); - Sequence withMarkups = sequence.withMarkups(empty); - assertNotNull(withMarkups.getMarkups()); - assertEquals(1, withMarkups.getMarkups().size()); - assertEquals(24, withMarkups.getMarkups().get(0).getStart()); - } - - @Test - public void testWithMarkups() { - Markup markup = new Markup(); - markup.setStart(13); - Sequence withMarkups = sequence.withMarkups(ImmutableList.of(markup)); - assertNotNull(withMarkups.getMarkups()); - assertEquals(2, withMarkups.getMarkups().size()); - for (Markup m : withMarkups.getMarkups()) { - assertTrue(m.getStart() == 13 || m.getStart() == 24); - } - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TestCallOncoPrintSpecParser.java b/core/src/test/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TestCallOncoPrintSpecParser.java deleted file mode 100644 index 6cc5c20c80c..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TestCallOncoPrintSpecParser.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; -import static org.junit.Assert.*; -import org.junit.Test; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.CallOncoPrintSpecParser; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ParserOutput; - - - -public class TestCallOncoPrintSpecParser { - - // TODO - @Test - public void testCallOncoPrintSpecParser() { - assertTrue(true); - - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TestOncoPrintSpecificationInParser.java b/core/src/test/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TestOncoPrintSpecificationInParser.java deleted file mode 100644 index 30f9e6e2ceb..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TestOncoPrintSpecificationInParser.java +++ /dev/null @@ -1,666 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.io.ByteArrayInputStream; -import java.lang.reflect.InvocationTargetException; -import java.lang.reflect.Method; -import java.util.ArrayList; -import java.util.Iterator; - -import org.antlr.runtime.ANTLRInputStream; -import org.antlr.runtime.CommonTokenStream; -import org.antlr.runtime.RecognitionException; -import org.antlr.runtime.tree.CommonTree; -import org.antlr.runtime.tree.CommonTreeNodeStream; -import org.junit.Assert; -import org.junit.Test; - -/** - * Tests the parser version that generates and walks an AST. - * - * @author Arthur Goldberg - */ -public class TestOncoPrintSpecificationInParser { - - @Test - public void testBadGeneNameInASTParser() { - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - theOncoPrintGeneDisplaySpec.setDefault( 1.0, 1.0 ); - ParserOutput theParserOutput = CallOncoPrintSpecParser.callOncoPrintSpecParser - ( "2-PDE", theOncoPrintGeneDisplaySpec ); - } - - @Test - public void testContinuousDataTypeInequalityInParser() { - - tryAcontinuousDataTypeInequality(GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 1.3f, "Expression <= 1.3"); - tryAcontinuousDataTypeInequality(GeneticDataTypes.Methylation, - ComparisonOp.Greater, 1f, "Methylation > 1"); - tryAcontinuousDataTypeInequality(GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 0f, "Expression <= 0"); - tryAcontinuousDataTypeInequality(GeneticDataTypes.Expression, - ComparisonOp.GreaterEqual, -1.5f, "Expression >=-1.5"); - - // Abbreviations - tryAcontinuousDataTypeInequality(GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 1.3f, "Exp<= 1.3"); - tryAcontinuousDataTypeInequality(GeneticDataTypes.Methylation, - ComparisonOp.Greater, 1f, "Me>1"); - tryAcontinuousDataTypeInequality(GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 0f, "E<= 0"); - tryAcontinuousDataTypeInequality(GeneticDataTypes.Expression, - ComparisonOp.GreaterEqual, -1.5f, "Ex>=-1.5"); - - // nicknames - tryAcontinuousDataTypeInequality( GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 1.3f , "MRNA<= 1.3" ); - tryAcontinuousDataTypeInequality( GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 1.3f , "microRNA<= 1.3" ); - tryAcontinuousDataTypeInequality( GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 1.3f , "MR<= 1.3" ); - - // error handling - // semantic error, generate by the tree grammar - tryErroneousProduction( "continuousDataTypeInequality", "barf < 1.3", "Error at char 1 of line 1: " + - "'barf' is not a valid genetic data type."); - } - - private void tryAcontinuousDataTypeInequality( - GeneticDataTypes aGeneticDataTypes, ComparisonOp aComparisonOp, - float t, String testLangFragment) { - try { - - ContinuousDataTypeSpec aContinuousDataTypeSpec = new ContinuousDataTypeSpec( - aGeneticDataTypes, aComparisonOp, t); - - Assert.assertEquals(aContinuousDataTypeSpec, - (ContinuousDataTypeSpec) parseMethod( "continuousDataTypeInequality", testLangFragment) ); - - } catch (RecognitionException e) { - System.out.println("testcontinuousDataTypeInequality: RecognitionException: " + e.getMessage()); - e.printStackTrace(); - } catch (Throwable e) { - e.printStackTrace(); - } - } - - @Test - public void testDiscreteDataTypeInParser() { - - tryADiscreteDataType(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.LessEqual, GeneticTypeLevel.Gained, "CopyNumberAlteration <= Gain"); - - // Abbreviations - tryADiscreteDataType(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.Less, GeneticTypeLevel.Diploid, "cna < Di"); - tryADiscreteDataType(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.GreaterEqual, GeneticTypeLevel.HomozygouslyDeleted, "C >= Hom"); - - // nicknames - tryADiscreteDataType(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.Greater, GeneticTypeLevel.HemizygouslyDeleted, "CNA > Hetloss"); - tryADiscreteDataType(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.Less, GeneticTypeLevel.HomozygouslyDeleted, "CNA < Homdel"); - tryADiscreteDataType(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.Less, GeneticTypeLevel.HomozygouslyDeleted, "CNA < hom"); - - // aDiscreteDataTypeSetSpecs - tryADiscreteDataType(GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HemizygouslyDeleted, "C -1"); - tryADiscreteDataType(GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Amplified, "C 2"); - - // test errors - tryErroneousProduction( "discreteDataType", "Foo <= blah", "Error at char 1 of line 1: 'Foo <= blah' " + - "is not a valid discrete genetic data type and discrete genetic data level." ); - tryErroneousProduction( "discreteDataType", "\nExp <= blah", "Error at char 1 of line 2: 'Exp <= blah' " + - "is not a valid discrete genetic data type and discrete genetic data level." ); - tryErroneousProduction( "discreteDataType", "CNA 5", "Error at char 1 of line 1: 'CNA 5' is " + - "not a valid genetic data type and GISTIC code." ); - } - - private void tryADiscreteDataType( - GeneticDataTypes aGeneticDataTypes, ComparisonOp aComparisonOp, - GeneticTypeLevel aGeneticTypeLevel, String testLangFragment) { - - try { - - DiscreteDataTypeSpec aDiscreteDataTypeSpec = new DiscreteDataTypeSpec( - aGeneticDataTypes, aComparisonOp, aGeneticTypeLevel); - Assert.assertTrue(aDiscreteDataTypeSpec - .equals((DiscreteDataTypeSpec) parseMethod( "discreteDataType", testLangFragment) )); - - } catch (RecognitionException e) { - System.out.println("testDiscreteDataType: RecognitionException: " + e.getMessage()); - e.printStackTrace(); - } catch (Throwable e) { - e.printStackTrace(); - } - } - - // overloaded; this for DiscreteDataTypeSetSpecs - private void tryADiscreteDataType( - GeneticDataTypes aGeneticDataTypes, GeneticTypeLevel aGeneticTypeLevel, String testLangFragment) { - try { - - DiscreteDataTypeSetSpec aDiscreteDataTypeSetSpec = new DiscreteDataTypeSetSpec( - aGeneticDataTypes, aGeneticTypeLevel); - Assert.assertTrue( aDiscreteDataTypeSetSpec - .equals((DiscreteDataTypeSetSpec) parseMethod( "discreteDataType", testLangFragment) )); - - } catch (RecognitionException e) { - System.out.println("testDiscreteDataType: RecognitionException: " + e.getMessage()); - e.printStackTrace(); - } catch (Throwable e) { - e.printStackTrace(); - } - } - - @Test - public void testDataTypeSpecInParser() { - - try { - // overloaded several times: these test alternative: discreteDataType - tryADataTypeSpec(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.LessEqual, GeneticTypeLevel.Gained, "CopyNumberAlteration <= Gain"); - - // Abbreviations - tryADataTypeSpec(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.Less, GeneticTypeLevel.Diploid, "cna < Di"); - tryADataTypeSpec(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.GreaterEqual, GeneticTypeLevel.HomozygouslyDeleted, "C >= Hom"); - - // nicknames - tryADataTypeSpec(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.Greater, GeneticTypeLevel.HemizygouslyDeleted, "CNA > Hetloss"); - tryADataTypeSpec(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.Less, GeneticTypeLevel.HomozygouslyDeleted, "CNA < Homdel"); - tryADataTypeSpec(GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.Less, GeneticTypeLevel.HomozygouslyDeleted, "CNA < hom"); - - // aDiscreteDataTypeSetSpecs - tryADataTypeSpec(GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HemizygouslyDeleted, "C -1"); - tryADataTypeSpec(GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Amplified, "C 2"); - - tryADataTypeSpec(GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 1.3f, "Expression <= 1.3"); - tryADataTypeSpec(GeneticDataTypes.Methylation, - ComparisonOp.Greater, 1f, "Methylation > 1"); - tryADataTypeSpec(GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 0f, "Expression <= 0"); - tryADataTypeSpec(GeneticDataTypes.Expression, - ComparisonOp.GreaterEqual, -1.5f, "Expression >=-1.5"); - - // Abbreviations - tryADataTypeSpec(GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 1.3f, "Exp<= 1.3"); - tryADataTypeSpec(GeneticDataTypes.Methylation, - ComparisonOp.Greater, 1f, "Me>1"); - tryADataTypeSpec(GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 0f, "E<= 0"); - tryADataTypeSpec(GeneticDataTypes.Expression, - ComparisonOp.GreaterEqual, -1.5f, "Ex>=-1.5"); - - // nicknames - tryADataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 1.3f , "MRNA<= 1.3" ); - tryADataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 1.3f , "micro<= 1.3" ); - tryADataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.LessEqual, 1.3f , "MR<= 1.3" ); - - } catch (RecognitionException e) { - e.printStackTrace(); - } - } - - // overloaded several times: this tests alternative: dataTypeName // may be discrete or continuous - private void tryADataTypeSpec( GeneticDataTypes aGeneticDataTypes, String testLangFragment) - throws RecognitionException{ - ConcreteDataTypeSpec aConcreteDataTypeSpec = new ConcreteDataTypeSpec( aGeneticDataTypes ); - try { - Assert.assertTrue( aConcreteDataTypeSpec.equals((ConcreteDataTypeSpec) parseMethod - ( "dataTypeSpec", testLangFragment) )); - } catch (Throwable e) { - e.printStackTrace(); - } - } - - // overloaded several times: this tests alternative: dataTypeLevel // must be discrete - private void tryADataTypeSpec( GeneticDataTypes aGeneticDataType, GeneticTypeLevel aGeneticTypeLevel, - String testLangFragment) throws RecognitionException{ - DiscreteDataTypeSetSpec aDiscreteDataTypeSetSpec = new DiscreteDataTypeSetSpec( aGeneticDataType, - aGeneticTypeLevel ); - try { - Assert.assertTrue( aDiscreteDataTypeSetSpec.equals((DiscreteDataTypeSetSpec) parseMethod - ( "dataTypeSpec", testLangFragment) )); - } catch (Throwable e) { - e.printStackTrace(); - } - } - - // overloaded several times: this tests alternative: discreteDataType - private void tryADataTypeSpec( GeneticDataTypes aGeneticDataType, ComparisonOp aComparisonOp, - GeneticTypeLevel aGeneticTypeLevel, - String testLangFragment) throws RecognitionException{ - DiscreteDataTypeSpec aDiscreteDataTypeSpec = new DiscreteDataTypeSpec( - aGeneticDataType, aComparisonOp, aGeneticTypeLevel); - try { - Assert.assertTrue(aDiscreteDataTypeSpec - .equals((DiscreteDataTypeSpec) parseMethod( "dataTypeSpec", testLangFragment) )); - } catch (Throwable e) { - e.printStackTrace(); - } - } - - // overloaded several times: this tests alternative: continuousDataTypeInequality - private void tryADataTypeSpec( GeneticDataTypes aGeneticDataType, ComparisonOp aComparisonOp, float threshold, - String testLangFragment) throws RecognitionException{ - ContinuousDataTypeSpec aContinuousDataTypeSpec = new ContinuousDataTypeSpec( - aGeneticDataType, aComparisonOp, threshold); - try { - Assert.assertTrue(aContinuousDataTypeSpec - .equals((ContinuousDataTypeSpec) parseMethod( "dataTypeSpec", testLangFragment) )); - } catch (Throwable e) { - e.printStackTrace(); - } - } - - @Test - public void testFullDataTypeSpecInParser() { - try { - OncoPrintGeneDisplaySpec theResultFullDataTypeSpec = (OncoPrintGeneDisplaySpec)parseMethod - ( "fullDataTypeSpec", ": Mutation Mut Meth HetLoss Exp<-1 " + - "HetLoss Exp>=1.5 Exp <= -1.5 C -2 Expression<-2; " ); - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.Mutation, null )); - - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.Methylation, 2f )); - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.Methylation, -33f )); - - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.Expression, -3f )); - Assert.assertFalse( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.Expression, -1f )); - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.Expression, 1.5f )); - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.Expression, 3f )); - - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HemizygouslyDeleted )); - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HomozygouslyDeleted )); - - theResultFullDataTypeSpec = (OncoPrintGeneDisplaySpec)parseMethod( "fullDataTypeSpec", ": C ; " ); - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HemizygouslyDeleted )); - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HomozygouslyDeleted )); - Assert.assertFalse( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.Expression, -1f )); - - theResultFullDataTypeSpec = (OncoPrintGeneDisplaySpec)parseMethod( "fullDataTypeSpec", ": C Exp; " ); - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HemizygouslyDeleted )); - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HomozygouslyDeleted )); - Assert.assertTrue( theResultFullDataTypeSpec.satisfy(GeneticDataTypes.Expression, -1f )); - - } catch (RecognitionException e) { - e.printStackTrace(); - } catch (Throwable e) { - e.printStackTrace(); - } - - // try error - // this exercises the error produced by dataTypeSpec, which I cannot trigger with that production - tryErroneousProduction( "fullDataTypeSpec", ":FOOL;", "Error at char 2 of line 1: " + - "'FOOL' is not a valid genetic data type or data level." ); - } - - @Test - public void testGeneListInParser() { - try { - GeneSet theGeneSet = (GeneSet) parseMethod( "userGeneList", - " DATATYPES : CNA Mutation C -2 Expression<-2; amazin " + - "g5 : CNA Hetloss Homdel Expression <-1;" + - " DATATYPES : Meth C theGenes = theGeneSet.getGenes(); - checkAgeneWithSpec( theGenes.get(0) ); - - GeneWithSpec aGeneWithSpec = theGenes.get(2); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy( - GeneticDataTypes.Methylation)); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy - (GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HomozygouslyDeleted )); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy - (GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HemizygouslyDeleted )); - - } catch (RecognitionException e) { - e.printStackTrace(); - } catch (Throwable e) { - e.printStackTrace(); - } - } - - @Test - public void testIndividualGeneInParser() { - try { - GeneWithSpec aGeneWithSpec = (GeneWithSpec) parseMethod( "individualGene", "amazin : " + - "CNA Mutation C -2 Expression<-2; "); - checkAgeneWithSpec(aGeneWithSpec); - - aGeneWithSpec = (GeneWithSpec) parseMethod( "individualGene", - " P53: Mutated Methy C -2 G Expression<-2 Expression<-3 Expression>=3.2; "); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy(GeneticDataTypes.Methylation)); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy(GeneticDataTypes.Mutation, - GeneticTypeLevel.Mutated )); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy - (GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HomozygouslyDeleted )); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy - (GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Gained )); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy - (GeneticDataTypes.Expression, -2.01f)); - Assert.assertFalse(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy - (GeneticDataTypes.Expression, -2.0f)); - - } catch (RecognitionException e) { - e.printStackTrace(); - } catch (Throwable e) { - e.printStackTrace(); - } - - // test errors - tryErroneousProduction( "individualGene", "notGene", "Error at char 1 of line 1: " + - "'notGene' is not a valid gene or microRNA name."); - } - - private void checkAgeneWithSpec(GeneWithSpec aGeneWithSpec){ - - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy( - GeneticDataTypes.CopyNumberAlteration)); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy(GeneticDataTypes.Mutation)); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy(GeneticDataTypes.Expression, -2.01f)); - Assert.assertFalse(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy(GeneticDataTypes.Expression, -2.0f)); - - } - - @Test - public void testGroupedGeneListInParser() { - try { - String n = "P53 pathway"; - String nInQuotes = '"' + n + '"'; - String inputNames = "CCND1 CDKN2B CDKN2A"; - String[] names = inputNames.split(" "); - - GeneSet theGeneSet = (GeneSet) parseMethod( "userGeneList", nInQuotes + " { " + inputNames + " } "); - Assert.assertEquals( n, theGeneSet.getName() ); - ArrayList theGenes = theGeneSet.getGenes(); - int i=0; - for( GeneWithSpec aGeneWithSpec : theGenes ){ - Assert.assertEquals( names[i++], aGeneWithSpec.getName() ); - } - - theGeneSet = (GeneSet) parseMethod( "userGeneList", " { " + inputNames + " } "); - theGenes = theGeneSet.getGenes(); - i=0; - for( GeneWithSpec aGeneWithSpec : theGenes ){ - Assert.assertEquals( names[i++], aGeneWithSpec.getName() ); - } - - theGeneSet = (GeneSet) parseMethod( "userGeneList", inputNames ); - theGenes = theGeneSet.getGenes(); - i=0; - for( GeneWithSpec aGeneWithSpec : theGenes ){ - Assert.assertEquals( names[i++], aGeneWithSpec.getName() ); - } - } catch (RecognitionException e) { - e.printStackTrace(); - } catch (Throwable e) { - e.printStackTrace(); - } - } - - /* - * TODO: IMPORTANT; MAKE TEST OPERATIONAL - */ - @Test - public void testOncoPrintSpecificationInParser() { - - try { - ArrayList expectedGeneSets = new ArrayList(); - OncoPrintGeneDisplaySpec r = new OncoPrintGeneDisplaySpec(); - r.setDefault( 1.0f, 1.0f ); - GeneWithSpec g = new GeneWithSpec( "gene2" ); - g.setTheResultFullDataTypeSpec(r); - GeneSet h = new GeneSet( ); - h.addGeneWithSpec(g); - GeneWithSpec aGeneWithSpec = (GeneWithSpec) parseMethod( "individualGene", - "gene3 : Hetloss Homdel Expression <-1;"); - h.addGeneWithSpec(aGeneWithSpec); - expectedGeneSets.add( h ); - - GeneSet theGeneSet = (GeneSet) parseMethod( "userGeneList", - " { DATATYPES: AMP homo EXP<-1 exp>1 MUTated ; JAG1 JAG2 }" ); - expectedGeneSets.add( theGeneSet ); - - OncoPrintGeneDisplaySpec theResultFullDataTypeSpec = (OncoPrintGeneDisplaySpec)parseMethod - ( "fullDataTypeSpec", ": G Amp Mutated Expression <=-2; "); - h = new GeneSet( ); - g = new GeneWithSpec( "FOO" ); - g.setTheResultFullDataTypeSpec(theResultFullDataTypeSpec); - h.addGeneWithSpec(g); - expectedGeneSets.add( h ); - - theGeneSet = (GeneSet) parseMethod( "userGeneList", - "\"P53 pathway\" { DATATYPES: G Amp Mutated Expression <=-2; CCND1 " + - "DATATYPES: Di G Am Mut E<=-2; CDKN2B CDKN2A }" + - "AR: C-1"); - expectedGeneSets.add( theGeneSet ); - - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - theOncoPrintGeneDisplaySpec.setDefault( 1.0, 1.0 ); - ParserOutput theParserOutput = CallOncoPrintSpecParser.callOncoPrintSpecParser - ("gene2 gene3 : Hetloss Homdel Expression <-1; " + - "{ JAG1 JAG2 } " + - "DATATYPES: G Amp Mutated Expression <=-2; FOO" + - "\"P53 pathway\" { CCND1 DATATYPES: Di G Am Mut E<=-2; CDKN2B CDKN2A }", - theOncoPrintGeneDisplaySpec ); - - Assert.assertEquals( 0, theParserOutput.getSemanticsErrors().size() ); - Iterator theIterator = expectedGeneSets.iterator(); - for( GeneSet gs: theParserOutput.getTheOncoPrintSpecification().getGeneSets() ){ - - // TODO HIGH: FIX THIS; DOESN'T WORK - // Assert.assertEquals( theIterator.next().toString(), gs.toString() ); - } - } catch (RecognitionException e) { - e.printStackTrace(); - } catch (Throwable e) { - e.printStackTrace(); - } - } - - /** - * try calling the root rule (production) in the ASTwalker, - * oncoPrintSpecification - */ - @Test - public void testErrorHandlingByOncoPrintSpecificationInASTwalker() { - - // should return a list of errors - String[][] errorFilledInputAndErrors = { - // rule input error; the extra stuff like "DATATYPES: CNA ; " \ - // in the input is needed for the parser to recover; don't change it - { "continuousDataTypeInequality", "gene: barf < 1.3 ;", - "Error at char 7 of line 1: 'barf' is not a valid genetic data type." }, - { - "discreteDataType", - "g2:Foo <= blah; DATATYPES: CNA ; { X }", - "Error at char 4 of line 1: 'Foo <= blah' is not a valid discrete genetic data " + - "type and discrete genetic data level." }, - { - "discreteDataType", - "g3:Exp <= blah; DATATYPES: CNA ; ", - "Error at char 4 of line 1: 'Exp <= blah' is not a valid discrete genetic data " + - "type and discrete genetic data level." }, - { "discreteDataType", "g4: CNA 5; DATATYPES: CNA ; { X }", - "Error at char 5 of line 1: 'CNA 5' is not a valid genetic data type and GISTIC code." }, - { "fullDataTypeSpec", "DATATYPES:FOOL; DATATYPES: CNA ; ", - "Error at char 11 of line 1: 'FOOL' is not a valid genetic data type or data level." }, - }; - - String[] errors = new String[1]; - // try each error - for (String[] ruleInputError : errorFilledInputAndErrors) { - errors[0] = ruleInputError[2]; - tryOncoPrintSpecification(ruleInputError[1], errors); - } - - // try all errors - StringBuffer langFrag = new StringBuffer(); - errors = new String[ errorFilledInputAndErrors.length ]; - int i=0; - for (String[] ruleInputError : errorFilledInputAndErrors) { - langFrag.append(ruleInputError[1]+"\n" ); - // increment line #s - Integer n = Integer.valueOf(i+1); - errors[i++ ] = ruleInputError[2].replaceFirst("line 1", "line " + n.toString() ) ; - } - tryOncoPrintSpecification(langFrag.toString(), errors); - } - - private void tryOncoPrintSpecification(String testLangFragment, String[] errorMsgs) { - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - theOncoPrintGeneDisplaySpec.setDefault( 1.0, 1.0 ); - ParserOutput theParserOutput = CallOncoPrintSpecParser.callOncoPrintSpecParser( testLangFragment, - theOncoPrintGeneDisplaySpec ); - ArrayList listOfErrors = theParserOutput.getSemanticsErrors(); - Iterator i = listOfErrors.iterator(); - for (String s : errorMsgs) { - Assert.assertEquals(s, i.next().getMessage() ); - } - } - - /** - * check that IllegalArgumentException with appropriate error message is thrown - */ - private void tryErroneousProduction( String production, String testLangFragment, String errorMsg ) { - try { - parseMethod( production, testLangFragment); - } catch (Throwable e) { - if( !(e instanceof OncoPrintLangException)){ - System.out.println( e.getClass().getName() ); - e.printStackTrace(); - } - Assert.assertTrue(e instanceof OncoPrintLangException); - Assert.assertEquals( errorMsg, e.getMessage() ); - } - } - - /** - * call method 'method' in the lexer and parser; - * loads of reflection - */ - public static Object parseMethod(String method, String prog) throws Throwable { - - // Create a stream of tokens pulled from the lexer - CommonTokenStream tokens; - // Create a parser attached to the token stream - completeOncoPrintSpecASTParser parser; - // create (empty) arg list - Class[] emptyArgList; - // get method - Method parserMethod; - Object parserRV; - try { - ByteArrayInputStream bs = new ByteArrayInputStream(prog.getBytes()); - ANTLRInputStream input = new ANTLRInputStream(bs); - // Create a lexer attached to that input stream - completeOncoPrintSpecASTLexer lexer = new completeOncoPrintSpecASTLexer(input); - tokens = new CommonTokenStream(lexer); - parser = new completeOncoPrintSpecASTParser(tokens); - - // Invoke the program rule in get return value - // get parser class - Class parserClass = parser.getClass(); - emptyArgList = new Class[] {}; - parserMethod = parserClass.getDeclaredMethod(method, emptyArgList); - - // was completeOncoPrintSpecASTParser.fullDataTypeSpec_return r = - // parser.fullDataTypeSpec(); - parserRV = parserMethod.invoke(parser); - } catch (InvocationTargetException e) { - throw e.getCause(); - } - - try { - // now call returnedObject's getTree() - // get return value class - Class rvClass = parserRV.getClass(); - - // get method - Method rvClassGetTree = rvClass.getDeclaredMethod("getTree", emptyArgList); - // call method - // was: CommonTree t = (CommonTree)r.getTree(); - CommonTree theCommonTree = (CommonTree) rvClassGetTree.invoke(parserRV); - - // Walk resulting tree; create treenode stream first - CommonTreeNodeStream nodes = new CommonTreeNodeStream(theCommonTree); - // AST nodes have payloads that point into token stream - nodes.setTokenStream(tokens); - // Create a tree Walker attached to the nodes stream - completeOncoPrintSpecASTwalker walker = new completeOncoPrintSpecASTwalker(nodes); - - // Invoke the start symbol, rule program - // invoke method 'method' on walker - return walker.getClass().getDeclaredMethod(method, emptyArgList) - .invoke(walker, (Object[]) null); - // was: return walker.fullDataTypeSpec(); - } catch (SecurityException e) { - e.printStackTrace(); - } catch (IllegalArgumentException e) { - e.printStackTrace(); - } catch (NoSuchMethodException e) { - e.printStackTrace(); - } catch (IllegalAccessException e) { - e.printStackTrace(); - } catch (InvocationTargetException e) { - throw e.getCause(); - } - return null; - } -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TestOncoPrintSpecificationLibrary.java b/core/src/test/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TestOncoPrintSpecificationLibrary.java deleted file mode 100644 index 92aa04d9805..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/oncoPrintSpecLanguage/TestOncoPrintSpecificationLibrary.java +++ /dev/null @@ -1,894 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.oncoPrintSpecLanguage; - -import java.util.ArrayList; -import java.util.Arrays; - -import org.junit.Assert; -import org.junit.Test; -import org.mskcc.cbio.portal.util.Direction; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ComparisonOp; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ConcreteDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ContinuousDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DiscreteDataTypeSetSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DiscreteDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneSet; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneWithSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticDataTypes; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticTypeLevel; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintGeneDisplaySpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintSpecification; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ParsedFullDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ResultDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.UniqueEnumPrefix; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.Utilities; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DataTypeSpecEnumerations.DataTypeCategory; - - -/** - * test my library of OncoPrintSpec classes, without the parser - * @author Arthur Goldberg - */ -public class TestOncoPrintSpecificationLibrary{ - - @Test - public void testComparisonOp() { - - try { - ComparisonOp aComparisonOp = ComparisonOp.convertCode(null); - Assert.fail("should throw IllegalArgumentException"); - } catch (IllegalArgumentException e) { - Assert.assertEquals("Invalid parsedToken: null", e.getMessage() ); - } - } - - @Test - public void testAppendSemicolons(){ - - String[][] inputOutputPairs = { - { "aaaa", "aaaa", }, - { ": xx ;", ": xx ;", }, - { ": xx ;: xx ;", ": xx ;: xx ;", }, - { ": xx ", ": xx ;", }, - { ": xx ;: xx ", ": xx ;: xx ;", }, - { ": xx : xx ;", ": xx : xx ;", }, - { ": xx \n ", ": xx ;\n ", }, - { ": xx \n: yy \n", ": xx ;\n: yy ;\n", }, - { ": xx ;foo : aa :y z\n: yy ", ": xx ;foo : aa :y z;\n: yy ;", }, - }; - - for( String [] ioPair : inputOutputPairs){ - Assert.assertEquals( ioPair[1], Utilities.appendSemis( ioPair[0] ) ); - } - } - - @Test - public void testGeneticTypeLevel() { - - Assert.assertEquals(GeneticTypeLevel.Amplified, GeneticTypeLevel.convertCNAcode(2)); - Assert.assertEquals(GeneticTypeLevel.HomozygouslyDeleted, - GeneticTypeLevel.findDataTypeLevel("HomozygouslyDeleted") ); - Assert.assertEquals(GeneticTypeLevel.HomozygouslyDeleted, - GeneticTypeLevel.findDataTypeLevel("Homdel") ); - Assert.assertEquals(GeneticTypeLevel.HomozygouslyDeleted, - GeneticTypeLevel.findDataTypeLevel("Hom") ); - Assert.assertEquals(GeneticTypeLevel.HemizygouslyDeleted, - GeneticTypeLevel.findDataTypeLevel("HemizygouslyDeleted") ); - Assert.assertEquals(GeneticTypeLevel.HemizygouslyDeleted, - GeneticTypeLevel.findDataTypeLevel("Hemi") ); - Assert.assertEquals(GeneticTypeLevel.HemizygouslyDeleted, - GeneticTypeLevel.findDataTypeLevel("Hetloss") ); - Assert.assertEquals(GeneticTypeLevel.HemizygouslyDeleted, - GeneticTypeLevel.findDataTypeLevel("HET") ); - Assert.assertEquals(GeneticTypeLevel.Diploid, - GeneticTypeLevel.findDataTypeLevel("Diploid") ); - Assert.assertEquals(GeneticTypeLevel.Diploid, - GeneticTypeLevel.findDataTypeLevel("di") ); - - } - - @Test - public void testDataTypeSpec() { - try { - DataTypeSpec.genericFindDataType( "foo", DataTypeCategory.Continuous ); - Assert.fail("Should throw IllegalArgumentException"); - } catch (IllegalArgumentException e) { - Assert.assertEquals( "Invalid DataType: foo", e.getMessage() ); - } - } - - @Test - public void testConcreteDataTypeSpec() { - try { - Assert.assertEquals( GeneticDataTypes.Expression, - ConcreteDataTypeSpec.findDataType("mrn") ); - Assert.assertEquals( GeneticDataTypes.Expression, - ConcreteDataTypeSpec.findDataType("EXP") ); - Assert.assertEquals( GeneticDataTypes.CopyNumberAlteration, - ConcreteDataTypeSpec.findDataType("cna") ); - Assert.assertEquals( GeneticDataTypes.CopyNumberAlteration, - ConcreteDataTypeSpec.findDataType("copy") ); - Assert.assertEquals( GeneticDataTypes.Methylation, - ConcreteDataTypeSpec.findDataType("Methylation") ); - Assert.assertEquals( GeneticDataTypes.Methylation, - ConcreteDataTypeSpec.findDataType("Methy") ); - Assert.assertEquals( GeneticDataTypes.Methylation, - ConcreteDataTypeSpec.findDataType("Met") ); - Assert.assertEquals( GeneticDataTypes.Mutation, - ConcreteDataTypeSpec.findDataType("Mutation") ); - Assert.assertEquals( GeneticDataTypes.Mutation, - ConcreteDataTypeSpec.findDataType("Mu") ); - - } catch (IllegalArgumentException e) { - - e.printStackTrace(); - } - - ConcreteDataTypeSpec aConcreteDataTypeSpec = new ConcreteDataTypeSpec - (GeneticDataTypes.Methylation); - Assert.assertTrue( aConcreteDataTypeSpec.satisfy(GeneticDataTypes.Methylation) ); - Assert.assertFalse( aConcreteDataTypeSpec.satisfy(GeneticDataTypes.Expression) ); - Assert.assertEquals( "Methylation", aConcreteDataTypeSpec.toString() ); - Assert.assertTrue( aConcreteDataTypeSpec.equals( aConcreteDataTypeSpec )); - Assert.assertTrue( aConcreteDataTypeSpec.equals - ( new ConcreteDataTypeSpec( GeneticDataTypes.Methylation) )); - Assert.assertTrue( aConcreteDataTypeSpec.equals( new ConcreteDataTypeSpec( "Methyla") )); - Assert.assertFalse( aConcreteDataTypeSpec.equals( new Object() )); - Assert.assertEquals( null, ConcreteDataTypeSpec.concreteDataTypeSpecGenerator(null) ); - Assert.assertEquals( new ConcreteDataTypeSpec(GeneticDataTypes.CopyNumberAlteration), - ConcreteDataTypeSpec.concreteDataTypeSpecGenerator("CNA") ); - Assert.assertEquals( null, ConcreteDataTypeSpec.concreteDataTypeSpecGenerator("foo") ); - - //System.out.println( aConcreteDataTypeSpec.hashCode() ); - } - - @Test - public void testContinuousDataTypeSpec() { - ContinuousDataTypeSpec aContinuousDataTypeSpec = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 1.0f ); - Assert.assertTrue( aContinuousDataTypeSpec.satisfy(0.5) ); - Assert.assertFalse( aContinuousDataTypeSpec.satisfy(1.0) ); - Assert.assertTrue( aContinuousDataTypeSpec.equals( aContinuousDataTypeSpec ) ); - Assert.assertFalse( aContinuousDataTypeSpec.equals( Float.valueOf(0.3f) ) ); - Assert.assertTrue( aContinuousDataTypeSpec.equals( - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 1.0f ) ) ); - Assert.assertFalse( aContinuousDataTypeSpec.equals( - new ContinuousDataTypeSpec( GeneticDataTypes.Methylation, - ComparisonOp.convertCode("<"), 1.0f ) ) ); - Assert.assertFalse( aContinuousDataTypeSpec.equals( - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<="), 1.0f ) ) ); - Assert.assertFalse( aContinuousDataTypeSpec.equals( - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 5.0f ) ) ); - - // copy constructor and new Instance - Assert.assertEquals( null, ContinuousDataTypeSpec.newInstance(null) ); - Assert.assertEquals( aContinuousDataTypeSpec, ContinuousDataTypeSpec.newInstance - (aContinuousDataTypeSpec)); - Assert.assertNotSame( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 5.0f ), - ContinuousDataTypeSpec.newInstance( aContinuousDataTypeSpec )); - - Assert.assertEquals( "Expression<1.0", aContinuousDataTypeSpec.toString() ); - - Assert.assertEquals( GeneticDataTypes.Expression, - ContinuousDataTypeSpec.findDataType( "Exp" )); - Assert.assertEquals( GeneticDataTypes.Expression, - ContinuousDataTypeSpec.findDataType( "mrna" )); - Assert.assertEquals( GeneticDataTypes.Expression, - ContinuousDataTypeSpec.findDataType( "microRNA" )); - Assert.assertEquals( GeneticDataTypes.Methylation, - ContinuousDataTypeSpec.findDataType( "met" )); - - ContinuousDataTypeSpec aContinuousDataTypeSpec2 = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">="), 1.0f ); - - try { - aContinuousDataTypeSpec.combine(aContinuousDataTypeSpec2); - Assert.fail("Should throw IllegalArgumentException"); - } catch (IllegalArgumentException e) { - Assert.assertEquals( "the ContinuousDataTypeSpecs must have ComparisonOps " + - "with the same direction", e.getMessage() ); - } - try { - aContinuousDataTypeSpec2.combine(aContinuousDataTypeSpec); - Assert.fail("Should throw IllegalArgumentException"); - } catch (IllegalArgumentException e) { - Assert.assertEquals( "the ContinuousDataTypeSpecs must have ComparisonOps " + - "with the same direction", e.getMessage() ); - } - - aContinuousDataTypeSpec = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">"), 2.0f ); - - aContinuousDataTypeSpec.combine(aContinuousDataTypeSpec2); - Assert.assertEquals( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">="), 1.0f ), aContinuousDataTypeSpec ); - - // test same threshold - aContinuousDataTypeSpec = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">"), 2.0f ); - aContinuousDataTypeSpec2 = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">="), 2.0f ); - aContinuousDataTypeSpec.combine(aContinuousDataTypeSpec2); - Assert.assertEquals( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">="), 2.0f ), aContinuousDataTypeSpec ); - - aContinuousDataTypeSpec = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">"), 2.0f ); - aContinuousDataTypeSpec2 = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">"), 2.0f ); - aContinuousDataTypeSpec.combine(aContinuousDataTypeSpec2); - Assert.assertEquals( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">"), 2.0f ), aContinuousDataTypeSpec ); - - aContinuousDataTypeSpec = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">="), 2.0f ); - aContinuousDataTypeSpec2 = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">"), 2.0f ); - aContinuousDataTypeSpec.combine(aContinuousDataTypeSpec2); - Assert.assertEquals( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">="), 2.0f ), aContinuousDataTypeSpec ); - - aContinuousDataTypeSpec = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<="), -1.0f ); - aContinuousDataTypeSpec2 = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), -3.0f ); - aContinuousDataTypeSpec.combine(aContinuousDataTypeSpec2); - Assert.assertEquals( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<="), -1.0f ), aContinuousDataTypeSpec ); - - aContinuousDataTypeSpec = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<="), -1.0f ); - aContinuousDataTypeSpec2 = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 2.0f ); - aContinuousDataTypeSpec.combine(aContinuousDataTypeSpec2); - Assert.assertEquals( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 2.0f ), aContinuousDataTypeSpec ); - - aContinuousDataTypeSpec = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<="), 0.0f ); - aContinuousDataTypeSpec2 = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 0.0f ); - aContinuousDataTypeSpec.combine(aContinuousDataTypeSpec2); - Assert.assertEquals( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<="), 0.0f ), aContinuousDataTypeSpec ); - - aContinuousDataTypeSpec = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 0.0f ); - aContinuousDataTypeSpec2 = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<="), 0.0f ); - aContinuousDataTypeSpec.combine(aContinuousDataTypeSpec2); - Assert.assertEquals( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<="), 0.0f ), aContinuousDataTypeSpec ); - - aContinuousDataTypeSpec = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 0.0f ); - aContinuousDataTypeSpec2 = - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 0.0f ); - aContinuousDataTypeSpec.combine(aContinuousDataTypeSpec2); - Assert.assertEquals( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 0.0f ), aContinuousDataTypeSpec ); - - Assert.assertEquals( null, ContinuousDataTypeSpec.continuousDataTypeSpecGenerator( - "foo", "bla", "xxx" ) ); - Assert.assertEquals( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 0.3f ), - ContinuousDataTypeSpec.continuousDataTypeSpecGenerator( "Exp", "<", "0.3" ) ); - Assert.assertEquals( null, ContinuousDataTypeSpec.continuousDataTypeSpecGenerator - ("foo", "<", "0" ) ); - Assert.assertEquals( null, ContinuousDataTypeSpec.continuousDataTypeSpecGenerator - ("Exp", "<<", "0" ) ); - Assert.assertEquals( null, ContinuousDataTypeSpec.continuousDataTypeSpecGenerator - ("Exp", "<", "x" ) ); - - } - - @Test - public void testDiscreteDataTypeSetSpec() { - findDiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, "Copy" ); - findDiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, "CNA" ); - findDiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, "cna" ); - findDiscreteDataTypeSetSpec( GeneticDataTypes.Mutation, "mu" ); - - DiscreteDataTypeSetSpec aDiscreteDataTypeSetSpec = - new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Gained ); - Assert.assertEquals( "Gained ", - aDiscreteDataTypeSetSpec.toString() ); - Assert.assertTrue( aDiscreteDataTypeSetSpec.satisfy( GeneticTypeLevel.Gained ) ); - Assert.assertTrue( aDiscreteDataTypeSetSpec.equals( aDiscreteDataTypeSetSpec )); - Assert.assertTrue( aDiscreteDataTypeSetSpec.equals( - new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Gained ) )); - Assert.assertTrue( aDiscreteDataTypeSetSpec.equals( new DiscreteDataTypeSetSpec - ( "CNA", 1 ) )); - - aDiscreteDataTypeSetSpec = - new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Gained, GeneticTypeLevel.Amplified ); - Assert.assertEquals( "Gained Amplified ", - aDiscreteDataTypeSetSpec.toString() ); - Assert.assertTrue( aDiscreteDataTypeSetSpec.satisfy( GeneticTypeLevel.Gained ) ); - Assert.assertTrue( aDiscreteDataTypeSetSpec.satisfy( GeneticTypeLevel.Amplified ) ); - Assert.assertFalse( aDiscreteDataTypeSetSpec.satisfy( GeneticTypeLevel.Diploid ) ); - Assert.assertTrue( aDiscreteDataTypeSetSpec.equals( aDiscreteDataTypeSetSpec )); - Assert.assertTrue( aDiscreteDataTypeSetSpec.equals( - new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Gained, GeneticTypeLevel.Amplified ) )); - - Assert.assertEquals( aDiscreteDataTypeSetSpec, - DiscreteDataTypeSetSpec.newInstance(aDiscreteDataTypeSetSpec) ); - Assert.assertEquals( null, null, - DiscreteDataTypeSetSpec.newInstance( null ) ); - - aDiscreteDataTypeSetSpec.addLevel( GeneticTypeLevel.Amplified ); - Assert.assertTrue( aDiscreteDataTypeSetSpec.satisfy( GeneticTypeLevel.Amplified ) ); - aDiscreteDataTypeSetSpec.addLevel( GeneticTypeLevel.Diploid ); - Assert.assertTrue( aDiscreteDataTypeSetSpec.satisfy( GeneticTypeLevel.Diploid ) ); - - aDiscreteDataTypeSetSpec.combine( new DiscreteDataTypeSetSpec - (GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.HemizygouslyDeleted, - GeneticTypeLevel.HemizygouslyDeleted, GeneticTypeLevel.Diploid )); - Assert.assertTrue( aDiscreteDataTypeSetSpec.satisfy( GeneticTypeLevel.Amplified ) ); - Assert.assertTrue( aDiscreteDataTypeSetSpec.satisfy( GeneticTypeLevel.Gained ) ); - Assert.assertTrue( aDiscreteDataTypeSetSpec.satisfy( GeneticTypeLevel.Diploid ) ); - Assert.assertTrue( aDiscreteDataTypeSetSpec.satisfy - ( GeneticTypeLevel.HemizygouslyDeleted ) ); - Assert.assertFalse( aDiscreteDataTypeSetSpec.satisfy - ( GeneticTypeLevel.HomozygouslyDeleted ) ); - - try { - new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Mutated ); - Assert.fail("Should throw IllegalArgumentException"); - } catch (IllegalArgumentException e) { - Assert.assertEquals( "Mutated is not a level for CopyNumberAlteration", e.getMessage() ); - } - - try { - new DiscreteDataTypeSetSpec( "CNA", 10 ); - Assert.fail("Should throw IllegalArgumentException"); - } catch (IllegalArgumentException e) { - Assert.assertEquals( "10 is invalid code for levels in CopyNumberAlteration", - e.getMessage() ); - } - Assert.assertEquals( null, DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelName( null ) ); - Assert.assertEquals( null, DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelName( "foo" )); - Assert.assertEquals( new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Gained ), - DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelName( "Gain") ); - Assert.assertEquals( new DiscreteDataTypeSetSpec( GeneticDataTypes.Mutation, - GeneticTypeLevel.Mutated ), - DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelName( "Mut") ); - - Assert.assertEquals( null, DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelCode - ( null, null ) ); - Assert.assertEquals( null, DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelCode - ( null, "2" ) ); - Assert.assertEquals( null, DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelCode - ( "JUNK", "2" ) ); - Assert.assertEquals( null, DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelCode - ( "JUNK", "CRAP" ) ); - Assert.assertEquals( null, DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelCode - ( "CNA", null ) ); - Assert.assertEquals( null, DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelCode - ( "CNA", "XX" ) ); - Assert.assertEquals( new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Amplified ), - DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelCode( "CNA", "2" ) ); - } - - private void findDiscreteDataTypeSetSpec( GeneticDataTypes expectedGeneticDataType, - String name) { - Assert.assertEquals( expectedGeneticDataType, DiscreteDataTypeSetSpec.findDataType(name)); - } - - @Test - public void testDiscreteDataTypeSpec() { - DiscreteDataTypeSpec aDiscreteDataTypeSpec = - new DiscreteDataTypeSpec( GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.convertCode("<"), GeneticTypeLevel.Gained ); - Assert.assertTrue( aDiscreteDataTypeSpec.satisfy( GeneticTypeLevel.Diploid ) ); - Assert.assertFalse( aDiscreteDataTypeSpec.satisfy(GeneticTypeLevel.Gained) ); - Assert.assertTrue( aDiscreteDataTypeSpec.equals( aDiscreteDataTypeSpec ) ); - Assert.assertFalse( aDiscreteDataTypeSpec.equals( Float.valueOf(0.3f) ) ); - Assert.assertTrue( aDiscreteDataTypeSpec.equals( - new DiscreteDataTypeSpec( GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.convertCode("<"), GeneticTypeLevel.Gained ) ) ); - //System.out.println( aDiscreteDataTypeSpec.hashCode() ); - Assert.assertEquals( "CopyNumberAlteration="), GeneticTypeLevel.Diploid ); - - Assert.assertTrue( aDiscreteDataTypeSpec.satisfy(GeneticTypeLevel.Amplified)); - Assert.assertFalse( aDiscreteDataTypeSpec.satisfy(GeneticTypeLevel.Normal)); - - satisfiedDiscreteDataTypeSpec( GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.convertCode("<"), GeneticTypeLevel.Gained, GeneticTypeLevel.Diploid ); - satisfiedDiscreteDataTypeSpec( GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.convertCode("<="), GeneticTypeLevel.Gained, GeneticTypeLevel.Diploid ); - satisfiedDiscreteDataTypeSpec( GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.convertCode("<="), GeneticTypeLevel.Gained, GeneticTypeLevel.Gained ); - satisfiedDiscreteDataTypeSpec( GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.convertCode(">="), GeneticTypeLevel.Gained, GeneticTypeLevel.Gained ); - satisfiedDiscreteDataTypeSpec( GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.convertCode(">"), GeneticTypeLevel.Gained, GeneticTypeLevel.Amplified); - - findDiscreteDataType( GeneticDataTypes.CopyNumberAlteration, "Copy" ); - findDiscreteDataType( GeneticDataTypes.CopyNumberAlteration, "CNA" ); - findDiscreteDataType( GeneticDataTypes.CopyNumberAlteration, "cna" ); - findDiscreteDataType( GeneticDataTypes.Mutation, "mu" ); - - Assert.assertEquals( null, DiscreteDataTypeSpec.discreteDataTypeSpecGenerator - (null, null, null) ); - Assert.assertEquals( null, DiscreteDataTypeSpec.discreteDataTypeSpecGenerator - (null, null, "foo") ); - Assert.assertEquals( null, DiscreteDataTypeSpec.discreteDataTypeSpecGenerator - (null, "xx", null) ); - Assert.assertEquals( null, DiscreteDataTypeSpec.discreteDataTypeSpecGenerator - ("asd", null, null) ); - Assert.assertEquals( new DiscreteDataTypeSpec( GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.convertCode("<"), GeneticTypeLevel.Gained ), - DiscreteDataTypeSpec.discreteDataTypeSpecGenerator( "CNA", "<", "Gai") ); -// Assert.assertEquals( new DiscreteDataTypeSpec( GeneticDataTypes.Mutation, -// ComparisonOp.convertCode("<"), GeneticTypeLevel.Mutated ), -// DiscreteDataTypeSpec.discreteDataTypeSpecGenerator( "Mutation", "<", "Mutated") ); - } - - @Test - public void testGeneSet() { - - GeneSet aGeneSet = new GeneSet(); - OncoPrintGeneDisplaySpec theResultFullDataTypeSpec = new OncoPrintGeneDisplaySpec(); - GeneWithSpec aGeneWithSpec = GeneWithSpec.geneWithSpecGenerator("foo", - theResultFullDataTypeSpec, null ); - aGeneSet.addGeneWithSpec(aGeneWithSpec); - Assert.assertEquals( GeneWithSpec.geneWithSpecGenerator("foo", - theResultFullDataTypeSpec, null ), - aGeneSet.getGene() ); - aGeneSet.addGeneWithSpec(aGeneWithSpec); - Assert.assertEquals( null, aGeneSet.getGene() ); - aGeneSet.addGeneWithSpec( GeneWithSpec.geneWithSpecGenerator("foo", - theResultFullDataTypeSpec, null ) ); - - Assert.assertEquals( aGeneWithSpec, aGeneSet.getGeneWithSpec("foo") ); - Assert.assertEquals( aGeneWithSpec, aGeneSet.getGeneWithSpec("FOO") ); - Assert.assertEquals( null, aGeneSet.getGeneWithSpec("none") ); - - GeneSet anotherGeneSet = new GeneSet( "test" ); - - Assert.assertTrue( aGeneSet.equals(aGeneSet) ); - Assert.assertFalse( aGeneSet.equals(null) ); - Assert.assertFalse( aGeneSet.equals( Float.valueOf(1) ) ); - Assert.assertFalse( aGeneSet.equals( anotherGeneSet ) ); - - anotherGeneSet = new GeneSet( "foo" ); - anotherGeneSet.addGeneWithSpec(aGeneWithSpec); - anotherGeneSet.addGeneWithSpec(aGeneWithSpec); - anotherGeneSet.addGeneWithSpec(aGeneWithSpec); -// TODO: FIX: Assert.assertTrue( aGeneSet.equals( anotherGeneSet ) ); - } - - private void satisfiedDiscreteDataTypeSpec( GeneticDataTypes theGeneticDataType, - ComparisonOp comparisonOp, Object threshold, Object satisfied ) { - DiscreteDataTypeSpec aDiscreteDataTypeSpec = - new DiscreteDataTypeSpec( theGeneticDataType, comparisonOp, threshold ); - Assert.assertTrue( aDiscreteDataTypeSpec.satisfy( (GeneticTypeLevel) satisfied ) ); - - // take 'opposite' comparisonOp, and try Assert.assertFalse - DiscreteDataTypeSpec oppositeDiscreteDataTypeSpec = - new DiscreteDataTypeSpec( theGeneticDataType, comparisonOp.oppositeComparisonOp(), - threshold ); - Assert.assertFalse( oppositeDiscreteDataTypeSpec.satisfy( (GeneticTypeLevel) satisfied ) ); - } - - private void findDiscreteDataType( GeneticDataTypes expectedGeneticDataType, String name) { - Assert.assertEquals( expectedGeneticDataType, DiscreteDataTypeSpec.findDataType(name)); - } - - @Test - public void testOncoPrintGeneDisplaySpec() { - OncoPrintGeneDisplaySpec theResultFullDataTypeSpec = new OncoPrintGeneDisplaySpec(); - for( GeneticDataTypes aGeneticDataType : GeneticDataTypes.values()){ - Assert.assertFalse( theResultFullDataTypeSpec.satisfy( aGeneticDataType )); - } - for( GeneticDataTypes aGeneticDataType : GeneticDataTypes.values()){ - Assert.assertFalse( theResultFullDataTypeSpec.satisfy( aGeneticDataType )); - - switch( aGeneticDataType.getTheDataTypeCategory()){ - case Continuous: - Assert.assertFalse( theResultFullDataTypeSpec.satisfy( aGeneticDataType, 0.0f )); - break; - case Discrete: - for( GeneticTypeLevel aGeneticTypeLevel: GeneticTypeLevel.values()){ - if( aGeneticTypeLevel.getTheGeneticDataType().getTheDataTypeCategory() - == DataTypeCategory.Discrete ){ - Assert.assertFalse( theResultFullDataTypeSpec.satisfy( aGeneticDataType, - aGeneticTypeLevel )); - } - } - break; - } - } - - // test the default - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - theOncoPrintGeneDisplaySpec.setDefault( 1.0, 1.0 ); - - // Expression alteration definition is <= and >=, as per docs - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, -1.0f ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, 1.0f ) ); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, 0.0f ) ); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, -0.9f ) ); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, 0.9f ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.CopyNumberAlteration ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.HomozygouslyDeleted ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Amplified ) ); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Gained) ); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.HemizygouslyDeleted ) ); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Diploid ) ); - - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Mutation, GeneticTypeLevel.Mutated) ); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Mutation, GeneticTypeLevel.Normal ) ); - - } - - /** - * combine some data type specs: - * The net result: - * HomozygouslyDeleted Gained Amplified Expression<2.0 Expression>=3.0 Methylation ; - * @return - */ - public static OncoPrintGeneDisplaySpec createTestOncoPrintGeneDisplaySpec(){ - ParsedFullDataTypeSpec aParsedFullDataTypeSpec = new ParsedFullDataTypeSpec( ); - - aParsedFullDataTypeSpec.addSpec( new ConcreteDataTypeSpec( GeneticDataTypes.Methylation )); - aParsedFullDataTypeSpec.addSpec( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 1.0f ) ); - aParsedFullDataTypeSpec.addSpec( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 2.0f ) ); - aParsedFullDataTypeSpec.addSpec( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">="), 3.0f ) ); - aParsedFullDataTypeSpec.addSpec( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 2.0f ) ); - aParsedFullDataTypeSpec.addSpec( new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">="), 3.4f ) ); - - aParsedFullDataTypeSpec.addSpec( new DiscreteDataTypeSetSpec - ( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Gained) ); - aParsedFullDataTypeSpec.addSpec( new DiscreteDataTypeSetSpec - ( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Amplified) ); - aParsedFullDataTypeSpec.addSpec( new DiscreteDataTypeSetSpec - ( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Gained) ); - aParsedFullDataTypeSpec.addSpec( new DiscreteDataTypeSpec - ( GeneticDataTypes.CopyNumberAlteration, - ComparisonOp.convertCode("<"), GeneticTypeLevel.HemizygouslyDeleted ) ); - return aParsedFullDataTypeSpec.cleanUpInput(); - } - - @Test - public void testParsedFullDataTypeSpec() { - // make ResultFullDataTypeSpec that accepts nothing - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec = - (new ParsedFullDataTypeSpec( )).cleanUpInput(); - for( GeneticDataTypes aGeneticDataType : GeneticDataTypes.values()){ - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy( aGeneticDataType )); - } - - theOncoPrintGeneDisplaySpec = createTestOncoPrintGeneDisplaySpec(); - //System.out.println( theResultFullDataTypeSpec ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy(GeneticDataTypes.Methylation, 2f )); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - (GeneticDataTypes.Methylation, -33f )); - - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy(GeneticDataTypes.Expression, -3f )); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - (GeneticDataTypes.Expression, 1.99f )); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy(GeneticDataTypes.Expression, 2f )); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy(GeneticDataTypes.Expression, 3f )); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy(GeneticDataTypes.Expression, 33f )); - - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - (GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Amplified )); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - (GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Gained )); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - (GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.Diploid )); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - (GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.HemizygouslyDeleted )); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - (GeneticDataTypes.CopyNumberAlteration, GeneticTypeLevel.HomozygouslyDeleted )); - - // all methylations - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Methylation, -3.0f, Direction.higher ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Methylation, -3.0f, Direction.lower ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Methylation, 3.0f, Direction.higher ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Methylation, 3.0f, Direction.lower ) ); - - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, 3f, Direction.higher ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, 3.5f, Direction.higher ) ); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, 2.5f, Direction.higher ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, -1.0f, Direction.lower ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, 1.0f, Direction.lower ) ); - Assert.assertTrue( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, 1.99f, Direction.lower) ); - Assert.assertFalse( theOncoPrintGeneDisplaySpec.satisfy - ( GeneticDataTypes.Expression, 2.0f, Direction.lower ) ); - } - - @Test - public void testResultDataTypeSpec() { - ResultDataTypeSpec aResultDataTypeSpec = new ResultDataTypeSpec - ( GeneticDataTypes.Expression ); - Assert.assertTrue( aResultDataTypeSpec.equals - ( ResultDataTypeSpec.newInstance(aResultDataTypeSpec) ) ); - aResultDataTypeSpec.setCombinedLesserContinuousDataTypeSpec( - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode("<"), 1.0f ) ); - Assert.assertTrue( aResultDataTypeSpec.equals - ( ResultDataTypeSpec.newInstance(aResultDataTypeSpec) ) ); - aResultDataTypeSpec.setCombinedGreaterContinuousDataTypeSpec( - new ContinuousDataTypeSpec( GeneticDataTypes.Expression, - ComparisonOp.convertCode(">="), 3.0f ) ); - Assert.assertTrue( aResultDataTypeSpec.equals - ( ResultDataTypeSpec.newInstance(aResultDataTypeSpec) ) ); - aResultDataTypeSpec.setAcceptAll(true); - Assert.assertTrue( aResultDataTypeSpec.equals - ( ResultDataTypeSpec.newInstance(aResultDataTypeSpec) ) ); - - Assert.assertFalse( aResultDataTypeSpec.equals - ( new ResultDataTypeSpec( GeneticDataTypes.Expression ) ) ); - Assert.assertEquals( null, ResultDataTypeSpec.newInstance( null ) ); - - } - - @Test - public void testGeneWithSpec() { - - Assert.assertEquals( null, GeneWithSpec.geneWithSpecGenerator(null, null, null )); - Assert.assertEquals( null, GeneWithSpec.geneWithSpecGenerator("name", null, null )); - OncoPrintGeneDisplaySpec theResultFullDataTypeSpec = new OncoPrintGeneDisplaySpec(); - Assert.assertEquals( null, GeneWithSpec.geneWithSpecGenerator - (null, theResultFullDataTypeSpec, null )); - theResultFullDataTypeSpec.setDefault( 2.0, 1.0 ); - GeneWithSpec aGeneWithSpec = new GeneWithSpec( "name", theResultFullDataTypeSpec ); - Assert.assertEquals( aGeneWithSpec.toString(), - GeneWithSpec.geneWithSpecGenerator("name", - theResultFullDataTypeSpec, null ).toString()); - Assert.assertEquals( aGeneWithSpec.toString(), - GeneWithSpec.geneWithSpecGenerator("name", null, - theResultFullDataTypeSpec ).toString()); - // TODO: impl equals and hashCode for GeneWithSpec AND all its components, so this works - Assert.assertTrue( aGeneWithSpec.equals( GeneWithSpec.geneWithSpecGenerator("name", - theResultFullDataTypeSpec, null ))); - Assert.assertTrue( aGeneWithSpec.equals( GeneWithSpec.geneWithSpecGenerator("name", - null, theResultFullDataTypeSpec ))); - } - - private void checkAmazin(GeneWithSpec aGeneWithSpec){ - - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy( - GeneticDataTypes.CopyNumberAlteration)); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy - (GeneticDataTypes.Mutation)); - Assert.assertTrue(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy - (GeneticDataTypes.Expression, -2.01f)); - Assert.assertFalse(aGeneWithSpec.getTheOncoPrintGeneDisplaySpec().satisfy - (GeneticDataTypes.Expression, -2.0f)); - } - - @Test - public void testUniqueEnumPrefix() { - - tryAnUniqueEnumPrefix("Meth", GeneticDataTypes.class, - GeneticDataTypes.Methylation); - tryAnUniqueEnumPrefix("E", GeneticDataTypes.class, - GeneticDataTypes.Expression); - tryAnUniqueEnumPrefix("Mu", GeneticDataTypes.class, - GeneticDataTypes.Mutation); - tryAnUniqueEnumPrefix("C", GeneticDataTypes.class, - GeneticDataTypes.CopyNumberAlteration); - } - - private void tryAnUniqueEnumPrefix(String testInput, Class enumClass, - Object enumConstant) { - - try { - Assert.assertEquals(enumConstant, - UniqueEnumPrefix.findUniqueEnumMatchingPrefix(enumClass, testInput)); - } catch (IllegalArgumentException e) { - System.out - .println("testUniqueEnumPrefix: IllegalArgumentException: " - + e.getMessage()); - } - } - - @Test - public void testOncoPrintSpecification() { - - OncoPrintSpecification aOncoPrintSpecification = new OncoPrintSpecification(); - - String[] genes = { "G1", "GENE2", "LAST" }; - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - theOncoPrintGeneDisplaySpec.setDefault( 1.5f, 1.0f ); - GeneSet aGeneSet = new GeneSet( ); - for( String g : genes){ - aGeneSet.addGeneWithSpec( new GeneWithSpec( g, theOncoPrintGeneDisplaySpec ) ); - } - aOncoPrintSpecification.add(aGeneSet); - Assert.assertEquals( null, aOncoPrintSpecification.getGeneWithSpec( "geneName" ) ); - Assert.assertEquals( new ArrayList( Arrays.asList( genes ) ), - aOncoPrintSpecification.listOfGenes() ); - - // TODO: change to .equals, when implemented - Assert.assertEquals( new GeneWithSpec( "GENE2", theOncoPrintGeneDisplaySpec ).toString(), - aOncoPrintSpecification.getGeneWithSpec( "gene2" ).toString() ); - - aOncoPrintSpecification.add(aGeneSet); - ArrayList t = new ArrayList( Arrays.asList( genes ) ); - t.addAll( new ArrayList( Arrays.asList( genes ) ) ); - Assert.assertEquals( t, aOncoPrintSpecification.listOfGenes() ); - - Assert.assertEquals( null, aOncoPrintSpecification.getGeneWithSpec( "GENENAME" ) ); - // TODO: change to .equals, when implemented - Assert.assertEquals( new GeneWithSpec( "GENE2", theOncoPrintGeneDisplaySpec ).toString(), - aOncoPrintSpecification.getGeneWithSpec( "gene2" ).toString() ); - - } - - @Test - public void testGetUnionOfPossibleLevels() { - - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - OncoPrintSpecification anOncoPrintSpecification = new OncoPrintSpecification( ); - // TODO: change to .equals, when implemented - Assert.assertEquals( theOncoPrintGeneDisplaySpec.toString(), - anOncoPrintSpecification.getUnionOfPossibleLevels().toString() ); - - String[] genes = { "G1", "LAST" }; - theOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - theOncoPrintGeneDisplaySpec.setDefault( 2.5, 1.0 ); - anOncoPrintSpecification = new OncoPrintSpecification( genes, theOncoPrintGeneDisplaySpec ); - // TODO: change to .equals, when implemented - Assert.assertEquals( theOncoPrintGeneDisplaySpec.toString(), - anOncoPrintSpecification.getUnionOfPossibleLevels().toString() ); - - // HomozygouslyDeleted Gained Amplified Expression<2.0 Expression>=3.0 Methylation ; - anOncoPrintSpecification = new OncoPrintSpecification( genes, - createTestOncoPrintGeneDisplaySpec() ); - Assert.assertEquals( createTestOncoPrintGeneDisplaySpec().toString(), - anOncoPrintSpecification.getUnionOfPossibleLevels().toString() ); - - ResultDataTypeSpec theResultDataTypeSpec = new ResultDataTypeSpec - ( GeneticDataTypes.Expression ); - theResultDataTypeSpec.setCombinedGreaterContinuousDataTypeSpec( - ContinuousDataTypeSpec.continuousDataTypeSpecGenerator - ( "Expression", "<=", "2.5" ) ); - theOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - theOncoPrintGeneDisplaySpec.setResultDataTypeSpec( GeneticDataTypes.Expression, - theResultDataTypeSpec ); - GeneSet aGeneSet = new GeneSet( ); - aGeneSet.addGeneWithSpec( new GeneWithSpec( "foo", theOncoPrintGeneDisplaySpec ) ); - anOncoPrintSpecification.add(aGeneSet); - - // a hack; should create the right OncoPrintGeneDisplaySpec for the expected - Assert.assertEquals( "HomozygouslyDeleted Gained Amplified Expression<=2.5 " + - "Expression>=3.0 Methylation ;", - anOncoPrintSpecification.getUnionOfPossibleLevels().toString() ); - - theResultDataTypeSpec = new ResultDataTypeSpec( GeneticDataTypes.Mutation ); - theResultDataTypeSpec.setTheDiscreteDataTypeSetSpec( - DiscreteDataTypeSetSpec.discreteDataTypeSetSpecGeneratorByLevelName( "Mutated") ); - theOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - theOncoPrintGeneDisplaySpec.setResultDataTypeSpec( GeneticDataTypes.Mutation, - theResultDataTypeSpec ); - aGeneSet = new GeneSet( ); - aGeneSet.addGeneWithSpec( new GeneWithSpec( "bar", theOncoPrintGeneDisplaySpec ) ); - anOncoPrintSpecification.add(aGeneSet); - // a hack; should create the right OncoPrintGeneDisplaySpec for the expected - Assert.assertEquals( "HomozygouslyDeleted Gained Amplified Expression<=2.5 " + - "Expression>=3.0 Mutated Methylation ;", - anOncoPrintSpecification.getUnionOfPossibleLevels().toString() ); - - } -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/pancancer/LargeTestSetGenerator.java b/core/src/test/java/org/mskcc/cbio/portal/pancancer/LargeTestSetGenerator.java deleted file mode 100644 index 9ab181cd970..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/pancancer/LargeTestSetGenerator.java +++ /dev/null @@ -1,437 +0,0 @@ -package org.mskcc.cbio.portal.pancancer; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileReader; -import java.io.FileWriter; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - - -/** - * This class is not a Test class, but rather a class that can be used - * to generate a large test set for load/performance testing purposes. - * - * @author plukasse - * - */ -public class LargeTestSetGenerator { - - - public static void main(String[] args) throws IOException { - int size = Integer.parseInt(args[0]); - String outputDir = args[1]; - String studyId = args[2]; - String dataCNAfile = args[3]; - String dataMutationsfile = args[4]; - int nrCancerTypes = Integer.parseInt(args[5]); - int nrSubTypes = Integer.parseInt(args[6]); - - //0- make output dir: - if (!new File(outputDir).exists() && !new File(outputDir).mkdirs()) - throw new RuntimeException("Could not make output dir : " + outputDir); - - //1- generate the desired number of samples to be generated in this test set - System.out.println("Generating sample list for " + size + " samples...."); - List sampleList = getSampleList(size); - - // Generate data_CNA.txt : - System.out.println("Generating CNA data...."); - generateDataCNA(dataCNAfile, outputDir, sampleList); - - System.out.println("Generating CNA SEG data...."); - generateDataCNA_SEG(dataCNAfile + ".seg", outputDir, sampleList); - - System.out.println("Generating cases_all.txt...."); - generateCasesAll(outputDir, sampleList, studyId); - - System.out.println("Generating MUTATION data...."); - generateMutationData(dataMutationsfile, outputDir, sampleList); - - System.out.println("Generating data_clinical.txt...."); - //Generate clinical data: - generateClinicalData(outputDir, sampleList, nrCancerTypes, nrSubTypes); - - System.out.println("Generating cancer_type.txt...."); - generateCancerType(outputDir, studyId); - - System.out.println("Generating meta_study.txt...."); - generateMetaStudy(outputDir, studyId); - - System.out.println("Generating meta_clinical.txt...."); - generateMetaClinical(outputDir, studyId); - - System.out.println("Generating meta_mutations_extended.txt...."); - generateMetaMutExt(outputDir, studyId); - - System.out.println("Generating meta_CNA.txt...."); - generateMetaCna(outputDir, studyId); - - System.out.println("Generating meta_CNA_seg.txt...."); - generateMetaCnaSEG(outputDir, studyId); - - - - - System.out.println("Done. You will find the files in " + outputDir); - } - - private static void generateCancerType(String outputDir, String studyId) throws IOException { - FileWriter resultFile = new FileWriter(outputDir + "/cancer_type.txt"); - resultFile.write("pan_cancer " + studyId+ " PANCAN Yellow Breast"); - resultFile.close(); - } - - private static void generateMetaStudy(String outputDir, String studyId) throws IOException { - FileWriter resultFile = new FileWriter(outputDir + "/meta_study.txt"); - resultFile.write("type_of_cancer: pan_cancer\n"+ - "cancer_study_identifier: " + studyId+ "\n"+ - "name: " + studyId+ "\n"+ - "description: " + studyId+ ".\n"+ - "citation: The Hyve, Pieter Lukasse, ...\n"+ - "pmid: 23000897,26451490\n"+ - "groups: PUBLIC;GDAC;SU2C-PI3K\n"); - resultFile.close(); - } - - private static void generateMetaClinical(String outputDir, String studyId) throws IOException { - FileWriter resultFile = new FileWriter(outputDir + "/meta_clinical.txt"); - resultFile.write("cancer_study_identifier: " + studyId+ "\n"+ - "genetic_alteration_type: CLINICAL\n"+ - "datatype: ;:FREE-FORM\n"+ - "stable_id: " + studyId+ "_clinical\n"+ - "show_profile_in_analysis_tab: false\n"+ - "profile_description: Sample clinical data for this study. \n"+ - "profile_name: Sample clinical data for " + studyId+ "."); - resultFile.close(); - } - - private static void generateMetaMutExt(String outputDir, String studyId) throws IOException { - FileWriter resultFile = new FileWriter(outputDir + "/meta_mutations_extended.txt"); - resultFile.write("cancer_study_identifier: " + studyId+ "\n"+ - "genetic_alteration_type: MUTATION_EXTENDED\n"+ - "datatype: MAF\n"+ - "stable_id: " + studyId+ "_mutations\n"+ - "show_profile_in_analysis_tab: true\n"+ - "profile_description: Mutation data from whole exome sequencing.\n"+ - "profile_name: Mutations " + studyId); - resultFile.close(); - } - - private static void generateMetaCna(String outputDir, String studyId) throws IOException { - FileWriter resultFile = new FileWriter(outputDir + "/meta_CNA.txt"); - resultFile.write("cancer_study_identifier: " + studyId+ "\n"+ - "genetic_alteration_type: COPY_NUMBER_ALTERATION\n"+ - "datatype: DISCRETE\n"+ - "stable_id: " + studyId+ "_gistic\n"+ - "show_profile_in_analysis_tab: true\n"+ - "profile_description: Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification.\n"+ - "profile_name: Putative copy-number alterations from GISTIC " + studyId ); - - resultFile.close(); - } - - private static void generateMetaCnaSEG(String outputDir, String studyId) throws IOException { - FileWriter resultFile = new FileWriter(outputDir + "/meta_CNA_seg.txt"); - resultFile.write("cancer_study_identifier: " + studyId+ "\n"+ - "genetic_alteration_type: SEGMENT\n"+ - "datatype: SEGMENT\n"+ - "stable_id: " + studyId+ "_segment\n"+ - "show_profile_in_analysis_tab: false\n"+ - "profile_description: Segment data for the study " + studyId+ "\n"+ - "profile_name: Segment data values " + studyId+ "\n"+ - "reference_genome_id: hg19\n"+ - "data_filename: data_CNA_txt.seg\n"+ - "description: Segment data for the study " + studyId ); - resultFile.close(); - } - - private static void generateClinicalData(String outputDir, List sampleList, int nrCancerTypes, int nrSubTypes) throws IOException { - FileWriter resultFile = new FileWriter(outputDir + "/data_clinical.txt"); - //write header, with CANCER_TYPE, CANCER_TYPE_DETAILED in pos 3 and 4: - if (nrSubTypes > 0) { - //Display Name: The display name for each clinical attribute. - resultFile.write("#Patient Identifier\t#Sample Identifier\tSubtype\tCancer Type\tCancer Type Detailed\tOverall Survival Status\tOverall Survival (Months)\tDisease Free Status\tDisease Free (Months)\n"); - //Description: Long(er) description of each clinical attribute. - resultFile.write("#Patient identifier\t#Sample identifier\tSubtype description\tCancer Type\tCancer Type Detailed\tOverall survival status\tOverall survival in months since diagnosis\tDisease free status\tDisease free in months since treatment\n"); - //Datatype: The datatype of each clinical attribute (must be one of: STRING, NUMBER, BOOLEAN). - resultFile.write("#STRING\t#STRING\tSTRING\tSTRING\tSTRING\tSTRING\tNUMBER\tSTRING\tNUMBER\n"); - //Attribute Type: The type of each clinical attribute, e.g. should this attribute be attached to a PATIENT or SAMPLE. - resultFile.write("#PATIENT\tSAMPLE\tSAMPLE\tSAMPLE\tSAMPLE\tPATIENT\tPATIENT\tPATIENT\tPATIENT\n"); - //Priority: A number which indicates the importance of each attribute. In the future, higher priority attributes will appear in more prominent places than lower priority ones on relevant pages. A lower number indicates a higher priority. - resultFile.write("#1\t1\t1\t\t\t1\t1\t1\t1\n"); - resultFile.write("PATIENT_ID\tSAMPLE_ID\tSUBTYPE\tCANCER_TYPE\tCANCER_TYPE_DETAILED\tOS_STATUS\tOS_MONTHS\tDFS_STATUS\tDFS_MONTHS\n"); - } - else { - //shorter, without CANCER_TYPE_DETAILED - resultFile.write("#Patient Identifier\t#Sample Identifier\tSubtype\tCancer Type\tOverall Survival Status\tOverall Survival (Months)\tDisease Free Status\tDisease Free (Months)\n"); - resultFile.write("#Patient identifier\t#Sample identifier\tSubtype description\tCancer Type\tOverall survival status\tOverall survival in months since diagnosis\tDisease free status\tDisease free in months since treatment\n"); - resultFile.write("#STRING\t#STRING\tSTRING\tSTRING\tSTRING\tNUMBER\tSTRING\tNUMBER\n"); - resultFile.write("#PATIENT\tSAMPLE\tSAMPLE\tSAMPLE\tPATIENT\tPATIENT\tPATIENT\tPATIENT\n"); - resultFile.write("#1\t1\t1\t\t\t1\t1\t1\n"); - resultFile.write("PATIENT_ID\tSAMPLE_ID\tSUBTYPE\tCANCER_TYPE\tOS_STATUS\tOS_MONTHS\tDFS_STATUS\tDFS_MONTHS\n"); - } - - //iterate over sampleList, write the lines: - for (String sample: sampleList) { - String patientId = sample.split("-SAMPLE")[0]; //see getSampleList method - resultFile.write(patientId + "\t"); - resultFile.write(sample + "\t"); - - String [] subtype = {"Luminal A", "basal-like", "Luminal B", "Her2 enriched"}; - resultFile.write(subtype[random(0,3)] + "\t"); - - int cancerType = random(1,nrCancerTypes); - resultFile.write("Cancer_type" + cancerType + "\t"); - - if (nrSubTypes > 0) { - int cancerTypeDetailed = random(1,nrSubTypes); - resultFile.write("Cancer_type" + cancerType + "_Sub" +cancerTypeDetailed + "\t"); - } - - String [] osStatus = {"1:DECEASED", "0:LIVING"}; - resultFile.write(osStatus[random(0,1)] + "\t"); - //os_months - int osMonths = random(0,300); - resultFile.write(osMonths + "\t"); - - String [] dfsStatus = {"NA","1:Recurred/Progressed","0:DiseaseFree"}; - resultFile.write(dfsStatus[random(0,2)] + "\t"); - //repeat os_months - resultFile.write(osMonths + ""); - - resultFile.write("\n"); - } - resultFile.close(); - - } - - private static int random(int start, int end) { - return (int)Math.round(Math.random()*(end-start))+start; - } - - - - private static void generateMutationData(String dataMutationsfile, String outputDir, List sampleList) throws IOException { - Map lineTemplates = new HashMap(); - - //read the dataMutationsfile and find the unique line templates based on Hugo_Symbol (1st column) - BufferedReader originalFile = new BufferedReader(new FileReader(dataMutationsfile)); - FileWriter resultFile = new FileWriter(outputDir + "/" + new File(dataMutationsfile).getName()); - //read header: - String line = originalFile.readLine(); - //write header: - resultFile.write(line + "\n"); - int pos_Tumor_Sample_Barcode = findPos(line, "Tumor_Sample_Barcode"); - int pos_Matched_Norm_Sample_Barcode = findPos(line, "Matched_Norm_Sample_Barcode"); - //read first data line: - line = originalFile.readLine(); - while ( line != null) { - String[] splitLine = line.split("\t"); - String hugoSymbol = splitLine[0]; - lineTemplates.put(hugoSymbol, line); - line = originalFile.readLine(); - } - //iterate over the samples, giving each sample a random number of mutations (from the line templates) - Object[] lines = lineTemplates.values().toArray(); - for (String sample : sampleList) { - //get a random number of lineTemplates - int numberOfMutations = random(0, lines.length); - //get the numberOfMutations random indexes: - int[] indexes = getRandomIdx(lines.length, numberOfMutations); - for (int index: indexes){ - line = (String)lines[index]; - - //replace sample code: - String[] splitLine = line.split("\t"); - splitLine[pos_Tumor_Sample_Barcode] = sample; - splitLine[pos_Matched_Norm_Sample_Barcode] = sample; - for (String field : splitLine) - resultFile.write(field + "\t"); - - resultFile.write(line + "\n"); - } - } - resultFile.close(); - originalFile.close(); - } - - - private static int findPos(String headerLine, String fieldName) { - String[] splitLine = headerLine.split("\t"); - for (int i = 0; i < splitLine.length; i++) { - String field = splitLine[i]; - if (field.equals(fieldName)) - return i; - } - throw new RuntimeException("Field [" + fieldName + "] not found in input data file"); - } - - - private static int[] getRandomIdx(int size, int nrItems) { - ArrayList list = new ArrayList(); - for (int i=0; i sampleList) throws IOException { - // Hugo_Symbol Entrez_Gene_Id sample1 sample2 .... - BufferedReader originalFile = new BufferedReader(new FileReader(dataCNAfile)); - FileWriter resultFile = new FileWriter(outputDir + "/" + new File(dataCNAfile).getName()); - //write header: - resultFile.write("Hugo_Symbol\tEntrez_Gene_Id"); - for (String sample : sampleList) - resultFile.write("\t" + sample); - resultFile.write("\n"); - - //read header/skip: - String line = originalFile.readLine(); - //read first data line: - line = originalFile.readLine(); - while ( line != null) { - //write Hugo_Symbol\tEntrez_Gene_Id: - String[] splitLine = line.split("\t"); - resultFile.write(splitLine[0] + "\t" + splitLine[1]); - //write the CNA data: - for (String sample : sampleList) - resultFile.write("\t" + random(-2,2)); - - //new line - resultFile.write("\n"); - line = originalFile.readLine(); - } - originalFile.close(); - resultFile.close(); - - - } - - - private static void generateDataCNA_SEG(String dataCNASegfile, String outputDir, List sampleList) throws IOException { - // Hugo_Symbol Entrez_Gene_Id sample1 sample2 .... - FileWriter resultFile = new FileWriter(outputDir + "/" + new File(dataCNASegfile).getName()); - //write header: - resultFile.write("Sample\tchrom\tloc.start\tloc.end\tnum.mark\tseg.mean\n"); - - //example: - //Sample chrom loc.start loc.end num.mark seg.mean - //TCGA-A1-A0SB-01 1 1737357 39975142 17096 0.009 - - - for (String sample : sampleList) { - - int nrChrom = random(10,20); //some of the chromosomes - for (int i = 1; i < nrChrom; i ++) { - double seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"13684348\t" +"13833633\t" +"17096\t" + seg_mean + "\n"); - seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"13833728\t" +"15413875\t" +"17096\t" + seg_mean + "\n"); - seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"15416808\t" +"16121303\t" +"17096\t" + seg_mean + "\n"); - seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"16124160\t" +"16764830\t" +"17096\t" + seg_mean + "\n"); - seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"16769801\t" +"18101891\t" +"17096\t" + seg_mean + "\n"); - seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"18104300\t" +"18657376\t" +"17096\t" + seg_mean + "\n"); - seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"18658403\t" +"25343371\t" +"17096\t" + seg_mean + "\n"); - seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"25346379\t" +"27014651\t" +"17096\t" + seg_mean + "\n"); - - seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"27021371\t" +"27182923\t" +"17096\t" + seg_mean + "\n"); - seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"27182944\t" +"27339665\t" +"17096\t" + seg_mean + "\n"); - seg_mean = random(-200,200)/100.0; - resultFile.write(sample + "\t" + i + "\t" +"27340606\t" +"29923280\t" +"17096\t" + seg_mean + "\n"); - - //TODO the segments above cover only a small portion of the chromosomes. Ideally we base this on a table - //with chromosome size and try to cover a large portion...perhaps something to add later if really necessary for a specific test... - - } - -// TCGA-GI-A2C8-01 17 13684348 13833633 115 -1.0971 -// TCGA-GI-A2C8-01 17 13833728 15413875 1243 -0.0309 -// TCGA-GI-A2C8-01 17 15416808 16121303 185 -0.9382 -// TCGA-GI-A2C8-01 17 16124160 16764830 213 -0.2745 -// TCGA-GI-A2C8-01 17 16769801 18101891 668 0.2376 -// TCGA-GI-A2C8-01 17 18104300 18657376 41 0.4776 -// TCGA-GI-A2C8-01 17 18658403 25343371 868 -0.2243 -// TCGA-GI-A2C8-01 17 25346379 27014651 810 0.1167 - - -// TCGA-GI-A2C8-01 17 27021371 27182923 55 0.5718 -// TCGA-GI-A2C8-01 17 27182944 27339665 74 0.2509 -// TCGA-GI-A2C8-01 17 27340606 29923280 1067 -0.217 - -// TCGA-GI-A2C8-01 17 29926532 30117305 108 0.2985 -// TCGA-GI-A2C8-01 17 30117461 30347325 107 -0.2215 -// TCGA-GI-A2C8-01 17 30347502 30579182 108 0.9076 -// TCGA-GI-A2C8-01 17 30580272 30974499 163 1.5428 -// TCGA-GI-A2C8-01 17 30976522 31180523 116 -0.2454 -// TCGA-GI-A2C8-01 17 31182534 31250961 38 1.1809 -// TCGA-GI-A2C8-01 17 31259041 31284664 22 -0.1943 -// TCGA-GI-A2C8-01 17 31285744 31351121 57 1.0972 - - } - resultFile.close(); - - - } - - - - private static void generateCasesAll(String outputDir, List sampleList, String studyId) throws IOException { - - FileWriter resultFile = new FileWriter(outputDir + "/cases_all.txt"); - //write header: - - resultFile.write("cancer_study_identifier: " + studyId + "\n"); - resultFile.write("stable_id: " + studyId + "_all\n"); - resultFile.write("case_list_name: All Tumors\n"); - resultFile.write("case_list_description: All tumor samples (" + sampleList.size() + " samples)\n"); - resultFile.write("case_list_ids: "); - for (String sample : sampleList) - resultFile.write("\t" + sample); - resultFile.write("\n"); - resultFile.close(); - } - - - private static List getSampleList(int sampleSetSize) { - List result = new ArrayList(); - - int maxSampleListForPatient = 10; - //size between 1 and maxSampleListForPatient - int sizeSampleListForPatient = random(1,maxSampleListForPatient); - int countSize = 0; - int sampleId = 0; - int patientId = 1; - for (int i = 0; i < sampleSetSize; i++) { - countSize++; - if (countSize > sizeSampleListForPatient) { - countSize = 0; - //get new random size: - sizeSampleListForPatient = random(1,maxSampleListForPatient); - patientId++; - sampleId = 0; - } - sampleId++; - result.add("TEST-PAT"+patientId+"-SAMPLE"+sampleId); - } - return result; - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/pancancer/TestPanCancerStudySummaryImport.java b/core/src/test/java/org/mskcc/cbio/portal/pancancer/TestPanCancerStudySummaryImport.java deleted file mode 100755 index 014b499a54b..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/pancancer/TestPanCancerStudySummaryImport.java +++ /dev/null @@ -1,163 +0,0 @@ -package org.mskcc.cbio.portal.pancancer; - -import org.junit.After; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.ClinicalAttribute; -import org.mskcc.cbio.portal.model.Sample; -import org.mskcc.cbio.portal.model.TypeOfCancer; -import org.mskcc.cbio.portal.scripts.ImportCancerStudy; -import org.mskcc.cbio.portal.scripts.ImportClinicalData; -import org.mskcc.cbio.portal.scripts.ImportSampleList; -import org.mskcc.cbio.portal.scripts.ImportProfileData; -import org.mskcc.cbio.portal.util.*; -import org.mskcc.cbio.portal.web_api.GetSampleLists; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import java.util.ArrayList; -import java.util.List; -import java.util.Map; -import java.util.Set; - -import static org.junit.Assert.assertEquals; - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestPanCancerStudySummaryImport { - - @Before - public void setUp() throws DaoException { - //clear cache to ensure this test is not affected by other tests (i.e. some tests add the same - //samples to the DB and these remain in the cache after tests are done...if tests don't implement - //teardown properly). - DaoPatient.reCache(); - DaoSample.reCache(); - DaoGeneticProfile.reCache(); - DaoGeneOptimized.getInstance().reCache(); - } - - @After - public void tearDown() { - //clear any cached data: - DaoPatient.reCache(); - DaoSample.reCache(); - DaoGeneticProfile.reCache(); - DaoGeneOptimized.getInstance().reCache(); - } - - @Test - public void testPanCancerImport() throws Exception { - ProgressMonitor.setConsoleMode(true); - - addGenes(); - - // have to do add the pan_cancer cancer type first - addCancerType("pan_cancer", "Pan-Cancer", "other", "Red", "PANCAN", "tissue"); - - // ImportCancerStudy portal-study/meta_study.txt - addCancerStudy("src/test/resources/panCancerStudySummary/meta_study.txt"); - - //ImportClinicalData portal-study/data_clinical.txt multi_cancer_study - addClinicalData("src/test/resources/panCancerStudySummary/meta_clinical.txt", - "src/test/resources/panCancerStudySummary/data_clinical.txt"); - - // ImportProfileData --meta portal-study/meta_CNA.txt --loadMode bulkload --data portal-study/data_CNA.txt - addProfileData("src/test/resources/panCancerStudySummary/meta_CNA.txt", "src/test/resources/panCancerStudySummary/data_CNA.txt"); - - // ImportProfileData --meta portal-study/meta_mutations_extended.txt --loadMode bulkload --data portal-study/data_mutations_extended.txt - addProfileData("src/test/resources/panCancerStudySummary/meta_mutations_extended.txt", "src/test/resources/panCancerStudySummary/data_mutations_extended.txt"); - - // ImportSampleList portal-study/case_lists/cases_all.txt - // we're passing a single file, not the directory - addSampleLists("src/test/resources/panCancerStudySummary/cases_all.txt"); - - // test getCancerTypeInfo - runChecksForGetCancerTypeInfo(); - - // TODO : add more checks for profile data retrieved via pancancer queries (if any) - } - - private void addGenes() throws DaoException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - //genes used in test data: - daoGene.addGene(new CanonicalGene(999929974,"TESTA1CF")); - daoGene.addGene(new CanonicalGene(999999992,"TESTA2M")); - daoGene.addGene(new CanonicalGene(999144568,"TESTA2ML1")); - daoGene.addGene(new CanonicalGene(999344752,"TESTAADACL2")); - daoGene.addGene(new CanonicalGene(999922848,"TESTAAK1")); - daoGene.addGene(new CanonicalGene(999132949,"TESTAASDH")); - daoGene.addGene(new CanonicalGene(999910157,"TESTAASS")); - daoGene.addGene(new CanonicalGene(999999919,"TESTABCA1")); - daoGene.addGene(new CanonicalGene(999910058,"TESTABCB6")); - daoGene.addGene(new CanonicalGene(999955289,"TESTACOXL")); - daoGene.addGene(new CanonicalGene(999910880,"TESTACTL7B")); - } - - private void addCancerType(String cancerID, String name, String keyword, String color, String shortName, String parentID) throws Exception{ - TypeOfCancer aTypeOfCancer = new TypeOfCancer(); - aTypeOfCancer.setTypeOfCancerId(cancerID); - aTypeOfCancer.setName(name); - aTypeOfCancer.setDedicatedColor(color); - aTypeOfCancer.setShortName(shortName); - aTypeOfCancer.setParentTypeOfCancerId(parentID); - DaoTypeOfCancer.addTypeOfCancer(aTypeOfCancer); - } - - private void addCancerStudy(String fileName) throws Exception{ - ImportCancerStudy runner = new ImportCancerStudy(new String[]{fileName}); - runner.run(); - } - - private void addProfileData(String descriptorFileName, String dataFileName) throws Exception{ - try { - ImportProfileData runner = new ImportProfileData(new String[]{"--meta", descriptorFileName, "--loadMode", "bulkload", "--data", dataFileName}); - runner.run(); - } - catch (Throwable e) { - //useful info for when this fails: - ConsoleUtil.showMessages(); - throw e; - } - } - - private void addSampleLists(String fileName) throws Exception{ - ImportSampleList runner = new ImportSampleList(new String[]{fileName}); - runner.run(); - } - - private void addClinicalData(String descriptorFileName, String dataFileName) throws Exception{ - ImportClinicalData runner = new ImportClinicalData(new String[]{"--meta", descriptorFileName, "--loadMode", "bulkload", "--data", dataFileName}); - runner.run(); - } - - public void runChecksForGetCancerTypeInfo() throws Exception{ - String studyName="multi_cancer_study"; - CancerStudy study = DaoCancerStudy.getCancerStudyByStableId(studyName); - List samples = DaoSample.getSamplesByCancerStudy(study.getInternalId()); - List sampleList = new ArrayList<>(); - for(Sample sample:samples){ - sampleList.add(sample.getStableId()); - } - - // retrieve the cancerTypeInfoMap for the study - // this should contain: - // 'CANCER_TYPE' - 'cns', 'cervix' - // 'CANCER_TYPE_DETAILED' - 'byst', 'bimt', 'cead', 'cene', 'cacc' - Map> cancerTypeInfoMap = DaoClinicalData.getCancerTypeInfoBySamples(sampleList); - assertEquals(cancerTypeInfoMap.keySet().size(), 2); - assertEquals(cancerTypeInfoMap.containsKey(ClinicalAttribute.CANCER_TYPE), true); - assertEquals(cancerTypeInfoMap.containsKey(ClinicalAttribute.CANCER_TYPE_DETAILED), true); - assertEquals(cancerTypeInfoMap.get(ClinicalAttribute.CANCER_TYPE).size(), 2); - assertEquals(cancerTypeInfoMap.get(ClinicalAttribute.CANCER_TYPE_DETAILED).size(), 5); - - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestCutInvalidCases.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestCutInvalidCases.java deleted file mode 100644 index fbb6fa6aa65..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestCutInvalidCases.java +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.junit.Test; - -import static org.junit.Assert.*; - -import java.io.File; - -/** - * JUnit test for CutInvalidCases class. - */ -public class TestCutInvalidCases { - - @Test - public void testCutInvalidCases() throws Exception { - // TBD: change this to use getResourceAsStream() - File casesExcludedFile = new File("src/test/resources/cases_excluded_test.txt"); - File dataFile = new File("src/test/resources/cna_test.txt"); - CutInvalidCases parser = new CutInvalidCases(casesExcludedFile, - dataFile); - String out = parser.process(); - - String lines[] = out.split("\n"); - String headerLine = lines[0]; - String parts[] = headerLine.split("\t"); - for (String header : parts) { - if (header.trim().equals("TCGA-A1-A0SB-01")) { - fail("TCGA-06-0142 should have been stripped out."); - } else if (header.trim().equals("TCGA-A1-A0SD-01")) { - fail("TCGA-06-0142 should have been stripped out."); - } else if (header.trim().equals("TCGA-A1-A0SE-01")) { - fail("TCGA-06-0159 should have been stripped out."); - } - } - int numHeaders = parts.length; - parts = lines[4].split("\t"); - - // Should go from 16 to 13 columns. - assertEquals (13, numHeaders); - assertEquals (13, parts.length); - } -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestGenerateMutationData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestGenerateMutationData.java deleted file mode 100644 index 67eb91d665d..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestGenerateMutationData.java +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.io.File; - -/** - * JUnit test for GenerateMutationData class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestGenerateMutationData { - - @Test - public void testGenerateMutationData() throws Exception { - - // TBD: change this to use getResourceAsStream() - File allCasesFile = new File ("target/test-classes/all_cases.txt"); - File sequencedGeneFile = new File ("target/test-classes/sequenced_genes.txt"); - File sequencedCasesFile = new File ("target/test-classes/sequenced_cases.txt"); - File mutationDataFile = new File ("target/test-classes/mutations.txt"); - ProgressMonitor.setConsoleMode(false); - GenerateMutationData util = new GenerateMutationData (allCasesFile, sequencedGeneFile, - sequencedCasesFile, mutationDataFile); - String out = util.execute(); - String lines[] = out.split("\n"); - boolean line1Pass = false; - boolean line2Pass = false; - boolean line3Pass = false; - for (String line: lines) { - if (line.startsWith("1277\tTCGA-02-0083")) { - assertEquals ("1277\tTCGA-02-0083\tP343S,P774S", line.trim()); - line1Pass = true; - } else if (line.startsWith("7157\tTCGA-06-0241")) { - assertEquals ("7157\tTCGA-06-0241\tR248Q", line); - line2Pass = true; - } else if (line.startsWith("1956\tTCGA-02-0001")) { - assertEquals ("1956\tTCGA-02-0001\t0", line); - line3Pass = true; - } - } - assertTrue (line1Pass); - assertTrue (line2Pass); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportCaisesClinicalXML.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportCaisesClinicalXML.java deleted file mode 100644 index 8900fdcfe54..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportCaisesClinicalXML.java +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.File; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoPatient; -import org.mskcc.cbio.portal.dao.DaoSample; -import org.mskcc.cbio.portal.dao.DaoTypeOfCancer; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.Patient; -import org.mskcc.cbio.portal.model.Sample; -import org.mskcc.cbio.portal.model.TypeOfCancer; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/** - * - * @author jgao - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportCaisesClinicalXML { - - @Before - public void setUp() throws Exception { - TypeOfCancer typeOfCancer = new TypeOfCancer(); - typeOfCancer.setTypeOfCancerId("prad"); - typeOfCancer.setName("prad"); - typeOfCancer.setShortName("prad"); - DaoTypeOfCancer.addTypeOfCancer(typeOfCancer); - - CancerStudy cancerStudy = new CancerStudy("prad","prad","prad","prad",true); - cancerStudy.setReferenceGenome("hg19"); - DaoCancerStudy.addCancerStudy(cancerStudy); - - int studyId = DaoCancerStudy.getCancerStudyByStableId("prad").getInternalId(); - - DaoPatient.addPatient(new Patient(cancerStudy, "97115001")); - DaoPatient.addPatient(new Patient(cancerStudy, "97115002")); - DaoPatient.addPatient(new Patient(cancerStudy, "97115003")); - - int patient1 = DaoPatient.getPatientByCancerStudyAndPatientId(studyId, "97115001").getInternalId(); - int patient2 = DaoPatient.getPatientByCancerStudyAndPatientId(studyId, "97115002").getInternalId(); - - DaoSample.addSample(new Sample("SC_9022-Tumor", patient1, "prad")); - DaoSample.addSample(new Sample("SC_9023-Tumor", patient2, "prad")); - } - - // TODO add test methods here. - // The methods must be annotated with annotation @Test. For example: - // - @Test - public void test() throws Exception { - File xmlFile = new File("target/test-classes/data_clinical_caises.xml"); - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId("prad"); - ImportCaisesClinicalXML importCaisesClinicalXML = new ImportCaisesClinicalXML(null); - importCaisesClinicalXML.setFile(xmlFile, cancerStudy); - importCaisesClinicalXML.importData(); - } - -// @Test -// public void temp() throws Exception { -// CancerStudy cancerStudy = new CancerStudy("prad_su2c","prad_su2c","prad_su2c","prad",true); -// cancerStudy.setInternalId(1); -// DaoCancerStudy.addCancerStudy(cancerStudy); -// -// ImportClinicalData.main(new String[]{"/Users/jgao/projects/cbio-portal-data/studies/prad/su2c/data_clinical.txt", "prad_su2c"}); -// ImportCaisesClinicalXML.main(new String[] {"--data","/Users/jgao/projects/cbio-portal-data/studies/prad/su2c/data_clinical_caises.xml", -// "--meta","/Users/jgao/projects/cbio-portal-data/studies/prad/su2c/meta_clinical_caises.txt", -// "--loadMode", "bulkLoad"}); -// } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportClinicalData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportClinicalData.java deleted file mode 100644 index 334a4553a29..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportClinicalData.java +++ /dev/null @@ -1,453 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; -import org.junit.rules.ExpectedException; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.mskcc.cbio.portal.scripts.ImportClinicalData; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.io.*; -import java.util.*; - -/** - * Tests Import of Clinical Data. - * - * @author Ethan Cerami. - * @author Ersin Ciftci - * @author Pieter Lukasse - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportClinicalData { - - //To use in test cases where we expect an exception: - @Rule - public ExpectedException exception = ExpectedException.none(); - - private CancerStudy cancerStudy = null; - - /** - * This is executed n times, for each of the n test methods below: - * @throws DaoException - */ - @Before - public void setUp() throws DaoException - { - DaoCancerStudy.reCacheAll(); - ProgressMonitor.resetWarnings(); - - // new dummy study to simulate importing clinical data in empty study: - cancerStudy = new CancerStudy("testnew","testnew","testnew","brca",true); - cancerStudy.setReferenceGenome("hg19"); - DaoCancerStudy.addCancerStudy(cancerStudy); - // implicit test: - cancerStudy = DaoCancerStudy.getCancerStudyByStableId("testnew"); - } - - /** - * Test importing of Clinical Data File with a duplicated record in "MIXED_ATTRIBUTES" - * type of file. - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportClinicalData_WithDuplInMixedAttrFormat() throws Exception { - File clinicalFile = new File("src/test/resources/clinical_data_small.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "MIXED_ATTRIBUTES", false); - importClinicalData.importData(); - ConsoleUtil.showWarnings(); - - ArrayList warnings = ProgressMonitor.getWarnings(); - //expect 1 warnings: about duplicated TCGA-BH-A18K-01 - assertEquals(1, warnings.size()); - assertTrue(warnings.get(0).contains("Sample TCGA-BH-A18K-01 found to be duplicated")); - } - - /** - * Test importing of Clinical Data File when there is data a line with - * wrong number of columns. - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportClinicalDataNewStudy_WithWrongNrCols() throws Exception { - File clinicalFile = new File("src/test/resources/clinical_data_small_WRONG_NR_COLS.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "MIXED_ATTRIBUTES", false); - - exception.expect(IllegalArgumentException.class); - exception.expectMessage("Number of columns in line is not as expected"); - importClinicalData.importData(); - ConsoleUtil.showWarnings(); - } - - /** - * Test importing of Patient Data File with duplication error. - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportPatientDataNewStudy_WithDuplError() throws Exception { - File clinicalFile = new File("src/test/resources/clinical_data_small_PATIENT_dupl_error.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "PATIENT_ATTRIBUTES", false); - - exception.expect(RuntimeException.class); - exception.expectMessage("Duplicated patient"); - importClinicalData.importData(); - ConsoleUtil.showWarnings(); - } - - /** - * Test importing of Patient Data File with data type error. - * - */ - @Test - public void testImportPatientDataNewStudy_WithDataTypeError() throws Exception { - File clinicalFile = new File("src/test/resources/clinical_data_small_PATIENT_datatype_error.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "PATIENT_ATTRIBUTES", false); - - exception.expect(RuntimeException.class); - exception.expectMessage("Invalid value for datatype"); - importClinicalData.importData(); - ConsoleUtil.showWarnings(); - } - - /** - * Test importing of Clinical Data File, using the new data format, i.e. with data - * split over PATIENT and SAMPLES files. - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportClinicalDataSurvival_SplitMode() throws Exception { - // import sample data first: - File clinicalFile = new File("src/test/resources/clinical_data_SAMPLE.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "SAMPLE_ATTRIBUTES", false); - importClinicalData.importData(); - - // import patient data: - clinicalFile = new File("src/test/resources/clinical_data_PATIENT.txt"); - importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "PATIENT_ATTRIBUTES", false); - importClinicalData.importData(); - - checkSurvivalDataAndSampleCount(cancerStudy); - } - - /** - * Test importing of Clinical Data File, using old MIXED_ATTRIBUTES format. - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportClinicalDataSurvival() throws Exception { - File clinicalFile = new File("src/test/resources/clinical_data.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "MIXED_ATTRIBUTES", false); - importClinicalData.importData(); - - checkSurvivalDataAndSampleCount(cancerStudy); - } - - @Test - public void testImportClinicalDataTwoSampleFiles() throws Exception { - - File clinicalFile = new File("src/test/resources/clinical_data_small_SAMPLE.txt"); - ImportClinicalData importClinicalData = new ImportClinicalData(null); - importClinicalData.setFile(cancerStudy, clinicalFile, "SAMPLE_ATTRIBUTES", false); - importClinicalData.importData(); - - clinicalFile = new File("src/test/resources/clinical_data_small_SAMPLE2.txt"); - importClinicalData = new ImportClinicalData(null); - importClinicalData.setFile(cancerStudy, clinicalFile, "SAMPLE_ATTRIBUTES", false); - importClinicalData.importData(); - - LinkedHashSet caseSet = new LinkedHashSet(); - caseSet.add("TEST-A2-A04P"); - - List clinicalCaseList = DaoClinicalData.getSurvivalData(cancerStudy.getInternalId(), caseSet); - assertEquals (Integer.valueOf(2), clinicalCaseList.get(0).getSampleCount()); - } - - private void checkSurvivalDataAndSampleCount(CancerStudy cancerStudy) throws DaoException { - LinkedHashSet caseSet = new LinkedHashSet(); - caseSet.add("TCGA-A1-A0SB"); - caseSet.add("TCGA-A1-A0SE"); - caseSet.add("TCGA-A1-A0SI"); - caseSet.add("TCGA-A1-A0SC"); - caseSet.add("TCGA-04-1341"); - - //get survival data, unsorted: - List clinicalCaseList = DaoClinicalData.getSurvivalData(cancerStudy.getInternalId(), caseSet); - assertEquals (5, clinicalCaseList.size()); - - int countChecks = 0; - for (Patient patientData : clinicalCaseList) { - if (patientData.getStableId().equals("TCGA-A1-A0SB")) { - assertEquals (Double.valueOf(79.04), patientData.getAgeAtDiagnosis()); - assertEquals ("1:DECEASED", patientData.getOverallSurvivalStatus()); - assertEquals ("1:Recurred/Progressed", patientData.getDiseaseFreeSurvivalStatus()); - assertEquals (Double.valueOf(43.8), patientData.getOverallSurvivalMonths()); - assertEquals (Double.valueOf(15.05), patientData.getDiseaseFreeSurvivalMonths()); - assertEquals (Integer.valueOf(1), patientData.getSampleCount()); - countChecks++; - } - else if (patientData.getStableId().equals("TCGA-A1-A0SE")) { - assertEquals (null, patientData.getDiseaseFreeSurvivalMonths()); - assertEquals (Integer.valueOf(1), patientData.getSampleCount()); - countChecks++; - } - else if (patientData.getStableId().equals("TCGA-A1-A0SI")) { - assertEquals ("TCGA-A1-A0SI", patientData.getStableId()); - assertEquals (Double.valueOf(55.53), patientData.getAgeAtDiagnosis()); - assertEquals ("0:LIVING", patientData.getOverallSurvivalStatus()); - assertEquals ("0:DiseaseFree", patientData.getDiseaseFreeSurvivalStatus()); - assertEquals (Double.valueOf(49.02), patientData.getOverallSurvivalMonths()); - assertEquals (Double.valueOf(49.02), patientData.getDiseaseFreeSurvivalMonths()); - assertEquals (Integer.valueOf(1), patientData.getSampleCount()); - countChecks++; - } else if (patientData.getStableId().equals("TCGA-A1-A0SC")) { - assertEquals ("TCGA-A1-A0SC", patientData.getStableId()); - assertEquals (Double.valueOf(70.64), patientData.getAgeAtDiagnosis()); - assertEquals ("1:DECEASED", patientData.getOverallSurvivalStatus()); - assertEquals ("1:Recurred/Progressed", patientData.getDiseaseFreeSurvivalStatus()); - assertEquals (Double.valueOf(40.89), patientData.getOverallSurvivalMonths()); - assertEquals (Double.valueOf(12.95), patientData.getDiseaseFreeSurvivalMonths()); - assertEquals (Integer.valueOf(1), patientData.getSampleCount()); - countChecks++; - } else { - assertEquals ("TCGA-04-1341", patientData.getStableId()); - assertEquals (Double.valueOf(85.52), patientData.getAgeAtDiagnosis()); - assertEquals ("0:LIVING", patientData.getOverallSurvivalStatus()); - assertEquals ("0:DiseaseFree", patientData.getDiseaseFreeSurvivalStatus()); - assertEquals (null, patientData.getOverallSurvivalMonths()); - assertEquals (null, patientData.getDiseaseFreeSurvivalMonths()); - assertEquals (Integer.valueOf(1), patientData.getSampleCount()); - countChecks++; - } - } - //make sure all entries were checked: - assertEquals(5, countChecks); - } - - /** - * Test importing of Clinical Data File, using the new data format, i.e. with data - * split over PATIENT and SAMPLES files. - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportClinicalDataSlice_SplitMode() throws Exception { - // import sample data first: - File clinicalFile = new File("src/test/resources/clinical_data_SAMPLE.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "SAMPLE_ATTRIBUTES", false); - importClinicalData.importData(); - - // import patient data: - clinicalFile = new File("src/test/resources/clinical_data_PATIENT.txt"); - importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "PATIENT_ATTRIBUTES", false); - importClinicalData.importData(); - - checkDataSlice(cancerStudy); - } - - /** - * Test importing of Clinical Data File, using old MIXED_ATTRIBUTES format. - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportClinicalDataSlice() throws Exception { - File clinicalFile = new File("src/test/resources/clinical_data.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "MIXED_ATTRIBUTES", false); - importClinicalData.importData(); - - checkDataSlice(cancerStudy); - } - - private void checkDataSlice(CancerStudy cancerStudy) throws DaoException { - List slice = DaoClinicalData.getDataSlice(cancerStudy.getInternalId(), Arrays.asList("PLATINUMSTATUS")); - assertTrue(slice.size() >= 1); - - ClinicalParameterMap paramMap = slice.get(0); - assertEquals ("PLATINUMSTATUS", paramMap.getName()); - assertEquals("Sensitive", paramMap.getValue("TCGA-A1-A0SB")); - assertEquals("NA", paramMap.getValue("TCGA-A1-A0SE")); - assertEquals(3, paramMap.getDistinctCategories().size()); - } - - /** - * Test importing of Clinical Data File. - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportClinicalDataParameters() throws Exception { - File clinicalFile = new File("src/test/resources/clinical_data.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "MIXED_ATTRIBUTES", false); - importClinicalData.importData(); - - Set paramSet = DaoClinicalData.getDistinctParameters(cancerStudy.getInternalId()); - assertEquals (10, paramSet.size()); - } - - /** - * Test mandatory SAMPLE_ID field - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportClinicalData_SampleIdError() throws Exception { - File clinicalFile = new File("src/test/resources/clinical_data_small_missing_SAMPLEID.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "SAMPLE_ATTRIBUTES", false); - - exception.expect(RuntimeException.class); - exception.expectMessage("failure to find SAMPLE_ID"); - importClinicalData.importData(); - ConsoleUtil.showWarnings(); - } - - /** - * Test mandatory PATIENT_ID field - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportClinicalData_PatientIdError() throws Exception { - File clinicalFile = new File("src/test/resources/clinical_data_small_missing_PATIENTID.txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, "SAMPLE_ATTRIBUTES", false); - - exception.expect(RuntimeException.class); - exception.expectMessage("failure to find PATIENT_ID"); - importClinicalData.importData(); - ConsoleUtil.showWarnings(); - } - - /** - * Test loading a correct file twice. Should give duplication error. - * @throws Exception - */ - @Test - public void testImportClinicalData_CorrectFileTwice1() throws Exception { - checkCorrectFileTwice("PATIENT"); - } - public void testImportClinicalData_CorrectFileTwice2() throws Exception { - checkCorrectFileTwice("SAMPLE"); - } - private void checkCorrectFileTwice(String type) throws Exception { - File clinicalFile = new File("src/test/resources/clinical_data_small_" + type + ".txt"); - // initialize an ImportClinicalData instance without args to parse - ImportClinicalData importClinicalData = new ImportClinicalData(null); - // set the info usually parsed from args - importClinicalData.setFile(cancerStudy, clinicalFile, type + "_ATTRIBUTES", false); - importClinicalData.importData(); - // loading twice should also give error - exception.expect(DaoException.class); - // it is not a specific "duplication" error message but a general DB error since the - // validation only gives specific error when in same file (maybe at some point we want to support clinical data - // in multiple PATIENT and SAMPLE files(?) ): - exception.expectMessage("DB Error"); - importClinicalData.importData(); - } - - /** - * Tests to try out the MissingAttributeValues enum and ensure it filters out the - * correct values. - * - */ - @Test - public void testHasMethod() { - assertTrue(ImportClinicalData.MissingAttributeValues.has("NA")); - assertTrue(ImportClinicalData.MissingAttributeValues.has("na")); - assertFalse(ImportClinicalData.MissingAttributeValues.has("n/a")); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportCnaDiscreteLongData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportCnaDiscreteLongData.java deleted file mode 100644 index b43ab07475b..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportCnaDiscreteLongData.java +++ /dev/null @@ -1,741 +0,0 @@ -/* - * Copyright (c) 2018 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -/* - * @author Sander Tan - */ - -package org.mskcc.cbio.portal.scripts; - -import org.codehaus.jackson.map.*; -import org.junit.After; -import org.junit.Assert; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.CnaEvent; -import org.mskcc.cbio.portal.model.GeneticProfile; -import org.mskcc.cbio.portal.model.Sample; -import org.mskcc.cbio.portal.util.StableIdUtil; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import java.io.File; -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.*; - -import static com.google.common.collect.Lists.newArrayList; -import static com.google.common.collect.Sets.newHashSet; -import static java.util.stream.Collectors.joining; -import static java.util.stream.Collectors.toList; -import static org.cbioportal.model.MolecularProfile.DataType.DISCRETE; -import static org.cbioportal.model.MolecularProfile.ImportType.DISCRETE_LONG; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = {"classpath:/applicationContext-dao.xml"}) -@Rollback -@Transactional -public class TestImportCnaDiscreteLongData { - int studyId; - GeneticProfile geneticProfile; - String genePanel = "TESTPANEL_CNA_DISCRETE_LONG_FORMAT"; - Set noNamespaces = new HashSet<>(); - - @Before - public void setUp() throws DaoException { - studyId = DaoCancerStudy - .getCancerStudyByStableId("study_tcga_pub") - .getInternalId(); - this.geneticProfile = DaoGeneticProfile - .getGeneticProfileByStableId("study_tcga_pub_cna_long"); - } - - @After - public void cleanUp() throws DaoException { - MySQLbulkLoader.flushAll(); - } - - /** - * Test the import of cna data file in long format with 2 samples - */ - @Test - public void testImportCnaDiscreteLongDataAddsSamples() throws Exception { - File file = new File("src/test/resources/data_cna_discrete_import_test.txt"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces).importData(); - - // Test new samples are added: - List expectedSampleIds = newArrayList("TCGA-A1-A0SB-11", "TCGA-A2-A04U-11"); - for (String id : expectedSampleIds) { - assertSampleExistsInGeneticProfile(id); - } - } - - /** - * Test the import of cna data file in long format with: - * - 10 cna events (-2, -1.5 or 2) - * - 4 non-cna events (0, -1, 1) - */ - @Test - public void testImportCnaDiscreteLongDataAddsCnaEvents() throws Exception { - List beforeCnaEvents = DaoCnaEvent.getAllCnaEvents(); - assertEquals(beforeCnaEvents.size(), 17); - - File file = new File("src/test/resources/data_cna_discrete_import_test.txt"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces - ).importData(); - - List resultCnaEvents = DaoCnaEvent.getAllCnaEvents(); - - // Test all cna events are added: - int expectedCnaEventCount = 10; - int expectedNewCnaEvents = beforeCnaEvents.size() + expectedCnaEventCount; - assertEquals( - expectedNewCnaEvents, - resultCnaEvents.size() - ); - - // Test gene with homozygous deletion and amplification has two cna events: - List cnaEvents = resultCnaEvents - .stream() - .filter(e -> e.getGene().getEntrezGeneId() == 2115) - .map(e -> e.getAlteration().getDescription()) - .collect(toList()); - assertEquals(2, cnaEvents.size()); - assertTrue(newArrayList("Amplified", "Homozygously deleted").containsAll(cnaEvents)); - - // Test gene with partial deletion and amplification has two cna events: - List convertedCnaEvents = resultCnaEvents - .stream() - .filter(e -> e.getGene().getEntrezGeneId() == 3983) - .map(e -> e.getAlteration().getDescription()) - .collect(toList()); - assertEquals(2, cnaEvents.size()); - assertTrue(newArrayList("Amplified", "Homozygously deleted").containsAll(cnaEvents)); - - // Test gene with homozygous deletion and amplification has no cna events: - List skippedCnaEvents = resultCnaEvents - .stream() - .filter(e -> e.getGene().getEntrezGeneId() == 56914) - .collect(toList()); - assertEquals(0, skippedCnaEvents.size()); - } - - /** - * Test the import of cna data file in long format with 7 genes - */ - @Test - public void testImportCnaDiscreteLongDataAddsGeneticAlterations() throws Exception { - List beforeGeneticAlterations = getAllGeneticAlterations(); - assertEquals(beforeGeneticAlterations.size(), 42); - - File file = new File("src/test/resources/data_cna_discrete_import_test.txt"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces).importData(); - - // Test genetic alterations are added for all genes: - List resultGeneticAlterations = getAllGeneticAlterations(); - List expectedEntrezIds = newArrayList(2115L, 27334L, 57670L, 80070L, 3983L, 56914L, 2261L); - assertEquals(beforeGeneticAlterations.size() + expectedEntrezIds.size(), resultGeneticAlterations.size()); - } - - /** - * Missing cna events should be inserted in genetic_events table as missing value: - * - data file containing two samples and two genes; - * - missing combination: gene ETV1 * sample TCGA-A2-A04U-11 - */ - @Test - public void testImportCnaDiscreteLongDataAddsMissingGeneticAlterations() throws Exception { - List beforeGeneticAlterations = getAllGeneticAlterations(); - assertEquals(beforeGeneticAlterations.size(), 42); - - File file = new File("src/test/resources/data_cna_discrete_import_test_with_cna_events_missing.txt"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces).importData(); - - // Test genetic alteration are added of non-cna event: - TestGeneticAlteration geneticAlteration = getGeneticAlterationByEntrez(2115); - assertEquals(geneticProfile.getGeneticProfileId(), geneticAlteration.geneticProfileId); - TestGeneticProfileSample geneticProfileSample = getGeneticProfileSample(geneticProfile.getGeneticProfileId()); - assertEquals("21,20,", geneticProfileSample.orderedSampleList); - assertEquals(getSampleStableIdFromInternalId(21), "TCGA-A1-A0SB-11"); - assertEquals(getSampleStableIdFromInternalId(20), "TCGA-A2-A04U-11"); - // Sample TCGA-A1-A0SB-11 has value 2, and TCGA-A2-A04U-11 is missing: - assertEquals("2,,", geneticAlteration.values); - } - - /** - * Test the imported events match the imported genetic profile samples - */ - @Test - public void testImportCnaDiscreteLongDataAddsGeneticAlterationsAndProfileSamplesInCorrectOrder() throws Exception { - List beforeGeneticAlterations = getAllGeneticAlterations(); - assertEquals(beforeGeneticAlterations.size(), 42); - - File file = new File("src/test/resources/data_cna_discrete_import_test.txt"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces).importData(); - - // Test order of genetic alteration values: - TestGeneticAlteration geneticAlteration = getGeneticAlterationByEntrez(2115L); - assertEquals(geneticProfile.getGeneticProfileId(), geneticAlteration.geneticProfileId); - assertEquals("2,-2,", geneticAlteration.values); - - // Test order of samples in genetic profile samples matches the order in genetic alteration: - TestGeneticProfileSample geneticProfileSample = getGeneticProfileSample(geneticProfile.getGeneticProfileId()); - assertEquals("21,20,", geneticProfileSample.orderedSampleList); - } - - /** - * Test that entries are imported when valid entrez IDs are missing but Hugo IDs are provided - */ - @Test - public void testImportCnaDiscreteLongDataHandlesEntriesWithoutEntrezButWithHugo() throws Exception { - List beforeGeneticAlterations = getAllGeneticAlterations(); - assertEquals(beforeGeneticAlterations.size(), 42); - - File file = new File("src/test/resources/data_cna_discrete_import_test_without_entrez_with_hugo.txt"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces).importData(); - - // Test order of genetic alteration values: - TestGeneticAlteration geneticAlteration = getGeneticAlterationByEntrez(57670L); - assertEquals(geneticProfile.getGeneticProfileId(), geneticAlteration.geneticProfileId); - assertEquals("2,-2,", geneticAlteration.values); - } - - /** - * Test that entries are imported when invalid entrez IDs and valid Hugo IDs are provided - */ - @Test - public void testImportCnaDiscreteLongDataHandlesEntriesWithWrongEntrezAndCorrectHugo() throws Exception { - List beforeGeneticAlterations = getAllGeneticAlterations(); - assertEquals(beforeGeneticAlterations.size(), 42); - - File file = new File("src/test/resources/data_cna_discrete_import_test_with_wrong_entrez_and_correct_hugo.txt"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces).importData(); - - // Test order of genetic alteration values: - TestGeneticAlteration geneticAlteration = getGeneticAlterationByEntrez(57670L); - assertEquals(geneticProfile.getGeneticProfileId(), geneticAlteration.geneticProfileId); - assertEquals("2,-2,", geneticAlteration.values); - } - - /** - * Test genetic events are imported, even when not imported as cna event - */ - @Test - public void testImportCnaDiscreteLongDataAddsGeneticAlterationsFromNonCnaEvents() throws Exception { - List beforeGeneticAlterations = getAllGeneticAlterations(); - assertEquals(beforeGeneticAlterations.size(), 42); - - File file = new File("src/test/resources/data_cna_discrete_import_test.txt"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces).importData(); - - // Test genetic alteration are added of non-cna event: - TestGeneticAlteration geneticAlteration = getGeneticAlterationByEntrez(56914); - assertEquals(geneticProfile.getGeneticProfileId(), geneticAlteration.geneticProfileId); - TestGeneticProfileSample geneticProfileSample = getGeneticProfileSample(geneticProfile.getGeneticProfileId()); - assertEquals("21,20,", geneticProfileSample.orderedSampleList); - assertEquals(getSampleStableIdFromInternalId(21), "TCGA-A1-A0SB-11"); - assertEquals(getSampleStableIdFromInternalId(20), "TCGA-A2-A04U-11"); - // Sample TCGA-A1-A0SB-11 has value 1, and TCGA-A2-A04U-11 has value 0: - assertEquals("1,0,", geneticAlteration.values); - } - - /** - * Test genetic events are imported, even when not imported as cna event - */ - @Test - public void testImportCnaDiscreteLongDataIgnoresLineWithDuplicateGene() throws Exception { - List beforeGeneticAlterations = getAllGeneticAlterations(); - assertEquals(beforeGeneticAlterations.size(), 42); - - File file = new File("src/test/resources/data_cna_discrete_import_test.txt"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces).importData(); - - // Test genetic alteration are deduplicated: - TestGeneticAlteration geneticAlteration = getGeneticAlterationByEntrez(57670); - assertEquals(geneticProfile.getGeneticProfileId(), geneticAlteration.geneticProfileId); - // Should not be "2,-2,2" or (2,2): - assertEquals("2,-2,", geneticAlteration.values); - } - - /** - * Test the import of cna data file in long format with: - * - 3 cna events with pd annotations - */ - @Test - public void testImportCnaDiscreteLongDataAddsPdAnnotations() throws Exception { - File file = new File("src/test/resources/data_cna_discrete_import_test.txt"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces - ).importData(); - List genes = newArrayList(3983L, 27334L, 2115L); - List resultCnaEvents = DaoCnaEvent.getAllCnaEvents() - .stream() - .filter(event -> genes.contains(event.getGene().getEntrezGeneId())) - .collect(toList()); - String sample = "TCGA-A2-A04U-11"; - List allCnaPdAnnotations = getAllCnaPdAnnotations(createPrimaryKeys(sample, resultCnaEvents)); - assertEquals(3, allCnaPdAnnotations.size()); - String allDriverTiersFilters = allCnaPdAnnotations - .stream() - .map(a -> a.driverTiersFilter) - .collect(joining(",")); - assertEquals("Class 2,Class 1,NA", allDriverTiersFilters); - } - - @Test - public void testImportCnaDiscreteLongData_changesProfileDatatypeFromDiscreteLongToDiscrete() throws Exception { - File file = new File("src/test/resources/data_cna_discrete_import_test.txt"); - - String startInputDatatype = getGeneticProfileDatatype(this.geneticProfile.getGeneticProfileId()); - assertEquals(DISCRETE_LONG.name(), startInputDatatype); - - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - noNamespaces - ).importData(); - - String resultDatatype = getGeneticProfileDatatype(this.geneticProfile.getGeneticProfileId()); - assertEquals(DISCRETE.name(), resultDatatype); - } - - - /** - * Test the import of cna data file in long format with: - * - two custom namespaces that should be imported - * - one unknown namespace that should be ignored - */ - @Test - public void testImportCnaDiscreteLongDataOnlyAddsSpecifiedCustomNamespaceColumns() throws Exception { - ObjectMapper mapper = new ObjectMapper(); - File file = new File("src/test/resources/data_cna_discrete_import_test_with_namespaces.txt"); - Set namespacesToImport = newHashSet("MyNamespace", "MyNamespace2"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - namespacesToImport - ).importData(); - - // All namespace columns provided: - List results = getAnnotationJsonBy(geneticProfile.getGeneticProfileId()); - assertEquals(2, results.size()); - String resultAnnotationJson = results - .stream() - .filter(r -> r.entrezGeneId == 2115L) - .map(r -> r.annotationJson) - .findFirst().get(); - - // Namespace 'InvalidNamespace' should be ignored: - String expectedAnnotationJson = "{\"MyNamespace\": {\"column1\": \"MyValue1\", \"column2\": \"MyValue2\"}, \"MyNamespace2\": {\"blarp\": \"blorp\"}}"; - assertEquals( - mapper.readTree(results.get(0).annotationJson), - mapper.readTree(expectedAnnotationJson) - ); - assertEquals( - mapper.readTree(expectedAnnotationJson), - mapper.readTree(resultAnnotationJson) - ); - } - - /** - * Test the import of cna data file in long format with: - * - one row with both namespaces - * - one row with a missing namespace, imported as null - */ - @Test - public void testImportCnaDiscreteLongDataImportsMissingNamespacesAsNull() throws Exception { - ObjectMapper mapper = new ObjectMapper(); - File file = new File("src/test/resources/data_cna_discrete_import_test_with_namespaces.txt"); - Set namespacesToImport = newHashSet("MyNamespace", "MyNamespace2"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - namespacesToImport - ).importData(); - - // All namespace columns provided: - List results = getAnnotationJsonBy(geneticProfile.getGeneticProfileId()); - assertEquals(2, results.size()); - String resultAnnotationJson = results - .stream() - .filter(r -> r.entrezGeneId == 2115L) - .map(r -> r.annotationJson) - .findFirst().get(); - String expectedAnnotationJson = "{\"MyNamespace\": {\"column1\": \"MyValue1\", \"column2\": \"MyValue2\"}, \"MyNamespace2\": {\"blarp\": \"blorp\"}}"; - assertEquals( - mapper.readTree(results.get(0).annotationJson), - mapper.readTree(expectedAnnotationJson) - ); - assertEquals( - mapper.readTree(expectedAnnotationJson), - mapper.readTree(resultAnnotationJson) - ); - - // Only one namespace column provided: - resultAnnotationJson = results - .stream() - .filter(r -> r.entrezGeneId == 27334L) - .map(r -> r.annotationJson) - .findFirst().get(); - expectedAnnotationJson = "{\"MyNamespace\": {\"column1\": null, \"column2\": null}, \"MyNamespace2\": {\"blarp\": \"bloerp\"}}"; - assertEquals( - mapper.readTree(expectedAnnotationJson), - mapper.readTree(resultAnnotationJson) - ); - } - - /** - * Test the import of cna data file in long format with: - * - two rows with the same gene and two different samples each with their own annotationJson - */ - @Test - public void testImportCnaDiscreteLongDataAddsCustomNamespaceColumnsForEachSample() throws Exception { - ObjectMapper mapper = new ObjectMapper(); - File file = new File("src/test/resources/data_cna_discrete_import_test_with_namespaces2.txt"); - Set namespaces = newHashSet("MyNamespace", "MyNamespace2"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - namespaces - ).importData(); - - List results = getAnnotationJsonBy(geneticProfile.getGeneticProfileId()); - assertEquals(2, results.size()); - String expectedAnnotationJsonA1 = "{\"MyNamespace\": {\"column1\": \"v1a\", \"column2\": \"v2a\"}, \"MyNamespace2\": {\"blarp\": \"bloerp\"}}"; - String expectedAnnotationJsonA2 = "{\"MyNamespace\": {\"column1\": \"v1b\", \"column2\": \"v2b\"}, \"MyNamespace2\": {\"blarp\": \"bleurp\"}}"; - - String resultAnnotationJsonA1 = results - .stream() - .filter(r -> "TCGA-A1-A0SB-11".equals(r.stableId)) - .map(r -> r.annotationJson) - .findFirst().get(); - assertEquals( - mapper.readTree(expectedAnnotationJsonA1), - mapper.readTree(resultAnnotationJsonA1) - ); - String resultAnnotationJsonA2 = results - .stream() - .filter(r -> "TCGA-A2-A04U-11".equals(r.stableId)) - .map(r -> r.annotationJson) - .findFirst().get(); - assertEquals( - mapper.readTree(expectedAnnotationJsonA2), - mapper.readTree(resultAnnotationJsonA2) - ); - } - /** - * Test the import of cna data file in long format with: - * - two rows with the same gene and two different samples each with their own annotationJson - */ - @Test - public void testImportCnaDiscreteLongDataImportsCustomNamespaceColumnsAsNullWhenMissing() throws Exception { - ObjectMapper mapper = new ObjectMapper(); - File file = new File("src/test/resources/data_cna_discrete_import_test_without_namespaces.txt"); - Set namespaces = newHashSet("MyNamespace", "MyNamespace2"); - new ImportCnaDiscreteLongData( - file, - geneticProfile.getGeneticProfileId(), - genePanel, - DaoGeneOptimized.getInstance(), - DaoGeneticAlteration.getInstance(), - namespaces - ).importData(); - - List results = getAnnotationJsonBy(geneticProfile.getGeneticProfileId()); - assertEquals(1, results.size()); - - String expectedAnnotationJson = null; - assertEquals(expectedAnnotationJson, results.get(0).annotationJson); - } - - private List createPrimaryKeys(String sample, List cnaEvents) { - return cnaEvents.stream().map(e -> { - TestPdAnnotationPK pk = new TestPdAnnotationPK(); - pk.geneticProfileId = geneticProfile.getGeneticProfileId(); - pk.sampleId = DaoSample.getSampleByCancerStudyAndSampleId( - geneticProfile.getCancerStudyId(), - StableIdUtil.getSampleId(sample) - ).getInternalId(); - pk.alterationEventId = e.getEventId(); - return pk; - }).collect(toList()); - } - - private void assertSampleExistsInGeneticProfile(String sampleId) throws DaoException { - String sampleStableId = StableIdUtil.getSampleId(sampleId); - - Sample sample = DaoSample.getSampleByCancerStudyAndSampleId( - geneticProfile.getCancerStudyId(), - sampleStableId - ); - Assert.assertNotNull(sample); - Assert.assertTrue(DaoSampleProfile.sampleExistsInGeneticProfile( - sample.getInternalId(), - geneticProfile.getGeneticProfileId() - )); - } - - private String getGeneticProfileDatatype(long geneticProfileId) throws DaoException { - return runSelectQuery( - "select DATATYPE " + - "FROM genetic_profile " + - "WHERE GENETIC_PROFILE_ID=" + geneticProfileId + " ;", - (ResultSet rs) -> rs.getString("DATATYPE") - ).get(0); - } - - class NamespaceAnnotationJson { - public int cnaEventId; - public int sampleId; - public int entrezGeneId; - public String stableId; - public String annotationJson; - } - - private List getAnnotationJsonBy(long geneticProfileId) throws DaoException { - return runSelectQuery( - "select cna_event.CNA_EVENT_ID, SAMPLE_ID, STABLE_ID, GENETIC_PROFILE_ID, ENTREZ_GENE_ID, ANNOTATION_JSON " + - "FROM sample_cna_event " + - "LEFT JOIN sample ON sample.INTERNAL_ID = sample_cna_event.SAMPLE_ID " + - "LEFT JOIN cna_event ON cna_event.CNA_EVENT_ID = sample_cna_event.CNA_EVENT_ID " + - "WHERE GENETIC_PROFILE_ID=" + geneticProfileId + " ;", - (ResultSet rs) -> { - NamespaceAnnotationJson result = new NamespaceAnnotationJson(); - result.cnaEventId = rs.getInt("CNA_EVENT_ID"); - result.sampleId = rs.getInt("SAMPLE_ID"); - result.stableId = rs.getString("STABLE_ID"); - result.entrezGeneId = rs.getInt("ENTREZ_GENE_ID"); - result.annotationJson = rs.getString("ANNOTATION_JSON"); - return result; - }); - } - - private List getAllCnaPdAnnotations(List pks) throws DaoException { - List pkStrings = new ArrayList<>(); - for (TestPdAnnotationPK pk : pks) { - pkStrings.add(String.format( - "( ALTERATION_EVENT_ID=%d AND GENETIC_PROFILE_ID=%d AND SAMPLE_ID=%d )", - pk.alterationEventId, pk.geneticProfileId, pk.sampleId - )); - } - - String q = "SELECT DRIVER_TIERS_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_FILTER, " - + "ALTERATION_EVENT_ID, GENETIC_PROFILE_ID, SAMPLE_ID " - + "FROM alteration_driver_annotation "; - if (pks.size() > 0) { - q += "WHERE " + String.join(" OR ", pkStrings); - } - - return runSelectQuery( - q, - (ResultSet rs) -> { - TestPdAnnotation line = new TestPdAnnotation(); - line.driverFilter = rs.getString("DRIVER_FILTER"); - line.driverTiersFilter = rs.getString("DRIVER_TIERS_FILTER"); - line.driverFilterAnnotation = rs.getString("DRIVER_FILTER_ANNOTATION"); - line.driverTiersFilterAnnotation = rs.getString("DRIVER_TIERS_FILTER_ANNOTATION"); - - line.pk = new TestPdAnnotationPK(); - line.pk.alterationEventId = rs.getInt("ALTERATION_EVENT_ID"); - line.pk.geneticProfileId = rs.getInt("GENETIC_PROFILE_ID"); - line.pk.sampleId = rs.getInt("SAMPLE_ID"); - - return line; - }); - } - - private List getAllGeneticAlterations() throws DaoException { - return runSelectQuery("SELECT ga.*, g.HUGO_GENE_SYMBOL FROM genetic_alteration as ga left join gene as g on ga.GENETIC_ENTITY_ID=g.GENETIC_ENTITY_ID", (ResultSet rs) -> { - TestGeneticAlteration line = new TestGeneticAlteration(); - line.geneticProfileId = rs.getInt("GENETIC_PROFILE_ID"); - line.geneticEntityId = rs.getInt("GENETIC_ENTITY_ID"); - line.values = rs.getString("VALUES"); - line.hugoGeneSymbol = rs.getString("HUGO_GENE_SYMBOL"); - return line; - }); - } - - private TestGeneticAlteration getGeneticAlterationByEntrez(long entrezId) throws DaoException { - return runSelectQuery("SELECT ga.GENETIC_PROFILE_ID, ga.GENETIC_ENTITY_ID, ga.VALUES, g.HUGO_GENE_SYMBOL " + - "FROM genetic_alteration AS ga " + - "RIGHT JOIN gene AS g " + - "ON g.GENETIC_ENTITY_ID = ga.GENETIC_ENTITY_ID " + - "WHERE g.ENTREZ_GENE_ID=" + entrezId, - (ResultSet rs) -> { - TestGeneticAlteration line = new TestGeneticAlteration(); - line.geneticProfileId = rs.getInt("GENETIC_PROFILE_ID"); - line.geneticEntityId = rs.getInt("GENETIC_ENTITY_ID"); - line.values = rs.getString("VALUES"); - line.hugoGeneSymbol = rs.getString("HUGO_GENE_SYMBOL"); - return line; - }).get(0); - } - - private TestGeneticProfileSample getGeneticProfileSample(long profileId) throws DaoException { - return runSelectQuery( - "SELECT * FROM genetic_profile_samples WHERE GENETIC_PROFILE_ID=" + profileId, - (ResultSet rs) -> { - TestGeneticProfileSample line = new TestGeneticProfileSample(); - line.geneticProfileId = rs.getInt("GENETIC_PROFILE_ID"); - line.orderedSampleList = rs.getString("ORDERED_SAMPLE_LIST"); - return line; - }).get(0); - } - - private String getSampleStableIdFromInternalId(Integer internalSampleId) throws DaoException { - return runSelectQuery( - "select STABLE_ID from sample where INTERNAL_ID = " + internalSampleId, - (ResultSet rs) -> rs.getString("STABLE_ID") - ).get(0); - } - - private List runSelectQuery(String query, FunctionThrowsSql handler) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - List result = new ArrayList<>(); - try { - con = JdbcUtil.getDbConnection(DaoGeneticAlteration.class); - pstmt = con.prepareStatement(query); - rs = pstmt.executeQuery(); - while (rs.next()) { - result.add(handler.apply(rs)); - } - return result; - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGeneticAlteration.class, con, pstmt, rs); - } - } - -} - -class TestGeneticAlteration { - public int geneticProfileId; - public int geneticEntityId; - public String values; - public String hugoGeneSymbol; -} - -class TestGeneticProfileSample { - public int geneticProfileId; - public String orderedSampleList; -} - -class TestPdAnnotationPK { - public long alterationEventId; - public int sampleId; - public int geneticProfileId; -} - -class TestPdAnnotation { - public TestPdAnnotationPK pk; - public String driverTiersFilterAnnotation; - public String driverTiersFilter; - public String driverFilterAnnotation; - public String driverFilter; -} - -@FunctionalInterface -interface FunctionThrowsSql { - R apply(T t) throws SQLException; -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportCopyNumberSegmentData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportCopyNumberSegmentData.java deleted file mode 100644 index dc8e4239385..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportCopyNumberSegmentData.java +++ /dev/null @@ -1,127 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; - -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; -import org.junit.rules.ExpectedException; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoPatient; -import org.mskcc.cbio.portal.dao.DaoSample; -import org.mskcc.cbio.portal.dao.MySQLbulkLoader; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.Patient; -import org.mskcc.cbio.portal.model.Sample; -import org.mskcc.cbio.portal.util.SpringUtil; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.ApplicationContext; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/** - * Test the import of Segment data into database. - * @author pieterlukasse - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportCopyNumberSegmentData { - - @Autowired - ApplicationContext applicationContext; - - //To use in test cases where we expect an exception: - @Rule - public ExpectedException exception = ExpectedException.none(); - - - @Before - public void setUp() throws DaoException - { - //set it, to avoid this being set to the runtime (not for testing) application context: - SpringUtil.setApplicationContext(applicationContext); - } - - /** - * Test importing of Clinical Data File. - * - * @throws DaoException Database Access Error. - * @throws IOException IO Error. - */ - @Test - public void testImportSegmentDataNewStudy() throws Exception { - //new dummy study to simulate importing clinical data in empty study: - CancerStudy cancerStudy = new CancerStudy("testnewseg","testnewseg","testnewseg","brca",true); - cancerStudy.setReferenceGenome("hg19"); - DaoCancerStudy.addCancerStudy(cancerStudy); - addTestPatientAndSampleRecords(new File("src/test/resources/segment/data_cna_hg19.seg"), cancerStudy); - - String[] args = { - "--data","src/test/resources/segment/data_cna_hg19.seg", - "--meta","src/test/resources/segment/meta_cna_hg19_seg.txt", - "--loadMode", "bulkLoad" - }; - ImportCopyNumberSegmentData runner = new ImportCopyNumberSegmentData(args); - runner.run(); - //TODO : fix test to actually store data and add some checks - - } - - private void addTestPatientAndSampleRecords(File file, CancerStudy cancerStudy) throws FileNotFoundException, IOException, DaoException { - // extract sample ids from first column - FileReader reader = new FileReader(file); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine(); // want to skip first line / header line - List sampleIds = new ArrayList<>(); - while ((line=buf.readLine()) != null) { - String[] parts = line.split("\t"); - if (!sampleIds.contains(parts[0])) { - sampleIds.add(parts[0]); - } - } - reader.close(); - // add sample + patient records to db - for (String sampleId : sampleIds) { - // fetch patient from db or add new one if does not exist - Patient p = DaoPatient.getPatientByCancerStudyAndPatientId(cancerStudy.getInternalId(), sampleId); - Integer pId = (p == null) ? DaoPatient.addPatient(new Patient(cancerStudy, sampleId)) : p.getInternalId(); - DaoSample.addSample(new Sample(sampleId, pId, cancerStudy.getTypeOfCancerId())); - } - MySQLbulkLoader.flushAll(); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportExtendedMutationData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportExtendedMutationData.java deleted file mode 100644 index f2bccbab5c8..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportExtendedMutationData.java +++ /dev/null @@ -1,392 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static com.google.common.collect.Sets.newHashSet; -import static org.junit.Assert.*; - -import java.io.*; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashSet; -import java.util.List; -import java.util.Set; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.ApplicationContext; - -/** - * @author Arthur Goldberg goldberg@cbio.mskcc.org - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/integrationTestScript.xml", "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportExtendedMutationData { - - @Autowired - private ApplicationContext applicationContext; - - int studyId; - int geneticProfileId; - int testGeneticProfileId; - @Before - public void setUp() throws DaoException { - studyId = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub").getInternalId(); - - DaoGeneticProfile.reCache(); - DaoSample.reCache(); - DaoPatient.reCache(); - // create test genetic profile - GeneticProfile geneticProfile = new GeneticProfile(); - geneticProfile.setCancerStudyId(studyId); - geneticProfile.setProfileName("test profile"); - geneticProfile.setStableId("test"); - geneticProfile.setGeneticAlterationType(GeneticAlterationType.MUTATION_EXTENDED); - geneticProfile.setDatatype("test"); - DaoGeneticProfile.addGeneticProfile(geneticProfile); - geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("test").getGeneticProfileId(); - - // create test genetic profile for shared mutation events test - GeneticProfile geneticProfile2 = new GeneticProfile(); - geneticProfile2.setCancerStudyId(studyId); - geneticProfile2.setProfileName("test duplicate mutation events profile"); - geneticProfile2.setStableId("test_importer_id"); - geneticProfile2.setGeneticAlterationType(GeneticAlterationType.MUTATION_EXTENDED); - geneticProfile2.setDatatype("test"); - DaoGeneticProfile.addGeneticProfile(geneticProfile2); - testGeneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("test_importer_id").getGeneticProfileId(); - - ProgressMonitor.setConsoleMode(false); - loadGenes(); - } - - @Test - public void testImportExtendedMutationDataExtended() throws IOException, DaoException { - - MySQLbulkLoader.bulkLoadOn(); - - // TBD: change this to use getResourceAsStream() - File file = new File("src/test/resources/data_mutations_extended.txt"); - ImportExtendedMutationData parser = new ImportExtendedMutationData(file, geneticProfileId, null); - parser.importData(); - MySQLbulkLoader.flushAll(); - ConsoleUtil.showMessages(); - - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-AA-3664-01").getInternalId(); - - checkBasicFilteringRules(); - checkMutationCounts(); - - // accept everything else - validateMutationAminoAcid(geneticProfileId, sampleId, 51806, "P113L"); // valid Unknown - validateMutationAminoAcid(geneticProfileId, sampleId, 89, "S116R"); // Unknown Somatic - } - - /** - * Check that import of oncotated data works - * @throws IOException - * @throws DaoException - */ - @Test - public void testImportExtendedMutationDataOncotated() throws IOException, DaoException { - File file = new File("src/test/resources/data_mutations_oncotated.txt"); - ImportExtendedMutationData parser = new ImportExtendedMutationData(file, geneticProfileId, null); - parser.importData(); - MySQLbulkLoader.flushAll(); - - ArrayList mutationList = DaoMutation.getAllMutations(geneticProfileId); - - // assert table size; 3 silent mutations should be rejected - assertEquals(17, mutationList.size()); - - // assert data for oncotator columns - //assertEquals("FAM90A1", mutationList.get(0).getGeneSymbol()); - //assertEquals("Missense_Mutation", mutationList.get(1).getOncotatorVariantClassification()); - //assertEquals("p.R131H", mutationList.get(4).getOncotatorProteinChange()); - //assertEquals("rs76360727;rs33980232", mutationList.get(9).getOncotatorDbSnpRs()); - //assertEquals("p.E366_Q409del(13)|p.Q367R(1)|p.E366_K477del(1)", - //mutationList.get(15).getOncotatorCosmicOverlapping()); - } - /** - * Tests custom filtering mutation types option (filtering for missense and nonsensemutations). - * @throws IOException - * @throws DaoException - */ - @Test - public void testImportExtendedMutationDataExtendedCustomFiltering() throws IOException, DaoException { - - MySQLbulkLoader.bulkLoadOn(); - - File file = new File("src/test/resources/data_mutations_extended.txt"); - Set customFiltering = new HashSet(Arrays.asList("Missense_Mutation", "Nonsense_Mutation")); - ImportExtendedMutationData parser = new ImportExtendedMutationData(file, geneticProfileId, null, customFiltering, null); - parser.importData(); - MySQLbulkLoader.flushAll(); - ConsoleUtil.showMessages(); - - rejectMissenseAndNonsenseMutations(); - } - - /** - * Tests custom filtering mutation types option (no filtering at all). - * @throws IOException - * @throws DaoException - */ - @Test - public void testImportExtendedMutationDataExtendedNoFiltering() throws IOException, DaoException { - - MySQLbulkLoader.bulkLoadOn(); - - File file = new File("src/test/resources/data_mutations_extended.txt"); - Set customFiltering = new HashSet(Arrays.asList("")); - ImportExtendedMutationData parser = new ImportExtendedMutationData(file, geneticProfileId, null, customFiltering, null); - parser.importData(); - MySQLbulkLoader.flushAll(); - ConsoleUtil.showMessages(); - - acceptAllMutationTypes(); - } - - private void checkBasicFilteringRules() throws DaoException { - rejectSilentLOHIntronWildtype(); - acceptValidSomaticMutations(); - } - - private void validateMutationAminoAcid (int geneticProfileId, Integer sampleId, long entrezGeneId, - String expectedAminoAcidChange) throws DaoException { - ArrayList mutationList = DaoMutation.getMutations - (geneticProfileId, sampleId, entrezGeneId); - assertEquals(1, mutationList.size()); - assertEquals(expectedAminoAcidChange, mutationList.get(0).getProteinChange()); - } - - private void acceptValidSomaticMutations() throws DaoException { - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-AA-3664-01").getInternalId(); - - // valid Somatic - validateMutationAminoAcid (geneticProfileId, sampleId, 282770, "R113C"); - - // valid Somatic - validateMutationAminoAcid (geneticProfileId, sampleId, 51259, "G61G"); - } - - private void rejectSilentLOHIntronWildtype() throws DaoException { - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-AA-3664-01").getInternalId(); - - assertEquals(0, DaoMutation.getMutations(geneticProfileId, sampleId, 114548).size()); // silent - assertEquals(0, DaoMutation.getMutations(geneticProfileId, sampleId, 343035).size()); // LOH - assertEquals(0, DaoMutation.getMutations(geneticProfileId, sampleId, 80114).size()); // Wildtype - assertEquals(0, DaoMutation.getMutations(geneticProfileId, sampleId, 219736).size()); // Wildtype - assertEquals(0, DaoMutation.getMutations(geneticProfileId, sampleId, 6609).size()); // Intron - } - - - private void checkGermlineMutations() throws DaoException { - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-AA-3664-01").getInternalId(); - - assertEquals(1, DaoMutation.getMutations(geneticProfileId, sampleId, 64581).size()); - // missense, Germline mutation on germline whitelist - - // Germline mutation on germline whitelist - validateMutationAminoAcid (geneticProfileId, sampleId, 2842, "L113P"); - assertEquals(1, DaoMutation.getMutations(geneticProfileId, sampleId, 50839).size()); - // Germline mutations NOT on germline whitelist - } - - private void checkMutationCounts() throws DaoException { - - String studyStableId = "study_tcga_pub"; - CancerStudy study = DaoCancerStudy.getCancerStudyByStableId(studyStableId); - - // assume clinical data for MUTATION_COUNT was created - ClinicalAttribute clinicalAttribute = DaoClinicalAttributeMeta.getDatum("MUTATION_COUNT", study.getInternalId()); - assertNotNull(clinicalAttribute); - - List clinicalData = DaoClinicalData.getSampleData(study.getInternalId(), new ArrayList(Arrays.asList("TCGA-AA-3664-01")), clinicalAttribute); - assert(clinicalData.size() == 1); - assertEquals("8", clinicalData.get(0).getAttrVal()); - } - - private void loadGenes() throws DaoException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - // genes for "data_mutations_extended.txt" - daoGene.addGene(new CanonicalGene(114548L, "NLRP3")); - daoGene.addGene(new CanonicalGene(3339L, "HSPG2")); - daoGene.addGene(new CanonicalGene(282770L, "OR10AG1")); - daoGene.addGene(new CanonicalGene(51806L, "CALML5")); - daoGene.addGene(new CanonicalGene(343035L, "RD3")); - daoGene.addGene(new CanonicalGene(80114L, "BICC1")); - daoGene.addGene(new CanonicalGene(219736L, "STOX1")); - daoGene.addGene(new CanonicalGene(6609L, "SMPD1")); - daoGene.addGene(new CanonicalGene(51259L, "TMEM216")); - daoGene.addGene(new CanonicalGene(89L, "ACTN3")); - daoGene.addGene(new CanonicalGene(64581L, "CLEC7A")); - daoGene.addGene(new CanonicalGene(50839L, "TAS2R10")); - daoGene.addGene(new CanonicalGene(54407L, "SLC38A2")); - daoGene.addGene(new CanonicalGene(6667L, "SP1")); - daoGene.addGene(new CanonicalGene(2842L, "GPR19")); - - - - // additional genes for "data_mutations_oncotated.txt" - daoGene.addGene(new CanonicalGene(55138L, "FAM90A1")); - daoGene.addGene(new CanonicalGene(10628L, "TXNIP")); - daoGene.addGene(new CanonicalGene(80343, "SEL1L2")); - daoGene.addGene(new CanonicalGene(29102L, "DROSHA")); - daoGene.addGene(new CanonicalGene(7204L, "TRIO")); - daoGene.addGene(new CanonicalGene(57111L, "RAB25")); - daoGene.addGene(new CanonicalGene(773L, "CACNA1A")); - daoGene.addGene(new CanonicalGene(100132025L, "LOC100132025")); - daoGene.addGene(new CanonicalGene(1769L, "DNAH8")); - daoGene.addGene(new CanonicalGene(343171L, "OR2W3")); - daoGene.addGene(new CanonicalGene(2901L, "GRIK5")); - daoGene.addGene(new CanonicalGene(10568L, "SLC34A2")); - daoGene.addGene(new CanonicalGene(140738L, "TMEM37")); - daoGene.addGene(new CanonicalGene(94025L, "MUC16")); - daoGene.addGene(new CanonicalGene(1915L, "EEF1A1")); - daoGene.addGene(new CanonicalGene(65083L, "NOL6")); - daoGene.addGene(new CanonicalGene(7094L, "TLN1")); - daoGene.addGene(new CanonicalGene(51196L, "PLCE1")); - daoGene.addGene(new CanonicalGene(1952L, "CELSR2")); - daoGene.addGene(new CanonicalGene(2322L, "FLT3")); - daoGene.addGene(new CanonicalGene(867L, "CBL")); - - MySQLbulkLoader.flushAll(); - } - - /** - * Loads the study context (defined samples) for specific test data files. - * - * @throws DaoException if failing to write to the database - */ - private void loadStudyContext1() throws DaoException { - CancerStudy study = DaoCancerStudy.getCancerStudyByInternalId(studyId); - int pId; - pId = DaoPatient.addPatient(new Patient(study, "TCGA-A2-A04T")); - DaoSample.addSample(new Sample("TCGA-A2-A04T-01", pId, "brca")); - pId = DaoPatient.addPatient(new Patient(study, "TCGA-A2-A0CR")); - DaoSample.addSample(new Sample("TCGA-A2-A0CR-01", pId, "brca")); - pId = DaoPatient.addPatient(new Patient(study, "TCGA-A2-A0CW")); - DaoSample.addSample(new Sample("TCGA-A2-A0CW-01", pId, "brca")); - pId = DaoPatient.addPatient(new Patient(study, "TCGA-A2-A0D3")); - DaoSample.addSample(new Sample("TCGA-A2-A0D3-01", pId, "brca")); - pId = DaoPatient.addPatient(new Patient(study, "TCGA-A2-A0SY")); - DaoSample.addSample(new Sample("TCGA-A2-A0SY-01", pId, "brca")); - pId = DaoPatient.addPatient(new Patient(study, "TCGA-A2-A0T5")); - DaoSample.addSample(new Sample("TCGA-A2-A0T5-01", pId, "brca")); - pId = DaoPatient.addPatient(new Patient(study, "TCGA-A2-A25D")); - DaoSample.addSample(new Sample("TCGA-A2-A25D-01", pId, "brca")); - pId = DaoPatient.addPatient(new Patient(study, "TCGA-A2-A4RW")); - DaoSample.addSample(new Sample("TCGA-A2-A4RW-01", pId, "brca")); - } - - private void rejectMissenseAndNonsenseMutations() throws DaoException { - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-AA-3664-01").getInternalId(); - - assertEquals(0, DaoMutation.getMutations(geneticProfileId, sampleId, 63967).size()); // Missense - assertEquals(0, DaoMutation.getMutations(geneticProfileId, sampleId, 79699).size()); // Missense - assertEquals(0, DaoMutation.getMutations(geneticProfileId, sampleId, 204219).size()); // Missense - assertEquals(0, DaoMutation.getMutations(geneticProfileId, sampleId, 51259).size()); // Nonsense - assertEquals(0, DaoMutation.getMutations(geneticProfileId, sampleId, 84902).size()); // Nonsense - } - - private void acceptAllMutationTypes() throws DaoException { - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-AA-3664-01").getInternalId(); - - // valid Nonsense - validateMutationAminoAcid (geneticProfileId, sampleId, 2842, "L113P"); - - // valid Silent - validateMutationAminoAcid (geneticProfileId, sampleId, 114548, "G982G"); - } - - /** - * Test to confirm that 2 identical mutation events from 2 samples still point to the same - * mutation event despite unique constraint on `mutation_event`. - * @throws IOException - * @throws DaoException - */ - @Test - public void testImportExtendedMutationDataExtendedWithSharedMutationEvent() throws IOException, DaoException { - // import maf - MySQLbulkLoader.bulkLoadOn(); - File file = new File("src/test/resources/data_mutations_extended_duplicate_events.txt"); - ImportExtendedMutationData parser = new ImportExtendedMutationData(file, testGeneticProfileId, null); - parser.importData(); - MySQLbulkLoader.flushAll(); - ConsoleUtil.showMessages(); - // fetch mutations for test genetic profile - int geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("test_importer_id").getGeneticProfileId(); - List mutations = DaoMutation.getAllMutations(geneticProfileId); - // there are 2 identical mutation records from 2 different samples in test MAF - // verify that only one mutation event is associated with these samples - assertEquals(2, mutations.size()); - Set events = new HashSet<>(); - for (ExtendedMutation mut : mutations) { - events.add(mut.getMutationEventId()); - } - assertEquals(1, events.size()); - } - - @Test - public void testImportExtendedMutationDataExtendedWithoutNamespacesResultsInNull() throws IOException, DaoException { - // import maf - MySQLbulkLoader.bulkLoadOn(); - File file = new File("src/test/resources/data_mutations_extended_without_namespaces.txt"); - ImportExtendedMutationData parser = new ImportExtendedMutationData( - file, testGeneticProfileId, null, null, newHashSet("foo-namespace", "bar-namespace") - ); - parser.importData(); - MySQLbulkLoader.flushAll(); - ConsoleUtil.showMessages(); - // fetch mutations for test genetic profile - int geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("test_importer_id").getGeneticProfileId(); - List mutations = DaoMutation.getAllMutations(geneticProfileId); - - assertEquals(1, mutations.size()); - - assertNull(mutations.get(0).getAnnotationJson()); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGeneData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGeneData.java deleted file mode 100644 index b228cfe2d40..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGeneData.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.assertEquals; - -import java.io.File; - -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.dao.DaoReferenceGenomeGene; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.ReferenceGenome; -import org.mskcc.cbio.portal.model.ReferenceGenomeGene; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/** - * JUnit tests for ImportGeneData class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportGeneData { - - @Test - /* - * Checks that ImportGeneData works by calculating the length from three genes - * in genes_test.txt. The file genes_test.txt contains real data. - */ - public void testImportGeneData() throws Exception { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - ProgressMonitor.setConsoleMode(false); - - File file = new File("src/test/resources/genes_test.txt"); - ImportGeneData.importData(file, "GRCh37"); - - CanonicalGene gene = daoGene.getGene(10); - assertEquals("NAT2", gene.getHugoGeneSymbolAllCaps()); - gene = daoGene.getGene(15); - assertEquals("AANAT", gene.getHugoGeneSymbolAllCaps()); - - gene = daoGene.getGene("ABCA3"); - assertEquals(21, gene.getEntrezGeneId()); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenericAssayData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenericAssayData.java deleted file mode 100644 index 27260663657..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenericAssayData.java +++ /dev/null @@ -1,146 +0,0 @@ -/* - * Copyright (c) 2017 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author Pim van Nierop, pim@thehyve.nl -*/ - -package org.mskcc.cbio.portal.scripts; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; - -import java.io.File; -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; - -import org.cbioportal.model.EntityType; -import org.cbioportal.model.meta.GenericAssayMeta; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoGenericAssay; -import org.mskcc.cbio.portal.dao.DaoGeneticEntity; -import org.mskcc.cbio.portal.dao.JdbcUtil; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/* - * JUnit tests for ImportTreatmentData class. -*/ - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportGenericAssayData { - - @Test - public void testImportTreatmentData() throws Exception { - - ProgressMonitor.setConsoleMode(false); - - // Open genesets test data file - File file = new File("src/test/resources/treatments/data_treatment_ic50.txt"); - - // import data and test all treatments were added - ImportGenericAssayEntity.importData(file, GeneticAlterationType.GENERIC_ASSAY, "NAME,DESCRIPTION,URL", true); - assertEquals(10, getNumRecordsForGenericAssay()); - - // test wether a record can be retrieved via stable id - GenericAssayMeta treatment1 = DaoGenericAssay.getGenericAssayMetaByStableId("Irinotecan"); - assertNotNull(treatment1); - - // Test whether fields were populated correctly - assertEquals("Name of Irinotecan", treatment1.getGenericEntityMetaProperties().get("NAME")); - assertEquals("Desc of Irinotecan", treatment1.getGenericEntityMetaProperties().get("DESCRIPTION")); - assertEquals("Url of Irinotecan", treatment1.getGenericEntityMetaProperties().get("URL")); - - // test fields are updated after loading new treatment file - File fileNewDesc = new File("src/test/resources/treatments/data_treatment_ic50_newdesc.txt"); - ImportGenericAssayEntity.importData(fileNewDesc, GeneticAlterationType.GENERIC_ASSAY, "NAME,DESCRIPTION,URL", true); - GenericAssayMeta treatment2 = DaoGenericAssay.getGenericAssayMetaByStableId("Irinotecan"); - assertEquals("New desc of Irinotecan", treatment2.getGenericEntityMetaProperties().get("DESCRIPTION")); - } - - @Test - public void testImportGenericAssayData() throws Exception { - - ProgressMonitor.setConsoleMode(false); - - // Open mutational signature test data file - File file = new File("src/test/resources/data_mutational_signature.txt"); - - // import data and test all mutational signatures were added - ImportGenericAssayEntity.importData(file, GeneticAlterationType.GENERIC_ASSAY, "name,description", false); - assertEquals(60, getNumRecordsForGenericAssay()); - - // test wether a record can be retrieved via stable id - GenericAssayMeta genericAssayMeta1 = DaoGenericAssay.getGenericAssayMetaByStableId("mean_1"); - assertNotNull(genericAssayMeta1); - - // Test whether fields were populated correctly - assertEquals("mean_1", genericAssayMeta1.getGenericEntityMetaProperties().get("name")); - assertEquals("mean_1", genericAssayMeta1.getGenericEntityMetaProperties().get("description")); - - // // test fields should not be updated after loading new generic assay meta file - File fileNewDesc = new File("src/test/resources/data_mutational_signature_new.txt"); - ImportGenericAssayEntity.importData(fileNewDesc, GeneticAlterationType.GENERIC_ASSAY, "name,description", false); - GenericAssayMeta genericAssayMeta2 = DaoGenericAssay.getGenericAssayMetaByStableId("mean_1"); - assertEquals("mean_1", genericAssayMeta2.getGenericEntityMetaProperties().get("description")); - - // // test fields should be updated after loading new generic assay meta file - ImportGenericAssayEntity.importData(fileNewDesc, GeneticAlterationType.GENERIC_ASSAY, "name,description", true); - GenericAssayMeta genericAssayMeta3 = DaoGenericAssay.getGenericAssayMetaByStableId("mean_1"); - assertEquals("new mean_1", genericAssayMeta3.getGenericEntityMetaProperties().get("description")); - - } - - private int getNumRecordsForGenericAssay() { - - Connection con = null; - PreparedStatement stat = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(DaoGeneticEntity.class); - stat = con.prepareStatement("SELECT COUNT(*) FROM genetic_entity WHERE ENTITY_TYPE = 'GENERIC_ASSAY'"); - rs = stat.executeQuery(); - if (rs.next()) { - return rs.getInt(1); - } - return 0; - } catch (SQLException e) { - System.out.println(e.getStackTrace()); - } finally { - JdbcUtil.closeAll(DaoGeneticEntity.class, con, stat, rs); - } - - return 0; - } - -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenericAssayPatientLevelData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenericAssayPatientLevelData.java deleted file mode 100644 index f3f382a83a2..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenericAssayPatientLevelData.java +++ /dev/null @@ -1,177 +0,0 @@ -/* - * Copyright (c) 2021 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.BufferedReader; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.cbioportal.model.GeneticEntity; -import org.mskcc.cbio.portal.util.*; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Set; - -/** - * JUnit tests for ImportGenericAssayPatientLevelData class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportGenericAssayPatientLevelData { - - private int studyId; - private int geneticProfileId; - private int sample1; - private int sample2; - private int sample3; - private CancerStudy study; - private GeneticEntity geneticEntity1; - private GeneticEntity geneticEntity2; - - @Before - public void setUp() throws DaoException { - DaoCancerStudy.reCacheAll(); - DaoGeneOptimized.getInstance().reCache(); - ProgressMonitor.resetWarnings(); - - study = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub"); - studyId =study.getInternalId(); - - GeneticProfile newGeneticProfile = new GeneticProfile(); - newGeneticProfile.setCancerStudyId(studyId); - newGeneticProfile.setGeneticAlterationType(GeneticAlterationType.GENERIC_ASSAY); - newGeneticProfile.setStableId("study_tcga_pub_generic_assay_patient_test"); - newGeneticProfile.setProfileName("Generic Assay Patient Level data"); - newGeneticProfile.setDatatype("LIMIT-VALUE"); - newGeneticProfile.setPatientLevel(true); - DaoGeneticProfile.addGeneticProfile(newGeneticProfile); - - geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_generic_assay_patient_test").getGeneticProfileId(); - - sample1 = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-A1-A0SB-01").getInternalId(); - sample2 = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-A1-A0SB-02").getInternalId(); - sample3 = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-A1-A0SD-01").getInternalId(); - - geneticEntity1 = new GeneticEntity("GENERIC_ASSAY", "test_patient_generic_assay_1"); - geneticEntity1 = DaoGeneticEntity.addNewGeneticEntity(geneticEntity1); - DaoGenericAssay.setGenericEntityProperty(geneticEntity1.getId(), "name", "test_patient_generic_assay_1"); - DaoGenericAssay.setGenericEntityProperty(geneticEntity1.getId(), "description", "test_patient_generic_assay_1"); - geneticEntity2 = new GeneticEntity("GENERIC_ASSAY", "test_patient_generic_assay_2"); - geneticEntity2 = DaoGeneticEntity.addNewGeneticEntity(geneticEntity2); - DaoGenericAssay.setGenericEntityProperty(geneticEntity2.getId(), "name", "test_patient_generic_assay_2"); - DaoGenericAssay.setGenericEntityProperty(geneticEntity2.getId(), "description", "test_patient_generic_assay_2"); - } - - /** - * Test importing of data_patient_generic_assay.txt file. - * @throws Exception All Errors. - */ - @Test - public void testImportGenericAssayPatientLevelDataBulkLoadOff() throws Exception { - - MySQLbulkLoader.bulkLoadOff(); - runImportGenericAssayPatientLevelData(); - } - - /** - * Test importing of data_patient_generic_assay.txt file. - * @throws Exception All Errors. - */ - @Test - public void testImportGenericAssayPatientLevelDataBulkLoadOn() throws Exception { - MySQLbulkLoader.bulkLoadOn(); - runImportGenericAssayPatientLevelData(); - } - - private void runImportGenericAssayPatientLevelData() throws DaoException, IOException{ - - DaoGeneticAlteration daoGeneticAlteration = DaoGeneticAlteration.getInstance(); - - ProgressMonitor.setConsoleMode(false); - - File file = new File("src/test/resources/tabDelimitedData/data_patient_generic_assay.txt"); - ImportGenericAssayPatientLevelData parser = new ImportGenericAssayPatientLevelData(file, null, geneticProfileId, null, "name,description"); - - int numLines = FileUtil.getNumLines(file); - parser.importData(numLines); - - HashMap> geneticAlterationMap = daoGeneticAlteration.getGeneticAlterationMapForEntityIds(geneticProfileId, Arrays.asList(geneticEntity1.getId(), geneticEntity2.getId())); - - HashMap geneticAlterationMapForEntity1 = geneticAlterationMap.get(geneticEntity1.getId()); - String value = geneticAlterationMapForEntity1.get(sample1); - assertEquals ("0.370266873", value); - value = geneticAlterationMapForEntity1.get(sample2); - assertEquals ("0.370266873", value); - value = geneticAlterationMapForEntity1.get(sample3); - assertEquals ("0.010373016", value); - HashMap geneticAlterationMapForEntity2 = geneticAlterationMap.get(geneticEntity2.getId()); - value = geneticAlterationMapForEntity2.get(sample1); - assertEquals ("0.002709404", value); - value = geneticAlterationMapForEntity2.get(sample2); - assertEquals ("0.002709404", value); - value = geneticAlterationMapForEntity2.get(sample3); - assertEquals ("0.009212318", value); - - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(studyId, "TCGA-A1-A0SB"); - Sample sample = DaoSample.getSampleByPatientAndSampleId(patient.getInternalId(), "TCGA-A1-A0SB-01"); - assertTrue(DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId)); - sample = DaoSample.getSampleByPatientAndSampleId(patient.getInternalId(), "TCGA-A1-A0SB-02"); - assertTrue(DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId)); - - patient = DaoPatient.getPatientByCancerStudyAndPatientId(studyId, "TCGA-A1-A0SD"); - sample = DaoSample.getSampleByPatientAndSampleId(patient.getInternalId(), "TCGA-A1-A0SD-01"); - assertTrue(DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId)); - - ArrayList caseIds = DaoSampleProfile.getAllSampleIdsInProfile(geneticProfileId); - assertEquals(3, caseIds.size()); - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenesetData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenesetData.java deleted file mode 100644 index b5934081148..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenesetData.java +++ /dev/null @@ -1,103 +0,0 @@ -/* - * Copyright (c) 2017 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author Sander Tan -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.assertEquals; - -import java.io.File; - -import org.mskcc.cbio.portal.dao.DaoGeneset; -import org.mskcc.cbio.portal.model.Geneset; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/* - * JUnit tests for ImportGenesetData class. -*/ - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportGenesetData { - - @Test - public void testImportGenesetData() throws Exception { - ProgressMonitor.setConsoleMode(false); - - // Open genesets test data file - File file = new File("src/test/resources/genesets/unit-test1_genesets.gmt"); - boolean updateInfo = false; - boolean newVersion = true; - int skippedGenes = ImportGenesetData.importData(file, updateInfo, newVersion); - - // Open supplementary file - file = new File("src/test/resources/genesets/unit-test1_supp-genesets.txt"); - ImportGenesetData.importSuppGenesetData(file); - - // Test database entries - Geneset geneset = DaoGeneset.getGenesetByExternalId("UNITTEST_GENESET5"); - assertEquals("UNITTEST_GENESET5", geneset.getExternalId()); - geneset = DaoGeneset.getGenesetByExternalId("UNITTEST_GENESET10"); - assertEquals("http://www.broadinstitute.org/gsea/msigdb/cards/GCNP_SHH_UP_EARLY.V1_UP", geneset.getRefLink()); - - // Test warning message - assertEquals(5, skippedGenes); - - // Test database entries supplementary file - geneset = DaoGeneset.getGenesetByExternalId("UNITTEST_GENESET2"); - assertEquals("Genes up-regulated in RK3E cells (kidney epithelium) over-expressing GLI1 [GeneID=2735].", geneset.getDescription()); - geneset = DaoGeneset.getGenesetByExternalId("UNITTEST_GENESET8"); - assertEquals("UNITTEST_GENESET8", geneset.getName()); - - // Test update of genes - // Open genesets test data file - file = new File("src/test/resources/genesets/unit-test2_genesets.gmt"); - newVersion = false; - updateInfo = true; - skippedGenes = ImportGenesetData.importData(file, updateInfo, newVersion); - - // Open supplementary file - file = new File("src/test/resources/genesets/unit-test2_supp-genesets.txt"); - ImportGenesetData.importSuppGenesetData(file); - - geneset = DaoGeneset.getGenesetByExternalId("UNITTEST_GENESET2"); - assertEquals("A made up description is suited for this a fake gene.", geneset.getDescription()); - geneset = DaoGeneset.getGenesetByExternalId("UNITTEST_GENESET1"); - assertEquals("Thought of new nice name for this geneset", geneset.getName()); - geneset = DaoGeneset.getGenesetByExternalId("UNITTEST_GENESET1"); - assertEquals("http://www.thehyve.nl/", geneset.getRefLink()); - - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenesetHierarchyData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenesetHierarchyData.java deleted file mode 100644 index 67e880077f5..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportGenesetHierarchyData.java +++ /dev/null @@ -1,136 +0,0 @@ -/* - * Copyright (c) 2017 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author Sander Tan -*/ - -package org.mskcc.cbio.portal.scripts; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.assertEquals; - -import java.io.File; -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.List; - -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneset; -import org.mskcc.cbio.portal.dao.DaoGenesetHierarchyNode; -import org.mskcc.cbio.portal.dao.DaoGenesetHierarchyLeaf; -import org.mskcc.cbio.portal.dao.JdbcUtil; -import org.mskcc.cbio.portal.model.Geneset; -import org.mskcc.cbio.portal.model.GenesetHierarchy; -import org.mskcc.cbio.portal.model.GenesetHierarchyLeaf; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/* - * JUnit tests for ImportGenesetData class. -*/ - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportGenesetHierarchyData { - - @Test - public void testImportGenesetHierarchyData() throws Exception { - ProgressMonitor.setConsoleMode(false); - - File file = new File("src/test/resources/genesets/unit-test-geneset-hierarchy_genesets.gmt"); - - boolean updateInfo = false; - boolean newVersion = true; - int skippedGenes = ImportGenesetData.importData(file, updateInfo, newVersion); - - file = new File("src/test/resources/genesets/unit-test-geneset-hierarchy_tree.yaml"); - boolean validate = false; - ImportGenesetHierarchy.importData(file, validate); - - // Test database entries - - // Get geneset id - Geneset geneset = DaoGeneset.getGenesetByExternalId("UNITTEST_GENESET8"); - - // Get parent node id from genesetHierarchyLeaf - List genesetHierarchyLeafs = DaoGenesetHierarchyLeaf.getGenesetHierarchyLeafsByGenesetId(geneset.getId()); - - // Select the first and only gene set - GenesetHierarchyLeaf genesetHierarchyLeaf = genesetHierarchyLeafs.get(0); - - // Get node name from genesetHierarchy - GenesetHierarchy genesetHierarchy = getGenesetHierarchyFromNodeId(genesetHierarchyLeaf.getNodeId()); - - // Check if node name is as expected - assertEquals("Institutes Subcategory 2", genesetHierarchy.getNodeName()); - } - - /** - * Retrieve gene set hierarchy objects from geneset_hierarchy_node table in database. - * THis - * @throws DaoException - */ - public static GenesetHierarchy getGenesetHierarchyFromNodeId(int nodeId) throws DaoException { - Connection connection = null; - PreparedStatement preparedStatement = null; - ResultSet resultSet = null; - - try { - // Open connection to database - connection = JdbcUtil.getDbConnection(DaoGenesetHierarchyNode.class); - - // Prepare SQL statement - preparedStatement = connection.prepareStatement("SELECT * FROM geneset_hierarchy_node WHERE NODE_ID = ?"); - preparedStatement.setInt(1, nodeId); - - // Execute statement - resultSet = preparedStatement.executeQuery(); - - // Extract genesetHierarchy values - if (resultSet.next()) { - GenesetHierarchy genesetHierarchy = new GenesetHierarchy(); - genesetHierarchy.setNodeId(resultSet.getInt("NODE_ID")); - genesetHierarchy.setNodeName(resultSet.getString("NODE_NAME")); - genesetHierarchy.setParentId(resultSet.getInt("PARENT_ID")); - return genesetHierarchy; - } - - return null; - - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(DaoGenesetHierarchyNode.class, connection, preparedStatement, resultSet); - } - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportProfileData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportProfileData.java deleted file mode 100644 index 2a0b0be85ed..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportProfileData.java +++ /dev/null @@ -1,566 +0,0 @@ -/* - * Copyright (c) 2016 - 2022 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertNull; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.List; - -import org.junit.After; -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; -import org.junit.rules.ExpectedException; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoClinicalAttributeMeta; -import org.mskcc.cbio.portal.dao.DaoClinicalData; -import org.mskcc.cbio.portal.dao.DaoCnaEvent; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.dao.DaoGeneticProfile; -import org.mskcc.cbio.portal.dao.DaoMutation; -import org.mskcc.cbio.portal.dao.DaoPatient; -import org.mskcc.cbio.portal.dao.DaoSample; -import org.mskcc.cbio.portal.dao.DaoSampleProfile; -import org.mskcc.cbio.portal.dao.DaoStructuralVariant; -import org.mskcc.cbio.portal.dao.MySQLbulkLoader; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.ClinicalAttribute; -import org.mskcc.cbio.portal.model.ClinicalData; -import org.mskcc.cbio.portal.model.CnaEvent; -import org.mskcc.cbio.portal.model.ExtendedMutation; -import org.mskcc.cbio.portal.model.GeneticProfile; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.Patient; -import org.mskcc.cbio.portal.model.Sample; -import org.mskcc.cbio.portal.model.StructuralVariant; - -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/** - * @author Pieter Lukasse pieter@thehyve.nl - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportProfileData { - - int studyId; - int geneticProfileId; - - @Before - public void setUp() throws DaoException { - ProgressMonitor.setConsoleMode(false); - loadGenes(); - } - - @After - public void cleanUp() throws DaoException { - // each test assumes the mutation data hasn't been loaded yet - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_breast_mutations"); - if (geneticProfile != null) { - DaoGeneticProfile.deleteGeneticProfile(geneticProfile); - assertNull(DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_breast_mutations")); - } - geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_sv"); - if (geneticProfile != null) { - DaoGeneticProfile.deleteGeneticProfile(geneticProfile); - assertNull(DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_sv")); - } - } - - @Rule - public ExpectedException exception = ExpectedException.none(); - - @Test - public void testImportMutationsFile() throws Exception { - /* - * Complex test where we import a mutations file split over two data - * files. The data includes germline mutations as well as silent - * mutations. We make sure the nonsynonymous somatic and germline - * mutations are added to the databases and the MUTATION_COUNT clinical - * attributes are correctly computed. - */ - String[] args = { - "--data","src/test/resources/data_mutations_extended.txt", - "--meta","src/test/resources/meta_mutations_extended.txt", - "--loadMode", "bulkLoad" - }; - ImportProfileData runner = new ImportProfileData(args); - runner.run(); - - // check the study exists - String studyStableId = "study_tcga_pub"; - CancerStudy study = DaoCancerStudy.getCancerStudyByStableId(studyStableId); - assertNotNull(study); - studyId = study.getInternalId(); - - // Check if the ImportProfileData class indeed adds the study stable Id in front of the - //dataset study id (e.g. studyStableId + "_breast_mutations"): - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId(studyStableId + "_breast_mutations"); - assertNotNull(geneticProfile); - geneticProfileId = geneticProfile.getGeneticProfileId(); - - // check the mutation T433A has been imported - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-AA-3664-01").getInternalId(); - validateMutationAminoAcid(geneticProfileId, sampleId, 54407, "T433A"); - - // data for the second sample should not exist before loading the next data file - int secondSampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-AA-3665-01").getInternalId(); - assertEquals(DaoMutation.getMutations(geneticProfileId, secondSampleId).size(), 0); - // the GENETIC_PROFILE_ID in sample_profile should be the same as the - // genetic profile that was used for import - int geneticProfileIdFromSampleProfile = DaoSampleProfile.getProfileIdForSample(sampleId); - assertEquals(geneticProfileIdFromSampleProfile, geneticProfileId); - - // assume clinical data for MUTATION_COUNT was created - ClinicalAttribute clinicalAttribute = DaoClinicalAttributeMeta.getDatum("MUTATION_COUNT", studyId); - assertNotNull(clinicalAttribute); - - // assume a MUTATION_COUNT record has been added for the sample and the - // count is 8 there 11 total mutations imported of which 3 germline ( - // not entirely sure why the rest doesn't get imported i see some silent - // + intron, missing entrez id) - List clinicalData = DaoClinicalData.getSampleData(study.getInternalId(), new ArrayList(Arrays.asList("TCGA-AA-3664-01")), clinicalAttribute); - assert(clinicalData.size() == 1); - assertEquals("8", clinicalData.get(0).getAttrVal()); - - // load a second mutation data file - String[] secondArgs = { - "--data","src/test/resources/data_mutations_extended_continued.txt", - "--meta","src/test/resources/meta_mutations_extended.txt", - "--loadMode", "bulkLoad" - }; - ImportProfileData secondRunner = new ImportProfileData(secondArgs); - secondRunner.run(); - - // check mutation for second sample was imported - validateMutationAminoAcid(geneticProfileId, secondSampleId, 2842, "L113P"); - - // assume a MUTATION_COUNT record has been added for the sample and the - // count is 1, the other one is a germline mutation - // also confirm mutation count for first sample is still correct - clinicalData = DaoClinicalData.getSampleData(study.getInternalId(), new ArrayList(Arrays.asList("TCGA-AA-3664-01", "TCGA-AA-3665-01")), clinicalAttribute); - assert(clinicalData.size() == 2); - assertEquals("8", clinicalData.get(0).getAttrVal()); - assertEquals("1", clinicalData.get(1).getAttrVal()); - } - - @Test - public void testImportSplitMutationsFile() throws Exception { - /* - * Mutations file split over two files with same stable id. Make sure - * that the first time if a sample is in the #sequenced_samples the - * MUTATION_COUNT is 0. After importing the second file make sure the - * counts are added up i.e. mutations from both the first and second - * file should be included in the MUTATION_COUNT record. - */ - String[] args = { - "--data","src/test/resources/splitMutationsData/data_mutations_extended.txt", - "--meta","src/test/resources/splitMutationsData/meta_mutations_extended.txt", - "--loadMode", "bulkLoad" - }; - ImportProfileData runner = new ImportProfileData(args); - runner.run(); - String studyStableId = "study_tcga_pub"; - CancerStudy study = DaoCancerStudy.getCancerStudyByStableId(studyStableId); - studyId = study.getInternalId(); - - // assume clinical data for MUTATION_COUNT was created - ClinicalAttribute clinicalAttribute = DaoClinicalAttributeMeta.getDatum("MUTATION_COUNT", studyId); - assertNotNull(clinicalAttribute); - - // assume a MUTATION_COUNT record has been added for both samples - List clinicalData = DaoClinicalData.getSampleData(study.getInternalId(), new ArrayList(Arrays.asList("TCGA-AA-3664-01", "TCGA-AA-3665-01")), clinicalAttribute); - assert(clinicalData.size() == 2); - assertEquals("3", clinicalData.get(0).getAttrVal()); - assertEquals("0", clinicalData.get(1).getAttrVal()); - - // load a second mutation data file - String[] secondArgs = { - "--data","src/test/resources/splitMutationsData/data_mutations_extended_continued.txt", - "--meta","src/test/resources/splitMutationsData/meta_mutations_extended.txt", - "--loadMode", "bulkLoad" - }; - ImportProfileData secondRunner = new ImportProfileData(secondArgs); - secondRunner.run(); - - // assume a MUTATION_COUNT record has been updated for both samples (both +1) - clinicalData = DaoClinicalData.getSampleData(study.getInternalId(), new ArrayList(Arrays.asList("TCGA-AA-3664-01", "TCGA-AA-3665-01")), clinicalAttribute); - assert(clinicalData.size() == 2); - assertEquals("4", clinicalData.get(0).getAttrVal()); - assertEquals("1", clinicalData.get(1).getAttrVal()); - } - - @Test - public void testImportGermlineOnlyFile() throws Exception { - /* Mutations file split over two files with same stable id */ - String[] args = { - "--data","src/test/resources/germlineOnlyMutationsData/data_mutations_extended.txt", - "--meta","src/test/resources/germlineOnlyMutationsData/meta_mutations_extended.txt", - "--loadMode", "bulkLoad" - }; - ImportProfileData runner = new ImportProfileData(args); - runner.run(); - String studyStableId = "study_tcga_pub"; - CancerStudy study = DaoCancerStudy.getCancerStudyByStableId(studyStableId); - studyId = study.getInternalId(); - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-AA-3664-01").getInternalId(); - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId(studyStableId + "_breast_mutations"); - geneticProfileId = geneticProfile.getGeneticProfileId(); - - // assume clinical data for MUTATION_COUNT was created - ClinicalAttribute clinicalAttribute = DaoClinicalAttributeMeta.getDatum("MUTATION_COUNT", studyId); - assertNotNull(clinicalAttribute); - - // assume a MUTATION_COUNT record has been added for one sample and the count is zero - List clinicalData = DaoClinicalData.getSampleData(study.getInternalId(), new ArrayList(Arrays.asList("TCGA-AA-3664-01")), clinicalAttribute); - assert(clinicalData.size() == 1); - assertEquals("0", clinicalData.get(0).getAttrVal()); - - // check if the three germline mutations have been inserted - validateMutationAminoAcid (geneticProfileId, sampleId, 64581, "T209A"); - validateMutationAminoAcid (geneticProfileId, sampleId, 50839, "G78S"); - validateMutationAminoAcid (geneticProfileId, sampleId, 2842, "L113P"); - - // remove profile at the end - DaoGeneticProfile.deleteGeneticProfile(geneticProfile); - assertNull(DaoGeneticProfile.getGeneticProfileByStableId(studyStableId + "_breast_mutations")); - } - - private StructuralVariant constructExpectedStructuralVariant1() { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - CanonicalGene site1Gene = daoGene.getGene("KIAA1549"); - CanonicalGene site2Gene = daoGene.getGene("BRAF"); - assertNotNull(site1Gene); - assertNotNull(site2Gene); - StructuralVariant sv = new StructuralVariant(); - sv.setInternalId(-1); // not retrieved from database DaoStructuralVariant.getAllStructuralVariants(), so no test - sv.setGeneticProfileId(-1); // internal identifier for profile is not stable, so no test - sv.setStructuralVariantId(-1); // not retrieved from database DaoStructuralVariant.getAllStructuralVariants(), so no test - sv.setSampleIdInternal(-1); // internal identifier for sample is not stable, so no test - sv.setSampleId(null);// not retrieved from database DaoStructuralVariant.getAllStructuralVariants(), so no test - sv.setSite1EntrezGeneId(site1Gene.getEntrezGeneId()); - sv.setSite1HugoSymbol(null); // not retrieved from database DaoStructuralVariant.getAllStructuralVariants(), so no test - sv.setSite1EnsemblTranscriptId("ENST00000242365"); - sv.setSite1Chromosome("7"); - sv.setSite1Position(138536968); - sv.setSite1Contig("p11.2"); - sv.setSite1Region("intron"); - sv.setSite1RegionNumber(5); - sv.setSite1Description("KIAA1549-BRAF.K16B10.COSF509_1"); - sv.setSite2EntrezGeneId(site2Gene.getEntrezGeneId()); - sv.setSite2HugoSymbol(null); // not retrieved from database DaoStructuralVariant.getAllStructuralVariants(), so no test - sv.setSite2EnsemblTranscriptId("ENST00000288602"); - sv.setSite2Chromosome("7"); - sv.setSite2Position(140482957); - sv.setSite2Contig("q14.1"); - sv.setSite2Region("exon"); - sv.setSite2RegionNumber(2); - sv.setSite2Description("KIAA1549-BRAF.K16B10.COSF509_2"); - sv.setSite2EffectOnFrame("NA"); - sv.setNcbiBuild("GRCh37"); - sv.setDnaSupport("no"); - sv.setRnaSupport("yes"); - sv.setNormalReadCount(-1); - sv.setTumorReadCount(1000); - sv.setNormalVariantCount(-1); - sv.setTumorVariantCount(900); - sv.setNormalPairedEndReadCount(-1); - sv.setTumorPairedEndReadCount(-1); - sv.setNormalSplitReadCount(-1); - sv.setTumorSplitReadCount(-1); - sv.setAnnotation("KIAA1549-BRAF.K16B10.COSF509"); - sv.setBreakpointType("NA"); - sv.setConnectionType("NA"); - sv.setEventInfo("Fusion"); - sv.setVariantClass("NA"); - sv.setLength(-1); - sv.setComments("Gain-of-Function"); - sv.setSvStatus("SOMATIC"); - sv.setDriverFilter("testdriver"); - sv.setDriverFilterAnn("testdriveranno"); - sv.setDriverTiersFilter("testdrivertiers"); - sv.setDriverTiersFilterAnn("testdrivertiersanno"); - return sv; - } - - private void registerDifference(StringBuilder response, String fieldId, T actual, T expected) { - if (actual == expected) { - return; - } - if (actual == null && expected != null) { - response.append("actual " + fieldId + " value is null, but expected value is '" + expected + "'\n"); - return; - } - if (expected == null && actual != null) { - response.append("actual " + fieldId + " value is '" + actual + "', but expected value is null" + expected + "\n"); - return; - } - if (!actual.equals(expected)) { - response.append("actual " + fieldId + " value is '" + actual + "', but expected value is '" + expected + "'\n"); - return; - } - } - - private String differenceReport(StructuralVariant actualSV, StructuralVariant expectedSV) { - StringBuilder response = new StringBuilder(); - // internalId not tested - // geneticProfileId not tested - // structuralVariantId not tested - // sampleIdInternal not tested - // sampleId not tested - registerDifference(response, "site1EntrezGeneId", actualSV.getSite1EntrezGeneId(), expectedSV.getSite1EntrezGeneId()); - // site1HugoSymbol not tested - registerDifference(response, "site1EnsemblTranscriptId", actualSV.getSite1EnsemblTranscriptId(), expectedSV.getSite1EnsemblTranscriptId()); - registerDifference(response, "site1Chromosome", actualSV.getSite1Chromosome(), expectedSV.getSite1Chromosome()); - registerDifference(response, "site1Position", actualSV.getSite1Position(), expectedSV.getSite1Position()); - registerDifference(response, "site1Contig", actualSV.getSite1Contig(), expectedSV.getSite1Contig()); - registerDifference(response, "site1Region", actualSV.getSite1Region(), expectedSV.getSite1Region()); - registerDifference(response, "site1RegionNumber", actualSV.getSite1RegionNumber(), expectedSV.getSite1RegionNumber()); - registerDifference(response, "site1Description", actualSV.getSite1Description(), expectedSV.getSite1Description()); - registerDifference(response, "site2EntrezGeneId", actualSV.getSite2EntrezGeneId(), expectedSV.getSite2EntrezGeneId()); - // site2HugoSymbol not tested - registerDifference(response, "site2EnsemblTranscriptId", actualSV.getSite2EnsemblTranscriptId(), expectedSV.getSite2EnsemblTranscriptId()); - registerDifference(response, "site2Chromosome", actualSV.getSite2Chromosome(), expectedSV.getSite2Chromosome()); - registerDifference(response, "site2Position", actualSV.getSite2Position(), expectedSV.getSite2Position()); - registerDifference(response, "site2Contig", actualSV.getSite2Contig(), expectedSV.getSite2Contig()); - registerDifference(response, "site2Region", actualSV.getSite2Region(), expectedSV.getSite2Region()); - registerDifference(response, "site2RegionNumber", actualSV.getSite2RegionNumber(), expectedSV.getSite2RegionNumber()); - registerDifference(response, "site2Description", actualSV.getSite2Description(), expectedSV.getSite2Description()); - registerDifference(response, "site2EffectOnFrame", actualSV.getSite2EffectOnFrame(), expectedSV.getSite2EffectOnFrame()); - registerDifference(response, "ncbiBuild", actualSV.getNcbiBuild(), expectedSV.getNcbiBuild()); - registerDifference(response, "dnaSupport", actualSV.getDnaSupport(), expectedSV.getDnaSupport()); - registerDifference(response, "rnaSupport", actualSV.getRnaSupport(), expectedSV.getRnaSupport()); - registerDifference(response, "normalReadCount", actualSV.getNormalReadCount(), expectedSV.getNormalReadCount()); - registerDifference(response, "tumorReadCount", actualSV.getTumorReadCount(), expectedSV.getTumorReadCount()); - registerDifference(response, "normalVariantCount", actualSV.getNormalVariantCount(), expectedSV.getNormalVariantCount()); - registerDifference(response, "tumorVariantCount", actualSV.getTumorVariantCount(), expectedSV.getTumorVariantCount()); - registerDifference(response, "normalPairedEndReadCount", actualSV.getNormalPairedEndReadCount(), expectedSV.getNormalPairedEndReadCount()); - registerDifference(response, "tumorPairedEndReadCount", actualSV.getTumorPairedEndReadCount(), expectedSV.getTumorPairedEndReadCount()); - registerDifference(response, "normalSplitReadCount", actualSV.getNormalSplitReadCount(), expectedSV.getNormalSplitReadCount()); - registerDifference(response, "tumorSplitReadCount", actualSV.getTumorSplitReadCount(), expectedSV.getTumorSplitReadCount()); - registerDifference(response, "annotation", actualSV.getAnnotation(), expectedSV.getAnnotation()); - registerDifference(response, "breakpointType", actualSV.getBreakpointType(), expectedSV.getBreakpointType()); - registerDifference(response, "connectionType", actualSV.getConnectionType(), expectedSV.getConnectionType()); - registerDifference(response, "eventInfo", actualSV.getEventInfo(), expectedSV.getEventInfo()); - registerDifference(response, "variantClass", actualSV.getVariantClass(), expectedSV.getVariantClass()); - registerDifference(response, "length", actualSV.getLength(), expectedSV.getLength()); - registerDifference(response, "comments", actualSV.getComments(), expectedSV.getComments()); - registerDifference(response, "svStatus", actualSV.getSvStatus(), expectedSV.getSvStatus()); - registerDifference(response, "driverFilter", actualSV.getDriverFilter(), expectedSV.getDriverFilter()); - registerDifference(response, "driverFilterAnn", actualSV.getDriverFilterAnn(), expectedSV.getDriverFilterAnn()); - registerDifference(response, "driverTiersFilter", actualSV.getDriverTiersFilter(), expectedSV.getDriverTiersFilter()); - registerDifference(response, "driverTiersFilterAnn", actualSV.getDriverTiersFilterAnn(), expectedSV.getDriverTiersFilterAnn()); - return response.toString(); - } - - @Test - public void testImportStructuralVariantFile() throws Exception { - String[] sampleIds = {"TCGA-A1-A0SD-01", "TCGA-A1-A0SB-01"}; - String studyStableId = "study_tcga_pub"; - CancerStudy study = DaoCancerStudy.getCancerStudyByStableId(studyStableId); - int studyId = study.getInternalId(); - String testSampleStableId = "TCGA-A1-A0SB-01"; - int testSampleId = -1; - // we need the internal sample id - for (String sampleId : sampleIds) { - String patientId = sampleId.substring(0, 12); - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(studyId, patientId); - Integer patientIdInt = patient.getInternalId(); - Sample sample = DaoSample.getSampleByPatientAndSampleId(patientIdInt, sampleId); - Integer sampleIdInt = sample.getInternalId(); - if (testSampleStableId.equals(sample.getStableId())) { - testSampleId = sampleIdInt.intValue(); - } - } - - assertNotEquals(-1, testSampleId); - - String[] args = { - "--data","src/test/resources/data_structural_variants.txt", - "--meta","src/test/resources/meta_structural_variants.txt" , - "--noprogress", - "--loadMode", "bulkLoad" - }; - - try { - ImportProfileData runner = new ImportProfileData(args); - runner.run(); - } catch (Throwable e) { - //useful info for when this fails: - ConsoleUtil.showMessages(); - throw e; - } - - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_sv"); - assertNotNull(geneticProfile); - - int countStructuralVariantsInProfile = 0; - boolean foundTestSample = false; - - List structuralVariants = DaoStructuralVariant.getAllStructuralVariants(); - for (StructuralVariant structuralVariant : structuralVariants) { - if (geneticProfile.getGeneticProfileId() == structuralVariant.getGeneticProfileId()) { - countStructuralVariantsInProfile += 1; - if (testSampleId == structuralVariant.getSampleIdInternal()) { - foundTestSample = true; - assertEquals("", differenceReport(structuralVariant, constructExpectedStructuralVariant1())); - } - } - } - assertEquals(5, countStructuralVariantsInProfile); - assertEquals(true, foundTestSample); - } - - @Test - public void testImportCNAFile() throws Exception { - //genes in this test: - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - daoGene.addGene(new CanonicalGene(999999672, "TESTBRCA1")); - daoGene.addGene(new CanonicalGene(999999675, "TESTBRCA2")); - MySQLbulkLoader.flushAll(); - String[] args = { - "--data","src/test/resources/data_CNA_sample.txt", - "--meta","src/test/resources/meta_CNA.txt" , - "--noprogress", - "--loadMode", "bulkLoad" - }; - String[] sampleIds = {"TCGA-02-0001-01","TCGA-02-0003-01","TCGA-02-0004-01","TCGA-02-0006-01"}; - //This test is to check if the ImportProfileData class indeed adds the study stable Id in front of the - //dataset study id (e.g. studyStableId + "_breast_mutations"): - String studyStableId = "study_tcga_pub"; - CancerStudy study = DaoCancerStudy.getCancerStudyByStableId(studyStableId); - studyId = study.getInternalId(); - //will be needed when relational constraints are active: - for (String sampleId : sampleIds) { - // fetch patient from db or add new one if does not exist - Patient p = DaoPatient.getPatientByCancerStudyAndPatientId(studyId, sampleId); - Integer pId = (p == null) ? DaoPatient.addPatient(new Patient(study, sampleId)) : p.getInternalId(); - DaoSample.addSample(new Sample(sampleId, pId, study.getTypeOfCancerId())); - } - - try { - ImportProfileData runner = new ImportProfileData(args); - runner.run(); - } catch (Throwable e) { - //useful info for when this fails: - ConsoleUtil.showMessages(); - throw e; - } - geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId(studyStableId + "_cna").getGeneticProfileId(); - List sampleInternalIds = new ArrayList(); - DaoSample.reCache(); - for (String sample : sampleIds) { - sampleInternalIds.add(DaoSample.getSampleByCancerStudyAndSampleId(studyId, sample).getInternalId()); - } - Collection cnaLevels = Arrays.asList((short)-2, (short)2); - List cnaEvents = DaoCnaEvent.getCnaEvents(sampleInternalIds, null, geneticProfileId, cnaLevels); - assertEquals(2, cnaEvents.size()); - //validate specific records. Data looks like: - //999999672 TESTBRCA1 -2 0 1 0 - //999999675 TESTBRCA2 0 2 0 -1 - //Check if the first two samples are loaded correctly: - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-02-0001-01").getInternalId(); - sampleInternalIds = Arrays.asList((int)sampleId); - CnaEvent cnaEvent = DaoCnaEvent.getCnaEvents(sampleInternalIds, null, geneticProfileId, cnaLevels).get(0); - assertEquals(-2, cnaEvent.getAlteration().getCode()); - assertEquals("TESTBRCA1", cnaEvent.getGeneSymbol()); - assertEquals("Putative_Passenger", cnaEvent.getDriverFilter()); - assertEquals("Test passenger", cnaEvent.getDriverFilterAnnotation()); - assertEquals("Class 2", cnaEvent.getDriverTiersFilter()); - assertEquals("Class 2 annotation", cnaEvent.getDriverTiersFilterAnnotation()); - sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-02-0003-01").getInternalId(); - sampleInternalIds = Arrays.asList((int)sampleId); - cnaEvent = DaoCnaEvent.getCnaEvents(sampleInternalIds, null, geneticProfileId, cnaLevels).get(0); - assertEquals(2, cnaEvent.getAlteration().getCode()); - assertEquals("TESTBRCA2", cnaEvent.getGeneSymbol()); - assertEquals("Putative_Driver", cnaEvent.getDriverFilter()); - assertEquals("Test driver", cnaEvent.getDriverFilterAnnotation()); - assertEquals("Class 1", cnaEvent.getDriverTiersFilter()); - assertEquals("Class 1 annotation", cnaEvent.getDriverTiersFilterAnnotation()); - } - - private void validateMutationAminoAcid (int geneticProfileId, Integer sampleId, long entrezGeneId, String expectedAminoAcidChange) throws DaoException { - ArrayList mutationList = DaoMutation.getMutations(geneticProfileId, sampleId, entrezGeneId); - assertEquals(1, mutationList.size()); - assertEquals(expectedAminoAcidChange, mutationList.get(0).getProteinChange()); - } - - private static void loadGenes() throws DaoException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - // genes for "data_mutations_extended.txt" - daoGene.addGene(new CanonicalGene(114548L, "NLRP3")); - daoGene.addGene(new CanonicalGene(3339L, "HSPG2")); - daoGene.addGene(new CanonicalGene(282770L, "OR10AG1")); - daoGene.addGene(new CanonicalGene(51806L, "CALML5")); - daoGene.addGene(new CanonicalGene(343035L, "RD3")); - daoGene.addGene(new CanonicalGene(80114L, "BICC1")); - daoGene.addGene(new CanonicalGene(219736L, "STOX1")); - daoGene.addGene(new CanonicalGene(6609L, "SMPD1")); - daoGene.addGene(new CanonicalGene(51259L, "TMEM216")); - daoGene.addGene(new CanonicalGene(89L, "ACTN3")); - daoGene.addGene(new CanonicalGene(64581L, "CLEC7A")); - daoGene.addGene(new CanonicalGene(50839L, "TAS2R10")); - daoGene.addGene(new CanonicalGene(54407L, "SLC38A2")); - daoGene.addGene(new CanonicalGene(6667L, "SP1")); - daoGene.addGene(new CanonicalGene(2842L, "GPR19")); - // additional genes for "data_mutations_oncotated.txt" - daoGene.addGene(new CanonicalGene(55138L, "FAM90A1")); - daoGene.addGene(new CanonicalGene(10628L, "TXNIP")); - daoGene.addGene(new CanonicalGene(80343, "SEL1L2")); - daoGene.addGene(new CanonicalGene(29102L, "DROSHA")); - daoGene.addGene(new CanonicalGene(7204L, "TRIO")); - daoGene.addGene(new CanonicalGene(57111L, "RAB25")); - daoGene.addGene(new CanonicalGene(773L, "CACNA1A")); - daoGene.addGene(new CanonicalGene(100132025L, "LOC100132025")); - daoGene.addGene(new CanonicalGene(1769L, "DNAH8")); - daoGene.addGene(new CanonicalGene(343171L, "OR2W3")); - daoGene.addGene(new CanonicalGene(2901L, "GRIK5")); - daoGene.addGene(new CanonicalGene(10568L, "SLC34A2")); - daoGene.addGene(new CanonicalGene(140738L, "TMEM37")); - daoGene.addGene(new CanonicalGene(94025L, "MUC16")); - daoGene.addGene(new CanonicalGene(1915L, "EEF1A1")); - daoGene.addGene(new CanonicalGene(65083L, "NOL6")); - daoGene.addGene(new CanonicalGene(7094L, "TLN1")); - daoGene.addGene(new CanonicalGene(51196L, "PLCE1")); - daoGene.addGene(new CanonicalGene(1952L, "CELSR2")); - daoGene.addGene(new CanonicalGene(2322L, "FLT3")); - daoGene.addGene(new CanonicalGene(867L, "CBL")); - MySQLbulkLoader.flushAll(); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportReferenceGenome.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportReferenceGenome.java deleted file mode 100644 index 8a4c5d3d1b1..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportReferenceGenome.java +++ /dev/null @@ -1,40 +0,0 @@ -package org.mskcc.cbio.portal.scripts; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.assertEquals; - -import java.io.File; - -import org.mskcc.cbio.portal.dao.DaoReferenceGenome; -import org.mskcc.cbio.portal.model.ReferenceGenome; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/** - * JUnit tests for ImportGeneData class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportReferenceGenome { - - @Test - /* - * Checks that ImportGeneData works by calculating the length from three genes - * in genes_test.txt. The file genes_test.txt contains real data. - */ - public void testImportReferenceGenome() throws Exception { - ProgressMonitor.setConsoleMode(false); - File file = new File("src/test/resources/reference_genomes.txt"); - ImportReferenceGenome.importData(file); - ReferenceGenome genome = DaoReferenceGenome.getReferenceGenomeByInternalId(1); - assertEquals("GRCh37", genome.getBuildName()); - assertEquals(1, DaoReferenceGenome.getReferenceGenomeIdByName("GRCh37")); - } -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportStructuralVariantData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportStructuralVariantData.java deleted file mode 100644 index d5df518788c..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportStructuralVariantData.java +++ /dev/null @@ -1,191 +0,0 @@ -/* - * Copyright (c) 2018 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -/* - * @author Sander Tan -*/ - -package org.mskcc.cbio.portal.scripts; - -import junitparams.JUnitParamsRunner; -import junitparams.Parameters; -import org.apache.commons.lang.StringEscapeUtils; -import org.codehaus.jackson.map.ObjectMapper; -import org.junit.Before; -import org.junit.ClassRule; -import org.junit.Rule; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.junit4.rules.SpringClassRule; -import org.springframework.test.context.junit4.rules.SpringMethodRule; -import org.springframework.transaction.annotation.Transactional; - -import static com.google.common.collect.Sets.newHashSet; -import static org.junit.Assert.*; -import java.io.*; -import java.util.*; - -/** - * Test class to test functionality of ImportStructralVariantData -*/ -@RunWith(JUnitParamsRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportStructuralVariantData{ - int studyId; - int geneticProfileId; - Set noNamespaces = null; - - // Needed to run with JUnitParamsRunner. - // See: https://github.com/Pragmatists/junitparams-spring-integration-example#alternative-way-to-start-spring-context - @ClassRule - public static final SpringClassRule SPRING_CLASS_RULE = new SpringClassRule(); - @Rule - public final SpringMethodRule springMethodRule = new SpringMethodRule(); - - @Before - public void setUp() throws DaoException { - studyId = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub").getInternalId(); - geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_structural_variants").getGeneticProfileId(); - } - - @Test - public void testImportStructuralVariantData() throws DaoException, IOException { - ProgressMonitor.setConsoleMode(false); - - // Load test structural variants - File file = new File("src/test/resources/data_structural_variants.txt"); - ImportStructuralVariantData importer = new ImportStructuralVariantData(file, geneticProfileId, null, noNamespaces); - importer.importData(); - MySQLbulkLoader.flushAll(); - - List structuralVariants = DaoStructuralVariant.getAllStructuralVariants(); - assertEquals("KIAA1549-BRAF.K16B10.COSF509_2", structuralVariants.get(0).getSite2Description()); - assertEquals("ENST00000318522", structuralVariants.get(1).getSite1EnsemblTranscriptId()); - assertEquals(5, structuralVariants.size()); - assertEquals(0L, (long) structuralVariants.get(2).getSite1EntrezGeneId()); // null in db - assertEquals(673L, (long) structuralVariants.get(2).getSite2EntrezGeneId()); - assertEquals(0L, (long) structuralVariants.get(3).getSite2EntrezGeneId()); // null in db - assertEquals(673L, (long) structuralVariants.get(3).getSite1EntrezGeneId()); - assertEquals(0L, (long) structuralVariants.get(4).getSite2EntrezGeneId()); // null in db - assertEquals(207, (long) structuralVariants.get(4).getSite1EntrezGeneId()); // 110384692 in file, 207 in DB by hugo - } - - private Object[] namespaceJsonParams() { - return new Object[] { - // Has namespaces: - new Object[] { - "EML4-ALK.E13A20.AB462411_2", - "{\"StructVarNamespace2\":{\"foo\":\"bar\"},\"StructVarNamespace\":{\"column1\":\"value1a\",\"column2\":\"value2a\"}}" - }, - // Does not have namespaces: - new Object[] { - "KIAA1549-BRAF.K16B10.COSF509_2", - "{\"StructVarNamespace2\":{\"foo\":null},\"StructVarNamespace\":{\"column1\":null,\"column2\":null}}" - } - }; - } - - @Test - @Parameters(method = "namespaceJsonParams") - public void testImportStructuralVariantDataImportsCustomNamespacesFromTwoSamples( - String site2description, - String expectedNamespaceJson - ) throws DaoException, IOException { - ProgressMonitor.setConsoleMode(false); - - // Load test structural variants - File file = new File("src/test/resources/data_structural_variants.txt"); - Set namespacesToImport = newHashSet("StructVarNamespace", "StructVarNamespace2"); - ImportStructuralVariantData importer = new ImportStructuralVariantData(file, geneticProfileId, null, namespacesToImport); - importer.importData(); - MySQLbulkLoader.flushAll(); - - List all = DaoStructuralVariant - .getAllStructuralVariants(); - - // Namespace values present: - String annotationJson = all - .stream().filter(sv -> site2description.equals(sv.getSite2Description())) - .findFirst().get() - .getAnnotationJson(); - ObjectMapper mapper = new ObjectMapper(); - assertEquals( - mapper.readTree(expectedNamespaceJson), - mapper.readTree(annotationJson) - ); - } - - @Test - public void testImportStructuralVariantDataIgnoresUnspecifiedNamespaces() throws DaoException, IOException { - ProgressMonitor.setConsoleMode(false); - - // Load test structural variants - File file = new File("src/test/resources/data_structural_variants_with_unspecified_namespace.txt"); - Set namespacesToImport = newHashSet("StructVarNamespace", "StructVarNamespace2"); - ImportStructuralVariantData importer = new ImportStructuralVariantData(file, geneticProfileId, null, namespacesToImport); - importer.importData(); - MySQLbulkLoader.flushAll(); - - List all = DaoStructuralVariant - .getAllStructuralVariants(); - - // FaultyStructVarNamespace.shouldNotBeImported is ignored: - String annotationJson = all - .stream().filter(sv -> "EML4-ALK.E13A20.AB462411_2".equals(sv.getSite2Description())) - .findFirst().get() - .getAnnotationJson(); - String expectedAnnotationJson = "{\"StructVarNamespace2\":{\"foo\":\"bar\"},\"StructVarNamespace\":{\"column1\":\"value1a\",\"column2\":\"value2a\"}}"; - assertEquals(expectedAnnotationJson, annotationJson); - } - - @Test - public void testImportStructuralVariantDataWithNoNamespaceData() throws DaoException, IOException { - ProgressMonitor.setConsoleMode(false); - - // Load test structural variants - File file = new File("src/test/resources/data_structural_variants_with_no_namespace_data.txt"); - Set namespacesToImport = newHashSet("StructVarNamespace", "StructVarNamespace2"); - ImportStructuralVariantData importer = new ImportStructuralVariantData(file, geneticProfileId, null, namespacesToImport); - importer.importData(); - MySQLbulkLoader.flushAll(); - - List all = DaoStructuralVariant - .getAllStructuralVariants(); - - // result should be null: - String annotationJson = all - .stream().filter(sv -> "EML4-ALK.E13A20.AB462411_2".equals(sv.getSite2Description())) - .findFirst().get() - .getAnnotationJson(); - String expectedAnnotationJson = null; - assertEquals(expectedAnnotationJson, annotationJson); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportTabDelimData.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportTabDelimData.java deleted file mode 100644 index 4c9f9f8ced8..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestImportTabDelimData.java +++ /dev/null @@ -1,510 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import java.io.BufferedReader; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Set; - -/** - * JUnit tests for ImportTabDelimData class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportTabDelimData { - - private final Set NON_CASE_ID_COLS = new HashSet<>(Arrays.asList( - "Gene Symbol", - "Hugo_Symbol", - "Entrez_Gene_Id", - "Locus ID", - "Cytoband", - "Composite.Element.Ref", - "geneset_id" - )); - - private int studyId; - private int geneticProfileId; - private int sample1; - private int sample2; - private int sample3; - private int sample4; - private int sample5; - private CancerStudy study; - - @Before - public void setUp() throws DaoException { - DaoCancerStudy.reCacheAll(); - DaoGeneOptimized.getInstance().reCache(); - ProgressMonitor.resetWarnings(); - - study = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub"); - studyId =study.getInternalId(); - - GeneticProfile newGeneticProfile = new GeneticProfile(); - newGeneticProfile.setCancerStudyId(studyId); - newGeneticProfile.setGeneticAlterationType(GeneticAlterationType.COPY_NUMBER_ALTERATION); - newGeneticProfile.setStableId("study_tcga_pub_test"); - newGeneticProfile.setProfileName("Barry CNA Results"); - newGeneticProfile.setDatatype("test"); - DaoGeneticProfile.addGeneticProfile(newGeneticProfile); - - geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_test").getGeneticProfileId(); - - sample1 = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-A1-A0SB-01").getInternalId(); - sample2 = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-A1-A0SD-01").getInternalId(); - sample3 = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-A1-A0SE-01").getInternalId(); - sample4 = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-A1-A0SF-01").getInternalId(); - sample5 = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "TCGA-A1-A0SG-01").getInternalId(); - } - - /** - * Test importing of cna_test.txt file. - * @throws Exception All Errors. - */ - @Test - public void testImportCnaDataBulkLoadOff() throws Exception { - - MySQLbulkLoader.bulkLoadOff(); - runImportCnaData(); - } - - /** - * Test importing of cna_test.txt file. - * @throws Exception All Errors. - */ - @Test - public void testImportCnaDataBulkLoadOn() throws Exception { - MySQLbulkLoader.bulkLoadOn(); - runImportCnaData(); - } - - private void runImportCnaData() throws DaoException, IOException{ - - DaoGeneticAlteration dao = DaoGeneticAlteration.getInstance(); - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - // the largest current true Entrez gene ID counts 8 digits - daoGene.addGene(new CanonicalGene(999999207, "TESTAKT1")); - daoGene.addGene(new CanonicalGene(999999208, "TESTAKT2")); - daoGene.addGene(new CanonicalGene(999910000, "TESTAKT3")); - daoGene.addGene(new CanonicalGene(999999369, "TESTARAF")); - daoGene.addGene(new CanonicalGene(999999472, "TESTATM")); - daoGene.addGene(new CanonicalGene(999999673, "TESTBRAF")); - daoGene.addGene(new CanonicalGene(999999672, "TESTBRCA1")); - daoGene.addGene(new CanonicalGene(999999675, "TESTBRCA2")); - - ProgressMonitor.setConsoleMode(false); - // TBD: change this to use getResourceAsStream() - File file = new File("src/test/resources/cna_test.txt"); - ImportTabDelimData parser = new ImportTabDelimData(file, "Barry", geneticProfileId, null, DaoGeneticAlteration.getInstance()); - int numLines = FileUtil.getNumLines(file); - parser.importData(numLines); - - String value = dao.getGeneticAlteration(geneticProfileId, sample1, 999999207); - assertEquals ("0", value); - value = dao.getGeneticAlteration(geneticProfileId, sample4, 999999207); - assertEquals ("-1", value); - value = dao.getGeneticAlteration(geneticProfileId, sample2, 999999207); - assertEquals ("0", value); - value = dao.getGeneticAlteration(geneticProfileId, sample2, 999910000); - assertEquals ("2", value); - value = dao.getGeneticAlteration(geneticProfileId, sample3, 999910000); - assertEquals ("2", value); - - int cnaStatus = Integer.parseInt(dao.getGeneticAlteration(geneticProfileId, sample3, 999910000)); - assertEquals(CopyNumberStatus.COPY_NUMBER_AMPLIFICATION, cnaStatus); - cnaStatus = Integer.parseInt(dao.getGeneticAlteration(geneticProfileId, sample2, 999910000)); - assertEquals(CopyNumberStatus.COPY_NUMBER_AMPLIFICATION, cnaStatus); - cnaStatus = Integer.parseInt(dao.getGeneticAlteration(geneticProfileId, sample4, 999999207)); - assertEquals(CopyNumberStatus.HEMIZYGOUS_DELETION, cnaStatus); - - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(studyId, "TCGA-A1-A0SB"); - Sample sample = DaoSample.getSampleByPatientAndSampleId(patient.getInternalId(), "TCGA-A1-A0SB-01"); - assertTrue(DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId)); - - patient = DaoPatient.getPatientByCancerStudyAndPatientId(studyId, "TCGA-A1-A0SJ"); - sample = DaoSample.getSampleByPatientAndSampleId(patient.getInternalId(), "TCGA-A1-A0SJ-01"); - assertTrue(DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId)); - - ArrayList caseIds = DaoSampleProfile.getAllSampleIdsInProfile(geneticProfileId); - assertEquals(14, caseIds.size()); - } - - /** - * Test importing of cna_test2.txt file. - * This is identical to cna_test.txt, except there is no target line. - * @throws Exception All Errors. - */ - @Test - public void testImportCnaData2BulkLoadOff() throws Exception { - // test with both values of MySQLbulkLoader.isBulkLoad() - MySQLbulkLoader.bulkLoadOff(); - runImportCnaData2(); - } - - /** - * Test importing of cna_test2.txt file. - * This is identical to cna_test.txt, except there is no target line. - * @throws Exception All Errors. - */ - @Test - public void testImportCnaData2BulkLoadOn() throws Exception { - // test with both values of MySQLbulkLoader.isBulkLoad() - MySQLbulkLoader.bulkLoadOn(); - runImportCnaData2(); - } - - private void runImportCnaData2() throws DaoException, IOException{ - - DaoGeneticAlteration dao = DaoGeneticAlteration.getInstance(); - - ProgressMonitor.setConsoleMode(false); - // TBD: change this to use getResourceAsStream() - File file = new File("src/test/resources/cna_test2.txt"); - ImportTabDelimData parser = new ImportTabDelimData(file, geneticProfileId, null, DaoGeneticAlteration.getInstance()); - int numLines = FileUtil.getNumLines(file); - parser.importData(numLines); - - String value = dao.getGeneticAlteration(geneticProfileId, sample1, 207); - assertEquals (value, "0"); - value = dao.getGeneticAlteration(geneticProfileId, sample4, 207); - assertEquals (value, "-1"); - value = dao.getGeneticAlteration(geneticProfileId, sample2, 207); - assertEquals (value, "0"); - value = dao.getGeneticAlteration(geneticProfileId, sample2, 10000); - assertEquals (value, "2"); - value = dao.getGeneticAlteration(geneticProfileId, sample3, 10000); - assertEquals (value, "2"); - - int cnaStatus = Integer.parseInt(dao.getGeneticAlteration(geneticProfileId, sample3, 10000)); - assertEquals(CopyNumberStatus.COPY_NUMBER_AMPLIFICATION, cnaStatus); - cnaStatus = Integer.parseInt(dao.getGeneticAlteration(geneticProfileId, sample2, 10000)); - assertEquals(CopyNumberStatus.COPY_NUMBER_AMPLIFICATION, cnaStatus); - cnaStatus = Integer.parseInt(dao.getGeneticAlteration(geneticProfileId, sample4, 207)); - assertEquals(CopyNumberStatus.HEMIZYGOUS_DELETION, cnaStatus); - - Patient patient = DaoPatient.getPatientByCancerStudyAndPatientId(studyId, "TCGA-A1-A0SB"); - Sample sample = DaoSample.getSampleByPatientAndSampleId(patient.getInternalId(), "TCGA-A1-A0SB-01"); - assertTrue(DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId)); - - patient = DaoPatient.getPatientByCancerStudyAndPatientId(studyId, "TCGA-A1-A0SJ"); - sample = DaoSample.getSampleByPatientAndSampleId(patient.getInternalId(), "TCGA-A1-A0SJ-01"); - assertTrue(DaoSampleProfile.sampleExistsInGeneticProfile(sample.getInternalId(), geneticProfileId)); - ArrayList sampleIds = DaoSampleProfile.getAllSampleIdsInProfile(geneticProfileId); - assertEquals(14, sampleIds.size()); - } - - /** - * Test importing of mrna_test file. - * @throws Exception All Errors. - */ - @Test - public void testImportmRnaData1BulkLoadOff() throws Exception { - // test with both values of MySQLbulkLoader.isBulkLoad() - MySQLbulkLoader.bulkLoadOff(); - runImportRnaData1(); - } - - /** - * Test importing of mrna_test file. - * @throws Exception All Errors. - */ - @Test - public void testImportmRnaData1BulkLoadOn() throws Exception { - // test with both values of MySQLbulkLoader.isBulkLoad() - MySQLbulkLoader.bulkLoadOn(); - runImportRnaData1(); - } - - private void runImportRnaData1() throws DaoException, IOException{ - - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - DaoGeneticAlteration dao = DaoGeneticAlteration.getInstance(); - - daoGene.addGene(new CanonicalGene(999999780, "A")); - daoGene.addGene(new CanonicalGene(999995982, "B")); - daoGene.addGene(new CanonicalGene(999993310, "C")); - daoGene.addGene(new CanonicalGene(999997849, "D")); - daoGene.addGene(new CanonicalGene(999992978, "E")); - daoGene.addGene(new CanonicalGene(999997067, "F")); - daoGene.addGene(new CanonicalGene(999911099, "G")); - daoGene.addGene(new CanonicalGene(999999675, "6352")); - - GeneticProfile geneticProfile = new GeneticProfile(); - - geneticProfile.setCancerStudyId(studyId); - geneticProfile.setStableId("gbm_mrna"); - geneticProfile.setGeneticAlterationType(GeneticAlterationType.MRNA_EXPRESSION); - geneticProfile.setDatatype("CONTINUOUS"); - geneticProfile.setProfileName("MRNA Data"); - geneticProfile.setProfileDescription("mRNA Data"); - DaoGeneticProfile.addGeneticProfile(geneticProfile); - - int newGeneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("gbm_mrna").getGeneticProfileId(); - - ProgressMonitor.setConsoleMode(true); - // TBD: change this to use getResourceAsStream() - File file = new File("src/test/resources/mrna_test.txt"); - addTestPatientAndSampleRecords(file); - ImportTabDelimData parser = new ImportTabDelimData(file, newGeneticProfileId, null, DaoGeneticAlteration.getInstance()); - int numLines = FileUtil.getNumLines(file); - parser.importData(numLines); - ConsoleUtil.showMessages(); - - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "DD639").getInternalId(); - String value = dao.getGeneticAlteration(newGeneticProfileId, sampleId, 999992978); - assertEquals ("2.01", value ); - - sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "DD638").getInternalId(); - value = dao.getGeneticAlteration(newGeneticProfileId, sampleId, 999997849); - assertEquals ("0.55", value ); - } - - - /** - * Test importing of data_expression file. - * @throws Exception All Errors. - */ - @Test - public void testImportmRnaData2() throws Exception { - MySQLbulkLoader.bulkLoadOn(); - - - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - DaoGeneticAlteration dao = DaoGeneticAlteration.getInstance(); - - //Gene with alias: - daoGene.addGene(makeGeneWithAlias(999997504, "TESTXK", "NA")); - //Other genes: - daoGene.addGene(new CanonicalGene(999999999, "TESTNAT1")); - - daoGene.addGene(new CanonicalGene(999997124, "TESTTNF")); - daoGene.addGene(new CanonicalGene(999991111, "TESTCHEK1")); - daoGene.addGene(new CanonicalGene(999999919, "TESTABCA1")); - // will get generated negative id: - daoGene.addGene(new CanonicalGene(-1, "TESTphosphoprotein")); - - GeneticProfile geneticProfile = new GeneticProfile(); - - geneticProfile.setCancerStudyId(studyId); - geneticProfile.setStableId("gbm_mrna"); - geneticProfile.setGeneticAlterationType(GeneticAlterationType.MRNA_EXPRESSION); - geneticProfile.setDatatype("CONTINUOUS"); - geneticProfile.setProfileName("MRNA Data"); - geneticProfile.setProfileDescription("mRNA Data"); - DaoGeneticProfile.addGeneticProfile(geneticProfile); - - int newGeneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("gbm_mrna").getGeneticProfileId(); - - ProgressMonitor.setConsoleMode(true); - // TBD: change this to use getResourceAsStream() - File file = new File("src/test/resources/tabDelimitedData/data_expression2.txt"); - addTestPatientAndSampleRecords(file); - ImportTabDelimData parser = new ImportTabDelimData(file, newGeneticProfileId, null, DaoGeneticAlteration.getInstance()); - int numLines = FileUtil.getNumLines(file); - parser.importData(numLines); - - // check if expected warnings are given: - ArrayList warnings = ProgressMonitor.getWarnings(); - int countDuplicatedRowWarnings = 0; - int countInvalidEntrez = 0; - int countSkippedWarnings = 0; - for (String warning: warnings) { - if (warning.contains("Duplicated row")) { - countDuplicatedRowWarnings++; - } - if (warning.contains("invalid Entrez_Id")) { - //invalid Entrez - countInvalidEntrez++; - } - if (warning.contains("Record will be skipped")) { - //Entrez is a valid number, but not found - countSkippedWarnings++; - } - } - //check that we have 11 warning messages: - assertEquals(4, countDuplicatedRowWarnings); - assertEquals(3, countInvalidEntrez); - assertEquals(4, countSkippedWarnings); - - Set geneticEntityIds = DaoGeneticAlteration.getEntityIdsInProfile(newGeneticProfileId); - // data will be loaded for 5 of the genes - assertEquals(5, geneticEntityIds.size()); - HashMap> dataMap = dao.getGeneticAlterationMapForEntityIds(newGeneticProfileId, geneticEntityIds); - assertEquals(5, dataMap.entrySet().size()); - - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "SAMPLE1").getInternalId(); - String value = dao.getGeneticAlteration(newGeneticProfileId, sampleId, 999997124); - assertEquals ("770", value ); - - sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "SAMPLE3").getInternalId(); - value = dao.getGeneticAlteration(newGeneticProfileId, sampleId, 999997124); - assertEquals ("220", value ); - - //gene should also be loaded via its alias "NA" as defined above: - sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "SAMPLE3").getInternalId(); - value = dao.getGeneticAlteration(newGeneticProfileId, sampleId, 999997504); - assertEquals ("9940", value ); - } - - - /** - * Test importing of data_rppa file. - * @throws Exception All Errors. - */ - @Test - public void testImportRppaData() throws Exception { - MySQLbulkLoader.bulkLoadOn(); - - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - DaoGeneticAlteration dao = DaoGeneticAlteration.getInstance(); - - //Genes with alias: - daoGene.addGene(makeGeneWithAlias(999999931,"TESTACACA", "TESTACC1")); - daoGene.addGene(makeGeneWithAlias(999999207,"TESTAKT1", "TESTAKT")); - daoGene.addGene(makeGeneWithAlias(999999597,"TESTSANDER", "TESTACC1")); - daoGene.addGene(makeGeneWithAlias(999997158,"TESTTP53BP1", "TEST53BP1")); - // test for NA being a special case in RPPA, and not the usual alias - daoGene.addGene(makeGeneWithAlias(999997504, "XK", "NA")); - //Other genes: - daoGene.addGene(new CanonicalGene(999999932,"TESTACACB")); - daoGene.addGene(new CanonicalGene(999999208,"TESTAKT2")); - daoGene.addGene(new CanonicalGene(999999369,"TESTARAF")); - daoGene.addGene(new CanonicalGene(999991978, "TESTEIF4EBP1")); - daoGene.addGene(new CanonicalGene(999995562,"TESTPRKAA1")); - daoGene.addGene(new CanonicalGene(999997531,"TESTYWHAE")); - daoGene.addGene(new CanonicalGene(999910000,"TESTAKT3")); - daoGene.addGene(new CanonicalGene(999995578,"TESTPRKCA")); - - - GeneticProfile geneticProfile = new GeneticProfile(); - - geneticProfile.setCancerStudyId(studyId); - geneticProfile.setStableId("gbm_rppa"); - geneticProfile.setGeneticAlterationType(GeneticAlterationType.PROTEIN_LEVEL); - geneticProfile.setDatatype("LOG2-VALUE"); - geneticProfile.setProfileName("RPPA Data"); - geneticProfile.setProfileDescription("RPPA Data"); - DaoGeneticProfile.addGeneticProfile(geneticProfile); - - int newGeneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("gbm_rppa").getGeneticProfileId(); - - ProgressMonitor.setConsoleMode(true); - // TBD: change this to use getResourceAsStream() - File file = new File("src/test/resources/tabDelimitedData/data_rppa.txt"); - addTestPatientAndSampleRecords(file); - ImportTabDelimData parser = new ImportTabDelimData(file, newGeneticProfileId, null, DaoGeneticAlteration.getInstance()); - int numLines = FileUtil.getNumLines(file); - parser.importData(numLines); - ConsoleUtil.showMessages(); - - int sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "SAMPLE1").getInternalId(); - String value = dao.getGeneticAlteration(newGeneticProfileId, sampleId, 999997531); - assertEquals ("1.5", value ); - - sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "SAMPLE4").getInternalId(); - value = dao.getGeneticAlteration(newGeneticProfileId, sampleId, 999997531); - assertEquals ("2", value ); - - sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "SAMPLE4").getInternalId(); - value = dao.getGeneticAlteration(newGeneticProfileId, sampleId, 999997504); - assertEquals ("NaN", value ); //"NA" is not expected to be stored because of workaround for bug in firehose. See also https://github.com/cBioPortal/cbioportal/issues/839#issuecomment-203523078 - - sampleId = DaoSample.getSampleByCancerStudyAndSampleId(studyId, "SAMPLE1").getInternalId(); - value = dao.getGeneticAlteration(newGeneticProfileId, sampleId, 999995578); - assertEquals ("1.5", value ); - } - - private CanonicalGene makeGeneWithAlias(int entrez, String symbol, String alias) { - CanonicalGene gene = new CanonicalGene(entrez, symbol); - Set aliases = new HashSet(); - aliases.add(alias); - gene.setAliases(aliases); - return gene; - } - - private void addTestPatientAndSampleRecords(File file) throws FileNotFoundException, IOException, DaoException { - // extract sample ids from header - FileReader reader = new FileReader(file); - BufferedReader buf = new BufferedReader(reader); - String headerLine = buf.readLine(); - String parts[] = headerLine.split("\t"); - List sampleIds = new ArrayList<>(); - for (int i=0; i. -*/ - -package org.mskcc.cbio.portal.scripts; - -// imports -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.User; -import org.mskcc.cbio.portal.dao.DaoUser; -import org.mskcc.cbio.portal.model.UserAuthorities; -import org.mskcc.cbio.portal.dao.DaoUserAuthorities; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -/** - * JUnit test for ImportUsers class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestImportUsers { - - @Test - public void testImportUsers() throws Exception{ - - // TBD: change this to use getResourceAsStream() - String args[] = {"src/test/resources/test-users.txt"}; - ImportUsers.main(args); - - User user = DaoUser.getUserByEmail("Dhorak@yahoo.com"); - assertTrue(user != null); - assertTrue(user.isEnabled()); - UserAuthorities authorities = DaoUserAuthorities.getUserAuthorities(user); - assertTrue(authorities.getAuthorities().contains("ROLE_MANAGER")); - - user = DaoUser.getUserByEmail("Lonnie@openid.org"); - assertTrue(user != null); - assertFalse(user.isEnabled()); - authorities = DaoUserAuthorities.getUserAuthorities(user); - assertEquals(authorities.getAuthorities().size(), 1); - DaoUserAuthorities.removeUserAuthorities(user); - assertEquals(DaoUserAuthorities.getUserAuthorities(user).getAuthorities().size(), 0); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestIntegrationTest.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestIntegrationTest.java deleted file mode 100644 index df70b972dd1..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestIntegrationTest.java +++ /dev/null @@ -1,482 +0,0 @@ -/* - * Copyright (c) 2016 - 2022 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; - -import java.io.File; -import java.io.FileInputStream; -import java.io.IOException; -import java.io.InputStream; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; - -import com.fasterxml.jackson.annotation.JsonIgnoreProperties; -import com.fasterxml.jackson.annotation.JsonProperty; -import com.fasterxml.jackson.core.JsonParseException; -import com.fasterxml.jackson.databind.JsonMappingException; -import com.fasterxml.jackson.databind.ObjectMapper; - -import org.cbioportal.model.GenericAssayData; -import org.cbioportal.model.GenesetMolecularData; -import org.cbioportal.model.StructuralVariant; -import org.cbioportal.model.StructuralVariantQuery; -import org.cbioportal.persistence.PersistenceConstants; -import org.cbioportal.service.GenericAssayService; -import org.cbioportal.service.GenesetDataService; -import org.cbioportal.service.StructuralVariantService; -import org.junit.Before; -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.dao.DaoGeneset; -import org.mskcc.cbio.portal.dao.DaoGeneticEntity; -import org.mskcc.cbio.portal.dao.DaoGistic; -import org.mskcc.cbio.portal.dao.DaoSampleList; -import org.mskcc.cbio.portal.dao.MySQLbulkLoader; -import org.mskcc.cbio.portal.dao.DaoMutation; -import org.mskcc.cbio.portal.dao.DaoTypeOfCancer; -import org.mskcc.cbio.portal.dao.DaoClinicalData; -import org.mskcc.cbio.portal.dao.DaoGeneticProfile; -import org.mskcc.cbio.portal.dao.DaoGeneticAlteration; -import org.mskcc.cbio.portal.dao.DaoClinicalAttributeMeta; -import org.mskcc.cbio.portal.model.ClinicalData; -import org.mskcc.cbio.portal.model.ClinicalAttribute; -import org.mskcc.cbio.portal.model.GeneticProfile; -import org.mskcc.cbio.portal.model.SampleList; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.TypeOfCancer; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.ExtendedMutation; -import org.mskcc.cbio.portal.model.Gistic; -import org.mskcc.cbio.portal.util.ConsoleUtil; -import org.mskcc.cbio.portal.util.ProgressMonitor; -import org.mskcc.cbio.portal.util.SpringUtil; -import org.mskcc.cbio.portal.util.TransactionalScripts; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.ApplicationContext; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/** - * Integration test using the same data that is used by validation system test - * "study_es_0". In the validation system test for "study_es_0" it is checked if - * the study can pass validation without any errors or warnings. Here we submit - * the same study to the data loading code and check that it also loads - * correctly and completely into the DB. - * - * @author Pieter Lukasse - */ - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/integrationTestScript.xml", "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestIntegrationTest { - - @Autowired - private ApplicationContext applicationContext; - - @Before - public void setUp() throws DaoException, JsonParseException, JsonMappingException, IOException, Exception { - SpringUtil.setApplicationContext(applicationContext); - ProgressMonitor.setConsoleMode(false); - ProgressMonitor.resetWarnings(); - DaoCancerStudy.reCacheAll(); - DaoGeneOptimized.getInstance().reCache(); - loadGenes(); - loadGenePanel(); - } - - /** - * Test to check if study_es_0 can be loaded correctly into DB. Should fail if - * any warning is given by loader classes or if expected data is not found in DB - * at the end of the test. - * - * @throws Throwable - */ - @Ignore("Skip TestIntegrationTest.testLoadStudyEs0 due to NullPointerException") - @Test - public void testLoadStudyEs0() throws Throwable { - try { - // === assumptions that we rely upon in the checks later on: ==== - // assumption 1: there are no clinical attributes at the start of the test: - assertEquals(0, DaoClinicalAttributeMeta.getAllMap().size()); - - // use this to get progress info/troubleshoot: - // ProgressMonitor.setConsoleMode(true); - - // ==== Load the data ==== - TransactionalScripts scripts = applicationContext.getBean(TransactionalScripts.class); - scripts.run(); - - // count warnings, but disregard warnings caused by - // gene_symbol_disambiguation.txt - ArrayList warnings = ProgressMonitor.getWarnings(); - int countWarnings = 0; - for (String warning : warnings) { - if (!warning.contains("resources/gene_symbol_disambiguation.txt")) { - countWarnings++; - } - } - // check that there are no warnings: - assertEquals(0, countWarnings); - - // check that ALL data really got into DB correctly. In the spirit of - // integration tests, - // we want to query via the same service layer as the one used by the web API - // here. - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId("study_es_0"); - assertEquals("Test study es_0", cancerStudy.getName()); - - // ===== Check MUTATION data ======== - List mutations = DaoMutation.getAllMutations(); - // check number of mutation records in the database - // 3 in seed_mini.sql + 33 study_es_0/data_mutations_extended.maf (2 silent ignored)) - // so we expect 34 records in DB: - assertEquals(34, mutations.size()); - - //===== Check STRUCTURAL VARIANT data ======== - // 45 structural variant events are imported, using 31 unique genes, using 39 samples - // Not all 31 genes have to be queried. BRAF is fused to many of the test genes. - List entrezGeneIds = new ArrayList(Arrays.asList(57670, 673, 8031, 5979, 27436, 238, 7113, 2078, 1956, 238, 5774, 2115, 7273)); - - // Add samples and molecular profile IDs - List sampleIds = new ArrayList(Arrays.asList("TCGA-A2-A04P-01", "TCGA-A1-A0SB-01", "TCGA-A1-A0SB-01", "TCGA-A2-A04P-01", "TCGA-A2-A04P-01", "TCGA-A1-A0SK-01", "TCGA-A2-A0CM-01", "TCGA-AR-A1AR-01", "TCGA-B6-A0WX-01", "TCGA-BH-A1F0-01", "TCGA-B6-A0I6-01", "TCGA-BH-A18V-01", "TCGA-BH-A18Q-01", "TCGA-BH-A18K-01", "TCGA-BH-A0HL-01", "TCGA-BH-A0E0-01", "TCGA-BH-A0RX-01", "TCGA-A7-A13D-01", "TCGA-BH-A0E6-01", "TCGA-AO-A0J4-01", "TCGA-A7-A0CE-01", "TCGA-A7-A13E-01", "TCGA-A7-A0DA-01", "TCGA-D8-A142-01", "TCGA-D8-A143-01", "TCGA-AQ-A04J-01", "TCGA-BH-A0HN-01", "TCGA-A2-A0T0-01", "TCGA-A2-A0YE-01", "TCGA-A2-A0YJ-01", "TCGA-A2-A0D0-01", "TCGA-A2-A04U-01", "TCGA-AO-A0J6-01", "TCGA-A2-A0YM-01", "TCGA-A2-A0D2-01", "TCGA-BH-A0B3-01", "TCGA-A2-A04Q-01", "TCGA-A2-A0SX-01", "TCGA-AO-A0JL-01")); - List geneticProfileStableIds = new ArrayList(); - geneticProfileStableIds = Collections.nCopies(sampleIds.size(), "study_es_0_structural_variants"); - - StructuralVariantService structuralVariantService = applicationContext.getBean(StructuralVariantService.class); - List noStructVars = Collections.emptyList(); - List structuralVariants = structuralVariantService.fetchStructuralVariants(geneticProfileStableIds, sampleIds, entrezGeneIds, noStructVars); - - // Check if all 45 structural variants are imported - assertEquals(45, structuralVariants.size()); - - //===== Check CNA data ======== - DaoGeneticAlteration daoGeneticAlteration = DaoGeneticAlteration.getInstance(); - ArrayList hugoGeneSymbols = new ArrayList(Arrays.asList("ACAP3","AGRN","ATAD3A","ATAD3B","ATAD3C","AURKAIP1","ERCC5")); - ArrayList entrezIds = new ArrayList(Arrays.asList(116983L, 375790L, 55210L, 83858L, 219293L, 54998L, 2073L)); - GeneticProfile geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId("study_es_0_gistic"); - int countAMP_DEL = 0; - int profileDataSize = 0; - for (Long entrezId : entrezIds) { - HashMap cnaProfileData = daoGeneticAlteration.getGeneticAlterationMap(geneticProfile.getGeneticProfileId(), entrezId); - profileDataSize += cnaProfileData.size(); - for (String profileData : cnaProfileData.values()) { - if (profileData.equals("2") || profileData.equals("-2")) { - countAMP_DEL++; - } - } - } - //there is data for 7 genes x 788 samples: - assertEquals(7*788, profileDataSize); - //there are 63 CNA entries that have value == 2 or value == -2; - assertEquals(63, countAMP_DEL); - - // log2CNA - geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId("study_es_0_log2CNA"); - int count0506 = 0; - profileDataSize = 0; - for (Long entrezId : entrezIds) { - HashMap cnaProfileData = daoGeneticAlteration.getGeneticAlterationMap(geneticProfile.getGeneticProfileId(), entrezId); - profileDataSize += cnaProfileData.size(); - for (String profileData : cnaProfileData.values()) { - double profileDataValue = Double.parseDouble(profileData); - if (profileDataValue > -0.6 && profileDataValue <= -0.5) { - count0506++; - } - } - } - //there is data for 7 genes x 778 samples: - assertEquals(7*778, profileDataSize); - // there are 273 CNA entries that have value between -0.6 and 0.5; - assertEquals(273, count0506); - - // ===== Check CLINICAL data ======== - // in total 7 clinical attributes should be added (5 "patient type" including sample count - // and 3 "sample type" attributes including MUTATION_COUNT and FRACTION_GENOME_ALTERED) - // see also "assumptions" section at start of this test case - int patientAttrCount = 0; - int sampleAttrCount = 0; - for (ClinicalAttribute ca : DaoClinicalAttributeMeta.getDataByStudy(cancerStudy.getInternalId())) { - if (ca.isPatientAttribute()) { - patientAttrCount++; - } - else { - sampleAttrCount++; - } - } - assertEquals(3, sampleAttrCount); - assertEquals(5, patientAttrCount); - - Boolean mutationCountExists = false; - Boolean fractionGenomeAlteredExists = false; - for (ClinicalData cd : DaoClinicalData.getSampleData(cancerStudy.getInternalId(), Arrays.asList("TCGA-A2-A04P-01"))) { - if (cd.getAttrId().equals("MUTATION_COUNT")) { - mutationCountExists = true; - assertEquals("TCGA-A2-A04P-01 should have one mutation in MUTATION_COUNT", "1", cd.getAttrVal()); - } else if (cd.getAttrId().equals("FRACTION_GENOME_ALTERED")) { - fractionGenomeAlteredExists = true; - assertEquals("TCGA-A2-A04P-01 should have 0.0 FRACTION_GENOME_ALTERED (the imported segment file spans a very small part of the genome)", - 0.0, Float.parseFloat(cd.getAttrVal()), 0.01); - } - } - assertTrue("MUTATION_COUNT sample clinical attribute should have been added for TCGA-A2-A04P-01", mutationCountExists); - assertTrue("FRACTION_GENOME_ALTERED sample clinical attribute should have been added for TCGA-A2-A04P-01", fractionGenomeAlteredExists); - - // ===== Check EXPRESSION data ======== - geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId("study_es_0_mrna"); - entrezIds = new ArrayList(Arrays.asList(90993L, 6205L, 9240L, 4313L, 23051L, 2073L)); - profileDataSize = 0; - int countGte2Lt3 = 0; - for (Long entrezId : entrezIds) { - HashMap cnaProfileData = daoGeneticAlteration.getGeneticAlterationMap(geneticProfile.getGeneticProfileId(), entrezId); - profileDataSize += cnaProfileData.size(); - for (String profileData : cnaProfileData.values()) { - double profileDataValue = Double.parseDouble(profileData); - if (profileDataValue >= 2.0 && profileDataValue < 3.0) { - countGte2Lt3++; - } - } - } - // there is data for 6 genes x 526 samples: - assertEquals(6 * 526, profileDataSize); - // there are 50 entries with value between 2.0 and 3.0 - assertEquals(50, countGte2Lt3); - - // ===== check cancer_type - TypeOfCancer cancerType = DaoTypeOfCancer.getTypeOfCancerById("brca-es0"); - assertEquals("Breast Invasive Carcinoma", cancerType.getName()); - - // ===== check gistic data - // servlet uses this query: - ArrayList gistics = DaoGistic.getAllGisticByCancerStudyId(cancerStudy.getInternalId()); - assertEquals(12, gistics.size()); - Gistic gisticChr10 = null, gisticChr20 = null; - for (Gistic gistic : gistics) { - if (gistic.getChromosome() == 20) { - // assert not yet set: - assertEquals(null, gisticChr20); - gisticChr20 = gistic; - } else if (gistic.getChromosome() == 10) { - // assert not yet set: - assertEquals(null, gisticChr10); - gisticChr10 = gistic; - } - } - assertEquals(8, gisticChr10.getGenes_in_ROI().size()); - assertEquals(1, gisticChr20.getGenes_in_ROI().size()); - assertEquals("ZNF217", gisticChr20.getGenes_in_ROI().get(0).getHugoGeneSymbolAllCaps()); - - // ===== check methylation - geneticProfile = DaoGeneticProfile.getGeneticProfileByStableId("study_es_0_methylation_hm27"); - entrezIds = new ArrayList(Arrays.asList(487L, 7871L, 3232L, 24145L, 3613L, 389L, 8148L, 283234L)); - profileDataSize = 0; - int count0506Pos = 0; - for (Long entrezId : entrezIds) { - HashMap cnaProfileData = daoGeneticAlteration.getGeneticAlterationMap(geneticProfile.getGeneticProfileId(), entrezId); - profileDataSize += cnaProfileData.size(); - for (String profileData : cnaProfileData.values()) { - double profileDataValue = Double.parseDouble(profileData); - if (profileDataValue >= 0.5 && profileDataValue < 0.6) { - count0506Pos++; - } - } - } - // there is data for 8 genes x 311 samples: - assertEquals(8 * 311, profileDataSize); - // simple check: there are 199 entries that have value between 0.5 and 0.6; - assertEquals(199, count0506Pos); - - // ===== check case lists - // study is set to generate global "all" case list, so check this: - // study has 2 lists: - DaoSampleList daoSampleList = new DaoSampleList(); - List sampleLists = daoSampleList.getAllSampleLists(cancerStudy.getInternalId()); - assertEquals(2, sampleLists.size()); - // for list "all" there are 826 samples expected: - SampleList allSampleList = daoSampleList.getSampleListByStableId("study_es_0_all"); - assertEquals("All cases in study", allSampleList.getName()); - - // there is a custom case list with 778 samples, and name "this is an optional custom case list" , - // so check this: - SampleList customSampleList = daoSampleList.getSampleListByStableId("study_es_0_custom"); - assertEquals("this is an optional custom case list", customSampleList.getName()); - - // ===== check mutational signature - String testMutationalSignatureStableIds = "mean_1"; - String testMutationalSignatureMolecularProfileIds = "study_es_0_mutational_signature"; - assertNotNull(DaoGeneticEntity.getGeneticEntityByStableId(testMutationalSignatureStableIds)); - // ENTITY_STABLE_ID name description TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 - // TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 - // TCGA-BH-A0HP-01 TCGA-BH-A18P-01 - // mean_1 ... ... ... 0.370266873 0.010373016 0.005419294 0.022753384 0.037687823 0.016708976 0.100042446 0.104214723 - GenericAssayService genericAssayService = applicationContext.getBean(GenericAssayService.class); - List mutationalSignatureData = genericAssayService.fetchGenericAssayData(Arrays.asList(testMutationalSignatureMolecularProfileIds), - Arrays.asList("TCGA-A1-A0SB-01", "TCGA-A1-A0SH-01"), Arrays.asList(testMutationalSignatureStableIds), PersistenceConstants.SUMMARY_PROJECTION); - assertEquals(2, mutationalSignatureData.size()); - assertEquals("0.370266873", mutationalSignatureData.get(0).getValue()); - assertEquals("0.022753384", mutationalSignatureData.get(1).getValue()); - - // ===== check GSVA data - // ... - String testGeneset = "GO_ATP_DEPENDENT_CHROMATIN_REMODELING"; - assertEquals(4, DaoGeneset.getGenesetByExternalId(testGeneset).getGenesetGeneIds().size()); - // scores: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 - // TCGA-A2-A04U-01 - // GO_ATP_DEPENDENT_CHROMATIN_REMODELING -0.293861251463613 -0.226227563676626 - // -0.546556962547473 -0.0811115513543749 0.56919171543422 - // using new api: - GenesetDataService genesetDataService = applicationContext.getBean(GenesetDataService.class); - List genesetData = genesetDataService.fetchGenesetData("study_es_0_gsva_scores", - "study_es_0_all", Arrays.asList(testGeneset)); - assertEquals(5, genesetData.size()); - - genesetData = genesetDataService.fetchGenesetData("study_es_0_gsva_scores", - Arrays.asList("TCGA-A1-A0SB-01", "TCGA-A1-A0SH-01"), Arrays.asList(testGeneset)); - assertEquals(2, genesetData.size()); - assertEquals(-0.293861251463613, Double.parseDouble(genesetData.get(0).getValue()), 0.00001); - assertEquals(-0.0811115513543749, Double.parseDouble(genesetData.get(1).getValue()), 0.00001); - - // ===== check treatment (profile) data - // ... - String testTreatment = "Irinotecan"; - assertNotNull(DaoGeneticEntity.getGeneticEntityByStableId(testTreatment)); - // ENTITY_STABLE_ID NAME DESCRIPTION URL TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 - // TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 - // TCGA-BH-A0HP-01 TCGA-BH-A18P-01 - // Irinotecan ... ... ... NA 0.080764666 NA 0.06704437 0.069568723 0.034992039 - // 0.740817904 0.209220141 - GenericAssayService treatmentDataService = applicationContext.getBean(GenericAssayService.class); - List treatmentData = treatmentDataService.getGenericAssayData("study_es_0_treatment_ic50", "study_es_0_all", Arrays.asList(testTreatment), PersistenceConstants.SUMMARY_PROJECTION); - assertEquals(8, treatmentData.size()); - assertEquals("NA", treatmentData.get(0).getValue()); - assertEquals(0.080764666, Double.parseDouble(treatmentData.get(1).getValue()), 0.00001); - - // ===== check study status - assertEquals(DaoCancerStudy.Status.AVAILABLE, DaoCancerStudy.getStatus("study_es_0")); - - } catch (Throwable t) { - ConsoleUtil.showWarnings(); - System.err.println("\nABORTED! " + t.toString()); - if (t.getMessage() == null) - t.printStackTrace(); - throw t; - } - } - - /** - * Loads the genes used by this test. - * - * @throws DaoException - * @throws IOException - * @throws JsonMappingException - * @throws JsonParseException - * - */ - private void loadGenes() throws DaoException, JsonParseException, JsonMappingException, IOException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - - // read the respective genes.json and genesaliases.json files from the system - // test study_es_0 to - // load the genes and genes aliases into the DB for which this scenario is - // written: - - Map> aliasesMap = new HashMap>(); - InputStream inputStream = new FileInputStream( - "src/test/scripts/test_data/api_json_system_tests/genesaliases.json"); - // parse json file: - ObjectMapper mapper = new ObjectMapper(); - TestGeneAlias[] genesAliases = mapper.readValue(inputStream, TestGeneAlias[].class); - - // build up aliases map: - for (TestGeneAlias testGeneAlias : genesAliases) { - Set aliases = aliasesMap.get(testGeneAlias.entrezGeneId); - if (aliases == null) { - aliases = new HashSet(); - aliasesMap.put(testGeneAlias.entrezGeneId, aliases); - } - aliases.add(testGeneAlias.geneAlias); - } - - inputStream = new FileInputStream("src/test/scripts/test_data/api_json_system_tests/genes.json"); - // parse json file: - mapper = new ObjectMapper(); - TestGene[] genes = mapper.readValue(inputStream, TestGene[].class); - - // add genes to db: - for (TestGene testGene : genes) { - CanonicalGene gene = new CanonicalGene(testGene.entrezGeneId, testGene.hugoGeneSymbol); - // get aliases from map: - gene.setAliases(aliasesMap.get(testGene.entrezGeneId)); - daoGene.addGene(gene); - } - - MySQLbulkLoader.flushAll(); - - } - - /** - * Loads a gene panel used by this test. - * - */ - private void loadGenePanel() throws Exception { - ImportGenePanel gp = new ImportGenePanel(null); - gp.setFile(new File("src/test/scripts/test_data/study_es_0/data_gene_panel_testpanel1.txt")); - gp.importData(); - gp.setFile(new File("src/test/scripts/test_data/study_es_0/data_gene_panel_testpanel2.txt")); - gp.importData(); - } - - @JsonIgnoreProperties(ignoreUnknown = true) - static class TestGene { - @JsonProperty("hugoGeneSymbol") - String hugoGeneSymbol; - @JsonProperty("entrezGeneId") - int entrezGeneId; - } - - @JsonIgnoreProperties(ignoreUnknown = true) - static class TestGeneAlias { - @JsonProperty("gene_alias") - String geneAlias; - @JsonProperty("entrezGeneId") - int entrezGeneId; - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestMutationFilter.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestMutationFilter.java deleted file mode 100644 index 691c1756431..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestMutationFilter.java +++ /dev/null @@ -1,193 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.scripts; - -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.ExtendedMutation; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -/** - * JUnit tests for MutationFilter class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestMutationFilter { - - @Before - public void setUp() throws DaoException { - // load genes - loadGene( "FOO", 3L ); - loadGene( "BAR", 234L ); - loadGene( "BIG", 234234L ); - } - - - @Test - public void testNoWhitelists( ){ - MutationFilter myMutationFilter = new MutationFilter( ); - alwaysRejectTheseMutations( myMutationFilter ); - - // accept all of these, because a MutationFilter without whitelists - // accepts all mutations other than Silent, LOH, Intron and Wildtype mutations - // not valid && somatic - nowTestAcceptMutation( - myMutationFilter, - true, - 4L, - "Unknown", // validationStatus, - "Unknown", // mutationStatus, - "Unknown" // mutationType - ); - - // valid but not somatic - nowTestAcceptMutation( - myMutationFilter, - true, - 4L, - "Valid", // validationStatus, - "Unknown", // mutationStatus, - "Unknown" // mutationType - ); - - // not valid but somatic - nowTestAcceptMutation( - myMutationFilter, - true, - 4L, - "Unknown", // validationStatus, - "Somatic", // mutationStatus, - "Unknown" // mutationType - ); - - // valid && somatic - nowTestAcceptMutation( - myMutationFilter, - true, - 4L, - "Valid", // validationStatus, - "Somatic", // mutationStatus, - "Unknown" // mutationType - ); - - // valid && somatic - // testing safeStringTest() - nowTestAcceptMutation( - myMutationFilter, - true, - 4L, - "vALid_as_hell", // validationStatus, - "SOMatic_for_sure", // mutationStatus, - "Unknown" // mutationType - ); - - } - - - private void nowTestAcceptMutation( - MutationFilter myMutationFilter, - boolean expectedResult, - long entrezGeneId, - String validationStatus, - String mutationStatus, - String mutationType - ) { - CanonicalGene gene = new CanonicalGene(entrezGeneId, "XXX"); - ExtendedMutation anExtendedMutation = new ExtendedMutation( - gene, // gene, - validationStatus, // validationStatus, - mutationStatus, // mutationStatus, - mutationType // mutationType - ); - if (expectedResult) { - assertTrue(myMutationFilter.acceptMutation(anExtendedMutation, null)); - } else { - assertFalse(myMutationFilter.acceptMutation(anExtendedMutation, null)); - } - } - - private void alwaysRejectTheseMutations(MutationFilter myMutationFilter){ - - // REJECT: Silent, LOH, Intron and Wildtype mutations - nowTestAcceptMutation( - myMutationFilter, - false, - 1L, - "Unknown", - "Unknown", - "Silent" - ); - nowTestAcceptMutation( - myMutationFilter, - false, - 1L, - "Unknown", - "Unknown", - "Intron" - ); - nowTestAcceptMutation( - myMutationFilter, - false, - 1L, - "Unknown", - "LOH", - "Unknown" - ); - nowTestAcceptMutation( - myMutationFilter, - false, - 1L, - "Unknown", - "Wildtype", - "Unknown" - ); - - } - - private void loadGene( String geneSymbol, long geneID ) throws DaoException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - daoGene.addGene(new CanonicalGene( geneID, geneSymbol )); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestNormalizeExpressionLevels.java b/core/src/test/java/org/mskcc/cbio/portal/scripts/TestNormalizeExpressionLevels.java deleted file mode 100644 index 0fd871ef871..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/scripts/TestNormalizeExpressionLevels.java +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal.scripts; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.*; - -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import java.io.BufferedReader; -import java.io.InputStreamReader; -import java.net.URL; -import java.util.ArrayList; - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestNormalizeExpressionLevels { - - private String validationFile; - private String[] args; - - @Before - public void initialize() { - URL url = this.getClass().getResource("/correct_data_mRNA_ZbyNorm.txt"); - validationFile = url.getFile().toString(); - - URL url1 = TestNormalizeExpressionLevels.class.getResource("/test_all_thresholded.by_genes.txt"); - URL url2 = TestNormalizeExpressionLevels.class.getResource("/test_PR_GDAC_CANCER.medianexp.txt"); - URL url3 = TestNormalizeExpressionLevels.class.getResource("/data_mRNA_ZbyNorm.txt"); - - args = new String[] { - url1.getFile().toString(), - url2.getFile().toString(), - url3.getFile().toString(), - NormalizeExpressionLevels.TCGA_NORMAL_SUFFIX, "4" }; - } - - // TBD: change this to use getResourceAsStream() - - @Test - public void testNormalizeExpressionLevels() { - - try { - - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - daoGene.addGene(new CanonicalGene(65985, "AACS")); - daoGene.addGene(new CanonicalGene(63916, "ELMO2")); - daoGene.addGene(new CanonicalGene(9240, "PNMA1")); - daoGene.addGene(new CanonicalGene(6205, "RPS11")); - daoGene.addGene(new CanonicalGene(7157, "TP53")); - daoGene.addGene(new CanonicalGene(367, "AR")); - NormalizeExpressionLevels.main(args); - // compare with correct - String line; - Process p = Runtime.getRuntime().exec( - "diff" + " " + validationFile + " " + args[2]); - BufferedReader input = new BufferedReader(new InputStreamReader( - p.getInputStream())); - while ((line = input.readLine()) != null) { - assertEquals("", line); - } - input.close(); - - } catch (Exception e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - - assertTrue(NormalizeExpressionLevels.isNormal("TCGA-A7-A0CG-11A-11D-A011-01")); - assertFalse(NormalizeExpressionLevels.isNormal("TCGA-A7-A0CG-01A-11D-A011-01")); - } - - @Test - public void testJoin() { - ArrayList l = new ArrayList(); - l.add("out"); - l.add("of"); - l.add("order"); - assertEquals("out-of-order", NormalizeExpressionLevels.join(l, "-")); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/servlet/MyPrintWriter.java b/core/src/test/java/org/mskcc/cbio/portal/servlet/MyPrintWriter.java deleted file mode 100644 index 4a351a5fca3..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/servlet/MyPrintWriter.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.StringWriter; - -/** - * A JUnit-related class required for NullHttpServletResponse. - */ -public class MyPrintWriter extends java.io.PrintWriter { - public MyPrintWriter(StringWriter myStringWriter) { - super(myStringWriter); - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/servlet/NullHttpServletRequest.java b/core/src/test/java/org/mskcc/cbio/portal/servlet/NullHttpServletRequest.java deleted file mode 100644 index bc8419e35e2..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/servlet/NullHttpServletRequest.java +++ /dev/null @@ -1,242 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.UnsupportedEncodingException; -import java.security.Principal; -import java.util.Collection; -import java.util.Enumeration; -import java.util.Hashtable; -import java.util.Locale; -import java.util.Map; - -import javax.servlet.ServletRequest; -import javax.servlet.ServletResponse; -import javax.servlet.ServletException; -import javax.servlet.ServletContext; -import javax.servlet.RequestDispatcher; -import javax.servlet.ServletInputStream; -import javax.servlet.DispatcherType; -import javax.servlet.AsyncContext; -import javax.servlet.http.Cookie; -import javax.servlet.http.Part; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import javax.servlet.http.HttpSession; - -/** - * Useful for unit testing code that uses HttpServletRequest. - * From http://www.jguru.com/faq/view.jsp?EID=110660 - */ -public class NullHttpServletRequest implements HttpServletRequest{ - private Hashtable parameters = new Hashtable(); - - public void setParameter(String key, String value) { - parameters.put(key, value); - } - - public String getParameter(String key) { - return (String)this.parameters.get(key); - } - - public Enumeration getParameterNames(){ - return this.parameters.keys(); - } - - public Cookie[] getCookies() {return null;} - public String getMethod(){return null;} - public String getRequestURI(){return null;} - public String getServletPath(){return null;} - public String getPathInfo(){return null;} - public String getPathTranslated(){return null;} - public String getQueryString(){return null;} - public String getRemoteUser(){return null;} - public String getAuthType(){return null;} - public String getHeader(String name){return null;} - public int getIntHeader(String name){return 0;} - public long getDateHeader(String name){return 0;} - public Enumeration getHeaderNames(){return null;} - public HttpSession getSession(boolean create){return null;} - public String getRequestedSessionId(){return null;} - public boolean isRequestedSessionIdValid(){return false;} - public boolean isRequestedSessionIdFromCookie(){return false;} - public boolean isRequestedSessionIdFromUrl(){return false;} - public int getContentLength(){return 0;} - public String getContentType(){return null;} - public String getProtocol(){return null;} - public String getScheme(){return null;} - public String getServerName(){return null;} - public int getServerPort(){return 0;} - public String getRemoteAddr(){return null;} - public String getRemoteHost(){return null;} - public String getRealPath(String path){return null;} - public ServletInputStream getInputStream() throws IOException{return null;} - public String[] getParameterValues(String name){return null;} - public Enumeration getAttributeNames(){return null;} - public Object getAttribute(String name){return null;} - public HttpSession getSession(){return null;} - public BufferedReader getReader() throws IOException{return null;} - public String getCharacterEncoding(){return null;} - public void setAttribute(String name, Object o) {} - public boolean isRequestedSessionIdFromURL() {return false;} - - public Locale getLocale() { - // TODO Auto-generated method stub - return null; - } - - public Enumeration getLocales() { - // TODO Auto-generated method stub - return null; - } - - public Map getParameterMap() { - // TODO Auto-generated method stub - return null; - } - - public RequestDispatcher getRequestDispatcher(String arg0) { - // TODO Auto-generated method stub - return null; - } - - public boolean isSecure() { - // TODO Auto-generated method stub - return false; - } - - public void removeAttribute(String arg0) { - // TODO Auto-generated method stub - - } - - public void setCharacterEncoding(String arg0) throws UnsupportedEncodingException { - // TODO Auto-generated method stub - - } - - public String getContextPath() { - // TODO Auto-generated method stub - return null; - } - - public Enumeration getHeaders(String arg0) { - // TODO Auto-generated method stub - return null; - } - - public StringBuffer getRequestURL() { - // TODO Auto-generated method stub - return null; - } - - public Principal getUserPrincipal() { - // TODO Auto-generated method stub - return null; - } - - public boolean isUserInRole(String arg0) { - // TODO Auto-generated method stub - return false; - } - - public Part getPart(String s) { - return null; - } - - public Collection getParts() { - return null; - } - - public void logout() throws ServletException { - } - - public void login(String username, String password) { - } - - public boolean authenticate(HttpServletResponse response) throws IOException, ServletException { - return false; - } - - public String changeSessionId() { - return null; - } - - public DispatcherType getDispatcherType() { - return null; - } - - public AsyncContext getAsyncContext() { - return null; - } - - public boolean isAsyncSupported() { - return false; - } - - public boolean isAsyncStarted() { - return false; - } - - public AsyncContext startAsync(ServletRequest request,ServletResponse response) { - return null; - } - - public AsyncContext startAsync() { - return null; - } - - public ServletContext getServletContext() { - return null; - } - - public int getLocalPort() { - return 0; - } - - public String getLocalAddr() { - return null; - } - - public String getLocalName() { - return null; - } - - public int getRemotePort() { - return 0; - } - public long getContentLengthLong(){return 0;} - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/servlet/NullHttpServletResponse.java b/core/src/test/java/org/mskcc/cbio/portal/servlet/NullHttpServletResponse.java deleted file mode 100644 index 8bca89597eb..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/servlet/NullHttpServletResponse.java +++ /dev/null @@ -1,244 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -/* - * from: http://www.java2s.com/Open-Source/Java-Document/Content-Management-System/ - * TransferCM/com/methodhead/shim/NullHttpServletResponse.java.htm - */ - -/* - * Copyright (C) 2006 Methodhead Software LLC. All rights reserved. - * - * This file is part of TransferCM. - * - * TransferCM is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free Software - * Foundation; either version 2 of the License, or (at your option) any later - * version. - * - * TransferCM is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more - * details. - * - * You should have received a copy of the GNU General Public License along with - * TransferCM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, - * Fifth Floor, Boston, MA 02110-1301 USA - */ - -import javax.servlet.http.HttpServletResponse; -import javax.servlet.ServletResponse; -import javax.servlet.ServletOutputStream; -import java.util.Locale; -import java.util.Collection; -import java.io.PrintWriter; -import java.io.StringWriter; - -import javax.servlet.http.Cookie; - -/** - * A servlet response that discards any output. All methods of this class are - * empty implementations. - */ -public class NullHttpServletResponse implements HttpServletResponse { - - // constructors ///////////////////////////////////////////////////////////// - - public NullHttpServletResponse() { - servletOutputStream = new NullServletOutputStream(); - } - - // constants //////////////////////////////////////////////////////////////// - - // classes ////////////////////////////////////////////////////////////////// - - /** - * An OutputStream implementation for JUnit tests. - */ - private static class NullServletOutputStream extends - ServletOutputStream { - - public void write(int b) { - // do nothing - } - public boolean isReady() { - return false; - } - } - - // methods ////////////////////////////////////////////////////////////////// - - public void flushBuffer() { - } - - public int getBufferSize() { - return 0; - } - - public String getCharacterEncoding() { - return ""; - } - - public Locale getLocale() { - return Locale.getDefault(); - } - - public ServletOutputStream getOutputStream() { - return servletOutputStream; - } - - public PrintWriter getWriter() { - return new MyPrintWriter( myStringWriter ); -// return new PrintWriter( System.err ); -// was return new PrintWriter(servletOutputStream); - } - - public boolean isCommitted() { - return false; - } - - public void reset() { - } - - public void resetBuffer() { - } - - public void setBufferSize(int size) { - } - - public void setContentLength(int len) { - } - - public void setContentType(String type) { - } - - public void setLocale(Locale loc) { - } - - public void setResponse(ServletResponse response) { - } - - public void addCookie(Cookie cookie) { - } - - public void addDateHeader(String name, long date) { - } - - public void addHeader(String name, String value) { - } - - public void addIntHeader(String name, int value) { - } - - public boolean containsHeader(String name) { - return false; - } - - public String encodeRedirectUrl(String url) { - return url; - } - - public String encodeRedirectURL(String url) { - return url; - } - - public String encodeUrl(String url) { - return url; - } - - public String encodeURL(String url) { - return url; - } - - public void sendError(int sc) { - } - - public void sendError(int sc, String msg) { - } - - public void sendRedirect(String location) { - } - - public void setDateHeader(String name, long date) { - } - - public void setHeader(String name, String value) { - } - - public void setIntHeader(String name, int value) { - } - - public void setStatus(int sc) { - } - - public void setStatus(int sc, String sm) { - } - - public Collection getHeaderNames() { - return null; - } - - public Collection getHeaders(String name) { - return null; - } - - public int getStatus() { - return 0; - } - - public void setContentLengthLong(long len) { - } - - public void setCharacterEncoding(String s) { - } - - public String getContentType() { - return null; - } - - // properties /////////////////////////////////////////////////////////////// - - private ServletOutputStream servletOutputStream = null; // new NullServletOutputStream();; - private StringWriter myStringWriter = new StringWriter(); - - public String getOutput(){ - return myStringWriter.toString(); - } - - public String getHeader(String name) { - return null; - } - - // attributes /////////////////////////////////////////////////////////////// -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/servlet/TestClinicalJSON.java b/core/src/test/java/org/mskcc/cbio/portal/servlet/TestClinicalJSON.java deleted file mode 100644 index 1605c861022..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/servlet/TestClinicalJSON.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - - -import org.mskcc.cbio.portal.model.ClinicalData; -import org.mskcc.cbio.portal.model.ClinicalAttribute; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletRequestWrapper; -import java.util.Map; - -import static org.junit.Assert.*; - -public class TestClinicalJSON { - - public void testReflectToMap() { - ClinicalJSON clinicalJSON = new ClinicalJSON(); - - Map map = clinicalJSON.reflectToMap( new ClinicalData(-1, "caseId", "attrId", "attrVal") ); - - assertTrue( map.get("attr_id").equals("attrId") ); - assertTrue( map.get("attr_val").equals("attrVal") ); -// assertTrue( map.get("cancer_study_id").equals("-1") ); - assertTrue( map.get("case_id").equals("caseId") ); - - map = clinicalJSON.reflectToMap(new ClinicalAttribute("attrId", "displayName", "description", "datatype", true, "1", 1)); - assertTrue( map.get("attr_id").equals("attrId") ); - assertTrue( map.get("display_name").equals("displayName") ); - assertTrue( map.get("description").equals("description") ); - assertTrue( map.get("datatype").equals("datatype") ); - - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/servlet/TestGisticJSON.java b/core/src/test/java/org/mskcc/cbio/portal/servlet/TestGisticJSON.java deleted file mode 100644 index 86db4b7cb70..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/servlet/TestGisticJSON.java +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - - -import org.mskcc.cbio.portal.dao.DaoGistic; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.Gistic; -import org.mskcc.cbio.portal.servlet.GisticJSON; - -import javax.servlet.http.HttpServletRequest; -import java.util.ArrayList; -import java.util.Map; - -import static org.junit.Assert.*; - -public class TestGisticJSON { - - public void testGisticJSON() { - - // test JSON map - ArrayList genes = new ArrayList(); - - CanonicalGene niki = new CanonicalGene("NIKI"); - CanonicalGene jj = new CanonicalGene("JJ"); - CanonicalGene tp53 = new CanonicalGene("TP53"); - - genes.add(niki); - genes.add(jj); - genes.add(tp53); - - Gistic gistic = new Gistic(1, 7, "1q11.1", 10000, 10001, 0.05d, genes, Gistic.AMPLIFIED); - - Map map = null; - map = GisticJSON.Gistic_toMap(gistic); - - assertTrue(map.get("chromosome").equals(7)); - assertTrue(map.get("peakStart").equals(10000)); - assertTrue(map.get("peakEnd").equals(10001)); -// System.out.println(map.get("genes_in_ROI")); -// assertTrue(map.get("genes_in_ROI").equals(genes)); - assertTrue(map.get("qval").equals(0.05d)); - assertTrue(map.get("ampdel").equals(Gistic.AMPLIFIED)); - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/servlet/TestMutSigJSON.java b/core/src/test/java/org/mskcc/cbio/portal/servlet/TestMutSigJSON.java deleted file mode 100644 index 4da7c31b358..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/servlet/TestMutSigJSON.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; - -import java.util.HashSet; - -import org.junit.Test; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.MutSig; - -import static org.junit.Assert.*; - -public class TestMutSigJSON { - - @Test - public void testMutSigtoMap() - { - // make a stupid test - CanonicalGene canonicalGene = new CanonicalGene(12, "hello", new HashSet()); - - // test one of the values of the map. probably a waste of time - MutSig mutsig = new MutSig(1, canonicalGene, 1, 502500, 20, 1E-11f, 1E-8f); - assertTrue(!MutSigJSON.MutSigtoMap(mutsig).isEmpty()); - assertTrue(MutSigJSON.MutSigtoMap(mutsig).get("qval").equals(1E-8f)); - - // should now reject because qval is too large - mutsig = new MutSig(1, canonicalGene, 1, 502500, 20, 12f, 12f); - assertFalse(MutSigJSON.MutSigtoMap(mutsig).isEmpty()); - - // sometimes the qvals comes in a funny format - mutsig = new MutSig(1, canonicalGene, 1, 502500, 20, 1E-8f, 1E-8f); - assertTrue(!MutSigJSON.MutSigtoMap((mutsig)).isEmpty()); - assertTrue(MutSigJSON.MutSigtoMap(mutsig).get("qval").equals(1E-8f)); - - // untested : functionality of DoGet method - // - // this is the most important part! - // to test this we would have to do some work to simulate an httpServletRequest - // I've been doing this from the browser - } -} - diff --git a/core/src/test/java/org/mskcc/cbio/portal/servlet/TestWebService.java b/core/src/test/java/org/mskcc/cbio/portal/servlet/TestWebService.java deleted file mode 100644 index c3ea8b20954..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/servlet/TestWebService.java +++ /dev/null @@ -1,389 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.servlet; - -import java.io.*; -import java.util.*; - -import javax.servlet.ServletException; - -import org.junit.After; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; -import org.springframework.security.core.userdetails.UserDetails; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; -import static org.easymock.EasyMock.*; - -/** - * JUnit test for WebService class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestWebService { - - private CancerStudy publicCancerStudy; - private CancerStudy privateCancerStudy1; - private CancerStudy privateCancerStudy2; - private User user1; - private User user2; - private String cleartextPwd; - private GeneticProfile privateGeneticProfile; - private GeneticProfile publicGeneticProfile; - - private AccessControl oldAccessControl; - - @Before - public void setUp() throws DaoException { - oldAccessControl = SpringUtil.getAccessControl(); - - // This is truly awful, but basically mocks the access control. The API for - // isAccessibleCancerStudy is a bit silly, as it's intended to be boolean - // but is really a list. So we mock with a non-empty list with a null in it. - - AccessControl control = createMock(AccessControl.class); - List mockTrue = new ArrayList(); - mockTrue.add(null); - UserDetails mockUserDetails = createMock(UserDetails.class); - expect(control.isAccessibleCancerStudy(isA(String.class))).andStubReturn(mockTrue); - expect(control.getUserDetails()).andStubReturn(mockUserDetails); - replay(control); - new SpringUtil().setAccessControl(control); - - DaoCancerStudy.reCacheAll(); - } - - @After - public void tearDown() { - new SpringUtil().setAccessControl(oldAccessControl); - } - - @Test - public void testWebServiceGetTypesOfCancer() throws Exception { - - WebService webService = new WebService(); - - // null request - NullHttpServletRequest aNullHttpServletRequest = new NullHttpServletRequest(); - NullHttpServletResponse aNullHttpServletResponse = new NullHttpServletResponse(); - webService.processClient( aNullHttpServletRequest, aNullHttpServletResponse ); - assertTrue( aNullHttpServletResponse.getOutput().contains("Error: you must specify a cmd parameter.\n") ); - - checkRequest( mkStringArray( WebService.CMD, "getTypesOfCancer" ), - mkStringArray( "type_of_cancer_id\tname", "acbc\tAdenoid Cystic Breast Cancer" ) ); - } - - - @Test - public void testWebServiceBadCommand() throws Exception { - - // bad command - checkRequest( mkStringArray( WebService.CMD, "badCommand" ), "Error: 'badCommand' not a valid command." ); - - /* TBD: Recoded when we provide granualar access - // public studies - String[] publicStudies = mkStringArray( "cancer_study_id\tname\tdescription", - studyLine( publicCancerStudy ) ); - checkRequest( mkStringArray( WebService.CMD, "getCancerStudies" ), publicStudies ); - */ - } - - @Test - public void testWebServiceGetGeneticProfilesNoStudy() throws Exception { - - // no cancer_study_id for "getGeneticProfiles" - checkRequest( mkStringArray( WebService.CMD, "getGeneticProfiles" ), - mkStringArray( "Error: " + "No cancer study (cancer_study_id), or genetic profile (genetic_profile_id) " + - "or case list or (case_list) case set (case_set_id) provided by request. " + - "Please reformulate request." ) ); - } - - @Test - public void testWebServiceGetGeneticProfiles() throws Exception { - - - checkRequest( mkStringArray( WebService.CMD, "getGeneticProfiles", - WebService.CANCER_STUDY_ID, CancerStudy.NO_SUCH_STUDY +"" ), - mkStringArray( "Error: " + "Problem when identifying a cancer study for the request." ) ); - } - - @Test - public void testWebService() throws Exception { - - // getGeneticProfiles for public study - String[] publicGenePro = mkStringArray( - "genetic_profile_id\tgenetic_profile_name\tgenetic_profile_description\t" + - "cancer_study_id\tgenetic_alteration_type\tshow_profile_in_analysis_tab", - "study_tcga_pub_gistic\tPutative copy-number alterations from GISTIC\tPutative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification.\t1\tCOPY_NUMBER_ALTERATION\ttrue"); - - checkRequest( mkStringArray( - WebService.CMD, "getGeneticProfiles", - WebService.CANCER_STUDY_ID, "study_tcga_pub"), - publicGenePro ); - - /* TBD: Recoded when we provide granualar access - // with bad key - checkRequest( mkStringArray( - WebService.CMD, "getGeneticProfiles", - WebService.SECRET_KEY, "not_good_key", - WebService.CANCER_STUDY_ID, publicCancerStudy.getCancerStudyStableId()), - publicGenePro ); - - // missing email address for private study - String deniedError = "Error: User cannot access the cancer study called 'name'." + - "Please provide credentials to access private data."; - checkRequest( mkStringArray( WebService.CMD, "getGeneticProfiles", WebService.CANCER_STUDY_ID, "study1" ), - mkStringArray( deniedError ) ); - - // denied for "getGeneticProfiles"; no key - checkRequest( mkStringArray( - WebService.CMD, "getGeneticProfiles", - WebService.CANCER_STUDY_ID, "study1", - WebService.EMAIL_ADDRESS, user1.getEmail() - ), - mkStringArray( deniedError ) ); - - // denied for "getGeneticProfiles"; bad key - checkRequest( mkStringArray( - WebService.CMD, "getGeneticProfiles", - WebService.SECRET_KEY, "not_good_key", - WebService.CANCER_STUDY_ID, "study1", - WebService.EMAIL_ADDRESS, user1.getEmail() - ), - mkStringArray( deniedError ) ); - - // getGeneticProfiles works for private study - String[] privateGenePro1 = mkStringArray( "genetic_profile_id\tgenetic_profile_name\tgenetic_profile_description" - + "\tcancer_study_id\tgenetic_alteration_type\tshow_profile_in_analysis_tab", - "stableIdPrivate\tprofileName\tprofileDescription\t1\tCOPY_NUMBER_ALTERATION\ttrue"); - checkRequest( mkStringArray( - WebService.CMD, "getGeneticProfiles", - WebService.SECRET_KEY, cleartextPwd, - WebService.CANCER_STUDY_ID, "study1", - WebService.EMAIL_ADDRESS, user1.getEmail() - ), - mkStringArray( privateGenePro1 ) ); - */ - } - - private void checkRequest( String[] requestFields, String... responseLines ) throws IOException, ServletException{ - checkRequest( false, requestFields, responseLines ); - } - - /** - * check a request - * @param debug if true, print servlet's output - * @param requestFields array embedded with name, value pairs for the httpRequest - * @param responseLines array of expected responses - * @throws IOException - * @throws ServletException - */ - private void checkRequest( boolean debug, String[] requestFields, String... responseLines ) throws IOException, ServletException{ - WebService webService = new WebService(); - webService.init(); - NullHttpServletRequest aNullHttpServletRequest = new NullHttpServletRequest(); - NullHttpServletResponse aNullHttpServletResponse = new NullHttpServletResponse(); - for( int i=0; i studies; - NullHttpServletRequest aNullHttpServletRequest = new NullHttpServletRequest(); - studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); - assertEquals( 0, studies.size() ); - } - - @Test - public void testGetCancerStudyIDInvalid() throws Exception { - - // example getGeneticProfiles request - HashSet studies; - NullHttpServletRequest aNullHttpServletRequest = new NullHttpServletRequest(); - aNullHttpServletRequest.setParameter(WebService.CANCER_STUDY_ID, "HI"); - studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); - assertTrue(studies.isEmpty()); - } - - @Test - public void testGetCancerStudyIDNumeric() throws Exception { - - HashSet studies; - NullHttpServletRequest aNullHttpServletRequest = new NullHttpServletRequest(); - aNullHttpServletRequest.setParameter(WebService.CANCER_STUDY_ID, "33"); - studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); - assertTrue(studies.isEmpty()); - } - - @Test - public void testGetCancerStudyIDs() throws Exception { - - HashSet studies; - NullHttpServletRequest aNullHttpServletRequest = new NullHttpServletRequest(); - aNullHttpServletRequest.setParameter(WebService.CANCER_STUDY_ID, "study_tcga_pub"); - studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); - assertEquals( 1, studies.size() ); - assertTrue( studies.contains("study_tcga_pub")); - } - - @Test - public void testGetCancerStudySetIDs() throws Exception { - // example getProfileData, getMutationData, ... request with existing CASE_SET_ID - HashSet studies; - NullHttpServletRequest aNullHttpServletRequest = new NullHttpServletRequest(); - aNullHttpServletRequest = new NullHttpServletRequest(); - aNullHttpServletRequest.setParameter(WebService.CASE_SET_ID, "HI"); - studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); - assertTrue(studies.isEmpty()); - } - - @Test - public void testGetCancerStudySetIDList() throws Exception { - - HashSet studies; - NullHttpServletRequest aNullHttpServletRequest = new NullHttpServletRequest(); - - CancerStudy study = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub"); - DaoSampleList daoSampleList = new DaoSampleList(); - SampleList sampleList = new SampleList(); - sampleList.setName("Name0"); - sampleList.setDescription("Description0"); - sampleList.setStableId("stable_0"); - sampleList.setCancerStudyId(study.getInternalId()); - sampleList.setSampleListCategory(SampleListCategory.ALL_CASES_WITH_CNA_DATA); - ArrayList samples = new ArrayList(); - samples.add("TCGA-1-S1"); - samples.add("TCGA-2-S1"); - sampleList.setSampleList(samples); - daoSampleList.addSampleList(sampleList); - - aNullHttpServletRequest.setParameter(WebService.CASE_SET_ID, "stable_0" ); - studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); - assertFalse(studies.isEmpty()); - } - - @Test - public void testGetCancerStudySetProfileID() throws Exception { - - HashSet studies; - NullHttpServletRequest aNullHttpServletRequest = new NullHttpServletRequest(); - - // test situations when patient_set_id not provided, but profile_id is, as by getProfileData - aNullHttpServletRequest = new NullHttpServletRequest(); - aNullHttpServletRequest.setParameter(WebService.GENETIC_PROFILE_ID, "study_tcga_pub_mutations" ); - studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); - assertEquals( 1, studies.size() ); - assertTrue( studies.contains("study_tcga_pub")); - } - - @Test - public void testGetCancerStudySetPrivateProfile() throws Exception { - - HashSet studies; - NullHttpServletRequest aNullHttpServletRequest = new NullHttpServletRequest(); - - // test situation when multiple profile_ids provided, as by getProfileData - aNullHttpServletRequest = new NullHttpServletRequest(); - - // test situations when patient_set_id not provided, but profile_id is, as by getProfileData - aNullHttpServletRequest = new NullHttpServletRequest(); - aNullHttpServletRequest.setParameter(WebService.GENETIC_PROFILE_ID, "study_tcga_pub_gistic,study_tcga_pub_mutations" ); - studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); - assertEquals( 1, studies.size() ); - assertTrue( studies.contains("study_tcga_pub")); - - // Removed old test logic for public and private profiles since (a) the tests only check the private - // profiles, and (b) this requires better test data - -// aNullHttpServletRequest.setParameter( -// WebService.MOLECULAR_PROFILE_ID, privateGeneticProfile.getStableId() + "," -// + publicGeneticProfile.getStableId() ); -// studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); -// assertTrue( studies.contains(DaoCancerStudy.getCancerStudyByInternalId -// (privateGeneticProfile.getCancerStudyId()).getCancerStudyStableId())); -// assertTrue( studies.contains(DaoCancerStudy.getCancerStudyByInternalId -// (privateGeneticProfile.getCancerStudyId()).getCancerStudyStableId())); - } - - // TODO Add these originally commented out tests - // test situation when a case_list is explicitly provided, as in getClinicalData, etc. -// String c1 = "TCGA-12345"; -// DaoCaseProfile.addSampleProfile( c1, publicGeneticProfile.getGeneticProfileId()); -// aNullHttpServletRequest = new NullHttpServletRequest(); -// aNullHttpServletRequest.setParameter( WebService.CASE_LIST, c1 ); -// studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); -// assertTrue( studies.contains(DaoCancerStudy.getCancerStudyByInternalId -// (publicGeneticProfile.getCancerStudyId()).getCancerStudyStableId())); -// -// String c2 = "TCGA-54321"; -// DaoCaseProfile.addSampleProfile( c2, privateGeneticProfile.getGeneticProfileId() ); -// aNullHttpServletRequest = new NullHttpServletRequest(); -// aNullHttpServletRequest.setParameter( WebService.CASE_LIST, c1 + "," + c2 ); -// studies = WebserviceParserUtils.getCancerStudyIDs(aNullHttpServletRequest); -// assertTrue( studies.contains(DaoCancerStudy.getCancerStudyByInternalId -// (privateGeneticProfile.getCancerStudyId()).getCancerStudyStableId())); -// assertTrue( studies.contains(DaoCancerStudy.getCancerStudyByInternalId -// (publicGeneticProfile.getCancerStudyId()).getCancerStudyStableId())); - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/stats/TestFisherExact.java b/core/src/test/java/org/mskcc/cbio/portal/stats/TestFisherExact.java deleted file mode 100644 index 06377765dfe..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/stats/TestFisherExact.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.stats; - -import junit.framework.TestCase; -import org.mskcc.cbio.portal.stats.FisherExact; - -public class TestFisherExact extends TestCase { - - public void testFisherExact() { - FisherExact fisher = new FisherExact(43 + 2 + 17 + 7); - double p = fisher.getTwoTailedP(43, 2, 17, 7); - assertEquals(0.006653, p, 0.00001); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/stats/TestOddsRatio.java b/core/src/test/java/org/mskcc/cbio/portal/stats/TestOddsRatio.java deleted file mode 100644 index 108fdb5785e..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/stats/TestOddsRatio.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.stats; - -import junit.framework.TestCase; -import org.mskcc.cbio.portal.model.ProfileData; -import org.mskcc.cbio.portal.model.ProfileDataSummary; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintSpecification; -import org.mskcc.cbio.portal.util.ProfileMerger; -import org.mskcc.cbio.io.WebFileConnect; -import org.mskcc.cbio.portal.util.ZScoreUtil; -import org.mskcc.cbio.portal.model.GeneticProfile; -import org.mskcc.cbio.portal.model.GeneticAlterationType; - -import java.io.File; -import java.io.IOException; -import java.util.ArrayList; - -public class TestOddsRatio extends TestCase { - - public void testFisherExact() throws IOException { - ArrayList profileList = new ArrayList(); - - GeneticProfile profile0 = - new GeneticProfile("gbm", 1, - GeneticAlterationType.COPY_NUMBER_ALTERATION, "DISCRETE", - "CNA", "CNA", true); - // TBD: change this to use getResourceAsStream() - String matrix0[][] = WebFileConnect.retrieveMatrix(new File("target/test-classes/cna_sample2.txt")); - ProfileData data0 = new ProfileData(profile0, matrix0); - profileList.add(data0); - - String[] genes = { "BRCA1", "BRCA2" }; - OncoPrintSpecification anOncoPrintSpecification = new OncoPrintSpecification( genes ); - - ProfileMerger merger = new ProfileMerger(profileList); - ProfileData mergedProfile = merger.getMergedProfile(); - ProfileDataSummary pDataSummary = new ProfileDataSummary(mergedProfile, anOncoPrintSpecification, - ZScoreUtil.Z_SCORE_THRESHOLD_DEFAULT, ZScoreUtil.RPPA_SCORE_THRESHOLD_DEFAULT); - - OddsRatio oddsRatio = new OddsRatio(pDataSummary, "BRCA1", "BRCA2"); - double oddsRatioValue = oddsRatio.getOddsRatio(); - double p = oddsRatio.getTwoTailedP(); - assertEquals(0.16666, oddsRatioValue, 0.0001); - assertEquals(0.1698, p, 0.0001); - //System.out.println (oddsRatio.getRCommand()); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestAccessControl.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestAccessControl.java deleted file mode 100644 index c0ee81bba39..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestAccessControl.java +++ /dev/null @@ -1,140 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - - -import java.io.IOException; - -import org.junit.Test; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.User; - -/** - * JUnit test for AccessControl class. - */ -public class TestAccessControl { - - private CancerStudy publicCancerStudy; - private CancerStudy privateCancerStudy1; - private CancerStudy privateCancerStudy2; - private User user1; - private User user2; - private String clearTextKey; - - @Test - public void testVariousUtilities() throws Exception { - /* TBD: Recoded when we provide granualar access - - setUpDBMS(); - - UserAccessRight userAccessRight = new UserAccessRight(user1.getEmail(), privateCancerStudy1.getInternalId()); - DaoUserAccessRight.addUserAccessRight(userAccessRight); - - userAccessRight = new UserAccessRight(user2.getEmail(), privateCancerStudy2.getInternalId()); - DaoUserAccessRight.addUserAccessRight(userAccessRight); - - // test accessControl.checkAccess - // assertFalse( accessControl.checkAccess( "", "", CancerStudy.NO_SUCH_STUDY ) ); - - // test access to a public study (id = 3) - assertTrue(accessControl.checkAccess("", "", publicCancerStudy.getCancerStudyStableId())); - assertTrue(accessControl.checkAccess(null, null, publicCancerStudy.getCancerStudyStableId())); - assertTrue(accessControl.checkAccess("blah", "blah", publicCancerStudy.getCancerStudyStableId())); - assertFalse(accessControl.checkAccess("", clearTextKey + "_NOT_KEY", - privateCancerStudy1.getCancerStudyStableId())); - - assertTrue(accessControl.checkAccess(user1.getEmail(), clearTextKey, - privateCancerStudy1.getCancerStudyStableId())); - assertTrue(accessControl.checkAccess(user2.getEmail(), clearTextKey, - privateCancerStudy2.getCancerStudyStableId())); - assertFalse(accessControl.checkAccess(user2.getEmail(), clearTextKey, - privateCancerStudy1.getCancerStudyStableId())); - assertFalse(accessControl.checkAccess(user1.getEmail(), clearTextKey, - privateCancerStudy2.getCancerStudyStableId())); - - // test accessControl.getCancerStudies - // just public studies - String studies = accessControl.getCancerStudies("no such email", clearTextKey + "_NOT_KEY"); - assertEquals("cancer_study_id\tname\tdescription\nstudy3\tpublic name\tdescription\n", studies); - - studies = accessControl.getCancerStudies(null, null); - assertEquals("cancer_study_id\tname\tdescription\nstudy3\tpublic name\tdescription\n", studies); - - // public and private studies - studies = accessControl.getCancerStudies(user1.getEmail(), clearTextKey); - assertEquals("cancer_study_id\tname\tdescription\n" + - "study1\tname\tdescription\nstudy3\tpublic name\tdescription\n", - studies); - - // no studies; delete the public one - DaoCancerStudy.deleteCancerStudy(publicCancerStudy.getInternalId()); - try { - studies = accessControl.getCancerStudies("no such email", clearTextKey); - fail("Should throw ProtocolException."); - } catch (ProtocolException e) { - assertEquals("No cancer studies accessible; either provide credentials to access private studies, " + - "or ask administrator to load public ones.\n", - e.getMsg()); - - } - */ - } - - private void setUpDBMS() throws DaoException, IOException { - /* - ResetDatabase.resetDatabase(); - - user1 = new User("artg@gmail.com", "Arthur", true); - DaoUser.addUser(user1); - user2 = new User("joe@gmail.com", "J", true); - DaoUser.addUser(user2); - - // load cancers - ImportTypesOfCancers.load(new File("/cancers.txt")); - - // make a couple of private studies (1 and 2) - privateCancerStudy1 = new CancerStudy("name", "description", "study1", "brca", false); - DaoCancerStudy.addCancerStudy(privateCancerStudy1); // 1 - privateCancerStudy2 = new CancerStudy("other name", "other description", "study2", "brca", false); - DaoCancerStudy.addCancerStudy(privateCancerStudy2); // 2 - - publicCancerStudy = new CancerStudy("public name", "description", "study3", "brca", true); - DaoCancerStudy.addCancerStudy(publicCancerStudy); // 3 - - clearTextKey = "aSecretKey"; - accessControl.createSecretKey(clearTextKey); - accessControl.createSecretKey("another Example key"); - */ - } -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestCancerStudyReader.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestCancerStudyReader.java deleted file mode 100644 index 2587aa8cea8..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestCancerStudyReader.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.File; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -/** - * JUnit test for CancerStudyReader class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestCancerStudyReader { - - @Test - public void testCancerStudyReaderCancerType() throws Exception { - - File file = new File("src/test/resources/cancer_study.txt"); - CancerStudy cancerStudy = CancerStudyReader.loadCancerStudy( file ); - - CancerStudy expectedCancerStudy = DaoCancerStudy.getCancerStudyByStableId( "test_brca" ); - assertEquals(expectedCancerStudy, cancerStudy); - // TBD: change this to use getResourceAsStream() - file = new File("src/test/resources/cancer_study_bad.txt"); - try { - cancerStudy = CancerStudyReader.loadCancerStudy( file ); - fail( "Should have thrown DaoException." ); - } catch (Exception e) { - assertEquals("brcaxxx is not a supported cancer type.", e.getMessage()); - } - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestCascadeSortOfMatrix.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestCascadeSortOfMatrix.java deleted file mode 100644 index 6c0928636eb..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestCascadeSortOfMatrix.java +++ /dev/null @@ -1,301 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import static org.junit.Assert.assertArrayEquals; - -import java.util.Comparator; -import java.util.Formatter; -import java.util.Locale; -import java.util.Random; - -import org.junit.Test; -import org.mskcc.cbio.portal.model.GeneticEvent; -import org.mskcc.cbio.portal.model.GeneticEventComparator; -import org.mskcc.cbio.portal.model.GeneticEventImpl; - -public class TestCascadeSortOfMatrix { - - // TODO: add a performance test with a 10000 x 10000 matrix - - @Test - public void testSortWithGeneticEvents() { - - GeneticEventComparator aGeneticEventComparator = new GeneticEventComparator( - GeneticEventComparator.defaultCNASortOrder(), - GeneticEventComparator.defaultMRNASortOrder(), - GeneticEventComparator.defaultRPPASortOrder(), - GeneticEventComparator.defaultMutationsSortOrder()); - - CascadeSortOfMatrix c = new CascadeSortOfMatrix( aGeneticEventComparator ); - - // make a matrix OF GeneticEventImpls - int rows = 3; - int cols = 4; - GeneticEvent[][] m= new GeneticEvent[rows][cols]; - for( int i=0; i { - - public int compare(Object o1, Object o2) { - return ( ((Integer)o1).compareTo( (Integer)o2 ) ); - } - - public boolean equals(Object obj) { - return (false); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestCategoryLabelReader.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestCategoryLabelReader.java deleted file mode 100644 index d91bf898d26..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestCategoryLabelReader.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.File; -import java.io.FileInputStream; -import java.io.IOException; -import java.util.Map; - -import static org.junit.Assert.*; - -public class TestCategoryLabelReader -{ - /** - * Tests the utility method of the CategoryLabelReader class. - * - * @throws java.io.IOException IO Error. - */ - public void testCategoryLabelReader() throws IOException - { - // TBD: change this to use getResourceAsStream() - File file = new File("target/test-classes/test_readable_categories.txt"); - FileInputStream fin = new FileInputStream (file); - - Map labelMap = CategoryLabelReader.readCategoryLabelMap(fin); - - // verify the size of the map - assertEquals(8, labelMap.size()); - - // verify some of the key,value pairs - - assertEquals (labelMap.get("TUMORSTAGE"), - "Tumor Stage"); - - assertEquals (labelMap.get("ProgressionFreeStatus"), - "Progression Free Status"); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestExtendedMutationUtil.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestExtendedMutationUtil.java deleted file mode 100644 index 95659e0b8a3..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestExtendedMutationUtil.java +++ /dev/null @@ -1,96 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.junit.runners.Parameterized; - -import java.util.Arrays; -import java.util.Collection; - -import static org.junit.Assert.assertEquals; - -/** - * Created by Hongxin Zhang on 3/20/18. - */ -@RunWith(Parameterized.class) -public class TestExtendedMutationUtil { - private String proteinChange; - private String proteinStart; - private String proteinEnd; - - public TestExtendedMutationUtil(String proteinChange, String proteinStart, String proteinEnd) { - this.proteinChange = proteinChange; - this.proteinStart = proteinStart; - this.proteinEnd = proteinEnd; - } - - @Parameterized.Parameters - public static Collection getParameters() { - return Arrays.asList( - new String[][]{ - // any - {"449_514mut", "449", "514"}, - - // Missense variant - {"V600E", "600", "600"}, - {"F53_Q53delinsL", "53", "53"}, - {"D842_I843delinsIM", "842", "843"}, - {"IK744KI", "744", "745"}, - - // feature_truncating variant - {"D286_L292trunc", "286", "292"}, - - // frameshift event - {"N457Mfs*22", "457", "457"}, - {"*1069Ffs*5", "1069", "1069"}, - - // inframe event - {"T417_D419delinsI", "417", "419"}, - {"E102_I103del", "102", "103"}, - {"V600delinsYM", "600", "600"}, - {"I744_K745delinsKIPVAI", "744", "745"}, - {"762_823ins", "762", "823"}, - {"V561_I562insER", "561", "562"}, - {"IK744KIPVAI", "744", "745"}, - {"IK744K", "744", "745"}, - {"IKG744KIPVAI", "744", "746"}, - {"P68_C77dup", "68", "77"}, - - // start_lost, - {"M1I", "1", "1"}, - {"M1?", "1", "1"}, - - // NA - {"BCR-ABL1 Fusion", "-1", "-1"}, - - // Splice - {"X405_splice", "405", "405"}, - {"405_splice", "405", "405"}, - {"405splice", "405", "405"}, - {"X405_A500splice", "405", "500"}, - {"X405_A500_splice", "405", "500"}, - {"405_500_splice", "405", "500"}, - {"405_500splice", "405", "500"}, - - // Stop gained - {"R2109*", "2109", "2109"}, - - // Synonymous Variant - {"G500G", "500", "500"}, - - }); - } - - @Test - public void getProteinPosStart() throws Exception { - int start = ExtendedMutationUtil.getProteinPosStart("", proteinChange); - assertEquals(proteinChange + ": Protein start should be " + proteinStart + ", but got: " + start, proteinStart, Integer.toString(start)); - } - - @Test - public void getProteinPosEnd() throws Exception { - int end = ExtendedMutationUtil.getProteinPosEnd("", proteinChange); - assertEquals(proteinChange + ": Protein end should be " + proteinEnd + ", but got: " + end, proteinEnd, Integer.toString(end)); - } - -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestGenePanelUtil.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestGenePanelUtil.java deleted file mode 100644 index 3dc43350dfc..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestGenePanelUtil.java +++ /dev/null @@ -1,249 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import java.util.Arrays; -import java.util.HashSet; -import java.util.Properties; -import java.util.Set; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; -import static org.mskcc.cbio.portal.util.GenePanelUtil.*; - - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = {"classpath:/applicationContext-dao.xml"}) -@Rollback -@Transactional -public class TestGenePanelUtil { - - CanonicalGene otor = makeGene(13321, 56914, "OTOR", makeAliases("FDP", "MIAL1")); - CanonicalGene cadm2 = makeGene(20001, 253559, "CADM2", makeAliases("IGSF4D", "Necl-3", "NECL3", "SynCAM 2", "synCAM2")); - CanonicalGene msh3 = makeGene(3573, 4437, "MSH3", makeAliases("MRP1", "DUP", "FAP4")); - CanonicalGene p2ry10 = makeGene(10455, 27334, "P2RY10", makeAliases("P2Y10", "LYPSR2")); - CanonicalGene adamts20 = makeGene(15009, 80070, "ADAMTS20", makeAliases("ADAM-TS20", "GON-1", "ADAMTS-20")); - CanonicalGene kat2a = makeGene(2154, 2648, "KAT2A", makeAliases("hGCN5", "GCN5", "GCN5L2", "PCAF-b")); - CanonicalGene myb = makeGene(3674, 4602, "MYB", makeAliases("c-myb_CDS", "Cmyb", "c-myb", "efg")); - CanonicalGene npipb15 = makeGene(24049, 440348, "NPIPB15", makeAliases("A-761H5.4", "NPIPL2")); - CanonicalGene dtnb = makeGene(1492, 1838, "DTNB", null); - CanonicalGene ablim1 = makeGene(3239, 3983, "ABLIM1", makeAliases("LIMAB1", "abLIM-1", "ABLIM", "LIMATIN")); - CanonicalGene piezo1 = makeGene(7609, 9780, "PIEZO1", makeAliases("FAM38A", "Mib", "LMPH3", "DHS")); - CanonicalGene fgfr3 = makeGene(1827, 2261, "FGFR3", makeAliases("JTK4", "HSFGFR3EX", "ACH", "CEK2", "CD333")); - - @Test - public void testExtractPropertyValueStableId() { - Properties p1 = new Properties(); - p1.setProperty("stable_id", "TESTPANEL1"); - String actual = extractPropertyValue("stable_id", p1, true); - String expected = "TESTPANEL1"; - assertEquals(expected, actual); - } - - @Test - public void testExtractPropertyValueDescription() { - Properties p1 = new Properties(); - p1.setProperty("description", "Example gene panel meta file for testing purposes."); - String actual = extractPropertyValue("description", p1, false); - String expected = "Example gene panel meta file for testing purposes."; - assertEquals(expected, actual); - } - - @Test - public void testExtractPropertyValueGeneList() { - Properties p1 = new Properties(); - p1.setProperty("gene_list", "ABLIM1\tADAMTS20\tCADM2\tDTNB\tKAT2A\tMSH3\tMYB\tNPIPB15\tOTOR\tP2RY10"); - String actual = extractPropertyValue("gene_list", p1, true); - String expected = "ABLIM1\tADAMTS20\tCADM2\tDTNB\tKAT2A\tMSH3\tMYB\tNPIPB15\tOTOR\tP2RY10"; - assertEquals(expected, actual); - } - - @Test(expected = NullPointerException.class) - public void testExtractPropertyValueUnknownPropertyName() { - Properties p1 = new Properties(); - extractPropertyValue("stable_id", p1, true); - } - - @Test(expected = IllegalArgumentException.class) - public void testExtractPropertyValueNoPropertyValue() { - Properties p1 = new Properties(); - p1.setProperty("stable_id", ""); - extractPropertyValue("stable_id", p1, true); - } - - @Test(expected = IllegalArgumentException.class) - public void testExtractPropertyValueNoSpaceAllowed() { - Properties p1 = new Properties(); - p1.setProperty("description", "Example gene panel meta file for testing purposes."); - extractPropertyValue("description", p1, true); - } - - @Test - public void testExtractGenesAllowEmptyGenePanel() { - Properties p = new Properties(); - p.setProperty("gene_list", ""); - Set expected = makeGeneSet(); - Set actual = extractGenes(p, true); - assertEquals(expected, actual); - } - - @Test(expected = IllegalArgumentException.class) - public void testExtractGenesDisallowEmptyGenePanel() { - Properties p = new Properties(); - p.setProperty("gene_list", ""); - extractGenes(p, false); - } - - @Test - public void testExtractGenesMissingTab() { - Properties p1 = new Properties(); - p1.setProperty("gene_list", "ABLIM1 ADAMTS20\tCADM2\tDTNB\tKAT2A\tMSH3\tMYB\tNPIPB15\tOTOR\tP2RY10"); - Set actual = extractGenes(p1, false); - assertNull(actual); - } - - @Test - public void testExtractGenesNonEmptyGenePanel() { - Properties p1 = new Properties(); - p1.setProperty("gene_list", "ABLIM1\tADAMTS20\tCADM2\tDTNB\tKAT2A\tMSH3\tMYB\tNPIPB15\tOTOR\tP2RY10"); - Set expected = makeGeneSet(otor, cadm2, msh3, p2ry10, adamts20, kat2a, myb, npipb15, dtnb, ablim1); - Set actual = extractGenes(p1, false); - assertEquals(expected, actual); - } - - @Test - public void testExtractGenesAliasedGenes() { - Properties p1 = new Properties(); - p1.setProperty("gene_list", "LIMAB1\tGON-1\tSynCAM 2\tDTNB\tPCAF-b\tDUP\tc-myb\tA-761H5.4\tMIAL1\tLYPSR2"); - Set expected = makeGeneSet(otor, cadm2, msh3, p2ry10, adamts20, kat2a, myb, npipb15, dtnb, ablim1); - Set actual = extractGenes(p1, false); - assertEquals(expected, actual); - } - - @Test - public void testExtractGenesUnknownParseableLong() { - String NOT_A_GENE = "111111111111"; - Properties p1 = new Properties(); - p1.setProperty("gene_list", NOT_A_GENE + "\tADAMTS20\tCADM2\tDTNB\tKAT2A\tMSH3\tMYB\tNPIPB15\tOTOR\tP2RY10"); - Set actual = extractGenes(p1, false); - assertNull(actual); - } - - @Test - public void testExtractGenesUnknownUnparseableLong() { - String NOT_A_GENE = "HELLOWORLD!"; - Properties p1 = new Properties(); - p1.setProperty("gene_list", NOT_A_GENE + "\tADAMTS20\tCADM2\tDTNB\tKAT2A\tMSH3\tMYB\tNPIPB15\tOTOR\tP2RY10"); - Set actual = extractGenes(p1, false); - assertNull(actual); - } - - @Test - public void testGetAddRemoveAEqualsB() { - Pair expected = new Pair( - makeGeneSet(), - makeGeneSet() - ); - Pair actual = getAddRemove( - makeGeneSet(otor, cadm2, msh3, p2ry10, adamts20, kat2a, myb, npipb15, dtnb, ablim1), - makeGeneSet(otor, cadm2, msh3, p2ry10, adamts20, kat2a, myb, npipb15, dtnb, ablim1) - ); - assertEquals(expected, actual); - } - - @Test - public void testGetAddRemoveEmptyIntersection() { - Pair expected = new Pair( - makeGeneSet(adamts20, ablim1), - makeGeneSet(piezo1, fgfr3)); - Pair actual = getAddRemove( - makeGeneSet(adamts20, ablim1), - makeGeneSet(piezo1, fgfr3)); - assertEquals(expected, actual); - } - - @Test - public void testGetAddRemoveAOrBEmpty() { - Pair expected = new Pair( - makeGeneSet(), - makeGeneSet(otor, cadm2, msh3, p2ry10, adamts20, kat2a, myb, npipb15, dtnb, ablim1) - ); - Pair actual = getAddRemove( - makeGeneSet(), - makeGeneSet(otor, cadm2, msh3, p2ry10, adamts20, kat2a, myb, npipb15, dtnb, ablim1) - ); - assertEquals(expected, actual); - } - - @Test - public void testGetAddRemoveIntersectAndOnlyAdd() { - Pair expected = new Pair( - makeGeneSet(otor, cadm2, msh3, p2ry10, kat2a, myb, npipb15, dtnb), - makeGeneSet() - ); - Pair actual = getAddRemove( - makeGeneSet(otor, cadm2, msh3, p2ry10, adamts20, kat2a, myb, npipb15, dtnb, ablim1), - makeGeneSet(adamts20, ablim1) - ); - assertEquals(expected, actual); - } - - @Test - public void testGetAddRemoveIntersectAndOnlyRemove() { - Pair expected = new Pair( - makeGeneSet(), - makeGeneSet(otor, cadm2, msh3, p2ry10, kat2a, myb, npipb15, dtnb) - ); - Pair actual = getAddRemove( - makeGeneSet(adamts20, ablim1), - makeGeneSet(otor, cadm2, msh3, p2ry10, adamts20, kat2a, myb, npipb15, dtnb, ablim1) - ); - assertEquals(expected, actual); - } - - @Test - public void testGetAddRemoveIntersectAndAndRemove() { - Pair expected = new Pair( - makeGeneSet(adamts20, ablim1), - makeGeneSet(piezo1, fgfr3) - ); - Pair actual = getAddRemove( - makeGeneSet(otor, cadm2, msh3, p2ry10, adamts20, kat2a, myb, npipb15, dtnb, ablim1), - makeGeneSet(otor, cadm2, piezo1, msh3, fgfr3, p2ry10, kat2a, myb, npipb15, dtnb) - ); - assertEquals(expected, actual); - } - - @Test - public void testPair() { - Pair expected = new Pair( - makeGeneSet(ablim1, adamts20, fgfr3, piezo1), - makeGeneSet() - ); - Pair actual = new Pair( - makeGeneSet(ablim1, fgfr3, adamts20, piezo1), - makeGeneSet() - ); - assertEquals(expected, actual); - } - - private HashSet makeAliases(String... aliases) { - return new HashSet<>(Arrays.asList(aliases)); - } - - private HashSet makeGeneSet(CanonicalGene... genes) { - return new HashSet<>(Arrays.asList(genes)); - } - - private CanonicalGene makeGene(int geneticEntityId, long entrezGeneId, String hugoGeneSymbol, Set aliases) { - CanonicalGene gene = new CanonicalGene(geneticEntityId, entrezGeneId, hugoGeneSymbol, aliases); - gene.setType("protein-coding"); - return gene; - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestGeneSetReader.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestGeneSetReader.java deleted file mode 100644 index 6b84a810118..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestGeneSetReader.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - - -import org.mskcc.cbio.portal.model.SetOfGenes; - -import java.io.File; -import java.io.IOException; -import java.io.FileInputStream; -import java.util.ArrayList; - -import static org.junit.Assert.*; - -/** - * JUnit test for the Gene Set Reader. - */ -public class TestGeneSetReader { - - /** - * Tests the Gene Set Reader Class. - * - * @throws java.io.IOException IO Error. - */ - public void testGeneSetReader() throws IOException { - // TBD: change this to use getResourceAsStream() - File file = new File("target/test-classes/gene_sets.txt"); - FileInputStream fin = new FileInputStream (file); - - ArrayList geneSetList = GeneSetReader.readGeneSets(fin); - assertEquals (23, geneSetList.size()); - - // Verify that the correct # of genes are inserted - assertEquals ("Prostate Cancer: AR Signaling (10 genes)", - geneSetList.get(1).getName()); - assertEquals ("Prostate Cancer: AR and steroid synthesis enzymes (30 genes)", - geneSetList.get(2).getName()); - - assertEquals ("SOX9 RAN TNK2 EP300 PXN NCOA2 AR NRIP1 NCOR1 NCOR2", - geneSetList.get(1).getGeneList()); - } -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestGeneticProfileReader.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestGeneticProfileReader.java deleted file mode 100644 index fbae1cdbfcc..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestGeneticProfileReader.java +++ /dev/null @@ -1,97 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneticProfile; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.GeneticProfile; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.io.File; -import java.io.IOException; -import java.util.ArrayList; - -/** - * JUnit test for GeneticProfileReader class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestGeneticProfileReader { - - @Test - public void testGeneticProfileReader() throws Exception { - // load cancers - // TBD: change this to use getResourceAsStream() - // TBD: change this to use getResourceAsStream() - - File file = new File("target/test-classes/genetic_profile_test.txt"); - GeneticProfile geneticProfile = GeneticProfileReader.loadGeneticProfile(file); - assertEquals("Barry", geneticProfile.getTargetLine()); - assertEquals("Blah Blah.", geneticProfile.getProfileDescription()); - - CancerStudy cancerStudy = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub"); - ArrayList list = DaoGeneticProfile.getAllGeneticProfiles - (cancerStudy.getInternalId()); - geneticProfile = list.get(0); - - assertEquals(cancerStudy.getInternalId(), geneticProfile.getCancerStudyId()); - assertEquals("Putative copy-number alterations from GISTIC", geneticProfile.getProfileName()); - assertEquals(GeneticAlterationType.COPY_NUMBER_ALTERATION, - geneticProfile.getGeneticAlterationType()); - } - - @Test(expected = RuntimeException.class) - public void testTreatmentResponseMissingPivotField() throws IOException, DaoException { - File file = new File("target/test-classes/test_meta_treatment_missing_pivot.txt"); - GeneticProfileReader.loadGeneticProfile(file); - } - - @Test(expected = RuntimeException.class) - public void testTreatmentResponseMissingSortOrderField() throws IOException, DaoException { - File file = new File("target/test-classes/test_meta_treatment_missing_sortorder.txt"); - GeneticProfileReader.loadGeneticProfile(file); - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestGisticReader.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestGisticReader.java deleted file mode 100644 index c99b7232e92..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestGisticReader.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.IOException; - -import org.junit.Test; -import org.mskcc.cbio.portal.dao.DaoException; - -public class TestGisticReader { - - @Test - public void testGisticReader() throws DaoException, IOException, Exception { -// File metadata = new File(".//testCancerStudy.txt"); -// File gisticFile = new File("/test-gistic-amp.txt"); -// File gisticTable_file = new File("/test-gistic-table-amp.txt"); -// Gistic dummyGistic = new Gistic(); -// -// GisticReader reader = new GisticReader(); -// -// ArrayList table_reads = reader.parse_Table(gisticTable_file); -// ArrayList nontable_reads = reader.parse_NonTabular(gisticFile); -// assertTrue(reader.parseAmpDel(gisticTable_file) == Gistic.AMPLIFIED); -// assertTrue(reader.parseAmpDel(gisticFile) == Gistic.AMPLIFIED); -// -// // mergeGistic -// CanonicalGene madeup_gene1 = new CanonicalGene(1l, "DIO2"); -// CanonicalGene madeup_gene2 = new CanonicalGene(2l, "NIKI"); -// -// ArrayList testgenes; -// testgenes = new ArrayList(); -// testgenes.add(madeup_gene1); -// testgenes.add(madeup_gene2); -// -// Gistic testgistic1 = new Gistic(1, -1, 1, 2, 0.05d, 0.05d, testgenes, Gistic.AMPLIFIED); -// Gistic testgistic2 = new Gistic(1, 1, -1, 2, 0.05d, 0.05d, testgenes, Gistic.AMPLIFIED); -// -// testgistic1 = reader.mergeGistics(testgistic1, testgistic2); -// assertTrue(testgistic1.getChromosome() == 1); -// -// // database test -// DaoGistic.addGistic(testgistic1); -// DaoGistic.getGisticByROI(testgistic1.getChromosome(), testgistic1.getPeakStart(), testgistic2.getPeakEnd()); -// DaoGistic.deleteGistic(testgistic1.getInternalId()); -// -// -// ArrayList merged = reader.mergeGisticLists(table_reads, nontable_reads, Gistic.AMPLIFIED); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestGlobalProperties.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestGlobalProperties.java deleted file mode 100644 index 0c5e3dd7098..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestGlobalProperties.java +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import static org.junit.Assert.*; - -import java.util.ArrayList; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoUser; -import org.mskcc.cbio.portal.model.User; -import java.io.*; -import java.util.*; -import static org.junit.Assert.*; -import static org.hamcrest.CoreMatchers.*; - -/** - * JUnit test for DaoUser class. - */ - -public class TestGlobalProperties { - public final String DB_VERSION = "db.version"; - public final String PROPERTIES_FILENAME = "maven.properties"; - - @Test - public void testVersionsMatch() throws Exception { - InputStream is = TestGlobalProperties.class.getClassLoader().getResourceAsStream(PROPERTIES_FILENAME); - Properties properties = loadProperties(is); - assertNotNull(properties.getProperty(DB_VERSION)); - - } - - private static Properties loadProperties(InputStream is) { - Properties properties = new Properties(); - try { - properties.load(is); - is.close(); - } - catch (IOException e) {} - return properties; - - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestMafUtil.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestMafUtil.java deleted file mode 100644 index b7ef75e0e80..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestMafUtil.java +++ /dev/null @@ -1,286 +0,0 @@ -/* - * Copyright (c) 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.BufferedReader; -import java.io.FileReader; -import java.io.IOException; -import org.mskcc.cbio.portal.model.ExtendedMutation; -import org.mskcc.cbio.portal.model.ExtendedMutation.MutationEvent; - -import java.util.*; -import java.util.regex.Matcher; -import org.junit.Assert; -import org.junit.Test; -import org.mskcc.cbio.maf.MafRecord; -import org.mskcc.cbio.maf.MafUtil; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoGeneticProfile; -import org.mskcc.cbio.portal.model.AlleleSpecificCopyNumber; -import org.mskcc.cbio.portal.model.GeneticProfile; - -/** - * - * @author ochoaa - */ -public class TestMafUtil { - private final String ASCN_NAMESPACE = "ascn"; - private final Set VALID_NAMESPACES = new LinkedHashSet<>(Arrays.asList("namespace1", "namespace2")); - private final String INVALID_NAMESPACE = "invalid_namespace"; - - @Test - public void testResolveTumorSeqAllele() { - StringBuilder errorMessage = new StringBuilder(); - errorMessage.append("Error messages:"); - - int failCount = 0; - for (ExtendedMutation record : makeMockExtendedMutationRecords()) { - String resolvedAllele = MafUtil.resolveTumorSeqAllele(record.getReferenceAllele(), - record.getTumorSeqAllele1(), record.getTumorSeqAllele2()); - if (!resolvedAllele.equals(record.getTumorSeqAllele())) { - failCount++; - errorMessage.append("\n\tResolved tumor seq allele does not match expected value: ") - .append(resolvedAllele).append(" != ").append(record.getTumorSeqAllele()); - } - } - if (failCount > 0) { - Assert.fail(errorMessage.toString()); - } - } - - /** - * Returns mock data for testing MafUtil.resolveTumorSeqAllele(...). - * referenceAllele, tumorSeqAllele1, tumorSeqAllele2 = input data - * tumorSeqAllele = the expected allele to be resolved given a reference allele, - * tumor seq allele 1, and tumor seq allele 2 - * @return - */ - private List makeMockExtendedMutationRecords() { - List records = new ArrayList<>(); - String referenceAllele; String tumorSeqAllele; - String tumorSeqAllele1; String tumorSeqAllele2; - - ExtendedMutation mut = new ExtendedMutation(); - MutationEvent me = new MutationEvent(); - - // mock del variant - referenceAllele = "AACG"; tumorSeqAllele = "-"; - tumorSeqAllele1 = "AACG"; tumorSeqAllele2 = "-"; - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - referenceAllele = "AACG"; tumorSeqAllele = "-"; - tumorSeqAllele1 = "-"; tumorSeqAllele2 = "AACG"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - // mock insertion variants - referenceAllele = "-"; tumorSeqAllele = "ATGC"; - tumorSeqAllele1 = "ATGC"; tumorSeqAllele2 = "-"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - referenceAllele = "-"; tumorSeqAllele = "ATGC"; - tumorSeqAllele1 = "-"; tumorSeqAllele2 = "ATGC"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - referenceAllele = "-"; tumorSeqAllele = "C"; - tumorSeqAllele1 = "C"; tumorSeqAllele2 = "A"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - // mock indel variants - referenceAllele = "AACG"; tumorSeqAllele = "ATGC"; - tumorSeqAllele1 = "ATGC"; tumorSeqAllele2 = "TGCA"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - referenceAllele = "AAGA"; tumorSeqAllele = "CA"; - tumorSeqAllele1 = "-"; tumorSeqAllele2 = "CA"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - // mock cases where snps preferred over dels - referenceAllele = "A"; tumorSeqAllele = "T"; - tumorSeqAllele1 = "T"; tumorSeqAllele2 = "C"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - referenceAllele = "A"; tumorSeqAllele = "C"; - tumorSeqAllele1 = "A"; tumorSeqAllele2 = "C"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - referenceAllele = "A"; tumorSeqAllele = "C"; - tumorSeqAllele1 = "-"; tumorSeqAllele2 = "C"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - referenceAllele = "A"; tumorSeqAllele = "C"; - tumorSeqAllele1 = "C"; tumorSeqAllele2 = "-"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - // test null cases - referenceAllele = "G"; tumorSeqAllele = "-"; - tumorSeqAllele1 = null; tumorSeqAllele2 = "-"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - referenceAllele = "G"; tumorSeqAllele = "A"; - tumorSeqAllele1 = "NA"; tumorSeqAllele2 = "A"; - mut = new ExtendedMutation(); me = new MutationEvent(); - me.setReferenceAllele(referenceAllele); - me.setTumorSeqAllele(tumorSeqAllele); - mut.setTumorSeqAllele1(tumorSeqAllele1); - mut.setTumorSeqAllele2(tumorSeqAllele2); - mut.setEvent(me); - records.add(mut); - - return records; - } - - /** - * Test that expected namespaces are resolved correctly from MAF header. - * @throws Exception - */ - @Test - public void testResolveAnnotationNamespaces() throws Exception { - - FileReader reader = new FileReader("src/test/resources/data_mutations_extended_json_annotation.txt"); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine().trim(); - while (line.startsWith("#")) { - line = buf.readLine().trim(); - } - MafUtil mafUtil = new MafUtil(line, VALID_NAMESPACES); - Assert.assertEquals(2, mafUtil.getNamespaceIndexMap().size()); - for (String ns : VALID_NAMESPACES) { - if (!mafUtil.getNamespaceIndexMap().containsKey(ns)) { - Assert.fail("maUtil.getNamespaceIndexMap() is missing expected namespace: '" + ns + "'"); - } - } - Assert.assertFalse("Invalid namespace found in mafUtil.getNamespaceIndexMap(): " + INVALID_NAMESPACE, mafUtil.getNamespaceIndexMap().containsKey(INVALID_NAMESPACE)); - buf.close(); - } - - /** - * Test that ASCN namespace is resolved correctly from MAF. - * @throws Exception - */ - @Test - public void testResolveAscnAnnotationNamespace() throws Exception { - - FileReader reader = new FileReader("src/test/resources/data_mutations_extended_json_annotation.txt"); - BufferedReader buf = new BufferedReader(reader); - String line = buf.readLine().trim(); - while (line.startsWith("#")) { - line = buf.readLine().trim(); - } - MafUtil mafUtil = new MafUtil(line, new LinkedHashSet<>(Arrays.asList(ASCN_NAMESPACE))); - Assert.assertEquals(1, mafUtil.getNamespaceIndexMap().size()); - Assert.assertTrue(mafUtil.getNamespaceIndexMap().containsKey(ASCN_NAMESPACE)); - - List ascnRecords = new ArrayList<>(); - while((line=buf.readLine()) != null) { - if (!line.startsWith("#") && line.trim().length() > 0) { - MafRecord record = mafUtil.parseRecord(line); - // every record in test MAF should have ASCN data - Assert.assertTrue(record.getNamespacesMap().containsKey(ASCN_NAMESPACE)); - Map ascnData = record.getNamespacesMap().get(ASCN_NAMESPACE); - ascnRecords.add(new AlleleSpecificCopyNumber(ascnData)); - } - } - buf.close(); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestMutSigReader.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestMutSigReader.java deleted file mode 100644 index 4a6fff34784..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestMutSigReader.java +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.io.File; - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestMutSigReader { - - // TBD: change these to use getResourceAsStream() - File properties = new File("target/test-classes/testCancerStudy.txt"); - File mutSigFile = new File("target/test-classes/test_mut_sig_data.txt"); - - int studyId; - - @Before - public void setUp() throws DaoException - { - studyId = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub").getInternalId(); - DaoGeneticProfile.reCache(); - } - - @Test - public void testloadMutSig() throws Exception { - - ProgressMonitor.setConsoleMode(false); - - MutSigReader.loadMutSig(studyId, mutSigFile); - - // Is the data in the database? - MutSig mutSig = DaoMutSig.getMutSig("AKT1", studyId); - assertTrue(mutSig != null); - CanonicalGene testGene = mutSig.getCanonicalGene(); - assertTrue(testGene != null); - - assertTrue("AKT1".equals(testGene.getHugoGeneSymbolAllCaps())); - assertEquals(mutSig.getNumMutations(), 5); - assertEquals(mutSig.getNumBasesCovered(), 150306); - assertTrue(Math.abs(mutSig.getpValue() - 1.82E-7) < 1E-12); - assertTrue(Math.abs(mutSig.getqValue() - 2.7E-5) < 1E-12); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestMutationCounter.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestMutationCounter.java deleted file mode 100644 index 4922c33024a..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestMutationCounter.java +++ /dev/null @@ -1,150 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.ExtendedMutation; -import org.mskcc.cbio.portal.model.ExtendedMutationMap; - -import java.util.ArrayList; - -import static org.junit.Assert.*; - -/** - * Tests the Mutation Counder Class. - * - * @author Ethan Cerami. - */ -public class TestMutationCounter { - private static final String BRCA1 = "BRCA1"; - private static final String BRCA2 = "BRCA2"; - private static final int CASE_A = 1; - private static final int CASE_B = 2; - private static final int CASE_C = 3; - private static final int CASE_D = 4; - - public void test1() { - CanonicalGene brca1 = new CanonicalGene(672, BRCA1); - CanonicalGene brca2 = new CanonicalGene(675, BRCA2); - - // By default, all these mutations are somatic - ExtendedMutation mutation1 = createMutation1(brca1, CASE_A); - ExtendedMutation mutation2 = createMutation1(brca1, CASE_A); - ExtendedMutation mutation3 = createMutation1(brca2, CASE_A); - - ArrayList mutationList = - createMutationList(mutation1, mutation2, mutation3); - - ArrayList sampleList = new ArrayList(); - sampleList.add(CASE_A); - sampleList.add(CASE_B); - - ExtendedMutationMap mutationMap = new ExtendedMutationMap(mutationList, sampleList); - MutationCounter mutationCounter = new MutationCounter (BRCA1, mutationMap); - assertEquals (0.5, mutationCounter.getMutationRate(), 0.01); - assertEquals (0.5, mutationCounter.getSomaticMutationRate(), 0.01); - assertEquals (0.0, mutationCounter.getGermlineMutationRate(), 0.01); - - assertEquals ("[Somatic Mutation Rate: 50%]", mutationCounter.getTextSummary()); - } - - public void test2() { - CanonicalGene brca1 = new CanonicalGene(672, BRCA1); - CanonicalGene brca2 = new CanonicalGene(675, BRCA2); - - // Case A will contain a germline and somatic mutation - ExtendedMutation mutation1 = createMutation1(brca1, CASE_A); - mutation1.setMutationStatus("germline"); - ExtendedMutation mutation2 = createMutation1(brca1, CASE_A); - ExtendedMutation mutation3 = createMutation1(brca2, CASE_A); - - ArrayList mutationList = - createMutationList(mutation1, mutation2, mutation3); - - ArrayList sampleList = new ArrayList(); - sampleList.add(CASE_A); - sampleList.add(CASE_B); - - ExtendedMutationMap mutationMap = new ExtendedMutationMap(mutationList, sampleList); - MutationCounter mutationCounter = new MutationCounter (BRCA1, mutationMap); - assertEquals (0.5, mutationCounter.getMutationRate(), 0.01); - assertEquals (0.5, mutationCounter.getSomaticMutationRate(), 0.01); - assertEquals (0.5, mutationCounter.getGermlineMutationRate(), 0.01); - assertEquals ("[Germline Mutation Rate: 50%, Somatic Mutation Rate: 50%]", - mutationCounter.getTextSummary()); - } - - public void test3() { - CanonicalGene brca1 = new CanonicalGene(672, BRCA1); - CanonicalGene brca2 = new CanonicalGene(675, BRCA2); - - // By default, all these mutations are somatic - ExtendedMutation mutation1 = createMutation1(brca1, CASE_A); - ExtendedMutation mutation2 = createMutation1(brca1, CASE_A); - ExtendedMutation mutation3 = createMutation1(brca2, CASE_A); - - ArrayList mutationList = - createMutationList(mutation1, mutation2, mutation3); - - ArrayList sampleList = new ArrayList(); - sampleList.add(CASE_A); - sampleList.add(CASE_B); - sampleList.add(CASE_C); - sampleList.add(CASE_D); - - ExtendedMutationMap mutationMap = new ExtendedMutationMap(mutationList, sampleList); - MutationCounter mutationCounter = new MutationCounter (BRCA1, mutationMap); - assertEquals (0.25, mutationCounter.getMutationRate(), 0.01); - assertEquals (0.25, mutationCounter.getSomaticMutationRate(), 0.01); - assertEquals (0.0, mutationCounter.getGermlineMutationRate(), 0.01); - assertEquals ("[Somatic Mutation Rate: 25%]", mutationCounter.getTextSummary()); - } - - private ArrayList createMutationList(ExtendedMutation - mutation1, ExtendedMutation mutation2, ExtendedMutation mutation3) { - ArrayList mutationList = new ArrayList(); - mutationList.add(mutation1); - mutationList.add(mutation2); - mutationList.add(mutation3); - return mutationList; - } - - private ExtendedMutation createMutation1(CanonicalGene - gene, Integer sampleId) { - ExtendedMutation mutation2 = new ExtendedMutation(); - mutation2.setGene(gene); - mutation2.setSampleId(sampleId); - mutation2.setProteinChange("C22G"); - return mutation2; - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestMutationKeywordUtils.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestMutationKeywordUtils.java deleted file mode 100644 index 46bf22e5557..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestMutationKeywordUtils.java +++ /dev/null @@ -1,215 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; - -import org.junit.Test; - - -/** - * - * @author jgao - */ -public class TestMutationKeywordUtils { - - @Test - public void testGuessOncotatorKeyword() throws Exception { - // missense - assertEquals("K13 missense", MutationKeywordUtils.guessOncotatorMutationKeyword("K13R", "Missense_Mutation")); - assertEquals("M19 missense", MutationKeywordUtils.guessOncotatorMutationKeyword("M19K", "Missense_Mutation")); - assertEquals("569-570 missense", MutationKeywordUtils.guessOncotatorMutationKeyword("569_570HG>QW", "Missense_Mutation")); - - // ins - assertEquals("425 insertion", MutationKeywordUtils.guessOncotatorMutationKeyword("425_426insC", "In_Frame_Ins")); - assertEquals("77 insertion", MutationKeywordUtils.guessOncotatorMutationKeyword("77_77T>NP", "In_Frame_Ins")); - assertEquals("1583 insertion", MutationKeywordUtils.guessOncotatorMutationKeyword("E1583_Q1584insPVELMPPE", "NA")); - assertEquals("1720 insertion", MutationKeywordUtils.guessOncotatorMutationKeyword("A1720_V1721ins14", "NA")); - assertEquals("600 insertion", MutationKeywordUtils.guessOncotatorMutationKeyword("D600_L601ins10", "NA")); - - // del - assertEquals("359-359 deletion", MutationKeywordUtils.guessOncotatorMutationKeyword("E359del", "In_Frame_Del")); - assertEquals("517-521 deletion", MutationKeywordUtils.guessOncotatorMutationKeyword("517_521ESSTR>G", "In_Frame_Del")); - assertEquals("274-341 deletion", MutationKeywordUtils.guessOncotatorMutationKeyword("W274_F341del", "NA")); - assertEquals("188-191 deletion", MutationKeywordUtils.guessOncotatorMutationKeyword("L188_P191delLAPP", "NA")); - assertEquals("485-490 deletion", MutationKeywordUtils.guessOncotatorMutationKeyword("L485_P490>Y", "NA")); - - // nonsense - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("S371*", "Nonsense_Mutation")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("2219_2220insVR**", "In_Frame_Ins")); - - // nonstart - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("M1I", "Missense_Mutation")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("1_1M>IA", "In_Frame_Ins")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("1_2insL", "In_Frame_Ins")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("M1del", "In_Frame_Del")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("MPEEMD1del", "In_Frame_Del")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("1_15MPPKVTSELLRQLRQ>K", "In_Frame_Del")); - - // nonstop - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("*128Q", "Nonstop_Mutation")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("473_477TVAS*>R", "In_Frame_Del")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("904_905SE>*", "In_Frame_Del")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("G165_*404del", "NA")); - - // fs - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("M253fs", "Frame_Shift_Ins")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("Y122fs", "Frame_Shift_Del")); - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("S2751fs*27", "NA")); - - // sp - assertEquals("truncating", MutationKeywordUtils.guessOncotatorMutationKeyword("R31_splice", "Splice_Site")); - - // others - assertEquals("Exon skipping", MutationKeywordUtils.guessOncotatorMutationKeyword("Exon skipping", "Exon skipping")); - assertEquals("vIII deletion", MutationKeywordUtils.guessOncotatorMutationKeyword("vIII deletion", "vIII deletion")); - } - - @Test - public void testGuessCosmicKeyword() throws Exception { - assertNull(MutationKeywordUtils.guessCosmicKeyword("")); - assertNull(MutationKeywordUtils.guessCosmicKeyword("0")); - assertNull(MutationKeywordUtils.guessCosmicKeyword("?")); - assertNull(MutationKeywordUtils.guessCosmicKeyword("*730?")); - assertNull(MutationKeywordUtils.guessCosmicKeyword("(=)")); - assertNull(MutationKeywordUtils.guessCosmicKeyword("P248?")); - assertNull(MutationKeywordUtils.guessCosmicKeyword("K267_D268ins?")); - assertNull(MutationKeywordUtils.guessCosmicKeyword("WQQQSYLD25?")); - assertNull(MutationKeywordUtils.guessCosmicKeyword("M1>?")); - assertNull(MutationKeywordUtils.guessCosmicKeyword("PCRF*177delext*4")); //delext deletion should be Null - - - // silent - assertEquals("*803 silent", MutationKeywordUtils.guessCosmicKeyword("*803*")); - assertEquals("A803 silent", MutationKeywordUtils.guessCosmicKeyword("A803A")); - assertEquals("A803 silent", MutationKeywordUtils.guessCosmicKeyword("A803>A")); - assertEquals("A803 silent", MutationKeywordUtils.guessCosmicKeyword("A803=")); - assertEquals("A803 silent", MutationKeywordUtils.guessCosmicKeyword("A803%3D")); - - // missense - assertEquals("A2 missense", MutationKeywordUtils.guessCosmicKeyword("A2S")); - assertEquals("M19 missense", MutationKeywordUtils.guessCosmicKeyword("M19K")); - assertEquals("475-477 missense", MutationKeywordUtils.guessCosmicKeyword("Q475_E477>VLQ")); - - // insertion - assertEquals("1069 insertion", MutationKeywordUtils.guessCosmicKeyword("*1069_*1069insWKDN*")); - assertEquals("574 insertion", MutationKeywordUtils.guessCosmicKeyword("T574_Q575ins12")); - assertEquals("1593 insertion", MutationKeywordUtils.guessCosmicKeyword("L1593_R1594ins12")); - assertEquals("1592 insertion", MutationKeywordUtils.guessCosmicKeyword("F1592>LGP")); - assertEquals("6 insertion", MutationKeywordUtils.guessCosmicKeyword("C6>SG")); - assertEquals("630 insertion", MutationKeywordUtils.guessCosmicKeyword("D630_I631insRG")); - assertEquals("299 insertion", MutationKeywordUtils.guessCosmicKeyword("299_300insGRS")); - assertEquals("976 insertion", MutationKeywordUtils.guessCosmicKeyword("V976_C977ins3")); - assertEquals("172 insertion", MutationKeywordUtils.guessCosmicKeyword("D172_*173insCTSTDGS")); - assertEquals("452 insertion", MutationKeywordUtils.guessCosmicKeyword("Y452_Q455>SGGSRIK")); // this is actually missense? - assertEquals("475 insertion", MutationKeywordUtils.guessCosmicKeyword("Q475_E476>VLQ")); // this is actually missense? - - // extension (treated as insertion) - assertEquals("1001 insertion", MutationKeywordUtils.guessCosmicKeyword("*1001Rext*22")); - - // duplication (treated as insertion) - assertEquals("100 insertion", MutationKeywordUtils.guessCosmicKeyword("A100dup")); - assertEquals("102 insertion", MutationKeywordUtils.guessCosmicKeyword("A102_A104dup")); - - // delins (treated as insertion/missense/deletion) - assertEquals("1038-1041 deletion", MutationKeywordUtils.guessCosmicKeyword("A1038_R1041delinsCFC")); - assertEquals("102-104 deletion", MutationKeywordUtils.guessCosmicKeyword("A102_L104delinsV")); - assertEquals("106 insertion", MutationKeywordUtils.guessCosmicKeyword("A106delinsGRLS")); - assertEquals("106 insertion", MutationKeywordUtils.guessCosmicKeyword("A106_A107delinsGRLS")); - assertEquals("107-108 missense", MutationKeywordUtils.guessCosmicKeyword("A107_L108delinsSD")); - - - // delext (treated as insertion/missense), logically it should only be insertion - assertEquals("125 insertion", MutationKeywordUtils.guessCosmicKeyword("*125delext*8")); - assertEquals("177 insertion", MutationKeywordUtils.guessCosmicKeyword("PCRF*177delext*64")); - assertEquals("177-181 missense", MutationKeywordUtils.guessCosmicKeyword("PCRF*177delext*5")); - - - // deletion - assertEquals("738-738 deletion", MutationKeywordUtils.guessCosmicKeyword("G738delG")); - assertEquals("400-400 deletion", MutationKeywordUtils.guessCosmicKeyword("K400del")); - assertEquals("146-148 deletion", MutationKeywordUtils.guessCosmicKeyword("L146_D148delLRD")); - assertEquals("418-419 deletion", MutationKeywordUtils.guessCosmicKeyword("Y418_D419del")); - assertEquals("449-459 deletion", MutationKeywordUtils.guessCosmicKeyword("L449_K459del11")); - assertEquals("454-455 deletion", MutationKeywordUtils.guessCosmicKeyword("T454_Q455>Q")); // actually only one Q got deleted - assertEquals("456-461 deletion", MutationKeywordUtils.guessCosmicKeyword("F456_R461>S")); // this is actually missense? - assertEquals("459-460 deletion", MutationKeywordUtils.guessCosmicKeyword("K459_S460>N")); // GENE=PIK3R1;STRAND=+;CDS=c.1377_1379delAAG;AA=p.K459_S460>N;CNT=1 - - // frameshift - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("D160fs*47")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("R228fs>25")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("G297fs*>3")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("A254fs")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("(2287)fs")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("N342fs?")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("*139fs?")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("(R91)fs")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("215fs")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("(E55)fs*?")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("L617fs*")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("*1069fs*3")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("*257fs*>4")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("557fs*?")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("?fs")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("*100Ifs*4")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("R412_*413delR*")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("(P1249)fs*?")); - - // non sense - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("Q341*")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("P198>*")); - - // delete * - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("*707del*")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("S663_*665delSY*")); - - // insert * - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("Q1365>H*")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("Y16_Q17>*")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("K664_K665>N*")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("Y74_Y75ins*")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("Q1365>H*")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("D65_E67>***")); - - // non start - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("M1T")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("M1delM")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("M1_A2>IP")); - - // non stop - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("*90Y")); - assertEquals("truncating", MutationKeywordUtils.guessCosmicKeyword("T473_*477>R")); - - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestNaturalOrderComparator.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestNaturalOrderComparator.java deleted file mode 100644 index 4dbeb170d2d..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestNaturalOrderComparator.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package org.mskcc.cbio.portal.util; - -import java.util.Arrays; -import java.util.Collections; -import java.util.List; -import static org.junit.Assert.assertEquals; - -import org.junit.Test; - -/** - * - * @author debruiji - */ -public class TestNaturalOrderComparator { - @Test - public void testGuessOncotatorKeyword() throws Exception { - String[] strings = new String[]{"1-2", "1-02", "1-20", "10-20", "fred", "jane", "pic01", - "pic2", "pic02", "pic02a", "pic3", "pic4", "pic 4 else", "pic 5", "pic05", "pic 5", - "pic 5 something", "pic 6", "pic 7", "pic33", "pic100", "pic100a", "pic120", "pic121", - "pic02000", "tom", "x2-g8", "x2-y7", "x2-y08", "x8-y8"}; - - List scrambled = Arrays.asList(strings); - Collections.shuffle(scrambled); - - Collections.sort(scrambled, new NaturalOrderComparator()); - assertEquals(Arrays.asList(strings), scrambled); - - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestOmaLinkUtil.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestOmaLinkUtil.java deleted file mode 100644 index 336ac3fad6c..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestOmaLinkUtil.java +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.net.MalformedURLException; -import org.junit.*; -import static org.junit.Assert.*; - -/** - * Tests the OmaLink Utility Class. - * - * @author Ethan Cerami. - */ -public class TestOmaLinkUtil { - private String queryStringParams1 = "cm=var&fts=all&var=17,7517830,G,C"; - private String queryStringParams2 = "from=601&prot=EGFR_HUMAN&to=800&var=C620Y"; - - @Test - public void testOmaLinkUtil1() throws MalformedURLException { - String omaLinkIn = "http://mutationassessor.org/?" + queryStringParams1; - String omaLinkOut = OmaLinkUtil.createOmaRedirectLink(omaLinkIn); - assertEquals("omaRedirect.do?site=mutationassessor.org/&" + queryStringParams1, omaLinkOut); - String omaLink = OmaLinkUtil.createOmaLink(omaLinkOut); - assertEquals (omaLinkIn, omaLink); - omaLink = OmaLinkUtil.createOmaLink("site=mutationassessor.org/&" + queryStringParams1); - assertEquals (omaLinkIn, omaLink); - } - - @Test - public void testOmaLinkUtil2() throws MalformedURLException { - String omaLinkIn = "http://mutationassessor.org/pdb.php?" + queryStringParams2; - String omaLinkOut = OmaLinkUtil.createOmaRedirectLink(omaLinkIn); - assertEquals("omaRedirect.do?site=mutationassessor.org/pdb.php&" + queryStringParams2, omaLinkOut); - String omaLink = OmaLinkUtil.createOmaLink(omaLinkOut); - assertEquals (omaLinkIn, omaLink); - } - - @Test - public void testOmaLinkUtil3() throws MalformedURLException { - String omaLinkIn = "http://xvar.org/pdb.php?" + queryStringParams2; - String omaLinkOut = OmaLinkUtil.createOmaRedirectLink(omaLinkIn); - String omaLink = OmaLinkUtil.createOmaLink(omaLinkOut); - assertEquals (omaLinkIn, omaLink); - } - - @Test - public void testOmaLinkUtil4() throws MalformedURLException { - String omaLinkIn = "mutationassessor.org/?" + queryStringParams1; - String omaLinkOut = OmaLinkUtil.createOmaRedirectLink(omaLinkIn); - assertEquals("omaRedirect.do?site=mutationassessor.org/&" + queryStringParams1, omaLinkOut); - String omaLink = OmaLinkUtil.createOmaLink("site=mutationassessor.org/&" + queryStringParams1); - assertEquals ("http://" + omaLinkIn, omaLink); - } - - private void testExpectedMalformedLink(String omaLinkIn) { - try { - String omaLinkOut = OmaLinkUtil.createOmaRedirectLink(omaLinkIn); - fail("call to OmaLinkUtil.createOmaRedirectLink(\"" + omaLinkIn + "\") was expected to generate an exception but returned: " + omaLinkOut); - } catch (MalformedURLException e) { - // expected .. no failure - } - } - - @Test - public void testOmaLinkUtil5() { - testExpectedMalformedLink("NA"); - testExpectedMalformedLink("[Not Available]"); - testExpectedMalformedLink(""); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestProfileMerger.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestProfileMerger.java deleted file mode 100644 index 7174a0affe4..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestProfileMerger.java +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - -import java.io.File; -import java.io.IOException; -import java.util.ArrayList; -import org.mskcc.cbio.io.WebFileConnect; -import org.mskcc.cbio.portal.model.GeneticAlterationType; -import org.mskcc.cbio.portal.model.GeneticProfile; -import org.mskcc.cbio.portal.model.ProfileData; -import static org.junit.Assert.*; - -/** - * JUnit test for Profile Merger. - */ -public class TestProfileMerger { - - /** - * Tests the Profile Merger Utility Class. - * - * @throws IOException IO Error. - */ - public void testProfileMerger() throws IOException { - ArrayList profileList = new ArrayList(); - - GeneticProfile profile0 = new GeneticProfile - ("gbm", 1, GeneticAlterationType.COPY_NUMBER_ALTERATION, "DISCRETE", - "CNA", "NA", true); - // TBD: change this to use getResourceAsStream() - String matrix0[][] = WebFileConnect.retrieveMatrix(new File("target/test-classes/cna_sample.txt")); - ProfileData data0 = new ProfileData(profile0, matrix0); - profileList.add(data0); - - GeneticProfile profile1 = new GeneticProfile - ("gbm", 1, GeneticAlterationType.MUTATION_EXTENDED, "MAF", - "MUTATION", "NA", true); - // TBD: change this to use getResourceAsStream() - String matrix1[][] = WebFileConnect.retrieveMatrix(new File("target/test-classes/mutation_sample.txt")); - ProfileData data1 = new ProfileData(profile1, matrix1); - profileList.add(data1); - - ProfileMerger merger = new ProfileMerger(profileList); - ProfileData mergedProfile = merger.getMergedProfile(); - String value = mergedProfile.getValue("BRCA1", "TCGA-02-0004"); - assertEquals(GeneticAlterationType.COPY_NUMBER_ALTERATION.name() + ":1;", value); - value = mergedProfile.getValue("BRCA2", "TCGA-06-0169"); - assertEquals(GeneticAlterationType.COPY_NUMBER_ALTERATION.name() + ":0;" - + GeneticAlterationType.MUTATION_EXTENDED.name() + ":P920S;", value); - //value = mergedProfile.getValue("BRCA1", "TCGA-06-0169"); - //assertEquals("", value); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestRequestBodyGZipFilter.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestRequestBodyGZipFilter.java deleted file mode 100644 index fe4d6487ca9..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestRequestBodyGZipFilter.java +++ /dev/null @@ -1,173 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import com.google.common.net.HttpHeaders; -import org.junit.Assert; -import org.junit.Test; -import org.mockito.ArgumentCaptor; -import org.mockito.Mockito; -import org.springframework.test.util.ReflectionTestUtils; - -import javax.servlet.FilterChain; -import javax.servlet.ServletInputStream; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import javax.ws.rs.HttpMethod; -import java.io.ByteArrayInputStream; -import java.io.IOException; -import java.util.stream.Collectors; - -public class TestRequestBodyGZipFilter { - // This is the byte representation of a gzipped json file with the following contents: {"field":"value"} - private static final byte[] GZIPPED_JSON_FILE_BYTES = { - 31, -117, 8, 8, -58, -49, -50, 95, 0, 3, 103, 122, 105, 112, 95, 102, 105, 108, 116, 101, 114, 46, 106, 115, - 111, 110, 0, -85, 86, 74, -53, 76, -51, 73, 81, -78, 82, 42, 75, -52, 41, 77, 85, -86, -27, 2, 0, 47, 99, - 109, 9, 18, 0, 0, 0 - }; - - /** - * When I filter a request that doesn't have the gzip header, - * the request should not be wrapped, and chain.doFilter should - * be called on the same request object passed to the method. - */ - @Test - public void testDoFilterEnabledNotGZipped() throws Exception { - RequestBodyGZipFilter subject = createRequestBodyGZipFilter(true, 50000000); - - HttpServletRequest request = createHttpServletRequest(null, HttpMethod.POST); - HttpServletResponse response = Mockito.mock(HttpServletResponse.class); - FilterChain chain = Mockito.mock(FilterChain.class); - - subject.doFilter(request, response, chain); - - // request should not be wrapped - Mockito.verify(chain, Mockito.times(1)).doFilter(request, response); - } - - /** - * When I filter a request that has the gzip header, but the gzip - * feature is disabled, the doFilter method should throw an exception. - */ - @Test(expected = IllegalStateException.class) - public void testDoFilterDisabledGZipped() throws Exception { - RequestBodyGZipFilter subject = createRequestBodyGZipFilter(false, 50000000); - - HttpServletRequest request = createHttpServletRequest("gzip", HttpMethod.POST); - HttpServletResponse response = Mockito.mock(HttpServletResponse.class); - FilterChain chain = Mockito.mock(FilterChain.class); - - subject.doFilter(request, response, chain); - } - - /** - * When I filter a request that has the gzip header and the gzip - * feature is enabled, but the method is something other than POST, - * the doFilter method should throw an exception. - */ - @Test(expected = IllegalStateException.class) - public void testDoFilterEnabledGZippedBadMethod() throws Exception { - RequestBodyGZipFilter subject = createRequestBodyGZipFilter(true, 50000000); - - HttpServletRequest request = createHttpServletRequest("gzip", HttpMethod.GET); - HttpServletResponse response = Mockito.mock(HttpServletResponse.class); - FilterChain chain = Mockito.mock(FilterChain.class); - - subject.doFilter(request, response, chain); - } - - /** - * When I filter a request that has the gzip header and the gzip - * feature is enabled and the method is POST, the doFilter method - * should wrap the request with a GzippedInputStreamWrapper. - * The BufferedReader for this GzippedInputStreamWrapper should return - * the contents of the gzipped file used to create the original input stream. - */ - @Test - public void testDoFilterEnabledGZipped() throws Exception { - RequestBodyGZipFilter subject = createRequestBodyGZipFilter(true, 50000000); - - GzippedJsonFileInputStream stream = new GzippedJsonFileInputStream(); - HttpServletRequest request = createHttpServletRequest("gzip", HttpMethod.POST); - Mockito.when(request.getInputStream()).thenReturn(stream); - - HttpServletResponse response = Mockito.mock(HttpServletResponse.class); - FilterChain chain = Mockito.mock(FilterChain.class); - - subject.doFilter(request, response, chain); - - // Request should be wrapped, so the request should now be a GzippedInputStreamWrapper - ArgumentCaptor requestArg = - ArgumentCaptor.forClass(GzippedInputStreamRequestWrapper.class); - ArgumentCaptor responseArg = ArgumentCaptor.forClass(HttpServletResponse.class); - Mockito.verify(chain, Mockito.times(1)).doFilter(requestArg.capture(), responseArg.capture()); - GzippedInputStreamRequestWrapper wrappedStream = requestArg.getValue(); - - String actualRequestBody = wrappedStream.getReader().lines().collect(Collectors.joining()); - String expectedRequestBody = "{\"field\":\"value\"}"; - Assert.assertEquals(expectedRequestBody, actualRequestBody); - } - - /** - * When I filter a request that has the gzip header and the gzip - * feature is enabled and the method is POST, but the unzipped message - * body is larger than maxInflatedRequestBodySize, the doFilter method - * should wrap the request with a GzippedInputStreamWrapper. - * The BufferedReader for this GzippedInputStreamWrapper should throw an - * IOException as it is read. This exception gets turned into - * an UncheckedIOException by something, so we'll check for that instead. - */ - @Test(expected = IOException.class) - public void testDoFilterEnabledGZippedButTooLong() throws Exception { - RequestBodyGZipFilter subject = createRequestBodyGZipFilter(true, 1); - - GzippedJsonFileInputStream stream = new GzippedJsonFileInputStream(); - HttpServletRequest request = createHttpServletRequest("gzip", HttpMethod.POST); - Mockito.when(request.getInputStream()).thenReturn(stream); - - HttpServletResponse response = Mockito.mock(HttpServletResponse.class); - FilterChain chain = Mockito.mock(FilterChain.class); - - subject.doFilter(request, response, chain); - - // Request should be wrapped, so the request should now be a GzippedInputStreamWrapper - ArgumentCaptor requestArg = - ArgumentCaptor.forClass(GzippedInputStreamRequestWrapper.class); - ArgumentCaptor responseArg = ArgumentCaptor.forClass(HttpServletResponse.class); - Mockito.verify(chain, Mockito.times(1)).doFilter(requestArg.capture(), responseArg.capture()); - GzippedInputStreamRequestWrapper wrappedStream = requestArg.getValue(); - - //this should cause an IOException - wrappedStream.getReader().lines().collect(Collectors.joining()); - } - - - private RequestBodyGZipFilter createRequestBodyGZipFilter(boolean enabled, int requestBodySize) { - RequestBodyGZipFilter subject = new RequestBodyGZipFilter(); - ReflectionTestUtils.setField(subject, "maxInflatedRequestBodySize", requestBodySize); - ReflectionTestUtils.setField(subject, "enabled", enabled); - return subject; - } - - private HttpServletRequest createHttpServletRequest(String gzip, String httpMethod) { - HttpServletRequest request = Mockito.mock(HttpServletRequest.class); - Mockito.when(request.getHeader(HttpHeaders.CONTENT_ENCODING)).thenReturn(gzip); - Mockito.when(request.getMethod()).thenReturn(httpMethod); - return request; - } - - /** - * TestInputStream wraps a FileInputStream so that it can be ServletInputStream - * and passed to Filter::doFilter. - */ - private static class GzippedJsonFileInputStream extends ServletInputStream { - private final ByteArrayInputStream byteInputStream; - - GzippedJsonFileInputStream() { - this.byteInputStream = new ByteArrayInputStream(GZIPPED_JSON_FILE_BYTES); - } - - @Override - public int read() throws IOException { - return byteInputStream.read(); - } - } -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestStableIdUtil.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestStableIdUtil.java deleted file mode 100644 index aaaca6634bb..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestStableIdUtil.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; - - -import static org.junit.Assert.assertEquals; - -import org.junit.Test; - -/** - * Tests the StableIdUtil Class. - * - * @author pieter lukasse. - */ -public class TestStableIdUtil { - - @Test - public void testId1() { - String barcode = "TCGA-13-1479-01A-01W"; - String sampleId = StableIdUtil.getSampleId(barcode); - assertEquals ("TCGA-13-1479-01", sampleId); - } - - -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestStructuralVariantUtil.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestStructuralVariantUtil.java deleted file mode 100644 index d1fc3630fe2..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestStructuralVariantUtil.java +++ /dev/null @@ -1,88 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import org.junit.Assert; -import org.junit.Test; -import org.mskcc.cbio.portal.model.StructuralVariant; - -/** - * @author ochoaa - */ -public class TestStructuralVariantUtil { - private StructuralVariantUtil structuralVariantUtil = new StructuralVariantUtil("", null); - - @Test - public void testValidStructuralVariantRecordWithCompleteGeneTranscriptInfo() { - // confirm that record meets minimum requirements for import - // record has site 1 entrez id and missing site 1 hugo symbol - // and missing site 2 entrez id but present site 2 hugo symbol - StructuralVariant record = new StructuralVariant(); - record.setSampleId("SMP0001"); - record.setSvStatus("SOMATIC"); - record.setSite1EntrezGeneId(654684L); - record.setSite1HugoSymbol("NA"); - record.setSite1EnsemblTranscriptId("ENST29O3403"); - record.setSite1Region("exon"); - record.setSite1RegionNumber(5); - record.setSite2EntrezGeneId(-1L); - record.setSite2HugoSymbol("ALK1"); - record.setSite2EnsemblTranscriptId("ENST2843757657"); - record.setSite2Region("exon"); - record.setSite2RegionNumber(7); - Assert.assertTrue(structuralVariantUtil.hasRequiredStructuralVariantFields(record)); - } - - @Test - public void testValidStructuralVariantRecordMissingGeneInfo() { - // confirm that record does meet minimum requirements for import - // record is missing site 1 gene info (renders record invalid) - // and missing site 2 entrez id but present site 2 hugo symbol - StructuralVariant record = new StructuralVariant(); - record.setSampleId("SMP0001"); - record.setSvStatus("SOMATIC"); - record.setSite1EntrezGeneId(Long.MIN_VALUE); - record.setSite1HugoSymbol("NA"); - record.setSite1EnsemblTranscriptId("ENST29O3403"); - record.setSite1Region("exon"); - record.setSite1RegionNumber(5); - record.setSite2EntrezGeneId(Long.MIN_VALUE); - record.setSite2HugoSymbol("ALK1"); - record.setSite2EnsemblTranscriptId("ENST2843757657"); - record.setSite2Region("exon"); - record.setSite2RegionNumber(7); - Assert.assertTrue(structuralVariantUtil.hasRequiredStructuralVariantFields(record)); - } - - @Test - public void testValidStructuralVariantRecordMissingSampleId() { - StructuralVariant record = new StructuralVariant(); - record.setSvStatus("SOMATIC"); - record.setSite1EntrezGeneId(654684L); - record.setSite1HugoSymbol("NA"); - record.setSite1EnsemblTranscriptId("NA"); - record.setSite1Region("NA"); - record.setSite1RegionNumber(-1); - record.setSite2EntrezGeneId(Long.MIN_VALUE); - record.setSite2HugoSymbol("ALK1"); - record.setSite2EnsemblTranscriptId("NA"); - record.setSite2Region("NA"); - record.setSite2RegionNumber(-1); - Assert.assertFalse(structuralVariantUtil.hasRequiredStructuralVariantFields(record)); - } - - @Test - public void testValidStructuralVariantRecordMissingSvStatus() { - StructuralVariant record = new StructuralVariant(); - record.setSampleId("SMP0001"); - record.setSite1EntrezGeneId(654684L); - record.setSite1HugoSymbol("NA"); - record.setSite1EnsemblTranscriptId("NA"); - record.setSite1Region("NA"); - record.setSite1RegionNumber(-1); - record.setSite2EntrezGeneId(Long.MIN_VALUE); - record.setSite2HugoSymbol("ALK1"); - record.setSite2EnsemblTranscriptId("NA"); - record.setSite2Region("NA"); - record.setSite2RegionNumber(-1); - Assert.assertFalse(structuralVariantUtil.hasRequiredStructuralVariantFields(record)); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestTransactionalScripts.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestTransactionalScripts.java deleted file mode 100644 index 0da32e62f18..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestTransactionalScripts.java +++ /dev/null @@ -1,37 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.ApplicationContext; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/demoScript.xml", "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestTransactionalScripts { - - @Autowired - private ApplicationContext applicationContext; - - @Before - public void setUp() { - DaoCancerStudy.reCacheAll(); - } - - /** - * A basic test of using the context to drive a set of scripts. - */ - @Test - public void testScripts() { - TransactionalScripts scripts = applicationContext.getBean(TransactionalScripts.class); - scripts.run(); - } - -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/TestValueParser.java b/core/src/test/java/org/mskcc/cbio/portal/util/TestValueParser.java deleted file mode 100644 index e42a794b187..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/TestValueParser.java +++ /dev/null @@ -1,311 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.util; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; -import org.junit.Assert; - -import org.junit.Test; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ComparisonOp; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ConcreteDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DiscreteDataTypeSetSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.DiscreteDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneSet; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneWithSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticDataTypes; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.GeneticTypeLevel; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintGeneDisplaySpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.OncoPrintSpecification; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.ParsedFullDataTypeSpec; -import org.mskcc.cbio.portal.oncoPrintSpecLanguage.TestOncoPrintSpecificationLibrary; - -public class TestValueParser { - // TODO: reorganize to test individual methods separately in different - // methods - - @Test - public void testValueParser() { - - ValueParser parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:3;", 1.0); - assertTrue(parser.isMRNAWayUp()); - assertFalse(parser.isMRNAWayDown()); - assertTrue(parser.isCnaAmplified()); - assertFalse(parser.isCnaGained()); - assertTrue(parser.isMutated()); - assertTrue(parser.isGeneAltered()); - // default CNA alteration is AMP and HOMDEL - assertTrue(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:3;", 4.0); - assertFalse(parser.isMRNAWayUp()); - assertFalse(parser.isMRNAWayDown()); - assertTrue(parser.isCnaAmplified()); - assertFalse(parser.isCnaGained()); - assertTrue(parser.isMutated()); - assertTrue(parser.isGeneAltered()); - assertTrue(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:-3;", 2.0); - assertFalse(parser.isMRNAWayUp()); - assertTrue(parser.isMRNAWayDown()); - assertTrue(parser.isGeneAltered()); - assertTrue(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - try { - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:3;", -2.0); - } catch (Exception e) { - assertEquals("zScoreThreshold must be greater than 0", e.getMessage()); - } - - String[] genes = { "g1", "gene2" }; - OncoPrintSpecification anOncoPrintSpecification = new OncoPrintSpecification(genes); - - OncoPrintGeneDisplaySpec aDefaultOncoPrintGeneDisplaySpec = new OncoPrintGeneDisplaySpec(); - aDefaultOncoPrintGeneDisplaySpec.setDefault( 1.0, 1.0 ); - GeneSet aGeneSet = new GeneSet(); - String[] moreGenes = { "P53", "Last" }; - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec = TestOncoPrintSpecificationLibrary - .createTestOncoPrintGeneDisplaySpec(); - aGeneSet = new GeneSet(); - for (String g : moreGenes) { - aGeneSet.addGeneWithSpec(new GeneWithSpec(g, theOncoPrintGeneDisplaySpec)); - } - anOncoPrintSpecification.add(aGeneSet); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:3;", 2.0, 1.0, - aDefaultOncoPrintGeneDisplaySpec); - assertTrue(parser.isMRNAWayUp()); - assertFalse(parser.isMRNAWayDown()); - assertTrue(parser.isCnaAmplified()); - assertFalse(parser.isCnaGained()); - assertEquals(GeneticTypeLevel.Amplified, parser.getCNAlevel()); - assertTrue(parser.isMutated()); - assertTrue(parser.isGeneAltered()); - assertTrue(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = ValueParser.generateValueParser("g1", "COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:3;", 2.0, 1.0, - anOncoPrintSpecification); - assertTrue(parser.isMRNAWayUp()); - assertFalse(parser.isMRNAWayDown()); - assertTrue(parser.isCnaAmplified()); - assertFalse(parser.isCnaGained()); - assertEquals(GeneticTypeLevel.Amplified, parser.getCNAlevel()); - assertTrue(parser.isMutated()); - assertTrue(parser.isGeneAltered()); - assertTrue(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:1;MUTATION_EXTENDED:1;MRNA_EXPRESSION:-3;", 2.0, 1.0, - aDefaultOncoPrintGeneDisplaySpec); - assertFalse(parser.isMRNAWayUp()); - assertTrue(parser.isMRNAWayDown()); - assertFalse(parser.isCnaAmplified()); - assertFalse(parser.isCnaGained()); // default spec; shows all data, except - // only show CNA of AMP and HOMDEL - assertEquals(null, parser.getCNAlevel()); - assertTrue(parser.isMutated()); - assertTrue(parser.isGeneAltered()); - assertFalse(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, - theOncoPrintGeneDisplaySpec); - assertFalse(parser.isMRNAWayUp()); - assertTrue(parser.isMRNAWayDown()); - assertTrue(parser.isCnaAmplified()); - assertEquals(GeneticTypeLevel.Amplified, parser.getCNAlevel()); - assertFalse(parser.isCnaGained()); - assertFalse(parser.isMutated()); - assertTrue(parser.wasSequenced()); - assertTrue(parser.isGeneAltered()); - assertTrue(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - // no such gene - parser = ValueParser.generateValueParser("None", "sdfdsf", 0.0, 1.0,anOncoPrintSpecification); - assertEquals(null, parser); - - ParsedFullDataTypeSpec aParsedFullDataTypeSpec = new ParsedFullDataTypeSpec(); - aParsedFullDataTypeSpec.addSpec(new ConcreteDataTypeSpec(GeneticDataTypes.Methylation)); - aParsedFullDataTypeSpec.addSpec(new DiscreteDataTypeSpec(GeneticDataTypes.CopyNumberAlteration, ComparisonOp - .convertCode(">"), GeneticTypeLevel.HemizygouslyDeleted)); - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.5, 1.0, - aParsedFullDataTypeSpec.cleanUpInput()); - assertFalse(parser.isMRNAWayUp()); - assertFalse(parser.isMRNAWayDown()); - assertTrue(parser.isCnaAmplified()); - assertFalse(parser.isCnaGained()); - assertFalse(parser.isMutated()); - assertEquals(GeneticTypeLevel.Amplified, parser.getCNAlevel()); - assertTrue(parser.wasSequenced()); - assertTrue(parser.isGeneAltered()); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MRNA_EXPRESSION:1;", 0.5); - assertFalse(parser.isMutated()); - assertFalse(parser.wasSequenced()); - assertTrue(parser.isGeneAltered()); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MRNA_EXPRESSION:blah;MUTATION_EXTENDED:0;", 0.5); - assertFalse(parser.isMRNAWayUp()); - assertFalse(parser.isMRNAWayDown()); - assertTrue(parser.wasSequenced()); - assertTrue(parser.isGeneAltered()); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:;MRNA_EXPRESSION:;MUTATION_EXTENDED:;", 0.5); - assertFalse(parser.isMRNAWayUp()); - assertFalse(parser.isMRNAWayDown()); - - // TODO: IMPORTANT: these tests fail, but do we care about them? is "MUTATION:" a legitimate value? -// assertFalse(parser.wasSequenced()); -// assertFalse(parser.isGeneAltered()); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MRNA_EXPRESSION:1;MUTATION_EXTENDED:nan;", 0.5); - assertFalse(parser.isMutated()); - assertFalse(parser.wasSequenced()); - assertTrue(parser.isGeneAltered()); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MRNA_EXPRESSION:1;MUTATION_EXTENDED:0;", 0.5); - assertFalse(parser.isMutated()); - assertTrue(parser.wasSequenced()); - assertTrue(parser.isGeneAltered()); - - aParsedFullDataTypeSpec = new ParsedFullDataTypeSpec(); - aParsedFullDataTypeSpec.addSpec(new DiscreteDataTypeSpec(GeneticDataTypes.Mutation, ComparisonOp - .convertCode("<="), GeneticTypeLevel.Normal)); - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.5, 1.0, - aParsedFullDataTypeSpec.cleanUpInput()); - assertFalse(parser.isMutated()); - assertTrue(parser.wasSequenced()); - assertFalse(parser.isGeneAltered()); // because the filter only shows - // 'normal' mutation levels; an - // absurd use - - parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MRNA_EXPRESSION:1;", 0.5); - assertFalse(parser.isMutated()); - assertFalse(parser.wasSequenced()); - assertTrue(parser.isGeneAltered()); - - parser = ValueParser.generateValueParser("g1", "COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:3;", 1.0, 1.0, - anOncoPrintSpecification); - - assertTrue(parser.isCnaAmplified()); - assertFalse(parser.isCnaGained()); - assertTrue(parser.isMRNAWayUp()); - assertFalse(parser.isMRNAWayDown()); // because anOncoPrintSpecification - // has no mRNA inequalities, the - // zScore rules - assertTrue(parser.isMutated()); - - parser = ValueParser.generateValueParser("P53", "COPY_NUMBER_ALTERATION:1;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0, 1.0, - anOncoPrintSpecification); - assertFalse(parser.isCnaAmplified()); - assertTrue(parser.isCnaGained()); - assertFalse(parser.isCnaDiploid()); - assertFalse(parser.isCnaHemizygouslyDeleted()); - assertFalse(parser.isCnaHomozygouslyDeleted()); - assertFalse(parser.isMRNAWayUp()); - assertTrue(parser.isMRNAWayDown()); // because theOncoPrintGeneDisplaySpec - // filter rules combine to E<2 E>=3 - assertFalse(parser.isMutated()); // because filter rules ignores Mutations - - parser = new ValueParser("COPY_NUMBER_ALTERATION:1;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1.5;", 1.0f); - assertFalse(parser.isCnaAmplified()); - assertTrue(parser.isCnaGained()); - assertFalse(parser.isCnaDiploid()); - assertFalse(parser.isCnaHemizygouslyDeleted()); - assertFalse(parser.isCnaHomozygouslyDeleted()); - assertTrue(parser.isMRNAWayUp()); - assertFalse(parser.isMRNAWayDown()); - - try { - parser.isDiscreteTypeThisLevel(GeneticDataTypes.Expression, GeneticTypeLevel.Amplified); - Assert.fail("should throw IllegalArgumentException( )"); - } catch (Exception e) { - assertEquals("theDiscreteGeneticDataType is not a discrete datatype", e.getMessage()); - } - - } - - @Test - public void testIsDiscreteTypeAltered() { - - OncoPrintGeneDisplaySpec theOncoPrintGeneDisplaySpec = TestOncoPrintSpecificationLibrary - .createTestOncoPrintGeneDisplaySpec(); - ValueParser parser = new ValueParser("COPY_NUMBER_ALTERATION:2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, - theOncoPrintGeneDisplaySpec); - assertTrue(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:1;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, - theOncoPrintGeneDisplaySpec); - assertTrue(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:0;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, - theOncoPrintGeneDisplaySpec); - assertFalse(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:-1;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, - theOncoPrintGeneDisplaySpec); - assertFalse(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:-2;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, - theOncoPrintGeneDisplaySpec); - assertTrue(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("MUTATION:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, theOncoPrintGeneDisplaySpec); - assertFalse(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:nan;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, - theOncoPrintGeneDisplaySpec); - assertFalse(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION: JUNK;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, - theOncoPrintGeneDisplaySpec); - assertFalse(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - parser = new ValueParser("COPY_NUMBER_ALTERATION:4;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, - theOncoPrintGeneDisplaySpec); - assertFalse(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - ParsedFullDataTypeSpec aParsedFullDataTypeSpec = new ParsedFullDataTypeSpec( ); - aParsedFullDataTypeSpec.addSpec( new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Gained) ); - aParsedFullDataTypeSpec.addSpec( new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Amplified) ); - aParsedFullDataTypeSpec.addSpec( new DiscreteDataTypeSetSpec( GeneticDataTypes.CopyNumberAlteration, - GeneticTypeLevel.Diploid ) ); - theOncoPrintGeneDisplaySpec = aParsedFullDataTypeSpec.cleanUpInput(); - parser = new ValueParser("COPY_NUMBER_ALTERATION:0;MUTATION_EXTENDED:C135F;MRNA_EXPRESSION:1;", 0.0, 1.0, - theOncoPrintGeneDisplaySpec); - assertTrue(parser.isDiscreteTypeAltered(GeneticDataTypes.CopyNumberAlteration)); - - } - -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/util/UrlParamFilterTest.java b/core/src/test/java/org/mskcc/cbio/portal/util/UrlParamFilterTest.java deleted file mode 100644 index ad80f0575b3..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/util/UrlParamFilterTest.java +++ /dev/null @@ -1,43 +0,0 @@ -package org.mskcc.cbio.portal.util; - -import org.junit.Rule; -import org.junit.Test; -import org.junit.rules.ExpectedException; -import org.mockito.Mockito; - -import javax.servlet.FilterChain; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.security.InvalidParameterException; - -public class UrlParamFilterTest { - @Rule - public ExpectedException exceptionRule = ExpectedException.none(); - - @Test - public void shouldFilterMaliciousURL() throws ServletException, IOException { - HttpServletRequest request = Mockito.mock(HttpServletRequest.class); - Mockito.when(request.getParameter("configUrl")).thenReturn("asdf"); - HttpServletResponse response = Mockito.mock(HttpServletResponse.class); - FilterChain chain = Mockito.mock(FilterChain.class); - - exceptionRule.expect(InvalidParameterException.class); - new UrlParamFilter().doFilter(request, response, chain); - - Mockito.verify(chain, Mockito.times(0)).doFilter(request, response); - } - - @Test - public void shouldNotFilterRegularURL() throws ServletException, IOException { - HttpServletRequest request = Mockito.mock(HttpServletRequest.class); - Mockito.when(request.getParameter("configUrl")).thenReturn(null); - HttpServletResponse response = Mockito.mock(HttpServletResponse.class); - FilterChain chain = Mockito.mock(FilterChain.class); - - new UrlParamFilter().doFilter(request, response, chain); - - Mockito.verify(chain, Mockito.times(1)).doFilter(request, response); - } -} \ No newline at end of file diff --git a/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetGeneticProfiles.java b/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetGeneticProfiles.java deleted file mode 100644 index 229758146d9..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetGeneticProfiles.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoException; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -/** - * JUnit test for GeneticProfile class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestGetGeneticProfiles { - - @Test - public void testDaoGeneticProfile() throws DaoException { - - - String output = GetGeneticProfiles.getGeneticProfilesAsTable("study_tcga_pub"); - assertTrue(output.contains("study_tcga_pub_mrna\tmRNA expression (microarray)\tExpression levels (Agilent microarray).\t1\tMRNA_EXPRESSION\tfalse")); - assertTrue(output.contains("study_tcga_pub_mutations\tMutations\tMutation data from whole exome sequencing.\t1\tMUTATION_EXTENDED\ttrue")); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetMutSig.java b/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetMutSig.java deleted file mode 100644 index 7dcc69469c6..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetMutSig.java +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoGeneOptimized; -import org.mskcc.cbio.portal.dao.DaoGeneticProfile; -import org.mskcc.cbio.portal.dao.DaoMutSig; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.CanonicalGene; -import org.mskcc.cbio.portal.model.MutSig; -import org.mskcc.cbio.portal.dao.DaoException; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.io.*; - -/** - * @author Lennart Bastian - */ - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestGetMutSig { - - int studyId; - - @Before - public void setUp() throws DaoException - { - studyId = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub").getInternalId(); - DaoGeneticProfile.reCache(); - } - - @Test - public void testGetMutSig() throws DaoException, IOException { - - DaoGeneOptimized daoGeneOptimized = DaoGeneOptimized.getInstance(); - CanonicalGene gene = daoGeneOptimized.getGene("AKT1"); - CanonicalGene gene2 = daoGeneOptimized.getGene("AKT2"); - - MutSig mutSig = new MutSig(1, gene, 1, 502500, 20, 1E-11f, 1E-8f); - MutSig mutSig2 = new MutSig(1, gene2, 14, 273743, 3, 1E-11f, 1E-8f); - - assertTrue(1E-11f == mutSig.getpValue()); - assertTrue(1E-8f == mutSig2.getqValue()); - - DaoMutSig.addMutSig(mutSig); - DaoMutSig.addMutSig(mutSig2); - - StringBuffer stringBuffer = GetMutSig.getMutSig(studyId); - - String lines[] = stringBuffer.toString().split("\n"); - assertEquals("Cancer\tEntrez\tHugo\tRank\tN\tn\tnVal\tnVer\tCpG\tC+G\tA+T\tINDEL\tp\tq", lines[0]); - assertEquals("1\t207\tAKT1\t1\t502500\t20\t1.0E-11\t1.0E-8", lines[1]); - } -} - diff --git a/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetProfileData.java b/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetProfileData.java deleted file mode 100644 index 03b860a1061..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetProfileData.java +++ /dev/null @@ -1,120 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.*; -import org.mskcc.cbio.portal.model.*; -import org.mskcc.cbio.portal.util.*; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.io.File; -import java.io.IOException; -import java.util.ArrayList; - -/** - * JUnit test for GetProfileData class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestGetProfileData { - - int geneticProfileId; - - @Before - public void setUp() throws DaoException { - int studyId = DaoCancerStudy.getCancerStudyByStableId("study_tcga_pub").getInternalId(); - - DaoPatient.reCache(); - DaoSample.reCache(); - DaoGeneticProfile.reCache(); - - GeneticProfile newGeneticProfile = new GeneticProfile(); - newGeneticProfile.setCancerStudyId(studyId); - newGeneticProfile.setGeneticAlterationType(GeneticAlterationType.COPY_NUMBER_ALTERATION); - newGeneticProfile.setStableId("study_tcga_pub_test"); - newGeneticProfile.setProfileName("Barry CNA Results"); - newGeneticProfile.setDatatype("test"); - DaoGeneticProfile.addGeneticProfile(newGeneticProfile); - - geneticProfileId = DaoGeneticProfile.getGeneticProfileByStableId("study_tcga_pub_test").getGeneticProfileId(); - } - - @Test - public void testGetProfileData() throws DaoException, IOException { - DaoGeneOptimized daoGene = DaoGeneOptimized.getInstance(); - daoGene.addGene(new CanonicalGene(207, "AKT1")); - daoGene.addGene(new CanonicalGene(208, "AKT2")); - daoGene.addGene(new CanonicalGene(10000, "AKT3")); - daoGene.addGene(new CanonicalGene(369, "ARAF")); - daoGene.addGene(new CanonicalGene(472, "ATM")); - daoGene.addGene(new CanonicalGene(673, "BRAF")); - daoGene.addGene(new CanonicalGene(672, "BRCA1")); - daoGene.addGene(new CanonicalGene(675, "BRCA2")); - - ArrayList targetGeneList = new ArrayList (); - targetGeneList.add("AKT1"); - targetGeneList.add("AKT2"); - targetGeneList.add("AKT3"); - targetGeneList.add("ATM"); - targetGeneList.add("BRCA1"); - - ArrayList geneticProfileIdList = new ArrayList(); - geneticProfileIdList.add("study_tcga_pub_gistic"); - - ArrayList sampleIdList = new ArrayList (); - sampleIdList.add("TCGA-A1-A0SB-01"); - sampleIdList.add("TCGA-A1-A0SD-01"); - sampleIdList.add("TCGA-A1-A0SE-01"); - - GetProfileData getProfileData = new GetProfileData(geneticProfileIdList, targetGeneList, - sampleIdList, Boolean.FALSE); - String out = getProfileData.getRawContent(); - String lines[] = out.split("\n"); - assertEquals("# DATA_TYPE\t Putative copy-number alterations from GISTIC" , lines[0]); - assertEquals("# COLOR_GRADIENT_SETTINGS\t COPY_NUMBER_ALTERATION", lines[1]); - assertTrue(lines[2].startsWith("GENE_ID\tCOMMON\tTCGA-A1-A0SB-01\t" + - "TCGA-A1-A0SD-01\tTCGA-A1-A0SE-01")); - assertTrue(lines[3].startsWith("207\tAKT1\t0\t0\t0")); - assertTrue(lines[4].startsWith("208\tAKT2\t0\t0\t0")); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetSampleList.java b/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetSampleList.java deleted file mode 100644 index 659d4a7d8c7..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetSampleList.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -/** - * JUnit test for GetSampleLists class. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestGetSampleList { - - @Test - public void testGetSampleList() throws Exception { - - String[] sampleList = GetSampleLists.getSampleListsAsTable("study_tcga_pub").split("\n"); - assertTrue(sampleList[1].startsWith("study_tcga_pub_all\tAll Tumors\tAll tumor samples (14 samples)\t1\tTCGA-A1-A0SB-01")); - } -} diff --git a/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetTypesOfCancer.java b/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetTypesOfCancer.java deleted file mode 100644 index 1e9e321617b..00000000000 --- a/core/src/test/java/org/mskcc/cbio/portal/web_api/TestGetTypesOfCancer.java +++ /dev/null @@ -1,180 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.portal.web_api; - - -import org.junit.After; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mskcc.cbio.portal.dao.DaoCancerStudy; -import org.mskcc.cbio.portal.dao.DaoException; -import org.mskcc.cbio.portal.dao.DaoTypeOfCancer; -import org.mskcc.cbio.portal.model.CancerStudy; -import org.mskcc.cbio.portal.model.TypeOfCancer; -import org.springframework.test.annotation.Rollback; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.transaction.annotation.Transactional; - -import static org.junit.Assert.*; - -import java.io.IOException; - -/** - * JUnit Tests for GetTypes of Cancer. - * - * @author Ethan Cerami, Arthur Goldberg, Ersin Ciftci. - */ -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations = { "classpath:/applicationContext-dao.xml" }) -@Rollback -@Transactional -public class TestGetTypesOfCancer { - - public static final String DESCRIPTION = "The Cancer Genome Atlas (TCGA)" + - " Breast Invasive Carcinoma project. 825 cases.
    Nature 2012. " + - "Raw data via the TCGA Data Portal."; - - - @Before - public void setUp() throws DaoException { - //clear cache to ensure this test is not affected by other tests (i.e. some tests add the same - //samples to the DB and these remain in the cache after tests are done...if tests don't implement - //teardown properly). - DaoCancerStudy.reCacheAll(); - } - - @After - public void tearDown() { - //clear any cached data: - DaoCancerStudy.reCacheAll(); - } - - /** - * Tests Get Types of Cancer. - * @throws DaoException Database Error. - * @throws IOException IO Error. - * @throws ProtocolException ProtocolError. - */ - @Test - public void testGetTypesOfCancerEmpty() throws DaoException, IOException, ProtocolException { - - // First, verify that protocol exception is thrown when there are no cancer types - try { - DaoCancerStudy.deleteCancerStudy("study_tcga_pub"); - DaoTypeOfCancer.deleteAllTypesOfCancer(); - String output = GetTypesOfCancer.getTypesOfCancer(); - fail ("ProtocolException should have been thrown."); - } catch (ProtocolException e) { - assertEquals(e.getMsg(), "No Types of Cancer Available."); - } - } - - @Test - public void testGetTypesOfCancer() throws DaoException, IOException, ProtocolException { - //remove study and all cancer types: - DaoCancerStudy.deleteCancerStudy("study_tcga_pub"); - DaoTypeOfCancer.deleteAllTypesOfCancer(); - - // Verify a few of the data lines - TypeOfCancer typeOfCancer1 = new TypeOfCancer(); - typeOfCancer1.setName("Adenoid Cystic Breast Cancer"); - typeOfCancer1.setTypeOfCancerId("acbc"); - DaoTypeOfCancer.addTypeOfCancer(typeOfCancer1); - - TypeOfCancer typeOfCancer2 = new TypeOfCancer(); - typeOfCancer2.setName("Breast Invasive Carcinoma"); - typeOfCancer2.setTypeOfCancerId("brca"); - DaoTypeOfCancer.addTypeOfCancer(typeOfCancer2); - - String output = GetTypesOfCancer.getTypesOfCancer(); - assertTrue(output.contains("acbc\tAdenoid Cystic Breast Cancer")); - assertTrue(output.contains("brca\tBreast Invasive Carcinoma")); - - // Verify header - String lines[] = output.split("\n"); - assertEquals ("type_of_cancer_id\tname", lines[0].trim()); - } - - /** - * Tests Get Cancer Studies. - * @throws DaoException Database Error. - * @throws IOException IO Error. - * @throws ProtocolException ProtocolError. - */ - @Test - public void testGetCancerStudiesEmpty() throws DaoException, IOException, ProtocolException { - - // First, verify that protocol exception is thrown when there are no cancer studies - try { - DaoCancerStudy.deleteCancerStudy("study_tcga_pub"); - DaoTypeOfCancer.deleteAllTypesOfCancer(); - String output = GetTypesOfCancer.getCancerStudies(); - fail ("ProtocolException should have been thrown."); - } catch (ProtocolException e) { - assertEquals(e.getMsg(), "No Cancer Studies Available."); - } - } - - @Test - public void testGetCancerStudies() throws DaoException, IOException, ProtocolException { - - //remove study and all cancer types: - DaoCancerStudy.deleteCancerStudy("study_tcga_pub"); - DaoTypeOfCancer.deleteAllTypesOfCancer(); - - //Add dummy cancer type and dummy study on empty DB: - TypeOfCancer typeOfCancer2 = new TypeOfCancer(); - typeOfCancer2.setName("Breast Invasive Carcinoma"); - typeOfCancer2.setTypeOfCancerId("brca_testapi2"); - DaoTypeOfCancer.addTypeOfCancer(typeOfCancer2); - - CancerStudy cancerStudy = new CancerStudy("Breast Invasive Carcinoma (TCGA, Nature 2012)", DESCRIPTION, - "study_tcga_pub_testapi2", "brca_testapi2", true); - cancerStudy.setReferenceGenome("hg19"); - DaoCancerStudy.addCancerStudy(cancerStudy, true); - - String output = GetTypesOfCancer.getCancerStudies(); - String lines[] = output.split("\n"); - - // Verify we get exactly two lines - assertEquals (2, lines.length); - - // Verify header - assertEquals ("cancer_study_id\tname\tdescription", lines[0].trim()); - - // Verify data - assertEquals ("study_tcga_pub_testapi2\tBreast Invasive Carcinoma (TCGA, Nature 2012)\t" + DESCRIPTION, lines[1].trim()); - } -} diff --git a/core/src/test/resources/EGFR_HUMAN.json b/core/src/test/resources/EGFR_HUMAN.json deleted file mode 100644 index 37fbdc33bcf..00000000000 --- a/core/src/test/resources/EGFR_HUMAN.json +++ /dev/null @@ -1 +0,0 @@ -[{"length":"1210","regions":[{"modelStart":"1","modelEnd":"111","colour":"#2dcf00","endStyle":"jagged","end":"168","display":null,"startStyle":"curved","aliEnd":"167","modelLength":"112","text":"Recep_L_domain","href":"/family/PF01030","type":"pfama","metadata":{"scoreName":"e-value","score":"2.4e-27","description":"Receptor L domain","end":"168","accession":"PF01030","database":"pfam","aliEnd":"167","identifier":"Recep_L_domain","type":"Domain","aliStart":"57","start":"57"},"aliStart":"57","start":57},{"modelStart":"10","modelEnd":"149","colour":"#ff5353","endStyle":"curved","end":"338","display":null,"startStyle":"jagged","aliEnd":"338","modelLength":"149","text":"Furin-like","href":"/family/PF00757","type":"pfama","metadata":{"scoreName":"e-value","score":"4e-26","description":"Furin-like cysteine rich region","end":"338","accession":"PF00757","database":"pfam","aliEnd":"338","identifier":"Furin-like","type":"Family","aliStart":"185","start":"177"},"aliStart":"185","start":"177"},{"modelStart":"1","modelEnd":"111","colour":"#2dcf00","endStyle":"jagged","end":"481","display":null,"startStyle":"curved","aliEnd":"480","modelLength":"112","text":"Recep_L_domain","href":"/family/PF01030","type":"pfama","metadata":{"scoreName":"e-value","score":"6.4e-25","description":"Receptor L domain","end":"481","accession":"PF01030","database":"pfam","aliEnd":"480","identifier":"Recep_L_domain","type":"Domain","aliStart":"361","start":"361"},"aliStart":"361","start":"361"},{"modelStart":"3","modelEnd":"256","colour":"#5b5bff","endStyle":"jagged","end":"968","display":null,"startStyle":"jagged","aliEnd":"965","modelLength":"259","text":"Pkinase_Tyr","href":"/family/PF07714","type":"pfama","metadata":{"scoreName":"e-value","score":"1e-83","description":"Protein tyrosine kinase","end":"968","accession":"PF07714","database":"pfam","aliEnd":"965","identifier":"Pkinase_Tyr","type":"Domain","aliStart":"714","start":"712"},"aliStart":"714","start":"712"}],"markups":[{"lineColour":"#ff0000","colour":"#aaaaaa","end":"499","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"470","end":"499"},"type":"disulphide","start":"470"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"628","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"620","end":"628"},"type":"disulphide","start":"620"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"307","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"295","end":"307"},"type":"disulphide","start":"295"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"515","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"506","end":"515"},"type":"disulphide","start":"506"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"535","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"526","end":"535"},"type":"disulphide","start":"526"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"231","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"219","end":"231"},"type":"disulphide","start":"219"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"333","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"329","end":"333"},"type":"disulphide","start":"329"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"291","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"264","end":"291"},"type":"disulphide","start":"264"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"187","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"157","end":"187"},"type":"disulphide","start":"157"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"617","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"595","end":"617"},"type":"disulphide","start":"595"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"579","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"562","end":"579"},"type":"disulphide","start":"562"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"199","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"190","end":"199"},"type":"disulphide","start":"190"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"260","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"251","end":"260"},"type":"disulphide","start":"251"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"591","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"582","end":"591"},"type":"disulphide","start":"582"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"207","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"194","end":"207"},"type":"disulphide","start":"194"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"571","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"558","end":"571"},"type":"disulphide","start":"558"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"248","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"236","end":"248"},"type":"disulphide","start":"236"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"223","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"215","end":"223"},"type":"disulphide","start":"215"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"523","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"510","end":"523"},"type":"disulphide","start":"510"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"362","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"337","end":"362"},"type":"disulphide","start":"337"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"240","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"232","end":"240"},"type":"disulphide","start":"232"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"636","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"624","end":"636"},"type":"disulphide","start":"624"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"555","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"539","end":"555"},"type":"disulphide","start":"539"},{"lineColour":"#ff0000","colour":"#aaaaaa","end":58,"display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"31","end":"58"},"type":"disulphide","start":31},{"lineColour":"#ff0000","colour":"#aaaaaa","end":"326","display":null,"v_align":"top","metadata":{"database":"UniProt","type":"disulphide","start":"311","end":"326"},"type":"disulphide","start":"311"},{"lineColour":"#333333","colour":"#ad8bfe","display":null,"residue":"D","headStyle":"diamond","v_align":"top","type":"Swiss-Prot predicted active site","metadata":{"database":"UniProt","description":"D Swiss-Prot predicted active site:Proton acceptor (By similarity)","start":"837"},"start":"837"},{"lineColour":"#333333","colour":"#e469fe","display":null,"residue":"D","headStyle":"diamond","v_align":"top","type":"Pfam predicted active site","metadata":{"database":"pfam","description":"D Pfam predicted active site","start":"837"},"start":"837"}],"metadata":{"database":"uniprot","identifier":"EGFR_HUMAN","description":"Epidermal growth factor receptor EC=2.7.10.1","organism":"Homo sapiens (Human)","accession":"P00533","taxid":"9606"},"motifs":[{"colour":"#ffa500","type":"sig_p","metadata":{"database":"Phobius","type":"sig_p","start":"1","end":"24"},"start":1,"end":24,"display":null},{"colour":"#ff4848","type":"transmembrane","metadata":{"database":"Phobius","type":"transmembrane","start":"646","end":"667"},"start":"646","end":"667","display":null},{"colour":"#00ffff","type":"low_complexity","metadata":{"database":"seg","score":"2.1700","type":"low_complexity","start":"7","end":"25"},"start":25,"end":25,"display":false},{"colour":"#00ffff","type":"low_complexity","metadata":{"database":"seg","score":"2.0500","type":"low_complexity","start":"651","end":"666"},"start":"651","end":"666","display":false},{"colour":"#86bcff","type":"low_complexity","metadata":{"database":"seg","score":"2.6200","type":"low_complexity","start":"675","end":"692"},"start":"675","end":"692","display":null},{"colour":"#00ffff","type":"low_complexity","metadata":{"database":"seg","score":"2.0700","type":"low_complexity","start":"1002","end":"1015"},"start":"1002","end":"1015","display":false},{"colour":"#00ffff","type":"low_complexity","metadata":{"database":"seg","score":"2.4000","type":"low_complexity","start":"1025","end":"1046"},"start":"1025","end":"1046","display":false},{"colour":["#7fa1ff","#ff7fa1","#a1ff7f"],"href":"/pfamb/PB001637","type":"pfamb","metadata":{"database":"pfam","identifier":"Pfam-B_1637","type":"Pfam-B","start":"969","end":"1208","accession":"PB001637"},"start":"969","end":"1208","display":null}]}] \ No newline at end of file diff --git a/core/src/test/resources/O14640.json b/core/src/test/resources/O14640.json deleted file mode 100644 index 3fdeb1c4e25..00000000000 --- a/core/src/test/resources/O14640.json +++ /dev/null @@ -1 +0,0 @@ -[{"length":"695","regions":[{"modelStart":"1","modelEnd":"82","colour":"#2dcf00","endStyle":"jagged","end":85,"display":null,"startStyle":"curved","aliEnd":"83","modelLength":"84","text":"DIX","href":"/family/PF00778","type":"pfama","metadata":{"scoreName":"e-value","score":"6.4e-31","description":"DIX domain","end":"85","accession":"PF00778","database":"pfam","aliEnd":"83","identifier":"DIX","type":"Family","aliStart":"1","start":"1"},"aliStart":"1","start":1},{"modelStart":"1","modelEnd":"73","colour":"#ff5353","endStyle":"curved","end":"215","display":null,"startStyle":"curved","aliEnd":"215","modelLength":"73","text":"Dishevelled","href":"/family/PF02377","type":"pfama","metadata":{"scoreName":"e-value","score":"9.3e-26","description":"Dishevelled specific domain","end":"215","accession":"PF02377","database":"pfam","aliEnd":"215","identifier":"Dishevelled","type":"Family","aliStart":"144","start":"144"},"aliStart":"144","start":"144"},{"modelStart":"2","modelEnd":"80","colour":"#5b5bff","endStyle":"jagged","end":"336","display":null,"startStyle":"jagged","aliEnd":"335","modelLength":"81","text":"PDZ","href":"/family/PF00595","type":"pfama","metadata":{"scoreName":"e-value","score":"9.9e-19","description":"PDZ domain (Also known as DHR or GLGF)","end":"336","accession":"PF00595","database":"pfam","aliEnd":"335","identifier":"PDZ","type":"Domain","aliStart":"252","start":"251"},"aliStart":"252","start":"251"},{"modelStart":"1","modelEnd":"74","colour":"#ebd61d","endStyle":"curved","end":"497","display":null,"startStyle":"curved","aliEnd":"497","modelLength":"74","text":"DEP","href":"/family/PF00610","type":"pfama","metadata":{"scoreName":"e-value","score":"1.4e-12","description":"Domain found in Dishevelled, Egl-10, and Pleckstrin (DEP)","end":"497","accession":"PF00610","database":"pfam","aliEnd":"497","identifier":"DEP","type":"Domain","aliStart":"428","start":"428"},"aliStart":"428","start":"428"},{"modelStart":"1","modelEnd":"203","colour":"#ba21e0","endStyle":"curved","end":"685","display":null,"startStyle":"curved","aliEnd":"685","modelLength":"203","text":"Dsh_C","href":"/family/PF12316","type":"pfama","metadata":{"scoreName":"e-value","score":"3.2e-63","description":"Segment polarity protein dishevelled (Dsh) C terminal","end":"685","accession":"PF12316","database":"pfam","aliEnd":"685","identifier":"Dsh_C","type":"Family","aliStart":"503","start":"503"},"aliStart":"503","start":"503"}],"markups":[],"metadata":{"database":"uniprot","identifier":"DVL1_HUMAN","description":"Segment polarity protein dishevelled homolog DVL-1","organism":"Homo sapiens (Human)","accession":"O14640","taxid":"9606"},"motifs":[{"colour":"#00ffff","type":"low_complexity","metadata":{"database":"seg","score":"1.6700","type":"low_complexity","start":"144","end":"158"},"start":"144","end":"158","display":false},{"colour":"#86bcff","type":"low_complexity","metadata":{"database":"seg","score":"3.2400","type":"low_complexity","start":"176","end":"230"},"start":216,"end":"230","display":null},{"colour":"#86bcff","type":"low_complexity","metadata":{"database":"seg","score":"2.1300","type":"low_complexity","start":"235","end":"246"},"start":"235","end":"246","display":null},{"colour":"#86bcff","type":"low_complexity","metadata":{"database":"seg","score":"2.3200","type":"low_complexity","start":"380","end":"397"},"start":"380","end":"397","display":null},{"colour":"#00ffff","type":"low_complexity","metadata":{"database":"seg","score":"2.8200","type":"low_complexity","start":"522","end":"554"},"start":"522","end":"554","display":false},{"colour":"#00ffff","type":"low_complexity","metadata":{"database":"seg","score":"2.9000","type":"low_complexity","start":"557","end":"604"},"start":"557","end":"604","display":false},{"colour":"#00ffff","type":"low_complexity","metadata":{"database":"seg","score":"1.5700","type":"low_complexity","start":"653","end":"663"},"start":"653","end":"663","display":false}]}] \ No newline at end of file diff --git a/core/src/test/resources/all_cases.txt b/core/src/test/resources/all_cases.txt deleted file mode 100644 index d725bf72389..00000000000 --- a/core/src/test/resources/all_cases.txt +++ /dev/null @@ -1,206 +0,0 @@ -TCGA-02-0001 -TCGA-02-0003 -TCGA-02-0004 -TCGA-02-0006 -TCGA-02-0007 -TCGA-02-0009 -TCGA-02-0010 -TCGA-02-0011 -TCGA-02-0014 -TCGA-02-0015 -TCGA-02-0016 -TCGA-02-0021 -TCGA-02-0023 -TCGA-02-0024 -TCGA-02-0025 -TCGA-02-0026 -TCGA-02-0027 -TCGA-02-0028 -TCGA-02-0033 -TCGA-02-0034 -TCGA-02-0037 -TCGA-02-0038 -TCGA-02-0039 -TCGA-02-0043 -TCGA-02-0046 -TCGA-02-0047 -TCGA-02-0048 -TCGA-02-0052 -TCGA-02-0054 -TCGA-02-0055 -TCGA-02-0057 -TCGA-02-0058 -TCGA-02-0060 -TCGA-02-0064 -TCGA-02-0068 -TCGA-02-0069 -TCGA-02-0070 -TCGA-02-0071 -TCGA-02-0074 -TCGA-02-0075 -TCGA-02-0079 -TCGA-02-0080 -TCGA-02-0083 -TCGA-02-0084 -TCGA-02-0085 -TCGA-02-0086 -TCGA-02-0087 -TCGA-02-0089 -TCGA-02-0099 -TCGA-02-0102 -TCGA-02-0104 -TCGA-02-0106 -TCGA-02-0107 -TCGA-02-0111 -TCGA-02-0113 -TCGA-02-0114 -TCGA-02-0115 -TCGA-02-0116 -TCGA-02-0258 -TCGA-02-0260 -TCGA-02-0266 -TCGA-02-0269 -TCGA-02-0271 -TCGA-02-0281 -TCGA-02-0285 -TCGA-02-0289 -TCGA-02-0290 -TCGA-02-0317 -TCGA-02-0321 -TCGA-02-0324 -TCGA-02-0325 -TCGA-02-0326 -TCGA-02-0330 -TCGA-02-0332 -TCGA-02-0333 -TCGA-02-0337 -TCGA-02-0338 -TCGA-02-0339 -TCGA-02-0422 -TCGA-02-0430 -TCGA-02-0432 -TCGA-02-0439 -TCGA-02-0440 -TCGA-02-0446 -TCGA-02-0451 -TCGA-02-0456 -TCGA-06-0122 -TCGA-06-0124 -TCGA-06-0125 -TCGA-06-0126 -TCGA-06-0127 -TCGA-06-0128 -TCGA-06-0129 -TCGA-06-0130 -TCGA-06-0132 -TCGA-06-0133 -TCGA-06-0137 -TCGA-06-0138 -TCGA-06-0139 -TCGA-06-0141 -TCGA-06-0143 -TCGA-06-0145 -TCGA-06-0146 -TCGA-06-0147 -TCGA-06-0148 -TCGA-06-0149 -TCGA-06-0152 -TCGA-06-0154 -TCGA-06-0156 -TCGA-06-0157 -TCGA-06-0158 -TCGA-06-0162 -TCGA-06-0164 -TCGA-06-0166 -TCGA-06-0168 -TCGA-06-0169 -TCGA-06-0171 -TCGA-06-0173 -TCGA-06-0174 -TCGA-06-0175 -TCGA-06-0176 -TCGA-06-0177 -TCGA-06-0178 -TCGA-06-0179 -TCGA-06-0182 -TCGA-06-0184 -TCGA-06-0185 -TCGA-06-0187 -TCGA-06-0188 -TCGA-06-0189 -TCGA-06-0190 -TCGA-06-0194 -TCGA-06-0195 -TCGA-06-0197 -TCGA-06-0201 -TCGA-06-0206 -TCGA-06-0208 -TCGA-06-0209 -TCGA-06-0210 -TCGA-06-0211 -TCGA-06-0213 -TCGA-06-0214 -TCGA-06-0219 -TCGA-06-0221 -TCGA-06-0237 -TCGA-06-0238 -TCGA-06-0241 -TCGA-06-0394 -TCGA-06-0397 -TCGA-06-0402 -TCGA-06-0409 -TCGA-06-0410 -TCGA-06-0412 -TCGA-06-0413 -TCGA-06-0414 -TCGA-06-0644 -TCGA-06-0645 -TCGA-06-0646 -TCGA-06-0648 -TCGA-08-0244 -TCGA-08-0246 -TCGA-08-0344 -TCGA-08-0345 -TCGA-08-0346 -TCGA-08-0347 -TCGA-08-0348 -TCGA-08-0349 -TCGA-08-0350 -TCGA-08-0351 -TCGA-08-0352 -TCGA-08-0353 -TCGA-08-0354 -TCGA-08-0355 -TCGA-08-0356 -TCGA-08-0357 -TCGA-08-0358 -TCGA-08-0359 -TCGA-08-0360 -TCGA-08-0373 -TCGA-08-0375 -TCGA-08-0380 -TCGA-08-0385 -TCGA-08-0386 -TCGA-08-0389 -TCGA-08-0390 -TCGA-08-0392 -TCGA-08-0509 -TCGA-08-0510 -TCGA-08-0511 -TCGA-08-0512 -TCGA-08-0514 -TCGA-08-0516 -TCGA-08-0517 -TCGA-08-0518 -TCGA-08-0520 -TCGA-08-0521 -TCGA-08-0522 -TCGA-08-0524 -TCGA-08-0525 -TCGA-08-0529 -TCGA-08-0531 -TCGA-12-0615 -TCGA-12-0616 -TCGA-12-0618 -TCGA-12-0619 -TCGA-12-0620 diff --git a/core/src/test/resources/applicationContext-dao.xml b/core/src/test/resources/applicationContext-dao.xml deleted file mode 100644 index 0f65a791262..00000000000 --- a/core/src/test/resources/applicationContext-dao.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - file:///#{systemEnvironment['PORTAL_HOME']}/src/main/resources/portal.properties - file:///#{systemEnvironment['PORTAL_HOME']}/src/main/resources/maven.properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - mysql - h2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/core/src/test/resources/cancer_study.txt b/core/src/test/resources/cancer_study.txt deleted file mode 100644 index bf0f6fc1312..00000000000 --- a/core/src/test/resources/cancer_study.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: test_brca -type_of_cancer: brca -name: Breast Cancer study 1 -description: Breast cancer data. Description to be added. -reference_genome: hg19 \ No newline at end of file diff --git a/core/src/test/resources/cancer_study_bad.txt b/core/src/test/resources/cancer_study_bad.txt deleted file mode 100644 index bd5aa14f1c6..00000000000 --- a/core/src/test/resources/cancer_study_bad.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: test_brca_2 -type_of_cancer: brcaXXX -name: Breast Cancer study 1 -description: Breast cancer data. Description to be added. \ No newline at end of file diff --git a/core/src/test/resources/cancer_study_bad_short_name.txt b/core/src/test/resources/cancer_study_bad_short_name.txt deleted file mode 100644 index bd5aa14f1c6..00000000000 --- a/core/src/test/resources/cancer_study_bad_short_name.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: test_brca_2 -type_of_cancer: brcaXXX -name: Breast Cancer study 1 -description: Breast cancer data. Description to be added. \ No newline at end of file diff --git a/core/src/test/resources/cancers.txt b/core/src/test/resources/cancers.txt deleted file mode 100644 index 9244cb30910..00000000000 --- a/core/src/test/resources/cancers.txt +++ /dev/null @@ -1,22 +0,0 @@ -BLCA Bladder Urothelial Carcinoma Bladder orange Bladder -BRCA Breast invasive carcinoma Breast red Breast -CESC Cervical Squamous Cell Carcinoma Cervical white Cervical -COAD Colon adenocarcinoma Colon green Colorectal -GBM Glioblastoma multiforme Glioblastoma blue GBM -HNSC Head and Neck squamous cell carcinoma Head,Neck pink Head And Neck -KIRC Kidney renal clear cell carcinoma Kidney,Renal,Clear cell black Kidney -KIRP Kidney renal papillary cell carcinoma Kidney,Renal,Papillary gray Kidney -LAML Acute Myeloid Leukemia Leukemia yellow LAML -LGG Brain Lower Grade Glioma Brain Lower Grade darkblue LGG -LIHC Liver hepatocellular carcinoma Liver,Hepatocellular orange Liver -LUAD Lung adenocarcinoma Lung,Adenocarcinoma orange Lung -LUSC Lung squamous cell carcinoma Lung,Squamous orange Lung -OV Ovarian serous cystadenocarcinoma Ovarian,Cystadenocarcinoma orange SHORTNAME -PAAD Pancreatic adenocarcinoma Pancreatic orange SHORTNAME -PRAD Prostate adenocarcinoma Prostate orange SHORTNAME -READ Rectum adenocarcinoma Rectum orange SHORTNAME -SARC Sarcoma Sarcoma orange SHORTNAME -STAD Stomach adenocarcinoma Stomach orange SHORTNAME -THCA Thyroid carcinoma Thyroid orange SHORTNAME -UCEC Uterine Corpus Endometrioid Carcinoma Endometrioid orange SHORTNAME -COADREAD Colon and Rectum adenocarcinoma Colon,Rectum,Colorectal orange SHORTNAME diff --git a/core/src/test/resources/case_list_test.txt b/core/src/test/resources/case_list_test.txt deleted file mode 100644 index 2bce8d3af31..00000000000 --- a/core/src/test/resources/case_list_test.txt +++ /dev/null @@ -1 +0,0 @@ -cancer_study_identifier: gbm stable_id: gbm_6 case_list_name: GBM 6 case_list_description: GBM 6 Case List Description case_list_category: other case_list_ids: TCGA-02-0001 TCGA-02-0003 TCGA-02-0006 TCGA-02-0007 TCGA-02-0009 TCGA-02-0010 \ No newline at end of file diff --git a/core/src/test/resources/cases_excluded_test.txt b/core/src/test/resources/cases_excluded_test.txt deleted file mode 100644 index 50312ef67a2..00000000000 --- a/core/src/test/resources/cases_excluded_test.txt +++ /dev/null @@ -1,19 +0,0 @@ -TCGA-A1-A0SB-01 No -TCGA-A1-A0SD-01 No -TCGA-A1-A0SE-01 No -TCGA-06-0119-01 No -TCGA-06-0121-01 No -TCGA-06-0140-01 No -TCGA-06-0142-01 No -TCGA-06-0150-01 No -TCGA-06-0151-01 No -TCGA-06-0159-01 No -TCGA-06-0160-01 No -TCGA-06-0165-01 No -TCGA-06-0167-01 No -TCGA-06-0216-01 No -TCGA-06-0240-01 No -TCGA-07-0227-01 No -TCGA-07-0249-01 No -TCGA-08-0245-01 No -TCGA-08-0384-01 No \ No newline at end of file diff --git a/core/src/test/resources/clinical_data.txt b/core/src/test/resources/clinical_data.txt deleted file mode 100644 index 88c81ebba78..00000000000 --- a/core/src/test/resources/clinical_data.txt +++ /dev/null @@ -1,494 +0,0 @@ -#PATIENT_ID AGE OS_STATUS PRIMARYTHERAPYOUTCOMESUCCESS PERSONNEOPLASMCANCERSTATUS OS_MONTHS DFS_STATUS DFS_MONTHS PLATINUMFREEINTERVAL (MOS)* PLATINUMSTATUS SAMPLE_ID TUMORSTAGE TUMORGRADE TUMORRESIDUALDISEASE -#Patient Identfier Age at Diagnosis Overall Survival Status Primary Therapy Outcome Success Person Neoplasm Cancer Status Overall Survival (Months) Disease Free Status Disease Free Status (Months) PlatinumFreeInterval (mos)* Platinum Status Sample Identifier Tumor Stage Tumor Grade Tumor Residual Disease -#STRING NUMBER STRING STRING STRING STRING STRING STRING STRING STRING STRING NUMBER STRING STRING -#PATIENT PATIENT PATIENT PATIENT PATIENT PATIENT PATIENT PATIENT PATIENT PATIENT SAMPLE SAMPLE SAMPLE SAMPLE -#1 1 1 1 1 1 1 1 1 1 1 1 1 1 -PATIENT_ID AGE OS_STATUS PRIMARYTHERAPYOUTCOMESUCCESS PERSONNEOPLASMCANCERSTATUS OS_MONTHS DFS_STATUS DFS_MONTHS PLATINUMFREEINTERVAL (MOS)* PLATINUMSTATUS SAMPLE_ID TUMORSTAGE TUMORGRADE TUMORRESIDUALDISEASE -TCGA-A1-A0SB 79.04 1:DECEASED COMPLETE RESPONSE WITH TUMOR 43.8 1:Recurred/Progressed 15.05 9.6 Sensitive TCGA-A1-A0SB-01 IIIC G3 1-10 mm -TCGA-A1-A0SC 70.64 1:DECEASED WITH TUMOR 40.89 1:Recurred/Progressed 12.95 6.92 Sensitive TCGA-A1-A0SC-01 IIIC G3 1-10 mm -TCGA-A1-A0SI 55.53 0:LIVING COMPLETE RESPONSE TUMOR FREE 49.02 0:DiseaseFree 49.02 MISSING TCGA-A1-A0SI-01 IIIB G3 No Macroscopic disease -TCGA-A1-A0SE 78.42 1:DECEASED WITH TUMOR 2.03 1:Recurred/Progressed MISSING MISSING TCGA-A1-A0SE-01 IIIC G2 No Macroscopic disease -TCGA-04-1338 78.87 0:LIVING WITH TUMOR 46.49 1:Recurred/Progressed 12.46 5.8 Resistant TCGA-04-1338-01 IIIC G3 1-10 mm -TCGA-04-1341 85.52 0:LIVING 0:DiseaseFree MISSING MISSING TCGA-04-1341-01 G3 -TCGA-04-1342 80.82 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 18.46 1:Recurred/Progressed MISSING MISSING TCGA-04-1342-01 IV G2 >20mm -TCGA-04-1343 72.41 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 11.84 1:Recurred/Progressed MISSING MISSING TCGA-04-1343-01 IV G3 >20mm -TCGA-04-1346 73.6 0:LIVING COMPLETE RESPONSE TUMOR FREE 65.31 0:DiseaseFree 65.31 MISSING TCGA-04-1346-01 IIIC G2 -TCGA-04-1347 81.36 0:LIVING COMPLETE RESPONSE TUMOR FREE 62.89 0:DiseaseFree 62.89 57.4 Sensitive TCGA-04-1347-01 IV G3 No Macroscopic disease -TCGA-04-1348 44.48 1:DECEASED COMPLETE RESPONSE WITH TUMOR 48.62 1:Recurred/Progressed 18.82 12.8 Sensitive TCGA-04-1348-01 IIIB G3 1-10 mm -TCGA-04-1349 69.06 1:DECEASED COMPLETE RESPONSE WITH TUMOR 21.64 1:Recurred/Progressed 14.07 1.5 Resistant TCGA-04-1349-01 IV G3 -TCGA-04-1350 46.41 1:DECEASED STABLE DISEASE WITH TUMOR 63.8 1:Recurred/Progressed 3.64 MISSING TCGA-04-1350-01 IIIC G3 >20mm -TCGA-04-1356 62.61 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 49.15 1:Recurred/Progressed 5.11 MISSING TCGA-04-1356-01 IIC G3 -TCGA-04-1357 52.05 0:LIVING 0:DiseaseFree MISSING MISSING TCGA-04-1357-01 IIIB G3 -TCGA-04-1361 57.15 0:LIVING STABLE DISEASE 32.43 1:Recurred/Progressed 30.36 MISSING TCGA-04-1361-01 IIIB G3 No Macroscopic disease -TCGA-04-1362 59.58 1:DECEASED WITH TUMOR 44.2 1:Recurred/Progressed 7.31 1.7 Resistant TCGA-04-1362-01 IIC G3 1-10 mm -TCGA-04-1364 61.08 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 33.61 1:Recurred/Progressed 9.48 3.3 Resistant TCGA-04-1364-01 IIIC G3 1-10 mm -TCGA-04-1365 87.47 0:LIVING COMPLETE RESPONSE WITH TUMOR 76.33 1:Recurred/Progressed 43.54 37.4 Sensitive TCGA-04-1365-01 IIIB G3 -TCGA-04-1367 50.89 0:LIVING COMPLETE RESPONSE TUMOR FREE 71.28 0:DiseaseFree 71.28 64.9 Sensitive TCGA-04-1367-01 IIIC G3 No Macroscopic disease -TCGA-04-1514 45.82 1:DECEASED COMPLETE RESPONSE TUMOR FREE 56.39 1:Recurred/Progressed 40.03 34 Sensitive TCGA-04-1514-01 IIIA G2 No Macroscopic disease -TCGA-04-1517 79.57 1:DECEASED COMPLETE RESPONSE WITH TUMOR 19.93 1:Recurred/Progressed 11.44 6.7 Sensitive TCGA-04-1517-01 IIIC G3 >20mm -TCGA-04-1519 48.39 MISSING MISSING TCGA-04-1519-01 IIIC G3 -TCGA-04-1525 47.86 1:DECEASED COMPLETE RESPONSE WITH TUMOR 38.26 1:Recurred/Progressed 6.95 0.9 Resistant TCGA-04-1525-01 IIIC G3 1-10 mm -TCGA-04-1530 68.53 1:DECEASED COMPLETE RESPONSE WITH TUMOR 118.75 1:Recurred/Progressed 11.48 6.4 Sensitive TCGA-04-1530-01 IIIC G3 1-10 mm -TCGA-04-1536 60.11 1:DECEASED WITH TUMOR 28.98 1:Recurred/Progressed 16.33 8.7 Sensitive TCGA-04-1536-01 IV G3 1-10 mm -TCGA-04-1542 52.78 1:DECEASED COMPLETE RESPONSE WITH TUMOR 83.97 1:Recurred/Progressed 33.93 27.6 Sensitive TCGA-04-1542-01 IIIB G2 1-10 mm -TCGA-04-1638 57.5 1:DECEASED TUMOR FREE 55.25 1:Recurred/Progressed 9.77 3.5 Resistant TCGA-04-1638-01 IV G3 No Macroscopic disease -TCGA-04-1646 60.84 1:DECEASED WITH TUMOR 27.8 1:Recurred/Progressed 16.66 8.8 Sensitive TCGA-04-1646-01 IIIC G3 1-10 mm -TCGA-04-1648 57.84 1:DECEASED 28.56 1:Recurred/Progressed 13.51 8.6 Sensitive TCGA-04-1648-01 IIIC G2 1-10 mm -TCGA-04-1649 74.42 0:LIVING 64.46 1:Recurred/Progressed 54.82 MISSING TCGA-04-1649-01 IIIC G3 1-10 mm -TCGA-04-1651 53.78 1:DECEASED 36.07 1:Recurred/Progressed 32.39 27.6 Sensitive TCGA-04-1651-01 IIIC G3 1-10 mm -TCGA-04-1652 76.98 1:DECEASED COMPLETE RESPONSE WITH TUMOR 31.87 1:Recurred/Progressed 28.95 22.5 Sensitive TCGA-04-1652-01 IIIC G2 -TCGA-04-1654 69.61 1:DECEASED 46.85 1:Recurred/Progressed 25.77 24.8 Sensitive TCGA-04-1654-01 IIIC G2 1-10 mm -TCGA-04-1655 49.28 1:DECEASED 45.21 1:Recurred/Progressed 26.85 22.3 Sensitive TCGA-04-1655-01 IIIB G2 No Macroscopic disease -TCGA-09-0364 80.17 1:DECEASED COMPLETE RESPONSE WITH TUMOR 29.08 1:Recurred/Progressed 12.95 6.8 Sensitive TCGA-09-0364-01 IIC G3 11-20 mm -TCGA-09-0366 56 1:DECEASED STABLE DISEASE WITH TUMOR 57.57 1:Recurred/Progressed 6.2 2.5 Resistant TCGA-09-0366-01 IIIC G3 1-10 mm -TCGA-09-0367 67.05 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 17.9 1:Recurred/Progressed MISSING MISSING TCGA-09-0367-01 IIIC G3 1-10 mm -TCGA-09-0369 56.73 1:DECEASED COMPLETE RESPONSE WITH TUMOR 35.44 1:Recurred/Progressed 8.95 5.8 Resistant TCGA-09-0369-01 IIIC G3 No Macroscopic disease -TCGA-09-1659 51.32 1:DECEASED STABLE DISEASE WITH TUMOR 9.93 1:Recurred/Progressed MISSING MISSING TCGA-09-1659-01 IIIC G3 >20mm -TCGA-09-1661 75.38 1:DECEASED STABLE DISEASE WITH TUMOR 37.41 1:Recurred/Progressed MISSING MISSING TCGA-09-1661-01 IIIC G3 1-10 mm -TCGA-09-1662 58.21 1:DECEASED COMPLETE RESPONSE WITH TUMOR 89.08 1:Recurred/Progressed 34.3 29.7 Sensitive TCGA-09-1662-01 IV G3 1-10 mm -TCGA-09-1665 74 1:DECEASED COMPLETE RESPONSE WITH TUMOR 41.48 1:Recurred/Progressed 15.34 8.5 Sensitive TCGA-09-1665-01 IIIC G2 No Macroscopic disease -TCGA-09-1666 57.72 0:LIVING COMPLETE RESPONSE WITH TUMOR 57.41 1:Recurred/Progressed 15.74 10.1 Sensitive TCGA-09-1666-01 IIIC G3 No Macroscopic disease -TCGA-09-1667 61.11 0:LIVING COMPLETE RESPONSE WITH TUMOR 61.7 1:Recurred/Progressed 15.08 11.3 Sensitive TCGA-09-1667-01 IIC G2 No Macroscopic disease -TCGA-09-1668 57.45 0:LIVING COMPLETE RESPONSE WITH TUMOR 55.21 1:Recurred/Progressed MISSING MISSING TCGA-09-1668-01 IIIC G3 -TCGA-09-1669 54.94 0:LIVING COMPLETE RESPONSE WITH TUMOR 30.39 1:Recurred/Progressed MISSING MISSING TCGA-09-1669-01 IIIA G3 No Macroscopic disease -TCGA-09-1670 58.04 0:LIVING COMPLETE RESPONSE WITH TUMOR 16.69 1:Recurred/Progressed 16.69 12.1 Sensitive TCGA-09-1670-01 IIIA G3 No Macroscopic disease -TCGA-09-1673 50.96 0:LIVING WITH TUMOR 3.02 1:Recurred/Progressed MISSING MISSING TCGA-09-1673-01 IV G3 >20mm -TCGA-09-1674 79.12 0:LIVING COMPLETE RESPONSE WITH TUMOR 8.52 1:Recurred/Progressed MISSING MISSING TCGA-09-1674-01 IIIC G3 1-10 mm -TCGA-09-2044 77.34 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.1 0:DiseaseFree 6.1 1.07 Tooearly TCGA-09-2044-01 IIB G3 No Macroscopic disease -TCGA-09-2045 50.1 1:DECEASED STABLE DISEASE WITH TUMOR 35.05 1:Recurred/Progressed 20.69 12.72 Sensitive TCGA-09-2045-01 IV G2 1-10 mm -TCGA-09-2048 63.13 1:DECEASED STABLE DISEASE WITH TUMOR 4.49 1:Recurred/Progressed MISSING MISSING TCGA-09-2048-01 IIIC G3 1-10 mm -TCGA-09-2049 64.14 0:LIVING COMPLETE RESPONSE WITH TUMOR 112.07 1:Recurred/Progressed 31.21 25.51 Sensitive TCGA-09-2049-01 IIIC G3 >20mm -TCGA-09-2050 65.72 0:LIVING COMPLETE RESPONSE TUMOR FREE 70.92 0:DiseaseFree 70.92 67.28 Sensitive TCGA-09-2050-01 IIA G2 No Macroscopic disease -TCGA-09-2051 42.88 0:LIVING COMPLETE RESPONSE TUMOR FREE 62.92 1:Recurred/Progressed 19.11 13.95 Sensitive TCGA-09-2051-01 IIIC G3 No Macroscopic disease -TCGA-09-2053 72.42 0:LIVING COMPLETE RESPONSE TUMOR FREE 39.64 0:DiseaseFree 39.64 35.3 Sensitive TCGA-09-2053-01 IIIC G3 No Macroscopic disease -TCGA-09-2054 58.32 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 20.85 1:Recurred/Progressed MISSING MISSING TCGA-09-2054-01 IIIC G3 1-10 mm -TCGA-09-2056 62.64 0:LIVING COMPLETE RESPONSE TUMOR FREE 12.43 0:DiseaseFree 12.43 7.6 Sensitive TCGA-09-2056-01 IIIC G3 No Macroscopic disease -TCGA-10-0926 63.85 1:DECEASED COMPLETE RESPONSE WITH TUMOR 25.84 1:Recurred/Progressed 9.41 4.8 Resistant TCGA-10-0926-01 IIIC G3 11-20 mm -TCGA-10-0927 65.7 1:DECEASED COMPLETE RESPONSE WITH TUMOR 81.64 1:Recurred/Progressed 32.82 28.9 Sensitive TCGA-10-0927-01 IIIC G2 1-10 mm -TCGA-10-0928 71.41 1:DECEASED WITH TUMOR 18.43 1:Recurred/Progressed MISSING MISSING TCGA-10-0928-01 IIIC G3 1-10 mm -TCGA-10-0930 70.51 1:DECEASED COMPLETE RESPONSE WITH TUMOR 34.1 1:Recurred/Progressed 22.3 18.2 Sensitive TCGA-10-0930-01 IIIC G3 1-10 mm -TCGA-10-0931 44.55 1:DECEASED COMPLETE RESPONSE WITH TUMOR 32.79 1:Recurred/Progressed 9.84 5.7 Resistant TCGA-10-0931-01 IIIC G3 1-10 mm -TCGA-10-0933 77.9 1:DECEASED COMPLETE RESPONSE WITH TUMOR 14.62 1:Recurred/Progressed 11.67 7.3 Sensitive TCGA-10-0933-01 IIIC G3 No Macroscopic disease -TCGA-10-0934 50.96 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 6.66 1:Recurred/Progressed 3.61 1.8 Resistant TCGA-10-0934-01 IIIC G3 1-10 mm -TCGA-10-0935 68.76 1:DECEASED WITH TUMOR 35.31 1:Recurred/Progressed MISSING MISSING TCGA-10-0935-01 IIIC G3 1-10 mm -TCGA-10-0936 69.74 1:DECEASED PARTIAL RESPONSE WITH TUMOR 36.82 1:Recurred/Progressed MISSING MISSING TCGA-10-0936-01 IIIC G3 >20mm -TCGA-10-0937 44.44 1:DECEASED COMPLETE RESPONSE WITH TUMOR 19.93 1:Recurred/Progressed 7.7 2.9 Resistant TCGA-10-0937-01 IIIC G3 1-10 mm -TCGA-10-0938 80.98 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 20.85 1:Recurred/Progressed 11.87 5.6 Resistant TCGA-10-0938-01 IIIC G3 >20mm -TCGA-13-0714 55.1 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 6.1 1:Recurred/Progressed 3.51 MISSING TCGA-13-0714-01 IV G3 1-10 mm -TCGA-13-0717 54.91 1:DECEASED COMPLETE RESPONSE WITH TUMOR 24.52 1:Recurred/Progressed 9.64 3.8 Resistant TCGA-13-0717-01 IIIC G3 >20mm -TCGA-13-0720 48.76 1:DECEASED COMPLETE RESPONSE WITH TUMOR 44.43 1:Recurred/Progressed 9.57 3.7 Resistant TCGA-13-0720-01 IIIC G3 1-10 mm -TCGA-13-0723 63.27 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 39.48 1:Recurred/Progressed 6.89 0.3 Resistant TCGA-13-0723-01 IIIC G3 >20mm -TCGA-13-0724 72.26 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 1.57 1:Recurred/Progressed 1.57 0.3 Resistant TCGA-13-0724-01 IV G3 1-10 mm -TCGA-13-0725 44.09 1:DECEASED COMPLETE RESPONSE WITH TUMOR 12.1 1:Recurred/Progressed 5.97 -0.8 Resistant TCGA-13-0725-01 IIIC G3 1-10 mm -TCGA-13-0726 55.16 1:DECEASED COMPLETE RESPONSE WITH TUMOR 31.08 1:Recurred/Progressed 12.85 7.3 Sensitive TCGA-13-0726-01 IIIC 1-10 mm -TCGA-13-0727 71.74 1:DECEASED COMPLETE RESPONSE WITH TUMOR 15.15 1:Recurred/Progressed 8.3 4.3 Resistant TCGA-13-0727-01 IIIC G3 1-10 mm -TCGA-13-0730 71.55 1:DECEASED WITH TUMOR 16.82 1:Recurred/Progressed MISSING MISSING TCGA-13-0730-01 IIIC G3 >20mm -TCGA-13-0751 44.67 1:DECEASED COMPLETE RESPONSE WITH TUMOR 55.02 1:Recurred/Progressed 21.41 12.7 Sensitive TCGA-13-0751-01 IIIC 1-10 mm -TCGA-13-0755 75.17 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 2.46 1:Recurred/Progressed 1.11 -0.2 Resistant TCGA-13-0755-01 IV G3 1-10 mm -TCGA-13-0757 71.23 1:DECEASED COMPLETE RESPONSE WITH TUMOR 11.15 1:Recurred/Progressed 9.61 0.8 Resistant TCGA-13-0757-01 IIIC G3 1-10 mm -TCGA-13-0760 63.23 1:DECEASED 10.1 MISSING MISSING MISSING TCGA-13-0760-01 IV G3 No Macroscopic disease -TCGA-13-0761 51.22 0:LIVING COMPLETE RESPONSE WITH TUMOR 33.97 1:Recurred/Progressed 13.87 6.7 Sensitive TCGA-13-0761-01 IV G3 No Macroscopic disease -TCGA-13-0762 65.64 0:LIVING COMPLETE RESPONSE TUMOR FREE 32.16 0:DiseaseFree 32.16 27.6 Sensitive TCGA-13-0762-01 IIIC G3 No Macroscopic disease -TCGA-13-0764 63.01 0:LIVING PARTIAL RESPONSE WITH TUMOR 29.84 1:Recurred/Progressed 7.8 3.6 Resistant TCGA-13-0764-01 IV G3 1-10 mm -TCGA-13-0765 50.89 0:LIVING COMPLETE RESPONSE WITH TUMOR 28.49 1:Recurred/Progressed 21.9 16.6 Sensitive TCGA-13-0765-01 IIIC G3 1-10 mm -TCGA-13-0766 42.66 0:LIVING COMPLETE RESPONSE WITH TUMOR 21.34 1:Recurred/Progressed 20.59 14.6 Sensitive TCGA-13-0766-01 IIIC G3 1-10 mm -TCGA-13-0768 73.97 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.39 0:DiseaseFree 8.39 3.6 Tooearly TCGA-13-0768-01 IIIC G3 1-10 mm -TCGA-13-0791 58.57 0:LIVING COMPLETE RESPONSE WITH TUMOR 38.82 1:Recurred/Progressed 9.21 4.6 Resistant TCGA-13-0791-01 IIIC G3 No Macroscopic disease -TCGA-13-0792 40.35 0:LIVING COMPLETE RESPONSE WITH TUMOR 36.62 1:Recurred/Progressed 26.75 21.7 Sensitive TCGA-13-0792-01 IIIC G3 No Macroscopic disease -TCGA-13-0793 40.29 0:LIVING COMPLETE RESPONSE WITH TUMOR 28.62 1:Recurred/Progressed 11.51 6.3 Sensitive TCGA-13-0793-01 IV G3 1-10 mm -TCGA-13-0794 60.12 0:LIVING COMPLETE RESPONSE WITH TUMOR 30.26 1:Recurred/Progressed 27.7 23.4 Sensitive TCGA-13-0794-01 IIIC G3 1-10 mm -TCGA-13-0795 66.94 0:LIVING COMPLETE RESPONSE WITH TUMOR 18.56 1:Recurred/Progressed 9.7 4 Resistant TCGA-13-0795-01 IIIC G3 >20mm -TCGA-13-0797 49.45 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.69 0:DiseaseFree 8.69 3.9 Tooearly TCGA-13-0797-01 IIIC G3 1-10 mm -TCGA-13-0799 44.3 0:LIVING COMPLETE RESPONSE TUMOR FREE 7.77 0:DiseaseFree 7.77 3 Tooearly TCGA-13-0799-01 IIIC G3 No Macroscopic disease -TCGA-13-0800 52.29 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.1 0:DiseaseFree 8.1 3.5 Tooearly TCGA-13-0800-01 IIIC G3 No Macroscopic disease -TCGA-13-0801 46.06 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.26 0:DiseaseFree 8.26 3.5 Tooearly TCGA-13-0801-01 IIIC G3 No Macroscopic disease -TCGA-13-0802 79.66 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.16 0:DiseaseFree 8.16 2 Tooearly TCGA-13-0802-01 IIIC G3 No Macroscopic disease -TCGA-13-0803 81.33 1:DECEASED COMPLETE RESPONSE WITH TUMOR 43.7 1:Recurred/Progressed 11.02 3.7 Resistant TCGA-13-0803-01 IIIC G3 No Macroscopic disease -TCGA-13-0804 74.03 1:DECEASED COMPLETE RESPONSE WITH TUMOR 35.18 1:Recurred/Progressed 10.79 5.5 Resistant TCGA-13-0804-01 IIIC G3 1-10 mm -TCGA-13-0805 57.57 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 35.21 1:Recurred/Progressed 5.77 0.9 Resistant TCGA-13-0805-01 IIIC G3 1-10 mm -TCGA-13-0807 54.49 1:DECEASED 13.57 MISSING MISSING MISSING TCGA-13-0807-01 IIIC G3 >20mm -TCGA-13-0883 61.36 1:DECEASED COMPLETE RESPONSE WITH TUMOR 68.72 1:Recurred/Progressed 26.82 15.4 Sensitive TCGA-13-0883-01 IIIC G3 1-10 mm -TCGA-13-0884 39.96 1:DECEASED COMPLETE RESPONSE WITH TUMOR 105.31 1:Recurred/Progressed 39.44 31 Sensitive TCGA-13-0884-01 IIIC G3 1-10 mm -TCGA-13-0885 70.58 0:LIVING COMPLETE RESPONSE 91.15 0:DiseaseFree 91.15 84.4 Sensitive TCGA-13-0885-01 IIIC G3 11-20 mm -TCGA-13-0886 67.73 0:LIVING COMPLETE RESPONSE TUMOR FREE 74.07 0:DiseaseFree 74.07 65.6 Sensitive TCGA-13-0886-01 IIIC G3 1-10 mm -TCGA-13-0887 42.93 1:DECEASED COMPLETE RESPONSE WITH TUMOR 66.46 1:Recurred/Progressed 16.82 8.1 Sensitive TCGA-13-0887-01 IIIC G3 1-10 mm -TCGA-13-0888 78.08 0:LIVING PARTIAL RESPONSE TUMOR FREE 70.2 0:DiseaseFree 70.2 62.8 Sensitive TCGA-13-0888-01 IIIC G3 No Macroscopic disease -TCGA-13-0889 75.82 0:LIVING COMPLETE RESPONSE TUMOR FREE 61.64 0:DiseaseFree 61.64 56.5 Sensitive TCGA-13-0889-01 IV 1-10 mm -TCGA-13-0890 56.9 0:LIVING COMPLETE RESPONSE TUMOR FREE 67.8 0:DiseaseFree 67.8 59.97 Sensitive TCGA-13-0890-01 IIIC G3 1-10 mm -TCGA-13-0891 73.74 0:LIVING COMPLETE RESPONSE WITH TUMOR 67.84 1:Recurred/Progressed 23.97 19 Sensitive TCGA-13-0891-01 IV G3 No Macroscopic disease -TCGA-13-0893 48.31 1:DECEASED PARTIAL RESPONSE WITH TUMOR 41.31 1:Recurred/Progressed 13.18 5.8 Resistant TCGA-13-0893-01 IIIC G3 11-20 mm -TCGA-13-0894 53.33 1:DECEASED COMPLETE RESPONSE WITH TUMOR 49.48 1:Recurred/Progressed 18.52 7.7 Sensitive TCGA-13-0894-01 IIIC G3 1-10 mm -TCGA-13-0897 54.5 0:LIVING COMPLETE RESPONSE WITH TUMOR 57.31 1:Recurred/Progressed 18.13 13.6 Sensitive TCGA-13-0897-01 IIIC G3 1-10 mm -TCGA-13-0899 60.36 0:LIVING COMPLETE RESPONSE WITH TUMOR 56 1:Recurred/Progressed 17.93 13.8 Sensitive TCGA-13-0899-01 IIIC G3 1-10 mm -TCGA-13-0900 59.47 0:LIVING COMPLETE RESPONSE TUMOR FREE 56.59 0:DiseaseFree 56.59 51.7 Sensitive TCGA-13-0900-01 IIIC G3 -TCGA-13-0901 42.01 0:LIVING COMPLETE RESPONSE WITH TUMOR 19.31 1:Recurred/Progressed 12.79 7.4 Sensitive TCGA-13-0901-01 IIIC G3 >20mm -TCGA-13-0903 43.03 0:LIVING COMPLETE RESPONSE WITH TUMOR 47.25 1:Recurred/Progressed MISSING MISSING TCGA-13-0903-01 IV G3 No Macroscopic disease -TCGA-13-0904 63.86 0:LIVING PARTIAL RESPONSE WITH TUMOR 47.18 1:Recurred/Progressed 9.77 2.6 Resistant TCGA-13-0904-01 IIIC G3 >20mm -TCGA-13-0905 51.39 0:LIVING COMPLETE RESPONSE TUMOR FREE 47.7 0:DiseaseFree 47.7 40.5 Sensitive TCGA-13-0905-01 IIIC G3 -TCGA-13-0906 50.36 0:LIVING COMPLETE RESPONSE TUMOR FREE 44.82 0:DiseaseFree 44.82 40.1 Sensitive TCGA-13-0906-01 IIIC G3 1-10 mm -TCGA-13-0908 58.69 0:LIVING COMPLETE RESPONSE WITH TUMOR 44.72 1:Recurred/Progressed 18.1 10.1 Sensitive TCGA-13-0908-01 IV G3 1-10 mm -TCGA-13-0910 58.91 0:LIVING COMPLETE RESPONSE TUMOR FREE 36.03 0:DiseaseFree 36.03 27.6 Sensitive TCGA-13-0910-01 IIIC G3 1-10 mm -TCGA-13-0911 55.57 0:LIVING PARTIAL RESPONSE WITH TUMOR 27.41 1:Recurred/Progressed 8.92 3 Resistant TCGA-13-0911-01 IV G3 1-10 mm -TCGA-13-0912 58.7 0:LIVING COMPLETE RESPONSE WITH TUMOR 33.97 1:Recurred/Progressed 15.34 10.6 Sensitive TCGA-13-0912-01 IIIC G3 No Macroscopic disease -TCGA-13-0913 53.62 0:LIVING COMPLETE RESPONSE WITH TUMOR 29.9 1:Recurred/Progressed 28.56 23.4 Sensitive TCGA-13-0913-01 IIIC G3 No Macroscopic disease -TCGA-13-0916 49.83 0:LIVING COMPLETE RESPONSE TUMOR FREE 21.08 0:DiseaseFree 21.08 15.8 Sensitive TCGA-13-0916-01 IIIC G3 No Macroscopic disease -TCGA-13-0919 52.98 0:LIVING COMPLETE RESPONSE TUMOR FREE 14.85 0:DiseaseFree 14.85 9.6 Sensitive TCGA-13-0919-01 IIIC G3 No Macroscopic disease -TCGA-13-0920 65.93 0:LIVING COMPLETE RESPONSE WITH TUMOR 13.77 1:Recurred/Progressed 9.74 4.8 Resistant TCGA-13-0920-01 IIIC G3 1-10 mm -TCGA-13-0921 72.89 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.62 0:DiseaseFree 4.62 0 Tooearly TCGA-13-0921-01 IIIC G3 No Macroscopic disease -TCGA-13-0923 74.19 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.39 0:DiseaseFree 6.39 1.4 Tooearly TCGA-13-0923-01 IIIC G3 No Macroscopic disease -TCGA-13-0924 45.7 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.67 0:DiseaseFree 5.67 1.4 Tooearly TCGA-13-0924-01 IV G3 1-10 mm -TCGA-13-1403 48.48 0:LIVING COMPLETE RESPONSE TUMOR FREE 10.85 0:DiseaseFree 10.85 6.2 Sensitive TCGA-13-1403-01 IIIC G3 -TCGA-13-1404 48.72 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.59 0:DiseaseFree 6.59 -2.5 Tooearly TCGA-13-1404-01 IIIC G3 1-10 mm -TCGA-13-1405 49.91 0:LIVING COMPLETE RESPONSE TUMOR FREE 7.34 0:DiseaseFree 7.34 2.5 Tooearly TCGA-13-1405-01 IV G3 1-10 mm -TCGA-13-1407 51.77 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.03 0:DiseaseFree 6.03 0 Tooearly TCGA-13-1407-01 IIIC G3 -TCGA-13-1408 59.27 0:LIVING PARTIAL RESPONSE WITH TUMOR 5.9 1:Recurred/Progressed MISSING MISSING TCGA-13-1408-01 IIIC G3 >20mm -TCGA-13-1409 73.63 0:LIVING WITH TUMOR 5.54 1:Recurred/Progressed MISSING MISSING TCGA-13-1409-01 IIIC G3 1-10 mm -TCGA-13-1410 57.4 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.69 0:DiseaseFree 4.69 0.5 Tooearly TCGA-13-1410-01 IV -TCGA-13-1411 81.84 0:LIVING PARTIAL RESPONSE WITH TUMOR 4.2 1:Recurred/Progressed MISSING MISSING TCGA-13-1411-01 IIIC G3 >20mm -TCGA-13-1412 41.42 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.31 0:DiseaseFree 5.31 -1.2 Tooearly TCGA-13-1412-01 IV G3 1-10 mm -TCGA-13-1477 49.68 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 53.67 1:Recurred/Progressed 6.89 1 Resistant TCGA-13-1477-01 IV G2 1-10 mm -TCGA-13-1481 76.43 1:DECEASED COMPLETE RESPONSE TUMOR FREE 86.82 0:DiseaseFree 86.82 79.1 Sensitive TCGA-13-1481-01 IIIC G2 1-10 mm -TCGA-13-1482 52.61 1:DECEASED PARTIAL RESPONSE WITH TUMOR 60.69 1:Recurred/Progressed 18.89 14.8 Sensitive TCGA-13-1482-01 IV G2 >20mm -TCGA-13-1483 61.28 1:DECEASED PARTIAL RESPONSE WITH TUMOR 28.49 1:Recurred/Progressed 8.89 1.9 Resistant TCGA-13-1483-01 IIIC G3 >20mm -TCGA-13-1484 62.34 0:LIVING COMPLETE RESPONSE WITH TUMOR 95.9 1:Recurred/Progressed 14.39 10.1 Sensitive TCGA-13-1484-01 IIIC G3 -TCGA-13-1485 48.36 1:DECEASED PARTIAL RESPONSE WITH TUMOR 20.3 1:Recurred/Progressed 5.25 0.7 Resistant TCGA-13-1485-01 IV G2 1-10 mm -TCGA-13-1487 74.45 1:DECEASED COMPLETE RESPONSE WITH TUMOR 22.33 1:Recurred/Progressed 13.51 6.7 Sensitive TCGA-13-1487-01 IV -TCGA-13-1488 59.52 1:DECEASED COMPLETE RESPONSE WITH TUMOR 70.62 1:Recurred/Progressed 11.51 6 Sensitive TCGA-13-1488-01 IV G3 11-20 mm -TCGA-13-1489 70.6 0:LIVING COMPLETE RESPONSE WITH TUMOR 82.66 1:Recurred/Progressed 26.43 17.5 Sensitive TCGA-13-1489-01 IIIC G2 -TCGA-13-1491 55.52 1:DECEASED PARTIAL RESPONSE WITH TUMOR 52.2 1:Recurred/Progressed 16.56 11.7 Sensitive TCGA-13-1491-01 IIIC G3 -TCGA-13-1492 66.7 0:LIVING COMPLETE RESPONSE TUMOR FREE 72.89 0:DiseaseFree 72.89 65.4 Sensitive TCGA-13-1492-01 IIIC G3 -TCGA-13-1494 43.94 0:LIVING COMPLETE RESPONSE WITH TUMOR 36.59 1:Recurred/Progressed 21.25 16.8 Sensitive TCGA-13-1494-01 IV G3 -TCGA-13-1495 60.4 0:LIVING COMPLETE RESPONSE WITH TUMOR 49.08 1:Recurred/Progressed 32.03 27.5 Sensitive TCGA-13-1495-01 IIIC G2 1-10 mm -TCGA-13-1496 65.8 1:DECEASED 3.41 MISSING MISSING 3.2 MISSING TCGA-13-1496-01 IIIC G3 >20mm -TCGA-13-1497 48.02 0:LIVING COMPLETE RESPONSE WITH TUMOR 54.16 1:Recurred/Progressed 26.66 20.6 Sensitive TCGA-13-1497-01 IIIC G3 -TCGA-13-1498 73.48 0:LIVING PARTIAL RESPONSE WITH TUMOR 37.51 1:Recurred/Progressed 17.48 10.4 Sensitive TCGA-13-1498-01 IIIC G3 >20mm -TCGA-13-1499 56.71 0:LIVING COMPLETE RESPONSE WITH TUMOR 37.28 1:Recurred/Progressed 18.1 13 Sensitive TCGA-13-1499-01 IIIC G3 -TCGA-13-1500 71.7 1:DECEASED PARTIAL RESPONSE WITH TUMOR 13.93 1:Recurred/Progressed 8.3 1 Resistant TCGA-13-1500-01 IIIC G3 11-20 mm -TCGA-13-1501 50.49 0:LIVING PARTIAL RESPONSE WITH TUMOR 31.57 1:Recurred/Progressed 11.67 6.9 Sensitive TCGA-13-1501-01 IV G3 >20mm -TCGA-13-1504 68.52 0:LIVING COMPLETE RESPONSE TUMOR FREE 16.52 0:DiseaseFree 16.52 7.3 Sensitive TCGA-13-1504-01 IIIC G3 -TCGA-13-1505 63.67 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.2 0:DiseaseFree 4.2 -1.37 Tooearly TCGA-13-1505-01 IIIC G3 1-10 mm -TCGA-13-1506 45.84 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.39 0:DiseaseFree 4.39 -1.8 Tooearly TCGA-13-1506-01 IIIC G3 -TCGA-13-1507 77.93 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.75 0:DiseaseFree 4.75 -0.5 Tooearly TCGA-13-1507-01 IIIC G3 1-10 mm -TCGA-13-1509 64.34 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.07 0:DiseaseFree 4.07 0 Tooearly TCGA-13-1509-01 IV G3 1-10 mm -TCGA-13-1510 62.21 0:LIVING TUMOR FREE 2.56 0:DiseaseFree 2.56 -3.21 Tooearly TCGA-13-1510-01 IIIC G3 No Macroscopic disease -TCGA-13-1511 52.77 0:LIVING PARTIAL RESPONSE WITH TUMOR 3.74 1:Recurred/Progressed MISSING MISSING TCGA-13-1511-01 IV G3 >20mm -TCGA-13-1512 49.75 0:LIVING 2.33 0:DiseaseFree 2.33 0 Tooearly TCGA-13-1512-01 IIIC G3 No Macroscopic disease -TCGA-13-2060 51.05 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.56 0:DiseaseFree 8.56 3.82 Tooearly TCGA-13-2060-01 IV G3 1-10 mm -TCGA-20-0987 61.2 1:DECEASED WITH TUMOR 21.31 1:Recurred/Progressed 12.82 MISSING TCGA-20-0987-01 IIIC G3 1-10 mm -TCGA-20-0990 74.59 0:LIVING WITH TUMOR 24.07 1:Recurred/Progressed 26.72 20.8 Sensitive TCGA-20-0990-01 IIIC G3 -TCGA-20-0991 78.69 0:LIVING COMPLETE RESPONSE TUMOR FREE 25.25 0:DiseaseFree 25.25 MISSING TCGA-20-0991-01 IIB G3 No Macroscopic disease -TCGA-20-1682 56.39 0:LIVING COMPLETE RESPONSE TUMOR FREE 27.41 0:DiseaseFree 27.41 22.8 Sensitive TCGA-20-1682-01 IIIC 11-20 mm -TCGA-20-1683 65.77 0:LIVING STABLE DISEASE TUMOR FREE 25.31 1:Recurred/Progressed 20.26 15.9 Sensitive TCGA-20-1683-01 IIIC G3 No Macroscopic disease -TCGA-20-1684 51.38 0:LIVING COMPLETE RESPONSE TUMOR FREE 19.02 0:DiseaseFree 19.02 15.1 Sensitive TCGA-20-1684-01 IIIC G3 1-10 mm -TCGA-20-1685 45.88 0:LIVING COMPLETE RESPONSE TUMOR FREE 16.62 0:DiseaseFree 16.62 12 Sensitive TCGA-20-1685-01 IIIC G3 1-10 mm -TCGA-20-1686 75.58 0:LIVING COMPLETE RESPONSE TUMOR FREE 2.92 0:DiseaseFree 2.92 -1.4 Tooearly TCGA-20-1686-01 IIIC G3 No Macroscopic disease -TCGA-20-1687 46.47 0:LIVING COMPLETE RESPONSE TUMOR FREE 2.62 0:DiseaseFree 2.62 -2.9 Tooearly TCGA-20-1687-01 IV G3 No Macroscopic disease -TCGA-23-1021 45.16 1:DECEASED PARTIAL RESPONSE WITH TUMOR 47.41 1:Recurred/Progressed MISSING MISSING TCGA-23-1021-01 IV G3 >20mm -TCGA-23-1022 67.94 1:DECEASED COMPLETE RESPONSE WITH TUMOR 49.54 1:Recurred/Progressed 14.75 9.5 Sensitive TCGA-23-1022-01 IIIC G3 1-10 mm -TCGA-23-1023 65.27 0:LIVING COMPLETE RESPONSE WITH TUMOR 40.43 1:Recurred/Progressed 16.07 12.07 Sensitive TCGA-23-1023-01 IIIC G3 1-10 mm -TCGA-23-1024 52.19 0:LIVING COMPLETE RESPONSE TUMOR FREE 15.34 0:DiseaseFree 15.34 5.4 Tooearly TCGA-23-1024-01 IV G3 1-10 mm -TCGA-23-1026 45.05 0:LIVING COMPLETE RESPONSE WITH TUMOR 26.75 1:Recurred/Progressed 26.13 22.6 Sensitive TCGA-23-1026-01 IIIC G3 1-10 mm -TCGA-23-1027 48.19 1:DECEASED PROGRESSIVE DISEASE 31.97 1:Recurred/Progressed 3.74 -0.6 Resistant TCGA-23-1027-01 IIIC G3 1-10 mm -TCGA-23-1028 43.88 0:LIVING COMPLETE RESPONSE WITH TUMOR 49.28 1:Recurred/Progressed 4.36 0.8 Resistant TCGA-23-1028-01 IIIC G3 1-10 mm -TCGA-23-1029 46.27 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.79 0:DiseaseFree 8.79 6.2 Sensitive TCGA-23-1029-01 IIIC G3 1-10 mm -TCGA-23-1030 64.15 0:LIVING COMPLETE RESPONSE TUMOR FREE 29.02 1:Recurred/Progressed 17.8 12.5 Sensitive TCGA-23-1030-01 IIIC G3 1-10 mm -TCGA-23-1031 60.89 1:DECEASED PARTIAL RESPONSE WITH TUMOR 18.82 1:Recurred/Progressed MISSING MISSING TCGA-23-1031-01 IV G3 1-10 mm -TCGA-23-1032 73.19 1:DECEASED WITH TUMOR 2.75 1:Recurred/Progressed MISSING MISSING TCGA-23-1032-01 IV G3 1-10 mm -TCGA-23-1107 59.07 1:DECEASED WITH TUMOR 0.3 1:Recurred/Progressed MISSING MISSING TCGA-23-1107-01 IV G3 >20mm -TCGA-23-1109 63.02 1:DECEASED PARTIAL RESPONSE WITH TUMOR 51.21 1:Recurred/Progressed 32.36 MISSING TCGA-23-1109-01 IIIC G3 1-10 mm -TCGA-23-1110 42.15 0:LIVING COMPLETE RESPONSE TUMOR FREE 54.36 1:Recurred/Progressed 10.69 7.1 Sensitive TCGA-23-1110-01 IIIC G3 No Macroscopic disease -TCGA-23-1111 63.48 0:LIVING 3.21 0:DiseaseFree 3.21 -1 Tooearly TCGA-23-1111-01 IIIC G3 >20mm -TCGA-23-1113 48.74 1:DECEASED PARTIAL RESPONSE WITH TUMOR 31.11 1:Recurred/Progressed MISSING MISSING TCGA-23-1113-01 IV G3 1-10 mm -TCGA-23-1114 55.92 1:DECEASED COMPLETE RESPONSE WITH TUMOR 68.49 1:Recurred/Progressed 20.79 14.8 Sensitive TCGA-23-1114-01 IIIC G3 No Macroscopic disease -TCGA-23-1116 83.46 0:LIVING 4.56 0:DiseaseFree 4.56 -1.6 Tooearly TCGA-23-1116-01 IIIC G3 >20mm -TCGA-23-1117 42.99 1:DECEASED COMPLETE RESPONSE WITH TUMOR 33.21 1:Recurred/Progressed 13.7 4.1 Resistant TCGA-23-1117-01 IIIC G3 1-10 mm -TCGA-23-1118 45.12 0:LIVING COMPLETE RESPONSE TUMOR FREE 85.77 0:DiseaseFree 85.77 79.5 Sensitive TCGA-23-1118-01 IIIC G3 >20mm -TCGA-23-1119 64.89 0:LIVING COMPLETE RESPONSE TUMOR FREE 129.61 1:Recurred/Progressed 110.75 106.9 Sensitive TCGA-23-1119-01 IIIC G3 1-10 mm -TCGA-23-1120 60.68 0:LIVING 4.26 0:DiseaseFree 4.26 -0.5 Tooearly TCGA-23-1120-01 IIIC G3 1-10 mm -TCGA-23-1121 52.01 0:LIVING 6.36 0:DiseaseFree 6.36 0 Tooearly TCGA-23-1121-01 IIIC G3 >20mm -TCGA-23-1122 53.53 1:DECEASED COMPLETE RESPONSE WITH TUMOR 38.98 1:Recurred/Progressed 14.66 6.7 Sensitive TCGA-23-1122-01 IIIC G3 1-10 mm -TCGA-23-1123 59.04 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 33.38 1:Recurred/Progressed MISSING MISSING TCGA-23-1123-01 IIIC G3 11-20 mm -TCGA-23-1124 63.03 1:DECEASED COMPLETE RESPONSE WITH TUMOR 57.97 1:Recurred/Progressed 21.02 14.7 Sensitive TCGA-23-1124-01 IIIC G3 No Macroscopic disease -TCGA-23-1809 63.32 0:LIVING 0.52 0:DiseaseFree 0.52 -3.1 Tooearly TCGA-23-1809-01 IIC G3 1-10 mm -TCGA-23-2072 58.97 1:DECEASED COMPLETE RESPONSE WITH TUMOR 24.89 1:Recurred/Progressed 15.61 10.6 Sensitive TCGA-23-2072-01 IV G3 >20mm -TCGA-23-2077 45.35 0:LIVING COMPLETE RESPONSE TUMOR FREE 115.57 1:Recurred/Progressed 40.39 35.4 Sensitive TCGA-23-2077-01 IIIC G3 No Macroscopic disease -TCGA-23-2078 66.36 0:LIVING COMPLETE RESPONSE TUMOR FREE 87.25 0:DiseaseFree 87.25 82.6 Sensitive TCGA-23-2078-01 IIIC G3 No Macroscopic disease -TCGA-23-2079 46.91 0:LIVING COMPLETE RESPONSE TUMOR FREE 91.41 1:Recurred/Progressed 9.28 5.2 Resistant TCGA-23-2079-01 IIIC G3 No Macroscopic disease -TCGA-23-2081 49.76 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 76.79 1:Recurred/Progressed MISSING MISSING TCGA-23-2081-01 IV G3 1-10 mm -TCGA-23-2084 45.19 1:DECEASED COMPLETE RESPONSE WITH TUMOR 49.7 1:Recurred/Progressed 20.3 15.2 Sensitive TCGA-23-2084-01 IV G3 No Macroscopic disease -TCGA-24-0966 78.14 0:LIVING STABLE DISEASE WITH TUMOR 7.8 1:Recurred/Progressed MISSING MISSING TCGA-24-0966-01 IIIC G3 >20mm -TCGA-24-0968 59.34 1:DECEASED PARTIAL RESPONSE WITH TUMOR 19.77 1:Recurred/Progressed 17.7 13.57 Sensitive TCGA-24-0968-01 IIIC G3 1-10 mm -TCGA-24-0970 63.77 1:DECEASED PARTIAL RESPONSE WITH TUMOR 11.61 1:Recurred/Progressed 9.18 -1 Resistant TCGA-24-0970-01 IIIC G3 >20mm -TCGA-24-0975 58.68 1:DECEASED PARTIAL RESPONSE WITH TUMOR 21.74 1:Recurred/Progressed 9.87 MISSING TCGA-24-0975-01 IIIC G3 1-10 mm -TCGA-24-0979 53.68 1:DECEASED COMPLETE RESPONSE WITH TUMOR 41.44 1:Recurred/Progressed 14.03 8 Sensitive TCGA-24-0979-01 IV G3 >20mm -TCGA-24-0980 53.64 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 7.64 1:Recurred/Progressed 4.75 -1.1 Resistant TCGA-24-0980-01 IIIC G3 >20mm -TCGA-24-0982 77.26 1:DECEASED COMPLETE RESPONSE WITH TUMOR 22.26 1:Recurred/Progressed 4.98 0.85 Resistant TCGA-24-0982-01 IIIC G3 1-10 mm -TCGA-24-1103 50.91 1:DECEASED COMPLETE RESPONSE WITH TUMOR 53.93 1:Recurred/Progressed 22.2 17.96 Sensitive TCGA-24-1103-01 IIIC G3 1-10 mm -TCGA-24-1104 56.22 1:DECEASED COMPLETE RESPONSE WITH TUMOR 63.57 1:Recurred/Progressed 31.61 25.61 Sensitive TCGA-24-1104-01 IV G3 >20mm -TCGA-24-1105 36.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 47.28 1:Recurred/Progressed 15.41 9.48 Sensitive TCGA-24-1105-01 IIIC G3 1-10 mm -TCGA-24-1413 51.63 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.3 0:DiseaseFree 6.3 1.6 Tooearly TCGA-24-1413-01 IIIC G3 1-10 mm -TCGA-24-1416 34.99 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.36 0:DiseaseFree 6.36 0.7 Tooearly TCGA-24-1416-01 IV G3 1-10 mm -TCGA-24-1417 54.18 0:LIVING COMPLETE RESPONSE TUMOR FREE 7.8 0:DiseaseFree 7.8 2.7 Tooearly TCGA-24-1417-01 IV G3 1-10 mm -TCGA-24-1418 68.06 0:LIVING COMPLETE RESPONSE TUMOR FREE 7.93 0:DiseaseFree 7.93 2.7 Tooearly TCGA-24-1418-01 IIIC G3 >20mm -TCGA-24-1419 62.08 0:LIVING COMPLETE RESPONSE TUMOR FREE 7.84 0:DiseaseFree 7.84 3.8 Tooearly TCGA-24-1419-01 IIIC G3 11-20 mm -TCGA-24-1422 82.83 1:DECEASED 0.75 MISSING MISSING MISSING TCGA-24-1422-01 IIIC G3 1-10 mm -TCGA-24-1423 61.04 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.23 0:DiseaseFree 6.23 1.3 Tooearly TCGA-24-1423-01 IIIC G3 1-10 mm -TCGA-24-1424 67.25 0:LIVING COMPLETE RESPONSE TUMOR FREE 6 0:DiseaseFree 6 2.1 Tooearly TCGA-24-1424-01 IIIC G3 1-10 mm -TCGA-24-1425 45.93 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.93 0:DiseaseFree 5.93 1.1 Tooearly TCGA-24-1425-01 IIIC G3 1-10 mm -TCGA-24-1426 43.69 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.34 0:DiseaseFree 5.34 0.61 Tooearly TCGA-24-1426-01 IIIC G3 1-10 mm -TCGA-24-1427 58.69 0:LIVING PARTIAL RESPONSE WITH TUMOR 4.79 1:Recurred/Progressed MISSING MISSING TCGA-24-1427-01 IIIC G3 >20mm -TCGA-24-1428 50.15 0:LIVING 3.67 0:DiseaseFree 3.67 MISSING TCGA-24-1428-01 IIIC G3 1-10 mm -TCGA-24-1430 68.33 1:DECEASED COMPLETE RESPONSE WITH TUMOR 28.26 1:Recurred/Progressed 14.69 11.2 Sensitive TCGA-24-1430-01 IIIC G3 >20mm -TCGA-24-1431 67.83 1:DECEASED WITH TUMOR 19.11 1:Recurred/Progressed 6.52 1.7 Resistant TCGA-24-1431-01 IIIC G3 1-10 mm -TCGA-24-1434 59.75 1:DECEASED PARTIAL RESPONSE WITH TUMOR 18.62 1:Recurred/Progressed 11.05 3.6 Resistant TCGA-24-1434-01 IIIC G3 1-10 mm -TCGA-24-1435 57.83 1:DECEASED COMPLETE RESPONSE WITH TUMOR 43.41 1:Recurred/Progressed 16.56 11.7 Sensitive TCGA-24-1435-01 IIIC G3 1-10 mm -TCGA-24-1436 57.21 1:DECEASED PARTIAL RESPONSE WITH TUMOR 8.52 1:Recurred/Progressed MISSING MISSING TCGA-24-1436-01 IIIC G3 1-10 mm -TCGA-24-1463 70.5 1:DECEASED COMPLETE RESPONSE WITH TUMOR 72.72 1:Recurred/Progressed 31.84 27.9 Sensitive TCGA-24-1463-01 IIIC G3 >20mm -TCGA-24-1464 70.89 1:DECEASED WITH TUMOR 12.43 1:Recurred/Progressed 10.59 5.2 Resistant TCGA-24-1464-01 IIIC G3 >20mm -TCGA-24-1466 74.81 1:DECEASED COMPLETE RESPONSE WITH TUMOR 45.02 1:Recurred/Progressed 16.1 11.4 Sensitive TCGA-24-1466-01 IIIC G3 1-10 mm -TCGA-24-1467 51.1 1:DECEASED COMPLETE RESPONSE WITH TUMOR 105.7 1:Recurred/Progressed 41.05 37.42 Sensitive TCGA-24-1467-01 IIIC G3 1-10 mm -TCGA-24-1469 71.06 0:LIVING COMPLETE RESPONSE TUMOR FREE 9.08 0:DiseaseFree 9.08 4.7 Tooearly TCGA-24-1469-01 IIIC G3 1-10 mm -TCGA-24-1470 54.81 0:LIVING COMPLETE RESPONSE TUMOR FREE 3.41 0:DiseaseFree 3.41 0.7 Tooearly TCGA-24-1470-01 IIIB G3 1-10 mm -TCGA-24-1471 60.5 0:LIVING 1.18 0:DiseaseFree 1.18 MISSING TCGA-24-1471-01 IIIC G3 >20mm -TCGA-24-1474 57.27 1:DECEASED PARTIAL RESPONSE WITH TUMOR 22.13 1:Recurred/Progressed 10.85 6.9 Sensitive TCGA-24-1474-01 IIIC G3 1-10 mm -TCGA-24-1544 71.62 1:DECEASED PARTIAL RESPONSE WITH TUMOR 26.89 1:Recurred/Progressed 21.08 14.5 Sensitive TCGA-24-1544-01 IIIC G3 1-10 mm -TCGA-24-1545 69.75 1:DECEASED COMPLETE RESPONSE WITH TUMOR 57.21 1:Recurred/Progressed 28.23 19 Sensitive TCGA-24-1545-01 IIIC G3 >20mm -TCGA-24-1546 46.93 1:DECEASED 64.1 MISSING MISSING MISSING TCGA-24-1546-01 IIIC G3 1-10 mm -TCGA-24-1548 57.38 1:DECEASED COMPLETE RESPONSE WITH TUMOR 16.16 1:Recurred/Progressed 6.79 2.8 Resistant TCGA-24-1548-01 IIIC G3 1-10 mm -TCGA-24-1549 58.72 1:DECEASED COMPLETE RESPONSE WITH TUMOR 56.43 1:Recurred/Progressed 34.16 MISSING TCGA-24-1549-01 IIIB G3 -TCGA-24-1550 49.45 1:DECEASED COMPLETE RESPONSE WITH TUMOR 40.95 1:Recurred/Progressed 29.25 23.6 Sensitive TCGA-24-1550-01 IIIC G3 1-10 mm -TCGA-24-1551 53.87 1:DECEASED COMPLETE RESPONSE WITH TUMOR 51.77 1:Recurred/Progressed 25.05 20.6 Sensitive TCGA-24-1551-01 IIIC G3 1-10 mm -TCGA-24-1552 77.07 1:DECEASED COMPLETE RESPONSE WITH TUMOR 41.28 1:Recurred/Progressed 13.21 4.11 Resistant TCGA-24-1552-01 IIIC G3 1-10 mm -TCGA-24-1553 53.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 57.93 1:Recurred/Progressed 18.13 13.1 Sensitive TCGA-24-1553-01 IIIB G3 1-10 mm -TCGA-24-1555 50.42 1:DECEASED COMPLETE RESPONSE WITH TUMOR 88.26 1:Recurred/Progressed 51.7 MISSING TCGA-24-1555-01 IIIC G3 -TCGA-24-1556 50.73 1:DECEASED COMPLETE RESPONSE WITH TUMOR 70.43 1:Recurred/Progressed 18 MISSING TCGA-24-1556-01 IIB G3 1-10 mm -TCGA-24-1557 49.16 1:DECEASED PARTIAL RESPONSE WITH TUMOR 39.77 1:Recurred/Progressed 14.66 5.5 Resistant TCGA-24-1557-01 IIIC G3 >20mm -TCGA-24-1558 73.98 1:DECEASED PARTIAL RESPONSE WITH TUMOR 19.48 1:Recurred/Progressed 8.95 0.8 Resistant TCGA-24-1558-01 IIIC G3 1-10 mm -TCGA-24-1560 51.15 1:DECEASED COMPLETE RESPONSE WITH TUMOR 43.97 1:Recurred/Progressed 4.69 0.8 Resistant TCGA-24-1560-01 IIIC G3 1-10 mm -TCGA-24-1562 67.8 1:DECEASED COMPLETE RESPONSE WITH TUMOR 45.38 1:Recurred/Progressed 7.48 2.5 Resistant TCGA-24-1562-01 IIIC G3 1-10 mm -TCGA-24-1563 66.5 1:DECEASED COMPLETE RESPONSE WITH TUMOR 47.57 1:Recurred/Progressed 12.98 8.3 Sensitive TCGA-24-1563-01 IIIC G3 1-10 mm -TCGA-24-1564 67.58 1:DECEASED COMPLETE RESPONSE WITH TUMOR 25.8 1:Recurred/Progressed 7.25 3.4 Resistant TCGA-24-1564-01 IIIC G3 1-10 mm -TCGA-24-1565 74.1 1:DECEASED PARTIAL RESPONSE WITH TUMOR 10.23 1:Recurred/Progressed 4.75 0.7 Resistant TCGA-24-1565-01 IIIC G3 1-10 mm -TCGA-24-1567 54.36 1:DECEASED WITH TUMOR 17.18 1:Recurred/Progressed 10.98 5 Resistant TCGA-24-1567-01 IIIB G3 1-10 mm -TCGA-24-1603 53.92 1:DECEASED COMPLETE RESPONSE WITH TUMOR 89.9 1:Recurred/Progressed 32.52 MISSING TCGA-24-1603-01 IIIB G3 -TCGA-24-1604 67.04 1:DECEASED COMPLETE RESPONSE WITH TUMOR 88.1 1:Recurred/Progressed MISSING MISSING TCGA-24-1604-01 IIIC G3 -TCGA-24-1614 57.52 1:DECEASED COMPLETE RESPONSE WITH TUMOR 48.2 1:Recurred/Progressed 21.11 15 Sensitive TCGA-24-1614-01 IIIC G3 1-10 mm -TCGA-24-1616 56.95 1:DECEASED COMPLETE RESPONSE WITH TUMOR 38.13 1:Recurred/Progressed 13.28 7.9 Sensitive TCGA-24-1616-01 IIIC G3 1-10 mm -TCGA-24-1842 49.94 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.3 0:DiseaseFree 8.3 -0.14 Tooearly TCGA-24-1842-01 IIIC G3 1-10 mm -TCGA-24-1843 67.04 0:LIVING COMPLETE RESPONSE 3.48 0:DiseaseFree 3.48 -0.9 Tooearly TCGA-24-1843-01 IIIC G3 1-10 mm -TCGA-24-1844 64.5 0:LIVING 3.7 0:DiseaseFree 3.7 -0.7 Tooearly TCGA-24-1844-01 IIIC G3 1-10 mm -TCGA-24-1845 42.74 0:LIVING 3.8 0:DiseaseFree 3.8 -0.2 Tooearly TCGA-24-1845-01 IIIC G3 1-10 mm -TCGA-24-1846 45.3 0:LIVING 4.36 0:DiseaseFree 4.36 -1.3 Tooearly TCGA-24-1846-01 IIIC G3 1-10 mm -TCGA-24-1847 45.33 0:LIVING COMPLETE RESPONSE TUMOR FREE 10.75 0:DiseaseFree 10.75 0 Tooearly TCGA-24-1847-01 IV G3 1-10 mm -TCGA-24-1849 80.97 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.74 0:DiseaseFree 5.74 1.2 Tooearly TCGA-24-1849-01 IIIC G3 1-10 mm -TCGA-24-1850 72.24 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.48 0:DiseaseFree 5.48 1 Tooearly TCGA-24-1850-01 IIIC G3 1-10 mm -TCGA-24-1920 74.09 0:LIVING COMPLETE RESPONSE TUMOR FREE 9.77 0:DiseaseFree 9.77 5 Tooearly TCGA-24-1920-01 IIIC G3 1-10 mm -TCGA-24-1923 51.05 1:DECEASED COMPLETE RESPONSE WITH TUMOR 22.43 1:Recurred/Progressed 11.08 3.52 Resistant TCGA-24-1923-01 IIIC G3 1-10 mm -TCGA-24-1924 65.21 1:DECEASED COMPLETE RESPONSE WITH TUMOR 30.13 1:Recurred/Progressed 10.49 5.13 Resistant TCGA-24-1924-01 IIIC G3 1-10 mm -TCGA-24-1928 77.08 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 10.75 1:Recurred/Progressed 2.03 -1.9 Resistant TCGA-24-1928-01 IIIC G3 11-20 mm -TCGA-24-1930 53.36 1:DECEASED COMPLETE RESPONSE WITH TUMOR 78 1:Recurred/Progressed 14.92 8.72 Sensitive TCGA-24-1930-01 IIIC G3 1-10 mm -TCGA-24-2019 46.6 0:LIVING 4.85 0:DiseaseFree 4.85 MISSING TCGA-24-2019-01 IIIC G3 1-10 mm -TCGA-24-2020 67.62 1:DECEASED COMPLETE RESPONSE WITH TUMOR 151.57 1:Recurred/Progressed 23.7 MISSING TCGA-24-2020-01 IIIC G3 1-10 mm -TCGA-24-2023 54.52 1:DECEASED COMPLETE RESPONSE WITH TUMOR 44.72 1:Recurred/Progressed 35.05 MISSING TCGA-24-2023-01 IIIA G3 1-10 mm -TCGA-24-2024 72.53 1:DECEASED COMPLETE RESPONSE WITH TUMOR 58 1:Recurred/Progressed 13.8 9.8 Sensitive TCGA-24-2024-01 IIIC G3 1-10 mm -TCGA-24-2026 79.59 1:DECEASED WITH TUMOR 34.72 1:Recurred/Progressed MISSING MISSING TCGA-24-2026-01 IIIC G3 >20mm -TCGA-24-2027 51.6 1:DECEASED COMPLETE RESPONSE WITH TUMOR 109.38 1:Recurred/Progressed 20.23 11.63 Sensitive TCGA-24-2027-01 IV G3 >20mm -TCGA-24-2029 75.41 1:DECEASED COMPLETE RESPONSE WITH TUMOR 14.39 1:Recurred/Progressed 17.57 10.31 Sensitive TCGA-24-2029-01 IIIC G3 >20mm -TCGA-24-2030 COMPLETE RESPONSE WITH TUMOR 1:Recurred/Progressed 21.18 16.95 Sensitive TCGA-24-2030-01 IIIC G3 >20mm -TCGA-24-2033 1:DECEASED PARTIAL RESPONSE WITH TUMOR 18.43 1:Recurred/Progressed 11.51 3.77 Resistant TCGA-24-2033-01 IIIC G3 >20mm -TCGA-24-2035 65.35 1:DECEASED PARTIAL RESPONSE WITH TUMOR 28.1 1:Recurred/Progressed 9.41 MISSING TCGA-24-2035-01 IIIC G3 1-10 mm -TCGA-24-2036 50.91 1:DECEASED COMPLETE RESPONSE WITH TUMOR 63.84 1:Recurred/Progressed 29.97 24.87 Sensitive TCGA-24-2036-01 IIIA G3 No Macroscopic disease -TCGA-24-2038 68.38 1:DECEASED COMPLETE RESPONSE WITH TUMOR 44.36 1:Recurred/Progressed 38.33 MISSING TCGA-24-2038-01 IIIA 1-10 mm -TCGA-24-2254 66.87 1:DECEASED COMPLETE RESPONSE WITH TUMOR 56.92 1:Recurred/Progressed 19.87 14.37 Sensitive TCGA-24-2254-01 IIIC G3 1-10 mm -TCGA-24-2260 74.3 1:DECEASED COMPLETE RESPONSE 35.8 1:Recurred/Progressed 21.61 17.37 Sensitive TCGA-24-2260-01 IIIB G3 1-10 mm -TCGA-24-2261 76.43 1:DECEASED WITH TUMOR 0.79 1:Recurred/Progressed MISSING MISSING TCGA-24-2261-01 IIIC G3 11-20 mm -TCGA-24-2262 57.15 1:DECEASED WITH TUMOR 0.36 1:Recurred/Progressed MISSING MISSING TCGA-24-2262-01 IIIC G3 1-10 mm -TCGA-24-2267 58.34 1:DECEASED COMPLETE RESPONSE WITH TUMOR 47.41 1:Recurred/Progressed MISSING MISSING TCGA-24-2267-01 IIB G3 No Macroscopic disease -TCGA-24-2271 55.89 1:DECEASED WITH TUMOR 31.54 1:Recurred/Progressed 27.11 MISSING TCGA-24-2271-01 IIIC G3 >20mm -TCGA-24-2280 74.95 0:LIVING COMPLETE RESPONSE WITH TUMOR 70.26 1:Recurred/Progressed 17.51 11.61 Sensitive TCGA-24-2280-01 IIIC G3 1-10 mm -TCGA-24-2281 68.55 0:LIVING COMPLETE RESPONSE TUMOR FREE 44.46 0:DiseaseFree 44.46 MISSING TCGA-24-2281-01 IIA G3 1-10 mm -TCGA-24-2288 70.77 1:DECEASED WITH TUMOR 0.82 1:Recurred/Progressed MISSING MISSING TCGA-24-2288-01 IIIC G3 >20mm -TCGA-24-2289 69.02 1:DECEASED COMPLETE RESPONSE WITH TUMOR 67.18 1:Recurred/Progressed 18.62 12.52 Sensitive TCGA-24-2289-01 IV G3 >20mm -TCGA-24-2290 56.24 1:DECEASED COMPLETE RESPONSE WITH TUMOR 36.13 1:Recurred/Progressed 10.62 6.66 Sensitive TCGA-24-2290-01 IIIC G3 1-10 mm -TCGA-24-2293 27.21 PROGRESSIVE DISEASE 16.59 MISSING MISSING MISSING TCGA-24-2293-01 G3 >20mm -TCGA-24-2297 56.13 1:DECEASED COMPLETE RESPONSE 55.7 MISSING MISSING MISSING TCGA-24-2297-01 IIIC G3 >20mm -TCGA-24-2298 56.04 COMPLETE RESPONSE WITH TUMOR 1:Recurred/Progressed MISSING MISSING TCGA-24-2298-01 IIIC G3 >20mm -TCGA-25-1312 69.96 1:DECEASED 1.02 MISSING MISSING MISSING TCGA-25-1312-01 IV G3 1-10 mm -TCGA-25-1313 62.96 1:DECEASED COMPLETE RESPONSE WITH TUMOR 26.85 1:Recurred/Progressed 12.92 8 Sensitive TCGA-25-1313-01 IV G3 1-10 mm -TCGA-25-1314 42.36 1:DECEASED PARTIAL RESPONSE WITH TUMOR 32.89 1:Recurred/Progressed 8.95 MISSING TCGA-25-1314-01 IV G3 1-10 mm -TCGA-25-1315 50.04 1:DECEASED PARTIAL RESPONSE WITH TUMOR 51.9 1:Recurred/Progressed 5.02 0 Resistant TCGA-25-1315-01 IIIC G3 1-10 mm -TCGA-25-1316 55.7 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 41.93 1:Recurred/Progressed 9.05 1.9 Resistant TCGA-25-1316-01 IIIC G3 1-10 mm -TCGA-25-1317 66.3 1:DECEASED 2.23 MISSING MISSING MISSING TCGA-25-1317-01 IIIC G3 -TCGA-25-1318 54.12 1:DECEASED PARTIAL RESPONSE WITH TUMOR 34.89 1:Recurred/Progressed 6.07 2.1 Resistant TCGA-25-1318-01 IIIC G3 1-10 mm -TCGA-25-1319 73.39 1:DECEASED 64.82 1:Recurred/Progressed 23.93 MISSING TCGA-25-1319-01 IIIC G3 11-20 mm -TCGA-25-1320 65.8 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 37.84 1:Recurred/Progressed 13.87 8 Sensitive TCGA-25-1320-01 IIIC G3 1-10 mm -TCGA-25-1321 65.72 1:DECEASED COMPLETE RESPONSE WITH TUMOR 33.87 1:Recurred/Progressed 14.85 9 Sensitive TCGA-25-1321-01 IIIC G3 No Macroscopic disease -TCGA-25-1322 62.04 1:DECEASED WITH TUMOR 2.98 1:Recurred/Progressed MISSING MISSING TCGA-25-1322-01 IV G3 >20mm -TCGA-25-1323 72.88 1:DECEASED COMPLETE RESPONSE WITH TUMOR 12.95 1:Recurred/Progressed 11.97 7.9 Sensitive TCGA-25-1323-01 IIIC G3 1-10 mm -TCGA-25-1324 74.22 1:DECEASED 33.93 MISSING MISSING MISSING TCGA-25-1324-01 IIIC G3 1-10 mm -TCGA-25-1325 77.21 1:DECEASED 32 MISSING MISSING MISSING TCGA-25-1325-01 IV G3 >20mm -TCGA-25-1326 61.2 1:DECEASED PARTIAL RESPONSE WITH TUMOR 40.92 1:Recurred/Progressed 12.95 8 Sensitive TCGA-25-1326-01 IIIC G3 1-10 mm -TCGA-25-1328 38.11 1:DECEASED PARTIAL RESPONSE WITH TUMOR 65.87 1:Recurred/Progressed 8 1 Resistant TCGA-25-1328-01 IIIC G3 1-10 mm -TCGA-25-1329 76.97 1:DECEASED 14.98 MISSING MISSING MISSING TCGA-25-1329-01 IIIC G3 11-20 mm -TCGA-25-1623 71.39 1:DECEASED COMPLETE RESPONSE WITH TUMOR 18.52 1:Recurred/Progressed 11.21 6.7 Sensitive TCGA-25-1623-01 IV G3 No Macroscopic disease -TCGA-25-1625 66.57 1:DECEASED STABLE DISEASE WITH TUMOR 27.54 1:Recurred/Progressed 17.25 MISSING TCGA-25-1625-01 IIIC G3 1-10 mm -TCGA-25-1626 65.57 1:DECEASED PARTIAL RESPONSE WITH TUMOR 16.95 1:Recurred/Progressed 10.43 3.6 Resistant TCGA-25-1626-01 IIIC G3 >20mm -TCGA-25-1627 73.38 1:DECEASED 12.92 MISSING MISSING MISSING TCGA-25-1627-01 IIIC G3 1-10 mm -TCGA-25-1628 67.09 1:DECEASED STABLE DISEASE WITH TUMOR 20.52 1:Recurred/Progressed 9.38 3.5 Resistant TCGA-25-1628-01 IIIC G3 1-10 mm -TCGA-25-1630 73.99 1:DECEASED COMPLETE RESPONSE 38.1 MISSING MISSING MISSING TCGA-25-1630-01 IIIC G3 1-10 mm -TCGA-25-1631 73.12 1:DECEASED TUMOR FREE 0.3 0:DiseaseFree 0.3 MISSING TCGA-25-1631-01 IIIC G3 1-10 mm -TCGA-25-1632 68.47 1:DECEASED COMPLETE RESPONSE WITH TUMOR 58.98 1:Recurred/Progressed 17.61 11 Sensitive TCGA-25-1632-01 IV G3 1-10 mm -TCGA-25-1633 64.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 62 1:Recurred/Progressed 20.2 14.3 Sensitive TCGA-25-1633-01 IIIC G3 1-10 mm -TCGA-25-1634 76.02 1:DECEASED COMPLETE RESPONSE WITH TUMOR 35.77 1:Recurred/Progressed 12.46 5.8 Resistant TCGA-25-1634-01 IIIC G3 No Macroscopic disease -TCGA-25-1635 71.78 1:DECEASED COMPLETE RESPONSE WITH TUMOR 51.9 1:Recurred/Progressed 20.13 12.5 Sensitive TCGA-25-1635-01 IIIC G3 1-10 mm -TCGA-25-1870 59.04 1:DECEASED PARTIAL RESPONSE WITH TUMOR 14.89 1:Recurred/Progressed 7.93 MISSING TCGA-25-1870-01 IIIC G3 11-20 mm -TCGA-25-1871 70.21 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 24.92 1:Recurred/Progressed 7.54 MISSING TCGA-25-1871-01 IIIC G3 11-20 mm -TCGA-25-1877 81.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 23.93 1:Recurred/Progressed 18 MISSING TCGA-25-1877-01 IIIC G3 1-10 mm -TCGA-25-1878 60.37 1:DECEASED COMPLETE RESPONSE WITH TUMOR 84.82 1:Recurred/Progressed 31.84 MISSING TCGA-25-1878-01 IIIC G3 1-10 mm -TCGA-25-2042 60.62 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 12.98 1:Recurred/Progressed MISSING MISSING TCGA-25-2042-01 IIIC G3 >20mm -TCGA-25-2391 57.36 1:DECEASED COMPLETE RESPONSE TUMOR FREE 48.92 0:DiseaseFree 48.92 43.82 Sensitive TCGA-25-2391-01 IIIC G3 >20mm -TCGA-25-2392 75.8 1:DECEASED 1.02 MISSING MISSING MISSING TCGA-25-2392-01 IV G3 11-20 mm -TCGA-25-2393 81.05 1:DECEASED PARTIAL RESPONSE WITH TUMOR 37.93 1:Recurred/Progressed 10 5.9 Resistant TCGA-25-2393-01 IIIC G3 11-20 mm -TCGA-25-2396 71.63 1:DECEASED 3.02 MISSING MISSING MISSING TCGA-25-2396-01 IIIC G3 No Macroscopic disease -TCGA-25-2397 59.13 1:DECEASED 11.97 MISSING MISSING MISSING TCGA-25-2397-01 IV G3 No Macroscopic disease -TCGA-25-2398 71.96 1:DECEASED COMPLETE RESPONSE WITH TUMOR 44.89 1:Recurred/Progressed 18.92 13.88 Sensitive TCGA-25-2398-01 IIIC G3 1-10 mm -TCGA-25-2399 80.47 1:DECEASED PARTIAL RESPONSE WITH TUMOR 19.93 1:Recurred/Progressed 7.97 1.9 Resistant TCGA-25-2399-01 IIIC G3 >20mm -TCGA-25-2400 76.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 41.9 1:Recurred/Progressed 18.92 12.85 Sensitive TCGA-25-2400-01 IIIC G3 No Macroscopic disease -TCGA-25-2401 64.96 1:DECEASED 2.95 MISSING MISSING MISSING TCGA-25-2401-01 IIIC G3 1-10 mm -TCGA-25-2404 38.86 1:DECEASED COMPLETE RESPONSE WITH TUMOR 28.92 1:Recurred/Progressed 13.93 9.9 Sensitive TCGA-25-2404-01 IIIC G3 No Macroscopic disease -TCGA-25-2408 37.28 1:DECEASED PARTIAL RESPONSE WITH TUMOR 30.89 1:Recurred/Progressed 10.92 MISSING TCGA-25-2408-01 IV G2 1-10 mm -TCGA-25-2409 71.96 1:DECEASED COMPLETE RESPONSE WITH TUMOR 26.89 1:Recurred/Progressed 9.93 3.9 Resistant TCGA-25-2409-01 IV G3 1-10 mm -TCGA-29-1688 39.93 1:DECEASED STABLE DISEASE WITH TUMOR 78.66 1:Recurred/Progressed 6 MISSING TCGA-29-1688-01 IIIC G2 -TCGA-29-1690 66.62 1:DECEASED WITH TUMOR 47.48 1:Recurred/Progressed MISSING MISSING TCGA-29-1690-01 IIIC G2 11-20 mm -TCGA-29-1691 51.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 48.2 1:Recurred/Progressed 20.1 15.6 Sensitive TCGA-29-1691-01 IIIC G2 1-10 mm -TCGA-29-1693 72.05 0:LIVING COMPLETE RESPONSE WITH TUMOR 101.48 1:Recurred/Progressed 22.75 16.4 Sensitive TCGA-29-1693-01 IIIC G3 >20mm -TCGA-29-1694 45.27 1:DECEASED STABLE DISEASE WITH TUMOR 38.92 1:Recurred/Progressed MISSING MISSING TCGA-29-1694-01 IIIC 11-20 mm -TCGA-29-1695 62.72 1:DECEASED 40.3 MISSING MISSING MISSING TCGA-29-1695-01 IIIC G2 >20mm -TCGA-29-1696 43.34 1:DECEASED PARTIAL RESPONSE WITH TUMOR 33.84 1:Recurred/Progressed 11.21 5.6 Resistant TCGA-29-1696-01 IIIC G2 1-10 mm -TCGA-29-1697 62.83 1:DECEASED COMPLETE RESPONSE WITH TUMOR 31.08 1:Recurred/Progressed 16.36 10.4 Sensitive TCGA-29-1697-01 IIIC G3 >20mm -TCGA-29-1698 53.73 0:LIVING COMPLETE RESPONSE WITH TUMOR 68.1 1:Recurred/Progressed 5.9 -1.8 Resistant TCGA-29-1698-01 IIIC G3 1-10 mm -TCGA-29-1699 57.89 1:DECEASED 36.26 MISSING MISSING MISSING TCGA-29-1699-01 IIIC G3 1-10 mm -TCGA-29-1701 56.81 1:DECEASED PARTIAL RESPONSE WITH TUMOR 16.89 1:Recurred/Progressed 9.77 4.5 Resistant TCGA-29-1701-01 IIIC G3 -TCGA-29-1702 84.68 1:DECEASED COMPLETE RESPONSE WITH TUMOR 23.87 1:Recurred/Progressed 9.34 2.9 Resistant TCGA-29-1702-01 IIIC G3 1-10 mm -TCGA-29-1703 56.5 0:LIVING COMPLETE RESPONSE WITH TUMOR 55.08 1:Recurred/Progressed 10.62 5.3 Resistant TCGA-29-1703-01 IIIC G2 1-10 mm -TCGA-29-1705 48.03 1:DECEASED COMPLETE RESPONSE WITH TUMOR 18.2 1:Recurred/Progressed 9.28 3.71 Resistant TCGA-29-1705-01 IIIC G2 >20mm -TCGA-29-1707 41.14 0:LIVING COMPLETE RESPONSE 41.84 1:Recurred/Progressed 39.34 34.8 Sensitive TCGA-29-1707-01 IIC G3 No Macroscopic disease -TCGA-29-1710 54.71 1:DECEASED PARTIAL RESPONSE WITH TUMOR 31.18 1:Recurred/Progressed 10.33 MISSING TCGA-29-1710-01 IIIC G2 1-10 mm -TCGA-29-1711 45.16 0:LIVING COMPLETE RESPONSE TUMOR FREE 34.52 0:DiseaseFree 34.52 30.1 Sensitive TCGA-29-1711-01 IIIC G2 No Macroscopic disease -TCGA-29-1761 80.38 1:DECEASED STABLE DISEASE WITH TUMOR 17.31 1:Recurred/Progressed MISSING MISSING TCGA-29-1761-01 IIIC G3 >20mm -TCGA-29-1762 59.94 1:DECEASED COMPLETE RESPONSE WITH TUMOR 86.36 1:Recurred/Progressed 45.05 40.6 Sensitive TCGA-29-1762-01 IV G2 >20mm -TCGA-29-1763 43.89 0:LIVING COMPLETE RESPONSE WITH TUMOR 66.59 1:Recurred/Progressed 14.03 10.8 Sensitive TCGA-29-1763-01 IIC G2 1-10 mm -TCGA-29-1764 49.35 0:LIVING COMPLETE RESPONSE WITH TUMOR 62.75 1:Recurred/Progressed 25.97 20.5 Sensitive TCGA-29-1764-01 IIIC G2 >20mm -TCGA-29-1766 74.96 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 39.28 1:Recurred/Progressed 22.03 15.9 Sensitive TCGA-29-1766-01 IIIC G2 11-20 mm -TCGA-29-1768 50.4 1:DECEASED STABLE DISEASE WITH TUMOR 31.21 1:Recurred/Progressed 17.93 14.6 Sensitive TCGA-29-1768-01 IV G3 >20mm -TCGA-29-1769 40.42 0:LIVING COMPLETE RESPONSE TUMOR FREE 22.92 0:DiseaseFree 22.92 18 Sensitive TCGA-29-1769-01 IIIC G3 1-10 mm -TCGA-29-1770 54.83 0:LIVING COMPLETE RESPONSE WITH TUMOR 24.3 1:Recurred/Progressed 12.36 7.9 Sensitive TCGA-29-1770-01 IIIC G2 1-10 mm -TCGA-29-1771 76.97 0:LIVING COMPLETE RESPONSE WITH TUMOR 22.46 1:Recurred/Progressed 19.48 14.9 Sensitive TCGA-29-1771-01 IIIC G2 >20mm -TCGA-29-1774 82.17 0:LIVING PROGRESSIVE DISEASE WITH TUMOR 17.25 1:Recurred/Progressed 7.64 6.5 Sensitive TCGA-29-1774-01 IIIC G3 >20mm -TCGA-29-1775 51.9 0:LIVING COMPLETE RESPONSE WITH TUMOR 12.33 1:Recurred/Progressed 11.18 5.7 Resistant TCGA-29-1775-01 IIIC G2 -TCGA-29-1776 63.06 0:LIVING STABLE DISEASE WITH TUMOR 11.8 1:Recurred/Progressed MISSING MISSING TCGA-29-1776-01 IIIC G3 >20mm -TCGA-29-1777 47.55 0:LIVING PROGRESSIVE DISEASE WITH TUMOR 12.26 1:Recurred/Progressed MISSING MISSING TCGA-29-1777-01 IIIC G2 >20mm -TCGA-29-1778 77.11 0:LIVING COMPLETE RESPONSE TUMOR FREE 14.89 0:DiseaseFree 14.89 10.8 Sensitive TCGA-29-1778-01 IIIC G3 No Macroscopic disease -TCGA-29-1781 69.6 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.33 0:DiseaseFree 8.33 0 Tooearly TCGA-29-1781-01 IIIC G3 -TCGA-29-1783 58.31 0:LIVING TUMOR FREE 7.18 0:DiseaseFree 7.18 2.1 Tooearly TCGA-29-1783-01 IIIC G3 -TCGA-29-1784 55.37 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.34 0:DiseaseFree 5.34 0.9 Tooearly TCGA-29-1784-01 IIIC G3 -TCGA-29-1785 55.94 1:DECEASED COMPLETE RESPONSE 36.2 1:Recurred/Progressed 15.51 10.4 Sensitive TCGA-29-1785-01 IIIC G3 >20mm -TCGA-29-2414 75.12 1:DECEASED COMPLETE RESPONSE WITH TUMOR 85.93 1:Recurred/Progressed 18.07 13.73 Sensitive TCGA-29-2414-01 IIIC G2 11-20 mm -TCGA-29-2425 60.52 0:LIVING COMPLETE RESPONSE TUMOR FREE 64.82 1:Recurred/Progressed 51.7 44.97 Sensitive TCGA-29-2425-01 IIIC G2 >20mm -TCGA-29-2427 60.11 0:LIVING COMPLETE RESPONSE WITH TUMOR 62.3 1:Recurred/Progressed 51.84 MISSING TCGA-29-2427-01 IIIC G3 >20mm -TCGA-29-2428 58.61 0:LIVING COMPLETE RESPONSE TUMOR FREE 44.98 0:DiseaseFree 44.98 40.28 Sensitive TCGA-29-2428-01 IIIC G3 >20mm -TCGA-30-1714 68.58 1:DECEASED COMPLETE RESPONSE WITH TUMOR 37.97 1:Recurred/Progressed 7.9 3.9 Resistant TCGA-30-1714-01 IV G3 1-10 mm -TCGA-30-1718 44.93 1:DECEASED WITH TUMOR 51.77 1:Recurred/Progressed 29.38 23.6 Sensitive TCGA-30-1718-01 IIIC G3 1-10 mm -TCGA-30-1853 58.64 1:DECEASED COMPLETE RESPONSE WITH TUMOR 36.16 1:Recurred/Progressed 20.79 16.7 Sensitive TCGA-30-1853-01 IIIC G3 1-10 mm -TCGA-30-1855 61.35 1:DECEASED WITH TUMOR 2.46 1:Recurred/Progressed MISSING MISSING TCGA-30-1855-01 IIIC G3 1-10 mm -TCGA-30-1856 56.51 1:DECEASED PARTIAL RESPONSE WITH TUMOR 15.64 1:Recurred/Progressed 7.18 0.8 Resistant TCGA-30-1856-01 IIIC G3 1-10 mm -TCGA-30-1857 64.91 1:DECEASED WITH TUMOR 0.13 1:Recurred/Progressed MISSING MISSING TCGA-30-1857-01 IV G3 -TCGA-30-1859 56.16 1:DECEASED PARTIAL RESPONSE WITH TUMOR 47.93 1:Recurred/Progressed MISSING MISSING TCGA-30-1859-01 G3 1-10 mm -TCGA-30-1860 58.65 1:DECEASED COMPLETE RESPONSE WITH TUMOR 44.79 1:Recurred/Progressed 13.02 6.3 Sensitive TCGA-30-1860-01 IIIC G3 >20mm -TCGA-30-1861 74.25 1:DECEASED 34.69 MISSING MISSING MISSING TCGA-30-1861-01 IIIC G3 1-10 mm -TCGA-30-1862 65.47 1:DECEASED WITH TUMOR 6.07 1:Recurred/Progressed MISSING MISSING TCGA-30-1862-01 IV G2 >20mm -TCGA-30-1866 61.81 1:DECEASED COMPLETE RESPONSE WITH TUMOR 36.52 1:Recurred/Progressed 9.31 5.2 Resistant TCGA-30-1866-01 IV G2 1-10 mm -TCGA-30-1867 47.01 1:DECEASED WITH TUMOR 1.18 1:Recurred/Progressed MISSING MISSING TCGA-30-1867-01 IV -TCGA-30-1880 56.23 1:DECEASED PARTIAL RESPONSE WITH TUMOR 57.41 1:Recurred/Progressed 11.41 6.4 Sensitive TCGA-30-1880-01 IIIC G3 No Macroscopic disease -TCGA-30-1887 67.11 1:DECEASED PARTIAL RESPONSE WITH TUMOR 24.2 1:Recurred/Progressed MISSING MISSING TCGA-30-1887-01 IIIC G2 1-10 mm -TCGA-30-1891 61.22 1:DECEASED PARTIAL RESPONSE WITH TUMOR 29.97 1:Recurred/Progressed 5.93 1.3 Resistant TCGA-30-1891-01 IIIC G2 1-10 mm -TCGA-30-1892 52.75 1:DECEASED COMPLETE RESPONSE WITH TUMOR 48.66 1:Recurred/Progressed 8.3 3.9 Resistant TCGA-30-1892-01 IIIC G3 1-10 mm -TCGA-31-1944 47.11 0:LIVING COMPLETE RESPONSE WITH TUMOR 45.87 1:Recurred/Progressed 22.66 14.79 Sensitive TCGA-31-1944-01 IIIC G3 No Macroscopic disease -TCGA-31-1946 30.5 0:LIVING WITH TUMOR 30.49 1:Recurred/Progressed 22.16 20.4 Sensitive TCGA-31-1946-01 IIIC G3 No Macroscopic disease -TCGA-31-1950 76.96 0:LIVING PARTIAL RESPONSE WITH TUMOR 19.02 1:Recurred/Progressed 11.74 6.7 Sensitive TCGA-31-1950-01 IIIC G2 1-10 mm -TCGA-31-1951 58.48 0:LIVING WITH TUMOR 22.66 1:Recurred/Progressed 21.84 16.74 Sensitive TCGA-31-1951-01 IIIC G3 No Macroscopic disease -TCGA-31-1953 52.2 0:LIVING PROGRESSIVE DISEASE WITH TUMOR 7.05 1:Recurred/Progressed 2.66 0.2 Resistant TCGA-31-1953-01 IIIC G3 -TCGA-31-1956 60.55 0:LIVING WITH TUMOR 43.97 1:Recurred/Progressed MISSING MISSING TCGA-31-1956-01 IIIB G3 -TCGA-31-1959 49.96 0:LIVING WITH TUMOR 2.49 1:Recurred/Progressed MISSING MISSING TCGA-31-1959-01 IV G2 -TCGA-36-1568 52.91 0:LIVING PARTIAL RESPONSE WITH TUMOR 28.66 1:Recurred/Progressed 17.93 14 Sensitive TCGA-36-1568-01 IIIC G3 -TCGA-36-1569 52.5 0:LIVING PARTIAL RESPONSE 28.56 0:DiseaseFree 28.56 MISSING TCGA-36-1569-01 IIIC G3 1-10 mm -TCGA-36-1570 49.19 0:LIVING PARTIAL RESPONSE WITH TUMOR 21.48 1:Recurred/Progressed 12.3 8 Sensitive TCGA-36-1570-01 IIIC G3 >20mm -TCGA-36-1571 53.72 1:DECEASED COMPLETE RESPONSE WITH TUMOR 22.79 1:Recurred/Progressed 12.26 6.6 Sensitive TCGA-36-1571-01 IIIB G3 No Macroscopic disease -TCGA-36-1574 48.9 0:LIVING COMPLETE RESPONSE WITH TUMOR 22.49 1:Recurred/Progressed 21.25 14.6 Sensitive TCGA-36-1574-01 IIIC G3 >20mm -TCGA-36-1575 83.81 0:LIVING TUMOR FREE 8.52 0:DiseaseFree 8.52 MISSING TCGA-36-1575-01 IIIB G3 No Macroscopic disease -TCGA-36-1576 76.1 0:LIVING COMPLETE RESPONSE WITH TUMOR 29.97 1:Recurred/Progressed 26.75 19.5 Sensitive TCGA-36-1576-01 IIIC G3 >20mm -TCGA-36-1577 43.3 0:LIVING COMPLETE RESPONSE TUMOR FREE 25.67 0:DiseaseFree 25.67 MISSING TCGA-36-1577-01 IIC G2 No Macroscopic disease -TCGA-36-1578 63.92 0:LIVING WITH TUMOR 27.77 1:Recurred/Progressed 10.16 3.1 Resistant TCGA-36-1578-01 IV G3 >20mm -TCGA-36-1580 82.17 1:DECEASED WITH TUMOR 24.16 1:Recurred/Progressed 14.43 3 Resistant TCGA-36-1580-01 IIIC G3 >20mm -TCGA-36-1581 63.76 0:LIVING COMPLETE RESPONSE WITH TUMOR 24.62 1:Recurred/Progressed 23.02 18.5 Sensitive TCGA-36-1581-01 IIC G3 No Macroscopic disease -TCGA-57-1582 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 23.97 1:Recurred/Progressed MISSING MISSING TCGA-57-1582-01 IIIC G3 1-10 mm -TCGA-57-1583 57.96 1:DECEASED WITH TUMOR 11.34 1:Recurred/Progressed MISSING MISSING TCGA-57-1583-01 IIIC G3 No Macroscopic disease -TCGA-57-1584 47.28 0:LIVING WITH TUMOR 21.08 1:Recurred/Progressed 17.38 MISSING TCGA-57-1584-01 IIIC G3 1-10 mm -TCGA-57-1585 57.18 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 1.08 1:Recurred/Progressed MISSING MISSING TCGA-57-1585-01 IIIC G3 11-20 mm -TCGA-57-1586 66.68 0:LIVING WITH TUMOR 21.57 1:Recurred/Progressed 7.8 3.2 Resistant TCGA-57-1586-01 IIIC G3 11-20 mm -TCGA-57-1993 56.15 0:LIVING TUMOR FREE 24.69 0:DiseaseFree 24.69 MISSING TCGA-57-1993-01 IIIC G3 No Macroscopic disease -TCGA-57-1994 MISSING MISSING TCGA-57-1994-01 -TCGA-59-2348 0:LIVING COMPLETE RESPONSE TUMOR FREE 179.18 0:DiseaseFree 179.18 MISSING TCGA-59-2348-01 IIIC G3 -TCGA-59-2350 1:DECEASED PARTIAL RESPONSE WITH TUMOR 22.26 1:Recurred/Progressed 6.92 MISSING TCGA-59-2350-01 IV G3 1-10 mm -TCGA-59-2351 0:LIVING COMPLETE RESPONSE TUMOR FREE 115.8 1:Recurred/Progressed 70.13 MISSING TCGA-59-2351-01 IIIC G3 1-10 mm -TCGA-59-2352 1:DECEASED WITH TUMOR 8.2 1:Recurred/Progressed MISSING MISSING TCGA-59-2352-01 IIIC G3 -TCGA-59-2354 1:DECEASED STABLE DISEASE WITH TUMOR 34.3 1:Recurred/Progressed 15.11 MISSING TCGA-59-2354-01 IIIC G3 1-10 mm -TCGA-59-2355 1:DECEASED WITH TUMOR 2.13 1:Recurred/Progressed MISSING MISSING TCGA-59-2355-01 IV G3 >20mm -TCGA-59-2363 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.15 0:DiseaseFree 5.15 MISSING TCGA-59-2363-01 IIIA G3 No Macroscopic disease -TCGA-61-1724 47.03 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 20.95 1:Recurred/Progressed MISSING MISSING TCGA-61-1724-01 IIIC G3 No Macroscopic disease -TCGA-61-1725 40.49 0:LIVING STABLE DISEASE WITH TUMOR 31.44 1:Recurred/Progressed 27.77 22.5 Sensitive TCGA-61-1725-01 IIIC G3 11-20 mm -TCGA-61-1728 59.12 0:LIVING COMPLETE RESPONSE TUMOR FREE 27.9 1:Recurred/Progressed 17.57 10.8 Sensitive TCGA-61-1728-01 IV G3 1-10 mm -TCGA-61-1733 71.72 0:LIVING STABLE DISEASE WITH TUMOR 31.8 1:Recurred/Progressed 5.84 1.6 Resistant TCGA-61-1733-01 IIIC G3 No Macroscopic disease -TCGA-61-1736 45.5 1:DECEASED COMPLETE RESPONSE WITH TUMOR 48.79 1:Recurred/Progressed 25.18 20.5 Sensitive TCGA-61-1736-01 IIIC G3 -TCGA-61-1737 42.55 0:LIVING COMPLETE RESPONSE TUMOR FREE 44.23 0:DiseaseFree 44.23 39 Sensitive TCGA-61-1737-01 IV G3 1-10 mm -TCGA-61-1738 60.16 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 35.93 1:Recurred/Progressed 9.28 0 Resistant TCGA-61-1738-01 IIIC G3 1-10 mm -TCGA-61-1740 71.68 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 2.62 1:Recurred/Progressed MISSING MISSING TCGA-61-1740-01 IIIC G3 >20mm -TCGA-61-1741 76.05 1:DECEASED COMPLETE RESPONSE WITH TUMOR 33.67 1:Recurred/Progressed 16.07 10.1 Sensitive TCGA-61-1741-01 IIIB G3 >20mm -TCGA-61-1743 53.05 1:DECEASED COMPLETE RESPONSE WITH TUMOR 43.64 1:Recurred/Progressed 26.59 21 Sensitive TCGA-61-1743-01 IIC G2 No Macroscopic disease -TCGA-61-1895 52.21 0:LIVING STABLE DISEASE TUMOR FREE 1.54 0:DiseaseFree 1.54 -3.7 Tooearly TCGA-61-1895-01 IIIB G3 No Macroscopic disease -TCGA-61-1899 81.32 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.69 0:DiseaseFree 8.69 3.2 Tooearly TCGA-61-1899-01 IIIC G3 No Macroscopic disease -TCGA-61-1900 51.95 0:LIVING STABLE DISEASE TUMOR FREE 5.8 0:DiseaseFree 5.8 3.3 Tooearly TCGA-61-1900-01 IIIB G3 No Macroscopic disease -TCGA-61-1901 65.87 1:DECEASED STABLE DISEASE WITH TUMOR 11.38 1:Recurred/Progressed 10.79 1.2 Resistant TCGA-61-1901-01 IV G3 -TCGA-61-1904 60.29 0:LIVING COMPLETE RESPONSE TUMOR FREE 9.18 0:DiseaseFree 9.18 3.8 Tooearly TCGA-61-1904-01 IIIC G3 1-10 mm -TCGA-61-1906 55.81 1:DECEASED COMPLETE RESPONSE WITH TUMOR 34.23 1:Recurred/Progressed 7.93 2.8 Resistant TCGA-61-1906-01 IIIC G3 11-20 mm -TCGA-61-1907 63.56 0:LIVING STABLE DISEASE WITH TUMOR 31.38 1:Recurred/Progressed 24.52 19.1 Sensitive TCGA-61-1907-01 IIIC G3 11-20 mm -TCGA-61-1910 56.92 0:LIVING COMPLETE RESPONSE TUMOR FREE 37.05 0:DiseaseFree 37.05 31.7 Sensitive TCGA-61-1910-01 IIC G3 1-10 mm -TCGA-61-1911 55.17 0:LIVING COMPLETE RESPONSE WITH TUMOR 42.62 1:Recurred/Progressed 27.9 23 Sensitive TCGA-61-1911-01 IIA G3 -TCGA-61-1913 48.12 0:LIVING COMPLETE RESPONSE TUMOR FREE 49.08 0:DiseaseFree 49.08 44.7 Sensitive TCGA-61-1913-01 IIIB G3 1-10 mm -TCGA-61-1914 65.33 0:LIVING COMPLETE RESPONSE WITH TUMOR 56.52 1:Recurred/Progressed 54.95 48.6 Sensitive TCGA-61-1914-01 IIIC G3 >20mm -TCGA-61-1915 50.46 0:LIVING COMPLETE RESPONSE TUMOR FREE 67.7 0:DiseaseFree 67.7 63 Sensitive TCGA-61-1915-01 IIC G3 -TCGA-61-1917 60.19 1:DECEASED COMPLETE RESPONSE 43.41 MISSING MISSING MISSING TCGA-61-1917-01 IIIB G3 -TCGA-61-1918 45.7 1:DECEASED COMPLETE RESPONSE WITH TUMOR 15.93 1:Recurred/Progressed 13.77 8.7 Sensitive TCGA-61-1918-01 IV G3 No Macroscopic disease -TCGA-61-1919 58.07 1:DECEASED COMPLETE RESPONSE 38.16 1:Recurred/Progressed 14.49 MISSING TCGA-61-1919-01 IIIC G2 -TCGA-61-1995 43.86 0:LIVING STABLE DISEASE WITH TUMOR 2.16 1:Recurred/Progressed MISSING MISSING TCGA-61-1995-01 IIIC G3 1-10 mm -TCGA-61-1998 48.91 0:LIVING WITH TUMOR 5.61 1:Recurred/Progressed MISSING MISSING TCGA-61-1998-01 IIIC G3 1-10 mm -TCGA-61-2000 67.72 0:LIVING STABLE DISEASE WITH TUMOR 14.66 1:Recurred/Progressed 11.31 3.6 Resistant TCGA-61-2000-01 IIIC G3 No Macroscopic disease -TCGA-61-2002 46.88 0:LIVING PROGRESSIVE DISEASE WITH TUMOR 18.1 1:Recurred/Progressed MISSING MISSING TCGA-61-2002-01 IIIC G3 11-20 mm -TCGA-61-2003 53.73 0:LIVING PROGRESSIVE DISEASE WITH TUMOR 3.8 1:Recurred/Progressed MISSING MISSING TCGA-61-2003-01 IIIC G2 1-10 mm -TCGA-61-2008 40.51 0:LIVING COMPLETE RESPONSE WITH TUMOR 30.69 1:Recurred/Progressed 26.95 22 Sensitive TCGA-61-2008-01 IIC G2 No Macroscopic disease -TCGA-61-2009 65.12 0:LIVING COMPLETE RESPONSE WITH TUMOR 39.87 1:Recurred/Progressed 3.44 0.54 Resistant TCGA-61-2009-01 IIIC G3 11-20 mm -TCGA-61-2012 81.72 0:LIVING 30.62 0:DiseaseFree 30.62 MISSING TCGA-61-2012-01 IIC G2 -TCGA-61-2016 51.47 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 1.25 1:Recurred/Progressed MISSING MISSING TCGA-61-2016-01 IIIC G3 No Macroscopic disease -TCGA-61-2088 51.42 0:LIVING TUMOR FREE 4.82 0:DiseaseFree 4.82 0 Tooearly TCGA-61-2088-01 IIIC G3 No Macroscopic disease -TCGA-61-2092 57.72 0:LIVING COMPLETE RESPONSE TUMOR FREE 51.67 0:DiseaseFree 51.67 46.4 Sensitive TCGA-61-2092-01 IIIC G3 No Macroscopic disease -TCGA-61-2094 63.75 0:LIVING COMPLETE RESPONSE TUMOR FREE 71.67 0:DiseaseFree 71.67 66.2 Sensitive TCGA-61-2094-01 IIIC G3 -TCGA-61-2095 54.23 1:DECEASED COMPLETE RESPONSE WITH TUMOR 61.54 1:Recurred/Progressed 14.66 MISSING TCGA-61-2095-01 IIIC G2 No Macroscopic disease -TCGA-61-2097 71.11 0:LIVING COMPLETE RESPONSE TUMOR FREE 60.69 0:DiseaseFree 60.69 55.1 Sensitive TCGA-61-2097-01 IIC G2 1-10 mm -TCGA-61-2098 62.65 0:LIVING COMPLETE RESPONSE TUMOR FREE 65.54 0:DiseaseFree 65.54 60.7 Sensitive TCGA-61-2098-01 IIIC G2 11-20 mm -TCGA-61-2101 55.57 1:DECEASED PARTIAL RESPONSE WITH TUMOR 55.44 1:Recurred/Progressed MISSING 48.2 MISSING TCGA-61-2101-01 IIIC G2 11-20 mm -TCGA-61-2102 74.66 1:DECEASED WITH TUMOR 6.56 1:Recurred/Progressed MISSING MISSING TCGA-61-2102-01 IIIC G3 -TCGA-61-2104 53.23 0:LIVING COMPLETE RESPONSE 76.75 1:Recurred/Progressed 55.21 MISSING TCGA-61-2104-01 IIC G2 No Macroscopic disease -TCGA-61-2109 40.8 1:DECEASED WITH TUMOR 20.82 1:Recurred/Progressed 15.44 12.4 Sensitive TCGA-61-2109-01 IIIC G3 >20mm -TCGA-61-2110 56.75 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 44.52 1:Recurred/Progressed 7.11 1.7 Resistant TCGA-61-2110-01 IIIC No Macroscopic disease -TCGA-61-2111 61.68 0:LIVING COMPLETE RESPONSE WITH TUMOR 125.54 1:Recurred/Progressed 72.46 68 Sensitive TCGA-61-2111-01 IV G3 -TCGA-61-2113 54.01 1:DECEASED 22.39 1:Recurred/Progressed 9.77 4.74 Resistant TCGA-61-2113-01 IIC G3 \ No newline at end of file diff --git a/core/src/test/resources/clinical_data_PATIENT.txt b/core/src/test/resources/clinical_data_PATIENT.txt deleted file mode 100644 index 4db7766e217..00000000000 --- a/core/src/test/resources/clinical_data_PATIENT.txt +++ /dev/null @@ -1,493 +0,0 @@ -#PATIENT_ID AGE OS_STATUS PRIMARYTHERAPYOUTCOMESUCCESS PERSONNEOPLASMCANCERSTATUS OS_MONTHS DFS_STATUS DFS_MONTHS PLATINUMFREEINTERVAL (MOS)* PLATINUMSTATUS -#Patient Identfier Age at Diagnosis Overall Survival Status Primary Therapy Outcome Success Person Neoplasm Cancer Status Overall Survival (Months) Disease Free Status Disease Free Status (Months) PlatinumFreeInterval (mos)* Platinum Status -#STRING NUMBER STRING STRING STRING STRING STRING STRING STRING STRING -#1 1 1 1 1 1 1 1 1 1 -PATIENT_ID AGE OS_STATUS PRIMARYTHERAPYOUTCOMESUCCESS PERSONNEOPLASMCANCERSTATUS OS_MONTHS DFS_STATUS DFS_MONTHS PLATINUMFREEINTERVAL (MOS)* PLATINUMSTATUS -TCGA-A1-A0SB 79.04 1:DECEASED COMPLETE RESPONSE WITH TUMOR 43.8 1:Recurred/Progressed 15.05 9.6 Sensitive -TCGA-A1-A0SC 70.64 1:DECEASED WITH TUMOR 40.89 1:Recurred/Progressed 12.95 6.92 Sensitive -TCGA-A1-A0SI 55.53 0:LIVING COMPLETE RESPONSE TUMOR FREE 49.02 0:DiseaseFree 49.02 MISSING -TCGA-A1-A0SE 78.42 DECEASED WITH TUMOR 2.03 1:Recurred/Progressed MISSING MISSING -TCGA-04-1338 78.87 0:LIVING WITH TUMOR 46.49 Recurred/Progressed 12.46 5.8 Resistant -TCGA-04-1341 85.52 0:LIVING 0:DiseaseFree MISSING MISSING -TCGA-04-1342 80.82 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 18.46 1:Recurred/Progressed MISSING MISSING -TCGA-04-1343 72.41 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 11.84 1:Recurred/Progressed MISSING MISSING -TCGA-04-1346 73.6 0:LIVING COMPLETE RESPONSE TUMOR FREE 65.31 0:DiseaseFree 65.31 MISSING -TCGA-04-1347 81.36 0:LIVING COMPLETE RESPONSE TUMOR FREE 62.89 0:DiseaseFree 62.89 57.4 Sensitive -TCGA-04-1348 44.48 1:DECEASED COMPLETE RESPONSE WITH TUMOR 48.62 1:Recurred/Progressed 18.82 12.8 Sensitive -TCGA-04-1349 69.06 1:DECEASED COMPLETE RESPONSE WITH TUMOR 21.64 1:Recurred/Progressed 14.07 1.5 Resistant -TCGA-04-1350 46.41 1:DECEASED STABLE DISEASE WITH TUMOR 63.8 1:Recurred/Progressed 3.64 MISSING -TCGA-04-1356 62.61 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 49.15 1:Recurred/Progressed 5.11 MISSING -TCGA-04-1357 52.05 0:LIVING 0:DiseaseFree MISSING MISSING -TCGA-04-1361 57.15 0:LIVING STABLE DISEASE 32.43 1:Recurred/Progressed 30.36 MISSING -TCGA-04-1362 59.58 1:DECEASED WITH TUMOR 44.2 1:Recurred/Progressed 7.31 1.7 Resistant -TCGA-04-1364 61.08 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 33.61 1:Recurred/Progressed 9.48 3.3 Resistant -TCGA-04-1365 87.47 0:LIVING COMPLETE RESPONSE WITH TUMOR 76.33 1:Recurred/Progressed 43.54 37.4 Sensitive -TCGA-04-1367 50.89 0:LIVING COMPLETE RESPONSE TUMOR FREE 71.28 0:DiseaseFree 71.28 64.9 Sensitive -TCGA-04-1514 45.82 1:DECEASED COMPLETE RESPONSE TUMOR FREE 56.39 1:Recurred/Progressed 40.03 34 Sensitive -TCGA-04-1517 79.57 1:DECEASED COMPLETE RESPONSE WITH TUMOR 19.93 1:Recurred/Progressed 11.44 6.7 Sensitive -TCGA-04-1519 48.39 MISSING MISSING -TCGA-04-1525 47.86 1:DECEASED COMPLETE RESPONSE WITH TUMOR 38.26 1:Recurred/Progressed 6.95 0.9 Resistant -TCGA-04-1530 68.53 1:DECEASED COMPLETE RESPONSE WITH TUMOR 118.75 1:Recurred/Progressed 11.48 6.4 Sensitive -TCGA-04-1536 60.11 1:DECEASED WITH TUMOR 28.98 1:Recurred/Progressed 16.33 8.7 Sensitive -TCGA-04-1542 52.78 1:DECEASED COMPLETE RESPONSE WITH TUMOR 83.97 1:Recurred/Progressed 33.93 27.6 Sensitive -TCGA-04-1638 57.5 1:DECEASED TUMOR FREE 55.25 1:Recurred/Progressed 9.77 3.5 Resistant -TCGA-04-1646 60.84 1:DECEASED WITH TUMOR 27.8 1:Recurred/Progressed 16.66 8.8 Sensitive -TCGA-04-1648 57.84 1:DECEASED 28.56 1:Recurred/Progressed 13.51 8.6 Sensitive -TCGA-04-1649 74.42 0:LIVING 64.46 1:Recurred/Progressed 54.82 MISSING -TCGA-04-1651 53.78 1:DECEASED 36.07 1:Recurred/Progressed 32.39 27.6 Sensitive -TCGA-04-1652 76.98 1:DECEASED COMPLETE RESPONSE WITH TUMOR 31.87 1:Recurred/Progressed 28.95 22.5 Sensitive -TCGA-04-1654 69.61 1:DECEASED 46.85 1:Recurred/Progressed 25.77 24.8 Sensitive -TCGA-04-1655 49.28 1:DECEASED 45.21 1:Recurred/Progressed 26.85 22.3 Sensitive -TCGA-09-0364 80.17 1:DECEASED COMPLETE RESPONSE WITH TUMOR 29.08 1:Recurred/Progressed 12.95 6.8 Sensitive -TCGA-09-0366 56 1:DECEASED STABLE DISEASE WITH TUMOR 57.57 1:Recurred/Progressed 6.2 2.5 Resistant -TCGA-09-0367 67.05 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 17.9 1:Recurred/Progressed MISSING MISSING -TCGA-09-0369 56.73 1:DECEASED COMPLETE RESPONSE WITH TUMOR 35.44 1:Recurred/Progressed 8.95 5.8 Resistant -TCGA-09-1659 51.32 1:DECEASED STABLE DISEASE WITH TUMOR 9.93 1:Recurred/Progressed MISSING MISSING -TCGA-09-1661 75.38 1:DECEASED STABLE DISEASE WITH TUMOR 37.41 1:Recurred/Progressed MISSING MISSING -TCGA-09-1662 58.21 1:DECEASED COMPLETE RESPONSE WITH TUMOR 89.08 1:Recurred/Progressed 34.3 29.7 Sensitive -TCGA-09-1665 74 1:DECEASED COMPLETE RESPONSE WITH TUMOR 41.48 1:Recurred/Progressed 15.34 8.5 Sensitive -TCGA-09-1666 57.72 0:LIVING COMPLETE RESPONSE WITH TUMOR 57.41 1:Recurred/Progressed 15.74 10.1 Sensitive -TCGA-09-1667 61.11 0:LIVING COMPLETE RESPONSE WITH TUMOR 61.7 1:Recurred/Progressed 15.08 11.3 Sensitive -TCGA-09-1668 57.45 0:LIVING COMPLETE RESPONSE WITH TUMOR 55.21 1:Recurred/Progressed MISSING MISSING -TCGA-09-1669 54.94 0:LIVING COMPLETE RESPONSE WITH TUMOR 30.39 1:Recurred/Progressed MISSING MISSING -TCGA-09-1670 58.04 0:LIVING COMPLETE RESPONSE WITH TUMOR 16.69 1:Recurred/Progressed 16.69 12.1 Sensitive -TCGA-09-1673 50.96 0:LIVING WITH TUMOR 3.02 1:Recurred/Progressed MISSING MISSING -TCGA-09-1674 79.12 0:LIVING COMPLETE RESPONSE WITH TUMOR 8.52 1:Recurred/Progressed MISSING MISSING -TCGA-09-2044 77.34 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.1 0:DiseaseFree 6.1 1.07 Tooearly -TCGA-09-2045 50.1 1:DECEASED STABLE DISEASE WITH TUMOR 35.05 1:Recurred/Progressed 20.69 12.72 Sensitive -TCGA-09-2048 63.13 1:DECEASED STABLE DISEASE WITH TUMOR 4.49 1:Recurred/Progressed MISSING MISSING -TCGA-09-2049 64.14 0:LIVING COMPLETE RESPONSE WITH TUMOR 112.07 1:Recurred/Progressed 31.21 25.51 Sensitive -TCGA-09-2050 65.72 0:LIVING COMPLETE RESPONSE TUMOR FREE 70.92 0:DiseaseFree 70.92 67.28 Sensitive -TCGA-09-2051 42.88 0:LIVING COMPLETE RESPONSE TUMOR FREE 62.92 1:Recurred/Progressed 19.11 13.95 Sensitive -TCGA-09-2053 72.42 0:LIVING COMPLETE RESPONSE TUMOR FREE 39.64 0:DiseaseFree 39.64 35.3 Sensitive -TCGA-09-2054 58.32 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 20.85 1:Recurred/Progressed MISSING MISSING -TCGA-09-2056 62.64 0:LIVING COMPLETE RESPONSE TUMOR FREE 12.43 0:DiseaseFree 12.43 7.6 Sensitive -TCGA-10-0926 63.85 1:DECEASED COMPLETE RESPONSE WITH TUMOR 25.84 1:Recurred/Progressed 9.41 4.8 Resistant -TCGA-10-0927 65.7 1:DECEASED COMPLETE RESPONSE WITH TUMOR 81.64 1:Recurred/Progressed 32.82 28.9 Sensitive -TCGA-10-0928 71.41 1:DECEASED WITH TUMOR 18.43 1:Recurred/Progressed MISSING MISSING -TCGA-10-0930 70.51 1:DECEASED COMPLETE RESPONSE WITH TUMOR 34.1 1:Recurred/Progressed 22.3 18.2 Sensitive -TCGA-10-0931 44.55 1:DECEASED COMPLETE RESPONSE WITH TUMOR 32.79 1:Recurred/Progressed 9.84 5.7 Resistant -TCGA-10-0933 77.9 1:DECEASED COMPLETE RESPONSE WITH TUMOR 14.62 1:Recurred/Progressed 11.67 7.3 Sensitive -TCGA-10-0934 50.96 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 6.66 1:Recurred/Progressed 3.61 1.8 Resistant -TCGA-10-0935 68.76 1:DECEASED WITH TUMOR 35.31 1:Recurred/Progressed MISSING MISSING -TCGA-10-0936 69.74 1:DECEASED PARTIAL RESPONSE WITH TUMOR 36.82 1:Recurred/Progressed MISSING MISSING -TCGA-10-0937 44.44 1:DECEASED COMPLETE RESPONSE WITH TUMOR 19.93 1:Recurred/Progressed 7.7 2.9 Resistant -TCGA-10-0938 80.98 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 20.85 1:Recurred/Progressed 11.87 5.6 Resistant -TCGA-13-0714 55.1 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 6.1 1:Recurred/Progressed 3.51 MISSING -TCGA-13-0717 54.91 1:DECEASED COMPLETE RESPONSE WITH TUMOR 24.52 1:Recurred/Progressed 9.64 3.8 Resistant -TCGA-13-0720 48.76 1:DECEASED COMPLETE RESPONSE WITH TUMOR 44.43 1:Recurred/Progressed 9.57 3.7 Resistant -TCGA-13-0723 63.27 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 39.48 1:Recurred/Progressed 6.89 0.3 Resistant -TCGA-13-0724 72.26 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 1.57 1:Recurred/Progressed 1.57 0.3 Resistant -TCGA-13-0725 44.09 1:DECEASED COMPLETE RESPONSE WITH TUMOR 12.1 1:Recurred/Progressed 5.97 -0.8 Resistant -TCGA-13-0726 55.16 1:DECEASED COMPLETE RESPONSE WITH TUMOR 31.08 1:Recurred/Progressed 12.85 7.3 Sensitive -TCGA-13-0727 71.74 1:DECEASED COMPLETE RESPONSE WITH TUMOR 15.15 1:Recurred/Progressed 8.3 4.3 Resistant -TCGA-13-0730 71.55 1:DECEASED WITH TUMOR 16.82 1:Recurred/Progressed MISSING MISSING -TCGA-13-0751 44.67 1:DECEASED COMPLETE RESPONSE WITH TUMOR 55.02 1:Recurred/Progressed 21.41 12.7 Sensitive -TCGA-13-0755 75.17 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 2.46 1:Recurred/Progressed 1.11 -0.2 Resistant -TCGA-13-0757 71.23 1:DECEASED COMPLETE RESPONSE WITH TUMOR 11.15 1:Recurred/Progressed 9.61 0.8 Resistant -TCGA-13-0760 63.23 1:DECEASED 10.1 MISSING MISSING MISSING -TCGA-13-0761 51.22 0:LIVING COMPLETE RESPONSE WITH TUMOR 33.97 1:Recurred/Progressed 13.87 6.7 Sensitive -TCGA-13-0762 65.64 0:LIVING COMPLETE RESPONSE TUMOR FREE 32.16 0:DiseaseFree 32.16 27.6 Sensitive -TCGA-13-0764 63.01 0:LIVING PARTIAL RESPONSE WITH TUMOR 29.84 1:Recurred/Progressed 7.8 3.6 Resistant -TCGA-13-0765 50.89 0:LIVING COMPLETE RESPONSE WITH TUMOR 28.49 1:Recurred/Progressed 21.9 16.6 Sensitive -TCGA-13-0766 42.66 0:LIVING COMPLETE RESPONSE WITH TUMOR 21.34 1:Recurred/Progressed 20.59 14.6 Sensitive -TCGA-13-0768 73.97 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.39 0:DiseaseFree 8.39 3.6 Tooearly -TCGA-13-0791 58.57 0:LIVING COMPLETE RESPONSE WITH TUMOR 38.82 1:Recurred/Progressed 9.21 4.6 Resistant -TCGA-13-0792 40.35 0:LIVING COMPLETE RESPONSE WITH TUMOR 36.62 1:Recurred/Progressed 26.75 21.7 Sensitive -TCGA-13-0793 40.29 0:LIVING COMPLETE RESPONSE WITH TUMOR 28.62 1:Recurred/Progressed 11.51 6.3 Sensitive -TCGA-13-0794 60.12 0:LIVING COMPLETE RESPONSE WITH TUMOR 30.26 1:Recurred/Progressed 27.7 23.4 Sensitive -TCGA-13-0795 66.94 0:LIVING COMPLETE RESPONSE WITH TUMOR 18.56 1:Recurred/Progressed 9.7 4 Resistant -TCGA-13-0797 49.45 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.69 0:DiseaseFree 8.69 3.9 Tooearly -TCGA-13-0799 44.3 0:LIVING COMPLETE RESPONSE TUMOR FREE 7.77 0:DiseaseFree 7.77 3 Tooearly -TCGA-13-0800 52.29 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.1 0:DiseaseFree 8.1 3.5 Tooearly -TCGA-13-0801 46.06 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.26 0:DiseaseFree 8.26 3.5 Tooearly -TCGA-13-0802 79.66 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.16 0:DiseaseFree 8.16 2 Tooearly -TCGA-13-0803 81.33 1:DECEASED COMPLETE RESPONSE WITH TUMOR 43.7 1:Recurred/Progressed 11.02 3.7 Resistant -TCGA-13-0804 74.03 1:DECEASED COMPLETE RESPONSE WITH TUMOR 35.18 1:Recurred/Progressed 10.79 5.5 Resistant -TCGA-13-0805 57.57 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 35.21 1:Recurred/Progressed 5.77 0.9 Resistant -TCGA-13-0807 54.49 1:DECEASED 13.57 MISSING MISSING MISSING -TCGA-13-0883 61.36 1:DECEASED COMPLETE RESPONSE WITH TUMOR 68.72 1:Recurred/Progressed 26.82 15.4 Sensitive -TCGA-13-0884 39.96 1:DECEASED COMPLETE RESPONSE WITH TUMOR 105.31 1:Recurred/Progressed 39.44 31 Sensitive -TCGA-13-0885 70.58 0:LIVING COMPLETE RESPONSE 91.15 0:DiseaseFree 91.15 84.4 Sensitive -TCGA-13-0886 67.73 0:LIVING COMPLETE RESPONSE TUMOR FREE 74.07 0:DiseaseFree 74.07 65.6 Sensitive -TCGA-13-0887 42.93 1:DECEASED COMPLETE RESPONSE WITH TUMOR 66.46 1:Recurred/Progressed 16.82 8.1 Sensitive -TCGA-13-0888 78.08 0:LIVING PARTIAL RESPONSE TUMOR FREE 70.2 0:DiseaseFree 70.2 62.8 Sensitive -TCGA-13-0889 75.82 0:LIVING COMPLETE RESPONSE TUMOR FREE 61.64 0:DiseaseFree 61.64 56.5 Sensitive -TCGA-13-0890 56.9 0:LIVING COMPLETE RESPONSE TUMOR FREE 67.8 0:DiseaseFree 67.8 59.97 Sensitive -TCGA-13-0891 73.74 0:LIVING COMPLETE RESPONSE WITH TUMOR 67.84 1:Recurred/Progressed 23.97 19 Sensitive -TCGA-13-0893 48.31 1:DECEASED PARTIAL RESPONSE WITH TUMOR 41.31 1:Recurred/Progressed 13.18 5.8 Resistant -TCGA-13-0894 53.33 1:DECEASED COMPLETE RESPONSE WITH TUMOR 49.48 1:Recurred/Progressed 18.52 7.7 Sensitive -TCGA-13-0897 54.5 0:LIVING COMPLETE RESPONSE WITH TUMOR 57.31 1:Recurred/Progressed 18.13 13.6 Sensitive -TCGA-13-0899 60.36 0:LIVING COMPLETE RESPONSE WITH TUMOR 56 1:Recurred/Progressed 17.93 13.8 Sensitive -TCGA-13-0900 59.47 0:LIVING COMPLETE RESPONSE TUMOR FREE 56.59 0:DiseaseFree 56.59 51.7 Sensitive -TCGA-13-0901 42.01 0:LIVING COMPLETE RESPONSE WITH TUMOR 19.31 1:Recurred/Progressed 12.79 7.4 Sensitive -TCGA-13-0903 43.03 0:LIVING COMPLETE RESPONSE WITH TUMOR 47.25 1:Recurred/Progressed MISSING MISSING -TCGA-13-0904 63.86 0:LIVING PARTIAL RESPONSE WITH TUMOR 47.18 1:Recurred/Progressed 9.77 2.6 Resistant -TCGA-13-0905 51.39 0:LIVING COMPLETE RESPONSE TUMOR FREE 47.7 0:DiseaseFree 47.7 40.5 Sensitive -TCGA-13-0906 50.36 0:LIVING COMPLETE RESPONSE TUMOR FREE 44.82 0:DiseaseFree 44.82 40.1 Sensitive -TCGA-13-0908 58.69 0:LIVING COMPLETE RESPONSE WITH TUMOR 44.72 1:Recurred/Progressed 18.1 10.1 Sensitive -TCGA-13-0910 58.91 0:LIVING COMPLETE RESPONSE TUMOR FREE 36.03 0:DiseaseFree 36.03 27.6 Sensitive -TCGA-13-0911 55.57 0:LIVING PARTIAL RESPONSE WITH TUMOR 27.41 1:Recurred/Progressed 8.92 3 Resistant -TCGA-13-0912 58.7 0:LIVING COMPLETE RESPONSE WITH TUMOR 33.97 1:Recurred/Progressed 15.34 10.6 Sensitive -TCGA-13-0913 53.62 0:LIVING COMPLETE RESPONSE WITH TUMOR 29.9 1:Recurred/Progressed 28.56 23.4 Sensitive -TCGA-13-0916 49.83 0:LIVING COMPLETE RESPONSE TUMOR FREE 21.08 0:DiseaseFree 21.08 15.8 Sensitive -TCGA-13-0919 52.98 0:LIVING COMPLETE RESPONSE TUMOR FREE 14.85 0:DiseaseFree 14.85 9.6 Sensitive -TCGA-13-0920 65.93 0:LIVING COMPLETE RESPONSE WITH TUMOR 13.77 1:Recurred/Progressed 9.74 4.8 Resistant -TCGA-13-0921 72.89 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.62 0:DiseaseFree 4.62 0 Tooearly -TCGA-13-0923 74.19 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.39 0:DiseaseFree 6.39 1.4 Tooearly -TCGA-13-0924 45.7 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.67 0:DiseaseFree 5.67 1.4 Tooearly -TCGA-13-1403 48.48 0:LIVING COMPLETE RESPONSE TUMOR FREE 10.85 0:DiseaseFree 10.85 6.2 Sensitive -TCGA-13-1404 48.72 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.59 0:DiseaseFree 6.59 -2.5 Tooearly -TCGA-13-1405 49.91 0:LIVING COMPLETE RESPONSE TUMOR FREE 7.34 0:DiseaseFree 7.34 2.5 Tooearly -TCGA-13-1407 51.77 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.03 0:DiseaseFree 6.03 0 Tooearly -TCGA-13-1408 59.27 0:LIVING PARTIAL RESPONSE WITH TUMOR 5.9 1:Recurred/Progressed MISSING MISSING -TCGA-13-1409 73.63 0:LIVING WITH TUMOR 5.54 1:Recurred/Progressed MISSING MISSING -TCGA-13-1410 57.4 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.69 0:DiseaseFree 4.69 0.5 Tooearly -TCGA-13-1411 81.84 0:LIVING PARTIAL RESPONSE WITH TUMOR 4.2 1:Recurred/Progressed MISSING MISSING -TCGA-13-1412 41.42 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.31 0:DiseaseFree 5.31 -1.2 Tooearly -TCGA-13-1477 49.68 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 53.67 1:Recurred/Progressed 6.89 1 Resistant -TCGA-13-1481 76.43 1:DECEASED COMPLETE RESPONSE TUMOR FREE 86.82 0:DiseaseFree 86.82 79.1 Sensitive -TCGA-13-1482 52.61 1:DECEASED PARTIAL RESPONSE WITH TUMOR 60.69 1:Recurred/Progressed 18.89 14.8 Sensitive -TCGA-13-1483 61.28 1:DECEASED PARTIAL RESPONSE WITH TUMOR 28.49 1:Recurred/Progressed 8.89 1.9 Resistant -TCGA-13-1484 62.34 0:LIVING COMPLETE RESPONSE WITH TUMOR 95.9 1:Recurred/Progressed 14.39 10.1 Sensitive -TCGA-13-1485 48.36 1:DECEASED PARTIAL RESPONSE WITH TUMOR 20.3 1:Recurred/Progressed 5.25 0.7 Resistant -TCGA-13-1487 74.45 1:DECEASED COMPLETE RESPONSE WITH TUMOR 22.33 1:Recurred/Progressed 13.51 6.7 Sensitive -TCGA-13-1488 59.52 1:DECEASED COMPLETE RESPONSE WITH TUMOR 70.62 1:Recurred/Progressed 11.51 6 Sensitive -TCGA-13-1489 70.6 0:LIVING COMPLETE RESPONSE WITH TUMOR 82.66 1:Recurred/Progressed 26.43 17.5 Sensitive -TCGA-13-1491 55.52 1:DECEASED PARTIAL RESPONSE WITH TUMOR 52.2 1:Recurred/Progressed 16.56 11.7 Sensitive -TCGA-13-1492 66.7 0:LIVING COMPLETE RESPONSE TUMOR FREE 72.89 0:DiseaseFree 72.89 65.4 Sensitive -TCGA-13-1494 43.94 0:LIVING COMPLETE RESPONSE WITH TUMOR 36.59 1:Recurred/Progressed 21.25 16.8 Sensitive -TCGA-13-1495 60.4 0:LIVING COMPLETE RESPONSE WITH TUMOR 49.08 1:Recurred/Progressed 32.03 27.5 Sensitive -TCGA-13-1496 65.8 1:DECEASED 3.41 MISSING MISSING 3.2 MISSING -TCGA-13-1497 48.02 0:LIVING COMPLETE RESPONSE WITH TUMOR 54.16 1:Recurred/Progressed 26.66 20.6 Sensitive -TCGA-13-1498 73.48 0:LIVING PARTIAL RESPONSE WITH TUMOR 37.51 1:Recurred/Progressed 17.48 10.4 Sensitive -TCGA-13-1499 56.71 0:LIVING COMPLETE RESPONSE WITH TUMOR 37.28 1:Recurred/Progressed 18.1 13 Sensitive -TCGA-13-1500 71.7 1:DECEASED PARTIAL RESPONSE WITH TUMOR 13.93 1:Recurred/Progressed 8.3 1 Resistant -TCGA-13-1501 50.49 0:LIVING PARTIAL RESPONSE WITH TUMOR 31.57 1:Recurred/Progressed 11.67 6.9 Sensitive -TCGA-13-1504 68.52 0:LIVING COMPLETE RESPONSE TUMOR FREE 16.52 0:DiseaseFree 16.52 7.3 Sensitive -TCGA-13-1505 63.67 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.2 0:DiseaseFree 4.2 -1.37 Tooearly -TCGA-13-1506 45.84 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.39 0:DiseaseFree 4.39 -1.8 Tooearly -TCGA-13-1507 77.93 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.75 0:DiseaseFree 4.75 -0.5 Tooearly -TCGA-13-1509 64.34 0:LIVING COMPLETE RESPONSE TUMOR FREE 4.07 0:DiseaseFree 4.07 0 Tooearly -TCGA-13-1510 62.21 0:LIVING TUMOR FREE 2.56 0:DiseaseFree 2.56 -3.21 Tooearly -TCGA-13-1511 52.77 0:LIVING PARTIAL RESPONSE WITH TUMOR 3.74 1:Recurred/Progressed MISSING MISSING -TCGA-13-1512 49.75 0:LIVING 2.33 0:DiseaseFree 2.33 0 Tooearly -TCGA-13-2060 51.05 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.56 0:DiseaseFree 8.56 3.82 Tooearly -TCGA-20-0987 61.2 1:DECEASED WITH TUMOR 21.31 1:Recurred/Progressed 12.82 MISSING -TCGA-20-0990 74.59 0:LIVING WITH TUMOR 24.07 1:Recurred/Progressed 26.72 20.8 Sensitive -TCGA-20-0991 78.69 0:LIVING COMPLETE RESPONSE TUMOR FREE 25.25 0:DiseaseFree 25.25 MISSING -TCGA-20-1682 56.39 0:LIVING COMPLETE RESPONSE TUMOR FREE 27.41 0:DiseaseFree 27.41 22.8 Sensitive -TCGA-20-1683 65.77 0:LIVING STABLE DISEASE TUMOR FREE 25.31 1:Recurred/Progressed 20.26 15.9 Sensitive -TCGA-20-1684 51.38 0:LIVING COMPLETE RESPONSE TUMOR FREE 19.02 0:DiseaseFree 19.02 15.1 Sensitive -TCGA-20-1685 45.88 0:LIVING COMPLETE RESPONSE TUMOR FREE 16.62 0:DiseaseFree 16.62 12 Sensitive -TCGA-20-1686 75.58 0:LIVING COMPLETE RESPONSE TUMOR FREE 2.92 0:DiseaseFree 2.92 -1.4 Tooearly -TCGA-20-1687 46.47 0:LIVING COMPLETE RESPONSE TUMOR FREE 2.62 0:DiseaseFree 2.62 -2.9 Tooearly -TCGA-23-1021 45.16 1:DECEASED PARTIAL RESPONSE WITH TUMOR 47.41 1:Recurred/Progressed MISSING MISSING -TCGA-23-1022 67.94 1:DECEASED COMPLETE RESPONSE WITH TUMOR 49.54 1:Recurred/Progressed 14.75 9.5 Sensitive -TCGA-23-1023 65.27 0:LIVING COMPLETE RESPONSE WITH TUMOR 40.43 1:Recurred/Progressed 16.07 12.07 Sensitive -TCGA-23-1024 52.19 0:LIVING COMPLETE RESPONSE TUMOR FREE 15.34 0:DiseaseFree 15.34 5.4 Tooearly -TCGA-23-1026 45.05 0:LIVING COMPLETE RESPONSE WITH TUMOR 26.75 1:Recurred/Progressed 26.13 22.6 Sensitive -TCGA-23-1027 48.19 1:DECEASED PROGRESSIVE DISEASE 31.97 1:Recurred/Progressed 3.74 -0.6 Resistant -TCGA-23-1028 43.88 0:LIVING COMPLETE RESPONSE WITH TUMOR 49.28 1:Recurred/Progressed 4.36 0.8 Resistant -TCGA-23-1029 46.27 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.79 0:DiseaseFree 8.79 6.2 Sensitive -TCGA-23-1030 64.15 0:LIVING COMPLETE RESPONSE TUMOR FREE 29.02 1:Recurred/Progressed 17.8 12.5 Sensitive -TCGA-23-1031 60.89 1:DECEASED PARTIAL RESPONSE WITH TUMOR 18.82 1:Recurred/Progressed MISSING MISSING -TCGA-23-1032 73.19 1:DECEASED WITH TUMOR 2.75 1:Recurred/Progressed MISSING MISSING -TCGA-23-1107 59.07 1:DECEASED WITH TUMOR 0.3 1:Recurred/Progressed MISSING MISSING -TCGA-23-1109 63.02 1:DECEASED PARTIAL RESPONSE WITH TUMOR 51.21 1:Recurred/Progressed 32.36 MISSING -TCGA-23-1110 42.15 0:LIVING COMPLETE RESPONSE TUMOR FREE 54.36 1:Recurred/Progressed 10.69 7.1 Sensitive -TCGA-23-1111 63.48 0:LIVING 3.21 0:DiseaseFree 3.21 -1 Tooearly -TCGA-23-1113 48.74 1:DECEASED PARTIAL RESPONSE WITH TUMOR 31.11 1:Recurred/Progressed MISSING MISSING -TCGA-23-1114 55.92 1:DECEASED COMPLETE RESPONSE WITH TUMOR 68.49 1:Recurred/Progressed 20.79 14.8 Sensitive -TCGA-23-1116 83.46 0:LIVING 4.56 0:DiseaseFree 4.56 -1.6 Tooearly -TCGA-23-1117 42.99 1:DECEASED COMPLETE RESPONSE WITH TUMOR 33.21 1:Recurred/Progressed 13.7 4.1 Resistant -TCGA-23-1118 45.12 0:LIVING COMPLETE RESPONSE TUMOR FREE 85.77 0:DiseaseFree 85.77 79.5 Sensitive -TCGA-23-1119 64.89 0:LIVING COMPLETE RESPONSE TUMOR FREE 129.61 1:Recurred/Progressed 110.75 106.9 Sensitive -TCGA-23-1120 60.68 0:LIVING 4.26 0:DiseaseFree 4.26 -0.5 Tooearly -TCGA-23-1121 52.01 0:LIVING 6.36 0:DiseaseFree 6.36 0 Tooearly -TCGA-23-1122 53.53 1:DECEASED COMPLETE RESPONSE WITH TUMOR 38.98 1:Recurred/Progressed 14.66 6.7 Sensitive -TCGA-23-1123 59.04 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 33.38 1:Recurred/Progressed MISSING MISSING -TCGA-23-1124 63.03 1:DECEASED COMPLETE RESPONSE WITH TUMOR 57.97 1:Recurred/Progressed 21.02 14.7 Sensitive -TCGA-23-1809 63.32 0:LIVING 0.52 0:DiseaseFree 0.52 -3.1 Tooearly -TCGA-23-2072 58.97 1:DECEASED COMPLETE RESPONSE WITH TUMOR 24.89 1:Recurred/Progressed 15.61 10.6 Sensitive -TCGA-23-2077 45.35 0:LIVING COMPLETE RESPONSE TUMOR FREE 115.57 1:Recurred/Progressed 40.39 35.4 Sensitive -TCGA-23-2078 66.36 0:LIVING COMPLETE RESPONSE TUMOR FREE 87.25 0:DiseaseFree 87.25 82.6 Sensitive -TCGA-23-2079 46.91 0:LIVING COMPLETE RESPONSE TUMOR FREE 91.41 1:Recurred/Progressed 9.28 5.2 Resistant -TCGA-23-2081 49.76 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 76.79 1:Recurred/Progressed MISSING MISSING -TCGA-23-2084 45.19 1:DECEASED COMPLETE RESPONSE WITH TUMOR 49.7 1:Recurred/Progressed 20.3 15.2 Sensitive -TCGA-24-0966 78.14 0:LIVING STABLE DISEASE WITH TUMOR 7.8 1:Recurred/Progressed MISSING MISSING -TCGA-24-0968 59.34 1:DECEASED PARTIAL RESPONSE WITH TUMOR 19.77 1:Recurred/Progressed 17.7 13.57 Sensitive -TCGA-24-0970 63.77 1:DECEASED PARTIAL RESPONSE WITH TUMOR 11.61 1:Recurred/Progressed 9.18 -1 Resistant -TCGA-24-0975 58.68 1:DECEASED PARTIAL RESPONSE WITH TUMOR 21.74 1:Recurred/Progressed 9.87 MISSING -TCGA-24-0979 53.68 1:DECEASED COMPLETE RESPONSE WITH TUMOR 41.44 1:Recurred/Progressed 14.03 8 Sensitive -TCGA-24-0980 53.64 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 7.64 1:Recurred/Progressed 4.75 -1.1 Resistant -TCGA-24-0982 77.26 1:DECEASED COMPLETE RESPONSE WITH TUMOR 22.26 1:Recurred/Progressed 4.98 0.85 Resistant -TCGA-24-1103 50.91 1:DECEASED COMPLETE RESPONSE WITH TUMOR 53.93 1:Recurred/Progressed 22.2 17.96 Sensitive -TCGA-24-1104 56.22 1:DECEASED COMPLETE RESPONSE WITH TUMOR 63.57 1:Recurred/Progressed 31.61 25.61 Sensitive -TCGA-24-1105 36.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 47.28 1:Recurred/Progressed 15.41 9.48 Sensitive -TCGA-24-1413 51.63 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.3 0:DiseaseFree 6.3 1.6 Tooearly -TCGA-24-1416 34.99 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.36 0:DiseaseFree 6.36 0.7 Tooearly -TCGA-24-1417 54.18 0:LIVING COMPLETE RESPONSE TUMOR FREE 7.8 0:DiseaseFree 7.8 2.7 Tooearly -TCGA-24-1418 68.06 0:LIVING COMPLETE RESPONSE TUMOR FREE 7.93 0:DiseaseFree 7.93 2.7 Tooearly -TCGA-24-1419 62.08 0:LIVING COMPLETE RESPONSE TUMOR FREE 7.84 0:DiseaseFree 7.84 3.8 Tooearly -TCGA-24-1422 82.83 1:DECEASED 0.75 MISSING MISSING MISSING -TCGA-24-1423 61.04 0:LIVING COMPLETE RESPONSE TUMOR FREE 6.23 0:DiseaseFree 6.23 1.3 Tooearly -TCGA-24-1424 67.25 0:LIVING COMPLETE RESPONSE TUMOR FREE 6 0:DiseaseFree 6 2.1 Tooearly -TCGA-24-1425 45.93 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.93 0:DiseaseFree 5.93 1.1 Tooearly -TCGA-24-1426 43.69 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.34 0:DiseaseFree 5.34 0.61 Tooearly -TCGA-24-1427 58.69 0:LIVING PARTIAL RESPONSE WITH TUMOR 4.79 1:Recurred/Progressed MISSING MISSING -TCGA-24-1428 50.15 0:LIVING 3.67 0:DiseaseFree 3.67 MISSING -TCGA-24-1430 68.33 1:DECEASED COMPLETE RESPONSE WITH TUMOR 28.26 1:Recurred/Progressed 14.69 11.2 Sensitive -TCGA-24-1431 67.83 1:DECEASED WITH TUMOR 19.11 1:Recurred/Progressed 6.52 1.7 Resistant -TCGA-24-1434 59.75 1:DECEASED PARTIAL RESPONSE WITH TUMOR 18.62 1:Recurred/Progressed 11.05 3.6 Resistant -TCGA-24-1435 57.83 1:DECEASED COMPLETE RESPONSE WITH TUMOR 43.41 1:Recurred/Progressed 16.56 11.7 Sensitive -TCGA-24-1436 57.21 1:DECEASED PARTIAL RESPONSE WITH TUMOR 8.52 1:Recurred/Progressed MISSING MISSING -TCGA-24-1463 70.5 1:DECEASED COMPLETE RESPONSE WITH TUMOR 72.72 1:Recurred/Progressed 31.84 27.9 Sensitive -TCGA-24-1464 70.89 1:DECEASED WITH TUMOR 12.43 1:Recurred/Progressed 10.59 5.2 Resistant -TCGA-24-1466 74.81 1:DECEASED COMPLETE RESPONSE WITH TUMOR 45.02 1:Recurred/Progressed 16.1 11.4 Sensitive -TCGA-24-1467 51.1 1:DECEASED COMPLETE RESPONSE WITH TUMOR 105.7 1:Recurred/Progressed 41.05 37.42 Sensitive -TCGA-24-1469 71.06 0:LIVING COMPLETE RESPONSE TUMOR FREE 9.08 0:DiseaseFree 9.08 4.7 Tooearly -TCGA-24-1470 54.81 0:LIVING COMPLETE RESPONSE TUMOR FREE 3.41 0:DiseaseFree 3.41 0.7 Tooearly -TCGA-24-1471 60.5 0:LIVING 1.18 0:DiseaseFree 1.18 MISSING -TCGA-24-1474 57.27 1:DECEASED PARTIAL RESPONSE WITH TUMOR 22.13 1:Recurred/Progressed 10.85 6.9 Sensitive -TCGA-24-1544 71.62 1:DECEASED PARTIAL RESPONSE WITH TUMOR 26.89 1:Recurred/Progressed 21.08 14.5 Sensitive -TCGA-24-1545 69.75 1:DECEASED COMPLETE RESPONSE WITH TUMOR 57.21 1:Recurred/Progressed 28.23 19 Sensitive -TCGA-24-1546 46.93 1:DECEASED 64.1 MISSING MISSING MISSING -TCGA-24-1548 57.38 1:DECEASED COMPLETE RESPONSE WITH TUMOR 16.16 1:Recurred/Progressed 6.79 2.8 Resistant -TCGA-24-1549 58.72 1:DECEASED COMPLETE RESPONSE WITH TUMOR 56.43 1:Recurred/Progressed 34.16 MISSING -TCGA-24-1550 49.45 1:DECEASED COMPLETE RESPONSE WITH TUMOR 40.95 1:Recurred/Progressed 29.25 23.6 Sensitive -TCGA-24-1551 53.87 1:DECEASED COMPLETE RESPONSE WITH TUMOR 51.77 1:Recurred/Progressed 25.05 20.6 Sensitive -TCGA-24-1552 77.07 1:DECEASED COMPLETE RESPONSE WITH TUMOR 41.28 1:Recurred/Progressed 13.21 4.11 Resistant -TCGA-24-1553 53.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 57.93 1:Recurred/Progressed 18.13 13.1 Sensitive -TCGA-24-1555 50.42 1:DECEASED COMPLETE RESPONSE WITH TUMOR 88.26 1:Recurred/Progressed 51.7 MISSING -TCGA-24-1556 50.73 1:DECEASED COMPLETE RESPONSE WITH TUMOR 70.43 1:Recurred/Progressed 18 MISSING -TCGA-24-1557 49.16 1:DECEASED PARTIAL RESPONSE WITH TUMOR 39.77 1:Recurred/Progressed 14.66 5.5 Resistant -TCGA-24-1558 73.98 1:DECEASED PARTIAL RESPONSE WITH TUMOR 19.48 1:Recurred/Progressed 8.95 0.8 Resistant -TCGA-24-1560 51.15 1:DECEASED COMPLETE RESPONSE WITH TUMOR 43.97 1:Recurred/Progressed 4.69 0.8 Resistant -TCGA-24-1562 67.8 1:DECEASED COMPLETE RESPONSE WITH TUMOR 45.38 1:Recurred/Progressed 7.48 2.5 Resistant -TCGA-24-1563 66.5 1:DECEASED COMPLETE RESPONSE WITH TUMOR 47.57 1:Recurred/Progressed 12.98 8.3 Sensitive -TCGA-24-1564 67.58 1:DECEASED COMPLETE RESPONSE WITH TUMOR 25.8 1:Recurred/Progressed 7.25 3.4 Resistant -TCGA-24-1565 74.1 1:DECEASED PARTIAL RESPONSE WITH TUMOR 10.23 1:Recurred/Progressed 4.75 0.7 Resistant -TCGA-24-1567 54.36 1:DECEASED WITH TUMOR 17.18 1:Recurred/Progressed 10.98 5 Resistant -TCGA-24-1603 53.92 1:DECEASED COMPLETE RESPONSE WITH TUMOR 89.9 1:Recurred/Progressed 32.52 MISSING -TCGA-24-1604 67.04 1:DECEASED COMPLETE RESPONSE WITH TUMOR 88.1 1:Recurred/Progressed MISSING MISSING -TCGA-24-1614 57.52 1:DECEASED COMPLETE RESPONSE WITH TUMOR 48.2 1:Recurred/Progressed 21.11 15 Sensitive -TCGA-24-1616 56.95 1:DECEASED COMPLETE RESPONSE WITH TUMOR 38.13 1:Recurred/Progressed 13.28 7.9 Sensitive -TCGA-24-1842 49.94 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.3 0:DiseaseFree 8.3 -0.14 Tooearly -TCGA-24-1843 67.04 0:LIVING COMPLETE RESPONSE 3.48 0:DiseaseFree 3.48 -0.9 Tooearly -TCGA-24-1844 64.5 0:LIVING 3.7 0:DiseaseFree 3.7 -0.7 Tooearly -TCGA-24-1845 42.74 0:LIVING 3.8 0:DiseaseFree 3.8 -0.2 Tooearly -TCGA-24-1846 45.3 0:LIVING 4.36 0:DiseaseFree 4.36 -1.3 Tooearly -TCGA-24-1847 45.33 0:LIVING COMPLETE RESPONSE TUMOR FREE 10.75 0:DiseaseFree 10.75 0 Tooearly -TCGA-24-1849 80.97 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.74 0:DiseaseFree 5.74 1.2 Tooearly -TCGA-24-1850 72.24 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.48 0:DiseaseFree 5.48 1 Tooearly -TCGA-24-1920 74.09 0:LIVING COMPLETE RESPONSE TUMOR FREE 9.77 0:DiseaseFree 9.77 5 Tooearly -TCGA-24-1923 51.05 1:DECEASED COMPLETE RESPONSE WITH TUMOR 22.43 1:Recurred/Progressed 11.08 3.52 Resistant -TCGA-24-1924 65.21 1:DECEASED COMPLETE RESPONSE WITH TUMOR 30.13 1:Recurred/Progressed 10.49 5.13 Resistant -TCGA-24-1928 77.08 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 10.75 1:Recurred/Progressed 2.03 -1.9 Resistant -TCGA-24-1930 53.36 1:DECEASED COMPLETE RESPONSE WITH TUMOR 78 1:Recurred/Progressed 14.92 8.72 Sensitive -TCGA-24-2019 46.6 0:LIVING 4.85 0:DiseaseFree 4.85 MISSING -TCGA-24-2020 67.62 1:DECEASED COMPLETE RESPONSE WITH TUMOR 151.57 1:Recurred/Progressed 23.7 MISSING -TCGA-24-2023 54.52 1:DECEASED COMPLETE RESPONSE WITH TUMOR 44.72 1:Recurred/Progressed 35.05 MISSING -TCGA-24-2024 72.53 1:DECEASED COMPLETE RESPONSE WITH TUMOR 58 1:Recurred/Progressed 13.8 9.8 Sensitive -TCGA-24-2026 79.59 1:DECEASED WITH TUMOR 34.72 1:Recurred/Progressed MISSING MISSING -TCGA-24-2027 51.6 1:DECEASED COMPLETE RESPONSE WITH TUMOR 109.38 1:Recurred/Progressed 20.23 11.63 Sensitive -TCGA-24-2029 75.41 1:DECEASED COMPLETE RESPONSE WITH TUMOR 14.39 1:Recurred/Progressed 17.57 10.31 Sensitive -TCGA-24-2030 COMPLETE RESPONSE WITH TUMOR 1:Recurred/Progressed 21.18 16.95 Sensitive -TCGA-24-2033 1:DECEASED PARTIAL RESPONSE WITH TUMOR 18.43 1:Recurred/Progressed 11.51 3.77 Resistant -TCGA-24-2035 65.35 1:DECEASED PARTIAL RESPONSE WITH TUMOR 28.1 1:Recurred/Progressed 9.41 MISSING -TCGA-24-2036 50.91 1:DECEASED COMPLETE RESPONSE WITH TUMOR 63.84 1:Recurred/Progressed 29.97 24.87 Sensitive -TCGA-24-2038 68.38 1:DECEASED COMPLETE RESPONSE WITH TUMOR 44.36 1:Recurred/Progressed 38.33 MISSING -TCGA-24-2254 66.87 1:DECEASED COMPLETE RESPONSE WITH TUMOR 56.92 1:Recurred/Progressed 19.87 14.37 Sensitive -TCGA-24-2260 74.3 1:DECEASED COMPLETE RESPONSE 35.8 1:Recurred/Progressed 21.61 17.37 Sensitive -TCGA-24-2261 76.43 1:DECEASED WITH TUMOR 0.79 1:Recurred/Progressed MISSING MISSING -TCGA-24-2262 57.15 1:DECEASED WITH TUMOR 0.36 1:Recurred/Progressed MISSING MISSING -TCGA-24-2267 58.34 1:DECEASED COMPLETE RESPONSE WITH TUMOR 47.41 1:Recurred/Progressed MISSING MISSING -TCGA-24-2271 55.89 1:DECEASED WITH TUMOR 31.54 1:Recurred/Progressed 27.11 MISSING -TCGA-24-2280 74.95 0:LIVING COMPLETE RESPONSE WITH TUMOR 70.26 1:Recurred/Progressed 17.51 11.61 Sensitive -TCGA-24-2281 68.55 0:LIVING COMPLETE RESPONSE TUMOR FREE 44.46 0:DiseaseFree 44.46 MISSING -TCGA-24-2288 70.77 1:DECEASED WITH TUMOR 0.82 1:Recurred/Progressed MISSING MISSING -TCGA-24-2289 69.02 1:DECEASED COMPLETE RESPONSE WITH TUMOR 67.18 1:Recurred/Progressed 18.62 12.52 Sensitive -TCGA-24-2290 56.24 1:DECEASED COMPLETE RESPONSE WITH TUMOR 36.13 1:Recurred/Progressed 10.62 6.66 Sensitive -TCGA-24-2293 27.21 PROGRESSIVE DISEASE 16.59 MISSING MISSING MISSING -TCGA-24-2297 56.13 1:DECEASED COMPLETE RESPONSE 55.7 MISSING MISSING MISSING -TCGA-24-2298 56.04 COMPLETE RESPONSE WITH TUMOR 1:Recurred/Progressed MISSING MISSING -TCGA-25-1312 69.96 1:DECEASED 1.02 MISSING MISSING MISSING -TCGA-25-1313 62.96 1:DECEASED COMPLETE RESPONSE WITH TUMOR 26.85 1:Recurred/Progressed 12.92 8 Sensitive -TCGA-25-1314 42.36 1:DECEASED PARTIAL RESPONSE WITH TUMOR 32.89 1:Recurred/Progressed 8.95 MISSING -TCGA-25-1315 50.04 1:DECEASED PARTIAL RESPONSE WITH TUMOR 51.9 1:Recurred/Progressed 5.02 0 Resistant -TCGA-25-1316 55.7 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 41.93 1:Recurred/Progressed 9.05 1.9 Resistant -TCGA-25-1317 66.3 1:DECEASED 2.23 MISSING MISSING MISSING -TCGA-25-1318 54.12 1:DECEASED PARTIAL RESPONSE WITH TUMOR 34.89 1:Recurred/Progressed 6.07 2.1 Resistant -TCGA-25-1319 73.39 1:DECEASED 64.82 1:Recurred/Progressed 23.93 MISSING -TCGA-25-1320 65.8 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 37.84 1:Recurred/Progressed 13.87 8 Sensitive -TCGA-25-1321 65.72 1:DECEASED COMPLETE RESPONSE WITH TUMOR 33.87 1:Recurred/Progressed 14.85 9 Sensitive -TCGA-25-1322 62.04 1:DECEASED WITH TUMOR 2.98 1:Recurred/Progressed MISSING MISSING -TCGA-25-1323 72.88 1:DECEASED COMPLETE RESPONSE WITH TUMOR 12.95 1:Recurred/Progressed 11.97 7.9 Sensitive -TCGA-25-1324 74.22 1:DECEASED 33.93 MISSING MISSING MISSING -TCGA-25-1325 77.21 1:DECEASED 32 MISSING MISSING MISSING -TCGA-25-1326 61.2 1:DECEASED PARTIAL RESPONSE WITH TUMOR 40.92 1:Recurred/Progressed 12.95 8 Sensitive -TCGA-25-1328 38.11 1:DECEASED PARTIAL RESPONSE WITH TUMOR 65.87 1:Recurred/Progressed 8 1 Resistant -TCGA-25-1329 76.97 1:DECEASED 14.98 MISSING MISSING MISSING -TCGA-25-1623 71.39 1:DECEASED COMPLETE RESPONSE WITH TUMOR 18.52 1:Recurred/Progressed 11.21 6.7 Sensitive -TCGA-25-1625 66.57 1:DECEASED STABLE DISEASE WITH TUMOR 27.54 1:Recurred/Progressed 17.25 MISSING -TCGA-25-1626 65.57 1:DECEASED PARTIAL RESPONSE WITH TUMOR 16.95 1:Recurred/Progressed 10.43 3.6 Resistant -TCGA-25-1627 73.38 1:DECEASED 12.92 MISSING MISSING MISSING -TCGA-25-1628 67.09 1:DECEASED STABLE DISEASE WITH TUMOR 20.52 1:Recurred/Progressed 9.38 3.5 Resistant -TCGA-25-1630 73.99 1:DECEASED COMPLETE RESPONSE 38.1 MISSING MISSING MISSING -TCGA-25-1631 73.12 1:DECEASED TUMOR FREE 0.3 0:DiseaseFree 0.3 MISSING -TCGA-25-1632 68.47 1:DECEASED COMPLETE RESPONSE WITH TUMOR 58.98 1:Recurred/Progressed 17.61 11 Sensitive -TCGA-25-1633 64.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 62 1:Recurred/Progressed 20.2 14.3 Sensitive -TCGA-25-1634 76.02 1:DECEASED COMPLETE RESPONSE WITH TUMOR 35.77 1:Recurred/Progressed 12.46 5.8 Resistant -TCGA-25-1635 71.78 1:DECEASED COMPLETE RESPONSE WITH TUMOR 51.9 1:Recurred/Progressed 20.13 12.5 Sensitive -TCGA-25-1870 59.04 1:DECEASED PARTIAL RESPONSE WITH TUMOR 14.89 1:Recurred/Progressed 7.93 MISSING -TCGA-25-1871 70.21 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 24.92 1:Recurred/Progressed 7.54 MISSING -TCGA-25-1877 81.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 23.93 1:Recurred/Progressed 18 MISSING -TCGA-25-1878 60.37 1:DECEASED COMPLETE RESPONSE WITH TUMOR 84.82 1:Recurred/Progressed 31.84 MISSING -TCGA-25-2042 60.62 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 12.98 1:Recurred/Progressed MISSING MISSING -TCGA-25-2391 57.36 1:DECEASED COMPLETE RESPONSE TUMOR FREE 48.92 0:DiseaseFree 48.92 43.82 Sensitive -TCGA-25-2392 75.8 1:DECEASED 1.02 MISSING MISSING MISSING -TCGA-25-2393 81.05 1:DECEASED PARTIAL RESPONSE WITH TUMOR 37.93 1:Recurred/Progressed 10 5.9 Resistant -TCGA-25-2396 71.63 1:DECEASED 3.02 MISSING MISSING MISSING -TCGA-25-2397 59.13 1:DECEASED 11.97 MISSING MISSING MISSING -TCGA-25-2398 71.96 1:DECEASED COMPLETE RESPONSE WITH TUMOR 44.89 1:Recurred/Progressed 18.92 13.88 Sensitive -TCGA-25-2399 80.47 1:DECEASED PARTIAL RESPONSE WITH TUMOR 19.93 1:Recurred/Progressed 7.97 1.9 Resistant -TCGA-25-2400 76.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 41.9 1:Recurred/Progressed 18.92 12.85 Sensitive -TCGA-25-2401 64.96 1:DECEASED 2.95 MISSING MISSING MISSING -TCGA-25-2404 38.86 1:DECEASED COMPLETE RESPONSE WITH TUMOR 28.92 1:Recurred/Progressed 13.93 9.9 Sensitive -TCGA-25-2408 37.28 1:DECEASED PARTIAL RESPONSE WITH TUMOR 30.89 1:Recurred/Progressed 10.92 MISSING -TCGA-25-2409 71.96 1:DECEASED COMPLETE RESPONSE WITH TUMOR 26.89 1:Recurred/Progressed 9.93 3.9 Resistant -TCGA-29-1688 39.93 1:DECEASED STABLE DISEASE WITH TUMOR 78.66 1:Recurred/Progressed 6 MISSING -TCGA-29-1690 66.62 1:DECEASED WITH TUMOR 47.48 1:Recurred/Progressed MISSING MISSING -TCGA-29-1691 51.13 1:DECEASED COMPLETE RESPONSE WITH TUMOR 48.2 1:Recurred/Progressed 20.1 15.6 Sensitive -TCGA-29-1693 72.05 0:LIVING COMPLETE RESPONSE WITH TUMOR 101.48 1:Recurred/Progressed 22.75 16.4 Sensitive -TCGA-29-1694 45.27 1:DECEASED STABLE DISEASE WITH TUMOR 38.92 1:Recurred/Progressed MISSING MISSING -TCGA-29-1695 62.72 1:DECEASED 40.3 MISSING MISSING MISSING -TCGA-29-1696 43.34 1:DECEASED PARTIAL RESPONSE WITH TUMOR 33.84 1:Recurred/Progressed 11.21 5.6 Resistant -TCGA-29-1697 62.83 1:DECEASED COMPLETE RESPONSE WITH TUMOR 31.08 1:Recurred/Progressed 16.36 10.4 Sensitive -TCGA-29-1698 53.73 0:LIVING COMPLETE RESPONSE WITH TUMOR 68.1 1:Recurred/Progressed 5.9 -1.8 Resistant -TCGA-29-1699 57.89 1:DECEASED 36.26 MISSING MISSING MISSING -TCGA-29-1701 56.81 1:DECEASED PARTIAL RESPONSE WITH TUMOR 16.89 1:Recurred/Progressed 9.77 4.5 Resistant -TCGA-29-1702 84.68 1:DECEASED COMPLETE RESPONSE WITH TUMOR 23.87 1:Recurred/Progressed 9.34 2.9 Resistant -TCGA-29-1703 56.5 0:LIVING COMPLETE RESPONSE WITH TUMOR 55.08 1:Recurred/Progressed 10.62 5.3 Resistant -TCGA-29-1705 48.03 1:DECEASED COMPLETE RESPONSE WITH TUMOR 18.2 1:Recurred/Progressed 9.28 3.71 Resistant -TCGA-29-1707 41.14 0:LIVING COMPLETE RESPONSE 41.84 1:Recurred/Progressed 39.34 34.8 Sensitive -TCGA-29-1710 54.71 1:DECEASED PARTIAL RESPONSE WITH TUMOR 31.18 1:Recurred/Progressed 10.33 MISSING -TCGA-29-1711 45.16 0:LIVING COMPLETE RESPONSE TUMOR FREE 34.52 0:DiseaseFree 34.52 30.1 Sensitive -TCGA-29-1761 80.38 1:DECEASED STABLE DISEASE WITH TUMOR 17.31 1:Recurred/Progressed MISSING MISSING -TCGA-29-1762 59.94 1:DECEASED COMPLETE RESPONSE WITH TUMOR 86.36 1:Recurred/Progressed 45.05 40.6 Sensitive -TCGA-29-1763 43.89 0:LIVING COMPLETE RESPONSE WITH TUMOR 66.59 1:Recurred/Progressed 14.03 10.8 Sensitive -TCGA-29-1764 49.35 0:LIVING COMPLETE RESPONSE WITH TUMOR 62.75 1:Recurred/Progressed 25.97 20.5 Sensitive -TCGA-29-1766 74.96 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 39.28 1:Recurred/Progressed 22.03 15.9 Sensitive -TCGA-29-1768 50.4 1:DECEASED STABLE DISEASE WITH TUMOR 31.21 1:Recurred/Progressed 17.93 14.6 Sensitive -TCGA-29-1769 40.42 0:LIVING COMPLETE RESPONSE TUMOR FREE 22.92 0:DiseaseFree 22.92 18 Sensitive -TCGA-29-1770 54.83 0:LIVING COMPLETE RESPONSE WITH TUMOR 24.3 1:Recurred/Progressed 12.36 7.9 Sensitive -TCGA-29-1771 76.97 0:LIVING COMPLETE RESPONSE WITH TUMOR 22.46 1:Recurred/Progressed 19.48 14.9 Sensitive -TCGA-29-1774 82.17 0:LIVING PROGRESSIVE DISEASE WITH TUMOR 17.25 1:Recurred/Progressed 7.64 6.5 Sensitive -TCGA-29-1775 51.9 0:LIVING COMPLETE RESPONSE WITH TUMOR 12.33 1:Recurred/Progressed 11.18 5.7 Resistant -TCGA-29-1776 63.06 0:LIVING STABLE DISEASE WITH TUMOR 11.8 1:Recurred/Progressed MISSING MISSING -TCGA-29-1777 47.55 0:LIVING PROGRESSIVE DISEASE WITH TUMOR 12.26 1:Recurred/Progressed MISSING MISSING -TCGA-29-1778 77.11 0:LIVING COMPLETE RESPONSE TUMOR FREE 14.89 0:DiseaseFree 14.89 10.8 Sensitive -TCGA-29-1781 69.6 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.33 0:DiseaseFree 8.33 0 Tooearly -TCGA-29-1783 58.31 0:LIVING TUMOR FREE 7.18 0:DiseaseFree 7.18 2.1 Tooearly -TCGA-29-1784 55.37 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.34 0:DiseaseFree 5.34 0.9 Tooearly -TCGA-29-1785 55.94 1:DECEASED COMPLETE RESPONSE 36.2 1:Recurred/Progressed 15.51 10.4 Sensitive -TCGA-29-2414 75.12 1:DECEASED COMPLETE RESPONSE WITH TUMOR 85.93 1:Recurred/Progressed 18.07 13.73 Sensitive -TCGA-29-2425 60.52 0:LIVING COMPLETE RESPONSE TUMOR FREE 64.82 1:Recurred/Progressed 51.7 44.97 Sensitive -TCGA-29-2427 60.11 0:LIVING COMPLETE RESPONSE WITH TUMOR 62.3 1:Recurred/Progressed 51.84 MISSING -TCGA-29-2428 58.61 0:LIVING COMPLETE RESPONSE TUMOR FREE 44.98 0:DiseaseFree 44.98 40.28 Sensitive -TCGA-30-1714 68.58 1:DECEASED COMPLETE RESPONSE WITH TUMOR 37.97 1:Recurred/Progressed 7.9 3.9 Resistant -TCGA-30-1718 44.93 1:DECEASED WITH TUMOR 51.77 1:Recurred/Progressed 29.38 23.6 Sensitive -TCGA-30-1853 58.64 1:DECEASED COMPLETE RESPONSE WITH TUMOR 36.16 1:Recurred/Progressed 20.79 16.7 Sensitive -TCGA-30-1855 61.35 1:DECEASED WITH TUMOR 2.46 1:Recurred/Progressed MISSING MISSING -TCGA-30-1856 56.51 1:DECEASED PARTIAL RESPONSE WITH TUMOR 15.64 1:Recurred/Progressed 7.18 0.8 Resistant -TCGA-30-1857 64.91 1:DECEASED WITH TUMOR 0.13 1:Recurred/Progressed MISSING MISSING -TCGA-30-1859 56.16 1:DECEASED PARTIAL RESPONSE WITH TUMOR 47.93 1:Recurred/Progressed MISSING MISSING -TCGA-30-1860 58.65 1:DECEASED COMPLETE RESPONSE WITH TUMOR 44.79 1:Recurred/Progressed 13.02 6.3 Sensitive -TCGA-30-1861 74.25 1:DECEASED 34.69 MISSING MISSING MISSING -TCGA-30-1862 65.47 1:DECEASED WITH TUMOR 6.07 1:Recurred/Progressed MISSING MISSING -TCGA-30-1866 61.81 1:DECEASED COMPLETE RESPONSE WITH TUMOR 36.52 1:Recurred/Progressed 9.31 5.2 Resistant -TCGA-30-1867 47.01 1:DECEASED WITH TUMOR 1.18 1:Recurred/Progressed MISSING MISSING -TCGA-30-1880 56.23 1:DECEASED PARTIAL RESPONSE WITH TUMOR 57.41 1:Recurred/Progressed 11.41 6.4 Sensitive -TCGA-30-1887 67.11 1:DECEASED PARTIAL RESPONSE WITH TUMOR 24.2 1:Recurred/Progressed MISSING MISSING -TCGA-30-1891 61.22 1:DECEASED PARTIAL RESPONSE WITH TUMOR 29.97 1:Recurred/Progressed 5.93 1.3 Resistant -TCGA-30-1892 52.75 1:DECEASED COMPLETE RESPONSE WITH TUMOR 48.66 1:Recurred/Progressed 8.3 3.9 Resistant -TCGA-31-1944 47.11 0:LIVING COMPLETE RESPONSE WITH TUMOR 45.87 1:Recurred/Progressed 22.66 14.79 Sensitive -TCGA-31-1946 30.5 0:LIVING WITH TUMOR 30.49 1:Recurred/Progressed 22.16 20.4 Sensitive -TCGA-31-1950 76.96 0:LIVING PARTIAL RESPONSE WITH TUMOR 19.02 1:Recurred/Progressed 11.74 6.7 Sensitive -TCGA-31-1951 58.48 0:LIVING WITH TUMOR 22.66 1:Recurred/Progressed 21.84 16.74 Sensitive -TCGA-31-1953 52.2 0:LIVING PROGRESSIVE DISEASE WITH TUMOR 7.05 1:Recurred/Progressed 2.66 0.2 Resistant -TCGA-31-1956 60.55 0:LIVING WITH TUMOR 43.97 1:Recurred/Progressed MISSING MISSING -TCGA-31-1959 49.96 0:LIVING WITH TUMOR 2.49 1:Recurred/Progressed MISSING MISSING -TCGA-36-1568 52.91 0:LIVING PARTIAL RESPONSE WITH TUMOR 28.66 1:Recurred/Progressed 17.93 14 Sensitive -TCGA-36-1569 52.5 0:LIVING PARTIAL RESPONSE 28.56 0:DiseaseFree 28.56 MISSING -TCGA-36-1570 49.19 0:LIVING PARTIAL RESPONSE WITH TUMOR 21.48 1:Recurred/Progressed 12.3 8 Sensitive -TCGA-36-1571 53.72 1:DECEASED COMPLETE RESPONSE WITH TUMOR 22.79 1:Recurred/Progressed 12.26 6.6 Sensitive -TCGA-36-1574 48.9 0:LIVING COMPLETE RESPONSE WITH TUMOR 22.49 1:Recurred/Progressed 21.25 14.6 Sensitive -TCGA-36-1575 83.81 0:LIVING TUMOR FREE 8.52 0:DiseaseFree 8.52 MISSING -TCGA-36-1576 76.1 0:LIVING COMPLETE RESPONSE WITH TUMOR 29.97 1:Recurred/Progressed 26.75 19.5 Sensitive -TCGA-36-1577 43.3 0:LIVING COMPLETE RESPONSE TUMOR FREE 25.67 0:DiseaseFree 25.67 MISSING -TCGA-36-1578 63.92 0:LIVING WITH TUMOR 27.77 1:Recurred/Progressed 10.16 3.1 Resistant -TCGA-36-1580 82.17 1:DECEASED WITH TUMOR 24.16 1:Recurred/Progressed 14.43 3 Resistant -TCGA-36-1581 63.76 0:LIVING COMPLETE RESPONSE WITH TUMOR 24.62 1:Recurred/Progressed 23.02 18.5 Sensitive -TCGA-57-1582 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 23.97 1:Recurred/Progressed MISSING MISSING -TCGA-57-1583 57.96 1:DECEASED WITH TUMOR 11.34 1:Recurred/Progressed MISSING MISSING -TCGA-57-1584 47.28 0:LIVING WITH TUMOR 21.08 1:Recurred/Progressed 17.38 MISSING -TCGA-57-1585 57.18 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 1.08 1:Recurred/Progressed MISSING MISSING -TCGA-57-1586 66.68 0:LIVING WITH TUMOR 21.57 1:Recurred/Progressed 7.8 3.2 Resistant -TCGA-57-1993 56.15 0:LIVING TUMOR FREE 24.69 0:DiseaseFree 24.69 MISSING -TCGA-57-1994 MISSING MISSING -TCGA-59-2348 0:LIVING COMPLETE RESPONSE TUMOR FREE 179.18 0:DiseaseFree 179.18 MISSING -TCGA-59-2350 1:DECEASED PARTIAL RESPONSE WITH TUMOR 22.26 1:Recurred/Progressed 6.92 MISSING -TCGA-59-2351 0:LIVING COMPLETE RESPONSE TUMOR FREE 115.8 1:Recurred/Progressed 70.13 MISSING -TCGA-59-2352 1:DECEASED WITH TUMOR 8.2 1:Recurred/Progressed MISSING MISSING -TCGA-59-2354 1:DECEASED STABLE DISEASE WITH TUMOR 34.3 1:Recurred/Progressed 15.11 MISSING -TCGA-59-2355 1:DECEASED WITH TUMOR 2.13 1:Recurred/Progressed MISSING MISSING -TCGA-59-2363 0:LIVING COMPLETE RESPONSE TUMOR FREE 5.15 0:DiseaseFree 5.15 MISSING -TCGA-61-1724 47.03 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 20.95 1:Recurred/Progressed MISSING MISSING -TCGA-61-1725 40.49 0:LIVING STABLE DISEASE WITH TUMOR 31.44 1:Recurred/Progressed 27.77 22.5 Sensitive -TCGA-61-1728 59.12 0:LIVING COMPLETE RESPONSE TUMOR FREE 27.9 1:Recurred/Progressed 17.57 10.8 Sensitive -TCGA-61-1733 71.72 0:LIVING STABLE DISEASE WITH TUMOR 31.8 1:Recurred/Progressed 5.84 1.6 Resistant -TCGA-61-1736 45.5 1:DECEASED COMPLETE RESPONSE WITH TUMOR 48.79 1:Recurred/Progressed 25.18 20.5 Sensitive -TCGA-61-1737 42.55 0:LIVING COMPLETE RESPONSE TUMOR FREE 44.23 0:DiseaseFree 44.23 39 Sensitive -TCGA-61-1738 60.16 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 35.93 1:Recurred/Progressed 9.28 0 Resistant -TCGA-61-1740 71.68 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 2.62 1:Recurred/Progressed MISSING MISSING -TCGA-61-1741 76.05 1:DECEASED COMPLETE RESPONSE WITH TUMOR 33.67 1:Recurred/Progressed 16.07 10.1 Sensitive -TCGA-61-1743 53.05 1:DECEASED COMPLETE RESPONSE WITH TUMOR 43.64 1:Recurred/Progressed 26.59 21 Sensitive -TCGA-61-1895 52.21 0:LIVING STABLE DISEASE TUMOR FREE 1.54 0:DiseaseFree 1.54 -3.7 Tooearly -TCGA-61-1899 81.32 0:LIVING COMPLETE RESPONSE TUMOR FREE 8.69 0:DiseaseFree 8.69 3.2 Tooearly -TCGA-61-1900 51.95 0:LIVING STABLE DISEASE TUMOR FREE 5.8 0:DiseaseFree 5.8 3.3 Tooearly -TCGA-61-1901 65.87 1:DECEASED STABLE DISEASE WITH TUMOR 11.38 1:Recurred/Progressed 10.79 1.2 Resistant -TCGA-61-1904 60.29 0:LIVING COMPLETE RESPONSE TUMOR FREE 9.18 0:DiseaseFree 9.18 3.8 Tooearly -TCGA-61-1906 55.81 1:DECEASED COMPLETE RESPONSE WITH TUMOR 34.23 1:Recurred/Progressed 7.93 2.8 Resistant -TCGA-61-1907 63.56 0:LIVING STABLE DISEASE WITH TUMOR 31.38 1:Recurred/Progressed 24.52 19.1 Sensitive -TCGA-61-1910 56.92 0:LIVING COMPLETE RESPONSE TUMOR FREE 37.05 0:DiseaseFree 37.05 31.7 Sensitive -TCGA-61-1911 55.17 0:LIVING COMPLETE RESPONSE WITH TUMOR 42.62 1:Recurred/Progressed 27.9 23 Sensitive -TCGA-61-1913 48.12 0:LIVING COMPLETE RESPONSE TUMOR FREE 49.08 0:DiseaseFree 49.08 44.7 Sensitive -TCGA-61-1914 65.33 0:LIVING COMPLETE RESPONSE WITH TUMOR 56.52 1:Recurred/Progressed 54.95 48.6 Sensitive -TCGA-61-1915 50.46 0:LIVING COMPLETE RESPONSE TUMOR FREE 67.7 0:DiseaseFree 67.7 63 Sensitive -TCGA-61-1917 60.19 1:DECEASED COMPLETE RESPONSE 43.41 MISSING MISSING MISSING -TCGA-61-1918 45.7 1:DECEASED COMPLETE RESPONSE WITH TUMOR 15.93 1:Recurred/Progressed 13.77 8.7 Sensitive -TCGA-61-1919 58.07 1:DECEASED COMPLETE RESPONSE 38.16 1:Recurred/Progressed 14.49 MISSING -TCGA-61-1995 43.86 0:LIVING STABLE DISEASE WITH TUMOR 2.16 1:Recurred/Progressed MISSING MISSING -TCGA-61-1998 48.91 0:LIVING WITH TUMOR 5.61 1:Recurred/Progressed MISSING MISSING -TCGA-61-2000 67.72 0:LIVING STABLE DISEASE WITH TUMOR 14.66 1:Recurred/Progressed 11.31 3.6 Resistant -TCGA-61-2002 46.88 0:LIVING PROGRESSIVE DISEASE WITH TUMOR 18.1 1:Recurred/Progressed MISSING MISSING -TCGA-61-2003 53.73 0:LIVING PROGRESSIVE DISEASE WITH TUMOR 3.8 1:Recurred/Progressed MISSING MISSING -TCGA-61-2008 40.51 0:LIVING COMPLETE RESPONSE WITH TUMOR 30.69 1:Recurred/Progressed 26.95 22 Sensitive -TCGA-61-2009 65.12 0:LIVING COMPLETE RESPONSE WITH TUMOR 39.87 1:Recurred/Progressed 3.44 0.54 Resistant -TCGA-61-2012 81.72 0:LIVING 30.62 0:DiseaseFree 30.62 MISSING -TCGA-61-2016 51.47 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 1.25 1:Recurred/Progressed MISSING MISSING -TCGA-61-2088 51.42 0:LIVING TUMOR FREE 4.82 0:DiseaseFree 4.82 0 Tooearly -TCGA-61-2092 57.72 0:LIVING COMPLETE RESPONSE TUMOR FREE 51.67 0:DiseaseFree 51.67 46.4 Sensitive -TCGA-61-2094 63.75 0:LIVING COMPLETE RESPONSE TUMOR FREE 71.67 0:DiseaseFree 71.67 66.2 Sensitive -TCGA-61-2095 54.23 1:DECEASED COMPLETE RESPONSE WITH TUMOR 61.54 1:Recurred/Progressed 14.66 MISSING -TCGA-61-2097 71.11 0:LIVING COMPLETE RESPONSE TUMOR FREE 60.69 0:DiseaseFree 60.69 55.1 Sensitive -TCGA-61-2098 62.65 0:LIVING COMPLETE RESPONSE TUMOR FREE 65.54 0:DiseaseFree 65.54 60.7 Sensitive -TCGA-61-2101 55.57 1:DECEASED PARTIAL RESPONSE WITH TUMOR 55.44 1:Recurred/Progressed MISSING 48.2 MISSING -TCGA-61-2102 74.66 1:DECEASED WITH TUMOR 6.56 1:Recurred/Progressed MISSING MISSING -TCGA-61-2104 53.23 0:LIVING COMPLETE RESPONSE 76.75 1:Recurred/Progressed 55.21 MISSING -TCGA-61-2109 40.8 1:DECEASED WITH TUMOR 20.82 1:Recurred/Progressed 15.44 12.4 Sensitive -TCGA-61-2110 56.75 1:DECEASED PROGRESSIVE DISEASE WITH TUMOR 44.52 1:Recurred/Progressed 7.11 1.7 Resistant -TCGA-61-2111 61.68 0:LIVING COMPLETE RESPONSE WITH TUMOR 125.54 1:Recurred/Progressed 72.46 68 Sensitive -TCGA-61-2113 54.01 1:DECEASED 22.39 1:Recurred/Progressed 9.77 4.74 Resistant diff --git a/core/src/test/resources/clinical_data_SAMPLE.txt b/core/src/test/resources/clinical_data_SAMPLE.txt deleted file mode 100644 index 37c9ecf1747..00000000000 --- a/core/src/test/resources/clinical_data_SAMPLE.txt +++ /dev/null @@ -1,493 +0,0 @@ -#PATIENT_ID SAMPLE_ID TUMORSTAGE TUMORGRADE TUMORRESIDUALDISEASE -#Patient Identfier Sample Identifier Tumor Stage Tumor Grade Tumor Residual Disease -#STRING STRING NUMBER STRING STRING -#1 1 1 1 1 -PATIENT_ID SAMPLE_ID TUMORSTAGE TUMORGRADE TUMORRESIDUALDISEASE -TCGA-A1-A0SB TCGA-A1-A0SB-01 IIIC G3 1-10 mm -TCGA-A1-A0SC TCGA-A1-A0SC-01 IIIC G3 1-10 mm -TCGA-A1-A0SI TCGA-A1-A0SI-01 IIIB G3 No Macroscopic disease -TCGA-A1-A0SE TCGA-A1-A0SE-01 IIIC G2 No Macroscopic disease -TCGA-04-1338 TCGA-04-1338-01 IIIC G3 1-10 mm -TCGA-04-1341 TCGA-04-1341-01 G3 -TCGA-04-1342 TCGA-04-1342-01 IV G2 >20mm -TCGA-04-1343 TCGA-04-1343-01 IV G3 >20mm -TCGA-04-1346 TCGA-04-1346-01 IIIC G2 -TCGA-04-1347 TCGA-04-1347-01 IV G3 No Macroscopic disease -TCGA-04-1348 TCGA-04-1348-01 IIIB G3 1-10 mm -TCGA-04-1349 TCGA-04-1349-01 IV G3 -TCGA-04-1350 TCGA-04-1350-01 IIIC G3 >20mm -TCGA-04-1356 TCGA-04-1356-01 IIC G3 -TCGA-04-1357 TCGA-04-1357-01 IIIB G3 -TCGA-04-1361 TCGA-04-1361-01 IIIB G3 No Macroscopic disease -TCGA-04-1362 TCGA-04-1362-01 IIC G3 1-10 mm -TCGA-04-1364 TCGA-04-1364-01 IIIC G3 1-10 mm -TCGA-04-1365 TCGA-04-1365-01 IIIB G3 -TCGA-04-1367 TCGA-04-1367-01 IIIC G3 No Macroscopic disease -TCGA-04-1514 TCGA-04-1514-01 IIIA G2 No Macroscopic disease -TCGA-04-1517 TCGA-04-1517-01 IIIC G3 >20mm -TCGA-04-1519 TCGA-04-1519-01 IIIC G3 -TCGA-04-1525 TCGA-04-1525-01 IIIC G3 1-10 mm -TCGA-04-1530 TCGA-04-1530-01 IIIC G3 1-10 mm -TCGA-04-1536 TCGA-04-1536-01 IV G3 1-10 mm -TCGA-04-1542 TCGA-04-1542-01 IIIB G2 1-10 mm -TCGA-04-1638 TCGA-04-1638-01 IV G3 No Macroscopic disease -TCGA-04-1646 TCGA-04-1646-01 IIIC G3 1-10 mm -TCGA-04-1648 TCGA-04-1648-01 IIIC G2 1-10 mm -TCGA-04-1649 TCGA-04-1649-01 IIIC G3 1-10 mm -TCGA-04-1651 TCGA-04-1651-01 IIIC G3 1-10 mm -TCGA-04-1652 TCGA-04-1652-01 IIIC G2 -TCGA-04-1654 TCGA-04-1654-01 IIIC G2 1-10 mm -TCGA-04-1655 TCGA-04-1655-01 IIIB G2 No Macroscopic disease -TCGA-09-0364 TCGA-09-0364-01 IIC G3 11-20 mm -TCGA-09-0366 TCGA-09-0366-01 IIIC G3 1-10 mm -TCGA-09-0367 TCGA-09-0367-01 IIIC G3 1-10 mm -TCGA-09-0369 TCGA-09-0369-01 IIIC G3 No Macroscopic disease -TCGA-09-1659 TCGA-09-1659-01 IIIC G3 >20mm -TCGA-09-1661 TCGA-09-1661-01 IIIC G3 1-10 mm -TCGA-09-1662 TCGA-09-1662-01 IV G3 1-10 mm -TCGA-09-1665 TCGA-09-1665-01 IIIC G2 No Macroscopic disease -TCGA-09-1666 TCGA-09-1666-01 IIIC G3 No Macroscopic disease -TCGA-09-1667 TCGA-09-1667-01 IIC G2 No Macroscopic disease -TCGA-09-1668 TCGA-09-1668-01 IIIC G3 -TCGA-09-1669 TCGA-09-1669-01 IIIA G3 No Macroscopic disease -TCGA-09-1670 TCGA-09-1670-01 IIIA G3 No Macroscopic disease -TCGA-09-1673 TCGA-09-1673-01 IV G3 >20mm -TCGA-09-1674 TCGA-09-1674-01 IIIC G3 1-10 mm -TCGA-09-2044 TCGA-09-2044-01 IIB G3 No Macroscopic disease -TCGA-09-2045 TCGA-09-2045-01 IV G2 1-10 mm -TCGA-09-2048 TCGA-09-2048-01 IIIC G3 1-10 mm -TCGA-09-2049 TCGA-09-2049-01 IIIC G3 >20mm -TCGA-09-2050 TCGA-09-2050-01 IIA G2 No Macroscopic disease -TCGA-09-2051 TCGA-09-2051-01 IIIC G3 No Macroscopic disease -TCGA-09-2053 TCGA-09-2053-01 IIIC G3 No Macroscopic disease -TCGA-09-2054 TCGA-09-2054-01 IIIC G3 1-10 mm -TCGA-09-2056 TCGA-09-2056-01 IIIC G3 No Macroscopic disease -TCGA-10-0926 TCGA-10-0926-01 IIIC G3 11-20 mm -TCGA-10-0927 TCGA-10-0927-01 IIIC G2 1-10 mm -TCGA-10-0928 TCGA-10-0928-01 IIIC G3 1-10 mm -TCGA-10-0930 TCGA-10-0930-01 IIIC G3 1-10 mm -TCGA-10-0931 TCGA-10-0931-01 IIIC G3 1-10 mm -TCGA-10-0933 TCGA-10-0933-01 IIIC G3 No Macroscopic disease -TCGA-10-0934 TCGA-10-0934-01 IIIC G3 1-10 mm -TCGA-10-0935 TCGA-10-0935-01 IIIC G3 1-10 mm -TCGA-10-0936 TCGA-10-0936-01 IIIC G3 >20mm -TCGA-10-0937 TCGA-10-0937-01 IIIC G3 1-10 mm -TCGA-10-0938 TCGA-10-0938-01 IIIC G3 >20mm -TCGA-13-0714 TCGA-13-0714-01 IV G3 1-10 mm -TCGA-13-0717 TCGA-13-0717-01 IIIC G3 >20mm -TCGA-13-0720 TCGA-13-0720-01 IIIC G3 1-10 mm -TCGA-13-0723 TCGA-13-0723-01 IIIC G3 >20mm -TCGA-13-0724 TCGA-13-0724-01 IV G3 1-10 mm -TCGA-13-0725 TCGA-13-0725-01 IIIC G3 1-10 mm -TCGA-13-0726 TCGA-13-0726-01 IIIC 1-10 mm -TCGA-13-0727 TCGA-13-0727-01 IIIC G3 1-10 mm -TCGA-13-0730 TCGA-13-0730-01 IIIC G3 >20mm -TCGA-13-0751 TCGA-13-0751-01 IIIC 1-10 mm -TCGA-13-0755 TCGA-13-0755-01 IV G3 1-10 mm -TCGA-13-0757 TCGA-13-0757-01 IIIC G3 1-10 mm -TCGA-13-0760 TCGA-13-0760-01 IV G3 No Macroscopic disease -TCGA-13-0761 TCGA-13-0761-01 IV G3 No Macroscopic disease -TCGA-13-0762 TCGA-13-0762-01 IIIC G3 No Macroscopic disease -TCGA-13-0764 TCGA-13-0764-01 IV G3 1-10 mm -TCGA-13-0765 TCGA-13-0765-01 IIIC G3 1-10 mm -TCGA-13-0766 TCGA-13-0766-01 IIIC G3 1-10 mm -TCGA-13-0768 TCGA-13-0768-01 IIIC G3 1-10 mm -TCGA-13-0791 TCGA-13-0791-01 IIIC G3 No Macroscopic disease -TCGA-13-0792 TCGA-13-0792-01 IIIC G3 No Macroscopic disease -TCGA-13-0793 TCGA-13-0793-01 IV G3 1-10 mm -TCGA-13-0794 TCGA-13-0794-01 IIIC G3 1-10 mm -TCGA-13-0795 TCGA-13-0795-01 IIIC G3 >20mm -TCGA-13-0797 TCGA-13-0797-01 IIIC G3 1-10 mm -TCGA-13-0799 TCGA-13-0799-01 IIIC G3 No Macroscopic disease -TCGA-13-0800 TCGA-13-0800-01 IIIC G3 No Macroscopic disease -TCGA-13-0801 TCGA-13-0801-01 IIIC G3 No Macroscopic disease -TCGA-13-0802 TCGA-13-0802-01 IIIC G3 No Macroscopic disease -TCGA-13-0803 TCGA-13-0803-01 IIIC G3 No Macroscopic disease -TCGA-13-0804 TCGA-13-0804-01 IIIC G3 1-10 mm -TCGA-13-0805 TCGA-13-0805-01 IIIC G3 1-10 mm -TCGA-13-0807 TCGA-13-0807-01 IIIC G3 >20mm -TCGA-13-0883 TCGA-13-0883-01 IIIC G3 1-10 mm -TCGA-13-0884 TCGA-13-0884-01 IIIC G3 1-10 mm -TCGA-13-0885 TCGA-13-0885-01 IIIC G3 11-20 mm -TCGA-13-0886 TCGA-13-0886-01 IIIC G3 1-10 mm -TCGA-13-0887 TCGA-13-0887-01 IIIC G3 1-10 mm -TCGA-13-0888 TCGA-13-0888-01 IIIC G3 No Macroscopic disease -TCGA-13-0889 TCGA-13-0889-01 IV 1-10 mm -TCGA-13-0890 TCGA-13-0890-01 IIIC G3 1-10 mm -TCGA-13-0891 TCGA-13-0891-01 IV G3 No Macroscopic disease -TCGA-13-0893 TCGA-13-0893-01 IIIC G3 11-20 mm -TCGA-13-0894 TCGA-13-0894-01 IIIC G3 1-10 mm -TCGA-13-0897 TCGA-13-0897-01 IIIC G3 1-10 mm -TCGA-13-0899 TCGA-13-0899-01 IIIC G3 1-10 mm -TCGA-13-0900 TCGA-13-0900-01 IIIC G3 -TCGA-13-0901 TCGA-13-0901-01 IIIC G3 >20mm -TCGA-13-0903 TCGA-13-0903-01 IV G3 No Macroscopic disease -TCGA-13-0904 TCGA-13-0904-01 IIIC G3 >20mm -TCGA-13-0905 TCGA-13-0905-01 IIIC G3 -TCGA-13-0906 TCGA-13-0906-01 IIIC G3 1-10 mm -TCGA-13-0908 TCGA-13-0908-01 IV G3 1-10 mm -TCGA-13-0910 TCGA-13-0910-01 IIIC G3 1-10 mm -TCGA-13-0911 TCGA-13-0911-01 IV G3 1-10 mm -TCGA-13-0912 TCGA-13-0912-01 IIIC G3 No Macroscopic disease -TCGA-13-0913 TCGA-13-0913-01 IIIC G3 No Macroscopic disease -TCGA-13-0916 TCGA-13-0916-01 IIIC G3 No Macroscopic disease -TCGA-13-0919 TCGA-13-0919-01 IIIC G3 No Macroscopic disease -TCGA-13-0920 TCGA-13-0920-01 IIIC G3 1-10 mm -TCGA-13-0921 TCGA-13-0921-01 IIIC G3 No Macroscopic disease -TCGA-13-0923 TCGA-13-0923-01 IIIC G3 No Macroscopic disease -TCGA-13-0924 TCGA-13-0924-01 IV G3 1-10 mm -TCGA-13-1403 TCGA-13-1403-01 IIIC G3 -TCGA-13-1404 TCGA-13-1404-01 IIIC G3 1-10 mm -TCGA-13-1405 TCGA-13-1405-01 IV G3 1-10 mm -TCGA-13-1407 TCGA-13-1407-01 IIIC G3 -TCGA-13-1408 TCGA-13-1408-01 IIIC G3 >20mm -TCGA-13-1409 TCGA-13-1409-01 IIIC G3 1-10 mm -TCGA-13-1410 TCGA-13-1410-01 IV -TCGA-13-1411 TCGA-13-1411-01 IIIC G3 >20mm -TCGA-13-1412 TCGA-13-1412-01 IV G3 1-10 mm -TCGA-13-1477 TCGA-13-1477-01 IV G2 1-10 mm -TCGA-13-1481 TCGA-13-1481-01 IIIC G2 1-10 mm -TCGA-13-1482 TCGA-13-1482-01 IV G2 >20mm -TCGA-13-1483 TCGA-13-1483-01 IIIC G3 >20mm -TCGA-13-1484 TCGA-13-1484-01 IIIC G3 -TCGA-13-1485 TCGA-13-1485-01 IV G2 1-10 mm -TCGA-13-1487 TCGA-13-1487-01 IV -TCGA-13-1488 TCGA-13-1488-01 IV G3 11-20 mm -TCGA-13-1489 TCGA-13-1489-01 IIIC G2 -TCGA-13-1491 TCGA-13-1491-01 IIIC G3 -TCGA-13-1492 TCGA-13-1492-01 IIIC G3 -TCGA-13-1494 TCGA-13-1494-01 IV G3 -TCGA-13-1495 TCGA-13-1495-01 IIIC G2 1-10 mm -TCGA-13-1496 TCGA-13-1496-01 IIIC G3 >20mm -TCGA-13-1497 TCGA-13-1497-01 IIIC G3 -TCGA-13-1498 TCGA-13-1498-01 IIIC G3 >20mm -TCGA-13-1499 TCGA-13-1499-01 IIIC G3 -TCGA-13-1500 TCGA-13-1500-01 IIIC G3 11-20 mm -TCGA-13-1501 TCGA-13-1501-01 IV G3 >20mm -TCGA-13-1504 TCGA-13-1504-01 IIIC G3 -TCGA-13-1505 TCGA-13-1505-01 IIIC G3 1-10 mm -TCGA-13-1506 TCGA-13-1506-01 IIIC G3 -TCGA-13-1507 TCGA-13-1507-01 IIIC G3 1-10 mm -TCGA-13-1509 TCGA-13-1509-01 IV G3 1-10 mm -TCGA-13-1510 TCGA-13-1510-01 IIIC G3 No Macroscopic disease -TCGA-13-1511 TCGA-13-1511-01 IV G3 >20mm -TCGA-13-1512 TCGA-13-1512-01 IIIC G3 No Macroscopic disease -TCGA-13-2060 TCGA-13-2060-01 IV G3 1-10 mm -TCGA-20-0987 TCGA-20-0987-01 IIIC G3 1-10 mm -TCGA-20-0990 TCGA-20-0990-01 IIIC G3 -TCGA-20-0991 TCGA-20-0991-01 IIB G3 No Macroscopic disease -TCGA-20-1682 TCGA-20-1682-01 IIIC 11-20 mm -TCGA-20-1683 TCGA-20-1683-01 IIIC G3 No Macroscopic disease -TCGA-20-1684 TCGA-20-1684-01 IIIC G3 1-10 mm -TCGA-20-1685 TCGA-20-1685-01 IIIC G3 1-10 mm -TCGA-20-1686 TCGA-20-1686-01 IIIC G3 No Macroscopic disease -TCGA-20-1687 TCGA-20-1687-01 IV G3 No Macroscopic disease -TCGA-23-1021 TCGA-23-1021-01 IV G3 >20mm -TCGA-23-1022 TCGA-23-1022-01 IIIC G3 1-10 mm -TCGA-23-1023 TCGA-23-1023-01 IIIC G3 1-10 mm -TCGA-23-1024 TCGA-23-1024-01 IV G3 1-10 mm -TCGA-23-1026 TCGA-23-1026-01 IIIC G3 1-10 mm -TCGA-23-1027 TCGA-23-1027-01 IIIC G3 1-10 mm -TCGA-23-1028 TCGA-23-1028-01 IIIC G3 1-10 mm -TCGA-23-1029 TCGA-23-1029-01 IIIC G3 1-10 mm -TCGA-23-1030 TCGA-23-1030-01 IIIC G3 1-10 mm -TCGA-23-1031 TCGA-23-1031-01 IV G3 1-10 mm -TCGA-23-1032 TCGA-23-1032-01 IV G3 1-10 mm -TCGA-23-1107 TCGA-23-1107-01 IV G3 >20mm -TCGA-23-1109 TCGA-23-1109-01 IIIC G3 1-10 mm -TCGA-23-1110 TCGA-23-1110-01 IIIC G3 No Macroscopic disease -TCGA-23-1111 TCGA-23-1111-01 IIIC G3 >20mm -TCGA-23-1113 TCGA-23-1113-01 IV G3 1-10 mm -TCGA-23-1114 TCGA-23-1114-01 IIIC G3 No Macroscopic disease -TCGA-23-1116 TCGA-23-1116-01 IIIC G3 >20mm -TCGA-23-1117 TCGA-23-1117-01 IIIC G3 1-10 mm -TCGA-23-1118 TCGA-23-1118-01 IIIC G3 >20mm -TCGA-23-1119 TCGA-23-1119-01 IIIC G3 1-10 mm -TCGA-23-1120 TCGA-23-1120-01 IIIC G3 1-10 mm -TCGA-23-1121 TCGA-23-1121-01 IIIC G3 >20mm -TCGA-23-1122 TCGA-23-1122-01 IIIC G3 1-10 mm -TCGA-23-1123 TCGA-23-1123-01 IIIC G3 11-20 mm -TCGA-23-1124 TCGA-23-1124-01 IIIC G3 No Macroscopic disease -TCGA-23-1809 TCGA-23-1809-01 IIC G3 1-10 mm -TCGA-23-2072 TCGA-23-2072-01 IV G3 >20mm -TCGA-23-2077 TCGA-23-2077-01 IIIC G3 No Macroscopic disease -TCGA-23-2078 TCGA-23-2078-01 IIIC G3 No Macroscopic disease -TCGA-23-2079 TCGA-23-2079-01 IIIC G3 No Macroscopic disease -TCGA-23-2081 TCGA-23-2081-01 IV G3 1-10 mm -TCGA-23-2084 TCGA-23-2084-01 IV G3 No Macroscopic disease -TCGA-24-0966 TCGA-24-0966-01 IIIC G3 >20mm -TCGA-24-0968 TCGA-24-0968-01 IIIC G3 1-10 mm -TCGA-24-0970 TCGA-24-0970-01 IIIC G3 >20mm -TCGA-24-0975 TCGA-24-0975-01 IIIC G3 1-10 mm -TCGA-24-0979 TCGA-24-0979-01 IV G3 >20mm -TCGA-24-0980 TCGA-24-0980-01 IIIC G3 >20mm -TCGA-24-0982 TCGA-24-0982-01 IIIC G3 1-10 mm -TCGA-24-1103 TCGA-24-1103-01 IIIC G3 1-10 mm -TCGA-24-1104 TCGA-24-1104-01 IV G3 >20mm -TCGA-24-1105 TCGA-24-1105-01 IIIC G3 1-10 mm -TCGA-24-1413 TCGA-24-1413-01 IIIC G3 1-10 mm -TCGA-24-1416 TCGA-24-1416-01 IV G3 1-10 mm -TCGA-24-1417 TCGA-24-1417-01 IV G3 1-10 mm -TCGA-24-1418 TCGA-24-1418-01 IIIC G3 >20mm -TCGA-24-1419 TCGA-24-1419-01 IIIC G3 11-20 mm -TCGA-24-1422 TCGA-24-1422-01 IIIC G3 1-10 mm -TCGA-24-1423 TCGA-24-1423-01 IIIC G3 1-10 mm -TCGA-24-1424 TCGA-24-1424-01 IIIC G3 1-10 mm -TCGA-24-1425 TCGA-24-1425-01 IIIC G3 1-10 mm -TCGA-24-1426 TCGA-24-1426-01 IIIC G3 1-10 mm -TCGA-24-1427 TCGA-24-1427-01 IIIC G3 >20mm -TCGA-24-1428 TCGA-24-1428-01 IIIC G3 1-10 mm -TCGA-24-1430 TCGA-24-1430-01 IIIC G3 >20mm -TCGA-24-1431 TCGA-24-1431-01 IIIC G3 1-10 mm -TCGA-24-1434 TCGA-24-1434-01 IIIC G3 1-10 mm -TCGA-24-1435 TCGA-24-1435-01 IIIC G3 1-10 mm -TCGA-24-1436 TCGA-24-1436-01 IIIC G3 1-10 mm -TCGA-24-1463 TCGA-24-1463-01 IIIC G3 >20mm -TCGA-24-1464 TCGA-24-1464-01 IIIC G3 >20mm -TCGA-24-1466 TCGA-24-1466-01 IIIC G3 1-10 mm -TCGA-24-1467 TCGA-24-1467-01 IIIC G3 1-10 mm -TCGA-24-1469 TCGA-24-1469-01 IIIC G3 1-10 mm -TCGA-24-1470 TCGA-24-1470-01 IIIB G3 1-10 mm -TCGA-24-1471 TCGA-24-1471-01 IIIC G3 >20mm -TCGA-24-1474 TCGA-24-1474-01 IIIC G3 1-10 mm -TCGA-24-1544 TCGA-24-1544-01 IIIC G3 1-10 mm -TCGA-24-1545 TCGA-24-1545-01 IIIC G3 >20mm -TCGA-24-1546 TCGA-24-1546-01 IIIC G3 1-10 mm -TCGA-24-1548 TCGA-24-1548-01 IIIC G3 1-10 mm -TCGA-24-1549 TCGA-24-1549-01 IIIB G3 -TCGA-24-1550 TCGA-24-1550-01 IIIC G3 1-10 mm -TCGA-24-1551 TCGA-24-1551-01 IIIC G3 1-10 mm -TCGA-24-1552 TCGA-24-1552-01 IIIC G3 1-10 mm -TCGA-24-1553 TCGA-24-1553-01 IIIB G3 1-10 mm -TCGA-24-1555 TCGA-24-1555-01 IIIC G3 -TCGA-24-1556 TCGA-24-1556-01 IIB G3 1-10 mm -TCGA-24-1557 TCGA-24-1557-01 IIIC G3 >20mm -TCGA-24-1558 TCGA-24-1558-01 IIIC G3 1-10 mm -TCGA-24-1560 TCGA-24-1560-01 IIIC G3 1-10 mm -TCGA-24-1562 TCGA-24-1562-01 IIIC G3 1-10 mm -TCGA-24-1563 TCGA-24-1563-01 IIIC G3 1-10 mm -TCGA-24-1564 TCGA-24-1564-01 IIIC G3 1-10 mm -TCGA-24-1565 TCGA-24-1565-01 IIIC G3 1-10 mm -TCGA-24-1567 TCGA-24-1567-01 IIIB G3 1-10 mm -TCGA-24-1603 TCGA-24-1603-01 IIIB G3 -TCGA-24-1604 TCGA-24-1604-01 IIIC G3 -TCGA-24-1614 TCGA-24-1614-01 IIIC G3 1-10 mm -TCGA-24-1616 TCGA-24-1616-01 IIIC G3 1-10 mm -TCGA-24-1842 TCGA-24-1842-01 IIIC G3 1-10 mm -TCGA-24-1843 TCGA-24-1843-01 IIIC G3 1-10 mm -TCGA-24-1844 TCGA-24-1844-01 IIIC G3 1-10 mm -TCGA-24-1845 TCGA-24-1845-01 IIIC G3 1-10 mm -TCGA-24-1846 TCGA-24-1846-01 IIIC G3 1-10 mm -TCGA-24-1847 TCGA-24-1847-01 IV G3 1-10 mm -TCGA-24-1849 TCGA-24-1849-01 IIIC G3 1-10 mm -TCGA-24-1850 TCGA-24-1850-01 IIIC G3 1-10 mm -TCGA-24-1920 TCGA-24-1920-01 IIIC G3 1-10 mm -TCGA-24-1923 TCGA-24-1923-01 IIIC G3 1-10 mm -TCGA-24-1924 TCGA-24-1924-01 IIIC G3 1-10 mm -TCGA-24-1928 TCGA-24-1928-01 IIIC G3 11-20 mm -TCGA-24-1930 TCGA-24-1930-01 IIIC G3 1-10 mm -TCGA-24-2019 TCGA-24-2019-01 IIIC G3 1-10 mm -TCGA-24-2020 TCGA-24-2020-01 IIIC G3 1-10 mm -TCGA-24-2023 TCGA-24-2023-01 IIIA G3 1-10 mm -TCGA-24-2024 TCGA-24-2024-01 IIIC G3 1-10 mm -TCGA-24-2026 TCGA-24-2026-01 IIIC G3 >20mm -TCGA-24-2027 TCGA-24-2027-01 IV G3 >20mm -TCGA-24-2029 TCGA-24-2029-01 IIIC G3 >20mm -TCGA-24-2030 TCGA-24-2030-01 IIIC G3 >20mm -TCGA-24-2033 TCGA-24-2033-01 IIIC G3 >20mm -TCGA-24-2035 TCGA-24-2035-01 IIIC G3 1-10 mm -TCGA-24-2036 TCGA-24-2036-01 IIIA G3 No Macroscopic disease -TCGA-24-2038 TCGA-24-2038-01 IIIA 1-10 mm -TCGA-24-2254 TCGA-24-2254-01 IIIC G3 1-10 mm -TCGA-24-2260 TCGA-24-2260-01 IIIB G3 1-10 mm -TCGA-24-2261 TCGA-24-2261-01 IIIC G3 11-20 mm -TCGA-24-2262 TCGA-24-2262-01 IIIC G3 1-10 mm -TCGA-24-2267 TCGA-24-2267-01 IIB G3 No Macroscopic disease -TCGA-24-2271 TCGA-24-2271-01 IIIC G3 >20mm -TCGA-24-2280 TCGA-24-2280-01 IIIC G3 1-10 mm -TCGA-24-2281 TCGA-24-2281-01 IIA G3 1-10 mm -TCGA-24-2288 TCGA-24-2288-01 IIIC G3 >20mm -TCGA-24-2289 TCGA-24-2289-01 IV G3 >20mm -TCGA-24-2290 TCGA-24-2290-01 IIIC G3 1-10 mm -TCGA-24-2293 TCGA-24-2293-01 G3 >20mm -TCGA-24-2297 TCGA-24-2297-01 IIIC G3 >20mm -TCGA-24-2298 TCGA-24-2298-01 IIIC G3 >20mm -TCGA-25-1312 TCGA-25-1312-01 IV G3 1-10 mm -TCGA-25-1313 TCGA-25-1313-01 IV G3 1-10 mm -TCGA-25-1314 TCGA-25-1314-01 IV G3 1-10 mm -TCGA-25-1315 TCGA-25-1315-01 IIIC G3 1-10 mm -TCGA-25-1316 TCGA-25-1316-01 IIIC G3 1-10 mm -TCGA-25-1317 TCGA-25-1317-01 IIIC G3 -TCGA-25-1318 TCGA-25-1318-01 IIIC G3 1-10 mm -TCGA-25-1319 TCGA-25-1319-01 IIIC G3 11-20 mm -TCGA-25-1320 TCGA-25-1320-01 IIIC G3 1-10 mm -TCGA-25-1321 TCGA-25-1321-01 IIIC G3 No Macroscopic disease -TCGA-25-1322 TCGA-25-1322-01 IV G3 >20mm -TCGA-25-1323 TCGA-25-1323-01 IIIC G3 1-10 mm -TCGA-25-1324 TCGA-25-1324-01 IIIC G3 1-10 mm -TCGA-25-1325 TCGA-25-1325-01 IV G3 >20mm -TCGA-25-1326 TCGA-25-1326-01 IIIC G3 1-10 mm -TCGA-25-1328 TCGA-25-1328-01 IIIC G3 1-10 mm -TCGA-25-1329 TCGA-25-1329-01 IIIC G3 11-20 mm -TCGA-25-1623 TCGA-25-1623-01 IV G3 No Macroscopic disease -TCGA-25-1625 TCGA-25-1625-01 IIIC G3 1-10 mm -TCGA-25-1626 TCGA-25-1626-01 IIIC G3 >20mm -TCGA-25-1627 TCGA-25-1627-01 IIIC G3 1-10 mm -TCGA-25-1628 TCGA-25-1628-01 IIIC G3 1-10 mm -TCGA-25-1630 TCGA-25-1630-01 IIIC G3 1-10 mm -TCGA-25-1631 TCGA-25-1631-01 IIIC G3 1-10 mm -TCGA-25-1632 TCGA-25-1632-01 IV G3 1-10 mm -TCGA-25-1633 TCGA-25-1633-01 IIIC G3 1-10 mm -TCGA-25-1634 TCGA-25-1634-01 IIIC G3 No Macroscopic disease -TCGA-25-1635 TCGA-25-1635-01 IIIC G3 1-10 mm -TCGA-25-1870 TCGA-25-1870-01 IIIC G3 11-20 mm -TCGA-25-1871 TCGA-25-1871-01 IIIC G3 11-20 mm -TCGA-25-1877 TCGA-25-1877-01 IIIC G3 1-10 mm -TCGA-25-1878 TCGA-25-1878-01 IIIC G3 1-10 mm -TCGA-25-2042 TCGA-25-2042-01 IIIC G3 >20mm -TCGA-25-2391 TCGA-25-2391-01 IIIC G3 >20mm -TCGA-25-2392 TCGA-25-2392-01 IV G3 11-20 mm -TCGA-25-2393 TCGA-25-2393-01 IIIC G3 11-20 mm -TCGA-25-2396 TCGA-25-2396-01 IIIC G3 No Macroscopic disease -TCGA-25-2397 TCGA-25-2397-01 IV G3 No Macroscopic disease -TCGA-25-2398 TCGA-25-2398-01 IIIC G3 1-10 mm -TCGA-25-2399 TCGA-25-2399-01 IIIC G3 >20mm -TCGA-25-2400 TCGA-25-2400-01 IIIC G3 No Macroscopic disease -TCGA-25-2401 TCGA-25-2401-01 IIIC G3 1-10 mm -TCGA-25-2404 TCGA-25-2404-01 IIIC G3 No Macroscopic disease -TCGA-25-2408 TCGA-25-2408-01 IV G2 1-10 mm -TCGA-25-2409 TCGA-25-2409-01 IV G3 1-10 mm -TCGA-29-1688 TCGA-29-1688-01 IIIC G2 -TCGA-29-1690 TCGA-29-1690-01 IIIC G2 11-20 mm -TCGA-29-1691 TCGA-29-1691-01 IIIC G2 1-10 mm -TCGA-29-1693 TCGA-29-1693-01 IIIC G3 >20mm -TCGA-29-1694 TCGA-29-1694-01 IIIC 11-20 mm -TCGA-29-1695 TCGA-29-1695-01 IIIC G2 >20mm -TCGA-29-1696 TCGA-29-1696-01 IIIC G2 1-10 mm -TCGA-29-1697 TCGA-29-1697-01 IIIC G3 >20mm -TCGA-29-1698 TCGA-29-1698-01 IIIC G3 1-10 mm -TCGA-29-1699 TCGA-29-1699-01 IIIC G3 1-10 mm -TCGA-29-1701 TCGA-29-1701-01 IIIC G3 -TCGA-29-1702 TCGA-29-1702-01 IIIC G3 1-10 mm -TCGA-29-1703 TCGA-29-1703-01 IIIC G2 1-10 mm -TCGA-29-1705 TCGA-29-1705-01 IIIC G2 >20mm -TCGA-29-1707 TCGA-29-1707-01 IIC G3 No Macroscopic disease -TCGA-29-1710 TCGA-29-1710-01 IIIC G2 1-10 mm -TCGA-29-1711 TCGA-29-1711-01 IIIC G2 No Macroscopic disease -TCGA-29-1761 TCGA-29-1761-01 IIIC G3 >20mm -TCGA-29-1762 TCGA-29-1762-01 IV G2 >20mm -TCGA-29-1763 TCGA-29-1763-01 IIC G2 1-10 mm -TCGA-29-1764 TCGA-29-1764-01 IIIC G2 >20mm -TCGA-29-1766 TCGA-29-1766-01 IIIC G2 11-20 mm -TCGA-29-1768 TCGA-29-1768-01 IV G3 >20mm -TCGA-29-1769 TCGA-29-1769-01 IIIC G3 1-10 mm -TCGA-29-1770 TCGA-29-1770-01 IIIC G2 1-10 mm -TCGA-29-1771 TCGA-29-1771-01 IIIC G2 >20mm -TCGA-29-1774 TCGA-29-1774-01 IIIC G3 >20mm -TCGA-29-1775 TCGA-29-1775-01 IIIC G2 -TCGA-29-1776 TCGA-29-1776-01 IIIC G3 >20mm -TCGA-29-1777 TCGA-29-1777-01 IIIC G2 >20mm -TCGA-29-1778 TCGA-29-1778-01 IIIC G3 No Macroscopic disease -TCGA-29-1781 TCGA-29-1781-01 IIIC G3 -TCGA-29-1783 TCGA-29-1783-01 IIIC G3 -TCGA-29-1784 TCGA-29-1784-01 IIIC G3 -TCGA-29-1785 TCGA-29-1785-01 IIIC G3 >20mm -TCGA-29-2414 TCGA-29-2414-01 IIIC G2 11-20 mm -TCGA-29-2425 TCGA-29-2425-01 IIIC G2 >20mm -TCGA-29-2427 TCGA-29-2427-01 IIIC G3 >20mm -TCGA-29-2428 TCGA-29-2428-01 IIIC G3 >20mm -TCGA-30-1714 TCGA-30-1714-01 IV G3 1-10 mm -TCGA-30-1718 TCGA-30-1718-01 IIIC G3 1-10 mm -TCGA-30-1853 TCGA-30-1853-01 IIIC G3 1-10 mm -TCGA-30-1855 TCGA-30-1855-01 IIIC G3 1-10 mm -TCGA-30-1856 TCGA-30-1856-01 IIIC G3 1-10 mm -TCGA-30-1857 TCGA-30-1857-01 IV G3 -TCGA-30-1859 TCGA-30-1859-01 G3 1-10 mm -TCGA-30-1860 TCGA-30-1860-01 IIIC G3 >20mm -TCGA-30-1861 TCGA-30-1861-01 IIIC G3 1-10 mm -TCGA-30-1862 TCGA-30-1862-01 IV G2 >20mm -TCGA-30-1866 TCGA-30-1866-01 IV G2 1-10 mm -TCGA-30-1867 TCGA-30-1867-01 IV -TCGA-30-1880 TCGA-30-1880-01 IIIC G3 No Macroscopic disease -TCGA-30-1887 TCGA-30-1887-01 IIIC G2 1-10 mm -TCGA-30-1891 TCGA-30-1891-01 IIIC G2 1-10 mm -TCGA-30-1892 TCGA-30-1892-01 IIIC G3 1-10 mm -TCGA-31-1944 TCGA-31-1944-01 IIIC G3 No Macroscopic disease -TCGA-31-1946 TCGA-31-1946-01 IIIC G3 No Macroscopic disease -TCGA-31-1950 TCGA-31-1950-01 IIIC G2 1-10 mm -TCGA-31-1951 TCGA-31-1951-01 IIIC G3 No Macroscopic disease -TCGA-31-1953 TCGA-31-1953-01 IIIC G3 -TCGA-31-1956 TCGA-31-1956-01 IIIB G3 -TCGA-31-1959 TCGA-31-1959-01 IV G2 -TCGA-36-1568 TCGA-36-1568-01 IIIC G3 -TCGA-36-1569 TCGA-36-1569-01 IIIC G3 1-10 mm -TCGA-36-1570 TCGA-36-1570-01 IIIC G3 >20mm -TCGA-36-1571 TCGA-36-1571-01 IIIB G3 No Macroscopic disease -TCGA-36-1574 TCGA-36-1574-01 IIIC G3 >20mm -TCGA-36-1575 TCGA-36-1575-01 IIIB G3 No Macroscopic disease -TCGA-36-1576 TCGA-36-1576-01 IIIC G3 >20mm -TCGA-36-1577 TCGA-36-1577-01 IIC G2 No Macroscopic disease -TCGA-36-1578 TCGA-36-1578-01 IV G3 >20mm -TCGA-36-1580 TCGA-36-1580-01 IIIC G3 >20mm -TCGA-36-1581 TCGA-36-1581-01 IIC G3 No Macroscopic disease -TCGA-57-1582 TCGA-57-1582-01 IIIC G3 1-10 mm -TCGA-57-1583 TCGA-57-1583-01 IIIC G3 No Macroscopic disease -TCGA-57-1584 TCGA-57-1584-01 IIIC G3 1-10 mm -TCGA-57-1585 TCGA-57-1585-01 IIIC G3 11-20 mm -TCGA-57-1586 TCGA-57-1586-01 IIIC G3 11-20 mm -TCGA-57-1993 TCGA-57-1993-01 IIIC G3 No Macroscopic disease -TCGA-57-1994 TCGA-57-1994-01 -TCGA-59-2348 TCGA-59-2348-01 IIIC G3 -TCGA-59-2350 TCGA-59-2350-01 IV G3 1-10 mm -TCGA-59-2351 TCGA-59-2351-01 IIIC G3 1-10 mm -TCGA-59-2352 TCGA-59-2352-01 IIIC G3 -TCGA-59-2354 TCGA-59-2354-01 IIIC G3 1-10 mm -TCGA-59-2355 TCGA-59-2355-01 IV G3 >20mm -TCGA-59-2363 TCGA-59-2363-01 IIIA G3 No Macroscopic disease -TCGA-61-1724 TCGA-61-1724-01 IIIC G3 No Macroscopic disease -TCGA-61-1725 TCGA-61-1725-01 IIIC G3 11-20 mm -TCGA-61-1728 TCGA-61-1728-01 IV G3 1-10 mm -TCGA-61-1733 TCGA-61-1733-01 IIIC G3 No Macroscopic disease -TCGA-61-1736 TCGA-61-1736-01 IIIC G3 -TCGA-61-1737 TCGA-61-1737-01 IV G3 1-10 mm -TCGA-61-1738 TCGA-61-1738-01 IIIC G3 1-10 mm -TCGA-61-1740 TCGA-61-1740-01 IIIC G3 >20mm -TCGA-61-1741 TCGA-61-1741-01 IIIB G3 >20mm -TCGA-61-1743 TCGA-61-1743-01 IIC G2 No Macroscopic disease -TCGA-61-1895 TCGA-61-1895-01 IIIB G3 No Macroscopic disease -TCGA-61-1899 TCGA-61-1899-01 IIIC G3 No Macroscopic disease -TCGA-61-1900 TCGA-61-1900-01 IIIB G3 No Macroscopic disease -TCGA-61-1901 TCGA-61-1901-01 IV G3 -TCGA-61-1904 TCGA-61-1904-01 IIIC G3 1-10 mm -TCGA-61-1906 TCGA-61-1906-01 IIIC G3 11-20 mm -TCGA-61-1907 TCGA-61-1907-01 IIIC G3 11-20 mm -TCGA-61-1910 TCGA-61-1910-01 IIC G3 1-10 mm -TCGA-61-1911 TCGA-61-1911-01 IIA G3 -TCGA-61-1913 TCGA-61-1913-01 IIIB G3 1-10 mm -TCGA-61-1914 TCGA-61-1914-01 IIIC G3 >20mm -TCGA-61-1915 TCGA-61-1915-01 IIC G3 -TCGA-61-1917 TCGA-61-1917-01 IIIB G3 -TCGA-61-1918 TCGA-61-1918-01 IV G3 No Macroscopic disease -TCGA-61-1919 TCGA-61-1919-01 IIIC G2 -TCGA-61-1995 TCGA-61-1995-01 IIIC G3 1-10 mm -TCGA-61-1998 TCGA-61-1998-01 IIIC G3 1-10 mm -TCGA-61-2000 TCGA-61-2000-01 IIIC G3 No Macroscopic disease -TCGA-61-2002 TCGA-61-2002-01 IIIC G3 11-20 mm -TCGA-61-2003 TCGA-61-2003-01 IIIC G2 1-10 mm -TCGA-61-2008 TCGA-61-2008-01 IIC G2 No Macroscopic disease -TCGA-61-2009 TCGA-61-2009-01 IIIC G3 11-20 mm -TCGA-61-2012 TCGA-61-2012-01 IIC G2 -TCGA-61-2016 TCGA-61-2016-01 IIIC G3 No Macroscopic disease -TCGA-61-2088 TCGA-61-2088-01 IIIC G3 No Macroscopic disease -TCGA-61-2092 TCGA-61-2092-01 IIIC G3 No Macroscopic disease -TCGA-61-2094 TCGA-61-2094-01 IIIC G3 -TCGA-61-2095 TCGA-61-2095-01 IIIC G2 No Macroscopic disease -TCGA-61-2097 TCGA-61-2097-01 IIC G2 1-10 mm -TCGA-61-2098 TCGA-61-2098-01 IIIC G2 11-20 mm -TCGA-61-2101 TCGA-61-2101-01 IIIC G2 11-20 mm -TCGA-61-2102 TCGA-61-2102-01 IIIC G3 -TCGA-61-2104 TCGA-61-2104-01 IIC G2 No Macroscopic disease -TCGA-61-2109 TCGA-61-2109-01 IIIC G3 >20mm -TCGA-61-2110 TCGA-61-2110-01 IIIC No Macroscopic disease -TCGA-61-2111 TCGA-61-2111-01 IV G3 -TCGA-61-2113 TCGA-61-2113-01 IIC G3 diff --git a/core/src/test/resources/clinical_data_small.txt b/core/src/test/resources/clinical_data_small.txt deleted file mode 100644 index db8ae95b853..00000000000 --- a/core/src/test/resources/clinical_data_small.txt +++ /dev/null @@ -1,18 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient identifier Sample identifier Subtype description Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING STRING STRING NUMBER STRING NUMBER -#PATIENT SAMPLE SAMPLE PATIENT PATIENT PATIENT PATIENT -#1 1 1 1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like 1:DECEASED 17.97 1:Recurred/Progressed NA -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like 1:DECEASED 31.77 NA NA -TCGA-A2-A0CM TCGA-A2-A0CM-01 basal-like 1:DECEASED 24.77 1:Recurred/Progressed NA -TCGA-AR-A1AR TCGA-AR-A1AR-01 basal-like 1:DECEASED 17.18 NA NA -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like 1:DECEASED 21.45 1:Recurred/Progressed NA -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like 1:DECEASED 25.79 1:Recurred/Progressed NA -TCGA-B6-A0I6 TCGA-B6-A0I6-01 NA 1:DECEASED 32.56 1:Recurred/Progressed NA -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like 1:DECEASED 51.09 NA NA -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like 1:DECEASED 55.59 NA NA -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like 1:DECEASED 90.74 1:Recurred/Progressed NA - -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like 1:DECEASED 90.74 1:Recurred/Progressed NA \ No newline at end of file diff --git a/core/src/test/resources/clinical_data_small_PATIENT.txt b/core/src/test/resources/clinical_data_small_PATIENT.txt deleted file mode 100644 index cf2f416ec66..00000000000 --- a/core/src/test/resources/clinical_data_small_PATIENT.txt +++ /dev/null @@ -1,11 +0,0 @@ -#Patient Identifier Subtype Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient identifier Subtype description Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING STRING NUMBER STRING NUMBER -#1 1 1 1 1 1 -PATIENT_ID SUBTYPE OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TEST-A2-A04P basal-like 1:DECEASED 17.97 1:Recurred/Progressed NA -TEST-A1-A0SK basal-like 1:DECEASED 31.77 NA NA -TEST-A2-A0CM basal-like 1:DECEASED 24.77 1:Recurred/Progressed NA -TEST-AR-A1AR basal-like 1:DECEASED 17.18 NA NA -TEST-B6-A0WX basal-like 1:DECEASED 21.45 1:Recurred/Progressed NA -TEST-BH-A1F0 basal-like 1:DECEASED 25.79 1:Recurred/Progressed NA diff --git a/core/src/test/resources/clinical_data_small_PATIENT_datatype_error.txt b/core/src/test/resources/clinical_data_small_PATIENT_datatype_error.txt deleted file mode 100644 index 224e4e3a188..00000000000 --- a/core/src/test/resources/clinical_data_small_PATIENT_datatype_error.txt +++ /dev/null @@ -1,11 +0,0 @@ -#Patient Identifier Subtype Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient identifier Subtype description Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING DOUBLE STRING BOOLEAN STRING TEXT -#1 1 1 1 1 1 -PATIENT_ID SUBTYPE OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TEST-A2-A04P basal-like 1:DECEASED 17.97 1:Recurred/Progressed NA -TEST-A1-A0SK basal-like 1:DECEASED 31.77 NA NA -TEST-A2-A0CM basal-like 1:DECEASED 24.77 1:Recurred/Progressed NA -TEST-AR-A1AR basal-like 1:DECEASED 17.18 NA NA -TEST-B6-A0WX basal-like 1:DECEASED 21.45 1:Recurred/Progressed NA -TEST-BH-A1F0 basal-like 1:DECEASED 25.79 1:Recurred/Progressed NA diff --git a/core/src/test/resources/clinical_data_small_PATIENT_dupl_error.txt b/core/src/test/resources/clinical_data_small_PATIENT_dupl_error.txt deleted file mode 100644 index 49a67ac68eb..00000000000 --- a/core/src/test/resources/clinical_data_small_PATIENT_dupl_error.txt +++ /dev/null @@ -1,12 +0,0 @@ -#Patient Identifier Subtype Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient identifier Subtype description Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING STRING NUMBER STRING NUMBER -#1 1 1 1 1 1 -PATIENT_ID SUBTYPE OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TEST-A2-A04P basal-like 1:DECEASED 17.97 1:Recurred/Progressed NA -TEST-A1-A0SK basal-like 1:DECEASED 31.77 NA NA -TEST-A2-A0CM basal-like 1:DECEASED 24.77 1:Recurred/Progressed NA -TEST-AR-A1AR basal-like 1:DECEASED 17.18 NA NA -TEST-B6-A0WX basal-like 1:DECEASED 21.45 1:Recurred/Progressed NA -TEST-BH-A1F0 basal-like 1:DECEASED 25.79 1:Recurred/Progressed NA -TEST-BH-A1F0 basal-like 1:DECEASED 25.79 1:Recurred/Progressed NA diff --git a/core/src/test/resources/clinical_data_small_SAMPLE.txt b/core/src/test/resources/clinical_data_small_SAMPLE.txt deleted file mode 100644 index 2cd271522e3..00000000000 --- a/core/src/test/resources/clinical_data_small_SAMPLE.txt +++ /dev/null @@ -1,11 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient Identifier Sample identifier Subtype description Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING STRING STRING NUMBER STRING NUMBER -#1 1 1 1 1 1 1 -SAMPLE_ID PATIENT_ID SUBTYPE OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TEST-A2-A04P TEST-A2-A04P basal-like 1:DECEASED 17.97 1:Recurred/Progressed NA -TEST-A1-A0SK TEST-A1-A0SK basal-like 1:DECEASED 31.77 NA NA -TEST-A2-A0CM TEST-A2-A0CM basal-like 1:DECEASED 24.77 1:Recurred/Progressed NA -TEST-AR-A1AR TEST-AR-A1AR basal-like 1:DECEASED 17.18 NA NA -TEST-B6-A0WX TEST-B6-A0WX basal-like 1:DECEASED 21.45 1:Recurred/Progressed NA -TEST-BH-A1F0 TEST-BH-A1F0 basal-like 1:DECEASED 25.79 1:Recurred/Progressed NA diff --git a/core/src/test/resources/clinical_data_small_SAMPLE2.txt b/core/src/test/resources/clinical_data_small_SAMPLE2.txt deleted file mode 100644 index 61842e23858..00000000000 --- a/core/src/test/resources/clinical_data_small_SAMPLE2.txt +++ /dev/null @@ -1,11 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient Identifier Sample identifier Subtype description Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING STRING STRING NUMBER STRING NUMBER -#1 1 1 1 1 1 1 -SAMPLE_ID PATIENT_ID SUBTYPE OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TEST-A2-A04P-02 TEST-A2-A04P basal-like 1:DECEASED 17.97 1:Recurred/Progressed NA -TEST-A1-A0SK-02 TEST-A1-A0SK basal-like 1:DECEASED 31.77 NA NA -TEST-A2-A0CM-02 TEST-A2-A0CM basal-like 1:DECEASED 24.77 1:Recurred/Progressed NA -TEST-AR-A1AR-02 TEST-AR-A1AR basal-like 1:DECEASED 17.18 NA NA -TEST-B6-A0WX-02 TEST-B6-A0WX basal-like 1:DECEASED 21.45 1:Recurred/Progressed NA -TEST-BH-A1F0-02 TEST-BH-A1F0 basal-like 1:DECEASED 25.79 1:Recurred/Progressed NA diff --git a/core/src/test/resources/clinical_data_small_WRONG_NR_COLS.txt b/core/src/test/resources/clinical_data_small_WRONG_NR_COLS.txt deleted file mode 100644 index f8c4dcf93ea..00000000000 --- a/core/src/test/resources/clinical_data_small_WRONG_NR_COLS.txt +++ /dev/null @@ -1,10 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient identifier Sample identifier Subtype description Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING STRING STRING NUMBER STRING NUMBER -#PATIENT SAMPLE SAMPLE PATIENT PATIENT PATIENT PATIENT -#1 1 1 1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like 1:DECEASED 17.97 1:Recurred/Progressed NA -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like 1:DECEASED 31.77 NA NA -abc -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like 1:DECEASED 90.74 1:Recurred/Progressed NA \ No newline at end of file diff --git a/core/src/test/resources/clinical_data_small_missing_PATIENTID.txt b/core/src/test/resources/clinical_data_small_missing_PATIENTID.txt deleted file mode 100644 index 92ead76e514..00000000000 --- a/core/src/test/resources/clinical_data_small_missing_PATIENTID.txt +++ /dev/null @@ -1,11 +0,0 @@ -#Sample Identifier Subtype Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Sample identifier Subtype description Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING STRING NUMBER STRING NUMBER -#1 1 1 1 1 1 -SAMPLE_ID SUBTYPE OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TEST-A2-A04P basal-like 1:DECEASED 17.97 1:Recurred/Progressed NA -TEST-A1-A0SK basal-like 1:DECEASED 31.77 NA NA -TEST-A2-A0CM basal-like 1:DECEASED 24.77 1:Recurred/Progressed NA -TEST-AR-A1AR basal-like 1:DECEASED 17.18 NA NA -TEST-B6-A0WX basal-like 1:DECEASED 21.45 1:Recurred/Progressed NA -TEST-BH-A1F0 basal-like 1:DECEASED 25.79 1:Recurred/Progressed NA diff --git a/core/src/test/resources/clinical_data_small_missing_SAMPLEID.txt b/core/src/test/resources/clinical_data_small_missing_SAMPLEID.txt deleted file mode 100644 index ded82759c51..00000000000 --- a/core/src/test/resources/clinical_data_small_missing_SAMPLEID.txt +++ /dev/null @@ -1,14 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient identifier Sample identifier Subtype description Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING STRING STRING NUMBER STRING NUMBER -#1 1 1 1 1 1 1 -PATIENT_ID SAMPLE_IDentifier SUBTYPE OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like 1:DECEASED 17.97 1:Recurred/Progressed NA -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like 1:DECEASED 31.77 NA NA -TCGA-A2-A0CM TCGA-A2-A0CM-01 basal-like 1:DECEASED 24.77 1:Recurred/Progressed NA -TCGA-AR-A1AR TCGA-AR-A1AR-01 basal-like 1:DECEASED 17.18 NA NA -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like 1:DECEASED 21.45 1:Recurred/Progressed NA -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like 1:DECEASED 25.79 1:Recurred/Progressed NA -TCGA-B6-A0I6 TCGA-B6-A0I6-01 NA 1:DECEASED 32.56 1:Recurred/Progressed NA -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like 1:DECEASED 51.09 NA NA -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like 1:DECEASED 55.59 NA NA diff --git a/core/src/test/resources/clinical_data_small_nonTCGA.txt b/core/src/test/resources/clinical_data_small_nonTCGA.txt deleted file mode 100644 index 4ea6c438295..00000000000 --- a/core/src/test/resources/clinical_data_small_nonTCGA.txt +++ /dev/null @@ -1,17 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient identifier Sample identifier Subtype description Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING STRING STRING NUMBER STRING NUMBER -#PATIENT SAMPLE SAMPLE PATIENT PATIENT PATIENT PATIENT -#1 1 1 1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TEST-A2-A04P TEST-A2-A04P-01 basal-like 1:DECEASED 17.97 1:Recurred/Progressed NA -TEST-A1-A0SK TEST-A1-A0SK-01 basal-like 1:DECEASED 31.77 NA NA -TEST-A2-A0CM TEST-A2-A0CM-01 basal-like 1:DECEASED 24.77 1:Recurred/Progressed NA -TEST-AR-A1AR TEST-AR-A1AR-01 basal-like 1:DECEASED 17.18 NA NA -TEST-B6-A0WX TEST-B6-A0WX-01 basal-like 1:DECEASED 21.45 1:Recurred/Progressed NA -TEST-BH-A1F0 TEST-BH-A1F0-01 basal-like 1:DECEASED 25.79 1:Recurred/Progressed NA -TEST-B6-A0I6 TEST-B6-A0I6-01 NA 1:DECEASED 32.56 1:Recurred/Progressed NA -TEST-BH-A18V TEST-BH-A18V-01 basal-like 1:DECEASED 51.09 NA NA -TEST-BH-A18Q TEST-BH-A18Q-01 basal-like 1:DECEASED 55.59 NA NA -TEST-BH-A18K TEST-BH-A18K-01 basal-like 1:DECEASED 90.74 1:Recurred/Progressed NA -TEST-BH-A18K TEST-BH-A18K-01 basal-like 1:DECEASED 90.74 1:Recurred/Progressed NA \ No newline at end of file diff --git a/core/src/test/resources/clinical_meta.txt b/core/src/test/resources/clinical_meta.txt deleted file mode 100644 index 275be052fd7..00000000000 --- a/core/src/test/resources/clinical_meta.txt +++ /dev/null @@ -1,7 +0,0 @@ -cancer_study_identifier: study_tcga_pub -datatype: MIXED_ATTRIBUTES -genetic_alteration_type: CLINICAL -stable_id: clinical -show_profile_in_analysis_tab: true -profile_description: Clinical data -profile_name: Clinical data diff --git a/core/src/test/resources/cna_sample.txt b/core/src/test/resources/cna_sample.txt deleted file mode 100644 index e4e1bfbc8fb..00000000000 --- a/core/src/test/resources/cna_sample.txt +++ /dev/null @@ -1,3 +0,0 @@ -GENE_ID COMMON TCGA-02-0001 TCGA-02-0003 TCGA-02-0004 TCGA-02-0006 TCGA-02-0007 TCGA-02-0009 TCGA-02-0010 TCGA-02-0011 TCGA-02-0014 TCGA-02-0015 TCGA-02-0016 TCGA-02-0021 TCGA-02-0023 TCGA-02-0024 TCGA-02-0025 TCGA-02-0026 TCGA-02-0027 TCGA-02-0028 TCGA-02-0033 TCGA-02-0034 TCGA-02-0037 TCGA-02-0038 TCGA-02-0039 TCGA-02-0043 TCGA-02-0046 TCGA-02-0047 TCGA-02-0048 TCGA-02-0052 TCGA-02-0054 TCGA-02-0055 TCGA-02-0057 TCGA-02-0058 TCGA-02-0060 TCGA-02-0064 TCGA-02-0068 TCGA-02-0069 TCGA-02-0070 TCGA-02-0071 TCGA-02-0074 TCGA-02-0075 TCGA-02-0079 TCGA-02-0080 TCGA-02-0083 TCGA-02-0084 TCGA-02-0085 TCGA-02-0086 TCGA-02-0087 TCGA-02-0089 TCGA-02-0099 TCGA-02-0102 TCGA-02-0104 TCGA-02-0106 TCGA-02-0107 TCGA-02-0111 TCGA-02-0113 TCGA-02-0114 TCGA-02-0115 TCGA-02-0116 TCGA-02-0258 TCGA-02-0260 TCGA-02-0266 TCGA-02-0269 TCGA-02-0271 TCGA-02-0281 TCGA-02-0285 TCGA-02-0289 TCGA-02-0290 TCGA-02-0317 TCGA-02-0321 TCGA-02-0324 TCGA-02-0325 TCGA-02-0326 TCGA-02-0330 TCGA-02-0332 TCGA-02-0333 TCGA-02-0337 TCGA-02-0338 TCGA-02-0339 TCGA-02-0422 TCGA-02-0430 TCGA-02-0432 TCGA-02-0439 TCGA-02-0440 TCGA-02-0446 TCGA-02-0451 TCGA-02-0456 TCGA-06-0122 TCGA-06-0124 TCGA-06-0125 TCGA-06-0126 TCGA-06-0127 TCGA-06-0128 TCGA-06-0129 TCGA-06-0130 TCGA-06-0132 TCGA-06-0133 TCGA-06-0137 TCGA-06-0138 TCGA-06-0139 TCGA-06-0141 TCGA-06-0143 TCGA-06-0145 TCGA-06-0146 TCGA-06-0147 TCGA-06-0148 TCGA-06-0149 TCGA-06-0152 TCGA-06-0154 TCGA-06-0156 TCGA-06-0157 TCGA-06-0158 TCGA-06-0162 TCGA-06-0164 TCGA-06-0166 TCGA-06-0168 TCGA-06-0169 TCGA-06-0171 TCGA-06-0173 TCGA-06-0174 TCGA-06-0175 TCGA-06-0176 TCGA-06-0177 TCGA-06-0178 TCGA-06-0179 TCGA-06-0182 TCGA-06-0184 TCGA-06-0185 TCGA-06-0187 TCGA-06-0188 TCGA-06-0189 TCGA-06-0190 TCGA-06-0194 TCGA-06-0195 TCGA-06-0197 TCGA-06-0201 TCGA-06-0206 TCGA-06-0208 TCGA-06-0209 TCGA-06-0210 TCGA-06-0211 TCGA-06-0213 TCGA-06-0214 TCGA-06-0219 TCGA-06-0221 TCGA-06-0237 TCGA-06-0238 TCGA-06-0241 TCGA-06-0394 TCGA-06-0397 TCGA-06-0402 TCGA-06-0409 TCGA-06-0410 TCGA-06-0412 TCGA-06-0413 TCGA-06-0414 TCGA-06-0644 TCGA-06-0645 TCGA-06-0646 TCGA-06-0648 TCGA-08-0244 TCGA-08-0246 TCGA-08-0344 TCGA-08-0345 TCGA-08-0346 TCGA-08-0347 TCGA-08-0348 TCGA-08-0349 TCGA-08-0350 TCGA-08-0351 TCGA-08-0352 TCGA-08-0353 TCGA-08-0354 TCGA-08-0355 TCGA-08-0356 TCGA-08-0357 TCGA-08-0358 TCGA-08-0359 TCGA-08-0360 TCGA-08-0373 TCGA-08-0375 TCGA-08-0380 TCGA-08-0385 TCGA-08-0386 TCGA-08-0389 TCGA-08-0390 TCGA-08-0392 TCGA-08-0509 TCGA-08-0510 TCGA-08-0511 TCGA-08-0512 TCGA-08-0514 TCGA-08-0516 TCGA-08-0517 TCGA-08-0518 TCGA-08-0520 TCGA-08-0521 TCGA-08-0522 TCGA-08-0524 TCGA-08-0525 TCGA-08-0529 TCGA-08-0531 TCGA-12-0615 TCGA-12-0616 TCGA-12-0618 TCGA-12-0619 TCGA-12-0620 -672 BRCA1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 -1 0 -1 1 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -675 BRCA2 0 0 0 -1 -1 0 -1 -1 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 -1 0 0 0 0 -1 -1 0 -1 -1 0 0 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 -1 0 0 0 0 0 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 \ No newline at end of file diff --git a/core/src/test/resources/cna_sample2.txt b/core/src/test/resources/cna_sample2.txt deleted file mode 100644 index c2a7963acff..00000000000 --- a/core/src/test/resources/cna_sample2.txt +++ /dev/null @@ -1 +0,0 @@ -GENE_ID COMMON TCGA-02-0001 TCGA-02-0003 TCGA-02-0004 TCGA-02-0006 TCGA-02-0007 TCGA-02-0009 TCGA-02-0010 TCGA-02-0011 TCGA-02-0014 TCGA-02-0015 TCGA-02-0016 TCGA-02-0021 TCGA-02-0023 TCGA-02-0024 TCGA-02-0025 TCGA-02-0026 TCGA-02-0027 TCGA-02-0028 TCGA-02-0033 TCGA-02-0034 672 BRCA1 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 675 BRCA2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 \ No newline at end of file diff --git a/core/src/test/resources/cna_test.txt b/core/src/test/resources/cna_test.txt deleted file mode 100644 index 6819c611c0a..00000000000 --- a/core/src/test/resources/cna_test.txt +++ /dev/null @@ -1,52 +0,0 @@ -Name Hugo_Symbol TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 - 1 3 6 7 9 10 11 14 21 24 27 28 33 34 -Barry TESTAKT1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 -1 -Gaddy Broad TESTAKT1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 -Gaddy HMS TESTAKT1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 -1 -Gaddy MSKCC TESTAKT1 0 0 -1 0 -1 -1 0 0 -1 0 0 0 -1 -Gaddy Stanford TESTAKT1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 -1 -Jun TESTAKT1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 -1 -Barry TESTAKT2 0 0 0 0 1 0 0 0 1 0 0 -1 0 0 -Gaddy Broad TESTAKT2 0 0 0 0 1 0 0 0 1 0 0 -1 0 -Gaddy HMS TESTAKT2 0 0 0 0 1 0 0 0 1 0 0 -1 0 0 -Gaddy MSKCC TESTAKT2 0 0 0 1 0 0 0 1 0 0 -1 0 0 -Gaddy Stanford TESTAKT2 0 0 0 0 1 0 0 0 1 0 0 -1 0 0 -Jun TESTAKT2 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -Barry TESTAKT3 2 2 2 1 1 -2 0 0 0 1 0 1 0 0 -Gaddy Broad TESTAKT3 0 0 0 0 0 0 0 0 0 1 0 1 0 -Gaddy HMS TESTAKT3 1 0 0 0 0 0 0 0 0 1 0 1 0 0 -Gaddy MSKCC TESTAKT3 1 0 0 0 0 0 0 0 1 0 1 0 0 -Gaddy Stanford TESTAKT3 0 0 0 0 0 0 0 0 0 1 0 1 0 0 -Jun TESTAKT3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Barry TESTARAF -Gaddy Broad TESTARAF -Gaddy HMS TESTARAF -Gaddy MSKCC TESTARAF -Gaddy Stanford TESTARAF -Jun TESTARAF 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Barry TESTATM 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -Gaddy Broad TESTATM 0 0 0 0 0 0 0 -1 0 -1 0 0 0 -Gaddy HMS TESTATM 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 -Gaddy MSKCC TESTATM 0 0 0 0 0 0 -1 0 -1 0 0 0 0 -Gaddy Stanford TESTATM 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0 -Jun TESTATM 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -Barry TESTBRAF 1 1 1 0 1 0 0 1 1 0 1 -1 1 1 -Gaddy Broad TESTBRAF 1 1 1 0 1 0 0 1 1 -1 1 -1 1 -Gaddy HMS TESTBRAF 1 1 1 0 1 0 0 1 1 -1 1 -1 1 1 -Gaddy MSKCC TESTBRAF 1 1 0 1 0 0 1 1 -1 1 -1 1 1 -Gaddy Stanford TESTBRAF 1 1 1 0 1 0 0 1 1 -1 1 -1 1 1 -Jun TESTBRAF 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -Barry TESTBRCA1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -Gaddy Broad TESTBRCA1 0 0 0 0 0 0 0 0 0 0 0 0 -1 -Gaddy HMS TESTBRCA1 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -Gaddy MSKCC TESTBRCA1 -1 0 0 0 0 0 0 0 0 0 0 -1 0 -Gaddy Stanford TESTBRCA1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -Jun TESTBRCA1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -Barry TESTBRCA2 0 0 -1 -1 0 -1 -1 0 0 0 0 0 -1 -1 -Gaddy Broad TESTBRCA2 0 0 -1 -1 0 -1 -1 0 0 0 0 0 -1 -Gaddy HMS TESTBRCA2 0 0 -1 -1 0 -1 -1 0 0 0 0 0 -1 -1 -Gaddy MSKCC TESTBRCA2 0 0 -1 0 -1 -1 0 0 0 0 0 -1 -1 -Gaddy Stanford TESTBRCA2 0 0 -1 -1 0 -1 -1 0 0 0 0 0 -1 -1 -Jun TESTBRCA2 0 0 -1 -1 0 0 -1 0 0 0 0 0 -1 -1 -# This line references AKT1 again. However, since we have already loaded data for AKT1, it will be ignored -Barry TESTAKT1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 diff --git a/core/src/test/resources/cna_test2.txt b/core/src/test/resources/cna_test2.txt deleted file mode 100644 index bffc04322f7..00000000000 --- a/core/src/test/resources/cna_test2.txt +++ /dev/null @@ -1,15 +0,0 @@ -Hugo_Symbol TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 -AKT1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 -1 -AKT2 0 0 0 0 1 0 0 0 1 0 0 -1 0 0 -AKT3 2 2 2 1 1 -2 0 0 0 1 0 1 0 0 -ARAF -ATM 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -BRAF 1 1 1 0 1 0 0 1 1 0 1 -1 1 1 -BRCA1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -BRCA2 0 0 -1 -1 0 -1 -1 0 0 0 0 0 -1 -1 -# This line references AKT1 again. However, since we have already loaded data for AKT1, it will be ignored -AKT1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 -# This line references two genes. It will be ignored -AKT1 /// AKT2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 -# This line references an unknown gene. It will also be ignore --2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 \ No newline at end of file diff --git a/core/src/test/resources/coadread_tcga.txt b/core/src/test/resources/coadread_tcga.txt deleted file mode 100644 index a05744c35d8..00000000000 --- a/core/src/test/resources/coadread_tcga.txt +++ /dev/null @@ -1,4 +0,0 @@ -type_of_cancer: coadread -cancer_study_identifier: coadread_tcga -name: Colon and Rectum Adenocarcinoma (TCGA, Provisional) -description: TCGA Colon and Rectum Adenocarcinoma, containing 581 samples; raw data at the NCI. diff --git a/core/src/test/resources/correct_data_mRNA_ZbyNorm.txt b/core/src/test/resources/correct_data_mRNA_ZbyNorm.txt deleted file mode 100644 index 78a328ec3f9..00000000000 --- a/core/src/test/resources/correct_data_mRNA_ZbyNorm.txt +++ /dev/null @@ -1,6 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-02-0001-01C-01R TCGA-02-0002-01A-01R TCGA-02-0003-01A-01R TCGA-02-0004-01A-01R TCGA-02-0005-01A-01D-0182-01 TCGA-02-0006-01A-01D-0182-01 -AACS 65985 1.2247 0.0000 0.0000 -1.2247 1.2247 1.2247 -ELMO2 63916 2.5981 -0.8660 -0.8660 0.8660 0.8660 4.3301 -TP53 7157 NA NA NA NA NA NA -RPS11 6205 -0.8660 2.5981 0.8660 0.8660 -0.8660 -2.5981 -PNMA1 9240 0.4330 0.8660 -0.8660 0.8660 -0.8660 1.7321 diff --git a/core/src/test/resources/data_CNA_sample.txt b/core/src/test/resources/data_CNA_sample.txt deleted file mode 100644 index f225740b84e..00000000000 --- a/core/src/test/resources/data_CNA_sample.txt +++ /dev/null @@ -1,3 +0,0 @@ -GeneId Hugo_Symbol TCGA-02-0001-01 TCGA-02-0003-01 TCGA-02-0004-01 TCGA-02-0006-01 -999999672 TESTBRCA1 -2 0 1 0 -999999675 TESTBRCA2 0 2 0 -1 \ No newline at end of file diff --git a/core/src/test/resources/data_GISTIC_GENE_AMPS.txt b/core/src/test/resources/data_GISTIC_GENE_AMPS.txt deleted file mode 100755 index ad8cc5796c8..00000000000 --- a/core/src/test/resources/data_GISTIC_GENE_AMPS.txt +++ /dev/null @@ -1,21 +0,0 @@ -index chromosome region_start region_end peak_start peak_end enlarged_peak_start enlarged_peak_end n_genes_in_region genes_in_region n_genes_in_peak genes_in_peak n_genes_on_chip genes_on_chip top 3 amp cytoband q_value -1 1 157735626 172666629 161041735 161066590 161033015 161098482 6 NIT1,PFDN2,DEDD,PVRL4,KLHDC9,ARHGAP30, 4 PFDN2,PVRL4,KLHDC9,ARHGAP30, 1 1q23.3 6.4603e-06 -2 1 39483129 41938903 40215015 40534842 39531714 40539076 17 BMP8B,MYCL1,PPT1,PABPC4,PPIE,CAP1,MACF1,HEYL,HPCAL4,TRIT1,OXCT2,NT5C1A,MFSD2A,BMP8A,KIAA0754,SNORA55,PPIEL, 8 BMP8B,MYCL1,PPT1,PPIE,CAP1,TRIT1,OXCT2,MFSD2A, 1 1p34.2 0.001284 -3 3 11594930 12872442 12484849 12485147 12483451 12485886 0 [PPARG] 0 [PPARG] 1 3p25.2 0.00019113 -4 4 1838129 2229435 1924276 2009443 1835546 2085858 9 hsa-mir-943,LETM1,WHSC1,WHSC2,NAT8L,POLN,C4orf48,SCARNA22,MIR943, 5 hsa-mir-943,WHSC1,WHSC2,SCARNA22,MIR943, 1 4p16.3 0.08264 -5 6 17734523 23700182 21724394 21808480 19954987 21876654 5 E2F3,SOX4,CDKAL1,MBOAT1,LINC00340, 1 LINC00340, 1 6p22.3 2.5141e-11 -6 6 107208482 107515030 107310106 107446857 107302955 107451531 2 C6orf203,BEND3, 2 C6orf203,BEND3, 1 6q21 0.013301 -7 7 17799600 20203315 17799600 17923402 15890949 22691865 32 hsa-mir-1183,hsa-mir-3146,hsa-mir-1302-6,AHR,ITGB8,SP4,TWIST1,DNAH11,HDAC9,RAPGEF5,AGR2,SNX13,SOSTDC1,TSPAN13,BZW2,CDCA7L,ANKMY2,AGR3,PRPS1L1,TWISTNB,SP8,FERD3L,RPL23P8,TMEM196,STEAP1B,ABCB5,MACC1,ISPD,MIR3146,LOC100506025,LRRC72,LOC100506178, 2 AHR,SNX13, 1 7p21.1 0.2006 -8 8 98464129 103731682 101710214 101883378 101195500 102353303 9 SPAG1,YWHAZ,RNF19A,PABPC1,ZNF706,ANKRD46,SNX31,FLJ42969,MIR4471, 1 PABPC1, 1 8q22.3 0.00028162 -9 8 41885433 42103221 41885433 42093818 41413454 42099360 8 hsa-mir-486,ANK1,PLAT,KAT6A,AP3M2,AGPAT6,NKX6-3,MIR486, 3 PLAT,KAT6A,AP3M2, 1 8p11.21 0.2006 -10 8 127588483 129789168 128217188 128424792 127581610 129787426 14 hsa-mir-1208,hsa-mir-1207,hsa-mir-1205,hsa-mir-1204,MYC,POU5F1B,PVT1,LOC727677,MIR1205,MIR1206,MIR1207,MIR1204,MIR1208,PCAT1, 1 POU5F1B, 1 8q24.21 0.00812 -11 9 20015777 20953636 20015777 20951647 20005048 20953233 6 hsa-mir-491,MLLT3,KIAA1797,MIR491,MIR4473,MIR4474, 6 hsa-mir-491,MLLT3,KIAA1797,MIR491,MIR4473,MIR4474, 1 9p21.3 0.037143 -12 10 5611426 5844868 5611426 5834270 4199857 9011746 38 hsa-mir-3155,ATP5C1,CALML3,AKR1C4,AKR1C1,AKR1C2,GATA3,GDI2,IL2RA,IL15RA,ITIH2,PFKFB3,PRKCQ,AKR1C3,NET1,KIN,CALML5,ANKRD16,FAM208B,SFMBT2,ASB13,TUBAL3,ITIH5,AKR1E2,TAF3,FBXO18,RBM17,UCN3,LOC338588,AKR1CL1,tAKR,LOC399715,FLJ45983,LOC439949,LOC100216001,MIR3155A,LOC100507127,MIR3155B, 3 GDI2,FAM208B,ASB13, 1 10p15.1 0.021704 -13 11 67770619 70421299 69842524 70020966 69399649 70025077 6 CCND1,FGF3,FGF4,FGF19,ANO1,ORAOV1, 1 ANO1, 1 11q13.3 0.00064088 -14 12 68957251 73655363 69164646 69249221 69124408 70167164 16 hsa-mir-1279,CPM,LYZ,MDM2,YEATS4,CCT2,FRS2,CPSF6,SLC35E3,NUP107,RAB3IP,BEST3,LRRC10,MIR1279,MIR3913-2,MIR3913-1, 2 CPM,MDM2, 1 12q15 1.3749e-06 -15 12 1987245 2085166 2060580 2081572 889902 8695310 132 hsa-mir-141,APOBEC1,C1R,C1S,C3AR1,CACNA1C,CCND2,CD4,CD9,CD27,CHD4,ATN1,ENO2,FGF6,FKBP4,FOXM1,GAPDH,GNB3,KCNA1,KCNA5,KCNA6,LAG3,LTBR,NDUFA9,NINJ2,NOP2,NTF3,PTMS,PTPN6,PEX5,RAD52,KDM5A,SCNN1A,SLC2A3,SLC6A12,SLC6A13,VAMP1,TEAD4,TNFRSF1A,TPI1,TULP3,VWF,FGF23,USP5,MLF2,DYRK4,CD163,GDF3,CLSTN3,NCAPD2,LPCAT3,LRRC23,EMG1,LEPREL2,AKAP3,RAD51AP1,TSPAN9,PHB2,ERC1,IFFO1,NECAP1,CLEC4E,GALNT8,GPR162,COPS7A,CLEC4A,ING4,MRPL51,C1RL,TAPBPL,FAM90A1,PLEKHG6,FOXJ2,ITFG2,PRMT8,PARP11,ANO2,C12orf4,C12orf5,LPAR5,WNK1,ADIPOR2,NANOG,WNT5B,CDCA3,C12orf32,NRIP2,RBP5,CCDC77,ACRBP,SPSB2,EFCAB4B,CACNA2D4,CLEC6A,C12orf57,SLC2A14,FBXL14,CLEC4C,ZNF384,DSTNP2,C12orf53,DCP1B,MATL2963,CD163L1,RPL13P5,B4GALNT3,LOC283440,CLEC4D,ACSM4,DPPA3,NANOGNB,LOC389634,MIR141,MIR200C,IQSEC3,ZNF705A,FAM66C,LOC574538,POU5F1P3,FAM86FP,LRTM2,SCARNA12,SCARNA11,FAM138D,LOC678655,SCARNA10,LOC100271702,LOC100288778,LOC100292680,MIR3649,LOC100507424,LOC100652846, 1 DCP1B, 1 12p13.33 0.20449 -16 17 37625623 38369419 37820992 37899688 37816079 37904211 8 ERBB2,GRB7,PNMT,TCAP,STARD3,MIEN1,PGAP3,MIR4728, 8 ERBB2,GRB7,PNMT,TCAP,STARD3,MIEN1,PGAP3,MIR4728, 1 17q12 4.6529e-05 -17 17 27397974 27884697 27684379 27812225 987221 80917016 1386 hsa-mir-3186,hsa-mir-1250,hsa-mir-4316,hsa-mir-636,hsa-mir-635,hsa-mir-548d-2,hsa-mir-634,hsa-mir-4315-2,hsa-mir-633,hsa-mir-21,hsa-mir-301a,hsa-mir-142,hsa-mir-3185,hsa-mir-196a-1,hsa-mir-10a,hsa-mir-1203,hsa-mir-152,hsa-mir-4315-1,hsa-mir-2117,hsa-mir-2909,hsa-mir-632,hsa-mir-365-2,hsa-mir-3184,hsa-mir-144,hsa-mir-1180,hsa-mir-33b,hsa-mir-1288,hsa-mir-548h-3,hsa-mir-744,hsa-mir-4314,hsa-mir-324,hsa-mir-497,hsa-mir-1253,hsa-mir-212,hsa-mir-22,hsa-mir-3183,AANAT,ABR,ACACA,ACADVL,ACCN1,ACLY,ACOX1,ACTG1,ADORA2B,AP2B1,ALDH3A1,ALDH3A2,ALDOC,ALOX12,ALOX12B,ALOX12P2,ALOX15,ALOX15B,AOC2,BIRC5,APOH,ARL4D,ARHGDIA,ARRB2,ASGR1,ASGR2,ASPA,ATP1B2,ATP2A3,ATP5G1,ATP6V0A1,BLMH,BRCA1,C1QBP,FMNL1,CA4,CACNB1,CACNG1,CD7,CD68,CD79B,CDC6,CDC27,CDK3,CHAD,CHD3,CHRNB1,CHRNE,CLTC,CCR7,CNP,COL1A1,COX10,COX11,CPD,CLDN7,CRHR1,CRK,CRYBA1,CSF3,CSH1,CSH2,CSHL1,CSNK1D,SLC25A10,CTNS,CYB561,ACE,DDX5,DHX8,DLG4,DLX3,DLX4,DNAH9,DPH1,DRG2,DUSP3,DVL2,EFNB3,EIF4A1,EIF5A,ENO3,ERBB2,ERN1,ETV4,EVI2A,EVI2B,EVPL,EZH1,BPTF,FASN,FDXR,FGF11,FOXJ1,FOXO3B,FLII,FLOT2,GAST,FZD2,G6PC,GAA,GALK1,GCGR,KAT2A,GFAP,GH1,GH2,GIP,GNGT2,GP1BA,CCR10,UTS2R,GPS1,GPS2,GRB2,GRB7,GRN,GRIN2C,GUCY2D,H3F3B,HCRT,HIC1,HLF,HOXB1,HOXB2,HOXB3,HOXB4,HOXB5,HOXB6,HOXB7,HOXB8,HOXB9,HSD17B1,ICAM2,ICT1,IFI35,IGFBP4,FOXK2,ITGA2B,ITGA3,ITGAE,ITGB3,ITGB4,JUP,KCNJ2,KCNJ12,KCNJ16,KPNB1,KPNA2,KRT9,KRT10,KRT12,KRT13,KRT14,KRT15,KRT16,KRT17,KRT19,KRT31,KRT32,KRT33A,KRT33B,KRT34,KRT35,LASP1,LGALS3BP,LGALS9,LHX1,LIG3,LLGL2,LLGL1,LPO,NBR1,MAFG,MAPT,ADAM11,MEIS3P1,MAP3K3,MEOX1,MFAP4,MLLT6,MNT,MPO,MPP2,MPP3,TRIM37,MYH1,MYH2,MYH3,MYH4,MYH8,MYH10,MYL4,MYO1C,MYO1D,NAGLU,NEUROD2,NF1,NFE2L1,NGFR,NME1,NME2,NMT1,NOS2,NPTX1,NSF,NUP88,OMG,OR1D2,OR3A1,OR3A2,P2RX1,P2RX5,P4HB,PAFAH1B1,PDE6G,PDK2,PECAM1,SERPINF1,PER1,PEX12,PFAS,PFN1,PHB,PITPNA,PLD2,SERPINF2,PMP22,PNMT,SEPT4,POLR2A,MED1,PPY,PRKAR1A,PRKCA,MAPK7,MAP2K3,MAP2K6,PRPSAP1,PRPSAP2,PSMB3,PSMB6,PYY,PSMC5,PSMD3,PSMD11,PSMD12,PYCR1,PCYT2,RAB5C,RAC3,RAD51C,RAD51D,RARA,RCVRN,RFNG,RPA1,RPL19,RPL23A,RPL26,RPL27,RPL38,MRPL12,RPS6KB1,SCN4A,SCO1,CCL1,CCL2,CCL3,CCL3L1,CCL4,CCL5,CCL7,CCL8,CCL11,CCL13,CCL14,CCL15,CCL16,CCL18,CCL23,SDF2,SEC14L1,SECTM1,MAP2K4,SRSF1,SRSF2,SGCA,SGSH,SH3GL1P1,SH3GL1P2,SHBG,SHMT1,SLC2A4,SLC4A1,SLC6A4,SMARCD2,SMARCE1,SUMO2,SOX9,SOX15,SP2,SREBF1,SRP68,SSTR2,STAT3,STAT5A,STAT5B,SUPT4H1,SUPT6H,VAMP2,TADA2A,TBCD,TBX2,HNF1B,MLX,THRA,TIMP2,TK1,TNFAIP1,TOP2A,TOP3A,TP53,DNAJC7,TUBG1,UBB,UBE2G1,UBTF,TRPV1,VTN,WNT3,WNT9B,YWHAE,ZNF18,PCGF2,TRIM25,VEZF1,RNF112,ZNF207,ZNF232,TAF15,RND2,COIL,AKAP1,EPX,AXIN2,OR1A1,OR1D5,OR1E1,OR1E2,OR1G1,OR3A3,PIP4K2B,SLC25A11,SPOP,DOC2B,FOXN1,PPM1D,CNTNAP1,GAS7,DGKE,COPS3,CBX4,TCAP,SCARF1,SKAP1,DNAH17,AOC3,BECN1,KRT38,KRT37,KRT36,TNK1,ABCC3,MYH13,TNFSF13,TNFSF12,RGS9,GALR2,TMEM11,KSR1,CDK5R1,SPHK1,CACNA1G,HAP1,MAP3K14,SOCS3,TM4SF5,SPAG9,SLC13A2,UNC119,USP6,MTMR4,SLC16A6,SLC16A5,SLC16A3,RABEP1,SYNGR2,HGS,KCNAB3,AURKB,TIAF1,NOG,BZRAP1,CYTH1,ZNHIT3,GLP2R,EFTUD2,RPL23,SLC9A3R1,COG1,RECQL5,NTN1,STX8,PIGL,PGS1,TBX4,RPH3AL,FXR2,NPEPPS,MPDU1,GOSR1,SPAG7,CCL4L1,GOSR2,NR1D1,NCOR1,TRAF4,AATK,KIAA0100,ULK2,CCDC144A,ACAP1,TBKBP1,KIAA0195,EIF4A3,PLEKHM1,KIAA0753,MED24,LRRC37A,MRC2,SGSM2,ARHGAP44,HELZ,HS3ST3B1,HS3ST3A1,MED13,HDAC5,TOM1L1,GJC1,TOB1,ALYREF,PSME3,EIF1,NBR2,SLC35B1,DCAF7,CALCOCO2,RAMP2,ABCA10,ABCA9,ABCA8,PEMT,BAIAP2,CLEC10A,ATP5H,HOXB13,VAT1,APPBP2,MYBBP1A,FBXW10,PRPF8,LEPREL4,ST6GALNAC2,HEXIM1,SPAG5,TRIM16,IGF2BP1,GNA13,CCT6B,RAI1,KIF1C,GRAP,SEPT9,CD300C,C1QL1,RUNDC3A,STARD3,CBX1,RAB40B,TLK2,DDX52,DUSP14,KAT7,AKAP10,POLG2,NXPH3,SNF8,SYNRG,CD300A,TMC6,DDX42,GABARAP,CASC3,IKZF3,ZNF652,PPM1E,NLRP1,ARHGEF15,ARSG,EPN2,AZI1,SARM1,RAP1GAP2,CAMTA2,GPATCH8,KDM6B,ZZEF1,GGA3,MPRIP,JMJD6,EXOC7,KIAA0664,SMG6,WSCD1,USP22,CTDNEP1,KCNH4,ABCA6,ABCA5,TNFRSF13B,KCTD2,SUZ12,MMD,PIK3R5,WBP2,CDC42EP4,C17orf81,FAM215A,PPY2,PYY2,SHPK,AIPL1,FSCN2,NOL11,DHRS7B,KRT23,RNF167,TMEM98,POLDIP2,TBC1D29,TANC2,WSB1,NAT9,SENP3,OR1A2,PITPNC1,ERAL1,NARF,AATF,OR4D1,SNORD4B,SNORD4A,SNORA67,SNORD49A,SNORD42B,SNORD42A,PELP1,B9D1,CACNG5,CACNG4,TUBG2,TMEM97,NKIRAS2,CCDC56,GIT1,RANGRF,SAP30BP,PSMC3IP,SNX11,TIMM22,TBX21,NT5C,SOCS7,CDR2L,TAX1BP3,MINK1,GEMIN4,SOST,MED31,DERL2,FAM18B1,GLOD4,MRPS7,YBX2,UTP18,RNFT1,HN1,MYO15A,TUBD1,DCXR,RAPGEFL1,TACO1,ABI3,COPZ2,MRPL27,PIPOX,AMZ2,ARL17A,CRLF3,TRPV2,ANKFY1,ANAPC11,SIRT7,SLC25A39,MRPS23,PTRH2,RASD1,NLK,LUC7L3,HIGD1B,CDK12,INPP5K,KRT20,NLE1,FAM64A,SDK2,XAF1,FNDC8,FAM20A,C17orf59,MBTD1,BCAS3,TMEM104,CWC25,ALKBH5,RNF43,TTC19,MKS1,LINC00483,C17orf80,CCDC40,EPN3,WIPI1,GPR172B,LRRC37A4,MED9,SLFN12,WRAP53,PNPO,KLHL11,RNMTL1,SMG8,SLC47A1,TMEM100,VPS53,RHOT1,RSAD1,C17orf79,LRRC59,C17orf85,MSX2P1,NPLOC4,TSR1,C17orf63,PRR11,ADAP2,ST6GALNAC1,UTP6,TEX2,GSDMB,GPRC5C,TEX14,WDR45L,DHX33,CA10,NT5M,ATXN7L3,C17orf48,CCDC47,PLSCR3,PLXDC1,LYZL6,CBX8,ZNF286A,ZNF287,MIF4GD,INTS2,CASKIN2,RPTOR,NUFIP2,ZNF624,TAOK1,NLGN2,BAHCC1,USP36,ARHGAP23,PHF12,ZBTB4,RNF213,TNRC6C,CXCL16,TRAPPC1,PCTP,SCPEP1,ALOXE3,SLC25A19,ELAC2,FKBP10,SRR,UBE2O,HEATR6,DUS1L,FN3K,XYLT2,C17orf75,NXN,DNAI2,TEKT3,SMURF2,ENGASE,SPATA20,MRPL38,UBE2Z,WNK4,C17orf53,MIS12,C17orf39,ASPSCR1,METTL16,TMUB2,CARD14,DHX58,PHF23,MMP28,DHRS11,MFSD11,PRR15L,C17orf62,ARMC7,CHMP6,RHBDF2,DHX40,FN3KRP,C17orf101,TEFM,ZNF750,ACBD4,FAM57A,DCAKD,GGNBP2,NUP85,ATAD5,MRM1,PLEKHH3,MYO15B,FAM106A,CTC1,DBF4B,MYO19,ACSF2,C17orf70,CDK5RAP3,SP6,COASY,SRCIN1,AARSD1,LIMD2,KCNH6,FAM117A,NDEL1,VMP1,KRTAP1-3,KRTAP1-1,KRTAP9-9,KRTAP4-6,KRTAP2-1,PITPNM3,LRRC48,TMEM93,TTC25,RILP,TEKT1,KRTAP4-12,RAB34,TSPAN10,KRTAP1-5,KRTAP3-1,KRTAP3-2,KRTAP9-2,KRTAP9-3,KRTAP9-8,KRTAP17-1,GSG2,BRIP1,MYCBPAP,QRICH2,NSRP1,PPP1R1B,TBC1D3F,ZMYND15,CAMKK1,RPAIN,RNF135,MIEN1,MRPL45,VPS25,TMEM107,LSMD1,TMEM101,PRAC,RAB11FIP4,NEURL4,GHDC,KRTAP4-4,ZNF594,KIF2B,HES7,USP32,PPP1R9B,SPATA22,CBX2,MGC12916,TXNDC17,FAM104A,CORO6,TNS4,FBXL20,MIR22HG,MGC16275,KRTAP9-4,KRTAP4-1,KRTAP4-5,KRTAP4-3,KRTAP4-2,KRTAP3-3,KRTAP2-4,FBF1,UNK,SSH2,TP53I13,IFT20,LRRC46,SCRN2,AOC4,CEP95,TRIM47,ANKRD40,ZNF830,SLFN11,RASL10B,ATPAF2,TMEM88,STRADA,C17orf72,SPECC1,G6PC3,ASB16,MAFG-AS1,OTOP2,PGAP3,MYOCD,PIGS,TTYH2,HSPB9,ORMDL3,CDRT7,CDRT15P1,SAT2,PLCD3,SLC46A1,TMEM106A,LRRC37B,CYGB,RNF157,SMYD4,OSBPL7,C1QTNF1,NT5C3L,ABHD15,TLCD1,PPP1R27,CNTROB,FTSJ3,RFFL,RPL29P2,METTL23,HSF5,OR4D2,MSI2,SLC38A10,CANT1,USH1G,CD300LB,KIF19,ZPBP2,CYB5D1,OVCA2,USP43,KRBA2,C17orf64,C17orf46,HEXIM2,LSM12,CCDC43,CNTD1,TMEM132E,WFIKKN2,FLJ40194,B4GALNT2,SPACA3,SGK494,SEZ6,ANKRD13B,SLC43A2,CYB5D2,C17orf49,ZFP3,GGT6,SPNS2,C17orf57,MRPL10,WDR81,TBC1D16,AFMID,GJD3,KRT222,KRT40,C17orf76-AS1,ZSWIM7,SMCR7,SLC5A10,DYNLL2,SMCR5,SMCR8,SMCR9,MGAT5B,TOM1L2,C17orf56,B3GNTL1,RBFOX3,CD300LF,C17orf77,DNAH2,RTN4RL1,TCAM1P,EFCAB3,SLC47A2,CDRT15,WDR16,CCDC42,PIK3R6,ODF4,C17orf50,SLFN13,SLC35G3,UNC45B,LOC146880,CD300LG,KIF18B,RUNDC1,EME1,TMEM199,PROCA1,DHRS13,KCTD11,C17orf69,LOC147093,NOTUM,TMC8,TRIM16L,LRRC37BP1,WIPF2,KRT25,TMEM99,ANKFN1,MARCH10,MFSD6L,SLFN5,NAGS,FAM134C,TMEM92,PHOSPHO1,RHBDL3,TRPV3,SLC16A11,FBXO39,IMP5,KRT28,USP32P1,KRT24,CEP112,DHRS7C,FAM18B2,CENPV,FLCN,PLD6,ARHGAP27,ZNF385C,SAMD14,C17orf108,SLC16A13,C17orf74,STRA13,LRRC45,SLC39A11,AMZ2P1,TRIM65,UNC13D,RDM1,SPNS3,USP32P2,GAS2L2,STH,MTVR2,STXBP4,LOC253962,TBC1D28,C17orf61,TAC4,MYADML2,BCL6B,CDRT15L2,C17orf103,NPB,C17orf66,LINC00469,FADS6,C17orf28,TSEN54,FAM100B,TMEM235,CCDC57,HEXDC,LOC284009,VMO1,C17orf58,MILR1,LOC284023,LINC00324,FLJ34690,CDRT4,CCDC144B,KIAA1267,C17orf105,FAM171A2,C17orf104,TTLL6,LOC284080,C17orf47,KRT18P55,NEK8,PIGW,C17orf78,LOC284100,CISD3,GSDMA,SLC13A5,TMEM102,KRT42P,PTRF,FAM27L,FLJ36000,SLC26A11,ENDOV,GDPD1,C17orf89,LINC00482,TMEM105,LGALS9B,METRNL,TUSC5,KLHL10,RAB37,LOC339166,TMEM95,METTL2A,CCDC144NL,C17orf65,C17orf67,ENPP7,C17orf90,CCDC137,ARL16,LOC339240,C17orf51,MSL1,CD300E,SMTNL2,ALOX15P1,NACA2,KRT27,SLFN14,FLJ43826,STAC2,OTOP3,SKA2,CCL14-CCL15,CCDC144C,FAM195B,GPR142,TBC1D26,ZACN,KRT26,FAM101B,HOXB13-AS1,HILS1,CDRT1,SPEM1,EFCAB5,LRRC37A3,RNF126P1,GLTPD2,INCA1,SCIMP,C17orf100,SPDYE4,TMEM220,SHISA6,FAM211A,TMIGD1,CCL4L2,C17orf98,LOC388387,CCDC103,RPRML,YPEL2,C17orf82,BTBD17,AATK-AS1,FLJ43681,OR3A4P,ARL5C,KRT39,SLC25A35,MYO18A,C17orf97,MED11,KRT16P2,GRAPL,C17orf102,LOC400604,KCNJ2-AS1,LINC00511,LOC400620,FLJ45079,TEX19,MGC57346,CUEDC1,LOC404266,MIR10A,MIR132,MIR142,MIR144,MIR152,MIR193A,MIR195,MIR196A1,MIR21,MIR212,MIR22,MIR301A,TNFSF12-TNFSF13,TBC1D3B,TBC1D3C,CCL3L3,MXRA7,RNASEK,TBC1D3P5,SUZ12P,LOC440434,GPR179,TBC1D3P2,PLEKHM1P,LOC440461,FLJ90757,MIR324,MIR338,LRRC37A2,FBXO47,MIR423,ARGFXP2,DPRXP4,MIR451A,MIR497,SNORA21,CPSF4L,C17orf109,SLC35G6,RNF222,PIRT,LOC644172,LOC644246,CDRT15P2,FAM83G,KRT16P3,EVPLL,LOC645638,SEBOX,SNORA48,SNORD10,OR1D4,KRTAP4-11,MRPL45P2,TBC1D3P1-DHX40P1,LOC653653,TBC1D3G,LGALS9C,NME1-NME2,LINC00338,SCARNA20,SCARNA21,SCARNA16,SNORA76,SNORD1A,SNORD1B,SNORD1C,SNORA59B,SNORA59A,SNORD7,SNORD49B,SNORD65,SNORD91A,SNORD91B,SNORD104,MIR33B,MIR632,MIR634,MIR635,MIR636,MIR657,BHLHA9,TLCD2,KRTAP4-8,KRTAP2-2,KRTAP9-1,LOC728392,NSFP1,FLJ45513,ZNF286B,LOC729683,TBC1D3,TBC1D3H,LOC730755,PRCD,MIR454,SNORD124,SNORA38B,MIR744,MIR365B,LOC100128288,LOC100128977,FAM106CP,LOC100130148,C17orf107,LOC100130581,C17orf110,LOC100130950,LOC100131096,LOC100131347,CD300LD,DBIL5P,KRTAP4-9,KRTAP4-7,LOC100133991,KCNJ18,TEN1,C17orf99,C17orf96,LOC100190938,LOC100287042,LOC100289255,LOC100294362,MIR1288,MIR1253,MIR1203,MIR1250,MIR1180,LOC100306951,MIR2117,MIR3183,MIR4316,MIR3065,MIR548W,MIR3186,MIR4315-2,MIR2909,MIR3185,MIR4314,MIR3184,MIR4315-1,MTRNR2L1,LOC100499466,LOC100499467,MIR3614,MIR3678,MIR3615,MIR3676,LOC100505576,LRRC3C,KRTAP16-1,LOC100505782,ARL17B,LOC100506388,SPAG5-AS1,LOC100506650,AA06,LOC100506713,SLFN12L,MIR497HG,LOC100506779,LOC100507218,LOC100507246,LOC100507351,LOC100507410,TEN1-CDK3,RAD51L3-RFFL,RNASEK-C17ORF49,C17orf61-PLSCR3,FAM18B2-CDRT4,SENP3-EIF4A1,P2RX5-TAX1BP3,MIR4523,MIR4731,MIR4728,MIR4726,MIR4739,MIR4734,MIR4729,MIR4737,MIR4736,MIR4724,MIR4733,MIR451B,MIR4522,MIR4738,MIR4740,MIR4524A,MIR4730,MIR4732,MIR3064,MIR4723,MIR4520A,MIR4521,MIR5047,MIR4727,MIR4725,MIR4520B,LOC100653515,RAB34, 2 TAOK1,MIR4523, 1 17q11.2 0.049308 -18 17 19152102 20252479 19469616 19712254 18860763 25270517 36 hsa-mir-1180,ALDH3A1,ALDH3A2,KCNJ12,MFAP4,MAPK7,MAP2K3,RNF112,TMEM11,ULK2,GRAP,AKAP10,EPN2,USP22,DHRS7B,B9D1,SLC47A1,SPECC1,SLC5A10,SLC47A2,CDRT15L2,C17orf103,FAM27L,FLJ36000,LGALS9B,CCDC144NL,C17orf51,CCDC144C,GRAPL,FAM83G,KRT16P3,SNORA59B,SNORA59A,KCNJ18,MIR1180,MTRNR2L1, 5 ALDH3A1,ALDH3A2,ULK2,SLC47A1,SLC47A2, 1 17p11.2 0.16968 -19 17 30368320 30974499 30548440 30773477 30363868 30947483 12 hsa-mir-632,MYO1D,PSMD11,SH3GL1P1,ZNF207,CDK5R1,RHOT1,C17orf75,LRRC37B,RHBDL3,ARGFXP2,MIR632, 7 hsa-mir-632,PSMD11,ZNF207,RHOT1,C17orf75,RHBDL3,MIR632, 1 17q11.2 0.062699 -20 19 38031904 39807224 39358366 39416030 39353061 39416409 6 NFKBIB,MRPS12,SIRT2,SARS2,RINL,LOC643669, 5 NFKBIB,SIRT2,SARS2,RINL,LOC643669, 1 19q13.2 0.00042306 diff --git a/core/src/test/resources/data_GISTIC_GENE_DELS.txt b/core/src/test/resources/data_GISTIC_GENE_DELS.txt deleted file mode 100755 index 3c2bcb7bbdc..00000000000 --- a/core/src/test/resources/data_GISTIC_GENE_DELS.txt +++ /dev/null @@ -1,21 +0,0 @@ -index chromosome region_start region_end peak_start peak_end enlarged_peak_start enlarged_peak_end n_genes_in_region genes_in_region n_genes_in_peak genes_in_peak n_genes_on_chip genes_on_chip top 3 amp cytoband q_value -1 2 141647612 142557853 140981064 142891872 139658541 143627097 1 LRP1B, 1 LRP1B, 0 2q22.1 2.49e-07 -2 2 231156196 236898967 233734185 234685527 219433597 242476062 245 hsa-mir-3133,hsa-mir-149,hsa-mir-4269,hsa-mir-562,hsa-mir-1471,hsa-mir-1244-1,hsa-mir-4268,hsa-mir-3132,hsa-mir-153-1,hsa-mir-3131,AGXT,ALPI,ALPP,ALPPL2,KIF1A,BCS1L,BOK,CHRND,CHRNG,COL4A3,COL4A4,COL6A3,CRYBA2,CYP27A1,DES,DTYMK,EPHA4,ACSL3,GBX2,GPC1,GPR35,HDLBP,AGFG1,DNAJB2,HTR2B,SP110,IHH,INHA,INPP5D,IRS1,KCNJ13,NCL,NDUFA10,SEPT2,NEU2,NPPC,PAX3,PDCD1,PDE6D,SERPINE2,PPP1R7,PSMD1,PTMA,PTPRN,SNORD20,SAG,CCL20,SLC4A3,SP100,SPP2,TUBA4A,WNT6,ZNF142,SCG2,CUL3,DGKD,STK16,PER2,CDK5R2,RQCD1,LRRFIP1,GPR55,TRIP12,ECEL1,EIF4E2,TTLL4,HDAC4,FARP2,FARSB,ABCB6,ARL4C,RAMP1,SPEG,NMUR1,STK25,COPS8,CAPN10,SP140,PASK,ATG4B,OBSL1,DNPEP,SH3BP4,KCNE4,NGEF,SNORD82,SNED1,GIGYF2,TRAF3IP1,CNPPD1,STK36,GMPPA,ANO7,PRLH,THAP4,ANKMY1,SCLY,ASB1,CAB39,PRKAG3,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,FEV,PID1,ATG16L1,ANKZF1,USP40,HJURP,HES6,ACCN4,DOCK10,C2orf83,MFF,CXCR7,RNPEPL1,WDFY1,NYAP2,GAL3ST2,RAB17,RNF25,COPS7B,MRPL44,TRPM8,ATG9A,MLPH,FAM134A,GLB1L,CHPF,IQCA1,NHEJ1,FAM124B,TM4SF20,C2orf54,TUBA4B,ARMC9,EFHD1,SPHKAP,WNT10A,SLC19A3,ILKAP,ITM2C,RHBDD1,ING5,PLCD4,MGC16025,DNER,B3GNT7,SP140L,STK11IP,MOGAT1,AGAP1,TWIST2,DIS3L2,NEU4,AP1S3,SGPP2,SPATA3,TMEM198,ZFAND2B,FBXO36,MTERFD2,UBE2F,OTOS,MYEOV2,OR6B3,LOC150935,LOC151171,LOC151174,CCDC140,SLC23A3,LOC151300,SLC16A14,LOC151475,LINC00471,LOC151484,MSL3P1,WDR69,C2orf57,TIGD1,LOC200772,CCDC108,C2orf72,CXXC11,DUSP28,ESPNL,ECEL1P2,LOC348761,RBM44,AQP12A,KLHL30,RESP18,C2orf82,OR6B2,ASB18,FLJ43879,MIR149,MIR153-1,DNAJB3,MIR375,LOC643387,PRR21,LOC646736,PRSS56,AQP12B,SNORA75,SCARNA6,SCARNA5,D2HGDH,LOC728323,LOC100129175,PP14571,LOC100286922,MIR1471,MIR1244-1,BOK-AS1,MIR1244-3,MIR1244-2,MIR3131,MIR4268,MIR3132,MIR4269,UBE2F-SCLY,MIR4439,MIR4777,MIR2467,MIR4440,MIR4786,MIR4441, 21 INPP5D,NEU2,SAG,DGKD,NGEF,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,ATG16L1,USP40,C2orf82,DNAJB3,SCARNA6,SCARNA5,LOC100286922, 0 2q37.1 0.014805 -3 2 212815115 212815297 212238982 213405276 484222 242476062 1516 hsa-mir-3133,hsa-mir-149,hsa-mir-4269,hsa-mir-562,hsa-mir-1471,hsa-mir-1244-1,hsa-mir-4268,hsa-mir-3132,hsa-mir-153-1,hsa-mir-3131,hsa-mir-26b,hsa-mir-548f-2,hsa-mir-1302-4,hsa-mir-2355,hsa-mir-3130-4,hsa-mir-3129,hsa-mir-1245,hsa-mir-561,hsa-mir-1258,hsa-mir-3128,hsa-mir-1246,hsa-mir-10b,hsa-mir-933,hsa-mir-128-1,hsa-mir-663b,hsa-mir-1302-3,hsa-mir-4267,hsa-mir-4266,hsa-mir-4265,hsa-mir-3127,hsa-mir-4264,hsa-mir-1285-2,hsa-mir-3126,hsa-mir-216b,hsa-mir-559,hsa-mir-558,hsa-mir-4263,hsa-mir-1301,hsa-mir-3125,hsa-mir-4262,hsa-mir-548s,hsa-mir-4261,AAMP,ACADL,ACP1,ACTG2,ACVR1,ACVR2A,ACYP2,ADCY3,ADD2,ADRA2B,AGXT,ALK,ALPI,ALPP,ALPPL2,BIN1,ANXA4,AOX1,APOB,RHOB,RND3,ATIC,ATP5G3,ATP6V1B1,KIF1A,AUP1,BARD1,BCS1L,BMPR2,BOK,ZFP36L2,BUB1,CACNB4,CAD,CALM2,CAPG,CASP8,CASP10,CCNT2,CD8A,CD8B,CD28,CENPA,CHN1,CHRNA1,CHRND,CHRNG,CLK1,CNGA3,COL3A1,COL4A3,COL4A4,COL5A2,COL6A3,COX5B,CPS1,CREB1,ATF2,CRYBA2,CRYGA,CRYGB,CRYGC,CRYGD,CTLA4,CTNNA2,CYP1B1,CYP27A1,DARS,DBI,DCTN1,DDX1,DES,DGUOK,LOC1720,DLX1,DLX2,DNAH6,DYNC1I2,DNMT3A,DOK1,DPP4,DTNB,DTYMK,DUSP2,E2F6,EEF1B2,EGR4,EMX1,EN1,EPAS1,EPHA4,ERBB4,ERCC3,FABP1,ACSL3,FAP,EFEMP1,FHL2,FKBP1B,FN1,FOSL2,FRZB,FSHR,FTH1P3,GAD1,GALNT3,GBX2,GCG,GCKR,MSTN,GFPT1,GGCX,GLI2,GLS,GPC1,GPD2,GPR1,GPR17,GPR35,GPR39,GRB14,MSH6,GTF3C2,GYPC,HADHA,HADHB,HDLBP,HK2,HNMT,TLX2,HOXD1,HOXD3,HOXD4,HOXD8,HOXD9,HOXD10,HOXD11,HOXD12,HOXD13,HPCAL1,AGFG1,DNAJB2,HSPD1,HSPE1,FOXN2,HTR2B,ID2,IDH1,SP110,IGFBP2,IGFBP5,IHH,IL1A,IL1B,IL1R1,IL1RN,CXCR1,CXCR2,CXCR2P1,INHA,INHBB,INPP1,INPP4A,INPP5D,ITGA6,IRS1,ITGA4,ITGAV,ITGB6,KCNF1,KCNJ3,KCNJ13,KCNK3,KCNS3,KHK,KIF3C,KIF5C,AFF3,LCT,LHCGR,LIMS1,LRP2,LTBP1,LY75,EPCAM,MXD1,MAL,MAP2,MAT2A,MATN3,MCM6,MDH1,MEIS1,MGAT5,MPV17,MYO1B,MSH2,MTIF2,MYCN,MYL1,MYO7B,NAB1,NCL,NEB,NDUFA10,NDUFB3,NDUFS1,SEPT2,NEU2,NEUROD1,NFE2L2,NPAS2,NPHP1,NPPC,NR4A2,ODC1,ORC2,ORC4,OTX1,REG3A,PAX3,PCBP1,PDCD1,PDE1A,PDE6D,PDK1,PEX13,VIT,SERPINE2,PIGF,PLCL1,PLEK,PLGLB2,PLGLB1,PMS1,POLR2D,POMC,POU3F3,PPM1B,PPM1G,PPP1CB,PPP1R7,PPP3R1,PRKCE,EIF2AK2,PROC,PSMD1,PTH2R,PTMA,PTPN4,PTPRN,RAB1A,RALB,RANBP2,RBMS1,REL,REG1A,REG1B,REG1P,SNORD20,RPE,RPL31,RPL37A,RPS7,RPS27A,RRM2,RTKN,SAG,SCN1A,SCN2A,SCN3A,SCN7A,SCN9A,SCTR,CCL20,SDC1,SRSF7,SFTPB,SIX3,SLC4A3,SLC1A4,SLC3A1,SLC8A1,SLC9A2,SLC11A1,SLC20A1,SNRPG,SOS1,SOX11,SP3,SP100,SPAST,SPP2,SPR,SPTBN1,SRD5A2,SSB,SSFA2,STAT1,STAT4,STRN,SULT1C2,ADAM17,TACR1,GCFC2,TFPI,TGFA,TIA1,TNFAIP6,TNP1,TNS1,TPO,TSN,TSSC1,TTN,TUBA4A,SUMO1,UCN,UGP2,VIL1,VRK2,VSNL1,WIPF1,WNT6,XDH,XPO1,XRCC5,ZAP70,ZNF2,ZNF142,SLC30A3,PXDN,ALMS1,MOGS,RNF103,PAX8,IL1R2,MALL,CXCR4,FZD5,SCG2,DYSF,FZD7,SDPR,NCK2,DUSP11,CUL3,KLF11,MAP4K3,PKP4,HAT1,DGKD,AGPS,PRKRA,STK16,SLC25A12,KLF7,ABCB11,NCOA1,VAMP8,MARCO,B3GALT1,ADAM23,SUCLG1,IL18RAP,IL1RL2,IL18R1,NRP2,CFLAR,ASAP2,PER2,ST3GAL5,SLC5A6,DDX18,EIF2B4,CDK5R2,KYNU,TAF1B,NAT8,NMI,RQCD1,COX7A2L,TMSB10,IL1RL1,LRRFIP1,STK17B,ITGB1BP1,GPR55,TRIP12,GTF3C3,PPIG,NRXN1,OTOF,CIAO1,TGFBRAP1,HS6ST1,CRIPT,ECEL1,MAP4K4,EIF2AK3,EIF4E2,ROCK2,CHST10,TP53I3,CIR1,MRPL33,BRE,PREPL,CYTIP,FEZ2,GCC2,TTLL4,SOCS5,EIF5B,GREB1,BZW1,USP34,LAPTM4A,HDAC4,RNF144A,SNX17,SERTAD2,MRPL19,ZEB2,FARP2,TLK1,SUPT7L,CD302,ARHGAP25,TANK,BCL2L11,FARSB,ABCB6,ACTR3,ACTR2,ARPC2,PREB,ACTR1B,ARL4C,LRPPRC,PDIA6,ABI2,CEBPZ,DHRS9,TXNDC9,MPHOSPH10,CALCRL,PSMD14,STAM2,RAMP1,SPEG,LANCL1,NMUR1,SMYD5,KBTBD10,MYCNOS,C1D,MERTK,UBE2E3,STK25,SEMA4F,CCT7,CCT4,GNLY,CDC42EP3,STAMBP,TGOLN2,MTX2,CGREF1,B3GNT2,USP39,TBR1,SIX2,MAP3K2,NCKAP1,VAMP5,MTHFD2,ARID5A,PROKR1,RAB10,EDAR,COPS8,GPR75,YWHAQ,IMMT,SNRNP27,GTF2A1L,STON1,RAPGEF4,EMILIN1,CAPN10,TBC1D8,RABL2A,GALNT5,NXPH2,GPR45,SP140,MGAT4A,GPN1,IKZF2,COBLL1,AAK1,FASTKD2,MAPRE3,PLA2R1,RAB3GAP1,RPIA,SLC4A1AP,EFR3B,SNRNP200,MYT1L,WDR43,LPIN1,CEP68,PASK,UBXN4,ATG4B,PSME4,EXOC6B,EHBP1,SATB2,CLASP1,OBSL1,PUM2,NCAPH,RHOQ,SF3B1,HAAO,TMEM131,R3HDM1,DNPEP,PSD4,WBP1,NTSR2,TMEFF2,SH3BP4,PRKD3,KCNE4,RASGRP3,NGEF,QPCT,GCA,VAX2,SNORD82,MOB4,POLR1A,CNRIP1,FAM98A,PNKD,UNC50,SNED1,GORASP2,SPATS2L,RAB11FIP5,GIGYF2,EPC2,TRAF3IP1,ABCA12,IFT172,ARL5A,HIBCH,PTPN18,CNNM4,CNNM3,IL36RN,SH3YL1,SNORD53,SNORD51,CNPPD1,STK36,IL36B,IL37,IL36A,SULT1C4,NFU1,ERLEC1,MMADHC,BMP10,ZNF638,STK39,HTRA2,EML4,TRIB2,CPS1-IT1,METTL5,LGALSL,OLA1,C2orf27A,GRHL1,TFCP2L1,ICOS,GMPPA,NRBP1,BAZ2B,SLC40A1,KCNIP3,EHD3,SMARCAL1,CD207,ITSN2,ANO7,ARHGEF4,PDE11A,TPRKB,FAHD2A,PRLH,WDPCP,MEMO1,THAP4,TRAPPC12,ASB3,INSIG2,CRIM1,ANKRD39,FAM178B,RNF181,MRPL30,DNAJC27,ANKMY1,KRCC1,MRPL35,C2orf28,PCYOX1,GULP1,REV1,NAT8B,SCLY,VPS54,NBAS,LIPT1,NOP58,DYNC2LI1,SF3B14,YPEL5,CHMP3,FKBP7,ASB1,CPSF3,CAB39,ZAK,BCL11A,LRP1B,PRKAG3,PPIL3,SNTG2,DNAJC10,ATAD2B,ETAA1,HEATR5B,CCDC93,ASNSD1,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,FEV,AFTPH,MFSD6,TMEM214,RETSAT,INO80D,SEMA4C,C2orf18,C2orf42,TRMT61B,PID1,PTCD3,PLEKHB2,ATG16L1,FANCL,SRBD1,FIGN,ANKZF1,RIF1,USP40,MOB1A,STEAP3,ASXL2,ADI1,THNSL2,ACOXL,WDR33,HJURP,STRADB,C2orf56,HES6,ACCN4,C2orf29,NAGK,DOCK10,TTC27,SMPD4,TMEM127,PRPF40A,SLC30A6,IWS1,LIMS2,KANSL3,MREG,CCDC88A,WDR12,MBD5,KDM3A,ALLC,PECR,ARHGAP15,ZC3H15,CFC1,DNAH7,GKN1,IL36G,RPRM,CYP26B1,POLE4,KCNK12,UGGT1,KCMF1,DPYSL5,PNO1,STARD7,C2orf83,MFF,RPL23AP32,CXCR7,RNPEPL1,RTN4,TRIM54,PELI1,SLC39A10,TTC7A,SMEK2,SLC4A10,CYP20A1,SPC25,BIRC6,ERMN,KIDINS220,MTA3,HECW2,WDR35,MARCH4,WDFY1,NYAP2,DPP10,RDH14,EPB41L5,ALS2,ZDBF2,USP37,CWC22,ANKRD36B,G6PC2,SLC4A5,CTDSP1,NLRC4,MPP4,SLC5A7,NIF3L1,AGBL5,C2orf43,THADA,PCGEM1,RBKS,GAL3ST2,TMBIM1,IFIH1,OSGEPL1,ATL2,ABCG5,ABCG8,RAB17,RNF25,HS1BP3,GMCL1,TTC31,ANAPC1,COPS7B,RMND5A,FNDC4,MARCH7,OBFC2A,PAPOLG,MRPS9,MRPS5,REEP1,RAPH1,CDK15,TMEM237,NBEAL1,CFLAR-AS1,MRPL44,SOWAHC,PLEKHA3,TRAK2,BOLL,COLEC11,PDCL3,TRPM8,ATG9A,C2orf49,MLPH,TMEM185B,FAM134A,CENPO,OR7E91P,GLB1L,C2orf47,SPAG16,CHPF,SAP130,GALNT14,SCRN3,CCDC121,FASTKD1,SMC6,GTDC1,CLIP4,IQCA1,ALS2CR8,TTC21B,CAMKMT,METTL8,GEMIN6,NHEJ1,FAM124B,TM4SF20,CYBRD1,C2orf54,NOL10,ANKRD53,CSRNP3,PGAP1,LRRTM4,DCAF17,TUBA4B,MZT2B,YSK4,UXS1,FBXO11,ARMC9,COQ10B,SLC35F5,EFHD1,C2orf44,SPHKAP,WNT10A,SLC19A3,TSGA10,THSD7B,THUMPD2,TMEM177,KIAA1715,ILKAP,FAM49A,LMAN2L,LBH,TMEM163,ITM2C,TCF7L1,INO80B,AMMECR1L,CDCA7,WDR54,ZRANB3,RAB6C,WDR75,FAM161A,FAM176A,ANTXR1,POLR1B,ELMOD3,RGPD5,C2orf16,RHBDD1,CHCHD5,YIPF4,PRADC1,C2orf88,ING5,CCDC115,MKI67IP,C2orf40,ZNF512,ZC3H8,KIAA1841,ST6GAL2,IL1F10,DPY30,MCEE,LOXL3,ABHD1,PCGF1,DDX11L2,MFSD9,PLCD4,SFT2D3,CCDC142,ZNF514,FAM136A,TMEM87B,ATOH8,LOC84931,MGC16025,TANC1,EPT1,LBX2,PNPT1,KCNH7,FER1L5,MCFD2,ATP6V1E2,LOC90499,CCDC74A,LOC90784,DHX57,LOC91149,SESTD1,CCDC74B,PKDCC,ANKRD44,RSAD2,ZNF804A,TTC30A,DAPL1,CAPN13,TMEM169,DNER,CCDC164,IMP4,HNRPLL,MARS2,B3GNT7,NT5C1B,NEURL3,SP140L,SFXN5,ORMDL1,LIMS3,LINC00152,TUBA3E,CCDC104,TEX261,TUBA3D,STK11IP,FMNL2,CCDC85A,GALNT13,KLHL29,OSBPL6,NOSTRIN,DIRC1,WDR92,MOGAT1,LYPD1,MRPL53,AGAP1,TWIST2,PARD3B,RPL23AP7,PPP1R21,C2orf89,TMEM150A,NUP35,XIRP2,TYW5,NMS,LYG1,MITD1,DIS3L2,CMPK2,MBOAT2,CNTNAP5,TMEM18,FBLN7,NEU4,RBM45,C2orf73,TRIM43,BBS5,C2orf77,ACMSD,ICA1L,FAM168B,CIB4,REG3G,RFTN2,C2orf63,PLEKHH2,AP1S3,C2orf76,SGPP2,ACVR1C,OSR1,TTC32,UBR3,KCTD18,ALS2CR12,ZNF513,SPATA3,LYPD6,LYPD6B,GALM,TMEM198,ZFAND2B,TMEM178,CPO,MDH1B,C2orf50,PQLC3,TMEM182,AHSA2,FBXO36,MTERFD2,CCDC148,C2orf65,MYO3B,TMEM37,UBE2F,DUSP19,TTL,CKAP2L,CBWD2,TEKT4,LOC150527,FLJ32063,LOC150568,SMYD1,C2orf15,LOC150622,OTOS,MYEOV2,OR6B3,COMMD1,PROM2,ANKAR,FBXO41,TTC30B,GPAT2,ITPRIPL1,LOC150776,WTH3DI,FAM117B,TCF23,LOC150935,FAM59B,PUS10,PKI55,LINC00309,LOC151009,SEPT10,C2orf67,PLB1,ZSWIM2,ZNF385B,LOC151171,LOC151174,ARL6IP6,METTL21A,CCNYL1,KLHL23,SULT1C2P1,PPP1R1C,SGOL2,ALS2CR11,SLC38A11,CCDC140,SLC23A3,LOC151300,GPBAR1,FAHD2B,MYADML,FAM84A,FAM82A1,GDF7,SLC16A14,LOC151475,LINC00471,LOC151484,MSL3P1,ASPRV1,WDSUB1,UPP2,LOC151534,GPR155,WDR69,LONRF2,CCDC138,GPR113,C2orf57,OXER1,FAM179A,FAM171B,C1QL2,UBXN2A,CLEC4F,DQX1,KCNG3,CYS1,FOXD4L1,PCDP1,VWA3B,CREG2,ALMS1P,TET3,GKN2,C2orf51,ANKRD23,APLF,PIKFYVE,KRTCAP3,LOC200726,TMEM17,SPRED2,TIGD1,LOC200772,FAM123C,LINC00116,C2orf69,HNRNPA3,SPDYA,ATP6V1C2,RNASEH1,LCLAT1,CCDC75,CERS6,METAP1D,LOC254128,LYG2,CCDC108,C2orf72,SH2D6,LOC284950,CCDC150,RNF149,LOC284998,LOC285000,FAM150B,CCDC141,LOC285033,LINC00486,C2orf61,LOC285074,LOC285084,CXXC11,LOC285103,DNAJC5G,IAH1,FLJ33534,CYP1B1-AS1,FAM126B,UNC80,RUFY4,PLGLA,RGPD4,DUSP28,STON1-GTF2A1L,SPOPL,MLK7-AS1,CYP27C1,ESPNL,C2orf70,C2orf53,LOC339788,LINC00299,LOC339803,C2orf74,LOC339807,LOC339822,MSGN1,C2orf55,FIGLA,NOTO,NCKAP5,FOXI3,EVX2,CDKL4,PRORSD1P,AOX2P,SH3RF3,GPR148,ECEL1P2,LRRTM1,GEN1,C2orf48,FONG,LOC348761,PFN4,LOC375190,LOC375196,ANKRD36,WASH2P,RBM43,LOC375295,CERKL,C2orf62,RBM44,AQP12A,ZC3H6,KLHL30,LOC386597,MFSD2B,C2orf71,LOC388942,LOC388946,LOC388948,TSPYL6,C2orf78,BOLA3,C2orf81,FUNDC2P2,C2orf68,SLC9A4,LOC389023,LOC389033,LOC389043,SP5,PLEKHM3,C2orf80,RESP18,C2orf82,OR6B2,PTRHD1,SULT6B1,DYTN,LOC400940,LINC00487,FLJ12334,LOC400950,UNQ6975,EML6,FLJ30838,FLJ16341,LOC400958,PCBP1-AS1,PAIP2B,RGPD1,FLJ42351,LOC401010,DKFZp686O1327,LOC401022,FSIP2,C2orf66,ASB18,FLJ43879,VWC2L,MIR10B,MIR128-1,MIR149,MIR153-1,MIR216A,MIR217,MIR26B,C2orf27B,DNAJB3,ASTL,CAPN14,ACTR3BP2,LOC440894,LOC440895,LOC440900,LOC440905,LOC440910,POTEKP,LOC440925,LOC442028,SULT1C3,POTEE,COA5,PHOSPHO2,CHAC2,MIR375,DFNB59,LOC541471,LOC554201,ANKRD30BL,FBXO48,SNORA41,FAM110C,LOC643387,PRR21,LOC644838,GGT8P,ANKRD36BP2,LOC645949,LOC646324,LOC646736,LOC646743,PRSS56,LOC647012,C2orf84,TRIM43B,CFC1B,AQP12B,RGPD3,MZT2A,SNORA75,LOC654342,FAM138B,LOC654433,SCARNA6,SCARNA5,SNORD11,SNORD70,SNORD89,SNORD92,SNORD94,MIR558,MIR559,MIR561,RGPD8,LOC727982,D2HGDH,LOC728323,POTEF,LOC728537,LOC728730,PABPC1P2,LOC728819,LOC729121,ANKRD20A8P,LOC729234,RAD51AP2,RGPD6,DIRC3,DNAJC27-AS1,RGPD2,MORN2,LOC730811,RFX8,SNORD11B,SNORA36C,SNORA70B,MIR216B,MIR933,LOC100128590,OST4,LOC100129175,LOC100129726,LOC100129961,PP14571,LOC100130451,LOC100130452,LOC100130691,TMEM194B,LOC100131320,SP9,LOC100132215,CYP4F30P,LOC100133985,LOC100134259,LOC100144595,RNU4ATAC,DBIL5P2,SNAR-H,LOC100189589,LOC100216479,ARHGEF33,LOC100271832,LIMS3-LOC440895,LOC100286922,LOC100286979,LOC100287010,LOC100287216,LOC100288570,LIMS3L,LOC100288911,MIR1471,MIR1246,MIR548N,MIR1258,MIR1245A,MIR1301,MIR1244-1,LOC100302650,GPR75-ASB3,SNORA80B,ZEB2-AS1,MIR548F2,MIR663B,LOC100329109,SNORA70F,BOK-AS1,MIR3128,MIR4265,MIR1244-3,MIR1244-2,MIR4264,MIR3129,MIR3127,MIR4261,MIR3131,MIR4268,MIR4263,MIR3125,MIR3130-1,MIR4267,MIR4262,MIR3130-2,MIR4266,MIR3126,MIR2355,MIR3132,MIR4269,LOC100499194,MIR3606,MIR3682,MIR3679,LOC100505624,LOC100505695,LOC100505716,LOC100505876,LOC100505964,LOC100506054,LOC100506123,LOC100506124,LOC100506134,LOC100506274,LOC100506421,LOC100506474,LOC100506783,LOC100506866,LOC100507140,BOLA3-AS1,LOC100507334,LOC100507443,LOC100507600,LY75-CD302,RNF103-CHMP3,NT5C1B-RDH14,PHOSPHO2-KLHL23,HSPE1-MOB4,INO80B-WBP1,UBE2F-SCLY,MIR4436B1,MIR4772,MIR4779,MIR4783,MIR4439,MIR4782,MIR4437,MIR4765,MIR4776-1,MIR4757,MIR4777,MIR1245B,MIR4435-2,MIR4426,MIR4774,MIR2467,MIR4775,MIR4785,MIR4784,MIR4773-1,MIR4444-1,MIR4440,MIR4436A,MIR4786,MIR4773-2,MIR4434,MIR4780,MIR4778,MIR4429,MIR4776-2,MIR4432,MIR548AD,MIR4441,MIR4435-1,LOC100630918,LOC100861402, 3 hsa-mir-548f-2,ERBB4,MIR548F2, 0 2q34 0.077883 -4 3 45988061 51954727 48599802 48659310 39847189 77701041 359 hsa-mir-4273,hsa-mir-1324,hsa-mir-1284,hsa-mir-3136,hsa-mir-4272,hsa-mir-135a-1,hsa-mir-566,hsa-mir-4271,hsa-mir-191,hsa-mir-711,hsa-mir-2115,hsa-mir-1226,hsa-mir-564,hsa-mir-138-1,ACY1,ALAS1,AMT,APEH,ARF4,RHOA,C3orf51,CACNA1D,SLC25A20,CAMP,CCK,ENTPD3,CDC25A,CISH,CCR1,CCR3,CCR5,CCBP2,COL7A1,CTNNB1,CYP8B1,DAG1,DNASE1L3,DOCK3,DUSP7,CELSR3,FHIT,FLNB,GNAI2,GNAT1,XCR1,GPR27,GPX1,GRM2,HYAL1,IMPDH2,ITIH1,ITIH3,ITIH4,LAMB2,LTF,MAP4,MITF,MST1,MST1R,MYL3,NKTR,CNTN3,PDHB,PFKFB4,PLXNB1,PRKAR2A,PRKCD,PTH1R,PTPRG,QARS,ROBO2,RPL29,ATXN7,SEMA3F,SMARCC1,NEK4,TCTA,TDGF1,TGM4,TKT,TMF1,CLEC3B,TNNC1,UBA7,USP4,UQCRC1,VIPR1,WNT5A,ZNF35,IFRD2,MAPKAPK3,SEMA3B,SLMAP,MANF,ACOX2,BAP1,HYAL3,CADPS,HYAL2,SUCLG2,HESX1,BSN,LIMD1,CCRL2,UBA3,RPL14,SEC22C,RRP9,MAGI1,CACNA2D2,VPRBP,IP6K1,PSMD6,PARP3,ZNF197,RBM6,RBM5,NME6,EIF1B,TRAIP,ARIH2,ARL6IP5,NPRL2,CXCR6,CSPG5,CCR9,USP19,SLC38A3,CYB561D2,TMEM115,RPP14,FAM107A,WDR6,RASSF1,NISCH,TREX1,TUSC2,TWF2,TRAK1,DHX30,SACM1L,SCAP,LAMB2P1,EXOSC7,PDZRN3,RAD54L2,FRMD4B,STAB1,NBEAL2,FAM208A,KLHL18,LARS2,RYBP,NAT6,ABHD14A,POC1A,TMEM158,NDUFAF3,MYRIP,PTPN23,DNAH1,HIGD1A,LRIG1,ERC2,APPL1,GNL3,FOXP1,SPCS1,SETD2,PRSS50,RBM15B,GMPPB,ARHGEF3,ABHD5,C3orf18,SS18L2,SHISA5,ZDHHC3,ZMYND10,TEX264,CCDC72,ZNF589,HEMK1,IP6K2,SFMBT1,NCKIPSD,PHF7,TLR9,LZTFL1,P4HTM,SLC6A20,IL17RD,C3orf75,SNRK,QRICH1,PXK,ULK4,FEZF2,EBLN2,ANO10,DALRD3,SHQ1,PBRM1,CHDH,IL17RB,CACNA2D3,DCP1A,GLT8D1,ZNF167,LMOD3,SEMA3G,KIF15,ADAMTS9,PCBP4,ABHD6,LRTM1,C3orf14,KIAA1143,HHATL,SELK,PROK2,RNF123,KIF9,CDCP1,CCDC71,NT5DC2,SLC26A6,CAMKV,LRRC2,FYCO1,CCDC51,THOC7,WDR82,RTP3,ID2B,ATRIP,NICN1,MON1A,KBTBD8,ABHD14B,C3orf39,UCN2,ZNF502,RFT1,ZBTB47,ACTR8,SLC25A26,ZNF501,GPR62,FAM3D,LYZL4,KBTBD5,TMEM42,IQCF1,GLYCTK,PPM1M,C3orf49,SNTN,SYNPR,C3orf45,ASB14,FAM19A4,CCDC12,PPP4R2,CCDC13,PRICKLE2,C3orf67,KCTD6,KLHDC8B,LOC201617,DNAH12,PDE12,FAM116A,ZNF620,ALS2CL,TMIE,C3orf64,FBXW12,ENTPD3-AS1,ZNF619,ZNF621,CCDC66,C3orf23,ZNF660,FLJ39534,LOC285401,EIF4E3,CCDC36,PRSS42,ZNF445,SPATA12,C3orf77,C3orf62,TMEM110,PRSS45,AMIGO3,ZNF662,CDHR4,FAM212A,IQCF2,IQCF5,MUSTN1,IQCF3,LOC401074,MIRLET7G,MIR135A1,MIR138-1,MIR191,FAM19A1,FLJ33065,TMEM89,IQCF6,C3orf78,MIR425,LOC644714,SPINK8,C3orf71,LOC646498,FLJ20518,SNORD19,FAM86DP,SNORD69,MIR548A2,MIR564,GXYLT2,FAM198A,CCR2,ESRG,SNORD19B,C3orf74,NRADDP,ZNF717,LOC100132146,BSN-AS2,PRSS46,LOC100287879,FRG2C,MIR1284,MIR1324,MIR1226,MIR711,MIR3136,MIR4272,MIR4271,MIR4273,MIR3938,KRBOX1,IQCF4,LOC100506994,LOC100507062,ADAMTS9-AS2,ABHD14A-ACY1,TMEM110-MUSTN1,MIR4793,MIR4787,MIR4444-1,MIR4443,LOC100652759,LUST, 6 hsa-mir-711,COL7A1,UQCRC1,UCN2,TMEM89,MIR711, 0 3p21.31 0.077375 -5 3 87295271 87295696 87247758 87326221 2212571 197538677 1276 hsa-mir-922,hsa-mir-570,hsa-mir-3137,hsa-mir-944,hsa-mir-28,hsa-mir-1248,hsa-mir-1224,hsa-mir-569,hsa-mir-551b,hsa-mir-720,hsa-mir-1263,hsa-mir-16-2,hsa-mir-1280,hsa-mir-548i-1,hsa-mir-544b,hsa-mir-198,hsa-mir-568,hsa-mir-567,hsa-mir-4273,hsa-mir-1324,hsa-mir-1284,hsa-mir-3136,hsa-mir-4272,hsa-mir-135a-1,hsa-mir-566,hsa-mir-4271,hsa-mir-191,hsa-mir-711,hsa-mir-2115,hsa-mir-1226,hsa-mir-564,hsa-mir-138-1,hsa-mir-26a-1,hsa-mir-128-2,hsa-mir-466,hsa-mir-3135,hsa-mir-563,hsa-mir-3134,hsa-mir-4270,hsa-mir-885,AADAC,ACAA1,ACPP,ACTL6A,ACVR2B,ACY1,ADCY5,ADPRH,AGTR1,AHSG,ALAS1,ALCAM,AMT,APEH,APOD,ARF4,RHOA,ATP1B3,ATP2B2,ATP6V1A,ATR,BCHE,BCL6,BDH1,FOXL2,BTD,C3orf51,CACNA1D,SLC25A20,CAMP,CASR,CAV3,CBLB,CCK,CD80,CD86,ENTPD3,CD47,CDC25A,CISH,AP2M1,CLCN2,CCR1,CCR3,CCR4,CCR5,CCR8,CCBP2,COL7A1,COL8A1,CP,CPA3,CPB1,CPN2,CPOX,CRYGS,CSTA,CTNNB1,CX3CR1,CYP8B1,DAG1,DGKG,DAZL,DLG1,DNASE1L3,DOCK3,DRD3,DUSP7,DVL3,ECT2,CELSR3,EHHADH,EIF4A2,EIF4G1,EPHA3,EPHB1,EPHB3,ETV5,MECOM,FANCD2,FBLN2,FGF12,FHIT,FLNB,GAP43,GATA2,GBE1,GHSR,GLB1,GNAI2,GNAT1,GOLGA4,GOLGB1,GP5,GP9,XCR1,GPR15,GPR27,GPX1,GRM2,GRM7,GSK3B,GTF2E1,GYG1,HCLS1,HGD,HRH1,HRG,HES1,HTR1F,HYAL1,IL1RAP,IL5RA,IL12A,IMPDH2,IRAK2,ITGA9,ITGB5,ITIH1,ITIH3,ITIH4,ITPR1,KNG1,KPNA1,KPNA4,LAMB2,RPSA,LPP,LSAMP,LTF,TM4SF1,MAP4,MBNL1,MCM2,MFI2,MITF,MLF1,MLH1,MME,MOBP,CD200,MST1,MST1R,MUC4,MYD88,MYL3,MYLK,NCK1,NDUFB4,NDUFB5,NKTR,OGG1,OPA1,CLDN11,OXTR,P2RY1,PAK2,CNTN3,PCCB,PCYT1A,PDHB,PFKFB4,PFN2,SERPINI1,SERPINI2,PIK3CA,PIK3CB,PLCD1,PLD1,PLOD2,PLS1,PLSCR1,PLXNA1,PLXNB1,POLR2H,POU1F1,PPARG,PPP1R2,PPP2R3A,PRKAR2A,PRKCD,PRKCI,PROS1,MASP1,PSMD2,PTH1R,PTPRG,PTX3,QARS,RAB5A,RAF1,RAP2B,RARB,RARRES1,RASA2,RBP1,RBP2,RFC4,RHO,SNORA63,SNORA62,ROBO1,ROBO2,RPL15,RPL24,RPL29,RPL32,RPL35A,RPN1,RYK,SATB1,ATXN7,SCN5A,SCN10A,SEC13,SEMA3F,SETMAR,TRA2B,SHOX2,SI,SIAH2,ST6GAL1,SKIL,SLC2A2,SLC6A1,SLC6A6,SLC6A11,SLC15A2,SLCO2A1,HLTF,SMARCC1,SOX2,SSR3,SST,STAC,NEK4,SYN2,TCTA,TDGF1,TERC,TF,TFDP2,TFRC,TGM4,TGFBR2,THPO,THRB,TIMP4,TKT,SEC62,TM4SF4,TMF1,CLEC3B,TNNC1,TOP2B,NR2C2,TRH,TRPC1,UBA7,UBE2E1,UBE2E2,UBP1,UPK1B,UMPS,USP4,UQCRC1,CLRN1,VHL,VIPR1,WNT5A,WNT7A,XPC,ZIC1,CNBP,ZNF35,ZNF80,ZNF148,BRPF1,IFRD2,MAPKAPK3,SEMA3B,SLMAP,MANF,RAB7A,KCNAB1,FXR1,COLQ,ACOX2,BAP1,EOMES,HYAL3,SOX14,BFSP2,CAMK1,CGGBP1,BHLHE40,RUVBL1,CADPS,TP63,CHRD,HYAL2,B4GALT4,B3GALNT1,SNX4,TNFSF10,SUCLG2,HESX1,GMPS,KAT2B,NR1I2,EIF2B5,BSN,MBD4,H1FX,USP13,LIMD1,KALRN,CCRL2,UBA3,RPL14,CLDN1,SEC22C,RRP9,MAP3K13,SLC33A1,LRRFIP2,MAGI1,CACNA2D2,COPB2,ADIPOQ,SLC22A14,SLC22A13,CHST2,SH3BP5,SLC4A7,STXBP5L,RNF7,GUCA1C,IQCB1,DZIP3,VGLL4,EDEM1,KIAA0226,ECE2,VPRBP,TBC1D5,TATDN2,IP6K1,TSC22D2,EPM2AIP1,PSMD6,TOMM70A,TRANK1,SRGAP3,IQSEC1,P2RY14,DLEC1,EXOG,XYLB,OXSR1,NR1D2,PDCD6IP,PARP3,SMC4,ABCC5,COX17,ARPC4,ZNF197,RBM6,RBM5,TNK2,ALG3,NME6,CTDSPL,CD96,KCNMB2,STAG1,EIF1B,TRAIP,TFG,ST3GAL6,ARIH2,TADA3,CRTAP,ATG7,ARL6IP5,NPRL2,IGF2BP2,CXCR6,CSPG5,CLDN16,POLQ,CHL1,ARPP21,CCR9,ALDH1L1,USP19,PDIA5,SLC38A3,CYB561D2,TMEM115,TOPBP1,RPP14,HHLA2,FSTL1,FAM107A,WDR6,RASSF1,NISCH,MRPL3,PDCD10,FILIP1L,TREX1,SCN11A,TUSC2,RNF13,MGLL,TWF2,MRAS,COPG,SLITRK3,NLGN1,TRAK1,DHX30,SACM1L,NCBP2,SCAP,LAMB2P1,MYH15,PLCH1,EXOSC7,TMCC1,PDZRN3,TNIK,CAND2,MCF2L2,CLASP2,PLXND1,RAD54L2,FRMD4B,STAB1,GPD1L,RFTN1,ATP11B,NBEAL2,NUP210,PLCL2,ANKRD28,FAM208A,KLHL18,DNAJC13,U2SURP,VPS8,LARS2,RYBP,C3orf27,CAPN7,ACAP2,MKRN2,NAT6,FBXL2,ANAPC13,ARMC8,ABHD14A,C3orf17,POC1A,ABI3BP,CNOT10,TMEM158,NDUFAF3,THUMPD3,MYRIP,PTPN23,WWTR1,PVRL3,TIPARP,CHMP2B,DNAH1,HIGD1A,LRIG1,SUSD5,UBXN7,ERC2,APPL1,HACL1,ARHGEF26,ZBTB20,TTLL3,OR5K1,OR5H1,GNL3,FAM162A,PCOLCE2,SEC22A,GPR160,FETUB,NPHP3,ATP2C1,LAMP3,FOXP1,KCNMB3,ZBTB11,MORC1,SERP1,CNTN6,LSM3,RBMS3,GOLIM4,NKIRAS1,SPCS1,ACAD9,ASTE1,KLF15,SETD2,GTPBP8,TAGLN3,PRSS50,RBM15B,GPR171,GMPPB,SEC61A1,LINC00312,SCHIP1,LMCD1,PIK3R4,PODXL2,ARHGEF3,TRAT1,VILL,IMPG2,C3orf32,NMD3,TRNT1,ABHD5,COMMD2,DYNC1LI1,A4GNT,C3orf18,DBR1,CRBN,SS18L2,ZNF639,CLDN18,C3orf19,SHISA5,TIMMDC1,ZDHHC3,RSRC1,ZMYND10,PLA1A,TEX264,CCDC72,ZNF589,HEMK1,AMOTL2,IP6K2,SFMBT1,NCKIPSD,PHF7,CCRL1,PEX5L,RAB6B,SELT,FBXO40,DNAJB11,GHRL,P2RY13,IL20RB,GPR87,TLR9,DCUN1D1,SEMA5B,XRN1,WDR5B,LZTFL1,PARP14,P4HTM,SLC6A20,IL17RD,GRAMD1C,ROPN1,KLHL24,SIDT1,C3orf75,SNRK,QRICH1,PXK,CMTM6,RG9MTD1,SLC41A3,PIGX,SLC25A38,ULK4,OXSM,SLC35A5,TMEM45A,FEZF2,IFT57,EBLN2,ANO10,DALRD3,SHQ1,MSL2,TBCCD1,FAIM,SLC25A36,PBRM1,ARL8B,SETD5,DPPA4,LEPREL1,TMEM39A,ZNF654,TMEM40,ABCF3,LSG1,ABHD10,CHDH,PARL,IL17RB,CDV3,MFN1,YEATS2,IFT122,NGLY1,TBC1D23,WDR52,CACNA2D3,DCP1A,GLT8D1,TMEM111,EAF2,BRK1,ZNF167,MYNN,LMOD3,EIF5A2,CLDND1,MUC13,SUCNR1,RAD18,SEMA3G,MCCC1,LXN,C3orf37,MRPS22,NIT2,POGLUT1,BBX,KIF15,ADAMTS9,CCNL1,PLSCR2,PCBP4,PLSCR4,PCNP,HRASLS,MRPL47,SENP7,ABHD6,LRTM1,C3orf14,KIAA1143,ISY1,HHATL,HEG1,KIAA1257,ARHGAP31,NCEH1,IFT80,KIAA1407,WDR48,LRRN1,KIAA1524,SLC7A14,SRPRB,SELK,SENP2,GNB4,BPESC1,PROK2,EEFSEC,RNF123,NSUN3,CIDEC,CLSTN2,POPDC2,RTP4,MAGEF1,ZFYVE20,KIF9,NFKBIZ,AZI2,ZMAT3,MTMR14,ATG3,MRPS25,CSRNP1,GORASP1,MFSD1,CCDC14,FNDC3B,P2RY12,CDCP1,CCDC71,NT5DC2,SLC26A6,TMEM108,CRELD1,CAMKV,TMEM43,OR5H6,OR5H2,ZXDC,ZBED2,LRRC2,FYCO1,ATP13A3,CEP97,HSPBAP1,C3orf52,VEPH1,QTRTD1,CCDC51,TBL1XR1,ZBBX,ZNF385D,LRRC31,CCDC48,NEK11,UBA5,HDAC11,MAP6D1,PHC3,C3orf36,ARL14,THOC7,NAA50,PIGZ,CEP63,CEP70,ABTB1,WDR82,TMEM22,TSEN2,GRIP2,OR5AC2,RTP3,PARP9,ESYT3,SPATA16,EIF2A,B3GNT5,C3orf20,ID2B,ARL6,ZIC4,ATRIP,ACAD11,IQCG,ATP13A4,FYTTD1,NICN1,CHCHD6,MON1A,C3orf26,HPS3,ARPM1,JAGN1,KBTBD8,SLC12A8,GHRLOS2,RETNLB,CCDC54,MGC2889,IL17RC,ABHD14B,LRCH3,MINA,GPR128,C3orf39,DIRC2,CEP19,EAF1,DCLK3,GFM1,LMLN,KLHL6,C3orf15,PHLDB2,VWA5B2,UCN2,LOC90246,C3orf25,TMEM41A,ZNF502,BOC,FAM55C,RFT1,OXNAD1,SPSB4,ACPL2,ZBTB47,TMEM44,EGFEM1P,ACTR8,CAMK2N2,CMTM7,TXNRD3,OSBPL10,OSBPL11,SLC25A26,ZNF501,C3orf24,LRRC58,LRRC3B,TM4SF19,TM4SF18,RPL39L,MED12L,CLRN1-AS1,GALNTL2,GPR62,CPNE4,CCDC58,KCNH8,DNAJC19,OTOL1,FAM3D,ZPLD1,LYZL4,KBTBD5,TRIM71,FAM131A,CD200R1,CHCHD4,ZDHHC19,DCBLD2,LRRC15,FAM43A,TPRA1,TMEM42,UROC1,FAM194A,NUDT16,COL6A6,GRK7,FAM172BP,TMEM207,METTL6,TAMM41,IL17RE,RTP1,IQCF1,GLYCTK,PPM1M,C3orf49,SNTN,SYNPR,C3orf45,RPL32P3,H1FOO,PISRT1,ASB14,TTC14,DTX3L,FAM19A4,SGOL1,PP2D1,EFHB,LOC151658,PPM1L,WDR49,LRRC34,CPNE9,DPPA2,CCDC80,BTLA,CCDC12,MB21D2,PPP4R2,XXYLT1,ROPN1B,LOC152024,C3orf22,C3orf55,ZCWPW2,CMC1,NEK10,C3orf79,CCDC50,PYDC2,SPICE1,CMTM8,NUDT16P1,CCDC13,LOC152217,LOC152225,FGD5,CIDECP,CNTN4,IGSF11,C3orf30,PARP15,SPTSSB,DNAJB8,GPR156,XIRP1,RNF168,CHST13,PRICKLE2,KBTBD12,DHX36,HTR3C,DZIP1L,TTC21A,ALG1L,C3orf67,KCTD6,LIPH,ARL13B,DHFRL1,HTR3D,RPL22L1,OSTalpha,FBXO45,KLHDC8B,MUC20,GABRR3,PTPLB,STT3B,LOC201617,DNAH12,PDE12,FAM116A,TIGIT,LOC201651,C3orf58,SENP5,KIAA2018,LOC220729,ZBTB38,CADM2,LOC253573,ZNF620,NAALADL2,ZDHHC23,LOC255025,NUP210P1,TCTEX1D2,C3orf43,SDHAP1,COL6A5,GK5,PLCXD2,GCET2,UTS2D,ALS2CL,TMIE,LSAMP-AS3,SLC9A9,C3orf64,LOC285205,EPHA6,DNAJB8-AS1,FBXW12,C3orf38,HTR3E,ENTPD3-AS1,ZNF619,ZNF621,RABL3,IGSF10,C3orf33,LOC285326,CCDC66,SLC9A10,C3orf23,ZNF660,FLJ39534,LOC285359,SUMF1,RPUSD3,PRRT3,LOC285370,LOC285375,DPH3,C3orf70,TPRG1,LOC285401,ILDR1,TRIM59,TRIM42,EIF4E3,RAB43,CCDC39,CCDC36,KY,LOC339862,LOC339874,C3orf35,LOC339894,GADL1,PRSS42,LOC339926,LPP-AS2,H1FX-AS1,LOC344595,LRRIQ4,SAMD7,AADACL2,GPR149,ZNF860,TMPRSS7,CD200R1L,PAQR9,COL6A4P1,LOC344887,RTP2,OSTN,ATP13A5,SOX2-OT,NME9,WDR53,LNP1,CCDC37,NPHP3-AS1,TPRXL,ANKRD18DP,NMNAT3,ZNF445,SPATA12,LHFPL4,C3orf77,C3orf62,TMEM110,LRRC33,PRSS45,AMIGO3,ZNF662,CDHR4,FAM212A,IQCF2,IQCF5,MUSTN1,VGLL3,PRR23B,PRR23C,PLSCR5,ANKUB1,LEKR1,TMEM212,VENTXP7,LOC401052,IQCF3,LOC401074,FLJ22763,FLJ25363,C3orf72,LOC401093,C3orf80,FLJ46066,FLJ42393,FLJ34208,LOC401109,OR5K2,OR5H14,OR5H15,OR5K3,OR5K4,MIRLET7G,MIR128-2,MIR135A1,MIR138-1,MIR15B,MIR16-2,MIR191,MIR198,MIR26A1,FAM19A1,STX19,LOC440944,FLJ33065,TMEM89,IQCF6,C3orf78,LOC440970,MIR425,ARGFX,SNORA6,SNORA7A,SNORD2,SNORA4,TMPPE,TMEM30C,LOC644714,ALG1L2,LOC644990,LOC645206,TXNRD3NB,TMEM14E,LOC646168,COL6A4P2,SPINK8,C3orf71,LOC646498,C3orf65,LOC646903,PA2G4P4,LOC647107,GMNC,LOC647323,FLJ20518,LOC653712,IQCJ,SCARNA7,LINC00488,SNORA7B,SNORA58,SNORA81,SNORD19,FAM86DP,SNORD66,SNORD69,MIR548A2,MIR548A3,MIR551B,MIR563,MIR564,MIR567,MIR568,MIR569,MIR570,GXYLT2,SDHAP2,FAM157A,FAM198A,CCR2,FAM86HP,PRR23A,LOC730091,ESRG,LOC100009676,SNORD19B,LOC100125556,MIR922,MIR885,MIR944,EGOT,GHRLOS,LOC100128023,WWTR1-AS1,LOC100128164,C3orf74,LOC100128640,NRADDP,LOC100129480,LOC100129550,ZBTB20-AS1,LOC100131551,LOC100131635,ZNF717,LOC100132146,LOC100132526,BSN-AS2,SNAR-I,MIR1224,TIPARP-AS1,PRSS46,LOC100287879,LOC100288428,FRG2C,LOC100289361,MIR1284,MIR1248,MIR1280,MIR548I1,MIR1324,MIR1226,LOC100302640,MIR548H2,MIR711,MIR548G,MIR3136,MIR4270,MIR4272,MIR4271,MIR4273,LOC100498859,MIR3919,MIR3921,MIR3938,MIR3714,IQCJ-SCHIP1,FGD5-AS1,LOC100505687,LOC100505696,KRBOX1,PVRL3-AS1,IGSF11-AS1,MYLK-AS1,IQCF4,LOC100506994,LOC100507032,MFI2-AS1,LOC100507062,LOC100507086,ADAMTS9-AS2,LOC100507389,LOC100507391,ARHGEF26-AS1,LOC100507537,LOC100507582,ARPC4-TTLL3,ABHD14A-ACY1,TMEM110-MUSTN1,NPHP3-ACAD11,ISY1-RAB43,TM4SF19-TCTEX1D2,MIR4793,MIR4787,MIR4795,MIR4796,MIR4797,MIR4788,MIR4791,MIR4790,MIR548AC,MIR4444-1,MIR4789,MIR4443,MIR4792,MIR4446,MIR4442,LOC100652759,LUST, 3 POU1F1,CHMP2B,MIR4795, 0 3p11.2 0.24825 -6 4 91494256 92060755 91039783 92525195 91155780 93222143 1 FAM190A, 1 FAM190A, 0 4q22.1 3.5663e-07 -7 5 58279015 65311841 58261529 59787458 58261529 59787458 3 hsa-mir-582,PDE4D,PART1, 3 hsa-mir-582,PDE4D,PART1, 0 5q11.2 1.0387e-05 -8 6 101240763 116232098 108878404 109007761 93944759 122743738 129 hsa-mir-3144,hsa-mir-548b,hsa-mir-587,hsa-mir-2113,AIM1,AMD1,PRDM1,CCNC,COL10A1,EPHA7,FOXO3,FRK,FYN,GJA1,GPR6,GRIK2,HDAC2,HSF2,KPNA5,LAMA4,MARCKS,MAN1A1,PLN,POU3F2,PREP,REV3L,ROS1,SIM1,SMPD2,NR2E1,TSPYL1,DDO,SNX3,CD164,WISP3,WASF1,FHL5,ATG5,ZBTB24,FIG4,FUT9,TRAF3IP2,ASCC3,BVES,SEC63,CDK19,TSPYL4,UFL1,BRD7P3,ASF1A,PNISR,FBXL4,SESN1,OSTM1,NDUFAF4,DSE,TUBE1,C6orf203,CDC40,RWDD1,COQ3,SOBP,QRSL1,PDSS2,GOPC,HACE1,BEND3,PRDM13,POPDC3,MICAL1,FAM184A,MANEA,GPR63,ARMC2,RPF2,MCHR2,FAXC,RTN4IP1,USP45,SLC22A16,KIAA1919,GTF3C6,KLHL32,NUS1,SLC16A10,BVES-AS1,CCDC162P,AKD1,NT5DC1,FAM26D,ZUFSP,FAM162B,C6orf170,HS3ST5,GPRC6A,RFX6,SLC35F1,VGLL2,LACE1,MMS22L,FAM26E,MCM9,SCML4,CEP57L1,PPIL6,LOC285758,FLJ34503,DCBLD1,LOC285762,RSPH4A,LINC00222,CEP85L,LIN28B,FAM26F,GSTM2P1,RFPL4B,C6orf225,TSG1,TRAF3IP2-AS1,MIR548B,LOC728012,TPI1P3,C6orf186,BET3L,LOC100130890,LOC100287632,MIR2113,MIR548H3,LOC100422737, 1 FOXO3, 0 6q21 0.015461 -9 6 1915388 1916030 1622846 2414213 1014281 5997515 39 BPHL,SERPINB1,FOXF2,FOXC1,GMDS,IRF4,NQO2,SERPINB6,SERPINB9,TUBB2A,RIPK1,PRPF4B,CDYL,ECI2,FARS2,RPP40,FAM50B,EXOC2,WRNIP1,DUSP22,LYRM4,SLC22A23,FOXQ1,HUS1B,C6orf195,PXDC1,MGC39372,FAM217A,LOC285768,MYLK4,TUBB2B,PSMG4,DKFZP686I15217,C6orf201,PPP1R3G,MIR3691,LOC100507194,LOC100508120,MIR4645, 2 GMDS,LOC100508120, 0 6p25.3 0.11868 -10 6 154802665 155118439 155053583 155157466 151183875 170903919 114 hsa-mir-1913,hsa-mir-1202,hsa-mir-1273c,ACAT2,CCR6,ESR1,GPR31,IGF2R,KIF25,LPA,MAS1,MAP3K4,MLLT4,OPRM1,PARK2,PDCD2,PLG,PSMB1,RPS6KA2,SLC22A1,SLC22A3,SLC22A2,SOD2,T,TBP,TCP1,TCP10,TCTE3,DYNLT1,THBS2,EZR,VIP,RNASET2,SYNJ2,QKI,WTAP,AKAP12,PDE10A,FGFR1OP,SCAF8,SYNE1,MTHFD1L,IPCEF1,TIAM2,C6orf123,FBXO5,RGS17,DLL1,MRPL18,CLDN20,NOX3,TFB1M,SNX9,BRP44L,UNC93A,MTRF1L,RMND1,PHF10,C6orf70,AGPAT4,TULP4,ARID1B,TMEM181,ZBTB2,SMOC2,C6orf211,ZDHHC14,FRMD1,AGPAT4-IT1,C6orf208,C6orf97,MYCT1,LPAL2,RSPH3,TTLL2,FAM120B,FNDC1,SERAC1,LINC00473,SYTL3,SFT2D1,TAGAP,PACRG,CNKSR3,PNLDC1,LOC154449,DACT2,C6orf118,OSTCP1,WDR27,LOC285796,PRR18,C6orf120,DKFZp451B082,TCP10L2,LINC00242,GTF2H5,LOC441177,MLLT4-AS1,SNORA20,SNORA29,TMEM242,LOC729603,HGC6.3,LOC100129518,C6orf99,LOC100289495,MIR1913,MIR3918,MIR3939,MIR3692,CAHM,MIR4466,MIR4644, 1 SCAF8, 0 6q25.2 0.16838 -11 9 20868287 24074100 21963430 21976870 21868908 22446297 4 CDKN2A,CDKN2B,C9orf53,CDKN2B-AS1, 2 CDKN2A,C9orf53, 0 9p21.3 6.0681e-35 -12 9 101906121 101906447 101865111 101917706 101833187 101975331 1 TGFBR1, 1 TGFBR1, 0 9q22.33 0.068736 -13 9 9219787 9219833 8312601 10617850 8312601 12689377 1 PTPRD, 1 PTPRD, 0 9p24.1 0.058678 -14 10 89565700 89641300 89577746 133112924 83637195 133777786 417 hsa-mir-378c,hsa-mir-4297,hsa-mir-4296,hsa-mir-2110,hsa-mir-4295,hsa-mir-548e,hsa-mir-609,hsa-mir-936,hsa-mir-1307,hsa-mir-146b,hsa-mir-3158-1,hsa-mir-608,hsa-mir-1287,hsa-mir-607,hsa-mir-3157,hsa-mir-107,hsa-mir-346,ACADSB,ACTA2,ADD3,ADRA2A,ADRB1,FAS,ARL3,BMPR1A,CASP7,ENTPD1,CHUK,ABCC2,COL17A1,COX15,CPN1,CTBP2,CYP2C19,CYP2C8,CYP2C9,CYP2C18,CYP17A1,CYP26A1,DMBT1,DNTT,DOCK1,DUSP5,EMX2,FGF8,FGFR2,GFRA1,GLUD1,GOT1,PRLHR,GPR26,GRK5,GRID1,HABP2,HELLS,HHEX,HMX2,TLX1,HPS1,HTR7,IDE,IFIT2,IFIT1,IFIT3,KIF11,ABLIM1,LIPA,MGMT,MKI67,MXI1,NDUFB8,NFKB2,NRAP,OAT,PAX2,PDE6C,PGAM1,PITX3,PNLIP,PNLIPRP1,PNLIPRP2,PPP1R3C,HTRA1,PSD,PTEN,PTPRE,ALDH18A1,RBP4,RGR,RGS10,SCD,SFRP5,FBXW4,SLC18A2,SLIT1,SNCG,TAF5,TCF7L2,TECTB,TIAL1,TLL2,UROS,WNT8B,XPNPEP1,SHOC2,ADAM12,LIPF,EIF3A,GBF1,LDB1,BTRC,CH25H,PKD2L1,BTAF1,PAPSS2,INA,PDLIM1,SMC3,NEURL,BUB3,LGI1,NOLC1,GSTO1,BAG3,MINPP1,KIF20B,SH3PXD2A,FAM53B,SLK,ZNF518A,DCLRE1A,FRAT1,ACTR1A,SMNDC1,NPM3,GLRX3,RPP30,TACC2,SORBS1,ERLIN1,LBX1,NRG3,MGEA5,PRDX3,C10orf116,VAX1,ATE1,LDB3,SEC23IP,RAB11FIP2,CPEB3,INPP5F,NT5C2,PDCD11,SORCS3,WAPAL,PPRC1,FAM175B,RRP12,TBC1D12,DNMBP,FRAT2,IFIT5,DPCD,SEC31B,ATRNL1,C10orf137,LRIT1,TCTN3,C10orf12,ANKRD2,CNNM1,MYOF,ANKRD1,GHITM,PDCD4,C10orf28,POLL,BLNK,KCNIP2,CUZD1,EXOSC1,CALHM2,CUTC,PLCE1,CHST15,SUFU,ACSL5,PANK1,FAM190B,EXOC6,FAM35A,CCNJ,MARCH5,ZRANB1,NSMCE4A,CNNM2,C10orf26,C10orf118,CRTAC1,CEP55,CWF19L1,RNLS,PI4K2A,HIF1AN,WDR11,FAM178A,DHX32,PPP2R2D,FAM45B,TDRD1,BCCIP,C10orf2,TM9SF3,ENTPD7,AS3MT,STAMBPL1,GPAM,KIAA1598,FAM160B1,SEMA4G,PLEKHA1,AVPI1,HPSE2,FAM204A,LHPP,MMS19,NOC3L,IKZF5,ZDHHC6,CUEDC2,FBXL15,C10orf76,HPS6,MMRN2,TMEM180,MCMBP,C10orf95,C10orf81,PDZD7,OBFC1,C10orf88,UBTD1,WDR96,TNKS2,TRIM8,KAZALD1,SFXN3,SLC25A28,ELOVL3,MARVELD1,PCGF6,LOXL4,ZDHHC16,PCGF5,LZTS2,LCOR,MRPL43,AFAP1L2,PYROXD2,USMG5,ATAD1,ARHGAP19,ITPRIP,LINC00263,CDHR1,BBIP1,FANK1,OPALIN,OPN4,HOGA1,SORCS1,C10orf90,BTBD16,FAM24A,PSTK,PIK3AP1,MORN4,ZFYVE27,MMP21,FRA10AC1,ANKRD22,SFXN2,PDZD8,C10orf32,NUDT9P1,AGAP11,GSTO2,SFR1,CALHM3,CTAGE7P,CLRN3,PNLIPRP3,SFXN4,CPXM2,C10orf129,LIPJ,CFL1P1,TRUB1,VTI1A,LOC143188,HECTD2,FGFBP3,C10orf82,C10orf46,NKX2-3,SLC35G1,CCDC147,LOC170425,EMX2OS,PPAPDC1A,FAM24B,EBF3,CALHM1,CASC2,TCERG1L,HSPA12A,PIPSL,BLOC1S2,RBM20,LOC282997,FLJ37201,LOC283038,LOC283089,O3FAR1,KCNK18,LIPM,CYP26C1,VWA2,NANOS1,LRIT2,HMX3,NHLRC2,C10orf96,FLJ46361,C10orf99,SLC16A12,CC2D2B,ENO4,ARMS2,C10orf122,LOC387723,GUCY2GP,NKX1-2,FLJ41350,C10orf120,LOC399815,METTL10,FLJ37035,FOXI2,FLJ46300,GOLGA7B,FAM45A,MIR107,C10orf62,LOC439994,IFIT1B,MIR346,MIR146B,NPS,SNORA19,FAM196A,FAM25A,LIPK,LIPN,LOC643529,RPL13AP6,SNORA12,MIR608,MIR609,FAM22A,FAM22D,LOC728190,LOC728218,LOC728558,LOC729020,TLX1NB,MIR936,C10orf131,LOC100128054,KLLN,LOC100169752,LOC100188947,DNMBP-AS1,LOC100289509,MIR1287,MIR1307,MIR2110,FAS-AS1,MIR378C,MIR4297,MIR3157,MIR3158-1,MIR4295,MIR3158-2,MIR4296,MIR3941,MIR3663,LOC100505540,LOC100505761,LOC100505839,LOC100505933,LOC100507470,MARK2P9,C10orf32-AS3MT,ARHGAP19-SLIT1,FAM24B-CUZD1,MIR4680,MIR4679-1,MIR4483,MIR4679-2,MIR4678,MIR4682,MIR4482-1,MIR4484,MIR4681,MIR4685, 382 hsa-mir-378c,hsa-mir-4297,hsa-mir-4296,hsa-mir-2110,hsa-mir-4295,hsa-mir-548e,hsa-mir-609,hsa-mir-936,hsa-mir-1307,hsa-mir-146b,hsa-mir-3158-1,hsa-mir-608,hsa-mir-1287,hsa-mir-607,hsa-mir-3157,hsa-mir-107,ACADSB,ACTA2,ADD3,ADRA2A,ADRB1,FAS,ARL3,CASP7,ENTPD1,CHUK,ABCC2,COL17A1,COX15,CPN1,CTBP2,CYP2C19,CYP2C8,CYP2C9,CYP2C18,CYP17A1,CYP26A1,DMBT1,DNTT,DOCK1,DUSP5,EMX2,FGF8,FGFR2,GFRA1,GOT1,PRLHR,GPR26,GRK5,HABP2,HELLS,HHEX,HMX2,TLX1,HPS1,HTR7,IDE,IFIT2,IFIT1,IFIT3,KIF11,ABLIM1,LIPA,MGMT,MKI67,MXI1,NDUFB8,NFKB2,NRAP,OAT,PAX2,PDE6C,PGAM1,PITX3,PNLIP,PNLIPRP1,PNLIPRP2,PPP1R3C,HTRA1,PSD,PTEN,PTPRE,ALDH18A1,RBP4,RGS10,SCD,SFRP5,FBXW4,SLC18A2,SLIT1,TAF5,TCF7L2,TECTB,TIAL1,TLL2,UROS,WNT8B,XPNPEP1,SHOC2,ADAM12,LIPF,EIF3A,GBF1,LDB1,BTRC,CH25H,PKD2L1,BTAF1,INA,PDLIM1,SMC3,NEURL,BUB3,LGI1,NOLC1,GSTO1,BAG3,KIF20B,SH3PXD2A,FAM53B,SLK,ZNF518A,DCLRE1A,FRAT1,ACTR1A,SMNDC1,NPM3,GLRX3,RPP30,TACC2,SORBS1,ERLIN1,LBX1,MGEA5,PRDX3,VAX1,ATE1,SEC23IP,RAB11FIP2,CPEB3,INPP5F,NT5C2,PDCD11,SORCS3,PPRC1,FAM175B,RRP12,TBC1D12,DNMBP,FRAT2,IFIT5,DPCD,SEC31B,ATRNL1,C10orf137,TCTN3,C10orf12,ANKRD2,CNNM1,MYOF,ANKRD1,PDCD4,C10orf28,POLL,BLNK,KCNIP2,CUZD1,EXOSC1,CALHM2,CUTC,PLCE1,CHST15,SUFU,ACSL5,PANK1,EXOC6,CCNJ,MARCH5,ZRANB1,NSMCE4A,CNNM2,C10orf26,C10orf118,CRTAC1,CEP55,CWF19L1,RNLS,PI4K2A,HIF1AN,WDR11,FAM178A,DHX32,FAM45B,TDRD1,BCCIP,C10orf2,TM9SF3,ENTPD7,AS3MT,STAMBPL1,GPAM,KIAA1598,FAM160B1,SEMA4G,PLEKHA1,AVPI1,HPSE2,FAM204A,LHPP,MMS19,NOC3L,IKZF5,ZDHHC6,CUEDC2,FBXL15,C10orf76,HPS6,TMEM180,MCMBP,C10orf95,C10orf81,PDZD7,OBFC1,C10orf88,UBTD1,WDR96,TNKS2,TRIM8,KAZALD1,SFXN3,SLC25A28,ELOVL3,MARVELD1,PCGF6,LOXL4,ZDHHC16,PCGF5,LZTS2,LCOR,MRPL43,AFAP1L2,PYROXD2,USMG5,ARHGAP19,ITPRIP,LINC00263,BBIP1,FANK1,OPALIN,HOGA1,SORCS1,C10orf90,BTBD16,FAM24A,PSTK,PIK3AP1,MORN4,ZFYVE27,MMP21,FRA10AC1,ANKRD22,SFXN2,PDZD8,C10orf32,NUDT9P1,GSTO2,SFR1,CALHM3,CTAGE7P,CLRN3,PNLIPRP3,SFXN4,CPXM2,C10orf129,LIPJ,CFL1P1,TRUB1,VTI1A,LOC143188,HECTD2,FGFBP3,C10orf82,C10orf46,NKX2-3,SLC35G1,CCDC147,EMX2OS,PPAPDC1A,FAM24B,EBF3,CALHM1,CASC2,TCERG1L,HSPA12A,PIPSL,BLOC1S2,RBM20,LOC282997,FLJ37201,LOC283038,LOC283089,O3FAR1,KCNK18,LIPM,CYP26C1,VWA2,NANOS1,HMX3,NHLRC2,C10orf96,FLJ46361,SLC16A12,CC2D2B,ENO4,ARMS2,C10orf122,LOC387723,GUCY2GP,NKX1-2,FLJ41350,C10orf120,LOC399815,METTL10,FLJ37035,FOXI2,GOLGA7B,FAM45A,MIR107,C10orf62,IFIT1B,MIR146B,NPS,SNORA19,FAM196A,LIPK,LIPN,LOC643529,RPL13AP6,SNORA12,MIR608,MIR609,LOC728558,LOC729020,TLX1NB,MIR936,C10orf131,LOC100128054,KLLN,LOC100169752,LOC100188947,DNMBP-AS1,LOC100289509,MIR1287,MIR1307,MIR2110,FAS-AS1,MIR378C,MIR4297,MIR3157,MIR3158-1,MIR4295,MIR3158-2,MIR4296,MIR3941,MIR3663,LOC100505540,LOC100505761,LOC100505839,LOC100505933,MARK2P9,C10orf32-AS3MT,ARHGAP19-SLIT1,FAM24B-CUZD1,MIR4680,MIR4679-1,MIR4483,MIR4679-2,MIR4682,MIR4482-1,MIR4484,MIR4681,MIR4685, 0 10q23.31 0.16929 -15 12 11581774 11582045 11477535 11717811 889902 133161346 1200 hsa-mir-4304,hsa-mir-1178,hsa-mir-620,hsa-mir-1302-1,hsa-mir-619,hsa-mir-1827,hsa-mir-4303,hsa-mir-135a-2,hsa-mir-1251,hsa-mir-331,hsa-mir-492,hsa-mir-618,hsa-mir-617,hsa-mir-1252,hsa-mir-1279,hsa-mir-548c,hsa-let-7i,hsa-mir-26a-2,hsa-mir-616,hsa-mir-1228,hsa-mir-148b,hsa-mir-615,hsa-mir-196a-2,hsa-mir-1293,hsa-mir-1291,hsa-mir-4302,hsa-mir-920,hsa-mir-614,hsa-mir-613,hsa-mir-1244-3,hsa-mir-141,A2M,A2MP1,ACACB,ACADS,ACCN2,ACVR1B,ACVRL1,ADCY6,ALDH2,ABCD2,AMHR2,APAF1,APOF,APOBEC1,AQP2,AQP5,AQP6,ARF3,ARHGDIB,ARL1,ART4,ASCL1,ATF1,ATP2A2,ATP2B1,ATP5B,ATP5G2,AVPR1A,BCAT1,BCL7A,BICD1,BTG1,C1R,C1S,C3AR1,CACNA1C,CACNB3,CCND2,CCNT1,CD4,CD9,CD27,SCARB1,CD63,CD69,CDK2,CDK4,CDKN1B,CHD4,CMKLR1,CNTN1,COL2A1,COX6A1,CPM,CREBL2,CRY1,CS,CSRP2,CYP27B1,DGKA,DAO,DCN,DDIT3,DDX11,ATN1,EPYC,DTX1,DUSP6,PHC1,EIF2B1,EIF4B,CELA1,ELK3,EMP1,ENO2,STX2,EPS8,ERBB3,ETV6,FGF6,FKBP4,FOXM1,B4GALNT1,GAPDH,BLOC1S1,GLI1,GNB3,GNS,GOLGA3,GPD1,GPR19,GRIN2B,GTF2H3,GUCY2C,GYS2,HAL,NCKAP1L,NR4A1,HNRNPA1,HOXC4,HOXC5,HOXC6,HOXC8,HOXC9,HOXC10,HOXC11,HOXC12,HOXC13,HPD,IAPP,IFNG,IGF1,IGFBP6,INHBC,ITGA5,ITGA7,ITGB7,ITPR2,KCNA1,KCNA5,KCNA6,KCNC2,KCNJ8,KIF5A,KLRB1,KLRC1,KLRC2,KLRC3,KLRD1,KRAS,KRT1,KRT2,KRT3,KRT4,KRT5,KRT6A,KRT6B,KRT7,KRT8,KRT18,KRT81,KRT82,KRT83,KRT84,KRT85,KRT86,LAG3,LALBA,LDHB,LRMP,LRP1,LRP6,LTA4H,LTBR,LUM,LYZ,M6PR,MARS,MDM2,METTL1,KITLG,MGP,MGST1,MIP,MMP17,MMP19,MSI1,MVK,MYBPC1,MYF5,MYF6,MYL2,MYL6,MYO1A,PPP1R12A,NAB2,NACA,NAP1L1,NDUFA9,NELL2,NFE2,NFYB,NINJ2,NOP2,NOS1,CNOT2,SLC11A2,NTF3,NTS,OAS1,OAS2,OAS3,OLR1,P2RX4,P2RX7,PA2G4,PEBP1,PAH,PAWR,PCBP2,CDK17,PDE3A,PDE6H,PDE1B,PFDN5,PFKM,SLC25A3,PIK3C2G,PKP2,PLA2G1B,PMCH,POLE,POU6F1,PPP1CC,PPP1R1A,PRB1,PRB3,PRB4,PRH1,PRH2,PRIM1,PRKAB1,PRKAG1,PRPH,PSMD9,PTHLH,TWF1,PTMS,PTPN6,PTPN11,PTPRB,PTPRO,PTPRR,PXMP2,PXN,PEX5,PZP,RAB5B,RAD52,RAN,RAP1B,RARG,KDM5A,RBMS2,RDH5,RECQL,RFC5,RFX4,RNY5,RPL6,RPL41,RPLP0,RPS26,CLIP1,TSPAN31,ATXN2,SCN8A,SCNN1A,SELPLG,SFSWAP,SHMT2,ST8SIA1,PMEL,SLC2A3,SLC6A12,SLC6A13,SLCO1A2,SMARCC2,SMARCD1,SNRPF,SOX5,SP1,STAT2,STAT6,SUOX,VAMP1,SYT1,TAC3,TARBP2,TBX5,TBX3,HNF1A,TDG,TEAD4,TMBIM6,TFCP2,TSPAN8,TMPO,TNFRSF1A,TPI1,NR2C1,HSP90B1,TULP3,TXNRD1,UBC,UBE2N,UNG,VDR,VWF,WNT1,WNT10B,ZNF10,ZNF26,ZNF84,ZNF140,MAP3K12,TUBA1A,FGF23,MFAP5,USP5,MLF2,SSPN,MLL2,AAAS,YEATS4,HMGA2,ALX1,CDK2AP1,KLRC4,BRAP,ULK1,EEA1,SOAT2,RASAL1,DYRK2,PPFIBP1,PPFIA2,CSDA,LGR5,MAPKAPK5,DENR,RDH16,NPFF,HSD17B6,OASL,DYNLL1,SRSF9,GALNT4,CRADD,HRK,ADAM1,DYRK4,LIN7A,SOCS2,HCAR3,ENDOU,TIMELESS,HIP1R,GPRC5A,KRT75,SCAF11,RASSF9,SLC16A7,PIWIL1,CD163,MED21,DDX23,CABP1,SLC4A8,GDF3,NCOR2,WSCD2,ESPL1,SART3,KNTC1,CLSTN3,MLEC,DAZAP2,GIT2,KIAA0748,KIAA0528,ZBTB39,NUAK1,RBM19,NCAPD2,RNF10,PAN2,USP15,NR1H4,CLEC2B,SH2B3,TROAP,DNM1L,ABCC9,ARPC3,TSFM,CTDSP2,YAF2,PLXNC1,LPCAT3,RNF41,MPHOSPH9,KLRG1,GDF11,LRRC23,TMEM5,CNPY2,TUBA1B,RAPGEF3,EMG1,MCRS1,IPO8,LEPREL2,DCTN2,AKAP3,CCT2,SLCO1B1,RAD51AP1,CAMKK2,AVIL,PTGES3,KLRAP1,ZNF268,FRS2,TSPAN9,TRAFD1,OS9,TMED2,ERP29,CKAP4,GCN1L1,METAP2,SDS,GLIPR1,ATF7,RAB35,CPSF6,SNRNP35,KERA,KRR1,PRDM4,CIT,PWP1,FICD,NUDT4,STRAP,BAZ2A,WIF1,FZD10,IRAK3,GALNT6,RASSF8,NXPH4,XPOT,PRR4,GPR182,PHB2,COPZ1,PHLDA1,R3HDM2,MLXIP,RPH3A,KLRK1,P2RX2,RAB21,STK38L,FBXO21,FAIM2,MON2,SETD1B,UHRF1BP1L,ERC1,DDN,ANKLE2,TMEM194A,CUX2,KIAA1033,TBC1D30,ESYT1,TENC1,MED13L,ZDHHC17,SIRT4,KCNH3,GRIP1,ABCB9,CBX5,ISCU,RIMBP2,ANP32D,ATP6V0A2,SMUG1,LEMD3,CORO1C,GABARAPL1,PRPF40B,MGAT4C,METTL7A,LETMD1,METTL21B,IFFO1,ZNF385A,NECAP1,FGFR1OP2,CLEC4E,FBXW8,GALNT8,HSPB8,SNORD59A,GLS2,HCAR1,GPR162,RND1,UTP20,KCNMB4,SLCO1B3,MRPL42,IFT81,CCDC59,ORMDL2,TBK1,CLEC2D,RACGAP1,SENP1,FAM216A,HCFC2,PDZRN4,TRHDE,SYCP3,CHST11,GALNT9,IL22,COPS7A,TAS2R9,TAS2R8,TAS2R7,TAS2R13,TAS2R10,TAS2R14,DHH,CLEC4A,HEBP1,CCDC53,GOLT1B,PLEKHA8P1,YARS2,DERA,CCDC41,IRAK4,ING4,GPN3,DDX47,GLTP,MRPL51,CLEC1B,CLEC1A,C12orf47,C1RL,ERGIC2,FKBP11,ARL6IP4,TAOK3,KLRF1,KRT76,POP5,CSAD,BIN2,ANAPC5,ANAPC7,LIMA1,TRIAP1,PPHLN1,NT5DC3,IL23A,HDAC7,TMBIM4,VPS29,WBP11,TM7SF3,TPCN1,GPR84,SLCO1C1,SLC38A2,SSH1,PRR13,PLEKHA5,RHOF,VSIG10,MANSC1,KANSL2,TESC,PARPBP,TAPBPL,SLC38A4,MAGOHB,SLC6A15,FAM90A1,RIC8B,C12orf35,APPL2,PLEKHG6,SBNO1,CASC1,TMEM19,CCDC91,DRAM1,STYK1,ETNK1,GPRC5D,SLC35E3,SVOP,STAB2,VEZT,GOLGA2P5,ZCCHC8,KIF21A,SLC48A1,SCYL2,POLR3B,FAR2,LMBR1L,ASUN,ATF7IP,CHFR,H2AFJ,FGD6,IL26,FOXJ2,CAND1,ITFG2,WSB2,LMO3,CMAS,NDUFA12,PRMT8,DIABLO,MDM1,ANKS1B,NDUFA4L2,ARNTL2,CHPT1,PARP11,ANO2,C12orf4,C12orf5,LPAR5,NUP107,SMAGP,AICDA,TMCC3,PPM1H,RIMKLB,SRGAP1,KLHDC5,PITPNM2,DIP2B,KIAA1467,EP400,DHX37,CALCOCO1,FBRSL1,DDX55,NCKAP5L,NEUROD4,FAM60A,NTN4,TRPV4,C12orf10,MRPS35,C12orf44,LHX5,ARHGAP9,IKZF4,SUDS3,ACTR6,CLEC7A,TBC1D15,C12orf43,SLC26A10,VPS33A,RSRC2,WNK1,SPATS2,CAPRIN2,AACS,TMEM106C,NUP37,OBFC2B,DDX54,NOC4L,GNPTAB,BHLHE41,B3GNT4,BCL2L14,TCTN1,ADIPOR2,ACSS3,RPAP3,OGFOD2,VPS37B,BBS10,RERGL,C12orf49,PIP4K2C,FLJ13224,TCTN2,PLBD1,PYROXD1,NANOG,DNAJC22,NAA25,SLC24A6,ADAMTS20,CEP290,RNF34,CCDC92,MTERFD3,PUS1,ACAD10,C12orf39,DUSP16,WNT5B,SLC38A1,CSRNP2,APOLD1,GSG1,PUS7L,CDCA3,GLT8D2,THAP2,C12orf32,NRIP2,INHBE,RBP5,TMTC1,KCTD10,RACGAP1P,FAM186B,USP44,SLC41A2,LRRIQ1,C12orf26,TMEM117,TCHP,COQ5,LLPH,WIBG,CCDC77,SARNP,HVCN1,ACRBP,SRRM4,CCDC62,KDM2B,CAPS2,SPSB2,UNC119B,USP30,EFCAB4B,TUBA1C,ZC3H10,ORAI1,RNFT2,C12orf34,ALG10,SPRYD3,C12orf52,MFSD5,MGC14436,C12orf62,RERG,DNAJC14,ZCRB1,CCDC65,ANKRD13A,NAV3,PLCZ1,TMEM116,UBE3B,LACRT,C12orf23,FMNL3,CERS5,C12orf29,XRCC6BP1,FAM113B,C12orf65,TMEM132C,CCDC64,HELB,MARCH9,COQ10A,HTR7P1,CACNA2D4,CAPZA3,CLEC6A,KRT71,C12orf57,LARP4,SDSL,SLC2A13,MBD6,TMEM132B,OSBPL8,ARHGEF25,C12orf56,IQCD,LOC116437,AGAP2,DCD,RAB3IP,LOH12CR1,MUCL1,DEPDC4,LRRK2,CCDC38,C12orf59,FAM186A,C12orf45,OR10P1,SDR9C7,LRIG3,TMEM132D,SLC15A4,RHEBL1,C12orf54,ZNF641,OR10AD1,TPH2,SP7,GTSF1,OR10A7,KRT74,NEDD1,SLC9A7P1,IKBIP,HIST4H4,ERP27,FGD4,AEBP2,ASCL4,BTBD11,SPIC,ANO4,ALKBH2,FOXN4,SPPL3,ASB8,MYL6B,BRI3BP,KRT72,PRICKLE1,AMDHD1,SLC2A14,BCDIN3D,ALG10B,GLIPR1L2,FAM101A,ZNF664,LINC00477,LYRM5,CPNE8,TMEM120B,WDR66,GLT1D1,TSPAN19,BEST3,E2F7,LOC144481,LOC144486,KRT80,A2ML1,LOC144571,C12orf66,C12orf60,FBXL14,RAD9B,FAM109A,LOC144742,KRT19P2,TMTC2,CLEC12A,CLECL1,TMTC3,C12orf50,ALDH1L2,IFLTD1,DENND5B,GRASP,SLC5A8,PPTC7,CCDC63,CCDC60,CLEC4C,ZNF384,DSTNP2,PGAM5,KRT78,RILPL2,DNAH10,AMN1,DTX3,METTL7B,C12orf77,ZFC3H1,PLBD2,FAM71C,RMST,C12orf12,C12orf53,DCP1B,ANO6,ARID2,RPSAP52,SLC17A8,STAC3,C12orf33,GNN,MSRB3,METTL20,LRRC43,OR6C74,OR6C3,TCP11L2,LOC255411,LOC255480,LOC256021,GLIPR1L1,TAS2R43,TAS2R31,TAS2R46,TAS2R30,TAS2R19,TAS2R20,TAS2R50,POC1B,OTOGL,MATL2963,CD163L1,LOC283332,LOC283335,ZNF740,RPL13P5,RASSF3,B4GALNT3,OR6C6,ANKRD52,SLC39A5,SPRYD4,GPR133,MORN3,LOC283392,LOC283403,LOC283404,C12orf61,DPY19L2,CLEC9A,C12orf36,GAS2L3,LINC00485,LOC283440,MYO1H,C12orf51,KSR2,GATC,HNF1A-AS1,C12orf40,GXYLT1,TMPRSS12,KRT6C,DDX51,KRT73,MMAB,CLEC4D,HCAR2,LOC338758,C1QL4,TMEM119,KRT79,LOC338799,C12orf74,FAM19A2,LOC338817,SLCO1B7,C12orf70,OVCH1,SYT10,ACSM4,ANKRD33,OR6C2,OR6C4,H1FNT,OR8S1,AMIGO2,EP400NL,RILPL1,TAS2R42,DPPA3,NANOGNB,LOC374443,KRT77,PTPRQ,C12orf42,LRRC10,IL31,CLEC2A,CLEC12B,RPL13AP20,REP15,C12orf68,C12orf75,CCDC42B,TMEM233,SETD8,LOC387895,LOC389634,OR6C1,OR6C75,OR6C76,OR6C70,LOC400027,LOC400043,FLJ41278,MKRN9P,C12orf76,LOC400084,FLJ37505,FIGNL2,OR6C65,OR6C68,MIRLET7I,MIR135A2,MIR141,MIR196A2,MIR200C,MIR26A2,C12orf37,IQSEC3,ZNF705A,FAM66C,DDX12P,C12orf69,H3F3C,DBX2,FLJ12825,TMEM198B,PLEKHG7,LOC440117,FLJ31485,NUDT4P1,TSPAN11,OR9K2,MIR148B,MIR331,EID3,LOH12CR2,ATXN7L3B,CLLU1OS,CLLU1,MIR492,LOC574538,HIGD1C,POU5F1P3,LOC642846,MAP1LC3B2,LOC643339,LOC643770,GLYCAM1,LOC647589,FAM86FP,PRB2,LRTM2,HNRNPA1P10,SCARNA12,SCARNA11,FAM138D,SNORA2A,SNORA2B,SNORA34,SNORA49,SNORA53,LOC678655,SNORD59B,SCARNA10,MIR548C,MIR613,MIR614,MIR615,MIR617,MIR618,MIR620,LOC728084,C12orf73,SKP1P2,LOC728739,C12orf71,SLC15A5,MRS2P2,HOTAIR,MIR920,LOC100128191,LOC100128554,LOC100129361,LOC100130238,LOC100130776,LOC100131138,LOC100131733,LOC100190940,LOC100233209,LOC100240734,LOC100240735,LOC100271702,LOC100286844,MANSC4,LOC100287314,LINC00173,LOC100287944,LOC100288778,ZNF605,LOC100292680,MIR1252,MIR1279,MIR1228,MIR1827,MIR1293,MIR1291,MIR1178,MIR1244-1,MIR1251,LOC100335030,SNORA70G,MIR1244-3,MIR1244-2,MIR4302,MIR4303,MIR4304,KLRF2,LOC100499405,MIR3685,MIR3649,MIR3612,MIR3652,MIR3922,MIR548Z,MIR3913-2,MIR3913-1,MIR3908,LOC100505978,LOC100506314,LOC100506393,LOC100506451,LOC100506649,LOC100506660,LOC100506668,LOC100506844,LOC100507055,LOC100507066,LOC100507091,LOC100507206,LOC100507250,LOC100507377,LOC100507424,BLOC1S1-RDH5,POC1B-GALNT4,KLRC4-KLRK1,ZNF664-FAM101A,PRH1-PRR4,MIR4699,MIR4498,MIR548AL,MIR4701,MIR3974,MIR4472-2,MIR4700,MIR3198-2,MIR4497,MIR4698,LOC100652846,LOC100652999, 3 PRB1,LOC338817,PRB2, 0 12p13.2 0.23106 -16 13 40857430 44166351 41485211 47374717 39915840 67862094 131 hsa-mir-3169,hsa-mir-1297,hsa-mir-759,hsa-mir-15a,hsa-mir-3168,hsa-mir-621,hsa-mir-4305,ATP7B,RCBTB2,CPB2,ELF1,ESD,FOXO1,MLNR,GTF2F2,GUCY1B2,HTR2A,KPNA3,LCP1,NEK3,PCDH8,PCDH9,RB1,TPT1,TNFSF11,SUCLA2,DLEU2,TSC22D1,ITM2B,MTRF1,UTP14C,LPAR6,SLC25A15,LHFP,TRIM13,MRPS31,DLEU1,OLFM4,SUGT1,LECT1,WBP4,AKAP11,FNDC3A,KIAA0564,ZC3H13,LRCH1,INTS6,CKAP2,NUFIP1,PCDH17,C13orf15,MED4,DNAJC15,VPS36,PHF11,ENOX1,RCBTB1,NUDT15,KIAA1704,THSD1,CYSLTR2,SPRYD7,COG6,PCDH20,NAA16,RNASEH2B,DHRS12,KIAA0226L,TDRD3,CDADC1,CAB39L,DIAPH3,CCDC70,COG3,SETDB2,KBTBD7,EBPL,KBTBD6,EPSTI1,ARL11,WDFY2,LINC00284,PRR20A,FAM216B,LACC1,LINC00330,HNRNPA1L2,ST13P4,DGKH,CCDC122,FAM194B,SPERT,DLEU7,FAM124A,TPTE2P3,CTAGE10P,SLC25A30,OR7E156P,SUGT1P3,SIAH3,KCNRG,LINC00282,NEK5,THSD1P1,KCTD4,SERP2,LINC00548,MIR15A,MIR16-1,ALG11,TSC22D1-AS1,TTL,SERPINE3,SNORA31,MIR621,PRR20B,PRR20C,PRR20D,PRR20E,TPT1-AS1,MIR1297,MIR759,MIR320D1,MIR4305,MIR3169,MIR3613,OR7E37P,LOC100507240,LOC100509894,MIR4703,LOC100616668, 45 hsa-mir-3168,CPB2,ELF1,ESD,GTF2F2,LCP1,TPT1,TNFSF11,TSC22D1,MTRF1,WBP4,AKAP11,KIAA0564,ZC3H13,LRCH1,NUFIP1,C13orf15,DNAJC15,ENOX1,KIAA1704,NAA16,KIAA0226L,COG3,KBTBD7,KBTBD6,EPSTI1,LINC00284,FAM216B,LACC1,LINC00330,DGKH,CCDC122,FAM194B,SPERT,SLC25A30,SUGT1P3,SIAH3,KCTD4,SERP2,TSC22D1-AS1,SNORA31,TPT1-AS1,OR7E37P,LOC100507240,LOC100509894, 0 13q14.11 0.014805 -17 15 28487894 28488272 28099124 31134902 24928792 32932819 130 hsa-mir-211,APBA2,CHRNA7,GABRA5,GABRB3,GABRG3,IPW,TRPM1,OCA2,SNRPN,TJP1,UBE3A,PAR5,HERC2,SNURF,ARHGAP11A,FAN1,FAM189A1,DKFZP434L187,KLF13,MTMR10,NDNL2,ATP10A,CHRFAM7A,ULK4P3,ULK4P1,ARHGAP11B,SNORD107,PAR1,OTUD7A,LOC283710,GOLGA8G,SNORD108,SNORD109A,SNORD109B,SNORD115-1,SNORD64,PAR4,PAR-SN,MIR211,HERC2P9,WHAMMP2,LOC503519,LOC646278,LOC653075,SNORD116-19,SNORD116-1,SNORD116-2,SNORD116-3,SNORD116-4,SNORD116-5,SNORD116-6,SNORD116-7,SNORD116-8,SNORD116-9,SNORD116-10,SNORD116-11,SNORD116-12,SNORD116-13,SNORD116-14,SNORD116-15,SNORD116-16,SNORD116-17,SNORD116-18,SNORD116-20,SNORD116-21,SNORD116-22,SNORD116-23,SNORD116-24,SNORD116-25,SNORD115-2,SNORD116-26,SNORD116-27,SNORD115-3,SNORD115-4,SNORD115-5,SNORD115-6,SNORD115-7,SNORD115-8,SNORD115-9,SNORD115-10,SNORD115-11,SNORD115-12,SNORD115-13,SNORD115-14,SNORD115-15,SNORD115-16,SNORD115-17,SNORD115-18,SNORD115-19,SNORD115-20,SNORD115-21,SNORD115-22,SNORD115-23,SNORD115-25,SNORD115-26,SNORD115-29,SNORD115-30,SNORD115-31,SNORD115-32,SNORD115-33,SNORD115-34,SNORD115-35,SNORD115-36,SNORD115-37,SNORD115-38,SNORD115-39,SNORD115-40,SNORD115-41,SNORD115-42,SNORD115-43,SNORD115-44,SNORD116-28,SNORD116-29,SNORD115-48,SNORD115-24,SNORD115-27,SNORD115-28,SNORD115-45,SNORD115-47,LOC100128714,GOLGA8F,ULK4P2,LOC100288615,LOC100288637,LOC100289656,MIR4509-1,MIR4509-2,MIR4509-3,MIR4715, 22 APBA2,TJP1,HERC2,FAM189A1,DKFZP434L187,NDNL2,CHRFAM7A,ULK4P3,ULK4P1,ARHGAP11B,GOLGA8G,HERC2P9,WHAMMP2,LOC646278,LOC653075,GOLGA8F,ULK4P2,LOC100288637,LOC100289656,MIR4509-1,MIR4509-2,MIR4509-3, 0 15q12 0.13153 -18 16 3055639 4036155 3773953 3932725 3769143 4010711 1 CREBBP, 1 CREBBP, 0 16p13.3 0.0066248 -19 16 78583434 78585129 78129906 79246771 54315370 89379936 383 hsa-mir-1910,hsa-mir-3182,hsa-mir-1972-2,hsa-mir-140,hsa-mir-1538,hsa-mir-328,hsa-mir-138-2,AARS,AP1G1,AFG3L1P,AGRP,AMFR,APRT,ZFHX3,BBS2,C16orf3,CA5A,CA7,CALB2,CBFA2T3,CBFB,CDH1,CDH3,CDH5,CDH8,CDH11,CDH13,CDH15,CDH16,CES1,CETP,CNGB1,COX4I1,CSNK2A2,CTRB1,CTRL,CYBA,DHODH,NQO1,DYNC1LI2,DPEP1,E2F4,FANCA,FOXF1,FOXL1,FOXC2,GALNS,GAS8,GCSH,GLG1,GNAO1,GOT2,HAS3,HP,HPR,HSBP1,HSD11B2,HSD17B2,HSF4,IRF8,KARS,KIFC3,LCAT,MAF,MC1R,CHST6,MMP2,MMP15,MT1A,MT1B,MT1E,MT1F,MT1G,MT1H,MT1JP,MT1M,MT1L,MT1X,MT2A,MT3,MVD,NFATC3,CHMP1A,PLCG2,POLR2C,PSKH1,PSMB10,PSMD7,RPL13,RRAD,CCL17,CCL22,CX3CL1,ST3GAL2,SLC6A2,SLC9A5,SLC12A3,SLC12A4,SNTB2,SPG7,TAT,TERF2,TK2,ZNF19,ZNF23,GAN,SLC7A5,CDK10,TRADD,MBTPS1,CES2,NAE1,NOL3,TAF1C,SLC7A6,USP10,ATP6V0D1,GPR56,BCAR1,C16orf7,NUP93,HERPUD1,KIAA0513,PIEZO1,DHX38,IST1,ATP2C2,CLEC3A,CHST4,MPHOSPH6,NUTF2,IRX5,KATNB1,COX4NB,TUBB3,CFDP1,CTCF,NFAT5,NUDT21,WWP2,PRDM7,DDX19B,GABARAPL2,MON1B,TCF25,CNOT1,PHLPP2,ZCCHC14,KIAA0182,ATMIN,COTL1,MLYCD,SF3B3,CES3,ADAT1,CHST5,ARL2BP,EDC4,PLA2G15,COG4,PLEKHG4,DKFZP434H168,LRRC29,CPNE7,VPS4A,IL17C,NOB1,CCDC113,TMEM208,C16orf80,FHOD1,ANKRD11,ZDHHC1,OSGIN1,PARD6A,PLLP,CKLF,NIP7,FAM96B,GINS2,TPPP3,TRAPPC2L,CES1P1,WWOX,BCMO1,TERF2IP,PRMT7,NECAB2,KLHDC4,HYDIN,DEF8,DUS2L,CHTF8,LPCAT2,TXNL4B,BANP,PDPR,RFWD3,SLC38A7,OGFOD1,LRRC36,DDX19A,FBXL8,SMPD3,ZNF821,ZDHHC7,VAC14,DOK4,FTSJD1,DDX28,TSNAXIP1,CENPN,C16orf61,COQ9,CIAPIN1,THAP11,JPH3,PDP2,ZNF319,RANBP10,VAT1L,KIAA1609,WFDC1,PDF,DPEP2,DPEP3,MTHFSD,GINS3,NDRG4,ACD,DBNDD1,FA2H,IRX6,IRX3,FAM65A,TMEM231,TMCO7,C16orf57,WDR59,ELMO3,KLHL36,FBXO31,SETD6,ESRP2,FAM192A,CENPT,C16orf70,CYB5B,CMIP,GFOD2,CDT1,MAP1LC3B,PMFBP1,DYNLRB2,HSDL1,CRISPLD2,C16orf48,SLC7A6OS,NLRC5,CCDC135,CAPNS2,COG8,SPIRE2,MT4,ZNF469,B3GNT9,CIRH1A,ZNRF1,CNTNAP4,RSPRY1,MARVELD3,MTSS1L,CENPBD1,ZNF276,CCDC102A,KCNG4,SDR42E1,CMTM1,PKD1L2,RNF166,EXOSC6,C16orf46,DNAAF1,NRN1L,CMTM3,SPATA2L,C16orf55,ZC3H18,CDYL2,TMEM170A,SLC38A8,ZFP90,RLTPR,KCTD19,CMTM4,CMTM2,BEAN1,SLC22A31,IL34,TMED6,FLJ30679,LOC146513,ZFPM1,ADAD2,ZFP1,ADAMTS18,MGC23284,LINC00311,LDHD,FUK,MLKL,ZNF778,ACSF3,CPNE2,GPR114,PRSS54,CES5A,GPR97,CCDC79,CES4A,EXOC3L1,LOC283856,LINC00304,LOC283867,HTA,LOC283922,NUDT7,PDXDC2P,CLEC18C,MT1DP,SNAI3,FAM92B,ATXN1L,PKD1L3,CLEC18A,CTU2,TEPP,C16orf86,CES1P2,PABPN1L,LOC400548,LOC400550,LOC400558,C16orf74,MIR138-2,MIR140,CTRB2,MIR328,CLEC18B,SNORD68,CRNDE,MT1IP,LOC644649,KIAA0895L,SNORA46,SNORA50,SNORD71,SNORD111,LOC727710,LOC729513,LOC732275,SNORD111B,LOC100128881,LOC100129617,LOC100130015,LOC100130894,SYCE1L,LOC100287036,MIR1538,MIR1972-1,MIR1910,SNORA70D,MIR3182,MIR1972-2,MIR3935,LOC100505865,LOC100506083,LOC100506172,C16orf95,CKLF-CMTM1,MIR4720,MIR4722,MIR4719, 1 WWOX, 0 16q23.1 0.20572 -20 17 12946683 17325325 15878586 15903602 14132778 15994168 19 ADORA2B,MEIS3P1,PMP22,HS3ST3B1,TRIM16,TTC19,ZNF286A,TEKT3,MGC12916,CDRT7,ZSWIM7,CDRT15,FAM18B2,CDRT4,TBC1D26,CDRT1,CDRT15P2,FAM18B2-CDRT4,MIR4731, 1 ZSWIM7, 0 17p12 0.00078231 diff --git a/core/src/test/resources/data_clinical_caises.xml b/core/src/test/resources/data_clinical_caises.xml deleted file mode 100644 index 589235da0cb..00000000000 --- a/core/src/test/resources/data_clinical_caises.xml +++ /dev/null @@ -1,850 +0,0 @@ - - - - White Non-Hispanic - 97115001 - 66 - - - Standard of care abiraterone - - - - - 0 - 2004-08-17 - UICC_02 - T2c - N0 - M1 - - - - - 3116 - 2013-02-27 - 1 - - - - - ACP - N/D - - - 3116 - 2013-02-27 - ALK - 79.0 - U/L - - - 3116 - 2013-02-27 - HGB - 12.2 - g/L - - - 3116 - 2013-02-27 - LDH - 176 - U/L - - - 3116 - 2013-02-27 - Phos - 0.86 - mmol/L - - - 0 - 2004-08-17 - PSA - 4.7 - ng/ml - - - 3116 - 2013-02-27 - PSA - 8.6 - ug/L - - - TEST - N/D - - - - - 59 - 2004-10-15 - HORM - Prostate Cancer - Zoladex (goserelin) - 10.8 - mg - Every 3 months - - - 568 - 2006-03-08 - HORM - Prostate Cancer - Bicalutamide - 850 - 2006-12-15 - - - 932 - 2007-03-07 - HORM - Prostate Cancer - Olaparib - 2034 - 2010-03-13 - 200 - mg - Twice Daily - - - 2173 - 2010-07-30 - CHEMO - Prostate Cancer - Carboplatin - 2194 - 2010-08-20 - - - 2365 - 2011-02-07 - CHEMO - Prostate Cancer - Docetaxel - 2521 - 2011-07-13 - - - 2702 - 2012-01-10 - CLIN_TRIAL - Biomarin Phase I PARP trial - 2788 - 2012-04-05 - - - 2802 - 2012-04-19 - HORM - Prostate Cancer - Abiraterone Acetate - 1000 - mg - Daily - - - 3159 - 2013-04-11 - CLIN_TRIAL - Prostate Cancer - BKM120 Phase 1B trial - 100-120 - mg - Daily - - - 3167 - 2013-04-19 - STEROID - Prostate Cancer - Dexamethasone - 0.5 - mg - Daily - - - - - 0 - 2004-08-17 - Biopsy - Adenocarcinoma - MOD - - - - 4 - 3 - 7 - - - - - - - 0 - 2004-08-17 - Biopsy - - - 2036 - 2010-03-15 - TURP - Exact date of the procedure not known - - - - - 2128 - 2010-06-15 - Radiation Therapy, Unspecified - Local Recurrence - Prostate and Pelvis - 2144 - 2010-07-01 - 39/13 to prostate+ 30/10 to pelvis - - - - - 3095 - 2013-02-06 - Penis, Ventral Shaft - Pre-Treatment (A) - Snap frozen in foil and dry ice - - - Analysis Complete - Tissue - Soft Tissue - Fresh Frozen, Snap - 97115001-T-A-1 - 13:50 - 14:26 - Adequate - - - - - 3135 - 2013-03-18 - Pre-Treatment (A) - No buffy coat layer identified - - - Banked by Pathology - Blood - Serum - 97115001-S-1 - 15:20 - 17:10 - Adequate - - - Banked by Pathology - Blood - Serum - 97115001-S-2 - 15:20 - 17:10 - Adequate - - - Banked by Pathology - Blood - Plasma - 97115001-P-1 - 15:20 - 17:10 - Adequate - - - Banked by Pathology - Blood - Plasma - 97115001-P-2 - 15:20 - 17:10 - Adequate - - - Blood - Buffy Coat - 97115001-B-1 - - - Blood - Buccolic Swab - 97115001-BU-1 - - - Banked by Pathology - Blood - PAXgene - 97115001-PAX-2 - 15:20 - 17:26 - Adequate - - - Banked by Pathology - Blood - PAXgene - 97115001-PAX-1 - 15:20 - 17:26 - Adequate - - - - - - - 0 - 2004-08-17 - Diagnosis Date - - - 885 - 2007-01-19 - Clinical Mets Castrate - - - - - White Non-Hispanic - 97115002 - 78 - - - Other: Bicalutamide - - - - - 3517 - 2013-02-15 - HORM - Bicalutamide - 3537 - 2013-03-07 - Progression - - - 3537 - 2013-03-07 - HORM - Zoladex (goserelin) - 10.8 - mg - Every 3 months - - - - - 2453 - 2010-03-19 - Cystoprostectomy - - - 0 - 2003-07-01 - TURP - - - - - 0 - 2003-07-01 - Brachytherapy - 0 - 2003-07-01 - - - 2557 - 2010-07-01 - Radiation Therapy, Unspecified - 2557 - 2010-07-01 - - - - - 3536 - 2013-03-06 - Right iliac crest - Post-Treatment (C) - 8G 4 in - - - Analysis Complete - Tissue - Bone - Fresh Frozen, Direct - 97115002-T-C-1 - 12:03 - 12:04 - Adequate - - - - - 3536 - 2013-03-06 - Pre-Treatment (A) - SST tube drawn separetly at 12:40 - - - Banked by Pathology - Blood - Serum - 97115002-S-1 - 11:30 - 15:10 - Adequate - - - Banked by Pathology - Blood - Serum - 97115002-S-2 - 11:30 - 15:10 - Adequate - - - Banked by Pathology - Blood - Plasma - 97115002-P-1 - 11:30 - 13:22 - Adequate - - - Banked by Pathology - Blood - Plasma - 97115002-P-2 - 11:30 - 13:22 - Adequate - - - Library Construction Unsuccessful - Blood - Buffy Coat - 97115002-B-1 - 11:30 - 13:22 - Adequate - - - In Transit to Analysis - Blood - Buccolic Swab - 97115002-BU-1 - Adequate - - - Banked by Pathology - Blood - PAXgene - 97115002-PAX-1 - 11:30 - 15:13 - Adequate - - - Banked by Pathology - Blood - PAXgene - 97115002-PAX-2 - 11:30 - 15:13 - Adequate - - - - - - - 0 - 2003-07-01 - Diagnosis Date - - - 3653 - 2013-07-01 - Clinical Mets Castrate - - - - - White Non-Hispanic - 97115003 - 73 - - - Standard of care abiraterone - - - - - 0 - 2000-02-08 - UICC_02 - T3b - N0 - M0 - - - - - 731 - 2002-02-08 - PSA - 21.2 - ng/ml - - - - - 36 - 2000-03-15 - HORM - Zoladex (goserelin) - 3528 - 2009-10-06 - 10.8 - mg - Every 3 months - Progression - - - 1498 - 2004-03-16 - HORM - Casodex (bicalutamide) - 2058 - 2005-09-27 - 50 - mg - Daily - Progression - - - 2307 - 2006-06-03 - HORM - Dexamethasone - 3528 - 2009-10-06 - 0.5 - mg - Daily - Progression - - - 3808 - 2010-07-13 - HORM - Cyproterone acetate - 3858 - 2010-09-01 - 100 - mg - Three Times Daily - Completed Treatment - - - 3815 - 2010-07-20 - HORM - Zoladex (goserelin) - 10.8 - mg - Every 3 months - - - 3528 - 2009-10-06 - HORM - Pamidronate (Aredia) - 3717 - 2010-04-13 - Unknown - - - 3909 - 2010-10-22 - HORM - Zoledronic Acid (Zometa) - 3979 - 2010-12-31 - 4 - mg - Every 3 months - Unknown - - - 4523 - 2012-06-27 - HORM - Abiraterone Acetate - 4775 - 2013-03-06 - 250 - mg - Four Times Daily - Progression - - - 4234 - 2011-09-12 - CHEMO - Docetaxel (part of OGX-011-11) - 4375 - 2012-01-31 - 106 - mg - every 3 weeks - 6 - Toxicity - - - 4719 - 2013-01-09 - CLIN_TRIAL - AT13387 - 4761 - 2013-02-20 - 363 - mg - Three Times Weekly - 2 - Progression - - - 4234 - 2011-09-12 - HORM - Custirsen (part of OGX-011-11) - 4375 - 2012-01-31 - 640 - mg - Three Times Weekly - 6 - Toxicity - - - 4803 - 2013-04-03 - CHEMO - Cabazitaxel - 20 - mg - every 3 weeks - - - 4040 - 2011-03-02 - AA - MDV3100/placebo - 4181 - 2011-07-21 - 40 - 160 - mg - Orally - Daily - - - - - 4749 - 2013-02-08 - Biopsy - Adenocarcinoma - POOR - - - UICC_02 - pT3b - N0 - M0 - G3 - - - - - 3 - 5 - 8 - - - - - - - 4749 - 2013-02-08 - Biopsy - - - - - 2830 - 2007-11-08 - High dose - Palliative - Prostate - 2876 - 2007-12-24 - 36 - Gy - 6 - Completed Treatment - - - 4781 - 2013-03-12 - External Beam - Palliative - L1-L5 spine - 4787 - 2013-03-18 - 20 - Gy - 5 - Completed Treatment - - - - - 4523 - 2012-06-27 - Left Supraclavicular node - Pre-Treatment (A) - 18G - Snap frozen in foil and liquid nitrogen - - - Analysis Complete - Tissue - Soft Tissue - Fresh Frozen, Snap - 97115003-T-A-1 - 12:54 - 12:55 - Adequate - - - - - 4787 - 2013-03-18 - Pre-Treatment (A) - No buffy coat layer identified - - - Banked by Pathology - Blood - Serum - 97115003-S-1 - 11:45 - 14:01 - Adequate - - - Banked by Pathology - Blood - Serum - 97115003-S-2 - 11:45 - 14:01 - Adequate - - - Banked by Pathology - Blood - Plasma - 97115003-P-1 - 11:45 - 14:01 - Adequate - - - Banked by Pathology - Blood - Plasma - 97115003-P-2 - 11:45 - 14:01 - Adequate - - - Blood - Buffy Coat - 97115003-B-1 - - - Blood - Buccolic Swab - 97115003-BU-1 - - - Banked by Pathology - Blood - PAXgene - 97115003-PAX-1 - 11:45 - 14:01 - Adequate - - - Banked by Pathology - Blood - PAXgene - 97115003-PAX-2 - 11:45 - 14:01 - Adequate - - - - - - - 0 - 2000-02-08 - Diagnosis Date - - - 15 - 2000-02-23 - Localized - - - 1001 - 2002-11-05 - Rising PSA Non-Castrate - - - 2058 - 2005-09-27 - Rising PSA Castrate - - - 4096 - 2011-04-27 - Clinical Mets Castrate - - - - \ No newline at end of file diff --git a/core/src/test/resources/data_cna_discrete_import_test.txt b/core/src/test/resources/data_cna_discrete_import_test.txt deleted file mode 100644 index 643010a3ec8..00000000000 --- a/core/src/test/resources/data_cna_discrete_import_test.txt +++ /dev/null @@ -1,26 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -ETV1 2115 TCGA-A1-A0SB-11 2 -P2RY10 27334 TCGA-A1-A0SB-11 2 -KIAA1549 57670 TCGA-A1-A0SB-11 2 -ADAMTS20 80070 TCGA-A1-A0SB-11 2 -ABLIM1 3983 TCGA-A1-A0SB-11 2 - -ETV1 2115 TCGA-A2-A04U-11 -2 Putative_Passenger Test passenger Class 2 Class annotation -P2RY10 27334 TCGA-A2-A04U-11 -2 Putative_Driver Test driver Class 1 Class annotation -KIAA1549 57670 TCGA-A2-A04U-11 -2 -ADAMTS20 80070 TCGA-A2-A04U-11 -2 - -# partial deletion gets converted into full deletion: -ABLIM1 3983 TCGA-A2-A04U-11 -1.5 Putative_Passenger Test passenger - -# Ignore hemizygous deletion and value gain: -OTOR 56914 TCGA-A2-A04U-11 0 -OTOR 56914 TCGA-A1-A0SB-11 1 -FGFR3 2261 TCGA-A2-A04U-11 0 Putative_Driver Test driver -FGFR3 2261 TCGA-A1-A0SB-11 -1 - -# This line references two genes: it will be ignored -AKT1 /// AKT2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 - -# This gene-sample combi already exists: it will be ignored -KIAA1549 57670 TCGA-A2-A04U-11 2 diff --git a/core/src/test/resources/data_cna_discrete_import_test_with_cna_events_missing.txt b/core/src/test/resources/data_cna_discrete_import_test_with_cna_events_missing.txt deleted file mode 100644 index c331de476f3..00000000000 --- a/core/src/test/resources/data_cna_discrete_import_test_with_cna_events_missing.txt +++ /dev/null @@ -1,6 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -KIAA1549 57670 TCGA-A1-A0SB-11 2 -KIAA1549 57670 TCGA-A2-A04U-11 -2 -ETV1 2115 TCGA-A1-A0SB-11 2 -# Missing event is imported in genetic_alteration table as empty value: -# ETV1 2115 TCGA-A2-A04U-11 -2 diff --git a/core/src/test/resources/data_cna_discrete_import_test_with_namespaces.txt b/core/src/test/resources/data_cna_discrete_import_test_with_namespaces.txt deleted file mode 100644 index 8fac01570e6..00000000000 --- a/core/src/test/resources/data_cna_discrete_import_test_with_namespaces.txt +++ /dev/null @@ -1,3 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 MyNamespace2.blarp InvalidNamespace.column1 -ETV1 2115 TCGA-A1-A0SB-11 2 MyValue1 MyValue2 blorp InvalidValue -P2RY10 27334 TCGA-A1-A0SB-11 2 bloerp diff --git a/core/src/test/resources/data_cna_discrete_import_test_with_namespaces2.txt b/core/src/test/resources/data_cna_discrete_import_test_with_namespaces2.txt deleted file mode 100644 index 47c8c8f4be3..00000000000 --- a/core/src/test/resources/data_cna_discrete_import_test_with_namespaces2.txt +++ /dev/null @@ -1,3 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 MyNamespace2.blarp InvalidNamespace.column1 -P2RY10 27334 TCGA-A1-A0SB-11 2 v1a v2a bloerp -P2RY10 27334 TCGA-A2-A04U-11 2 v1b v2b bleurp diff --git a/core/src/test/resources/data_cna_discrete_import_test_with_wrong_entrez_and_correct_hugo.txt b/core/src/test/resources/data_cna_discrete_import_test_with_wrong_entrez_and_correct_hugo.txt deleted file mode 100644 index 2464ae2bfac..00000000000 --- a/core/src/test/resources/data_cna_discrete_import_test_with_wrong_entrez_and_correct_hugo.txt +++ /dev/null @@ -1,3 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -KIAA1549 123456 TCGA-A1-A0SB-11 2 -KIAA1549 123456 TCGA-A2-A04U-11 -2 diff --git a/core/src/test/resources/data_cna_discrete_import_test_without_entrez_with_hugo.txt b/core/src/test/resources/data_cna_discrete_import_test_without_entrez_with_hugo.txt deleted file mode 100644 index aed6a11d558..00000000000 --- a/core/src/test/resources/data_cna_discrete_import_test_without_entrez_with_hugo.txt +++ /dev/null @@ -1,3 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -KIAA1549 NA TCGA-A1-A0SB-11 2 -KIAA1549 TCGA-A2-A04U-11 -2 diff --git a/core/src/test/resources/data_cna_discrete_import_test_without_namespaces.txt b/core/src/test/resources/data_cna_discrete_import_test_without_namespaces.txt deleted file mode 100644 index 3473cf73ec4..00000000000 --- a/core/src/test/resources/data_cna_discrete_import_test_without_namespaces.txt +++ /dev/null @@ -1,2 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -ETV1 2115 TCGA-A1-A0SB-11 2 diff --git a/core/src/test/resources/data_cna_pd_annotations.txt b/core/src/test/resources/data_cna_pd_annotations.txt deleted file mode 100644 index d7be30f82b7..00000000000 --- a/core/src/test/resources/data_cna_pd_annotations.txt +++ /dev/null @@ -1,3 +0,0 @@ -SAMPLE_ID Entrez_Gene_Id cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -TCGA-02-0001-01 999999672 Putative_Passenger Test passenger Class 2 Class 2 annotation -TCGA-02-0003-01 999999675 Putative_Driver Test driver Class 1 Class 1 annotation diff --git a/core/src/test/resources/data_mRNA_ZbyNorm.txt b/core/src/test/resources/data_mRNA_ZbyNorm.txt deleted file mode 100644 index 5116d2eae95..00000000000 --- a/core/src/test/resources/data_mRNA_ZbyNorm.txt +++ /dev/null @@ -1,6 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-02-0001 TCGA-02-0002 TCGA-02-0003 TCGA-02-0004 TCGA-02-0005 TCGA-02-0006 -AACS 65985 NA NA NA NA NA NA -ELMO2 63916 2.5981 -0.8660 -0.8660 0.8660 0.8660 4.3301 -TP53 7157 NA NA NA NA NA NA -RPS11 6205 -0.8660 2.5981 0.8660 0.8660 -0.8660 -2.5981 -PNMA1 9240 0.4330 0.8660 -0.8660 0.8660 -0.8660 1.7321 diff --git a/core/src/test/resources/data_mutational_signature.txt b/core/src/test/resources/data_mutational_signature.txt deleted file mode 100644 index 3f256f35a08..00000000000 --- a/core/src/test/resources/data_mutational_signature.txt +++ /dev/null @@ -1,61 +0,0 @@ -ENTITY_STABLE_ID name description TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 mean_1 0.370266873 0.010373016 0.005419294 0.022753384 0.037687823 0.016708976 0.100042446 0.104214723 -mean_10 mean_10 mean_10 0.002709404 0.009212318 0.002650657 0.005475484 0.074175715 0.033049207 0.027323826 0.008861145 -mean_11 mean_11 mean_11 0.006035782 0.010095773 0.011926486 0.010637541 0.012168938 0.006641113 0.025730547 0.020463421 -mean_12 mean_12 mean_12 0.026432791 0.012953054 0.002587003 0.02225923 0.031026708 0.01642898 0.022392184 0.013437576 -mean_13 mean_13 mean_13 0.002533773 0.012080707 0.06750656 0.403672528 0.011124 0.007631916 0.018970187 0.006076126 -mean_14 mean_14 mean_14 0.006562519 0.009705064 0.005008429 0.01169992 0.02000342 0.014500145 0.034613722 0.030906098 -mean_15 mean_15 mean_15 0.011970661 0.013967505 0.003583145 0.066176992 0.024139531 0.012422269 0.035150854 0.024233274 -mean_16 mean_16 mean_16 0.018075581 0.016174795 0.004085478 0.044836595 0.021500178 0.033960161 0.017962899 0.018849434 -mean_17 mean_17 mean_17 0.004132642 0.017328434 0.001582939 0.00748642 0.018217142 0.008715209 0.029658706 0.021823903 -mean_18 mean_18 mean_18 0.005101312 0.027691339 0.078176692 0.007035636 0.016781154 0.226542324 0.030862216 0.05876765 -mean_19 mean_19 mean_19 0.018196853 0.016768977 0.010922822 0.014000266 0.011772131 0.011231503 0.035316214 0.094947481 -mean_2 mean_2 mean_2 0.002663685 0.009194336 0.003716748 0.067693367 0.019050891 0.008820839 0.024258107 0.005814542 -mean_20 mean_20 mean_20 0.03066836 0.012905178 0.003569324 0.014119672 0.022474579 0.014813438 0.055457368 0.030155165 -mean_21 mean_21 mean_21 0.010964959 0.011272353 0.002258851 0.051853446 0.281501917 0.01281546 0.044179589 0.008190074 -mean_22 mean_22 mean_22 0.028491957 0.010217024 0.004586289 0.011222009 0.019770493 0.008535491 0.024637853 0.020913163 -mean_23 mean_23 mean_23 0.00396734 0.010046981 0.01277244 0.007964559 0.011004478 0.008391836 0.034836096 0.03286779 -mean_24 mean_24 mean_24 0.032792827 0.078245387 0.066150339 0.014742662 0.017324086 0.061761186 0.017605536 0.051708779 -mean_25 mean_25 mean_25 0.011646217 0.048154399 0.03076214 0.013605822 0.038587852 0.013944057 0.023546505 0.037501919 -mean_26 mean_26 mean_26 0.015537112 0.013825612 0.002464907 0.028813826 0.070298683 0.01999462 0.030799083 0.009143951 -mean_27 mean_27 mean_27 0.003465676 0.012766477 0.004909123 0.00658944 0.010038977 0.008511252 0.023474418 0.009076485 -mean_28 mean_28 mean_28 0.003755223 0.011667726 0.001739293 0.005067195 0.012723938 0.007772049 0.021565925 0.007837668 -mean_29 mean_29 mean_29 0.010813509 0.013306168 0.034629865 0.011708457 0.01498353 0.042949985 0.030807758 0.04361619 -mean_3 mean_3 mean_3 0.012076334 0.399378181 0.058149399 0.024712129 0.022463858 0.069775315 0.022253226 0.023919542 -mean_30 mean_30 mean_30 0.021187235 0.019180665 0.007104322 0.015637667 0.021432941 0.020436345 0.036460701 0.022300431 -mean_4 mean_4 mean_4 0.02998631 0.05161966 0.066550323 0.017921856 0.016096543 0.179497941 0.024659786 0.097992724 -mean_5 mean_5 mean_5 0.065346508 0.065105663 0.005317173 0.039082099 0.025806853 0.071908149 0.028765511 0.030413987 -mean_6 mean_6 mean_6 0.215904676 0.009298163 0.004855268 0.020464262 0.030032579 0.01055262 0.094946543 0.100148333 -mean_7 mean_7 mean_7 0.008428142 0.011008883 0.009634254 0.010727403 0.037470752 0.007375711 0.036357093 0.025096172 -mean_8 mean_8 mean_8 0.009033066 0.04154581 0.483003282 0.014265047 0.029063134 0.028977736 0.026974185 0.031083861 -mean_9 mean_9 mean_9 0.011252674 0.014910352 0.004377151 0.007775086 0.021277177 0.015334168 0.020390915 0.009638392 -confidence_1 confidence_1 confidence_1 0.653 0.066 0.05 0.129 0.1415 0.079 0.234 0.274 -confidence_10 confidence_10 confidence_10 0.0235 0.0645 0.022 0.0465 0.2595 0.1505 0.1 0.062 -confidence_11 confidence_11 confidence_11 0.0465 0.067 0.115 0.0775 0.0745 0.0535 0.0995 0.098 -confidence_12 confidence_12 confidence_12 0.1375 0.068 0.024 0.1275 0.1165 0.0945 0.09 0.074 -confidence_13 confidence_13 confidence_13 0.0185 0.0685 0.5655 0.936 0.0665 0.052 0.083 0.0515 -confidence_14 confidence_14 confidence_14 0.054 0.067 0.0405 0.0785 0.0845 0.0755 0.119 0.1415 -confidence_15 confidence_15 confidence_15 0.0745 0.0745 0.034 0.284 0.092 0.0745 0.1185 0.1215 -confidence_16 confidence_16 confidence_16 0.1025 0.0795 0.031 0.196 0.1 0.139 0.0815 0.0895 -confidence_17 confidence_17 confidence_17 0.036 0.0825 0.011 0.0605 0.094 0.0555 0.11 0.1105 -confidence_18 confidence_18 confidence_18 0.0445 0.1105 0.297 0.0615 0.069 0.434 0.1055 0.1965 -confidence_19 confidence_19 confidence_19 0.0955 0.073 0.0885 0.086 0.0725 0.065 0.114 0.2685 -confidence_2 confidence_2 confidence_2 0.0235 0.0525 0.0325 0.293 0.0945 0.057 0.1015 0.0415 -confidence_20 confidence_20 confidence_20 0.14 0.0745 0.0305 0.0835 0.101 0.0725 0.1505 0.1325 -confidence_21 confidence_21 confidence_21 0.0725 0.072 0.0215 0.24 0.5255 0.09 0.131 0.0635 -confidence_22 confidence_22 confidence_22 0.2335 0.0685 0.0415 0.09 0.0865 0.063 0.103 0.126 -confidence_23 confidence_23 confidence_23 0.0365 0.0605 0.12 0.0635 0.064 0.0615 0.112 0.1525 -confidence_24 confidence_24 confidence_24 0.1975 0.1925 0.297 0.0905 0.081 0.215 0.08 0.195 -confidence_25 confidence_25 confidence_25 0.0695 0.134 0.132 0.083 0.123 0.079 0.094 0.1365 -confidence_26 confidence_26 confidence_26 0.0955 0.073 0.023 0.1475 0.183 0.0995 0.109 0.067 -confidence_27 confidence_27 confidence_27 0.0305 0.0795 0.05 0.053 0.0675 0.0605 0.0955 0.064 -confidence_28 confidence_28 confidence_28 0.0325 0.077 0.0135 0.044 0.0785 0.0555 0.1 0.0605 -confidence_29 confidence_29 confidence_29 0.0835 0.0725 0.172 0.074 0.08 0.138 0.111 0.164 -confidence_3 confidence_3 confidence_3 0.083 0.629 0.1835 0.12 0.101 0.21 0.0845 0.1215 -confidence_30 confidence_30 confidence_30 0.123 0.096 0.0625 0.091 0.0995 0.107 0.1145 0.107 -confidence_4 confidence_4 confidence_4 0.1685 0.1485 0.2155 0.1005 0.08 0.382 0.0995 0.2815 -confidence_5 confidence_5 confidence_5 0.218 0.1645 0.0445 0.1665 0.1045 0.187 0.114 0.1155 -confidence_6 confidence_6 confidence_6 0.4325 0.062 0.043 0.1275 0.113 0.069 0.2225 0.2885 -confidence_7 confidence_7 confidence_7 0.0705 0.075 0.0975 0.0765 0.137 0.0545 0.1105 0.1225 -confidence_8 confidence_8 confidence_8 0.07 0.132 0.859 0.0935 0.106 0.123 0.106 0.131 -confidence_9 confidence_9 confidence_9 0.081 0.0775 0.033 0.0615 0.0845 0.082 0.09 0.064 \ No newline at end of file diff --git a/core/src/test/resources/data_mutational_signature_new.txt b/core/src/test/resources/data_mutational_signature_new.txt deleted file mode 100644 index 789d90522f1..00000000000 --- a/core/src/test/resources/data_mutational_signature_new.txt +++ /dev/null @@ -1,61 +0,0 @@ -ENTITY_STABLE_ID name description TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 new mean_1 0.370266873 0.010373016 0.005419294 0.022753384 0.037687823 0.016708976 0.100042446 0.104214723 -mean_10 mean_10 mean_10 0.002709404 0.009212318 0.002650657 0.005475484 0.074175715 0.033049207 0.027323826 0.008861145 -mean_11 mean_11 mean_11 0.006035782 0.010095773 0.011926486 0.010637541 0.012168938 0.006641113 0.025730547 0.020463421 -mean_12 mean_12 mean_12 0.026432791 0.012953054 0.002587003 0.02225923 0.031026708 0.01642898 0.022392184 0.013437576 -mean_13 mean_13 mean_13 0.002533773 0.012080707 0.06750656 0.403672528 0.011124 0.007631916 0.018970187 0.006076126 -mean_14 mean_14 mean_14 0.006562519 0.009705064 0.005008429 0.01169992 0.02000342 0.014500145 0.034613722 0.030906098 -mean_15 mean_15 mean_15 0.011970661 0.013967505 0.003583145 0.066176992 0.024139531 0.012422269 0.035150854 0.024233274 -mean_16 mean_16 mean_16 0.018075581 0.016174795 0.004085478 0.044836595 0.021500178 0.033960161 0.017962899 0.018849434 -mean_17 mean_17 mean_17 0.004132642 0.017328434 0.001582939 0.00748642 0.018217142 0.008715209 0.029658706 0.021823903 -mean_18 mean_18 mean_18 0.005101312 0.027691339 0.078176692 0.007035636 0.016781154 0.226542324 0.030862216 0.05876765 -mean_19 mean_19 mean_19 0.018196853 0.016768977 0.010922822 0.014000266 0.011772131 0.011231503 0.035316214 0.094947481 -mean_2 mean_2 mean_2 0.002663685 0.009194336 0.003716748 0.067693367 0.019050891 0.008820839 0.024258107 0.005814542 -mean_20 mean_20 mean_20 0.03066836 0.012905178 0.003569324 0.014119672 0.022474579 0.014813438 0.055457368 0.030155165 -mean_21 mean_21 mean_21 0.010964959 0.011272353 0.002258851 0.051853446 0.281501917 0.01281546 0.044179589 0.008190074 -mean_22 mean_22 mean_22 0.028491957 0.010217024 0.004586289 0.011222009 0.019770493 0.008535491 0.024637853 0.020913163 -mean_23 mean_23 mean_23 0.00396734 0.010046981 0.01277244 0.007964559 0.011004478 0.008391836 0.034836096 0.03286779 -mean_24 mean_24 mean_24 0.032792827 0.078245387 0.066150339 0.014742662 0.017324086 0.061761186 0.017605536 0.051708779 -mean_25 mean_25 mean_25 0.011646217 0.048154399 0.03076214 0.013605822 0.038587852 0.013944057 0.023546505 0.037501919 -mean_26 mean_26 mean_26 0.015537112 0.013825612 0.002464907 0.028813826 0.070298683 0.01999462 0.030799083 0.009143951 -mean_27 mean_27 mean_27 0.003465676 0.012766477 0.004909123 0.00658944 0.010038977 0.008511252 0.023474418 0.009076485 -mean_28 mean_28 mean_28 0.003755223 0.011667726 0.001739293 0.005067195 0.012723938 0.007772049 0.021565925 0.007837668 -mean_29 mean_29 mean_29 0.010813509 0.013306168 0.034629865 0.011708457 0.01498353 0.042949985 0.030807758 0.04361619 -mean_3 mean_3 mean_3 0.012076334 0.399378181 0.058149399 0.024712129 0.022463858 0.069775315 0.022253226 0.023919542 -mean_30 mean_30 mean_30 0.021187235 0.019180665 0.007104322 0.015637667 0.021432941 0.020436345 0.036460701 0.022300431 -mean_4 mean_4 mean_4 0.02998631 0.05161966 0.066550323 0.017921856 0.016096543 0.179497941 0.024659786 0.097992724 -mean_5 mean_5 mean_5 0.065346508 0.065105663 0.005317173 0.039082099 0.025806853 0.071908149 0.028765511 0.030413987 -mean_6 mean_6 mean_6 0.215904676 0.009298163 0.004855268 0.020464262 0.030032579 0.01055262 0.094946543 0.100148333 -mean_7 mean_7 mean_7 0.008428142 0.011008883 0.009634254 0.010727403 0.037470752 0.007375711 0.036357093 0.025096172 -mean_8 mean_8 mean_8 0.009033066 0.04154581 0.483003282 0.014265047 0.029063134 0.028977736 0.026974185 0.031083861 -mean_9 mean_9 mean_9 0.011252674 0.014910352 0.004377151 0.007775086 0.021277177 0.015334168 0.020390915 0.009638392 -confidence_1 confidence_1 confidence_1 0.653 0.066 0.05 0.129 0.1415 0.079 0.234 0.274 -confidence_10 confidence_10 confidence_10 0.0235 0.0645 0.022 0.0465 0.2595 0.1505 0.1 0.062 -confidence_11 confidence_11 confidence_11 0.0465 0.067 0.115 0.0775 0.0745 0.0535 0.0995 0.098 -confidence_12 confidence_12 confidence_12 0.1375 0.068 0.024 0.1275 0.1165 0.0945 0.09 0.074 -confidence_13 confidence_13 confidence_13 0.0185 0.0685 0.5655 0.936 0.0665 0.052 0.083 0.0515 -confidence_14 confidence_14 confidence_14 0.054 0.067 0.0405 0.0785 0.0845 0.0755 0.119 0.1415 -confidence_15 confidence_15 confidence_15 0.0745 0.0745 0.034 0.284 0.092 0.0745 0.1185 0.1215 -confidence_16 confidence_16 confidence_16 0.1025 0.0795 0.031 0.196 0.1 0.139 0.0815 0.0895 -confidence_17 confidence_17 confidence_17 0.036 0.0825 0.011 0.0605 0.094 0.0555 0.11 0.1105 -confidence_18 confidence_18 confidence_18 0.0445 0.1105 0.297 0.0615 0.069 0.434 0.1055 0.1965 -confidence_19 confidence_19 confidence_19 0.0955 0.073 0.0885 0.086 0.0725 0.065 0.114 0.2685 -confidence_2 confidence_2 confidence_2 0.0235 0.0525 0.0325 0.293 0.0945 0.057 0.1015 0.0415 -confidence_20 confidence_20 confidence_20 0.14 0.0745 0.0305 0.0835 0.101 0.0725 0.1505 0.1325 -confidence_21 confidence_21 confidence_21 0.0725 0.072 0.0215 0.24 0.5255 0.09 0.131 0.0635 -confidence_22 confidence_22 confidence_22 0.2335 0.0685 0.0415 0.09 0.0865 0.063 0.103 0.126 -confidence_23 confidence_23 confidence_23 0.0365 0.0605 0.12 0.0635 0.064 0.0615 0.112 0.1525 -confidence_24 confidence_24 confidence_24 0.1975 0.1925 0.297 0.0905 0.081 0.215 0.08 0.195 -confidence_25 confidence_25 confidence_25 0.0695 0.134 0.132 0.083 0.123 0.079 0.094 0.1365 -confidence_26 confidence_26 confidence_26 0.0955 0.073 0.023 0.1475 0.183 0.0995 0.109 0.067 -confidence_27 confidence_27 confidence_27 0.0305 0.0795 0.05 0.053 0.0675 0.0605 0.0955 0.064 -confidence_28 confidence_28 confidence_28 0.0325 0.077 0.0135 0.044 0.0785 0.0555 0.1 0.0605 -confidence_29 confidence_29 confidence_29 0.0835 0.0725 0.172 0.074 0.08 0.138 0.111 0.164 -confidence_3 confidence_3 confidence_3 0.083 0.629 0.1835 0.12 0.101 0.21 0.0845 0.1215 -confidence_30 confidence_30 confidence_30 0.123 0.096 0.0625 0.091 0.0995 0.107 0.1145 0.107 -confidence_4 confidence_4 confidence_4 0.1685 0.1485 0.2155 0.1005 0.08 0.382 0.0995 0.2815 -confidence_5 confidence_5 confidence_5 0.218 0.1645 0.0445 0.1665 0.1045 0.187 0.114 0.1155 -confidence_6 confidence_6 confidence_6 0.4325 0.062 0.043 0.1275 0.113 0.069 0.2225 0.2885 -confidence_7 confidence_7 confidence_7 0.0705 0.075 0.0975 0.0765 0.137 0.0545 0.1105 0.1225 -confidence_8 confidence_8 confidence_8 0.07 0.132 0.859 0.0935 0.106 0.123 0.106 0.131 -confidence_9 confidence_9 confidence_9 0.081 0.0775 0.033 0.0615 0.0845 0.082 0.09 0.064 \ No newline at end of file diff --git a/core/src/test/resources/data_mutations_extended.txt b/core/src/test/resources/data_mutations_extended.txt deleted file mode 100644 index bdae001584b..00000000000 --- a/core/src/test/resources/data_mutations_extended.txt +++ /dev/null @@ -1,101 +0,0 @@ -#sequenced_samples: TCGA-AA-3664-01 -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.PDB -HSPG2 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 22078087 22078087 Missense_Mutation D820N neutral mutationassessor.org/?cm=msa&ty=f&p=PGBM_HUMAN&rb=814&re=869&var=D820N -CSMD2 -114784 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 34085156 34085156 Missense_Mutation V277I low mutationassessor.org/?cm=msa&ty=f&p=CSMD2_HUMAN&rb=202&re=303&var=V277I mutationassessor.org/pdb.php?prot=CSMD2_HUMAN&from=202&to=303&var=V277I -CLSPN 63967 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 35989584 35989584 Missense_Mutation F628L mutationassessor.org/?cm=msa&ty=f&p=CLSPN_HUMAN&rb=601&re=800&var=F628L -RSPO1 284654 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 37867916 37867916 Missense_Mutation R2Q low mutationassessor.org/?cm=msa&ty=f&p=RSPO1_HUMAN&rb=1&re=150&var=R2Q -SMAP2 64744 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 40646957 40646957 Missense_Mutation A95T medium mutationassessor.org/?cm=msa&ty=f&p=SMAP2_HUMAN&rb=13&re=127&var=A95T mutationassessor.org/pdb.php?prot=SMAP2_HUMAN&from=13&to=127&var=A95T -HPDL 84842 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 45565857 45565857 Silent S150S -- -- -- -ZYG11B 79699 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 53009534 53009534 Missense_Mutation E151K low mutationassessor.org/?cm=msa&ty=f&p=ZY11B_HUMAN&rb=6&re=304&var=E151K -CCBL2 56267 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 89226604 89226604 Silent R6R -- -- -- -OAZ3 51686 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 150005900 150005900 Missense_Mutation P27S -HRNR 388697 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 150452666 150452666 Missense_Mutation L2688S low mutationassessor.org/?cm=msa&ty=f&p=HORN_HUMAN&rb=91&re=2799&var=L2688S -TTC24 164118 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 154819467 154819467 Missense_Mutation G27E mutationassessor.org/?cm=msa&ty=f&p=TTC24_HUMAN&rb=306&re=352&var=G307E -VANGL2 57216 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 158655985 158655985 Silent T254T -- -- -- -ASTN1 460 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 175184979 175184979 Silent D673D -- -- -- -FAM5C 339479 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 188334737 188334737 Silent D445D -- -- -- -G0S2 50486 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 207915844 207915844 Silent A64A -- -- -- -RD3 343035 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown LOH Illumina GAIIx chr1 209719152 209719152 Missense_Mutation P146L low mutationassessor.org/?cm=msa&ty=f&p=RD3_HUMAN&rb=4&re=194&var=P146L -KCNK2 3776 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 213412146 213412146 Missense_Mutation A274S mutationassessor.org/?cm=msa&ty=f&p=KCNK2_HUMAN&rb=233&re=313&var=A274S -NLRP3 114548 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 245674681 245674681 Silent G982G -- -- -- -CALML5 51806 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr10 5531064 5531064 Missense_Mutation P113L mutationassessor.org/?cm=msa&ty=f&p=CALL5_HUMAN&rb=78&re=113&var=P113L mutationassessor.org/pdb.php?prot=CALL5_HUMAN&from=78&to=113&var=P113L -GDF10 2662 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr10 48048882 48048882 Missense_Mutation R337H low mutationassessor.org/?cm=msa&ty=f&p=BMP3B_HUMAN&rb=240&re=372&var=R337H -BICC1 80114 broad.mit.edu TCGA-AA-3664-01 Unknown valid Wildtype Illumina GAIIx chr10 59943055 59943055 Missense_Mutation E49G low mutationassessor.org/?cm=msa&ty=f&p=BICC1_HUMAN&rb=1&re=200&var=E49G -STOX1 219736 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Wildtype Illumina GAIIx chr10 70315066 70315066 Missense_Mutation R503Q mutationassessor.org/?cm=msa&ty=f&p=STOX1_HUMAN&rb=391&re=590&var=R503Q -DLG5 9231 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr10 79246430 79246430 Nonsense_Mutation Q1304* -- -- -- -KIF20B 9585 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr10 91488328 91488328 Silent E1210E -- -- -- -DOCK1 1793 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr10 129073144 129073144 Missense_Mutation H1282R low mutationassessor.org/?cm=msa&ty=f&p=DOCK1_HUMAN&rb=1111&re=1616&var=H1282R mutationassessor.org/pdb.php?prot=DOCK1_HUMAN&from=1111&to=1616&var=H1282R -SMPD1 6609 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 6369742 6369742 Intron R291S low mutationassessor.org/?cm=msa&ty=f&p=ASM_HUMAN&rb=199&re=461&var=R289S -OR10AG1 282770 broad.mit.edu TCGA-AA-3664-01 Unknown valid Somatic Illumina GAIIx chr11 55492179 55492179 Missense_Mutation R113C high mutationassessor.org/?cm=msa&ty=f&p=O10AG_HUMAN&rb=32&re=281&var=R113C mutationassessor.org/pdb.php?prot=O10AG_HUMAN&from=32&to=281&var=R113C -PRG2 5553 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 56913314 56913314 Missense_Mutation E37D mutationassessor.org/?cm=msa&ty=f&p=PRG2_HUMAN&rb=1&re=79&var=E37D -SLC43A1 8501 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 57024895 57024895 Missense_Mutation P133L low mutationassessor.org/?cm=msa&ty=f&p=LAT3_HUMAN&rb=70&re=493&var=P133L -TMEM216 51259 broad.mit.edu TCGA-AA-3664-01 Unknown valid Somatic Illumina GAIIx chr11 60921958 60921958 Nonsense_Mutation G61G -- -- -- -ACTN3 89 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Somatic Illumina GAIIx chr11 66075660 66075660 Missense_Mutation S116R medium mutationassessor.org/?cm=msa&ty=f&p=ACTN3_HUMAN&rb=46&re=149&var=S116R mutationassessor.org/pdb.php?prot=ACTN3_HUMAN&from=46&to=149&var=S116R -NOX4 50507 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 88712884 88712884 Missense_Mutation N481D low mutationassessor.org/?cm=msa&ty=f&p=NOX4_HUMAN&rb=423&re=518&var=N481D -ATM 472 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 107719197 107719197 Nonsense_Mutation W2769* -- -- -- -OR6M1 390261 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 123181892 123181892 Missense_Mutation D126N neutral mutationassessor.org/?cm=msa&ty=f&p=OR6M1_HUMAN&rb=39&re=287&var=D126N mutationassessor.org/pdb.php?prot=OR6M1_HUMAN&from=39&to=287&var=D126N -FAM118B 79607 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 125629514 125629514 Silent N224N -- -- -- -GALNT8 26290 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 4744900 4744900 Missense_Mutation A563V neutral mutationassessor.org/?cm=msa&ty=f&p=GALT8_HUMAN&rb=496&re=622&var=A563V -VWF 7450 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 5965012 5965012 Silent T2293T -- -- -- -CLEC7A 64581 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Germline Illumina GAIIx chr12 10162443 10162443 Missense_Mutation T209A neutral mutationassessor.org/?cm=msa&ty=f&p=CLC7A_HUMAN&rb=137&re=243&var=T209A mutationassessor.org/pdb.php?prot=CLC7A_HUMAN&from=137&to=243&var=T209A -TAS2R10 50839 broad.mit.edu TCGA-AA-3664-01 Unknown valid Germline Illumina GAIIx chr12 10869904 10869904 Missense_Mutation G78S medium mutationassessor.org/?cm=msa&ty=f&p=T2R10_HUMAN&rb=1&re=296&var=G78S -GPR19 2842 broad.mit.edu TCGA-AA-3664-01 Unknown valid Germline Illumina GAIIx chr12 12706312 12706312 Nonsense_Mutation L113P high mutationassessor.org/?cm=msa&ty=f&p=GPR19_HUMAN&rb=82&re=330&var=L113P mutationassessor.org/pdb.php?prot=GPR19_HUMAN&from=82&to=330&var=L113P -SLC38A2 54407 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Somatic Illumina GAIIx chr12 45042571 45042571 Missense_Mutation T433A low mutationassessor.org/?cm=msa&ty=f&p=S38A2_HUMAN&rb=69&re=495&var=T433A -KRT80 144501 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 50871906 50871906 Silent C16C -- -- -- -SP1 6667 broad.mit.edu TCGA-AA-3664-01 Unknown valid Somatic Illumina GAIIx chr12 52063536 52063536 Missense_Mutation A513V low mutationassessor.org/?cm=msa&ty=f&p=SP1_HUMAN&rb=401&re=600&var=A513V -GPR84 53831 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 53043742 53043742 Missense_Mutation R54Q low mutationassessor.org/?cm=msa&ty=f&p=GPR84_HUMAN&rb=37&re=370&var=R54Q mutationassessor.org/pdb.php?prot=GPR84_HUMAN&from=37&to=370&var=R54Q -OR6C76 390326 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 54107010 54107010 Missense_Mutation S236P high mutationassessor.org/?cm=msa&ty=f&p=O6C76_HUMAN&rb=39&re=287&var=S236P -MSRB3 foo broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 63988657 63988657 Missense_Mutation T11S low mutationassessor.org/?cm=msa&ty=f&p=MSRB3_HUMAN&rb=1&re=39&var=T11S -C12orf63 374467 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 95674368 95674368 Silent G1039G -- -- -- -DTX1 1840 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 111999661 111999661 Silent P103P -- -- -- -CLIP1 6249 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 121387222 121387222 Silent Q815Q -- -- -- -DNAH10 196385 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 122969231 122969231 Missense_Mutation R3645Q mutationassessor.org/?cm=msa&ty=f&p=DYH10_HUMAN&rb=3590&re=3756&var=R3645Q -TUBA3C 7278 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr13 18650431 18650431 Silent I110I -- -- -- -POSTN 10631 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr13 37062595 37062595 Missense_Mutation A119T medium mutationassessor.org/?cm=msa&ty=f&p=POSTN_HUMAN&rb=109&re=232&var=A119T mutationassessor.org/pdb.php?prot=POSTN_HUMAN&from=109&to=232&var=A119T -NHLRC3 387921 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr13 38519992 38519992 Missense_Mutation A325P low mutationassessor.org/?cm=msa&ty=f&p=NHLC3_HUMAN&rb=241&re=347&var=A325P -UTP14C 9724 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr13 51501877 51501877 Silent A312A -- -- -- -TBC1D4 9882 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr13 74834235 74834235 Silent R336R -- -- -- -OR4M1 441670 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr14 19318932 19318932 Missense_Mutation G204V medium mutationassessor.org/?cm=msa&ty=f&p=OR4M1_HUMAN&rb=41&re=289&var=G204V -HEATR5A 25938 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr14 30926191 30926191 Missense_Mutation R66C low mutationassessor.org/?cm=msa&ty=f&p=HTR5A_HUMAN&rb=243&re=791&var=R353C -INSM2 84684 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr14 35074753 35074753 Missense_Mutation G515V low mutationassessor.org/?cm=msa&ty=f&p=INSM2_HUMAN&rb=401&re=566&var=G515V -SPTLC2 9517 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr14 77048441 77048441 Missense_Mutation R543L mutationassessor.org/?cm=msa&ty=f&p=SPTC2_HUMAN&rb=529&re=562&var=R543L -C14orf102 55051 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr14 89826682 89826682 Missense_Mutation Q622R low mutationassessor.org/?cm=msa&ty=f&p=CN102_HUMAN&rb=545&re=744&var=Q622R -COX8C 341947 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr14 92883440 92883440 Missense_Mutation A25T -RTL1 388015 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr14 100417938 100417938 Missense_Mutation V981I low mutationassessor.org/?cm=msa&ty=f&p=RTL1_HUMAN&rb=934&re=1133&var=V982I -AHNAK2 113146 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr14 104483308 104483308 Silent A3175A -- -- -- -MAGEL2 54551 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr15 21441891 21441891 Missense_Mutation G698R mutationassessor.org/?cm=msa&ty=f&p=Q2M1Q7_HUMAN&rb=1&re=200&var=G40R -SCG3 29106 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr15 49762877 49762877 Silent I117I -- -- -- -UNC13C 440279 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr15 52095297 52095297 Missense_Mutation R969C mutationassessor.org/?cm=msa&ty=f&p=UN13C_HUMAN&rb=801&re=1000&var=R969C -NTRK3 4916 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr15 86479593 86479593 Missense_Mutation R316H mutationassessor.org/?cm=msa&ty=f&p=NTRK3_HUMAN&rb=309&re=382&var=R316H mutationassessor.org/pdb.php?prot=NTRK3_HUMAN&from=309&to=382&var=R316H -LASS3 204219 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr15 98842359 98842359 Missense_Mutation T109M mutationassessor.org/?cm=msa&ty=f&p=LASS3_HUMAN&rb=71&re=126&var=T109M mutationassessor.org/pdb.php?prot=LASS3_HUMAN&from=71&to=126&var=T109M -SBK1 388228 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr16 28239033 28239033 Missense_Mutation R189C low mutationassessor.org/?cm=msa&ty=f&p=SBK1_HUMAN&rb=53&re=315&var=R189C mutationassessor.org/pdb.php?prot=SBK1_HUMAN&from=53&to=315&var=R189C -ZNF423 23090 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr16 48227850 48227850 Missense_Mutation R905Q low mutationassessor.org/?cm=msa&ty=f&p=ZN423_HUMAN&rb=761&re=960&var=R905Q mutationassessor.org/pdb.php?prot=ZN423_HUMAN&from=761&to=960&var=R905Q -GPR97 222487 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr16 56271941 56271941 Silent T264T -- -- -- -CDH8 1006 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr16 60409002 60409002 Missense_Mutation E387Q high mutationassessor.org/?cm=msa&ty=f&p=CADH8_HUMAN&rb=277&re=391&var=E387Q -CDH8 1006 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr16 60412422 60412422 Missense_Mutation S311L low mutationassessor.org/?cm=msa&ty=f&p=CADH8_HUMAN&rb=281&re=383&var=S311L mutationassessor.org/pdb.php?prot=CADH8_HUMAN&from=281&to=383&var=S311L -KCTD19 146212 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr16 65883102 65883102 Silent T786T -- -- -- -COX4I1 1327 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr16 84396941 84396941 Missense_Mutation A115T medium mutationassessor.org/?cm=msa&ty=f&p=COX41_HUMAN&rb=26&re=169&var=A115T mutationassessor.org/pdb.php?prot=COX41_HUMAN&from=26&to=169&var=A115T -ANKRD11 29123 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr16 87874034 87874034 Silent P2139P -- -- -- -C17orf97 400566 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr17 263542 263542 Missense_Mutation R198W low mutationassessor.org/?cm=msa&ty=f&p=CQ097_HUMAN&rb=1&re=200&var=R198W -PROCA1 147011 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr17 24054918 24054918 Missense_Mutation E266K low mutationassessor.org/?cm=msa&ty=f&p=PRCA1_HUMAN&rb=138&re=337&var=E294K -LPO 4025 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr17 53698597 53698597 Missense_Mutation R535H medium mutationassessor.org/?cm=msa&ty=f&p=PERL_HUMAN&rb=138&re=684&var=R535H mutationassessor.org/pdb.php?prot=PERL_HUMAN&from=138&to=684&var=R535H -RAD51C 5889 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr17 54156429 54156429 Missense_Mutation R312W high mutationassessor.org/?cm=msa&ty=f&p=RA51C_HUMAN&rb=78&re=350&var=R312W mutationassessor.org/pdb.php?prot=RA51C_HUMAN&from=78&to=350&var=R312W -KCNH6 81033 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr17 58966962 58966962 Silent I434I -- -- -- -SDK2 54549 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr17 68926986 68926986 Silent S700S -- -- -- -PPP4R1 9989 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr18 9539240 9539240 Nonsense_Mutation R882* -- -- -- -RFX2 5990 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 5991251 5991251 Nonsense_Mutation R88* -- -- -- -RAB11B 9230 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 8370842 8370842 Missense_Mutation V46M high mutationassessor.org/?cm=msa&ty=f&p=RB11B_HUMAN&rb=13&re=174&var=V46M mutationassessor.org/pdb.php?prot=RB11B_HUMAN&from=13&to=174&var=V46M -COL5A3 50509 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 9952774 9952774 Missense_Mutation R832Q medium mutationassessor.org/?cm=msa&ty=f&p=CO5A3_HUMAN&rb=801&re=1000&var=R832Q mutationassessor.org/pdb.php?prot=CO5A3_HUMAN&from=801&to=1000&var=R832Q -SLC44A2 57153 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 10603577 10603577 Silent L220L -- -- -- -ZNF682 91120 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 19979011 19979011 Silent L100L -- -- -- -ZNF536 9745 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 35626761 35626761 Missense_Mutation T151M high mutationassessor.org/?cm=msa&ty=f&p=ZN536_HUMAN&rb=1&re=200&var=T151M mutationassessor.org/pdb.php?prot=ZN536_HUMAN&from=1&to=200&var=T151M -CCDC123 84902 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 38064667 38064667 Nonsense_Mutation Y686* -- -- -- -SLC7A10 56301 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 38395621 38395621 Missense_Mutation R162W medium mutationassessor.org/?cm=msa&ty=f&p=AAA1_HUMAN&rb=45&re=462&var=R162W mutationassessor.org/pdb.php?prot=AAA1_HUMAN&from=45&to=462&var=R162W -NPHS1 4868 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 41030847 41030847 Missense_Mutation T459N low mutationassessor.org/?cm=msa&ty=f&p=NPHN_HUMAN&rb=444&re=538&var=T459N mutationassessor.org/pdb.php?prot=NPHN_HUMAN&from=444&to=538&var=T459N -DHX34 9704 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 52568703 52568703 Silent R670R -- -- -- -HAS1 3036 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 56911364 56911364 Missense_Mutation R340W high mutationassessor.org/?cm=msa&ty=f&p=HAS1_HUMAN&rb=223&re=389&var=R340W -LAIR1 3903 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 59558713 59558713 Silent T280T -- -- -- -ZFP28 140612 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 61753285 61753285 Missense_Mutation R242H mutationassessor.org/?cm=msa&ty=f&p=ZFP28_HUMAN&rb=232&re=268&var=R242H -ZNF135 7694 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr19 63264769 63264769 Missense_Mutation T27A medium mutationassessor.org/?cm=msa&ty=f&p=ZN135_HUMAN&rb=14&re=54&var=T15A mutationassessor.org/pdb.php?prot=ZN135_HUMAN&from=14&to=54&var=T15A -CRIM1 51232 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr2 36560219 36560219 Missense_Mutation R417Q low mutationassessor.org/?cm=msa&ty=f&p=CRIM1_HUMAN&rb=403&re=456&var=R417Q -ATP6V1B1 525 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr2 71043881 71043881 Missense_Mutation R331W high mutationassessor.org/?cm=msa&ty=f&p=VATB1_HUMAN&rb=166&re=393&var=R331W mutationassessor.org/pdb.php?prot=VATB1_HUMAN&from=166&to=393&var=R331W diff --git a/core/src/test/resources/data_mutations_extended_continued.txt b/core/src/test/resources/data_mutations_extended_continued.txt deleted file mode 100644 index a49aed95c23..00000000000 --- a/core/src/test/resources/data_mutations_extended_continued.txt +++ /dev/null @@ -1,4 +0,0 @@ -#sequenced_samples: TCGA-AA-3665-01 -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.PDB -GPR19 2842 broad.mit.edu TCGA-AA-3665-01 Unknown valid Germline Illumina GAIIx chr12 12706312 12706312 Nonsense_Mutation L113P high mutationassessor.org/?cm=msa&ty=f&p=GPR19_HUMAN&rb=82&re=330&var=L113P mutationassessor.org/pdb.php?prot=GPR19_HUMAN&from=82&to=330&var=L113P -SP1 6667 broad.mit.edu TCGA-AA-3665-01 Unknown valid Somatic Illumina GAIIx chr12 52063536 52063536 Missense_Mutation A513V low mutationassessor.org/?cm=msa&ty=f&p=SP1_HUMAN&rb=401&re=600&var=A513V diff --git a/core/src/test/resources/data_mutations_extended_duplicate_events.txt b/core/src/test/resources/data_mutations_extended_duplicate_events.txt deleted file mode 100644 index 5c5c8705d67..00000000000 --- a/core/src/test/resources/data_mutations_extended_duplicate_events.txt +++ /dev/null @@ -1,4 +0,0 @@ -#sequenced_samples: TCGA-AA-3664-01 TCGA-AA-3665-01 -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.PDB -NLRP3 114548 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 245674681 245674681 Missense_Mutation G982G -- -- -- -NLRP3 114548 broad.mit.edu TCGA-AA-3665-01 Unknown valid Unknown Illumina GAIIx chr1 245674681 245674681 Missense_Mutation G982G -- -- -- diff --git a/core/src/test/resources/data_mutations_extended_json_annotation.txt b/core/src/test/resources/data_mutations_extended_json_annotation.txt deleted file mode 100644 index 2e1aab6b224..00000000000 --- a/core/src/test/resources/data_mutations_extended_json_annotation.txt +++ /dev/null @@ -1,52 +0,0 @@ -#sequenced_samples: TCGA-AA-3664-01 -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.PDB NAMESPACE1.HEADER1 NAMESPACE1.HEADER2 NAMESPACE2.HEADER1 INVALID_NAMESPACE:HEADER1 INVALID_NAMESPACE.HEADER1 ASCN.ASCN_INTEGER_COPY_NUMBER ASCN.ASCN_METHOD ASCN.CCF_EXPECTED_COPIES_UPPER ASCN.CCF_EXPECTED_COPIES ASCN.CLONAL ASCN.MINOR_COPY_NUMBER ASCN.EXPECTED_ALT_COPIES ASCN.TOTAL_COPY_NUMBER -HSPG2 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 22078087 22078087 Missense_Mutation D820N neutral mutationassessor.org/?cm=msa&ty=f&p=PGBM_HUMAN&rb=814&re=869&var=D820N Likely 10.0 Yes Yes Yes 5 FACETS 15 5 FALSE 0 2 7 -CSMD2 -114784 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 34085156 34085156 Missense_Mutation V277I low mutationassessor.org/?cm=msa&ty=f&p=CSMD2_HUMAN&rb=202&re=303&var=V277I mutationassessor.org/pdb.php?prot=CSMD2_HUMAN&from=202&to=303&var=V277I Unknown 5.7 No No No 2 FACETS 8 2 TRUE 1 1 3 -CLSPN 63967 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 35989584 35989584 Missense_Mutation F628L mutationassessor.org/?cm=msa&ty=f&p=CLSPN_HUMAN&rb=601&re=800&var=F628L True 2.4 NA NA NA 6 FACETS 12 6 TRUE 2 3 9 -RSPO1 284654 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 37867916 37867916 Missense_Mutation R2Q low mutationassessor.org/?cm=msa&ty=f&p=RSPO1_HUMAN&rb=1&re=150&var=R2Q NA 2.5 Unknown Unknown Unknown 0 FACETS 0 0 TRUE 1 4 4 -SMAP2 64744 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 40646957 40646957 Missense_Mutation A95T medium mutationassessor.org/?cm=msa&ty=f&p=SMAP2_HUMAN&rb=13&re=127&var=A95T mutationassessor.org/pdb.php?prot=SMAP2_HUMAN&from=13&to=127&var=A95T False 1.4 No No No 1 FACETS 4 1 TRUE 0 2 3 -HPDL 84842 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 45565857 45565857 Silent S150S -- -- -- False 4.0 NA NA NA 4 FACETS 8 4 TRUE 2 2 6 -ZYG11B 79699 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 53009534 53009534 Missense_Mutation E151K low mutationassessor.org/?cm=msa&ty=f&p=ZY11B_HUMAN&rb=6&re=304&var=E151K Likely 0.9 Unknown Unknown Unknown 0 FACETS 0 0 TRUE 1 2 2 -CCBL2 56267 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 89226604 89226604 Silent R6R -- -- -- Unknown 6.5 No No No 8 FACETS 32 8 TRUE 0 3 11 -OAZ3 51686 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 150005900 150005900 Missense_Mutation P27S True 0.4 Yes Yes Yes 6 FACETS 12 6 TRUE 2 4 10 -HRNR 388697 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 150452666 150452666 Missense_Mutation L2688S low mutationassessor.org/?cm=msa&ty=f&p=HORN_HUMAN&rb=91&re=2799&var=L2688S NA 3.6 Yes Yes Yes 5 FACETS 15 5 FALSE 1 1 6 -TTC24 164118 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 154819467 154819467 Missense_Mutation G27E mutationassessor.org/?cm=msa&ty=f&p=TTC24_HUMAN&rb=306&re=352&var=G307E False 7.3 Yes Yes Yes 3 FACETS 12 3 TRUE 0 1 4 -VANGL2 57216 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 158655985 158655985 Silent T254T -- -- -- False 1.8 No No No 7 FACETS 14 7 TRUE 2 5 12 -ASTN1 460 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 175184979 175184979 Silent D673D -- -- -- Likely 5.7 NA NA NA 8 FACETS 24 8 TRUE 1 3 11 -FAM5C 339479 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 188334737 188334737 Silent D445D -- -- -- Unknown 1.2 Unknown Unknown Unknown 6 FACETS 24 6 TRUE 0 0 6 -G0S2 50486 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 207915844 207915844 Silent A64A -- -- -- True 1.0 No No No 3 FACETS 6 3 TRUE 2 3 6 -RD3 343035 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown LOH Illumina GAIIx chr1 209719152 209719152 Missense_Mutation P146L low mutationassessor.org/?cm=msa&ty=f&p=RD3_HUMAN&rb=4&re=194&var=P146L NA 3.6 NA NA NA 5 FACETS 15 5 FALSE 1 4 9 -KCNK2 3776 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 213412146 213412146 Missense_Mutation A274S mutationassessor.org/?cm=msa&ty=f&p=KCNK2_HUMAN&rb=233&re=313&var=A274S False 7.2 Unknown Unknown Unknown 6 FACETS 24 6 TRUE 0 2 8 -NLRP3 114548 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr1 245674681 245674681 Silent G982G -- -- -- False 0.6 No No No 5 FACETS 10 5 TRUE 2 2 7 -CALML5 51806 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr10 5531064 5531064 Missense_Mutation P113L mutationassessor.org/?cm=msa&ty=f&p=CALL5_HUMAN&rb=78&re=113&var=P113L mutationassessor.org/pdb.php?prot=CALL5_HUMAN&from=78&to=113&var=P113L Likely 8.3 Yes Yes Yes 5 FACETS 15 5 FALSE 1 2 7 -GDF10 2662 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr10 48048882 48048882 Missense_Mutation R337H low mutationassessor.org/?cm=msa&ty=f&p=BMP3B_HUMAN&rb=240&re=372&var=R337H Unknown 2.1 Yes Yes Yes 2 FACETS 8 2 TRUE 0 3 5 -BICC1 80114 broad.mit.edu TCGA-AA-3664-01 Unknown valid Wildtype Illumina GAIIx chr10 59943055 59943055 Missense_Mutation E49G low mutationassessor.org/?cm=msa&ty=f&p=BICC1_HUMAN&rb=1&re=200&var=E49G True 7.7 Yes Yes Yes 0 FACETS 0 0 TRUE 2 4 4 -STOX1 219736 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Wildtype Illumina GAIIx chr10 70315066 70315066 Missense_Mutation R503Q mutationassessor.org/?cm=msa&ty=f&p=STOX1_HUMAN&rb=391&re=590&var=R503Q NA 5.9 No No No 4 FACETS 12 4 TRUE 1 1 5 -DLG5 9231 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr10 79246430 79246430 Nonsense_Mutation Q1304* -- -- -- False 0.4 NA NA NA 8 FACETS 32 8 TRUE 0 1 9 -KIF20B 9585 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr10 91488328 91488328 Silent E1210E -- -- -- False 3.6 Unknown Unknown Unknown 5 FACETS 10 5 TRUE 1 4 9 -DOCK1 1793 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr10 129073144 129073144 Missense_Mutation H1282R low mutationassessor.org/?cm=msa&ty=f&p=DOCK1_HUMAN&rb=1111&re=1616&var=H1282R mutationassessor.org/pdb.php?prot=DOCK1_HUMAN&from=1111&to=1616&var=H1282R Likely 8.0 No No No 3 FACETS 9 3 FALSE 1 3 6 -SMPD1 6609 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 6369742 6369742 Intron R291S low mutationassessor.org/?cm=msa&ty=f&p=ASM_HUMAN&rb=199&re=461&var=R289S Unknown 6.7 NA NA NA 1 FACETS 4 1 TRUE 0 0 1 -OR10AG1 282770 broad.mit.edu TCGA-AA-3664-01 Unknown valid Somatic Illumina GAIIx chr11 55492179 55492179 Missense_Mutation R113C high mutationassessor.org/?cm=msa&ty=f&p=O10AG_HUMAN&rb=32&re=281&var=R113C mutationassessor.org/pdb.php?prot=O10AG_HUMAN&from=32&to=281&var=R113C True 1.1 Unknown Unknown Unknown 6 FACETS 12 6 TRUE 1 2 8 -PRG2 5553 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 56913314 56913314 Missense_Mutation E37D mutationassessor.org/?cm=msa&ty=f&p=PRG2_HUMAN&rb=1&re=79&var=E37D NA 3.1 No No No 1 FACETS 3 1 FALSE 0 3 4 -SLC43A1 8501 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 57024895 57024895 Missense_Mutation P133L low mutationassessor.org/?cm=msa&ty=f&p=LAT3_HUMAN&rb=70&re=493&var=P133L False 1.5 Yes Yes Yes 2 FACETS 8 2 TRUE 1 3 5 -TMEM216 51259 broad.mit.edu TCGA-AA-3664-01 Unknown valid Somatic Illumina GAIIx chr11 60921958 60921958 Nonsense_Mutation G61G -- -- -- False 3.0 Yes Yes Yes 3 FACETS 6 3 TRUE 0 0 3 -ACTN3 89 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Somatic Illumina GAIIx chr11 66075660 66075660 Missense_Mutation S116R medium mutationassessor.org/?cm=msa&ty=f&p=ACTN3_HUMAN&rb=46&re=149&var=S116R mutationassessor.org/pdb.php?prot=ACTN3_HUMAN&from=46&to=149&var=S116R Likely 4.1 Yes Yes Yes 2 FACETS 6 2 TRUE 2 3 5 -NOX4 50507 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 88712884 88712884 Missense_Mutation N481D low mutationassessor.org/?cm=msa&ty=f&p=NOX4_HUMAN&rb=423&re=518&var=N481D Unknown 2.0 No No No 5 FACETS 20 5 TRUE 2 5 10 -ATM 472 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 107719197 107719197 Nonsense_Mutation W2769* -- -- -- True 8.3 NA NA NA 5 FACETS 10 5 TRUE 2 4 9 -OR6M1 390261 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 123181892 123181892 Missense_Mutation D126N neutral mutationassessor.org/?cm=msa&ty=f&p=OR6M1_HUMAN&rb=39&re=287&var=D126N mutationassessor.org/pdb.php?prot=OR6M1_HUMAN&from=39&to=287&var=D126N NA 5.4 Unknown Unknown Unknown 8 FACETS 24 8 TRUE 2 2 10 -FAM118B 79607 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr11 125629514 125629514 Silent N224N -- -- -- False 1.4 No No No 9 FACETS 36 9 TRUE 1 2 11 -GALNT8 26290 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 4744900 4744900 Missense_Mutation A563V neutral mutationassessor.org/?cm=msa&ty=f&p=GALT8_HUMAN&rb=496&re=622&var=A563V False 8.1 NA NA NA 4 FACETS 8 4 TRUE 0 3 7 -VWF 7450 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 5965012 5965012 Silent T2293T -- -- -- Likely 5.6 Unknown Unknown Unknown 3 FACETS 9 3 FALSE 1 3 6 -CLEC7A 64581 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Germline Illumina GAIIx chr12 10162443 10162443 Missense_Mutation T209A neutral mutationassessor.org/?cm=msa&ty=f&p=CLC7A_HUMAN&rb=137&re=243&var=T209A mutationassessor.org/pdb.php?prot=CLC7A_HUMAN&from=137&to=243&var=T209A Unknown 9.5 No No No 2 FACETS 8 2 TRUE 2 2 4 -TAS2R10 50839 broad.mit.edu TCGA-AA-3664-01 Unknown valid Germline Illumina GAIIx chr12 10869904 10869904 Missense_Mutation G78S medium mutationassessor.org/?cm=msa&ty=f&p=T2R10_HUMAN&rb=1&re=296&var=G78S True 3.6 Yes Yes Yes 1 FACETS 2 1 TRUE 0 1 2 -GPR19 2842 broad.mit.edu TCGA-AA-3664-01 Unknown valid Germline Illumina GAIIx chr12 12706312 12706312 Nonsense_Mutation L113P high mutationassessor.org/?cm=msa&ty=f&p=GPR19_HUMAN&rb=82&re=330&var=L113P mutationassessor.org/pdb.php?prot=GPR19_HUMAN&from=82&to=330&var=L113P NA 1.6 Yes Yes Yes 0 FACETS 0 0 TRUE 1 4 4 -SLC38A2 54407 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Somatic Illumina GAIIx chr12 45042571 45042571 Missense_Mutation T433A low mutationassessor.org/?cm=msa&ty=f&p=S38A2_HUMAN&rb=69&re=495&var=T433A Likely 0.8 Yes Yes Yes 2 FACETS 8 2 TRUE 2 4 6 -KRT80 144501 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 50871906 50871906 Silent C16C -- -- -- Unknown 4.1 No No No 5 FACETS 10 5 TRUE 0 0 5 -SP1 6667 broad.mit.edu TCGA-AA-3664-01 Unknown valid Somatic Illumina GAIIx chr12 52063536 52063536 Missense_Mutation A513V low mutationassessor.org/?cm=msa&ty=f&p=SP1_HUMAN&rb=401&re=600&var=A513V True 8.2 NA NA NA 8 FACETS 24 8 TRUE 1 2 10 -GPR84 53831 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 53043742 53043742 Missense_Mutation R54Q low mutationassessor.org/?cm=msa&ty=f&p=GPR84_HUMAN&rb=37&re=370&var=R54Q mutationassessor.org/pdb.php?prot=GPR84_HUMAN&from=37&to=370&var=R54Q NA 4.7 Unknown Unknown Unknown 7 FACETS 28 7 TRUE 0 3 10 -OR6C76 390326 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 54107010 54107010 Missense_Mutation S236P high mutationassessor.org/?cm=msa&ty=f&p=O6C76_HUMAN&rb=39&re=287&var=S236P False 4.6 No No No 1 FACETS 2 1 TRUE 1 3 4 -MSRB3 foo broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 63988657 63988657 Missense_Mutation T11S low mutationassessor.org/?cm=msa&ty=f&p=MSRB3_HUMAN&rb=1&re=39&var=T11S False 5.4 NA NA NA 2 FACETS 6 2 TRUE 0 0 2 -C12orf63 374467 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 95674368 95674368 Silent G1039G -- -- -- Likely 4.8 Unknown Unknown Unknown 3 FACETS 12 3 TRUE 0 1 4 -DTX1 1840 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 111999661 111999661 Silent P103P -- -- -- Unknown 2.5 No No No 8 FACETS 16 8 TRUE 0 3 11 -CLIP1 6249 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 121387222 121387222 Silent Q815Q -- -- -- True 0.6 Yes Yes Yes 1 FACETS 3 1 FALSE 0 2 3 -DNAH10 196385 broad.mit.edu TCGA-AA-3664-01 Unknown valid Unknown Illumina GAIIx chr12 122969231 122969231 Missense_Mutation R3645Q mutationassessor.org/?cm=msa&ty=f&p=DYH10_HUMAN&rb=3590&re=3756&var=R3645Q NA 7.5 Yes Yes Yes 5 FACETS 15 5 FALSE 1 1 6 diff --git a/core/src/test/resources/data_mutations_extended_without_namespaces.txt b/core/src/test/resources/data_mutations_extended_without_namespaces.txt deleted file mode 100644 index 2e4dcee256f..00000000000 --- a/core/src/test/resources/data_mutations_extended_without_namespaces.txt +++ /dev/null @@ -1,3 +0,0 @@ -#sequenced_samples: TCGA-AA-3664-01 TCGA-AA-3665-01 -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.PDB foo -NLRP3 114548 broad.mit.edu TCGA-AA-3665-01 Unknown valid Unknown Illumina GAIIx chr1 245674681 245674681 Missense_Mutation G982G -- -- -- diff --git a/core/src/test/resources/data_mutations_oncotated.txt b/core/src/test/resources/data_mutations_oncotated.txt deleted file mode 100644 index 55c271d937f..00000000000 --- a/core/src/test/resources/data_mutations_oncotated.txt +++ /dev/null @@ -1,22 +0,0 @@ -#sequenced_samples: TCGA-XX-0800-01 TCGA-XX-0900-01 -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_position End_position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_file Sequencer chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU MA:variant MA:GE.rank MA:CNA MA:OV.variant.samples MA:OV.gene.samples MA:mapping.issue MA:FImpact MA:FI.score MA:Func.region MA:bindsite.protein MA:bindsite.DNA/RNA MA:bindsite.sm.mol MA:CancerGenes MA:TS MA:OG MA:COSMIC.mutations MA:COSMIC.cancers MA:Uniprot.regions MA:Pfam.domain MA:link.var MA:link.MSA MA:link.PDB ONCOTATOR_VARIANT_CLASSIFICATION ONCOTATOR_PROTEIN_CHANGE ONCOTATOR_COSMIC_OVERLAPPING ONCOTATOR_DBSNP_RS ONCOTATOR_GENE_SYMBOL -FAM90A1 55138 genome.wustl.edu 37 12 8374781 8374782 + In_Frame_Ins INS - - ACG TCGA-XX-0800-01 TCGA-XX-0800-01 - - - - Unknown Unknown Somatic Capture Illumina GAIIx 12 8266048 8266049 - ACG INS FAM90A1 NM_018088 human genbank 54_36p -1 validated in_frame_ins c.1032_1031 p.345in_frame_insV 0.000:0.001 NULL NULL - no_errors In_Frame_Ins p.344_345insV rs138330958;rs149653769 FAM90A1 -TXNIP 10628 genome.wustl.edu 37 1 145440463 145440463 + Missense_Mutation SNP G G A TCGA-XX-0800-01 TCGA-XX-0800-01 G G G G Unknown Unknown Somatic Capture Illumina GAIIx 1 144151820 144151820 G A SNP TXNIP NM_006472 human genbank 54_36p +1 validated missense c.769 p.V257I 1.000 superfamily_Ig_E-set,HMMPfam_Arrestin_C superfamily_Ig_E-set,HMMPfam_Arrestin_N,HMMPfam_Arrestin_C - no_errors 1,144151820,G,A 1 1 neutral 0.235 PF02752 // Arrestin (or S-antigen), C-terminal domain // 174 // 300 http://getma.org/v1/?cm=var&var=1,144151820,G,A&fts=all http://getma.org/v1/?cm=msa&ty=f&p=TXNIP_HUMAN&rb=174&re=300&var=V257I Missense_Mutation p.V257I TXNIP -SEL1L2 80343 genome.wustl.edu 37 20 13858170 13858170 + Missense_Mutation SNP C C T TCGA-XX-0800-01 TCGA-XX-0800-01 C C C C Unknown Unknown Somatic Capture Illumina GAIIx 20 13806170 13806170 C T SNP SEL1L2 NM_025229 human genbank 54_36p -1 validated missense c.1022 p.G341E 1.000 superfamily_SSF81901,HMMPfam_Sel1,HMMSmart_SEL1 HMMSmart_SEL1,superfamily_SSF81901,HMMPfam_Sel1 - no_errors 20,13806170,C,T 1 1 medium 2.165 REPEAT // Sel1-like 6. /// TOPO_DOM // Extracellular (Potential). PF08238 // Sel1 repeat // 334 // 370 http://getma.org/v1/?cm=var&var=20,13806170,C,T&fts=all http://getma.org/v1/?cm=msa&ty=f&p=SE1L2_HUMAN&rb=334&re=370&var=G341E Missense_Mutation p.G341E SEL1L2 -DROSHA 29102 genome.wustl.edu 37 5 31409392 31409392 + Missense_Mutation SNP T T A TCGA-XX-0900-01 TCGA-XX-0900-01 T T T T Unknown Valid Somatic WGS Illumina_Capture Illumina GAIIx 5 31445149 31445149 T A SNP RNASEN NM_013235 human genbank 54_36p -1 validated missense c.3715 p.T1239S 1.000 HMMSmart_SM00535,superfamily_RNase III catalytic domain-like (Pfam 00636) HMMPfam_Ribonuclease_3,HMMSmart_SM00535,PatternScan_RNASE_3_1,superfamily_RNase III catalytic domain-like (Pfam 00636),HMMPfam_dsrm,HMMSmart_SM00358,superfamily_dsRNA-binding domain-like - no_errors 5,31445149,T,A 1 1 neutral -0.18 REGION // Necessary for interaction with DGCR8 and pri-miRNA processing activity. http://getma.org/v1/?cm=var&var=5,31445149,T,A&fts=all http://getma.org/v1/?cm=msa&ty=f&p=RNC_HUMAN&rb=1204&re=1290&var=T1239S Missense_Mutation p.T1239S RNASEN -TRIO 7204 genome.wustl.edu 37 5 14287024 14287024 + Missense_Mutation SNP G G A TCGA-XX-0800-01 TCGA-XX-0800-01 G G G G Unknown Unknown Somatic Capture Illumina GAIIx 5 14340024 14340024 G A SNP TRIO NM_007118 human genbank 54_36p +1 validated missense c.392 p.R131H 1.000 superfamily_CRAL/TRIO domain,HMMSmart_SM00516 superfamily_CRAL/TRIO domain,HMMSmart_SM00516,HMMPfam_Spectrin,HMMSmart_SM00150,superfamily_Spectrin repeat,superfamily_DBL homology domain (DH-domain),HMMPfam_RhoGEF,HMMSmart_SM00325,superfamily_PH domain-like,HMMPfam_PH,HMMSmart_SM00233,superfamily_SH3-domain,HMMPfam_SH3_1,HMMSmart_SM00326,superfamily_Immunoglobulin,HMMPfam_I-set,HMMSmart_SM00409,HMMSmart_SM00408,superfamily_Protein kinase-like (PK-like),HMMSmart_SM00219,HMMSmart_SM00220,HMMPfam_Pkinase,PatternScan_PROTEIN_KINASE_ST - no_errors 5,14340024,G,A 1 1 medium 3.345 DOMAIN // CRAL-TRIO. http://getma.org/v1/?cm=var&var=5,14340024,G,A&fts=all http://getma.org/v1/?cm=msa&ty=f&p=TRIO_HUMAN&rb=65&re=210&var=R131H Missense_Mutation p.R131H TRIO -RAB25 57111 genome.wustl.edu 37 1 156035781 156035781 + Missense_Mutation SNP C C A TCGA-XX-0900-01 TCGA-XX-0900-01 C C C C Unknown Valid Somatic WGS Illumina_Capture Illumina GAIIx 1 154302405 154302405 C A SNP RAB25 NM_020387 human genbank 54_36p +1 provisional missense c.123 p.S41R 0.993 HMMSmart_RAB,HMMPfam_Ras,superfamily_SSF52540 HMMSmart_RAB,HMMPfam_Ras,superfamily_SSF52540 - no_errors 1,154302405,C,A 1 1 medium 3.455 1 GSP GTP GNP GDP MOTIF // Effector region (By similarity). PF00071 // Ras family // 14 // 175 http://getma.org/v1/?cm=var&var=1,154302405,C,A&fts=all http://getma.org/v1/?cm=msa&ty=f&p=RAB25_HUMAN&rb=14&re=175&var=S41R http://getma.org/v1/pdb.php?prot=RAB25_HUMAN&from=14&to=175&var=S41R Missense_Mutation p.S41R RAB25 -CACNA1A 773 genome.wustl.edu 37 19 13370431 13370431 + Silent SNP C C T TCGA-XX-0900-01 TCGA-XX-0900-01 C C C C Unknown Valid Somatic WGS Illumina_Capture Illumina GAIIx 19 13231431 13231431 C T SNP CACNA1A ENST00000325084 human ensembl 54_36p -1 known silent c.4338 p.V1446 1.000 HMMPfam_Ion_trans,superfamily_Voltage-gated potassium channels HMMPfam_Ion_trans,HMMPfam_Ca_chan_IQ,superfamily_Voltage-gated potassium channels - no_errors -LOC100132025 100132025 genome.wustl.edu 37 15 23404926 23404926 + Missense_Mutation SNP G G A TCGA-XX-0800-01 TCGA-XX-0800-01 G G G G Unknown Unknown Somatic Capture Illumina GAIIx 15 20956367 20956367 G A SNP LOC100132025 XM_001723658 human genbank 54_36p -1 model missense c.236 p.A79V 0.307 NULL NULL - no_errors 15,20956367,G,A 1 2 neutral 0 TOPO_DOM // Extracellular (Potential). PB193979 // // 1 // 122 http://getma.org/v1/?cm=var&var=15,20956367,G,A&fts=all http://getma.org/v1/?cm=msa&ty=f&p=YO011_HUMAN&rb=1&re=122&var=A79V 5'Flank -DNAH8 1769 genome.wustl.edu 37 6 38825487 38825487 + Missense_Mutation SNP A A C TCGA-XX-0800-01 TCGA-XX-0800-01 A A A A Unknown Unknown Somatic Capture Illumina GAIIx 6 38933465 38933465 A C SNP DNAH8 NM_001371 human genbank 54_36p +1 validated missense c.5276 p.H1759P 1.000 NULL PatternScan_THIOL_PROTEASE_HIS,HMMSmart_SM00382,HMMPfam_Dynein_heavy,HMMPfam_AAA_5,HMMPfam_DHC_N1,HMMPfam_DHC_N2,superfamily_P-loop containing nucleoside triphosphate hydrolases - no_errors 6,38933465,A,C 1 2 high 3.895 http://getma.org/v1/?cm=var&var=6,38933465,A,C&fts=all http://getma.org/v1/?cm=msa&ty=f&p=DYH8_HUMAN&rb=1679&re=1807&var=H1759P Missense_Mutation p.H1759P DNAH8 -OR2W3 343171 genome.wustl.edu 37 1 248059353 248059355 + In_Frame_Del DEL CTC CTC - TCGA-XX-0800-01 TCGA-XX-0800-01 CTC CTC CTC CTC Unknown Unknown Somatic Capture Illumina GAIIx 1 246125976 246125978 CTC - DEL OR2W3 NM_001001957 human genbank 54_36p +1 provisional in_frame_del c.465_467 p.S156in_frame_del 0.000:0.001:0.003 superfamily_SSF81321,HMMPfam_7tm_1 superfamily_SSF81321,HMMPfam_7tm_1,PatternScan_G_PROTEIN_RECEP_F1_1 - no_errors In_Frame_Del p.S156del OR2W3 -GRIK5 2901 genome.wustl.edu 37 19 42558500 42558500 + Missense_Mutation SNP C C G TCGA-XX-0800-01 TCGA-XX-0800-01 C C C C Unknown Unknown Somatic Capture Illumina GAIIx 19 47250340 47250340 C G SNP GRIK5 NM_002088 human genbank 54_36p -1 reviewed missense c.1028 p.G343A 1.000 superfamily_Periplasmic binding protein-like I,HMMPfam_ANF_receptor superfamily_Periplasmic binding protein-like I,HMMPfam_ANF_receptor,HMMSmart_SM00079,superfamily_Periplasmic binding protein-like II,HMMPfam_Lig_chan-Glu_bd,HMMPfam_Lig_chan - no_errors 19,47250340,C,G 1 1 medium 3.405 TOPO_DOM // Extracellular (Potential). PF01094 // Receptor family ligand binding region // 40 // 381 http://getma.org/v1/?cm=var&var=19,47250340,C,G&fts=all http://getma.org/v1/?cm=msa&ty=f&p=GRIK5_HUMAN&rb=40&re=381&var=G343A http://getma.org/v1/pdb.php?prot=GRIK5_HUMAN&from=40&to=381&var=G343A Missense_Mutation p.G343A GRIK5 -SLC34A2 10568 genome.wustl.edu 37 4 25677981 25677981 + Silent SNP C C T TCGA-XX-0800-01 TCGA-XX-0800-01 C C C C Unknown Unknown Somatic Capture Illumina GAIIx 4 25287079 25287079 C T SNP SLC34A2 NM_006424 human genbank 54_36p +1 validated silent c.1683 p.P561 0.868 NULL HMMPfam_Na_Pi_cotrans - no_errors -TMEM37 140738 genome.wustl.edu 37 2 120194651 120194652 + In_Frame_Ins INS - - GTGTGC TCGA-XX-0900-01 TCGA-XX-0800-01 - - - - Unknown Unknown Somatic Capture Illumina GAIIx 2 119911121 119911122 - GTGTGC INS TMEM37 NM_183240 human genbank 54_36p +1 validated in_frame_ins c.208_209 p.T70in_frame_insSVP 0.975:0.000 NULL NULL - no_errors In_Frame_Ins p.70_70T>SVP rs76360727;rs33980232 TMEM37 -MUC16 94025 genome.wustl.edu 37 19 9011375 9011375 + Missense_Mutation SNP C C G TCGA-XX-0800-01 TCGA-XX-0800-01 C C C C Unknown Unknown Somatic Capture Illumina GAIIx 19 8872375 8872375 C G SNP MUC16 NM_024690 human genbank 54_36p -1 validated missense c.38858 p.G12953A 0.002 superfamily_SEA domain,HMMSmart_SM00200,HMMPfam_SEA PatternScan_ATPASE_ALPHA_BETA,superfamily_SEA domain,HMMSmart_SM00200,HMMPfam_SEA - no_errors 19,8872375,C,G 1 6 low 1.6 DOMAIN // SEA 6. /// TOPO_DOM // Extracellular (Potential). PF01390 // SEA domain // 12854 // 12966 http://getma.org/v1/?cm=var&var=19,8872375,C,G&fts=all http://getma.org/v1/?cm=msa&ty=f&p=MUC16_HUMAN&rb=12854&re=12966&var=G12955A http://getma.org/v1/pdb.php?prot=MUC16_HUMAN&from=12854&to=12966&var=G12955A Missense_Mutation p.G12953A MUC16 -EEF1A1 1915 genome.wustl.edu 37 6 74229728 74229728 + Missense_Mutation SNP T T C TCGA-XX-0800-01 TCGA-XX-0800-01 T T T T Unknown Unknown Somatic Capture Illumina GAIIx 6 74286449 74286449 T C SNP EEF1A1 NM_001402 human genbank 54_36p -1 reviewed missense c.22 p.I8V 1.000 HMMPfam_GTP_EFTU,superfamily_P-loop containing nucleoside triphosphate hydrolases HMMPfam_GTP_EFTU,PatternScan_EFACTOR_GTP,HMMPfam_GTP_EFTU_D3,HMMPfam_GTP_EFTU_D2,superfamily_Translation proteins,superfamily_EF-Tu/eEF-1alpha/eIF2-gamma C-terminal domain,superfamily_P-loop containing nucleoside triphosphate hydrolases - no_errors 6,74286449,T,C 1 1 medium 3.07 Cancer Cell Map Pathway :: EGFR1 /// Entrez Query :: Stability /// Entrez Query :: Tumor Supressor 1 PF00009 // Elongation factor Tu GTP binding domain // 5 // 238 http://getma.org/v1/?cm=var&var=6,74286449,T,C&fts=all http://getma.org/v1/?cm=msa&ty=f&p=EF1A3_HUMAN&rb=5&re=238&var=I8V http://getma.org/v1/pdb.php?prot=EF1A3_HUMAN&from=5&to=238&var=I8V Missense_Mutation p.I8V EEF1A1 -NOL6 65083 genome.wustl.edu 37 9 33466081 33466081 + Silent SNP C C T TCGA-XX-0800-01 TCGA-XX-0800-01 C C C C Unknown Unknown Somatic Capture Illumina GAIIx 9 33456081 33456081 C T SNP NOL6 NM_022917 human genbank 54_36p -1 reviewed silent c.2352 p.T784 0.951 HMMPfam_Nrap HMMPfam_Nrap - no_errors -TLN1 7094 genome.wustl.edu 37 9 35706030 35706030 + Missense_Mutation SNP G G C TCGA-XX-0800-01 TCGA-XX-0800-01 G G G G Unknown Unknown Somatic Capture Illumina GAIIx 9 35696030 35696030 G C SNP TLN1 NM_006289 human genbank 54_36p -1 reviewed missense c.5440 p.L1814V 1.000 NULL HMMSmart_B41,superfamily_SSF54236,HMMPfam_FERM_N,PatternScan_FERM_1,superfamily_FERM_3-hlx,HMMPfam_FERM_M,PatternScan_FERM_2,superfamily_SSF50729,superfamily_Talin_cent,HMMPfam_Talin_middle,superfamily_SSF109885,HMMPfam_VBS,HMMSmart_ILWEQ,HMMPfam_I_LWEQ - no_errors 9,35696030,G,C 1 1 low 1.045 Entrez Query :: Stability REGION // Interaction with SYNM. http://getma.org/v1/?cm=var&var=9,35696030,G,C&fts=all http://getma.org/v1/?cm=msa&ty=f&p=TLN1_HUMAN&rb=1758&re=1848&var=L1814V http://getma.org/v1/pdb.php?prot=TLN1_HUMAN&from=1758&to=1848&var=L1814V Missense_Mutation p.L1814V TLN1 -PLCE1 51196 genome.wustl.edu 37 10 95791516 95791516 + Missense_Mutation SNP T T C TCGA-XX-0800-01 TCGA-XX-0800-01 T T T T Unknown Unknown Somatic Capture Illumina GAIIx 10 95781506 95781506 T C SNP PLCE1 NM_016341 human genbank 54_36p +1 validated missense c.713 p.M238T 0.287 NULL HMMPfam_C2,HMMSmart_SM00239,HMMPfam_RA,HMMSmart_SM00314,HMMPfam_PI-PLC-X,HMMSmart_SM00148,HMMPfam_PI-PLC-Y,HMMSmart_SM00149,HMMPfam_RasGEF,HMMSmart_SM00147,superfamily_Ras GEF,superfamily_C2 domain (Calcium/lipid-binding domain CaLB),HMMPfam_efhand_like,superfamily_PLC-like phosphodiesterases,superfamily_EF-hand - no_errors 10,95781506,T,C 1 4 neutral 0.345 Cancer Cell Map Pathway :: Kit Receptor http://getma.org/v1/?cm=var&var=10,95781506,T,C&fts=all http://getma.org/v1/?cm=msa&ty=f&p=PLCE1_HUMAN&rb=201&re=400&var=M238T Missense_Mutation p.M238T PLCE1 -FLT3 2322 genome.wustl.edu 37 13 28608256 28608257 + In_Frame_Ins INS - - TCATATTCATATTCATATTCATAT TCGA-XX-0900-01 TCGA-XX-0900-01 - - Unknown Valid Somatic WGS Illumina_Capture Illumina GAIIx 13 27506256 27506257 - TCATATTCATATTCATATTCATAT INS FLT3 NM_004119.2 human genbank 54_36p -1 reviewed in_frame_ins c.1800_1799 p.600in_frame_insEYEYEYEY 0.998:1.000 superfamily_Kinase_like superfamily_SSF48726,HMMPfam_ig,superfamily_Kinase_like,HMMPfam_Pkinase_Tyr,HMMSmart_TyrKc,PatternScan_PROTEIN_KINASE_ATP,PatternScan_RECEPTOR_TYR_KIN_III,PatternScan_PROTEIN_KINASE_TYR - no_errors In_Frame_Ins p.599_600insEYEYEYEY p.D600_L601insFREYEYD(4)|p.E598_Y599ins14(3)|p.E598_Y599ins22(2)|p.D600_L601ins17(2)|p.Y599_D600ins12(2)|p.Y599_D600ins15(2)|p.Y599F(2)|p.E598_Y599ins20(1)|p.E598_Y599ins25(1)|p.Y599_D600ins20(1)|p.D600>EPAPQINSTGSSDNEYFYVDFREYEYDLT(1)|p.E598_Y599insE(1)|p.E598_Y599insWDFREYE(1)|p.Y599_D600insYVDFREYEY(1)|p.D600_L601insVDFREYEY(1)|p.Y599_D600>NEYFYVDFREYEY(1)|p.Y599_D600insFDFREYE(1)|p.Y599_D600insFREYEY(1)|p.E598_Y599insFYVDFREYE(1)|p.Y599_D600ins19(1)|p.Y599_D600insDFREYEY(1)|p.Y599_D600ins11(1)|p.E598_Y599ins17(1)|p.Y599_D600ins14(1)|p.E598_Y599insDFREYE(1)|p.E598_Y599insDYVDFREYE(1)|p.D600_L601ins28(1)|p.D600_L601ins20(1) FLT3 -CBL 867 genome.wustl.edu 37 11 119148880 119148880 + Missense_Mutation SNP A A G TCGA-XX-0900-01 TCGA-XX-0900-01 A A A A Unknown Valid Somatic WGS Illumina_Capture Illumina GAIIx 11 118654090 118654090 A G SNP CBL NM_005188 human genbank 54_36p +1 reviewed missense c.1100 p.Q367R 1.000 superfamily_SSF57850 HMMPfam_UBA,HMMSmart_RING,HMMPfam_Cbl_N,superfamily_Adaptor_Cbl_N,HMMPfam_Cbl_N2,HMMPfam_Cbl_N3,HMMSmart_UBA,PatternScan_ZF_RING_1,HMMPfam_zf-C3HC4,superfamily_SSF47473,superfamily_SSF55550,superfamily_SSF57850 - no_errors 11,118654090,A,G 1 1 medium 2.25 Cancer Cell Map Pathway :: EGFR1 /// Cancer Cell Map Pathway :: Kit Receptor /// Cancer Review :: Futreal et al 2004 /// Cancer Review :: Mitelman 2000 /// Entrez Query :: Oncogene /// Sanger CGC :: COSMIC /// Sanger CGC :: Translocation 1 p.E366_Q409del,p.Q367R,p.E366_K477del acute_myeloid_leukaemia,chronic_myelomonocytic_leukaemia,haematopoietic_neoplasm COMPBIAS // Asp/Glu-rich (acidic). /// HELIX // /// REGION // Linker. /// VARIANT // Q->P (in NSL; causes impaired CBL- mediated degradation of cell-surface receptors in a dominant-negative fashion). http://getma.org/v1/?cm=var&var=11,118654090,A,G&fts=all http://getma.org/v1/?cm=msa&ty=f&p=CBL_HUMAN&rb=350&re=380&var=Q367R http://getma.org/v1/pdb.php?prot=CBL_HUMAN&from=350&to=380&var=Q367R Missense_Mutation p.Q367R p.E366_Q409del(13)|p.Q367R(1)|p.E366_K477del(1) CBL diff --git a/core/src/test/resources/data_mutations_swissprotaccession.maf b/core/src/test/resources/data_mutations_swissprotaccession.maf deleted file mode 100644 index e4e8e475ca7..00000000000 --- a/core/src/test/resources/data_mutations_swissprotaccession.maf +++ /dev/null @@ -1,13 +0,0 @@ -#sequenced_samples: TCGA-A2-A04T-01 TCGA-A2-A0CR-01 TCGA-A2-A0CW-01 TCGA-A2-A0D3-01 TCGA-A2-A0SY-01 TCGA-A2-A0T5-01 TCGA-A2-A25D-01 TCGA-A2-A4RW-01 -Hugo_Symbol Tumor_Sample_Barcode Variant_Classification HGVSp_Short SWISSPROT -BICC1 TCGA-A2-A04T-01 Missense_Mutation p.L405S Q9H694 -CLEC7A TCGA-A2-A0CR-01 Missense_Mutation p.K145Q Z9ZZZ9ZZZ9 -HSPG2 TCGA-A2-A0CW-01 Missense_Mutation p.D468N P98160 -NLRP3 TCGA-A2-A0D3-01 Nonsense_Mutation p.R699* Q96P20 -SMPD1 TCGA-A2-A0SY-01 Silent p.P63P P17405 -HSPG2 TCGA-A2-A0T5-01 Splice_Site p.X4137? P98160 -HSPG2 TCGA-A2-A0T5-01 Silent p.= P98160 -HSPG2 TCGA-A2-A0T5-01 Intron p.(=) P98160 -SLC38A2 TCGA-A2-A0T5-01 Missense_Mutation p.T32P Q96QD8 -SLC38A2 TCGA-A2-A25D-01 Silent p.V485V Q96QD8 -TMEM216 TCGA-A2-A4RW-01 Missense_Mutation p.R115C Q9P0N5 diff --git a/core/src/test/resources/data_mutations_swissprotname.maf b/core/src/test/resources/data_mutations_swissprotname.maf deleted file mode 100644 index d9e11eb5300..00000000000 --- a/core/src/test/resources/data_mutations_swissprotname.maf +++ /dev/null @@ -1,13 +0,0 @@ -#sequenced_samples: TCGA-A2-A04T-01 TCGA-A2-A0CR-01 TCGA-A2-A0CW-01 TCGA-A2-A0D3-01 TCGA-A2-A0SY-01 TCGA-A2-A0T5-01 TCGA-A2-A25D-01 TCGA-A2-A4RW-01 -Hugo_Symbol Tumor_Sample_Barcode Variant_Classification HGVSp_Short SWISSPROT -BICC1 TCGA-A2-A04T-01 Missense_Mutation p.L405S BICC1_HUMAN -CLEC7A TCGA-A2-A0CR-01 Missense_Mutation p.K145Q HBB_YEAST -HSPG2 TCGA-A2-A0CW-01 Missense_Mutation p.D468N PGBM_HUMAN -NLRP3 TCGA-A2-A0D3-01 Nonsense_Mutation p.R699* NALP3_HUMAN -SMPD1 TCGA-A2-A0SY-01 Silent p.P63P ASM_HUMAN -HSPG2 TCGA-A2-A0T5-01 Splice_Site p.X4137? PGBM_HUMAN -HSPG2 TCGA-A2-A0T5-01 Silent p.= PGBM_HUMAN -HSPG2 TCGA-A2-A0T5-01 Intron p.(=) PGBM_HUMAN -SLC38A2 TCGA-A2-A0T5-01 Missense_Mutation p.T32P S38A2_HUMAN -SLC38A2 TCGA-A2-A25D-01 Silent p.V485V S38A2_HUMAN -TMEM216 TCGA-A2-A4RW-01 Missense_Mutation p.R115C TM216_HUMAN diff --git a/core/src/test/resources/data_mutsig.txt b/core/src/test/resources/data_mutsig.txt deleted file mode 100644 index 7c6b202458b..00000000000 --- a/core/src/test/resources/data_mutsig.txt +++ /dev/null @@ -1,18031 +0,0 @@ -rank gene description N n npat nsite nsil n1 n2 n3 n4 n5 n6 p q -1 APC adenomatous polyposis coli 1924608 241 160 151 4 6 15 11 0 103 106 <1.00e-15 <6.01e-12 -2 TP53 tumor protein p53 289720 122 120 69 2 48 22 12 2 38 0 <1.00e-15 <6.01e-12 -3 KRAS v-Ki-ras2 Kirsten rat sarcoma viral oncogene homolog 158368 96 96 11 0 0 91 4 0 1 0 <1.00e-15 <6.01e-12 -4 FBXW7 F-box and WD repeat domain containing 7 578816 45 38 28 2 23 6 5 2 9 0 6.33e-15 2.85e-11 -5 SMAD4 SMAD family member 4 381472 30 26 23 0 10 6 9 0 3 2 4.42e-14 1.04e-10 -6 FAM123B family with sequence similarity 123B 743964 27 25 24 2 1 3 4 0 19 0 4.61e-14 1.04e-10 -7 NRAS neuroblastoma RAS viral (v-ras) oncogene homolog 131264 20 20 8 0 2 14 4 0 0 0 4.61e-14 1.04e-10 -8 SMAD2 SMAD family member 2 323456 16 15 12 1 3 5 3 0 5 0 5.60e-14 1.04e-10 -9 PIK3CA phosphoinositide-3-kinase, catalytic, alpha polypeptide 736288 40 33 21 2 6 20 14 0 0 0 5.68e-14 1.04e-10 -10 LRP1B low density lipoprotein-related protein 1B (deleted in tumors) 3172736 79 39 77 18 11 34 23 0 5 6 5.78e-14 1.04e-10 -11 TCF7L2 transcription factor 7-like 2 (T-cell specific, HMG-box) 453708 20 18 18 4 5 5 3 0 7 0 7.23e-14 1.18e-10 -12 BRAF v-raf murine sarcoma viral oncogene homolog B1 499744 23 22 4 0 0 0 23 0 0 0 2.01e-13 3.02e-10 -13 ARID1A AT rich interactive domain 1A (SWI-like) 1311268 22 21 20 3 2 5 1 1 13 0 2.97e-11 4.12e-08 -14 TTN titin 24865216 309 86 304 78 82 114 72 3 13 25 4.97e-11 6.24e-08 -15 PCDH9 protocadherin 9 835520 26 22 26 7 3 11 11 0 1 0 5.19e-11 6.24e-08 -16 WBSCR17 Williams-Beuren syndrome chromosome region 17 403312 19 19 18 3 10 5 1 0 3 0 1.30e-10 1.47e-07 -17 DMD dystrophin (muscular dystrophy, Duchenne and Becker types) 2608328 47 33 46 6 10 14 14 0 9 0 1.60e-10 1.70e-07 -18 ATM ataxia telangiectasia mutated 2109720 39 25 37 3 4 18 5 0 6 6 2.46e-10 2.46e-07 -19 ZC3H13 zinc finger CCCH-type containing 13 1066016 26 21 25 1 8 2 1 0 15 0 8.77e-10 8.02e-07 -20 FAT4 FAT tumor suppressor homolog 4 (Drosophila) 3346084 74 40 74 21 19 30 19 1 5 0 8.89e-10 8.02e-07 -21 LIFR leukemia inhibitory factor receptor alpha 754200 24 18 24 5 4 6 9 1 4 0 3.69e-09 3.17e-06 -22 ACVR1B activin A receptor, type IB 340816 15 14 15 0 4 7 2 0 2 0 5.29e-09 4.33e-06 -23 MAP2K4 mitogen-activated protein kinase kinase 4 252000 11 11 10 1 3 4 2 0 2 0 1.60e-08 0.000013 -24 TXNDC3 thioredoxin domain containing 3 (spermatozoa) 409248 14 11 14 2 3 3 3 0 5 0 7.79e-08 0.000058 -25 CNTN6 contactin 6 711200 22 17 22 3 5 13 2 0 2 0 1.01e-07 0.000073 -26 KLHL4 kelch-like 4 (Drosophila) 508704 16 16 16 3 6 8 2 0 0 0 1.09e-07 0.000075 -27 BAI3 brain-specific angiogenesis inhibitor 3 1046976 23 18 21 6 3 10 6 1 3 0 1.37e-07 0.000090 -28 SYNE1 spectrin repeat containing, nuclear envelope 1 6063232 102 47 100 30 23 42 27 0 7 3 1.39e-07 0.000090 -29 SOX9 SRY (sex determining region Y)-box 9 (campomelic dysplasia, autosomal sex-reversal) 268720 11 10 11 0 0 0 1 0 8 2 1.45e-07 0.000090 -30 CPXCR1 CPX chromosome region, candidate 1 203840 10 9 10 1 2 5 2 0 1 0 1.96e-07 0.00012 -31 PRDM9 PR domain containing 9 610400 20 16 20 4 6 7 4 0 1 2 2.03e-07 0.00012 -32 KIAA1804 540708 18 15 16 0 8 7 1 0 2 0 2.17e-07 0.00012 -33 ACVR2A activin A receptor, type IIA 355264 11 9 10 1 0 0 4 0 5 2 2.84e-07 0.00016 -34 SLITRK1 SLIT and NTRK-like family, member 1 469280 17 15 16 5 6 2 6 0 3 0 3.05e-07 0.00016 -35 DNAH5 dynein, axonemal, heavy chain 5 3138008 70 34 68 15 25 25 11 1 4 4 4.41e-07 0.00023 -36 ATP10A ATPase, class V, type 10A 971776 21 19 21 12 8 6 2 1 4 0 6.59e-07 0.00033 -37 CCDC160 169512 10 7 10 0 0 4 0 1 3 2 7.16e-07 0.00035 -38 CHRDL1 chordin-like 1 318304 12 11 12 1 3 4 2 0 3 0 7.69e-07 0.00036 -39 GRIK3 glutamate receptor, ionotropic, kainate 3 620540 19 17 19 7 14 3 0 1 1 0 9.20e-07 0.00043 -40 ANK2 ankyrin 2, neuronal 2698144 43 31 43 9 16 12 8 2 5 0 1.10e-06 0.00049 -41 TRPC4 transient receptor potential cation channel, subfamily C, member 4 663208 18 17 18 9 4 6 6 0 2 0 1.34e-06 0.00059 -42 ERBB4 v-erb-a erythroblastic leukemia viral oncogene homolog 4 (avian) 904736 21 18 21 7 1 11 6 1 2 0 1.40e-06 0.00060 -43 EPHA3 EPH receptor A3 682304 17 16 17 6 5 6 5 1 0 0 1.44e-06 0.00060 -44 ODZ1 odz, odd Oz/ten-m homolog 1(Drosophila) 1859648 26 22 25 8 9 8 6 0 3 0 1.48e-06 0.00061 -45 OR6N1 olfactory receptor, family 6, subfamily N, member 1 211232 10 10 10 2 2 6 2 0 0 0 1.61e-06 0.00064 -46 MGC26647 171584 7 7 7 0 1 2 1 0 3 0 1.63e-06 0.00064 -47 ELF3 E74-like factor 3 (ets domain transcription factor, epithelial-specific ) 256396 7 7 6 0 0 0 1 0 6 0 1.68e-06 0.00064 -48 CSMD3 CUB and Sushi multiple domains 3 2569280 40 28 40 24 8 14 11 2 5 0 1.72e-06 0.00065 -49 MGC42105 296352 11 11 11 1 5 3 0 0 3 0 1.77e-06 0.00065 -50 EPHA5 EPH receptor A5 690984 18 14 18 8 4 5 6 0 3 0 1.85e-06 0.00067 -51 TLL1 tolloid-like 1 700224 17 15 16 4 6 4 6 0 1 0 1.93e-06 0.00067 -52 CDH10 cadherin 10, type 2 (T2-cadherin) 540064 23 14 22 6 7 5 7 0 4 0 1.93e-06 0.00067 -53 OPCML opioid binding protein/cell adhesion molecule-like 253344 10 10 10 2 3 5 0 0 2 0 1.97e-06 0.00067 -54 ADAM29 ADAM metallopeptidase domain 29 552608 13 12 13 2 5 3 4 0 1 0 2.19e-06 0.00073 -55 CDH9 cadherin 9, type 2 (T1-cadherin) 540736 21 15 20 3 6 8 5 0 2 0 2.49e-06 0.00082 -56 OR51V1 olfactory receptor, family 51, subfamily V, member 1 217280 11 9 11 2 2 3 4 0 2 0 2.54e-06 0.00082 -57 CASP8 caspase 8, apoptosis-related cysteine peptidase 392672 11 10 10 0 1 3 3 0 4 0 3.06e-06 0.00097 -58 OR2L13 olfactory receptor, family 2, subfamily L, member 13 211232 10 10 10 2 2 5 3 0 0 0 3.60e-06 0.0011 -59 CASP14 caspase 14, apoptosis-related cysteine peptidase 168672 9 8 8 0 6 1 0 0 2 0 3.68e-06 0.0011 -60 CCBP2 chemokine binding protein 2 259616 10 10 10 0 4 4 2 0 0 0 3.76e-06 0.0011 -61 EVC2 Ellis van Creveld syndrome 2 (limbin) 843720 19 17 19 8 7 7 3 0 2 0 3.88e-06 0.0011 -62 LRRIQ3 426272 12 10 12 1 1 5 4 0 2 0 3.91e-06 0.0011 -63 DPP10 dipeptidyl-peptidase 10 558968 16 13 16 6 2 7 5 0 2 0 4.63e-06 0.0013 -64 PTPRM protein tyrosine phosphatase, receptor type, M 1008252 27 20 26 4 4 12 8 1 2 0 4.69e-06 0.0013 -65 IL1RAPL2 interleukin 1 receptor accessory protein-like 2 470624 10 10 8 4 5 1 2 0 2 0 4.83e-06 0.0013 -66 CTNNB1 catenin (cadherin-associated protein), beta 1, 88kDa 538048 12 11 12 0 3 4 3 1 1 0 4.83e-06 0.0013 -67 FAM133A family with sequence similarity 133, member A 162240 7 7 7 2 0 2 3 0 2 0 5.04e-06 0.0014 -68 CDH8 cadherin 8, type 2 547456 15 14 14 7 6 5 3 0 1 0 5.29e-06 0.0014 -69 GUCY1A3 guanylate cyclase 1, soluble, alpha 3 475776 17 12 16 7 3 10 0 0 4 0 5.69e-06 0.0015 -70 OR2M4 olfactory receptor, family 2, subfamily M, member 4 210560 8 8 8 0 3 1 2 0 2 0 5.82e-06 0.0015 -71 TMEM132D transmembrane protein 132D 732532 23 19 22 9 7 6 7 2 1 0 5.84e-06 0.0015 -72 FLG filaggrin 2682792 47 32 47 11 17 20 9 0 1 0 5.93e-06 0.0015 -73 EDNRB endothelin receptor type B 325904 13 11 12 6 4 3 5 0 1 0 6.29e-06 0.0016 -74 DOCK2 dedicator of cytokinesis 2 1266496 30 21 28 11 9 9 8 0 4 0 6.97e-06 0.0017 -75 NRXN1 neurexin 1 1042896 24 20 24 11 10 7 4 1 2 0 7.04e-06 0.0017 -76 CDH12 cadherin 12, type 2 (N-cadherin 2) 544096 14 13 12 4 6 3 2 0 3 0 7.97e-06 0.0019 -77 CDH2 cadherin 2, type 1, N-cadherin (neuronal) 609504 22 16 21 0 3 15 3 1 0 0 8.34e-06 0.0020 -78 NRG1 neuregulin 1 674488 14 13 14 2 3 1 5 0 5 0 8.57e-06 0.0020 -79 FAM5C family with sequence similarity 5, member C 521696 16 13 16 3 2 8 4 0 2 0 9.13e-06 0.0021 -80 GRIA4 glutamate receptor, ionotrophic, AMPA 4 680960 19 12 19 4 6 6 5 0 2 0 9.54e-06 0.0022 -81 LPPR4 469056 13 13 13 4 6 6 0 0 1 0 9.88e-06 0.0022 -82 AFF2 AF4/FMR2 family, member 2 900480 19 17 18 10 3 10 6 0 0 0 0.000010 0.0022 -83 LRRN3 leucine rich repeat neuronal 3 477344 11 10 11 3 1 6 3 0 1 0 0.000010 0.0023 -84 DCAF4L2 267008 12 11 12 5 6 2 2 0 2 0 0.000011 0.0024 -85 TRPS1 trichorhinophalangeal syndrome I 875616 19 17 18 6 5 9 3 0 2 0 0.000012 0.0025 -86 CNTN1 contactin 1 705376 17 14 17 3 3 5 5 1 3 0 0.000012 0.0025 -87 GRIA1 glutamate receptor, ionotropic, AMPA 1 623840 19 15 18 5 8 4 6 0 1 0 0.000013 0.0027 -88 MIER3 mesoderm induction early response 1, family member 3 378336 11 11 11 0 3 2 2 0 4 0 0.000013 0.0027 -89 MYO1B myosin IB 790944 17 13 16 2 1 3 4 0 5 4 0.000015 0.0030 -90 LRP2 low density lipoprotein-related protein 2 3181024 52 35 50 16 23 21 5 0 3 0 0.000017 0.0034 -91 SDK1 sidekick homolog 1, cell adhesion molecule (chicken) 1435964 30 27 28 9 19 7 3 0 1 0 0.000017 0.0034 -92 PRIM2 primase, DNA, polypeptide 2 (58kDa) 343896 9 8 8 1 0 1 3 0 5 0 0.000019 0.0037 -93 GPHN gephyrin 538048 12 12 11 1 5 3 2 0 2 0 0.000020 0.0038 -94 SFMBT2 Scm-like with four mbt domains 2 586304 16 14 16 9 5 6 3 0 2 0 0.000023 0.0045 -95 SLC16A7 solute carrier family 16, member 7 (monocarboxylic acid transporter 2) 325472 12 9 11 2 1 5 2 0 4 0 0.000024 0.0045 -96 PIK3R1 phosphoinositide-3-kinase, regulatory subunit 1 (alpha) 525896 12 9 11 0 2 0 2 0 4 4 0.000024 0.0045 -97 CHRM2 cholinergic receptor, muscarinic 2 314720 11 10 11 2 3 6 2 0 0 0 0.000024 0.0045 -98 HMCN1 hemicentin 1 3879820 51 30 50 8 14 19 10 1 3 4 0.000025 0.0047 -99 NALCN sodium leak channel, non-selective 1207136 25 20 25 9 12 6 5 1 1 0 0.000026 0.0047 -100 DSEL dermatan sulfate epimerase-like 822752 20 14 20 4 3 10 3 0 4 0 0.000027 0.0048 -101 UBE2NL ubiquitin-conjugating enzyme E2N-like 104384 7 7 6 1 2 4 0 1 0 0 0.000028 0.0050 -102 TPTE transmembrane phosphatase with tensin homology 389760 17 12 15 1 6 2 7 0 2 0 0.000029 0.0051 -103 KCNA4 potassium voltage-gated channel, shaker-related subfamily, member 4 440300 13 12 13 4 5 3 3 0 2 0 0.000030 0.0052 -104 C8B complement component 8, beta polypeptide 408576 10 10 10 0 3 5 2 0 0 0 0.000030 0.0052 -105 PCDH11X protocadherin 11 X-linked 919384 23 14 23 6 4 8 5 1 3 2 0.000031 0.0052 -106 GABRG1 gamma-aminobutyric acid (GABA) A receptor, gamma 1 321216 9 8 9 1 1 4 2 0 2 0 0.000031 0.0052 -107 CDH18 cadherin 18, type 2 541408 16 13 16 6 5 6 3 0 2 0 0.000033 0.0054 -108 RIMS1 regulating synaptic membrane exocytosis 1 974004 21 15 21 3 4 2 8 0 7 0 0.000033 0.0054 -109 KIAA1486 411604 16 13 16 4 10 2 1 0 3 0 0.000033 0.0055 -110 ZNF568 zinc finger protein 568 437920 13 10 13 0 3 5 1 0 4 0 0.000035 0.0057 -111 B2M beta-2-microglobulin 83328 7 5 6 0 0 1 2 0 2 2 0.000036 0.0058 -112 ABCA12 ATP-binding cassette, sub-family A (ABC1), member 12 1798944 33 22 33 12 8 12 11 0 2 0 0.000037 0.0059 -113 DACH2 dachshund homolog 2 (Drosophila) 407696 13 12 12 2 6 6 1 0 0 0 0.000038 0.0060 -114 FSTL5 follistatin-like 5 583296 14 11 14 3 2 6 3 0 3 0 0.000038 0.0060 -115 IFT80 intraflagellar transport 80 homolog (Chlamydomonas) 539840 11 10 11 1 2 3 4 1 1 0 0.000038 0.0060 -116 TMTC1 transmembrane and tetratricopeptide repeat containing 1 536032 14 13 14 3 6 5 2 0 1 0 0.000039 0.0060 -117 GPC6 glypican 6 381696 10 10 9 0 5 4 1 0 0 0 0.000039 0.0060 -118 TNFRSF10C tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain 177840 6 6 2 0 0 6 0 0 0 0 0.000040 0.0060 -119 TLX1NB 31928 2 2 2 0 0 0 0 0 2 0 0.000040 0.0060 -120 NCAM2 neural cell adhesion molecule 2 579264 16 12 16 6 4 6 2 1 3 0 0.000040 0.0060 -121 NRXN3 neurexin 3 806400 18 17 18 4 8 4 4 0 2 0 0.000041 0.0061 -122 PSG8 pregnancy specific beta-1-glycoprotein 8 291424 8 8 6 1 5 2 0 0 1 0 0.000042 0.0063 -123 SPATA17 spermatogenesis associated 17 252224 9 9 9 0 5 0 4 0 0 0 0.000043 0.0064 -124 GRIN2A glutamate receptor, ionotropic, N-methyl D-aspartate 2A 985824 22 19 22 13 11 5 4 0 0 2 0.000044 0.0064 -125 DCHS2 dachsous 2 (Drosophila) 1941632 40 24 39 15 10 20 5 1 4 0 0.000047 0.0067 -126 PKHD1 polycystic kidney and hepatic disease 1 (autosomal recessive) 2806272 48 26 48 8 10 22 10 1 5 0 0.000048 0.0069 -127 CDH11 cadherin 11, type 2, OB-cadherin (osteoblast) 544216 14 14 14 5 2 5 6 1 0 0 0.000051 0.0073 -128 BCHE butyrylcholinesterase 407904 9 9 9 1 3 1 4 0 1 0 0.000053 0.0075 -129 PCDHB5 protocadherin beta 5 504644 16 14 15 2 6 6 3 0 1 0 0.000057 0.0079 -130 ME1 malic enzyme 1, NADP(+)-dependent, cytosolic 396648 9 9 9 1 4 2 1 0 2 0 0.000060 0.0083 -131 FLRT2 fibronectin leucine rich transmembrane protein 2 437528 16 13 16 6 8 5 3 0 0 0 0.000060 0.0083 -132 SCN7A sodium channel, voltage-gated, type VII, alpha 1051568 20 15 20 0 0 6 11 0 3 0 0.000066 0.0089 -133 CSMD1 CUB and Sushi multiple domains 1 2368776 47 26 46 19 9 21 9 1 3 4 0.000066 0.0089 -134 MAP2 microtubule-associated protein 2 1300096 25 16 24 9 2 12 8 0 3 0 0.000066 0.0089 -135 OTOL1 298816 8 8 7 0 3 3 1 0 1 0 0.000068 0.0091 -136 MCF2 MCF.2 cell line derived transforming sequence 696448 15 12 15 0 0 7 6 0 0 2 0.000073 0.0096 -137 DLC1 deleted in liver cancer 1 1054060 29 20 27 8 12 12 3 0 2 0 0.000076 0.010 -138 IL18R1 interleukin 18 receptor 1 373184 10 10 10 2 2 4 3 0 1 0 0.000078 0.010 -139 ZCWPW2 zinc finger, CW type with PWWP domain 2 247072 7 7 6 2 2 1 3 0 1 0 0.000079 0.010 -140 KCNQ3 potassium voltage-gated channel, KQT-like subfamily, member 3 550660 14 13 14 7 9 3 1 0 1 0 0.000082 0.011 -141 MAPK10 mitogen-activated protein kinase 10 324352 8 8 8 1 0 3 3 0 2 0 0.000084 0.011 -142 SORCS1 sortilin-related VPS10 domain containing receptor 1 804048 15 15 15 7 5 6 2 1 1 0 0.000085 0.011 -143 LEPREL1 leprecan-like 1 402776 11 10 11 0 3 2 2 1 3 0 0.000087 0.011 -144 UNC13C unc-13 homolog C (C. elegans) 1491912 24 17 24 5 6 10 3 0 5 0 0.000087 0.011 -145 AMY2A amylase, alpha 2A (pancreatic) 133984 5 5 5 0 0 1 1 0 3 0 0.000087 0.011 -146 ZNF593 zinc finger protein 593 47712 4 4 4 0 1 1 0 0 2 0 0.000088 0.011 -147 SAT1 spermidine/spermine N1-acetyltransferase 1 120960 4 4 2 0 0 0 1 0 3 0 0.000090 0.011 -148 SPAG17 sperm associated antigen 17 1535360 26 17 26 3 5 12 5 0 2 2 0.000093 0.011 -149 ARL2BP ADP-ribosylation factor-like 2 binding protein 115448 6 5 6 1 0 0 3 0 1 2 0.000094 0.011 -150 RWDD2B RWD domain containing 2B 219520 9 8 8 0 3 4 1 0 1 0 0.000097 0.012 -151 GABRA5 gamma-aminobutyric acid (GABA) A receptor, alpha 5 289748 9 9 8 2 3 5 0 0 1 0 0.000098 0.012 -152 FAT2 FAT tumor suppressor homolog 2 (Drosophila) 2943808 51 29 51 9 14 25 8 1 3 0 0.000099 0.012 -153 TRPA1 transient receptor potential cation channel, subfamily A, member 1 776832 19 12 18 7 4 10 3 0 2 0 0.00011 0.013 -154 NAALAD2 N-acetylated alpha-linked acidic dipeptidase 2 514976 13 11 13 0 3 5 4 0 1 0 0.00011 0.013 -155 DKK4 dickkopf homolog 4 (Xenopus laevis) 154784 7 7 6 0 3 2 2 0 0 0 0.00011 0.013 -156 JAKMIP2 janus kinase and microtubule interacting protein 2 562912 17 13 17 4 6 7 3 0 1 0 0.00011 0.013 -157 MAP3K4 mitogen-activated protein kinase kinase kinase 4 1075396 18 17 17 6 7 5 2 0 4 0 0.00011 0.013 -158 KCNH7 potassium voltage-gated channel, subfamily H (eag-related), member 7 833504 19 14 19 2 4 5 7 0 3 0 0.00012 0.013 -159 ANO4 641312 12 11 12 2 4 3 3 0 2 0 0.00012 0.013 -160 ATP7A ATPase, Cu++ transporting, alpha polypeptide (Menkes syndrome) 424544 6 6 6 1 1 5 0 0 0 0 0.00013 0.014 -161 OR8B4 olfactory receptor, family 8, subfamily B, member 4 209216 6 6 6 1 1 2 2 0 1 0 0.00013 0.015 -162 POSTN periostin, osteoblast specific factor 583072 13 11 11 3 6 2 4 0 1 0 0.00013 0.015 -163 GML glycosylphosphatidylinositol anchored molecule like protein 109536 6 6 6 0 1 3 2 0 0 0 0.00014 0.015 -164 ZEB1 zinc finger E-box binding homeobox 1 758768 12 11 12 2 4 4 2 0 2 0 0.00014 0.015 -165 ESR1 estrogen receptor 1 373996 12 11 12 0 4 3 2 1 2 0 0.00014 0.016 -166 HCLS1 hematopoietic cell-specific Lyn substrate 1 338912 8 8 7 2 4 1 0 0 3 0 0.00015 0.016 -167 TNR tenascin R (restrictin, janusin) 932064 21 17 21 7 11 6 1 0 3 0 0.00015 0.016 -168 MYO16 myosin XVI 1135596 22 17 20 5 6 7 5 0 4 0 0.00015 0.016 -169 UGGT2 1024100 14 12 14 3 2 2 7 0 1 2 0.00015 0.016 -170 SOHLH2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 296128 10 9 10 3 4 5 1 0 0 0 0.00016 0.017 -171 SLC9A9 solute carrier family 9 (sodium/hydrogen exchanger), member 9 448448 13 12 13 0 3 4 5 0 1 0 0.00017 0.017 -172 LUZP2 leucine zipper protein 2 243936 6 6 6 4 2 1 1 0 2 0 0.00017 0.017 -173 NXF5 nuclear RNA export factor 5 251296 7 7 7 0 2 1 2 1 1 0 0.00017 0.017 -174 ANGPTL5 angiopoietin-like 5 268576 9 8 9 1 1 4 2 1 1 0 0.00017 0.017 -175 FGA fibrinogen alpha chain 580252 13 12 13 1 5 3 3 0 2 0 0.00017 0.017 -176 KIAA2022 KIAA2022 1022112 16 15 16 3 2 9 3 0 2 0 0.00017 0.017 -177 PWP1 PWP1 homolog (S. cerevisiae) 350784 8 8 8 0 2 0 3 0 3 0 0.00017 0.017 -178 SH3GL3 SH3-domain GRB2-like 3 230944 9 8 9 0 3 4 0 1 1 0 0.00018 0.018 -179 ACSS3 acyl-CoA synthetase short-chain family member 3 441980 8 8 8 1 0 3 2 0 3 0 0.00018 0.018 -180 ROBO1 roundabout, axon guidance receptor, homolog 1 (Drosophila) 1138408 25 19 25 8 7 13 4 0 1 0 0.00018 0.018 -181 COL4A5 collagen, type IV, alpha 5 (Alport syndrome) 1158440 19 15 19 4 2 8 5 0 4 0 0.00020 0.020 -182 RNASE11 ribonuclease, RNase A family, 11 (non-active) 135296 5 5 5 1 0 3 0 1 1 0 0.00020 0.020 -183 EIF4A2 eukaryotic translation initiation factor 4A, isoform 2 284032 5 5 4 0 0 0 1 3 1 0 0.00020 0.020 -184 RPS6KA6 ribosomal protein S6 kinase, 90kDa, polypeptide 6 513272 7 7 7 0 1 2 0 0 4 0 0.00021 0.020 -185 PCDH10 protocadherin 10 657972 20 17 19 10 12 4 2 0 2 0 0.00021 0.021 -186 MAGEC2 melanoma antigen family C, 2 251816 7 7 7 1 0 5 1 0 1 0 0.00021 0.021 -187 STON1-GTF2A1L STON1-GTF2A1L 803264 16 12 15 6 4 6 4 0 2 0 0.00022 0.021 -188 CTSO cathepsin O 192416 7 6 7 0 2 3 2 0 0 0 0.00022 0.021 -189 KRTAP5-5 keratin associated protein 5-5 131768 4 4 1 1 0 0 0 4 0 0 0.00022 0.021 -190 ISL1 ISL LIM homeobox 1 238896 9 8 9 2 2 3 3 0 1 0 0.00023 0.021 -191 FAM22F family with sequence similarity 22, member F 395912 10 10 5 1 1 8 0 0 1 0 0.00023 0.021 -192 TRIM55 tripartite motif-containing 55 398496 10 9 10 0 5 2 0 1 2 0 0.00023 0.022 -193 KCNH5 potassium voltage-gated channel, subfamily H (eag-related), member 5 682080 19 13 19 3 10 5 2 1 1 0 0.00024 0.022 -194 ADAMTS12 ADAM metallopeptidase with thrombospondin type 1 motif, 12 1093344 25 18 25 7 10 10 4 0 1 0 0.00024 0.022 -195 DPYD dihydropyrimidine dehydrogenase 719712 14 12 14 4 3 6 3 0 2 0 0.00024 0.022 -196 ZFHX4 zinc finger homeobox 4 2273488 44 24 43 18 11 22 8 0 3 0 0.00024 0.022 -197 ZNF677 zinc finger protein 677 394716 11 9 10 2 0 5 4 0 2 0 0.00025 0.022 -198 OR4A15 olfactory receptor, family 4, subfamily A, member 15 232736 7 6 7 0 1 4 1 0 1 0 0.00025 0.022 -199 PCDH15 protocadherin 15 1686668 31 20 30 8 7 9 10 1 4 0 0.00025 0.022 -200 LRRK2 leucine-rich repeat kinase 2 1744512 24 19 24 5 7 5 9 0 3 0 0.00025 0.022 -201 ARHGAP15 Rho GTPase activating protein 15 331520 7 7 7 1 3 2 1 0 1 0 0.00025 0.022 -202 MAP7 microtubule-associated protein 7 503104 10 10 10 0 2 0 3 0 5 0 0.00026 0.023 -203 ZIM3 zinc finger, imprinted 3 321440 10 9 9 3 2 3 4 0 1 0 0.00026 0.023 -204 SGCZ sarcoglycan zeta 215464 9 7 8 5 3 3 2 0 1 0 0.00027 0.024 -205 POTEB 400540 12 8 12 5 3 3 3 0 3 0 0.00027 0.024 -206 PCDH18 protocadherin 18 766976 19 14 19 9 3 9 6 0 1 0 0.00027 0.024 -207 PCDHB2 protocadherin beta 2 502460 15 14 15 8 9 1 4 0 1 0 0.00027 0.024 -208 HMGN5 126192 3 3 3 0 1 0 0 0 2 0 0.00028 0.024 -209 ITK IL2-inducible T-cell kinase 432544 11 10 10 3 4 2 3 0 2 0 0.00028 0.024 -210 FREM2 FRAS1 related extracellular matrix protein 2 2115344 29 23 29 7 10 7 9 0 3 0 0.00029 0.025 -211 ARID2 AT rich interactive domain 2 (ARID, RFX-like) 1250256 20 15 20 1 4 5 6 0 3 2 0.00029 0.025 -212 ATP6V0D2 ATPase, H+ transporting, lysosomal 38kDa, V0 subunit d2 243040 9 8 9 0 3 2 2 0 2 0 0.00030 0.025 -213 SLCO6A1 solute carrier organic anion transporter family, member 6A1 495488 11 10 11 4 3 3 2 0 3 0 0.00031 0.026 -214 CD1E CD1e molecule 266784 6 6 6 0 2 2 1 0 1 0 0.00032 0.027 -215 SESTD1 SEC14 and spectrin domains 1 483616 9 8 9 1 3 2 3 0 1 0 0.00033 0.028 -216 PRDM2 PR domain containing 2, with ZNF domain 1178016 15 15 14 2 1 4 6 1 3 0 0.00035 0.029 -217 LASS3 LAG1 homolog, ceramide synthase 3 267008 11 9 10 1 4 5 2 0 0 0 0.00035 0.029 -218 CHST4 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 4 260120 7 7 7 2 4 0 1 0 2 0 0.00036 0.030 -219 ZMYM6 zinc finger, MYM-type 6 754720 11 10 11 0 4 2 3 0 2 0 0.00036 0.030 -220 CNBD1 cyclic nucleotide binding domain containing 1 283832 8 7 8 5 0 2 4 0 2 0 0.00037 0.031 -221 KCNT2 potassium channel, subfamily T, member 2 788480 11 11 11 5 1 4 5 0 1 0 0.00038 0.031 -222 RPE65 retinal pigment epithelium-specific protein 65kDa 371392 9 8 9 3 2 2 2 0 1 2 0.00038 0.031 -223 RIMS2 regulating synaptic membrane exocytosis 2 961436 18 13 16 7 7 3 2 0 6 0 0.00039 0.031 -224 PTEN phosphatase and tensin homolog (mutated in multiple advanced cancers 1) 279552 11 7 9 1 3 2 1 0 3 2 0.00039 0.031 -225 PRKD1 protein kinase D1 569632 15 12 15 5 4 10 0 0 1 0 0.00040 0.032 -226 C4orf37 chromosome 4 open reading frame 37 318976 8 8 8 0 0 5 2 0 1 0 0.00040 0.032 -227 AGPAT4 1-acylglycerol-3-phosphate O-acyltransferase 4 (lysophosphatidic acid acyltransferase, delta) 261856 8 7 6 2 5 0 1 0 2 0 0.00041 0.033 -228 ZNF521 zinc finger protein 521 882768 15 13 15 4 4 4 5 0 2 0 0.00041 0.033 -229 TUSC3 tumor suppressor candidate 3 233660 8 7 8 2 4 0 3 0 1 0 0.00042 0.033 -230 OR5W2 olfactory receptor, family 5, subfamily W, member 2 209888 7 7 7 0 2 2 3 0 0 0 0.00043 0.033 -231 ZNF99 zinc finger protein 99 704032 20 11 20 0 1 12 4 0 3 0 0.00043 0.033 -232 OLFM3 olfactomedin 3 313824 7 7 7 1 1 4 1 0 1 0 0.00044 0.034 -233 FAM135B family with sequence similarity 135, member B 962528 21 15 20 6 10 6 3 0 2 0 0.00044 0.034 -234 COL22A1 collagen, type XXII, alpha 1 1105240 22 16 22 7 7 7 4 1 3 0 0.00046 0.036 -235 ZNF804B zinc finger protein 804B 910784 16 12 16 5 1 7 6 1 1 0 0.00047 0.036 -236 CFHR5 complement factor H-related 5 392000 6 6 6 1 1 2 1 0 2 0 0.00048 0.037 -237 SLC44A5 solute carrier family 44, member 5 504448 11 9 10 2 3 4 4 0 0 0 0.00049 0.037 -238 TMPRSS11A transmembrane protease, serine 11A 292544 7 7 6 1 4 1 1 0 1 0 0.00049 0.037 -239 PTPN12 protein tyrosine phosphatase, non-receptor type 12 540960 11 10 10 0 2 2 4 0 3 0 0.00050 0.038 -240 NDUFAF4 120960 5 5 5 0 1 3 1 0 0 0 0.00050 0.038 -241 BMPR2 bone morphogenetic protein receptor, type II (serine/threonine kinase) 709856 11 9 10 0 1 4 2 0 4 0 0.00051 0.038 -242 RYR2 ryanodine receptor 2 (cardiac) 3356864 59 29 59 17 15 24 16 0 4 0 0.00051 0.038 -243 SGCG sarcoglycan, gamma (35kDa dystrophin-associated glycoprotein) 202496 9 7 8 0 6 3 0 0 0 0 0.00052 0.038 -244 RARB retinoic acid receptor, beta 308896 9 8 9 0 1 4 1 0 3 0 0.00052 0.038 -245 CYTL1 cytokine-like 1 79408 4 4 4 0 2 1 0 0 1 0 0.00052 0.038 -246 TECTA tectorin alpha 1453984 26 21 26 13 12 9 3 0 2 0 0.00054 0.040 -247 ZNF334 zinc finger protein 334 461216 8 8 8 1 0 3 3 0 2 0 0.00054 0.040 -248 MLF1 myeloid leukemia factor 1 183092 4 4 3 0 0 1 0 0 3 0 0.00055 0.040 -249 ZEB2 zinc finger E-box binding homeobox 2 824544 20 15 19 2 9 7 4 0 0 0 0.00056 0.040 -250 RXFP2 relaxin/insulin-like family peptide receptor 2 523488 10 10 10 4 1 3 5 0 1 0 0.00056 0.040 -251 LRRIQ1 leucine-rich repeats and IQ motif containing 1 1181712 24 14 23 2 3 9 6 0 2 4 0.00056 0.040 -252 PAPPA pregnancy-associated plasma protein A, pappalysin 1 1019872 20 17 20 5 10 8 1 0 1 0 0.00057 0.040 -253 GFRA1 GDNF family receptor alpha 1 308328 8 8 8 2 2 2 3 0 1 0 0.00057 0.040 -254 PCDHA13 protocadherin alpha 13 618016 16 14 16 2 8 3 2 1 2 0 0.00057 0.040 -255 GALNT14 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 14 (GalNAc-T14) 385056 10 10 10 1 4 4 2 0 0 0 0.00057 0.040 -256 ZNF429 zinc finger protein 429 457184 11 9 11 2 1 7 2 0 1 0 0.00057 0.040 -257 ADCY2 adenylate cyclase 2 (brain) 731948 15 14 15 9 2 6 5 1 1 0 0.00058 0.040 -258 OR7C1 olfactory receptor, family 7, subfamily C, member 1 214340 6 6 6 2 3 1 1 0 1 0 0.00059 0.041 -259 PCDH17 protocadherin 17 713776 21 16 21 8 10 5 6 0 0 0 0.00059 0.041 -260 PEX3 peroxisomal biogenesis factor 3 262080 8 7 8 1 2 1 4 0 1 0 0.00060 0.041 -261 NLRP8 NLR family, pyrin domain containing 8 713888 13 11 13 5 4 5 2 0 2 0 0.00061 0.042 -262 CACNG3 calcium channel, voltage-dependent, gamma subunit 3 215936 8 8 6 2 5 1 1 0 1 0 0.00061 0.042 -263 RHOA ras homolog gene family, member A 133952 5 5 5 0 1 1 2 0 1 0 0.00062 0.043 -264 COL11A1 collagen, type XI, alpha 1 1309504 24 18 24 3 4 12 7 0 1 0 0.00065 0.044 -265 F13A1 coagulation factor XIII, A1 polypeptide 505120 10 10 10 0 3 4 2 0 1 0 0.00065 0.045 -266 C12orf54 chromosome 12 open reading frame 54 92288 4 4 4 0 0 0 3 0 1 0 0.00066 0.045 -267 CLECL1 C-type lectin-like 1 114688 5 4 5 0 0 2 2 0 1 0 0.00066 0.045 -268 OR52A5 olfactory receptor, family 52, subfamily A, member 5 213696 7 7 7 0 1 3 2 0 1 0 0.00067 0.045 -269 INHBA inhibin, beta A 288736 10 9 10 5 4 2 3 0 1 0 0.00068 0.046 -270 CXorf59 chromosome X open reading frame 59 346976 6 6 6 1 0 3 3 0 0 0 0.00069 0.046 -271 P2RY10 purinergic receptor P2Y, G-protein coupled, 10 229376 7 7 7 2 2 3 2 0 0 0 0.00070 0.047 -272 MARCO macrophage receptor with collagenous structure 365208 10 10 10 2 3 7 0 0 0 0 0.00070 0.047 -273 COL6A3 collagen, type VI, alpha 3 2166304 43 27 42 19 29 10 1 0 3 0 0.00072 0.048 -274 COL12A1 collagen, type XII, alpha 1 2106776 37 21 37 5 12 14 7 2 2 0 0.00075 0.049 -275 NMUR2 neuromedin U receptor 2 283136 9 9 9 4 6 2 1 0 0 0 0.00075 0.049 -276 TAF1L TAF1 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 210kDa-like 1228640 22 16 22 6 7 9 4 0 2 0 0.00075 0.049 -277 POLI polymerase (DNA directed) iota 480256 11 8 11 0 1 4 3 0 1 2 0.00075 0.049 -278 MYH11 myosin, heavy chain 11, smooth muscle 1375136 28 21 28 8 12 8 2 1 5 0 0.00075 0.049 -279 SLCO4C1 solute carrier organic anion transporter family, member 4C1 498848 11 11 10 2 2 6 3 0 0 0 0.00077 0.050 -280 SLC6A15 solute carrier family 6, member 15 526624 13 10 13 4 2 5 5 0 1 0 0.00077 0.050 -281 GSK3B glycogen synthase kinase 3 beta 302400 8 7 8 0 3 1 2 0 2 0 0.00079 0.050 -282 CYP11B1 cytochrome P450, family 11, subfamily B, polypeptide 1 346752 9 9 9 2 4 3 1 0 1 0 0.00079 0.050 -283 SACS spastic ataxia of Charlevoix-Saguenay (sacsin) 3047576 45 22 45 9 6 23 10 0 4 2 0.00079 0.050 -284 CHD4 chromodomain helicase DNA binding protein 4 1320396 19 17 18 5 10 6 1 0 2 0 0.00082 0.052 -285 CD180 CD180 molecule 447552 10 9 9 3 1 3 5 0 1 0 0.00083 0.052 -286 C22orf40 86016 3 3 2 0 0 0 1 0 2 0 0.00083 0.052 -287 PCDHB16 protocadherin beta 16 484988 10 10 9 4 3 1 2 2 2 0 0.00087 0.054 -288 GGA2 golgi associated, gamma adaptin ear containing, ARF binding protein 2 406560 8 8 8 1 2 0 1 1 4 0 0.00087 0.054 -289 NLRP4 NLR family, pyrin domain containing 4 676704 18 14 17 8 9 6 2 0 1 0 0.00088 0.055 -290 KCNB2 potassium voltage-gated channel, Shab-related subfamily, member 2 614656 12 11 12 7 5 3 1 0 1 2 0.00088 0.055 -291 CNTNAP4 contactin associated protein-like 4 899712 13 12 13 3 1 4 6 0 2 0 0.00089 0.055 -292 USP17L2 243824 9 8 9 2 1 4 3 0 1 0 0.00091 0.056 -293 HNRNPA3 241332 5 5 5 1 1 1 0 0 3 0 0.00092 0.056 -294 FLG2 filaggrin family member 2 1609216 18 13 18 6 1 9 4 0 4 0 0.00092 0.056 -295 RSPO2 R-spondin 2 homolog (Xenopus laevis) 168448 6 6 5 0 2 3 1 0 0 0 0.00092 0.056 -296 FSTL1 follistatin-like 1 210560 6 6 6 0 2 3 0 0 1 0 0.00092 0.056 -297 ZNF560 zinc finger protein 560 538720 15 10 15 0 3 7 2 0 3 0 0.00093 0.056 -298 SSX5 synovial sarcoma, X breakpoint 5 160832 6 6 6 0 2 1 3 0 0 0 0.00093 0.056 -299 SLC8A1 solute carrier family 8 (sodium/calcium exchanger), member 1 663488 13 13 12 1 5 5 3 0 0 0 0.00094 0.057 -300 REG1A regenerating islet-derived 1 alpha (pancreatic stone protein, pancreatic thread protein) 116704 5 5 5 0 3 2 0 0 0 0 0.00097 0.058 -301 HSPA1L heat shock 70kDa protein 1-like 432320 9 9 9 1 3 4 1 0 1 0 0.00098 0.058 -302 OR4C11 olfactory receptor, family 4, subfamily C, member 11 209888 4 4 4 0 0 3 0 0 1 0 0.00098 0.059 -303 NELL1 NEL-like 1 (chicken) 562912 14 12 14 0 8 4 0 0 2 0 0.00099 0.059 -304 CNGB3 cyclic nucleotide gated channel beta 3 560448 13 10 13 3 1 4 2 1 2 3 0.0010 0.059 -305 C22orf23 chromosome 22 open reading frame 23 151872 6 6 6 1 0 4 1 0 1 0 0.0010 0.059 -306 AURKC aurora kinase C 206600 7 7 7 3 3 3 1 0 0 0 0.0010 0.059 -307 CNTN3 contactin 3 (plasmacytoma associated) 711200 11 10 11 3 3 3 4 0 1 0 0.0010 0.059 -308 MRGPRX1 MAS-related GPR, member X1 217952 7 6 7 1 4 2 0 0 1 0 0.0010 0.059 -309 OR6T1 olfactory receptor, family 6, subfamily T, member 1 218624 6 6 6 3 2 3 1 0 0 0 0.0010 0.059 -310 PTN pleiotrophin (heparin binding growth factor 8, neurite growth-promoting factor 1) 117152 5 5 5 0 1 3 1 0 0 0 0.0010 0.059 -311 ST6GALNAC5 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 212632 6 6 6 0 1 3 0 0 2 0 0.0010 0.059 -312 PROKR1 prokineticin receptor 1 266560 9 9 9 5 4 5 0 0 0 0 0.0010 0.060 -313 CNTNAP2 contactin associated protein-like 2 891884 12 12 12 9 7 3 1 0 1 0 0.0011 0.062 -314 OR51I2 olfactory receptor, family 51, subfamily I, member 2 211232 7 6 7 0 2 3 1 0 1 0 0.0011 0.062 -315 CYP19A1 cytochrome P450, family 19, subfamily A, polypeptide 1 346752 8 8 8 1 2 1 4 0 1 0 0.0011 0.062 -316 SPATA8 spermatogenesis associated 8 73920 3 3 3 1 0 0 3 0 0 0 0.0011 0.062 -317 ZNF22 zinc finger protein 22 (KOX 15) 152096 3 3 1 0 0 0 0 0 3 0 0.0011 0.062 -318 PTPRT protein tyrosine phosphatase, receptor type, T 981560 17 14 17 8 5 6 2 0 4 0 0.0011 0.062 -319 RNF17 ring finger protein 17 1122688 17 12 17 1 0 6 7 0 4 0 0.0011 0.063 -320 ZNF536 zinc finger protein 536 808108 16 15 16 4 12 1 1 0 2 0 0.0011 0.063 -321 HLA-DRA major histocompatibility complex, class II, DR alpha 116564 6 5 6 0 2 2 0 0 0 2 0.0011 0.063 -322 ELAVL2 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 2 (Hu antigen B) 247296 7 7 7 1 1 0 5 0 1 0 0.0011 0.063 -323 RNF43 ring finger protein 43 525664 12 11 11 2 4 2 4 0 2 0 0.0011 0.063 -324 PCBP1 poly(rC) binding protein 1 229712 6 6 3 0 0 0 6 0 0 0 0.0012 0.064 -325 RBM10 RNA binding motif protein 10 598980 9 9 8 0 1 2 0 0 6 0 0.0012 0.064 -326 TAS2R10 taste receptor, type 2, member 10 207872 6 6 6 1 2 1 2 0 1 0 0.0012 0.064 -327 GRM7 glutamate receptor, metabotropic 7 623588 12 11 11 2 4 2 4 0 2 0 0.0012 0.064 -328 OR2M2 olfactory receptor, family 2, subfamily M, member 2 234752 7 6 7 0 1 5 1 0 0 0 0.0012 0.064 -329 OR4A5 olfactory receptor, family 4, subfamily A, member 5 213248 6 5 6 2 0 2 3 0 1 0 0.0012 0.064 -330 ZNF43 zinc finger protein 43 547904 10 10 10 3 0 1 8 0 1 0 0.0012 0.064 -331 SAMD9L sterile alpha motif domain containing 9-like 1066016 19 13 19 4 2 10 5 0 2 0 0.0012 0.064 -332 OR5B12 olfactory receptor, family 5, subfamily B, member 12 212576 6 5 6 1 1 1 2 0 2 0 0.0012 0.065 -333 MDGA2 MAM domain containing glycosylphosphatidylinositol anchor 2 500656 12 10 12 1 1 7 3 0 1 0 0.0012 0.065 -334 CDON Cdon homolog (mouse) 867104 14 14 14 8 7 3 3 0 1 0 0.0012 0.065 -335 GLRB glycine receptor, beta 342720 7 7 7 4 2 0 3 0 2 0 0.0012 0.065 -336 SLCO1B3 solute carrier organic anion transporter family, member 1B3 484960 8 8 8 3 1 2 4 0 1 0 0.0012 0.066 -337 OLFML1 olfactomedin-like 1 272328 7 7 7 0 1 4 1 0 1 0 0.0012 0.066 -338 IDH2 isocitrate dehydrogenase 2 (NADP+), mitochondrial 271704 7 7 7 1 4 1 1 0 1 0 0.0012 0.066 -339 OR52H1 olfactory receptor, family 52, subfamily H, member 1 216608 7 7 7 0 2 3 2 0 0 0 0.0013 0.068 -340 P2RY14 purinergic receptor P2Y, G-protein coupled, 14 228704 6 6 6 0 1 5 0 0 0 0 0.0013 0.068 -341 CHST9 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 9 302848 10 8 10 0 2 4 3 1 0 0 0.0013 0.068 -342 TET1 tet oncogene 1 1445920 20 16 20 5 3 12 3 0 2 0 0.0013 0.070 -343 LRTM1 leucine-rich repeats and transmembrane domains 1 235200 7 7 7 0 1 4 2 0 0 0 0.0013 0.070 -344 AKIRIN2 93212 4 4 4 0 1 0 2 0 1 0 0.0013 0.070 -345 KCNQ5 potassium voltage-gated channel, KQT-like subfamily, member 5 591192 10 10 10 2 3 2 3 0 2 0 0.0014 0.071 -346 OR52J3 olfactory receptor, family 52, subfamily J, member 3 210560 5 5 5 1 0 2 1 1 1 0 0.0014 0.071 -347 LILRB5 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 5 397424 11 10 11 1 2 7 1 1 0 0 0.0014 0.071 -348 ZNF208 zinc finger protein 208 783748 17 11 17 3 0 11 6 0 0 0 0.0014 0.071 -349 PPP1R3A protein phosphatase 1, regulatory (inhibitor) subunit 3A 758240 13 12 13 1 2 4 7 0 0 0 0.0014 0.071 -350 OR10G9 olfactory receptor, family 10, subfamily G, member 9 210560 6 6 6 0 2 3 1 0 0 0 0.0014 0.071 -351 SLCO1B1 solute carrier organic anion transporter family, member 1B1 477568 12 8 12 2 2 2 4 0 2 2 0.0014 0.072 -352 RIMBP2 RIMS binding protein 2 704060 16 16 16 4 7 5 2 0 2 0 0.0014 0.072 -353 ASB5 ankyrin repeat and SOCS box-containing 5 228032 9 7 9 0 1 4 3 0 1 0 0.0014 0.072 -354 FCRL5 Fc receptor-like 5 671568 11 11 11 0 4 2 1 1 3 0 0.0014 0.072 -355 MACC1 576800 12 11 12 3 3 6 2 1 0 0 0.0014 0.072 -356 CEP70 centrosomal protein 70kDa 416192 8 8 8 1 1 3 3 0 1 0 0.0014 0.073 -357 ANXA10 annexin A10 229152 4 4 4 0 1 0 0 0 3 0 0.0014 0.073 -358 GABRG2 gamma-aminobutyric acid (GABA) A receptor, gamma 2 328832 11 8 11 4 3 7 0 0 1 0 0.0015 0.073 -359 QRFPR 288608 8 7 8 1 2 2 3 0 1 0 0.0015 0.073 -360 IGFBP3 insulin-like growth factor binding protein 3 108640 4 4 4 0 2 0 2 0 0 0 0.0015 0.073 -361 GAB3 GRB2-associated binding protein 3 387072 7 7 7 0 1 1 3 0 2 0 0.0015 0.073 -362 TMEFF1 transmembrane protein with EGF-like and two follistatin-like domains 1 220192 8 7 8 1 1 6 1 0 0 0 0.0015 0.074 -363 OR52N1 olfactory receptor, family 52, subfamily N, member 1 216608 6 6 6 0 0 3 3 0 0 0 0.0015 0.074 -364 CACNG7 calcium channel, voltage-dependent, gamma subunit 7 189952 6 6 6 0 4 0 1 1 0 0 0.0015 0.075 -365 C20orf71 chromosome 20 open reading frame 71 177632 5 5 5 1 3 2 0 0 0 0 0.0015 0.075 -366 CADM1 cell adhesion molecule 1 281592 8 8 7 3 6 0 2 0 0 0 0.0015 0.075 -367 MAP1B microtubule-associated protein 1B 1661996 32 18 31 9 8 14 6 0 2 2 0.0015 0.075 -368 ZFP3 zinc finger protein 3 homolog (mouse) 338912 10 8 9 1 0 6 3 0 1 0 0.0015 0.075 -369 INSL6 insulin-like 6 145600 5 5 5 2 1 1 1 0 2 0 0.0015 0.075 -370 CYP7B1 cytochrome P450, family 7, subfamily B, polypeptide 1 317856 8 7 8 1 3 1 4 0 0 0 0.0016 0.078 -371 FAM47C family with sequence similarity 47, member C 696272 12 12 12 2 6 4 1 0 1 0 0.0016 0.078 -372 NCKAP5 1274388 25 15 25 4 5 13 4 0 3 0 0.0016 0.078 -373 E2F7 E2F transcription factor 7 623616 12 10 12 3 2 4 1 0 3 2 0.0016 0.078 -374 CADPS Ca2+-dependent secretion activator 879064 18 13 17 6 7 8 1 0 2 0 0.0016 0.079 -375 SCN11A sodium channel, voltage-gated, type XI, alpha subunit 1227520 22 17 19 6 12 5 4 0 1 0 0.0017 0.079 -376 CYLC2 cylicin, basic protein of sperm head cytoskeleton 2 239008 8 6 8 0 1 3 3 0 1 0 0.0017 0.079 -377 MLF1IP MLF1 interacting protein 283332 7 7 7 1 1 2 2 0 2 0 0.0017 0.079 -378 TRPC6 transient receptor potential cation channel, subfamily C, member 6 621276 13 11 13 1 4 6 3 0 0 0 0.0017 0.079 -379 NAP1L3 nucleosome assembly protein 1-like 3 330792 8 7 8 1 2 3 2 0 1 0 0.0017 0.079 -380 TM9SF1 transmembrane 9 superfamily member 1 420756 10 9 10 1 3 4 2 1 0 0 0.0017 0.079 -381 C9orf79 chromosome 9 open reading frame 79 969668 14 13 14 5 3 8 2 0 1 0 0.0017 0.079 -382 KCNIP1 Kv channel interacting protein 1 181888 6 5 6 2 1 1 2 0 2 0 0.0017 0.080 -383 NFIA nuclear factor I/A 340952 8 8 8 1 2 3 2 0 1 0 0.0017 0.080 -384 BOC Boc homolog (mouse) 746020 15 14 15 1 7 6 2 0 0 0 0.0017 0.080 -385 STAG1 stromal antigen 1 875616 13 12 13 3 5 4 1 1 2 0 0.0017 0.080 -386 VCAN versican 2289196 37 19 36 16 9 14 10 0 4 0 0.0017 0.080 -387 CPXM2 carboxypeptidase X (M14 family), member 2 452256 12 10 12 1 4 2 2 0 4 0 0.0017 0.080 -388 SLC26A7 solute carrier family 26, member 7 471296 7 7 7 4 0 2 3 0 2 0 0.0017 0.080 -389 C5orf36 chromosome 5 open reading frame 36 221088 5 5 5 1 1 2 0 0 2 0 0.0018 0.082 -390 FERD3L Fer3-like (Drosophila) 113120 5 5 5 2 4 0 1 0 0 0 0.0018 0.082 -391 SLITRK3 SLIT and NTRK-like family, member 3 658112 11 9 10 3 3 4 1 0 3 0 0.0018 0.082 -392 SNAPC1 small nuclear RNA activating complex, polypeptide 1, 43kDa 256928 5 5 5 1 0 1 1 0 3 0 0.0018 0.082 -393 SCML4 sex comb on midleg-like 4 (Drosophila) 186592 7 7 6 0 4 2 1 0 0 0 0.0018 0.082 -394 COL3A1 collagen, type III, alpha 1 (Ehlers-Danlos syndrome type IV, autosomal dominant) 999968 12 12 12 3 1 6 1 0 4 0 0.0018 0.082 -395 ZNF804A zinc finger protein 804A 816704 16 11 16 4 1 10 3 0 2 0 0.0018 0.082 -396 ADAM7 ADAM metallopeptidase domain 7 527072 12 10 12 5 3 5 3 0 1 0 0.0018 0.082 -397 FIGN fidgetin 512512 10 9 10 0 3 3 3 0 1 0 0.0018 0.082 -398 PDE10A phosphodiesterase 10A 550120 11 9 11 2 2 5 2 0 2 0 0.0018 0.082 -399 CALCRL calcitonin receptor-like 321216 6 6 6 2 0 3 3 0 0 0 0.0018 0.082 -400 ARAP2 1174432 18 13 18 4 3 7 3 0 5 0 0.0018 0.083 -401 SYT16 synaptotagmin XVI 439488 9 9 9 2 3 1 2 1 2 0 0.0018 0.083 -402 DAB1 disabled homolog 1 (Drosophila) 378560 7 7 7 5 2 3 0 0 2 0 0.0018 0.083 -403 TCERG1 transcription elongation regulator 1 754208 16 11 16 2 5 2 4 0 3 2 0.0018 0.083 -404 CLEC4C C-type lectin domain family 4, member C 149184 5 5 5 1 1 2 1 0 1 0 0.0019 0.084 -405 ZNF326 zinc finger protein 326 398944 11 8 11 2 3 2 2 0 2 2 0.0019 0.084 -406 ADAMTS20 ADAM metallopeptidase with thrombospondin type 1 motif, 20 1313696 14 12 14 5 3 2 2 0 7 0 0.0019 0.084 -407 COL1A2 collagen, type I, alpha 2 955288 16 15 16 5 5 9 1 0 1 0 0.0019 0.084 -408 TAS2R50 taste receptor, type 2, member 50 202496 5 5 5 1 2 1 0 0 2 0 0.0019 0.084 -409 RBMS3 RNA binding motif, single stranded interacting protein 308672 6 6 6 1 1 2 3 0 0 0 0.0019 0.084 -410 LARP4B 509392 12 11 12 1 5 2 2 0 3 0 0.0019 0.084 -411 ZNF454 zinc finger protein 454 355040 9 7 9 2 0 6 2 0 1 0 0.0019 0.085 -412 ZNF667 zinc finger protein 667 409472 9 9 9 1 3 2 4 0 0 0 0.0019 0.085 -413 NTM 259616 7 7 7 2 3 3 0 0 1 0 0.0019 0.085 -414 C10orf90 chromosome 10 open reading frame 90 472500 12 10 12 7 4 4 2 0 2 0 0.0020 0.085 -415 NGB neuroglobin 82140 3 3 3 0 0 1 1 0 1 0 0.0020 0.085 -416 UGT2A1 UDP glucuronosyltransferase 2 family, polypeptide A1 360192 8 7 7 1 1 3 1 0 3 0 0.0020 0.085 -417 USP44 ubiquitin specific peptidase 44 483616 11 11 11 3 3 1 6 0 1 0 0.0020 0.085 -418 TMBIM4 transmembrane BAX inhibitor motif containing 4 153144 4 4 4 0 1 2 1 0 0 0 0.0020 0.085 -419 HTR1E 5-hydroxytryptamine (serotonin) receptor 1E 246848 7 7 7 3 4 2 0 0 1 0 0.0020 0.085 -420 OR6K3 olfactory receptor, family 6, subfamily K, member 3 212800 6 5 6 1 1 3 2 0 0 0 0.0020 0.086 -421 ARHGAP20 Rho GTPase activating protein 20 794400 16 11 16 2 3 9 1 0 3 0 0.0020 0.086 -422 PDZRN4 PDZ domain containing RING finger 4 615832 17 13 17 3 6 2 9 0 0 0 0.0020 0.086 -423 CXorf66 245952 5 5 5 0 0 1 2 0 2 0 0.0020 0.086 -424 SEMA3D sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3D 538048 13 10 13 4 5 4 3 0 1 0 0.0020 0.086 -425 OR8K1 olfactory receptor, family 8, subfamily K, member 1 215936 6 6 6 2 2 2 2 0 0 0 0.0020 0.087 -426 HCN1 hyperpolarization activated cyclic nucleotide-gated potassium channel 1 539952 15 10 15 6 4 2 5 1 1 2 0.0021 0.087 -427 BANK1 B-cell scaffold protein with ankyrin repeats 1 525952 10 8 10 2 0 3 5 0 2 0 0.0021 0.087 -428 CDC27 cell division cycle 27 homolog (S. cerevisiae) 575456 13 10 9 6 3 1 6 0 3 0 0.0021 0.087 -429 GIGYF2 GRB10 interacting GYF protein 2 877732 13 10 12 4 2 4 1 0 6 0 0.0021 0.087 -430 CRTC1 CREB regulated transcription coactivator 1 379960 6 6 3 1 1 0 0 0 5 0 0.0021 0.087 -431 HKR1 GLI-Kruppel family member HKR1 447104 9 8 9 1 3 3 1 0 2 0 0.0021 0.088 -432 C15orf2 chromosome 15 open reading frame 2 745808 15 12 14 11 6 5 4 0 0 0 0.0021 0.089 -433 ADAMTS5 ADAM metallopeptidase with thrombospondin type 1 motif, 5 (aggrecanase-2) 562212 12 12 12 4 5 3 3 1 0 0 0.0022 0.090 -434 ADAM2 ADAM metallopeptidase domain 2 (fertilin beta) 512512 9 8 9 1 1 4 2 0 2 0 0.0022 0.090 -435 CADM2 cell adhesion molecule 2 303296 8 7 8 1 2 4 1 0 1 0 0.0022 0.090 -436 ZHX2 zinc fingers and homeoboxes 2 564032 10 10 9 0 5 2 0 0 3 0 0.0022 0.090 -437 SCN1A sodium channel, voltage-gated, type I, alpha subunit 1368864 23 15 23 8 1 8 10 0 4 0 0.0022 0.091 -438 ERBB3 v-erb-b2 erythroblastic leukemia viral oncogene homolog 3 (avian) 956928 14 14 10 1 6 5 2 1 0 0 0.0022 0.091 -439 ASTN1 astrotactin 1 888804 16 15 16 7 8 5 3 0 0 0 0.0022 0.091 -440 TGFBR2 transforming growth factor, beta receptor II (70/80kDa) 403896 7 7 7 2 2 2 1 0 2 0 0.0023 0.093 -441 SYNC 110208 5 5 5 0 0 3 2 0 0 0 0.0023 0.093 -442 UNC5C unc-5 homolog C (C. elegans) 640640 12 11 12 2 2 6 4 0 0 0 0.0023 0.095 -443 PDGFRA platelet-derived growth factor receptor, alpha polypeptide 752192 18 11 18 7 3 6 4 0 3 2 0.0023 0.095 -444 ASCC3 activating signal cointegrator 1 complex subunit 3 1539328 21 16 19 0 7 5 6 0 3 0 0.0023 0.095 -445 C3orf67 chromosome 3 open reading frame 67 389760 8 8 8 0 2 1 4 0 1 0 0.0023 0.095 -446 LRGUK leucine-rich repeats and guanylate kinase domain containing 572992 11 10 11 1 2 5 3 1 0 0 0.0024 0.095 -447 LUM lumican 229600 6 6 6 1 3 1 1 0 1 0 0.0024 0.095 -448 CTNNA1 catenin (cadherin-associated protein), alpha 1, 102kDa 622424 12 11 12 2 4 3 3 0 2 0 0.0024 0.095 -449 SEC11C SEC11 homolog C (S. cerevisiae) 127428 4 4 4 0 1 1 1 0 1 0 0.0024 0.095 -450 CWF19L2 CWF19-like 2, cell cycle control (S. pombe) 473120 13 8 13 0 0 7 3 0 3 0 0.0024 0.095 -451 OR13F1 olfactory receptor, family 13, subfamily F, member 1 215936 4 4 4 1 2 0 0 0 2 0 0.0024 0.095 -452 SALL1 sal-like 1 (Drosophila) 893088 17 15 17 9 8 5 3 0 1 0 0.0024 0.095 -453 ZNF569 zinc finger protein 569 465248 12 8 12 3 0 4 7 0 1 0 0.0024 0.095 -454 CACNA2D1 calcium channel, voltage-dependent, alpha 2/delta subunit 1 767424 11 10 11 4 2 1 6 0 2 0 0.0024 0.095 -455 ABCB4 ATP-binding cassette, sub-family B (MDR/TAP), member 4 889056 11 11 11 5 1 2 5 0 3 0 0.0024 0.096 -456 OR2L3 olfactory receptor, family 2, subfamily L, member 3 211232 7 6 7 0 1 2 3 0 1 0 0.0024 0.096 -457 VWA5A 544992 8 8 8 4 1 3 1 0 3 0 0.0024 0.096 -458 ADAM18 ADAM metallopeptidase domain 18 515200 13 8 13 0 1 5 5 0 2 0 0.0024 0.096 -459 TMEM74 transmembrane protein 74 206528 6 6 5 0 5 1 0 0 0 0 0.0025 0.096 -460 SMARCA1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 721504 11 9 11 2 5 1 2 0 3 0 0.0025 0.098 -461 DOK5 docking protein 5 213472 6 6 5 0 4 2 0 0 0 0 0.0025 0.098 -462 IL2 interleukin 2 107072 4 4 4 0 0 4 0 0 0 0 0.0026 0.100 -463 C6orf204 chromosome 6 open reading frame 204 536760 8 8 8 1 1 2 3 0 2 0 0.0026 0.10 -464 ZNF19 zinc finger protein 19 312032 8 8 7 0 0 6 1 0 1 0 0.0026 0.10 -465 MMP7 matrix metallopeptidase 7 (matrilysin, uterine) 185472 5 5 5 1 3 1 0 0 1 0 0.0026 0.10 -466 CACHD1 cache domain containing 1 846720 17 14 16 3 5 7 3 0 2 0 0.0026 0.10 -467 OSBPL6 oxysterol binding protein-like 6 676256 11 11 11 2 3 4 1 2 1 0 0.0027 0.10 -468 GALNTL6 415296 8 8 8 0 1 4 2 0 1 0 0.0027 0.10 -469 NDST3 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 3 598976 10 9 10 0 2 5 2 0 1 0 0.0027 0.10 -470 ZNF154 zinc finger protein 154 291992 7 6 7 0 1 2 2 0 2 0 0.0027 0.10 -471 KRTAP19-6 keratin associated protein 19-6 40408 2 2 2 0 0 2 0 0 0 0 0.0028 0.11 -472 MAP2K3 mitogen-activated protein kinase kinase 3 240156 6 6 6 2 1 1 2 2 0 0 0.0028 0.11 -473 MTTP microsomal triglyceride transfer protein 617568 12 10 12 2 3 5 2 0 2 0 0.0028 0.11 -474 OR6N2 olfactory receptor, family 6, subfamily N, member 2 214592 5 5 5 1 0 3 1 0 1 0 0.0028 0.11 -475 MSRB3 methionine sulfoxide reductase B3 137144 4 4 4 1 1 1 2 0 0 0 0.0028 0.11 -476 GIMAP5 GTPase, IMAP family member 5 205408 5 5 5 0 1 1 1 0 2 0 0.0028 0.11 -477 ARMC4 armadillo repeat containing 4 704648 13 11 13 5 4 5 2 1 1 0 0.0028 0.11 -478 OR51G2 olfactory receptor, family 51, subfamily G, member 2 212576 8 6 8 1 2 3 3 0 0 0 0.0028 0.11 -479 CCDC88A coiled-coil domain containing 88A 1265328 17 12 17 4 2 3 9 0 3 0 0.0029 0.11 -480 GPR87 G protein-coupled receptor 87 243040 5 5 5 0 1 1 1 0 2 0 0.0029 0.11 -481 PTH2R parathyroid hormone 2 receptor 381920 7 7 7 3 1 2 4 0 0 0 0.0029 0.11 -482 FBXO4 F-box protein 4 229600 5 5 5 1 0 2 2 0 1 0 0.0029 0.11 -483 OR10S1 olfactory receptor, family 10, subfamily S, member 1 224000 7 7 7 3 3 3 1 0 0 0 0.0029 0.11 -484 GZMK granzyme K (granzyme 3; tryptase II) 182560 6 4 6 0 1 2 1 0 2 0 0.0029 0.11 -485 CHST10 carbohydrate sulfotransferase 10 244384 8 8 8 1 4 2 2 0 0 0 0.0029 0.11 -486 RP9 retinitis pigmentosa 9 (autosomal dominant) 119616 3 3 2 0 0 1 0 0 2 0 0.0029 0.11 -487 CELA1 176728 5 4 5 0 1 0 0 1 1 2 0.0029 0.11 -488 ROBO2 roundabout, axon guidance receptor, homolog 2 (Drosophila) 950432 18 12 18 5 4 5 5 0 4 0 0.0029 0.11 -489 NLGN4X neuroligin 4, X-linked 551920 10 10 9 10 4 3 2 0 1 0 0.0030 0.11 -490 PDZD11 PDZ domain containing 11 97136 3 3 3 0 1 0 1 0 1 0 0.0030 0.11 -491 OR6K2 olfactory receptor, family 6, subfamily K, member 2 219296 6 5 6 1 2 2 1 0 1 0 0.0030 0.11 -492 DKK2 dickkopf homolog 2 (Xenopus laevis) 178304 6 6 5 1 6 0 0 0 0 0 0.0030 0.11 -493 TNNI3K TNNI3 interacting kinase 663712 14 10 14 2 3 8 2 0 1 0 0.0030 0.11 -494 OR13C9 olfactory receptor, family 13, subfamily C, member 9 215264 5 5 5 1 0 4 0 1 0 0 0.0031 0.11 -495 CLDN17 claudin 17 152096 5 5 5 1 3 1 0 0 1 0 0.0031 0.11 -496 MGAT4C mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme C (putative) 324576 9 7 9 0 0 1 5 0 1 2 0.0031 0.11 -497 C10orf84 chromosome 10 open reading frame 84 163520 5 5 5 0 1 1 3 0 0 0 0.0031 0.11 -498 DNMT1 DNA (cytosine-5-)-methyltransferase 1 1111012 19 17 15 3 11 2 2 3 1 0 0.0031 0.11 -499 ZNF474 zinc finger protein 474 246176 8 7 8 0 3 4 1 0 0 0 0.0032 0.11 -500 C4BPA complement component 4 binding protein, alpha 411712 7 7 7 2 3 3 0 0 1 0 0.0032 0.11 -501 ZNF287 zinc finger protein 287 514080 7 7 7 0 0 2 3 0 2 0 0.0032 0.11 -502 SERPINI1 serpin peptidase inhibitor, clade I (neuroserpin), member 1 283360 5 5 5 0 0 2 2 0 1 0 0.0032 0.11 -503 DNER delta/notch-like EGF repeat containing 444864 9 8 9 4 4 2 0 0 3 0 0.0032 0.11 -504 CNKSR2 connector enhancer of kinase suppressor of Ras 2 714932 9 9 9 5 2 5 1 0 1 0 0.0032 0.11 -505 SCML2 sex comb on midleg-like 2 (Drosophila) 483616 7 7 7 4 0 3 1 0 3 0 0.0032 0.11 -506 ZNF583 zinc finger protein 583 386624 11 7 10 1 2 7 0 0 2 0 0.0032 0.11 -507 FZD3 frizzled homolog 3 (Drosophila) 453600 13 10 12 1 5 4 2 0 2 0 0.0033 0.12 -508 TRIM44 tripartite motif-containing 44 232036 7 6 6 1 3 2 1 0 1 0 0.0033 0.12 -509 OR8H1 olfactory receptor, family 8, subfamily H, member 1 210560 6 6 6 3 2 2 1 0 1 0 0.0033 0.12 -510 SYT10 synaptotagmin X 358400 6 6 6 1 1 3 0 0 2 0 0.0033 0.12 -511 CLEC18C 132500 5 5 4 1 4 1 0 0 0 0 0.0033 0.12 -512 SCARA5 scavenger receptor class A, member 5 (putative) 267604 6 6 6 0 4 0 0 0 2 0 0.0034 0.12 -513 BHMT2 betaine-homocysteine methyltransferase 2 246656 5 5 4 3 1 0 0 1 3 0 0.0034 0.12 -514 WNK3 WNK lysine deficient protein kinase 3 1226120 13 12 13 4 2 6 1 0 2 2 0.0034 0.12 -515 PNLIP pancreatic lipase 323904 7 7 7 0 1 5 0 0 1 0 0.0034 0.12 -516 SIGLEC8 sialic acid binding Ig-like lectin 8 342188 7 7 7 4 2 5 0 0 0 0 0.0034 0.12 -517 SORCS3 sortilin-related VPS10 domain containing receptor 3 709604 12 12 12 7 7 3 2 0 0 0 0.0034 0.12 -518 OR13C3 olfactory receptor, family 13, subfamily C, member 3 234752 6 5 6 1 1 5 0 0 0 0 0.0034 0.12 -519 TTLL7 tubulin tyrosine ligase-like family, member 7 614656 8 8 8 0 4 1 0 0 3 0 0.0034 0.12 -520 ARNTL aryl hydrocarbon receptor nuclear translocator-like 438368 11 8 10 0 2 4 1 0 2 2 0.0034 0.12 -521 UBQLNL ubiquilin-like 320768 5 5 5 2 1 1 2 0 1 0 0.0035 0.12 -522 SCN9A sodium channel, voltage-gated, type IX, alpha subunit 1339184 20 14 20 9 4 6 6 1 3 0 0.0035 0.12 -523 SPRR2E small proline-rich protein 2E 49952 2 2 2 1 0 2 0 0 0 0 0.0035 0.12 -524 POU4F2 POU class 4 homeobox 2 245724 9 9 9 2 6 1 1 1 0 0 0.0035 0.12 -525 DCLK1 doublecortin-like kinase 1 500464 13 11 13 4 7 4 2 0 0 0 0.0035 0.12 -526 ODF2L outer dense fiber of sperm tails 2-like 447776 10 6 9 0 0 2 2 0 3 3 0.0036 0.12 -527 KRTAP6-2 keratin associated protein 6-2 43232 3 3 3 0 2 1 0 0 0 0 0.0036 0.12 -528 OR52E4 olfactory receptor, family 52, subfamily E, member 4 211232 6 5 6 1 1 3 1 0 1 0 0.0036 0.12 -529 VGLL1 vestigial like 1 (Drosophila) 177632 5 5 5 2 1 3 0 0 1 0 0.0036 0.12 -530 C7orf16 chromosome 7 open reading frame 16 108416 4 4 4 2 1 3 0 0 0 0 0.0037 0.12 -531 PLSCR2 phospholipid scramblase 2 156576 5 5 5 0 2 2 1 0 0 0 0.0037 0.12 -532 ZNF354C zinc finger protein 354C 376460 9 7 9 1 0 2 5 0 2 0 0.0037 0.12 -533 TPH2 tryptophan hydroxylase 2 339808 8 7 8 1 3 1 3 0 1 0 0.0038 0.13 -534 ACTBL2 actin, beta-like 2 254240 8 8 8 2 1 2 5 0 0 0 0.0038 0.13 -535 SLC45A2 solute carrier family 45, member 2 366464 6 5 6 3 2 1 1 0 2 0 0.0038 0.13 -536 APPL1 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 1 483840 10 8 9 1 3 2 2 0 1 2 0.0038 0.13 -537 PCDHA10 protocadherin alpha 10 415492 13 10 13 0 4 6 2 0 1 0 0.0039 0.13 -538 SPRYD5 SPRY domain containing 5 204288 4 4 4 1 0 1 2 0 1 0 0.0039 0.13 -539 FMR1NB fragile X mental retardation 1 neighbor 176512 6 6 6 1 1 4 1 0 0 0 0.0039 0.13 -540 CUL1 cullin 1 540960 9 8 9 2 2 2 1 0 4 0 0.0039 0.13 -541 HTR2C 5-hydroxytryptamine (serotonin) receptor 2C 312032 8 7 8 1 5 2 1 0 0 0 0.0039 0.13 -542 TFAP2D transcription factor AP-2 delta (activating enhancer binding protein 2 delta) 311584 7 7 7 5 1 6 0 0 0 0 0.0039 0.13 -543 OR52B4 olfactory receptor, family 52, subfamily B, member 4 212576 5 5 5 2 1 1 2 0 1 0 0.0039 0.13 -544 DNAJC5B DnaJ (Hsp40) homolog, subfamily C, member 5 beta 137984 5 5 5 1 2 0 1 0 2 0 0.0039 0.13 -545 C20orf160 chromosome 20 open reading frame 160 187512 6 6 6 1 3 3 0 0 0 0 0.0039 0.13 -546 GYS2 glycogen synthase 2 (liver) 487424 11 10 11 3 2 5 2 0 2 0 0.0039 0.13 -547 USH2A Usher syndrome 2A (autosomal recessive, mild) 3562832 53 26 51 17 14 25 10 1 3 0 0.0040 0.13 -548 MASP1 mannan-binding lectin serine peptidase 1 (C4/C2 activating component of Ra-reactive factor) 696332 12 11 12 6 5 4 2 0 1 0 0.0040 0.13 -549 C14orf106 chromosome 14 open reading frame 106 761704 11 8 11 0 1 4 4 0 2 0 0.0040 0.13 -550 TCF12 transcription factor 12 (HTF4, helix-loop-helix transcription factors 4) 508480 10 8 10 1 5 2 1 0 2 0 0.0041 0.13 -551 DRAM2 185696 4 4 4 1 2 0 1 0 1 0 0.0041 0.13 -552 OR2T6 olfactory receptor, family 2, subfamily T, member 6 208544 5 5 5 0 2 3 0 0 0 0 0.0041 0.13 -553 SCN10A sodium channel, voltage-gated, type X, alpha subunit 1339296 24 15 23 7 13 6 3 0 2 0 0.0041 0.13 -554 GABRB3 gamma-aminobutyric acid (GABA) A receptor, beta 3 307692 9 8 8 2 4 3 2 0 0 0 0.0041 0.13 -555 COL14A1 collagen, type XIV, alpha 1 1249696 23 14 22 8 8 11 2 0 2 0 0.0042 0.14 -556 FCHO2 FCH domain only 2 503560 9 6 9 0 0 1 2 0 3 3 0.0042 0.14 -557 POU3F4 POU class 3 homeobox 4 241712 7 7 7 3 3 2 1 0 1 0 0.0042 0.14 -558 IL17RA interleukin 17 receptor A 399308 7 7 6 2 1 1 1 0 4 0 0.0042 0.14 -559 ZNF559 zinc finger protein 559 365792 7 7 7 0 1 4 1 0 1 0 0.0042 0.14 -560 SLITRK2 SLIT and NTRK-like family, member 2 569408 12 10 12 4 3 6 1 0 2 0 0.0043 0.14 -561 CYLC1 cylicin, basic protein of sperm head cytoskeleton 1 432016 8 7 8 3 0 5 3 0 0 0 0.0043 0.14 -562 CDK14 315392 5 5 5 0 2 1 1 0 1 0 0.0043 0.14 -563 HRNR hornerin 1405000 17 16 16 3 10 4 0 1 2 0 0.0043 0.14 -564 ZNF329 zinc finger protein 329 365120 8 7 8 1 2 2 3 0 1 0 0.0043 0.14 -565 ZCCHC5 zinc finger, CCHC domain containing 5 320768 5 5 5 1 0 3 2 0 0 0 0.0043 0.14 -566 PCDH20 protocadherin 20 625464 10 9 10 5 1 3 4 1 1 0 0.0044 0.14 -567 OR6B3 olfactory receptor, family 6, subfamily B, member 3 221144 6 6 6 4 2 2 2 0 0 0 0.0044 0.14 -568 RUNX1T1 runt-related transcription factor 1; translocated to, 1 (cyclin D-related) 418880 10 9 10 3 4 4 0 0 2 0 0.0044 0.14 -569 LRP6 low density lipoprotein receptor-related protein 6 1105216 17 14 15 2 6 6 2 0 3 0 0.0044 0.14 -570 VTCN1 V-set domain containing T cell activation inhibitor 1 194656 5 5 5 2 1 3 0 0 1 0 0.0044 0.14 -571 ST8SIA3 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 3 244160 7 6 7 1 2 2 2 1 0 0 0.0045 0.14 -572 RP1 retinitis pigmentosa 1 (autosomal dominant) 1441440 24 14 24 4 5 9 7 0 1 2 0.0045 0.14 -573 PRKAA2 protein kinase, AMP-activated, alpha 2 catalytic subunit 366352 9 7 8 2 4 3 1 0 1 0 0.0045 0.14 -574 ZNF540 zinc finger protein 540 445236 12 9 12 1 3 7 2 0 0 0 0.0045 0.14 -575 THAP9 THAP domain containing 9 611380 11 9 11 1 1 3 5 0 2 0 0.0045 0.14 -576 STARD4 StAR-related lipid transfer (START) domain containing 4 142912 4 4 4 0 0 2 1 0 1 0 0.0045 0.14 -577 C6orf97 chromosome 6 open reading frame 97 477344 15 9 15 3 3 7 4 0 1 0 0.0045 0.14 -578 PCDHB7 protocadherin beta 7 495068 13 11 13 8 8 2 2 1 0 0 0.0046 0.14 -579 MUC7 mucin 7, secreted 255808 4 4 3 0 0 1 2 0 1 0 0.0046 0.14 -580 ANKDD1A ankyrin repeat and death domain containing 1A 336224 5 5 5 5 1 2 0 0 2 0 0.0046 0.14 -581 CUBN cubilin (intrinsic factor-cobalamin receptor) 2495088 28 23 28 13 8 14 5 0 1 0 0.0046 0.14 -582 TMEM57 transmembrane protein 57 448980 8 8 8 0 3 2 1 0 2 0 0.0046 0.14 -583 ZFP28 zinc finger protein 28 homolog (mouse) 558600 10 8 9 4 2 5 0 0 3 0 0.0046 0.14 -584 MCF2L2 MCF.2 cell line derived transforming sequence-like 2 762304 18 10 16 2 8 2 2 0 2 4 0.0046 0.14 -585 TASP1 taspase, threonine aspartase, 1 294560 6 5 5 5 1 2 0 0 3 0 0.0046 0.14 -586 CWC27 329448 6 6 6 2 2 2 0 0 2 0 0.0047 0.14 -587 DAPK1 death-associated protein kinase 1 982672 17 15 16 9 7 4 3 0 3 0 0.0047 0.14 -588 ZNF420 zinc finger protein 420 465696 9 8 9 0 1 6 2 0 0 0 0.0047 0.14 -589 PAPD4 PAP associated domain containing 4 338464 9 7 9 0 3 2 2 0 2 0 0.0047 0.14 -590 ZNF585A zinc finger protein 585A 483168 16 10 14 1 7 5 3 0 1 0 0.0047 0.14 -591 C3orf20 chromosome 3 open reading frame 20 619752 12 10 12 1 7 5 0 0 0 0 0.0047 0.14 -592 ENPP2 ectonucleotide pyrophosphatase/phosphodiesterase 2 (autotaxin) 645800 14 11 14 0 3 8 3 0 0 0 0.0048 0.15 -593 ZNF470 zinc finger protein 470 486080 11 8 10 1 2 6 1 1 1 0 0.0048 0.15 -594 ZBP1 Z-DNA binding protein 1 292384 8 7 8 3 1 5 0 1 1 0 0.0048 0.15 -595 SMAD3 SMAD family member 3 293112 9 8 9 0 2 5 1 0 1 0 0.0048 0.15 -596 GALNTL5 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 5 305536 8 8 7 1 2 5 0 0 1 0 0.0048 0.15 -597 GABRB2 gamma-aminobutyric acid (GABA) A receptor, beta 2 353696 7 7 7 0 1 3 2 0 1 0 0.0049 0.15 -598 DIRAS2 DIRAS family, GTP-binding RAS-like 2 135296 5 5 5 1 3 1 1 0 0 0 0.0049 0.15 -599 HDAC9 histone deacetylase 9 765192 13 11 13 5 2 6 4 0 1 0 0.0049 0.15 -600 KCNA1 potassium voltage-gated channel, shaker-related subfamily, member 1 (episodic ataxia with myokymia) 327992 10 8 10 3 7 1 0 1 1 0 0.0049 0.15 -601 VCAM1 vascular cell adhesion molecule 1 505344 9 8 9 1 5 1 3 0 0 0 0.0049 0.15 -602 SYCP1 synaptonemal complex protein 1 682824 14 7 14 2 0 5 4 0 3 2 0.0049 0.15 -603 ARHGAP5 Rho GTPase activating protein 5 1015392 9 9 8 1 1 1 2 0 5 0 0.0050 0.15 -604 WDR47 WD repeat domain 47 417048 5 5 5 0 0 2 1 0 2 0 0.0050 0.15 -605 LINGO2 leucine rich repeat and Ig domain containing 2 408800 8 8 8 2 5 2 0 0 1 0 0.0050 0.15 -606 TUBA3C tubulin, alpha 3c 307552 9 8 9 3 5 2 1 0 1 0 0.0050 0.15 -607 COL6A6 1528808 21 16 21 9 5 11 0 1 2 2 0.0050 0.15 -608 ARV1 ARV1 homolog (S. cerevisiae) 187264 3 3 3 0 0 1 0 0 2 0 0.0050 0.15 -609 MYEF2 myelin expression factor 2 390472 7 7 7 1 2 2 1 0 2 0 0.0050 0.15 -610 ST8SIA4 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 247296 8 6 8 1 2 4 1 0 1 0 0.0050 0.15 -611 COMMD5 COMM domain containing 5 129500 4 4 4 1 1 1 1 0 1 0 0.0050 0.15 -612 STS steroid sulfatase (microsomal), isozyme S 396784 7 7 6 0 4 1 0 0 2 0 0.0051 0.15 -613 FN1 fibronectin 1 1710896 22 18 22 10 10 4 5 0 3 0 0.0051 0.15 -614 CTNNA2 catenin (cadherin-associated protein), alpha 2 624064 12 11 12 3 7 2 0 1 2 0 0.0051 0.15 -615 TEK TEK tyrosine kinase, endothelial (venous malformations, multiple cutaneous and mucosal) 776608 11 10 11 1 3 3 2 0 3 0 0.0051 0.15 -616 CSDE1 cold shock domain containing E1, RNA-binding 553056 11 10 11 1 2 5 2 0 2 0 0.0051 0.15 -617 NFASC neurofascin homolog (chicken) 924864 17 15 16 5 10 3 1 0 3 0 0.0052 0.15 -618 SPAG11B sperm associated antigen 11B 90008 3 3 3 0 1 0 0 0 2 0 0.0052 0.15 -619 DGKI diacylglycerol kinase, iota 666260 10 10 10 1 6 4 0 0 0 0 0.0052 0.15 -620 REG3A regenerating islet-derived 3 alpha 122752 3 3 3 1 1 2 0 0 0 0 0.0052 0.15 -621 GBP7 guanylate binding protein 7 438368 8 7 8 1 0 4 2 0 2 0 0.0052 0.15 -622 RPS23 ribosomal protein S23 100352 4 4 4 0 0 3 1 0 0 0 0.0052 0.15 -623 KIF2B kinesin family member 2B 453824 11 10 11 5 6 3 1 0 1 0 0.0052 0.15 -624 MARCH10 membrane-associated ring finger (C3HC4) 10 552608 9 9 9 1 3 1 3 0 2 0 0.0052 0.15 -625 CXCR7 chemokine (C-X-C motif) receptor 7 244832 9 7 9 3 7 2 0 0 0 0 0.0053 0.15 -626 F9 coagulation factor IX (plasma thromboplastic component, Christmas disease, hemophilia B) 317632 6 6 5 1 1 1 1 0 3 0 0.0053 0.15 -627 GPC5 glypican 5 376964 7 7 7 0 5 2 0 0 0 0 0.0053 0.15 -628 ZNF648 zinc finger protein 648 354896 9 9 8 2 6 1 0 1 1 0 0.0053 0.15 -629 GJA10 gap junction protein, alpha 10, 62kDa 366464 10 8 10 1 3 4 2 0 1 0 0.0053 0.15 -630 PREX2 1158608 14 11 14 7 4 4 4 0 2 0 0.0053 0.15 -631 TGIF1 TGFB-induced factor homeobox 1 269612 4 4 4 0 0 0 0 1 3 0 0.0054 0.15 -632 DCC deleted in colorectal carcinoma 999040 16 13 16 5 4 6 5 0 1 0 0.0054 0.15 -633 CLDN8 claudin 8 152768 5 4 5 1 1 0 3 0 1 0 0.0054 0.15 -634 ZNF479 zinc finger protein 479 356384 13 8 13 1 1 11 1 0 0 0 0.0054 0.15 -635 RAMP3 receptor (G protein-coupled) activity modifying protein 3 88928 4 4 4 0 3 0 1 0 0 0 0.0055 0.15 -636 GPR112 G protein-coupled receptor 112 2090632 23 14 23 8 3 12 6 0 2 0 0.0055 0.15 -637 CD300C CD300c molecule 154784 3 3 3 1 0 0 1 1 1 0 0.0055 0.16 -638 PUS7 pseudouridylate synthase 7 homolog (S. cerevisiae) 458304 7 7 7 3 1 2 3 0 1 0 0.0056 0.16 -639 PTPRC protein tyrosine phosphatase, receptor type, C 908096 17 11 17 4 1 8 4 0 4 0 0.0056 0.16 -640 LPHN3 latrophilin 3 923584 17 13 15 5 7 6 3 0 1 0 0.0056 0.16 -641 ZNF492 zinc finger protein 492 348012 8 7 8 0 0 4 4 0 0 0 0.0056 0.16 -642 PTGFR prostaglandin F receptor (FP) 260512 6 6 6 1 1 2 3 0 0 0 0.0056 0.16 -643 TNN tenascin N 848708 17 14 17 8 3 10 3 0 1 0 0.0056 0.16 -644 OR5K3 olfactory receptor, family 5, subfamily K, member 3 217280 5 5 5 2 0 3 1 0 1 0 0.0056 0.16 -645 CNRIP1 cannabinoid receptor interacting protein 1 94392 4 4 3 1 4 0 0 0 0 0 0.0056 0.16 -646 KRTAP19-5 keratin associated protein 19-5 49952 3 3 3 2 2 1 0 0 0 0 0.0057 0.16 -647 CCL27 chemokine (C-C motif) ligand 27 78624 3 3 3 1 1 2 0 0 0 0 0.0057 0.16 -648 KCNK13 potassium channel, subfamily K, member 13 210840 5 5 5 2 2 1 1 0 1 0 0.0057 0.16 -649 PCOLCE2 procollagen C-endopeptidase enhancer 2 282128 8 7 7 2 3 3 2 0 0 0 0.0057 0.16 -650 OR56A4 olfactory receptor, family 56, subfamily A, member 4 246848 5 5 5 0 0 3 1 0 1 0 0.0057 0.16 -651 EPHA7 EPH receptor A7 686560 10 10 9 5 1 4 2 0 3 0 0.0057 0.16 -652 GUCY1A2 guanylate cyclase 1, soluble, alpha 2 449736 12 8 12 3 2 7 1 0 2 0 0.0057 0.16 -653 ZNF184 zinc finger protein 184 509824 12 8 12 1 1 7 1 0 3 0 0.0057 0.16 -654 SLC25A13 solute carrier family 25, member 13 (citrin) 466816 9 8 9 0 2 4 2 0 1 0 0.0057 0.16 -655 NME7 non-metastatic cells 7, protein expressed in (nucleoside-diphosphate kinase) 264096 5 5 5 0 1 2 0 0 2 0 0.0057 0.16 -656 OR5AP2 olfactory receptor, family 5, subfamily AP, member 2 213920 5 5 5 0 1 2 2 0 0 0 0.0058 0.16 -657 MCOLN3 mucolipin 3 383040 9 7 9 0 0 4 4 0 1 0 0.0058 0.16 -658 GEM GTP binding protein overexpressed in skeletal muscle 203168 6 6 6 1 3 1 0 1 1 0 0.0058 0.16 -659 LRRC4C leucine rich repeat containing 4C 431648 8 7 8 6 2 3 0 0 3 0 0.0058 0.16 -660 ZFP161 zinc finger protein 161 homolog (mouse) 303436 4 4 3 2 0 0 2 0 2 0 0.0058 0.16 -661 GRIK2 glutamate receptor, ionotropic, kainate 2 636832 14 9 13 5 6 2 4 0 2 0 0.0058 0.16 -662 CST9 cystatin 9 (testatin) 109312 3 3 3 1 0 1 2 0 0 0 0.0059 0.16 -663 C10orf96 chromosome 10 open reading frame 96 181216 4 4 4 0 1 2 1 0 0 0 0.0059 0.16 -664 CALCA calcitonin-related polypeptide alpha 134848 4 4 4 0 1 1 2 0 0 0 0.0059 0.16 -665 TRDN triadin 422264 7 6 7 2 1 2 1 0 3 0 0.0059 0.16 -666 TCTEX1D2 Tctex1 domain containing 2 100576 3 3 3 0 0 3 0 0 0 0 0.0059 0.16 -667 KCND3 potassium voltage-gated channel, Shal-related subfamily, member 3 442400 12 11 11 4 9 1 1 0 1 0 0.0059 0.16 -668 PON1 paraoxonase 1 247296 6 5 6 0 2 1 1 0 2 0 0.0059 0.16 -669 ZNF471 zinc finger protein 471 424928 11 8 10 1 0 7 4 0 0 0 0.0059 0.16 -670 BCLAF1 BCL2-associated transcription factor 1 628600 11 8 10 2 0 6 1 0 4 0 0.0060 0.16 -671 FMO3 flavin containing monooxygenase 3 365344 11 8 10 2 2 6 2 0 1 0 0.0060 0.16 -672 MAGEB1 melanoma antigen family B, 1 234752 6 6 6 3 3 1 2 0 0 0 0.0060 0.16 -673 TGFBR1 transforming growth factor, beta receptor I (activin A receptor type II-like kinase, 53kDa) 324128 9 7 8 1 5 1 2 0 1 0 0.0060 0.16 -674 KERA keratocan 239008 7 6 7 1 1 2 4 0 0 0 0.0060 0.16 -675 BLID BH3-like motif containing, cell death inducer 74060 3 3 3 1 0 1 1 0 1 0 0.0060 0.16 -676 AKR1C2 aldo-keto reductase family 1, member C2 (dihydrodiol dehydrogenase 2; bile acid binding protein; 3-alpha hydroxysteroid dehydrogenase, type III) 191752 4 4 4 1 0 0 2 0 2 0 0.0061 0.16 -677 WDFY3 WD repeat and FYVE domain containing 3 2438016 30 20 30 3 6 11 8 0 5 0 0.0061 0.16 -678 DDX58 DEAD (Asp-Glu-Ala-Asp) box polypeptide 58 638400 9 8 9 0 3 2 2 0 2 0 0.0061 0.16 -679 ZNF793 zinc finger protein 793 277004 5 5 5 0 0 1 2 0 2 0 0.0061 0.16 -680 SPINK7 serine peptidase inhibitor, Kazal type 7 (putative) 61376 2 2 2 0 0 1 0 0 1 0 0.0061 0.16 -681 CD40LG CD40 ligand (TNF superfamily, member 5, hyper-IgM syndrome) 180544 6 4 6 2 2 2 1 0 1 0 0.0061 0.16 -682 CXCL11 chemokine (C-X-C motif) ligand 11 67424 3 3 3 0 0 0 3 0 0 0 0.0062 0.16 -683 SPATA16 spermatogenesis associated 16 392000 7 7 7 1 3 3 1 0 0 0 0.0062 0.16 -684 TRHR thyrotropin-releasing hormone receptor 269920 8 6 8 0 0 3 4 0 1 0 0.0062 0.16 -685 TMEM105 transmembrane protein 105 76552 3 3 3 0 1 0 0 0 2 0 0.0062 0.16 -686 OR5M3 olfactory receptor, family 5, subfamily M, member 3 207872 5 5 5 2 1 1 3 0 0 0 0.0062 0.16 -687 AKT1S1 AKT1 substrate 1 (proline-rich) 99516 3 3 3 0 0 1 0 0 2 0 0.0062 0.16 -688 ACOT12 acyl-CoA thioesterase 12 357728 9 7 9 1 2 4 0 0 3 0 0.0062 0.16 -689 RUVBL1 RuvB-like 1 (E. coli) 316960 8 8 6 1 6 2 0 0 0 0 0.0063 0.16 -690 XRCC2 X-ray repair complementing defective repair in Chinese hamster cells 2 191520 5 5 5 0 1 1 3 0 0 0 0.0063 0.16 -691 FUT9 fucosyltransferase 9 (alpha (1,3) fucosyltransferase) 242816 5 5 5 1 1 2 1 0 1 0 0.0063 0.16 -692 SLITRK4 SLIT and NTRK-like family, member 4 564032 8 8 8 2 2 3 2 0 1 0 0.0063 0.16 -693 APLP1 amyloid beta (A4) precursor-like protein 1 411560 10 10 10 2 9 0 1 0 0 0 0.0063 0.17 -694 PLEK pleckstrin 243936 6 6 6 0 2 1 3 0 0 0 0.0064 0.17 -695 LCA5 Leber congenital amaurosis 5 475328 9 8 9 2 2 4 1 0 2 0 0.0064 0.17 -696 CHL1 cell adhesion molecule with homology to L1CAM (close homolog of L1) 846496 18 13 18 5 5 7 6 0 0 0 0.0064 0.17 -697 OR5F1 olfactory receptor, family 5, subfamily F, member 1 212576 8 5 8 3 0 5 2 0 1 0 0.0064 0.17 -698 LEPROTL1 leptin receptor overlapping transcript-like 1 87808 3 3 3 0 2 0 0 0 1 0 0.0064 0.17 -699 TMEM176B transmembrane protein 176B 187488 5 5 5 0 1 2 1 0 1 0 0.0065 0.17 -700 CDKN1B cyclin-dependent kinase inhibitor 1B (p27, Kip1) 123844 3 3 3 0 0 0 0 0 3 0 0.0065 0.17 -701 MYF5 myogenic factor 5 174720 4 4 4 4 2 0 1 0 1 0 0.0065 0.17 -702 YTHDC2 YTH domain containing 2 979752 14 12 13 0 6 1 4 0 3 0 0.0065 0.17 -703 PDZD2 PDZ domain containing 2 1922676 25 20 25 5 12 5 3 0 5 0 0.0065 0.17 -704 NOLC1 nucleolar and coiled-body phosphoprotein 1 476000 8 7 7 2 3 2 0 0 3 0 0.0066 0.17 -705 VAV1 vav 1 guanine nucleotide exchange factor 556664 13 11 13 3 6 5 1 0 1 0 0.0066 0.17 -706 TSG101 tumor susceptibility gene 101 271712 4 4 4 0 0 2 0 0 2 0 0.0066 0.17 -707 NR3C2 nuclear receptor subfamily 3, group C, member 2 659296 11 10 11 3 5 3 2 0 1 0 0.0066 0.17 -708 LRRFIP2 leucine rich repeat (in FLII) interacting protein 2 496592 7 7 7 1 2 0 1 0 4 0 0.0066 0.17 -709 C6 complement component 6 643552 13 11 13 3 4 6 2 0 1 0 0.0067 0.17 -710 OR8I2 olfactory receptor, family 8, subfamily I, member 2 209888 3 3 3 1 0 0 0 0 3 0 0.0068 0.17 -711 C10orf81 chromosome 10 open reading frame 81 254464 3 3 3 1 0 0 2 0 1 0 0.0068 0.17 -712 NME6 non-metastatic cells 6, protein expressed in (nucleoside-diphosphate kinase) 135872 4 4 4 1 2 1 0 0 1 0 0.0068 0.17 -713 CLYBL citrate lyase beta like 221536 6 6 6 0 1 2 2 1 0 0 0.0068 0.17 -714 TCP11L2 t-complex 11 (mouse)-like 2 357504 5 5 5 0 0 0 3 0 2 0 0.0069 0.17 -715 WDR17 WD repeat domain 17 915936 15 11 15 2 4 5 2 0 2 2 0.0069 0.17 -716 HMG20A high-mobility group 20A 241024 5 5 4 0 0 4 1 0 0 0 0.0069 0.17 -717 PCDHGA2 protocadherin gamma subfamily A, 2 641312 14 12 14 6 5 1 5 1 2 0 0.0069 0.17 -718 ZNF337 zinc finger protein 337 508928 8 8 8 1 2 1 3 0 2 0 0.0069 0.17 -719 CPB1 carboxypeptidase B1 (tissue) 290752 5 5 5 0 4 1 0 0 0 0 0.0069 0.17 -720 VN1R2 vomeronasal 1 receptor 2 242120 6 6 6 0 1 3 2 0 0 0 0.0069 0.17 -721 CCDC60 coiled-coil domain containing 60 382816 8 7 7 0 4 2 1 0 1 0 0.0070 0.17 -722 GLRX3 glutaredoxin 3 214144 5 5 5 0 1 2 2 0 0 0 0.0070 0.17 -723 FAM5B family with sequence similarity 5, member B 530012 14 11 13 7 8 4 2 0 0 0 0.0070 0.17 -724 EXT1 exostoses (multiple) 1 510580 11 10 11 1 4 4 3 0 0 0 0.0070 0.17 -725 MAMLD1 mastermind-like domain containing 1 527192 11 9 11 3 4 4 1 0 2 0 0.0070 0.17 -726 ADAMTS16 ADAM metallopeptidase with thrombospondin type 1 motif, 16 795608 13 12 12 4 5 5 3 0 0 0 0.0071 0.18 -727 SPRED1 sprouty-related, EVH1 domain containing 1 305312 7 6 7 1 2 3 0 0 2 0 0.0071 0.18 -728 NMS neuromedin S 112448 4 4 4 0 1 1 2 0 0 0 0.0071 0.18 -729 QKI quaking homolog, KH domain RNA binding (mouse) 260288 8 6 8 3 2 1 3 0 2 0 0.0071 0.18 -730 EIF3J eukaryotic translation initiation factor 3, subunit J 148596 4 4 4 1 0 1 2 0 1 0 0.0072 0.18 -731 FAM163A 97716 4 4 4 0 1 1 1 0 1 0 0.0072 0.18 -732 DNM1L dynamin 1-like 513184 8 8 8 0 2 3 1 0 2 0 0.0072 0.18 -733 BMPR1B bone morphogenetic protein receptor, type IB 344800 10 7 10 1 3 3 3 0 1 0 0.0073 0.18 -734 CYP4B1 cytochrome P450, family 4, subfamily B, polypeptide 1 355488 9 9 8 3 2 4 3 0 0 0 0.0073 0.18 -735 PRG2 proteoglycan 2, bone marrow (natural killer cell activator, eosinophil granule major basic protein) 145632 6 5 6 2 3 3 0 0 0 0 0.0073 0.18 -736 CTNNA3 catenin (cadherin-associated protein), alpha 3 617344 9 9 9 5 1 5 1 0 2 0 0.0073 0.18 -737 FNDC1 fibronectin type III domain containing 1 1096784 23 16 22 2 10 10 1 0 2 0 0.0073 0.18 -738 MS4A5 membrane-spanning 4-domains, subfamily A, member 5 139552 6 4 6 0 2 3 1 0 0 0 0.0074 0.18 -739 C20orf186 chromosome 20 open reading frame 186 402752 7 7 7 2 2 3 1 1 0 0 0.0074 0.18 -740 HAND2 heart and neural crest derivatives expressed 2 89740 3 3 3 1 1 0 0 0 2 0 0.0075 0.18 -741 CYP3A7 cytochrome P450, family 3, subfamily A, polypeptide 7 350336 7 6 7 2 2 1 2 0 0 2 0.0075 0.18 -742 PFKFB1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 327008 7 7 7 1 2 5 0 0 0 0 0.0076 0.18 -743 GRM5 glutamate receptor, metabotropic 5 701428 11 11 11 7 3 4 2 1 1 0 0.0076 0.18 -744 CTCF CCCTC-binding factor (zinc finger protein) 498176 9 9 9 0 5 2 1 1 0 0 0.0076 0.18 -745 NLRP5 NLR family, pyrin domain containing 5 793228 13 12 12 3 8 2 2 0 1 0 0.0077 0.19 -746 C6orf211 chromosome 6 open reading frame 211 301084 5 5 5 0 0 2 0 0 3 0 0.0077 0.19 -747 IPO8 importin 8 719936 13 10 13 4 3 7 1 0 2 0 0.0077 0.19 -748 SEMG2 semenogelin II 393568 5 5 5 1 2 1 0 0 2 0 0.0077 0.19 -749 TMEM217 157248 5 5 4 0 1 2 2 0 0 0 0.0077 0.19 -750 AGA aspartylglucosaminidase 241248 5 5 5 1 1 1 2 0 1 0 0.0077 0.19 -751 ZNF528 zinc finger protein 528 426272 10 8 9 3 5 3 1 0 1 0 0.0078 0.19 -752 ZNF292 zinc finger protein 292 1806032 23 16 23 5 4 6 8 0 5 0 0.0078 0.19 -753 PRSS3 protease, serine, 3 171136 4 4 4 0 0 3 0 0 1 0 0.0078 0.19 -754 SLC12A9 solute carrier family 12 (potassium/chloride transporters), member 9 564712 9 9 9 1 1 4 2 0 2 0 0.0079 0.19 -755 MESDC2 mesoderm development candidate 2 154168 4 4 4 1 0 3 1 0 0 0 0.0079 0.19 -756 TP63 tumor protein p63 507136 10 9 10 2 5 1 1 0 1 2 0.0079 0.19 -757 NUP107 nucleoporin 107kDa 647360 12 9 12 0 3 3 3 0 3 0 0.0079 0.19 -758 CD93 CD93 molecule 418572 8 7 7 1 2 1 1 1 3 0 0.0080 0.19 -759 HIST1H2BA histone cluster 1, H2ba 86912 4 4 4 0 4 0 0 0 0 0 0.0080 0.19 -760 SLC25A12 solute carrier family 25 (mitochondrial carrier, Aralar), member 12 472416 9 9 9 0 5 1 2 0 1 0 0.0080 0.19 -761 DDI1 DDI1, DNA-damage inducible 1, homolog 1 (S. cerevisiae) 266840 9 9 8 0 5 3 1 0 0 0 0.0080 0.19 -762 TOX4 TOX high mobility group box family member 4 426048 6 6 6 2 0 1 4 0 1 0 0.0081 0.19 -763 C14orf50 chromosome 14 open reading frame 50 285080 4 4 4 0 1 0 1 0 2 0 0.0081 0.19 -764 SLC30A8 solute carrier family 30 (zinc transporter), member 8 255808 6 6 6 3 2 2 1 1 0 0 0.0081 0.19 -765 TSPAN5 tetraspanin 5 187936 5 5 5 1 0 2 2 0 1 0 0.0081 0.19 -766 SLITRK6 SLIT and NTRK-like family, member 6 566720 12 9 12 0 1 7 2 0 2 0 0.0081 0.19 -767 SLC24A2 solute carrier family 24 (sodium/potassium/calcium exchanger), member 2 450152 7 7 6 2 4 2 0 0 1 0 0.0082 0.19 -768 IVL involucrin 264688 4 4 4 2 0 3 1 0 0 0 0.0082 0.19 -769 ASTN2 astrotactin 2 823400 14 12 14 7 10 1 2 0 1 0 0.0082 0.19 -770 EXTL2 exostoses (multiple)-like 2 226016 6 5 6 0 0 3 3 0 0 0 0.0082 0.19 -771 BRSK1 BR serine/threonine kinase 1 442288 9 8 9 3 1 2 1 0 5 0 0.0082 0.19 -772 SETX senataxin 1821120 21 15 20 4 7 4 5 0 3 2 0.0083 0.19 -773 TREM1 triggering receptor expressed on myeloid cells 1 161504 5 5 5 0 2 2 1 0 0 0 0.0083 0.19 -774 TOX thymocyte selection-associated high mobility group box 362208 10 8 9 1 3 3 4 0 0 0 0.0084 0.19 -775 SGCB sarcoglycan, beta (43kDa dystrophin-associated glycoprotein) 211456 5 4 5 2 0 3 0 0 0 2 0.0084 0.20 -776 ZNF14 zinc finger protein 14 435680 9 5 7 0 0 1 0 0 1 7 0.0084 0.20 -777 GPR34 G protein-coupled receptor 34 257600 6 6 6 0 3 0 1 0 2 0 0.0085 0.20 -778 DENND2C DENN/MADD domain containing 2C 601216 9 9 9 1 3 3 2 0 1 0 0.0085 0.20 -779 MTFR1 mitochondrial fission regulator 1 232960 5 5 5 0 3 1 0 0 1 0 0.0085 0.20 -780 OR51A7 olfactory receptor, family 51, subfamily A, member 7 211232 5 5 5 2 0 3 2 0 0 0 0.0085 0.20 -781 SENP7 SUMO1/sentrin specific peptidase 7 727776 11 8 11 5 2 5 2 0 2 0 0.0085 0.20 -782 ZNF98 zinc finger protein 98 (F7175) 374884 9 6 9 3 0 5 1 0 3 0 0.0086 0.20 -783 MBOAT1 membrane bound O-acyltransferase domain containing 1 344960 8 7 8 0 3 3 0 0 2 0 0.0086 0.20 -784 SLITRK5 SLIT and NTRK-like family, member 5 632744 9 9 9 4 2 4 3 0 0 0 0.0086 0.20 -785 PATE2 80192 2 2 2 1 0 0 1 0 1 0 0.0086 0.20 -786 PALMD palmdelphin 378112 7 6 7 2 2 3 0 0 2 0 0.0087 0.20 -787 PXDNL peroxidasin homolog (Drosophila)-like 891600 15 12 14 4 9 3 2 0 1 0 0.0087 0.20 -788 PEG3 paternally expressed 3 1075424 22 13 22 4 4 12 3 0 3 0 0.0087 0.20 -789 FGF14 fibroblast growth factor 14 205968 5 5 4 1 4 0 0 0 1 0 0.0088 0.20 -790 IGSF5 immunoglobulin superfamily, member 5 258048 8 7 8 0 4 3 1 0 0 0 0.0088 0.20 -791 TTC14 tetratricopeptide repeat domain 14 526616 8 7 8 1 2 0 2 0 4 0 0.0088 0.20 -792 SESN3 sestrin 3 333368 6 5 6 0 1 3 0 0 2 0 0.0088 0.20 -793 ZNF385D zinc finger protein 385D 273280 9 8 9 2 4 4 1 0 0 0 0.0089 0.20 -794 PTDSS1 phosphatidylserine synthase 1 330176 7 7 7 0 0 2 4 0 1 0 0.0091 0.21 -795 ZIK1 zinc finger protein interacting with K protein 1 homolog (mouse) 328412 8 7 8 0 3 5 0 0 0 0 0.0091 0.21 -796 GABRA2 gamma-aminobutyric acid (GABA) A receptor, alpha 2 311808 9 7 9 0 1 6 2 0 0 0 0.0092 0.21 -797 ARFIP1 ADP-ribosylation factor interacting protein 1 (arfaptin 1) 258496 5 5 5 0 4 0 1 0 0 0 0.0092 0.21 -798 OR1N2 olfactory receptor, family 1, subfamily N, member 2 223328 5 5 5 1 0 1 2 0 2 0 0.0092 0.21 -799 GRID2 glutamate receptor, ionotropic, delta 2 691712 12 12 12 5 4 4 4 0 0 0 0.0092 0.21 -800 OR2T8 olfactory receptor, family 2, subfamily T, member 8 201576 5 5 5 1 1 2 2 0 0 0 0.0093 0.21 -801 OR8J1 olfactory receptor, family 8, subfamily J, member 1 213920 6 5 6 0 1 4 1 0 0 0 0.0093 0.21 -802 TPTE2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 369376 7 7 6 2 4 1 0 0 2 0 0.0093 0.21 -803 PCCA propionyl Coenzyme A carboxylase, alpha polypeptide 480408 9 7 9 3 4 2 2 0 1 0 0.0094 0.21 -804 NT5C3L 5'-nucleotidase, cytosolic III-like 197820 4 4 3 2 0 0 1 0 3 0 0.0094 0.21 -805 USP31 ubiquitin specific peptidase 31 804384 13 12 12 1 6 2 2 0 3 0 0.0094 0.21 -806 UNC13B unc-13 homolog B (C. elegans) 1098944 13 12 13 5 2 4 5 0 2 0 0.0094 0.21 -807 AQPEP 662116 13 11 12 2 6 3 3 0 1 0 0.0095 0.21 -808 DTWD1 DTW domain containing 1 208544 4 4 4 0 0 2 0 0 2 0 0.0095 0.21 -809 FPR2 formyl peptide receptor 2 237440 6 5 6 1 2 3 1 0 0 0 0.0095 0.21 -810 AGTR2 angiotensin II receptor, type 2 245504 5 5 5 1 1 1 3 0 0 0 0.0095 0.21 -811 C10orf11 chromosome 10 open reading frame 11 139104 4 4 4 0 1 2 0 0 1 0 0.0095 0.21 -812 SEL1L2 sel-1 suppressor of lin-12-like 2 (C. elegans) 480928 10 9 10 4 1 3 6 0 0 0 0.0095 0.21 -813 ZNF121 zinc finger protein 121 264544 7 6 7 1 2 4 1 0 0 0 0.0096 0.21 -814 LRFN5 leucine rich repeat and fibronectin type III domain containing 5 487424 9 8 9 4 2 2 5 0 0 0 0.0096 0.21 -815 ADHFE1 alcohol dehydrogenase, iron containing, 1 312928 6 6 6 3 2 3 1 0 0 0 0.0096 0.21 -816 PSMB9 proteasome (prosome, macropain) subunit, beta type, 9 (large multifunctional peptidase 2) 97888 4 4 4 0 1 1 1 0 1 0 0.0096 0.21 -817 CREBBP CREB binding protein (Rubinstein-Taybi syndrome) 1617968 25 19 25 8 9 5 6 0 5 0 0.0097 0.21 -818 SCN2A sodium channel, voltage-gated, type II, alpha subunit 1387120 22 16 22 7 9 7 4 0 2 0 0.0097 0.21 -819 CXCR4 chemokine (C-X-C motif) receptor 4 245056 4 4 4 1 1 2 0 0 1 0 0.0097 0.21 -820 USP28 ubiquitin specific peptidase 28 733152 11 11 11 0 1 7 3 0 0 0 0.0097 0.21 -821 HTRA1 HtrA serine peptidase 1 219968 7 6 7 1 1 4 2 0 0 0 0.0098 0.21 -822 CRYL1 crystallin, lambda 1 212128 5 5 5 0 3 2 0 0 0 0 0.0099 0.22 -823 CBX3 chromobox homolog 3 (HP1 gamma homolog, Drosophila) 128128 3 3 3 0 1 1 0 0 1 0 0.0099 0.22 -824 ZFP57 zinc finger protein 57 homolog (mouse) 239288 5 5 5 0 0 1 1 0 3 0 0.0099 0.22 -825 ZNF350 zinc finger protein 350 360752 7 7 6 1 2 3 1 0 1 0 0.0099 0.22 -826 DNAH11 dynein, axonemal, heavy chain 11 3069736 37 18 37 10 5 12 9 1 3 7 0.0100 0.22 -827 OPHN1 oligophrenin 1 553288 7 5 7 1 1 1 2 0 3 0 0.010 0.22 -828 ESX1 ESX homeobox 1 239036 6 6 6 4 2 2 2 0 0 0 0.010 0.22 -829 FILIP1 filamin A interacting protein 1 820288 11 11 11 6 3 5 2 0 1 0 0.010 0.22 -830 TMED2 transmembrane emp24 domain trafficking protein 2 139328 4 4 4 0 0 2 1 0 1 0 0.010 0.22 -831 ZNF28 zinc finger protein 28 448448 8 7 8 3 1 3 2 0 2 0 0.010 0.22 -832 ZNF781 zinc finger protein 781 221312 5 5 5 0 2 1 0 0 2 0 0.010 0.22 -833 MAGEC1 melanoma antigen family C, 1 769888 16 10 16 5 0 12 4 0 0 0 0.010 0.22 -834 MRPS36 mitochondrial ribosomal protein S36 73472 2 2 2 0 1 0 1 0 0 0 0.010 0.22 -835 TRIM33 tripartite motif-containing 33 665896 9 8 9 1 1 4 2 0 2 0 0.010 0.22 -836 FBXO15 F-box protein 15 299712 6 6 6 1 4 1 1 0 0 0 0.010 0.22 -837 WSCD2 WSC domain containing 2 386568 8 8 8 7 6 1 0 0 1 0 0.010 0.22 -838 KCNJ1 potassium inwardly-rectifying channel, subfamily J, member 1 249844 5 5 5 0 2 2 1 0 0 0 0.010 0.22 -839 CYP1A1 cytochrome P450, family 1, subfamily A, polypeptide 1 346584 7 7 7 0 3 2 2 0 0 0 0.010 0.22 -840 PCDHB3 protocadherin beta 3 495236 15 11 15 5 6 5 2 0 0 2 0.010 0.22 -841 POGK pogo transposable element with KRAB domain 412144 8 7 8 0 2 2 1 1 2 0 0.010 0.22 -842 CTSF cathepsin F 273140 5 5 5 2 1 1 0 0 3 0 0.010 0.22 -843 ATP12A ATPase, H+/K+ transporting, nongastric, alpha polypeptide 718680 18 13 18 5 10 4 3 0 1 0 0.011 0.22 -844 STK31 serine/threonine kinase 31 706944 10 8 10 1 0 5 4 0 1 0 0.011 0.22 -845 BNC1 basonuclin 1 650048 14 10 14 3 3 6 3 0 0 2 0.011 0.23 -846 PPP1R12B protein phosphatase 1, regulatory (inhibitor) subunit 12B 701968 9 8 8 0 4 1 0 0 4 0 0.011 0.23 -847 CCDC141 coiled-coil domain containing 141 599424 14 9 14 2 2 6 4 0 2 0 0.011 0.23 -848 ZAR1 zygote arrest 1 73976 3 3 3 1 0 3 0 0 0 0 0.011 0.23 -849 GMPPA GDP-mannose pyrophosphorylase A 282240 7 6 7 0 2 1 2 0 2 0 0.011 0.23 -850 TRIM42 tripartite motif-containing 42 491008 8 8 8 3 5 0 1 0 2 0 0.011 0.23 -851 FHL5 four and a half LIM domains 5 196000 4 4 4 0 1 0 3 0 0 0 0.011 0.23 -852 UBQLN3 ubiquilin 3 440804 10 8 10 0 3 6 0 0 1 0 0.011 0.23 -853 CD200R1L 188160 3 3 3 1 0 0 2 0 1 0 0.011 0.23 -854 OR5D18 olfactory receptor, family 5, subfamily D, member 18 211904 5 5 5 1 1 4 0 0 0 0 0.011 0.23 -855 HAPLN1 hyaluronan and proteoglycan link protein 1 242144 6 6 6 4 3 3 0 0 0 0 0.011 0.23 -856 SORT1 sortilin 1 507584 7 7 7 2 0 3 1 1 2 0 0.011 0.23 -857 THBS2 thrombospondin 2 775608 15 12 15 8 9 4 1 0 1 0 0.011 0.23 -858 FAM114A1 family with sequence similarity 114, member A1 390656 8 7 8 0 2 3 1 0 2 0 0.011 0.23 -859 AQP9 aquaporin 9 204288 5 4 5 2 2 2 0 0 1 0 0.011 0.23 -860 C1orf189 chromosome 1 open reading frame 189 72128 3 3 3 0 0 2 1 0 0 0 0.011 0.23 -861 BEND7 332864 5 5 5 2 1 1 2 0 1 0 0.011 0.23 -862 IMMP2L IMP2 inner mitochondrial membrane peptidase-like (S. cerevisiae) 122752 5 3 5 0 1 1 2 0 1 0 0.011 0.23 -863 MYOT myotilin 343392 8 6 8 1 2 2 4 0 0 0 0.011 0.23 -864 IL1R2 interleukin 1 receptor, type II 275296 7 6 7 1 2 2 3 0 0 0 0.011 0.23 -865 BEND2 520576 10 9 10 2 2 5 3 0 0 0 0.011 0.23 -866 KCNA10 potassium voltage-gated channel, shaker-related subfamily, member 10 344960 9 8 9 3 3 5 0 0 1 0 0.011 0.23 -867 SLC9A11 solute carrier family 9, member 11 780192 16 10 16 1 2 7 6 0 1 0 0.011 0.23 -868 TNKS2 tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase 2 762944 10 9 10 1 2 2 4 0 2 0 0.011 0.23 -869 S1PR1 250964 7 7 7 0 3 1 3 0 0 0 0.011 0.23 -870 HMGXB4 408464 6 5 5 2 1 2 1 0 2 0 0.011 0.23 -871 PRMT10 574056 7 7 7 1 1 2 1 0 3 0 0.011 0.23 -872 HAS1 hyaluronan synthase 1 265764 7 7 7 3 5 2 0 0 0 0 0.011 0.23 -873 FBXW11 F-box and WD repeat domain containing 11 384440 8 8 8 0 4 3 1 0 0 0 0.011 0.23 -874 ARHGEF6 Rac/Cdc42 guanine nucleotide exchange factor (GEF) 6 541856 10 7 10 2 1 4 1 0 4 0 0.011 0.23 -875 PDE1C phosphodiesterase 1C, calmodulin-dependent 70kDa 441952 9 9 9 3 4 3 1 0 1 0 0.011 0.23 -876 FAM9B family with sequence similarity 9, member B 131936 4 4 4 0 0 2 0 0 2 0 0.011 0.23 -877 YSK4 yeast Sps1/Ste20-related kinase 4 (S. cerevisiae) 901124 16 11 16 2 1 9 4 0 2 0 0.011 0.23 -878 ARID1B AT rich interactive domain 1B (SWI1-like) 613464 11 9 11 1 6 2 0 0 3 0 0.011 0.23 -879 CDCP2 CUB domain containing protein 2 297500 6 5 6 0 1 3 0 0 2 0 0.011 0.23 -880 LRRC7 leucine rich repeat containing 7 1055936 20 12 19 4 8 6 5 0 1 0 0.011 0.23 -881 DUSP6 dual specificity phosphatase 6 225036 5 5 5 0 0 3 0 0 2 0 0.011 0.23 -882 C6orf10 chromosome 6 open reading frame 10 256984 6 5 6 1 3 1 1 0 1 0 0.011 0.23 -883 FAM126A family with sequence similarity 126, member A 359744 6 6 6 1 1 3 1 0 1 0 0.011 0.23 -884 NIPA2 non imprinted in Prader-Willi/Angelman syndrome 2 247072 5 5 5 0 2 0 3 0 0 0 0.011 0.23 -885 CBLB Cas-Br-M (murine) ecotropic retroviral transforming sequence b 676704 8 8 8 0 1 5 1 0 1 0 0.011 0.23 -886 GPC3 glypican 3 385544 7 7 7 1 1 3 3 0 0 0 0.011 0.23 -887 DKK1 dickkopf homolog 1 (Xenopus laevis) 177860 5 5 5 0 2 1 2 0 0 0 0.011 0.23 -888 AMOT angiomotin 430928 5 5 5 1 1 0 0 0 4 0 0.012 0.23 -889 FAM47A family with sequence similarity 47, member A 533120 11 9 11 5 9 1 1 0 0 0 0.012 0.23 -890 GRM1 glutamate receptor, metabotropic 1 819140 12 12 12 8 7 2 2 0 1 0 0.012 0.23 -891 MBD3L1 methyl-CpG binding domain protein 3-like 1 131936 5 5 5 0 2 2 1 0 0 0 0.012 0.23 -892 ZNF415 zinc finger protein 415 376320 7 6 7 2 1 1 3 1 1 0 0.012 0.23 -893 IFIT1 interferon-induced protein with tetratricopeptide repeats 1 323680 6 6 6 0 2 1 1 0 2 0 0.012 0.23 -894 IFNA2 interferon, alpha 2 127904 4 4 4 0 0 3 1 0 0 0 0.012 0.23 -895 EHD3 EH-domain containing 3 365568 9 9 8 3 7 0 1 1 0 0 0.012 0.23 -896 AXIN2 axin 2 (conductin, axil) 564840 9 9 9 1 2 3 1 0 3 0 0.012 0.23 -897 MXD1 MAX dimerization protein 1 144088 3 3 3 1 1 0 0 0 2 0 0.012 0.23 -898 ADORA1 adenosine A1 receptor 221536 8 7 8 0 4 4 0 0 0 0 0.012 0.24 -899 NT5C1B 5'-nucleotidase, cytosolic IB 417704 10 9 10 2 5 1 3 0 1 0 0.012 0.24 -900 CRISP1 cysteine-rich secretory protein 1 174272 4 4 4 2 1 3 0 0 0 0 0.012 0.24 -901 TNFRSF11B tumor necrosis factor receptor superfamily, member 11b (osteoprotegerin) 270000 4 4 4 2 1 0 0 0 3 0 0.012 0.24 -902 TF transferrin 479612 11 9 11 2 6 3 1 0 1 0 0.012 0.24 -903 RNF175 ring finger protein 175 210344 4 4 4 1 1 1 1 0 1 0 0.012 0.24 -904 OR14C36 olfactory receptor, family 14, subfamily C, member 36 204176 3 3 3 0 0 2 0 0 1 0 0.012 0.24 -905 RGS13 regulator of G-protein signaling 13 111104 3 3 3 1 0 2 1 0 0 0 0.012 0.24 -906 HBE1 hemoglobin, epsilon 1 102144 3 3 3 1 0 0 2 0 1 0 0.012 0.24 -907 PSG7 pregnancy specific beta-1-glycoprotein 7 287616 5 5 5 0 1 2 1 0 1 0 0.012 0.24 -908 EBF3 early B-cell factor 3 355456 7 6 6 1 2 2 0 0 3 0 0.012 0.24 -909 PLGLB2 plasminogen-like B2 48384 1 1 1 0 0 0 0 0 1 0 0.012 0.24 -910 CMTM2 CKLF-like MARVEL transmembrane domain containing 2 170912 4 4 4 0 0 2 1 0 1 0 0.012 0.24 -911 PSG9 pregnancy specific beta-1-glycoprotein 9 292320 7 7 7 2 6 1 0 0 0 0 0.012 0.24 -912 FSHB follicle stimulating hormone, beta polypeptide 89152 2 2 2 0 0 0 0 0 2 0 0.012 0.24 -913 SLC2A7 solute carrier family 2 (facilitated glucose transporter), member 7 319724 8 8 7 2 5 2 1 0 0 0 0.012 0.24 -914 PRSS12 protease, serine, 12 (neurotrypsin, motopsin) 536160 8 8 8 1 3 2 1 0 2 0 0.012 0.24 -915 LNX2 ligand of numb-protein X 2 472416 8 8 8 0 3 2 2 0 1 0 0.012 0.24 -916 C11orf63 chromosome 11 open reading frame 63 544992 7 7 7 6 2 0 3 0 2 0 0.012 0.24 -917 UGP2 UDP-glucose pyrophosphorylase 2 351008 7 6 7 1 2 2 2 0 1 0 0.012 0.24 -918 C5orf49 75740 3 3 3 0 1 1 0 1 0 0 0.012 0.24 -919 PABPC5 poly(A) binding protein, cytoplasmic 5 258272 6 6 6 2 2 2 1 0 1 0 0.013 0.25 -920 BCL7A B-cell CLL/lymphoma 7A 153216 6 5 5 2 4 1 0 0 1 0 0.013 0.25 -921 C3orf30 chromosome 3 open reading frame 30 363552 6 5 6 0 1 3 2 0 0 0 0.013 0.25 -922 ZNF264 zinc finger protein 264 424760 9 8 9 1 5 2 1 1 0 0 0.013 0.25 -923 OR10J3 olfactory receptor, family 10, subfamily J, member 3 222656 6 5 6 1 0 4 2 0 0 0 0.013 0.25 -924 SMC4 structural maintenance of chromosomes 4 854784 13 10 12 2 4 1 6 0 2 0 0.013 0.25 -925 UGT3A1 UDP glycosyltransferase 3 family, polypeptide A1 354704 7 6 7 1 2 3 1 0 1 0 0.013 0.25 -926 CSNK1A1L casein kinase 1, alpha 1-like 228032 5 5 5 4 0 2 2 0 1 0 0.013 0.25 -927 NBEA neurobeachin 1937756 24 14 24 2 3 8 8 0 3 2 0.013 0.25 -928 DHX57 DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57 952672 14 11 14 1 5 5 2 0 2 0 0.013 0.25 -929 BMP5 bone morphogenetic protein 5 311948 5 5 5 1 4 0 0 0 1 0 0.013 0.25 -930 STAC SH3 and cysteine rich domain 273112 6 6 6 3 2 2 2 0 0 0 0.013 0.25 -931 OSMR oncostatin M receptor 676032 6 6 6 1 1 3 0 0 2 0 0.013 0.25 -932 PCYT1A phosphate cytidylyltransferase 1, choline, alpha 254464 5 5 5 3 0 2 3 0 0 0 0.013 0.25 -933 RALYL RALY RNA binding protein-like 190592 5 5 5 2 1 3 0 0 1 0 0.013 0.25 -934 MARK1 MAP/microtubule affinity-regulating kinase 1 542780 10 9 10 2 2 7 0 0 1 0 0.013 0.25 -935 BNC2 basonuclin 2 745472 13 11 12 3 7 0 4 0 2 0 0.013 0.25 -936 TPO thyroid peroxidase 552692 11 11 10 3 7 4 0 0 0 0 0.013 0.25 -937 METTL6 methyltransferase like 6 196000 8 5 7 1 1 4 2 0 1 0 0.013 0.25 -938 FAM184A 772048 16 10 15 2 3 10 1 0 2 0 0.013 0.25 -939 OTUD6B OTU domain containing 6B 219512 4 4 4 0 0 0 1 0 3 0 0.013 0.25 -940 ZDBF2 zinc finger, DBF-type containing 2 1585248 33 13 33 7 5 16 5 0 4 3 0.013 0.25 -941 MNS1 meiosis-specific nuclear structural 1 342272 6 6 6 0 1 1 1 0 3 0 0.013 0.25 -942 OR10G4 olfactory receptor, family 10, subfamily G, member 4 210560 5 5 5 3 3 1 1 0 0 0 0.013 0.25 -943 WDR64 WD repeat domain 64 445536 10 8 10 1 0 5 3 0 0 2 0.013 0.25 -944 FSHR follicle stimulating hormone receptor 476672 7 7 7 3 1 3 1 1 1 0 0.013 0.25 -945 PRMT8 protein arginine methyltransferase 8 274400 5 5 5 3 2 1 1 0 1 0 0.013 0.25 -946 ZCCHC6 zinc finger, CCHC domain containing 6 1028608 9 8 9 1 2 4 0 0 3 0 0.013 0.25 -947 MARCKSL1 MARCKS-like 1 118132 3 3 2 0 0 1 0 0 2 0 0.013 0.25 -948 C20orf3 chromosome 20 open reading frame 3 279844 6 6 6 0 2 3 1 0 0 0 0.013 0.25 -949 CTSC cathepsin C 340528 6 6 6 1 1 2 1 0 2 0 0.013 0.25 -950 TGFB2 transforming growth factor, beta 2 303688 9 6 9 3 2 4 1 0 2 0 0.013 0.25 -951 ZFP106 zinc finger protein 106 homolog (mouse) 1283072 14 11 14 2 4 3 3 0 4 0 0.013 0.25 -952 OR51A4 olfactory receptor, family 51, subfamily A, member 4 211904 4 4 4 0 0 2 1 0 1 0 0.013 0.25 -953 OR4K5 olfactory receptor, family 4, subfamily K, member 5 218624 4 4 4 2 0 2 1 0 1 0 0.013 0.25 -954 KIF20B 1225504 17 12 15 3 6 3 4 0 2 2 0.013 0.25 -955 NOVA1 neuro-oncological ventral antigen 1 332088 6 6 6 3 0 5 1 0 0 0 0.013 0.25 -956 FAAH2 fatty acid amide hydrolase 2 368032 4 4 4 0 1 0 2 0 1 0 0.013 0.25 -957 TRA2B 202272 5 5 5 1 3 0 0 1 1 0 0.013 0.25 -958 GDPD2 glycerophosphodiester phosphodiesterase domain containing 2 361496 8 8 8 0 4 2 2 0 0 0 0.013 0.25 -959 CCDC28B coiled-coil domain containing 28B 136780 4 4 4 0 2 2 0 0 0 0 0.013 0.25 -960 FRMPD2 FERM and PDZ domain containing 2 805280 10 10 10 4 2 5 2 0 1 0 0.013 0.25 -961 FOLR1 folate receptor 1 (adult) 176960 5 5 5 2 3 1 1 0 0 0 0.013 0.25 -962 OR10X1 olfactory receptor, family 10, subfamily X, member 1 220640 5 4 5 1 1 2 2 0 0 0 0.013 0.25 -963 GUCY2F guanylate cyclase 2F, retinal 761376 12 10 12 2 3 3 4 0 2 0 0.013 0.25 -964 CLDN16 claudin 16 210112 5 5 5 0 3 1 1 0 0 0 0.013 0.25 -965 ADIPOQ adiponectin, C1Q and collagen domain containing 166432 4 4 4 1 0 3 0 1 0 0 0.014 0.25 -966 COLEC12 collectin sub-family member 12 483280 9 8 9 1 0 3 4 1 1 0 0.014 0.25 -967 MAN2A1 mannosidase, alpha, class 2A, member 1 789152 12 10 12 1 5 3 4 0 0 0 0.014 0.25 -968 FAM49B family with sequence similarity 49, member B 227360 4 4 4 2 1 0 0 0 3 0 0.014 0.25 -969 BMS1 BMS1 homolog, ribosome assembly protein (yeast) 831504 15 12 15 0 5 2 6 0 2 0 0.014 0.25 -970 C11orf57 chromosome 11 open reading frame 57 202048 4 4 4 0 1 0 2 0 1 0 0.014 0.25 -971 NLRP7 NLR family, pyrin domain containing 7 697088 16 12 16 2 9 5 2 0 0 0 0.014 0.25 -972 ITIH2 inter-alpha (globulin) inhibitor H2 655200 10 9 10 6 4 4 2 0 0 0 0.014 0.25 -973 TREM2 triggering receptor expressed on myeloid cells 2 159712 4 4 4 1 2 1 1 0 0 0 0.014 0.25 -974 ZMAT3 zinc finger, matrin type 3 199360 5 5 5 1 1 4 0 0 0 0 0.014 0.25 -975 CRYBA4 crystallin, beta A4 136864 5 4 5 1 2 0 2 0 1 0 0.014 0.25 -976 TEX11 testis expressed 11 648256 8 7 8 4 0 3 3 0 2 0 0.014 0.25 -977 TMEM55A transmembrane protein 55A 179648 5 5 4 0 2 2 0 0 1 0 0.014 0.25 -978 KRTAP22-1 keratin associated protein 22-1 33824 1 1 1 1 0 0 0 0 1 0 0.014 0.25 -979 ZNF483 zinc finger protein 483 517216 10 9 10 2 2 5 3 0 0 0 0.014 0.26 -980 ZNF256 zinc finger protein 256 416416 6 6 6 0 0 2 2 0 2 0 0.014 0.26 -981 MSH6 mutS homolog 6 (E. coli) 893116 15 10 12 6 4 4 1 0 4 2 0.014 0.26 -982 DYDC1 DPY30 domain containing 1 124992 3 3 3 0 0 2 0 0 1 0 0.014 0.26 -983 BCL9L B-cell CLL/lymphoma 9-like 806312 11 10 11 1 4 2 1 0 4 0 0.014 0.26 -984 NTRK3 neurotrophic tyrosine kinase, receptor, type 3 633040 11 9 11 5 6 3 0 0 2 0 0.014 0.26 -985 ALK anaplastic lymphoma receptor tyrosine kinase 1056864 13 12 12 9 2 7 1 0 3 0 0.014 0.26 -986 SERTAD3 SERTA domain containing 3 133280 4 4 4 0 3 0 0 1 0 0 0.014 0.26 -987 DPP8 dipeptidyl-peptidase 8 622048 10 9 9 1 4 3 2 0 1 0 0.014 0.26 -988 TRPV6 transient receptor potential cation channel, subfamily V, member 6 501312 11 9 11 1 4 5 2 0 0 0 0.014 0.26 -989 AHCYL2 S-adenosylhomocysteine hydrolase-like 2 369992 8 7 8 1 1 3 3 0 1 0 0.014 0.26 -990 TDRD3 tudor domain containing 3 449344 8 6 8 1 3 2 1 0 2 0 0.014 0.26 -991 ZFP112 617792 9 9 9 1 2 6 1 0 0 0 0.014 0.26 -992 ARID4A AT rich interactive domain 4A (RBP1-like) 865984 10 9 10 3 3 2 1 0 4 0 0.014 0.26 -993 TSHZ2 teashirt zinc finger homeobox 2 691328 11 10 11 6 4 3 4 0 0 0 0.014 0.26 -994 MRGPRD MAS-related GPR, member D 214340 6 6 6 1 3 1 1 0 1 0 0.014 0.26 -995 FOLH1B 308448 7 6 7 0 0 5 1 0 1 0 0.014 0.26 -996 RCOR3 REST corepressor 3 347200 5 5 5 0 2 1 1 0 1 0 0.014 0.26 -997 IFNA16 interferon, alpha 16 128576 4 4 4 0 0 3 1 0 0 0 0.014 0.26 -998 GPX5 glutathione peroxidase 5 (epididymal androgen-related protein) 153664 4 4 4 0 1 2 1 0 0 0 0.014 0.26 -999 PLK1 polo-like kinase 1 (Drosophila) 402836 9 8 8 2 3 1 2 1 2 0 0.014 0.26 -1000 MLLT10 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10 710528 7 7 7 1 1 1 2 0 3 0 0.015 0.26 -1001 HHLA3 HERV-H LTR-associating 3 80416 3 3 3 1 2 0 1 0 0 0 0.015 0.26 -1002 ADCY8 adenylate cyclase 8 (brain) 787080 12 11 12 9 5 4 2 0 1 0 0.015 0.26 -1003 ZNF345 zinc finger protein 345 329504 12 7 10 1 5 7 0 0 0 0 0.015 0.26 -1004 ZNHIT6 325472 9 6 7 0 0 4 1 0 2 2 0.015 0.27 -1005 TPP1 tripeptidyl peptidase I 390656 6 6 6 0 3 1 2 0 0 0 0.015 0.27 -1006 ARMCX1 armadillo repeat containing, X-linked 1 305984 5 5 5 2 0 3 2 0 0 0 0.015 0.27 -1007 ADAMTS18 ADAM metallopeptidase with thrombospondin type 1 motif, 18 800568 14 11 13 7 4 5 2 0 3 0 0.015 0.27 -1008 AGTR1 angiotensin II receptor, type 1 242816 6 5 6 0 1 2 1 0 2 0 0.015 0.27 -1009 DLG2 discs, large homolog 2, chapsyn-110 (Drosophila) 700744 11 9 11 0 3 5 2 0 1 0 0.015 0.27 -1010 OR2T33 olfactory receptor, family 2, subfamily T, member 33 216608 7 6 7 2 1 2 4 0 0 0 0.015 0.27 -1011 A4GNT alpha-1,4-N-acetylglucosaminyltransferase 230944 4 4 4 0 1 1 0 1 1 0 0.015 0.27 -1012 ANKIB1 ankyrin repeat and IBR domain containing 1 748960 9 8 8 1 1 3 2 0 3 0 0.015 0.27 -1013 GRM6 glutamate receptor, metabotropic 6 463344 10 9 10 3 7 2 0 0 1 0 0.015 0.27 -1014 IFLTD1 intermediate filament tail domain containing 1 268576 6 5 6 0 1 4 1 0 0 0 0.015 0.27 -1015 PTGER3 prostaglandin E receptor 3 (subtype EP3) 290156 7 7 7 0 0 3 1 2 1 0 0.015 0.27 -1016 RABL3 RAB, member of RAS oncogene family-like 3 119648 3 3 3 0 2 1 0 0 0 0 0.015 0.27 -1017 TPRX1 tetra-peptide repeat homeobox 1 197820 4 4 4 0 1 2 0 0 1 0 0.015 0.27 -1018 FASTKD3 FAST kinase domains 3 450912 8 7 8 0 1 2 4 0 1 0 0.015 0.27 -1019 KCND2 potassium voltage-gated channel, Shal-related subfamily, member 2 429324 7 7 7 4 2 1 3 0 1 0 0.015 0.27 -1020 SLC41A3 solute carrier family 41, member 3 409624 6 6 6 1 0 5 0 0 1 0 0.015 0.27 -1021 NID2 nidogen 2 (osteonidogen) 937496 11 10 11 0 6 2 0 0 3 0 0.015 0.27 -1022 GNB4 guanine nucleotide binding protein (G protein), beta polypeptide 4 237216 4 4 4 1 1 1 0 0 2 0 0.015 0.27 -1023 OR5B21 olfactory receptor, family 5, subfamily B, member 21 209216 4 4 4 0 1 1 1 0 1 0 0.015 0.27 -1024 HDX highly divergent homeobox 472416 11 8 11 1 2 6 2 0 1 0 0.015 0.27 -1025 HIST1H1A histone cluster 1, H1a 141344 4 4 4 0 1 1 0 2 0 0 0.015 0.27 -1026 NPY1R neuropeptide Y receptor Y1 260512 4 4 4 0 0 2 1 0 1 0 0.015 0.27 -1027 EPB41L3 erythrocyte membrane protein band 4.1-like 3 747768 18 11 18 6 3 6 5 1 3 0 0.015 0.27 -1028 NOL4 nucleolar protein 4 438928 7 6 7 0 3 1 2 0 1 0 0.015 0.27 -1029 XRCC4 X-ray repair complementing defective repair in Chinese hamster cells 4 232736 4 4 4 0 0 1 1 0 2 0 0.016 0.27 -1030 CCDC39 coiled-coil domain containing 39 579272 12 8 12 1 2 4 3 0 3 0 0.016 0.27 -1031 ABCA1 ATP-binding cassette, sub-family A (ABC1), member 1 1563968 22 17 22 5 8 10 4 0 0 0 0.016 0.27 -1032 SHC4 SHC (Src homology 2 domain containing) family, member 4 417732 5 5 5 2 1 1 1 0 2 0 0.016 0.27 -1033 OGDHL oxoglutarate dehydrogenase-like 693392 11 10 10 3 6 1 4 0 0 0 0.016 0.27 -1034 NLRP13 NLR family, pyrin domain containing 13 711424 11 9 11 2 2 4 4 0 1 0 0.016 0.27 -1035 GJA1 gap junction protein, alpha 1, 43kDa 258272 8 6 7 3 6 2 0 0 0 0 0.016 0.27 -1036 ARMC3 armadillo repeat containing 3 600472 8 7 8 0 0 4 1 0 1 2 0.016 0.27 -1037 VEPH1 ventricular zone expressed PH domain homolog 1 (zebrafish) 574336 7 7 7 1 0 3 4 0 0 0 0.016 0.27 -1038 CNIH cornichon homolog (Drosophila) 77712 2 2 2 0 0 1 0 0 1 0 0.016 0.28 -1039 FGD6 FYVE, RhoGEF and PH domain containing 6 980448 13 9 13 1 3 5 0 0 1 4 0.016 0.28 -1040 PYHIN1 pyrin and HIN domain family, member 1 344512 9 6 9 1 1 5 3 0 0 0 0.016 0.28 -1041 AASS aminoadipate-semialdehyde synthase 643552 9 8 9 3 1 3 2 0 3 0 0.016 0.28 -1042 AMPD1 adenosine monophosphate deaminase 1 (isoform M) 519232 9 9 8 0 5 3 1 0 0 0 0.016 0.28 -1043 ZNF573 zinc finger protein 573 382368 7 7 6 1 0 3 2 0 2 0 0.016 0.28 -1044 CLEC5A C-type lectin domain family 5, member A 125992 3 3 3 0 0 1 1 1 0 0 0.016 0.28 -1045 KIAA1377 KIAA1377 755944 10 9 10 3 3 3 3 0 1 0 0.016 0.28 -1046 CORIN corin, serine peptidase 720608 13 10 13 5 4 3 5 0 1 0 0.016 0.28 -1047 VEGFC vascular endothelial growth factor C 274568 6 5 6 0 1 1 2 0 2 0 0.016 0.28 -1048 CD274 CD274 molecule 200928 4 4 4 0 1 2 0 0 1 0 0.016 0.28 -1049 CLEC4D C-type lectin domain family 4, member D 150528 3 3 3 1 1 2 0 0 0 0 0.016 0.28 -1050 OTX2 orthodenticle homeobox 2 202440 4 3 4 0 1 0 0 0 3 0 0.016 0.28 -1051 L3MBTL4 l(3)mbt-like 4 (Drosophila) 428172 6 6 6 1 1 1 3 0 1 0 0.016 0.28 -1052 OR10H1 olfactory receptor, family 10, subfamily H, member 1 215264 6 6 6 2 2 2 1 0 1 0 0.016 0.28 -1053 FXR2 fragile X mental retardation, autosomal homolog 2 416344 7 7 7 0 3 0 0 1 3 0 0.016 0.28 -1054 GHSR growth hormone secretagogue receptor 264908 5 5 5 2 2 1 1 0 1 0 0.016 0.28 -1055 NPY2R neuropeptide Y receptor Y2 257600 5 5 5 1 1 3 1 0 0 0 0.016 0.28 -1056 DEFB119 defensin, beta 119 115808 4 4 4 0 4 0 0 0 0 0 0.016 0.28 -1057 MAEL maelstrom homolog (Drosophila) 302936 6 6 5 1 2 1 1 1 1 0 0.016 0.28 -1058 ZNF502 zinc finger protein 502 368032 6 6 6 2 1 2 1 0 2 0 0.016 0.28 -1059 RUFY3 RUN and FYVE domain containing 3 451584 8 6 8 0 1 4 2 0 1 0 0.016 0.28 -1060 SNTG1 syntrophin, gamma 1 363328 7 6 7 0 2 2 1 0 2 0 0.016 0.28 -1061 UGT2A3 UDP glucuronosyltransferase 2 family, polypeptide A3 360192 7 5 7 0 0 4 2 0 1 0 0.016 0.28 -1062 CCDC117 coiled-coil domain containing 117 150304 4 4 4 0 0 3 1 0 0 0 0.017 0.28 -1063 OR2G6 olfactory receptor, family 2, subfamily G, member 6 213920 4 4 4 3 1 1 2 0 0 0 0.017 0.28 -1064 CDC73 cell division cycle 73, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) 372736 7 6 7 1 4 0 2 0 1 0 0.017 0.28 -1065 LPHN2 latrophilin 2 954968 13 11 13 3 4 3 4 0 2 0 0.017 0.28 -1066 AMOTL1 angiomotin like 1 641964 13 10 12 1 9 1 1 0 2 0 0.017 0.28 -1067 CD55 CD55 molecule, decay accelerating factor for complement (Cromer blood group) 244608 4 4 4 1 0 2 1 0 1 0 0.017 0.28 -1068 GLUD2 glutamate dehydrogenase 2 361676 6 6 6 3 3 2 1 0 0 0 0.017 0.28 -1069 C3orf26 chromosome 3 open reading frame 26 197120 4 4 4 0 0 0 3 0 1 0 0.017 0.28 -1070 OR10Z1 olfactory receptor, family 10, subfamily Z, member 1 211904 5 5 5 1 0 4 1 0 0 0 0.017 0.28 -1071 LRRC30 leucine rich repeat containing 30 203840 5 5 5 2 2 1 1 0 1 0 0.017 0.28 -1072 MAGEB4 melanoma antigen family B, 4 234080 4 4 4 0 1 3 0 0 0 0 0.017 0.28 -1073 ODF1 outer dense fiber of sperm tails 1 170464 4 4 4 1 2 0 1 0 1 0 0.017 0.29 -1074 DNAJC11 DnaJ (Hsp40) homolog, subfamily C, member 11 380320 7 6 7 3 2 1 0 0 4 0 0.017 0.29 -1075 SYT14 synaptotagmin XIV 381864 6 6 6 5 2 2 2 0 0 0 0.017 0.29 -1076 OR5T2 olfactory receptor, family 5, subfamily T, member 2 242816 4 4 4 1 0 1 2 0 1 0 0.017 0.29 -1077 TCEANC 206864 5 5 5 0 1 1 2 0 1 0 0.017 0.29 -1078 OR11L1 olfactory receptor, family 11, subfamily L, member 1 217952 4 4 4 1 1 2 1 0 0 0 0.017 0.29 -1079 NCAPG non-SMC condensin I complex, subunit G 681520 8 8 8 2 3 1 3 0 1 0 0.017 0.29 -1080 SNX22 sorting nexin 22 99232 3 3 3 0 1 2 0 0 0 0 0.017 0.29 -1081 OLFM1 olfactomedin 1 322028 7 7 7 1 1 2 3 0 1 0 0.017 0.29 -1082 OR5M9 olfactory receptor, family 5, subfamily M, member 9 209888 4 4 4 1 3 0 1 0 0 0 0.017 0.29 -1083 TMEM144 transmembrane protein 144 242368 4 4 4 2 0 2 0 0 2 0 0.017 0.29 -1084 STIM2 stromal interaction molecule 2 478016 8 6 7 1 3 2 1 0 2 0 0.017 0.29 -1085 CCDC70 coiled-coil domain containing 70 158144 4 4 4 0 2 1 1 0 0 0 0.017 0.29 -1086 GSDMB 279552 6 5 6 0 0 2 4 0 0 0 0.018 0.29 -1087 OR5AS1 olfactory receptor, family 5, subfamily AS, member 1 219296 4 4 4 3 0 2 2 0 0 0 0.018 0.29 -1088 OR11H6 olfactory receptor, family 11, subfamily H, member 6 223328 6 4 6 0 0 5 0 0 1 0 0.018 0.29 -1089 SUCLA2 succinate-CoA ligase, ADP-forming, beta subunit 314244 5 5 5 0 2 2 0 0 1 0 0.018 0.29 -1090 SETD2 SET domain containing 2 1551608 16 13 16 3 3 6 4 0 3 0 0.018 0.29 -1091 DYRK3 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 3 385056 8 7 8 1 4 4 0 0 0 0 0.018 0.29 -1092 SF3B4 splicing factor 3b, subunit 4, 49kDa 278164 4 4 4 0 1 1 0 0 2 0 0.018 0.29 -1093 CLEC2B C-type lectin domain family 2, member B 104384 2 2 2 1 0 0 1 0 1 0 0.018 0.29 -1094 C14orf182 75264 2 2 2 0 0 0 1 0 1 0 0.018 0.29 -1095 PZP pregnancy-zone protein 1028832 16 11 16 4 4 6 4 0 2 0 0.018 0.29 -1096 GRIA3 glutamate receptor, ionotrophic, AMPA 3 641536 8 8 8 0 2 5 1 0 0 0 0.018 0.29 -1097 TACR3 tachykinin receptor 3 317632 8 8 8 2 3 3 2 0 0 0 0.018 0.29 -1098 KCNJ16 potassium inwardly-rectifying channel, subfamily J, member 16 282464 5 5 5 1 2 1 0 0 2 0 0.018 0.29 -1099 SYT6 synaptotagmin VI 291648 6 6 6 4 4 2 0 0 0 0 0.018 0.29 -1100 CFH complement factor H 851240 16 10 16 7 3 7 5 0 1 0 0.018 0.29 -1101 ALG8 asparagine-linked glycosylation 8 homolog (S. cerevisiae, alpha-1,3-glucosyltransferase) 352192 6 6 6 3 2 2 1 0 1 0 0.018 0.29 -1102 CAPSL calcyphosine-like 144032 5 4 5 0 2 1 0 0 2 0 0.018 0.29 -1103 SPOCK3 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 3 299768 7 6 7 1 0 3 4 0 0 0 0.018 0.30 -1104 ALG10B asparagine-linked glycosylation 10 homolog B (yeast, alpha-1,2-glucosyltransferase) 321216 8 6 8 0 1 5 2 0 0 0 0.018 0.30 -1105 PHEX phosphate regulating endopeptidase homolog, X-linked (hypophosphatemia, vitamin D resistant rickets) 523712 10 7 10 1 3 3 4 0 0 0 0.018 0.30 -1106 KLRB1 killer cell lectin-like receptor subfamily B, member 1 157248 4 3 4 2 1 0 1 0 2 0 0.018 0.30 -1107 HIST1H4E histone cluster 1, H4e 70784 3 3 3 2 0 2 1 0 0 0 0.018 0.30 -1108 HYDIN hydrocephalus inducing homolog (mouse) 3506612 57 25 54 19 28 19 4 0 4 2 0.018 0.30 -1109 CD70 CD70 molecule 130956 5 5 4 1 4 1 0 0 0 0 0.018 0.30 -1110 C15orf60 162632 4 4 4 0 1 2 0 0 1 0 0.018 0.30 -1111 TMEM168 transmembrane protein 168 472640 8 7 8 2 2 1 2 0 3 0 0.018 0.30 -1112 RILP Rab interacting lysosomal protein 150108 4 4 4 1 1 2 1 0 0 0 0.018 0.30 -1113 SLC1A6 solute carrier family 1 (high affinity aspartate/glutamate transporter), member 6 380352 7 7 7 1 3 2 1 0 1 0 0.018 0.30 -1114 MME membrane metallo-endopeptidase 524384 10 9 10 1 3 6 1 0 0 0 0.018 0.30 -1115 OR2A5 olfactory receptor, family 2, subfamily A, member 5 210560 5 5 5 0 1 2 2 0 0 0 0.018 0.30 -1116 IQCB1 IQ motif containing B1 414176 6 6 6 1 1 3 1 1 0 0 0.018 0.30 -1117 ZNF625 zinc finger protein 625 207200 6 5 5 0 3 1 0 0 2 0 0.018 0.30 -1118 CNIH3 cornichon homolog 3 (Drosophila) 97656 5 4 5 0 3 2 0 0 0 0 0.018 0.30 -1119 ADAM12 ADAM metallopeptidase domain 12 (meltrin alpha) 635712 9 9 9 3 4 3 0 0 2 0 0.019 0.30 -1120 DCDC1 doublecortin domain containing 1 244832 5 5 5 0 3 1 1 0 0 0 0.019 0.30 -1121 C12orf42 chromosome 12 open reading frame 42 247072 5 5 5 0 5 0 0 0 0 0 0.019 0.30 -1122 CCRL1 chemokine (C-C motif) receptor-like 1 236768 5 4 5 1 1 2 2 0 0 0 0.019 0.30 -1123 MUC16 mucin 16, cell surface associated 9810632 109 38 108 40 15 64 24 0 4 2 0.019 0.30 -1124 BMP15 bone morphogenetic protein 15 250344 5 4 5 0 1 2 1 0 1 0 0.019 0.30 -1125 C7orf33 chromosome 7 open reading frame 33 122304 4 4 4 0 1 3 0 0 0 0 0.019 0.30 -1126 VMA21 58464 2 2 2 1 0 1 0 0 1 0 0.019 0.30 -1127 PHF7 PHD finger protein 7 265664 5 5 5 0 1 2 2 0 0 0 0.019 0.30 -1128 LYRM5 LYR motif containing 5 56960 3 3 3 0 2 1 0 0 0 0 0.019 0.30 -1129 PRSS35 protease, serine, 35 279104 8 7 8 4 4 3 1 0 0 0 0.019 0.30 -1130 ZFP2 zinc finger protein 2 homolog (mouse) 311360 5 5 4 2 1 2 1 0 1 0 0.019 0.30 -1131 ATP8B1 ATPase, class I, type 8B, member 1 852244 9 9 9 2 2 3 0 0 4 0 0.019 0.30 -1132 CDCA3 cell division cycle associated 3 185248 4 4 4 0 1 2 1 0 0 0 0.019 0.30 -1133 KLHL7 kelch-like 7 (Drosophila) 404320 7 6 7 1 0 1 5 0 1 0 0.019 0.30 -1134 MS4A1 membrane-spanning 4-domains, subfamily A, member 1 205632 4 4 4 2 1 2 0 0 1 0 0.019 0.30 -1135 ADH6 alcohol dehydrogenase 6 (class V) 261632 6 5 6 0 0 3 2 0 1 0 0.019 0.30 -1136 ACADM acyl-Coenzyme A dehydrogenase, C-4 to C-12 straight chain 297024 6 5 5 1 0 3 0 0 3 0 0.019 0.30 -1137 UMOD uromodulin (uromucoid, Tamm-Horsfall glycoprotein) 353568 7 7 7 0 2 4 0 0 1 0 0.019 0.30 -1138 KCTD20 potassium channel tetramerisation domain containing 20 288512 4 4 3 0 2 0 0 0 2 0 0.019 0.30 -1139 LPL lipoprotein lipase 325332 6 6 6 1 0 3 1 0 2 0 0.019 0.30 -1140 SLA Src-like-adaptor 176024 4 4 4 0 2 1 1 0 0 0 0.019 0.30 -1141 EMR3 egf-like module containing, mucin-like, hormone receptor-like 3 453152 8 6 8 4 1 3 1 0 3 0 0.019 0.30 -1142 FBXO39 F-box protein 39 300384 4 4 4 3 2 0 0 1 1 0 0.019 0.30 -1143 HTN3 histatin 3 38528 1 1 1 0 0 0 0 0 1 0 0.019 0.30 -1144 ELF1 E74-like factor 1 (ets domain transcription factor) 423808 8 7 8 0 3 3 1 0 1 0 0.019 0.30 -1145 OR10A3 olfactory receptor, family 10, subfamily A, member 3 212576 5 5 4 0 1 4 0 0 0 0 0.019 0.30 -1146 JAK3 Janus kinase 3 (a protein tyrosine kinase, leukocyte) 679192 9 8 9 3 2 4 0 0 3 0 0.019 0.30 -1147 DEFB112 defensin, beta 112 78400 2 2 2 1 1 0 1 0 0 0 0.019 0.30 -1148 CCT8L2 chaperonin containing TCP1, subunit 8 (theta)-like 2 374108 6 6 6 1 3 2 1 0 0 0 0.019 0.30 -1149 COL4A6 collagen, type IV, alpha 6 1178256 15 10 14 4 3 5 3 1 3 0 0.019 0.30 -1150 KRIT1 KRIT1, ankyrin repeat containing 509600 5 5 5 0 0 1 2 0 2 0 0.019 0.30 -1151 CDH26 cadherin-like 26 580832 8 8 8 3 6 1 0 0 1 0 0.019 0.30 -1152 ATXN3L ataxin 3-like 240128 5 5 5 0 2 3 0 0 0 0 0.019 0.30 -1153 OR2A12 olfactory receptor, family 2, subfamily A, member 12 209888 3 3 3 1 0 1 2 0 0 0 0.020 0.31 -1154 BTNL8 butyrophilin-like 8 196296 3 3 1 1 0 0 3 0 0 0 0.020 0.31 -1155 TSPYL5 TSPY-like 5 230580 4 4 4 1 1 0 1 0 2 0 0.020 0.31 -1156 PLK4 polo-like kinase 4 (Drosophila) 666848 7 7 7 3 0 3 2 0 2 0 0.020 0.31 -1157 FAM104B family with sequence similarity 104, member B 85344 2 2 2 0 0 2 0 0 0 0 0.020 0.31 -1158 CD2BP2 CD2 (cytoplasmic tail) binding protein 2 233604 5 5 5 0 1 2 2 0 0 0 0.020 0.31 -1159 PDE6C phosphodiesterase 6C, cGMP-specific, cone, alpha prime 594524 10 8 10 0 2 4 1 0 3 0 0.020 0.31 -1160 NFIB nuclear factor I/B 290976 6 6 6 1 3 1 1 0 1 0 0.020 0.31 -1161 CHCHD5 coiled-coil-helix-coiled-coil-helix domain containing 5 78176 3 3 3 1 0 2 0 0 1 0 0.020 0.31 -1162 FAM180A 119616 3 3 3 0 1 1 1 0 0 0 0.020 0.31 -1163 ASXL1 additional sex combs like 1 (Drosophila) 1008700 11 10 11 2 2 3 1 0 5 0 0.020 0.31 -1164 SRPK1 SFRS protein kinase 1 426064 9 8 9 1 2 4 2 0 1 0 0.020 0.31 -1165 TNRC6B trinucleotide repeat containing 6B 1168804 7 7 6 2 0 0 1 0 6 0 0.020 0.31 -1166 NCKAP1L NCK-associated protein 1-like 785792 11 10 11 1 6 1 4 0 0 0 0.020 0.31 -1167 DCX doublecortex; lissencephaly, X-linked (doublecortin) 306656 8 6 8 2 3 1 2 0 2 0 0.020 0.31 -1168 ETV5 ets variant gene 5 (ets-related molecule) 354144 6 6 6 1 1 2 1 0 2 0 0.020 0.31 -1169 HLA-DRB1 major histocompatibility complex, class II, DR beta 1 158900 4 3 4 0 0 1 0 0 1 2 0.020 0.32 -1170 OSBPL3 oxysterol binding protein-like 3 616448 8 8 8 2 1 3 1 0 3 0 0.021 0.32 -1171 IL1RN interleukin 1 receptor antagonist 141344 3 3 3 0 2 0 1 0 0 0 0.021 0.32 -1172 RAD21 RAD21 homolog (S. pombe) 436352 6 6 6 1 1 2 2 0 1 0 0.021 0.32 -1173 CHAD chondroadherin 242452 7 7 7 0 2 3 1 0 1 0 0.021 0.32 -1174 DYNC2LI1 dynein, cytoplasmic 2, light intermediate chain 1 252672 7 5 7 0 0 2 4 0 1 0 0.021 0.32 -1175 KLHL32 kelch-like 32 (Drosophila) 426272 9 8 9 0 3 1 5 0 0 0 0.021 0.32 -1176 TSFM Ts translation elongation factor, mitochondrial 218872 5 5 5 0 0 3 2 0 0 0 0.021 0.32 -1177 RG9MTD2 RNA (guanine-9-) methyltransferase domain containing 2 234752 5 4 5 2 0 2 0 1 2 0 0.021 0.32 -1178 C8orf34 chromosome 8 open reading frame 34 299264 6 5 6 2 0 2 3 0 1 0 0.021 0.32 -1179 GLIS3 GLIS family zinc finger 3 600068 11 10 11 2 4 3 3 0 1 0 0.021 0.32 -1180 ZNF658 zinc finger protein 658 652288 8 8 8 1 0 3 4 0 1 0 0.021 0.32 -1181 PTPRZ1 protein tyrosine phosphatase, receptor-type, Z polypeptide 1 1583232 17 12 17 3 1 9 5 0 2 0 0.021 0.32 -1182 GALNTL2 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 2 430724 8 8 8 2 3 3 2 0 0 0 0.021 0.32 -1183 GABRQ gamma-aminobutyric acid (GABA) receptor, theta 433440 8 7 8 1 5 1 0 0 2 0 0.021 0.32 -1184 PHTF1 putative homeodomain transcription factor 1 528864 7 6 7 2 3 1 1 0 2 0 0.021 0.32 -1185 CXorf22 chromosome X open reading frame 22 665032 11 9 11 3 4 2 5 0 0 0 0.021 0.32 -1186 AFF3 AF4/FMR2 family, member 3 803260 14 12 14 5 5 3 5 0 1 0 0.021 0.32 -1187 MAGEC3 melanoma antigen family C, 3 512488 7 7 7 2 0 4 2 0 1 0 0.021 0.32 -1188 FAM71B family with sequence similarity 71, member B 409024 10 8 10 1 4 2 3 0 1 0 0.021 0.32 -1189 ARHGAP27 Rho GTPase activating protein 27 366168 7 7 7 2 1 1 2 0 3 0 0.021 0.32 -1190 RPL22 ribosomal protein L22 85996 2 2 2 0 0 0 0 0 2 0 0.021 0.32 -1191 KLHL5 kelch-like 5 (Drosophila) 517888 11 7 9 0 4 2 2 0 3 0 0.021 0.32 -1192 LMBRD1 LMBR1 domain containing 1 377888 6 6 6 1 2 3 1 0 0 0 0.021 0.32 -1193 ST3GAL6 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 231168 7 5 7 0 1 1 2 1 2 0 0.021 0.32 -1194 PCDHA3 protocadherin alpha 3 655172 18 14 17 0 13 3 1 0 1 0 0.021 0.32 -1195 ATP11C ATPase, class VI, type 11C 802368 10 9 10 2 2 2 5 0 1 0 0.021 0.32 -1196 RDH10 retinol dehydrogenase 10 (all-trans) 169568 3 3 3 0 0 0 3 0 0 0 0.021 0.32 -1197 SLC10A7 solute carrier family 10 (sodium/bile acid cotransporter family), member 7 249984 3 3 3 0 0 1 0 0 2 0 0.021 0.32 -1198 GLP1R glucagon-like peptide 1 receptor 302640 7 6 7 1 5 1 0 0 1 0 0.021 0.32 -1199 RERGL RERG/RAS-like 142912 3 3 3 1 0 1 2 0 0 0 0.021 0.32 -1200 TTR transthyretin (prealbumin, amyloidosis type I) 103040 3 3 3 0 2 1 0 0 0 0 0.021 0.32 -1201 SEPT2 septin 2 253120 4 4 4 0 2 1 0 0 1 0 0.021 0.32 -1202 ZNF616 zinc finger protein 616 528192 12 8 12 2 0 7 4 0 1 0 0.022 0.32 -1203 RNF168 ring finger protein 168 389760 7 6 7 0 0 3 3 0 1 0 0.022 0.32 -1204 BRWD3 bromodomain and WD repeat domain containing 3 1243592 17 10 16 1 3 5 6 0 1 2 0.022 0.32 -1205 KRTAP19-2 keratin associated protein 19-2 36512 1 1 1 1 0 0 0 0 1 0 0.022 0.32 -1206 ABCD2 ATP-binding cassette, sub-family D (ALD), member 2 506912 10 8 10 1 1 4 5 0 0 0 0.022 0.32 -1207 KLHL20 kelch-like 20 (Drosophila) 419776 7 7 7 1 2 3 2 0 0 0 0.022 0.32 -1208 EIF2AK1 eukaryotic translation initiation factor 2-alpha kinase 1 411264 6 6 6 0 1 2 1 0 2 0 0.022 0.32 -1209 FAM111B family with sequence similarity 111, member B 495712 10 6 10 2 4 2 3 0 1 0 0.022 0.33 -1210 ART4 ADP-ribosyltransferase 4 (Dombrock blood group) 214368 5 5 5 0 0 3 2 0 0 0 0.022 0.33 -1211 KLC4 kinesin light chain 4 437500 7 7 7 0 4 3 0 0 0 0 0.022 0.33 -1212 CCDC81 coiled-coil domain containing 81 393120 7 7 6 1 1 5 0 0 1 0 0.022 0.33 -1213 TBL1X transducin (beta)-like 1X-linked 360944 6 5 6 1 4 0 0 0 2 0 0.022 0.33 -1214 TMEM132B transmembrane protein 132B 731976 10 10 10 0 2 4 3 1 0 0 0.022 0.33 -1215 CADM3 cell adhesion molecule 3 279328 8 7 8 4 3 1 4 0 0 0 0.022 0.33 -1216 RNF20 ring finger protein 20 672896 6 6 6 0 2 0 1 0 3 0 0.022 0.33 -1217 ZNF808 zinc finger protein 808 610176 8 8 8 2 2 4 2 0 0 0 0.022 0.33 -1218 ACYP1 acylphosphatase 1, erythrocyte (common) type 87584 2 2 2 0 0 0 1 0 1 0 0.022 0.33 -1219 ABRA actin-binding Rho activating protein 258328 5 5 5 2 4 1 0 0 0 0 0.022 0.33 -1220 NELL2 NEL-like 2 (chicken) 581728 12 8 12 4 3 6 2 0 1 0 0.022 0.33 -1221 PSG4 pregnancy specific beta-1-glycoprotein 4 287616 7 5 7 2 2 3 2 0 0 0 0.022 0.33 -1222 NAPEPLD N-acyl phosphatidylethanolamine phospholipase D 268352 5 5 5 0 2 1 1 0 1 0 0.022 0.33 -1223 MYO3A myosin IIIA 1116192 24 11 22 4 6 6 7 0 3 2 0.022 0.33 -1224 ATRNL1 attractin-like 1 902916 10 10 10 0 2 5 1 0 2 0 0.022 0.33 -1225 RHBDD1 rhomboid domain containing 1 217728 4 4 4 1 1 2 1 0 0 0 0.022 0.33 -1226 OR1K1 olfactory receptor, family 1, subfamily K, member 1 213920 5 5 5 3 3 1 1 0 0 0 0.022 0.33 -1227 CXorf58 chromosome X open reading frame 58 230944 5 5 5 1 1 2 2 0 0 0 0.022 0.33 -1228 UPB1 ureidopropionase, beta 267680 5 5 5 0 2 1 0 0 2 0 0.022 0.33 -1229 TRHDE thyrotropin-releasing hormone degrading enzyme 650608 14 10 14 0 4 5 3 0 2 0 0.022 0.33 -1230 KATNAL2 katanin p60 subunit A-like 2 326368 7 7 7 1 4 1 1 0 1 0 0.022 0.33 -1231 PDHA2 pyruvate dehydrogenase (lipoamide) alpha 2 262304 8 6 7 3 5 0 2 0 1 0 0.023 0.33 -1232 C19orf75 137536 3 3 3 0 2 1 0 0 0 0 0.023 0.33 -1233 CXCL9 chemokine (C-X-C motif) ligand 9 88256 3 3 3 0 1 1 0 0 1 0 0.023 0.33 -1234 AP3B1 adaptor-related protein complex 3, beta 1 subunit 760032 9 8 9 2 1 0 4 0 4 0 0.023 0.33 -1235 ADAMTSL3 ADAMTS-like 3 1163008 14 14 14 6 4 6 2 1 1 0 0.023 0.33 -1236 RASSF8 Ras association (RalGDS/AF-6) domain family (N-terminal) member 8 257600 4 4 4 2 2 0 2 0 0 0 0.023 0.33 -1237 CDH22 cadherin-like 22 429352 9 8 9 1 4 2 1 2 0 0 0.023 0.33 -1238 APLF 330624 5 4 5 0 2 1 0 0 2 0 0.023 0.33 -1239 KRT84 keratin 84 380396 9 7 9 1 2 2 3 2 0 0 0.023 0.33 -1240 TTC37 1087520 11 11 11 1 2 3 5 0 1 0 0.023 0.33 -1241 C9 complement component 9 386176 5 5 5 1 1 1 2 0 1 0 0.023 0.33 -1242 ZNF235 zinc finger protein 235 497084 6 5 6 0 0 2 3 0 1 0 0.023 0.33 -1243 SALL2 sal-like 2 (Drosophila) 679168 9 9 9 2 6 2 0 0 1 0 0.023 0.33 -1244 OPRK1 opioid receptor, kappa 1 237188 5 5 5 2 3 1 1 0 0 0 0.023 0.33 -1245 MAGEL2 MAGE-like 2 403564 7 7 7 1 4 2 0 0 1 0 0.023 0.33 -1246 AGXT2L1 alanine-glyoxylate aminotransferase 2-like 1 347648 7 6 7 1 1 1 5 0 0 0 0.023 0.33 -1247 SLC25A28 solute carrier family 25, member 28 197988 4 4 4 0 2 0 0 0 2 0 0.023 0.33 -1248 COBLL1 COBL-like 1 786688 11 10 10 0 0 6 4 0 1 0 0.023 0.33 -1249 ZDHHC15 zinc finger, DHHC-type containing 15 239232 5 5 5 0 2 1 2 0 0 0 0.023 0.33 -1250 ZNF578 zinc finger protein 578 399840 6 6 6 1 2 3 1 0 0 0 0.023 0.33 -1251 LSM14A LSM14A, SCD6 homolog A (S. cerevisiae) 320088 6 6 6 2 3 1 1 0 1 0 0.023 0.33 -1252 ABCC2 ATP-binding cassette, sub-family C (CFTR/MRP), member 2 1067584 14 11 14 6 4 3 5 0 2 0 0.023 0.33 -1253 LOXL2 lysyl oxidase-like 2 525600 10 9 10 2 7 1 1 0 1 0 0.023 0.33 -1254 OGFRL1 opioid growth factor receptor-like 1 257684 7 5 6 1 4 3 0 0 0 0 0.023 0.33 -1255 GK2 glycerol kinase 2 373184 6 6 6 4 2 3 1 0 0 0 0.023 0.33 -1256 OR4C46 olfactory receptor, family 4, subfamily C, member 46 209216 5 5 5 0 0 2 3 0 0 0 0.023 0.33 -1257 GABRG3 gamma-aminobutyric acid (GABA) A receptor, gamma 3 310688 5 5 5 2 2 1 1 0 1 0 0.023 0.33 -1258 SGCE sarcoglycan, epsilon 312176 4 4 4 1 1 1 0 0 2 0 0.023 0.34 -1259 GRIK4 glutamate receptor, ionotropic, kainate 4 572532 12 11 12 7 5 4 2 1 0 0 0.024 0.34 -1260 CYB5R4 cytochrome b5 reductase 4 365120 6 6 6 1 0 5 0 0 1 0 0.024 0.34 -1261 OR6M1 olfactory receptor, family 6, subfamily M, member 1 211904 4 4 4 0 2 0 2 0 0 0 0.024 0.34 -1262 SAMD4A sterile alpha motif domain containing 4A 439524 6 6 6 3 1 1 1 0 3 0 0.024 0.34 -1263 TOMM70A translocase of outer mitochondrial membrane 70 homolog A (S. cerevisiae) 370188 4 4 4 1 1 1 0 0 2 0 0.024 0.34 -1264 SSBP1 single-stranded DNA binding protein 1 105504 3 3 3 0 1 0 1 0 1 0 0.024 0.34 -1265 HGD homogentisate 1,2-dioxygenase (homogentisate oxidase) 130560 2 2 2 1 1 1 0 0 0 0 0.024 0.34 -1266 TFAP2B transcription factor AP-2 beta (activating enhancer binding protein 2 beta) 299572 9 7 9 1 3 4 1 0 1 0 0.024 0.34 -1267 CA10 carbonic anhydrase X 229152 4 4 4 0 1 1 1 0 1 0 0.024 0.34 -1268 OR52R1 olfactory receptor, family 52, subfamily R, member 1 213024 5 4 5 2 0 3 1 1 0 0 0.024 0.34 -1269 ZNF486 zinc finger protein 486 315392 4 4 4 0 0 1 1 0 2 0 0.024 0.34 -1270 FAM181A 229852 4 4 4 3 3 1 0 0 0 0 0.024 0.34 -1271 TCOF1 Treacher Collins-Franceschetti syndrome 1 980480 8 6 8 0 2 2 2 0 2 0 0.024 0.34 -1272 MS4A10 membrane-spanning 4-domains, subfamily A, member 10 186368 4 4 4 3 2 1 0 1 0 0 0.024 0.34 -1273 RAG1 recombination activating gene 1 702464 10 9 10 3 3 4 1 0 2 0 0.024 0.34 -1274 TBCA tubulin folding cofactor A 71800 2 2 2 0 0 0 0 0 2 0 0.024 0.34 -1275 MYT1 myelin transcription factor 1 748252 13 11 12 0 6 4 2 0 1 0 0.024 0.34 -1276 PSG2 pregnancy specific beta-1-glycoprotein 2 230272 4 4 4 0 3 0 0 1 0 0 0.024 0.34 -1277 CCDC28A coiled-coil domain containing 28A 190176 3 3 2 0 0 0 0 0 3 0 0.024 0.34 -1278 KRTAP27-1 keratin associated protein 27-1 140672 3 3 3 0 0 3 0 0 0 0 0.024 0.34 -1279 ANKRD50 ankyrin repeat domain 50 963648 13 12 13 3 5 2 4 0 2 0 0.024 0.34 -1280 C7orf29 chromosome 7 open reading frame 29 148148 3 3 3 0 2 1 0 0 0 0 0.024 0.34 -1281 DDX17 DEAD (Asp-Glu-Ala-Asp) box polypeptide 17 473540 6 6 6 3 1 1 2 0 2 0 0.024 0.34 -1282 C14orf126 chromosome 14 open reading frame 126 103348 3 3 3 0 0 2 1 0 0 0 0.024 0.34 -1283 ACOT4 acyl-CoA thioesterase 4 239748 6 3 2 1 0 0 0 0 0 6 0.024 0.34 -1284 GPATCH2 G patch domain containing 2 364448 5 4 5 0 0 1 1 0 3 0 0.024 0.34 -1285 FXR1 fragile X mental retardation, autosomal homolog 1 433216 5 5 5 0 1 0 1 0 3 0 0.025 0.35 -1286 TRAF3 TNF receptor-associated factor 3 390572 6 6 6 4 1 1 0 1 3 0 0.025 0.35 -1287 TTLL2 tubulin tyrosine ligase-like family, member 2 400912 8 7 8 0 4 2 2 0 0 0 0.025 0.35 -1288 SBSN suprabasin 174524 4 4 4 1 2 1 0 0 1 0 0.025 0.35 -1289 RSPH4A 487200 9 7 9 2 1 4 2 0 2 0 0.025 0.35 -1290 PRKCG protein kinase C, gamma 465344 10 10 10 5 7 1 2 0 0 0 0.025 0.35 -1291 COL9A1 collagen, type IX, alpha 1 669408 8 6 8 3 3 1 1 0 3 0 0.025 0.35 -1292 SAMD9 sterile alpha motif domain containing 9 1069376 16 10 16 5 2 8 5 0 1 0 0.025 0.35 -1293 SLC9A4 solute carrier family 9 (sodium/hydrogen exchanger), member 4 547680 8 8 8 1 3 1 1 0 3 0 0.025 0.35 -1294 RBM45 RNA binding motif protein 45 326424 6 6 5 2 0 3 1 0 2 0 0.025 0.35 -1295 TSHZ3 teashirt zinc finger homeobox 3 717108 15 10 15 11 6 8 1 0 0 0 0.025 0.35 -1296 OR10W1 olfactory receptor, family 10, subfamily W, member 1 206528 3 3 3 0 1 1 0 0 1 0 0.025 0.35 -1297 RASSF9 Ras association (RalGDS/AF-6) domain family (N-terminal) member 9 287848 5 4 5 1 1 0 1 0 3 0 0.025 0.35 -1298 APOB apolipoprotein B (including Ag(x) antigen) 3073728 40 21 38 20 14 16 6 0 2 2 0.025 0.35 -1299 AKAP9 A kinase (PRKA) anchor protein (yotiao) 9 2649004 26 18 25 5 6 9 4 0 7 0 0.025 0.35 -1300 GPR174 G protein-coupled receptor 174 225344 3 3 3 1 0 2 0 0 1 0 0.025 0.35 -1301 OR2M5 olfactory receptor, family 2, subfamily M, member 5 211232 5 5 5 2 3 1 1 0 0 0 0.025 0.35 -1302 B3GALNT1 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) 224000 4 4 3 0 3 0 0 0 1 0 0.025 0.35 -1303 ARHGDIB Rho GDP dissociation inhibitor (GDI) beta 140224 3 3 3 0 0 2 1 0 0 0 0.025 0.35 -1304 NET1 neuroepithelial cell transforming gene 1 404096 6 5 6 2 1 1 1 0 3 0 0.025 0.35 -1305 OR51B2 olfactory receptor, family 51, subfamily B, member 2 211232 4 4 4 2 1 3 0 0 0 0 0.025 0.35 -1306 OR10A6 olfactory receptor, family 10, subfamily A, member 6 212576 8 5 8 1 1 4 2 0 1 0 0.025 0.35 -1307 ANGPT1 angiopoietin 1 343392 5 5 5 1 3 2 0 0 0 0 0.025 0.35 -1308 FBXO18 F-box protein, helicase, 18 755468 11 10 11 4 3 3 3 0 2 0 0.025 0.35 -1309 TBL1XR1 transducin (beta)-like 1 X-linked receptor 1 336728 6 6 6 1 1 2 2 0 1 0 0.025 0.35 -1310 TEX13A testis expressed 13A 275816 5 5 5 0 1 2 1 0 1 0 0.025 0.35 -1311 LSM1 LSM1 homolog, U6 small nuclear RNA associated (S. cerevisiae) 93632 3 3 3 0 1 1 1 0 0 0 0.025 0.35 -1312 DYSF dysferlin, limb girdle muscular dystrophy 2B (autosomal recessive) 1415636 20 17 20 3 11 6 1 0 2 0 0.025 0.35 -1313 DCP2 DCP2 decapping enzyme homolog (S. cerevisiae) 292768 5 5 5 1 1 1 2 0 1 0 0.026 0.35 -1314 CEP63 centrosomal protein 63kDa 485632 7 7 7 0 2 3 2 0 0 0 0.026 0.35 -1315 SLC25A14 solute carrier family 25 (mitochondrial carrier, brain), member 14 228032 4 4 4 3 1 1 1 0 1 0 0.026 0.35 -1316 ZC4H2 157920 3 3 3 0 1 1 0 0 1 0 0.026 0.35 -1317 FBN2 fibrillin 2 (congenital contractural arachnodactyly) 1984164 23 19 23 11 13 8 1 0 1 0 0.026 0.35 -1318 OR10AG1 olfactory receptor, family 10, subfamily AG, member 1 203840 4 4 4 2 1 3 0 0 0 0 0.026 0.35 -1319 STXBP4 syntaxin binding protein 4 386624 5 5 5 2 2 2 1 0 0 0 0.026 0.35 -1320 DNAJC24 104384 3 3 2 0 2 0 0 1 0 0 0.026 0.35 -1321 EPYC epiphycan 222432 5 4 5 0 2 1 1 1 0 0 0.026 0.35 -1322 CIZ1 CDKN1A interacting zinc finger protein 1 575080 8 8 7 0 3 2 2 0 1 0 0.026 0.35 -1323 ZMAT4 zinc finger, matrin type 4 145520 4 4 4 1 2 1 0 0 1 0 0.026 0.35 -1324 C1orf130 chromosome 1 open reading frame 130 71904 2 2 2 0 1 0 1 0 0 0 0.026 0.35 -1325 SMAP2 stromal membrane-associated GTPase-activating protein 2 295880 5 5 5 2 1 2 0 0 2 0 0.026 0.35 -1326 ADNP activity-dependent neuroprotector homeobox 743904 9 7 9 4 0 3 4 0 2 0 0.026 0.35 -1327 ARHGAP28 Rho GTPase activating protein 28 430080 8 7 7 2 1 1 5 0 1 0 0.026 0.35 -1328 CRTAM cytotoxic and regulatory T cell molecule 273728 5 5 5 0 1 1 2 0 1 0 0.026 0.35 -1329 PCDHA2 protocadherin alpha 2 643580 15 12 14 1 12 2 0 0 1 0 0.026 0.35 -1330 CLC Charcot-Leyden crystal protein 99680 3 3 3 0 0 2 0 0 1 0 0.026 0.35 -1331 ZMAT1 zinc finger, matrin type 1 406784 6 5 6 0 0 3 3 0 0 0 0.026 0.35 -1332 ST6GAL2 ST6 beta-galactosamide alpha-2,6-sialyltranferase 2 311484 8 7 8 0 5 2 1 0 0 0 0.026 0.35 -1333 TMEM42 transmembrane protein 42 68964 2 2 2 0 1 1 0 0 0 0 0.026 0.35 -1334 SIGLEC6 sialic acid binding Ig-like lectin 6 309344 5 5 5 2 3 1 1 0 0 0 0.026 0.35 -1335 C18orf19 chromosome 18 open reading frame 19 186144 4 4 4 1 2 0 1 0 1 0 0.026 0.35 -1336 DBC1 deleted in bladder cancer 1 515480 10 9 10 3 5 2 2 0 1 0 0.026 0.35 -1337 XPR1 xenotropic and polytropic retrovirus receptor 481824 11 7 11 4 5 2 1 0 3 0 0.026 0.35 -1338 EXOSC9 exosome component 9 306432 5 5 5 1 0 4 1 0 0 0 0.026 0.35 -1339 ZNF167 zinc finger protein 167 501912 8 7 7 4 2 3 1 0 2 0 0.026 0.35 -1340 SLC35E1 solute carrier family 35, member E1 186144 7 5 7 0 6 0 0 1 0 0 0.026 0.36 -1341 KIAA0562 KIAA0562 628168 11 8 10 3 3 4 0 0 2 2 0.027 0.36 -1342 HTR3B 5-hydroxytryptamine (serotonin) receptor 3B 305088 6 6 5 1 4 2 0 0 0 0 0.027 0.36 -1343 WDSUB1 WD repeat, sterile alpha motif and U-box domain containing 1 329504 7 5 7 0 1 2 3 0 1 0 0.027 0.36 -1344 RBL2 retinoblastoma-like 2 (p130) 732536 8 8 8 0 2 2 2 0 2 0 0.027 0.36 -1345 RNF219 ring finger protein 219 493920 7 5 7 2 1 3 1 0 2 0 0.027 0.36 -1346 PLA2G4C phospholipase A2, group IVC (cytosolic, calcium-independent) 381696 8 8 8 4 4 3 1 0 0 0 0.027 0.36 -1347 TRAF3IP3 TRAF3 interacting protein 3 373184 6 6 6 1 1 2 2 0 1 0 0.027 0.36 -1348 LEPR leptin receptor 804608 9 8 9 4 0 5 2 0 2 0 0.027 0.36 -1349 FKBPL FK506 binding protein like 234836 6 5 6 0 3 0 0 1 2 0 0.027 0.36 -1350 PNPT1 polyribonucleotide nucleotidyltransferase 1 551936 10 7 10 0 1 4 4 0 1 0 0.027 0.36 -1351 TECRL 255360 5 5 5 0 0 2 3 0 0 0 0.027 0.36 -1352 NDUFS1 NADH dehydrogenase (ubiquinone) Fe-S protein 1, 75kDa (NADH-coenzyme Q reductase) 505344 6 6 6 2 1 3 1 0 1 0 0.027 0.36 -1353 GABRA3 gamma-aminobutyric acid (GABA) A receptor, alpha 3 339360 5 5 5 0 1 3 0 0 1 0 0.027 0.36 -1354 HERC3 hect domain and RLD 3 727776 9 8 9 1 1 1 5 0 0 2 0.027 0.36 -1355 BNIP3L BCL2/adenovirus E1B 19kDa interacting protein 3-like 146912 3 3 3 0 0 2 1 0 0 0 0.027 0.36 -1356 VPS13B vacuolar protein sorting 13 homolog B (yeast) 2774864 29 20 29 7 5 11 12 0 1 0 0.027 0.36 -1357 FAM47B family with sequence similarity 47, member B 432968 6 6 6 7 5 1 0 0 0 0 0.027 0.36 -1358 PGA5 pepsinogen 5, group I (pepsinogen A) 118048 3 3 3 0 2 0 1 0 0 0 0.027 0.36 -1359 ASTE1 asteroid homolog 1 (Drosophila) 460544 8 5 8 1 1 1 2 0 2 2 0.027 0.36 -1360 CMAS cytidine monophosphate N-acetylneuraminic acid synthetase 277444 8 6 7 1 2 1 4 0 1 0 0.027 0.36 -1361 IKZF2 IKAROS family zinc finger 2 (Helios) 360416 6 5 6 1 0 1 2 0 3 0 0.027 0.36 -1362 ROCK1 Rho-associated, coiled-coil containing protein kinase 1 940128 15 10 15 2 4 6 4 0 1 0 0.027 0.36 -1363 BTBD7 BTB (POZ) domain containing 7 787136 9 7 8 1 2 2 0 0 5 0 0.027 0.36 -1364 RERG RAS-like, estrogen-regulated, growth inhibitor 137984 3 3 3 0 2 0 1 0 0 0 0.027 0.36 -1365 RIT2 Ras-like without CAAX 2 150976 2 2 2 0 0 0 1 0 1 0 0.027 0.36 -1366 AKAP3 A kinase (PRKA) anchor protein 3 576576 11 7 11 0 2 3 2 0 2 2 0.027 0.36 -1367 NTSR2 neurotensin receptor 2 162484 5 5 5 2 3 1 1 0 0 0 0.027 0.36 -1368 DAO D-amino-acid oxidase 242816 6 5 6 0 4 1 0 0 1 0 0.027 0.36 -1369 L1TD1 LINE-1 type transposase domain containing 1 430864 8 6 8 0 1 4 1 0 2 0 0.027 0.36 -1370 LMO7 LIM domain 7 1162560 19 13 19 1 5 8 4 1 1 0 0.027 0.36 -1371 BAALC brain and acute leukemia, cytoplasmic 64064 3 2 3 0 1 1 1 0 0 0 0.027 0.36 -1372 CD84 CD84 molecule 229600 3 3 3 2 0 0 0 1 2 0 0.028 0.36 -1373 PPP4R4 620788 13 8 13 2 2 3 4 0 4 0 0.028 0.36 -1374 OTC ornithine carbamoyltransferase 247520 5 5 5 1 1 3 1 0 0 0 0.028 0.36 -1375 GMFB glia maturation factor, beta 101780 3 3 3 0 0 2 0 1 0 0 0.028 0.36 -1376 EFNB3 ephrin-B3 219952 3 3 3 0 2 0 0 0 1 0 0.028 0.36 -1377 NPAS4 neuronal PAS domain protein 4 518868 9 9 9 2 3 5 1 0 0 0 0.028 0.36 -1378 ENPEP glutamyl aminopeptidase (aminopeptidase A) 661612 9 8 9 3 1 4 2 0 2 0 0.028 0.36 -1379 CXCL17 chemokine (C-X-C motif) ligand 17 84224 2 2 2 0 0 0 2 0 0 0 0.028 0.36 -1380 DIAPH2 diaphanous homolog 2 (Drosophila) 760248 12 10 12 1 6 5 1 0 0 0 0.028 0.36 -1381 GRID1 glutamate receptor, ionotropic, delta 1 668920 16 11 16 5 7 7 2 0 0 0 0.028 0.36 -1382 SIP1 survival of motor neuron protein interacting protein 1 197792 3 3 3 0 0 0 0 0 3 0 0.028 0.36 -1383 SPAG16 sperm associated antigen 16 436276 9 7 9 6 0 3 3 0 1 2 0.028 0.36 -1384 MTPAP 399840 7 6 7 1 1 1 3 0 2 0 0.028 0.36 -1385 GKN1 gastrokine 1 139776 3 3 3 1 1 1 1 0 0 0 0.028 0.36 -1386 CNTN4 contactin 4 709856 11 10 11 6 3 3 4 0 1 0 0.028 0.36 -1387 TATDN2 TatD DNase domain containing 2 508956 9 8 9 0 2 4 1 0 2 0 0.028 0.36 -1388 WT1 Wilms tumor 1 246176 6 6 6 3 3 1 2 0 0 0 0.028 0.36 -1389 HIST1H3D histone cluster 1, H3d 92960 3 3 3 0 0 2 1 0 0 0 0.028 0.37 -1390 FAM113B family with sequence similarity 113, member B 288984 5 5 5 2 2 0 0 1 2 0 0.028 0.37 -1391 BARD1 BRCA1 associated RING domain 1 516124 7 7 7 0 0 4 1 0 2 0 0.028 0.37 -1392 ESM1 endothelial cell-specific molecule 1 127008 3 3 3 1 2 0 1 0 0 0 0.028 0.37 -1393 RTN4 reticulon 4 729092 10 7 10 1 1 3 3 0 3 0 0.028 0.37 -1394 ADAM32 ADAM metallopeptidase domain 32 502728 8 7 7 0 4 2 1 0 1 0 0.028 0.37 -1395 GOLIM4 golgi integral membrane protein 4 482216 8 7 7 0 1 4 0 0 3 0 0.028 0.37 -1396 TAS2R20 taste receptor, type 2, member 20 209216 4 4 4 0 1 2 1 0 0 0 0.028 0.37 -1397 ZNF83 zinc finger protein 83 348320 7 7 7 1 3 3 1 0 0 0 0.028 0.37 -1398 CREM cAMP responsive element modulator 289408 4 4 4 0 2 2 0 0 0 0 0.028 0.37 -1399 CAV3 caveolin 3 103936 3 3 3 1 2 1 0 0 0 0 0.028 0.37 -1400 DSPP dentin sialophosphoprotein 576428 7 6 7 1 1 4 1 0 1 0 0.029 0.37 -1401 SMARCAL1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a-like 1 655552 9 9 9 1 2 7 0 0 0 0 0.029 0.37 -1402 RAB3C RAB3C, member RAS oncogene family 157696 5 4 5 2 3 1 1 0 0 0 0.029 0.37 -1403 MBD6 methyl-CpG binding domain protein 6 652288 7 6 6 1 2 2 0 0 3 0 0.029 0.37 -1404 FHOD3 formin homology 2 domain containing 3 943320 19 12 17 5 10 4 2 0 3 0 0.029 0.37 -1405 C20orf103 chromosome 20 open reading frame 103 194208 5 5 5 0 3 1 1 0 0 0 0.029 0.37 -1406 NKAPL NFKB activating protein-like 268688 8 5 8 0 6 0 2 0 0 0 0.029 0.37 -1407 SEPT10 septin 10 308000 5 4 4 0 0 0 1 0 4 0 0.029 0.37 -1408 ANKFN1 ankyrin-repeat and fibronectin type III domain containing 1 528640 8 7 8 2 1 5 1 0 1 0 0.029 0.37 -1409 EGR2 early growth response 2 (Krox-20 homolog, Drosophila) 310016 8 8 7 2 5 2 1 0 0 0 0.029 0.37 -1410 PAM peptidylglycine alpha-amidating monooxygenase 677600 9 9 9 2 2 5 2 0 0 0 0.029 0.37 -1411 CCDC112 coiled-coil domain containing 112 349636 5 5 5 3 0 3 0 0 2 0 0.029 0.37 -1412 SLC30A9 solute carrier family 30 (zinc transporter), member 9 390516 7 6 6 2 3 1 0 0 1 2 0.029 0.37 -1413 ROS1 c-ros oncogene 1 , receptor tyrosine kinase 1616384 22 13 22 5 1 10 8 0 3 0 0.029 0.37 -1414 KIRREL3 kin of IRRE like 3 (Drosophila) 477544 10 9 10 0 8 0 1 0 1 0 0.029 0.37 -1415 CRMP1 collapsin response mediator protein 1 387968 8 8 8 3 6 1 0 0 1 0 0.029 0.37 -1416 FXYD6 FXYD domain containing ion transport regulator 6 61456 2 2 2 1 0 2 0 0 0 0 0.029 0.37 -1417 CTCFL CCCTC-binding factor (zinc finger protein)-like 445928 8 8 7 1 5 1 1 0 1 0 0.029 0.37 -1418 HPSE2 heparanase 2 395056 12 8 10 2 4 3 4 0 1 0 0.029 0.37 -1419 PTH2 parathyroid hormone 2 52876 2 2 2 0 0 0 1 0 1 0 0.029 0.37 -1420 EFCAB2 EF-hand calcium binding domain 2 109312 2 2 2 0 0 1 0 0 1 0 0.029 0.37 -1421 C22orf43 164496 3 3 3 0 0 0 2 0 1 0 0.029 0.37 -1422 B4GALT3 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 3 270144 7 7 7 0 4 2 1 0 0 0 0.029 0.37 -1423 SEC63 SEC63 homolog (S. cerevisiae) 520824 7 6 7 0 5 0 1 0 1 0 0.030 0.37 -1424 NEUROD4 neurogenic differentiation 4 224000 5 4 5 2 1 2 1 0 1 0 0.030 0.37 -1425 PNMAL1 PNMA-like 1 299712 5 5 5 3 0 3 1 0 1 0 0.030 0.37 -1426 RSPO3 R-spondin 3 homolog (Xenopus laevis) 185896 3 3 3 0 0 1 1 0 1 0 0.030 0.37 -1427 FARS2 phenylalanyl-tRNA synthetase 2, mitochondrial 309120 5 5 5 1 1 2 1 0 1 0 0.030 0.38 -1428 LGALS8 lectin, galactoside-binding, soluble, 8 (galectin 8) 250880 5 5 5 0 2 1 1 0 1 0 0.030 0.38 -1429 MAPK9 mitogen-activated protein kinase 9 322784 5 5 5 1 0 1 1 0 3 0 0.030 0.38 -1430 SEMA5B sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5B 691424 11 11 11 2 6 3 2 0 0 0 0.030 0.38 -1431 ZNF32 zinc finger protein 32 185920 5 5 4 0 2 2 0 0 1 0 0.030 0.38 -1432 SLC25A24 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 24 349744 7 6 7 1 1 2 2 1 1 0 0.030 0.38 -1433 VMO1 vitelline membrane outer layer 1 homolog (chicken) 141344 3 3 3 0 0 2 0 0 1 0 0.030 0.38 -1434 DENND4A DENN/MADD domain containing 4A 1248344 16 11 15 1 5 5 1 0 3 2 0.030 0.38 -1435 CLK1 CDC-like kinase 1 336672 6 6 6 0 1 1 2 0 2 0 0.030 0.38 -1436 UGT8 UDP glycosyltransferase 8 (UDP-galactose ceramide galactosyltransferase) 368704 8 7 6 1 4 3 1 0 0 0 0.030 0.38 -1437 ITIH1 inter-alpha (globulin) inhibitor H1 624280 13 11 13 3 5 6 1 0 1 0 0.030 0.38 -1438 ARFGEF1 ADP-ribosylation factor guanine nucleotide-exchange factor 1(brefeldin A-inhibited) 1278008 15 10 14 1 4 4 1 0 6 0 0.030 0.38 -1439 NR2F2 nuclear receptor subfamily 2, group F, member 2 225580 5 5 5 1 3 0 1 0 1 0 0.030 0.38 -1440 SPHKAP SPHK1 interactor, AKAP domain containing 1147388 17 13 17 8 5 5 6 0 1 0 0.030 0.38 -1441 VAV3 vav 3 guanine nucleotide exchange factor 598472 12 9 11 2 5 5 2 0 0 0 0.030 0.38 -1442 SAGE1 sarcoma antigen 1 625184 10 10 9 0 5 3 1 0 1 0 0.030 0.38 -1443 TGM4 transglutaminase 4 (prostate) 472864 7 7 7 2 3 2 2 0 0 0 0.030 0.38 -1444 RANBP3L RAN binding protein 3-like 325696 5 4 5 0 1 2 1 0 1 0 0.030 0.38 -1445 GNA14 guanine nucleotide binding protein (G protein), alpha 14 245504 6 6 6 1 4 1 1 0 0 0 0.030 0.38 -1446 SRGAP1 SLIT-ROBO Rho GTPase activating protein 1 749504 9 9 8 2 4 1 0 0 4 0 0.031 0.38 -1447 NAA25 666928 9 8 8 0 2 4 0 0 3 0 0.031 0.38 -1448 CNOT7 CCR4-NOT transcription complex, subunit 7 198912 3 3 3 0 1 0 0 0 2 0 0.031 0.38 -1449 KLHL1 kelch-like 1 (Drosophila) 511252 7 5 7 4 1 2 1 0 3 0 0.031 0.38 -1450 NOC3L nucleolar complex associated 3 homolog (S. cerevisiae) 557088 15 8 15 3 3 7 3 0 2 0 0.031 0.38 -1451 TFG TRK-fused gene 275744 6 5 5 0 2 2 0 0 2 0 0.031 0.38 -1452 CYP2C9 cytochrome P450, family 2, subfamily C, polypeptide 9 338016 7 5 7 1 1 2 3 0 1 0 0.031 0.38 -1453 OR56A1 olfactory receptor, family 56, subfamily A, member 1 215264 4 4 4 2 2 2 0 0 0 0 0.031 0.38 -1454 CHODL chondrolectin 170912 3 3 3 0 0 2 1 0 0 0 0.031 0.38 -1455 PPFIA2 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 2 850088 12 8 12 1 3 3 2 0 4 0 0.031 0.38 -1456 ZWINT ZW10 interactor 193984 4 4 4 0 1 2 1 0 0 0 0.031 0.38 -1457 IYD iodotyrosine deiodinase 199360 4 4 4 0 2 1 1 0 0 0 0.031 0.38 -1458 CSMD2 CUB and Sushi multiple domains 2 2389712 30 24 30 13 16 7 5 0 2 0 0.031 0.38 -1459 ARG2 arginase, type II 245728 5 5 5 0 0 2 1 0 2 0 0.031 0.38 -1460 CRHBP corticotropin releasing hormone binding protein 223056 4 4 3 0 0 3 1 0 0 0 0.031 0.38 -1461 PTPRK protein tyrosine phosphatase, receptor type, K 999072 12 10 12 2 3 3 4 0 2 0 0.031 0.38 -1462 EMB embigin homolog (mouse) 202496 3 3 3 1 0 1 2 0 0 0 0.031 0.38 -1463 NPHS1 nephrosis 1, congenital, Finnish type (nephrin) 826928 14 11 14 2 5 4 3 0 2 0 0.031 0.38 -1464 PDYN prodynorphin 169120 4 4 4 1 2 2 0 0 0 0 0.031 0.39 -1465 POLDIP3 polymerase (DNA-directed), delta interacting protein 3 291648 6 6 6 0 2 2 1 0 1 0 0.031 0.39 -1466 ZNF426 zinc finger protein 426 378336 6 6 6 1 3 0 2 0 1 0 0.031 0.39 -1467 LRRC52 leucine rich repeat containing 52 212800 4 4 4 0 1 2 1 0 0 0 0.031 0.39 -1468 RELN reelin 2377396 33 21 32 9 8 13 12 0 0 0 0.032 0.39 -1469 C8orf80 chromosome 8 open reading frame 80 484936 10 8 10 1 4 4 2 0 0 0 0.032 0.39 -1470 TPM2 tropomyosin 2 (beta) 232504 6 5 6 1 4 1 0 0 1 0 0.032 0.39 -1471 SLC1A3 solute carrier family 1 (glial high affinity glutamate transporter), member 3 375200 7 6 7 1 2 1 2 0 2 0 0.032 0.39 -1472 OR5H1 olfactory receptor, family 5, subfamily H, member 1 211904 3 3 3 0 0 1 1 0 1 0 0.032 0.39 -1473 NAT9 N-acetyltransferase 9 145152 3 3 3 0 1 1 0 0 1 0 0.032 0.39 -1474 OR8D2 olfactory receptor, family 8, subfamily D, member 2 210560 3 3 3 0 1 1 0 0 1 0 0.032 0.39 -1475 C1orf113 chromosome 1 open reading frame 113 242312 5 4 5 2 1 2 1 0 1 0 0.032 0.39 -1476 PGAP1 post-GPI attachment to proteins 1 644448 8 7 8 1 1 1 3 0 3 0 0.032 0.39 -1477 PI4KA phosphatidylinositol 4-kinase, catalytic, alpha 1383152 15 14 15 4 6 3 3 0 3 0 0.032 0.39 -1478 CREB3 cAMP responsive element binding protein 3 258048 3 3 3 0 0 0 0 1 2 0 0.032 0.39 -1479 IQCF3 IQ motif containing F3 106848 3 3 3 0 2 0 1 0 0 0 0.032 0.39 -1480 RNF148 ring finger protein 148 206528 6 5 6 0 1 4 1 0 0 0 0.032 0.39 -1481 SENP5 SUMO1/sentrin specific peptidase 5 516096 8 8 8 2 2 4 1 0 1 0 0.032 0.39 -1482 PROCA1 230048 5 5 5 2 2 2 1 0 0 0 0.032 0.39 -1483 ANKS1B ankyrin repeat and sterile alpha motif domain containing 1B 927136 12 10 12 2 3 3 3 0 3 0 0.032 0.39 -1484 HS3ST4 heparan sulfate (glucosamine) 3-O-sulfotransferase 4 179144 5 5 5 0 1 3 1 0 0 0 0.032 0.39 -1485 TIGIT 159384 4 4 4 0 1 2 1 0 0 0 0.032 0.39 -1486 DGKD diacylglycerol kinase, delta 130kDa 811400 12 11 12 2 4 4 2 0 2 0 0.032 0.39 -1487 MAPKBP1 mitogen-activated protein kinase binding protein 1 1042748 11 10 11 3 5 1 1 0 4 0 0.032 0.39 -1488 MC5R melanocortin 5 receptor 218876 7 6 7 0 2 4 1 0 0 0 0.032 0.39 -1489 ZNF34 zinc finger protein 34 360336 4 4 4 0 0 0 2 0 2 0 0.032 0.39 -1490 DPYS dihydropyrimidinase 297472 7 6 7 0 0 4 3 0 0 0 0.032 0.39 -1491 TPX2 TPX2, microtubule-associated, homolog (Xenopus laevis) 516992 8 6 8 1 0 2 3 0 3 0 0.032 0.39 -1492 SNX2 sorting nexin 2 347648 5 5 5 1 2 1 1 0 1 0 0.032 0.39 -1493 NAB2 NGFI-A binding protein 2 (EGR1 binding protein 2) 303640 5 5 5 2 2 1 1 0 1 0 0.032 0.39 -1494 OR5V1 olfactory receptor, family 5, subfamily V, member 1 217280 3 3 3 0 0 1 0 0 2 0 0.032 0.39 -1495 TAPBP TAP binding protein (tapasin) 305424 5 5 4 0 0 1 2 0 2 0 0.032 0.39 -1496 DAD1 defender against cell death 1 78400 2 2 2 0 0 1 0 0 1 0 0.032 0.39 -1497 OR4M2 olfactory receptor, family 4, subfamily M, member 2 211904 5 5 5 1 0 3 2 0 0 0 0.032 0.39 -1498 SNAP29 synaptosomal-associated protein, 29kDa 156492 3 3 3 2 0 1 0 0 2 0 0.033 0.39 -1499 PPM1L protein phosphatase 1 (formerly 2C)-like 246176 4 4 3 1 0 2 0 0 2 0 0.033 0.39 -1500 LEKR1 leucine, glutamate and lysine rich 1 267456 5 5 5 0 1 2 0 0 2 0 0.033 0.39 -1501 PARK2 Parkinson disease (autosomal recessive, juvenile) 2, parkin 322420 6 6 6 1 1 3 2 0 0 0 0.033 0.39 -1502 C7orf25 chromosome 7 open reading frame 25 286720 5 5 5 2 0 3 1 0 1 0 0.033 0.39 -1503 ALDOB aldolase B, fructose-bisphosphate 252448 5 5 5 1 1 4 0 0 0 0 0.033 0.39 -1504 LRRC18 leucine rich repeat containing 18 177856 4 4 3 1 2 1 1 0 0 0 0.033 0.40 -1505 OR5A2 olfactory receptor, family 5, subfamily A, member 2 219296 3 3 3 0 0 1 2 0 0 0 0.033 0.40 -1506 SERPINE2 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2 277536 5 5 5 2 0 3 1 0 1 0 0.033 0.40 -1507 DSTN destrin (actin depolymerizing factor) 113568 4 3 4 0 1 2 0 0 1 0 0.033 0.40 -1508 DNAH2 dynein, axonemal, heavy chain 2 3045192 42 26 42 11 17 15 7 0 3 0 0.033 0.40 -1509 SECISBP2L 719128 11 8 11 1 3 5 2 1 0 0 0.033 0.40 -1510 BEX5 BEX family member 5 76160 2 2 2 0 0 1 1 0 0 0 0.033 0.40 -1511 ICA1 islet cell autoantigen 1, 69kDa 336896 4 4 2 2 0 1 0 0 3 0 0.033 0.40 -1512 C6orf174 chromosome 6 open reading frame 174 485604 12 11 12 8 6 3 3 0 0 0 0.033 0.40 -1513 SEMA3E sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3E 536704 9 7 9 3 4 2 0 1 2 0 0.033 0.40 -1514 SOD2 superoxide dismutase 2, mitochondrial 150664 4 4 4 1 1 2 1 0 0 0 0.033 0.40 -1515 CD163 CD163 molecule 791840 13 10 13 1 3 8 1 1 0 0 0.033 0.40 -1516 FCAR Fc fragment of IgA, receptor for 200256 3 3 3 0 1 0 0 0 2 0 0.033 0.40 -1517 CCL18 chemokine (C-C motif) ligand 18 (pulmonary and activation-regulated) 63168 2 2 2 0 1 1 0 0 0 0 0.033 0.40 -1518 ZNF382 zinc finger protein 382 372960 8 6 8 4 3 4 0 0 1 0 0.033 0.40 -1519 ENAM enamelin 650272 9 9 8 3 4 4 1 0 0 0 0.033 0.40 -1520 UQCRB ubiquinol-cytochrome c reductase binding protein 78848 2 2 2 1 0 0 1 0 1 0 0.033 0.40 -1521 TCF7 transcription factor 7 (T-cell specific, HMG-box) 241780 6 5 6 1 2 3 1 0 0 0 0.034 0.40 -1522 GPR31 G protein-coupled receptor 31 215800 3 3 3 1 1 1 0 0 1 0 0.034 0.40 -1523 IL20 interleukin 20 123424 3 3 3 0 2 0 0 0 1 0 0.034 0.40 -1524 ARHGAP36 378112 7 7 6 1 6 1 0 0 0 0 0.034 0.40 -1525 RGS2 regulator of G-protein signaling 2, 24kDa 146944 3 3 3 0 0 1 0 0 2 0 0.034 0.40 -1526 TNPO1 transportin 1 625632 8 7 8 1 1 3 2 0 2 0 0.034 0.40 -1527 MYOZ2 myozenin 2 182560 6 5 5 0 3 3 0 0 0 0 0.034 0.40 -1528 DPF2 D4, zinc and double PHD fingers family 2 273280 5 4 5 2 0 1 3 1 0 0 0.034 0.40 -1529 ZC3H12C zinc finger CCCH-type containing 12C 591920 10 9 9 1 5 0 3 0 2 0 0.034 0.40 -1530 APBB1IP amyloid beta (A4) precursor protein-binding, family B, member 1 interacting protein 376684 5 5 5 2 2 2 1 0 0 0 0.034 0.40 -1531 PRKG1 protein kinase, cGMP-dependent, type I 501744 9 7 9 2 0 5 4 0 0 0 0.034 0.40 -1532 PSMB8 proteasome (prosome, macropain) subunit, beta type, 8 (large multifunctional peptidase 7) 168392 3 3 3 0 0 2 0 1 0 0 0.034 0.40 -1533 OTP orthopedia homeobox 123568 3 3 3 2 1 1 0 0 1 0 0.034 0.40 -1534 TXNL4B thioredoxin-like 4B 103488 2 2 2 0 0 0 1 0 1 0 0.034 0.40 -1535 PRKD3 protein kinase D3 614880 8 8 8 0 2 3 3 0 0 0 0.034 0.40 -1536 TFPI2 tissue factor pathway inhibitor 2 163072 4 4 4 1 1 2 1 0 0 0 0.034 0.40 -1537 FAM105A family with sequence similarity 105, member A 231840 3 3 3 0 0 0 2 0 1 0 0.034 0.40 -1538 LSM3 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) 72800 2 2 1 0 0 0 0 0 2 0 0.034 0.40 -1539 IL26 interleukin 26 120064 3 3 3 0 1 1 1 0 0 0 0.034 0.40 -1540 IGDCC3 522008 7 7 7 0 2 1 2 0 2 0 0.034 0.40 -1541 OR10J1 olfactory receptor, family 10, subfamily J, member 1 216608 5 4 5 0 1 1 3 0 0 0 0.034 0.40 -1542 FOLR3 folate receptor 3 (gamma) 167524 3 3 3 0 1 0 0 0 2 0 0.034 0.40 -1543 OR7A10 olfactory receptor, family 7, subfamily A, member 10 209216 3 3 3 1 0 2 0 0 1 0 0.034 0.40 -1544 RAD54B RAD54 homolog B (S. cerevisiae) 624736 8 7 8 2 2 1 3 0 2 0 0.034 0.40 -1545 ZBBX zinc finger, B-box domain containing 554400 7 7 6 2 0 4 3 0 0 0 0.034 0.40 -1546 ZNF91 zinc finger protein 91 804608 11 8 11 1 1 5 4 0 1 0 0.034 0.40 -1547 JRKL jerky homolog-like (mouse) 310312 5 5 5 0 0 2 2 0 1 0 0.034 0.40 -1548 C12orf59 chromosome 12 open reading frame 59 113792 3 3 3 1 1 1 1 0 0 0 0.034 0.40 -1549 MSN moesin 386192 6 6 6 0 3 2 0 0 1 0 0.034 0.40 -1550 HLA-B major histocompatibility complex, class I, B 193864 5 3 3 0 0 0 0 0 1 4 0.035 0.40 -1551 WDR69 WD repeat domain 69 291200 7 5 7 2 2 4 0 0 1 0 0.035 0.40 -1552 CORO2B coronin, actin binding protein, 2B 329728 8 8 8 4 5 3 0 0 0 0 0.035 0.40 -1553 CENPA centromere protein A 75040 2 2 2 1 0 0 0 0 2 0 0.035 0.40 -1554 MCC mutated in colorectal cancers 697900 13 11 13 4 6 5 2 0 0 0 0.035 0.40 -1555 OR10J5 olfactory receptor, family 10, subfamily J, member 5 209216 3 3 3 1 0 1 1 0 1 0 0.035 0.40 -1556 MYOZ1 myozenin 1 206080 5 5 5 0 1 4 0 0 0 0 0.035 0.40 -1557 MAN1C1 mannosidase, alpha, class 1C, member 1 380408 7 7 7 1 4 2 0 0 1 0 0.035 0.40 -1558 PIK3CG phosphoinositide-3-kinase, catalytic, gamma polypeptide 733040 14 13 14 2 6 6 2 0 0 0 0.035 0.40 -1559 ADSL adenylosuccinate lyase 336196 7 7 7 1 4 3 0 0 0 0 0.035 0.40 -1560 CCR8 chemokine (C-C motif) receptor 8 240128 4 4 4 2 0 2 2 0 0 0 0.035 0.40 -1561 FAM127B family with sequence similarity 127, member B 77252 3 3 3 0 1 1 1 0 0 0 0.035 0.40 -1562 PPP3CB protein phosphatase 3 (formerly 2B), catalytic subunit, beta isoform 350980 5 5 5 2 2 0 1 0 2 0 0.035 0.40 -1563 ANK1 ankyrin 1, erythrocytic 1393636 19 18 19 8 12 3 3 0 1 0 0.035 0.41 -1564 LONRF2 LON peptidase N-terminal domain and ring finger 2 383752 7 7 7 1 2 3 1 0 1 0 0.035 0.41 -1565 MS4A14 membrane-spanning 4-domains, subfamily A, member 14 461272 9 7 9 0 2 6 1 0 0 0 0.035 0.41 -1566 MCM10 minichromosome maintenance complex component 10 605696 8 8 8 2 3 5 0 0 0 0 0.035 0.41 -1567 ING1 inhibitor of growth family, member 1 292124 6 6 5 0 3 0 1 0 2 0 0.035 0.41 -1568 NDUFS6 NADH dehydrogenase (ubiquinone) Fe-S protein 6, 13kDa (NADH-coenzyme Q reductase) 72800 2 2 2 0 1 0 1 0 0 0 0.035 0.41 -1569 ITGBL1 integrin, beta-like 1 (with EGF-like repeat domains) 311680 5 5 5 1 1 2 2 0 0 0 0.035 0.41 -1570 TBC1D10C TBC1 domain family, member 10C 187852 3 3 2 0 0 0 0 0 3 0 0.036 0.41 -1571 TIMM17B translocase of inner mitochondrial membrane 17 homolog B (yeast) 113336 2 2 2 0 0 0 0 0 2 0 0.036 0.41 -1572 TCERG1L transcription elongation regulator 1-like 241800 6 4 6 2 2 1 1 0 2 0 0.036 0.41 -1573 CCDC15 coiled-coil domain containing 15 632104 5 5 3 1 0 1 0 0 4 0 0.036 0.41 -1574 ATP6V1E2 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E2 153440 3 3 3 1 1 1 1 0 0 0 0.036 0.41 -1575 EXOC6 exocyst complex component 6 566552 8 6 8 5 2 1 4 0 1 0 0.036 0.41 -1576 TAF2 TAF2 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 150kDa 829696 8 8 8 1 1 4 1 0 2 0 0.036 0.41 -1577 ZNF318 zinc finger protein 318 1450848 11 11 11 1 4 3 0 0 4 0 0.036 0.41 -1578 AMPH amphiphysin 477824 9 8 8 3 4 4 0 0 1 0 0.036 0.41 -1579 PCDHB13 protocadherin beta 13 499688 7 7 7 7 1 5 1 0 0 0 0.036 0.41 -1580 OR2B11 olfactory receptor, family 2, subfamily B, member 11 214592 4 4 4 3 3 1 0 0 0 0 0.036 0.41 -1581 PAGE2 P antigen family, member 2 (prostate associated) 74144 2 2 2 0 0 2 0 0 0 0 0.036 0.41 -1582 PDSS1 prenyl (decaprenyl) diphosphate synthase, subunit 1 252224 5 5 5 1 2 1 1 0 1 0 0.036 0.41 -1583 CENPN centromere protein N 286048 5 5 5 1 4 0 0 0 1 0 0.036 0.41 -1584 ZNF24 zinc finger protein 24 250656 6 5 6 0 1 3 1 0 1 0 0.036 0.41 -1585 COL5A2 collagen, type V, alpha 2 1041152 13 11 13 3 3 5 3 1 1 0 0.036 0.41 -1586 COL5A1 collagen, type V, alpha 1 1207388 16 14 16 11 11 1 0 0 4 0 0.036 0.41 -1587 FRMPD1 FERM and PDZ domain containing 1 1069740 18 12 18 4 6 7 4 0 1 0 0.037 0.42 -1588 CHAC2 ChaC, cation transport regulator homolog 2 (E. coli) 127008 2 2 2 0 0 1 0 0 1 0 0.037 0.42 -1589 GPR161 G protein-coupled receptor 161 353332 7 7 7 1 2 2 1 0 2 0 0.037 0.42 -1590 IRS4 insulin receptor substrate 4 794024 15 12 15 5 6 7 1 0 1 0 0.037 0.42 -1591 HBB hemoglobin, beta 102144 3 3 2 0 0 3 0 0 0 0 0.037 0.42 -1592 RPS16 ribosomal protein S16 103264 2 2 2 0 0 0 0 1 1 0 0.037 0.42 -1593 LIPI lipase, member I 330932 6 5 6 3 0 2 2 0 2 0 0.037 0.42 -1594 TCL1B T-cell leukemia/lymphoma 1B 89376 2 2 2 0 1 0 0 0 1 0 0.037 0.42 -1595 GRIA2 glutamate receptor, ionotropic, AMPA 2 634144 12 10 11 5 4 3 5 0 0 0 0.037 0.42 -1596 C1orf173 chromosome 1 open reading frame 173 1034984 17 11 17 6 1 9 6 0 1 0 0.037 0.42 -1597 CCR3 chemokine (C-C motif) receptor 3 242368 4 4 4 2 2 2 0 0 0 0 0.037 0.42 -1598 RXFP3 relaxin/insulin-like family peptide receptor 3 293596 6 6 5 3 4 1 1 0 0 0 0.037 0.42 -1599 SRR serine racemase 235424 3 3 3 0 0 1 1 0 1 0 0.037 0.42 -1600 PRRG4 proline rich Gla (G-carboxyglutamic acid) 4 (transmembrane) 157024 2 2 2 0 1 0 0 0 1 0 0.037 0.42 -1601 PIKFYVE 1449728 20 14 20 5 10 5 4 0 1 0 0.037 0.42 -1602 IDH3A isocitrate dehydrogenase 3 (NAD+) alpha 250656 4 4 4 1 0 2 2 0 0 0 0.037 0.42 -1603 TSSK1B testis-specific serine kinase 1B 248192 7 6 7 1 5 0 1 0 1 0 0.037 0.42 -1604 PARP15 poly (ADP-ribose) polymerase family, member 15 306208 5 5 5 1 1 2 1 0 1 0 0.037 0.42 -1605 CCBL2 cysteine conjugate-beta lyase 2 317408 5 5 5 1 2 2 1 0 0 0 0.038 0.42 -1606 ANGEL2 angel homolog 2 (Drosophila) 374304 5 5 5 2 0 1 3 0 1 0 0.038 0.42 -1607 SGMS2 sphingomyelin synthase 2 250432 7 5 7 1 2 1 2 0 0 2 0.038 0.42 -1608 GNRHR gonadotropin-releasing hormone receptor 223776 4 4 4 0 2 2 0 0 0 0 0.038 0.42 -1609 KBTBD3 kelch repeat and BTB (POZ) domain containing 3 413728 7 6 7 2 0 4 2 0 1 0 0.038 0.42 -1610 LAMA2 laminin, alpha 2 (merosin, congenital muscular dystrophy) 2146792 25 17 25 11 3 8 8 0 6 0 0.038 0.42 -1611 SNX25 sorting nexin 25 581280 8 7 8 1 2 2 2 0 0 2 0.038 0.42 -1612 MTERFD1 MTERF domain containing 1 287168 6 4 6 1 0 2 2 0 2 0 0.038 0.42 -1613 DCN decorin 248192 4 4 4 0 2 0 1 0 1 0 0.038 0.42 -1614 IL1RAPL1 interleukin 1 receptor accessory protein-like 1 477344 8 7 8 2 2 3 2 0 1 0 0.038 0.43 -1615 SLC23A2 solute carrier family 23 (nucleobase transporters), member 2 445284 7 7 7 2 3 1 1 0 2 0 0.038 0.43 -1616 HRSP12 heat-responsive protein 12 98112 3 3 2 0 2 0 0 0 1 0 0.038 0.43 -1617 CYSLTR2 cysteinyl leukotriene receptor 2 234080 4 4 4 0 2 2 0 0 0 0 0.038 0.43 -1618 FTMT ferritin mitochondrial 151424 4 4 4 2 2 2 0 0 0 0 0.038 0.43 -1619 CTHRC1 collagen triple helix repeat containing 1 133056 5 4 5 0 3 1 0 0 1 0 0.038 0.43 -1620 STX7 syntaxin 7 184128 3 3 2 0 0 1 0 0 2 0 0.038 0.43 -1621 CASP8AP2 CASP8 associated protein 2 1309068 18 12 17 2 5 7 3 0 3 0 0.038 0.43 -1622 ACCS 1-aminocyclopropane-1-carboxylate synthase homolog (Arabidopsis)(non-functional) 349888 10 7 10 1 3 4 3 0 0 0 0.038 0.43 -1623 COPB1 coatomer protein complex, subunit beta 1 659904 9 8 8 0 5 3 1 0 0 0 0.039 0.43 -1624 PTCD2 pentatricopeptide repeat domain 2 270368 5 5 5 1 1 4 0 0 0 0 0.039 0.43 -1625 RHOJ ras homolog gene family, member J 148960 3 3 3 2 2 0 0 0 1 0 0.039 0.43 -1626 HRASLS HRAS-like suppressor 116256 2 2 2 0 1 0 0 0 1 0 0.039 0.43 -1627 KLHL18 kelch-like 18 (Drosophila) 393184 6 6 6 1 1 1 2 0 2 0 0.039 0.43 -1628 HIST1H3C histone cluster 1, H3c 92960 3 3 3 0 1 1 0 0 1 0 0.039 0.43 -1629 SYCP2L synaptonemal complex protein 2-like 572320 9 7 9 1 1 2 4 0 2 0 0.039 0.43 -1630 ALPK1 alpha-kinase 1 849184 10 10 10 1 4 5 1 0 0 0 0.039 0.43 -1631 HDC histidine decarboxylase 456288 8 7 8 2 3 3 1 0 1 0 0.039 0.43 -1632 RIF1 RAP1 interacting factor homolog (yeast) 1693216 15 12 15 4 3 3 5 0 2 2 0.039 0.43 -1633 GABRA4 gamma-aminobutyric acid (GABA) A receptor, alpha 4 381024 8 6 7 2 4 1 1 0 2 0 0.039 0.43 -1634 OVCA2 112728 2 2 2 0 0 1 0 0 1 0 0.039 0.43 -1635 CTNND2 catenin (cadherin-associated protein), delta 2 (neural plakophilin-related arm-repeat protein) 773040 14 12 14 12 6 4 2 0 0 2 0.039 0.43 -1636 C4orf26 chromosome 4 open reading frame 26 89824 3 3 3 1 3 0 0 0 0 0 0.039 0.43 -1637 GPR6 G protein-coupled receptor 6 214592 6 6 6 1 3 1 2 0 0 0 0.039 0.43 -1638 TOPORS topoisomerase I binding, arginine/serine-rich 698124 10 9 10 3 3 3 3 0 1 0 0.039 0.43 -1639 PAPPA2 pappalysin 2 1235808 16 14 16 3 3 7 5 0 1 0 0.039 0.43 -1640 KLHL13 kelch-like 13 (Drosophila) 447104 6 6 6 0 3 1 1 0 1 0 0.039 0.43 -1641 ZNF620 zinc finger protein 620 287840 4 4 4 0 1 2 0 0 1 0 0.039 0.43 -1642 OR12D3 olfactory receptor, family 12, subfamily D, member 3 133700 4 3 4 2 1 3 0 0 0 0 0.039 0.43 -1643 MAGEA12 melanoma antigen family A, 12 212576 4 4 4 1 2 2 0 0 0 0 0.040 0.43 -1644 ARHGEF9 Cdc42 guanine nucleotide exchange factor (GEF) 9 342648 4 4 4 1 1 0 2 0 1 0 0.040 0.43 -1645 VLDLR very low density lipoprotein receptor 585088 6 6 6 1 0 4 0 0 2 0 0.040 0.43 -1646 DCT dopachrome tautomerase (dopachrome delta-isomerase, tyrosine-related protein 2) 380576 13 8 13 1 7 3 1 1 1 0 0.040 0.43 -1647 OR6C75 olfactory receptor, family 6, subfamily C, member 75 211232 4 3 4 0 0 2 1 0 1 0 0.040 0.43 -1648 RRP9 ribosomal RNA processing 9, small subunit (SSU) processome component, homolog (yeast) 324976 7 7 7 0 3 2 2 0 0 0 0.040 0.43 -1649 CD22 CD22 molecule 581504 11 9 11 4 3 7 0 0 1 0 0.040 0.43 -1650 TRPC7 transient receptor potential cation channel, subfamily C, member 7 572968 9 8 9 3 4 3 0 0 2 0 0.040 0.43 -1651 IL3 interleukin 3 (colony-stimulating factor, multiple) 107296 3 3 2 1 3 0 0 0 0 0 0.040 0.43 -1652 JAK2 Janus kinase 2 (a protein tyrosine kinase) 781984 11 7 11 1 2 2 1 0 2 4 0.040 0.43 -1653 RPL9 ribosomal protein L9 135072 4 4 4 0 2 0 2 0 0 0 0.040 0.43 -1654 LYG1 lysozyme G-like 1 135520 3 3 3 0 1 1 1 0 0 0 0.040 0.43 -1655 TMEM167A 52640 1 1 1 0 0 0 0 0 1 0 0.040 0.43 -1656 TTPA tocopherol (alpha) transfer protein 145376 3 3 3 0 1 1 0 0 1 0 0.040 0.43 -1657 CATSPERB cation channel, sperm-associated, beta 773920 14 10 14 1 4 6 3 0 1 0 0.040 0.43 -1658 VN1R1 vomeronasal 1 receptor 1 238784 4 4 4 0 0 3 1 0 0 0 0.040 0.43 -1659 HPS1 Hermansky-Pudlak syndrome 1 444204 5 5 4 1 2 0 0 0 3 0 0.040 0.43 -1660 YIPF1 Yip1 domain family, member 1 213472 4 3 4 0 0 2 0 0 2 0 0.040 0.43 -1661 OR13C8 olfactory receptor, family 13, subfamily C, member 8 216608 4 4 4 1 0 4 0 0 0 0 0.040 0.44 -1662 FGF11 fibroblast growth factor 11 124544 3 3 3 0 1 1 1 0 0 0 0.040 0.44 -1663 HTN1 histatin 1 42560 1 1 1 0 0 0 0 0 1 0 0.040 0.44 -1664 TAAR5 trace amine associated receptor 5 228032 6 5 6 3 2 2 2 0 0 0 0.040 0.44 -1665 LPAR3 lysophosphatidic acid receptor 3 239680 5 5 5 1 4 1 0 0 0 0 0.040 0.44 -1666 LALBA lactalbumin, alpha- 99680 2 2 1 0 2 0 0 0 0 0 0.040 0.44 -1667 MYBPH myosin binding protein H 329956 5 5 5 1 3 1 1 0 0 0 0.040 0.44 -1668 RGAG1 retrotransposon gag domain containing 1 935200 12 8 12 4 3 6 0 0 1 2 0.040 0.44 -1669 PARVB parvin, beta 280000 5 5 5 2 3 0 1 0 1 0 0.040 0.44 -1670 DNMT3B DNA (cytosine-5-)-methyltransferase 3 beta 602560 9 8 8 3 6 2 0 0 1 0 0.040 0.44 -1671 TEX15 testis expressed 15 1878464 29 14 29 9 3 13 8 0 2 3 0.040 0.44 -1672 OR4K15 olfactory receptor, family 4, subfamily K, member 15 235424 5 5 5 1 1 4 0 0 0 0 0.040 0.44 -1673 ANKMY2 ankyrin repeat and MYND domain containing 2 305984 5 5 5 1 0 3 1 0 1 0 0.040 0.44 -1674 CAMK1G calcium/calmodulin-dependent protein kinase IG 330400 5 5 5 3 1 2 1 0 1 0 0.040 0.44 -1675 TFEC transcription factor EC 240128 3 3 3 1 1 0 0 0 2 0 0.040 0.44 -1676 PRB4 proline-rich protein BstNI subfamily 4 169344 3 3 3 1 1 2 0 0 0 0 0.041 0.44 -1677 STK32B serine/threonine kinase 32B 285688 5 5 5 4 2 1 1 0 1 0 0.041 0.44 -1678 GUCY2C guanylate cyclase 2C (heat stable enterotoxin receptor) 745920 8 8 8 1 1 2 4 0 1 0 0.041 0.44 -1679 LRRTM2 leucine rich repeat transmembrane neuronal 2 349216 6 5 6 1 1 2 2 1 0 0 0.041 0.44 -1680 FAM54A family with sequence similarity 54, member A 265664 5 5 5 0 3 2 0 0 0 0 0.041 0.44 -1681 ZNF44 zinc finger protein 44 415968 7 6 7 2 2 3 1 0 1 0 0.041 0.44 -1682 RAB40C RAB40C, member RAS oncogene family 182616 3 3 1 0 0 0 0 0 3 0 0.041 0.44 -1683 C1orf150 chromosome 1 open reading frame 150 95872 2 2 2 0 0 1 1 0 0 0 0.041 0.44 -1684 CCNA1 cyclin A1 321216 6 5 6 1 2 1 2 0 1 0 0.041 0.44 -1685 DYNC1I2 dynein, cytoplasmic 1, intermediate chain 2 413088 6 5 6 0 1 2 1 0 2 0 0.041 0.44 -1686 PCDHB12 protocadherin beta 12 505064 11 10 10 6 7 2 1 1 0 0 0.041 0.44 -1687 PRPF4 PRP4 pre-mRNA processing factor 4 homolog (yeast) 364000 4 4 4 2 1 1 0 0 2 0 0.041 0.44 -1688 ZNF556 zinc finger protein 556 309736 4 4 3 3 0 1 1 0 2 0 0.041 0.44 -1689 PGBD3 piggyBac transposable element derived 3 400064 8 7 8 0 5 1 2 0 0 0 0.041 0.44 -1690 DNMT3A DNA (cytosine-5-)-methyltransferase 3 alpha 616176 9 9 9 2 5 1 0 0 3 0 0.041 0.44 -1691 CXADR coxsackie virus and adenovirus receptor 241696 4 4 4 1 0 1 1 0 2 0 0.041 0.44 -1692 OCRL oculocerebrorenal syndrome of Lowe 618016 9 8 9 2 2 4 2 0 1 0 0.041 0.44 -1693 STRA8 stimulated by retinoic acid gene 8 homolog (mouse) 194888 3 3 3 1 0 1 0 0 2 0 0.041 0.44 -1694 MPZL2 myelin protein zero-like 2 149632 4 4 4 1 1 2 1 0 0 0 0.041 0.44 -1695 TAGLN transgelin 139328 4 4 4 0 3 1 0 0 0 0 0.041 0.44 -1696 OR52E6 olfactory receptor, family 52, subfamily E, member 6 211904 5 4 5 0 0 4 1 0 0 0 0.041 0.44 -1697 TNS1 tensin 1 1189064 14 13 14 9 3 8 1 1 1 0 0.041 0.44 -1698 KCNH8 potassium voltage-gated channel, subfamily H (eag-related), member 8 758912 9 8 9 4 1 2 3 0 3 0 0.041 0.44 -1699 SLC25A43 solute carrier family 25, member 43 171808 3 3 3 0 0 2 1 0 0 0 0.041 0.44 -1700 B4GALT6 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 6 265440 5 5 5 1 1 0 3 0 1 0 0.041 0.44 -1701 KIAA1598 KIAA1598 424840 5 5 5 1 1 1 1 0 2 0 0.042 0.44 -1702 C7orf63 621824 11 7 10 1 4 1 4 0 2 0 0.042 0.44 -1703 HYAL4 hyaluronoglucosaminidase 4 326592 4 4 3 1 0 1 1 0 2 0 0.042 0.44 -1704 CALD1 caldesmon 1 541120 9 8 9 6 2 3 4 0 0 0 0.042 0.44 -1705 PLUNC palate, lung and nasal epithelium associated 178976 3 3 3 2 1 1 0 0 1 0 0.042 0.44 -1706 OR2T11 olfactory receptor, family 2, subfamily T, member 11 213920 4 4 4 1 3 1 0 0 0 0 0.042 0.44 -1707 DCTD dCMP deaminase 126336 3 3 3 3 1 0 2 0 0 0 0.042 0.44 -1708 CCPG1 cell cycle progression 1 515648 6 6 6 2 1 2 1 0 2 0 0.042 0.44 -1709 OR2W1 olfactory receptor, family 2, subfamily W, member 1 135380 4 3 4 2 0 0 3 1 0 0 0.042 0.44 -1710 TIGD4 tigger transposable element derived 4 345632 8 5 8 1 2 3 0 0 3 0 0.042 0.44 -1711 ZNF431 zinc finger protein 431 392224 7 5 7 0 0 4 0 0 1 2 0.042 0.44 -1712 SLCO1C1 solute carrier organic anion transporter family, member 1C1 493920 7 6 7 2 1 2 3 0 1 0 0.042 0.44 -1713 BTBD10 BTB (POZ) domain containing 10 327040 5 5 5 2 1 2 2 0 0 0 0.042 0.44 -1714 SPTA1 spectrin, alpha, erythrocytic 1 (elliptocytosis 2) 1672832 22 15 22 7 5 5 12 0 0 0 0.042 0.44 -1715 KLK4 kallikrein-related peptidase 4 172168 5 5 5 0 2 1 0 1 1 0 0.042 0.44 -1716 TRIM22 tripartite motif-containing 22 341600 8 7 8 0 3 2 3 0 0 0 0.042 0.44 -1717 LZTFL1 leucine zipper transcription factor-like 1 210560 2 2 2 0 0 0 0 0 2 0 0.042 0.44 -1718 TMEM31 transmembrane protein 31 115360 3 3 3 0 1 0 1 0 1 0 0.042 0.44 -1719 MMP19 matrix metallopeptidase 19 350112 6 6 6 1 2 4 0 0 0 0 0.042 0.44 -1720 RBM46 RNA binding motif protein 46 360164 7 5 7 1 1 3 1 0 2 0 0.042 0.44 -1721 SPDYA speedy homolog A (Drosophila) 218848 3 3 3 0 0 1 2 0 0 0 0.042 0.44 -1722 ANP32D acidic (leucine-rich) nuclear phosphoprotein 32 family, member D 89600 2 2 2 0 0 1 1 0 0 0 0.042 0.44 -1723 GCNT2 glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group) 688352 10 8 10 3 3 4 2 0 1 0 0.043 0.45 -1724 ZNF26 zinc finger protein 26 362432 6 6 6 1 3 1 2 0 0 0 0.043 0.45 -1725 IL21 interleukin 21 114016 2 2 2 0 1 0 0 0 1 0 0.043 0.45 -1726 GPS2 G protein pathway suppressor 2 223528 4 4 4 0 1 0 1 0 2 0 0.043 0.45 -1727 PAX3 paired box 3 357988 7 7 6 5 6 1 0 0 0 0 0.043 0.45 -1728 VNN1 vanin 1 351680 6 5 6 2 2 2 2 0 0 0 0.043 0.45 -1729 GPX6 glutathione peroxidase 6 (olfactory) 153664 3 3 3 2 0 0 2 0 1 0 0.043 0.45 -1730 ELK3 ELK3, ETS-domain protein (SRF accessory protein 2) 277760 4 4 4 0 0 0 2 0 2 0 0.043 0.45 -1731 TWF1 twinfilin, actin-binding protein, homolog 1 (Drosophila) 237440 5 4 5 1 0 3 1 0 1 0 0.043 0.45 -1732 KRTAP11-1 keratin associated protein 11-1 111104 2 2 2 0 0 2 0 0 0 0 0.043 0.45 -1733 EDNRA endothelin receptor type A 293888 4 4 4 0 0 2 1 0 1 0 0.043 0.45 -1734 GABRB1 gamma-aminobutyric acid (GABA) A receptor, beta 1 327264 7 6 7 1 1 2 2 0 2 0 0.043 0.45 -1735 GIMAP8 GTPase, IMAP family member 8 451136 9 8 9 1 5 3 0 0 1 0 0.043 0.45 -1736 MBOAT2 membrane bound O-acyltransferase domain containing 2 344064 8 6 7 1 4 2 2 0 0 0 0.043 0.45 -1737 MMP9 matrix metallopeptidase 9 (gelatinase B, 92kDa gelatinase, 92kDa type IV collagenase) 405784 11 9 11 3 8 1 2 0 0 0 0.043 0.45 -1738 ZNF555 zinc finger protein 555 422100 6 5 6 0 1 2 0 0 1 2 0.043 0.45 -1739 FAM57B family with sequence similarity 57, member B 160636 4 4 4 0 2 1 0 0 1 0 0.043 0.45 -1740 C20orf107 chromosome 20 open reading frame 107 117376 5 3 5 1 2 1 1 0 1 0 0.043 0.45 -1741 GPR19 G protein-coupled receptor 19 280448 4 4 4 0 0 3 1 0 0 0 0.043 0.45 -1742 OR10G7 olfactory receptor, family 10, subfamily G, member 7 210560 3 3 3 2 1 1 1 0 0 0 0.043 0.45 -1743 MUC21 361536 5 4 5 1 1 3 1 0 0 0 0.043 0.45 -1744 OR6C76 olfactory receptor, family 6, subfamily C, member 76 210980 3 3 3 0 0 2 1 0 0 0 0.043 0.45 -1745 KCNA3 potassium voltage-gated channel, shaker-related subfamily, member 3 336420 10 8 9 3 5 2 3 0 0 0 0.043 0.45 -1746 OR4N4 olfactory receptor, family 4, subfamily N, member 4 213920 5 5 5 1 0 2 3 0 0 0 0.043 0.45 -1747 PLXNA4 plexin A4 1368912 28 16 28 11 15 9 3 0 1 0 0.044 0.45 -1748 RAB39 RAB39, member RAS oncogene family 144528 3 3 3 0 2 0 1 0 0 0 0.044 0.45 -1749 WDR72 WD repeat domain 72 758240 13 8 13 5 2 6 4 0 1 0 0.044 0.45 -1750 BEND5 175840 5 5 4 0 3 2 0 0 0 0 0.044 0.45 -1751 POPDC3 popeye domain containing 3 198912 4 4 3 1 0 4 0 0 0 0 0.044 0.45 -1752 MRAP2 141120 4 3 4 0 0 3 1 0 0 0 0.044 0.45 -1753 C19orf43 chromosome 19 open reading frame 43 43456 2 2 2 0 0 2 0 0 0 0 0.044 0.45 -1754 CRNKL1 crooked neck pre-mRNA splicing factor-like 1 (Drosophila) 573916 8 8 8 2 3 1 1 0 3 0 0.044 0.45 -1755 PAK3 p21 (CDKN1A)-activated kinase 3 395520 5 5 5 1 0 4 0 0 1 0 0.044 0.45 -1756 ADAD1 adenosine deaminase domain containing 1 (testis-specific) 397600 7 6 7 1 2 2 2 0 1 0 0.044 0.45 -1757 RNF111 ring finger protein 111 674912 6 5 6 3 0 1 2 0 1 2 0.044 0.45 -1758 LOC642587 49728 2 2 2 0 0 1 1 0 0 0 0.044 0.45 -1759 MACROD2 MACRO domain containing 2 317856 6 5 6 4 2 3 1 0 0 0 0.044 0.45 -1760 JAKMIP1 janus kinase and microtubule interacting protein 1 518184 10 9 10 2 6 1 2 0 1 0 0.044 0.45 -1761 LHX9 LIM homeobox 9 272468 6 6 6 2 2 2 1 0 1 0 0.044 0.45 -1762 CTBS chitobiase, di-N-acetyl- 238560 4 4 4 0 1 1 1 0 1 0 0.044 0.45 -1763 C20orf85 chromosome 20 open reading frame 85 96320 2 2 2 1 0 1 0 0 1 0 0.044 0.45 -1764 ODZ3 odz, odd Oz/ten-m homolog 3 (Drosophila) 1742648 29 18 29 6 12 9 4 0 4 0 0.044 0.45 -1765 BCL2A1 BCL2-related protein A1 133504 3 2 3 1 0 0 2 0 1 0 0.045 0.45 -1766 E2F5 E2F transcription factor 5, p130-binding 195988 2 2 2 0 0 0 0 0 2 0 0.045 0.45 -1767 HMSD histocompatibility (minor) serpin domain containing 96768 2 2 2 0 0 0 1 0 1 0 0.045 0.45 -1768 FAM176A 104608 3 3 3 1 3 0 0 0 0 0 0.045 0.46 -1769 DTD1 D-tyrosyl-tRNA deacylase 1 homolog (S. cerevisiae) 135072 2 2 2 2 1 0 0 0 1 0 0.045 0.46 -1770 KLF8 Kruppel-like factor 8 246344 4 4 4 2 2 2 0 0 0 0 0.045 0.46 -1771 FAM190B 569536 7 7 7 2 4 2 0 0 1 0 0.045 0.46 -1772 RIPK3 receptor-interacting serine-threonine kinase 3 357728 4 4 4 3 1 0 1 1 1 0 0.045 0.46 -1773 ZNF619 zinc finger protein 619 370720 7 5 7 0 2 2 1 0 2 0 0.045 0.46 -1774 ELOVL4 elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 4 217056 4 4 4 2 0 1 3 0 0 0 0.045 0.46 -1775 ACMSD aminocarboxymuconate semialdehyde decarboxylase 235424 4 4 4 0 3 0 1 0 0 0 0.045 0.46 -1776 MRPS24 mitochondrial ribosomal protein S24 93296 2 2 2 0 1 0 0 0 1 0 0.045 0.46 -1777 FBXL13 F-box and leucine-rich repeat protein 13 510720 6 5 6 1 0 1 2 0 3 0 0.045 0.46 -1778 CSTF2T cleavage stimulation factor, 3' pre-RNA, subunit 2, 64kDa, tau variant 414764 7 6 7 1 1 2 3 0 1 0 0.045 0.46 -1779 SEMA4D sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4D 665176 13 11 12 2 7 5 1 0 0 0 0.045 0.46 -1780 LRP12 low density lipoprotein-related protein 12 584192 8 8 8 2 3 1 2 1 1 0 0.045 0.46 -1781 SRRM1 serine/arginine repetitive matrix 1 623392 11 9 11 1 3 4 3 0 1 0 0.045 0.46 -1782 TRDMT1 tRNA aspartic acid methyltransferase 1 259600 5 5 5 1 1 3 0 0 1 0 0.045 0.46 -1783 IQGAP2 IQ motif containing GTPase activating protein 2 1080128 12 10 12 3 4 4 3 0 1 0 0.045 0.46 -1784 C12orf29 chromosome 12 open reading frame 29 225344 3 3 3 0 0 1 1 0 1 0 0.045 0.46 -1785 MX1 myxovirus (influenza virus) resistance 1, interferon-inducible protein p78 (mouse) 457184 6 6 6 2 2 2 1 0 1 0 0.045 0.46 -1786 CYP4F12 cytochrome P450, family 4, subfamily F, polypeptide 12 362964 6 6 6 1 2 1 2 0 1 0 0.045 0.46 -1787 PLEKHA9 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 9 264320 6 5 6 2 0 3 2 0 1 0 0.046 0.46 -1788 LPPR5 215208 3 3 3 0 0 1 0 0 2 0 0.046 0.46 -1789 OSTN osteocrin 92736 3 3 2 0 2 0 1 0 0 0 0.046 0.46 -1790 C1orf50 chromosome 1 open reading frame 50 108248 2 2 2 0 0 0 2 0 0 0 0.046 0.46 -1791 OR1L6 olfactory receptor, family 1, subfamily L, member 6 210112 4 4 4 1 0 2 2 0 0 0 0.046 0.46 -1792 BCL2L11 BCL2-like 11 (apoptosis facilitator) 136416 3 3 2 0 2 0 0 0 1 0 0.046 0.46 -1793 PI15 peptidase inhibitor 15 178528 6 5 6 0 3 3 0 0 0 0 0.046 0.46 -1794 TMEM135 transmembrane protein 135 321888 3 3 3 0 0 0 0 0 3 0 0.046 0.46 -1795 ZBTB24 zinc finger and BTB domain containing 24 476672 8 6 7 1 1 3 2 0 2 0 0.046 0.46 -1796 GPR101 G protein-coupled receptor 101 342944 7 7 7 4 5 1 0 0 1 0 0.046 0.46 -1797 EXD1 355040 5 5 5 0 0 2 3 0 0 0 0.046 0.46 -1798 FAM116A family with sequence similarity 116, member A 396284 6 6 6 0 2 1 1 0 2 0 0.046 0.46 -1799 TRIM24 tripartite motif-containing 24 673204 7 7 6 1 1 2 1 0 3 0 0.046 0.46 -1800 CYP2E1 cytochrome P450, family 2, subfamily E, polypeptide 1 333144 6 6 6 0 4 0 1 0 1 0 0.046 0.46 -1801 SLC6A5 solute carrier family 6 (neurotransmitter transporter, glycine), member 5 528864 9 9 9 3 4 3 1 0 1 0 0.046 0.46 -1802 GPR158 G protein-coupled receptor 158 762448 14 10 13 4 5 5 2 0 2 0 0.046 0.46 -1803 GJB7 gap junction protein, beta 7, 25kDa 151424 2 2 2 1 0 0 1 0 1 0 0.046 0.46 -1804 SEC24B SEC24 related gene family, member B (S. cerevisiae) 843584 9 9 9 0 2 4 3 0 0 0 0.046 0.46 -1805 KCNK2 potassium channel, subfamily K, member 2 302848 5 5 5 4 0 3 1 0 1 0 0.046 0.46 -1806 FKBP11 FK506 binding protein 11, 19 kDa 134320 3 3 3 0 1 0 1 0 1 0 0.046 0.46 -1807 C2orf18 chromosome 2 open reading frame 18 244256 4 4 4 0 2 2 0 0 0 0 0.046 0.46 -1808 CRYBB1 crystallin, beta B1 173404 7 5 7 1 6 1 0 0 0 0 0.046 0.46 -1809 ATXN1 ataxin 1 529060 8 8 8 3 2 2 1 0 3 0 0.046 0.46 -1810 PPP1R1C protein phosphatase 1, regulatory (inhibitor) subunit 1C 66296 2 2 2 0 0 0 1 0 1 0 0.047 0.46 -1811 CUZD1 CUB and zona pellucida-like domains 1 416640 5 4 5 2 0 1 2 0 2 0 0.047 0.46 -1812 OR4X1 olfactory receptor, family 4, subfamily X, member 1 206528 4 4 4 1 0 4 0 0 0 0 0.047 0.46 -1813 PGK2 phosphoglycerate kinase 2 281792 7 5 7 4 2 4 1 0 0 0 0.047 0.46 -1814 IL32 interleukin 32 128352 3 3 3 0 1 2 0 0 0 0 0.047 0.46 -1815 UBP1 upstream binding protein 1 (LBP-1a) 376124 6 6 6 0 1 1 3 0 1 0 0.047 0.46 -1816 KIR3DL3 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 3 221072 4 4 4 3 2 1 1 0 0 0 0.047 0.46 -1817 RCSD1 RCSD domain containing 1 273784 5 5 5 1 2 2 1 0 0 0 0.047 0.46 -1818 UPF3B UPF3 regulator of nonsense transcripts homolog B (yeast) 334152 5 4 5 1 1 1 0 0 1 2 0.047 0.47 -1819 LCP1 lymphocyte cytosolic protein 1 (L-plastin) 435456 7 5 7 0 0 2 3 0 2 0 0.047 0.47 -1820 DZIP1 DAZ interacting protein 1 579236 15 8 15 5 3 5 3 0 4 0 0.047 0.47 -1821 UBA6 ubiquitin-like modifier activating enzyme 6 737184 6 6 6 1 1 2 1 0 2 0 0.047 0.47 -1822 FAM24A family with sequence similarity 24, member A 73024 2 2 2 0 0 2 0 0 0 0 0.047 0.47 -1823 CGA glycoprotein hormones, alpha polypeptide 81312 2 2 2 0 1 0 1 0 0 0 0.047 0.47 -1824 MAPK8IP1 mitogen-activated protein kinase 8 interacting protein 1 329112 4 4 3 5 1 1 0 0 2 0 0.047 0.47 -1825 TRIML2 tripartite motif family-like 2 267008 4 4 4 3 0 2 1 0 1 0 0.047 0.47 -1826 WWOX WW domain containing oxidoreductase 292264 5 5 5 1 3 1 1 0 0 0 0.047 0.47 -1827 GOLGA7B 103320 3 3 3 0 3 0 0 0 0 0 0.047 0.47 -1828 FBXL7 F-box and leucine-rich repeat protein 7 334040 9 8 9 3 6 3 0 0 0 0 0.047 0.47 -1829 PCP4L1 Purkinje cell protein 4 like 1 46144 1 1 1 0 0 0 0 0 1 0 0.047 0.47 -1830 ITIH5 inter-alpha (globulin) inhibitor H5 667336 12 10 11 8 10 1 1 0 0 0 0.047 0.47 -1831 C10orf72 chromosome 10 open reading frame 72 237216 6 5 6 3 4 1 1 0 0 0 0.047 0.47 -1832 EYA4 eyes absent homolog 4 (Drosophila) 470624 9 7 9 0 1 5 2 0 1 0 0.047 0.47 -1833 IFNA10 interferon, alpha 10 128576 3 3 3 0 0 2 1 0 0 0 0.048 0.47 -1834 GRM3 glutamate receptor, metabotropic 3 595840 7 7 7 2 4 1 1 0 1 0 0.048 0.47 -1835 LCE3D late cornified envelope 3D 63392 2 2 2 0 1 1 0 0 0 0 0.048 0.47 -1836 PTGR1 229824 4 3 4 1 0 2 1 0 1 0 0.048 0.47 -1837 HOXA4 homeobox A4 113204 3 3 3 0 1 0 0 0 2 0 0.048 0.47 -1838 CYP2A13 cytochrome P450, family 2, subfamily A, polypeptide 13 340620 7 7 7 1 3 3 0 0 1 0 0.048 0.47 -1839 PIWIL3 piwi-like 3 (Drosophila) 611296 10 8 10 4 4 3 2 0 1 0 0.048 0.47 -1840 PHF3 PHD finger protein 3 1384320 17 10 16 2 1 8 3 0 5 0 0.048 0.47 -1841 NEK7 NIMA (never in mitosis gene a)-related kinase 7 211680 3 3 3 1 0 2 0 0 1 0 0.048 0.47 -1842 LILRB1 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 1 450468 8 7 8 4 1 3 3 0 1 0 0.048 0.47 -1843 ANP32C acidic (leucine-rich) nuclear phosphoprotein 32 family, member C 158816 3 3 3 0 1 1 0 0 1 0 0.048 0.47 -1844 CBX8 chromobox homolog 8 (Pc class homolog, Drosophila) 261100 4 4 4 0 0 2 0 0 2 0 0.048 0.47 -1845 GPR172B G protein-coupled receptor 172B 305228 4 4 4 0 0 2 1 0 1 0 0.048 0.47 -1846 ZNF827 zinc finger protein 827 736064 10 9 10 3 3 2 3 0 2 0 0.048 0.47 -1847 CDH19 cadherin 19, type 2 526960 7 7 7 6 0 5 2 0 0 0 0.048 0.47 -1848 NSFL1C NSFL1 (p97) cofactor (p47) 232960 5 5 5 0 4 0 1 0 0 0 0.048 0.47 -1849 BTG3 BTG family, member 3 173600 2 2 2 0 0 0 0 0 2 0 0.048 0.47 -1850 PPIG peptidylprolyl isomerase G (cyclophilin G) 511308 7 6 7 1 1 3 2 0 1 0 0.048 0.47 -1851 SMARCAD1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 712096 10 9 10 1 3 4 1 1 1 0 0.048 0.47 -1852 KRT82 keratin 82 351876 6 6 6 0 4 0 2 0 0 0 0.048 0.47 -1853 GABRA6 gamma-aminobutyric acid (GABA) A receptor, alpha 6 313152 5 5 5 3 1 2 2 0 0 0 0.048 0.47 -1854 PPFIA4 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 4 420824 7 7 7 2 4 1 1 0 1 0 0.049 0.47 -1855 IL10RB interleukin 10 receptor, beta 218136 5 4 4 1 1 0 2 0 2 0 0.049 0.47 -1856 OR1A1 olfactory receptor, family 1, subfamily A, member 1 208768 4 4 4 0 2 1 1 0 0 0 0.049 0.47 -1857 RNF217 ring finger protein 217 191744 3 3 3 0 0 0 2 0 1 0 0.049 0.47 -1858 USP29 ubiquitin specific peptidase 29 621152 11 8 10 4 0 8 2 0 1 0 0.049 0.47 -1859 GUCY1B3 guanylate cyclase 1, soluble, beta 3 428596 9 8 9 0 3 4 2 0 0 0 0.049 0.47 -1860 NRG2 neuregulin 2 337128 6 6 5 0 2 2 0 0 2 0 0.049 0.47 -1861 TMEM163 transmembrane protein 163 155904 3 3 3 2 1 2 0 0 0 0 0.049 0.47 -1862 TULP4 tubby like protein 4 1025120 15 13 15 1 6 2 3 0 4 0 0.049 0.47 -1863 TOP1 topoisomerase (DNA) I 525144 8 7 8 1 1 3 2 0 2 0 0.049 0.47 -1864 MORC1 MORC family CW-type zinc finger 1 687008 11 8 10 3 1 4 6 0 0 0 0.049 0.47 -1865 MCCC1 methylcrotonoyl-Coenzyme A carboxylase 1 (alpha) 491484 8 8 8 1 7 1 0 0 0 0 0.049 0.47 -1866 UGDH UDP-glucose dehydrogenase 342496 4 4 4 1 0 2 0 0 2 0 0.049 0.47 -1867 SLC35F3 solute carrier family 35, member F3 324832 5 5 4 2 3 1 1 0 0 0 0.049 0.47 -1868 IFNA5 interferon, alpha 5 128576 1 1 1 0 0 0 0 0 1 0 0.049 0.47 -1869 LACTB lactamase, beta 293664 3 3 3 0 1 1 0 0 1 0 0.049 0.47 -1870 ACSBG2 acyl-CoA synthetase bubblegum family member 2 459736 8 7 8 4 4 3 0 0 1 0 0.049 0.47 -1871 CEP135 centrosomal protein 135kDa 788256 9 8 9 0 2 2 2 0 3 0 0.049 0.47 -1872 VPS36 vacuolar protein sorting 36 homolog (S. cerevisiae) 272356 4 4 4 0 1 0 1 1 1 0 0.049 0.47 -1873 CCDC99 coiled-coil domain containing 99 417088 8 6 8 2 3 0 4 0 1 0 0.049 0.47 -1874 ITGB3BP integrin beta 3 binding protein (beta3-endonexin) 126784 3 2 3 0 0 0 2 0 1 0 0.049 0.47 -1875 DNAJC28 262304 5 3 5 3 1 0 1 0 1 2 0.049 0.47 -1876 SNX7 sorting nexin 7 270144 3 3 3 0 0 2 0 0 1 0 0.049 0.47 -1877 REV3L REV3-like, catalytic subunit of DNA polymerase zeta (yeast) 2120692 24 14 24 5 5 7 7 0 2 3 0.049 0.47 -1878 OR8B8 olfactory receptor, family 8, subfamily B, member 8 210560 3 3 3 2 1 1 1 0 0 0 0.049 0.47 -1879 HLA-DQA2 major histocompatibility complex, class II, DQ alpha 2 124376 3 3 3 0 0 2 1 0 0 0 0.049 0.47 -1880 OR10H2 olfactory receptor, family 10, subfamily H, member 2 213248 4 4 4 2 2 2 0 0 0 0 0.049 0.47 -1881 NPY neuropeptide Y 68544 2 2 2 2 1 1 0 0 0 0 0.049 0.47 -1882 CCR1 chemokine (C-C motif) receptor 1 240128 5 5 5 1 0 3 2 0 0 0 0.049 0.47 -1883 C2orf62 chromosome 2 open reading frame 62 258440 4 4 4 0 1 1 1 0 1 0 0.050 0.47 -1884 PSMA8 proteasome (prosome, macropain) subunit, alpha type, 8 178976 3 3 3 0 0 1 0 0 2 0 0.050 0.47 -1885 POLR2K polymerase (RNA) II (DNA directed) polypeptide K, 7.0kDa 42336 1 1 1 0 0 0 1 0 0 0 0.050 0.47 -1886 LNX1 ligand of numb-protein X 1 520352 11 8 11 0 4 5 1 0 1 0 0.050 0.47 -1887 LZIC leucine zipper and CTNNBIP1 domain containing 133728 2 2 2 0 0 0 2 0 0 0 0.050 0.48 -1888 C15orf57 134624 2 2 2 0 0 1 0 0 1 0 0.050 0.48 -1889 GSTCD glutathione S-transferase, C-terminal domain containing 435904 5 5 5 1 1 2 1 0 1 0 0.050 0.48 -1890 FNDC3A fibronectin type III domain containing 3A 830592 8 8 8 2 1 2 4 0 1 0 0.050 0.48 -1891 C1orf129 chromosome 1 open reading frame 129 398272 7 6 7 5 2 4 1 0 0 0 0.050 0.48 -1892 TCP10 t-complex 10 homolog (mouse) 167240 2 2 2 0 0 1 0 0 1 0 0.050 0.48 -1893 OR10T2 olfactory receptor, family 10, subfamily T, member 2 212576 4 4 4 0 0 3 1 0 0 0 0.050 0.48 -1894 DUSP22 dual specificity phosphatase 22 131488 3 3 3 1 1 0 1 0 1 0 0.050 0.48 -1895 KCNK9 potassium channel, subfamily K, member 9 248920 6 6 6 3 4 1 0 0 1 0 0.050 0.48 -1896 ESRRG estrogen-related receptor gamma 314720 6 6 6 2 2 1 3 0 0 0 0.050 0.48 -1897 GKN2 gastrokine 2 129696 2 2 2 1 0 0 2 0 0 0 0.050 0.48 -1898 C8orf42 chromosome 8 open reading frame 42 102592 3 3 3 0 2 0 1 0 0 0 0.050 0.48 -1899 CYP4F2 cytochrome P450, family 4, subfamily F, polypeptide 2 360864 8 7 8 1 4 3 0 1 0 0 0.050 0.48 -1900 PGK1 phosphoglycerate kinase 1 191880 3 3 3 2 0 1 2 0 0 0 0.050 0.48 -1901 VANGL2 vang-like 2 (van gogh, Drosophila) 357056 5 5 5 2 2 1 0 0 2 0 0.050 0.48 -1902 PTPLAD2 protein tyrosine phosphatase-like A domain containing 2 153440 2 2 2 0 1 0 0 0 1 0 0.051 0.48 -1903 TMEM43 transmembrane protein 43 278880 4 4 4 1 1 3 0 0 0 0 0.051 0.48 -1904 MXI1 MAX interactor 1 181188 3 3 3 0 0 0 2 0 1 0 0.051 0.48 -1905 IL17A interleukin 17A 107520 2 2 2 0 2 0 0 0 0 0 0.051 0.48 -1906 SMC1A structural maintenance of chromosomes 1A 847160 10 10 10 2 7 0 1 1 1 0 0.051 0.48 -1907 NR4A2 nuclear receptor subfamily 4, group A, member 2 391440 7 7 6 1 4 2 0 0 1 0 0.051 0.48 -1908 SGK2 serum/glucocorticoid regulated kinase 2 285992 5 5 5 0 3 1 0 0 1 0 0.051 0.48 -1909 ZNF611 zinc finger protein 611 477120 9 8 9 1 1 6 2 0 0 0 0.051 0.48 -1910 KATNAL1 katanin p60 subunit A-like 1 338912 5 5 5 0 4 1 0 0 0 0 0.051 0.48 -1911 XKR3 XK, Kell blood group complex subunit-related family, member 3 311808 5 5 5 1 0 3 2 0 0 0 0.051 0.48 -1912 OR2H1 olfactory receptor, family 2, subfamily H, member 1 133700 4 4 4 0 1 2 0 0 1 0 0.051 0.48 -1913 CETP cholesteryl ester transfer protein, plasma 346304 7 6 7 1 3 2 2 0 0 0 0.051 0.48 -1914 LPA lipoprotein, Lp(a) 956144 10 9 10 6 4 2 0 0 4 0 0.051 0.48 -1915 FSCB fibrous sheath CABYR binding protein 544328 10 7 10 0 3 5 0 0 0 2 0.051 0.48 -1916 THAP5 THAP domain containing 5 160384 3 3 2 0 0 2 0 0 1 0 0.051 0.48 -1917 TRIM69 tripartite motif-containing 69 329344 5 5 5 1 0 4 0 0 1 0 0.051 0.48 -1918 C16orf87 107744 4 3 3 0 0 2 1 0 1 0 0.051 0.48 -1919 KCTD7 potassium channel tetramerisation domain containing 7 170912 4 4 4 0 1 0 3 0 0 0 0.052 0.48 -1920 SFPQ splicing factor proline/glutamine-rich (polypyrimidine tract binding protein associated) 330568 10 7 9 0 5 2 2 0 1 0 0.052 0.48 -1921 KHDRBS3 KH domain containing, RNA binding, signal transduction associated 3 233520 5 4 5 0 1 2 0 0 2 0 0.052 0.48 -1922 GPR84 G protein-coupled receptor 84 267680 6 5 6 0 3 1 2 0 0 0 0.052 0.48 -1923 LMX1A LIM homeobox transcription factor 1, alpha 264544 4 4 4 2 2 1 1 0 0 0 0.052 0.48 -1924 HRG histidine-rich glycoprotein 359744 9 7 9 3 3 4 2 0 0 0 0.052 0.49 -1925 ERP27 endoplasmic reticulum protein 27 kDa 190400 3 3 3 1 0 2 1 0 0 0 0.052 0.49 -1926 C17orf95 131936 2 2 2 0 0 1 0 0 1 0 0.052 0.49 -1927 MAGEE1 melanoma antigen family E, 1 609544 8 8 7 4 4 2 1 0 1 0 0.052 0.49 -1928 ANGPTL2 angiopoietin-like 2 335552 8 7 8 1 3 4 0 0 1 0 0.052 0.49 -1929 RMND5B required for meiotic nuclear division 5 homolog B (S. cerevisiae) 272832 5 5 5 0 3 0 0 0 2 0 0.052 0.49 -1930 SLC39A2 solute carrier family 39 (zinc transporter), member 2 211904 4 4 4 0 2 1 1 0 0 0 0.052 0.49 -1931 NLRP10 NLR family, pyrin domain containing 10 442624 7 6 7 1 0 5 2 0 0 0 0.052 0.49 -1932 CACNG5 calcium channel, voltage-dependent, gamma subunit 5 260960 5 5 4 2 2 3 0 0 0 0 0.052 0.49 -1933 GTF2H3 general transcription factor IIH, polypeptide 3, 34kDa 219296 4 4 4 0 2 0 1 0 1 0 0.052 0.49 -1934 CMTM1 CKLF-like MARVEL transmembrane domain containing 1 196448 4 4 4 0 0 2 1 0 1 0 0.052 0.49 -1935 CDCA7L cell division cycle associated 7-like 314720 7 6 6 1 0 4 1 0 2 0 0.052 0.49 -1936 RIC8B resistance to inhibitors of cholinesterase 8 homolog B (C. elegans) 346208 5 4 5 0 1 3 0 0 1 0 0.052 0.49 -1937 CSRP2 cysteine and glycine-rich protein 2 134848 4 3 4 0 3 1 0 0 0 0 0.052 0.49 -1938 FPGT fucose-1-phosphate guanylyltransferase 403424 5 5 5 2 1 2 1 0 1 0 0.052 0.49 -1939 SH2D1A SH2 domain protein 1A, Duncan's disease (lymphoproliferative syndrome) 90272 2 2 2 1 1 0 1 0 0 0 0.052 0.49 -1940 FCRL4 Fc receptor-like 4 357504 4 4 4 1 2 1 0 0 1 0 0.052 0.49 -1941 DEFB116 defensin, beta 116 71008 2 2 2 0 1 1 0 0 0 0 0.052 0.49 -1942 QARS glutaminyl-tRNA synthetase 540456 8 8 8 1 4 0 3 1 0 0 0.053 0.49 -1943 DYTN dystrotelin 399840 9 7 9 0 0 7 2 0 0 0 0.053 0.49 -1944 CHCHD10 57496 1 1 1 1 0 0 0 0 1 0 0.053 0.49 -1945 NLGN1 neuroligin 1 558208 7 6 7 2 3 1 3 0 0 0 0.053 0.49 -1946 SLIT2 slit homolog 2 (Drosophila) 1060640 15 11 15 2 4 7 3 0 1 0 0.053 0.49 -1947 KRTAP13-1 keratin associated protein 13-1 117152 3 3 3 0 0 2 1 0 0 0 0.053 0.49 -1948 COLEC11 collectin sub-family member 11 199108 4 4 4 0 3 0 0 0 1 0 0.053 0.49 -1949 CAPZA2 capping protein (actin filament) muscle Z-line, alpha 2 195976 4 3 4 0 0 1 1 0 0 2 0.053 0.49 -1950 VEGFB vascular endothelial growth factor B 108864 2 2 1 0 0 0 0 0 2 0 0.053 0.49 -1951 TAS2R13 taste receptor, type 2, member 13 205184 3 3 3 1 1 2 0 0 0 0 0.053 0.49 -1952 C20orf197 chromosome 20 open reading frame 197 85504 2 2 2 0 1 1 0 0 0 0 0.053 0.49 -1953 DEM1 249620 2 2 2 0 0 0 1 0 1 0 0.053 0.49 -1954 RNF182 ring finger protein 182 167552 3 3 3 2 1 2 0 0 0 0 0.053 0.49 -1955 LRFN2 leucine rich repeat and fibronectin type III domain containing 2 496888 8 8 8 6 4 2 1 0 1 0 0.053 0.49 -1956 CCR9 chemokine (C-C motif) receptor 9 250432 6 5 6 2 0 3 3 0 0 0 0.053 0.49 -1957 USP26 ubiquitin specific peptidase 26 615104 8 7 7 3 3 2 1 0 2 0 0.053 0.49 -1958 GALNT5 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 5 (GalNAc-T5) 641312 10 7 10 2 2 5 2 0 1 0 0.053 0.49 -1959 TCN2 transcobalamin II; macrocytic anemia 293916 5 5 5 0 2 3 0 0 0 0 0.053 0.49 -1960 KEL Kell blood group, metallo-endopeptidase 509600 8 8 8 3 5 2 1 0 0 0 0.053 0.49 -1961 THSD7B thrombospondin, type I, domain containing 7B 1078264 12 11 11 4 5 3 3 0 1 0 0.053 0.49 -1962 GALNT13 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 13 (GalNAc-T13) 384160 5 4 5 1 0 2 2 0 1 0 0.054 0.49 -1963 GNG3 guanine nucleotide binding protein (G protein), gamma 3 52864 2 2 2 0 0 2 0 0 0 0 0.054 0.49 -1964 ATP13A5 ATPase type 13A5 846048 9 8 9 3 2 4 1 0 2 0 0.054 0.49 -1965 TBC1D28 TBC1 domain family, member 28 128576 4 3 4 1 2 2 0 0 0 0 0.054 0.49 -1966 NOL7 nucleolar protein 7, 27kDa 139908 2 2 2 1 0 0 0 0 2 0 0.054 0.49 -1967 DCLRE1A DNA cross-link repair 1A (PSO2 homolog, S. cerevisiae) 707616 9 8 9 1 1 4 3 0 1 0 0.054 0.49 -1968 LCE1A late cornified envelope 1A 75488 2 2 2 0 0 0 2 0 0 0 0.054 0.49 -1969 PLAC1 placenta-specific 1 144032 3 3 3 1 1 1 1 0 0 0 0.054 0.49 -1970 PLG plasminogen 562912 9 8 9 1 7 0 1 0 1 0 0.054 0.49 -1971 MSL2 390208 6 6 6 1 1 2 2 0 1 0 0.054 0.49 -1972 ARHGEF7 Rho guanine nucleotide exchange factor (GEF) 7 590348 8 7 8 2 3 1 3 0 1 0 0.054 0.49 -1973 PHLDB1 pleckstrin homology-like domain, family B, member 1 896828 8 8 8 3 3 3 1 0 1 0 0.054 0.49 -1974 TTC35 tetratricopeptide repeat domain 35 210112 4 4 4 1 0 2 0 1 1 0 0.054 0.49 -1975 ANKRD55 ankyrin repeat domain 55 423136 7 7 7 0 3 1 2 0 1 0 0.054 0.49 -1976 SYT15 synaptotagmin XV 292752 5 5 5 1 3 1 1 0 0 0 0.054 0.49 -1977 OR4S1 olfactory receptor, family 4, subfamily S, member 1 209216 3 3 3 1 0 3 0 0 0 0 0.054 0.50 -1978 KRTAP15-1 keratin associated protein 15-1 93632 2 2 2 1 0 1 1 0 0 0 0.054 0.50 -1979 UXS1 UDP-glucuronate decarboxylase 1 261208 7 6 7 1 4 2 1 0 0 0 0.054 0.50 -1980 TSPAN8 tetraspanin 8 167104 3 3 3 0 0 1 1 0 1 0 0.055 0.50 -1981 C8A complement component 8, alpha polypeptide 402976 6 6 6 1 2 4 0 0 0 0 0.055 0.50 -1982 ZNF596 zinc finger protein 596 343840 6 5 6 0 1 4 1 0 0 0 0.055 0.50 -1983 EGFL6 EGF-like-domain, multiple 6 383712 6 5 6 1 2 1 0 0 3 0 0.055 0.50 -1984 C8orf47 chromosome 8 open reading frame 47 240800 4 4 4 1 1 3 0 0 0 0 0.055 0.50 -1985 ROR1 receptor tyrosine kinase-like orphan receptor 1 618912 9 8 9 2 3 3 2 1 0 0 0.055 0.50 -1986 OR6C65 olfactory receptor, family 6, subfamily C, member 65 211232 3 3 3 0 0 1 1 0 1 0 0.055 0.50 -1987 KIAA1712 KIAA1712 271712 4 4 4 0 1 2 1 0 0 0 0.055 0.50 -1988 DCST2 DC-STAMP domain containing 2 531804 10 9 10 0 4 5 1 0 0 0 0.055 0.50 -1989 STMN4 stathmin-like 4 151200 3 3 3 0 0 1 1 0 1 0 0.055 0.50 -1990 FBXO40 F-box protein 40 479808 8 6 8 3 3 3 1 0 1 0 0.055 0.50 -1991 KCNS2 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 2 319032 6 6 6 0 3 2 1 0 0 0 0.055 0.50 -1992 MDN1 MDN1, midasin homolog (yeast) 3835608 43 24 43 9 13 13 11 0 4 2 0.055 0.50 -1993 AWAT1 227360 4 4 4 0 1 3 0 0 0 0 0.055 0.50 -1994 UBE2G1 ubiquitin-conjugating enzyme E2G 1 (UBC7 homolog, yeast) 115192 2 2 2 0 0 1 0 0 1 0 0.055 0.50 -1995 RIOK2 RIO kinase 2 (yeast) 382816 4 4 4 0 2 0 0 0 2 0 0.055 0.50 -1996 ZNF675 zinc finger protein 675 385952 6 5 6 2 0 3 1 0 2 0 0.055 0.50 -1997 CD200R1 CD200 receptor 1 243120 8 5 8 2 2 3 3 0 0 0 0.055 0.50 -1998 MEPE matrix, extracellular phosphoglycoprotein with ASARM motif (bone) 356160 5 5 5 0 2 1 2 0 0 0 0.055 0.50 -1999 ASTL astacin-like metallo-endopeptidase (M12 family) 284256 5 5 5 3 1 2 1 0 1 0 0.055 0.50 -2000 HCCS holocytochrome c synthase (cytochrome c heme-lyase) 186144 3 3 3 0 1 1 1 0 0 0 0.055 0.50 -2001 TNFSF13 tumor necrosis factor (ligand) superfamily, member 13 162820 2 2 1 0 0 0 0 0 2 0 0.055 0.50 -2002 CACNA1E calcium channel, voltage-dependent, R type, alpha 1E subunit 1533772 21 18 21 13 12 6 2 0 1 0 0.055 0.50 -2003 PDLIM5 PDZ and LIM domain 5 447776 6 6 6 0 2 1 3 0 0 0 0.056 0.50 -2004 CLCN5 chloride channel 5 (nephrolithiasis 2, X-linked, Dent disease) 550336 5 5 5 6 1 2 1 0 1 0 0.056 0.50 -2005 RFC1 replication factor C (activator 1) 1, 145kDa 792904 14 9 14 1 1 6 4 0 3 0 0.056 0.50 -2006 TSGA10 testis specific, 10 484064 6 5 6 2 1 2 2 0 1 0 0.056 0.50 -2007 RBM26 RNA binding motif protein 26 678048 6 6 6 0 0 2 1 0 3 0 0.056 0.50 -2008 PCDHB15 protocadherin beta 15 493472 9 9 9 5 6 1 1 0 1 0 0.056 0.50 -2009 KIAA1609 KIAA1609 313376 4 4 4 2 0 3 1 0 0 0 0.056 0.50 -2010 COPS4 COP9 constitutive photomorphogenic homolog subunit 4 (Arabidopsis) 282464 3 3 3 0 0 1 0 0 2 0 0.056 0.50 -2011 CLCC1 chloride channel CLIC-like 1 379904 6 6 6 1 0 5 0 0 1 0 0.056 0.50 -2012 AP1G2 adaptor-related protein complex 1, gamma 2 subunit 547008 10 8 10 0 3 4 2 0 1 0 0.056 0.50 -2013 ATF6 activating transcription factor 6 465248 7 6 7 2 4 1 1 0 1 0 0.056 0.50 -2014 LGI1 leucine-rich, glioma inactivated 1 378952 5 5 5 1 2 1 0 0 2 0 0.056 0.50 -2015 SCN2B sodium channel, voltage-gated, type II, beta 148736 3 3 3 1 1 1 0 0 1 0 0.056 0.50 -2016 NFYA nuclear transcription factor Y, alpha 241920 3 3 3 1 0 3 0 0 0 0 0.056 0.50 -2017 SLC7A9 solute carrier family 7 (cationic amino acid transporter, y+ system), member 9 338688 6 6 6 2 4 0 1 0 1 0 0.056 0.50 -2018 MANSC1 MANSC domain containing 1 292992 4 4 4 0 1 2 0 0 1 0 0.056 0.50 -2019 TOR1A torsin family 1, member A (torsin A) 211708 5 5 5 1 3 0 1 0 1 0 0.057 0.51 -2020 OR4X2 olfactory receptor, family 4, subfamily X, member 2 205184 4 4 4 0 1 2 1 0 0 0 0.057 0.51 -2021 NLRP3 NLR family, pyrin domain containing 3 704928 16 10 16 3 4 8 2 0 2 0 0.057 0.51 -2022 NPSR1 neuropeptide S receptor 1 283360 6 6 5 0 4 1 1 0 0 0 0.057 0.51 -2023 EIF3A eukaryotic translation initiation factor 3, subunit A 941880 12 10 12 2 6 2 1 1 2 0 0.057 0.51 -2024 UBXN2A 180096 3 3 3 0 1 1 0 0 1 0 0.057 0.51 -2025 TCL1A T-cell leukemia/lymphoma 1A 79968 2 2 2 1 0 0 1 1 0 0 0.057 0.51 -2026 HAO1 hydroxyacid oxidase (glycolate oxidase) 1 256480 5 5 4 2 3 2 0 0 0 0 0.057 0.51 -2027 SFXN2 sideroflexin 2 226912 4 4 4 0 2 1 1 0 0 0 0.057 0.51 -2028 RIPPLY2 ripply2 homolog (zebrafish) 68096 2 2 2 0 0 1 1 0 0 0 0.057 0.51 -2029 ARHGAP24 Rho GTPase activating protein 24 537376 5 5 5 2 1 1 2 0 1 0 0.057 0.51 -2030 KRT37 keratin 37 308672 6 6 6 3 3 3 0 0 0 0 0.057 0.51 -2031 RLBP1 retinaldehyde binding protein 1 219968 6 5 4 3 4 0 1 0 1 0 0.057 0.51 -2032 IGLON5 162524 4 4 4 1 3 1 0 0 0 0 0.057 0.51 -2033 UGT3A2 UDP glycosyltransferase 3 family, polypeptide A2 358400 7 5 7 1 0 5 0 0 2 0 0.057 0.51 -2034 MEIS1 Meis homeobox 1 272688 5 5 5 1 1 3 1 0 0 0 0.057 0.51 -2035 NWD1 NACHT and WD repeat domain containing 1 950432 13 11 13 3 5 6 0 0 2 0 0.057 0.51 -2036 FOXI1 forkhead box I1 241592 5 5 5 2 3 1 1 0 0 0 0.057 0.51 -2037 ARPC1A actin related protein 2/3 complex, subunit 1A, 41kDa 257376 5 5 5 0 3 1 1 0 0 0 0.057 0.51 -2038 KCNMA1 potassium large conductance calcium-activated channel, subfamily M, alpha member 1 801568 12 10 12 6 4 3 4 0 1 0 0.058 0.51 -2039 C7orf58 chromosome 7 open reading frame 58 720160 12 8 12 1 5 1 4 0 2 0 0.058 0.51 -2040 ZC3H18 zinc finger CCCH-type containing 18 612524 8 8 7 1 2 2 0 0 4 0 0.058 0.51 -2041 ZNF451 zinc finger protein 451 707392 10 8 10 0 2 4 3 0 1 0 0.058 0.51 -2042 KCNRG potassium channel regulator 185248 4 3 4 0 0 3 0 0 1 0 0.058 0.51 -2043 VRK2 vaccinia related kinase 2 353944 5 5 5 0 2 1 1 0 1 0 0.058 0.51 -2044 XIRP2 xin actin-binding repeat containing 2 2740864 37 17 36 17 6 9 17 0 5 0 0.058 0.51 -2045 NLRP11 NLR family, pyrin domain containing 11 702912 9 8 9 4 4 1 2 0 2 0 0.058 0.51 -2046 PLK2 polo-like kinase 2 (Drosophila) 472528 7 5 6 0 1 1 1 0 4 0 0.058 0.51 -2047 PACRG PARK2 co-regulated 177856 4 3 4 2 1 1 1 0 1 0 0.058 0.51 -2048 ABCA8 ATP-binding cassette, sub-family A (ABC1), member 8 1096256 17 12 14 2 9 4 3 0 1 0 0.058 0.51 -2049 SNW1 SNW domain containing 1 373408 5 5 5 1 0 3 2 0 0 0 0.058 0.51 -2050 NEGR1 neuronal growth regulator 1 244832 4 4 4 3 2 0 2 0 0 0 0.058 0.51 -2051 DMKN dermokine 345816 6 5 6 1 2 2 1 0 1 0 0.058 0.51 -2052 CAMTA2 calmodulin binding transcription activator 2 832608 7 7 7 1 0 2 2 0 3 0 0.058 0.51 -2053 SLC46A3 solute carrier family 46, member 3 314944 5 4 5 0 1 0 2 0 2 0 0.058 0.51 -2054 TCTA T-cell leukemia translocation altered gene 72576 3 3 3 1 1 2 0 0 0 0 0.058 0.51 -2055 MECOM 850072 10 9 8 1 5 2 0 0 3 0 0.058 0.51 -2056 ZP4 zona pellucida glycoprotein 4 374304 7 6 7 1 2 3 1 0 1 0 0.058 0.51 -2057 LMBRD2 LMBR1 domain containing 2 482944 7 6 7 0 2 2 2 0 1 0 0.058 0.51 -2058 JARID2 jumonji, AT rich interactive domain 2 807260 11 9 11 5 2 4 4 0 1 0 0.059 0.51 -2059 DBX2 developing brain homeobox 2 140896 2 2 2 1 0 0 1 0 1 0 0.059 0.51 -2060 SI sucrase-isomaltase (alpha-glucosidase) 1270528 15 10 15 3 2 6 4 0 3 0 0.059 0.51 -2061 DUSP10 dual specificity phosphatase 10 327264 5 5 5 1 2 2 1 0 0 0 0.059 0.51 -2062 ISPD 254240 4 4 4 0 0 2 1 0 1 0 0.059 0.52 -2063 SCUBE2 signal peptide, CUB domain, EGF-like 2 661024 10 9 9 5 6 2 2 0 0 0 0.059 0.52 -2064 TIAM1 T-cell lymphoma invasion and metastasis 1 1088444 19 13 19 12 10 4 2 0 1 2 0.059 0.52 -2065 RALBP1 ralA binding protein 1 433944 6 6 6 0 2 0 3 0 1 0 0.059 0.52 -2066 BMPR1A bone morphogenetic protein receptor, type IA 368032 4 4 4 0 0 0 2 0 2 0 0.059 0.52 -2067 PPAT phosphoribosyl pyrophosphate amidotransferase 357952 6 5 6 0 2 1 2 1 0 0 0.059 0.52 -2068 MEMO1 mediator of cell motility 1 193760 5 4 5 1 1 2 2 0 0 0 0.059 0.52 -2069 OSBPL11 oxysterol binding protein-like 11 514304 7 6 7 1 2 0 3 0 2 0 0.059 0.52 -2070 PGM5 phosphoglucomutase 5 332052 5 5 5 0 1 1 2 0 1 0 0.060 0.52 -2071 CCDC80 coiled-coil domain containing 80 645344 11 9 11 2 5 3 2 0 1 0 0.060 0.52 -2072 TSPAN18 tetraspanin 18 173600 4 4 4 2 0 1 2 0 1 0 0.060 0.52 -2073 UBA5 ubiquitin-like modifier activating enzyme 5 257480 3 3 3 0 1 1 1 0 0 0 0.060 0.52 -2074 C16orf45 chromosome 16 open reading frame 45 143136 3 3 1 1 0 3 0 0 0 0 0.060 0.52 -2075 HNRNPL heterogeneous nuclear ribonucleoprotein L 321944 6 6 6 3 3 1 2 0 0 0 0.060 0.52 -2076 NAE1 NEDD8 activating enzyme E1 subunit 1 376488 4 4 4 0 0 1 1 0 2 0 0.060 0.52 -2077 CYP4F22 cytochrome P450, family 4, subfamily F, polypeptide 22 360572 7 7 7 2 4 1 0 0 2 0 0.060 0.52 -2078 RBM42 RNA binding motif protein 42 281796 6 6 6 1 4 1 0 0 1 0 0.060 0.52 -2079 TKTL2 transketolase-like 2 420140 7 7 7 2 3 3 1 0 0 0 0.060 0.52 -2080 RASA1 RAS p21 protein activator (GTPase activating protein) 1 704092 9 6 9 2 1 2 3 0 3 0 0.060 0.52 -2081 C6orf89 chromosome 6 open reading frame 89 244384 5 4 5 0 2 0 1 0 2 0 0.060 0.52 -2082 ESF1 ESF1, nucleolar pre-rRNA processing protein, homolog (S. cerevisiae) 583184 7 6 7 0 1 2 3 0 1 0 0.060 0.52 -2083 DCTPP1 117600 3 3 3 0 1 2 0 0 0 0 0.060 0.52 -2084 DGKB diacylglycerol kinase, beta 90kDa 548224 9 6 9 2 1 4 2 0 2 0 0.060 0.52 -2085 DNAJB8 DnaJ (Hsp40) homolog, subfamily B, member 8 157472 5 5 5 1 3 2 0 0 0 0 0.060 0.52 -2086 EIF2C4 eukaryotic translation initiation factor 2C, 4 590240 7 6 6 2 0 2 3 0 2 0 0.060 0.52 -2087 EYA1 eyes absent homolog 1 (Drosophila) 419328 5 5 5 3 2 1 2 0 0 0 0.060 0.52 -2088 PLEKHO2 pleckstrin homology domain containing, family O member 2 331200 5 5 5 0 2 2 1 0 0 0 0.060 0.52 -2089 LRCH3 leucine-rich repeats and calponin homology (CH) domain containing 3 458992 5 5 5 0 0 1 2 0 2 0 0.060 0.52 -2090 ZNF285 398580 5 5 5 2 2 2 1 0 0 0 0.060 0.52 -2091 CCNC cyclin C 196160 3 3 3 0 0 1 2 0 0 0 0.060 0.52 -2092 NLRP1 NLR family, pyrin domain containing 1 990600 12 11 12 5 4 6 2 0 0 0 0.061 0.52 -2093 OR4C15 olfactory receptor, family 4, subfamily C, member 15 250208 5 4 5 2 0 4 1 0 0 0 0.061 0.52 -2094 MPP6 membrane protein, palmitoylated 6 (MAGUK p55 subfamily member 6) 373408 6 5 6 1 0 2 3 0 1 0 0.061 0.52 -2095 CETN1 centrin, EF-hand protein, 1 110460 4 3 4 2 2 2 0 0 0 0 0.061 0.52 -2096 ATP8B4 ATPase, class I, type 8B, member 4 825888 12 10 12 1 1 8 3 0 0 0 0.061 0.52 -2097 TGM5 transglutaminase 5 496160 9 7 9 2 3 2 2 2 0 0 0.061 0.52 -2098 CALCR calcitonin receptor 343840 5 5 5 3 2 2 0 0 1 0 0.061 0.52 -2099 C2orf15 chromosome 2 open reading frame 15 86464 2 2 2 0 0 2 0 0 0 0 0.061 0.52 -2100 BRP44 brain protein 44 80212 2 2 2 0 0 2 0 0 0 0 0.061 0.52 -2101 ZIC4 Zic family member 4 216580 8 7 7 0 5 2 0 0 1 0 0.061 0.52 -2102 LAMA1 laminin, alpha 1 2115120 24 18 24 20 6 11 5 0 2 0 0.061 0.52 -2103 NAV3 neuron navigator 3 1623552 23 13 23 9 6 10 3 0 4 0 0.061 0.52 -2104 SLC13A1 solute carrier family 13 (sodium/sulfate symporters), member 1 413952 8 5 8 2 0 3 3 0 2 0 0.061 0.52 -2105 RHOT1 ras homolog gene family, member T1 474656 4 4 4 2 0 0 0 0 4 0 0.061 0.52 -2106 ZDHHC21 zinc finger, DHHC-type containing 21 185024 4 3 4 0 1 1 2 0 0 0 0.061 0.52 -2107 GCNT4 glucosaminyl (N-acetyl) transferase 4, core 2 (beta-1,6-N-acetylglucosaminyltransferase) 305564 7 5 7 0 3 1 2 0 1 0 0.061 0.52 -2108 ATP6AP1L 154784 2 2 2 2 0 1 0 0 1 0 0.061 0.52 -2109 PLCH1 phospholipase C, eta 1 1133888 17 13 17 3 4 8 5 0 0 0 0.061 0.52 -2110 TAAR6 trace amine associated receptor 6 233408 5 4 5 2 0 5 0 0 0 0 0.061 0.52 -2111 TTK TTK protein kinase 595392 10 6 10 0 3 4 2 0 1 0 0.061 0.52 -2112 ING5 inhibitor of growth family, member 5 71808 1 1 1 0 0 0 0 0 1 0 0.061 0.52 -2113 TAP1 transporter 1, ATP-binding cassette, sub-family B (MDR/TAP) 373268 6 4 5 5 0 0 1 0 3 2 0.061 0.52 -2114 PSME3 proteasome (prosome, macropain) activator subunit 3 (PA28 gamma; Ki) 189952 2 2 2 1 0 1 0 0 1 0 0.061 0.52 -2115 SAA1 serum amyloid A1 85344 3 3 3 0 0 2 1 0 0 0 0.061 0.52 -2116 OR4M1 olfactory receptor, family 4, subfamily M, member 1 211904 3 3 3 1 1 1 1 0 0 0 0.061 0.52 -2117 FAM190A 461344 6 6 6 2 2 3 0 0 1 0 0.061 0.52 -2118 CAND1 cullin-associated and neddylation-dissociated 1 840672 9 8 9 1 1 3 5 0 0 0 0.062 0.52 -2119 THNSL1 threonine synthase-like 1 (S. cerevisiae) 500864 7 6 7 0 0 5 2 0 0 0 0.062 0.52 -2120 ILDR1 immunoglobulin-like domain containing receptor 1 344288 8 6 8 3 2 4 1 0 1 0 0.062 0.52 -2121 ATRN attractin 894208 13 11 13 3 5 5 2 0 1 0 0.062 0.52 -2122 ZNF518A zinc finger protein 518A 994332 8 8 8 1 2 4 1 0 1 0 0.062 0.52 -2123 PKD2L1 polycystic kidney disease 2-like 1 555968 7 7 7 3 3 2 1 0 1 0 0.062 0.52 -2124 SPCS2 signal peptidase complex subunit 2 homolog (S. cerevisiae) 83440 1 1 1 0 0 0 0 0 1 0 0.062 0.52 -2125 KCNG1 potassium voltage-gated channel, subfamily G, member 1 303604 5 5 5 2 3 0 1 0 1 0 0.062 0.52 -2126 GAP43 growth associated protein 43 162792 3 3 3 0 1 0 1 0 1 0 0.062 0.52 -2127 CES1 carboxylesterase 1 (monocyte/macrophage serine esterase 1) 296296 5 5 5 1 1 3 1 0 0 0 0.062 0.52 -2128 SPRR3 small proline-rich protein 3 115136 2 2 2 0 0 2 0 0 0 0 0.062 0.52 -2129 C1S complement component 1, s subcomponent 472864 6 6 6 2 2 1 1 0 2 0 0.062 0.52 -2130 KRT85 keratin 85 348180 6 6 6 1 2 4 0 0 0 0 0.062 0.52 -2131 MLX MAX-like protein X 161504 4 4 4 0 2 1 1 0 0 0 0.062 0.52 -2132 ZNF791 zinc finger protein 791 391328 5 5 5 0 0 2 2 0 1 0 0.062 0.52 -2133 ZNF330 zinc finger protein 330 223776 3 3 3 1 0 1 1 0 1 0 0.062 0.52 -2134 ZNF10 zinc finger protein 10 389312 4 4 4 1 0 3 0 0 1 0 0.062 0.52 -2135 DYDC2 DPY30 domain containing 2 122304 2 2 2 1 1 1 0 0 0 0 0.062 0.52 -2136 FTO fat mass and obesity associated 341432 5 5 5 2 2 2 1 0 0 0 0.062 0.52 -2137 ANGPT2 angiopoietin 2 342048 5 5 5 0 2 0 3 0 0 0 0.062 0.52 -2138 GRB14 growth factor receptor-bound protein 14 344456 6 5 6 0 2 1 1 0 2 0 0.062 0.52 -2139 NAP1L2 nucleosome assembly protein 1-like 2 310688 5 5 5 1 0 3 1 0 1 0 0.062 0.52 -2140 CLEC7A C-type lectin domain family 7, member A 180096 3 3 3 0 0 0 3 0 0 0 0.062 0.52 -2141 TLE4 transducin-like enhancer of split 4 (E(sp1) homolog, Drosophila) 537964 7 7 7 3 2 1 1 1 2 0 0.062 0.52 -2142 CCDC148 coiled-coil domain containing 148 410368 5 5 5 1 1 1 2 0 1 0 0.062 0.53 -2143 ZNF222 zinc finger protein 222 306432 5 4 5 2 0 3 0 0 2 0 0.062 0.53 -2144 XIRP1 xin actin-binding repeat containing 1 1234688 13 12 13 1 7 1 3 0 2 0 0.062 0.53 -2145 MLH1 mutL homolog 1, colon cancer, nonpolyposis type 2 (E. coli) 525728 8 6 8 1 2 2 2 0 2 0 0.062 0.53 -2146 C13orf27 chromosome 13 open reading frame 27 157696 3 3 3 0 1 0 1 0 1 0 0.063 0.53 -2147 KRTAP4-3 keratin associated protein 4-3 132608 3 3 3 1 2 0 1 0 0 0 0.063 0.53 -2148 GPR141 G protein-coupled receptor 141 206528 3 3 3 1 0 0 2 0 1 0 0.063 0.53 -2149 ZMYND19 zinc finger, MYND-type containing 19 144256 2 2 1 0 0 0 0 0 2 0 0.063 0.53 -2150 ATP6V1G3 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G3 93856 2 2 2 0 0 1 1 0 0 0 0.063 0.53 -2151 TSKS 379876 6 6 6 5 0 3 1 2 0 0 0.063 0.53 -2152 SMC2 structural maintenance of chromosomes 2 826560 7 6 7 1 0 4 0 0 3 0 0.063 0.53 -2153 TMED10 transmembrane emp24-like trafficking protein 10 (yeast) 152320 5 3 5 0 0 3 0 0 0 2 0.063 0.53 -2154 RTP1 receptor (chemosensory) transporter protein 1 179200 5 5 5 0 2 2 1 0 0 0 0.063 0.53 -2155 SCN3A sodium channel, voltage-gated, type III, alpha subunit 1389472 16 12 16 3 6 4 3 0 3 0 0.063 0.53 -2156 MUC13 mucin 13, cell surface associated 353920 5 5 5 1 4 0 1 0 0 0 0.063 0.53 -2157 TRIM6 tripartite motif-containing 6 354592 6 6 6 0 1 4 0 0 1 0 0.063 0.53 -2158 A2M alpha-2-macroglobulin 1007952 11 9 10 5 3 4 1 0 3 0 0.063 0.53 -2159 S100A2 S100 calcium binding protein A2 67648 2 2 2 0 0 1 1 0 0 0 0.063 0.53 -2160 ADRA1B adrenergic, alpha-1B-, receptor 232484 5 5 5 1 3 1 0 0 1 0 0.064 0.53 -2161 HRC histidine rich calcium binding protein 475640 6 6 6 4 1 4 1 0 0 0 0.064 0.53 -2162 AICDA activation-induced cytidine deaminase 138208 4 4 4 1 2 2 0 0 0 0 0.064 0.53 -2163 MON2 MON2 homolog (S. cerevisiae) 1185856 13 10 13 2 1 8 2 0 2 0 0.064 0.53 -2164 CXorf65 129024 2 2 2 0 1 0 0 0 1 0 0.064 0.53 -2165 UGT2B7 UDP glucuronosyltransferase 2 family, polypeptide B7 361536 6 5 6 0 0 3 3 0 0 0 0.064 0.53 -2166 TRIM37 tripartite motif-containing 37 671776 9 8 9 1 4 3 0 0 2 0 0.064 0.53 -2167 RORB RAR-related orphan receptor B 315980 6 6 6 5 1 3 2 0 0 0 0.064 0.53 -2168 NTRK1 neurotrophic tyrosine kinase, receptor, type 1 504824 7 6 6 2 1 2 3 0 1 0 0.064 0.53 -2169 MC2R melanocortin 2 receptor (adrenocorticotropic hormone) 201152 5 4 5 5 2 0 3 0 0 0 0.064 0.53 -2170 LRRTM4 leucine rich repeat transmembrane neuronal 4 401184 6 6 6 3 3 2 0 0 1 0 0.064 0.53 -2171 C17orf97 206276 5 5 5 0 5 0 0 0 0 0 0.064 0.53 -2172 SNX13 sorting nexin 13 643816 9 7 9 1 4 1 2 0 2 0 0.064 0.53 -2173 LDHAL6A lactate dehydrogenase A-like 6A 230048 3 3 3 0 0 1 1 0 1 0 0.064 0.53 -2174 PYGO1 pygopus homolog 1 (Drosophila) 284928 5 4 5 1 1 1 3 0 0 0 0.064 0.53 -2175 GMPS guanine monphosphate synthetase 466960 5 5 5 0 0 2 1 0 2 0 0.064 0.53 -2176 SYPL2 synaptophysin-like 2 158144 3 3 3 0 1 1 0 0 1 0 0.064 0.53 -2177 PRL prolactin 155792 3 3 3 2 0 2 0 0 1 0 0.064 0.53 -2178 PPP1R3C protein phosphatase 1, regulatory (inhibitor) subunit 3C 215488 4 4 4 1 0 1 2 0 1 0 0.064 0.53 -2179 SLC26A5 solute carrier family 26, member 5 (prestin) 525952 7 6 7 2 2 2 1 0 2 0 0.064 0.53 -2180 NAA11 155456 4 4 4 0 1 3 0 0 0 0 0.064 0.53 -2181 C15orf40 chromosome 15 open reading frame 40 113120 2 2 2 1 1 0 1 0 0 0 0.064 0.53 -2182 SLC10A2 solute carrier family 10 (sodium/bile acid cotransporter family), member 2 239904 4 4 4 2 1 2 1 0 0 0 0.064 0.53 -2183 PDHA1 pyruvate dehydrogenase (lipoamide) alpha 1 269724 5 5 5 1 1 2 1 0 1 0 0.064 0.53 -2184 PNLDC1 poly(A)-specific ribonuclease (PARN)-like domain containing 1 366240 9 6 9 2 5 3 0 0 1 0 0.064 0.53 -2185 HTR1A 5-hydroxytryptamine (serotonin) receptor 1A 285152 5 5 5 7 1 3 0 1 0 0 0.064 0.53 -2186 SLC13A3 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 3 394800 6 6 6 3 3 2 1 0 0 0 0.064 0.53 -2187 PTER phosphotriesterase related 238784 5 5 5 1 2 2 1 0 0 0 0.064 0.53 -2188 C2orf34 chromosome 2 open reading frame 34 195776 4 4 4 0 2 2 0 0 0 0 0.064 0.53 -2189 SETDB1 SET domain, bifurcated 1 887040 8 8 8 1 5 0 1 0 2 0 0.064 0.53 -2190 KCNA2 potassium voltage-gated channel, shaker-related subfamily, member 2 336896 5 5 5 1 2 3 0 0 0 0 0.064 0.53 -2191 FANCM Fanconi anemia, complementation group M 1395604 16 12 16 2 2 5 6 0 3 0 0.065 0.53 -2192 TMEM185A transmembrane protein 185A 161784 3 2 3 0 0 1 0 0 0 2 0.065 0.53 -2193 ATG5 ATG5 autophagy related 5 homolog (S. cerevisiae) 191744 4 3 4 0 0 3 0 0 1 0 0.065 0.53 -2194 REG1B regenerating islet-derived 1 beta (pancreatic stone protein, pancreatic thread protein) 116704 2 2 2 0 0 2 0 0 0 0 0.065 0.53 -2195 SERPINB4 serpin peptidase inhibitor, clade B (ovalbumin), member 4 269024 5 5 5 6 1 3 1 0 0 0 0.065 0.53 -2196 ZKSCAN1 zinc finger with KRAB and SCAN domains 1 383488 5 5 5 0 1 2 1 0 1 0 0.065 0.53 -2197 MRC2 mannose receptor, C type 2 901068 10 10 10 1 5 3 0 1 1 0 0.065 0.53 -2198 PCCB propionyl Coenzyme A carboxylase, beta polypeptide 350488 4 4 4 0 2 1 0 0 1 0 0.065 0.53 -2199 TRPV5 transient receptor potential cation channel, subfamily V, member 5 504000 13 7 12 3 7 3 0 2 1 0 0.065 0.53 -2200 TBC1D22A TBC1 domain family, member 22A 324012 7 7 7 3 4 2 1 0 0 0 0.065 0.53 -2201 OR6F1 olfactory receptor, family 6, subfamily F, member 1 208544 3 3 3 2 0 1 1 0 1 0 0.065 0.53 -2202 C19orf76 51968 1 1 1 0 0 0 0 0 1 0 0.065 0.53 -2203 OR6Y1 olfactory receptor, family 6, subfamily Y, member 1 218456 4 4 4 1 1 3 0 0 0 0 0.065 0.53 -2204 CD226 CD226 molecule 231840 4 4 4 1 2 1 0 0 1 0 0.065 0.53 -2205 KIAA0319 KIAA0319 738976 8 8 8 3 3 4 0 0 1 0 0.065 0.53 -2206 SEC61A1 Sec61 alpha 1 subunit (S. cerevisiae) 330372 5 5 5 0 1 0 3 0 1 0 0.065 0.53 -2207 OR5H2 olfactory receptor, family 5, subfamily H, member 2 212576 5 4 5 0 2 2 1 0 0 0 0.065 0.53 -2208 ZNF676 zinc finger protein 676 398496 8 5 8 1 1 2 3 0 2 0 0.065 0.53 -2209 CPS1 carbamoyl-phosphate synthetase 1, mitochondrial 1047648 14 10 14 3 1 7 2 0 4 0 0.065 0.53 -2210 ZBTB26 zinc finger and BTB domain containing 26 297920 3 3 3 1 1 1 0 0 1 0 0.065 0.53 -2211 CEP55 centrosomal protein 55kDa 319648 4 4 4 1 0 1 2 0 1 0 0.065 0.53 -2212 MTG1 mitochondrial GTPase 1 homolog (S. cerevisiae) 204360 3 3 3 3 1 1 1 0 0 0 0.066 0.54 -2213 BBS1 Bardet-Biedl syndrome 1 413720 4 4 4 1 0 2 0 0 2 0 0.066 0.54 -2214 ERC2 ELKS/RAB6-interacting/CAST family member 2 655872 10 9 10 1 6 2 0 0 2 0 0.066 0.54 -2215 DVL2 dishevelled, dsh homolog 2 (Drosophila) 496692 9 8 8 2 4 2 1 0 2 0 0.066 0.54 -2216 HNMT histamine N-methyltransferase 251104 4 4 4 0 2 2 0 0 0 0 0.066 0.54 -2217 GCOM1 387744 7 6 7 2 4 2 1 0 0 0 0.066 0.54 -2218 PIPOX pipecolic acid oxidase 269920 4 4 4 0 0 2 0 0 2 0 0.066 0.54 -2219 DEFB135 54208 2 2 2 0 0 1 1 0 0 0 0.066 0.54 -2220 KCNJ3 potassium inwardly-rectifying channel, subfamily J, member 3 339528 6 5 6 3 0 2 3 0 1 0 0.066 0.54 -2221 OR2K2 olfactory receptor, family 2, subfamily K, member 2 213920 5 4 4 0 1 4 0 0 0 0 0.066 0.54 -2222 ITGA2 integrin, alpha 2 (CD49B, alpha 2 subunit of VLA-2 receptor) 821184 6 6 6 2 0 0 1 1 4 0 0.066 0.54 -2223 TTC30A tetratricopeptide repeat domain 30A 434756 6 6 6 2 1 3 1 0 1 0 0.066 0.54 -2224 NPVF neuropeptide VF precursor 135072 2 2 2 1 0 0 1 0 1 0 0.066 0.54 -2225 ATRX alpha thalassemia/mental retardation syndrome X-linked (RAD54 homolog, S. cerevisiae) 719264 8 5 8 3 2 5 1 0 0 0 0.066 0.54 -2226 SDPR serum deprivation response (phosphatidylserine binding protein) 288064 4 4 4 2 1 2 0 0 1 0 0.066 0.54 -2227 PRR16 proline rich 16 170240 3 3 3 2 1 2 0 0 0 0 0.066 0.54 -2228 WDR49 WD repeat domain 49 481600 5 5 5 2 0 4 0 0 1 0 0.066 0.54 -2229 FADS2 fatty acid desaturase 2 300736 4 4 4 0 3 0 1 0 0 0 0.066 0.54 -2230 ESCO1 establishment of cohesion 1 homolog 1 (S. cerevisiae) 573048 11 7 10 0 4 3 3 0 1 0 0.067 0.54 -2231 CSF3R colony stimulating factor 3 receptor (granulocyte) 617876 10 8 10 0 6 2 1 0 1 0 0.067 0.54 -2232 SLFN13 schlafen family member 13 598136 7 6 7 4 1 3 2 0 1 0 0.067 0.54 -2233 RUNDC3B RUN domain containing 3B 315568 7 5 7 0 2 1 2 0 2 0 0.067 0.54 -2234 PCDHAC1 protocadherin alpha subfamily C, 1 653548 10 9 10 5 5 3 1 0 1 0 0.067 0.54 -2235 GPR113 G protein-coupled receptor 113 595900 5 5 5 2 1 1 0 0 3 0 0.067 0.54 -2236 CIB3 calcium and integrin binding family member 3 131712 3 3 3 0 2 0 0 1 0 0 0.067 0.54 -2237 ACCN1 amiloride-sensitive cation channel 1, neuronal (degenerin) 436240 7 6 7 1 4 1 1 0 1 0 0.067 0.54 -2238 ZNF322B zinc finger protein 322B 204512 3 3 3 0 0 1 1 0 1 0 0.067 0.54 -2239 PSD2 pleckstrin and Sec7 domain containing 2 531328 8 8 8 2 5 2 0 0 1 0 0.067 0.54 -2240 CLUAP1 clusterin associated protein 1 288960 5 5 5 2 1 2 2 0 0 0 0.067 0.54 -2241 PHACTR3 phosphatase and actin regulator 3 360640 8 6 8 6 4 1 1 0 0 2 0.067 0.54 -2242 SEMA4F sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4F 516320 9 9 9 0 5 3 1 0 0 0 0.068 0.54 -2243 KLK2 kallikrein-related peptidase 2 188832 3 3 1 1 0 3 0 0 0 0 0.068 0.54 -2244 ZMYM4 zinc finger, MYM-type 4 1058176 11 8 10 0 2 3 2 0 4 0 0.068 0.54 -2245 KLHL9 kelch-like 9 (Drosophila) 416192 6 6 6 1 3 1 0 0 2 0 0.068 0.55 -2246 THOC1 THO complex 1 448172 5 4 5 0 2 0 0 0 3 0 0.068 0.55 -2247 SPEF2 sperm flagellar 2 1262912 13 10 13 2 5 4 2 0 2 0 0.068 0.55 -2248 NDUFA12 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 12 101696 2 2 2 0 0 1 0 0 1 0 0.068 0.55 -2249 PDE4D phosphodiesterase 4D, cAMP-specific (phosphodiesterase E3 dunce homolog, Drosophila) 527456 5 5 5 1 2 1 0 0 2 0 0.068 0.55 -2250 TULP3 tubby like protein 3 307552 5 4 5 0 1 1 2 0 1 0 0.068 0.55 -2251 RBBP7 retinoblastoma binding protein 7 292544 7 6 5 0 7 0 0 0 0 0 0.069 0.55 -2252 GOT1 glutamic-oxaloacetic transaminase 1, soluble (aspartate aminotransferase 1) 286272 6 5 5 0 2 1 1 0 2 0 0.069 0.55 -2253 EIF2C1 eukaryotic translation initiation factor 2C, 1 593600 10 10 9 1 6 1 2 1 0 0 0.069 0.55 -2254 OR1L8 olfactory receptor, family 1, subfamily L, member 8 209216 4 4 4 1 1 0 3 0 0 0 0.069 0.55 -2255 NTN4 netrin 4 418432 6 6 4 1 4 0 1 0 1 0 0.069 0.55 -2256 MND1 meiotic nuclear divisions 1 homolog (S. cerevisiae) 145012 2 2 2 0 0 0 1 0 1 0 0.069 0.55 -2257 EFCAB1 EF-hand calcium binding domain 1 147840 3 3 3 0 0 3 0 0 0 0 0.069 0.55 -2258 MRPL44 mitochondrial ribosomal protein L44 226016 5 5 5 0 1 2 2 0 0 0 0.069 0.55 -2259 CREG2 cellular repressor of E1A-stimulated genes 2 106496 2 2 2 1 0 1 1 0 0 0 0.069 0.55 -2260 SLC35A1 solute carrier family 35 (CMP-sialic acid transporter), member A1 229824 3 3 3 0 0 2 1 0 0 0 0.069 0.55 -2261 CLSTN2 calsyntenin 2 630992 8 8 8 4 4 2 2 0 0 0 0.069 0.55 -2262 ADAR adenosine deaminase, RNA-specific 837060 8 8 8 2 1 3 2 1 1 0 0.069 0.55 -2263 TSHR thyroid stimulating hormone receptor 553728 7 7 7 3 2 3 2 0 0 0 0.069 0.55 -2264 TTPAL 234080 3 3 3 1 1 1 0 0 1 0 0.069 0.55 -2265 SUPT6H suppressor of Ty 6 homolog (S. cerevisiae) 1192800 13 11 12 2 6 2 2 0 3 0 0.069 0.55 -2266 RNPEP arginyl aminopeptidase (aminopeptidase B) 354004 4 4 4 1 0 1 1 0 2 0 0.069 0.55 -2267 ATG4C ATG4 autophagy related 4 homolog C (S. cerevisiae) 317408 5 4 5 1 0 2 2 0 1 0 0.069 0.55 -2268 NHEJ1 nonhomologous end-joining factor 1 207872 3 3 3 0 0 0 2 0 1 0 0.069 0.55 -2269 PLD5 phospholipase D family, member 5 307104 5 5 5 3 1 2 2 0 0 0 0.069 0.55 -2270 GORASP1 golgi reassembly stacking protein 1, 65kDa 291928 4 4 4 2 1 0 2 0 1 0 0.069 0.55 -2271 GYPB glycophorin B (MNS blood group) 64944 2 2 2 0 0 1 1 0 0 0 0.069 0.55 -2272 TIAL1 TIA1 cytotoxic granule-associated RNA binding protein-like 1 271824 5 5 5 0 1 2 2 0 0 0 0.070 0.55 -2273 KLRK1 killer cell lectin-like receptor subfamily K, member 1 152096 3 3 3 0 0 1 2 0 0 0 0.070 0.55 -2274 ZNF501 zinc finger protein 501 183680 4 4 4 0 1 3 0 0 0 0 0.070 0.55 -2275 PCNA proliferating cell nuclear antigen 177744 3 3 3 1 0 2 1 0 0 0 0.070 0.55 -2276 ZNF624 zinc finger protein 624 586432 6 6 6 1 0 1 3 0 2 0 0.070 0.55 -2277 GCNT3 glucosaminyl (N-acetyl) transferase 3, mucin type 295904 4 4 4 0 0 2 0 0 2 0 0.070 0.55 -2278 PARP11 poly (ADP-ribose) polymerase family, member 11 230048 5 4 5 1 3 1 1 0 0 0 0.070 0.55 -2279 THEMIS 436380 9 6 9 0 4 2 1 0 2 0 0.070 0.55 -2280 DDX27 DEAD (Asp-Glu-Ala-Asp) box polypeptide 27 554400 6 6 5 6 3 0 1 0 2 0 0.070 0.55 -2281 CPA5 carboxypeptidase A5 303520 6 5 6 0 2 3 1 0 0 0 0.070 0.55 -2282 TTLL9 tubulin tyrosine ligase-like family, member 9 308224 7 6 7 1 3 4 0 0 0 0 0.070 0.55 -2283 NEK4 NIMA (never in mitosis gene a)-related kinase 4 535160 8 8 8 0 2 4 2 0 0 0 0.070 0.55 -2284 TLR3 toll-like receptor 3 611744 6 5 6 1 1 1 1 0 1 2 0.070 0.55 -2285 GSTA3 glutathione S-transferase A3 155232 4 3 4 0 0 1 2 0 1 0 0.071 0.56 -2286 ELF5 E74-like factor 5 (ets domain transcription factor) 185024 4 4 4 0 2 2 0 0 0 0 0.071 0.56 -2287 ZNF254 zinc finger protein 254 447104 4 4 4 2 0 1 2 0 1 0 0.071 0.56 -2288 MS4A7 membrane-spanning 4-domains, subfamily A, member 7 167328 3 3 3 0 2 0 1 0 0 0 0.071 0.56 -2289 C5 complement component 5 1162864 13 9 13 1 3 5 4 0 1 0 0.071 0.56 -2290 OR2A14 olfactory receptor, family 2, subfamily A, member 14 209888 3 3 3 1 1 1 0 0 1 0 0.071 0.56 -2291 ME3 malic enzyme 3, NADP(+)-dependent, mitochondrial 403928 5 5 5 2 0 4 1 0 0 0 0.071 0.56 -2292 SLC1A2 solute carrier family 1 (glial high affinity glutamate transporter), member 2 393400 4 4 4 1 0 2 1 0 1 0 0.071 0.56 -2293 ATP2B2 ATPase, Ca++ transporting, plasma membrane 2 855596 11 11 11 8 7 0 2 0 2 0 0.071 0.56 -2294 MUM1L1 melanoma associated antigen (mutated) 1-like 1 421496 6 5 6 0 1 3 2 0 0 0 0.071 0.56 -2295 PXDN peroxidasin homolog (Drosophila) 932628 15 12 14 9 9 3 0 0 3 0 0.071 0.56 -2296 GPR12 G protein-coupled receptor 12 226016 5 5 5 1 2 3 0 0 0 0 0.071 0.56 -2297 PRR21 168968 3 3 1 1 0 3 0 0 0 0 0.071 0.56 -2298 GJB3 gap junction protein, beta 3, 31kDa 183008 4 4 4 0 2 1 1 0 0 0 0.071 0.56 -2299 MPP4 membrane protein, palmitoylated 4 (MAGUK p55 subfamily member 4) 431504 8 6 8 1 3 3 1 0 1 0 0.071 0.56 -2300 ZHX3 zinc fingers and homeoboxes 3 644896 8 7 8 0 4 0 2 0 2 0 0.071 0.56 -2301 PRKRA protein kinase, interferon-inducible double stranded RNA dependent activator 218708 4 4 3 0 0 3 0 0 1 0 0.072 0.56 -2302 DNAH8 dynein, axonemal, heavy chain 8 3097696 33 19 33 10 9 8 10 1 5 0 0.072 0.56 -2303 CPA1 carboxypeptidase A1 (pancreatic) 291200 4 4 4 1 0 1 2 0 1 0 0.072 0.56 -2304 PSG3 pregnancy specific beta-1-glycoprotein 3 293664 5 5 5 0 2 1 1 0 1 0 0.072 0.56 -2305 CRB1 crumbs homolog 1 (Drosophila) 956256 10 8 10 10 3 5 2 0 0 0 0.072 0.56 -2306 OR9A4 olfactory receptor, family 9, subfamily A, member 4 212576 5 4 5 4 1 2 2 0 0 0 0.072 0.56 -2307 SNX19 sorting nexin 19 677152 10 7 10 0 1 2 3 1 3 0 0.072 0.56 -2308 MAPK8 mitogen-activated protein kinase 8 315616 7 5 7 0 1 2 3 1 0 0 0.072 0.56 -2309 KCNC2 potassium voltage-gated channel, Shaw-related subfamily, member 2 410592 8 6 8 2 3 3 0 1 1 0 0.072 0.56 -2310 KIAA1432 KIAA1432 928480 7 7 6 0 2 1 2 0 2 0 0.072 0.56 -2311 SPATS2 spermatogenesis associated, serine-rich 2 377664 5 5 5 2 2 1 2 0 0 0 0.072 0.56 -2312 NRN1L neuritin 1-like 106724 2 2 2 0 1 0 0 0 1 0 0.072 0.56 -2313 ZNF599 zinc finger protein 599 394464 9 6 9 1 2 3 3 1 0 0 0.072 0.56 -2314 PHF17 PHD finger protein 17 577696 8 7 8 3 1 6 0 1 0 0 0.072 0.56 -2315 FCRL3 Fc receptor-like 3 506464 9 6 9 4 2 4 2 0 1 0 0.072 0.56 -2316 VPS52 vacuolar protein sorting 52 homolog (S. cerevisiae) 400876 6 5 6 1 2 0 2 0 2 0 0.072 0.56 -2317 PRPF18 PRP18 pre-mRNA processing factor 18 homolog (S. cerevisiae) 239456 4 4 4 2 0 1 3 0 0 0 0.072 0.56 -2318 RRAD Ras-related associated with diabetes 150276 3 3 3 1 1 1 1 0 0 0 0.072 0.56 -2319 CPE carboxypeptidase E 284984 7 6 7 2 4 1 2 0 0 0 0.072 0.56 -2320 ENY2 enhancer of yellow 2 homolog (Drosophila) 73024 1 1 1 0 0 0 0 0 1 0 0.072 0.56 -2321 C20orf185 chromosome 20 open reading frame 185 327592 5 5 5 2 3 0 2 0 0 0 0.073 0.56 -2322 P2RY1 purinergic receptor P2Y, G-protein coupled, 1 241304 6 5 6 1 1 3 1 0 1 0 0.073 0.56 -2323 NIPSNAP1 nipsnap homolog 1 (C. elegans) 168248 2 2 2 0 1 0 0 0 1 0 0.073 0.56 -2324 MKRN1 makorin, ring finger protein, 1 292944 4 4 4 0 1 0 1 0 2 0 0.073 0.56 -2325 C6orf203 chromosome 6 open reading frame 203 166880 3 3 3 1 1 1 0 0 1 0 0.073 0.56 -2326 PCDHGB2 protocadherin gamma subfamily B, 2 599060 7 7 7 1 3 2 1 0 1 0 0.073 0.56 -2327 CCDC41 coiled-coil domain containing 41 485184 7 4 6 1 1 0 2 0 2 2 0.073 0.56 -2328 PKD2L2 polycystic kidney disease 2-like 2 425152 6 5 6 0 2 1 1 0 2 0 0.073 0.56 -2329 RBM43 RNA binding motif protein 43 244160 3 3 3 0 0 3 0 0 0 0 0.073 0.56 -2330 FIP1L1 FIP1 like 1 (S. cerevisiae) 422912 6 6 6 0 3 1 1 0 1 0 0.073 0.56 -2331 SLC4A7 solute carrier family 4, sodium bicarbonate cotransporter, member 7 838880 11 8 11 1 3 3 3 0 2 0 0.073 0.56 -2332 WDR36 WD repeat domain 36 660352 8 7 8 3 0 6 1 0 1 0 0.073 0.56 -2333 BCAS2 breast carcinoma amplified sequence 2 158144 2 2 2 0 0 1 0 0 1 0 0.073 0.57 -2334 AFM afamin 415744 7 5 7 1 1 2 3 0 1 0 0.073 0.57 -2335 TIAM2 T-cell lymphoma invasion and metastasis 2 1163736 16 13 16 4 4 5 5 0 2 0 0.073 0.57 -2336 IRX3 iroquois homeobox 3 172300 4 4 4 2 1 1 0 0 2 0 0.073 0.57 -2337 BHMT betaine-homocysteine methyltransferase 280672 5 4 5 2 1 2 0 0 2 0 0.073 0.57 -2338 OR2F1 olfactory receptor, family 2, subfamily F, member 1 214592 4 3 4 2 0 3 1 0 0 0 0.073 0.57 -2339 RYR3 ryanodine receptor 3 3313504 42 22 41 11 15 15 9 0 3 0 0.073 0.57 -2340 ZNF18 zinc finger protein 18 367584 6 6 6 0 0 6 0 0 0 0 0.073 0.57 -2341 HAVCR2 hepatitis A virus cellular receptor 2 209216 3 3 3 1 0 0 2 0 1 0 0.073 0.57 -2342 OR5B17 olfactory receptor, family 5, subfamily B, member 17 212576 5 4 4 0 3 1 1 0 0 0 0.073 0.57 -2343 ZNF607 zinc finger protein 607 471968 10 6 10 1 1 5 4 0 0 0 0.074 0.57 -2344 NETO2 neuropilin (NRP) and tolloid (TLL)-like 2 353024 5 5 5 3 1 2 1 0 1 0 0.074 0.57 -2345 DNTTIP2 deoxynucleotidyltransferase, terminal, interacting protein 2 506680 7 5 7 1 1 3 1 0 2 0 0.074 0.57 -2346 IQCE IQ motif containing E 474852 5 5 5 0 2 0 0 0 3 0 0.074 0.57 -2347 CER1 cerberus 1, cysteine knot superfamily, homolog (Xenopus laevis) 181888 3 3 3 0 1 2 0 0 0 0 0.074 0.57 -2348 GPR1 G protein-coupled receptor 1 240128 4 4 4 1 0 4 0 0 0 0 0.074 0.57 -2349 SLC2A10 solute carrier family 2 (facilitated glucose transporter), member 10 366912 5 5 5 4 1 2 2 0 0 0 0.074 0.57 -2350 SNRNP27 110208 2 2 2 1 0 1 0 0 1 0 0.074 0.57 -2351 C3orf39 chromosome 3 open reading frame 39 386960 8 7 7 1 6 1 1 0 0 0 0.074 0.57 -2352 CD72 CD72 molecule 238752 4 4 4 1 1 2 0 0 1 0 0.074 0.57 -2353 CORO2A coronin, actin binding protein, 2A 361016 6 5 5 3 0 3 3 0 0 0 0.074 0.57 -2354 MTOR 1764536 16 16 16 3 7 5 2 0 2 0 0.074 0.57 -2355 RNGTT RNA guanylyltransferase and 5'-phosphatase 416192 6 5 6 1 2 2 1 0 1 0 0.074 0.57 -2356 RASSF2 Ras association (RalGDS/AF-6) domain family member 2 228704 5 5 5 2 3 0 2 0 0 0 0.074 0.57 -2357 TXK TXK tyrosine kinase 368256 5 5 5 0 2 0 2 0 1 0 0.074 0.57 -2358 GLRA3 glycine receptor, alpha 3 321440 8 5 6 4 2 5 0 1 0 0 0.074 0.57 -2359 MAP2K1 mitogen-activated protein kinase kinase 1 263200 4 4 4 0 2 0 2 0 0 0 0.074 0.57 -2360 PCLO piccolo (presynaptic cytomatrix protein) 3447184 42 20 41 10 6 16 14 1 2 3 0.074 0.57 -2361 MNDA myeloid cell nuclear differentiation antigen 279552 6 5 6 3 0 2 4 0 0 0 0.074 0.57 -2362 C2orf49 chromosome 2 open reading frame 49 160076 3 3 3 0 0 1 1 0 1 0 0.074 0.57 -2363 POGZ pogo transposable element with ZNF domain 966560 9 8 9 1 3 2 0 0 4 0 0.074 0.57 -2364 DIP2B DIP2 disco-interacting protein 2 homolog B (Drosophila) 1070496 11 10 11 4 4 4 0 1 2 0 0.074 0.57 -2365 STXBP1 syntaxin binding protein 1 430524 6 6 6 0 2 2 1 1 0 0 0.074 0.57 -2366 G6PC3 glucose 6 phosphatase, catalytic, 3 233664 3 3 3 2 1 0 0 0 2 0 0.074 0.57 -2367 OR4S2 olfactory receptor, family 4, subfamily S, member 2 210560 3 3 3 1 1 0 2 0 0 0 0.074 0.57 -2368 SEZ6L seizure related 6 homolog (mouse)-like 678336 10 9 9 7 6 2 1 1 0 0 0.074 0.57 -2369 DEFB129 defensin, beta 129 125440 2 2 2 0 0 0 2 0 0 0 0.075 0.57 -2370 VARS2 valyl-tRNA synthetase 2, mitochondrial (putative) 528684 6 6 6 3 4 0 1 0 1 0 0.075 0.57 -2371 PNPLA4 patatin-like phospholipase domain containing 4 176064 3 3 3 0 0 0 2 0 1 0 0.075 0.57 -2372 IQCF1 IQ motif containing F1 142016 3 3 3 1 1 1 0 0 1 0 0.075 0.57 -2373 SLC17A9 289520 5 5 5 1 1 2 2 0 0 0 0.075 0.57 -2374 YME1L1 YME1-like 1 (S. cerevisiae) 524856 6 6 6 0 1 2 2 0 1 0 0.075 0.57 -2375 CCDC27 coiled-coil domain containing 27 428100 7 6 7 1 2 2 1 0 2 0 0.075 0.57 -2376 DIS3 DIS3 mitotic control homolog (S. cerevisiae) 616896 7 7 7 3 3 2 2 0 0 0 0.075 0.57 -2377 DNM1 dynamin 1 517284 11 10 10 6 3 5 2 0 1 0 0.075 0.57 -2378 DENND1A DENN/MADD domain containing 1A 644132 7 7 7 5 2 3 1 0 1 0 0.075 0.57 -2379 CTXN3 cortexin 3 56000 2 2 2 0 1 1 0 0 0 0 0.075 0.57 -2380 PRM1 protamine 1 36736 2 2 2 0 1 1 0 0 0 0 0.075 0.57 -2381 PGLYRP1 peptidoglycan recognition protein 1 135072 3 3 3 0 1 0 1 0 1 0 0.075 0.57 -2382 TMCO5A 202760 3 3 3 0 2 1 0 0 0 0 0.075 0.57 -2383 ARL5A ADP-ribosylation factor-like 5A 126336 2 2 1 0 0 0 0 0 2 0 0.075 0.57 -2384 GPX2 glutathione peroxidase 2 (gastrointestinal) 130144 2 2 2 0 0 1 0 0 1 0 0.075 0.57 -2385 SYCP2 synaptonemal complex protein 2 1067360 12 10 12 1 1 7 4 0 0 0 0.075 0.57 -2386 TCEB3B transcription elongation factor B polypeptide 3B (elongin A2) 492716 9 8 9 5 4 3 2 0 0 0 0.075 0.57 -2387 MOBKL3 MOB1, Mps One Binder kinase activator-like 3 (yeast) 159040 4 4 4 0 1 1 2 0 0 0 0.075 0.57 -2388 XRN2 5'-3' exoribonuclease 2 655208 8 7 8 2 1 2 1 0 4 0 0.075 0.57 -2389 LIX1 Lix1 homolog (chicken) 195552 5 4 5 0 3 0 1 0 1 0 0.076 0.57 -2390 SLC19A2 solute carrier family 19 (thiamine transporter), member 2 301140 3 3 3 0 0 0 1 0 2 0 0.076 0.57 -2391 BTBD1 BTB (POZ) domain containing 1 267904 4 4 4 0 1 2 1 0 0 0 0.076 0.57 -2392 TMEM104 transmembrane protein 104 321384 5 5 5 3 2 2 0 0 1 0 0.076 0.57 -2393 STX2 syntaxin 2 213920 3 3 3 0 1 0 1 0 1 0 0.076 0.57 -2394 S100A7 S100 calcium binding protein A7 70336 2 2 2 0 0 2 0 0 0 0 0.076 0.57 -2395 ARHGAP33 685464 8 8 8 1 4 1 0 0 3 0 0.076 0.57 -2396 PPM1N 156800 5 4 5 1 1 3 0 0 1 0 0.076 0.57 -2397 FUNDC1 FUN14 domain containing 1 104960 2 2 2 0 0 0 2 0 0 0 0.076 0.57 -2398 DPY30 dpy-30 homolog (C. elegans) 70784 2 2 2 0 0 0 2 0 0 0 0.076 0.57 -2399 HNRNPUL1 547848 8 7 8 2 5 1 1 0 1 0 0.076 0.57 -2400 MAP3K12 mitogen-activated protein kinase kinase kinase 12 590464 6 6 6 1 1 1 2 0 2 0 0.076 0.57 -2401 LY96 lymphocyte antigen 96 112672 2 2 2 1 1 0 1 0 0 0 0.076 0.57 -2402 ACADSB acyl-Coenzyme A dehydrogenase, short/branched chain 294312 5 4 5 1 2 1 1 0 1 0 0.076 0.57 -2403 TTC27 tetratricopeptide repeat domain 27 567816 8 6 8 1 2 4 0 0 2 0 0.076 0.57 -2404 SLAMF8 SLAM family member 8 196672 3 3 3 1 1 1 0 0 1 0 0.076 0.57 -2405 OR2T34 olfactory receptor, family 2, subfamily T, member 34 209804 4 4 3 1 1 3 0 0 0 0 0.076 0.57 -2406 NFE2 nuclear factor (erythroid-derived 2), 45kDa 253120 4 4 4 1 1 0 1 0 2 0 0.076 0.57 -2407 RNMT RNA (guanine-7-) methyltransferase 321608 4 4 4 0 1 0 2 0 1 0 0.076 0.57 -2408 MAGI2 membrane associated guanylate kinase, WW and PDZ domain containing 2 914676 11 9 11 1 2 3 4 0 2 0 0.076 0.57 -2409 ZNF721 zinc finger protein 721 622720 13 8 13 3 1 6 5 0 1 0 0.076 0.57 -2410 KCNAB1 potassium voltage-gated channel, shaker-related subfamily, beta member 1 400288 7 6 7 1 3 1 1 0 2 0 0.076 0.57 -2411 ACTN2 actinin, alpha 2 620256 8 7 8 7 5 3 0 0 0 0 0.076 0.57 -2412 TFPI tissue factor pathway inhibitor (lipoprotein-associated coagulation inhibitor) 240800 3 3 3 2 0 0 2 0 1 0 0.077 0.57 -2413 GPX3 glutathione peroxidase 3 (plasma) 153688 3 3 3 0 1 2 0 0 0 0 0.077 0.57 -2414 CLEC1A C-type lectin domain family 1, member A 194208 4 4 4 0 2 2 0 0 0 0 0.077 0.57 -2415 NKX3-1 NK3 homeobox 1 119952 3 3 3 0 2 0 0 0 1 0 0.077 0.57 -2416 TSLP thymic stromal lymphopoietin 111104 3 2 3 0 1 0 1 0 1 0 0.077 0.57 -2417 ASH1L ash1 (absent, small, or homeotic)-like (Drosophila) 2016672 24 15 24 5 12 5 3 0 4 0 0.077 0.57 -2418 DIRC1 disrupted in renal carcinoma 1 71456 1 1 1 0 0 1 0 0 0 0 0.077 0.57 -2419 GLYATL2 glycine-N-acyltransferase-like 2 202720 3 3 3 0 0 2 1 0 0 0 0.077 0.57 -2420 NLRP9 NLR family, pyrin domain containing 9 647304 8 7 8 6 2 4 0 0 2 0 0.077 0.57 -2421 TAP2 transporter 2, ATP-binding cassette, sub-family B (MDR/TAP) 307384 6 5 6 2 1 2 1 0 0 2 0.077 0.57 -2422 MYBPHL myosin binding protein H-like 245728 3 3 3 1 0 2 0 0 1 0 0.077 0.57 -2423 PDCD6 programmed cell death 6 125580 4 4 4 0 4 0 0 0 0 0 0.077 0.57 -2424 ZNF114 zinc finger protein 114 283584 5 5 5 1 1 2 1 0 1 0 0.077 0.57 -2425 SF1 splicing factor 1 424144 6 6 6 1 3 0 1 0 2 0 0.077 0.57 -2426 REEP2 receptor accessory protein 2 174160 4 4 4 0 1 1 2 0 0 0 0.077 0.57 -2427 FAM65A family with sequence similarity 65, member A 818464 11 10 11 1 4 6 1 0 0 0 0.077 0.58 -2428 FAM49A family with sequence similarity 49, member A 226688 3 3 3 1 0 2 1 0 0 0 0.077 0.58 -2429 CCNG1 cyclin G1 203392 3 3 3 0 0 2 1 0 0 0 0.078 0.58 -2430 PKIA protein kinase (cAMP-dependent, catalytic) inhibitor alpha 53536 1 1 1 0 0 1 0 0 0 0 0.078 0.58 -2431 METTL7A methyltransferase like 7A 166432 3 3 3 1 2 1 0 0 0 0 0.078 0.58 -2432 HSD17B10 hydroxysteroid (17-beta) dehydrogenase 10 175864 2 2 2 0 0 0 0 0 2 0 0.078 0.58 -2433 MAGEB18 melanoma antigen family B, 18 230568 3 3 3 2 0 2 1 0 0 0 0.078 0.58 -2434 DISP1 dispatched homolog 1 (Drosophila) 1026956 15 10 14 5 8 4 2 0 1 0 0.078 0.58 -2435 CIRH1A cirrhosis, autosomal recessive 1A (cirhin) 476000 6 6 6 0 1 3 1 0 1 0 0.078 0.58 -2436 ADCY1 adenylate cyclase 1 (brain) 683704 8 8 8 5 4 2 2 0 0 0 0.078 0.58 -2437 ARPC5L actin related protein 2/3 complex, subunit 5-like 72800 2 2 2 0 0 1 0 0 1 0 0.078 0.58 -2438 CCDC108 coiled-coil domain containing 108 1286832 15 12 15 4 1 7 4 0 3 0 0.078 0.58 -2439 WDR5B WD repeat domain 5B 223328 3 3 3 1 1 1 1 0 0 0 0.078 0.58 -2440 RAB11FIP2 RAB11 family interacting protein 2 (class I) 349216 4 4 4 0 0 1 2 0 1 0 0.078 0.58 -2441 AKR1B15 206304 3 3 3 0 1 2 0 0 0 0 0.078 0.58 -2442 LST1 leukocyte specific transcript 1 49724 1 1 1 1 0 0 0 0 1 0 0.078 0.58 -2443 FCER1A Fc fragment of IgE, high affinity I, receptor for; alpha polypeptide 177856 3 3 3 0 0 1 2 0 0 0 0.078 0.58 -2444 ZNF180 zinc finger protein 180 470176 12 7 11 2 0 11 1 0 0 0 0.078 0.58 -2445 BCL9 B-cell CLL/lymphoma 9 965216 12 10 12 2 3 6 0 0 3 0 0.079 0.58 -2446 PGAP3 174440 3 3 3 0 0 2 0 1 0 0 0.079 0.58 -2447 AP1AR 197488 3 3 3 0 2 0 0 0 1 0 0.079 0.58 -2448 SLC16A5 solute carrier family 16, member 5 (monocarboxylic acid transporter 6) 344512 4 4 4 0 0 1 1 0 2 0 0.079 0.58 -2449 ATP8A2 ATPase, aminophospholipid transporter-like, class I, type 8A, member 2 801184 15 10 15 2 3 7 4 0 1 0 0.079 0.58 -2450 CPSF7 326592 5 5 5 0 3 1 0 0 1 0 0.079 0.58 -2451 BCL10 B-cell CLL/lymphoma 10 159936 3 3 3 1 0 1 1 0 1 0 0.079 0.58 -2452 AGMAT agmatine ureohydrolase (agmatinase) 197624 4 4 3 2 3 0 0 0 1 0 0.079 0.58 -2453 SLC6A11 solute carrier family 6 (neurotransmitter transporter, GABA), member 11 408884 7 6 7 6 3 2 2 0 0 0 0.079 0.58 -2454 SULT1C4 sulfotransferase family, cytosolic, 1C, member 4 209888 3 3 1 0 2 0 0 1 0 0 0.079 0.58 -2455 ARHGEF5 Rho guanine nucleotide exchange factor (GEF) 5 655424 7 7 7 2 2 2 2 1 0 0 0.079 0.58 -2456 BRWD1 bromodomain and WD repeat domain containing 1 1624504 13 11 13 4 1 6 3 0 3 0 0.079 0.58 -2457 AGT angiotensinogen (serpin peptidase inhibitor, clade A, member 8) 329084 5 5 5 2 0 3 1 0 1 0 0.079 0.58 -2458 PSMB5 proteasome (prosome, macropain) subunit, beta type, 5 180096 2 2 2 0 1 0 0 0 1 0 0.079 0.58 -2459 CHML choroideremia-like (Rab escort protein 2) 442400 5 4 5 1 0 2 2 0 1 0 0.079 0.58 -2460 TP53TG5 200032 3 3 3 0 0 2 1 0 0 0 0.079 0.58 -2461 FPR3 formyl peptide receptor 3 238784 4 4 4 1 3 0 1 0 0 0 0.079 0.58 -2462 OR1J4 olfactory receptor, family 1, subfamily J, member 4 211904 3 3 3 2 0 1 1 0 1 0 0.079 0.58 -2463 BAMBI BMP and activin membrane-bound inhibitor homolog (Xenopus laevis) 160160 4 3 4 1 0 1 1 0 2 0 0.079 0.58 -2464 CLIP4 CAP-GLY domain containing linker protein family, member 4 487872 7 6 7 2 2 3 2 0 0 0 0.079 0.58 -2465 SYTL5 synaptotagmin-like 5 505432 7 6 7 2 1 3 3 0 0 0 0.079 0.58 -2466 SPATA9 spermatogenesis associated 9 175840 3 3 3 0 0 1 2 0 0 0 0.079 0.58 -2467 SMARCD1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 317856 5 4 5 1 1 2 1 0 1 0 0.079 0.58 -2468 XG Xg blood group 90608 2 2 2 1 1 0 1 0 0 0 0.079 0.58 -2469 TMCO2 transmembrane and coiled-coil domains 2 124768 3 3 3 0 2 0 1 0 0 0 0.079 0.58 -2470 ABCG2 ATP-binding cassette, sub-family G (WHITE), member 2 454272 9 6 9 4 2 3 2 0 2 0 0.079 0.58 -2471 BTF3 basic transcription factor 3 114212 2 2 2 0 1 1 0 0 0 0 0.079 0.58 -2472 MRPL20 mitochondrial ribosomal protein L20 44152 1 1 1 0 1 0 0 0 0 0 0.080 0.58 -2473 GSTM3 glutathione S-transferase M3 (brain) 148160 3 3 3 1 1 0 1 0 1 0 0.080 0.58 -2474 SGCD sarcoglycan, delta (35kDa dystrophin-associated glycoprotein) 212592 3 3 3 0 0 2 1 0 0 0 0.080 0.58 -2475 TNFSF15 tumor necrosis factor (ligand) superfamily, member 15 172928 3 3 3 1 1 0 2 0 0 0 0.080 0.58 -2476 CT45A5 75684 2 2 2 0 1 0 1 0 0 0 0.080 0.58 -2477 FGF6 fibroblast growth factor 6 143136 3 3 3 2 0 2 0 0 1 0 0.080 0.58 -2478 CHD6 chromodomain helicase DNA binding protein 6 1857156 19 16 19 6 5 7 5 0 2 0 0.080 0.58 -2479 ZNF582 zinc finger protein 582 351680 4 4 4 2 0 0 4 0 0 0 0.080 0.58 -2480 ACSL4 acyl-CoA synthetase long-chain family member 4 491008 4 4 4 1 0 1 1 0 2 0 0.080 0.58 -2481 ATP5L ATP synthase, H+ transporting, mitochondrial F0 complex, subunit G 72576 2 2 2 0 1 0 1 0 0 0 0.080 0.58 -2482 WDR91 WD repeat domain 91 516096 9 8 9 3 6 1 2 0 0 0 0.080 0.58 -2483 SLC35B3 solute carrier family 35, member B3 279104 4 4 4 1 1 2 0 0 1 0 0.080 0.58 -2484 MED8 mediator complex subunit 8 201488 3 3 3 0 1 2 0 0 0 0 0.080 0.58 -2485 FBXL17 F-box and leucine-rich repeat protein 17 212800 4 4 4 0 1 3 0 0 0 0 0.080 0.58 -2486 ARF4 ADP-ribosylation factor 4 127008 3 3 2 0 3 0 0 0 0 0 0.080 0.58 -2487 SMOC2 SPARC related modular calcium binding 2 285480 5 5 5 2 4 0 1 0 0 0 0.080 0.58 -2488 MARCH8 membrane-associated ring finger (C3HC4) 8 201600 4 4 4 1 3 0 1 0 0 0 0.080 0.58 -2489 KIF16B kinesin family member 16B 904148 14 10 13 1 6 3 1 0 4 0 0.081 0.58 -2490 OR8K3 olfactory receptor, family 8, subfamily K, member 3 211232 3 3 3 1 0 2 1 0 0 0 0.081 0.58 -2491 ZSWIM3 zinc finger, SWIM-type containing 3 470176 7 6 7 1 1 4 2 0 0 0 0.081 0.58 -2492 CEP290 centrosomal protein 290kDa 1630680 20 12 20 1 5 4 6 0 3 2 0.081 0.58 -2493 NXF1 nuclear RNA export factor 1 437696 7 7 7 2 5 0 1 0 1 0 0.081 0.58 -2494 C9orf80 chromosome 9 open reading frame 80 74144 3 2 3 0 0 1 2 0 0 0 0.081 0.58 -2495 HEATR1 HEAT repeat containing 1 1480864 16 13 16 3 4 10 2 0 0 0 0.081 0.58 -2496 PAX4 paired box 4 239232 5 5 5 1 1 3 1 0 0 0 0.081 0.58 -2497 LYRM2 LYR motif containing 2 62496 1 1 1 0 0 0 0 0 1 0 0.081 0.58 -2498 ZNF567 zinc finger protein 567 417312 6 5 6 0 1 4 1 0 0 0 0.081 0.58 -2499 OR52N4 olfactory receptor, family 52, subfamily N, member 4 217280 3 3 3 1 0 1 2 0 0 0 0.081 0.58 -2500 ACTL9 266588 6 6 5 0 6 0 0 0 0 0 0.081 0.59 -2501 METTL13 463708 8 7 8 1 3 4 1 0 0 0 0.081 0.59 -2502 PMS2 PMS2 postmeiotic segregation increased 2 (S. cerevisiae) 560308 6 5 6 5 1 1 1 0 3 0 0.081 0.59 -2503 WNT3 wingless-type MMTV integration site family, member 3 228704 4 4 4 2 2 1 1 0 0 0 0.081 0.59 -2504 HYOU1 hypoxia up-regulated 1 694400 8 8 7 1 5 2 1 0 0 0 0.081 0.59 -2505 NEIL1 nei endonuclease VIII-like 1 (E. coli) 258300 5 5 5 0 3 1 0 1 0 0 0.081 0.59 -2506 PGBD1 piggyBac transposable element derived 1 549696 6 6 6 1 1 2 2 0 1 0 0.081 0.59 -2507 SLN sarcolipin 22400 1 1 1 0 1 0 0 0 0 0 0.081 0.59 -2508 SIRPD signal-regulatory protein delta 136640 3 3 3 0 3 0 0 0 0 0 0.081 0.59 -2509 S100A9 S100 calcium binding protein A9 79072 2 2 2 0 1 0 1 0 0 0 0.082 0.59 -2510 ZNF552 zinc finger protein 552 266196 3 3 3 0 0 1 1 0 1 0 0.082 0.59 -2511 SCGB1D1 secretoglobin, family 1D, member 1 63840 2 2 2 0 0 2 0 0 0 0 0.082 0.59 -2512 CPA6 carboxypeptidase A6 304192 4 4 4 0 2 0 2 0 0 0 0.082 0.59 -2513 COQ2 coenzyme Q2 homolog, prenyltransferase (yeast) 187128 3 3 3 0 0 1 2 0 0 0 0.082 0.59 -2514 TAS2R8 taste receptor, type 2, member 8 209216 2 2 2 1 0 1 1 0 0 0 0.082 0.59 -2515 CPSF4 cleavage and polyadenylation specific factor 4, 30kDa 179620 4 4 4 1 2 1 1 0 0 0 0.082 0.59 -2516 SIGLEC12 sialic acid binding Ig-like lectin 12 409920 6 5 6 3 0 4 2 0 0 0 0.082 0.59 -2517 ZSCAN20 zinc finger and SCAN domain containing 20 707840 8 7 8 1 2 2 3 0 1 0 0.082 0.59 -2518 ZNF443 zinc finger protein 443 455168 11 6 10 0 2 8 0 0 1 0 0.082 0.59 -2519 FAM170A 225344 5 5 4 1 3 1 1 0 0 0 0.082 0.59 -2520 KIR3DL2 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 2 251392 4 4 4 0 2 1 1 0 0 0 0.082 0.59 -2521 SETD3 SET domain containing 3 420896 6 6 6 2 1 1 2 0 2 0 0.082 0.59 -2522 OR5R1 olfactory receptor, family 5, subfamily R, member 1 219296 3 3 3 2 0 1 2 0 0 0 0.082 0.59 -2523 STX16 syntaxin 16 220920 3 3 3 0 0 1 1 0 1 0 0.082 0.59 -2524 C2orf69 182448 3 3 3 0 1 1 1 0 0 0 0.082 0.59 -2525 PRSS1 protease, serine, 1 (trypsin 1) 171136 3 3 3 3 1 1 0 1 0 0 0.082 0.59 -2526 CRISPLD1 cysteine-rich secretory protein LCCL domain containing 1 349216 4 4 4 5 3 0 1 0 0 0 0.082 0.59 -2527 PLCXD2 phosphatidylinositol-specific phospholipase C, X domain containing 2 208544 3 3 3 2 2 0 1 0 0 0 0.082 0.59 -2528 KIF11 kinesin family member 11 730016 7 7 7 2 0 2 4 0 1 0 0.082 0.59 -2529 ABCA13 ATP-binding cassette, sub-family A (ABC1), member 13 3345244 41 19 41 7 13 11 13 0 2 2 0.082 0.59 -2530 TRIM41 tripartite motif-containing 41 427176 6 6 6 2 2 3 0 0 1 0 0.082 0.59 -2531 PHF20L1 PHD finger protein 20-like 1 723520 8 7 7 5 0 4 1 0 3 0 0.083 0.59 -2532 ZNF75A zinc finger protein 75a 202272 3 3 3 0 1 1 1 0 0 0 0.083 0.59 -2533 LSM5 LSM5 homolog, U6 small nuclear RNA associated (S. cerevisiae) 66304 1 1 1 0 0 0 0 0 1 0 0.083 0.59 -2534 GBF1 golgi-specific brefeldin A resistance factor 1 1283772 12 12 12 3 4 3 2 1 2 0 0.083 0.59 -2535 THAP3 THAP domain containing, apoptosis associated protein 3 104944 2 2 2 0 1 0 0 0 1 0 0.083 0.59 -2536 C12orf11 chromosome 12 open reading frame 11 489440 7 6 7 0 1 3 2 0 1 0 0.083 0.59 -2537 CSNK2B casein kinase 2, beta polypeptide 125748 2 2 2 0 0 1 0 0 1 0 0.083 0.59 -2538 CHIT1 chitinase 1 (chitotriosidase) 323680 5 5 5 1 3 1 0 0 1 0 0.083 0.59 -2539 SLC17A3 solute carrier family 17 (sodium phosphate), member 3 345184 5 5 5 0 2 1 2 0 0 0 0.083 0.59 -2540 TNC tenascin C (hexabrachion) 1503936 16 15 16 16 7 5 3 0 1 0 0.083 0.59 -2541 SUPT4H1 suppressor of Ty 4 homolog 1 (S. cerevisiae) 83776 2 2 2 0 1 0 0 0 1 0 0.083 0.59 -2542 CNPY1 canopy 1 homolog (zebrafish) 65184 2 2 2 0 1 1 0 0 0 0 0.083 0.59 -2543 MAP7D2 MAP7 domain containing 2 504328 8 6 7 1 3 0 2 0 3 0 0.083 0.59 -2544 HS2ST1 heparan sulfate 2-O-sulfotransferase 1 247072 4 4 4 1 2 1 0 0 1 0 0.083 0.59 -2545 CPLX4 complexin 4 110880 2 2 2 1 1 1 0 0 0 0 0.083 0.59 -2546 C11orf87 132864 4 4 4 1 3 1 0 0 0 0 0.083 0.59 -2547 HTR3D 5-hydroxytryptamine (serotonin) receptor 3 family member D 197120 3 3 3 0 0 3 0 0 0 0 0.084 0.59 -2548 TMCC1 transmembrane and coiled-coil domain family 1 443072 5 5 5 3 3 1 0 0 1 0 0.084 0.59 -2549 TRIM6-TRIM34 TRIM6-TRIM34 579040 8 7 8 1 1 4 2 0 1 0 0.084 0.59 -2550 KCNE1 potassium voltage-gated channel, Isk-related family, member 1 88256 3 3 3 1 2 1 0 0 0 0 0.084 0.59 -2551 BOD1 90104 2 2 2 0 0 1 1 0 0 0 0.084 0.59 -2552 PHLDB2 pleckstrin homology-like domain, family B, member 2 833728 8 8 8 1 3 2 2 0 1 0 0.084 0.59 -2553 GCNT1 glucosaminyl (N-acetyl) transferase 1, core 2 (beta-1,6-N-acetylglucosaminyltransferase) 289184 5 4 5 1 1 3 1 0 0 0 0.084 0.59 -2554 FAM64A family with sequence similarity 64, member A 164192 3 3 3 0 1 1 1 0 0 0 0.084 0.59 -2555 NANOS2 nanos homolog 2 (Drosophila) 94304 3 3 3 0 2 1 0 0 0 0 0.084 0.59 -2556 CSTL1 cystatin-like 1 100800 2 2 2 1 0 1 1 0 0 0 0.084 0.59 -2557 RNF25 ring finger protein 25 318080 3 3 3 0 0 0 2 0 1 0 0.084 0.59 -2558 TRERF1 transcriptional regulating factor 1 796992 10 9 10 2 3 4 2 0 1 0 0.084 0.59 -2559 BMI1 BMI1 polycomb ring finger oncogene 227808 3 3 3 0 1 1 1 0 0 0 0.084 0.59 -2560 IMPG2 interphotoreceptor matrix proteoglycan 2 851648 9 7 8 6 0 1 3 0 5 0 0.084 0.59 -2561 TSEN15 96888 2 2 2 0 0 2 0 0 0 0 0.084 0.59 -2562 PTGIS prostaglandin I2 (prostacyclin) synthase 328160 5 5 5 2 3 0 1 0 1 0 0.084 0.59 -2563 GPM6A glycoprotein M6A 195552 4 4 4 1 0 2 2 0 0 0 0.084 0.59 -2564 OR10K2 olfactory receptor, family 10, subfamily K, member 2 211232 2 2 2 0 0 1 1 0 0 0 0.084 0.59 -2565 ZNF714 zinc finger protein 714 368792 4 4 4 1 0 2 1 0 1 0 0.084 0.59 -2566 AR androgen receptor (dihydrotestosterone receptor; testicular feminization; spinal and bulbar muscular atrophy; Kennedy disease) 500364 6 6 6 6 3 0 3 0 0 0 0.084 0.59 -2567 GAD1 glutamate decarboxylase 1 (brain, 67kDa) 423360 9 7 9 1 4 5 0 0 0 0 0.085 0.59 -2568 SLC22A8 solute carrier family 22 (organic anion transporter), member 8 373856 5 5 5 1 3 0 1 0 1 0 0.085 0.59 -2569 CATSPER4 cation channel, sperm associated 4 326680 6 5 6 0 2 2 2 0 0 0 0.085 0.59 -2570 LRMP lymphoid-restricted membrane protein 351232 4 4 4 1 2 1 1 0 0 0 0.085 0.59 -2571 TMEM79 transmembrane protein 79 263760 4 4 4 1 2 0 2 0 0 0 0.085 0.59 -2572 SOX5 SRY (sex determining region Y)-box 5 529088 8 7 7 1 3 2 2 1 0 0 0.085 0.60 -2573 SDSL serine dehydratase-like 228032 4 4 4 0 1 2 1 0 0 0 0.085 0.60 -2574 B4GALT1 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 1 245280 6 5 6 1 3 1 2 0 0 0 0.085 0.60 -2575 LRRC20 leucine rich repeat containing 20 127904 3 3 3 1 2 0 0 0 1 0 0.085 0.60 -2576 ST8SIA1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 243628 3 3 3 1 0 0 2 0 1 0 0.085 0.60 -2577 OR5P2 olfactory receptor, family 5, subfamily P, member 2 217952 3 3 3 0 1 1 1 0 0 0 0.085 0.60 -2578 C10orf71 chromosome 10 open reading frame 71 478176 5 4 5 4 2 1 0 0 2 0 0.085 0.60 -2579 DYNC1I1 dynein, cytoplasmic 1, intermediate chain 1 448448 7 6 7 4 4 2 0 0 1 0 0.085 0.60 -2580 WFDC12 WAP four-disulfide core domain 12 77952 1 1 1 1 0 0 0 0 1 0 0.085 0.60 -2581 IFRD1 interferon-related developmental regulator 1 306264 5 4 5 0 2 1 1 0 1 0 0.086 0.60 -2582 DUSP27 dual specificity phosphatase 27 (putative) 754904 9 9 9 2 2 5 1 0 1 0 0.086 0.60 -2583 ZNF440 zinc finger protein 440 404096 6 4 6 1 2 0 1 0 1 2 0.086 0.60 -2584 LCMT1 leucine carboxyl methyltransferase 1 234976 3 3 3 0 0 1 1 1 0 0 0.086 0.60 -2585 RNF169 ring finger protein 169 375760 5 5 5 0 3 1 1 0 0 0 0.086 0.60 -2586 ANKRD1 ankyrin repeat domain 1 (cardiac muscle) 223104 6 5 6 1 1 3 2 0 0 0 0.086 0.60 -2587 C7orf11 chromosome 7 open reading frame 11 71396 2 2 2 0 0 2 0 0 0 0 0.086 0.60 -2588 SFTPD surfactant, pulmonary-associated protein D 258944 4 3 4 1 2 0 2 0 0 0 0.086 0.60 -2589 CALCOCO2 calcium binding and coiled-coil domain 2 311136 3 3 3 1 0 2 1 0 0 0 0.086 0.60 -2590 ZNF586 zinc finger protein 586 264544 4 4 4 0 2 1 1 0 0 0 0.086 0.60 -2591 PDCD5 programmed cell death 5 74368 2 2 2 0 0 1 1 0 0 0 0.086 0.60 -2592 DNAJC19 DnaJ (Hsp40) homolog, subfamily C, member 19 84000 2 2 2 0 0 1 1 0 0 0 0.086 0.60 -2593 ADAMTS3 ADAM metallopeptidase with thrombospondin type 1 motif, 3 830144 16 10 16 5 4 6 4 0 0 2 0.086 0.60 -2594 SPRR2F small proline-rich protein 2F 49952 1 1 1 0 0 1 0 0 0 0 0.086 0.60 -2595 RALGAPA1 1437480 13 12 12 1 2 7 4 0 0 0 0.086 0.60 -2596 SCFD1 sec1 family domain containing 1 445656 4 4 4 0 1 1 1 0 1 0 0.086 0.60 -2597 PCID2 PCI domain containing 2 277984 5 5 5 1 3 1 1 0 0 0 0.086 0.60 -2598 IL15 interleukin 15 114912 2 2 2 0 0 1 1 0 0 0 0.087 0.60 -2599 ZNF829 zinc finger protein 829 297696 10 5 10 1 0 10 0 0 0 0 0.087 0.60 -2600 TDRD1 tudor domain containing 1 822080 10 8 10 1 0 4 4 0 2 0 0.087 0.60 -2601 ZNF543 zinc finger protein 543 407456 7 6 7 1 3 2 2 0 0 0 0.087 0.60 -2602 HLX H2.0-like homeobox 287840 8 7 8 2 3 1 3 0 1 0 0.087 0.60 -2603 TMEM195 transmembrane protein 195 311360 6 4 6 0 1 1 3 0 1 0 0.087 0.60 -2604 HMMR hyaluronan-mediated motility receptor (RHAMM) 504000 6 6 6 0 0 5 1 0 0 0 0.087 0.60 -2605 POTEG 278292 5 4 5 0 0 2 2 0 1 0 0.087 0.60 -2606 ALKBH8 alkB, alkylation repair homolog 8 (E. coli) 168224 2 2 2 0 0 0 1 0 1 0 0.087 0.60 -2607 DARS aspartyl-tRNA synthetase 351680 4 4 4 0 0 2 2 0 0 0 0.087 0.60 -2608 KIF9 kinesin family member 9 549472 7 6 7 1 4 0 1 0 2 0 0.087 0.60 -2609 RCC2 regulator of chromosome condensation 2 315392 6 6 6 1 4 0 1 0 1 0 0.087 0.60 -2610 SEC14L4 SEC14-like 4 (S. cerevisiae) 267568 5 5 5 2 1 3 0 0 1 0 0.087 0.60 -2611 CMTM5 CKLF-like MARVEL transmembrane domain containing 5 109984 2 2 2 1 1 0 0 0 1 0 0.087 0.60 -2612 EAPP E2F-associated phosphoprotein 197568 3 3 3 0 0 2 1 0 0 0 0.087 0.60 -2613 SPAG1 sperm associated antigen 1 562240 6 6 6 0 0 2 3 0 1 0 0.087 0.60 -2614 TBX18 T-box 18 374640 7 7 7 2 5 1 1 0 0 0 0.087 0.60 -2615 STAT2 signal transducer and activator of transcription 2, 113kDa 590840 7 6 7 0 3 2 0 0 2 0 0.087 0.60 -2616 TRPM6 transient receptor potential cation channel, subfamily M, member 6 1394400 21 13 20 1 5 11 3 0 2 0 0.087 0.60 -2617 DCTN2 dynactin 2 (p50) 263600 4 4 4 1 2 0 2 0 0 0 0.087 0.60 -2618 SRRM4 366284 7 6 7 2 3 2 1 0 1 0 0.087 0.60 -2619 DMXL2 Dmx-like 2 2075576 22 14 22 4 3 6 8 1 2 2 0.087 0.60 -2620 NETO1 neuropilin (NRP) and tolloid (TLL)-like 1 376320 6 6 6 1 1 4 1 0 0 0 0.087 0.60 -2621 RABGAP1L RAB GTPase activating protein 1-like 592032 7 7 7 0 0 4 2 1 0 0 0.087 0.60 -2622 MYLK3 myosin light chain kinase 3 541940 6 6 6 0 1 2 2 0 1 0 0.087 0.60 -2623 GPR126 G protein-coupled receptor 126 874000 10 10 10 3 4 4 2 0 0 0 0.088 0.60 -2624 FKSG83 128576 2 2 2 0 1 0 1 0 0 0 0.088 0.60 -2625 OR2D3 olfactory receptor, family 2, subfamily D, member 3 223328 4 4 4 3 0 2 1 0 1 0 0.088 0.60 -2626 GJC3 gap junction protein, gamma 3, 30.2kDa 184156 2 2 2 1 1 0 0 0 1 0 0.088 0.60 -2627 KCNH1 potassium voltage-gated channel, subfamily H (eag-related), member 1 675136 12 9 12 2 5 3 2 0 0 2 0.088 0.60 -2628 NEK5 NIMA (never in mitosis gene a)-related kinase 5 476672 6 5 6 4 3 0 1 0 2 0 0.088 0.60 -2629 WBP5 WW domain binding protein 5 71456 2 2 2 0 1 1 0 0 0 0 0.088 0.60 -2630 KLRC3 killer cell lectin-like receptor subfamily C, member 3 148344 3 3 3 0 1 2 0 0 0 0 0.088 0.60 -2631 EPHX1 epoxide hydrolase 1, microsomal (xenobiotic) 313600 5 5 5 1 2 2 0 1 0 0 0.088 0.60 -2632 SERPINB10 serpin peptidase inhibitor, clade B (ovalbumin), member 10 273728 5 4 5 1 0 1 3 0 1 0 0.088 0.60 -2633 SH3BGR SH3 domain binding glutamic acid-rich protein 166656 4 4 4 0 1 1 1 0 1 0 0.088 0.60 -2634 RNF130 ring finger protein 130 246260 4 4 4 1 1 2 0 0 1 0 0.088 0.60 -2635 TMEM49 transmembrane protein 49 283360 4 4 4 1 2 1 1 0 0 0 0.088 0.60 -2636 ZNF645 zinc finger protein 645 287168 3 3 3 5 1 0 1 1 0 0 0.088 0.60 -2637 CCNL2 cyclin L2 178648 2 2 2 0 0 0 0 0 2 0 0.088 0.60 -2638 GUCA2B guanylate cyclase activator 2B (uroguanylin) 78624 2 2 2 0 2 0 0 0 0 0 0.088 0.60 -2639 SLC2A2 solute carrier family 2 (facilitated glucose transporter), member 2 362656 5 4 5 4 0 1 3 0 1 0 0.088 0.60 -2640 WDR3 WD repeat domain 3 657664 8 7 7 1 4 4 0 0 0 0 0.088 0.60 -2641 IFI35 interferon-induced protein 35 186472 3 3 3 0 1 1 0 0 1 0 0.088 0.60 -2642 PUS7L pseudouridylate synthase 7 homolog (S. cerevisiae)-like 478912 7 5 7 1 0 2 3 0 2 0 0.088 0.60 -2643 PPM1D protein phosphatase 1D magnesium-dependent, delta isoform 348684 4 4 4 1 0 2 1 0 1 0 0.088 0.60 -2644 WDR26 WD repeat domain 26 359968 5 5 5 1 2 2 1 0 0 0 0.088 0.60 -2645 OXSM 3-oxoacyl-ACP synthase, mitochondrial 310912 5 5 5 0 1 4 0 0 0 0 0.088 0.60 -2646 TANK TRAF family member-associated NFKB activator 294784 6 5 5 0 3 1 2 0 0 0 0.089 0.60 -2647 WDR52 WD repeat domain 52 678496 6 6 5 1 3 2 1 0 0 0 0.089 0.60 -2648 ZNF638 zinc finger protein 638 1354080 12 10 12 4 3 3 2 0 4 0 0.089 0.60 -2649 NBPF15 neuroblastoma breakpoint family, member 15 169372 4 4 4 0 2 1 1 0 0 0 0.089 0.60 -2650 MS4A2 membrane-spanning 4-domains, subfamily A, member 2 (Fc fragment of IgE, high affinity I, receptor for; beta polypeptide) 173152 3 3 3 1 0 1 1 0 1 0 0.089 0.60 -2651 TMEM71 transmembrane protein 71 196448 3 3 3 0 0 3 0 0 0 0 0.089 0.60 -2652 XKR6 XK, Kell blood group complex subunit-related family, member 6 334880 4 4 3 6 2 0 2 0 0 0 0.089 0.60 -2653 HIGD1B HIG1 domain family, member 1B 69888 2 2 2 0 2 0 0 0 0 0 0.089 0.60 -2654 CLDN10 claudin 10 207200 4 4 4 0 0 2 2 0 0 0 0.089 0.60 -2655 PHYHIPL phytanoyl-CoA 2-hydroxylase interacting protein-like 257824 3 3 3 0 0 1 1 0 1 0 0.089 0.60 -2656 ZBTB16 zinc finger and BTB domain containing 16 448896 7 7 7 2 3 2 1 0 1 0 0.089 0.60 -2657 DECR1 2,4-dienoyl CoA reductase 1, mitochondrial 234752 3 3 3 0 0 2 1 0 0 0 0.089 0.60 -2658 SMUG1 single-strand-selective monofunctional uracil-DNA glycosylase 1 183768 4 4 4 0 3 0 1 0 0 0 0.089 0.60 -2659 PSG1 pregnancy specific beta-1-glycoprotein 1 296128 4 4 3 1 1 1 1 1 0 0 0.089 0.61 -2660 KIAA1310 KIAA1310 495960 6 6 6 0 2 3 1 0 0 0 0.089 0.61 -2661 TRIP12 thyroid hormone receptor interactor 12 1375136 14 13 14 6 7 2 2 0 3 0 0.089 0.61 -2662 GTF2H1 general transcription factor IIH, polypeptide 1, 62kDa 381472 4 4 4 1 0 2 2 0 0 0 0.090 0.61 -2663 GNGT1 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 1 52192 1 1 1 0 0 1 0 0 0 0 0.090 0.61 -2664 OR7G1 olfactory receptor, family 7, subfamily G, member 1 206080 4 3 4 0 1 2 1 0 0 0 0.090 0.61 -2665 AKT2 v-akt murine thymoma viral oncogene homolog 2 335468 6 6 6 3 3 1 1 0 1 0 0.090 0.61 -2666 OR10H5 olfactory receptor, family 10, subfamily H, member 5 213248 3 3 3 0 2 1 0 0 0 0 0.090 0.61 -2667 ALLC allantoicase 269892 5 4 5 1 2 1 0 0 2 0 0.090 0.61 -2668 TLL2 tolloid-like 2 688772 10 10 9 5 6 2 2 0 0 0 0.090 0.61 -2669 HFM1 HFM1, ATP-dependent DNA helicase homolog (S. cerevisiae) 999040 13 8 13 4 3 4 3 0 3 0 0.090 0.61 -2670 RBM44 RNA binding motif protein 44 684936 11 7 11 1 1 5 2 0 3 0 0.090 0.61 -2671 DNAJA3 DnaJ (Hsp40) homolog, subfamily A, member 3 306488 4 4 4 2 0 3 0 0 1 0 0.090 0.61 -2672 GPR115 G protein-coupled receptor 115 472696 5 5 5 2 1 1 2 1 0 0 0.090 0.61 -2673 ITIH5L inter-alpha (globulin) inhibitor H5-like 879152 8 8 8 0 3 2 2 1 0 0 0.090 0.61 -2674 DUSP16 dual specificity phosphatase 16 452928 5 5 5 0 2 2 0 0 1 0 0.090 0.61 -2675 C9orf150 chromosome 9 open reading frame 150 131796 2 2 2 0 0 0 1 0 1 0 0.090 0.61 -2676 NT5C2 5'-nucleotidase, cytosolic II 392488 4 4 4 1 1 1 0 0 2 0 0.090 0.61 -2677 CAPZA3 capping protein (actin filament) muscle Z-line, alpha 3 200312 3 3 3 2 0 2 1 0 0 0 0.090 0.61 -2678 CIRBP cold inducible RNA binding protein 113820 2 2 2 0 0 1 0 0 1 0 0.090 0.61 -2679 CPZ carboxypeptidase Z 383472 6 6 6 0 3 1 0 0 2 0 0.090 0.61 -2680 ECHDC1 enoyl Coenzyme A hydratase domain containing 1 207872 3 3 3 0 1 0 2 0 0 0 0.090 0.61 -2681 SLC16A9 solute carrier family 16, member 9 (monocarboxylic acid transporter 9) 347200 5 4 5 0 0 1 3 0 1 0 0.090 0.61 -2682 KCNS3 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 3 331520 4 4 4 3 2 0 2 0 0 0 0.091 0.61 -2683 SLC44A1 solute carrier family 44, member 1 435992 6 5 6 4 2 2 1 0 1 0 0.091 0.61 -2684 GNAI1 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 1 231980 4 4 4 2 3 1 0 0 0 0 0.091 0.61 -2685 ZNF385B zinc finger protein 385B 324352 4 4 4 2 3 1 0 0 0 0 0.091 0.61 -2686 UBE2R2 ubiquitin-conjugating enzyme E2R 2 165088 3 3 3 0 2 0 1 0 0 0 0.091 0.61 -2687 C5orf42 chromosome 5 open reading frame 42 1426096 19 12 19 5 3 11 4 0 1 0 0.091 0.61 -2688 TMEM189-UBE2V1 TMEM189-UBE2V1 228480 6 5 6 0 3 2 1 0 0 0 0.091 0.61 -2689 CTSL1 cathepsin L1 230720 4 4 4 0 0 2 2 0 0 0 0.091 0.61 -2690 IQUB IQ motif and ubiquitin domain containing 542976 6 5 6 2 0 3 0 0 1 2 0.091 0.61 -2691 AVPR2 arginine vasopressin receptor 2 (nephrogenic diabetes insipidus) 243740 6 5 6 0 2 3 1 0 0 0 0.091 0.61 -2692 C4orf45 130144 2 2 2 0 0 0 1 0 1 0 0.091 0.61 -2693 PGC progastricsin (pepsinogen C) 269472 5 4 5 0 2 2 1 0 0 0 0.091 0.61 -2694 FAM163B 34348 1 1 1 0 1 0 0 0 0 0 0.091 0.61 -2695 MELK maternal embryonic leucine zipper kinase 453376 6 5 6 2 1 2 1 0 2 0 0.091 0.61 -2696 EIF5A eukaryotic translation initiation factor 5A 128800 2 2 2 0 1 0 1 0 0 0 0.091 0.61 -2697 NTAN1 N-terminal asparagine amidase 198912 3 3 3 1 1 0 1 0 1 0 0.091 0.61 -2698 UBE4B ubiquitination factor E4B (UFD2 homolog, yeast) 900704 9 9 9 2 5 1 1 0 2 0 0.091 0.61 -2699 TRIM43 tripartite motif-containing 43 168000 3 3 3 0 0 3 0 0 0 0 0.091 0.61 -2700 CDC20B cell division cycle 20 homolog B (S. cerevisiae) 359744 4 4 4 1 2 0 1 0 1 0 0.091 0.61 -2701 PRICKLE1 prickle homolog 1 (Drosophila) 565376 11 7 11 1 3 4 3 0 1 0 0.091 0.61 -2702 ZNF430 zinc finger protein 430 388192 5 5 5 0 1 2 2 0 0 0 0.092 0.61 -2703 PLEKHA3 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 3 209440 3 3 3 0 0 1 1 0 1 0 0.092 0.61 -2704 RFTN1 raftlin, lipid raft linker 1 397152 5 5 5 3 1 3 0 0 1 0 0.092 0.61 -2705 MYPN myopalladin 904736 10 9 10 3 3 5 0 0 0 2 0.092 0.61 -2706 USP2 ubiquitin specific peptidase 2 393292 5 5 5 0 2 2 0 0 1 0 0.092 0.61 -2707 UBXN4 353696 5 5 5 1 0 4 1 0 0 0 0.092 0.61 -2708 UBB ubiquitin B 155456 2 2 2 0 1 0 0 0 1 0 0.092 0.61 -2709 PDE9A phosphodiesterase 9A 435008 6 6 6 0 3 0 1 0 2 0 0.092 0.61 -2710 OR5H6 olfactory receptor, family 5, subfamily H, member 6 219968 3 3 3 0 1 1 0 0 1 0 0.092 0.61 -2711 APOC1 apolipoprotein C-I 59136 1 1 1 0 0 0 0 0 1 0 0.092 0.61 -2712 S100B S100 calcium binding protein B 64288 2 2 2 0 1 1 0 0 0 0 0.092 0.61 -2713 C9orf103 chromosome 9 open reading frame 103 98112 2 2 2 0 0 2 0 0 0 0 0.092 0.61 -2714 MLC1 megalencephalic leukoencephalopathy with subcortical cysts 1 242816 5 5 5 0 3 1 1 0 0 0 0.093 0.61 -2715 OR2AT4 olfactory receptor, family 2, subfamily AT, member 4 216608 3 3 3 0 0 1 1 0 1 0 0.093 0.62 -2716 PLSCR4 phospholipid scramblase 4 228928 5 4 5 1 2 3 0 0 0 0 0.093 0.62 -2717 NEDD1 neural precursor cell expressed, developmentally down-regulated 1 458528 7 6 7 1 4 2 1 0 0 0 0.093 0.62 -2718 SMG5 Smg-5 homolog, nonsense mediated mRNA decay factor (C. elegans) 703136 8 7 8 1 2 2 1 0 3 0 0.093 0.62 -2719 UBE2B ubiquitin-conjugating enzyme E2B (RAD6 homolog) 96632 2 2 2 0 1 0 0 0 1 0 0.093 0.62 -2720 CCDC158 769216 8 7 8 1 1 3 2 0 2 0 0.093 0.62 -2721 NUCB1 nucleobindin 1 312368 4 4 4 0 1 0 1 0 2 0 0.093 0.62 -2722 ABL2 v-abl Abelson murine leukemia viral oncogene homolog 2 (arg, Abelson-related gene) 827008 7 7 7 2 1 4 1 0 1 0 0.093 0.62 -2723 ZC3HC1 zinc finger, C3HC-type containing 1 346976 7 5 7 3 1 3 3 0 0 0 0.093 0.62 -2724 CPSF6 cleavage and polyadenylation specific factor 6, 68kDa 378504 6 6 6 1 3 2 1 0 0 0 0.093 0.62 -2725 SAP130 Sin3A-associated protein, 130kDa 706496 8 8 8 3 3 2 1 1 1 0 0.093 0.62 -2726 F5 coagulation factor V (proaccelerin, labile factor) 1517600 21 14 21 2 3 13 3 0 2 0 0.093 0.62 -2727 C16orf68 chromosome 16 open reading frame 68 281036 4 4 4 1 1 1 0 0 2 0 0.094 0.62 -2728 PROK2 prokineticin 2 53536 1 1 1 0 0 1 0 0 0 0 0.094 0.62 -2729 SLC44A3 solute carrier family 44, member 3 420896 6 5 6 0 1 1 2 0 2 0 0.094 0.62 -2730 SLC6A13 solute carrier family 6 (neurotransmitter transporter, GABA), member 13 417760 6 6 6 1 2 1 3 0 0 0 0.094 0.62 -2731 POLR3B polymerase (RNA) III (DNA directed) polypeptide B 787136 11 8 11 3 5 2 3 0 1 0 0.094 0.62 -2732 CNNM1 cyclin M1 411808 9 8 9 2 5 2 2 0 0 0 0.094 0.62 -2733 ZNF280C zinc finger protein 280C 506760 6 5 6 3 1 2 2 0 1 0 0.094 0.62 -2734 OR51B5 olfactory receptor, family 51, subfamily B, member 5 211232 3 3 3 1 0 2 1 0 0 0 0.094 0.62 -2735 VRK3 vaccinia related kinase 3 329952 4 4 4 0 0 4 0 0 0 0 0.094 0.62 -2736 TRIM45 tripartite motif-containing 45 390768 5 5 5 3 1 3 0 0 1 0 0.094 0.62 -2737 ALDH1A2 aldehyde dehydrogenase 1 family, member A2 360416 6 6 6 1 4 2 0 0 0 0 0.094 0.62 -2738 ZNF284 zinc finger protein 284 402752 6 5 6 0 0 5 1 0 0 0 0.094 0.62 -2739 ATP6AP2 ATPase, H+ transporting, lysosomal accessory protein 2 234752 3 3 2 0 0 1 0 0 2 0 0.094 0.62 -2740 RTN1 reticulon 1 450548 7 7 7 1 4 1 2 0 0 0 0.094 0.62 -2741 GRP gastrin-releasing peptide 70784 1 1 1 0 0 0 1 0 0 0 0.094 0.62 -2742 EVI2A ecotropic viral integration site 2A 176512 2 2 2 0 0 1 0 0 1 0 0.094 0.62 -2743 TSSK3 testis-specific serine kinase 3 182560 4 4 4 2 3 1 0 0 0 0 0.095 0.62 -2744 CARD18 62944 1 1 1 0 0 1 0 0 0 0 0.095 0.62 -2745 GNAO1 guanine nucleotide binding protein (G protein), alpha activating activity polypeptide O 323584 5 5 5 1 3 1 1 0 0 0 0.095 0.62 -2746 GOLPH3L golgi phosphoprotein 3-like 195776 2 2 2 0 0 0 1 0 1 0 0.095 0.62 -2747 CCDC93 coiled-coil domain containing 93 437232 5 5 4 1 1 2 0 0 2 0 0.095 0.62 -2748 SH3GLB1 SH3-domain GRB2-like endophilin B1 254016 4 4 4 1 0 3 1 0 0 0 0.095 0.62 -2749 UBLCP1 ubiquitin-like domain containing CTD phosphatase 1 223328 3 3 3 1 0 1 1 0 1 0 0.095 0.62 -2750 LSM2 LSM2 homolog, U6 small nuclear RNA associated (S. cerevisiae) 43120 1 1 1 0 0 1 0 0 0 0 0.095 0.62 -2751 USP6 ubiquitin specific peptidase 6 (Tre-2 oncogene) 963508 10 7 10 1 1 5 1 0 3 0 0.095 0.62 -2752 RFXAP regulatory factor X-associated protein 108656 1 1 1 0 0 0 0 0 1 0 0.095 0.62 -2753 ALDH5A1 aldehyde dehydrogenase 5 family, member A1 (succinate-semialdehyde dehydrogenase) 299884 4 4 4 2 1 2 1 0 0 0 0.095 0.62 -2754 UPRT uracil phosphoribosyltransferase (FUR1) homolog (S. cerevisiae) 214592 4 3 4 0 3 0 0 0 1 0 0.095 0.62 -2755 TTC23L 251328 4 4 4 1 2 1 0 0 1 0 0.095 0.62 -2756 ARHGEF11 Rho guanine nucleotide exchange factor (GEF) 11 1087072 11 10 11 4 4 3 1 0 3 0 0.095 0.62 -2757 FCRLA Fc receptor-like A 257824 3 3 3 1 1 2 0 0 0 0 0.095 0.62 -2758 P2RY4 pyrimidinergic receptor P2Y, G-protein coupled, 4 246848 6 5 6 2 5 1 0 0 0 0 0.095 0.62 -2759 IL24 interleukin 24 145152 2 2 2 0 0 0 2 0 0 0 0.095 0.62 -2760 ZRANB2 zinc finger, RAN-binding domain containing 2 239904 4 4 4 1 3 1 0 0 0 0 0.096 0.62 -2761 ACSS2 acyl-CoA synthetase short-chain family member 2 458056 6 6 6 0 2 3 0 1 0 0 0.096 0.62 -2762 MAGEA10 melanoma antigen family A, 10 249536 3 3 3 1 1 1 1 0 0 0 0.096 0.62 -2763 TESK2 testis-specific kinase 2 393344 3 3 3 2 1 0 0 0 2 0 0.096 0.62 -2764 SRPX sushi-repeat-containing protein, X-linked 298816 4 4 4 1 2 0 1 0 1 0 0.096 0.62 -2765 ITGA8 integrin, alpha 8 709576 8 8 8 2 3 2 0 1 2 0 0.096 0.62 -2766 LRRTM3 leucine rich repeat transmembrane neuronal 3 393792 5 5 5 1 1 1 2 0 1 0 0.096 0.62 -2767 ICA1L islet cell autoantigen 1,69kDa-like 337568 5 5 5 1 0 4 1 0 0 0 0.096 0.62 -2768 EMX1 empty spiracles homeobox 1 63168 2 2 2 0 1 0 0 0 1 0 0.096 0.62 -2769 EFNA5 ephrin-A5 158368 5 3 5 1 3 2 0 0 0 0 0.096 0.62 -2770 INO80E 144140 2 2 2 0 0 0 0 1 1 0 0.096 0.62 -2771 PPM1A protein phosphatase 1A (formerly 2C), magnesium-dependent, alpha isoform 308664 7 5 7 1 4 0 3 0 0 0 0.096 0.62 -2772 RNF103 ring finger protein 103 464576 6 6 6 1 3 2 0 0 1 0 0.096 0.62 -2773 TXNDC6 thioredoxin domain containing 6 185472 3 3 2 2 2 0 1 0 0 0 0.096 0.62 -2774 UBE2E1 ubiquitin-conjugating enzyme E2E 1 (UBC4/5 homolog, yeast) 134848 3 3 3 1 0 2 1 0 0 0 0.096 0.62 -2775 PODXL2 podocalyxin-like 2 330484 5 3 5 0 2 1 0 0 2 0 0.096 0.62 -2776 MRGPRX3 MAS-related GPR, member X3 217952 4 4 4 1 2 1 1 0 0 0 0.096 0.62 -2777 IQCA1 525248 9 7 9 1 5 2 1 0 1 0 0.096 0.62 -2778 SLCO5A1 solute carrier organic anion transporter family, member 5A1 578508 9 8 9 2 3 3 2 0 1 0 0.096 0.62 -2779 ANKRD30A ankyrin repeat domain 30A 865676 7 6 7 6 1 2 1 0 3 0 0.096 0.62 -2780 ZNF484 zinc finger protein 484 576800 9 6 8 1 2 4 3 0 0 0 0.096 0.62 -2781 TNFRSF13B tumor necrosis factor receptor superfamily, member 13B 195916 4 4 4 0 2 2 0 0 0 0 0.096 0.62 -2782 NRBF2 nuclear receptor binding factor 2 192164 2 2 2 0 0 1 0 0 1 0 0.096 0.62 -2783 ACCN3 amiloride-sensitive cation channel 3 333032 4 4 4 2 0 1 0 1 2 0 0.097 0.62 -2784 UBE2L3 ubiquitin-conjugating enzyme E2L 3 100800 2 2 2 1 0 0 2 0 0 0 0.097 0.62 -2785 KLHDC5 kelch domain containing 5 281148 5 5 5 1 2 3 0 0 0 0 0.097 0.62 -2786 SNRNP25 93584 2 2 2 0 0 1 1 0 0 0 0.097 0.62 -2787 SLC24A5 solute carrier family 24, member 5 344736 4 4 4 1 2 2 0 0 0 0 0.097 0.62 -2788 HMGA2 high mobility group AT-hook 2 64632 1 1 1 0 0 0 1 0 0 0 0.097 0.62 -2789 SLC2A14 solute carrier family 2 (facilitated glucose transporter), member 14 338688 7 6 7 2 2 5 0 0 0 0 0.097 0.62 -2790 SERPINB12 serpin peptidase inhibitor, clade B (ovalbumin), member 12 279104 4 4 4 1 1 2 1 0 0 0 0.097 0.62 -2791 CENPJ centromere protein J 914144 11 8 11 3 3 2 3 0 3 0 0.097 0.62 -2792 CFTR cystic fibrosis transmembrane conductance regulator (ATP-binding cassette sub-family C, member 7) 1019424 12 8 12 3 1 5 3 0 3 0 0.097 0.62 -2793 HEY1 hairy/enhancer-of-split related with YRPW motif 1 184628 3 3 3 2 0 1 1 0 1 0 0.097 0.62 -2794 UTRN utrophin 2373952 25 16 25 5 3 14 4 0 2 2 0.097 0.62 -2795 KIAA1409 KIAA1409 1694560 27 15 27 8 7 14 4 1 1 0 0.097 0.62 -2796 SERGEF secretion regulating guanine nucleotide exchange factor 303968 4 4 4 1 0 4 0 0 0 0 0.097 0.62 -2797 GPBP1L1 GC-rich promoter binding protein 1-like 1 328160 4 4 4 0 1 3 0 0 0 0 0.097 0.62 -2798 COL4A1 collagen, type IV, alpha 1 1145760 14 11 14 2 7 1 4 0 2 0 0.097 0.62 -2799 SDC2 syndecan 2 131520 3 3 3 2 1 2 0 0 0 0 0.097 0.62 -2800 IL20RA interleukin 20 receptor, alpha 357952 5 5 4 0 3 1 0 0 1 0 0.097 0.62 -2801 BACH2 BTB and CNC homology 1, basic leucine zipper transcription factor 2 565040 7 7 7 2 5 1 1 0 0 0 0.097 0.62 -2802 MEIS3 Meis homeobox 3 279136 5 5 5 0 5 0 0 0 0 0 0.097 0.62 -2803 SYCE1 synaptonemal complex central element protein 1 196776 3 3 3 0 1 0 1 0 1 0 0.097 0.62 -2804 GLCCI1 glucocorticoid induced transcript 1 277760 3 3 3 1 1 0 1 0 1 0 0.097 0.62 -2805 TTYH2 tweety homolog 2 (Drosophila) 372064 6 6 6 2 2 2 2 0 0 0 0.097 0.62 -2806 OR1C1 olfactory receptor, family 1, subfamily C, member 1 212576 3 3 3 3 1 1 1 0 0 0 0.097 0.62 -2807 C1orf114 chromosome 1 open reading frame 114 346528 5 4 5 0 1 2 0 0 0 2 0.097 0.62 -2808 NOTCH2NL Notch homolog 2 (Drosophila) N-terminal like 161084 2 2 2 2 0 0 1 0 1 0 0.097 0.62 -2809 ZBTB33 zinc finger and BTB domain containing 33 453152 5 5 5 1 1 3 1 0 0 0 0.097 0.62 -2810 UBAP2L ubiquitin associated protein 2-like 754432 8 8 8 1 2 6 0 0 0 0 0.097 0.62 -2811 OR10C1 olfactory receptor, family 10, subfamily C, member 1 157472 3 3 3 0 3 0 0 0 0 0 0.097 0.62 -2812 CYP11A1 cytochrome P450, family 11, subfamily A, polypeptide 1 358848 4 4 4 3 2 1 0 0 1 0 0.098 0.63 -2813 CPNE4 copine IV 388416 6 6 6 2 2 2 2 0 0 0 0.098 0.63 -2814 ADAM17 ADAM metallopeptidase domain 17 (tumor necrosis factor, alpha, converting enzyme) 571424 7 7 7 0 2 1 2 0 2 0 0.098 0.63 -2815 BGLAP bone gamma-carboxyglutamate (gla) protein (osteocalcin) 65608 2 2 2 1 1 1 0 0 0 0 0.098 0.63 -2816 SAT2 spermidine/spermine N1-acetyltransferase family member 2 120288 3 3 3 0 2 1 0 0 0 0 0.098 0.63 -2817 DMRT2 doublesex and mab-3 related transcription factor 2 274624 4 4 4 0 1 2 1 0 0 0 0.098 0.63 -2818 CTSB cathepsin B 236544 5 4 5 0 2 1 1 1 0 0 0.098 0.63 -2819 TIAF1 TGFB1-induced anti-apoptotic factor 1 78848 1 1 1 0 0 0 0 0 1 0 0.098 0.63 -2820 NIPBL Nipped-B homolog (Drosophila) 1920888 19 15 19 2 7 3 7 0 2 0 0.098 0.63 -2821 PTPN1 protein tyrosine phosphatase, non-receptor type 1 292840 5 5 5 1 1 2 2 0 0 0 0.098 0.63 -2822 NCOA5 nuclear receptor coactivator 5 396032 5 5 5 0 1 0 1 1 2 0 0.098 0.63 -2823 DYNC2H1 dynein, cytoplasmic 2, heavy chain 1 2780416 36 13 35 3 6 10 8 0 3 9 0.098 0.63 -2824 FAM175A 275940 3 3 3 1 0 1 0 0 2 0 0.098 0.63 -2825 C1orf128 chromosome 1 open reading frame 128 102592 2 2 2 0 1 0 1 0 0 0 0.098 0.63 -2826 LATS1 LATS, large tumor suppressor, homolog 1 (Drosophila) 766304 11 8 11 1 2 4 4 0 1 0 0.098 0.63 -2827 DAB2 disabled homolog 2, mitogen-responsive phosphoprotein (Drosophila) 529760 5 5 5 4 3 1 0 0 1 0 0.098 0.63 -2828 SC5DL sterol-C5-desaturase (ERG3 delta-5-desaturase homolog, S. cerevisiae)-like 205184 4 4 4 1 2 1 1 0 0 0 0.098 0.63 -2829 ZNF766 zinc finger protein 766 318752 3 3 3 0 0 2 0 0 1 0 0.098 0.63 -2830 SYPL1 synaptophysin-like 1 172116 2 2 2 0 0 2 0 0 0 0 0.098 0.63 -2831 BRE brain and reproductive organ-expressed (TNFRSF1A modulator) 315168 4 4 4 0 0 3 1 0 0 0 0.099 0.63 -2832 ZNF577 zinc finger protein 577 327712 5 5 5 0 1 3 1 0 0 0 0.099 0.63 -2833 GTPBP10 GTP-binding protein 10 (putative) 269696 3 3 3 0 0 3 0 0 0 0 0.099 0.63 -2834 PMP22 peripheral myelin protein 22 100624 2 2 2 0 1 1 0 0 0 0 0.099 0.63 -2835 TFCP2 transcription factor CP2 351456 5 4 5 0 2 0 1 0 2 0 0.099 0.63 -2836 USP3 ubiquitin specific peptidase 3 363552 7 6 7 0 1 4 2 0 0 0 0.099 0.63 -2837 CUL2 cullin 2 519232 5 5 4 0 1 1 0 0 3 0 0.099 0.63 -2838 CCDC103 coiled-coil domain containing 103 165984 2 2 2 1 0 2 0 0 0 0 0.099 0.63 -2839 STX12 syntaxin 12 191352 3 3 2 0 0 1 0 0 2 0 0.099 0.63 -2840 C22orf24 chromosome 22 open reading frame 24 85232 2 2 2 0 0 1 1 0 0 0 0.099 0.63 -2841 NOX4 NADPH oxidase 4 401940 7 5 7 1 0 3 3 0 1 0 0.099 0.63 -2842 SPRY1 sprouty homolog 1, antagonist of FGF signaling (Drosophila) 215936 3 3 3 1 1 0 2 0 0 0 0.099 0.63 -2843 SYNPO2 synaptopodin 2 854784 15 9 15 5 4 7 3 0 1 0 0.099 0.63 -2844 NRBP2 nuclear receptor binding protein 2 147496 2 2 2 0 0 1 0 0 1 0 0.099 0.63 -2845 ZFP91 zinc finger protein 91 homolog (mouse) 334208 3 3 3 1 0 2 0 0 1 0 0.099 0.63 -2846 OCM oncomodulin 77504 2 2 2 1 2 0 0 0 0 0 0.099 0.63 -2847 ADH1C alcohol dehydrogenase 1C (class I), gamma polypeptide 260736 4 4 4 1 0 0 4 0 0 0 0.099 0.63 -2848 C7orf51 chromosome 7 open reading frame 51 388304 3 3 2 1 0 0 1 0 2 0 0.100 0.63 -2849 ANKRD40 ankyrin repeat domain 40 252448 3 3 3 0 0 2 1 0 0 0 0.100 0.63 -2850 GPR45 G protein-coupled receptor 45 251552 7 6 7 1 5 2 0 0 0 0 0.100 0.63 -2851 TMEM216 63616 1 1 1 1 0 0 0 1 0 0 0.100 0.63 -2852 COX17 COX17 cytochrome c oxidase assembly homolog (S. cerevisiae) 44800 1 1 1 0 0 0 1 0 0 0 0.100 0.63 -2853 OMA1 OMA1 homolog, zinc metallopeptidase (S. cerevisiae) 359968 4 4 4 1 0 1 1 0 2 0 0.100 0.63 -2854 NUS1 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) 119984 2 2 2 1 0 1 1 0 0 0 0.100 0.63 -2855 FAM71C family with sequence similarity 71, member C 164416 3 3 3 1 2 0 1 0 0 0 0.10 0.63 -2856 PABPC3 poly(A) binding protein, cytoplasmic 3 425600 6 6 6 4 3 1 1 1 0 0 0.10 0.63 -2857 KRT75 keratin 75 372708 6 6 6 6 4 2 0 0 0 0 0.10 0.63 -2858 OR2G2 olfactory receptor, family 2, subfamily G, member 2 214592 3 3 3 0 2 1 0 0 0 0 0.10 0.63 -2859 CUL4B cullin 4B 630360 6 5 5 1 1 2 1 0 2 0 0.10 0.63 -2860 WDR92 WD repeat domain 92 247744 3 3 3 1 1 2 0 0 0 0 0.10 0.63 -2861 SLC27A6 solute carrier family 27 (fatty acid transporter), member 6 425600 9 6 9 1 2 4 3 0 0 0 0.10 0.63 -2862 GPR180 G protein-coupled receptor 180 271040 3 3 3 0 0 1 1 0 1 0 0.10 0.63 -2863 CRYGB crystallin, gamma B 119952 3 3 3 0 2 0 1 0 0 0 0.10 0.63 -2864 ENKUR 178080 3 3 3 1 1 0 0 1 1 0 0.10 0.63 -2865 USP33 ubiquitin specific peptidase 33 647584 10 8 10 0 2 3 5 0 0 0 0.10 0.63 -2866 ZNF610 zinc finger protein 610 314720 7 5 7 1 5 2 0 0 0 0 0.10 0.63 -2867 TDRD10 tudor domain containing 10 264768 5 5 4 0 3 2 0 0 0 0 0.10 0.63 -2868 NHS Nance-Horan syndrome (congenital cataracts and dental anomalies) 976724 13 10 13 4 6 2 4 0 1 0 0.10 0.63 -2869 ZNF846 363328 6 5 6 1 2 2 0 0 2 0 0.10 0.63 -2870 ADAM23 ADAM metallopeptidase domain 23 534240 5 5 5 1 2 1 1 0 1 0 0.10 0.63 -2871 ELMO1 engulfment and cell motility 1 508032 8 7 8 2 4 2 2 0 0 0 0.10 0.63 -2872 PRKCB 501144 7 7 7 5 3 4 0 0 0 0 0.10 0.63 -2873 C4orf41 chromosome 4 open reading frame 41 788032 8 8 7 6 4 3 1 0 0 0 0.10 0.63 -2874 EML1 echinoderm microtubule associated protein like 1 565740 11 9 11 2 7 3 1 0 0 0 0.10 0.63 -2875 MYLK myosin light chain kinase 1287592 14 13 14 3 3 7 3 0 1 0 0.10 0.63 -2876 KIAA1324L KIAA1324-like 529032 7 6 7 4 1 3 2 0 1 0 0.10 0.63 -2877 P2RY12 purinergic receptor P2Y, G-protein coupled, 12 231392 4 4 4 0 1 3 0 0 0 0 0.10 0.63 -2878 BRDT bromodomain, testis-specific 649992 7 6 7 2 3 1 1 0 2 0 0.10 0.63 -2879 GABRP gamma-aminobutyric acid (GABA) A receptor, pi 304416 4 4 4 0 1 0 1 0 2 0 0.10 0.63 -2880 SKAP2 src kinase associated phosphoprotein 2 252672 3 3 3 0 1 1 1 0 0 0 0.10 0.63 -2881 SUN3 249536 4 4 3 3 2 1 1 0 0 0 0.10 0.63 -2882 VTN vitronectin 318656 6 6 6 1 5 1 0 0 0 0 0.10 0.63 -2883 MRPS18C mitochondrial ribosomal protein S18C 101472 2 2 2 0 0 0 1 0 1 0 0.10 0.63 -2884 EID3 EP300 interacting inhibitor of differentiation 3 219296 5 5 5 0 3 1 1 0 0 0 0.10 0.63 -2885 FGG fibrinogen gamma chain 314824 4 4 4 3 0 4 0 0 0 0 0.10 0.63 -2886 BCOR BCL6 co-repressor 1155512 10 9 10 2 0 3 2 0 5 0 0.10 0.63 -2887 CDH17 cadherin 17, LI cadherin (liver-intestine) 575008 6 6 6 4 3 2 1 0 0 0 0.10 0.63 -2888 AJAP1 adherens junctions associated protein 1 226072 5 4 5 1 1 1 2 0 1 0 0.10 0.63 -2889 MFSD9 major facilitator superfamily domain containing 9 324072 4 4 4 3 1 0 2 0 1 0 0.10 0.63 -2890 EPRS glutamyl-prolyl-tRNA synthetase 1045408 12 10 12 0 1 5 6 0 0 0 0.10 0.63 -2891 PHYHD1 phytanoyl-CoA dioxygenase domain containing 1 208920 3 3 3 0 2 0 1 0 0 0 0.10 0.63 -2892 DTYMK deoxythymidylate kinase (thymidylate kinase) 59120 1 1 1 0 0 0 1 0 0 0 0.10 0.63 -2893 NFX1 nuclear transcription factor, X-box binding 1 782880 8 7 8 0 1 4 1 0 2 0 0.10 0.63 -2894 SUFU suppressor of fused homolog (Drosophila) 321328 4 4 4 0 1 0 2 0 1 0 0.10 0.64 -2895 SPAG6 sperm associated antigen 6 345672 6 5 6 1 2 2 0 0 2 0 0.10 0.64 -2896 CALN1 calneuron 1 164712 3 3 3 3 2 1 0 0 0 0 0.10 0.64 -2897 OR4F15 olfactory receptor, family 4, subfamily F, member 15 211232 3 3 3 1 1 1 1 0 0 0 0.10 0.64 -2898 G6PC glucose-6-phosphatase, catalytic subunit 245056 4 4 4 1 2 0 2 0 0 0 0.10 0.64 -2899 MFSD5 major facilitator superfamily domain containing 5 306208 4 4 3 1 2 0 1 0 1 0 0.10 0.64 -2900 HERC5 hect domain and RLD 5 649152 8 6 8 3 1 4 1 0 2 0 0.10 0.64 -2901 STAB2 stabilin 2 1764392 20 15 20 7 5 9 4 1 1 0 0.10 0.64 -2902 RGS4 regulator of G-protein signaling 4 201104 3 3 3 1 0 0 2 0 1 0 0.10 0.64 -2903 FARSB phenylalanyl-tRNA synthetase, beta subunit 411712 8 6 8 0 1 3 3 0 1 0 0.10 0.64 -2904 ARL13B ADP-ribosylation factor-like 13B 297248 3 3 3 0 0 2 0 0 1 0 0.10 0.64 -2905 G3BP1 GTPase activating protein (SH3 domain) binding protein 1 323680 6 6 6 0 3 3 0 0 0 0 0.10 0.64 -2906 OR8B2 olfactory receptor, family 8, subfamily B, member 2 211904 2 2 2 1 0 0 1 0 1 0 0.10 0.64 -2907 C12orf4 chromosome 12 open reading frame 4 383264 5 4 5 1 0 3 0 0 2 0 0.10 0.64 -2908 C2orf86 523936 8 6 8 1 3 3 1 0 1 0 0.10 0.64 -2909 USHBP1 Usher syndrome 1C binding protein 1 455924 8 7 8 2 3 5 0 0 0 0 0.10 0.64 -2910 ATP10D ATPase, class V, type 10D 978656 12 9 11 3 6 3 2 0 1 0 0.10 0.64 -2911 FOXP1 forkhead box P1 507808 6 6 6 0 5 1 0 0 0 0 0.10 0.64 -2912 CGB chorionic gonadotropin, beta polypeptide 52280 1 1 1 0 0 0 0 0 1 0 0.10 0.64 -2913 CARD6 caspase recruitment domain family, member 6 700224 6 6 6 4 2 2 1 0 1 0 0.10 0.64 -2914 CTSA cathepsin A 331716 3 3 3 2 0 0 0 0 3 0 0.10 0.64 -2915 EFCAB7 EF-hand calcium binding domain 7 435008 4 4 4 0 1 1 1 0 1 0 0.10 0.64 -2916 SNRPE small nuclear ribonucleoprotein polypeptide E 66976 2 2 2 0 1 0 1 0 0 0 0.10 0.64 -2917 CHKA choline kinase alpha 257992 4 4 4 0 0 3 1 0 0 0 0.10 0.64 -2918 ZCCHC9 zinc finger, CCHC domain containing 9 187264 3 3 3 2 0 2 0 0 1 0 0.10 0.64 -2919 TRIM32 tripartite motif-containing 32 440384 5 5 5 1 0 3 1 0 1 0 0.10 0.64 -2920 MYL6B myosin, light chain 6B, alkali, smooth muscle and non-muscle 145824 3 3 3 1 1 2 0 0 0 0 0.10 0.64 -2921 CCDC30 532400 8 4 8 1 1 4 0 0 1 2 0.10 0.64 -2922 SETBP1 SET binding protein 1 990388 17 11 17 2 2 9 4 1 1 0 0.10 0.64 -2923 PLK1S1 420264 6 5 6 0 2 2 1 0 1 0 0.10 0.64 -2924 NAA15 596600 6 6 6 1 1 3 1 0 1 0 0.10 0.64 -2925 SUPT3H suppressor of Ty 3 homolog (S. cerevisiae) 254464 3 3 2 0 0 0 1 0 2 0 0.10 0.64 -2926 METTL8 methyltransferase like 8 171400 3 3 3 0 0 2 1 0 0 0 0.10 0.64 -2927 BTN3A1 butyrophilin, subfamily 3, member A1 347704 4 4 4 2 1 1 1 0 1 0 0.10 0.64 -2928 CXCL5 chemokine (C-X-C motif) ligand 5 72704 2 2 2 0 0 2 0 0 0 0 0.10 0.64 -2929 RGS20 regulator of G-protein signaling 20 224248 4 4 4 2 3 0 0 0 1 0 0.10 0.64 -2930 UBR2 ubiquitin protein ligase E3 component n-recognin 2 1222144 13 9 13 2 2 4 6 0 1 0 0.10 0.64 -2931 KIR3DL1 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 1 283712 4 4 4 2 1 1 1 0 1 0 0.10 0.64 -2932 TXNRD3IT1 91840 2 2 2 1 0 1 1 0 0 0 0.10 0.64 -2933 ACTRT1 actin-related protein T1 254240 3 3 3 3 0 2 0 0 1 0 0.10 0.64 -2934 LHCGR luteinizing hormone/choriogonadotropin receptor 445056 4 4 4 1 1 2 1 0 0 0 0.10 0.64 -2935 KIAA1370 KIAA1370 705800 9 6 9 0 1 3 3 0 2 0 0.10 0.64 -2936 WASL Wiskott-Aldrich syndrome-like 340912 7 5 7 1 2 2 1 0 2 0 0.10 0.64 -2937 PTPRU protein tyrosine phosphatase, receptor type, U 953540 13 12 12 4 11 0 1 0 1 0 0.10 0.64 -2938 ZC3H11A zinc finger CCCH-type containing 11A 553028 5 5 5 0 1 2 0 0 2 0 0.10 0.64 -2939 CTNNBL1 catenin, beta like 1 380016 5 5 5 1 2 1 2 0 0 0 0.10 0.64 -2940 SLC35F1 solute carrier family 35, member F1 262808 6 4 6 1 2 1 1 0 0 2 0.10 0.64 -2941 PINX1 227360 3 3 3 1 1 0 1 0 1 0 0.10 0.64 -2942 GUCA1A guanylate cyclase activator 1A (retina) 139076 3 3 3 0 0 1 1 0 1 0 0.10 0.64 -2943 TYMS thymidylate synthetase 182924 3 3 3 0 0 1 1 0 1 0 0.10 0.64 -2944 OR56A3 olfactory receptor, family 56, subfamily A, member 3 213248 4 4 4 1 0 2 2 0 0 0 0.10 0.64 -2945 C7orf53 chromosome 7 open reading frame 53 91392 2 2 2 0 0 0 2 0 0 0 0.10 0.64 -2946 HS3ST5 heparan sulfate (glucosamine) 3-O-sulfotransferase 5 234976 4 4 4 3 2 0 2 0 0 0 0.10 0.64 -2947 ZCCHC24 110208 2 2 2 1 1 1 0 0 0 0 0.10 0.64 -2948 CCDC110 coiled-coil domain containing 110 563976 7 5 7 1 1 2 1 0 3 0 0.10 0.64 -2949 PEX12 peroxisomal biogenesis factor 12 244608 5 4 5 0 1 2 2 0 0 0 0.10 0.64 -2950 C11orf10 chromosome 11 open reading frame 10 56448 1 1 1 1 0 0 0 0 1 0 0.10 0.64 -2951 MUM1 melanoma associated antigen (mutated) 1 395764 5 5 5 0 1 2 0 0 2 0 0.10 0.64 -2952 ZMYM5 zinc finger, MYM-type 5 473680 8 6 8 1 2 4 2 0 0 0 0.10 0.64 -2953 APOC2 apolipoprotein C-II 71232 1 1 1 0 0 1 0 0 0 0 0.10 0.64 -2954 XBP1 X-box binding protein 1 185248 3 3 3 0 0 2 1 0 0 0 0.11 0.64 -2955 FABP2 fatty acid binding protein 2, intestinal 92960 2 2 2 2 1 0 0 0 1 0 0.11 0.64 -2956 HLA-DPB1 major histocompatibility complex, class II, DP beta 1 123256 2 2 2 4 0 0 1 0 1 0 0.11 0.64 -2957 KLKB1 kallikrein B, plasma (Fletcher factor) 1 441952 6 5 6 2 2 1 1 0 2 0 0.11 0.64 -2958 DRP2 dystrophin related protein 2 624592 7 7 7 3 3 2 1 0 1 0 0.11 0.64 -2959 KCTD8 potassium channel tetramerisation domain containing 8 242760 4 4 4 1 2 2 0 0 0 0 0.11 0.64 -2960 NEXN nexilin (F actin binding protein) 465024 5 5 5 0 0 2 2 0 1 0 0.11 0.64 -2961 NEBL nebulette 790720 9 7 9 5 1 4 1 0 3 0 0.11 0.64 -2962 GPR156 G protein-coupled receptor 156 554148 8 7 7 3 1 4 1 0 2 0 0.11 0.64 -2963 IQCF2 IQ motif containing F2 113568 2 2 2 0 1 0 0 0 1 0 0.11 0.64 -2964 ARNT aryl hydrocarbon receptor nuclear translocator 544096 5 5 5 3 0 1 3 0 1 0 0.11 0.64 -2965 GJA8 gap junction protein, alpha 8, 50kDa 292544 5 5 5 2 2 3 0 0 0 0 0.11 0.64 -2966 RARS2 arginyl-tRNA synthetase 2, mitochondrial 407008 5 5 5 1 0 2 1 0 2 0 0.11 0.64 -2967 AKR1C4 aldo-keto reductase family 1, member C4 (chlordecone reductase; 3-alpha hydroxysteroid dehydrogenase, type I; dihydrodiol dehydrogenase 4) 225792 3 3 3 1 2 0 1 0 0 0 0.11 0.64 -2968 RPS18 ribosomal protein S18 106624 2 2 2 0 0 0 2 0 0 0 0.11 0.64 -2969 GRK4 G protein-coupled receptor kinase 4 396760 5 5 5 1 2 1 1 0 1 0 0.11 0.64 -2970 TRIM38 tripartite motif-containing 38 318528 6 4 6 0 0 2 3 0 1 0 0.11 0.64 -2971 HEY2 hairy/enhancer-of-split related with YRPW motif 2 229576 6 5 6 1 5 1 0 0 0 0 0.11 0.65 -2972 C15orf33 chromosome 15 open reading frame 33 355488 6 5 5 3 2 1 3 0 0 0 0.11 0.65 -2973 FBN1 fibrillin 1 1988224 33 16 33 8 11 15 5 0 2 0 0.11 0.65 -2974 ZNF266 zinc finger protein 266 373184 8 5 6 3 5 3 0 0 0 0 0.11 0.65 -2975 RICTOR 1170216 13 10 13 1 3 8 1 0 1 0 0.11 0.65 -2976 FGF12 fibroblast growth factor 12 166332 3 3 3 4 3 0 0 0 0 0 0.11 0.65 -2977 COLEC10 collectin sub-family member 10 (C-type lectin) 192192 3 3 3 0 2 0 0 0 1 0 0.11 0.65 -2978 NHEDC1 Na+/H+ exchanger domain containing 1 352716 4 3 4 2 0 1 2 0 1 0 0.11 0.65 -2979 IL9 interleukin 9 101920 2 2 2 1 0 1 1 0 0 0 0.11 0.65 -2980 S100G S100 calcium binding protein G 55552 1 1 1 0 0 1 0 0 0 0 0.11 0.65 -2981 RP2 retinitis pigmentosa 2 (X-linked recessive) 225936 4 4 4 0 1 2 1 0 0 0 0.11 0.65 -2982 HSD17B12 hydroxysteroid (17-beta) dehydrogenase 12 220192 2 2 2 2 0 1 0 0 1 0 0.11 0.65 -2983 SCHIP1 schwannomin interacting protein 1 236000 4 4 4 0 0 2 2 0 0 0 0.11 0.65 -2984 DNAH3 dynein, axonemal, heavy chain 3 2822176 27 18 26 12 10 9 2 0 4 2 0.11 0.65 -2985 FLJ44635 96544 2 2 2 1 1 0 1 0 0 0 0.11 0.65 -2986 GPR139 G protein-coupled receptor 139 239680 4 4 4 0 3 1 0 0 0 0 0.11 0.65 -2987 NDST2 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 2 587744 5 5 5 1 1 1 1 0 2 0 0.11 0.65 -2988 C11orf82 chromosome 11 open reading frame 82 674912 5 5 5 2 0 1 2 0 2 0 0.11 0.65 -2989 LOC286238 77728 2 2 2 1 0 2 0 0 0 0 0.11 0.65 -2990 ZCCHC16 zinc finger, CCHC domain containing 16 209888 3 3 3 1 1 2 0 0 0 0 0.11 0.65 -2991 PRPF40A PRP40 pre-mRNA processing factor 40 homolog A (S. cerevisiae) 593576 5 4 5 0 0 2 1 0 2 0 0.11 0.65 -2992 TMEM198 transmembrane protein 198 203504 4 3 4 2 2 1 0 0 1 0 0.11 0.65 -2993 MAPK12 mitogen-activated protein kinase 12 159348 2 2 2 0 0 0 0 0 2 0 0.11 0.65 -2994 C17orf42 chromosome 17 open reading frame 42 246176 3 3 3 0 2 1 0 0 0 0 0.11 0.65 -2995 EBF1 early B-cell factor 1 394216 6 6 6 1 3 2 0 0 1 0 0.11 0.65 -2996 RASGRF1 Ras protein-specific guanine nucleotide-releasing factor 1 877604 12 10 12 6 7 3 2 0 0 0 0.11 0.65 -2997 ERBB2 v-erb-b2 erythroblastic leukemia viral oncogene homolog 2, neuro/glioblastoma derived oncogene homolog (avian) 849424 10 9 7 3 5 2 3 0 0 0 0.11 0.65 -2998 C10orf120 chromosome 10 open reading frame 120 228480 4 4 4 2 1 1 2 0 0 0 0.11 0.65 -2999 LIMA1 LIM domain and actin binding 1 520352 8 6 8 1 3 1 2 0 2 0 0.11 0.65 -3000 MANBA mannosidase, beta A, lysosomal 579952 7 7 7 3 2 1 3 0 1 0 0.11 0.65 -3001 CCNT2 cyclin T2 499296 6 6 6 4 0 3 2 0 1 0 0.11 0.65 -3002 NSUN2 NOL1/NOP2/Sun domain family, member 2 510720 5 5 5 0 2 3 0 0 0 0 0.11 0.65 -3003 GINS2 GINS complex subunit 2 (Psf2 homolog) 108416 2 2 2 0 1 0 0 0 1 0 0.11 0.65 -3004 CD79A CD79a molecule, immunoglobulin-associated alpha 142456 3 3 3 0 2 0 0 0 1 0 0.11 0.65 -3005 TRIM17 tripartite motif-containing 17 304976 4 4 4 0 1 1 0 0 2 0 0.11 0.65 -3006 GBP3 guanylate binding protein 3 409472 4 4 4 3 1 1 0 0 2 0 0.11 0.65 -3007 HHAT hedgehog acyltransferase 341824 5 5 5 1 1 3 0 0 1 0 0.11 0.65 -3008 KIAA1826 KIAA1826 234304 3 3 3 1 2 0 0 0 1 0 0.11 0.65 -3009 GOLGB1 golgin B1, golgi integral membrane protein 2209536 24 12 24 3 3 7 5 0 3 6 0.11 0.65 -3010 OR4D1 olfactory receptor, family 4, subfamily D, member 1 209888 3 3 3 1 0 2 0 0 1 0 0.11 0.65 -3011 NIT2 nitrilase family, member 2 194180 3 3 2 0 1 1 0 0 1 0 0.11 0.65 -3012 FAM134A family with sequence similarity 134, member A 309792 3 3 3 2 1 0 0 0 2 0 0.11 0.65 -3013 ZNF419 zinc finger protein 419 348544 7 4 7 2 1 3 2 0 1 0 0.11 0.65 -3014 TMEM178 transmembrane protein 178 133504 4 3 4 1 1 2 0 0 1 0 0.11 0.65 -3015 TNNT2 troponin T type 2 (cardiac) 213920 3 3 3 1 1 0 0 1 1 0 0.11 0.65 -3016 MFSD8 major facilitator superfamily domain containing 8 359520 4 4 4 0 2 1 0 1 0 0 0.11 0.65 -3017 CDH6 cadherin 6, type 2, K-cadherin (fetal kidney) 541408 7 7 7 1 3 2 1 0 1 0 0.11 0.65 -3018 OR7A5 olfactory receptor, family 7, subfamily A, member 5 215936 3 3 3 0 1 0 2 0 0 0 0.11 0.65 -3019 GTF3C5 general transcription factor IIIC, polypeptide 5, 63kDa 357816 6 5 6 1 1 0 3 0 2 0 0.11 0.65 -3020 RRAGB Ras-related GTP binding B 261856 4 4 4 1 1 2 1 0 0 0 0.11 0.65 -3021 FETUB fetuin B 263648 3 3 3 1 1 1 0 0 1 0 0.11 0.65 -3022 CNDP2 CNDP dipeptidase 2 (metallopeptidase M20 family) 329728 5 5 5 2 3 1 0 0 1 0 0.11 0.65 -3023 SIM1 single-minded homolog 1 (Drosophila) 523012 9 8 9 6 5 4 0 0 0 0 0.11 0.65 -3024 CAPN6 calpain 6 442176 4 4 4 0 0 1 2 0 1 0 0.11 0.65 -3025 C3orf27 chromosome 3 open reading frame 27 101696 2 2 2 0 1 0 1 0 0 0 0.11 0.65 -3026 ZNF551 zinc finger protein 551 437816 8 6 8 0 0 7 1 0 0 0 0.11 0.65 -3027 TTC31 tetratricopeptide repeat domain 31 358640 4 4 4 0 1 1 0 0 2 0 0.11 0.65 -3028 DNAH10 dynein, axonemal, heavy chain 10 2973768 45 22 45 12 17 17 7 0 4 0 0.11 0.65 -3029 ZNF491 zinc finger protein 491 295232 9 6 7 5 5 3 1 0 0 0 0.11 0.65 -3030 LONRF1 LON peptidase N-terminal domain and ring finger 1 368480 4 4 4 1 0 1 2 0 1 0 0.11 0.65 -3031 C13orf36 73472 3 2 3 1 0 1 2 0 0 0 0.11 0.65 -3032 UBE2U ubiquitin-conjugating enzyme E2U (putative) 160608 3 3 3 0 1 1 1 0 0 0 0.11 0.65 -3033 RPS6KA2 ribosomal protein S6 kinase, 90kDa, polypeptide 2 514936 10 8 10 3 4 3 1 0 2 0 0.11 0.65 -3034 SIRPB1 signal-regulatory protein beta 1 272608 4 4 4 0 3 0 0 0 1 0 0.11 0.65 -3035 LNPEP leucyl/cystinyl aminopeptidase 700448 8 7 8 1 0 3 3 0 2 0 0.11 0.65 -3036 PDE7B phosphodiesterase 7B 308464 4 4 4 1 1 2 1 0 0 0 0.11 0.65 -3037 FANCD2 Fanconi anemia, complementation group D2 1036080 11 9 11 0 3 4 1 0 3 0 0.11 0.65 -3038 NRK Nik related kinase 963824 13 9 13 2 1 7 3 0 2 0 0.11 0.65 -3039 KALRN kalirin, RhoGEF kinase 2095884 23 18 23 9 7 9 5 0 2 0 0.11 0.65 -3040 GKAP1 G kinase anchoring protein 1 249680 3 2 3 0 0 1 1 0 1 0 0.11 0.65 -3041 CNGA2 cyclic nucleotide gated channel alpha 2 439064 4 4 4 2 3 0 0 0 1 0 0.11 0.65 -3042 NPL N-acetylneuraminate pyruvate lyase (dihydrodipicolinate synthase) 225568 3 3 3 2 2 0 0 0 1 0 0.11 0.65 -3043 ACVR2B activin A receptor, type IIB 342048 5 5 5 2 1 2 0 0 2 0 0.11 0.65 -3044 GEMIN6 gem (nuclear organelle) associated protein 6 114688 3 2 3 0 0 0 3 0 0 0 0.11 0.65 -3045 RABGGTB Rab geranylgeranyltransferase, beta subunit 231168 4 4 4 2 2 2 0 0 0 0 0.11 0.65 -3046 CPN1 carboxypeptidase N, polypeptide 1 316512 6 5 6 3 3 2 1 0 0 0 0.11 0.65 -3047 ZNF57 zinc finger protein 57 376264 4 4 4 1 0 1 2 0 1 0 0.11 0.65 -3048 NDEL1 nudE nuclear distribution gene E homolog (A. nidulans)-like 1 248416 7 5 7 0 3 2 2 0 0 0 0.11 0.65 -3049 AGL amylo-1, 6-glucosidase, 4-alpha-glucanotransferase (glycogen debranching enzyme, glycogen storage disease type III) 1075200 10 10 10 1 5 3 1 0 1 0 0.11 0.65 -3050 KRT3 keratin 3 392536 6 6 6 1 4 1 0 1 0 0 0.11 0.65 -3051 USP45 ubiquitin specific peptidase 45 562912 5 5 5 1 0 2 2 0 1 0 0.11 0.65 -3052 SCUBE3 signal peptide, CUB domain, EGF-like 3 671944 11 9 11 1 4 5 1 0 1 0 0.11 0.65 -3053 CIR1 295848 4 4 4 0 2 0 1 0 1 0 0.11 0.65 -3054 C6orf58 chromosome 6 open reading frame 58 227808 3 3 3 0 1 2 0 0 0 0 0.11 0.65 -3055 ERMN ermin, ERM-like protein 203840 3 3 3 0 1 1 0 0 1 0 0.11 0.65 -3056 NOTCH3 Notch homolog 3 (Drosophila) 1150800 15 14 15 1 6 8 0 0 1 0 0.11 0.65 -3057 RNASET2 ribonuclease T2 166064 4 4 3 0 2 2 0 0 0 0 0.11 0.65 -3058 KLK15 kallikrein-related peptidase 15 169364 3 3 3 2 1 2 0 0 0 0 0.11 0.65 -3059 CAPRIN2 caprin family member 2 771540 12 8 11 2 5 3 1 0 3 0 0.11 0.65 -3060 CCDC121 coiled-coil domain containing 121 190624 2 2 2 0 0 1 0 0 1 0 0.11 0.65 -3061 UBN1 ubinuclein 1 777952 8 8 8 2 2 3 2 0 1 0 0.11 0.65 -3062 RRAGC Ras-related GTP binding C 221088 3 3 3 2 1 1 0 0 1 0 0.11 0.65 -3063 AQP10 aquaporin 10 199584 4 3 4 0 1 2 1 0 0 0 0.11 0.65 -3064 ALAS2 aminolevulinate, delta-, synthase 2 408336 6 6 6 0 3 3 0 0 0 0 0.11 0.65 -3065 PLAC8 placenta-specific 8 80640 2 2 2 0 1 1 0 0 0 0 0.11 0.65 -3066 OR1S2 olfactory receptor, family 1, subfamily S, member 2 219968 3 3 3 0 0 1 2 0 0 0 0.11 0.66 -3067 CD2AP CD2-associated protein 445120 7 5 7 2 2 4 1 0 0 0 0.11 0.66 -3068 PNPLA5 patatin-like phospholipase domain containing 5 232988 3 3 3 0 1 1 0 0 1 0 0.11 0.66 -3069 SLC17A2 solute carrier family 17 (sodium phosphate), member 2 302624 8 5 8 1 2 4 2 0 0 0 0.11 0.66 -3070 GPR133 G protein-coupled receptor 133 595544 8 7 8 4 5 1 1 0 1 0 0.11 0.66 -3071 RGS7 regulator of G-protein signaling 7 343168 6 5 6 0 1 4 1 0 0 0 0.11 0.66 -3072 FAM166B 150304 1 1 1 0 0 0 0 0 1 0 0.11 0.66 -3073 FAM107B family with sequence similarity 107, member B 210784 4 4 4 0 1 3 0 0 0 0 0.11 0.66 -3074 FBXO5 F-box protein 5 281568 3 3 3 2 0 1 0 0 2 0 0.11 0.66 -3075 JKAMP 214848 4 3 4 0 0 1 3 0 0 0 0.11 0.66 -3076 DEC1 deleted in esophageal cancer 1 51296 1 1 1 0 0 1 0 0 0 0 0.11 0.66 -3077 SCLT1 sodium channel and clathrin linker 1 481824 7 6 7 1 1 2 4 0 0 0 0.11 0.66 -3078 ZDHHC7 zinc finger, DHHC-type containing 7 213024 4 4 4 1 3 0 0 0 1 0 0.11 0.66 -3079 FBXL20 F-box and leucine-rich repeat protein 20 303240 3 3 3 1 1 0 1 0 1 0 0.11 0.66 -3080 BATF2 basic leucine zipper transcription factor, ATF-like 2 176704 3 3 3 0 1 1 1 0 0 0 0.11 0.66 -3081 C6orf48 chromosome 6 open reading frame 48 52864 1 1 1 0 0 0 0 0 1 0 0.11 0.66 -3082 C9orf171 201628 4 4 4 2 2 1 1 0 0 0 0.11 0.66 -3083 CTDSPL CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase-like 174720 3 3 3 1 1 1 1 0 0 0 0.11 0.66 -3084 SYTL3 synaptotagmin-like 3 365664 4 4 4 1 0 1 1 0 2 0 0.11 0.66 -3085 TCTEX1D1 Tctex1 domain containing 1 124544 2 2 2 0 0 0 1 0 1 0 0.11 0.66 -3086 LHX8 LIM homeobox 8 232400 3 3 3 1 0 2 0 0 1 0 0.11 0.66 -3087 FANK1 fibronectin type III and ankyrin repeat domains 1 240940 3 3 3 3 2 0 0 0 1 0 0.11 0.66 -3088 PYGO2 pygopus homolog 2 (Drosophila) 218960 2 2 1 0 0 0 0 0 2 0 0.11 0.66 -3089 RNF150 ring finger protein 150 269704 8 7 7 2 6 1 1 0 0 0 0.11 0.66 -3090 ACPP acid phosphatase, prostate 296576 5 4 4 0 2 0 1 0 0 2 0.11 0.66 -3091 LRP2BP LRP2 binding protein 241024 5 4 5 1 2 2 0 0 1 0 0.11 0.66 -3092 OR2T12 olfactory receptor, family 2, subfamily T, member 12 216608 3 3 3 0 1 1 1 0 0 0 0.11 0.66 -3093 OR51A2 olfactory receptor, family 51, subfamily A, member 2 157912 2 2 2 1 1 1 0 0 0 0 0.11 0.66 -3094 SERPINA5 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5 277088 4 4 4 1 0 4 0 0 0 0 0.11 0.67 -3095 KDM5B 1056888 10 10 10 0 4 2 3 1 0 0 0.11 0.67 -3096 PSAT1 phosphoserine aminotransferase 1 257376 4 4 4 0 1 2 1 0 0 0 0.11 0.67 -3097 CXorf1 chromosome X open reading frame 1 76160 1 1 1 0 1 0 0 0 0 0 0.11 0.67 -3098 ESYT3 560744 8 7 8 1 5 3 0 0 0 0 0.11 0.67 -3099 CRNN cornulin 335104 4 4 4 0 1 3 0 0 0 0 0.11 0.67 -3100 FAM167A 136612 3 3 3 1 1 1 1 0 0 0 0.11 0.67 -3101 C11orf66 chromosome 11 open reading frame 66 295176 4 4 4 2 2 1 0 0 1 0 0.11 0.67 -3102 SFT2D1 SFT2 domain containing 1 100296 2 2 2 1 1 0 0 0 1 0 0.11 0.67 -3103 ZPLD1 zona pellucida-like domain containing 1 300160 6 4 6 1 2 3 0 0 1 0 0.11 0.67 -3104 NSUN3 NOL1/NOP2/Sun domain family, member 3 234528 3 3 3 0 0 1 2 0 0 0 0.11 0.67 -3105 C20orf96 chromosome 20 open reading frame 96 245624 2 2 2 0 0 0 0 0 2 0 0.11 0.67 -3106 C9orf125 chromosome 9 open reading frame 125 272384 4 4 4 1 0 2 2 0 0 0 0.12 0.67 -3107 SUPT16H suppressor of Ty 16 homolog (S. cerevisiae) 727552 7 7 7 1 4 0 2 0 1 0 0.12 0.67 -3108 IL21R interleukin 21 receptor 329140 5 5 5 1 1 4 0 0 0 0 0.12 0.67 -3109 IGFBP4 insulin-like growth factor binding protein 4 105252 2 2 2 0 1 0 0 0 1 0 0.12 0.67 -3110 PAH phenylalanine hydroxylase 316064 4 4 4 2 0 1 2 0 1 0 0.12 0.67 -3111 PTGS1 prostaglandin-endoperoxide synthase 1 (prostaglandin G/H synthase and cyclooxygenase) 413056 6 6 6 0 3 2 1 0 0 0 0.12 0.67 -3112 GPRASP1 G protein-coupled receptor associated sorting protein 1 939008 10 7 10 0 0 4 4 0 2 0 0.12 0.67 -3113 CRHR2 corticotropin releasing hormone receptor 2 263064 6 6 6 2 4 2 0 0 0 0 0.12 0.67 -3114 GTDC1 glycosyltransferase-like domain containing 1 316512 4 4 4 0 1 2 1 0 0 0 0.12 0.67 -3115 FAM120B family with sequence similarity 120B 620256 8 7 8 3 4 3 0 0 1 0 0.12 0.67 -3116 RNF2 ring finger protein 2 231840 4 3 4 0 1 0 2 0 1 0 0.12 0.67 -3117 MMAA methylmalonic aciduria (cobalamin deficiency) cblA type 286944 5 4 4 2 3 1 0 0 1 0 0.12 0.67 -3118 SPATA13 spermatogenesis associated 13 450240 6 6 6 3 3 3 0 0 0 0 0.12 0.67 -3119 KIAA1045 KIAA1045 275744 5 5 5 3 2 2 1 0 0 0 0.12 0.67 -3120 MXRA5 matrix-remodelling associated 5 1887972 23 14 23 8 9 8 4 0 2 0 0.12 0.67 -3121 FER fer (fps/fes related) tyrosine kinase 569184 7 6 7 2 0 3 3 0 1 0 0.12 0.67 -3122 OR52D1 olfactory receptor, family 52, subfamily D, member 1 215264 5 4 5 0 0 4 1 0 0 0 0.12 0.67 -3123 BCAP29 B-cell receptor-associated protein 29 241696 3 3 3 0 1 0 1 0 1 0 0.12 0.67 -3124 MYCT1 myc target 1 160384 3 2 3 0 1 1 1 0 0 0 0.12 0.67 -3125 L2HGDH L-2-hydroxyglutarate dehydrogenase 308252 3 3 3 1 1 1 0 0 1 0 0.12 0.67 -3126 ZBTB41 zinc finger and BTB domain containing 41 620480 9 7 9 2 2 2 4 0 1 0 0.12 0.67 -3127 STX19 syntaxin 19 199136 2 2 2 0 0 0 1 0 1 0 0.12 0.67 -3128 EPHA1 EPH receptor A1 615696 6 6 6 5 3 1 1 0 1 0 0.12 0.67 -3129 BLVRB biliverdin reductase B (flavin reductase (NADPH)) 136204 2 2 2 1 1 1 0 0 0 0 0.12 0.67 -3130 CLEC4F C-type lectin domain family 4, member F 402752 5 4 5 0 1 2 0 0 2 0 0.12 0.67 -3131 CDCA8 cell division cycle associated 8 189560 3 3 3 0 2 0 0 0 1 0 0.12 0.67 -3132 IL22 interleukin 22 125440 2 2 2 0 1 1 0 0 0 0 0.12 0.67 -3133 RNF6 ring finger protein (C3H2C3 type) 6 463680 8 6 8 1 4 1 3 0 0 0 0.12 0.67 -3134 SLC28A3 solute carrier family 28 (sodium-coupled nucleoside transporter), member 3 481152 4 4 4 1 0 1 1 0 2 0 0.12 0.67 -3135 FBXO10 F-box protein 10 628340 9 9 9 2 4 3 2 0 0 0 0.12 0.67 -3136 OR4A16 olfactory receptor, family 4, subfamily A, member 16 221984 3 3 3 1 0 2 1 0 0 0 0.12 0.67 -3137 PRR11 proline rich 11 250656 2 2 1 0 0 0 0 0 2 0 0.12 0.67 -3138 IL4 interleukin 4 107072 3 3 3 0 3 0 0 0 0 0 0.12 0.67 -3139 BTC betacellulin 109536 2 2 2 1 2 0 0 0 0 0 0.12 0.67 -3140 OR12D2 olfactory receptor, family 12, subfamily D, member 2 129920 3 3 3 0 1 2 0 0 0 0 0.12 0.67 -3141 GDF3 growth differentiation factor 3 243628 4 4 4 2 0 2 2 0 0 0 0.12 0.67 -3142 CCDC76 coiled-coil domain containing 76 333760 4 4 4 0 0 0 3 0 1 0 0.12 0.67 -3143 FOXG1 forkhead box G1 234380 7 6 7 2 4 2 0 0 1 0 0.12 0.67 -3144 MIF4GD MIF4G domain containing 178080 4 4 4 0 1 2 1 0 0 0 0.12 0.67 -3145 TMTC2 transmembrane and tetratricopeptide repeat containing 2 573080 7 6 7 1 1 2 2 1 1 0 0.12 0.67 -3146 OR6C70 olfactory receptor, family 6, subfamily C, member 70 211232 3 3 3 0 0 2 0 0 1 0 0.12 0.67 -3147 PRR5L 254548 4 4 4 1 3 1 0 0 0 0 0.12 0.67 -3148 NPR1 natriuretic peptide receptor A/guanylate cyclase A (atrionatriuretic peptide receptor A) 596352 6 6 6 2 3 1 0 0 2 0 0.12 0.67 -3149 VASP vasodilator-stimulated phosphoprotein 218348 3 3 3 0 0 0 1 0 2 0 0.12 0.67 -3150 FYN FYN oncogene related to SRC, FGR, YES 407232 5 5 5 1 1 2 0 0 2 0 0.12 0.67 -3151 NOM1 nucleolar protein with MIF4G domain 1 479112 7 5 7 2 1 1 4 0 1 0 0.12 0.67 -3152 KCNQ4 potassium voltage-gated channel, KQT-like subfamily, member 4 361876 6 6 6 2 2 3 0 0 1 0 0.12 0.67 -3153 MAGED1 melanoma antigen family D, 1 552832 6 6 6 4 1 4 0 0 1 0 0.12 0.67 -3154 NGRN neugrin, neurite outgrowth associated 191016 2 2 2 1 0 0 0 0 2 0 0.12 0.67 -3155 ZNF713 zinc finger protein 713 293216 3 3 3 1 1 0 2 0 0 0 0.12 0.68 -3156 LAYN layilin 238336 3 3 3 2 0 1 1 0 1 0 0.12 0.68 -3157 BBS4 Bardet-Biedl syndrome 4 359968 3 3 3 0 0 0 1 0 2 0 0.12 0.68 -3158 MAP3K13 mitogen-activated protein kinase kinase kinase 13 659288 9 8 9 4 4 2 1 0 2 0 0.12 0.68 -3159 C5orf51 202692 2 2 2 3 0 2 0 0 0 0 0.12 0.68 -3160 PCDHA9 protocadherin alpha 9 538608 12 11 12 2 8 4 0 0 0 0 0.12 0.68 -3161 CCDC137 coiled-coil domain containing 137 153228 3 3 3 2 2 0 0 0 1 0 0.12 0.68 -3162 NENF neuron derived neurotrophic factor 79296 2 2 2 0 0 2 0 0 0 0 0.12 0.68 -3163 PIGK phosphatidylinositol glycan anchor biosynthesis, class K 275968 4 4 4 0 2 1 0 0 1 0 0.12 0.68 -3164 ZNF534 zinc finger protein 534 227136 4 4 4 1 2 1 1 0 0 0 0.12 0.68 -3165 FAM26F family with sequence similarity 26, member F 108760 2 2 2 0 1 0 0 0 1 0 0.12 0.68 -3166 PADI6 peptidyl arginine deiminase, type VI 464240 7 6 7 2 6 0 1 0 0 0 0.12 0.68 -3167 GNL3 guanine nucleotide binding protein-like 3 (nucleolar) 383040 3 3 3 0 0 0 2 0 1 0 0.12 0.68 -3168 GJA5 gap junction protein, alpha 5, 40kDa 242144 3 3 3 0 1 1 0 0 1 0 0.12 0.68 -3169 ELOVL2 elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 2 205184 3 3 3 0 2 1 0 0 0 0 0.12 0.68 -3170 MUC15 mucin 15, cell surface associated 230048 4 4 4 1 0 2 2 0 0 0 0.12 0.68 -3171 DLG3 discs, large homolog 3 (neuroendocrine-dlg, Drosophila) 522544 8 6 7 1 3 1 1 0 3 0 0.12 0.68 -3172 COX6A2 cytochrome c oxidase subunit VIa polypeptide 2 36824 1 1 1 1 1 0 0 0 0 0 0.12 0.68 -3173 PPP3CC protein phosphatase 3 (formerly 2B), catalytic subunit, gamma isoform 349896 4 4 4 1 2 0 0 0 2 0 0.12 0.68 -3174 HDLBP high density lipoprotein binding protein (vigilin) 876064 10 10 10 1 5 0 3 0 2 0 0.12 0.68 -3175 MYOCD myocardin 644896 7 5 7 5 1 2 1 0 3 0 0.12 0.68 -3176 DSC1 desmocollin 1 624736 8 7 8 0 1 3 2 0 2 0 0.12 0.68 -3177 OR5I1 olfactory receptor, family 5, subfamily I, member 1 212576 3 3 3 4 2 0 1 0 0 0 0.12 0.68 -3178 FAM154A family with sequence similarity 154, member A 322784 4 4 4 0 0 3 0 0 1 0 0.12 0.68 -3179 XKRX XK, Kell blood group complex subunit-related, X-linked 305088 4 4 4 0 1 3 0 0 0 0 0.12 0.68 -3180 C6orf167 chromosome 6 open reading frame 167 857472 9 8 9 2 1 4 4 0 0 0 0.12 0.68 -3181 PAN3 PAN3 polyA specific ribonuclease subunit homolog (S. cerevisiae) 520680 7 6 6 1 2 3 1 0 1 0 0.12 0.68 -3182 SDF2 stromal cell-derived factor 2 145152 2 2 2 0 0 0 1 0 1 0 0.12 0.68 -3183 XRCC5 X-ray repair complementing defective repair in Chinese hamster cells 5 (double-strand-break rejoining; Ku autoantigen, 80kDa) 511392 6 6 6 2 2 1 3 0 0 0 0.12 0.68 -3184 STX1B syntaxin 1B 203168 4 4 4 0 1 3 0 0 0 0 0.12 0.68 -3185 PLXDC1 plexin domain containing 1 324768 5 5 5 1 3 2 0 0 0 0 0.12 0.68 -3186 SIRPB2 signal-regulatory protein beta 2 234976 4 3 4 0 1 1 1 0 1 0 0.12 0.68 -3187 ATAD2 ATPase family, AAA domain containing 2 954128 9 7 9 3 1 1 3 0 4 0 0.12 0.68 -3188 PAIP2 poly(A) binding protein interacting protein 2 88704 1 1 1 1 0 1 0 0 0 0 0.12 0.68 -3189 SLFN5 schlafen family member 5 602588 7 6 7 0 3 2 1 0 1 0 0.12 0.68 -3190 BPIL2 bactericidal/permeability-increasing protein-like 2 354816 4 4 4 3 2 0 1 0 1 0 0.12 0.68 -3191 CLEC12A C-type lectin domain family 12, member A 184128 2 2 2 0 0 0 2 0 0 0 0.12 0.68 -3192 FCN1 ficolin (collagen/fibrinogen domain containing) 1 227808 6 5 6 1 2 3 1 0 0 0 0.12 0.68 -3193 CACNB2 calcium channel, voltage-dependent, beta 2 subunit 485552 6 6 5 2 5 1 0 0 0 0 0.12 0.68 -3194 CSK c-src tyrosine kinase 299708 4 4 4 0 2 1 0 0 1 0 0.12 0.68 -3195 VAMP5 vesicle-associated membrane protein 5 (myobrevin) 79744 2 2 2 1 2 0 0 0 0 0 0.12 0.68 -3196 USP10 ubiquitin specific peptidase 10 539280 6 6 6 2 1 2 1 1 1 0 0.12 0.68 -3197 ARMCX5 armadillo repeat containing, X-linked 5 376544 3 3 3 0 0 1 1 0 1 0 0.12 0.68 -3198 GJA9 gap junction protein, alpha 9, 59kDa 347648 4 4 4 0 1 1 2 0 0 0 0.12 0.68 -3199 HVCN1 hydrogen voltage-gated channel 1 189504 3 3 3 2 0 3 0 0 0 0 0.12 0.68 -3200 KAL1 Kallmann syndrome 1 sequence 434952 5 5 4 1 3 2 0 0 0 0 0.12 0.68 -3201 FGF5 fibroblast growth factor 5 183456 4 4 4 0 1 2 0 0 1 0 0.12 0.68 -3202 SEPHS1 selenophosphate synthetase 1 271264 3 3 2 0 2 0 1 0 0 0 0.12 0.68 -3203 RARG retinoic acid receptor, gamma 311752 5 5 5 1 3 2 0 0 0 0 0.12 0.68 -3204 POLR3D polymerase (RNA) III (DNA directed) polypeptide D, 44kDa 252560 3 3 3 1 1 0 1 0 1 0 0.12 0.68 -3205 GOSR1 golgi SNAP receptor complex member 1 176736 3 3 3 1 1 1 0 0 1 0 0.12 0.68 -3206 KCNK17 potassium channel, subfamily K, member 17 183792 3 3 3 0 3 0 0 0 0 0 0.12 0.68 -3207 LEF1 lymphoid enhancer-binding factor 1 296212 4 4 4 0 2 1 1 0 0 0 0.12 0.68 -3208 PRAMEF1 PRAME family member 1 321888 4 4 4 2 1 2 1 0 0 0 0.12 0.68 -3209 NOX3 NADPH oxidase 3 394016 8 6 8 3 3 1 4 0 0 0 0.12 0.68 -3210 TMEM117 transmembrane protein 117 352352 4 4 4 0 1 2 1 0 0 0 0.12 0.68 -3211 LDHC lactate dehydrogenase C 230048 2 2 2 1 1 1 0 0 0 0 0.12 0.68 -3212 TSGA14 testis specific, 14 261184 4 4 4 0 0 2 2 0 0 0 0.12 0.68 -3213 CPVL carboxypeptidase, vitellogenic-like 331296 4 4 4 0 0 2 1 0 1 0 0.12 0.68 -3214 TAS2R9 taste receptor, type 2, member 9 211232 3 3 3 1 0 2 1 0 0 0 0.12 0.68 -3215 MT1G metallothionein 1G 44352 1 1 1 0 0 1 0 0 0 0 0.12 0.68 -3216 ATP4A ATPase, H+/K+ exchanging, alpha polypeptide 707484 10 10 10 2 6 2 2 0 0 0 0.12 0.68 -3217 TMEM132E transmembrane protein 132E 562688 8 8 8 2 2 4 1 0 1 0 0.12 0.68 -3218 SPAM1 sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding) 350248 4 4 4 1 1 1 1 1 0 0 0.12 0.68 -3219 ASPA aspartoacylase (Canavan disease) 216384 5 4 5 1 2 1 2 0 0 0 0.12 0.68 -3220 PRM2 protamine 2 71008 2 2 2 0 1 1 0 0 0 0 0.12 0.68 -3221 CLOCK clock homolog (mouse) 587104 8 6 8 1 1 3 3 0 1 0 0.12 0.68 -3222 PAK1 p21/Cdc42/Rac1-activated kinase 1 (STE20 homolog, yeast) 391328 5 5 5 1 0 2 1 1 1 0 0.12 0.68 -3223 CCL7 chemokine (C-C motif) ligand 7 69888 1 1 1 1 1 0 0 0 0 0 0.12 0.69 -3224 LCE1B late cornified envelope 1B 80864 1 1 1 2 0 1 0 0 0 0 0.12 0.69 -3225 FAM108B1 family with sequence similarity 108, member B1 203840 2 2 2 0 0 1 1 0 0 0 0.12 0.69 -3226 ZNF423 zinc finger protein 423 840700 15 11 15 3 7 6 2 0 0 0 0.12 0.69 -3227 SPATA4 spermatogenesis associated 4 211008 6 4 6 1 1 4 1 0 0 0 0.12 0.69 -3228 TBX22 T-box 22 353880 4 4 4 6 2 0 1 0 1 0 0.12 0.69 -3229 SEPT3 septin 3 259336 5 4 5 0 1 1 1 0 2 0 0.12 0.69 -3230 ZNF354A zinc finger protein 354A 408660 7 5 7 0 1 5 0 0 1 0 0.12 0.69 -3231 EEA1 early endosome antigen 1 974848 10 6 10 1 0 4 3 0 1 2 0.12 0.69 -3232 CDR1 cerebellar degeneration-related protein 1, 34kDa 177632 2 2 2 1 2 0 0 0 0 0 0.12 0.69 -3233 CLEC4M C-type lectin domain family 4, member M 277312 3 3 3 4 1 1 0 1 0 0 0.12 0.69 -3234 WDR33 WD repeat domain 33 931112 9 7 9 0 3 0 2 0 4 0 0.12 0.69 -3235 ABHD14B abhydrolase domain containing 14B 129108 2 2 2 0 2 0 0 0 0 0 0.12 0.69 -3236 OR7G2 olfactory receptor, family 7, subfamily G, member 2 233408 3 3 3 1 0 2 0 0 1 0 0.12 0.69 -3237 SLCO1A2 solute carrier organic anion transporter family, member 1A2 463456 5 4 5 2 1 2 2 0 0 0 0.12 0.69 -3238 TAF9B TAF9B RNA polymerase II, TATA box binding protein (TBP)-associated factor, 31kDa 68992 1 1 1 1 0 0 1 0 0 0 0.12 0.69 -3239 TTL tubulin tyrosine ligase 251520 3 3 3 0 0 2 0 0 1 0 0.12 0.69 -3240 HEPN1 60704 1 1 1 0 1 0 0 0 0 0 0.12 0.69 -3241 RAB3D RAB3D, member RAS oncogene family 151424 3 3 3 0 2 1 0 0 0 0 0.12 0.69 -3242 DNAJB13 DnaJ (Hsp40) related, subfamily B, member 13 220192 3 3 3 0 0 2 0 0 1 0 0.12 0.69 -3243 EME1 essential meiotic endonuclease 1 homolog 1 (S. pombe) 391188 4 4 4 0 0 2 1 0 1 0 0.12 0.69 -3244 TAAR1 trace amine associated receptor 1 229376 4 4 4 0 1 2 1 0 0 0 0.12 0.69 -3245 ECHS1 enoyl Coenzyme A hydratase, short chain, 1, mitochondrial 170268 2 2 2 0 0 0 0 0 2 0 0.12 0.69 -3246 MCEE methylmalonyl CoA epimerase 116076 2 2 2 0 0 2 0 0 0 0 0.12 0.69 -3247 CLPS colipase, pancreatic 78624 2 2 2 0 2 0 0 0 0 0 0.12 0.69 -3248 ANAPC7 anaphase promoting complex subunit 7 403580 4 4 4 2 1 0 2 0 1 0 0.12 0.69 -3249 HOXA6 homeobox A6 159040 5 5 5 0 4 0 0 0 1 0 0.12 0.69 -3250 SLC2A9 solute carrier family 2 (facilitated glucose transporter), member 9 372992 6 5 6 1 0 2 3 0 1 0 0.12 0.69 -3251 TTC33 tetratricopeptide repeat domain 33 180320 1 1 1 0 0 0 0 0 1 0 0.12 0.69 -3252 UBXN11 344776 7 5 5 1 2 1 0 0 0 4 0.12 0.69 -3253 FBXO32 F-box protein 32 247296 5 5 5 0 2 2 1 0 0 0 0.12 0.69 -3254 TMSB15A 32704 1 1 1 0 0 0 1 0 0 0 0.12 0.69 -3255 SURF6 surfeit 6 232288 5 5 5 0 3 1 0 0 1 0 0.12 0.69 -3256 PCYT1B phosphate cytidylyltransferase 1, choline, beta 278424 5 5 5 0 3 1 1 0 0 0 0.12 0.69 -3257 POLR3E polymerase (RNA) III (DNA directed) polypeptide E (80kD) 489212 6 6 6 1 3 1 0 0 2 0 0.12 0.69 -3258 LRRC8A leucine rich repeat containing 8 family, member A 519316 7 7 7 2 2 3 0 1 1 0 0.12 0.69 -3259 SETD5 SET domain containing 5 969608 9 7 9 1 3 0 3 0 3 0 0.12 0.69 -3260 EMR1 egf-like module containing, mucin-like, hormone receptor-like 1 614880 9 6 9 1 1 5 2 0 1 0 0.12 0.69 -3261 FA2H fatty acid 2-hydroxylase 187512 3 3 3 1 1 2 0 0 0 0 0.12 0.69 -3262 OR4K1 olfactory receptor, family 4, subfamily K, member 1 210560 4 3 4 2 0 2 2 0 0 0 0.12 0.69 -3263 LDB1 LIM domain binding 1 263872 5 5 5 0 3 1 0 0 1 0 0.12 0.69 -3264 SUV39H2 suppressor of variegation 3-9 homolog 2 (Drosophila) 239456 3 3 3 0 1 1 1 0 0 0 0.12 0.69 -3265 PGBD5 piggyBac transposable element derived 5 312704 5 5 5 3 5 0 0 0 0 0 0.12 0.69 -3266 NCKAP1 NCK-associated protein 1 791256 9 8 9 1 3 2 3 0 1 0 0.12 0.69 -3267 TSSK4 testis-specific serine kinase 4 226912 3 3 3 0 0 2 0 0 1 0 0.12 0.69 -3268 WDR78 WD repeat domain 78 588000 5 5 5 1 1 1 2 0 1 0 0.12 0.69 -3269 RBP1 retinol binding protein 1, cellular 112124 2 2 2 0 0 2 0 0 0 0 0.12 0.69 -3270 IL17C interleukin 17C 96012 1 1 1 0 0 0 0 0 1 0 0.13 0.69 -3271 TTC29 tetratricopeptide repeat domain 29 324696 6 4 6 0 1 5 0 0 0 0 0.13 0.69 -3272 CYSLTR1 cysteinyl leukotriene receptor 1 228032 3 3 3 1 0 1 2 0 0 0 0.13 0.69 -3273 PCDH19 protocadherin 19 728924 12 10 12 3 8 2 1 0 1 0 0.13 0.69 -3274 HERC4 hect domain and RLD 4 732480 6 6 6 0 2 0 2 0 2 0 0.13 0.69 -3275 C2orf3 chromosome 2 open reading frame 3 490420 5 5 5 1 2 1 1 0 1 0 0.13 0.69 -3276 PDE6A phosphodiesterase 6A, cGMP-specific, rod, alpha 598304 7 6 7 1 2 3 1 0 1 0 0.13 0.69 -3277 DEFB128 defensin, beta 128 64960 1 1 1 0 0 0 1 0 0 0 0.13 0.69 -3278 BAG1 BCL2-associated athanogene 205044 2 2 2 1 0 0 1 0 1 0 0.13 0.69 -3279 TRAT1 T cell receptor associated transmembrane adaptor 1 131040 2 2 2 0 1 1 0 0 0 0 0.13 0.69 -3280 C6orf153 chromosome 6 open reading frame 153 152376 2 2 2 1 0 1 1 0 0 0 0.13 0.69 -3281 NDUFA4 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa 58688 2 2 2 0 0 2 0 0 0 0 0.13 0.69 -3282 C3 complement component 3 1154860 13 11 13 6 4 4 1 0 2 2 0.13 0.69 -3283 PLAG1 pleiomorphic adenoma gene 1 338464 6 5 6 1 1 2 3 0 0 0 0.13 0.69 -3284 UACA uveal autoantigen with coiled-coil domains and ankyrin repeats 959696 12 6 11 1 3 2 2 0 3 2 0.13 0.69 -3285 VAMP4 vesicle-associated membrane protein 4 101696 3 2 3 1 0 2 0 0 1 0 0.13 0.69 -3286 ZNF354B zinc finger protein 354B 413284 6 6 6 1 0 5 0 0 1 0 0.13 0.69 -3287 TXNDC12 thioredoxin domain containing 12 (endoplasmic reticulum) 122528 2 2 2 0 1 1 0 0 0 0 0.13 0.69 -3288 NOBOX NOBOX oogenesis homeobox 214736 5 3 5 0 3 1 0 0 1 0 0.13 0.69 -3289 HECTD2 HECT domain containing 2 514528 7 6 7 2 1 3 1 0 0 2 0.13 0.69 -3290 KCNJ15 potassium inwardly-rectifying channel, subfamily J, member 15 253568 4 4 4 0 1 2 1 0 0 0 0.13 0.69 -3291 GOLGA5 golgi autoantigen, golgin subfamily a, 5 502656 8 5 8 1 4 2 2 0 0 0 0.13 0.69 -3292 PIK3C2G phosphoinositide-3-kinase, class 2, gamma polypeptide 989696 9 7 9 1 1 3 2 0 3 0 0.13 0.69 -3293 ZDHHC14 zinc finger, DHHC-type containing 14 160640 3 3 3 2 1 0 2 0 0 0 0.13 0.69 -3294 OR6S1 olfactory receptor, family 6, subfamily S, member 1 224000 3 3 3 0 2 0 0 0 1 0 0.13 0.69 -3295 OR52E8 olfactory receptor, family 52, subfamily E, member 8 214592 3 3 3 0 0 3 0 0 0 0 0.13 0.69 -3296 WSCD1 WSC domain containing 1 339612 7 6 7 3 3 2 1 0 1 0 0.13 0.69 -3297 HTR3A 5-hydroxytryptamine (serotonin) receptor 3A 349104 6 6 6 2 5 1 0 0 0 0 0.13 0.69 -3298 UGT2B17 UDP glucuronosyltransferase 2 family, polypeptide B17 362208 7 5 7 0 1 3 2 0 1 0 0.13 0.69 -3299 CACNA1S calcium channel, voltage-dependent, L type, alpha 1S subunit 1293040 15 13 15 4 9 3 3 0 0 0 0.13 0.69 -3300 UBE2D1 ubiquitin-conjugating enzyme E2D 1 (UBC4/5 homolog, yeast) 99456 1 1 1 0 0 0 0 0 1 0 0.13 0.69 -3301 OR2T4 olfactory receptor, family 2, subfamily T, member 4 235424 3 3 3 0 0 2 1 0 0 0 0.13 0.69 -3302 FGD1 FYVE, RhoGEF and PH domain containing 1 (faciogenital dysplasia) 571856 8 7 8 2 3 5 0 0 0 0 0.13 0.69 -3303 AASDHPPT aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase 213696 3 3 3 1 1 0 2 0 0 0 0.13 0.69 -3304 PTX3 pentraxin-related gene, rapidly induced by IL-1 beta 179508 2 2 2 0 1 1 0 0 0 0 0.13 0.69 -3305 ERN2 endoplasmic reticulum to nucleus signaling 2 656316 10 9 10 1 4 5 1 0 0 0 0.13 0.69 -3306 TAC1 tachykinin, precursor 1 92736 2 2 2 2 1 0 1 0 0 0 0.13 0.69 -3307 ZNF609 zinc finger protein 609 956032 8 8 8 2 4 1 1 0 2 0 0.13 0.69 -3308 TIPARP TCDD-inducible poly(ADP-ribose) polymerase 446656 7 5 7 0 2 3 1 0 1 0 0.13 0.69 -3309 RLF rearranged L-myc fusion 1278792 15 10 15 3 3 5 5 0 2 0 0.13 0.69 -3310 ANKRD12 ankyrin repeat domain 12 1396332 16 11 16 4 3 7 3 0 3 0 0.13 0.69 -3311 ADAT2 adenosine deaminase, tRNA-specific 2, TAD2 homolog (S. cerevisiae) 134400 3 3 3 0 2 1 0 0 0 0 0.13 0.69 -3312 KDM3B 1159648 14 9 13 1 2 3 5 0 2 2 0.13 0.69 -3313 SIAH2 seven in absentia homolog 2 (Drosophila) 172452 5 4 5 1 3 0 2 0 0 0 0.13 0.69 -3314 C22orf42 159936 2 2 2 0 0 2 0 0 0 0 0.13 0.69 -3315 SERPINB2 serpin peptidase inhibitor, clade B (ovalbumin), member 2 285824 5 5 5 2 0 5 0 0 0 0 0.13 0.69 -3316 OSTalpha 227808 3 3 3 0 2 0 0 0 1 0 0.13 0.69 -3317 HCFC1R1 host cell factor C1 regulator 1 (XPO1 dependent) 78588 1 1 1 0 0 0 0 0 1 0 0.13 0.69 -3318 ZNF260 zinc finger protein 260 278432 3 3 3 0 0 0 3 0 0 0 0.13 0.69 -3319 PCDHGA6 protocadherin gamma subfamily A, 6 617120 9 9 9 1 6 0 2 0 1 0 0.13 0.69 -3320 SERPINI2 serpin peptidase inhibitor, clade I (pancpin), member 2 280000 4 4 4 2 0 3 1 0 0 0 0.13 0.69 -3321 AMICA1 adhesion molecule, interacts with CXADR antigen 1 277312 4 4 4 1 1 2 1 0 0 0 0.13 0.69 -3322 MCHR1 melanin-concentrating hormone receptor 1 271600 6 5 6 1 4 2 0 0 0 0 0.13 0.69 -3323 APOH apolipoprotein H (beta-2-glycoprotein I) 239680 3 3 3 2 1 0 0 0 2 0 0.13 0.69 -3324 RIMS4 regulating synaptic membrane exocytosis 4 180236 4 4 4 1 2 1 0 1 0 0 0.13 0.69 -3325 TRIM40 tripartite motif-containing 40 121324 2 2 2 0 1 1 0 0 0 0 0.13 0.69 -3326 CEACAM21 carcinoembryonic antigen-related cell adhesion molecule 21 201312 3 3 3 0 0 2 0 0 1 0 0.13 0.69 -3327 ADAM11 ADAM metallopeptidase domain 11 477044 6 6 6 0 4 0 1 0 1 0 0.13 0.69 -3328 KIAA0564 KIAA0564 1267776 13 9 13 6 4 2 2 0 1 4 0.13 0.69 -3329 C1orf94 chromosome 1 open reading frame 94 282464 3 3 3 2 1 1 0 0 1 0 0.13 0.69 -3330 GAB1 GRB2-associated binding protein 1 487536 6 6 6 1 1 4 0 0 1 0 0.13 0.69 -3331 ACTL6A actin-like 6A 301504 5 4 5 0 1 1 1 1 1 0 0.13 0.69 -3332 SPATA1 spermatogenesis associated 1 272760 4 3 4 0 0 2 0 0 0 2 0.13 0.69 -3333 LRRTM1 leucine rich repeat transmembrane neuronal 1 317408 6 6 6 1 3 3 0 0 0 0 0.13 0.69 -3334 LCE4A late cornified envelope 4A 68096 1 1 1 0 0 0 1 0 0 0 0.13 0.69 -3335 C6orf165 chromosome 6 open reading frame 165 429408 7 5 7 1 1 3 2 0 1 0 0.13 0.69 -3336 MBD5 methyl-CpG binding domain protein 5 1013600 11 9 11 5 2 4 3 0 2 0 0.13 0.69 -3337 LANCL1 LanC lantibiotic synthetase component C-like 1 (bacterial) 276864 4 4 4 1 1 1 2 0 0 0 0.13 0.69 -3338 KIAA0368 KIAA0368 1310292 13 10 13 1 3 1 6 0 3 0 0.13 0.69 -3339 OR2L8 olfactory receptor, family 2, subfamily L, member 8 211232 3 3 3 0 0 3 0 0 0 0 0.13 0.69 -3340 IRX6 iroquois homeobox 6 279468 4 4 4 2 1 2 0 0 1 0 0.13 0.70 -3341 OR14I1 olfactory receptor, family 14, subfamily I, member 1 210560 2 2 2 0 1 0 0 0 1 0 0.13 0.70 -3342 FCHSD2 FCH and double SH3 domains 2 450248 8 5 8 3 1 3 3 0 1 0 0.13 0.70 -3343 PLCL1 phospholipase C-like 1 687232 8 6 8 6 3 2 0 0 3 0 0.13 0.70 -3344 PCDHB4 protocadherin beta 4 495656 7 7 7 5 3 0 3 0 1 0 0.13 0.70 -3345 C9orf93 chromosome 9 open reading frame 93 914144 9 7 9 1 1 4 0 0 4 0 0.13 0.70 -3346 ACCN5 amiloride-sensitive cation channel 5, intestinal 348992 6 5 6 1 2 3 1 0 0 0 0.13 0.70 -3347 GPR50 G protein-coupled receptor 50 417088 5 5 5 0 2 3 0 0 0 0 0.13 0.70 -3348 GABPB1 GA binding protein transcription factor, beta subunit 1 284032 5 4 5 0 2 2 0 0 1 0 0.13 0.70 -3349 ENTPD5 ectonucleoside triphosphate diphosphohydrolase 5 299936 2 2 2 0 1 0 0 0 1 0 0.13 0.70 -3350 C4orf43 137376 2 2 2 0 0 1 0 0 1 0 0.13 0.70 -3351 PER3 period homolog 3 (Drosophila) 812032 9 8 8 0 3 3 1 1 1 0 0.13 0.70 -3352 NDFIP1 Nedd4 family interacting protein 1 140448 2 2 2 1 0 0 1 0 1 0 0.13 0.70 -3353 ZNF20 zinc finger protein 20 361760 5 4 5 0 0 3 1 0 1 0 0.13 0.70 -3354 GTF2IRD1 GTF2I repeat domain containing 1 649348 9 8 9 0 6 2 1 0 0 0 0.13 0.70 -3355 GAN giant axonal neuropathy (gigaxonin) 393988 5 5 4 3 1 0 1 0 3 0 0.13 0.70 -3356 IL13RA2 interleukin 13 receptor, alpha 2 264096 3 3 3 3 1 0 2 0 0 0 0.13 0.70 -3357 PSMD1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 1 658112 8 6 8 3 4 2 1 0 1 0 0.13 0.70 -3358 GTF2E1 general transcription factor IIE, polypeptide 1, alpha 56kDa 299264 5 4 5 1 1 3 1 0 0 0 0.13 0.70 -3359 TNIP2 TNFAIP3 interacting protein 2 234976 4 4 3 0 3 1 0 0 0 0 0.13 0.70 -3360 TNFRSF17 tumor necrosis factor receptor superfamily, member 17 127008 2 2 2 1 1 0 1 0 0 0 0.13 0.70 -3361 PAPL 305760 5 5 5 1 3 1 0 0 1 0 0.13 0.70 -3362 UBA52 ubiquitin A-52 residue ribosomal protein fusion product 1 90272 2 2 2 0 0 0 2 0 0 0 0.13 0.70 -3363 TG thyroglobulin 1903524 22 15 22 12 6 9 5 0 2 0 0.13 0.70 -3364 PSMA4 proteasome (prosome, macropain) subunit, alpha type, 4 183232 2 2 2 0 1 0 0 0 1 0 0.13 0.70 -3365 RRM2 ribonucleotide reductase M2 polypeptide 230272 3 3 3 0 0 0 2 0 1 0 0.13 0.70 -3366 LIN7A lin-7 homolog A (C. elegans) 154504 2 2 2 0 1 1 0 0 0 0 0.13 0.70 -3367 ETAA1 Ewing tumor-associated antigen 1 599200 8 6 8 1 0 3 4 0 1 0 0.13 0.70 -3368 CXCL14 chemokine (C-X-C motif) ligand 14 55552 2 2 2 0 2 0 0 0 0 0 0.13 0.70 -3369 TAS1R2 taste receptor, type 1, member 2 569856 8 8 7 3 5 2 1 0 0 0 0.13 0.70 -3370 KPNA1 karyopherin alpha 1 (importin alpha 5) 373856 6 5 6 0 5 0 1 0 0 0 0.13 0.70 -3371 VRK1 vaccinia related kinase 1 277536 4 4 4 1 1 2 1 0 0 0 0.13 0.70 -3372 ZNF75D 347872 4 4 4 1 0 2 2 0 0 0 0.13 0.70 -3373 MYL1 myosin, light chain 1, alkali; skeletal, fast 140452 2 2 2 2 0 1 1 0 0 0 0.13 0.70 -3374 HECW2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 1082144 15 11 15 7 9 2 2 0 0 2 0.13 0.70 -3375 ABCC12 ATP-binding cassette, sub-family C (CFTR/MRP), member 12 939904 11 9 11 4 4 4 1 0 2 0 0.13 0.70 -3376 TRAF5 TNF receptor-associated factor 5 383936 6 5 6 2 2 2 1 1 0 0 0.13 0.70 -3377 SPRR1A small proline-rich protein 1A 61376 1 1 1 0 0 0 1 0 0 0 0.13 0.70 -3378 GSTZ1 glutathione transferase zeta 1 (maleylacetoacetate isomerase) 151216 2 2 2 0 0 0 1 0 1 0 0.13 0.70 -3379 FAM71F1 family with sequence similarity 71, member F1 238112 3 3 3 1 1 1 1 0 0 0 0.13 0.70 -3380 THRB thyroid hormone receptor, beta (erythroblastic leukemia viral (v-erb-a) oncogene homolog 2, avian) 317632 4 4 4 0 0 2 2 0 0 0 0.13 0.70 -3381 FOXK1 forkhead box K1 332556 6 6 5 3 4 1 1 0 0 0 0.13 0.70 -3382 RIMS3 regulating synaptic membrane exocytosis 3 212752 4 4 4 1 3 1 0 0 0 0 0.13 0.70 -3383 ADM adrenomedullin 117096 2 2 2 0 0 0 1 0 1 0 0.13 0.70 -3384 ZNF275 zinc finger protein 275 212880 4 4 4 1 1 1 2 0 0 0 0.13 0.70 -3385 ELTD1 EGF, latrophilin and seven transmembrane domain containing 1 474256 7 6 7 3 2 4 1 0 0 0 0.13 0.70 -3386 SLC17A4 solute carrier family 17 (sodium phosphate), member 4 344512 3 3 3 0 0 3 0 0 0 0 0.13 0.70 -3387 NRSN1 neurensin 1 133504 2 2 2 0 0 0 1 0 1 0 0.13 0.70 -3388 DIS3L DIS3 mitotic control homolog (S. cerevisiae)-like 669760 9 8 9 1 4 3 2 0 0 0 0.13 0.70 -3389 MFSD2B 309728 5 5 5 0 5 0 0 0 0 0 0.13 0.70 -3390 SLC22A25 solute carrier family 22, member 25 376320 5 4 5 2 0 4 0 0 1 0 0.13 0.70 -3391 LGR4 leucine-rich repeat-containing G protein-coupled receptor 4 613536 9 6 9 2 1 5 1 0 2 0 0.13 0.70 -3392 SGOL2 shugoshin-like 2 (S. pombe) 848260 7 6 7 0 0 0 5 0 2 0 0.13 0.70 -3393 ACOX3 acyl-Coenzyme A oxidase 3, pristanoyl 446208 7 7 7 2 3 2 1 0 1 0 0.13 0.70 -3394 NID1 nidogen 1 824140 13 12 13 9 8 2 3 0 0 0 0.13 0.70 -3395 FBXO27 F-box protein 27 149996 3 3 3 4 2 1 0 0 0 0 0.13 0.70 -3396 ADCK1 aarF domain containing kinase 1 361088 6 5 6 0 1 2 2 0 1 0 0.13 0.70 -3397 PIP prolactin-induced protein 102368 2 2 2 2 1 0 0 0 1 0 0.13 0.70 -3398 GIMAP7 GTPase, IMAP family member 7 203168 4 3 4 0 2 1 0 0 1 0 0.13 0.70 -3399 RASGRP3 RAS guanyl releasing protein 3 (calcium and DAG-regulated) 478688 7 6 7 2 4 3 0 0 0 0 0.13 0.70 -3400 PKIB protein kinase (cAMP-dependent, catalytic) inhibitor beta 54880 1 1 1 2 1 0 0 0 0 0 0.13 0.70 -3401 MOBKL1A MOB1, Mps One Binder kinase activator-like 1A (yeast) 147168 2 2 2 1 0 2 0 0 0 0 0.13 0.70 -3402 SCARB2 scavenger receptor class B, member 2 332640 4 4 4 2 3 0 1 0 0 0 0.13 0.70 -3403 SPZ1 spermatogenic leucine zipper 1 290528 4 4 4 0 1 2 0 0 1 0 0.13 0.70 -3404 SIDT2 SID1 transmembrane family, member 2 577108 8 7 8 1 3 3 2 0 0 0 0.13 0.70 -3405 KRT74 keratin 74 364224 5 5 5 2 2 2 1 0 0 0 0.13 0.70 -3406 CENPF centromere protein F, 350/400ka (mitosin) 2110304 26 14 26 8 2 12 9 0 3 0 0.13 0.70 -3407 DGKH diacylglycerol kinase, eta 825132 10 8 10 1 8 0 2 0 0 0 0.13 0.70 -3408 RNASE7 ribonuclease, RNase A family, 7 106400 2 2 2 0 1 0 1 0 0 0 0.13 0.70 -3409 MEAF6 135016 3 3 3 0 0 3 0 0 0 0 0.13 0.70 -3410 GAGE10 G antigen 10 64680 1 1 1 0 0 1 0 0 0 0 0.13 0.70 -3411 SYN1 synapsin I 276264 5 5 5 1 2 1 2 0 0 0 0.13 0.70 -3412 KIAA1632 KIAA1632 1768312 19 13 18 3 5 6 5 0 3 0 0.13 0.70 -3413 RGS18 regulator of G-protein signaling 18 163072 2 2 2 0 0 1 1 0 0 0 0.13 0.70 -3414 PTPRN2 protein tyrosine phosphatase, receptor type, N polypeptide 2 614432 9 9 9 2 3 2 2 0 2 0 0.13 0.70 -3415 UBE2A ubiquitin-conjugating enzyme E2A (RAD6 homolog) 97440 2 2 2 0 0 1 0 0 1 0 0.13 0.70 -3416 LUZP1 leucine zipper protein 1 725536 6 6 6 2 2 0 3 0 1 0 0.13 0.70 -3417 CYP2C19 cytochrome P450, family 2, subfamily C, polypeptide 19 338016 4 4 4 1 2 1 1 0 0 0 0.13 0.70 -3418 ZNF530 zinc finger protein 530 400792 5 5 5 4 0 0 3 0 2 0 0.13 0.70 -3419 SLC35D2 solute carrier family 35, member D2 201600 3 3 3 0 1 2 0 0 0 0 0.13 0.70 -3420 ZNF212 zinc finger protein 212 327824 5 4 5 0 1 1 2 0 1 0 0.13 0.70 -3421 C11orf40 chromosome 11 open reading frame 40 138384 2 2 2 1 0 1 1 0 0 0 0.13 0.70 -3422 DNTT deoxynucleotidyltransferase, terminal 352576 7 5 7 1 1 5 1 0 0 0 0.13 0.70 -3423 KIAA1267 KIAA1267 755776 8 8 8 0 3 4 0 0 1 0 0.13 0.70 -3424 CCDC123 coiled-coil domain containing 123 543736 5 5 5 0 3 1 0 0 1 0 0.13 0.70 -3425 ADAM15 ADAM metallopeptidase domain 15 569828 7 7 7 1 3 2 1 0 1 0 0.13 0.70 -3426 KPNA5 karyopherin alpha 5 (importin alpha 6) 375424 4 3 4 1 0 2 2 0 0 0 0.13 0.70 -3427 ABCC11 ATP-binding cassette, sub-family C (CFTR/MRP), member 11 952640 11 10 11 1 4 4 2 0 1 0 0.13 0.71 -3428 ODC1 ornithine decarboxylase 1 319424 5 5 5 2 2 2 0 0 1 0 0.13 0.71 -3429 PDZRN3 PDZ domain containing RING finger 3 586012 9 8 9 3 6 0 1 0 2 0 0.13 0.71 -3430 DDX6 DEAD (Asp-Glu-Ala-Asp) box polypeptide 6 336000 4 4 4 0 1 0 2 0 1 0 0.13 0.71 -3431 SLC25A18 solute carrier family 25 (mitochondrial carrier), member 18 213888 3 3 3 1 1 0 1 1 0 0 0.13 0.71 -3432 CNPY2 canopy 2 homolog (zebrafish) 127456 2 2 2 0 0 1 1 0 0 0 0.13 0.71 -3433 GRIP1 glutamate receptor interacting protein 1 745248 8 7 8 2 2 3 2 0 1 0 0.13 0.71 -3434 TBC1D23 TBC1 domain family, member 23 476448 5 5 5 1 1 2 0 0 2 0 0.13 0.71 -3435 RAB25 RAB25, member RAS oncogene family 148288 2 2 2 0 0 2 0 0 0 0 0.13 0.71 -3436 DHODH dihydroorotate dehydrogenase 254456 4 4 4 0 2 1 1 0 0 0 0.13 0.71 -3437 HAO2 hydroxyacid oxidase 2 (long chain) 242816 4 3 4 0 0 2 1 0 1 0 0.13 0.71 -3438 SLC18A3 solute carrier family 18 (vesicular acetylcholine), member 3 340572 6 6 6 2 4 1 1 0 0 0 0.13 0.71 -3439 ZXDA zinc finger, X-linked, duplicated A 394868 5 5 5 2 0 2 2 0 1 0 0.13 0.71 -3440 GPR37 G protein-coupled receptor 37 (endothelin receptor type B-like) 385924 7 7 7 1 4 3 0 0 0 0 0.14 0.71 -3441 POMP proteasome maturation protein 99848 1 1 1 0 0 1 0 0 0 0 0.14 0.71 -3442 CMYA5 cardiomyopathy associated 5 2694752 28 15 28 9 2 11 10 0 5 0 0.14 0.71 -3443 CD47 CD47 molecule 209664 3 3 3 0 0 0 3 0 0 0 0.14 0.71 -3444 LAD1 ladinin 1 346472 5 5 5 0 2 2 0 0 1 0 0.14 0.71 -3445 MYBL1 v-myb myeloblastosis viral oncogene homolog (avian)-like 1 484992 6 5 6 1 1 3 1 0 1 0 0.14 0.71 -3446 MGST3 microsomal glutathione S-transferase 3 107296 1 1 1 0 0 0 0 0 1 0 0.14 0.71 -3447 OR1J1 olfactory receptor, family 1, subfamily J, member 1 217952 3 3 3 1 1 1 1 0 0 0 0.14 0.71 -3448 MRPL22 mitochondrial ribosomal protein L22 145376 2 2 2 0 0 0 2 0 0 0 0.14 0.71 -3449 SOX21 SRY (sex determining region Y)-box 21 76356 2 2 2 1 1 1 0 0 0 0 0.14 0.71 -3450 SPANXC SPANX family, member C 67648 2 1 2 0 0 1 1 0 0 0 0.14 0.71 -3451 IFT88 intraflagellar transport 88 homolog (Chlamydomonas) 580208 5 5 5 0 2 1 1 0 1 0 0.14 0.71 -3452 VPS13A vacuolar protein sorting 13 homolog A (S. cerevisiae) 2219304 26 15 26 2 4 13 8 0 1 0 0.14 0.71 -3453 C1orf52 chromosome 1 open reading frame 52 123936 3 3 3 1 1 1 1 0 0 0 0.14 0.71 -3454 ARL11 ADP-ribosylation factor-like 11 125048 2 2 2 2 1 0 0 0 1 0 0.14 0.71 -3455 ERMP1 endoplasmic reticulum metallopeptidase 1 563472 6 6 6 3 0 3 3 0 0 0 0.14 0.71 -3456 CUL5 cullin 5 541856 5 5 5 2 2 2 0 0 1 0 0.14 0.71 -3457 ADAMTS17 ADAM metallopeptidase with thrombospondin type 1 motif, 17 622916 10 9 10 1 6 2 2 0 0 0 0.14 0.71 -3458 CNTROB centrobin, centrosomal BRCA2 interacting protein 639296 7 7 7 1 4 2 0 0 1 0 0.14 0.71 -3459 PIWIL1 piwi-like 1 (Drosophila) 597184 8 6 8 0 2 2 2 0 2 0 0.14 0.71 -3460 CARD11 caspase recruitment domain family, member 11 770404 9 9 8 4 7 1 1 0 0 0 0.14 0.71 -3461 ARHGEF38 151424 1 1 1 0 0 0 0 0 1 0 0.14 0.71 -3462 ERO1LB ERO1-like beta (S. cerevisiae) 305088 7 4 7 0 2 3 1 0 1 0 0.14 0.71 -3463 KIAA1539 KIAA1539 340216 4 4 4 1 2 1 1 0 0 0 0.14 0.71 -3464 GJC1 gap junction protein, gamma 1, 45kDa 267680 4 4 4 1 3 0 0 0 1 0 0.14 0.71 -3465 OR51I1 olfactory receptor, family 51, subfamily I, member 1 212576 5 3 5 1 0 3 2 0 0 0 0.14 0.71 -3466 PNMA5 paraneoplastic antigen like 5 299180 4 4 4 2 0 2 1 0 1 0 0.14 0.71 -3467 KRTAP5-2 keratin associated protein 5-2 120512 1 1 1 0 0 0 0 0 1 0 0.14 0.71 -3468 C10orf88 chromosome 10 open reading frame 88 273336 3 3 3 0 0 2 0 0 1 0 0.14 0.71 -3469 LELP1 late cornified envelope-like proline-rich 1 67424 1 1 1 1 1 0 0 0 0 0 0.14 0.71 -3470 PIWIL4 piwi-like 4 (Drosophila) 590320 8 7 8 1 4 1 3 0 0 0 0.14 0.71 -3471 RBM39 RNA binding motif protein 39 371168 6 5 6 0 0 2 3 0 1 0 0.14 0.71 -3472 LIAS lipoic acid synthetase 260512 4 4 4 0 0 2 1 0 1 0 0.14 0.71 -3473 GBP6 guanylate binding protein family, member 6 435008 7 5 7 0 3 2 1 0 1 0 0.14 0.71 -3474 C15orf41 chromosome 15 open reading frame 41 189976 2 2 2 1 0 1 1 0 0 0 0.14 0.71 -3475 MRGPRX4 MAS-related GPR, member X4 217952 3 3 3 0 1 0 1 0 1 0 0.14 0.71 -3476 LRRN1 leucine rich repeat neuronal 1 482720 6 6 6 0 3 1 2 0 0 0 0.14 0.71 -3477 MGST1 microsomal glutathione S-transferase 1 107520 2 2 2 0 0 1 1 0 0 0 0.14 0.71 -3478 CD63 CD63 molecule 163268 3 3 3 0 1 1 1 0 0 0 0.14 0.71 -3479 BRD7 bromodomain containing 7 454048 4 4 4 0 1 1 1 0 1 0 0.14 0.71 -3480 KIAA1958 KIAA1958 484512 6 6 6 3 4 2 0 0 0 0 0.14 0.71 -3481 ZNF831 zinc finger protein 831 1007500 11 9 10 4 1 5 1 1 3 0 0.14 0.71 -3482 NUP205 nucleoporin 205kDa 1391264 13 10 13 4 1 6 3 0 0 3 0.14 0.71 -3483 KIF25 kinesin family member 25 239840 3 3 3 2 2 0 0 0 1 0 0.14 0.71 -3484 ZNF763 zinc finger protein 763 271040 4 4 4 0 2 2 0 0 0 0 0.14 0.71 -3485 CHD1 chromodomain helicase DNA binding protein 1 1178568 10 9 10 1 3 5 1 0 1 0 0.14 0.71 -3486 TNMD tenomodulin 219968 3 3 3 1 0 1 2 0 0 0 0.14 0.71 -3487 AVPI1 arginine vasopressin-induced 1 80696 2 2 2 0 2 0 0 0 0 0 0.14 0.71 -3488 SAA4 serum amyloid A4, constitutive 90720 2 2 2 1 0 0 1 0 1 0 0.14 0.71 -3489 ACPL2 acid phosphatase-like 2 327712 5 5 5 1 2 1 2 0 0 0 0.14 0.71 -3490 SPCS1 signal peptidase complex subunit 1 homolog (S. cerevisiae) 80836 1 1 1 0 0 0 0 0 1 0 0.14 0.71 -3491 KRTAP19-4 keratin associated protein 19-4 58016 1 1 1 1 0 0 1 0 0 0 0.14 0.71 -3492 RAP1B RAP1B, member of RAS oncogene family 129696 2 2 2 0 1 0 1 0 0 0 0.14 0.71 -3493 RASGRP1 RAS guanyl releasing protein 1 (calcium and DAG-regulated) 541256 5 5 5 2 3 1 0 0 1 0 0.14 0.71 -3494 LY6E lymphocyte antigen 6 complex, locus E 86100 2 2 2 0 0 2 0 0 0 0 0.14 0.71 -3495 HACE1 HECT domain and ankyrin repeat containing, E3 ubiquitin protein ligase 1 615104 7 6 7 4 1 3 3 0 0 0 0.14 0.71 -3496 TSPAN33 tetraspanin 33 192136 3 3 3 0 0 0 3 0 0 0 0.14 0.72 -3497 RNF180 ring finger protein 180 269472 4 3 4 1 0 1 3 0 0 0 0.14 0.72 -3498 MAP7D3 MAP7 domain containing 3 588896 7 7 7 0 3 2 2 0 0 0 0.14 0.72 -3499 TNFRSF9 tumor necrosis factor receptor superfamily, member 9 170688 3 3 3 1 1 1 1 0 0 0 0.14 0.72 -3500 ZNF493 zinc finger protein 493 525056 6 5 6 0 1 2 2 0 1 0 0.14 0.72 -3501 GBA3 glucosidase, beta, acid 3 (cytosolic) 318688 3 3 3 2 0 1 0 0 2 0 0.14 0.72 -3502 C2orf42 chromosome 2 open reading frame 42 393568 4 4 4 0 0 2 2 0 0 0 0.14 0.72 -3503 FIGNL1 fidgetin-like 1 454496 5 5 5 0 2 1 1 0 1 0 0.14 0.72 -3504 ASAH1 N-acylsphingosine amidohydrolase (acid ceramidase) 1 306488 3 3 3 1 0 1 1 0 1 0 0.14 0.72 -3505 OR5H14 olfactory receptor, family 5, subfamily H, member 14 209888 3 3 3 0 1 1 1 0 0 0 0.14 0.72 -3506 GSDMC 353696 7 5 7 0 1 2 3 0 1 0 0.14 0.72 -3507 SMG7 Smg-7 homolog, nonsense mediated mRNA decay factor (C. elegans) 777056 6 6 6 0 3 2 1 0 0 0 0.14 0.72 -3508 ABCA5 ATP-binding cassette, sub-family A (ABC1), member 5 1137640 17 9 17 1 4 6 4 0 3 0 0.14 0.72 -3509 RAE1 RAE1 RNA export 1 homolog (S. pombe) 257824 3 3 3 0 2 0 0 0 1 0 0.14 0.72 -3510 SMR3A submaxillary gland androgen regulated protein 3A 92512 1 1 1 0 0 1 0 0 0 0 0.14 0.72 -3511 COX7B2 cytochrome c oxidase subunit VIIb2 56000 1 1 1 0 0 1 0 0 0 0 0.14 0.72 -3512 CTSG cathepsin G 176512 3 3 3 1 3 0 0 0 0 0 0.14 0.72 -3513 TSPYL4 TSPY-like 4 221296 4 3 4 0 1 1 0 0 2 0 0.14 0.72 -3514 LZTS2 leucine zipper, putative tumor suppressor 2 264544 3 3 2 2 0 0 0 1 2 0 0.14 0.72 -3515 APCDD1L adenomatosis polyposis coli down-regulated 1-like 266020 5 5 5 4 5 0 0 0 0 0 0.14 0.72 -3516 SYT5 synaptotagmin V 221312 4 4 4 1 2 1 1 0 0 0 0.14 0.72 -3517 ABCB5 ATP-binding cassette, sub-family B (MDR/TAP), member 5 862840 14 8 14 2 4 4 5 0 1 0 0.14 0.72 -3518 VAMP3 vesicle-associated membrane protein 3 (cellubrevin) 70872 2 2 2 1 1 1 0 0 0 0 0.14 0.72 -3519 RAD1 RAD1 homolog (S. pombe) 194656 2 2 2 0 0 0 1 0 1 0 0.14 0.72 -3520 C9orf102 chromosome 9 open reading frame 102 489160 6 6 6 0 2 1 2 0 1 0 0.14 0.72 -3521 C4orf22 chromosome 4 open reading frame 22 162624 3 3 3 0 1 2 0 0 0 0 0.14 0.72 -3522 SERPINB13 serpin peptidase inhibitor, clade B (ovalbumin), member 13 269696 3 3 3 0 1 1 0 0 1 0 0.14 0.72 -3523 SRRT 606368 10 9 10 2 5 3 2 0 0 0 0.14 0.72 -3524 SIRT1 sirtuin (silent mating type information regulation 2 homolog) 1 (S. cerevisiae) 413504 5 5 5 1 1 2 1 0 1 0 0.14 0.72 -3525 ZNF304 zinc finger protein 304 446208 6 6 6 1 2 2 2 0 0 0 0.14 0.72 -3526 MAN1A1 mannosidase, alpha, class 1A, member 1 396816 5 5 5 1 0 2 2 0 1 0 0.14 0.72 -3527 IQGAP1 IQ motif containing GTPase activating protein 1 1127356 13 10 13 1 2 7 2 0 2 0 0.14 0.72 -3528 GOLPH3 golgi phosphoprotein 3 (coat-protein) 171416 3 3 3 0 2 0 0 0 1 0 0.14 0.72 -3529 C14orf118 chromosome 14 open reading frame 118 342496 5 4 5 1 1 1 0 0 1 2 0.14 0.72 -3530 LY86 lymphocyte antigen 86 114016 2 2 2 0 0 0 2 0 0 0 0.14 0.72 -3531 C10orf137 chromosome 10 open reading frame 137 821856 8 8 8 2 3 2 2 1 0 0 0.14 0.72 -3532 ZNF826 zinc finger protein 826 120512 1 1 1 1 0 1 0 0 0 0 0.14 0.72 -3533 EDA2R ectodysplasin A2 receptor 198888 2 2 2 2 0 1 0 0 1 0 0.14 0.72 -3534 WIPF1 WAS/WASL interacting protein family, member 1 344960 6 6 6 1 4 2 0 0 0 0 0.14 0.72 -3535 SAE1 SUMO1 activating enzyme subunit 1 229176 3 3 3 1 0 3 0 0 0 0 0.14 0.72 -3536 OR6C6 olfactory receptor, family 6, subfamily C, member 6 212576 4 3 4 0 1 3 0 0 0 0 0.14 0.72 -3537 FMO1 flavin containing monooxygenase 1 365344 3 3 3 1 1 0 1 0 1 0 0.14 0.72 -3538 BVES blood vessel epicardial substance 248864 4 3 4 2 0 1 1 0 2 0 0.14 0.72 -3539 ADAMDEC1 ADAM-like, decysin 1 329056 4 4 4 1 0 1 3 0 0 0 0.14 0.72 -3540 MEF2C myocyte enhancer factor 2C 333184 9 7 9 1 5 2 2 0 0 0 0.14 0.72 -3541 PABPC4 poly(A) binding protein, cytoplasmic 4 (inducible form) 433636 5 5 5 0 4 0 0 1 0 0 0.14 0.72 -3542 CKM creatine kinase, muscle 262840 5 5 5 3 3 1 0 0 1 0 0.14 0.72 -3543 GRPEL2 GrpE-like 2, mitochondrial (E. coli) 155456 1 1 1 0 0 0 0 0 1 0 0.14 0.72 -3544 DTL denticleless homolog (Drosophila) 504672 4 4 4 2 0 1 1 0 2 0 0.14 0.72 -3545 TEX10 testis expressed 10 637588 7 7 7 1 0 4 2 0 1 0 0.14 0.72 -3546 LIMCH1 LIM and calponin homology domains 1 736820 9 6 9 0 3 3 1 0 2 0 0.14 0.72 -3547 CAMK1D calcium/calmodulin-dependent protein kinase ID 277088 4 4 4 0 2 1 0 0 1 0 0.14 0.72 -3548 RUNX1 runt-related transcription factor 1 (acute myeloid leukemia 1; aml1 oncogene) 240344 3 3 3 0 0 0 1 1 1 0 0.14 0.72 -3549 MBD2 methyl-CpG binding domain protein 2 239960 3 3 3 0 1 0 1 0 1 0 0.14 0.72 -3550 CDC25B cell division cycle 25 homolog B (S. pombe) 367900 5 5 5 0 1 0 3 1 0 0 0.14 0.72 -3551 STXBP6 syntaxin binding protein 6 (amisyn) 143416 3 3 3 0 3 0 0 0 0 0 0.14 0.72 -3552 TULP2 tubby like protein 2 360864 5 5 5 1 4 1 0 0 0 0 0.14 0.72 -3553 CTSH cathepsin H 204032 3 3 3 0 0 1 1 0 1 0 0.14 0.72 -3554 CCDC34 coiled-coil domain containing 34 258204 5 5 5 0 2 2 1 0 0 0 0.14 0.72 -3555 LILRA5 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 5 210112 3 3 3 1 1 1 0 0 1 0 0.14 0.72 -3556 BTG4 B-cell translocation gene 4 155008 2 2 2 1 1 0 0 0 1 0 0.14 0.72 -3557 METT10D methyltransferase 10 domain containing 386400 8 6 7 3 4 2 1 0 1 0 0.14 0.72 -3558 ZNF138 zinc finger protein 138 180768 2 2 2 1 1 0 1 0 0 0 0.14 0.72 -3559 CYBRD1 cytochrome b reductase 1 196448 3 3 3 0 0 2 0 0 1 0 0.14 0.72 -3560 CAP2 CAP, adenylate cyclase-associated protein, 2 (yeast) 331968 4 4 4 2 0 3 1 0 0 0 0.14 0.72 -3561 RPP14 ribonuclease P/MRP 14kDa subunit 88480 2 2 1 0 0 2 0 0 0 0 0.14 0.72 -3562 SIRT4 sirtuin (silent mating type information regulation 2 homolog) 4 (S. cerevisiae) 214368 4 4 4 0 1 1 0 1 1 0 0.14 0.72 -3563 TRMU tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase 251244 3 3 3 0 2 1 0 0 0 0 0.14 0.72 -3564 SGOL1 shugoshin-like 1 (S. pombe) 389312 4 4 4 0 1 1 1 0 1 0 0.14 0.72 -3565 ZNF202 zinc finger protein 202 434952 4 4 4 1 1 2 0 0 1 0 0.14 0.72 -3566 RGS9 regulator of G-protein signaling 9 472864 7 7 7 1 5 2 0 0 0 0 0.14 0.72 -3567 ZBED2 zinc finger, BED-type containing 2 148064 3 3 3 0 1 2 0 0 0 0 0.14 0.72 -3568 SLC9A10 solute carrier family 9, member 10 814528 8 6 8 3 1 3 2 0 2 0 0.14 0.72 -3569 THBS1 thrombospondin 1 805728 10 10 10 5 4 5 1 0 0 0 0.14 0.72 -3570 INVS inversin 729428 6 6 6 1 3 0 1 0 2 0 0.14 0.72 -3571 SFTPC surfactant, pulmonary-associated protein C 137200 1 1 1 0 0 0 0 0 1 0 0.14 0.72 -3572 C1orf125 chromosome 1 open reading frame 125 703136 10 7 9 1 2 6 1 0 1 0 0.14 0.72 -3573 CHSY3 chondroitin sulfate synthase 3 469728 6 5 6 1 0 4 2 0 0 0 0.14 0.72 -3574 YARS2 tyrosyl-tRNA synthetase 2, mitochondrial 312508 4 4 4 0 1 2 0 0 1 0 0.14 0.73 -3575 ULK3 unc-51-like kinase 3 (C. elegans) 237072 3 3 3 0 1 0 1 0 1 0 0.14 0.73 -3576 TOB2 transducer of ERBB2, 2 226436 2 2 2 0 0 0 0 0 2 0 0.14 0.73 -3577 MYST1 MYST histone acetyltransferase 1 279516 3 3 3 0 1 1 1 0 0 0 0.14 0.73 -3578 COL24A1 collagen, type XXIV, alpha 1 1206240 9 9 9 0 2 4 2 0 1 0 0.14 0.73 -3579 PRR13 proline rich 13 71456 1 1 1 0 0 0 1 0 0 0 0.14 0.73 -3580 OR6K6 olfactory receptor, family 6, subfamily K, member 6 232064 4 4 4 1 0 3 1 0 0 0 0.14 0.73 -3581 EDIL3 EGF-like repeats and discoidin I-like domains 3 333088 3 3 3 3 0 2 1 0 0 0 0.14 0.73 -3582 SLC9A7 solute carrier family 9 (sodium/hydrogen exchanger), member 7 467784 6 5 6 0 1 2 1 0 2 0 0.14 0.73 -3583 PRKRIR protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) 495712 4 4 4 0 3 1 0 0 0 0 0.14 0.73 -3584 RB1 retinoblastoma 1 (including osteosarcoma) 616896 8 5 7 2 1 1 3 0 1 2 0.14 0.73 -3585 TPR translocated promoter region (to activated MET oncogene) 1634304 20 12 19 3 6 7 2 0 2 3 0.14 0.73 -3586 MALT1 mucosa associated lymphoid tissue lymphoma translocation gene 1 521920 7 6 7 2 2 2 2 0 1 0 0.14 0.73 -3587 C21orf70 chromosome 21 open reading frame 70 100492 2 2 2 0 1 1 0 0 0 0 0.14 0.73 -3588 C1orf38 chromosome 1 open reading frame 38 412160 4 4 4 0 0 1 2 0 1 0 0.14 0.73 -3589 EFHA2 EF-hand domain family, member A2 298184 3 3 3 2 1 0 1 0 1 0 0.14 0.73 -3590 ACSL6 acyl-CoA synthetase long-chain family member 6 521780 6 6 6 2 2 1 2 1 0 0 0.14 0.73 -3591 MAT2B methionine adenosyltransferase II, beta 229896 3 3 3 0 1 2 0 0 0 0 0.14 0.73 -3592 FAM164C 308896 4 4 4 1 2 1 0 0 1 0 0.14 0.73 -3593 TROVE2 TROVE domain family, member 2 378112 6 5 6 0 1 2 3 0 0 0 0.14 0.73 -3594 HOOK1 hook homolog 1 (Drosophila) 470792 5 5 5 0 2 1 1 1 0 0 0.14 0.73 -3595 PLCXD3 phosphatidylinositol-specific phospholipase C, X domain containing 3 219072 3 3 3 1 0 2 1 0 0 0 0.15 0.73 -3596 MEIS2 Meis homeobox 2 345156 5 5 4 2 0 3 0 0 2 0 0.15 0.73 -3597 GPR61 G protein-coupled receptor 61 303716 4 4 3 0 3 1 0 0 0 0 0.15 0.73 -3598 SIDT1 SID1 transmembrane family, member 1 557144 7 7 7 4 2 1 4 0 0 0 0.15 0.73 -3599 SUSD4 sushi domain containing 4 368536 5 5 4 1 1 1 2 0 1 0 0.15 0.73 -3600 ZIM2 zinc finger, imprinted 2 362880 7 5 6 1 0 4 2 0 1 0 0.15 0.73 -3601 LOC728819 213248 3 3 3 0 1 1 0 0 1 0 0.15 0.73 -3602 TWSG1 twisted gastrulation homolog 1 (Drosophila) 154112 3 3 3 0 0 2 1 0 0 0 0.15 0.73 -3603 HTR1B 5-hydroxytryptamine (serotonin) receptor 1B 263648 6 6 6 0 6 0 0 0 0 0 0.15 0.73 -3604 TMPPE 305984 4 4 4 1 2 1 1 0 0 0 0.15 0.73 -3605 WNT10B wingless-type MMTV integration site family, member 10B 232972 4 4 4 1 2 0 0 0 2 0 0.15 0.73 -3606 RASSF4 Ras association (RalGDS/AF-6) domain family member 4 215512 4 4 4 1 3 0 1 0 0 0 0.15 0.73 -3607 RNF152 ring finger protein 152 136472 2 2 2 1 1 0 0 0 1 0 0.15 0.73 -3608 ZNF23 zinc finger protein 23 (KOX 16) 435456 6 5 6 1 1 3 2 0 0 0 0.15 0.73 -3609 RWDD1 RWD domain containing 1 170240 3 3 3 0 0 2 1 0 0 0 0.15 0.73 -3610 MTMR6 myotubularin related protein 6 427808 4 4 4 1 0 2 2 0 0 0 0.15 0.73 -3611 LAIR2 leukocyte-associated immunoglobulin-like receptor 2 107296 2 2 2 1 1 1 0 0 0 0 0.15 0.73 -3612 UQCRC2 ubiquinol-cytochrome c reductase core protein II 317632 3 3 3 0 1 1 0 0 1 0 0.15 0.73 -3613 C2orf80 137536 2 2 2 1 1 0 0 0 1 0 0.15 0.73 -3614 ZNF678 zinc finger protein 678 335328 9 4 8 1 0 5 2 0 2 0 0.15 0.73 -3615 ZFYVE16 zinc finger, FYVE domain containing 16 1050112 12 8 12 0 1 6 3 0 2 0 0.15 0.73 -3616 CHMP5 chromatin modifying protein 5 155008 2 2 2 1 0 1 0 0 1 0 0.15 0.73 -3617 DHTKD1 dehydrogenase E1 and transketolase domain containing 1 620272 9 8 8 2 6 3 0 0 0 0 0.15 0.73 -3618 SPG20 spastic paraplegia 20 (Troyer syndrome) 455392 6 5 6 2 3 0 2 0 1 0 0.15 0.73 -3619 DAZL deleted in azoospermia-like 208768 2 2 2 1 1 0 0 0 1 0 0.15 0.73 -3620 ABCC4 ATP-binding cassette, sub-family C (CFTR/MRP), member 4 912296 9 9 9 1 3 3 2 1 0 0 0.15 0.73 -3621 HIST1H2BD histone cluster 1, H2bd 86240 2 2 2 0 0 1 1 0 0 0 0.15 0.73 -3622 STK4 serine/threonine kinase 4 332488 3 3 3 0 0 0 2 0 1 0 0.15 0.73 -3623 BLZF1 basic leucine zipper nuclear factor 1 (JEM-1) 274848 4 4 4 0 2 1 0 0 1 0 0.15 0.73 -3624 SCOC short coiled-coil protein 86240 1 1 1 0 0 0 1 0 0 0 0.15 0.73 -3625 ACER1 183456 4 4 4 1 2 0 2 0 0 0 0.15 0.73 -3626 CD151 CD151 molecule (Raph blood group) 142352 1 1 1 0 0 0 0 0 1 0 0.15 0.73 -3627 C9orf23 chromosome 9 open reading frame 23 111104 2 2 2 2 0 2 0 0 0 0 0.15 0.73 -3628 SPATA22 spermatogenesis associated 22 251640 4 3 3 0 3 0 0 0 1 0 0.15 0.73 -3629 ADAMTS19 ADAM metallopeptidase with thrombospondin type 1 motif, 19 724640 10 7 10 5 1 7 0 0 2 0 0.15 0.73 -3630 GPR183 237188 4 4 4 1 0 1 3 0 0 0 0.15 0.73 -3631 PPP2R1A protein phosphatase 2 (formerly 2A), regulatory subunit A , alpha isoform 396928 5 5 3 2 5 0 0 0 0 0 0.15 0.73 -3632 COMMD2 COMM domain containing 2 138880 3 3 3 0 1 2 0 0 0 0 0.15 0.73 -3633 SLC39A7 solute carrier family 39 (zinc transporter), member 7 265832 4 4 3 0 2 1 0 0 1 0 0.15 0.73 -3634 ODF3 outer dense fiber of sperm tails 3 168080 2 2 2 0 0 1 0 0 1 0 0.15 0.73 -3635 FLOT1 flotillin 1 214032 3 3 3 0 0 1 0 2 0 0 0.15 0.73 -3636 ACSM5 acyl-CoA synthetase medium-chain family member 5 401408 4 4 4 2 2 1 0 0 1 0 0.15 0.73 -3637 C1orf57 chromosome 1 open reading frame 57 132832 2 2 2 0 1 1 0 0 0 0 0.15 0.73 -3638 GIPC2 GIPC PDZ domain containing family, member 2 187152 4 3 4 1 2 0 1 0 1 0 0.15 0.73 -3639 GM2A GM2 ganglioside activator 133952 2 2 2 0 1 1 0 0 0 0 0.15 0.73 -3640 DDX56 DEAD (Asp-Glu-Ala-Asp) box polypeptide 56 370400 5 5 5 0 3 2 0 0 0 0 0.15 0.74 -3641 SCAND3 894656 10 5 10 4 1 1 0 1 3 4 0.15 0.74 -3642 PARP8 poly (ADP-ribose) polymerase family, member 8 589876 8 6 8 1 2 3 2 0 1 0 0.15 0.74 -3643 ADH1B alcohol dehydrogenase 1B (class I), beta polypeptide 260736 3 3 3 2 0 2 1 0 0 0 0.15 0.74 -3644 PHF23 PHD finger protein 23 271376 4 3 4 1 1 1 0 0 2 0 0.15 0.74 -3645 OR6C68 olfactory receptor, family 6, subfamily C, member 68 213416 2 2 2 0 0 0 2 0 0 0 0.15 0.74 -3646 GSTM4 glutathione S-transferase M4 159936 2 2 2 0 0 2 0 0 0 0 0.15 0.74 -3647 OR4C6 olfactory receptor, family 4, subfamily C, member 6 209216 3 3 3 1 0 3 0 0 0 0 0.15 0.74 -3648 PPP1R9A protein phosphatase 1, regulatory (inhibitor) subunit 9A 904016 9 7 9 3 3 2 2 0 0 2 0.15 0.74 -3649 JTB jumping translocation breakpoint 103264 2 2 2 0 0 2 0 0 0 0 0.15 0.74 -3650 FAM183A 94304 2 2 2 0 0 2 0 0 0 0 0.15 0.74 -3651 SLC7A13 solute carrier family 7, (cationic amino acid transporter, y+ system) member 13 320096 3 3 3 1 0 0 1 0 2 0 0.15 0.74 -3652 PRR4 proline rich 4 (lacrimal) 118272 1 1 1 0 0 0 0 0 1 0 0.15 0.74 -3653 WFDC9 WAP four-disulfide core domain 9 63168 1 1 1 0 0 0 0 0 1 0 0.15 0.74 -3654 PTPRG protein tyrosine phosphatase, receptor type, G 975060 11 10 11 1 3 3 3 0 2 0 0.15 0.74 -3655 BACH1 BTB and CNC homology 1, basic leucine zipper transcription factor 1 498848 8 6 7 0 4 3 0 0 1 0 0.15 0.74 -3656 FAM171B 553748 9 6 8 1 4 4 0 0 1 0 0.15 0.74 -3657 FAF1 Fas (TNFRSF6) associated factor 1 442528 4 4 4 1 0 3 0 0 1 0 0.15 0.74 -3658 ZNF670 zinc finger protein 670 265664 4 4 4 2 2 1 1 0 0 0 0.15 0.74 -3659 ERI2 227272 4 3 4 0 1 0 2 0 1 0 0.15 0.74 -3660 TMEM99 transmembrane protein 99 168644 2 2 2 0 0 0 2 0 0 0 0.15 0.74 -3661 KLHL23 kelch-like 23 (Drosophila) 378336 5 5 5 1 1 3 0 0 1 0 0.15 0.74 -3662 POU1F1 POU class 1 homeobox 1 203840 5 3 5 0 2 1 1 0 1 0 0.15 0.74 -3663 PRKCE protein kinase C, epsilon 504336 6 6 6 1 4 1 0 0 1 0 0.15 0.74 -3664 OR5M8 olfactory receptor, family 5, subfamily M, member 8 210560 3 3 3 1 1 2 0 0 0 0 0.15 0.74 -3665 DOCK9 dedicator of cytokinesis 9 1389880 12 11 12 2 5 4 2 0 1 0 0.15 0.74 -3666 EPB41L4A erythrocyte membrane protein band 4.1 like 4A 482272 9 6 9 1 4 2 2 0 1 0 0.15 0.74 -3667 OPN5 opsin 5 241920 3 3 3 0 2 0 0 0 1 0 0.15 0.74 -3668 TEX9 testis expressed 9 274176 3 3 3 1 1 0 2 0 0 0 0.15 0.74 -3669 C3orf36 chromosome 3 open reading frame 36 108752 2 2 2 0 1 0 1 0 0 0 0.15 0.74 -3670 OR4D11 olfactory receptor, family 4, subfamily D, member 11 210560 3 3 3 0 1 2 0 0 0 0 0.15 0.74 -3671 ARHGEF1 Rho guanine nucleotide exchange factor (GEF) 1 602464 5 5 5 1 1 0 2 1 1 0 0.15 0.74 -3672 FGFBP1 fibroblast growth factor binding protein 1 150836 2 2 2 0 1 1 0 0 0 0 0.15 0.74 -3673 RNASE2 ribonuclease, RNase A family, 2 (liver, eosinophil-derived neurotoxin) 109760 2 2 2 0 0 2 0 0 0 0 0.15 0.74 -3674 ELMOD3 272384 3 3 3 0 1 1 0 0 1 0 0.15 0.74 -3675 CLN8 ceroid-lipofuscinosis, neuronal 8 (epilepsy, progressive with mental retardation) 194656 3 3 3 1 0 2 0 1 0 0 0.15 0.74 -3676 ESCO2 establishment of cohesion 1 homolog 2 (S. cerevisiae) 413504 4 4 4 1 0 2 1 0 1 0 0.15 0.74 -3677 CD247 CD247 molecule 118048 2 2 2 0 1 0 0 0 1 0 0.15 0.74 -3678 IARS isoleucyl-tRNA synthetase 878304 6 6 6 0 1 2 2 0 1 0 0.15 0.74 -3679 SLC22A16 solute carrier family 22 (organic cation/carnitine transporter), member 16 382816 5 5 5 1 1 4 0 0 0 0 0.15 0.74 -3680 FBXO24 F-box protein 24 399392 5 5 5 0 3 1 0 0 1 0 0.15 0.74 -3681 TP53AIP1 74060 1 1 1 0 0 0 1 0 0 0 0.15 0.74 -3682 TMEM170B 78240 3 2 3 0 0 2 1 0 0 0 0.15 0.74 -3683 CHRNA1 cholinergic receptor, nicotinic, alpha 1 (muscle) 333536 4 4 4 1 1 2 1 0 0 0 0.15 0.74 -3684 PIWIL2 piwi-like 2 (Drosophila) 674240 10 9 10 4 4 6 0 0 0 0 0.15 0.74 -3685 ZNF117 zinc finger protein 117 327040 7 4 5 0 0 6 1 0 0 0 0.15 0.74 -3686 HS3ST2 heparan sulfate (glucosamine) 3-O-sulfotransferase 2 196784 3 3 3 2 1 0 0 1 1 0 0.15 0.74 -3687 UNC119 unc-119 homolog (C. elegans) 132328 1 1 1 0 0 0 0 0 1 0 0.15 0.74 -3688 NCSTN nicastrin 492352 5 5 5 2 1 1 1 0 2 0 0.15 0.74 -3689 STIL SCL/TAL1 interrupting locus 880544 9 7 9 0 3 4 1 0 1 0 0.15 0.74 -3690 PEX11A peroxisomal biogenesis factor 11A 161184 2 2 2 0 0 0 1 0 1 0 0.15 0.74 -3691 LOC285033 82656 1 1 1 1 0 0 0 0 1 0 0.15 0.74 -3692 UBE2C ubiquitin-conjugating enzyme E2C 139808 2 2 2 0 0 0 2 0 0 0 0.15 0.74 -3693 TPMT thiopurine S-methyltransferase 172480 2 2 2 0 0 1 0 0 1 0 0.15 0.74 -3694 CNGA3 cyclic nucleotide gated channel alpha 3 471884 6 6 6 4 2 0 2 0 2 0 0.15 0.74 -3695 LASS5 LAG1 homolog, ceramide synthase 5 260764 3 3 3 0 0 3 0 0 0 0 0.15 0.74 -3696 C3orf24 chromosome 3 open reading frame 24 120512 2 2 2 1 1 1 0 0 0 0 0.15 0.74 -3697 CABYR calcium binding tyrosine-(Y)-phosphorylation regulated 470624 4 4 4 1 0 0 2 0 2 0 0.15 0.74 -3698 TTC24 tetratricopeptide repeat domain 24 198920 2 2 2 1 0 1 0 0 1 0 0.15 0.74 -3699 NDUFA1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 1, 7.5kDa 50400 1 1 1 0 1 0 0 0 0 0 0.15 0.74 -3700 ZNF395 zinc finger protein 395 345136 3 3 2 3 0 0 1 0 2 0 0.15 0.74 -3701 AQP4 aquaporin 4 222208 3 3 3 0 0 2 1 0 0 0 0.15 0.74 -3702 CDNF 124216 2 2 2 0 1 1 0 0 0 0 0.15 0.74 -3703 CTNNBIP1 catenin, beta interacting protein 1 44872 1 1 1 0 1 0 0 0 0 0 0.15 0.74 -3704 OR2C1 olfactory receptor, family 2, subfamily C, member 1 211232 3 3 3 0 1 0 2 0 0 0 0.15 0.74 -3705 NFYC nuclear transcription factor Y, gamma 233856 3 3 3 0 0 2 1 0 0 0 0.15 0.74 -3706 MC4R melanocortin 4 receptor 222152 4 3 4 1 0 1 3 0 0 0 0.15 0.74 -3707 TAS1R1 taste receptor, type 1, member 1 539336 7 7 7 0 0 3 4 0 0 0 0.15 0.74 -3708 TRPC3 transient receptor potential cation channel, subfamily C, member 3 581280 8 7 8 4 4 1 3 0 0 0 0.15 0.75 -3709 AKAP5 A kinase (PRKA) anchor protein 5 288344 4 2 3 1 0 1 0 0 1 2 0.15 0.75 -3710 SHD Src homology 2 domain containing transforming protein D 230672 4 4 4 1 2 0 2 0 0 0 0.15 0.75 -3711 PCDHB1 protocadherin beta 1 551096 8 7 8 8 3 4 1 0 0 0 0.15 0.75 -3712 NDRG2 NDRG family member 2 263424 3 3 3 4 1 1 0 0 1 0 0.15 0.75 -3713 TUBE1 tubulin, epsilon 1 315984 5 4 4 0 1 3 1 0 0 0 0.15 0.75 -3714 ALDH1A3 aldehyde dehydrogenase 1 family, member A3 333228 6 5 6 1 2 2 1 0 1 0 0.15 0.75 -3715 SNRPN small nuclear ribonucleoprotein polypeptide N 168224 2 2 2 0 0 0 1 0 1 0 0.15 0.75 -3716 THEG Theg homolog (mouse) 251608 4 4 4 2 0 3 1 0 0 0 0.15 0.75 -3717 ANKRD49 ankyrin repeat domain 49 163072 3 3 3 0 1 2 0 0 0 0 0.15 0.75 -3718 RCHY1 ring finger and CHY zinc finger domain containing 1 184128 2 2 2 0 0 1 0 0 1 0 0.15 0.75 -3719 SGPP2 sphingosine-1-phosphate phosphotase 2 223328 4 3 4 0 2 0 2 0 0 0 0.15 0.75 -3720 CDC23 cell division cycle 23 homolog (S. cerevisiae) 416192 6 5 6 2 1 4 0 0 1 0 0.15 0.75 -3721 NGFRAP1 nerve growth factor receptor (TNFRSF16) associated protein 1 76160 1 1 1 1 0 1 0 0 0 0 0.15 0.75 -3722 SERPINA4 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 4 291200 5 4 5 4 2 1 0 1 1 0 0.15 0.75 -3723 AADACL4 arylacetamide deacetylase-like 4 277760 4 4 3 2 4 0 0 0 0 0 0.15 0.75 -3724 FAM134B family with sequence similarity 134, member B 285880 4 4 4 0 1 0 3 0 0 0 0.15 0.75 -3725 TIMP1 TIMP metallopeptidase inhibitor 1 144256 2 2 2 0 1 1 0 0 0 0 0.15 0.75 -3726 WRN Werner syndrome 993440 12 9 12 0 5 4 2 0 1 0 0.15 0.75 -3727 PPEF1 protein phosphatase, EF-hand calcium binding domain 1 453824 4 4 4 4 0 0 1 1 2 0 0.15 0.75 -3728 FAM110B family with sequence similarity 110, member B 250208 4 4 4 5 3 1 0 0 0 0 0.15 0.75 -3729 SCGN secretagogin, EF-hand calcium binding protein 196000 5 3 5 2 3 1 1 0 0 0 0.15 0.75 -3730 SRPRB signal recognition particle receptor, B subunit 189056 2 2 2 1 0 1 1 0 0 0 0.15 0.75 -3731 DNAJC14 DnaJ (Hsp40) homolog, subfamily C, member 14 477792 5 5 5 1 2 1 0 0 2 0 0.15 0.75 -3732 C3orf64 chromosome 3 open reading frame 64 309120 4 4 4 0 1 3 0 0 0 0 0.15 0.75 -3733 RFWD2 ring finger and WD repeat domain 2 442540 5 5 5 0 0 3 1 0 1 0 0.15 0.75 -3734 TBX5 T-box 5 371168 5 5 5 2 3 1 1 0 0 0 0.16 0.75 -3735 CCDC102B coiled-coil domain containing 102B 351680 5 5 5 0 1 3 1 0 0 0 0.16 0.75 -3736 INTS8 integrator complex subunit 8 663488 6 5 6 3 1 1 1 0 3 0 0.16 0.75 -3737 TCEA1 transcription elongation factor A (SII), 1 210136 4 3 4 0 3 1 0 0 0 0 0.16 0.75 -3738 CRADD CASP2 and RIPK1 domain containing adaptor with death domain 134596 2 2 2 3 1 0 1 0 0 0 0.16 0.75 -3739 ABHD12B abhydrolase domain containing 12B 181888 2 2 2 0 0 2 0 0 0 0 0.16 0.75 -3740 CRYGS crystallin, gamma S 122976 2 2 2 0 0 1 0 0 1 0 0.16 0.75 -3741 RBM22 RNA binding motif protein 22 292768 4 4 4 1 3 1 0 0 0 0 0.16 0.75 -3742 TAS2R30 taste receptor, type 2, member 30 215936 2 2 2 2 0 0 2 0 0 0 0.16 0.75 -3743 TBXAS1 thromboxane A synthase 1 (platelet, cytochrome P450, family 5, subfamily A) 371168 5 5 5 0 2 2 1 0 0 0 0.16 0.75 -3744 MAP9 microtubule-associated protein 9 436768 3 3 3 2 0 0 2 0 1 0 0.16 0.75 -3745 YBX1 Y box binding protein 1 186592 3 3 3 0 2 0 0 0 1 0 0.16 0.75 -3746 CMC1 70336 1 1 1 2 0 0 0 0 1 0 0.16 0.75 -3747 GATA3 GATA binding protein 3 249260 4 3 4 2 3 0 0 0 1 0 0.16 0.75 -3748 CCT6A chaperonin containing TCP1, subunit 6A (zeta 1) 346824 4 4 4 0 1 1 0 0 2 0 0.16 0.75 -3749 GRAMD2 GRAM domain containing 2 239232 3 3 3 1 1 1 1 0 0 0 0.16 0.75 -3750 CTRL chymotrypsin-like 183400 2 2 2 0 0 1 0 0 1 0 0.16 0.75 -3751 ZC3H7B zinc finger CCCH-type containing 7B 628124 5 5 5 0 3 0 0 0 2 0 0.16 0.75 -3752 SERP2 stress-associated endoplasmic reticulum protein family member 2 47040 1 1 1 0 0 1 0 0 0 0 0.16 0.75 -3753 CRYGC crystallin, gamma C 120288 2 2 2 0 1 1 0 0 0 0 0.16 0.75 -3754 ANKRD36B ankyrin repeat domain 36B 346816 4 4 4 0 1 2 0 0 1 0 0.16 0.75 -3755 CDKAL1 CDK5 regulatory subunit associated protein 1-like 1 402304 4 4 4 1 3 0 0 0 1 0 0.16 0.75 -3756 PPP1CB protein phosphatase 1, catalytic subunit, beta isoform 219968 2 2 2 0 0 1 1 0 0 0 0.16 0.75 -3757 RFX3 regulatory factor X, 3 (influences HLA class II expression) 553280 5 5 5 1 1 1 2 0 1 0 0.16 0.75 -3758 KRT73 keratin 73 371616 4 4 4 3 2 2 0 0 0 0 0.16 0.75 -3759 FAM173B 161728 4 3 4 0 2 1 0 0 1 0 0.16 0.75 -3760 PDIA5 protein disulfide isomerase family A, member 5 354368 4 4 4 0 2 1 0 0 1 0 0.16 0.75 -3761 ZNF782 zinc finger protein 782 473984 12 6 11 0 3 5 4 0 0 0 0.16 0.75 -3762 UGT2B4 UDP glucuronosyltransferase 2 family, polypeptide B4 360864 3 3 3 0 0 2 0 0 1 0 0.16 0.75 -3763 MSC musculin (activated B-cell factor-1) 97888 3 3 3 1 1 1 1 0 0 0 0.16 0.75 -3764 CD300E CD300e molecule 142016 2 2 2 1 1 0 0 0 1 0 0.16 0.75 -3765 KLRF1 killer cell lectin-like receptor subfamily F, member 1 161368 3 3 3 0 0 2 1 0 0 0 0.16 0.75 -3766 MANBAL mannosidase, beta A, lysosomal-like 59584 1 1 1 0 0 1 0 0 0 0 0.16 0.75 -3767 SAMD12 sterile alpha motif domain containing 12 145376 2 2 2 1 0 1 1 0 0 0 0.16 0.75 -3768 SLC5A4 solute carrier family 5 (low affinity glucose cotransporter), member 4 456960 4 4 4 2 1 0 2 0 1 0 0.16 0.75 -3769 KIAA1586 KIAA1586 491376 4 4 4 1 1 0 1 0 2 0 0.16 0.75 -3770 CD27 CD27 molecule 180768 3 3 3 2 1 2 0 0 0 0 0.16 0.75 -3771 MPPED2 metallophosphoesterase domain containing 2 209952 3 3 3 1 0 3 0 0 0 0 0.16 0.75 -3772 PRPSAP1 phosphoribosyl pyrophosphate synthetase-associated protein 1 229376 4 4 4 2 2 1 1 0 0 0 0.16 0.75 -3773 UHRF1BP1L UHRF1 (ICBP90) binding protein 1-like 1008672 8 7 8 1 4 0 1 0 3 0 0.16 0.75 -3774 GUCA1B guanylate cyclase activator 1B (retina) 136344 3 3 3 0 2 1 0 0 0 0 0.16 0.75 -3775 GLIPR1L2 GLI pathogenesis-related 1 like 2 174272 2 2 2 1 0 1 1 0 0 0 0.16 0.75 -3776 CCDC64 coiled-coil domain containing 64 303940 6 6 6 1 4 1 1 0 0 0 0.16 0.75 -3777 ACBD3 acyl-Coenzyme A binding domain containing 3 304976 5 5 5 0 3 0 2 0 0 0 0.16 0.75 -3778 RGS21 regulator of G-protein signaling 21 106400 2 2 2 2 0 1 1 0 0 0 0.16 0.75 -3779 LRRC40 leucine rich repeat containing 40 418656 6 4 6 0 4 0 0 0 2 0 0.16 0.75 -3780 HEBP1 heme binding protein 1 131264 3 3 3 0 2 1 0 0 0 0 0.16 0.75 -3781 ELMOD2 ELMO/CED-12 domain containing 2 204736 2 2 1 0 2 0 0 0 0 0 0.16 0.75 -3782 TMEM51 transmembrane protein 51 171640 2 2 2 1 0 1 1 0 0 0 0.16 0.75 -3783 CARS cysteinyl-tRNA synthetase 589596 6 6 6 1 2 2 1 0 1 0 0.16 0.75 -3784 PCDHGA9 protocadherin gamma subfamily A, 9 641984 8 7 8 0 5 2 0 0 1 0 0.16 0.75 -3785 C16orf90 95508 1 1 1 0 0 0 0 0 1 0 0.16 0.75 -3786 N4BP2L1 NEDD4 binding protein 2-like 1 170448 3 3 3 0 1 2 0 0 0 0 0.16 0.75 -3787 PRSS55 238924 6 4 6 2 2 4 0 0 0 0 0.16 0.75 -3788 HPRT1 hypoxanthine phosphoribosyltransferase 1 (Lesch-Nyhan syndrome) 148288 2 2 2 1 1 0 1 0 0 0 0.16 0.75 -3789 ZNF362 zinc finger protein 362 258312 4 4 4 0 1 2 1 0 0 0 0.16 0.75 -3790 PSMC5 proteasome (prosome, macropain) 26S subunit, ATPase, 5 270384 6 4 6 1 3 2 1 0 0 0 0.16 0.75 -3791 POLR1D polymerase (RNA) I polypeptide D, 16kDa 166384 2 2 2 0 1 0 1 0 0 0 0.16 0.75 -3792 EPHB1 EPH receptor B1 676172 9 8 9 3 4 4 1 0 0 0 0.16 0.75 -3793 KIF5B kinesin family member 5B 670208 11 6 11 1 5 2 1 0 1 2 0.16 0.75 -3794 C7orf59 70512 1 1 1 0 0 0 0 0 1 0 0.16 0.75 -3795 CNOT6 CCR4-NOT transcription complex, subunit 6 384832 4 4 4 2 1 2 0 0 1 0 0.16 0.75 -3796 SFRP1 secreted frizzled-related protein 1 201236 3 3 3 1 1 0 2 0 0 0 0.16 0.75 -3797 TRIP4 thyroid hormone receptor interactor 4 388472 5 5 5 0 3 0 2 0 0 0 0.16 0.75 -3798 PKN2 protein kinase N2 679320 6 5 6 2 1 2 1 0 2 0 0.16 0.75 -3799 PRIMA1 proline rich membrane anchor 1 78708 1 1 1 0 0 0 1 0 0 0 0.16 0.75 -3800 APOBEC4 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 4 (putative) 248192 4 4 4 0 1 3 0 0 0 0 0.16 0.75 -3801 COL11A2 collagen, type XI, alpha 2 900936 11 8 11 2 3 4 2 0 2 0 0.16 0.75 -3802 C1orf194 chromosome 1 open reading frame 194 98824 2 2 2 0 0 1 1 0 0 0 0.16 0.75 -3803 PLXDC2 plexin domain containing 2 356328 5 4 5 3 1 2 2 0 0 0 0.16 0.75 -3804 C6orf15 chromosome 6 open reading frame 15 155768 2 2 2 0 0 1 0 0 1 0 0.16 0.75 -3805 TMEM141 transmembrane protein 141 64736 1 1 1 0 0 0 1 0 0 0 0.16 0.75 -3806 GZMB granzyme B (granzyme 2, cytotoxic T-lymphocyte-associated serine esterase 1) 163112 2 2 2 0 0 0 1 0 1 0 0.16 0.75 -3807 PGLYRP4 peptidoglycan recognition protein 4 258496 4 4 4 0 2 2 0 0 0 0 0.16 0.75 -3808 FAM82A2 327264 2 2 2 0 1 0 0 0 1 0 0.16 0.75 -3809 CCNA2 cyclin A2 295372 3 3 3 0 0 2 1 0 0 0 0.16 0.75 -3810 ZNF333 zinc finger protein 333 457408 7 5 7 1 3 1 1 0 2 0 0.16 0.75 -3811 RAB31 RAB31, member RAS oncogene family 121724 2 2 2 0 1 0 1 0 0 0 0.16 0.75 -3812 ZP3 zona pellucida glycoprotein 3 (sperm receptor) 282772 3 3 3 1 0 2 0 0 1 0 0.16 0.75 -3813 PTCRA pre T-cell antigen receptor alpha 146160 2 2 2 0 0 2 0 0 0 0 0.16 0.75 -3814 PREX1 1093140 16 14 15 11 9 5 2 0 0 0 0.16 0.75 -3815 KIAA1704 KIAA1704 235816 3 3 3 0 1 2 0 0 0 0 0.16 0.75 -3816 ZNF564 zinc finger protein 564 375872 7 5 7 0 1 4 2 0 0 0 0.16 0.75 -3817 SLC5A12 solute carrier family 5 (sodium/glucose cotransporter), member 12 429272 5 4 5 2 0 2 3 0 0 0 0.16 0.75 -3818 BMP10 bone morphogenetic protein 10 287392 3 3 3 3 0 2 0 0 1 0 0.16 0.75 -3819 PAQR9 progestin and adipoQ receptor family member IX 214216 6 5 6 1 4 2 0 0 0 0 0.16 0.75 -3820 KIR2DL4 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 4 162632 2 2 2 1 2 0 0 0 0 0 0.16 0.75 -3821 TUBG2 tubulin, gamma 2 306392 3 3 3 0 1 0 0 0 2 0 0.16 0.75 -3822 GPR89B G protein-coupled receptor 89B 97440 1 1 1 0 0 0 0 0 1 0 0.16 0.76 -3823 C20orf177 chromosome 20 open reading frame 177 258860 6 4 6 2 1 4 0 0 1 0 0.16 0.76 -3824 ITPA inosine triphosphatase (nucleoside triphosphate pyrophosphatase) 138208 2 2 2 1 0 0 2 0 0 0 0.16 0.76 -3825 VAMP8 vesicle-associated membrane protein 8 (endobrevin) 69608 1 1 1 0 0 0 1 0 0 0 0.16 0.76 -3826 KRT72 keratin 72 302512 5 4 5 1 3 1 1 0 0 0 0.16 0.76 -3827 MRPS21 mitochondrial ribosomal protein S21 60928 1 1 1 0 0 1 0 0 0 0 0.16 0.76 -3828 MTERFD2 MTERF domain containing 2 254100 3 3 3 3 1 1 0 0 1 0 0.16 0.76 -3829 POLH polymerase (DNA directed), eta 488768 5 5 5 1 1 3 0 0 1 0 0.16 0.76 -3830 ANKRD16 ankyrin repeat domain 16 206584 3 3 3 2 0 1 1 0 1 0 0.16 0.76 -3831 KRT9 keratin 9 (epidermolytic palmoplantar keratoderma) 393884 5 5 5 1 1 4 0 0 0 0 0.16 0.76 -3832 C13orf18 chromosome 13 open reading frame 18 436376 7 6 7 1 1 3 2 0 1 0 0.16 0.76 -3833 ADRA2A adrenergic, alpha-2A-, receptor 178208 3 3 3 0 1 0 0 0 2 0 0.16 0.76 -3834 SOS2 son of sevenless homolog 2 (Drosophila) 905632 11 9 11 2 3 4 4 0 0 0 0.16 0.76 -3835 HARS2 histidyl-tRNA synthetase 2, mitochondrial (putative) 327264 4 4 3 1 2 1 1 0 0 0 0.16 0.76 -3836 HIF3A hypoxia inducible factor 3, alpha subunit 427256 6 6 6 1 2 2 0 0 2 0 0.16 0.76 -3837 ARSH arylsulfatase family, member H 386400 5 5 5 1 2 3 0 0 0 0 0.16 0.76 -3838 EPB41L1 erythrocyte membrane protein band 4.1-like 1 611520 9 8 9 3 4 2 2 0 1 0 0.16 0.76 -3839 PM20D1 peptidase M20 domain containing 1 349664 5 5 5 1 2 2 1 0 0 0 0.16 0.76 -3840 ZNF571 zinc finger protein 571 412608 6 6 6 0 2 4 0 0 0 0 0.16 0.76 -3841 C17orf104 400264 5 4 5 1 0 3 1 0 1 0 0.16 0.76 -3842 VSIG8 V-set and immunoglobulin domain containing 8 198408 3 3 3 0 0 2 1 0 0 0 0.16 0.76 -3843 CLEC6A C-type lectin domain family 6, member A 146496 1 1 1 1 0 0 1 0 0 0 0.16 0.76 -3844 OXR1 oxidation resistance 1 523936 6 5 6 3 1 4 0 0 1 0 0.16 0.76 -3845 ATP6V1B1 ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B1 (Renal tubular acidosis with deafness) 354884 5 5 5 0 2 2 1 0 0 0 0.16 0.76 -3846 OR2M7 olfactory receptor, family 2, subfamily M, member 7 211232 3 3 3 0 0 2 1 0 0 0 0.16 0.76 -3847 ZFP14 zinc finger protein 14 homolog (mouse) 362432 8 4 7 2 4 2 2 0 0 0 0.16 0.76 -3848 CHMP2A chromatin modifying protein 2A 154336 3 3 3 0 1 2 0 0 0 0 0.16 0.76 -3849 LGALS9 lectin, galactoside-binding, soluble, 9 (galectin 9) 248332 2 2 2 0 1 0 0 0 1 0 0.16 0.76 -3850 MAP1LC3B2 85568 2 2 2 0 1 0 1 0 0 0 0.16 0.76 -3851 ST18 suppression of tumorigenicity 18 (breast carcinoma) (zinc finger protein) 722176 11 7 11 2 2 4 3 0 2 0 0.16 0.76 -3852 ZPBP zona pellucida binding protein 223328 3 3 3 0 1 1 1 0 0 0 0.16 0.76 -3853 PTPN11 protein tyrosine phosphatase, non-receptor type 11 (Noonan syndrome 1) 408576 5 5 5 0 1 4 0 0 0 0 0.16 0.76 -3854 AGPAT1 1-acylglycerol-3-phosphate O-acyltransferase 1 (lysophosphatidic acid acyltransferase, alpha) 135408 2 2 2 1 1 0 1 0 0 0 0.16 0.76 -3855 GP5 glycoprotein V (platelet) 314636 7 6 7 4 5 1 1 0 0 0 0.16 0.76 -3856 RAD52 RAD52 homolog (S. cerevisiae) 291424 4 4 4 1 3 1 0 0 0 0 0.16 0.76 -3857 GNAQ guanine nucleotide binding protein (G protein), q polypeptide 233212 4 3 4 0 0 1 1 0 2 0 0.16 0.76 -3858 SH2D4A SH2 domain containing 4A 313824 4 4 4 1 1 0 2 0 1 0 0.16 0.76 -3859 DFFA DNA fragmentation factor, 45kDa, alpha polypeptide 233856 3 3 3 0 0 2 0 0 1 0 0.16 0.76 -3860 OVCH1 ovochymase 1 760328 13 8 13 0 4 7 2 0 0 0 0.16 0.76 -3861 ATL1 386400 4 4 4 0 0 1 1 0 2 0 0.16 0.76 -3862 MUC17 mucin 17, cell surface associated 3031616 23 17 23 5 5 14 3 0 1 0 0.16 0.76 -3863 CABP5 calcium binding protein 5 122304 2 2 2 1 2 0 0 0 0 0 0.16 0.76 -3864 STT3B STT3, subunit of the oligosaccharyltransferase complex, homolog B (S. cerevisiae) 515228 6 6 5 0 2 2 2 0 0 0 0.16 0.76 -3865 TMEM218 80640 1 1 1 0 0 0 0 0 1 0 0.16 0.76 -3866 GDF9 growth differentiation factor 9 307552 3 3 3 1 0 2 0 0 1 0 0.16 0.76 -3867 OR5AK2 olfactory receptor, family 5, subfamily AK, member 2 209216 4 3 4 0 1 2 1 0 0 0 0.16 0.76 -3868 ARGFX arginine-fifty homeobox 188832 3 3 3 0 0 2 1 0 0 0 0.16 0.76 -3869 VIT vitrin 481880 9 7 9 2 4 3 1 0 1 0 0.16 0.76 -3870 STAG3L2 stromal antigen 3-like 2 73444 1 1 1 0 0 0 0 0 1 0 0.16 0.76 -3871 FAM149A family with sequence similarity 149, member A 334432 5 5 5 3 2 1 1 0 1 0 0.16 0.76 -3872 C6orf64 chromosome 6 open reading frame 64 124432 2 2 2 0 0 2 0 0 0 0 0.16 0.76 -3873 SPI1 spleen focus forming virus (SFFV) proviral integration oncogene spi1 157080 2 2 2 0 1 0 0 0 1 0 0.16 0.76 -3874 CCDC91 coiled-coil domain containing 91 307776 3 3 3 3 1 1 1 0 0 0 0.16 0.76 -3875 RSPRY1 ring finger and SPRY domain containing 1 400288 4 4 4 2 0 1 2 0 1 0 0.16 0.76 -3876 SOST sclerosteosis 96516 2 2 2 0 1 1 0 0 0 0 0.16 0.76 -3877 PRHOXNB parahox cluster neighbor 40096 1 1 1 0 0 1 0 0 0 0 0.16 0.76 -3878 RFTN2 raftlin family member 2 342008 4 4 4 2 1 2 0 0 1 0 0.16 0.76 -3879 FFAR2 free fatty acid receptor 2 223328 3 3 3 4 2 1 0 0 0 0 0.16 0.76 -3880 IRAK2 interleukin-1 receptor-associated kinase 2 428204 8 6 8 0 2 3 3 0 0 0 0.16 0.76 -3881 CA8 carbonic anhydrase VIII 202720 3 3 3 1 2 1 0 0 0 0 0.16 0.76 -3882 ZNF510 zinc finger protein 510 464128 5 5 5 0 0 4 0 0 1 0 0.16 0.76 -3883 LMCD1 LIM and cysteine-rich domains 1 250920 4 4 4 3 1 1 1 0 1 0 0.16 0.76 -3884 C1orf61 chromosome 1 open reading frame 61 109984 2 2 2 0 1 0 1 0 0 0 0.16 0.76 -3885 GAS7 growth arrest-specific 7 330372 5 5 5 3 3 1 1 0 0 0 0.16 0.76 -3886 KCNJ5 potassium inwardly-rectifying channel, subfamily J, member 5 280924 4 4 4 0 3 1 0 0 0 0 0.16 0.76 -3887 TMEM225 155456 2 2 2 0 1 0 1 0 0 0 0.16 0.76 -3888 PCDHB8 protocadherin beta 8 496160 9 9 8 6 7 0 2 0 0 0 0.16 0.76 -3889 ST6GALNAC3 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 209976 4 3 4 1 3 0 0 0 1 0 0.16 0.76 -3890 POU6F1 POU class 6 homeobox 1 191044 2 2 2 0 1 0 0 0 1 0 0.16 0.76 -3891 EFHC1 EF-hand domain (C-terminal) containing 1 440608 7 5 7 1 3 2 0 0 0 2 0.16 0.76 -3892 UBE2Q1 ubiquitin-conjugating enzyme E2Q (putative) 1 237160 3 3 3 0 1 0 2 0 0 0 0.16 0.76 -3893 RNF122 ring finger protein 122 110208 3 2 3 0 2 1 0 0 0 0 0.16 0.76 -3894 DAAM2 dishevelled associated activator of morphogenesis 2 684548 9 8 9 0 5 3 1 0 0 0 0.16 0.76 -3895 CEP110 centrosomal protein 110kDa 1600704 12 9 12 1 3 5 2 0 2 0 0.17 0.76 -3896 CR1 complement component (3b/4b) receptor 1 (Knops blood group) 1095220 10 9 10 4 4 3 2 0 1 0 0.17 0.76 -3897 MKI67 antigen identified by monoclonal antibody Ki-67 2201248 23 17 23 7 5 6 11 0 1 0 0.17 0.76 -3898 GATA1 GATA binding protein 1 (globin transcription factor 1) 278880 5 5 5 3 3 2 0 0 0 0 0.17 0.76 -3899 GMFG glia maturation factor, gamma 102368 2 2 2 0 0 1 1 0 0 0 0.17 0.76 -3900 CD52 CD52 molecule 43456 1 1 1 0 1 0 0 0 0 0 0.17 0.76 -3901 TMEM202 transmembrane protein 202 188608 2 2 2 2 0 0 1 0 1 0 0.17 0.76 -3902 PGBD4 piggyBac transposable element derived 4 392648 5 5 5 1 3 1 1 0 0 0 0.17 0.76 -3903 MASTL microtubule associated serine/threonine kinase-like 602112 7 6 7 0 1 3 2 0 1 0 0.17 0.76 -3904 HACL1 2-hydroxyacyl-CoA lyase 1 404320 4 4 4 2 1 2 1 0 0 0 0.17 0.77 -3905 NRG3 neuregulin 3 427384 7 5 7 1 3 1 1 1 1 0 0.17 0.77 -3906 SLC31A2 solute carrier family 31 (copper transporters), member 2 98992 1 1 1 0 0 0 0 0 1 0 0.17 0.77 -3907 PBXIP1 pre-B-cell leukemia homeobox interacting protein 1 490112 5 5 5 0 1 1 2 0 1 0 0.17 0.77 -3908 SCEL sciellin 491680 6 5 6 0 1 3 2 0 0 0 0.17 0.77 -3909 GLP2R glucagon-like peptide 2 receptor 383936 5 5 5 2 2 2 0 0 1 0 0.17 0.77 -3910 PTCHD3 patched domain containing 3 519596 6 6 6 5 5 0 1 0 0 0 0.17 0.77 -3911 THEM4 thioesterase superfamily member 4 144256 2 2 2 1 0 0 2 0 0 0 0.17 0.77 -3912 PPP2R2C protein phosphatase 2 (formerly 2A), regulatory subunit B, gamma isoform 325696 4 4 4 3 2 1 1 0 0 0 0.17 0.77 -3913 IGFL3 IGF-like family member 3 88256 1 1 1 0 0 0 1 0 0 0 0.17 0.77 -3914 EFCAB3 EF-hand calcium binding domain 3 305312 3 3 3 2 0 1 1 0 1 0 0.17 0.77 -3915 ZMYM2 zinc finger, MYM-type 2 943768 5 5 5 3 1 1 0 0 3 0 0.17 0.77 -3916 PHIP pleckstrin homology domain interacting protein 1236620 13 8 13 4 4 2 5 0 2 0 0.17 0.77 -3917 GRB2 growth factor receptor-bound protein 2 150976 3 3 3 0 0 2 1 0 0 0 0.17 0.77 -3918 DYRK4 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 4 359968 4 4 4 1 1 1 2 0 0 0 0.17 0.77 -3919 PODNL1 podocan-like 1 193248 2 2 2 1 1 0 0 0 1 0 0.17 0.77 -3920 TRIM73 tripartite motif-containing 73 98616 1 1 1 0 0 0 0 0 1 0 0.17 0.77 -3921 CYP2A7 cytochrome P450, family 2, subfamily A, polypeptide 7 342860 5 4 5 1 1 1 2 0 1 0 0.17 0.77 -3922 PRR5-ARHGAP8 354408 5 5 5 0 1 1 2 0 1 0 0.17 0.77 -3923 FAM162B 73696 1 1 1 1 0 0 1 0 0 0 0.17 0.77 -3924 ARSG arylsulfatase G 363328 5 5 4 3 4 1 0 0 0 0 0.17 0.77 -3925 SGMS1 sphingomyelin synthase 1 282688 3 3 3 2 1 0 1 0 1 0 0.17 0.77 -3926 TRIB2 tribbles homolog 2 (Drosophila) 233100 5 5 5 3 2 3 0 0 0 0 0.17 0.77 -3927 CYP2J2 cytochrome P450, family 2, subfamily J, polypeptide 2 346080 3 3 3 1 1 1 1 0 0 0 0.17 0.77 -3928 ZFAND3 zinc finger, AN1-type domain 3 141792 3 3 3 1 2 0 1 0 0 0 0.17 0.77 -3929 SARDH sarcosine dehydrogenase 568908 8 8 8 4 4 2 2 0 0 0 0.17 0.77 -3930 MTMR12 myotubularin related protein 12 509852 7 6 7 0 3 1 3 0 0 0 0.17 0.77 -3931 OR6C3 olfactory receptor, family 6, subfamily C, member 3 210560 2 2 2 0 0 0 1 0 1 0 0.17 0.77 -3932 TMPRSS11B transmembrane protease, serine 11B 289184 3 3 3 2 0 1 0 0 2 0 0.17 0.77 -3933 CYP2R1 cytochrome P450, family 2, subfamily R, polypeptide 1 329644 4 4 4 0 1 1 1 0 1 0 0.17 0.77 -3934 PKD2 polycystic kidney disease 2 (autosomal dominant) 530432 8 7 8 0 4 2 1 0 1 0 0.17 0.77 -3935 C4orf6 chromosome 4 open reading frame 6 64960 1 1 1 0 0 1 0 0 0 0 0.17 0.77 -3936 CCDC120 coiled-coil domain containing 120 316376 4 4 4 0 2 1 0 0 1 0 0.17 0.77 -3937 ZNF706 zinc finger protein 706 53536 1 1 1 0 0 0 0 0 1 0 0.17 0.77 -3938 AMIGO2 adhesion molecule with Ig-like domain 2 352352 5 4 5 3 2 1 1 0 1 0 0.17 0.77 -3939 PIH1D2 PIH1 domain containing 2 221936 2 2 2 0 0 0 2 0 0 0 0.17 0.77 -3940 PLEKHH2 pleckstrin homology domain containing, family H (with MyTH4 domain) member 2 1029952 11 9 11 1 2 5 1 0 3 0 0.17 0.77 -3941 FAM69C 85344 2 2 2 0 1 1 0 0 0 0 0.17 0.77 -3942 FKBP3 FK506 binding protein 3, 25kDa 157472 2 2 2 0 0 1 0 0 1 0 0.17 0.77 -3943 UBL3 ubiquitin-like 3 83776 3 2 3 0 1 1 1 0 0 0 0.17 0.77 -3944 C1orf192 chromosome 1 open reading frame 192 124096 2 2 2 1 0 0 2 0 0 0 0.17 0.77 -3945 CACNG2 calcium channel, voltage-dependent, gamma subunit 2 213080 4 3 4 3 0 0 1 0 1 2 0.17 0.77 -3946 GRXCR1 199136 2 2 2 0 0 0 0 0 2 0 0.17 0.77 -3947 C18orf34 chromosome 18 open reading frame 34 602112 8 5 8 3 0 1 5 0 2 0 0.17 0.77 -3948 F13B coagulation factor XIII, B polypeptide 455616 5 5 5 0 0 3 2 0 0 0 0.17 0.77 -3949 SPANXN4 SPANX family, member N4 38256 2 1 2 0 0 2 0 0 0 0 0.17 0.77 -3950 CEACAM4 carcinoembryonic antigen-related cell adhesion molecule 4 169552 3 3 3 0 2 0 0 0 1 0 0.17 0.77 -3951 KCNJ9 potassium inwardly-rectifying channel, subfamily J, member 9 169260 3 3 3 0 1 1 0 0 1 0 0.17 0.77 -3952 MYO1A myosin IA 725760 12 8 12 0 4 7 1 0 0 0 0.17 0.77 -3953 COX4I1 cytochrome c oxidase subunit IV isoform 1 117656 2 2 2 0 2 0 0 0 0 0 0.17 0.77 -3954 ZNF761 zinc finger protein 761 504672 4 4 4 0 0 2 1 0 1 0 0.17 0.77 -3955 WDR66 WD repeat domain 66 791616 10 7 10 1 4 2 1 0 3 0 0.17 0.77 -3956 OR6Q1 olfactory receptor, family 6, subfamily Q, member 1 214508 3 3 3 0 1 0 2 0 0 0 0.17 0.77 -3957 STAP2 signal transducing adaptor family member 2 264268 5 4 5 1 3 1 0 0 1 0 0.17 0.77 -3958 SSR1 signal sequence receptor, alpha (translocon-associated protein alpha) 197584 3 3 3 0 1 2 0 0 0 0 0.17 0.77 -3959 UPP2 uridine phosphorylase 2 239904 2 2 2 3 0 1 0 0 1 0 0.17 0.77 -3960 BBS9 Bardet-Biedl syndrome 9 616448 6 6 6 1 2 2 2 0 0 0 0.17 0.77 -3961 TSPAN3 tetraspanin 3 161952 2 2 2 0 1 0 0 0 1 0 0.17 0.77 -3962 APAF1 apoptotic peptidase activating factor 1 862624 8 7 8 4 2 3 1 0 2 0 0.17 0.77 -3963 MUC20 mucin 20, cell surface associated 285400 2 2 1 1 0 0 0 0 2 0 0.17 0.77 -3964 MAK male germ cell-associated kinase 430976 4 4 4 2 2 1 0 0 1 0 0.17 0.77 -3965 TGIF2 TGFB-induced factor homeobox 2 161728 3 3 3 0 2 1 0 0 0 0 0.17 0.77 -3966 C1orf26 chromosome 1 open reading frame 26 614544 11 6 11 1 4 2 4 0 1 0 0.17 0.77 -3967 YIPF6 Yip1 domain family, member 6 155472 2 2 2 0 2 0 0 0 0 0 0.17 0.77 -3968 PLEKHA6 pleckstrin homology domain containing, family A member 6 687992 6 6 5 3 1 1 1 0 3 0 0.17 0.77 -3969 IMPA1 inositol(myo)-1(or 4)-monophosphatase 1 196224 2 2 2 2 0 1 1 0 0 0 0.17 0.77 -3970 NDUFB9 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 9, 22kDa 124544 2 2 2 0 1 0 1 0 0 0 0.17 0.77 -3971 C5orf43 51296 1 1 1 0 0 0 1 0 0 0 0.17 0.77 -3972 PHF5A PHD finger protein 5A 78176 1 1 1 1 0 0 1 0 0 0 0.17 0.77 -3973 GLA galactosidase, alpha 295232 4 3 4 0 0 3 0 0 1 0 0.17 0.77 -3974 LOC81691 537824 5 5 5 1 1 1 2 0 1 0 0.17 0.77 -3975 NIP7 nuclear import 7 homolog (S. cerevisiae) 126112 2 2 2 0 0 1 1 0 0 0 0.17 0.77 -3976 GABRE gamma-aminobutyric acid (GABA) A receptor, epsilon 340472 5 5 5 2 2 3 0 0 0 0 0.17 0.77 -3977 BTBD11 BTB (POZ) domain containing 11 613732 9 8 9 3 2 3 3 0 1 0 0.17 0.77 -3978 DTWD2 DTW domain containing 2 181328 3 3 3 1 1 0 2 0 0 0 0.17 0.77 -3979 MTIF2 mitochondrial translational initiation factor 2 500864 5 5 5 1 0 3 1 0 1 0 0.17 0.77 -3980 IBSP integrin-binding sialoprotein (bone sialoprotein, bone sialoprotein II) 219072 3 3 3 3 1 1 1 0 0 0 0.17 0.77 -3981 OR5D14 olfactory receptor, family 5, subfamily D, member 14 212576 3 3 3 1 0 3 0 0 0 0 0.17 0.77 -3982 SF3B1 splicing factor 3b, subunit 1, 155kDa 904736 10 9 10 0 5 1 4 0 0 0 0.17 0.77 -3983 ERCC5 excision repair cross-complementing rodent repair deficiency, complementation group 5 (xeroderma pigmentosum, complementation group G (Cockayne syndrome)) 811104 11 8 11 4 3 4 3 0 1 0 0.17 0.77 -3984 SAMHD1 SAM domain and HD domain 1 435680 5 5 5 1 3 1 0 1 0 0 0.17 0.77 -3985 TAS2R5 taste receptor, type 2, member 5 202496 2 2 2 2 2 0 0 0 0 0 0.17 0.77 -3986 ZMPSTE24 zinc metallopeptidase (STE24 homolog, S. cerevisiae) 328832 4 4 4 0 2 1 1 0 0 0 0.17 0.77 -3987 KIAA0748 KIAA0748 358304 6 5 6 4 4 1 1 0 0 0 0.17 0.77 -3988 TMEM86A transmembrane protein 86A 159040 3 3 3 1 2 1 0 0 0 0 0.17 0.77 -3989 TFE3 transcription factor binding to IGHM enhancer 3 276896 3 3 3 0 1 0 1 0 1 0 0.17 0.77 -3990 AADAC arylacetamide deacetylase (esterase) 273280 3 3 3 0 0 2 0 0 1 0 0.17 0.77 -3991 C13orf39 181664 2 2 2 1 2 0 0 0 0 0 0.17 0.77 -3992 GLUL glutamate-ammonia ligase (glutamine synthetase) 256704 4 4 4 1 2 1 0 0 1 0 0.17 0.77 -3993 GAST gastrin 70336 1 1 1 1 1 0 0 0 0 0 0.17 0.77 -3994 SLC7A8 solute carrier family 7 (cationic amino acid transporter, y+ system), member 8 370048 4 4 4 2 2 0 1 0 1 0 0.17 0.77 -3995 UBR3 ubiquitin protein ligase E3 component n-recognin 3 516096 8 6 8 1 2 3 2 0 1 0 0.17 0.77 -3996 LGSN 346304 4 4 4 1 1 1 1 0 1 0 0.17 0.77 -3997 VPS11 vacuolar protein sorting 11 homolog (S. cerevisiae) 630372 6 6 6 0 2 2 0 0 2 0 0.17 0.77 -3998 PET112L PET112-like (yeast) 386540 5 5 5 2 1 1 2 0 1 0 0.17 0.77 -3999 ZNF662 zinc finger protein 662 292768 5 3 5 2 0 4 0 0 1 0 0.17 0.77 -4000 CCL23 chemokine (C-C motif) ligand 23 96320 2 2 2 0 2 0 0 0 0 0 0.17 0.77 -4001 LCE2C late cornified envelope 2C 75488 1 1 1 1 1 0 0 0 0 0 0.17 0.77 -4002 ERCC6 excision repair cross-complementing rodent repair deficiency, complementation group 6 1021468 12 10 11 1 4 4 4 0 0 0 0.17 0.77 -4003 ZKSCAN2 zinc finger with KRAB and SCAN domains 2 656432 6 6 6 2 0 2 2 0 2 0 0.17 0.77 -4004 HELB helicase (DNA) B 731088 8 8 8 1 4 2 2 0 0 0 0.17 0.77 -4005 SETD7 SET domain containing (lysine methyltransferase) 7 253792 3 3 3 0 1 1 0 0 1 0 0.17 0.77 -4006 GPR171 G protein-coupled receptor 171 215936 4 4 4 0 2 1 1 0 0 0 0.17 0.77 -4007 C15orf53 chromosome 15 open reading frame 53 122752 1 1 1 0 0 0 0 0 1 0 0.17 0.77 -4008 DCDC2 doublecortin domain containing 2 326144 6 5 6 1 1 3 1 0 1 0 0.17 0.77 -4009 CDADC1 cytidine and dCMP deaminase domain containing 1 343344 4 4 4 2 1 1 2 0 0 0 0.17 0.77 -4010 CELA3A 187784 3 3 3 1 1 0 2 0 0 0 0.17 0.77 -4011 IP6K3 280000 4 4 4 2 3 0 0 0 1 0 0.17 0.77 -4012 AADACL2 arylacetamide deacetylase-like 2 262080 4 3 4 0 0 4 0 0 0 0 0.17 0.77 -4013 KIF3A kinesin family member 3A 485632 7 6 7 0 4 3 0 0 0 0 0.17 0.77 -4014 STAU2 staufen, RNA binding protein, homolog 2 (Drosophila) 331520 3 3 3 2 0 1 1 0 1 0 0.17 0.77 -4015 PLA2G7 phospholipase A2, group VII (platelet-activating factor acetylhydrolase, plasma) 306880 5 4 5 0 0 2 3 0 0 0 0.17 0.77 -4016 CDC40 cell division cycle 40 homolog (S. cerevisiae) 403200 4 4 4 0 1 1 2 0 0 0 0.17 0.77 -4017 C1orf77 chromosome 1 open reading frame 77 171808 3 3 3 0 1 1 1 0 0 0 0.17 0.77 -4018 LEPROT leptin receptor overlapping transcript 89568 1 1 1 0 1 0 0 0 0 0 0.17 0.77 -4019 CCDC114 coiled-coil domain containing 114 319284 4 4 4 1 2 1 1 0 0 0 0.17 0.77 -4020 ATG4D ATG4 autophagy related 4 homolog D (S. cerevisiae) 272344 4 4 4 0 2 0 1 0 1 0 0.17 0.77 -4021 KLK12 kallikrein-related peptidase 12 171856 3 3 3 1 1 0 2 0 0 0 0.17 0.77 -4022 MAGI1 membrane associated guanylate kinase, WW and PDZ domain containing 1 1032556 13 11 12 3 9 1 1 0 2 0 0.17 0.78 -4023 SLC7A11 solute carrier family 7, (cationic amino acid transporter, y+ system) member 11 348096 3 3 3 0 0 1 1 0 1 0 0.17 0.78 -4024 DUXA double homeobox A 143136 2 2 2 0 0 0 0 0 2 0 0.17 0.78 -4025 RPAIN RPA interacting protein 156352 2 2 2 0 1 0 0 0 1 0 0.17 0.78 -4026 FAM20A family with sequence similarity 20, member A 296412 3 3 3 0 0 1 0 0 2 0 0.17 0.78 -4027 C8orf40 chromosome 8 open reading frame 40 72800 1 1 1 1 0 1 0 0 0 0 0.17 0.78 -4028 APLNR 250292 4 4 4 3 3 1 0 0 0 0 0.17 0.78 -4029 SUPT5H suppressor of Ty 5 homolog (S. cerevisiae) 743520 11 10 11 3 8 1 0 1 1 0 0.17 0.78 -4030 BPIL3 bactericidal/permeability-increasing protein-like 3 318304 4 4 4 2 3 0 1 0 0 0 0.17 0.78 -4031 PPP1R14D protein phosphatase 1, regulatory (inhibitor) subunit 14D 112672 2 2 2 0 1 1 0 0 0 0 0.17 0.78 -4032 C5orf23 chromosome 5 open reading frame 23 82880 1 1 1 1 0 0 0 0 1 0 0.17 0.78 -4033 TCHP trichoplein, keratin filament binding 330536 5 5 5 0 3 1 0 0 1 0 0.17 0.78 -4034 MCPH1 microcephalin 1 571088 7 6 7 1 1 2 3 0 1 0 0.17 0.78 -4035 LILRA4 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 4 339808 4 4 4 1 2 2 0 0 0 0 0.17 0.78 -4036 AHNAK2 AHNAK nucleoprotein 2 3368512 37 21 37 12 9 22 3 0 3 0 0.17 0.78 -4037 SMPD1 sphingomyelin phosphodiesterase 1, acid lysosomal 436204 6 6 6 2 3 1 1 1 0 0 0.17 0.78 -4038 PDE11A phosphodiesterase 11A 681408 8 7 8 4 1 5 1 0 1 0 0.17 0.78 -4039 BRIP1 BRCA1 interacting protein C-terminal helicase 1 857024 8 7 8 0 2 2 2 0 2 0 0.17 0.78 -4040 VPS26B vacuolar protein sorting 26 homolog B (S. pombe) 231840 3 3 3 1 0 1 1 0 1 0 0.17 0.78 -4041 EHBP1 EH domain binding protein 1 839528 7 7 7 0 4 1 0 0 2 0 0.17 0.78 -4042 ABCA10 ATP-binding cassette, sub-family A (ABC1), member 10 1070720 10 8 10 8 0 7 1 0 2 0 0.17 0.78 -4043 C20orf151 chromosome 20 open reading frame 151 309496 3 3 3 0 2 0 0 0 1 0 0.17 0.78 -4044 RPLP0 ribosomal protein, large, P0 212324 2 2 2 0 0 0 1 0 1 0 0.17 0.78 -4045 CDKL2 cyclin-dependent kinase-like 2 (CDC2-related kinase) 340928 4 4 4 0 1 1 2 0 0 0 0.17 0.78 -4046 TSPAN19 tetraspanin 19 142536 2 2 2 0 0 1 1 0 0 0 0.17 0.78 -4047 ATP5B ATP synthase, H+ transporting, mitochondrial F1 complex, beta polypeptide 362516 4 4 4 0 2 0 2 0 0 0 0.17 0.78 -4048 CASC1 cancer susceptibility candidate 1 540736 11 6 10 1 2 5 3 0 1 0 0.17 0.78 -4049 RGL1 ral guanine nucleotide dissociation stimulator-like 1 556416 8 6 8 4 4 2 2 0 0 0 0.17 0.78 -4050 C10orf79 chromosome 10 open reading frame 79 1145284 12 10 12 2 1 5 4 0 2 0 0.17 0.78 -4051 MBTPS1 membrane-bound transcription factor peptidase, site 1 727328 8 6 8 4 3 4 0 0 1 0 0.17 0.78 -4052 PDAP1 PDGFA associated protein 1 123872 2 2 2 0 1 0 0 0 1 0 0.17 0.78 -4053 GZMA granzyme A (granzyme 1, cytotoxic T-lymphocyte-associated serine esterase 3) 181216 3 3 3 1 0 2 1 0 0 0 0.17 0.78 -4054 CCDC144NL 142024 2 2 2 1 0 0 1 1 0 0 0.17 0.78 -4055 KIAA1429 KIAA1429 1242080 14 9 14 2 4 4 2 0 4 0 0.17 0.78 -4056 MARCH7 membrane-associated ring finger (C3HC4) 7 481824 4 4 4 1 2 1 1 0 0 0 0.17 0.78 -4057 SPACA3 sperm acrosome associated 3 149632 3 3 3 0 1 2 0 0 0 0 0.18 0.78 -4058 C9orf86 chromosome 9 open reading frame 86 265052 2 2 2 0 0 0 0 0 2 0 0.18 0.78 -4059 ABAT 4-aminobutyrate aminotransferase 350112 5 5 5 0 2 1 2 0 0 0 0.18 0.78 -4060 OR6C4 olfactory receptor, family 6, subfamily C, member 4 209216 2 2 2 1 0 0 1 0 1 0 0.18 0.78 -4061 CYB5D1 cytochrome b5 domain containing 1 156884 2 2 2 0 1 0 1 0 0 0 0.18 0.78 -4062 ARC activity-regulated cytoskeleton-associated protein 175084 3 3 3 1 1 0 1 0 1 0 0.18 0.78 -4063 PTH parathyroid hormone 79744 2 2 2 0 2 0 0 0 0 0 0.18 0.78 -4064 FAS Fas (TNF receptor superfamily, member 6) 232428 2 2 2 1 0 0 2 0 0 0 0.18 0.78 -4065 MRPS11 mitochondrial ribosomal protein S11 135968 3 3 3 0 3 0 0 0 0 0 0.18 0.78 -4066 SIGLEC7 sialic acid binding Ig-like lectin 7 320768 4 4 4 5 1 3 0 0 0 0 0.18 0.78 -4067 MARVELD3 MARVEL domain containing 3 311672 5 5 5 0 3 2 0 0 0 0 0.18 0.78 -4068 RGMB RGM domain family, member B 267680 3 3 3 0 0 1 0 1 1 0 0.18 0.78 -4069 STMN1 stathmin 1/oncoprotein 18 104384 2 2 2 0 0 1 0 0 1 0 0.18 0.78 -4070 TAS2R39 taste receptor, type 2, member 39 228704 3 3 3 0 0 2 0 0 1 0 0.18 0.78 -4071 LRRC8D leucine rich repeat containing 8 family, member D 578060 5 5 5 5 3 0 1 0 1 0 0.18 0.78 -4072 PRKAG3 protein kinase, AMP-activated, gamma 3 non-catalytic subunit 336672 6 5 6 1 1 3 2 0 0 0 0.18 0.78 -4073 CDKL5 cyclin-dependent kinase-like 5 710752 7 7 7 3 3 3 0 0 1 0 0.18 0.78 -4074 MAGEA6 melanoma antigen family A, 6 182840 3 3 3 0 1 0 1 0 1 0 0.18 0.78 -4075 BUB1 BUB1 budding uninhibited by benzimidazoles 1 homolog (yeast) 752192 6 6 6 3 0 2 4 0 0 0 0.18 0.78 -4076 QRICH1 glutamine-rich 1 530208 7 6 7 1 0 4 3 0 0 0 0.18 0.78 -4077 TM4SF4 transmembrane 4 L six family member 4 140896 2 2 2 1 2 0 0 0 0 0 0.18 0.78 -4078 FAM82A1 395584 5 4 5 1 1 3 0 0 1 0 0.18 0.78 -4079 PRDX6 peroxiredoxin 6 155680 2 2 2 1 0 0 1 0 1 0 0.18 0.78 -4080 TUB tubby homolog (mouse) 387636 5 5 5 1 4 0 0 0 1 0 0.18 0.78 -4081 ZNF615 zinc finger protein 615 495488 9 6 9 1 5 2 1 0 1 0 0.18 0.78 -4082 KCNIP2 Kv channel interacting protein 2 204648 5 4 5 0 3 0 2 0 0 0 0.18 0.78 -4083 GLI3 GLI-Kruppel family member GLI3 (Greig cephalopolysyndactyly syndrome) 1022140 14 13 14 11 6 6 1 0 1 0 0.18 0.78 -4084 CIB2 calcium and integrin binding family member 2 126952 2 2 2 1 0 1 1 0 0 0 0.18 0.78 -4085 TBX15 T-box 15 340256 4 4 4 3 2 2 0 0 0 0 0.18 0.78 -4086 ZNF80 zinc finger protein 80 185024 3 3 3 6 2 0 1 0 0 0 0.18 0.78 -4087 FBXW4 F-box and WD repeat domain containing 4 226464 3 3 3 1 2 1 0 0 0 0 0.18 0.78 -4088 MYL9 myosin, light chain 9, regulatory 118944 2 2 2 1 1 1 0 0 0 0 0.18 0.78 -4089 ZNF141 zinc finger protein 141 322784 4 4 4 1 1 1 2 0 0 0 0.18 0.78 -4090 ACE2 angiotensin I converting enzyme (peptidyl-dipeptidase A) 2 557760 9 7 9 1 2 4 3 0 0 0 0.18 0.78 -4091 CRYBG3 704480 8 7 8 1 1 3 4 0 0 0 0.18 0.78 -4092 MACROD1 MACRO domain containing 1 150696 2 2 1 1 0 0 2 0 0 0 0.18 0.78 -4093 NPM3 nucleophosmin/nucleoplasmin, 3 124768 3 3 3 0 1 2 0 0 0 0 0.18 0.78 -4094 ALDH6A1 aldehyde dehydrogenase 6 family, member A1 366576 4 4 4 0 0 2 2 0 0 0 0.18 0.78 -4095 CXorf21 chromosome X open reading frame 21 203840 2 2 2 1 0 1 1 0 0 0 0.18 0.79 -4096 CENPK centromere protein K 189504 2 2 2 1 0 0 1 0 1 0 0.18 0.79 -4097 PLCB1 phospholipase C, beta 1 (phosphoinositide-specific) 869568 8 8 8 4 3 1 2 1 1 0 0.18 0.79 -4098 RIMKLB 264544 4 4 4 1 1 3 0 0 0 0 0.18 0.79 -4099 SHISA5 shisa homolog 5 (Xenopus laevis) 149408 1 1 1 0 0 0 0 0 1 0 0.18 0.79 -4100 OR8K5 olfactory receptor, family 8, subfamily K, member 5 207872 2 2 2 1 0 0 2 0 0 0 0.18 0.79 -4101 PJA2 praja 2, RING-H2 motif containing 484512 4 4 4 1 0 3 0 0 1 0 0.18 0.79 -4102 CDC25C cell division cycle 25 homolog C (S. pombe) 330176 4 4 4 1 0 4 0 0 0 0 0.18 0.79 -4103 KPNA6 karyopherin alpha 6 (importin alpha 7) 373408 4 4 4 1 3 0 0 0 1 0 0.18 0.79 -4104 ZNF835 339248 8 8 8 2 7 1 0 0 0 0 0.18 0.79 -4105 DEFB126 defensin, beta 126 77056 1 1 1 0 0 1 0 0 0 0 0.18 0.79 -4106 ZNF418 zinc finger protein 418 457632 5 4 5 1 1 2 0 0 2 0 0.18 0.79 -4107 MTF1 metal-regulatory transcription factor 1 515648 6 5 6 0 3 1 0 0 2 0 0.18 0.79 -4108 PALB2 partner and localizer of BRCA2 809312 8 6 8 2 1 4 1 0 2 0 0.18 0.79 -4109 BTAF1 BTAF1 RNA polymerase II, B-TFIID transcription factor-associated, 170kDa (Mot1 homolog, S. cerevisiae) 1275652 14 10 14 3 7 3 2 0 2 0 0.18 0.79 -4110 AMTN amelotin 148288 2 2 2 0 2 0 0 0 0 0 0.18 0.79 -4111 CCDC69 coiled-coil domain containing 69 207648 2 2 2 0 0 0 0 0 2 0 0.18 0.79 -4112 TXNDC8 thioredoxin domain containing 8 (spermatozoa) 83328 1 1 1 0 0 0 0 1 0 0 0.18 0.79 -4113 GNA15 guanine nucleotide binding protein (G protein), alpha 15 (Gq class) 230384 3 3 3 2 1 1 1 0 0 0 0.18 0.79 -4114 C1orf35 chromosome 1 open reading frame 35 128856 1 1 1 0 0 0 0 0 1 0 0.18 0.79 -4115 ST8SIA2 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 2 240040 4 4 4 2 1 1 2 0 0 0 0.18 0.79 -4116 RUFY4 RUN and FYVE domain containing 4 233624 2 2 2 2 0 1 1 0 0 0 0.18 0.79 -4117 EIF2B1 eukaryotic translation initiation factor 2B, subunit 1 alpha, 26kDa 213696 2 2 2 0 0 1 0 0 1 0 0.18 0.79 -4118 CTSL2 cathepsin L2 231392 4 3 4 3 1 2 1 0 0 0 0.18 0.79 -4119 PHOX2B paired-like homeobox 2b 177948 5 5 5 0 4 1 0 0 0 0 0.18 0.79 -4120 TMEM200A transmembrane protein 200A 331520 4 4 4 1 1 1 1 0 1 0 0.18 0.79 -4121 CCL8 chemokine (C-C motif) ligand 8 69888 1 1 1 0 0 1 0 0 0 0 0.18 0.79 -4122 OR4D5 olfactory receptor, family 4, subfamily D, member 5 215264 3 3 3 1 0 2 1 0 0 0 0.18 0.79 -4123 KIF4B kinesin family member 4B 830816 11 9 11 3 4 6 1 0 0 0 0.18 0.79 -4124 ZNF558 zinc finger protein 558 275972 2 2 2 1 0 0 0 0 2 0 0.18 0.79 -4125 YWHAE tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide 177408 3 3 3 1 1 1 1 0 0 0 0.18 0.79 -4126 OLR1 oxidized low density lipoprotein (lectin-like) receptor 1 189504 2 2 2 0 1 0 0 0 1 0 0.18 0.79 -4127 RNF19B ring finger protein 19B 357504 3 3 3 0 0 1 2 0 0 0 0.18 0.79 -4128 SLC32A1 solute carrier family 32 (GABA vesicular transporter), member 1 347032 6 5 6 5 4 0 0 2 0 0 0.18 0.79 -4129 STT3A STT3, subunit of the oligosaccharyltransferase complex, homolog A (S. cerevisiae) 489664 4 4 4 0 1 0 1 0 2 0 0.18 0.79 -4130 KRTAP13-3 keratin associated protein 13-3 117152 1 1 1 0 0 0 0 0 1 0 0.18 0.79 -4131 OR5D13 olfactory receptor, family 5, subfamily D, member 13 212576 3 3 3 1 1 1 1 0 0 0 0.18 0.79 -4132 ARL15 ADP-ribosylation factor-like 15 127824 2 2 2 0 0 0 2 0 0 0 0.18 0.79 -4133 IQGAP3 IQ motif containing GTPase activating protein 3 1126552 12 11 12 3 5 3 3 0 1 0 0.18 0.79 -4134 C1QC complement component 1, q subcomponent, C chain 142216 3 3 3 0 1 2 0 0 0 0 0.18 0.79 -4135 GRPR gastrin-releasing peptide receptor 261408 3 3 3 1 1 0 2 0 0 0 0.18 0.79 -4136 OR2T27 olfactory receptor, family 2, subfamily T, member 27 207268 2 2 2 2 1 0 0 0 1 0 0.18 0.79 -4137 HFE hemochromatosis 239904 3 3 3 0 2 0 1 0 0 0 0.18 0.79 -4138 RGS7BP regulator of G-protein signaling 7 binding protein 177492 2 2 2 1 0 1 0 0 1 0 0.18 0.79 -4139 GOLT1B golgi transport 1 homolog B (S. cerevisiae) 97888 2 2 2 0 0 2 0 0 0 0 0.18 0.79 -4140 NCBP1 nuclear cap binding protein subunit 1, 80kDa 547288 6 6 6 1 1 3 2 0 0 0 0.18 0.79 -4141 ARHGAP9 Rho GTPase activating protein 9 474236 7 7 7 3 3 2 2 0 0 0 0.18 0.79 -4142 TINAG tubulointerstitial nephritis antigen 330400 4 3 4 2 0 2 1 0 1 0 0.18 0.79 -4143 HNRNPAB 182336 4 3 4 0 1 2 0 0 1 0 0.18 0.79 -4144 C9orf98 chromosome 9 open reading frame 98 307960 3 3 3 1 1 0 1 0 1 0 0.18 0.79 -4145 C18orf32 chromosome 18 open reading frame 32 53536 1 1 1 1 0 0 0 0 1 0 0.18 0.79 -4146 DNAJB5 DnaJ (Hsp40) homolog, subfamily B, member 5 239456 3 3 3 0 2 1 0 0 0 0 0.18 0.79 -4147 RD3 retinal degeneration 3 133504 2 2 2 1 1 1 0 0 0 0 0.18 0.79 -4148 FKBP14 FK506 binding protein 14, 22 kDa 146048 2 2 2 0 0 1 0 0 1 0 0.18 0.79 -4149 AGPAT9 1-acylglycerol-3-phosphate O-acyltransferase 9 303072 4 4 4 0 0 2 1 0 1 0 0.18 0.79 -4150 FAM169B 134176 3 3 2 0 0 3 0 0 0 0 0.18 0.79 -4151 WDR16 WD repeat domain 16 429856 5 5 5 2 3 1 1 0 0 0 0.18 0.79 -4152 RASA3 RAS p21 protein activator 3 532316 7 7 7 1 4 0 2 0 1 0 0.18 0.79 -4153 NDUFC2 NADH dehydrogenase (ubiquinone) 1, subcomplex unknown, 2, 14.5kDa 77752 1 1 1 0 0 0 0 0 1 0 0.18 0.79 -4154 OR4D10 olfactory receptor, family 4, subfamily D, member 10 210560 4 3 4 0 1 0 2 0 1 0 0.18 0.79 -4155 PDIA4 protein disulfide isomerase family A, member 4 419356 5 5 5 1 2 1 2 0 0 0 0.18 0.79 -4156 RNF133 ring finger protein 133 250880 2 2 2 2 0 1 1 0 0 0 0.18 0.79 -4157 TSNAX translin-associated factor X 200928 2 2 2 0 0 0 1 0 1 0 0.18 0.79 -4158 CLN5 ceroid-lipofuscinosis, neuronal 5 238924 2 2 2 0 0 0 1 0 1 0 0.18 0.79 -4159 SNAP47 308784 4 4 4 1 2 1 1 0 0 0 0.18 0.79 -4160 LRRC17 leucine rich repeat containing 17 303072 5 5 5 0 3 1 1 0 0 0 0.18 0.79 -4161 RPL10A ribosomal protein L10a 145152 2 2 2 0 0 1 0 0 1 0 0.18 0.79 -4162 PTPDC1 protein tyrosine phosphatase domain containing 1 569632 6 5 4 1 3 2 0 1 0 0 0.18 0.79 -4163 MBNL1 muscleblind-like (Drosophila) 292768 4 4 4 1 1 2 1 0 0 0 0.18 0.79 -4164 ZNF385A zinc finger protein 385A 212136 4 4 4 0 0 4 0 0 0 0 0.18 0.79 -4165 CNOT8 CCR4-NOT transcription complex, subunit 8 202272 2 2 2 0 0 0 1 0 1 0 0.18 0.79 -4166 ZNF880 109312 1 1 1 1 0 0 1 0 0 0 0.18 0.79 -4167 CDK17 362992 4 3 4 1 0 1 1 0 2 0 0.18 0.79 -4168 RIMKLA 230496 3 3 3 0 2 1 0 0 0 0 0.18 0.79 -4169 CD109 CD109 molecule 983808 13 9 13 3 2 6 3 1 1 0 0.18 0.79 -4170 USP16 ubiquitin specific peptidase 16 567700 5 5 5 1 1 1 2 0 1 0 0.18 0.79 -4171 UBE3C ubiquitin protein ligase E3C 743176 9 7 9 3 2 2 3 0 2 0 0.18 0.79 -4172 LARGE like-glycosyltransferase 514528 7 7 7 6 5 2 0 0 0 0 0.18 0.79 -4173 ZNF132 zinc finger protein 132 468260 6 5 6 0 0 3 3 0 0 0 0.18 0.79 -4174 KMO kynurenine 3-monooxygenase (kynurenine 3-hydroxylase) 340704 5 5 5 3 0 4 1 0 0 0 0.18 0.79 -4175 ASB18 ankyrin repeat and SOCS box-containing 18 133672 2 2 2 1 0 1 1 0 0 0 0.18 0.79 -4176 LNP1 leukemia NUP98 fusion partner 1 122976 2 2 2 0 0 2 0 0 0 0 0.18 0.79 -4177 C1orf43 chromosome 1 open reading frame 43 176960 2 2 2 0 0 0 2 0 0 0 0.18 0.79 -4178 TPP2 tripeptidyl peptidase II 860608 10 7 10 2 1 1 6 0 2 0 0.18 0.79 -4179 PLOD3 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 3 475996 4 4 3 1 0 0 1 0 3 0 0.18 0.79 -4180 PRLR prolactin receptor 425824 4 4 4 1 0 1 3 0 0 0 0.18 0.79 -4181 IL12RB2 interleukin 12 receptor, beta 2 593376 6 6 6 2 1 3 2 0 0 0 0.18 0.79 -4182 GATS 113792 2 2 2 0 1 1 0 0 0 0 0.18 0.79 -4183 ACOT8 acyl-CoA thioesterase 8 220416 3 3 3 0 1 1 0 0 1 0 0.18 0.79 -4184 MAP2K6 mitogen-activated protein kinase kinase 6 235872 3 3 3 2 0 2 0 0 1 0 0.18 0.79 -4185 FEN1 flap structure-specific endonuclease 1 255920 4 4 4 0 0 2 1 1 0 0 0.18 0.79 -4186 SIGLEC9 sialic acid binding Ig-like lectin 9 318080 4 4 4 2 1 1 1 1 0 0 0.18 0.79 -4187 OLFM4 olfactomedin 4 347872 4 4 3 1 0 3 1 0 0 0 0.18 0.79 -4188 PRSS48 225568 4 3 4 0 2 0 2 0 0 0 0.18 0.79 -4189 PPFIBP1 PTPRF interacting protein, binding protein 1 (liprin beta 1) 703360 6 5 5 0 0 1 2 0 3 0 0.18 0.79 -4190 PPP1R15A protein phosphatase 1, regulatory (inhibitor) subunit 15A 455392 5 5 5 1 0 3 1 0 1 0 0.18 0.79 -4191 USP15 ubiquitin specific peptidase 15 646584 8 6 8 0 3 2 2 0 1 0 0.18 0.79 -4192 TCEB3 transcription elongation factor B (SIII), polypeptide 3 (110kDa, elongin A) 510440 4 4 4 0 0 1 1 0 2 0 0.18 0.79 -4193 ZSCAN4 zinc finger and SCAN domain containing 4 294336 4 4 4 1 0 2 2 0 0 0 0.18 0.79 -4194 CCDC11 coiled-coil domain containing 11 353248 6 4 6 0 2 1 2 0 1 0 0.18 0.79 -4195 PRPH2 peripherin 2 (retinal degeneration, slow) 235872 4 4 4 2 4 0 0 0 0 0 0.18 0.79 -4196 DSG3 desmoglein 3 (pemphigus vulgaris antigen) 686336 8 7 8 2 3 2 1 0 2 0 0.18 0.79 -4197 OPRM1 opioid receptor, mu 1 337288 3 3 3 1 2 1 0 0 0 0 0.18 0.79 -4198 C9orf21 chromosome 9 open reading frame 21 104088 1 1 1 0 0 0 0 0 1 0 0.18 0.79 -4199 ZBTB7C zinc finger and BTB domain containing 7C 364508 6 6 6 1 5 1 0 0 0 0 0.18 0.79 -4200 KCNJ12 potassium inwardly-rectifying channel, subfamily J, member 12 274568 3 3 3 3 2 0 0 0 1 0 0.18 0.79 -4201 C6orf62 chromosome 6 open reading frame 62 159040 2 2 2 0 0 1 1 0 0 0 0.18 0.79 -4202 ECM2 extracellular matrix protein 2, female organ and adipocyte specific 478464 4 4 4 1 1 2 1 0 0 0 0.18 0.79 -4203 DDX1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 1 518528 4 4 4 0 1 1 1 0 1 0 0.18 0.79 -4204 IFNA6 interferon, alpha 6 128128 3 2 3 0 0 3 0 0 0 0 0.19 0.79 -4205 TRPM3 transient receptor potential cation channel, subfamily M, member 3 1197728 12 12 12 7 5 5 2 0 0 0 0.19 0.79 -4206 HINFP 354144 4 4 4 0 2 1 1 0 0 0 0.19 0.79 -4207 GBP1 guanylate binding protein 1, interferon-inducible, 67kDa 407456 5 5 5 3 3 0 2 0 0 0 0.19 0.79 -4208 DPY19L1 dpy-19-like 1 (C. elegans) 455392 7 5 6 0 0 4 3 0 0 0 0.19 0.79 -4209 INPP5K 297976 5 5 4 2 4 1 0 0 0 0 0.19 0.79 -4210 NTN1 netrin 1 239904 5 5 5 0 1 3 1 0 0 0 0.19 0.79 -4211 SLC6A1 solute carrier family 6 (neurotransmitter transporter, GABA), member 1 415660 6 6 6 0 2 3 1 0 0 0 0.19 0.79 -4212 NMUR1 neuromedin U receptor 1 286888 4 4 4 0 1 2 0 0 1 0 0.19 0.79 -4213 C4orf27 chromosome 4 open reading frame 27 235284 3 3 3 0 1 1 1 0 0 0 0.19 0.79 -4214 ABLIM3 actin binding LIM protein family, member 3 480256 5 5 5 1 0 3 1 0 1 0 0.19 0.79 -4215 MORF4L2 mortality factor 4 like 2 195104 2 2 2 2 0 1 1 0 0 0 0.19 0.79 -4216 IFNA4 interferon, alpha 4 128576 2 2 2 0 0 2 0 0 0 0 0.19 0.79 -4217 OR51M1 olfactory receptor, family 51, subfamily M, member 1 220640 3 3 3 2 0 1 2 0 0 0 0.19 0.79 -4218 MUT methylmalonyl Coenzyme A mutase 515424 4 4 4 0 0 1 0 0 3 0 0.19 0.79 -4219 UBTD1 ubiquitin domain containing 1 107728 2 2 2 0 0 2 0 0 0 0 0.19 0.79 -4220 ZNF300 zinc finger protein 300 412384 3 3 3 0 1 0 1 0 1 0 0.19 0.79 -4221 CD3G CD3g molecule, gamma (CD3-TCR complex) 120328 2 2 2 0 1 1 0 0 0 0 0.19 0.79 -4222 GNB3 guanine nucleotide binding protein (G protein), beta polypeptide 3 237216 3 3 3 2 1 0 1 0 1 0 0.19 0.79 -4223 PLP1 proteolipid protein 1 (Pelizaeus-Merzbacher disease, spastic paraplegia 2, uncomplicated) 193088 2 2 2 0 0 1 1 0 0 0 0.19 0.79 -4224 SSTR1 somatostatin receptor 1 257684 5 5 5 1 1 2 2 0 0 0 0.19 0.79 -4225 C1orf112 chromosome 1 open reading frame 112 593600 5 5 5 3 1 0 2 0 2 0 0.19 0.79 -4226 USP48 ubiquitin specific peptidase 48 694432 6 6 6 5 3 1 1 0 1 0 0.19 0.79 -4227 DMC1 DMC1 dosage suppressor of mck1 homolog, meiosis-specific homologous recombination (yeast) 240800 4 3 4 1 2 1 0 0 1 0 0.19 0.79 -4228 ZNF335 zinc finger protein 335 883932 8 7 8 5 1 3 2 0 0 2 0.19 0.79 -4229 HERC6 hect domain and RLD 6 644504 7 7 7 3 4 1 1 0 1 0 0.19 0.79 -4230 CDK4 cyclin-dependent kinase 4 210560 3 3 3 1 2 0 1 0 0 0 0.19 0.79 -4231 TNFSF14 tumor necrosis factor (ligand) superfamily, member 14 159152 3 3 3 1 2 1 0 0 0 0 0.19 0.79 -4232 ZP1 zona pellucida glycoprotein 1 (sperm receptor) 440160 7 7 7 3 2 4 1 0 0 0 0.19 0.79 -4233 SLC12A6 solute carrier family 12 (potassium/chloride transporters), member 6 823200 8 6 8 1 0 1 2 0 5 0 0.19 0.79 -4234 GCG glucagon 124616 2 2 2 1 0 2 0 0 0 0 0.19 0.79 -4235 TAB3 485408 4 4 4 2 1 1 0 0 2 0 0.19 0.79 -4236 SYN3 synapsin III 400856 4 4 4 1 2 1 1 0 0 0 0.19 0.80 -4237 B9D1 B9 protein domain 1 129024 2 2 2 1 2 0 0 0 0 0 0.19 0.80 -4238 C1orf100 chromosome 1 open reading frame 100 103040 2 2 2 0 1 0 1 0 0 0 0.19 0.80 -4239 SEPT11 septin 11 290976 3 3 3 0 1 1 0 0 1 0 0.19 0.80 -4240 TMEM215 152264 2 2 2 1 0 2 0 0 0 0 0.19 0.80 -4241 UBXN7 339136 4 4 4 1 1 0 2 0 1 0 0.19 0.80 -4242 EDEM2 ER degradation enhancer, mannosidase alpha-like 2 398944 4 4 4 0 0 2 1 0 1 0 0.19 0.80 -4243 PAK7 p21(CDKN1A)-activated kinase 7 491008 7 6 7 3 4 2 0 0 1 0 0.19 0.80 -4244 NRG4 neuregulin 4 82432 1 1 1 0 1 0 0 0 0 0 0.19 0.80 -4245 RPL39 ribosomal protein L39 36680 1 1 1 1 1 0 0 0 0 0 0.19 0.80 -4246 CTSD cathepsin D 253092 3 3 3 1 1 0 1 0 1 0 0.19 0.80 -4247 CCDC9 coiled-coil domain containing 9 335940 5 5 5 0 1 2 1 0 1 0 0.19 0.80 -4248 ZNF790 zinc finger protein 790 431648 10 5 10 4 1 6 1 0 2 0 0.19 0.80 -4249 TP53INP1 tumor protein p53 inducible nuclear protein 1 170464 2 2 2 1 1 1 0 0 0 0 0.19 0.80 -4250 SERPING1 serpin peptidase inhibitor, clade G (C1 inhibitor), member 1, (angioedema, hereditary) 335464 5 5 5 2 1 1 3 0 0 0 0.19 0.80 -4251 SLC36A4 solute carrier family 36 (proton/amino acid symporter), member 4 338508 4 4 4 1 0 3 1 0 0 0 0.19 0.80 -4252 PGM3 phosphoglucomutase 3 375648 5 4 5 0 0 4 1 0 0 0 0.19 0.80 -4253 NIPAL2 227584 2 2 2 0 0 1 1 0 0 0 0.19 0.80 -4254 CLDN6 claudin 6 122864 2 2 2 0 0 1 0 0 1 0 0.19 0.80 -4255 CAPZA1 capping protein (actin filament) muscle Z-line, alpha 1 201824 2 2 2 0 0 0 2 0 0 0 0.19 0.80 -4256 SCGB2A1 secretoglobin, family 2A, member 1 67200 1 1 1 1 0 1 0 0 0 0 0.19 0.80 -4257 PROK1 prokineticin 1 73920 1 1 1 0 0 1 0 0 0 0 0.19 0.80 -4258 PRAMEF4 PRAME family member 4 278208 3 3 2 1 2 0 1 0 0 0 0.19 0.80 -4259 ZNF570 zinc finger protein 570 364448 5 3 5 1 0 4 0 0 1 0 0.19 0.80 -4260 GGCT 130592 2 2 2 0 0 1 1 0 0 0 0.19 0.80 -4261 CDS2 CDP-diacylglycerol synthase (phosphatidate cytidylyltransferase) 2 297696 4 4 4 1 2 1 1 0 0 0 0.19 0.80 -4262 C1orf49 chromosome 1 open reading frame 49 167552 3 3 3 0 2 1 0 0 0 0 0.19 0.80 -4263 S100A13 S100 calcium binding protein A13 68320 1 1 1 0 1 0 0 0 0 0 0.19 0.80 -4264 WFDC8 WAP four-disulfide core domain 8 168000 2 2 2 1 1 1 0 0 0 0 0.19 0.80 -4265 ACOT13 97440 1 1 1 0 0 1 0 0 0 0 0.19 0.80 -4266 MDH1B malate dehydrogenase 1B, NAD (soluble) 359520 6 5 6 1 2 3 1 0 0 0 0.19 0.80 -4267 ZNF37A zinc finger protein 37A 381248 7 4 7 0 0 4 2 0 1 0 0.19 0.80 -4268 SERP1 stress-associated endoplasmic reticulum protein 1 47712 1 1 1 0 0 1 0 0 0 0 0.19 0.80 -4269 STIP1 stress-induced-phosphoprotein 1 (Hsp70/Hsp90-organizing protein) 375200 3 3 2 0 0 0 0 0 3 0 0.19 0.80 -4270 GJB1 gap junction protein, beta 1, 32kDa 176292 3 3 3 0 2 0 1 0 0 0 0.19 0.80 -4271 OR9K2 olfactory receptor, family 9, subfamily K, member 2 226688 3 3 3 0 0 1 2 0 0 0 0.19 0.80 -4272 LIPT1 lipoyltransferase 1 252224 4 4 4 1 0 4 0 0 0 0 0.19 0.80 -4273 CD6 CD6 molecule 339104 3 3 3 1 1 0 0 0 2 0 0.19 0.80 -4274 GLT1D1 glycosyltransferase 1 domain containing 1 170464 3 2 3 1 1 0 1 0 1 0 0.19 0.80 -4275 KRT13 keratin 13 300520 4 4 4 2 2 0 2 0 0 0 0.19 0.80 -4276 CYP2A6 cytochrome P450, family 2, subfamily A, polypeptide 6 340704 6 5 6 1 2 3 0 0 1 0 0.19 0.80 -4277 ADRA1A adrenergic, alpha-1A-, receptor 344288 5 5 5 5 2 0 3 0 0 0 0.19 0.80 -4278 PRAP1 proline-rich acidic protein 1 85792 1 1 1 0 0 0 0 0 1 0 0.19 0.80 -4279 ETFA electron-transfer-flavoprotein, alpha polypeptide (glutaric aciduria II) 225568 3 3 3 0 1 2 0 0 0 0 0.19 0.80 -4280 PDCL3 phosducin-like 3 166656 2 2 2 0 1 1 0 0 0 0 0.19 0.80 -4281 CAMK2D calcium/calmodulin-dependent protein kinase (CaM kinase) II delta 359672 3 3 3 0 0 2 1 0 0 0 0.19 0.80 -4282 PGPEP1L 126016 3 3 3 1 2 1 0 0 0 0 0.19 0.80 -4283 SLC22A10 solute carrier family 22, member 10 373184 4 4 4 0 2 2 0 0 0 0 0.19 0.80 -4284 EPX eosinophil peroxidase 491904 7 7 7 2 5 1 1 0 0 0 0.19 0.80 -4285 PIGB phosphatidylinositol glycan anchor biosynthesis, class B 354744 3 3 3 0 0 1 1 0 1 0 0.19 0.80 -4286 NUPL2 nucleoporin like 2 291200 3 3 3 0 0 2 1 0 0 0 0.19 0.80 -4287 WAC WW domain containing adaptor with coiled-coil 446368 5 5 5 1 1 3 1 0 0 0 0.19 0.80 -4288 ABLIM1 actin binding LIM protein 1 574608 6 6 6 1 3 0 2 0 1 0 0.19 0.80 -4289 METTL5 methyltransferase like 5 147392 2 2 2 3 0 1 0 0 1 0 0.19 0.80 -4290 PRKAR2B protein kinase, cAMP-dependent, regulatory, type II, beta 234220 3 3 3 0 2 0 0 0 1 0 0.19 0.80 -4291 TNFRSF10B tumor necrosis factor receptor superfamily, member 10b 291984 6 4 6 1 4 0 1 0 1 0 0.19 0.80 -4292 SCAMP5 secretory carrier membrane protein 5 163968 2 2 2 0 0 1 1 0 0 0 0.19 0.80 -4293 TUFT1 tuftelin 1 272088 3 3 2 1 2 1 0 0 0 0 0.19 0.80 -4294 TMEM164 transmembrane protein 164 205632 3 3 3 2 2 1 0 0 0 0 0.19 0.80 -4295 ATP11A ATPase, class VI, type 11A 835660 8 8 8 4 4 1 1 0 2 0 0.19 0.80 -4296 EXOC3L2 exocyst complex component 3-like 2 236696 4 4 4 1 3 1 0 0 0 0 0.19 0.80 -4297 HLA-DQA1 major histocompatibility complex, class II, DQ alpha 1 127652 1 1 1 0 0 0 0 0 1 0 0.19 0.80 -4298 GYPE glycophorin E 55776 1 1 1 1 0 0 1 0 0 0 0.19 0.80 -4299 ASF1A ASF1 anti-silencing function 1 homolog A (S. cerevisiae) 116480 2 2 2 0 1 1 0 0 0 0 0.19 0.80 -4300 C17orf75 chromosome 17 open reading frame 75 262416 3 3 3 0 0 2 1 0 0 0 0.19 0.80 -4301 VSX1 visual system homeobox 1 147240 2 2 2 1 0 1 0 0 1 0 0.19 0.80 -4302 SPTLC3 serine palmitoyltransferase, long chain base subunit 3 382368 5 5 5 2 2 1 2 0 0 0 0.19 0.80 -4303 IL7 interleukin 7 124992 2 2 2 0 0 1 1 0 0 0 0.19 0.80 -4304 ZNF253 zinc finger protein 253 339584 4 3 4 2 1 1 0 0 2 0 0.19 0.80 -4305 RALGPS1 Ral GEF with PH domain and SH3 binding motif 1 391104 4 4 4 2 1 2 0 0 1 0 0.19 0.80 -4306 AIM1 absent in melanoma 1 1112076 10 9 10 2 4 1 2 0 1 2 0.19 0.80 -4307 SLIT3 slit homolog 3 (Drosophila) 997616 9 9 9 6 6 1 0 0 2 0 0.19 0.80 -4308 PIGR polymeric immunoglobulin receptor 516564 7 6 6 0 2 3 1 0 1 0 0.19 0.80 -4309 DMXL1 Dmx-like 1 2072120 18 13 18 2 4 9 4 0 1 0 0.19 0.80 -4310 FAM196A 304248 4 4 4 1 2 1 0 0 1 0 0.19 0.80 -4311 RUNX2 runt-related transcription factor 2 321608 5 5 5 0 0 2 2 0 1 0 0.19 0.80 -4312 C9orf11 chromosome 9 open reading frame 11 205408 2 2 2 0 0 1 0 0 1 0 0.19 0.80 -4313 HAPLN4 hyaluronan and proteoglycan link protein 4 162260 4 4 4 1 3 0 0 0 1 0 0.19 0.80 -4314 SLC24A3 solute carrier family 24 (sodium/potassium/calcium exchanger), member 3 420452 7 6 7 3 3 2 2 0 0 0 0.19 0.80 -4315 FEZ1 fasciculation and elongation protein zeta 1 (zygin I) 273056 5 4 5 0 1 3 1 0 0 0 0.19 0.80 -4316 ETNK2 ethanolamine kinase 2 200088 2 2 2 2 1 0 0 0 1 0 0.19 0.80 -4317 MYLK2 myosin light chain kinase 2 388024 3 3 3 1 2 0 0 0 1 0 0.19 0.80 -4318 TSTD2 355488 3 3 3 0 1 1 0 0 1 0 0.19 0.80 -4319 KIAA0146 KIAA0146 555008 6 6 6 0 0 3 3 0 0 0 0.19 0.80 -4320 STRC stereocilin 516240 3 3 3 0 0 1 1 0 1 0 0.19 0.80 -4321 CNR1 cannabinoid receptor 1 (brain) 318752 5 5 5 2 3 2 0 0 0 0 0.19 0.80 -4322 KYNU kynureninase (L-kynurenine hydrolase) 330624 6 4 6 3 2 2 2 0 0 0 0.19 0.80 -4323 FUT3 fucosyltransferase 3 (galactoside 3(4)-L-fucosyltransferase, Lewis blood group) 244160 4 4 4 0 3 1 0 0 0 0 0.19 0.80 -4324 SMYD5 SMYD family member 5 291368 6 5 6 0 4 1 1 0 0 0 0.19 0.80 -4325 C5orf41 chromosome 5 open reading frame 41 437976 6 5 6 0 2 3 0 0 1 0 0.19 0.80 -4326 INTS7 integrator complex subunit 7 665056 8 7 8 0 2 3 3 0 0 0 0.19 0.80 -4327 MED31 mediator complex subunit 31 92288 1 1 1 0 0 0 1 0 0 0 0.19 0.80 -4328 SPRED2 sprouty-related, EVH1 domain containing 2 288792 6 6 6 5 5 1 0 0 0 0 0.19 0.80 -4329 APOBEC3C apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3C 131936 3 2 3 0 2 0 0 0 1 0 0.19 0.80 -4330 KCNC1 potassium voltage-gated channel, Shaw-related subfamily, member 1 310072 5 5 5 4 3 1 0 0 1 0 0.19 0.80 -4331 LCT lactase 1305892 20 15 20 6 8 7 5 0 0 0 0.19 0.80 -4332 BMP7 bone morphogenetic protein 7 (osteogenic protein 1) 256520 6 5 6 1 5 1 0 0 0 0 0.19 0.80 -4333 C7orf47 chromosome 7 open reading frame 47 125652 1 1 1 1 0 0 0 0 1 0 0.19 0.80 -4334 SHC1 SHC (Src homology 2 domain containing) transforming protein 1 386316 3 3 2 0 0 1 0 0 2 0 0.19 0.80 -4335 RHBDL3 rhomboid, veinlet-like 3 (Drosophila) 254044 5 4 5 0 3 0 1 0 1 0 0.19 0.80 -4336 SCGB3A1 secretoglobin, family 3A, member 1 47508 1 1 1 0 0 0 1 0 0 0 0.19 0.80 -4337 KRTAP10-6 keratin associated protein 10-6 246848 3 3 3 0 0 3 0 0 0 0 0.19 0.80 -4338 ZNF200 zinc finger protein 200 269696 3 3 3 1 0 2 1 0 0 0 0.19 0.80 -4339 NUP35 nucleoporin 35kDa 227808 2 2 2 1 1 0 0 0 1 0 0.19 0.80 -4340 NTS neurotensin 118496 2 2 2 0 0 2 0 0 0 0 0.19 0.80 -4341 ECT2 epithelial cell transforming sequence 2 oncogene 614656 5 5 5 0 2 2 0 0 1 0 0.19 0.80 -4342 C3orf43 chromosome 3 open reading frame 43 147168 1 1 1 1 0 0 0 0 1 0 0.19 0.80 -4343 PMFBP1 polyamine modulated factor 1 binding protein 1 697536 6 6 6 1 1 3 2 0 0 0 0.19 0.80 -4344 ESRRA estrogen-related receptor alpha 269336 3 3 3 1 1 1 0 1 0 0 0.19 0.80 -4345 KIRREL2 kin of IRRE like 2 (Drosophila) 489840 6 6 6 1 1 2 2 0 1 0 0.19 0.80 -4346 ZNF346 zinc finger protein 346 173392 3 3 3 1 0 2 1 0 0 0 0.19 0.80 -4347 LIN9 lin-9 homolog (C. elegans) 389088 6 5 6 0 4 1 1 0 0 0 0.19 0.80 -4348 TAF4B TAF4b RNA polymerase II, TATA box binding protein (TBP)-associated factor, 105kDa 567532 6 6 6 1 2 2 2 0 0 0 0.19 0.80 -4349 LYPD4 LY6/PLAUR domain containing 4 169568 2 2 2 2 1 1 0 0 0 0 0.19 0.80 -4350 CDH24 cadherin-like 24 445896 4 4 4 2 0 0 1 0 3 0 0.19 0.80 -4351 STBD1 starch binding domain 1 241272 2 2 2 0 0 2 0 0 0 0 0.19 0.80 -4352 ENTPD3 ectonucleoside triphosphate diphosphohydrolase 3 365120 5 5 5 0 0 4 1 0 0 0 0.19 0.80 -4353 SPN sialophorin (leukosialin, CD43) 242816 2 2 2 0 0 0 0 0 2 0 0.19 0.80 -4354 EXOC4 exocyst complex component 4 673344 7 6 7 1 2 3 1 0 1 0 0.19 0.80 -4355 MFAP5 microfibrillar associated protein 5 124992 4 2 4 0 1 3 0 0 0 0 0.19 0.80 -4356 SLC4A5 solute carrier family 4, sodium bicarbonate cotransporter, member 5 788032 10 9 10 2 3 4 2 1 0 0 0.19 0.80 -4357 LPIN1 lipin 1 613876 11 9 11 3 6 3 2 0 0 0 0.19 0.81 -4358 AGTPBP1 ATP/GTP binding protein 1 817876 8 5 8 1 1 1 4 0 2 0 0.19 0.81 -4359 OR5B3 olfactory receptor, family 5, subfamily B, member 3 212576 3 3 3 1 0 2 1 0 0 0 0.19 0.81 -4360 CSRNP3 397376 5 5 5 3 1 3 1 0 0 0 0.19 0.81 -4361 SFRS15 splicing factor, arginine/serine-rich 15 786520 8 8 8 3 5 1 1 0 1 0 0.19 0.81 -4362 DHRS2 dehydrogenase/reductase (SDR family) member 2 209440 3 3 3 1 2 0 0 0 1 0 0.19 0.81 -4363 CALML5 calmodulin-like 5 76264 2 2 2 0 2 0 0 0 0 0 0.20 0.81 -4364 ANXA4 annexin A4 227136 4 4 4 0 1 2 1 0 0 0 0.20 0.81 -4365 XRN1 5'-3' exoribonuclease 1 1184736 8 8 8 3 2 3 1 1 1 0 0.20 0.81 -4366 REN renin 282464 5 4 5 1 3 2 0 0 0 0 0.20 0.81 -4367 GHR growth hormone receptor 437472 6 4 6 2 1 4 1 0 0 0 0.20 0.81 -4368 PSMA3 proteasome (prosome, macropain) subunit, alpha type, 3 181888 3 3 3 0 1 1 1 0 0 0 0.20 0.81 -4369 SULT6B1 sulfotransferase family, cytosolic, 6B, member 1 185024 3 3 3 0 0 1 1 0 1 0 0.20 0.81 -4370 MED12L mediator complex subunit 12-like 1474760 17 11 17 7 5 6 3 0 3 0 0.20 0.81 -4371 ZFYVE9 zinc finger, FYVE domain containing 9 975696 10 8 10 2 4 2 2 0 2 0 0.20 0.81 -4372 FAM19A2 family with sequence similarity 19 (chemokine (C-C motif)-like), member A2 92288 2 2 2 0 1 1 0 0 0 0 0.20 0.81 -4373 SEMG1 semenogelin I 312928 3 3 3 0 0 1 2 0 0 0 0.20 0.81 -4374 HLCS holocarboxylase synthetase (biotin-(proprionyl-Coenzyme A-carboxylase (ATP-hydrolysing)) ligase) 492996 6 6 4 2 4 1 0 0 1 0 0.20 0.81 -4375 ST20 suppressor of tumorigenicity 20 44576 1 1 1 0 1 0 0 0 0 0 0.20 0.81 -4376 RCVRN recoverin 137760 3 3 3 3 2 1 0 0 0 0 0.20 0.81 -4377 IL1F5 interleukin 1 family, member 5 (delta) 108416 2 2 2 1 1 1 0 0 0 0 0.20 0.81 -4378 ANKRD6 ankyrin repeat domain 6 478896 5 5 4 2 4 0 1 0 0 0 0.20 0.81 -4379 HCN4 hyperpolarization activated cyclic nucleotide-gated potassium channel 4 556904 9 9 8 4 8 0 0 0 1 0 0.20 0.81 -4380 EFTUD2 elongation factor Tu GTP binding domain containing 2 678048 6 6 6 1 3 1 2 0 0 0 0.20 0.81 -4381 CSNK1D casein kinase 1, delta 248672 4 4 4 0 1 1 1 1 0 0 0.20 0.81 -4382 WNT11 wingless-type MMTV integration site family, member 11 169572 3 3 3 2 1 1 1 0 0 0 0.20 0.81 -4383 GPN3 200928 2 2 2 1 1 0 1 0 0 0 0.20 0.81 -4384 BARHL2 BarH-like homeobox 2 233872 4 3 4 1 1 0 2 0 1 0 0.20 0.81 -4385 LRRC49 leucine rich repeat containing 49 476000 6 5 6 0 3 2 1 0 0 0 0.20 0.81 -4386 TNIK TRAF2 and NCK interacting kinase 909208 12 7 11 1 1 5 1 1 0 4 0.20 0.81 -4387 ATR ataxia telangiectasia and Rad3 related 1819552 18 12 18 3 9 5 1 0 3 0 0.20 0.81 -4388 AKAP7 A kinase (PRKA) anchor protein 7 254240 3 2 3 0 0 0 2 0 1 0 0.20 0.81 -4389 MCART1 mitochondrial carrier triple repeat 1 201152 2 2 2 1 1 0 0 0 1 0 0.20 0.81 -4390 HSD17B3 hydroxysteroid (17-beta) dehydrogenase 3 218848 2 2 2 0 1 0 0 0 1 0 0.20 0.81 -4391 SLC20A1 solute carrier family 20 (phosphate transporter), member 1 465920 4 4 4 1 0 2 1 0 1 0 0.20 0.81 -4392 TM9SF3 transmembrane 9 superfamily member 3 386176 5 4 5 1 2 2 0 0 1 0 0.20 0.81 -4393 NPEPPS aminopeptidase puromycin sensitive 568196 6 5 6 0 2 1 1 0 2 0 0.20 0.81 -4394 ALDH8A1 aldehyde dehydrogenase 8 family, member A1 334208 4 4 4 0 2 1 0 0 1 0 0.20 0.81 -4395 FYTTD1 forty-two-three domain containing 1 213444 3 3 3 0 1 1 0 0 1 0 0.20 0.81 -4396 TC2N tandem C2 domains, nuclear 339808 4 4 4 2 1 0 3 0 0 0 0.20 0.81 -4397 ETV6 ets variant gene 6 (TEL oncogene) 311584 5 5 4 1 3 1 0 1 0 0 0.20 0.81 -4398 OR4K2 olfactory receptor, family 4, subfamily K, member 2 212576 4 3 4 2 0 3 1 0 0 0 0.20 0.81 -4399 NHLRC3 NHL repeat containing 3 240128 3 3 3 0 0 3 0 0 0 0 0.20 0.81 -4400 MRPS31 mitochondrial ribosomal protein S31 272384 2 2 1 0 0 0 2 0 0 0 0.20 0.81 -4401 RBM24 RNA binding motif protein 24 121044 2 2 2 1 1 0 0 0 1 0 0.20 0.81 -4402 FERMT2 fermitin family homolog 2 (Drosophila) 472416 3 3 3 1 0 0 2 0 1 0 0.20 0.81 -4403 CCDC23 coiled-coil domain containing 23 46816 1 1 1 0 0 1 0 0 0 0 0.20 0.81 -4404 PSMB2 proteasome (prosome, macropain) subunit, beta type, 2 141120 2 2 2 0 0 0 1 1 0 0 0.20 0.81 -4405 TEX12 testis expressed 12 86912 2 1 2 0 0 1 1 0 0 0 0.20 0.81 -4406 ZNF182 zinc finger protein 182 427584 7 6 7 1 1 6 0 0 0 0 0.20 0.81 -4407 GAL3ST4 galactose-3-O-sulfotransferase 4 315040 4 3 4 2 1 2 0 0 1 0 0.20 0.81 -4408 GXYLT2 242144 3 3 3 1 0 2 0 0 1 0 0.20 0.81 -4409 SLC18A2 solute carrier family 18 (vesicular monoamine), member 2 351104 4 4 4 4 1 2 0 1 0 0 0.20 0.81 -4410 CEACAM20 carcinoembryonic antigen-related cell adhesion molecule 20 401552 4 4 4 3 1 3 0 0 0 0 0.20 0.81 -4411 SH3BP5 SH3-domain binding protein 5 (BTK-associated) 292808 3 3 3 0 1 0 1 0 1 0 0.20 0.81 -4412 ABCB1 ATP-binding cassette, sub-family B (MDR/TAP), member 1 885024 11 8 11 2 0 5 4 0 2 0 0.20 0.81 -4413 IMPA2 inositol(myo)-1(or 4)-monophosphatase 2 178976 2 2 2 0 1 0 0 0 1 0 0.20 0.81 -4414 TMEM108 transmembrane protein 108 390656 3 3 3 2 1 1 0 1 0 0 0.20 0.81 -4415 RAN RAN, member RAS oncogene family 142240 2 2 2 0 0 1 1 0 0 0 0.20 0.81 -4416 BBS12 Bardet-Biedl syndrome 12 478688 4 4 4 1 1 1 1 0 1 0 0.20 0.81 -4417 EPAS1 endothelial PAS domain protein 1 582784 7 6 7 1 2 3 1 0 1 0 0.20 0.81 -4418 PLAT plasminogen activator, tissue 389984 5 5 5 2 1 1 2 0 1 0 0.20 0.81 -4419 TCTE1 t-complex-associated-testis-expressed 1 331856 4 4 4 5 2 1 0 0 1 0 0.20 0.81 -4420 ZNF627 zinc finger protein 627 304976 6 3 6 0 3 0 0 0 3 0 0.20 0.81 -4421 NECAP2 NECAP endocytosis associated 2 186136 3 3 3 0 1 2 0 0 0 0 0.20 0.81 -4422 SLC35B2 solute carrier family 35, member B2 291200 2 2 2 1 1 0 0 0 1 0 0.20 0.81 -4423 FBXL2 F-box and leucine-rich repeat protein 2 296800 3 3 3 3 2 0 1 0 0 0 0.20 0.81 -4424 OTUD7B OTU domain containing 7B 577024 5 5 5 0 1 1 2 0 1 0 0.20 0.81 -4425 C1orf144 chromosome 1 open reading frame 144 86824 1 1 1 0 0 0 0 0 1 0 0.20 0.81 -4426 CHST15 383852 8 6 8 3 6 2 0 0 0 0 0.20 0.81 -4427 ZNF317 zinc finger protein 317 392288 6 5 6 3 2 3 0 0 1 0 0.20 0.81 -4428 PXMP2 peroxisomal membrane protein 2, 22kDa 107968 1 1 1 0 0 0 0 0 1 0 0.20 0.81 -4429 CCDC83 coiled-coil domain containing 83 308896 5 3 4 0 1 2 0 0 2 0 0.20 0.81 -4430 TIMP2 TIMP metallopeptidase inhibitor 2 122976 2 2 2 0 1 0 1 0 0 0 0.20 0.81 -4431 ZNF506 zinc finger protein 506 302624 4 4 4 3 1 2 1 0 0 0 0.20 0.81 -4432 USP50 ubiquitin specific peptidase 50 231392 3 3 3 1 2 0 1 0 0 0 0.20 0.82 -4433 EPN2 epsin 2 419552 4 4 4 0 1 1 1 0 1 0 0.20 0.82 -4434 KIAA0141 KIAA0141 357504 3 3 3 1 2 0 0 0 1 0 0.20 0.82 -4435 ANPEP alanyl (membrane) aminopeptidase (aminopeptidase N, aminopeptidase M, microsomal aminopeptidase, CD13, p150) 668416 8 8 8 2 3 3 2 0 0 0 0.20 0.82 -4436 IGSF1 immunoglobulin superfamily, member 1 931616 9 9 9 5 2 2 5 0 0 0 0.20 0.82 -4437 BCMO1 beta-carotene 15,15'-monooxygenase 1 378112 4 4 4 0 2 0 2 0 0 0 0.20 0.82 -4438 SIPA1L1 signal-induced proliferation-associated 1 like 1 1231776 14 9 12 8 6 5 1 0 2 0 0.20 0.82 -4439 OMD osteomodulin 285376 4 3 4 0 1 2 0 0 1 0 0.20 0.82 -4440 FAM83C family with sequence similarity 83, member C 461784 5 5 5 1 1 2 2 0 0 0 0.20 0.82 -4441 C8orf55 chromosome 8 open reading frame 55 46732 1 1 1 0 0 1 0 0 0 0 0.20 0.82 -4442 C17orf87 chromosome 17 open reading frame 87 102592 1 1 1 0 0 0 1 0 0 0 0.20 0.82 -4443 HTR4 5-hydroxytryptamine (serotonin) receptor 4 333088 3 3 3 1 1 0 1 0 1 0 0.20 0.82 -4444 PSMC3 proteasome (prosome, macropain) 26S subunit, ATPase, 3 281952 3 3 3 1 0 1 2 0 0 0 0.20 0.82 -4445 PLA2G4A phospholipase A2, group IVA (cytosolic, calcium-dependent) 519232 8 6 7 1 4 1 1 0 2 0 0.20 0.82 -4446 FLT1 fms-related tyrosine kinase 1 (vascular endothelial growth factor/vascular permeability factor receptor) 913696 13 10 13 7 5 6 2 0 0 0 0.20 0.82 -4447 HRH4 histamine receptor H4 265440 2 2 2 2 0 0 1 0 1 0 0.20 0.82 -4448 MAS1L MAS1 oncogene-like 255584 4 3 4 1 1 1 1 1 0 0 0.20 0.82 -4449 ATG2B ATG2 autophagy related 2 homolog B (S. cerevisiae) 1430688 9 8 9 2 0 1 3 0 5 0 0.20 0.82 -4450 CKS2 CDC28 protein kinase regulatory subunit 2 56448 1 1 1 0 0 0 1 0 0 0 0.20 0.82 -4451 KIF18A kinesin family member 18A 618464 6 6 4 5 4 0 1 0 1 0 0.20 0.82 -4452 MS4A13 membrane-spanning 4-domains, subfamily A, member 13 107296 1 1 1 0 1 0 0 0 0 0 0.20 0.82 -4453 FAR2 356608 4 4 4 1 3 0 1 0 0 0 0.20 0.82 -4454 SMARCB1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 265692 3 3 3 2 1 0 1 0 1 0 0.20 0.82 -4455 TBCE tubulin folding cofactor E 369152 3 3 3 0 1 0 0 0 2 0 0.20 0.82 -4456 SAA2 serum amyloid A2 85344 1 1 1 0 0 0 1 0 0 0 0.20 0.82 -4457 SSTR4 somatostatin receptor 4 232652 4 4 4 0 3 0 1 0 0 0 0.20 0.82 -4458 TKTL1 transketolase-like 1 412832 5 5 5 2 1 1 2 0 1 0 0.20 0.82 -4459 FURIN furin (paired basic amino acid cleaving enzyme) 457804 3 3 3 0 0 0 0 0 3 0 0.20 0.82 -4460 OR6C74 olfactory receptor, family 6, subfamily C, member 74 211232 2 2 2 1 0 0 1 0 1 0 0.20 0.82 -4461 RAF1 v-raf-1 murine leukemia viral oncogene homolog 1 450464 6 5 5 1 4 2 0 0 0 0 0.20 0.82 -4462 MYH8 myosin, heavy chain 8, skeletal muscle, perinatal 1336384 20 13 18 3 10 7 3 0 0 0 0.20 0.82 -4463 MOXD1 monooxygenase, DBH-like 1 375368 7 4 7 2 2 3 1 0 1 0 0.20 0.82 -4464 C1orf183 chromosome 1 open reading frame 183 205632 2 2 2 0 0 1 0 0 1 0 0.20 0.82 -4465 OMP olfactory marker protein 92960 2 2 2 0 0 2 0 0 0 0 0.20 0.82 -4466 NAA50 118720 1 1 1 1 0 0 1 0 0 0 0.20 0.82 -4467 RAB19 RAB19, member RAS oncogene family 149184 2 2 2 0 1 1 0 0 0 0 0.20 0.82 -4468 C7 complement component 7 580984 5 5 5 2 2 0 1 0 2 0 0.20 0.82 -4469 DUSP1 dual specificity phosphatase 1 174216 2 2 2 0 0 0 2 0 0 0 0.20 0.82 -4470 PPID peptidylprolyl isomerase D (cyclophilin D) 258272 3 3 3 0 0 1 1 0 1 0 0.20 0.82 -4471 LIG4 ligase IV, DNA, ATP-dependent 607544 7 5 7 2 2 4 1 0 0 0 0.20 0.82 -4472 TRIM9 tripartite motif-containing 9 471016 6 6 6 1 1 3 1 0 1 0 0.20 0.82 -4473 GLT8D1 glycosyltransferase 8 domain containing 1 258048 3 3 3 0 1 1 1 0 0 0 0.20 0.82 -4474 GOLGA7 golgi autoantigen, golgin subfamily a, 7 97440 1 1 1 0 0 0 0 0 1 0 0.20 0.82 -4475 ADCY5 adenylate cyclase 5 702548 11 10 10 1 7 1 1 0 2 0 0.20 0.82 -4476 RAET1E retinoic acid early transcript 1E 180992 2 2 2 1 0 2 0 0 0 0 0.20 0.82 -4477 CD1A CD1a molecule 225792 3 3 3 2 2 0 0 1 0 0 0.20 0.82 -4478 CNTNAP5 contactin associated protein-like 5 873288 13 9 13 9 6 2 2 1 2 0 0.20 0.82 -4479 MMP3 matrix metallopeptidase 3 (stromelysin 1, progelatinase) 330176 2 2 2 1 0 1 0 0 1 0 0.20 0.82 -4480 C5orf56 86944 1 1 1 0 0 0 1 0 0 0 0.20 0.82 -4481 DEPDC7 DEP domain containing 7 358704 4 4 4 0 0 3 0 0 1 0 0.20 0.82 -4482 CMPK1 cytidine monophosphate (UMP-CMP) kinase 1, cytosolic 139756 2 2 2 1 1 0 0 0 1 0 0.20 0.82 -4483 KIAA1217 KIAA1217 1325184 13 12 13 6 8 2 1 0 2 0 0.20 0.82 -4484 SMCHD1 structural maintenance of chromosomes flexible hinge domain containing 1 1341932 21 10 21 1 6 9 3 0 1 2 0.20 0.82 -4485 ZNF488 zinc finger protein 488 198128 2 2 2 0 0 0 1 0 1 0 0.20 0.82 -4486 UGT1A9 UDP glucuronosyltransferase 1 family, polypeptide A9 361312 6 6 6 0 6 0 0 0 0 0 0.20 0.82 -4487 TSPAN2 tetraspanin 2 150220 2 2 2 2 1 0 0 0 1 0 0.20 0.82 -4488 SHQ1 SHQ1 homolog (S. cerevisiae) 380472 4 4 4 2 2 1 0 0 1 0 0.20 0.82 -4489 C6orf146 chromosome 6 open reading frame 146 347424 4 3 4 2 0 1 1 0 2 0 0.20 0.82 -4490 CENPV 113960 2 2 2 0 2 0 0 0 0 0 0.20 0.82 -4491 SECISBP2 SECIS binding protein 2 580832 4 4 4 2 2 0 1 0 1 0 0.20 0.82 -4492 EVL Enah/Vasp-like 279788 3 3 3 0 1 0 0 1 1 0 0.20 0.82 -4493 UTP14C UTP14, U3 small nucleolar ribonucleoprotein, homolog C (yeast) 516320 7 5 7 4 0 5 1 0 1 0 0.20 0.82 -4494 MIER1 mesoderm induction early response 1 homolog (Xenopus laevis) 390460 3 3 3 0 0 0 0 0 3 0 0.20 0.82 -4495 UBE3A ubiquitin protein ligase E3A (human papilloma virus E6-associated protein, Angelman syndrome) 602544 11 7 11 2 5 5 1 0 0 0 0.20 0.82 -4496 CHSY1 chondroitin sulfate synthase 1 469728 5 5 5 6 2 2 0 0 1 0 0.20 0.82 -4497 HINT1 histidine triad nucleotide binding protein 1 88032 1 1 1 0 0 1 0 0 0 0 0.20 0.82 -4498 PIAS3 protein inhibitor of activated STAT, 3 428484 4 4 4 1 2 2 0 0 0 0 0.20 0.82 -4499 ALS2CR8 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 8 500416 3 3 3 1 0 2 1 0 0 0 0.20 0.82 -4500 RGS17 regulator of G-protein signaling 17 145376 2 2 2 2 0 2 0 0 0 0 0.20 0.82 -4501 ZFPM2 zinc finger protein, multitype 2 771456 6 6 6 4 2 2 1 0 1 0 0.20 0.82 -4502 RHD Rh blood group, D antigen 278432 3 3 3 1 1 1 0 1 0 0 0.20 0.82 -4503 USPL1 ubiquitin specific peptidase like 1 741664 7 7 7 2 2 2 3 0 0 0 0.21 0.82 -4504 OTX1 orthodenticle homeobox 1 230244 4 4 4 2 1 1 2 0 0 0 0.21 0.82 -4505 FBXL21 F-box and leucine-rich repeat protein 21 295496 6 4 6 1 0 4 2 0 0 0 0.21 0.82 -4506 C10orf35 chromosome 10 open reading frame 35 82936 1 1 1 0 0 1 0 0 0 0 0.21 0.82 -4507 RILPL2 Rab interacting lysosomal protein-like 2 133820 2 2 2 0 1 1 0 0 0 0 0.21 0.82 -4508 MFRP membrane frizzled-related protein 351348 2 2 2 0 0 0 0 0 2 0 0.21 0.82 -4509 KIAA1715 KIAA1715 299040 4 3 4 0 0 2 1 0 1 0 0.21 0.82 -4510 SND1 staphylococcal nuclease and tudor domain containing 1 626488 7 7 7 2 4 1 1 0 1 0 0.21 0.82 -4511 ST3GAL3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 309792 4 4 4 2 2 0 2 0 0 0 0.21 0.82 -4512 HSPB3 heat shock 27kDa protein 3 102368 2 2 2 2 1 0 0 0 1 0 0.21 0.82 -4513 PGF placental growth factor 99708 2 2 2 1 2 0 0 0 0 0 0.21 0.82 -4514 CLCN4 chloride channel 4 520976 9 8 9 3 8 1 0 0 0 0 0.21 0.82 -4515 TRYX3 167104 2 2 2 0 0 1 1 0 0 0 0.21 0.82 -4516 RPS3 ribosomal protein S3 168168 2 2 2 0 0 2 0 0 0 0 0.21 0.82 -4517 THAP2 THAP domain containing, apoptosis associated protein 2 156576 3 2 3 0 1 1 0 0 1 0 0.21 0.82 -4518 COL4A4 collagen, type IV, alpha 4 1178464 10 9 10 4 1 6 0 0 3 0 0.21 0.82 -4519 LYN v-yes-1 Yamaguchi sarcoma viral related oncogene homolog 355488 4 4 4 0 2 0 2 0 0 0 0.21 0.82 -4520 HIST1H1D histone cluster 1, H1d 150080 2 2 2 1 0 1 1 0 0 0 0.21 0.82 -4521 PLSCR3 phospholipid scramblase 3 144620 3 3 2 0 2 0 0 0 1 0 0.21 0.82 -4522 RBX1 ring-box 1 71428 1 1 1 0 1 0 0 0 0 0 0.21 0.82 -4523 CCDC36 coiled-coil domain containing 36 401632 3 3 3 0 0 2 0 0 1 0 0.21 0.82 -4524 MORN5 113344 2 2 2 1 0 1 1 0 0 0 0.21 0.82 -4525 NR1H3 nuclear receptor subfamily 1, group H, member 3 305256 4 4 4 2 2 1 1 0 0 0 0.21 0.82 -4526 SCG2 secretogranin II (chromogranin C) 416192 6 4 6 4 0 4 1 0 1 0 0.21 0.82 -4527 AKAP6 A kinase (PRKA) anchor protein 6 1565340 16 11 16 7 4 7 3 0 2 0 0.21 0.82 -4528 FAM13C 406336 6 5 6 2 2 1 2 0 1 0 0.21 0.82 -4529 STC1 stanniocalcin 1 170240 2 2 2 2 0 2 0 0 0 0 0.21 0.82 -4530 MKX mohawk homeobox 220900 3 3 3 0 2 0 1 0 0 0 0.21 0.82 -4531 PRDM5 PR domain containing 5 430220 5 4 5 0 2 1 0 0 2 0 0.21 0.82 -4532 C17orf78 chromosome 17 open reading frame 78 191744 1 1 1 0 0 0 0 0 1 0 0.21 0.82 -4533 OPN1SW opsin 1 (cone pigments), short-wave-sensitive 239008 3 3 3 0 1 1 1 0 0 0 0.21 0.82 -4534 ADAMTS14 ADAM metallopeptidase with thrombospondin type 1 motif, 14 730056 9 8 9 2 3 4 2 0 0 0 0.21 0.82 -4535 IFT81 intraflagellar transport 81 homolog (Chlamydomonas) 471072 3 3 3 0 1 1 0 0 1 0 0.21 0.82 -4536 C9orf47 chromosome 9 open reading frame 47 80040 1 1 1 0 0 0 1 0 0 0 0.21 0.82 -4537 HSPA13 320320 2 2 2 0 0 0 1 0 1 0 0.21 0.82 -4538 KRT78 keratin 78 358176 4 4 4 2 3 0 0 0 1 0 0.21 0.82 -4539 PIGX phosphatidylinositol glycan anchor biosynthesis, class X 166208 4 3 4 1 0 3 1 0 0 0 0.21 0.82 -4540 LGMN legumain 303296 3 3 3 2 1 0 1 0 1 0 0.21 0.82 -4541 DHX38 DEAH (Asp-Glu-Ala-His) box polypeptide 38 823028 11 9 11 5 5 4 1 0 1 0 0.21 0.82 -4542 SPRR2B small proline-rich protein 2B 49952 1 1 1 0 0 1 0 0 0 0 0.21 0.82 -4543 EFHB EF-hand domain family, member B 569104 8 6 8 2 2 4 1 0 1 0 0.21 0.82 -4544 RAPGEF6 Rap guanine nucleotide exchange factor (GEF) 6 1102528 8 7 8 1 3 2 2 0 1 0 0.21 0.82 -4545 PLCB4 phospholipase C, beta 4 840896 10 9 10 1 4 3 3 0 0 0 0.21 0.82 -4546 KRTAP12-1 keratin associated protein 12-1 66080 1 1 1 0 0 1 0 0 0 0 0.21 0.82 -4547 TMOD2 tropomodulin 2 (neuronal) 244608 2 2 2 0 0 0 1 0 1 0 0.21 0.82 -4548 CLPP ClpP caseinolytic peptidase, ATP-dependent, proteolytic subunit homolog (E. coli) 140032 2 2 2 0 1 0 0 0 1 0 0.21 0.82 -4549 TNP1 transition protein 1 (during histone to protamine replacement) 39424 1 1 1 0 1 0 0 0 0 0 0.21 0.82 -4550 COX8C cytochrome c oxidase subunit 8C 39928 1 1 1 0 1 0 0 0 0 0 0.21 0.83 -4551 KIAA0408 KIAA0408 470596 6 4 6 2 0 2 2 0 2 0 0.21 0.83 -4552 EPB41L5 erythrocyte membrane protein band 4.1 like 5 514752 5 5 5 0 1 3 1 0 0 0 0.21 0.83 -4553 ANKRD7 ankyrin repeat domain 7 176736 3 3 3 1 0 2 1 0 0 0 0.21 0.83 -4554 OR52K1 olfactory receptor, family 52, subfamily K, member 1 212576 2 2 2 1 0 1 1 0 0 0 0.21 0.83 -4555 KLF14 Kruppel-like factor 14 109816 2 2 2 1 1 0 0 0 1 0 0.21 0.83 -4556 TRPC5 transient receptor potential cation channel, subfamily C, member 5 663488 6 6 5 0 4 2 0 0 0 0 0.21 0.83 -4557 ADAMTS9 ADAM metallopeptidase with thrombospondin type 1 motif, 9 1319752 14 11 14 3 7 3 3 0 1 0 0.21 0.83 -4558 C12orf45 chromosome 12 open reading frame 45 128576 1 1 1 0 0 0 0 0 1 0 0.21 0.83 -4559 ELL3 elongation factor RNA polymerase II-like 3 272824 4 3 4 1 1 1 1 0 1 0 0.21 0.83 -4560 STAG2 stromal antigen 2 882336 6 6 6 3 0 3 2 0 1 0 0.21 0.83 -4561 LIX1L Lix1 homolog (mouse)-like 177688 3 3 3 1 1 2 0 0 0 0 0.21 0.83 -4562 LARP1B 635488 7 5 7 0 2 1 1 1 0 2 0.21 0.83 -4563 STYX serine/threonine/tyrosine interacting protein 160384 2 2 2 0 0 1 0 0 1 0 0.21 0.83 -4564 FXYD5 FXYD domain containing ion transport regulator 5 127456 2 2 2 1 1 1 0 0 0 0 0.21 0.83 -4565 CCDC104 coiled-coil domain containing 104 239456 3 3 3 0 1 1 0 0 1 0 0.21 0.83 -4566 ULBP1 UL16 binding protein 1 168224 2 2 2 1 0 0 1 0 1 0 0.21 0.83 -4567 ST8SIA6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 233104 3 3 3 1 0 1 1 0 1 0 0.21 0.83 -4568 ITSN2 intersectin 2 1178240 11 8 11 1 2 2 3 0 2 2 0.21 0.83 -4569 PDILT 402976 7 5 7 5 4 2 1 0 0 0 0.21 0.83 -4570 C2orf79 94108 2 2 2 0 0 2 0 0 0 0 0.21 0.83 -4571 PRKAR1A protein kinase, cAMP-dependent, regulatory, type I, alpha (tissue specific extinguisher 1) 265664 5 3 5 0 1 2 1 0 1 0 0.21 0.83 -4572 NMNAT1 nicotinamide nucleotide adenylyltransferase 1 191744 2 2 2 0 0 1 0 0 1 0 0.21 0.83 -4573 ADAMTS2 ADAM metallopeptidase with thrombospondin type 1 motif, 2 669260 10 10 10 4 8 1 1 0 0 0 0.21 0.83 -4574 GLI4 GLI-Kruppel family member GLI4 126816 1 1 1 0 0 0 0 0 1 0 0.21 0.83 -4575 ASPM asp (abnormal spindle) homolog, microcephaly associated (Drosophila) 2354408 25 15 25 3 6 10 5 1 3 0 0.21 0.83 -4576 SLC30A3 solute carrier family 30 (zinc transporter), member 3 260176 3 3 3 0 2 1 0 0 0 0 0.21 0.83 -4577 CAPN2 calpain 2, (m/II) large subunit 450684 7 6 7 2 4 0 2 0 1 0 0.21 0.83 -4578 MAGED2 melanoma antigen family D, 2 371324 5 5 5 0 5 0 0 0 0 0 0.21 0.83 -4579 A1CF APOBEC1 complementation factor 438144 6 4 5 0 1 1 2 0 2 0 0.21 0.83 -4580 ABLIM2 actin binding LIM protein family, member 2 432024 4 4 4 0 0 2 0 0 2 0 0.21 0.83 -4581 CTLA4 cytotoxic T-lymphocyte-associated protein 4 154112 2 2 2 3 0 2 0 0 0 0 0.21 0.83 -4582 COL2A1 collagen, type II, alpha 1 988852 9 9 9 2 2 4 1 0 2 0 0.21 0.83 -4583 C20orf111 chromosome 20 open reading frame 111 199584 3 3 3 0 2 1 0 0 0 0 0.21 0.83 -4584 CDK12 1013052 8 8 8 1 3 3 0 0 2 0 0.21 0.83 -4585 C17orf108 52784 1 1 1 0 0 0 1 0 0 0 0.21 0.83 -4586 ZNF800 zinc finger protein 800 451360 6 5 6 0 3 1 1 0 1 0 0.21 0.83 -4587 PJA1 praja 1 432740 6 5 6 1 3 2 1 0 0 0 0.21 0.83 -4588 NDUFA13 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 13 91016 1 1 1 0 0 0 0 0 1 0 0.21 0.83 -4589 DNAJC27 190400 2 2 2 2 1 0 0 0 1 0 0.21 0.83 -4590 BATF3 basic leucine zipper transcription factor, ATF-like 3 67648 1 1 1 0 1 0 0 0 0 0 0.21 0.83 -4591 C10orf128 chromosome 10 open reading frame 128 76608 1 1 1 0 1 0 0 0 0 0 0.21 0.83 -4592 RIT1 Ras-like without CAAX 1 152320 2 2 2 1 0 1 1 0 0 0 0.21 0.83 -4593 DEFB134 46816 1 1 1 0 0 1 0 0 0 0 0.21 0.83 -4594 NCEH1 298536 4 4 4 0 1 1 2 0 0 0 0.21 0.83 -4595 RAB24 RAB24, member RAS oncogene family 144256 2 2 2 0 1 1 0 0 0 0 0.21 0.83 -4596 HEMGN hemogen 329504 5 3 5 0 2 1 0 0 2 0 0.21 0.83 -4597 ING4 inhibitor of growth family, member 4 175168 2 2 2 0 0 1 1 0 0 0 0.21 0.83 -4598 ATP5C1 ATP synthase, H+ transporting, mitochondrial F1 complex, gamma polypeptide 1 210784 4 3 4 0 1 2 0 0 1 0 0.21 0.83 -4599 TNFAIP6 tumor necrosis factor, alpha-induced protein 6 192192 2 2 2 1 1 0 1 0 0 0 0.21 0.83 -4600 UBE2T ubiquitin-conjugating enzyme E2T (putative) 138432 1 1 1 0 0 0 0 0 1 0 0.21 0.83 -4601 ZC3H15 zinc finger CCCH-type containing 15 285160 4 3 4 0 1 2 1 0 0 0 0.21 0.83 -4602 ZNF709 zinc finger protein 709 435008 9 4 9 0 2 3 0 1 1 2 0.21 0.83 -4603 LRRC31 leucine rich repeat containing 31 379680 8 4 7 0 0 4 4 0 0 0 0.21 0.83 -4604 ZNF595 zinc finger protein 595 432044 5 4 5 1 1 2 2 0 0 0 0.21 0.83 -4605 MTA2 metastasis associated 1 family, member 2 463008 5 4 5 0 1 2 1 0 1 0 0.21 0.83 -4606 IQCD IQ motif containing D 235648 3 3 3 1 2 0 1 0 0 0 0.21 0.83 -4607 SCPEP1 serine carboxypeptidase 1 307904 3 3 3 0 1 2 0 0 0 0 0.21 0.83 -4608 C1orf88 chromosome 1 open reading frame 88 134400 2 2 2 0 0 1 1 0 0 0 0.21 0.83 -4609 TYR tyrosinase (oculocutaneous albinism IA) 360640 3 3 3 4 1 0 2 0 0 0 0.21 0.83 -4610 CSRP1 cysteine and glycine-rich protein 1 134848 2 2 2 1 1 0 0 0 1 0 0.21 0.83 -4611 KCTD3 potassium channel tetramerisation domain containing 3 546664 5 5 4 0 1 1 0 0 3 0 0.21 0.83 -4612 GIT2 G protein-coupled receptor kinase interactor 2 524608 7 7 7 1 4 2 0 0 1 0 0.21 0.83 -4613 FOXL1 forkhead box L1 149424 3 3 2 0 0 2 1 0 0 0 0.21 0.83 -4614 MAP2K5 mitogen-activated protein kinase kinase 5 306616 4 4 4 0 3 0 1 0 0 0 0.21 0.83 -4615 C1orf101 chromosome 1 open reading frame 101 577820 6 5 6 1 0 3 2 0 1 0 0.21 0.83 -4616 RAD23B RAD23 homolog B (S. cerevisiae) 268800 3 3 3 0 2 1 0 0 0 0 0.21 0.83 -4617 NVL nuclear VCP-like 596512 6 6 6 4 1 3 2 0 0 0 0.21 0.83 -4618 GLDN gliomedin 325696 4 4 4 0 1 1 2 0 0 0 0.21 0.83 -4619 ESRRB estrogen-related receptor beta 283640 3 3 3 1 3 0 0 0 0 0 0.21 0.83 -4620 DENND2D DENN/MADD domain containing 2D 327936 3 3 3 1 0 1 2 0 0 0 0.21 0.83 -4621 C5orf13 chromosome 5 open reading frame 13 49056 1 1 1 0 0 1 0 0 0 0 0.21 0.83 -4622 RBM3 RNA binding motif (RNP1, RRM) protein 3 101408 1 1 1 0 0 0 1 0 0 0 0.21 0.83 -4623 SSB Sjogren syndrome antigen B (autoantigen La) 284704 2 2 2 0 0 1 0 0 1 0 0.21 0.83 -4624 TRAPPC10 844200 6 6 6 4 0 2 1 1 2 0 0.21 0.83 -4625 TNFSF18 tumor necrosis factor (ligand) superfamily, member 18 137088 1 1 1 1 0 0 1 0 0 0 0.21 0.83 -4626 OTUD3 OTU domain containing 3 224896 4 4 3 0 2 2 0 0 0 0 0.21 0.84 -4627 ATPBD4 ATP binding domain 4 216784 1 1 1 0 0 0 0 0 1 0 0.21 0.84 -4628 CDC42EP1 CDC42 effector protein (Rho GTPase binding) 1 228036 2 2 1 0 0 0 0 0 2 0 0.21 0.84 -4629 IL33 interleukin 33 188384 2 2 2 0 0 1 0 0 1 0 0.21 0.84 -4630 HTR3C 5-hydroxytryptamine (serotonin) receptor 3, family member C 309120 3 3 3 1 1 1 0 0 1 0 0.21 0.84 -4631 ITGB1BP2 integrin beta 1 binding protein (melusin) 2 243712 2 2 2 0 0 1 1 0 0 0 0.21 0.84 -4632 CDH1 cadherin 1, type 1, E-cadherin (epithelial) 579880 5 5 5 2 1 1 1 0 2 0 0.21 0.84 -4633 SFRP2 secreted frizzled-related protein 2 192108 3 3 3 1 1 2 0 0 0 0 0.21 0.84 -4634 MIIP 266112 3 3 3 1 0 2 0 0 1 0 0.21 0.84 -4635 GLIPR1L1 GLI pathogenesis-related 1 like 1 161728 2 2 2 0 0 1 0 1 0 0 0.21 0.84 -4636 MYO5A myosin VA (heavy chain 12, myoxin) 1277024 10 9 10 2 2 2 4 0 2 0 0.21 0.84 -4637 REL v-rel reticuloendotheliosis viral oncogene homolog (avian) 415248 4 4 4 2 1 0 2 0 1 0 0.21 0.84 -4638 TPM4 tropomyosin 4 196864 4 4 4 1 3 1 0 0 0 0 0.21 0.84 -4639 PDC phosducin 168672 2 2 2 0 0 1 1 0 0 0 0.21 0.84 -4640 IGSF21 immunoglobin superfamily, member 21 306292 4 4 4 2 2 2 0 0 0 0 0.22 0.84 -4641 LUC7L2 LUC7-like 2 (S. cerevisiae) 258496 3 3 3 0 3 0 0 0 0 0 0.22 0.84 -4642 COMMD8 COMM domain containing 8 112448 2 2 2 0 1 0 1 0 0 0 0.22 0.84 -4643 PILRB paired immunoglobin-like type 2 receptor beta 156392 2 2 2 1 2 0 0 0 0 0 0.22 0.84 -4644 DMRTA1 DMRT-like family A1 212996 2 2 2 0 1 0 0 0 1 0 0.22 0.84 -4645 ROD1 ROD1 regulator of differentiation 1 (S. pombe) 387072 4 4 4 0 0 3 1 0 0 0 0.22 0.84 -4646 SLC37A3 solute carrier family 37 (glycerol-3-phosphate transporter), member 3 378560 5 5 5 0 1 3 1 0 0 0 0.22 0.84 -4647 RLN2 relaxin 2 126784 2 2 2 0 0 1 1 0 0 0 0.22 0.84 -4648 FAM46D family with sequence similarity 46, member D 262976 4 3 4 3 0 1 3 0 0 0 0.22 0.84 -4649 PLD1 phospholipase D1, phosphatidylcholine-specific 745696 11 8 11 4 3 7 1 0 0 0 0.22 0.84 -4650 OR4N2 olfactory receptor, family 4, subfamily N, member 2 207368 2 2 2 2 1 1 0 0 0 0 0.22 0.84 -4651 DCUN1D1 DCN1, defective in cullin neddylation 1, domain containing 1 (S. cerevisiae) 180404 2 2 2 1 1 0 1 0 0 0 0.22 0.84 -4652 ZNF146 zinc finger protein 146 197792 2 2 2 0 1 1 0 0 0 0 0.22 0.84 -4653 PCDHB6 protocadherin beta 6 505736 9 8 9 8 7 0 1 1 0 0 0.22 0.84 -4654 CDH3 cadherin 3, type 1, P-cadherin (placental) 546352 4 4 4 3 2 1 0 0 1 0 0.22 0.84 -4655 TMEM20 transmembrane protein 20 207872 2 2 2 0 1 0 0 0 1 0 0.22 0.84 -4656 ZNF664 zinc finger protein 664 176960 3 3 2 2 0 3 0 0 0 0 0.22 0.84 -4657 SLIT1 slit homolog 1 (Drosophila) 943528 11 10 11 5 5 5 0 0 1 0 0.22 0.84 -4658 WDR8 WD repeat domain 8 291760 4 4 4 1 2 0 1 1 0 0 0.22 0.84 -4659 GIMAP6 GTPase, IMAP family member 6 198688 4 3 4 2 2 2 0 0 0 0 0.22 0.84 -4660 NARS2 asparaginyl-tRNA synthetase 2, mitochondrial (putative) 328048 6 4 6 1 4 0 1 0 1 0 0.22 0.84 -4661 CEP164 centrosomal protein 164kDa 990664 11 9 11 1 3 4 2 0 2 0 0.22 0.84 -4662 SCNN1G sodium channel, nonvoltage-gated 1, gamma 447552 5 5 5 2 3 2 0 0 0 0 0.22 0.84 -4663 ARPP21 565376 7 6 6 3 4 1 2 0 0 0 0.22 0.84 -4664 PLAGL1 pleiomorphic adenoma gene-like 1 313600 4 4 4 0 2 1 1 0 0 0 0.22 0.84 -4665 BANF2 barrier to autointegration factor 2 63616 1 1 1 0 0 0 1 0 0 0 0.22 0.84 -4666 TRIM13 tripartite motif-containing 13 276416 4 3 4 1 1 2 1 0 0 0 0.22 0.84 -4667 TAF5 TAF5 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 100kDa 442596 4 4 4 1 1 0 1 0 2 0 0.22 0.84 -4668 UQCRH ubiquinol-cytochrome c reductase hinge protein 65408 1 1 1 0 1 0 0 0 0 0 0.22 0.84 -4669 FABP5 fatty acid binding protein 5 (psoriasis-associated) 79572 1 1 1 0 0 1 0 0 0 0 0.22 0.84 -4670 UBASH3B ubiquitin associated and SH3 domain containing, B 423024 4 4 4 1 1 0 3 0 0 0 0.22 0.84 -4671 ADCYAP1 adenylate cyclase activating polypeptide 1 (pituitary) 93100 3 3 3 0 2 1 0 0 0 0 0.22 0.84 -4672 FAM54B family with sequence similarity 54, member B 202272 2 2 2 0 0 1 0 0 1 0 0.22 0.84 -4673 SPRR2A small proline-rich protein 2A 49952 1 1 1 1 0 1 0 0 0 0 0.22 0.84 -4674 OR5L1 olfactory receptor, family 5, subfamily L, member 1 210560 3 2 3 1 0 1 2 0 0 0 0.22 0.84 -4675 DHX16 DEAH (Asp-Glu-Ala-His) box polypeptide 16 511504 6 6 6 2 3 1 2 0 0 0 0.22 0.84 -4676 UPF2 UPF2 regulator of nonsense transcripts homolog (yeast) 872592 12 8 12 1 3 8 1 0 0 0 0.22 0.84 -4677 ZNF221 zinc finger protein 221 418880 6 4 6 1 0 4 1 0 1 0 0.22 0.84 -4678 CLCA2 chloride channel, calcium activated, family member 2 646912 7 6 6 3 3 4 0 0 0 0 0.22 0.84 -4679 SLAMF9 SLAM family member 9 198464 2 2 2 0 0 2 0 0 0 0 0.22 0.84 -4680 C17orf66 chromosome 17 open reading frame 66 397152 3 3 3 3 0 1 1 0 1 0 0.22 0.84 -4681 BCDIN3D BCDIN3 domain containing 198688 3 3 3 0 0 0 2 0 1 0 0.22 0.84 -4682 DGAT2 diacylglycerol O-acyltransferase homolog 2 (mouse) 258076 4 4 4 1 1 2 1 0 0 0 0.22 0.84 -4683 OR1L1 olfactory receptor, family 1, subfamily L, member 1 209440 2 2 2 0 1 0 1 0 0 0 0.22 0.84 -4684 ADD2 adducin 2 (beta) 526624 9 7 9 6 6 3 0 0 0 0 0.22 0.84 -4685 LGALS14 lectin, galactoside-binding, soluble, 14 121408 2 2 2 1 1 0 1 0 0 0 0.22 0.84 -4686 ZNHIT2 zinc finger, HIT type 2 176848 2 2 2 0 0 1 0 0 1 0 0.22 0.84 -4687 OR2H2 olfactory receptor, family 2, subfamily H, member 2 132020 3 2 3 0 0 2 0 0 1 0 0.22 0.84 -4688 ANO3 684096 8 7 8 3 0 4 4 0 0 0 0.22 0.84 -4689 C11orf85 152992 1 1 1 0 0 0 0 0 1 0 0.22 0.84 -4690 C14orf183 183284 2 2 2 0 0 1 0 0 1 0 0.22 0.84 -4691 HLA-A major histocompatibility complex, class I, A 189028 3 3 3 0 1 0 1 0 1 0 0.22 0.84 -4692 ABCA9 ATP-binding cassette, sub-family A (ABC1), member 9 1126048 18 9 18 2 2 9 4 0 3 0 0.22 0.84 -4693 NINJ1 ninjurin 1 87808 2 2 2 0 2 0 0 0 0 0 0.22 0.84 -4694 HNF4A hepatocyte nuclear factor 4, alpha 367080 6 5 6 1 3 2 1 0 0 0 0.22 0.84 -4695 POLR3A polymerase (RNA) III (DNA directed) polypeptide A, 155kDa 952736 11 8 11 2 3 6 0 0 2 0 0.22 0.84 -4696 BLM Bloom syndrome 971712 9 9 9 2 0 6 3 0 0 0 0.22 0.84 -4697 EVI5 ecotropic viral integration site 5 561120 6 5 6 2 0 2 3 0 1 0 0.22 0.84 -4698 CYP7A1 cytochrome P450, family 7, subfamily A, polypeptide 1 344736 4 4 4 1 2 2 0 0 0 0 0.22 0.84 -4699 C1orf226 170588 2 2 2 1 0 1 1 0 0 0 0.22 0.84 -4700 RARS arginyl-tRNA synthetase 450968 4 4 4 0 2 0 0 1 1 0 0.22 0.84 -4701 SDHA succinate dehydrogenase complex, subunit A, flavoprotein (Fp) 444088 6 6 6 1 3 2 0 0 1 0 0.22 0.84 -4702 TBC1D17 TBC1 domain family, member 17 371184 4 4 4 0 1 0 2 0 1 0 0.22 0.84 -4703 IL31 interleukin 31 113568 2 2 2 2 1 0 1 0 0 0 0.22 0.84 -4704 MGAM maltase-glucoamylase (alpha-glucosidase) 1290280 13 10 13 7 6 2 3 0 2 0 0.22 0.84 -4705 SPINK5 serine peptidase inhibitor, Kazal type 5 768992 12 7 12 1 2 6 1 0 3 0 0.22 0.84 -4706 C5orf53 37184 1 1 1 0 1 0 0 0 0 0 0.22 0.84 -4707 ZNF211 zinc finger protein 211 383684 6 4 6 1 2 2 1 1 0 0 0.22 0.84 -4708 MRPL51 mitochondrial ribosomal protein L51 89376 1 1 1 0 0 0 0 0 1 0 0.22 0.84 -4709 CHORDC1 cysteine and histidine-rich domain (CHORD)-containing 1 233632 2 2 2 0 0 0 1 0 1 0 0.22 0.84 -4710 FAM189A2 312032 3 3 3 1 0 2 0 0 1 0 0.22 0.84 -4711 KLHL38 393708 5 5 5 4 3 2 0 0 0 0 0.22 0.84 -4712 HIST1H2BB histone cluster 1, H2bb 86240 2 2 2 0 1 0 1 0 0 0 0.22 0.84 -4713 STX5 syntaxin 5 217048 3 3 3 0 3 0 0 0 0 0 0.22 0.84 -4714 C7orf49 chromosome 7 open reading frame 49 92288 2 2 2 1 1 1 0 0 0 0 0.22 0.84 -4715 IRF9 interferon regulatory factor 9 271936 3 3 3 0 1 1 1 0 0 0 0.22 0.84 -4716 C1orf92 chromosome 1 open reading frame 92 209864 3 3 3 0 0 2 0 0 1 0 0.22 0.84 -4717 RNH1 ribonuclease/angiogenin inhibitor 1 289452 2 2 2 0 0 1 0 0 1 0 0.22 0.84 -4718 SERPINB11 serpin peptidase inhibitor, clade B (ovalbumin), member 11 270368 5 3 5 3 3 1 0 0 1 0 0.22 0.84 -4719 IMPG1 interphotoreceptor matrix proteoglycan 1 551488 7 6 7 1 1 3 3 0 0 0 0.22 0.84 -4720 HHEX hematopoietically expressed homeobox 103768 2 2 2 0 0 1 1 0 0 0 0.22 0.84 -4721 TARS threonyl-tRNA synthetase 503552 6 5 6 0 1 1 2 0 2 0 0.22 0.84 -4722 PVRL1 poliovirus receptor-related 1 (herpesvirus entry mediator C) 417796 6 6 6 3 3 2 1 0 0 0 0.22 0.84 -4723 CEP78 centrosomal protein 78kDa 476044 7 5 6 1 1 4 1 0 1 0 0.22 0.84 -4724 RASSF5 Ras association (RalGDS/AF-6) domain family member 5 231756 3 3 3 1 0 2 1 0 0 0 0.22 0.84 -4725 SOCS5 suppressor of cytokine signaling 5 361760 5 4 4 1 3 1 1 0 0 0 0.22 0.84 -4726 PLD3 phospholipase D family, member 3 319584 5 5 5 1 4 0 0 0 1 0 0.22 0.84 -4727 GXYLT1 263480 2 2 2 2 0 0 1 0 1 0 0.22 0.84 -4728 SSNA1 Sjogren syndrome nuclear autoantigen 1 69048 1 1 1 0 0 0 0 1 0 0 0.22 0.84 -4729 HSPA9 heat shock 70kDa protein 9 (mortalin) 460152 5 5 5 2 2 0 3 0 0 0 0.22 0.84 -4730 B3GNT1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 1 212576 2 2 2 0 1 0 0 0 1 0 0.22 0.84 -4731 ZCCHC17 zinc finger, CCHC domain containing 17 168896 2 2 2 0 0 1 1 0 0 0 0.22 0.84 -4732 METTL3 methyltransferase like 3 400288 4 4 4 0 1 0 3 0 0 0 0.22 0.84 -4733 PARP9 poly (ADP-ribose) polymerase family, member 9 585760 8 6 8 1 3 2 3 0 0 0 0.22 0.84 -4734 KISS1 KiSS-1 metastasis-suppressor 60788 1 1 1 0 0 1 0 0 0 0 0.22 0.84 -4735 FAM105B family with sequence similarity 105, member B 208544 2 2 2 1 0 1 0 0 1 0 0.22 0.84 -4736 MAB21L2 mab-21-like 2 (C. elegans) 242816 4 4 4 0 2 2 0 0 0 0 0.22 0.84 -4737 GPD1L glycerol-3-phosphate dehydrogenase 1-like 234220 3 3 3 1 0 3 0 0 0 0 0.22 0.84 -4738 NDST4 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 4 598304 4 4 4 0 0 2 2 0 0 0 0.22 0.84 -4739 EREG epiregulin 118720 1 1 1 1 0 0 0 0 1 0 0.22 0.84 -4740 SLC22A7 solute carrier family 22 (organic anion transporter), member 7 377752 6 5 6 2 2 4 0 0 0 0 0.22 0.84 -4741 ZNF101 zinc finger protein 101 297248 4 4 4 2 3 1 0 0 0 0 0.22 0.84 -4742 GLT8D2 glycosyltransferase 8 domain containing 2 243264 3 3 3 2 1 1 0 0 1 0 0.22 0.84 -4743 FAIM2 Fas apoptotic inhibitory molecule 2 221192 3 3 3 0 3 0 0 0 0 0 0.22 0.84 -4744 PCDHGC4 protocadherin gamma subfamily C, 4 636832 11 9 11 3 6 5 0 0 0 0 0.22 0.84 -4745 HTR3E 5-hydroxytryptamine (serotonin) receptor 3, family member E 324352 5 4 5 3 1 3 1 0 0 0 0.22 0.84 -4746 C10orf113 chromosome 10 open reading frame 113 104384 1 1 1 0 0 1 0 0 0 0 0.22 0.84 -4747 PTH1R 381504 3 3 3 0 0 2 0 0 1 0 0.22 0.84 -4748 KCND1 potassium voltage-gated channel, Shal-related subfamily, member 1 405504 7 7 7 0 3 3 1 0 0 0 0.22 0.84 -4749 C21orf91 chromosome 21 open reading frame 91 203840 2 2 2 0 1 0 0 0 1 0 0.22 0.84 -4750 CLCA1 chloride channel, calcium activated, family member 1 627424 6 6 6 3 1 2 2 0 1 0 0.22 0.84 -4751 SEC14L5 SEC14-like 5 (S. cerevisiae) 424912 6 6 6 1 4 1 1 0 0 0 0.22 0.84 -4752 CSTA cystatin A (stefin A) 69216 1 1 1 1 0 0 1 0 0 0 0.22 0.84 -4753 FAM92B family with sequence similarity 92, member B 212128 4 4 4 1 1 2 1 0 0 0 0.22 0.84 -4754 GLYR1 383096 4 4 4 0 2 0 0 1 1 0 0.22 0.84 -4755 SULF1 sulfatase 1 603008 8 6 8 2 3 2 2 0 1 0 0.22 0.84 -4756 S100A14 S100 calcium binding protein A14 73248 1 1 1 0 0 0 1 0 0 0 0.22 0.84 -4757 TSEN2 tRNA splicing endonuclease 2 homolog (S. cerevisiae) 325248 3 3 3 2 1 0 1 0 1 0 0.22 0.84 -4758 RPH3A rabphilin 3A homolog (mouse) 477644 6 6 6 2 1 4 1 0 0 0 0.22 0.84 -4759 LAS1L LAS1-like (S. cerevisiae) 454840 4 4 4 0 1 2 0 0 1 0 0.22 0.84 -4760 CD53 CD53 molecule 154112 2 2 2 4 0 1 0 0 1 0 0.22 0.84 -4761 IRAK4 interleukin-1 receptor-associated kinase 4 319648 4 3 4 1 0 3 1 0 0 0 0.22 0.84 -4762 WIPF3 WAS/WASL interacting protein family, member 3 209928 3 3 3 1 1 1 0 0 1 0 0.22 0.84 -4763 FAM107A family with sequence similarity 107, member A 100128 2 2 2 0 2 0 0 0 0 0 0.22 0.84 -4764 HPS6 Hermansky-Pudlak syndrome 6 374108 4 4 4 0 1 2 0 0 1 0 0.22 0.84 -4765 DOCK3 dedicator of cytokinesis 3 1358124 18 12 17 6 9 4 3 0 2 0 0.22 0.84 -4766 MSRB2 methionine sulfoxide reductase B2 100128 2 2 2 0 0 2 0 0 0 0 0.22 0.84 -4767 OR10H4 olfactory receptor, family 10, subfamily H, member 4 213920 3 3 3 0 0 2 1 0 0 0 0.22 0.84 -4768 PLN phospholamban 36512 1 1 1 0 0 1 0 0 0 0 0.22 0.84 -4769 DNAH9 dynein, axonemal, heavy chain 9 2982784 34 18 33 14 9 13 6 0 3 3 0.22 0.84 -4770 CACNA1F calcium channel, voltage-dependent, L type, alpha 1F subunit 1233232 14 12 14 3 5 4 4 0 1 0 0.22 0.84 -4771 SPSB4 splA/ryanodine receptor domain and SOCS box containing 4 81200 1 1 1 0 0 0 0 0 1 0 0.22 0.84 -4772 VWC2L 152544 2 2 2 1 1 1 0 0 0 0 0.22 0.84 -4773 RPL28 ribosomal protein L28 100800 2 2 2 0 1 1 0 0 0 0 0.22 0.84 -4774 DEPDC6 DEP domain containing 6 283584 3 3 3 1 0 1 1 0 1 0 0.22 0.84 -4775 C1QTNF1 C1q and tumor necrosis factor related protein 1 192192 4 4 4 0 1 3 0 0 0 0 0.22 0.84 -4776 CASP5 caspase 5, apoptosis-related cysteine peptidase 290976 4 4 4 1 2 0 2 0 0 0 0.22 0.84 -4777 NFXL1 nuclear transcription factor, X-box binding-like 1 594000 5 5 5 1 1 2 2 0 0 0 0.22 0.84 -4778 TBK1 TANK-binding kinase 1 508480 6 5 6 0 1 2 2 0 1 0 0.22 0.84 -4779 ENO3 enolase 3 (beta, muscle) 302176 4 4 4 0 1 1 1 0 1 0 0.22 0.84 -4780 TEX14 testis expressed 14 1027600 14 8 14 7 2 8 3 0 1 0 0.22 0.84 -4781 RAB40B RAB40B, member RAS oncogene family 177996 2 2 2 0 1 0 0 0 1 0 0.22 0.84 -4782 C1RL complement component 1, r subcomponent-like 328416 3 3 2 1 1 0 0 0 2 0 0.22 0.84 -4783 TAAR2 trace amine associated receptor 2 238336 2 2 2 1 0 2 0 0 0 0 0.22 0.84 -4784 PDK4 pyruvate dehydrogenase kinase, isozyme 4 285460 3 3 3 0 2 0 0 0 1 0 0.22 0.84 -4785 AFTPH aftiphilin 638400 6 5 6 1 1 2 0 0 3 0 0.22 0.84 -4786 NUP133 nucleoporin 133kDa 791056 7 7 7 3 4 1 0 0 2 0 0.22 0.84 -4787 LIPN lipase, family member N 239608 4 2 4 0 1 2 0 0 1 0 0.22 0.85 -4788 ODF4 outer dense fiber of sperm tails 4 176064 2 2 2 1 0 1 1 0 0 0 0.22 0.85 -4789 GALNTL1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 1 379924 5 5 5 0 2 2 0 0 1 0 0.22 0.85 -4790 CDK3 cyclin-dependent kinase 3 211904 3 3 3 0 2 1 0 0 0 0 0.22 0.85 -4791 C5orf58 71904 1 1 1 0 0 0 1 0 0 0 0.22 0.85 -4792 LILRB2 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 2 402496 4 4 4 0 0 2 1 0 1 0 0.22 0.85 -4793 SPARC secreted protein, acidic, cysteine-rich (osteonectin) 212352 4 4 4 1 2 2 0 0 0 0 0.22 0.85 -4794 OGN osteoglycin 206304 3 3 3 1 1 1 1 0 0 0 0.22 0.85 -4795 OR2M3 olfactory receptor, family 2, subfamily M, member 3 211232 4 3 3 0 3 1 0 0 0 0 0.22 0.85 -4796 SAMSN1 SAM domain, SH3 domain and nuclear localization signals 1 258496 3 3 3 0 2 1 0 0 0 0 0.22 0.85 -4797 PAIP2B poly(A) binding protein interacting protein 2B 82072 1 1 1 0 0 1 0 0 0 0 0.22 0.85 -4798 STX3 syntaxin 3 203840 3 3 3 1 0 1 1 0 1 0 0.22 0.85 -4799 BTRC beta-transducin repeat containing 408128 5 4 5 1 2 0 2 0 1 0 0.22 0.85 -4800 MAT1A methionine adenosyltransferase I, alpha 269824 5 4 5 2 4 1 0 0 0 0 0.23 0.85 -4801 ERCC3 excision repair cross-complementing rodent repair deficiency, complementation group 3 (xeroderma pigmentosum group B complementing) 536928 7 7 7 0 4 3 0 0 0 0 0.23 0.85 -4802 STAT1 signal transducer and activator of transcription 1, 91kDa 526176 6 6 6 1 2 1 3 0 0 0 0.23 0.85 -4803 C14orf39 chromosome 14 open reading frame 39 410368 5 4 5 0 0 3 1 0 1 0 0.23 0.85 -4804 ORAOV1 oral cancer overexpressed 1 97216 1 1 1 1 0 0 1 0 0 0 0.23 0.85 -4805 RANBP3 RAN binding protein 3 396792 3 3 3 0 1 0 1 0 1 0 0.23 0.85 -4806 FN3KRP 201516 2 2 2 0 0 0 1 0 1 0 0.23 0.85 -4807 CYB5R1 cytochrome b5 reductase 1 213696 3 3 3 0 2 0 1 0 0 0 0.23 0.85 -4808 UGT2B15 UDP glucuronosyltransferase 2 family, polypeptide B15 263380 2 2 2 0 0 0 1 0 1 0 0.23 0.85 -4809 PIK3R4 phosphoinositide-3-kinase, regulatory subunit 4 930272 12 8 12 4 4 2 6 0 0 0 0.23 0.85 -4810 TBC1D25 TBC1 domain family, member 25 437500 6 6 6 0 5 1 0 0 0 0 0.23 0.85 -4811 TRPV2 transient receptor potential cation channel, subfamily V, member 2 526488 6 6 6 1 2 3 0 0 1 0 0.23 0.85 -4812 ASZ1 ankyrin repeat, SAM and basic leucine zipper domain containing 1 331520 4 4 4 0 1 2 1 0 0 0 0.23 0.85 -4813 KCTD1 potassium channel tetramerisation domain containing 1 178360 2 2 2 1 0 0 1 0 1 0 0.23 0.85 -4814 WTAP Wilms tumor 1 associated protein 273952 2 2 1 1 0 0 0 0 2 0 0.23 0.85 -4815 ZFX zinc finger protein, X-linked 550144 5 5 5 2 0 3 1 0 1 0 0.23 0.85 -4816 OR5C1 olfactory receptor, family 5, subfamily C, member 1 216608 3 3 3 2 0 3 0 0 0 0 0.23 0.85 -4817 CGB2 chorionic gonadotropin, beta polypeptide 2 67200 1 1 1 0 0 1 0 0 0 0 0.23 0.85 -4818 FNBP1 formin binding protein 1 414192 6 5 6 1 2 3 1 0 0 0 0.23 0.85 -4819 NUF2 NUF2, NDC80 kinetochore complex component, homolog (S. cerevisiae) 324128 9 4 8 0 4 3 1 0 1 0 0.23 0.85 -4820 AGAP1 575148 10 9 10 2 7 2 0 0 1 0 0.23 0.85 -4821 PDS5A PDS5, regulator of cohesion maintenance, homolog A (S. cerevisiae) 891272 9 8 9 0 4 4 0 0 1 0 0.23 0.85 -4822 WIZ widely interspaced zinc finger motifs 423808 4 4 4 0 0 3 0 0 1 0 0.23 0.85 -4823 APEX1 APEX nuclease (multifunctional DNA repair enzyme) 1 217952 4 3 4 0 2 2 0 0 0 0 0.23 0.85 -4824 ZNF643 zinc finger protein 643 295904 6 4 6 0 1 3 2 0 0 0 0.23 0.85 -4825 ZNF320 zinc finger protein 320 345408 4 3 4 1 1 2 0 0 1 0 0.23 0.85 -4826 RXRB retinoid X receptor, beta 190800 3 3 3 0 0 3 0 0 0 0 0.23 0.85 -4827 SEC23IP SEC23 interacting protein 688464 7 7 7 1 2 3 2 0 0 0 0.23 0.85 -4828 STX8 syntaxin 8 163440 4 3 4 0 3 1 0 0 0 0 0.23 0.85 -4829 ETF1 eukaryotic translation termination factor 1 303296 5 4 5 1 0 4 1 0 0 0 0.23 0.85 -4830 PLAUR plasminogen activator, urokinase receptor 238832 4 4 4 2 2 2 0 0 0 0 0.23 0.85 -4831 OR2B2 olfactory receptor, family 2, subfamily B, member 2 241472 5 3 5 0 0 3 2 0 0 0 0.23 0.85 -4832 KCTD21 potassium channel tetramerisation domain containing 21 176288 2 2 2 2 0 1 0 0 1 0 0.23 0.85 -4833 HTRA2 HtrA serine peptidase 2 288568 4 4 4 0 1 1 0 0 2 0 0.23 0.85 -4834 CHRDL2 chordin-like 2 296912 4 4 4 2 1 2 0 0 1 0 0.23 0.85 -4835 SAP30BP SAP30 binding protein 217504 2 2 2 0 0 1 0 0 1 0 0.23 0.85 -4836 RNASE1 ribonuclease, RNase A family, 1 (pancreatic) 106400 1 1 1 0 0 0 1 0 0 0 0.23 0.85 -4837 MRPL47 mitochondrial ribosomal protein L47 174944 3 3 2 0 0 2 1 0 0 0 0.23 0.85 -4838 HDGFL1 hepatoma derived growth factor-like 1 68376 1 1 1 2 0 0 0 0 1 0 0.23 0.85 -4839 KIR2DL1 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 1 239792 2 2 2 2 0 1 0 0 1 0 0.23 0.85 -4840 C5orf38 chromosome 5 open reading frame 38 66192 1 1 1 0 0 0 0 0 1 0 0.23 0.85 -4841 ZNF410 zinc finger protein 410 331744 3 3 3 0 0 3 0 0 0 0 0.23 0.85 -4842 CDH16 cadherin 16, KSP-cadherin 569456 8 7 8 2 3 4 1 0 0 0 0.23 0.85 -4843 AFAP1 actin filament associated protein 1 501184 5 5 5 2 1 1 2 0 1 0 0.23 0.85 -4844 MIA melanoma inhibitory activity 92288 1 1 1 0 0 0 0 0 1 0 0.23 0.85 -4845 AMZ1 archaelysin family metallopeptidase 1 257084 4 4 4 0 2 2 0 0 0 0 0.23 0.85 -4846 FAM48A family with sequence similarity 48, member A 538800 6 5 6 1 0 3 2 0 1 0 0.23 0.85 -4847 ZNF498 zinc finger protein 498 370720 4 4 4 0 3 1 0 0 0 0 0.23 0.85 -4848 TTBK1 tau tubulin kinase 1 698344 8 6 7 2 3 1 3 0 1 0 0.23 0.85 -4849 PLCG2 phospholipase C, gamma 2 (phosphatidylinositol-specific) 879424 13 9 11 1 8 2 1 0 2 0 0.23 0.85 -4850 DCLRE1C DNA cross-link repair 1C (PSO2 homolog, S. cerevisiae) 478240 4 4 4 0 1 1 1 0 1 0 0.23 0.85 -4851 DNAJC5G DnaJ (Hsp40) homolog, subfamily C, member 5 gamma 131264 2 2 2 0 0 2 0 0 0 0 0.23 0.85 -4852 SYCE2 synaptonemal complex central element protein 2 152544 2 2 2 0 1 1 0 0 0 0 0.23 0.85 -4853 CCDC6 coiled-coil domain containing 6 311472 3 3 3 1 0 1 1 0 1 0 0.23 0.85 -4854 MOG myelin oligodendrocyte glycoprotein 137172 3 3 3 3 1 0 2 0 0 0 0.23 0.85 -4855 NFKBIZ nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, zeta 420980 3 3 3 1 0 2 0 0 1 0 0.23 0.85 -4856 TMEM2 transmembrane protein 2 950656 14 9 14 1 2 9 2 0 1 0 0.23 0.85 -4857 C20orf112 chromosome 20 open reading frame 112 291648 3 3 3 2 2 0 0 0 1 0 0.23 0.85 -4858 EFHD1 EF-hand domain family, member D1 115248 2 2 2 0 2 0 0 0 0 0 0.23 0.85 -4859 ZBTB32 zinc finger and BTB domain containing 32 323428 6 5 6 0 1 4 1 0 0 0 0.23 0.85 -4860 RPL31 ribosomal protein L31 100576 1 1 1 0 0 0 1 0 0 0 0.23 0.85 -4861 NINJ2 ninjurin 2 129696 3 2 3 0 1 2 0 0 0 0 0.23 0.85 -4862 FOXP2 forkhead box P2 515152 6 5 6 1 0 3 3 0 0 0 0.23 0.85 -4863 TRAF6 TNF receptor-associated factor 6 356832 4 4 4 1 2 1 0 0 1 0 0.23 0.85 -4864 FAM96A family with sequence similarity 96, member A 112672 1 1 1 0 0 0 0 0 1 0 0.23 0.85 -4865 S100Z S100 calcium binding protein Z 68992 1 1 1 0 0 1 0 0 0 0 0.23 0.85 -4866 MED23 mediator complex subunit 23 952448 9 6 9 3 2 4 1 0 2 0 0.23 0.85 -4867 RAB39B RAB39B, member RAS oncogene family 145600 2 2 2 0 0 1 1 0 0 0 0.23 0.85 -4868 TAS2R38 taste receptor, type 2, member 38 225344 3 3 3 0 0 3 0 0 0 0 0.23 0.85 -4869 OAZ3 ornithine decarboxylase antizyme 3 138432 1 1 1 0 0 0 0 0 1 0 0.23 0.85 -4870 MRPL53 mitochondrial ribosomal protein L53 78624 2 2 2 0 0 1 1 0 0 0 0.23 0.85 -4871 IGSF10 immunoglobulin superfamily, member 10 1768704 21 13 21 4 8 9 3 0 1 0 0.23 0.85 -4872 HSD3B1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 1 254016 3 3 3 2 1 2 0 0 0 0 0.23 0.85 -4873 TIMP3 TIMP metallopeptidase inhibitor 3 (Sorsby fundus dystrophy, pseudoinflammatory) 124264 3 3 3 0 1 2 0 0 0 0 0.23 0.85 -4874 OR2J3 olfactory receptor, family 2, subfamily J, member 3 207368 3 3 3 2 0 2 1 0 0 0 0.23 0.85 -4875 MYRIP myosin VIIA and Rab interacting protein 592256 6 6 6 2 2 2 2 0 0 0 0.23 0.85 -4876 C17orf39 chromosome 17 open reading frame 39 136560 1 1 1 1 0 0 0 0 1 0 0.23 0.85 -4877 MBNL3 muscleblind-like 3 (Drosophila) 259392 2 2 2 0 0 1 0 0 1 0 0.23 0.85 -4878 EZH1 enhancer of zeste homolog 1 (Drosophila) 519680 5 5 5 1 2 1 1 0 1 0 0.23 0.85 -4879 PLA2R1 phospholipase A2 receptor 1, 180kDa 987784 11 8 11 6 4 3 3 0 1 0 0.23 0.85 -4880 ABCA6 ATP-binding cassette, sub-family A (ABC1), member 6 1121344 17 8 17 0 3 6 6 0 2 0 0.23 0.85 -4881 TTC5 tetratricopeptide repeat domain 5 305312 3 3 3 0 1 1 0 1 0 0 0.23 0.85 -4882 ARHGAP21 Rho GTPase activating protein 21 1338848 13 10 13 4 2 8 1 1 1 0 0.23 0.85 -4883 PTMS parathymosin 44128 1 1 1 1 0 1 0 0 0 0 0.23 0.85 -4884 RET ret proto-oncogene 691608 8 8 8 1 5 1 0 1 1 0 0.23 0.85 -4885 FBXO42 F-box protein 42 490560 6 6 6 1 1 5 0 0 0 0 0.23 0.85 -4886 ASNSD1 asparagine synthetase domain containing 1 435456 4 4 4 0 1 1 1 0 1 0 0.23 0.85 -4887 TMEM109 transmembrane protein 109 158032 2 2 2 1 1 1 0 0 0 0 0.23 0.85 -4888 OBFC1 oligonucleotide/oligosaccharide-binding fold containing 1 256032 3 2 3 0 1 0 1 0 1 0 0.23 0.85 -4889 C6orf150 chromosome 6 open reading frame 150 274708 4 4 4 0 1 0 2 0 1 0 0.23 0.85 -4890 SDHAF2 115808 2 2 2 0 1 1 0 0 0 0 0.23 0.85 -4891 TMIGD2 transmembrane and immunoglobulin domain containing 2 168256 3 3 3 0 1 2 0 0 0 0 0.23 0.85 -4892 KCTD18 potassium channel tetramerisation domain containing 18 292320 4 4 4 0 3 0 0 0 1 0 0.23 0.85 -4893 EFHA1 EF-hand domain family, member A1 285180 3 3 3 2 0 0 2 0 1 0 0.23 0.85 -4894 GNG7 guanine nucleotide binding protein (G protein), gamma 7 36600 1 1 1 0 0 0 1 0 0 0 0.23 0.85 -4895 CECR5 cat eye syndrome chromosome region, candidate 5 271516 3 3 3 0 1 1 0 0 1 0 0.23 0.85 -4896 MSR1 macrophage scavenger receptor 1 322560 4 3 4 3 0 1 3 0 0 0 0.23 0.85 -4897 AMBN ameloblastin (enamel matrix protein) 303072 3 3 3 1 0 3 0 0 0 0 0.23 0.85 -4898 HIST1H2BK histone cluster 1, H2bk 86240 2 2 2 2 1 1 0 0 0 0 0.23 0.85 -4899 MOS v-mos Moloney murine sarcoma viral oncogene homolog 226436 3 3 3 2 3 0 0 0 0 0 0.23 0.85 -4900 LRRC39 leucine rich repeat containing 39 232960 2 2 2 0 0 0 1 0 1 0 0.23 0.85 -4901 FAM71A family with sequence similarity 71, member A 400736 6 5 5 1 3 2 1 0 0 0 0.23 0.85 -4902 MIP major intrinsic protein of lens fiber 178640 2 2 2 0 1 1 0 0 0 0 0.23 0.85 -4903 EDDM3A 100352 1 1 1 0 0 0 0 0 1 0 0.23 0.85 -4904 F11 coagulation factor XI (plasma thromboplastin antecedent) 433216 4 4 4 1 0 3 1 0 0 0 0.23 0.85 -4905 ECHDC2 enoyl Coenzyme A hydratase domain containing 2 173628 3 3 3 0 2 1 0 0 0 0 0.23 0.85 -4906 RAD18 RAD18 homolog (S. cerevisiae) 344960 3 3 3 1 1 1 0 0 1 0 0.23 0.85 -4907 SPANXN5 SPANX family, member N5 50848 1 1 1 0 1 0 0 0 0 0 0.23 0.85 -4908 TDRD5 tudor domain containing 5 674240 6 6 6 1 2 2 1 0 1 0 0.23 0.85 -4909 SLC34A2 solute carrier family 34 (sodium phosphate), member 2 475104 5 5 5 4 3 1 0 1 0 0 0.23 0.85 -4910 OR10R2 olfactory receptor, family 10, subfamily R, member 2 226688 2 2 2 0 0 0 1 0 1 0 0.23 0.85 -4911 CEBPZ CCAAT/enhancer binding protein zeta 723296 5 5 5 2 0 3 1 0 1 0 0.23 0.85 -4912 ATF1 activating transcription factor 1 188160 2 2 2 0 0 2 0 0 0 0 0.23 0.85 -4913 C17orf103 52472 1 1 1 0 1 0 0 0 0 0 0.23 0.85 -4914 DENND3 DENN/MADD domain containing 3 809612 10 9 10 2 6 1 2 1 0 0 0.23 0.85 -4915 SLC38A6 solute carrier family 38, member 6 321440 4 4 4 0 0 2 2 0 0 0 0.23 0.85 -4916 KIAA1467 KIAA1467 421120 7 4 7 1 3 3 0 0 1 0 0.23 0.85 -4917 ZNF600 zinc finger protein 600 486752 9 5 9 0 1 6 1 0 1 0 0.23 0.85 -4918 NICN1 nicolin 1 148932 2 2 2 1 1 0 0 1 0 0 0.23 0.85 -4919 RHCE Rh blood group, CcEe antigens 289856 4 4 4 2 0 3 1 0 0 0 0.23 0.85 -4920 P2RX7 purinergic receptor P2X, ligand-gated ion channel, 7 400648 3 3 3 0 0 0 2 0 1 0 0.23 0.85 -4921 ISCU iron-sulfur cluster scaffold homolog (E. coli) 105756 1 1 1 1 1 0 0 0 0 0 0.23 0.85 -4922 IFIT3 interferon-induced protein with tetratricopeptide repeats 3 333760 4 4 4 0 1 1 2 0 0 0 0.23 0.85 -4923 GHITM growth hormone inducible transmembrane protein 239680 2 2 2 1 0 1 0 0 1 0 0.23 0.85 -4924 BAIAP2L1 BAI1-associated protein 2-like 1 344288 4 4 4 4 0 1 3 0 0 0 0.23 0.85 -4925 C19orf10 chromosome 19 open reading frame 10 103012 1 1 1 0 0 0 0 0 1 0 0.23 0.85 -4926 SNAPC5 small nuclear RNA activating complex, polypeptide 5, 19kDa 69216 1 1 1 0 1 0 0 0 0 0 0.23 0.85 -4927 AK5 adenylate kinase 5 388432 5 5 5 2 2 2 1 0 0 0 0.23 0.85 -4928 MEGF10 multiple EGF-like-domains 10 786828 7 7 7 3 1 1 4 0 1 0 0.23 0.85 -4929 PLEKHO1 pleckstrin homology domain containing, family O member 1 273280 4 4 4 2 2 1 1 0 0 0 0.23 0.85 -4930 PCDHGA3 protocadherin gamma subfamily A, 3 643328 8 8 8 1 5 1 1 0 1 0 0.23 0.85 -4931 KCNQ1 potassium voltage-gated channel, KQT-like subfamily, member 1 344208 3 3 3 1 0 0 1 0 2 0 0.23 0.85 -4932 IDO1 268072 4 3 4 0 2 2 0 0 0 0 0.23 0.85 -4933 HIST1H2BM histone cluster 1, H2bm 86156 2 2 2 1 1 0 1 0 0 0 0.23 0.85 -4934 TGM7 transglutaminase 7 488768 7 6 7 1 4 2 1 0 0 0 0.23 0.85 -4935 ANK3 ankyrin 3, node of Ranvier (ankyrin G) 3054716 27 19 27 3 8 13 3 0 3 0 0.23 0.85 -4936 IL18RAP interleukin 18 receptor accessory protein 412160 4 4 4 1 1 1 2 0 0 0 0.23 0.85 -4937 ALDOC aldolase C, fructose-bisphosphate 252448 3 3 3 0 3 0 0 0 0 0 0.23 0.85 -4938 EGFR epidermal growth factor receptor (erythroblastic leukemia viral (v-erb-b) oncogene homolog, avian) 890288 12 10 12 3 8 3 1 0 0 0 0.23 0.85 -4939 PLTP phospholipid transfer protein 339560 7 5 7 1 3 3 1 0 0 0 0.23 0.85 -4940 KTN1 kinectin 1 (kinesin receptor) 953120 7 7 7 3 2 4 1 0 0 0 0.23 0.85 -4941 C16orf93 196296 1 1 1 1 0 0 0 0 1 0 0.23 0.85 -4942 C13orf16 chromosome 13 open reading frame 16 106624 2 2 2 2 1 0 1 0 0 0 0.23 0.85 -4943 CCR5 chemokine (C-C motif) receptor 5 93544 1 1 1 0 0 1 0 0 0 0 0.23 0.85 -4944 PDE4DIP phosphodiesterase 4D interacting protein (myomegalin) 1327452 12 11 12 4 3 6 2 0 1 0 0.23 0.85 -4945 LTBR lymphotoxin beta receptor (TNFR superfamily, member 3) 282520 3 3 3 1 0 1 0 0 2 0 0.23 0.85 -4946 ANO5 633920 8 5 8 4 0 5 3 0 0 0 0.23 0.85 -4947 POU5F2 POU domain class 5, transcription factor 2 221984 2 2 2 1 0 0 1 0 1 0 0.23 0.85 -4948 POM121L12 193592 4 4 4 1 3 1 0 0 0 0 0.23 0.85 -4949 C3orf38 chromosome 3 open reading frame 38 224448 2 2 2 0 1 0 0 0 1 0 0.23 0.85 -4950 ST8SIA5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 255248 6 5 6 4 3 2 1 0 0 0 0.23 0.85 -4951 SULT1B1 sulfotransferase family, cytosolic, 1B, member 1 205856 4 3 4 0 1 2 1 0 0 0 0.23 0.85 -4952 PCDHAC2 protocadherin alpha subfamily C, 2 652652 8 8 7 2 6 1 1 0 0 0 0.23 0.85 -4953 RPS4X ribosomal protein S4, X-linked 183680 2 2 2 0 1 0 1 0 0 0 0.23 0.85 -4954 TATDN1 TatD DNase domain containing 1 211008 3 2 3 0 1 0 1 0 1 0 0.23 0.85 -4955 IFNA21 interferon, alpha 21 128576 1 1 1 0 0 1 0 0 0 0 0.24 0.86 -4956 TTC17 tetratricopeptide repeat domain 17 775320 5 5 5 2 0 2 1 0 2 0 0.24 0.86 -4957 ADRB1 adrenergic, beta-1-, receptor 161812 3 3 3 1 1 1 0 0 1 0 0.24 0.86 -4958 ACVRL1 activin A receptor type II-like 1 343424 4 4 4 0 3 1 0 0 0 0 0.24 0.86 -4959 MATN3 matrilin 3 283584 3 3 3 0 0 1 1 0 1 0 0.24 0.86 -4960 KRTAP26-1 keratin associated protein 26-1 142688 2 2 2 0 1 1 0 0 0 0 0.24 0.86 -4961 G2E3 487648 4 4 4 0 1 0 3 0 0 0 0.24 0.86 -4962 RINT1 RAD50 interactor 1 542472 4 4 4 0 0 1 1 0 2 0 0.24 0.86 -4963 CLCA4 chloride channel, calcium activated, family member 4 629968 6 6 6 1 3 2 0 0 1 0 0.24 0.86 -4964 OR56B1 olfactory receptor, family 56, subfamily B, member 1 219296 2 2 2 0 0 2 0 0 0 0 0.24 0.86 -4965 OR6B2 olfactory receptor, family 6, subfamily B, member 2 210980 3 3 3 0 1 0 2 0 0 0 0.24 0.86 -4966 TSPAN9 tetraspanin 9 147912 2 2 2 1 1 1 0 0 0 0 0.24 0.86 -4967 TUBAL3 tubulin, alpha-like 3 303968 4 4 4 1 2 2 0 0 0 0 0.24 0.86 -4968 TAF4 TAF4 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 135kDa 427784 5 5 5 0 2 0 2 0 1 0 0.24 0.86 -4969 ARL8B ADP-ribosylation factor-like 8B 131516 2 2 2 0 1 0 1 0 0 0 0.24 0.86 -4970 LRRC58 leucine rich repeat containing 58 164668 2 2 2 0 0 0 1 0 1 0 0.24 0.86 -4971 GULP1 GULP, engulfment adaptor PTB domain containing 1 213920 2 2 2 1 0 0 1 0 1 0 0.24 0.86 -4972 UGCG UDP-glucose ceramide glucosyltransferase 259632 2 2 2 2 0 0 1 0 1 0 0.24 0.86 -4973 ZNF669 zinc finger protein 669 297500 2 2 2 0 1 0 0 1 0 0 0.24 0.86 -4974 OXER1 oxoeicosanoid (OXE) receptor 1 256896 3 3 3 0 1 1 0 0 1 0 0.24 0.86 -4975 NUDT15 nudix (nucleoside diphosphate linked moiety X)-type motif 15 100512 2 2 1 0 0 2 0 0 0 0 0.24 0.86 -4976 TNNI1 troponin I type 1 (skeletal, slow) 131712 2 2 2 0 2 0 0 0 0 0 0.24 0.86 -4977 DRD3 dopamine receptor D3 274848 3 3 3 1 0 2 0 0 1 0 0.24 0.86 -4978 CYP27C1 cytochrome P450, family 27, subfamily C, polypeptide 1 256928 4 4 4 0 2 2 0 0 0 0 0.24 0.86 -4979 GPRC6A G protein-coupled receptor, family C, group 6, member A 628320 8 6 8 0 1 3 4 0 0 0 0.24 0.86 -4980 DICER1 dicer 1, ribonuclease type III 1315552 8 7 8 1 1 2 2 0 3 0 0.24 0.86 -4981 PPAPDC1A phosphatidic acid phosphatase type 2 domain containing 1A 175616 2 2 2 1 1 1 0 0 0 0 0.24 0.86 -4982 CHRM3 cholinergic receptor, muscarinic 3 397124 4 4 4 0 1 0 1 0 2 0 0.24 0.86 -4983 C6orf221 chromosome 6 open reading frame 221 148596 2 2 2 1 2 0 0 0 0 0 0.24 0.86 -4984 IDE insulin-degrading enzyme 684992 7 6 7 3 2 3 1 0 1 0 0.24 0.86 -4985 HNRNPF 280448 4 4 4 0 1 1 1 0 1 0 0.24 0.86 -4986 SYT4 synaptotagmin IV 289856 5 3 5 2 0 3 2 0 0 0 0.24 0.86 -4987 ZNF100 zinc finger protein 100 369376 3 3 3 0 0 1 2 0 0 0 0.24 0.86 -4988 BIRC2 baculoviral IAP repeat-containing 2 423136 4 4 4 0 1 2 1 0 0 0 0.24 0.86 -4989 SLC35D1 solute carrier family 35 (UDP-glucuronic acid/UDP-N-acetylgalactosamine dual transporter), member D1 249984 3 3 3 0 0 1 1 0 1 0 0.24 0.86 -4990 DISC1 disrupted in schizophrenia 1 607936 7 6 7 1 1 5 0 0 1 0 0.24 0.86 -4991 SCYL3 SCY1-like 3 (S. cerevisiae) 510944 6 5 6 2 2 2 1 0 1 0 0.24 0.86 -4992 ZNF397 zinc finger protein 397 192192 2 2 2 0 0 1 0 0 1 0 0.24 0.86 -4993 RASL11A RAS-like, family 11, member A 152848 2 2 2 1 0 2 0 0 0 0 0.24 0.86 -4994 C11orf80 chromosome 11 open reading frame 80 291184 2 2 2 0 1 0 0 0 1 0 0.24 0.86 -4995 ERCC6L excision repair cross-complementing rodent repair deficiency, complementation group 6-like 832672 6 6 5 3 3 2 0 0 1 0 0.24 0.86 -4996 MTX3 metaxin 3 199224 3 3 3 0 1 2 0 0 0 0 0.24 0.86 -4997 IFNAR1 interferon (alpha, beta and omega) receptor 1 382792 3 3 3 0 0 1 1 0 1 0 0.24 0.86 -4998 RSAD2 radical S-adenosyl methionine domain containing 2 248640 2 2 2 2 2 0 0 0 0 0 0.24 0.86 -4999 H2AFY2 H2A histone family, member Y2 257824 4 4 4 0 1 0 2 0 1 0 0.24 0.86 -5000 PKNOX2 PBX/knotted 1 homeobox 2 326816 3 3 3 1 0 2 0 0 1 0 0.24 0.86 -5001 OR13C5 olfactory receptor, family 13, subfamily C, member 5 215264 2 2 2 0 0 1 1 0 0 0 0.24 0.86 -5002 DENND5B 826416 6 6 6 2 2 2 1 0 1 0 0.24 0.86 -5003 DNAJC8 DnaJ (Hsp40) homolog, subfamily C, member 8 178752 2 2 2 1 0 0 1 0 1 0 0.24 0.86 -5004 PHYHIP phytanoyl-CoA 2-hydroxylase interacting protein 215864 3 3 3 1 1 1 1 0 0 0 0.24 0.86 -5005 RARRES1 retinoic acid receptor responder (tazarotene induced) 1 143136 2 2 2 0 2 0 0 0 0 0 0.24 0.86 -5006 TTC13 tetratricopeptide repeat domain 13 537600 7 5 7 2 1 1 3 0 0 2 0.24 0.86 -5007 CCDC47 coiled-coil domain containing 47 336000 3 3 3 0 1 1 0 0 1 0 0.24 0.86 -5008 KIAA0753 KIAA0753 652616 10 8 10 1 4 4 0 1 1 0 0.24 0.86 -5009 TAF7L TAF7-like RNA polymerase II, TATA box binding protein (TBP)-associated factor, 50kDa 322784 4 3 4 0 2 0 1 0 1 0 0.24 0.86 -5010 CYP11B2 cytochrome P450, family 11, subfamily B, polypeptide 2 346752 5 5 5 0 2 2 1 0 0 0 0.24 0.86 -5011 ZNF529 zinc finger protein 529 311136 4 4 4 2 0 4 0 0 0 0 0.24 0.86 -5012 WDR75 WD repeat domain 75 565008 5 5 4 1 0 4 1 0 0 0 0.24 0.86 -5013 CD209 CD209 molecule 278432 3 3 3 2 1 2 0 0 0 0 0.24 0.86 -5014 SHCBP1 SHC SH2-domain binding protein 1 454916 4 4 4 1 1 2 1 0 0 0 0.24 0.86 -5015 MAPRE3 microtubule-associated protein, RP/EB family, member 3 194880 2 2 2 1 1 0 0 0 1 0 0.24 0.86 -5016 PON2 paraoxonase 2 229152 2 2 2 0 0 1 1 0 0 0 0.24 0.86 -5017 RHOXF2B Rhox homeobox family, member 2B 171496 3 3 3 1 3 0 0 0 0 0 0.24 0.86 -5018 PDGFD platelet derived growth factor D 255584 3 3 3 1 2 0 1 0 0 0 0.24 0.86 -5019 CHIA chitinase, acidic 330400 5 4 5 1 3 1 1 0 0 0 0.24 0.86 -5020 C11orf65 chromosome 11 open reading frame 65 218176 2 2 2 0 0 1 1 0 0 0 0.24 0.86 -5021 BIK BCL2-interacting killer (apoptosis-inducing) 86580 1 1 1 0 0 1 0 0 0 0 0.24 0.86 -5022 PDE8B phosphodiesterase 8B 542332 7 5 7 3 4 3 0 0 0 0 0.24 0.86 -5023 C16orf13 chromosome 16 open reading frame 13 56756 1 1 1 0 0 1 0 0 0 0 0.24 0.86 -5024 KCNMB4 potassium large conductance calcium-activated channel, subfamily M, beta member 4 137592 3 3 2 0 0 2 1 0 0 0 0.24 0.86 -5025 DDX24 DEAD (Asp-Glu-Ala-Asp) box polypeptide 24 585088 5 4 5 0 2 1 0 0 2 0 0.24 0.86 -5026 FAM8A1 family with sequence similarity 8, member A1 172284 3 3 3 0 0 2 1 0 0 0 0.24 0.86 -5027 AP4M1 adaptor-related protein complex 4, mu 1 subunit 310296 3 3 3 1 1 1 0 0 1 0 0.24 0.86 -5028 ADAM28 ADAM metallopeptidase domain 28 554624 7 5 7 3 1 4 1 0 1 0 0.24 0.86 -5029 RSPH1 radial spoke head 1 homolog (Chlamydomonas) 216384 5 4 5 2 3 2 0 0 0 0 0.24 0.86 -5030 SPATA19 spermatogenesis associated 19 118272 2 2 2 0 1 0 0 0 1 0 0.24 0.87 -5031 RPS11 ribosomal protein S11 111328 1 1 1 0 0 0 0 0 1 0 0.24 0.87 -5032 C2orf44 chromosome 2 open reading frame 44 487872 4 4 4 2 1 0 3 0 0 0 0.24 0.87 -5033 RSPO1 R-spondin homolog (Xenopus laevis) 181468 2 2 2 1 2 0 0 0 0 0 0.24 0.87 -5034 MTMR8 myotubularin related protein 8 486304 7 4 7 1 0 4 2 0 1 0 0.24 0.87 -5035 CSNK2A2 casein kinase 2, alpha prime polypeptide 221536 2 2 2 1 0 2 0 0 0 0 0.24 0.87 -5036 CEACAM18 carcinoembryonic antigen-related cell adhesion molecule 18 270368 4 4 4 0 1 2 1 0 0 0 0.24 0.87 -5037 PQLC2 PQ loop repeat containing 2 201740 3 3 3 0 2 0 0 0 1 0 0.24 0.87 -5038 CCDC90B coiled-coil domain containing 90B 179424 2 2 2 0 1 0 1 0 0 0 0.24 0.87 -5039 ZDHHC24 zinc finger, DHHC-type containing 24 141740 3 3 3 0 2 1 0 0 0 0 0.24 0.87 -5040 CLSTN3 calsyntenin 3 644816 8 7 8 4 3 4 0 0 1 0 0.24 0.87 -5041 MT1B metallothionein 1B 44352 1 1 1 0 0 1 0 0 0 0 0.24 0.87 -5042 VSX2 visual system homeobox 2 145724 2 2 2 0 1 1 0 0 0 0 0.24 0.87 -5043 CDH20 cadherin 20, type 2 520324 9 7 8 3 1 6 1 0 1 0 0.24 0.87 -5044 KRTAP17-1 keratin associated protein 17-1 70380 1 1 1 0 1 0 0 0 0 0 0.24 0.87 -5045 C6orf162 chromosome 6 open reading frame 162 67648 1 1 1 0 0 0 0 0 1 0 0.24 0.87 -5046 LAMB1 laminin, beta 1 1230432 8 8 8 3 4 1 2 0 1 0 0.24 0.87 -5047 SIGLEC10 sialic acid binding Ig-like lectin 10 478912 7 7 7 3 4 3 0 0 0 0 0.24 0.87 -5048 NRBP1 nuclear receptor binding protein 1 375424 3 3 3 0 1 1 1 0 0 0 0.24 0.87 -5049 C4orf35 chromosome 4 open reading frame 35 267008 2 2 2 0 1 0 0 0 1 0 0.24 0.87 -5050 RAB11B RAB11B, member RAS oncogene family 142648 2 2 2 0 1 1 0 0 0 0 0.24 0.87 -5051 CCDC71 coiled-coil domain containing 71 308672 4 4 4 0 3 1 0 0 0 0 0.24 0.87 -5052 C17orf62 chromosome 17 open reading frame 62 125816 2 2 2 0 0 2 0 0 0 0 0.24 0.87 -5053 PCDP1 387296 4 4 4 4 1 2 1 0 0 0 0.24 0.87 -5054 XKR9 XK, Kell blood group complex subunit-related family, member 9 254016 3 3 3 2 0 1 2 0 0 0 0.24 0.87 -5055 NPHP1 nephronophthisis 1 (juvenile) 511168 5 5 5 2 0 1 3 0 1 0 0.24 0.87 -5056 SLC4A1 solute carrier family 4, anion exchanger, member 1 (erythrocyte membrane protein band 3, Diego blood group) 617104 6 6 6 3 2 3 1 0 0 0 0.24 0.87 -5057 ACACA acetyl-Coenzyme A carboxylase alpha 1664992 18 12 17 6 9 3 4 0 2 0 0.24 0.87 -5058 GDF6 growth differentiation factor 6 184632 3 3 3 2 2 1 0 0 0 0 0.24 0.87 -5059 OR4D6 olfactory receptor, family 4, subfamily D, member 6 212576 3 3 3 0 0 3 0 0 0 0 0.24 0.87 -5060 POLB polymerase (DNA directed), beta 238336 3 2 3 0 1 1 0 0 1 0 0.24 0.87 -5061 C10orf58 chromosome 10 open reading frame 58 159040 2 2 2 1 1 0 0 0 1 0 0.24 0.87 -5062 PCDHGB7 protocadherin gamma subfamily B, 7 609320 12 8 12 1 6 4 2 0 0 0 0.24 0.87 -5063 ZMAT5 zinc finger, matrin type 5 108136 1 1 1 0 0 0 0 0 1 0 0.24 0.87 -5064 GSG1 germ cell associated 1 222096 3 3 3 1 1 0 2 0 0 0 0.24 0.87 -5065 KIAA1430 KIAA1430 360128 6 4 6 0 4 0 2 0 0 0 0.24 0.87 -5066 C1orf27 chromosome 1 open reading frame 27 296192 3 3 3 0 1 1 0 0 1 0 0.24 0.87 -5067 PCSK5 proprotein convertase subtilisin/kexin type 5 629748 6 6 6 1 3 1 1 0 1 0 0.24 0.87 -5068 TMX3 315896 3 3 3 2 1 1 0 0 1 0 0.24 0.87 -5069 ZNF780B zinc finger protein 780B 564032 6 6 6 0 2 2 1 0 1 0 0.24 0.87 -5070 TMEM220 96544 1 1 1 0 0 0 1 0 0 0 0.24 0.87 -5071 CLIP1 CAP-GLY domain containing linker protein 1 980984 11 10 11 3 7 1 2 0 1 0 0.24 0.87 -5072 EIF4G3 eukaryotic translation initiation factor 4 gamma, 3 1092672 11 10 11 6 2 4 4 0 1 0 0.24 0.87 -5073 ATIC 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase 407680 4 4 4 0 2 0 1 0 1 0 0.24 0.87 -5074 TNFSF12 tumor necrosis factor (ligand) superfamily, member 12 130688 2 2 2 1 0 2 0 0 0 0 0.24 0.87 -5075 SLC11A2 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 2 393344 4 4 4 0 1 1 1 0 1 0 0.24 0.87 -5076 TIMM10 translocase of inner mitochondrial membrane 10 homolog (yeast) 62944 1 1 1 1 0 1 0 0 0 0 0.24 0.87 -5077 TP53I3 tumor protein p53 inducible protein 3 228256 2 2 2 0 1 1 0 0 0 0 0.24 0.87 -5078 PEA15 phosphoprotein enriched in astrocytes 15 90720 1 1 1 0 1 0 0 0 0 0 0.24 0.87 -5079 NMD3 NMD3 homolog (S. cerevisiae) 352128 5 4 5 2 3 0 2 0 0 0 0.24 0.87 -5080 DRD5 dopamine receptor D5 298004 6 5 6 2 3 1 2 0 0 0 0.24 0.87 -5081 HOMER1 homer homolog 1 (Drosophila) 246624 3 3 3 2 0 1 2 0 0 0 0.24 0.87 -5082 ZNF69 zinc finger protein 69 103936 1 1 1 0 0 1 0 0 0 0 0.24 0.87 -5083 MOSPD1 motile sperm domain containing 1 148288 2 2 2 0 1 0 1 0 0 0 0.24 0.87 -5084 LRRC59 leucine rich repeat containing 59 203048 3 3 3 0 1 1 1 0 0 0 0.24 0.87 -5085 CHD2 chromodomain helicase DNA binding protein 2 1263864 11 10 11 1 4 4 3 0 0 0 0.24 0.87 -5086 MMD2 monocyte to macrophage differentiation-associated 2 172744 3 3 3 0 3 0 0 0 0 0 0.24 0.87 -5087 CHRNB2 cholinergic receptor, nicotinic, beta 2 (neuronal) 281176 5 5 5 3 4 1 0 0 0 0 0.24 0.87 -5088 CCL13 chemokine (C-C motif) ligand 13 69216 1 1 1 0 0 0 1 0 0 0 0.24 0.87 -5089 ABHD2 abhydrolase domain containing 2 294336 4 4 4 1 1 1 1 0 1 0 0.25 0.87 -5090 CD160 CD160 molecule 125888 2 2 2 0 0 1 1 0 0 0 0.25 0.87 -5091 DCD dermcidin 76216 1 1 1 1 0 0 1 0 0 0 0.25 0.87 -5092 TMEM165 transmembrane protein 165 176512 2 2 2 0 1 0 1 0 0 0 0.25 0.87 -5093 SNCA synuclein, alpha (non A4 component of amyloid precursor) 99232 1 1 1 0 0 1 0 0 0 0 0.25 0.87 -5094 SRP54 signal recognition particle 54kDa 352800 3 3 3 1 0 1 1 0 1 0 0.25 0.87 -5095 PMM1 phosphomannomutase 1 165592 3 3 3 1 1 1 1 0 0 0 0.25 0.87 -5096 NOXA1 NADPH oxidase activator 1 176100 1 1 1 1 0 0 0 0 1 0 0.25 0.87 -5097 SPON1 spondin 1, extracellular matrix protein 452124 5 4 5 0 1 1 1 0 0 2 0.25 0.87 -5098 ZNF367 zinc finger protein 367 165536 3 3 3 0 2 1 0 0 0 0 0.25 0.87 -5099 COG7 component of oligomeric golgi complex 7 533344 6 6 6 3 3 1 1 0 1 0 0.25 0.87 -5100 SDR16C5 213696 3 3 3 0 0 3 0 0 0 0 0.25 0.87 -5101 WBP2NL WBP2 N-terminal like 213696 2 2 2 1 1 0 1 0 0 0 0.25 0.87 -5102 NUDT9 nudix (nucleoside diphosphate linked moiety X)-type motif 9 243040 2 2 2 2 0 0 1 0 1 0 0.25 0.87 -5103 OSTC 104384 2 2 2 0 0 0 2 0 0 0 0.25 0.87 -5104 TUBA3E tubulin, alpha 3e 307552 5 5 5 1 4 1 0 0 0 0 0.25 0.87 -5105 MOBKL2A MOB1, Mps One Binder kinase activator-like 2A (yeast) 148512 2 2 2 0 0 0 1 0 1 0 0.25 0.87 -5106 OR14A16 olfactory receptor, family 14, subfamily A, member 16 208544 2 2 2 1 0 2 0 0 0 0 0.25 0.87 -5107 SLC15A2 solute carrier family 15 (H+/peptide transporter), member 2 510272 5 4 5 0 1 2 0 0 2 0 0.25 0.87 -5108 SLC38A1 solute carrier family 38, member 1 341376 5 3 5 0 2 1 0 1 1 0 0.25 0.87 -5109 HAMP hepcidin antimicrobial peptide 59808 1 1 1 0 0 0 0 0 1 0 0.25 0.87 -5110 DYNLRB2 dynein, light chain, roadblock-type 2 68768 1 1 1 0 0 0 0 0 1 0 0.25 0.87 -5111 CSH1 chorionic somatomammotropin hormone 1 (placental lactogen) 136640 2 2 2 2 0 1 0 0 1 0 0.25 0.87 -5112 PTCHD1 patched domain containing 1 588588 5 5 5 4 2 2 1 0 0 0 0.25 0.87 -5113 OR51F1 olfactory receptor, family 51, subfamily F, member 1 211232 3 3 3 0 1 2 0 0 0 0 0.25 0.87 -5114 MCRS1 microspherule protein 1 326128 3 3 3 0 1 1 0 0 1 0 0.25 0.87 -5115 ACTR1B ARP1 actin-related protein 1 homolog B, centractin beta (yeast) 251416 3 3 3 2 2 0 0 0 1 0 0.25 0.87 -5116 MMP10 matrix metallopeptidase 10 (stromelysin 2) 329504 4 3 4 0 1 1 0 0 2 0 0.25 0.87 -5117 KRTAP4-4 keratin associated protein 4-4 113120 1 1 1 0 1 0 0 0 0 0 0.25 0.87 -5118 APBB1 amyloid beta (A4) precursor protein-binding, family B, member 1 (Fe65) 475840 6 6 6 1 2 3 0 0 1 0 0.25 0.87 -5119 HOXD1 homeobox D1 132160 3 3 3 0 1 1 0 0 1 0 0.25 0.87 -5120 CSNK2A1 casein kinase 2, alpha 1 polypeptide 274176 4 4 4 0 1 2 1 0 0 0 0.25 0.87 -5121 RAB15 RAB15, member RAS onocogene family 142912 2 2 2 0 1 0 1 0 0 0 0.25 0.87 -5122 ENTPD6 ectonucleoside triphosphate diphosphohydrolase 6 (putative function) 338464 3 3 3 2 1 0 1 0 1 0 0.25 0.87 -5123 MKLN1 muskelin 1, intracellular mediator containing kelch motifs 510720 6 5 6 1 1 3 2 0 0 0 0.25 0.87 -5124 BTN1A1 butyrophilin, subfamily 1, member A1 359156 5 5 5 1 2 2 1 0 0 0 0.25 0.87 -5125 C1orf115 chromosome 1 open reading frame 115 38276 1 1 1 0 1 0 0 0 0 0 0.25 0.87 -5126 ZNF705A zinc finger protein 705A 204988 2 2 2 0 1 0 1 0 0 0 0.25 0.87 -5127 AMDHD1 amidohydrolase domain containing 1 263424 4 3 4 3 0 2 1 0 1 0 0.25 0.87 -5128 RDH16 retinol dehydrogenase 16 (all-trans) 217280 3 3 3 1 1 1 1 0 0 0 0.25 0.87 -5129 SV2A synaptic vesicle glycoprotein 2A 510048 5 5 5 3 3 0 0 1 1 0 0.25 0.87 -5130 FBXO21 F-box protein 21 396648 4 4 4 2 1 2 0 0 1 0 0.25 0.87 -5131 ATP5O ATP synthase, H+ transporting, mitochondrial F1 complex, O subunit (oligomycin sensitivity conferring protein) 144640 2 2 2 0 0 0 2 0 0 0 0.25 0.87 -5132 SH3GL2 SH3-domain GRB2-like 2 241164 2 2 2 0 0 1 1 0 0 0 0.25 0.87 -5133 RWDD4A RWD domain containing 4A 130788 1 1 1 0 0 0 1 0 0 0 0.25 0.87 -5134 FBXW8 F-box and WD repeat domain containing 8 342632 4 4 4 0 2 1 1 0 0 0 0.25 0.87 -5135 LYSMD1 LysM, putative peptidoglycan-binding, domain containing 1 155904 2 2 2 0 1 1 0 0 0 0 0.25 0.87 -5136 RPUSD4 RNA pseudouridylate synthase domain containing 4 259196 3 3 3 0 1 2 0 0 0 0 0.25 0.87 -5137 STIM1 stromal interaction molecule 1 467120 4 4 4 2 1 1 2 0 0 0 0.25 0.87 -5138 BET1 blocked early in transport 1 homolog (S. cerevisiae) 83552 1 1 1 1 0 1 0 0 0 0 0.25 0.87 -5139 ELAVL1 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 1 (Hu antigen R) 224224 3 3 3 2 1 1 1 0 0 0 0.25 0.87 -5140 PTPMT1 protein tyrosine phosphatase, mitochondrial 1 112252 2 2 2 0 0 1 1 0 0 0 0.25 0.87 -5141 HEATR4 HEAT repeat containing 4 672896 7 6 7 0 2 3 1 0 1 0 0.25 0.87 -5142 CCDC109A coiled-coil domain containing 109A 209216 3 3 3 0 1 0 2 0 0 0 0.25 0.87 -5143 HAUS1 190928 2 2 2 0 0 0 2 0 0 0 0.25 0.87 -5144 ZNF780A zinc finger protein 780A 414176 6 4 6 1 3 1 1 0 1 0 0.25 0.87 -5145 KRTAP5-3 keratin associated protein 5-3 161504 1 1 1 1 0 0 0 0 1 0 0.25 0.87 -5146 SUSD5 sushi domain containing 5 401856 3 3 3 2 2 0 0 0 1 0 0.25 0.87 -5147 HBXIP hepatitis B virus x interacting protein 119168 2 2 2 0 1 0 1 0 0 0 0.25 0.87 -5148 COMMD10 COMM domain containing 10 142688 2 2 2 0 0 2 0 0 0 0 0.25 0.87 -5149 ZNF187 zinc finger protein 187 222656 2 2 2 0 0 1 0 0 1 0 0.25 0.87 -5150 C14orf101 chromosome 14 open reading frame 101 453376 6 5 5 0 3 1 2 0 0 0 0.25 0.87 -5151 RECQL RecQ protein-like (DNA helicase Q1-like) 449344 4 4 4 0 2 0 1 0 1 0 0.25 0.87 -5152 ADAMTSL1 ADAMTS-like 1 1108260 11 10 11 3 3 3 3 0 2 0 0.25 0.87 -5153 EBP emopamil binding protein (sterol isomerase) 147664 2 2 2 1 1 1 0 0 0 0 0.25 0.88 -5154 SLC35A3 solute carrier family 35 (UDP-N-acetylglucosamine (UDP-GlcNAc) transporter), member A3 225344 2 2 2 0 0 0 2 0 0 0 0.25 0.88 -5155 DCK deoxycytidine kinase 181664 2 2 2 1 0 0 1 0 1 0 0.25 0.88 -5156 MMP11 matrix metallopeptidase 11 (stromelysin 3) 275212 4 4 4 2 1 1 2 0 0 0 0.25 0.88 -5157 GABRR2 gamma-aminobutyric acid (GABA) receptor, rho 2 338016 4 4 4 0 1 1 1 0 1 0 0.25 0.88 -5158 ZFP82 361760 5 4 5 2 1 2 2 0 0 0 0.25 0.88 -5159 PIK3C3 phosphoinositide-3-kinase, class 3 619136 7 6 7 2 1 3 3 0 0 0 0.25 0.88 -5160 TSPAN6 tetraspanin 6 150096 2 2 2 4 0 1 1 0 0 0 0.25 0.88 -5161 FGD4 FYVE, RhoGEF and PH domain containing 4 528864 4 4 4 1 0 3 1 0 0 0 0.25 0.88 -5162 BAT5 HLA-B associated transcript 5 298564 3 3 3 0 0 2 0 0 1 0 0.25 0.88 -5163 NXT1 NTF2-like export factor 1 95648 1 1 1 0 0 1 0 0 0 0 0.25 0.88 -5164 RASGEF1B RasGEF domain family, member 1B 330176 4 4 4 0 1 3 0 0 0 0 0.25 0.88 -5165 VAMP1 vesicle-associated membrane protein 1 (synaptobrevin 1) 90944 1 1 1 0 0 0 1 0 0 0 0.25 0.88 -5166 TOMM34 translocase of outer mitochondrial membrane 34 209300 3 3 3 0 1 2 0 0 0 0 0.25 0.88 -5167 PMP2 peripheral myelin protein 2 92960 1 1 1 0 0 1 0 0 0 0 0.25 0.88 -5168 SERPINA3 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 3 288512 3 3 3 3 3 0 0 0 0 0 0.25 0.88 -5169 ATP5A1 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1, cardiac muscle 377664 5 5 5 1 1 2 2 0 0 0 0.25 0.88 -5170 CLEC4A C-type lectin domain family 4, member A 165312 2 2 2 0 0 2 0 0 0 0 0.25 0.88 -5171 SH3BGRL2 SH3 domain binding glutamic acid-rich protein like 2 75096 1 1 1 1 0 1 0 0 0 0 0.25 0.88 -5172 MRPL33 mitochondrial ribosomal protein L33 64512 1 1 1 0 0 0 1 0 0 0 0.25 0.88 -5173 ALOX15B arachidonate 15-lipoxygenase, type B 425220 5 5 5 0 2 2 1 0 0 0 0.25 0.88 -5174 ZMYM3 zinc finger, MYM-type 3 913648 8 8 8 5 3 3 1 0 1 0 0.25 0.88 -5175 LRTOMT 133280 2 2 2 0 0 2 0 0 0 0 0.25 0.88 -5176 DPYSL2 dihydropyrimidinase-like 2 397600 5 5 5 1 5 0 0 0 0 0 0.25 0.88 -5177 C6orf129 chromosome 6 open reading frame 129 69440 1 1 1 1 0 0 1 0 0 0 0.25 0.88 -5178 KIAA1199 KIAA1199 933280 9 8 9 2 2 3 4 0 0 0 0.25 0.88 -5179 LTV1 LTV1 homolog (S. cerevisiae) 329728 2 2 2 0 0 0 1 0 1 0 0.25 0.88 -5180 CHCHD2 coiled-coil-helix-coiled-coil-helix domain containing 2 102620 1 1 1 0 0 0 1 0 0 0 0.25 0.88 -5181 RPE ribulose-5-phosphate-3-epimerase 172256 2 2 2 0 1 1 0 0 0 0 0.25 0.88 -5182 PRPF38B PRP38 pre-mRNA processing factor 38 (yeast) domain containing B 345624 4 4 3 0 2 0 0 1 1 0 0.25 0.88 -5183 PARP12 poly (ADP-ribose) polymerase family, member 12 412636 3 3 3 1 0 0 2 0 1 0 0.25 0.88 -5184 LRIG1 leucine-rich repeats and immunoglobulin-like domains 1 702464 5 5 5 2 1 0 2 0 2 0 0.25 0.88 -5185 SIRPG signal-regulatory protein gamma 263176 4 3 4 1 1 2 1 0 0 0 0.25 0.88 -5186 CCNH cyclin H 225792 2 2 2 1 1 0 0 0 1 0 0.25 0.88 -5187 CKAP4 cytoskeleton-associated protein 4 294812 5 5 5 1 4 1 0 0 0 0 0.25 0.88 -5188 MARCKS myristoylated alanine-rich protein kinase C substrate 70924 1 1 1 0 0 0 0 0 1 0 0.25 0.88 -5189 LY6D lymphocyte antigen 6 complex, locus D 81760 1 1 1 0 1 0 0 0 0 0 0.25 0.88 -5190 POC1B 328384 4 4 4 0 0 1 3 0 0 0 0.25 0.88 -5191 ATP6V0A4 ATPase, H+ transporting, lysosomal V0 subunit a4 583072 7 6 6 1 3 2 0 0 2 0 0.25 0.88 -5192 U2AF2 U2 small nuclear RNA auxiliary factor 2 321300 4 4 4 0 1 2 0 0 1 0 0.25 0.88 -5193 SVOPL SVOP-like 241248 3 3 3 2 3 0 0 0 0 0 0.25 0.88 -5194 SLC2A5 solute carrier family 2 (facilitated glucose/fructose transporter), member 5 309700 4 4 4 2 1 2 1 0 0 0 0.25 0.88 -5195 CRYGN crystallin, gamma N 121664 1 1 1 0 0 0 0 0 1 0 0.25 0.88 -5196 GIGYF1 GRB10 interacting GYF protein 1 622208 5 5 5 0 1 1 0 0 3 0 0.25 0.88 -5197 BNIP2 BCL2/adenovirus E1B 19kDa interacting protein 2 213784 2 2 2 0 1 0 1 0 0 0 0.25 0.88 -5198 RHOC ras homolog gene family, member C 133952 2 2 2 1 1 1 0 0 0 0 0.25 0.88 -5199 TNFRSF21 tumor necrosis factor receptor superfamily, member 21 417144 5 5 5 1 3 1 1 0 0 0 0.25 0.88 -5200 RTDR1 rhabdoid tumor deletion region gene 1 225352 4 3 4 0 2 2 0 0 0 0 0.25 0.88 -5201 CDCA2 cell division cycle associated 2 700672 6 5 6 1 1 4 0 0 1 0 0.25 0.88 -5202 PTBP2 polypyrimidine tract binding protein 2 368416 4 4 4 1 0 3 1 0 0 0 0.25 0.88 -5203 DCAF12L2 290472 5 5 5 5 3 2 0 0 0 0 0.25 0.88 -5204 LRAT lecithin retinol acyltransferase (phosphatidylcholine--retinol O-acyltransferase) 156436 2 2 2 1 2 0 0 0 0 0 0.25 0.88 -5205 ZNF691 zinc finger protein 691 192416 2 2 2 0 1 0 1 0 0 0 0.25 0.88 -5206 GAD2 glutamate decarboxylase 2 (pancreatic islets and brain, 65kDa) 393092 4 4 4 4 3 1 0 0 0 0 0.25 0.88 -5207 C9orf41 chromosome 9 open reading frame 41 230272 3 3 3 0 1 1 1 0 0 0 0.25 0.88 -5208 NDUFA9 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 9, 39kDa 263872 3 3 3 0 0 2 1 0 0 0 0.25 0.88 -5209 TFDP1 transcription factor Dp-1 286048 4 4 4 0 0 0 4 0 0 0 0.25 0.88 -5210 TMEM92 transmembrane protein 92 112000 1 1 1 0 0 0 0 0 1 0 0.25 0.88 -5211 GUCA1C guanylate cyclase activator 1C 144704 1 1 1 0 0 1 0 0 0 0 0.25 0.88 -5212 MURC 247072 6 4 6 0 2 4 0 0 0 0 0.25 0.88 -5213 APH1B anterior pharynx defective 1 homolog B (C. elegans) 178752 3 3 3 0 0 3 0 0 0 0 0.25 0.88 -5214 HOXD9 homeobox D9 123768 3 2 3 0 0 2 0 0 1 0 0.25 0.88 -5215 ACTG2 actin, gamma 2, smooth muscle, enteric 260512 3 3 3 0 1 1 1 0 0 0 0.25 0.88 -5216 GSTA5 glutathione S-transferase A5 155232 2 2 2 0 0 2 0 0 0 0 0.25 0.88 -5217 CELF4 292672 4 4 4 3 2 0 2 0 0 0 0.25 0.88 -5218 IP6K1 301504 4 4 4 1 2 1 1 0 0 0 0.25 0.88 -5219 NR2E3 nuclear receptor subfamily 2, group E, member 3 217552 3 3 3 2 3 0 0 0 0 0 0.25 0.88 -5220 CCKBR cholecystokinin B receptor 293608 5 4 4 4 4 1 0 0 0 0 0.25 0.88 -5221 SERPINB7 serpin peptidase inhibitor, clade B (ovalbumin), member 7 262304 2 2 2 1 0 0 0 0 2 0 0.25 0.88 -5222 TARP 116704 2 2 2 0 0 1 1 0 0 0 0.25 0.88 -5223 MTMR1 myotubularin related protein 1 427392 5 5 5 2 3 2 0 0 0 0 0.25 0.88 -5224 CST5 cystatin D 98784 1 1 1 0 0 1 0 0 0 0 0.25 0.88 -5225 TNIP3 TNFAIP3 interacting protein 3 228928 3 3 3 1 1 0 1 0 1 0 0.25 0.88 -5226 ZNF878 393568 3 3 3 1 1 1 0 0 1 0 0.25 0.88 -5227 TRMT112 88256 1 1 1 0 0 0 0 0 1 0 0.26 0.88 -5228 NAPA N-ethylmaleimide-sensitive factor attachment protein, alpha 208768 3 3 3 2 1 1 0 0 1 0 0.26 0.88 -5229 FAM119A family with sequence similarity 119, member A 149856 3 3 2 0 2 1 0 0 0 0 0.26 0.88 -5230 EVC Ellis van Creveld syndrome 602396 8 7 8 1 3 3 2 0 0 0 0.26 0.88 -5231 BEND6 192640 2 2 2 0 0 0 1 0 1 0 0.26 0.88 -5232 SULF2 sulfatase 2 602960 6 6 6 2 3 1 1 1 0 0 0.26 0.88 -5233 CR2 complement component (3d/Epstein Barr virus) receptor 2 751520 11 9 11 1 3 6 2 0 0 0 0.26 0.88 -5234 TMCC3 transmembrane and coiled-coil domain family 3 306432 5 5 4 2 5 0 0 0 0 0 0.26 0.88 -5235 KRT26 keratin 26 322336 3 3 3 3 1 1 0 0 1 0 0.26 0.88 -5236 TP53BP1 tumor protein p53 binding protein 1 1351112 18 9 18 3 6 6 1 0 1 4 0.26 0.88 -5237 GNLY granulysin 105056 1 1 1 0 0 1 0 0 0 0 0.26 0.88 -5238 ALDH1B1 aldehyde dehydrogenase 1 family, member B1 348992 7 5 7 1 3 2 2 0 0 0 0.26 0.88 -5239 ACOT6 acyl-CoA thioesterase 6 141568 2 2 2 0 0 2 0 0 0 0 0.26 0.88 -5240 POLR2D polymerase (RNA) II (DNA directed) polypeptide D 88312 1 1 1 0 0 0 1 0 0 0 0.26 0.88 -5241 MAB21L1 mab-21-like 1 (C. elegans) 242732 3 3 3 0 0 1 1 0 1 0 0.26 0.88 -5242 SIRT5 sirtuin (silent mating type information regulation 2 homolog) 5 (S. cerevisiae) 226688 4 4 4 1 2 1 1 0 0 0 0.26 0.88 -5243 UTP6 UTP6, small subunit (SSU) processome component, homolog (yeast) 418880 5 4 5 1 1 2 1 0 1 0 0.26 0.88 -5244 EBF2 early B-cell factor 2 393248 4 4 4 0 1 2 0 0 1 0 0.26 0.88 -5245 OR10A4 olfactory receptor, family 10, subfamily A, member 4 213248 2 2 2 0 0 1 1 0 0 0 0.26 0.88 -5246 RTBDN retbindin 156436 3 3 3 2 1 2 0 0 0 0 0.26 0.88 -5247 ACRV1 acrosomal vesicle protein 1 181580 2 2 2 1 1 1 0 0 0 0 0.26 0.88 -5248 ZSCAN18 zinc finger and SCAN domain containing 18 298040 3 3 3 1 1 0 0 0 2 0 0.26 0.88 -5249 IL11 interleukin 11 91416 1 1 1 0 0 0 0 0 1 0 0.26 0.88 -5250 TMEM8C 153664 3 3 3 0 2 1 0 0 0 0 0.26 0.88 -5251 BBX bobby sox homolog (Drosophila) 625408 7 6 7 1 2 1 2 0 2 0 0.26 0.88 -5252 TMCO3 transmembrane and coiled-coil domains 3 462168 6 5 6 2 4 1 1 0 0 0 0.26 0.88 -5253 AP2M1 adaptor-related protein complex 2, mu 1 subunit 302176 4 4 4 0 1 3 0 0 0 0 0.26 0.88 -5254 ACAD9 acyl-Coenzyme A dehydrogenase family, member 9 430752 5 4 5 2 1 2 2 0 0 0 0.26 0.88 -5255 PVRL2 poliovirus receptor-related 2 (herpesvirus entry mediator B) 383084 4 4 4 2 2 1 0 0 1 0 0.26 0.88 -5256 CPXM1 carboxypeptidase X (M14 family), member 1 467192 7 6 7 2 0 4 2 0 1 0 0.26 0.88 -5257 SLC25A36 solute carrier family 25, member 36 209816 2 2 2 0 0 1 1 0 0 0 0.26 0.88 -5258 ZNF434 zinc finger protein 434 329280 6 4 5 1 2 3 1 0 0 0 0.26 0.88 -5259 SFTPB surfactant, pulmonary-associated protein B 231596 3 3 3 3 2 1 0 0 0 0 0.26 0.88 -5260 MLNR motilin receptor 195140 3 3 3 1 1 0 1 0 1 0 0.26 0.88 -5261 FGF1 fibroblast growth factor 1 (acidic) 107520 2 2 2 0 0 1 1 0 0 0 0.26 0.88 -5262 ARHGAP19 Rho GTPase activating protein 19 343392 4 4 4 2 1 0 1 1 1 0 0.26 0.88 -5263 DUOX2 dual oxidase 2 957668 9 9 8 0 4 3 2 0 0 0 0.26 0.88 -5264 XCL2 chemokine (C motif) ligand 2 79968 1 1 1 0 1 0 0 0 0 0 0.26 0.88 -5265 ABHD13 abhydrolase domain containing 13 228032 2 2 2 1 0 0 2 0 0 0 0.26 0.88 -5266 DNASE1L3 deoxyribonuclease I-like 3 212800 2 2 2 1 0 2 0 0 0 0 0.26 0.88 -5267 CDH4 cadherin 4, type 1, R-cadherin (retinal) 597644 11 9 11 6 6 3 2 0 0 0 0.26 0.88 -5268 KIAA0319L KIAA0319-like 721420 6 6 6 1 1 1 4 0 0 0 0.26 0.88 -5269 SNX14 sorting nexin 14 662368 6 4 6 0 1 2 2 0 1 0 0.26 0.88 -5270 RGR retinal G protein coupled receptor 205184 3 3 3 0 3 0 0 0 0 0 0.26 0.88 -5271 MGA MAX gene associated 2051784 17 12 16 1 7 3 2 1 2 2 0.26 0.88 -5272 ZNF84 zinc finger protein 84 500192 6 4 6 0 0 3 1 0 2 0 0.26 0.88 -5273 ZSCAN29 zinc finger and SCAN domain containing 29 577696 8 5 8 1 2 4 1 0 1 0 0.26 0.88 -5274 FAM19A1 family with sequence similarity 19 (chemokine (C-C motif)-like), member A1 77040 1 1 1 0 0 0 1 0 0 0 0.26 0.88 -5275 H2AFY H2A histone family, member Y 279104 4 3 4 0 1 2 0 0 1 0 0.26 0.88 -5276 GPR97 G protein-coupled receptor 97 367960 5 4 5 4 2 1 2 0 0 0 0.26 0.88 -5277 ZDHHC2 zinc finger, DHHC-type containing 2 221776 3 2 3 0 0 1 1 0 1 0 0.26 0.88 -5278 RASSF6 Ras association (RalGDS/AF-6) domain family member 6 249432 2 2 2 2 0 0 2 0 0 0 0.26 0.88 -5279 ALG6 asparagine-linked glycosylation 6 homolog (S. cerevisiae, alpha-1,3-glucosyltransferase) 353920 3 3 3 1 0 1 2 0 0 0 0.26 0.88 -5280 PROM2 prominin 2 565092 5 5 5 4 0 3 2 0 0 0 0.26 0.88 -5281 FBXO9 F-box protein 9 287736 4 4 4 0 2 2 0 0 0 0 0.26 0.88 -5282 KRBA2 KRAB-A domain containing 2 333088 5 4 5 2 1 2 1 0 1 0 0.26 0.88 -5283 PRDM10 PR domain containing 10 805984 10 9 10 4 6 2 0 0 2 0 0.26 0.88 -5284 LCE1F late cornified envelope 1F 80864 1 1 1 1 1 0 0 0 0 0 0.26 0.88 -5285 EIF3D eukaryotic translation initiation factor 3, subunit D 381388 4 4 4 2 2 0 1 0 1 0 0.26 0.88 -5286 YTHDC1 YTH domain containing 1 504448 8 6 7 2 3 4 1 0 0 0 0.26 0.88 -5287 TM6SF1 transmembrane 6 superfamily member 1 258272 3 3 3 0 1 1 1 0 0 0 0.26 0.88 -5288 CFL1 cofilin 1 (non-muscle) 109704 1 1 1 1 0 0 1 0 0 0 0.26 0.88 -5289 METRNL meteorin, glial cell differentiation regulator-like 90540 1 1 1 0 0 0 0 0 1 0 0.26 0.88 -5290 PGCP 324128 5 4 5 0 1 3 1 0 0 0 0.26 0.89 -5291 SPPL2A 347872 3 3 3 1 0 0 3 0 0 0 0.26 0.89 -5292 PPP2R3C protein phosphatase 2 (formerly 2A), regulatory subunit B'', gamma 316736 5 4 5 3 1 3 1 0 0 0 0.26 0.89 -5293 OR3A1 olfactory receptor, family 3, subfamily A, member 1 213024 2 2 2 0 2 0 0 0 0 0 0.26 0.89 -5294 UNC13D unc-13 homolog D (C. elegans) 657376 4 4 4 0 1 1 0 0 2 0 0.26 0.89 -5295 MBP myelin basic protein 232080 3 3 3 0 2 0 0 0 1 0 0.26 0.89 -5296 ZNF468 zinc finger protein 468 354144 3 3 3 2 1 1 0 0 1 0 0.26 0.89 -5297 CNTLN centlein, centrosomal protein 946012 9 6 9 1 1 3 4 0 1 0 0.26 0.89 -5298 ADORA3 adenosine A3 receptor 400960 3 3 3 1 1 1 0 1 0 0 0.26 0.89 -5299 TCEAL4 transcription elongation factor A (SII)-like 4 146048 2 2 2 0 0 2 0 0 0 0 0.26 0.89 -5300 TMPRSS12 transmembrane protease, serine 12 227768 3 3 3 1 0 1 2 0 0 0 0.26 0.89 -5301 SERPINA12 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 12 282464 6 4 6 1 2 3 1 0 0 0 0.26 0.89 -5302 IGSF8 immunoglobulin superfamily, member 8 402584 5 5 5 0 3 1 0 0 1 0 0.26 0.89 -5303 PAXIP1 PAX interacting (with transcription-activation domain) protein 1 619944 7 6 7 1 2 4 0 0 1 0 0.26 0.89 -5304 GMEB1 glucocorticoid modulatory element binding protein 1 393792 3 3 3 1 0 1 1 0 1 0 0.26 0.89 -5305 ZYG11B zyg-11 homolog B (C. elegans) 505568 4 4 4 1 1 2 1 0 0 0 0.26 0.89 -5306 CEP170 centrosomal protein 170kDa 1058468 12 8 12 1 2 6 3 0 1 0 0.26 0.89 -5307 HOXC13 homeobox C13 118664 3 3 3 1 1 1 1 0 0 0 0.26 0.89 -5308 CARD8 caspase recruitment domain family, member 8 300384 4 4 4 0 3 1 0 0 0 0 0.26 0.89 -5309 OR2T10 olfactory receptor, family 2, subfamily T, member 10 211232 2 2 2 0 0 2 0 0 0 0 0.26 0.89 -5310 B3GNT7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 214676 6 5 6 1 4 1 0 1 0 0 0.26 0.89 -5311 KIAA0776 KIAA0776 551264 6 5 6 2 1 2 3 0 0 0 0.26 0.89 -5312 RASAL2 RAS protein activator like 2 869868 7 7 7 1 2 2 3 0 0 0 0.26 0.89 -5313 ANKRD44 ankyrin repeat domain 44 640640 7 6 7 3 3 4 0 0 0 0 0.26 0.89 -5314 ATP9B ATPase, class II, type 9B 778344 8 7 7 2 5 1 1 0 1 0 0.26 0.89 -5315 LMO3 LIM domain only 3 (rhombotin-like 2) 100800 1 1 1 1 1 0 0 0 0 0 0.26 0.89 -5316 RNASE9 ribonuclease, RNase A family, 9 (non-active) 141568 2 2 2 0 0 1 1 0 0 0 0.26 0.89 -5317 SLK STE20-like kinase (yeast) 841904 10 6 10 0 2 3 2 0 1 2 0.26 0.89 -5318 TMEM30A transmembrane protein 30A 249452 4 4 4 0 2 1 1 0 0 0 0.26 0.89 -5319 NMNAT3 nicotinamide nucleotide adenylyltransferase 3 147840 2 2 2 0 0 1 1 0 0 0 0.26 0.89 -5320 PAPOLG poly(A) polymerase gamma 514976 6 5 6 0 2 2 1 0 1 0 0.26 0.89 -5321 RAB27A RAB27A, member RAS oncogene family 153664 2 2 2 0 0 1 1 0 0 0 0.26 0.89 -5322 ZNF295 zinc finger protein 295 717668 6 6 6 1 2 1 2 0 1 0 0.26 0.89 -5323 WWP1 WW domain containing E3 ubiquitin protein ligase 1 640864 8 6 8 1 2 5 1 0 0 0 0.26 0.89 -5324 PSCA prostate stem cell antigen 64056 1 1 1 0 0 0 1 0 0 0 0.26 0.89 -5325 CHIC1 cysteine-rich hydrophobic domain 1 77832 1 1 1 0 0 1 0 0 0 0 0.26 0.89 -5326 FNDC3B fibronectin type III domain containing 3B 832160 9 7 9 3 3 5 1 0 0 0 0.26 0.89 -5327 SPON2 spondin 2, extracellular matrix protein 156712 2 2 2 0 0 1 0 0 1 0 0.26 0.89 -5328 KSR1 kinase suppressor of ras 1 467432 4 4 4 1 2 1 0 0 1 0 0.26 0.89 -5329 LDLRAD1 low density lipoprotein receptor class A domain containing 1 124136 2 2 2 0 1 0 1 0 0 0 0.26 0.89 -5330 CSNK1G3 casein kinase 1, gamma 3 318080 3 3 3 0 0 1 1 0 1 0 0.26 0.89 -5331 PAK2 p21 (CDKN1A)-activated kinase 2 365344 3 3 3 0 0 1 1 0 1 0 0.26 0.89 -5332 DUS4L dihydrouridine synthase 4-like (S. cerevisiae) 219072 2 2 2 0 0 2 0 0 0 0 0.26 0.89 -5333 UPK1B uroplakin 1B 181664 2 2 2 0 1 1 0 0 0 0 0.26 0.89 -5334 TTC39C 365344 4 4 4 0 3 0 0 0 1 0 0.26 0.89 -5335 SHFM1 split hand/foot malformation (ectrodactyly) type 1 50400 1 1 1 0 0 1 0 0 0 0 0.26 0.89 -5336 SSU72 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) 126832 2 2 2 0 1 0 1 0 0 0 0.26 0.89 -5337 DEGS1 degenerative spermatocyte homolog 1, lipid desaturase (Drosophila) 201152 2 2 2 0 1 0 1 0 0 0 0.26 0.89 -5338 FRYL FRY-like 2080064 19 12 19 2 7 6 3 0 3 0 0.26 0.89 -5339 WDR35 WD repeat domain 35 819392 7 7 7 1 2 4 1 0 0 0 0.26 0.89 -5340 DDX55 DEAD (Asp-Glu-Ala-Asp) box polypeptide 55 413988 3 3 3 0 0 0 2 0 1 0 0.26 0.89 -5341 BANF1 barrier to autointegration factor 1 62272 1 1 1 1 0 0 0 0 1 0 0.26 0.89 -5342 AGFG2 284256 4 4 4 0 1 3 0 0 0 0 0.26 0.89 -5343 TMEM25 transmembrane protein 25 241460 2 2 2 0 0 1 0 0 1 0 0.26 0.89 -5344 TARBP1 TAR (HIV-1) RNA binding protein 1 943124 5 5 5 0 2 1 0 0 2 0 0.26 0.89 -5345 OR51L1 olfactory receptor, family 51, subfamily L, member 1 213248 2 2 2 1 0 0 1 0 1 0 0.26 0.89 -5346 SLC3A1 solute carrier family 3 (cystine, dibasic and neutral amino acid transporters, activator of cystine, dibasic and neutral amino acid transport), member 1 469952 4 4 4 1 2 1 0 0 1 0 0.26 0.89 -5347 TPM3 tropomyosin 3 287840 3 3 3 1 1 0 1 0 1 0 0.26 0.89 -5348 DEFB136 54880 1 1 1 0 0 1 0 0 0 0 0.26 0.89 -5349 FZD6 frizzled homolog 6 (Drosophila) 480480 6 5 6 1 0 6 0 0 0 0 0.26 0.89 -5350 POLR2H polymerase (RNA) II (DNA directed) polypeptide H 105952 1 1 1 0 0 1 0 0 0 0 0.26 0.89 -5351 IL28RA interleukin 28 receptor, alpha (interferon, lambda receptor) 322504 3 3 3 1 2 0 0 0 1 0 0.26 0.89 -5352 TXLNB taxilin beta 468384 4 4 4 0 3 0 0 0 1 0 0.26 0.89 -5353 CASD1 CAS1 domain containing 1 532608 6 5 6 1 3 2 1 0 0 0 0.26 0.89 -5354 ZNF268 zinc finger protein 268 267512 2 2 2 0 0 1 0 0 1 0 0.26 0.89 -5355 CST6 cystatin E/M 77896 1 1 1 0 1 0 0 0 0 0 0.26 0.89 -5356 C20orf165 chromosome 20 open reading frame 165 155008 2 2 2 0 0 1 1 0 0 0 0.26 0.89 -5357 ART5 ADP-ribosyltransferase 5 172284 2 2 2 0 1 0 1 0 0 0 0.26 0.89 -5358 IQCJ IQ motif containing J 113368 1 1 1 0 0 1 0 0 0 0 0.26 0.89 -5359 GRIPAP1 GRIP1 associated protein 1 568848 7 7 7 5 3 4 0 0 0 0 0.26 0.89 -5360 ENPP5 ectonucleotide pyrophosphatase/phosphodiesterase 5 (putative function) 323904 3 3 3 0 0 1 1 0 1 0 0.26 0.89 -5361 OR1B1 olfactory receptor, family 1, subfamily B, member 1 215264 3 3 3 0 2 0 1 0 0 0 0.26 0.89 -5362 ST3GAL4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 228000 2 2 2 0 0 0 1 0 1 0 0.26 0.89 -5363 KIF13A kinesin family member 13A 1245880 13 8 13 4 4 4 1 0 4 0 0.26 0.89 -5364 CYP4Z1 cytochrome P450, family 4, subfamily Z, polypeptide 1 337792 3 3 3 1 0 2 0 0 1 0 0.26 0.89 -5365 FAM69B family with sequence similarity 69, member B 225436 2 2 2 0 1 0 0 0 1 0 0.26 0.89 -5366 CHMP2B chromatin modifying protein 2B 149184 2 2 2 1 0 2 0 0 0 0 0.26 0.89 -5367 H3F3B H3 histone, family 3B (H3.3B) 93324 1 1 1 0 0 0 0 0 1 0 0.26 0.89 -5368 CNTN2 contactin 2 (axonal) 719096 7 7 7 5 1 5 0 0 1 0 0.26 0.89 -5369 RAB6A RAB6A, member RAS oncogene family 172256 2 2 2 0 1 0 1 0 0 0 0.26 0.89 -5370 C3orf45 chromosome 3 open reading frame 45 114464 1 1 1 0 0 0 0 0 1 0 0.26 0.89 -5371 NPHS2 nephrosis 2, idiopathic, steroid-resistant (podocin) 231504 3 3 3 0 1 0 1 0 1 0 0.26 0.89 -5372 CNKSR3 CNKSR family member 3 385280 3 3 3 0 1 1 1 0 0 0 0.26 0.89 -5373 PCDHB14 protocadherin beta 14 497756 5 5 5 5 3 0 0 1 1 0 0.27 0.89 -5374 LILRB4 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 4 312480 4 3 4 0 1 3 0 0 0 0 0.27 0.89 -5375 FBL fibrillarin 224448 3 3 3 1 2 0 1 0 0 0 0.27 0.89 -5376 GFOD1 glucose-fructose oxidoreductase domain containing 1 253624 3 3 3 1 0 2 0 1 0 0 0.27 0.89 -5377 GPC4 glypican 4 380016 5 4 5 0 0 2 2 0 1 0 0.27 0.89 -5378 TCHHL1 trichohyalin-like 1 609952 7 5 7 2 0 2 4 0 1 0 0.27 0.89 -5379 NAGK N-acetylglucosamine kinase 237192 2 2 2 1 1 1 0 0 0 0 0.27 0.89 -5380 DSG1 desmoglein 1 719040 8 7 8 3 2 5 1 0 0 0 0.27 0.89 -5381 CTAGE6P 210036 4 3 4 0 0 3 1 0 0 0 0.27 0.89 -5382 KITLG KIT ligand 192192 2 2 2 1 0 2 0 0 0 0 0.27 0.89 -5383 LIPJ lipase, family member J 254688 4 3 4 0 0 2 2 0 0 0 0.27 0.89 -5384 BAD BCL2-antagonist of cell death 90420 1 1 1 0 0 0 0 0 1 0 0.27 0.89 -5385 DDA1 DET1 and DDB1 associated 1 63360 1 1 1 0 0 0 1 0 0 0 0.27 0.89 -5386 EPS8L3 EPS8-like 3 410664 4 4 4 1 1 2 0 0 1 0 0.27 0.89 -5387 PPM1H protein phosphatase 1H (PP2C domain containing) 312404 4 4 4 0 1 1 1 0 1 0 0.27 0.89 -5388 MAOA monoamine oxidase A 352480 3 3 3 0 0 2 1 0 0 0 0.27 0.89 -5389 NDUFB6 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 6, 17kDa 90272 1 1 1 0 0 0 1 0 0 0 0.27 0.89 -5390 CMTM4 CKLF-like MARVEL transmembrane domain containing 4 119920 1 1 1 2 0 0 0 0 1 0 0.27 0.89 -5391 C20orf94 chromosome 20 open reading frame 94 281120 3 3 3 0 0 2 1 0 0 0 0.27 0.89 -5392 POMC proopiomelanocortin (adrenocorticotropin/ beta-lipotropin/ alpha-melanocyte stimulating hormone/ beta-melanocyte stimulating hormone/ beta-endorphin) 126952 2 2 2 1 1 0 0 0 1 0 0.27 0.89 -5393 MITF microphthalmia-associated transcription factor 404348 5 5 5 3 1 3 0 0 1 0 0.27 0.89 -5394 GPHB5 glycoprotein hormone beta 5 63616 1 1 1 0 0 1 0 0 0 0 0.27 0.89 -5395 IL18BP interleukin 18 binding protein 137760 2 2 2 1 0 1 1 0 0 0 0.27 0.89 -5396 WWTR1 WW domain containing transcription regulator 1 254568 2 2 2 0 0 0 1 0 1 0 0.27 0.89 -5397 FAM102A family with sequence similarity 102, member A 236936 3 3 3 0 1 1 1 0 0 0 0.27 0.89 -5398 SLC25A40 solute carrier family 25, member 40 236768 3 3 2 0 2 0 0 0 1 0 0.27 0.89 -5399 RRAS2 related RAS viral (r-ras) oncogene homolog 2 119728 2 2 2 0 1 1 0 0 0 0 0.27 0.89 -5400 ADI1 acireductone dioxygenase 1 96768 1 1 1 1 0 0 1 0 0 0 0.27 0.89 -5401 C8orf4 chromosome 8 open reading frame 4 72800 1 1 1 0 0 1 0 0 0 0 0.27 0.89 -5402 LAMB4 laminin, beta 4 1211632 16 10 16 5 7 5 2 1 1 0 0.27 0.89 -5403 NEIL2 nei like 2 (E. coli) 219828 2 2 2 1 0 2 0 0 0 0 0.27 0.89 -5404 BICC1 bicaudal C homolog 1 (Drosophila) 656320 6 5 6 3 2 1 2 0 1 0 0.27 0.89 -5405 C6orf115 chromosome 6 open reading frame 115 56896 1 1 1 0 1 0 0 0 0 0 0.27 0.89 -5406 EBLN2 174832 3 2 3 0 1 1 1 0 0 0 0.27 0.89 -5407 OLAH oleoyl-ACP hydrolase 199368 1 1 1 0 0 0 0 0 1 0 0.27 0.89 -5408 TMEM65 transmembrane protein 65 112300 2 2 2 0 1 0 1 0 0 0 0.27 0.89 -5409 HOXC12 homeobox C12 116116 3 3 3 0 2 1 0 0 0 0 0.27 0.89 -5410 RPS6KA3 ribosomal protein S6 kinase, 90kDa, polypeptide 3 501312 5 5 5 0 2 2 1 0 0 0 0.27 0.89 -5411 STYXL1 serine/threonine/tyrosine interacting-like 1 218176 2 2 2 0 1 0 0 0 1 0 0.27 0.89 -5412 HSF2BP heat shock transcription factor 2 binding protein 223328 2 2 2 1 2 0 0 0 0 0 0.27 0.89 -5413 ATP9A ATPase, class II, type 9A 713216 8 7 8 2 6 0 0 0 2 0 0.27 0.89 -5414 SPAST spastin 389176 5 5 5 0 1 1 2 0 1 0 0.27 0.89 -5415 NOTCH2 Notch homolog 2 (Drosophila) 1679748 13 12 13 7 1 5 4 0 3 0 0.27 0.89 -5416 TM4SF19 transmembrane 4 L six family member 19 144704 3 2 3 0 0 1 1 0 1 0 0.27 0.89 -5417 C11orf74 chromosome 11 open reading frame 74 153664 1 1 1 0 0 0 0 0 1 0 0.27 0.89 -5418 CGGBP1 CGG triplet repeat binding protein 1 113792 2 2 2 0 1 1 0 0 0 0 0.27 0.89 -5419 SYNGR4 synaptogyrin 4 161504 2 2 1 1 2 0 0 0 0 0 0.27 0.89 -5420 NCAPD3 non-SMC condensin II complex, subunit D3 1032976 6 6 6 2 2 2 0 0 2 0 0.27 0.89 -5421 EXTL3 exostoses (multiple)-like 3 622720 9 9 9 6 8 0 1 0 0 0 0.27 0.89 -5422 OR5D16 olfactory receptor, family 5, subfamily D, member 16 221060 2 2 2 2 0 1 1 0 0 0 0.27 0.89 -5423 IL1F9 interleukin 1 family, member 9 117824 1 1 1 0 1 0 0 0 0 0 0.27 0.89 -5424 APOA1BP apolipoprotein A-I binding protein 183960 2 2 2 0 0 2 0 0 0 0 0.27 0.89 -5425 ZNF143 zinc finger protein 143 442848 4 4 4 1 0 1 3 0 0 0 0.27 0.89 -5426 NEDD8 neural precursor cell expressed, developmentally down-regulated 8 58688 1 1 1 0 1 0 0 0 0 0 0.27 0.89 -5427 KDM4C 733600 7 6 7 1 3 2 1 0 1 0 0.27 0.89 -5428 TMPRSS11F transmembrane protease, serine 11F 303968 3 3 3 3 2 0 0 0 1 0 0.27 0.89 -5429 SEC14L3 SEC14-like 3 (S. cerevisiae) 280224 3 3 3 2 1 1 1 0 0 0 0.27 0.89 -5430 KCNK5 potassium channel, subfamily K, member 5 335936 5 5 4 1 4 0 0 1 0 0 0.27 0.89 -5431 BMX BMX non-receptor tyrosine kinase 470400 4 4 4 0 1 2 1 0 0 0 0.27 0.89 -5432 GYPC glycophorin C (Gerbich blood group) 85120 1 1 1 1 1 0 0 0 0 0 0.27 0.89 -5433 FBXL19 F-box and leucine-rich repeat protein 19 301772 2 2 2 0 0 0 1 0 1 0 0.27 0.89 -5434 SPINK2 serine peptidase inhibitor, Kazal type 2 (acrosin-trypsin inhibitor) 47488 1 1 1 0 1 0 0 0 0 0 0.27 0.89 -5435 C1orf146 chromosome 1 open reading frame 146 126112 1 1 1 0 0 0 0 0 1 0 0.27 0.89 -5436 RBM7 RNA binding motif protein 7 183904 2 2 2 0 1 1 0 0 0 0 0.27 0.89 -5437 PGAM1 phosphoglycerate mutase 1 (brain) 159712 3 3 2 0 3 0 0 0 0 0 0.27 0.89 -5438 RSRC1 arginine/serine-rich coiled-coil 1 233184 3 3 3 0 1 1 1 0 0 0 0.27 0.89 -5439 AGXT2 alanine-glyoxylate aminotransferase 2 345568 5 4 5 4 3 2 0 0 0 0 0.27 0.89 -5440 RPS6KB1 ribosomal protein S6 kinase, 70kDa, polypeptide 1 356552 3 3 3 1 0 2 0 0 1 0 0.27 0.89 -5441 PHKG2 phosphorylase kinase, gamma 2 (testis) 266520 3 3 3 0 3 0 0 0 0 0 0.27 0.89 -5442 MS4A12 membrane-spanning 4-domains, subfamily A, member 12 185472 2 2 2 0 0 1 1 0 0 0 0.27 0.89 -5443 OR7G3 olfactory receptor, family 7, subfamily G, member 3 211232 1 1 1 2 0 0 0 0 1 0 0.27 0.89 -5444 SWAP70 396656 3 3 3 0 0 1 1 0 1 0 0.27 0.89 -5445 C20orf141 chromosome 20 open reading frame 141 110992 1 1 1 0 1 0 0 0 0 0 0.27 0.89 -5446 DEFB113 defensin, beta 113 56480 2 1 2 0 2 0 0 0 0 0 0.27 0.89 -5447 C3orf34 chromosome 3 open reading frame 34 114240 2 2 2 0 1 0 1 0 0 0 0.27 0.89 -5448 MYO6 myosin VI 894656 11 6 10 5 2 2 3 0 4 0 0.27 0.89 -5449 RGS6 regulator of G-protein signaling 6 332192 3 3 3 2 1 2 0 0 0 0 0.27 0.89 -5450 ZNF692 zinc finger protein 692 340564 5 4 5 1 2 3 0 0 0 0 0.27 0.89 -5451 PHKA1 phosphorylase kinase, alpha 1 (muscle) 851200 8 6 7 1 1 3 1 0 3 0 0.27 0.89 -5452 IL1R1 interleukin 1 receptor, type I 392000 4 4 4 0 2 1 1 0 0 0 0.27 0.89 -5453 CACYBP calcyclin binding protein 159264 2 2 2 0 0 1 0 0 1 0 0.27 0.89 -5454 STARD3NL STARD3 N-terminal like 164192 2 2 2 0 0 0 2 0 0 0 0.27 0.89 -5455 GDAP2 ganglioside induced differentiation associated protein 2 348544 4 4 3 0 3 0 0 0 1 0 0.27 0.89 -5456 APOOL apolipoprotein O-like 153880 1 1 1 0 0 0 0 0 1 0 0.27 0.89 -5457 TMEM174 transmembrane protein 174 165760 2 2 2 0 0 1 1 0 0 0 0.27 0.89 -5458 ANKRD45 ankyrin repeat domain 45 183904 2 2 2 2 0 2 0 0 0 0 0.27 0.89 -5459 OGT O-linked N-acetylglucosamine (GlcNAc) transferase (UDP-N-acetylglucosamine:polypeptide-N-acetylglucosaminyl transferase) 722752 5 5 5 0 1 1 1 0 2 0 0.27 0.89 -5460 WIF1 WNT inhibitory factor 1 242768 2 2 2 2 0 1 1 0 0 0 0.27 0.89 -5461 IAH1 isoamyl acetate-hydrolyzing esterase 1 homolog (S. cerevisiae) 165564 2 2 2 0 0 1 0 0 1 0 0.27 0.89 -5462 RBPMS2 RNA binding protein with multiple splicing 2 127008 2 2 2 1 1 1 0 0 0 0 0.27 0.89 -5463 HIST3H3 histone cluster 3, H3 92876 2 2 2 0 1 0 1 0 0 0 0.27 0.89 -5464 ZNF280B zinc finger protein 280B 366464 4 4 3 2 2 0 2 0 0 0 0.27 0.89 -5465 NNMT nicotinamide N-methyltransferase 180768 3 2 3 1 1 1 0 0 1 0 0.27 0.89 -5466 ABCG1 ATP-binding cassette, sub-family G (WHITE), member 1 481944 6 6 6 2 4 1 0 0 1 0 0.27 0.89 -5467 CALCOCO1 calcium binding and coiled-coil domain 1 477568 4 4 4 0 3 1 0 0 0 0 0.27 0.89 -5468 C14orf93 chromosome 14 open reading frame 93 360108 3 3 3 2 1 1 0 0 1 0 0.27 0.89 -5469 MMP27 matrix metallopeptidase 27 354368 4 4 4 0 1 2 1 0 0 0 0.27 0.89 -5470 EIF4G2 eukaryotic translation initiation factor 4 gamma, 2 628992 7 6 7 0 3 2 1 0 1 0 0.27 0.89 -5471 TBX4 T-box 4 331520 4 4 4 1 0 2 1 0 1 0 0.27 0.89 -5472 TTC18 tetratricopeptide repeat domain 18 765392 6 5 6 0 2 0 1 0 3 0 0.27 0.89 -5473 IGJ immunoglobulin J polypeptide, linker protein for immunoglobulin alpha and mu polypeptides 111104 2 2 1 0 2 0 0 0 0 0 0.27 0.89 -5474 DERL2 Der1-like domain family, member 2 167552 2 2 2 1 0 2 0 0 0 0 0.27 0.89 -5475 CYP39A1 cytochrome P450, family 39, subfamily A, polypeptide 1 326592 3 3 3 1 1 0 1 0 1 0 0.27 0.90 -5476 ELMOD1 ELMO/CED-12 domain containing 1 189400 4 3 4 1 2 2 0 0 0 0 0.27 0.90 -5477 ACSL3 acyl-CoA synthetase long-chain family member 3 497056 6 5 6 1 3 1 2 0 0 0 0.27 0.90 -5478 MMAB methylmalonic aciduria (cobalamin deficiency) cblB type 154548 3 3 3 0 2 1 0 0 0 0 0.27 0.90 -5479 SNRPD3 small nuclear ribonucleoprotein D3 polypeptide 18kDa 88032 1 1 1 0 1 0 0 0 0 0 0.27 0.90 -5480 POLR1B polymerase (RNA) I polypeptide B, 128kDa 775908 9 7 9 1 2 4 3 0 0 0 0.27 0.90 -5481 STK40 serine/threonine kinase 40 301952 5 5 5 0 3 2 0 0 0 0 0.27 0.90 -5482 RNF139 ring finger protein 139 443968 6 5 6 0 2 2 2 0 0 0 0.27 0.90 -5483 VILL villin-like 566552 5 5 5 0 1 3 1 0 0 0 0.27 0.90 -5484 NTNG1 netrin G1 383964 4 4 4 2 3 1 0 0 0 0 0.27 0.90 -5485 SUSD1 sushi domain containing 1 493920 6 4 6 2 1 1 2 0 0 2 0.27 0.90 -5486 SEC13 SEC13 homolog (S. cerevisiae) 225120 2 2 2 1 0 0 1 0 1 0 0.27 0.90 -5487 RGS16 regulator of G-protein signaling 16 134368 2 2 2 0 1 1 0 0 0 0 0.27 0.90 -5488 SEC61B Sec61 beta subunit 60608 1 1 1 0 1 0 0 0 0 0 0.27 0.90 -5489 GPR160 G protein-coupled receptor 160 228704 3 2 3 0 0 1 1 0 1 0 0.27 0.90 -5490 FAM194A 458752 5 5 5 4 0 1 3 0 1 0 0.27 0.90 -5491 NXPH3 neurexophilin 3 145776 3 2 3 0 2 1 0 0 0 0 0.27 0.90 -5492 PRAME preferentially expressed antigen in melanoma 343784 4 3 4 0 1 0 3 0 0 0 0.27 0.90 -5493 AP1S2 adaptor-related protein complex 1, sigma 2 subunit 109760 1 1 1 0 0 1 0 0 0 0 0.27 0.90 -5494 LRRC10 leucine rich repeat containing 10 187712 2 2 2 0 1 1 0 0 0 0 0.27 0.90 -5495 KIAA1683 KIAA1683 721616 6 6 6 1 0 4 1 0 1 0 0.27 0.90 -5496 ABI1 abl-interactor 1 350352 3 3 3 1 0 0 2 0 1 0 0.27 0.90 -5497 LHX3 LIM homeobox 3 157500 2 2 2 0 1 0 0 0 1 0 0.27 0.90 -5498 C4orf40 chromosome 4 open reading frame 40 151424 1 1 1 0 0 1 0 0 0 0 0.27 0.90 -5499 CDK2 cyclin-dependent kinase 2 207200 2 2 2 0 0 1 0 1 0 0 0.27 0.90 -5500 HAAO 3-hydroxyanthranilate 3,4-dioxygenase 188904 2 2 2 0 1 1 0 0 0 0 0.27 0.90 -5501 NDN necdin homolog (mouse) 171752 3 3 3 1 0 2 0 1 0 0 0.27 0.90 -5502 SERAC1 serine active site containing 1 454496 5 4 5 1 2 1 2 0 0 0 0.27 0.90 -5503 MUL1 mitochondrial ubiquitin ligase activator of NFKB 1 227512 4 3 4 0 2 1 1 0 0 0 0.27 0.90 -5504 LAIR1 leukocyte-associated immunoglobulin-like receptor 1 202496 3 3 3 2 0 3 0 0 0 0 0.27 0.90 -5505 BCAM basal cell adhesion molecule (Lutheran blood group) 394560 4 4 4 0 3 0 0 0 1 0 0.27 0.90 -5506 IDH1 isocitrate dehydrogenase 1 (NADP+), soluble 286048 3 3 3 1 1 1 1 0 0 0 0.27 0.90 -5507 FOXN2 forkhead box N2 294784 3 3 3 0 0 1 2 0 0 0 0.27 0.90 -5508 C11orf17 chromosome 11 open reading frame 17 138244 2 2 2 0 0 1 1 0 0 0 0.27 0.90 -5509 PIK3IP1 phosphoinositide-3-kinase interacting protein 1 107796 1 1 1 1 0 0 1 0 0 0 0.27 0.90 -5510 HRASLS5 HRAS-like suppressor family, member 5 186648 2 2 2 0 2 0 0 0 0 0 0.27 0.90 -5511 DHX29 DEAH (Asp-Glu-Ala-His) box polypeptide 29 937608 8 6 7 3 0 4 2 0 2 0 0.27 0.90 -5512 MSI2 musashi homolog 2 (Drosophila) 235956 3 3 3 0 1 1 1 0 0 0 0.27 0.90 -5513 IGF2BP1 insulin-like growth factor 2 mRNA binding protein 1 401856 8 5 8 0 5 1 1 0 1 0 0.27 0.90 -5514 RPS27L ribosomal protein S27-like 60704 1 1 1 0 0 1 0 0 0 0 0.27 0.90 -5515 ZNF283 zinc finger protein 283 431368 10 5 8 2 2 7 0 0 1 0 0.27 0.90 -5516 SLC17A7 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 7 383408 5 5 5 3 4 0 1 0 0 0 0.27 0.90 -5517 SMYD3 SET and MYND domain containing 3 260736 4 3 4 1 0 2 0 0 2 0 0.28 0.90 -5518 TAX1BP1 Tax1 (human T-cell leukemia virus type I) binding protein 1 545216 7 4 7 3 3 1 1 0 0 2 0.28 0.90 -5519 MED24 mediator complex subunit 24 682920 7 6 7 3 2 4 0 0 1 0 0.28 0.90 -5520 C1orf124 chromosome 1 open reading frame 124 341600 3 3 3 0 0 1 1 0 1 0 0.28 0.90 -5521 CASQ2 calsequestrin 2 (cardiac muscle) 278656 4 3 4 0 1 2 0 0 1 0 0.28 0.90 -5522 LCE1D late cornified envelope 1D 74564 1 1 1 0 0 1 0 0 0 0 0.28 0.90 -5523 LDOC1 leucine zipper, down-regulated in cancer 1 99680 2 2 2 0 1 0 1 0 0 0 0.28 0.90 -5524 KIAA0802 KIAA0802 1000300 12 10 12 3 6 2 2 0 2 0 0.28 0.90 -5525 EIF5A2 eukaryotic translation initiation factor 5A2 107072 1 1 1 0 0 0 0 0 1 0 0.28 0.90 -5526 ANKRD13A ankyrin repeat domain 13A 393560 6 5 6 2 3 2 1 0 0 0 0.28 0.90 -5527 OR2W3 olfactory receptor, family 2, subfamily W, member 3 212576 2 2 2 0 1 0 0 0 1 0 0.28 0.90 -5528 SPATA18 spermatogenesis associated 18 homolog (rat) 373856 4 4 4 2 2 1 1 0 0 0 0.28 0.90 -5529 GLB1L3 galactosidase, beta 1-like 3 428848 5 5 5 0 1 2 2 0 0 0 0.28 0.90 -5530 LYZL6 lysozyme-like 6 103712 1 1 1 0 1 0 0 0 0 0 0.28 0.90 -5531 SMR3B submaxillary gland androgen regulated protein 3B 55552 1 1 1 1 0 1 0 0 0 0 0.28 0.90 -5532 TRIM49 tripartite motif-containing 49 215852 2 2 2 1 0 1 1 0 0 0 0.28 0.90 -5533 PIP5K1C phosphatidylinositol-4-phosphate 5-kinase, type I, gamma 399812 4 4 4 0 2 0 1 0 1 0 0.28 0.90 -5534 SHPRH SNF2 histone linker PHD RING helicase 1166368 14 8 14 1 6 1 3 0 2 2 0.28 0.90 -5535 FAM199X 266784 2 2 2 1 0 0 1 0 1 0 0.28 0.90 -5536 DCLK3 doublecortin-like kinase 3 439712 4 4 4 4 1 2 0 0 1 0 0.28 0.90 -5537 LUZP4 leucine zipper protein 4 214592 2 2 2 0 1 1 0 0 0 0 0.28 0.90 -5538 ZNF233 zinc finger protein 233 454496 3 3 3 3 1 1 0 0 1 0 0.28 0.90 -5539 GOSR2 golgi SNAP receptor complex member 2 160376 3 3 3 0 2 1 0 0 0 0 0.28 0.90 -5540 SUCNR1 succinate receptor 1 226912 2 2 2 0 0 2 0 0 0 0 0.28 0.90 -5541 SP140 SP140 nuclear body protein 608936 7 6 7 6 2 2 2 0 1 0 0.28 0.90 -5542 NR2C2 nuclear receptor subfamily 2, group C, member 2 426496 4 4 4 1 1 1 2 0 0 0 0.28 0.90 -5543 CCBE1 collagen and calcium binding EGF domains 1 253120 3 3 3 2 1 2 0 0 0 0 0.28 0.90 -5544 FAM35A family with sequence similarity 35, member A 534968 4 4 4 0 0 2 0 0 2 0 0.28 0.90 -5545 PFDN1 prefoldin subunit 1 74272 1 1 1 2 0 0 0 0 1 0 0.28 0.90 -5546 GNAL guanine nucleotide binding protein (G protein), alpha activating activity polypeptide, olfactory type 275856 4 3 3 0 0 2 0 0 2 0 0.28 0.90 -5547 ZFP42 zinc finger protein 42 homolog (mouse) 209888 3 3 3 0 1 1 1 0 0 0 0.28 0.90 -5548 NKAIN2 Na+/K+ transporting ATPase interacting 2 146720 1 1 1 0 0 0 0 0 1 0 0.28 0.90 -5549 RIPK2 receptor-interacting serine-threonine kinase 2 373240 3 3 3 0 1 1 0 0 1 0 0.28 0.90 -5550 SEC24D SEC24 related gene family, member D (S. cerevisiae) 713208 9 6 9 1 2 5 1 0 1 0 0.28 0.90 -5551 LIME1 Lck interacting transmembrane adaptor 1 103600 1 1 1 0 0 0 0 0 1 0 0.28 0.90 -5552 UBA2 ubiquitin-like modifier activating enzyme 2 421596 4 4 4 1 2 1 1 0 0 0 0.28 0.90 -5553 PHC2 polyhomeotic homolog 2 (Drosophila) 577416 7 7 7 1 2 5 0 0 0 0 0.28 0.90 -5554 IMP4 IMP4, U3 small nucleolar ribonucleoprotein, homolog (yeast) 173320 3 3 3 0 3 0 0 0 0 0 0.28 0.90 -5555 UBE4A ubiquitination factor E4A (UFD2 homolog, yeast) 738752 7 7 7 0 2 1 4 0 0 0 0.28 0.90 -5556 CNGA4 cyclic nucleotide gated channel alpha 4 392448 6 5 6 3 1 4 1 0 0 0 0.28 0.90 -5557 C20orf114 chromosome 20 open reading frame 114 339360 4 4 4 0 2 1 1 0 0 0 0.28 0.90 -5558 PPP2R5E protein phosphatase 2, regulatory subunit B', epsilon isoform 326144 2 2 2 0 0 0 1 0 1 0 0.28 0.90 -5559 SLC25A31 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 31 217728 5 4 5 5 4 1 0 0 0 0 0.28 0.90 -5560 TAS2R16 taste receptor, type 2, member 16 197120 3 2 3 0 0 2 1 0 0 0 0.28 0.90 -5561 KAT5 364900 4 4 4 2 1 0 1 0 2 0 0.28 0.90 -5562 VIPR1 vasoactive intestinal peptide receptor 1 262788 4 4 4 2 3 1 0 0 0 0 0.28 0.90 -5563 GCHFR GTP cyclohydrolase I feedback regulator 54104 1 1 1 0 1 0 0 0 0 0 0.28 0.90 -5564 CLP1 CLP1, cleavage and polyadenylation factor I subunit, homolog (S. cerevisiae) 288064 3 3 3 1 1 1 1 0 0 0 0.28 0.90 -5565 SHANK1 SH3 and multiple ankyrin repeat domains 1 889688 11 11 11 2 7 3 0 1 0 0 0.28 0.90 -5566 FMO5 flavin containing monooxygenase 5 366016 3 3 3 1 0 1 1 1 0 0 0.28 0.90 -5567 CX3CR1 chemokine (C-X3-C motif) receptor 1 262528 3 3 3 2 0 1 1 0 1 0 0.28 0.90 -5568 DDX19B DEAD (Asp-Glu-Ala-As) box polypeptide 19B 328720 3 3 3 0 1 0 1 0 1 0 0.28 0.90 -5569 MCHR2 melanin-concentrating hormone receptor 2 233632 3 3 3 2 1 1 1 0 0 0 0.28 0.90 -5570 DCAF7 236768 3 3 3 1 2 0 1 0 0 0 0.28 0.90 -5571 EIF2C3 eukaryotic translation initiation factor 2C, 3 595616 6 6 6 1 2 3 1 0 0 0 0.28 0.90 -5572 CD58 CD58 molecule 158368 2 2 2 0 0 0 2 0 0 0 0.28 0.90 -5573 PRH2 proline-rich protein HaeIII subfamily 2 114912 1 1 1 0 0 0 0 0 1 0 0.28 0.90 -5574 NDUFAF2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 2 117824 1 1 1 0 0 1 0 0 0 0 0.28 0.90 -5575 SCIN scinderin 321320 3 3 3 0 0 2 1 0 0 0 0.28 0.90 -5576 OR51B4 olfactory receptor, family 51, subfamily B, member 4 209888 2 2 2 1 0 2 0 0 0 0 0.28 0.90 -5577 ZBTB1 zinc finger and BTB domain containing 1 475336 3 3 3 1 1 0 1 0 1 0 0.28 0.90 -5578 C1orf227 68320 1 1 1 0 0 0 1 0 0 0 0.28 0.90 -5579 ANKRD10 ankyrin repeat domain 10 254132 3 3 3 0 1 2 0 0 0 0 0.28 0.90 -5580 BRCA2 breast cancer 2, early onset 2314648 23 11 23 4 2 8 10 0 3 0 0.28 0.90 -5581 PNLIPRP3 pancreatic lipase-related protein 3 325248 4 4 4 5 1 2 1 0 0 0 0.28 0.90 -5582 PKMYT1 protein kinase, membrane associated tyrosine/threonine 1 202084 1 1 1 0 0 0 0 0 1 0 0.28 0.90 -5583 ZNF680 zinc finger protein 680 360416 5 4 5 1 0 4 1 0 0 0 0.28 0.90 -5584 KLF3 Kruppel-like factor 3 (basic) 236992 2 2 2 0 1 0 1 0 0 0 0.28 0.90 -5585 CPEB3 cytoplasmic polyadenylation element binding protein 3 348844 4 4 4 1 1 2 0 0 1 0 0.28 0.90 -5586 WDR93 WD repeat domain 93 476000 5 5 5 1 2 1 2 0 0 0 0.28 0.90 -5587 EPT1 267304 3 3 3 0 1 1 1 0 0 0 0.28 0.90 -5588 HSPA8 heat shock 70kDa protein 8 441952 4 4 3 1 0 1 3 0 0 0 0.28 0.90 -5589 VPS13C vacuolar protein sorting 13 homolog C (S. cerevisiae) 2605120 23 14 22 2 5 10 5 1 0 2 0.28 0.90 -5590 FLRT3 fibronectin leucine rich transmembrane protein 3 437696 5 4 5 0 1 2 2 0 0 0 0.28 0.90 -5591 DDX60 DEAD (Asp-Glu-Ala-Asp) box polypeptide 60 1184288 12 8 12 3 2 4 5 0 1 0 0.28 0.90 -5592 H3F3C 92288 2 2 2 1 1 1 0 0 0 0 0.28 0.90 -5593 CCDC147 coiled-coil domain containing 147 602784 8 6 8 2 3 3 1 0 1 0 0.28 0.90 -5594 GPR143 G protein-coupled receptor 143 208640 2 2 2 2 1 1 0 0 0 0 0.28 0.90 -5595 PPOX protoporphyrinogen oxidase 331968 3 3 3 0 1 1 1 0 0 0 0.28 0.90 -5596 NKAIN3 Na+/K+ transporting ATPase interacting 3 125440 2 2 2 0 0 2 0 0 0 0 0.28 0.90 -5597 GIMAP4 GTPase, IMAP family member 4 223552 2 2 2 1 0 1 0 0 1 0 0.28 0.91 -5598 SULT1E1 sulfotransferase family 1E, estrogen-preferring, member 1 204512 2 2 2 0 0 1 0 0 1 0 0.28 0.91 -5599 RAD17 RAD17 homolog (S. pombe) 475552 4 4 4 0 1 2 0 0 1 0 0.28 0.91 -5600 RXRG retinoid X receptor, gamma 333536 4 4 4 2 0 3 0 0 1 0 0.28 0.91 -5601 C1orf66 chromosome 1 open reading frame 66 326284 3 3 3 0 1 0 1 0 1 0 0.28 0.91 -5602 BIRC3 baculoviral IAP repeat-containing 3 413728 7 4 7 0 3 2 1 0 1 0 0.28 0.91 -5603 RAB42 RAB42, member RAS oncogene family 69272 1 1 1 0 1 0 0 0 0 0 0.28 0.91 -5604 WARS2 tryptophanyl tRNA synthetase 2, mitochondrial 254464 3 3 3 2 1 1 1 0 0 0 0.28 0.91 -5605 SNX1 sorting nexin 1 350548 4 4 4 1 0 3 1 0 0 0 0.28 0.91 -5606 NGF nerve growth factor (beta polypeptide) 163520 2 2 2 0 0 1 0 1 0 0 0.28 0.91 -5607 CYP8B1 cytochrome P450, family 8, subfamily B, polypeptide 1 335804 3 3 3 1 3 0 0 0 0 0 0.28 0.91 -5608 PPYR1 pancreatic polypeptide receptor 1 253568 4 3 4 0 2 1 1 0 0 0 0.28 0.91 -5609 LMNB1 lamin B1 323008 4 3 3 0 1 1 1 0 1 0 0.28 0.91 -5610 DTX2 deltex homolog 2 (Drosophila) 386652 5 5 4 1 3 0 2 0 0 0 0.28 0.91 -5611 WFDC1 WAP four-disulfide core domain 1 109760 2 2 2 2 1 1 0 0 0 0 0.28 0.91 -5612 ZNF621 zinc finger protein 621 276144 4 3 4 2 1 1 2 0 0 0 0.28 0.91 -5613 ZNF461 zinc finger protein 461 367136 4 4 4 0 1 2 1 0 0 0 0.28 0.91 -5614 LRRCC1 leucine rich repeat and coiled-coil domain containing 1 710112 7 5 7 0 0 1 4 0 2 0 0.28 0.91 -5615 SLC5A5 solute carrier family 5 (sodium iodide symporter), member 5 400736 4 4 4 2 2 1 1 0 0 0 0.28 0.91 -5616 FKBP9 FK506 binding protein 9, 63 kDa 356412 6 5 6 0 0 3 2 0 1 0 0.28 0.91 -5617 C1orf186 chromosome 1 open reading frame 186 120736 2 2 2 0 2 0 0 0 0 0 0.28 0.91 -5618 WIPF2 WAS/WASL interacting protein family, member 2 297836 2 2 2 2 0 0 0 1 1 0 0.28 0.91 -5619 PPARGC1A peroxisome proliferator-activated receptor gamma, coactivator 1 alpha 548576 5 5 5 2 2 1 1 0 1 0 0.28 0.91 -5620 SEMA4G sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4G 556268 6 6 6 3 3 1 2 0 0 0 0.28 0.91 -5621 MRPL32 mitochondrial ribosomal protein L32 129696 2 2 2 0 2 0 0 0 0 0 0.28 0.91 -5622 GRAMD3 GRAM domain containing 3 305760 3 3 3 1 0 1 2 0 0 0 0.28 0.91 -5623 CXorf61 chromosome X open reading frame 61 78400 1 1 1 2 0 0 1 0 0 0 0.28 0.91 -5624 DBH dopamine beta-hydroxylase (dopamine beta-monooxygenase) 425712 5 5 5 4 1 2 2 0 0 0 0.28 0.91 -5625 EIF3F eukaryotic translation initiation factor 3, subunit F 225316 4 3 4 1 0 1 2 0 1 0 0.28 0.91 -5626 PPEF2 protein phosphatase, EF-hand calcium binding domain 2 521024 6 5 6 1 3 2 0 0 1 0 0.28 0.91 -5627 PPT2 palmitoyl-protein thioesterase 2 171192 2 2 2 0 1 0 0 0 1 0 0.28 0.91 -5628 SLC30A6 solute carrier family 30 (zinc transporter), member 6 322672 3 3 2 1 0 1 0 0 2 0 0.28 0.91 -5629 CDH13 cadherin 13, H-cadherin (heart) 492352 8 6 8 2 6 2 0 0 0 0 0.28 0.91 -5630 C11orf92 80108 1 1 1 0 0 0 1 0 0 0 0.28 0.91 -5631 ARL6IP5 ADP-ribosylation-like factor 6 interacting protein 5 129696 2 2 2 1 0 2 0 0 0 0 0.28 0.91 -5632 C11orf30 chromosome 11 open reading frame 30 906976 9 8 8 1 3 4 0 0 2 0 0.28 0.91 -5633 KIAA1024 KIAA1024 618912 6 5 6 7 3 2 0 1 0 0 0.28 0.91 -5634 KLK5 kallikrein-related peptidase 5 202048 3 3 3 0 1 2 0 0 0 0 0.28 0.91 -5635 FGFR1OP FGFR1 oncogene partner 256704 2 2 2 1 0 0 0 0 2 0 0.28 0.91 -5636 MKNK2 MAP kinase interacting serine/threonine kinase 2 245188 3 3 3 0 0 2 0 0 1 0 0.28 0.91 -5637 RNF212 ring finger protein 212 160524 2 2 2 0 1 1 0 0 0 0 0.28 0.91 -5638 LPAR1 lysophosphatidic acid receptor 1 247968 5 4 5 0 3 1 1 0 0 0 0.28 0.91 -5639 SV2B synaptic vesicle glycoprotein 2B 470400 6 5 6 4 2 4 0 0 0 0 0.28 0.91 -5640 PROSC proline synthetase co-transcribed homolog (bacterial) 169568 2 2 2 0 1 1 0 0 0 0 0.28 0.91 -5641 PPA2 pyrophosphatase (inorganic) 2 222460 3 3 3 1 0 3 0 0 0 0 0.28 0.91 -5642 BACE2 beta-site APP-cleaving enzyme 2 302428 3 3 3 0 0 1 1 0 1 0 0.28 0.91 -5643 SLC9A3R1 solute carrier family 9 (sodium/hydrogen exchanger), member 3 regulator 1 175224 3 3 3 1 1 1 1 0 0 0 0.28 0.91 -5644 PPP1R3F protein phosphatase 1, regulatory (inhibitor) subunit 3F 341484 6 5 6 2 2 3 1 0 0 0 0.28 0.91 -5645 KRTAP8-1 keratin associated protein 8-1 43904 1 1 1 0 0 0 1 0 0 0 0.28 0.91 -5646 HSDL1 hydroxysteroid dehydrogenase like 1 226016 2 2 2 0 1 0 0 0 1 0 0.28 0.91 -5647 CT62 93856 1 1 1 0 0 0 1 0 0 0 0.28 0.91 -5648 PSD pleckstrin and Sec7 domain containing 624608 5 5 5 0 1 1 1 0 2 0 0.28 0.91 -5649 ENTPD4 ectonucleoside triphosphate diphosphohydrolase 4 425376 5 5 5 1 1 2 2 0 0 0 0.28 0.91 -5650 APOBEC3D apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3D (putative) 266336 2 2 2 2 0 0 1 0 1 0 0.28 0.91 -5651 SNX33 sorting nexin 33 388192 4 4 4 0 2 1 1 0 0 0 0.29 0.91 -5652 C7orf50 chromosome 7 open reading frame 50 122108 1 1 1 0 0 0 0 0 1 0 0.29 0.91 -5653 HIST3H2BB histone cluster 3, H2bb 86240 1 1 1 1 0 1 0 0 0 0 0.29 0.91 -5654 NECAB3 N-terminal EF-hand calcium binding protein 3 185484 3 3 3 0 1 1 1 0 0 0 0.29 0.91 -5655 NEDD4L neural precursor cell expressed, developmentally down-regulated 4-like 670856 8 7 8 1 3 2 1 0 2 0 0.29 0.91 -5656 EIF2B5 eukaryotic translation initiation factor 2B, subunit 5 epsilon, 82kDa 465304 5 5 5 1 2 1 2 0 0 0 0.29 0.91 -5657 PNMA2 paraneoplastic antigen MA2 246176 2 2 2 1 1 1 0 0 0 0 0.29 0.91 -5658 PCDHGA5 protocadherin gamma subfamily A, 5 630896 8 8 7 1 7 1 0 0 0 0 0.29 0.91 -5659 CNOT10 CCR4-NOT transcription complex, subunit 10 511840 4 4 4 2 0 1 1 1 1 0 0.29 0.91 -5660 IPO13 importin 13 652836 5 5 5 1 2 2 0 0 1 0 0.29 0.91 -5661 ATP6V1G2 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G2 82656 2 2 2 0 2 0 0 0 0 0 0.29 0.91 -5662 BOLA3 bolA homolog 3 (E. coli) 79072 1 1 1 0 0 0 0 0 1 0 0.29 0.91 -5663 USP53 ubiquitin specific peptidase 53 734664 6 6 6 1 2 1 2 0 1 0 0.29 0.91 -5664 C14orf178 chromosome 14 open reading frame 178 67048 1 1 1 0 0 1 0 0 0 0 0.29 0.91 -5665 NCOA3 nuclear receptor coactivator 3 978656 11 7 11 1 0 8 2 0 1 0 0.29 0.91 -5666 FARP1 FERM, RhoGEF (ARHGEF) and pleckstrin domain protein 1 (chondrocyte-derived) 754460 7 7 7 5 1 3 2 0 1 0 0.29 0.91 -5667 GCKR glucokinase (hexokinase 4) regulator 437696 5 4 5 0 4 0 0 0 1 0 0.29 0.91 -5668 NFKBIE nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, epsilon 194576 2 2 2 0 1 0 0 1 0 0 0.29 0.91 -5669 HDHD3 haloacid dehalogenase-like hydrolase domain containing 3 170156 2 2 2 0 1 0 1 0 0 0 0.29 0.91 -5670 EXOSC5 exosome component 5 161384 2 2 2 0 0 2 0 0 0 0 0.29 0.91 -5671 CD2 CD2 molecule 241024 3 3 3 0 0 2 1 0 0 0 0.29 0.91 -5672 SRD5A2 steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2) 154808 2 2 2 1 0 1 0 0 1 0 0.29 0.91 -5673 TFEB transcription factor EB 319100 3 3 3 0 2 0 0 0 1 0 0.29 0.91 -5674 RAB3IL1 RAB3A interacting protein (rabin3)-like 1 207096 1 1 1 1 0 0 0 0 1 0 0.29 0.91 -5675 ABHD5 abhydrolase domain containing 5 237188 2 2 2 0 1 0 0 0 1 0 0.29 0.91 -5676 NKG7 natural killer cell group 7 sequence 115136 1 1 1 0 0 1 0 0 0 0 0.29 0.91 -5677 MAPK1 mitogen-activated protein kinase 1 222208 2 2 2 0 0 1 1 0 0 0 0.29 0.91 -5678 RSPH6A 477876 5 5 5 0 3 1 1 0 0 0 0.29 0.91 -5679 PPP1R1B protein phosphatase 1, regulatory (inhibitor) subunit 1B (dopamine and cAMP regulated phosphoprotein, DARPP-32) 136752 1 1 1 0 0 0 0 0 1 0 0.29 0.91 -5680 C16orf78 chromosome 16 open reading frame 78 182824 4 3 4 0 2 2 0 0 0 0 0.29 0.91 -5681 RHOH ras homolog gene family, member H 129920 2 2 2 1 2 0 0 0 0 0 0.29 0.91 -5682 PLA2G15 272496 3 3 3 0 0 0 3 0 0 0 0.29 0.91 -5683 CRIM1 cysteine rich transmembrane BMP regulator 1 (chordin-like) 682304 9 7 9 5 5 2 2 0 0 0 0.29 0.91 -5684 SCD5 stearoyl-CoA desaturase 5 262640 3 3 3 1 2 1 0 0 0 0 0.29 0.91 -5685 TMEFF2 transmembrane protein with EGF-like and two follistatin-like domains 2 260876 4 3 4 0 0 2 1 0 1 0 0.29 0.91 -5686 NRP2 neuropilin 2 711424 10 7 10 4 4 3 2 0 1 0 0.29 0.91 -5687 FERMT1 fermitin family homolog 1 (Drosophila) 468160 3 3 3 0 0 1 1 0 1 0 0.29 0.91 -5688 MAGEB2 melanoma antigen family B, 2 210496 2 2 2 1 1 1 0 0 0 0 0.29 0.91 -5689 C3orf23 chromosome 3 open reading frame 23 354592 4 4 4 0 1 1 2 0 0 0 0.29 0.91 -5690 MNT MAX binding protein 326540 3 3 3 2 1 0 0 1 1 0 0.29 0.91 -5691 OR11H4 olfactory receptor, family 11, subfamily H, member 4 219296 3 2 3 0 1 1 0 0 1 0 0.29 0.91 -5692 SCAMP1 secretory carrier membrane protein 1 235512 2 2 2 0 1 0 0 0 1 0 0.29 0.92 -5693 OR13A1 olfactory receptor, family 13, subfamily A, member 1 221984 3 3 3 2 1 0 2 0 0 0 0.29 0.92 -5694 PCTP phosphatidylcholine transfer protein 117376 2 2 2 0 1 1 0 0 0 0 0.29 0.92 -5695 STOML3 stomatin (EPB72)-like 3 202496 3 3 3 0 1 2 0 0 0 0 0.29 0.92 -5696 CTDSPL2 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase like 2 324576 3 3 3 0 1 1 1 0 0 0 0.29 0.92 -5697 ARHGAP25 Rho GTPase activating protein 25 453516 6 4 6 5 2 2 1 0 1 0 0.29 0.92 -5698 BTK Bruton agammaglobulinemia tyrosine kinase 459648 7 5 7 3 3 2 2 0 0 0 0.29 0.92 -5699 TLR8 toll-like receptor 8 702016 6 5 6 2 1 3 2 0 0 0 0.29 0.92 -5700 CSTF1 cleavage stimulation factor, 3' pre-RNA, subunit 1, 50kDa 294784 2 2 2 1 1 0 0 0 1 0 0.29 0.92 -5701 BRP44L brain protein 44-like 77280 1 1 1 0 1 0 0 0 0 0 0.29 0.92 -5702 MYH4 myosin, heavy chain 4, skeletal muscle 1337728 12 11 12 1 9 0 1 0 2 0 0.29 0.92 -5703 TTC32 tetratricopeptide repeat domain 32 104832 1 1 1 0 0 1 0 0 0 0 0.29 0.92 -5704 KLRAQ1 536256 5 5 5 2 3 1 1 0 0 0 0.29 0.92 -5705 TAF1A TATA box binding protein (TBP)-associated factor, RNA polymerase I, A, 48kDa 312032 2 2 2 0 0 1 1 0 0 0 0.29 0.92 -5706 ZC3H14 zinc finger CCCH-type containing 14 594272 6 6 6 1 2 1 2 0 1 0 0.29 0.92 -5707 TMEM192 transmembrane protein 192 185556 1 1 1 0 0 0 0 0 1 0 0.29 0.92 -5708 CFP complement factor properdin 258080 3 3 3 0 2 0 0 0 1 0 0.29 0.92 -5709 OR2T35 olfactory receptor, family 2, subfamily T, member 35 90852 1 1 1 0 0 1 0 0 0 0 0.29 0.92 -5710 OR7A17 olfactory receptor, family 7, subfamily A, member 17 209216 2 2 2 0 0 1 1 0 0 0 0.29 0.92 -5711 TUBD1 tubulin, delta 1 312256 3 3 3 0 2 1 0 0 0 0 0.29 0.92 -5712 C1orf74 chromosome 1 open reading frame 74 182336 2 2 2 1 0 2 0 0 0 0 0.29 0.92 -5713 ETS2 v-ets erythroblastosis virus E26 oncogene homolog 2 (avian) 323904 3 3 3 0 1 1 1 0 0 0 0.29 0.92 -5714 OR5AC2 olfactory receptor, family 5, subfamily AC, member 2 209216 2 2 2 1 2 0 0 0 0 0 0.29 0.92 -5715 PRDM14 PR domain containing 14 363832 4 4 4 0 3 1 0 0 0 0 0.29 0.92 -5716 FAM129C family with sequence similarity 129, member C 408800 5 5 5 3 4 1 0 0 0 0 0.29 0.92 -5717 PANK3 pantothenate kinase 3 252896 3 3 2 0 0 2 1 0 0 0 0.29 0.92 -5718 ZNF681 zinc finger protein 681 437696 3 3 3 2 0 1 1 0 1 0 0.29 0.92 -5719 CFHR2 complement factor H-related 2 172704 2 2 2 0 0 1 1 0 0 0 0.29 0.92 -5720 ACRC acidic repeat containing 457552 4 4 4 0 1 1 1 0 1 0 0.29 0.92 -5721 FAM109A family with sequence similarity 109, member A 59584 1 1 1 0 0 1 0 0 0 0 0.29 0.92 -5722 PNPLA7 patatin-like phospholipase domain containing 7 803424 7 7 7 3 6 0 0 0 1 0 0.29 0.92 -5723 FABP4 fatty acid binding protein 4, adipocyte 92960 1 1 1 0 0 1 0 0 0 0 0.29 0.92 -5724 CDC42EP3 CDC42 effector protein (Rho GTPase binding) 3 172256 2 2 2 1 0 2 0 0 0 0 0.29 0.92 -5725 HSF1 heat shock transcription factor 1 112420 1 1 1 0 0 1 0 0 0 0 0.29 0.92 -5726 PCDHGA10 protocadherin gamma subfamily A, 10 639456 7 7 7 3 5 1 0 0 1 0 0.29 0.92 -5727 ANKRD29 ankyrin repeat domain 29 197652 2 2 2 0 0 2 0 0 0 0 0.29 0.92 -5728 PVRL4 poliovirus receptor-related 4 316092 4 4 4 0 1 1 2 0 0 0 0.29 0.92 -5729 DLAT dihydrolipoamide S-acetyltransferase 434560 3 3 3 0 0 0 0 0 3 0 0.29 0.92 -5730 FOXO4 forkhead box O4 334424 4 4 4 0 0 4 0 0 0 0 0.29 0.92 -5731 ERVFRDE1 252400 3 3 3 1 1 1 0 0 1 0 0.29 0.92 -5732 SUMO3 SMT3 suppressor of mif two 3 homolog 3 (S. cerevisiae) 67788 1 1 1 0 1 0 0 0 0 0 0.29 0.92 -5733 RCCD1 RCC1 domain containing 1 143976 2 2 2 0 0 2 0 0 0 0 0.29 0.92 -5734 EBAG9 estrogen receptor binding site associated, antigen, 9 149184 4 2 3 0 3 1 0 0 0 0 0.29 0.92 -5735 OR4D9 olfactory receptor, family 4, subfamily D, member 9 212576 2 2 2 0 0 2 0 0 0 0 0.29 0.92 -5736 CLU clusterin 345240 4 4 4 3 3 0 1 0 0 0 0.29 0.92 -5737 CKS1B CDC28 protein kinase regulatory subunit 1B 56448 1 1 1 0 0 0 1 0 0 0 0.29 0.92 -5738 PCDHGB5 protocadherin gamma subfamily B, 5 610220 10 8 10 1 8 1 1 0 0 0 0.29 0.92 -5739 PCGF5 polycomb group ring finger 5 180768 2 2 2 0 0 0 1 0 1 0 0.29 0.92 -5740 CPT1A carnitine palmitoyltransferase 1A (liver) 545216 6 6 6 1 1 2 3 0 0 0 0.29 0.92 -5741 RHBDF2 rhomboid 5 homolog 2 (Drosophila) 543808 6 6 6 0 2 2 1 0 1 0 0.29 0.92 -5742 TRAK1 trafficking protein, kinesin binding 1 742336 11 9 10 3 5 2 3 0 1 0 0.29 0.92 -5743 ADNP2 ADNP homeobox 2 744072 7 6 7 2 2 2 2 0 1 0 0.29 0.92 -5744 CBR4 carbonyl reductase 4 164416 2 2 2 0 0 2 0 0 0 0 0.29 0.92 -5745 RAB21 RAB21, member RAS oncogene family 147416 1 1 1 0 0 0 0 0 1 0 0.29 0.92 -5746 C2orf88 65408 1 1 1 0 0 1 0 0 0 0 0.29 0.92 -5747 GLRX glutaredoxin (thioltransferase) 73696 1 1 1 0 0 0 0 0 1 0 0.29 0.92 -5748 F3 coagulation factor III (thromboplastin, tissue factor) 190792 2 2 2 1 0 1 1 0 0 0 0.29 0.92 -5749 UIMC1 ubiquitin interaction motif containing 1 496384 4 4 4 0 1 3 0 0 0 0 0.29 0.92 -5750 SYNJ2BP synaptojanin 2 binding protein 101696 1 1 1 0 0 1 0 0 0 0 0.29 0.92 -5751 TERF2IP telomeric repeat binding factor 2, interacting protein 200892 2 2 2 0 1 0 1 0 0 0 0.29 0.92 -5752 POTEE 514180 6 6 6 0 1 3 2 0 0 0 0.29 0.92 -5753 FSD1 fibronectin type III and SPRY domain containing 1 333480 4 4 4 0 2 0 1 1 0 0 0.29 0.92 -5754 OR4C12 olfactory receptor, family 4, subfamily C, member 12 209216 3 2 3 0 0 1 1 0 1 0 0.29 0.92 -5755 PTP4A3 protein tyrosine phosphatase type IVA, member 3 100584 1 1 1 0 0 0 0 1 0 0 0.29 0.92 -5756 TMEM132A transmembrane protein 132A 570136 7 7 6 0 4 1 1 0 1 0 0.29 0.92 -5757 BMP3 bone morphogenetic protein 3 (osteogenic) 316176 5 5 4 1 2 2 1 0 0 0 0.29 0.92 -5758 TTC15 tetratricopeptide repeat domain 15 431384 6 6 6 1 2 2 1 0 1 0 0.29 0.92 -5759 CLIC6 chloride intracellular channel 6 176472 2 2 2 0 0 2 0 0 0 0 0.29 0.92 -5760 OR2L2 olfactory receptor, family 2, subfamily L, member 2 211232 2 2 2 0 0 0 2 0 0 0 0.29 0.92 -5761 ICAM4 intercellular adhesion molecule 4 (Landsteiner-Wiener blood group) 198128 3 3 3 0 1 1 0 0 1 0 0.29 0.92 -5762 GSK3A glycogen synthase kinase 3 alpha 262448 2 2 2 1 1 0 0 0 1 0 0.29 0.92 -5763 AQP12B aquaporin 12B 109088 1 1 1 0 0 0 0 0 1 0 0.29 0.92 -5764 TUBGCP3 tubulin, gamma complex associated protein 3 629300 7 6 7 0 3 2 0 0 2 0 0.29 0.92 -5765 FGL1 fibrinogen-like 1 216608 3 3 3 1 1 1 1 0 0 0 0.29 0.92 -5766 C4orf7 chromosome 4 open reading frame 7 60480 1 1 1 0 1 0 0 0 0 0 0.29 0.92 -5767 CAV1 caveolin 1, caveolae protein, 22kDa 122976 1 1 1 0 0 0 1 0 0 0 0.29 0.92 -5768 ITLN2 intelectin 2 226240 3 3 3 1 2 1 0 0 0 0 0.29 0.92 -5769 MARVELD2 MARVEL domain containing 2 381024 3 3 3 0 2 1 0 0 0 0 0.29 0.92 -5770 OR4P4 olfactory receptor, family 4, subfamily P, member 4 211232 2 2 2 2 0 0 2 0 0 0 0.29 0.92 -5771 CNKSR1 connector enhancer of kinase suppressor of Ras 1 481796 5 5 5 1 2 2 1 0 0 0 0.29 0.92 -5772 IRF4 interferon regulatory factor 4 295124 3 3 3 0 2 0 0 0 1 0 0.29 0.92 -5773 TBX3 T-box 3 (ulnar mammary syndrome) 344292 4 4 4 2 1 1 1 0 1 0 0.29 0.92 -5774 SLC19A3 solute carrier family 19, member 3 338464 2 2 2 3 0 1 1 0 0 0 0.29 0.92 -5775 FCRLB Fc receptor-like B 278628 4 4 4 1 1 2 0 0 1 0 0.29 0.92 -5776 AGPAT5 1-acylglycerol-3-phosphate O-acyltransferase 5 (lysophosphatidic acid acyltransferase, epsilon) 240900 3 3 3 1 0 1 2 0 0 0 0.29 0.92 -5777 ARSJ arylsulfatase family, member J 404992 5 4 5 0 2 1 1 0 1 0 0.29 0.92 -5778 SLC22A23 solute carrier family 22, member 23 276948 3 3 3 0 1 0 1 0 1 0 0.29 0.92 -5779 LY6G5C lymphocyte antigen 6 complex, locus G5C 65100 1 1 1 0 0 1 0 0 0 0 0.29 0.92 -5780 C7orf10 chromosome 7 open reading frame 10 272612 2 2 2 0 0 0 1 0 1 0 0.29 0.92 -5781 POLR1A polymerase (RNA) I polypeptide A, 194kDa 1186976 11 11 11 2 5 5 0 0 1 0 0.29 0.92 -5782 RASGRP2 RAS guanyl releasing protein 2 (calcium and DAG-regulated) 387384 7 6 7 1 3 2 1 0 1 0 0.29 0.92 -5783 MICB MHC class I polypeptide-related sequence B 236096 3 3 3 0 1 1 1 0 0 0 0.29 0.92 -5784 HTR5A 5-hydroxytryptamine (serotonin) receptor 5A 234388 5 4 4 2 4 1 0 0 0 0 0.29 0.92 -5785 PAX6 paired box 6 303520 5 4 5 2 2 3 0 0 0 0 0.30 0.92 -5786 CREB3L2 cAMP responsive element binding protein 3-like 2 333736 4 4 4 0 1 3 0 0 0 0 0.30 0.92 -5787 TLK1 tousled-like kinase 1 536188 8 5 8 0 2 4 2 0 0 0 0.30 0.92 -5788 ARFIP2 ADP-ribosylation factor interacting protein 2 (arfaptin 2) 236096 2 2 2 1 0 0 0 1 1 0 0.30 0.92 -5789 SSR2 signal sequence receptor, beta (translocon-associated protein beta) 128128 1 1 1 0 0 0 1 0 0 0 0.30 0.92 -5790 DNAJB3 99008 2 2 2 0 1 0 1 0 0 0 0.30 0.92 -5791 DMRTC2 DMRT-like family C2 254464 2 2 2 0 0 1 1 0 0 0 0.30 0.92 -5792 PDCL phosducin-like 205632 2 2 2 0 1 1 0 0 0 0 0.30 0.92 -5793 EXOSC10 exosome component 10 617792 4 4 4 3 2 0 1 0 1 0 0.30 0.92 -5794 MITD1 MIT, microtubule interacting and transport, domain containing 1 174272 2 2 2 0 0 2 0 0 0 0 0.30 0.92 -5795 CD300A CD300a molecule 207872 3 3 3 0 0 3 0 0 0 0 0.30 0.92 -5796 GAS2L2 growth arrest-specific 2 like 2 585984 5 5 5 1 3 1 0 1 0 0 0.30 0.92 -5797 PHF21A PHD finger protein 21A 478688 6 5 6 5 3 2 1 0 0 0 0.30 0.92 -5798 C17orf57 chromosome 17 open reading frame 57 674240 7 6 7 1 2 3 1 0 1 0 0.30 0.92 -5799 PON3 paraoxonase 3 246624 2 2 2 2 0 2 0 0 0 0 0.30 0.92 -5800 ADCY4 adenylate cyclase 4 667156 9 7 9 1 1 4 3 0 1 0 0.30 0.92 -5801 FGF20 fibroblast growth factor 20 95452 2 2 2 0 1 1 0 0 0 0 0.30 0.92 -5802 ALDH18A1 aldehyde dehydrogenase 18 family, member A1 544296 5 5 5 2 3 1 0 0 1 0 0.30 0.92 -5803 SLC22A15 solute carrier family 22, member 15 379008 5 4 4 1 3 2 0 0 0 0 0.30 0.92 -5804 UAP1L1 UDP-N-acteylglucosamine pyrophosphorylase 1-like 1 190956 2 2 2 0 0 0 1 0 1 0 0.30 0.92 -5805 ZNF821 zinc finger protein 821 253792 4 4 4 1 3 1 0 0 0 0 0.30 0.92 -5806 ZNF226 zinc finger protein 226 555968 4 4 4 0 1 2 1 0 0 0 0.30 0.92 -5807 FUNDC2 FUN14 domain containing 2 119104 1 1 1 1 0 0 1 0 0 0 0.30 0.92 -5808 C12orf76 54656 1 1 1 0 0 1 0 0 0 0 0.30 0.92 -5809 CYP1B1 cytochrome P450, family 1, subfamily B, polypeptide 1 272244 3 3 3 0 0 0 0 0 3 0 0.30 0.92 -5810 M6PR mannose-6-phosphate receptor (cation dependent) 192192 2 2 2 0 1 1 0 0 0 0 0.30 0.92 -5811 TMC1 transmembrane channel-like 1 529312 4 4 4 0 0 3 0 0 1 0 0.30 0.92 -5812 ZNF391 zinc finger protein 391 242144 5 3 5 1 2 2 0 0 1 0 0.30 0.92 -5813 LGALS1 lectin, galactoside-binding, soluble, 1 (galectin 1) 76912 1 1 1 0 1 0 0 0 0 0 0.30 0.92 -5814 RTP4 receptor (chemosensory) transporter protein 4 167776 2 2 2 0 0 2 0 0 0 0 0.30 0.92 -5815 HDGFRP3 122752 1 1 1 0 1 0 0 0 0 0 0.30 0.92 -5816 ADAM30 ADAM metallopeptidase domain 30 532448 7 5 6 4 3 4 0 0 0 0 0.30 0.92 -5817 RPGRIP1L RPGRIP1-like 875840 9 7 9 0 5 1 1 0 2 0 0.30 0.92 -5818 GRXCR2 170016 2 2 2 0 0 1 0 0 1 0 0.30 0.92 -5819 CSRP2BP CSRP2 binding protein 535136 6 5 6 1 2 3 1 0 0 0 0.30 0.92 -5820 MAPK3 mitogen-activated protein kinase 3 263228 3 3 3 1 1 0 1 0 1 0 0.30 0.92 -5821 MOV10L1 Mov10l1, Moloney leukemia virus 10-like 1, homolog (mouse) 826524 13 7 13 5 5 4 1 0 3 0 0.30 0.92 -5822 IL10 interleukin 10 124768 2 2 2 4 1 1 0 0 0 0 0.30 0.92 -5823 CENPO centromere protein O 207648 2 2 2 1 0 1 0 0 1 0 0.30 0.92 -5824 PTPRR protein tyrosine phosphatase, receptor type, R 454720 6 3 6 1 1 0 2 0 1 2 0.30 0.92 -5825 CD163L1 CD163 molecule-like 1 994112 10 8 10 8 3 3 2 1 1 0 0.30 0.92 -5826 NAGLU N-acetylglucosaminidase, alpha- (Sanfilippo disease IIIB) 397888 4 4 4 1 1 1 1 0 1 0 0.30 0.92 -5827 NR1D2 nuclear receptor subfamily 1, group D, member 2 392448 6 5 6 0 3 2 1 0 0 0 0.30 0.92 -5828 FAM124B family with sequence similarity 124B 164864 2 2 2 0 2 0 0 0 0 0 0.30 0.92 -5829 OR1F1 olfactory receptor, family 1, subfamily F, member 1 209048 2 2 2 0 1 0 0 0 1 0 0.30 0.92 -5830 DARC Duffy blood group, chemokine receptor 230496 2 2 2 0 0 2 0 0 0 0 0.30 0.92 -5831 FAM162A 104696 1 1 1 0 0 1 0 0 0 0 0.30 0.92 -5832 C2orf63 chromosome 2 open reading frame 63 404320 3 3 3 0 0 2 1 0 0 0 0.30 0.92 -5833 IFNE 141344 2 2 2 0 0 2 0 0 0 0 0.30 0.92 -5834 ATF7IP activating transcription factor 7 interacting protein 865900 7 6 6 4 1 2 2 0 2 0 0.30 0.92 -5835 RLIM 422688 5 4 5 0 3 2 0 0 0 0 0.30 0.92 -5836 ZCCHC8 zinc finger, CCHC domain containing 8 480704 6 5 6 3 1 2 2 0 1 0 0.30 0.92 -5837 C6orf138 chromosome 6 open reading frame 138 559664 8 5 8 1 2 2 3 0 1 0 0.30 0.92 -5838 ZNF605 zinc finger protein 605 434112 4 3 4 0 0 1 3 0 0 0 0.30 0.92 -5839 MAGEA5 melanoma antigen family A, 5 84812 1 1 1 0 1 0 0 0 0 0 0.30 0.92 -5840 RAB30 RAB30, member RAS oncogene family 140672 2 2 2 0 0 2 0 0 0 0 0.30 0.92 -5841 TMEM37 transmembrane protein 37 124544 2 2 2 0 1 0 0 1 0 0 0.30 0.92 -5842 PCDHB11 protocadherin beta 11 503412 7 6 7 4 3 2 1 0 1 0 0.30 0.92 -5843 SOX6 SRY (sex determining region Y)-box 6 564480 7 6 6 0 4 3 0 0 0 0 0.30 0.92 -5844 PAFAH1B3 platelet-activating factor acetylhydrolase, isoform Ib, gamma subunit 29kDa 155760 2 2 2 0 2 0 0 0 0 0 0.30 0.92 -5845 POLD3 polymerase (DNA-directed), delta 3, accessory subunit 324576 2 2 2 2 0 1 0 0 1 0 0.30 0.92 -5846 GSS glutathione synthetase 329952 4 4 4 0 1 1 2 0 0 0 0.30 0.92 -5847 RPP40 ribonuclease P/MRP 40kDa subunit 251776 3 3 3 1 1 1 0 0 1 0 0.30 0.92 -5848 FCN2 ficolin (collagen/fibrinogen domain containing lectin) 2 (hucolin) 218176 3 3 3 0 1 1 0 0 1 0 0.30 0.92 -5849 MYBL2 v-myb myeloblastosis viral oncogene homolog (avian)-like 2 475928 5 5 5 2 2 3 0 0 0 0 0.30 0.92 -5850 SYT7 synaptotagmin VII 256720 3 3 2 0 3 0 0 0 0 0 0.30 0.92 -5851 PPIL6 peptidylprolyl isomerase (cyclophilin)-like 6 190096 2 2 2 1 0 1 0 0 1 0 0.30 0.92 -5852 PRKAB1 protein kinase, AMP-activated, beta 1 non-catalytic subunit 188216 2 2 2 1 1 0 0 0 1 0 0.30 0.92 -5853 VPREB3 pre-B lymphocyte gene 3 85120 1 1 1 0 1 0 0 0 0 0 0.30 0.92 -5854 EFHC2 EF-hand domain (C-terminal) containing 2 419928 5 5 5 0 2 1 2 0 0 0 0.30 0.92 -5855 PIP5K1A phosphatidylinositol-4-phosphate 5-kinase, type I, alpha 392672 3 3 3 0 0 1 1 0 1 0 0.30 0.92 -5856 ABCC5 ATP-binding cassette, sub-family C (CFTR/MRP), member 5 1001280 7 7 7 2 1 1 1 0 4 0 0.30 0.92 -5857 TAT tyrosine aminotransferase 305824 5 4 5 1 1 4 0 0 0 0 0.30 0.92 -5858 GPRIN3 GPRIN family member 3 523040 4 4 4 2 1 1 1 0 1 0 0.30 0.92 -5859 NDUFB3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa 68320 1 1 1 0 0 1 0 0 0 0 0.30 0.92 -5860 PLCZ1 phospholipase C, zeta 1 421792 4 3 4 0 1 1 1 0 1 0 0.30 0.92 -5861 SIKE1 146944 2 2 2 0 0 2 0 0 0 0 0.30 0.92 -5862 TRIM68 tripartite motif-containing 68 331968 3 3 3 2 1 2 0 0 0 0 0.30 0.92 -5863 CDC14B CDC14 cell division cycle 14 homolog B (S. cerevisiae) 330036 4 4 3 1 2 1 1 0 0 0 0.30 0.92 -5864 ZNF700 zinc finger protein 700 502880 8 5 8 1 1 4 3 0 0 0 0.30 0.92 -5865 PLOD2 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 2 515456 5 5 5 1 3 0 1 0 1 0 0.30 0.92 -5866 SENP1 SUMO1/sentrin specific peptidase 1 445688 5 4 5 0 1 1 2 0 1 0 0.30 0.92 -5867 ADIPOR2 adiponectin receptor 2 266336 3 3 3 0 1 0 2 0 0 0 0.30 0.92 -5868 FAM73A family with sequence similarity 73, member A 439292 3 3 3 2 0 1 1 0 1 0 0.30 0.92 -5869 ZIC3 Zic family member 3 heterotaxy 1 (odd-paired homolog, Drosophila) 200832 3 3 3 0 2 1 0 0 0 0 0.30 0.92 -5870 C17orf47 chromosome 17 open reading frame 47 385504 3 3 2 1 0 1 0 0 2 0 0.30 0.92 -5871 SLC17A8 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 8 407232 4 3 4 2 0 4 0 0 0 0 0.30 0.92 -5872 USP46 ubiquitin specific peptidase 46 248976 3 3 3 0 1 1 1 0 0 0 0.30 0.92 -5873 BECN1 beclin 1, autophagy related 312928 3 3 3 1 1 0 1 0 1 0 0.30 0.92 -5874 SLC4A8 solute carrier family 4, sodium bicarbonate cotransporter, member 8 758016 7 5 7 0 2 4 0 0 1 0 0.30 0.92 -5875 TMEM156 transmembrane protein 156 204960 2 2 2 0 0 1 1 0 0 0 0.30 0.92 -5876 IL27RA interleukin 27 receptor, alpha 435904 5 4 5 3 3 1 0 0 1 0 0.30 0.92 -5877 MT3 metallothionein 3 49056 1 1 1 0 1 0 0 0 0 0 0.30 0.92 -5878 FAM154B family with sequence similarity 154, member B 270816 4 4 4 1 2 2 0 0 0 0 0.30 0.92 -5879 TRAM1 translocation associated membrane protein 1 261856 2 2 2 2 1 0 0 0 1 0 0.30 0.92 -5880 MSH4 mutS homolog 4 (E. coli) 647584 7 5 6 2 0 4 3 0 0 0 0.30 0.92 -5881 MAVS 348852 2 2 2 1 0 0 0 0 2 0 0.30 0.92 -5882 SP8 Sp8 transcription factor 151296 2 2 2 0 0 1 0 1 0 0 0.30 0.92 -5883 IL7R interleukin 7 receptor 316288 3 3 3 1 0 3 0 0 0 0 0.30 0.92 -5884 FAM188A 305536 3 3 3 0 0 3 0 0 0 0 0.30 0.92 -5885 BCL6 B-cell CLL/lymphoma 6 (zinc finger protein 51) 482272 5 5 5 4 2 2 0 0 1 0 0.30 0.92 -5886 DCUN1D3 DCN1, defective in cullin neddylation 1, domain containing 3 (S. cerevisiae) 206752 2 2 2 0 1 0 1 0 0 0 0.30 0.92 -5887 KRTAP19-3 keratin associated protein 19-3 56000 1 1 1 0 0 1 0 0 0 0 0.30 0.92 -5888 MS4A15 membrane-spanning 4-domains, subfamily A, member 15 143832 3 2 3 0 1 1 0 0 1 0 0.30 0.92 -5889 ZNF214 zinc finger protein 214 409696 3 3 3 3 1 1 1 0 0 0 0.30 0.92 -5890 OLFML2B olfactomedin-like 2B 511840 8 7 8 3 4 1 3 0 0 0 0.30 0.92 -5891 PCP2 Purkinje cell protein 2 90752 1 1 1 0 0 0 0 0 1 0 0.30 0.92 -5892 HNRNPA1 heterogeneous nuclear ribonucleoprotein A1 248200 3 3 3 1 0 1 2 0 0 0 0.30 0.92 -5893 CIB4 calcium and integrin binding family member 4 127456 1 1 1 0 0 1 0 0 0 0 0.30 0.92 -5894 MARCH5 membrane-associated ring finger (C3HC4) 5 187032 1 1 1 0 0 0 0 0 1 0 0.30 0.92 -5895 SLC26A9 solute carrier family 26, member 9 616448 5 5 5 1 4 0 1 0 0 0 0.30 0.92 -5896 UCHL1 ubiquitin carboxyl-terminal esterase L1 (ubiquitin thiolesterase) 128940 2 2 2 1 1 1 0 0 0 0 0.30 0.92 -5897 GRK5 G protein-coupled receptor kinase 5 398684 4 4 4 1 4 0 0 0 0 0 0.30 0.92 -5898 C16orf58 chromosome 16 open reading frame 58 273516 3 3 3 0 1 1 1 0 0 0 0.30 0.92 -5899 RFC5 replication factor C (activator 1) 5, 36.5kDa 239008 3 2 2 0 0 0 1 0 2 0 0.30 0.92 -5900 C1orf131 chromosome 1 open reading frame 131 203840 2 2 2 0 1 1 0 0 0 0 0.30 0.92 -5901 SLC4A4 solute carrier family 4, sodium bicarbonate cotransporter, member 4 797824 8 7 8 4 3 2 3 0 0 0 0.30 0.92 -5902 ROR2 receptor tyrosine kinase-like orphan receptor 2 608356 8 7 7 3 3 3 1 0 1 0 0.30 0.92 -5903 TCP1 t-complex 1 385056 3 3 3 0 0 1 1 0 1 0 0.30 0.92 -5904 NDUFB2 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 2, 8kDa 73920 1 1 1 0 0 0 1 0 0 0 0.30 0.92 -5905 C20orf195 chromosome 20 open reading frame 195 210308 2 2 2 1 0 1 1 0 0 0 0.30 0.92 -5906 DPP4 dipeptidyl-peptidase 4 (CD26, adenosine deaminase complexing protein 2) 538720 4 4 4 2 0 3 1 0 0 0 0.30 0.92 -5907 RAP1A RAP1A, member of RAS oncogene family 129696 2 2 2 0 1 1 0 0 0 0 0.30 0.92 -5908 DOK6 docking protein 6 230272 3 3 3 3 2 0 1 0 0 0 0.30 0.92 -5909 ARL1 ADP-ribosylation factor-like 1 122784 2 2 2 1 0 2 0 0 0 0 0.30 0.92 -5910 GRK6 G protein-coupled receptor kinase 6 393776 3 3 3 0 0 2 0 0 1 0 0.30 0.92 -5911 EIF3I eukaryotic translation initiation factor 3, subunit I 228928 2 2 2 0 0 1 1 0 0 0 0.30 0.92 -5912 OR2A4 olfactory receptor, family 2, subfamily A, member 4 154280 1 1 1 0 0 0 0 0 1 0 0.30 0.92 -5913 THEM5 thioesterase superfamily member 5 172032 1 1 1 1 0 0 0 0 1 0 0.30 0.92 -5914 SLC16A4 solute carrier family 16, member 4 (monocarboxylic acid transporter 5) 335104 2 2 2 0 0 0 1 0 1 0 0.30 0.92 -5915 FAM151B family with sequence similarity 151, member B 185024 2 2 2 0 1 0 1 0 0 0 0.30 0.92 -5916 DEFB114 defensin, beta 114 48832 1 1 1 0 1 0 0 0 0 0 0.30 0.92 -5917 RHOXF1 Rhox homeobox family, member 1 106848 1 1 1 0 0 0 0 1 0 0 0.30 0.92 -5918 UBE2I ubiquitin-conjugating enzyme E2I (UBC9 homolog, yeast) 112140 2 2 2 0 1 1 0 0 0 0 0.30 0.92 -5919 CATSPER1 cation channel, sperm associated 1 530124 6 6 6 1 2 2 2 0 0 0 0.30 0.92 -5920 CLDND1 claudin domain containing 1 189728 2 2 2 0 1 0 0 0 1 0 0.30 0.92 -5921 HAUS6 657664 5 5 5 1 2 1 1 0 1 0 0.30 0.92 -5922 STARD6 StAR-related lipid transfer (START) domain containing 6 153888 2 2 2 0 0 2 0 0 0 0 0.30 0.93 -5923 VIM vimentin 276624 3 3 3 0 1 1 1 0 0 0 0.30 0.93 -5924 RAPGEF4 Rap guanine nucleotide exchange factor (GEF) 4 695968 7 5 7 5 2 0 3 0 2 0 0.30 0.93 -5925 REM1 RAS (RAD and GEM)-like GTP-binding 1 167328 2 2 2 1 1 0 0 0 1 0 0.30 0.93 -5926 SYTL1 synaptotagmin-like 1 257828 3 3 3 0 3 0 0 0 0 0 0.30 0.93 -5927 C22orf25 chromosome 22 open reading frame 25 183992 2 2 2 0 1 0 1 0 0 0 0.30 0.93 -5928 BLCAP bladder cancer associated protein 58264 1 1 1 0 1 0 0 0 0 0 0.30 0.93 -5929 UBTD2 ubiquitin domain containing 2 144032 2 2 2 1 2 0 0 0 0 0 0.30 0.93 -5930 PNPLA1 patatin-like phospholipase domain containing 1 305088 3 3 3 1 1 2 0 0 0 0 0.30 0.93 -5931 C19orf53 chromosome 19 open reading frame 53 68544 1 1 1 0 0 1 0 0 0 0 0.30 0.93 -5932 ZNF215 zinc finger protein 215 352576 3 3 3 2 1 2 0 0 0 0 0.30 0.93 -5933 POLE polymerase (DNA directed), epsilon 1560860 21 15 19 3 5 12 2 0 2 0 0.31 0.93 -5934 PRG4 proteoglycan 4 954912 7 6 7 3 2 3 1 0 1 0 0.31 0.93 -5935 ABI3BP ABI gene family, member 3 (NESH) binding protein 730632 11 7 11 2 5 6 0 0 0 0 0.31 0.93 -5936 SIGLEC11 sialic acid binding Ig-like lectin 11 417344 7 5 6 1 1 5 1 0 0 0 0.31 0.93 -5937 NLE1 notchless homolog 1 (Drosophila) 321508 4 4 4 0 3 0 0 0 1 0 0.31 0.93 -5938 WDR86 WD repeat domain 86 129144 2 2 2 0 0 1 0 0 1 0 0.31 0.93 -5939 SF3B3 splicing factor 3b, subunit 3, 130kDa 840896 7 7 7 2 3 3 1 0 0 0 0.31 0.93 -5940 C10orf25 chromosome 10 open reading frame 25 79564 1 1 1 0 0 1 0 0 0 0 0.31 0.93 -5941 TREX1 three prime repair exonuclease 1 249452 2 2 2 0 0 1 0 0 1 0 0.31 0.93 -5942 MCM9 minichromosome maintenance complex component 9 268800 3 3 3 0 1 0 2 0 0 0 0.31 0.93 -5943 KIAA1468 KIAA1468 818524 5 5 5 1 2 0 0 0 3 0 0.31 0.93 -5944 TM2D2 TM2 domain containing 2 169848 2 2 2 0 1 1 0 0 0 0 0.31 0.93 -5945 KIAA0020 KIAA0020 451360 4 4 4 3 1 2 0 0 1 0 0.31 0.93 -5946 FDFT1 farnesyl-diphosphate farnesyltransferase 1 288064 3 3 3 0 1 1 1 0 0 0 0.31 0.93 -5947 COL25A1 collagen, type XXV, alpha 1 491232 5 5 5 3 4 0 0 0 1 0 0.31 0.93 -5948 MPHOSPH9 M-phase phosphoprotein 9 711424 5 5 5 0 2 0 1 0 2 0 0.31 0.93 -5949 HDAC2 histone deacetylase 2 328608 2 2 2 0 0 0 0 0 2 0 0.31 0.93 -5950 KCNN2 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 2 360248 3 3 3 4 1 0 1 0 1 0 0.31 0.93 -5951 ZNF626 zinc finger protein 626 365372 4 4 4 1 0 3 1 0 0 0 0.31 0.93 -5952 MPP2 membrane protein, palmitoylated 2 (MAGUK p55 subfamily member 2) 382368 5 5 5 2 3 0 1 1 0 0 0.31 0.93 -5953 RAB41 RAB41, member RAS oncogene family 156352 2 2 2 0 0 2 0 0 0 0 0.31 0.93 -5954 C20orf12 chromosome 20 open reading frame 12 496600 4 4 4 0 0 2 1 0 1 0 0.31 0.93 -5955 SLC22A6 solute carrier family 22 (organic anion transporter), member 6 384296 4 4 4 2 3 1 0 0 0 0 0.31 0.93 -5956 KIAA1967 KIAA1967 605536 6 6 6 0 2 3 1 0 0 0 0.31 0.93 -5957 OTOA otoancorin 619416 7 6 7 2 4 1 1 0 1 0 0.31 0.93 -5958 KBTBD2 kelch repeat and BTB (POZ) domain containing 2 422016 3 3 3 0 1 0 2 0 0 0 0.31 0.93 -5959 IGF2BP3 insulin-like growth factor 2 mRNA binding protein 3 395724 6 4 6 1 1 4 0 0 1 0 0.31 0.93 -5960 CCDC138 coiled-coil domain containing 138 447800 3 3 3 0 1 1 1 0 0 0 0.31 0.93 -5961 CLCN3 chloride channel 3 594272 8 6 8 0 2 5 1 0 0 0 0.31 0.93 -5962 CLEC4E C-type lectin domain family 4, member E 153216 2 2 2 0 0 2 0 0 0 0 0.31 0.93 -5963 ITGB1 integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12) 576800 6 5 6 2 1 2 3 0 0 0 0.31 0.93 -5964 PRPS2 phosphoribosyl pyrophosphate synthetase 2 208432 2 2 2 1 0 2 0 0 0 0 0.31 0.93 -5965 UBR5 ubiquitin protein ligase E3 component n-recognin 5 1925488 12 10 12 3 2 6 2 0 2 0 0.31 0.93 -5966 OR5K4 olfactory receptor, family 5, subfamily K, member 4 217280 2 2 2 2 0 1 0 0 1 0 0.31 0.93 -5967 FBXO30 F-box protein 30 503104 4 4 4 0 1 2 1 0 0 0 0.31 0.93 -5968 C3orf79 70560 2 1 2 0 0 2 0 0 0 0 0.31 0.93 -5969 TCHH trichohyalin 1272096 13 12 13 3 5 4 4 0 0 0 0.31 0.93 -5970 B3GNT2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 268352 2 2 2 2 0 1 1 0 0 0 0.31 0.93 -5971 GGNBP2 gametogenetin binding protein 2 474992 7 4 7 0 2 2 1 0 2 0 0.31 0.93 -5972 SPINK14 69440 1 1 1 0 0 1 0 0 0 0 0.31 0.93 -5973 FANCB Fanconi anemia, complementation group B 585088 4 4 4 1 0 3 0 0 1 0 0.31 0.93 -5974 IFIT1B 320656 3 3 3 0 1 2 0 0 0 0 0.31 0.93 -5975 SDK2 sidekick homolog 2 (chicken) 1161848 12 11 12 4 6 3 3 0 0 0 0.31 0.93 -5976 SUZ12 suppressor of zeste 12 homolog (Drosophila) 444664 4 3 4 0 2 0 0 0 0 2 0.31 0.93 -5977 ULBP2 UL16 binding protein 2 166720 2 2 2 0 0 2 0 0 0 0 0.31 0.93 -5978 SUB1 SUB1 homolog (S. cerevisiae) 89600 1 1 1 0 0 0 1 0 0 0 0.31 0.93 -5979 S1PR3 255584 3 3 3 3 2 1 0 0 0 0 0.31 0.93 -5980 TRIM59 tripartite motif-containing 59 272384 2 2 2 0 0 2 0 0 0 0 0.31 0.93 -5981 CCAR1 cell division cycle and apoptosis regulator 1 794976 7 6 7 1 3 1 2 0 1 0 0.31 0.93 -5982 SCTR secretin receptor 290976 3 3 3 0 1 0 1 0 1 0 0.31 0.93 -5983 SNAP23 synaptosomal-associated protein, 23kDa 148736 1 1 1 0 1 0 0 0 0 0 0.31 0.93 -5984 ALDH3B1 aldehyde dehydrogenase 3 family, member B1 227328 3 3 3 0 2 1 0 0 0 0 0.31 0.93 -5985 PLOD1 procollagen-lysine 1, 2-oxoglutarate 5-dioxygenase 1 483484 4 4 4 1 1 1 0 1 1 0 0.31 0.93 -5986 ZNF134 zinc finger protein 134 289408 3 3 3 0 0 2 1 0 0 0 0.31 0.93 -5987 TROAP trophinin associated protein (tastin) 558880 4 4 4 0 1 1 1 0 1 0 0.31 0.93 -5988 MYH14 myosin, heavy chain 14 1146424 12 11 12 1 7 2 1 0 2 0 0.31 0.93 -5989 MSH5 mutS homolog 5 (E. coli) 481044 5 5 5 1 3 0 2 0 0 0 0.31 0.93 -5990 ASF1B ASF1 anti-silencing function 1 homolog B (S. cerevisiae) 140000 2 2 2 0 0 1 1 0 0 0 0.31 0.93 -5991 SKP1 S-phase kinase-associated protein 1 120736 1 1 1 0 0 1 0 0 0 0 0.31 0.93 -5992 TPD52L1 tumor protein D52-like 1 144032 2 2 2 0 0 2 0 0 0 0 0.31 0.93 -5993 CD44 CD44 molecule (Indian blood group) 505768 3 3 3 1 1 1 1 0 0 0 0.31 0.93 -5994 FRRS1 ferric-chelate reductase 1 434784 5 4 5 1 1 4 0 0 0 0 0.31 0.93 -5995 FAM89B family with sequence similarity 89, member B 53284 1 1 1 0 1 0 0 0 0 0 0.31 0.93 -5996 PLEKHG1 pleckstrin homology domain containing, family G (with RhoGef domain) member 1 938616 7 6 7 3 5 0 1 0 1 0 0.31 0.93 -5997 C1orf198 chromosome 1 open reading frame 198 195444 2 2 2 1 0 0 1 0 1 0 0.31 0.93 -5998 LRRC41 leucine rich repeat containing 41 523404 6 5 6 1 4 2 0 0 0 0 0.31 0.93 -5999 FXYD4 FXYD domain containing ion transport regulator 4 66752 1 1 1 0 0 0 1 0 0 0 0.31 0.93 -6000 FAT3 FAT tumor suppressor homolog 3 (Drosophila) 3037868 36 16 36 16 7 16 7 0 4 2 0.31 0.93 -6001 IL5RA interleukin 5 receptor, alpha 297696 6 4 5 1 1 5 0 0 0 0 0.31 0.93 -6002 DSCR4 Down syndrome critical region gene 4 82656 1 1 1 0 0 0 0 0 1 0 0.31 0.93 -6003 ACAN aggrecan 1421788 13 11 13 1 3 7 1 0 2 0 0.31 0.93 -6004 FCHSD1 FCH and double SH3 domains 1 459340 8 7 8 0 7 1 0 0 0 0 0.31 0.93 -6005 C20orf54 chromosome 20 open reading frame 54 289584 4 4 4 2 3 1 0 0 0 0 0.31 0.93 -6006 MOCOS molybdenum cofactor sulfurase 577640 5 5 5 4 2 2 1 0 0 0 0.31 0.93 -6007 C2orf77 369480 4 3 4 1 0 2 1 0 1 0 0.31 0.93 -6008 FTHL17 ferritin, heavy polypeptide-like 17 124544 2 2 2 0 1 1 0 0 0 0 0.31 0.93 -6009 CHRNE cholinergic receptor, nicotinic, epsilon 299236 5 5 5 0 2 1 0 0 2 0 0.31 0.93 -6010 MAGEE2 melanoma antigen family E, 2 353024 2 2 2 2 0 1 0 0 1 0 0.31 0.93 -6011 IQCG IQ motif containing G 307328 3 3 3 0 1 0 2 0 0 0 0.31 0.93 -6012 LIPH lipase, member H 312704 3 3 3 1 1 0 1 0 1 0 0.31 0.93 -6013 RAB7A RAB7A, member RAS oncogene family 144256 2 2 2 0 0 1 1 0 0 0 0.31 0.93 -6014 OR2AG1 olfactory receptor, family 2, subfamily AG, member 1 213920 2 2 2 0 0 0 2 0 0 0 0.31 0.93 -6015 IMP3 IMP3, U3 small nucleolar ribonucleoprotein, homolog (yeast) 93884 1 1 1 0 0 0 1 0 0 0 0.31 0.93 -6016 PLAC4 placenta-specific 4 65784 1 1 1 0 1 0 0 0 0 0 0.31 0.93 -6017 C1orf58 chromosome 1 open reading frame 58 287616 2 2 2 0 0 1 0 0 1 0 0.31 0.93 -6018 C7orf66 79744 1 1 1 1 0 1 0 0 0 0 0.31 0.93 -6019 SPACA4 sperm acrosome associated 4 72716 1 1 1 0 1 0 0 0 0 0 0.31 0.93 -6020 IGSF9 immunoglobulin superfamily, member 9 757952 8 8 8 4 6 1 0 0 1 0 0.31 0.93 -6021 SCP2 sterol carrier protein 2 387968 3 3 3 0 0 3 0 0 0 0 0.31 0.93 -6022 RSF1 remodeling and spacing factor 1 936964 9 6 9 0 3 0 1 0 1 4 0.31 0.93 -6023 PCDHA1 protocadherin alpha 1 648620 9 9 8 4 5 1 3 0 0 0 0.31 0.93 -6024 RGAG4 retrotransposon gag domain containing 4 353932 4 4 4 1 2 0 0 1 1 0 0.31 0.93 -6025 COX6C cytochrome c oxidase subunit VIc 52864 1 1 1 0 0 1 0 0 0 0 0.31 0.93 -6026 PPM1K protein phosphatase 1K (PP2C domain containing) 256032 2 2 2 2 1 1 0 0 0 0 0.31 0.93 -6027 RBM4B RNA binding motif protein 4B 243712 3 3 3 1 2 0 0 0 1 0 0.31 0.93 -6028 SYNCRIP synaptotagmin binding, cytoplasmic RNA interacting protein 428288 5 4 5 0 1 2 1 0 1 0 0.31 0.93 -6029 FOXM1 forkhead box M1 536844 5 4 4 2 1 1 0 0 1 2 0.31 0.93 -6030 DYM dymeclin 464576 3 3 3 0 0 0 1 0 2 0 0.31 0.93 -6031 ZP2 zona pellucida glycoprotein 2 (sperm receptor) 518336 7 5 7 5 1 5 1 0 0 0 0.31 0.93 -6032 LHPP 155540 2 2 2 0 2 0 0 0 0 0 0.31 0.93 -6033 LYAR Ly1 antibody reactive homolog (mouse) 262528 3 3 3 3 1 2 0 0 0 0 0.31 0.93 -6034 IRAK1BP1 interleukin-1 receptor-associated kinase 1 binding protein 1 177548 2 2 2 1 1 1 0 0 0 0 0.31 0.93 -6035 APOA2 apolipoprotein A-II 70560 1 1 1 0 0 1 0 0 0 0 0.31 0.93 -6036 CCDC42 coiled-coil domain containing 42 219296 4 3 4 0 3 0 1 0 0 0 0.31 0.93 -6037 HIST1H2AM histone cluster 1, H2am 88928 1 1 1 0 0 0 1 0 0 0 0.31 0.93 -6038 FABP3 fatty acid binding protein 3, muscle and heart (mammary-derived growth inhibitor) 93632 1 1 1 0 1 0 0 0 0 0 0.31 0.93 -6039 MTHFS 5,10-methenyltetrahydrofolate synthetase (5-formyltetrahydrofolate cyclo-ligase) 112672 1 1 1 0 1 0 0 0 0 0 0.31 0.93 -6040 HAPLN3 hyaluronan and proteoglycan link protein 3 235928 4 3 4 1 2 1 0 0 1 0 0.31 0.93 -6041 PKD1L1 polycystic kidney disease 1 like 1 1965456 19 13 19 8 6 5 7 0 1 0 0.31 0.93 -6042 ZNF768 zinc finger protein 768 354256 4 4 4 0 1 3 0 0 0 0 0.31 0.93 -6043 RRH retinal pigment epithelium-derived rhodopsin homolog 233408 4 3 4 0 0 3 1 0 0 0 0.31 0.93 -6044 KRT222 204288 3 3 3 0 0 3 0 0 0 0 0.31 0.93 -6045 EP300 E1A binding protein p300 1645952 15 12 15 3 5 5 4 1 0 0 0.31 0.93 -6046 C17orf102 94696 1 1 1 2 0 0 1 0 0 0 0.31 0.93 -6047 IGF1 insulin-like growth factor 1 (somatomedin C) 153888 2 2 2 1 1 0 1 0 0 0 0.31 0.93 -6048 KIAA1644 137732 2 2 2 0 1 1 0 0 0 0 0.31 0.93 -6049 HLA-DMB major histocompatibility complex, class II, DM beta 138516 2 2 2 1 1 1 0 0 0 0 0.31 0.93 -6050 C12orf12 chromosome 12 open reading frame 12 244104 4 4 4 3 3 1 0 0 0 0 0.31 0.93 -6051 MYT1L myelin transcription factor 1-like 700452 15 9 15 1 9 4 2 0 0 0 0.31 0.93 -6052 AP3S1 adaptor-related protein complex 3, sigma 1 subunit 134248 2 2 2 1 0 2 0 0 0 0 0.31 0.93 -6053 SELP selectin P (granule membrane protein 140kDa, antigen CD62) 572768 6 5 6 3 2 2 0 0 2 0 0.31 0.93 -6054 CA14 carbonic anhydrase XIV 236992 2 2 2 0 1 0 0 0 1 0 0.31 0.93 -6055 GPR22 G protein-coupled receptor 22 292292 3 2 3 1 0 1 1 0 1 0 0.31 0.93 -6056 CENPL centromere protein L 235424 2 2 2 0 0 2 0 0 0 0 0.31 0.93 -6057 C1orf162 chromosome 1 open reading frame 162 109312 1 1 1 0 0 1 0 0 0 0 0.31 0.93 -6058 C10orf93 chromosome 10 open reading frame 93 231728 2 2 2 0 0 0 1 0 1 0 0.31 0.93 -6059 SLC35A4 solute carrier family 35, member A4 216440 2 2 2 1 1 0 1 0 0 0 0.31 0.93 -6060 GTF2F1 general transcription factor IIF, polypeptide 1, 74kDa 359472 5 5 5 1 3 0 1 0 1 0 0.31 0.93 -6061 IMMT inner membrane protein, mitochondrial (mitofilin) 513352 7 5 6 2 2 3 0 0 2 0 0.31 0.93 -6062 RANBP2 RAN binding protein 2 2153572 17 11 16 3 4 4 6 0 3 0 0.31 0.93 -6063 DDO D-aspartate oxidase 253120 2 2 2 1 0 1 0 0 1 0 0.31 0.93 -6064 HSPB2 heat shock 27kDa protein 2 113884 2 2 2 0 1 1 0 0 0 0 0.31 0.93 -6065 SESN2 sestrin 2 311136 4 4 4 1 3 0 1 0 0 0 0.31 0.93 -6066 ENO2 enolase 2 (gamma, neuronal) 302176 3 3 3 0 0 2 1 0 0 0 0.31 0.93 -6067 SCN4A sodium channel, voltage-gated, type IV, alpha subunit 1224332 15 11 15 7 8 5 1 0 1 0 0.31 0.93 -6068 RAB27B RAB27B, member RAS oncogene family 151648 3 2 3 0 0 1 2 0 0 0 0.31 0.93 -6069 MMP20 matrix metallopeptidase 20 (enamelysin) 334208 3 3 3 0 1 0 1 1 0 0 0.31 0.93 -6070 HIST1H2AL histone cluster 1, H2al 88928 1 1 1 1 0 0 1 0 0 0 0.31 0.93 -6071 LRRC4 leucine rich repeat containing 4 410228 7 5 7 0 3 2 0 1 1 0 0.31 0.93 -6072 PCDHGB1 protocadherin gamma subfamily B, 1 610652 9 8 8 0 5 1 1 0 2 0 0.31 0.93 -6073 TMEM159 transmembrane protein 159 112448 1 1 1 2 0 0 1 0 0 0 0.31 0.93 -6074 HGSNAT heparan-alpha-glucosaminide N-acetyltransferase 416192 6 4 6 2 1 3 0 0 2 0 0.31 0.93 -6075 MCART6 mitochondrial carrier triple repeat 6 207872 2 2 2 0 1 1 0 0 0 0 0.31 0.93 -6076 GNAS GNAS complex locus 688532 6 6 6 1 3 2 1 0 0 0 0.31 0.93 -6077 GHRL ghrelin/obestatin preprohormone 82880 1 1 1 0 0 1 0 0 0 0 0.31 0.93 -6078 IMPDH2 IMP (inosine monophosphate) dehydrogenase 2 358624 4 3 4 2 0 3 0 0 1 0 0.31 0.93 -6079 ZNF192 zinc finger protein 192 393568 3 3 3 2 0 2 1 0 0 0 0.31 0.93 -6080 SLC6A17 solute carrier family 6, member 17 496804 4 4 4 4 3 0 1 0 0 0 0.31 0.93 -6081 FAM82B family with sequence similarity 82, member B 205000 2 2 2 1 0 1 0 0 1 0 0.31 0.93 -6082 YIPF5 Yip1 domain family, member 5 177856 2 2 2 0 1 1 0 0 0 0 0.31 0.93 -6083 VIPAR 348992 4 4 4 0 1 2 1 0 0 0 0.31 0.93 -6084 LTF lactotransferrin 341248 4 4 4 0 2 1 1 0 0 0 0.31 0.93 -6085 E2F8 E2F transcription factor 8 594048 5 5 5 5 1 0 3 0 1 0 0.31 0.93 -6086 TMX2 206752 3 3 3 0 0 1 2 0 0 0 0.31 0.93 -6087 IFITM1 interferon induced transmembrane protein 1 (9-27) 86464 1 1 1 0 0 1 0 0 0 0 0.32 0.93 -6088 ACAD11 acyl-Coenzyme A dehydrogenase family, member 11 542752 5 5 5 3 0 5 0 0 0 0 0.32 0.93 -6089 KLF5 Kruppel-like factor 5 (intestinal) 252000 2 2 2 1 0 1 1 0 0 0 0.32 0.93 -6090 TRPC1 transient receptor potential cation channel, subfamily C, member 1 521064 6 5 6 2 1 3 1 0 1 0 0.32 0.93 -6091 FCRL2 Fc receptor-like 2 352800 4 3 4 3 1 2 1 0 0 0 0.32 0.93 -6092 NLRP12 NLR family, pyrin domain containing 12 715400 12 8 12 5 7 3 2 0 0 0 0.32 0.93 -6093 INTS6 integrator complex subunit 6 614880 7 6 7 2 4 1 2 0 0 0 0.32 0.93 -6094 C5AR1 complement component 5a receptor 1 237440 3 3 3 0 2 0 1 0 0 0 0.32 0.93 -6095 STOX1 storkhead box 1 598528 5 5 5 0 1 3 0 0 1 0 0.32 0.93 -6096 RSAD1 radical S-adenosyl methionine domain containing 1 274456 3 3 3 0 1 1 0 0 1 0 0.32 0.93 -6097 MFAP3L microfibrillar-associated protein 3-like 275884 3 3 3 3 1 1 0 0 1 0 0.32 0.93 -6098 TMEM33 transmembrane protein 33 172928 2 2 2 1 1 1 0 0 0 0 0.32 0.93 -6099 NUAK1 NUAK family, SNF1-like kinase, 1 441648 6 6 6 2 3 2 1 0 0 0 0.32 0.93 -6100 C1orf141 chromosome 1 open reading frame 141 274848 4 3 4 1 1 2 1 0 0 0 0.32 0.93 -6101 ENOX1 ecto-NOX disulfide-thiol exchanger 1 444724 3 3 3 4 0 1 0 0 2 0 0.32 0.93 -6102 COL1A1 collagen, type I, alpha 1 992284 11 8 11 7 4 4 1 0 2 0 0.32 0.93 -6103 STON2 stonin 2 611800 6 6 6 1 0 4 2 0 0 0 0.32 0.93 -6104 RAB7L1 RAB7, member RAS oncogene family-like 1 141568 2 2 1 1 2 0 0 0 0 0 0.32 0.93 -6105 AP2A1 adaptor-related protein complex 2, alpha 1 subunit 569224 3 3 3 1 0 1 0 0 2 0 0.32 0.93 -6106 CYP3A5 cytochrome P450, family 3, subfamily A, polypeptide 5 349664 3 3 3 1 0 1 2 0 0 0 0.32 0.93 -6107 CNTN5 contactin 5 738640 8 6 7 4 2 3 1 1 1 0 0.32 0.93 -6108 TMTC4 transmembrane and tetratricopeptide repeat containing 4 527520 4 4 4 1 2 1 1 0 0 0 0.32 0.93 -6109 SLC10A4 solute carrier family 10 (sodium/bile acid cotransporter family), member 4 188496 1 1 1 0 0 0 0 0 1 0 0.32 0.93 -6110 PNPLA3 patatin-like phospholipase domain containing 3 315924 4 4 4 3 1 2 1 0 0 0 0.32 0.93 -6111 STEAP1 six transmembrane epithelial antigen of the prostate 1 232064 2 2 2 1 0 0 2 0 0 0 0.32 0.93 -6112 KCTD16 potassium channel tetramerisation domain containing 16 289660 3 3 3 0 3 0 0 0 0 0 0.32 0.93 -6113 RPRD1A 216472 3 3 3 0 1 1 1 0 0 0 0.32 0.93 -6114 DEFB127 defensin, beta 127 68992 1 1 1 0 0 1 0 0 0 0 0.32 0.93 -6115 GLOD5 glyoxalase domain containing 5 96632 1 1 1 0 0 1 0 0 0 0 0.32 0.93 -6116 LY75 lymphocyte antigen 75 1167264 7 7 7 5 0 2 2 0 3 0 0.32 0.93 -6117 AKR1C3 aldo-keto reductase family 1, member C3 (3-alpha hydroxysteroid dehydrogenase, type II) 212328 2 2 2 1 0 1 1 0 0 0 0.32 0.93 -6118 NXPH2 neurexophilin 2 167552 2 2 2 1 1 0 1 0 0 0 0.32 0.93 -6119 GTSF1L gametocyte specific factor 1-like 101024 1 1 1 1 0 0 1 0 0 0 0.32 0.93 -6120 MRI1 196504 2 2 2 0 0 1 0 0 1 0 0.32 0.93 -6121 COQ9 coenzyme Q9 homolog (S. cerevisiae) 205184 2 2 2 1 0 1 0 1 0 0 0.32 0.93 -6122 ZWILCH Zwilch, kinetochore associated, homolog (Drosophila) 413952 4 4 4 0 0 2 2 0 0 0 0.32 0.93 -6123 SSX2IP synovial sarcoma, X breakpoint 2 interacting protein 424928 4 4 4 0 1 3 0 0 0 0 0.32 0.93 -6124 C6orf81 chromosome 6 open reading frame 81 252672 3 3 3 0 0 3 0 0 0 0 0.32 0.93 -6125 C14orf166 chromosome 14 open reading frame 166 169876 2 2 2 1 0 1 0 0 1 0 0.32 0.93 -6126 DHFRL1 dihydrofolate reductase-like 1 127232 2 2 2 0 0 1 1 0 0 0 0.32 0.93 -6127 GLYAT glycine-N-acyltransferase 204960 2 2 2 1 1 0 1 0 0 0 0.32 0.94 -6128 MGC29506 91008 1 1 1 0 1 0 0 0 0 0 0.32 0.94 -6129 SLC43A3 solute carrier family 43, member 3 341104 3 3 3 2 2 0 1 0 0 0 0.32 0.94 -6130 DCLK2 doublecortin-like kinase 2 495992 7 5 6 0 1 5 0 0 1 0 0.32 0.94 -6131 TBCCD1 TBCC domain containing 1 380352 5 5 5 2 1 3 1 0 0 0 0.32 0.94 -6132 MMS19 MMS19 nucleotide excision repair homolog (S. cerevisiae) 641856 5 5 5 0 1 4 0 0 0 0 0.32 0.94 -6133 CTDSP1 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 1 166348 2 2 2 0 1 0 1 0 0 0 0.32 0.94 -6134 CEACAM19 carcinoembryonic antigen-related cell adhesion molecule 19 209440 2 2 2 0 0 0 2 0 0 0 0.32 0.94 -6135 TRIM58 tripartite motif-containing 58 254200 3 3 3 1 0 3 0 0 0 0 0.32 0.94 -6136 F2RL2 coagulation factor II (thrombin) receptor-like 2 253792 3 3 3 0 2 1 0 0 0 0 0.32 0.94 -6137 WASF3 WAS protein family, member 3 345100 5 4 5 0 3 2 0 0 0 0 0.32 0.94 -6138 TIMM8B translocase of inner mitochondrial membrane 8 homolog B (yeast) 60480 1 1 1 0 1 0 0 0 0 0 0.32 0.94 -6139 COX18 COX18 cytochrome c oxidase assembly homolog (S. cerevisiae) 160216 3 3 3 1 2 1 0 0 0 0 0.32 0.94 -6140 ZNF630 zinc finger protein 630 436104 4 4 4 3 0 3 1 0 0 0 0.32 0.94 -6141 PIAS1 protein inhibitor of activated STAT, 1 441168 4 4 4 1 2 0 1 0 1 0 0.32 0.94 -6142 DUSP19 dual specificity phosphatase 19 150080 3 2 3 0 1 1 1 0 0 0 0.32 0.94 -6143 C1GALT1C1 C1GALT1-specific chaperone 1 215264 2 2 2 0 0 2 0 0 0 0 0.32 0.94 -6144 HHIPL2 HHIP-like 2 493836 5 5 5 0 2 1 2 0 0 0 0.32 0.94 -6145 KRT25 keratin 25 310240 3 3 3 1 0 2 1 0 0 0 0.32 0.94 -6146 TRIT1 tRNA isopentenyltransferase 1 323808 4 4 4 1 1 2 1 0 0 0 0.32 0.94 -6147 LIMK1 LIM domain kinase 1 429676 5 5 5 1 4 0 0 0 1 0 0.32 0.94 -6148 GPR18 G protein-coupled receptor 18 224000 2 2 2 0 0 0 1 0 1 0 0.32 0.94 -6149 NPPA natriuretic peptide precursor A 104748 1 1 1 0 1 0 0 0 0 0 0.32 0.94 -6150 CCDC7 coiled-coil domain containing 7 326856 3 3 3 0 0 2 1 0 0 0 0.32 0.94 -6151 GALK2 galactokinase 2 316256 3 3 3 0 1 1 1 0 0 0 0.32 0.94 -6152 SS18 synovial sarcoma translocation, chromosome 18 289792 2 2 2 2 1 1 0 0 0 0 0.32 0.94 -6153 TRNAU1AP 197384 2 2 2 0 0 2 0 0 0 0 0.32 0.94 -6154 TMEM90B 175308 2 2 2 0 1 1 0 0 0 0 0.32 0.94 -6155 A4GALT alpha 1,4-galactosyltransferase (globotriaosylceramide synthase) 183680 3 2 3 3 2 0 0 0 1 0 0.32 0.94 -6156 DYRK1B dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 1B 339796 4 4 4 3 1 1 2 0 0 0 0.32 0.94 -6157 MYO1H myosin IH 695384 7 5 7 2 1 1 3 0 2 0 0.32 0.94 -6158 KCNK18 potassium channel, subfamily K, member 18 257628 6 4 6 0 3 2 1 0 0 0 0.32 0.94 -6159 LGALS7B 43204 1 1 1 0 1 0 0 0 0 0 0.32 0.94 -6160 RPL6 ribosomal protein L6 192528 3 3 2 1 0 1 2 0 0 0 0.32 0.94 -6161 PRMT3 protein arginine methyltransferase 3 364672 3 3 3 0 0 1 1 0 1 0 0.32 0.94 -6162 ZBTB44 zinc finger and BTB domain containing 44 307528 4 3 4 0 0 3 0 0 1 0 0.32 0.94 -6163 C16orf73 chromosome 16 open reading frame 73 140448 1 1 1 0 0 0 0 0 1 0 0.32 0.94 -6164 THOC5 THO complex 5 476672 4 4 4 0 2 1 0 0 1 0 0.32 0.94 -6165 KIAA0240 KIAA0240 735616 6 6 6 1 1 3 2 0 0 0 0.32 0.94 -6166 PGGT1B protein geranylgeranyltransferase type I, beta subunit 262080 2 2 2 0 0 1 0 0 1 0 0.32 0.94 -6167 ATPAF1 ATP synthase mitochondrial F1 complex assembly factor 1 168672 2 2 2 0 0 0 2 0 0 0 0.32 0.94 -6168 CENPC1 centromere protein C 1 607432 3 3 3 3 0 1 1 0 1 0 0.32 0.94 -6169 SCGBL 61208 1 1 1 1 1 0 0 0 0 0 0.32 0.94 -6170 SERPIND1 serpin peptidase inhibitor, clade D (heparin cofactor), member 1 339584 2 2 2 0 0 1 0 0 1 0 0.32 0.94 -6171 ZNF776 zinc finger protein 776 328512 3 3 3 0 1 1 0 0 1 0 0.32 0.94 -6172 C2orf40 chromosome 2 open reading frame 40 85120 1 1 1 0 0 1 0 0 0 0 0.32 0.94 -6173 GPR116 G protein-coupled receptor 116 923104 11 7 11 3 4 4 3 0 0 0 0.32 0.94 -6174 C19orf40 chromosome 19 open reading frame 40 148736 2 2 2 0 0 2 0 0 0 0 0.32 0.94 -6175 HOMEZ homeobox and leucine zipper encoding 347448 3 3 3 0 2 0 0 0 1 0 0.32 0.94 -6176 SCN3B sodium channel, voltage-gated, type III, beta 149632 2 2 2 0 1 1 0 0 0 0 0.32 0.94 -6177 C12orf68 112756 1 1 1 0 0 0 0 0 1 0 0.32 0.94 -6178 ALDH3A2 aldehyde dehydrogenase 3 family, member A2 333736 4 4 4 1 1 2 1 0 0 0 0.32 0.94 -6179 LMX1B LIM homeobox transcription factor 1, beta 238980 3 3 3 0 2 1 0 0 0 0 0.32 0.94 -6180 PSMF1 proteasome (prosome, macropain) inhibitor subunit 1 (PI31) 189056 3 3 3 0 0 3 0 0 0 0 0.32 0.94 -6181 CA2 carbonic anhydrase II 173152 1 1 1 0 0 0 0 0 1 0 0.32 0.94 -6182 PTGES3 prostaglandin E synthase 3 (cytosolic) 114856 1 1 1 0 0 0 1 0 0 0 0.32 0.94 -6183 EPHA4 EPH receptor A4 678496 6 6 6 1 4 2 0 0 0 0 0.32 0.94 -6184 ODF2 outer dense fiber of sperm tails 2 601840 6 6 6 1 3 3 0 0 0 0 0.32 0.94 -6185 EIF4E2 eukaryotic translation initiation factor 4E family member 2 168320 2 2 2 0 1 1 0 0 0 0 0.32 0.94 -6186 HSD17B6 hydroxysteroid (17-beta) dehydrogenase 6 homolog (mouse) 217280 2 2 2 0 1 1 0 0 0 0 0.32 0.94 -6187 FGF21 fibroblast growth factor 21 143304 2 2 2 0 1 0 1 0 0 0 0.32 0.94 -6188 AP3S2 adaptor-related protein complex 3, sigma 2 subunit 125816 2 2 2 1 1 1 0 0 0 0 0.32 0.94 -6189 PREP prolyl endopeptidase 484568 5 4 5 2 2 2 1 0 0 0 0.32 0.94 -6190 ATP1B4 ATPase, (Na+)/K+ transporting, beta 4 polypeptide 247744 3 2 3 0 0 1 1 0 1 0 0.32 0.94 -6191 POP1 processing of precursor 1, ribonuclease P/MRP subunit (S. cerevisiae) 702240 7 6 7 1 5 1 1 0 0 0 0.32 0.94 -6192 MYPOP 83916 1 1 1 1 0 0 0 0 1 0 0.32 0.94 -6193 NOVA2 neuro-oncological ventral antigen 2 223368 3 3 3 2 2 1 0 0 0 0 0.32 0.94 -6194 ATP6V1H ATPase, H+ transporting, lysosomal 50/57kDa, V1 subunit H 336760 3 3 3 2 1 2 0 0 0 0 0.32 0.94 -6195 C8orf22 chromosome 8 open reading frame 22 58688 1 1 1 0 0 1 0 0 0 0 0.32 0.94 -6196 MTMR7 myotubularin related protein 7 452928 5 5 5 0 2 2 1 0 0 0 0.32 0.94 -6197 ERLEC1 337792 3 3 3 1 1 1 1 0 0 0 0.32 0.94 -6198 GTF3C1 general transcription factor IIIC, polypeptide 1, alpha 220kDa 1406080 10 10 10 4 3 3 1 0 3 0 0.32 0.94 -6199 OR1G1 olfactory receptor, family 1, subfamily G, member 1 211904 2 2 2 2 0 2 0 0 0 0 0.32 0.94 -6200 CNOT6L CCR4-NOT transcription complex, subunit 6-like 384384 3 3 3 0 2 0 0 0 1 0 0.32 0.94 -6201 ZNF321 zinc finger protein 321 111776 1 1 1 0 1 0 0 0 0 0 0.32 0.94 -6202 ATAD5 ATPase family, AAA domain containing 5 1260448 13 9 13 5 1 7 4 0 1 0 0.32 0.94 -6203 SPOPL speckle-type POZ protein-like 273056 2 2 2 0 0 1 1 0 0 0 0.32 0.94 -6204 C2orf66 chromosome 2 open reading frame 66 81088 1 1 1 1 0 1 0 0 0 0 0.32 0.94 -6205 C19orf73 75320 1 1 1 0 0 0 0 0 1 0 0.32 0.94 -6206 USP13 ubiquitin specific peptidase 13 (isopeptidase T-3) 572576 7 5 7 1 4 1 0 0 2 0 0.32 0.94 -6207 SORBS1 sorbin and SH3 domain containing 1 906052 11 8 9 1 5 3 1 1 1 0 0.32 0.94 -6208 SLC8A3 solute carrier family 8 (sodium-calcium exchanger), member 3 652232 7 6 7 5 2 4 1 0 0 0 0.32 0.94 -6209 ISCA1 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) 71904 1 1 1 0 0 1 0 0 0 0 0.32 0.94 -6210 PFDN6 prefoldin subunit 6 90944 1 1 1 0 0 0 1 0 0 0 0.32 0.94 -6211 SLC17A1 solute carrier family 17 (sodium phosphate), member 1 324352 6 4 6 0 2 2 2 0 0 0 0.32 0.94 -6212 NUP43 nucleoporin 43kDa 263200 2 2 2 0 1 1 0 0 0 0 0.32 0.94 -6213 MOGAT3 monoacylglycerol O-acyltransferase 3 236096 2 2 2 1 0 1 1 0 0 0 0.32 0.94 -6214 C17orf48 chromosome 17 open reading frame 48 233184 2 2 2 0 0 2 0 0 0 0 0.32 0.94 -6215 PABPN1 poly(A) binding protein, nuclear 1 133056 1 1 1 0 0 0 0 0 1 0 0.32 0.94 -6216 AKAP10 A kinase (PRKA) anchor protein 10 438368 3 3 3 1 0 2 0 0 1 0 0.32 0.94 -6217 ZNF267 zinc finger protein 267 503552 12 6 12 2 5 4 3 0 0 0 0.32 0.94 -6218 SPERT spermatid associated 233028 3 3 3 2 3 0 0 0 0 0 0.32 0.94 -6219 OR2F2 olfactory receptor, family 2, subfamily F, member 2 214592 2 2 2 0 1 1 0 0 0 0 0.32 0.94 -6220 ZNF281 zinc finger protein 281 533248 5 4 5 1 1 2 0 0 2 0 0.32 0.94 -6221 ADCK4 aarF domain containing kinase 4 378700 3 3 3 0 0 1 0 0 2 0 0.32 0.94 -6222 CBS cystathionine-beta-synthase 323656 3 3 3 0 1 1 0 0 1 0 0.32 0.94 -6223 KLHL6 kelch-like 6 (Drosophila) 417032 5 5 5 0 1 2 2 0 0 0 0.32 0.94 -6224 DSG4 desmoglein 4 739564 9 6 9 2 3 3 1 0 2 0 0.32 0.94 -6225 PPP2R3A protein phosphatase 2 (formerly 2A), regulatory subunit B'', alpha 815584 5 5 5 1 2 1 1 0 1 0 0.32 0.94 -6226 FILIP1L filamin A interacting protein 1-like 772576 8 7 8 5 2 1 4 0 1 0 0.32 0.94 -6227 CCDC82 coiled-coil domain containing 82 372512 5 4 5 0 1 1 3 0 0 0 0.32 0.94 -6228 CD5L CD5 molecule-like 239232 4 3 4 5 2 2 0 0 0 0 0.32 0.94 -6229 CASS4 Cas scaffolding protein family member 4 533232 5 5 5 1 1 4 0 0 0 0 0.32 0.94 -6230 DEF6 differentially expressed in FDCP 6 homolog (mouse) 373064 3 3 3 1 1 1 0 0 1 0 0.32 0.94 -6231 IGBP1 immunoglobulin (CD79A) binding protein 1 233856 3 3 3 0 1 1 1 0 0 0 0.32 0.94 -6232 PEX26 peroxisome biogenesis factor 26 187516 3 3 3 0 0 1 2 0 0 0 0.32 0.94 -6233 HSPB11 101920 1 1 1 0 1 0 0 0 0 0 0.32 0.94 -6234 NPPB natriuretic peptide precursor B 93240 1 1 1 2 1 0 0 0 0 0 0.32 0.94 -6235 THAP4 THAP domain containing 4 147224 1 1 1 0 0 0 0 0 1 0 0.32 0.94 -6236 RAB8B RAB8B, member RAS oncogene family 146944 2 2 2 0 0 1 1 0 0 0 0.32 0.94 -6237 ZNF473 zinc finger protein 473 589568 6 6 6 3 1 2 3 0 0 0 0.32 0.94 -6238 ALDH1A1 aldehyde dehydrogenase 1 family, member A1 348992 4 4 4 0 0 2 2 0 0 0 0.32 0.94 -6239 DDR2 discoidin domain receptor tyrosine kinase 2 589568 7 6 7 3 2 4 1 0 0 0 0.32 0.94 -6240 C6orf186 chromosome 6 open reading frame 186 178976 2 2 2 0 1 1 0 0 0 0 0.32 0.94 -6241 NKD1 naked cuticle homolog 1 (Drosophila) 275128 3 3 3 2 2 0 0 0 1 0 0.32 0.94 -6242 FAM198B 370328 5 5 5 2 2 3 0 0 0 0 0.32 0.94 -6243 KRT34 keratin 34 299936 4 4 4 0 1 3 0 0 0 0 0.33 0.94 -6244 SEPT14 septin 14 280320 3 3 3 1 1 0 2 0 0 0 0.33 0.94 -6245 KCNJ10 potassium inwardly-rectifying channel, subfamily J, member 10 256256 3 3 3 1 2 0 1 0 0 0 0.33 0.94 -6246 TSPAN11 tetraspanin 11 163016 2 2 2 0 1 1 0 0 0 0 0.33 0.94 -6247 CDO1 cysteine dioxygenase, type I 139552 1 1 1 1 0 0 1 0 0 0 0.33 0.94 -6248 IQCK IQ motif containing K 199016 2 2 2 0 1 0 0 0 1 0 0.33 0.94 -6249 COBRA1 cofactor of BRCA1 316992 3 3 3 2 2 0 1 0 0 0 0.33 0.94 -6250 IFI27L2 91616 1 1 1 0 0 1 0 0 0 0 0.33 0.94 -6251 AKNA AT-hook transcription factor 947616 6 6 6 2 1 0 3 0 2 0 0.33 0.94 -6252 PDZD7 PDZ domain containing 7 266416 4 4 4 1 2 2 0 0 0 0 0.33 0.94 -6253 TAGAP T-cell activation RhoGTPase activating protein 504000 5 5 5 3 3 0 1 0 1 0 0.33 0.94 -6254 KCNA5 potassium voltage-gated channel, shaker-related subfamily, member 5 349244 4 4 3 4 2 0 1 1 0 0 0.33 0.94 -6255 N4BP1 NEDD4 binding protein 1 563808 4 4 4 1 1 1 1 0 1 0 0.33 0.94 -6256 CCDC92 coiled-coil domain containing 92 226688 3 3 3 2 2 1 0 0 0 0 0.33 0.94 -6257 RNF141 ring finger protein 141 159712 2 2 2 0 2 0 0 0 0 0 0.33 0.94 -6258 SEL1L3 730464 6 6 6 0 2 1 1 0 2 0 0.33 0.94 -6259 FAM164A 224416 2 2 2 1 1 0 1 0 0 0 0.33 0.94 -6260 OLA1 Obg-like ATPase 1 275744 2 2 2 0 1 0 1 0 0 0 0.33 0.94 -6261 GATAD2B GATA zinc finger domain containing 2B 408128 3 3 3 2 2 0 1 0 0 0 0.33 0.94 -6262 RAGE renal tumor antigen 292992 3 3 3 0 2 0 0 0 1 0 0.33 0.94 -6263 PDGFC platelet derived growth factor C 237888 3 3 3 1 0 3 0 0 0 0 0.33 0.94 -6264 DNAJC21 DnaJ (Hsp40) homolog, subfamily C, member 21 394380 3 3 3 1 0 2 0 0 1 0 0.33 0.94 -6265 LAMP3 lysosomal-associated membrane protein 3 273728 3 3 3 3 2 1 0 0 0 0 0.33 0.94 -6266 RBM27 RNA binding motif protein 27 723240 5 5 5 2 1 2 0 0 2 0 0.33 0.94 -6267 CYB5R2 cytochrome b5 reductase 2 193312 2 2 2 1 0 1 0 0 1 0 0.33 0.94 -6268 IPMK inositol polyphosphate multikinase 272328 3 2 3 0 0 0 1 0 0 2 0.33 0.94 -6269 PRELP proline/arginine-rich end leucine-rich repeat protein 256396 3 3 3 4 0 2 1 0 0 0 0.33 0.94 -6270 ABCG8 ATP-binding cassette, sub-family G (WHITE), member 8 (sterolin 2) 455464 4 3 4 0 2 1 0 0 1 0 0.33 0.94 -6271 NKX2-2 NK2 homeobox 2 159516 2 2 2 0 0 1 0 0 1 0 0.33 0.94 -6272 CXCL10 chemokine (C-X-C motif) ligand 10 70112 1 1 1 0 0 0 1 0 0 0 0.33 0.94 -6273 S100A11 S100 calcium binding protein A11 73920 1 1 1 0 0 1 0 0 0 0 0.33 0.94 -6274 CDCA4 cell division cycle associated 4 162428 2 2 2 0 1 0 1 0 0 0 0.33 0.94 -6275 MADD MAP-kinase activating death domain 1138816 14 10 14 5 6 2 4 0 2 0 0.33 0.94 -6276 MRAP melanocortin 2 receptor accessory protein 134680 2 1 2 0 1 0 0 0 1 0 0.33 0.94 -6277 KIT v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog 675360 8 6 8 6 2 5 0 0 1 0 0.33 0.94 -6278 BCL2L15 BCL2-like 15 113792 1 1 1 1 0 0 1 0 0 0 0.33 0.94 -6279 CASP6 caspase 6, apoptosis-related cysteine peptidase 203840 2 2 2 1 0 0 1 0 1 0 0.33 0.94 -6280 GTF3C6 general transcription factor IIIC, polypeptide 6, alpha 35kDa 138160 1 1 1 0 0 0 0 0 1 0 0.33 0.94 -6281 SNX11 sorting nexin 11 187488 2 2 2 1 0 1 1 0 0 0 0.33 0.94 -6282 TTC21B tetratricopeptide repeat domain 21B 905408 8 6 8 1 3 2 2 0 1 0 0.33 0.94 -6283 BLMH bleomycin hydrolase 313376 4 3 4 1 0 1 3 0 0 0 0.33 0.94 -6284 OR2Y1 olfactory receptor, family 2, subfamily Y, member 1 210560 2 2 2 1 0 1 1 0 0 0 0.33 0.94 -6285 ZNF25 zinc finger protein 25 311584 4 3 4 1 0 3 1 0 0 0 0.33 0.94 -6286 OR51T1 olfactory receptor, family 51, subfamily T, member 1 239456 3 3 3 1 1 2 0 0 0 0 0.33 0.94 -6287 CRTAC1 cartilage acidic protein 1 406192 5 5 5 2 2 2 1 0 0 0 0.33 0.94 -6288 ZNF230 zinc finger protein 230 322784 2 2 2 0 0 0 1 0 1 0 0.33 0.94 -6289 TMEM207 transmembrane protein 207 103264 1 1 1 1 0 0 1 0 0 0 0.33 0.94 -6290 C9orf128 chromosome 9 open reading frame 128 191296 2 2 2 1 1 1 0 0 0 0 0.33 0.94 -6291 BMP6 bone morphogenetic protein 6 257488 3 3 3 3 1 0 2 0 0 0 0.33 0.94 -6292 DRG1 developmentally regulated GTP binding protein 1 255360 2 2 2 0 0 2 0 0 0 0 0.33 0.94 -6293 KCNH2 potassium voltage-gated channel, subfamily H (eag-related), member 2 552052 5 5 5 1 2 1 1 0 1 0 0.33 0.94 -6294 MCTP1 multiple C2 domains, transmembrane 1 589416 7 5 7 6 0 6 0 0 1 0 0.33 0.94 -6295 ZNF175 zinc finger protein 175 482048 4 4 4 3 3 1 0 0 0 0 0.33 0.94 -6296 OR51Q1 olfactory receptor, family 51, subfamily Q, member 1 214592 2 2 2 1 0 2 0 0 0 0 0.33 0.94 -6297 ATAD1 ATPase family, AAA domain containing 1 251328 3 2 3 0 0 2 0 0 1 0 0.33 0.94 -6298 OLIG3 oligodendrocyte transcription factor 3 145208 2 2 2 0 1 0 1 0 0 0 0.33 0.94 -6299 UNC93A unc-93 homolog A (C. elegans) 314944 4 4 4 3 3 0 1 0 0 0 0.33 0.94 -6300 SIAE sialic acid acetylesterase 361088 4 4 4 0 3 0 0 0 1 0 0.33 0.94 -6301 SLC25A44 solute carrier family 25, member 44 214368 2 2 2 0 0 0 1 1 0 0 0.33 0.94 -6302 COL23A1 collagen, type XXIII, alpha 1 285728 3 3 3 0 1 1 0 0 1 0 0.33 0.94 -6303 DOLK dolichol kinase 362012 4 4 4 1 1 2 1 0 0 0 0.33 0.94 -6304 AKAP4 A kinase (PRKA) anchor protein 4 579936 4 4 4 2 0 4 0 0 0 0 0.33 0.94 -6305 FHIT fragile histidine triad gene 103936 1 1 1 0 1 0 0 0 0 0 0.33 0.94 -6306 ACVR1C activin A receptor, type IC 326284 3 3 3 3 1 1 1 0 0 0 0.33 0.94 -6307 SLC22A11 solute carrier family 22 (organic anion/urate transporter), member 11 351152 4 4 4 1 1 1 1 0 1 0 0.33 0.94 -6308 ETV3L ets variant gene 3-like 243392 2 2 2 0 1 1 0 0 0 0 0.33 0.94 -6309 RHCG Rh family, C glycoprotein 326352 4 4 4 1 2 0 2 0 0 0 0.33 0.94 -6310 HTR7 5-hydroxytryptamine (serotonin) receptor 7 (adenylate cyclase-coupled) 289296 7 5 7 2 3 3 1 0 0 0 0.33 0.94 -6311 ALG2 asparagine-linked glycosylation 2 homolog (S. cerevisiae, alpha-1,3-mannosyltransferase) 231028 3 3 2 0 0 2 1 0 0 0 0.33 0.94 -6312 ZDHHC23 zinc finger, DHHC-type containing 23 280000 5 3 5 0 1 2 1 0 1 0 0.33 0.94 -6313 TMEM63A transmembrane protein 63A 559684 4 4 4 1 1 2 0 0 1 0 0.33 0.94 -6314 ALAS1 aminolevulinate, delta-, synthase 1 439712 6 5 6 1 3 3 0 0 0 0 0.33 0.94 -6315 HEATR5B HEAT repeat containing 5B 1423744 10 8 10 1 2 1 4 0 1 2 0.33 0.94 -6316 WDTC1 WD and tetratricopeptide repeats 1 467796 4 3 4 3 1 1 1 0 1 0 0.33 0.94 -6317 UROS uroporphyrinogen III synthase (congenital erythropoietic porphyria) 166628 1 1 1 1 0 0 0 0 1 0 0.33 0.94 -6318 RAI2 retinoic acid induced 2 357728 3 3 3 1 1 1 0 0 1 0 0.33 0.94 -6319 SLC7A3 solute carrier family 7 (cationic amino acid transporter, y+ system), member 3 401744 5 4 5 2 0 4 1 0 0 0 0.33 0.94 -6320 STC2 stanniocalcin 2 206948 2 2 2 2 2 0 0 0 0 0 0.33 0.95 -6321 ZNF649 zinc finger protein 649 343616 3 3 3 2 0 1 2 0 0 0 0.33 0.95 -6322 FAM104A family with sequence similarity 104, member A 114584 1 1 1 0 0 0 0 0 1 0 0.33 0.95 -6323 SLC12A5 solute carrier family 12, (potassium-chloride transporter) member 5 761240 9 8 9 4 8 0 0 1 0 0 0.33 0.95 -6324 BRF2 BRF2, subunit of RNA polymerase III transcription initiation factor, BRF1-like 267008 3 3 3 0 0 1 2 0 0 0 0.33 0.95 -6325 SFRS3 splicing factor, arginine/serine-rich 3 115360 1 1 1 0 0 0 1 0 0 0 0.33 0.95 -6326 LCE2D late cornified envelope 2D 75488 1 1 1 0 1 0 0 0 0 0 0.33 0.95 -6327 EFCAB4B EF-hand calcium binding domain 4B 273280 2 2 2 0 0 2 0 0 0 0 0.33 0.95 -6328 C1orf103 chromosome 1 open reading frame 103 521024 6 4 6 1 1 1 4 0 0 0 0.33 0.95 -6329 CXCR5 chemokine (C-X-C motif) receptor 5 241024 3 3 3 2 2 0 1 0 0 0 0.33 0.95 -6330 CD37 CD37 molecule 196672 2 2 2 1 0 0 1 0 1 0 0.33 0.95 -6331 C9orf114 chromosome 9 open reading frame 114 252636 3 3 3 1 1 1 1 0 0 0 0.33 0.95 -6332 PPP2R2B protein phosphatase 2 (formerly 2A), regulatory subunit B, beta isoform 334208 3 3 2 3 2 1 0 0 0 0 0.33 0.95 -6333 SAAL1 serum amyloid A-like 1 329952 4 3 4 1 0 2 2 0 0 0 0.33 0.95 -6334 SERPINA1 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 1 285152 3 3 3 0 1 1 1 0 0 0 0.33 0.95 -6335 CHI3L2 chitinase 3-like 2 271712 4 3 4 2 0 4 0 0 0 0 0.33 0.95 -6336 BAAT bile acid Coenzyme A: amino acid N-acyltransferase (glycine N-choloyltransferase) 284256 2 2 2 0 0 1 1 0 0 0 0.33 0.95 -6337 PDZD8 PDZ domain containing 8 688352 7 6 7 1 1 4 1 0 1 0 0.33 0.95 -6338 ALG5 asparagine-linked glycosylation 5 homolog (S. cerevisiae, dolichyl-phosphate beta-glucosyltransferase) 221480 3 3 3 0 2 0 0 0 1 0 0.33 0.95 -6339 FMN2 formin 2 980472 7 7 7 5 1 2 3 0 1 0 0.33 0.95 -6340 MPV17L MPV17 mitochondrial membrane protein-like 65632 1 1 1 0 0 1 0 0 0 0 0.33 0.95 -6341 STARD13 StAR-related lipid transfer (START) domain containing 13 790992 5 5 5 1 1 1 2 0 1 0 0.33 0.95 -6342 NRM nurim (nuclear envelope membrane protein) 132208 1 1 1 0 1 0 0 0 0 0 0.33 0.95 -6343 ABCF2 ATP-binding cassette, sub-family F (GCN20), member 2 440720 3 3 3 1 2 0 0 0 1 0 0.33 0.95 -6344 TNFRSF4 tumor necrosis factor receptor superfamily, member 4 110180 1 1 1 0 0 0 0 0 1 0 0.33 0.95 -6345 ZBTB7A zinc finger and BTB domain containing 7A 273124 4 4 4 0 1 1 1 0 1 0 0.33 0.95 -6346 HNRNPK 333760 4 4 4 0 2 1 1 0 0 0 0.33 0.95 -6347 TMEM184C 303968 3 3 3 1 3 0 0 0 0 0 0.33 0.95 -6348 NKIRAS2 NFKB inhibitor interacting Ras-like 2 131712 2 2 2 0 2 0 0 0 0 0 0.33 0.95 -6349 RNF165 ring finger protein 165 216664 4 3 4 0 1 2 1 0 0 0 0.33 0.95 -6350 PMF1 polyamine-modulated factor 1 142912 2 2 2 0 0 2 0 0 0 0 0.33 0.95 -6351 ASPRV1 aspartic peptidase, retroviral-like 1 232064 3 3 3 1 2 0 1 0 0 0 0.33 0.95 -6352 GALNT11 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 11 (GalNAc-T11) 419104 5 5 5 1 4 0 1 0 0 0 0.33 0.95 -6353 KLHDC2 kelch domain containing 2 283304 2 2 2 1 0 1 1 0 0 0 0.33 0.95 -6354 TAL2 T-cell acute lymphocytic leukemia 2 74144 1 1 1 1 0 0 1 0 0 0 0.33 0.95 -6355 RXFP4 relaxin/insulin-like family peptide receptor 4 240464 3 3 3 2 0 2 1 0 0 0 0.33 0.95 -6356 FAM83D family with sequence similarity 83, member D 330008 6 5 6 1 2 4 0 0 0 0 0.33 0.95 -6357 UBR1 ubiquitin protein ligase E3 component n-recognin 1 1218112 10 7 10 3 1 6 2 1 0 0 0.33 0.95 -6358 BTN3A3 butyrophilin, subfamily 3, member A3 401184 4 4 4 0 2 1 1 0 0 0 0.33 0.95 -6359 ANAPC5 anaphase promoting complex subunit 5 523264 3 3 3 2 1 1 0 0 1 0 0.34 0.95 -6360 SBNO1 strawberry notch homolog 1 (Drosophila) 964544 9 7 9 2 4 1 2 0 2 0 0.34 0.95 -6361 PSMB6 proteasome (prosome, macropain) subunit, beta type, 6 160808 2 2 2 1 1 1 0 0 0 0 0.34 0.95 -6362 IL15RA interleukin 15 receptor, alpha 165760 1 1 1 0 0 0 0 0 1 0 0.34 0.95 -6363 TRAPPC4 trafficking protein particle complex 4 152320 2 2 2 0 0 1 1 0 0 0 0.34 0.95 -6364 LAMB3 laminin, beta 3 805708 9 7 9 1 4 3 1 0 1 0 0.34 0.95 -6365 IL8 interleukin 8 70784 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6366 H2AFZ H2A histone family, member Z 91168 1 1 1 0 0 0 0 0 1 0 0.34 0.95 -6367 EDAR ectodysplasin A receptor 311584 3 3 3 0 1 1 1 0 0 0 0.34 0.95 -6368 IGSF9B immunoglobulin superfamily, member 9B 826064 9 8 9 3 5 1 2 0 1 0 0.34 0.95 -6369 TMEM38B transmembrane protein 38B 201600 2 2 2 1 0 1 1 0 0 0 0.34 0.95 -6370 SAP18 Sin3A-associated protein, 18kDa 119840 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6371 CSF2RB colony stimulating factor 2 receptor, beta, low-affinity (granulocyte-macrophage) 569828 7 5 7 1 2 2 2 0 1 0 0.34 0.95 -6372 TBC1D24 TBC1 domain family, member 24 361412 3 3 3 0 1 0 0 0 2 0 0.34 0.95 -6373 TMED5 transmembrane emp24 protein transport domain containing 5 158144 2 2 2 0 1 0 1 0 0 0 0.34 0.95 -6374 FLVCR2 feline leukemia virus subgroup C cellular receptor family, member 2 363104 3 3 3 1 1 0 1 0 1 0 0.34 0.95 -6375 OTUD4 OTU domain containing 4 724280 7 6 7 2 2 2 3 0 0 0 0.34 0.95 -6376 PHPT1 phosphohistidine phosphatase 1 93688 1 1 1 0 0 0 0 0 1 0 0.34 0.95 -6377 AMMECR1L AMME chromosomal region gene 1-like 214368 2 2 2 1 1 0 0 0 1 0 0.34 0.95 -6378 C9orf84 chromosome 9 open reading frame 84 1022532 10 7 10 0 0 5 4 0 1 0 0.34 0.95 -6379 RAB33A RAB33A, member RAS oncogene family 161728 2 2 2 0 0 2 0 0 0 0 0.34 0.95 -6380 EXOC3L exocyst complex component 3-like 360884 4 4 4 0 3 0 0 0 1 0 0.34 0.95 -6381 COBL cordon-bleu homolog (mouse) 844256 9 7 9 1 4 2 2 0 1 0 0.34 0.95 -6382 HIST1H2AD histone cluster 1, H2ad 88928 1 1 1 0 0 0 1 0 0 0 0.34 0.95 -6383 VIPR2 vasoactive intestinal peptide receptor 2 255860 3 3 3 1 0 1 2 0 0 0 0.34 0.95 -6384 ITGA5 integrin, alpha 5 (fibronectin receptor, alpha polypeptide) 710052 7 6 7 3 4 3 0 0 0 0 0.34 0.95 -6385 STK24 serine/threonine kinase 24 (STE20 homolog, yeast) 308224 4 4 4 1 2 1 0 0 1 0 0.34 0.95 -6386 PACSIN2 protein kinase C and casein kinase substrate in neurons 2 330260 5 4 5 1 1 3 0 0 1 0 0.34 0.95 -6387 SLC38A11 solute carrier family 38, member 11 266784 3 3 3 1 2 1 0 0 0 0 0.34 0.95 -6388 OR10A2 olfactory receptor, family 10, subfamily A, member 2 205184 3 2 3 1 0 2 1 0 0 0 0.34 0.95 -6389 KLF7 Kruppel-like factor 7 (ubiquitous) 207200 3 3 3 0 2 0 1 0 0 0 0.34 0.95 -6390 ZNF524 zinc finger protein 524 109764 1 1 1 1 0 0 0 0 1 0 0.34 0.95 -6391 CFLAR CASP8 and FADD-like apoptosis regulator 336928 3 3 3 0 0 3 0 0 0 0 0.34 0.95 -6392 ITGA10 integrin, alpha 10 799128 7 6 7 4 3 2 1 0 1 0 0.34 0.95 -6393 CARD16 141120 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6394 RAB3GAP2 RAB3 GTPase activating protein subunit 2 (non-catalytic) 968128 7 6 7 1 3 1 2 0 1 0 0.34 0.95 -6395 RPRD1B 226016 2 2 2 0 0 1 0 0 1 0 0.34 0.95 -6396 ZBED4 zinc finger, BED-type containing 4 762608 8 7 8 3 4 1 2 1 0 0 0.34 0.95 -6397 RBM12B RNA binding motif protein 12B 674156 8 6 8 2 3 2 1 1 1 0 0.34 0.95 -6398 MBLAC1 135668 2 2 2 0 0 2 0 0 0 0 0.34 0.95 -6399 TRIM63 tripartite motif-containing 63 245952 3 3 3 0 1 1 1 0 0 0 0.34 0.95 -6400 TAC4 tachykinin 4 (hemokinin) 81088 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6401 TP53BP2 tumor protein p53 binding protein, 2 774228 6 6 6 2 2 3 0 0 1 0 0.34 0.95 -6402 SFRP4 secreted frizzled-related protein 4 237804 4 4 4 1 3 1 0 0 0 0 0.34 0.95 -6403 ETV1 ets variant gene 1 338640 6 5 6 3 4 1 1 0 0 0 0.34 0.95 -6404 ANKRD53 ankyrin repeat domain 53 202248 3 3 3 0 1 2 0 0 0 0 0.34 0.95 -6405 AGK acylglycerol kinase 294976 3 3 3 1 1 0 2 0 0 0 0.34 0.95 -6406 C11orf53 chromosome 11 open reading frame 53 158004 2 2 2 0 1 1 0 0 0 0 0.34 0.95 -6407 WDR70 WD repeat domain 70 456288 4 4 4 1 1 1 1 0 1 0 0.34 0.95 -6408 TPH1 tryptophan hydroxylase 1 (tryptophan 5-monooxygenase) 308000 3 3 3 0 1 2 0 0 0 0 0.34 0.95 -6409 PTPN3 protein tyrosine phosphatase, non-receptor type 3 636608 7 5 7 1 1 2 1 0 3 0 0.34 0.95 -6410 CDA cytidine deaminase 102368 1 1 1 0 1 0 0 0 0 0 0.34 0.95 -6411 HELLS helicase, lymphoid-specific 578760 5 5 5 2 2 1 0 0 2 0 0.34 0.95 -6412 OR10P1 olfactory receptor, family 10, subfamily P, member 1 211904 2 2 2 1 2 0 0 0 0 0 0.34 0.95 -6413 KCTD13 potassium channel tetramerisation domain containing 13 223300 2 2 2 1 0 1 0 0 1 0 0.34 0.95 -6414 UPK2 uroplakin 2 128800 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6415 RASIP1 Ras interacting protein 1 342580 4 4 4 1 1 2 0 1 0 0 0.34 0.95 -6416 NOP58 369600 3 3 3 0 0 1 1 0 1 0 0.34 0.95 -6417 NAALADL2 N-acetylated alpha-linked acidic dipeptidase-like 2 544736 4 4 4 1 2 1 1 0 0 0 0.34 0.95 -6418 FMO4 flavin containing monooxygenase 4 382816 6 3 6 1 1 2 2 0 1 0 0.34 0.95 -6419 NUP62 nucleoporin 62kDa 352268 3 3 3 1 1 0 0 1 1 0 0.34 0.95 -6420 FABP1 fatty acid binding protein 1, liver 89600 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6421 C12orf26 chromosome 12 open reading frame 26 416640 4 3 4 1 0 0 3 0 1 0 0.34 0.95 -6422 ANXA11 annexin A11 330472 3 3 3 1 1 1 0 0 1 0 0.34 0.95 -6423 DYSFIP1 dysferlin interacting protein 1 69080 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6424 B4GALNT1 beta-1,4-N-acetyl-galactosaminyl transferase 1 320520 4 4 4 0 2 1 0 0 1 0 0.34 0.95 -6425 ODZ2 odz, odd Oz/ten-m homolog 2 (Drosophila) 1657912 19 15 19 10 7 8 4 0 0 0 0.34 0.95 -6426 DRGX dorsal root ganglia homeobox 171184 2 2 2 0 2 0 0 0 0 0 0.34 0.95 -6427 PTPN4 protein tyrosine phosphatase, non-receptor type 4 (megakaryocyte) 646240 6 5 6 0 3 1 0 1 1 0 0.34 0.95 -6428 HIST1H2AB histone cluster 1, H2ab 88928 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6429 RAD51AP1 RAD51 associated protein 1 246176 3 3 3 0 1 1 1 0 0 0 0.34 0.95 -6430 CENPE centromere protein E, 312kDa 1845368 18 9 18 2 4 7 5 0 0 2 0.34 0.95 -6431 HAS2 hyaluronan synthase 2 374304 4 3 4 1 0 2 1 0 1 0 0.34 0.95 -6432 SYS1 SYS1 Golgi-localized integral membrane protein homolog (S. cerevisiae) 104344 1 1 1 1 0 1 0 0 0 0 0.34 0.95 -6433 FGD2 FYVE, RhoGEF and PH domain containing 2 438608 4 4 4 1 3 1 0 0 0 0 0.34 0.95 -6434 OR9G4 olfactory receptor, family 9, subfamily G, member 4 221312 2 2 2 1 1 0 0 0 1 0 0.34 0.95 -6435 ZNF404 zinc finger protein 404 371392 3 3 3 3 0 1 2 0 0 0 0.34 0.95 -6436 ACTR2 ARP2 actin-related protein 2 homolog (yeast) 270688 2 2 2 1 0 1 0 0 1 0 0.34 0.95 -6437 IGSF11 immunoglobulin superfamily, member 11 308448 2 2 2 1 1 1 0 0 0 0 0.34 0.95 -6438 NRIP1 nuclear receptor interacting protein 1 779744 6 5 6 0 2 1 2 0 1 0 0.34 0.95 -6439 NAA38 63392 1 1 1 0 0 0 1 0 0 0 0.34 0.95 -6440 HSPB9 heat shock protein, alpha-crystallin-related, B9 108416 1 1 1 0 0 0 1 0 0 0 0.34 0.95 -6441 DRG2 developmentally regulated GTP binding protein 2 247680 1 1 1 2 0 0 0 0 1 0 0.34 0.95 -6442 GABPB2 GA binding protein transcription factor, beta subunit 2 308896 3 3 3 0 1 1 1 0 0 0 0.34 0.95 -6443 HMGB3 high-mobility group box 3 138656 1 1 1 1 0 1 0 0 0 0 0.34 0.95 -6444 MAD2L1 MAD2 mitotic arrest deficient-like 1 (yeast) 142912 1 1 1 0 0 0 0 0 1 0 0.34 0.95 -6445 NCAPD2 non-SMC condensin I complex, subunit D2 969920 5 5 5 2 0 1 2 0 2 0 0.34 0.95 -6446 DOCK10 dedicator of cytokinesis 10 1445152 14 10 13 2 2 7 2 0 3 0 0.34 0.95 -6447 TMEM41B transmembrane protein 41B 200312 2 2 2 0 1 1 0 0 0 0 0.34 0.95 -6448 COMMD4 COMM domain containing 4 139120 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6449 CD3D CD3d molecule, delta (CD3-TCR complex) 120064 1 1 1 0 0 0 0 0 1 0 0.34 0.95 -6450 FLJ36031 69144 1 1 1 0 0 0 0 0 1 0 0.34 0.95 -6451 NEUROD6 neurogenic differentiation 6 228032 2 2 2 2 0 1 1 0 0 0 0.34 0.95 -6452 UPK1A uroplakin 1A 177716 2 2 2 2 1 1 0 0 0 0 0.34 0.95 -6453 PRKCQ protein kinase C, theta 490336 5 5 5 1 4 1 0 0 0 0 0.34 0.95 -6454 ANLN anillin, actin binding protein 777504 7 6 7 2 2 3 1 0 1 0 0.34 0.95 -6455 HSPA4 heat shock 70kDa protein 4 576192 6 4 6 2 0 3 2 0 1 0 0.34 0.95 -6456 MTR 5-methyltetrahydrofolate-homocysteine methyltransferase 880320 7 6 7 1 3 2 1 0 1 0 0.34 0.95 -6457 HAUS3 407792 5 3 5 0 0 1 2 0 2 0 0.34 0.95 -6458 ULK4 unc-51-like kinase 4 (C. elegans) 889728 9 7 9 3 2 2 4 0 1 0 0.34 0.95 -6459 MRPL50 mitochondrial ribosomal protein L50 108640 1 1 1 0 0 0 1 0 0 0 0.34 0.95 -6460 MTMR10 myotubularin related protein 10 503696 5 5 5 0 1 3 1 0 0 0 0.34 0.95 -6461 CST4 cystatin S 98112 1 1 1 1 0 0 1 0 0 0 0.34 0.95 -6462 CERKL ceramide kinase-like 382396 4 4 4 0 1 2 1 0 0 0 0.34 0.95 -6463 PLA1A phospholipase A1 member A 316960 3 3 3 3 1 2 0 0 0 0 0.34 0.95 -6464 ZNF547 zinc finger protein 547 273504 4 3 4 0 2 1 1 0 0 0 0.34 0.95 -6465 NUTF2 nuclear transport factor 2 89600 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6466 DPY19L2 dpy-19-like 2 (C. elegans) 514824 6 5 6 2 1 2 2 0 1 0 0.34 0.95 -6467 GNG4 guanine nucleotide binding protein (G protein), gamma 4 52864 1 1 1 0 1 0 0 0 0 0 0.34 0.95 -6468 KLC2 kinesin light chain 2 416932 8 7 8 0 6 2 0 0 0 0 0.34 0.95 -6469 INTS3 integrator complex subunit 3 727776 6 6 6 0 4 1 1 0 0 0 0.34 0.95 -6470 ARHGAP11A Rho GTPase activating protein 11A 704032 5 5 5 3 1 3 0 0 1 0 0.34 0.95 -6471 PPP3CA protein phosphatase 3 (formerly 2B), catalytic subunit, alpha isoform 363328 3 3 3 0 2 0 0 0 1 0 0.34 0.95 -6472 ZNF248 zinc finger protein 248 393344 5 4 4 0 0 3 2 0 0 0 0.34 0.95 -6473 NUP85 nucleoporin 85kDa 458528 4 4 4 0 2 1 0 1 0 0 0.34 0.95 -6474 DUSP7 dual specificity phosphatase 7 220444 2 2 2 2 1 0 1 0 0 0 0.34 0.95 -6475 AZGP1 alpha-2-glycoprotein 1, zinc-binding 204512 2 2 2 1 0 1 1 0 0 0 0.34 0.95 -6476 C3orf14 chromosome 3 open reading frame 14 90272 1 1 1 0 1 0 0 0 0 0 0.34 0.95 -6477 LIPF lipase, gastric 276192 3 3 3 1 0 2 1 0 0 0 0.34 0.95 -6478 CRISP3 cysteine-rich secretory protein 3 171584 1 1 1 1 0 0 1 0 0 0 0.34 0.95 -6479 SCNN1B sodium channel, nonvoltage-gated 1, beta (Liddle syndrome) 429072 4 4 4 0 2 0 1 0 1 0 0.34 0.95 -6480 DMP1 dentin matrix acidic phosphoprotein 349888 2 2 2 2 0 1 0 0 1 0 0.34 0.95 -6481 NR6A1 nuclear receptor subfamily 6, group A, member 1 308896 3 3 3 1 0 2 1 0 0 0 0.34 0.95 -6482 SECTM1 secreted and transmembrane 1 170912 2 2 2 0 1 1 0 0 0 0 0.34 0.95 -6483 GPR63 G protein-coupled receptor 63 283136 4 3 4 1 1 1 2 0 0 0 0.34 0.95 -6484 ROPN1B ropporin, rhophilin associated protein 1B 145180 1 1 1 1 0 0 0 1 0 0 0.34 0.95 -6485 RPGRIP1 retinitis pigmentosa GTPase regulator interacting protein 1 836392 13 7 13 1 6 4 0 0 1 2 0.34 0.95 -6486 MDFIC MyoD family inhibitor domain containing 167288 2 2 2 1 0 1 1 0 0 0 0.34 0.95 -6487 C9orf43 chromosome 9 open reading frame 43 322112 5 4 5 2 2 3 0 0 0 0 0.34 0.95 -6488 PIN1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 73192 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6489 HMGCLL1 3-hydroxymethyl-3-methylglutaryl-Coenzyme A lyase-like 1 257456 4 3 4 3 0 2 2 0 0 0 0.34 0.95 -6490 KCNIP3 Kv channel interacting protein 3, calsenilin 195580 2 2 2 0 0 1 1 0 0 0 0.34 0.95 -6491 ZSCAN5B 306432 3 3 3 1 1 1 1 0 0 0 0.34 0.95 -6492 CPO carboxypeptidase O 260064 3 2 3 0 1 0 2 0 0 0 0.34 0.95 -6493 ARNTL2 aryl hydrocarbon receptor nuclear translocator-like 2 435456 3 3 3 2 0 2 0 0 1 0 0.34 0.95 -6494 SLC6A14 solute carrier family 6 (amino acid transporter), member 14 437568 3 3 3 2 1 1 1 0 0 0 0.34 0.95 -6495 PGM1 phosphoglucomutase 1 426300 4 4 4 0 3 0 1 0 0 0 0.34 0.95 -6496 AHCYL1 S-adenosylhomocysteine hydrolase-like 1 361648 4 4 4 0 3 1 0 0 0 0 0.34 0.95 -6497 ELP4 elongation protein 4 homolog (S. cerevisiae) 294560 2 2 2 1 0 1 0 0 1 0 0.34 0.95 -6498 RAI14 retinoic acid induced 14 674464 9 7 9 9 3 4 2 0 0 0 0.34 0.95 -6499 HK1 hexokinase 1 656664 6 6 6 3 3 2 1 0 0 0 0.34 0.95 -6500 C1orf177 chromosome 1 open reading frame 177 263648 4 3 4 2 2 1 1 0 0 0 0.34 0.95 -6501 ATP5D ATP synthase, H+ transporting, mitochondrial F1 complex, delta subunit 38168 1 1 1 0 1 0 0 0 0 0 0.34 0.95 -6502 RPA4 replication protein A4, 34kDa 176960 3 3 3 0 1 2 0 0 0 0 0.34 0.95 -6503 C19orf62 chromosome 19 open reading frame 62 218232 2 2 2 0 0 1 1 0 0 0 0.34 0.95 -6504 SULT1A1 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 1 221984 2 2 2 0 1 0 1 0 0 0 0.34 0.95 -6505 EMCN endomucin 185920 1 1 1 1 0 0 1 0 0 0 0.34 0.95 -6506 ACTA2 actin, alpha 2, smooth muscle, aorta 261184 3 3 3 2 1 2 0 0 0 0 0.34 0.95 -6507 PPWD1 peptidylprolyl isomerase domain and WD repeat containing 1 444640 4 4 4 0 2 1 0 0 1 0 0.34 0.95 -6508 PUS10 pseudouridylate synthase 10 371392 5 3 5 2 1 2 0 0 2 0 0.34 0.95 -6509 PPPDE2 117852 1 1 1 1 0 1 0 0 0 0 0.34 0.95 -6510 MYL4 myosin, light chain 4, alkali; atrial, embryonic 138432 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6511 SRF serum response factor (c-fos serum response element-binding transcription factor) 250852 3 3 3 0 1 1 1 0 0 0 0.34 0.95 -6512 SEC22B SEC22 vesicle trafficking protein homolog B (S. cerevisiae) 149632 3 2 3 0 1 0 1 0 1 0 0.34 0.95 -6513 TRIML1 tripartite motif family-like 1 313236 4 4 4 2 3 1 0 0 0 0 0.34 0.95 -6514 SDCCAG1 serologically defined colon cancer antigen 1 753312 10 6 10 3 2 4 3 0 1 0 0.34 0.95 -6515 RNF135 ring finger protein 135 211232 2 2 2 0 1 1 0 0 0 0 0.34 0.95 -6516 FAM125B family with sequence similarity 125, member B 192160 2 2 2 2 0 1 0 0 1 0 0.34 0.95 -6517 HPD 4-hydroxyphenylpyruvate dioxygenase 277312 4 4 4 1 1 2 1 0 0 0 0.34 0.95 -6518 POLR2J3 73248 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6519 SNURF SNRPN upstream reading frame 51072 1 1 1 0 0 1 0 0 0 0 0.34 0.95 -6520 ABCD4 ATP-binding cassette, sub-family D (ALD), member 4 424928 5 4 5 0 3 1 0 0 1 0 0.34 0.95 -6521 BRD9 bromodomain containing 9 322728 3 3 3 4 1 1 1 0 0 0 0.34 0.95 -6522 SELT 112360 1 1 1 0 1 0 0 0 0 0 0.34 0.95 -6523 UQCRFS1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 137760 2 2 2 1 1 0 1 0 0 0 0.34 0.95 -6524 ABT1 activator of basal transcription 1 177744 3 3 3 0 1 1 1 0 0 0 0.34 0.95 -6525 NUDT12 nudix (nucleoside diphosphate linked moiety X)-type motif 12 316512 2 2 2 0 0 1 1 0 0 0 0.34 0.95 -6526 AKAP12 A kinase (PRKA) anchor protein (gravin) 12 1170176 14 10 13 6 4 8 1 0 1 0 0.35 0.95 -6527 TRPM2 transient receptor potential cation channel, subfamily M, member 2 925496 11 11 11 5 7 3 0 0 1 0 0.35 0.95 -6528 DNHD1 dynein heavy chain domain 1 1081964 10 8 10 1 4 2 2 0 2 0 0.35 0.95 -6529 VGLL4 vestigial like 4 (Drosophila) 189128 2 2 2 0 1 0 1 0 0 0 0.35 0.95 -6530 C8orf41 chromosome 8 open reading frame 41 344372 5 4 5 4 1 4 0 0 0 0 0.35 0.95 -6531 IQSEC2 IQ motif and Sec7 domain 2 615512 5 5 5 1 1 2 1 0 1 0 0.35 0.95 -6532 RDH12 retinol dehydrogenase 12 (all-trans/9-cis/11-cis) 219296 3 3 3 0 2 1 0 0 0 0 0.35 0.95 -6533 PPIB peptidylprolyl isomerase B (cyclophilin B) 150220 1 1 1 1 0 0 1 0 0 0 0.35 0.95 -6534 SLC25A15 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 208320 2 2 2 0 0 0 0 1 1 0 0.35 0.95 -6535 SFRS18 splicing factor, arginine/serine-rich 18 550592 5 5 5 0 0 3 1 0 1 0 0.35 0.95 -6536 ZNF107 zinc finger protein 107 528640 7 5 7 3 1 5 1 0 0 0 0.35 0.95 -6537 TMPRSS5 transmembrane protease, serine 5 (spinesin) 189272 2 2 2 0 1 1 0 0 0 0 0.35 0.95 -6538 CDKL4 cyclin-dependent kinase-like 4 219520 2 2 2 0 0 1 0 0 1 0 0.35 0.95 -6539 TTC23 tetratricopeptide repeat domain 23 310016 2 2 2 1 1 0 1 0 0 0 0.35 0.95 -6540 CCDC115 coiled-coil domain containing 115 126112 2 2 2 0 1 0 1 0 0 0 0.35 0.95 -6541 TSHB thyroid stimulating hormone, beta 95200 1 1 1 1 0 1 0 0 0 0 0.35 0.95 -6542 APCDD1 adenomatosis polyposis coli down-regulated 1 338240 5 5 5 0 3 2 0 0 0 0 0.35 0.95 -6543 MTDH metadherin 362068 4 4 4 1 1 2 1 0 0 0 0.35 0.95 -6544 MATN4 matrilin 4 374004 4 4 4 1 2 0 2 0 0 0 0.35 0.95 -6545 BCAS4 breast carcinoma amplified sequence 4 100352 2 2 2 0 2 0 0 0 0 0 0.35 0.95 -6546 SDR39U1 202944 2 2 2 0 1 0 0 0 1 0 0.35 0.95 -6547 TMPO thymopoietin 630616 6 4 6 2 0 1 2 0 0 3 0.35 0.95 -6548 FAM192A 176736 2 2 2 1 1 1 0 0 0 0 0.35 0.95 -6549 TECTB tectorin beta 230720 3 3 2 1 0 3 0 0 0 0 0.35 0.95 -6550 EIF4ENIF1 eukaryotic translation initiation factor 4E nuclear import factor 1 679392 7 6 7 1 4 2 1 0 0 0 0.35 0.95 -6551 PGAP2 219968 3 3 3 1 1 2 0 0 0 0 0.35 0.95 -6552 MORN4 102368 1 1 1 0 0 1 0 0 0 0 0.35 0.95 -6553 GLTSCR1 glioma tumor suppressor candidate region gene 1 343496 3 3 3 1 0 2 0 0 1 0 0.35 0.95 -6554 C2orf56 chromosome 2 open reading frame 56 305984 3 3 3 0 1 0 2 0 0 0 0.35 0.95 -6555 TRABD TraB domain containing 203280 1 1 1 0 0 0 0 0 1 0 0.35 0.95 -6556 PCF11 PCF11, cleavage and polyadenylation factor subunit, homolog (S. cerevisiae) 1032408 10 7 10 2 3 5 1 0 1 0 0.35 0.95 -6557 TTYH1 tweety homolog 1 (Drosophila) 263464 3 3 3 2 0 2 1 0 0 0 0.35 0.95 -6558 SYT9 synaptotagmin IX 303520 5 3 5 3 2 2 1 0 0 0 0.35 0.95 -6559 KDM5C 1045224 9 8 9 0 1 5 1 0 2 0 0.35 0.95 -6560 SVIP 52388 1 1 1 0 0 1 0 0 0 0 0.35 0.95 -6561 TTC1 tetratricopeptide repeat domain 1 203168 2 2 2 1 0 0 1 1 0 0 0.35 0.95 -6562 HP1BP3 heterochromatin protein 1, binding protein 3 383040 4 4 4 0 2 0 2 0 0 0 0.35 0.95 -6563 RANBP6 RAN binding protein 6 744044 6 5 6 2 2 3 0 0 1 0 0.35 0.95 -6564 FBXO47 F-box protein 47 313376 3 3 3 1 0 2 1 0 0 0 0.35 0.95 -6565 EGLN3 egl nine homolog 3 (C. elegans) 158116 2 2 2 0 1 1 0 0 0 0 0.35 0.95 -6566 UBE2CBP ubiquitin-conjugating enzyme E2C binding protein 271040 2 2 2 1 0 2 0 0 0 0 0.35 0.95 -6567 LIPC lipase, hepatic 344064 4 4 4 3 0 2 1 0 1 0 0.35 0.95 -6568 RIBC2 RIB43A domain with coiled-coils 2 204772 2 2 2 1 0 1 0 0 1 0 0.35 0.95 -6569 DPH3 DPH3, KTI11 homolog (S. cerevisiae) 58464 1 1 1 1 0 1 0 0 0 0 0.35 0.95 -6570 RNF113B ring finger protein 113B 212884 4 4 3 0 3 0 1 0 0 0 0.35 0.95 -6571 UGT2B28 UDP glucuronosyltransferase 2 family, polypeptide B28 361536 3 3 3 1 0 2 1 0 0 0 0.35 0.95 -6572 FAM98C family with sequence similarity 98, member C 169932 2 2 2 1 0 1 0 0 1 0 0.35 0.95 -6573 RFX4 regulatory factor X, 4 (influences HLA class II expression) 556640 4 4 4 3 0 1 0 0 3 0 0.35 0.95 -6574 GIMAP2 GTPase, IMAP family member 2 228928 1 1 1 0 0 0 0 0 1 0 0.35 0.95 -6575 C12orf56 chromosome 12 open reading frame 56 304308 3 3 3 1 1 1 0 0 1 0 0.35 0.95 -6576 CYP2F1 cytochrome P450, family 2, subfamily F, polypeptide 1 318628 4 4 4 0 3 0 0 0 1 0 0.35 0.95 -6577 NCF2 neutrophil cytosolic factor 2 (65kDa, chronic granulomatous disease, autosomal 2) 367584 2 2 2 0 0 1 0 0 1 0 0.35 0.95 -6578 LY9 lymphocyte antigen 9 479192 4 3 4 1 0 2 0 0 0 2 0.35 0.95 -6579 ATP5J2 ATP synthase, H+ transporting, mitochondrial F0 complex, subunit F2 69664 1 1 1 0 0 0 1 0 0 0 0.35 0.95 -6580 STRA6 stimulated by retinoic acid gene 6 homolog (mouse) 438592 4 4 4 0 1 2 1 0 0 0 0.35 0.95 -6581 FBXO22 F-box protein 22 267008 4 3 4 0 1 3 0 0 0 0 0.35 0.95 -6582 SERINC1 serine incorporator 1 314048 2 2 2 2 0 1 1 0 0 0 0.35 0.95 -6583 TALDO1 transaldolase 1 225540 3 3 3 2 1 1 1 0 0 0 0.35 0.95 -6584 C11orf41 chromosome 11 open reading frame 41 1239312 11 9 11 5 3 2 3 1 2 0 0.35 0.95 -6585 PAFAH1B1 platelet-activating factor acetylhydrolase, isoform Ib, alpha subunit 45kDa 285152 3 3 3 1 2 0 1 0 0 0 0.35 0.95 -6586 OR11G2 olfactory receptor, family 11, subfamily G, member 2 233408 2 2 2 2 0 0 1 0 1 0 0.35 0.95 -6587 JSRP1 junctional sarcoplasmic reticulum protein 1 124264 2 2 2 0 1 1 0 0 0 0 0.35 0.95 -6588 KRT6A keratin 6A 387660 4 4 4 3 3 0 1 0 0 0 0.35 0.95 -6589 ELAC1 elaC homolog 1 (E. coli) 247296 4 3 4 0 1 0 3 0 0 0 0.35 0.95 -6590 SPG11 spastic paraplegia 11 (autosomal recessive) 1650040 12 9 11 4 1 4 3 0 4 0 0.35 0.95 -6591 UBE2E2 ubiquitin-conjugating enzyme E2E 2 (UBC4/5 homolog, yeast) 140224 1 1 1 2 0 1 0 0 0 0 0.35 0.95 -6592 CD244 CD244 molecule, natural killer cell receptor 2B4 256256 3 3 3 0 0 3 0 0 0 0 0.35 0.95 -6593 TP53RK TP53 regulating kinase 121352 1 1 1 0 0 0 0 0 1 0 0.35 0.95 -6594 UGT1A5 UDP glucuronosyltransferase 1 family, polypeptide A5 364000 3 3 3 1 1 1 1 0 0 0 0.35 0.95 -6595 TMEM14B transmembrane protein 14B 81760 1 1 1 0 1 0 0 0 0 0 0.35 0.95 -6596 KRTAP5-6 keratin associated protein 5-6 88256 1 1 1 1 0 0 1 0 0 0 0.35 0.95 -6597 CAPRIN1 cell cycle associated protein 1 479248 5 4 5 1 2 1 2 0 0 0 0.35 0.96 -6598 C17orf59 chromosome 17 open reading frame 59 128408 2 2 2 0 0 1 1 0 0 0 0.35 0.96 -6599 NPR2 natriuretic peptide receptor B/guanylate cyclase B (atrionatriuretic peptide receptor B) 719096 10 8 10 3 3 7 0 0 0 0 0.35 0.96 -6600 ZSCAN16 zinc finger and SCAN domain containing 16 237216 2 2 2 2 0 1 1 0 0 0 0.35 0.96 -6601 PCOLCE procollagen C-endopeptidase enhancer 291376 2 2 2 1 0 0 0 0 2 0 0.35 0.96 -6602 LBH limb bud and heart development homolog (mouse) 73920 1 1 1 0 1 0 0 0 0 0 0.35 0.96 -6603 FBXO36 F-box protein 36 130592 1 1 1 0 0 1 0 0 0 0 0.35 0.96 -6604 ARHGAP12 Rho GTPase activating protein 12 585312 9 5 9 2 2 4 2 0 1 0 0.35 0.96 -6605 OR52W1 olfactory receptor, family 52, subfamily W, member 1 216608 2 2 1 0 2 0 0 0 0 0 0.35 0.96 -6606 HUWE1 HECT, UBA and WWE domain containing 1 2966336 18 16 18 7 5 5 7 1 0 0 0.35 0.96 -6607 SETDB2 SET domain, bifurcated 2 496384 3 3 3 0 0 0 2 0 1 0 0.35 0.96 -6608 CPT1B carnitine palmitoyltransferase 1B (muscle) 496692 5 4 5 0 0 3 0 0 2 0 0.35 0.96 -6609 C14orf177 chromosome 14 open reading frame 177 86464 1 1 1 0 0 1 0 0 0 0 0.35 0.96 -6610 NT5C3 5'-nucleotidase, cytosolic III 233324 2 2 2 0 1 1 0 0 0 0 0.35 0.96 -6611 C12orf24 chromosome 12 open reading frame 24 157472 2 2 2 0 0 1 1 0 0 0 0.35 0.96 -6612 ARMC8 armadillo repeat containing 8 478016 6 5 6 2 5 0 1 0 0 0 0.35 0.96 -6613 KIAA0195 KIAA0195 930188 6 6 6 2 1 4 0 0 1 0 0.35 0.96 -6614 BEX1 brain expressed, X-linked 1 85568 1 1 1 0 0 0 1 0 0 0 0.35 0.96 -6615 SLC4A9 solute carrier family 4, sodium bicarbonate cotransporter, member 9 639588 4 4 4 0 1 2 0 1 0 0 0.35 0.96 -6616 LDLRAD3 low density lipoprotein receptor class A domain containing 3 226688 3 3 3 1 2 0 1 0 0 0 0.35 0.96 -6617 EPCAM 201824 1 1 1 0 0 0 0 0 1 0 0.35 0.96 -6618 OR2W5 olfactory receptor, family 2, subfamily W, member 5 216608 2 2 2 0 1 0 1 0 0 0 0.35 0.96 -6619 PDCD1LG2 programmed cell death 1 ligand 2 189504 1 1 1 0 1 0 0 0 0 0 0.35 0.96 -6620 TXNRD1 thioredoxin reductase 1 425184 3 3 3 0 1 1 0 0 1 0 0.35 0.96 -6621 SLC25A17 solute carrier family 25 (mitochondrial carrier; peroxisomal membrane protein, 34kDa), member 17 215040 3 3 3 1 2 0 1 0 0 0 0.35 0.96 -6622 MPP1 membrane protein, palmitoylated 1, 55kDa 322944 3 3 3 1 1 1 1 0 0 0 0.35 0.96 -6623 TADA3 299040 3 3 3 0 1 0 1 0 1 0 0.35 0.96 -6624 CEP76 centrosomal protein 76kDa 452676 5 3 5 0 0 2 0 0 3 0 0.35 0.96 -6625 ProSAPiP1 314160 4 4 4 0 2 1 0 0 1 0 0.35 0.96 -6626 VAT1 vesicle amine transport protein 1 homolog (T. californica) 218680 2 2 2 1 1 0 1 0 0 0 0.35 0.96 -6627 PRSS38 224224 2 2 2 0 1 0 0 0 1 0 0.35 0.96 -6628 MAPKAPK2 mitogen-activated protein kinase-activated protein kinase 2 267204 3 3 3 1 2 0 0 0 1 0 0.35 0.96 -6629 SLC44A2 solute carrier family 44, member 2 485632 5 5 5 2 2 1 2 0 0 0 0.35 0.96 -6630 FBXO11 F-box protein 11 609280 5 4 4 1 3 2 0 0 0 0 0.35 0.96 -6631 IL6 interleukin 6 (interferon, beta 2) 147616 2 2 2 2 2 0 0 0 0 0 0.35 0.96 -6632 GMPR2 guanosine monophosphate reductase 2 254688 2 2 2 2 0 1 0 0 1 0 0.35 0.96 -6633 COX7A1 cytochrome c oxidase subunit VIIa polypeptide 1 (muscle) 56800 1 1 1 0 1 0 0 0 0 0 0.35 0.96 -6634 NCBP2 nuclear cap binding protein subunit 2, 20kDa 109088 1 1 1 1 1 0 0 0 0 0 0.35 0.96 -6635 EGFLAM EGF-like, fibronectin type III and laminin G domains 700980 7 6 7 3 1 2 2 0 2 0 0.35 0.96 -6636 TCTN3 tectonic family member 3 301056 2 2 2 0 0 2 0 0 0 0 0.35 0.96 -6637 INTU inturned planar cell polarity effector homolog (Drosophila) 648032 6 6 6 2 1 3 2 0 0 0 0.35 0.96 -6638 TOR3A torsin family 3, member A 233716 3 3 3 1 2 0 0 0 1 0 0.35 0.96 -6639 C13orf31 chromosome 13 open reading frame 31 294112 2 2 2 0 0 1 0 0 1 0 0.35 0.96 -6640 FBP2 fructose-1,6-bisphosphatase 2 234752 3 3 3 1 1 2 0 0 0 0 0.35 0.96 -6641 ACTL8 actin-like 8 248416 3 3 3 1 2 0 0 1 0 0 0.35 0.96 -6642 OR9Q2 olfactory receptor, family 9, subfamily Q, member 2 212576 3 3 3 0 1 1 1 0 0 0 0.35 0.96 -6643 SLC10A6 solute carrier family 10 (sodium/bile acid cotransporter family), member 6 259392 2 2 2 0 0 1 1 0 0 0 0.35 0.96 -6644 TTC30B tetratricopeptide repeat domain 30B 425712 6 4 6 1 1 1 2 0 2 0 0.35 0.96 -6645 OBP2B odorant binding protein 2B 120288 1 1 1 0 0 1 0 0 0 0 0.35 0.96 -6646 ACSL5 acyl-CoA synthetase long-chain family member 5 516096 4 4 4 1 1 0 2 1 0 0 0.35 0.96 -6647 GABBR1 gamma-aminobutyric acid (GABA) B receptor, 1 480192 6 5 6 7 3 2 0 0 1 0 0.35 0.96 -6648 HABP2 hyaluronan binding protein 2 388640 3 3 3 2 0 2 0 0 1 0 0.35 0.96 -6649 REG3G regenerating islet-derived 3 gamma 122752 1 1 1 2 0 1 0 0 0 0 0.35 0.96 -6650 FBXO31 F-box protein 31 270536 4 4 4 1 3 0 1 0 0 0 0.35 0.96 -6651 IMMP1L IMP1 inner mitochondrial membrane peptidase-like (S. cerevisiae) 116704 1 1 1 0 0 0 1 0 0 0 0.35 0.96 -6652 RNF170 ring finger protein 170 179424 1 1 1 0 0 0 0 0 1 0 0.35 0.96 -6653 TDG thymine-DNA glycosylase 282884 3 3 3 0 0 2 1 0 0 0 0.35 0.96 -6654 IGDCC4 715576 5 5 5 2 2 2 0 0 1 0 0.35 0.96 -6655 COL15A1 collagen, type XV, alpha 1 970284 11 7 11 8 2 6 2 0 1 0 0.35 0.96 -6656 MTMR11 myotubularin related protein 11 452704 3 3 3 0 1 0 0 0 2 0 0.35 0.96 -6657 TLR7 toll-like receptor 7 707392 7 6 7 1 0 4 3 0 0 0 0.35 0.96 -6658 LONP2 lon peptidase 2, peroxisomal 568304 4 4 4 2 1 2 1 0 0 0 0.35 0.96 -6659 HEXB hexosaminidase B (beta polypeptide) 359856 3 3 3 1 1 1 1 0 0 0 0.35 0.96 -6660 ANKRD46 ankyrin repeat domain 46 156576 1 1 1 1 0 0 0 0 1 0 0.35 0.96 -6661 GPR21 G protein-coupled receptor 21 236096 4 3 3 0 2 1 1 0 0 0 0.36 0.96 -6662 MMP21 matrix metallopeptidase 21 285936 5 4 5 0 2 2 1 0 0 0 0.36 0.96 -6663 PCDHGC5 protocadherin gamma subfamily C, 5 640780 3 3 3 1 0 1 1 0 1 0 0.36 0.96 -6664 DNAJB9 DnaJ (Hsp40) homolog, subfamily B, member 9 152320 3 2 3 0 1 1 1 0 0 0 0.36 0.96 -6665 AQP3 aquaporin 3 (Gill blood group) 199712 2 2 2 1 1 1 0 0 0 0 0.36 0.96 -6666 NKX6-1 NK6 homeobox 1 121616 2 2 2 0 0 1 0 0 1 0 0.36 0.96 -6667 GNA12 guanine nucleotide binding protein (G protein) alpha 12 221612 2 2 2 3 0 0 0 0 2 0 0.36 0.96 -6668 HEPACAM2 329728 3 3 3 1 0 1 2 0 0 0 0.36 0.96 -6669 TCFL5 transcription factor-like 5 (basic helix-loop-helix) 223524 3 3 3 1 1 1 1 0 0 0 0.36 0.96 -6670 LPP LIM domain containing preferred translocation partner in lipoma 418824 3 3 3 2 0 3 0 0 0 0 0.36 0.96 -6671 PTGS2 prostaglandin-endoperoxide synthase 2 (prostaglandin G/H synthase and cyclooxygenase) 402976 3 3 3 2 0 3 0 0 0 0 0.36 0.96 -6672 C15orf48 chromosome 15 open reading frame 48 60032 1 1 1 0 0 1 0 0 0 0 0.36 0.96 -6673 USP11 ubiquitin specific peptidase 11 644160 8 7 7 1 3 3 1 0 1 0 0.36 0.96 -6674 PRSS23 protease, serine, 23 258860 3 3 3 0 2 0 0 0 1 0 0.36 0.96 -6675 GALNS galactosamine (N-acetyl)-6-sulfate sulfatase (Morquio syndrome, mucopolysaccharidosis type IVA) 308912 4 4 4 1 3 0 1 0 0 0 0.36 0.96 -6676 OR7D2 olfactory receptor, family 7, subfamily D, member 2 211232 3 2 3 0 1 2 0 0 0 0 0.36 0.96 -6677 STH saitohin 86996 1 1 1 0 0 1 0 0 0 0 0.36 0.96 -6678 C5orf4 chromosome 5 open reading frame 4 231616 3 3 2 0 2 1 0 0 0 0 0.36 0.96 -6679 CYP20A1 cytochrome P450, family 20, subfamily A, polypeptide 1 322784 2 2 2 0 0 0 2 0 0 0 0.36 0.96 -6680 CEP192 centrosomal protein 192kDa 1336832 10 8 10 3 3 1 2 0 2 2 0.36 0.96 -6681 ZNF654 zinc finger protein 654 380792 3 3 3 0 0 0 2 0 1 0 0.36 0.96 -6682 CYP46A1 cytochrome P450, family 46, subfamily A, polypeptide 1 296520 2 2 2 1 1 1 0 0 0 0 0.36 0.96 -6683 SUMF1 sulfatase modifying factor 1 230668 2 2 2 0 0 2 0 0 0 0 0.36 0.96 -6684 EGR1 early growth response 1 353668 3 3 3 2 1 0 0 0 2 0 0.36 0.96 -6685 MYL10 117600 2 2 2 1 1 1 0 0 0 0 0.36 0.96 -6686 YLPM1 YLP motif containing 1 1416636 11 9 11 2 3 2 3 1 2 0 0.36 0.96 -6687 CAMKV CaM kinase-like vesicle-associated 345632 5 3 5 1 0 2 0 0 0 3 0.36 0.96 -6688 CCDC75 coiled-coil domain containing 75 109000 1 1 1 0 0 1 0 0 0 0 0.36 0.96 -6689 LTBP1 latent transforming growth factor beta binding protein 1 1106336 9 9 9 4 2 4 2 0 1 0 0.36 0.96 -6690 NPDC1 neural proliferation, differentiation and control, 1 132316 1 1 1 0 0 0 0 0 1 0 0.36 0.96 -6691 BZW1 basic leucine zipper and W2 domains 1 229520 1 1 1 0 0 0 0 0 1 0 0.36 0.96 -6692 TCP11 t-complex 11 homolog (mouse) 361984 3 3 3 0 1 2 0 0 0 0 0.36 0.96 -6693 ANXA13 annexin A13 251328 3 3 3 0 0 3 0 0 0 0 0.36 0.96 -6694 YIF1A Yip1 interacting factor homolog A (S. cerevisiae) 158480 1 1 1 1 0 0 0 0 1 0 0.36 0.96 -6695 ANKRD5 ankyrin repeat domain 5 530124 6 4 6 6 1 2 1 1 1 0 0.36 0.96 -6696 IDI1 isopentenyl-diphosphate delta isomerase 1 162736 1 1 1 1 0 0 0 0 1 0 0.36 0.96 -6697 FBXO3 F-box protein 3 329056 3 3 3 0 2 1 0 0 0 0 0.36 0.96 -6698 RRP8 308140 2 2 2 1 1 1 0 0 0 0 0.36 0.96 -6699 FBLN1 fibulin 1 541960 7 6 7 3 4 3 0 0 0 0 0.36 0.96 -6700 XRCC3 X-ray repair complementing defective repair in Chinese hamster cells 3 172840 1 1 1 0 0 0 0 0 1 0 0.36 0.96 -6701 MPP7 membrane protein, palmitoylated 7 (MAGUK p55 subfamily member 7) 400720 3 3 3 1 0 1 2 0 0 0 0.36 0.96 -6702 UHMK1 U2AF homology motif (UHM) kinase 1 275128 3 3 3 0 2 1 0 0 0 0 0.36 0.96 -6703 MFSD4 major facilitator superfamily domain containing 4 334688 2 2 2 1 1 0 0 0 1 0 0.36 0.96 -6704 LHFP lipoma HMGIC fusion partner 137592 1 1 1 0 1 0 0 0 0 0 0.36 0.96 -6705 ATP6V1C1 ATPase, H+ transporting, lysosomal 42kDa, V1 subunit C1 268128 2 2 2 0 1 1 0 0 0 0 0.36 0.96 -6706 GRIN2D glutamate receptor, ionotropic, N-methyl D-aspartate 2D 474884 5 5 5 4 3 0 2 0 0 0 0.36 0.96 -6707 PTPRD protein tyrosine phosphatase, receptor type, D 1316624 16 11 15 3 5 8 3 0 0 0 0.36 0.96 -6708 TSPO2 117600 1 1 1 0 1 0 0 0 0 0 0.36 0.96 -6709 LAG3 lymphocyte-activation gene 3 295904 3 3 3 0 2 1 0 0 0 0 0.36 0.96 -6710 DRD2 dopamine receptor D2 304640 5 4 5 0 3 2 0 0 0 0 0.36 0.96 -6711 SLC25A16 solute carrier family 25 (mitochondrial carrier; Graves disease autoantigen), member 16 208160 2 2 2 0 0 1 0 0 1 0 0.36 0.96 -6712 ZSWIM1 zinc finger, SWIM-type containing 1 327488 3 3 3 1 0 2 1 0 0 0 0.36 0.96 -6713 CCNL1 cyclin L1 334400 3 3 3 1 1 0 1 0 1 0 0.36 0.96 -6714 CLEC10A C-type lectin domain family 10, member A 222208 2 2 2 0 1 1 0 0 0 0 0.36 0.96 -6715 SILV silver homolog (mouse) 454720 3 3 3 1 1 1 1 0 0 0 0.36 0.96 -6716 IRS1 insulin receptor substrate 1 759164 9 8 9 2 2 3 2 0 2 0 0.36 0.96 -6717 C2orf50 chromosome 2 open reading frame 50 101136 1 1 1 0 0 0 1 0 0 0 0.36 0.96 -6718 TMEM177 transmembrane protein 177 210560 3 3 3 0 0 2 1 0 0 0 0.36 0.96 -6719 TXLNA taxilin alpha 374368 4 4 4 1 3 0 1 0 0 0 0.36 0.96 -6720 FANCA Fanconi anemia, complementation group A 964908 7 7 7 1 4 1 2 0 0 0 0.36 0.96 -6721 SPNS3 spinster homolog 3 (Drosophila) 336308 3 3 3 1 1 1 0 0 1 0 0.36 0.96 -6722 SLC13A4 solute carrier family 13 (sodium/sulfate symporters), member 4 421672 5 5 5 1 4 0 1 0 0 0 0.36 0.96 -6723 C20orf30 chromosome 20 open reading frame 30 87360 1 1 1 0 1 0 0 0 0 0 0.36 0.96 -6724 NRF1 nuclear respiratory factor 1 347648 4 4 4 1 2 0 1 0 1 0 0.36 0.96 -6725 NSUN4 NOL1/NOP2/Sun domain family, member 4 263960 2 2 2 0 0 1 1 0 0 0 0.36 0.96 -6726 SPAG8 sperm associated antigen 8 388668 4 4 4 2 1 1 2 0 0 0 0.36 0.96 -6727 SLC16A1 solute carrier family 16, member 1 (monocarboxylic acid transporter 1) 340256 3 3 3 1 0 2 1 0 0 0 0.36 0.96 -6728 CCDC25 coiled-coil domain containing 25 144160 1 1 1 0 0 0 0 0 1 0 0.36 0.96 -6729 PTHLH parathyroid hormone-like hormone 118916 1 1 1 1 0 1 0 0 0 0 0.36 0.96 -6730 GABRR3 gamma-aminobutyric acid (GABA) receptor, rho 3 322424 2 2 2 0 1 0 1 0 0 0 0.36 0.96 -6731 SLC9A6 solute carrier family 9 (sodium/hydrogen exchanger), member 6 477744 5 4 5 2 2 3 0 0 0 0 0.36 0.96 -6732 CEACAM16 carcinoembryonic antigen-related cell adhesion molecule 16 244560 2 2 1 0 0 0 0 0 2 0 0.36 0.96 -6733 GBE1 glucan (1,4-alpha-), branching enzyme 1 (glycogen branching enzyme, Andersen disease, glycogen storage disease type IV) 483264 5 5 5 1 2 1 2 0 0 0 0.36 0.96 -6734 SERPINA11 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 11 287840 4 3 4 0 0 2 1 0 1 0 0.36 0.96 -6735 FTCD formiminotransferase cyclodeaminase 201068 2 2 2 0 1 0 0 0 1 0 0.36 0.96 -6736 KLK13 kallikrein-related peptidase 13 183680 2 2 2 2 0 1 0 0 1 0 0.36 0.96 -6737 HNRNPA2B1 heterogeneous nuclear ribonucleoprotein A2/B1 247744 2 2 2 0 0 2 0 0 0 0 0.36 0.96 -6738 TEKT5 tektin 5 332444 5 5 4 4 4 0 1 0 0 0 0.36 0.97 -6739 IL13RA1 interleukin 13 receptor, alpha 1 276864 2 2 2 0 0 1 1 0 0 0 0.36 0.97 -6740 USP7 ubiquitin specific peptidase 7 (herpes virus-associated) 750400 9 8 9 4 6 0 2 0 1 0 0.36 0.97 -6741 SLC12A2 solute carrier family 12 (sodium/potassium/chloride transporters), member 2 742592 9 6 9 3 2 2 5 0 0 0 0.36 0.97 -6742 PTK7 PTK7 protein tyrosine kinase 7 723108 9 8 9 2 5 3 0 1 0 0 0.36 0.97 -6743 RAB5B RAB5B, member RAS oncogene family 149632 1 1 1 0 0 0 1 0 0 0 0.36 0.97 -6744 LHB luteinizing hormone beta polypeptide 95928 1 1 1 0 1 0 0 0 0 0 0.36 0.97 -6745 COX16 75488 1 1 1 0 0 0 1 0 0 0 0.36 0.97 -6746 PRRX1 paired related homeobox 1 181104 3 3 3 0 2 1 0 0 0 0 0.36 0.97 -6747 PEX19 peroxisomal biogenesis factor 19 208768 2 2 2 0 0 1 1 0 0 0 0.36 0.97 -6748 HBD hemoglobin, delta 102144 1 1 1 2 0 1 0 0 0 0 0.36 0.97 -6749 C13orf28 chromosome 13 open reading frame 28 137984 2 2 2 2 0 1 1 0 0 0 0.36 0.97 -6750 HNRNPD 210424 2 2 2 0 0 0 2 0 0 0 0.36 0.97 -6751 TMEM211 89152 1 1 1 0 1 0 0 0 0 0 0.36 0.97 -6752 UBXN2B 210560 2 2 2 0 1 0 1 0 0 0 0.36 0.97 -6753 GSTM5 glutathione S-transferase M5 154336 1 1 1 0 1 0 0 0 0 0 0.36 0.97 -6754 FAM90A1 family with sequence similarity 90, member A1 253652 3 3 3 2 2 1 0 0 0 0 0.36 0.97 -6755 HRH2 histamine receptor H2 242816 4 3 4 2 3 1 0 0 0 0 0.36 0.97 -6756 SPDYC speedy homolog C (Drosophila) 203840 2 2 2 0 0 2 0 0 0 0 0.36 0.97 -6757 MAGEA4 melanoma antigen family A, 4 209216 2 2 2 1 0 1 1 0 0 0 0.36 0.97 -6758 HOXA11 homeobox A11 167160 2 2 2 0 1 1 0 0 0 0 0.36 0.97 -6759 PTPLA protein tyrosine phosphatase-like (proline instead of catalytic arginine), member A 142016 1 1 1 1 0 0 1 0 0 0 0.36 0.97 -6760 TM7SF4 transmembrane 7 superfamily member 4 319200 3 2 3 0 0 1 1 0 1 0 0.36 0.97 -6761 ARL4D ADP-ribosylation factor-like 4D 124124 1 1 1 0 0 0 0 1 0 0 0.36 0.97 -6762 HAVCR1 hepatitis A virus cellular receptor 1 252176 2 2 2 0 1 0 0 0 1 0 0.36 0.97 -6763 ACO1 aconitase 1, soluble 616000 5 4 5 2 0 2 2 0 1 0 0.36 0.97 -6764 TRIM4 tripartite motif-containing 4 285404 3 3 3 0 0 3 0 0 0 0 0.36 0.97 -6765 LDB2 LIM domain binding 2 258496 2 2 2 1 1 0 0 0 1 0 0.36 0.97 -6766 EPB41L4B erythrocyte membrane protein band 4.1 like 4B 588208 5 5 5 2 4 0 0 0 1 0 0.36 0.97 -6767 PLAC8L1 PLAC8-like 1 123200 1 1 1 1 0 1 0 0 0 0 0.36 0.97 -6768 CNTF ciliary neurotrophic factor 136864 2 2 2 2 1 0 1 0 0 0 0.36 0.97 -6769 GALNT9 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 9 (GalNAc-T9) 165144 2 2 2 0 2 0 0 0 0 0 0.36 0.97 -6770 TIMP4 TIMP metallopeptidase inhibitor 4 143668 2 2 2 0 1 0 1 0 0 0 0.36 0.97 -6771 C9orf95 chromosome 9 open reading frame 95 141568 1 1 1 1 0 1 0 0 0 0 0.36 0.97 -6772 MLLT11 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 11 62048 2 1 2 0 1 1 0 0 0 0 0.36 0.97 -6773 C6orf114 chromosome 6 open reading frame 114 75688 1 1 1 0 1 0 0 0 0 0 0.36 0.97 -6774 YIPF7 Yip1 domain family, member 7 191216 1 1 1 0 0 0 1 0 0 0 0.36 0.97 -6775 NUBP1 nucleotide binding protein 1 (MinD homolog, E. coli) 222576 2 2 2 1 1 1 0 0 0 0 0.36 0.97 -6776 NDNL2 necdin-like 2 177856 2 2 2 0 0 1 0 0 1 0 0.36 0.97 -6777 DNAI1 dynein, axonemal, intermediate chain 1 474312 6 4 6 2 3 1 2 0 0 0 0.36 0.97 -6778 SLFN11 schlafen family member 11 571508 8 6 8 6 5 2 1 0 0 0 0.36 0.97 -6779 RDH8 retinol dehydrogenase 8 (all-trans) 215040 3 3 3 0 2 0 1 0 0 0 0.36 0.97 -6780 NEFL neurofilament, light polypeptide 68kDa 336640 4 3 4 0 2 0 0 0 2 0 0.36 0.97 -6781 BBOX1 butyrobetaine (gamma), 2-oxoglutarate dioxygenase (gamma-butyrobetaine hydroxylase) 1 267008 3 3 2 0 1 0 2 0 0 0 0.36 0.97 -6782 CHCHD6 coiled-coil-helix-coiled-coil-helix domain containing 6 150848 2 2 2 1 1 1 0 0 0 0 0.36 0.97 -6783 APOE apolipoprotein E 113820 1 1 1 0 0 0 0 1 0 0 0.36 0.97 -6784 NR0B1 nuclear receptor subfamily 0, group B, member 1 240232 3 3 3 1 2 1 0 0 0 0 0.36 0.97 -6785 ARSB arylsulfatase B 323764 5 4 5 0 3 1 1 0 0 0 0.36 0.97 -6786 STK16 serine/threonine kinase 16 211904 3 3 3 0 1 1 1 0 0 0 0.36 0.97 -6787 CLEC2D C-type lectin domain family 2, member D 152768 1 1 1 0 0 1 0 0 0 0 0.36 0.97 -6788 BCCIP BRCA2 and CDKN1A interacting protein 269920 2 2 2 1 0 0 1 0 1 0 0.36 0.97 -6789 BAT2 HLA-B associated transcript 2 1070412 11 9 11 2 6 3 0 0 2 0 0.36 0.97 -6790 IBTK inhibitor of Bruton agammaglobulinemia tyrosine kinase 934976 7 7 7 3 1 5 0 0 1 0 0.36 0.97 -6791 GH1 growth hormone 1 150976 2 2 2 1 2 0 0 0 0 0 0.36 0.97 -6792 TOP1MT topoisomerase (DNA) I, mitochondrial 402808 5 5 5 2 0 3 1 0 1 0 0.36 0.97 -6793 CHCHD3 coiled-coil-helix-coiled-coil-helix domain containing 3 155488 1 1 1 0 0 0 0 0 1 0 0.37 0.97 -6794 C12orf40 chromosome 12 open reading frame 40 449708 4 3 4 0 0 0 4 0 0 0 0.37 0.97 -6795 MID1IP1 MID1 interacting protein 1 (gastrulation specific G12 homolog (zebrafish)) 124544 2 2 2 1 1 1 0 0 0 0 0.37 0.97 -6796 OIT3 oncoprotein induced transcript 3 374976 6 5 6 3 4 1 1 0 0 0 0.37 0.97 -6797 BAT4 HLA-B associated transcript 4 203980 2 2 2 0 1 0 1 0 0 0 0.37 0.97 -6798 PARVG parvin, gamma 232764 3 3 3 1 1 1 1 0 0 0 0.37 0.97 -6799 TARBP2 TAR (HIV-1) RNA binding protein 2 237416 3 3 3 1 2 1 0 0 0 0 0.37 0.97 -6800 CSDA cold shock domain protein A 206976 2 2 2 0 0 0 1 0 1 0 0.37 0.97 -6801 BICD1 bicaudal D homolog 1 (Drosophila) 664496 6 5 6 2 2 3 1 0 0 0 0.37 0.97 -6802 GMNN geminin, DNA replication inhibitor 146496 1 1 1 2 0 0 0 0 1 0 0.37 0.97 -6803 SOCS2 suppressor of cytokine signaling 2 117544 3 2 3 0 2 0 1 0 0 0 0.37 0.97 -6804 GTF2A1 general transcription factor IIA, 1, 19/37kDa 257056 2 2 2 0 0 1 1 0 0 0 0.37 0.97 -6805 AVL9 424452 3 3 3 0 0 2 0 0 1 0 0.37 0.97 -6806 PITPNB phosphatidylinositol transfer protein, beta 192640 2 2 2 2 0 0 1 0 1 0 0.37 0.97 -6807 KIAA0495 131160 1 1 1 0 0 1 0 0 0 0 0.37 0.97 -6808 IRF5 interferon regulatory factor 5 331156 3 3 3 2 0 2 0 0 1 0 0.37 0.97 -6809 OR5B2 olfactory receptor, family 5, subfamily B, member 2 209216 2 2 2 0 0 1 1 0 0 0 0.37 0.97 -6810 VPS24 vacuolar protein sorting 24 homolog (S. cerevisiae) 155232 2 2 2 0 1 1 0 0 0 0 0.37 0.97 -6811 EMX2 empty spiracles homeobox 2 101752 4 3 4 1 3 1 0 0 0 0 0.37 0.97 -6812 LRRC50 leucine rich repeat containing 50 467520 4 4 4 2 1 1 1 0 1 0 0.37 0.97 -6813 YBX2 Y box binding protein 2 187740 3 3 3 0 3 0 0 0 0 0 0.37 0.97 -6814 MID1 midline 1 (Opitz/BBB syndrome) 456824 4 4 4 2 1 2 0 0 1 0 0.37 0.97 -6815 TMPRSS13 transmembrane protease, serine 13 381188 4 4 4 2 2 1 1 0 0 0 0.37 0.97 -6816 HTATIP2 HIV-1 Tat interactive protein 2, 30kDa 170240 2 2 2 0 0 0 1 0 1 0 0.37 0.97 -6817 OR2AK2 olfactory receptor, family 2, subfamily AK, member 2 226688 2 2 2 0 0 1 1 0 0 0 0.37 0.97 -6818 TAS2R46 taste receptor, type 2, member 46 209216 2 2 2 1 0 2 0 0 0 0 0.37 0.97 -6819 ANKRD39 ankyrin repeat domain 39 108696 1 1 1 0 0 0 0 0 1 0 0.37 0.97 -6820 FOXN3 forkhead box N3 326928 4 3 3 0 1 1 0 0 2 0 0.37 0.97 -6821 TRPM7 transient receptor potential cation channel, subfamily M, member 7 1288896 15 9 13 1 4 4 4 0 3 0 0.37 0.97 -6822 HBP1 HMG-box transcription factor 1 355040 4 3 4 0 1 0 3 0 0 0 0.37 0.97 -6823 PCDHA5 protocadherin alpha 5 629636 8 8 7 0 7 1 0 0 0 0 0.37 0.97 -6824 PPM1F protein phosphatase 1F (PP2C domain containing) 260096 1 1 1 2 0 0 0 0 1 0 0.37 0.97 -6825 C5orf28 chromosome 5 open reading frame 28 146944 2 2 2 0 1 1 0 0 0 0 0.37 0.97 -6826 POU4F3 POU class 4 homeobox 3 229432 4 4 4 2 1 3 0 0 0 0 0.37 0.97 -6827 FABP7 fatty acid binding protein 7, brain 92960 1 1 1 0 1 0 0 0 0 0 0.37 0.97 -6828 MYCBP c-myc binding protein 62300 1 1 1 0 1 0 0 0 0 0 0.37 0.97 -6829 THOC7 THO complex 7 homolog (Drosophila) 139776 1 1 1 0 0 0 1 0 0 0 0.37 0.97 -6830 C8orf37 chromosome 8 open reading frame 37 145152 1 1 1 0 0 0 1 0 0 0 0.37 0.97 -6831 DERA 2-deoxyribose-5-phosphate aldolase homolog (C. elegans) 197728 2 2 2 0 1 0 0 0 1 0 0.37 0.97 -6832 SCYL2 SCY1-like 2 (S. cerevisiae) 640192 4 4 4 0 0 2 1 0 1 0 0.37 0.97 -6833 KPNA3 karyopherin alpha 3 (importin alpha 4) 366016 2 2 2 1 0 1 0 0 1 0 0.37 0.97 -6834 CGNL1 cingulin-like 1 891744 7 6 7 5 1 1 2 1 2 0 0.37 0.97 -6835 GRAMD1C GRAM domain containing 1C 457448 4 4 4 1 1 2 1 0 0 0 0.37 0.97 -6836 PSMC3IP PSMC3 interacting protein 153664 1 1 1 0 0 0 0 0 1 0 0.37 0.97 -6837 EIF3E eukaryotic translation initiation factor 3, subunit E 310000 2 2 2 0 0 1 1 0 0 0 0.37 0.97 -6838 IZUMO1 izumo sperm-egg fusion 1 243936 3 3 3 1 1 0 2 0 0 0 0.37 0.97 -6839 PPP6C protein phosphatase 6, catalytic subunit 214144 3 3 3 2 2 0 1 0 0 0 0.37 0.97 -6840 ADAM21 ADAM metallopeptidase domain 21 486752 7 4 7 4 0 4 2 0 1 0 0.37 0.97 -6841 FASTKD1 FAST kinase domains 1 582400 7 5 7 3 3 3 0 0 1 0 0.37 0.97 -6842 DPAGT1 dolichyl-phosphate (UDP-N-acetylglucosamine) N-acetylglucosaminephosphotransferase 1 (GlcNAc-1-P transferase) 282912 2 2 2 1 0 2 0 0 0 0 0.37 0.97 -6843 C9orf135 chromosome 9 open reading frame 135 159936 1 1 1 1 0 0 0 0 1 0 0.37 0.97 -6844 NUDCD1 NudC domain containing 1 401408 3 3 3 2 0 0 2 0 1 0 0.37 0.97 -6845 CDK20 221616 2 2 2 3 1 0 0 0 1 0 0.37 0.97 -6846 LDHA lactate dehydrogenase A 234528 2 2 2 1 1 0 1 0 0 0 0.37 0.97 -6847 CSGALNACT2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 371168 3 3 3 1 1 1 1 0 0 0 0.37 0.97 -6848 VCX3B variable charge, X-linked 3B 103432 1 1 1 0 0 1 0 0 0 0 0.37 0.97 -6849 RAB43 RAB43, member RAS oncogene family 143640 2 2 2 0 1 0 0 0 1 0 0.37 0.97 -6850 COX4I2 cytochrome c oxidase subunit IV isoform 2 (lung) 119168 3 2 3 1 2 1 0 0 0 0 0.37 0.97 -6851 SLC5A8 solute carrier family 5 (iodide transporter), member 8 416640 7 4 7 2 2 1 3 0 1 0 0.37 0.97 -6852 RGL4 ral guanine nucleotide dissociation stimulator-like 4 295372 3 3 3 0 1 1 1 0 0 0 0.37 0.97 -6853 PTAR1 protein prenyltransferase alpha subunit repeat containing 1 265568 2 2 2 0 0 1 1 0 0 0 0.37 0.97 -6854 ZNF41 zinc finger protein 41 517408 4 4 4 1 3 1 0 0 0 0 0.37 0.97 -6855 MCTS1 malignant T cell amplified sequence 1 127680 1 1 1 0 0 1 0 0 0 0 0.37 0.97 -6856 MEF2A myocyte enhancer factor 2A 328304 4 3 4 3 0 1 2 0 1 0 0.37 0.97 -6857 OR1E1 olfactory receptor, family 1, subfamily E, member 1 212576 2 2 2 0 0 2 0 0 0 0 0.37 0.97 -6858 FST follistatin 226456 3 3 3 1 0 2 1 0 0 0 0.37 0.97 -6859 SPTB spectrin, beta, erythrocytic (includes spherocytosis, clinical type I) 1586148 13 13 12 7 11 1 0 0 1 0 0.37 0.97 -6860 PDE4B phosphodiesterase 4B, cAMP-specific (phosphodiesterase E4 dunce homolog, Drosophila) 589792 5 4 4 3 2 1 1 0 1 0 0.37 0.97 -6861 RAB14 RAB14, member RAS oncogene family 151424 1 1 1 0 0 1 0 0 0 0 0.37 0.97 -6862 TDRD6 tudor domain containing 6 1307824 13 9 13 2 3 7 2 0 1 0 0.37 0.97 -6863 LYPLAL1 lysophospholipase-like 1 164416 1 1 1 0 0 0 1 0 0 0 0.37 0.97 -6864 FAM122B family with sequence similarity 122B 175392 1 1 1 0 0 0 0 0 1 0 0.37 0.97 -6865 CCDC136 coiled-coil domain containing 136 688900 6 5 6 1 3 0 1 1 1 0 0.37 0.97 -6866 ZKSCAN5 zinc finger with KRAB and SCAN domains 5 569856 5 4 5 1 1 1 1 1 1 0 0.37 0.97 -6867 SYK spleen tyrosine kinase 439040 3 3 3 0 0 1 0 0 2 0 0.37 0.97 -6868 TMPRSS15 702400 10 5 10 5 2 4 2 0 2 0 0.37 0.97 -6869 ZNF33B zinc finger protein 33B 527072 6 5 6 0 1 4 1 0 0 0 0.37 0.97 -6870 RABGEF1 RAB guanine nucleotide exchange factor (GEF) 1 337288 3 3 3 1 1 1 0 0 1 0 0.37 0.97 -6871 PRSS37 163072 2 2 2 0 0 2 0 0 0 0 0.37 0.97 -6872 SIGLEC14 sialic acid binding Ig-like lectin 14 208332 2 2 2 1 1 0 0 0 1 0 0.37 0.97 -6873 STK3 serine/threonine kinase 3 (STE20 homolog, yeast) 333760 3 3 3 1 1 2 0 0 0 0 0.37 0.97 -6874 CD33 CD33 molecule 251552 2 2 2 1 1 0 1 0 0 0 0.37 0.97 -6875 NUDT7 nudix (nucleoside diphosphate linked moiety X)-type motif 7 164192 2 2 2 4 1 1 0 0 0 0 0.37 0.97 -6876 PFN4 profilin family, member 4 90944 1 1 1 0 0 1 0 0 0 0 0.37 0.97 -6877 CHRFAM7A CHRNA7 (cholinergic receptor, nicotinic, alpha 7, exons 5-10) and FAM7A (family with sequence similarity 7A, exons A-E) fusion 100104 1 1 1 2 1 0 0 0 0 0 0.37 0.97 -6878 MTFMT mitochondrial methionyl-tRNA formyltransferase 222432 2 2 2 1 0 1 0 0 1 0 0.37 0.97 -6879 SPATA12 spermatogenesis associated 12 126224 1 1 1 1 0 0 1 0 0 0 0.37 0.97 -6880 CA13 carbonic anhydrase XIII 183008 1 1 1 0 0 0 0 0 1 0 0.37 0.97 -6881 PLEKHA5 pleckstrin homology domain containing, family A member 5 765800 4 4 4 2 2 0 0 0 2 0 0.37 0.97 -6882 S100PBP S100P binding protein 279328 2 2 2 0 0 0 1 0 1 0 0.37 0.97 -6883 HTR1F 5-hydroxytryptamine (serotonin) receptor 1F 247520 2 2 2 2 0 2 0 0 0 0 0.37 0.97 -6884 MTHFR 5,10-methylenetetrahydrofolate reductase (NADPH) 451360 7 5 7 1 2 3 2 0 0 0 0.37 0.97 -6885 UTP14A UTP14, U3 small nucleolar ribonucleoprotein, homolog A (yeast) 532224 5 4 4 2 2 1 2 0 0 0 0.37 0.97 -6886 RCN1 reticulocalbin 1, EF-hand calcium binding domain 170688 2 2 2 2 1 1 0 0 0 0 0.37 0.97 -6887 DCPS decapping enzyme, scavenger 227500 3 3 3 1 3 0 0 0 0 0 0.37 0.97 -6888 C5orf22 chromosome 5 open reading frame 22 305676 2 2 2 0 1 0 1 0 0 0 0.37 0.97 -6889 SLAMF1 signaling lymphocytic activation molecule family member 1 232064 4 3 4 1 2 1 1 0 0 0 0.37 0.97 -6890 UHRF1BP1 UHRF1 (ICBP90) binding protein 1 976416 8 6 8 3 3 4 1 0 0 0 0.37 0.97 -6891 ZNF561 zinc finger protein 561 285824 3 2 3 0 0 3 0 0 0 0 0.37 0.97 -6892 PBX3 pre-B-cell leukemia homeobox 3 295960 3 2 3 1 1 0 0 0 2 0 0.37 0.97 -6893 PCDH11Y protocadherin 11 Y-linked 573580 5 4 5 0 3 2 0 0 0 0 0.37 0.97 -6894 ZNF160 zinc finger protein 160 553952 5 3 5 3 1 1 1 1 1 0 0.37 0.97 -6895 SERPINA10 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 10 302624 2 2 2 1 1 0 1 0 0 0 0.37 0.97 -6896 APBA2 amyloid beta (A4) precursor protein-binding, family A, member 2 (X11-like) 506352 6 5 6 1 5 1 0 0 0 0 0.37 0.97 -6897 DUSP15 dual specificity phosphatase 15 102128 1 1 1 0 0 1 0 0 0 0 0.37 0.97 -6898 ZNF644 zinc finger protein 644 896896 7 5 7 3 1 2 1 0 1 2 0.37 0.97 -6899 TRIM35 tripartite motif-containing 35 285916 3 3 3 0 1 1 0 0 1 0 0.37 0.97 -6900 LCA5L Leber congenital amaurosis 5-like 454580 7 4 7 0 1 4 0 0 2 0 0.37 0.97 -6901 TBC1D5 TBC1 domain family, member 5 552832 4 4 4 3 1 1 1 0 1 0 0.37 0.97 -6902 CSTF3 cleavage stimulation factor, 3' pre-RNA, subunit 3, 77kDa 504896 4 4 4 2 1 1 2 0 0 0 0.37 0.97 -6903 SUOX sulfite oxidase 369600 2 2 2 1 1 0 0 0 1 0 0.37 0.97 -6904 ZNF770 zinc finger protein 770 462560 7 4 6 0 4 0 3 0 0 0 0.37 0.97 -6905 SLC11A1 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 1 383712 3 3 3 0 1 1 0 1 0 0 0.37 0.97 -6906 KCNC3 potassium voltage-gated channel, Shaw-related subfamily, member 3 300384 4 4 4 0 3 0 0 0 1 0 0.37 0.97 -6907 WASF2 WAS protein family, member 2 342496 2 2 2 1 0 0 1 0 1 0 0.37 0.97 -6908 C2orf53 chromosome 2 open reading frame 53 254492 2 2 2 3 0 1 1 0 0 0 0.37 0.97 -6909 CD28 CD28 molecule 152096 2 2 2 2 2 0 0 0 0 0 0.37 0.97 -6910 OR6A2 olfactory receptor, family 6, subfamily A, member 2 221312 2 2 2 1 1 1 0 0 0 0 0.37 0.97 -6911 ACSBG1 acyl-CoA synthetase bubblegum family member 1 499660 7 5 7 4 3 2 1 0 1 0 0.37 0.97 -6912 SYNJ1 synaptojanin 1 1082000 11 8 10 2 2 3 3 0 3 0 0.37 0.97 -6913 TUBB2A tubulin, beta 2A 198464 3 3 3 1 2 0 1 0 0 0 0.37 0.97 -6914 CYP2C8 cytochrome P450, family 2, subfamily C, polypeptide 8 338016 4 3 4 1 3 1 0 0 0 0 0.37 0.97 -6915 WDR45 WD repeat domain 45 251272 2 2 2 0 0 0 1 1 0 0 0.37 0.97 -6916 STRAP serine/threonine kinase receptor associated protein 244832 2 2 2 0 1 1 0 0 0 0 0.37 0.97 -6917 HEXIM2 hexamthylene bis-acetamide inducible 2 138276 2 2 2 1 2 0 0 0 0 0 0.37 0.97 -6918 TMEM171 transmembrane protein 171 221088 2 2 2 0 1 1 0 0 0 0 0.37 0.97 -6919 OR11H1 olfactory receptor, family 11, subfamily H, member 1 211992 2 2 2 1 0 2 0 0 0 0 0.37 0.97 -6920 EOMES eomesodermin homolog (Xenopus laevis) 324720 4 3 4 2 1 1 1 0 1 0 0.37 0.97 -6921 ATP2A2 ATPase, Ca++ transporting, cardiac muscle, slow twitch 2 707112 6 5 6 2 2 0 2 0 2 0 0.37 0.97 -6922 CTSS cathepsin S 229376 2 2 2 1 1 1 0 0 0 0 0.37 0.97 -6923 DNAJC13 DnaJ (Hsp40) homolog, subfamily C, member 13 1557248 10 9 10 4 3 5 1 0 1 0 0.37 0.97 -6924 SHKBP1 SH3KBP1 binding protein 1 475352 5 5 5 0 2 2 0 0 1 0 0.37 0.97 -6925 CCDC13 coiled-coil domain containing 13 482624 5 5 5 0 2 2 1 0 0 0 0.37 0.97 -6926 ACIN1 apoptotic chromatin condensation inducer 1 907968 7 7 7 2 4 2 1 0 0 0 0.37 0.97 -6927 CASZ1 castor zinc finger 1 964116 9 9 9 4 5 2 1 0 1 0 0.37 0.97 -6928 SNX17 sorting nexin 17 314944 3 3 3 1 0 2 0 0 1 0 0.37 0.97 -6929 APCS amyloid P component, serum 152320 1 1 1 2 0 1 0 0 0 0 0.37 0.97 -6930 RAD51C RAD51 homolog C (S. cerevisiae) 262136 2 2 2 0 1 1 0 0 0 0 0.37 0.97 -6931 CCDC111 coiled-coil domain containing 111 387744 3 3 3 0 0 2 1 0 0 0 0.37 0.97 -6932 REST RE1-silencing transcription factor 736680 5 5 5 1 1 2 1 0 1 0 0.37 0.97 -6933 CNTD1 cyclin N-terminal domain containing 1 228704 2 2 2 0 0 2 0 0 0 0 0.37 0.97 -6934 SH3PXD2A SH3 and PX domains 2A 719188 6 6 6 2 3 2 0 0 1 0 0.38 0.97 -6935 CLDND2 claudin domain containing 2 115556 2 2 2 0 1 1 0 0 0 0 0.38 0.97 -6936 C12orf39 chromosome 12 open reading frame 39 75704 1 1 1 0 0 1 0 0 0 0 0.38 0.97 -6937 LRIT1 leucine-rich repeat, immunoglobulin-like and transmembrane domains 1 338660 4 4 4 0 0 3 0 0 1 0 0.38 0.97 -6938 EIF2B3 eukaryotic translation initiation factor 2B, subunit 3 gamma, 58kDa 316512 2 2 2 1 0 1 1 0 0 0 0.38 0.97 -6939 S100A7L2 S100 calcium binding protein A7-like 2 72576 1 1 1 1 0 1 0 0 0 0 0.38 0.97 -6940 SIL1 SIL1 homolog, endoplasmic reticulum chaperone (S. cerevisiae) 309984 3 3 3 1 2 0 0 0 1 0 0.38 0.97 -6941 MARK4 MAP/microtubule affinity-regulating kinase 4 402048 4 4 4 1 2 2 0 0 0 0 0.38 0.97 -6942 GFPT2 glutamine-fructose-6-phosphate transaminase 2 461112 4 4 4 5 3 0 0 1 0 0 0.38 0.97 -6943 OR5K2 olfactory receptor, family 5, subfamily K, member 2 213920 1 1 1 0 1 0 0 0 0 0 0.38 0.97 -6944 CRBN cereblon 307552 3 3 3 1 1 0 1 0 1 0 0.38 0.97 -6945 GBX2 gastrulation brain homeobox 2 144116 2 2 2 0 2 0 0 0 0 0 0.38 0.97 -6946 FGF3 fibroblast growth factor 3 (murine mammary tumor virus integration site (v-int-2) oncogene homolog) 81704 1 1 1 0 0 0 1 0 0 0 0.38 0.97 -6947 SUSD3 sushi domain containing 3 155904 2 2 2 0 1 1 0 0 0 0 0.38 0.97 -6948 SNIP1 Smad nuclear interacting protein 1 255136 3 3 3 0 1 2 0 0 0 0 0.38 0.97 -6949 FAM200A 184256 1 1 1 0 0 0 1 0 0 0 0.38 0.97 -6950 EXOG 253344 3 3 3 0 1 2 0 0 0 0 0.38 0.97 -6951 ZNF85 zinc finger protein 85 404012 4 4 4 1 0 2 2 0 0 0 0.38 0.97 -6952 POLA1 polymerase (DNA directed), alpha 1 1013704 8 7 7 2 0 5 3 0 0 0 0.38 0.97 -6953 C16orf88 305228 2 2 2 0 1 0 0 0 1 0 0.38 0.97 -6954 EPS8 epidermal growth factor receptor pathway substrate 8 570976 5 4 5 1 0 3 1 0 1 0 0.38 0.97 -6955 TMEM219 165536 1 1 1 0 0 0 1 0 0 0 0.38 0.97 -6956 OR4B1 olfactory receptor, family 4, subfamily B, member 1 209216 2 2 2 1 0 1 1 0 0 0 0.38 0.97 -6957 C3orf63 chromosome 3 open reading frame 63 847168 9 6 9 2 1 1 4 0 3 0 0.38 0.97 -6958 PLS3 plastin 3 (T isoform) 437472 3 3 3 0 1 1 0 0 1 0 0.38 0.97 -6959 METTL12 162316 1 1 1 0 0 0 0 0 1 0 0.38 0.97 -6960 CCDC24 coiled-coil domain containing 24 194968 2 2 2 0 0 1 1 0 0 0 0.38 0.97 -6961 BBS2 Bardet-Biedl syndrome 2 500416 6 5 6 1 3 2 0 0 1 0 0.38 0.97 -6962 FER1L5 fer-1-like 5 (C. elegans) 540420 6 5 6 1 3 1 1 0 1 0 0.38 0.97 -6963 GLB1L2 galactosidase, beta 1-like 2 429120 5 5 5 0 3 2 0 0 0 0 0.38 0.97 -6964 GRAP2 GRB2-related adaptor protein 2 228704 5 3 4 0 1 4 0 0 0 0 0.38 0.97 -6965 KRT33B keratin 33B 278432 5 4 5 1 3 2 0 0 0 0 0.38 0.97 -6966 ZNF277 zinc finger protein 277 313824 2 2 2 0 0 1 1 0 0 0 0.38 0.97 -6967 OR10V1 olfactory receptor, family 10, subfamily V, member 1 209216 1 1 1 2 0 0 0 0 1 0 0.38 0.97 -6968 C9orf85 chromosome 9 open reading frame 85 109760 1 1 1 0 0 0 1 0 0 0 0.38 0.97 -6969 TMEM182 transmembrane protein 182 159040 1 1 1 1 1 0 0 0 0 0 0.38 0.97 -6970 TRIOBP TRIO and F-actin binding protein 1341792 13 10 12 2 4 4 3 0 2 0 0.38 0.97 -6971 FBXO16 F-box protein 16 204064 2 2 2 0 0 2 0 0 0 0 0.38 0.98 -6972 CXorf36 chromosome X open reading frame 36 277544 3 3 3 1 2 0 1 0 0 0 0.38 0.98 -6973 ETFDH electron-transferring-flavoprotein dehydrogenase 426944 3 3 2 1 1 1 0 1 0 0 0.38 0.98 -6974 KCTD6 potassium channel tetramerisation domain containing 6 161728 2 2 2 0 0 2 0 0 0 0 0.38 0.98 -6975 RND1 Rho family GTPase 1 161056 1 1 1 1 0 0 0 0 1 0 0.38 0.98 -6976 TMOD1 tropomodulin 1 249984 3 3 3 0 2 1 0 0 0 0 0.38 0.98 -6977 DENR density-regulated protein 112664 1 1 1 0 0 0 0 0 1 0 0.38 0.98 -6978 CLDN7 claudin 7 146048 2 2 2 0 0 1 1 0 0 0 0.38 0.98 -6979 TLR2 toll-like receptor 2 528416 6 4 6 0 0 1 4 0 1 0 0.38 0.98 -6980 ARRDC3 arrestin domain containing 3 286048 3 3 3 0 0 1 1 0 1 0 0.38 0.98 -6981 RPF1 243264 4 3 4 0 3 0 1 0 0 0 0.38 0.98 -6982 FAM169A 461664 4 4 4 1 2 1 1 0 0 0 0.38 0.98 -6983 FAF2 309568 3 3 3 0 1 1 1 0 0 0 0.38 0.98 -6984 NKTR natural killer-tumor recognition sequence 993468 6 5 6 0 1 1 2 0 2 0 0.38 0.98 -6985 DPPA3 developmental pluripotency associated 3 111104 1 1 1 0 0 1 0 0 0 0 0.38 0.98 -6986 ASAP1 782080 5 4 5 8 2 2 0 0 1 0 0.38 0.98 -6987 PCDHGA7 protocadherin gamma subfamily A, 7 629300 7 6 6 2 5 1 0 0 1 0 0.38 0.98 -6988 SFTA3 67424 1 1 1 0 0 1 0 0 0 0 0.38 0.98 -6989 FEZF2 FEZ family zinc finger 2 253544 3 3 3 5 3 0 0 0 0 0 0.38 0.98 -6990 COL21A1 collagen, type XXI, alpha 1 630384 10 6 10 6 2 6 1 0 1 0 0.38 0.98 -6991 UPF3A UPF3 regulator of nonsense transcripts homolog A (yeast) 258076 2 2 2 0 0 0 1 0 1 0 0.38 0.98 -6992 TMX1 196000 2 2 2 0 1 1 0 0 0 0 0.38 0.98 -6993 C6orf125 chromosome 6 open reading frame 125 88928 1 1 1 1 0 0 0 0 1 0 0.38 0.98 -6994 ACRBP acrosin binding protein 371128 6 5 6 2 2 2 2 0 0 0 0.38 0.98 -6995 CA3 carbonic anhydrase III, muscle specific 176496 2 2 2 0 2 0 0 0 0 0 0.38 0.98 -6996 IL17RD interleukin 17 receptor D 473960 5 5 5 2 2 1 2 0 0 0 0.38 0.98 -6997 C6orf118 chromosome 6 open reading frame 118 316832 3 3 3 4 0 2 1 0 0 0 0.38 0.98 -6998 FBXO45 F-box protein 45 138632 2 2 2 0 0 2 0 0 0 0 0.38 0.98 -6999 COG2 component of oligomeric golgi complex 2 512736 4 4 4 2 2 0 1 0 1 0 0.38 0.98 -7000 HNF4G hepatocyte nuclear factor 4, gamma 308672 4 3 4 1 2 2 0 0 0 0 0.38 0.98 -7001 VDAC3 voltage-dependent anion channel 3 198688 1 1 1 0 0 0 1 0 0 0 0.38 0.98 -7002 LIPK lipase, family member K 236608 1 1 1 2 0 0 0 0 1 0 0.38 0.98 -7003 TDO2 tryptophan 2,3-dioxygenase 284256 4 3 4 0 0 4 0 0 0 0 0.38 0.98 -7004 NR1D1 nuclear receptor subfamily 1, group D, member 1 403396 4 4 4 1 3 0 1 0 0 0 0.38 0.98 -7005 C18orf62 chromosome 18 open reading frame 62 71232 1 1 1 0 0 1 0 0 0 0 0.38 0.98 -7006 CRYBB3 crystallin, beta B3 146860 2 2 2 1 1 0 1 0 0 0 0.38 0.98 -7007 PLEKHA2 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 2 287016 2 2 2 0 1 1 0 0 0 0 0.38 0.98 -7008 ZNF347 zinc finger protein 347 568736 6 4 6 0 0 3 2 0 1 0 0.38 0.98 -7009 SEMA6D sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6D 747488 9 7 9 1 4 5 0 0 0 0 0.38 0.98 -7010 SCAF1 SR-related CTD-associated factor 1 558816 5 5 5 0 2 2 0 0 1 0 0.38 0.98 -7011 ERMAP erythroblast membrane-associated protein (Scianna blood group) 328424 3 3 3 0 0 3 0 0 0 0 0.38 0.98 -7012 APBA1 amyloid beta (A4) precursor protein-binding, family A, member 1 (X11) 525868 7 6 5 5 3 3 0 0 1 0 0.38 0.98 -7013 GDAP1L1 ganglioside-induced differentiation-associated protein 1-like 1 239896 3 3 3 1 2 0 1 0 0 0 0.38 0.98 -7014 MXRA7 matrix-remodelling associated 7 76160 1 1 1 1 1 0 0 0 0 0 0.38 0.98 -7015 ELF4 E74-like factor 4 (ets domain transcription factor) 453292 4 4 4 3 0 1 3 0 0 0 0.38 0.98 -7016 LINGO4 leucine rich repeat and Ig domain containing 4 392672 4 4 4 0 1 2 1 0 0 0 0.38 0.98 -7017 CDYL chromodomain protein, Y-like 366240 4 4 4 5 1 3 0 0 0 0 0.38 0.98 -7018 LARP1 La ribonucleoprotein domain family, member 1 702212 6 5 6 4 1 2 1 0 2 0 0.38 0.98 -7019 CREBL2 cAMP responsive element binding protein-like 2 84896 1 1 1 0 0 0 1 0 0 0 0.38 0.98 -7020 VPS53 vacuolar protein sorting 53 homolog (S. cerevisiae) 467040 3 3 3 2 0 0 1 0 2 0 0.38 0.98 -7021 C8orf86 153216 1 1 1 0 0 1 0 0 0 0 0.38 0.98 -7022 NFATC3 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 3 759584 5 4 5 2 1 1 2 0 1 0 0.38 0.98 -7023 PM20D2 peptidase M20 domain containing 2 221200 2 2 2 1 1 1 0 0 0 0 0.38 0.98 -7024 DNAJC25 169932 2 2 2 0 1 0 1 0 0 0 0.38 0.98 -7025 OR1A2 olfactory receptor, family 1, subfamily A, member 2 209216 2 2 2 0 0 1 1 0 0 0 0.38 0.98 -7026 ACR acrosin 229072 2 2 2 0 1 0 1 0 0 0 0.38 0.98 -7027 CLVS1 243040 2 2 2 1 1 1 0 0 0 0 0.38 0.98 -7028 ZMYND8 zinc finger, MYND-type containing 8 818020 8 8 8 3 2 3 2 1 0 0 0.38 0.98 -7029 CLTC clathrin, heavy chain (Hc) 1154944 9 8 9 0 1 3 3 0 2 0 0.38 0.98 -7030 C20orf132 chromosome 20 open reading frame 132 651584 6 5 6 0 0 3 1 0 2 0 0.38 0.98 -7031 C1orf187 chromosome 1 open reading frame 187 231336 3 3 3 1 1 1 1 0 0 0 0.38 0.98 -7032 NCAPH non-SMC condensin I complex, subunit H 496544 5 5 5 2 1 1 3 0 0 0 0.38 0.98 -7033 ATF7IP2 activating transcription factor 7 interacting protein 2 467936 3 3 3 3 0 1 2 0 0 0 0.38 0.98 -7034 TRIM23 tripartite motif-containing 23 411264 9 4 6 0 5 0 3 0 1 0 0.38 0.98 -7035 SH2D1B SH2 domain containing 1B 92960 1 1 1 0 0 1 0 0 0 0 0.38 0.98 -7036 CYBASC3 cytochrome b, ascorbate dependent 3 170016 2 2 2 1 1 0 1 0 0 0 0.38 0.98 -7037 SNAI2 snail homolog 2 (Drosophila) 183456 2 2 2 1 0 2 0 0 0 0 0.38 0.98 -7038 CMKLR1 chemokine-like receptor 1 251552 3 3 3 1 1 2 0 0 0 0 0.38 0.98 -7039 TRIM31 tripartite motif-containing 31 211540 1 1 1 1 0 0 0 0 1 0 0.38 0.98 -7040 DNAI2 dynein, axonemal, intermediate chain 2 415296 5 5 5 1 3 1 1 0 0 0 0.38 0.98 -7041 AWAT2 211272 3 2 3 0 0 1 1 0 1 0 0.38 0.98 -7042 NIT1 nitrilase 1 228256 2 2 2 1 0 2 0 0 0 0 0.38 0.98 -7043 OBP2A odorant binding protein 2A 109144 1 1 1 3 1 0 0 0 0 0 0.38 0.98 -7044 LACRT lacritin 97888 1 1 1 0 0 1 0 0 0 0 0.38 0.98 -7045 C9orf37 chromosome 9 open reading frame 37 94352 1 1 1 1 1 0 0 0 0 0 0.38 0.98 -7046 ASB17 ankyrin repeat and SOCS box-containing 17 201600 1 1 1 2 0 1 0 0 0 0 0.38 0.98 -7047 ACTA1 actin, alpha 1, skeletal muscle 257208 4 4 4 0 0 4 0 0 0 0 0.38 0.98 -7048 FAM167B 65380 1 1 1 0 1 0 0 0 0 0 0.38 0.98 -7049 RHO rhodopsin 239008 3 3 3 7 3 0 0 0 0 0 0.38 0.98 -7050 TOB1 transducer of ERBB2, 1 233408 2 2 2 0 0 0 1 0 1 0 0.38 0.98 -7051 C1orf89 chromosome 1 open reading frame 89 162680 2 2 2 0 2 0 0 0 0 0 0.38 0.98 -7052 TNFRSF10A tumor necrosis factor receptor superfamily, member 10a 297276 3 3 3 0 0 3 0 0 0 0 0.38 0.98 -7053 C9orf72 chromosome 9 open reading frame 72 333760 2 2 2 0 0 1 1 0 0 0 0.38 0.98 -7054 SIVA1 SIVA1, apoptosis-inducing factor 111468 1 1 1 0 0 0 0 0 1 0 0.38 0.98 -7055 NEK3 NIMA (never in mitosis gene a)-related kinase 3 341360 4 4 4 2 1 2 1 0 0 0 0.38 0.98 -7056 TNFAIP1 tumor necrosis factor, alpha-induced protein 1 (endothelial) 218400 3 3 3 1 2 0 1 0 0 0 0.38 0.98 -7057 C1orf96 chromosome 1 open reading frame 96 133056 1 1 1 3 0 0 0 1 0 0 0.38 0.98 -7058 PRICKLE2 prickle homolog 2 (Drosophila) 573272 6 6 6 3 1 3 2 0 0 0 0.38 0.98 -7059 RELT RELT tumor necrosis factor receptor 255736 2 2 2 1 1 1 0 0 0 0 0.38 0.98 -7060 MAGEB3 melanoma antigen family B, 3 234080 3 2 3 0 0 2 1 0 0 0 0.38 0.98 -7061 GLT25D2 glycosyltransferase 25 domain containing 2 398188 5 4 5 3 3 1 1 0 0 0 0.38 0.98 -7062 ACVR1 activin A receptor, type I 350784 4 3 3 0 2 1 1 0 0 0 0.38 0.98 -7063 PLEKHA1 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 1 282016 2 2 2 1 1 1 0 0 0 0 0.38 0.98 -7064 AIMP2 210140 3 2 3 0 2 0 1 0 0 0 0.38 0.98 -7065 KDSR 3-ketodihydrosphingosine reductase 223328 2 2 2 0 1 0 0 0 1 0 0.38 0.98 -7066 GLIS1 GLIS family zinc finger 1 375648 3 3 3 1 1 0 0 1 1 0 0.38 0.98 -7067 THUMPD2 THUMP domain containing 2 318528 3 3 3 0 0 1 2 0 0 0 0.38 0.98 -7068 RPL19 ribosomal protein L19 133428 1 1 1 1 0 1 0 0 0 0 0.38 0.98 -7069 TMEM55B transmembrane protein 55B 160384 2 1 2 0 1 0 0 0 1 0 0.38 0.98 -7070 ST7L suppression of tumorigenicity 7 like 406140 3 3 3 0 2 0 0 0 1 0 0.38 0.98 -7071 CA5A carbonic anhydrase VA, mitochondrial 203200 2 2 2 2 0 1 0 0 1 0 0.38 0.98 -7072 LRRC1 leucine rich repeat containing 1 365344 4 3 4 1 1 1 1 0 1 0 0.38 0.98 -7073 GAPT 107072 1 1 1 0 0 0 0 0 1 0 0.38 0.98 -7074 C5orf40 chromosome 5 open reading frame 40 152096 1 1 1 1 0 0 0 0 1 0 0.38 0.98 -7075 SHMT1 serine hydroxymethyltransferase 1 (soluble) 335104 2 2 2 0 0 1 0 0 1 0 0.38 0.98 -7076 PEX5L peroxisomal biogenesis factor 5-like 434784 4 4 4 2 2 2 0 0 0 0 0.38 0.98 -7077 BCL11A B-cell CLL/lymphoma 11A (zinc finger protein) 539644 8 7 8 1 6 0 1 0 1 0 0.38 0.98 -7078 MCFD2 multiple coagulation factor deficiency 2 101472 1 1 1 0 0 1 0 0 0 0 0.38 0.98 -7079 CCDC59 coiled-coil domain containing 59 166208 2 2 2 0 0 2 0 0 0 0 0.38 0.98 -7080 HSF2 heat shock transcription factor 2 372512 3 3 3 1 1 1 1 0 0 0 0.38 0.98 -7081 GPATCH1 G patch domain containing 1 628460 5 5 5 3 0 3 1 0 1 0 0.39 0.98 -7082 PPFIBP2 PTPRF interacting protein, binding protein 2 (liprin beta 2) 604512 5 4 5 3 1 3 0 0 1 0 0.39 0.98 -7083 SLC44A4 solute carrier family 44, member 4 401940 4 4 4 1 0 0 3 0 1 0 0.39 0.98 -7084 SIX6 SIX homeobox 6 153244 3 3 3 0 2 1 0 0 0 0 0.39 0.98 -7085 BAIAP2 BAI1-associated protein 2 328136 2 2 2 2 0 0 1 0 1 0 0.39 0.98 -7086 TEF thyrotrophic embryonic factor 167860 2 2 2 0 1 1 0 0 0 0 0.39 0.98 -7087 CCDC106 coiled-coil domain containing 106 185276 3 3 3 0 3 0 0 0 0 0 0.39 0.98 -7088 ESD esterase D/formylglutathione hydrolase 197344 1 1 1 0 0 1 0 0 0 0 0.39 0.98 -7089 MRPL9 mitochondrial ribosomal protein L9 176936 2 2 2 0 1 1 0 0 0 0 0.39 0.98 -7090 LHFPL2 lipoma HMGIC fusion partner-like 2 150304 2 2 2 1 1 1 0 0 0 0 0.39 0.98 -7091 SRC v-src sarcoma (Schmidt-Ruppin A-2) viral oncogene homolog (avian) 324608 3 3 3 4 1 2 0 0 0 0 0.39 0.98 -7092 FBXW10 F-box and WD repeat domain containing 10 687400 6 6 6 1 2 3 1 0 0 0 0.39 0.98 -7093 GPR64 G protein-coupled receptor 64 708288 6 5 6 3 1 2 2 0 1 0 0.39 0.98 -7094 TEAD2 TEA domain family member 2 310156 4 3 4 1 0 1 2 0 1 0 0.39 0.98 -7095 RCAN1 regulator of calcineurin 1 136640 1 1 1 0 0 0 1 0 0 0 0.39 0.98 -7096 OR4A47 olfactory receptor, family 4, subfamily A, member 47 209216 2 2 2 0 0 0 2 0 0 0 0.39 0.98 -7097 ASCL3 achaete-scute complex homolog 3 (Drosophila) 123200 2 2 2 0 2 0 0 0 0 0 0.39 0.98 -7098 SLC7A2 solute carrier family 7 (cationic amino acid transporter, y+ system), member 2 512064 4 4 4 0 1 2 0 0 1 0 0.39 0.98 -7099 TAPT1 transmembrane anterior posterior transformation 1 299808 2 2 2 0 0 1 1 0 0 0 0.39 0.98 -7100 CDCA5 cell division cycle associated 5 171192 1 1 1 0 0 0 0 0 1 0 0.39 0.98 -7101 DBF4 DBF4 homolog (S. cerevisiae) 464268 5 3 5 1 1 3 0 0 1 0 0.39 0.98 -7102 HSPB8 heat shock 22kDa protein 8 135072 1 1 1 0 1 0 0 0 0 0 0.39 0.98 -7103 C7orf42 chromosome 7 open reading frame 42 217056 3 3 3 1 2 1 0 0 0 0 0.39 0.98 -7104 OR2C3 olfactory receptor, family 2, subfamily C, member 3 216608 2 2 2 0 0 2 0 0 0 0 0.39 0.98 -7105 GBP2 guanylate binding protein 2, interferon-inducible 406784 3 3 3 1 1 0 1 0 1 0 0.39 0.98 -7106 ATP6V1C2 ATPase, H+ transporting, lysosomal 42kDa, V1 subunit C2 299264 2 2 2 2 0 0 2 0 0 0 0.39 0.98 -7107 CYBB cytochrome b-245, beta polypeptide (chronic granulomatous disease) 394136 2 2 2 1 1 0 0 0 1 0 0.39 0.98 -7108 ARHGAP18 Rho GTPase activating protein 18 459648 4 4 4 0 1 1 2 0 0 0 0.39 0.98 -7109 AHR aryl hydrocarbon receptor 575512 6 5 6 2 3 2 1 0 0 0 0.39 0.98 -7110 RABGAP1 RAB GTPase activating protein 1 741440 7 6 7 2 3 3 1 0 0 0 0.39 0.98 -7111 DBR1 debranching enzyme homolog 1 (S. cerevisiae) 369544 3 3 3 1 0 3 0 0 0 0 0.39 0.98 -7112 UGT2B11 UDP glucuronosyltransferase 2 family, polypeptide B11 361536 6 3 6 3 0 4 1 0 1 0 0.39 0.98 -7113 SFRS4 splicing factor, arginine/serine-rich 4 337260 2 2 2 0 0 0 0 0 2 0 0.39 0.98 -7114 SEZ6L2 seizure related 6 homolog (mouse)-like 2 605436 8 7 8 3 6 1 0 1 0 0 0.39 0.98 -7115 C1orf135 chromosome 1 open reading frame 135 232112 2 2 2 0 0 2 0 0 0 0 0.39 0.98 -7116 C16orf3 chromosome 16 open reading frame 3 63428 1 1 1 0 1 0 0 0 0 0 0.39 0.98 -7117 BRPF3 bromodomain and PHD finger containing, 3 798116 5 5 5 3 2 2 1 0 0 0 0.39 0.98 -7118 IL17F interleukin 17F 112896 1 1 1 1 0 0 1 0 0 0 0.39 0.98 -7119 PSMD6 proteasome (prosome, macropain) 26S subunit, non-ATPase, 6 260292 3 3 3 2 1 1 0 1 0 0 0.39 0.98 -7120 HINT2 histidine triad nucleotide binding protein 2 95648 1 1 1 0 0 1 0 0 0 0 0.39 0.98 -7121 AAAS achalasia, adrenocortical insufficiency, alacrimia (Allgrove, triple-A) 381920 3 3 3 0 1 1 0 0 1 0 0.39 0.98 -7122 PCMT1 protein-L-isoaspartate (D-aspartate) O-methyltransferase 161728 2 2 2 0 1 1 0 0 0 0 0.39 0.98 -7123 GPRASP2 G protein-coupled receptor associated sorting protein 2 564704 5 3 5 1 1 0 1 0 1 2 0.39 0.98 -7124 PTPN2 protein tyrosine phosphatase, non-receptor type 2 287028 2 2 2 0 0 1 0 0 1 0 0.39 0.98 -7125 SH3TC2 SH3 domain and tetratricopeptide repeats 2 881440 7 6 6 2 4 3 0 0 0 0 0.39 0.98 -7126 NDRG4 NDRG family member 4 237212 2 2 2 0 1 0 0 0 1 0 0.39 0.98 -7127 MAL mal, T-cell differentiation protein 99048 1 1 1 1 1 0 0 0 0 0 0.39 0.98 -7128 TMLHE trimethyllysine hydroxylase, epsilon 239468 3 2 3 1 1 2 0 0 0 0 0.39 0.98 -7129 DTX1 deltex homolog 1 (Drosophila) 305508 4 4 4 3 2 1 1 0 0 0 0.39 0.98 -7130 MED12 mediator complex subunit 12 1421924 11 11 11 4 6 4 0 0 1 0 0.39 0.98 -7131 PAGE1 P antigen family, member 1 (prostate associated) 94832 1 1 1 2 0 1 0 0 0 0 0.39 0.98 -7132 PRKCDBP protein kinase C, delta binding protein 121464 3 3 3 0 2 1 0 0 0 0 0.39 0.98 -7133 CASP4 caspase 4, apoptosis-related cysteine peptidase 261184 3 2 3 2 0 3 0 0 0 0 0.39 0.98 -7134 TRH thyrotropin-releasing hormone 159712 2 2 2 0 1 1 0 0 0 0 0.39 0.98 -7135 HIST1H2AA histone cluster 1, H2aa 89600 2 2 2 0 2 0 0 0 0 0 0.39 0.98 -7136 CFDP1 craniofacial development protein 1 207872 2 2 2 0 0 1 1 0 0 0 0.39 0.98 -7137 LGI2 leucine-rich repeat LGI family, member 2 333632 4 4 3 2 2 1 0 1 0 0 0.39 0.98 -7138 FAM65B 407232 4 4 4 1 1 2 1 0 0 0 0.39 0.98 -7139 MED4 mediator complex subunit 4 188384 2 2 2 0 0 2 0 0 0 0 0.39 0.98 -7140 C9orf100 chromosome 9 open reading frame 100 209616 2 2 2 0 0 1 1 0 0 0 0.39 0.98 -7141 LPAR4 lysophosphatidic acid receptor 4 250208 5 3 4 0 2 2 1 0 0 0 0.39 0.98 -7142 DCAF8L1 404768 4 4 4 3 0 3 1 0 0 0 0.39 0.98 -7143 RGS1 regulator of G-protein signaling 1 145600 1 1 1 0 0 1 0 0 0 0 0.39 0.98 -7144 SLC15A4 solute carrier family 15, member 4 278264 3 3 3 1 2 0 1 0 0 0 0.39 0.98 -7145 VPS37C vacuolar protein sorting 37 homolog C (S. cerevisiae) 198572 3 3 3 0 1 0 2 0 0 0 0.39 0.98 -7146 FAM81B family with sequence similarity 81, member B 313376 3 2 3 3 0 1 0 0 2 0 0.39 0.98 -7147 C7orf34 chromosome 7 open reading frame 34 86688 1 1 1 0 0 0 1 0 0 0 0.39 0.98 -7148 C3orf35 chromosome 3 open reading frame 35 117372 1 1 1 0 0 0 0 0 1 0 0.39 0.98 -7149 BTN3A2 butyrophilin, subfamily 3, member A2 231392 3 3 3 0 2 0 1 0 0 0 0.39 0.98 -7150 PCGF3 polycomb group ring finger 3 157816 2 1 2 0 1 0 0 0 1 0 0.39 0.98 -7151 KBTBD12 423808 5 4 5 2 0 3 1 0 1 0 0.39 0.98 -7152 PHF11 PHD finger protein 11 210112 2 2 2 0 1 0 1 0 0 0 0.39 0.98 -7153 SYDE2 synapse defective 1, Rho GTPase, homolog 2 (C. elegans) 721980 7 6 7 1 3 1 3 0 0 0 0.39 0.98 -7154 TRIM62 tripartite motif-containing 62 274708 4 4 4 0 3 0 1 0 0 0 0.39 0.98 -7155 OR51E1 olfactory receptor, family 51, subfamily E, member 1 215264 2 2 2 0 1 1 0 0 0 0 0.39 0.98 -7156 PANX1 pannexin 1 291424 2 2 2 0 0 1 0 0 1 0 0.39 0.98 -7157 SOX3 SRY (sex determining region Y)-box 3 108952 2 2 2 0 2 0 0 0 0 0 0.39 0.98 -7158 CCDC159 159384 2 1 2 1 1 0 1 0 0 0 0.39 0.98 -7159 GUCY2D guanylate cyclase 2D, membrane (retina-specific) 595240 8 6 8 2 5 2 1 0 0 0 0.39 0.98 -7160 EPHB2 EPH receptor B2 662116 8 7 7 2 6 2 0 0 0 0 0.39 0.98 -7161 SDC3 syndecan 3 270368 3 3 3 2 2 0 0 0 1 0 0.39 0.98 -7162 NPTXR neuronal pentraxin receptor 191912 2 2 2 1 1 1 0 0 0 0 0.39 0.98 -7163 C20orf196 chromosome 20 open reading frame 196 140224 1 1 1 1 0 0 0 1 0 0 0.39 0.98 -7164 LRRC66 595616 6 5 6 2 1 2 2 1 0 0 0.39 0.98 -7165 VN1R5 vomeronasal 1 receptor 5 241472 2 2 2 0 0 1 1 0 0 0 0.39 0.98 -7166 MTM1 myotubularin 1 418432 4 4 4 0 1 2 1 0 0 0 0.39 0.98 -7167 OXNAD1 oxidoreductase NAD-binding domain containing 1 216608 2 2 2 0 1 0 1 0 0 0 0.39 0.98 -7168 ISLR immunoglobulin superfamily containing leucine-rich repeat 286076 5 4 5 1 4 1 0 0 0 0 0.39 0.98 -7169 OCIAD1 OCIA domain containing 1 177408 2 2 2 0 0 2 0 0 0 0 0.39 0.98 -7170 FBXL12 F-box and leucine-rich repeat protein 12 170488 2 2 2 0 0 1 0 0 1 0 0.39 0.98 -7171 CCNE1 cyclin E1 275920 3 3 3 1 2 0 1 0 0 0 0.39 0.98 -7172 CHD9 chromodomain helicase DNA binding protein 9 1889316 18 11 18 2 1 10 5 0 2 0 0.39 0.98 -7173 B3GALT5 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 5 209888 4 3 4 1 2 1 1 0 0 0 0.39 0.98 -7174 ACSM2B acyl-CoA synthetase medium-chain family member 2B 400064 3 3 3 2 1 2 0 0 0 0 0.39 0.98 -7175 CLCN2 chloride channel 2 597660 4 4 4 1 2 0 2 0 0 0 0.39 0.98 -7176 ZNF572 zinc finger protein 572 357952 3 3 3 2 0 3 0 0 0 0 0.39 0.98 -7177 GCM2 glial cells missing homolog 2 (Drosophila) 345184 4 4 4 3 1 3 0 0 0 0 0.39 0.98 -7178 DCAF6 609952 7 5 7 0 3 0 1 0 3 0 0.39 0.98 -7179 CLTA clathrin, light chain (Lca) 150080 2 2 2 0 0 1 1 0 0 0 0.39 0.98 -7180 CCL15 chemokine (C-C motif) ligand 15 80192 1 1 1 2 1 0 0 0 0 0 0.39 0.98 -7181 CCDC19 coiled-coil domain containing 19 381696 5 4 5 2 3 2 0 0 0 0 0.39 0.98 -7182 FAM135A family with sequence similarity 135, member A 915936 6 6 6 1 1 3 1 1 0 0 0.39 0.98 -7183 DTX4 deltex 4 homolog (Drosophila) 378456 3 3 3 0 1 1 0 0 1 0 0.39 0.98 -7184 RPL10 ribosomal protein L10 147588 1 1 1 0 0 0 1 0 0 0 0.39 0.98 -7185 CCIN calicin 396116 4 4 4 1 3 1 0 0 0 0 0.39 0.98 -7186 MIPEP mitochondrial intermediate peptidase 453600 5 4 5 0 2 1 0 1 1 0 0.39 0.98 -7187 CLRN2 clarin 2 159264 2 2 2 1 0 0 1 0 1 0 0.39 0.98 -7188 KIAA0907 KIAA0907 425824 3 3 3 2 0 1 1 0 1 0 0.39 0.98 -7189 ECT2L epithelial cell transforming sequence 2 oncogene-like 626080 5 4 5 2 0 2 1 0 2 0 0.39 0.98 -7190 PTOV1 prostate tumor overexpressed gene 1 248248 2 2 2 0 1 0 0 0 1 0 0.39 0.98 -7191 CLPTM1 cleft lip and palate associated transmembrane protein 1 445676 4 4 4 0 1 2 0 0 1 0 0.39 0.98 -7192 AGBL2 ATP/GTP binding protein-like 2 596512 6 5 6 2 2 2 1 0 1 0 0.39 0.98 -7193 CLSTN1 calsyntenin 1 655648 7 7 7 1 3 2 0 1 1 0 0.39 0.98 -7194 NEUROG3 neurogenin 3 106848 2 2 2 0 2 0 0 0 0 0 0.39 0.98 -7195 RAMP1 receptor (G protein-coupled) activity modifying protein 1 90272 1 1 1 0 0 1 0 0 0 0 0.39 0.98 -7196 RB1CC1 RB1-inducible coiled-coil 1 1091552 6 5 6 2 1 1 2 0 2 0 0.39 0.98 -7197 ADORA2A adenosine A2a receptor 255976 5 4 5 2 3 2 0 0 0 0 0.39 0.98 -7198 VPS37B vacuolar protein sorting 37 homolog B (S. cerevisiae) 170912 1 1 1 0 0 0 0 0 1 0 0.39 0.98 -7199 RAB37 RAB37, member RAS oncogene family 197932 2 2 2 0 1 1 0 0 0 0 0.39 0.98 -7200 LSM11 LSM11, U7 small nuclear RNA associated 164668 2 2 2 0 2 0 0 0 0 0 0.39 0.98 -7201 SLC39A5 solute carrier family 39 (metal ion transporter), member 5 362936 4 4 4 1 3 0 1 0 0 0 0.39 0.98 -7202 SDCCAG3 serologically defined colon cancer antigen 3 263844 1 1 1 0 0 0 0 0 1 0 0.39 0.98 -7203 TSPYL6 TSPY-like 6 277088 3 3 3 2 1 2 0 0 0 0 0.39 0.98 -7204 GDPD3 glycerophosphodiester phosphodiesterase domain containing 3 223328 2 2 2 0 0 1 0 1 0 0 0.39 0.98 -7205 HIST1H2BH histone cluster 1, H2bh 86240 1 1 1 0 1 0 0 0 0 0 0.39 0.98 -7206 NEO1 neogenin homolog 1 (chicken) 978432 6 5 6 3 1 2 1 0 2 0 0.39 0.98 -7207 PCDHB10 protocadherin beta 10 493304 8 6 8 6 5 2 1 0 0 0 0.39 0.98 -7208 HORMAD1 HORMA domain containing 1 277984 3 3 3 0 2 1 0 0 0 0 0.39 0.98 -7209 FAM123C family with sequence similarity 123C 472188 3 3 3 2 1 0 0 0 2 0 0.39 0.98 -7210 LECT1 leukocyte cell derived chemotaxin 1 229796 2 2 2 0 0 1 0 0 1 0 0.39 0.98 -7211 ZNF772 zinc finger protein 772 333760 3 3 3 1 2 1 0 0 0 0 0.39 0.98 -7212 NOL9 nucleolar protein 9 393568 2 2 2 0 0 1 1 0 0 0 0.39 0.98 -7213 IFT57 intraflagellar transport 57 homolog (Chlamydomonas) 298732 2 2 2 0 1 0 0 0 1 0 0.39 0.98 -7214 CRYAB crystallin, alpha B 116336 1 1 1 0 1 0 0 0 0 0 0.39 0.98 -7215 CCDC113 coiled-coil domain containing 113 247800 4 3 4 1 4 0 0 0 0 0 0.39 0.98 -7216 AMACR alpha-methylacyl-CoA racemase 301764 4 3 4 1 1 3 0 0 0 0 0.39 0.98 -7217 GATA2 GATA binding protein 2 288372 3 3 3 0 1 1 0 0 1 0 0.39 0.98 -7218 GPD2 glycerol-3-phosphate dehydrogenase 2 (mitochondrial) 503552 4 4 4 2 0 3 1 0 0 0 0.39 0.98 -7219 UCHL3 ubiquitin carboxyl-terminal esterase L3 (ubiquitin thiolesterase) 163296 2 2 2 0 1 1 0 0 0 0 0.39 0.98 -7220 KIAA1407 KIAA1407 644896 5 5 5 2 1 2 1 0 1 0 0.39 0.98 -7221 MPEG1 482720 4 3 4 1 2 1 0 0 1 0 0.39 0.98 -7222 COMMD1 copper metabolism (Murr1) domain containing 1 128184 1 1 1 0 1 0 0 0 0 0 0.39 0.98 -7223 NUP98 nucleoporin 98kDa 1255072 11 9 11 2 1 7 2 0 1 0 0.39 0.98 -7224 ZNF302 zinc finger protein 302 272384 2 2 2 0 1 0 0 0 1 0 0.39 0.98 -7225 ARPC5 actin related protein 2/3 complex, subunit 5, 16kDa 105728 1 1 1 0 0 0 1 0 0 0 0.39 0.98 -7226 CASP2 caspase 2, apoptosis-related cysteine peptidase (neural precursor cell expressed, developmentally down-regulated 2) 314188 4 4 4 1 3 0 1 0 0 0 0.39 0.98 -7227 NEK11 NIMA (never in mitosis gene a)- related kinase 11 452480 3 3 3 1 0 0 2 0 1 0 0.39 0.98 -7228 CCDC127 coiled-coil domain containing 127 176848 2 2 2 0 0 0 2 0 0 0 0.39 0.99 -7229 SLC27A2 solute carrier family 27 (fatty acid transporter), member 2 424368 3 3 3 0 0 1 1 0 1 0 0.40 0.99 -7230 ZDHHC6 zinc finger, DHHC-type containing 6 279280 2 2 2 0 0 2 0 0 0 0 0.40 0.99 -7231 MAGEA8 melanoma antigen family A, 8 212324 2 2 2 0 1 1 0 0 0 0 0.40 0.99 -7232 CCNB1 cyclin B1 299712 2 2 2 0 1 1 0 0 0 0 0.40 0.99 -7233 TNFSF8 tumor necrosis factor (ligand) superfamily, member 8 161504 1 1 1 1 0 1 0 0 0 0 0.40 0.99 -7234 COL8A2 collagen, type VIII, alpha 2 273868 1 1 1 0 0 0 0 0 1 0 0.40 0.99 -7235 KIAA0895 356384 6 4 6 0 2 3 1 0 0 0 0.40 0.99 -7236 KCNK1 potassium channel, subfamily K, member 1 229152 2 2 2 0 0 2 0 0 0 0 0.40 0.99 -7237 HFE2 hemochromatosis type 2 (juvenile) 288960 3 3 3 0 0 3 0 0 0 0 0.40 0.99 -7238 PLA2G4D phospholipase A2, group IVD (cytosolic) 540280 4 4 4 0 1 1 2 0 0 0 0.40 0.99 -7239 DAOA D-amino acid oxidase activator 107952 3 1 3 1 0 1 2 0 0 0 0.40 0.99 -7240 KLHL15 kelch-like 15 (Drosophila) 408216 3 3 3 1 0 1 2 0 0 0 0.40 0.99 -7241 STRADA 314048 2 2 2 1 0 0 2 0 0 0 0.40 0.99 -7242 CXXC4 CXXC finger 4 134428 1 1 1 0 0 0 1 0 0 0 0.40 0.99 -7243 GPR148 G protein-coupled receptor 148 233072 2 2 2 1 0 1 1 0 0 0 0.40 0.99 -7244 MASP2 mannan-binding lectin serine peptidase 2 436252 4 4 4 2 0 2 2 0 0 0 0.40 0.99 -7245 IFIT5 interferon-induced protein with tetratricopeptide repeats 5 326368 3 3 3 1 1 1 1 0 0 0 0.40 0.99 -7246 OR11H12 olfactory receptor, family 11, subfamily H, member 12 220640 1 1 1 0 0 1 0 0 0 0 0.40 0.99 -7247 C3orf22 chromosome 3 open reading frame 22 98112 1 1 1 1 1 0 0 0 0 0 0.40 0.99 -7248 OR5T1 olfactory receptor, family 5, subfamily T, member 1 220640 1 1 1 1 0 0 1 0 0 0 0.40 0.99 -7249 IKZF3 IKAROS family zinc finger 3 (Aiolos) 349888 3 3 3 1 2 0 1 0 0 0 0.40 0.99 -7250 NDUFB1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 1, 7kDa 71064 1 1 1 0 1 0 0 0 0 0 0.40 0.99 -7251 TXLNG 340704 4 4 4 0 2 0 2 0 0 0 0.40 0.99 -7252 GZMM granzyme M (lymphocyte met-ase 1) 131432 1 1 1 0 0 0 0 0 1 0 0.40 0.99 -7253 DNAJB11 DnaJ (Hsp40) homolog, subfamily B, member 11 250208 2 2 2 0 1 1 0 0 0 0 0.40 0.99 -7254 UNC50 unc-50 homolog (C. elegans) 179200 1 1 1 1 0 0 0 0 1 0 0.40 0.99 -7255 NFIC nuclear factor I/C (CCAAT-binding transcription factor) 299044 4 4 4 0 2 1 1 0 0 0 0.40 0.99 -7256 PPA1 pyrophosphatase (inorganic) 1 189504 2 2 2 0 1 0 1 0 0 0 0.40 0.99 -7257 GSTM2 glutathione S-transferase M2 (muscle) 157248 2 2 2 0 0 2 0 0 0 0 0.40 0.99 -7258 MED27 mediator complex subunit 27 214928 2 2 2 1 0 1 0 0 1 0 0.40 0.99 -7259 PWP2 PWP2 periodic tryptophan protein homolog (yeast) 602264 5 5 5 1 3 1 1 0 0 0 0.40 0.99 -7260 AGBL4 ATP/GTP binding protein-like 4 165240 2 2 2 1 1 0 1 0 0 0 0.40 0.99 -7261 NCKIPSD NCK interacting protein with SH3 domain 435544 3 3 3 0 1 0 1 0 1 0 0.40 0.99 -7262 THUMPD3 THUMP domain containing 3 349188 4 3 4 0 0 1 3 0 0 0 0.40 0.99 -7263 OOEP oocyte expressed protein homolog (dog) 103488 1 1 1 1 0 0 0 0 1 0 0.40 0.99 -7264 MLEC 168980 2 2 2 1 2 0 0 0 0 0 0.40 0.99 -7265 ECSIT ECSIT homolog (Drosophila) 271720 3 3 3 0 2 1 0 0 0 0 0.40 0.99 -7266 TMEM120A transmembrane protein 120A 165408 1 1 1 0 0 0 0 0 1 0 0.40 0.99 -7267 OR52A1 olfactory receptor, family 52, subfamily A, member 1 211232 3 2 3 2 0 1 2 0 0 0 0.40 0.99 -7268 KCNV2 potassium channel, subfamily V, member 2 347032 6 5 6 1 4 1 0 0 1 0 0.40 0.99 -7269 CHRM1 cholinergic receptor, muscarinic 1 310604 3 3 3 2 2 0 1 0 0 0 0.40 0.99 -7270 FAM9C family with sequence similarity 9, member C 117600 1 1 1 0 0 0 1 0 0 0 0.40 0.99 -7271 IFNB1 interferon, beta 1, fibroblast 127232 1 1 1 0 1 0 0 0 0 0 0.40 0.99 -7272 PDE7A phosphodiesterase 7A 353780 3 3 3 2 1 1 0 0 1 0 0.40 0.99 -7273 COPE coatomer protein complex, subunit epsilon 178944 2 2 2 0 1 0 1 0 0 0 0.40 0.99 -7274 PSMD9 proteasome (prosome, macropain) 26S subunit, non-ATPase, 9 147456 1 1 1 0 0 0 0 0 1 0 0.40 0.99 -7275 N6AMT2 N-6 adenine-specific DNA methyltransferase 2 (putative) 148064 2 2 2 1 1 1 0 0 0 0 0.40 0.99 -7276 C17orf37 chromosome 17 open reading frame 37 60704 1 1 1 0 1 0 0 0 0 0 0.40 0.99 -7277 ADAMTS8 ADAM metallopeptidase with thrombospondin type 1 motif, 8 455916 5 4 5 0 2 0 2 0 1 0 0.40 0.99 -7278 LRRC16A leucine rich repeat containing 16A 892472 9 7 9 1 3 2 4 0 0 0 0.40 0.99 -7279 DFNB31 deafness, autosomal recessive 31 590576 8 7 8 1 4 2 2 0 0 0 0.40 0.99 -7280 IL27 interleukin 27 154712 1 1 1 0 0 0 0 0 1 0 0.40 0.99 -7281 CD177 CD177 molecule 266644 2 2 2 0 0 1 1 0 0 0 0.40 0.99 -7282 CBX5 chromobox homolog 5 (HP1 alpha homolog, Drosophila) 132608 1 1 1 1 1 0 0 0 0 0 0.40 0.99 -7283 LGALS12 lectin, galactoside-binding, soluble, 12 (galectin 12) 235200 2 2 2 1 1 1 0 0 0 0 0.40 0.99 -7284 RAX2 retina and anterior neural fold homeobox 2 48188 1 1 1 0 1 0 0 0 0 0 0.40 0.99 -7285 ASAH2 N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2 191888 1 1 1 0 0 1 0 0 0 0 0.40 0.99 -7286 RBPJ recombination signal binding protein for immunoglobulin kappa J region 352072 5 3 5 0 2 0 3 0 0 0 0.40 0.99 -7287 ZNF311 zinc finger protein 311 334908 5 3 5 0 0 4 0 0 1 0 0.40 0.99 -7288 RELL2 RELT-like 2 207984 2 2 2 0 0 2 0 0 0 0 0.40 0.99 -7289 CASK calcium/calmodulin-dependent serine protein kinase (MAGUK family) 647136 5 5 5 2 1 2 1 0 1 0 0.40 0.99 -7290 PRRT1 proline-rich transmembrane protein 1 77000 1 1 1 0 0 0 0 0 1 0 0.40 0.99 -7291 PPP3R1 protein phosphatase 3 (formerly 2B), regulatory subunit B, alpha isoform 119336 1 1 1 0 0 0 1 0 0 0 0.40 0.99 -7292 PMCH pro-melanin-concentrating hormone 114240 1 1 1 0 0 1 0 0 0 0 0.40 0.99 -7293 C12orf50 chromosome 12 open reading frame 50 289632 2 2 2 2 0 0 1 0 1 0 0.40 0.99 -7294 FHL3 four and a half LIM domains 3 193312 2 2 2 0 0 2 0 0 0 0 0.40 0.99 -7295 CCR7 chemokine (C-C motif) receptor 7 257376 3 3 3 1 1 2 0 0 0 0 0.40 0.99 -7296 MEGF11 multiple EGF-like-domains 11 547100 4 4 4 1 1 1 2 0 0 0 0.40 0.99 -7297 RFX6 634648 11 6 11 0 4 4 2 0 1 0 0.40 0.99 -7298 METTL14 316960 3 3 3 0 0 0 3 0 0 0 0.40 0.99 -7299 LRP8 low density lipoprotein receptor-related protein 8, apolipoprotein e receptor 549612 4 4 3 2 3 0 0 1 0 0 0.40 0.99 -7300 H2BFWT H2B histone family, member W, testis-specific 120064 2 2 2 0 1 1 0 0 0 0 0.40 0.99 -7301 OR5AU1 olfactory receptor, family 5, subfamily AU, member 1 244832 2 2 1 2 2 0 0 0 0 0 0.40 0.99 -7302 SATL1 spermidine/spermine N1-acetyl transferase-like 1 306432 2 2 2 1 0 1 1 0 0 0 0.40 0.99 -7303 OR7D4 olfactory receptor, family 7, subfamily D, member 4 211232 2 2 2 0 1 0 1 0 0 0 0.40 0.99 -7304 MERTK c-mer proto-oncogene tyrosine kinase 682500 5 5 5 1 2 2 1 0 0 0 0.40 0.99 -7305 RGN regucalcin (senescence marker protein-30) 198680 1 1 1 0 0 0 0 0 1 0 0.40 0.99 -7306 GSTO1 glutathione S-transferase omega 1 164528 1 1 1 0 0 0 1 0 0 0 0.40 0.99 -7307 NAGPA N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase 263748 3 3 3 1 2 0 1 0 0 0 0.40 0.99 -7308 LASP1 LIM and SH3 protein 1 167104 2 2 2 0 2 0 0 0 0 0 0.40 0.99 -7309 CDC20 cell division cycle 20 homolog (S. cerevisiae) 337316 3 3 3 0 1 1 1 0 0 0 0.40 0.99 -7310 SOAT1 sterol O-acyltransferase (acyl-Coenzyme A: cholesterol acyltransferase) 1 383712 1 1 1 0 0 0 0 0 1 0 0.40 0.99 -7311 OBFC2A oligonucleotide/oligosaccharide-binding fold containing 2A 143136 1 1 1 1 0 0 1 0 0 0 0.40 0.99 -7312 C8orf31 chromosome 8 open reading frame 31 92960 1 1 1 2 0 1 0 0 0 0 0.40 0.99 -7313 CCDC125 coiled-coil domain containing 125 353920 4 3 4 1 0 2 2 0 0 0 0.40 0.99 -7314 ZNF480 zinc finger protein 480 353248 2 2 2 0 0 1 0 0 1 0 0.40 0.99 -7315 KRT15 keratin 15 314272 2 2 2 1 0 2 0 0 0 0 0.40 0.99 -7316 C3orf19 chromosome 3 open reading frame 19 324352 4 3 4 0 1 3 0 0 0 0 0.40 0.99 -7317 RAPSN receptor-associated protein of the synapse 242408 2 2 2 2 0 1 0 0 1 0 0.40 0.99 -7318 C13orf26 chromosome 13 open reading frame 26 201152 1 1 1 0 0 1 0 0 0 0 0.40 0.99 -7319 TMCO1 transmembrane and coiled-coil domains 1 133280 1 1 1 0 0 0 1 0 0 0 0.40 0.99 -7320 RBM25 RNA binding motif protein 25 583296 6 5 6 1 1 3 1 0 1 0 0.40 0.99 -7321 PCDHA6 protocadherin alpha 6 622328 10 8 10 1 5 2 3 0 0 0 0.40 0.99 -7322 RAB32 RAB32, member RAS oncogene family 146832 2 2 2 0 1 1 0 0 0 0 0.40 0.99 -7323 CCDC45 coiled-coil domain containing 45 538344 6 5 6 1 1 2 2 0 1 0 0.40 0.99 -7324 YWHAB tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, beta polypeptide 170464 2 2 2 0 2 0 0 0 0 0 0.40 0.99 -7325 GPR32 G protein-coupled receptor 32 240800 2 2 2 1 1 0 1 0 0 0 0.40 0.99 -7326 RAB9B RAB9B, member RAS oncogene family 136640 1 1 1 0 0 0 1 0 0 0 0.40 0.99 -7327 WDR48 WD repeat domain 48 472640 2 2 2 0 0 0 1 0 1 0 0.40 0.99 -7328 SLC17A5 solute carrier family 17 (anion/sugar transporter), member 5 335968 3 3 3 1 1 2 0 0 0 0 0.40 0.99 -7329 RAB23 RAB23, member RAS oncogene family 165312 2 2 2 1 1 1 0 0 0 0 0.40 0.99 -7330 STK17B serine/threonine kinase 17b 256928 1 1 1 0 0 0 0 0 1 0 0.40 0.99 -7331 NCAN neurocan 805504 7 6 7 1 3 3 0 1 0 0 0.40 0.99 -7332 CST8 cystatin 8 (cystatin-related epididymal specific) 98784 1 1 1 0 1 0 0 0 0 0 0.40 0.99 -7333 OR5M10 olfactory receptor, family 5, subfamily M, member 10 213248 2 2 2 0 1 1 0 0 0 0 0.40 0.99 -7334 ZNF549 zinc finger protein 549 424704 8 4 8 0 3 2 3 0 0 0 0.40 0.99 -7335 CPEB2 cytoplasmic polyadenylation element binding protein 2 346332 2 2 2 0 1 0 0 0 1 0 0.40 0.99 -7336 ZCCHC14 zinc finger, CCHC domain containing 14 604324 6 6 6 0 4 0 2 0 0 0 0.40 0.99 -7337 BRF1 BRF1 homolog, subunit of RNA polymerase III transcription initiation factor IIIB (S. cerevisiae) 393008 3 3 3 0 1 0 1 0 1 0 0.40 0.99 -7338 ATAD2B ATPase family, AAA domain containing 2B 927152 9 5 9 0 2 3 1 0 3 0 0.40 0.99 -7339 OXCT1 3-oxoacid CoA transferase 1 365344 3 3 3 2 1 2 0 0 0 0 0.40 0.99 -7340 KCNK10 potassium channel, subfamily K, member 10 387016 4 4 4 1 3 1 0 0 0 0 0.40 0.99 -7341 TMEM179B transmembrane protein 179B 143920 1 1 1 0 0 1 0 0 0 0 0.40 0.99 -7342 KIRREL kin of IRRE like (Drosophila) 412160 5 4 5 0 2 1 2 0 0 0 0.40 0.99 -7343 OSBP oxysterol binding protein 497544 3 3 3 0 0 1 1 0 1 0 0.40 0.99 -7344 NMI N-myc (and STAT) interactor 213248 2 2 2 1 1 1 0 0 0 0 0.40 0.99 -7345 PDE1A phosphodiesterase 1A, calmodulin-dependent 390208 4 4 4 0 3 0 1 0 0 0 0.40 0.99 -7346 AMELX amelogenin (amelogenesis imperfecta 1, X-linked) 143808 1 1 1 0 0 0 1 0 0 0 0.40 0.99 -7347 BIN3 bridging integrator 3 167052 1 1 1 0 0 0 0 0 1 0 0.40 0.99 -7348 TMEM183A transmembrane protein 183A 234528 2 2 2 0 0 1 1 0 0 0 0.40 0.99 -7349 SLFN12 schlafen family member 12 391776 3 3 3 0 1 1 1 0 0 0 0.40 0.99 -7350 PCM1 pericentriolar material 1 1346760 12 7 12 4 1 4 2 0 2 3 0.40 0.99 -7351 PLCL2 phospholipase C-like 2 680064 7 6 7 2 2 2 3 0 0 0 0.40 0.99 -7352 C10orf12 chromosome 10 open reading frame 12 839552 7 6 7 2 4 2 0 0 1 0 0.40 0.99 -7353 OR2D2 olfactory receptor, family 2, subfamily D, member 2 208544 2 2 2 1 1 0 1 0 0 0 0.40 0.99 -7354 C9orf129 chromosome 9 open reading frame 129 117348 1 1 1 0 1 0 0 0 0 0 0.40 0.99 -7355 SERPINA9 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 9 297472 2 2 2 0 1 0 1 0 0 0 0.40 0.99 -7356 TAS2R1 taste receptor, type 2, member 1 202496 2 2 1 2 0 2 0 0 0 0 0.40 0.99 -7357 NIPSNAP3B nipsnap homolog 3B (C. elegans) 163240 1 1 1 0 1 0 0 0 0 0 0.40 0.99 -7358 PHKB phosphorylase kinase, beta 795508 5 5 5 4 2 2 1 0 0 0 0.40 0.99 -7359 PLAU plasminogen activator, urokinase 298844 3 3 3 1 1 0 1 0 1 0 0.40 0.99 -7360 FAM115C 318656 4 3 4 0 1 3 0 0 0 0 0.41 0.99 -7361 F7 coagulation factor VII (serum prothrombin conversion accelerator) 236188 3 3 3 1 2 1 0 0 0 0 0.41 0.99 -7362 CYP1A2 cytochrome P450, family 1, subfamily A, polypeptide 2 352800 3 3 3 3 0 2 1 0 0 0 0.41 0.99 -7363 ERP44 284256 2 2 2 2 0 1 1 0 0 0 0.41 0.99 -7364 MBD4 methyl-CpG binding domain protein 4 397600 3 3 3 1 0 2 1 0 0 0 0.41 0.99 -7365 KRT23 keratin 23 (histone deacetylase inducible) 291424 2 2 2 2 1 0 0 0 1 0 0.41 0.99 -7366 DHX35 DEAH (Asp-Glu-Ala-His) box polypeptide 35 492800 5 5 5 1 2 0 2 0 1 0 0.41 0.99 -7367 KRTAP5-11 keratin associated protein 5-11 106400 1 1 1 1 0 1 0 0 0 0 0.41 0.99 -7368 STRADB 291424 2 2 2 0 0 2 0 0 0 0 0.41 0.99 -7369 C10orf32 chromosome 10 open reading frame 32 67272 1 1 1 0 0 1 0 0 0 0 0.41 0.99 -7370 PKP2 plakophilin 2 578200 7 7 7 1 4 1 2 0 0 0 0.41 0.99 -7371 KRTAP19-1 keratin associated protein 19-1 62048 1 1 1 1 0 1 0 0 0 0 0.41 0.99 -7372 HIGD2A HIG1 domain family, member 2A 73696 1 1 1 0 0 0 1 0 0 0 0.41 0.99 -7373 EPB41L2 erythrocyte membrane protein band 4.1-like 2 692160 6 5 6 1 2 3 1 0 0 0 0.41 0.99 -7374 QRSL1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 365344 4 4 3 0 3 1 0 0 0 0 0.41 0.99 -7375 RNF157 ring finger protein 157 466116 3 3 3 1 0 0 3 0 0 0 0.41 0.99 -7376 GCET2 germinal center expressed transcript 2 127008 1 1 1 0 0 0 0 0 1 0 0.41 0.99 -7377 LPCAT3 338688 2 2 2 0 0 1 0 0 1 0 0.41 0.99 -7378 KIF2C kinesin family member 2C 506688 5 5 5 0 2 3 0 0 0 0 0.41 0.99 -7379 LRRC3B leucine rich repeat containing 3B 175616 1 1 1 3 0 1 0 0 0 0 0.41 0.99 -7380 TFF2 trefoil factor 2 (spasmolytic protein 1) 90944 1 1 1 0 1 0 0 0 0 0 0.41 0.99 -7381 KHDRBS2 KH domain containing, RNA binding, signal transduction associated 2 243264 3 3 3 2 0 1 2 0 0 0 0.41 0.99 -7382 LEO1 Leo1, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) 458976 4 4 4 0 1 2 1 0 0 0 0.41 0.99 -7383 FXN frataxin 110208 1 1 1 0 1 0 0 0 0 0 0.41 0.99 -7384 RSPO4 R-spondin family, member 4 122996 1 1 1 1 0 1 0 0 0 0 0.41 0.99 -7385 DKK3 dickkopf homolog 3 (Xenopus laevis) 226464 2 2 2 1 2 0 0 0 0 0 0.41 0.99 -7386 NHSL2 NHS-like 2 441056 4 4 4 6 1 3 0 0 0 0 0.41 0.99 -7387 FPR1 formyl peptide receptor 1 236768 2 2 2 0 1 0 1 0 0 0 0.41 0.99 -7388 GOLM1 golgi membrane protein 1 278208 3 2 3 1 0 2 0 0 1 0 0.41 0.99 -7389 FGF7 fibroblast growth factor 7 (keratinocyte growth factor) 124656 1 1 1 0 0 1 0 0 0 0 0.41 0.99 -7390 ANTXR2 anthrax toxin receptor 2 295564 3 3 3 1 1 0 2 0 0 0 0.41 0.99 -7391 RBP5 retinol binding protein 5, cellular 94976 1 1 1 0 1 0 0 0 0 0 0.41 0.99 -7392 DEFB125 defensin, beta 125 107296 1 1 1 0 0 0 1 0 0 0 0.41 0.99 -7393 OR52K2 olfactory receptor, family 52, subfamily K, member 2 212576 3 2 3 1 1 0 2 0 0 0 0.41 0.99 -7394 PLSCR1 phospholipid scramblase 1 221536 2 2 2 0 1 0 1 0 0 0 0.41 0.99 -7395 KCNV1 potassium channel, subfamily V, member 1 293720 3 3 3 1 2 0 1 0 0 0 0.41 0.99 -7396 PCGF1 polycomb group ring finger 1 181016 2 2 2 0 0 1 1 0 0 0 0.41 0.99 -7397 OR4K14 olfactory receptor, family 4, subfamily K, member 14 209888 1 1 1 1 0 0 1 0 0 0 0.41 0.99 -7398 CD46 CD46 molecule, complement regulatory protein 293888 3 3 3 2 0 1 2 0 0 0 0.41 0.99 -7399 STEAP2 six transmembrane epithelial antigen of the prostate 2 341600 2 2 2 0 0 0 0 0 2 0 0.41 0.99 -7400 C18orf54 chromosome 18 open reading frame 54 256928 2 2 2 1 0 2 0 0 0 0 0.41 0.99 -7401 CALB2 calbindin 2, 29kDa (calretinin) 188160 2 2 2 1 1 0 0 1 0 0 0.41 0.99 -7402 IFNK interferon, kappa 140672 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -7403 RAB18 RAB18, member RAS oncogene family 135584 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -7404 CHRNB3 cholinergic receptor, nicotinic, beta 3 313740 4 3 4 3 2 2 0 0 0 0 0.41 1.00 -7405 OAS2 2'-5'-oligoadenylate synthetase 2, 69/71kDa 499296 7 5 7 0 2 4 1 0 0 0 0.41 1.00 -7406 ALS2CR12 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 12 312256 2 2 2 1 0 0 2 0 0 0 0.41 1.00 -7407 CKMT1B creatine kinase, mitochondrial 1B 117012 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -7408 CHGB chromogranin B (secretogranin 1) 447216 5 5 5 3 3 1 1 0 0 0 0.41 1.00 -7409 ZNF81 zinc finger protein 81 448448 4 4 4 0 0 2 2 0 0 0 0.41 1.00 -7410 PPM1B protein phosphatase 1B (formerly 2C), magnesium-dependent, beta isoform 342048 2 2 2 1 1 0 1 0 0 0 0.41 1.00 -7411 CLIC2 chloride intracellular channel 2 172032 1 1 1 2 0 1 0 0 0 0 0.41 1.00 -7412 CCDC73 coiled-coil domain containing 73 732032 7 4 7 2 1 3 2 0 1 0 0.41 1.00 -7413 WISP1 WNT1 inducible signaling pathway protein 1 238084 2 2 2 3 1 0 0 0 1 0 0.41 1.00 -7414 FAM127C family with sequence similarity 127, member C 77504 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -7415 C9orf30 chromosome 9 open reading frame 30 187264 1 1 1 1 0 0 0 0 1 0 0.41 1.00 -7416 SLC16A2 solute carrier family 16, member 2 (monocarboxylic acid transporter 8) 322968 3 3 3 0 2 1 0 0 0 0 0.41 1.00 -7417 RANBP1 RAN binding protein 1 110992 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -7418 RAB4B RAB4B, member RAS oncogene family 147360 2 2 2 1 1 0 1 0 0 0 0.41 1.00 -7419 MPDZ multiple PDZ domain protein 1399896 11 8 10 3 3 7 0 0 1 0 0.41 1.00 -7420 MRPL37 mitochondrial ribosomal protein L37 287336 3 3 3 2 2 0 1 0 0 0 0.41 1.00 -7421 VSIG4 V-set and immunoglobulin domain containing 4 276592 2 2 2 0 2 0 0 0 0 0 0.41 1.00 -7422 GFM1 G elongation factor, mitochondrial 1 509824 4 4 4 2 1 1 2 0 0 0 0.41 1.00 -7423 DNAJB4 DnaJ (Hsp40) homolog, subfamily B, member 4 229824 2 2 2 0 1 1 0 0 0 0 0.41 1.00 -7424 C12orf57 chromosome 12 open reading frame 57 87528 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -7425 FAM101B family with sequence similarity 101, member B 84632 1 1 1 1 0 1 0 0 0 0 0.41 1.00 -7426 PPP1R14C protein phosphatase 1, regulatory (inhibitor) subunit 14C 91588 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -7427 BOK BCL2-related ovarian killer 90300 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -7428 WFDC5 WAP four-disulfide core domain 5 86912 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -7429 ODAM odontogenic, ameloblast asssociated 197120 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -7430 ZNF614 zinc finger protein 614 397376 4 3 4 2 1 0 2 0 1 0 0.41 1.00 -7431 KIAA1143 KIAA1143 106848 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -7432 ARL13A ADP-ribosylation factor-like 13A 184960 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -7433 DLX4 distal-less homeobox 4 164612 3 2 3 1 2 1 0 0 0 0 0.41 1.00 -7434 EPHX4 243152 3 3 3 0 1 1 1 0 0 0 0.41 1.00 -7435 LPIN2 lipin 2 617624 5 5 5 0 1 2 1 0 1 0 0.41 1.00 -7436 ZNF708 zinc finger protein 708 382592 6 4 6 0 1 4 1 0 0 0 0.41 1.00 -7437 ZNF3 zinc finger protein 3 332864 3 3 3 1 1 2 0 0 0 0 0.41 1.00 -7438 FAM84A family with sequence similarity 84, member A 160484 2 2 2 0 1 0 1 0 0 0 0.41 1.00 -7439 MTHFSD methenyltetrahydrofolate synthetase domain containing 226296 3 3 3 0 0 2 1 0 0 0 0.41 1.00 -7440 SLC10A5 solute carrier family 10 (sodium/bile acid cotransporter family), member 5 295904 3 3 3 2 0 2 1 0 0 0 0.41 1.00 -7441 ATP6V1B2 ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B2 350876 2 2 2 0 0 0 1 0 1 0 0.41 1.00 -7442 MDH1 malate dehydrogenase 1, NAD (soluble) 233184 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -7443 PSMD7 proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 220456 1 1 1 1 0 0 0 0 1 0 0.41 1.00 -7444 FSIP1 fibrous sheath interacting protein 1 400960 4 3 4 0 0 4 0 0 0 0 0.41 1.00 -7445 ERRFI1 ERBB receptor feedback inhibitor 1 313112 3 3 2 0 3 0 0 0 0 0 0.41 1.00 -7446 NCAPG2 non-SMC condensin II complex, subunit G2 792960 6 5 6 1 4 1 0 0 1 0 0.41 1.00 -7447 TREX2 three prime repair exonuclease 2 76924 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -7448 C20orf106 chromosome 20 open reading frame 106 117376 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -7449 PRDM7 PR domain containing 7 328608 2 2 2 1 0 1 0 0 1 0 0.41 1.00 -7450 USF1 upstream transcription factor 1 217952 3 2 3 0 1 1 0 0 1 0 0.41 1.00 -7451 C3orf32 chromosome 3 open reading frame 32 228788 2 2 2 0 0 2 0 0 0 0 0.41 1.00 -7452 SST somatostatin 72936 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -7453 CCT5 chaperonin containing TCP1, subunit 5 (epsilon) 374080 3 3 3 1 1 1 1 0 0 0 0.41 1.00 -7454 NR2C1 nuclear receptor subfamily 2, group C, member 1 435008 4 3 4 1 0 3 1 0 0 0 0.41 1.00 -7455 JAM3 junctional adhesion molecule 3 226576 3 3 3 0 1 0 2 0 0 0 0.41 1.00 -7456 GSC2 goosecoid homeobox 2 35280 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -7457 TM2D1 TM2 domain containing 1 142540 2 2 2 0 1 0 0 1 0 0 0.41 1.00 -7458 D4S234E 128576 2 2 2 0 2 0 0 0 0 0 0.41 1.00 -7459 KLHL24 kelch-like 24 (Drosophila) 409248 4 3 4 1 2 0 2 0 0 0 0.41 1.00 -7460 RCAN3 RCAN family member 3 166208 2 2 2 0 2 0 0 0 0 0 0.41 1.00 -7461 EPS15 epidermal growth factor receptor pathway substrate 15 624432 7 6 7 1 3 2 1 0 1 0 0.41 1.00 -7462 IFNA13 interferon, alpha 13 97728 2 1 2 0 1 0 1 0 0 0 0.41 1.00 -7463 MLF2 myeloid leukemia factor 2 164504 2 2 2 0 1 1 0 0 0 0 0.41 1.00 -7464 TRAFD1 TRAF-type zinc finger domain containing 1 401632 3 3 3 0 0 2 0 1 0 0 0.41 1.00 -7465 ZNF671 zinc finger protein 671 363104 4 2 4 2 0 1 0 0 1 2 0.41 1.00 -7466 TEX261 testis expressed 261 137536 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -7467 UNC45B unc-45 homolog B (C. elegans) 627296 9 5 9 1 4 3 2 0 0 0 0.41 1.00 -7468 FGF13 fibroblast growth factor 13 227360 3 3 3 1 1 2 0 0 0 0 0.41 1.00 -7469 AKR1B1 aldo-keto reductase family 1, member B1 (aldose reductase) 221848 3 3 3 2 2 1 0 0 0 0 0.41 1.00 -7470 TRIM60 tripartite motif-containing 60 317828 4 3 4 2 2 1 1 0 0 0 0.41 1.00 -7471 RUNDC2A RUN domain containing 2A 257376 3 3 3 1 1 1 0 1 0 0 0.41 1.00 -7472 RHOBTB1 Rho-related BTB domain containing 1 476448 4 4 3 2 2 2 0 0 0 0 0.41 1.00 -7473 RPIA ribose 5-phosphate isomerase A (ribose 5-phosphate epimerase) 192408 3 3 3 2 1 2 0 0 0 0 0.41 1.00 -7474 KDM6B 911880 4 4 4 0 1 0 0 0 3 0 0.41 1.00 -7475 IL16 interleukin 16 (lymphocyte chemoattractant factor) 893844 10 6 10 4 2 5 1 0 2 0 0.41 1.00 -7476 CREB5 cAMP responsive element binding protein 5 363328 4 3 4 3 2 2 0 0 0 0 0.41 1.00 -7477 MAGEA3 melanoma antigen family A, 3 185780 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -7478 PDIK1L PDLIM1 interacting kinase 1 like 231616 2 2 2 1 0 1 0 0 1 0 0.41 1.00 -7479 PRNP prion protein (p27-30) (Creutzfeldt-Jakob disease, Gerstmann-Strausler-Scheinker syndrome, fatal familial insomnia) 155624 2 2 2 1 1 0 1 0 0 0 0.41 1.00 -7480 GPSM3 G-protein signaling modulator 3 (AGS3-like, C. elegans) 90776 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -7481 CD164L2 CD164 sialomucin-like 2 103528 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -7482 RYK RYK receptor-like tyrosine kinase 334312 4 3 4 1 0 3 1 0 0 0 0.41 1.00 -7483 KCNB1 potassium voltage-gated channel, Shab-related subfamily, member 1 555268 5 5 5 4 2 3 0 0 0 0 0.41 1.00 -7484 SPAG5 sperm associated antigen 5 823872 7 6 7 1 3 2 2 0 0 0 0.41 1.00 -7485 UGGT1 1073936 12 9 12 2 3 2 7 0 0 0 0.41 1.00 -7486 CPNE1 copine I 379232 5 4 5 1 4 0 1 0 0 0 0.41 1.00 -7487 GTPBP2 GTP binding protein 2 398312 2 2 2 1 0 1 0 0 1 0 0.41 1.00 -7488 SLC2A13 solute carrier family 2 (facilitated glucose transporter), member 13 352956 3 3 3 2 1 2 0 0 0 0 0.41 1.00 -7489 EML5 echinoderm microtubule associated protein like 5 1309408 12 8 12 4 4 2 4 0 2 0 0.41 1.00 -7490 SATB2 SATB homeobox 2 463456 4 4 4 3 1 0 2 0 1 0 0.41 1.00 -7491 IQCH IQ motif containing H 706608 7 6 7 2 3 0 4 0 0 0 0.41 1.00 -7492 ANKRD33 ankyrin repeat domain 33 313376 3 3 3 1 3 0 0 0 0 0 0.41 1.00 -7493 REPS2 RALBP1 associated Eps domain containing 2 398272 3 3 3 0 1 0 1 0 1 0 0.41 1.00 -7494 SAMD3 sterile alpha motif domain containing 3 359072 3 3 3 0 1 1 1 0 0 0 0.41 1.00 -7495 OR52N5 olfactory receptor, family 52, subfamily N, member 5 219296 2 2 2 1 2 0 0 0 0 0 0.41 1.00 -7496 JAG1 jagged 1 (Alagille syndrome) 812084 8 8 7 2 5 1 1 0 1 0 0.41 1.00 -7497 WFDC3 WAP four-disulfide core domain 3 161280 2 2 2 0 0 1 1 0 0 0 0.41 1.00 -7498 SERPINE3 277864 2 2 2 0 0 0 2 0 0 0 0.41 1.00 -7499 CABIN1 1385804 11 10 11 2 5 3 1 0 2 0 0.41 1.00 -7500 FAM20B family with sequence similarity 20, member B 281792 2 2 2 0 1 0 0 0 1 0 0.41 1.00 -7501 CCDC65 coiled-coil domain containing 65 333088 4 3 4 0 0 3 1 0 0 0 0.41 1.00 -7502 TAF11 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa 146944 1 1 1 1 0 0 0 0 1 0 0.41 1.00 -7503 C8orf46 chromosome 8 open reading frame 46 124420 1 1 1 0 0 0 0 0 1 0 0.42 1.00 -7504 SOS1 son of sevenless homolog 1 (Drosophila) 917056 7 7 7 2 0 5 2 0 0 0 0.42 1.00 -7505 MLL4 1502236 11 11 11 1 5 2 0 0 4 0 0.42 1.00 -7506 EIF4EBP2 eukaryotic translation initiation factor 4E binding protein 2 57624 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -7507 RAPGEF5 Rap guanine nucleotide exchange factor (GEF) 5 484096 3 3 3 0 1 1 1 0 0 0 0.42 1.00 -7508 MR1 major histocompatibility complex, class I-related 235200 3 3 2 3 2 0 1 0 0 0 0.42 1.00 -7509 TGM3 transglutaminase 3 (E polypeptide, protein-glutamine-gamma-glutamyltransferase) 476520 7 6 7 0 3 1 3 0 0 0 0.42 1.00 -7510 CBY1 chibby homolog 1 (Drosophila) 88928 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -7511 CYLD cylindromatosis (turban tumor syndrome) 658336 5 4 5 1 3 0 0 0 2 0 0.42 1.00 -7512 SOX30 SRY (sex determining region Y)-box 30 411796 6 4 6 0 4 0 2 0 0 0 0.42 1.00 -7513 MIPOL1 mirror-image polydactyly 1 307552 1 1 1 1 0 0 0 0 1 0 0.42 1.00 -7514 PTGR2 244608 2 2 2 1 0 1 1 0 0 0 0.42 1.00 -7515 SH3PXD2B SH3 and PX domains 2B 617792 9 7 9 0 2 6 1 0 0 0 0.42 1.00 -7516 CYP2S1 cytochrome P450, family 2, subfamily S, polypeptide 1 300080 3 3 3 0 2 0 1 0 0 0 0.42 1.00 -7517 C13orf1 chromosome 13 open reading frame 1 128548 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -7518 IL10RA interleukin 10 receptor, alpha 380972 2 2 2 0 0 0 1 0 1 0 0.42 1.00 -7519 TEC tec protein tyrosine kinase 439528 3 3 3 1 1 0 2 0 0 0 0.42 1.00 -7520 C17orf79 chromosome 17 open reading frame 79 104832 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -7521 P2RY2 purinergic receptor P2Y, G-protein coupled, 2 237944 3 3 3 0 2 0 1 0 0 0 0.42 1.00 -7522 CAPN3 calpain 3, (p94) 573296 6 6 6 2 6 0 0 0 0 0 0.42 1.00 -7523 IPP intracisternal A particle-promoted polypeptide 400288 6 3 6 0 1 3 1 0 1 0 0.42 1.00 -7524 SPANXN3 SPANX family, member N3 97216 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -7525 LHFPL3 lipoma HMGIC fusion partner-like 3 157752 1 1 1 1 0 0 0 0 1 0 0.42 1.00 -7526 CBFB core-binding factor, beta subunit 124124 3 2 2 0 2 1 0 0 0 0 0.42 1.00 -7527 CSPP1 centrosome and spindle pole associated protein 1 872480 11 6 11 0 4 2 0 1 2 2 0.42 1.00 -7528 SLC29A3 solute carrier family 29 (nucleoside transporters), member 3 321328 3 3 3 0 0 2 1 0 0 0 0.42 1.00 -7529 ABCB10 ATP-binding cassette, sub-family B (MDR/TAP), member 10 391552 3 3 3 0 2 0 0 0 1 0 0.42 1.00 -7530 NPFFR2 neuropeptide FF receptor 2 355040 4 4 4 1 2 1 1 0 0 0 0.42 1.00 -7531 ITGA9 integrin, alpha 9 678944 6 5 6 3 2 2 0 0 2 0 0.42 1.00 -7532 IL19 interleukin 19 150392 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -7533 INHBC inhibin, beta C 239008 3 3 3 3 1 2 0 0 0 0 0.42 1.00 -7534 SIX3 SIX homeobox 3 163380 2 2 2 0 0 1 0 1 0 0 0.42 1.00 -7535 PRKCA protein kinase C, alpha 467488 4 4 4 1 1 3 0 0 0 0 0.42 1.00 -7536 KDM5A 1159928 12 8 12 2 3 2 5 0 2 0 0.42 1.00 -7537 TMED3 transmembrane emp24 protein transport domain containing 3 142632 2 2 2 1 1 0 0 0 1 0 0.42 1.00 -7538 OR2A25 olfactory receptor, family 2, subfamily A, member 25 209888 2 2 2 0 1 1 0 0 0 0 0.42 1.00 -7539 STRBP spermatid perinuclear RNA binding protein 467488 5 4 5 3 1 1 2 0 1 0 0.42 1.00 -7540 CHP2 132692 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -7541 ZNF592 zinc finger protein 592 856408 10 9 10 3 2 4 4 0 0 0 0.42 1.00 -7542 NT5M 5',3'-nucleotidase, mitochondrial 120204 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -7543 RNASE4 ribonuclease, RNase A family, 4 100352 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -7544 FAM86A family with sequence similarity 86, member A 175000 2 2 2 0 1 1 0 0 0 0 0.42 1.00 -7545 OR8B3 olfactory receptor, family 8, subfamily B, member 3 211904 2 2 2 0 0 1 1 0 0 0 0.42 1.00 -7546 CHUK conserved helix-loop-helix ubiquitous kinase 496272 6 4 6 1 2 1 3 0 0 0 0.42 1.00 -7547 USP25 ubiquitin specific peptidase 25 720160 8 5 7 5 3 3 2 0 0 0 0.42 1.00 -7548 PGBD2 piggyBac transposable element derived 2 400288 2 2 2 0 0 1 0 0 1 0 0.42 1.00 -7549 TBC1D8B TBC1 domain family, member 8B (with GRAM domain) 786912 4 4 4 1 2 1 0 0 1 0 0.42 1.00 -7550 GHRHR growth hormone releasing hormone receptor 280184 2 2 2 0 1 1 0 0 0 0 0.42 1.00 -7551 INPP5A inositol polyphosphate-5-phosphatase, 40kDa 254548 2 2 2 0 0 0 1 0 1 0 0.42 1.00 -7552 HERPUD2 HERPUD family member 2 280672 2 2 2 3 1 0 1 0 0 0 0.42 1.00 -7553 C6orf70 chromosome 6 open reading frame 70 470316 6 4 6 1 1 3 2 0 0 0 0.42 1.00 -7554 YY1AP1 YY1 associated protein 1 557788 5 5 5 1 2 2 1 0 0 0 0.42 1.00 -7555 TPPP2 tubulin polymerization-promoting protein family member 2 117600 1 1 1 1 0 1 0 0 0 0 0.42 1.00 -7556 RANBP10 RAN binding protein 10 408132 3 3 3 0 1 1 1 0 0 0 0.42 1.00 -7557 SDHB succinate dehydrogenase complex, subunit B, iron sulfur (Ip) 196000 2 2 2 0 0 2 0 0 0 0 0.42 1.00 -7558 NUP37 nucleoporin 37kDa 227808 2 2 2 1 0 2 0 0 0 0 0.42 1.00 -7559 SP7 Sp7 transcription factor 285504 3 3 3 1 1 1 0 0 1 0 0.42 1.00 -7560 IL6ST interleukin 6 signal transducer (gp130, oncostatin M receptor) 631008 3 3 3 0 0 0 2 0 1 0 0.42 1.00 -7561 AMAC1L3 acyl-malonyl condensing enzyme 1-like 3 229600 2 2 2 1 0 2 0 0 0 0 0.42 1.00 -7562 SLC38A9 solute carrier family 38, member 9 390208 3 3 3 0 0 1 1 0 1 0 0.42 1.00 -7563 CNGA1 cyclic nucleotide gated channel alpha 1 461528 6 3 6 1 1 2 1 0 2 0 0.42 1.00 -7564 RETSAT retinol saturase (all-trans-retinol 13,14-reductase) 419272 3 3 3 0 1 1 1 0 0 0 0.42 1.00 -7565 ASB9 ankyrin repeat and SOCS box-containing 9 211008 2 2 2 0 1 0 1 0 0 0 0.42 1.00 -7566 CLDN12 claudin 12 165536 2 2 2 1 0 1 1 0 0 0 0.42 1.00 -7567 TRMT12 tRNA methyltransferase 12 homolog (S. cerevisiae) 302624 3 3 3 0 1 2 0 0 0 0 0.42 1.00 -7568 TAS2R4 taste receptor, type 2, member 4 202496 2 2 2 2 2 0 0 0 0 0 0.42 1.00 -7569 RDX radixin 401920 3 3 3 0 2 1 0 0 0 0 0.42 1.00 -7570 TMEM133 transmembrane protein 133 88256 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -7571 GPX1 glutathione peroxidase 1 105364 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -7572 XKR8 XK, Kell blood group complex subunit-related family, member 8 202272 2 2 2 0 0 1 1 0 0 0 0.42 1.00 -7573 KRTAP4-1 keratin associated protein 4-1 87136 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -7574 CHRND cholinergic receptor, nicotinic, delta 358848 4 4 4 1 3 1 0 0 0 0 0.42 1.00 -7575 SRPX2 sushi-repeat-containing protein, X-linked 2 318032 1 1 1 0 0 0 0 0 1 0 0.42 1.00 -7576 C19orf18 chromosome 19 open reading frame 18 150528 2 2 2 0 1 1 0 0 0 0 0.42 1.00 -7577 CACNG1 calcium channel, voltage-dependent, gamma subunit 1 153440 2 2 2 0 2 0 0 0 0 0 0.42 1.00 -7578 GNMT glycine N-methyltransferase 157248 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -7579 SLU7 SLU7 splicing factor homolog (S. cerevisiae) 407904 4 3 4 0 1 1 2 0 0 0 0.42 1.00 -7580 SEMA3A sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3A 534016 9 5 8 3 3 3 3 0 0 0 0.42 1.00 -7581 NR1I2 nuclear receptor subfamily 1, group I, member 2 321888 2 2 2 0 0 0 1 0 1 0 0.42 1.00 -7582 NFIL3 nuclear factor, interleukin 3 regulated 312032 3 3 3 1 2 0 0 0 1 0 0.42 1.00 -7583 MRPL13 mitochondrial ribosomal protein L13 126560 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -7584 FAM83A family with sequence similarity 83, member A 260876 3 3 3 0 1 1 1 0 0 0 0.42 1.00 -7585 CPA3 carboxypeptidase A3 (mast cell) 290752 3 3 3 0 2 0 1 0 0 0 0.42 1.00 -7586 TARS2 threonyl-tRNA synthetase 2, mitochondrial (putative) 499296 5 5 5 2 1 2 1 0 1 0 0.42 1.00 -7587 INTS12 integrator complex subunit 12 316512 2 2 2 0 0 1 1 0 0 0 0.42 1.00 -7588 HECA headcase homolog (Drosophila) 311956 3 3 3 0 0 2 0 0 1 0 0.42 1.00 -7589 KLRC4 killer cell lectin-like receptor subfamily C, member 4 110432 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -7590 USP19 ubiquitin specific peptidase 19 890904 7 6 7 2 3 2 0 0 2 0 0.42 1.00 -7591 RNF146 ring finger protein 146 242144 2 2 2 0 0 1 0 0 1 0 0.42 1.00 -7592 GBP5 guanylate binding protein 5 403424 3 3 3 2 1 1 0 0 1 0 0.42 1.00 -7593 ANTXR1 anthrax toxin receptor 1 385448 3 3 3 2 2 1 0 0 0 0 0.42 1.00 -7594 ANXA7 annexin A7 340256 3 3 3 1 2 0 1 0 0 0 0.42 1.00 -7595 TMCC2 transmembrane and coiled-coil domain family 2 412888 4 4 4 2 3 0 1 0 0 0 0.42 1.00 -7596 ZNF765 zinc finger protein 765 354816 4 3 4 0 0 3 1 0 0 0 0.42 1.00 -7597 CHCHD4 coiled-coil-helix-coiled-coil-helix domain containing 4 107520 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -7598 SLC28A1 solute carrier family 28 (sodium-coupled nucleoside transporter), member 1 455288 4 4 4 0 3 0 0 0 1 0 0.42 1.00 -7599 PITPNC1 phosphatidylinositol transfer protein, cytoplasmic 1 252832 2 2 2 1 0 0 2 0 0 0 0.42 1.00 -7600 ECE2 endothelin converting enzyme 2 711376 9 8 9 3 2 4 2 1 0 0 0.42 1.00 -7601 DSCAML1 Down syndrome cell adhesion molecule like 1 1350364 14 13 14 7 9 4 0 0 1 0 0.42 1.00 -7602 PDS5B PDS5, regulator of cohesion maintenance, homolog B (S. cerevisiae) 1003520 8 6 8 4 2 1 2 0 3 0 0.42 1.00 -7603 OR52M1 olfactory receptor, family 52, subfamily M, member 1 214592 1 1 1 1 0 0 0 0 1 0 0.42 1.00 -7604 WAPAL wings apart-like homolog (Drosophila) 816480 5 4 5 1 1 1 2 0 1 0 0.42 1.00 -7605 CARD17 77280 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -7606 ZNF140 zinc finger protein 140 311360 3 3 3 1 0 2 1 0 0 0 0.42 1.00 -7607 XPO4 exportin 4 787676 6 5 6 0 1 1 2 0 2 0 0.42 1.00 -7608 IARS2 isoleucyl-tRNA synthetase 2, mitochondrial 691264 6 6 6 0 3 2 1 0 0 0 0.42 1.00 -7609 RAB22A RAB22A, member RAS oncogene family 128352 1 1 1 1 0 0 0 0 1 0 0.42 1.00 -7610 OR6X1 olfactory receptor, family 6, subfamily X, member 1 211232 3 2 3 1 1 1 1 0 0 0 0.42 1.00 -7611 C5orf30 chromosome 5 open reading frame 30 139160 2 2 1 0 2 0 0 0 0 0 0.42 1.00 -7612 GRK1 G protein-coupled receptor kinase 1 220112 2 2 2 1 2 0 0 0 0 0 0.42 1.00 -7613 AHCTF1 AT hook containing transcription factor 1 1556352 10 8 10 1 3 3 3 0 1 0 0.42 1.00 -7614 IFNA1 interferon, alpha 1 98208 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -7615 DNAJC16 DnaJ (Hsp40) homolog, subfamily C, member 16 536620 3 3 3 1 1 1 0 0 1 0 0.42 1.00 -7616 ACSM4 acyl-CoA synthetase medium-chain family member 4 402080 3 3 3 4 1 0 1 0 1 0 0.42 1.00 -7617 TMEM85 transmembrane protein 85 115888 1 1 1 1 0 1 0 0 0 0 0.42 1.00 -7618 RAB11FIP4 RAB11 family interacting protein 4 (class II) 356152 2 2 2 2 1 0 0 0 1 0 0.42 1.00 -7619 SCD stearoyl-CoA desaturase (delta-9-desaturase) 247296 2 2 2 1 1 1 0 0 0 0 0.42 1.00 -7620 ABI3 ABI gene family, member 3 222068 2 2 2 0 0 2 0 0 0 0 0.42 1.00 -7621 CA9 carbonic anhydrase IX 307216 2 2 2 1 0 1 1 0 0 0 0.42 1.00 -7622 B3GALT1 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 1 220640 1 1 1 0 0 0 0 0 1 0 0.42 1.00 -7623 FAM40B family with sequence similarity 40, member B 552384 5 5 5 0 5 0 0 0 0 0 0.42 1.00 -7624 ACOT1 acyl-CoA thioesterase 1 149228 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -7625 SLC12A3 solute carrier family 12 (sodium/chloride transporters), member 3 701396 5 5 5 2 2 1 1 0 1 0 0.42 1.00 -7626 TMEM95 transmembrane protein 95 122296 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -7627 TMEM140 transmembrane protein 140 125888 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -7628 YPEL2 yippee-like 2 (Drosophila) 84224 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -7629 GRM2 glutamate receptor, metabotropic 2 529396 4 4 4 1 2 0 1 0 1 0 0.42 1.00 -7630 MRPL45 mitochondrial ribosomal protein L45 213472 2 2 2 0 0 1 0 0 1 0 0.42 1.00 -7631 C7orf23 chromosome 7 open reading frame 23 83552 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -7632 PFDN5 prefoldin subunit 5 109536 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -7633 SHC2 SHC (Src homology 2 domain containing) transforming protein 2 242212 1 1 1 1 0 0 0 0 1 0 0.43 1.00 -7634 ARG1 arginase, liver 224224 1 1 1 1 0 1 0 0 0 0 0.43 1.00 -7635 WDR41 WD repeat domain 41 320768 2 2 2 1 1 0 1 0 0 0 0.43 1.00 -7636 SIX5 SIX homeobox 5 220164 2 2 2 0 0 0 0 0 2 0 0.43 1.00 -7637 RBPJL recombination signal binding protein for immunoglobulin kappa J region-like 327208 3 3 3 2 0 1 1 0 1 0 0.43 1.00 -7638 TPCN2 two pore segment channel 2 497308 5 4 5 2 1 2 1 0 1 0 0.43 1.00 -7639 HIST1H4F histone cluster 1, H4f 70784 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7640 ASB7 ankyrin repeat and SOCS box-containing 7 217084 2 2 2 1 0 0 2 0 0 0 0.43 1.00 -7641 HOXD11 homeobox D11 102340 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -7642 KRTCAP2 keratinocyte associated protein 2 113880 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7643 CD38 CD38 molecule 209440 2 2 2 1 1 0 1 0 0 0 0.43 1.00 -7644 WARS tryptophanyl-tRNA synthetase 326144 3 3 3 0 1 1 1 0 0 0 0.43 1.00 -7645 ATP5G3 ATP synthase, H+ transporting, mitochondrial F0 complex, subunit C3 (subunit 9) 100576 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -7646 PTP4A1 protein tyrosine phosphatase type IVA, member 1 121408 1 1 1 1 0 0 0 0 1 0 0.43 1.00 -7647 XAF1 XIAP associated factor 1 209216 2 2 2 0 0 1 1 0 0 0 0.43 1.00 -7648 IL2RB interleukin 2 receptor, beta 343228 2 2 2 2 0 1 0 0 1 0 0.43 1.00 -7649 MRPS25 mitochondrial ribosomal protein S25 120376 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -7650 CASP9 caspase 9, apoptosis-related cysteine peptidase 257824 2 2 2 0 1 0 1 0 0 0 0.43 1.00 -7651 KDM3A 910784 6 6 6 2 2 2 1 0 1 0 0.43 1.00 -7652 FAM188B 525504 4 4 4 1 2 1 0 0 1 0 0.43 1.00 -7653 NXT2 nuclear transport factor 2-like export factor 2 134680 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -7654 SORD sorbitol dehydrogenase 200828 2 2 2 1 1 1 0 0 0 0 0.43 1.00 -7655 ENDOU 256704 2 2 2 0 0 0 2 0 0 0 0.43 1.00 -7656 AK3 adenylate kinase 3 148336 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7657 DCAF17 333536 3 3 3 0 0 2 1 0 0 0 0.43 1.00 -7658 AGPAT6 1-acylglycerol-3-phosphate O-acyltransferase 6 (lysophosphatidic acid acyltransferase, zeta) 302488 2 2 2 2 0 2 0 0 0 0 0.43 1.00 -7659 MYOM2 myomesin (M-protein) 2, 165kDa 1017408 11 11 11 5 9 2 0 0 0 0 0.43 1.00 -7660 KIAA1324 KIAA1324 687520 7 6 7 4 2 3 1 0 1 0 0.43 1.00 -7661 SCFD2 sec1 family domain containing 2 468384 7 5 6 0 4 2 1 0 0 0 0.43 1.00 -7662 MRPL1 mitochondrial ribosomal protein L1 227136 3 2 3 1 0 0 2 0 1 0 0.43 1.00 -7663 DCAF13 399952 6 5 6 0 2 2 2 0 0 0 0.43 1.00 -7664 FTSJD2 582400 6 5 6 4 4 1 1 0 0 0 0.43 1.00 -7665 DYNLRB1 dynein, light chain, roadblock-type 1 68768 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -7666 HEBP2 heme binding protein 2 118272 1 1 1 1 0 0 0 0 1 0 0.43 1.00 -7667 SLC26A2 solute carrier family 26 (sulfate transporter), member 2 498988 7 3 7 2 1 3 2 0 1 0 0.43 1.00 -7668 DFNA5 deafness, autosomal dominant 5 342048 2 2 2 2 1 0 1 0 0 0 0.43 1.00 -7669 C8orf74 chromosome 8 open reading frame 74 180128 2 2 2 1 2 0 0 0 0 0 0.43 1.00 -7670 RPS19BP1 ribosomal protein S19 binding protein 1 83104 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7671 COL19A1 collagen, type XIX, alpha 1 812896 5 4 5 4 0 2 2 0 1 0 0.43 1.00 -7672 DCAF4 345632 3 3 3 0 1 1 1 0 0 0 0.43 1.00 -7673 OR4C13 olfactory receptor, family 4, subfamily C, member 13 209216 2 2 2 3 0 1 1 0 0 0 0.43 1.00 -7674 HIF1AN hypoxia-inducible factor 1, alpha subunit inhibitor 217364 2 2 2 0 0 1 1 0 0 0 0.43 1.00 -7675 SPOP speckle-type POZ protein 260064 2 2 2 1 0 1 1 0 0 0 0.43 1.00 -7676 FMR1 fragile X mental retardation 1 427280 6 4 6 2 5 1 0 0 0 0 0.43 1.00 -7677 ABCB6 ATP-binding cassette, sub-family B (MDR/TAP), member 6 537236 4 4 4 5 0 0 3 0 1 0 0.43 1.00 -7678 OTOS otospiralin 63168 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -7679 FAM50B family with sequence similarity 50, member B 205716 3 3 3 1 3 0 0 0 0 0 0.43 1.00 -7680 TGFBR3 transforming growth factor, beta receptor III 586880 8 5 8 2 2 4 2 0 0 0 0.43 1.00 -7681 CBLN4 cerebellin 4 precursor 132104 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -7682 GFPT1 glutamine-fructose-6-phosphate transaminase 1 472864 4 4 4 0 1 3 0 0 0 0 0.43 1.00 -7683 CDK11B 343040 3 3 3 2 1 0 1 0 1 0 0.43 1.00 -7684 IFI44 interferon-induced protein 44 306208 3 3 3 1 2 1 0 0 0 0 0.43 1.00 -7685 C7orf65 104832 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -7686 HIST1H2BE histone cluster 1, H2be 86240 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -7687 GLRX2 glutaredoxin 2 115700 1 1 1 0 0 0 0 0 1 0 0.43 1.00 -7688 NFATC2IP nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2 interacting protein 205464 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -7689 APPL2 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 2 454376 4 3 4 2 2 0 1 0 1 0 0.43 1.00 -7690 SNRPB2 small nuclear ribonucleoprotein polypeptide B'' 157248 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7691 ZNF449 zinc finger protein 449 352352 3 3 3 2 0 3 0 0 0 0 0.43 1.00 -7692 NAT10 N-acetyltransferase 10 714560 6 5 6 2 1 5 0 0 0 0 0.43 1.00 -7693 NANOG Nanog homeobox 174720 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7694 KIAA0895L 255328 2 2 2 1 0 0 1 0 1 0 0.43 1.00 -7695 MFN2 mitofusin 2 524608 4 4 4 0 1 2 0 0 1 0 0.43 1.00 -7696 OR2Z1 olfactory receptor, family 2, subfamily Z, member 1 212576 2 2 2 0 2 0 0 0 0 0 0.43 1.00 -7697 MEPCE methylphosphate capping enzyme 353500 3 3 3 0 1 1 0 0 1 0 0.43 1.00 -7698 RGS8 regulator of G-protein signaling 8 145824 1 1 1 0 0 0 0 0 1 0 0.43 1.00 -7699 FMNL1 formin-like 1 612444 6 6 6 2 1 2 2 0 1 0 0.43 1.00 -7700 MTCP1 mature T-cell proliferation 1 75264 1 1 1 1 0 1 0 0 0 0 0.43 1.00 -7701 NAA16 599592 7 5 7 1 2 1 3 0 1 0 0.43 1.00 -7702 ZNF135 zinc finger protein 135 460852 4 4 4 2 1 1 2 0 0 0 0.43 1.00 -7703 MTRF1 mitochondrial translational release factor 1 307776 3 3 3 0 3 0 0 0 0 0 0.43 1.00 -7704 GIN1 gypsy retrotransposon integrase 1 357728 4 3 4 1 1 2 0 0 1 0 0.43 1.00 -7705 CTPS2 CTP synthase II 409696 4 3 4 0 1 2 1 0 0 0 0.43 1.00 -7706 R3HDML R3H domain containing-like 175000 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -7707 FAM155A 280476 3 3 3 1 0 3 0 0 0 0 0.43 1.00 -7708 KRT7 keratin 7 304276 3 3 3 0 1 1 1 0 0 0 0.43 1.00 -7709 C3orf33 chromosome 3 open reading frame 33 172928 2 2 2 1 2 0 0 0 0 0 0.43 1.00 -7710 S100A16 S100 calcium binding protein A16 71680 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -7711 IL25 interleukin 25 124320 1 1 1 1 1 0 0 0 0 0 0.43 1.00 -7712 ARAF v-raf murine sarcoma 3611 viral oncogene homolog 400944 3 3 3 1 1 0 0 0 2 0 0.43 1.00 -7713 PSMD10 proteasome (prosome, macropain) 26S subunit, non-ATPase, 10 157024 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -7714 HOXA1 homeobox A1 227584 3 3 3 1 3 0 0 0 0 0 0.43 1.00 -7715 TSR2 TSR2, 20S rRNA accumulation, homolog (S. cerevisiae) 114744 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7716 ARHGEF3 Rho guanine nucleotide exchange factor (GEF) 3 350864 4 3 4 0 1 1 1 0 1 0 0.43 1.00 -7717 ACTL7A actin-like 7A 293888 3 3 3 1 2 1 0 0 0 0 0.43 1.00 -7718 DAP death-associated protein 63192 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -7719 TUBA8 tubulin, alpha 8 304808 2 2 2 1 0 0 2 0 0 0 0.43 1.00 -7720 CYR61 cysteine-rich, angiogenic inducer, 61 256144 2 2 2 0 0 0 1 0 1 0 0.43 1.00 -7721 FAM69A family with sequence similarity 69, member A 98448 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7722 FAU Finkel-Biskis-Reilly murine sarcoma virus (FBR-MuSV) ubiquitously expressed 93632 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -7723 PSMA2 proteasome (prosome, macropain) subunit, alpha type, 2 165088 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -7724 ZNF562 zinc finger protein 562 241248 2 2 2 0 0 0 2 0 0 0 0.43 1.00 -7725 SASH1 SAM and SH3 domain containing 1 839080 7 7 7 5 3 3 0 0 1 0 0.43 1.00 -7726 EMID1 EMI domain containing 1 246148 2 2 2 0 1 1 0 0 0 0 0.43 1.00 -7727 EED embryonic ectoderm development 308672 2 2 2 0 0 0 1 0 1 0 0.43 1.00 -7728 ATG16L1 ATG16 autophagy related 16-like 1 (S. cerevisiae) 408520 4 3 4 1 2 0 1 0 1 0 0.43 1.00 -7729 LOC200726 121784 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7730 GBP4 guanylate binding protein 4 440608 3 3 3 1 0 3 0 0 0 0 0.43 1.00 -7731 ZNF273 zinc finger protein 273 386624 3 3 3 0 0 2 1 0 0 0 0.43 1.00 -7732 DNAJC30 134960 2 2 2 0 0 2 0 0 0 0 0.43 1.00 -7733 XPOT exportin, tRNA (nuclear export receptor for tRNAs) 668640 6 4 5 1 2 1 2 0 1 0 0.43 1.00 -7734 SYNPR synaptoporin 183232 1 1 1 0 0 0 0 0 1 0 0.43 1.00 -7735 EN2 engrailed homeobox 2 91336 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -7736 COG4 component of oligomeric golgi complex 4 545468 5 5 5 3 2 0 2 0 1 0 0.43 1.00 -7737 ZDHHC16 zinc finger, DHHC-type containing 16 262808 2 2 2 1 1 0 1 0 0 0 0.43 1.00 -7738 KCNJ14 potassium inwardly-rectifying channel, subfamily J, member 14 185948 2 2 2 1 0 1 1 0 0 0 0.43 1.00 -7739 OR5AN1 olfactory receptor, family 5, subfamily AN, member 1 210560 1 1 1 1 1 0 0 0 0 0 0.43 1.00 -7740 APOBEC1 apolipoprotein B mRNA editing enzyme, catalytic polypeptide 1 163660 2 2 2 0 1 1 0 0 0 0 0.43 1.00 -7741 RASGRF2 Ras protein-specific guanine nucleotide-releasing factor 2 849828 9 7 9 4 3 2 2 0 2 0 0.43 1.00 -7742 TBC1D20 TBC1 domain family, member 20 262080 2 2 2 1 0 1 1 0 0 0 0.43 1.00 -7743 RNF24 ring finger protein 24 106176 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -7744 GBA2 glucosidase, beta (bile acid) 2 638848 5 5 5 0 2 2 1 0 0 0 0.43 1.00 -7745 CA6 carbonic anhydrase VI 214816 2 2 2 1 2 0 0 0 0 0 0.43 1.00 -7746 HIST1H4L histone cluster 1, H4l 70784 1 1 1 1 0 1 0 0 0 0 0.43 1.00 -7747 PCDH7 protocadherin 7 716044 7 6 7 1 2 3 1 0 1 0 0.43 1.00 -7748 SH3GLB2 SH3-domain GRB2-like endophilin B2 230048 2 2 2 1 1 1 0 0 0 0 0.43 1.00 -7749 RECQL5 RecQ protein-like 5 643808 6 6 6 1 1 4 1 0 0 0 0.43 1.00 -7750 MFSD1 major facilitator superfamily domain containing 1 329728 3 2 3 0 0 1 0 0 2 0 0.43 1.00 -7751 GTF3C2 general transcription factor IIIC, polypeptide 2, beta 110kDa 624776 5 5 5 4 2 1 1 0 1 0 0.43 1.00 -7752 SNUPN snurportin 1 249760 2 2 2 1 2 0 0 0 0 0 0.43 1.00 -7753 EFCAB5 EF-hand calcium binding domain 5 1002464 9 6 9 0 1 2 4 0 0 2 0.43 1.00 -7754 NECAB1 N-terminal EF-hand calcium binding protein 1 199776 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7755 INSIG2 insulin induced gene 2 156352 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7756 FKTN fukutin 318528 3 3 3 1 1 0 2 0 0 0 0.43 1.00 -7757 COG6 component of oligomeric golgi complex 6 455924 4 4 4 1 0 2 2 0 0 0 0.43 1.00 -7758 NCR3 natural cytotoxicity triggering receptor 3 107744 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -7759 SH3KBP1 SH3-domain kinase binding protein 1 474208 4 4 4 4 1 1 2 0 0 0 0.43 1.00 -7760 ABCB11 ATP-binding cassette, sub-family B (MDR/TAP), member 11 904824 11 7 11 3 2 5 3 0 1 0 0.43 1.00 -7761 KRT31 keratin 31 285992 4 4 4 2 4 0 0 0 0 0 0.43 1.00 -7762 IPO7 importin 7 718928 4 4 4 2 0 1 2 0 1 0 0.43 1.00 -7763 TMEM138 transmembrane protein 138 113120 1 1 1 1 1 0 0 0 0 0 0.43 1.00 -7764 DTNA dystrobrevin, alpha 538944 4 4 4 0 2 2 0 0 0 0 0.43 1.00 -7765 BAZ1B bromodomain adjacent to zinc finger domain, 1B 989408 6 6 6 6 1 1 2 0 2 0 0.43 1.00 -7766 CCDC68 coiled-coil domain containing 68 234752 1 1 1 0 0 0 0 0 1 0 0.43 1.00 -7767 C10orf82 chromosome 10 open reading frame 82 107744 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -7768 FAM108C1 family with sequence similarity 108, member C1 119672 2 2 2 0 2 0 0 0 0 0 0.43 1.00 -7769 F11R F11 receptor 210560 2 2 2 2 1 0 1 0 0 0 0.43 1.00 -7770 TMPRSS3 transmembrane protease, serine 3 332836 2 2 2 0 1 0 0 1 0 0 0.44 1.00 -7771 DCAF4L1 267680 4 3 4 1 3 1 0 0 0 0 0.44 1.00 -7772 ERCC2 excision repair cross-complementing rodent repair deficiency, complementation group 2 (xeroderma pigmentosum D) 484624 4 4 4 1 1 1 1 0 1 0 0.44 1.00 -7773 NCF4 neutrophil cytosolic factor 4, 40kDa 278096 3 3 3 1 1 1 1 0 0 0 0.44 1.00 -7774 ERF Ets2 repressor factor 338744 3 3 3 2 0 2 1 0 0 0 0.44 1.00 -7775 NAB1 NGFI-A binding protein 1 (EGR1 binding protein 1) 334208 2 2 2 0 0 2 0 0 0 0 0.44 1.00 -7776 MYO1D myosin ID 681192 6 6 5 2 4 0 1 0 1 0 0.44 1.00 -7777 RSL1D1 ribosomal L1 domain containing 1 338016 2 2 2 0 0 0 1 0 1 0 0.44 1.00 -7778 PARP3 poly (ADP-ribose) polymerase family, member 3 353032 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -7779 INMT indolethylamine N-methyltransferase 179928 2 2 2 3 2 0 0 0 0 0 0.44 1.00 -7780 DUSP3 dual specificity phosphatase 3 102424 1 1 1 1 0 0 1 0 0 0 0.44 1.00 -7781 TGM2 transglutaminase 2 (C polypeptide, protein-glutamine-gamma-glutamyltransferase) 473944 7 6 7 4 3 3 1 0 0 0 0.44 1.00 -7782 MTCH1 mitochondrial carrier homolog 1 (C. elegans) 175280 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -7783 HIST1H4G histone cluster 1, H4g 67424 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -7784 LILRA1 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 1 337344 4 2 4 1 0 2 1 0 1 0 0.44 1.00 -7785 APOBEC3G apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3G 263032 3 3 3 1 2 0 1 0 0 0 0.44 1.00 -7786 C2CD2 C2 calcium-dependent domain containing 2 395152 4 4 4 0 3 1 0 0 0 0 0.44 1.00 -7787 SLC39A10 solute carrier family 39 (zinc transporter), member 10 567168 4 4 4 1 1 1 1 0 1 0 0.44 1.00 -7788 BTG1 B-cell translocation gene 1, anti-proliferative 111244 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -7789 THUMPD1 THUMP domain containing 1 219984 2 2 2 0 1 0 1 0 0 0 0.44 1.00 -7790 KCNK3 potassium channel, subfamily K, member 3 159564 2 2 2 2 2 0 0 0 0 0 0.44 1.00 -7791 UCMA 97888 1 1 1 1 1 0 0 0 0 0 0.44 1.00 -7792 CSF1 colony stimulating factor 1 (macrophage) 368564 2 2 2 1 1 1 0 0 0 0 0.44 1.00 -7793 FYB FYN binding protein (FYB-120/130) 512976 5 5 5 1 2 2 1 0 0 0 0.44 1.00 -7794 PRPSAP2 phosphoribosyl pyrophosphate synthetase-associated protein 2 257600 2 2 2 1 1 0 1 0 0 0 0.44 1.00 -7795 PRSS45 157472 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -7796 SCML1 sex comb on midleg-like 1 (Drosophila) 228704 2 2 2 0 0 1 1 0 0 0 0.44 1.00 -7797 RPL24 ribosomal protein L24 111552 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -7798 NPTX2 neuronal pentraxin II 194964 2 2 2 3 0 1 0 1 0 0 0.44 1.00 -7799 VKORC1L1 vitamin K epoxide reductase complex, subunit 1-like 1 108248 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -7800 RSPH9 187432 4 3 4 1 1 3 0 0 0 0 0.44 1.00 -7801 PRDX1 peroxiredoxin 1 138880 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -7802 PIF1 PIF1 5'-to-3' DNA helicase homolog (S. cerevisiae) 332528 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -7803 LEP leptin 114688 1 1 1 1 1 0 0 0 0 0 0.44 1.00 -7804 PRAMEF13 PRAME family member 13 99428 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -7805 ZDHHC19 zinc finger, DHHC-type containing 19 189952 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -7806 MYST4 MYST histone acetyltransferase (monocytic leukemia) 4 1403612 10 9 10 6 3 1 4 1 1 0 0.44 1.00 -7807 AKR1E2 215040 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -7808 CA1 carbonic anhydrase I 182336 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -7809 INSRR insulin receptor-related receptor 870584 8 7 8 0 3 2 1 0 2 0 0.44 1.00 -7810 ANKRD17 ankyrin repeat domain 17 1744328 12 10 12 3 1 7 2 0 2 0 0.44 1.00 -7811 SSTR2 somatostatin receptor 2 248864 3 3 3 2 3 0 0 0 0 0 0.44 1.00 -7812 ODZ4 odz, odd Oz/ten-m homolog 4 (Drosophila) 1392412 10 8 10 11 5 2 0 1 2 0 0.44 1.00 -7813 CBLN3 cerebellin 3 precursor 112472 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -7814 DDX19A DEAD (Asp-Glu-Ala-As) box polypeptide 19A 326368 3 3 3 2 0 1 1 0 1 0 0.44 1.00 -7815 PKD1L2 polycystic kidney disease 1-like 2 1638512 17 10 17 3 5 5 3 1 3 0 0.44 1.00 -7816 SCYL1 SCY1-like 1 (S. cerevisiae) 489572 3 3 3 0 2 0 0 0 1 0 0.44 1.00 -7817 GAB4 GRB2-associated binding protein family, member 4 388472 3 3 3 1 1 0 2 0 0 0 0.44 1.00 -7818 ZNF673 zinc finger protein 673 118048 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -7819 STX4 syntaxin 4 204592 2 2 2 1 1 1 0 0 0 0 0.44 1.00 -7820 OR5P3 olfactory receptor, family 5, subfamily P, member 3 208208 1 1 1 1 0 1 0 0 0 0 0.44 1.00 -7821 KCNK6 potassium channel, subfamily K, member 6 164472 2 2 2 2 0 1 1 0 0 0 0.44 1.00 -7822 AVPR1B arginine vasopressin receptor 1B 273196 3 3 3 1 3 0 0 0 0 0 0.44 1.00 -7823 PPP2R5B protein phosphatase 2, regulatory subunit B', beta isoform 307964 2 2 2 1 0 1 1 0 0 0 0.44 1.00 -7824 SEMA4A sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4A 522840 3 3 3 0 1 0 1 0 1 0 0.44 1.00 -7825 ZC3H12B zinc finger CCCH-type containing 12B 560084 4 4 4 0 2 1 1 0 0 0 0.44 1.00 -7826 KIF6 kinesin family member 6 555968 5 4 5 3 1 3 0 0 1 0 0.44 1.00 -7827 C14orf105 chromosome 14 open reading frame 105 204960 2 2 1 1 0 2 0 0 0 0 0.44 1.00 -7828 HLA-DOB major histocompatibility complex, class II, DO beta 145948 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -7829 VOPP1 108920 2 2 2 0 2 0 0 0 0 0 0.44 1.00 -7830 ZNF7 zinc finger protein 7 465164 6 5 5 1 1 5 0 0 0 0 0.44 1.00 -7831 PRB3 proline-rich protein BstNI subfamily 3 196896 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -7832 KDELR3 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 3 151116 1 1 1 1 0 1 0 0 0 0 0.44 1.00 -7833 ITGAM integrin, alpha M (complement component 3 receptor 3 subunit) 779656 8 8 8 2 4 3 1 0 0 0 0.44 1.00 -7834 TUSC5 tumor suppressor candidate 5 122220 2 2 2 1 2 0 0 0 0 0 0.44 1.00 -7835 TRIM39 tripartite motif-containing 39 232568 2 2 2 0 2 0 0 0 0 0 0.44 1.00 -7836 GAS2L3 growth arrest-specific 2 like 3 474208 3 3 3 1 1 1 1 0 0 0 0.44 1.00 -7837 C5orf35 chromosome 5 open reading frame 35 205548 2 2 2 0 1 1 0 0 0 0 0.44 1.00 -7838 PRB1 proline-rich protein BstNI subfamily 1 141792 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -7839 LY6K lymphocyte antigen 6 complex, locus K 102312 1 1 1 1 1 0 0 0 0 0 0.44 1.00 -7840 ZFPL1 zinc finger protein-like 1 214172 3 3 3 0 0 3 0 0 0 0 0.44 1.00 -7841 PAX2 paired box 2 283860 3 3 3 1 2 0 0 1 0 0 0.44 1.00 -7842 CXCL12 chemokine (C-X-C motif) ligand 12 (stromal cell-derived factor 1) 97300 1 1 1 1 1 0 0 0 0 0 0.44 1.00 -7843 T T, brachyury homolog (mouse) 295664 3 3 3 2 2 1 0 0 0 0 0.44 1.00 -7844 TCEAL6 transcription elongation factor A (SII)-like 6 124544 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -7845 MCM3AP minichromosome maintenance complex component 3 associated protein 1334868 13 8 13 2 7 3 1 0 2 0 0.44 1.00 -7846 UCN3 urocortin 3 (stresscopin) 109488 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -7847 NMU neuromedin U 99680 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -7848 OR14J1 olfactory receptor, family 14, subfamily J, member 1 135800 3 2 3 0 1 1 1 0 0 0 0.44 1.00 -7849 CYP27B1 cytochrome P450, family 27, subfamily B, polypeptide 1 299880 3 3 3 0 1 1 0 0 1 0 0.44 1.00 -7850 RNF167 ring finger protein 167 243936 2 2 2 0 0 0 2 0 0 0 0.44 1.00 -7851 FAM13B 650048 7 5 7 1 1 3 2 0 1 0 0.44 1.00 -7852 OR13G1 olfactory receptor, family 13, subfamily G, member 1 207872 3 2 3 0 0 2 0 1 0 0 0.44 1.00 -7853 HOOK3 hook homolog 3 (Drosophila) 489216 4 3 4 2 0 1 3 0 0 0 0.44 1.00 -7854 RAD51AP2 782208 10 5 10 0 0 5 3 0 2 0 0.44 1.00 -7855 CDS1 CDP-diacylglycerol synthase (phosphatidate cytidylyltransferase) 1 297108 2 2 2 3 1 0 1 0 0 0 0.44 1.00 -7856 PHC1 polyhomeotic homolog 1 (Drosophila) 616700 6 5 6 1 4 1 1 0 0 0 0.44 1.00 -7857 POU2F2 POU class 2 homeobox 2 309800 4 3 4 1 1 1 1 1 0 0 0.44 1.00 -7858 GALNT2 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 2 (GalNAc-T2) 369600 4 4 4 2 1 2 0 0 1 0 0.44 1.00 -7859 GNS glucosamine (N-acetyl)-6-sulfatase (Sanfilippo disease IIID) 352376 4 2 4 1 1 2 0 0 1 0 0.44 1.00 -7860 HTR1D 5-hydroxytryptamine (serotonin) receptor 1D 254912 2 2 2 1 2 0 0 0 0 0 0.44 1.00 -7861 CDK5RAP1 CDK5 regulatory subunit associated protein 1 406784 3 3 3 0 2 0 1 0 0 0 0.44 1.00 -7862 EFNB1 ephrin-B1 217400 3 3 3 0 2 1 0 0 0 0 0.44 1.00 -7863 CD79B CD79b molecule, immunoglobulin-associated beta 160608 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -7864 CIT citron (rho-interacting, serine/threonine kinase 21) 1386056 14 12 14 2 9 2 1 0 2 0 0.44 1.00 -7865 CLEC18B 280480 2 2 2 1 1 0 0 0 1 0 0.44 1.00 -7866 FIZ1 FLT3-interacting zinc finger 1 168572 2 2 2 0 1 0 0 0 1 0 0.44 1.00 -7867 EDEM3 ER degradation enhancer, mannosidase alpha-like 3 618240 3 3 3 4 0 1 1 0 1 0 0.44 1.00 -7868 FOXP3 forkhead box P3 246104 2 2 2 0 0 1 1 0 0 0 0.44 1.00 -7869 WDR55 WD repeat domain 55 264320 2 2 2 0 0 0 1 0 1 0 0.44 1.00 -7870 MED13L mediator complex subunit 13-like 1502004 11 11 11 7 5 2 4 0 0 0 0.44 1.00 -7871 NCOA6 nuclear receptor coactivator 6 1398656 16 8 16 0 2 7 4 0 3 0 0.44 1.00 -7872 SKA2 115136 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -7873 IFNA8 interferon, alpha 8 128576 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -7874 MCTP2 multiple C2 domains, transmembrane 2 610400 10 6 9 2 5 1 4 0 0 0 0.44 1.00 -7875 C4orf31 chromosome 4 open reading frame 31 385056 5 4 5 2 1 2 2 0 0 0 0.44 1.00 -7876 HAND1 heart and neural crest derivatives expressed 1 135772 2 2 2 0 2 0 0 0 0 0 0.44 1.00 -7877 CPD carboxypeptidase D 818328 8 7 8 1 1 5 2 0 0 0 0.44 1.00 -7878 MON1B MON1 homolog B (yeast) 372736 4 4 4 1 4 0 0 0 0 0 0.44 1.00 -7879 SGTB small glutamine-rich tetratricopeptide repeat (TPR)-containing, beta 213920 2 2 2 1 0 1 1 0 0 0 0.44 1.00 -7880 PSORS1C2 psoriasis susceptibility 1 candidate 2 63616 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -7881 C18orf45 chromosome 18 open reading frame 45 213024 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -7882 PAAF1 proteasomal ATPase-associated factor 1 267912 1 1 1 2 0 0 0 0 1 0 0.44 1.00 -7883 STMN2 stathmin-like 2 125440 1 1 1 1 0 0 0 0 1 0 0.44 1.00 -7884 RPRD2 968492 7 6 7 1 3 2 0 0 2 0 0.44 1.00 -7885 SLCO2B1 solute carrier organic anion transporter family, member 2B1 489244 5 5 5 2 4 0 1 0 0 0 0.44 1.00 -7886 C15orf26 chromosome 15 open reading frame 26 209216 2 2 2 3 0 0 2 0 0 0 0.44 1.00 -7887 ANKAR ankyrin and armadillo repeat containing 937880 5 5 5 3 2 0 1 0 2 0 0.44 1.00 -7888 GPR125 G protein-coupled receptor 125 866180 9 8 8 1 7 2 0 0 0 0 0.44 1.00 -7889 RPL21 ribosomal protein L21 110572 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -7890 MYOZ3 myozenin 3 158144 2 2 2 0 1 1 0 0 0 0 0.44 1.00 -7891 FAM57A family with sequence similarity 57, member A 135660 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -7892 GLB1L galactosidase, beta 1-like 454496 3 3 3 2 1 2 0 0 0 0 0.44 1.00 -7893 AFF1 AF4/FMR2 family, member 1 831292 5 5 5 1 0 3 0 0 2 0 0.44 1.00 -7894 C10orf76 chromosome 10 open reading frame 76 486080 4 4 4 2 0 3 1 0 0 0 0.44 1.00 -7895 CARTPT CART prepropeptide 81312 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -7896 SLC7A14 solute carrier family 7 (cationic amino acid transporter, y+ system), member 14 525056 5 4 5 4 3 2 0 0 0 0 0.44 1.00 -7897 WTIP Wilms tumor 1 interacting protein 146496 1 1 1 1 0 0 0 0 1 0 0.44 1.00 -7898 C14orf153 chromosome 14 open reading frame 153 108920 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -7899 HIST1H2BO histone cluster 1, H2bo 86240 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -7900 MYCL1 v-myc myelocytomatosis viral oncogene homolog 1, lung carcinoma derived (avian) 197448 2 2 2 0 1 0 0 0 1 0 0.44 1.00 -7901 CCDC37 coiled-coil domain containing 37 397364 4 4 4 4 2 1 0 0 1 0 0.44 1.00 -7902 IGF1R insulin-like growth factor 1 receptor 917600 8 8 8 4 6 2 0 0 0 0 0.44 1.00 -7903 HEPACAM hepatocyte cell adhesion molecule 218428 2 2 2 1 1 1 0 0 0 0 0.44 1.00 -7904 C2CD3 C2 calcium-dependent domain containing 3 1347584 11 8 11 6 2 6 2 0 1 0 0.44 1.00 -7905 DEPDC4 DEP domain containing 4 202720 2 2 2 1 0 1 1 0 0 0 0.44 1.00 -7906 PRAM1 PML-RARA regulated adaptor molecule 1 395396 5 5 5 0 3 1 1 0 0 0 0.44 1.00 -7907 OR2T2 olfactory receptor, family 2, subfamily T, member 2 219296 2 2 2 0 0 2 0 0 0 0 0.44 1.00 -7908 CEACAM3 carcinoembryonic antigen-related cell adhesion molecule 3 176288 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -7909 ELSPBP1 epididymal sperm binding protein 1 155008 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -7910 AGFG1 382928 3 3 3 2 2 1 0 0 0 0 0.44 1.00 -7911 CANX calnexin 411040 2 2 2 0 1 0 0 0 1 0 0.44 1.00 -7912 SIRT2 sirtuin (silent mating type information regulation 2 homolog) 2 (S. cerevisiae) 274984 2 2 2 0 0 1 1 0 0 0 0.44 1.00 -7913 MORF4L1 mortality factor 4 like 1 249600 2 2 2 1 1 1 0 0 0 0 0.45 1.00 -7914 SUV420H1 suppressor of variegation 4-20 homolog 1 (Drosophila) 606144 8 5 8 1 2 3 3 0 0 0 0.45 1.00 -7915 ZNF257 zinc finger protein 257 382592 11 4 10 0 2 8 1 0 0 0 0.45 1.00 -7916 HLF hepatic leukemia factor 202496 2 2 2 1 1 1 0 0 0 0 0.45 1.00 -7917 PCSK2 proprotein convertase subtilisin/kexin type 2 433188 4 4 4 2 2 1 1 0 0 0 0.45 1.00 -7918 ZNF718 zinc finger protein 718 325472 2 2 2 1 0 1 0 0 1 0 0.45 1.00 -7919 CNPY4 canopy 4 homolog (zebrafish) 172704 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -7920 ALS2CR11 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 11 435008 4 3 4 4 1 0 2 0 1 0 0.45 1.00 -7921 PNLIPRP1 pancreatic lipase-related protein 1 325248 4 3 4 1 0 2 2 0 0 0 0.45 1.00 -7922 C11orf16 chromosome 11 open reading frame 16 318704 2 2 2 0 0 1 0 0 1 0 0.45 1.00 -7923 COMMD9 COMM domain containing 9 131624 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -7924 REEP3 receptor accessory protein 3 154312 1 1 1 1 0 0 1 0 0 0 0.45 1.00 -7925 SNX10 sorting nexin 10 141120 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -7926 SGPP1 sphingosine-1-phosphate phosphatase 1 226044 2 2 2 0 1 1 0 0 0 0 0.45 1.00 -7927 UBXN10 189728 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -7928 CLDN11 claudin 11 (oligodendrocyte transmembrane protein) 111184 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -7929 FIS1 fission 1 (mitochondrial outer membrane) homolog (S. cerevisiae) 107296 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -7930 PIRT 84112 1 1 1 1 1 0 0 0 0 0 0.45 1.00 -7931 RFPL4B ret finger protein-like 4B 173600 2 2 2 0 0 2 0 0 0 0 0.45 1.00 -7932 THOC2 THO complex 2 1105216 10 6 10 1 1 3 5 0 1 0 0.45 1.00 -7933 IFT172 intraflagellar transport 172 homolog (Chlamydomonas) 1219008 11 10 10 5 6 3 1 0 1 0 0.45 1.00 -7934 GAMT guanidinoacetate N-methyltransferase 118692 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -7935 ING3 inhibitor of growth family, member 3 295904 2 2 2 0 1 0 1 0 0 0 0.45 1.00 -7936 CDK19 349664 5 4 5 0 4 0 1 0 0 0 0.45 1.00 -7937 ZADH2 zinc binding alcohol dehydrogenase, domain containing 2 233296 3 3 3 0 1 1 1 0 0 0 0.45 1.00 -7938 RBM4 RNA binding motif protein 4 247072 3 3 3 1 2 0 0 0 1 0 0.45 1.00 -7939 MYCBP2 MYC binding protein 2 3172736 19 14 19 3 4 7 4 0 0 4 0.45 1.00 -7940 RBP7 retinol binding protein 7, cellular 87836 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -7941 ERG v-ets erythroblastosis virus E26 oncogene homolog (avian) 337616 3 3 3 0 2 1 0 0 0 0 0.45 1.00 -7942 SIX1 SIX homeobox 1 188188 2 2 2 0 1 1 0 0 0 0 0.45 1.00 -7943 C20orf26 chromosome 20 open reading frame 26 857912 9 8 7 2 8 1 0 0 0 0 0.45 1.00 -7944 PELI1 pellino homolog 1 (Drosophila) 286944 2 2 2 2 1 0 1 0 0 0 0.45 1.00 -7945 NFAM1 NFAT activating protein with ITAM motif 1 168760 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -7946 IFNA7 interferon, alpha 7 128576 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -7947 C20orf79 chromosome 20 open reading frame 79 106400 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -7948 TFAM transcription factor A, mitochondrial 157976 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -7949 TOP3A topoisomerase (DNA) III alpha 685256 6 6 6 1 6 0 0 0 0 0 0.45 1.00 -7950 SAMD14 sterile alpha motif domain containing 14 245980 4 4 4 0 2 1 1 0 0 0 0.45 1.00 -7951 SYT3 synaptotagmin III 383116 3 3 3 2 1 1 0 1 0 0 0.45 1.00 -7952 STX6 syntaxin 6 179200 1 1 1 1 1 0 0 0 0 0 0.45 1.00 -7953 PI4K2B phosphatidylinositol 4-kinase type 2 beta 271936 2 2 2 1 0 2 0 0 0 0 0.45 1.00 -7954 NCOR1 nuclear receptor co-repressor 1 1680672 12 9 12 5 4 2 3 0 3 0 0.45 1.00 -7955 CCDC58 coiled-coil domain containing 58 101920 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -7956 TSPAN16 tetraspanin 16 159264 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -7957 C9orf4 chromosome 9 open reading frame 4 147840 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -7958 KCNE1L KCNE1-like 61372 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -7959 FAIM Fas apoptotic inhibitory molecule 159040 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -7960 SSH1 slingshot homolog 1 (Drosophila) 699504 6 6 6 3 4 1 0 0 1 0 0.45 1.00 -7961 HIST1H2AJ histone cluster 1, H2aj 76412 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -7962 SUCLG1 succinate-CoA ligase, alpha subunit 223816 2 2 2 2 1 0 0 0 1 0 0.45 1.00 -7963 TIA1 TIA1 cytotoxic granule-associated RNA binding protein 271712 2 2 2 0 1 0 0 0 1 0 0.45 1.00 -7964 PNPO pyridoxamine 5'-phosphate oxidase 163640 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -7965 TAGLN2 transgelin 2 137984 2 2 2 0 1 1 0 0 0 0 0.45 1.00 -7966 PLCD1 phospholipase C, delta 1 526464 7 6 7 0 3 4 0 0 0 0 0.45 1.00 -7967 TMEM5 transmembrane protein 5 298172 2 2 2 1 0 0 1 0 1 0 0.45 1.00 -7968 SFI1 Sfi1 homolog, spindle assembly associated (yeast) 783928 7 7 6 0 4 0 0 0 3 0 0.45 1.00 -7969 CTNNAL1 catenin (cadherin-associated protein), alpha-like 1 487880 7 4 7 2 1 4 2 0 0 0 0.45 1.00 -7970 SOX17 SRY (sex determining region Y)-box 17 133980 2 2 2 1 1 0 0 1 0 0 0.45 1.00 -7971 PTPRN protein tyrosine phosphatase, receptor type, N 641904 6 5 6 2 2 2 1 0 1 0 0.45 1.00 -7972 METTL10 methyltransferase like 10 132264 1 1 1 1 0 0 1 0 0 0 0.45 1.00 -7973 GRLF1 glucocorticoid receptor DNA binding factor 1 1008616 12 8 12 2 6 2 2 0 2 0 0.45 1.00 -7974 HCFC2 host cell factor C2 545792 6 5 6 0 3 2 1 0 0 0 0.45 1.00 -7975 AOC2 amine oxidase, copper containing 2 (retina-specific) 512288 4 4 4 2 3 1 0 0 0 0 0.45 1.00 -7976 GSTA1 glutathione S-transferase A1 155232 1 1 1 1 0 0 1 0 0 0 0.45 1.00 -7977 CXCR2 243488 2 2 2 1 0 2 0 0 0 0 0.45 1.00 -7978 OR3A3 olfactory receptor, family 3, subfamily A, member 3 202636 2 2 2 1 0 1 1 0 0 0 0.45 1.00 -7979 ZNF773 zinc finger protein 773 298172 5 3 5 0 2 2 0 0 1 0 0.45 1.00 -7980 NGFR nerve growth factor receptor (TNFR superfamily, member 16) 226368 3 3 3 1 1 1 1 0 0 0 0.45 1.00 -7981 SRP19 signal recognition particle 19kDa 101920 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -7982 CDKL1 cyclin-dependent kinase-like 1 (CDC2-related kinase) 249312 4 3 4 1 2 1 1 0 0 0 0.45 1.00 -7983 RHPN2 rhophilin, Rho GTPase binding protein 2 458752 5 5 5 0 5 0 0 0 0 0 0.45 1.00 -7984 POTED 391864 9 4 8 1 2 5 1 1 0 0 0.45 1.00 -7985 FGF9 fibroblast growth factor 9 (glia-activating factor) 143136 1 1 1 1 0 0 0 0 1 0 0.45 1.00 -7986 FASLG Fas ligand (TNF superfamily, member 6) 192816 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -7987 ALDH2 aldehyde dehydrogenase 2 family (mitochondrial) 328960 3 3 3 0 1 1 1 0 0 0 0.45 1.00 -7988 OR4F6 olfactory receptor, family 4, subfamily F, member 6 211232 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -7989 TUBB4Q tubulin, beta polypeptide 4, member Q 187252 2 2 2 4 0 2 0 0 0 0 0.45 1.00 -7990 MLL5 myeloid/lymphoid or mixed-lineage leukemia 5 (trithorax homolog, Drosophila) 1271648 18 9 18 2 7 7 2 0 0 2 0.45 1.00 -7991 RDH5 retinol dehydrogenase 5 (11-cis/9-cis) 216188 1 1 1 1 0 0 0 0 1 0 0.45 1.00 -7992 RNFT2 ring finger protein, transmembrane 2 265444 2 2 2 2 1 1 0 0 0 0 0.45 1.00 -7993 NDUFS3 NADH dehydrogenase (ubiquinone) Fe-S protein 3, 30kDa (NADH-coenzyme Q reductase) 182720 2 2 2 1 1 0 1 0 0 0 0.45 1.00 -7994 U2AF1 U2 small nuclear RNA auxiliary factor 1 180656 2 2 2 0 1 1 0 0 0 0 0.45 1.00 -7995 NFYB nuclear transcription factor Y, beta 146048 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -7996 SLC5A2 solute carrier family 5 (sodium/glucose cotransporter), member 2 450772 4 4 4 1 0 3 0 0 1 0 0.45 1.00 -7997 LY6G6C lymphocyte antigen 6 complex, locus G6C 77700 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -7998 GC group-specific component (vitamin D binding protein) 329952 2 2 2 3 0 2 0 0 0 0 0.45 1.00 -7999 USP32 ubiquitin specific peptidase 32 1109024 10 8 10 1 2 3 4 0 1 0 0.45 1.00 -8000 GALNT10 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 10 (GalNAc-T10) 380128 5 4 5 2 2 3 0 0 0 0 0.45 1.00 -8001 THOC6 THO complex 6 homolog (Drosophila) 233492 2 2 2 0 0 1 0 0 1 0 0.45 1.00 -8002 UGT1A4 UDP glucuronosyltransferase 1 family, polypeptide A4 364000 2 2 2 0 0 1 1 0 0 0 0.45 1.00 -8003 PTPN14 protein tyrosine phosphatase, non-receptor type 14 814464 7 6 7 1 2 2 0 0 3 0 0.45 1.00 -8004 SLC22A1 solute carrier family 22 (organic cation transporter), member 1 371980 3 3 3 0 3 0 0 0 0 0 0.45 1.00 -8005 CLEC3A C-type lectin domain family 3, member A 135744 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -8006 OR8J3 olfactory receptor, family 8, subfamily J, member 3 213248 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -8007 KDELR1 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 1 138096 2 2 2 2 2 0 0 0 0 0 0.45 1.00 -8008 NCOA4 nuclear receptor coactivator 4 420980 4 4 3 0 3 1 0 0 0 0 0.45 1.00 -8009 MID2 midline 2 491456 3 3 3 1 0 2 1 0 0 0 0.45 1.00 -8010 TOMM20L 95536 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -8011 DAPP1 dual adaptor of phosphotyrosine and 3-phosphoinositides 178944 2 2 2 0 0 2 0 0 0 0 0.45 1.00 -8012 OR13D1 olfactory receptor, family 13, subfamily D, member 1 234080 2 2 2 1 0 2 0 0 0 0 0.45 1.00 -8013 HIATL1 hippocampus abundant transcript-like 1 326368 2 2 2 0 1 0 1 0 0 0 0.45 1.00 -8014 SLC16A12 solute carrier family 16, member 12 (monocarboxylic acid transporter 12) 332108 5 3 5 1 0 4 1 0 0 0 0.45 1.00 -8015 SCN5A sodium channel, voltage-gated, type V, alpha subunit 1397036 16 12 16 10 10 4 2 0 0 0 0.45 1.00 -8016 NSDHL NAD(P) dependent steroid dehydrogenase-like 257600 2 2 2 3 0 1 1 0 0 0 0.45 1.00 -8017 SLC25A3 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 273056 3 3 3 2 1 2 0 0 0 0 0.45 1.00 -8018 DNAH7 dynein, axonemal, heavy chain 7 2760456 20 14 20 8 6 4 6 0 4 0 0.45 1.00 -8019 HLA-DQB1 major histocompatibility complex, class II, DQ beta 1 139720 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -8020 SULT1C2 sulfotransferase family, cytosolic, 1C, member 2 205856 2 2 2 0 1 1 0 0 0 0 0.45 1.00 -8021 OR1J2 olfactory receptor, family 1, subfamily J, member 2 211904 2 2 2 1 0 2 0 0 0 0 0.45 1.00 -8022 RRP1B ribosomal RNA processing 1 homolog B (S. cerevisiae) 440644 4 4 4 1 3 0 1 0 0 0 0.45 1.00 -8023 ALS2 amyotrophic lateral sclerosis 2 (juvenile) 1151016 12 9 12 3 2 7 3 0 0 0 0.45 1.00 -8024 LRRC8E leucine rich repeat containing 8 family, member E 472108 3 3 3 2 1 0 0 0 2 0 0.45 1.00 -8025 EBNA1BP2 EBNA1 binding protein 2 216608 3 3 3 1 1 1 1 0 0 0 0.45 1.00 -8026 LMOD3 leiomodin 3 (fetal) 378184 3 3 3 1 1 1 0 0 1 0 0.45 1.00 -8027 ZC3H8 zinc finger CCCH-type containing 8 198360 1 1 1 2 0 1 0 0 0 0 0.45 1.00 -8028 CCT6B chaperonin containing TCP1, subunit 6B (zeta 2) 368032 3 3 3 0 0 0 3 0 0 0 0.45 1.00 -8029 MRPS6 mitochondrial ribosomal protein S6 83244 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -8030 PCDHGA11 protocadherin gamma subfamily A, 11 642656 6 6 6 3 4 1 1 0 0 0 0.45 1.00 -8031 EPS8L2 EPS8-like 2 315352 2 2 2 0 0 0 0 0 2 0 0.45 1.00 -8032 FMN1 formin 1 788744 8 7 8 1 4 2 1 0 1 0 0.45 1.00 -8033 C14orf102 chromosome 14 open reading frame 102 795424 7 6 6 3 3 1 2 0 1 0 0.45 1.00 -8034 TMEM47 transmembrane protein 47 91144 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -8035 OR2B6 olfactory receptor, family 2, subfamily B, member 6 211904 2 2 2 1 1 1 0 0 0 0 0.45 1.00 -8036 C10orf114 chromosome 10 open reading frame 114 58560 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -8037 FBXL3 F-box and leucine-rich repeat protein 3 291872 3 3 3 2 1 0 2 0 0 0 0.45 1.00 -8038 SPANXE SPANX family, member E 67648 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -8039 AHSA1 AHA1, activator of heat shock 90kDa protein ATPase homolog 1 (yeast) 207920 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -8040 OSGEPL1 O-sialoglycoprotein endopeptidase-like 1 285152 1 1 1 1 0 0 0 0 1 0 0.45 1.00 -8041 AQP8 aquaporin 8 181440 1 1 1 2 0 0 0 0 1 0 0.45 1.00 -8042 CSE1L CSE1 chromosome segregation 1-like (yeast) 674688 4 4 4 3 3 0 0 0 1 0 0.45 1.00 -8043 TGOLN2 trans-golgi network protein 2 285272 2 2 2 1 0 1 0 0 1 0 0.45 1.00 -8044 MRPL21 mitochondrial ribosomal protein L21 138320 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -8045 HIST1H2BF histone cluster 1, H2bf 86240 1 1 1 2 0 0 1 0 0 0 0.45 1.00 -8046 HIST1H4B histone cluster 1, H4b 70784 1 1 1 3 1 0 0 0 0 0 0.45 1.00 -8047 NLK nemo-like kinase 331488 2 2 2 1 1 1 0 0 0 0 0.45 1.00 -8048 PDGFA platelet-derived growth factor alpha polypeptide 74256 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -8049 ASPHD2 aspartate beta-hydroxylase domain containing 2 222908 2 2 2 1 1 0 0 0 1 0 0.45 1.00 -8050 TREML1 triggering receptor expressed on myeloid cells-like 1 215040 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -8051 MICAL2 microtubule associated monoxygenase, calponin and LIM domain containing 2 778400 6 5 6 1 1 4 0 0 1 0 0.45 1.00 -8052 GNAT2 guanine nucleotide binding protein (G protein), alpha transducing activity polypeptide 2 245728 3 3 3 1 2 0 1 0 0 0 0.45 1.00 -8053 KLRD1 killer cell lectin-like receptor subfamily D, member 1 126336 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -8054 BTNL2 butyrophilin-like 2 (MHC class II associated) 221676 3 3 3 2 1 2 0 0 0 0 0.45 1.00 -8055 ZNF428 zinc finger protein 428 98732 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -8056 PNRC1 proline-rich nuclear receptor coactivator 1 160020 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -8057 HS6ST3 heparan sulfate 6-O-sulfotransferase 3 269336 2 2 2 2 0 1 0 0 1 0 0.45 1.00 -8058 EEF1A1 eukaryotic translation elongation factor 1 alpha 1 302204 2 2 2 0 0 0 2 0 0 0 0.45 1.00 -8059 CALU calumenin 217728 2 2 2 1 0 2 0 0 0 0 0.45 1.00 -8060 FRMPD4 FERM and PDZ domain containing 4 898168 7 7 7 6 2 4 1 0 0 0 0.45 1.00 -8061 C15orf55 chromosome 15 open reading frame 55 758744 4 4 4 4 0 2 0 0 2 0 0.45 1.00 -8062 MEOX1 mesenchyme homeobox 1 171696 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -8063 KRTAP5-9 keratin associated protein 5-9 115136 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -8064 SBK1 SH3-binding domain kinase 1 161168 2 2 2 0 1 1 0 0 0 0 0.45 1.00 -8065 CDRT15 CMT1A duplicated region transcript 15 129016 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -8066 CDR2L cerebellar degeneration-related protein 2-like 143120 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -8067 PURG purine-rich element binding protein G 207340 2 2 2 1 0 1 1 0 0 0 0.45 1.00 -8068 KNG1 kininogen 1 461440 4 4 3 0 1 0 1 0 2 0 0.45 1.00 -8069 FOXF2 forkhead box F2 138768 2 2 2 0 1 1 0 0 0 0 0.45 1.00 -8070 C6orf222 chromosome 6 open reading frame 222 447584 3 3 3 0 0 0 1 0 2 0 0.45 1.00 -8071 EYA2 eyes absent homolog 2 (Drosophila) 374968 4 4 4 3 3 0 1 0 0 0 0.45 1.00 -8072 SYVN1 synovial apoptosis inhibitor 1, synoviolin 421848 3 3 3 1 1 1 1 0 0 0 0.45 1.00 -8073 DDIT4L DNA-damage-inducible transcript 4-like 132160 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -8074 ACTR3 ARP3 actin-related protein 3 homolog (yeast) 285792 3 3 3 1 1 0 2 0 0 0 0.45 1.00 -8075 PRR22 125860 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -8076 TNFSF4 tumor necrosis factor (ligand) superfamily, member 4 (tax-transcriptionally activated glycoprotein 1, 34kDa) 126336 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -8077 ABHD6 abhydrolase domain containing 6 234304 2 2 2 0 1 0 1 0 0 0 0.45 1.00 -8078 LYZL2 lysozyme-like 2 135520 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -8079 ADAMTS6 ADAM metallopeptidase with thrombospondin type 1 motif, 6 772800 6 5 6 2 0 2 3 0 1 0 0.45 1.00 -8080 LCOR ligand dependent nuclear receptor corepressor 292908 2 2 2 0 1 1 0 0 0 0 0.45 1.00 -8081 C1orf168 chromosome 1 open reading frame 168 507808 7 5 7 3 1 5 1 0 0 0 0.45 1.00 -8082 GPR37L1 G protein-coupled receptor 37 like 1 323680 3 3 3 1 2 0 1 0 0 0 0.46 1.00 -8083 ZNF565 zinc finger protein 565 339584 3 3 3 1 2 1 0 0 0 0 0.46 1.00 -8084 OCA2 oculocutaneous albinism II 564256 5 5 5 5 4 0 0 0 1 0 0.46 1.00 -8085 MAPRE2 microtubule-associated protein, RP/EB family, member 2 226688 3 2 3 0 1 1 0 0 1 0 0.46 1.00 -8086 ZNF133 zinc finger protein 133 442176 4 4 4 2 1 2 1 0 0 0 0.46 1.00 -8087 NARS asparaginyl-tRNA synthetase 381472 3 3 3 2 0 2 1 0 0 0 0.46 1.00 -8088 CDC7 cell division cycle 7 homolog (S. cerevisiae) 396256 3 3 3 0 0 2 1 0 0 0 0.46 1.00 -8089 PHF14 PHD finger protein 14 589792 5 4 5 0 0 4 1 0 0 0 0.46 1.00 -8090 EPB42 erythrocyte membrane protein band 4.2 495656 5 4 5 1 2 2 1 0 0 0 0.46 1.00 -8091 OPTN optineurin 400064 4 4 4 1 2 1 1 0 0 0 0.46 1.00 -8092 ADH7 alcohol dehydrogenase 7 (class IV), mu or sigma polypeptide 268128 2 2 2 2 0 0 2 0 0 0 0.46 1.00 -8093 CDC42BPA CDC42 binding protein kinase alpha (DMPK-like) 1187960 10 9 10 2 4 4 2 0 0 0 0.46 1.00 -8094 ALKBH6 alkB, alkylation repair homolog 6 (E. coli) 126364 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -8095 SSBP2 single-stranded DNA binding protein 2 258496 2 2 2 0 1 1 0 0 0 0 0.46 1.00 -8096 DDX50 DEAD (Asp-Glu-Ala-Asp) box polypeptide 50 497000 3 3 3 1 1 1 0 0 1 0 0.46 1.00 -8097 WNT2B wingless-type MMTV integration site family, member 2B 281176 3 3 3 0 1 1 0 0 1 0 0.46 1.00 -8098 DHFR dihydrofolate reductase 124152 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -8099 C18orf26 chromosome 18 open reading frame 26 144480 1 1 1 1 0 1 0 0 0 0 0.46 1.00 -8100 C2orf70 135248 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -8101 TCF7L1 transcription factor 7-like 1 (T-cell specific, HMG-box) 346928 3 3 3 0 2 1 0 0 0 0 0.46 1.00 -8102 TCEAL5 transcription elongation factor A (SII)-like 5 140000 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -8103 RNF185 ring finger protein 185 132300 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -8104 PHOSPHO2 phosphatase, orphan 2 163520 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -8105 C5orf48 93408 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -8106 OR51F2 olfactory receptor, family 51, subfamily F, member 2 231392 1 1 1 2 0 0 1 0 0 0 0.46 1.00 -8107 KIF1C kinesin family member 1C 722628 5 5 5 3 2 1 0 0 2 0 0.46 1.00 -8108 MSL1 226844 2 2 2 0 1 1 0 0 0 0 0.46 1.00 -8109 TBX19 T-box 19 308896 3 3 3 4 1 2 0 0 0 0 0.46 1.00 -8110 GTF3A general transcription factor IIIA 207032 2 2 1 0 0 2 0 0 0 0 0.46 1.00 -8111 KCTD4 potassium channel tetramerisation domain containing 4 175616 2 2 2 0 2 0 0 0 0 0 0.46 1.00 -8112 RPRM reprimo, TP53 dependent G2 arrest mediator candidate 67088 1 1 1 1 0 1 0 0 0 0 0.46 1.00 -8113 HMOX1 heme oxygenase (decycling) 1 177688 2 2 2 2 0 2 0 0 0 0 0.46 1.00 -8114 SELE selectin E (endothelial adhesion molecule 1) 421344 4 4 4 1 0 4 0 0 0 0 0.46 1.00 -8115 SCG3 secretogranin III 325920 3 3 3 0 0 2 1 0 0 0 0.46 1.00 -8116 PHTF2 putative homeodomain transcription factor 2 509664 4 3 4 0 1 1 1 0 1 0 0.46 1.00 -8117 BCKDK branched chain ketoacid dehydrogenase kinase 273168 3 3 3 1 1 2 0 0 0 0 0.46 1.00 -8118 RSRC2 arginine/serine-rich coiled-coil 2 308896 3 3 3 1 0 3 0 0 0 0 0.46 1.00 -8119 DLK1 delta-like 1 homolog (Drosophila) 249004 3 3 3 0 2 1 0 0 0 0 0.46 1.00 -8120 ZNF16 zinc finger protein 16 460768 4 4 4 1 3 0 1 0 0 0 0.46 1.00 -8121 MRPL39 mitochondrial ribosomal protein L39 257600 3 3 3 0 2 1 0 0 0 0 0.46 1.00 -8122 BZW2 basic leucine zipper and W2 domains 2 289512 3 2 3 1 1 0 1 0 1 0 0.46 1.00 -8123 BRS3 bombesin-like receptor 3 271488 3 2 3 1 1 2 0 0 0 0 0.46 1.00 -8124 INO80 1077664 9 7 9 1 5 2 1 0 1 0 0.46 1.00 -8125 C15orf39 chromosome 15 open reading frame 39 650168 4 4 4 1 0 2 0 0 2 0 0.46 1.00 -8126 SP4 Sp4 transcription factor 515760 3 3 3 2 1 1 0 0 1 0 0.46 1.00 -8127 INPP1 inositol polyphosphate-1-phosphatase 273280 2 2 2 0 2 0 0 0 0 0 0.46 1.00 -8128 BAG5 BCL2-associated athanogene 5 330148 4 2 3 0 2 0 0 0 2 0 0.46 1.00 -8129 ECE1 endothelin converting enzyme 1 511112 6 5 6 2 4 2 0 0 0 0 0.46 1.00 -8130 SYN2 synapsin II 299584 3 3 3 2 2 1 0 0 0 0 0.46 1.00 -8131 OPTC opticin 228732 3 3 3 0 2 1 0 0 0 0 0.46 1.00 -8132 ITGB3 integrin, beta 3 (platelet glycoprotein IIIa, antigen CD61) 525056 9 6 9 0 3 3 3 0 0 0 0.46 1.00 -8133 ARL2 ADP-ribosylation factor-like 2 128528 1 1 1 0 0 0 0 1 0 0 0.46 1.00 -8134 AP1S1 adaptor-related protein complex 1, sigma 1 subunit 109560 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -8135 RPS20 ribosomal protein S20 83356 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -8136 ZNF148 zinc finger protein 148 539616 3 3 3 0 0 1 2 0 0 0 0.46 1.00 -8137 SOX7 SRY (sex determining region Y)-box 7 242032 3 3 3 2 1 1 0 0 1 0 0.46 1.00 -8138 SERPINF1 serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 1 275872 4 3 4 0 0 4 0 0 0 0 0.46 1.00 -8139 NOL8 nucleolar protein 8 770264 5 5 5 0 1 1 1 0 2 0 0.46 1.00 -8140 PTK2 PTK2 protein tyrosine kinase 2 741664 6 5 6 1 3 1 1 0 1 0 0.46 1.00 -8141 C4orf39 chromosome 4 open reading frame 39 93184 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -8142 ADA adenosine deaminase 246392 3 3 3 1 1 2 0 0 0 0 0.46 1.00 -8143 PSMD13 proteasome (prosome, macropain) 26S subunit, non-ATPase, 13 283136 2 2 2 1 1 0 1 0 0 0 0.46 1.00 -8144 RARRES3 retinoic acid receptor responder (tazarotene induced) 3 114464 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -8145 GYPA glycophorin A (MNS blood group) 107744 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -8146 STK38 serine/threonine kinase 38 324800 2 2 2 0 0 1 1 0 0 0 0.46 1.00 -8147 NR1I3 nuclear receptor subfamily 1, group I, member 3 274400 3 3 3 1 2 0 1 0 0 0 0.46 1.00 -8148 PITX2 paired-like homeodomain 2 260424 2 2 2 2 1 0 0 0 1 0 0.46 1.00 -8149 GLCE glucuronic acid epimerase 417984 6 4 6 0 2 3 1 0 0 0 0.46 1.00 -8150 CD8B CD8b molecule 159808 2 2 2 0 1 1 0 0 0 0 0.46 1.00 -8151 SERPINB8 serpin peptidase inhibitor, clade B (ovalbumin), member 8 260288 3 3 3 1 2 0 1 0 0 0 0.46 1.00 -8152 SLC1A1 solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1 363552 6 3 6 1 4 1 0 0 1 0 0.46 1.00 -8153 UBE2F ubiquitin-conjugating enzyme E2F (putative) 133056 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -8154 NYX nyctalopin 95024 1 1 1 0 0 0 0 0 1 0 0.46 1.00 -8155 VPS25 vacuolar protein sorting 25 homolog (S. cerevisiae) 124320 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -8156 MTUS2 885168 12 7 12 9 5 6 0 0 1 0 0.46 1.00 -8157 HLA-DMA major histocompatibility complex, class II, DM alpha 124768 2 2 1 0 2 0 0 0 0 0 0.46 1.00 -8158 ZNF883 256256 3 2 3 2 0 2 0 0 1 0 0.46 1.00 -8159 TBCEL tubulin folding cofactor E-like 291872 2 2 2 0 0 1 1 0 0 0 0.46 1.00 -8160 GH2 growth hormone 2 226464 3 2 3 1 1 1 0 0 1 0 0.46 1.00 -8161 CHN1 chimerin (chimaerin) 1 302288 2 2 2 1 1 0 1 0 0 0 0.46 1.00 -8162 ITM2A integral membrane protein 2A 182648 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -8163 ARSD arylsulfatase D 402728 3 3 3 0 2 0 1 0 0 0 0.46 1.00 -8164 FEZ2 fasciculation and elongation protein zeta 2 (zygin II) 190696 2 2 2 0 0 1 1 0 0 0 0.46 1.00 -8165 ASCC2 activating signal cointegrator 1 complex subunit 2 520008 3 3 3 0 2 0 0 0 1 0 0.46 1.00 -8166 SIX4 SIX homeobox 4 478268 8 6 8 3 0 7 1 0 0 0 0.46 1.00 -8167 CCK cholecystokinin 70280 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -8168 CLMN calmin (calponin-like, transmembrane) 678440 6 5 6 4 2 1 1 0 2 0 0.46 1.00 -8169 PRSS8 protease, serine, 8 233144 2 2 2 0 1 0 1 0 0 0 0.46 1.00 -8170 RBM41 RNA binding motif protein 41 284480 2 2 2 0 1 0 1 0 0 0 0.46 1.00 -8171 HIST1H3B histone cluster 1, H3b 83804 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -8172 FOSL2 FOS-like antigen 2 200676 2 2 2 1 0 1 0 0 1 0 0.46 1.00 -8173 KREMEN1 kringle containing transmembrane protein 1 305312 2 2 2 0 1 0 1 0 0 0 0.46 1.00 -8174 ANGPT4 angiopoietin 4 346616 3 3 3 2 0 2 0 1 0 0 0.46 1.00 -8175 AQP6 aquaporin 6, kidney specific 193760 2 2 2 0 1 1 0 0 0 0 0.46 1.00 -8176 NOS1AP nitric oxide synthase 1 (neuronal) adaptor protein 350812 4 4 4 3 1 1 1 0 1 0 0.46 1.00 -8177 CAD carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase 1528524 12 11 12 6 5 5 1 0 1 0 0.46 1.00 -8178 LANCL2 LanC lantibiotic synthetase component C-like 2 (bacterial) 300896 3 3 3 0 2 1 0 0 0 0 0.46 1.00 -8179 BUB1B BUB1 budding uninhibited by benzimidazoles 1 homolog beta (yeast) 726880 6 5 5 0 0 4 2 0 0 0 0.46 1.00 -8180 RPL10L ribosomal protein L10-like 145376 2 2 2 1 2 0 0 0 0 0 0.46 1.00 -8181 PSG6 pregnancy specific beta-1-glycoprotein 6 290976 3 3 3 3 1 1 1 0 0 0 0.46 1.00 -8182 MEST mesoderm specific transcript homolog (mouse) 230792 3 2 3 0 2 1 0 0 0 0 0.46 1.00 -8183 TAZ tafazzin (cardiomyopathy, dilated 3A (X-linked); endocardial fibroelastosis 2; Barth syndrome) 186228 1 1 1 0 0 0 0 0 1 0 0.46 1.00 -8184 NLRC5 NLR family, CARD domain containing 5 1278624 9 7 9 6 0 2 4 0 3 0 0.46 1.00 -8185 DOPEY1 dopey family member 1 1690304 10 10 10 5 3 2 5 0 0 0 0.46 1.00 -8186 SMPDL3A sphingomyelin phosphodiesterase, acid-like 3A 286188 2 2 2 0 0 1 1 0 0 0 0.46 1.00 -8187 WASF1 WAS protein family, member 1 383488 3 3 3 0 2 0 1 0 0 0 0.46 1.00 -8188 COPS8 COP9 constitutive photomorphogenic homolog subunit 8 (Arabidopsis) 148288 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -8189 EXPH5 exophilin 5 1342656 11 9 11 2 2 6 2 0 1 0 0.46 1.00 -8190 RPL35 ribosomal protein L35 85596 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -8191 SRP68 signal recognition particle 68kDa 429548 4 4 4 1 1 3 0 0 0 0 0.46 1.00 -8192 ACBD6 acyl-Coenzyme A binding domain containing 6 197344 2 2 2 0 2 0 0 0 0 0 0.46 1.00 -8193 C7orf27 chromosome 7 open reading frame 27 413600 3 3 3 1 0 1 1 0 1 0 0.46 1.00 -8194 RNASE6 ribonuclease, RNase A family, k6 102368 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -8195 GCFC1 601328 8 5 8 2 3 3 1 0 1 0 0.46 1.00 -8196 TBPL1 TBP-like 1 131040 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -8197 SHOC2 soc-2 suppressor of clear homolog (C. elegans) 398944 4 3 4 1 0 3 0 0 1 0 0.46 1.00 -8198 GALNT3 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 3 (GalNAc-T3) 434000 4 2 4 0 1 0 1 0 2 0 0.46 1.00 -8199 NCOA1 nuclear receptor coactivator 1 997024 8 8 8 5 3 3 2 0 0 0 0.46 1.00 -8200 C1QTNF9B 227136 2 2 2 1 0 2 0 0 0 0 0.46 1.00 -8201 EXOC2 exocyst complex component 2 645792 7 5 7 2 3 2 2 0 0 0 0.46 1.00 -8202 HEATR3 HEAT repeat containing 3 422436 4 3 4 2 0 2 1 0 1 0 0.46 1.00 -8203 BUB3 BUB3 budding uninhibited by benzimidazoles 3 homolog (yeast) 230496 2 2 2 0 1 0 1 0 0 0 0.46 1.00 -8204 PARD6G par-6 partitioning defective 6 homolog gamma (C. elegans) 151508 2 2 2 2 1 0 1 0 0 0 0.46 1.00 -8205 FOXJ3 forkhead box J3 429408 3 3 3 1 1 1 1 0 0 0 0.46 1.00 -8206 NFE2L3 nuclear factor (erythroid-derived 2)-like 3 354928 3 3 3 1 1 0 1 0 1 0 0.47 1.00 -8207 INPP5F inositol polyphosphate-5-phosphatase F 752456 9 6 9 0 4 2 2 0 1 0 0.47 1.00 -8208 ASGR1 asialoglycoprotein receptor 1 203392 2 2 2 0 1 0 1 0 0 0 0.47 1.00 -8209 LHX6 LIM homeobox 6 218508 3 3 3 2 1 2 0 0 0 0 0.47 1.00 -8210 STK19 serine/threonine kinase 19 173880 2 2 2 1 1 0 1 0 0 0 0.47 1.00 -8211 NPC2 Niemann-Pick disease, type C2 106624 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -8212 LENG1 leukocyte receptor cluster (LRC) member 1 173936 2 2 2 0 1 0 1 0 0 0 0.47 1.00 -8213 SF3B14 88256 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -8214 ITGB6 integrin, beta 6 543648 6 4 6 2 2 2 1 0 1 0 0.47 1.00 -8215 OTUD6A OTU domain containing 6A 168272 2 2 2 1 2 0 0 0 0 0 0.47 1.00 -8216 RPAP2 RNA polymerase II associated protein 2 410296 3 3 3 1 0 1 2 0 0 0 0.47 1.00 -8217 AURKA aurora kinase A 278656 2 2 2 1 0 2 0 0 0 0 0.47 1.00 -8218 CHN2 chimerin (chimaerin) 2 324604 2 2 2 0 1 1 0 0 0 0 0.47 1.00 -8219 HSH2D hematopoietic SH2 domain containing 222384 2 2 2 0 2 0 0 0 0 0 0.47 1.00 -8220 MRPS14 mitochondrial ribosomal protein S14 89376 1 1 1 1 0 0 1 0 0 0 0.47 1.00 -8221 MORN3 MORN repeat containing 3 162216 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -8222 ADAMTS10 ADAM metallopeptidase with thrombospondin type 1 motif, 10 643524 5 5 5 1 1 1 0 1 2 0 0.47 1.00 -8223 RAB9A RAB9A, member RAS oncogene family 136640 1 1 1 1 0 0 0 0 1 0 0.47 1.00 -8224 TMEM101 transmembrane protein 101 151076 1 1 1 1 0 1 0 0 0 0 0.47 1.00 -8225 C6orf136 chromosome 6 open reading frame 136 196532 2 2 2 0 2 0 0 0 0 0 0.47 1.00 -8226 PI3 peptidase inhibitor 3, skin-derived (SKALP) 81088 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -8227 ST6GALNAC2 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 225320 2 2 2 0 0 1 1 0 0 0 0.47 1.00 -8228 TRRAP transformation/transcription domain-associated protein 2626272 21 17 20 8 12 3 4 0 2 0 0.47 1.00 -8229 KLF12 Kruppel-like factor 12 277088 2 2 2 0 2 0 0 0 0 0 0.47 1.00 -8230 RBAK RB-associated KRAB zinc finger 483980 3 3 3 1 0 3 0 0 0 0 0.47 1.00 -8231 ACSM1 acyl-CoA synthetase medium-chain family member 1 400064 5 4 5 2 2 1 2 0 0 0 0.47 1.00 -8232 C19orf55 chromosome 19 open reading frame 55 242236 3 3 3 1 0 2 0 1 0 0 0.47 1.00 -8233 SLC25A35 solute carrier family 25, member 35 200928 1 1 1 1 0 0 0 0 1 0 0.47 1.00 -8234 YAP1 Yes-associated protein 1, 65kDa 311808 2 2 2 1 1 0 0 0 1 0 0.47 1.00 -8235 HAP1 huntingtin-associated protein 1 (neuroan 1) 398748 3 3 3 1 0 2 1 0 0 0 0.47 1.00 -8236 CD5 CD5 molecule 332812 4 3 4 0 1 0 3 0 0 0 0.47 1.00 -8237 CST9L cystatin 9-like 102144 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -8238 KIF15 kinesin family member 15 964768 5 5 5 1 1 1 3 0 0 0 0.47 1.00 -8239 FAM109B family with sequence similarity 109, member B 159236 2 2 2 0 1 1 0 0 0 0 0.47 1.00 -8240 ANO6 630112 5 4 5 3 1 3 0 0 1 0 0.47 1.00 -8241 PDE3A phosphodiesterase 3A, cGMP-inhibited 701076 5 5 5 2 3 0 0 1 1 0 0.47 1.00 -8242 EML2 echinoderm microtubule associated protein like 2 446696 4 4 4 3 3 1 0 0 0 0 0.47 1.00 -8243 C9orf68 chromosome 9 open reading frame 68 233184 2 1 2 0 0 1 0 0 1 0 0.47 1.00 -8244 H6PD hexose-6-phosphate dehydrogenase (glucose 1-dehydrogenase) 512372 4 4 4 1 2 1 0 0 1 0 0.47 1.00 -8245 OR8H3 olfactory receptor, family 8, subfamily H, member 3 211232 2 2 2 1 0 1 1 0 0 0 0.47 1.00 -8246 MYO9A myosin IXA 1746672 22 12 20 8 11 5 6 0 0 0 0.47 1.00 -8247 BAG2 BCL2-associated athanogene 2 144064 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -8248 COCH coagulation factor C homolog, cochlin (Limulus polyphemus) 372540 2 2 2 1 1 1 0 0 0 0 0.47 1.00 -8249 LIMK2 LIM domain kinase 2 533484 5 5 5 2 2 1 1 0 1 0 0.47 1.00 -8250 TMSL3 thymosin-like 3 61236 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -8251 ZFC3H1 1361584 11 7 11 0 0 4 4 0 3 0 0.47 1.00 -8252 NBEAL1 neurobeachin-like 1 972384 8 8 8 0 2 2 4 0 0 0 0.47 1.00 -8253 ADAM33 ADAM metallopeptidase domain 33 419068 3 3 3 0 1 1 0 0 1 0 0.47 1.00 -8254 ANKFY1 ankyrin repeat and FYVE domain containing 1 798632 9 8 9 2 6 2 1 0 0 0 0.47 1.00 -8255 LPXN leupaxin 268128 2 2 2 0 1 1 0 0 0 0 0.47 1.00 -8256 RNF32 ring finger protein 32 251104 2 2 2 0 1 0 0 0 1 0 0.47 1.00 -8257 SMTNL1 smoothelin-like 1 332704 2 2 2 0 0 1 1 0 0 0 0.47 1.00 -8258 RALA v-ral simian leukemia viral oncogene homolog A (ras related) 142688 1 1 1 1 0 0 0 0 1 0 0.47 1.00 -8259 WDR77 WD repeat domain 77 219376 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -8260 ZCCHC3 zinc finger, CCHC domain containing 3 153244 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -8261 PSMD2 proteasome (prosome, macropain) 26S subunit, non-ATPase, 2 598528 4 4 4 1 1 2 1 0 0 0 0.47 1.00 -8262 SULT2A1 sulfotransferase family, cytosolic, 2A, dehydroepiandrosterone (DHEA)-preferring, member 1 197568 2 2 2 0 0 2 0 0 0 0 0.47 1.00 -8263 RPGR retinitis pigmentosa GTPase regulator 741792 4 4 4 0 2 1 0 0 1 0 0.47 1.00 -8264 BCS1L BCS1-like (yeast) 286748 2 2 2 0 0 0 2 0 0 0 0.47 1.00 -8265 OR10Q1 olfactory receptor, family 10, subfamily Q, member 1 215936 2 2 2 0 1 1 0 0 0 0 0.47 1.00 -8266 E2F3 E2F transcription factor 3 283808 2 2 2 0 0 0 2 0 0 0 0.47 1.00 -8267 NSL1 NSL1, MIND kinetochore complex component, homolog (S. cerevisiae) 193200 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -8268 PYROXD1 pyridine nucleotide-disulphide oxidoreductase domain 1 347424 2 2 2 2 0 0 1 0 1 0 0.47 1.00 -8269 ACADL acyl-Coenzyme A dehydrogenase, long chain 281344 2 2 2 0 2 0 0 0 0 0 0.47 1.00 -8270 BFSP2 beaded filament structural protein 2, phakinin 284396 2 2 2 0 0 0 2 0 0 0 0.47 1.00 -8271 RGS12 regulator of G-protein signaling 12 915456 7 7 7 2 1 1 2 0 3 0 0.47 1.00 -8272 IL1RL2 interleukin 1 receptor-like 2 396928 4 4 4 2 1 2 1 0 0 0 0.47 1.00 -8273 VSTM2A V-set and transmembrane domain containing 2A 145432 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -8274 CSN3 casein kappa 125664 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -8275 GSG1L GSG1-like 137312 2 2 2 1 2 0 0 0 0 0 0.47 1.00 -8276 ME2 malic enzyme 2, NAD(+)-dependent, mitochondrial 406560 3 3 3 1 0 1 2 0 0 0 0.47 1.00 -8277 CD1C CD1c molecule 229824 1 1 1 3 1 0 0 0 0 0 0.47 1.00 -8278 GPR128 G protein-coupled receptor 128 550592 5 4 5 4 0 3 1 0 1 0 0.47 1.00 -8279 PPPDE1 133084 2 1 2 0 0 1 0 0 1 0 0.47 1.00 -8280 KIAA0586 KIAA0586 944112 9 7 9 1 2 6 1 0 0 0 0.47 1.00 -8281 KDELC2 KDEL (Lys-Asp-Glu-Leu) containing 2 302400 2 2 2 1 1 1 0 0 0 0 0.47 1.00 -8282 IFIH1 interferon induced with helicase C domain 1 702968 5 4 5 1 2 1 1 0 1 0 0.47 1.00 -8283 DHRS1 dehydrogenase/reductase (SDR family) member 1 218176 1 1 1 1 0 0 0 0 1 0 0.47 1.00 -8284 APLP2 amyloid beta (A4) precursor-like protein 2 505120 6 5 6 0 3 1 2 0 0 0 0.47 1.00 -8285 DENND5A 860832 7 5 7 0 3 2 2 0 0 0 0.47 1.00 -8286 ATP13A4 ATPase type 13A4 831264 8 6 8 2 2 4 2 0 0 0 0.47 1.00 -8287 TFR2 transferrin receptor 2 495688 3 3 3 2 2 0 0 0 1 0 0.47 1.00 -8288 MLANA melan-A 83552 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -8289 APBB3 amyloid beta (A4) precursor protein-binding, family B, member 3 335748 3 3 3 0 0 2 1 0 0 0 0.47 1.00 -8290 GPR75 G protein-coupled receptor 75 364448 2 2 2 2 1 0 1 0 0 0 0.47 1.00 -8291 OR10K1 olfactory receptor, family 10, subfamily K, member 1 211904 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -8292 FAM55D family with sequence similarity 55, member D 370720 5 3 5 2 1 3 1 0 0 0 0.47 1.00 -8293 DDX47 DEAD (Asp-Glu-Ala-Asp) box polypeptide 47 317184 3 3 3 0 1 1 1 0 0 0 0.47 1.00 -8294 RNF10 ring finger protein 10 547372 4 4 4 1 1 2 1 0 0 0 0.47 1.00 -8295 RNFT1 ring finger protein, transmembrane 1 300300 2 2 2 0 0 0 2 0 0 0 0.47 1.00 -8296 IRX5 iroquois homeobox 5 219100 3 3 3 3 2 0 1 0 0 0 0.47 1.00 -8297 AKAP14 A kinase (PRKA) anchor protein 14 139552 1 1 1 0 1 0 0 0 0 0 0.47 1.00 -8298 PNN pinin, desmosome associated protein 490560 5 4 5 0 1 1 1 0 2 0 0.47 1.00 -8299 IL1RL1 interleukin 1 receptor-like 1 387072 3 3 3 1 0 2 1 0 0 0 0.47 1.00 -8300 OR5T3 olfactory receptor, family 5, subfamily T, member 3 230048 3 2 3 0 0 3 0 0 0 0 0.47 1.00 -8301 C10orf46 chromosome 10 open reading frame 46 235096 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -8302 OR2T1 olfactory receptor, family 2, subfamily T, member 1 249536 1 1 1 4 0 0 1 0 0 0 0.47 1.00 -8303 C9orf50 chromosome 9 open reading frame 50 189336 2 2 2 0 0 2 0 0 0 0 0.47 1.00 -8304 AZI2 5-azacytidine induced 2 270368 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -8305 MMADHC 205856 1 1 1 1 0 0 0 0 1 0 0.47 1.00 -8306 RSL24D1 115584 1 1 1 0 1 0 0 0 0 0 0.47 1.00 -8307 PDGFRB platelet-derived growth factor receptor, beta polypeptide 749756 6 6 6 5 3 1 1 0 1 0 0.47 1.00 -8308 CYP4F8 cytochrome P450, family 4, subfamily F, polypeptide 8 360640 4 3 4 2 0 3 0 0 1 0 0.47 1.00 -8309 COQ10B coenzyme Q10 homolog B (S. cerevisiae) 165088 2 2 2 0 1 1 0 0 0 0 0.47 1.00 -8310 OR51S1 olfactory receptor, family 51, subfamily S, member 1 218624 2 2 2 1 1 1 0 0 0 0 0.47 1.00 -8311 TRIM36 tripartite motif-containing 36 555072 4 4 4 0 2 2 0 0 0 0 0.47 1.00 -8312 IL12B interleukin 12B (natural killer cell stimulatory factor 2, cytotoxic lymphocyte maturation factor 2, p40) 226464 2 2 2 4 0 2 0 0 0 0 0.47 1.00 -8313 ZNF17 zinc finger protein 17 448224 3 3 3 0 2 1 0 0 0 0 0.47 1.00 -8314 IDS iduronate 2-sulfatase (Hunter syndrome) 368192 2 2 2 0 0 0 1 0 1 0 0.47 1.00 -8315 SEC62 270528 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -8316 STAR steroidogenic acute regulatory protein 198464 1 1 1 2 0 0 0 0 1 0 0.47 1.00 -8317 WNT9A wingless-type MMTV integration site family, member 9A 175224 2 2 2 0 1 0 0 0 1 0 0.47 1.00 -8318 PLIN1 262672 3 3 3 0 1 2 0 0 0 0 0.47 1.00 -8319 IFNG interferon, gamma 115808 1 1 1 2 0 1 0 0 0 0 0.47 1.00 -8320 TRAF3IP2 TRAF3 interacting protein 2 387520 3 3 3 0 1 2 0 0 0 0 0.47 1.00 -8321 CHST1 carbohydrate (keratan sulfate Gal-6) sulfotransferase 1 266504 7 5 7 3 7 0 0 0 0 0 0.47 1.00 -8322 CCDC54 coiled-coil domain containing 54 221984 1 1 1 1 0 0 0 0 1 0 0.47 1.00 -8323 SCAMP2 secretory carrier membrane protein 2 221528 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -8324 SNAP91 synaptosomal-associated protein, 91kDa homolog (mouse) 545288 6 4 6 1 1 2 2 0 1 0 0.47 1.00 -8325 C14orf28 chromosome 14 open reading frame 28 212576 2 2 2 1 0 2 0 0 0 0 0.47 1.00 -8326 ZNF665 zinc finger protein 665 458976 8 4 8 3 1 6 1 0 0 0 0.47 1.00 -8327 FUT1 fucosyltransferase 1 (galactoside 2-alpha-L-fucosyltransferase, H blood group) 225428 4 3 4 2 4 0 0 0 0 0 0.47 1.00 -8328 PHB prohibitin 180724 2 2 2 0 1 0 1 0 0 0 0.47 1.00 -8329 C11orf24 chromosome 11 open reading frame 24 304192 2 2 2 1 1 1 0 0 0 0 0.47 1.00 -8330 GNPTAB N-acetylglucosamine-1-phosphate transferase, alpha and beta subunits 863520 7 6 7 1 2 3 1 0 1 0 0.47 1.00 -8331 CHRNA2 cholinergic receptor, nicotinic, alpha 2 (neuronal) 354872 5 5 5 3 2 2 1 0 0 0 0.47 1.00 -8332 DPF3 D4, zinc and double PHD fingers, family 3 248640 3 3 3 2 1 2 0 0 0 0 0.47 1.00 -8333 GDF11 growth differentiation factor 11 218988 3 3 3 0 2 1 0 0 0 0 0.47 1.00 -8334 NAPB N-ethylmaleimide-sensitive factor attachment protein, beta 195752 1 1 1 1 0 1 0 0 0 0 0.47 1.00 -8335 CST7 cystatin F (leukocystatin) 101696 1 1 1 0 1 0 0 0 0 0 0.47 1.00 -8336 CAB39L calcium binding protein 39-like 234304 2 2 2 2 0 1 0 0 1 0 0.47 1.00 -8337 LHFPL1 lipoma HMGIC fusion partner-like 1 151200 1 1 1 1 0 0 1 0 0 0 0.47 1.00 -8338 CST1 cystatin SN 98112 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -8339 TMEM56 transmembrane protein 56 182784 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -8340 UTP15 UTP15, U3 small nucleolar ribonucleoprotein, homolog (S. cerevisiae) 359520 3 3 3 0 0 2 1 0 0 0 0.47 1.00 -8341 STAM2 signal transducing adaptor molecule (SH3 domain and ITAM motif) 2 366016 2 2 2 2 0 1 1 0 0 0 0.47 1.00 -8342 HIST2H2BF histone cluster 2, H2bf 86240 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -8343 COL27A1 collagen, type XXVII, alpha 1 1226108 13 8 13 4 8 1 1 0 3 0 0.47 1.00 -8344 ITPR1 inositol 1,4,5-triphosphate receptor, type 1 1842760 19 12 19 6 8 7 3 0 1 0 0.47 1.00 -8345 KDR kinase insert domain receptor (a type III receptor tyrosine kinase) 938784 10 9 10 5 5 3 2 0 0 0 0.47 1.00 -8346 BAT2L2 1797240 13 11 13 2 6 2 3 0 2 0 0.47 1.00 -8347 C19orf63 chromosome 19 open reading frame 63 166940 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -8348 P2RY13 purinergic receptor P2Y, G-protein coupled, 13 227584 2 2 2 0 0 2 0 0 0 0 0.47 1.00 -8349 KLHDC1 kelch domain containing 1 280784 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -8350 IFNGR2 interferon gamma receptor 2 (interferon gamma transducer 1) 216160 2 2 2 0 1 0 0 0 1 0 0.47 1.00 -8351 OPN4 opsin 4 275744 3 3 3 0 0 3 0 0 0 0 0.47 1.00 -8352 MYST3 MYST histone acetyltransferase (monocytic leukemia) 3 1346056 18 11 18 2 12 3 3 0 0 0 0.47 1.00 -8353 C9orf152 chromosome 9 open reading frame 152 151200 1 1 1 0 1 0 0 0 0 0 0.47 1.00 -8354 R3HDM2 R3H domain containing 2 441728 3 3 3 3 1 2 0 0 0 0 0.47 1.00 -8355 YWHAQ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, theta polypeptide 165928 2 2 2 1 0 2 0 0 0 0 0.47 1.00 -8356 DDI2 DDI1, DNA-damage inducible 1, homolog 2 (S. cerevisiae) 271572 2 2 2 0 0 1 1 0 0 0 0.47 1.00 -8357 DMGDH dimethylglycine dehydrogenase 573440 7 4 7 3 2 3 2 0 0 0 0.47 1.00 -8358 PCDHA12 protocadherin alpha 12 626276 7 7 6 1 5 2 0 0 0 0 0.47 1.00 -8359 AMIGO1 adhesion molecule with Ig-like domain 1 331604 3 3 3 3 1 2 0 0 0 0 0.47 1.00 -8360 RPS9 ribosomal protein S9 134456 2 2 2 1 2 0 0 0 0 0 0.48 1.00 -8361 CHST8 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 8 250824 3 3 3 0 3 0 0 0 0 0 0.48 1.00 -8362 PPP2R5C protein phosphatase 2, regulatory subunit B', gamma isoform 401496 3 3 2 0 0 2 0 0 1 0 0.48 1.00 -8363 FAM76A family with sequence similarity 76, member A 196000 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8364 RPL22L1 ribosomal protein L22-like 1 84336 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -8365 PRICKLE3 prickle homolog 3 (Drosophila) 360160 3 3 3 0 2 0 0 0 1 0 0.48 1.00 -8366 PCDHA4 protocadherin alpha 4 641480 12 7 12 1 6 1 3 0 2 0 0.48 1.00 -8367 PRSS16 protease, serine, 16 (thymus) 337592 3 3 3 3 0 2 0 0 1 0 0.48 1.00 -8368 ZC3HAV1L zinc finger CCCH-type, antiviral 1-like 124096 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8369 ZNF33A zinc finger protein 33A 549248 6 4 6 2 2 2 1 0 1 0 0.48 1.00 -8370 REPS1 RALBP1 associated Eps domain containing 1 518336 5 4 5 0 3 0 0 0 2 0 0.48 1.00 -8371 CHFR checkpoint with forkhead and ring finger domains 359548 4 4 4 0 0 3 1 0 0 0 0.48 1.00 -8372 UNC5D unc-5 homolog D (C. elegans) 632352 9 4 9 5 2 4 1 0 2 0 0.48 1.00 -8373 ANG angiogenin, ribonuclease, RNase A family, 5 100352 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -8374 ARHGAP29 Rho GTPase activating protein 29 867776 8 6 8 1 3 3 1 0 1 0 0.48 1.00 -8375 GLIPR1 GLI pathogenesis-related 1 (glioma) 184800 1 1 1 1 1 0 0 0 0 0 0.48 1.00 -8376 ASB1 ankyrin repeat and SOCS box-containing 1 218400 2 2 2 1 1 1 0 0 0 0 0.48 1.00 -8377 NOP14 588084 5 4 5 5 0 1 2 0 2 0 0.48 1.00 -8378 FAM63A family with sequence similarity 63, member A 326144 3 3 3 0 1 1 0 0 1 0 0.48 1.00 -8379 SGK1 serum/glucocorticoid regulated kinase 1 421344 4 4 4 2 0 2 2 0 0 0 0.48 1.00 -8380 ITGAL integrin, alpha L (antigen CD11A (p180), lymphocyte function-associated antigen 1; alpha polypeptide) 811244 8 6 8 4 1 4 1 0 2 0 0.48 1.00 -8381 SUPT7L suppressor of Ty 7 (S. cerevisiae)-like 283360 2 2 2 0 1 1 0 0 0 0 0.48 1.00 -8382 SLC43A2 solute carrier family 43, member 2 323284 2 2 2 2 0 0 1 0 1 0 0.48 1.00 -8383 TNFSF10 tumor necrosis factor (ligand) superfamily, member 10 193984 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8384 NF2 neurofibromin 2 (merlin) 388328 4 3 4 1 2 1 0 0 1 0 0.48 1.00 -8385 KLHL25 kelch-like 25 (Drosophila) 362684 4 4 4 0 2 1 0 0 1 0 0.48 1.00 -8386 SUGT1 SGT1, suppressor of G2 allele of SKP1 (S. cerevisiae) 236096 1 1 1 2 0 1 0 0 0 0 0.48 1.00 -8387 DNAJC22 227248 2 2 2 0 1 0 1 0 0 0 0.48 1.00 -8388 TRIL 275492 2 2 2 2 0 0 0 0 2 0 0.48 1.00 -8389 LIMS2 LIM and senescent cell antigen-like domains 2 211640 2 2 2 0 1 0 0 0 1 0 0.48 1.00 -8390 ANKRD32 ankyrin repeat domain 32 292768 1 1 1 0 0 0 0 0 1 0 0.48 1.00 -8391 PSEN1 presenilin 1 (Alzheimer disease 3) 323456 3 3 3 0 2 1 0 0 0 0 0.48 1.00 -8392 CCDC144A coiled-coil domain containing 144A 795828 7 5 7 1 3 1 1 0 0 2 0.48 1.00 -8393 C7orf57 chromosome 7 open reading frame 57 196968 1 1 1 1 0 0 1 0 0 0 0.48 1.00 -8394 IDI2 isopentenyl-diphosphate delta isomerase 2 156800 1 1 1 2 0 0 0 0 1 0 0.48 1.00 -8395 LPCAT1 lysophosphatidylcholine acyltransferase 1 339248 3 3 3 2 1 2 0 0 0 0 0.48 1.00 -8396 GPR182 G protein-coupled receptor 182 273056 2 2 2 1 2 0 0 0 0 0 0.48 1.00 -8397 IMPACT Impact homolog (mouse) 216608 3 2 3 0 0 2 1 0 0 0 0.48 1.00 -8398 VWC2 von Willebrand factor C domain containing 2 105212 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8399 KRTAP10-8 keratin associated protein 10-8 175616 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -8400 TMEM81 transmembrane protein 81 172928 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -8401 SRRD SRR1 domain containing 189416 1 1 1 0 0 0 0 0 1 0 0.48 1.00 -8402 TMEM40 transmembrane protein 40 163976 1 1 1 2 0 0 1 0 0 0 0.48 1.00 -8403 DOCK4 dedicator of cytokinesis 4 1324224 12 9 12 0 5 3 2 0 2 0 0.48 1.00 -8404 PRPF19 PRP19/PSO4 pre-mRNA processing factor 19 homolog (S. cerevisiae) 350812 3 3 3 2 0 3 0 0 0 0 0.48 1.00 -8405 F8 coagulation factor VIII, procoagulant component (hemophilia A) 1600576 18 10 16 7 2 10 4 0 2 0 0.48 1.00 -8406 C2orf24 chromosome 2 open reading frame 24 269976 2 2 2 0 0 1 1 0 0 0 0.48 1.00 -8407 FAM131A family with sequence similarity 131, member A 174328 1 1 1 1 0 0 0 1 0 0 0.48 1.00 -8408 GCDH glutaryl-Coenzyme A dehydrogenase 312844 5 4 5 0 3 1 0 1 0 0 0.48 1.00 -8409 TMEM154 transmembrane protein 154 129376 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -8410 NMRAL1 NmrA-like family domain containing 1 206080 2 2 2 1 2 0 0 0 0 0 0.48 1.00 -8411 FAM177A1 147016 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8412 TUBB8 249284 3 3 3 2 3 0 0 0 0 0 0.48 1.00 -8413 RFC4 replication factor C (activator 1) 4, 37kDa 253568 3 2 3 1 0 1 1 0 1 0 0.48 1.00 -8414 TXNDC2 thioredoxin domain-containing 2 (spermatozoa) 374080 3 2 3 0 1 0 0 0 2 0 0.48 1.00 -8415 RYR1 ryanodine receptor 1 (skeletal) 3191924 25 24 25 17 14 9 2 0 0 0 0.48 1.00 -8416 DIP2C DIP2 disco-interacting protein 2 homolog C (Drosophila) 1048104 9 7 9 3 0 3 3 0 3 0 0.48 1.00 -8417 MGAT4A mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A 373632 2 2 2 1 0 1 1 0 0 0 0.48 1.00 -8418 L3MBTL2 l(3)mbt-like 2 (Drosophila) 467608 4 4 4 1 3 1 0 0 0 0 0.48 1.00 -8419 OR5K1 olfactory receptor, family 5, subfamily K, member 1 208544 3 2 3 0 1 2 0 0 0 0 0.48 1.00 -8420 CEP350 centrosomal protein 350kDa 2061268 9 7 8 3 1 3 1 1 3 0 0.48 1.00 -8421 ITGB8 integrin, beta 8 529984 5 5 5 2 1 1 3 0 0 0 0.48 1.00 -8422 SLC2A4 solute carrier family 2 (facilitated glucose transporter), member 4 349312 4 4 4 3 2 1 1 0 0 0 0.48 1.00 -8423 MYBPC1 myosin binding protein C, slow type 828352 7 7 7 4 2 3 1 0 1 0 0.48 1.00 -8424 KLHL8 kelch-like 8 (Drosophila) 425376 2 2 2 1 1 0 0 0 1 0 0.48 1.00 -8425 C14orf148 chromosome 14 open reading frame 148 263200 2 2 2 1 0 2 0 0 0 0 0.48 1.00 -8426 NXPH1 neurexophilin 1 184576 3 2 3 1 1 2 0 0 0 0 0.48 1.00 -8427 ZPBP2 zona pellucida binding protein 2 234976 1 1 1 2 0 0 0 0 1 0 0.48 1.00 -8428 LIM2 lens intrinsic membrane protein 2, 19kDa 148736 1 1 1 2 0 1 0 0 0 0 0.48 1.00 -8429 CYTIP 249088 2 2 2 0 0 1 1 0 0 0 0.48 1.00 -8430 MAT2A methionine adenosyltransferase II, alpha 274176 1 1 1 0 0 0 0 0 1 0 0.48 1.00 -8431 LSM12 LSM12 homolog (S. cerevisiae) 118696 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -8432 LRRC16B leucine rich repeat containing 16B 897904 6 6 6 4 2 0 3 0 1 0 0.48 1.00 -8433 SH2D2A SH2 domain protein 2A 236656 2 2 2 0 0 1 0 0 1 0 0.48 1.00 -8434 SLC35C2 solute carrier family 35, member C2 254016 2 2 2 1 1 0 1 0 0 0 0.48 1.00 -8435 MCM5 minichromosome maintenance complex component 5 480484 6 5 6 1 4 2 0 0 0 0 0.48 1.00 -8436 C2orf71 858828 9 6 9 2 2 5 1 0 1 0 0.48 1.00 -8437 C3orf54 chromosome 3 open reading frame 54 148644 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8438 C6orf25 chromosome 6 open reading frame 25 172200 2 2 2 0 1 1 0 0 0 0 0.48 1.00 -8439 RAB4A RAB4A, member RAS oncogene family 145600 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8440 PUM1 pumilio homolog 1 (Drosophila) 817824 6 5 6 2 3 2 0 0 1 0 0.48 1.00 -8441 SDC4 syndecan 4 135104 1 1 1 1 1 0 0 0 0 0 0.48 1.00 -8442 B3GNT9 146480 2 2 2 0 2 0 0 0 0 0 0.48 1.00 -8443 SGK3 serum/glucocorticoid regulated kinase family, member 3 348320 2 2 2 0 0 1 1 0 0 0 0.48 1.00 -8444 KIAA0528 KIAA0528 694176 8 5 7 3 2 3 3 0 0 0 0.48 1.00 -8445 KCTD9 potassium channel tetramerisation domain containing 9 268464 1 1 1 0 0 0 0 0 1 0 0.48 1.00 -8446 DNAJC17 DnaJ (Hsp40) homolog, subfamily C, member 17 214816 2 2 2 0 0 1 1 0 0 0 0.48 1.00 -8447 RAB3A RAB3A, member RAS oncogene family 152096 2 2 2 0 2 0 0 0 0 0 0.48 1.00 -8448 C14orf1 chromosome 14 open reading frame 1 98336 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -8449 ACOX1 acyl-Coenzyme A oxidase 1, palmitoyl 493696 3 3 3 0 1 0 1 1 0 0 0.48 1.00 -8450 C10orf78 chromosome 10 open reading frame 78 166584 1 1 1 1 0 0 0 0 1 0 0.48 1.00 -8451 NFATC2 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2 627956 6 6 6 3 4 2 0 0 0 0 0.48 1.00 -8452 UTP23 166744 1 1 1 1 0 0 0 0 1 0 0.48 1.00 -8453 ZNF699 zinc finger protein 699 436072 4 4 3 1 0 3 1 0 0 0 0.48 1.00 -8454 FRS3 fibroblast growth factor receptor substrate 3 292036 2 2 2 0 0 0 2 0 0 0 0.48 1.00 -8455 NEDD9 neural precursor cell expressed, developmentally down-regulated 9 585648 6 6 4 3 5 1 0 0 0 0 0.48 1.00 -8456 TNFAIP8 tumor necrosis factor, alpha-induced protein 8 129128 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -8457 GGH gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase) 208740 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8458 CYP51A1 cytochrome P450, family 51, subfamily A, polypeptide 1 351680 3 2 3 0 1 0 1 0 1 0 0.48 1.00 -8459 TTC3 tetratricopeptide repeat domain 3 1401792 17 7 17 0 2 7 4 0 4 0 0.48 1.00 -8460 C16orf63 chromosome 16 open reading frame 63 122080 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8461 NRD1 nardilysin (N-arginine dibasic convertase) 849408 4 4 4 2 0 1 1 0 2 0 0.48 1.00 -8462 ITGB5 integrin, beta 5 534464 6 5 6 2 1 3 1 0 1 0 0.48 1.00 -8463 GRASP GRP1 (general receptor for phosphoinositides 1)-associated scaffold protein 131880 1 1 1 0 0 0 0 0 1 0 0.48 1.00 -8464 EPHA2 EPH receptor A2 638640 5 5 5 2 2 0 1 0 2 0 0.48 1.00 -8465 SGIP1 SH3-domain GRB2-like (endophilin) interacting protein 1 579488 4 4 4 2 0 1 3 0 0 0 0.48 1.00 -8466 C1orf104 chromosome 1 open reading frame 104 160160 2 2 2 0 2 0 0 0 0 0 0.48 1.00 -8467 SLC6A9 solute carrier family 6 (neurotransmitter transporter, glycine), member 9 488376 4 4 4 4 2 2 0 0 0 0 0.48 1.00 -8468 NT5E 5'-nucleotidase, ecto (CD73) 380428 3 3 3 1 2 1 0 0 0 0 0.48 1.00 -8469 TMEM70 transmembrane protein 70 153160 1 1 1 1 0 0 0 0 1 0 0.48 1.00 -8470 EIF4E1B eukaryotic translation initiation factor 4E family member 1B 156784 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -8471 VPS8 vacuolar protein sorting 8 homolog (S. cerevisiae) 925888 10 6 10 0 0 6 4 0 0 0 0.48 1.00 -8472 NOS1 nitric oxide synthase 1 (neuronal) 989156 11 8 11 9 4 7 0 0 0 0 0.48 1.00 -8473 GRIK1 glutamate receptor, ionotropic, kainate 1 668368 5 5 5 6 2 2 1 0 0 0 0.48 1.00 -8474 YIPF3 Yip1 domain family, member 3 242576 2 2 2 0 1 0 1 0 0 0 0.48 1.00 -8475 MRPS22 mitochondrial ribosomal protein S22 249760 2 2 2 0 0 0 1 0 1 0 0.48 1.00 -8476 PEAR1 platelet endothelial aggregation receptor 1 699032 5 5 5 1 2 2 0 1 0 0 0.48 1.00 -8477 ZNF789 zinc finger protein 789 299264 4 2 4 0 1 2 0 0 1 0 0.48 1.00 -8478 PID1 phosphotyrosine interaction domain containing 1 141568 1 1 1 4 0 1 0 0 0 0 0.48 1.00 -8479 GJD4 gap junction protein, delta 4, 40.1kDa 140484 2 2 2 1 2 0 0 0 0 0 0.48 1.00 -8480 DCAF12L1 295148 3 3 3 1 1 1 1 0 0 0 0.48 1.00 -8481 TAAR8 trace amine associated receptor 8 231392 2 2 2 0 0 1 1 0 0 0 0.48 1.00 -8482 DCDC2B doublecortin domain containing 2B 229664 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8483 DOCK11 dedicator of cytokinesis 11 1417472 10 7 10 7 2 4 3 0 1 0 0.48 1.00 -8484 HHIP hedgehog interacting protein 482720 5 4 5 0 1 0 4 0 0 0 0.48 1.00 -8485 PIR pirin (iron-binding nuclear protein) 203616 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8486 CWC15 CWC15 homolog (S. cerevisiae) 145568 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -8487 PPP5C protein phosphatase 5, catalytic subunit 341716 4 4 4 2 1 2 0 0 1 0 0.48 1.00 -8488 FAM3B family with sequence similarity 3, member B 160608 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -8489 TRAPPC6B trafficking protein particle complex 6B 112224 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -8490 BLOC1S1 biogenesis of lysosome-related organelles complex-1, subunit 1 88256 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -8491 SLC1A7 solute carrier family 1 (glutamate transporter), member 7 383584 2 2 2 2 0 0 0 0 2 0 0.48 1.00 -8492 JAKMIP3 janus kinase and microtubule interacting protein 3 446264 6 5 6 1 4 1 1 0 0 0 0.48 1.00 -8493 HDAC3 histone deacetylase 3 301728 2 2 2 0 1 0 1 0 0 0 0.48 1.00 -8494 RNASE8 ribonuclease, RNase A family, 8 105056 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -8495 PITPNM3 PITPNM family member 3 617384 8 7 8 1 2 5 0 1 0 0 0.48 1.00 -8496 BST2 bone marrow stromal cell antigen 2 125216 1 1 1 1 1 0 0 0 0 0 0.48 1.00 -8497 MDM4 Mdm4 p53 binding protein homolog (mouse) 329252 3 3 3 0 2 0 1 0 0 0 0.48 1.00 -8498 KIAA0196 KIAA0196 804608 4 4 4 3 0 1 2 0 1 0 0.49 1.00 -8499 ZNF323 zinc finger protein 323 276024 2 2 2 0 2 0 0 0 0 0 0.49 1.00 -8500 KPNA4 karyopherin alpha 4 (importin alpha 3) 362888 3 3 2 1 2 1 0 0 0 0 0.49 1.00 -8501 LAMA4 laminin, alpha 4 1289040 11 9 10 5 3 4 3 0 1 0 0.49 1.00 -8502 IFNGR1 interferon gamma receptor 1 335552 3 3 3 0 1 1 1 0 0 0 0.49 1.00 -8503 HPS3 Hermansky-Pudlak syndrome 3 666848 5 5 4 1 3 1 0 0 1 0 0.49 1.00 -8504 WNT16 wingless-type MMTV integration site family, member 16 261052 2 2 2 1 0 1 0 0 1 0 0.49 1.00 -8505 C5orf15 chromosome 5 open reading frame 15 178752 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -8506 HAUS2 150776 1 1 1 1 0 1 0 0 0 0 0.49 1.00 -8507 NUMBL numb homolog (Drosophila)-like 296720 3 3 3 2 2 1 0 0 0 0 0.49 1.00 -8508 RFESD Rieske (Fe-S) domain containing 109088 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -8509 MEP1B meprin A, beta 485184 4 4 4 2 1 0 3 0 0 0 0.49 1.00 -8510 KLHL34 kelch-like 34 (Drosophila) 252072 1 1 1 2 0 0 0 0 1 0 0.49 1.00 -8511 PSMD12 proteasome (prosome, macropain) 26S subunit, non-ATPase, 12 315868 4 3 3 0 2 1 0 0 1 0 0.49 1.00 -8512 CD69 CD69 molecule 138880 1 1 1 2 0 1 0 0 0 0 0.49 1.00 -8513 TUBA4A tubulin, alpha 4a 304360 3 3 3 0 1 2 0 0 0 0 0.49 1.00 -8514 PRC1 protein regulator of cytokinesis 1 430752 4 3 4 3 1 1 0 0 2 0 0.49 1.00 -8515 SRFBP1 serum response factor binding protein 1 296128 4 2 4 1 0 2 1 0 1 0 0.49 1.00 -8516 UCHL5 ubiquitin carboxyl-terminal hydrolase L5 231616 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -8517 BBS10 Bardet-Biedl syndrome 10 488320 2 2 2 2 0 2 0 0 0 0 0.49 1.00 -8518 CCKAR cholecystokinin A receptor 292768 3 3 3 2 1 1 1 0 0 0 0.49 1.00 -8519 IL20RB interleukin 20 receptor beta 215936 1 1 1 2 0 1 0 0 0 0 0.49 1.00 -8520 AKR1D1 aldo-keto reductase family 1, member D1 (delta 4-3-ketosteroid-5-beta-reductase) 227808 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -8521 DAK dihydroxyacetone kinase 2 homolog (S. cerevisiae) 374048 4 4 4 1 2 2 0 0 0 0 0.49 1.00 -8522 TEX13B testis expressed 13B 212128 2 2 2 2 2 0 0 0 0 0 0.49 1.00 -8523 SPARCL1 SPARC-like 1 (mast9, hevin) 455840 3 3 3 2 1 1 1 0 0 0 0.49 1.00 -8524 ABHD4 abhydrolase domain containing 4 233096 3 2 3 0 3 0 0 0 0 0 0.49 1.00 -8525 ARAP1 866580 7 6 7 5 4 1 1 0 1 0 0.49 1.00 -8526 AVPR1A arginine vasopressin receptor 1A 267820 4 4 4 2 3 0 0 0 1 0 0.49 1.00 -8527 ITCH itchy E3 ubiquitin protein ligase homolog (mouse) 600544 3 3 3 0 1 1 0 0 1 0 0.49 1.00 -8528 TMCO6 transmembrane and coiled-coil domains 6 319792 3 3 3 1 2 1 0 0 0 0 0.49 1.00 -8529 ORM1 orosomucoid 1 140984 2 2 2 2 2 0 0 0 0 0 0.49 1.00 -8530 ZBTB20 zinc finger and BTB domain containing 20 453600 5 5 5 3 3 1 0 0 1 0 0.49 1.00 -8531 OR13H1 olfactory receptor, family 13, subfamily H, member 1 208544 3 2 3 0 1 0 2 0 0 0 0.49 1.00 -8532 KIF13B kinesin family member 13B 1081444 10 8 10 3 2 5 1 1 1 0 0.49 1.00 -8533 CCDC126 coiled-coil domain containing 126 96544 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -8534 KIF3B kinesin family member 3B 509824 4 4 4 1 0 2 1 0 1 0 0.49 1.00 -8535 SYNM 870776 7 6 7 1 1 0 2 0 4 0 0.49 1.00 -8536 PYDC1 PYD (pyrin domain) containing 1 56672 2 1 2 0 2 0 0 0 0 0 0.49 1.00 -8537 NDUFS5 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) 73696 2 1 2 0 1 1 0 0 0 0 0.49 1.00 -8538 TTLL6 tubulin tyrosine ligase-like family, member 6 392448 3 3 3 2 0 2 1 0 0 0 0.49 1.00 -8539 UBE2D4 ubiquitin-conjugating enzyme E2D 4 (putative) 105560 1 1 1 1 1 0 0 0 0 0 0.49 1.00 -8540 SPP1 secreted phosphoprotein 1 (osteopontin, bone sialoprotein I, early T-lymphocyte activation 1) 217056 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -8541 COPB2 coatomer protein complex, subunit beta 2 (beta prime) 629216 5 5 5 0 1 3 1 0 0 0 0.49 1.00 -8542 ATP5S ATP synthase, H+ transporting, mitochondrial F0 complex, subunit s (factor B) 151872 1 1 1 1 0 1 0 0 0 0 0.49 1.00 -8543 CYGB cytoglobin 127584 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -8544 ALCAM activated leukocyte cell adhesion molecule 405888 2 2 2 1 0 0 1 0 1 0 0.49 1.00 -8545 OR4C3 olfactory receptor, family 4, subfamily C, member 3 222656 2 2 2 0 0 2 0 0 0 0 0.49 1.00 -8546 SLC35D3 solute carrier family 35, member D3 202628 2 2 2 1 1 1 0 0 0 0 0.49 1.00 -8547 C14orf129 chromosome 14 open reading frame 129 95872 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -8548 RPS15A ribosomal protein S15a 91616 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -8549 GALNT1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 1 (GalNAc-T1) 386176 3 2 3 0 1 0 1 0 1 0 0.49 1.00 -8550 PRPF8 PRP8 pre-mRNA processing factor 8 homolog (S. cerevisiae) 1598688 11 10 11 2 5 3 1 0 2 0 0.49 1.00 -8551 USP21 ubiquitin specific peptidase 21 391104 4 4 4 1 1 2 1 0 0 0 0.49 1.00 -8552 FREM1 FRAS1 related extracellular matrix 1 1481464 16 9 16 7 4 7 2 1 2 0 0.49 1.00 -8553 OR2AG2 olfactory receptor, family 2, subfamily AG, member 2 213920 1 1 1 1 1 0 0 0 0 0 0.49 1.00 -8554 RPL32 ribosomal protein L32 94080 1 1 1 1 1 0 0 0 0 0 0.49 1.00 -8555 OR5M1 olfactory receptor, family 5, subfamily M, member 1 212704 2 2 2 0 1 0 1 0 0 0 0.49 1.00 -8556 PAQR7 progestin and adipoQ receptor family member VII 231728 2 2 2 0 1 0 0 0 1 0 0.49 1.00 -8557 PLS1 plastin 1 (I isoform) 436800 2 2 2 4 0 0 2 0 0 0 0.49 1.00 -8558 ZNF511 zinc finger protein 511 131180 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -8559 HOXB7 homeobox B7 96572 1 1 1 1 1 0 0 0 0 0 0.49 1.00 -8560 SHF Src homology 2 domain containing F 271344 3 3 3 0 3 0 0 0 0 0 0.49 1.00 -8561 C9orf106 chromosome 9 open reading frame 106 137212 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -8562 FAM45A family with sequence similarity 45, member A 235424 2 2 2 0 1 1 0 0 0 0 0.49 1.00 -8563 FAM21B family with sequence similarity 21, member B 479124 2 2 2 1 0 0 0 0 2 0 0.49 1.00 -8564 NQO1 NAD(P)H dehydrogenase, quinone 1 190176 1 1 1 1 1 0 0 0 0 0 0.49 1.00 -8565 VIL1 villin 1 573440 4 4 4 0 1 2 0 0 1 0 0.49 1.00 -8566 ZMYM1 zinc finger, MYM-type 1 768180 4 4 4 1 0 3 0 0 1 0 0.49 1.00 -8567 GEMIN5 gem (nuclear organelle) associated protein 5 1021884 9 7 9 1 2 2 5 0 0 0 0.49 1.00 -8568 MAPK14 mitogen-activated protein kinase 14 284032 3 3 3 1 1 2 0 0 0 0 0.49 1.00 -8569 GRIN3A glutamate receptor, ionotropic, N-methyl-D-aspartate 3A 688800 6 5 6 6 3 3 0 0 0 0 0.49 1.00 -8570 GPR176 G protein-coupled receptor 176 319960 2 2 2 1 1 1 0 0 0 0 0.49 1.00 -8571 OR4K17 olfactory receptor, family 4, subfamily K, member 17 232064 3 2 3 1 0 2 1 0 0 0 0.49 1.00 -8572 PDE4A phosphodiesterase 4A, cAMP-specific (phosphodiesterase E2 dunce homolog, Drosophila) 580076 4 4 4 0 1 2 0 0 1 0 0.49 1.00 -8573 YAF2 YY1 associated factor 2 112140 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -8574 INHA inhibin, alpha 234892 2 2 2 0 0 1 1 0 0 0 0.49 1.00 -8575 CPA4 carboxypeptidase A4 293440 2 2 2 1 0 0 1 0 1 0 0.49 1.00 -8576 MAP1LC3C microtubule-associated protein 1 light chain 3 gamma 103040 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -8577 STK38L serine/threonine kinase 38 like 324128 3 3 3 0 0 1 2 0 0 0 0.49 1.00 -8578 NUDT16L1 nudix (nucleoside diphosphate linked moiety X)-type motif 16-like 1 90916 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -8579 LYST lysosomal trafficking regulator 2600640 24 15 24 4 6 9 7 0 2 0 0.49 1.00 -8580 CDKL3 cyclin-dependent kinase-like 3 385528 3 3 3 2 1 1 1 0 0 0 0.49 1.00 -8581 ZNF514 zinc finger protein 514 272160 2 2 2 2 0 2 0 0 0 0 0.49 1.00 -8582 BCAS1 breast carcinoma amplified sequence 1 402976 3 3 3 0 0 3 0 0 0 0 0.49 1.00 -8583 RSC1A1 regulatory solute carrier protein, family 1, member 1 416192 2 2 2 1 1 0 0 0 1 0 0.49 1.00 -8584 GTPBP8 GTP-binding protein 8 (putative) 193536 1 1 1 1 0 0 0 0 1 0 0.49 1.00 -8585 CD1B CD1b molecule 229824 1 1 1 1 0 1 0 0 0 0 0.49 1.00 -8586 DCUN1D4 DCN1, defective in cullin neddylation 1, domain containing 4 (S. cerevisiae) 200256 1 1 1 1 0 1 0 0 0 0 0.49 1.00 -8587 GPLD1 glycosylphosphatidylinositol specific phospholipase D1 596600 6 5 5 5 4 0 2 0 0 0 0.49 1.00 -8588 IL6R interleukin 6 receptor 304192 3 3 3 1 2 1 0 0 0 0 0.49 1.00 -8589 MRPS18B mitochondrial ribosomal protein S18B 129584 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -8590 AK7 adenylate kinase 7 500344 6 4 6 3 3 1 2 0 0 0 0.49 1.00 -8591 PRR23B 143892 3 3 3 0 3 0 0 0 0 0 0.49 1.00 -8592 CSNK1A1 casein kinase 1, alpha 1 254312 2 2 2 0 2 0 0 0 0 0 0.49 1.00 -8593 TIMM50 translocase of inner mitochondrial membrane 50 homolog (S. cerevisiae) 306996 5 4 5 0 3 2 0 0 0 0 0.49 1.00 -8594 OR13C2 olfactory receptor, family 13, subfamily C, member 2 215264 4 2 4 0 0 4 0 0 0 0 0.49 1.00 -8595 KCNJ8 potassium inwardly-rectifying channel, subfamily J, member 8 287392 4 3 4 2 3 0 0 0 1 0 0.49 1.00 -8596 ATP6V0C ATPase, H+ transporting, lysosomal 16kDa, V0 subunit c 93924 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -8597 C3orf72 85064 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -8598 KLF17 Kruppel-like factor 17 264684 1 1 1 0 0 0 0 0 1 0 0.49 1.00 -8599 RNF214 ring finger protein 214 480844 5 4 5 1 0 3 1 0 1 0 0.49 1.00 -8600 NPTN neuroplastin 267316 2 2 2 0 1 1 0 0 0 0 0.49 1.00 -8601 TET2 tet oncogene family member 2 784448 6 4 6 5 1 2 0 0 1 2 0.49 1.00 -8602 SV2C synaptic vesicle glycoprotein 2C 499968 4 4 4 1 0 1 3 0 0 0 0.49 1.00 -8603 C8orf85 77056 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -8604 TSPAN14 tetraspanin 14 167384 1 1 1 1 0 0 1 0 0 0 0.49 1.00 -8605 MEX3C mex-3 homolog C (C. elegans) 304736 2 2 2 0 0 1 1 0 0 0 0.49 1.00 -8606 CHAT choline acetyltransferase 472184 6 5 6 5 2 3 1 0 0 0 0.49 1.00 -8607 C10orf28 chromosome 10 open reading frame 28 528864 3 3 3 1 0 1 1 0 1 0 0.49 1.00 -8608 DOCK5 dedicator of cytokinesis 5 1265768 11 10 10 2 5 4 1 0 1 0 0.49 1.00 -8609 HIST1H4A histone cluster 1, H4a 70784 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -8610 NOTCH4 Notch homolog 4 (Drosophila) 975132 7 6 7 3 3 2 0 0 2 0 0.49 1.00 -8611 MIOX myo-inositol oxygenase 166544 1 1 1 0 0 0 0 0 1 0 0.49 1.00 -8612 DISP2 dispatched homolog 2 (Drosophila) 799400 7 7 7 0 5 1 0 0 1 0 0.49 1.00 -8613 GPR52 G protein-coupled receptor 52 244160 3 2 3 0 1 1 1 0 0 0 0.49 1.00 -8614 LIPA lipase A, lysosomal acid, cholesterol esterase (Wolman disease) 276864 1 1 1 1 0 0 0 0 1 0 0.49 1.00 -8615 PDLIM4 PDZ and LIM domain 4 199248 2 2 2 0 1 0 0 0 1 0 0.49 1.00 -8616 ASB3 ankyrin repeat and SOCS box-containing 3 356832 2 2 2 3 0 0 1 1 0 0 0.49 1.00 -8617 ZNF35 zinc finger protein 35 357504 2 2 2 1 1 1 0 0 0 0 0.49 1.00 -8618 PFN2 profilin 2 101440 1 1 1 1 1 0 0 0 0 0 0.49 1.00 -8619 PRSS42 131320 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -8620 LMBR1 limb region 1 homolog (mouse) 339304 2 2 2 0 0 1 0 0 1 0 0.49 1.00 -8621 TMEM147 transmembrane protein 147 153356 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -8622 NEUROD1 neurogenic differentiation 1 240800 3 3 3 3 2 1 0 0 0 0 0.49 1.00 -8623 TEAD4 TEA domain family member 4 301588 3 3 3 0 1 1 1 0 0 0 0.49 1.00 -8624 TLR4 toll-like receptor 4 567168 10 4 10 2 2 2 5 0 1 0 0.49 1.00 -8625 TRAPPC9 768400 7 7 7 1 2 3 2 0 0 0 0.49 1.00 -8626 DNAJC2 433080 2 2 2 4 1 0 0 0 1 0 0.49 1.00 -8627 FANCC Fanconi anemia, complementation group C 388192 3 3 3 1 2 0 1 0 0 0 0.50 1.00 -8628 SORL1 sortilin-related receptor, L(DLR class) A repeats-containing 1467312 11 10 11 1 5 2 4 0 0 0 0.50 1.00 -8629 SLC5A7 solute carrier family 5 (choline transporter), member 7 397600 3 3 3 2 0 3 0 0 0 0 0.50 1.00 -8630 PRSS22 protease, serine, 22 182916 2 2 2 0 0 1 0 1 0 0 0.50 1.00 -8631 NEFM neurofilament, medium polypeptide 150kDa 518160 5 5 5 0 2 3 0 0 0 0 0.50 1.00 -8632 ZDHHC20 zinc finger, DHHC-type containing 20 210368 3 2 3 0 0 1 2 0 0 0 0.50 1.00 -8633 TMEM35 transmembrane protein 35 114688 1 1 1 2 0 1 0 0 0 0 0.50 1.00 -8634 PCDH12 protocadherin 12 787304 8 7 8 5 4 4 0 0 0 0 0.50 1.00 -8635 PITPNA phosphatidylinositol transfer protein, alpha 183904 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8636 PEX11B peroxisomal biogenesis factor 11B 174416 2 2 2 0 1 0 1 0 0 0 0.50 1.00 -8637 ARHGEF10 Rho guanine nucleotide exchange factor (GEF) 10 894012 9 8 9 5 2 5 1 0 1 0 0.50 1.00 -8638 LRRC67 156736 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -8639 PCYOX1 prenylcysteine oxidase 1 345408 3 3 3 0 2 0 1 0 0 0 0.50 1.00 -8640 HMGCL 3-hydroxymethyl-3-methylglutaryl-Coenzyme A lyase (hydroxymethylglutaricaciduria) 212800 1 1 1 1 1 0 0 0 0 0 0.50 1.00 -8641 TRIB1 tribbles homolog 1 (Drosophila) 170380 2 2 2 1 0 2 0 0 0 0 0.50 1.00 -8642 MAG myelin associated glycoprotein 416264 7 5 7 4 3 3 0 0 1 0 0.50 1.00 -8643 TFAP2C transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma) 263844 2 2 2 0 0 0 2 0 0 0 0.50 1.00 -8644 PHF10 PHD finger protein 10 287392 2 2 2 0 0 0 2 0 0 0 0.50 1.00 -8645 SPIN2B spindlin family, member 2B 136416 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8646 ADCYAP1R1 adenylate cyclase activating polypeptide 1 (pituitary) receptor type I 328608 2 2 2 2 1 0 1 0 0 0 0.50 1.00 -8647 BCL2L14 BCL2-like 14 (apoptosis facilitator) 243936 2 2 2 0 0 0 2 0 0 0 0.50 1.00 -8648 ZNF639 zinc finger protein 639 327864 2 2 2 0 1 0 1 0 0 0 0.50 1.00 -8649 ARHGDIG Rho GDP dissociation inhibitor (GDI) gamma 106036 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -8650 ANKRA2 ankyrin repeat, family A (RFXANK-like), 2 218176 2 2 2 1 1 0 1 0 0 0 0.50 1.00 -8651 PCNX pecanex homolog (Drosophila) 1599232 12 9 12 2 4 3 2 0 3 0 0.50 1.00 -8652 TNRC6C trinucleotide repeat containing 6C 1028280 7 7 7 3 3 3 0 0 1 0 0.50 1.00 -8653 C1orf93 chromosome 1 open reading frame 93 93520 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8654 ZNF280D zinc finger protein 280D 678720 4 4 4 2 1 1 1 0 1 0 0.50 1.00 -8655 TUBGCP4 tubulin, gamma complex associated protein 4 464352 5 4 5 0 3 2 0 0 0 0 0.50 1.00 -8656 ITGA4 integrin, alpha 4 (antigen CD49D, alpha 4 subunit of VLA-4 receptor) 716744 8 5 6 1 2 4 2 0 0 0 0.50 1.00 -8657 HSD17B13 hydroxysteroid (17-beta) dehydrogenase 13 208544 1 1 1 2 0 0 1 0 0 0 0.50 1.00 -8658 TM4SF1 transmembrane 4 L six family member 1 140896 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8659 KIAA1841 KIAA1841 492800 3 3 3 1 1 1 1 0 0 0 0.50 1.00 -8660 HIST1H2AE histone cluster 1, H2ae 88928 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8661 FBXO48 106624 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -8662 SMYD1 SET and MYND domain containing 1 338776 3 3 3 3 1 1 1 0 0 0 0.50 1.00 -8663 CAT catalase 366328 3 3 3 3 2 0 1 0 0 0 0.50 1.00 -8664 FZD10 frizzled homolog 10 (Drosophila) 309288 6 5 6 1 3 1 1 1 0 0 0.50 1.00 -8665 SPANXN2 SPANX family, member N2 123424 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8666 LOC729991-MEF2B 176288 1 1 1 0 0 0 0 0 1 0 0.50 1.00 -8667 TRMT2B 350112 2 2 2 1 0 0 2 0 0 0 0.50 1.00 -8668 STK33 serine/threonine kinase 33 345952 2 2 2 0 0 1 0 0 1 0 0.50 1.00 -8669 SERPINB5 serpin peptidase inhibitor, clade B (ovalbumin), member 5 258048 2 1 2 0 0 2 0 0 0 0 0.50 1.00 -8670 CHRNG cholinergic receptor, nicotinic, gamma 355236 3 3 3 1 2 0 0 1 0 0 0.50 1.00 -8671 METTL2B methyltransferase like 2B 262752 2 2 2 0 0 1 1 0 0 0 0.50 1.00 -8672 TMED8 transmembrane emp24 protein transport domain containing 8 197120 2 2 2 1 1 0 1 0 0 0 0.50 1.00 -8673 HIST1H1C histone cluster 1, H1c 144116 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8674 GEMIN8 gem (nuclear organelle) associated protein 8 165984 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -8675 GABPA GA binding protein transcription factor, alpha subunit 60kDa 313656 4 3 4 1 2 2 0 0 0 0 0.50 1.00 -8676 PCDHGB6 protocadherin gamma subfamily B, 6 622344 11 6 11 0 4 3 3 0 1 0 0.50 1.00 -8677 MIA3 melanoma inhibitory activity family, member 3 1276576 14 8 13 1 4 6 0 0 2 2 0.50 1.00 -8678 KCNE4 potassium voltage-gated channel, Isk-related family, member 4 111020 1 1 1 1 1 0 0 0 0 0 0.50 1.00 -8679 CYB5A cytochrome b5 type A (microsomal) 98112 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8680 BSN bassoon (presynaptic cytomatrix protein) 2386916 17 15 17 3 9 4 2 0 2 0 0.50 1.00 -8681 TTLL11 tubulin tyrosine ligase-like family, member 11 230104 2 2 2 4 0 2 0 0 0 0 0.50 1.00 -8682 RAPGEF2 Rap guanine nucleotide exchange factor (GEF) 2 1013376 13 9 13 1 8 4 1 0 0 0 0.50 1.00 -8683 CEACAM8 carcinoembryonic antigen-related cell adhesion molecule 8 239680 2 2 2 3 0 2 0 0 0 0 0.50 1.00 -8684 MAN2A2 mannosidase, alpha, class 2A, member 2 790088 5 5 5 4 1 1 2 0 1 0 0.50 1.00 -8685 AMBRA1 autophagy/beclin-1 regulator 1 828576 4 4 4 1 1 1 1 0 1 0 0.50 1.00 -8686 ALOXE3 arachidonate lipoxygenase 3 476736 5 5 5 3 3 0 2 0 0 0 0.50 1.00 -8687 MYO5C myosin VC 1201088 11 9 11 1 4 2 3 0 2 0 0.50 1.00 -8688 RHOF ras homolog gene family, member F (in filopodia) 98664 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -8689 PRCP prolylcarboxypeptidase (angiotensinase C) 357056 2 2 2 0 0 0 1 0 1 0 0.50 1.00 -8690 SIT1 signaling threshold regulating transmembrane adaptor 1 119728 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8691 HIAT1 hippocampus abundant transcript 1 333496 2 2 2 0 0 0 1 0 1 0 0.50 1.00 -8692 MAGIX MAGI family member, X-linked 149344 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8693 BRD8 bromodomain containing 8 919072 7 6 7 0 3 2 1 0 1 0 0.50 1.00 -8694 TRAF7 TNF receptor-associated factor 7 396936 2 2 2 2 0 0 1 0 1 0 0.50 1.00 -8695 ABHD3 abhydrolase domain containing 3 275964 3 2 3 1 0 1 1 0 1 0 0.50 1.00 -8696 PDRG1 p53 and DNA damage regulated 1 94528 1 1 1 1 0 0 1 0 0 0 0.50 1.00 -8697 ENC1 ectodermal-neural cortex (with BTB-like domain) 397376 3 3 3 1 3 0 0 0 0 0 0.50 1.00 -8698 NEK6 NIMA (never in mitosis gene a)-related kinase 6 238560 2 2 2 2 0 0 2 0 0 0 0.50 1.00 -8699 SEPT7 septin 7 254732 1 1 1 1 0 0 1 0 0 0 0.50 1.00 -8700 SLC22A17 solute carrier family 22, member 17 280800 2 2 2 1 0 0 1 0 1 0 0.50 1.00 -8701 ORAI3 ORAI calcium release-activated calcium modulator 3 170996 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -8702 TSPAN15 tetraspanin 15 170864 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -8703 MNAT1 menage a trois homolog 1, cyclin H assembly factor (Xenopus laevis) 215488 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8704 AQP12A aquaporin 12A 90904 1 1 1 1 1 0 0 0 0 0 0.50 1.00 -8705 EXOSC2 exosome component 2 205632 2 2 2 1 1 0 0 1 0 0 0.50 1.00 -8706 FTSJ2 FtsJ homolog 2 (E. coli) 167188 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8707 ELOVL7 ELOVL family member 7, elongation of long chain fatty acids (yeast) 195776 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -8708 PSPH phosphoserine phosphatase 156352 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8709 NPY5R neuropeptide Y receptor Y5 300608 2 2 2 2 0 1 1 0 0 0 0.50 1.00 -8710 HNRNPCL1 198464 3 2 3 2 2 1 0 0 0 0 0.50 1.00 -8711 JOSD1 Josephin domain containing 1 140000 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8712 AMMECR1 Alport syndrome, mental retardation, midface hypoplasia and elliptocytosis chromosomal region, gene 1 170244 1 1 1 0 0 0 0 0 1 0 0.50 1.00 -8713 PDLIM1 PDZ and LIM domain 1 (elfin) 217532 3 2 3 2 0 2 1 0 0 0 0.50 1.00 -8714 MIA2 melanoma inhibitory activity 2 444612 6 3 6 0 2 3 0 0 1 0 0.50 1.00 -8715 ERAS ES cell expressed Ras 140960 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8716 LRIT2 leucine-rich repeat, immunoglobulin-like and transmembrane domains 2 372876 3 3 3 0 1 1 1 0 0 0 0.50 1.00 -8717 ST6GALNAC6 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 229236 3 3 3 0 2 0 1 0 0 0 0.50 1.00 -8718 KLC1 kinesin light chain 1 391384 2 2 2 1 1 0 0 0 1 0 0.50 1.00 -8719 GIMAP1 GTPase, IMAP family member 1 184800 2 2 2 1 1 1 0 0 0 0 0.50 1.00 -8720 PROS1 protein S (alpha) 468384 6 4 6 1 1 3 1 0 1 0 0.50 1.00 -8721 MSH2 mutS homolog 2, colon cancer, nonpolyposis type 1 (E. coli) 619416 7 5 7 1 1 2 3 0 1 0 0.50 1.00 -8722 SPTLC1 serine palmitoyltransferase, long chain base subunit 1 332304 4 3 4 0 1 2 1 0 0 0 0.50 1.00 -8723 XPA xeroderma pigmentosum, complementation group A 168280 1 1 1 0 0 0 0 0 1 0 0.50 1.00 -8724 KIAA1919 KIAA1919 352216 3 2 3 0 0 1 1 0 1 0 0.50 1.00 -8725 GPR55 G protein-coupled receptor 55 215852 1 1 1 0 0 0 0 1 0 0 0.50 1.00 -8726 POLR1E polymerase (RNA) I polypeptide E, 53kDa 288504 2 2 2 1 1 1 0 0 0 0 0.50 1.00 -8727 COL9A2 collagen, type IX, alpha 2 372544 2 2 2 0 0 0 0 1 1 0 0.50 1.00 -8728 RHEBL1 Ras homolog enriched in brain like 1 130816 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -8729 OMG oligodendrocyte myelin glycoprotein 297248 3 2 3 1 0 1 2 0 0 0 0.50 1.00 -8730 CEPT1 choline/ethanolamine phosphotransferase 1 287392 1 1 1 1 0 0 0 0 1 0 0.50 1.00 -8731 CTNND1 catenin (cadherin-associated protein), delta 1 665064 6 4 6 1 1 1 1 0 3 0 0.50 1.00 -8732 H2AFV H2A histone family, member V 95956 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8733 RPP38 ribonuclease P/MRP 38kDa subunit 189728 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8734 KRTAP9-2 keratin associated protein 9-2 118496 1 1 1 1 1 0 0 0 0 0 0.50 1.00 -8735 RAB38 RAB38, member RAS oncogene family 145152 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -8736 TCEAL2 transcription elongation factor A (SII)-like 2 153976 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -8737 ZNF517 zinc finger protein 517 229608 2 2 2 0 0 1 0 0 1 0 0.50 1.00 -8738 ASPDH 110008 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8739 LRRIQ4 381388 4 4 4 2 0 0 4 0 0 0 0.50 1.00 -8740 KCNU1 potassium channel, subfamily U, member 1 781624 12 7 12 3 2 7 3 0 0 0 0.50 1.00 -8741 RC3H1 ring finger and CCCH-type zinc finger domains 1 779072 7 6 7 0 2 4 1 0 0 0 0.50 1.00 -8742 CXCL6 chemokine (C-X-C motif) ligand 6 (granulocyte chemotactic protein 2) 80864 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -8743 SRCRB4D scavenger receptor cysteine rich domain containing, group B (4 domains) 295616 2 2 2 0 0 0 1 0 1 0 0.50 1.00 -8744 DZIP3 DAZ interacting protein 3, zinc finger 840224 6 6 6 2 1 3 2 0 0 0 0.50 1.00 -8745 MRPL18 mitochondrial ribosomal protein L18 124808 2 1 2 0 1 0 1 0 0 0 0.50 1.00 -8746 MLH3 mutL homolog 3 (E. coli) 987840 8 6 8 1 1 3 2 0 2 0 0.50 1.00 -8747 TM9SF4 transmembrane 9 superfamily protein member 4 438144 3 3 3 1 2 1 0 0 0 0 0.50 1.00 -8748 LBR lamin B receptor 425600 5 4 5 0 2 1 1 0 1 0 0.50 1.00 -8749 CDHR5 480564 4 4 4 2 3 0 0 0 1 0 0.50 1.00 -8750 TPRN 206976 1 1 1 0 0 0 0 0 1 0 0.50 1.00 -8751 KDELC1 KDEL (Lys-Asp-Glu-Leu) containing 1 346976 3 3 2 1 0 3 0 0 0 0 0.50 1.00 -8752 SCNM1 sodium channel modifier 1 161504 1 1 1 1 0 0 1 0 0 0 0.50 1.00 -8753 DSCR3 Down syndrome critical region gene 3 207424 2 2 2 1 0 0 1 0 1 0 0.50 1.00 -8754 SEC14L1 SEC14-like 1 (S. cerevisiae) 498820 4 4 4 1 2 0 1 0 1 0 0.50 1.00 -8755 MCAM melanoma cell adhesion molecule 403564 3 3 3 1 3 0 0 0 0 0 0.50 1.00 -8756 IL13 interleukin 13 102368 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -8757 C20orf7 chromosome 20 open reading frame 7 246428 2 2 2 0 1 0 1 0 0 0 0.51 1.00 -8758 UNC5A unc-5 homolog A (C. elegans) 471884 2 2 2 0 0 0 1 0 1 0 0.51 1.00 -8759 FAM70B family with sequence similarity 70, member B 216272 2 2 2 2 0 1 0 0 1 0 0.51 1.00 -8760 PARP4 poly (ADP-ribose) polymerase family, member 4 1163288 10 7 10 5 4 3 2 0 1 0 0.51 1.00 -8761 PELI3 pellino homolog 3 (Drosophila) 269892 4 3 4 0 2 1 0 0 1 0 0.51 1.00 -8762 F2 coagulation factor II (thrombin) 411636 4 4 4 1 1 1 2 0 0 0 0.51 1.00 -8763 BTBD8 BTB (POZ) domain containing 8 262752 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8764 ADORA2B adenosine A2b receptor 215068 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8765 HSPA6 heat shock 70kDa protein 6 (HSP70B') 396968 3 3 3 2 1 1 1 0 0 0 0.51 1.00 -8766 MAN2C1 mannosidase, alpha, class 2C, member 1 678844 6 6 6 0 2 1 2 0 1 0 0.51 1.00 -8767 TNFRSF11A tumor necrosis factor receptor superfamily, member 11a, NFKB activator 340004 3 3 3 3 0 2 1 0 0 0 0.51 1.00 -8768 CYP27A1 cytochrome P450, family 27, subfamily A, polypeptide 1 347760 3 3 3 1 0 1 1 0 1 0 0.51 1.00 -8769 C6orf127 chromosome 6 open reading frame 127 78416 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8770 PDE6D phosphodiesterase 6D, cGMP-specific, rod, delta 103936 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8771 DPP7 dipeptidyl-peptidase 7 243968 2 2 2 0 1 0 0 0 1 0 0.51 1.00 -8772 GNL3L guanine nucleotide binding protein-like 3 (nucleolar)-like 404128 4 4 4 1 1 3 0 0 0 0 0.51 1.00 -8773 TUBB2B tubulin, beta 2B 213864 3 3 3 1 2 1 0 0 0 0 0.51 1.00 -8774 ALKBH2 alkB, alkylation repair homolog 2 (E. coli) 178752 1 1 1 0 0 0 0 0 1 0 0.51 1.00 -8775 GRAMD1B GRAM domain containing 1B 426600 5 4 5 0 3 1 1 0 0 0 0.51 1.00 -8776 ARNT2 aryl-hydrocarbon receptor nuclear translocator 2 491680 5 5 5 0 3 1 1 0 0 0 0.51 1.00 -8777 GRM4 glutamate receptor, metabotropic 4 608972 7 6 7 2 3 2 1 0 1 0 0.51 1.00 -8778 EVI2B ecotropic viral integration site 2B 302624 2 1 2 0 0 0 1 0 1 0 0.51 1.00 -8779 CLRN3 clarin 3 155232 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -8780 OSGIN2 oxidative stress induced growth inhibitor family member 2 346752 2 2 2 2 0 0 2 0 0 0 0.51 1.00 -8781 PIK3R3 phosphoinositide-3-kinase, regulatory subunit 3 (gamma) 319424 4 2 4 1 2 1 1 0 0 0 0.51 1.00 -8782 RG9MTD1 RNA (guanine-9-) methyltransferase domain containing 1 272384 2 2 2 0 0 2 0 0 0 0 0.51 1.00 -8783 C7orf64 251776 3 3 3 1 2 0 1 0 0 0 0.51 1.00 -8784 INA internexin neuronal intermediate filament protein, alpha 180596 2 2 2 0 0 2 0 0 0 0 0.51 1.00 -8785 ATXN2L ataxin 2-like 748916 7 6 7 1 3 2 0 0 2 0 0.51 1.00 -8786 PRPF31 PRP31 pre-mRNA processing factor 31 homolog (S. cerevisiae) 295000 2 2 2 0 1 0 0 0 1 0 0.51 1.00 -8787 TTC9B tetratricopeptide repeat domain 9B 95760 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -8788 WBP4 WW domain binding protein 4 (formin binding protein 21) 262304 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8789 CCHCR1 coiled-coil alpha-helical rod protein 1 430668 5 5 5 0 2 1 2 0 0 0 0.51 1.00 -8790 BAX BCL2-associated X protein 169232 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8791 TMEM63B transmembrane protein 63B 575344 5 5 5 4 1 3 0 0 1 0 0.51 1.00 -8792 OR52B2 olfactory receptor, family 52, subfamily B, member 2 218624 2 2 2 0 1 1 0 0 0 0 0.51 1.00 -8793 N6AMT1 N-6 adenine-specific DNA methyltransferase 1 (putative) 145992 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8794 PUM2 pumilio homolog 2 (Drosophila) 733600 6 4 6 1 1 4 0 0 1 0 0.51 1.00 -8795 NUPR1 69664 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8796 ZNF213 zinc finger protein 213 288764 3 3 3 0 3 0 0 0 0 0 0.51 1.00 -8797 TEAD3 TEA domain family member 3 300480 2 2 2 0 0 0 1 0 1 0 0.51 1.00 -8798 IGF2R insulin-like growth factor 2 receptor 1683360 19 15 19 7 12 3 4 0 0 0 0.51 1.00 -8799 ACAA1 acetyl-Coenzyme A acyltransferase 1 (peroxisomal 3-oxoacyl-Coenzyme A thiolase) 257152 2 2 2 2 0 1 1 0 0 0 0.51 1.00 -8800 ADH1A alcohol dehydrogenase 1A (class I), alpha polypeptide 260736 1 1 1 1 0 0 1 0 0 0 0.51 1.00 -8801 TAS2R19 taste receptor, type 2, member 19 202496 1 1 1 1 0 1 0 0 0 0 0.51 1.00 -8802 GRHL2 grainyhead-like 2 (Drosophila) 435008 2 2 2 4 0 0 0 0 2 0 0.51 1.00 -8803 STRN4 striatin, calmodulin binding protein 4 440580 4 4 4 0 2 1 0 0 1 0 0.51 1.00 -8804 MLL myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila) 2619092 21 13 21 8 8 8 2 0 3 0 0.51 1.00 -8805 MAGEA11 melanoma antigen family A, 11 295456 3 2 3 1 0 2 1 0 0 0 0.51 1.00 -8806 FAM70A family with sequence similarity 70, member A 235728 3 2 3 3 0 1 2 0 0 0 0.51 1.00 -8807 SERPINC1 serpin peptidase inhibitor, clade C (antithrombin), member 1 318752 3 2 3 2 1 2 0 0 0 0 0.51 1.00 -8808 TIFA TRAF-interacting protein with forkhead-associated domain 125216 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8809 CASP3 caspase 3, apoptosis-related cysteine peptidase 192192 2 2 2 1 0 1 1 0 0 0 0.51 1.00 -8810 ZNF207 zinc finger protein 207 343392 1 1 1 0 0 0 0 0 1 0 0.51 1.00 -8811 ZBTB6 zinc finger and BTB domain containing 6 286496 2 2 2 0 0 2 0 0 0 0 0.51 1.00 -8812 OR13C4 olfactory receptor, family 13, subfamily C, member 4 215264 2 2 2 0 0 2 0 0 0 0 0.51 1.00 -8813 NME5 non-metastatic cells 5, protein expressed in (nucleoside-diphosphate kinase) 147616 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -8814 KLF11 Kruppel-like factor 11 338016 2 2 2 0 1 0 1 0 0 0 0.51 1.00 -8815 OR6V1 olfactory receptor, family 6, subfamily V, member 1 211904 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8816 CCNB2 cyclin B2 276192 2 2 2 0 0 2 0 0 0 0 0.51 1.00 -8817 RAD51L3 RAD51-like 3 (S. cerevisiae) 271040 3 3 3 0 1 2 0 0 0 0 0.51 1.00 -8818 RBP2 retinol binding protein 2, cellular 94304 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8819 GBAS glioblastoma amplified sequence 180320 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8820 RPS2 ribosomal protein S2 165844 1 1 1 1 0 0 0 0 1 0 0.51 1.00 -8821 CCDC129 coiled-coil domain containing 129 701920 8 5 8 0 1 5 1 0 1 0 0.51 1.00 -8822 MOGAT2 monoacylglycerol O-acyltransferase 2 230496 1 1 1 1 0 0 0 0 1 0 0.51 1.00 -8823 C10orf47 chromosome 10 open reading frame 47 136264 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8824 TRPV1 transient receptor potential cation channel, subfamily V, member 1 538024 4 4 4 3 3 0 0 0 1 0 0.51 1.00 -8825 GLE1 GLE1 RNA export mediator homolog (yeast) 487648 3 3 3 0 0 2 1 0 0 0 0.51 1.00 -8826 ARHGEF2 rho/rac guanine nucleotide exchange factor (GEF) 2 625244 5 5 5 1 2 2 0 0 1 0 0.51 1.00 -8827 KSR2 kinase suppressor of ras 2 628264 5 4 4 6 1 0 2 0 2 0 0.51 1.00 -8828 GTF3C3 general transcription factor IIIC, polypeptide 3, 102kDa 612192 6 5 6 3 2 2 2 0 0 0 0.51 1.00 -8829 IL1A interleukin 1, alpha 188160 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8830 GANAB glucosidase, alpha; neutral AB 672224 4 4 4 1 2 1 1 0 0 0 0.51 1.00 -8831 COL18A1 collagen, type XVIII, alpha 1 743116 4 4 4 1 0 1 0 0 3 0 0.51 1.00 -8832 SLC30A1 solute carrier family 30 (zinc transporter), member 1 320068 3 2 3 0 0 1 1 0 1 0 0.51 1.00 -8833 TACC1 transforming, acidic coiled-coil containing protein 1 522128 3 3 3 0 3 0 0 0 0 0 0.51 1.00 -8834 ARMC2 armadillo repeat containing 2 598276 6 4 5 2 2 3 0 1 0 0 0.51 1.00 -8835 ZNF622 zinc finger protein 622 324996 3 3 3 0 0 2 1 0 0 0 0.51 1.00 -8836 IRF2 interferon regulatory factor 2 242368 3 2 3 1 1 1 1 0 0 0 0.51 1.00 -8837 LMOD2 leiomodin 2 (cardiac) 326472 3 3 3 2 2 1 0 0 0 0 0.51 1.00 -8838 LYPD2 LY6/PLAUR domain containing 2 72536 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8839 ALDH7A1 aldehyde dehydrogenase 7 family, member A1 374656 3 3 3 1 1 2 0 0 0 0 0.51 1.00 -8840 ATF4 activating transcription factor 4 (tax-responsive enhancer element B67) 223132 1 1 1 1 0 1 0 0 0 0 0.51 1.00 -8841 TMEM100 transmembrane protein 100 91616 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8842 SYCP3 synaptonemal complex protein 3 166432 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -8843 BTD biotinidase 365120 2 2 2 0 1 0 1 0 0 0 0.51 1.00 -8844 ZNF227 zinc finger protein 227 541184 4 4 4 0 0 4 0 0 0 0 0.51 1.00 -8845 URB2 1031100 10 7 10 2 2 6 2 0 0 0 0.51 1.00 -8846 INSC inscuteable homolog (Drosophila) 393656 3 3 3 0 2 0 1 0 0 0 0.51 1.00 -8847 MRS2 MRS2 magnesium homeostasis factor homolog (S. cerevisiae) 303520 2 2 2 0 0 1 0 0 1 0 0.51 1.00 -8848 HECTD3 HECT domain containing 3 530852 5 5 5 2 4 0 1 0 0 0 0.51 1.00 -8849 ECD ecdysoneless homolog (Drosophila) 445088 3 3 3 1 1 1 0 0 1 0 0.51 1.00 -8850 GPR173 G protein-coupled receptor 173 224904 2 2 2 1 1 0 1 0 0 0 0.51 1.00 -8851 POLR3GL polymerase (RNA) III (DNA directed) polypeptide G (32kD)-like 153440 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8852 MALL mal, T-cell differentiation protein-like 87320 1 1 1 2 1 0 0 0 0 0 0.51 1.00 -8853 AGPAT3 1-acylglycerol-3-phosphate O-acyltransferase 3 259252 3 3 3 1 2 1 0 0 0 0 0.51 1.00 -8854 PODXL podocalyxin-like 334888 3 3 3 1 1 0 2 0 0 0 0.51 1.00 -8855 PTPRE protein tyrosine phosphatase, receptor type, E 495572 5 5 5 1 2 2 1 0 0 0 0.51 1.00 -8856 ZNF417 zinc finger protein 417 389508 2 2 2 1 0 0 1 0 1 0 0.51 1.00 -8857 PADI3 peptidyl arginine deiminase, type III 460712 3 3 3 1 1 1 0 1 0 0 0.51 1.00 -8858 TIMM22 translocase of inner mitochondrial membrane 22 homolog (yeast) 128828 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8859 PRKAA1 protein kinase, AMP-activated, alpha 1 catalytic subunit 395360 3 3 3 2 0 3 0 0 0 0 0.51 1.00 -8860 HSD17B2 hydroxysteroid (17-beta) dehydrogenase 2 265216 2 2 2 1 1 0 0 0 1 0 0.51 1.00 -8861 CEP57 centrosomal protein 57kDa 346528 2 2 2 1 0 0 0 0 2 0 0.51 1.00 -8862 EFHD2 EF-hand domain family, member D2 131860 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8863 CCDC55 coiled-coil domain containing 55 378656 2 2 2 1 0 1 1 0 0 0 0.51 1.00 -8864 BAG4 BCL2-associated athanogene 4 267980 2 2 2 0 0 2 0 0 0 0 0.51 1.00 -8865 IL1F6 interleukin 1 family, member 6 (epsilon) 110432 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8866 ATF3 activating transcription factor 3 139328 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8867 KRT1 keratin 1 (epidermolytic hyperkeratosis) 413300 4 4 4 2 1 3 0 0 0 0 0.51 1.00 -8868 IGFBP5 insulin-like growth factor binding protein 5 124936 1 1 1 1 0 1 0 0 0 0 0.51 1.00 -8869 CHST12 carbohydrate (chondroitin 4) sulfotransferase 12 232064 3 3 3 3 1 1 1 0 0 0 0.51 1.00 -8870 GTF2F2 general transcription factor IIF, polypeptide 2, 30kDa 165648 1 1 1 1 0 0 0 0 1 0 0.51 1.00 -8871 C9orf156 chromosome 9 open reading frame 156 296064 3 2 3 2 1 2 0 0 0 0 0.51 1.00 -8872 IGFBP2 insulin-like growth factor binding protein 2, 36kDa 134120 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -8873 PRPS1 phosphoribosyl pyrophosphate synthetase 1 220640 1 1 1 1 1 0 0 0 0 0 0.51 1.00 -8874 PDSS2 prenyl (decaprenyl) diphosphate synthase, subunit 2 275968 2 2 2 2 1 0 1 0 0 0 0.51 1.00 -8875 PAQR3 progestin and adipoQ receptor family member III 215040 2 2 2 1 0 1 1 0 0 0 0.51 1.00 -8876 CCDC8 coiled-coil domain containing 8 356552 3 3 3 1 1 1 1 0 0 0 0.51 1.00 -8877 ATP1A4 ATPase, Na+/K+ transporting, alpha 4 polypeptide 711872 8 7 8 9 4 4 0 0 0 0 0.51 1.00 -8878 PARK7 Parkinson disease (autosomal recessive, early onset) 7 129928 1 1 1 1 1 0 0 0 0 0 0.51 1.00 -8879 RNF138 ring finger protein 138 170360 1 1 1 1 1 0 0 0 0 0 0.51 1.00 -8880 MRPL4 mitochondrial ribosomal protein L4 229264 2 2 2 1 1 0 1 0 0 0 0.51 1.00 -8881 ASB8 ankyrin repeat and SOCS box-containing 8 196896 1 1 1 1 0 1 0 0 0 0 0.51 1.00 -8882 MSX2 msh homeobox 2 106596 1 1 1 2 1 0 0 0 0 0 0.51 1.00 -8883 VPS33A vacuolar protein sorting 33 homolog A (S. cerevisiae) 412832 3 3 3 1 1 0 2 0 0 0 0.51 1.00 -8884 RRAGD Ras-related GTP binding D 241696 1 1 1 3 0 1 0 0 0 0 0.51 1.00 -8885 CSRNP1 371932 4 4 4 1 2 2 0 0 0 0 0.51 1.00 -8886 WNT7A wingless-type MMTV integration site family, member 7A 238784 2 2 2 0 2 0 0 0 0 0 0.51 1.00 -8887 MYH3 myosin, heavy chain 3, skeletal muscle, embryonic 1339296 14 7 14 3 5 4 0 0 5 0 0.51 1.00 -8888 C3orf75 185696 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8889 CCL22 chemokine (C-C motif) ligand 22 65856 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -8890 DPT dermatopontin 139328 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8891 ATG4A ATG4 autophagy related 4 homolog A (S. cerevisiae) 279776 2 2 2 1 0 1 1 0 0 0 0.52 1.00 -8892 SLC22A14 solute carrier family 22, member 14 407848 4 4 4 1 2 1 1 0 0 0 0.52 1.00 -8893 KIAA2018 KIAA2018 1513792 13 8 13 1 2 7 3 0 1 0 0.52 1.00 -8894 TSPAN10 tetraspanin 10 157944 1 1 1 0 0 0 0 0 1 0 0.52 1.00 -8895 ZNF366 zinc finger protein 366 491540 4 4 4 3 1 2 0 0 1 0 0.52 1.00 -8896 EPM2AIP1 EPM2A (laforin) interacting protein 1 394940 4 3 4 3 1 1 1 0 1 0 0.52 1.00 -8897 POT1 POT1 protection of telomeres 1 homolog (S. pombe) 440160 3 3 3 0 0 3 0 0 0 0 0.52 1.00 -8898 CWF19L1 CWF19-like 1, cell cycle control (S. pombe) 374752 3 2 3 1 0 2 0 0 1 0 0.52 1.00 -8899 SLC39A11 solute carrier family 39 (metal ion transporter), member 11 236096 2 2 2 2 1 1 0 0 0 0 0.52 1.00 -8900 C22orf33 chromosome 22 open reading frame 33 137536 1 1 1 0 1 0 0 0 0 0 0.52 1.00 -8901 EMR2 egf-like module containing, mucin-like, hormone receptor-like 2 564088 7 5 6 2 3 2 2 0 0 0 0.52 1.00 -8902 SLC36A2 solute carrier family 36 (proton/amino acid symporter), member 2 334208 2 2 2 1 1 1 0 0 0 0 0.52 1.00 -8903 RGS10 regulator of G-protein signaling 10 117376 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8904 GRHPR glyoxylate reductase/hydroxypyruvate reductase 216616 1 1 1 0 0 0 0 1 0 0 0.52 1.00 -8905 NBPF16 neuroblastoma breakpoint family, member 16 250524 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8906 BLVRA biliverdin reductase A 205856 2 2 1 1 2 0 0 0 0 0 0.52 1.00 -8907 PTGFRN prostaglandin F2 receptor negative regulator 566328 5 5 5 5 3 0 2 0 0 0 0.52 1.00 -8908 DLX5 distal-less homeobox 5 197568 3 3 3 4 2 0 1 0 0 0 0.52 1.00 -8909 SNAPC2 small nuclear RNA activating complex, polypeptide 2, 45kDa 198492 2 2 2 0 0 1 1 0 0 0 0.52 1.00 -8910 TNFRSF19 tumor necrosis factor receptor superfamily, member 19 295008 3 3 3 1 2 0 1 0 0 0 0.52 1.00 -8911 SKA3 278460 2 2 2 0 0 1 1 0 0 0 0.52 1.00 -8912 RIC8A resistance to inhibitors of cholinesterase 8 homolog A (C. elegans) 363104 3 3 3 0 1 0 1 0 1 0 0.52 1.00 -8913 WHSC2 Wolf-Hirschhorn syndrome candidate 2 337988 5 4 5 0 3 0 1 0 1 0 0.52 1.00 -8914 ART3 ADP-ribosyltransferase 3 263648 2 2 2 0 1 1 0 0 0 0 0.52 1.00 -8915 WWC1 WW and C2 domain containing 1 738808 6 5 6 0 3 1 0 1 1 0 0.52 1.00 -8916 WEE1 WEE1 homolog (S. pombe) 305472 3 2 3 1 1 2 0 0 0 0 0.52 1.00 -8917 TMEM50A transmembrane protein 50A 111552 2 1 2 1 1 1 0 0 0 0 0.52 1.00 -8918 CYP4A22 cytochrome P450, family 4, subfamily A, polypeptide 22 360192 2 2 2 1 1 1 0 0 0 0 0.52 1.00 -8919 PIK3C2B phosphoinositide-3-kinase, class 2, beta polypeptide 1111888 8 7 8 3 5 2 1 0 0 0 0.52 1.00 -8920 CASP1 caspase 1, apoptosis-related cysteine peptidase (interleukin 1, beta, convertase) 280224 2 2 2 0 0 2 0 0 0 0 0.52 1.00 -8921 PSMD11 proteasome (prosome, macropain) 26S subunit, non-ATPase, 11 292028 3 3 3 0 1 2 0 0 0 0 0.52 1.00 -8922 EPHA6 EPH receptor A6 754068 5 4 5 2 2 0 1 0 2 0 0.52 1.00 -8923 ARX aristaless related homeobox 111184 1 1 1 1 0 1 0 0 0 0 0.52 1.00 -8924 SLC35E3 solute carrier family 35, member E3 215488 2 2 2 0 0 0 2 0 0 0 0.52 1.00 -8925 OTOF otoferlin 1320812 9 9 9 6 1 1 3 2 2 0 0.52 1.00 -8926 FCRL1 Fc receptor-like 1 298816 2 2 2 0 1 1 0 0 0 0 0.52 1.00 -8927 GUF1 GUF1 GTPase homolog (S. cerevisiae) 450576 3 3 3 0 1 2 0 0 0 0 0.52 1.00 -8928 TEKT1 tektin 1 287840 3 3 3 2 1 0 2 0 0 0 0.52 1.00 -8929 DACT1 dapper, antagonist of beta-catenin, homolog 1 (Xenopus laevis) 491820 6 5 6 3 1 2 2 0 1 0 0.52 1.00 -8930 ARMC10 armadillo repeat containing 10 207368 1 1 1 1 1 0 0 0 0 0 0.52 1.00 -8931 PRELID2 PRELI domain containing 2 123208 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8932 ZFR zinc finger RNA binding protein 720600 7 5 7 3 1 4 2 0 0 0 0.52 1.00 -8933 PCNP PEST proteolytic signal containing nuclear protein 115520 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -8934 FADS3 fatty acid desaturase 3 248724 2 2 2 1 2 0 0 0 0 0 0.52 1.00 -8935 KHDC1 KH homology domain containing 1 113568 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8936 POU2F3 POU class 2 homeobox 3 303952 3 3 3 1 2 0 1 0 0 0 0.52 1.00 -8937 HADHA hydroxyacyl-Coenzyme A dehydrogenase/3-ketoacyl-Coenzyme A thiolase/enoyl-Coenzyme A hydratase (trifunctional protein), alpha subunit 531192 3 3 3 3 0 1 0 0 2 0 0.52 1.00 -8938 SOX2 SRY (sex determining region Y)-box 2 174468 2 2 2 4 0 0 2 0 0 0 0.52 1.00 -8939 ENOSF1 enolase superfamily member 1 292992 1 1 1 2 0 0 0 0 1 0 0.52 1.00 -8940 CD74 CD74 molecule, major histocompatibility complex, class II invariant chain 203432 1 1 1 0 0 0 0 0 1 0 0.52 1.00 -8941 SLC43A1 solute carrier family 43, member 1 386416 3 3 2 2 2 1 0 0 0 0 0.52 1.00 -8942 DBNDD1 dysbindin (dystrobrevin binding protein 1) domain containing 1 122784 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8943 SNX31 sorting nexin 31 301416 4 3 4 0 2 1 1 0 0 0 0.52 1.00 -8944 ADAD2 adenosine deaminase domain containing 2 315912 1 1 1 1 0 0 0 0 1 0 0.52 1.00 -8945 CKMT2 creatine kinase, mitochondrial 2 (sarcomeric) 290304 5 3 5 2 4 1 0 0 0 0 0.52 1.00 -8946 POLR2B polymerase (RNA) II (DNA directed) polypeptide B, 140kDa 812000 8 5 8 1 2 3 2 0 1 0 0.52 1.00 -8947 CHRNA5 cholinergic receptor, nicotinic, alpha 5 295904 2 2 2 2 1 1 0 0 0 0 0.52 1.00 -8948 ATP1A2 ATPase, Na+/K+ transporting, alpha 2 (+) polypeptide 706720 9 7 9 4 6 3 0 0 0 0 0.52 1.00 -8949 NUCB2 nucleobindin 2 293664 2 2 2 0 0 1 0 0 1 0 0.52 1.00 -8950 CCDC88C coiled-coil domain containing 88C 1246168 9 8 8 3 4 3 0 0 2 0 0.52 1.00 -8951 ETV3 ets variant gene 3 99456 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8952 NRAP nebulin-related anchoring protein 1200864 16 8 13 2 6 4 4 0 2 0 0.52 1.00 -8953 LPIN3 lipin 3 588896 5 5 5 0 1 1 1 1 1 0 0.52 1.00 -8954 AHCY S-adenosylhomocysteine hydrolase 295584 3 3 3 1 0 1 2 0 0 0 0.52 1.00 -8955 STAG3 stromal antigen 3 853440 9 6 9 1 4 4 0 0 1 0 0.52 1.00 -8956 MTL5 metallothionein-like 5, testis-specific (tesmin) 291088 2 2 2 0 0 1 1 0 0 0 0.52 1.00 -8957 LRRC28 leucine rich repeat containing 28 255360 2 2 2 1 2 0 0 0 0 0 0.52 1.00 -8958 MGAT5 mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase 512960 3 3 3 0 2 1 0 0 0 0 0.52 1.00 -8959 FUT8 fucosyltransferase 8 (alpha (1,6) fucosyltransferase) 417312 2 2 2 0 0 1 0 0 1 0 0.52 1.00 -8960 MRPL24 mitochondrial ribosomal protein L24 150304 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8961 GLRA1 glycine receptor, alpha 1 312704 2 2 2 0 1 0 0 0 1 0 0.52 1.00 -8962 NRCAM neuronal cell adhesion molecule 907160 7 6 7 1 2 4 1 0 0 0 0.52 1.00 -8963 GDNF glial cell derived neurotrophic factor 135604 1 1 1 1 1 0 0 0 0 0 0.52 1.00 -8964 GPSM2 G-protein signaling modulator 2 (AGS3-like, C. elegans) 470400 2 2 2 1 0 0 0 0 2 0 0.52 1.00 -8965 BAK1 BCL2-antagonist/killer 1 136880 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -8966 CNOT1 CCR4-NOT transcription complex, subunit 1 1642508 23 11 23 3 13 7 3 0 0 0 0.52 1.00 -8967 ENPP1 ectonucleotide pyrophosphatase/phosphodiesterase 1 590016 4 3 4 4 0 2 1 0 1 0 0.52 1.00 -8968 MARCH1 membrane-associated ring finger (C3HC4) 1 187040 2 2 2 1 1 1 0 0 0 0 0.52 1.00 -8969 FAM58B family with sequence similarity 58, member B 170912 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8970 KREMEN2 kringle containing transmembrane protein 2 114856 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -8971 TAS2R3 taste receptor, type 2, member 3 213920 1 1 1 3 0 0 1 0 0 0 0.52 1.00 -8972 HOMER3 homer homolog 3 (Drosophila) 186492 1 1 1 0 0 0 0 1 0 0 0.52 1.00 -8973 KIAA0922 KIAA0922 1008476 12 9 12 4 5 4 3 0 0 0 0.52 1.00 -8974 METT5D1 methyltransferase 5 domain containing 1 188608 1 1 1 1 0 0 1 0 0 0 0.52 1.00 -8975 LST-3TM12 442400 3 2 3 1 1 0 2 0 0 0 0.52 1.00 -8976 RNASE10 ribonuclease, RNase A family, 10 (non-active) 146720 1 1 1 1 0 1 0 0 0 0 0.52 1.00 -8977 KLF4 Kruppel-like factor 4 (gut) 233912 2 2 2 0 1 0 0 0 1 0 0.52 1.00 -8978 USH1G Usher syndrome 1G (autosomal recessive) 231964 3 3 3 0 3 0 0 0 0 0 0.52 1.00 -8979 ANAPC10 anaphase promoting complex subunit 10 128576 2 1 2 1 0 2 0 0 0 0 0.52 1.00 -8980 C19orf44 chromosome 19 open reading frame 44 439376 5 4 5 1 2 1 0 0 0 2 0.52 1.00 -8981 TGIF2LX TGFB-induced factor homeobox 2-like, X-linked 163520 1 1 1 1 0 1 0 0 0 0 0.52 1.00 -8982 OR1L4 olfactory receptor, family 1, subfamily L, member 4 210560 1 1 1 1 0 0 1 0 0 0 0.52 1.00 -8983 GAS2 growth arrest-specific 2 217280 2 2 2 3 0 2 0 0 0 0 0.52 1.00 -8984 FATE1 fetal and adult testis expressed 1 113168 1 1 1 1 0 0 1 0 0 0 0.52 1.00 -8985 FMO2 flavin containing monooxygenase 2 (non-functional) 324352 4 3 4 1 0 2 2 0 0 0 0.52 1.00 -8986 C10orf118 chromosome 10 open reading frame 118 617568 4 4 4 1 0 0 4 0 0 0 0.52 1.00 -8987 TRO trophinin 985480 7 7 7 1 2 4 1 0 0 0 0.52 1.00 -8988 FRY furry homolog (Drosophila) 2080064 25 13 25 5 7 8 8 0 2 0 0.52 1.00 -8989 SLC39A9 solute carrier family 39 (zinc transporter), member 9 213248 1 1 1 3 0 1 0 0 0 0 0.52 1.00 -8990 C3orf58 chromosome 3 open reading frame 58 203756 4 2 4 0 0 2 0 0 0 2 0.52 1.00 -8991 FGFR1OP2 FGFR1 oncogene partner 2 178080 2 2 2 2 1 1 0 0 0 0 0.52 1.00 -8992 POLN polymerase (DNA directed) nu 618072 4 4 4 1 1 2 1 0 0 0 0.52 1.00 -8993 ZC3H6 zinc finger CCCH-type containing 6 747328 8 6 8 1 2 5 1 0 0 0 0.52 1.00 -8994 CLDN2 claudin 2 156128 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8995 MTHFD1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase 653184 6 5 6 2 3 3 0 0 0 0 0.52 1.00 -8996 CAPN7 calpain 7 551144 4 4 4 2 0 2 2 0 0 0 0.52 1.00 -8997 CDKN1A cyclin-dependent kinase inhibitor 1A (p21, Cip1) 112672 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -8998 C18orf55 chromosome 18 open reading frame 55 170688 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -8999 DHX58 DEXH (Asp-Glu-X-His) box polypeptide 58 463680 3 3 3 0 0 1 1 0 1 0 0.52 1.00 -9000 BOD1L 2005416 17 10 17 8 6 4 5 0 0 2 0.52 1.00 -9001 RPS13 ribosomal protein S13 107520 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -9002 HEYL hairy/enhancer-of-split related with YRPW motif-like 165140 2 2 2 0 1 1 0 0 0 0 0.52 1.00 -9003 ORC4L origin recognition complex, subunit 4-like (yeast) 305312 1 1 1 0 0 0 0 0 1 0 0.52 1.00 -9004 FLT3LG fms-related tyrosine kinase 3 ligand 160812 1 1 1 1 1 0 0 0 0 0 0.52 1.00 -9005 RAD50 RAD50 homolog (S. cerevisiae) 904736 11 7 11 1 3 7 1 0 0 0 0.52 1.00 -9006 DUSP11 dual specificity phosphatase 11 (RNA/RNP complex 1-interacting) 258520 4 2 4 0 0 2 2 0 0 0 0.52 1.00 -9007 VDR vitamin D (1,25- dihydroxyvitamin D3) receptor 294648 2 2 2 2 2 0 0 0 0 0 0.52 1.00 -9008 CLK3 CDC-like kinase 3 339940 3 3 3 0 0 2 1 0 0 0 0.52 1.00 -9009 RNASEH2A ribonuclease H2, subunit A 193128 2 2 2 1 2 0 0 0 0 0 0.52 1.00 -9010 C1orf156 chromosome 1 open reading frame 156 251552 2 2 2 1 0 2 0 0 0 0 0.52 1.00 -9011 MEN1 multiple endocrine neoplasia I 400152 2 2 2 0 0 0 0 0 2 0 0.52 1.00 -9012 GRPEL1 GrpE-like 1, mitochondrial (E. coli) 149912 1 1 1 1 1 0 0 0 0 0 0.52 1.00 -9013 ITPRIP 357056 3 3 3 1 2 0 1 0 0 0 0.52 1.00 -9014 SRCAP Snf2-related CREBBP activator protein 2172520 15 14 15 7 5 7 3 0 0 0 0.52 1.00 -9015 C11orf73 chromosome 11 open reading frame 73 132912 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -9016 THAP8 THAP domain containing 8 144336 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -9017 NDUFAF3 105448 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -9018 KBTBD4 kelch repeat and BTB (POZ) domain containing 4 353696 2 2 2 0 1 0 1 0 0 0 0.52 1.00 -9019 KLHL2 kelch-like 2, Mayven (Drosophila) 405888 3 3 3 2 1 2 0 0 0 0 0.52 1.00 -9020 HELZ helicase with zinc finger 1332576 9 6 9 2 3 3 1 0 2 0 0.52 1.00 -9021 CCDC22 coiled-coil domain containing 22 354376 5 3 5 0 0 4 1 0 0 0 0.52 1.00 -9022 DCTN3 dynactin 3 (p22) 144008 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -9023 LRP4 low density lipoprotein receptor-related protein 4 1298120 14 11 14 1 7 4 2 0 1 0 0.52 1.00 -9024 PRTG protogenin homolog (Gallus gallus) 771764 5 5 5 1 3 2 0 0 0 0 0.53 1.00 -9025 TAOK1 TAO kinase 1 686504 5 4 5 1 2 2 0 0 1 0 0.53 1.00 -9026 OLFML2A olfactomedin-like 2A 415480 4 4 4 4 3 0 0 0 1 0 0.53 1.00 -9027 HADHB hydroxyacyl-Coenzyme A dehydrogenase/3-ketoacyl-Coenzyme A thiolase/enoyl-Coenzyme A hydratase (trifunctional protein), beta subunit 332640 2 2 2 1 0 2 0 0 0 0 0.53 1.00 -9028 LAMC3 laminin, gamma 3 968492 8 8 8 4 5 1 2 0 0 0 0.53 1.00 -9029 DLK2 delta-like 2 homolog (Drosophila) 231832 2 2 2 0 1 1 0 0 0 0 0.53 1.00 -9030 MOBKL2C MOB1, Mps One Binder kinase activator-like 2C (yeast) 178724 2 2 2 0 2 0 0 0 0 0 0.53 1.00 -9031 PIP4K2C phosphatidylinositol-5-phosphate 4-kinase, type II, gamma 291032 3 3 2 0 3 0 0 0 0 0 0.53 1.00 -9032 DMWD dystrophia myotonica, WD repeat containing 317100 3 2 3 2 1 1 0 0 1 0 0.53 1.00 -9033 SRP72 signal recognition particle 72kDa 468608 4 4 4 0 2 2 0 0 0 0 0.53 1.00 -9034 C9orf7 chromosome 9 open reading frame 7 94400 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -9035 C15orf59 189700 2 2 2 0 1 0 1 0 0 0 0.53 1.00 -9036 CDC16 cell division cycle 16 homolog (S. cerevisiae) 421792 4 3 4 1 3 1 0 0 0 0 0.53 1.00 -9037 MOBKL1B MOB1, Mps One Binder kinase activator-like 1B (yeast) 135064 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -9038 SOX14 SRY (sex determining region Y)-box 14 155416 2 2 2 0 2 0 0 0 0 0 0.53 1.00 -9039 C14orf166B chromosome 14 open reading frame 166B 325336 3 3 3 0 0 1 2 0 0 0 0.53 1.00 -9040 SCO1 SCO cytochrome oxidase deficient homolog 1 (yeast) 192472 1 1 1 1 0 1 0 0 0 0 0.53 1.00 -9041 CABP4 calcium binding protein 4 155872 2 2 2 1 2 0 0 0 0 0 0.53 1.00 -9042 SMAP1 stromal membrane-associated GTPase-activating protein 1 324352 2 2 2 0 1 0 0 0 1 0 0.53 1.00 -9043 ZCCHC12 zinc finger, CCHC domain containing 12 271712 2 2 2 1 2 0 0 0 0 0 0.53 1.00 -9044 KIN KIN, antigenic determinant of recA protein homolog (mouse) 276416 2 2 2 1 1 0 1 0 0 0 0.53 1.00 -9045 VEGFA vascular endothelial growth factor A 185528 2 2 2 0 2 0 0 0 0 0 0.53 1.00 -9046 NFATC4 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 4 615204 5 5 5 2 3 1 0 0 1 0 0.53 1.00 -9047 PLAA phospholipase A2-activating protein 524796 3 3 3 0 0 2 1 0 0 0 0.53 1.00 -9048 MS4A8B membrane-spanning 4-domains, subfamily A, member 8B 174048 2 2 1 1 2 0 0 0 0 0 0.53 1.00 -9049 LILRA3 leukocyte immunoglobulin-like receptor, subfamily A (without TM domain), member 3 301784 2 2 2 1 1 0 1 0 0 0 0.53 1.00 -9050 PTCH1 patched homolog 1 (Drosophila) 985164 9 9 9 8 6 1 1 0 1 0 0.53 1.00 -9051 CALCB calcitonin-related polypeptide beta 88704 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -9052 NIF3L1 NIF3 NGG1 interacting factor 3-like 1 (S. pombe) 243488 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -9053 TXNRD2 thioredoxin reductase 2 316524 3 3 3 1 0 1 2 0 0 0 0.53 1.00 -9054 SERTAD4 SERTA domain containing 4 242592 2 2 2 1 1 1 0 0 0 0 0.53 1.00 -9055 SEPT5 septin 5 178892 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -9056 CPNE3 copine III 374976 3 2 3 1 0 1 1 0 1 0 0.53 1.00 -9057 PDE6B phosphodiesterase 6B, cGMP-specific, rod, beta (congenital stationary night blindness 3, autosomal dominant) 542500 5 4 5 0 2 1 1 0 1 0 0.53 1.00 -9058 HSPH1 heat shock 105kDa/110kDa protein 1 593376 3 3 3 1 0 1 0 0 2 0 0.53 1.00 -9059 PRKCI protein kinase C, iota 417088 4 4 3 0 4 0 0 0 0 0 0.53 1.00 -9060 TSGA13 testis specific, 13 191744 2 2 2 1 0 1 1 0 0 0 0.53 1.00 -9061 C11orf54 chromosome 11 open reading frame 54 185024 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -9062 SLC45A4 solute carrier family 45, member 4 498372 5 5 5 1 2 2 1 0 0 0 0.53 1.00 -9063 PRKG2 protein kinase, cGMP-dependent, type II 528864 5 4 5 2 0 4 0 0 1 0 0.53 1.00 -9064 NR4A3 nuclear receptor subfamily 4, group A, member 3 366576 4 3 4 0 2 1 0 0 1 0 0.53 1.00 -9065 APOM apolipoprotein M 97916 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -9066 STK10 serine/threonine kinase 10 655304 5 5 5 3 2 1 1 0 1 0 0.53 1.00 -9067 MRGPRX2 MAS-related GPR, member X2 223328 1 1 1 1 1 0 0 0 0 0 0.53 1.00 -9068 NCR1 natural cytotoxicity triggering receptor 1 211232 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -9069 FABP6 fatty acid binding protein 6, ileal (gastrotropin) 124992 1 1 1 1 0 1 0 0 0 0 0.53 1.00 -9070 COL28A1 collagen, type XXVIII, alpha 1 787136 6 5 6 0 2 3 1 0 0 0 0.53 1.00 -9071 C1orf107 chromosome 1 open reading frame 107 519456 5 4 5 1 1 1 3 0 0 0 0.53 1.00 -9072 MTHFD1L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like 630336 8 6 8 3 4 2 1 1 0 0 0.53 1.00 -9073 SDHD succinate dehydrogenase complex, subunit D, integral membrane protein 106820 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -9074 ESAM endothelial cell adhesion molecule 264432 3 2 3 3 0 2 1 0 0 0 0.53 1.00 -9075 TICAM1 toll-like receptor adaptor molecule 1 445424 2 2 2 2 0 0 1 0 1 0 0.53 1.00 -9076 SON SON DNA binding protein 1646680 12 9 12 2 3 5 3 0 1 0 0.53 1.00 -9077 ALG12 asparagine-linked glycosylation 12 homolog (S. cerevisiae, alpha-1,6-mannosyltransferase) 329112 2 2 2 0 1 0 0 0 1 0 0.53 1.00 -9078 LAMA3 laminin, alpha 3 2274076 18 14 18 4 6 9 2 0 1 0 0.53 1.00 -9079 SOX10 SRY (sex determining region Y)-box 10 256508 3 3 3 2 3 0 0 0 0 0 0.53 1.00 -9080 RIBC1 RIB43A domain with coiled-coils 1 265040 2 2 2 1 2 0 0 0 0 0 0.53 1.00 -9081 TRPC4AP transient receptor potential cation channel, subfamily C, member 4 associated protein 523432 4 4 4 1 1 1 1 0 1 0 0.53 1.00 -9082 ADAT1 adenosine deaminase, tRNA-specific 1 346080 2 2 2 1 1 0 1 0 0 0 0.53 1.00 -9083 AZIN1 antizyme inhibitor 1 310688 2 2 2 0 0 2 0 0 0 0 0.53 1.00 -9084 STAMBPL1 STAM binding protein-like 1 302624 2 2 2 0 0 1 0 0 1 0 0.53 1.00 -9085 CHST5 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 5 216508 3 3 3 0 2 1 0 0 0 0 0.53 1.00 -9086 ATCAY ataxia, cerebellar, Cayman type (caytaxin) 244552 4 3 4 2 1 1 1 1 0 0 0.53 1.00 -9087 PLXND1 plexin D1 1073332 13 11 13 3 9 3 1 0 0 0 0.53 1.00 -9088 SOSTDC1 sclerostin domain containing 1 140896 1 1 1 0 1 0 0 0 0 0 0.53 1.00 -9089 SMARCD3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 297976 3 3 3 3 3 0 0 0 0 0 0.53 1.00 -9090 PDCD6IP programmed cell death 6 interacting protein 568376 4 3 4 2 2 1 0 0 1 0 0.53 1.00 -9091 SLC6A16 solute carrier family 6, member 16 505120 3 3 3 2 2 1 0 0 0 0 0.53 1.00 -9092 PRKAG1 protein kinase, AMP-activated, gamma 1 non-catalytic subunit 233856 1 1 1 1 1 0 0 0 0 0 0.53 1.00 -9093 WDHD1 WD repeat and HMG-box DNA binding protein 1 781760 8 5 8 1 3 3 0 0 2 0 0.53 1.00 -9094 B4GALT5 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 5 253464 2 2 2 1 1 1 0 0 0 0 0.53 1.00 -9095 NDUFB11 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 11, 17.3kDa 80892 1 1 1 1 1 0 0 0 0 0 0.53 1.00 -9096 VPS41 vacuolar protein sorting 41 homolog (S. cerevisiae) 600544 4 4 4 1 1 1 2 0 0 0 0.53 1.00 -9097 KHNYN 459144 3 3 3 0 2 0 0 0 1 0 0.53 1.00 -9098 CD200 CD200 molecule 202336 2 2 2 0 1 1 0 0 0 0 0.53 1.00 -9099 GARS glycyl-tRNA synthetase 482332 3 3 3 1 2 0 0 0 1 0 0.53 1.00 -9100 PORCN porcupine homolog (Drosophila) 307232 2 2 2 1 0 1 0 0 1 0 0.53 1.00 -9101 TMEM150C 174272 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -9102 DPCD 133216 1 1 1 0 1 0 0 0 0 0 0.53 1.00 -9103 C6orf170 chromosome 6 open reading frame 170 874048 11 6 10 4 0 6 4 0 1 0 0.53 1.00 -9104 SLC1A5 solute carrier family 1 (neutral amino acid transporter), member 5 289212 3 3 3 0 2 0 1 0 0 0 0.53 1.00 -9105 DDX42 DEAD (Asp-Glu-Ala-Asp) box polypeptide 42 646240 5 5 5 0 3 1 0 0 1 0 0.53 1.00 -9106 SDS serine dehydratase 227024 2 2 2 0 1 1 0 0 0 0 0.53 1.00 -9107 KIAA0754 906704 8 5 8 0 1 5 1 0 1 0 0.53 1.00 -9108 CC2D1B coiled-coil and C2 domain containing 1B 590204 4 4 4 2 3 0 0 0 1 0 0.53 1.00 -9109 UQCRC1 ubiquinol-cytochrome c reductase core protein I 306348 2 2 2 0 1 1 0 0 0 0 0.53 1.00 -9110 RHBG Rh family, B glycoprotein 308224 3 3 3 1 1 0 2 0 0 0 0.53 1.00 -9111 BMP4 bone morphogenetic protein 4 272608 2 2 2 0 2 0 0 0 0 0 0.53 1.00 -9112 SLC34A1 solute carrier family 34 (sodium phosphate), member 1 437472 3 3 3 2 1 1 0 0 1 0 0.53 1.00 -9113 PMS1 PMS1 postmeiotic segregation increased 1 (S. cerevisiae) 637728 3 3 3 2 0 0 1 0 2 0 0.53 1.00 -9114 GALM galactose mutarotase (aldose 1-epimerase) 236768 2 1 2 0 0 0 1 0 1 0 0.53 1.00 -9115 RPL4 ribosomal protein L4 296576 2 2 2 1 2 0 0 0 0 0 0.53 1.00 -9116 ZRANB1 zinc finger, RAN-binding domain containing 1 484428 2 2 2 0 0 2 0 0 0 0 0.53 1.00 -9117 PLA2G1B phospholipase A2, group IB (pancreas) 103712 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -9118 ZSCAN2 zinc finger and SCAN domain containing 2 435232 5 4 5 2 2 2 1 0 0 0 0.53 1.00 -9119 CIC capicua homolog (Drosophila) 945700 6 5 6 1 2 2 0 0 2 0 0.53 1.00 -9120 MAS1 MAS1 oncogene 219968 2 2 2 0 1 0 1 0 0 0 0.53 1.00 -9121 SEC22A SEC22 vesicle trafficking protein homolog A (S. cerevisiae) 212352 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -9122 CNTFR ciliary neurotrophic factor receptor 237968 2 2 2 1 2 0 0 0 0 0 0.53 1.00 -9123 CCDC46 coiled-coil domain containing 46 694208 7 5 7 1 2 2 3 0 0 0 0.53 1.00 -9124 KRTAP10-12 keratin associated protein 10-12 160664 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -9125 ZNF628 zinc finger protein 628 384236 3 3 3 1 1 0 1 0 1 0 0.53 1.00 -9126 RHOBTB2 Rho-related BTB domain containing 2 499520 5 5 5 1 3 2 0 0 0 0 0.53 1.00 -9127 PPFIA1 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 1 831908 8 7 8 3 1 6 1 0 0 0 0.53 1.00 -9128 IPO9 importin 9 713544 5 5 5 0 2 2 0 1 0 0 0.53 1.00 -9129 ZCCHC4 zinc finger, CCHC domain containing 4 357056 3 3 3 0 1 1 1 0 0 0 0.53 1.00 -9130 PRDM11 PR domain containing 11 348572 2 2 2 3 0 1 1 0 0 0 0.53 1.00 -9131 WDR31 WD repeat domain 31 255360 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -9132 C17orf28 chromosome 17 open reading frame 28 491460 4 4 4 1 2 1 1 0 0 0 0.53 1.00 -9133 LHFPL5 lipoma HMGIC fusion partner-like 5 150528 2 2 2 2 1 1 0 0 0 0 0.53 1.00 -9134 HOXD10 homeobox D10 212548 2 2 2 1 2 0 0 0 0 0 0.53 1.00 -9135 NPAS2 neuronal PAS domain protein 2 566104 5 5 5 2 3 2 0 0 0 0 0.53 1.00 -9136 ZNF687 zinc finger protein 687 814992 5 5 5 1 1 1 2 0 1 0 0.53 1.00 -9137 TNNC2 troponin C type 2 (fast) 113568 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -9138 CRY1 cryptochrome 1 (photolyase-like) 404460 5 3 5 1 3 0 1 0 1 0 0.53 1.00 -9139 FAM83B family with sequence similarity 83, member B 683648 6 4 6 0 2 3 0 0 1 0 0.53 1.00 -9140 RNASE3 ribonuclease, RNase A family, 3 (eosinophil cationic protein) 109088 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -9141 MRPL46 mitochondrial ribosomal protein L46 191744 2 2 2 0 1 1 0 0 0 0 0.53 1.00 -9142 DUSP5 dual specificity phosphatase 5 198632 2 2 2 1 1 0 1 0 0 0 0.53 1.00 -9143 CDKN2C cyclin-dependent kinase inhibitor 2C (p18, inhibits CDK4) 115360 1 1 1 1 1 0 0 0 0 0 0.53 1.00 -9144 SLC10A1 solute carrier family 10 (sodium/bile acid cotransporter family), member 1 239680 2 2 2 1 0 1 1 0 0 0 0.53 1.00 -9145 OSBPL5 oxysterol binding protein-like 5 523476 4 4 4 1 1 2 0 0 1 0 0.53 1.00 -9146 CLTCL1 clathrin, heavy chain-like 1 1093240 9 8 8 3 8 1 0 0 0 0 0.53 1.00 -9147 EPHA8 EPH receptor A8 669956 6 6 6 0 4 0 0 1 1 0 0.53 1.00 -9148 HIP1 huntingtin interacting protein 1 703740 6 5 6 4 1 2 1 0 0 2 0.53 1.00 -9149 NQO2 NAD(P)H dehydrogenase, quinone 2 161280 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -9150 C19orf61 chromosome 19 open reading frame 61 352784 3 3 3 2 1 2 0 0 0 0 0.53 1.00 -9151 C3AR1 complement component 3a receptor 1 325472 4 3 4 2 3 0 1 0 0 0 0.53 1.00 -9152 MPZL1 myelin protein zero-like 1 165536 1 1 1 1 0 1 0 0 0 0 0.53 1.00 -9153 CLCN1 chloride channel 1, skeletal muscle (Thomsen disease, autosomal dominant) 636692 6 5 6 4 2 3 0 0 1 0 0.53 1.00 -9154 ADH4 alcohol dehydrogenase 4 (class II), pi polypeptide 264096 2 2 2 0 1 1 0 0 0 0 0.53 1.00 -9155 TTLL3 tubulin tyrosine ligase-like family, member 3 530208 4 4 4 1 2 0 2 0 0 0 0.53 1.00 -9156 CTNS cystinosis, nephropathic 282912 2 2 2 0 1 1 0 0 0 0 0.53 1.00 -9157 PTPN22 protein tyrosine phosphatase, non-receptor type 22 (lymphoid) 566944 4 4 4 0 0 3 0 0 1 0 0.53 1.00 -9158 C16orf46 chromosome 16 open reading frame 46 274176 2 2 2 1 0 2 0 0 0 0 0.53 1.00 -9159 MAPKAPK3 mitogen-activated protein kinase-activated protein kinase 3 261548 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -9160 CARD9 caspase recruitment domain family, member 9 242380 2 2 2 0 1 0 0 0 1 0 0.54 1.00 -9161 C12orf41 chromosome 12 open reading frame 41 323584 3 2 3 0 1 1 0 0 1 0 0.54 1.00 -9162 QPCT glutaminyl-peptide cyclotransferase (glutaminyl cyclase) 237720 2 2 2 1 0 1 1 0 0 0 0.54 1.00 -9163 MMP14 matrix metallopeptidase 14 (membrane-inserted) 377888 4 4 4 1 2 1 1 0 0 0 0.54 1.00 -9164 HDAC1 histone deacetylase 1 318040 2 2 2 0 1 0 1 0 0 0 0.54 1.00 -9165 PRRT2 proline-rich transmembrane protein 2 222600 1 1 1 0 0 0 0 0 1 0 0.54 1.00 -9166 ZNF70 zinc finger protein 70 301280 3 3 2 2 1 2 0 0 0 0 0.54 1.00 -9167 DSCAM Down syndrome cell adhesion molecule 1376928 12 9 12 10 5 2 3 0 2 0 0.54 1.00 -9168 TRADD TNFRSF1A-associated via death domain 108080 1 1 1 1 0 1 0 0 0 0 0.54 1.00 -9169 BTN2A1 butyrophilin, subfamily 2, member A1 367136 2 2 2 0 1 1 0 0 0 0 0.54 1.00 -9170 FUBP1 far upstream element (FUSE) binding protein 1 451360 2 2 2 3 0 1 0 0 1 0 0.54 1.00 -9171 C14orf37 chromosome 14 open reading frame 37 527072 4 4 4 1 0 3 1 0 0 0 0.54 1.00 -9172 LRRC57 leucine rich repeat containing 57 165760 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9173 HYLS1 hydrolethalus syndrome 1 202496 3 2 3 0 0 3 0 0 0 0 0.54 1.00 -9174 CES3 carboxylesterase 3 (brain) 396032 3 3 3 1 0 2 1 0 0 0 0.54 1.00 -9175 UFD1L ubiquitin fusion degradation 1 like (yeast) 217140 4 2 4 0 2 1 1 0 0 0 0.54 1.00 -9176 ZNF563 zinc finger protein 563 324128 4 3 3 1 1 3 0 0 0 0 0.54 1.00 -9177 CCBL1 cysteine conjugate-beta lyase, cytoplasmic 295008 3 3 3 0 2 1 0 0 0 0 0.54 1.00 -9178 ORC5L origin recognition complex, subunit 5-like (yeast) 327488 1 1 1 0 0 0 0 0 1 0 0.54 1.00 -9179 SNX12 sorting nexin 12 112984 1 1 1 1 1 0 0 0 0 0 0.54 1.00 -9180 TMEM150B 160192 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9181 ENOPH1 enolase-phosphatase 1 181440 2 2 2 1 1 0 1 0 0 0 0.54 1.00 -9182 CRTC2 CREB regulated transcription coactivator 2 476560 5 4 5 1 4 1 0 0 0 0 0.54 1.00 -9183 HRASLS2 HRAS-like suppressor 2 113120 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9184 P2RX4 purinergic receptor P2X, ligand-gated ion channel, 4 258888 3 3 3 1 1 0 1 0 1 0 0.54 1.00 -9185 C15orf32 chromosome 15 open reading frame 32 122976 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9186 RAVER2 ribonucleoprotein, PTB-binding 2 410368 3 3 3 3 2 0 1 0 0 0 0.54 1.00 -9187 RALGPS2 Ral GEF with PH domain and SH3 binding motif 2 409472 3 3 3 2 1 1 0 0 1 0 0.54 1.00 -9188 OR4L1 olfactory receptor, family 4, subfamily L, member 1 208920 4 2 4 0 1 3 0 0 0 0 0.54 1.00 -9189 DARS2 aspartyl-tRNA synthetase 2, mitochondrial 449344 3 3 3 1 3 0 0 0 0 0 0.54 1.00 -9190 EEF1B2 eukaryotic translation elongation factor 1 beta 2 156576 1 1 1 0 0 0 0 0 1 0 0.54 1.00 -9191 GNPDA2 glucosamine-6-phosphate deaminase 2 191520 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9192 GZMH granzyme H (cathepsin G-like 2, protein h-CCPX) 170464 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -9193 KIAA0232 KIAA0232 945280 7 6 7 3 3 2 1 0 1 0 0.54 1.00 -9194 MTBP Mdm2, transformed 3T3 cell double minute 2, p53 binding protein (mouse) binding protein, 104kDa 627872 5 4 5 1 1 3 1 0 0 0 0.54 1.00 -9195 TRAF3IP1 TNF receptor-associated factor 3 interacting protein 1 422664 2 2 2 1 0 0 1 0 1 0 0.54 1.00 -9196 TMEM62 transmembrane protein 62 404096 3 3 3 0 1 1 1 0 0 0 0.54 1.00 -9197 TMEM45B transmembrane protein 45B 185600 2 2 2 0 1 0 1 0 0 0 0.54 1.00 -9198 CBFA2T2 core-binding factor, runt domain, alpha subunit 2; translocated to, 2 416556 4 4 4 0 3 1 0 0 0 0 0.54 1.00 -9199 C11orf71 chromosome 11 open reading frame 71 67704 1 1 1 2 0 1 0 0 0 0 0.54 1.00 -9200 SFRS2IP splicing factor, arginine/serine-rich 2, interacting protein 996352 3 3 3 0 1 0 1 0 1 0 0.54 1.00 -9201 RASEF RAS and EF-hand domain containing 456932 4 3 4 0 1 1 1 0 1 0 0.54 1.00 -9202 GTPBP3 GTP binding protein 3 (mitochondrial) 317972 3 3 3 2 1 0 1 0 1 0 0.54 1.00 -9203 FSTL4 follistatin-like 4 574224 3 3 3 1 0 0 1 1 1 0 0.54 1.00 -9204 RIMBP3 RIMS binding protein 3 323972 2 2 2 1 0 1 1 0 0 0 0.54 1.00 -9205 PLEKHA4 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 4 524776 4 4 4 1 2 2 0 0 0 0 0.54 1.00 -9206 LAMC1 laminin, gamma 1 (formerly LAMB2) 1077524 11 8 11 5 4 5 1 0 1 0 0.54 1.00 -9207 MSH3 mutS homolog 3 (E. coli) 775760 7 5 7 0 0 5 2 0 0 0 0.54 1.00 -9208 TMEM18 transmembrane protein 18 99232 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -9209 C19orf66 179108 1 1 1 2 0 0 0 0 1 0 0.54 1.00 -9210 SERPINA6 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 6 276416 2 2 2 0 1 0 1 0 0 0 0.54 1.00 -9211 ITGAV integrin, alpha V (vitronectin receptor, alpha polypeptide, antigen CD51) 731472 5 3 5 0 0 1 2 0 2 0 0.54 1.00 -9212 ZNF445 zinc finger protein 445 698880 7 6 6 1 1 4 2 0 0 0 0.54 1.00 -9213 REP15 160160 1 1 1 1 0 0 1 0 0 0 0.54 1.00 -9214 OR52N2 olfactory receptor, family 52, subfamily N, member 2 217280 1 1 1 1 0 1 0 0 0 0 0.54 1.00 -9215 ZNF623 zinc finger protein 623 361760 5 3 5 1 2 3 0 0 0 0 0.54 1.00 -9216 PPIP5K2 847840 5 5 5 1 2 2 0 0 1 0 0.54 1.00 -9217 MKRN3 makorin, ring finger protein, 3 333704 3 3 3 2 0 3 0 0 0 0 0.54 1.00 -9218 DNM3 dynamin 3 588136 7 5 7 2 2 3 2 0 0 0 0.54 1.00 -9219 TMEM38A transmembrane protein 38A 206892 2 2 2 0 1 1 0 0 0 0 0.54 1.00 -9220 PACS1 phosphofurin acidic cluster sorting protein 1 609688 5 5 5 3 2 2 1 0 0 0 0.54 1.00 -9221 ZNF234 zinc finger protein 234 473984 2 2 2 0 0 1 0 0 1 0 0.54 1.00 -9222 HOXC9 homeobox C9 137340 1 1 1 1 0 0 0 0 1 0 0.54 1.00 -9223 IL31RA interleukin 31 receptor A 527520 5 4 5 1 0 4 1 0 0 0 0.54 1.00 -9224 PDPN podoplanin 155400 1 1 1 1 1 0 0 0 0 0 0.54 1.00 -9225 ZNF408 zinc finger protein 408 419272 4 4 4 1 3 1 0 0 0 0 0.54 1.00 -9226 BBS5 Bardet-Biedl syndrome 5 240576 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9227 SPOCK1 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 1 288216 2 2 2 2 0 1 1 0 0 0 0.54 1.00 -9228 TAF9 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa 299048 1 1 1 0 0 0 0 0 1 0 0.54 1.00 -9229 MREG melanoregulin 126784 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -9230 SPRY4 sprouty homolog 4 (Drosophila) 207760 2 2 2 1 1 1 0 0 0 0 0.54 1.00 -9231 PCGF6 polycomb group ring finger 6 187352 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -9232 SSX3 synovial sarcoma, X breakpoint 3 143808 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9233 TRAIP TRAF interacting protein 329280 2 2 2 0 1 0 0 0 1 0 0.54 1.00 -9234 PSAPL1 prosaposin-like 1 327948 2 2 2 0 0 1 0 0 1 0 0.54 1.00 -9235 XDH xanthine dehydrogenase 917960 7 6 7 5 1 2 3 0 1 0 0.54 1.00 -9236 NRIP3 nuclear receptor interacting protein 3 135184 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9237 MED18 mediator complex subunit 18 142240 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -9238 CSN2 casein beta 157920 1 1 1 2 0 0 1 0 0 0 0.54 1.00 -9239 OPA3 optic atrophy 3 (autosomal recessive, with chorea and spastic paraplegia) 181048 2 2 2 0 1 1 0 0 0 0 0.54 1.00 -9240 SPDYE1 224616 2 2 2 1 0 2 0 0 0 0 0.54 1.00 -9241 TMEM194A 259392 3 2 3 0 1 1 1 0 0 0 0.54 1.00 -9242 UBQLN2 ubiquilin 2 389656 3 2 3 1 1 0 1 0 1 0 0.54 1.00 -9243 CLN6 ceroid-lipofuscinosis, neuronal 6, late infantile, variant 194432 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -9244 C13orf34 chromosome 13 open reading frame 34 386176 2 2 2 2 1 1 0 0 0 0 0.54 1.00 -9245 PRPF4B PRP4 pre-mRNA processing factor 4 homolog B (yeast) 684696 9 4 9 0 1 2 4 1 1 0 0.54 1.00 -9246 BAHD1 bromo adjacent homology domain containing 1 489216 4 4 4 0 0 2 0 1 1 0 0.54 1.00 -9247 NDUFS2 NADH dehydrogenase (ubiquinone) Fe-S protein 2, 49kDa (NADH-coenzyme Q reductase) 326592 3 2 3 0 2 0 0 0 1 0 0.54 1.00 -9248 BTLA B and T lymphocyte associated 199360 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9249 PRAMEF10 PRAME family member 10 192836 2 2 2 0 0 2 0 0 0 0 0.54 1.00 -9250 PLDN pallidin homolog (mouse) 119784 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9251 AAGAB 219272 1 1 1 1 0 0 0 0 1 0 0.54 1.00 -9252 LPCAT4 340448 2 2 2 0 0 2 0 0 0 0 0.54 1.00 -9253 TNFSF11 tumor necrosis factor (ligand) superfamily, member 11 185164 1 1 1 3 0 0 0 0 1 0 0.54 1.00 -9254 CCNYL1 cyclin Y-like 1 204064 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -9255 UBN2 845376 4 4 4 3 2 1 0 0 1 0 0.54 1.00 -9256 KBTBD8 kelch repeat and BTB (POZ) domain containing 8 392000 4 3 3 2 2 1 0 0 1 0 0.54 1.00 -9257 RAB26 RAB26, member RAS oncogene family 110836 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9258 TM7SF3 transmembrane 7 superfamily member 3 385400 3 3 3 1 1 1 1 0 0 0 0.54 1.00 -9259 CELF3 280248 3 3 3 1 1 2 0 0 0 0 0.54 1.00 -9260 BRAP BRCA1 associated protein 401884 3 3 3 1 1 1 0 0 1 0 0.54 1.00 -9261 SLC39A12 solute carrier family 39 (zinc transporter), member 12 450016 4 3 4 1 0 2 2 0 0 0 0.54 1.00 -9262 ZNF519 zinc finger protein 519 366240 3 2 3 1 0 1 1 0 1 0 0.54 1.00 -9263 RNF115 204120 2 1 2 0 0 1 0 0 1 0 0.54 1.00 -9264 LPAR6 232736 3 2 3 1 1 0 2 0 0 0 0.54 1.00 -9265 SMAD1 SMAD family member 1 318528 2 2 2 1 1 1 0 0 0 0 0.54 1.00 -9266 NUDT16 nudix (nucleoside diphosphate linked moiety X)-type motif 16 102732 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -9267 TET3 tet oncogene family member 3 1053288 6 6 6 3 3 1 1 0 1 0 0.54 1.00 -9268 PITRM1 pitrilysin metallopeptidase 1 621224 4 4 4 1 2 0 2 0 0 0 0.54 1.00 -9269 FSCN3 fascin homolog 3, actin-bundling protein, testicular (Strongylocentrotus purpuratus) 338256 2 2 2 1 1 0 0 0 1 0 0.54 1.00 -9270 PAIP1 poly(A) binding protein interacting protein 1 272160 4 2 3 0 1 1 1 1 0 0 0.54 1.00 -9271 SENP2 SUMO1/sentrin/SMT3 specific peptidase 2 411712 3 3 3 0 1 0 2 0 0 0 0.54 1.00 -9272 C2orf51 chromosome 2 open reading frame 51 124320 1 1 1 1 0 1 0 0 0 0 0.54 1.00 -9273 SNRNP200 1476384 9 9 9 7 3 3 1 0 2 0 0.54 1.00 -9274 ZZEF1 zinc finger, ZZ-type with EF-hand domain 1 1971256 13 12 13 4 6 2 2 0 3 0 0.54 1.00 -9275 FLVCR1 feline leukemia virus subgroup C cellular receptor 1 329700 2 2 2 1 0 1 0 0 1 0 0.54 1.00 -9276 HSD17B14 hydroxysteroid (17-beta) dehydrogenase 14 190176 3 2 3 0 2 1 0 0 0 0 0.54 1.00 -9277 DSC3 desmocollin 3 607712 4 4 4 2 1 3 0 0 0 0 0.54 1.00 -9278 SAMD10 sterile alpha motif domain containing 10 111048 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -9279 CH25H cholesterol 25-hydroxylase 179728 2 2 2 0 1 1 0 0 0 0 0.54 1.00 -9280 SLC2A12 solute carrier family 2 (facilitated glucose transporter), member 12 419776 3 3 3 3 0 2 1 0 0 0 0.54 1.00 -9281 BMF Bcl2 modifying factor 127008 1 1 1 1 0 0 1 0 0 0 0.54 1.00 -9282 RAD51L1 RAD51-like 1 (S. cerevisiae) 263956 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -9283 HIBCH 3-hydroxyisobutyryl-Coenzyme A hydrolase 272608 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -9284 TSPAN7 tetraspanin 7 165976 1 1 1 2 1 0 0 0 0 0 0.54 1.00 -9285 NSMCE4A non-SMC element 4 homolog A (S. cerevisiae) 202048 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9286 SRGN serglycin 109536 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -9287 RTN4RL1 reticulon 4 receptor-like 1 277416 3 3 3 0 2 0 1 0 0 0 0.55 1.00 -9288 GCC1 GRIP and coiled-coil domain containing 1 523264 5 4 5 1 1 1 1 1 1 0 0.55 1.00 -9289 LDHB lactate dehydrogenase B 231392 3 2 3 0 0 3 0 0 0 0 0.55 1.00 -9290 TRMT5 TRM5 tRNA methyltransferase 5 homolog (S. cerevisiae) 347200 4 2 4 0 1 1 1 0 1 0 0.55 1.00 -9291 IRF3 interferon regulatory factor 3 288584 2 2 2 0 2 0 0 0 0 0 0.55 1.00 -9292 DHRS7C dehydrogenase/reductase (SDR family) member 7C 214496 2 2 2 0 0 1 1 0 0 0 0.55 1.00 -9293 CEACAM7 carcinoembryonic antigen-related cell adhesion molecule 7 182336 2 2 2 1 1 1 0 0 0 0 0.55 1.00 -9294 LBX2 ladybird homeobox 2 125188 1 1 1 0 0 0 0 0 1 0 0.55 1.00 -9295 ZNF286A zinc finger protein 286A 349688 7 3 7 1 1 6 0 0 0 0 0.55 1.00 -9296 KTELC1 KTEL (Lys-Tyr-Glu-Leu) containing 1 273952 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9297 OR10G3 olfactory receptor, family 10, subfamily G, member 3 211904 1 1 1 2 1 0 0 0 0 0 0.55 1.00 -9298 FCGR1A Fc fragment of IgG, high affinity Ia, receptor (CD64) 243208 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -9299 BTBD16 BTB (POZ) domain containing 16 354144 4 3 4 1 2 1 1 0 0 0 0.55 1.00 -9300 IL2RA interleukin 2 receptor, alpha 190624 2 2 2 1 2 0 0 0 0 0 0.55 1.00 -9301 HLA-C major histocompatibility complex, class I, C 215740 2 2 2 0 0 1 0 1 0 0 0.55 1.00 -9302 ANKRD34B ankyrin repeat domain 34B 346976 2 2 2 1 1 1 0 0 0 0 0.55 1.00 -9303 PNMA3 paraneoplastic antigen MA3 312368 2 2 2 0 0 0 1 0 1 0 0.55 1.00 -9304 RNASEL ribonuclease L (2',5'-oligoisoadenylate synthetase-dependent) 504000 3 3 3 0 2 0 1 0 0 0 0.55 1.00 -9305 MTUS1 mitochondrial tumor suppressor 1 938112 11 6 11 5 2 5 3 0 1 0 0.55 1.00 -9306 PBLD phenazine biosynthesis-like protein domain containing 204512 1 1 1 1 0 1 0 0 0 0 0.55 1.00 -9307 C3orf15 chromosome 3 open reading frame 15 530376 4 4 4 1 1 0 2 0 1 0 0.55 1.00 -9308 FAM153A family with sequence similarity 153, member A 150696 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -9309 NBPF7 neuroblastoma breakpoint family, member 7 290752 2 2 2 0 0 0 2 0 0 0 0.55 1.00 -9310 CORO6 coronin 6 281344 2 2 2 2 0 0 1 0 1 0 0.55 1.00 -9311 ALKBH7 alkB, alkylation repair homolog 7 (E. coli) 101472 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -9312 RND3 Rho family GTPase 3 169120 2 2 2 0 1 1 0 0 0 0 0.55 1.00 -9313 VPS35 vacuolar protein sorting 35 homolog (S. cerevisiae) 550816 3 3 3 0 1 0 1 0 1 0 0.55 1.00 -9314 PDK1 pyruvate dehydrogenase kinase, isozyme 1 269780 2 2 2 0 0 0 1 0 1 0 0.55 1.00 -9315 LYG2 lysozyme G-like 2 147616 1 1 1 2 0 0 1 0 0 0 0.55 1.00 -9316 MUTYH mutY homolog (E. coli) 383768 2 2 2 3 1 0 0 0 1 0 0.55 1.00 -9317 VTI1A vesicle transport through interaction with t-SNAREs homolog 1A (yeast) 153664 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9318 RAD9B RAD9 homolog B (S. cerevisiae) 295768 4 2 4 0 0 3 0 0 1 0 0.55 1.00 -9319 GOT1L1 glutamic-oxaloacetic transaminase 1-like 1 218664 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9320 SNRPC small nuclear ribonucleoprotein polypeptide C 112896 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -9321 PTCH2 patched homolog 2 (Drosophila) 802976 6 6 6 0 3 3 0 0 0 0 0.55 1.00 -9322 CADPS2 Ca2+-dependent activator protein for secretion 2 825680 7 5 7 0 3 0 3 0 1 0 0.55 1.00 -9323 MCM4 minichromosome maintenance complex component 4 578368 4 4 4 1 2 0 1 0 1 0 0.55 1.00 -9324 NLRC4 NLR family, CARD domain containing 4 695968 12 6 10 4 4 4 3 1 0 0 0.55 1.00 -9325 TMEM214 444192 3 3 3 2 0 3 0 0 0 0 0.55 1.00 -9326 PCK2 phosphoenolpyruvate carboxykinase 2 (mitochondrial) 452928 4 3 4 0 1 1 1 0 1 0 0.55 1.00 -9327 DIRAS3 DIRAS family, GTP-binding RAS-like 3 155456 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -9328 ADH5 alcohol dehydrogenase 5 (class III), chi polypeptide 260064 1 1 1 1 0 1 0 0 0 0 0.55 1.00 -9329 GP2 glycoprotein 2 (zymogen granule membrane) 368480 4 4 3 3 3 1 0 0 0 0 0.55 1.00 -9330 FAM118B family with sequence similarity 118, member B 242816 3 2 3 1 2 0 1 0 0 0 0.55 1.00 -9331 MPP5 membrane protein, palmitoylated 5 (MAGUK p55 subfamily member 5) 465920 3 3 3 0 2 0 0 0 1 0 0.55 1.00 -9332 TCF4 transcription factor 4 467712 4 4 4 0 2 1 1 0 0 0 0.55 1.00 -9333 TMEM64 transmembrane protein 64 129368 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -9334 PLEKHF2 pleckstrin homology domain containing, family F (with FYVE domain) member 2 168896 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -9335 TM4SF20 transmembrane 4 L six family member 20 158144 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -9336 FAM127A family with sequence similarity 127, member A 77504 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -9337 OPALIN 103712 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9338 GYG2 glycogenin 2 318264 3 3 3 2 2 1 0 0 0 0 0.55 1.00 -9339 GOPC golgi associated PDZ and coiled-coil motif containing 316932 3 3 3 0 2 1 0 0 0 0 0.55 1.00 -9340 FAM186B 607040 5 4 5 0 3 1 0 0 1 0 0.55 1.00 -9341 SCN1B sodium channel, voltage-gated, type I, beta 144032 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -9342 PINK1 PTEN induced putative kinase 1 320208 3 3 3 1 1 1 1 0 0 0 0.55 1.00 -9343 NSUN6 NOL1/NOP2/Sun domain family, member 6 325696 2 2 2 0 0 1 0 0 1 0 0.55 1.00 -9344 THOC3 THO complex 3 178688 2 2 2 0 1 1 0 0 0 0 0.55 1.00 -9345 HSPBP1 210680 2 2 2 0 0 1 1 0 0 0 0.55 1.00 -9346 PPP1CC protein phosphatase 1, catalytic subunit, gamma isoform 218344 2 2 2 0 0 2 0 0 0 0 0.55 1.00 -9347 PXMP4 peroxisomal membrane protein 4, 24kDa 146048 2 1 2 0 1 0 1 0 0 0 0.55 1.00 -9348 C6orf26 chromosome 6 open reading frame 26 102676 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9349 AP2B1 adaptor-related protein complex 2, beta 1 subunit 658560 4 4 4 1 0 2 0 0 2 0 0.55 1.00 -9350 ZBTB25 zinc finger and BTB domain containing 25 294784 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -9351 GDPD4 glycerophosphodiester phosphodiesterase domain containing 4 363552 3 2 3 1 0 1 1 0 1 0 0.55 1.00 -9352 CRELD1 cysteine-rich with EGF-like domains 1 336224 2 2 2 0 1 1 0 0 0 0 0.55 1.00 -9353 SEMA5A sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5A 741132 8 6 8 5 4 1 2 0 1 0 0.55 1.00 -9354 PRKD2 protein kinase D2 586320 5 5 5 3 3 0 1 0 1 0 0.55 1.00 -9355 WHAMM 358200 4 3 4 4 3 1 0 0 0 0 0.55 1.00 -9356 DHRS4L1 dehydrogenase/reductase (SDR family) member 4 like 1 183088 1 1 1 2 0 1 0 0 0 0 0.55 1.00 -9357 TRIM26 tripartite motif-containing 26 257348 2 2 2 2 1 1 0 0 0 0 0.55 1.00 -9358 MRPL3 mitochondrial ribosomal protein L3 242228 1 1 1 1 0 0 1 0 0 0 0.55 1.00 -9359 CDYL2 chromodomain protein, Y-like 2 338072 5 4 5 1 1 3 1 0 0 0 0.55 1.00 -9360 BMPER BMP binding endothelial regulator 474432 5 4 5 2 2 3 0 0 0 0 0.55 1.00 -9361 ANKRD27 ankyrin repeat domain 27 (VPS9 domain) 727664 6 6 6 0 3 1 1 0 1 0 0.55 1.00 -9362 MMP26 matrix metallopeptidase 26 181440 2 1 2 1 0 1 0 0 1 0 0.55 1.00 -9363 IGLL1 immunoglobulin lambda-like polypeptide 1 107296 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9364 ZNF365 zinc finger protein 365 474712 5 3 5 2 0 5 0 0 0 0 0.55 1.00 -9365 SFXN4 sideroflexin 4 239680 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9366 NDUFA10 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 10, 42kDa 230496 2 2 2 2 1 1 0 0 0 0 0.55 1.00 -9367 TMEM222 131576 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9368 GAR1 151872 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9369 NAV2 neuron navigator 2 1657432 17 14 17 8 9 5 3 0 0 0 0.55 1.00 -9370 EIF5 eukaryotic translation initiation factor 5 299264 3 2 3 0 0 0 3 0 0 0 0.55 1.00 -9371 FRZB frizzled-related protein 213244 2 2 2 0 1 0 1 0 0 0 0.55 1.00 -9372 CD19 CD19 molecule 360500 3 2 3 1 1 1 0 0 1 0 0.55 1.00 -9373 SMEK2 SMEK homolog 2, suppressor of mek1 (Dictyostelium) 527520 4 3 4 0 0 1 1 0 2 0 0.55 1.00 -9374 RS1 retinoschisis (X-linked, juvenile) 1 156576 2 2 2 3 2 0 0 0 0 0 0.55 1.00 -9375 ZNF548 zinc finger protein 548 367136 5 3 5 2 1 2 1 0 1 0 0.55 1.00 -9376 POLE3 polymerase (DNA directed), epsilon 3 (p17 subunit) 95152 1 1 1 1 1 0 0 0 0 0 0.55 1.00 -9377 CCM2 cerebral cavernous malformation 2 306288 3 2 3 0 1 0 0 0 0 2 0.55 1.00 -9378 POP5 processing of precursor 5, ribonuclease P/MRP subunit (S. cerevisiae) 112924 2 1 2 0 0 1 1 0 0 0 0.55 1.00 -9379 CECR1 cat eye syndrome chromosome region, candidate 1 359660 2 2 2 4 1 1 0 0 0 0 0.55 1.00 -9380 TREML4 triggering receptor expressed on myeloid cells-like 4 139552 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9381 PNP 198216 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9382 POLR3K polymerase (RNA) III (DNA directed) polypeptide K, 12.3 kDa 75936 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -9383 IREB2 iron-responsive element binding protein 2 667520 6 4 6 1 2 3 0 0 1 0 0.55 1.00 -9384 SGPL1 sphingosine-1-phosphate lyase 1 394912 3 3 3 2 3 0 0 0 0 0 0.55 1.00 -9385 ANGPTL3 angiopoietin-like 3 316064 2 2 2 1 1 1 0 0 0 0 0.55 1.00 -9386 SLC4A3 solute carrier family 4, anion exchanger, member 3 832656 8 6 8 5 4 1 2 0 1 0 0.55 1.00 -9387 FANCG Fanconi anemia, complementation group G 431200 4 3 4 1 1 2 0 0 1 0 0.55 1.00 -9388 CYP4A11 cytochrome P450, family 4, subfamily A, polypeptide 11 360192 3 3 3 3 1 2 0 0 0 0 0.55 1.00 -9389 ODF3L2 74508 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9390 DLX2 distal-less homeobox 2 150228 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9391 KRT17 keratin 17 282940 2 2 2 0 2 0 0 0 0 0 0.55 1.00 -9392 HIST2H3D histone cluster 2, H3d 92960 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9393 GBX1 gastrulation brain homeobox 1 153076 1 1 1 0 0 0 0 0 1 0 0.55 1.00 -9394 ZXDC ZXD family zinc finger C 428424 3 3 3 1 0 2 1 0 0 0 0.55 1.00 -9395 SLC28A2 solute carrier family 28 (sodium-coupled nucleoside transporter), member 2 458080 2 2 2 0 0 1 1 0 0 0 0.55 1.00 -9396 FAM124A family with sequence similarity 124A 321748 4 4 4 3 2 1 1 0 0 0 0.55 1.00 -9397 ZNF462 zinc finger protein 462 1695456 12 10 12 8 7 0 3 0 2 0 0.55 1.00 -9398 SLC25A30 solute carrier family 25, member 30 204288 2 2 2 1 0 2 0 0 0 0 0.55 1.00 -9399 PGAM5 phosphoglycerate mutase family member 5 112420 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9400 ZNF197 zinc finger protein 197 705376 4 4 4 2 0 3 0 0 1 0 0.55 1.00 -9401 IVNS1ABP influenza virus NS1A binding protein 443744 5 3 5 0 2 2 1 0 0 0 0.55 1.00 -9402 RNPS1 RNA binding protein S1, serine-rich domain 192920 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -9403 TAS2R60 taste receptor, type 2, member 60 215264 2 2 2 0 2 0 0 0 0 0 0.55 1.00 -9404 TMEM186 transmembrane protein 186 145600 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9405 SPC25 SPC25, NDC80 kinetochore complex component, homolog (S. cerevisiae) 156576 1 1 1 2 1 0 0 0 0 0 0.56 1.00 -9406 C12orf48 chromosome 12 open reading frame 48 343392 2 2 2 1 1 0 1 0 0 0 0.56 1.00 -9407 NCOA7 nuclear receptor coactivator 7 647136 5 4 5 1 0 2 2 1 0 0 0.56 1.00 -9408 PCDHGB3 protocadherin gamma subfamily B, 3 615944 8 6 8 0 5 2 1 0 0 0 0.56 1.00 -9409 KIAA1328 KIAA1328 373288 2 2 2 0 0 1 0 0 1 0 0.56 1.00 -9410 MAGOHB mago-nashi homolog B (Drosophila) 104608 1 1 1 1 1 0 0 0 0 0 0.56 1.00 -9411 MTX2 metaxin 2 182672 1 1 1 1 0 0 1 0 0 0 0.56 1.00 -9412 TNFAIP8L3 tumor necrosis factor, alpha-induced protein 8-like 3 166432 1 1 1 2 0 1 0 0 0 0 0.56 1.00 -9413 MYL7 myosin, light chain 7, regulatory 124544 1 1 1 2 0 1 0 0 0 0 0.56 1.00 -9414 PADI1 peptidyl arginine deiminase, type I 458140 4 4 4 1 2 1 1 0 0 0 0.56 1.00 -9415 SEMA6C sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6C 476168 4 4 4 1 1 3 0 0 0 0 0.56 1.00 -9416 C6orf192 chromosome 6 open reading frame 192 312984 2 2 2 0 1 1 0 0 0 0 0.56 1.00 -9417 WDFY2 WD repeat and FYVE domain containing 2 280224 2 2 2 0 1 0 1 0 0 0 0.56 1.00 -9418 BCL2L12 BCL2-like 12 (proline rich) 188400 1 1 1 0 0 0 0 0 1 0 0.56 1.00 -9419 ZNF711 zinc finger protein 711 517076 2 2 2 0 0 1 1 0 0 0 0.56 1.00 -9420 TMEM87B transmembrane protein 87B 369908 2 2 2 0 1 0 1 0 0 0 0.56 1.00 -9421 SLC16A14 solute carrier family 16, member 14 (monocarboxylic acid transporter 14) 343616 3 3 3 4 0 0 2 0 1 0 0.56 1.00 -9422 CATSPER2 cation channel, sperm associated 2 369740 2 2 2 1 0 0 1 0 1 0 0.56 1.00 -9423 ACTB actin, beta 209524 2 2 2 0 1 0 1 0 0 0 0.56 1.00 -9424 PCK1 phosphoenolpyruvate carboxykinase 1 (soluble) 426720 3 3 3 1 0 2 0 0 1 0 0.56 1.00 -9425 CACNA2D3 calcium channel, voltage-dependent, alpha 2/delta subunit 3 721968 7 5 6 7 4 0 1 0 0 2 0.56 1.00 -9426 FOXR1 forkhead box R1 193432 2 2 2 1 1 1 0 0 0 0 0.56 1.00 -9427 ADRB3 adrenergic, beta-3-, receptor 108404 1 1 1 2 1 0 0 0 0 0 0.56 1.00 -9428 RBM9 RNA binding motif protein 9 282912 2 2 2 0 1 0 1 0 0 0 0.56 1.00 -9429 PRPF38A PRP38 pre-mRNA processing factor 38 (yeast) domain containing A 219296 2 2 2 0 0 1 1 0 0 0 0.56 1.00 -9430 CLSPN claspin homolog (Xenopus laevis) 922880 6 5 6 2 2 1 3 0 0 0 0.56 1.00 -9431 C15orf52 chromosome 15 open reading frame 52 322148 2 2 2 1 0 0 1 0 1 0 0.56 1.00 -9432 RGS5 regulator of G-protein signaling 5 126784 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9433 KIAA1033 KIAA1033 809656 8 6 8 0 3 3 2 0 0 0 0.56 1.00 -9434 SERPINE1 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1 277984 3 2 3 1 0 2 0 0 1 0 0.56 1.00 -9435 SLC6A2 solute carrier family 6 (neurotransmitter transporter, noradrenalin), member 2 425292 4 4 3 4 3 0 1 0 0 0 0.56 1.00 -9436 SLAMF7 SLAM family member 7 232064 2 2 2 1 1 1 0 0 0 0 0.56 1.00 -9437 HDDC2 HD domain containing 2 123424 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9438 OR51E2 olfactory receptor, family 51, subfamily E, member 2 216608 2 2 2 0 1 1 0 0 0 0 0.56 1.00 -9439 NUB1 negative regulator of ubiquitin-like proteins 1 408288 4 3 3 3 2 2 0 0 0 0 0.56 1.00 -9440 FUT10 fucosyltransferase 10 (alpha (1,3) fucosyltransferase) 326144 3 3 3 5 1 1 1 0 0 0 0.56 1.00 -9441 ZDHHC4 zinc finger, DHHC-type containing 4 237216 1 1 1 2 0 0 0 0 1 0 0.56 1.00 -9442 SPESP1 sperm equatorial segment protein 1 235480 2 2 2 0 0 2 0 0 0 0 0.56 1.00 -9443 NEIL3 nei endonuclease VIII-like 3 (E. coli) 411404 3 3 3 1 1 1 1 0 0 0 0.56 1.00 -9444 PRAF2 PRA1 domain family, member 2 72056 1 1 1 2 1 0 0 0 0 0 0.56 1.00 -9445 TPRG1 tumor protein p63 regulated 1 189952 1 1 1 1 0 1 0 0 0 0 0.56 1.00 -9446 TIMELESS timeless homolog (Drosophila) 837536 5 5 5 2 0 3 0 0 2 0 0.56 1.00 -9447 ACTR1A ARP1 actin-related protein 1 homolog A, centractin alpha (yeast) 263200 2 2 2 0 1 0 1 0 0 0 0.56 1.00 -9448 BUD13 BUD13 homolog (S. cerevisiae) 408072 4 4 4 0 2 1 1 0 0 0 0.56 1.00 -9449 TAAR9 trace amine associated receptor 9 235424 3 2 3 3 0 2 1 0 0 0 0.56 1.00 -9450 SALL3 sal-like 3 (Drosophila) 501676 5 5 5 2 4 1 0 0 0 0 0.56 1.00 -9451 KAT2B 518896 8 3 8 1 1 3 0 0 1 3 0.56 1.00 -9452 ITGA7 integrin, alpha 7 814704 6 6 6 4 3 2 1 0 0 0 0.56 1.00 -9453 ERGIC3 ERGIC and golgi 3 273364 2 2 2 0 0 1 1 0 0 0 0.56 1.00 -9454 ARFGAP2 ADP-ribosylation factor GTPase activating protein 2 356824 3 3 3 2 1 1 0 0 1 0 0.56 1.00 -9455 SPATA20 spermatogenesis associated 20 478240 3 3 3 1 1 1 1 0 0 0 0.56 1.00 -9456 HOXD4 homeobox D4 147028 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9457 MRPS2 mitochondrial ribosomal protein S2 176092 2 2 2 0 2 0 0 0 0 0 0.56 1.00 -9458 C12orf35 chromosome 12 open reading frame 35 1176420 10 7 10 1 2 4 3 0 1 0 0.56 1.00 -9459 RCN3 reticulocalbin 3, EF-hand calcium binding domain 186928 2 2 2 0 2 0 0 0 0 0 0.56 1.00 -9460 ACCSL 394912 4 3 4 1 1 1 1 0 1 0 0.56 1.00 -9461 TDRD7 tudor domain containing 7 752864 6 5 6 0 2 0 4 0 0 0 0.56 1.00 -9462 MAGEH1 melanoma antigen family H, 1 148316 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9463 PCDHGB4 protocadherin gamma subfamily B, 4 592064 4 4 4 1 3 0 0 0 1 0 0.56 1.00 -9464 CLEC12B C-type lectin domain family 12, member B 161056 1 1 1 1 0 1 0 0 0 0 0.56 1.00 -9465 OSCP1 300160 2 2 2 1 0 0 2 0 0 0 0.56 1.00 -9466 TMEM111 transmembrane protein 111 183232 1 1 1 2 0 1 0 0 0 0 0.56 1.00 -9467 ACN9 ACN9 homolog (S. cerevisiae) 86464 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9468 VPS45 vacuolar protein sorting 45 homolog (S. cerevisiae) 397152 3 3 3 0 1 2 0 0 0 0 0.56 1.00 -9469 BCL7C B-cell CLL/lymphoma 7C 151788 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -9470 MPZL3 myelin protein zero-like 3 163968 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9471 CHI3L1 chitinase 3-like 1 (cartilage glycoprotein-39) 267008 3 3 3 2 1 2 0 0 0 0 0.56 1.00 -9472 BARX2 BARX homeobox 2 191744 2 2 2 2 0 2 0 0 0 0 0.56 1.00 -9473 SLC14A1 solute carrier family 14 (urea transporter), member 1 (Kidd blood group) 271488 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9474 ERCC1 excision repair cross-complementing rodent repair deficiency, complementation group 1 (includes overlapping antisense sequence) 237216 2 2 2 2 0 2 0 0 0 0 0.56 1.00 -9475 CCT4 chaperonin containing TCP1, subunit 4 (delta) 369208 2 2 2 0 1 0 1 0 0 0 0.56 1.00 -9476 DDX49 DEAD (Asp-Glu-Ala-Asp) box polypeptide 49 321164 3 3 3 0 2 0 1 0 0 0 0.56 1.00 -9477 ARCN1 archain 1 353024 3 3 3 0 1 1 1 0 0 0 0.56 1.00 -9478 EIF2AK2 eukaryotic translation initiation factor 2-alpha kinase 2 384384 1 1 1 0 0 0 0 0 1 0 0.56 1.00 -9479 THTPA thiamine triphosphatase 156016 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9480 CRKL v-crk sarcoma virus CT10 oncogene homolog (avian)-like 202440 2 2 2 1 1 0 1 0 0 0 0.56 1.00 -9481 TLX3 T-cell leukemia homeobox 3 124336 1 1 1 1 0 1 0 0 0 0 0.56 1.00 -9482 RANBP17 RAN binding protein 17 751968 5 3 5 3 0 1 2 0 0 2 0.56 1.00 -9483 TMEM169 transmembrane protein 169 202048 1 1 1 1 1 0 0 0 0 0 0.56 1.00 -9484 PCIF1 470032 3 3 3 2 0 0 2 0 1 0 0.56 1.00 -9485 EFEMP1 EGF-containing fibulin-like extracellular matrix protein 1 340928 2 2 2 3 1 1 0 0 0 0 0.56 1.00 -9486 TGFB1 transforming growth factor, beta 1 186964 1 1 1 1 0 0 0 0 1 0 0.56 1.00 -9487 STRN striatin, calmodulin binding protein 500948 3 3 3 1 0 1 2 0 0 0 0.56 1.00 -9488 TPD52L3 tumor protein D52-like 3 114464 1 1 1 2 1 0 0 0 0 0 0.56 1.00 -9489 MGMT O-6-methylguanine-DNA methyltransferase 128072 1 1 1 1 0 0 0 0 1 0 0.56 1.00 -9490 FRS2 fibroblast growth factor receptor substrate 2 346528 4 3 4 0 1 2 1 0 0 0 0.56 1.00 -9491 DLL1 delta-like 1 (Drosophila) 384348 4 3 4 3 3 0 0 0 1 0 0.56 1.00 -9492 IRF1 interferon regulatory factor 1 226968 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9493 GNAT3 guanine nucleotide binding protein, alpha transducing 3 244096 2 2 2 0 0 2 0 0 0 0 0.56 1.00 -9494 FKBP7 FK506 binding protein 7 153440 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9495 LEMD3 LEM domain containing 3 502628 7 5 7 1 3 3 1 0 0 0 0.56 1.00 -9496 MOGAT1 monoacylglycerol O-acyltransferase 1 209568 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -9497 TTC39B 437024 3 3 3 3 0 2 1 0 0 0 0.56 1.00 -9498 GPRC5A G protein-coupled receptor, family C, group 5, member A 243264 2 2 1 2 2 0 0 0 0 0 0.56 1.00 -9499 TNK1 tyrosine kinase, non-receptor, 1 368032 3 3 3 1 1 2 0 0 0 0 0.56 1.00 -9500 ALG1L 103264 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9501 ACAA2 acetyl-Coenzyme A acyltransferase 2 261736 1 1 1 1 0 1 0 0 0 0 0.56 1.00 -9502 ZCRB1 zinc finger CCHC-type and RNA binding motif 1 152768 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9503 CDC14A CDC14 cell division cycle 14 homolog A (S. cerevisiae) 443744 4 3 4 1 3 1 0 0 0 0 0.56 1.00 -9504 SRD5A1 steroid-5-alpha-reductase, alpha polypeptide 1 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 1) 142072 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9505 CLIC5 chloride intracellular channel 5 167556 2 2 2 0 2 0 0 0 0 0 0.56 1.00 -9506 TBX1 T-box 1 217728 2 2 2 1 0 1 0 0 1 0 0.56 1.00 -9507 AVIL advillin 568064 4 4 4 2 1 2 1 0 0 0 0.56 1.00 -9508 SLC30A4 solute carrier family 30 (zinc transporter), member 4 295232 2 2 2 0 1 0 1 0 0 0 0.56 1.00 -9509 INSIG1 insulin induced gene 1 204176 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9510 NMNAT2 nicotinamide nucleotide adenylyltransferase 2 233408 2 2 2 0 1 0 1 0 0 0 0.56 1.00 -9511 CHEK1 CHK1 checkpoint homolog (S. pombe) 331296 1 1 1 0 0 0 0 0 1 0 0.56 1.00 -9512 LSP1 lymphocyte-specific protein 1 205720 1 1 1 0 0 0 0 0 1 0 0.56 1.00 -9513 FAM55C family with sequence similarity 55, member C 380800 3 3 3 1 0 2 1 0 0 0 0.56 1.00 -9514 PA2G4 proliferation-associated 2G4, 38kDa 277088 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9515 FAM172A 289184 2 2 2 0 0 1 1 0 0 0 0.56 1.00 -9516 MTX1 metaxin 1 160412 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9517 LSAMP limbic system-associated membrane protein 234080 3 2 3 1 2 0 1 0 0 0 0.56 1.00 -9518 PSMA5 proteasome (prosome, macropain) subunit, alpha type, 5 170688 1 1 1 1 0 0 1 0 0 0 0.56 1.00 -9519 INF2 inverted formin, FH2 and WH2 domain containing 515140 3 3 3 1 0 0 0 0 3 0 0.56 1.00 -9520 P2RY6 pyrimidinergic receptor P2Y, G-protein coupled, 6 174944 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9521 LYPD6B 134816 1 1 1 1 1 0 0 0 0 0 0.56 1.00 -9522 OAZ2 ornithine decarboxylase antizyme 2 115248 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9523 PDCD2L programmed cell death 2-like 218960 1 1 1 3 0 0 1 0 0 0 0.56 1.00 -9524 LACTB2 lactamase, beta 2 200208 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -9525 SNAPC3 small nuclear RNA activating complex, polypeptide 3, 50kDa 264868 3 2 3 2 0 0 3 0 0 0 0.56 1.00 -9526 WDYHV1 124320 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9527 TNKS1BP1 tankyrase 1 binding protein 1, 182kDa 1115928 7 6 7 4 2 3 2 0 0 0 0.56 1.00 -9528 TFIP11 tuftelin interacting protein 11 573888 4 4 4 1 1 0 3 0 0 0 0.56 1.00 -9529 TNP2 transition protein 2 (during histone to protamine replacement) 95200 1 1 1 1 1 0 0 0 0 0 0.56 1.00 -9530 ZAK 641400 6 4 6 1 1 3 1 0 1 0 0.56 1.00 -9531 ANXA1 annexin A1 243936 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9532 HUS1B HUS1 checkpoint homolog b (S. pombe) 160076 1 1 1 0 0 0 0 0 1 0 0.56 1.00 -9533 MMD monocyte to macrophage differentiation-associated 166880 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -9534 NUDT13 nudix (nucleoside diphosphate linked moiety X)-type motif 13 244384 2 2 2 0 1 1 0 0 0 0 0.56 1.00 -9535 PGR progesterone receptor 458164 4 4 4 0 2 1 0 0 1 0 0.56 1.00 -9536 MAEA macrophage erythroblast attacher 272160 4 3 4 1 4 0 0 0 0 0 0.56 1.00 -9537 ZNF223 zinc finger protein 223 328160 2 2 2 1 1 0 1 0 0 0 0.56 1.00 -9538 SEC22C SEC22 vesicle trafficking protein homolog C (S. cerevisiae) 219968 1 1 1 1 0 1 0 0 0 0 0.56 1.00 -9539 CLDN19 claudin 19 144520 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -9540 NINL 912940 11 9 10 2 11 0 0 0 0 0 0.56 1.00 -9541 MDP1 124320 1 1 1 1 0 1 0 0 0 0 0.56 1.00 -9542 ZFYVE1 zinc finger, FYVE domain containing 1 528808 6 4 6 0 4 1 0 1 0 0 0.57 1.00 -9543 ITGB1BP3 integrin beta 1 binding protein 3 132052 1 1 1 2 1 0 0 0 0 0 0.57 1.00 -9544 DTNBP1 dystrobrevin binding protein 1 266448 1 1 1 1 0 0 0 0 1 0 0.57 1.00 -9545 FIGF c-fos induced growth factor (vascular endothelial growth factor D) 244832 2 2 2 1 0 2 0 0 0 0 0.57 1.00 -9546 PPP1R16B protein phosphatase 1, regulatory (inhibitor) subunit 16B 367780 6 4 6 4 5 0 1 0 0 0 0.57 1.00 -9547 MBNL2 muscleblind-like 2 (Drosophila) 278516 3 2 3 1 1 0 2 0 0 0 0.57 1.00 -9548 CD300LB CD300 molecule-like family member b 164192 1 1 1 2 0 1 0 0 0 0 0.57 1.00 -9549 DIO2 deiodinase, iodothyronine, type II 208832 1 1 1 2 1 0 0 0 0 0 0.57 1.00 -9550 DPH5 DPH5 homolog (S. cerevisiae) 198464 1 1 1 0 0 0 0 0 1 0 0.57 1.00 -9551 NIPAL1 279120 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9552 PEX5 peroxisomal biogenesis factor 5 442624 3 3 3 1 2 0 0 0 1 0 0.57 1.00 -9553 NR2F1 nuclear receptor subfamily 2, group F, member 1 218400 3 3 3 3 2 0 1 0 0 0 0.57 1.00 -9554 VSIG2 V-set and immunoglobulin domain containing 2 219128 2 2 2 0 1 0 0 0 1 0 0.57 1.00 -9555 PLEKHA8 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 8 294472 3 2 3 0 0 2 1 0 0 0 0.57 1.00 -9556 DCAF11 380128 3 3 3 1 1 1 0 0 1 0 0.57 1.00 -9557 FRK fyn-related kinase 347200 4 3 4 0 2 1 1 0 0 0 0.57 1.00 -9558 ART1 ADP-ribosyltransferase 1 220052 2 2 2 0 0 2 0 0 0 0 0.57 1.00 -9559 TSSC1 tumor suppressing subtransferable candidate 1 260176 2 2 2 1 2 0 0 0 0 0 0.57 1.00 -9560 NONO non-POU domain containing, octamer-binding 296496 2 2 2 0 1 1 0 0 0 0 0.57 1.00 -9561 CCDC109B coiled-coil domain containing 109B 174944 1 1 1 1 0 0 1 0 0 0 0.57 1.00 -9562 NFE2L1 nuclear factor (erythroid-derived 2)-like 1 523936 4 4 4 2 1 2 1 0 0 0 0.57 1.00 -9563 MRAS muscle RAS oncogene homolog 144928 1 1 1 1 1 0 0 0 0 0 0.57 1.00 -9564 PARL presenilin associated, rhomboid-like 253232 2 2 2 1 1 1 0 0 0 0 0.57 1.00 -9565 WBP11 WW domain binding protein 11 441280 2 2 2 1 0 1 0 0 1 0 0.57 1.00 -9566 HSPA4L heat shock 70kDa protein 4-like 581504 4 4 4 3 1 1 2 0 0 0 0.57 1.00 -9567 CCNT1 cyclin T1 496608 3 3 3 1 2 0 0 0 1 0 0.57 1.00 -9568 SLC7A10 solute carrier family 7, (neutral amino acid transporter, y+ system) member 10 337336 3 3 3 1 2 1 0 0 0 0 0.57 1.00 -9569 GEMIN4 gem (nuclear organelle) associated protein 4 665364 3 3 3 1 0 1 0 0 2 0 0.57 1.00 -9570 TLCD1 TLC domain containing 1 145096 1 1 1 0 0 0 0 1 0 0 0.57 1.00 -9571 ZNF416 zinc finger protein 416 395136 3 3 3 2 1 1 1 0 0 0 0.57 1.00 -9572 PSMD8 proteasome (prosome, macropain) 26S subunit, non-ATPase, 8 128196 1 1 1 1 0 1 0 0 0 0 0.57 1.00 -9573 NMT2 N-myristoyltransferase 2 346080 3 2 3 0 0 2 0 0 1 0 0.57 1.00 -9574 YWHAH tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, eta polypeptide 147392 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9575 ZNF584 zinc finger protein 584 284088 2 2 2 1 0 2 0 0 0 0 0.57 1.00 -9576 GEN1 Gen homolog 1, endonuclease (Drosophila) 622496 6 4 5 1 2 1 2 0 1 0 0.57 1.00 -9577 SHOX2 short stature homeobox 2 176284 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -9578 RECK reversion-inducing-cysteine-rich protein with kazal motifs 648704 5 5 5 1 3 0 1 0 1 0 0.57 1.00 -9579 ELL elongation factor RNA polymerase II 372400 3 3 3 1 1 0 0 0 2 0 0.57 1.00 -9580 GEFT 439768 2 2 2 0 2 0 0 0 0 0 0.57 1.00 -9581 HIPK1 homeodomain interacting protein kinase 1 850080 6 6 6 3 2 2 2 0 0 0 0.57 1.00 -9582 XYLT1 xylosyltransferase I 573664 7 6 7 1 3 2 2 0 0 0 0.57 1.00 -9583 PPHLN1 periphilin 1 322028 2 2 2 2 1 1 0 0 0 0 0.57 1.00 -9584 CRISPLD2 cysteine-rich secretory protein LCCL domain containing 2 347200 4 3 4 1 1 1 1 0 1 0 0.57 1.00 -9585 LRCH2 leucine-rich repeats and calponin homology (CH) domain containing 2 350376 2 2 2 1 0 1 1 0 0 0 0.57 1.00 -9586 RNF144B ring finger 144B 210560 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9587 NRSN2 neurensin 2 139552 1 1 1 1 0 1 0 0 0 0 0.57 1.00 -9588 MIS12 MIS12, MIND kinetochore complex component, homolog (yeast) 139328 2 1 2 1 1 0 1 0 0 0 0.57 1.00 -9589 CPOX coproporphyrinogen oxidase 242956 1 1 1 2 0 0 1 0 0 0 0.57 1.00 -9590 SAFB scaffold attachment factor B 465160 3 3 3 1 1 1 0 0 1 0 0.57 1.00 -9591 UNC5B unc-5 homolog B (C. elegans) 604848 6 6 6 2 5 1 0 0 0 0 0.57 1.00 -9592 ARFGAP3 ADP-ribosylation factor GTPase activating protein 3 351832 3 3 3 0 1 1 1 0 0 0 0.57 1.00 -9593 GPBAR1 G protein-coupled bile acid receptor 1 189504 2 2 2 0 1 1 0 0 0 0 0.57 1.00 -9594 FGD3 FYVE, RhoGEF and PH domain containing 3 498344 2 2 2 0 0 0 0 0 2 0 0.57 1.00 -9595 CD300LD CD300 molecule-like family member d 134624 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9596 ROBLD3 85568 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9597 GLT6D1 glycosyltransferase 6 domain containing 1 188636 2 2 2 2 1 1 0 0 0 0 0.57 1.00 -9598 MRPS27 mitochondrial ribosomal protein S27 288736 2 2 2 0 0 1 1 0 0 0 0.57 1.00 -9599 C8orf84 160580 2 2 2 0 1 0 1 0 0 0 0.57 1.00 -9600 LYPD6 LY6/PLAUR domain containing 6 119168 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9601 TBC1D19 TBC1 domain family, member 19 372960 1 1 1 0 0 0 0 0 1 0 0.57 1.00 -9602 ZNF432 zinc finger protein 432 442400 8 4 8 2 1 6 1 0 0 0 0.57 1.00 -9603 PLD2 phospholipase D2 649152 2 2 2 1 0 1 0 0 1 0 0.57 1.00 -9604 MACF1 microtubule-actin crosslinking factor 1 5113164 42 23 40 10 15 16 8 1 2 0 0.57 1.00 -9605 WNT5A wingless-type MMTV integration site family, member 5A 218920 3 2 3 1 1 0 1 0 1 0 0.57 1.00 -9606 RUNX3 runt-related transcription factor 3 201488 2 2 2 3 2 0 0 0 0 0 0.57 1.00 -9607 GPM6B glycoprotein M6B 247296 1 1 1 0 0 0 0 0 1 0 0.57 1.00 -9608 TYROBP TYRO protein tyrosine kinase binding protein 79576 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9609 ZKSCAN3 zinc finger with KRAB and SCAN domains 3 366688 2 2 2 1 0 2 0 0 0 0 0.57 1.00 -9610 GMPR guanosine monophosphate reductase 220192 2 2 2 3 2 0 0 0 0 0 0.57 1.00 -9611 PTP4A2 protein tyrosine phosphatase type IVA, member 2 117376 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9612 ZNF185 zinc finger protein 185 (LIM domain) 386296 3 3 3 0 0 2 1 0 0 0 0.57 1.00 -9613 TDRKH tudor and KH domain containing 388416 2 2 2 2 2 0 0 0 0 0 0.57 1.00 -9614 TRIM10 tripartite motif-containing 10 258160 4 3 4 3 2 2 0 0 0 0 0.57 1.00 -9615 CTAGE1 cutaneous T-cell lymphoma-associated antigen 1 502208 3 3 3 1 0 2 1 0 0 0 0.57 1.00 -9616 SPTLC2 serine palmitoyltransferase, long chain base subunit 2 358624 2 2 2 2 0 1 0 1 0 0 0.57 1.00 -9617 KCNMB2 potassium large conductance calcium-activated channel, subfamily M, beta member 2 162176 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -9618 C14orf135 chromosome 14 open reading frame 135 639072 3 3 3 0 0 1 1 0 1 0 0.57 1.00 -9619 DALRD3 DALR anticodon binding domain containing 3 300916 2 2 2 0 1 0 0 0 1 0 0.57 1.00 -9620 MYD88 myeloid differentiation primary response gene (88) 195300 2 2 2 1 0 1 1 0 0 0 0.57 1.00 -9621 BLOC1S2 biogenesis of lysosome-related organelles complex-1, subunit 2 95480 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -9622 TUBGCP5 tubulin, gamma complex associated protein 5 696808 5 5 5 2 0 5 0 0 0 0 0.57 1.00 -9623 DDHD2 DDHD domain containing 2 495040 3 3 3 1 0 3 0 0 0 0 0.57 1.00 -9624 SLC13A2 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 2 411488 6 4 6 2 3 3 0 0 0 0 0.57 1.00 -9625 DLL3 delta-like 3 (Drosophila) 252140 3 3 3 1 1 1 0 0 1 0 0.57 1.00 -9626 NFS1 NFS1 nitrogen fixation 1 homolog (S. cerevisiae) 296800 2 2 2 0 1 0 1 0 0 0 0.57 1.00 -9627 BOLA1 bolA homolog 1 (E. coli) 89516 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -9628 PSMD14 proteasome (prosome, macropain) 26S subunit, non-ATPase, 14 207208 1 1 1 1 0 0 1 0 0 0 0.57 1.00 -9629 CLIP2 CAP-GLY domain containing linker protein 2 659940 5 5 5 2 2 0 1 1 1 0 0.57 1.00 -9630 STOML2 stomatin (EPB72)-like 2 248864 4 3 4 0 4 0 0 0 0 0 0.57 1.00 -9631 MORC3 MORC family CW-type zinc finger 3 637280 6 4 6 1 2 4 0 0 0 0 0.57 1.00 -9632 C8orf45 chromosome 8 open reading frame 45 406784 4 3 4 1 1 1 2 0 0 0 0.57 1.00 -9633 DFFB DNA fragmentation factor, 40kDa, beta polypeptide (caspase-activated DNase) 224084 2 2 2 1 1 1 0 0 0 0 0.57 1.00 -9634 CENPP centromere protein P 180208 1 1 1 1 0 1 0 0 0 0 0.57 1.00 -9635 IFRD2 interferon-related developmental regulator 2 275224 2 2 2 0 2 0 0 0 0 0 0.57 1.00 -9636 TMEM161A transmembrane protein 161A 284788 2 2 2 1 0 1 1 0 0 0 0.57 1.00 -9637 MPV17L2 111300 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -9638 OSM oncostatin M 160776 1 1 1 1 0 0 0 0 1 0 0.57 1.00 -9639 PPIH peptidylprolyl isomerase H (cyclophilin H) 127680 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9640 LPCAT2 lysophosphatidylcholine acyltransferase 2 357924 2 2 2 1 0 1 0 0 1 0 0.57 1.00 -9641 SAMD7 sterile alpha motif domain containing 7 304892 2 2 2 2 0 2 0 0 0 0 0.57 1.00 -9642 PDHB pyruvate dehydrogenase (lipoamide) beta 249368 2 2 2 1 0 2 0 0 0 0 0.57 1.00 -9643 ICOS inducible T-cell co-stimulator 138880 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -9644 IFITM2 interferon induced transmembrane protein 2 (1-8D) 90832 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9645 RHOBTB3 Rho-related BTB domain containing 3 422016 5 3 5 0 2 2 1 0 0 0 0.57 1.00 -9646 PRDM12 PR domain containing 12 158900 2 2 2 1 2 0 0 0 0 0 0.57 1.00 -9647 UCP3 uncoupling protein 3 (mitochondrial, proton carrier) 213164 2 2 2 0 1 0 1 0 0 0 0.57 1.00 -9648 NUCKS1 nuclear casein kinase and cyclin-dependent kinase substrate 1 170240 1 1 1 0 0 0 0 0 1 0 0.57 1.00 -9649 CD207 CD207 molecule, langerin 226464 2 2 2 0 1 1 0 0 0 0 0.57 1.00 -9650 SFXN5 sideroflexin 5 223152 2 2 2 0 1 1 0 0 0 0 0.57 1.00 -9651 ACER2 185272 1 1 1 1 1 0 0 0 0 0 0.57 1.00 -9652 ZNF280A zinc finger protein 280A 365792 3 3 3 1 1 1 0 0 1 0 0.57 1.00 -9653 TUBA1B tubulin, alpha 1b 294728 2 2 2 0 1 1 0 0 0 0 0.57 1.00 -9654 SIPA1L3 signal-induced proliferation-associated 1 like 3 1065264 8 8 8 0 3 3 2 0 0 0 0.57 1.00 -9655 RNF14 ring finger protein 14 325472 2 2 2 0 0 1 1 0 0 0 0.57 1.00 -9656 SPTAN1 spectrin, alpha, non-erythrocytic 1 (alpha-fodrin) 1695132 14 11 14 7 7 2 1 0 2 2 0.57 1.00 -9657 KRT76 keratin 76 415712 2 2 2 2 0 2 0 0 0 0 0.57 1.00 -9658 DIAPH3 diaphanous homolog 3 (Drosophila) 818132 5 4 5 3 1 2 2 0 0 0 0.57 1.00 -9659 SGK223 828016 7 6 7 2 3 1 1 0 2 0 0.57 1.00 -9660 FOXN4 forkhead box N4 205820 2 2 2 3 2 0 0 0 0 0 0.57 1.00 -9661 UPK3B uroplakin 3B 204568 1 1 1 0 0 0 0 0 1 0 0.57 1.00 -9662 UTP3 UTP3, small subunit (SSU) processome component, homolog (S. cerevisiae) 323456 4 3 4 0 3 1 0 0 0 0 0.57 1.00 -9663 VNN2 vanin 2 356384 2 2 2 4 0 1 1 0 0 0 0.57 1.00 -9664 VPREB1 pre-B lymphocyte gene 1 96544 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -9665 RAB17 RAB17, member RAS oncogene family 147616 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -9666 SRBD1 S1 RNA binding domain 1 687232 6 4 6 0 1 2 2 0 1 0 0.57 1.00 -9667 ADK adenosine kinase 248440 1 1 1 1 0 0 0 0 1 0 0.57 1.00 -9668 UBL4B ubiquitin-like 4B 106820 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9669 ZMAT2 zinc finger, matrin type 2 139776 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -9670 EXOC6B exocyst complex component 6B 535592 4 4 4 0 2 2 0 0 0 0 0.57 1.00 -9671 DNAJC18 DnaJ (Hsp40) homolog, subfamily C, member 18 248416 3 2 3 1 2 0 1 0 0 0 0.57 1.00 -9672 RNF11 ring finger protein 11 106848 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9673 EPDR1 ependymin related protein 1 (zebrafish) 193956 1 1 1 1 0 1 0 0 0 0 0.57 1.00 -9674 BHLHE41 160568 1 1 1 2 0 1 0 0 0 0 0.57 1.00 -9675 ABCA4 ATP-binding cassette, sub-family A (ABC1), member 4 1572384 14 9 14 11 4 6 0 0 4 0 0.57 1.00 -9676 TRAK2 trafficking protein, kinesin binding 2 628320 5 5 5 1 2 1 1 0 1 0 0.57 1.00 -9677 HAS3 hyaluronan synthase 3 390488 4 4 4 2 3 1 0 0 0 0 0.57 1.00 -9678 SERPINA7 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 7 283136 1 1 1 2 0 0 1 0 0 0 0.57 1.00 -9679 ATXN7L2 ataxin 7-like 2 470988 3 3 3 1 1 1 0 0 1 0 0.57 1.00 -9680 L3MBTL3 l(3)mbt-like 3 (Drosophila) 543648 3 3 3 1 0 2 0 0 1 0 0.57 1.00 -9681 TMEM107 transmembrane protein 107 103264 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -9682 ACY1 aminoacylase 1 287308 2 2 2 1 0 0 2 0 0 0 0.57 1.00 -9683 CCDC66 coiled-coil domain containing 66 574784 3 3 3 0 0 2 0 0 1 0 0.57 1.00 -9684 WISP3 WNT1 inducible signaling pathway protein 3 255136 3 2 3 0 1 2 0 0 0 0 0.57 1.00 -9685 LCN9 lipocalin 9 122072 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -9686 AGPS alkylglycerone phosphate synthase 401632 3 3 3 4 1 1 1 0 0 0 0.57 1.00 -9687 TAF7 TAF7 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 55kDa 236096 2 2 2 0 0 2 0 0 0 0 0.57 1.00 -9688 NKIRAS1 NFKB inhibitor interacting Ras-like 1 132384 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9689 NDUFS4 NADH dehydrogenase (ubiquinone) Fe-S protein 4, 18kDa (NADH-coenzyme Q reductase) 122752 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -9690 KARS lysyl-tRNA synthetase 448000 3 3 3 0 2 0 1 0 0 0 0.57 1.00 -9691 HGFAC HGF activator 280224 2 2 2 0 0 0 0 1 1 0 0.58 1.00 -9692 BID BH3 interacting domain death agonist 147168 1 1 1 1 0 1 0 0 0 0 0.58 1.00 -9693 ZC3H12A zinc finger CCCH-type containing 12A 395500 3 3 3 0 2 1 0 0 0 0 0.58 1.00 -9694 GAL3ST2 galactose-3-O-sulfotransferase 2 142884 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -9695 CCNY cyclin Y 227096 2 2 2 0 1 0 1 0 0 0 0.58 1.00 -9696 ZDHHC9 zinc finger, DHHC-type containing 9 253344 2 2 2 1 0 2 0 0 0 0 0.58 1.00 -9697 GJD2 gap junction protein, delta 2, 36kDa 218008 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -9698 ASGR2 asialoglycoprotein receptor 2 215880 2 2 2 0 0 2 0 0 0 0 0.58 1.00 -9699 BTN2A2 butyrophilin, subfamily 2, member A2 358400 4 3 4 1 2 2 0 0 0 0 0.58 1.00 -9700 BCL7B B-cell CLL/lymphoma 7B 128032 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -9701 PCDHGA12 protocadherin gamma subfamily A, 12 629188 8 7 8 2 6 1 1 0 0 0 0.58 1.00 -9702 ASCL4 achaete-scute complex homolog 4 (Drosophila) 77476 1 1 1 2 1 0 0 0 0 0 0.58 1.00 -9703 ISG20 interferon stimulated exonuclease gene 20kDa 124992 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -9704 CLINT1 clathrin interactor 1 420544 3 3 3 1 1 1 0 0 1 0 0.58 1.00 -9705 MRPL27 mitochondrial ribosomal protein L27 103712 1 1 1 1 0 1 0 0 0 0 0.58 1.00 -9706 VWA2 von Willebrand factor A domain containing 2 487996 5 5 5 1 3 2 0 0 0 0 0.58 1.00 -9707 PTPN9 protein tyrosine phosphatase, non-receptor type 9 395808 3 3 3 1 3 0 0 0 0 0 0.58 1.00 -9708 HLA-DPA1 major histocompatibility complex, class II, DP alpha 1 111860 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -9709 BDKRB2 bradykinin receptor B2 265216 3 3 3 2 2 1 0 0 0 0 0.58 1.00 -9710 SPTY2D1 SPT2, Suppressor of Ty, domain containing 1 (S. cerevisiae) 466368 6 4 6 1 5 0 0 0 1 0 0.58 1.00 -9711 GRIK5 glutamate receptor, ionotropic, kainate 5 568880 6 6 6 2 4 1 1 0 0 0 0.58 1.00 -9712 ZCCHC11 zinc finger, CCHC domain containing 11 1132096 10 6 10 4 4 4 1 0 1 0 0.58 1.00 -9713 CYP24A1 cytochrome P450, family 24, subfamily A, polypeptide 1 346108 3 3 3 1 0 0 3 0 0 0 0.58 1.00 -9714 MATN2 matrilin 2 659232 7 5 7 3 4 2 1 0 0 0 0.58 1.00 -9715 FAM98B family with sequence similarity 98, member B 245360 2 2 2 3 1 1 0 0 0 0 0.58 1.00 -9716 WIPI2 WD repeat domain, phosphoinositide interacting 2 311332 2 2 2 0 1 0 1 0 0 0 0.58 1.00 -9717 RELA v-rel reticuloendotheliosis viral oncogene homolog A, nuclear factor of kappa light polypeptide gene enhancer in B-cells 3, p65 (avian) 339536 2 2 2 2 1 0 0 0 1 0 0.58 1.00 -9718 CLK4 CDC-like kinase 4 334656 2 2 2 1 1 0 1 0 0 0 0.58 1.00 -9719 CCDC134 coiled-coil domain containing 134 159936 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -9720 DBF4B DBF4 homolog B (S. cerevisiae) 425020 4 3 3 1 0 3 0 0 1 0 0.58 1.00 -9721 ZNF660 zinc finger protein 660 224000 1 1 1 1 0 1 0 0 0 0 0.58 1.00 -9722 C8orf79 chromosome 8 open reading frame 79 308448 2 2 2 0 1 1 0 0 0 0 0.58 1.00 -9723 ANKRD35 ankyrin repeat domain 35 682640 8 6 8 1 1 7 0 0 0 0 0.58 1.00 -9724 CHGA chromogranin A (parathyroid secretory protein 1) 202508 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -9725 EIF2S2 eukaryotic translation initiation factor 2, subunit 2 beta, 38kDa 232376 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -9726 TARSL2 threonyl-tRNA synthetase-like 2 496216 3 3 3 0 1 1 0 0 1 0 0.58 1.00 -9727 PTTG1 pituitary tumor-transforming 1 140896 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -9728 RPL7 ribosomal protein L7 172452 1 1 1 1 1 0 0 0 0 0 0.58 1.00 -9729 GNPAT glyceronephosphate O-acyltransferase 471968 2 2 2 0 0 1 0 0 1 0 0.58 1.00 -9730 PEX1 peroxisome biogenesis factor 1 861280 4 3 4 2 0 2 0 0 2 0 0.58 1.00 -9731 RNF149 ring finger protein 149 227528 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -9732 C7orf41 chromosome 7 open reading frame 41 85640 1 1 1 1 0 1 0 0 0 0 0.58 1.00 -9733 OASL 2'-5'-oligoadenylate synthetase-like 351456 3 3 3 1 0 3 0 0 0 0 0.58 1.00 -9734 ATP1A1 ATPase, Na+/K+ transporting, alpha 1 polypeptide 705152 4 4 4 5 1 0 2 0 1 0 0.58 1.00 -9735 KRTAP24-1 keratin associated protein 24-1 172256 1 1 1 2 0 1 0 0 0 0 0.58 1.00 -9736 ARL3 ADP-ribosylation factor-like 3 128352 1 1 1 2 0 1 0 0 0 0 0.58 1.00 -9737 MCM3 minichromosome maintenance complex component 3 558880 4 3 4 0 1 1 0 0 2 0 0.58 1.00 -9738 ACAT2 acetyl-Coenzyme A acetyltransferase 2 275520 2 2 2 0 0 2 0 0 0 0 0.58 1.00 -9739 TACR1 tachykinin receptor 1 279552 2 2 2 5 0 1 1 0 0 0 0.58 1.00 -9740 PUS3 pseudouridylate synthase 3 309960 3 3 3 0 2 1 0 0 0 0 0.58 1.00 -9741 REEP5 receptor accessory protein 5 132160 1 1 1 1 0 1 0 0 0 0 0.58 1.00 -9742 UBE2D3 ubiquitin-conjugating enzyme E2D 3 (UBC4/5 homolog, yeast) 125216 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -9743 DPYSL4 dihydropyrimidinase-like 4 309488 3 3 3 2 2 1 0 0 0 0 0.58 1.00 -9744 PLXNC1 plexin C1 944304 9 7 7 3 8 0 0 0 1 0 0.58 1.00 -9745 DAGLB diacylglycerol lipase, beta 464856 3 3 3 1 1 1 0 0 1 0 0.58 1.00 -9746 SLC6A4 solute carrier family 6 (neurotransmitter transporter, serotonin), member 4 435680 4 4 4 3 2 2 0 0 0 0 0.58 1.00 -9747 ZNF425 zinc finger protein 425 491540 5 4 5 5 3 2 0 0 0 0 0.58 1.00 -9748 NECAB2 N-terminal EF-hand calcium binding protein 2 225792 2 2 2 1 2 0 0 0 0 0 0.58 1.00 -9749 GPX8 143808 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -9750 SIRPA signal-regulatory protein alpha 327936 2 2 2 0 0 1 0 0 1 0 0.58 1.00 -9751 ITGB2 integrin, beta 2 (complement component 3 receptor 3 and 4 subunit) 502488 5 5 5 2 4 1 0 0 0 0 0.58 1.00 -9752 CCDC21 coiled-coil domain containing 21 524384 4 3 4 1 0 2 0 0 2 0 0.58 1.00 -9753 PDE1B phosphodiesterase 1B, calmodulin-dependent 373408 3 3 3 1 1 2 0 0 0 0 0.58 1.00 -9754 DNAJB14 DnaJ (Hsp40) homolog, subfamily B, member 14 262528 2 2 2 0 0 1 0 0 1 0 0.58 1.00 -9755 CASP10 caspase 10, apoptosis-related cysteine peptidase 394240 2 2 2 3 0 2 0 0 0 0 0.58 1.00 -9756 ENTPD1 ectonucleoside triphosphate diphosphohydrolase 1 361536 2 2 2 1 0 1 1 0 0 0 0.58 1.00 -9757 AMAC1 acyl-malonyl condensing enzyme 1 228704 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -9758 EMG1 EMG1 nucleolar protein homolog (S. cerevisiae) 169792 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -9759 HMBS hydroxymethylbilane synthase 238880 2 2 2 0 2 0 0 0 0 0 0.58 1.00 -9760 GINS4 GINS complex subunit 4 (Sld5 homolog) 156800 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -9761 DIABLO diablo homolog (Drosophila) 162120 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -9762 TRNT1 tRNA nucleotidyl transferase, CCA-adding, 1 298592 2 2 2 2 0 1 0 0 1 0 0.58 1.00 -9763 MMP2 matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase) 445704 5 4 5 3 2 2 1 0 0 0 0.58 1.00 -9764 DHX30 DEAH (Asp-Glu-Ala-His) box polypeptide 30 819308 7 7 7 5 4 0 2 1 0 0 0.58 1.00 -9765 C20orf4 chromosome 20 open reading frame 4 260904 2 2 2 0 2 0 0 0 0 0 0.58 1.00 -9766 KHSRP KH-type splicing regulatory protein 361416 2 2 2 1 2 0 0 0 0 0 0.58 1.00 -9767 MTERF mitochondrial transcription termination factor 270592 4 2 4 0 2 0 1 0 1 0 0.58 1.00 -9768 CDH7 cadherin 7, type 2 538048 4 4 4 0 1 2 0 0 1 0 0.58 1.00 -9769 HGF hepatocyte growth factor (hepapoietin A; scatter factor) 502880 8 3 7 2 1 5 0 0 2 0 0.58 1.00 -9770 ZDHHC17 zinc finger, DHHC-type containing 17 434080 2 2 2 0 0 0 1 0 1 0 0.58 1.00 -9771 CCDC140 coiled-coil domain containing 140 108584 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -9772 TNFAIP3 tumor necrosis factor, alpha-induced protein 3 538636 3 3 3 0 1 2 0 0 0 0 0.58 1.00 -9773 ZNF195 zinc finger protein 195 377608 2 2 2 0 1 0 1 0 0 0 0.58 1.00 -9774 YPEL1 yippee-like 1 (Drosophila) 84224 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -9775 RTCD1 RNA terminal phosphate cyclase domain 1 256480 2 2 2 0 0 2 0 0 0 0 0.58 1.00 -9776 PNO1 partner of NOB1 homolog (S. cerevisiae) 175784 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -9777 NEK2 NIMA (never in mitosis gene a)-related kinase 2 306880 2 2 2 0 1 0 1 0 0 0 0.58 1.00 -9778 MMP12 matrix metallopeptidase 12 (macrophage elastase) 320080 3 2 3 1 1 0 2 0 0 0 0.58 1.00 -9779 XPNPEP3 X-prolyl aminopeptidase (aminopeptidase P) 3, putative 349832 3 3 3 0 1 0 2 0 0 0 0.58 1.00 -9780 KRT71 keratin 71 360056 3 3 3 2 3 0 0 0 0 0 0.58 1.00 -9781 ZNHIT1 zinc finger, HIT type 1 108640 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -9782 TTC21A tetratricopeptide repeat domain 21A 914368 8 7 7 1 4 3 1 0 0 0 0.58 1.00 -9783 HKDC1 hexokinase domain containing 1 632940 8 7 8 1 3 4 1 0 0 0 0.58 1.00 -9784 ATP6V1E1 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1 160608 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -9785 BLK B lymphoid tyrosine kinase 330772 3 3 3 1 1 2 0 0 0 0 0.58 1.00 -9786 EDEM1 ER degradation enhancer, mannosidase alpha-like 1 401536 4 3 4 0 0 4 0 0 0 0 0.58 1.00 -9787 CCDC14 coiled-coil domain containing 14 529400 4 3 4 1 0 2 2 0 0 0 0.58 1.00 -9788 DNAJA4 DnaJ (Hsp40) homolog, subfamily A, member 4 286524 2 2 2 0 2 0 0 0 0 0 0.58 1.00 -9789 SNX30 sorting nexin family member 30 266560 2 2 2 0 1 0 1 0 0 0 0.58 1.00 -9790 HIST1H1B histone cluster 1, H1b 145208 1 1 1 2 0 0 1 0 0 0 0.58 1.00 -9791 ZFP36L1 zinc finger protein 36, C3H type-like 1 229516 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -9792 ABCC8 ATP-binding cassette, sub-family C (CFTR/MRP), member 8 1071216 8 6 8 6 4 1 1 0 2 0 0.58 1.00 -9793 C1QTNF3 C1q and tumor necrosis factor related protein 3 220416 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -9794 MARK3 MAP/microtubule affinity-regulating kinase 3 518600 5 5 5 1 2 2 1 0 0 0 0.58 1.00 -9795 C15orf43 chromosome 15 open reading frame 43 154784 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -9796 SMAD9 SMAD family member 9 294112 3 3 3 2 2 1 0 0 0 0 0.58 1.00 -9797 PKHD1L1 polycystic kidney and hepatic disease 1 (autosomal recessive)-like 1 2867184 27 15 26 5 4 14 7 0 2 0 0.58 1.00 -9798 ARPC1B actin related protein 2/3 complex, subunit 1B, 41kDa 211176 2 2 2 3 2 0 0 0 0 0 0.58 1.00 -9799 MAP3K3 mitogen-activated protein kinase kinase kinase 3 455616 3 3 3 2 2 0 1 0 0 0 0.58 1.00 -9800 MRPS9 mitochondrial ribosomal protein S9 276640 2 2 2 0 1 0 1 0 0 0 0.58 1.00 -9801 ETV4 ets variant gene 4 (E1A enhancer binding protein, E1AF) 324024 3 3 3 2 1 2 0 0 0 0 0.58 1.00 -9802 CEL carboxyl ester lipase (bile salt-stimulated lipase) 384852 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -9803 ATG9B ATG9 autophagy related 9 homolog B (S. cerevisiae) 339556 2 2 2 1 0 0 0 0 2 0 0.58 1.00 -9804 XIAP X-linked inhibitor of apoptosis 340032 2 2 2 0 0 0 2 0 0 0 0.58 1.00 -9805 METAP1 methionyl aminopeptidase 1 190176 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -9806 CKAP2 cytoskeleton associated protein 2 461496 2 2 2 2 0 1 0 0 1 0 0.58 1.00 -9807 MED9 mediator complex subunit 9 89152 1 1 1 1 1 0 0 0 0 0 0.58 1.00 -9808 TSR1 TSR1, 20S rRNA accumulation, homolog (S. cerevisiae) 552384 6 4 6 1 1 4 0 0 1 0 0.58 1.00 -9809 KRT33A keratin 33A 275240 2 2 2 0 1 0 1 0 0 0 0.58 1.00 -9810 FBXO38 F-box protein 38 817824 5 4 5 4 1 0 2 1 1 0 0.58 1.00 -9811 ST6GALNAC1 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 411936 3 3 3 0 0 2 1 0 0 0 0.58 1.00 -9812 TAS2R14 taste receptor, type 2, member 14 214592 1 1 1 1 1 0 0 0 0 0 0.58 1.00 -9813 PRKX protein kinase, X-linked 193204 2 2 2 0 1 1 0 0 0 0 0.58 1.00 -9814 ZNF557 zinc finger protein 557 295008 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -9815 PCDHB9 protocadherin beta 9 500724 5 4 5 4 3 1 1 0 0 0 0.59 1.00 -9816 SPAG9 sperm associated antigen 9 900508 7 5 7 1 2 1 2 0 2 0 0.59 1.00 -9817 NUP188 nucleoporin 188kDa 1207360 8 7 8 1 3 1 2 0 2 0 0.59 1.00 -9818 CAST calpastatin 570080 2 2 2 1 0 0 0 0 2 0 0.59 1.00 -9819 C13orf33 chromosome 13 open reading frame 33 173880 2 2 2 0 0 2 0 0 0 0 0.59 1.00 -9820 GLYATL1 glycine-N-acyltransferase-like 1 224448 2 2 2 2 0 1 1 0 0 0 0.59 1.00 -9821 OR1E2 olfactory receptor, family 1, subfamily E, member 2 218624 1 1 1 1 1 0 0 0 0 0 0.59 1.00 -9822 TEKT4 tektin 4 249604 3 3 3 0 1 1 0 1 0 0 0.59 1.00 -9823 GFI1 growth factor independent 1 transcription repressor 200928 2 2 2 0 1 1 0 0 0 0 0.59 1.00 -9824 RBBP9 retinoblastoma binding protein 9 130144 1 1 1 1 0 1 0 0 0 0 0.59 1.00 -9825 RBPMS RNA binding protein with multiple splicing 173600 1 1 1 0 0 0 0 0 1 0 0.59 1.00 -9826 GPRC5C G protein-coupled receptor, family C, group 5, member C 332472 2 2 2 1 1 1 0 0 0 0 0.59 1.00 -9827 WDR13 WD repeat domain 13 326608 3 3 3 5 3 0 0 0 0 0 0.59 1.00 -9828 CILP cartilage intermediate layer protein, nucleotide pyrophosphohydrolase 800296 6 6 6 9 4 1 1 0 0 0 0.59 1.00 -9829 ACSM2A acyl-CoA synthetase medium-chain family member 2A 399248 2 2 2 1 1 0 1 0 0 0 0.59 1.00 -9830 MPDU1 mannose-P-dolichol utilization defect 1 172928 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9831 COPS5 COP9 constitutive photomorphogenic homolog subunit 5 (Arabidopsis) 232288 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9832 SMARCE1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 285824 2 2 2 0 2 0 0 0 0 0 0.59 1.00 -9833 AXL AXL receptor tyrosine kinase 619360 6 4 6 3 3 0 3 0 0 0 0.59 1.00 -9834 REV1 REV1 homolog (S. cerevisiae) 861056 7 6 7 7 3 2 1 0 1 0 0.59 1.00 -9835 BEST3 bestrophin 3 457632 4 3 4 0 0 3 1 0 0 0 0.59 1.00 -9836 GPR98 G protein-coupled receptor 98 4263728 37 17 36 8 6 8 17 0 6 0 0.59 1.00 -9837 ADRA1D adrenergic, alpha-1D-, receptor 232092 2 2 2 0 1 0 0 0 1 0 0.59 1.00 -9838 WDR88 WD repeat domain 88 324772 2 2 2 4 1 0 1 0 0 0 0.59 1.00 -9839 YES1 v-yes-1 Yamaguchi sarcoma viral oncogene homolog 1 375424 2 2 2 1 1 1 0 0 0 0 0.59 1.00 -9840 CLNS1A chloride channel, nucleotide-sensitive, 1A 153664 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9841 MRPL16 mitochondrial ribosomal protein L16 172928 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9842 SPIN1 spindlin 1 181216 1 1 1 0 0 0 1 0 0 0 0.59 1.00 -9843 LIG3 ligase III, DNA, ATP-dependent 708736 5 5 5 3 0 1 4 0 0 0 0.59 1.00 -9844 IL1F7 interleukin 1 family, member 7 (zeta) 167552 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9845 HS3ST3B1 heparan sulfate (glucosamine) 3-O-sulfotransferase 3B1 157976 2 2 2 1 2 0 0 0 0 0 0.59 1.00 -9846 GLT25D1 glycosyltransferase 25 domain containing 1 340408 3 3 3 0 3 0 0 0 0 0 0.59 1.00 -9847 CHST11 carbohydrate (chondroitin 4) sulfotransferase 11 239904 3 3 3 1 2 0 1 0 0 0 0.59 1.00 -9848 TMEM48 transmembrane protein 48 456064 3 3 3 2 1 2 0 0 0 0 0.59 1.00 -9849 NUDC nuclear distribution gene C homolog (A. nidulans) 218376 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9850 FAM175B 284088 2 2 2 1 0 0 1 0 1 0 0.59 1.00 -9851 KLK7 kallikrein-related peptidase 7 170544 1 1 1 1 0 0 1 0 0 0 0.59 1.00 -9852 NCDN neurochondrin 453852 3 3 3 2 3 0 0 0 0 0 0.59 1.00 -9853 ALOX5AP arachidonate 5-lipoxygenase-activating protein 113344 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9854 TLR9 toll-like receptor 9 672400 7 6 7 2 5 2 0 0 0 0 0.59 1.00 -9855 BCKDHB branched chain keto acid dehydrogenase E1, beta polypeptide (maple syrup urine disease) 244216 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9856 CYP4V2 cytochrome P450, family 4, subfamily V, polypeptide 2 314672 3 2 3 1 2 0 0 0 1 0 0.59 1.00 -9857 KDM2A 799456 5 5 5 1 3 1 1 0 0 0 0.59 1.00 -9858 TSNAXIP1 translin-associated factor X interacting protein 1 455392 4 3 4 1 1 2 0 0 1 0 0.59 1.00 -9859 SMARCA4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 1049660 7 7 6 4 3 2 2 0 0 0 0.59 1.00 -9860 ARL8A ADP-ribosylation factor-like 8A 131936 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9861 TMEM22 transmembrane protein 22 278432 2 2 2 2 0 2 0 0 0 0 0.59 1.00 -9862 FNDC4 fibronectin type III domain containing 4 163296 1 1 1 0 0 0 1 0 0 0 0.59 1.00 -9863 TMEM200C 200424 2 2 2 2 1 0 0 0 1 0 0.59 1.00 -9864 PCMTD1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 245056 3 2 3 0 3 0 0 0 0 0 0.59 1.00 -9865 TMTC3 transmembrane and tetratricopeptide repeat containing 3 626528 5 3 5 0 1 3 1 0 0 0 0.59 1.00 -9866 HDGF hepatoma-derived growth factor (high-mobility group protein 1-like) 163128 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9867 LRRC27 leucine rich repeat containing 27 377344 2 2 2 1 0 1 0 0 1 0 0.59 1.00 -9868 KCTD11 potassium channel tetramerisation domain containing 11 135212 1 1 1 1 0 1 0 0 0 0 0.59 1.00 -9869 TXNL4A thioredoxin-like 4A 92948 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9870 HIST1H2BC histone cluster 1, H2bc 86240 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9871 TAF1 TAF1 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 250kDa 1301784 12 9 12 2 7 2 3 0 0 0 0.59 1.00 -9872 ABCB8 ATP-binding cassette, sub-family B (MDR/TAP), member 8 455504 5 5 4 0 5 0 0 0 0 0 0.59 1.00 -9873 THPO thrombopoietin (myeloproliferative leukemia virus oncogene ligand, megakaryocyte growth and development factor) 242368 2 2 2 2 1 1 0 0 0 0 0.59 1.00 -9874 TES testis derived transcript (3 LIM domains) 285640 2 2 2 2 1 1 0 0 0 0 0.59 1.00 -9875 ICK intestinal cell (MAK-like) kinase 437024 3 3 3 2 1 2 0 0 0 0 0.59 1.00 -9876 FAM117B 241024 2 2 2 1 2 0 0 0 0 0 0.59 1.00 -9877 IKBKB inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase beta 527520 4 4 4 1 0 4 0 0 0 0 0.59 1.00 -9878 POLR3H polymerase (RNA) III (DNA directed) polypeptide H (22.9kD) 142212 1 1 1 1 0 0 1 0 0 0 0.59 1.00 -9879 LRRC43 leucine rich repeat containing 43 423528 4 3 4 2 1 1 0 0 2 0 0.59 1.00 -9880 FOLH1 folate hydrolase (prostate-specific membrane antigen) 1 510376 3 3 3 2 0 0 2 0 1 0 0.59 1.00 -9881 USP18 ubiquitin specific peptidase 18 242116 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9882 RABIF RAB interacting factor 82096 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9883 HOXA5 homeobox A5 161308 1 1 1 1 0 1 0 0 0 0 0.59 1.00 -9884 TRAPPC3 trafficking protein particle complex 3 126112 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9885 TUBB6 tubulin, beta 6 288960 3 3 3 2 2 1 0 0 0 0 0.59 1.00 -9886 SYT2 synaptotagmin II 289408 4 3 4 1 0 3 1 0 0 0 0.59 1.00 -9887 BEST1 bestrophin 1 351680 2 2 2 1 1 0 1 0 0 0 0.59 1.00 -9888 IFFO1 341460 1 1 1 3 0 0 0 0 1 0 0.59 1.00 -9889 CACNB4 calcium channel, voltage-dependent, beta 4 subunit 365664 2 2 2 4 1 0 1 0 0 0 0.59 1.00 -9890 GLRA2 glycine receptor, alpha 2 328608 2 2 2 2 1 0 1 0 0 0 0.59 1.00 -9891 SLC31A1 solute carrier family 31 (copper transporters), member 1 131936 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9892 WDR45L WDR45-like 234836 3 2 3 0 2 0 1 0 0 0 0.59 1.00 -9893 OR2A7 olfactory receptor, family 2, subfamily A, member 7 162960 1 1 1 1 0 1 0 0 0 0 0.59 1.00 -9894 UNC13A unc-13 homolog A (C. elegans) 1039552 14 10 14 5 8 6 0 0 0 0 0.59 1.00 -9895 ATP2C1 ATPase, Ca++ transporting, type 2C, member 1 664832 4 4 4 0 1 1 2 0 0 0 0.59 1.00 -9896 ADAM22 ADAM metallopeptidase domain 22 656376 6 4 6 1 1 4 1 0 0 0 0.59 1.00 -9897 CD300LG CD300 molecule-like family member g 230048 1 1 1 1 0 0 1 0 0 0 0.59 1.00 -9898 EFCAB4A EF-hand calcium binding domain 4A 116564 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9899 PNPLA8 patatin-like phospholipase domain containing 8 534240 5 4 5 0 1 3 1 0 0 0 0.59 1.00 -9900 A2BP1 309316 2 2 2 3 2 0 0 0 0 0 0.59 1.00 -9901 SLC37A4 solute carrier family 37 (glucose-6-phosphate transporter), member 4 293860 2 2 2 0 1 0 1 0 0 0 0.59 1.00 -9902 KIAA1462 KIAA1462 915684 10 6 10 6 3 4 1 0 2 0 0.59 1.00 -9903 FMOD fibromodulin 255136 2 2 2 2 1 1 0 0 0 0 0.59 1.00 -9904 THRAP3 thyroid hormone receptor associated protein 3 651392 5 4 4 4 2 1 0 0 2 0 0.59 1.00 -9905 DUSP18 dual specificity phosphatase 18 127904 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9906 TIMM44 translocase of inner mitochondrial membrane 44 homolog (yeast) 304920 2 2 2 0 1 0 0 0 1 0 0.59 1.00 -9907 TAF5L TAF5-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa 401408 2 2 2 0 0 0 1 0 1 0 0.59 1.00 -9908 KRTAP10-9 keratin associated protein 10-9 197792 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9909 COX11 COX11 homolog, cytochrome c oxidase assembly protein (yeast) 172088 1 1 1 0 0 0 1 0 0 0 0.59 1.00 -9910 CREB3L4 cAMP responsive element binding protein 3-like 4 274176 1 1 1 2 0 1 0 0 0 0 0.59 1.00 -9911 KRT38 keratin 38 313376 2 2 2 1 2 0 0 0 0 0 0.59 1.00 -9912 ROBO4 roundabout homolog 4, magic roundabout (Drosophila) 664176 5 5 5 6 2 2 1 0 0 0 0.59 1.00 -9913 ZBTB39 zinc finger and BTB domain containing 39 480032 3 3 3 0 1 1 1 0 0 0 0.59 1.00 -9914 IRX1 iroquois homeobox 1 191492 2 2 2 3 2 0 0 0 0 0 0.59 1.00 -9915 C7orf30 chromosome 7 open reading frame 30 149224 2 2 2 1 0 2 0 0 0 0 0.59 1.00 -9916 MARCH2 membrane-associated ring finger (C3HC4) 2 169400 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9917 AP4E1 adaptor-related protein complex 4, epsilon 1 subunit 761656 9 5 9 1 2 3 2 0 2 0 0.59 1.00 -9918 PGLYRP3 peptidoglycan recognition protein 3 236096 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9919 TUBA1C tubulin, alpha 1c 305816 2 2 2 1 1 1 0 0 0 0 0.59 1.00 -9920 SLC25A21 solute carrier family 25 (mitochondrial oxodicarboxylate carrier), member 21 210560 1 1 1 1 0 0 1 0 0 0 0.59 1.00 -9921 INTS4 integrator complex subunit 4 661840 4 4 4 0 1 3 0 0 0 0 0.59 1.00 -9922 NOL10 nucleolar protein 10 425840 2 2 2 0 0 1 1 0 0 0 0.59 1.00 -9923 RBM8A RNA binding motif protein 8A 122976 1 1 1 0 0 0 1 0 0 0 0.59 1.00 -9924 HUNK hormonally upregulated Neu-associated kinase 449596 4 3 4 2 2 1 0 0 1 0 0.59 1.00 -9925 POLR2I polymerase (RNA) II (DNA directed) polypeptide I, 14.5kDa 90048 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9926 FAM46B family with sequence similarity 46, member B 229096 3 3 3 0 1 2 0 0 0 0 0.59 1.00 -9927 CCDC53 coiled-coil domain containing 53 136680 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -9928 LCP2 lymphocyte cytosolic protein 2 (SH2 domain containing leukocyte protein of 76kDa) 352960 3 3 3 3 2 0 1 0 0 0 0.59 1.00 -9929 CACNG4 calcium channel, voltage-dependent, gamma subunit 4 205968 2 2 2 1 1 1 0 0 0 0 0.59 1.00 -9930 PPRC1 peroxisome proliferator-activated receptor gamma, coactivator-related 1 1094324 6 6 6 3 3 1 1 0 1 0 0.59 1.00 -9931 DMRTB1 DMRT-like family B with proline-rich C-terminal, 1 144732 1 1 1 3 1 0 0 0 0 0 0.59 1.00 -9932 SLC18A1 solute carrier family 18 (vesicular monoamine), member 1 359296 4 3 4 3 1 2 1 0 0 0 0.59 1.00 -9933 PLA2G2F phospholipase A2, group IIF 139056 1 1 1 2 0 0 1 0 0 0 0.59 1.00 -9934 TM9SF2 transmembrane 9 superfamily member 2 456568 3 3 2 1 2 0 1 0 0 0 0.59 1.00 -9935 PCDHA7 protocadherin alpha 7 595896 5 5 5 0 3 1 1 0 0 0 0.59 1.00 -9936 ZNF93 zinc finger protein 93 420896 3 3 3 1 0 3 0 0 0 0 0.59 1.00 -9937 MED22 mediator complex subunit 22 140896 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -9938 ICAM1 intercellular adhesion molecule 1 (CD54), human rhinovirus receptor 358148 2 2 2 0 0 0 1 0 1 0 0.59 1.00 -9939 PAPD5 PAP associated domain containing 5 325696 2 2 2 0 0 0 2 0 0 0 0.60 1.00 -9940 HNRNPH3 241248 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -9941 SDCBP2 syndecan binding protein (syntenin) 2 180308 1 1 1 1 1 0 0 0 0 0 0.60 1.00 -9942 COPS6 COP9 constitutive photomorphogenic homolog subunit 6 (Arabidopsis) 216560 2 2 2 2 1 0 1 0 0 0 0.60 1.00 -9943 FAIM3 Fas apoptotic inhibitory molecule 3 222656 2 2 2 1 0 2 0 0 0 0 0.60 1.00 -9944 TCF20 transcription factor 20 (AR1) 1326304 9 8 9 5 1 5 1 0 2 0 0.60 1.00 -9945 DZIP1L DAZ interacting protein 1-like 527352 4 4 4 2 1 1 2 0 0 0 0.60 1.00 -9946 CLVS2 223720 2 2 2 0 1 1 0 0 0 0 0.60 1.00 -9947 PHLPP2 905856 5 5 5 2 0 3 1 0 1 0 0.60 1.00 -9948 NUDT1 nudix (nucleoside diphosphate linked moiety X)-type motif 1 116248 1 1 1 2 1 0 0 0 0 0 0.60 1.00 -9949 TXNDC5 thioredoxin domain containing 5 250160 2 2 2 3 2 0 0 0 0 0 0.60 1.00 -9950 OR8S1 olfactory receptor, family 8, subfamily S, member 1 242172 2 2 1 2 0 2 0 0 0 0 0.60 1.00 -9951 PLSCR5 phospholipid scramblase family, member 5 176816 1 1 1 1 0 1 0 0 0 0 0.60 1.00 -9952 ASL argininosuccinate lyase 324296 2 2 2 0 1 0 1 0 0 0 0.60 1.00 -9953 GCLM glutamate-cysteine ligase, modifier subunit 161952 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -9954 SLC22A4 solute carrier family 22 (organic cation/ergothioneine transporter), member 4 334128 2 2 2 1 1 1 0 0 0 0 0.60 1.00 -9955 GALNT6 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 6 (GalNAc-T6) 427616 3 3 3 3 1 1 1 0 0 0 0.60 1.00 -9956 NACA2 nascent polypeptide-associated complex alpha subunit 2 146048 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -9957 ZNF136 zinc finger protein 136 366968 2 2 2 0 0 0 1 0 1 0 0.60 1.00 -9958 C5orf25 chromosome 5 open reading frame 25 281968 3 2 3 0 1 1 1 0 0 0 0.60 1.00 -9959 STXBP5L syntaxin binding protein 5-like 821856 9 6 9 1 2 4 3 0 0 0 0.60 1.00 -9960 GPR111 G protein-coupled receptor 111 438368 2 2 2 0 0 1 1 0 0 0 0.60 1.00 -9961 AKR7L 109312 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -9962 CIITA class II, major histocompatibility complex, transactivator 770168 7 7 7 2 3 4 0 0 0 0 0.60 1.00 -9963 HMGB2 high-mobility group box 2 144704 1 1 1 1 0 0 1 0 0 0 0.60 1.00 -9964 BSX brain-specific homeobox 133216 2 2 2 1 2 0 0 0 0 0 0.60 1.00 -9965 TUBA3D tubulin, alpha 3d 307552 3 3 2 0 3 0 0 0 0 0 0.60 1.00 -9966 PPP1R13B protein phosphatase 1, regulatory (inhibitor) subunit 13B 739844 6 5 6 1 1 2 1 0 2 0 0.60 1.00 -9967 LRRC37A3 leucine rich repeat containing 37, member A3 744072 4 4 4 2 1 1 1 0 1 0 0.60 1.00 -9968 MCCC2 methylcrotonoyl-Coenzyme A carboxylase 2 (beta) 364448 2 2 2 0 1 1 0 0 0 0 0.60 1.00 -9969 WDR63 WD repeat domain 63 619136 5 5 5 2 0 2 3 0 0 0 0.60 1.00 -9970 ATN1 atrophin 1 712800 4 4 4 1 2 1 0 0 1 0 0.60 1.00 -9971 CDKN2AIP CDKN2A interacting protein 367584 2 2 2 0 0 1 0 0 1 0 0.60 1.00 -9972 DDX21 DEAD (Asp-Glu-Ala-Asp) box polypeptide 21 540288 4 3 4 0 1 2 1 0 0 0 0.60 1.00 -9973 ZNF442 zinc finger protein 442 425600 6 3 6 0 3 3 0 0 0 0 0.60 1.00 -9974 TMX4 205568 1 1 1 1 0 0 1 0 0 0 0.60 1.00 -9975 UBAC1 UBA domain containing 1 269024 3 3 3 3 1 2 0 0 0 0 0.60 1.00 -9976 CPEB1 cytoplasmic polyadenylation element binding protein 1 356160 5 3 5 1 0 4 0 1 0 0 0.60 1.00 -9977 ZNF701 zinc finger protein 701 315728 2 2 2 0 0 1 0 0 1 0 0.60 1.00 -9978 MAP3K7 mitogen-activated protein kinase kinase kinase 7 423136 4 3 4 1 1 1 1 0 1 0 0.60 1.00 -9979 SH3TC1 SH3 domain and tetratricopeptide repeats 1 734756 5 5 5 1 2 1 1 0 1 0 0.60 1.00 -9980 CYC1 cytochrome c-1 194544 1 1 1 2 0 1 0 0 0 0 0.60 1.00 -9981 FCAMR Fc receptor, IgA, IgM, high affinity 187264 1 1 1 1 0 0 0 0 1 0 0.60 1.00 -9982 ARHGEF16 Rho guanine exchange factor (GEF) 16 228416 1 1 1 0 0 0 0 0 1 0 0.60 1.00 -9983 SPPL3 261304 2 2 2 0 2 0 0 0 0 0 0.60 1.00 -9984 NPBWR1 neuropeptides B/W receptor 1 181916 3 3 3 0 3 0 0 0 0 0 0.60 1.00 -9985 PRG3 proteoglycan 3 141484 1 1 1 2 0 1 0 0 0 0 0.60 1.00 -9986 FAM92A1 family with sequence similarity 92, member A1 181864 1 1 1 1 0 1 0 0 0 0 0.60 1.00 -9987 GTPBP1 GTP binding protein 1 413224 2 2 2 1 2 0 0 0 0 0 0.60 1.00 -9988 NFKB2 nuclear factor of kappa light polypeptide gene enhancer in B-cells 2 (p49/p100) 523328 4 4 4 0 1 1 1 0 1 0 0.60 1.00 -9989 PPM1E protein phosphatase 1E (PP2C domain containing) 455568 6 4 6 2 2 3 1 0 0 0 0.60 1.00 -9990 ALDH1L2 aldehyde dehydrogenase 1 family, member L2 629888 5 3 5 2 2 1 1 0 1 0 0.60 1.00 -9991 RING1 ring finger protein 1 211004 2 2 2 0 1 1 0 0 0 0 0.60 1.00 -9992 MVP major vault protein 587904 4 4 4 0 0 1 3 0 0 0 0.60 1.00 -9993 CCNE2 cyclin E2 282016 2 2 2 1 0 2 0 0 0 0 0.60 1.00 -9994 KIAA1009 KIAA1009 912248 8 5 8 2 2 3 2 0 1 0 0.60 1.00 -9995 DGAT2L6 diacylglycerol O-acyltransferase 2-like 6 217768 1 1 1 2 0 0 1 0 0 0 0.60 1.00 -9996 ZER1 zer-1 homolog (C. elegans) 521384 4 4 4 1 2 1 1 0 0 0 0.60 1.00 -9997 GPBP1 GC-rich promoter binding protein 1 327488 2 2 2 1 2 0 0 0 0 0 0.60 1.00 -9998 IKZF1 IKAROS family zinc finger 1 (Ikaros) 333036 3 3 3 2 0 2 1 0 0 0 0.60 1.00 -9999 PRDM15 PR domain containing 15 918624 6 6 6 3 2 1 2 0 1 0 0.60 1.00 -10000 SCRN2 secernin 2 287476 2 2 2 0 0 1 1 0 0 0 0.60 1.00 -10001 OS9 458800 3 3 3 1 0 0 2 0 1 0 0.60 1.00 -10002 ELP2 elongation protein 2 homolog (S. cerevisiae) 575456 4 4 4 4 2 0 2 0 0 0 0.60 1.00 -10003 USP40 ubiquitin specific peptidase 40 791968 9 5 8 0 2 2 4 0 1 0 0.60 1.00 -10004 FGF19 fibroblast growth factor 19 86576 1 1 1 1 0 1 0 0 0 0 0.60 1.00 -10005 CNNM3 cyclin M3 277648 2 2 2 0 2 0 0 0 0 0 0.60 1.00 -10006 AIM2 absent in melanoma 2 235648 1 1 1 0 0 0 0 0 1 0 0.60 1.00 -10007 HIST1H2BL histone cluster 1, H2bl 86240 1 1 1 1 0 1 0 0 0 0 0.60 1.00 -10008 TTC22 tetratricopeptide repeat domain 22 165628 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -10009 EFCAB6 EF-hand calcium binding domain 6 1036056 12 5 11 5 2 6 0 0 1 3 0.60 1.00 -10010 RBM17 RNA binding motif protein 17 280000 2 2 2 0 2 0 0 0 0 0 0.60 1.00 -10011 MYST2 MYST histone acetyltransferase 2 424704 4 4 4 1 3 0 1 0 0 0 0.60 1.00 -10012 GAK cyclin G associated kinase 826992 6 6 6 2 1 1 2 0 2 0 0.60 1.00 -10013 WNT7B wingless-type MMTV integration site family, member 7B 177212 2 2 2 1 2 0 0 0 0 0 0.60 1.00 -10014 SSRP1 structure specific recognition protein 1 491456 3 3 3 1 1 2 0 0 0 0 0.60 1.00 -10015 DPEP2 dipeptidase 2 320720 2 2 2 0 0 1 1 0 0 0 0.60 1.00 -10016 SULT4A1 sulfotransferase family 4A, member 1 147960 1 1 1 2 1 0 0 0 0 0 0.60 1.00 -10017 FAH fumarylacetoacetate hydrolase (fumarylacetoacetase) 294784 2 2 2 3 0 1 1 0 0 0 0.60 1.00 -10018 ELOVL6 ELOVL family member 6, elongation of long chain fatty acids (FEN1/Elo2, SUR4/Elo3-like, yeast) 182336 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -10019 CARKD 241864 2 2 2 0 0 1 1 0 0 0 0.60 1.00 -10020 ESR2 estrogen receptor 2 (ER beta) 382844 3 3 3 2 2 0 1 0 0 0 0.60 1.00 -10021 ARHGAP6 Rho GTPase activating protein 6 547208 3 3 3 3 1 0 1 0 1 0 0.60 1.00 -10022 ZSCAN1 zinc finger and SCAN domain containing 1 241276 4 3 4 1 3 1 0 0 0 0 0.60 1.00 -10023 KDM4D 353024 2 2 2 0 1 1 0 0 0 0 0.60 1.00 -10024 PTPRO protein tyrosine phosphatase, receptor type, O 841120 6 5 6 5 3 1 2 0 0 0 0.60 1.00 -10025 C4orf21 chromosome 4 open reading frame 21 1295928 6 6 6 0 1 2 2 0 1 0 0.60 1.00 -10026 EZH2 enhancer of zeste homolog 2 (Drosophila) 522368 4 4 4 3 2 0 2 0 0 0 0.60 1.00 -10027 OXA1L oxidase (cytochrome c) assembly 1-like 342272 4 3 4 1 1 2 0 1 0 0 0.60 1.00 -10028 TFRC transferrin receptor (p90, CD71) 527520 3 3 3 0 2 0 0 0 1 0 0.60 1.00 -10029 AK2 adenylate kinase 2 168672 1 1 1 1 0 0 0 0 1 0 0.60 1.00 -10030 LRRC36 leucine rich repeat containing 36 512080 2 2 2 3 0 2 0 0 0 0 0.60 1.00 -10031 SORBS3 sorbin and SH3 domain containing 3 420716 3 3 3 0 0 1 1 1 0 0 0.60 1.00 -10032 RBM19 RNA binding motif protein 19 667296 8 6 8 3 4 2 2 0 0 0 0.60 1.00 -10033 UST uronyl-2-sulfotransferase 247648 1 1 1 3 0 0 1 0 0 0 0.60 1.00 -10034 CALR3 calreticulin 3 266784 2 2 2 2 0 1 1 0 0 0 0.60 1.00 -10035 FAM60A family with sequence similarity 60, member A 153664 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -10036 GDAP1 ganglioside-induced differentiation-associated protein 1 246624 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -10037 TBC1D10B TBC1 domain family, member 10B 251656 2 2 2 0 1 1 0 0 0 0 0.60 1.00 -10038 SUPV3L1 suppressor of var1, 3-like 1 (S. cerevisiae) 542304 3 3 3 0 0 2 1 0 0 0 0.60 1.00 -10039 TLX1 T-cell leukemia homeobox 1 109456 1 1 1 1 1 0 0 0 0 0 0.60 1.00 -10040 ZNF2 zinc finger protein 2 290276 4 3 4 0 2 1 1 0 0 0 0.60 1.00 -10041 ATXN2 ataxin 2 740768 5 5 5 3 2 3 0 0 0 0 0.60 1.00 -10042 EDARADD EDAR-associated death domain 150528 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -10043 ST5 suppression of tumorigenicity 5 733552 9 7 9 5 4 4 1 0 0 0 0.60 1.00 -10044 C12orf51 chromosome 12 open reading frame 51 2657304 17 15 17 7 7 5 3 0 2 0 0.60 1.00 -10045 C19orf39 chromosome 19 open reading frame 39 149044 1 1 1 1 0 1 0 0 0 0 0.60 1.00 -10046 TOMM22 translocase of outer mitochondrial membrane 22 homolog (yeast) 91216 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -10047 UFSP2 UFM1-specific peptidase 2 326592 2 2 2 1 0 0 1 0 1 0 0.60 1.00 -10048 ZNF683 zinc finger protein 683 343704 1 1 1 0 0 0 0 0 1 0 0.60 1.00 -10049 POLR3C polymerase (RNA) III (DNA directed) polypeptide C (62kD) 372064 2 2 2 0 1 1 0 0 0 0 0.60 1.00 -10050 TPD52 tumor protein D52 177044 1 1 1 1 0 1 0 0 0 0 0.60 1.00 -10051 PSMA1 proteasome (prosome, macropain) subunit, alpha type, 1 194208 1 1 1 1 1 0 0 0 0 0 0.60 1.00 -10052 C12orf71 182960 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -10053 CYTH3 260104 2 2 2 2 0 2 0 0 0 0 0.60 1.00 -10054 DBP D site of albumin promoter (albumin D-box) binding protein 114744 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -10055 KDELR2 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 2 178836 1 1 1 1 0 0 0 0 1 0 0.60 1.00 -10056 DST dystonin 4581368 40 18 40 9 10 11 11 0 5 3 0.60 1.00 -10057 RPS6KB2 ribosomal protein S6 kinase, 70kDa, polypeptide 2 308784 2 2 2 1 1 0 1 0 0 0 0.60 1.00 -10058 EDN1 endothelin 1 147616 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -10059 MAPT microtubule-associated protein tau 479488 5 5 5 4 2 3 0 0 0 0 0.60 1.00 -10060 CDK15 269472 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -10061 ADSS adenylosuccinate synthase 310268 2 2 2 1 1 0 0 0 1 0 0.60 1.00 -10062 ARID5B AT rich interactive domain 5B (MRF1-like) 807968 6 5 6 1 1 1 2 0 0 2 0.60 1.00 -10063 ATE1 arginyltransferase 1 372092 3 3 3 0 1 1 1 0 0 0 0.60 1.00 -10064 CDK13 800380 5 5 5 1 0 3 1 0 1 0 0.60 1.00 -10065 PRDM1 PR domain containing 1, with ZNF domain 539896 4 4 4 2 3 0 0 0 1 0 0.60 1.00 -10066 TUBB3 tubulin, beta 3 290612 2 2 2 1 0 2 0 0 0 0 0.60 1.00 -10067 OVGP1 oviductal glycoprotein 1, 120kDa (mucin 9, oviductin) 466144 3 3 3 3 0 2 1 0 0 0 0.60 1.00 -10068 MDM2 Mdm2 p53 binding protein homolog (mouse) 344512 4 2 4 0 0 1 3 0 0 0 0.60 1.00 -10069 ATP5SL ATP5S-like 178752 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -10070 ASB14 ankyrin repeat and SOCS box-containing 14 205044 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -10071 PCGF2 polycomb group ring finger 2 204904 2 2 2 0 2 0 0 0 0 0 0.60 1.00 -10072 ZFP30 zinc finger protein 30 homolog (mouse) 353024 3 3 3 0 2 1 0 0 0 0 0.60 1.00 -10073 C14orf143 chromosome 14 open reading frame 143 115584 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -10074 HESX1 HESX homeobox 1 128576 2 1 2 0 1 0 1 0 0 0 0.60 1.00 -10075 PKDREJ polycystic kidney disease (polycystin) and REJ homolog (sperm receptor for egg jelly homolog, sea urchin) 1350860 15 8 14 6 5 5 3 0 2 0 0.60 1.00 -10076 ANP32A acidic (leucine-rich) nuclear phosphoprotein 32 family, member A 151424 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -10077 FAM123A family with sequence similarity 123A 358232 4 4 4 2 2 2 0 0 0 0 0.60 1.00 -10078 LOH12CR1 loss of heterozygosity, 12, chromosomal region 1 135884 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -10079 CAV2 caveolin 2 118076 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -10080 PRKAR1B protein kinase, cAMP-dependent, regulatory, type I, beta 153784 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -10081 RMI1 RMI1, RecQ mediated genome instability 1, homolog (S. cerevisiae) 421568 6 3 6 1 0 3 3 0 0 0 0.61 1.00 -10082 DUSP13 dual specificity phosphatase 13 284076 2 2 2 2 0 2 0 0 0 0 0.61 1.00 -10083 ZSWIM2 zinc finger, SWIM-type containing 2 434112 3 2 3 3 0 2 0 0 1 0 0.61 1.00 -10084 ZFP64 zinc finger protein 64 homolog (mouse) 729540 5 5 5 7 1 3 0 0 1 0 0.61 1.00 -10085 CHST13 carbohydrate (chondroitin 4) sulfotransferase 13 112448 2 2 2 0 0 2 0 0 0 0 0.61 1.00 -10086 FTSJ3 FtsJ homolog 3 (E. coli) 587776 4 4 4 2 1 2 1 0 0 0 0.61 1.00 -10087 ILKAP integrin-linked kinase-associated serine/threonine phosphatase 2C 261548 4 2 4 1 2 1 1 0 0 0 0.61 1.00 -10088 MOSPD2 motile sperm domain containing 2 362208 2 2 2 1 0 1 1 0 0 0 0.61 1.00 -10089 RHAG Rh-associated glycoprotein 284480 2 2 2 0 0 2 0 0 0 0 0.61 1.00 -10090 TEAD1 TEA domain family member 1 (SV40 transcriptional enhancer factor) 288960 2 2 2 0 0 0 2 0 0 0 0.61 1.00 -10091 DDX59 DEAD (Asp-Glu-Ala-Asp) box polypeptide 59 422912 1 1 1 1 0 0 0 0 1 0 0.61 1.00 -10092 GGT1 gamma-glutamyltransferase 1 358400 3 3 1 1 0 3 0 0 0 0 0.61 1.00 -10093 LGALS9B 110812 1 1 1 1 0 1 0 0 0 0 0.61 1.00 -10094 CCT8 chaperonin containing TCP1, subunit 8 (theta) 382368 1 1 1 3 0 0 0 0 1 0 0.61 1.00 -10095 HSD17B8 hydroxysteroid (17-beta) dehydrogenase 8 117824 1 1 1 1 0 1 0 0 0 0 0.61 1.00 -10096 HIPK4 homeodomain interacting protein kinase 4 403520 3 3 2 1 3 0 0 0 0 0 0.61 1.00 -10097 AQP2 aquaporin 2 (collecting duct) 160104 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10098 NUP88 nucleoporin 88kDa 513688 4 4 3 0 2 1 1 0 0 0 0.61 1.00 -10099 RPL11 ribosomal protein L11 125392 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -10100 KIAA2026 KIAA2026 1378412 13 8 13 3 3 7 2 0 1 0 0.61 1.00 -10101 PDP1 375200 3 3 3 1 1 0 2 0 0 0 0.61 1.00 -10102 PILRA paired immunoglobin-like type 2 receptor alpha 210560 3 2 3 0 3 0 0 0 0 0 0.61 1.00 -10103 TBC1D7 TBC1 domain family, member 7 203840 2 2 2 2 2 0 0 0 0 0 0.61 1.00 -10104 KIAA1109 KIAA1109 3437448 30 16 29 3 8 10 10 0 2 0 0.61 1.00 -10105 CTPS CTP synthase 413056 4 3 4 1 1 3 0 0 0 0 0.61 1.00 -10106 SLC6A20 solute carrier family 6 (proline IMINO transporter), member 20 408268 4 4 4 3 3 0 0 1 0 0 0.61 1.00 -10107 CLDN25 155456 1 1 1 0 0 0 0 1 0 0 0.61 1.00 -10108 CTRC chymotrypsin C (caldecrin) 187936 1 1 1 1 1 0 0 0 0 0 0.61 1.00 -10109 TPM1 tropomyosin 1 (alpha) 252764 2 2 2 0 2 0 0 0 0 0 0.61 1.00 -10110 ITPR2 inositol 1,4,5-triphosphate receptor, type 2 1866816 19 8 19 1 5 5 3 0 4 2 0.61 1.00 -10111 HAT1 histone acetyltransferase 1 292096 2 2 2 1 0 1 1 0 0 0 0.61 1.00 -10112 SH3YL1 SH3 domain containing, Ysc84-like 1 (S. cerevisiae) 170688 1 1 1 1 1 0 0 0 0 0 0.61 1.00 -10113 RBM12 RNA binding motif protein 12 627704 3 3 3 0 0 1 1 0 1 0 0.61 1.00 -10114 SIAH1 seven in absentia homolog 1 (Drosophila) 212800 1 1 1 1 1 0 0 0 0 0 0.61 1.00 -10115 ADAMTS4 ADAM metallopeptidase with thrombospondin type 1 motif, 4 552892 4 4 3 2 2 0 1 0 1 0 0.61 1.00 -10116 HOMER2 homer homolog 2 (Drosophila) 240936 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -10117 PMEPA1 prostate transmembrane protein, androgen induced 1 181684 1 1 1 1 0 0 0 0 1 0 0.61 1.00 -10118 HELQ 756672 6 5 6 4 2 1 2 0 1 0 0.61 1.00 -10119 MECP2 methyl CpG binding protein 2 (Rett syndrome) 329952 2 2 2 1 1 0 1 0 0 0 0.61 1.00 -10120 SCNN1A sodium channel, nonvoltage-gated 1 alpha 448672 3 3 3 1 0 1 2 0 0 0 0.61 1.00 -10121 LONRF3 LON peptidase N-terminal domain and ring finger 3 378168 2 2 2 2 0 0 2 0 0 0 0.61 1.00 -10122 RND2 Rho family GTPase 2 134568 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10123 ARHGEF4 Rho guanine nucleotide exchange factor (GEF) 4 429608 4 4 4 1 0 3 1 0 0 0 0.61 1.00 -10124 AGAP11 336156 4 2 4 1 1 2 0 0 1 0 0.61 1.00 -10125 HMP19 119168 1 1 1 1 1 0 0 0 0 0 0.61 1.00 -10126 EIF2S3 eukaryotic translation initiation factor 2, subunit 3 gamma, 52kDa 328608 1 1 1 0 0 0 0 0 1 0 0.61 1.00 -10127 DAB2IP DAB2 interacting protein 696092 6 5 6 2 4 2 0 0 0 0 0.61 1.00 -10128 IFI44L interferon-induced protein 44-like 287616 1 1 1 2 1 0 0 0 0 0 0.61 1.00 -10129 SLC22A13 solute carrier family 22, member 13 379768 3 3 3 1 0 2 1 0 0 0 0.61 1.00 -10130 C9orf96 chromosome 9 open reading frame 96 451736 3 3 3 1 2 1 0 0 0 0 0.61 1.00 -10131 B9D2 B9 protein domain 2 119700 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10132 POU4F1 POU class 4 homeobox 1 144200 2 2 2 2 2 0 0 0 0 0 0.61 1.00 -10133 KHDRBS1 KH domain containing, RNA binding, signal transduction associated 1 247856 2 2 2 1 1 0 1 0 0 0 0.61 1.00 -10134 ZMYND15 zinc finger, MYND-type containing 15 426000 3 3 3 0 2 1 0 0 0 0 0.61 1.00 -10135 CD36 CD36 molecule (thrombospondin receptor) 328608 1 1 1 0 0 0 1 0 0 0 0.61 1.00 -10136 SPDYE3 176516 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10137 ZFAT zinc finger and AT hook domain containing 822096 6 6 6 3 1 2 3 0 0 0 0.61 1.00 -10138 ENDOD1 endonuclease domain containing 1 281568 2 2 2 1 1 0 1 0 0 0 0.61 1.00 -10139 PRDM4 PR domain containing 4 548800 3 3 3 0 0 1 1 1 0 0 0.61 1.00 -10140 AADACL3 arylacetamide deacetylase-like 3 240352 2 2 2 1 0 0 2 0 0 0 0.61 1.00 -10141 PQLC3 PQ loop repeat containing 3 109760 1 1 1 1 0 1 0 0 0 0 0.61 1.00 -10142 MYF6 myogenic factor 6 (herculin) 163968 2 2 2 3 2 0 0 0 0 0 0.61 1.00 -10143 MATR3 matrin 3 582400 5 4 5 1 0 3 2 0 0 0 0.61 1.00 -10144 DHX8 DEAH (Asp-Glu-Ala-His) box polypeptide 8 841120 6 5 6 3 2 1 1 0 2 0 0.61 1.00 -10145 RBM15 RNA binding motif protein 15 629944 6 6 6 1 2 2 1 0 1 0 0.61 1.00 -10146 NUP93 nucleoporin 93kDa 569856 4 4 4 1 3 1 0 0 0 0 0.61 1.00 -10147 ARRDC4 arrestin domain containing 4 219072 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10148 C12orf52 chromosome 12 open reading frame 52 181216 2 2 2 0 1 1 0 0 0 0 0.61 1.00 -10149 SAMD8 sterile alpha motif domain containing 8 223328 1 1 1 1 1 0 0 0 0 0 0.61 1.00 -10150 TYW1 tRNA-yW synthesizing protein 1 homolog (S. cerevisiae) 506912 3 3 3 1 0 3 0 0 0 0 0.61 1.00 -10151 MUSK muscle, skeletal, receptor tyrosine kinase 600352 4 4 4 3 1 2 0 0 1 0 0.61 1.00 -10152 RXFP1 relaxin/insulin-like family peptide receptor 1 525504 3 3 3 2 0 2 1 0 0 0 0.61 1.00 -10153 MRPS30 mitochondrial ribosomal protein S30 276556 2 2 2 0 0 1 1 0 0 0 0.61 1.00 -10154 OTUD5 OTU domain containing 5 273224 2 2 2 1 2 0 0 0 0 0 0.61 1.00 -10155 TMED4 transmembrane emp24 protein transport domain containing 4 137408 1 1 1 1 0 1 0 0 0 0 0.61 1.00 -10156 GPC2 glypican 2 308136 3 3 3 0 2 0 1 0 0 0 0.61 1.00 -10157 SLCO2A1 solute carrier organic anion transporter family, member 2A1 431872 3 3 3 2 0 2 0 0 1 0 0.61 1.00 -10158 TSPAN13 tetraspanin 13 143136 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -10159 YEATS2 YEATS domain containing 2 973888 6 6 6 2 0 3 2 0 1 0 0.61 1.00 -10160 AMPD2 adenosine monophosphate deaminase 2 (isoform L) 600904 5 5 5 1 3 2 0 0 0 0 0.61 1.00 -10161 B3GNT3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 223636 1 1 1 2 0 0 1 0 0 0 0.61 1.00 -10162 HHLA2 HERV-H LTR-associating 2 286048 2 2 2 1 1 1 0 0 0 0 0.61 1.00 -10163 NPR3 natriuretic peptide receptor C/guanylate cyclase C (atrionatriuretic peptide receptor C) 332748 3 2 3 2 1 1 0 0 1 0 0.61 1.00 -10164 POLA2 polymerase (DNA directed), alpha 2 (70kD subunit) 418656 2 2 2 0 0 0 2 0 0 0 0.61 1.00 -10165 GPER G protein-coupled estrogen receptor 1 251300 2 2 2 1 2 0 0 0 0 0 0.61 1.00 -10166 HAX1 HCLS1 associated protein X-1 194432 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -10167 C17orf55 chromosome 17 open reading frame 55 147728 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10168 MPP3 membrane protein, palmitoylated 3 (MAGUK p55 subfamily member 3) 400264 3 3 3 1 2 1 0 0 0 0 0.61 1.00 -10169 EAF1 ELL associated factor 1 171592 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10170 PEG10 paternally expressed 10 206176 1 1 1 1 1 0 0 0 0 0 0.61 1.00 -10171 CD101 694848 9 5 7 4 2 4 2 0 1 0 0.61 1.00 -10172 P2RX3 purinergic receptor P2X, ligand-gated ion channel, 3 268960 2 2 2 2 1 1 0 0 0 0 0.61 1.00 -10173 RNF121 ring finger protein 121 218960 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10174 HIVEP2 human immunodeficiency virus type I enhancer binding protein 2 1647912 12 9 12 7 4 5 2 0 1 0 0.61 1.00 -10175 ALG14 asparagine-linked glycosylation 14 homolog (S. cerevisiae) 149408 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -10176 KIAA0556 KIAA0556 1110440 11 7 10 4 5 4 1 0 1 0 0.61 1.00 -10177 AGXT2L2 alanine-glyoxylate aminotransferase 2-like 2 299712 1 1 1 0 0 0 0 0 1 0 0.61 1.00 -10178 FCGR3A Fc fragment of IgG, low affinity IIIa, receptor (CD16a) 200032 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -10179 KIF5A kinesin family member 5A 719264 10 6 10 1 6 4 0 0 0 0 0.61 1.00 -10180 MAP3K8 mitogen-activated protein kinase kinase kinase 8 320768 2 2 2 3 0 2 0 0 0 0 0.61 1.00 -10181 CLRN1 clarin 1 171360 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -10182 PSMD3 proteasome (prosome, macropain) 26S subunit, non-ATPase, 3 330040 3 3 3 0 2 1 0 0 0 0 0.61 1.00 -10183 CLDN9 claudin 9 124628 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -10184 RAP1GDS1 RAP1, GTP-GDP dissociation stimulator 1 422688 3 3 3 1 0 2 1 0 0 0 0.61 1.00 -10185 PAPOLB poly(A) polymerase beta (testis specific) 425012 5 4 5 1 3 0 2 0 0 0 0.61 1.00 -10186 TRMT11 tRNA methyltransferase 11 homolog (S. cerevisiae) 317608 1 1 1 3 0 1 0 0 0 0 0.61 1.00 -10187 CCDC132 coiled-coil domain containing 132 682976 4 3 4 1 0 3 1 0 0 0 0.61 1.00 -10188 GK glycerol kinase 395136 3 3 3 1 2 1 0 0 0 0 0.61 1.00 -10189 BATF basic leucine zipper transcription factor, ATF-like 87360 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10190 HMOX2 heme oxygenase (decycling) 2 217504 3 2 3 1 0 3 0 0 0 0 0.61 1.00 -10191 NEK1 NIMA (never in mitosis gene a)-related kinase 1 831416 9 5 8 3 4 3 1 1 0 0 0.61 1.00 -10192 SMS spermine synthase 244608 2 2 2 0 1 1 0 0 0 0 0.61 1.00 -10193 PMVK phosphomevalonate kinase 134176 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -10194 FAM187B 247072 1 1 1 1 0 0 0 0 1 0 0.61 1.00 -10195 ARHGAP11B Rho GTPase activating protein 11B 185472 1 1 1 2 1 0 0 0 0 0 0.61 1.00 -10196 CEP120 681184 7 5 7 1 0 4 2 0 1 0 0.61 1.00 -10197 CAMK4 calcium/calmodulin-dependent protein kinase IV 327712 3 3 3 3 1 1 1 0 0 0 0.61 1.00 -10198 GPRC5B G protein-coupled receptor, family C, group 5, member B 272664 2 2 2 3 0 1 1 0 0 0 0.61 1.00 -10199 KIAA0427 KIAA0427 394156 3 3 3 0 0 3 0 0 0 0 0.61 1.00 -10200 UBASH3A ubiquitin associated and SH3 domain containing, A 439048 3 3 3 5 1 1 0 0 1 0 0.61 1.00 -10201 PROP1 PROP paired-like homeobox 1 155232 1 1 1 1 1 0 0 0 0 0 0.61 1.00 -10202 CCDC144B coiled-coil domain containing 144B 236488 2 2 2 1 0 1 1 0 0 0 0.61 1.00 -10203 HMGB4 high-mobility group box 4 123620 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -10204 CRHR1 corticotropin releasing hormone receptor 1 282912 2 2 2 2 1 0 1 0 0 0 0.61 1.00 -10205 FAM59A family with sequence similarity 59, member A 583548 6 4 6 2 1 2 2 0 1 0 0.61 1.00 -10206 TPD52L2 tumor protein D52-like 2 157336 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10207 SLC25A25 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 25 401268 2 2 2 1 0 1 0 0 1 0 0.61 1.00 -10208 SHISA3 shisa homolog 3 (Xenopus laevis) 127412 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -10209 SLC12A1 solute carrier family 12 (sodium/potassium/chloride transporters), member 1 734344 11 5 10 3 3 6 2 0 0 0 0.61 1.00 -10210 TOM1L1 target of myb1 (chicken)-like 1 333984 1 1 1 0 0 0 0 0 1 0 0.61 1.00 -10211 NARF nuclear prelamin A recognition factor 314356 2 2 2 3 1 0 1 0 0 0 0.61 1.00 -10212 UBA7 ubiquitin-like modifier activating enzyme 7 678896 4 4 4 0 1 2 1 0 0 0 0.61 1.00 -10213 ILDR2 330664 2 2 2 0 0 2 0 0 0 0 0.61 1.00 -10214 TOP2B topoisomerase (DNA) II beta 180kDa 1035848 9 6 8 1 3 4 2 0 0 0 0.61 1.00 -10215 LILRA2 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 2 320096 2 2 2 1 0 1 0 0 1 0 0.62 1.00 -10216 DHRS3 dehydrogenase/reductase (SDR family) member 3 203700 2 2 2 2 2 0 0 0 0 0 0.62 1.00 -10217 GMEB2 glucocorticoid modulatory element binding protein 2 347280 3 3 3 2 2 0 1 0 0 0 0.62 1.00 -10218 MLST8 221284 2 2 2 1 0 1 0 0 1 0 0.62 1.00 -10219 HIST2H2AB histone cluster 2, H2ab 88928 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -10220 SLC25A20 solute carrier family 25 (carnitine/acylcarnitine translocase), member 20 210872 2 2 2 1 1 1 0 0 0 0 0.62 1.00 -10221 PTCD3 Pentatricopeptide repeat domain 3 485184 4 3 4 0 1 2 1 0 0 0 0.62 1.00 -10222 CCDC64B coiled-coil domain containing 64B 169676 1 1 1 0 0 0 0 1 0 0 0.62 1.00 -10223 ARHGEF18 rho/rac guanine nucleotide exchange factor (GEF) 18 538048 5 5 5 1 2 3 0 0 0 0 0.62 1.00 -10224 MS4A4A membrane-spanning 4-domains, subfamily A, member 4 167552 2 1 2 0 0 2 0 0 0 0 0.62 1.00 -10225 ITIH3 inter-alpha (globulin) inhibitor H3 609352 4 4 4 4 1 1 1 1 0 0 0.62 1.00 -10226 ZNF518B zinc finger protein 518B 723296 3 3 3 4 0 1 2 0 0 0 0.62 1.00 -10227 ZFP1 zinc finger protein 1 homolog (mouse) 276864 4 2 4 0 0 4 0 0 0 0 0.62 1.00 -10228 ATG10 ATG10 autophagy related 10 homolog (S. cerevisiae) 153888 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -10229 LHX1 LIM homeobox 1 192820 1 1 1 0 0 0 0 0 1 0 0.62 1.00 -10230 HMGB1 high-mobility group box 1 148296 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -10231 RASGEF1C RasGEF domain family, member 1C 289604 2 2 2 0 1 1 0 0 0 0 0.62 1.00 -10232 MOCS3 molybdenum cofactor synthesis 3 275660 2 2 2 0 1 1 0 0 0 0 0.62 1.00 -10233 FNBP4 formin binding protein 4 649412 5 4 5 1 0 5 0 0 0 0 0.62 1.00 -10234 JMJD1C jumonji domain containing 1C 1713404 9 8 9 0 0 5 4 0 0 0 0.62 1.00 -10235 TMEM17 transmembrane protein 17 137312 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -10236 GATA6 GATA binding protein 6 193396 2 2 2 0 1 1 0 0 0 0 0.62 1.00 -10237 MBD1 methyl-CpG binding domain protein 1 462364 5 4 5 0 3 0 1 0 1 0 0.62 1.00 -10238 LSM4 LSM4 homolog, U6 small nuclear RNA associated (S. cerevisiae) 96672 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -10239 OAS1 2',5'-oligoadenylate synthetase 1, 40/46kDa 308448 2 2 2 1 1 0 1 0 0 0 0.62 1.00 -10240 MAF v-maf musculoaponeurotic fibrosarcoma oncogene homolog (avian) 146888 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -10241 LACE1 lactation elevated 1 323540 4 3 4 1 2 2 0 0 0 0 0.62 1.00 -10242 PRKACA protein kinase, cAMP-dependent, catalytic, alpha 240128 1 1 1 2 0 0 0 0 1 0 0.62 1.00 -10243 CHMP4B chromatin modifying protein 4B 144160 1 1 1 2 1 0 0 0 0 0 0.62 1.00 -10244 NDC80 NDC80 homolog, kinetochore complex component (S. cerevisiae) 446432 2 2 2 0 0 1 0 0 1 0 0.62 1.00 -10245 CATSPER3 cation channel, sperm associated 3 275296 2 2 2 0 0 1 1 0 0 0 0.62 1.00 -10246 ZNF433 zinc finger protein 433 456512 2 2 2 2 1 0 1 0 0 0 0.62 1.00 -10247 CCND3 cyclin D3 172068 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -10248 KIAA1797 KIAA1797 1249472 7 7 7 2 1 3 3 0 0 0 0.62 1.00 -10249 CYB5R3 cytochrome b5 reductase 3 190476 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -10250 HSD17B4 hydroxysteroid (17-beta) dehydrogenase 4 516768 3 3 3 0 1 1 1 0 0 0 0.62 1.00 -10251 PVRL3 poliovirus receptor-related 3 343912 2 2 2 0 0 1 0 0 1 0 0.62 1.00 -10252 TGM1 transglutaminase 1 (K polypeptide epidermal type I, protein-glutamine-gamma-glutamyltransferase) 545832 4 4 4 1 2 0 2 0 0 0 0.62 1.00 -10253 C6orf105 chromosome 6 open reading frame 105 160608 1 1 1 1 0 0 1 0 0 0 0.62 1.00 -10254 IFNAR2 interferon (alpha, beta and omega) receptor 2 369544 2 2 2 1 1 1 0 0 0 0 0.62 1.00 -10255 CBX2 chromobox homolog 2 (Pc class homolog, Drosophila) 340556 2 2 2 1 0 1 0 0 1 0 0.62 1.00 -10256 C21orf62 chromosome 21 open reading frame 62 148512 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -10257 GJA4 gap junction protein, alpha 4, 37kDa 225092 2 2 2 2 1 1 0 0 0 0 0.62 1.00 -10258 C1R complement component 1, r subcomponent 411560 3 3 3 1 1 1 0 0 1 0 0.62 1.00 -10259 GRWD1 glutamate-rich WD repeat containing 1 294112 2 2 2 1 0 0 2 0 0 0 0.62 1.00 -10260 C2orf67 chromosome 2 open reading frame 67 676480 3 3 3 1 0 1 1 0 1 0 0.62 1.00 -10261 TNFSF13B tumor necrosis factor (ligand) superfamily, member 13b 197568 1 1 1 0 0 0 0 0 1 0 0.62 1.00 -10262 SHPK sedoheptulokinase 320236 2 2 2 0 0 1 0 0 1 0 0.62 1.00 -10263 RPL18A ribosomal protein L18a 118412 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -10264 NODAL nodal homolog (mouse) 184100 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -10265 DDX23 DEAD (Asp-Glu-Ala-Asp) box polypeptide 23 566048 4 4 4 1 1 2 1 0 0 0 0.62 1.00 -10266 TNS3 tensin 3 989968 8 6 8 0 4 1 0 0 1 2 0.62 1.00 -10267 OXTR oxytocin receptor 208376 3 3 3 1 2 0 1 0 0 0 0.62 1.00 -10268 ASH2L ash2 (absent, small, or homeotic)-like (Drosophila) 417816 2 2 2 1 1 0 0 0 1 0 0.62 1.00 -10269 BICD2 bicaudal D homolog 2 (Drosophila) 505108 6 5 5 1 6 0 0 0 0 0 0.62 1.00 -10270 TFDP3 transcription factor Dp family, member 3 235200 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -10271 RAB40AL RAB40A, member RAS oncogene family-like 188384 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -10272 FCF1 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) 140896 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -10273 ELOVL1 elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 1 194432 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -10274 ABHD12 abhydrolase domain containing 12 249984 2 2 2 1 1 1 0 0 0 0 0.62 1.00 -10275 ZNF641 zinc finger protein 641 302624 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -10276 CABP2 calcium binding protein 2 109328 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -10277 ATP2B1 ATPase, Ca++ transporting, plasma membrane 1 873824 10 5 10 3 4 1 3 0 0 2 0.62 1.00 -10278 FAM134C family with sequence similarity 134, member C 301476 2 2 2 1 0 1 1 0 0 0 0.62 1.00 -10279 KAZ 466456 4 4 4 3 0 3 0 0 1 0 0.62 1.00 -10280 SPHK1 sphingosine kinase 1 246600 1 1 1 1 0 0 0 0 1 0 0.62 1.00 -10281 RP1L1 retinitis pigmentosa 1-like 1 1412152 12 10 12 3 5 5 2 0 0 0 0.62 1.00 -10282 DHX37 DEAH (Asp-Glu-Ala-His) box polypeptide 37 769176 5 5 5 5 2 2 1 0 0 0 0.62 1.00 -10283 C16orf48 chromosome 16 open reading frame 48 196516 2 2 2 0 0 2 0 0 0 0 0.62 1.00 -10284 PYROXD2 400752 2 2 2 2 1 1 0 0 0 0 0.62 1.00 -10285 ENSA endosulfine alpha 139328 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -10286 FUCA1 fucosidase, alpha-L- 1, tissue 271320 3 2 3 0 1 0 1 0 1 0 0.62 1.00 -10287 SENP3 SUMO1/sentrin/SMT3 specific peptidase 3 291464 1 1 1 0 0 0 0 0 1 0 0.62 1.00 -10288 ABCD1 ATP-binding cassette, sub-family D (ALD), member 1 347236 3 3 3 0 1 1 1 0 0 0 0.62 1.00 -10289 EP400 E1A binding protein p400 1996180 20 15 20 6 10 8 1 0 1 0 0.62 1.00 -10290 ORAI1 ORAI calcium release-activated calcium modulator 1 166264 2 2 2 0 2 0 0 0 0 0 0.62 1.00 -10291 ZNF836 632352 9 5 9 1 0 8 1 0 0 0 0.62 1.00 -10292 WIPI1 WD repeat domain, phosphoinositide interacting 1 296120 2 2 2 2 1 0 1 0 0 0 0.62 1.00 -10293 SYDE1 synapse defective 1, Rho GTPase, homolog 1 (C. elegans) 288516 3 3 3 3 3 0 0 0 0 0 0.62 1.00 -10294 TAF3 TAF3 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 140kDa 587244 4 4 4 1 2 1 0 0 1 0 0.62 1.00 -10295 FHL2 four and a half LIM domains 2 192640 2 2 2 0 1 1 0 0 0 0 0.62 1.00 -10296 UBTF upstream binding transcription factor, RNA polymerase I 531372 6 5 6 3 0 4 2 0 0 0 0.62 1.00 -10297 RAB20 RAB20, member RAS oncogene family 155596 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -10298 KRTAP10-7 keratin associated protein 10-7 240556 2 2 2 1 1 0 1 0 0 0 0.62 1.00 -10299 KLHL14 kelch-like 14 (Drosophila) 410032 3 3 3 1 2 0 0 0 1 0 0.62 1.00 -10300 FRG2 FSHD region gene 2 150668 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -10301 SLC47A1 solute carrier family 47, member 1 368508 4 3 4 0 0 1 2 0 1 0 0.62 1.00 -10302 GPR26 G protein-coupled receptor 26 132496 2 2 2 0 2 0 0 0 0 0 0.62 1.00 -10303 SAP30 Sin3A-associated protein, 30kDa 106680 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -10304 PIK3C2A phosphoinositide-3-kinase, class 2, alpha polypeptide 1162336 5 5 5 2 0 3 2 0 0 0 0.62 1.00 -10305 C12orf53 chromosome 12 open reading frame 53 173628 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -10306 BBS7 Bardet-Biedl syndrome 7 499296 6 3 6 2 0 4 1 0 1 0 0.62 1.00 -10307 DCAF8 408120 4 3 4 0 1 3 0 0 0 0 0.62 1.00 -10308 SLC22A3 solute carrier family 22 (extraneuronal monoamine transporter), member 3 306348 3 3 3 1 1 2 0 0 0 0 0.62 1.00 -10309 TAF1C TATA box binding protein (TBP)-associated factor, RNA polymerase I, C, 110kDa 506576 3 3 3 1 0 1 1 0 1 0 0.62 1.00 -10310 KLF1 Kruppel-like factor 1 (erythroid) 130032 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -10311 C18orf10 chromosome 18 open reading frame 10 208544 1 1 1 1 0 0 1 0 0 0 0.62 1.00 -10312 BIN2 bridging integrator 2 379484 3 3 3 1 1 1 1 0 0 0 0.62 1.00 -10313 PROL1 proline rich, lacrimal 1 169120 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -10314 CXXC5 CXXC finger 5 147112 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -10315 MICALL1 MICAL-like 1 433692 3 3 3 0 1 2 0 0 0 0 0.62 1.00 -10316 BCR breakpoint cluster region 643580 7 6 7 2 4 1 2 0 0 0 0.62 1.00 -10317 TYRP1 tyrosinase-related protein 1 367808 2 2 2 2 1 1 0 0 0 0 0.62 1.00 -10318 HCK hemopoietic cell kinase 340128 2 2 2 1 1 0 0 0 1 0 0.62 1.00 -10319 CUEDC2 CUE domain containing 2 200704 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -10320 C1orf69 chromosome 1 open reading frame 69 103320 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -10321 OSGEP O-sialoglycoprotein endopeptidase 235648 1 1 1 0 0 0 0 0 1 0 0.62 1.00 -10322 DUSP26 dual specificity phosphatase 26 (putative) 145152 1 1 1 3 1 0 0 0 0 0 0.62 1.00 -10323 SEC14L2 SEC14-like 2 (S. cerevisiae) 270984 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -10324 CUL9 1727936 12 10 12 6 5 3 1 0 3 0 0.62 1.00 -10325 CCDC101 coiled-coil domain containing 101 205632 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -10326 GLI1 glioma-associated oncogene homolog 1 (zinc finger protein) 743176 4 4 4 4 1 1 0 0 2 0 0.62 1.00 -10327 BCL2L1 BCL2-like 1 156436 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -10328 PAWR PRKC, apoptosis, WT1, regulator 134204 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -10329 ELOVL5 ELOVL family member 5, elongation of long chain fatty acids (FEN1/Elo2, SUR4/Elo3-like, yeast) 207872 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -10330 COL5A3 collagen, type V, alpha 3 1146696 10 6 10 2 4 4 1 0 1 0 0.62 1.00 -10331 YARS tyrosyl-tRNA synthetase 367136 2 2 2 1 2 0 0 0 0 0 0.62 1.00 -10332 IRF6 interferon regulatory factor 6 320768 2 2 2 2 0 1 1 0 0 0 0.62 1.00 -10333 GCLC glutamate-cysteine ligase, catalytic subunit 443072 4 3 4 0 0 1 3 0 0 0 0.62 1.00 -10334 CUTC cutC copper transporter homolog (E. coli) 177632 1 1 1 1 0 0 1 0 0 0 0.62 1.00 -10335 MARCH6 membrane-associated ring finger (C3HC4) 6 630336 6 5 6 1 3 1 2 0 0 0 0.62 1.00 -10336 DDOST dolichyl-diphosphooligosaccharide-protein glycosyltransferase 276944 2 2 2 4 2 0 0 0 0 0 0.62 1.00 -10337 EHD1 EH-domain containing 1 334780 3 3 3 0 1 1 0 0 1 0 0.62 1.00 -10338 MAP3K11 mitogen-activated protein kinase kinase kinase 11 429716 4 4 4 0 2 1 0 0 1 0 0.62 1.00 -10339 MKKS McKusick-Kaufman syndrome 387296 2 2 2 0 0 1 1 0 0 0 0.63 1.00 -10340 KLF6 Kruppel-like factor 6 194432 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -10341 LAMC2 laminin, gamma 2 817796 10 6 10 1 7 2 1 0 0 0 0.63 1.00 -10342 NDST1 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 1 605836 4 4 4 2 2 0 2 0 0 0 0.63 1.00 -10343 ZNF674 zinc finger protein 674 394688 2 2 2 2 0 0 2 0 0 0 0.63 1.00 -10344 C14orf43 chromosome 14 open reading frame 43 703896 4 4 4 2 1 2 0 0 1 0 0.63 1.00 -10345 ANKK1 ankyrin repeat and kinase domain containing 1 392208 3 3 3 0 2 0 1 0 0 0 0.63 1.00 -10346 MRPS5 mitochondrial ribosomal protein S5 286496 3 2 3 1 2 0 1 0 0 0 0.63 1.00 -10347 HTR2A 5-hydroxytryptamine (serotonin) receptor 2A 319872 3 3 3 3 0 3 0 0 0 0 0.63 1.00 -10348 MPO myeloperoxidase 501732 5 5 5 2 3 1 0 0 1 0 0.63 1.00 -10349 WDR4 WD repeat domain 4 246356 2 2 2 3 2 0 0 0 0 0 0.63 1.00 -10350 CAPS2 calcyphosine 2 229152 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10351 KRT32 keratin 32 297332 2 2 2 1 0 2 0 0 0 0 0.63 1.00 -10352 SAR1A SAR1 gene homolog A (S. cerevisiae) 139104 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -10353 HELT 198044 2 2 2 1 1 0 1 0 0 0 0.63 1.00 -10354 HSF5 heat shock transcription factor family member 5 355068 3 3 3 0 0 2 1 0 0 0 0.63 1.00 -10355 ANKRD24 ankyrin repeat domain 24 530596 5 5 5 0 2 3 0 0 0 0 0.63 1.00 -10356 C16orf71 chromosome 16 open reading frame 71 333172 3 3 3 1 1 2 0 0 0 0 0.63 1.00 -10357 OR6C2 olfactory receptor, family 6, subfamily C, member 2 211232 2 1 2 2 0 1 1 0 0 0 0.63 1.00 -10358 DOK4 docking protein 4 226912 1 1 1 0 0 0 0 0 1 0 0.63 1.00 -10359 RSBN1 round spermatid basic protein 1 522140 4 4 4 0 1 2 1 0 0 0 0.63 1.00 -10360 DSCC1 defective in sister chromatid cohesion 1 homolog (S. cerevisiae) 237188 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10361 GRN granulin 406392 2 2 2 3 0 1 0 0 1 0 0.63 1.00 -10362 ALG10 asparagine-linked glycosylation 10 homolog (yeast, alpha-1,2-glucosyltransferase) 321216 3 2 3 0 0 1 2 0 0 0 0.63 1.00 -10363 TMEM161B transmembrane protein 161B 338688 2 2 2 1 0 1 1 0 0 0 0.63 1.00 -10364 RPS6KC1 ribosomal protein S6 kinase, 52kDa, polypeptide 1 730464 8 5 8 0 0 4 4 0 0 0 0.63 1.00 -10365 SLC9A8 solute carrier family 9 (sodium/hydrogen exchanger), member 8 401360 3 3 3 4 0 3 0 0 0 0 0.63 1.00 -10366 TIPIN TIMELESS interacting protein 209216 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -10367 PEX14 peroxisomal biogenesis factor 14 261064 2 2 2 1 1 0 1 0 0 0 0.63 1.00 -10368 CLUL1 clusterin-like 1 (retinal) 320992 2 2 2 3 0 1 1 0 0 0 0.63 1.00 -10369 ZNF516 zinc finger protein 516 595504 6 5 6 1 2 2 0 0 2 0 0.63 1.00 -10370 ZZZ3 zinc finger, ZZ-type containing 3 617344 5 4 5 2 3 0 2 0 0 0 0.63 1.00 -10371 FAM155B family with sequence similarity 155, member B 242340 1 1 1 1 0 0 0 0 1 0 0.63 1.00 -10372 PSME4 proteasome (prosome, macropain) activator subunit 4 1205120 9 5 9 2 5 2 2 0 0 0 0.63 1.00 -10373 AKTIP AKT interacting protein 204960 1 1 1 0 0 0 0 0 1 0 0.63 1.00 -10374 SLC22A20 solute carrier family 22, member 20 160104 1 1 1 0 0 0 0 0 1 0 0.63 1.00 -10375 CHRD chordin 565628 5 4 5 0 1 3 0 0 1 0 0.63 1.00 -10376 CRAT carnitine acetyltransferase 414696 3 3 3 0 2 1 0 0 0 0 0.63 1.00 -10377 TPPP tubulin polymerization promoting protein 127904 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10378 B3GALT2 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 2 285152 3 2 3 0 1 2 0 0 0 0 0.63 1.00 -10379 EDN3 endothelin 3 165172 1 1 1 1 0 1 0 0 0 0 0.63 1.00 -10380 IFI30 interferon, gamma-inducible protein 30 139536 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -10381 COPS7B COP9 constitutive photomorphogenic homolog subunit 7B (Arabidopsis) 177880 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -10382 LILRB3 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 3 309880 2 2 2 3 0 2 0 0 0 0 0.63 1.00 -10383 OR1I1 olfactory receptor, family 1, subfamily I, member 1 239448 2 2 2 5 1 1 0 0 0 0 0.63 1.00 -10384 FAM111A family with sequence similarity 111, member A 413056 2 2 2 3 1 1 0 0 0 0 0.63 1.00 -10385 SLC35A2 solute carrier family 35 (UDP-galactose transporter), member A2 255112 1 1 1 0 0 0 0 0 1 0 0.63 1.00 -10386 ETNK1 ethanolamine kinase 1 297500 2 2 2 0 0 1 1 0 0 0 0.63 1.00 -10387 NGLY1 N-glycanase 1 439304 3 3 3 1 2 0 0 0 1 0 0.63 1.00 -10388 ANXA2 annexin A2 246036 2 2 2 0 2 0 0 0 0 0 0.63 1.00 -10389 ARL6IP6 ADP-ribosylation-like factor 6 interacting protein 6 148148 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -10390 NHLH1 nescient helix loop helix 1 78596 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -10391 FAM13A 717024 8 5 8 3 3 3 1 0 1 0 0.63 1.00 -10392 RAB3B RAB3B, member RAS oncogene family 151424 1 1 1 1 0 1 0 0 0 0 0.63 1.00 -10393 SLC5A3 solute carrier family 5 (inositol transporters), member 3 484064 2 2 2 0 0 1 1 0 0 0 0.63 1.00 -10394 TUBB4 tubulin, beta 4 294980 3 3 3 2 2 1 0 0 0 0 0.63 1.00 -10395 CHIC2 cysteine-rich hydrophobic domain 2 116928 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -10396 DYRK1A dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 1A 542080 5 5 5 0 3 2 0 0 0 0 0.63 1.00 -10397 SEPT12 septin 12 247408 2 2 2 3 2 0 0 0 0 0 0.63 1.00 -10398 UGT1A3 UDP glucuronosyltransferase 1 family, polypeptide A3 364000 2 2 2 1 0 1 0 0 1 0 0.63 1.00 -10399 ZNF527 zinc finger protein 527 412580 2 2 2 1 0 1 1 0 0 0 0.63 1.00 -10400 RALGAPB 1030624 6 6 6 0 1 2 2 0 1 0 0.63 1.00 -10401 MARS methionyl-tRNA synthetase 624288 6 5 6 1 1 4 0 0 1 0 0.63 1.00 -10402 RGS22 regulator of G-protein signaling 22 870328 9 4 9 2 2 4 1 0 0 2 0.63 1.00 -10403 HAUS8 286048 2 2 2 1 1 1 0 0 0 0 0.63 1.00 -10404 C2orf43 chromosome 2 open reading frame 43 224448 1 1 1 0 0 0 0 0 1 0 0.63 1.00 -10405 PRKACG protein kinase, cAMP-dependent, catalytic, gamma 237440 3 3 3 2 3 0 0 0 0 0 0.63 1.00 -10406 FAR1 356608 1 1 1 0 0 0 0 0 1 0 0.63 1.00 -10407 SYTL4 synaptotagmin-like 4 (granuphilin-a) 465920 2 2 2 2 1 0 1 0 0 0 0.63 1.00 -10408 HYI hydroxypyruvate isomerase homolog (E. coli) 145864 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10409 SLC39A8 solute carrier family 39 (zinc transporter), member 8 267008 1 1 1 0 0 0 0 0 1 0 0.63 1.00 -10410 MARCH11 membrane-associated ring finger (C3HC4) 11 153216 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -10411 SLC5A11 solute carrier family 5 (sodium/glucose cotransporter), member 11 467712 3 3 3 3 0 3 0 0 0 0 0.63 1.00 -10412 DMRT3 doublesex and mab-3 related transcription factor 3 252196 2 2 2 2 2 0 0 0 0 0 0.63 1.00 -10413 ANKRD2 ankyrin repeat domain 2 (stretch responsive muscle) 167384 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10414 DPPA4 developmental pluripotency associated 4 211232 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -10415 C1orf25 chromosome 1 open reading frame 25 492520 3 3 3 0 1 2 0 0 0 0 0.63 1.00 -10416 HAL histidine ammonia-lyase 460096 4 4 4 4 1 2 1 0 0 0 0.63 1.00 -10417 SLC4A1AP solute carrier family 4 (anion exchanger), member 1, adaptor protein 548128 7 4 7 0 2 2 2 0 1 0 0.63 1.00 -10418 FNDC7 fibronectin type III domain containing 7 346080 1 1 1 1 0 0 0 0 1 0 0.63 1.00 -10419 SREBF2 sterol regulatory element binding transcription factor 2 704592 3 3 3 3 0 0 1 0 2 0 0.63 1.00 -10420 FBXW12 F-box and WD repeat domain containing 12 321440 2 2 2 1 0 1 1 0 0 0 0.63 1.00 -10421 SLBP stem-loop binding protein 148064 1 1 1 1 1 0 0 0 0 0 0.63 1.00 -10422 HSPD1 heat shock 60kDa protein 1 (chaperonin) 388696 2 2 2 1 0 0 1 0 1 0 0.63 1.00 -10423 C12orf69 152768 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -10424 CHPF2 428120 3 3 3 0 2 0 0 0 1 0 0.63 1.00 -10425 TTC26 tetratricopeptide repeat domain 26 389088 2 2 2 1 0 1 0 0 1 0 0.63 1.00 -10426 MYL2 myosin, light chain 2, regulatory, cardiac, slow 118496 1 1 1 1 1 0 0 0 0 0 0.63 1.00 -10427 IMP5 460964 3 3 3 3 2 1 0 0 0 0 0.63 1.00 -10428 TMC3 transmembrane channel-like 3 738260 5 5 5 2 1 1 3 0 0 0 0.63 1.00 -10429 ARHGAP31 975744 8 6 8 3 3 4 0 0 1 0 0.63 1.00 -10430 ST7 suppression of tumorigenicity 7 430528 2 2 2 1 0 2 0 0 0 0 0.63 1.00 -10431 TRAM1L1 translocation associated membrane protein 1-like 1 248108 2 2 2 2 0 2 0 0 0 0 0.63 1.00 -10432 APOL1 apolipoprotein L, 1 279720 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10433 STAMBP STAM binding protein 293664 2 2 2 0 1 1 0 0 0 0 0.63 1.00 -10434 ESYT2 527744 3 3 3 1 1 1 1 0 0 0 0.63 1.00 -10435 TRIM54 tripartite motif-containing 54 248332 3 2 3 0 1 2 0 0 0 0 0.63 1.00 -10436 AOC3 amine oxidase, copper containing 3 (vascular adhesion protein 1) 496496 4 4 4 4 1 2 1 0 0 0 0.63 1.00 -10437 MRPS28 mitochondrial ribosomal protein S28 129024 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10438 MSL3 367840 3 2 3 0 0 2 1 0 0 0 0.63 1.00 -10439 RBMX RNA binding motif protein, X-linked 270592 1 1 1 1 0 1 0 0 0 0 0.63 1.00 -10440 GPR153 G protein-coupled receptor 153 232564 2 2 2 0 0 2 0 0 0 0 0.63 1.00 -10441 VSIG1 V-set and immunoglobulin domain containing 1 267008 2 2 2 2 1 0 0 0 1 0 0.63 1.00 -10442 PISD phosphatidylserine decarboxylase 252784 2 2 2 2 2 0 0 0 0 0 0.63 1.00 -10443 MAP3K6 mitogen-activated protein kinase kinase kinase 6 772380 6 6 6 0 2 3 1 0 0 0 0.63 1.00 -10444 NAV1 neuron navigator 1 1213772 8 7 8 2 0 3 4 0 1 0 0.63 1.00 -10445 OR4C16 olfactory receptor, family 4, subfamily C, member 16 209888 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10446 RAB8A RAB8A, member RAS oncogene family 146944 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -10447 FBXL14 F-box and leucine-rich repeat protein 14 267176 2 2 2 0 0 1 1 0 0 0 0.63 1.00 -10448 DLGAP2 discs, large (Drosophila) homolog-associated protein 2 529784 5 5 5 9 5 0 0 0 0 0 0.63 1.00 -10449 PRPF40B PRP40 pre-mRNA processing factor 40 homolog B (S. cerevisiae) 608384 5 5 5 1 3 1 0 1 0 0 0.63 1.00 -10450 PDE5A phosphodiesterase 5A, cGMP-specific 614208 6 3 6 2 2 1 1 0 2 0 0.63 1.00 -10451 EEPD1 endonuclease/exonuclease/phosphatase family domain containing 1 387968 3 3 3 0 1 2 0 0 0 0 0.63 1.00 -10452 SLTM SAFB-like, transcription modulator 709884 8 6 8 1 5 2 1 0 0 0 0.63 1.00 -10453 ADD3 adducin 3 (gamma) 487648 2 2 2 1 2 0 0 0 0 0 0.63 1.00 -10454 LAPTM4A lysosomal-associated protein transmembrane 4 alpha 163520 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10455 PRPS1L1 phosphoribosyl pyrophosphate synthetase 1-like 1 215264 1 1 1 2 0 0 1 0 0 0 0.63 1.00 -10456 HNRNPA1L2 151088 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10457 LMAN1 lectin, mannose-binding, 1 355040 2 2 2 1 0 1 1 0 0 0 0.63 1.00 -10458 AMN1 antagonist of mitotic exit network 1 homolog (S. cerevisiae) 150840 1 1 1 1 0 0 1 0 0 0 0.63 1.00 -10459 ZNF441 zinc finger protein 441 423808 3 2 3 0 0 1 1 0 1 0 0.63 1.00 -10460 SEPT4 septin 4 351680 5 3 5 0 4 1 0 0 0 0 0.63 1.00 -10461 ATP6V0B ATPase, H+ transporting, lysosomal 21kDa, V0 subunit b 129696 1 1 1 2 0 1 0 0 0 0 0.63 1.00 -10462 FAM158A 144928 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -10463 PCDHGC3 protocadherin gamma subfamily C, 3 633640 6 5 6 1 2 2 1 1 0 0 0.63 1.00 -10464 RBL1 retinoblastoma-like 1 (p107) 739172 5 4 5 1 2 2 0 0 1 0 0.63 1.00 -10465 SLC37A2 solute carrier family 37 (glycerol-3-phosphate transporter), member 2 356160 3 3 3 2 2 0 1 0 0 0 0.63 1.00 -10466 NFU1 NFU1 iron-sulfur cluster scaffold homolog (S. cerevisiae) 172984 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -10467 C17orf60 chromosome 17 open reading frame 60 170380 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -10468 MEA1 male-enhanced antigen 1 128576 1 1 1 2 1 0 0 0 0 0 0.63 1.00 -10469 DHRS9 dehydrogenase/reductase (SDR family) member 9 218624 1 1 1 1 0 0 1 0 0 0 0.64 1.00 -10470 CAPG capping protein (actin filament), gelsolin-like 242592 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10471 SLC35B1 solute carrier family 35, member B1 225120 1 1 1 1 0 0 1 0 0 0 0.64 1.00 -10472 SLCO3A1 solute carrier organic anion transporter family, member 3A1 432040 3 3 3 4 1 1 1 0 0 0 0.64 1.00 -10473 TFCP2L1 transcription factor CP2-like 1 324576 2 2 2 3 1 1 0 0 0 0 0.64 1.00 -10474 BAI2 brain-specific angiogenesis inhibitor 2 887956 6 6 6 1 4 0 1 0 1 0 0.64 1.00 -10475 GCC2 GRIP and coiled-coil domain containing 2 1132332 7 5 7 3 0 2 3 0 2 0 0.64 1.00 -10476 MICALCL MICAL C-terminal like 455280 4 4 4 1 1 2 1 0 0 0 0.64 1.00 -10477 DSG2 desmoglein 2 754432 5 5 5 0 3 1 1 0 0 0 0.64 1.00 -10478 LRTM2 leucine-rich repeats and transmembrane domains 2 197456 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10479 FOXH1 forkhead box H1 148168 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -10480 RBM15B RNA binding motif protein 15B 444220 3 3 3 2 1 0 1 0 1 0 0.64 1.00 -10481 SERINC3 serine incorporator 3 327488 2 2 2 0 0 2 0 0 0 0 0.64 1.00 -10482 ESRP1 471608 2 2 2 2 0 1 0 0 1 0 0.64 1.00 -10483 KCNN3 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 3 477536 4 4 4 2 3 0 1 0 0 0 0.64 1.00 -10484 TBC1D21 TBC1 domain family, member 21 236320 1 1 1 0 0 0 0 0 1 0 0.64 1.00 -10485 UNK unkempt homolog (Drosophila) 522936 4 4 4 1 1 1 1 0 1 0 0.64 1.00 -10486 PAMR1 494368 4 4 4 1 0 3 1 0 0 0 0.64 1.00 -10487 ZNF438 zinc finger protein 438 555324 4 4 4 0 2 1 1 0 0 0 0.64 1.00 -10488 SNHG3-RCC1 SNHG3-RCC1 291648 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -10489 MFN1 mitofusin 1 513856 4 2 4 3 0 1 1 0 0 2 0.64 1.00 -10490 DOK1 docking protein 1, 62kDa (downstream of tyrosine kinase 1) 304192 2 2 2 0 0 1 0 0 1 0 0.64 1.00 -10491 TWISTNB TWIST neighbor 227528 2 2 2 1 1 1 0 0 0 0 0.64 1.00 -10492 PEMT phosphatidylethanolamine N-methyltransferase 151980 1 1 1 1 0 1 0 0 0 0 0.64 1.00 -10493 SLC6A12 solute carrier family 6 (neurotransmitter transporter, betaine/GABA), member 12 412768 3 3 3 3 1 2 0 0 0 0 0.64 1.00 -10494 RBM5 RNA binding motif protein 5 569856 3 3 3 1 1 1 0 0 1 0 0.64 1.00 -10495 ANXA3 annexin A3 228480 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10496 WNT8A wingless-type MMTV integration site family, member 8A 241920 2 2 2 2 0 2 0 0 0 0 0.64 1.00 -10497 MORC2 MORC family CW-type zinc finger 2 673120 5 5 3 0 2 0 3 0 0 0 0.64 1.00 -10498 C19orf46 chromosome 19 open reading frame 46 265424 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -10499 FOXD4L1 forkhead box D4-like 1 252476 3 3 3 1 2 1 0 0 0 0 0.64 1.00 -10500 PREB prolactin regulatory element binding 276060 2 2 2 0 1 1 0 0 0 0 0.64 1.00 -10501 OR5J2 olfactory receptor, family 5, subfamily J, member 2 211232 1 1 1 2 0 1 0 0 0 0 0.64 1.00 -10502 WBP1 WW domain binding protein 1 173332 1 1 1 1 0 0 1 0 0 0 0.64 1.00 -10503 TMEM106C transmembrane protein 106C 174944 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10504 GGT5 gamma-glutamyltransferase 5 361572 2 2 2 2 1 0 0 0 1 0 0.64 1.00 -10505 SP140L 384576 3 2 3 2 1 0 2 0 0 0 0.64 1.00 -10506 MYCBPAP MYCBP associated protein 653128 4 4 4 4 1 2 1 0 0 0 0.64 1.00 -10507 CKAP2L cytoskeleton associated protein 2-like 509376 3 3 3 1 1 1 0 0 1 0 0.64 1.00 -10508 OR8G2 olfactory receptor, family 8, subfamily G, member 2 205856 1 1 1 1 0 1 0 0 0 0 0.64 1.00 -10509 FOXR2 forkhead box R2 210560 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -10510 CCDC116 coiled-coil domain containing 116 359184 3 3 3 0 2 1 0 0 0 0 0.64 1.00 -10511 SIGMAR1 128656 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10512 CD83 CD83 molecule 138488 1 1 1 2 0 0 1 0 0 0 0.64 1.00 -10513 ITGB7 integrin, beta 7 505988 4 4 4 2 1 2 1 0 0 0 0.64 1.00 -10514 MRM1 mitochondrial rRNA methyltransferase 1 homolog (S. cerevisiae) 220024 2 2 2 0 0 2 0 0 0 0 0.64 1.00 -10515 MAGI3 membrane associated guanylate kinase, WW and PDZ domain containing 3 986636 6 5 6 2 0 3 2 0 1 0 0.64 1.00 -10516 USP51 ubiquitin specific peptidase 51 444304 3 3 3 2 0 2 0 1 0 0 0.64 1.00 -10517 SLC22A18 solute carrier family 22, member 18 214480 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10518 C1QB complement component 1, q subcomponent, B chain 172480 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10519 TAF1D 191968 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10520 KRT79 keratin 79 364476 3 3 3 1 2 1 0 0 0 0 0.64 1.00 -10521 ABTB1 ankyrin repeat and BTB (POZ) domain containing 1 318152 2 2 2 0 1 0 1 0 0 0 0.64 1.00 -10522 ADAMTS1 ADAM metallopeptidase with thrombospondin type 1 motif, 1 579180 6 5 6 4 4 0 2 0 0 0 0.64 1.00 -10523 DNAJA1 DnaJ (Hsp40) homolog, subfamily A, member 1 274624 2 2 2 0 0 0 2 0 0 0 0.64 1.00 -10524 EFNA3 ephrin-A3 128296 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10525 PLRG1 pleiotropic regulator 1 (PRL1 homolog, Arabidopsis) 359520 5 3 5 0 3 0 2 0 0 0 0.64 1.00 -10526 C3orf31 chromosome 3 open reading frame 31 219296 1 1 1 2 1 0 0 0 0 0 0.64 1.00 -10527 C2orf7 chromosome 2 open reading frame 7 122444 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10528 COL17A1 collagen, type XVII, alpha 1 1015412 8 7 7 1 4 3 0 0 1 0 0.64 1.00 -10529 HSF4 heat shock transcription factor 4 255472 1 1 1 0 0 0 0 0 1 0 0.64 1.00 -10530 MAN1A2 mannosidase, alpha, class 1A, member 2 443072 2 2 2 3 0 0 2 0 0 0 0.64 1.00 -10531 HARBI1 harbinger transposase derived 1 236992 1 1 1 0 0 0 0 0 1 0 0.64 1.00 -10532 IMPDH1 IMP (inosine monophosphate) dehydrogenase 1 335756 2 2 2 0 1 1 0 0 0 0 0.64 1.00 -10533 CINP 147616 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10534 ARRDC5 arrestin domain containing 5 232512 1 1 1 1 0 0 0 0 1 0 0.64 1.00 -10535 SEC23A Sec23 homolog A (S. cerevisiae) 531776 2 2 2 2 0 0 1 0 1 0 0.64 1.00 -10536 SNX32 sorting nexin 32 275932 3 3 3 1 1 1 1 0 0 0 0.64 1.00 -10537 APOBEC2 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 2 152908 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10538 C17orf101 243344 2 2 2 0 2 0 0 0 0 0 0.64 1.00 -10539 RPA1 replication protein A1, 70kDa 421472 2 2 2 0 0 1 1 0 0 0 0.64 1.00 -10540 CLDN18 claudin 18 226368 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10541 TMEM123 transmembrane protein 123 134792 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10542 OTUB1 OTU domain, ubiquitin aldehyde binding 1 164928 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10543 HTR2B 5-hydroxytryptamine (serotonin) receptor 2B 326592 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10544 SH2D7 290596 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10545 MYOC myocilin, trabecular meshwork inducible glucocorticoid response 342048 2 2 2 2 0 1 1 0 0 0 0.64 1.00 -10546 C3orf70 170464 2 1 2 0 0 1 0 0 1 0 0.64 1.00 -10547 CDR2 cerebellar degeneration-related protein 2, 62kDa 305872 2 2 2 1 0 0 2 0 0 0 0.64 1.00 -10548 SRCIN1 501204 5 5 5 1 5 0 0 0 0 0 0.64 1.00 -10549 CPLX3 complexin 3 109536 1 1 1 1 0 1 0 0 0 0 0.64 1.00 -10550 PRRG1 proline rich Gla (G-carboxyglutamic acid) 1 149856 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10551 UROC1 urocanase domain containing 1 483616 3 3 3 1 3 0 0 0 0 0 0.64 1.00 -10552 CENPM centromere protein M 111608 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10553 HBEGF heparin-binding EGF-like growth factor 143160 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -10554 APOBEC3A apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3A 131824 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10555 EGLN2 egl nine homolog 2 (C. elegans) 239680 2 2 2 0 1 1 0 0 0 0 0.64 1.00 -10556 MFHAS1 malignant fibrous histiocytoma amplified sequence 1 587176 6 5 6 1 3 1 2 0 0 0 0.64 1.00 -10557 TBX21 T-box 21 273516 2 2 2 2 1 1 0 0 0 0 0.64 1.00 -10558 TRAF4 TNF receptor-associated factor 4 308168 2 2 2 0 2 0 0 0 0 0 0.64 1.00 -10559 KCNMB1 potassium large conductance calcium-activated channel, subfamily M, beta member 1 131712 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10560 GPCPD1 469280 3 3 3 1 1 2 0 0 0 0 0.64 1.00 -10561 DHX9 DEAH (Asp-Glu-Ala-His) box polypeptide 9 878304 6 5 6 1 2 1 1 0 2 0 0.64 1.00 -10562 WDR25 WD repeat domain 25 371028 2 2 2 3 1 1 0 0 0 0 0.64 1.00 -10563 MCM6 minichromosome maintenance complex component 6 558292 4 4 4 1 2 2 0 0 0 0 0.64 1.00 -10564 LMO4 LIM domain only 4 110012 1 1 1 1 1 0 0 0 0 0 0.64 1.00 -10565 OAS3 2'-5'-oligoadenylate synthetase 3, 100kDa 719072 5 5 5 3 2 2 1 0 0 0 0.64 1.00 -10566 CSRNP2 368396 2 2 2 1 1 1 0 0 0 0 0.64 1.00 -10567 TK1 thymidine kinase 1, soluble 157780 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10568 FRMD4A FERM domain containing 4A 628768 7 5 7 3 4 1 1 0 1 0 0.64 1.00 -10569 RBM38 RNA binding motif protein 38 105700 1 1 1 2 0 1 0 0 0 0 0.64 1.00 -10570 PLA2G6 phospholipase A2, group VI (cytosolic, calcium-independent) 467076 4 4 4 0 3 0 1 0 0 0 0.64 1.00 -10571 LMO2 LIM domain only 2 (rhombotin-like 1) 98700 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -10572 XPNPEP1 X-prolyl aminopeptidase (aminopeptidase P) 1, soluble 438144 4 3 4 0 2 2 0 0 0 0 0.64 1.00 -10573 BCKDHA branched chain keto acid dehydrogenase E1, alpha polypeptide 300016 3 3 3 0 2 1 0 0 0 0 0.64 1.00 -10574 IGFBP1 insulin-like growth factor binding protein 1 129136 2 1 2 0 1 0 1 0 0 0 0.64 1.00 -10575 CYP2C18 cytochrome P450, family 2, subfamily C, polypeptide 18 338016 2 2 2 1 0 0 2 0 0 0 0.64 1.00 -10576 CD4 CD4 molecule 316104 2 2 2 2 0 2 0 0 0 0 0.64 1.00 -10577 ACAP1 496584 3 3 3 3 1 1 0 0 1 0 0.64 1.00 -10578 DENND1B DENN/MADD domain containing 1B 502880 3 3 3 1 1 1 0 0 1 0 0.64 1.00 -10579 ZRANB3 zinc finger, RAN-binding domain containing 3 717024 4 4 4 1 0 3 0 0 1 0 0.64 1.00 -10580 ZBTB46 zinc finger and BTB domain containing 46 357196 5 5 5 3 5 0 0 0 0 0 0.64 1.00 -10581 MED7 mediator complex subunit 7 158144 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10582 MAPK13 mitogen-activated protein kinase 13 246372 1 1 1 1 0 1 0 0 0 0 0.64 1.00 -10583 C1orf51 chromosome 1 open reading frame 51 263872 2 1 2 0 0 0 1 0 1 0 0.64 1.00 -10584 P2RX1 purinergic receptor P2X, ligand-gated ion channel, 1 265184 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10585 RLN1 relaxin 1 126784 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10586 CYP4F3 cytochrome P450, family 4, subfamily F, polypeptide 3 360864 3 3 3 1 3 0 0 0 0 0 0.64 1.00 -10587 GALT galactose-1-phosphate uridylyltransferase 264712 2 2 2 0 1 1 0 0 0 0 0.64 1.00 -10588 LMAN2 lectin, mannose-binding 2 247072 2 2 2 1 0 2 0 0 0 0 0.64 1.00 -10589 ESRP2 459396 3 3 3 1 0 1 1 0 1 0 0.64 1.00 -10590 SPAG4 sperm associated antigen 4 283528 2 2 2 1 0 0 1 0 1 0 0.64 1.00 -10591 EFR3A EFR3 homolog A (S. cerevisiae) 555032 3 3 3 3 1 1 0 0 1 0 0.64 1.00 -10592 DNMBP dynamin binding protein 1065416 8 7 8 7 4 1 2 0 1 0 0.64 1.00 -10593 KCNQ2 potassium voltage-gated channel, KQT-like subfamily, member 2 432588 3 3 3 1 2 1 0 0 0 0 0.64 1.00 -10594 SCAMP3 secretory carrier membrane protein 3 241920 1 1 1 2 0 1 0 0 0 0 0.64 1.00 -10595 WDFY1 WD repeat and FYVE domain containing 1 275100 2 2 2 1 1 1 0 0 0 0 0.64 1.00 -10596 COL4A3BP collagen, type IV, alpha 3 (Goodpasture antigen) binding protein 430164 3 3 3 2 2 1 0 0 0 0 0.64 1.00 -10597 TRPM8 transient receptor potential cation channel, subfamily M, member 8 764064 10 6 10 4 7 2 0 1 0 0 0.64 1.00 -10598 IL12RB1 interleukin 12 receptor, beta 1 454920 2 2 2 1 0 1 0 0 1 0 0.64 1.00 -10599 PNLIPRP2 pancreatic lipase-related protein 2 262376 2 2 2 1 1 1 0 0 0 0 0.64 1.00 -10600 RAB36 RAB36, member RAS oncogene family 198660 2 2 2 1 1 1 0 0 0 0 0.64 1.00 -10601 PPP2R5A protein phosphatase 2, regulatory subunit B', alpha isoform 323680 2 2 2 2 1 0 1 0 0 0 0.64 1.00 -10602 HAPLN2 hyaluronan and proteoglycan link protein 2 167944 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10603 PPP2CA protein phosphatase 2 (formerly 2A), catalytic subunit, alpha isoform 214592 1 1 1 1 0 0 1 0 0 0 0.64 1.00 -10604 SLAMF6 SLAM family member 6 230944 3 1 3 1 0 2 0 0 1 0 0.64 1.00 -10605 UBOX5 U-box domain containing 5 367808 5 2 5 3 0 4 1 0 0 0 0.64 1.00 -10606 OR10G2 olfactory receptor, family 10, subfamily G, member 2 201184 1 1 1 1 0 0 0 0 1 0 0.64 1.00 -10607 C15orf58 259112 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -10608 GPR155 G protein-coupled receptor 155 598752 3 2 3 1 0 1 1 0 1 0 0.65 1.00 -10609 CAPNS2 calpain, small subunit 2 168224 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10610 VTA1 Vps20-associated 1 homolog (S. cerevisiae) 214144 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -10611 AGBL1 ATP/GTP binding protein-like 1 730424 6 5 6 2 0 5 1 0 0 0 0.65 1.00 -10612 PATL1 protein associated with topoisomerase II homolog 1 (yeast) 416396 1 1 1 0 0 0 0 0 1 0 0.65 1.00 -10613 WNT2 wingless-type MMTV integration site family member 2 247072 1 1 1 1 1 0 0 0 0 0 0.65 1.00 -10614 MAP3K2 mitogen-activated protein kinase kinase kinase 2 423224 3 2 3 0 0 1 1 0 1 0 0.65 1.00 -10615 CFB complement factor B 385392 4 3 4 1 0 4 0 0 0 0 0.65 1.00 -10616 HOXA2 homeobox A2 222376 2 2 2 4 0 2 0 0 0 0 0.65 1.00 -10617 NDUFAF1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 1 224000 1 1 1 1 0 0 1 0 0 0 0.65 1.00 -10618 ERO1L ERO1-like (S. cerevisiae) 308088 2 2 2 1 0 2 0 0 0 0 0.65 1.00 -10619 BRD1 bromodomain containing 1 685692 7 7 7 0 5 0 1 0 1 0 0.65 1.00 -10620 KIF7 kinesin family member 7 535120 5 4 5 0 3 1 0 0 1 0 0.65 1.00 -10621 MAN1B1 mannosidase, alpha, class 1B, member 1 412736 2 2 2 1 0 0 1 0 1 0 0.65 1.00 -10622 AIFM2 apoptosis-inducing factor, mitochondrion-associated, 2 254632 2 2 2 0 2 0 0 0 0 0 0.65 1.00 -10623 RAX retina and anterior neural fold homeobox 108612 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10624 CALML4 calmodulin-like 4 134344 1 1 1 1 0 0 1 0 0 0 0.65 1.00 -10625 C1orf59 chromosome 1 open reading frame 59 271040 1 1 1 0 0 0 0 0 1 0 0.65 1.00 -10626 TRPV3 transient receptor potential cation channel, subfamily V, member 3 529608 3 3 3 1 1 0 1 0 1 0 0.65 1.00 -10627 SGTA small glutamine-rich tetratricopeptide repeat (TPR)-containing, alpha 209680 1 1 1 1 0 0 1 0 0 0 0.65 1.00 -10628 SRD5A3 steroid 5 alpha-reductase 3 194264 1 1 1 2 0 0 1 0 0 0 0.65 1.00 -10629 KRT81 keratin 81 187256 1 1 1 2 1 0 0 0 0 0 0.65 1.00 -10630 QTRT1 queuine tRNA-ribosyltransferase 1 (tRNA-guanine transglycosylase) 273140 2 2 2 0 1 1 0 0 0 0 0.65 1.00 -10631 ZNF613 zinc finger protein 613 418880 2 2 2 1 1 0 1 0 0 0 0.65 1.00 -10632 FSD2 fibronectin type III and SPRY domain containing 2 505232 3 3 3 2 0 2 1 0 0 0 0.65 1.00 -10633 SRI sorcin 130816 1 1 1 1 1 0 0 0 0 0 0.65 1.00 -10634 TMEM149 transmembrane protein 149 218456 1 1 1 0 0 0 0 0 1 0 0.65 1.00 -10635 LMOD1 leiomodin 1 (smooth muscle) 403976 3 3 3 0 0 2 1 0 0 0 0.65 1.00 -10636 C1QL2 complement component 1, q subcomponent-like 2 97140 1 1 1 2 1 0 0 0 0 0 0.65 1.00 -10637 SULT1C3 sulfotransferase family, cytosolic, 1C, member 3 211232 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -10638 SPG21 spastic paraplegia 21 (autosomal recessive, Mast syndrome) 214816 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10639 ARMC9 armadillo repeat containing 9 465472 4 3 4 1 0 2 1 0 1 0 0.65 1.00 -10640 AGPHD1 254912 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -10641 APOL5 apolipoprotein L, 5 285488 3 2 3 1 1 1 1 0 0 0 0.65 1.00 -10642 C15orf23 chromosome 15 open reading frame 23 227604 2 2 2 1 1 0 1 0 0 0 0.65 1.00 -10643 ARPC2 actin related protein 2/3 complex, subunit 2, 34kDa 210224 2 2 2 0 0 1 1 0 0 0 0.65 1.00 -10644 PRSS21 protease, serine, 21 (testisin) 176100 1 1 1 2 0 1 0 0 0 0 0.65 1.00 -10645 ARF6 ADP-ribosylation factor 6 118496 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -10646 LOXL3 lysyl oxidase-like 3 505652 5 4 5 3 1 2 2 0 0 0 0.65 1.00 -10647 CHRNB1 cholinergic receptor, nicotinic, beta 1 (muscle) 339640 3 3 3 3 1 1 0 0 1 0 0.65 1.00 -10648 A2ML1 alpha-2-macroglobulin-like 1 1009120 9 6 9 9 4 3 2 0 0 0 0.65 1.00 -10649 RGS3 regulator of G-protein signaling 3 894680 10 7 10 2 6 3 0 0 1 0 0.65 1.00 -10650 PIGT phosphatidylinositol glycan anchor biosynthesis, class T 397392 3 3 3 1 1 2 0 0 0 0 0.65 1.00 -10651 INTS5 integrator complex subunit 5 664468 6 5 6 0 5 1 0 0 0 0 0.65 1.00 -10652 UPK3A uroplakin 3A 186096 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -10653 FAM58A family with sequence similarity 58, member A 145824 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -10654 BIRC8 baculoviral IAP repeat-containing 8 160160 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -10655 HOXD12 homeobox D12 130844 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10656 NEB nebulin 4613672 55 19 52 17 18 21 9 1 4 2 0.65 1.00 -10657 RBP4 retinol binding protein 4, plasma 127028 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10658 ARHGAP26 Rho GTPase activating protein 26 566632 4 4 4 2 3 0 1 0 0 0 0.65 1.00 -10659 LARP6 La ribonucleoprotein domain family, member 6 306880 2 2 2 3 2 0 0 0 0 0 0.65 1.00 -10660 SNTG2 syntrophin, gamma 2 283136 2 2 2 6 2 0 0 0 0 0 0.65 1.00 -10661 KCNAB3 potassium voltage-gated channel, shaker-related subfamily, beta member 3 243348 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10662 POMT1 protein-O-mannosyltransferase 1 505304 4 4 4 3 1 2 1 0 0 0 0.65 1.00 -10663 TMEM41A transmembrane protein 41A 181656 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10664 OR2J2 olfactory receptor, family 2, subfamily J, member 2 211232 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -10665 RTN4RL2 reticulon 4 receptor-like 2 196644 2 2 2 0 1 0 1 0 0 0 0.65 1.00 -10666 PAPOLA poly(A) polymerase alpha 521024 3 3 3 1 0 3 0 0 0 0 0.65 1.00 -10667 SLC23A3 solute carrier family 23 (nucleobase transporters), member 3 348544 1 1 1 1 0 1 0 0 0 0 0.65 1.00 -10668 C1orf9 chromosome 1 open reading frame 9 855800 9 5 9 1 1 5 3 0 0 0 0.65 1.00 -10669 ACOT9 acyl-CoA thioesterase 9 310688 2 2 1 2 2 0 0 0 0 0 0.65 1.00 -10670 HM13 histocompatibility (minor) 13 274036 1 1 1 0 0 0 0 0 1 0 0.65 1.00 -10671 MMP1 matrix metallopeptidase 1 (interstitial collagenase) 324800 2 2 2 0 0 0 2 0 0 0 0.65 1.00 -10672 GTF2B general transcription factor IIB 218792 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10673 ALB albumin 422464 4 3 3 2 2 1 1 0 0 0 0.65 1.00 -10674 SP1 Sp1 transcription factor 533568 2 2 2 0 0 2 0 0 0 0 0.65 1.00 -10675 EPN1 epsin 1 333924 2 2 2 0 1 0 0 0 1 0 0.65 1.00 -10676 DDX41 DEAD (Asp-Glu-Ala-Asp) box polypeptide 41 412384 2 2 2 1 0 0 0 0 2 0 0.65 1.00 -10677 TNXB tenascin XB 1806584 17 14 17 8 9 4 2 0 2 0 0.65 1.00 -10678 MAP3K5 mitogen-activated protein kinase kinase kinase 5 910504 7 7 7 0 1 3 3 0 0 0 0.65 1.00 -10679 SMC5 structural maintenance of chromosomes 5 762944 6 5 6 2 2 1 2 0 1 0 0.65 1.00 -10680 SOX13 SRY (sex determining region Y)-box 13 409840 2 2 2 1 0 1 1 0 0 0 0.65 1.00 -10681 PPP3R2 protein phosphatase 3 (formerly 2B), regulatory subunit B, beta isoform 117824 1 1 1 1 1 0 0 0 0 0 0.65 1.00 -10682 TBC1D8 TBC1 domain family, member 8 (with GRAM domain) 750704 5 5 5 2 2 2 0 0 1 0 0.65 1.00 -10683 DOCK7 dedicator of cytokinesis 7 1449560 16 8 16 4 5 4 5 0 0 2 0.65 1.00 -10684 LTK leukocyte receptor tyrosine kinase 476308 3 3 3 1 0 3 0 0 0 0 0.65 1.00 -10685 C17orf85 chromosome 17 open reading frame 85 236768 1 1 1 1 0 0 0 0 1 0 0.65 1.00 -10686 THBS3 thrombospondin 3 657412 3 3 3 3 1 0 1 0 1 0 0.65 1.00 -10687 PLEKHG7 pleckstrin homology domain containing, family G (with RhoGef domain) member 7 265216 2 2 2 1 2 0 0 0 0 0 0.65 1.00 -10688 PPP4R2 protein phosphatase 4, regulatory subunit 2 283288 1 1 1 0 0 0 0 0 1 0 0.65 1.00 -10689 COX10 COX10 homolog, cytochrome c oxidase assembly protein, heme A: farnesyltransferase (yeast) 301448 2 2 2 0 0 2 0 0 0 0 0.65 1.00 -10690 PTPN7 protein tyrosine phosphatase, non-receptor type 7 276696 2 2 2 0 0 1 1 0 0 0 0.65 1.00 -10691 NPRL3 342200 3 3 3 0 1 2 0 0 0 0 0.65 1.00 -10692 ZSCAN5A 337568 3 2 3 1 1 2 0 0 0 0 0.65 1.00 -10693 DLX3 distal-less homeobox 3 192780 2 2 2 0 2 0 0 0 0 0 0.65 1.00 -10694 OR8H2 olfactory receptor, family 8, subfamily H, member 2 211232 1 1 1 3 0 0 1 0 0 0 0.65 1.00 -10695 INTS2 integrator complex subunit 2 830392 4 4 4 2 2 1 1 0 0 0 0.65 1.00 -10696 HIRIP3 HIRA interacting protein 3 380156 3 3 3 0 1 0 2 0 0 0 0.65 1.00 -10697 CSPG5 chondroitin sulfate proteoglycan 5 (neuroglycan C) 309876 2 2 2 3 1 1 0 0 0 0 0.65 1.00 -10698 WNT9B wingless-type MMTV integration site family, member 9B 215348 2 2 2 0 0 2 0 0 0 0 0.65 1.00 -10699 CDK5R1 cyclin-dependent kinase 5, regulatory subunit 1 (p35) 191912 1 1 1 1 0 0 0 0 1 0 0.65 1.00 -10700 POM121 POM121 membrane glycoprotein (rat) 599956 4 4 4 1 4 0 0 0 0 0 0.65 1.00 -10701 RAB1B RAB1B, member RAS oncogene family 130376 1 1 1 1 1 0 0 0 0 0 0.65 1.00 -10702 CAPZB capping protein (actin filament) muscle Z-line, beta 189952 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10703 DYNC1LI2 dynein, cytoplasmic 1, light intermediate chain 2 333620 2 2 2 1 2 0 0 0 0 0 0.65 1.00 -10704 C2orf57 chromosome 2 open reading frame 57 267008 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -10705 ADPRHL2 ADP-ribosylhydrolase like 2 201824 1 1 1 0 0 0 0 0 1 0 0.65 1.00 -10706 ZNF490 zinc finger protein 490 360640 3 3 3 1 0 3 0 0 0 0 0.65 1.00 -10707 MRRF mitochondrial ribosome recycling factor 182112 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10708 ACBD5 acyl-Coenzyme A binding domain containing 5 342944 2 2 2 1 1 1 0 0 0 0 0.65 1.00 -10709 GPR85 G protein-coupled receptor 85 250208 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -10710 PAK1IP1 PAK1 interacting protein 1 273056 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -10711 CHRM5 cholinergic receptor, muscarinic 5 359072 2 2 2 1 0 1 1 0 0 0 0.65 1.00 -10712 ERC1 ELKS/RAB6-interacting/CAST family member 1 766752 6 4 6 3 2 1 1 0 2 0 0.65 1.00 -10713 ITGAD integrin, alpha D 807660 8 7 8 3 4 2 2 0 0 0 0.65 1.00 -10714 TBP TATA box binding protein 232680 1 1 1 1 0 0 1 0 0 0 0.65 1.00 -10715 BEGAIN brain-enriched guanylate kinase-associated homolog (rat) 270456 2 2 2 0 1 0 0 0 1 0 0.65 1.00 -10716 ABCF3 ATP-binding cassette, sub-family F (GCN20), member 3 495936 3 3 3 2 0 1 1 0 1 0 0.65 1.00 -10717 RCL1 RNA terminal phosphate cyclase-like 1 259392 2 2 2 0 1 1 0 0 0 0 0.65 1.00 -10718 OR8D4 olfactory receptor, family 8, subfamily D, member 4 212576 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -10719 GAS8 growth arrest-specific 8 329548 2 2 2 0 0 1 0 0 1 0 0.65 1.00 -10720 DCUN1D2 DCN1, defective in cullin neddylation 1, domain containing 2 (S. cerevisiae) 179424 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -10721 QSOX1 quiescin Q6 sulfhydryl oxidase 1 453480 4 4 4 3 0 2 2 0 0 0 0.65 1.00 -10722 CDRT1 CMT1A duplicated region transcript 1 513252 4 4 3 0 3 0 0 0 1 0 0.65 1.00 -10723 TIRAP toll-interleukin 1 receptor (TIR) domain containing adaptor protein 165760 1 1 1 2 1 0 0 0 0 0 0.65 1.00 -10724 HEPHL1 hephaestin-like 1 791728 8 5 8 3 3 3 0 0 0 2 0.65 1.00 -10725 ZBTB11 zinc finger and BTB domain containing 11 700672 6 4 6 1 1 3 0 0 2 0 0.65 1.00 -10726 COG3 component of oligomeric golgi complex 3 564604 3 3 3 1 1 1 1 0 0 0 0.65 1.00 -10727 PPAPDC2 phosphatidic acid phosphatase type 2 domain containing 2 158564 2 2 2 0 0 1 1 0 0 0 0.65 1.00 -10728 WIBG within bgcn homolog (Drosophila) 131264 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -10729 CNN1 calponin 1, basic, smooth muscle 206528 1 1 1 3 1 0 0 0 0 0 0.65 1.00 -10730 XRCC1 X-ray repair complementing defective repair in Chinese hamster cells 1 441144 2 2 2 1 2 0 0 0 0 0 0.65 1.00 -10731 ABCD3 ATP-binding cassette, sub-family D (ALD), member 3 465948 3 3 3 2 2 0 1 0 0 0 0.65 1.00 -10732 WDR12 WD repeat domain 12 296576 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -10733 NAT8B N-acetyltransferase 8B (gene/pseudogene) 153608 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -10734 RCC1 regulator of chromosome condensation 1 305228 3 3 3 2 3 0 0 0 0 0 0.66 1.00 -10735 CHAC1 ChaC, cation transport regulator homolog 1 (E. coli) 137312 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10736 SELL selectin L (lymphocyte adhesion molecule 1) 247184 3 1 3 0 0 1 1 0 1 0 0.66 1.00 -10737 BIN1 bridging integrator 1 365900 2 2 2 1 0 2 0 0 0 0 0.66 1.00 -10738 FBLIM1 filamin binding LIM protein 1 253636 1 1 1 1 0 0 1 0 0 0 0.66 1.00 -10739 AOX1 aldehyde oxidase 1 923888 8 5 8 5 2 3 1 0 2 0 0.66 1.00 -10740 MYADM myeloid-associated differentiation marker 217952 2 2 2 0 2 0 0 0 0 0 0.66 1.00 -10741 KIF5C kinesin family member 5C 592712 7 4 7 7 2 4 1 0 0 0 0.66 1.00 -10742 C2orf28 chromosome 2 open reading frame 28 142660 1 1 1 1 0 1 0 0 0 0 0.66 1.00 -10743 AIG1 androgen-induced 1 165984 1 1 1 1 0 0 1 0 0 0 0.66 1.00 -10744 C17orf98 106848 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10745 IL34 164320 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -10746 FAM189B 381200 2 2 2 0 0 1 0 0 1 0 0.66 1.00 -10747 ZNF77 zinc finger protein 77 368928 3 2 3 0 1 1 0 0 1 0 0.66 1.00 -10748 HLA-G major histocompatibility complex, class I, G 177324 2 2 2 3 0 2 0 0 0 0 0.66 1.00 -10749 C2orf84 143584 1 1 1 1 1 0 0 0 0 0 0.66 1.00 -10750 UBIAD1 UbiA prenyltransferase domain containing 1 229516 2 2 1 0 0 2 0 0 0 0 0.66 1.00 -10751 OPA1 optic atrophy 1 (autosomal dominant) 704736 4 4 4 0 1 0 3 0 0 0 0.66 1.00 -10752 FRMD3 FERM domain containing 3 414400 2 2 2 1 1 0 1 0 0 0 0.66 1.00 -10753 MYEOV myeloma overexpressed gene (in a subset of t(11;14) positive multiple myelomas) 203416 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10754 FAM98A family with sequence similarity 98, member A 355936 1 1 1 2 0 0 0 0 1 0 0.66 1.00 -10755 NCS1 119392 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -10756 RPA2 replication protein A2, 32kDa 190176 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10757 LAT2 linker for activation of T cells family, member 2 173824 1 1 1 1 1 0 0 0 0 0 0.66 1.00 -10758 USP54 ubiquitin specific peptidase 54 1152032 7 6 7 2 0 4 2 0 1 0 0.66 1.00 -10759 C3orf1 chromosome 3 open reading frame 1 198464 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10760 ALG9 asparagine-linked glycosylation 9 homolog (S. cerevisiae, alpha- 1,2-mannosyltransferase) 388968 2 2 2 1 0 1 1 0 0 0 0.66 1.00 -10761 UCK2 uridine-cytidine kinase 2 182336 1 1 1 2 0 1 0 0 0 0 0.66 1.00 -10762 ZFP36L2 zinc finger protein 36, C3H type-like 2 161484 1 1 1 1 0 0 0 0 1 0 0.66 1.00 -10763 PDPK1 3-phosphoinositide dependent protein kinase-1 182588 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10764 GSR glutathione reductase 293664 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10765 C5orf34 chromosome 5 open reading frame 34 440160 2 2 2 0 0 1 0 0 1 0 0.66 1.00 -10766 OR8B12 olfactory receptor, family 8, subfamily B, member 12 209552 1 1 1 1 1 0 0 0 0 0 0.66 1.00 -10767 NEFH neurofilament, heavy polypeptide 200kDa 478324 4 3 4 0 0 3 0 0 1 0 0.66 1.00 -10768 FCN3 ficolin (collagen/fibrinogen domain containing) 3 (Hakata antigen) 208768 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10769 GPR119 G protein-coupled receptor 119 226688 2 2 2 0 1 1 0 0 0 0 0.66 1.00 -10770 AQP1 aquaporin 1 (Colton blood group) 179396 1 1 1 1 0 0 1 0 0 0 0.66 1.00 -10771 C22orf28 chromosome 22 open reading frame 28 350784 1 1 1 3 0 0 0 0 1 0 0.66 1.00 -10772 KIF14 kinesin family member 14 1134112 12 6 10 2 3 3 3 0 3 0 0.66 1.00 -10773 METTL7B methyltransferase like 7B 159496 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10774 TMEM231 166836 1 1 1 1 0 0 1 0 0 0 0.66 1.00 -10775 ROPN1L ropporin 1-like 159712 1 1 1 2 0 1 0 0 0 0 0.66 1.00 -10776 LARP7 La ribonucleoprotein domain family, member 7 402528 1 1 1 1 0 0 0 0 1 0 0.66 1.00 -10777 PRMT7 protein arginine methyltransferase 7 468792 3 3 3 0 2 0 1 0 0 0 0.66 1.00 -10778 HPCA hippocalcin 120680 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -10779 XKR7 XK, Kell blood group complex subunit-related family, member 7 303352 2 2 2 0 1 0 1 0 0 0 0.66 1.00 -10780 RAET1L retinoic acid early transcript 1L 167664 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10781 NEURL2 neuralized homolog 2 (Drosophila) 154504 1 1 1 0 0 0 0 0 1 0 0.66 1.00 -10782 CA11 carbonic anhydrase XI 227784 2 2 2 0 1 1 0 0 0 0 0.66 1.00 -10783 SLC5A9 solute carrier family 5 (sodium/glucose cotransporter), member 9 486080 3 3 3 1 1 1 0 0 1 0 0.66 1.00 -10784 VHL von Hippel-Lindau tumor suppressor 88416 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -10785 CCDC63 coiled-coil domain containing 63 388864 3 3 3 1 1 1 1 0 0 0 0.66 1.00 -10786 RPSA ribosomal protein SA 188748 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10787 VPS4B vacuolar protein sorting 4 homolog B (S. cerevisiae) 308896 2 2 2 1 1 1 0 0 0 0 0.66 1.00 -10788 LYPD5 LY6/PLAUR domain containing 5 141376 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10789 C2orf16 chromosome 2 open reading frame 16 1334816 15 7 15 3 1 10 2 0 2 0 0.66 1.00 -10790 LRCH1 leucine-rich repeats and calponin homology (CH) domain containing 1 448264 3 3 3 0 1 2 0 0 0 0 0.66 1.00 -10791 ARID3C AT rich interactive domain 3C (BRIGHT-like) 240044 1 1 1 1 0 0 0 0 1 0 0.66 1.00 -10792 SEPSECS Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase 307776 4 2 4 0 1 2 1 0 0 0 0.66 1.00 -10793 SPG7 spastic paraplegia 7 (pure and complicated autosomal recessive) 524048 4 4 4 0 0 1 3 0 0 0 0.66 1.00 -10794 CLDN15 claudin 15 148096 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10795 NUAK2 NUAK family, SNF1-like kinase, 2 418544 3 3 3 1 2 0 1 0 0 0 0.66 1.00 -10796 CFHR4 complement factor H-related 4 228480 1 1 1 2 0 0 1 0 0 0 0.66 1.00 -10797 LCLAT1 284256 2 2 2 1 1 1 0 0 0 0 0.66 1.00 -10798 CMPK2 cytidine monophosphate (UMP-CMP) kinase 2, mitochondrial 154784 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10799 CCNB1IP1 cyclin B1 interacting protein 1 186900 1 1 1 1 0 0 1 0 0 0 0.66 1.00 -10800 CAPN5 calpain 5 420344 5 5 5 2 5 0 0 0 0 0 0.66 1.00 -10801 ZNF575 zinc finger protein 575 111628 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10802 TMPRSS7 transmembrane protease, serine 7 398048 4 3 4 1 1 2 1 0 0 0 0.66 1.00 -10803 POTEA 346080 3 2 3 1 0 1 2 0 0 0 0.66 1.00 -10804 TMEM125 transmembrane protein 125 138856 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10805 FAP fibroblast activation protein, alpha 534688 3 3 3 2 1 2 0 0 0 0 0.66 1.00 -10806 ITSN1 intersectin 1 (SH3 domain protein) 1180736 13 6 13 3 6 3 1 1 0 2 0.66 1.00 -10807 GRM8 glutamate receptor, metabotropic 8 622048 9 5 9 6 3 4 1 0 1 0 0.66 1.00 -10808 PHACTR4 phosphatase and actin regulator 4 495264 5 4 5 0 0 3 2 0 0 0 0.66 1.00 -10809 NTNG2 netrin G2 266868 2 2 2 5 1 0 1 0 0 0 0.66 1.00 -10810 KIF21A kinesin family member 21A 1139264 12 7 12 1 2 7 2 0 1 0 0.66 1.00 -10811 PIAS2 protein inhibitor of activated STAT, 2 443520 3 3 2 0 2 1 0 0 0 0 0.66 1.00 -10812 KRT19 keratin 19 243292 2 2 2 1 0 1 0 0 1 0 0.66 1.00 -10813 C9orf82 chromosome 9 open reading frame 82 201796 1 1 1 1 0 1 0 0 0 0 0.66 1.00 -10814 KRT18 keratin 18 258556 2 2 2 0 0 1 0 1 0 0 0.66 1.00 -10815 PCBP2 poly(rC) binding protein 2 258720 1 1 1 1 1 0 0 0 0 0 0.66 1.00 -10816 TUBB1 tubulin, beta 1 307328 2 2 2 0 1 1 0 0 0 0 0.66 1.00 -10817 MFAP4 microfibrillar-associated protein 4 174008 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -10818 FKBP6 FK506 binding protein 6, 36kDa 224336 1 1 1 2 0 0 0 0 1 0 0.66 1.00 -10819 PBRM1 polybromo 1 1124704 6 5 6 3 0 2 2 0 2 0 0.66 1.00 -10820 PHF2 PHD finger protein 2 670216 6 5 6 3 2 2 1 0 1 0 0.66 1.00 -10821 CRLF1 cytokine receptor-like factor 1 230852 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10822 HOXB9 homeobox B9 138516 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10823 C15orf24 chromosome 15 open reading frame 24 167776 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10824 APOD apolipoprotein D 131264 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10825 PHF6 PHD finger protein 6 277536 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10826 LYPD3 LY6/PLAUR domain containing 3 237664 2 2 2 1 1 1 0 0 0 0 0.66 1.00 -10827 ATP1B1 ATPase, Na+/K+ transporting, beta 1 polypeptide 209664 1 1 1 1 0 1 0 0 0 0 0.66 1.00 -10828 SPP2 secreted phosphoprotein 2, 24kDa 148736 1 1 1 1 0 0 1 0 0 0 0.66 1.00 -10829 VPS54 vacuolar protein sorting 54 homolog (S. cerevisiae) 676928 6 4 6 2 2 0 2 0 2 0 0.66 1.00 -10830 TRUB2 TruB pseudouridine (psi) synthase homolog 2 (E. coli) 230272 2 2 2 0 2 0 0 0 0 0 0.66 1.00 -10831 CRX cone-rod homeobox 204288 3 2 3 1 1 2 0 0 0 0 0.66 1.00 -10832 ASXL2 additional sex combs like 2 (Drosophila) 975472 5 5 5 2 0 3 1 0 1 0 0.66 1.00 -10833 LTB lymphotoxin beta (TNF superfamily, member 3) 96460 1 1 1 1 1 0 0 0 0 0 0.66 1.00 -10834 C14orf104 chromosome 14 open reading frame 104 386208 3 3 3 0 0 0 1 0 2 0 0.66 1.00 -10835 MED14 mediator complex subunit 14 939728 6 5 6 1 6 0 0 0 0 0 0.66 1.00 -10836 ZNF124 zinc finger protein 124 190848 1 1 1 1 1 0 0 0 0 0 0.66 1.00 -10837 CASC4 cancer susceptibility candidate 4 302624 2 2 2 1 1 1 0 0 0 0 0.66 1.00 -10838 MAD2L2 MAD2 mitotic arrest deficient-like 2 (yeast) 149632 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -10839 RBM33 RNA binding motif protein 33 735620 4 4 4 1 1 2 0 0 1 0 0.66 1.00 -10840 PROKR2 prokineticin receptor 2 260512 3 2 3 1 1 1 0 0 1 0 0.66 1.00 -10841 CCDC97 coiled-coil domain containing 97 230440 2 2 2 2 0 1 1 0 0 0 0.66 1.00 -10842 EIF2B2 eukaryotic translation initiation factor 2B, subunit 2 beta, 39kDa 241444 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -10843 KIF23 kinesin family member 23 666400 4 4 4 3 3 1 0 0 0 0 0.66 1.00 -10844 ANKRD13B ankyrin repeat domain 13B 309188 2 2 2 0 1 0 0 1 0 0 0.66 1.00 -10845 IFT46 249088 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -10846 TMEM116 transmembrane protein 116 171584 2 1 2 1 0 2 0 0 0 0 0.66 1.00 -10847 PAPD7 371364 5 2 5 1 2 2 0 0 1 0 0.66 1.00 -10848 NPAT nuclear protein, ataxia-telangiectasia locus 975744 5 4 5 1 1 2 1 0 1 0 0.66 1.00 -10849 TSSK2 testis-specific serine kinase 2 225092 2 2 2 0 1 0 1 0 0 0 0.66 1.00 -10850 SLC36A3 solute carrier family 36 (proton/amino acid symporter), member 3 325472 1 1 1 3 0 0 1 0 0 0 0.66 1.00 -10851 PLBD2 326412 2 2 2 1 0 1 1 0 0 0 0.66 1.00 -10852 IPO5 importin 5 769520 5 5 5 3 1 2 2 0 0 0 0.67 1.00 -10853 ZAN zonadhesin 1882808 14 9 14 3 5 5 1 0 3 0 0.67 1.00 -10854 FAM120AOS family with sequence similarity 120A opposite strand 120316 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -10855 ZNF205 zinc finger protein 205 333676 5 5 4 0 3 2 0 0 0 0 0.67 1.00 -10856 KCNIP4 Kv channel interacting protein 4 206528 1 1 1 2 0 0 1 0 0 0 0.67 1.00 -10857 UTP20 UTP20, small subunit (SSU) processome component, homolog (yeast) 1921080 20 11 20 6 9 7 4 0 0 0 0.67 1.00 -10858 MAGEB6 melanoma antigen family B, 6 264192 1 1 1 2 1 0 0 0 0 0 0.67 1.00 -10859 ENOX2 ecto-NOX disulfide-thiol exchanger 2 422240 2 2 1 2 2 0 0 0 0 0 0.67 1.00 -10860 SMARCA2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 1056212 11 8 11 1 9 0 1 0 1 0 0.67 1.00 -10861 SNX3 sorting nexin 3 113120 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -10862 ZNF585B zinc finger protein 585B 521024 7 3 7 2 0 4 2 0 1 0 0.67 1.00 -10863 PARD3 par-3 partitioning defective 3 homolog (C. elegans) 910340 7 6 7 4 3 2 1 0 1 0 0.67 1.00 -10864 TADA1 232960 1 1 1 1 0 1 0 0 0 0 0.67 1.00 -10865 NCF1 neutrophil cytosolic factor 1, (chronic granulomatous disease, autosomal 1) 126420 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -10866 TBC1D15 TBC1 domain family, member 15 483392 5 3 5 1 0 4 1 0 0 0 0.67 1.00 -10867 ELF2 E74-like factor 2 (ets domain transcription factor) 420224 2 2 2 3 0 0 1 0 1 0 0.67 1.00 -10868 AIP aryl hydrocarbon receptor interacting protein 190680 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -10869 RYBP RING1 and YY1 binding protein 150752 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -10870 SLC16A10 solute carrier family 16, member 10 (aromatic amino acid transporter) 311472 1 1 1 1 0 0 0 0 1 0 0.67 1.00 -10871 EEFSEC eukaryotic elongation factor, selenocysteine-tRNA-specific 349580 3 3 3 3 0 2 1 0 0 0 0.67 1.00 -10872 C9orf9 chromosome 9 open reading frame 9 117152 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -10873 TMEM66 transmembrane protein 66 209888 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -10874 RABL2A RAB, member of RAS oncogene family-like 2A 145824 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -10875 PALM2-AKAP2 PALM2-AKAP2 751660 4 4 4 4 1 1 2 0 0 0 0.67 1.00 -10876 PRKDC protein kinase, DNA-activated, catalytic polypeptide 2731524 18 13 18 9 4 4 6 0 4 0 0.67 1.00 -10877 MAP4K4 mitogen-activated protein kinase kinase kinase kinase 4 869264 8 6 8 0 3 1 3 0 1 0 0.67 1.00 -10878 XYLB xylulokinase homolog (H. influenzae) 364224 2 2 2 1 1 0 1 0 0 0 0.67 1.00 -10879 MYO18B myosin XVIIIB 1646620 20 12 20 4 11 7 2 0 0 0 0.67 1.00 -10880 MAK16 211232 1 1 1 1 0 0 0 0 1 0 0.67 1.00 -10881 ZDHHC3 zinc finger, DHHC-type containing 3 226688 1 1 1 2 1 0 0 0 0 0 0.67 1.00 -10882 ZNF546 zinc finger protein 546 566944 15 5 15 0 6 7 2 0 0 0 0.67 1.00 -10883 TXNDC11 thioredoxin domain containing 11 604268 5 5 5 1 2 3 0 0 0 0 0.67 1.00 -10884 GLTSCR2 glioma tumor suppressor candidate region gene 2 209724 2 2 2 1 0 1 1 0 0 0 0.67 1.00 -10885 CLEC1B C-type lectin domain family 1, member B 159936 2 1 2 0 1 0 1 0 0 0 0.67 1.00 -10886 PARP14 poly (ADP-ribose) polymerase family, member 14 1221416 11 6 11 1 0 5 2 1 3 0 0.67 1.00 -10887 SNAP25 synaptosomal-associated protein, 25kDa 172704 1 1 1 1 1 0 0 0 0 0 0.67 1.00 -10888 ZNF485 zinc finger protein 485 275744 1 1 1 2 0 1 0 0 0 0 0.67 1.00 -10889 C18orf21 chromosome 18 open reading frame 21 152992 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -10890 ABCC1 ATP-binding cassette, sub-family C (CFTR/MRP), member 1 1045360 11 8 11 1 6 1 2 1 1 0 0.67 1.00 -10891 POLE2 polymerase (DNA directed), epsilon 2 (p59 subunit) 357392 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -10892 CAMTA1 calmodulin binding transcription activator 1 1045904 7 7 7 5 2 4 1 0 0 0 0.67 1.00 -10893 SNX21 sorting nexin family member 21 232456 2 2 2 0 1 0 1 0 0 0 0.67 1.00 -10894 SC4MOL sterol-C4-methyl oxidase-like 202048 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -10895 RPL3 ribosomal protein L3 262164 2 2 2 0 0 0 2 0 0 0 0.67 1.00 -10896 CAPNS1 calpain, small subunit 1 154908 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -10897 UNC45A unc-45 homolog A (C. elegans) 625572 4 3 4 1 0 0 3 0 1 0 0.67 1.00 -10898 DAG1 dystroglycan 1 (dystrophin-associated glycoprotein 1) 603904 5 5 5 3 3 1 1 0 0 0 0.67 1.00 -10899 C5orf45 221088 1 1 1 1 0 1 0 0 0 0 0.67 1.00 -10900 MYO1E myosin IE 768768 5 4 5 1 2 1 1 1 0 0 0.67 1.00 -10901 DUSP9 dual specificity phosphatase 9 156128 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -10902 C17orf71 chromosome 17 open reading frame 71 670208 8 5 8 0 1 5 1 0 1 0 0.67 1.00 -10903 TMBIM1 transmembrane BAX inhibitor motif containing 1 219520 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -10904 CD7 CD7 molecule 134336 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -10905 MYH10 myosin, heavy chain 10, non-muscle 1364384 10 8 10 6 6 1 2 0 1 0 0.67 1.00 -10906 ACACB acetyl-Coenzyme A carboxylase beta 1693160 15 12 15 5 5 6 3 0 1 0 0.67 1.00 -10907 FFAR3 free fatty acid receptor 3 231224 1 1 1 1 0 0 0 0 1 0 0.67 1.00 -10908 DCP1B DCP1 decapping enzyme homolog B (S. cerevisiae) 418992 2 2 2 1 0 1 0 1 0 0 0.67 1.00 -10909 CYB561D1 cytochrome b-561 domain containing 1 150880 1 1 1 2 1 0 0 0 0 0 0.67 1.00 -10910 ZNF407 zinc finger protein 407 1422636 15 8 15 6 8 4 2 0 1 0 0.67 1.00 -10911 SLC22A9 solute carrier family 22 (organic anion transporter), member 9 381248 2 2 2 0 0 0 2 0 0 0 0.67 1.00 -10912 NAIF1 nuclear apoptosis inducing factor 1 205408 2 2 2 0 1 1 0 0 0 0 0.67 1.00 -10913 NFKBIB nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, beta 195216 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -10914 MOGS 512412 3 3 3 0 2 1 0 0 0 0 0.67 1.00 -10915 PROX1 prospero homeobox 1 499520 3 3 3 3 1 0 1 0 1 0 0.67 1.00 -10916 DPP3 dipeptidyl-peptidase 3 487732 4 4 4 0 2 2 0 0 0 0 0.67 1.00 -10917 RALB v-ral simian leukemia viral oncogene homolog B (ras related; GTP binding protein) 142688 2 1 2 1 0 1 1 0 0 0 0.67 1.00 -10918 ERCC4 excision repair cross-complementing rodent repair deficiency, complementation group 4 624484 4 4 4 1 1 1 0 1 1 0 0.67 1.00 -10919 INPPL1 inositol polyphosphate phosphatase-like 1 769788 4 4 4 3 2 1 0 0 1 0 0.67 1.00 -10920 ASCL1 achaete-scute complex homolog 1 (Drosophila) 83580 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -10921 JAZF1 JAZF zinc finger 1 168448 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -10922 COL16A1 collagen, type XVI, alpha 1 1090536 6 5 6 2 3 1 1 0 1 0 0.67 1.00 -10923 LARS leucyl-tRNA synthetase 819616 5 4 5 0 1 2 1 0 1 0 0.67 1.00 -10924 DOHH deoxyhypusine hydroxylase/monooxygenase 86996 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -10925 LCTL lactase-like 393344 4 3 4 2 2 1 1 0 0 0 0.67 1.00 -10926 SLC7A6OS solute carrier family 7, member 6 opposite strand 191928 1 1 1 1 1 0 0 0 0 0 0.67 1.00 -10927 GALR1 galanin receptor 1 208236 2 2 2 1 1 0 0 0 1 0 0.67 1.00 -10928 ZMYND11 zinc finger, MYND domain containing 11 422464 3 3 3 3 2 1 0 0 0 0 0.67 1.00 -10929 TLE2 transducin-like enhancer of split 2 (E(sp1) homolog, Drosophila) 461880 2 2 2 1 0 0 0 0 2 0 0.67 1.00 -10930 TMED9 transmembrane emp24 protein transport domain containing 9 160164 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -10931 TREH trehalase (brush-border membrane glycoprotein) 316176 2 2 2 0 1 1 0 0 0 0 0.67 1.00 -10932 DPPA2 developmental pluripotency associated 2 207200 1 1 1 1 0 1 0 0 0 0 0.67 1.00 -10933 FZD7 frizzled homolog 7 (Drosophila) 332864 3 3 3 3 2 1 0 0 0 0 0.67 1.00 -10934 ELK4 ELK4, ETS-domain protein (SRF accessory protein 1) 324800 2 2 2 1 0 1 1 0 0 0 0.67 1.00 -10935 FECH ferrochelatase (protoporphyria) 283892 3 2 3 0 2 1 0 0 0 0 0.67 1.00 -10936 AS3MT arsenic (+3 oxidation state) methyltransferase 261408 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -10937 FEZF1 FEZ family zinc finger 1 294840 3 3 3 0 0 2 1 0 0 0 0.67 1.00 -10938 PTPRF protein tyrosine phosphatase, receptor type, F 1240584 9 9 9 2 4 4 1 0 0 0 0.67 1.00 -10939 CCND2 cyclin D2 199360 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -10940 ALDH3B2 aldehyde dehydrogenase 3 family, member B2 266560 1 1 1 2 0 0 1 0 0 0 0.67 1.00 -10941 PIP4K2A phosphatidylinositol-5-phosphate 4-kinase, type II, alpha 282464 2 2 2 2 0 1 1 0 0 0 0.67 1.00 -10942 TTC7A tetratricopeptide repeat domain 7A 550536 3 3 3 1 0 2 0 0 1 0 0.67 1.00 -10943 AFAP1L1 actin filament associated protein 1-like 1 529040 4 4 4 2 0 3 1 0 0 0 0.67 1.00 -10944 FAM178A 801108 6 4 6 1 0 4 2 0 0 0 0.67 1.00 -10945 MRPL10 mitochondrial ribosomal protein L10 172928 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -10946 PI4K2A phosphatidylinositol 4-kinase type 2 alpha 259588 2 2 2 1 1 1 0 0 0 0 0.67 1.00 -10947 PDE3B phosphodiesterase 3B, cGMP-inhibited 678888 3 3 3 2 1 0 0 0 2 0 0.67 1.00 -10948 ELP3 elongation protein 3 homolog (S. cerevisiae) 381696 2 2 2 1 2 0 0 0 0 0 0.67 1.00 -10949 TIGD7 tigger transposable element derived 7 370496 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -10950 AMHR2 anti-Mullerian hormone receptor, type II 379400 2 2 2 2 2 0 0 0 0 0 0.67 1.00 -10951 WDR7 WD repeat domain 7 1026144 10 7 10 4 2 3 5 0 0 0 0.67 1.00 -10952 C1orf201 chromosome 1 open reading frame 201 199808 1 1 1 2 1 0 0 0 0 0 0.67 1.00 -10953 PLEKHA7 pleckstrin homology domain containing, family A member 7 730632 5 5 5 2 1 2 1 0 1 0 0.67 1.00 -10954 ZNF157 zinc finger protein 157 344288 2 2 2 0 0 1 0 0 1 0 0.67 1.00 -10955 PIP4K2B phosphatidylinositol-5-phosphate 4-kinase, type II, beta 288368 2 2 2 2 2 0 0 0 0 0 0.67 1.00 -10956 RNF41 ring finger protein 41 218176 1 1 1 1 1 0 0 0 0 0 0.67 1.00 -10957 SESN1 sestrin 1 379904 2 2 2 1 0 1 1 0 0 0 0.67 1.00 -10958 MAML1 mastermind-like 1 (Drosophila) 596960 4 4 4 1 0 3 0 0 1 0 0.67 1.00 -10959 C20orf46 chromosome 20 open reading frame 46 171136 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -10960 CCRN4L CCR4 carbon catabolite repression 4-like (S. cerevisiae) 248696 1 1 1 2 1 0 0 0 0 0 0.67 1.00 -10961 KRCC1 lysine-rich coiled-coil 1 175616 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -10962 G3BP2 GTPase activating protein (SH3 domain) binding protein 2 334432 5 3 5 0 4 1 0 0 0 0 0.67 1.00 -10963 TCF23 transcription factor 23 121600 1 1 1 1 0 1 0 0 0 0 0.67 1.00 -10964 AASDH aminoadipate-semialdehyde dehydrogenase 750148 4 4 4 4 1 2 1 0 0 0 0.67 1.00 -10965 BMP2K BMP2 inducible kinase 761348 4 4 4 5 2 1 0 0 1 0 0.67 1.00 -10966 LARP4 La ribonucleoprotein domain family, member 4 502432 2 2 2 0 0 1 1 0 0 0 0.67 1.00 -10967 TMPRSS11D transmembrane protease, serine 11D 290528 2 2 2 2 0 2 0 0 0 0 0.67 1.00 -10968 VENTX VENT homeobox homolog (Xenopus laevis) 85988 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -10969 CTAGE5 CTAGE family, member 5 569408 3 3 3 2 1 1 1 0 0 0 0.67 1.00 -10970 C1QL4 complement component 1, q subcomponent-like 4 109060 1 1 1 1 1 0 0 0 0 0 0.67 1.00 -10971 SGSM1 small G protein signaling modulator 1 761976 8 7 6 6 2 6 0 0 0 0 0.67 1.00 -10972 CENPB centromere protein B, 80kDa 339612 2 2 2 0 1 1 0 0 0 0 0.68 1.00 -10973 FBXL4 F-box and leucine-rich repeat protein 4 424256 2 2 2 0 1 0 0 0 1 0 0.68 1.00 -10974 TLR5 toll-like receptor 5 578144 4 4 4 0 1 3 0 0 0 0 0.68 1.00 -10975 GSTO2 glutathione S-transferase omega 2 169344 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -10976 TINAGL1 tubulointerstitial nephritis antigen-like 1 296448 2 2 2 1 2 0 0 0 0 0 0.68 1.00 -10977 PICALM phosphatidylinositol binding clathrin assembly protein 463008 2 2 2 0 0 0 2 0 0 0 0.68 1.00 -10978 C17orf46 chromosome 17 open reading frame 46 261772 2 2 2 1 1 0 1 0 0 0 0.68 1.00 -10979 CRAMP1L Crm, cramped-like (Drosophila) 572196 3 3 3 0 1 1 1 0 0 0 0.68 1.00 -10980 ASB16 ankyrin repeat and SOCS box-containing 16 215292 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -10981 MPPED1 metallophosphoesterase domain containing 1 174748 1 1 1 2 1 0 0 0 0 0 0.68 1.00 -10982 CDX2 caudal type homeobox 2 152080 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -10983 RWDD3 RWD domain containing 3 183472 1 1 1 1 0 0 1 0 0 0 0.68 1.00 -10984 SEPT6 septin 6 301584 1 1 1 2 0 1 0 0 0 0 0.68 1.00 -10985 SERPINB6 serpin peptidase inhibitor, clade B (ovalbumin), member 6 258720 2 2 2 0 2 0 0 0 0 0 0.68 1.00 -10986 CTH cystathionase (cystathionine gamma-lyase) 283584 2 2 2 0 2 0 0 0 0 0 0.68 1.00 -10987 ANXA5 annexin A5 226464 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -10988 CLEC9A C-type lectin domain family 9, member A 168000 4 1 4 1 1 2 1 0 0 0 0.68 1.00 -10989 CCDC17 coiled-coil domain containing 17 286272 2 2 2 0 0 2 0 0 0 0 0.68 1.00 -10990 KRTCAP3 keratinocyte associated protein 3 154072 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -10991 CCDC90A coiled-coil domain containing 90A 156128 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -10992 KCNJ11 potassium inwardly-rectifying channel, subfamily J, member 11 263396 2 2 2 0 2 0 0 0 0 0 0.68 1.00 -10993 SNX16 sorting nexin 16 238112 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -10994 MTNR1B melatonin receptor 1B 223496 3 2 3 1 1 1 1 0 0 0 0.68 1.00 -10995 ERICH1 glutamate-rich 1 288512 2 2 2 0 0 2 0 0 0 0 0.68 1.00 -10996 MAP3K9 mitogen-activated protein kinase kinase kinase 9 682152 4 4 4 1 2 1 0 0 1 0 0.68 1.00 -10997 MOV10 Mov10, Moloney leukemia virus 10, homolog (mouse) 692608 4 4 4 2 1 2 0 0 1 0 0.68 1.00 -10998 EMILIN2 elastin microfibril interfacer 2 609392 6 4 6 2 2 3 1 0 0 0 0.68 1.00 -10999 PRR19 proline rich 19 241696 2 2 2 0 0 2 0 0 0 0 0.68 1.00 -11000 C2orf39 chromosome 2 open reading frame 39 510580 6 4 6 2 2 3 1 0 0 0 0.68 1.00 -11001 ALOX5 arachidonate 5-lipoxygenase 391196 4 4 4 3 2 2 0 0 0 0 0.68 1.00 -11002 SLC25A42 solute carrier family 25, member 42 188972 1 1 1 1 0 0 1 0 0 0 0.68 1.00 -11003 PDCD7 programmed cell death 7 169372 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -11004 CLIP3 CAP-GLY domain containing linker protein 3 353400 3 3 3 0 2 0 1 0 0 0 0.68 1.00 -11005 MBIP MAP3K12 binding inhibitory protein 1 239904 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -11006 SOBP sine oculis binding protein homolog (Drosophila) 445480 3 3 3 1 0 1 1 0 1 0 0.68 1.00 -11007 GLS2 glutaminase 2 (liver, mitochondrial) 413784 2 2 2 1 1 1 0 0 0 0 0.68 1.00 -11008 CGN cingulin 824288 7 7 7 1 4 3 0 0 0 0 0.68 1.00 -11009 FBXW2 F-box and WD repeat domain containing 2 311136 3 2 3 0 0 3 0 0 0 0 0.68 1.00 -11010 ALPK2 alpha-kinase 2 1457416 14 8 14 4 3 7 2 0 0 2 0.68 1.00 -11011 PPCS phosphopantothenoylcysteine synthetase 189168 2 2 2 0 2 0 0 0 0 0 0.68 1.00 -11012 PSTK phosphoseryl-tRNA kinase 220444 2 2 2 0 0 2 0 0 0 0 0.68 1.00 -11013 OR5AR1 olfactory receptor, family 5, subfamily AR, member 1 209888 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -11014 GAL3ST1 galactose-3-O-sulfotransferase 1 226912 2 2 2 2 1 0 0 0 1 0 0.68 1.00 -11015 LETMD1 LETM1 domain containing 1 250656 2 2 2 0 0 2 0 0 0 0 0.68 1.00 -11016 TSPAN17 tetraspanin 17 228304 2 2 2 0 1 1 0 0 0 0 0.68 1.00 -11017 NAPG N-ethylmaleimide-sensitive factor attachment protein, gamma 221088 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -11018 ZNF174 zinc finger protein 174 295680 2 2 2 2 2 0 0 0 0 0 0.68 1.00 -11019 BEST2 bestrophin 2 288436 3 3 3 1 1 2 0 0 0 0 0.68 1.00 -11020 DPM1 dolichyl-phosphate mannosyltransferase polypeptide 1, catalytic subunit 183456 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -11021 TSTA3 tissue specific transplantation antigen P35B 207876 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -11022 EGR3 early growth response 3 247492 2 2 2 0 0 1 1 0 0 0 0.68 1.00 -11023 ANO2 680208 7 4 7 2 2 3 2 0 0 0 0.68 1.00 -11024 PELO pelota homolog (Drosophila) 261184 2 2 2 1 0 2 0 0 0 0 0.68 1.00 -11025 C4orf19 chromosome 4 open reading frame 19 213472 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -11026 LDHAL6B lactate dehydrogenase A-like 6B 257600 2 2 2 0 1 1 0 0 0 0 0.68 1.00 -11027 PTPN13 protein tyrosine phosphatase, non-receptor type 13 (APO-1/CD95 (Fas)-associated phosphatase) 1683152 18 7 17 5 3 9 3 0 1 2 0.68 1.00 -11028 SYNPO synaptopodin 478184 3 3 3 2 0 2 0 0 1 0 0.68 1.00 -11029 SNX27 sorting nexin family member 27 315140 2 2 2 3 1 1 0 0 0 0 0.68 1.00 -11030 WDR53 WD repeat domain 53 241276 1 1 1 0 0 0 0 0 1 0 0.68 1.00 -11031 BSND Bartter syndrome, infantile, with sensorineural deafness (Barttin) 219296 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -11032 USP6NL USP6 N-terminal like 514416 4 4 4 2 2 2 0 0 0 0 0.68 1.00 -11033 LCK lymphocyte-specific protein tyrosine kinase 336544 3 3 3 1 2 0 1 0 0 0 0.68 1.00 -11034 C10orf140 chromosome 10 open reading frame 140 403324 4 4 4 3 1 1 2 0 0 0 0.68 1.00 -11035 SF3A1 splicing factor 3a, subunit 1, 120kDa 514808 3 3 3 2 1 2 0 0 0 0 0.68 1.00 -11036 SP3 Sp3 transcription factor 479740 3 3 3 1 3 0 0 0 0 0 0.68 1.00 -11037 DMRT1 doublesex and mab-3 related transcription factor 1 203308 1 1 1 1 0 0 1 0 0 0 0.68 1.00 -11038 TMIGD1 transmembrane and immunoglobulin domain containing 1 182112 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -11039 HUS1 HUS1 checkpoint homolog (S. pombe) 196000 1 1 1 1 0 0 1 0 0 0 0.68 1.00 -11040 GAPVD1 GTPase activating protein and VPS9 domains 1 1023232 5 4 5 5 2 0 0 0 3 0 0.68 1.00 -11041 HEATR5A HEAT repeat containing 5A 1162728 6 4 6 1 1 2 0 0 1 2 0.68 1.00 -11042 KCTD10 potassium channel tetramerisation domain containing 10 217280 1 1 1 1 0 0 0 0 1 0 0.68 1.00 -11043 CNGB1 cyclic nucleotide gated channel beta 1 835260 7 6 7 3 2 3 1 1 0 0 0.68 1.00 -11044 ATP11B ATPase, class VI, type 11B 811552 6 4 6 0 2 1 1 0 2 0 0.68 1.00 -11045 SEBOX SEBOX homeobox 174048 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -11046 NAT15 160200 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -11047 GPR151 G protein-coupled receptor 151 283136 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -11048 WDR46 WD repeat domain 46 424032 6 4 6 0 3 3 0 0 0 0 0.68 1.00 -11049 POLQ polymerase (DNA directed), theta 1762116 12 9 11 4 5 3 2 0 2 0 0.68 1.00 -11050 OLFM2 olfactomedin 2 296128 3 3 3 5 3 0 0 0 0 0 0.68 1.00 -11051 PANX3 pannexin 3 267680 1 1 1 2 1 0 0 0 0 0 0.68 1.00 -11052 NCL nucleolin 490336 3 3 3 5 1 2 0 0 0 0 0.68 1.00 -11053 FKRP fukutin related protein 169932 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -11054 FANCF Fanconi anemia, complementation group F 252476 2 2 2 1 0 0 2 0 0 0 0.68 1.00 -11055 ZAP70 zeta-chain (TCR) associated protein kinase 70kDa 378700 4 4 4 0 3 0 1 0 0 0 0.68 1.00 -11056 MED15 mediator complex subunit 15 489244 1 1 1 1 0 0 0 0 1 0 0.68 1.00 -11057 UBXN6 278488 3 3 3 1 2 0 1 0 0 0 0.68 1.00 -11058 PHF16 PHD finger protein 16 554036 4 3 4 1 2 2 0 0 0 0 0.68 1.00 -11059 VWA3A von Willebrand factor A domain containing 3A 684040 5 5 5 2 1 3 1 0 0 0 0.68 1.00 -11060 SLC38A5 solute carrier family 38, member 5 306136 1 1 1 1 0 0 1 0 0 0 0.68 1.00 -11061 C18orf8 chromosome 18 open reading frame 8 451192 2 2 2 1 0 1 1 0 0 0 0.68 1.00 -11062 FYCO1 FYVE and coiled-coil domain containing 1 1007440 7 7 7 3 4 0 3 0 0 0 0.68 1.00 -11063 LRIT3 leucine-rich repeat, immunoglobulin-like and transmembrane domains 3 326816 3 2 3 0 0 3 0 0 0 0 0.68 1.00 -11064 SNAI1 snail homolog 1 (Drosophila) 180684 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -11065 GGCX gamma-glutamyl carboxylase 512960 5 4 5 0 2 2 1 0 0 0 0.68 1.00 -11066 ADAMTSL2 ADAMTS-like 2 302180 2 2 2 0 1 1 0 0 0 0 0.68 1.00 -11067 FIG4 FIG4 homolog (S. cerevisiae) 624936 3 3 3 0 1 1 1 0 0 0 0.68 1.00 -11068 TXNL1 thioredoxin-like 1 202048 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -11069 CDC42 cell division cycle 42 (GTP binding protein, 25kDa) 154560 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -11070 TCEA3 transcription elongation factor A (SII), 3 244384 1 1 1 0 0 0 0 0 1 0 0.68 1.00 -11071 USF2 upstream transcription factor 2, c-fos interacting 145208 1 1 1 1 0 1 0 0 0 0 0.68 1.00 -11072 KIAA0947 1482112 11 8 11 3 1 8 2 0 0 0 0.68 1.00 -11073 RINL 241136 2 2 2 0 1 0 1 0 0 0 0.68 1.00 -11074 CCDC86 coiled-coil domain containing 86 232316 2 2 2 0 1 1 0 0 0 0 0.68 1.00 -11075 LHFPL4 lipoma HMGIC fusion partner-like 4 169008 1 1 1 1 0 1 0 0 0 0 0.68 1.00 -11076 PDLIM2 PDZ and LIM domain 2 (mystique) 212500 1 1 1 1 0 1 0 0 0 0 0.68 1.00 -11077 CLASP1 cytoplasmic linker associated protein 1 1010080 7 7 6 2 3 2 0 0 2 0 0.68 1.00 -11078 SOCS6 suppressor of cytokine signaling 6 361088 2 2 2 1 2 0 0 0 0 0 0.68 1.00 -11079 ERAP1 endoplasmic reticulum aminopeptidase 1 656544 5 3 5 0 0 1 2 0 0 2 0.68 1.00 -11080 REXO4 REX4, RNA exonuclease 4 homolog (S. cerevisiae) 290668 2 2 2 2 1 0 1 0 0 0 0.68 1.00 -11081 PTPRS protein tyrosine phosphatase, receptor type, S 1177520 9 9 9 2 6 1 2 0 0 0 0.68 1.00 -11082 MAMDC2 MAM domain containing 2 458160 2 2 2 2 0 1 1 0 0 0 0.68 1.00 -11083 PIGS phosphatidylinositol glycan anchor biosynthesis, class S 379968 2 2 2 0 1 0 1 0 0 0 0.68 1.00 -11084 TBC1D26 TBC1 domain family, member 26 156156 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -11085 DDX11 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 (CHL1-like helicase homolog, S. cerevisiae) 617632 4 4 4 1 1 2 1 0 0 0 0.68 1.00 -11086 C1QTNF7 C1q and tumor necrosis factor related protein 7 198464 1 1 1 1 1 0 0 0 0 0 0.68 1.00 -11087 ZNF439 zinc finger protein 439 338688 8 2 6 1 0 7 1 0 0 0 0.68 1.00 -11088 HLA-F major histocompatibility complex, class I, F 221732 2 2 2 0 1 0 1 0 0 0 0.68 1.00 -11089 NHLRC2 NHL repeat containing 2 471096 2 2 2 1 0 0 2 0 0 0 0.68 1.00 -11090 C11orf49 chromosome 11 open reading frame 49 272832 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -11091 TUFM Tu translation elongation factor, mitochondrial 302016 1 1 1 2 0 0 0 0 1 0 0.68 1.00 -11092 PPP4R1 protein phosphatase 4, regulatory subunit 1 643552 4 3 4 2 1 1 1 0 1 0 0.68 1.00 -11093 LIN37 lin-37 homolog (C. elegans) 163304 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -11094 KCNG4 potassium voltage-gated channel, subfamily G, member 4 336952 3 3 3 4 2 1 0 0 0 0 0.68 1.00 -11095 LRRC25 leucine rich repeat containing 25 183232 2 2 2 1 0 2 0 0 0 0 0.68 1.00 -11096 CLIC4 chloride intracellular channel 4 176064 1 1 1 2 0 1 0 0 0 0 0.68 1.00 -11097 RNF40 ring finger protein 40 660956 5 5 5 1 3 2 0 0 0 0 0.68 1.00 -11098 SPOCD1 SPOC domain containing 1 770492 7 5 7 1 3 3 0 0 1 0 0.68 1.00 -11099 PKDCC 202048 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -11100 SLC41A2 solute carrier family 41, member 2 341152 2 2 2 0 0 2 0 0 0 0 0.68 1.00 -11101 KRT5 keratin 5 (epidermolysis bullosa simplex, Dowling-Meara/Kobner/Weber-Cockayne types) 402192 4 4 4 3 2 1 1 0 0 0 0.68 1.00 -11102 ZNF259 zinc finger protein 259 282464 2 2 1 0 0 2 0 0 0 0 0.68 1.00 -11103 SPRYD4 SPRY domain containing 4 141568 1 1 1 2 0 1 0 0 0 0 0.69 1.00 -11104 MLPH melanophilin 403788 2 2 2 1 1 0 1 0 0 0 0.69 1.00 -11105 HPR haptoglobin-related protein 238872 1 1 1 1 0 1 0 0 0 0 0.69 1.00 -11106 CD9 CD9 molecule 161056 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11107 PARP1 poly (ADP-ribose) polymerase family, member 1 702688 5 5 5 4 2 2 1 0 0 0 0.69 1.00 -11108 FOXD4 forkhead box D4 256340 3 3 3 0 2 1 0 0 0 0 0.69 1.00 -11109 MPHOSPH10 M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) 468160 2 2 2 1 1 1 0 0 0 0 0.69 1.00 -11110 FGF23 fibroblast growth factor 23 172032 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11111 ITM2B integral membrane protein 2B 164976 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -11112 STK36 serine/threonine kinase 36, fused homolog (Drosophila) 907648 5 4 5 2 1 2 2 0 0 0 0.69 1.00 -11113 PAPSS2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 425116 4 3 4 0 1 2 0 0 1 0 0.69 1.00 -11114 TNKS tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase 902328 4 4 4 0 1 2 0 0 1 0 0.69 1.00 -11115 SMPDL3B sphingomyelin phosphodiesterase, acid-like 3B 336784 2 2 2 0 2 0 0 0 0 0 0.69 1.00 -11116 RAD23A RAD23 homolog A (S. cerevisiae) 246288 1 1 1 2 0 1 0 0 0 0 0.69 1.00 -11117 CCDC150 coiled-coil domain containing 150 740064 4 3 4 2 1 2 0 0 1 0 0.69 1.00 -11118 OR5H15 olfactory receptor, family 5, subfamily H, member 15 211904 1 1 1 1 0 1 0 0 0 0 0.69 1.00 -11119 ANGPTL1 angiopoietin-like 1 334208 2 2 2 0 0 1 1 0 0 0 0.69 1.00 -11120 PCSK1 proprotein convertase subtilisin/kexin type 1 519232 4 4 4 1 3 1 0 0 0 0 0.69 1.00 -11121 KLHDC3 kelch domain containing 3 266336 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11122 SLC25A34 solute carrier family 25, member 34 161224 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11123 JPH1 junctophilin 1 415576 3 3 3 1 1 1 0 0 1 0 0.69 1.00 -11124 GFRA3 GDNF family receptor alpha 3 244972 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11125 ATP5F1 ATP synthase, H+ transporting, mitochondrial F0 complex, subunit B1 178976 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11126 LPAR5 lysophosphatidic acid receptor 5 168296 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11127 KRT6C keratin 6C 380536 2 2 2 2 0 1 1 0 0 0 0.69 1.00 -11128 KIF24 kinesin family member 24 930312 3 3 3 1 1 0 0 0 2 0 0.69 1.00 -11129 RPTOR 895912 9 8 9 4 6 3 0 0 0 0 0.69 1.00 -11130 GGTLC1 gamma-glutamyltransferase light chain 1 154420 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -11131 VAV2 vav 2 guanine nucleotide exchange factor 592620 4 4 4 1 1 3 0 0 0 0 0.69 1.00 -11132 CHD3 chromodomain helicase DNA binding protein 3 1325784 12 10 12 1 4 6 1 0 1 0 0.69 1.00 -11133 WBSCR22 Williams Beuren syndrome chromosome region 22 197988 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -11134 DPYSL3 dihydropyrimidinase-like 3 390408 3 2 3 3 0 2 1 0 0 0 0.69 1.00 -11135 TBCC tubulin folding cofactor C 217448 2 2 2 0 0 1 0 1 0 0 0.69 1.00 -11136 TBL2 transducin (beta)-like 2 289464 3 2 3 0 0 1 2 0 0 0 0.69 1.00 -11137 VWF von Willebrand factor 1845932 15 13 15 11 4 9 2 0 0 0 0.69 1.00 -11138 GPI glucose phosphate isomerase 391916 2 2 2 3 1 0 1 0 0 0 0.69 1.00 -11139 CP ceruloplasmin (ferroxidase) 733376 6 4 6 3 0 5 0 0 1 0 0.69 1.00 -11140 CD300LF CD300 molecule-like family member f 201824 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11141 CPPED1 214508 1 1 1 2 1 0 0 0 0 0 0.69 1.00 -11142 TATDN3 TatD DNase domain containing 3 196000 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11143 SLC26A3 solute carrier family 26, member 3 532000 3 3 3 1 1 2 0 0 0 0 0.69 1.00 -11144 PLEKHB1 pleckstrin homology domain containing, family B (evectins) member 1 151268 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -11145 ARMC1 armadillo repeat containing 1 195552 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11146 NUDT17 nudix (nucleoside diphosphate linked moiety X)-type motif 17 203648 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11147 SAFB2 scaffold attachment factor B2 489840 6 4 6 1 4 0 0 0 2 0 0.69 1.00 -11148 EDA ectodysplasin A 274864 2 2 2 0 0 1 0 0 1 0 0.69 1.00 -11149 NLGN3 neuroligin 3 557760 4 4 4 6 2 1 1 0 0 0 0.69 1.00 -11150 IL4I1 interleukin 4 induced 1 297692 2 2 2 1 0 0 1 0 1 0 0.69 1.00 -11151 ZNF177 zinc finger protein 177 223104 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -11152 ARRDC1 arrestin domain containing 1 249312 1 1 1 1 0 0 0 0 1 0 0.69 1.00 -11153 ACAT1 acetyl-Coenzyme A acetyltransferase 1 (acetoacetyl Coenzyme A thiolase) 281344 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -11154 DCLRE1B DNA cross-link repair 1B (PSO2 homolog, S. cerevisiae) 361760 2 2 2 0 0 2 0 0 0 0 0.69 1.00 -11155 PHF8 PHD finger protein 8 703192 5 4 5 2 4 1 0 0 0 0 0.69 1.00 -11156 ELAVL4 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 4 (Hu antigen D) 278124 2 2 2 3 1 0 1 0 0 0 0.69 1.00 -11157 CCDC3 coiled-coil domain containing 3 104128 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11158 C14orf169 chromosome 14 open reading frame 169 293020 1 1 1 0 0 0 0 0 1 0 0.69 1.00 -11159 RASA2 RAS p21 protein activator 2 570928 3 3 3 1 0 3 0 0 0 0 0.69 1.00 -11160 ACTL7B actin-like 7B 251972 4 3 3 1 3 1 0 0 0 0 0.69 1.00 -11161 RPS6KA5 ribosomal protein S6 kinase, 90kDa, polypeptide 5 547204 6 4 5 2 4 1 1 0 0 0 0.69 1.00 -11162 COL13A1 collagen, type XIII, alpha 1 438776 3 3 3 1 1 2 0 0 0 0 0.69 1.00 -11163 HNF1B HNF1 homeobox B 349424 2 2 2 0 0 1 1 0 0 0 0.69 1.00 -11164 EVX2 even-skipped homeobox 2 186536 1 1 1 2 0 0 0 0 1 0 0.69 1.00 -11165 FNTA farnesyltransferase, CAAX box, alpha 220368 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11166 DHX40 DEAH (Asp-Glu-Ala-His) box polypeptide 40 485576 4 3 4 1 2 2 0 0 0 0 0.69 1.00 -11167 PIGN phosphatidylinositol glycan anchor biosynthesis, class N 580264 2 2 2 0 0 0 1 0 1 0 0.69 1.00 -11168 PHKA2 phosphorylase kinase, alpha 2 (liver) 849008 7 6 7 6 5 1 1 0 0 0 0.69 1.00 -11169 NEU3 sialidase 3 (membrane sialidase) 299824 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11170 DCHS1 dachsous 1 (Drosophila) 1902716 13 13 13 2 8 2 2 1 0 0 0.69 1.00 -11171 PPIL5 peptidylprolyl isomerase (cyclophilin)-like 5 281372 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11172 VWCE von Willebrand factor C and EGF domains 611348 3 3 3 2 0 2 0 0 1 0 0.69 1.00 -11173 ARSI arylsulfatase family, member I 334264 3 3 3 0 2 1 0 0 0 0 0.69 1.00 -11174 PPP1R12A protein phosphatase 1, regulatory (inhibitor) subunit 12A 683680 3 3 3 1 1 0 2 0 0 0 0.69 1.00 -11175 PTPN6 protein tyrosine phosphatase, non-receptor type 6 426024 4 4 4 1 4 0 0 0 0 0 0.69 1.00 -11176 MAPK6 mitogen-activated protein kinase 6 489664 3 3 3 0 1 1 1 0 0 0 0.69 1.00 -11177 PRSS2 protease, serine, 2 (trypsin 2) 171136 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -11178 UCP2 uncoupling protein 2 (mitochondrial, proton carrier) 208824 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11179 SBF2 SET binding factor 2 1265824 8 6 8 1 3 1 2 0 0 2 0.69 1.00 -11180 AQP11 aquaporin 11 166404 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -11181 SPCS3 signal peptidase complex subunit 3 homolog (S. cerevisiae) 115096 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -11182 ZDHHC18 zinc finger, DHHC-type containing 18 198096 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -11183 FRMD8 FERM domain containing 8 251372 1 1 1 1 0 0 0 0 1 0 0.69 1.00 -11184 COG5 component of oligomeric golgi complex 5 596012 3 3 3 1 1 0 1 0 1 0 0.69 1.00 -11185 TRIP11 thyroid hormone receptor interactor 11 1348872 10 8 10 2 1 5 4 0 0 0 0.69 1.00 -11186 P4HA2 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide II 387072 2 2 2 2 0 0 1 0 1 0 0.69 1.00 -11187 BNIP1 BCL2/adenovirus E1B 19kDa interacting protein 1 189056 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -11188 TNFRSF10D tumor necrosis factor receptor superfamily, member 10d, decoy with truncated death domain 263624 1 1 1 1 0 1 0 0 0 0 0.69 1.00 -11189 STAT4 signal transducer and activator of transcription 4 523936 3 2 3 3 0 1 2 0 0 0 0.69 1.00 -11190 POC5 379712 2 2 2 1 0 1 1 0 0 0 0.69 1.00 -11191 KLK6 kallikrein-related peptidase 6 169120 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -11192 ZNF544 zinc finger protein 544 484736 2 2 2 2 0 1 0 0 1 0 0.69 1.00 -11193 PLIN2 300608 2 2 2 1 0 1 1 0 0 0 0.69 1.00 -11194 NUDT21 nudix (nucleoside diphosphate linked moiety X)-type motif 21 159488 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11195 STX1A syntaxin 1A (brain) 195552 2 2 2 0 2 0 0 0 0 0 0.69 1.00 -11196 ARHGAP8 Rho GTPase activating protein 8 294112 2 2 2 0 1 0 1 0 0 0 0.69 1.00 -11197 APOL2 apolipoprotein L, 2 229824 1 1 1 1 0 0 0 0 1 0 0.69 1.00 -11198 RACGAP1 Rac GTPase activating protein 1 439712 2 2 2 1 0 1 1 0 0 0 0.69 1.00 -11199 OR6B1 olfactory receptor, family 6, subfamily B, member 1 210560 1 1 1 2 1 0 0 0 0 0 0.69 1.00 -11200 ACP1 acid phosphatase 1, soluble 146944 2 1 2 1 1 1 0 0 0 0 0.69 1.00 -11201 C1orf127 chromosome 1 open reading frame 127 420244 4 3 4 3 0 3 0 0 1 0 0.69 1.00 -11202 NFKB1 nuclear factor of kappa light polypeptide gene enhancer in B-cells 1 (p105) 672448 6 4 6 0 5 1 0 0 0 0 0.69 1.00 -11203 TRPV4 transient receptor potential cation channel, subfamily V, member 4 592904 4 4 4 3 2 2 0 0 0 0 0.69 1.00 -11204 RPF2 215264 1 1 1 1 0 0 1 0 0 0 0.69 1.00 -11205 POF1B premature ovarian failure, 1B 410816 2 2 2 1 1 1 0 0 0 0 0.69 1.00 -11206 OR51B6 olfactory receptor, family 51, subfamily B, member 6 211232 1 1 1 2 0 0 1 0 0 0 0.69 1.00 -11207 TMEM187 transmembrane protein 187 171068 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -11208 POLD2 polymerase (DNA directed), delta 2, regulatory subunit 50kDa 324664 1 1 1 0 0 0 0 0 1 0 0.69 1.00 -11209 RNF34 ring finger protein 34 258672 2 2 2 0 1 1 0 0 0 0 0.69 1.00 -11210 SELO 299740 2 2 2 2 0 2 0 0 0 0 0.69 1.00 -11211 DDX18 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 463456 3 3 3 0 1 1 1 0 0 0 0.69 1.00 -11212 ENAH enabled homolog (Drosophila) 393608 2 2 2 0 1 0 0 0 1 0 0.69 1.00 -11213 ZNF581 zinc finger protein 581 132104 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11214 LY6G6F 168672 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11215 ATP6AP1 ATPase, H+ transporting, lysosomal accessory protein 1 283888 2 2 2 0 2 0 0 0 0 0 0.69 1.00 -11216 IRX2 iroquois homeobox 2 175112 2 2 2 0 1 1 0 0 0 0 0.69 1.00 -11217 SULT1A2 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 2 199640 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11218 PARP16 poly (ADP-ribose) polymerase family, member 16 204568 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11219 DHX32 DEAH (Asp-Glu-Ala-His) box polypeptide 32 509824 4 3 4 2 2 1 0 0 1 0 0.69 1.00 -11220 CAMSAP1 calmodulin regulated spectrin-associated protein 1 881644 9 7 9 2 2 5 1 0 1 0 0.69 1.00 -11221 RCN2 reticulocalbin 2, EF-hand calcium binding domain 186816 1 1 1 1 0 1 0 0 0 0 0.69 1.00 -11222 AP1G1 adaptor-related protein complex 1, gamma 1 subunit 573216 4 4 4 2 0 1 3 0 0 0 0.69 1.00 -11223 CHRNA6 cholinergic receptor, nicotinic, alpha 6 338016 2 2 2 1 1 1 0 0 0 0 0.69 1.00 -11224 FNIP2 folliculin interacting protein 2 717388 4 4 4 1 0 3 1 0 0 0 0.69 1.00 -11225 XPNPEP2 X-prolyl aminopeptidase (aminopeptidase P) 2, membrane-bound 445488 3 3 3 2 2 1 0 0 0 0 0.69 1.00 -11226 DECR2 2,4-dienoyl CoA reductase 2, peroxisomal 176036 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11227 CCDC77 coiled-coil domain containing 77 338464 3 2 3 2 1 0 2 0 0 0 0.69 1.00 -11228 SNRPB small nuclear ribonucleoprotein polypeptides B and B1 167804 1 1 1 1 0 0 1 0 0 0 0.69 1.00 -11229 NOX1 NADPH oxidase 1 384936 1 1 1 0 0 0 0 0 1 0 0.69 1.00 -11230 SCRN3 secernin 3 291872 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11231 TNNI3 troponin I type 3 (cardiac) 137436 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11232 FLNB filamin B, beta (actin binding protein 278) 1785644 16 12 15 5 5 1 7 1 2 0 0.69 1.00 -11233 TREML2 triggering receptor expressed on myeloid cells-like 2 220864 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11234 GCAT glycine C-acetyltransferase (2-amino-3-ketobutyrate coenzyme A ligase) 236824 1 1 1 1 0 1 0 0 0 0 0.69 1.00 -11235 C15orf29 chromosome 15 open reading frame 29 213024 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -11236 GREM1 gremlin 1, cysteine knot superfamily, homolog (Xenopus laevis) 120428 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11237 CHMP1A chromatin modifying protein 1A 157688 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -11238 ZNF500 zinc finger protein 500 265016 2 2 2 1 2 0 0 0 0 0 0.69 1.00 -11239 FOXN1 forkhead box N1 430864 3 3 3 0 3 0 0 0 0 0 0.69 1.00 -11240 STX17 syntaxin 17 209888 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11241 OVOL2 ovo-like 2 (Drosophila) 143332 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11242 ELL2 elongation factor, RNA polymerase II, 2 439068 3 3 3 1 0 3 0 0 0 0 0.70 1.00 -11243 ISG20L2 interferon stimulated exonuclease gene 20kDa-like 2 240408 1 1 1 1 0 0 1 0 0 0 0.70 1.00 -11244 WNT6 wingless-type MMTV integration site family, member 6 128856 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11245 TMEM130 transmembrane protein 130 274400 2 2 2 5 2 0 0 0 0 0 0.70 1.00 -11246 KLK9 kallikrein-related peptidase 9 164640 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11247 SNTB2 syntrophin, beta 2 (dystrophin-associated protein A1, 59kDa, basic component 2) 239008 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11248 MFSD11 major facilitator superfamily domain containing 11 314048 2 2 2 1 1 1 0 0 0 0 0.70 1.00 -11249 ZNF396 zinc finger protein 396 228032 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11250 NUMA1 nuclear mitotic apparatus protein 1 1375136 10 8 10 2 4 4 2 0 0 0 0.70 1.00 -11251 LASS6 LAG1 homolog, ceramide synthase 6 267680 3 2 3 0 0 1 2 0 0 0 0.70 1.00 -11252 SLC26A11 solute carrier family 26, member 11 417580 3 3 3 3 1 0 2 0 0 0 0.70 1.00 -11253 HOXD8 homeobox D8 125692 2 1 2 0 0 0 2 0 0 0 0.70 1.00 -11254 NAA30 205268 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11255 RBMS1 RNA binding motif, single stranded interacting protein 1 285152 1 1 1 1 0 0 0 0 1 0 0.70 1.00 -11256 PRTFDC1 phosphoribosyl transferase domain containing 1 152864 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11257 SNX5 sorting nexin 5 271488 1 1 1 2 0 0 1 0 0 0 0.70 1.00 -11258 SLC39A14 solute carrier family 39 (zinc transporter), member 14 336364 2 2 2 0 1 1 0 0 0 0 0.70 1.00 -11259 C4orf29 chromosome 4 open reading frame 29 262680 1 1 1 1 1 0 0 0 0 0 0.70 1.00 -11260 P4HB procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), beta polypeptide 279688 2 2 2 0 1 0 1 0 0 0 0.70 1.00 -11261 RFFL ring finger and FYVE-like domain containing 1 249984 1 1 1 1 0 0 1 0 0 0 0.70 1.00 -11262 CR1L complement component (3b/4b) receptor 1-like 393792 3 2 3 1 0 2 0 0 1 0 0.70 1.00 -11263 MRPL19 mitochondrial ribosomal protein L19 185896 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11264 HDAC7 histone deacetylase 7 564800 4 4 4 2 3 1 0 0 0 0 0.70 1.00 -11265 ASPSCR1 alveolar soft part sarcoma chromosome region, candidate 1 295992 2 2 2 0 1 0 1 0 0 0 0.70 1.00 -11266 SEPHS2 selenophosphate synthetase 2 238000 3 2 3 0 1 2 0 0 0 0 0.70 1.00 -11267 KNDC1 kinase non-catalytic C-lobe domain (KIND) containing 1 698524 6 6 6 0 3 1 2 0 0 0 0.70 1.00 -11268 IL12A interleukin 12A (natural killer cell stimulatory factor 1, cytotoxic lymphocyte maturation factor 1, p35) 176960 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11269 GPT2 glutamic pyruvate transaminase (alanine aminotransferase) 2 316456 2 2 2 0 1 1 0 0 0 0 0.70 1.00 -11270 CDC25A cell division cycle 25 homolog A (S. pombe) 336504 2 2 2 2 1 1 0 0 0 0 0.70 1.00 -11271 CEP97 centrosomal protein 97kDa 590296 3 3 3 1 0 1 2 0 0 0 0.70 1.00 -11272 FAM179B 1168244 10 7 10 2 3 4 2 0 1 0 0.70 1.00 -11273 KDM5D 656740 2 2 2 0 0 1 0 0 1 0 0.70 1.00 -11274 PIGU phosphatidylinositol glycan anchor biosynthesis, class U 295256 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11275 FCGR2A Fc fragment of IgG, low affinity IIa, receptor (CD32) 219968 1 1 1 1 1 0 0 0 0 0 0.70 1.00 -11276 PIK3AP1 phosphoinositide-3-kinase adaptor protein 1 543480 1 1 1 4 0 0 0 0 1 0 0.70 1.00 -11277 DUOXA2 dual oxidase maturation factor 2 210588 2 2 2 1 2 0 0 0 0 0 0.70 1.00 -11278 ZNF219 zinc finger protein 219 166476 1 1 1 0 0 0 0 0 1 0 0.70 1.00 -11279 KRT27 keratin 27 316288 2 2 2 3 1 1 0 0 0 0 0.70 1.00 -11280 LAPTM5 lysosomal associated multispanning membrane protein 5 183768 1 1 1 1 0 1 0 0 0 0 0.70 1.00 -11281 DYX1C1 dyslexia susceptibility 1 candidate 1 312416 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11282 KIAA0100 KIAA0100 1531488 10 9 10 3 3 3 3 1 0 0 0.70 1.00 -11283 CASP7 caspase 7, apoptosis-related cysteine peptidase 232736 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11284 UTP11L UTP11-like, U3 small nucleolar ribonucleoprotein, (yeast) 177856 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11285 KLHDC7B kelch domain containing 7B 163240 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11286 CACNG6 calcium channel, voltage-dependent, gamma subunit 6 114996 1 1 1 1 0 1 0 0 0 0 0.70 1.00 -11287 GART phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase 699104 3 3 3 0 0 2 1 0 0 0 0.70 1.00 -11288 DNALI1 dynein, axonemal, light intermediate chain 1 194208 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11289 RWDD2A RWD domain containing 2A 198688 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11290 CABP1 calcium binding protein 1 162148 1 1 1 1 0 1 0 0 0 0 0.70 1.00 -11291 UCP1 uncoupling protein 1 (mitochondrial, proton carrier) 212352 1 1 1 3 0 0 1 0 0 0 0.70 1.00 -11292 LRIG3 leucine-rich repeats and immunoglobulin-like domains 3 715904 9 5 9 3 1 5 3 0 0 0 0.70 1.00 -11293 C9orf24 chromosome 9 open reading frame 24 194432 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11294 CD96 CD96 molecule 407232 3 2 3 1 1 2 0 0 0 0 0.70 1.00 -11295 EIF6 eukaryotic translation initiation factor 6 196364 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11296 PIGM phosphatidylinositol glycan anchor biosynthesis, class M 285824 3 2 3 1 0 2 1 0 0 0 0.70 1.00 -11297 LBX1 ladybird homeobox 1 106792 2 2 1 0 2 0 0 0 0 0 0.70 1.00 -11298 FBLN7 fibulin 7 269024 4 3 4 2 3 1 0 0 0 0 0.70 1.00 -11299 GYLTL1B glycosyltransferase-like 1B 406432 2 2 2 2 0 0 1 0 1 0 0.70 1.00 -11300 PLD4 phospholipase D family, member 4 230568 1 1 1 0 0 0 0 1 0 0 0.70 1.00 -11301 TEX264 testis expressed 264 202076 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11302 FGF8 fibroblast growth factor 8 (androgen-induced) 123048 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11303 CNNM2 cyclin M2 483224 6 4 6 2 3 1 2 0 0 0 0.70 1.00 -11304 HOXC11 homeobox C11 180824 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11305 STAP1 signal transducing adaptor family member 1 206976 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11306 SCN4B sodium channel, voltage-gated, type IV, beta 152908 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11307 SRRM3 150600 1 1 1 0 0 0 0 0 1 0 0.70 1.00 -11308 ZFP90 zinc finger protein 90 homolog (mouse) 428540 7 3 6 0 3 3 1 0 0 0 0.70 1.00 -11309 NXF3 nuclear RNA export factor 3 374528 2 2 2 0 1 1 0 0 0 0 0.70 1.00 -11310 TPI1 triosephosphate isomerase 1 166600 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11311 PIGV phosphatidylinositol glycan anchor biosynthesis, class V 334656 2 2 2 1 0 2 0 0 0 0 0.70 1.00 -11312 EFNA4 ephrin-A4 163576 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11313 KIAA1755 KIAA1755 819480 5 5 5 1 1 1 2 1 0 0 0.70 1.00 -11314 FOXRED2 FAD-dependent oxidoreductase domain containing 2 430164 2 2 2 0 0 1 1 0 0 0 0.70 1.00 -11315 GIPC3 GIPC PDZ domain containing family, member 3 160132 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11316 LCN8 lipocalin 8 106828 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11317 XRCC6 X-ray repair complementing defective repair in Chinese hamster cells 6 (Ku autoantigen, 70kDa) 419664 3 3 3 1 0 3 0 0 0 0 0.70 1.00 -11318 PASD1 PAS domain containing 1 510448 2 2 2 1 0 1 1 0 0 0 0.70 1.00 -11319 LRRC14B 207592 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11320 CTSZ cathepsin Z 176736 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11321 TACC2 transforming, acidic coiled-coil containing protein 2 1885688 11 9 11 4 3 5 2 0 1 0 0.70 1.00 -11322 GRIN2B glutamate receptor, ionotropic, N-methyl D-aspartate 2B 1005732 10 7 10 2 5 1 3 0 1 0 0.70 1.00 -11323 FOLR4 167552 1 1 1 2 1 0 0 0 0 0 0.70 1.00 -11324 RAB28 RAB28, member RAS oncogene family 176092 1 1 1 1 0 1 0 0 0 0 0.70 1.00 -11325 CC2D2B coiled-coil and C2 domain containing 2B 224224 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11326 GLTPD2 glycolipid transfer protein domain containing 2 104496 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11327 RAP2A RAP2A, member of RAS oncogene family 123844 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11328 CD320 CD320 molecule 175280 1 1 1 1 0 0 1 0 0 0 0.70 1.00 -11329 WNT3A wingless-type MMTV integration site family, member 3A 204428 1 1 1 2 0 0 1 0 0 0 0.70 1.00 -11330 RIOK3 RIO kinase 3 (yeast) 361088 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11331 RFPL3 ret finger protein-like 3 213724 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11332 AQR aquarius homolog (mouse) 1029952 7 5 7 1 2 1 2 0 2 0 0.70 1.00 -11333 MRPS15 mitochondrial ribosomal protein S15 180544 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11334 OR9I1 olfactory receptor, family 9, subfamily I, member 1 212576 2 1 2 0 1 1 0 0 0 0 0.70 1.00 -11335 C7orf31 chromosome 7 open reading frame 31 405216 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11336 YKT6 YKT6 v-SNARE homolog (S. cerevisiae) 140000 1 1 1 1 1 0 0 0 0 0 0.70 1.00 -11337 EID2 EP300 interacting inhibitor of differentiation 2 115808 1 1 1 1 1 0 0 0 0 0 0.70 1.00 -11338 ITPRIPL1 381528 2 2 2 1 0 1 0 0 1 0 0.70 1.00 -11339 ADIPOR1 adiponectin receptor 1 258944 1 1 1 1 0 1 0 0 0 0 0.70 1.00 -11340 DIO1 deiodinase, iodothyronine, type I 171584 1 1 1 2 0 1 0 0 0 0 0.70 1.00 -11341 DIO3 deiodinase, iodothyronine, type III 156352 3 2 3 1 2 1 0 0 0 0 0.70 1.00 -11342 ZNF749 zinc finger protein 749 524580 6 3 6 0 1 4 1 0 0 0 0.70 1.00 -11343 TIPRL TIP41, TOR signaling pathway regulator-like (S. cerevisiae) 191928 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11344 CWC22 586256 4 4 4 3 3 0 1 0 0 0 0.70 1.00 -11345 UBE2J2 ubiquitin-conjugating enzyme E2, J2 (UBC6 homolog, yeast) 180096 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11346 SAMD11 sterile alpha motif domain containing 11 282912 2 2 2 0 1 0 0 1 0 0 0.70 1.00 -11347 ZNFX1 zinc finger, NFX1-type containing 1 1301216 12 9 12 5 7 2 3 0 0 0 0.70 1.00 -11348 SPATA5L1 spermatogenesis associated 5-like 1 404656 3 3 3 0 0 2 0 0 1 0 0.70 1.00 -11349 ST3GAL1 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 234528 1 1 1 1 1 0 0 0 0 0 0.70 1.00 -11350 DHCR7 7-dehydrocholesterol reductase 286748 2 2 2 1 2 0 0 0 0 0 0.70 1.00 -11351 BMP1 bone morphogenetic protein 1 672028 4 4 4 4 2 0 1 0 1 0 0.70 1.00 -11352 MUDENG 337120 2 2 2 1 0 2 0 0 0 0 0.70 1.00 -11353 EIF3H eukaryotic translation initiation factor 3, subunit H 244384 1 1 1 1 0 0 1 0 0 0 0.70 1.00 -11354 NOV nephroblastoma overexpressed gene 238000 2 2 2 0 0 1 1 0 0 0 0.70 1.00 -11355 COPS2 COP9 constitutive photomorphogenic homolog subunit 2 (Arabidopsis) 312120 1 1 1 1 0 1 0 0 0 0 0.70 1.00 -11356 WDR54 WD repeat domain 54 233184 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11357 RFX5 regulatory factor X, 5 (influences HLA class II expression) 414708 1 1 1 1 0 0 0 0 1 0 0.70 1.00 -11358 NR2E1 nuclear receptor subfamily 2, group E, member 1 235200 2 2 2 2 2 0 0 0 0 0 0.70 1.00 -11359 PAICS phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase 282800 1 1 1 0 0 0 0 0 1 0 0.70 1.00 -11360 DNAJB7 DnaJ (Hsp40) homolog, subfamily B, member 7 209216 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11361 MAP4K3 mitogen-activated protein kinase kinase kinase kinase 3 628880 4 4 4 4 0 3 1 0 0 0 0.70 1.00 -11362 C7orf70 166124 1 1 1 2 0 1 0 0 0 0 0.70 1.00 -11363 OR7C2 olfactory receptor, family 7, subfamily C, member 2 215936 1 1 1 2 0 0 1 0 0 0 0.70 1.00 -11364 CTR9 Ctr9, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) 811328 6 5 6 1 3 3 0 0 0 0 0.70 1.00 -11365 HES1 hairy and enhancer of split 1, (Drosophila) 153580 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -11366 TPBG trophoblast glycoprotein 230084 1 1 1 1 0 0 0 0 1 0 0.70 1.00 -11367 B3GNTL1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like 1 211552 1 1 1 0 0 0 0 0 1 0 0.70 1.00 -11368 AUH AU RNA binding protein/enoyl-Coenzyme A hydratase 184968 1 1 1 1 1 0 0 0 0 0 0.70 1.00 -11369 ITLN1 intelectin 1 (galactofuranose binding) 217280 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -11370 ZFYVE21 zinc finger, FYVE domain containing 21 130872 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -11371 C16orf7 chromosome 16 open reading frame 7 277284 1 1 1 0 0 0 0 0 1 0 0.70 1.00 -11372 ZNF276 zinc finger protein 276 309904 2 2 2 1 1 0 0 0 1 0 0.70 1.00 -11373 AACS acetoacetyl-CoA synthetase 444208 4 4 4 0 1 2 1 0 0 0 0.71 1.00 -11374 HLA-DRB5 major histocompatibility complex, class II, DR beta 5 118440 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11375 SLC38A2 solute carrier family 38, member 2 354144 1 1 1 1 0 0 1 0 0 0 0.71 1.00 -11376 TGS1 trimethylguanosine synthase homolog (S. cerevisiae) 582000 5 3 5 0 0 3 1 0 1 0 0.71 1.00 -11377 CXCR1 236768 1 1 1 1 0 1 0 0 0 0 0.71 1.00 -11378 ALOX12 arachidonate 12-lipoxygenase 422856 2 2 2 2 0 1 0 1 0 0 0.71 1.00 -11379 ZNF217 zinc finger protein 217 708512 7 5 7 5 2 2 2 0 1 0 0.71 1.00 -11380 KIAA1279 KIAA1279 423836 2 2 2 0 1 1 0 0 0 0 0.71 1.00 -11381 TPK1 thiamin pyrophosphokinase 1 171136 3 1 3 0 1 1 1 0 0 0 0.71 1.00 -11382 ARMCX3 armadillo repeat containing, X-linked 3 256256 1 1 1 2 0 0 0 0 1 0 0.71 1.00 -11383 BRPF1 bromodomain and PHD finger containing, 1 820348 7 7 6 1 6 1 0 0 0 0 0.71 1.00 -11384 PAQR4 progestin and adipoQ receptor family member IV 139440 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11385 ASPG 237836 1 1 1 0 0 0 0 0 1 0 0.71 1.00 -11386 C9orf25 chromosome 9 open reading frame 25 111228 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -11387 ABCC10 ATP-binding cassette, sub-family C (CFTR/MRP), member 10 1002316 7 6 7 1 3 1 2 0 1 0 0.71 1.00 -11388 ZNF652 zinc finger protein 652 412384 5 3 4 0 1 3 1 0 0 0 0.71 1.00 -11389 SLC25A19 solute carrier family 25 (mitochondrial thiamine pyrophosphate carrier), member 19 221088 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11390 HADH hydroxyacyl-Coenzyme A dehydrogenase 226548 1 1 1 2 1 0 0 0 0 0 0.71 1.00 -11391 ADD1 adducin 1 (alpha) 536144 3 3 3 0 2 0 1 0 0 0 0.71 1.00 -11392 BZRAP1 benzodiazapine receptor (peripheral) associated protein 1 1093664 9 8 8 2 3 5 1 0 0 0 0.71 1.00 -11393 G6PD glucose-6-phosphate dehydrogenase 355600 3 3 3 0 0 3 0 0 0 0 0.71 1.00 -11394 FOXC1 forkhead box C1 110944 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -11395 MFF 238560 3 2 2 3 3 0 0 0 0 0 0.71 1.00 -11396 KRI1 KRI1 homolog (S. cerevisiae) 456148 3 3 3 1 1 1 0 0 1 0 0.71 1.00 -11397 WDR1 WD repeat domain 1 383120 3 3 3 0 1 2 0 0 0 0 0.71 1.00 -11398 MGEA5 meningioma expressed antigen 5 (hyaluronidase) 594176 2 2 2 1 0 0 2 0 0 0 0.71 1.00 -11399 CYP4F11 cytochrome P450, family 4, subfamily F, polypeptide 11 363468 2 2 2 0 1 1 0 0 0 0 0.71 1.00 -11400 ATP4B ATPase, H+/K+ exchanging, beta polypeptide 197588 1 1 1 3 0 1 0 0 0 0 0.71 1.00 -11401 RAB11A RAB11A, member RAS oncogene family 150304 1 1 1 1 1 0 0 0 0 0 0.71 1.00 -11402 SPIRE1 spire homolog 1 (Drosophila) 407232 3 3 3 1 2 0 0 0 1 0 0.71 1.00 -11403 RPP30 ribonuclease P/MRP 30kDa subunit 207424 1 1 1 1 0 1 0 0 0 0 0.71 1.00 -11404 LGR5 leucine-rich repeat-containing G protein-coupled receptor 5 626304 2 2 2 0 0 1 0 0 1 0 0.71 1.00 -11405 PHGDH phosphoglycerate dehydrogenase 369600 2 2 2 1 0 1 1 0 0 0 0.71 1.00 -11406 YIF1B Yip1 interacting factor homolog B (S. cerevisiae) 195328 1 1 1 1 0 1 0 0 0 0 0.71 1.00 -11407 ILF3 interleukin enhancer binding factor 3, 90kDa 625352 4 4 4 1 1 2 0 0 1 0 0.71 1.00 -11408 SIRT7 sirtuin (silent mating type information regulation 2 homolog) 7 (S. cerevisiae) 143760 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -11409 BPNT1 3'(2'), 5'-bisphosphate nucleotidase 1 214816 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -11410 NR4A1 nuclear receptor subfamily 4, group A, member 1 399504 2 2 2 0 2 0 0 0 0 0 0.71 1.00 -11411 NXNL1 nucleoredoxin-like 1 98000 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11412 PLEKHB2 pleckstrin homology domain containing, family B (evectins) member 2 156128 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -11413 MPRIP 661024 5 5 5 1 5 0 0 0 0 0 0.71 1.00 -11414 FAM174A 110628 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11415 MAX MYC associated factor X 188832 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -11416 SLC7A7 solute carrier family 7 (cationic amino acid transporter, y+ system), member 7 348180 1 1 1 2 0 0 0 0 1 0 0.71 1.00 -11417 WDR61 WD repeat domain 61 214592 1 1 1 1 1 0 0 0 0 0 0.71 1.00 -11418 TOX2 TOX high mobility group box family member 2 354816 2 2 2 3 2 0 0 0 0 0 0.71 1.00 -11419 COQ10A coenzyme Q10 homolog A (S. cerevisiae) 157696 1 1 1 0 0 0 1 0 0 0 0.71 1.00 -11420 HORMAD2 HORMA domain containing 2 202472 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11421 CCDC40 coiled-coil domain containing 40 771160 4 4 4 3 1 2 0 0 1 0 0.71 1.00 -11422 NSF N-ethylmaleimide-sensitive factor 257304 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11423 BTBD3 BTB (POZ) domain containing 3 355040 2 2 2 0 0 2 0 0 0 0 0.71 1.00 -11424 SHBG sex hormone-binding globulin 277984 2 2 2 1 1 1 0 0 0 0 0.71 1.00 -11425 DDX46 DEAD (Asp-Glu-Ala-Asp) box polypeptide 46 714112 7 4 7 0 2 3 1 0 1 0 0.71 1.00 -11426 DPP6 dipeptidyl-peptidase 6 562064 3 3 3 1 1 2 0 0 0 0 0.71 1.00 -11427 UNKL unkempt homolog (Drosophila)-like 175960 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11428 MRPL2 mitochondrial ribosomal protein L2 198304 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -11429 CHMP4C chromatin modifying protein 4C 155472 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11430 NTRK2 neurotrophic tyrosine kinase, receptor, type 2 596512 4 4 4 3 1 2 1 0 0 0 0.71 1.00 -11431 AP1M1 adaptor-related protein complex 1, mu 1 subunit 295680 2 2 2 1 1 0 1 0 0 0 0.71 1.00 -11432 PARN poly(A)-specific ribonuclease (deadenylation nuclease) 429824 3 3 3 1 1 2 0 0 0 0 0.71 1.00 -11433 APOLD1 apolipoprotein L domain containing 1 106848 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11434 ABHD10 abhydrolase domain containing 10 210784 1 1 1 1 0 1 0 0 0 0 0.71 1.00 -11435 ZC3HAV1 zinc finger CCCH-type, antiviral 1 614464 4 3 4 3 2 0 1 1 0 0 0.71 1.00 -11436 DDX52 DEAD (Asp-Glu-Ala-Asp) box polypeptide 52 416640 2 2 2 1 0 0 1 0 1 0 0.71 1.00 -11437 FAM131C family with sequence similarity 131, member C 138140 1 1 1 1 1 0 0 0 0 0 0.71 1.00 -11438 LRBA LPS-responsive vesicle trafficking, beach and anchor containing 1974688 15 9 15 5 4 5 4 0 2 0 0.71 1.00 -11439 PIP5K1B phosphatidylinositol-4-phosphate 5-kinase, type I, beta 375200 2 2 2 1 1 0 0 0 1 0 0.71 1.00 -11440 NUMB numb homolog (Drosophila) 447104 2 2 2 2 0 0 1 0 1 0 0.71 1.00 -11441 DLG1 discs, large homolog 1 (Drosophila) 653856 3 3 3 1 1 1 1 0 0 0 0.71 1.00 -11442 AIPL1 aryl hydrocarbon receptor interacting protein-like 1 264096 2 2 2 0 1 0 1 0 0 0 0.71 1.00 -11443 CYFIP2 cytoplasmic FMR1 interacting protein 2 833392 5 5 5 5 1 1 3 0 0 0 0.71 1.00 -11444 GGPS1 geranylgeranyl diphosphate synthase 1 204960 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11445 LRP5L low density lipoprotein receptor-related protein 5-like 173600 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11446 SGK494 189728 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11447 KIAA1524 KIAA1524 627648 4 3 4 1 0 3 1 0 0 0 0.71 1.00 -11448 ATG3 ATG3 autophagy related 3 homolog (S. cerevisiae) 222432 1 1 1 0 0 0 1 0 0 0 0.71 1.00 -11449 DNAJC9 DnaJ (Hsp40) homolog, subfamily C, member 9 148168 1 1 1 1 0 1 0 0 0 0 0.71 1.00 -11450 MOSPD3 motile sperm domain containing 3 154756 1 1 1 1 1 0 0 0 0 0 0.71 1.00 -11451 CROT carnitine O-octanoyltransferase 426272 3 2 3 1 2 0 1 0 0 0 0.71 1.00 -11452 NIPAL4 266756 1 1 1 0 0 0 1 0 0 0 0.71 1.00 -11453 SRPK2 SFRS protein kinase 2 491904 4 3 4 2 0 1 3 0 0 0 0.71 1.00 -11454 ABR active BCR-related gene 613980 4 4 4 2 2 1 0 1 0 0 0.71 1.00 -11455 C1orf111 chromosome 1 open reading frame 111 178752 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -11456 TAF6 TAF6 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 80kDa 468160 3 3 3 2 1 2 0 0 0 0 0.71 1.00 -11457 STX18 syntaxin 18 218540 1 1 1 0 0 0 0 0 1 0 0.71 1.00 -11458 CBX7 chromobox homolog 7 123284 1 1 1 1 1 0 0 0 0 0 0.71 1.00 -11459 ENTPD7 ectonucleoside triphosphate diphosphohydrolase 7 417312 4 3 3 0 2 1 1 0 0 0 0.71 1.00 -11460 GSX2 GS homeobox 2 143652 1 1 1 1 1 0 0 0 0 0 0.71 1.00 -11461 WDR11 841064 4 4 4 7 1 1 1 0 1 0 0.71 1.00 -11462 IQSEC1 IQ motif and Sec7 domain 1 579044 4 4 4 1 2 0 1 0 1 0 0.71 1.00 -11463 OR7E24 olfactory receptor, family 7, subfamily E, member 24 229376 1 1 1 1 0 1 0 0 0 0 0.71 1.00 -11464 GRIN2C glutamate receptor, ionotropic, N-methyl D-aspartate 2C 492220 5 4 5 2 2 2 0 0 1 0 0.71 1.00 -11465 PCYOX1L prenylcysteine oxidase 1 like 317408 2 2 2 0 1 1 0 0 0 0 0.71 1.00 -11466 CYTH1 273952 2 2 2 0 1 1 0 0 0 0 0.71 1.00 -11467 LRRC2 leucine rich repeat containing 2 257152 2 1 2 1 1 0 0 0 1 0 0.71 1.00 -11468 UBE3B ubiquitin protein ligase E3B 732960 6 4 6 1 3 2 0 0 1 0 0.71 1.00 -11469 MARK2 MAP/microtubule affinity-regulating kinase 2 525180 4 4 4 2 2 1 1 0 0 0 0.71 1.00 -11470 ITGA2B integrin, alpha 2b (platelet glycoprotein IIb of IIb/IIIa complex, antigen CD41) 669136 4 4 4 3 1 1 0 0 2 0 0.71 1.00 -11471 UGT1A10 UDP glucuronosyltransferase 1 family, polypeptide A10 361312 1 1 1 1 0 0 0 0 1 0 0.71 1.00 -11472 UQCC ubiquinol-cytochrome c reductase complex chaperone, CBP3 homolog (yeast) 210560 1 1 1 3 0 1 0 0 0 0 0.71 1.00 -11473 GRSF1 G-rich RNA sequence binding factor 1 250432 1 1 1 0 0 0 0 0 1 0 0.71 1.00 -11474 INPP4B inositol polyphosphate-4-phosphatase, type II, 105kDa 642208 7 5 7 1 3 2 2 0 0 0 0.71 1.00 -11475 VTI1B vesicle transport through interaction with t-SNAREs homolog 1B (yeast) 151956 1 1 1 1 1 0 0 0 0 0 0.71 1.00 -11476 NOMO2 NODAL modulator 2 347000 2 2 2 0 0 1 0 0 1 0 0.71 1.00 -11477 MFGE8 milk fat globule-EGF factor 8 protein 250656 2 2 2 2 1 1 0 0 0 0 0.71 1.00 -11478 C6orf47 chromosome 6 open reading frame 47 124040 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11479 OR52I1 olfactory receptor, family 52, subfamily I, member 1 219296 2 1 2 1 0 1 1 0 0 0 0.71 1.00 -11480 NPAS3 neuronal PAS domain protein 3 511556 4 4 4 2 3 0 1 0 0 0 0.71 1.00 -11481 METT11D1 methyltransferase 11 domain containing 1 335104 2 2 2 0 1 0 1 0 0 0 0.71 1.00 -11482 LYVE1 lymphatic vessel endothelial hyaluronan receptor 1 222432 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11483 TNFAIP2 tumor necrosis factor, alpha-induced protein 2 281204 1 1 1 0 0 0 0 0 1 0 0.71 1.00 -11484 HOXA13 homeobox A13 150836 1 1 1 0 0 0 0 0 1 0 0.71 1.00 -11485 GABRA1 gamma-aminobutyric acid (GABA) A receptor, alpha 1 315168 4 2 4 0 0 3 1 0 0 0 0.71 1.00 -11486 FAAH fatty acid amide hydrolase 353476 2 2 2 1 0 1 1 0 0 0 0.71 1.00 -11487 ALKBH5 alkB, alkylation repair homolog 5 (E. coli) 206752 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11488 ALG11 asparagine-linked glycosylation 11 homolog (S. cerevisiae, alpha-1,2-mannosyltransferase) 334880 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -11489 SLC16A8 solute carrier family 16, member 8 (monocarboxylic acid transporter 3) 117124 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -11490 VN1R4 vomeronasal 1 receptor 4 203704 1 1 1 3 0 1 0 0 0 0 0.71 1.00 -11491 MTF2 metal response element binding transcription factor 2 412608 5 3 5 0 2 1 1 0 1 0 0.71 1.00 -11492 PRPH peripherin 244356 2 2 2 0 1 0 0 0 1 0 0.71 1.00 -11493 LINGO1 leucine rich repeat and Ig domain containing 1 367864 4 3 4 3 2 2 0 0 0 0 0.71 1.00 -11494 OR5M11 olfactory receptor, family 5, subfamily M, member 11 206528 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11495 EPHX3 207312 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -11496 ARHGAP22 Rho GTPase activating protein 22 282640 2 2 2 1 1 1 0 0 0 0 0.72 1.00 -11497 FERMT3 fermitin family homolog 3 (Drosophila) 426368 2 2 2 0 1 0 0 1 0 0 0.72 1.00 -11498 SARS2 seryl-tRNA synthetase 2, mitochondrial 343004 2 2 2 1 1 1 0 0 0 0 0.72 1.00 -11499 SPIN3 spindlin family, member 3 174944 2 1 2 0 1 1 0 0 0 0 0.72 1.00 -11500 SFXN3 sideroflexin 3 227160 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11501 CALHM1 190092 1 1 1 1 0 0 0 0 1 0 0.72 1.00 -11502 TAS2R7 taste receptor, type 2, member 7 215264 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -11503 PRSS54 270592 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11504 SALL4 sal-like 4 (Drosophila) 700616 5 5 5 2 4 0 1 0 0 0 0.72 1.00 -11505 SH3BP5L SH3-binding domain protein 5-like 235088 3 2 3 1 1 2 0 0 0 0 0.72 1.00 -11506 E2F4 E2F transcription factor 4, p107/p130-binding 258784 1 1 1 1 0 0 1 0 0 0 0.72 1.00 -11507 GIF gastric intrinsic factor (vitamin B synthesis) 288960 3 2 3 1 1 2 0 0 0 0 0.72 1.00 -11508 RNF39 ring finger protein 39 140088 1 1 1 0 0 0 0 0 1 0 0.72 1.00 -11509 PPP1R2 protein phosphatase 1, regulatory (inhibitor) subunit 2 143672 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -11510 AXIN1 axin 1 472668 2 2 2 1 0 1 0 0 1 0 0.72 1.00 -11511 AADAT aminoadipate aminotransferase 291664 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -11512 ST6GALNAC4 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 200564 2 2 2 0 1 1 0 0 0 0 0.72 1.00 -11513 BDNF brain-derived neurotrophic factor 236328 1 1 1 2 1 0 0 0 0 0 0.72 1.00 -11514 PRRC1 proline-rich coiled-coil 1 306880 1 1 1 0 0 0 1 0 0 0 0.72 1.00 -11515 TCEA2 transcription elongation factor A (SII), 2 199696 2 2 2 0 1 1 0 0 0 0 0.72 1.00 -11516 FRA10AC1 224000 2 1 2 1 0 2 0 0 0 0 0.72 1.00 -11517 TBC1D10A TBC1 domain family, member 10A 306292 2 2 2 2 1 0 1 0 0 0 0.72 1.00 -11518 NES nestin 998396 7 6 7 2 2 5 0 0 0 0 0.72 1.00 -11519 SH3RF3 395008 4 4 4 2 3 1 0 0 0 0 0.72 1.00 -11520 CREB1 cAMP responsive element binding protein 1 236992 1 1 1 0 0 0 1 0 0 0 0.72 1.00 -11521 C21orf63 chromosome 21 open reading frame 63 277936 2 2 2 2 0 1 1 0 0 0 0.72 1.00 -11522 PRAMEF12 PRAME family member 12 327936 2 2 2 1 0 2 0 0 0 0 0.72 1.00 -11523 RBMX2 RNA binding motif protein, X-linked 2 220256 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -11524 GPA33 glycoprotein A33 (transmembrane) 221312 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11525 MMP13 matrix metallopeptidase 13 (collagenase 3) 326144 2 2 2 2 1 0 1 0 0 0 0.72 1.00 -11526 ZC3H12D zinc finger CCCH-type containing 12D 185980 2 2 2 0 1 1 0 0 0 0 0.72 1.00 -11527 CRTAP cartilage associated protein 209076 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -11528 DPH1 DPH1 homolog (S. cerevisiae) 276304 2 2 2 0 1 0 0 1 0 0 0.72 1.00 -11529 DDRGK1 199024 1 1 1 0 0 0 1 0 0 0 0.72 1.00 -11530 CPNE6 copine VI (neuronal) 386568 2 2 2 1 0 0 2 0 0 0 0.72 1.00 -11531 MGAT1 mannosyl (alpha-1,3-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase 218680 2 2 2 0 1 0 1 0 0 0 0.72 1.00 -11532 GGT7 gamma-glutamyltransferase 7 428952 4 4 4 1 4 0 0 0 0 0 0.72 1.00 -11533 AUTS2 autism susceptibility candidate 2 791568 6 6 6 6 3 1 1 0 1 0 0.72 1.00 -11534 PACSIN1 protein kinase C and casein kinase substrate in neurons 1 284688 2 2 2 1 1 1 0 0 0 0 0.72 1.00 -11535 MMP16 matrix metallopeptidase 16 (membrane-inserted) 452480 2 2 2 3 0 0 2 0 0 0 0.72 1.00 -11536 ALG1 asparagine-linked glycosylation 1 homolog (S. cerevisiae, beta-1,4-mannosyltransferase) 267400 1 1 1 0 0 0 1 0 0 0 0.72 1.00 -11537 SPEM1 spermatid maturation 1 204744 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11538 CALR calreticulin 280980 1 1 1 2 0 1 0 0 0 0 0.72 1.00 -11539 OTUB2 OTU domain, ubiquitin aldehyde binding 2 161728 1 1 1 0 0 0 1 0 0 0 0.72 1.00 -11540 CCDC12 coiled-coil domain containing 12 118968 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11541 TRIM2 tripartite motif-containing 2 512736 5 4 5 0 3 1 1 0 0 0 0.72 1.00 -11542 C19orf21 chromosome 19 open reading frame 21 440332 2 2 2 1 0 0 2 0 0 0 0.72 1.00 -11543 CYP21A2 cytochrome P450, family 21, subfamily A, polypeptide 2 248308 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -11544 GLUD1 glutamate dehydrogenase 1 295160 2 2 2 2 2 0 0 0 0 0 0.72 1.00 -11545 CREBZF CREB/ATF bZIP transcription factor 189392 1 1 1 2 0 0 0 0 1 0 0.72 1.00 -11546 NIPAL3 283360 3 2 3 3 1 1 1 0 0 0 0.72 1.00 -11547 MRGPRE MAS-related GPR, member E 148556 1 1 1 1 1 0 0 0 0 0 0.72 1.00 -11548 GFOD2 glucose-fructose oxidoreductase domain containing 2 261184 2 2 2 2 1 1 0 0 0 0 0.72 1.00 -11549 KIDINS220 1216768 9 9 9 2 2 5 2 0 0 0 0.72 1.00 -11550 SLC35F4 solute carrier family 35, member F4 357952 2 2 2 3 0 2 0 0 0 0 0.72 1.00 -11551 NF1 neurofibromin 1 (neurofibromatosis, von Recklinghausen disease, Watson disease) 1959776 11 8 11 2 2 2 3 0 0 4 0.72 1.00 -11552 PDIA3 protein disulfide isomerase family A, member 3 337316 2 2 2 0 0 1 1 0 0 0 0.72 1.00 -11553 ALDH4A1 aldehyde dehydrogenase 4 family, member A1 351480 3 3 3 0 2 0 1 0 0 0 0.72 1.00 -11554 UBL7 ubiquitin-like 7 (bone marrow stromal cell-derived) 253160 1 1 1 1 0 1 0 0 0 0 0.72 1.00 -11555 SFMBT1 Scm-like with four mbt domains 1 600544 6 4 6 2 4 2 0 0 0 0 0.72 1.00 -11556 ERBB2IP erbb2 interacting protein 942592 7 6 7 1 2 3 2 0 0 0 0.72 1.00 -11557 CUL7 cullin 7 1159728 6 6 6 2 2 3 1 0 0 0 0.72 1.00 -11558 TEKT3 tektin 3 336224 3 3 3 2 2 1 0 0 0 0 0.72 1.00 -11559 CHDH choline dehydrogenase 295572 2 2 2 1 2 0 0 0 0 0 0.72 1.00 -11560 KIAA0494 KIAA0494 343168 1 1 1 1 0 1 0 0 0 0 0.72 1.00 -11561 KANK3 KN motif and ankyrin repeat domains 3 227192 1 1 1 0 0 0 0 0 1 0 0.72 1.00 -11562 RIPK4 receptor-interacting serine-threonine kinase 4 429100 4 4 4 1 4 0 0 0 0 0 0.72 1.00 -11563 BRI3BP BRI3 binding protein 133616 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11564 ACTR8 ARP8 actin-related protein 8 homolog (yeast) 414376 3 2 3 0 2 0 0 0 1 0 0.72 1.00 -11565 ZNF142 zinc finger protein 142 1130696 7 6 7 0 3 3 0 0 1 0 0.72 1.00 -11566 LRRC33 leucine rich repeat containing 33 466648 5 5 5 1 2 3 0 0 0 0 0.72 1.00 -11567 YTHDF3 YTH domain family, member 3 393800 1 1 1 2 0 1 0 0 0 0 0.72 1.00 -11568 AQP5 aquaporin 5 158228 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11569 RTKN2 rhotekin 2 405656 1 1 1 1 0 1 0 0 0 0 0.72 1.00 -11570 ZMYND17 zinc finger, MYND-type containing 17 315168 3 2 3 0 0 1 2 0 0 0 0.72 1.00 -11571 SIGLEC15 sialic acid binding Ig-like lectin 15 118384 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -11572 PTPRH protein tyrosine phosphatase, receptor type, H 760392 5 5 5 2 4 0 1 0 0 0 0.72 1.00 -11573 PHF19 PHD finger protein 19 429548 2 2 2 2 1 0 0 0 1 0 0.72 1.00 -11574 SFXN1 sideroflexin 1 226016 1 1 1 2 1 0 0 0 0 0 0.72 1.00 -11575 MLKL mixed lineage kinase domain-like 333088 2 2 2 1 0 2 0 0 0 0 0.72 1.00 -11576 KBTBD6 kelch repeat and BTB (POZ) domain containing 6 454496 6 4 6 3 4 2 0 0 0 0 0.72 1.00 -11577 VPRBP Vpr (HIV-1) binding protein 986592 6 5 6 0 1 3 2 0 0 0 0.72 1.00 -11578 DPY19L3 dpy-19-like 3 (C. elegans) 497952 3 2 3 2 1 1 1 0 0 0 0.72 1.00 -11579 NT5DC3 5'-nucleotidase domain containing 3 333984 2 2 2 1 1 0 1 0 0 0 0.72 1.00 -11580 CDK1 208768 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11581 VSTM1 V-set and transmembrane domain containing 1 167328 1 1 1 2 0 1 0 0 0 0 0.72 1.00 -11582 SLC6A3 solute carrier family 6 (neurotransmitter transporter, dopamine), member 3 406216 2 2 2 1 1 0 0 0 1 0 0.72 1.00 -11583 SRRM2 serine/arginine repetitive matrix 2 1840332 15 12 15 6 8 4 2 0 1 0 0.72 1.00 -11584 C1orf116 chromosome 1 open reading frame 116 405888 2 2 2 1 1 1 0 0 0 0 0.72 1.00 -11585 USP4 ubiquitin specific peptidase 4 (proto-oncogene) 667268 3 3 3 2 1 2 0 0 0 0 0.72 1.00 -11586 FBXO25 F-box protein 25 256256 1 1 1 0 0 0 0 0 1 0 0.72 1.00 -11587 C6orf106 chromosome 6 open reading frame 106 201328 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -11588 LHX5 LIM homeobox 5 197624 1 1 1 0 0 0 0 0 1 0 0.72 1.00 -11589 CSNK1G1 casein kinase 1, gamma 1 294112 1 1 1 0 0 0 0 0 1 0 0.72 1.00 -11590 CDK9 cyclin-dependent kinase 9 245916 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11591 SYT1 synaptotagmin I 291424 1 1 1 0 0 0 0 0 1 0 0.72 1.00 -11592 L1CAM L1 cell adhesion molecule 845380 4 4 3 1 3 1 0 0 0 0 0.72 1.00 -11593 PCDHGA1 protocadherin gamma subfamily A, 1 640892 8 6 8 10 4 2 2 0 0 0 0.72 1.00 -11594 KIFAP3 kinesin-associated protein 3 550816 2 2 2 0 1 0 1 0 0 0 0.72 1.00 -11595 USP39 ubiquitin specific peptidase 39 372288 2 2 2 0 1 0 1 0 0 0 0.72 1.00 -11596 C9orf131 chromosome 9 open reading frame 131 727552 4 4 4 2 0 3 1 0 0 0 0.72 1.00 -11597 CASQ1 calsequestrin 1 (fast-twitch, skeletal muscle) 274848 2 2 2 3 0 2 0 0 0 0 0.72 1.00 -11598 HECW1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 1072484 9 8 9 8 4 2 2 0 1 0 0.72 1.00 -11599 OXGR1 oxoglutarate (alpha-ketoglutarate) receptor 1 228032 1 1 1 0 0 0 1 0 0 0 0.72 1.00 -11600 ZNF830 zinc finger protein 830 251552 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11601 HSD3B7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 248052 2 2 2 0 1 1 0 0 0 0 0.72 1.00 -11602 PLIN4 860764 5 5 5 2 3 2 0 0 0 0 0.72 1.00 -11603 CD1D CD1d molecule 222328 2 2 2 0 0 2 0 0 0 0 0.72 1.00 -11604 OR2G3 olfactory receptor, family 2, subfamily G, member 3 209216 2 1 2 0 0 2 0 0 0 0 0.72 1.00 -11605 SNPH syntaphilin 251160 1 1 1 3 0 0 1 0 0 0 0.72 1.00 -11606 MMRN1 multimerin 1 832888 11 5 11 1 3 6 1 0 1 0 0.72 1.00 -11607 IL17REL interleukin 17 receptor E-like 147620 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -11608 CCR4 chemokine (C-C motif) receptor 4 243488 1 1 1 1 0 1 0 0 0 0 0.72 1.00 -11609 DNA2 DNA replication helicase 2 homolog (yeast) 745264 6 4 6 2 1 2 2 0 1 0 0.72 1.00 -11610 ARPM1 235312 1 1 1 2 0 0 0 0 1 0 0.72 1.00 -11611 SKP2 S-phase kinase-associated protein 2 (p45) 333984 1 1 1 1 0 1 0 0 0 0 0.72 1.00 -11612 LIN28B lin-28 homolog B (C. elegans) 172256 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -11613 PRSS27 protease, serine 27 154420 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -11614 SPACA1 sperm acrosome associated 1 166684 2 1 2 1 1 1 0 0 0 0 0.73 1.00 -11615 TOR1AIP1 torsin A interacting protein 1 379792 2 2 2 0 1 1 0 0 0 0 0.73 1.00 -11616 C20orf43 chromosome 20 open reading frame 43 214368 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -11617 IFIT2 interferon-induced protein with tetratricopeptide repeats 2 319648 5 2 5 0 1 3 1 0 0 0 0.73 1.00 -11618 ZBTB43 zinc finger and BTB domain containing 43 315056 2 2 2 0 0 2 0 0 0 0 0.73 1.00 -11619 FKBP5 FK506 binding protein 5 318976 2 2 2 0 1 0 1 0 0 0 0.73 1.00 -11620 ZNF92 zinc finger protein 92 398048 2 2 2 1 0 2 0 0 0 0 0.73 1.00 -11621 SSBP3 single stranded DNA binding protein 3 247640 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11622 IPO11 importin 11 693584 4 4 4 1 0 2 2 0 0 0 0.73 1.00 -11623 P4HA3 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide III 332192 2 2 2 1 1 0 0 0 1 0 0.73 1.00 -11624 GPR17 G protein-coupled receptor 17 243208 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11625 KRT36 keratin 36 320096 2 2 2 1 1 0 1 0 0 0 0.73 1.00 -11626 SCAI 427616 3 3 3 1 3 0 0 0 0 0 0.73 1.00 -11627 MMP8 matrix metallopeptidase 8 (neutrophil collagenase) 323456 2 1 2 2 0 1 0 0 1 0 0.73 1.00 -11628 VCX variable charge, X-linked 108136 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -11629 CELA2B 188608 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -11630 ELAVL3 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 3 (Hu antigen C) 253568 2 2 2 2 1 0 1 0 0 0 0.73 1.00 -11631 XRCC6BP1 XRCC6 binding protein 1 166908 2 1 2 0 1 1 0 0 0 0 0.73 1.00 -11632 PPARD peroxisome proliferator-activated receptor delta 304192 2 2 2 2 1 0 1 0 0 0 0.73 1.00 -11633 TMEM59L transmembrane protein 59-like 183008 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11634 PTPLAD1 protein tyrosine phosphatase-like A domain containing 1 239672 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -11635 ZCCHC2 zinc finger, CCHC domain containing 2 570976 3 3 3 1 0 2 1 0 0 0 0.73 1.00 -11636 FOXK2 forkhead box K2 348012 2 2 2 2 1 1 0 0 0 0 0.73 1.00 -11637 SLC39A6 solute carrier family 39 (zinc transporter), member 6 518784 2 2 2 2 1 0 0 0 1 0 0.73 1.00 -11638 ZNF343 zinc finger protein 343 406784 1 1 1 1 0 0 0 0 1 0 0.73 1.00 -11639 FAM9A family with sequence similarity 9, member A 217480 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -11640 NPM1 nucleophosmin (nucleolar phosphoprotein B23, numatrin) 209664 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -11641 TUT1 terminal uridylyl transferase 1, U6 snRNA-specific 578648 3 3 3 0 0 2 1 0 0 0 0.73 1.00 -11642 PPP1R3B protein phosphatase 1, regulatory (inhibitor) subunit 3B 193088 1 1 1 2 1 0 0 0 0 0 0.73 1.00 -11643 HNRNPH1 313152 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -11644 METTL1 methyltransferase like 1 191520 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -11645 KIAA1257 KIAA1257 281792 2 2 2 1 0 0 1 1 0 0 0.73 1.00 -11646 KL klotho 586824 4 3 4 5 0 1 3 0 0 0 0.73 1.00 -11647 TUBB tubulin, beta 282464 1 1 1 2 0 0 0 0 1 0 0.73 1.00 -11648 DKC1 dyskeratosis congenita 1, dyskerin 356664 2 2 2 3 0 1 1 0 0 0 0.73 1.00 -11649 EEF1G eukaryotic translation elongation factor 1 gamma 293504 1 1 1 0 0 0 0 0 1 0 0.73 1.00 -11650 SLC14A2 solute carrier family 14 (urea transporter), member 2 635936 4 4 4 5 2 1 1 0 0 0 0.73 1.00 -11651 ZNF695 zinc finger protein 695 350336 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -11652 TAS2R41 taste receptor, type 2, member 41 207872 2 1 2 1 2 0 0 0 0 0 0.73 1.00 -11653 TRIM52 tripartite motif-containing 52 202048 2 1 2 0 0 1 1 0 0 0 0.73 1.00 -11654 TSGA10IP testis specific, 10 interacting protein 344748 2 2 2 1 1 1 0 0 0 0 0.73 1.00 -11655 FAT1 3104920 23 13 23 10 8 6 5 0 4 0 0.73 1.00 -11656 TESC tescalcin 122176 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11657 RAB3GAP1 RAB3 GTPase activating protein subunit 1 (catalytic) 681408 5 3 5 0 0 2 3 0 0 0 0.73 1.00 -11658 PAX7 paired box 7 364396 2 2 2 5 2 0 0 0 0 0 0.73 1.00 -11659 CC2D2A coiled-coil and C2 domain containing 2A 998608 6 5 5 2 4 1 0 0 1 0 0.73 1.00 -11660 AVEN apoptosis, caspase activation inhibitor 188608 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11661 MMP15 matrix metallopeptidase 15 (membrane-inserted) 379940 4 4 4 0 3 1 0 0 0 0 0.73 1.00 -11662 ESPL1 extra spindle pole bodies homolog 1 (S. cerevisiae) 1434580 8 7 8 4 4 1 1 1 1 0 0.73 1.00 -11663 FARP2 FERM, RhoGEF and pleckstrin domain protein 2 715708 5 5 5 3 4 1 0 0 0 0 0.73 1.00 -11664 EGFL8 EGF-like-domain, multiple 8 158620 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11665 OR13J1 olfactory receptor, family 13, subfamily J, member 1 211232 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -11666 PC pyruvate carboxylase 783588 6 5 6 3 4 2 0 0 0 0 0.73 1.00 -11667 STEAP4 STEAP family member 4 312704 3 2 3 0 2 1 0 0 0 0 0.73 1.00 -11668 ATXN10 ataxin 10 303744 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -11669 FBXO43 F-box protein 43 469448 3 2 3 2 0 2 0 0 1 0 0.73 1.00 -11670 C16orf57 chromosome 16 open reading frame 57 184940 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11671 PPTC7 PTC7 protein phosphatase homolog (S. cerevisiae) 159488 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -11672 HNF1A HNF1 homeobox A 424760 2 2 2 2 0 1 1 0 0 0 0.73 1.00 -11673 NACC1 282776 2 2 2 0 1 0 1 0 0 0 0.73 1.00 -11674 PSEN2 presenilin 2 (Alzheimer disease 4) 309428 2 2 2 2 1 1 0 0 0 0 0.73 1.00 -11675 SETD8 SET domain containing (lysine methyltransferase) 8 212896 2 1 2 1 1 1 0 0 0 0 0.73 1.00 -11676 CD34 CD34 molecule 262164 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -11677 CWH43 478256 3 3 3 1 2 1 0 0 0 0 0.73 1.00 -11678 RQCD1 RCD1 required for cell differentiation1 homolog (S. pombe) 208768 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11679 CDK7 cyclin-dependent kinase 7 243936 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -11680 SPEN spen homolog, transcriptional regulator (Drosophila) 2471528 23 13 23 5 7 8 5 1 2 0 0.73 1.00 -11681 VANGL1 vang-like 1 (van gogh, Drosophila) 359072 2 2 2 0 0 0 2 0 0 0 0.73 1.00 -11682 OR1L3 olfactory receptor, family 1, subfamily L, member 3 219296 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -11683 HS6ST2 heparan sulfate 6-O-sulfotransferase 2 313460 2 2 2 1 1 0 1 0 0 0 0.73 1.00 -11684 PQBP1 polyglutamine binding protein 1 160192 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -11685 CACNG8 calcium channel, voltage-dependent, gamma subunit 8 145020 1 1 1 2 0 1 0 0 0 0 0.73 1.00 -11686 PTPN18 protein tyrosine phosphatase, non-receptor type 18 (brain-derived) 257180 1 1 1 1 1 0 0 0 0 0 0.73 1.00 -11687 NUDT6 nudix (nucleoside diphosphate linked moiety X)-type motif 6 202804 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -11688 SCMH1 sex comb on midleg homolog 1 (Drosophila) 455840 3 3 3 2 2 1 0 0 0 0 0.73 1.00 -11689 MTMR2 myotubularin related protein 2 427392 2 2 2 2 1 0 0 0 1 0 0.73 1.00 -11690 NIN ninein (GSK3B interacting protein) 1458660 10 7 10 3 5 2 1 0 2 0 0.73 1.00 -11691 MAFB v-maf musculoaponeurotic fibrosarcoma oncogene homolog B (avian) 178948 1 1 1 0 0 0 0 0 1 0 0.73 1.00 -11692 KLK1 kallikrein 1 181216 2 1 2 2 0 1 1 0 0 0 0.73 1.00 -11693 FAM161A 449568 4 3 4 2 0 4 0 0 0 0 0.73 1.00 -11694 C7orf46 chromosome 7 open reading frame 46 197640 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -11695 MAPKAP1 mitogen-activated protein kinase associated protein 1 365344 2 2 2 0 1 0 1 0 0 0 0.73 1.00 -11696 CAMK1 calcium/calmodulin-dependent protein kinase I 259168 3 2 3 0 1 2 0 0 0 0 0.73 1.00 -11697 FAM117A family with sequence similarity 117, member A 273616 2 2 2 1 2 0 0 0 0 0 0.73 1.00 -11698 KCNA6 potassium voltage-gated channel, shaker-related subfamily, member 6 352184 3 3 3 2 3 0 0 0 0 0 0.73 1.00 -11699 FAM171A1 583296 5 4 5 5 2 2 1 0 0 0 0.73 1.00 -11700 KLK14 kallikrein-related peptidase 14 161536 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11701 SMPD3 sphingomyelin phosphodiesterase 3, neutral membrane (neutral sphingomyelinase II) 402948 3 3 3 2 0 2 1 0 0 0 0.73 1.00 -11702 MCM7 minichromosome maintenance complex component 7 497112 3 3 3 2 0 2 1 0 0 0 0.73 1.00 -11703 TH1L TH1-like (Drosophila) 392308 2 2 2 1 0 1 1 0 0 0 0.73 1.00 -11704 MED1 mediator complex subunit 1 1078336 6 5 6 1 0 4 2 0 0 0 0.73 1.00 -11705 SERPINB1 serpin peptidase inhibitor, clade B (ovalbumin), member 1 259392 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11706 ZNF436 zinc finger protein 436 319200 1 1 1 2 0 1 0 0 0 0 0.73 1.00 -11707 WHSC1 Wolf-Hirschhorn syndrome candidate 1 947912 7 7 7 3 3 2 2 0 0 0 0.73 1.00 -11708 FOSB FBJ murine osteosarcoma viral oncogene homolog B 221600 2 2 2 0 2 0 0 0 0 0 0.73 1.00 -11709 ACP2 acid phosphatase 2, lysosomal 299864 2 2 2 1 2 0 0 0 0 0 0.73 1.00 -11710 RIPK1 receptor (TNFRSF)-interacting serine-threonine kinase 1 460544 2 2 2 1 1 0 1 0 0 0 0.73 1.00 -11711 SNRNP35 171136 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11712 MAGEB16 melanoma antigen family B, 16 217120 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -11713 TAF6L TAF6-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa 338996 2 2 2 3 1 1 0 0 0 0 0.73 1.00 -11714 TSEN34 tRNA splicing endonuclease 34 homolog (S. cerevisiae) 177064 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -11715 SLC35E4 solute carrier family 35, member E4 165424 1 1 1 2 1 0 0 0 0 0 0.73 1.00 -11716 DCAKD dephospho-CoA kinase domain containing 159488 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11717 STX11 syntaxin 11 181664 2 2 2 2 2 0 0 0 0 0 0.73 1.00 -11718 CLN3 ceroid-lipofuscinosis, neuronal 3, juvenile (Batten, Spielmeyer-Vogt disease) 308448 1 1 1 1 0 0 0 0 1 0 0.73 1.00 -11719 LRRC34 leucine rich repeat containing 34 270144 1 1 1 1 0 0 1 0 0 0 0.73 1.00 -11720 DVL3 dishevelled, dsh homolog 3 (Drosophila) 473236 4 4 4 1 2 2 0 0 0 0 0.73 1.00 -11721 UBA3 ubiquitin-like modifier activating enzyme 3 322700 2 2 2 1 2 0 0 0 0 0 0.73 1.00 -11722 ASS1 argininosuccinate synthetase 1 287980 2 2 2 1 0 1 1 0 0 0 0.73 1.00 -11723 TMEM119 transmembrane protein 119 185848 1 1 1 1 1 0 0 0 0 0 0.73 1.00 -11724 AFAP1L2 actin filament associated protein 1-like 2 537772 2 2 2 1 0 2 0 0 0 0 0.73 1.00 -11725 POLR2E polymerase (RNA) II (DNA directed) polypeptide E, 25kDa 140504 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11726 CD80 CD80 molecule 198688 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -11727 PPP1R7 protein phosphatase 1, regulatory (inhibitor) subunit 7 251552 2 2 2 4 0 0 2 0 0 0 0.73 1.00 -11728 SLC35B4 solute carrier family 35, member B4 221048 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -11729 B3GALTL beta 1,3-galactosyltransferase-like 332192 3 2 3 1 1 0 2 0 0 0 0.73 1.00 -11730 MAOB monoamine oxidase B 363552 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -11731 C22orf31 chromosome 22 open reading frame 31 198240 2 1 2 0 0 1 1 0 0 0 0.73 1.00 -11732 ACTR5 ARP5 actin-related protein 5 homolog (yeast) 352184 2 2 2 0 0 2 0 0 0 0 0.73 1.00 -11733 DNAJC6 DnaJ (Hsp40) homolog, subfamily C, member 6 631232 2 2 2 0 0 1 0 0 1 0 0.73 1.00 -11734 SEC16B SEC16 homolog B (S. cerevisiae) 701936 4 4 4 3 1 0 3 0 0 0 0.73 1.00 -11735 BFSP1 beaded filament structural protein 1, filensin 356800 3 2 3 1 1 1 0 0 1 0 0.73 1.00 -11736 C3orf59 chromosome 3 open reading frame 59 332416 2 2 2 2 1 1 0 0 0 0 0.73 1.00 -11737 YOD1 YOD1 OTU deubiquinating enzyme 1 homolog (S. cerevisiae) 204596 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -11738 OR5L2 olfactory receptor, family 5, subfamily L, member 2 210560 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -11739 DSN1 DSN1, MIND kinetochore complex component, homolog (S. cerevisiae) 248864 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -11740 ALDH1L1 aldehyde dehydrogenase 1 family, member L1 608712 6 5 5 4 4 2 0 0 0 0 0.73 1.00 -11741 LYSMD3 LysM, putative peptidoglycan-binding, domain containing 3 208096 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -11742 LTB4R leukotriene B4 receptor 146272 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -11743 TMPRSS4 transmembrane protease, serine 4 305984 2 2 2 1 1 1 0 0 0 0 0.73 1.00 -11744 ATP2B3 ATPase, Ca++ transporting, plasma membrane 3 806016 4 4 4 5 3 1 0 0 0 0 0.73 1.00 -11745 REC8 REC8 homolog (yeast) 384136 1 1 1 0 0 0 0 0 1 0 0.73 1.00 -11746 TMEM180 transmembrane protein 180 345436 2 2 2 1 1 1 0 0 0 0 0.73 1.00 -11747 RIOK1 RIO kinase 1 (yeast) 370792 2 2 2 0 1 0 1 0 0 0 0.74 1.00 -11748 AMZ2 archaelysin family metallopeptidase 2 247968 1 1 1 1 0 1 0 0 0 0 0.74 1.00 -11749 SPRED3 sprouty-related, EVH1 domain containing 3 135152 1 1 1 0 1 0 0 0 0 0 0.74 1.00 -11750 TTC8 tetratricopeptide repeat domain 8 359436 2 2 2 2 2 0 0 0 0 0 0.74 1.00 -11751 SLC25A11 solute carrier family 25 (mitochondrial carrier; oxoglutarate carrier), member 11 211036 1 1 1 0 1 0 0 0 0 0 0.74 1.00 -11752 HSD11B1 hydroxysteroid (11-beta) dehydrogenase 1 202272 1 1 1 0 1 0 0 0 0 0 0.74 1.00 -11753 TMEM44 transmembrane protein 44 229632 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -11754 SELPLG selectin P ligand 271248 2 2 2 1 2 0 0 0 0 0 0.74 1.00 -11755 PSMB3 proteasome (prosome, macropain) subunit, beta type, 3 143724 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -11756 FAM26E family with sequence similarity 26, member E 210112 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -11757 SMARCC2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 2 863296 3 3 3 1 0 0 1 1 1 0 0.74 1.00 -11758 TXNDC15 thioredoxin domain containing 15 247072 2 2 1 0 2 0 0 0 0 0 0.74 1.00 -11759 PLXNB3 plexin B3 809068 3 3 3 0 1 0 0 1 1 0 0.74 1.00 -11760 RAVER1 ribonucleoprotein, PTB-binding 1 373724 2 2 2 0 1 0 0 0 1 0 0.74 1.00 -11761 CPNE2 copine II 377460 3 3 3 1 2 0 1 0 0 0 0.74 1.00 -11762 NEK8 NIMA (never in mitosis gene a)- related kinase 8 472116 3 3 3 2 3 0 0 0 0 0 0.74 1.00 -11763 TSSC4 tumor suppressing subtransferable candidate 4 178112 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -11764 GPD1 glycerol-3-phosphate dehydrogenase 1 (soluble) 242368 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -11765 PRMT6 protein arginine methyltransferase 6 216076 1 1 1 3 0 0 0 0 1 0 0.74 1.00 -11766 FER1L6 fer-1-like 6 (C. elegans) 1284416 14 8 14 3 7 6 1 0 0 0 0.74 1.00 -11767 ETS1 v-ets erythroblastosis virus E26 oncogene homolog 1 (avian) 353920 1 1 1 2 0 0 1 0 0 0 0.74 1.00 -11768 SEC23B Sec23 homolog B (S. cerevisiae) 533120 3 3 3 2 2 1 0 0 0 0 0.74 1.00 -11769 NR3C1 nuclear receptor subfamily 3, group C, member 1 (glucocorticoid receptor) 536592 4 3 4 6 0 2 1 0 1 0 0.74 1.00 -11770 RFX2 regulatory factor X, 2 (influences HLA class II expression) 412276 3 3 3 1 1 1 0 0 1 0 0.74 1.00 -11771 SYF2 SYF2 homolog, RNA splicing factor (S. cerevisiae) 170240 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -11772 SYT17 synaptotagmin XVII 323784 2 2 2 1 1 1 0 0 0 0 0.74 1.00 -11773 FBXO34 F-box protein 34 479360 3 3 3 1 2 1 0 0 0 0 0.74 1.00 -11774 GALNT7 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 7 (GalNAc-T7) 452928 3 2 3 2 2 0 0 0 1 0 0.74 1.00 -11775 LAT linker for activation of T cells 187936 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -11776 ZNF251 zinc finger protein 251 455168 4 3 4 1 1 2 0 0 1 0 0.74 1.00 -11777 TSC22D3 TSC22 domain family, member 3 164488 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -11778 NTF3 neurotrophin 3 183820 1 1 1 2 0 1 0 0 0 0 0.74 1.00 -11779 ZDHHC1 zinc finger, DHHC-type containing 1 250872 2 2 2 0 2 0 0 0 0 0 0.74 1.00 -11780 ASPH aspartate beta-hydroxylase 673344 3 3 3 2 1 0 1 0 1 0 0.74 1.00 -11781 C10orf119 chromosome 10 open reading frame 119 432544 3 2 3 1 1 1 0 0 1 0 0.74 1.00 -11782 HIVEP3 human immunodeficiency virus type I enhancer binding protein 3 1531436 9 9 9 3 5 2 2 0 0 0 0.74 1.00 -11783 MECR mitochondrial trans-2-enoyl-CoA reductase 247956 1 1 1 2 0 0 1 0 0 0 0.74 1.00 -11784 SMOC1 SPARC related modular calcium binding 1 293272 2 2 2 0 1 1 0 0 0 0 0.74 1.00 -11785 KIR2DL3 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 3 225840 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -11786 CREB3L1 cAMP responsive element binding protein 3-like 1 297596 3 2 3 1 1 2 0 0 0 0 0.74 1.00 -11787 NPTX1 neuronal pentraxin I 225680 1 1 1 1 0 1 0 0 0 0 0.74 1.00 -11788 AKD1 712544 4 3 4 1 1 1 1 0 1 0 0.74 1.00 -11789 GDF10 growth differentiation factor 10 214172 2 2 2 2 2 0 0 0 0 0 0.74 1.00 -11790 OLFML3 olfactomedin-like 3 276192 3 2 3 0 2 1 0 0 0 0 0.74 1.00 -11791 IDUA iduronidase, alpha-L- 220780 1 1 1 0 0 0 0 0 1 0 0.74 1.00 -11792 HOXB2 homeobox B2 204820 1 1 1 1 0 0 0 0 1 0 0.74 1.00 -11793 GRTP1 growth hormone regulated TBC protein 1 212716 1 1 1 0 0 0 0 0 1 0 0.74 1.00 -11794 EIF2A eukaryotic translation initiation factor 2A, 65kDa 350576 2 2 2 2 0 2 0 0 0 0 0.74 1.00 -11795 RTN4IP1 reticulon 4 interacting protein 1 274848 1 1 1 1 0 1 0 0 0 0 0.74 1.00 -11796 LBP lipopolysaccharide binding protein 337344 1 1 1 1 0 1 0 0 0 0 0.74 1.00 -11797 FLT4 fms-related tyrosine kinase 4 748356 5 5 5 0 1 2 1 0 1 0 0.74 1.00 -11798 FAM71E1 family with sequence similarity 71, member E1 148248 1 1 1 0 1 0 0 0 0 0 0.74 1.00 -11799 COG1 component of oligomeric golgi complex 1 640976 4 4 4 3 1 2 1 0 0 0 0.74 1.00 -11800 LRRC46 leucine rich repeat containing 46 223552 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -11801 SLC38A8 solute carrier family 38, member 8 301952 2 2 2 1 0 2 0 0 0 0 0.74 1.00 -11802 SPATA6 spermatogenesis associated 6 340256 3 2 3 3 2 1 0 0 0 0 0.74 1.00 -11803 AHNAK AHNAK nucleoprotein 3973900 28 15 28 14 5 16 4 0 3 0 0.74 1.00 -11804 FMNL3 formin-like 3 710376 6 5 6 0 3 2 1 0 0 0 0.74 1.00 -11805 RIN3 Ras and Rab interactor 3 579544 5 5 4 2 3 2 0 0 0 0 0.74 1.00 -11806 ARHGEF37 465024 5 3 5 0 3 1 1 0 0 0 0.74 1.00 -11807 SLC25A46 solute carrier family 25, member 46 227676 2 1 2 0 0 1 1 0 0 0 0.74 1.00 -11808 C14orf159 chromosome 14 open reading frame 159 428736 3 3 3 2 0 3 0 0 0 0 0.74 1.00 -11809 FCER2 Fc fragment of IgE, low affinity II, receptor for (CD23) 221732 1 1 1 0 0 0 0 1 0 0 0.74 1.00 -11810 VPS26A vacuolar protein sorting 26 homolog A (S. pombe) 227528 1 1 1 2 0 1 0 0 0 0 0.74 1.00 -11811 APOBEC3F apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3F 277856 2 2 2 1 1 1 0 0 0 0 0.74 1.00 -11812 ASB15 ankyrin repeat and SOCS box-containing 15 403872 3 2 3 0 1 2 0 0 0 0 0.74 1.00 -11813 KCNK16 potassium channel, subfamily K, member 16 218176 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -11814 ST13 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) 253932 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -11815 UBR7 274912 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -11816 LRP11 low density lipoprotein receptor-related protein 11 206836 1 1 1 0 1 0 0 0 0 0 0.74 1.00 -11817 INSR insulin receptor 922800 6 6 6 6 2 2 1 0 1 0 0.74 1.00 -11818 PPIE peptidylprolyl isomerase E (cyclophilin E) 224896 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -11819 NMT1 N-myristoyltransferase 1 344736 1 1 1 0 0 0 0 0 1 0 0.74 1.00 -11820 OR2A2 olfactory receptor, family 2, subfamily A, member 2 214508 2 1 2 0 0 2 0 0 0 0 0.74 1.00 -11821 MYH1 myosin, heavy chain 1, skeletal muscle, adult 1337728 16 7 16 5 3 8 3 0 0 2 0.74 1.00 -11822 TIGD2 tigger transposable element derived 2 354284 1 1 1 0 0 0 0 0 1 0 0.74 1.00 -11823 ATP8A1 ATPase, aminophospholipid transporter (APLT), class I, type 8A, member 1 821632 9 5 9 3 6 1 2 0 0 0 0.74 1.00 -11824 BMP8A bone morphogenetic protein 8a 151940 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -11825 NEDD4 neural precursor cell expressed, developmentally down-regulated 4 933000 10 6 10 2 4 5 0 0 1 0 0.74 1.00 -11826 GNAT1 guanine nucleotide binding protein (G protein), alpha transducing activity polypeptide 1 232120 2 2 2 1 0 0 2 0 0 0 0.74 1.00 -11827 WDR65 WD repeat domain 65 478688 3 3 3 1 1 2 0 0 0 0 0.74 1.00 -11828 CPEB4 cytoplasmic polyadenylation element binding protein 4 499520 4 3 4 0 3 0 1 0 0 0 0.74 1.00 -11829 ERI1 219816 1 1 1 0 0 0 1 0 0 0 0.74 1.00 -11830 COQ7 coenzyme Q7 homolog, ubiquinone (yeast) 148176 1 1 1 0 1 0 0 0 0 0 0.74 1.00 -11831 C14orf21 chromosome 14 open reading frame 21 422240 2 2 2 1 1 0 0 0 1 0 0.74 1.00 -11832 TK2 thymidine kinase 2, mitochondrial 160860 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -11833 OGDH oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide) 725312 4 4 4 3 1 1 2 0 0 0 0.74 1.00 -11834 CAND2 cullin-associated and neddylation-dissociated 2 (putative) 690364 6 6 6 4 5 1 0 0 0 0 0.74 1.00 -11835 KCTD14 potassium channel tetramerisation domain containing 14 165928 1 1 1 0 1 0 0 0 0 0 0.74 1.00 -11836 NPC1 Niemann-Pick disease, type C1 868224 7 6 6 3 3 2 2 0 0 0 0.74 1.00 -11837 SURF4 surfeit 4 175168 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -11838 PARVA parvin, alpha 258904 1 1 1 1 0 0 1 0 0 0 0.74 1.00 -11839 SLC25A45 solute carrier family 25, member 45 199584 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -11840 PALLD palladin, cytoskeletal associated protein 755972 5 4 5 1 2 1 2 0 0 0 0.74 1.00 -11841 DDX5 DEAD (Asp-Glu-Ala-Asp) box polypeptide 5 424928 2 2 2 0 1 0 1 0 0 0 0.74 1.00 -11842 SLC25A4 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 4 184032 1 1 1 2 0 0 1 0 0 0 0.74 1.00 -11843 PKM2 pyruvate kinase, muscle 404516 2 2 2 2 0 1 0 0 1 0 0.74 1.00 -11844 TRIM7 tripartite motif-containing 7 241136 2 2 2 1 0 1 1 0 0 0 0.74 1.00 -11845 AFF4 AF4/FMR2 family, member 4 800128 5 4 5 2 1 2 2 0 0 0 0.74 1.00 -11846 FAM160B1 519008 3 3 3 2 1 2 0 0 0 0 0.74 1.00 -11847 YTHDF1 YTH domain family, member 1 373352 2 2 2 3 1 1 0 0 0 0 0.74 1.00 -11848 EHD2 EH-domain containing 2 318104 5 4 5 2 2 3 0 0 0 0 0.74 1.00 -11849 AARS2 alanyl-tRNA synthetase 2, mitochondrial (putative) 666344 6 5 6 1 1 3 2 0 0 0 0.74 1.00 -11850 TRIM46 tripartite motif-containing 46 510588 4 3 4 0 1 2 0 0 1 0 0.74 1.00 -11851 DBNL drebrin-like 256900 1 1 1 2 0 0 1 0 0 0 0.75 1.00 -11852 HOXC4 homeobox C4 171304 2 2 2 3 1 1 0 0 0 0 0.75 1.00 -11853 ZNF655 zinc finger protein 655 451360 2 2 2 1 0 1 0 0 1 0 0.75 1.00 -11854 RAD54L RAD54-like (S. cerevisiae) 518784 3 3 3 2 1 0 2 0 0 0 0.75 1.00 -11855 MKRN2 makorin, ring finger protein, 2 283312 2 2 2 1 1 1 0 0 0 0 0.75 1.00 -11856 HLTF helicase-like transcription factor 701120 8 4 8 2 3 3 2 0 0 0 0.75 1.00 -11857 HDAC4 histone deacetylase 4 699036 5 4 5 2 0 2 2 0 1 0 0.75 1.00 -11858 CPB2 carboxypeptidase B2 (plasma) 294784 2 2 2 1 1 1 0 0 0 0 0.75 1.00 -11859 PSKH1 protein serine kinase H1 287392 1 1 1 0 0 0 0 0 1 0 0.75 1.00 -11860 TPST1 tyrosylprotein sulfotransferase 1 252896 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -11861 ABCC9 ATP-binding cassette, sub-family C (CFTR/MRP), member 9 1107456 11 6 11 4 6 2 2 0 1 0 0.75 1.00 -11862 NAP1L4 nucleosome assembly protein 1-like 4 265216 1 1 1 0 0 0 0 0 1 0 0.75 1.00 -11863 INHBE inhibin, beta E 237664 1 1 1 1 1 0 0 0 0 0 0.75 1.00 -11864 PSMB11 proteasome (prosome, macropain) subunit, beta type, 11 203168 1 1 1 1 1 0 0 0 0 0 0.75 1.00 -11865 AARSD1 alanyl-tRNA synthetase domain containing 1 370048 2 2 2 0 1 0 1 0 0 0 0.75 1.00 -11866 RUNDC3A RUN domain containing 3A 190064 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -11867 SHMT2 serine hydroxymethyltransferase 2 (mitochondrial) 350112 2 2 2 2 2 0 0 0 0 0 0.75 1.00 -11868 SPINT2 serine peptidase inhibitor, Kunitz type, 2 151648 1 1 1 1 0 1 0 0 0 0 0.75 1.00 -11869 GRIP2 glutamate receptor interacting protein 2 697032 4 4 4 0 2 1 0 0 1 0 0.75 1.00 -11870 HOXB5 homeobox B5 160888 1 1 1 1 0 0 1 0 0 0 0.75 1.00 -11871 HCRTR1 hypocretin (orexin) receptor 1 284564 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -11872 SUN2 453880 2 2 2 2 1 0 0 0 1 0 0.75 1.00 -11873 MYH2 myosin, heavy chain 2, skeletal muscle, adult 1339072 12 7 12 4 4 5 2 0 1 0 0.75 1.00 -11874 LIPG lipase, endothelial 345632 2 2 2 1 1 1 0 0 0 0 0.75 1.00 -11875 SEPN1 selenoprotein N, 1 339516 2 2 2 0 0 2 0 0 0 0 0.75 1.00 -11876 ATP6V1A ATPase, H+ transporting, lysosomal 70kDa, V1 subunit A 427840 2 2 2 1 1 1 0 0 0 0 0.75 1.00 -11877 PPP1R3D protein phosphatase 1, regulatory (inhibitor) subunit 3D 97804 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -11878 FNIP1 folliculin interacting protein 1 791028 4 4 4 0 2 1 1 0 0 0 0.75 1.00 -11879 TMOD4 tropomodulin 4 (muscle) 240576 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -11880 CCNB3 cyclin B3 947968 7 5 7 2 0 5 2 0 0 0 0.75 1.00 -11881 TMEM11 transmembrane protein 11 130648 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -11882 MBD3 methyl-CpG binding domain protein 3 198660 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -11883 CCDC149 coiled-coil domain containing 149 189504 1 1 1 1 1 0 0 0 0 0 0.75 1.00 -11884 PDZK1 PDZ domain containing 1 266720 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -11885 NHLRC1 NHL repeat containing 1 233044 2 2 2 1 1 1 0 0 0 0 0.75 1.00 -11886 PRKCD protein kinase C, delta 469360 3 3 3 0 0 1 2 0 0 0 0.75 1.00 -11887 DDX20 DEAD (Asp-Glu-Ala-Asp) box polypeptide 20 529844 4 4 4 2 2 1 1 0 0 0 0.75 1.00 -11888 COX15 COX15 homolog, cytochrome c oxidase assembly protein (yeast) 296576 3 2 2 1 1 2 0 0 0 0 0.75 1.00 -11889 PRRG3 proline rich Gla (G-carboxyglutamic acid) 3 (transmembrane) 158592 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -11890 BEND3 491148 5 5 5 2 5 0 0 0 0 0 0.75 1.00 -11891 GPATCH3 G patch domain containing 3 358736 2 2 2 0 0 1 0 0 1 0 0.75 1.00 -11892 NIPSNAP3A nipsnap homolog 3A (C. elegans) 172032 2 1 2 1 1 1 0 0 0 0 0.75 1.00 -11893 HEG1 HEG homolog 1 (zebrafish) 842744 6 5 6 1 2 1 3 0 0 0 0.75 1.00 -11894 CELF2 375424 2 2 2 0 1 0 1 0 0 0 0.75 1.00 -11895 TTYH3 tweety homolog 3 (Drosophila) 230264 2 2 2 1 1 1 0 0 0 0 0.75 1.00 -11896 SDCBP syndecan binding protein (syntenin) 208096 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -11897 NXN nucleoredoxin 229096 2 2 2 2 0 1 1 0 0 0 0.75 1.00 -11898 GTPBP4 GTP binding protein 4 441952 3 3 3 0 2 1 0 0 0 0 0.75 1.00 -11899 GALE UDP-galactose-4-epimerase 243488 1 1 1 2 0 0 1 0 0 0 0.75 1.00 -11900 PRKAB2 protein kinase, AMP-activated, beta 2 non-catalytic subunit 186844 1 1 1 1 0 1 0 0 0 0 0.75 1.00 -11901 CLNK 303328 3 2 3 2 1 2 0 0 0 0 0.75 1.00 -11902 TTLL1 tubulin tyrosine ligase-like family, member 1 292992 2 2 2 3 2 0 0 0 0 0 0.75 1.00 -11903 DDX54 DEAD (Asp-Glu-Ala-Asp) box polypeptide 54 562716 5 4 5 3 3 1 0 0 1 0 0.75 1.00 -11904 TMEM184A transmembrane protein 184A 227864 1 1 1 0 0 0 0 0 1 0 0.75 1.00 -11905 NR1H4 nuclear receptor subfamily 1, group H, member 4 325920 2 2 2 2 1 0 0 1 0 0 0.75 1.00 -11906 PPP2R2D protein phosphatase 2, regulatory subunit B, delta isoform 284648 2 2 2 2 2 0 0 0 0 0 0.75 1.00 -11907 PBK PDZ binding kinase 223328 2 1 2 0 1 0 1 0 0 0 0.75 1.00 -11908 ACSL1 acyl-CoA synthetase long-chain family member 1 487648 4 3 4 2 1 2 1 0 0 0 0.75 1.00 -11909 MAGEB10 melanoma antigen family B, 10 231728 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -11910 PRR14 proline rich 14 361816 1 1 1 2 0 0 0 0 1 0 0.75 1.00 -11911 ZNF169 zinc finger protein 169 409472 3 2 3 1 2 1 0 0 0 0 0.75 1.00 -11912 ANGPTL7 angiopoietin-like 7 237664 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -11913 PABPC1L poly(A) binding protein, cytoplasmic 1-like 405832 3 3 3 0 1 0 2 0 0 0 0.75 1.00 -11914 FKBP10 FK506 binding protein 10, 65 kDa 378948 2 2 2 0 0 1 0 0 1 0 0.75 1.00 -11915 LRWD1 leucine-rich repeats and WD repeat domain containing 1 378184 2 2 2 1 2 0 0 0 0 0 0.75 1.00 -11916 STAM signal transducing adaptor molecule (SH3 domain and ITAM motif) 1 376096 2 2 2 0 0 2 0 0 0 0 0.75 1.00 -11917 HLA-DOA major histocompatibility complex, class II, DO alpha 119980 1 1 1 1 0 1 0 0 0 0 0.75 1.00 -11918 MPPE1 metallophosphoesterase 1 249732 1 1 1 1 0 0 1 0 0 0 0.75 1.00 -11919 DHRS12 dehydrogenase/reductase (SDR family) member 12 188876 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -11920 LILRA6 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6 312504 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -11921 KRTAP10-11 keratin associated protein 10-11 201824 1 1 1 0 0 0 1 0 0 0 0.75 1.00 -11922 FOXJ2 forkhead box J2 395360 2 2 2 0 0 2 0 0 0 0 0.75 1.00 -11923 GZF1 GDNF-inducible zinc finger protein 1 470764 3 3 3 1 2 1 0 0 0 0 0.75 1.00 -11924 WNT1 wingless-type MMTV integration site family, member 1 190740 1 1 1 0 0 0 0 0 1 0 0.75 1.00 -11925 AKNAD1 575904 3 2 3 0 1 0 1 0 1 0 0.75 1.00 -11926 TRIM67 tripartite motif-containing 67 343300 3 2 3 3 1 2 0 0 0 0 0.75 1.00 -11927 CBLN1 cerebellin 1 precursor 124404 1 1 1 1 1 0 0 0 0 0 0.75 1.00 -11928 DDB1 damage-specific DNA binding protein 1, 127kDa 780872 5 5 5 2 3 0 2 0 0 0 0.75 1.00 -11929 NDRG1 N-myc downstream regulated gene 1 236184 1 1 1 1 0 1 0 0 0 0 0.75 1.00 -11930 LRP10 low density lipoprotein receptor-related protein 10 484148 5 4 5 1 2 3 0 0 0 0 0.75 1.00 -11931 IL23R interleukin 23 receptor 432184 3 2 3 0 1 0 2 0 0 0 0.75 1.00 -11932 OR9A2 olfactory receptor, family 9, subfamily A, member 2 209888 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -11933 TBX20 T-box 20 307272 1 1 1 1 1 0 0 0 0 0 0.75 1.00 -11934 FTSJD1 519008 3 2 3 3 0 2 1 0 0 0 0.75 1.00 -11935 CD99L2 CD99 molecule-like 2 170688 1 1 1 1 1 0 0 0 0 0 0.75 1.00 -11936 IFT122 intraflagellar transport 122 homolog (Chlamydomonas) 891224 6 5 6 4 3 1 2 0 0 0 0.75 1.00 -11937 ZNF642 zinc finger protein 642 358624 2 2 2 0 1 0 1 0 0 0 0.75 1.00 -11938 SMYD2 SET and MYND domain containing 2 284592 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -11939 CEBPE CCAAT/enhancer binding protein (C/EBP), epsilon 183820 1 1 1 1 1 0 0 0 0 0 0.75 1.00 -11940 CXorf57 chromosome X open reading frame 57 587776 4 3 4 3 2 0 2 0 0 0 0.75 1.00 -11941 CAPN10 calpain 10 420236 3 2 3 1 1 1 0 0 1 0 0.75 1.00 -11942 TOMM40L translocase of outer mitochondrial membrane 40 homolog (yeast)-like 215712 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -11943 POLK polymerase (DNA directed) kappa 597856 3 3 3 2 1 2 0 0 0 0 0.75 1.00 -11944 DENND4C DENN/MADD domain containing 4C 1150016 5 5 4 2 2 1 1 1 0 0 0.75 1.00 -11945 CDK5RAP3 CDK5 regulatory subunit associated protein 3 351888 2 2 2 0 0 1 0 0 1 0 0.75 1.00 -11946 DLL4 delta-like 4 (Drosophila) 439348 2 2 2 0 1 0 0 0 1 0 0.75 1.00 -11947 SKIV2L superkiller viralicidic activity 2-like (S. cerevisiae) 633248 3 3 3 1 0 1 2 0 0 0 0.75 1.00 -11948 KLRG2 killer cell lectin-like receptor subfamily G, member 2 155188 1 1 1 1 0 0 1 0 0 0 0.75 1.00 -11949 DHPS deoxyhypusine synthase 256704 1 1 1 2 0 1 0 0 0 0 0.75 1.00 -11950 SLC4A10 solute carrier family 4, sodium bicarbonate transporter-like, member 10 747784 5 4 5 3 3 2 0 0 0 0 0.75 1.00 -11951 B3GNT5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 255584 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -11952 FAM83G family with sequence similarity 83, member G 454888 2 2 2 1 0 1 0 0 1 0 0.75 1.00 -11953 LZTR1 leucine-zipper-like transcription regulator 1 503056 5 4 5 1 3 2 0 0 0 0 0.75 1.00 -11954 SYT12 synaptotagmin XII 276584 2 2 2 0 1 1 0 0 0 0 0.75 1.00 -11955 BPHL biphenyl hydrolase-like (serine hydrolase; breast epithelial mucin-associated antigen) 177632 1 1 1 1 0 1 0 0 0 0 0.75 1.00 -11956 RAB33B RAB33B, member RAS oncogene family 156352 1 1 1 1 0 1 0 0 0 0 0.76 1.00 -11957 N4BP2 NEDD4 binding protein 2 1204448 7 6 7 0 1 5 1 0 0 0 0.76 1.00 -11958 AFMID arylformamidase 210296 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -11959 ZNF507 zinc finger protein 507 645568 3 3 3 1 2 1 0 0 0 0 0.76 1.00 -11960 CAMK2G calcium/calmodulin-dependent protein kinase (CaM kinase) II gamma 372808 2 2 2 1 1 0 1 0 0 0 0.76 1.00 -11961 USH1C Usher syndrome 1C (autosomal recessive, severe) 637956 8 4 8 1 3 3 1 0 1 0 0.76 1.00 -11962 ING2 inhibitor of growth family, member 2 170984 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -11963 CYP2W1 cytochrome P450, family 2, subfamily W, polypeptide 1 147100 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -11964 LENG8 leukocyte receptor cluster (LRC) member 8 507328 5 5 5 1 4 1 0 0 0 0 0.76 1.00 -11965 BCL2 B-cell CLL/lymphoma 2 149212 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -11966 PSMC6 proteasome (prosome, macropain) 26S subunit, ATPase, 6 276864 2 1 2 2 0 1 0 0 1 0 0.76 1.00 -11967 USP9X ubiquitin specific peptidase 9, X-linked 1767136 10 7 10 5 1 3 3 0 3 0 0.76 1.00 -11968 TRPM1 transient receptor potential cation channel, subfamily M, member 1 1101184 10 6 10 5 4 2 2 0 0 2 0.76 1.00 -11969 HPSE heparanase 349056 2 2 2 0 1 1 0 0 0 0 0.76 1.00 -11970 GINS3 GINS complex subunit 3 (Psf3 homolog) 148512 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -11971 HOXC5 homeobox C5 130900 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -11972 GPR109A G protein-coupled receptor 109A 245504 2 2 2 0 1 1 0 0 0 0 0.76 1.00 -11973 VDAC1 voltage-dependent anion channel 1 198016 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -11974 NADK NAD kinase 303436 2 2 2 0 1 1 0 0 0 0 0.76 1.00 -11975 OR4K13 olfactory receptor, family 4, subfamily K, member 13 205856 2 1 2 0 1 1 0 0 0 0 0.76 1.00 -11976 PHACTR2 phosphatase and actin regulator 2 441272 2 2 2 4 1 0 1 0 0 0 0.76 1.00 -11977 GLB1 galactosidase, beta 1 469952 3 3 3 1 3 0 0 0 0 0 0.76 1.00 -11978 PGAM2 phosphoglycerate mutase 2 (muscle) 173376 1 1 1 1 1 0 0 0 0 0 0.76 1.00 -11979 COPS7A COP9 constitutive photomorphogenic homolog subunit 7A (Arabidopsis) 191744 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -11980 KIF2A kinesin heavy chain member 2A 492392 3 3 3 0 2 1 0 0 0 0 0.76 1.00 -11981 AGAP3 565236 3 3 3 0 1 0 1 0 1 0 0.76 1.00 -11982 CDHR1 562364 3 3 3 0 0 3 0 0 0 0 0.76 1.00 -11983 AKAP11 A kinase (PRKA) anchor protein 11 1282792 7 6 7 3 2 3 2 0 0 0 0.76 1.00 -11984 PABPC1 poly(A) binding protein, cytoplasmic 1 434308 3 3 3 1 1 0 2 0 0 0 0.76 1.00 -11985 FOXA2 forkhead box A2 235872 1 1 1 0 0 0 1 0 0 0 0.76 1.00 -11986 LPO lactoperoxidase 475776 3 3 3 1 3 0 0 0 0 0 0.76 1.00 -11987 HSDL2 hydroxysteroid dehydrogenase like 2 287160 1 1 1 1 0 0 1 0 0 0 0.76 1.00 -11988 CCDC57 coiled-coil domain containing 57 567256 2 2 2 0 1 0 0 0 1 0 0.76 1.00 -11989 BTNL3 butyrophilin-like 3 211784 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -11990 ANKRD42 ankyrin repeat domain 42 271040 1 1 1 1 0 0 1 0 0 0 0.76 1.00 -11991 RG9MTD3 RNA (guanine-9-) methyltransferase domain containing 3 220056 1 1 1 1 0 1 0 0 0 0 0.76 1.00 -11992 PAX9 paired box 9 210204 1 1 1 0 0 0 1 0 0 0 0.76 1.00 -11993 C14orf179 chromosome 14 open reading frame 179 170688 1 1 1 2 1 0 0 0 0 0 0.76 1.00 -11994 SGCA sarcoglycan, alpha (50kDa dystrophin-associated glycoprotein) 246580 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -11995 KCNF1 potassium voltage-gated channel, subfamily F, member 1 291704 2 2 2 0 1 0 1 0 0 0 0.76 1.00 -11996 ZNF566 zinc finger protein 566 285824 1 1 1 1 0 1 0 0 0 0 0.76 1.00 -11997 STAT6 signal transducer and activator of transcription 6, interleukin-4 induced 588672 2 2 2 0 0 1 0 0 1 0 0.76 1.00 -11998 KDM4A 734496 4 4 4 2 2 2 0 0 0 0 0.76 1.00 -11999 TIE1 tyrosine kinase with immunoglobulin-like and EGF-like domains 1 736928 5 5 5 2 3 1 0 0 1 0 0.76 1.00 -12000 C1orf174 chromosome 1 open reading frame 174 165956 1 1 1 4 0 1 0 0 0 0 0.76 1.00 -12001 NKX2-5 NK2 transcription factor related, locus 5 (Drosophila) 142072 1 1 1 1 0 0 1 0 0 0 0.76 1.00 -12002 ZW10 ZW10, kinetochore associated, homolog (Drosophila) 538496 2 2 2 1 0 1 1 0 0 0 0.76 1.00 -12003 FAM55A family with sequence similarity 55, member A 276416 1 1 1 1 0 0 1 0 0 0 0.76 1.00 -12004 MTAP methylthioadenosine phosphorylase 192984 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -12005 RABGGTA Rab geranylgeranyltransferase, alpha subunit 391680 2 2 2 0 1 1 0 0 0 0 0.76 1.00 -12006 CD3EAP CD3e molecule, epsilon associated protein 332716 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -12007 CUL4A cullin 4A 467712 2 2 2 3 0 1 0 0 1 0 0.76 1.00 -12008 ZBTB3 zinc finger and BTB domain containing 3 388192 2 2 2 0 0 2 0 0 0 0 0.76 1.00 -12009 TOLLIP toll interacting protein 173856 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -12010 ZNF594 zinc finger protein 594 541772 3 3 3 0 0 3 0 0 0 0 0.76 1.00 -12011 CTSW cathepsin W 262304 1 1 1 1 0 1 0 0 0 0 0.76 1.00 -12012 STK39 serine threonine kinase 39 (STE20/SPS1 homolog, yeast) 342692 3 2 3 2 1 1 1 0 0 0 0.76 1.00 -12013 C9orf119 chromosome 9 open reading frame 119 160636 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -12014 C6orf27 chromosome 6 open reading frame 27 405412 2 2 2 1 0 1 1 0 0 0 0.76 1.00 -12015 ZNF774 zinc finger protein 774 327936 3 2 2 1 2 1 0 0 0 0 0.76 1.00 -12016 ZBTB34 zinc finger and BTB domain containing 34 333956 2 2 2 0 0 1 1 0 0 0 0.76 1.00 -12017 FCGR2C Fc fragment of IgG, low affinity IIc, receptor for (CD32) 171784 1 1 1 3 1 0 0 0 0 0 0.76 1.00 -12018 ZNF688 zinc finger protein 688 169832 1 1 1 1 0 1 0 0 0 0 0.76 1.00 -12019 HSP90B1 heat shock protein 90kDa beta (Grp94), member 1 556416 5 3 5 2 0 2 2 0 1 0 0.76 1.00 -12020 PION 577024 2 2 2 2 1 0 1 0 0 0 0.76 1.00 -12021 B3GNT4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 251440 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -12022 NGDN neuroguidin, EIF4E binding protein 224000 1 1 1 1 1 0 0 0 0 0 0.76 1.00 -12023 OR10AD1 olfactory receptor, family 10, subfamily AD, member 1 214592 1 1 1 1 0 1 0 0 0 0 0.76 1.00 -12024 CACNB3 calcium channel, voltage-dependent, beta 3 subunit 332864 2 2 2 2 2 0 0 0 0 0 0.76 1.00 -12025 CABLES1 Cdk5 and Abl enzyme substrate 1 298928 1 1 1 0 0 0 0 0 1 0 0.76 1.00 -12026 SLC2A8 solute carrier family 2, (facilitated glucose transporter) member 8 207872 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -12027 CPM carboxypeptidase M 305536 1 1 1 0 0 0 1 0 0 0 0.76 1.00 -12028 TSKU tsukushin 205268 1 1 1 3 0 0 1 0 0 0 0.76 1.00 -12029 DHCR24 24-dehydrocholesterol reductase 353444 2 2 2 0 0 2 0 0 0 0 0.76 1.00 -12030 FLRT1 fibronectin leucine rich transmembrane protein 1 450128 4 4 4 2 3 1 0 0 0 0 0.76 1.00 -12031 CCS copper chaperone for superoxide dismutase 186120 1 1 1 2 0 0 1 0 0 0 0.76 1.00 -12032 OR1N1 olfactory receptor, family 1, subfamily N, member 1 210560 1 1 1 2 0 1 0 0 0 0 0.76 1.00 -12033 TSHZ1 teashirt zinc finger homeobox 1 680272 7 5 6 4 2 3 1 0 1 0 0.76 1.00 -12034 HEATR7B2 1072272 10 6 10 3 3 5 2 0 0 0 0.76 1.00 -12035 CCDC105 coiled-coil domain containing 105 247268 2 2 2 1 0 2 0 0 0 0 0.76 1.00 -12036 POLM polymerase (DNA directed), mu 311120 2 2 2 0 1 1 0 0 0 0 0.76 1.00 -12037 PFKFB4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 328384 2 2 2 0 0 1 1 0 0 0 0.76 1.00 -12038 ANKRD52 ankyrin repeat domain 52 733196 6 4 6 2 2 1 2 0 1 0 0.76 1.00 -12039 KLK11 kallikrein-related peptidase 11 198688 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -12040 GUSB glucuronidase, beta 425460 2 2 2 2 1 0 0 0 1 0 0.76 1.00 -12041 ZIC1 Zic family member 1 (odd-paired homolog, Drosophila) 264432 6 4 6 3 3 3 0 0 0 0 0.76 1.00 -12042 GNB1 guanine nucleotide binding protein (G protein), beta polypeptide 1 237216 1 1 1 2 0 0 1 0 0 0 0.76 1.00 -12043 MTRF1L mitochondrial translational release factor 1-like 234948 1 1 1 1 0 1 0 0 0 0 0.76 1.00 -12044 TRIM3 tripartite motif-containing 3 483532 4 4 4 2 2 1 0 1 0 0 0.76 1.00 -12045 IL1B interleukin 1, beta 186816 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -12046 TRIP6 thyroid hormone receptor interactor 6 271628 1 1 1 1 1 0 0 0 0 0 0.76 1.00 -12047 TMEM146 transmembrane protein 146 555296 3 3 3 6 0 1 2 0 0 0 0.76 1.00 -12048 KBTBD7 kelch repeat and BTB (POZ) domain containing 7 461216 4 3 4 0 2 2 0 0 0 0 0.76 1.00 -12049 NOMO1 NODAL modulator 1 751732 4 4 4 2 1 2 1 0 0 0 0.76 1.00 -12050 TBR1 T-box, brain, 1 362508 3 3 3 2 1 1 1 0 0 0 0.76 1.00 -12051 C15orf27 chromosome 15 open reading frame 27 323856 1 1 1 0 0 0 0 0 1 0 0.76 1.00 -12052 LETM1 leucine zipper-EF-hand containing transmembrane protein 1 490560 3 3 3 0 2 0 1 0 0 0 0.76 1.00 -12053 SVEP1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 2297176 18 11 18 6 4 9 5 0 0 0 0.76 1.00 -12054 IP6K2 304352 1 1 1 1 0 0 1 0 0 0 0.76 1.00 -12055 EIF3M eukaryotic translation initiation factor 3, subunit M 261856 1 1 1 0 0 0 1 0 0 0 0.76 1.00 -12056 CDC5L CDC5 cell division cycle 5-like (S. pombe) 552864 2 2 2 0 0 0 1 0 1 0 0.76 1.00 -12057 KIAA1543 KIAA1543 527968 2 2 2 1 1 0 0 0 1 0 0.76 1.00 -12058 PRKCH protein kinase C, eta 460768 3 3 3 2 2 0 1 0 0 0 0.76 1.00 -12059 TRIM11 tripartite motif-containing 11 244512 1 1 1 0 0 0 0 0 1 0 0.76 1.00 -12060 DSP desmoplakin 1929512 12 11 12 4 4 3 5 0 0 0 0.76 1.00 -12061 GLG1 golgi apparatus protein 1 794052 4 4 4 2 1 1 1 0 1 0 0.76 1.00 -12062 DIP2A DIP2 disco-interacting protein 2 homolog A (Drosophila) 1031040 8 8 8 2 6 1 1 0 0 0 0.76 1.00 -12063 THSD7A thrombospondin, type I, domain containing 7A 1103096 6 5 6 2 2 0 2 1 1 0 0.76 1.00 -12064 IL17RC interleukin 17 receptor C 501028 3 3 3 0 1 0 1 0 1 0 0.76 1.00 -12065 MTSS1 metastasis suppressor 1 516372 2 2 2 2 0 1 1 0 0 0 0.76 1.00 -12066 NBEAL2 neurobeachin-like 2 1578044 10 10 10 3 6 0 3 0 1 0 0.76 1.00 -12067 IPPK inositol 1,3,4,5,6-pentakisphosphate 2-kinase 339416 2 2 2 1 1 1 0 0 0 0 0.76 1.00 -12068 MAP1S microtubule-associated protein 1S 524904 4 4 4 0 1 1 1 0 1 0 0.76 1.00 -12069 DDX3X DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, X-linked 460768 2 2 2 1 0 0 1 0 1 0 0.76 1.00 -12070 NUFIP1 nuclear fragile X mental retardation protein interacting protein 1 342272 2 2 2 0 1 0 1 0 0 0 0.76 1.00 -12071 KCTD19 potassium channel tetramerisation domain containing 19 636692 3 3 3 4 0 1 1 0 1 0 0.76 1.00 -12072 ATXN7 ataxin 7 569576 4 4 4 4 2 2 0 0 0 0 0.76 1.00 -12073 DUOX1 dual oxidase 1 981764 7 7 7 6 4 2 0 0 1 0 0.76 1.00 -12074 ABL1 c-abl oncogene 1, receptor tyrosine kinase 760980 4 4 4 3 1 0 2 0 1 0 0.76 1.00 -12075 ADRA2B adrenergic, alpha-2B-, receptor 273432 1 1 1 1 0 0 1 0 0 0 0.76 1.00 -12076 USP38 ubiquitin specific peptidase 38 709856 4 3 4 5 1 1 2 0 0 0 0.76 1.00 -12077 TSPYL1 TSPY-like 1 275072 2 2 2 0 0 1 1 0 0 0 0.76 1.00 -12078 CEP68 centrosomal protein 68kDa 513856 4 3 4 1 2 1 1 0 0 0 0.76 1.00 -12079 OC90 otoconin 90 302312 1 1 1 3 0 1 0 0 0 0 0.76 1.00 -12080 HOXB1 homeobox B1 204736 1 1 1 1 0 0 0 0 1 0 0.76 1.00 -12081 C4orf17 chromosome 4 open reading frame 17 249088 1 1 1 1 0 1 0 0 0 0 0.76 1.00 -12082 SLC23A1 solute carrier family 23 (nucleobase transporters), member 1 385664 2 2 2 3 0 2 0 0 0 0 0.76 1.00 -12083 CNDP1 carnosine dipeptidase 1 (metallopeptidase M20 family) 352128 3 2 3 1 0 1 2 0 0 0 0.76 1.00 -12084 SLC30A5 solute carrier family 30 (zinc transporter), member 5 529312 2 2 2 4 2 0 0 0 0 0 0.76 1.00 -12085 GFM2 G elongation factor, mitochondrial 2 544320 3 2 3 1 1 1 1 0 0 0 0.76 1.00 -12086 PAOX polyamine oxidase (exo-N4-amino) 257012 1 1 1 1 0 0 0 0 1 0 0.76 1.00 -12087 ZSCAN21 zinc finger and SCAN domain containing 21 316596 2 2 2 0 2 0 0 0 0 0 0.76 1.00 -12088 GOLGA1 golgi autoantigen, golgin subfamily a, 1 513968 3 3 3 0 3 0 0 0 0 0 0.76 1.00 -12089 RCBTB2 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 2 381696 2 2 2 0 0 1 1 0 0 0 0.76 1.00 -12090 CCDC146 coiled-coil domain containing 146 658560 4 4 4 2 1 1 2 0 0 0 0.77 1.00 -12091 BNIPL BCL2/adenovirus E1B 19kD interacting protein like 249536 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12092 ALPK3 alpha-kinase 3 1152656 8 7 8 3 2 4 1 0 1 0 0.77 1.00 -12093 TCIRG1 T-cell, immune regulator 1, ATPase, H+ transporting, lysosomal V0 subunit A3 401076 2 2 2 1 1 0 0 0 1 0 0.77 1.00 -12094 PSMD5 proteasome (prosome, macropain) 26S subunit, non-ATPase, 5 346976 2 2 2 2 0 2 0 0 0 0 0.77 1.00 -12095 NOL11 nucleolar protein 11 499968 2 2 2 1 0 0 1 1 0 0 0.77 1.00 -12096 ZNF554 zinc finger protein 554 353500 3 2 3 0 0 3 0 0 0 0 0.77 1.00 -12097 MAP3K10 mitogen-activated protein kinase kinase kinase 10 439076 3 3 3 1 1 2 0 0 0 0 0.77 1.00 -12098 SNRPA small nuclear ribonucleoprotein polypeptide A 194712 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12099 FCRL6 Fc receptor-like 6 301280 1 1 1 1 0 0 1 0 0 0 0.77 1.00 -12100 RAPGEF3 Rap guanine nucleotide exchange factor (GEF) 3 618828 4 4 4 0 1 2 1 0 0 0 0.77 1.00 -12101 POU3F2 POU class 3 homeobox 2 160916 1 1 1 2 1 0 0 0 0 0 0.77 1.00 -12102 OSBPL8 oxysterol binding protein-like 8 618688 2 2 2 3 1 0 1 0 0 0 0.77 1.00 -12103 RGS14 regulator of G-protein signaling 14 360912 2 2 2 0 1 0 0 0 1 0 0.77 1.00 -12104 ANKS3 ankyrin repeat and sterile alpha motif domain containing 3 415548 3 2 3 0 1 2 0 0 0 0 0.77 1.00 -12105 C13orf23 chromosome 13 open reading frame 23 646688 3 3 3 3 1 2 0 0 0 0 0.77 1.00 -12106 NTHL1 nth endonuclease III-like 1 (E. coli) 171080 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12107 TLE6 transducin-like enhancer of split 6 (E(sp1) homolog, Drosophila) 308784 1 1 1 2 0 0 0 0 1 0 0.77 1.00 -12108 LPPR3 182280 2 1 2 1 1 0 0 0 1 0 0.77 1.00 -12109 OFD1 oral-facial-digital syndrome 1 701344 5 3 5 0 2 2 0 0 1 0 0.77 1.00 -12110 OR2AE1 olfactory receptor, family 2, subfamily AE, member 1 218624 1 1 1 2 0 1 0 0 0 0 0.77 1.00 -12111 ARSF arylsulfatase F 406112 3 3 3 5 2 1 0 0 0 0 0.77 1.00 -12112 GFI1B growth factor independent 1B transcription repressor 227808 3 2 3 1 1 2 0 0 0 0 0.77 1.00 -12113 NKX3-2 NK3 homeobox 2 113120 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12114 PEX16 peroxisomal biogenesis factor 16 229512 1 1 1 1 0 1 0 0 0 0 0.77 1.00 -12115 SLC30A10 solute carrier family 30, member 10 269128 1 1 1 0 0 1 0 0 0 0 0.77 1.00 -12116 DNAJC10 DnaJ (Hsp40) homolog, subfamily C, member 10 553280 4 2 4 2 1 1 1 0 1 0 0.77 1.00 -12117 SGK196 237328 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12118 ALS2CL ALS2 C-terminal like 624564 3 3 3 2 2 1 0 0 0 0 0.77 1.00 -12119 ITFG2 integrin alpha FG-GAP repeat containing 2 311808 2 2 2 0 0 2 0 0 0 0 0.77 1.00 -12120 FHL1 four and a half LIM domains 1 247072 1 1 1 3 0 1 0 0 0 0 0.77 1.00 -12121 ASB4 ankyrin repeat and SOCS box-containing 4 307552 2 2 2 1 0 2 0 0 0 0 0.77 1.00 -12122 GPNMB glycoprotein (transmembrane) nmb 394912 2 2 2 5 1 1 0 0 0 0 0.77 1.00 -12123 DIS3L2 DIS3 mitotic control homolog (S. cerevisiae)-like 2 580556 6 4 6 2 2 3 1 0 0 0 0.77 1.00 -12124 ZNF606 zinc finger protein 606 538272 4 3 4 1 2 2 0 0 0 0 0.77 1.00 -12125 OR51G1 olfactory receptor, family 51, subfamily G, member 1 217280 1 1 1 1 0 1 0 0 0 0 0.77 1.00 -12126 NKD2 naked cuticle homolog 2 (Drosophila) 155784 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12127 NUFIP2 nuclear fragile X mental retardation protein interacting protein 2 467936 3 2 3 0 1 0 1 0 1 0 0.77 1.00 -12128 CTTNBP2NL CTTNBP2 N-terminal like 433664 2 2 2 3 1 1 0 0 0 0 0.77 1.00 -12129 SDR9C7 214592 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -12130 SLC6A18 solute carrier family 6, member 18 413616 3 2 3 1 1 0 1 0 1 0 0.77 1.00 -12131 FBXO6 F-box protein 6 202048 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12132 GNAZ guanine nucleotide binding protein (G protein), alpha z polypeptide 201208 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -12133 AKT1 v-akt murine thymoma viral oncogene homolog 1 330680 2 2 2 1 1 0 1 0 0 0 0.77 1.00 -12134 FCGBP Fc fragment of IgG binding protein 2497860 16 15 15 16 3 5 5 1 2 0 0.77 1.00 -12135 AKAP8 A kinase (PRKA) anchor protein 8 450016 3 3 3 2 1 2 0 0 0 0 0.77 1.00 -12136 DGKG diacylglycerol kinase, gamma 90kDa 553728 3 3 3 5 1 0 2 0 0 0 0.77 1.00 -12137 PGS1 phosphatidylglycerophosphate synthase 1 343392 1 1 1 0 0 0 0 1 0 0 0.77 1.00 -12138 PBX1 pre-B-cell leukemia homeobox 1 271176 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -12139 ITFG1 integrin alpha FG-GAP repeat containing 1 411712 2 2 2 0 1 0 1 0 0 0 0.77 1.00 -12140 SMARCD2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 310128 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12141 MCOLN1 mucolipin 1 384804 4 4 4 1 3 1 0 0 0 0 0.77 1.00 -12142 ARRDC2 arrestin domain containing 2 234836 1 1 1 1 0 0 1 0 0 0 0.77 1.00 -12143 RPL5 ribosomal protein L5 206416 1 1 1 0 0 1 0 0 0 0 0.77 1.00 -12144 PRMT1 protein arginine methyltransferase 1 259840 1 1 1 0 0 0 0 0 1 0 0.77 1.00 -12145 HDAC6 histone deacetylase 6 808376 7 6 7 2 4 2 1 0 0 0 0.77 1.00 -12146 UBAC2 UBA domain containing 2 265476 1 1 1 1 1 0 0 0 0 0 0.77 1.00 -12147 PPME1 protein phosphatase methylesterase 1 262816 2 1 2 0 2 0 0 0 0 0 0.77 1.00 -12148 QPRT quinolinate phosphoribosyltransferase (nicotinate-nucleotide pyrophosphorylase (carboxylating)) 178512 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12149 MTERFD3 MTERF domain containing 3 260288 1 1 1 1 0 1 0 0 0 0 0.77 1.00 -12150 PMPCB peptidase (mitochondrial processing) beta 340928 1 1 1 0 0 1 0 0 0 0 0.77 1.00 -12151 PSG5 pregnancy specific beta-1-glycoprotein 5 230272 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12152 ADAMTSL4 ADAMTS-like 4 674660 4 4 3 0 1 1 1 0 1 0 0.77 1.00 -12153 ATL2 391160 2 2 2 0 0 1 0 0 1 0 0.77 1.00 -12154 TMEM19 transmembrane protein 19 231840 1 1 1 0 0 1 0 0 0 0 0.77 1.00 -12155 STARD10 StAR-related lipid transfer (START) domain containing 10 192612 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12156 EIF2AK4 eukaryotic translation initiation factor 2 alpha kinase 4 1110396 6 5 6 2 1 3 1 0 1 0 0.77 1.00 -12157 ASAM 257600 1 1 1 2 1 0 0 0 0 0 0.77 1.00 -12158 C20orf72 chromosome 20 open reading frame 72 235424 2 1 2 0 0 1 1 0 0 0 0.77 1.00 -12159 ZNF589 zinc finger protein 589 248780 1 1 1 0 0 1 0 0 0 0 0.77 1.00 -12160 MYH7 myosin, heavy chain 7, cardiac muscle, beta 1325440 12 10 11 8 5 3 3 0 1 0 0.77 1.00 -12161 ASNS asparagine synthetase 387520 1 1 1 1 0 1 0 0 0 0 0.77 1.00 -12162 GGA3 golgi associated, gamma adaptin ear containing, ARF binding protein 3 454132 3 3 3 1 0 2 1 0 0 0 0.77 1.00 -12163 SEC31A SEC31 homolog A (S. cerevisiae) 843808 2 2 2 3 0 1 0 0 1 0 0.77 1.00 -12164 VPS4A vacuolar protein sorting 4 homolog A (S. cerevisiae) 275868 2 2 2 0 1 1 0 0 0 0 0.77 1.00 -12165 ACOXL acyl-Coenzyme A oxidase-like 359744 2 2 2 2 0 2 0 0 0 0 0.77 1.00 -12166 THBD thrombomodulin 235676 2 2 2 1 2 0 0 0 0 0 0.77 1.00 -12167 ELMO2 engulfment and cell motility 2 502432 3 3 3 0 2 1 0 0 0 0 0.77 1.00 -12168 RNF8 ring finger protein 8 344024 2 1 2 0 0 0 1 0 1 0 0.77 1.00 -12169 GDPD5 glycerophosphodiester phosphodiesterase domain containing 5 402164 2 2 2 1 2 0 0 0 0 0 0.77 1.00 -12170 CLCN6 chloride channel 6 606396 5 4 5 2 4 1 0 0 0 0 0.77 1.00 -12171 GATM glycine amidinotransferase (L-arginine:glycine amidinotransferase) 276640 1 1 1 1 0 1 0 0 0 0 0.77 1.00 -12172 GGN gametogenetin 298316 4 4 4 1 4 0 0 0 0 0 0.77 1.00 -12173 C14orf145 chromosome 14 open reading frame 145 754264 5 5 5 2 3 0 1 0 1 0 0.77 1.00 -12174 MLL3 myeloid/lymphoid or mixed-lineage leukemia 3 3316320 16 12 16 9 5 5 5 0 1 0 0.77 1.00 -12175 NCAM1 neural cell adhesion molecule 1 601352 6 4 5 4 4 2 0 0 0 0 0.77 1.00 -12176 FGR Gardner-Rasheed feline sarcoma viral (v-fgr) oncogene homolog 365880 2 2 2 1 2 0 0 0 0 0 0.77 1.00 -12177 DQX1 DEAQ box polypeptide 1 (RNA-dependent ATPase) 414400 1 1 1 2 0 0 0 0 1 0 0.77 1.00 -12178 C20orf117 chromosome 20 open reading frame 117 661136 5 4 5 2 2 3 0 0 0 0 0.77 1.00 -12179 MEI1 meiosis inhibitor 1 861388 7 4 7 0 2 1 4 0 0 0 0.77 1.00 -12180 POLR1C polymerase (RNA) I polypeptide C, 30kDa 265432 2 1 2 0 1 1 0 0 0 0 0.77 1.00 -12181 WEE2 WEE1 homolog 2 (S. pombe) 392448 2 2 2 3 0 2 0 0 0 0 0.77 1.00 -12182 USP22 ubiquitin specific peptidase 22 331668 2 2 2 0 2 0 0 0 0 0 0.77 1.00 -12183 NAAA 222068 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -12184 DCAF12 313068 2 2 2 0 0 2 0 0 0 0 0.77 1.00 -12185 SAMM50 sorting and assembly machinery component 50 homolog (S. cerevisiae) 327180 2 2 2 2 0 1 1 0 0 0 0.77 1.00 -12186 CLGN calmegin 423136 2 2 2 0 1 1 0 0 0 0 0.77 1.00 -12187 INTS10 integrator complex subunit 10 492888 2 2 2 0 1 0 0 0 1 0 0.77 1.00 -12188 SLC8A2 solute carrier family 8 (sodium-calcium exchanger), member 2 471456 4 4 4 0 2 2 0 0 0 0 0.77 1.00 -12189 SOCS4 suppressor of cytokine signaling 4 297248 1 1 1 1 0 0 0 0 1 0 0.77 1.00 -12190 ENPP6 ectonucleotide pyrophosphatase/phosphodiesterase 6 303520 2 2 2 1 1 1 0 0 0 0 0.77 1.00 -12191 PHF15 PHD finger protein 15 522560 3 3 3 2 1 1 1 0 0 0 0.77 1.00 -12192 OR10G8 olfactory receptor, family 10, subfamily G, member 8 210560 1 1 1 1 0 0 1 0 0 0 0.77 1.00 -12193 MLLT6 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 6 624888 3 3 3 1 0 2 0 0 1 0 0.77 1.00 -12194 CHEK2 CHK2 checkpoint homolog (S. pombe) 355516 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -12195 GPR77 G protein-coupled receptor 77 206780 2 2 2 1 2 0 0 0 0 0 0.77 1.00 -12196 VCP valosin-containing protein 552832 2 2 2 2 1 0 0 0 1 0 0.77 1.00 -12197 ENPP3 ectonucleotide pyrophosphatase/phosphodiesterase 3 606176 4 3 4 1 1 2 1 0 0 0 0.77 1.00 -12198 SP100 SP100 nuclear antigen 743904 4 4 4 0 1 1 2 0 0 0 0.77 1.00 -12199 GFRAL GDNF family receptor alpha like 273504 1 1 1 1 0 0 1 0 0 0 0.77 1.00 -12200 UEVLD UEV and lactate/malate dehyrogenase domains 327936 1 1 1 0 0 0 0 0 1 0 0.77 1.00 -12201 B4GALT2 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 2 231924 3 2 3 0 3 0 0 0 0 0 0.77 1.00 -12202 WDR89 WD repeat domain 89 261632 2 1 2 1 0 2 0 0 0 0 0.77 1.00 -12203 ATXN7L3 ataxin 7-like 3 246764 1 1 1 0 0 1 0 0 0 0 0.77 1.00 -12204 OR52I2 olfactory receptor, family 52, subfamily I, member 2 236768 1 1 1 1 0 1 0 0 0 0 0.77 1.00 -12205 GPAA1 glycosylphosphatidylinositol anchor attachment protein 1 homolog (yeast) 383208 3 3 3 0 2 1 0 0 0 0 0.77 1.00 -12206 C7orf43 chromosome 7 open reading frame 43 294816 1 1 1 2 1 0 0 0 0 0 0.77 1.00 -12207 AEBP1 AE binding protein 1 724332 5 5 5 3 2 1 2 0 0 0 0.77 1.00 -12208 GDI2 GDP dissociation inhibitor 2 305452 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -12209 PECI peroxisomal D3,D2-enoyl-CoA isomerase 267260 1 1 1 1 0 0 1 0 0 0 0.77 1.00 -12210 FOXA3 forkhead box A3 227328 1 1 1 1 1 0 0 0 0 0 0.77 1.00 -12211 SLC38A3 solute carrier family 38, member 3 330496 2 2 2 1 1 0 1 0 0 0 0.77 1.00 -12212 CPSF1 cleavage and polyadenylation specific factor 1, 160kDa 790504 5 5 5 0 2 1 0 0 2 0 0.77 1.00 -12213 TSC22D4 TSC22 domain family, member 4 224240 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -12214 RGP1 RGP1 retrograde golgi transport homolog (S. cerevisiae) 283896 2 2 2 0 1 1 0 0 0 0 0.77 1.00 -12215 CYB5RL 211608 1 1 1 1 1 0 0 0 0 0 0.77 1.00 -12216 AARS alanyl-tRNA synthetase 669088 5 5 5 2 3 2 0 0 0 0 0.77 1.00 -12217 ITPK1 inositol 1,3,4-triphosphate 5/6 kinase 240212 2 2 2 1 2 0 0 0 0 0 0.77 1.00 -12218 DEK DEK oncogene (DNA binding) 261496 1 1 1 1 0 1 0 0 0 0 0.77 1.00 -12219 SLC6A8 solute carrier family 6 (neurotransmitter transporter, creatine), member 8 341072 1 1 1 1 0 0 1 0 0 0 0.77 1.00 -12220 SLC2A3 solute carrier family 2 (facilitated glucose transporter), member 3 342944 1 1 1 1 0 1 0 0 0 0 0.77 1.00 -12221 UBFD1 ubiquitin family domain containing 1 175140 1 1 1 0 0 1 0 0 0 0 0.77 1.00 -12222 RALY RNA binding protein, autoantigenic (hnRNP-associated with lethal yellow homolog (mouse)) 199668 1 1 1 2 0 0 1 0 0 0 0.77 1.00 -12223 SEC16A SEC16 homolog A (S. cerevisiae) 1491956 11 10 11 3 2 6 2 0 1 0 0.77 1.00 -12224 MIOS 597632 3 3 3 1 0 1 1 0 1 0 0.77 1.00 -12225 MTCH2 mitochondrial carrier homolog 2 (C. elegans) 209104 1 1 1 1 0 1 0 0 0 0 0.77 1.00 -12226 EIF3B eukaryotic translation initiation factor 3, subunit B 451136 3 3 3 0 2 0 1 0 0 0 0.77 1.00 -12227 EHD4 EH-domain containing 4 352036 3 3 3 3 2 0 1 0 0 0 0.78 1.00 -12228 GNE glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase 517440 2 2 2 1 2 0 0 0 0 0 0.78 1.00 -12229 SEMA4B sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4B 496540 2 2 2 0 0 0 1 1 0 0 0.78 1.00 -12230 FGB fibrinogen beta chain 328920 2 2 2 0 1 1 0 0 0 0 0.78 1.00 -12231 GPR132 G protein-coupled receptor 132 257152 1 1 1 1 1 0 0 0 0 0 0.78 1.00 -12232 RBBP5 retinoblastoma binding protein 5 361152 2 2 2 2 1 0 1 0 0 0 0.78 1.00 -12233 RELL1 RELT-like 1 175532 1 1 1 2 0 0 1 0 0 0 0.78 1.00 -12234 ZNF689 zinc finger protein 689 318124 2 2 2 0 1 0 1 0 0 0 0.78 1.00 -12235 ACCN4 amiloride-sensitive cation channel 4, pituitary 405420 2 2 2 1 0 1 1 0 0 0 0.78 1.00 -12236 TRIM14 tripartite motif-containing 14 232680 1 1 1 0 0 0 0 0 1 0 0.78 1.00 -12237 KIAA0391 KIAA0391 398720 2 2 2 0 0 1 1 0 0 0 0.78 1.00 -12238 TMEM30B transmembrane protein 30B 133728 1 1 1 0 0 1 0 0 0 0 0.78 1.00 -12239 SLC25A5 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 196896 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12240 SLC38A7 solute carrier family 38, member 7 306768 1 1 1 1 1 0 0 0 0 0 0.78 1.00 -12241 WDR73 WD repeat domain 73 236872 1 1 1 0 0 1 0 0 0 0 0.78 1.00 -12242 MAPKAPK5 mitogen-activated protein kinase-activated protein kinase 5 315840 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -12243 CD97 CD97 molecule 562804 5 4 5 1 2 2 0 0 1 0 0.78 1.00 -12244 BRMS1 breast cancer metastasis suppressor 1 203104 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12245 HTATSF1 HIV-1 Tat specific factor 1 516096 2 2 2 3 1 1 0 0 0 0 0.78 1.00 -12246 CCNI cyclin I 259392 2 1 2 0 0 2 0 0 0 0 0.78 1.00 -12247 PPL periplakin 1150108 6 6 6 6 3 1 0 0 2 0 0.78 1.00 -12248 TBPL2 TATA box binding protein like 2 246008 1 1 1 0 0 1 0 0 0 0 0.78 1.00 -12249 PHLPP1 800288 5 5 5 1 1 2 1 0 1 0 0.78 1.00 -12250 C2orf60 chromosome 2 open reading frame 60 219520 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12251 CAMK2B calcium/calmodulin-dependent protein kinase (CaM kinase) II beta 382180 2 2 2 2 1 0 1 0 0 0 0.78 1.00 -12252 SMC1B structural maintenance of chromosomes 1B 850952 6 5 6 0 1 2 3 0 0 0 0.78 1.00 -12253 C1orf87 chromosome 1 open reading frame 87 377440 3 2 3 3 1 2 0 0 0 0 0.78 1.00 -12254 PSAP prosaposin (variant Gaucher disease and variant metachromatic leukodystrophy) 360704 2 2 2 1 2 0 0 0 0 0 0.78 1.00 -12255 DNAJC1 DnaJ (Hsp40) homolog, subfamily C, member 1 343836 1 1 1 1 1 0 0 0 0 0 0.78 1.00 -12256 BGN biglycan 249072 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -12257 RASD2 RASD family, member 2 179032 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12258 WFS1 Wolfram syndrome 1 (wolframin) 502644 1 1 1 3 0 0 0 0 1 0 0.78 1.00 -12259 SPEF1 sperm flagellar 1 163940 1 1 1 1 0 1 0 0 0 0 0.78 1.00 -12260 EIF3L 384104 2 2 2 1 1 1 0 0 0 0 0.78 1.00 -12261 PPP2R2A protein phosphatase 2 (formerly 2A), regulatory subunit B, alpha isoform 310016 1 1 1 1 1 0 0 0 0 0 0.78 1.00 -12262 PTGIR prostaglandin I2 (prostacyclin) receptor (IP) 155296 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12263 STOM stomatin 191640 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12264 ANO10 450048 2 2 2 1 0 2 0 0 0 0 0.78 1.00 -12265 PIM2 pim-2 oncogene 203072 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -12266 ZNF828 zinc finger protein 828 547232 3 2 3 2 1 2 0 0 0 0 0.78 1.00 -12267 DTX3L deltex 3-like (Drosophila) 499408 3 3 3 0 1 2 0 0 0 0 0.78 1.00 -12268 SIN3A SIN3 homolog A, transcription regulator (yeast) 873880 10 4 10 6 2 5 2 0 1 0 0.78 1.00 -12269 FBXO44 F-box protein 44 182756 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12270 CASR calcium-sensing receptor (hypocalciuric hypercalcemia 1, severe neonatal hyperparathyroidism) 732704 7 4 7 6 3 3 1 0 0 0 0.78 1.00 -12271 C18orf1 chromosome 18 open reading frame 1 221144 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12272 CACNA1B calcium channel, voltage-dependent, N type, alpha 1B subunit 1305372 11 10 11 4 7 2 2 0 0 0 0.78 1.00 -12273 MCAT malonyl CoA:ACP acyltransferase (mitochondrial) 203672 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -12274 PTPN21 protein tyrosine phosphatase, non-receptor type 21 743904 8 6 8 5 3 2 1 0 0 2 0.78 1.00 -12275 FBXO7 F-box protein 7 337036 3 2 3 3 1 1 1 0 0 0 0.78 1.00 -12276 WDR5 WD repeat domain 5 236516 1 1 1 1 0 1 0 0 0 0 0.78 1.00 -12277 C17orf74 chromosome 17 open reading frame 74 326172 3 2 3 0 1 0 1 0 1 0 0.78 1.00 -12278 SPATA2 spermatogenesis associated 2 351904 3 3 3 1 3 0 0 0 0 0 0.78 1.00 -12279 AIFM1 apoptosis-inducing factor, mitochondrion-associated, 1 442632 2 2 2 2 0 2 0 0 0 0 0.78 1.00 -12280 PRB2 proline-rich protein BstNI subfamily 2 271040 1 1 1 2 0 1 0 0 0 0 0.78 1.00 -12281 IKBIP 411572 2 2 2 0 0 1 1 0 0 0 0.78 1.00 -12282 TGFBI transforming growth factor, beta-induced, 68kDa 440024 1 1 1 1 0 0 0 0 1 0 0.78 1.00 -12283 NR5A2 nuclear receptor subfamily 5, group A, member 2 370576 4 2 4 1 1 2 1 0 0 0 0.78 1.00 -12284 CPT2 carnitine palmitoyltransferase II 414848 2 2 2 1 0 1 1 0 0 0 0.78 1.00 -12285 LINS1 lines homolog 1 (Drosophila) 514752 1 1 1 0 0 0 0 0 1 0 0.78 1.00 -12286 ANKHD1-EIF4EBP3 ANKHD1-EIF4EBP3 1753400 10 8 10 4 2 5 2 0 1 0 0.78 1.00 -12287 LDLRAP1 low density lipoprotein receptor adaptor protein 1 195104 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -12288 C10orf26 chromosome 10 open reading frame 26 225532 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12289 SARS seryl-tRNA synthetase 355936 2 2 2 1 1 0 1 0 0 0 0.78 1.00 -12290 RUFY2 RUN and FYVE domain containing 2 463636 1 1 1 0 0 0 0 0 1 0 0.78 1.00 -12291 C1orf161 chromosome 1 open reading frame 161 249312 1 1 1 2 1 0 0 0 0 0 0.78 1.00 -12292 PCDHGA4 protocadherin gamma subfamily A, 4 623980 5 5 5 0 3 2 0 0 0 0 0.78 1.00 -12293 CFI complement factor I 404096 2 2 2 5 0 1 1 0 0 0 0.78 1.00 -12294 MX2 myxovirus (influenza virus) resistance 2 (mouse) 488432 3 3 3 3 1 0 2 0 0 0 0.78 1.00 -12295 GNL2 guanine nucleotide binding protein-like 2 (nucleolar) 506240 3 2 3 3 1 1 0 0 1 0 0.78 1.00 -12296 TLR10 toll-like receptor 10 546560 4 2 4 3 0 3 1 0 0 0 0.78 1.00 -12297 ITIH4 inter-alpha (globulin) inhibitor H4 (plasma Kallikrein-sensitive glycoprotein) 646380 3 3 3 0 2 1 0 0 0 0 0.78 1.00 -12298 CHST2 carbohydrate (N-acetylglucosamine-6-O) sulfotransferase 2 226188 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -12299 MRE11A MRE11 meiotic recombination 11 homolog A (S. cerevisiae) 493472 8 3 8 1 3 3 2 0 0 0 0.78 1.00 -12300 PHYH phytanoyl-CoA 2-hydroxylase 218176 2 1 2 2 1 1 0 0 0 0 0.78 1.00 -12301 CBARA1 calcium binding atopy-related autoantigen 1 315832 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12302 LIPE lipase, hormone-sensitive 667096 4 4 4 2 4 0 0 0 0 0 0.78 1.00 -12303 KDM1B 411488 3 2 3 0 2 1 0 0 0 0 0.78 1.00 -12304 ZDHHC5 zinc finger, DHHC-type containing 5 491008 3 3 3 0 0 2 1 0 0 0 0.78 1.00 -12305 PASK PAS domain containing serine/threonine kinase 904960 7 6 7 0 4 3 0 0 0 0 0.78 1.00 -12306 ACHE acetylcholinesterase (Yt blood group) 376896 2 2 2 2 0 0 1 0 1 0 0.78 1.00 -12307 DEPDC1B DEP domain containing 1B 354368 1 1 1 1 0 1 0 0 0 0 0.78 1.00 -12308 RAP2B RAP2B, member of RAS oncogene family 107744 1 1 1 0 0 1 0 0 0 0 0.78 1.00 -12309 DDC dopa decarboxylase (aromatic L-amino acid decarboxylase) 334880 1 1 1 1 1 0 0 0 0 0 0.78 1.00 -12310 EXTL1 exostoses (multiple)-like 1 425668 3 2 3 1 2 1 0 0 0 0 0.78 1.00 -12311 BCL2L13 BCL2-like 13 (apoptosis facilitator) 331044 2 2 2 0 1 0 1 0 0 0 0.78 1.00 -12312 MCOLN2 mucolipin 2 393568 2 2 2 0 2 0 0 0 0 0 0.78 1.00 -12313 DNAJB12 DnaJ (Hsp40) homolog, subfamily B, member 12 262080 2 2 2 0 1 1 0 0 0 0 0.78 1.00 -12314 GALNT8 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 8 (GalNAc-T8) 438592 2 2 2 2 1 0 1 0 0 0 0.78 1.00 -12315 ZCCHC7 zinc finger, CCHC domain containing 7 372736 2 2 2 0 0 2 0 0 0 0 0.78 1.00 -12316 PPP1R12C protein phosphatase 1, regulatory (inhibitor) subunit 12C 417032 3 3 3 1 2 1 0 0 0 0 0.78 1.00 -12317 C2orf55 chromosome 2 open reading frame 55 419280 2 2 2 0 0 0 0 0 2 0 0.78 1.00 -12318 IK IK cytokine, down-regulator of HLA II 376168 2 2 2 0 0 1 1 0 0 0 0.78 1.00 -12319 ERAP2 endoplasmic reticulum aminopeptidase 2 661920 5 3 5 1 1 3 1 0 0 0 0.78 1.00 -12320 ACD adrenocortical dysplasia homolog (mouse) 334236 1 1 1 0 0 0 0 0 1 0 0.78 1.00 -12321 TECR 200228 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12322 AGAP7 266060 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -12323 TDP1 tyrosyl-DNA phosphodiesterase 1 422688 2 2 2 2 1 1 0 0 0 0 0.78 1.00 -12324 SF3A2 splicing factor 3a, subunit 2, 66kDa 177708 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12325 NEK10 NIMA (never in mitosis gene a)- related kinase 10 480568 4 2 4 0 0 2 1 0 1 0 0.78 1.00 -12326 TST thiosulfate sulfurtransferase (rhodanese) 142996 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12327 LIMS1 LIM and senescent cell antigen-like domains 1 199892 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -12328 MKNK1 MAP kinase interacting serine/threonine kinase 1 290912 1 1 1 1 0 0 1 0 0 0 0.78 1.00 -12329 NUP160 nucleoporin 160kDa 991284 4 4 4 4 1 2 0 0 1 0 0.78 1.00 -12330 FAM53A family with sequence similarity 53, member A 181020 1 1 1 0 0 1 0 0 0 0 0.78 1.00 -12331 ADAM9 ADAM metallopeptidase domain 9 (meltrin gamma) 570752 4 3 4 1 2 1 0 0 1 0 0.78 1.00 -12332 FADS6 fatty acid desaturase domain family, member 6 215480 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -12333 ZNF792 zinc finger protein 792 421552 4 3 4 0 2 2 0 0 0 0 0.78 1.00 -12334 C1orf85 chromosome 1 open reading frame 85 278744 1 1 1 0 0 0 0 0 1 0 0.78 1.00 -12335 SIPA1L2 signal-induced proliferation-associated 1 like 2 1175832 10 6 10 4 2 3 2 0 1 2 0.79 1.00 -12336 RTF1 Rtf1, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) 406152 2 2 2 0 0 0 1 0 1 0 0.79 1.00 -12337 ST6GAL1 ST6 beta-galactosamide alpha-2,6-sialyltranferase 1 277984 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12338 CLPB ClpB caseinolytic peptidase B homolog (E. coli) 471352 2 2 2 0 0 2 0 0 0 0 0.79 1.00 -12339 SMURF1 SMAD specific E3 ubiquitin protein ligase 1 510292 3 3 3 2 0 3 0 0 0 0 0.79 1.00 -12340 AMFR autocrine motility factor receptor 387296 3 3 3 1 2 1 0 0 0 0 0.79 1.00 -12341 SPNS2 spinster homolog 2 (Drosophila) 294644 2 2 2 1 1 0 1 0 0 0 0.79 1.00 -12342 CARM1 coactivator-associated arginine methyltransferase 1 366200 2 2 2 0 1 0 0 1 0 0 0.79 1.00 -12343 SERTAD2 SERTA domain containing 2 212576 1 1 1 1 1 0 0 0 0 0 0.79 1.00 -12344 PIGA phosphatidylinositol glycan anchor biosynthesis, class A (paroxysmal nocturnal hemoglobinuria) 330400 1 1 1 1 0 1 0 0 0 0 0.79 1.00 -12345 RBCK1 RanBP-type and C3HC4-type zinc finger containing 1 287224 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12346 TBC1D9 TBC1 domain family, member 9 (with GRAM domain) 863728 6 6 6 1 2 2 2 0 0 0 0.79 1.00 -12347 KRT6B keratin 6B 387744 2 2 2 1 1 1 0 0 0 0 0.79 1.00 -12348 FNDC8 fibronectin type III domain containing 8 221984 1 1 1 2 0 1 0 0 0 0 0.79 1.00 -12349 FH fumarate hydratase 324880 1 1 1 4 0 0 1 0 0 0 0.79 1.00 -12350 CES7 carboxylesterase 7 398720 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12351 INO80B 181216 1 1 1 1 0 1 0 0 0 0 0.79 1.00 -12352 PRAMEF14 PRAME family member 14 192472 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12353 ICAM2 intercellular adhesion molecule 2 188972 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12354 TOP3B topoisomerase (DNA) III beta 508648 3 3 3 1 0 1 2 0 0 0 0.79 1.00 -12355 ZNF608 zinc finger protein 608 1016988 5 4 5 3 1 2 1 0 1 0 0.79 1.00 -12356 MYCN v-myc myelocytomatosis viral related oncogene, neuroblastoma derived (avian) 210924 3 2 3 0 2 1 0 0 0 0 0.79 1.00 -12357 ARID5A AT rich interactive domain 5A (MRF1-like) 335720 1 1 1 0 0 0 0 0 1 0 0.79 1.00 -12358 ARID4B AT rich interactive domain 4B (RBP1-like) 902944 4 4 4 1 1 2 1 0 0 0 0.79 1.00 -12359 MAP2K2 mitogen-activated protein kinase kinase 2 211048 1 1 1 0 0 0 1 0 0 0 0.79 1.00 -12360 PIK3R6 phosphoinositide-3-kinase, regulatory subunit 6 499468 6 4 6 0 3 1 2 0 0 0 0.79 1.00 -12361 LRRC61 leucine rich repeat containing 61 162512 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12362 TYMP thymidine phosphorylase 165424 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12363 GATAD2A GATA zinc finger domain containing 2A 418012 2 2 2 0 1 0 0 0 1 0 0.79 1.00 -12364 HLA-E major histocompatibility complex, class I, E 173012 1 1 1 1 0 1 0 0 0 0 0.79 1.00 -12365 LRRC6 leucine rich repeat containing 6 324576 1 1 1 0 0 0 1 0 0 0 0.79 1.00 -12366 TMPRSS9 transmembrane protease, serine 9 621124 3 3 3 0 1 0 1 0 1 0 0.79 1.00 -12367 NAP1L1 nucleosome assembly protein 1-like 1 275968 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12368 ZBTB37 zinc finger and BTB domain containing 37 245056 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12369 ABCG4 ATP-binding cassette, sub-family G (WHITE), member 4 447328 3 3 3 3 2 0 1 0 0 0 0.79 1.00 -12370 ENG endoglin (Osler-Rendu-Weber syndrome 1) 419916 2 2 2 1 0 1 0 0 1 0 0.79 1.00 -12371 DPEP1 dipeptidase 1 (renal) 219212 1 1 1 0 0 0 1 0 0 0 0.79 1.00 -12372 LYSMD4 LysM, putative peptidoglycan-binding, domain containing 4 202664 1 1 1 1 0 1 0 0 0 0 0.79 1.00 -12373 CPSF3 cleavage and polyadenylation specific factor 3, 73kDa 476448 2 2 2 3 0 1 1 0 0 0 0.79 1.00 -12374 HNRNPUL2 439096 2 2 2 0 0 0 2 0 0 0 0.79 1.00 -12375 RNF144A ring finger protein 144A 203168 1 1 1 1 0 0 1 0 0 0 0.79 1.00 -12376 SLC25A2 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 2 203840 1 1 1 1 0 0 1 0 0 0 0.79 1.00 -12377 DHX36 DEAH (Asp-Glu-Ala-His) box polypeptide 36 698096 5 3 5 2 0 2 1 0 2 0 0.79 1.00 -12378 USP5 ubiquitin specific peptidase 5 (isopeptidase T) 595168 4 4 4 2 2 2 0 0 0 0 0.79 1.00 -12379 ADRBK2 adrenergic, beta, receptor kinase 2 455616 2 2 2 0 1 1 0 0 0 0 0.79 1.00 -12380 DHDDS dehydrodolichyl diphosphate synthase 230272 1 1 1 1 1 0 0 0 0 0 0.79 1.00 -12381 CCDC155 357824 1 1 1 1 1 0 0 0 0 0 0.79 1.00 -12382 SLC26A8 solute carrier family 26, member 8 669536 4 4 4 2 3 1 0 0 0 0 0.79 1.00 -12383 PRKAG2 protein kinase, AMP-activated, gamma 2 non-catalytic subunit 391160 3 3 3 1 3 0 0 0 0 0 0.79 1.00 -12384 AMD1 adenosylmethionine decarboxylase 1 233184 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12385 HERPUD1 homocysteine-inducible, endoplasmic reticulum stress-inducible, ubiquitin-like domain member 1 257908 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12386 LRCH4 leucine-rich repeats and calponin homology (CH) domain containing 4 447888 2 2 2 1 1 0 0 0 1 0 0.79 1.00 -12387 TUBGCP2 tubulin, gamma complex associated protein 2 564060 3 3 3 3 1 1 1 0 0 0 0.79 1.00 -12388 MFAP3 microfibrillar-associated protein 3 245728 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12389 POLG polymerase (DNA directed), gamma 782616 5 5 5 4 3 1 1 0 0 0 0.79 1.00 -12390 PSKH2 protein serine kinase H2 248976 1 1 1 1 0 1 0 0 0 0 0.79 1.00 -12391 ARMCX2 armadillo repeat containing, X-linked 2 426272 2 2 2 0 1 0 1 0 0 0 0.79 1.00 -12392 CHD5 chromodomain helicase DNA binding protein 5 1217516 13 11 12 4 9 2 2 0 0 0 0.79 1.00 -12393 TRUB1 TruB pseudouridine (psi) synthase homolog 1 (E. coli) 224640 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12394 CRELD2 cysteine-rich with EGF-like domains 2 197820 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12395 SMURF2 SMAD specific E3 ubiquitin protein ligase 2 507808 2 2 2 0 1 0 1 0 0 0 0.79 1.00 -12396 TRIM16 tripartite motif-containing 16 372836 1 1 1 3 0 1 0 0 0 0 0.79 1.00 -12397 SERPINH1 serpin peptidase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1) 242648 2 2 2 1 2 0 0 0 0 0 0.79 1.00 -12398 GPR114 G protein-coupled receptor 114 365344 2 2 2 3 0 2 0 0 0 0 0.79 1.00 -12399 DGKE diacylglycerol kinase, epsilon 64kDa 391216 3 2 3 0 0 1 1 0 1 0 0.79 1.00 -12400 ITGAE integrin, alpha E (antigen CD103, human mucosal lymphocyte antigen 1; alpha polypeptide) 783488 7 5 7 4 2 3 1 0 1 0 0.79 1.00 -12401 KRT24 keratin 24 360640 3 2 3 1 1 2 0 0 0 0 0.79 1.00 -12402 BRCA1 breast cancer 1, early onset 1282120 6 6 6 1 1 3 1 0 1 0 0.79 1.00 -12403 WDR43 WD repeat domain 43 436240 1 1 1 2 0 0 1 0 0 0 0.79 1.00 -12404 RTN3 reticulon 3 707980 4 3 4 0 0 3 0 0 1 0 0.79 1.00 -12405 TMEM175 transmembrane protein 175 291452 2 2 2 0 0 1 1 0 0 0 0.79 1.00 -12406 CNTNAP1 contactin associated protein 1 949368 7 7 7 4 4 1 2 0 0 0 0.79 1.00 -12407 NBN nibrin 521696 2 2 2 0 0 0 2 0 0 0 0.79 1.00 -12408 DLD dihydrolipoamide dehydrogenase 355264 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12409 CADM4 cell adhesion molecule 4 252728 1 1 1 2 1 0 0 0 0 0 0.79 1.00 -12410 PDLIM3 PDZ and LIM domain 3 252448 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12411 EBI3 Epstein-Barr virus induced gene 3 153076 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12412 SAPS3 SAPS domain family, member 3 551488 1 1 1 0 0 0 0 0 1 0 0.79 1.00 -12413 NKRF NFKB repressing factor 468384 2 2 2 0 1 0 1 0 0 0 0.79 1.00 -12414 ARHGEF15 Rho guanine nucleotide exchange factor (GEF) 15 571620 4 4 4 1 2 2 0 0 0 0 0.79 1.00 -12415 DOC2A double C2-like domains, alpha 251400 2 2 2 1 2 0 0 0 0 0 0.79 1.00 -12416 MPI mannose phosphate isomerase 292096 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12417 JMJD7-PLA2G4B 690988 4 4 4 0 1 1 1 0 1 0 0.79 1.00 -12418 DDX53 DEAD (Asp-Glu-Ala-Asp) box polypeptide 53 424376 1 1 1 1 0 1 0 0 0 0 0.79 1.00 -12419 TSEN54 tRNA splicing endonuclease 54 homolog (S. cerevisiae) 231912 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12420 GPR149 G protein-coupled receptor 149 495488 4 3 4 2 2 2 0 0 0 0 0.79 1.00 -12421 KPRP keratinocyte proline-rich protein 390656 3 3 3 7 2 1 0 0 0 0 0.79 1.00 -12422 PRKACB protein kinase, cAMP-dependent, catalytic, beta 291200 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12423 EXOC5 exocyst complex component 5 426472 2 2 2 1 1 1 0 0 0 0 0.79 1.00 -12424 KLHL10 kelch-like 10 (Drosophila) 411544 2 2 2 3 2 0 0 0 0 0 0.79 1.00 -12425 GPR15 G protein-coupled receptor 15 243488 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12426 ALPI alkaline phosphatase, intestinal 299180 2 2 2 0 1 0 1 0 0 0 0.79 1.00 -12427 MFSD2A 355256 3 2 3 0 1 2 0 0 0 0 0.79 1.00 -12428 COL7A1 collagen, type VII, alpha 1 (epidermolysis bullosa, dystrophic, dominant and recessive) 2004260 14 11 14 4 6 6 0 0 2 0 0.79 1.00 -12429 WNK1 WNK lysine deficient protein kinase 1 1861552 10 8 10 4 2 5 1 0 2 0 0.79 1.00 -12430 BTBD9 BTB (POZ) domain containing 9 418880 2 2 2 2 0 1 1 0 0 0 0.79 1.00 -12431 COMP cartilage oligomeric matrix protein 421064 2 2 2 1 0 1 0 0 1 0 0.79 1.00 -12432 MAP6 microtubule-associated protein 6 366212 2 2 2 1 1 1 0 0 0 0 0.79 1.00 -12433 QTRTD1 queuine tRNA-ribosyltransferase domain containing 1 286720 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12434 VGLL3 vestigial like 3 (Drosophila) 223328 1 1 1 1 1 0 0 0 0 0 0.79 1.00 -12435 PPAPDC3 phosphatidic acid phosphatase type 2 domain containing 3 164332 1 1 1 1 1 0 0 0 0 0 0.79 1.00 -12436 ASB2 ankyrin repeat and SOCS box-containing 2 356468 3 2 3 3 0 1 2 0 0 0 0.79 1.00 -12437 ZNF74 zinc finger protein 74 397264 3 3 3 1 2 1 0 0 0 0 0.79 1.00 -12438 HK3 hexokinase 3 (white cell) 582508 5 5 5 1 1 4 0 0 0 0 0.79 1.00 -12439 KIFC3 kinesin family member C3 497936 3 3 3 0 1 1 1 0 0 0 0.79 1.00 -12440 TRIM15 tripartite motif-containing 15 184800 1 1 1 1 1 0 0 0 0 0 0.79 1.00 -12441 CCNF cyclin F 535752 2 2 2 0 0 1 1 0 0 0 0.79 1.00 -12442 NME1-NME2 NME1-NME2 186368 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12443 STYK1 serine/threonine/tyrosine kinase 1 292320 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12444 RASGEF1A RasGEF domain family, member 1A 298452 2 2 2 1 2 0 0 0 0 0 0.79 1.00 -12445 MORC4 MORC family CW-type zinc finger 4 608216 4 3 4 0 2 2 0 0 0 0 0.79 1.00 -12446 G6PC2 glucose-6-phosphatase, catalytic, 2 243712 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12447 USP12 ubiquitin specific peptidase 12 252728 1 1 1 1 0 0 1 0 0 0 0.79 1.00 -12448 F2R coagulation factor II (thrombin) receptor 267456 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12449 EPHB4 EPH receptor B4 612936 5 4 5 3 3 0 1 0 1 0 0.79 1.00 -12450 PDCD11 programmed cell death 11 1279144 6 6 6 4 2 3 0 1 0 0 0.79 1.00 -12451 FNBP1L formin binding protein 1-like 350800 1 1 1 3 0 1 0 0 0 0 0.79 1.00 -12452 MAPK7 mitogen-activated protein kinase 7 515144 3 3 3 1 3 0 0 0 0 0 0.79 1.00 -12453 CYP17A1 cytochrome P450, family 17, subfamily A, polypeptide 1 331688 2 2 2 0 1 0 1 0 0 0 0.79 1.00 -12454 SLC22A5 solute carrier family 22 (organic cation/carnitine transporter), member 5 354368 1 1 1 1 0 0 1 0 0 0 0.79 1.00 -12455 BFAR bifunctional apoptosis regulator 309344 1 1 1 1 0 0 1 0 0 0 0.79 1.00 -12456 KRT28 keratin 28 319648 1 1 1 3 1 0 0 0 0 0 0.79 1.00 -12457 CXorf23 chromosome X open reading frame 23 468832 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -12458 C1orf190 chromosome 1 open reading frame 190 160468 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12459 ISLR2 immunoglobulin superfamily containing leucine-rich repeat 2 453740 4 4 4 3 3 0 0 0 1 0 0.79 1.00 -12460 TXNDC16 thioredoxin domain containing 16 572096 2 2 2 0 0 0 2 0 0 0 0.79 1.00 -12461 HOXD3 homeobox D3 270256 2 2 2 0 1 0 0 0 1 0 0.79 1.00 -12462 OTOP3 otopetrin 3 358792 3 3 3 3 1 1 1 0 0 0 0.79 1.00 -12463 GTF2H4 general transcription factor IIH, polypeptide 4, 52kDa 233828 1 1 1 1 0 0 1 0 0 0 0.79 1.00 -12464 TTBK2 tau tubulin kinase 2 849184 6 5 6 2 0 3 3 0 0 0 0.79 1.00 -12465 PTX4 292656 1 1 1 1 0 0 0 1 0 0 0.79 1.00 -12466 FZD4 frizzled homolog 4 (Drosophila) 350028 2 2 2 0 0 2 0 0 0 0 0.79 1.00 -12467 MEGF9 multiple EGF-like-domains 9 349944 2 2 2 0 1 0 1 0 0 0 0.79 1.00 -12468 SMTN smoothelin 588488 3 3 3 0 1 0 1 0 1 0 0.79 1.00 -12469 HOXB6 homeobox B6 126108 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12470 DACH1 dachshund homolog 1 (Drosophila) 418236 1 1 1 0 0 0 0 0 1 0 0.79 1.00 -12471 PLCB3 phospholipase C, beta 3 (phosphatidylinositol-specific) 736356 4 4 4 1 2 1 0 0 1 0 0.79 1.00 -12472 HMGCR 3-hydroxy-3-methylglutaryl-Coenzyme A reductase 614432 3 3 3 0 2 1 0 0 0 0 0.79 1.00 -12473 OR2A1 olfactory receptor, family 2, subfamily A, member 1 170884 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12474 BDH1 3-hydroxybutyrate dehydrogenase, type 1 236544 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -12475 CSAD cysteine sulfinic acid decarboxylase 352752 2 2 2 0 1 1 0 0 0 0 0.79 1.00 -12476 GNA11 guanine nucleotide binding protein (G protein), alpha 11 (Gq class) 225680 1 1 1 1 1 0 0 0 0 0 0.79 1.00 -12477 NUP210L nucleoporin 210kDa-like 1305112 10 6 10 1 2 3 4 0 1 0 0.79 1.00 -12478 CHRNA9 cholinergic receptor, nicotinic, alpha 9 327040 2 2 2 2 1 1 0 0 0 0 0.80 1.00 -12479 IRAK3 interleukin-1 receptor-associated kinase 3 381248 3 2 2 0 2 1 0 0 0 0 0.80 1.00 -12480 TBL1Y transducin (beta)-like 1Y-linked 227500 1 1 1 1 0 0 0 0 1 0 0.80 1.00 -12481 DFNB59 deafness, autosomal recessive 59 242592 1 1 1 1 1 0 0 0 0 0 0.80 1.00 -12482 ADAP2 244608 1 1 1 2 0 0 1 0 0 0 0.80 1.00 -12483 CCDC50 coiled-coil domain containing 50 335328 2 2 2 2 1 1 0 0 0 0 0.80 1.00 -12484 SLC24A4 solute carrier family 24 (sodium/potassium/calcium exchanger), member 4 422464 2 2 2 5 1 0 1 0 0 0 0.80 1.00 -12485 PKN1 protein kinase N1 554460 3 3 3 2 2 0 0 0 1 0 0.80 1.00 -12486 DIRC2 disrupted in renal carcinoma 2 290392 1 1 1 0 0 0 0 0 1 0 0.80 1.00 -12487 MED13 mediator complex subunit 13 1482180 12 7 12 2 3 3 5 0 1 0 0.80 1.00 -12488 C19orf2 chromosome 19 open reading frame 2 351904 2 2 2 4 1 0 1 0 0 0 0.80 1.00 -12489 GPR65 G protein-coupled receptor 65 228032 1 1 1 2 1 0 0 0 0 0 0.80 1.00 -12490 ZNF71 zinc finger protein 71 327656 2 2 2 3 1 1 0 0 0 0 0.80 1.00 -12491 OSBPL10 oxysterol binding protein-like 10 469340 3 3 3 4 3 0 0 0 0 0 0.80 1.00 -12492 SQLE squalene epoxidase 382520 2 2 2 0 0 1 1 0 0 0 0.80 1.00 -12493 LZTS1 leucine zipper, putative tumor suppressor 1 375456 2 2 2 3 1 1 0 0 0 0 0.80 1.00 -12494 PPARG peroxisome proliferator-activated receptor gamma 345128 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -12495 PCDH8 protocadherin 8 409948 3 3 3 2 1 1 0 0 1 0 0.80 1.00 -12496 TRAF1 TNF receptor-associated factor 1 279020 2 2 2 0 2 0 0 0 0 0 0.80 1.00 -12497 FAM118A family with sequence similarity 118, member A 247744 1 1 1 1 1 0 0 0 0 0 0.80 1.00 -12498 SPTBN1 spectrin, beta, non-erythrocytic 1 1665188 10 8 10 2 4 2 2 0 2 0 0.80 1.00 -12499 PDK2 pyruvate dehydrogenase kinase, isozyme 2 271928 2 2 2 0 0 2 0 0 0 0 0.80 1.00 -12500 NDRG3 NDRG family member 3 266112 1 1 1 1 1 0 0 0 0 0 0.80 1.00 -12501 BAT2L1 1467980 9 7 9 2 2 4 1 0 2 0 0.80 1.00 -12502 UBE2Q2 ubiquitin-conjugating enzyme E2Q (putative) 2 258132 1 1 1 1 1 0 0 0 0 0 0.80 1.00 -12503 EDC4 enhancer of mRNA decapping 4 942984 3 3 3 1 0 1 0 0 2 0 0.80 1.00 -12504 ALS2CR4 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 4 274240 1 1 1 0 0 0 1 0 0 0 0.80 1.00 -12505 ACOT11 acyl-CoA thioesterase 11 443224 3 3 3 1 1 2 0 0 0 0 0.80 1.00 -12506 FGF17 fibroblast growth factor 17 128968 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12507 TRIP13 thyroid hormone receptor interactor 13 284116 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12508 CHST14 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 14 190428 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12509 HDAC11 histone deacetylase 11 238364 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12510 ARIH1 ariadne homolog, ubiquitin-conjugating enzyme E2 binding protein, 1 (Drosophila) 355468 3 2 3 0 0 1 2 0 0 0 0.80 1.00 -12511 SLC27A5 solute carrier family 27 (fatty acid transporter), member 5 398532 4 4 4 0 0 4 0 0 0 0 0.80 1.00 -12512 GJB4 gap junction protein, beta 4, 30.3kDa 180320 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12513 PIGW phosphatidylinositol glycan anchor biosynthesis, class W 340256 1 1 1 0 0 0 1 0 0 0 0.80 1.00 -12514 STK17A serine/threonine kinase 17a 248052 1 1 1 1 0 1 0 0 0 0 0.80 1.00 -12515 OPRD1 opioid receptor, delta 1 208124 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12516 CDCA7 cell division cycle associated 7 302736 2 2 2 2 1 0 1 0 0 0 0.80 1.00 -12517 KCNT1 potassium channel, subfamily T, member 1 696144 3 3 3 2 1 1 0 0 1 0 0.80 1.00 -12518 ATAD3B ATPase family, AAA domain containing 3B 248196 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12519 C14orf45 chromosome 14 open reading frame 45 356168 1 1 1 0 0 0 0 0 1 0 0.80 1.00 -12520 PHF20 PHD finger protein 20 695968 6 3 6 0 1 3 2 0 0 0 0.80 1.00 -12521 XCR1 chemokine (C motif) receptor 1 225344 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12522 LGALS4 lectin, galactoside-binding, soluble, 4 (galectin 4) 226688 1 1 1 1 0 1 0 0 0 0 0.80 1.00 -12523 AFG3L2 AFG3 ATPase family gene 3-like 2 (yeast) 525056 2 2 2 1 0 1 0 0 1 0 0.80 1.00 -12524 ATP6V0A2 ATPase, H+ transporting, lysosomal V0 subunit a2 583660 2 2 2 2 1 0 1 0 0 0 0.80 1.00 -12525 ANKS6 ankyrin repeat and sterile alpha motif domain containing 6 518112 4 3 4 1 1 1 2 0 0 0 0.80 1.00 -12526 LRPPRC leucine-rich PPR-motif containing 937216 5 4 5 4 1 3 0 0 1 0 0.80 1.00 -12527 NFKBID nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, delta 219072 1 1 1 1 1 0 0 0 0 0 0.80 1.00 -12528 NOS2 742088 6 5 6 2 3 1 1 0 1 0 0.80 1.00 -12529 NCK1 NCK adaptor protein 1 256704 1 1 1 1 0 1 0 0 0 0 0.80 1.00 -12530 ASB12 ankyrin repeat and SOCS box-containing 12 210112 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12531 SLC30A7 solute carrier family 30 (zinc transporter), member 7 263200 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -12532 TRIB3 tribbles homolog 3 (Drosophila) 202776 1 1 1 2 0 0 0 0 1 0 0.80 1.00 -12533 EI24 etoposide induced 2.4 mRNA 225920 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12534 GLOD4 glyoxalase domain containing 4 208992 1 1 1 0 0 0 1 0 0 0 0.80 1.00 -12535 PPM1G protein phosphatase 1G (formerly 2C), magnesium-dependent, gamma isoform 343192 1 1 1 1 1 0 0 0 0 0 0.80 1.00 -12536 SPDEF SAM pointed domain containing ets transcription factor 220032 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -12537 JMJD6 jumonji domain containing 6 284284 2 2 2 0 1 1 0 0 0 0 0.80 1.00 -12538 SASS6 spindle assembly 6 homolog (C. elegans) 457408 2 2 2 0 1 1 0 0 0 0 0.80 1.00 -12539 PRODH2 proline dehydrogenase (oxidase) 2 357256 1 1 1 1 0 1 0 0 0 0 0.80 1.00 -12540 PSRC1 proline/serine-rich coiled-coil 1 231028 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12541 GARNL3 GTPase activating Rap/RanGAP domain-like 3 706496 3 3 3 2 0 1 1 0 1 0 0.80 1.00 -12542 SLC37A1 solute carrier family 37 (glycerol-3-phosphate transporter), member 1 375872 2 2 2 0 0 1 1 0 0 0 0.80 1.00 -12543 HSP90AA1 heat shock protein 90kDa alpha (cytosolic), class A member 1 578268 3 3 3 0 1 1 0 0 1 0 0.80 1.00 -12544 ZNF597 zinc finger protein 597 288288 1 1 1 2 1 0 0 0 0 0 0.80 1.00 -12545 FUT2 fucosyltransferase 2 (secretor status included) 204932 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12546 CD40 CD40 molecule, TNF receptor superfamily member 5 194880 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12547 WSB2 WD repeat and SOCS box-containing 2 276416 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -12548 SLC38A4 solute carrier family 38, member 4 381696 1 1 1 3 0 0 1 0 0 0 0.80 1.00 -12549 NFE2L2 nuclear factor (erythroid-derived 2)-like 2 400736 4 2 4 0 1 1 1 0 1 0 0.80 1.00 -12550 PPAP2B phosphatidic acid phosphatase type 2B 215040 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -12551 PSTPIP2 proline-serine-threonine phosphatase interacting protein 2 229376 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12552 TRMT6 tRNA methyltransferase 6 homolog (S. cerevisiae) 344512 1 1 1 1 0 1 0 0 0 0 0.80 1.00 -12553 GPKOW G patch domain and KOW motifs 327000 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12554 APOA5 apolipoprotein A-V 211316 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12555 FAM129A family with sequence similarity 129, member A 626696 4 3 4 1 1 0 2 0 1 0 0.80 1.00 -12556 C22orf29 chromosome 22 open reading frame 29 238616 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12557 STK32A serine/threonine kinase 32A 282888 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -12558 ECM1 extracellular matrix protein 1 371924 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12559 MST4 283648 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -12560 TGDS TDP-glucose 4,6-dehydratase 246624 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12561 SYNPO2L synaptopodin 2-like 507360 5 4 5 0 1 3 1 0 0 0 0.80 1.00 -12562 ZNF181 zinc finger protein 181 345408 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12563 MSTN myostatin 255360 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12564 RDH11 retinol dehydrogenase 11 (all-trans/9-cis/11-cis) 220640 1 1 1 1 0 1 0 0 0 0 0.80 1.00 -12565 GPR110 G protein-coupled receptor 110 624736 2 2 2 3 0 1 1 0 0 0 0.80 1.00 -12566 MYOG myogenin (myogenic factor 4) 153888 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -12567 CRLF3 cytokine receptor-like factor 3 293692 2 1 2 0 0 1 0 0 1 0 0.80 1.00 -12568 ATP2A1 ATPase, Ca++ transporting, cardiac muscle, fast twitch 1 695072 6 4 6 2 3 2 0 0 1 0 0.80 1.00 -12569 FAM71F2 family with sequence similarity 71, member F2 209672 2 1 2 0 1 1 0 0 0 0 0.80 1.00 -12570 EPSTI1 epithelial stromal interaction 1 (breast) 272216 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -12571 CHAF1B chromatin assembly factor 1, subunit B (p60) 387968 2 2 2 1 1 0 1 0 0 0 0.80 1.00 -12572 COQ6 coenzyme Q6 homolog, monooxygenase (S. cerevisiae) 314152 2 2 2 1 0 2 0 0 0 0 0.80 1.00 -12573 LPAR2 lysophosphatidic acid receptor 2 196840 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -12574 SH2D4B SH2 domain containing 4B 201688 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -12575 NOSTRIN nitric oxide synthase trafficker 355040 1 1 1 0 0 0 0 0 1 0 0.80 1.00 -12576 TMEM67 transmembrane protein 67 689920 4 3 4 0 0 2 2 0 0 0 0.80 1.00 -12577 OTOP2 otopetrin 2 363420 3 3 3 1 1 2 0 0 0 0 0.80 1.00 -12578 CEACAM1 carcinoembryonic antigen-related cell adhesion molecule 1 (biliary glycoprotein) 362208 1 1 1 2 0 1 0 0 0 0 0.80 1.00 -12579 C1orf55 chromosome 1 open reading frame 55 306656 3 2 3 0 0 2 1 0 0 0 0.80 1.00 -12580 KEAP1 kelch-like ECH-associated protein 1 400036 3 3 3 1 1 1 1 0 0 0 0.80 1.00 -12581 INPP5D inositol polyphosphate-5-phosphatase, 145kDa 627284 4 4 3 0 3 1 0 0 0 0 0.80 1.00 -12582 POLL polymerase (DNA directed), lambda 384664 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -12583 KHK ketohexokinase (fructokinase) 231344 1 1 1 1 1 0 0 0 0 0 0.80 1.00 -12584 ENPP7 ectonucleotide pyrophosphatase/phosphodiesterase 7 295960 2 2 2 1 1 1 0 0 0 0 0.80 1.00 -12585 TDP2 250208 1 1 1 0 0 0 1 0 0 0 0.80 1.00 -12586 KRT80 keratin 80 305684 1 1 1 2 1 0 0 0 0 0 0.80 1.00 -12587 TPSD1 tryptase delta 1 164188 1 1 1 1 1 0 0 0 0 0 0.80 1.00 -12588 C1orf106 chromosome 1 open reading frame 106 340032 1 1 1 0 0 0 0 0 1 0 0.80 1.00 -12589 HHATL hedgehog acyltransferase-like 345000 2 2 2 0 1 1 0 0 0 0 0.80 1.00 -12590 MAD1L1 MAD1 mitotic arrest deficient-like 1 (yeast) 480900 2 2 2 0 1 0 0 1 0 0 0.80 1.00 -12591 C10orf68 chromosome 10 open reading frame 68 440608 2 2 2 0 0 2 0 0 0 0 0.80 1.00 -12592 GLI2 GLI-Kruppel family member GLI2 832496 4 4 4 3 2 1 0 0 1 0 0.80 1.00 -12593 SETD1A SET domain containing 1A 1025320 8 7 8 1 6 2 0 0 0 0 0.80 1.00 -12594 EIF4G1 eukaryotic translation initiation factor 4 gamma, 1 1083940 9 7 9 3 5 1 1 0 2 0 0.80 1.00 -12595 C1orf14 chromosome 1 open reading frame 14 396340 2 2 2 1 1 0 1 0 0 0 0.80 1.00 -12596 ANGEL1 angel homolog 1 (Drosophila) 444640 2 2 2 0 0 2 0 0 0 0 0.80 1.00 -12597 BCL3 B-cell CLL/lymphoma 3 209300 1 1 1 1 0 1 0 0 0 0 0.80 1.00 -12598 PLEKHG4B pleckstrin homology domain containing, family G (with RhoGef domain) member 4B 694192 6 5 5 3 2 1 3 0 0 0 0.80 1.00 -12599 WDR76 WD repeat domain 76 432992 2 2 2 0 2 0 0 0 0 0 0.81 1.00 -12600 CPNE8 copine VIII 396784 4 2 4 1 2 1 1 0 0 0 0.81 1.00 -12601 KIAA1949 KIAA1949 246260 2 2 2 2 0 2 0 0 0 0 0.81 1.00 -12602 ZC3H10 zinc finger CCCH-type containing 10 293216 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12603 RBMS2 RNA binding motif, single stranded interacting protein 2 285824 1 1 1 1 0 0 1 0 0 0 0.81 1.00 -12604 MYB v-myb myeloblastosis viral oncogene homolog (avian) 520352 3 3 3 2 2 1 0 0 0 0 0.81 1.00 -12605 C1orf172 chromosome 1 open reading frame 172 258804 1 1 1 1 0 1 0 0 0 0 0.81 1.00 -12606 SMEK1 SMEK homolog 1, suppressor of mek1 (Dictyostelium) 562968 2 2 2 0 0 1 1 0 0 0 0.81 1.00 -12607 KRT35 keratin 35 312704 3 2 3 0 1 1 1 0 0 0 0.81 1.00 -12608 NRXN2 neurexin 2 918688 6 6 6 1 3 2 0 0 1 0 0.81 1.00 -12609 ROM1 retinal outer segment membrane protein 1 235620 1 1 1 0 0 0 1 0 0 0 0.81 1.00 -12610 ARHGAP30 Rho GTPase activating protein 30 738108 3 3 3 1 1 1 1 0 0 0 0.81 1.00 -12611 MTMR4 myotubularin related protein 4 819840 3 3 3 2 0 0 2 0 1 0 0.81 1.00 -12612 MYH15 myosin, heavy chain 15 1346016 13 7 13 2 1 11 1 0 0 0 0.81 1.00 -12613 GPRC5D G protein-coupled receptor, family C, group 5, member D 235200 1 1 1 1 0 1 0 0 0 0 0.81 1.00 -12614 TSSK6 testis-specific serine kinase 6 149492 1 1 1 0 0 0 1 0 0 0 0.81 1.00 -12615 PICK1 protein interacting with PRKCA 1 265156 1 1 1 0 0 0 1 0 0 0 0.81 1.00 -12616 ENPP4 ectonucleotide pyrophosphatase/phosphodiesterase 4 (putative function) 307776 2 1 2 1 0 1 1 0 0 0 0.81 1.00 -12617 MARCH9 membrane-associated ring finger (C3HC4) 9 149844 2 1 2 0 1 1 0 0 0 0 0.81 1.00 -12618 NCOA2 nuclear receptor coactivator 2 1000440 7 6 7 2 2 2 3 0 0 0 0.81 1.00 -12619 SDC1 syndecan 1 193676 1 1 1 1 0 1 0 0 0 0 0.81 1.00 -12620 ACTN3 actinin, alpha 3 559468 3 3 3 4 2 1 0 0 0 0 0.81 1.00 -12621 ARAP3 1037772 8 7 8 3 1 6 1 0 0 0 0.81 1.00 -12622 ANXA6 annexin A6 461320 3 3 3 2 2 1 0 0 0 0 0.81 1.00 -12623 KLB klotho beta 676984 5 3 5 1 0 3 2 0 0 0 0.81 1.00 -12624 GSDMA 292704 1 1 1 2 0 0 0 0 1 0 0.81 1.00 -12625 AIRE autoimmune regulator 251636 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12626 SEMA7A semaphorin 7A, GPI membrane anchor (John Milton Hagen blood group) 408072 2 2 2 1 1 0 1 0 0 0 0.81 1.00 -12627 PLCD3 phospholipase C, delta 3 373768 2 2 2 1 0 1 1 0 0 0 0.81 1.00 -12628 WDR38 WD repeat domain 38 203392 1 1 1 0 1 0 0 0 0 0 0.81 1.00 -12629 ERLIN2 ER lipid raft associated 2 247072 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12630 GDF15 growth differentiation factor 15 154000 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12631 BRD4 bromodomain containing 4 813440 4 4 4 1 1 2 0 0 1 0 0.81 1.00 -12632 FAM46A family with sequence similarity 46, member A 251804 1 1 1 2 1 0 0 0 0 0 0.81 1.00 -12633 KIAA0652 362432 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12634 ANKRD13D ankyrin repeat domain 13 family, member D 307080 2 2 2 0 2 0 0 0 0 0 0.81 1.00 -12635 RSPH10B radial spoke head 10 homolog B (Chlamydomonas) 611648 3 3 3 1 3 0 0 0 0 0 0.81 1.00 -12636 RANBP9 RAN binding protein 9 409948 1 1 1 1 0 0 1 0 0 0 0.81 1.00 -12637 VPS33B vacuolar protein sorting 33 homolog B (yeast) 433184 2 2 2 0 0 0 2 0 0 0 0.81 1.00 -12638 HOXC6 homeobox C6 160384 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12639 ARSA arylsulfatase A 191380 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12640 LRPAP1 low density lipoprotein receptor-related protein associated protein 1 198184 1 1 1 1 0 1 0 0 0 0 0.81 1.00 -12641 IDH3G isocitrate dehydrogenase 3 (NAD+) gamma 270872 2 2 2 2 2 0 0 0 0 0 0.81 1.00 -12642 RNF19A ring finger protein 19A 571872 4 2 4 1 1 3 0 0 0 0 0.81 1.00 -12643 NUP54 nucleoporin 54kDa 351992 3 2 3 1 1 1 1 0 0 0 0.81 1.00 -12644 MDGA1 MAM domain containing glycosylphosphatidylinositol anchor 1 555524 6 4 6 4 3 1 1 0 1 0 0.81 1.00 -12645 APPBP2 amyloid beta precursor protein (cytoplasmic tail) binding protein 2 405440 1 1 1 1 0 0 0 0 1 0 0.81 1.00 -12646 USP34 ubiquitin specific peptidase 34 2455264 17 9 15 6 4 6 4 0 3 0 0.81 1.00 -12647 SFRP5 secreted frizzled-related protein 5 139540 1 1 1 0 1 0 0 0 0 0 0.81 1.00 -12648 ATP6V0D1 ATPase, H+ transporting, lysosomal 38kDa, V0 subunit d1 243712 2 1 2 1 1 1 0 0 0 0 0.81 1.00 -12649 P4HTM 293436 1 1 1 1 0 0 0 0 1 0 0.81 1.00 -12650 KIF1A kinesin family member 1A 1040684 6 6 6 2 6 0 0 0 0 0 0.81 1.00 -12651 ALAD aminolevulinate, delta-, dehydratase 232204 1 1 1 1 1 0 0 0 0 0 0.81 1.00 -12652 PARD6A par-6 partitioning defective 6 homolog alpha (C. elegans) 214200 2 1 2 0 0 1 1 0 0 0 0.81 1.00 -12653 CRTC3 CREB regulated transcription coactivator 3 399616 2 2 2 1 1 1 0 0 0 0 0.81 1.00 -12654 ARGLU1 arginine and glutamate rich 1 183176 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12655 SLC47A2 solute carrier family 47, member 2 420448 1 1 1 1 0 0 1 0 0 0 0.81 1.00 -12656 GNB1L guanine nucleotide binding protein (G protein), beta polypeptide 1-like 183740 1 1 1 1 1 0 0 0 0 0 0.81 1.00 -12657 TLR6 toll-like receptor 6 536480 2 2 2 2 1 0 1 0 0 0 0.81 1.00 -12658 DDX31 DEAD (Asp-Glu-Ala-Asp) box polypeptide 31 536256 4 3 4 2 2 1 0 0 1 0 0.81 1.00 -12659 DNAJC7 DnaJ (Hsp40) homolog, subfamily C, member 7 340256 3 2 3 0 1 1 1 0 0 0 0.81 1.00 -12660 PYGB phosphorylase, glycogen; brain 576800 4 4 4 1 2 1 1 0 0 0 0.81 1.00 -12661 PWWP2B PWWP domain containing 2B 208768 1 1 1 0 0 0 0 0 1 0 0.81 1.00 -12662 AP1M2 adaptor-related protein complex 1, mu 2 subunit 279360 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12663 FAM46C family with sequence similarity 46, member C 264320 1 1 1 0 1 0 0 0 0 0 0.81 1.00 -12664 NPLOC4 nuclear protein localization 4 homolog (S. cerevisiae) 404040 3 3 3 0 2 1 0 0 0 0 0.81 1.00 -12665 GOLGA2 golgi autoantigen, golgin subfamily a, 2 682932 4 3 4 6 1 1 0 1 1 0 0.81 1.00 -12666 AMY2B amylase, alpha 2B (pancreatic) 342104 1 1 1 0 0 0 1 0 0 0 0.81 1.00 -12667 ITGAX integrin, alpha X (complement component 3 receptor 4 subunit) 783336 6 4 6 2 2 3 0 0 1 0 0.81 1.00 -12668 DHH desert hedgehog homolog (Drosophila) 182000 1 1 1 2 1 0 0 0 0 0 0.81 1.00 -12669 LAP3 leucine aminopeptidase 3 351704 2 2 2 2 2 0 0 0 0 0 0.81 1.00 -12670 TPST2 tyrosylprotein sulfotransferase 2 218412 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12671 LRRFIP1 leucine rich repeat (in FLII) interacting protein 1 762360 4 4 4 2 2 1 1 0 0 0 0.81 1.00 -12672 DDX4 DEAD (Asp-Glu-Ala-Asp) box polypeptide 4 506016 3 3 3 1 1 1 1 0 0 0 0.81 1.00 -12673 NBR1 neighbor of BRCA1 gene 1 391200 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12674 FLII flightless I homolog (Drosophila) 843720 7 6 7 0 3 3 0 0 1 0 0.81 1.00 -12675 C17orf53 chromosome 17 open reading frame 53 442848 2 2 2 1 0 0 2 0 0 0 0.81 1.00 -12676 ATXN3 ataxin 3 253120 1 1 1 0 1 0 0 0 0 0 0.81 1.00 -12677 PSMA7 proteasome (prosome, macropain) subunit, alpha type, 7 163660 1 1 1 1 0 1 0 0 0 0 0.81 1.00 -12678 PDE12 phosphodiesterase 12 394240 2 2 2 0 0 1 1 0 0 0 0.81 1.00 -12679 RENBP renin binding protein 252032 1 1 1 0 0 0 1 0 0 0 0.81 1.00 -12680 UBQLN1 ubiquilin 1 389172 2 1 2 4 0 0 1 0 1 0 0.81 1.00 -12681 LCAT lecithin-cholesterol acyltransferase 249676 1 1 1 0 1 0 0 0 0 0 0.81 1.00 -12682 SIK2 609736 4 3 4 1 1 1 1 0 1 0 0.81 1.00 -12683 NR2F6 nuclear receptor subfamily 2, group F, member 6 116096 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12684 CUX1 cut-like homeobox 1 1111400 6 6 6 5 3 1 1 0 1 0 0.81 1.00 -12685 FAM131B family with sequence similarity 131, member B 229376 1 1 1 2 0 0 1 0 0 0 0.81 1.00 -12686 SEH1L SEH1-like (S. cerevisiae) 285796 1 1 1 1 0 1 0 0 0 0 0.81 1.00 -12687 OSBPL2 oxysterol binding protein-like 2 334880 2 2 2 1 1 1 0 0 0 0 0.81 1.00 -12688 GATA4 GATA binding protein 4 174832 1 1 1 0 1 0 0 0 0 0 0.81 1.00 -12689 ADAM20 ADAM metallopeptidase domain 20 523040 1 1 1 2 1 0 0 0 0 0 0.81 1.00 -12690 CXCL16 chemokine (C-X-C motif) ligand 16 188608 1 1 1 1 0 1 0 0 0 0 0.81 1.00 -12691 ST3GAL2 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 241164 1 1 1 1 0 0 1 0 0 0 0.81 1.00 -12692 PECAM1 platelet/endothelial cell adhesion molecule (CD31 antigen) 278264 2 2 2 0 0 2 0 0 0 0 0.81 1.00 -12693 PLXNA2 plexin A2 1295000 8 7 8 1 4 1 1 0 2 0 0.81 1.00 -12694 SLC45A3 solute carrier family 45, member 3 340256 1 1 1 1 0 0 0 0 1 0 0.81 1.00 -12695 PCDHGA8 protocadherin gamma subfamily A, 8 615104 7 5 7 0 5 1 0 0 1 0 0.81 1.00 -12696 PCDHA11 protocadherin alpha 11 621572 6 6 6 0 4 2 0 0 0 0 0.81 1.00 -12697 AQP7 aquaporin 7 232688 1 1 1 0 1 0 0 0 0 0 0.81 1.00 -12698 GPN1 266784 1 1 1 0 1 0 0 0 0 0 0.81 1.00 -12699 RIC3 resistance to inhibitors of cholinesterase 3 homolog (C. elegans) 253344 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -12700 GK5 glycerol kinase 5 (putative) 356728 1 1 1 0 0 0 1 0 0 0 0.81 1.00 -12701 ZKSCAN4 zinc finger with KRAB and SCAN domains 4 369796 2 2 1 0 2 0 0 0 0 0 0.81 1.00 -12702 HIF1A hypoxia-inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor) 563880 3 2 3 0 1 1 0 0 1 0 0.81 1.00 -12703 BRD2 bromodomain containing 2 372204 3 2 3 1 1 0 2 0 0 0 0.81 1.00 -12704 BARHL1 BarH-like homeobox 1 181916 1 1 1 1 0 0 1 0 0 0 0.81 1.00 -12705 LRRC8C leucine rich repeat containing 8 family, member C 542080 2 2 2 3 1 1 0 0 0 0 0.81 1.00 -12706 TFAP2A transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha) 305772 2 2 2 4 2 0 0 0 0 0 0.82 1.00 -12707 DUOXA1 dual oxidase maturation factor 1 314708 2 2 2 1 1 1 0 0 0 0 0.82 1.00 -12708 RNF145 ring finger protein 145 473620 5 2 5 0 1 3 1 0 0 0 0.82 1.00 -12709 WWC3 WWC family member 3 700200 7 7 7 4 4 3 0 0 0 0 0.82 1.00 -12710 ACAD10 acyl-Coenzyme A dehydrogenase family, member 10 729064 3 3 3 2 1 2 0 0 0 0 0.82 1.00 -12711 AATF apoptosis antagonizing transcription factor 366464 2 2 2 2 1 1 0 0 0 0 0.82 1.00 -12712 POPDC2 popeye domain containing 2 248864 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12713 B3GALT4 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 4 248864 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12714 RBM6 RNA binding motif protein 6 773248 6 4 6 1 2 1 3 0 0 0 0.82 1.00 -12715 FAM71D family with sequence similarity 71, member D 279544 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12716 ZNF746 zinc finger protein 746 350140 2 2 2 2 0 1 1 0 0 0 0.82 1.00 -12717 ZNF513 zinc finger protein 513 350588 2 2 2 0 1 0 1 0 0 0 0.82 1.00 -12718 AP3M2 adaptor-related protein complex 3, mu 2 subunit 288736 1 1 1 0 1 0 0 0 0 0 0.82 1.00 -12719 MTRR 5-methyltetrahydrofolate-homocysteine methyltransferase reductase 500724 2 2 2 1 0 0 2 0 0 0 0.82 1.00 -12720 CHERP calcium homeostasis endoplasmic reticulum protein 526684 3 3 3 1 0 2 0 1 0 0 0.82 1.00 -12721 MAGEF1 melanoma antigen family F, 1 194852 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12722 SLC5A10 solute carrier family 5 (sodium/glucose cotransporter), member 10 425376 2 2 2 1 1 0 1 0 0 0 0.82 1.00 -12723 PRUNE2 prune homolog 2 (Drosophila) 2086984 13 10 13 8 4 7 2 0 0 0 0.82 1.00 -12724 CCDC74A coiled-coil domain containing 74A 244664 1 1 1 2 0 1 0 0 0 0 0.82 1.00 -12725 CLEC14A C-type lectin domain family 14, member A 261280 2 2 2 5 1 1 0 0 0 0 0.82 1.00 -12726 OR1M1 olfactory receptor, family 1, subfamily M, member 1 211904 1 1 1 2 0 1 0 0 0 0 0.82 1.00 -12727 SH2D3A SH2 domain containing 3A 312196 3 3 3 1 2 1 0 0 0 0 0.82 1.00 -12728 C15orf42 chromosome 15 open reading frame 42 1236284 9 7 9 1 4 1 3 0 1 0 0.82 1.00 -12729 NBPF3 neuroblastoma breakpoint family, member 3 426048 1 1 1 1 1 0 0 0 0 0 0.82 1.00 -12730 ALDOA aldolase A, fructose-bisphosphate 241024 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12731 SQSTM1 sequestosome 1 270116 1 1 1 1 1 0 0 0 0 0 0.82 1.00 -12732 LRRC23 leucine rich repeat containing 23 277984 1 1 1 2 0 0 1 0 0 0 0.82 1.00 -12733 SPOCK2 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 2 241640 1 1 1 1 1 0 0 0 0 0 0.82 1.00 -12734 ISM1 286048 2 2 2 6 1 1 0 0 0 0 0.82 1.00 -12735 ZNF229 zinc finger protein 229 558656 3 3 3 0 2 1 0 0 0 0 0.82 1.00 -12736 MYNN myoneurin 416864 2 2 2 0 0 2 0 0 0 0 0.82 1.00 -12737 BCAT1 branched chain aminotransferase 1, cytosolic 271488 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12738 C17orf63 chromosome 17 open reading frame 63 357528 2 2 2 1 0 1 1 0 0 0 0.82 1.00 -12739 PIK3R2 phosphoinositide-3-kinase, regulatory subunit 2 (beta) 339836 1 1 1 1 0 0 0 0 1 0 0.82 1.00 -12740 RPN2 ribophorin II 447776 1 1 1 1 0 0 1 0 0 0 0.82 1.00 -12741 KIAA0406 KIAA0406 738752 2 2 2 0 0 1 1 0 0 0 0.82 1.00 -12742 DNM2 dynamin 2 600516 6 5 6 3 3 3 0 0 0 0 0.82 1.00 -12743 ACOX2 acyl-Coenzyme A oxidase 2, branched chain 470848 2 2 2 1 0 1 0 1 0 0 0.82 1.00 -12744 HS3ST1 heparan sulfate (glucosamine) 3-O-sulfotransferase 1 194572 2 2 1 1 2 0 0 0 0 0 0.82 1.00 -12745 RORA RAR-related orphan receptor A 423584 2 2 2 0 1 1 0 0 0 0 0.82 1.00 -12746 ATP1B2 ATPase, Na+/K+ transporting, beta 2 polypeptide 201824 2 1 2 1 0 1 1 0 0 0 0.82 1.00 -12747 PARP2 poly (ADP-ribose) polymerase family, member 2 403928 2 2 2 2 1 1 0 0 0 0 0.82 1.00 -12748 MTMR9 myotubularin related protein 9 378560 2 2 2 0 1 0 1 0 0 0 0.82 1.00 -12749 TTLL4 tubulin tyrosine ligase-like family, member 4 822024 5 4 5 1 2 1 2 0 0 0 0.82 1.00 -12750 HSPA12A heat shock 70kDa protein 12A 441056 3 3 3 2 2 0 1 0 0 0 0.82 1.00 -12751 TJP1 tight junction protein 1 (zona occludens 1) 1193472 8 6 8 4 3 1 1 0 1 2 0.82 1.00 -12752 MATN1 matrilin 1, cartilage matrix protein 283436 2 2 2 0 2 0 0 0 0 0 0.82 1.00 -12753 PLK3 polo-like kinase 3 (Drosophila) 383468 2 2 2 0 1 0 1 0 0 0 0.82 1.00 -12754 SEPP1 selenoprotein P, plasma, 1 270328 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12755 WWP2 WW domain containing E3 ubiquitin protein ligase 2 606816 4 3 4 6 1 1 1 0 1 0 0.82 1.00 -12756 KCNH3 potassium voltage-gated channel, subfamily H (eag-related), member 3 663096 5 5 5 1 2 3 0 0 0 0 0.82 1.00 -12757 ATP2B4 ATPase, Ca++ transporting, plasma membrane 4 869120 8 5 8 3 3 5 0 0 0 0 0.82 1.00 -12758 MTA1 metastasis associated 1 350028 1 1 1 0 0 0 0 0 1 0 0.82 1.00 -12759 ALX1 ALX homeobox 1 219716 1 1 1 1 0 0 1 0 0 0 0.82 1.00 -12760 C12orf66 302400 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12761 GLRA4 glycine receptor, alpha 4 264768 1 1 1 1 1 0 0 0 0 0 0.82 1.00 -12762 ELANE 143696 1 1 1 0 0 0 1 0 0 0 0.82 1.00 -12763 SUMF2 sulfatase modifying factor 2 261248 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12764 SIX2 SIX homeobox 2 185248 2 2 2 1 1 1 0 0 0 0 0.82 1.00 -12765 RABEP1 rabaptin, RAB GTPase binding effector protein 1 578848 3 3 3 0 1 1 1 0 0 0 0.82 1.00 -12766 SLC26A4 solute carrier family 26, member 4 505120 4 3 4 3 1 2 1 0 0 0 0.82 1.00 -12767 LIG1 ligase I, DNA, ATP-dependent 626552 4 4 4 3 1 1 1 0 1 0 0.82 1.00 -12768 PHAX 269920 1 1 1 2 0 1 0 0 0 0 0.82 1.00 -12769 JPH2 junctophilin 2 320460 2 2 2 3 1 0 1 0 0 0 0.82 1.00 -12770 SIN3B SIN3 homolog B, transcription regulator (yeast) 762652 4 4 4 5 3 1 0 0 0 0 0.82 1.00 -12771 SSFA2 sperm specific antigen 2 827088 3 3 3 2 1 1 0 0 1 0 0.82 1.00 -12772 RAD54L2 RAD54-like 2 (S. cerevisiae) 931592 4 4 4 1 1 2 0 0 1 0 0.82 1.00 -12773 FAM153B family with sequence similarity 153, member B 203524 1 1 1 0 1 0 0 0 0 0 0.82 1.00 -12774 FCHO1 FCH domain only 1 585588 5 4 5 1 2 2 1 0 0 0 0.82 1.00 -12775 PAQR8 progestin and adipoQ receptor family member VIII 239456 1 1 1 0 1 0 0 0 0 0 0.82 1.00 -12776 RAB34 RAB34, member RAS oncogene family 209776 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12777 SEMA3C sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C 520576 3 3 3 0 2 0 1 0 0 0 0.82 1.00 -12778 FASTKD2 FAST kinase domains 2 487648 5 2 5 0 1 3 0 0 1 0 0.82 1.00 -12779 PLA2G4F phospholipase A2, group IVF 576356 2 2 2 1 0 2 0 0 0 0 0.82 1.00 -12780 WDR62 WD repeat domain 62 1007452 6 6 6 2 4 1 1 0 0 0 0.82 1.00 -12781 ALX4 aristaless-like homeobox 4 198384 1 1 1 0 1 0 0 0 0 0 0.82 1.00 -12782 RTTN rotatin 1540448 7 6 7 1 2 0 2 1 2 0 0.82 1.00 -12783 DOK7 docking protein 7 202312 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12784 DDX28 DEAD (Asp-Glu-Ala-Asp) box polypeptide 28 296212 2 2 2 0 0 1 1 0 0 0 0.82 1.00 -12785 LSG1 large subunit GTPase 1 homolog (S. cerevisiae) 455392 2 2 2 0 1 1 0 0 0 0 0.82 1.00 -12786 ZNF446 zinc finger protein 446 240044 1 1 1 0 1 0 0 0 0 0 0.82 1.00 -12787 MAP3K15 mitogen-activated protein kinase kinase kinase 15 761400 4 4 4 4 1 3 0 0 0 0 0.82 1.00 -12788 SLC26A10 solute carrier family 26, member 10 376864 3 2 3 0 0 3 0 0 0 0 0.82 1.00 -12789 NLRP2 NLR family, pyrin domain containing 2 706524 4 4 4 6 3 1 0 0 0 0 0.82 1.00 -12790 TWF2 twinfilin, actin-binding protein, homolog 2 (Drosophila) 238756 1 1 1 2 1 0 0 0 0 0 0.82 1.00 -12791 ABCC6 ATP-binding cassette, sub-family C (CFTR/MRP), member 6 913756 7 6 7 3 2 3 2 0 0 0 0.82 1.00 -12792 MMP25 matrix metallopeptidase 25 290792 2 2 2 0 1 1 0 0 0 0 0.82 1.00 -12793 PEX13 peroxisome biogenesis factor 13 253568 1 1 1 1 1 0 0 0 0 0 0.82 1.00 -12794 MAP3K1 mitogen-activated protein kinase kinase kinase 1 925792 8 5 8 2 4 3 0 0 1 0 0.82 1.00 -12795 PGLYRP2 peptidoglycan recognition protein 2 358836 3 2 3 1 0 2 1 0 0 0 0.82 1.00 -12796 ACTR3B ARP3 actin-related protein 3 homolog B (yeast) 281568 1 1 1 0 0 0 0 0 1 0 0.82 1.00 -12797 ZNF823 zinc finger protein 823 414176 4 2 4 0 2 1 1 0 0 0 0.82 1.00 -12798 CELF1 340928 1 1 1 1 0 1 0 0 0 0 0.82 1.00 -12799 USP14 ubiquitin specific peptidase 14 (tRNA-guanine transglycosylase) 342496 1 1 1 0 1 0 0 0 0 0 0.82 1.00 -12800 CYFIP1 cytoplasmic FMR1 interacting protein 1 868224 6 6 6 3 1 3 2 0 0 0 0.82 1.00 -12801 SHROOM4 shroom family member 4 999384 4 4 4 2 1 0 2 0 1 0 0.82 1.00 -12802 UGT1A7 UDP glucuronosyltransferase 1 family, polypeptide A7 361312 2 2 2 0 1 1 0 0 0 0 0.82 1.00 -12803 GORAB 270816 1 1 1 2 0 1 0 0 0 0 0.82 1.00 -12804 IGHMBP2 immunoglobulin mu binding protein 2 644224 4 4 4 0 4 0 0 0 0 0 0.82 1.00 -12805 PAFAH2 platelet-activating factor acetylhydrolase 2, 40kDa 273056 1 1 1 1 1 0 0 0 0 0 0.82 1.00 -12806 STOML1 stomatin (EPB72)-like 1 266448 1 1 1 0 0 0 1 0 0 0 0.82 1.00 -12807 PHF1 PHD finger protein 1 383424 1 1 1 0 1 0 0 0 0 0 0.82 1.00 -12808 STXBP3 syntaxin binding protein 3 408312 1 1 1 1 0 0 1 0 0 0 0.82 1.00 -12809 PKP4 plakophilin 4 820512 6 5 6 3 3 0 1 0 2 0 0.82 1.00 -12810 DNPEP aspartyl aminopeptidase 331612 1 1 1 0 1 0 0 0 0 0 0.82 1.00 -12811 ABCF1 ATP-binding cassette, sub-family F (GCN20), member 1 451640 2 2 2 4 2 0 0 0 0 0 0.82 1.00 -12812 KCTD12 potassium channel tetramerisation domain containing 12 112924 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12813 NAA35 507584 2 2 2 1 0 1 0 0 1 0 0.82 1.00 -12814 ATP6V0A1 ATPase, H+ transporting, lysosomal V0 subunit a1 586656 3 3 3 1 1 2 0 0 0 0 0.82 1.00 -12815 TLR1 toll-like receptor 1 529760 5 3 5 1 1 4 0 0 0 0 0.82 1.00 -12816 TRMT61B 327488 1 1 1 1 0 0 1 0 0 0 0.82 1.00 -12817 SMARCA5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 698936 7 4 7 3 3 2 1 0 1 0 0.82 1.00 -12818 NUPL1 nucleoporin like 1 417536 2 2 2 0 1 1 0 0 0 0 0.82 1.00 -12819 BANP BTG3 associated nuclear protein 313796 3 2 3 0 2 0 0 0 1 0 0.82 1.00 -12820 ALDH3A1 aldehyde dehydrogenase 3 family, memberA1 299964 2 2 2 0 2 0 0 0 0 0 0.82 1.00 -12821 RUSC2 RUN and SH3 domain containing 2 1012816 5 5 5 4 0 3 1 1 0 0 0.82 1.00 -12822 RBMXL2 RNA binding motif protein, X-linked-like 2 152712 2 2 2 0 2 0 0 0 0 0 0.82 1.00 -12823 SLC16A6 solute carrier family 16, member 6 (monocarboxylic acid transporter 7) 340312 2 2 2 1 2 0 0 0 0 0 0.82 1.00 -12824 SARM1 sterile alpha and TIR motif containing 1 247948 1 1 1 2 0 1 0 0 0 0 0.82 1.00 -12825 SLC35A5 solute carrier family 35, member A5 290976 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -12826 MIER2 mesoderm induction early response 1, family member 2 360412 4 3 4 1 2 2 0 0 0 0 0.82 1.00 -12827 LGI4 leucine-rich repeat LGI family, member 4 255808 1 1 1 0 0 0 1 0 0 0 0.82 1.00 -12828 LDLRAD2 low density lipoprotein receptor class A domain containing 2 141036 1 1 1 0 1 0 0 0 0 0 0.82 1.00 -12829 LETM2 leucine zipper-EF-hand containing transmembrane protein 2 273952 1 1 1 0 0 0 1 0 0 0 0.82 1.00 -12830 ENTHD1 ENTH domain containing 1 413952 3 2 3 2 1 2 0 0 0 0 0.82 1.00 -12831 ADAM19 ADAM metallopeptidase domain 19 (meltrin beta) 613348 3 3 3 1 2 0 1 0 0 0 0.82 1.00 -12832 BAZ1A bromodomain adjacent to zinc finger domain, 1A 1069600 7 5 7 0 2 3 1 0 1 0 0.83 1.00 -12833 HMGCS1 3-hydroxy-3-methylglutaryl-Coenzyme A synthase 1 (soluble) 358176 1 1 1 1 1 0 0 0 0 0 0.83 1.00 -12834 GP1BA glycoprotein Ib (platelet), alpha polypeptide 428528 1 1 1 2 0 0 0 0 1 0 0.83 1.00 -12835 MVK mevalonate kinase 275744 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -12836 HTRA3 HtrA serine peptidase 3 243208 1 1 1 1 1 0 0 0 0 0 0.83 1.00 -12837 NLRP14 NLR family, pyrin domain containing 14 745024 7 3 7 4 1 4 1 0 1 0 0.83 1.00 -12838 RCOR1 REST corepressor 1 254688 1 1 1 0 0 0 1 0 0 0 0.83 1.00 -12839 SH3BP1 SH3-domain binding protein 1 304528 1 1 1 1 0 0 1 0 0 0 0.83 1.00 -12840 F2RL1 coagulation factor II (thrombin) receptor-like 1 251664 1 1 1 1 1 0 0 0 0 0 0.83 1.00 -12841 HP haptoglobin 245040 1 1 1 1 0 1 0 0 0 0 0.83 1.00 -12842 EXOC7 exocyst complex component 7 466680 2 2 2 2 2 0 0 0 0 0 0.83 1.00 -12843 SETMAR SET domain and mariner transposase fusion gene 301308 1 1 1 1 0 0 0 0 1 0 0.83 1.00 -12844 KIAA0467 KIAA0467 1729536 10 8 10 9 3 4 1 1 1 0 0.83 1.00 -12845 KCNJ13 potassium inwardly-rectifying channel, subfamily J, member 13 244384 1 1 1 1 1 0 0 0 0 0 0.83 1.00 -12846 KLHL28 kelch-like 28 (Drosophila) 387968 3 2 3 0 0 3 0 0 0 0 0.83 1.00 -12847 GREB1 1287356 12 10 12 7 6 4 1 0 1 0 0.83 1.00 -12848 RAG2 recombination activating gene 2 355628 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -12849 CCDC52 coiled-coil domain containing 52 590464 2 2 2 0 0 2 0 0 0 0 0.83 1.00 -12850 DIXDC1 DIX domain containing 1 448304 2 2 2 1 1 0 0 0 1 0 0.83 1.00 -12851 CHD7 chromodomain helicase DNA binding protein 7 1998948 11 9 11 4 3 3 3 0 2 0 0.83 1.00 -12852 LDLR low density lipoprotein receptor (familial hypercholesterolemia) 592116 5 5 5 0 3 0 2 0 0 0 0.83 1.00 -12853 NEU1 sialidase 1 (lysosomal sialidase) 193788 1 1 1 1 0 1 0 0 0 0 0.83 1.00 -12854 TKT transketolase (Wernicke-Korsakoff syndrome) 431788 3 3 3 1 3 0 0 0 0 0 0.83 1.00 -12855 CSF1R colony stimulating factor 1 receptor, formerly McDonough feline sarcoma viral (v-fms) oncogene homolog 656076 3 3 3 2 0 1 1 0 1 0 0.83 1.00 -12856 WLS 403200 1 1 1 1 0 0 1 0 0 0 0.83 1.00 -12857 HAUS5 419428 2 2 2 0 0 2 0 0 0 0 0.83 1.00 -12858 XKR4 XK, Kell blood group complex subunit-related family, member 4 375704 2 2 2 2 1 1 0 0 0 0 0.83 1.00 -12859 LTBP2 latent transforming growth factor beta binding protein 2 1167156 7 6 7 2 4 0 2 0 1 0 0.83 1.00 -12860 KRR1 KRR1, small subunit (SSU) processome component, homolog (yeast) 265664 1 1 1 3 0 1 0 0 0 0 0.83 1.00 -12861 HARS histidyl-tRNA synthetase 354368 2 1 2 0 1 0 0 0 1 0 0.83 1.00 -12862 UGT2B10 UDP glucuronosyltransferase 2 family, polypeptide B10 360864 1 1 1 0 0 0 1 0 0 0 0.83 1.00 -12863 ACOT7 acyl-CoA thioesterase 7 288120 2 2 2 1 2 0 0 0 0 0 0.83 1.00 -12864 LRRC55 leucine rich repeat containing 55 231616 1 1 1 1 1 0 0 0 0 0 0.83 1.00 -12865 PROX2 prospero homeobox 2 402080 2 2 2 0 1 1 0 0 0 0 0.83 1.00 -12866 DGKZ diacylglycerol kinase, zeta 104kDa 579284 3 3 3 2 2 0 0 0 1 0 0.83 1.00 -12867 AIFM3 apoptosis-inducing factor, mitochondrion-associated, 3 372980 2 2 2 1 0 1 1 0 0 0 0.83 1.00 -12868 NUDCD3 NudC domain containing 3 245420 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12869 PYGM phosphorylase, glycogen; muscle (McArdle syndrome, glycogen storage disease type V) 580444 4 4 4 0 2 1 1 0 0 0 0.83 1.00 -12870 EHMT2 euchromatic histone-lysine N-methyltransferase 2 595476 3 3 3 0 3 0 0 0 0 0 0.83 1.00 -12871 DCBLD2 discoidin, CUB and LCCL domain containing 2 499728 2 2 2 1 0 2 0 0 0 0 0.83 1.00 -12872 FLNC filamin C, gamma (actin binding protein 280) 1782744 13 11 13 3 5 4 2 0 2 0 0.83 1.00 -12873 HABP4 hyaluronan binding protein 4 206304 1 1 1 1 0 1 0 0 0 0 0.83 1.00 -12874 FAM81A family with sequence similarity 81, member A 255136 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -12875 C20orf152 chromosome 20 open reading frame 152 395808 1 1 1 1 0 0 1 0 0 0 0.83 1.00 -12876 TMC5 transmembrane channel-like 5 758072 4 4 4 1 1 3 0 0 0 0 0.83 1.00 -12877 DYNC1LI1 dynein, cytoplasmic 1, light intermediate chain 1 363096 1 1 1 0 0 0 0 0 1 0 0.83 1.00 -12878 AMPD3 adenosine monophosphate deaminase (isoform E) 533764 3 3 3 1 1 0 1 0 1 0 0.83 1.00 -12879 TMF1 TATA element modulatory factor 1 750400 5 4 5 0 0 4 1 0 0 0 0.83 1.00 -12880 PLCD4 phospholipase C, delta 4 526176 2 2 2 0 0 1 0 1 0 0 0.83 1.00 -12881 LDHD lactate dehydrogenase D 305872 1 1 1 1 0 1 0 0 0 0 0.83 1.00 -12882 DEPDC5 DEP domain containing 5 1087576 7 6 7 2 0 2 4 0 1 0 0.83 1.00 -12883 YTHDF2 YTH domain family, member 2 381808 2 2 2 0 0 1 1 0 0 0 0.83 1.00 -12884 CERCAM cerebral endothelial cell adhesion molecule 358008 1 1 1 1 0 0 1 0 0 0 0.83 1.00 -12885 ATF6B 489216 1 1 1 1 0 0 0 0 1 0 0.83 1.00 -12886 PVR poliovirus receptor 271712 1 1 1 1 0 1 0 0 0 0 0.83 1.00 -12887 FICD FIC domain containing 310240 1 1 1 3 1 0 0 0 0 0 0.83 1.00 -12888 IL17RB interleukin 17 receptor B 341096 1 1 1 2 0 0 1 0 0 0 0.83 1.00 -12889 IRGC immunity-related GTPase family, cinema 269444 2 2 2 1 2 0 0 0 0 0 0.83 1.00 -12890 RDBP RD RNA binding protein 220388 1 1 1 1 0 1 0 0 0 0 0.83 1.00 -12891 ECH1 enoyl Coenzyme A hydratase 1, peroxisomal 229376 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -12892 POU6F2 POU class 6 homeobox 2 469312 3 3 3 1 1 2 0 0 0 0 0.83 1.00 -12893 DOK2 docking protein 2, 56kDa 230360 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12894 GPAT2 351064 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12895 LRRC42 leucine rich repeat containing 42 294560 1 1 1 1 0 1 0 0 0 0 0.83 1.00 -12896 ZBTB7B zinc finger and BTB domain containing 7B 364672 1 1 1 1 0 0 1 0 0 0 0.83 1.00 -12897 CELF6 197388 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12898 JUP junction plakoglobin 511328 2 2 2 2 0 0 1 0 1 0 0.83 1.00 -12899 KIF12 kinesin family member 12 328504 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12900 API5 apoptosis inhibitor 5 355264 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -12901 TBX6 T-box 6 279912 1 1 1 0 0 0 1 0 0 0 0.83 1.00 -12902 ZNF224 zinc finger protein 224 479360 2 2 2 3 0 2 0 0 0 0 0.83 1.00 -12903 CDCP1 CUB domain containing protein 1 564508 2 2 2 1 0 0 2 0 0 0 0.83 1.00 -12904 SLC9A1 solute carrier family 9 (sodium/hydrogen exchanger), member 1 (antiporter, Na+/H+, amiloride sensitive) 549612 4 4 4 0 2 2 0 0 0 0 0.83 1.00 -12905 AHSG alpha-2-HS-glycoprotein 253568 1 1 1 1 1 0 0 0 0 0 0.83 1.00 -12906 ARSE arylsulfatase E (chondrodysplasia punctata 1) 405440 2 2 2 0 1 0 1 0 0 0 0.83 1.00 -12907 FKBP15 FK506 binding protein 15, 133kDa 809144 5 4 5 1 3 2 0 0 0 0 0.83 1.00 -12908 NPNT nephronectin 380904 1 1 1 1 0 0 0 0 1 0 0.83 1.00 -12909 HEATR6 HEAT repeat containing 6 806168 3 3 3 2 1 1 0 0 1 0 0.83 1.00 -12910 MMRN2 multimerin 2 515976 4 4 4 1 3 0 1 0 0 0 0.83 1.00 -12911 CITED2 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 2 175532 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -12912 USP43 ubiquitin specific peptidase 43 608336 3 3 3 1 1 1 1 0 0 0 0.83 1.00 -12913 ZNF331 zinc finger protein 331 314496 2 2 2 4 2 0 0 0 0 0 0.83 1.00 -12914 SERBP1 SERPINE1 mRNA binding protein 1 280756 2 2 2 1 1 1 0 0 0 0 0.83 1.00 -12915 SNX9 sorting nexin 9 413056 2 2 2 1 0 1 1 0 0 0 0.83 1.00 -12916 ZNF165 zinc finger protein 165 329280 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12917 GDF5 growth differentiation factor 5 327628 2 2 2 1 0 2 0 0 0 0 0.83 1.00 -12918 KRT4 keratin 4 407904 2 2 2 4 1 1 0 0 0 0 0.83 1.00 -12919 LDOC1L leucine zipper, down-regulated in cancer 1-like 152516 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -12920 CREB3L3 cAMP responsive element binding protein 3-like 3 305732 3 2 3 0 2 1 0 0 0 0 0.83 1.00 -12921 GSG2 germ cell associated 2 (haspin) 495936 2 2 2 0 0 1 1 0 0 0 0.83 1.00 -12922 KIF26B kinesin family member 26B 1083396 8 8 7 3 6 1 0 0 1 0 0.83 1.00 -12923 SIGLEC5 sialic acid binding Ig-like lectin 5 327148 3 2 3 1 0 2 1 0 0 0 0.83 1.00 -12924 ZFHX3 zinc finger homeobox 3 2482312 14 14 14 9 4 8 2 0 0 0 0.83 1.00 -12925 CA4 carbonic anhydrase IV 191408 1 1 1 1 1 0 0 0 0 0 0.83 1.00 -12926 PROZ protein Z, vitamin K-dependent plasma glycoprotein 251772 1 1 1 1 1 0 0 0 0 0 0.83 1.00 -12927 ABCB7 ATP-binding cassette, sub-family B (MDR/TAP), member 7 516944 4 3 4 1 1 1 2 0 0 0 0.83 1.00 -12928 NT5DC1 5'-nucleotidase domain containing 1 316512 1 1 1 1 0 0 1 0 0 0 0.83 1.00 -12929 BCO2 beta-carotene oxygenase 2 400512 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -12930 NSMCE1 non-SMC element 1 homolog (S. cerevisiae) 185696 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12931 PIBF1 progesterone immunomodulatory binding factor 1 524608 1 1 1 0 0 0 1 0 0 0 0.83 1.00 -12932 PTK2B PTK2B protein tyrosine kinase 2 beta 700824 1 1 1 1 0 0 0 0 1 0 0.83 1.00 -12933 ZBTB40 zinc finger and BTB domain containing 40 848512 4 4 4 2 1 3 0 0 0 0 0.83 1.00 -12934 HOXA7 homeobox A7 150556 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12935 UNG uracil-DNA glycosylase 217560 1 1 1 0 0 0 1 0 0 0 0.83 1.00 -12936 ACP5 acid phosphatase 5, tartrate resistant 219884 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12937 DHDH dihydrodiol dehydrogenase (dimeric) 214480 1 1 1 2 1 0 0 0 0 0 0.83 1.00 -12938 TEX2 testis expressed 2 772576 3 3 3 0 1 1 0 0 1 0 0.83 1.00 -12939 TBC1D4 TBC1 domain family, member 4 867972 7 5 7 6 1 4 1 0 1 0 0.83 1.00 -12940 MOAP1 modulator of apoptosis 1 237440 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12941 CDC123 cell division cycle 123 homolog (S. cerevisiae) 238112 1 1 1 1 0 1 0 0 0 0 0.83 1.00 -12942 COL4A2 collagen, type IV, alpha 2 1110480 4 4 4 0 1 0 1 0 2 0 0.83 1.00 -12943 BPI bactericidal/permeability-increasing protein 341376 3 2 3 3 2 1 0 0 0 0 0.83 1.00 -12944 ACAP2 536344 4 3 4 0 2 1 1 0 0 0 0.83 1.00 -12945 BEST4 bestrophin 4 215008 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12946 ZNF238 zinc finger protein 238 356608 3 2 3 0 3 0 0 0 0 0 0.83 1.00 -12947 TMEM53 transmembrane protein 53 189504 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12948 LRRC32 leucine rich repeat containing 32 447328 2 2 2 1 0 2 0 0 0 0 0.83 1.00 -12949 WAS Wiskott-Aldrich syndrome (eczema-thrombocytopenia) 295040 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -12950 KIF27 kinesin family member 27 957292 7 4 7 0 2 2 2 0 1 0 0.83 1.00 -12951 GJC2 gap junction protein, gamma 2, 47kDa 154140 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -12952 RPAP3 RNA polymerase II associated protein 3 461888 3 2 3 1 2 0 1 0 0 0 0.84 1.00 -12953 ALMS1 Alstrom syndrome 1 2770900 19 10 19 12 4 5 7 0 3 0 0.84 1.00 -12954 SATB1 SATB homeobox 1 522368 2 2 2 2 0 2 0 0 0 0 0.84 1.00 -12955 TAOK3 TAO kinase 3 621152 4 4 4 1 0 2 2 0 0 0 0.84 1.00 -12956 SYBU 449568 2 2 2 0 1 1 0 0 0 0 0.84 1.00 -12957 C10orf27 chromosome 10 open reading frame 27 239984 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -12958 EFNB2 ephrin-B2 228928 1 1 1 1 0 0 1 0 0 0 0.84 1.00 -12959 LAMP2 lysosomal-associated membrane protein 2 349440 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -12960 KIF17 kinesin family member 17 675068 6 5 6 3 3 3 0 0 0 0 0.84 1.00 -12961 APBB2 amyloid beta (A4) precursor protein-binding, family B, member 2 (Fe65-like) 508256 3 2 3 0 1 1 1 0 0 0 0.84 1.00 -12962 KCNAB2 potassium voltage-gated channel, shaker-related subfamily, beta member 2 213948 1 1 1 0 1 0 0 0 0 0 0.84 1.00 -12963 GABRR1 gamma-aminobutyric acid (GABA) receptor, rho 1 329728 2 2 2 5 2 0 0 0 0 0 0.84 1.00 -12964 VGF VGF nerve growth factor inducible 219100 1 1 1 0 0 0 1 0 0 0 0.84 1.00 -12965 TBC1D16 TBC1 domain family, member 16 425404 2 2 2 1 0 0 1 0 1 0 0.84 1.00 -12966 WRNIP1 Werner helicase interacting protein 1 310520 1 1 1 0 0 0 1 0 0 0 0.84 1.00 -12967 TBC1D2 TBC1 domain family, member 2 602208 6 4 6 1 5 1 0 0 0 0 0.84 1.00 -12968 ATL3 375328 1 1 1 0 0 0 0 0 1 0 0.84 1.00 -12969 ZNF799 zinc finger protein 799 419760 3 2 3 1 1 2 0 0 0 0 0.84 1.00 -12970 SPPL2B 321220 2 2 2 0 1 0 1 0 0 0 0.84 1.00 -12971 PPIL4 peptidylprolyl isomerase (cyclophilin)-like 4 342808 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -12972 KLHL3 kelch-like 3 (Drosophila) 408576 3 3 3 1 1 2 0 0 0 0 0.84 1.00 -12973 MPL myeloproliferative leukemia virus oncogene 415136 2 2 2 1 0 2 0 0 0 0 0.84 1.00 -12974 SCARA3 scavenger receptor class A, member 3 375812 2 2 2 2 2 0 0 0 0 0 0.84 1.00 -12975 SIK3 790572 4 4 4 2 0 1 2 0 1 0 0.84 1.00 -12976 SMARCC1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 1 746144 3 3 3 0 0 2 1 0 0 0 0.84 1.00 -12977 EHBP1L1 EH domain binding protein 1-like 1 620444 2 2 2 1 1 0 0 0 1 0 0.84 1.00 -12978 ZCWPW1 zinc finger, CW type with PWWP domain 1 450464 3 2 3 2 0 3 0 0 0 0 0.84 1.00 -12979 IMPAD1 inositol monophosphatase domain containing 1 207816 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -12980 STK35 serine/threonine kinase 35 210448 1 1 1 1 1 0 0 0 0 0 0.84 1.00 -12981 STRN3 striatin, calmodulin binding protein 3 508600 2 2 2 0 0 1 1 0 0 0 0.84 1.00 -12982 ANKRD56 ankyrin repeat domain 56 375732 2 2 2 0 2 0 0 0 0 0 0.84 1.00 -12983 TOM1 target of myb1 (chicken) 338716 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -12984 GFRA2 GDNF family receptor alpha 2 229728 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -12985 POLG2 polymerase (DNA directed), gamma 2, accessory subunit 333760 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -12986 SH3BP4 SH3-domain binding protein 4 633928 3 3 3 3 2 1 0 0 0 0 0.84 1.00 -12987 ZNF394 zinc finger protein 394 380352 1 1 1 2 0 1 0 0 0 0 0.84 1.00 -12988 SORCS2 sortilin-related VPS10 domain containing receptor 2 627824 5 5 4 3 4 1 0 0 0 0 0.84 1.00 -12989 PPP2CB protein phosphatase 2 (formerly 2A), catalytic subunit, beta isoform 214592 2 1 2 0 1 1 0 0 0 0 0.84 1.00 -12990 GCK glucokinase (hexokinase 4) 323568 2 2 2 4 2 0 0 0 0 0 0.84 1.00 -12991 NEUROG2 neurogenin 2 140224 1 1 1 2 1 0 0 0 0 0 0.84 1.00 -12992 KIAA0090 KIAA0090 688576 3 3 3 2 1 0 1 0 1 0 0.84 1.00 -12993 YY2 YY2 transcription factor 251552 1 1 1 4 0 1 0 0 0 0 0.84 1.00 -12994 TESK1 testis-specific kinase 1 397656 2 2 2 1 1 0 1 0 0 0 0.84 1.00 -12995 TYRO3 TYRO3 protein tyrosine kinase 576520 3 3 3 1 0 2 0 0 1 0 0.84 1.00 -12996 RBM16 RNA binding motif protein 16 869848 8 5 8 5 2 4 2 0 0 0 0.84 1.00 -12997 ZNF710 zinc finger protein 710 429476 3 3 3 1 0 2 1 0 0 0 0.84 1.00 -12998 IDO2 284472 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -12999 MDH2 malate dehydrogenase 2, NAD (mitochondrial) 220192 1 1 1 1 1 0 0 0 0 0 0.84 1.00 -13000 CERK ceramide kinase 324360 1 1 1 1 0 0 1 0 0 0 0.84 1.00 -13001 QSER1 glutamine and serine rich 1 1176448 5 4 5 2 0 2 2 0 1 0 0.84 1.00 -13002 CTSE cathepsin E 284480 1 1 1 2 0 1 0 0 0 0 0.84 1.00 -13003 FUT6 fucosyltransferase 6 (alpha (1,3) fucosyltransferase) 223244 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -13004 POMGNT1 protein O-linked mannose beta1,2-N-acetylglucosaminyltransferase 463008 2 2 2 1 0 0 2 0 0 0 0.84 1.00 -13005 NDUFV3 NADH dehydrogenase (ubiquinone) flavoprotein 3, 10kDa 308112 1 1 1 0 0 0 0 0 1 0 0.84 1.00 -13006 ZNF282 zinc finger protein 282 325980 3 3 3 0 2 1 0 0 0 0 0.84 1.00 -13007 TJAP1 tight junction associated protein 1 (peripheral) 355012 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -13008 TTLL13 tubulin tyrosine ligase-like family, member 13 316092 1 1 1 3 0 0 1 0 0 0 0.84 1.00 -13009 GANC glucosidase, alpha; neutral C 636384 3 3 3 0 1 1 1 0 0 0 0.84 1.00 -13010 DRD1 dopamine receptor D1 301280 1 1 1 2 0 1 0 0 0 0 0.84 1.00 -13011 NLGN2 neuroligin 2 391048 2 2 2 1 1 1 0 0 0 0 0.84 1.00 -13012 HSD3B2 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 2 253344 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -13013 USP8 ubiquitin specific peptidase 8 768068 3 3 3 1 0 1 2 0 0 0 0.84 1.00 -13014 GPR39 G protein-coupled receptor 39 306880 3 2 3 4 1 1 1 0 0 0 0.84 1.00 -13015 SLC7A1 solute carrier family 7 (cationic amino acid transporter, y+ system), member 1 433216 2 2 2 4 1 0 1 0 0 0 0.84 1.00 -13016 BSCL2 Bernardinelli-Seip congenital lipodystrophy 2 (seipin) 279328 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -13017 OSBPL7 oxysterol binding protein-like 7 543444 3 3 3 2 1 0 2 0 0 0 0.84 1.00 -13018 TRIM16L tripartite motif-containing 16-like 238112 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -13019 MYOM1 myomesin 1, 185kDa 1163772 12 6 10 3 4 3 2 0 3 0 0.84 1.00 -13020 TAB1 365488 1 1 1 2 0 0 0 0 1 0 0.84 1.00 -13021 STAT3 signal transducer and activator of transcription 3 (acute-phase response factor) 538720 2 2 2 1 1 1 0 0 0 0 0.84 1.00 -13022 KIAA1147 KIAA1147 249352 1 1 1 0 1 0 0 0 0 0 0.84 1.00 -13023 CDK6 cyclin-dependent kinase 6 211400 1 1 1 0 1 0 0 0 0 0 0.84 1.00 -13024 HNRNPM 444728 3 3 3 3 1 1 1 0 0 0 0.84 1.00 -13025 ARHGEF12 Rho guanine nucleotide exchange factor (GEF) 12 1074976 9 5 9 3 2 4 2 0 1 0 0.84 1.00 -13026 SLC24A6 solute carrier family 24 (sodium/potassium/calcium exchanger), member 6 403376 2 2 2 0 1 0 1 0 0 0 0.84 1.00 -13027 BCAN brevican 611240 2 2 2 4 0 1 1 0 0 0 0.84 1.00 -13028 MLLT4 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 4 1052888 6 5 6 4 3 2 0 0 1 0 0.84 1.00 -13029 TMEM184B transmembrane protein 184B 274540 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -13030 C7orf28B chromosome 7 open reading frame 28B 270704 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -13031 DDR1 discoidin domain receptor tyrosine kinase 1 575932 4 3 4 0 3 0 0 0 1 0 0.84 1.00 -13032 TAB2 471744 2 2 2 0 1 1 0 0 0 0 0.84 1.00 -13033 SRMS src-related kinase lacking C-terminal regulatory tyrosine and N-terminal myristylation sites 249144 1 1 1 0 1 0 0 0 0 0 0.84 1.00 -13034 HMBOX1 homeobox containing 1 290976 1 1 1 0 1 0 0 0 0 0 0.84 1.00 -13035 TTF1 transcription termination factor, RNA polymerase I 617792 2 2 2 3 0 1 0 0 1 0 0.84 1.00 -13036 CYP26A1 cytochrome P450, family 26, subfamily A, polypeptide 1 285300 3 2 3 1 3 0 0 0 0 0 0.84 1.00 -13037 PDIA6 protein disulfide isomerase family A, member 6 297552 1 1 1 1 1 0 0 0 0 0 0.84 1.00 -13038 RCE1 RCE1 homolog, prenyl protein peptidase (S. cerevisiae) 197960 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -13039 HIPK2 homeodomain interacting protein kinase 2 793616 4 4 4 1 4 0 0 0 0 0 0.84 1.00 -13040 PATZ1 POZ (BTB) and AT hook containing zinc finger 1 500388 3 3 3 1 1 0 2 0 0 0 0.84 1.00 -13041 SRGAP3 SLIT-ROBO Rho GTPase activating protein 3 740592 4 4 4 3 3 1 0 0 0 0 0.84 1.00 -13042 KRT16 keratin 16 (focal non-epidermolytic palmoplantar keratoderma) 319440 2 2 2 0 2 0 0 0 0 0 0.84 1.00 -13043 ACTL6B actin-like 6B 292992 1 1 1 2 1 0 0 0 0 0 0.84 1.00 -13044 CYTH2 277096 1 1 1 0 0 0 1 0 0 0 0.84 1.00 -13045 TMEM143 transmembrane protein 143 298424 1 1 1 1 0 0 0 0 1 0 0.84 1.00 -13046 SNX20 sorting nexin 20 171976 1 1 1 2 1 0 0 0 0 0 0.84 1.00 -13047 ERAL1 Era G-protein-like 1 (E. coli) 303296 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -13048 CHPT1 choline phosphotransferase 1 258860 1 1 1 2 0 1 0 0 0 0 0.84 1.00 -13049 NSUN7 NOL1/NOP2/Sun domain family, member 7 331072 1 1 1 0 0 0 1 0 0 0 0.84 1.00 -13050 NAALADL1 N-acetylated alpha-linked acidic dipeptidase-like 1 484508 3 3 3 2 2 0 1 0 0 0 0.84 1.00 -13051 TNFRSF1A tumor necrosis factor receptor superfamily, member 1A 285028 1 1 1 1 0 0 1 0 0 0 0.84 1.00 -13052 EXOC1 exocyst complex component 1 617568 3 3 3 0 0 2 1 0 0 0 0.84 1.00 -13053 PODN podocan 361200 2 2 2 0 1 0 0 0 1 0 0.84 1.00 -13054 KCNJ2 potassium inwardly-rectifying channel, subfamily J, member 2 288512 1 1 1 2 1 0 0 0 0 0 0.84 1.00 -13055 POTEF 594748 3 3 3 1 1 2 0 0 0 0 0.84 1.00 -13056 SLC2A1 solute carrier family 2 (facilitated glucose transporter), member 1 335328 1 1 1 0 1 0 0 0 0 0 0.84 1.00 -13057 SLC16A13 solute carrier family 16, member 13 (monocarboxylic acid transporter 13) 290528 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -13058 FKBP8 FK506 binding protein 8, 38kDa 278604 2 2 2 1 2 0 0 0 0 0 0.84 1.00 -13059 HOXA3 homeobox A3 252588 3 2 3 1 1 2 0 0 0 0 0.84 1.00 -13060 OPN1LW opsin 1 (cone pigments), long-wave-sensitive 196200 1 1 1 3 1 0 0 0 0 0 0.84 1.00 -13061 CAGE1 cancer antigen 1 420064 1 1 1 1 0 0 0 0 1 0 0.84 1.00 -13062 NAPSA napsin A aspartic peptidase 281988 1 1 1 1 1 0 0 0 0 0 0.84 1.00 -13063 PCDHA8 protocadherin alpha 8 626696 8 6 8 2 7 0 1 0 0 0 0.84 1.00 -13064 SEC61A2 Sec61 alpha 2 subunit (S. cerevisiae) 335344 1 1 1 1 1 0 0 0 0 0 0.84 1.00 -13065 NAF1 nuclear assembly factor 1 homolog (S. cerevisiae) 304512 1 1 1 0 0 0 0 0 1 0 0.84 1.00 -13066 TMEM206 transmembrane protein 206 243040 1 1 1 3 0 1 0 0 0 0 0.85 1.00 -13067 C20orf194 chromosome 20 open reading frame 194 795760 9 3 9 1 1 4 2 0 0 2 0.85 1.00 -13068 RFWD3 ring finger and WD repeat domain 3 531300 2 2 2 1 1 0 1 0 0 0 0.85 1.00 -13069 NEUROD2 neurogenic differentiation 2 189216 1 1 1 1 0 0 1 0 0 0 0.85 1.00 -13070 TINF2 TERF1 (TRF1)-interacting nuclear factor 2 310352 1 1 1 1 0 1 0 0 0 0 0.85 1.00 -13071 TAF8 TAF8 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 43kDa 206080 1 1 1 0 0 1 0 0 0 0 0.85 1.00 -13072 PARP10 poly (ADP-ribose) polymerase family, member 10 630256 4 4 4 1 3 1 0 0 0 0 0.85 1.00 -13073 MYH6 myosin, heavy chain 6, cardiac muscle, alpha (cardiomyopathy, hypertrophic 1) 1321460 12 8 12 4 5 4 3 0 0 0 0.85 1.00 -13074 DDX25 DEAD (Asp-Glu-Ala-Asp) box polypeptide 25 256488 1 1 1 1 0 1 0 0 0 0 0.85 1.00 -13075 BEND4 243360 2 1 2 0 0 1 1 0 0 0 0.85 1.00 -13076 PLEK2 pleckstrin 2 235648 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13077 ABO ABO blood group (transferase A, alpha 1-3-N-acetylgalactosaminyltransferase; transferase B, alpha 1-3-galactosyltransferase) 230820 2 1 2 0 1 1 0 0 0 0 0.85 1.00 -13078 IGSF22 immunoglobulin superfamily, member 22 624960 3 3 3 2 2 1 0 0 0 0 0.85 1.00 -13079 RUFY1 RUN and FYVE domain containing 1 413336 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13080 COPS3 COP9 constitutive photomorphogenic homolog subunit 3 (Arabidopsis) 295680 2 1 2 1 0 1 1 0 0 0 0.85 1.00 -13081 DNTTIP1 deoxynucleotidyltransferase, terminal, interacting protein 1 224112 1 1 1 1 1 0 0 0 0 0 0.85 1.00 -13082 MLYCD malonyl-CoA decarboxylase 240492 1 1 1 0 0 0 0 1 0 0 0.85 1.00 -13083 PIGO phosphatidylinositol glycan anchor biosynthesis, class O 734972 3 3 3 4 1 1 0 0 1 0 0.85 1.00 -13084 NUDT19 nudix (nucleoside diphosphate linked moiety X)-type motif 19 158088 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13085 ACTRT2 actin-related protein T2 219044 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13086 C4orf14 chromosome 4 open reading frame 14 436236 2 2 2 0 0 1 0 0 1 0 0.85 1.00 -13087 NIPA1 non imprinted in Prader-Willi/Angelman syndrome 1 199192 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13088 MDM1 Mdm1 nuclear protein homolog (mouse) 493416 2 2 2 1 0 2 0 0 0 0 0.85 1.00 -13089 CCNDBP1 cyclin D-type binding-protein 1 237356 2 1 2 2 2 0 0 0 0 0 0.85 1.00 -13090 TXNIP thioredoxin interacting protein 270592 1 1 1 0 0 1 0 0 0 0 0.85 1.00 -13091 RBM34 RNA binding motif protein 34 300608 1 1 1 1 1 0 0 0 0 0 0.85 1.00 -13092 KDM1A 544740 3 3 3 1 2 0 1 0 0 0 0.85 1.00 -13093 SLC33A1 solute carrier family 33 (acetyl-CoA transporter), member 1 373968 2 2 1 3 2 0 0 0 0 0 0.85 1.00 -13094 ARSK arylsulfatase family, member K 368032 3 1 3 0 0 2 0 0 1 0 0.85 1.00 -13095 SMAD5 SMAD family member 5 318304 1 1 1 2 0 0 1 0 0 0 0.85 1.00 -13096 IL11RA interleukin 11 receptor, alpha 295904 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13097 OXCT2 3-oxoacid CoA transferase 2 195104 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13098 DGCR8 DiGeorge syndrome critical region gene 8 525560 3 3 3 2 0 2 1 0 0 0 0.85 1.00 -13099 ANKZF1 ankyrin repeat and zinc finger domain containing 1 500192 3 3 3 0 2 0 1 0 0 0 0.85 1.00 -13100 AP3M1 adaptor-related protein complex 3, mu 1 subunit 288736 1 1 1 0 0 1 0 0 0 0 0.85 1.00 -13101 SAG S-antigen; retina and pineal gland (arrestin) 286272 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13102 HOXB4 homeobox B4 128996 1 1 1 0 0 1 0 0 0 0 0.85 1.00 -13103 PARD3B par-3 partitioning defective 3 homolog B (C. elegans) 795740 4 3 4 2 2 1 0 0 1 0 0.85 1.00 -13104 PANK1 pantothenate kinase 1 303520 2 2 2 1 1 1 0 0 0 0 0.85 1.00 -13105 WDR44 WD repeat domain 44 632128 3 3 3 1 2 1 0 0 0 0 0.85 1.00 -13106 PLCE1 phospholipase C, epsilon 1 1639456 9 7 9 2 2 4 1 0 2 0 0.85 1.00 -13107 KIAA1530 KIAA1530 431064 2 2 2 0 0 0 1 0 1 0 0.85 1.00 -13108 SLC29A4 solute carrier family 29 (nucleoside transporters), member 4 313848 1 1 1 0 0 0 0 0 1 0 0.85 1.00 -13109 ANKH ankylosis, progressive homolog (mouse) 342048 3 2 3 1 2 1 0 0 0 0 0.85 1.00 -13110 SLC9A5 solute carrier family 9 (sodium/hydrogen exchanger), member 5 586620 2 2 2 1 0 0 1 0 1 0 0.85 1.00 -13111 TMEM87A transmembrane protein 87A 391552 1 1 1 0 0 0 1 0 0 0 0.85 1.00 -13112 THSD1 thrombospondin, type I, domain containing 1 576800 3 3 3 2 2 1 0 0 0 0 0.85 1.00 -13113 EFEMP2 EGF-containing fibulin-like extracellular matrix protein 2 271612 1 1 1 1 0 0 1 0 0 0 0.85 1.00 -13114 MAP4K5 mitogen-activated protein kinase kinase kinase kinase 5 497248 2 2 2 0 1 1 0 0 0 0 0.85 1.00 -13115 ACTR6 ARP6 actin-related protein 6 homolog (yeast) 276640 1 1 1 1 1 0 0 0 0 0 0.85 1.00 -13116 SPTBN2 spectrin, beta, non-erythrocytic 2 1450008 12 11 12 3 7 4 1 0 0 0 0.85 1.00 -13117 ADC arginine decarboxylase 317856 1 1 1 1 1 0 0 0 0 0 0.85 1.00 -13118 FBXL5 F-box and leucine-rich repeat protein 5 455168 2 2 2 1 2 0 0 0 0 0 0.85 1.00 -13119 LMAN1L lectin, mannose-binding, 1 like 339624 1 1 1 2 0 1 0 0 0 0 0.85 1.00 -13120 WNT4 wingless-type MMTV integration site family, member 4 215236 1 1 1 1 1 0 0 0 0 0 0.85 1.00 -13121 ZRSR2 zinc finger (CCCH type), RNA-binding motif and serine/arginine rich 2 316616 1 1 1 1 0 1 0 0 0 0 0.85 1.00 -13122 WDR19 WD repeat domain 19 896128 4 3 4 2 1 1 2 0 0 0 0.85 1.00 -13123 SLC3A2 solute carrier family 3 (activators of dibasic and neutral amino acid transport), member 2 358928 2 2 2 0 2 0 0 0 0 0 0.85 1.00 -13124 SPO11 SPO11 meiotic protein covalently bound to DSB homolog (S. cerevisiae) 278432 1 1 1 3 1 0 0 0 0 0 0.85 1.00 -13125 OGFOD1 2-oxoglutarate and iron-dependent oxygenase domain containing 1 376544 1 1 1 0 0 0 1 0 0 0 0.85 1.00 -13126 KIF20A kinesin family member 20A 614880 3 3 3 0 1 1 1 0 0 0 0.85 1.00 -13127 PRPF6 PRP6 pre-mRNA processing factor 6 homolog (S. cerevisiae) 648648 3 3 3 2 1 1 0 0 1 0 0.85 1.00 -13128 C1QTNF6 C1q and tumor necrosis factor related protein 6 173880 1 1 1 1 1 0 0 0 0 0 0.85 1.00 -13129 RDH13 retinol dehydrogenase 13 (all-trans/9-cis) 201180 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13130 ZNF225 zinc finger protein 225 478688 3 2 3 0 0 2 1 0 0 0 0.85 1.00 -13131 NT5C1A 5'-nucleotidase, cytosolic IA 244692 1 1 1 2 1 0 0 0 0 0 0.85 1.00 -13132 SERPINB9 serpin peptidase inhibitor, clade B (ovalbumin), member 9 258720 1 1 1 2 1 0 0 0 0 0 0.85 1.00 -13133 LGI3 leucine-rich repeat LGI family, member 3 344568 2 2 2 1 1 1 0 0 0 0 0.85 1.00 -13134 EPHB6 EPH receptor B6 675196 4 4 4 1 1 1 2 0 0 0 0.85 1.00 -13135 UMODL1 uromodulin-like 1 923260 5 5 5 0 3 1 0 0 1 0 0.85 1.00 -13136 ALOX12B arachidonate 12-lipoxygenase, 12R type 446536 2 2 2 2 0 2 0 0 0 0 0.85 1.00 -13137 VAT1L 248128 1 1 1 4 0 1 0 0 0 0 0.85 1.00 -13138 FIBCD1 fibrinogen C domain containing 1 189084 1 1 1 2 0 0 1 0 0 0 0.85 1.00 -13139 PAX1 paired box 1 219604 1 1 1 1 1 0 0 0 0 0 0.85 1.00 -13140 SPRYD3 SPRY domain containing 3 302792 1 1 1 0 0 1 0 0 0 0 0.85 1.00 -13141 HS1BP3 HCLS1 binding protein 3 262304 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13142 CACNA1D calcium channel, voltage-dependent, L type, alpha 1D subunit 1501504 9 7 9 4 4 3 0 0 2 0 0.85 1.00 -13143 PSMC4 proteasome (prosome, macropain) 26S subunit, ATPase, 4 291424 1 1 1 2 0 1 0 0 0 0 0.85 1.00 -13144 ALG3 asparagine-linked glycosylation 3 homolog (S. cerevisiae, alpha-1,3-mannosyltransferase) 292376 1 1 1 0 0 1 0 0 0 0 0.85 1.00 -13145 FLT3 fms-related tyrosine kinase 3 678944 5 4 5 3 1 3 1 0 0 0 0.85 1.00 -13146 MTMR3 myotubularin related protein 3 828464 4 4 4 2 1 1 2 0 0 0 0.85 1.00 -13147 SEPT1 septin 1 253596 1 1 1 2 0 1 0 0 0 0 0.85 1.00 -13148 SCLY selenocysteine lyase 278880 1 1 1 5 0 1 0 0 0 0 0.85 1.00 -13149 MBOAT7 membrane bound O-acyltransferase domain containing 7 237704 1 1 1 0 0 0 1 0 0 0 0.85 1.00 -13150 FOXS1 forkhead box S1 220724 1 1 1 2 0 1 0 0 0 0 0.85 1.00 -13151 PDLIM7 PDZ and LIM domain 7 (enigma) 268900 1 1 1 0 0 1 0 0 0 0 0.85 1.00 -13152 BCAS3 breast carcinoma amplified sequence 3 645792 3 3 3 1 1 2 0 0 0 0 0.85 1.00 -13153 HIVEP1 human immunodeficiency virus type I enhancer binding protein 1 1834336 9 6 9 2 3 2 3 0 1 0 0.85 1.00 -13154 XYLT2 xylosyltransferase II 506292 2 2 2 2 0 1 0 0 1 0 0.85 1.00 -13155 DCAF15 353844 1 1 1 0 0 0 0 0 1 0 0.85 1.00 -13156 DET1 de-etiolated homolog 1 (Arabidopsis) 382144 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13157 RNF113A ring finger protein 113A 229460 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13158 DEPDC1 DEP domain containing 1 556416 2 2 2 1 0 1 1 0 0 0 0.85 1.00 -13159 SHC3 SHC (Src homology 2 domain containing) transforming protein 3 332080 1 1 1 3 0 0 1 0 0 0 0.85 1.00 -13160 CCNJL cyclin J-like 265216 1 1 1 1 1 0 0 0 0 0 0.85 1.00 -13161 BPTF bromodomain PHD finger transcription factor 1974908 11 8 11 6 4 2 3 0 0 2 0.85 1.00 -13162 GPR88 G protein-coupled receptor 88 132220 1 1 1 1 1 0 0 0 0 0 0.85 1.00 -13163 PSIP1 PC4 and SFRS1 interacting protein 1 376768 1 1 1 3 0 0 1 0 0 0 0.85 1.00 -13164 KIAA1274 KIAA1274 575468 2 2 2 1 0 0 1 0 1 0 0.85 1.00 -13165 ZC3H4 zinc finger CCCH-type containing 4 768780 4 4 4 2 2 0 1 1 0 0 0.85 1.00 -13166 TNIP1 TNFAIP3 interacting protein 1 442960 2 2 2 0 1 1 0 0 0 0 0.85 1.00 -13167 GALNT12 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 12 (GalNAc-T12) 315060 2 2 2 1 1 1 0 0 0 0 0.85 1.00 -13168 POLDIP2 polymerase (DNA-directed), delta interacting protein 2 218752 1 1 1 0 0 1 0 0 0 0 0.85 1.00 -13169 CCDC51 coiled-coil domain containing 51 274176 1 1 1 0 0 1 0 0 0 0 0.85 1.00 -13170 KIF3C kinesin family member 3C 540736 3 3 3 2 1 2 0 0 0 0 0.85 1.00 -13171 APOL3 apolipoprotein L, 3 273504 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -13172 RBP3 retinol binding protein 3, interstitial 668528 4 4 4 3 1 2 0 0 1 0 0.85 1.00 -13173 TMPRSS2 transmembrane protease, serine 2 316288 2 2 2 0 0 2 0 0 0 0 0.85 1.00 -13174 APEX2 APEX nuclease (apurinic/apyrimidinic endonuclease) 2 353328 1 1 1 3 0 0 1 0 0 0 0.85 1.00 -13175 FMNL2 formin-like 2 729640 4 3 4 1 2 1 1 0 0 0 0.85 1.00 -13176 GOT2 glutamic-oxaloacetic transaminase 2, mitochondrial (aspartate aminotransferase 2) 290780 1 1 1 1 1 0 0 0 0 0 0.85 1.00 -13177 ZACN zinc activated ligand-gated ion channel 274344 1 1 1 0 0 0 1 0 0 0 0.85 1.00 -13178 CYP2U1 cytochrome P450, family 2, subfamily U, polypeptide 1 284628 1 1 1 1 0 1 0 0 0 0 0.86 1.00 -13179 TRIM72 tripartite motif-containing 72 175712 1 1 1 1 1 0 0 0 0 0 0.86 1.00 -13180 SLC25A23 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 23 307476 1 1 1 5 0 1 0 0 0 0 0.86 1.00 -13181 SERINC2 serine incorporator 2 296604 1 1 1 0 0 0 1 0 0 0 0.86 1.00 -13182 AGGF1 angiogenic factor with G patch and FHA domains 1 486892 2 2 2 0 0 2 0 0 0 0 0.86 1.00 -13183 SC65 231000 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -13184 TTC39A 393112 2 2 2 2 2 0 0 0 0 0 0.86 1.00 -13185 PTAFR platelet-activating factor receptor 231392 1 1 1 1 0 1 0 0 0 0 0.86 1.00 -13186 SPATA5 spermatogenesis associated 5 615104 3 3 3 3 0 2 1 0 0 0 0.86 1.00 -13187 DDX43 DEAD (Asp-Glu-Ala-Asp) box polypeptide 43 450464 1 1 1 2 0 1 0 0 0 0 0.86 1.00 -13188 SQRDL sulfide quinone reductase-like (yeast) 306512 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -13189 TGFBRAP1 transforming growth factor, beta receptor associated protein 1 588448 4 4 4 1 1 3 0 0 0 0 0.86 1.00 -13190 TOE1 target of EGR1, member 1 (nuclear) 349804 1 1 1 1 0 1 0 0 0 0 0.86 1.00 -13191 ARHGAP17 Rho GTPase activating protein 17 592416 3 3 3 1 0 2 1 0 0 0 0.86 1.00 -13192 KIAA1210 1161256 8 6 8 1 1 3 3 1 0 0 0.86 1.00 -13193 ZIC2 Zic family member 2 (odd-paired homolog, Drosophila) 185136 1 1 1 1 0 0 1 0 0 0 0.86 1.00 -13194 LAX1 lymphocyte transmembrane adaptor 1 272608 1 1 1 1 0 1 0 0 0 0 0.86 1.00 -13195 NANS N-acetylneuraminic acid synthase (sialic acid synthase) 247296 1 1 1 0 0 0 1 0 0 0 0.86 1.00 -13196 CAPN11 calpain 11 470312 2 2 2 1 0 2 0 0 0 0 0.86 1.00 -13197 PANX2 pannexin 2 187320 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -13198 ARID3B AT rich interactive domain 3B (BRIGHT-like) 384160 2 2 2 0 0 1 1 0 0 0 0.86 1.00 -13199 DOCK1 dedicator of cytokinesis 1 1151388 7 6 6 3 4 1 2 0 0 0 0.86 1.00 -13200 PLEKHG6 pleckstrin homology domain containing, family G (with RhoGef domain) member 6 507112 2 2 2 1 1 1 0 0 0 0 0.86 1.00 -13201 FDXACB1 416364 2 2 2 1 0 1 1 0 0 0 0.86 1.00 -13202 NKAP NFKB activating protein 287124 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -13203 SEC24C SEC24 related gene family, member C (S. cerevisiae) 755552 3 3 3 0 1 0 2 0 0 0 0.86 1.00 -13204 PROM1 prominin 1 572608 3 3 3 1 1 1 1 0 0 0 0.86 1.00 -13205 NEK9 NIMA (never in mitosis gene a)- related kinase 9 628320 2 2 2 2 1 0 0 0 1 0 0.86 1.00 -13206 CUX2 cut-like homeobox 2 871472 7 6 7 1 4 1 1 0 1 0 0.86 1.00 -13207 TBC1D14 TBC1 domain family, member 14 464464 3 3 3 1 2 0 1 0 0 0 0.86 1.00 -13208 IRAK1 interleukin-1 receptor-associated kinase 1 382028 1 1 1 0 0 0 0 0 1 0 0.86 1.00 -13209 MGLL monoglyceride lipase 214368 1 1 1 0 0 1 0 0 0 0 0.86 1.00 -13210 ADAMTSL5 ADAMTS-like 5 232856 1 1 1 1 0 1 0 0 0 0 0.86 1.00 -13211 SLC6A7 solute carrier family 6 (neurotransmitter transporter, L-proline), member 7 431984 2 2 2 0 1 0 1 0 0 0 0.86 1.00 -13212 BLNK B-cell linker 322336 1 1 1 1 0 1 0 0 0 0 0.86 1.00 -13213 ONECUT1 one cut homeobox 1 290432 1 1 1 2 1 0 0 0 0 0 0.86 1.00 -13214 UMPS uridine monophosphate synthetase 328608 1 1 1 1 0 0 1 0 0 0 0.86 1.00 -13215 NAGA N-acetylgalactosaminidase, alpha- 283212 1 1 1 1 0 0 1 0 0 0 0.86 1.00 -13216 GLDC glycine dehydrogenase (decarboxylating) 673512 3 3 3 2 1 1 0 0 1 0 0.86 1.00 -13217 CHAF1A chromatin assembly factor 1, subunit A (p150) 625980 5 4 5 0 1 2 2 0 0 0 0.86 1.00 -13218 GMDS GDP-mannose 4,6-dehydratase 236768 1 1 1 1 1 0 0 0 0 0 0.86 1.00 -13219 PPP1R15B protein phosphatase 1, regulatory (inhibitor) subunit 15B 481600 2 2 2 1 0 2 0 0 0 0 0.86 1.00 -13220 TANC1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 1274028 7 6 7 2 2 3 2 0 0 0 0.86 1.00 -13221 ANKLE2 ankyrin repeat and LEM domain containing 2 559452 4 4 4 0 2 2 0 0 0 0 0.86 1.00 -13222 SULT2B1 sulfotransferase family, cytosolic, 2B, member 1 243756 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -13223 DEDD death effector domain containing 217952 1 1 1 0 0 1 0 0 0 0 0.86 1.00 -13224 KCNA7 potassium voltage-gated channel, shaker-related subfamily, member 7 249480 1 1 1 1 1 0 0 0 0 0 0.86 1.00 -13225 EXO1 exonuclease 1 580832 2 2 2 1 1 1 0 0 0 0 0.86 1.00 -13226 C11orf2 chromosome 11 open reading frame2 359980 1 1 1 0 0 0 0 0 1 0 0.86 1.00 -13227 GPR162 G protein-coupled receptor 162 377020 2 2 2 1 1 1 0 0 0 0 0.86 1.00 -13228 MYOF 1421536 10 7 10 4 4 2 3 0 1 0 0.86 1.00 -13229 P4HA1 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide I 388864 1 1 1 2 0 0 1 0 0 0 0.86 1.00 -13230 ACADVL acyl-Coenzyme A dehydrogenase, very long chain 417852 1 1 1 1 1 0 0 0 0 0 0.86 1.00 -13231 PDZD3 PDZ domain containing 3 298812 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -13232 TFDP2 transcription factor Dp-2 (E2F dimerization partner 2) 272384 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -13233 PDGFRL platelet-derived growth factor receptor-like 258048 1 1 1 0 0 0 1 0 0 0 0.86 1.00 -13234 ABCC3 ATP-binding cassette, sub-family C (CFTR/MRP), member 3 1040416 5 5 5 2 0 5 0 0 0 0 0.86 1.00 -13235 MEX3B mex-3 homolog B (C. elegans) 329188 2 2 2 3 1 0 0 0 1 0 0.86 1.00 -13236 C19orf28 chromosome 19 open reading frame 28 253432 1 1 1 0 0 0 1 0 0 0 0.86 1.00 -13237 DCTN4 dynactin 4 (p62) 321440 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -13238 GNB5 guanine nucleotide binding protein (G protein), beta 5 276864 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -13239 FOXA1 forkhead box A1 245056 1 1 1 1 0 0 1 0 0 0 0.86 1.00 -13240 VPS13D vacuolar protein sorting 13 homolog D (S. cerevisiae) 3011232 17 13 17 8 6 6 4 0 1 0 0.86 1.00 -13241 PPP2R1B protein phosphatase 2 (formerly 2A), regulatory subunit A, beta isoform 467936 2 2 2 0 0 1 1 0 0 0 0.86 1.00 -13242 SMG6 Smg-6 homolog, nonsense mediated mRNA decay factor (C. elegans) 947576 5 5 5 2 3 1 1 0 0 0 0.86 1.00 -13243 ADCK2 aarF domain containing kinase 2 404656 2 2 2 0 1 0 1 0 0 0 0.86 1.00 -13244 PNCK pregnancy upregulated non-ubiquitously expressed CaM kinase 252268 1 1 1 0 0 0 1 0 0 0 0.86 1.00 -13245 GDF2 growth differentiation factor 2 277872 1 1 1 3 1 0 0 0 0 0 0.86 1.00 -13246 INO80D 694936 2 2 2 1 0 1 0 0 1 0 0.86 1.00 -13247 CYP3A4 cytochrome P450, family 3, subfamily A, polypeptide 4 350336 1 1 1 1 0 1 0 0 0 0 0.86 1.00 -13248 TRIO triple functional domain (PTPRF interacting) 1929792 13 10 12 6 6 2 5 0 0 0 0.86 1.00 -13249 KNTC1 kinetochore associated 1 1515592 10 6 10 3 4 2 2 0 2 0 0.86 1.00 -13250 THRA thyroid hormone receptor, alpha (erythroblastic leukemia viral (v-erb-a) oncogene homolog, avian) 355908 2 2 2 0 1 0 1 0 0 0 0.86 1.00 -13251 NLN neurolysin (metallopeptidase M3 family) 485408 3 2 3 1 2 0 1 0 0 0 0.86 1.00 -13252 CAMK2A calcium/calmodulin-dependent protein kinase (CaM kinase) II alpha 338144 1 1 1 1 1 0 0 0 0 0 0.86 1.00 -13253 KRT12 keratin 12 (Meesmann corneal dystrophy) 339808 2 2 2 0 1 1 0 0 0 0 0.86 1.00 -13254 HBS1L HBS1-like (S. cerevisiae) 476448 2 2 2 1 2 0 0 0 0 0 0.86 1.00 -13255 ACSS1 acyl-CoA synthetase short-chain family member 1 439544 3 2 3 2 2 1 0 0 0 0 0.86 1.00 -13256 CHRNA7 cholinergic receptor, nicotinic, alpha 7 219396 1 1 1 0 0 0 1 0 0 0 0.86 1.00 -13257 IPO4 importin 4 736960 4 4 4 1 3 1 0 0 0 0 0.86 1.00 -13258 EGF epidermal growth factor (beta-urogastrone) 833280 3 3 3 1 1 0 2 0 0 0 0.86 1.00 -13259 F12 coagulation factor XII (Hageman factor) 305700 2 2 2 0 1 0 1 0 0 0 0.86 1.00 -13260 TRIM50 tripartite motif-containing 50 302880 1 1 1 1 1 0 0 0 0 0 0.86 1.00 -13261 IHH Indian hedgehog homolog (Drosophila) 227360 1 1 1 0 0 1 0 0 0 0 0.86 1.00 -13262 CNN2 calponin 2 156408 1 1 1 1 0 1 0 0 0 0 0.86 1.00 -13263 SLC29A2 solute carrier family 29 (nucleoside transporters), member 2 296456 1 1 1 1 1 0 0 0 0 0 0.86 1.00 -13264 KLHL12 kelch-like 12 (Drosophila) 380800 1 1 1 0 0 1 0 0 0 0 0.86 1.00 -13265 ADCY7 adenylate cyclase 7 685264 4 4 4 2 3 0 0 0 1 0 0.86 1.00 -13266 ATP2C2 ATPase, Ca++ transporting, type 2C, member 2 650804 2 2 2 0 0 1 0 0 1 0 0.86 1.00 -13267 CCR6 chemokine (C-C motif) receptor 6 253792 2 1 2 0 1 1 0 0 0 0 0.86 1.00 -13268 TACR2 tachykinin receptor 2 264728 1 1 1 0 0 1 0 0 0 0 0.86 1.00 -13269 C1orf65 chromosome 1 open reading frame 65 361228 2 2 2 2 1 1 0 0 0 0 0.86 1.00 -13270 NUP153 nucleoporin 153kDa 1011332 4 4 4 3 1 2 1 0 0 0 0.86 1.00 -13271 C18orf25 chromosome 18 open reading frame 25 275072 1 1 1 0 0 1 0 0 0 0 0.86 1.00 -13272 SF3A3 splicing factor 3a, subunit 3, 60kDa 351896 1 1 1 0 0 1 0 0 0 0 0.86 1.00 -13273 CDC37 cell division cycle 37 homolog (S. cerevisiae) 261856 1 1 1 1 0 1 0 0 0 0 0.86 1.00 -13274 KBTBD5 kelch repeat and BTB (POZ) domain containing 5 387576 3 3 3 0 2 1 0 0 0 0 0.86 1.00 -13275 TBC1D22B TBC1 domain family, member 22B 351000 1 1 1 1 0 0 1 0 0 0 0.86 1.00 -13276 EXOC8 exocyst complex component 8 462056 2 2 2 0 0 1 1 0 0 0 0.86 1.00 -13277 EIF4B eukaryotic translation initiation factor 4B 424704 2 2 2 0 1 0 0 0 1 0 0.86 1.00 -13278 HSP90AB1 heat shock protein 90kDa alpha (cytosolic), class B member 1 496972 3 2 3 2 0 1 1 0 1 0 0.86 1.00 -13279 TCN1 transcobalamin I (vitamin B12 binding protein, R binder family) 299712 1 1 1 0 0 1 0 0 0 0 0.86 1.00 -13280 CCDC67 coiled-coil domain containing 67 411544 1 1 1 0 0 1 0 0 0 0 0.86 1.00 -13281 TSPYL2 TSPY-like 2 388236 2 2 2 0 0 2 0 0 0 0 0.86 1.00 -13282 CD14 CD14 molecule 252616 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -13283 DDB2 damage-specific DNA binding protein 2, 48kDa 296576 1 1 1 2 1 0 0 0 0 0 0.86 1.00 -13284 LBXCOR1 LBXCOR1 homolog (mouse) 327432 1 1 1 0 0 0 1 0 0 0 0.86 1.00 -13285 ZNF512B zinc finger protein 512B 518920 3 3 3 0 3 0 0 0 0 0 0.86 1.00 -13286 GNA13 guanine nucleotide binding protein (G protein), alpha 13 256172 2 1 2 2 1 1 0 0 0 0 0.86 1.00 -13287 EZR ezrin 406112 2 2 2 0 2 0 0 0 0 0 0.86 1.00 -13288 INADL InaD-like (Drosophila) 1248576 5 5 5 2 0 2 2 0 1 0 0.86 1.00 -13289 KCNN1 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 1 306068 2 2 2 1 1 1 0 0 0 0 0.86 1.00 -13290 ZBTB8A 299712 1 1 1 1 0 1 0 0 0 0 0.86 1.00 -13291 PLXNA3 plexin A3 1061872 4 4 3 0 1 0 1 0 2 0 0.87 1.00 -13292 DPH2 DPH2 homolog (S. cerevisiae) 326768 1 1 1 1 0 1 0 0 0 0 0.87 1.00 -13293 CHPF chondroitin polymerizing factor 461920 3 3 3 0 2 0 1 0 0 0 0.87 1.00 -13294 TRAM2 translocation associated membrane protein 2 259168 1 1 1 0 0 0 1 0 0 0 0.87 1.00 -13295 POLD1 polymerase (DNA directed), delta 1, catalytic subunit 125kDa 666696 5 5 5 2 3 2 0 0 0 0 0.87 1.00 -13296 KCNH6 potassium voltage-gated channel, subfamily H (eag-related), member 6 646408 5 4 5 1 3 1 0 0 1 0 0.87 1.00 -13297 KLF10 Kruppel-like factor 10 326536 1 1 1 1 0 1 0 0 0 0 0.87 1.00 -13298 ATOH8 atonal homolog 8 (Drosophila) 128184 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13299 USP36 ubiquitin specific peptidase 36 744440 5 5 5 2 4 1 0 0 0 0 0.87 1.00 -13300 SLC25A32 solute carrier family 25, member 32 214424 1 1 1 0 0 1 0 0 0 0 0.87 1.00 -13301 PPIP5K1 324716 1 1 1 1 0 1 0 0 0 0 0.87 1.00 -13302 SLFNL1 schlafen-like 1 237148 1 1 1 2 0 0 1 0 0 0 0.87 1.00 -13303 SMCR7L Smith-Magenis syndrome chromosome region, candidate 7-like 306404 1 1 1 0 0 1 0 0 0 0 0.87 1.00 -13304 ZNF189 zinc finger protein 189 424032 1 1 1 1 0 0 0 0 1 0 0.87 1.00 -13305 SH2B3 SH2B adaptor protein 3 244860 1 1 1 1 1 0 0 0 0 0 0.87 1.00 -13306 STARD8 StAR-related lipid transfer (START) domain containing 8 704996 3 3 3 0 2 0 0 0 1 0 0.87 1.00 -13307 MKL1 megakaryoblastic leukemia (translocation) 1 565520 2 2 2 1 1 0 0 0 1 0 0.87 1.00 -13308 PTPRA protein tyrosine phosphatase, receptor type, A 558432 2 2 2 1 0 0 2 0 0 0 0.87 1.00 -13309 NARFL nuclear prelamin A recognition factor-like 241192 1 1 1 0 0 1 0 0 0 0 0.87 1.00 -13310 MAML2 mastermind-like 2 (Drosophila) 693588 3 3 3 4 0 3 0 0 0 0 0.87 1.00 -13311 HPX hemopexin 320096 1 1 1 1 1 0 0 0 0 0 0.87 1.00 -13312 HTRA4 HtrA serine peptidase 4 243348 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13313 ZBTB4 zinc finger and BTB domain containing 4 632712 4 3 4 0 2 2 0 0 0 0 0.87 1.00 -13314 GOLGA4 golgi autoantigen, golgin subfamily a, 4 1519504 14 7 12 3 4 7 1 0 2 0 0.87 1.00 -13315 NADSYN1 NAD synthetase 1 473728 2 2 2 1 0 1 1 0 0 0 0.87 1.00 -13316 SRGAP2 SLIT-ROBO Rho GTPase activating protein 2 635280 3 3 3 1 1 1 0 1 0 0 0.87 1.00 -13317 PITX1 paired-like homeodomain 1 178080 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13318 KCNJ4 potassium inwardly-rectifying channel, subfamily J, member 4 231896 1 1 1 1 1 0 0 0 0 0 0.87 1.00 -13319 SNRNP70 186880 2 1 2 0 1 1 0 0 0 0 0.87 1.00 -13320 CDC42EP4 CDC42 effector protein (Rho GTPase binding) 4 231476 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13321 MPND MPN domain containing 232348 1 1 1 1 1 0 0 0 0 0 0.87 1.00 -13322 GLMN glomulin, FKBP associated protein 415968 1 1 1 1 0 0 1 0 0 0 0.87 1.00 -13323 SUV39H1 suppressor of variegation 3-9 homolog 1 (Drosophila) 273384 1 1 1 3 1 0 0 0 0 0 0.87 1.00 -13324 IKBKE inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase epsilon 485056 4 3 4 2 1 3 0 0 0 0 0.87 1.00 -13325 NDUFV1 NADH dehydrogenase (ubiquinone) flavoprotein 1, 51kDa 314920 2 2 2 0 2 0 0 0 0 0 0.87 1.00 -13326 ULK2 unc-51-like kinase 2 (C. elegans) 712152 4 3 4 0 1 1 2 0 0 0 0.87 1.00 -13327 HNRNPH2 303296 1 1 1 1 0 1 0 0 0 0 0.87 1.00 -13328 SPTBN4 spectrin, beta, non-erythrocytic 4 1255900 8 8 7 2 4 2 1 0 1 0 0.87 1.00 -13329 AFP alpha-fetoprotein 422464 2 1 2 1 0 1 1 0 0 0 0.87 1.00 -13330 SHE Src homology 2 domain containing E 283612 2 2 2 0 1 1 0 0 0 0 0.87 1.00 -13331 AMBP alpha-1-microglobulin/bikunin precursor 246176 1 1 1 1 1 0 0 0 0 0 0.87 1.00 -13332 DBX1 developing brain homeobox 1 200412 1 1 1 3 1 0 0 0 0 0 0.87 1.00 -13333 RTKN rhotekin 406784 4 2 4 2 1 2 1 0 0 0 0.87 1.00 -13334 C9orf64 chromosome 9 open reading frame 64 233408 1 1 1 3 0 1 0 0 0 0 0.87 1.00 -13335 FRMD4B FERM domain containing 4B 702120 2 2 2 1 0 0 1 0 1 0 0.87 1.00 -13336 ZNF398 zinc finger protein 398 426748 2 2 2 0 1 0 1 0 0 0 0.87 1.00 -13337 ZDHHC11 zinc finger, DHHC-type containing 11 277616 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13338 PAPSS1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 430752 2 2 2 0 1 0 1 0 0 0 0.87 1.00 -13339 HSPBAP1 HSPB (heat shock 27kDa) associated protein 1 335776 1 1 1 0 0 1 0 0 0 0 0.87 1.00 -13340 CNTNAP3 contactin associated protein-like 3 619008 4 4 4 1 1 2 1 0 0 0 0.87 1.00 -13341 WDR74 WD repeat domain 74 252552 1 1 1 1 0 1 0 0 0 0 0.87 1.00 -13342 B3GNT8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 218120 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13343 LAMP1 lysosomal-associated membrane protein 1 274400 1 1 1 3 1 0 0 0 0 0 0.87 1.00 -13344 TRIM21 tripartite motif-containing 21 323616 1 1 1 1 0 1 0 0 0 0 0.87 1.00 -13345 UHRF2 ubiquitin-like, containing PHD and RING finger domains, 2 552524 2 2 2 0 0 0 2 0 0 0 0.87 1.00 -13346 SMO smoothened homolog (Drosophila) 450832 1 1 1 3 0 0 0 0 1 0 0.87 1.00 -13347 CACNA1G calcium channel, voltage-dependent, T type, alpha 1G subunit 1402020 11 8 11 2 4 3 3 0 1 0 0.87 1.00 -13348 LARS2 leucyl-tRNA synthetase 2, mitochondrial 625408 3 3 3 2 3 0 0 0 0 0 0.87 1.00 -13349 JPH4 junctophilin 4 199544 1 1 1 1 1 0 0 0 0 0 0.87 1.00 -13350 HSPA14 heat shock 70kDa protein 14 351184 1 1 1 2 1 0 0 0 0 0 0.87 1.00 -13351 XRRA1 X-ray radiation resistance associated 1 530040 2 2 2 2 1 1 0 0 0 0 0.87 1.00 -13352 TRIM28 tripartite motif-containing 28 480648 2 2 2 1 1 1 0 0 0 0 0.87 1.00 -13353 C9orf3 chromosome 9 open reading frame 3 488712 2 2 2 0 2 0 0 0 0 0 0.87 1.00 -13354 RGNEF 1030884 6 4 6 2 0 3 2 0 1 0 0.87 1.00 -13355 N4BP2L2 NEDD4 binding protein 2-like 2 809984 5 3 5 1 0 3 1 0 1 0 0.87 1.00 -13356 STXBP2 syntaxin binding protein 2 377960 2 2 2 0 1 0 1 0 0 0 0.87 1.00 -13357 TAF15 TAF15 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 68kDa 412832 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13358 BCORL1 BCL6 co-repressor-like 1 1130080 5 5 5 5 2 1 1 0 1 0 0.87 1.00 -13359 RPL3L ribosomal protein L3-like 263088 1 1 1 1 0 1 0 0 0 0 0.87 1.00 -13360 SLC6A6 solute carrier family 6 (neurotransmitter transporter, taurine), member 6 429856 2 2 2 2 1 1 0 0 0 0 0.87 1.00 -13361 GON4L gon-4-like (C. elegans) 1494368 9 7 9 1 0 7 2 0 0 0 0.87 1.00 -13362 HERC2 hect domain and RLD 2 3228476 20 14 20 13 6 5 4 0 5 0 0.87 1.00 -13363 CACNA1I calcium channel, voltage-dependent, T type, alpha 1I subunit 1011620 5 5 5 1 2 2 0 0 1 0 0.87 1.00 -13364 RGL3 ral guanine nucleotide dissociation stimulator-like 3 420824 1 1 1 2 0 0 0 0 1 0 0.87 1.00 -13365 AP2A2 adaptor-related protein complex 2, alpha 2 subunit 568180 2 2 2 1 0 0 1 0 1 0 0.87 1.00 -13366 LONP1 lon peptidase 1, mitochondrial 567140 4 4 4 0 3 0 1 0 0 0 0.87 1.00 -13367 MKS1 Meckel syndrome, type 1 381024 2 1 2 1 0 0 0 0 0 2 0.87 1.00 -13368 P2RX2 purinergic receptor P2X, ligand-gated ion channel, 2 301192 2 2 2 0 2 0 0 0 0 0 0.87 1.00 -13369 BAT1 HLA-B associated transcript 1 239624 1 1 1 1 0 0 1 0 0 0 0.87 1.00 -13370 GYS1 glycogen synthase 1 (muscle) 472128 2 2 2 1 0 0 1 0 1 0 0.87 1.00 -13371 CPNE9 copine family member IX 383488 2 2 2 0 0 1 0 1 0 0 0.87 1.00 -13372 NBPF1 neuroblastoma breakpoint family, member 1 701092 3 2 3 1 0 2 1 0 0 0 0.87 1.00 -13373 ATF7 activating transcription factor 7 336896 1 1 1 2 0 1 0 0 0 0 0.87 1.00 -13374 PDE4C phosphodiesterase 4C, cAMP-specific (phosphodiesterase E1 dunce homolog, Drosophila) 452256 2 2 2 0 1 1 0 0 0 0 0.87 1.00 -13375 PRUNE prune homolog (Drosophila) 312256 1 1 1 0 0 1 0 0 0 0 0.87 1.00 -13376 BAG3 BCL2-associated athanogene 3 366016 1 1 1 2 1 0 0 0 0 0 0.87 1.00 -13377 SLC9A2 solute carrier family 9 (sodium/hydrogen exchanger), member 2 539336 2 2 2 1 0 2 0 0 0 0 0.87 1.00 -13378 ADCY9 adenylate cyclase 9 870164 6 5 6 4 4 1 0 0 1 0 0.87 1.00 -13379 TBC1D2B TBC1 domain family, member 2B 543344 4 3 4 2 4 0 0 0 0 0 0.87 1.00 -13380 ZNF239 zinc finger protein 239 309344 2 1 2 3 1 1 0 0 0 0 0.87 1.00 -13381 CLCNKA chloride channel Ka 435228 1 1 1 1 0 0 0 0 1 0 0.87 1.00 -13382 CACNA1A calcium channel, voltage-dependent, P/Q type, alpha 1A subunit 1390920 17 10 16 7 10 5 1 0 1 0 0.87 1.00 -13383 LSM14B LSM14B, SCD6 homolog B (S. cerevisiae) 263788 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13384 NOP2 557088 3 3 3 2 2 0 0 0 1 0 0.87 1.00 -13385 LHX4 LIM homeobox 4 268128 1 1 1 0 0 0 1 0 0 0 0.87 1.00 -13386 C6orf142 chromosome 6 open reading frame 142 320096 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13387 SLC29A1 solute carrier family 29 (nucleoside transporters), member 1 317856 1 1 1 1 0 0 1 0 0 0 0.87 1.00 -13388 ERI3 223524 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13389 PHLDA1 pleckstrin homology-like domain, family A, member 1 196384 1 1 1 0 0 0 1 0 0 0 0.87 1.00 -13390 CDC42BPB CDC42 binding protein kinase beta (DMPK-like) 1095172 7 5 7 1 2 3 0 0 2 0 0.87 1.00 -13391 PDCD4 programmed cell death 4 (neoplastic transformation inhibitor) 328832 1 1 1 0 0 1 0 0 0 0 0.87 1.00 -13392 TMEM26 transmembrane protein 26 252840 1 1 1 1 1 0 0 0 0 0 0.87 1.00 -13393 DAZAP1 DAZ associated protein 1 272012 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -13394 AURKB aurora kinase B 239008 1 1 1 1 1 0 0 0 0 0 0.87 1.00 -13395 TTC12 tetratricopeptide repeat domain 12 492024 2 2 2 4 0 2 0 0 0 0 0.87 1.00 -13396 HK2 hexokinase 2 618064 3 3 3 2 0 3 0 0 0 0 0.87 1.00 -13397 TMEM8B 363392 2 2 2 0 1 1 0 0 0 0 0.87 1.00 -13398 TADA2B 223812 1 1 1 2 1 0 0 0 0 0 0.87 1.00 -13399 CYP3A43 cytochrome P450, family 3, subfamily A, polypeptide 43 351008 2 1 2 1 0 2 0 0 0 0 0.87 1.00 -13400 FAM22G family with sequence similarity 22, member G 305616 1 1 1 0 0 1 0 0 0 0 0.87 1.00 -13401 URGCP 618380 3 3 3 0 1 1 1 0 0 0 0.88 1.00 -13402 MC3R melanocortin 3 receptor 218624 1 1 1 2 1 0 0 0 0 0 0.88 1.00 -13403 KIAA1383 KIAA1383 659088 5 4 5 1 1 2 2 0 0 0 0.88 1.00 -13404 DCAF10 297220 1 1 1 1 1 0 0 0 0 0 0.88 1.00 -13405 ZUFSP zinc finger with UFM1-specific peptidase domain 397152 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -13406 ASAP2 679864 3 3 3 3 2 0 0 0 1 0 0.88 1.00 -13407 RFPL2 ret finger protein-like 2 276504 1 1 1 2 0 0 1 0 0 0 0.88 1.00 -13408 POC1A 279104 1 1 1 0 0 0 1 0 0 0 0.88 1.00 -13409 OPN3 opsin 3 255276 1 1 1 4 1 0 0 0 0 0 0.88 1.00 -13410 LRG1 leucine-rich alpha-2-glycoprotein 1 226156 1 1 1 3 1 0 0 0 0 0 0.88 1.00 -13411 KBTBD10 kelch repeat and BTB (POZ) domain containing 10 413280 4 1 4 1 2 1 0 0 1 0 0.88 1.00 -13412 PRMT2 protein arginine methyltransferase 2 284984 1 1 1 1 1 0 0 0 0 0 0.88 1.00 -13413 OAT ornithine aminotransferase (gyrate atrophy) 300384 1 1 1 0 0 0 1 0 0 0 0.88 1.00 -13414 VSIG10 353024 1 1 1 2 1 0 0 0 0 0 0.88 1.00 -13415 DSC2 desmocollin 2 613088 2 2 2 0 1 0 1 0 0 0 0.88 1.00 -13416 NFIX nuclear factor I/X (CCAAT-binding transcription factor) 297192 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13417 NAMPT nicotinamide phosphoribosyltransferase 340480 1 1 1 2 1 0 0 0 0 0 0.88 1.00 -13418 DMTF1 cyclin D binding myb-like transcription factor 1 525728 2 2 2 3 1 1 0 0 0 0 0.88 1.00 -13419 SGSH N-sulfoglucosamine sulfohydrolase (sulfamidase) 285732 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -13420 DIDO1 death inducer-obliterator 1 1360968 12 8 12 5 3 5 3 0 1 0 0.88 1.00 -13421 OBSL1 obscurin-like 1 955584 5 5 5 2 1 0 2 0 2 0 0.88 1.00 -13422 USP20 ubiquitin specific peptidase 20 608772 4 3 4 0 3 0 0 0 1 0 0.88 1.00 -13423 DOCK8 dedicator of cytokinesis 8 1416940 9 6 9 4 5 1 2 1 0 0 0.88 1.00 -13424 PCSK7 proprotein convertase subtilisin/kexin type 7 484968 2 2 2 0 0 1 1 0 0 0 0.88 1.00 -13425 PIAS4 protein inhibitor of activated STAT, 4 297224 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -13426 MSI1 musashi homolog 1 (Drosophila) 219368 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -13427 FEM1A fem-1 homolog a (C. elegans) 302260 1 1 1 1 0 1 0 0 0 0 0.88 1.00 -13428 DHX15 DEAH (Asp-Glu-Ala-His) box polypeptide 15 547456 3 2 3 2 1 0 1 0 1 0 0.88 1.00 -13429 USO1 USO1 homolog, vesicle docking protein (yeast) 622552 4 2 4 2 3 1 0 0 0 0 0.88 1.00 -13430 CBL Cas-Br-M (murine) ecotropic retroviral transforming sequence 579264 5 3 5 4 3 2 0 0 0 0 0.88 1.00 -13431 SH2B1 SH2B adaptor protein 1 444080 2 2 2 0 1 0 1 0 0 0 0.88 1.00 -13432 PIM1 pim-1 oncogene 199248 1 1 1 2 1 0 0 0 0 0 0.88 1.00 -13433 C19orf29 chromosome 19 open reading frame 29 381864 3 3 3 0 3 0 0 0 0 0 0.88 1.00 -13434 MED17 mediator complex subunit 17 413616 1 1 1 1 0 0 1 0 0 0 0.88 1.00 -13435 FBN3 fibrillin 3 1819048 9 9 9 6 6 1 1 0 1 0 0.88 1.00 -13436 ATHL1 ATH1, acid trehalase-like 1 (yeast) 353552 1 1 1 1 1 0 0 0 0 0 0.88 1.00 -13437 FOXP4 forkhead box P4 419680 2 2 2 0 1 1 0 0 0 0 0.88 1.00 -13438 SCARF2 scavenger receptor class F, member 2 235836 1 1 1 0 0 0 1 0 0 0 0.88 1.00 -13439 SFRS11 splicing factor, arginine/serine-rich 11 336588 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13440 IL1RAP interleukin 1 receptor accessory protein 397152 1 1 1 0 0 0 0 0 1 0 0.88 1.00 -13441 CACNA1C calcium channel, voltage-dependent, L type, alpha 1C subunit 1588816 12 10 12 7 5 5 2 0 0 0 0.88 1.00 -13442 ATP2A3 ATPase, Ca++ transporting, ubiquitous 618292 4 4 4 3 4 0 0 0 0 0 0.88 1.00 -13443 ACO2 aconitase 2, mitochondrial 540960 2 2 2 0 1 0 1 0 0 0 0.88 1.00 -13444 FAM193B 463740 1 1 1 2 0 0 0 0 1 0 0.88 1.00 -13445 RAB3IP RAB3A interacting protein (rabin3) 330400 1 1 1 1 0 1 0 0 0 0 0.88 1.00 -13446 DLGAP5 585312 3 2 3 4 0 1 1 1 0 0 0.88 1.00 -13447 EN1 engrailed homeobox 1 146860 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13448 N4BP3 266252 2 2 2 0 1 0 1 0 0 0 0.88 1.00 -13449 RPAP1 RNA polymerase II associated protein 1 952896 4 4 4 1 0 3 0 0 1 0 0.88 1.00 -13450 LOXL4 lysyl oxidase-like 4 478600 2 2 2 1 1 1 0 0 0 0 0.88 1.00 -13451 BCAT2 branched chain aminotransferase 2, mitochondrial 261264 1 1 1 1 1 0 0 0 0 0 0.88 1.00 -13452 IFI16 interferon, gamma-inducible protein 16 460992 1 1 1 0 0 0 0 1 0 0 0.88 1.00 -13453 CXXC1 CXXC finger 1 (PHD domain) 457184 2 2 2 0 2 0 0 0 0 0 0.88 1.00 -13454 BAZ2A bromodomain adjacent to zinc finger domain, 2A 1284920 10 6 10 1 5 0 4 0 1 0 0.88 1.00 -13455 TBC1D12 TBC1 domain family, member 12 328164 2 1 2 2 1 1 0 0 0 0 0.88 1.00 -13456 CCDC142 coiled-coil domain containing 142 426972 1 1 1 0 0 0 0 1 0 0 0.88 1.00 -13457 PCDH1 protocadherin 1 835404 4 4 4 0 1 0 3 0 0 0 0.88 1.00 -13458 EML4 echinoderm microtubule associated protein like 4 680512 2 2 2 2 0 0 1 0 1 0 0.88 1.00 -13459 INPP5J 301820 1 1 1 0 0 0 1 0 0 0 0.88 1.00 -13460 PTPN23 protein tyrosine phosphatase, non-receptor type 23 1041404 5 5 5 0 2 1 0 0 2 0 0.88 1.00 -13461 PUS1 pseudouridylate synthase 1 265356 1 1 1 1 0 0 1 0 0 0 0.88 1.00 -13462 SCUBE1 signal peptide, CUB domain, EGF-like 1 597088 3 3 3 1 2 1 0 0 0 0 0.88 1.00 -13463 JAK1 Janus kinase 1 (a protein tyrosine kinase) 797664 4 4 3 3 2 1 1 0 0 0 0.88 1.00 -13464 PGM2L1 phosphoglucomutase 2-like 1 431200 2 1 2 0 0 0 1 0 1 0 0.88 1.00 -13465 LGALS9C 195860 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13466 DNAJA2 DnaJ (Hsp40) homolog, subfamily A, member 2 280140 1 1 1 1 0 1 0 0 0 0 0.88 1.00 -13467 PIH1D1 PIH1 domain containing 1 203616 1 1 1 1 1 0 0 0 0 0 0.88 1.00 -13468 SLCO4A1 solute carrier organic anion transporter family, member 4A1 438900 2 2 2 0 1 0 1 0 0 0 0.88 1.00 -13469 OXSR1 oxidative-stress responsive 1 370860 1 1 1 2 0 1 0 0 0 0 0.88 1.00 -13470 ARMC5 armadillo repeat containing 5 608892 3 3 3 0 1 1 0 0 1 0 0.88 1.00 -13471 EMILIN3 elastin microfibril interfacer 3 472136 1 1 1 1 0 0 0 0 1 0 0.88 1.00 -13472 C14orf49 chromosome 14 open reading frame 49 648556 4 3 4 2 2 2 0 0 0 0 0.88 1.00 -13473 FAM78A family with sequence similarity 78, member A 188524 1 1 1 2 0 1 0 0 0 0 0.88 1.00 -13474 CBLL1 Cas-Br-M (murine) ecotropic retroviral transforming sequence-like 1 333688 2 1 2 0 0 1 1 0 0 0 0.88 1.00 -13475 DONSON downstream neighbor of SON 317184 2 1 2 2 1 1 0 0 0 0 0.88 1.00 -13476 TLE3 transducin-like enhancer of split 3 (E(sp1) homolog, Drosophila) 490728 3 3 3 1 3 0 0 0 0 0 0.88 1.00 -13477 METAP2 methionyl aminopeptidase 2 331744 1 1 1 1 0 0 1 0 0 0 0.88 1.00 -13478 SLC9A3 solute carrier family 9 (sodium/hydrogen exchanger), member 3 407824 2 2 2 2 1 0 0 0 1 0 0.88 1.00 -13479 LMLN leishmanolysin-like (metallopeptidase M8 family) 455168 3 2 3 1 1 2 0 0 0 0 0.88 1.00 -13480 NTSR1 neurotensin receptor 1 (high affinity) 246876 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13481 VPS72 vacuolar protein sorting 72 homolog (S. cerevisiae) 250656 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13482 RCBTB1 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 1 367360 1 1 1 3 1 0 0 0 0 0 0.88 1.00 -13483 PLEKHH3 pleckstrin homology domain containing, family H (with MyTH4 domain) member 3 324600 1 1 1 0 0 0 1 0 0 0 0.88 1.00 -13484 GRK7 G protein-coupled receptor kinase 7 353864 2 2 2 1 1 1 0 0 0 0 0.88 1.00 -13485 HOXB8 homeobox B8 152908 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -13486 CTBP1 C-terminal binding protein 1 183668 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13487 GIT1 G protein-coupled receptor kinase interactor 1 497100 3 3 3 0 2 1 0 0 0 0 0.88 1.00 -13488 KDM2B 910056 5 5 5 3 3 0 1 1 0 0 0.88 1.00 -13489 GCM1 glial cells missing homolog 1 (Drosophila) 298144 1 1 1 1 0 1 0 0 0 0 0.88 1.00 -13490 C11orf61 chromosome 11 open reading frame 61 261744 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13491 B3GAT1 beta-1,3-glucuronyltransferase 1 (glucuronosyltransferase P) 178304 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13492 ETFB electron-transfer-flavoprotein, beta polypeptide 245256 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -13493 ACTN4 actinin, alpha 4 572600 3 3 3 1 1 2 0 0 0 0 0.88 1.00 -13494 LRRC15 leucine rich repeat containing 15 392672 2 2 2 3 2 0 0 0 0 0 0.88 1.00 -13495 SPINT1 serine peptidase inhibitor, Kunitz type 1 347480 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -13496 ITPR3 inositol 1,4,5-triphosphate receptor, type 3 1835732 12 11 12 6 8 3 1 0 0 0 0.88 1.00 -13497 AKT3 v-akt murine thymoma viral oncogene homolog 3 (protein kinase B, gamma) 344960 1 1 1 1 0 1 0 0 0 0 0.88 1.00 -13498 GMCL1 germ cell-less homolog 1 (Drosophila) 327948 1 1 1 2 0 1 0 0 0 0 0.88 1.00 -13499 ARHGEF10L Rho guanine nucleotide exchange factor (GEF) 10-like 815240 4 4 4 0 4 0 0 0 0 0 0.88 1.00 -13500 ZNF697 zinc finger protein 697 190128 1 1 1 1 0 1 0 0 0 0 0.88 1.00 -13501 CNOT2 CCR4-NOT transcription complex, subunit 2 376992 1 1 1 1 0 1 0 0 0 0 0.88 1.00 -13502 ZNF587 zinc finger protein 587 389760 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13503 CAPN12 calpain 12 368348 2 2 2 0 2 0 0 0 0 0 0.88 1.00 -13504 GDI1 GDP dissociation inhibitor 1 306796 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -13505 UROD uroporphyrinogen decarboxylase 256256 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13506 KRTAP10-4 keratin associated protein 10-4 266588 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -13507 SLC25A37 solute carrier family 25, member 37 215616 1 1 1 1 1 0 0 0 0 0 0.88 1.00 -13508 ACAD8 acyl-Coenzyme A dehydrogenase family, member 8 272356 1 1 1 2 0 1 0 0 0 0 0.88 1.00 -13509 NACA nascent polypeptide-associated complex alpha subunit 1243648 5 5 5 1 0 3 2 0 0 0 0.88 1.00 -13510 PSMC2 proteasome (prosome, macropain) 26S subunit, ATPase, 2 302400 1 1 1 1 0 1 0 0 0 0 0.88 1.00 -13511 FAM114A2 351680 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -13512 SLC7A5 solute carrier family 7 (cationic amino acid transporter, y+ system), member 5 299704 1 1 1 0 1 0 0 0 0 0 0.88 1.00 -13513 PPARA peroxisome proliferator-activated receptor alpha 319116 1 1 1 1 1 0 0 0 0 0 0.89 1.00 -13514 BPIL1 bactericidal/permeability-increasing protein-like 1 321752 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13515 DGKK diacylglycerol kinase, kappa 813248 5 3 5 1 2 2 0 0 1 0 0.89 1.00 -13516 TEPP 206520 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13517 CCDC130 coiled-coil domain containing 130 237720 1 1 1 2 0 1 0 0 0 0 0.89 1.00 -13518 MEF2D myocyte enhancer factor 2D 331400 1 1 1 1 0 0 1 0 0 0 0.89 1.00 -13519 TDRD9 tudor domain containing 9 630160 2 2 2 2 1 1 0 0 0 0 0.89 1.00 -13520 THAP11 THAP domain containing 11 176428 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13521 EXD2 340256 1 1 1 1 0 0 1 0 0 0 0.89 1.00 -13522 EXD3 357652 1 1 1 0 0 0 0 1 0 0 0.89 1.00 -13523 RRM1 ribonucleotide reductase M1 546792 2 2 2 0 1 1 0 0 0 0 0.89 1.00 -13524 TCTN2 tectonic family member 2 485184 2 2 2 2 1 0 1 0 0 0 0.89 1.00 -13525 MGAT3 mannosyl (beta-1,4-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase 260932 2 2 2 3 1 1 0 0 0 0 0.89 1.00 -13526 STAB1 stabilin 1 1526868 8 7 8 2 4 2 0 0 2 0 0.89 1.00 -13527 SCAP SREBF chaperone 697956 3 3 3 2 0 2 0 0 1 0 0.89 1.00 -13528 MRVI1 murine retrovirus integration site 1 homolog 611588 3 3 3 2 1 2 0 0 0 0 0.89 1.00 -13529 TJP2 tight junction protein 2 (zona occludens 2) 776492 5 4 5 0 4 1 0 0 0 0 0.89 1.00 -13530 NLGN4Y neuroligin 4, Y-linked 345940 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13531 FAM120A family with sequence similarity 120A 688184 5 4 5 3 1 2 0 1 1 0 0.89 1.00 -13532 IGSF3 immunoglobulin superfamily, member 3 824068 5 5 5 4 3 1 1 0 0 0 0.89 1.00 -13533 HEATR2 HEAT repeat containing 2 429436 2 2 2 2 1 1 0 0 0 0 0.89 1.00 -13534 H1FNT H1 histone family, member N, testis-specific 153152 1 1 1 1 1 0 0 0 0 0 0.89 1.00 -13535 ZNF629 zinc finger protein 629 537056 3 3 3 1 2 0 0 0 1 0 0.89 1.00 -13536 TTC38 309260 2 2 2 1 2 0 0 0 0 0 0.89 1.00 -13537 ATG9A ATG9 autophagy related 9 homolog A (S. cerevisiae) 551992 3 3 3 2 1 2 0 0 0 0 0.89 1.00 -13538 PAF1 Paf1, RNA polymerase II associated factor, homolog (S. cerevisiae) 366256 1 1 1 1 0 0 1 0 0 0 0.89 1.00 -13539 C16orf89 275696 1 1 1 0 0 1 0 0 0 0 0.89 1.00 -13540 CTTNBP2 cortactin binding protein 2 1126636 10 6 9 3 5 4 1 0 0 0 0.89 1.00 -13541 CAPN13 calpain 13 465824 2 2 2 2 2 0 0 0 0 0 0.89 1.00 -13542 PARP6 poly (ADP-ribose) polymerase family, member 6 443744 1 1 1 1 0 0 1 0 0 0 0.89 1.00 -13543 PI16 peptidase inhibitor 16 298120 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13544 STK25 serine/threonine kinase 25 (STE20 homolog, yeast) 293044 1 1 1 1 0 1 0 0 0 0 0.89 1.00 -13545 SEPT9 septin 9 459632 2 2 2 0 0 1 0 0 1 0 0.89 1.00 -13546 GPR152 G protein-coupled receptor 152 266504 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13547 ARFGAP1 ADP-ribosylation factor GTPase activating protein 1 270872 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13548 PSPC1 paraspeckle component 1 348264 3 2 3 1 3 0 0 0 0 0 0.89 1.00 -13549 ARRB1 arrestin, beta 1 281688 1 1 1 1 1 0 0 0 0 0 0.89 1.00 -13550 CUL3 cullin 3 530880 1 1 1 1 0 1 0 0 0 0 0.89 1.00 -13551 B3GAT3 beta-1,3-glucuronyltransferase 3 (glucuronosyltransferase I) 219772 1 1 1 2 0 1 0 0 0 0 0.89 1.00 -13552 SOAT2 sterol O-acyltransferase 2 344296 1 1 1 1 0 0 1 0 0 0 0.89 1.00 -13553 CHMP7 CHMP family, member 7 282148 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13554 ICAM5 intercellular adhesion molecule 5, telencephalin 380436 3 3 3 1 1 0 1 0 1 0 0.89 1.00 -13555 TERF1 telomeric repeat binding factor (NIMA-interacting) 1 290108 1 1 1 0 0 0 1 0 0 0 0.89 1.00 -13556 FLAD1 FAD1 flavin adenine dinucleotide synthetase homolog (S. cerevisiae) 406784 1 1 1 1 0 0 1 0 0 0 0.89 1.00 -13557 SKIV2L2 superkiller viralicidic activity 2-like 2 (S. cerevisiae) 725088 4 3 4 2 0 2 2 0 0 0 0.89 1.00 -13558 CHRNA3 cholinergic receptor, nicotinic, alpha 3 345184 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13559 CLPX ClpX caseinolytic peptidase X homolog (E. coli) 427304 1 1 1 0 0 1 0 0 0 0 0.89 1.00 -13560 SPNS1 spinster homolog 1 (Drosophila) 341736 2 2 2 3 2 0 0 0 0 0 0.89 1.00 -13561 INHBB inhibin, beta B 184128 1 1 1 2 1 0 0 0 0 0 0.89 1.00 -13562 B4GALNT2 beta-1,4-N-acetyl-galactosaminyl transferase 2 381544 3 2 3 2 0 3 0 0 0 0 0.89 1.00 -13563 MTO1 mitochondrial translation optimization 1 homolog (S. cerevisiae) 473760 3 2 3 0 3 0 0 0 0 0 0.89 1.00 -13564 GABBR2 gamma-aminobutyric acid (GABA) B receptor, 2 614180 7 4 7 3 3 3 1 0 0 0 0.89 1.00 -13565 UGT1A8 UDP glucuronosyltransferase 1 family, polypeptide A8 361312 1 1 1 1 0 1 0 0 0 0 0.89 1.00 -13566 C2orf65 chromosome 2 open reading frame 65 362208 1 1 1 2 0 1 0 0 0 0 0.89 1.00 -13567 BAP1 BRCA1 associated protein-1 (ubiquitin carboxy-terminal hydrolase) 481824 2 2 2 0 1 0 1 0 0 0 0.89 1.00 -13568 ACTR10 actin-related protein 10 homolog (S. cerevisiae) 292544 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13569 CLPTM1L CLPTM1-like 327688 1 1 1 1 0 0 1 0 0 0 0.89 1.00 -13570 TMEM39A transmembrane protein 39A 335776 1 1 1 1 0 1 0 0 0 0 0.89 1.00 -13571 DMBX1 diencephalon/mesencephalon homeobox 1 252532 1 1 1 2 1 0 0 0 0 0 0.89 1.00 -13572 INTS1 integrator complex subunit 1 1074556 5 4 5 3 1 0 0 0 2 2 0.89 1.00 -13573 NOC4L nucleolar complex associated 4 homolog (S. cerevisiae) 257232 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13574 ACLY ATP citrate lyase 765548 4 4 4 1 2 1 1 0 0 0 0.89 1.00 -13575 TIGD6 tigger transposable element derived 6 351596 1 1 1 0 0 1 0 0 0 0 0.89 1.00 -13576 KLHDC7A kelch domain containing 7A 459368 3 3 3 1 2 1 0 0 0 0 0.89 1.00 -13577 MUS81 MUS81 endonuclease homolog (S. cerevisiae) 322728 1 1 1 1 0 1 0 0 0 0 0.89 1.00 -13578 UGT1A1 UDP glucuronosyltransferase 1 family, polypeptide A1 363328 1 1 1 1 1 0 0 0 0 0 0.89 1.00 -13579 WHSC1L1 Wolf-Hirschhorn syndrome candidate 1-like 1 1006432 4 4 4 1 2 0 2 0 0 0 0.89 1.00 -13580 LTBP3 latent transforming growth factor beta binding protein 3 593164 2 2 2 0 0 0 0 1 1 0 0.89 1.00 -13581 TEKT2 tektin 2 (testicular) 290472 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13582 RTN2 reticulon 2 342516 2 2 2 0 2 0 0 0 0 0 0.89 1.00 -13583 FBXL18 F-box and leucine-rich repeat protein 18 392984 2 2 2 0 1 1 0 0 0 0 0.89 1.00 -13584 FASTKD5 FAST kinase domains 5 512792 2 2 2 0 2 0 0 0 0 0 0.89 1.00 -13585 POFUT2 protein O-fucosyltransferase 2 313488 1 1 1 1 0 1 0 0 0 0 0.89 1.00 -13586 TRIM56 tripartite motif-containing 56 409364 2 2 2 2 1 0 1 0 0 0 0.89 1.00 -13587 ATRIP ATR interacting protein 515900 1 1 1 4 0 1 0 0 0 0 0.89 1.00 -13588 PACSIN3 protein kinase C and casein kinase substrate in neurons 3 270816 1 1 1 0 1 0 0 0 0 0 0.89 1.00 -13589 USP47 ubiquitin specific peptidase 47 883880 7 4 7 1 2 2 2 0 1 0 0.89 1.00 -13590 LRRK1 leucine-rich repeat kinase 1 1335180 10 9 10 3 4 4 2 0 0 0 0.89 1.00 -13591 RNF216 ring finger protein 216 635264 3 3 3 2 0 2 1 0 0 0 0.89 1.00 -13592 TMCO7 transmembrane and coiled-coil domains 7 732928 4 3 4 1 2 1 1 0 0 0 0.89 1.00 -13593 CDK11A 310400 1 1 1 1 1 0 0 0 0 0 0.89 1.00 -13594 GORASP2 golgi reassembly stacking protein 2, 55kDa 305788 1 1 1 1 0 1 0 0 0 0 0.89 1.00 -13595 LRRC48 leucine rich repeat containing 48 346016 1 1 1 1 0 0 1 0 0 0 0.89 1.00 -13596 RSPH3 radial spoke head 3 homolog (Chlamydomonas) 376264 1 1 1 0 0 0 0 0 1 0 0.89 1.00 -13597 EPN3 epsin 3 390292 2 2 2 1 1 1 0 0 0 0 0.89 1.00 -13598 IL22RA1 interleukin 22 receptor, alpha 1 392672 1 1 1 3 0 0 1 0 0 0 0.89 1.00 -13599 FAM83E family with sequence similarity 83, member E 245740 1 1 1 0 0 1 0 0 0 0 0.89 1.00 -13600 DDX26B DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 26B 589600 1 1 1 3 0 1 0 0 0 0 0.89 1.00 -13601 DSE dermatan sulfate epimerase 626996 3 3 3 2 0 3 0 0 0 0 0.90 1.00 -13602 DAXX death-associated protein 6 516992 1 1 1 1 0 0 1 0 0 0 0.90 1.00 -13603 LMTK2 lemur tyrosine kinase 2 999096 8 5 8 4 4 0 2 0 2 0 0.90 1.00 -13604 CENPI centromere protein I 526624 1 1 1 0 0 1 0 0 0 0 0.90 1.00 -13605 MINA MYC induced nuclear antigen 321216 1 1 1 0 0 1 0 0 0 0 0.90 1.00 -13606 DTX3 deltex 3 homolog (Drosophila) 231000 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13607 CDK8 cyclin-dependent kinase 8 324128 1 1 1 1 0 0 1 0 0 0 0.90 1.00 -13608 SCAPER S phase cyclin A-associated protein in the ER 935656 6 4 6 1 0 4 1 0 1 0 0.90 1.00 -13609 SPATA7 spermatogenesis associated 7 408552 1 1 1 2 1 0 0 0 0 0 0.90 1.00 -13610 MYH9 myosin, heavy chain 9, non-muscle 1318856 12 10 12 4 5 5 2 0 0 0 0.90 1.00 -13611 CECR2 cat eye syndrome chromosome region, candidate 2 965464 8 5 8 4 2 5 0 0 1 0 0.90 1.00 -13612 ZFP36 zinc finger protein 36, C3H type, homolog (mouse) 210868 1 1 1 0 0 1 0 0 0 0 0.90 1.00 -13613 TOP2A topoisomerase (DNA) II alpha 170kDa 1035816 5 4 5 1 0 2 2 0 1 0 0.90 1.00 -13614 ZNF341 zinc finger protein 341 559328 2 2 2 1 1 1 0 0 0 0 0.90 1.00 -13615 C21orf29 chromosome 21 open reading frame 29 417620 3 3 3 3 1 2 0 0 0 0 0.90 1.00 -13616 HCRTR2 hypocretin (orexin) receptor 2 305312 1 1 1 5 1 0 0 0 0 0 0.90 1.00 -13617 ALDH16A1 aldehyde dehydrogenase 16 family, member A1 440112 2 2 2 1 2 0 0 0 0 0 0.90 1.00 -13618 SLC5A6 solute carrier family 5 (sodium-dependent vitamin transporter), member 6 440832 2 2 2 1 2 0 0 0 0 0 0.90 1.00 -13619 PRDM8 PR domain containing 8 239736 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13620 ATF2 activating transcription factor 2 350784 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13621 DCBLD1 discoidin, CUB and LCCL domain containing 1 350336 1 1 1 1 1 0 0 0 0 0 0.90 1.00 -13622 ZNF45 zinc finger protein 45 462560 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13623 GRHL3 grainyhead-like 3 (Drosophila) 418712 2 1 2 1 1 0 0 0 1 0 0.90 1.00 -13624 BIRC6 baculoviral IAP repeat-containing 6 (apollon) 3183064 27 10 26 4 4 9 7 0 5 2 0.90 1.00 -13625 ATP8B2 ATPase, class I, type 8B, member 2 876736 7 4 7 0 4 2 0 0 1 0 0.90 1.00 -13626 ORC3L origin recognition complex, subunit 3-like (yeast) 497056 1 1 1 0 0 1 0 0 0 0 0.90 1.00 -13627 DLST dihydrolipoamide S-succinyltransferase (E2 component of 2-oxo-glutarate complex) 309460 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13628 ACTN1 actinin, alpha 1 634592 5 5 5 0 5 0 0 0 0 0 0.90 1.00 -13629 SEMA3G sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3G 481572 4 2 4 1 4 0 0 0 0 0 0.90 1.00 -13630 PDK3 pyruvate dehydrogenase kinase, isozyme 3 278368 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13631 CHRNA4 cholinergic receptor, nicotinic, alpha 4 336376 1 1 1 1 1 0 0 0 0 0 0.90 1.00 -13632 UVRAG UV radiation resistance associated gene 447896 2 2 2 0 1 0 1 0 0 0 0.90 1.00 -13633 KRT10 keratin 10 (epidermolytic hyperkeratosis; keratosis palmaris et plantaris) 340480 2 1 2 1 2 0 0 0 0 0 0.90 1.00 -13634 RFX7 971768 4 4 4 0 1 3 0 0 0 0 0.90 1.00 -13635 GSPT2 G1 to S phase transition 2 422240 1 1 1 1 0 0 0 0 1 0 0.90 1.00 -13636 FRMD6 FERM domain containing 6 424004 4 2 4 3 1 2 1 0 0 0 0.90 1.00 -13637 ISM2 358176 1 1 1 3 0 1 0 0 0 0 0.90 1.00 -13638 POFUT1 protein O-fucosyltransferase 1 274568 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13639 CHID1 chitinase domain containing 1 261992 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13640 GPRIN1 G protein regulated inducer of neurite outgrowth 1 548128 4 2 4 1 1 2 0 0 1 0 0.90 1.00 -13641 NOMO3 NODAL modulator 3 367652 1 1 1 0 0 1 0 0 0 0 0.90 1.00 -13642 OSGIN1 oxidative stress induced growth inhibitor 1 314452 1 1 1 0 0 1 0 0 0 0 0.90 1.00 -13643 CARS2 cysteinyl-tRNA synthetase 2, mitochondrial (putative) 329772 1 1 1 0 0 1 0 0 0 0 0.90 1.00 -13644 FAM53C family with sequence similarity 53, member C 267680 2 1 2 1 0 2 0 0 0 0 0.90 1.00 -13645 SASH3 SAM and SH3 domain containing 3 262112 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13646 PLBD1 355488 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13647 ZNF653 zinc finger protein 653 326576 2 2 2 0 0 2 0 0 0 0 0.90 1.00 -13648 EEF1A2 eukaryotic translation elongation factor 1 alpha 2 189868 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13649 MCM8 minichromosome maintenance complex component 8 581280 2 2 2 2 1 1 0 0 0 0 0.90 1.00 -13650 P2RX5 purinergic receptor P2X, ligand-gated ion channel, 5 295092 1 1 1 1 1 0 0 0 0 0 0.90 1.00 -13651 CDSN corneodesmosin 279488 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13652 DYRK2 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 2 382508 1 1 1 6 0 0 1 0 0 0 0.90 1.00 -13653 DYNC1H1 dynein, cytoplasmic 1, heavy chain 1 3157980 17 14 17 12 10 3 3 0 1 0 0.90 1.00 -13654 STOX2 storkhead box 2 599056 2 2 2 2 0 2 0 0 0 0 0.90 1.00 -13655 ABHD15 202776 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13656 MYO10 myosin X 1367344 12 8 12 7 7 4 1 0 0 0 0.90 1.00 -13657 ZNF467 zinc finger protein 467 239360 2 2 2 0 0 2 0 0 0 0 0.90 1.00 -13658 DCP1A DCP1 decapping enzyme homolog A (S. cerevisiae) 390808 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13659 HRH1 histamine receptor H1 328832 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13660 FOXF1 forkhead box F1 152992 1 1 1 2 1 0 0 0 0 0 0.90 1.00 -13661 GAS6 growth arrest-specific 6 309284 1 1 1 0 0 0 0 0 1 0 0.90 1.00 -13662 NARG2 NMDA receptor regulated 2 674016 1 1 1 1 0 0 1 0 0 0 0.90 1.00 -13663 ATOH1 atonal homolog 1 (Drosophila) 230384 1 1 1 1 0 0 1 0 0 0 0.90 1.00 -13664 CAMKK1 calcium/calmodulin-dependent protein kinase kinase 1, alpha 369040 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13665 PSD4 pleckstrin and Sec7 domain containing 4 677544 3 3 3 1 2 1 0 0 0 0 0.90 1.00 -13666 ITPRIPL2 243376 1 1 1 0 0 0 1 0 0 0 0.90 1.00 -13667 SLC40A1 solute carrier family 40 (iron-regulated transporter), member 1 391552 1 1 1 0 0 0 1 0 0 0 0.90 1.00 -13668 EPB41 erythrocyte membrane protein band 4.1 (elliptocytosis 1, RH-linked) 590240 3 2 3 2 0 1 2 0 0 0 0.90 1.00 -13669 C9orf117 chromosome 9 open reading frame 117 334784 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13670 FRMD1 FERM domain containing 1 347156 2 2 2 3 1 1 0 0 0 0 0.90 1.00 -13671 PRDM13 PR domain containing 13 269556 2 2 2 0 1 1 0 0 0 0 0.90 1.00 -13672 IFT140 intraflagellar transport 140 homolog (Chlamydomonas) 968776 6 5 6 6 3 0 2 0 1 0 0.90 1.00 -13673 PITPNM2 phosphatidylinositol transfer protein, membrane-associated 2 791104 5 4 5 3 2 2 1 0 0 0 0.90 1.00 -13674 NPAS1 neuronal PAS domain protein 1 296708 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13675 C6orf168 chromosome 6 open reading frame 168 272748 2 1 2 1 1 1 0 0 0 0 0.90 1.00 -13676 LMNB2 lamin B2 329700 1 1 1 1 0 0 0 0 1 0 0.90 1.00 -13677 EPHX2 epoxide hydrolase 2, cytoplasmic 380436 1 1 1 0 0 1 0 0 0 0 0.90 1.00 -13678 KIAA1751 KIAA1751 524188 3 3 3 3 2 1 0 0 0 0 0.90 1.00 -13679 TMC2 transmembrane channel-like 2 598720 2 2 2 2 2 0 0 0 0 0 0.90 1.00 -13680 FAM179A 636268 4 4 4 2 2 2 0 0 0 0 0.90 1.00 -13681 SR140 692360 3 3 3 2 2 1 0 0 0 0 0.90 1.00 -13682 MTA3 metastasis associated 1 family, member 3 347504 1 1 1 0 0 1 0 0 0 0 0.90 1.00 -13683 CCT2 chaperonin containing TCP1, subunit 2 (beta) 373576 1 1 1 0 0 0 1 0 0 0 0.90 1.00 -13684 FAM129B family with sequence similarity 129, member B 498204 3 3 3 1 3 0 0 0 0 0 0.90 1.00 -13685 BCAR3 breast cancer anti-estrogen resistance 3 564928 2 2 2 1 0 2 0 0 0 0 0.90 1.00 -13686 TMC4 transmembrane channel-like 4 459112 3 3 3 1 2 1 0 0 0 0 0.90 1.00 -13687 KCNG3 potassium voltage-gated channel, subfamily G, member 3 214004 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13688 TMC7 transmembrane channel-like 7 484960 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13689 USP49 ubiquitin specific peptidase 49 389648 2 2 2 1 1 0 1 0 0 0 0.90 1.00 -13690 PURB purine-rich element binding protein B 134036 1 1 1 1 1 0 0 0 0 0 0.90 1.00 -13691 MAP4K2 mitogen-activated protein kinase kinase kinase kinase 2 518892 1 1 1 0 0 0 1 0 0 0 0.90 1.00 -13692 EIF5B eukaryotic translation initiation factor 5B 841384 4 3 4 1 2 1 0 0 1 0 0.90 1.00 -13693 ZFYVE27 zinc finger, FYVE domain containing 27 287428 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13694 SYNRG 885248 2 2 2 2 0 1 0 0 1 0 0.90 1.00 -13695 SLC13A5 solute carrier family 13 (sodium-dependent citrate transporter), member 5 393120 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13696 CHD1L chromodomain helicase DNA binding protein 1-like 596960 2 2 2 2 1 1 0 0 0 0 0.90 1.00 -13697 SHANK3 SH3 and multiple ankyrin repeat domains 3 454108 3 2 3 0 2 1 0 0 0 0 0.90 1.00 -13698 ILVBL ilvB (bacterial acetolactate synthase)-like 410012 2 2 2 3 1 1 0 0 0 0 0.90 1.00 -13699 CAP1 CAP, adenylate cyclase-associated protein 1 (yeast) 330624 1 1 1 1 0 1 0 0 0 0 0.90 1.00 -13700 GLYCTK glycerate kinase 344372 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -13701 KIF4A kinesin family member 4A 837232 4 4 4 4 2 1 1 0 0 0 0.90 1.00 -13702 OVCH2 ovochymase 2 363176 1 1 1 2 0 1 0 0 0 0 0.90 1.00 -13703 INTS9 integrator complex subunit 9 458080 2 2 2 1 1 0 1 0 0 0 0.90 1.00 -13704 IFT74 intraflagellar transport 74 homolog (Chlamydomonas) 436352 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -13705 MAST4 microtubule associated serine/threonine kinase family member 4 1655768 13 9 13 2 5 5 2 0 1 0 0.91 1.00 -13706 EGLN1 egl nine homolog 1 (C. elegans) 190372 1 1 1 0 1 0 0 0 0 0 0.91 1.00 -13707 ANKRD20A4 ankyrin repeat domain 20 family, member A4 300356 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -13708 DES desmin 236452 1 1 1 1 1 0 0 0 0 0 0.91 1.00 -13709 ASXL3 additional sex combs like 3 (Drosophila) 1496908 9 5 9 7 1 6 2 0 0 0 0.91 1.00 -13710 NAGS N-acetylglutamate synthase 236388 1 1 1 0 1 0 0 0 0 0 0.91 1.00 -13711 RABEP2 rabaptin, RAB GTPase binding effector protein 2 337344 2 2 2 1 1 1 0 0 0 0 0.91 1.00 -13712 FAM126B family with sequence similarity 126, member B 365792 1 1 1 2 0 1 0 0 0 0 0.91 1.00 -13713 TMEM120B transmembrane protein 120B 239064 1 1 1 0 1 0 0 0 0 0 0.91 1.00 -13714 ELMO3 engulfment and cell motility 3 505120 2 2 2 1 1 0 1 0 0 0 0.91 1.00 -13715 CCDC38 coiled-coil domain containing 38 392448 1 1 1 1 0 1 0 0 0 0 0.91 1.00 -13716 ATG16L2 ATG16 autophagy related 16-like 2 (S. cerevisiae) 334072 1 1 1 0 1 0 0 0 0 0 0.91 1.00 -13717 WDR20 WD repeat domain 20 402528 1 1 1 1 0 0 1 0 0 0 0.91 1.00 -13718 DGCR2 DiGeorge syndrome critical region gene 2 340044 2 2 2 1 2 0 0 0 0 0 0.91 1.00 -13719 OTOP1 otopetrin 1 357924 2 2 2 1 1 1 0 0 0 0 0.91 1.00 -13720 CORO1A coronin, actin binding protein, 1A 285432 1 1 1 0 1 0 0 0 0 0 0.91 1.00 -13721 DNMT3L DNA (cytosine-5-)-methyltransferase 3-like 227672 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -13722 RNF38 ring finger protein 38 357504 1 1 1 1 0 1 0 0 0 0 0.91 1.00 -13723 NPHP3 nephronophthisis 3 (adolescent) 886704 4 3 4 1 1 0 3 0 0 0 0.91 1.00 -13724 HECTD1 HECT domain containing 1 1792224 9 8 9 1 1 5 3 0 0 0 0.91 1.00 -13725 RRBP1 ribosome binding protein 1 homolog 180kDa (dog) 659464 4 4 4 0 3 1 0 0 0 0 0.91 1.00 -13726 FRAS1 Fraser syndrome 1 2736728 16 10 16 9 3 7 4 0 2 0 0.91 1.00 -13727 UHRF1 ubiquitin-like, containing PHD and RING finger domains, 1 534244 2 2 2 0 0 1 1 0 0 0 0.91 1.00 -13728 GPR83 G protein-coupled receptor 83 285824 1 1 1 0 1 0 0 0 0 0 0.91 1.00 -13729 KCNJ6 potassium inwardly-rectifying channel, subfamily J, member 6 287616 1 1 1 2 1 0 0 0 0 0 0.91 1.00 -13730 USP1 ubiquitin specific peptidase 1 529984 1 1 1 1 0 0 1 0 0 0 0.91 1.00 -13731 CASC5 cancer susceptibility candidate 5 1574256 11 6 11 2 1 6 4 0 0 0 0.91 1.00 -13732 FAM91A1 family with sequence similarity 91, member A1 582036 3 2 3 0 1 1 0 0 1 0 0.91 1.00 -13733 SLC20A2 solute carrier family 20 (phosphate transporter), member 2 447776 2 2 2 3 1 1 0 0 0 0 0.91 1.00 -13734 JMY 490336 2 2 2 0 1 0 1 0 0 0 0.91 1.00 -13735 ROCK2 Rho-associated, coiled-coil containing protein kinase 2 949676 6 3 6 0 1 4 0 0 1 0 0.91 1.00 -13736 ANKRD26 ankyrin repeat domain 26 1173032 11 5 11 1 1 7 2 0 1 0 0.91 1.00 -13737 RBBP8 retinoblastoma binding protein 8 621152 2 2 2 0 1 0 1 0 0 0 0.91 1.00 -13738 HEPH hephaestin 773024 4 3 4 1 0 2 2 0 0 0 0.91 1.00 -13739 PELI2 pellino homolog 2 (Drosophila) 282516 1 1 1 2 1 0 0 0 0 0 0.91 1.00 -13740 TRIM29 tripartite motif-containing 29 389844 2 2 2 0 0 2 0 0 0 0 0.91 1.00 -13741 ADRBK1 adrenergic, beta, receptor kinase 1 411432 1 1 1 0 0 0 0 1 0 0 0.91 1.00 -13742 TMEM63C transmembrane protein 63C 524752 3 3 3 3 2 1 0 0 0 0 0.91 1.00 -13743 CDC6 cell division cycle 6 homolog (S. cerevisiae) 386848 1 1 1 1 0 1 0 0 0 0 0.91 1.00 -13744 SYT13 synaptotagmin XIII 279608 1 1 1 2 0 1 0 0 0 0 0.91 1.00 -13745 LLGL2 lethal giant larvae homolog 2 (Drosophila) 591708 2 2 2 0 1 1 0 0 0 0 0.91 1.00 -13746 FBXO46 F-box protein 46 344232 1 1 1 1 0 0 0 0 1 0 0.91 1.00 -13747 NOP56 403732 4 2 4 1 2 2 0 0 0 0 0.91 1.00 -13748 KPNB1 karyopherin (importin) beta 1 607208 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -13749 FAM151A family with sequence similarity 151, member A 400960 1 1 1 1 0 1 0 0 0 0 0.91 1.00 -13750 CCDC74B coiled-coil domain containing 74B 247912 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -13751 FOXO1 forkhead box O1 322028 1 1 1 2 1 0 0 0 0 0 0.91 1.00 -13752 HPS5 Hermansky-Pudlak syndrome 5 779072 3 3 3 0 0 2 0 0 1 0 0.91 1.00 -13753 ABI2 abl interactor 2 328832 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -13754 SETD4 SET domain containing 4 300748 1 1 1 2 1 0 0 0 0 0 0.91 1.00 -13755 PRRT3 proline-rich transmembrane protein 3 372780 2 2 2 1 0 2 0 0 0 0 0.91 1.00 -13756 SH3RF1 SH3 domain containing ring finger 1 599368 3 3 3 1 1 1 1 0 0 0 0.91 1.00 -13757 COG8 component of oligomeric golgi complex 8 355740 1 1 1 1 0 0 0 0 1 0 0.91 1.00 -13758 EPS8L1 EPS8-like 1 383516 1 1 1 0 0 0 0 1 0 0 0.91 1.00 -13759 C5orf54 392984 2 1 2 2 0 2 0 0 0 0 0.91 1.00 -13760 NOD2 nucleotide-binding oligomerization domain containing 2 698068 5 4 5 2 2 2 1 0 0 0 0.91 1.00 -13761 MAP4 microtubule-associated protein 4 1051336 4 4 4 1 1 2 1 0 0 0 0.91 1.00 -13762 BCL6B B-cell CLL/lymphoma 6, member B (zinc finger protein) 311080 1 1 1 1 0 0 1 0 0 0 0.91 1.00 -13763 STAT5B signal transducer and activator of transcription 5B 510720 3 3 3 2 1 2 0 0 0 0 0.91 1.00 -13764 SCN8A sodium channel, voltage gated, type VIII, alpha subunit 1351340 6 6 6 4 2 3 1 0 0 0 0.91 1.00 -13765 PADI4 peptidyl arginine deiminase, type IV 460544 1 1 1 0 1 0 0 0 0 0 0.91 1.00 -13766 ZFY zinc finger protein, Y-linked 340760 1 1 1 0 1 0 0 0 0 0 0.91 1.00 -13767 ADAMTS13 ADAM metallopeptidase with thrombospondin type 1 motif, 13 854640 4 4 4 0 2 1 0 0 1 0 0.91 1.00 -13768 TEP1 telomerase-associated protein 1 1814400 7 7 7 3 2 4 0 0 1 0 0.91 1.00 -13769 TNPO3 transportin 3 640640 2 2 2 0 0 2 0 0 0 0 0.91 1.00 -13770 CPAMD8 C3 and PZP-like, alpha-2-macroglobulin domain containing 8 1159520 9 6 9 3 4 3 2 0 0 0 0.91 1.00 -13771 EPHA10 EPH receptor A10 543744 3 3 3 1 3 0 0 0 0 0 0.91 1.00 -13772 FGFR2 fibroblast growth factor receptor 2 (bacteria-expressed kinase, keratinocyte growth factor receptor, craniofacial dysostosis 1, Crouzon syndrome, Pfeiffer syndrome, Jackson-Weiss syndrome) 603904 6 3 6 2 4 2 0 0 0 0 0.91 1.00 -13773 HHIPL1 HHIP-like 1 291648 1 1 1 1 1 0 0 0 0 0 0.91 1.00 -13774 SNX18 sorting nexin 18 339248 1 1 1 3 0 0 1 0 0 0 0.91 1.00 -13775 RNF213 ring finger protein 213 2941592 19 13 19 3 9 7 1 0 0 2 0.91 1.00 -13776 CPN2 carboxypeptidase N, polypeptide 2 367808 1 1 1 3 0 1 0 0 0 0 0.91 1.00 -13777 STARD3 StAR-related lipid transfer (START) domain containing 3 314328 1 1 1 1 1 0 0 0 0 0 0.91 1.00 -13778 SNRK SNF related kinase 519232 2 2 2 2 0 1 1 0 0 0 0.91 1.00 -13779 BACE1 beta-site APP-cleaving enzyme 1 311168 1 1 1 1 1 0 0 0 0 0 0.91 1.00 -13780 LEPREL2 leprecan-like 2 372592 1 1 1 1 0 1 0 0 0 0 0.91 1.00 -13781 TTC7B tetratricopeptide repeat domain 7B 568960 3 3 3 3 0 3 0 0 0 0 0.91 1.00 -13782 R3HDM1 R3H domain containing 1 760704 3 2 3 0 1 2 0 0 0 0 0.91 1.00 -13783 C22orf9 chromosome 22 open reading frame 9 266852 1 1 1 1 1 0 0 0 0 0 0.91 1.00 -13784 AGBL5 ATP/GTP binding protein-like 5 623168 3 3 3 2 1 2 0 0 0 0 0.91 1.00 -13785 HSPA2 heat shock 70kDa protein 2 415436 2 2 2 1 1 0 0 0 1 0 0.91 1.00 -13786 FBLN5 fibulin 5 303560 1 1 1 1 0 0 1 0 0 0 0.91 1.00 -13787 PML promyelocytic leukemia 740664 4 4 4 3 2 2 0 0 0 0 0.91 1.00 -13788 RNF123 ring finger protein 123 898864 6 6 6 1 3 3 0 0 0 0 0.91 1.00 -13789 MATK megakaryocyte-associated tyrosine kinase 342724 3 2 3 0 3 0 0 0 0 0 0.91 1.00 -13790 MAP3K14 mitogen-activated protein kinase kinase kinase 14 637488 3 3 3 1 2 0 1 0 0 0 0.91 1.00 -13791 RORC RAR-related orphan receptor C 361088 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -13792 LSS lanosterol synthase (2,3-oxidosqualene-lanosterol cyclase) 488848 2 2 2 1 2 0 0 0 0 0 0.91 1.00 -13793 SSH3 slingshot homolog 3 (Drosophila) 414008 1 1 1 2 0 0 0 1 0 0 0.91 1.00 -13794 HCN3 hyperpolarization activated cyclic nucleotide-gated potassium channel 3 501424 3 3 3 2 2 1 0 0 0 0 0.91 1.00 -13795 TMEM181 transmembrane protein 181 355704 1 1 1 3 1 0 0 0 0 0 0.91 1.00 -13796 PTGER2 prostaglandin E receptor 2 (subtype EP2), 53kDa 225232 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -13797 NEU2 sialidase 2 (cytosolic sialidase) 255752 1 1 1 1 1 0 0 0 0 0 0.91 1.00 -13798 AP4B1 adaptor-related protein complex 4, beta 1 subunit 506240 2 2 2 0 1 0 1 0 0 0 0.91 1.00 -13799 PRICKLE4 prickle homolog 4 (Drosophila) 260064 1 1 1 1 0 1 0 0 0 0 0.91 1.00 -13800 GNL1 guanine nucleotide binding protein-like 1 338252 1 1 1 0 1 0 0 0 0 0 0.91 1.00 -13801 ACSM3 acyl-CoA synthetase medium-chain family member 3 408352 1 1 1 0 0 0 1 0 0 0 0.91 1.00 -13802 CCDC18 coiled-coil domain containing 18 965384 5 4 4 1 0 3 1 0 1 0 0.91 1.00 -13803 YY1 YY1 transcription factor 196868 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -13804 PHACTR1 phosphatase and actin regulator 1 389484 1 1 1 3 0 1 0 0 0 0 0.91 1.00 -13805 EHHADH enoyl-Coenzyme A, hydratase/3-hydroxyacyl Coenzyme A dehydrogenase 492800 2 2 2 0 2 0 0 0 0 0 0.91 1.00 -13806 PROC protein C (inactivator of coagulation factors Va and VIIIa) 267512 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -13807 PLB1 phospholipase B1 1034656 3 3 3 4 0 1 1 1 0 0 0.91 1.00 -13808 AAK1 AP2 associated kinase 1 588056 2 2 2 2 1 1 0 0 0 0 0.91 1.00 -13809 SEL1L sel-1 suppressor of lin-12-like (C. elegans) 553056 3 2 3 3 1 2 0 0 0 0 0.92 1.00 -13810 ANKMY1 ankyrin repeat and MYND domain containing 1 685720 2 2 2 2 1 0 0 0 1 0 0.92 1.00 -13811 NPEPL1 aminopeptidase-like 1 277340 1 1 1 1 1 0 0 0 0 0 0.92 1.00 -13812 PRX periaxin 880900 4 4 4 3 2 1 1 0 0 0 0.92 1.00 -13813 PRSS36 protease, serine, 36 463624 2 2 2 2 0 2 0 0 0 0 0.92 1.00 -13814 DCST1 DC-STAMP domain containing 1 479528 2 2 2 1 1 1 0 0 0 0 0.92 1.00 -13815 TRANK1 1605680 14 6 14 4 3 4 4 0 1 2 0.92 1.00 -13816 EPC1 enhancer of polycomb homolog 1 (Drosophila) 575904 2 2 2 1 0 1 1 0 0 0 0.92 1.00 -13817 HOXB3 homeobox B3 281260 2 2 2 0 1 1 0 0 0 0 0.92 1.00 -13818 ITGA1 integrin, alpha 1 804384 3 3 3 3 1 1 1 0 0 0 0.92 1.00 -13819 C2orf78 600320 2 2 2 0 1 0 1 0 0 0 0.92 1.00 -13820 SYNGAP1 synaptic Ras GTPase activating protein 1 homolog (rat) 877728 6 5 6 2 2 4 0 0 0 0 0.92 1.00 -13821 MFI2 antigen p97 (melanoma associated) identified by monoclonal antibodies 133.2 and 96.5 502668 2 2 2 0 1 1 0 0 0 0 0.92 1.00 -13822 SP6 Sp6 transcription factor 189476 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13823 ITGA6 integrin, alpha 6 779464 4 4 3 4 2 0 1 1 0 0 0.92 1.00 -13824 SH3GL1 SH3-domain GRB2-like 1 248948 1 1 1 2 1 0 0 0 0 0 0.92 1.00 -13825 CDH15 cadherin 15, M-cadherin (myotubule) 393120 1 1 1 0 0 0 0 0 1 0 0.92 1.00 -13826 MORN1 MORN repeat containing 1 261196 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13827 LRRC47 leucine rich repeat containing 47 273028 1 1 1 1 1 0 0 0 0 0 0.92 1.00 -13828 BAIAP2L2 BAI1-associated protein 2-like 2 247184 1 1 1 1 1 0 0 0 0 0 0.92 1.00 -13829 CCT3 chaperonin containing TCP1, subunit 3 (gamma) 374696 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13830 MUC2 mucin 2, oligomeric mucus/gel-forming 1419928 6 5 6 0 1 2 1 0 2 0 0.92 1.00 -13831 AKAP13 A kinase (PRKA) anchor protein 13 1935080 8 6 8 5 0 5 0 0 3 0 0.92 1.00 -13832 ATAD3A ATPase family, AAA domain containing 3A 324172 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13833 DEAF1 deformed epidermal autoregulatory factor 1 (Drosophila) 320572 1 1 1 3 0 0 0 0 1 0 0.92 1.00 -13834 CAPN1 calpain 1, (mu/I) large subunit 458232 2 2 2 0 2 0 0 0 0 0 0.92 1.00 -13835 HIP1R huntingtin interacting protein 1 related 606440 2 2 2 0 1 0 0 0 1 0 0.92 1.00 -13836 MLL2 myeloid/lymphoid or mixed-lineage leukemia 2 3580264 17 13 17 6 6 3 4 0 4 0 0.92 1.00 -13837 ACOT2 acyl-CoA thioesterase 2 268632 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13838 C10orf2 chromosome 10 open reading frame 2 449400 2 2 2 1 1 1 0 0 0 0 0.92 1.00 -13839 GPR108 G protein-coupled receptor 108 356076 3 2 3 1 2 1 0 0 0 0 0.92 1.00 -13840 TPCN1 two pore segment channel 1 572432 2 2 2 5 0 1 1 0 0 0 0.92 1.00 -13841 TSNARE1 t-SNARE domain containing 1 319680 1 1 1 0 0 0 1 0 0 0 0.92 1.00 -13842 ARID3A AT rich interactive domain 3A (BRIGHT-like) 252828 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13843 ZNRF4 zinc and ring finger 4 269276 2 2 2 1 2 0 0 0 0 0 0.92 1.00 -13844 CATSPERG 556136 3 2 3 1 1 0 1 0 1 0 0.92 1.00 -13845 DNAJC3 DnaJ (Hsp40) homolog, subfamily C, member 3 350112 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13846 LENG9 leukocyte receptor cluster (LRC) member 9 200088 1 1 1 0 0 1 0 0 0 0 0.92 1.00 -13847 STAC2 SH3 and cysteine rich domain 2 279800 1 1 1 0 0 1 0 0 0 0 0.92 1.00 -13848 DLGAP3 discs, large (Drosophila) homolog-associated protein 3 547088 4 4 4 2 2 2 0 0 0 0 0.92 1.00 -13849 PAG1 phosphoprotein associated with glycosphingolipid microdomains 1 296352 2 1 2 1 2 0 0 0 0 0 0.92 1.00 -13850 TGM6 transglutaminase 6 486752 1 1 1 1 0 0 1 0 0 0 0.92 1.00 -13851 ZSWIM5 zinc finger, SWIM-type containing 5 719180 2 2 2 0 1 0 0 0 1 0 0.92 1.00 -13852 ADAM10 ADAM metallopeptidase domain 10 509640 1 1 1 2 0 0 1 0 0 0 0.92 1.00 -13853 KRT20 keratin 20 292768 1 1 1 2 1 0 0 0 0 0 0.92 1.00 -13854 ASPHD1 aspartate beta-hydroxylase domain containing 1 244960 2 1 2 0 2 0 0 0 0 0 0.92 1.00 -13855 SORBS2 sorbin and SH3 domain containing 2 786772 5 4 5 3 4 1 0 0 0 0 0.92 1.00 -13856 BMP2 bone morphogenetic protein 2 249052 1 1 1 2 0 1 0 0 0 0 0.92 1.00 -13857 KIAA1211 726656 5 4 5 5 3 1 0 0 1 0 0.92 1.00 -13858 POM121C POM121 membrane glycoprotein C 491112 1 1 1 0 0 0 1 0 0 0 0.92 1.00 -13859 KRT83 keratin 83 327108 1 1 1 3 0 0 1 0 0 0 0.92 1.00 -13860 UBR4 ubiquitin protein ligase E3 component n-recognin 4 3549644 18 12 18 6 5 6 3 0 2 2 0.92 1.00 -13861 ARFGEF2 ADP-ribosylation factor guanine nucleotide-exchange factor 2 (brefeldin A-inhibited) 1218048 8 6 8 2 3 2 2 0 1 0 0.92 1.00 -13862 RAB11FIP5 RAB11 family interacting protein 5 (class I) 363244 1 1 1 2 1 0 0 0 0 0 0.92 1.00 -13863 C7orf26 chromosome 7 open reading frame 26 267652 1 1 1 1 1 0 0 0 0 0 0.92 1.00 -13864 CLCNKB chloride channel Kb 463876 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13865 ADAM8 ADAM metallopeptidase domain 8 236388 1 1 1 0 0 1 0 0 0 0 0.92 1.00 -13866 ATG2A ATG2 autophagy related 2 homolog A (S. cerevisiae) 1155864 5 5 5 2 0 1 3 1 0 0 0.92 1.00 -13867 EIF2C2 eukaryotic translation initiation factor 2C, 2 585656 4 3 4 0 2 1 1 0 0 0 0.92 1.00 -13868 MFSD10 major facilitator superfamily domain containing 10 231124 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13869 COL4A3 collagen, type IV, alpha 3 (Goodpasture antigen) 1145432 4 4 4 0 1 1 1 0 1 0 0.92 1.00 -13870 ABCG5 ATP-binding cassette, sub-family G (WHITE), member 5 (sterolin 1) 412288 1 1 1 3 1 0 0 0 0 0 0.92 1.00 -13871 TCTN1 tectonic family member 1 388444 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13872 PLCG1 phospholipase C, gamma 1 863572 4 4 4 3 3 0 1 0 0 0 0.92 1.00 -13873 ANUBL1 AN1, ubiquitin-like, homolog (Xenopus laevis) 497280 3 2 3 0 2 1 0 0 0 0 0.92 1.00 -13874 ZFP37 zinc finger protein 37 homolog (mouse) 425936 2 1 2 4 0 2 0 0 0 0 0.92 1.00 -13875 DEF8 differentially expressed in FDCP 8 homolog (mouse) 331980 1 1 1 0 0 1 0 0 0 0 0.92 1.00 -13876 LATS2 LATS, large tumor suppressor, homolog 2 (Drosophila) 599984 4 3 4 3 2 2 0 0 0 0 0.92 1.00 -13877 HOXC10 homeobox C10 219856 1 1 1 2 0 1 0 0 0 0 0.92 1.00 -13878 PTPRJ protein tyrosine phosphatase, receptor type, J 901152 4 4 4 1 1 1 2 0 0 0 0.92 1.00 -13879 HJURP Holliday junction recognition protein 497572 3 2 3 0 1 2 0 0 0 0 0.92 1.00 -13880 C2orf89 286192 1 1 1 1 0 1 0 0 0 0 0.92 1.00 -13881 FOS v-fos FBJ murine osteosarcoma viral oncogene homolog 255332 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13882 TNRC6A trinucleotide repeat containing 6A 1339248 11 6 11 2 0 8 3 0 0 0 0.92 1.00 -13883 SLC46A2 solute carrier family 46, member 2 323120 1 1 1 2 0 0 1 0 0 0 0.92 1.00 -13884 PRKCSH protein kinase C substrate 80K-H 358316 1 1 1 1 0 1 0 0 0 0 0.92 1.00 -13885 QSOX2 quiescin Q6 sulfhydryl oxidase 2 426104 1 1 1 1 1 0 0 0 0 0 0.92 1.00 -13886 IRGQ immunity-related GTPase family, Q 324100 2 1 2 2 1 0 0 0 1 0 0.92 1.00 -13887 FRMD7 FERM domain containing 7 491232 1 1 1 1 0 1 0 0 0 0 0.92 1.00 -13888 PRPF3 PRP3 pre-mRNA processing factor 3 homolog (S. cerevisiae) 473088 1 1 1 1 0 1 0 0 0 0 0.92 1.00 -13889 AOAH acyloxyacyl hydrolase (neutrophil) 408128 1 1 1 2 0 1 0 0 0 0 0.92 1.00 -13890 ALDH9A1 aldehyde dehydrogenase 9 family, member A1 343084 1 1 1 1 0 1 0 0 0 0 0.92 1.00 -13891 TAPBPL TAP binding protein-like 306072 1 1 1 0 1 0 0 0 0 0 0.92 1.00 -13892 HSPA5 heat shock 70kDa protein 5 (glucose-regulated protein, 78kDa) 446824 2 2 2 1 0 1 1 0 0 0 0.92 1.00 -13893 AGAP2 594668 5 4 5 2 3 2 0 0 0 0 0.92 1.00 -13894 ANAPC4 anaphase promoting complex subunit 4 568736 4 2 4 3 1 1 2 0 0 0 0.92 1.00 -13895 SEMA6B sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6B 363608 2 2 2 1 2 0 0 0 0 0 0.92 1.00 -13896 RNF220 393568 1 1 1 2 1 0 0 0 0 0 0.92 1.00 -13897 UNC5CL unc-5 homolog C (C. elegans)-like 349216 1 1 1 2 1 0 0 0 0 0 0.92 1.00 -13898 CD248 CD248 molecule, endosialin 392872 1 1 1 0 0 0 1 0 0 0 0.92 1.00 -13899 TNFRSF8 tumor necrosis factor receptor superfamily, member 8 391624 2 2 2 2 1 1 0 0 0 0 0.92 1.00 -13900 ITGA3 integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor) 706624 4 4 4 3 2 2 0 0 0 0 0.92 1.00 -13901 OBSCN obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF 4468224 26 17 26 6 9 9 3 1 4 0 0.92 1.00 -13902 WWC2 WW and C2 domain containing 2 762144 2 2 2 3 1 0 0 0 1 0 0.92 1.00 -13903 LRRC4B leucine rich repeat containing 4B 398776 2 2 2 4 2 0 0 0 0 0 0.92 1.00 -13904 OGG1 8-oxoguanine DNA glycosylase 382824 1 1 1 1 0 1 0 0 0 0 0.92 1.00 -13905 DENND4B DENN/MADD domain containing 4B 990676 6 5 6 0 4 1 0 0 1 0 0.92 1.00 -13906 MAN2B1 mannosidase, alpha, class 2B, member 1 625044 5 4 5 4 1 3 1 0 0 0 0.92 1.00 -13907 TENC1 tensin like C1 domain containing phosphatase (tensin 2) 893844 1 1 1 2 0 0 0 0 1 0 0.93 1.00 -13908 TSC1 tuberous sclerosis 1 799848 4 4 4 5 2 1 1 0 0 0 0.93 1.00 -13909 SACM1L SAC1 suppressor of actin mutations 1-like (yeast) 408160 1 1 1 2 0 1 0 0 0 0 0.93 1.00 -13910 VPS39 vacuolar protein sorting 39 homolog (S. cerevisiae) 604408 2 2 2 2 0 2 0 0 0 0 0.93 1.00 -13911 INPP4A inositol polyphosphate-4-phosphatase, type I, 107kDa 682488 3 3 3 2 2 1 0 0 0 0 0.93 1.00 -13912 KCNH4 potassium voltage-gated channel, subfamily H (eag-related), member 4 666076 3 3 3 2 3 0 0 0 0 0 0.93 1.00 -13913 TSC22D2 TSC22 domain family, member 2 403116 3 3 3 0 0 3 0 0 0 0 0.93 1.00 -13914 NOD1 nucleotide-binding oligomerization domain containing 1 650524 4 3 4 1 2 1 1 0 0 0 0.93 1.00 -13915 AUP1 ancient ubiquitous protein 1 276608 1 1 1 0 1 0 0 0 0 0 0.93 1.00 -13916 CDC45 392532 1 1 1 1 0 1 0 0 0 0 0.93 1.00 -13917 GP6 glycoprotein VI (platelet) 395212 2 2 2 1 1 1 0 0 0 0 0.93 1.00 -13918 LPHN1 latrophilin 1 920592 4 4 4 1 2 0 1 0 1 0 0.93 1.00 -13919 NOX5 NADPH oxidase, EF-hand calcium binding domain 5 498428 1 1 1 3 0 0 0 0 1 0 0.93 1.00 -13920 S1PR5 177744 1 1 1 0 0 1 0 0 0 0 0.93 1.00 -13921 KIAA0355 KIAA0355 723904 2 2 2 3 0 1 1 0 0 0 0.93 1.00 -13922 APOB48R 600672 2 2 2 0 2 0 0 0 0 0 0.93 1.00 -13923 TUBG1 tubulin, gamma 1 306392 1 1 1 1 1 0 0 0 0 0 0.93 1.00 -13924 NEURL neuralized homolog (Drosophila) 231812 1 1 1 0 1 0 0 0 0 0 0.93 1.00 -13925 FGFR3 fibroblast growth factor receptor 3 (achondroplasia, thanatophoric dwarfism) 399464 2 2 2 0 2 0 0 0 0 0 0.93 1.00 -13926 GPATCH8 G patch domain containing 8 1017184 3 3 3 0 1 0 1 0 1 0 0.93 1.00 -13927 TRIM71 tripartite motif-containing 71 457744 3 3 3 0 2 0 1 0 0 0 0.93 1.00 -13928 GALC galactosylceramidase 456120 1 1 1 0 0 0 1 0 0 0 0.93 1.00 -13929 CPSF2 cleavage and polyadenylation specific factor 2, 100kDa 538720 1 1 1 1 1 0 0 0 0 0 0.93 1.00 -13930 PKN3 protein kinase N3 553784 2 2 2 2 2 0 0 0 0 0 0.93 1.00 -13931 NSUN5 NOL1/NOP2/Sun domain family, member 5 324936 1 1 1 1 0 1 0 0 0 0 0.93 1.00 -13932 OSBPL1A oxysterol binding protein-like 1A 663264 3 2 3 0 1 1 1 0 0 0 0.93 1.00 -13933 ZNF460 zinc finger protein 460 381024 1 1 1 1 1 0 0 0 0 0 0.93 1.00 -13934 MLXIP MLX interacting protein 528544 1 1 1 3 0 0 0 0 1 0 0.93 1.00 -13935 MICAL1 microtubule associated monoxygenase, calponin and LIM domain containing 1 723744 2 2 2 4 1 0 0 0 1 0 0.93 1.00 -13936 SART1 squamous cell carcinoma antigen recognized by T cells 409192 1 1 1 0 0 0 0 0 1 0 0.93 1.00 -13937 RC3H2 ring finger and CCCH-type zinc finger domains 2 821184 3 2 3 0 1 0 1 0 1 0 0.93 1.00 -13938 PIK3CB phosphoinositide-3-kinase, catalytic, beta polypeptide 739424 2 2 2 2 1 1 0 0 0 0 0.93 1.00 -13939 CDK16 348000 1 1 1 0 1 0 0 0 0 0 0.93 1.00 -13940 SRL sarcalumenin 323904 1 1 1 0 1 0 0 0 0 0 0.93 1.00 -13941 MIB1 mindbomb homolog 1 (Drosophila) 675948 3 2 3 1 1 2 0 0 0 0 0.93 1.00 -13942 E2F2 E2F transcription factor 2 281232 1 1 1 1 1 0 0 0 0 0 0.93 1.00 -13943 ROBO3 roundabout, axon guidance receptor, homolog 3 (Drosophila) 774988 5 4 5 2 1 4 0 0 0 0 0.93 1.00 -13944 CYP26B1 cytochrome P450, family 26, subfamily B, polypeptide 1 293300 1 1 1 1 1 0 0 0 0 0 0.93 1.00 -13945 RNF207 ring finger protein 207 286000 1 1 1 3 1 0 0 0 0 0 0.93 1.00 -13946 PDHX pyruvate dehydrogenase complex, component X 342440 2 1 2 1 2 0 0 0 0 0 0.93 1.00 -13947 CPNE5 copine V 391464 1 1 1 3 0 1 0 0 0 0 0.93 1.00 -13948 PPIL2 peptidylprolyl isomerase (cyclophilin)-like 2 361992 1 1 1 3 1 0 0 0 0 0 0.93 1.00 -13949 SNTA1 syntrophin, alpha 1 (dystrophin-associated protein A1, 59kDa, acidic component) 276864 1 1 1 3 0 1 0 0 0 0 0.93 1.00 -13950 HR hairless homolog (mouse) 586700 2 2 2 0 1 1 0 0 0 0 0.93 1.00 -13951 SNTB1 syntrophin, beta 1 (dystrophin-associated protein A1, 59kDa, basic component 1) 330792 1 1 1 1 0 0 1 0 0 0 0.93 1.00 -13952 FANCI Fanconi anemia, complementation group I 885024 3 2 3 0 0 3 0 0 0 0 0.93 1.00 -13953 TBRG4 transforming growth factor beta regulator 4 424088 1 1 1 1 0 1 0 0 0 0 0.93 1.00 -13954 MKL2 MKL/myocardin-like 2 719040 3 2 3 3 0 0 2 0 1 0 0.93 1.00 -13955 SLC10A3 solute carrier family 10 (sodium/bile acid cotransporter family), member 3 300608 1 1 1 1 0 1 0 0 0 0 0.93 1.00 -13956 CEACAM5 carcinoembryonic antigen-related cell adhesion molecule 5 480480 3 2 2 1 1 2 0 0 0 0 0.93 1.00 -13957 LUC7L3 299936 1 1 1 0 1 0 0 0 0 0 0.93 1.00 -13958 FZD8 frizzled homolog 8 (Drosophila) 262184 1 1 1 1 0 0 1 0 0 0 0.93 1.00 -13959 ZNF236 zinc finger protein 236 1251992 12 8 11 2 8 1 3 0 0 0 0.93 1.00 -13960 TERF2 telomeric repeat binding factor 2 316624 1 1 1 2 0 1 0 0 0 0 0.93 1.00 -13961 ZNF319 zinc finger protein 319 359268 2 2 2 0 2 0 0 0 0 0 0.93 1.00 -13962 MYO7A myosin VIIA 1189392 7 6 7 3 4 1 1 0 1 0 0.93 1.00 -13963 GHDC GH3 domain containing 285932 1 1 1 0 1 0 0 0 0 0 0.93 1.00 -13964 MGAT5B mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isozyme B 544628 2 2 2 0 0 1 0 0 1 0 0.93 1.00 -13965 MINPP1 multiple inositol polyphosphate histidine phosphatase, 1 309904 1 1 1 0 0 0 1 0 0 0 0.93 1.00 -13966 CDHR3 612416 2 2 2 2 1 1 0 0 0 0 0.93 1.00 -13967 GAB2 GRB2-associated binding protein 2 457268 1 1 1 0 0 0 1 0 0 0 0.93 1.00 -13968 LRIG2 leucine-rich repeats and immunoglobulin-like domains 2 729036 2 2 2 1 0 0 2 0 0 0 0.93 1.00 -13969 GPR4 G protein-coupled receptor 4 218288 1 1 1 0 1 0 0 0 0 0 0.93 1.00 -13970 UGT1A6 UDP glucuronosyltransferase 1 family, polypeptide A6 362656 1 1 1 0 0 1 0 0 0 0 0.93 1.00 -13971 RCOR2 REST corepressor 2 277132 2 1 2 1 2 0 0 0 0 0 0.93 1.00 -13972 PGD phosphogluconate dehydrogenase 336896 1 1 1 0 0 1 0 0 0 0 0.93 1.00 -13973 FDXR ferredoxin reductase 306068 1 1 1 1 0 1 0 0 0 0 0.93 1.00 -13974 C2orf29 chromosome 2 open reading frame 29 283472 1 1 1 0 1 0 0 0 0 0 0.93 1.00 -13975 ZNF813 zinc finger protein 813 417984 4 1 4 0 0 2 2 0 0 0 0.93 1.00 -13976 C17orf80 chromosome 17 open reading frame 80 419552 1 1 1 4 0 1 0 0 0 0 0.93 1.00 -13977 SLC1A4 solute carrier family 1 (glutamate/neutral amino acid transporter), member 4 312928 1 1 1 2 1 0 0 0 0 0 0.93 1.00 -13978 KLHL31 kelch-like 31 (Drosophila) 399448 1 1 1 1 0 0 1 0 0 0 0.93 1.00 -13979 RANGAP1 Ran GTPase activating protein 1 390820 1 1 1 1 1 0 0 0 0 0 0.93 1.00 -13980 PI4KB phosphatidylinositol 4-kinase, catalytic, beta 567840 2 2 2 0 1 0 1 0 0 0 0.93 1.00 -13981 TNPO2 transportin 2 (importin 3, karyopherin beta 2b) 593736 2 2 2 0 2 0 0 0 0 0 0.93 1.00 -13982 NSD1 nuclear receptor binding SET domain protein 1 1832096 14 8 14 4 4 5 5 0 0 0 0.93 1.00 -13983 PMPCA peptidase (mitochondrial processing) alpha 349328 1 1 1 0 0 0 1 0 0 0 0.93 1.00 -13984 MEP1A meprin A, alpha (PABA peptide hydrolase) 514528 2 2 2 1 2 0 0 0 0 0 0.93 1.00 -13985 SLC15A1 solute carrier family 15 (oligopeptide transporter), member 1 495264 3 2 3 3 1 2 0 0 0 0 0.93 1.00 -13986 KANK4 KN motif and ankyrin repeat domains 4 677376 2 2 2 2 0 1 1 0 0 0 0.93 1.00 -13987 ORC1L origin recognition complex, subunit 1-like (yeast) 593600 1 1 1 1 0 1 0 0 0 0 0.93 1.00 -13988 ZNF79 zinc finger protein 79 339808 1 1 1 0 0 1 0 0 0 0 0.93 1.00 -13989 FNTB farnesyltransferase, CAAX box, beta 305088 1 1 1 2 1 0 0 0 0 0 0.93 1.00 -13990 VPS16 vacuolar protein sorting 16 homolog (S. cerevisiae) 578232 4 3 4 2 3 0 1 0 0 0 0.93 1.00 -13991 WDR34 WD repeat domain 34 322804 1 1 1 0 1 0 0 0 0 0 0.93 1.00 -13992 KIAA0513 KIAA0513 282996 1 1 1 0 0 1 0 0 0 0 0.93 1.00 -13993 USP24 ubiquitin specific peptidase 24 1664824 6 5 6 2 1 2 1 0 0 2 0.93 1.00 -13994 FAM21C family with sequence similarity 21, member C 562780 5 2 5 1 1 4 0 0 0 0 0.93 1.00 -13995 MLLT1 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 1 328580 1 1 1 1 0 0 1 0 0 0 0.93 1.00 -13996 FGFR4 fibroblast growth factor receptor 4 570528 2 2 2 1 0 1 0 1 0 0 0.93 1.00 -13997 ST14 suppression of tumorigenicity 14 (colon carcinoma) 541640 3 3 3 1 1 2 0 0 0 0 0.93 1.00 -13998 SLC22A12 solute carrier family 22 (organic anion/urate transporter), member 12 358096 1 1 1 1 1 0 0 0 0 0 0.93 1.00 -13999 MYOM3 myomesin family, member 3 992276 2 2 2 1 1 0 0 0 1 0 0.93 1.00 -14000 ABCB9 ATP-binding cassette, sub-family B (MDR/TAP), member 9 446748 2 2 2 0 1 1 0 0 0 0 0.93 1.00 -14001 PCNXL2 pecanex-like 2 (Drosophila) 1393244 12 8 11 7 6 4 2 0 0 0 0.93 1.00 -14002 TLK2 tousled-like kinase 2 523488 3 2 3 2 1 1 1 0 0 0 0.93 1.00 -14003 NPC1L1 NPC1 (Niemann-Pick disease, type C1, gene)-like 1 901480 4 4 4 3 2 2 0 0 0 0 0.93 1.00 -14004 ZNF496 zinc finger protein 496 387968 2 2 2 3 1 1 0 0 0 0 0.93 1.00 -14005 MYBBP1A MYB binding protein (P160) 1a 842716 4 3 4 2 1 2 0 0 1 0 0.93 1.00 -14006 SKIL SKI-like oncogene 465696 1 1 1 0 0 1 0 0 0 0 0.93 1.00 -14007 ZNF618 zinc finger protein 618 583112 4 4 4 3 2 0 2 0 0 0 0.93 1.00 -14008 PLEKHG4 pleckstrin homology domain containing, family G (with RhoGef domain) member 4 790612 6 4 6 1 4 2 0 0 0 0 0.93 1.00 -14009 SH3D19 SH3 domain containing 19 544992 2 1 2 1 1 1 0 0 0 0 0.93 1.00 -14010 ATMIN ATM interactor 498932 4 2 4 0 1 3 0 0 0 0 0.93 1.00 -14011 ZNF778 zinc finger protein 778 495040 2 2 2 1 0 2 0 0 0 0 0.93 1.00 -14012 MYH13 myosin, heavy chain 13, skeletal muscle 1319048 17 8 16 5 8 7 2 0 0 0 0.94 1.00 -14013 C9orf5 chromosome 9 open reading frame 5 493688 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14014 TOM1L2 target of myb1-like 2 (chicken) 346760 1 1 1 0 0 0 1 0 0 0 0.94 1.00 -14015 SLC2A6 solute carrier family 2 (facilitated glucose transporter), member 6 248284 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14016 ASB6 ankyrin repeat and SOCS box-containing 6 288876 2 1 2 1 2 0 0 0 0 0 0.94 1.00 -14017 PCNT pericentrin 2078056 9 8 9 6 6 2 0 0 1 0 0.94 1.00 -14018 RAPGEF1 Rap guanine nucleotide exchange factor (GEF) 1 754760 6 4 6 2 0 5 1 0 0 0 0.94 1.00 -14019 NSMAF neutral sphingomyelinase (N-SMase) activation associated factor 630560 3 2 3 4 1 2 0 0 0 0 0.94 1.00 -14020 CCDC102A coiled-coil domain containing 102A 262520 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14021 KIF18B kinesin family member 18B 533728 2 2 2 0 1 1 0 0 0 0 0.94 1.00 -14022 LRSAM1 leucine rich repeat and sterile alpha motif containing 1 504872 2 2 2 1 1 1 0 0 0 0 0.94 1.00 -14023 XPC xeroderma pigmentosum, complementation group C 633820 3 3 3 1 1 1 1 0 0 0 0.94 1.00 -14024 MAST1 microtubule associated serine/threonine kinase 1 977200 6 5 6 3 1 4 1 0 0 0 0.94 1.00 -14025 RUNDC1 RUN domain containing 1 323096 1 1 1 1 1 0 0 0 0 0 0.94 1.00 -14026 SMC6 structural maintenance of chromosomes 6 757120 1 1 1 2 0 0 0 0 1 0 0.94 1.00 -14027 TMEM131 transmembrane protein 131 1235928 4 4 4 3 3 0 1 0 0 0 0.94 1.00 -14028 BRD3 bromodomain containing 3 481272 2 2 2 1 2 0 0 0 0 0 0.94 1.00 -14029 LRRC37B leucine rich repeat containing 37B 636464 2 2 2 1 1 1 0 0 0 0 0.94 1.00 -14030 TMEM8A 395632 1 1 1 1 0 1 0 0 0 0 0.94 1.00 -14031 FGGY FGGY carbohydrate kinase domain containing 401408 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14032 NLRX1 NLR family member X1 672532 2 2 2 0 0 1 0 0 1 0 0.94 1.00 -14033 STEAP3 STEAP family member 3 321748 1 1 1 1 1 0 0 0 0 0 0.94 1.00 -14034 IWS1 IWS1 homolog (S. cerevisiae) 563584 1 1 1 1 0 0 0 0 1 0 0.94 1.00 -14035 MAP4K1 mitogen-activated protein kinase kinase kinase kinase 1 557688 3 3 3 0 2 1 0 0 0 0 0.94 1.00 -14036 DGKA diacylglycerol kinase, alpha 80kDa 515200 1 1 1 0 0 1 0 0 0 0 0.94 1.00 -14037 ZHX1 zinc fingers and homeoboxes 1 588224 5 2 5 1 1 4 0 0 0 0 0.94 1.00 -14038 TNS4 tensin 4 480144 1 1 1 1 0 1 0 0 0 0 0.94 1.00 -14039 TBCD tubulin folding cofactor D 761836 3 3 3 1 2 0 0 0 1 0 0.94 1.00 -14040 CCDC62 coiled-coil domain containing 62 473760 1 1 1 2 1 0 0 0 0 0 0.94 1.00 -14041 PXK PX domain containing serine/threonine kinase 381472 1 1 1 2 0 1 0 0 0 0 0.94 1.00 -14042 PDP2 351764 1 1 1 1 1 0 0 0 0 0 0.94 1.00 -14043 TBC1D1 TBC1 (tre-2/USP6, BUB2, cdc16) domain family, member 1 789908 4 4 4 1 1 2 1 0 0 0 0.94 1.00 -14044 XPO6 exportin 6 778176 4 4 4 1 3 0 1 0 0 0 0.94 1.00 -14045 SPATS2L 374908 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14046 KRT8 keratin 8 298732 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14047 ZNF532 zinc finger protein 532 882028 3 3 3 6 0 2 1 0 0 0 0.94 1.00 -14048 ZNF324 zinc finger protein 324 323568 2 2 2 1 2 0 0 0 0 0 0.94 1.00 -14049 FOXRED1 FAD-dependent oxidoreductase domain containing 1 310240 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14050 SNAPC4 small nuclear RNA activating complex, polypeptide 4, 190kDa 741776 3 3 3 2 1 0 1 0 1 0 0.94 1.00 -14051 RNF31 ring finger protein 31 721252 2 2 2 3 1 0 0 0 1 0 0.94 1.00 -14052 ANKRD13C ankyrin repeat domain 13C 372200 1 1 1 1 1 0 0 0 0 0 0.94 1.00 -14053 LHX2 LIM homeobox 2 232604 1 1 1 1 1 0 0 0 0 0 0.94 1.00 -14054 RASGRP4 RAS guanyl releasing protein 4 440304 2 2 2 2 1 0 1 0 0 0 0.94 1.00 -14055 FRMD5 FERM domain containing 5 382592 1 1 1 0 0 0 1 0 0 0 0.94 1.00 -14056 MLLT3 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 3 391072 1 1 1 5 1 0 0 0 0 0 0.94 1.00 -14057 SLC5A1 solute carrier family 5 (sodium/glucose cotransporter), member 1 460320 1 1 1 2 0 0 1 0 0 0 0.94 1.00 -14058 GRAMD1A GRAM domain containing 1A 486728 1 1 1 0 0 0 0 0 1 0 0.94 1.00 -14059 DLGAP1 discs, large (Drosophila) homolog-associated protein 1 625884 3 3 3 2 2 1 0 0 0 0 0.94 1.00 -14060 PCSK6 proprotein convertase subtilisin/kexin type 6 633176 3 3 3 2 2 0 1 0 0 0 0.94 1.00 -14061 LMF1 lipase maturation factor 1 304920 2 1 2 0 2 0 0 0 0 0 0.94 1.00 -14062 TERT telomerase reverse transcriptase 498024 2 2 2 1 1 0 0 0 1 0 0.94 1.00 -14063 CCDC61 coiled-coil domain containing 61 280340 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14064 ARHGAP10 Rho GTPase activating protein 10 549472 2 2 2 2 1 0 1 0 0 0 0.94 1.00 -14065 DPYSL5 dihydropyrimidinase-like 5 390432 1 1 1 1 1 0 0 0 0 0 0.94 1.00 -14066 ARIH2 ariadne homolog 2 (Drosophila) 344512 1 1 1 3 1 0 0 0 0 0 0.94 1.00 -14067 RNF112 385612 1 1 1 0 0 0 1 0 0 0 0.94 1.00 -14068 FOXO3 forkhead box O3 337652 2 1 2 0 2 0 0 0 0 0 0.94 1.00 -14069 CDH23 cadherin-like 23 2183876 15 11 14 8 5 7 2 1 0 0 0.94 1.00 -14070 TMEM145 transmembrane protein 145 313012 1 1 1 1 0 1 0 0 0 0 0.94 1.00 -14071 JPH3 junctophilin 3 315772 1 1 1 2 1 0 0 0 0 0 0.94 1.00 -14072 CX3CL1 chemokine (C-X3-C motif) ligand 1 270144 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14073 NGEF neuronal guanine nucleotide exchange factor 477652 1 1 1 2 1 0 0 0 0 0 0.94 1.00 -14074 FLCN folliculin 424340 1 1 1 0 0 0 1 0 0 0 0.94 1.00 -14075 LGTN ligatin 406560 1 1 1 2 0 1 0 0 0 0 0.94 1.00 -14076 CELSR1 cadherin, EGF LAG seven-pass G-type receptor 1 (flamingo homolog, Drosophila) 1547756 8 8 7 4 3 2 2 0 1 0 0.94 1.00 -14077 VWA3B von Willebrand factor A domain containing 3B 893072 8 4 8 0 1 5 2 0 0 0 0.94 1.00 -14078 PNKP polynucleotide kinase 3'-phosphatase 320536 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14079 SYTL2 synaptotagmin-like 2 1200864 8 4 8 7 1 4 2 0 1 0 0.94 1.00 -14080 PDPR 578888 2 2 2 1 1 1 0 0 0 0 0.94 1.00 -14081 DGCR14 DiGeorge syndrome critical region gene 14 314748 1 1 1 1 1 0 0 0 0 0 0.94 1.00 -14082 SFRS14 splicing factor, arginine/serine-rich 14 720804 2 2 2 0 0 1 1 0 0 0 0.94 1.00 -14083 CDK18 332772 1 1 1 1 1 0 0 0 0 0 0.94 1.00 -14084 FHOD1 formin homology 2 domain containing 1 776504 4 3 4 1 2 0 1 1 0 0 0.94 1.00 -14085 ATG7 ATG7 autophagy related 7 homolog (S. cerevisiae) 489216 1 1 1 3 0 1 0 0 0 0 0.94 1.00 -14086 ADAMTS15 ADAM metallopeptidase with thrombospondin type 1 motif, 15 576856 3 3 3 0 2 1 0 0 0 0 0.94 1.00 -14087 KRT14 keratin 14 (epidermolysis bullosa simplex, Dowling-Meara, Koebner) 298960 2 1 2 0 0 2 0 0 0 0 0.94 1.00 -14088 MYO19 myosin XIX 659804 3 3 3 0 1 2 0 0 0 0 0.94 1.00 -14089 SP110 SP110 nuclear body protein 510496 1 1 1 4 0 1 0 0 0 0 0.94 1.00 -14090 DPEP3 dipeptidase 3 307748 1 1 1 1 1 0 0 0 0 0 0.94 1.00 -14091 HIPK3 homeodomain interacting protein kinase 3 831488 4 3 4 3 1 3 0 0 0 0 0.94 1.00 -14092 ZNF786 zinc finger protein 786 438060 2 2 2 1 2 0 0 0 0 0 0.94 1.00 -14093 SVIL supervillin 1519840 13 7 13 10 5 4 3 1 0 0 0.94 1.00 -14094 VCPIP1 valosin containing protein (p97)/p47 complex interacting protein 1 814296 3 2 3 0 0 0 1 0 2 0 0.94 1.00 -14095 ANKLE1 ankyrin repeat and LEM domain containing 1 300944 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14096 CDK5RAP2 CDK5 regulatory subunit associated protein 2 1306816 7 6 7 6 3 3 1 0 0 0 0.94 1.00 -14097 HMGCS2 3-hydroxy-3-methylglutaryl-Coenzyme A synthase 2 (mitochondrial) 350112 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14098 NRP1 neuropilin 1 621376 1 1 1 1 0 0 1 0 0 0 0.94 1.00 -14099 EEF2 eukaryotic translation elongation factor 2 560464 3 3 3 1 2 0 1 0 0 0 0.94 1.00 -14100 ZNF274 zinc finger protein 274 445536 1 1 1 0 0 1 0 0 0 0 0.94 1.00 -14101 SNX29 sorting nexin 29 299936 1 1 1 0 0 1 0 0 0 0 0.94 1.00 -14102 PTGDR prostaglandin D2 receptor (DP) 231280 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14103 RXRA retinoid X receptor, alpha 288316 1 1 1 1 0 1 0 0 0 0 0.94 1.00 -14104 MST1 macrophage stimulating 1 (hepatocyte growth factor-like) 411600 1 1 1 0 0 1 0 0 0 0 0.94 1.00 -14105 EMILIN1 elastin microfibril interfacer 1 493728 1 1 1 0 0 0 0 0 1 0 0.94 1.00 -14106 FLJ43860 811792 3 3 3 4 2 0 1 0 0 0 0.94 1.00 -14107 EPC2 enhancer of polycomb homolog 2 (Drosophila) 527744 1 1 1 0 0 0 1 0 0 0 0.94 1.00 -14108 HSPA12B heat shock 70kD protein 12B 342580 1 1 1 1 1 0 0 0 0 0 0.94 1.00 -14109 LRP5 low density lipoprotein receptor-related protein 5 1020068 5 5 5 4 4 0 0 0 1 0 0.94 1.00 -14110 PHC3 polyhomeotic homolog 3 (Drosophila) 682752 2 2 2 0 0 1 1 0 0 0 0.94 1.00 -14111 CRY2 cryptochrome 2 (photolyase-like) 377076 1 1 1 0 1 0 0 0 0 0 0.94 1.00 -14112 FLI1 Friend leukemia virus integration 1 312480 1 1 1 2 0 1 0 0 0 0 0.94 1.00 -14113 MCF2L MCF.2 cell line derived transforming sequence-like 696392 4 4 4 3 1 1 2 0 0 0 0.94 1.00 -14114 AHDC1 AT hook, DNA binding motif, containing 1 864880 4 4 4 5 2 0 1 0 1 0 0.94 1.00 -14115 HIRA HIR histone cell cycle regulation defective homolog A (S. cerevisiae) 703052 2 2 2 1 1 0 0 0 1 0 0.94 1.00 -14116 CYTSA 756924 2 2 2 0 1 1 0 0 0 0 0.94 1.00 -14117 GALNTL4 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 4 413896 2 2 2 4 1 1 0 0 0 0 0.94 1.00 -14118 HERC1 hect (homologous to the E6-AP (UBE3A) carboxyl terminus) domain and RCC1 (CHC1)-like domain (RLD) 1 3255200 18 9 18 3 5 8 0 0 1 4 0.94 1.00 -14119 GPR179 G protein-coupled receptor 179 1541412 11 7 11 5 1 5 4 0 1 0 0.94 1.00 -14120 MPHOSPH8 M-phase phosphoprotein 8 591136 1 1 1 1 0 0 0 0 1 0 0.94 1.00 -14121 SLC17A6 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 6 402528 2 1 2 1 0 0 2 0 0 0 0.95 1.00 -14122 UBAP2 ubiquitin associated protein 2 777728 5 3 5 2 1 4 0 0 0 0 0.95 1.00 -14123 ATP1A3 ATPase, Na+/K+ transporting, alpha 3 polypeptide 696688 5 4 5 6 2 3 0 0 0 0 0.95 1.00 -14124 EIF2AK3 eukaryotic translation initiation factor 2-alpha kinase 3 711088 2 2 2 1 0 1 1 0 0 0 0.95 1.00 -14125 STAU1 staufen, RNA binding protein, homolog 1 (Drosophila) 403200 1 1 1 1 0 0 1 0 0 0 0.95 1.00 -14126 ZBTB5 zinc finger and BTB domain containing 5 456512 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14127 LRRC8B leucine rich repeat containing 8 family, member B 542080 1 1 1 1 1 0 0 0 0 0 0.95 1.00 -14128 DPY19L4 dpy-19-like 4 (C. elegans) 499072 1 1 1 1 0 1 0 0 0 0 0.95 1.00 -14129 SLC41A1 solute carrier family 41, member 1 354368 1 1 1 1 0 1 0 0 0 0 0.95 1.00 -14130 MAST3 microtubule associated serine/threonine kinase 3 751180 4 3 4 2 3 0 0 0 1 0 0.95 1.00 -14131 TRAF2 TNF receptor-associated factor 2 346220 1 1 1 2 1 0 0 0 0 0 0.95 1.00 -14132 RASAL1 RAS protein activator like 1 (GAP1 like) 497700 2 2 2 4 0 2 0 0 0 0 0.95 1.00 -14133 SDAD1 SDA1 domain containing 1 482048 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14134 CKAP5 cytoskeleton associated protein 5 1404704 4 4 4 3 2 1 1 0 0 0 0.95 1.00 -14135 SNX8 sorting nexin 8 296916 1 1 1 1 1 0 0 0 0 0 0.95 1.00 -14136 SSH2 slingshot homolog 2 (Drosophila) 962344 4 3 4 1 1 2 1 0 0 0 0.95 1.00 -14137 CNOT4 CCR4-NOT transcription complex, subunit 4 462560 2 1 2 3 1 0 1 0 0 0 0.95 1.00 -14138 CLEC16A C-type lectin domain family 16, member A 695320 5 4 5 5 3 2 0 0 0 0 0.95 1.00 -14139 FGFR1 fibroblast growth factor receptor 1 (fms-related tyrosine kinase 2, Pfeiffer syndrome) 616956 4 3 3 4 2 2 0 0 0 0 0.95 1.00 -14140 NOS3 nitric oxide synthase 3 (endothelial cell) 635652 2 2 2 2 1 0 0 0 1 0 0.95 1.00 -14141 SIGLEC1 sialic acid binding Ig-like lectin 1, sialoadhesin 1021272 4 4 4 1 2 1 0 0 1 0 0.95 1.00 -14142 ZDHHC8 zinc finger, DHHC-type containing 8 354004 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14143 ZNF777 zinc finger protein 777 540260 2 2 2 3 1 0 0 1 0 0 0.95 1.00 -14144 ZNF30 zinc finger protein 30 423584 2 1 2 3 1 0 1 0 0 0 0.95 1.00 -14145 ADARB2 adenosine deaminase, RNA-specific, B2 (RED2 homolog rat) 330628 2 2 2 2 2 0 0 0 0 0 0.95 1.00 -14146 MMP24 matrix metallopeptidase 24 (membrane-inserted) 353808 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14147 MYBPC3 myosin binding protein C, cardiac 800212 3 3 3 1 2 0 0 1 0 0 0.95 1.00 -14148 SLC19A1 solute carrier family 19 (folate transporter), member 1 258972 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14149 FGD5 FYVE, RhoGEF and PH domain containing 5 814648 5 4 5 5 0 4 1 0 0 0 0.95 1.00 -14150 ELAC2 elaC homolog 2 (E. coli) 546588 1 1 1 3 0 1 0 0 0 0 0.95 1.00 -14151 GPR56 G protein-coupled receptor 56 478492 2 2 2 1 1 1 0 0 0 0 0.95 1.00 -14152 KIAA0913 KIAA0913 1112728 3 3 3 1 1 1 0 0 1 0 0.95 1.00 -14153 THBS4 thrombospondin 4 646760 2 2 2 6 1 1 0 0 0 0 0.95 1.00 -14154 TRPM4 transient receptor potential cation channel, subfamily M, member 4 768192 2 2 2 0 1 0 0 0 1 0 0.95 1.00 -14155 MYSM1 myb-like, SWIRM and MPN domains 1 575008 2 1 2 3 0 0 1 0 1 0 0.95 1.00 -14156 KIF26A kinesin family member 26A 419832 1 1 1 0 0 0 0 0 1 0 0.95 1.00 -14157 FAM40A family with sequence similarity 40, member A 534312 2 2 2 2 1 0 1 0 0 0 0.95 1.00 -14158 BRSK2 BR serine/threonine kinase 2 342800 1 1 1 0 0 0 1 0 0 0 0.95 1.00 -14159 DLG5 discs, large homolog 5 (Drosophila) 1215504 5 5 5 3 3 1 0 0 1 0 0.95 1.00 -14160 FZD2 frizzled homolog 2 (Drosophila) 349160 2 2 2 5 2 0 0 0 0 0 0.95 1.00 -14161 ZNF574 zinc finger protein 574 597632 3 3 3 0 3 0 0 0 0 0 0.95 1.00 -14162 CNOT3 CCR4-NOT transcription complex, subunit 3 506084 2 2 2 1 1 1 0 0 0 0 0.95 1.00 -14163 CDAN1 congenital dyserythropoietic anemia, type I 735396 3 3 3 0 2 1 0 0 0 0 0.95 1.00 -14164 TLN1 talin 1 1758148 7 7 7 2 3 4 0 0 0 0 0.95 1.00 -14165 USP30 ubiquitin specific peptidase 30 349916 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14166 NOL6 nucleolar protein family 6 (RNA-associated) 793828 4 3 4 1 2 2 0 0 0 0 0.95 1.00 -14167 PWWP2A PWWP domain containing 2A 307868 2 1 2 0 1 1 0 0 0 0 0.95 1.00 -14168 MAPK4 mitogen-activated protein kinase 4 308532 1 1 1 2 1 0 0 0 0 0 0.95 1.00 -14169 IKZF4 IKAROS family zinc finger 4 (Eos) 400960 1 1 1 0 0 1 0 0 0 0 0.95 1.00 -14170 TTC25 tetratricopeptide repeat domain 25 400944 1 1 1 2 0 1 0 0 0 0 0.95 1.00 -14171 ULK1 unc-51-like kinase 1 (C. elegans) 517300 1 1 1 0 0 0 0 0 1 0 0.95 1.00 -14172 MUC4 mucin 4, cell surface associated 1462884 6 5 6 5 0 3 1 0 2 0 0.95 1.00 -14173 CTBP2 C-terminal binding protein 2 558112 2 2 2 3 0 1 1 0 0 0 0.95 1.00 -14174 CDH5 cadherin 5, type 2, VE-cadherin (vascular epithelium) 508116 2 2 2 0 2 0 0 0 0 0 0.95 1.00 -14175 OCLN occludin 422240 1 1 1 1 0 1 0 0 0 0 0.95 1.00 -14176 NUP155 nucleoporin 155kDa 965016 2 2 2 3 0 1 1 0 0 0 0.95 1.00 -14177 FAM120C family with sequence similarity 120C 638176 2 2 2 3 0 1 1 0 0 0 0.95 1.00 -14178 LIN54 lin-54 homolog (C. elegans) 513664 1 1 1 1 0 0 1 0 0 0 0.95 1.00 -14179 VPS18 vacuolar protein sorting 18 homolog (S. cerevisiae) 645208 2 2 2 1 1 1 0 0 0 0 0.95 1.00 -14180 SHROOM1 shroom family member 1 399908 2 2 2 0 1 0 1 0 0 0 0.95 1.00 -14181 TRIM25 tripartite motif-containing 25 399500 1 1 1 2 0 0 1 0 0 0 0.95 1.00 -14182 ZSCAN22 zinc finger and SCAN domain containing 22 332416 1 1 1 2 0 1 0 0 0 0 0.95 1.00 -14183 SRPR signal recognition particle receptor ('docking protein') 437248 1 1 1 1 1 0 0 0 0 0 0.95 1.00 -14184 POU2F1 POU class 2 homeobox 1 513000 1 1 1 2 0 0 1 0 0 0 0.95 1.00 -14185 ATP13A2 ATPase type 13A2 821884 3 3 3 1 1 1 1 0 0 0 0.95 1.00 -14186 MFSD6 537600 2 1 2 0 1 1 0 0 0 0 0.95 1.00 -14187 HIC2 hypermethylated in cancer 2 299236 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14188 PKP1 plakophilin 1 (ectodermal dysplasia/skin fragility syndrome) 512932 2 2 2 1 1 1 0 0 0 0 0.95 1.00 -14189 GPAM glycerol-3-phosphate acyltransferase, mitochondrial 575008 3 2 3 2 1 2 0 0 0 0 0.95 1.00 -14190 LRFN3 leucine rich repeat and fibronectin type III domain containing 3 277060 1 1 1 0 0 1 0 0 0 0 0.95 1.00 -14191 RBBP6 retinoblastoma binding protein 6 1208712 7 4 7 2 2 2 3 0 0 0 0.95 1.00 -14192 SENP6 SUMO1/sentrin specific peptidase 6 761824 2 2 2 0 0 1 0 0 1 0 0.95 1.00 -14193 PFKP phosphofructokinase, platelet 519520 2 2 2 1 2 0 0 0 0 0 0.95 1.00 -14194 ZNF12 zinc finger protein 12 472640 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14195 MARS2 methionyl-tRNA synthetase 2, mitochondrial 381248 1 1 1 1 0 0 1 0 0 0 0.95 1.00 -14196 CCDC135 coiled-coil domain containing 135 580468 1 1 1 2 0 0 1 0 0 0 0.95 1.00 -14197 RBM28 RNA binding motif protein 28 527744 1 1 1 2 0 0 1 0 0 0 0.95 1.00 -14198 MET met proto-oncogene (hepatocyte growth factor receptor) 964768 5 4 5 1 1 1 3 0 0 0 0.95 1.00 -14199 CELSR2 cadherin, EGF LAG seven-pass G-type receptor 2 (flamingo homolog, Drosophila) 1850660 9 8 9 5 4 1 2 2 0 0 0.95 1.00 -14200 DAAM1 dishevelled associated activator of morphogenesis 1 747488 2 2 2 2 0 1 1 0 0 0 0.95 1.00 -14201 COL8A1 collagen, type VIII, alpha 1 488556 1 1 1 1 0 0 1 0 0 0 0.95 1.00 -14202 SLC22A2 solute carrier family 22 (organic cation transporter), member 2 379036 1 1 1 0 0 1 0 0 0 0 0.95 1.00 -14203 SMOX spermine oxidase 396392 2 2 2 5 2 0 0 0 0 0 0.95 1.00 -14204 PLVAP plasmalemma vesicle associated protein 293664 1 1 1 1 1 0 0 0 0 0 0.95 1.00 -14205 CCDC96 coiled-coil domain containing 96 269752 1 1 1 2 0 1 0 0 0 0 0.95 1.00 -14206 PTCHD2 patched domain containing 2 915044 5 5 5 0 3 1 1 0 0 0 0.95 1.00 -14207 KRT2 keratin 2 (epidermal ichthyosis bullosa of Siemens) 438144 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14208 DUSP4 dual specificity phosphatase 4 266484 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14209 PIK3CD phosphoinositide-3-kinase, catalytic, delta polypeptide 660744 3 3 3 2 3 0 0 0 0 0 0.95 1.00 -14210 ALPP alkaline phosphatase, placental (Regan isozyme) 316764 1 1 1 1 1 0 0 0 0 0 0.95 1.00 -14211 LDB3 LIM domain binding 3 523720 2 2 2 2 0 1 1 0 0 0 0.95 1.00 -14212 CAMKK2 calcium/calmodulin-dependent protein kinase kinase 2, beta 363492 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -14213 PPP1R10 protein phosphatase 1, regulatory (inhibitor) subunit 10 526096 1 1 1 1 0 1 0 0 0 0 0.95 1.00 -14214 F10 coagulation factor X 312760 1 1 1 3 1 0 0 0 0 0 0.95 1.00 -14215 SMC3 structural maintenance of chromosomes 3 844480 3 3 3 2 0 2 1 0 0 0 0.95 1.00 -14216 FARSA phenylalanyl-tRNA synthetase, alpha subunit 333592 1 1 1 1 1 0 0 0 0 0 0.95 1.00 -14217 SF3B2 splicing factor 3b, subunit 2, 145kDa 613088 2 2 2 7 0 1 1 0 0 0 0.95 1.00 -14218 TMC8 transmembrane channel-like 8 412104 1 1 1 0 0 1 0 0 0 0 0.95 1.00 -14219 PIGQ phosphatidylinositol glycan anchor biosynthesis, class Q 433572 1 1 1 0 0 0 1 0 0 0 0.95 1.00 -14220 KRT77 keratin 77 384304 1 1 1 2 0 0 1 0 0 0 0.95 1.00 -14221 CHM choroideremia (Rab escort protein 1) 451704 1 1 1 1 1 0 0 0 0 0 0.95 1.00 -14222 C11orf9 chromosome 11 open reading frame 9 658724 2 2 2 3 2 0 0 0 0 0 0.95 1.00 -14223 LCMT2 leucine carboxyl methyltransferase 2 406616 2 2 2 0 0 2 0 0 0 0 0.96 1.00 -14224 ZNF750 zinc finger protein 750 480928 2 2 2 2 2 0 0 0 0 0 0.96 1.00 -14225 C2CD2L 434028 1 1 1 1 1 0 0 0 0 0 0.96 1.00 -14226 XPO7 exportin 7 759272 2 1 2 0 0 0 1 0 1 0 0.96 1.00 -14227 FAM160A2 673120 3 3 3 3 2 1 0 0 0 0 0.96 1.00 -14228 RRN3 RRN3 RNA polymerase I transcription factor homolog (S. cerevisiae) 451036 1 1 1 0 0 0 1 0 0 0 0.96 1.00 -14229 ITPKB inositol 1,4,5-trisphosphate 3-kinase B 567084 4 2 4 1 2 1 1 0 0 0 0.96 1.00 -14230 ITGA11 integrin, alpha 11 772952 4 4 4 2 1 1 2 0 0 0 0.96 1.00 -14231 FBLN2 fibulin 2 652236 2 2 2 1 1 1 0 0 0 0 0.96 1.00 -14232 CP110 678188 2 2 2 1 0 1 1 0 0 0 0.96 1.00 -14233 GPC1 glypican 1 265020 1 1 1 0 1 0 0 0 0 0 0.96 1.00 -14234 TMPRSS6 transmembrane protease, serine 6 469112 2 2 2 0 1 1 0 0 0 0 0.96 1.00 -14235 KIAA0649 KIAA0649 544908 2 2 2 1 1 1 0 0 0 0 0.96 1.00 -14236 MYO1F myosin IF 734244 3 3 3 4 1 1 0 0 1 0 0.96 1.00 -14237 FUBP3 far upstream element (FUSE) binding protein 3 382368 1 1 1 0 0 1 0 0 0 0 0.96 1.00 -14238 MN1 meningioma (disrupted in balanced translocation) 1 468328 2 2 2 3 0 1 0 0 1 0 0.96 1.00 -14239 XPO1 exportin 1 (CRM1 homolog, yeast) 741888 2 2 2 3 2 0 0 0 0 0 0.96 1.00 -14240 SPIRE2 spire homolog 2 (Drosophila) 317996 1 1 1 0 0 1 0 0 0 0 0.96 1.00 -14241 DCAF5 641080 2 2 2 1 1 1 0 0 0 0 0.96 1.00 -14242 GRHL1 grainyhead-like 1 (Drosophila) 379820 1 1 1 1 1 0 0 0 0 0 0.96 1.00 -14243 STK11IP serine/threonine kinase 11 interacting protein 694664 1 1 1 1 0 0 0 0 1 0 0.96 1.00 -14244 PLCB2 phospholipase C, beta 2 765576 3 3 3 2 1 2 0 0 0 0 0.96 1.00 -14245 PRR12 proline rich 12 813632 2 2 2 0 1 0 0 0 1 0 0.96 1.00 -14246 UTY ubiquitously transcribed tetratricopeptide repeat gene, Y-linked 581980 2 2 2 0 1 1 0 0 0 0 0.96 1.00 -14247 PLXNB1 plexin B1 1347872 5 5 5 1 2 2 1 0 0 0 0.96 1.00 -14248 USP9Y ubiquitin specific peptidase 9, Y-linked (fat facets-like, Drosophila) 1084160 4 3 4 0 0 1 2 0 1 0 0.96 1.00 -14249 CEP152 centrosomal protein 152kDa 1134560 12 5 11 3 6 2 2 0 2 0 0.96 1.00 -14250 CLCN7 chloride channel 7 379196 1 1 1 1 0 1 0 0 0 0 0.96 1.00 -14251 TBCK 579040 1 1 1 1 0 0 1 0 0 0 0.96 1.00 -14252 CAPN9 calpain 9 482272 1 1 1 1 1 0 0 0 0 0 0.96 1.00 -14253 MMP17 matrix metallopeptidase 17 (membrane-inserted) 300580 1 1 1 4 1 0 0 0 0 0 0.96 1.00 -14254 ANKRD28 ankyrin repeat domain 28 713920 2 2 2 1 0 1 1 0 0 0 0.96 1.00 -14255 SLC4A11 solute carrier family 4, sodium borate transporter, member 11 598304 3 3 3 3 1 1 1 0 0 0 0.96 1.00 -14256 AHI1 Abelson helper integration site 1 818552 4 2 4 2 1 1 2 0 0 0 0.96 1.00 -14257 CMIP 475396 2 2 2 0 2 0 0 0 0 0 0.96 1.00 -14258 RALGAPA2 1246720 6 4 6 2 1 3 1 0 1 0 0.96 1.00 -14259 MYH7B myosin, heavy chain 7B, cardiac muscle, beta 1226652 7 6 7 3 3 1 1 0 2 0 0.96 1.00 -14260 NNT nicotinamide nucleotide transhydrogenase 749280 3 2 3 3 2 1 0 0 0 0 0.96 1.00 -14261 PRMT5 protein arginine methyltransferase 5 458080 1 1 1 2 1 0 0 0 0 0 0.96 1.00 -14262 CHRM4 cholinergic receptor, muscarinic 4 292040 1 1 1 0 1 0 0 0 0 0 0.96 1.00 -14263 B4GALNT4 beta-1,4-N-acetyl-galactosaminyl transferase 4 333592 1 1 1 0 1 0 0 0 0 0 0.96 1.00 -14264 KIF21B kinesin family member 21B 1105176 7 6 7 2 4 3 0 0 0 0 0.96 1.00 -14265 POLR2A polymerase (RNA) II (DNA directed) polypeptide A, 220kDa 1346156 6 6 6 2 3 1 1 1 0 0 0.96 1.00 -14266 DDHD1 DDHD domain containing 1 572444 3 2 3 0 1 0 1 0 1 0 0.96 1.00 -14267 THSD4 thrombospondin, type I, domain containing 4 617344 2 2 2 2 1 1 0 0 0 0 0.96 1.00 -14268 C2orf85 279240 1 1 1 1 1 0 0 0 0 0 0.96 1.00 -14269 WDR90 WD repeat domain 90 767788 2 2 2 1 0 0 0 1 1 0 0.96 1.00 -14270 PNPLA6 patatin-like phospholipase domain containing 6 831568 3 3 3 3 1 0 0 0 2 0 0.96 1.00 -14271 SLC24A1 solute carrier family 24 (sodium/potassium/calcium exchanger), member 1 700752 2 2 2 2 2 0 0 0 0 0 0.96 1.00 -14272 WDR27 WD repeat domain 27 562680 2 2 2 3 2 0 0 0 0 0 0.96 1.00 -14273 ALPL alkaline phosphatase, liver/bone/kidney 342076 1 1 1 0 0 1 0 0 0 0 0.96 1.00 -14274 AKAP8L A kinase (PRKA) anchor protein 8-like 377324 1 1 1 0 1 0 0 0 0 0 0.96 1.00 -14275 PTPN5 protein tyrosine phosphatase, non-receptor type 5 (striatum-enriched) 374808 1 1 1 1 1 0 0 0 0 0 0.96 1.00 -14276 ACE angiotensin I converting enzyme (peptidyl-dipeptidase A) 1 846536 2 2 2 1 0 1 0 0 1 0 0.96 1.00 -14277 MZF1 myeloid zinc finger 1 348880 1 1 1 1 0 0 1 0 0 0 0.96 1.00 -14278 DAPK3 death-associated protein kinase 3 264404 1 1 1 0 1 0 0 0 0 0 0.96 1.00 -14279 MDC1 mediator of DNA damage checkpoint 1 1128316 4 4 4 2 2 1 0 0 1 0 0.96 1.00 -14280 RAP1GAP RAP1 GTPase activating protein 483632 3 2 3 0 1 1 1 0 0 0 0.96 1.00 -14281 VEZT vezatin, adherens junctions transmembrane protein 524032 1 1 1 0 0 1 0 0 0 0 0.96 1.00 -14282 FAM161B 443520 1 1 1 1 0 0 1 0 0 0 0.96 1.00 -14283 MEX3A mex-3 homolog A (C. elegans) 237588 1 1 1 2 1 0 0 0 0 0 0.96 1.00 -14284 KIAA0226 KIAA0226 656152 3 3 3 0 3 0 0 0 0 0 0.96 1.00 -14285 DDX60L DEAD (Asp-Glu-Ala-Asp) box polypeptide 60-like 1159040 5 3 5 2 0 2 2 0 1 0 0.96 1.00 -14286 FUT11 fucosyltransferase 11 (alpha (1,3) fucosyltransferase) 260544 1 1 1 0 0 1 0 0 0 0 0.96 1.00 -14287 SNCAIP synuclein, alpha interacting protein (synphilin) 627200 3 2 3 2 1 1 1 0 0 0 0.96 1.00 -14288 MAPK15 mitogen-activated protein kinase 15 335952 1 1 1 0 1 0 0 0 0 0 0.96 1.00 -14289 TTLL8 tubulin tyrosine ligase-like family, member 8 393644 1 1 1 0 0 1 0 0 0 0 0.96 1.00 -14290 PFKM phosphofructokinase, muscle 594048 4 2 4 1 1 3 0 0 0 0 0.96 1.00 -14291 ZBTB48 zinc finger and BTB domain containing 48 438032 1 1 1 0 1 0 0 0 0 0 0.96 1.00 -14292 PTCD1 pentatricopeptide repeat domain 1 467740 1 1 1 2 0 0 1 0 0 0 0.96 1.00 -14293 SLC27A1 solute carrier family 27 (fatty acid transporter), member 1 408408 2 2 2 2 2 0 0 0 0 0 0.96 1.00 -14294 PLEKHM3 pleckstrin homology domain containing, family M, member 3 512488 1 1 1 1 1 0 0 0 0 0 0.96 1.00 -14295 DDX10 DEAD (Asp-Glu-Ala-Asp) box polypeptide 10 604800 3 1 3 1 0 1 1 0 1 0 0.96 1.00 -14296 CCDC33 coiled-coil domain containing 33 583968 1 1 1 1 0 0 1 0 0 0 0.96 1.00 -14297 PTBP1 polypyrimidine tract binding protein 1 354144 1 1 1 0 1 0 0 0 0 0 0.96 1.00 -14298 MEFV Mediterranean fever 495964 2 2 2 4 1 1 0 0 0 0 0.96 1.00 -14299 GOLGA3 golgi autoantigen, golgin subfamily a, 3 1007500 3 3 3 1 1 1 0 0 1 0 0.96 1.00 -14300 HNRNPU heterogeneous nuclear ribonucleoprotein U (scaffold attachment factor A) 526568 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14301 ALPPL2 alkaline phosphatase, placental-like 2 270668 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14302 ITPKC inositol 1,4,5-trisphosphate 3-kinase C 397768 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14303 CCDC157 383316 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14304 TLE1 transducin-like enhancer of split 1 (E(sp1) homolog, Drosophila) 535444 1 1 1 1 1 0 0 0 0 0 0.97 1.00 -14305 SHROOM3 shroom family member 3 1149788 4 4 4 2 2 1 1 0 0 0 0.97 1.00 -14306 WDR67 WD repeat domain 67 720440 2 2 2 2 0 1 1 0 0 0 0.97 1.00 -14307 NOC2L nucleolar complex associated 2 homolog (S. cerevisiae) 483652 2 2 2 0 2 0 0 0 0 0 0.97 1.00 -14308 DLEC1 deleted in lung and esophageal cancer 1 1251040 4 4 4 6 1 2 0 0 1 0 0.97 1.00 -14309 CACNA2D4 calcium channel, voltage-dependent, alpha 2/delta subunit 4 768152 3 3 3 3 1 1 1 0 0 0 0.97 1.00 -14310 ACCN2 amiloride-sensitive cation channel 2, neuronal 393148 1 1 1 1 1 0 0 0 0 0 0.97 1.00 -14311 NFAT5 nuclear factor of activated T-cells 5, tonicity-responsive 1053328 5 2 5 2 0 3 2 0 0 0 0.97 1.00 -14312 ZNF526 zinc finger protein 526 443996 1 1 1 2 1 0 0 0 0 0 0.97 1.00 -14313 IGF2BP2 insulin-like growth factor 2 mRNA binding protein 2 408424 1 1 1 1 0 1 0 0 0 0 0.97 1.00 -14314 TCF25 transcription factor 25 (basic helix-loop-helix) 434392 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14315 CLASP2 cytoplasmic linker associated protein 2 995768 5 3 5 2 0 4 1 0 0 0 0.97 1.00 -14316 DSTYK 623068 2 2 2 0 0 2 0 0 0 0 0.97 1.00 -14317 GFAP glial fibrillary acidic protein 314076 1 1 1 1 1 0 0 0 0 0 0.97 1.00 -14318 ATP7B ATPase, Cu++ transporting, beta polypeptide 1003968 4 4 4 1 0 3 1 0 0 0 0.97 1.00 -14319 MYO3B myosin IIIB 933184 7 3 7 3 2 2 3 0 0 0 0.97 1.00 -14320 RUVBL2 RuvB-like 2 (E. coli) 310884 1 1 1 0 1 0 0 0 0 0 0.97 1.00 -14321 FHDC1 FH2 domain containing 1 736960 5 3 4 1 2 1 1 0 1 0 0.97 1.00 -14322 ZBTB22 zinc finger and BTB domain containing 22 418040 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14323 MTMR14 myotubularin related protein 14 434252 1 1 1 0 1 0 0 0 0 0 0.97 1.00 -14324 KLHL11 kelch-like 11 (Drosophila) 439180 1 1 1 1 0 0 1 0 0 0 0.97 1.00 -14325 SEMA6A sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6A 707056 2 2 2 3 1 1 0 0 0 0 0.97 1.00 -14326 SYNJ2 synaptojanin 2 983628 6 4 6 5 2 2 1 0 1 0 0.97 1.00 -14327 RERE arginine-glutamic acid dipeptide (RE) repeats 798748 3 3 3 2 1 1 0 0 1 0 0.97 1.00 -14328 GRB7 growth factor receptor-bound protein 7 367204 1 1 1 1 1 0 0 0 0 0 0.97 1.00 -14329 AP1B1 adaptor-related protein complex 1, beta 1 subunit 634516 1 1 1 4 0 0 1 0 0 0 0.97 1.00 -14330 COPG coatomer protein complex, subunit gamma 603928 3 2 3 2 1 1 0 1 0 0 0.97 1.00 -14331 WFIKKN2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 386072 1 1 1 2 1 0 0 0 0 0 0.97 1.00 -14332 PTRF polymerase I and transcript release factor 245924 2 1 2 2 2 0 0 0 0 0 0.97 1.00 -14333 SMG1 2217680 13 8 13 4 6 3 3 0 1 0 0.97 1.00 -14334 PAK6 p21(CDKN1A)-activated kinase 6 409976 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14335 ITFG3 integrin alpha FG-GAP repeat containing 3 375592 1 1 1 0 1 0 0 0 0 0 0.97 1.00 -14336 CES2 carboxylesterase 2 (intestine, liver) 421828 1 1 1 1 1 0 0 0 0 0 0.97 1.00 -14337 ADCY3 adenylate cyclase 3 765664 2 2 2 5 2 0 0 0 0 0 0.97 1.00 -14338 PRDM16 PR domain containing 16 756600 3 3 3 4 1 1 0 0 1 0 0.97 1.00 -14339 GGA1 golgi associated, gamma adaptin ear containing, ARF binding protein 1 421424 1 1 1 1 0 0 1 0 0 0 0.97 1.00 -14340 ZYX zyxin 342548 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14341 SCARB1 scavenger receptor class B, member 1 350024 1 1 1 3 1 0 0 0 0 0 0.97 1.00 -14342 SLC12A8 solute carrier family 12 (potassium/chloride transporters), member 8 492128 1 1 1 0 1 0 0 0 0 0 0.97 1.00 -14343 C16orf62 chromosome 16 open reading frame 62 675584 2 2 2 4 1 0 1 0 0 0 0.97 1.00 -14344 KRBA1 KRAB-A domain containing 1 534264 1 1 1 1 0 0 1 0 0 0 0.97 1.00 -14345 ZNF324B zinc finger protein 324B 345240 1 1 1 1 1 0 0 0 0 0 0.97 1.00 -14346 ZMIZ1 zinc finger, MIZ-type containing 1 704592 3 3 3 2 1 1 1 0 0 0 0.97 1.00 -14347 SUN1 548568 2 1 2 5 0 1 0 0 1 0 0.97 1.00 -14348 VARS valyl-tRNA synthetase 650300 1 1 1 0 0 0 0 0 1 0 0.97 1.00 -14349 RAI1 retinoic acid induced 1 1088332 6 5 6 1 1 2 2 0 1 0 0.97 1.00 -14350 SLC27A4 solute carrier family 27 (fatty acid transporter), member 4 434196 1 1 1 0 1 0 0 0 0 0 0.97 1.00 -14351 OSBPL9 oxysterol binding protein-like 9 523712 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14352 MAST2 microtubule associated serine/threonine kinase 2 1182176 5 4 5 3 3 1 1 0 0 0 0.97 1.00 -14353 ADCY10 adenylate cyclase 10 (soluble) 1111264 5 4 5 6 2 2 1 0 0 0 0.97 1.00 -14354 MEGF8 multiple EGF-like-domains 8 1616332 10 8 10 5 6 2 1 0 1 0 0.97 1.00 -14355 ATP13A3 ATPase type 13A3 852320 2 2 2 1 0 1 1 0 0 0 0.97 1.00 -14356 PHF12 PHD finger protein 12 694624 2 2 2 4 1 0 1 0 0 0 0.97 1.00 -14357 DCTN1 dynactin 1 (p150, glued homolog, Drosophila) 886592 4 3 4 3 2 2 0 0 0 0 0.97 1.00 -14358 ADARB1 adenosine deaminase, RNA-specific, B1 (RED1 homolog rat) 472388 1 1 1 2 1 0 0 0 0 0 0.97 1.00 -14359 OTUD7A OTU domain containing 7A 431536 2 2 2 2 1 1 0 0 0 0 0.97 1.00 -14360 SLC39A4 solute carrier family 39 (zinc transporter), member 4 306624 1 1 1 0 1 0 0 0 0 0 0.97 1.00 -14361 PCNXL3 pecanex-like 3 (Drosophila) 1044776 3 3 3 3 1 1 0 0 1 0 0.97 1.00 -14362 FAM63B family with sequence similarity 63, member B 385896 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14363 PREPL prolyl endopeptidase-like 501760 2 1 2 1 1 0 1 0 0 0 0.97 1.00 -14364 ZFYVE28 zinc finger, FYVE domain containing 28 519400 1 1 1 1 0 1 0 0 0 0 0.97 1.00 -14365 ANO7 582512 3 2 3 2 0 2 1 0 0 0 0.97 1.00 -14366 BAI1 brain-specific angiogenesis inhibitor 1 654440 2 2 2 0 1 1 0 0 0 0 0.97 1.00 -14367 APEH N-acylaminoacyl-peptide hydrolase 482916 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14368 KIAA0415 KIAA0415 382376 1 1 1 0 1 0 0 0 0 0 0.97 1.00 -14369 C2 complement component 2 400204 4 1 4 3 1 2 1 0 0 0 0.97 1.00 -14370 PELP1 proline, glutamate and leucine rich protein 1 663860 2 1 2 0 1 0 1 0 0 0 0.97 1.00 -14371 IL4R interleukin 4 receptor 563136 1 1 1 1 1 0 0 0 0 0 0.97 1.00 -14372 CNNM4 cyclin M4 495668 1 1 1 0 0 0 1 0 0 0 0.97 1.00 -14373 NUP214 nucleoporin 214kDa 1430744 6 5 6 3 0 2 4 0 0 0 0.97 1.00 -14374 TBC1D9B TBC1 domain family, member 9B (with GRAM domain) 803948 2 2 2 0 0 2 0 0 0 0 0.97 1.00 -14375 PNMAL2 PNMA-like 2 345968 2 2 2 2 1 1 0 0 0 0 0.97 1.00 -14376 PDE8A phosphodiesterase 8A 534912 1 1 1 3 0 1 0 0 0 0 0.97 1.00 -14377 CACNB1 calcium channel, voltage-dependent, beta 1 subunit 453672 1 1 1 2 0 0 1 0 0 0 0.97 1.00 -14378 DTNB dystrobrevin, beta 429112 1 1 1 0 1 0 0 0 0 0 0.97 1.00 -14379 MGAT4B mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme B 346864 1 1 1 1 1 0 0 0 0 0 0.97 1.00 -14380 ATP10B ATPase, class V, type 10B 1002176 3 3 3 1 2 0 1 0 0 0 0.97 1.00 -14381 MLXIPL MLX interacting protein-like 462724 1 1 1 0 1 0 0 0 0 0 0.97 1.00 -14382 POMT2 protein-O-mannosyltransferase 2 466460 1 1 1 0 0 1 0 0 0 0 0.97 1.00 -14383 ANKS1A ankyrin repeat and sterile alpha motif domain containing 1A 726884 1 1 1 3 0 0 0 1 0 0 0.98 1.00 -14384 EPS15L1 epidermal growth factor receptor pathway substrate 15-like 1 593600 3 2 3 0 1 1 1 0 0 0 0.98 1.00 -14385 ANAPC1 anaphase promoting complex subunit 1 1085420 4 3 4 2 1 2 1 0 0 0 0.98 1.00 -14386 ABP1 amiloride binding protein 1 (amine oxidase (copper-containing)) 477680 1 1 1 2 1 0 0 0 0 0 0.98 1.00 -14387 KCNC4 potassium voltage-gated channel, Shaw-related subfamily, member 4 403116 1 1 1 1 1 0 0 0 0 0 0.98 1.00 -14388 NBAS 1640576 8 5 8 5 0 4 2 0 2 0 0.98 1.00 -14389 SPHK2 sphingosine kinase 2 356832 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14390 CNST 499072 1 1 1 1 1 0 0 0 0 0 0.98 1.00 -14391 KIAA1244 KIAA1244 1380108 8 5 8 2 6 1 1 0 0 0 0.98 1.00 -14392 ZNF76 zinc finger protein 76 (expressed in testis) 391580 2 1 2 2 1 1 0 0 0 0 0.98 1.00 -14393 TACC3 transforming, acidic coiled-coil containing protein 3 496588 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14394 RHBDF1 rhomboid 5 homolog 1 (Drosophila) 494936 2 2 2 0 2 0 0 0 0 0 0.98 1.00 -14395 WNK2 WNK lysine deficient protein kinase 2 1101548 4 4 4 0 2 0 0 0 2 0 0.98 1.00 -14396 UPF1 UPF1 regulator of nonsense transcripts homolog (yeast) 735140 3 3 3 4 1 1 1 0 0 0 0.98 1.00 -14397 EPHB3 EPH receptor B3 632464 2 2 2 2 1 0 1 0 0 0 0.98 1.00 -14398 FAM65C 600260 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14399 PANK4 pantothenate kinase 4 413224 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14400 SIK1 348388 1 1 1 1 1 0 0 0 0 0 0.98 1.00 -14401 SEMA3B sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3B 366996 1 1 1 1 0 0 1 0 0 0 0.98 1.00 -14402 PPARGC1B peroxisome proliferator-activated receptor gamma, coactivator 1 beta 674624 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14403 FAM73B family with sequence similarity 73, member B 399872 1 1 1 1 1 0 0 0 0 0 0.98 1.00 -14404 IKBKAP inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein 928032 2 2 2 2 2 0 0 0 0 0 0.98 1.00 -14405 LSR lipolysis stimulated lipoprotein receptor 373660 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14406 RALGDS ral guanine nucleotide dissociation stimulator 507628 1 1 1 2 1 0 0 0 0 0 0.98 1.00 -14407 SREBF1 sterol regulatory element binding transcription factor 1 564188 1 1 1 1 0 1 0 0 0 0 0.98 1.00 -14408 PCSK9 proprotein convertase subtilisin/kexin type 9 396572 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14409 USP37 ubiquitin specific peptidase 37 679168 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14410 ZNF839 565376 1 1 1 1 1 0 0 0 0 0 0.98 1.00 -14411 KAT2A 478336 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14412 DMBT1 deleted in malignant brain tumors 1 1263024 7 4 7 6 3 2 0 1 1 0 0.98 1.00 -14413 DAGLA diacylglycerol lipase, alpha 644000 2 2 2 1 2 0 0 0 0 0 0.98 1.00 -14414 ELFN2 extracellular leucine-rich repeat and fibronectin type III domain containing 2 442344 1 1 1 2 1 0 0 0 0 0 0.98 1.00 -14415 UBE2O ubiquitin-conjugating enzyme E2O 779844 2 2 2 1 1 1 0 0 0 0 0.98 1.00 -14416 ANAPC2 anaphase promoting complex subunit 2 482608 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14417 HTT huntingtin 2085308 12 8 11 9 9 2 0 0 1 0 0.98 1.00 -14418 INSM2 insulinoma-associated 2 255864 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14419 ABCA7 ATP-binding cassette, sub-family A (ABC1), member 7 1102900 5 5 5 1 2 1 1 0 1 0 0.98 1.00 -14420 ZBTB49 521024 1 1 1 3 0 0 1 0 0 0 0.98 1.00 -14421 SMPD4 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) 539260 1 1 1 1 0 1 0 0 0 0 0.98 1.00 -14422 SLMAP sarcolemma associated protein 564480 1 1 1 2 0 1 0 0 0 0 0.98 1.00 -14423 ELN elastin (supravalvular aortic stenosis, Williams-Beuren syndrome) 503612 1 1 1 3 0 1 0 0 0 0 0.98 1.00 -14424 ANO1 613604 1 1 1 3 0 1 0 0 0 0 0.98 1.00 -14425 PIGG phosphatidylinositol glycan anchor biosynthesis, class G 657692 3 2 3 2 2 1 0 0 0 0 0.98 1.00 -14426 AHRR aryl-hydrocarbon receptor repressor 458836 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14427 TSC22D1 TSC22 domain family, member 1 738840 2 2 2 2 0 1 1 0 0 0 0.98 1.00 -14428 KANK1 KN motif and ankyrin repeat domains 1 919072 4 3 4 5 3 0 0 0 1 0 0.98 1.00 -14429 CTTN cortactin 425864 1 1 1 2 0 0 1 0 0 0 0.98 1.00 -14430 ZNF263 zinc finger protein 263 463512 4 1 4 0 2 2 0 0 0 0 0.98 1.00 -14431 CDC42BPG CDC42 binding protein kinase gamma (DMPK-like) 843700 3 3 3 2 3 0 0 0 0 0 0.98 1.00 -14432 ZBTB38 zinc finger and BTB domain containing 38 804608 2 2 2 1 1 1 0 0 0 0 0.98 1.00 -14433 MUC6 mucin 6, oligomeric mucus/gel-forming 1415928 5 5 5 2 3 1 0 0 1 0 0.98 1.00 -14434 PPAN-P2RY11 PPAN-P2RY11 467472 1 1 1 1 0 0 0 0 1 0 0.98 1.00 -14435 CAMSAP1L1 calmodulin regulated spectrin-associated protein 1-like 1 1009120 2 2 2 2 2 0 0 0 0 0 0.98 1.00 -14436 SH3BP2 SH3-domain binding protein 2 373244 1 1 1 1 1 0 0 0 0 0 0.98 1.00 -14437 SGSM2 small G protein signaling modulator 2 673948 1 1 1 2 0 0 0 0 1 0 0.98 1.00 -14438 TRMT1 TRM1 tRNA methyltransferase 1 homolog (S. cerevisiae) 444872 1 1 1 1 0 0 1 0 0 0 0.98 1.00 -14439 SEC24A SEC24 related gene family, member A (S. cerevisiae) 755776 4 2 4 0 2 1 1 0 0 0 0.98 1.00 -14440 PYGL phosphorylase, glycogen; liver (Hers disease, glycogen storage disease type VI) 587692 2 1 2 5 0 0 2 0 0 0 0.98 1.00 -14441 RBM47 RNA binding motif protein 47 370668 1 1 1 1 1 0 0 0 0 0 0.98 1.00 -14442 ZNF862 712716 3 3 3 2 1 1 1 0 0 0 0.98 1.00 -14443 CDHR2 903464 2 2 2 4 2 0 0 0 0 0 0.98 1.00 -14444 SYMPK symplekin 796324 5 2 5 2 1 1 2 0 1 0 0.98 1.00 -14445 DLG4 discs, large homolog 4 (Drosophila) 519100 3 2 3 1 3 0 0 0 0 0 0.98 1.00 -14446 BDP1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB 1784412 9 4 9 4 3 4 1 0 1 0 0.98 1.00 -14447 CEP72 centrosomal protein 72kDa 426944 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14448 KIF19 kinesin family member 19 505404 2 2 2 1 0 2 0 0 0 0 0.98 1.00 -14449 PLEKHH1 pleckstrin homology domain containing, family H (with MyTH4 domain) member 1 934480 2 2 2 1 0 1 1 0 0 0 0.98 1.00 -14450 C10orf18 chromosome 10 open reading frame 18 1649760 8 5 8 2 3 3 1 0 1 0 0.98 1.00 -14451 STXBP5 syntaxin binding protein 5 (tomosyn) 772912 4 2 4 2 2 1 1 0 0 0 0.98 1.00 -14452 USP42 ubiquitin specific peptidase 42 702824 2 2 2 1 1 0 1 0 0 0 0.98 1.00 -14453 SGK269 1177568 3 3 3 2 0 1 1 1 0 0 0.98 1.00 -14454 SAPS2 SAPS domain family, member 2 565684 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14455 KANK2 KN motif and ankyrin repeat domains 2 517524 1 1 1 0 0 0 1 0 0 0 0.98 1.00 -14456 LRRN2 leucine rich repeat neuronal 2 480704 1 1 1 2 1 0 0 0 0 0 0.98 1.00 -14457 MED25 mediator complex subunit 25 459620 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14458 CASC3 cancer susceptibility candidate 3 453236 1 1 1 2 1 0 0 0 0 0 0.98 1.00 -14459 INPP5B inositol polyphosphate-5-phosphatase, 75kDa 634816 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14460 MMEL1 membrane metallo-endopeptidase-like 1 491340 1 1 1 0 1 0 0 0 0 0 0.98 1.00 -14461 CC2D1A coiled-coil and C2 domain containing 1A 632324 2 2 2 1 1 1 0 0 0 0 0.98 1.00 -14462 KIAA0284 KIAA0284 442464 2 2 2 0 2 0 0 0 0 0 0.98 1.00 -14463 ZFYVE26 zinc finger, FYVE domain containing 26 1743616 9 7 9 0 2 4 3 0 0 0 0.98 1.00 -14464 BAT3 HLA-B associated transcript 3 573472 2 2 2 1 0 1 1 0 0 0 0.98 1.00 -14465 JHDM1D jumonji C domain containing histone demethylase 1 homolog D (S. cerevisiae) 630168 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14466 ANKRD34A ankyrin repeat domain 34A 334040 1 1 1 1 1 0 0 0 0 0 0.98 1.00 -14467 BAHCC1 BAH domain and coiled-coil containing 1 658332 1 1 1 0 0 0 0 0 1 0 0.98 1.00 -14468 TTLL5 tubulin tyrosine ligase-like family, member 5 889280 2 2 2 1 1 0 1 0 0 0 0.98 1.00 -14469 GTF3C4 general transcription factor IIIC, polypeptide 4, 90kDa 509768 1 1 1 3 1 0 0 0 0 0 0.98 1.00 -14470 KIF1B kinesin family member 1B 1564864 7 6 7 5 4 3 0 0 0 0 0.98 1.00 -14471 DBN1 drebrin 1 420040 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14472 SIPA1 signal-induced proliferation-associated gene 1 393632 1 1 1 1 1 0 0 0 0 0 0.98 1.00 -14473 MED16 mediator complex subunit 16 402696 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14474 RAP1GAP2 460632 2 1 2 3 1 1 0 0 0 0 0.98 1.00 -14475 UBA1 ubiquitin-like modifier activating enzyme 1 719360 2 2 2 3 1 1 0 0 0 0 0.98 1.00 -14476 LAMB2 laminin, beta 2 (laminin S) 1213828 5 4 5 1 0 3 1 0 1 0 0.98 1.00 -14477 BTBD12 BTB (POZ) domain containing 12 1192268 3 3 3 0 0 2 1 0 0 0 0.98 1.00 -14478 TRAP1 TNF receptor-associated protein 1 468272 1 1 1 2 1 0 0 0 0 0 0.98 1.00 -14479 RLTPR RGD motif, leucine rich repeats, tropomodulin domain and proline-rich containing 809640 2 2 2 1 1 0 1 0 0 0 0.98 1.00 -14480 ABCA3 ATP-binding cassette, sub-family A (ABC1), member 3 1134428 6 5 6 4 4 1 1 0 0 0 0.98 1.00 -14481 GPR124 G protein-coupled receptor 124 614324 1 1 1 1 1 0 0 0 0 0 0.98 1.00 -14482 CCDC151 coiled-coil domain containing 151 400176 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14483 WNK4 WNK lysine deficient protein kinase 4 808616 2 2 2 3 1 0 0 0 1 0 0.98 1.00 -14484 ZBTB17 zinc finger and BTB domain containing 17 511424 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -14485 FZD1 frizzled homolog 1 (Drosophila) 353276 1 1 1 3 1 0 0 0 0 0 0.98 1.00 -14486 COASY Coenzyme A synthase 407204 1 1 1 1 0 1 0 0 0 0 0.98 1.00 -14487 COPA coatomer protein complex, subunit alpha 858816 2 2 2 0 1 1 0 0 0 0 0.98 1.00 -14488 ZFYVE20 zinc finger, FYVE domain containing 20 537376 2 1 2 0 0 2 0 0 0 0 0.99 1.00 -14489 CYTSB 736736 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14490 MGRN1 mahogunin, ring finger 1 349972 2 1 2 0 1 1 0 0 0 0 0.99 1.00 -14491 NYNRIN 1270820 6 5 6 2 1 4 1 0 0 0 0.99 1.00 -14492 CHD8 chromodomain helicase DNA binding protein 8 1606360 6 6 6 0 2 3 1 0 0 0 0.99 1.00 -14493 VCL vinculin 766536 2 2 2 1 2 0 0 0 0 0 0.99 1.00 -14494 DUS3L dihydrouridine synthase 3-like (S. cerevisiae) 342692 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14495 BAIAP3 BAI1-associated protein 3 538424 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14496 DHX33 DEAH (Asp-Glu-Ala-His) box polypeptide 33 455840 1 1 1 1 0 1 0 0 0 0 0.99 1.00 -14497 MAPK8IP3 mitogen-activated protein kinase 8 interacting protein 3 752816 2 2 2 0 1 0 0 0 1 0 0.99 1.00 -14498 CTDP1 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1 477136 3 2 3 3 2 1 0 0 0 0 0.99 1.00 -14499 ALG13 asparagine-linked glycosylation 13 homolog (S. cerevisiae) 738064 1 1 1 0 0 0 1 0 0 0 0.99 1.00 -14500 AP3B2 adaptor-related protein complex 3, beta 2 subunit 693144 2 2 2 1 1 0 1 0 0 0 0.99 1.00 -14501 MYO1G myosin IG 618904 2 2 2 0 2 0 0 0 0 0 0.99 1.00 -14502 ASAP3 594100 1 1 1 0 0 0 0 0 1 0 0.99 1.00 -14503 MAP7D1 MAP7 domain containing 1 434088 1 1 1 2 1 0 0 0 0 0 0.99 1.00 -14504 DNAH1 dynein, axonemal, heavy chain 1 2813948 19 13 19 1 10 3 6 0 0 0 0.99 1.00 -14505 PAPLN papilin, proteoglycan-like sulfated glycoprotein 799844 2 2 2 2 0 1 1 0 0 0 0.99 1.00 -14506 SCRIB scribbled homolog (Drosophila) 801440 2 2 2 1 1 0 1 0 0 0 0.99 1.00 -14507 PDXDC1 pyridoxal-dependent decarboxylase domain containing 1 530256 1 1 1 1 1 0 0 0 0 0 0.99 1.00 -14508 MTMR15 myotubularin related protein 15 697984 1 1 1 0 0 1 0 0 0 0 0.99 1.00 -14509 FBF1 Fas (TNFRSF6) binding factor 1 636996 2 2 2 1 1 1 0 0 0 0 0.99 1.00 -14510 WDR6 WD repeat domain 6 761464 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14511 DENND1C DENN/MADD domain containing 1C 529284 4 1 4 2 1 1 2 0 0 0 0.99 1.00 -14512 USP35 ubiquitin specific peptidase 35 573860 1 1 1 2 0 0 0 0 1 0 0.99 1.00 -14513 TTF2 transcription termination factor, RNA polymerase II 802144 4 2 4 3 0 4 0 0 0 0 0.99 1.00 -14514 CARD10 caspase recruitment domain family, member 10 526308 1 1 1 0 0 0 1 0 0 0 0.99 1.00 -14515 RPS6KA1 ribosomal protein S6 kinase, 90kDa, polypeptide 1 521868 1 1 1 2 1 0 0 0 0 0 0.99 1.00 -14516 PIK3R5 phosphoinositide-3-kinase, regulatory subunit 5 581868 1 1 1 1 1 0 0 0 0 0 0.99 1.00 -14517 FAM83H family with sequence similarity 83, member H 402136 1 1 1 0 0 0 1 0 0 0 0.99 1.00 -14518 PLA2G4E phospholipase A2, group IVE 556616 2 1 2 2 0 2 0 0 0 0 0.99 1.00 -14519 RAPH1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 874768 2 2 2 2 1 0 1 0 0 0 0.99 1.00 -14520 ZC3H7A zinc finger CCCH-type containing 7A 672896 1 1 1 1 0 1 0 0 0 0 0.99 1.00 -14521 GRIN1 glutamate receptor, ionotropic, N-methyl D-aspartate 1 525648 1 1 1 0 0 1 0 0 0 0 0.99 1.00 -14522 RASAL3 483480 1 1 1 1 0 1 0 0 0 0 0.99 1.00 -14523 TLN2 talin 2 1755156 9 7 9 12 4 4 1 0 0 0 0.99 1.00 -14524 RSBN1L round spermatid basic protein 1-like 549332 2 1 2 0 0 2 0 0 0 0 0.99 1.00 -14525 PFKL phosphofructokinase, liver 424900 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14526 SART3 squamous cell carcinoma antigen recognized by T cells 3 664832 2 2 2 2 1 0 1 0 0 0 0.99 1.00 -14527 SEC31B SEC31 homolog B (S. cerevisiae) 814016 1 1 1 2 0 0 0 0 1 0 0.99 1.00 -14528 LRRN4 387604 1 1 1 2 1 0 0 0 0 0 0.99 1.00 -14529 TCF3 transcription factor 3 (E2A immunoglobulin enhancer binding factors E12/E47) 393008 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14530 THADA thyroid adenoma associated 1284920 6 4 6 2 0 6 0 0 0 0 0.99 1.00 -14531 MYO15A myosin XVA 1948668 11 10 11 5 7 2 1 0 1 0 0.99 1.00 -14532 SH2D3C SH2 domain containing 3C 573140 2 2 2 2 0 2 0 0 0 0 0.99 1.00 -14533 DLGAP4 discs, large (Drosophila) homolog-associated protein 4 687596 2 2 2 1 1 0 1 0 0 0 0.99 1.00 -14534 GTSE1 G-2 and S-phase expressed 1 473788 2 1 2 2 0 2 0 0 0 0 0.99 1.00 -14535 NLRP6 NLR family, pyrin domain containing 6 367156 1 1 1 0 0 1 0 0 0 0 0.99 1.00 -14536 EML3 echinoderm microtubule associated protein like 3 544684 1 1 1 0 0 1 0 0 0 0 0.99 1.00 -14537 IQSEC3 IQ motif and Sec7 domain 3 553924 2 2 2 3 2 0 0 0 0 0 0.99 1.00 -14538 MAN2B2 mannosidase, alpha, class 2B, member 2 659064 1 1 1 2 0 1 0 0 0 0 0.99 1.00 -14539 ZMIZ2 zinc finger, MIZ-type containing 2 586600 1 1 1 3 1 0 0 0 0 0 0.99 1.00 -14540 GMIP GEM interacting protein 591724 1 1 1 1 0 0 1 0 0 0 0.99 1.00 -14541 LRP1 low density lipoprotein-related protein 1 (alpha-2-macroglobulin receptor) 3090416 18 13 18 9 11 2 3 0 2 0 0.99 1.00 -14542 MYBPC2 myosin binding protein C, fast type 720008 4 3 4 3 2 2 0 0 0 0 0.99 1.00 -14543 WDR60 WD repeat domain 60 690896 1 1 1 1 1 0 0 0 0 0 0.99 1.00 -14544 HOOK2 hook homolog 2 (Drosophila) 456596 1 1 1 1 0 1 0 0 0 0 0.99 1.00 -14545 CEP250 centrosomal protein 250kDa 1651516 8 4 8 5 2 3 1 0 2 0 0.99 1.00 -14546 KIAA0317 KIAA0317 569856 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14547 PTPRB protein tyrosine phosphatase, receptor type, B 1511800 4 4 4 4 1 1 2 0 0 0 0.99 1.00 -14548 LMTK3 lemur tyrosine kinase 3 467896 1 1 1 0 0 1 0 0 0 0 0.99 1.00 -14549 EVPL envoplakin 1270796 5 5 5 3 0 3 1 1 0 0 0.99 1.00 -14550 SYNE2 spectrin repeat containing, nuclear envelope 2 4755296 24 11 23 10 6 12 2 0 2 2 0.99 1.00 -14551 ARHGAP32 1422032 5 5 4 3 5 0 0 0 0 0 0.99 1.00 -14552 PLCH2 phospholipase C, eta 2 610332 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14553 SEMA3F sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3F 522256 1 1 1 1 0 1 0 0 0 0 0.99 1.00 -14554 CCDC87 coiled-coil domain containing 87 506660 1 1 1 3 1 0 0 0 0 0 0.99 1.00 -14555 APP amyloid beta (A4) precursor protein (peptidase nexin-II, Alzheimer disease) 520576 1 1 1 2 1 0 0 0 0 0 0.99 1.00 -14556 DOPEY2 dopey family member 2 1546424 5 5 5 1 1 1 2 0 1 0 0.99 1.00 -14557 ANKRD11 ankyrin repeat domain 11 1603444 9 7 9 8 5 4 0 0 0 0 0.99 1.00 -14558 RRP12 ribosomal RNA processing 12 homolog (S. cerevisiae) 881636 1 1 1 1 0 0 0 0 1 0 0.99 1.00 -14559 RREB1 ras responsive element binding protein 1 969356 3 3 3 0 1 2 0 0 0 0 0.99 1.00 -14560 KIAA0664 KIAA0664 767756 4 2 4 2 3 0 0 0 1 0 0.99 1.00 -14561 CILP2 cartilage intermediate layer protein 2 596148 2 2 2 1 2 0 0 0 0 0 0.99 1.00 -14562 NUP210 nucleoporin 210kDa 1282536 4 4 4 4 2 0 2 0 0 0 0.99 1.00 -14563 PEX6 peroxisomal biogenesis factor 6 563128 1 1 1 1 1 0 0 0 0 0 0.99 1.00 -14564 SMCR8 Smith-Magenis syndrome chromosome region, candidate 8 632128 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14565 BAZ2B bromodomain adjacent to zinc finger domain, 2B 1487024 6 4 6 1 3 2 1 0 0 0 0.99 1.00 -14566 COL20A1 collagen, type XX, alpha 1 728404 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14567 RBM14 RNA binding motif protein 14 418572 1 1 1 2 1 0 0 0 0 0 0.99 1.00 -14568 MYO18A myosin XVIIIA 1339148 5 4 5 0 2 2 0 0 1 0 0.99 1.00 -14569 VAC14 Vac14 homolog (S. cerevisiae) 531968 1 1 1 0 0 1 0 0 0 0 0.99 1.00 -14570 MAML3 mastermind-like 3 (Drosophila) 709672 1 1 1 2 1 0 0 0 0 0 0.99 1.00 -14571 AZI1 5-azacytidine induced 1 593548 1 1 1 0 0 0 1 0 0 0 0.99 1.00 -14572 KIAA0430 KIAA0430 1195264 2 2 2 0 1 0 1 0 0 0 0.99 1.00 -14573 PER2 period homolog 2 (Drosophila) 839272 2 2 2 1 2 0 0 0 0 0 0.99 1.00 -14574 DENND2A DENN/MADD domain containing 2A 686148 1 1 1 6 1 0 0 0 0 0 0.99 1.00 -14575 EEF2K eukaryotic elongation factor-2 kinase 503104 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14576 GCN1L1 GCN1 general control of amino-acid synthesis 1-like 1 (yeast) 1839452 9 6 9 5 2 1 5 0 1 0 0.99 1.00 -14577 HDAC5 histone deacetylase 5 705068 2 2 1 2 2 0 0 0 0 0 0.99 1.00 -14578 TAOK2 TAO kinase 2 973420 3 3 3 3 2 0 1 0 0 0 0.99 1.00 -14579 XPO5 exportin 5 836800 1 1 1 3 0 0 0 0 1 0 0.99 1.00 -14580 WDR59 WD repeat domain 59 669928 1 1 1 3 1 0 0 0 0 0 0.99 1.00 -14581 ZSWIM4 zinc finger, SWIM-type containing 4 586432 2 2 2 0 1 1 0 0 0 0 0.99 1.00 -14582 PSD3 pleckstrin and Sec7 domain containing 3 724556 2 1 2 0 0 2 0 0 0 0 0.99 1.00 -14583 FUK fucokinase 642436 1 1 1 3 1 0 0 0 0 0 0.99 1.00 -14584 MYO1C myosin IC 676928 1 1 1 0 0 0 1 0 0 0 0.99 1.00 -14585 SUSD2 sushi domain containing 2 476672 1 1 1 1 1 0 0 0 0 0 0.99 1.00 -14586 COL6A2 collagen, type VI, alpha 2 540568 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14587 NEURL4 1026452 5 4 5 1 3 2 0 0 0 0 0.99 1.00 -14588 SEZ6 seizure related 6 homolog (mouse) 632496 1 1 1 2 0 1 0 0 0 0 0.99 1.00 -14589 RIN2 Ras and Rab interactor 2 597204 1 1 1 3 1 0 0 0 0 0 0.99 1.00 -14590 SNED1 sushi, nidogen and EGF-like domains 1 735240 3 3 3 3 1 2 0 0 0 0 0.99 1.00 -14591 ABTB2 ankyrin repeat and BTB (POZ) domain containing 2 554344 1 1 1 0 0 1 0 0 0 0 0.99 1.00 -14592 PLEKHM1 pleckstrin homology domain containing, family M (with RUN domain) member 1 714648 1 1 1 0 0 0 1 0 0 0 0.99 1.00 -14593 KIAA1549 1257120 10 5 10 6 6 3 1 0 0 0 0.99 1.00 -14594 SHANK2 SH3 and multiple ankyrin repeat domains 2 779048 2 2 2 2 1 0 1 0 0 0 0.99 1.00 -14595 SLC27A3 solute carrier family 27 (fatty acid transporter), member 3 448560 1 1 1 1 0 1 0 0 0 0 0.99 1.00 -14596 CORO7 coronin 7 561964 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14597 DIAPH1 diaphanous homolog 1 (Drosophila) 832560 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -14598 LTBP4 latent transforming growth factor beta binding protein 4 925208 3 3 3 0 0 1 2 0 0 0 0.99 1.00 -14599 INCENP inner centromere protein antigens 135/155kDa 567400 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14600 PAN2 PAN2 polyA specific ribonuclease subunit homolog (S. cerevisiae) 830368 1 1 1 3 0 1 0 0 0 0 1.00 1.00 -14601 TECPR2 924532 3 3 3 4 2 0 1 0 0 0 1.00 1.00 -14602 ARHGAP4 Rho GTPase activating protein 4 501568 1 1 1 0 0 1 0 0 0 0 1.00 1.00 -14603 MYO9B myosin IXB 1282144 3 3 3 0 0 1 1 0 1 0 1.00 1.00 -14604 SLC12A4 solute carrier family 12 (potassium/chloride transporters), member 4 726324 1 1 1 2 0 0 1 0 0 0 1.00 1.00 -14605 ARHGEF17 Rho guanine nucleotide exchange factor (GEF) 17 1076740 3 3 3 4 1 1 1 0 0 0 1.00 1.00 -14606 DPP9 dipeptidyl-peptidase 9 542068 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14607 PLEKHM2 pleckstrin homology domain containing, family M (with RUN domain) member 2 565068 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14608 SLC45A1 solute carrier family 45, member 1 458348 1 1 1 2 0 1 0 0 0 0 1.00 1.00 -14609 NLRC3 NLR family, CARD domain containing 3 574664 1 1 1 0 0 1 0 0 0 0 1.00 1.00 -14610 CACNA2D2 calcium channel, voltage-dependent, alpha 2/delta subunit 2 685656 1 1 1 3 0 1 0 0 0 0 1.00 1.00 -14611 RNF160 1216544 1 1 1 0 0 0 1 0 0 0 1.00 1.00 -14612 DOT1L DOT1-like, histone H3 methyltransferase (S. cerevisiae) 832300 3 2 3 0 2 0 0 0 1 0 1.00 1.00 -14613 RADIL 497000 1 1 1 2 0 0 1 0 0 0 1.00 1.00 -14614 NFATC1 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 1 468048 2 2 2 0 1 1 0 0 0 0 1.00 1.00 -14615 C12orf63 chromosome 12 open reading frame 63 828352 4 1 4 1 1 1 2 0 0 0 1.00 1.00 -14616 PPP1R13L protein phosphatase 1, regulatory (inhibitor) subunit 13 like 421228 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14617 BCL11B B-cell CLL/lymphoma 11B (zinc finger protein) 390672 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14618 FLNA filamin A, alpha (actin binding protein 280) 1612252 3 3 3 1 1 0 0 0 2 0 1.00 1.00 -14619 TOPBP1 topoisomerase (DNA) II binding protein 1 1043568 2 2 2 1 1 1 0 0 0 0 1.00 1.00 -14620 MEGF6 multiple EGF-like-domains 6 647976 2 2 2 0 1 1 0 0 0 0 1.00 1.00 -14621 SBF1 SET binding factor 1 1096032 3 3 3 0 2 0 0 0 1 0 1.00 1.00 -14622 ANO8 538452 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14623 ESYT1 772576 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14624 SPEG SPEG complex locus 1552216 6 6 5 3 4 1 1 0 0 0 1.00 1.00 -14625 FAM193A 838180 1 1 1 1 0 1 0 0 0 0 1.00 1.00 -14626 MICAL3 microtubule associated monoxygenase, calponin and LIM domain containing 3 1256812 3 3 3 3 1 2 0 0 0 0 1.00 1.00 -14627 QRICH2 glutamine rich 2 1132104 2 2 2 4 1 0 1 0 0 0 1.00 1.00 -14628 KIAA1161 KIAA1161 424664 1 1 1 2 1 0 0 0 0 0 1.00 1.00 -14629 ARHGAP39 527388 1 1 1 0 0 0 1 0 0 0 1.00 1.00 -14630 PLEKHG3 pleckstrin homology domain containing, family G (with RhoGef domain) member 3 671976 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14631 CARD14 caspase recruitment domain family, member 14 624904 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14632 TANC2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 1311664 5 4 5 6 1 4 0 0 0 0 1.00 1.00 -14633 LLGL1 lethal giant larvae homolog 1 (Drosophila) 660272 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14634 EHMT1 euchromatic histone-lysine N-methyltransferase 1 864956 2 2 2 2 1 0 1 0 0 0 1.00 1.00 -14635 CELSR3 cadherin, EGF LAG seven-pass G-type receptor 3 (flamingo homolog, Drosophila) 1839544 6 6 6 2 4 0 0 0 2 0 1.00 1.00 -14636 KDM6A 934388 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14637 TNK2 tyrosine kinase, non-receptor, 2 620856 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14638 PLEKHG2 pleckstrin homology domain containing, family G (with RhoGef domain) member 2 885744 2 2 2 0 1 1 0 0 0 0 1.00 1.00 -14639 KIAA1614 KIAA1614 723352 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14640 XAB2 XPA binding protein 2 559248 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14641 TECPR1 622832 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14642 ATP13A1 ATPase type 13A1 737464 2 1 2 2 1 1 0 0 0 0 1.00 1.00 -14643 TSC2 tuberous sclerosis 2 1020864 2 2 2 2 2 0 0 0 0 0 1.00 1.00 -14644 CSPG4 chondroitin sulfate proteoglycan 4 1081400 2 2 2 1 1 0 0 0 1 0 1.00 1.00 -14645 AP3D1 adaptor-related protein complex 3, delta 1 subunit 806664 1 1 1 3 0 1 0 0 0 0 1.00 1.00 -14646 KIAA0182 KIAA0182 648480 1 1 1 3 1 0 0 0 0 0 1.00 1.00 -14647 TJP3 tight junction protein 3 (zona occludens 3) 573580 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14648 TYK2 tyrosine kinase 2 738056 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14649 MYO7B myosin VIIB 1299200 3 3 3 2 2 0 0 0 1 0 1.00 1.00 -14650 CCDC88B coiled-coil domain containing 88B 699444 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14651 SHROOM2 shroom family member 2 921664 2 2 2 7 2 0 0 0 0 0 1.00 1.00 -14652 ITGB4 integrin, beta 4 1165792 3 3 3 0 2 0 0 1 0 0 1.00 1.00 -14653 ADCY6 adenylate cyclase 6 777876 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14654 PFAS phosphoribosylformylglycinamidine synthase (FGAR amidotransferase) 918036 1 1 1 1 0 1 0 0 0 0 1.00 1.00 -14655 DOCK6 dedicator of cytokinesis 6 1316812 6 4 6 2 4 2 0 0 0 0 1.00 1.00 -14656 NFRKB nuclear factor related to kappaB binding protein 912800 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14657 PER1 period homolog 1 (Drosophila) 843988 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14658 MUC5B mucin 5B, oligomeric mucus/gel-forming 3053544 10 9 10 10 1 4 2 0 3 0 1.00 1.00 -14659 RAB11FIP1 RAB11 family interacting protein 1 (class I) 814968 4 1 4 2 2 2 0 0 0 0 1.00 1.00 -14660 MST1R macrophage stimulating 1 receptor (c-met-related tyrosine kinase) 919700 1 1 1 2 1 0 0 0 0 0 1.00 1.00 -14661 APC2 adenomatosis polyposis coli 2 631548 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14662 PLXNB2 plexin B2 956700 2 2 2 1 1 0 0 0 1 0 1.00 1.00 -14663 POLRMT polymerase (RNA) mitochondrial (DNA directed) 588196 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14664 C1orf175 chromosome 1 open reading frame 175 909440 2 1 2 1 0 2 0 0 0 0 1.00 1.00 -14665 NCKAP5L 795280 1 1 1 2 0 1 0 0 0 0 1.00 1.00 -14666 CACNA1H calcium channel, voltage-dependent, T type, alpha 1H subunit 861420 2 2 2 0 1 1 0 0 0 0 1.00 1.00 -14667 PHRF1 821300 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14668 PLXNA1 plexin A1 1106060 2 2 2 2 1 0 0 0 1 0 1.00 1.00 -14669 NPHP4 nephronophthisis 4 956764 3 2 3 4 0 3 0 0 0 0 1.00 1.00 -14670 SLC38A10 solute carrier family 38, member 10 648428 1 1 1 1 0 1 0 0 0 0 1.00 1.00 -14671 MAP1A microtubule-associated protein 1A 1876812 7 4 7 4 1 5 1 0 0 0 1.00 1.00 -14672 ATP8B3 ATPase, class I, type 8B, member 3 786552 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14673 PPFIA3 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 3 772680 1 1 1 5 1 0 0 0 0 0 1.00 1.00 -14674 SSPO SCO-spondin homolog (Bos taurus) 2311368 6 6 6 1 1 3 1 0 1 0 1.00 1.00 -14675 ZNF646 zinc finger protein 646 1162672 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14676 HSPG2 heparan sulfate proteoglycan 2 2805720 9 8 9 4 5 3 0 0 1 0 1.00 1.00 -14677 NISCH nischarin 957796 1 1 1 4 1 0 0 0 0 0 1.00 1.00 -14678 NCOR2 nuclear receptor co-repressor 2 1389564 2 2 2 6 1 0 0 0 1 0 1.00 1.00 -14679 TNRC18 trinucleotide repeat containing 18 1109696 2 2 2 3 1 1 0 0 0 0 1.00 1.00 -14680 MYO5B myosin VB 1256136 2 1 2 4 0 2 0 0 0 0 1.00 1.00 -14681 AGRN agrin 847536 1 1 1 1 1 0 0 0 0 0 1.00 1.00 -14682 SPTBN5 spectrin, beta, non-erythrocytic 5 1737348 5 3 5 1 3 2 0 0 0 0 1.00 1.00 -14683 TUBGCP6 tubulin, gamma complex associated protein 6 1095448 1 1 1 4 0 1 0 0 0 0 1.00 1.00 -14684 FASN fatty acid synthase 1039472 1 1 1 0 1 0 0 0 0 0 1.00 1.00 -14685 PLEC 2169308 5 5 5 1 2 1 1 0 1 0 1.00 1.00 -14686 A1BG alpha-1-B glycoprotein 247152 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14687 AAMP angio-associated, migratory cell protein 291024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14688 AANAT arylalkylamine N-acetyltransferase 109704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14689 AATK apoptosis-associated tyrosine kinase 321788 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14690 ABCA2 ATP-binding cassette, sub-family A (ABC1), member 2 1129872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14691 ABCE1 ATP-binding cassette, sub-family E (OABP), member 1 418432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14692 ABHD1 abhydrolase domain containing 1 280896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14693 ABHD11 abhydrolase domain containing 11 210448 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14694 ABHD14A abhydrolase domain containing 14A 154172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14695 ABHD8 abhydrolase domain containing 8 241724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14696 ACADS acyl-Coenzyme A dehydrogenase, C-2 to C-3 short chain 262948 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14697 ACAP3 258244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14698 ACBD4 acyl-Coenzyme A binding domain containing 4 215152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14699 ACBD7 acyl-Coenzyme A binding domain containing 7 62048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14700 ACER3 173112 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14701 ACP6 acid phosphatase 6, lysophosphatidic 261016 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14702 ACPT acid phosphatase, testicular 249284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14703 ACSF2 acyl-CoA synthetase family member 2 408660 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14704 ACSF3 acyl-CoA synthetase family member 3 379428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14705 ACTC1 actin, alpha, cardiac muscle 1 251748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14706 ACTG1 actin, gamma 1 197428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14707 ACY3 aspartoacylase (aminocyclase) 3 181664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14708 ACYP2 acylphosphatase 2, muscle type 70784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14709 ADAL adenosine deaminase-like 187264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14710 ADAMTS7 ADAM metallopeptidase with thrombospondin type 1 motif, 7 818332 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14711 ADAP1 202332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14712 ADAT3 adenosine deaminase, tRNA-specific 3, TAD3 homolog (S. cerevisiae) 62720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14713 ADCK5 aarF domain containing kinase 5 248920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14714 ADIG adipogenin 56224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14715 ADM2 adrenomedullin 2 38780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14716 ADO 2-aminoethanethiol (cysteamine) dioxygenase 56652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14717 ADPGK ADP-dependent glucokinase 287168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14718 ADPRH ADP-ribosylarginine hydrolase 243264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14719 ADPRHL1 ADP-ribosylhydrolase like 1 237188 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14720 ADRA2C adrenergic, alpha-2C-, receptor 132664 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14721 ADRB2 adrenergic, beta-2-, receptor, surface 279104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14722 ADRM1 adhesion regulating molecule 1 221788 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14723 ADSSL1 adenylosuccinate synthase like 1 306504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14724 AEBP2 AE binding protein 2 198292 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14725 AEN 217316 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14726 AES amino-terminal enhancer of split 116420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14727 AGAP4 113244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14728 AGER advanced glycosylation end product-specific receptor 193088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14729 AGPAT2 1-acylglycerol-3-phosphate O-acyltransferase 2 (lysophosphatidic acid acyltransferase, beta) 152568 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14730 AGR2 anterior gradient homolog 2 (Xenopus laevis) 124544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14731 AGR3 anterior gradient homolog 3 (Xenopus laevis) 118496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14732 AGRP agouti related protein homolog (mouse) 92064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14733 AGTRAP angiotensin II receptor-associated protein 134624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14734 AGXT alanine-glyoxylate aminotransferase 229552 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14735 AHSA2 AHA1, activator of heat shock 90kDa protein ATPase homolog 2 (yeast) 96320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14736 AHSP 71008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14737 AIDA 215264 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14738 AIF1 allograft inflammatory factor 1 84336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14739 AIF1L 84224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14740 AIM1L absent in melanoma 1-like 397120 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14741 AIMP1 217952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14742 AK1 adenylate kinase 1 136416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14743 AK3L1 adenylate kinase 3-like 1 138852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14744 AKAP1 A kinase (PRKA) anchor protein 1 615944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14745 AKAP2 A kinase (PRKA) anchor protein 2 605808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14746 AKIRIN1 84000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14747 AKR1A1 aldo-keto reductase family 1, member A1 (aldehyde reductase) 226240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14748 AKR1B10 aldo-keto reductase family 1, member B10 (aldose reductase) 218856 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -14749 AKR1C1 aldo-keto reductase family 1, member C1 (dihydrodiol dehydrogenase 1; 20-alpha (3-alpha)-hydroxysteroid dehydrogenase) 206304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14750 AKR7A2 aldo-keto reductase family 7, member A2 (aflatoxin aldehyde reductase) 200424 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14751 AKR7A3 aldo-keto reductase family 7, member A3 (aflatoxin aldehyde reductase) 210000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14752 ALKBH1 alkB, alkylation repair homolog 1 (E. coli) 261240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14753 ALKBH3 alkB, alkylation repair homolog 3 (E. coli) 200928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14754 ALKBH4 alkB, alkylation repair homolog 4 (E. coli) 147924 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14755 ALOX15 arachidonate 15-lipoxygenase 410788 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14756 ALX3 aristaless-like homeobox 3 178220 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14757 AMAC1L2 acyl-malonyl condensing enzyme 1-like 2 228704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14758 AMDHD2 amidohydrolase domain containing 2 328932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14759 AMELY amelogenin, Y-linked 81340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14760 AMH anti-Mullerian hormone 127400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14761 AMIGO3 adhesion molecule with Ig-like domain 3 269108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14762 AMN amnionless homolog (mouse) 104776 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14763 AMOTL2 angiomotin like 2 505932 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14764 AMT aminomethyltransferase 285656 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14765 ANAPC11 APC11 anaphase promoting complex subunit 11 homolog (yeast) 97360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14766 ANAPC13 anaphase promoting complex subunit 13 52192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14767 ANAPC16 77280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14768 ANGPTL4 angiopoietin-like 4 216300 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14769 ANGPTL6 angiopoietin-like 6 212268 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14770 ANKHD1 ankyrin repeat and KH domain containing 1 1724952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14771 ANKRD20A1 ankyrin repeat domain 20 family, member A1 280692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14772 ANKRD22 ankyrin repeat domain 22 134400 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14773 ANKRD23 ankyrin repeat domain 23 183868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14774 ANKRD37 ankyrin repeat domain 37 111328 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14775 ANKRD54 ankyrin repeat domain 54 135072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14776 ANKRD57 ankyrin repeat domain 57 156576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14777 ANKS4B ankyrin repeat and sterile alpha motif domain containing 4B 282688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14778 ANO9 395124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14779 ANP32B acidic (leucine-rich) nuclear phosphoprotein 32 family, member B 150920 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14780 ANP32E acidic (leucine-rich) nuclear phosphoprotein 32 family, member E 180104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14781 ANXA8L2 annexin A8-like 2 75580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14782 ANXA9 annexin A9 243264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14783 AP1S3 adaptor-related protein complex 1, sigma 3 subunit 107072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14784 AP2S1 adaptor-related protein complex 2, sigma 1 subunit 99988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14785 AP4S1 adaptor-related protein complex 4, sigma 1 subunit 112000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14786 APBA3 amyloid beta (A4) precursor protein-binding, family A, member 3 (X11-like 2) 227844 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14787 APH1A anterior pharynx defective 1 homolog A (C. elegans) 187352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14788 APIP APAF1 interacting protein 169568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14789 APITD1 apoptosis-inducing, TAF9-like domain 1 136076 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14790 APLN apelin, AGTRL1 ligand 16768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14791 APOA4 apolipoprotein A-IV 90112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14792 APOBEC3B apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3B 264544 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14793 APOBEC3H apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3H 124544 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14794 APOC3 apolipoprotein C-III 27016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14795 APOC4 apolipoprotein C-IV 88704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14796 APOF apolipoprotein F 221536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14797 APOL4 apolipoprotein L, 4 248164 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14798 APOL6 apolipoprotein L, 6 232960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14799 APOO apolipoprotein O 139128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14800 APRT adenine phosphoribosyltransferase 72268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14801 APTX aprataxin 249088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14802 AREG amphiregulin (schwannoma-derived growth factor) 200128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14803 ARF1 ADP-ribosylation factor 1 125888 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14804 ARF3 ADP-ribosylation factor 3 125888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14805 ARF5 ADP-ribosylation factor 5 119224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14806 ARFRP1 ADP-ribosylation factor related protein 1 105616 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14807 ARHGAP1 Rho GTPase activating protein 1 292832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14808 ARHGDIA Rho GDP dissociation inhibitor (GDI) alpha 126700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14809 ARHGEF19 Rho guanine nucleotide exchange factor (GEF) 19 479616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14810 ARHGEF35 174516 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14811 ARL10 ADP-ribosylation factor-like 10 126336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14812 ARL14 ADP-ribosylation factor-like 14 130592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14813 ARL16 ADP-ribosylation factor-like 16 117460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14814 ARL4A ADP-ribosylation factor-like 4A 134288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14815 ARL4C ADP-ribosylation factor-like 4C 130592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14816 ARL5B ADP-ribosylation factor-like 5B 126336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14817 ARL6 ADP-ribosylation factor-like 6 131936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14818 ARL6IP1 ADP-ribosylation factor-like 6 interacting protein 1 142464 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14819 ARL6IP4 ADP-ribosylation-like factor 6 interacting protein 4 133060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14820 ARL9 ADP-ribosylation factor-like 9 86016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14821 ARMC6 armadillo repeat containing 6 326396 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14822 ARMC7 armadillo repeat containing 7 127764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14823 ARMCX6 armadillo repeat containing, X-linked 6 130088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14824 ARMS2 age-related maculopathy susceptibility 2 67424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14825 ARPC3 actin related protein 2/3 complex, subunit 3, 21kDa 126560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14826 ARPC4 actin related protein 2/3 complex, subunit 4, 20kDa 117376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14827 ARPP19 76188 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14828 ARR3 arrestin 3, retinal (X-arrestin) 262688 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14829 ARRB2 arrestin, beta 2 278152 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14830 ARTN artemin 62860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14831 ARVCF armadillo repeat gene deletes in velocardiofacial syndrome 441520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14832 ASB10 ankyrin repeat and SOCS box-containing 10 222488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14833 ASB11 ankyrin repeat and SOCS box-containing 11 251328 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14834 ASB13 ankyrin repeat and SOCS box-containing 13 151376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14835 ASCC1 activating signal cointegrator 1 complex subunit 1 248640 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14836 ASIP agouti signaling protein, nonagouti homolog (mouse) 68852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14837 ASNA1 arsA arsenite transporter, ATP-binding, homolog 1 (bacterial) 240800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14838 ASPN asporin 262304 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14839 ASRGL1 asparaginase like 1 213024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14840 ATF5 activating transcription factor 5 172928 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14841 ATG12 ATG12 autophagy related 12 homolog (S. cerevisiae) 98336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14842 ATG4B ATG4 autophagy related 4 homolog B (S. cerevisiae) 109824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14843 ATOH7 atonal homolog 7 (Drosophila) 68628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14844 ATOX1 ATX1 antioxidant protein 1 homolog (yeast) 48216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14845 ATP1B3 ATPase, Na+/K+ transporting, beta 3 polypeptide 194348 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14846 ATP5E ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit 35920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14847 ATP5G1 ATP synthase, H+ transporting, mitochondrial F0 complex, subunit C1 (subunit 9) 95648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14848 ATP5G2 ATP synthase, H+ transporting, mitochondrial F0 complex, subunit C2 (subunit 9) 137936 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14849 ATP5H ATP synthase, H+ transporting, mitochondrial F0 complex, subunit d 113344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14850 ATP5I ATP synthase, H+ transporting, mitochondrial F0 complex, subunit E 34972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14851 ATP5J ATP synthase, H+ transporting, mitochondrial F0 complex, subunit F6 79352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14852 ATP6V0E1 ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 57792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14853 ATP6V0E2 ATPase, H+ transporting V0 subunit e2 100692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14854 ATP6V1D ATPase, H+ transporting, lysosomal 34kDa, V1 subunit D 174720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14855 ATP6V1F ATPase, H+ transporting, lysosomal 14kDa, V1 subunit F 82432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14856 ATP6V1G1 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 56680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14857 ATPAF2 ATP synthase mitochondrial F1 complex assembly factor 2 201880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14858 ATPIF1 ATPase inhibitory factor 1 84336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14859 AURKAIP1 aurora kinase A interacting protein 1 43472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14860 AVP arginine vasopressin (neurophysin II, antidiuretic hormone, diabetes insipidus, neurohypophyseal) 45836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14861 AZU1 azurocidin 1 (cationic antimicrobial protein 37) 120120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14862 B3GALNT2 beta-1,3-N-acetylgalactosaminyltransferase 2 321440 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14863 B3GALT6 UDP-Gal:betaGal beta 1,3-galactosyltransferase polypeptide 6 63140 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14864 B3GAT2 beta-1,3-glucuronyltransferase 2 (glucuronosyltransferase S) 173768 0 0 0 4 0 0 0 0 0 0 1.00 1.00 -14865 B3GNT6 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6 (core 3 synthase) 151708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14866 B4GALNT3 beta-1,4-N-acetyl-galactosaminyl transferase 3 644648 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14867 B4GALT4 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 4 237216 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14868 B4GALT7 xylosylprotein beta 1,4-galactosyltransferase, polypeptide 7 (galactosyltransferase I) 210420 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14869 BAGE B melanoma antigen 19292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14870 BAGE4 B melanoma antigen family, member 4 19432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14871 BAGE5 B melanoma antigen family, member 5 19292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14872 BARX1 BARX homeobox 1 75428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14873 BASP1 brain abundant, membrane attached signal protein 1 104068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14874 BCAP31 B-cell receptor-associated protein 31 174496 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14875 BCAR1 breast cancer anti-estrogen resistance 1 471408 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14876 BCL2L10 BCL2-like 10 (apoptosis facilitator) 76160 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14877 BCL2L2 BCL2-like 2 132160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14878 BDH2 3-hydroxybutyrate dehydrogenase, type 2 173376 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14879 BDKRB1 bradykinin receptor B1 238784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14880 BET1L blocked early in transport 1 homolog (S. cerevisiae)-like 107604 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14881 BEX2 brain expressed X-linked 2 88704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14882 BEX4 BEX family member 4 80192 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14883 BHLHB9 basic helix-loop-helix domain containing, class B, 9 369152 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14884 BHLHE22 69244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14885 BHLHE40 275536 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14886 BIRC5 baculoviral IAP repeat-containing 5 (survivin) 138016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14887 BIRC7 baculoviral IAP repeat-containing 7 (livin) 164752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14888 BIVM basic, immunoglobulin-like variable motif containing 348992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14889 BLOC1S3 biogenesis of lysosome-related organelles complex-1, subunit 3 36680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14890 BMP8B bone morphogenetic protein 8b (osteogenic protein 2) 145628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14891 BNIP3 BCL2/adenovirus E1B 19kDa interacting protein 3 125216 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14892 BOLL bol, boule-like (Drosophila) 208768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14893 BPGM 2,3-bisphosphoglycerate mutase 176512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14894 BRCC3 BRCA1/BRCA2-containing complex, subunit 3 200848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14895 BRI3 brain protein I3 54656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14896 BRIX1 240456 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14897 BRMS1L breast cancer metastasis-suppressor 1-like 224784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14898 BSDC1 BSD domain containing 1 292696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14899 BSG basigin (Ok blood group) 169400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14900 BSPRY B-box and SPRY domain containing 227920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14901 BST1 bone marrow stromal cell antigen 1 179424 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14902 BTBD17 133756 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14903 BTBD2 BTB (POZ) domain containing 2 283236 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14904 BTBD6 BTB (POZ) domain containing 6 232848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14905 BTF3L4 basic transcription factor 3-like 4 111328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14906 BTG2 BTG family, member 2 95656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14907 BTNL9 butyrophilin-like 9 282128 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14908 BUD31 BUD31 homolog (S. cerevisiae) 101024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14909 BYSL bystin-like 298676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14910 C10orf10 chromosome 10 open reading frame 10 103208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14911 C10orf107 chromosome 10 open reading frame 107 145824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14912 C10orf111 chromosome 10 open reading frame 111 105728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14913 C10orf116 chromosome 10 open reading frame 116 43052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14914 C10orf125 chromosome 10 open reading frame 125 43556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14915 C10orf129 chromosome 10 open reading frame 129 134624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14916 C10orf53 chromosome 10 open reading frame 53 110584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14917 C10orf54 chromosome 10 open reading frame 54 211064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14918 C10orf57 chromosome 10 open reading frame 57 77936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14919 C10orf62 chromosome 10 open reading frame 62 144872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14920 C10orf67 chromosome 10 open reading frame 67 90984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14921 C10orf91 chromosome 10 open reading frame 91 89340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14922 C10orf99 chromosome 10 open reading frame 99 57792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14923 C11orf1 chromosome 11 open reading frame 1 95400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14924 C11orf20 57992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14925 C11orf31 chromosome 11 open reading frame 31 67936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14926 C11orf35 chromosome 11 open reading frame 35 221312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14927 C11orf42 chromosome 11 open reading frame 42 227136 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14928 C11orf45 chromosome 11 open reading frame 45 100800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14929 C11orf46 chromosome 11 open reading frame 46 178080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14930 C11orf48 chromosome 11 open reading frame 48 182784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14931 C11orf51 chromosome 11 open reading frame 51 85568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14932 C11orf52 chromosome 11 open reading frame 52 86912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14933 C11orf58 chromosome 11 open reading frame 58 128128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14934 C11orf59 chromosome 11 open reading frame 59 97824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14935 C11orf67 chromosome 11 open reading frame 67 85344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14936 C11orf68 chromosome 11 open reading frame 68 160300 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14937 C11orf70 chromosome 11 open reading frame 70 159936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14938 C11orf75 chromosome 11 open reading frame 75 41216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14939 C11orf83 62512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14940 C11orf84 256256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14941 C11orf88 119616 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -14942 C11orf94 54852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14943 C12orf10 chromosome 12 open reading frame 10 259616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14944 C12orf23 chromosome 12 open reading frame 23 80416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14945 C12orf34 chromosome 12 open reading frame 34 207816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14946 C12orf36 chromosome 12 open reading frame 36 95200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14947 C12orf43 chromosome 12 open reading frame 43 179012 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14948 C12orf44 chromosome 12 open reading frame 44 148960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14949 C12orf49 chromosome 12 open reading frame 49 138124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14950 C12orf5 chromosome 12 open reading frame 5 187488 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14951 C12orf60 chromosome 12 open reading frame 60 166208 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14952 C12orf61 chromosome 12 open reading frame 61 39116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14953 C12orf62 chromosome 12 open reading frame 62 39872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14954 C12orf64 chromosome 12 open reading frame 64 1523320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14955 C12orf65 chromosome 12 open reading frame 65 114016 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14956 C12orf72 179424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14957 C12orf74 132384 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14958 C12orf77 100128 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14959 C13orf15 chromosome 13 open reading frame 15 67424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14960 C13orf30 chromosome 13 open reading frame 30 96768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14961 C13orf35 chromosome 13 open reading frame 35 83776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14962 C13orf37 51744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14963 C14orf109 chromosome 14 open reading frame 109 114688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14964 C14orf115 chromosome 14 open reading frame 115 469532 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14965 C14orf119 chromosome 14 open reading frame 119 95648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14966 C14orf138 chromosome 14 open reading frame 138 156784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14967 C14orf142 chromosome 14 open reading frame 142 69664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14968 C14orf147 chromosome 14 open reading frame 147 40432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14969 C14orf149 chromosome 14 open reading frame 149 198492 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14970 C14orf156 chromosome 14 open reading frame 156 77504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14971 C14orf174 chromosome 14 open reading frame 174 456288 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14972 C14orf180 chromosome 14 open reading frame 180 49008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14973 C14orf181 chromosome 14 open reading frame 181 76328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14974 C14orf184 53888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14975 C14orf2 chromosome 14 open reading frame 2 42336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14976 C14orf4 chromosome 14 open reading frame 4 290836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14977 C14orf68 chromosome 14 open reading frame 68 185892 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14978 C14orf73 chromosome 14 open reading frame 73 269184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14979 C14orf79 chromosome 14 open reading frame 79 217840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14980 C15orf17 chromosome 15 open reading frame 17 111328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14981 C15orf38 chromosome 15 open reading frame 38 136416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14982 C15orf44 chromosome 15 open reading frame 44 358624 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14983 C15orf54 chromosome 15 open reading frame 54 124544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14984 C15orf63 90944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14985 C16orf11 chromosome 16 open reading frame 11 133196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14986 C16orf42 chromosome 16 open reading frame 42 119000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14987 C16orf5 chromosome 16 open reading frame 5 111628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14988 C16orf53 chromosome 16 open reading frame 53 120888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14989 C16orf55 chromosome 16 open reading frame 55 84476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14990 C16orf59 chromosome 16 open reading frame 59 194264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14991 C16orf61 chromosome 16 open reading frame 61 56448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14992 C16orf70 chromosome 16 open reading frame 70 289344 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14993 C16orf72 chromosome 16 open reading frame 72 137536 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14994 C16orf74 chromosome 16 open reading frame 74 18960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14995 C16orf75 chromosome 16 open reading frame 75 34272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14996 C16orf79 chromosome 16 open reading frame 79 152348 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14997 C16orf80 chromosome 16 open reading frame 80 135744 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14998 C16orf82 chromosome 16 open reading frame 82 95264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14999 C16orf86 chromosome 16 open reading frame 86 141876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15000 C16orf91 233672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15001 C16orf92 95200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15002 C17orf49 chromosome 17 open reading frame 49 108612 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15003 C17orf56 chromosome 17 open reading frame 56 292372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15004 C17orf58 chromosome 17 open reading frame 58 95648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15005 C17orf61 chromosome 17 open reading frame 61 79200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15006 C17orf64 chromosome 17 open reading frame 64 88256 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15007 C17orf65 chromosome 17 open reading frame 65 45668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15008 C17orf67 chromosome 17 open reading frame 67 79968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15009 C17orf68 chromosome 17 open reading frame 68 825232 0 0 0 6 0 0 0 0 0 0 1.00 1.00 -15010 C17orf70 chromosome 17 open reading frame 70 328608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15011 C17orf76 chromosome 17 open reading frame 76 91980 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15012 C17orf77 chromosome 17 open reading frame 77 164864 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15013 C17orf81 chromosome 17 open reading frame 81 243712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15014 C17orf82 chromosome 17 open reading frame 82 96516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15015 C17orf90 chromosome 17 open reading frame 90 83692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15016 C18orf22 chromosome 18 open reading frame 22 223832 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15017 C18orf56 chromosome 18 open reading frame 56 38920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15018 C19orf12 chromosome 19 open reading frame 12 99036 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15019 C19orf22 chromosome 19 open reading frame 22 154636 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15020 C19orf25 chromosome 19 open reading frame 25 35140 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15021 C19orf26 chromosome 19 open reading frame 26 214312 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15022 C19orf33 chromosome 19 open reading frame 33 59760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15023 C19orf35 chromosome 19 open reading frame 35 163908 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15024 C19orf36 chromosome 19 open reading frame 36 157556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15025 C19orf41 chromosome 19 open reading frame 41 147976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15026 C19orf42 chromosome 19 open reading frame 42 55468 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15027 C19orf45 chromosome 19 open reading frame 45 262192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15028 C19orf47 chromosome 19 open reading frame 47 243572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15029 C19orf48 chromosome 19 open reading frame 48 80108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15030 C19orf50 chromosome 19 open reading frame 50 122528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15031 C19orf51 chromosome 19 open reading frame 51 302428 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15032 C19orf52 chromosome 19 open reading frame 52 57680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15033 C19orf54 chromosome 19 open reading frame 54 139880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15034 C19orf56 chromosome 19 open reading frame 56 75488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15035 C19orf57 chromosome 19 open reading frame 57 406984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15036 C19orf59 chromosome 19 open reading frame 59 132608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15037 C19orf6 chromosome 19 open reading frame 6 197180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15038 C19orf60 chromosome 19 open reading frame 60 51044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15039 C19orf70 42644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15040 C1D 99008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15041 C1GALT1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase, 1 247296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15042 C1QA complement component 1, q subcomponent, A chain 163072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15043 C1QBP complement component 1, q subcomponent binding protein 142688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15044 C1QL1 complement component 1, q subcomponent-like 1 126756 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15045 C1QL3 complement component 1, q subcomponent-like 3 112928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15046 C1QTNF2 C1q and tumor necrosis factor related protein 2 206624 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15047 C1QTNF4 C1q and tumor necrosis factor related protein 4 96796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15048 C1QTNF5 C1q and tumor necrosis factor related protein 5 76244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15049 C1QTNF8 C1q and tumor necrosis factor related protein 8 92512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15050 C1QTNF9 C1q and tumor necrosis factor related protein 9 204288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15051 C1orf105 chromosome 1 open reading frame 105 129920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15052 C1orf109 chromosome 1 open reading frame 109 131600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15053 C1orf110 chromosome 1 open reading frame 110 206304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15054 C1orf122 chromosome 1 open reading frame 122 21728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15055 C1orf123 chromosome 1 open reading frame 123 114520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15056 C1orf151 chromosome 1 open reading frame 151 56672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15057 C1orf158 chromosome 1 open reading frame 158 134624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15058 C1orf159 chromosome 1 open reading frame 159 53012 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15059 C1orf163 chromosome 1 open reading frame 163 158172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15060 C1orf182 chromosome 1 open reading frame 182 87360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15061 C1orf21 chromosome 1 open reading frame 21 86464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15062 C1orf210 chromosome 1 open reading frame 210 78400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15063 C1orf213 chromosome 1 open reading frame 213 106092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15064 C1orf216 chromosome 1 open reading frame 216 155456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15065 C1orf31 chromosome 1 open reading frame 31 87360 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15066 C1orf53 chromosome 1 open reading frame 53 79772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15067 C1orf54 chromosome 1 open reading frame 54 93184 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15068 C1orf56 chromosome 1 open reading frame 56 219352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15069 C1orf63 chromosome 1 open reading frame 63 182168 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15070 C1orf64 chromosome 1 open reading frame 64 115612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15071 C1orf83 chromosome 1 open reading frame 83 144032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15072 C1orf84 chromosome 1 open reading frame 84 108388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15073 C1orf86 chromosome 1 open reading frame 86 75320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15074 C1orf91 chromosome 1 open reading frame 91 98140 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15075 C1orf95 chromosome 1 open reading frame 95 74544 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15076 C20orf108 chromosome 20 open reading frame 108 89824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15077 C20orf11 chromosome 20 open reading frame 11 155120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15078 C20orf118 chromosome 20 open reading frame 118 150528 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15079 C20orf134 chromosome 20 open reading frame 134 98392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15080 C20orf135 chromosome 20 open reading frame 135 103800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15081 C20orf144 chromosome 20 open reading frame 144 35800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15082 C20orf166 chromosome 20 open reading frame 166 63196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15083 C20orf20 chromosome 20 open reading frame 20 106092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15084 C20orf24 chromosome 20 open reading frame 24 111928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15085 C20orf27 chromosome 20 open reading frame 27 138880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15086 C20orf29 chromosome 20 open reading frame 29 133672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15087 C20orf70 chromosome 20 open reading frame 70 174272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15088 C21orf2 chromosome 21 open reading frame 2 126504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15089 C21orf33 chromosome 21 open reading frame 33 172956 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15090 C21orf45 chromosome 21 open reading frame 45 127820 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15091 C21orf56 chromosome 21 open reading frame 56 83888 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15092 C21orf57 chromosome 21 open reading frame 57 96320 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15093 C21orf58 chromosome 21 open reading frame 58 136560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15094 C21orf59 chromosome 21 open reading frame 59 181272 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15095 C21orf7 chromosome 21 open reading frame 7 129696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15096 C22orf13 chromosome 22 open reading frame 13 159164 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15097 C22orf15 chromosome 22 open reading frame 15 39368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15098 C22orf32 chromosome 22 open reading frame 32 69328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15099 C22orf36 chromosome 22 open reading frame 36 158004 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15100 C22orf39 chromosome 22 open reading frame 39 34160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15101 C2CD4A 69076 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15102 C2orf47 chromosome 2 open reading frame 47 200032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15103 C2orf48 chromosome 2 open reading frame 48 103572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15104 C2orf54 chromosome 2 open reading frame 54 210324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15105 C2orf61 chromosome 2 open reading frame 61 124096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15106 C2orf64 chromosome 2 open reading frame 64 44436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15107 C2orf68 87612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15108 C2orf73 159664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15109 C2orf76 89824 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15110 C2orf83 86912 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15111 C3orf10 chromosome 3 open reading frame 10 53760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15112 C3orf17 chromosome 3 open reading frame 17 389760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15113 C3orf18 chromosome 3 open reading frame 18 107988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15114 C3orf21 chromosome 3 open reading frame 21 179032 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15115 C3orf37 chromosome 3 open reading frame 37 243936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15116 C3orf52 chromosome 3 open reading frame 52 109400 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15117 C3orf55 chromosome 3 open reading frame 55 77160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15118 C3orf57 chromosome 3 open reading frame 57 52640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15119 C3orf62 chromosome 3 open reading frame 62 181608 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15120 C3orf71 126364 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15121 C4BPB complement component 4 binding protein, beta 175392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15122 C4orf23 chromosome 4 open reading frame 23 253064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15123 C4orf3 49056 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15124 C4orf32 chromosome 4 open reading frame 32 56000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15125 C4orf33 chromosome 4 open reading frame 33 138880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15126 C4orf34 chromosome 4 open reading frame 34 70784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15127 C4orf36 chromosome 4 open reading frame 36 81984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15128 C4orf44 83020 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15129 C4orf46 72280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15130 C4orf49 158312 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15131 C4orf50 192416 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15132 C4orf51 141792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15133 C5orf20 chromosome 5 open reading frame 20 165536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15134 C5orf24 chromosome 5 open reading frame 24 127568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15135 C5orf32 chromosome 5 open reading frame 32 67648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15136 C5orf33 chromosome 5 open reading frame 33 235504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15137 C5orf39 chromosome 5 open reading frame 39 129416 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15138 C5orf44 286688 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15139 C5orf46 61280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15140 C5orf55 72968 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15141 C6orf1 chromosome 6 open reading frame 1 101388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15142 C6orf108 chromosome 6 open reading frame 108 92288 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15143 C6orf120 chromosome 6 open reading frame 120 103012 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15144 C6orf126 chromosome 6 open reading frame 126 49216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15145 C6orf130 chromosome 6 open reading frame 130 107296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15146 C6orf134 chromosome 6 open reading frame 134 168336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15147 C6orf145 chromosome 6 open reading frame 145 111804 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15148 C6orf154 chromosome 6 open reading frame 154 174272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15149 C6orf182 chromosome 6 open reading frame 182 318752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15150 C6orf191 chromosome 6 open reading frame 191 91168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15151 C6orf195 chromosome 6 open reading frame 195 84896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15152 C6orf201 chromosome 6 open reading frame 201 98336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15153 C6orf223 chromosome 6 open reading frame 223 114348 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15154 C6orf225 56224 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15155 C6orf226 60368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15156 C6orf57 chromosome 6 open reading frame 57 75664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15157 C6orf72 chromosome 6 open reading frame 72 203084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15158 C7orf28A chromosome 7 open reading frame 28A 273728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15159 C7orf36 chromosome 7 open reading frame 36 155232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15160 C7orf44 chromosome 7 open reading frame 44 103264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15161 C7orf45 chromosome 7 open reading frame 45 167328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15162 C7orf52 chromosome 7 open reading frame 52 198492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15163 C7orf55 chromosome 7 open reading frame 55 78400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15164 C7orf60 273952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15165 C7orf61 141792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15166 C7orf68 43904 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15167 C7orf69 60256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15168 C8G complement component 8, gamma polypeptide 119092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15169 C8orf33 chromosome 8 open reading frame 33 159040 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15170 C8orf38 chromosome 8 open reading frame 38 187488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15171 C8orf44 chromosome 8 open reading frame 44 102900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15172 C8orf58 chromosome 8 open reading frame 58 172144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15173 C8orf59 chromosome 8 open reading frame 59 69216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15174 C8orf73 chromosome 8 open reading frame 73 258988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15175 C8orf76 chromosome 8 open reading frame 76 246176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15176 C9orf116 chromosome 9 open reading frame 116 82404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15177 C9orf123 chromosome 9 open reading frame 123 77728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15178 C9orf139 chromosome 9 open reading frame 139 90748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15179 C9orf140 chromosome 9 open reading frame 140 82628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15180 C9orf142 chromosome 9 open reading frame 142 85540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15181 C9orf153 chromosome 9 open reading frame 153 71232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15182 C9orf16 chromosome 9 open reading frame 16 40000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15183 C9orf163 chromosome 9 open reading frame 163 97356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15184 C9orf167 chromosome 9 open reading frame 167 79716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15185 C9orf170 83776 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15186 C9orf172 177044 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15187 C9orf173 157996 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15188 C9orf40 chromosome 9 open reading frame 40 65352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15189 C9orf46 chromosome 9 open reading frame 46 103040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15190 C9orf6 chromosome 9 open reading frame 6 127680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15191 C9orf66 chromosome 9 open reading frame 66 109732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15192 C9orf69 chromosome 9 open reading frame 69 40740 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15193 C9orf71 chromosome 9 open reading frame 71 116704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15194 C9orf78 chromosome 9 open reading frame 78 202944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15195 C9orf89 chromosome 9 open reading frame 89 114096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15196 C9orf91 chromosome 9 open reading frame 91 237664 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15197 CA12 carbonic anhydrase XII 238628 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15198 CA5B carbonic anhydrase VB, mitochondrial 214936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15199 CA7 carbonic anhydrase VII 174496 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15200 CAB39 calcium binding protein 39 236992 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15201 CABC1 chaperone, ABC1 activity of bc1 complex homolog (S. pombe) 404936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15202 CABLES2 Cdk5 and Abl enzyme substrate 2 248444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15203 CABP7 calcium binding protein 7 125440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15204 CALB1 calbindin 1, 28kDa 185920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15205 CALHM2 189028 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15206 CALM1 calmodulin 1 (phosphorylase kinase, delta) 105224 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15207 CALM2 calmodulin 2 (phosphorylase kinase, delta) 106176 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15208 CALM3 calmodulin 3 (phosphorylase kinase, delta) 104608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15209 CALML3 calmodulin-like 3 101612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15210 CALML6 calmodulin-like 6 121288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15211 CALY calcyon neuron-specific vesicular protein 62788 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15212 CAMK2N1 calcium/calmodulin-dependent protein kinase II inhibitor 1 33460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15213 CAMK2N2 calcium/calmodulin-dependent protein kinase II inhibitor 2 35812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15214 CAMLG calcium modulating ligand 203168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15215 CAMP cathelicidin antimicrobial peptide 118496 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15216 CANT1 calcium activated nucleotidase 1 258276 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15217 CAPS calcyphosine 117908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15218 CARHSP1 calcium regulated heat stable protein 1, 24kDa 94920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15219 CARNS1 348500 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15220 CASKIN1 CASK interacting protein 1 523060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15221 CASKIN2 CASK interacting protein 2 592100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15222 CBFA2T3 core-binding factor, runt domain, alpha subunit 2; translocated to, 3 238412 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15223 CBLC Cas-Br-M (murine) ecotropic retroviral transforming sequence c 283612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15224 CBLN2 cerebellin 2 precursor 115584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15225 CBR1 carbonyl reductase 1 168784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15226 CBR3 carbonyl reductase 3 160608 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15227 CBWD1 COBW domain containing 1 245084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15228 CBWD2 COBW domain containing 2 240688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15229 CBWD6 COBW domain containing 6 110740 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15230 CBX1 chromobox homolog 1 (HP1 beta homolog Drosophila ) 128576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15231 CBX4 chromobox homolog 4 (Pc class homolog, Drosophila) 286524 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15232 CBX6 chromobox homolog 6 164192 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15233 CCDC107 coiled-coil domain containing 107 167264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15234 CCDC122 coiled-coil domain containing 122 188608 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15235 CCDC124 coiled-coil domain containing 124 85232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15236 CCDC153 87136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15237 CCDC43 coiled-coil domain containing 43 149100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15238 CCDC48 coiled-coil domain containing 48 114688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15239 CCDC56 coiled-coil domain containing 56 73696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15240 CCDC72 coiled-coil domain containing 72 32816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15241 CCDC78 coiled-coil domain containing 78 193200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15242 CCDC84 coiled-coil domain containing 84 209112 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15243 CCDC85A coiled-coil domain containing 85A 314440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15244 CCDC89 coiled-coil domain containing 89 252896 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15245 CCDC94 coiled-coil domain containing 94 199684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15246 CCL1 chemokine (C-C motif) ligand 1 67872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15247 CCL11 chemokine (C-C motif) ligand 11 68544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15248 CCL14 chemokine (C-C motif) ligand 14 65856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15249 CCL16 chemokine (C-C motif) ligand 16 84000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15250 CCL17 chemokine (C-C motif) ligand 17 66528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15251 CCL19 chemokine (C-C motif) ligand 19 70112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15252 CCL2 chemokine (C-C motif) ligand 2 69888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15253 CCL20 chemokine (C-C motif) ligand 20 68768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15254 CCL21 chemokine (C-C motif) ligand 21 94304 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15255 CCL24 chemokine (C-C motif) ligand 24 83328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15256 CCL25 chemokine (C-C motif) ligand 25 93544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15257 CCL26 chemokine (C-C motif) ligand 26 64080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15258 CCL28 chemokine (C-C motif) ligand 28 88704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15259 CCL3 chemokine (C-C motif) ligand 3 65184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15260 CCL4 chemokine (C-C motif) ligand 4 65184 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15261 CCL5 chemokine (C-C motif) ligand 5 64512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15262 CCND1 cyclin D1 195452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15263 CCNG2 cyclin G2 238112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15264 CCNI2 cyclin I family, member 2 163744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15265 CCNJ cyclin J 257376 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15266 CCNK cyclin K 285728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15267 CCNO cyclin O 145360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15268 CCR10 chemokine (C-C motif) receptor 10 125692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15269 CCR2 chemokine (C-C motif) receptor 2 169592 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15270 CCRL2 chemokine (C-C motif) receptor-like 2 165208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15271 CCT7 chaperonin containing TCP1, subunit 7 (eta) 375312 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15272 CD164 CD164 molecule, sialomucin 117624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15273 CD276 CD276 molecule 363132 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15274 CD302 CD302 molecule 146048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15275 CD3E CD3e molecule, epsilon (CD3-TCR complex) 146944 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15276 CD48 CD48 molecule 167552 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15277 CD59 CD59 molecule, complement regulatory protein 89376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15278 CD68 CD68 molecule 243528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15279 CD81 CD81 molecule 135800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15280 CD82 CD82 molecule 186592 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15281 CD86 CD86 molecule 228032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15282 CD8A CD8a molecule 117852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15283 CDC26 cell division cycle 26 homolog (S. cerevisiae) 59584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15284 CDC34 cell division cycle 34 homolog (S. cerevisiae) 134620 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15285 CDC37L1 cell division cycle 37 homolog (S. cerevisiae)-like 1 233408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15286 CDC42EP2 CDC42 effector protein (Rho GTPase binding) 2 138824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15287 CDC42SE1 CDC42 small effector 1 56448 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15288 CDC42SE2 CDC42 small effector 2 59808 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15289 CDIPT CDP-diacylglycerol--inositol 3-phosphatidyltransferase (phosphatidylinositol synthase) 132320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15290 CDK10 cyclin-dependent kinase 10 234840 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15291 CDK2AP1 CDK2-associated protein 1 68320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15292 CDK2AP2 CDK2-associated protein 2 52624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15293 CDK5 cyclin-dependent kinase 5 200540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15294 CDK5R2 cyclin-dependent kinase 5, regulatory subunit 2 (p39) 143276 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15295 CDKN2A cyclin-dependent kinase inhibitor 2A (melanoma, p16, inhibits CDK4) 103152 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15296 CDKN2AIPNL CDKN2A interacting protein N-terminal like 68656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15297 CDKN2B cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4) 40104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15298 CDKN2D cyclin-dependent kinase inhibitor 2D (p19, inhibits CDK4) 94556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15299 CDKN3 cyclin-dependent kinase inhibitor 3 (CDK2-associated dual specificity phosphatase) 148536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15300 CDRT4 CMT1A duplicated region transcript 4 103936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15301 CDT1 chromatin licensing and DNA replication factor 1 228508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15302 CDV3 CDV3 homolog (mouse) 133672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15303 CDX1 caudal type homeobox 1 80864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15304 CDX4 caudal type homeobox 4 184380 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15305 CEACAM6 carcinoembryonic antigen-related cell adhesion molecule 6 (non-specific cross reacting antigen) 236320 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15306 CEBPB CCAAT/enhancer binding protein (C/EBP), beta 71232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15307 CEBPD CCAAT/enhancer binding protein (C/EBP), delta 58212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15308 CEBPG CCAAT/enhancer binding protein (C/EBP), gamma 102368 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15309 CECR6 cat eye syndrome chromosome region, candidate 6 127848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15310 CELA2A 188608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15311 CELA3B 185872 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15312 CELF5 294756 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15313 CEMP1 cementum protein 1 147224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15314 CEND1 cell cycle exit and neuronal differentiation 1 90272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15315 CENPBD1 90228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15316 CENPH centromere protein H 158536 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15317 CENPQ centromere protein Q 187936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15318 CENPT centromere protein T 375732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15319 CENPW 62496 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15320 CES8 324152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15321 CETN2 centrin, EF-hand protein, 2 119784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15322 CETN3 centrin, EF-hand protein, 3 (CDC31 homolog, yeast) 117376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15323 CFD complement factor D (adipsin) 66700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15324 CFHR1 complement factor H-related 1 211316 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15325 CFHR3 complement factor H-related 3 227808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15326 CFL2 cofilin 2 (muscle) 115808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15327 CGB1 chorionic gonadotropin, beta polypeptide 1 74480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15328 CGB5 chorionic gonadotropin, beta polypeptide 5 55860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15329 CGB7 chorionic gonadotropin, beta polypeptide 7 86044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15330 CGB8 chorionic gonadotropin, beta polypeptide 8 60396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15331 CGREF1 cell growth regulator with EF-hand domain 1 212800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15332 CGRRF1 cell growth regulator with ring finger domain 1 229152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15333 CHCHD1 coiled-coil-helix-coiled-coil-helix domain containing 1 80472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15334 CHCHD7 coiled-coil-helix-coiled-coil-helix domain containing 7 80416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15335 CHCHD8 coiled-coil-helix-coiled-coil-helix domain containing 8 60032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15336 CHKB choline kinase beta 223804 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15337 CHMP1B chromatin modifying protein 1B 134708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15338 CHMP4A chromatin modifying protein 4A 184128 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15339 CHMP6 chromatin modifying protein 6 92576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15340 CHP 137984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15341 CHRAC1 chromatin accessibility complex 1 85672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15342 CHRNA10 cholinergic receptor, nicotinic, alpha 10 247044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15343 CHRNB4 cholinergic receptor, nicotinic, beta 4 331096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15344 CHST3 carbohydrate (chondroitin 6) sulfotransferase 3 163832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15345 CHST6 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 6 172900 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15346 CHST7 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 7 129608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15347 CHTF18 CTF18, chromosome transmission fidelity factor 18 homolog (S. cerevisiae) 334692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15348 CHTF8 84672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15349 CHURC1 churchill domain containing 1 80192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15350 CIAO1 cytosolic iron-sulfur protein assembly 1 homolog (S. cerevisiae) 214900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15351 CIAPIN1 cytokine induced apoptosis inhibitor 1 217504 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15352 CIB1 calcium and integrin binding 1 (calmyrin) 114136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15353 CIDEA cell death-inducing DFFA-like effector a 168616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15354 CIDEB cell death-inducing DFFA-like effector b 152320 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15355 CIDEC cell death-inducing DFFA-like effector c 143600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15356 CISD1 CDGSH iron sulfur domain 1 75936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15357 CISD2 CDGSH iron sulfur domain 2 93316 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15358 CISH cytokine inducible SH2-containing protein 160440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15359 CITED1 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1 122432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15360 CKB creatine kinase, brain 175644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15361 CKLF chemokine-like factor 109312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15362 CKMT1A creatine kinase, mitochondrial 1A 116172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15363 CLCF1 cardiotrophin-like cytokine factor 1 140084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15364 CLDN1 claudin 1 146048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15365 CLDN14 claudin 14 129752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15366 CLDN20 claudin 20 143948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15367 CLDN22 claudin 22 149408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15368 CLDN23 claudin 23 72380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15369 CLDN3 claudin 3 110040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15370 CLDN4 claudin 4 142016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15371 CLDN5 claudin 5 (transmembrane protein deleted in velocardiofacial syndrome) 91968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15372 CLEC11A C-type lectin domain family 11, member A 142392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15373 CLEC17A 205632 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15374 CLEC18A 124040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15375 CLEC2L C-type lectin domain family 2, member L 87808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15376 CLEC3B C-type lectin domain family 3, member B 130548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15377 CLEC4G C-type lectin superfamily 4, member G 166460 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15378 CLIC1 chloride intracellular channel 1 141120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15379 CLIC3 chloride intracellular channel 3 85968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15380 CLK2 CDC-like kinase 2 346080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15381 CLLU1 chronic lymphocytic leukemia up-regulated 1 82880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15382 CLLU1OS chronic lymphocytic leukemia up-regulated 1 opposite strand 71232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15383 CLTB clathrin, light chain (Lcb) 143892 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15384 CMA1 chymase 1, mast cell 171136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15385 CMBL carboxymethylenebutenolidase homolog (Pseudomonas) 169792 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15386 CMTM3 CKLF-like MARVEL transmembrane domain containing 3 93632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15387 CMTM6 CKLF-like MARVEL transmembrane domain containing 6 111412 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15388 CMTM7 CKLF-like MARVEL transmembrane domain containing 7 86240 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15389 CMTM8 CKLF-like MARVEL transmembrane domain containing 8 106584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15390 CNBP CCHC-type zinc finger, nucleic acid binding protein 124544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15391 CNFN cornifelin 65268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15392 CNIH2 cornichon homolog 2 (Drosophila) 97640 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15393 CNIH4 cornichon homolog 4 (Drosophila) 98560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15394 CNN3 calponin 3, acidic 228032 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15395 CNO cappuccino homolog (mouse) 55692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15396 CNP 2',3'-cyclic nucleotide 3' phosphodiesterase 283752 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15397 CNPY3 canopy 3 homolog (zebrafish) 162896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15398 CNR2 cannabinoid receptor 2 (macrophage) 243068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15399 CNTD2 cyclin N-terminal domain containing 2 63700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15400 COIL coilin 389816 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15401 COL10A1 collagen, type X, alpha 1(Schmid metaphyseal chondrodysplasia) 453880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15402 COL6A1 collagen, type VI, alpha 1 462708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15403 COL9A3 collagen, type IX, alpha 3 387716 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15404 COLQ collagen-like tail subunit (single strand of homotrimer) of asymmetric acetylcholinesterase 328704 0 0 0 4 0 0 0 0 0 0 1.00 1.00 -15405 COMMD3 COMM domain containing 3 107544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15406 COMMD6 COMM domain containing 6 71008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15407 COMMD7 COMM domain containing 7 123424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15408 COMT catechol-O-methyltransferase 164968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15409 COMTD1 catechol-O-methyltransferase domain containing 1 49460 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15410 COPG2 coatomer protein complex, subunit gamma 2 266104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15411 COPZ1 coatomer protein complex, subunit zeta 1 127408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15412 COPZ2 coatomer protein complex, subunit zeta 2 116752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15413 COQ3 coenzyme Q3 homolog, methyltransferase (S. cerevisiae) 254912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15414 COQ4 coenzyme Q4 homolog (S. cerevisiae) 164164 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15415 COQ5 coenzyme Q5 homolog, methyltransferase (S. cerevisiae) 224504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15416 CORO1B coronin, actin binding protein, 1B 261056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15417 CORO1C coronin, actin binding protein, 1C 328160 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15418 CORT cortistatin 96880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15419 COTL1 coactosin-like 1 (Dictyostelium) 73840 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15420 COX19 COX19 cytochrome c oxidase assembly homolog (S. cerevisiae) 56616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15421 COX4NB COX4 neighbor 139056 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15422 COX5A cytochrome c oxidase subunit Va 81760 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15423 COX5B cytochrome c oxidase subunit Vb 71288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15424 COX6A1 cytochrome c oxidase subunit VIa polypeptide 1 76608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15425 COX6B1 cytochrome c oxidase subunit Vib polypeptide 1 (ubiquitous) 61152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15426 COX6B2 cytochrome c oxidase subunit VIb polypeptide 2 (testis) 58552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15427 COX7A2 cytochrome c oxidase subunit VIIa polypeptide 2 (liver) 62272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15428 COX7A2L cytochrome c oxidase subunit VIIa polypeptide 2 like 79968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15429 COX7B cytochrome c oxidase subunit VIIb 39984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15430 COX7C cytochrome c oxidase subunit VIIc 44800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15431 COX8A cytochrome c oxidase subunit 8A (ubiquitous) 48696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15432 CPA2 carboxypeptidase A2 (pancreatic) 292096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15433 CPLX1 complexin 1 83476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15434 CPLX2 complexin 2 82936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15435 CPNE7 copine VII 316876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15436 CPSF3L cleavage and polyadenylation specific factor 3-like 302932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15437 CPT1C carnitine palmitoyltransferase 1C 550072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15438 CRABP1 cellular retinoic acid binding protein 1 85616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15439 CRABP2 cellular retinoic acid binding protein 2 96992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15440 CRB2 crumbs homolog 2 (Drosophila) 567720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15441 CRB3 crumbs homolog 3 (Drosophila) 90524 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15442 CRCP 105504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15443 CRCT1 cysteine-rich C-terminal 1 45332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15444 CREG1 cellular repressor of E1A-stimulated genes 1 71904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15445 CRH corticotropin releasing hormone 57556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15446 CRIP1 cysteine-rich protein 1 (intestinal) 43120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15447 CRIP2 cysteine-rich protein 2 64092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15448 CRIP3 cysteine-rich protein 3 144928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15449 CRIPAK cysteine-rich PAK1 inhibitor 249144 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15450 CRIPT cysteine-rich PDZ-binding protein 70304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15451 CRISP2 cysteine-rich secretory protein 2 170240 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15452 CRK v-crk sarcoma virus CT10 oncogene homolog (avian) 189840 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15453 CRLS1 cardiolipin synthase 1 142688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15454 CROCC ciliary rootlet coiled-coil, rootletin 684972 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15455 CRP C-reactive protein, pentraxin-related 152992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15456 CRYAA crystallin, alpha A 117768 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15457 CRYBA1 crystallin, beta A1 150528 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15458 CRYBA2 crystallin, beta A2 121856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15459 CRYBB2 crystallin, beta B2 142912 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15460 CRYGA crystallin, gamma A 120288 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15461 CRYGD crystallin, gamma D 107240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15462 CRYM crystallin, mu 203616 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15463 CRYZ crystallin, zeta (quinone reductase) 228928 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15464 CRYZL1 crystallin, zeta (quinone reductase)-like 1 245952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15465 CS citrate synthase 323680 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15466 CSAG1 chondrosarcoma associated gene 1 55776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15467 CSDC2 cold shock domain containing C2, RNA binding 80904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15468 CSF2 colony stimulating factor 2 (granulocyte-macrophage) 90524 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15469 CSF3 colony stimulating factor 3 (granulocyte) 136232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15470 CSGALNACT1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 364448 0 0 0 4 0 0 0 0 0 0 1.00 1.00 -15471 CSH2 chorionic somatomammotropin hormone 2 128660 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15472 CSHL1 chorionic somatomammotropin hormone-like 1 154336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15473 CSN1S1 casein alpha s1 123336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15474 CSNK1E casein kinase 1, epsilon 243208 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15475 CSNK1G2 casein kinase 1, gamma 2 203840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15476 CSRP3 cysteine and glycine-rich protein 3 (cardiac LIM protein) 135520 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15477 CST11 cystatin 11 96096 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15478 CST2 cystatin SA 98112 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15479 CST3 cystatin C 56000 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15480 CSTB cystatin B (stefin B) 53536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15481 CSTF2 cleavage stimulation factor, 3' pre-RNA, subunit 2, 64kDa 400064 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15482 CTAG2 cancer/testis antigen 2 148288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15483 CTDSP2 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 2 189952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15484 CTGF connective tissue growth factor 176408 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15485 CTRB1 chymotrypsinogen B1 59056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15486 CTRB2 chymotrypsinogen B2 67084 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15487 CTSK cathepsin K 228032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15488 CTU2 265860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15489 CTXN1 cortexin 1 28700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15490 CUEDC1 CUE domain containing 1 230272 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15491 CUTA cutA divalent cation tolerance homolog (E. coli) 144984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15492 CWC25 284216 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15493 CXCL1 chemokine (C-X-C motif) ligand 1 (melanoma growth stimulating activity, alpha) 65324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15494 CXCL13 chemokine (C-X-C motif) ligand 13 (B-cell chemoattractant) 77504 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15495 CXCL2 chemokine (C-X-C motif) ligand 2 54124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15496 CXCL3 chemokine (C-X-C motif) ligand 3 56472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15497 CXCR3 chemokine (C-X-C motif) receptor 3 256452 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15498 CXCR6 chemokine (C-X-C motif) receptor 6 231392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15499 CXorf26 chromosome X open reading frame 26 158000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15500 CXorf27 chromosome X open reading frame 27 80056 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15501 CXorf38 chromosome X open reading frame 38 200032 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15502 CXorf40A chromosome X open reading frame 40A 108640 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15503 CXorf40B chromosome X open reading frame 40B 108640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15504 CXorf41 chromosome X open reading frame 41 149856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15505 CXorf48 chromosome X open reading frame 48 123872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15506 CXorf56 chromosome X open reading frame 56 156128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15507 CYB561 cytochrome b-561 172220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15508 CYB561D2 cytochrome b-561 domain containing 2 152124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15509 CYB5B cytochrome b5 type B (outer mitochondrial membrane) 105952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15510 CYB5D2 cytochrome b5 domain containing 2 180572 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15511 CYBA cytochrome b-245, alpha polypeptide 64464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15512 CYCS cytochrome c, somatic 73024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15513 CYHR1 cysteine/histidine-rich 1 96460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15514 CYP26C1 cytochrome P450, family 26, subfamily C, polypeptide 1 128552 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15515 CYP2B6 cytochrome P450, family 2, subfamily B, polypeptide 6 338688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15516 CYP2D6 cytochrome P450, family 2, subfamily D, polypeptide 6 312984 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15517 CYP4X1 cytochrome P450, family 4, subfamily X, polypeptide 1 353472 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15518 CYS1 cystin 1 37408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15519 CYTH4 277088 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15520 CYYR1 cysteine/tyrosine-rich 1 107156 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15521 CYorf15A chromosome Y open reading frame 15A 57120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15522 CYorf15B chromosome Y open reading frame 15B 78540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15523 D2HGDH D-2-hydroxyglutarate dehydrogenase 116584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15524 DAND5 DAN domain family, member 5 129472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15525 DAP3 death associated protein 3 278880 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15526 DAPK2 death-associated protein kinase 2 256040 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15527 DAPL1 death associated protein-like 1 67728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15528 DAZAP2 DAZ associated protein 2 135296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15529 DBI diazepam binding inhibitor (GABA receptor modulator, acyl-Coenzyme A binding protein) 82880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15530 DBNDD2 dysbindin (dystrobrevin binding protein 1) domain containing 2 96472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15531 DBT dihydrolipoamide branched chain transacylase E2 334432 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15532 DCAF16 146720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15533 DCI dodecenoyl-Coenzyme A delta isomerase (3,2 trans-enoyl-Coenzyme A isomerase) 136976 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15534 DCTN5 dynactin 5 (p25) 128352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15535 DCTN6 dynactin 6 134624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15536 DCUN1D5 DCN1, defective in cullin neddylation 1, domain containing 5 (S. cerevisiae) 167104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15537 DCXR dicarbonyl/L-xylulose reductase 125720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15538 DDAH1 dimethylarginine dimethylaminohydrolase 1 159460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15539 DDAH2 dimethylarginine dimethylaminohydrolase 2 123480 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15540 DDIT3 DNA-damage-inducible transcript 3 116032 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15541 DDIT4 DNA-damage-inducible transcript 4 153664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15542 DDN dendrin 366576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15543 DDTL D-dopachrome tautomerase-like 28000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15544 DDX39 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39 296576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15545 DDX3Y DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked 287000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15546 DDX51 DEAD (Asp-Glu-Ala-Asp) box polypeptide 51 299768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15547 DEDD2 death effector domain containing 2 187992 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15548 DEFA1 defensin, alpha 1 50456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15549 DEFA1B 50456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15550 DEFA3 defensin, alpha 3, neutrophil-specific 50456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15551 DEFA4 defensin, alpha 4, corticostatin 67648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15552 DEFA5 defensin, alpha 5, Paneth cell-specific 65632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15553 DEFA6 defensin, alpha 6, Paneth cell-specific 69664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15554 DEFB1 defensin, beta 1 48160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15555 DEFB104A defensin, beta 104A 54488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15556 DEFB104B defensin, beta 104B 54488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15557 DEFB106A defensin, beta 106A 77644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15558 DEFB106B defensin, beta 106B 77644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15559 DEFB108B defensin, beta 108B 51520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15560 DEFB110 defensin, beta 110 78176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15561 DEFB115 defensin, beta 115 61600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15562 DEFB118 defensin, beta 118 85120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15563 DEFB121 defensin, beta 121 53536 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15564 DEFB123 defensin, beta 123 47488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15565 DEFB124 defensin, beta 124 50176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15566 DEFB131 defensin, beta 131 49504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15567 DEFB132 66052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15568 DEFB4A 13888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15569 DEGS2 degenerative spermatocyte homolog 2, lipid desaturase (Drosophila) 138264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15570 DERL1 Der1-like domain family, member 1 176512 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15571 DERL3 Der1-like domain family, member 3 141764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15572 DEXI 52304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15573 DGCR6 DiGeorge syndrome critical region gene 6 120708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15574 DGCR6L DiGeorge syndrome critical region gene 6-like 126084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15575 DGKQ diacylglycerol kinase, theta 110kDa 336556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15576 DGUOK deoxyguanosine kinase 193088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15577 DHDPSL 226688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15578 DHRS11 147840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15579 DHRS13 dehydrogenase/reductase (SDR family) member 13 212768 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15580 DHRS4 dehydrogenase/reductase (SDR family) member 4 194656 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15581 DHRS4L2 dehydrogenase/reductase (SDR family) member 4 like 2 160672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15582 DHRS7 dehydrogenase/reductase (SDR family) member 7 234416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15583 DHRS7B dehydrogenase/reductase (SDR family) member 7B 222080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15584 DHX34 DEAH (Asp-Glu-Ala-His) box polypeptide 34 696528 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15585 DIMT1L DIM1 dimethyladenosine transferase 1-like (S. cerevisiae) 214788 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15586 DIRAS1 DIRAS family, GTP-binding RAS-like 1 110768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15587 DKFZp761E198 267540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15588 DKKL1 dickkopf-like 1 (soggy) 167776 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15589 DLEU7 deleted in lymphocytic leukemia, 7 28532 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15590 DLX1 distal-less homeobox 1 174720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15591 DLX6 distal-less homeobox 6 131128 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15592 DMAP1 DNA methyltransferase 1 associated protein 1 323456 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15593 DMPK dystrophia myotonica-protein kinase 375812 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15594 DNAH17 dynein, axonemal, heavy chain 17 2982940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15595 DNAJB1 DnaJ (Hsp40) homolog, subfamily B, member 1 216132 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15596 DNAJB2 DnaJ (Hsp40) homolog, subfamily B, member 2 213780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15597 DNAJB6 DnaJ (Hsp40) homolog, subfamily B, member 6 182784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15598 DNAJC12 DnaJ (Hsp40) homolog, subfamily C, member 12 144256 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15599 DNAJC15 DnaJ (Hsp40) homolog, subfamily C, member 15 106712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15600 DNAJC25-GNG10 29120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15601 DNAJC4 DnaJ (Hsp40) homolog, subfamily C, member 4 142688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15602 DNAJC5 DnaJ (Hsp40) homolog, subfamily C, member 5 137312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15603 DNAL1 dynein, axonemal, light chain 1 114168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15604 DNAL4 dynein, axonemal, light chain 4 69976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15605 DNASE1 deoxyribonuclease I 197344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15606 DNASE1L1 deoxyribonuclease I-like 1 207516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15607 DNASE1L2 deoxyribonuclease I-like 2 97944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15608 DNASE2 deoxyribonuclease II, lysosomal 234984 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15609 DNASE2B deoxyribonuclease II beta 232736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15610 DND1 dead end homolog 1 (zebrafish) 165032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15611 DNLZ DNL-type zinc finger 66192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15612 DOK3 docking protein 3 286164 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15613 DOLPP1 dolichyl pyrophosphate phosphatase 1 161056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15614 DOM3Z dom-3 homolog Z (C. elegans) 226548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15615 DPF1 D4, zinc and double PHD fingers family 1 242204 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15616 DPM2 dolichyl-phosphate mannosyltransferase polypeptide 2, regulatory subunit 60704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15617 DPM3 dolichyl-phosphate mannosyltransferase polypeptide 3 81928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15618 DPPA5 developmental pluripotency associated 5 81312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15619 DPRX divergent-paired related homeobox 131712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15620 DR1 down-regulator of transcription 1, TBP-binding (negative cofactor 2) 121632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15621 DRAM1 148520 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15622 DRAP1 DR1-associated protein 1 (negative cofactor 2 alpha) 127924 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15623 DRD4 dopamine receptor D4 75880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15624 DSCR6 Down syndrome critical region gene 6 107744 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15625 DULLARD dullard homolog (Xenopus laevis) 165676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15626 DUPD1 dual specificity phosphatase and pro isomerase domain containing 1 151116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15627 DUS1L dihydrouridine synthase 1-like (S. cerevisiae) 272888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15628 DUS2L dihydrouridine synthase 2-like, SMM1 homolog (S. cerevisiae) 341460 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15629 DUSP12 dual specificity phosphatase 12 229904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15630 DUSP14 dual specificity phosphatase 14 131264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15631 DUSP2 dual specificity phosphatase 2 125812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15632 DUSP21 dual specificity phosphatase 21 129248 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15633 DUSP23 dual specificity phosphatase 23 42560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15634 DUSP28 dual specificity phosphatase 28 42168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15635 DUSP8 dual specificity phosphatase 8 165396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15636 DUT deoxyuridine triphosphatase 113540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15637 DVL1 dishevelled, dsh homolog 1 (Drosophila) 159048 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15638 DYNLL1 dynein, light chain, LC8-type 1 62272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15639 DYNLL2 dynein, light chain, LC8-type 2 62272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15640 DYNLT1 dynein, light chain, Tctex-type 1 81088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15641 DYNLT3 dynein, light chain, Tctex-type 3 75488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15642 E2F1 E2F transcription factor 1 239068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15643 E2F6 E2F transcription factor 6 186544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15644 E4F1 E4F transcription factor 1 341572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15645 EAF2 ELL associated factor 2 180768 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15646 EARS2 glutamyl-tRNA synthetase 2, mitochondrial (putative) 345660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15647 EBPL emopamil binding protein-like 105728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15648 ECEL1 endothelin converting enzyme-like 1 404300 0 0 0 4 0 0 0 0 0 0 1.00 1.00 -15649 ECHDC3 enoyl Coenzyme A hydratase domain containing 3 163400 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15650 ECSCR 43440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15651 EDC3 enhancer of mRNA decapping 3 homolog (S. cerevisiae) 347424 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15652 EDDM3B 100352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15653 EDF1 endothelial differentiation-related factor 1 105476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15654 EDN2 endothelin 2 104516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15655 EEF1D eukaryotic translation elongation factor 1 delta (guanine nucleotide exchange protein) 327992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15656 EEF1E1 eukaryotic translation elongation factor 1 epsilon 1 121184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15657 EFNA1 ephrin-A1 142912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15658 EFNA2 ephrin-A2 88424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15659 EFS embryonal Fyn-associated substrate 342952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15660 EFTUD1 elongation factor Tu GTP binding domain containing 1 770336 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15661 EGFL7 EGF-like-domain, multiple 7 90900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15662 EGR4 early growth response 4 245480 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15663 EHF ets homologous factor 209440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15664 EID1 EP300 interacting inhibitor of differentiation 1 127232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15665 EID2B EP300 interacting inhibitor of differentiation 2B 94640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15666 EIF1 eukaryotic translation initiation factor 1 80192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15667 EIF1AD eukaryotic translation initiation factor 1A domain containing 116032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15668 EIF1AX eukaryotic translation initiation factor 1A, X-linked 100992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15669 EIF1AY eukaryotic translation initiation factor 1A, Y-linked 61040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15670 EIF1B eukaryotic translation initiation factor 1B 80192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15671 EIF2B4 eukaryotic translation initiation factor 2B, subunit 4 delta, 67kDa 361168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15672 EIF2S1 eukaryotic translation initiation factor 2, subunit 1 alpha, 35kDa 218624 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15673 EIF3G eukaryotic translation initiation factor 3, subunit G 225568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15674 EIF3K eukaryotic translation initiation factor 3, subunit K 154336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15675 EIF4A1 eukaryotic translation initiation factor 4A, isoform 1 283360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15676 EIF4A3 eukaryotic translation initiation factor 4A, isoform 3 283668 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15677 EIF4E eukaryotic translation initiation factor 4E 158136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15678 EIF4E3 eukaryotic translation initiation factor 4E family member 3 81656 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15679 EIF4EBP1 eukaryotic translation initiation factor 4E binding protein 1 49280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15680 EIF4EBP3 eukaryotic translation initiation factor 4E binding protein 3 55568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15681 EIF4H eukaryotic translation initiation factor 4H 171752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15682 EIF5AL1 eukaryotic translation initiation factor 5A-like 1 30904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15683 ELK1 ELK1, member of ETS oncogene family 195672 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15684 ELOF1 elongation factor 1 homolog (S. cerevisiae) 59136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15685 ELOVL3 elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 3 185696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15686 EMD emerin (Emery-Dreifuss muscular dystrophy) 140588 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15687 EME2 essential meiotic endonuclease 1 homolog 2 (S. pombe) 170800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15688 EMID2 EMI domain containing 2 247456 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15689 EMP1 epithelial membrane protein 1 109760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15690 EMP2 epithelial membrane protein 2 116480 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15691 EMP3 epithelial membrane protein 3 113792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15692 ENDOG endonuclease G 77856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15693 ENGASE 462448 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15694 ENHO 52640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15695 ENO1 enolase 1, (alpha) 302176 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15696 ENTPD2 ectonucleoside triphosphate diphosphohydrolase 2 241416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15697 ENTPD8 ectonucleoside triphosphate diphosphohydrolase 8 289492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15698 EPB49 erythrocyte membrane protein band 4.9 (dematin) 274508 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15699 EPGN epithelial mitogen homolog (mouse) 93632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15700 EPM2A epilepsy, progressive myoclonus type 2A, Lafora disease (laforin) 165984 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15701 EPO erythropoietin 129808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15702 EPOR erythropoietin receptor 294344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15703 EPPK1 epiplakin 1 1064840 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15704 ERCC8 excision repair cross-complementing rodent repair deficiency, complementation group 8 277536 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15705 ERGIC1 endoplasmic reticulum-golgi intermediate compartment (ERGIC) 1 199136 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15706 ERGIC2 ERGIC and golgi 2 265664 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15707 ERH enhancer of rudimentary homolog (Drosophila) 74144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15708 ERLIN1 ER lipid raft associated 1 222488 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15709 ERN1 endoplasmic reticulum to nucleus signaling 1 626764 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15710 ERP29 endoplasmic reticulum protein 29 178752 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15711 ERV3 endogenous retroviral sequence 3 (includes zinc finger protein H-plk/HPF9) 364752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15712 ESPN espin 261196 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15713 ESPNL espin-like 310168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15714 ETHE1 ethylmalonic encephalopathy 1 158592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15715 ETV2 ets variant gene 2 169492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15716 ETV7 ets variant gene 7 (TEL2 oncogene) 232096 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15717 EVI5L ecotropic viral integration site 5-like 348656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15718 EVX1 even-skipped homeobox 1 157976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15719 EWSR1 Ewing sarcoma breakpoint region 1 482944 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15720 EXOC3 exocyst complex component 3 489756 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15721 EXOSC1 exosome component 1 135436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15722 EXOSC3 exosome component 3 188784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15723 EXOSC4 exosome component 4 148120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15724 EXOSC7 exosome component 7 198268 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15725 EXOSC8 exosome component 8 195864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15726 EXT2 exostoses (multiple) 2 515116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15727 EYA3 eyes absent homolog 3 (Drosophila) 400960 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15728 F2RL3 coagulation factor II (thrombin) receptor-like 3 164312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15729 FABP12 98336 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15730 FABP9 fatty acid binding protein 9, testis 92960 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15731 FADD Fas (TNFRSF6)-associated via death domain 117376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15732 FADS1 fatty acid desaturase 1 279160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15733 FAHD1 fumarylacetoacetate hydrolase domain containing 1 128296 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15734 FAHD2A fumarylacetoacetate hydrolase domain containing 2A 217952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15735 FAHD2B fumarylacetoacetate hydrolase domain containing 2B 217952 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15736 FAM100A family with sequence similarity 100, member A 77168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15737 FAM100B family with sequence similarity 100, member B 61276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15738 FAM101A family with sequence similarity 101, member A 83944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15739 FAM102B family with sequence similarity 102, member B 233856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15740 FAM103A1 family with sequence similarity 103, member A1 81172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15741 FAM108A1 family with sequence similarity 108, member A1 140840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15742 FAM110A family with sequence similarity 110, member A 104636 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15743 FAM110C family with sequence similarity 110, member C 106512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15744 FAM113A family with sequence similarity 113, member A 309856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15745 FAM115A family with sequence similarity 115, member A 222516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15746 FAM116B family with sequence similarity 116, member B 225660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15747 FAM119B family with sequence similarity 119, member B 187264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15748 FAM122A family with sequence similarity 122A 180068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15749 FAM122C family with sequence similarity 122C 113568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15750 FAM125A family with sequence similarity 125, member A 174048 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15751 FAM128A family with sequence similarity 128, member A 36288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15752 FAM132A family with sequence similarity 132, member A 95340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15753 FAM133B family with sequence similarity 133, member B 129744 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15754 FAM136A family with sequence similarity 136, member A 96096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15755 FAM150A family with sequence similarity 150, member A 47488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15756 FAM150B family with sequence similarity 150, member B 49728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15757 FAM153C family with sequence similarity 153, member C 49224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15758 FAM159A 123704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15759 FAM160B2 452132 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15760 FAM165B 41440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15761 FAM166A 206276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15762 FAM168A 163968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15763 FAM168B 120280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15764 FAM173A 44240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15765 FAM174B 56260 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15766 FAM176B 56084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15767 FAM177B 110432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15768 FAM18A family with sequence similarity 18, member A 140284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15769 FAM18B family with sequence similarity 18, member B 143072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15770 FAM18B2 family with sequence similarity 18, member B2 180776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15771 FAM195A 45528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15772 FAM19A3 family with sequence similarity 19 (chemokine (C-C motif)-like), member A3 117824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15773 FAM19A4 family with sequence similarity 19 (chemokine (C-C motif)-like), member A4 99232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15774 FAM19A5 family with sequence similarity 19 (chemokine (C-C motif)-like), member A5 73416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15775 FAM20C family with sequence similarity 20, member C 53380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15776 FAM21A family with sequence similarity 21, member A 280592 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15777 FAM22D family with sequence similarity 22, member D 147848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15778 FAM24B family with sequence similarity 24, member B 65632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15779 FAM26D family with sequence similarity 26, member D 87584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15780 FAM32A family with sequence similarity 32, member A 57352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15781 FAM36A family with sequence similarity 36, member A 73248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15782 FAM3A family with sequence similarity 3, member A 133384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15783 FAM3C family with sequence similarity 3, member C 161280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15784 FAM3D family with sequence similarity 3, member D 159264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15785 FAM43A family with sequence similarity 43, member A 136596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15786 FAM43B family with sequence similarity 43, member B 68908 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15787 FAM48B1 family with sequence similarity 48, member B1 512528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15788 FAM48B2 family with sequence similarity 48, member B2 468344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15789 FAM50A family with sequence similarity 50, member A 213824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15790 FAM53B family with sequence similarity 53, member B 237748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15791 FAM72A family with sequence similarity 72, member A 69440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15792 FAM72B family with sequence similarity 72, member B 98588 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15793 FAM75A3 family with sequence similarity 75, member A3 312808 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15794 FAM76B family with sequence similarity 76, member B 237440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15795 FAM78B family with sequence similarity 78, member B 177856 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15796 FAM83F family with sequence similarity 83, member F 206668 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15797 FAM84B family with sequence similarity 84, member B 139104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15798 FAM86B1 family with sequence similarity 86, member B1 84208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15799 FAM86C family with sequence similarity 86, member C 110404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15800 FAM89A family with sequence similarity 89, member A 60032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15801 FAM96B family with sequence similarity 96, member B 89852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15802 FANCE Fanconi anemia, complementation group E 309596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15803 FANCL Fanconi anemia, complementation group L 268576 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15804 FASTK Fas-activated serine/threonine kinase 291788 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15805 FBP1 fructose-1,6-bisphosphatase 1 234080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15806 FBRS fibrosin 191284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15807 FBXL15 F-box and leucine-rich repeat protein 15 73844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15808 FBXL16 F-box and leucine-rich repeat protein 16 212828 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15809 FBXL22 F-box and leucine-rich repeat protein 22 116620 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15810 FBXL6 F-box and leucine-rich repeat protein 6 242396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15811 FBXL8 F-box and leucine-rich repeat protein 8 105112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15812 FBXO17 F-box protein 17 124852 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15813 FBXO2 F-box protein 2 151476 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15814 FBXO28 F-box protein 28 218024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15815 FBXO33 F-box protein 33 297640 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15816 FBXO41 F-box protein 41 353268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15817 FBXO8 F-box protein 8 219520 0 0 0 4 0 0 0 0 0 0 1.00 1.00 -15818 FBXW5 F-box and WD repeat domain containing 5 270740 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15819 FBXW9 F-box and WD repeat domain containing 9 266524 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15820 FCER1G Fc fragment of IgE, high affinity I, receptor for; gamma polypeptide 62944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15821 FCGR1B Fc fragment of IgG, high affinity Ib, receptor (CD64) 155204 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15822 FCGR2B Fc fragment of IgG, low affinity IIb, receptor (CD32) 170340 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15823 FCGR3B Fc fragment of IgG, low affinity IIIb, receptor (CD16b) 153244 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15824 FCGRT Fc fragment of IgG, receptor, transporter, alpha 238836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15825 FDPS farnesyl diphosphate synthase (farnesyl pyrophosphate synthetase, dimethylallyltranstransferase, geranyltranstransferase) 291064 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15826 FDX1 ferredoxin 1 85568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15827 FDX1L ferredoxin 1-like 113540 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15828 FEM1B fem-1 homolog b (C. elegans) 420448 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15829 FEM1C fem-1 homolog c (C. elegans) 417088 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15830 FES feline sarcoma oncogene 509484 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15831 FEV FEV (ETS oncogene family) 78552 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15832 FFAR1 free fatty acid receptor 1 128972 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15833 FGF10 fibroblast growth factor 10 143136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15834 FGF16 fibroblast growth factor 16 80416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15835 FGF18 fibroblast growth factor 18 140000 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15836 FGF2 fibroblast growth factor 2 (basic) 98168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15837 FGF22 fibroblast growth factor 22 43092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15838 FGF4 fibroblast growth factor 4 (heparin secretory transforming protein 1, Kaposi sarcoma oncogene) 63588 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15839 FGFBP2 fibroblast growth factor binding protein 2 151424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15840 FGFBP3 fibroblast growth factor binding protein 3 58664 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15841 FGFRL1 fibroblast growth factor receptor-like 1 176624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15842 FGL2 fibrinogen-like 2 297472 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15843 FIBIN 143360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15844 FIBP fibroblast growth factor (acidic) intracellular binding protein 238056 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15845 FIGLA folliculogenesis specific basic helix-loop-helix 95872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15846 FITM1 186788 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15847 FITM2 174004 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15848 FJX1 four jointed box 1 (Drosophila) 93384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15849 FKBP1A FK506 binding protein 1A, 12kDa 56000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15850 FKBP1B FK506 binding protein 1B, 12.6 kDa 77728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15851 FKBP2 FK506 binding protein 2, 13kDa 100576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15852 FKBP4 FK506 binding protein 4, 59kDa 308924 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15853 FLJ10357 966800 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15854 FLJ35220 158988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15855 FLJ37543 81536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15856 FLJ46321 1059520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15857 FLOT2 flotillin 2 297756 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15858 FLYWCH1 FLYWCH-type zinc finger 1 327328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15859 FLYWCH2 FLYWCH family member 2 91168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15860 FN3K fructosamine 3 kinase 181216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15861 FNDC5 fibronectin type III domain containing 5 98560 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15862 FOLR2 folate receptor 2 (fetal) 175364 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15863 FOSL1 FOS-like antigen 1 162940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15864 FOXB1 forkhead box B1 168308 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15865 FOXB2 forkhead box B2 165300 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15866 FOXC2 forkhead box C2 (MFH-1, mesenchyme forkhead 1) 158452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15867 FOXD1 forkhead box D1 91284 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15868 FOXD2 forkhead box D2 95508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15869 FOXD3 forkhead box D3 99876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15870 FOXD4L3 forkhead box D4-like 3 124968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15871 FOXE1 forkhead box E1 (thyroid transcription factor 2) 66360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15872 FOXE3 forkhead box E3 57232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15873 FOXJ1 forkhead box J1 136884 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15874 FOXL2 forkhead box L2 106260 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15875 FPGS folylpolyglutamate synthase 339808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15876 FRG1 FSHD region gene 1 170436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15877 FRG2B FSHD region gene 2 family, member B 151956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15878 FRG2C FSHD region gene 2 family, member C 193760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15879 FSCN1 fascin homolog 1, actin-bundling protein (Strongylocentrotus purpuratus) 262388 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15880 FSCN2 fascin homolog 2, actin-bundling protein, retinal (Strongylocentrotus purpuratus) 111104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15881 FSTL3 follistatin-like 3 (secreted glycoprotein) 80192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15882 FTH1 ferritin, heavy polypeptide 1 117320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15883 FTL ferritin, light polypeptide 121856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15884 FTSJ1 FtsJ homolog 1 (E. coli) 231616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15885 FUCA2 fucosidase, alpha-L- 2, plasma 293528 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15886 FUS fusion (involved in t(12;16) in malignant liposarcoma) 364184 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15887 FUT4 fucosyltransferase 4 (alpha (1,3) fucosyltransferase, myeloid-specific) 173404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15888 FUT5 fucosyltransferase 5 (alpha (1,3) fucosyltransferase) 189392 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15889 FUT7 fucosyltransferase 7 (alpha (1,3) fucosyltransferase) 102340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15890 FUZ fuzzy homolog (Drosophila) 206916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15891 FXC1 fracture callus 1 homolog (rat) 72492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15892 FXYD1 FXYD domain containing ion transport regulator 1 (phospholemman) 67872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15893 FXYD2 FXYD domain containing ion transport regulator 2 40332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15894 FXYD3 FXYD domain containing ion transport regulator 3 87360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15895 FXYD7 FXYD domain containing ion transport regulator 7 51968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15896 FZD5 frizzled homolog 5 (Drosophila) 317996 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15897 FZD9 frizzled homolog 9 (Drosophila) 297668 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15898 FZR1 fizzy/cell division cycle 20 related 1 (Drosophila) 251476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15899 G0S2 G0/G1switch 2 64232 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15900 GAA glucosidase, alpha; acid (Pompe disease, glycogen storage disease type II) 601604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15901 GABARAP GABA(A) receptor-associated protein 82880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15902 GABARAPL1 GABA(A) receptor-associated protein like 1 76352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15903 GABARAPL2 GABA(A) receptor-associated protein-like 2 79688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15904 GABRD gamma-aminobutyric acid (GABA) A receptor, delta 238128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15905 GADD45A growth arrest and DNA-damage-inducible, alpha 108668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15906 GADD45B growth arrest and DNA-damage-inducible, beta 109844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15907 GADD45G growth arrest and DNA-damage-inducible, gamma 93432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15908 GADD45GIP1 growth arrest and DNA-damage-inducible, gamma interacting protein 1 116228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15909 GADL1 glutamate decarboxylase-like 1 238336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15910 GAGE1 G antigen 1 31080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15911 GAL galanin prepropeptide 80668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15912 GAL3ST3 galactose-3-O-sulfotransferase 3 128632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15913 GALK1 galactokinase 1 194824 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15914 GALNT4 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 4 (GalNAc-T4) 387632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15915 GALP galanin-like peptide 83104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15916 GALR2 galanin receptor 2 170604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15917 GALR3 galanin receptor 3 117656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15918 GAPDH glyceraldehyde-3-phosphate dehydrogenase 214228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15919 GAPDHS glyceraldehyde-3-phosphate dehydrogenase, spermatogenic 284116 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15920 GAS2L1 growth arrest-specific 2 like 1 293104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15921 GATA5 GATA binding protein 5 128692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15922 GATAD1 GATA zinc finger domain containing 1 129248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15923 GATC glutamyl-tRNA(Gln) amidotransferase, subunit C homolog (bacterial) 95648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15924 GATSL3 175392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15925 GBA glucosidase, beta; acid (includes glucosylceramidase) 370720 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15926 GBGT1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 237112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15927 GCA grancalcin, EF-hand calcium binding protein 153664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15928 GCH1 GTP cyclohydrolase 1 (dopa-responsive dystonia) 162512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15929 GCSH glycine cleavage system protein H (aminomethyl carrier) 87360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15930 GDA guanine deaminase 318304 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15931 GDE1 glycerophosphodiester phosphodiesterase 1 204148 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15932 GDF7 growth differentiation factor 7 121716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15933 GDPD1 glycerophosphodiester phosphodiesterase domain containing 1 222880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15934 GEMIN7 gem (nuclear organelle) associated protein 7 79940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15935 GET4 189168 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15936 GFER growth factor, augmenter of liver regeneration (ERV1 homolog, S. cerevisiae) 63028 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15937 GGT6 gamma-glutamyltransferase 6 254468 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15938 GGTLC2 gamma-glutamyltransferase light chain 2 125832 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15939 GHRH growth hormone releasing hormone 76832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15940 GINS1 GINS complex subunit 1 (Psf1 homolog) 138656 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15941 GIP gastric inhibitory polypeptide 107968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15942 GIPC1 GIPC PDZ domain containing family, member 1 191996 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15943 GIPR gastric inhibitory polypeptide receptor 295884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15944 GIYD1 GIY-YIG domain containing 1 95900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15945 GIYD2 GIY-YIG domain containing 2 95900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15946 GJA3 gap junction protein, alpha 3, 46kDa 163388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15947 GJB2 gap junction protein, beta 2, 26kDa 149828 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15948 GJB5 gap junction protein, beta 5, 31.1kDa 185024 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15949 GJB6 gap junction protein, beta 6, 30kDa 176960 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15950 GJD3 gap junction protein, delta 3, 31.9kDa 50548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15951 GLIPR2 104832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15952 GLIS2 GLIS family zinc finger 2 240212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15953 GLO1 glyoxalase I 123144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15954 GLRX5 glutaredoxin 5 40992 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15955 GLS glutaminase 379008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15956 GLTP glycolipid transfer protein 145600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15957 GLTPD1 glycolipid transfer protein domain containing 1 43876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15958 GMPPB GDP-mannose pyrophosphorylase B 265888 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15959 GNAI2 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 2 242280 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15960 GNAI3 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 3 245728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15961 GNB2 guanine nucleotide binding protein (G protein), beta polypeptide 2 208152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15962 GNB2L1 guanine nucleotide binding protein (G protein), beta polypeptide 2-like 1 220728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15963 GNG10 guanine nucleotide binding protein (G protein), gamma 10 35840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15964 GNG11 guanine nucleotide binding protein (G protein), gamma 11 51520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15965 GNG12 guanine nucleotide binding protein (G protein), gamma 12 50848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15966 GNG13 guanine nucleotide binding protein (G protein), gamma 13 47488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15967 GNG2 guanine nucleotide binding protein (G protein), gamma 2 50176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15968 GNG5 guanine nucleotide binding protein (G protein), gamma 5 41020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15969 GNG8 guanine nucleotide binding protein (G protein), gamma 8 49420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15970 GNGT2 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 2 48832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15971 GNPDA1 glucosamine-6-phosphate deaminase 1 200256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15972 GNPNAT1 glucosamine-phosphate N-acetyltransferase 1 128800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15973 GNPTG N-acetylglucosamine-1-phosphate transferase, gamma subunit 171528 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15974 GNRH1 gonadotropin-releasing hormone 1 (luteinizing-releasing hormone) 65184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15975 GNRH2 gonadotropin-releasing hormone 2 83160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15976 GOLGA2B 101024 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15977 GOLGA6A 243768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15978 GOLGA6B golgi autoantigen, golgin subfamily a, 6B 252896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15979 GOLT1A golgi transport 1 homolog A (S. cerevisiae) 93856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15980 GP9 glycoprotein IX (platelet) 80864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15981 GPATCH4 G patch domain containing 4 263172 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15982 GPHA2 glycoprotein hormone alpha 2 90048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15983 GPIHBP1 glycosylphosphatidylinositol anchored high density lipoprotein binding protein 1 89320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15984 GPN2 190428 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15985 GPR107 G protein-coupled receptor 107 361512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15986 GPR109B G protein-coupled receptor 109B 261632 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15987 GPR120 G protein-coupled receptor 120 220864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15988 GPR123 G protein-coupled receptor 123 176744 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15989 GPR135 G protein-coupled receptor 135 164192 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15990 GPR137 G protein-coupled receptor 137 277340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15991 GPR137B G protein-coupled receptor 137B 261268 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15992 GPR137C G protein-coupled receptor 137C 251404 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15993 GPR142 G protein-coupled receptor 142 291816 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15994 GPR146 G protein-coupled receptor 146 208068 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15995 GPR150 G protein-coupled receptor 150 73836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15996 GPR157 G protein-coupled receptor 157 178408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15997 GPR172A G protein-coupled receptor 172A 245672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15998 GPR20 G protein-coupled receptor 20 160412 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15999 GPR25 G protein-coupled receptor 25 131880 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16000 GPR27 G protein-coupled receptor 27 86408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16001 GPR3 G protein-coupled receptor 3 223328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16002 GPR35 G protein-coupled receptor 35 183428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16003 GPR44 G protein-coupled receptor 44 94268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16004 GPR62 G protein-coupled receptor 62 92344 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16005 GPR68 G protein-coupled receptor 68 162928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16006 GPR78 G protein-coupled receptor 78 181076 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16007 GPR81 G protein-coupled receptor 81 234080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16008 GPR82 G protein-coupled receptor 82 227360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16009 GPR89A G protein-coupled receptor 89A 260624 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16010 GPRIN2 G protein regulated inducer of neurite outgrowth 2 227792 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16011 GPS1 G protein pathway suppressor 1 268120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16012 GPSM1 G-protein signaling modulator 1 (AGS3-like, C. elegans) 196196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16013 GPT glutamic-pyruvate transaminase (alanine aminotransferase) 208768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16014 GPX4 glutathione peroxidase 4 (phospholipid hydroperoxidase) 138516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16015 GPX7 glutathione peroxidase 7 109676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16016 GRAMD4 GRAM domain containing 4 366256 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16017 GRAP GRB2-related adaptor protein 73044 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16018 GRB10 growth factor receptor-bound protein 10 414176 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16019 GREM2 gremlin 2, cysteine knot superfamily, homolog (Xenopus laevis) 107408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16020 GRIN3B glutamate receptor, ionotropic, N-methyl-D-aspartate 3B 301448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16021 GRINA glutamate receptor, ionotropic, N-methyl D-aspartate-associated protein 1 (glutamate binding) 227392 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16022 GRINL1A glutamate receptor, ionotropic, N-methyl D-aspartate-like 1A 241080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16023 GSC goosecoid homeobox 59276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16024 GSDMD 229444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16025 GSN gelsolin (amyloidosis, Finnish type) 506140 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16026 GSPT1 G1 to S phase transition 1 356808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16027 GSTA2 glutathione S-transferase A2 155232 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16028 GSTA4 glutathione S-transferase A4 155232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16029 GSTK1 glutathione S-transferase kappa 1 196448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16030 GSTP1 glutathione S-transferase pi 132916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16031 GSTT1 glutathione S-transferase theta 1 166432 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16032 GSX1 GS homeobox 1 98196 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16033 GTF2A1L general transcription factor IIA, 1-like 334168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16034 GTF2A2 general transcription factor IIA, 2, 12kDa 77504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16035 GTF2E2 general transcription factor IIE, polypeptide 2, beta 34kDa 202496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16036 GTF2H2 general transcription factor IIH, polypeptide 2, 44kDa 201884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16037 GTF2H2C 280420 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16038 GTF2H2D 280420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16039 GTF2H5 general transcription factor IIH, polypeptide 5 50176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16040 GTF2I general transcription factor II, i 451344 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16041 GTF2IRD2 GTF2I repeat domain containing 2 431240 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16042 GTF2IRD2B GTF2I repeat domain containing 2B 389312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16043 GTPBP5 GTP binding protein 5 (putative) 276024 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16044 GTSF1 gametocyte specific factor 1 119168 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16045 GUCA2A guanylate cyclase activator 2A (guanylin) 69896 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16046 GUK1 guanylate kinase 1 133896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16047 GYG1 glycogenin 1 242816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16048 H1F0 H1 histone family, member 0 118664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16049 H1FOO H1 histone family, member O, oocyte-specific 156132 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16050 H1FX H1 histone family, member X 84616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16051 H2AFJ H2A histone family, member J 88256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16052 H2AFX H2A histone family, member X 70308 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16053 H3F3A H3 histone, family 3A 93408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16054 HAGH hydroxyacylglutathione hydrolase 197708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16055 HAGHL hydroxyacylglutathione hydrolase-like 72940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16056 HAUS4 252672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16057 HAUS7 229032 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16058 HBA1 hemoglobin, alpha 1 62516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16059 HBA2 hemoglobin, alpha 2 42112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16060 HBG1 hemoglobin, gamma A 61572 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16061 HBG2 hemoglobin, gamma G 83388 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16062 HBM hemoglobin, mu 63812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16063 HBQ1 hemoglobin, theta 1 46480 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16064 HCFC1 host cell factor C1 (VP16-accessory protein) 1148960 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16065 HCN2 hyperpolarization activated cyclic nucleotide-gated potassium channel 2 311920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16066 HCST hematopoietic cell signal transducer 63308 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16067 HDAC10 histone deacetylase 10 312060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16068 HDAC8 histone deacetylase 8 283136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16069 HDDC3 HD domain containing 3 72772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16070 HDGFRP2 303404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16071 HDHD1A haloacid dehalogenase-like hydrolase domain containing 1A 144008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16072 HDHD2 haloacid dehalogenase-like hydrolase domain containing 2 180096 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16073 HEATR7A 322080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16074 HEMK1 HemK methyltransferase family member 1 236768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16075 HES3 hairy and enhancer of split 3 (Drosophila) 38304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16076 HES4 hairy and enhancer of split 4 (Drosophila) 47152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16077 HES6 hairy and enhancer of split 6 (Drosophila) 66812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16078 HES7 hairy and enhancer of split 7 (Drosophila) 65756 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16079 HEXA hexosaminidase A (alpha polypeptide) 368704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16080 HEXDC hexosaminidase (glycosyl hydrolase family 20, catalytic domain) containing 339472 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16081 HEXIM1 hexamethylene bis-acetamide inducible 1 199920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16082 HGS hepatocyte growth factor-regulated tyrosine kinase substrate 466544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16083 HIBADH 3-hydroxyisobutyrate dehydrogenase 212352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16084 HIC1 hypermethylated in cancer 1 147616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16085 HIGD1A HIG1 domain family, member 1A 73472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16086 HIGD1C HIG1 domain family, member 1C 61336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16087 HINT3 histidine triad nucleotide binding protein 3 85232 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16088 HIST1H1E histone cluster 1, H1e 137564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16089 HIST1H1T histone cluster 1, H1t 140672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16090 HIST1H2AC histone cluster 1, H2ac 88928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16091 HIST1H2AG histone cluster 1, H2ag 88844 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16092 HIST1H2AH histone cluster 1, H2ah 87584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16093 HIST1H2AI histone cluster 1, H2ai 82460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16094 HIST1H2AK histone cluster 1, H2ak 88928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16095 HIST1H2BG histone cluster 1, H2bg 86240 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16096 HIST1H2BI histone cluster 1, H2bi 86240 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16097 HIST1H2BJ histone cluster 1, H2bj 86240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16098 HIST1H2BN histone cluster 1, H2bn 86240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16099 HIST1H3A histone cluster 1, H3a 92960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16100 HIST1H3E histone cluster 1, H3e 92960 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16101 HIST1H3F histone cluster 1, H3f 92960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16102 HIST1H3G histone cluster 1, H3g 92960 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16103 HIST1H3H histone cluster 1, H3h 92960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16104 HIST1H3I histone cluster 1, H3i 84896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16105 HIST1H3J histone cluster 1, H3j 92960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16106 HIST1H4C histone cluster 1, H4c 70784 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16107 HIST1H4D histone cluster 1, H4d 70784 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16108 HIST1H4H histone cluster 1, H4h 70784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16109 HIST1H4I histone cluster 1, H4i 70784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16110 HIST1H4J histone cluster 1, H4j 48692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16111 HIST1H4K histone cluster 1, H4k 65240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16112 HIST2H2AC histone cluster 2, H2ac 88256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16113 HIST2H2BE histone cluster 2, H2be 86240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16114 HIST3H2A histone cluster 3, H2a 74984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16115 HIST4H4 histone cluster 4, H4 70784 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16116 HMG20B high-mobility group 20B 111048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16117 HMGA1 high mobility group AT-hook 1 65752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16118 HMGN1 high-mobility group nucleosome binding domain 1 65716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16119 HMGN2 high-mobility group nucleosomal binding domain 2 62272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16120 HMGN3 high mobility group nucleosomal binding domain 3 72576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16121 HMGN4 high mobility group nucleosomal binding domain 4 62048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16122 HMHA1 histocompatibility (minor) HA-1 530216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16123 HMHB1 histocompatibility (minor) HB-1 24440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16124 HMX2 H6 family homeobox 2 95928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16125 HMX3 H6 family homeobox 3 79660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16126 HN1 hematological and neurological expressed 1 115300 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16127 HN1L hematological and neurological expressed 1-like 121408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16128 HNRNPA0 heterogeneous nuclear ribonucleoprotein A0 152644 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16129 HNRNPC heterogeneous nuclear ribonucleoprotein C (C1/C2) 212576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16130 HNRNPR heterogeneous nuclear ribonucleoprotein R 437024 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16131 HNRPDL heterogeneous nuclear ribonucleoprotein D-like 242916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16132 HNRPLL heterogeneous nuclear ribonucleoprotein L-like 343080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16133 HOPX HOP homeobox 53760 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16134 HOXA10 homeobox A10 154784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16135 HOXA9 homeobox A9 147812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16136 HOXB13 homeobox B13 193228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16137 HOXC8 homeobox C8 165088 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16138 HOXD13 homeobox D13 161588 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16139 HPCAL1 hippocalcin-like 1 132720 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16140 HPCAL4 hippocalcin like 4 131712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16141 HPDL 4-hydroxyphenylpyruvate dioxygenase-like 209720 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16142 HPGD hydroxyprostaglandin dehydrogenase 15-(NAD) 171040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16143 HPGDS 138880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16144 HPN hepsin (transmembrane protease, serine 1) 271964 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16145 HPS4 Hermansky-Pudlak syndrome 4 490084 0 0 0 4 0 0 0 0 0 0 1.00 1.00 -16146 HRAS v-Ha-ras Harvey rat sarcoma viral oncogene homolog 132916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16147 HRCT1 65716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16148 HRH3 histamine receptor H3 202328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16149 HS3ST3A1 heparan sulfate (glucosamine) 3-O-sulfotransferase 3A1 176360 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16150 HS3ST6 heparan sulfate (glucosamine) 3-O-sulfotransferase 6 109900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16151 HS6ST1 heparan sulfate 6-O-sulfotransferase 1 151228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16152 HSBP1 heat shock factor binding protein 1 47768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16153 HSCB HscB iron-sulfur cluster co-chaperone homolog (E. coli) 163380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16154 HSD11B1L hydroxysteroid (11-beta) dehydrogenase 1-like 104616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16155 HSD11B2 hydroxysteroid (11-beta) dehydrogenase 2 207060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16156 HSD17B1 hydroxysteroid (17-beta) dehydrogenase 1 182336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16157 HSD17B11 hydroxysteroid (17-beta) dehydrogenase 11 208544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16158 HSD17B7 hydroxysteroid (17-beta) dehydrogenase 7 237888 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16159 HSPB1 heat shock 27kDa protein 1 78148 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16160 HSPB7 heat shock 27kDa protein family, member 7 (cardiovascular) 114156 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16161 HSPC159 111776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16162 HSPE1 heat shock 10kDa protein 1 (chaperonin 10) 71848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16163 HTR6 5-hydroxytryptamine (serotonin) receptor 6 247496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16164 HYAL1 hyaluronoglucosaminidase 1 291396 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16165 HYAL2 hyaluronoglucosaminidase 2 285264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16166 HYAL3 hyaluronoglucosaminidase 3 266952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16167 IAPP islet amyloid polypeptide 62272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16168 ICAM3 intercellular adhesion molecule 3 333116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16169 ICMT isoprenylcysteine carboxyl methyltransferase 151424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16170 ICOSLG inducible T-cell co-stimulator ligand 178048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16171 ICT1 immature colon carcinoma transcript 1 125692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16172 ID1 inhibitor of DNA binding 1, dominant negative helix-loop-helix protein 94520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16173 ID2 inhibitor of DNA binding 2, dominant negative helix-loop-helix protein 88732 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16174 ID3 inhibitor of DNA binding 3, dominant negative helix-loop-helix protein 72940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16175 ID4 inhibitor of DNA binding 4, dominant negative helix-loop-helix protein 47480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16176 IDH3B isocitrate dehydrogenase 3 (NAD+) beta 305984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16177 IER2 immediate early response 2 109844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16178 IER3 immediate early response 3 71176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16179 IER3IP1 immediate early response 3 interacting protein 1 56112 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16180 IER5 immediate early response 5 118132 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16181 IER5L immediate early response 5-like 88012 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16182 IFI27 interferon, alpha-inducible protein 27 80416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16183 IFI27L1 74144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16184 IFI6 interferon, alpha-inducible protein 6 78232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16185 IFITM3 interferon induced transmembrane protein 3 (1-8U) 91756 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16186 IFITM5 interferon induced transmembrane protein 5 84248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16187 IFNA14 interferon, alpha 14 128576 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16188 IFNA17 interferon, alpha 17 128576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16189 IFNW1 interferon, omega 1 132608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16190 IFT20 intraflagellar transport 20 homolog (Chlamydomonas) 77280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16191 IFT27 131936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16192 IFT52 intraflagellar transport 52 homolog (Chlamydomonas) 305984 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16193 IGF2 insulin-like growth factor 2 (somatomedin A) 150668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16194 IGFALS insulin-like growth factor binding protein, acid labile subunit 223888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16195 IGFBP6 insulin-like growth factor binding protein 6 89824 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16196 IGFBP7 insulin-like growth factor binding protein 7 87360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16197 IGFBPL1 insulin-like growth factor binding protein-like 1 87136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16198 IGFL1 IGF-like family member 1 78176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16199 IGFL2 IGF-like family member 2 88704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16200 IGFL4 IGF-like family member 4 87448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16201 IGLL5 83776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16202 IGSF6 immunoglobulin superfamily, member 6 168000 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16203 IKZF5 IKAROS family zinc finger 5 (Pegasus) 284928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16204 IL17B interleukin 17B 100548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16205 IL17D interleukin 17D 45220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16206 IL17RE interleukin 17 receptor E 353528 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16207 IL18 interleukin 18 (interferon-gamma-inducing factor) 116080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16208 IL1F10 interleukin 1 family, member 10 (theta) 106400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16209 IL1F8 interleukin 1 family, member 8 (eta) 163968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16210 IL22RA2 interleukin 22 receptor, alpha 2 182784 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16211 IL23A interleukin 23, alpha subunit p19 131264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16212 IL28A interleukin 28A (interferon, lambda 2) 140448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16213 IL28B interleukin 28B (interferon, lambda 3) 136864 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16214 IL29 interleukin 29 (interferon, lambda 1) 139552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16215 IL2RG interleukin 2 receptor, gamma (severe combined immunodeficiency) 242072 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16216 IL5 interleukin 5 (colony-stimulating factor, eosinophil) 94304 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16217 ILF2 interleukin enhancer binding factor 2, 45kDa 275296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16218 ILK integrin-linked kinase 315168 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16219 INCA1 156800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16220 INO80C 134176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16221 INPP5E inositol polyphosphate-5-phosphatase, 72 kDa 242652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16222 INS insulin 56896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16223 INS-IGF2 INS-IGF2 92920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16224 INSL3 insulin-like 3 (Leydig cell) 47040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16225 INSL4 insulin-like 4 (placenta) 95872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16226 INSL5 insulin-like 5 93184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16227 INSM1 insulinoma-associated 1 107660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16228 IPCEF1 303968 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16229 IQCC IQ motif containing C 314244 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16230 IRF2BP1 interferon regulatory factor 2 binding protein 1 251664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16231 IRF2BP2 interferon regulatory factor 2 binding protein 2 233212 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16232 IRF7 interferon regulatory factor 7 211644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16233 IRF8 interferon regulatory factor 8 276052 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16234 IRS2 insulin receptor substrate 2 228396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16235 IRX4 iroquois homeobox 4 161196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16236 ISCA1P1 90664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16237 ISCA2 iron-sulfur cluster assembly 2 homolog (S. cerevisiae) 81160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16238 ISG15 ISG15 ubiquitin-like modifier 98812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16239 ISL2 ISL LIM homeobox 2 191016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16240 ISOC1 isochorismatase domain containing 1 186300 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16241 ISOC2 isochorismatase domain containing 2 137760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16242 ISX intestine-specific homeobox 168896 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16243 ISY1 ISY1 splicing factor homolog (S. cerevisiae) 200480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16244 ISYNA1 287896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16245 ITGB1BP1 integrin beta 1 binding protein 1 140448 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16246 ITM2C integral membrane protein 2C 157612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16247 ITPKA inositol 1,4,5-trisphosphate 3-kinase A 173404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16248 IVD isovaleryl Coenzyme A dehydrogenase 290724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16249 JAG2 jagged 2 487480 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16250 JAGN1 jagunal homolog 1 (Drosophila) 112792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16251 JAM2 junctional adhesion molecule 2 209616 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16252 JDP2 Jun dimerization protein 2 112688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16253 JMJD4 jumonji domain containing 4 265440 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16254 JMJD5 jumonji domain containing 5 258664 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16255 JMJD7 207624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16256 JMJD8 107944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16257 JOSD2 Josephin domain containing 2 94724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16258 JRK jerky homolog (mouse) 234104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16259 JUB jub, ajuba homolog (Xenopus laevis) 266392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16260 JUN jun oncogene 197232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16261 JUNB jun B proto-oncogene 112028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16262 JUND jun D proto-oncogene 84420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16263 KAAG1 kidney associated antigen 1 42812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16264 KATNA1 katanin p60 (ATPase-containing) subunit A 1 339584 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16265 KATNB1 katanin p80 (WD repeat containing) subunit B 1 412108 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16266 KAZALD1 Kazal-type serine peptidase inhibitor domain 1 151704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16267 KCMF1 potassium channel modulatory factor 1 258496 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16268 KCNE2 potassium voltage-gated channel, Isk-related family, member 2 84224 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16269 KCNE3 potassium voltage-gated channel, Isk-related family, member 3 64904 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16270 KCNG2 potassium voltage-gated channel, subfamily G, member 2 188076 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16271 KCNK12 potassium channel, subfamily K, member 12 112752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16272 KCNK15 potassium channel, subfamily K, member 15 158528 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16273 KCNK4 potassium channel, subfamily K, member 4 194680 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16274 KCNK7 potassium channel, subfamily K, member 7 168196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16275 KCNMB3 potassium large conductance calcium-activated channel, subfamily M beta member 3 215796 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16276 KCNN4 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 4 278320 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16277 KCNS1 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 1 229728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16278 KCTD15 potassium channel tetramerisation domain containing 15 118636 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16279 KCTD17 potassium channel tetramerisation domain containing 17 134424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16280 KCTD2 potassium channel tetramerisation domain containing 2 136724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16281 KCTD5 potassium channel tetramerisation domain containing 5 125720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16282 KDM4B 593160 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16283 KIAA0101 KIAA0101 84448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16284 KIAA0174 KIAA0174 250656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16285 KIAA0247 KIAA0247 204148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16286 KIAA0831 KIAA0831 331912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16287 KIAA0892 KIAA0892 420168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16288 KIAA1012 KIAA1012 983164 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16289 KIAA1191 KIAA1191 211904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16290 KIAA1522 KIAA1522 663796 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16291 KIAA1529 KIAA1529 1134712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16292 KIAA1737 KIAA1737 269808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16293 KIAA1984 KIAA1984 322036 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16294 KIAA2013 KIAA2013 278404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16295 KIFC1 kinesin family member C1 460180 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16296 KIFC2 kinesin family member C2 394088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16297 KIR2DS4 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 4 178116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16298 KISS1R KISS1 receptor 91496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16299 KLC3 kinesin light chain 3 231640 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16300 KLF15 Kruppel-like factor 15 221808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16301 KLF9 Kruppel-like factor 9 158536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16302 KLHDC10 277536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16303 KLHDC4 kelch domain containing 4 340836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16304 KLHDC8A kelch domain containing 8A 231028 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16305 KLHDC8B kelch domain containing 8B 242956 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16306 KLHDC9 kelch domain containing 9 221904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16307 KLHL17 kelch-like 17 (Drosophila) 259700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16308 KLHL21 kelch-like 21 (Drosophila) 192696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16309 KLHL22 kelch-like 22 (Drosophila) 407484 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16310 KLHL26 kelch-like 26 (Drosophila) 281708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16311 KLHL30 kelch-like 30 (Drosophila) 202820 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16312 KLHL35 164696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16313 KLHL36 328048 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16314 KLK10 kallikrein-related peptidase 10 177396 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16315 KLK3 kallikrein-related peptidase 3 201824 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16316 KLK8 kallikrein-related peptidase 8 210112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16317 KLRC1 killer cell lectin-like receptor subfamily C, member 1 162624 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16318 KLRC2 killer cell lectin-like receptor subfamily C, member 2 161280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16319 KLRG1 killer cell lectin-like receptor subfamily G, member 1 132160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16320 KNCN kinocilin 49308 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16321 KPNA2 karyopherin alpha 2 (RAG cohort 1, importin alpha 1) 156904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16322 KPTN kaptin (actin binding protein) 266600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16323 KRT39 keratin 39 132352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16324 KRT40 keratin 40 116512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16325 KRT86 keratin 86 226744 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16326 KRTAP1-1 keratin associated protein 1-1 47344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16327 KRTAP1-3 keratin associated protein 1-3 44704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16328 KRTAP1-5 keratin associated protein 1-5 46552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16329 KRTAP10-1 keratin associated protein 10-1 183428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16330 KRTAP10-10 keratin associated protein 10-10 170240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16331 KRTAP10-2 keratin associated protein 10-2 172928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16332 KRTAP10-3 keratin associated protein 10-3 150080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16333 KRTAP10-5 keratin associated protein 10-5 183680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16334 KRTAP12-2 keratin associated protein 12-2 99680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16335 KRTAP12-3 keratin associated protein 12-3 66080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16336 KRTAP12-4 keratin associated protein 12-4 76832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16337 KRTAP13-2 keratin associated protein 13-2 119168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16338 KRTAP13-4 keratin associated protein 13-4 109088 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16339 KRTAP19-7 keratin associated protein 19-7 43904 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16340 KRTAP19-8 keratin associated protein 19-8 43904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16341 KRTAP20-1 keratin associated protein 20-1 39200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16342 KRTAP20-2 keratin associated protein 20-2 45248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16343 KRTAP21-1 keratin associated protein 21-1 54656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16344 KRTAP21-2 keratin associated protein 21-2 57344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16345 KRTAP23-1 keratin associated protein 23-1 45248 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16346 KRTAP3-1 keratin associated protein 3-1 26488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16347 KRTAP3-2 keratin associated protein 3-2 26488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16348 KRTAP3-3 keratin associated protein 3-3 26488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16349 KRTAP4-12 keratin associated protein 4-12 53680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16350 KRTAP4-2 keratin associated protein 4-2 92960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16351 KRTAP4-5 keratin associated protein 4-5 122792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16352 KRTAP5-1 keratin associated protein 5-1 187796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16353 KRTAP5-10 keratin associated protein 5-10 135800 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16354 KRTAP5-7 keratin associated protein 5-7 112448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16355 KRTAP5-8 keratin associated protein 5-8 127232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16356 KRTAP6-1 keratin associated protein 6-1 49280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16357 KRTAP6-3 keratin associated protein 6-3 70320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16358 KRTAP9-3 keratin associated protein 9-3 108416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16359 KRTAP9-4 keratin associated protein 9-4 105056 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16360 KRTAP9-8 keratin associated protein 9-8 108416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16361 KRTAP9-9 keratin associated protein 9-9 58688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16362 KRTDAP keratinocyte differentiation-associated protein 72576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16363 KTI12 KTI12 homolog, chromatin associated (S. cerevisiae) 229292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16364 KY kyphoscoliosis peptidase 452956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16365 L3MBTL l(3)mbt-like (Drosophila) 525232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16366 LAGE3 L antigen family, member 3 56448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16367 LAMA5 laminin, alpha 5 1760748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16368 LANCL3 LanC lantibiotic synthetase component C-like 3 (bacterial) 167300 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16369 LAPTM4B lysosomal associated protein transmembrane 4 beta 162344 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16370 LASS1 LAG1 homolog, ceramide synthase 1 168560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16371 LASS2 LAG1 homolog, ceramide synthase 2 264992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16372 LASS4 LAG1 homolog, ceramide synthase 4 269948 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16373 LCE1C late cornified envelope 1C 80864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16374 LCE1E late cornified envelope 1E 80864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16375 LCE2A late cornified envelope 2A 72800 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16376 LCE2B late cornified envelope 2B 75488 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16377 LCE3A late cornified envelope 3A 61376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16378 LCE3B late cornified envelope 3B 25696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16379 LCE3C late cornified envelope 3C 25432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16380 LCE3E late cornified envelope 3E 63392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16381 LCE5A late cornified envelope 5A 77168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16382 LCN1 lipocalin 1 (tear prealbumin) 124184 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16383 LCN10 lipocalin 10 137184 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16384 LCN12 lipocalin 12 122320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16385 LCN15 124392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16386 LCN2 lipocalin 2 139104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16387 LCN6 lipocalin 6 111916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16388 LCNL1 77664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16389 LCORL ligand dependent nuclear receptor corepressor-like 185248 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16390 LEAP2 liver expressed antimicrobial peptide 2 55104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16391 LECT2 leukocyte cell-derived chemotaxin 2 105728 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16392 LEFTY1 left-right determination factor 1 177184 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16393 LEFTY2 left-right determination factor 2 199444 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16394 LEMD1 LEM domain containing 1 75936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16395 LEMD2 LEM domain containing 2 218232 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16396 LENEP lens epithelial protein 42560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16397 LEPRE1 leucine proline-enriched proteoglycan (leprecan) 1 423136 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16398 LFNG LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase 205896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16399 LGALS13 lectin, galactoside-binding, soluble, 13 (galectin 13) 97664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16400 LGALS2 lectin, galactoside-binding, soluble, 2 92960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16401 LGALS3 lectin, galactoside-binding, soluble, 3 158452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16402 LGALS3BP lectin, galactoside-binding, soluble, 3 binding protein 357532 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16403 LGALS7 lectin, galactoside-binding, soluble, 7 (galectin 7) 27020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16404 LGR6 leucine-rich repeat-containing G protein-coupled receptor 6 667876 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16405 LIF leukemia inhibitory factor (cholinergic differentiation factor) 135888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16406 LIMD1 LIM domains containing 1 436072 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16407 LIMD2 LIM domain containing 2 69860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16408 LIN28A 137984 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16409 LIN52 lin-52 homolog (C. elegans) 84000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16410 LIN7B lin-7 homolog B (C. elegans) 102740 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16411 LIN7C lin-7 homolog C (C. elegans) 137536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16412 LINGO3 leucine rich repeat and Ig domain containing 3 203336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16413 LITAF lipopolysaccharide-induced TNF factor 111552 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16414 LLPH 89152 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16415 LMAN2L lectin, mannose-binding 2-like 241696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16416 LMBR1L limb region 1 homolog (mouse)-like 344512 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16417 LMF2 lipase maturation factor 2 273644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16418 LMNA lamin A/C 428560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16419 LMO1 LIM domain only 1 (rhombotin 1) 106652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16420 LOC100302652 359072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16421 LOC150786 155204 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16422 LOC153328 94896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16423 LOC401052 81760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16424 LOC55908 112288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16425 LOC646498 107744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16426 LOC649330 198464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16427 LOX lysyl oxidase 228732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16428 LOXL1 lysyl oxidase-like 1 189052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16429 LPGAT1 lysophosphatidylglycerol acyltransferase 1 255584 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16430 LPPR1 225344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16431 LPPR2 238952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16432 LRDD leucine-rich repeats and death domain containing 422968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16433 LRFN1 leucine rich repeat and fibronectin type III domain containing 1 341668 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16434 LRFN4 leucine rich repeat and fibronectin type III domain containing 4 180696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16435 LRP3 low density lipoprotein receptor-related protein 3 344596 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16436 LRRC14 leucine rich repeat containing 14 276444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16437 LRRC19 leucine rich repeat containing 19 250628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16438 LRRC24 leucine rich repeat containing 24 131180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16439 LRRC29 leucine rich repeat containing 29 118852 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16440 LRRC3 leucine rich repeat containing 3 148232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16441 LRRC45 leucine rich repeat containing 45 208992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16442 LRRC56 leucine rich repeat containing 56 258220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16443 LRRN4CL 85820 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16444 LSM10 LSM10, U7 small nuclear RNA associated 82292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16445 LSM6 LSM6 homolog, U6 small nuclear RNA associated (S. cerevisiae) 57120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16446 LSM7 LSM7 homolog, U6 small nuclear RNA associated (S. cerevisiae) 62700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16447 LSMD1 LSM domain containing 1 96124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16448 LTA lymphotoxin alpha (TNF superfamily, member 1) 123228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16449 LTA4H leukotriene A4 hydrolase 428288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16450 LTB4R2 leukotriene B4 receptor 2 181776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16451 LTC4S leukotriene C4 synthase 41608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16452 LUC7L LUC7-like (S. cerevisiae) 245280 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16453 LXN latexin 155232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16454 LY6G5B lymphocyte antigen 6 complex, locus G5B 98868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16455 LY6G6D lymphocyte antigen 6 complex, locus G6D 77112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16456 LY6H lymphocyte antigen 6 complex, locus H 82292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16457 LYL1 lymphoblastic leukemia derived sequence 1 84832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16458 LYNX1 Ly6/neurotoxin 1 144428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16459 LYPD1 LY6/PLAUR domain containing 1 98112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16460 LYPLA1 lysophospholipase I 154644 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16461 LYPLA2 lysophospholipase II 163548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16462 LYRM1 LYR motif containing 1 85344 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16463 LYRM4 LYR motif containing 4 52272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16464 LYRM7 Lyrm7 homolog (mouse) 67696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16465 LYSMD2 LysM, putative peptidoglycan-binding, domain containing 2 85792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16466 LYZ lysozyme (renal amyloidosis) 103712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16467 LYZL1 lysozyme-like 1 135520 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16468 LYZL4 lysozyme-like 4 94480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16469 MAD2L1BP MAD2L1 binding protein 167596 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16470 MADCAM1 mucosal vascular addressin cell adhesion molecule 1 115836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16471 MAF1 MAF1 homolog (S. cerevisiae) 170700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16472 MAFF v-maf musculoaponeurotic fibrosarcoma oncogene homolog F (avian) 37660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16473 MAFG v-maf musculoaponeurotic fibrosarcoma oncogene homolog G (avian) 28072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16474 MAFK v-maf musculoaponeurotic fibrosarcoma oncogene homolog K (avian) 53200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16475 MAGEA1 melanoma antigen family A, 1 (directs expression of antigen MZ2-E) 209216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16476 MAGOH mago-nashi homolog, proliferation-associated (Drosophila) 103264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16477 MAGT1 magnesium transporter 1 93104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16478 MAL2 mal, T-cell differentiation protein 2 92064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16479 MAMDC4 MAM domain containing 4 467740 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16480 MAMSTR 160696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16481 MANEA mannosidase, endo-alpha 308840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16482 MANEAL mannosidase, endo-alpha-like 213588 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16483 MANF 103516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16484 MAP1D 228768 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16485 MAP1LC3A microtubule-associated protein 1 light chain 3 alpha 88172 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16486 MAP1LC3B microtubule-associated protein 1 light chain 3 beta 78400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16487 MAP2K7 mitogen-activated protein kinase kinase 7 186144 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16488 MAP6D1 MAP6 domain containing 1 34808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16489 MAPK11 mitogen-activated protein kinase 11 156076 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16490 MAPK1IP1L mitogen-activated protein kinase 1 interacting protein 1-like 168000 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16491 MAPK8IP2 mitogen-activated protein kinase 8 interacting protein 2 267488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16492 MAPKSP1 89376 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16493 MAPRE1 microtubule-associated protein, RP/EB family, member 1 186144 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16494 MARCH3 membrane-associated ring finger (C3HC4) 3 174272 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16495 MARCH4 membrane-associated ring finger (C3HC4) 4 255304 0 0 0 5 0 0 0 0 0 0 1.00 1.00 -16496 MAZ MYC-associated zinc finger protein (purine-binding transcription factor) 122724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16497 MB myoglobin 106848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16498 MBL2 mannose-binding lectin (protein C) 2, soluble (opsonic defect) 170912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16499 MBLAC2 152420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16500 MBTD1 mbt domain containing 1 277760 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16501 MBTPS2 membrane-bound transcription factor peptidase, site 2 348552 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16502 MC1R melanocortin 1 receptor (alpha melanocyte stimulating hormone receptor) 203924 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16503 MCART2 mitochondrial carrier triple repeat 2 201152 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16504 MCCD1 mitochondrial coiled-coil domain 1 41580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16505 MCL1 myeloid cell leukemia sequence 1 (BCL2-related) 176960 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16506 MCM2 minichromosome maintenance complex component 2 616980 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16507 MDFI MyoD family inhibitor 150304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16508 MDK midkine (neurite growth-promoting factor 2) 73948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16509 MED10 mediator complex subunit 10 94976 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16510 MED11 mediator complex subunit 11 81984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16511 MED19 mediator complex subunit 19 85120 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16512 MED20 mediator complex subunit 20 146720 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16513 MED21 mediator complex subunit 21 101024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16514 MED26 mediator complex subunit 26 353500 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16515 MED28 mediator complex subunit 28 123872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16516 MED29 mediator complex subunit 29 146384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16517 MED30 mediator complex subunit 30 117572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16518 MED6 mediator complex subunit 6 173152 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16519 MEF2B myocyte enhancer factor 2B 176288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16520 MEIG1 meiosis expressed gene 1 homolog (mouse) 61600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16521 MEOX2 mesenchyme homeobox 2 196392 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16522 MESDC1 mesoderm development candidate 1 110264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16523 MESP1 mesoderm posterior 1 homolog (mouse) 48552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16524 MESP2 mesoderm posterior 2 homolog (mouse) 100408 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16525 METTL11A 153216 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16526 METTL2A methyltransferase like 2A 167280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16527 METTL4 methyltransferase like 4 321160 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16528 METTL9 methyltransferase like 9 180992 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16529 MFAP1 microfibrillar-associated protein 1 303744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16530 MFAP2 microfibrillar-associated protein 2 111372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16531 MFNG MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase 213528 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16532 MFSD3 major facilitator superfamily domain containing 3 117180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16533 MFSD6L 382760 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16534 MFSD7 major facilitator superfamily domain containing 7 284704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16535 MGAT2 mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase 284228 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16536 MGP matrix Gla protein 73472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16537 MGST2 microsomal glutathione S-transferase 2 103936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16538 MIB2 mindbomb homolog 2 (Drosophila) 412524 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16539 MICALL2 MICAL-like 2 377792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16540 MIDN midnolin 204484 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16541 MIF macrophage migration inhibitory factor (glycosylation-inhibiting factor) 21928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16542 MINK1 misshapen-like kinase 1 (zebrafish) 694240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16543 MIXL1 Mix1 homeobox-like 1 (Xenopus laevis) 95900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16544 MKI67IP MKI67 (FHA domain) interacting nucleolar phosphoprotein 203840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16545 MLN motilin 76096 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16546 MMACHC methylmalonic aciduria (cobalamin deficiency) cblC type, with homocystinuria 193760 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16547 MMGT1 80208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16548 MMP28 matrix metallopeptidase 28 249356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16549 MNX1 motor neuron and pancreas homeobox 1 98280 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16550 MOB2 148920 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16551 MOBKL2B MOB1, Mps One Binder kinase activator-like 2B (yeast) 148512 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16552 MOBP myelin-associated oligodendrocyte basic protein 56896 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16553 MOCS1 molybdenum cofactor synthesis 1 242508 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16554 MOCS2 molybdenum cofactor synthesis 2 163888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16555 MON1A MON1 homolog A (yeast) 372708 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16556 MORF4 mortality factor 4 159488 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16557 MOSC1 MOCO sulphurase C-terminal domain containing 1 181412 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16558 MOSC2 MOCO sulphurase C-terminal domain containing 2 195160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16559 MPG N-methylpurine-DNA glycosylase 161616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16560 MPHOSPH6 M-phase phosphoprotein 6 111244 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16561 MPST mercaptopyruvate sulfurtransferase 114744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16562 MPV17 MpV17 mitochondrial inner membrane protein 125216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16563 MPZ myelin protein zero (Charcot-Marie-Tooth neuropathy 1B) 163048 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16564 MRFAP1 Mof4 family associated protein 1 86744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16565 MRFAP1L1 Morf4 family associated protein 1-like 1 86912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16566 MRGPRF MAS-related GPR, member F 130432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16567 MRO maestro 172704 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16568 MRP63 mitochondrial ribosomal protein 63 56420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16569 MRPL11 mitochondrial ribosomal protein L11 140756 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16570 MRPL12 mitochondrial ribosomal protein L12 120736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16571 MRPL14 mitochondrial ribosomal protein L14 99904 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16572 MRPL15 mitochondrial ribosomal protein L15 188832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16573 MRPL17 mitochondrial ribosomal protein L17 120960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16574 MRPL23 mitochondrial ribosomal protein L23 98560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16575 MRPL28 mitochondrial ribosomal protein L28 162288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16576 MRPL30 mitochondrial ribosomal protein L30 113344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16577 MRPL34 mitochondrial ribosomal protein L34 39676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16578 MRPL35 mitochondrial ribosomal protein L35 131712 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16579 MRPL36 mitochondrial ribosomal protein L36 70784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16580 MRPL38 mitochondrial ribosomal protein L38 207016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16581 MRPL40 mitochondrial ribosomal protein L40 129920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16582 MRPL41 mitochondrial ribosomal protein L41 65240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16583 MRPL42 mitochondrial ribosomal protein L42 100576 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16584 MRPL43 mitochondrial ribosomal protein L43 186508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16585 MRPL48 mitochondrial ribosomal protein L48 126368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16586 MRPL49 mitochondrial ribosomal protein L49 115808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16587 MRPL52 mitochondrial ribosomal protein L52 87808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16588 MRPL54 mitochondrial ribosomal protein L54 88284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16589 MRPL55 mitochondrial ribosomal protein L55 83328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16590 MRPS10 mitochondrial ribosomal protein S10 141092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16591 MRPS12 mitochondrial ribosomal protein S12 95200 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16592 MRPS16 mitochondrial ribosomal protein S16 93996 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16593 MRPS17 mitochondrial ribosomal protein S17 89824 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16594 MRPS18A mitochondrial ribosomal protein S18A 121984 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16595 MRPS23 mitochondrial ribosomal protein S23 132748 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16596 MRPS26 mitochondrial ribosomal protein S26 77364 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16597 MRPS33 mitochondrial ribosomal protein S33 73696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16598 MRPS34 mitochondrial ribosomal protein S34 52612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16599 MRPS35 mitochondrial ribosomal protein S35 224896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16600 MRPS7 mitochondrial ribosomal protein S7 166684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16601 MRTO4 mRNA turnover 4 homolog (S. cerevisiae) 163920 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16602 MS4A3 membrane-spanning 4-domains, subfamily A, member 3 (hematopoietic cell-specific) 149856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16603 MS4A6A membrane-spanning 4-domains, subfamily A, member 6A 174944 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16604 MS4A6E membrane-spanning 4-domains, subfamily A, member 6E 102144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16605 MSGN1 mesogenin 1 131264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16606 MSLN mesothelin 265888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16607 MSLNL 437460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16608 MSMB microseminoprotein, beta- 80864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16609 MSMP 96768 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16610 MSRA methionine sulfoxide reductase A 162792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16611 MSTO1 misato homolog 1 (Drosophila) 317604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16612 MSX1 msh homeobox 1 100940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16613 MT1A metallothionein 1A 44352 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16614 MT1E metallothionein 1E 44352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16615 MT1F metallothionein 1F 44352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16616 MT1H metallothionein 1H 44352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16617 MT1M metallothionein 1M 44352 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16618 MT1X metallothionein 1X 44352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16619 MT2A metallothionein 2A 44352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16620 MT4 metallothionein 4 45024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16621 MTCP1NB 48160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16622 MTHFD2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase 243040 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16623 MTHFD2L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2-like 203392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16624 MTIF3 mitochondrial translational initiation factor 3 190176 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16625 MTNR1A melatonin receptor 1A 208928 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16626 MTP18 130592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16627 MTPN myotrophin 83552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16628 MTSS1L 340200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16629 MUC1 mucin 1, cell surface associated 160152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16630 MUCL1 mucin-like 1 64736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16631 MUSTN1 musculoskeletal, embryonic nuclear protein 1 56560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16632 MUTED muted homolog (mouse) 130816 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16633 MVD mevalonate (diphospho) decarboxylase 207640 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16634 MXD3 MAX dimerization protein 3 100544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16635 MXD4 MAX dimerization protein 4 105084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16636 MXRA8 matrix-remodelling associated 8 131900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16637 MYC v-myc myelocytomatosis viral oncogene homolog (avian) 288960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16638 MYEOV2 myeloma overexpressed 2 156772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16639 MYL12A 118272 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16640 MYL12B 118944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16641 MYL3 myosin, light chain 3, alkali; ventricular, skeletal, slow 137088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16642 MYL5 myosin, light chain 5, regulatory 110516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16643 MYL6 myosin, light chain 6, alkali, smooth muscle and non-muscle 114912 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16644 MYLIP myosin regulatory light chain interacting protein 295784 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16645 MYLK4 myosin light chain kinase family, member 4 271264 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16646 MYLPF 120512 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16647 MYOD1 myogenic differentiation 1 145576 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16648 NAA10 160160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16649 NAA20 125580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16650 NAA40 167104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16651 NACC2 130088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16652 NANOS3 nanos homolog 3 (Drosophila) 118664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16653 NANP N-acetylneuraminic acid phosphatase 167692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16654 NAP1L5 nucleosome assembly protein 1-like 5 120428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16655 NAPRT1 nicotinate phosphoribosyltransferase domain containing 1 187180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16656 NASP nuclear autoantigenic sperm protein (histone-binding) 550424 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16657 NAT1 N-acetyltransferase 1 (arylamine N-acetyltransferase) 197792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16658 NAT2 N-acetyltransferase 2 (arylamine N-acetyltransferase) 193592 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16659 NAT6 N-acetyltransferase 6 191212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16660 NAT8 N-acetyltransferase 8 154112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16661 NAT8L N-acetyltransferase 8-like 58380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16662 NBL1 neuroblastoma, suppression of tumorigenicity 1 129064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16663 NBPF14 neuroblastoma breakpoint family, member 14 424824 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16664 NCALD neurocalcin delta 133056 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16665 NCAPH2 non-SMC condensin II complex, subunit H2 357860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16666 NCCRP1 114464 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16667 NCK2 NCK adaptor protein 2 240576 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16668 NCLN nicalin homolog (zebrafish) 254980 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16669 NCR2 natural cytotoxicity triggering receptor 2 190624 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16670 NDE1 nudE nuclear distribution gene E homolog 1 (A. nidulans) 232960 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16671 NDFIP2 Nedd4 family interacting protein 2 173752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16672 NDOR1 NADPH dependent diflavin oxidoreductase 1 333692 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16673 NDP Norrie disease (pseudoglioma) 79736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16674 NDUFA11 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 11, 14.7kDa 68000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16675 NDUFA2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 2, 8kDa 66360 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16676 NDUFA3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 3, 9kDa 60704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16677 NDUFA4L2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4-like 2 50072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16678 NDUFA5 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa 83104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16679 NDUFA6 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 6, 14kDa 95760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16680 NDUFA7 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 7, 14.5kDa 68292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16681 NDUFA8 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 8, 19kDa 119840 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16682 NDUFAB1 NADH dehydrogenase (ubiquinone) 1, alpha/beta subcomplex, 1, 8kDa 94472 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16683 NDUFB10 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 10, 22kDa 103496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16684 NDUFB4 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 4, 15kDa 36256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16685 NDUFB5 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 5, 16kDa 133056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16686 NDUFB7 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 7, 18kDa 79732 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16687 NDUFB8 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, 19kDa 130144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16688 NDUFC1 NADH dehydrogenase (ubiquinone) 1, subcomplex unknown, 1, 6kDa 40024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16689 NDUFS7 NADH dehydrogenase (ubiquinone) Fe-S protein 7, 20kDa (NADH-coenzyme Q reductase) 123768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16690 NDUFS8 NADH dehydrogenase (ubiquinone) Fe-S protein 8, 23kDa (NADH-coenzyme Q reductase) 122388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16691 NDUFV2 NADH dehydrogenase (ubiquinone) flavoprotein 2, 24kDa 167636 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16692 NECAP1 NECAP endocytosis associated 1 192640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16693 NELF nasal embryonic LHRH factor 213048 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16694 NEU4 sialidase 4 209300 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16695 NEUROG1 neurogenin 1 124040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16696 NFKBIA nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, alpha 203840 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16697 NFKBIL1 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor-like 1 141344 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16698 NFKBIL2 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor-like 2 594688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16699 NHEDC2 Na+/H+ exchanger domain containing 2 371392 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16700 NHLH2 nescient helix loop helix 2 64064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16701 NHLRC4 64316 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16702 NHP2 106820 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16703 NHP2L1 NHP2 non-histone chromosome protein 2-like 1 (S. cerevisiae) 90944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16704 NKAIN1 Na+/K+ transporting ATPase interacting 1 103552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16705 NKAIN4 Na+/K+ transporting ATPase interacting 4 89376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16706 NKPD1 NTPase, KAP family P-loop domain containing 1 201460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16707 NKX2-1 NK2 homeobox 1 154416 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16708 NKX2-3 NK2 transcription factor related, locus 3 (Drosophila) 110280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16709 NKX2-4 NK2 homeobox 4 69868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16710 NKX2-8 NK2 homeobox 8 67984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16711 NKX6-2 NK6 homeobox 2 70980 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16712 NKX6-3 NK6 homeobox 3 47768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16713 NMB neuromedin B 97576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16714 NMBR neuromedin B receptor 265440 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16715 NME1 non-metastatic cells 1, protein (NM23A) expressed in 124096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16716 NME2 non-metastatic cells 2, protein (NM23B) expressed in 106400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16717 NME3 non-metastatic cells 3, protein expressed in 55020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16718 NME4 non-metastatic cells 4, protein expressed in 95340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16719 NNAT neuronatin 57792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16720 NOB1 NIN1/RPN12 binding protein 1 homolog (S. cerevisiae) 285464 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16721 NOG noggin 145836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16722 NOL12 nucleolar protein 12 132872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16723 NOL3 nucleolar protein 3 (apoptosis repressor with CARD domain) 113092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16724 NOP10 45472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16725 NOP16 124768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16726 NOSIP nitric oxide synthase interacting protein 208264 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16727 NOTCH1 Notch homolog 1, translocation-associated (Drosophila) 1140524 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16728 NOTUM notum pectinacetylesterase homolog (Drosophila) 159268 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16729 NOXO1 NADPH oxidase organizer 1 122864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16730 NPBWR2 neuropeptides B/W receptor 2 167972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16731 NPFF neuropeptide FF-amide peptide precursor 79296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16732 NPFFR1 neuropeptide FF receptor 1 106368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16733 NPIP nuclear pore complex interacting protein 86128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16734 NPM2 nucleophosmin/nucleoplasmin, 2 144984 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16735 NPPC natriuretic peptide precursor C 53172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16736 NPRL2 265888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16737 NPS neuropeptide S 63168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16738 NPW neuropeptide W 36820 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16739 NR0B2 nuclear receptor subfamily 0, group B, member 2 173236 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16740 NR1H2 nuclear receptor subfamily 1, group H, member 2 269156 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16741 NR2C2AP nuclear receptor 2C2-associated protein 98560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16742 NR5A1 nuclear receptor subfamily 5, group A, member 1 228064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16743 NRARP 46480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16744 NRGN neurogranin (protein kinase C substrate, RC3) 23660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16745 NRIP2 nuclear receptor interacting protein 2 194880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16746 NRL neural retina leucine zipper 78876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16747 NRN1 neuritin 1 98784 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16748 NRTN neurturin 46732 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16749 NSA2 180768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16750 NSMCE2 non-SMC element 2, MMS21 homolog (S. cerevisiae) 172032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16751 NT5C 5', 3'-nucleotidase, cytosolic 100352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16752 NT5DC2 5'-nucleotidase domain containing 2 325276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16753 NTF4 neurotrophin 4 91288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16754 NTN3 183624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16755 NTN5 179320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16756 NUBP2 nucleotide binding protein 2 (MinD homolog, E. coli) 124240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16757 NUBPL nucleotide binding protein-like 224896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16758 NUDCD2 NudC domain containing 2 109760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16759 NUDT10 nudix (nucleoside diphosphate linked moiety X)-type motif 10 112536 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16760 NUDT11 nudix (nucleoside diphosphate linked moiety X)-type motif 11 111680 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16761 NUDT14 nudix (nucleoside diphosphate linked moiety X)-type motif 14 84560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16762 NUDT18 nudix (nucleoside diphosphate linked moiety X)-type motif 18 148928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16763 NUDT2 nudix (nucleoside diphosphate linked moiety X)-type motif 2 101248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16764 NUDT22 nudix (nucleoside diphosphate linked moiety X)-type motif 22 163744 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16765 NUDT3 nudix (nucleoside diphosphate linked moiety X)-type motif 3 115864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16766 NUDT4 nudix (nucleoside diphosphate linked moiety X)-type motif 4 90032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16767 NUDT5 nudix (nucleoside diphosphate linked moiety X)-type motif 5 155904 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16768 NUDT8 nudix (nucleoside diphosphate linked moiety X)-type motif 8 57820 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16769 NUP50 nucleoporin 50kDa 321440 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16770 NUP62CL nucleoporin 62kDa C-terminal like 129696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16771 NUSAP1 nucleolar and spindle associated protein 1 288520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16772 NXNL2 nucleoredoxin-like 2 50652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16773 NXPH4 neurexophilin 4 149044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16774 OAF OAF homolog (Drosophila) 126476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16775 OAZ1 ornithine decarboxylase antizyme 1 111604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16776 OBFC2B oligonucleotide/oligosaccharide-binding fold containing 2B 147840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16777 OCEL1 occludin/ELL domain containing 1 167692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16778 OCIAD2 OCIA domain containing 2 109536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16779 OCLM oculomedin 31136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16780 OCM2 77504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16781 ODF3B 65100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16782 ODF3L1 outer dense fiber of sperm tails 3-like 1 188384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16783 OGFOD2 2-oxoglutarate and iron-dependent oxygenase domain containing 2 156324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16784 OGFR opioid growth factor receptor 243828 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16785 OIP5 Opa interacting protein 5 156436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16786 OLIG2 oligodendrocyte lineage transcription factor 2 68320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16787 ONECUT2 one cut homeobox 2 252336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16788 OPLAH 5-oxoprolinase (ATP-hydrolysing) 541340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16789 OPN1MW opsin 1 (cone pigments), medium-wave-sensitive 159688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16790 OPN1MW2 opsin 1 (cone pigments), medium-wave-sensitive 2 159688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16791 OPRL1 opiate receptor-like 1 223188 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16792 OR10A5 olfactory receptor, family 10, subfamily A, member 5 214592 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16793 OR10A7 olfactory receptor, family 10, subfamily A, member 7 213920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16794 OR10H3 olfactory receptor, family 10, subfamily H, member 3 213920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16795 OR11A1 olfactory receptor, family 11, subfamily A, member 1 133280 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16796 OR1D2 olfactory receptor, family 1, subfamily D, member 2 211008 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16797 OR1D4 olfactory receptor, family 1, subfamily D, member 4 198744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16798 OR1D5 olfactory receptor, family 1, subfamily D, member 5 197624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16799 OR1Q1 olfactory receptor, family 1, subfamily Q, member 1 212576 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16800 OR1S1 olfactory receptor, family 1, subfamily S, member 1 219968 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16801 OR2A42 olfactory receptor, family 2, subfamily A, member 42 168364 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16802 OR2B3 211904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16803 OR2S2 olfactory receptor, family 2, subfamily S, member 2 211456 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16804 OR2T29 olfactory receptor, family 2, subfamily T, member 29 54824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16805 OR2T3 olfactory receptor, family 2, subfamily T, member 3 215264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16806 OR2T5 olfactory receptor, family 2, subfamily T, member 5 74312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16807 OR2V2 olfactory receptor, family 2, subfamily V, member 2 213248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16808 OR3A2 olfactory receptor, family 3, subfamily A, member 2 209720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16809 OR4D2 olfactory receptor, family 4, subfamily D, member 2 207872 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16810 OR4E2 olfactory receptor, family 4, subfamily E, member 2 211904 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16811 OR4F17 olfactory receptor, family 4, subfamily F, member 17 73220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16812 OR4F21 olfactory receptor, family 4, subfamily F, member 21 65864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16813 OR4F4 olfactory receptor, family 4, subfamily F, member 4 85064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16814 OR4F5 olfactory receptor, family 4, subfamily F, member 5 126784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16815 OR4N5 olfactory receptor, family 4, subfamily N, member 5 208544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16816 OR4Q3 olfactory receptor, family 4, subfamily Q, member 3 211904 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16817 OR51D1 olfactory receptor, family 51, subfamily D, member 1 219296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16818 OR52A4 olfactory receptor, family 52, subfamily A, member 4 205856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16819 OR52B6 olfactory receptor, family 52, subfamily B, member 6 226688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16820 OR52E2 olfactory receptor, family 52, subfamily E, member 2 219744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16821 OR52L1 olfactory receptor, family 52, subfamily L, member 1 222656 0 0 0 6 0 0 0 0 0 0 1.00 1.00 -16822 OR56B4 olfactory receptor, family 56, subfamily B, member 4 215936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16823 OR5A1 olfactory receptor, family 5, subfamily A, member 1 213248 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16824 OR6C1 olfactory receptor, family 6, subfamily C, member 1 211232 0 0 0 4 0 0 0 0 0 0 1.00 1.00 -16825 OR8A1 olfactory receptor, family 8, subfamily A, member 1 220640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16826 OR8D1 olfactory receptor, family 8, subfamily D, member 1 208544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16827 OR8G1 olfactory receptor, family 8, subfamily G, member 1 209888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16828 OR8G5 olfactory receptor, family 8, subfamily G, member 5 234080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16829 OR8U1 olfactory receptor, family 8, subfamily U, member 1 209216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16830 OR8U8 olfactory receptor, family 8, subfamily U, member 8 192864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16831 OR9G1 olfactory receptor, family 9, subfamily G, member 1 206528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16832 OR9G9 olfactory receptor, family 9, subfamily G, member 9 206528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16833 OR9Q1 olfactory receptor, family 9, subfamily Q, member 1 209888 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16834 ORAI2 ORAI calcium release-activated calcium modulator 2 157388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16835 ORC2L origin recognition complex, subunit 2-like (yeast) 402752 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16836 ORC6L origin recognition complex, subunit 6 like (yeast) 170492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16837 ORM2 orosomucoid 2 140272 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16838 ORMDL1 ORM1-like 1 (S. cerevisiae) 106176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16839 ORMDL2 ORM1-like 2 (S. cerevisiae) 106176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16840 ORMDL3 ORM1-like 3 (S. cerevisiae) 106176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16841 OSBP2 oxysterol binding protein 2 532068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16842 OSCAR osteoclast associated, immunoglobulin-like receptor 153984 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16843 OSR1 odd-skipped related 1 (Drosophila) 181216 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16844 OSR2 odd-skipped related 2 (Drosophila) 192416 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16845 OSTBETA 75640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16846 OSTF1 osteoclast stimulating factor 1 153440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16847 OSTM1 osteopetrosis associated transmembrane protein 1 167692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16848 OTOR otoraplin 90272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16849 OVOL1 ovo-like 1(Drosophila) 149212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16850 OXT oxytocin, prepro- (neurophysin I) 50260 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16851 P2RX6 purinergic receptor P2X, ligand-gated ion channel, 6 247700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16852 P2RY11 purinergic receptor P2Y, G-protein coupled, 11 231448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16853 PABPN1L 95280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16854 PACRGL 155456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16855 PACS2 phosphofurin acidic cluster sorting protein 2 502484 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16856 PADI2 peptidyl arginine deiminase, type II 438052 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16857 PAEP progestagen-associated endometrial protein (placental protein 14, pregnancy-associated endometrial alpha-2-globulin, alpha uterine protein) 106880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16858 PAFAH1B2 platelet-activating factor acetylhydrolase, isoform Ib, beta subunit 30kDa 159040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16859 PAGE2B P antigen family, member 2B 73056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16860 PAGE4 P antigen family, member 4 (prostate associated) 60288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16861 PAGE5 P antigen family, member 5 (prostate associated) 80544 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16862 PAK4 p21(CDKN1A)-activated kinase 4 271204 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16863 PALM paralemmin 193208 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16864 PALM2 paralemmin 2 283360 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16865 PANK2 pantothenate kinase 2 (Hallervorden-Spatz syndrome) 319172 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16866 PAQR5 progestin and adipoQ receptor family member V 228704 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16867 PAQR6 progestin and adipoQ receptor family member VI 266432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16868 PARD6B par-6 partitioning defective 6 homolog beta (C. elegans) 237664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16869 PARM1 212032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16870 PARS2 prolyl-tRNA synthetase 2, mitochondrial (putative) 320264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16871 PATE1 89824 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16872 PAX5 paired box 5 259352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16873 PAX8 paired box 8 292812 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16874 PBOV1 prostate and breast cancer overexpressed 1 83856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16875 PBX2 pre-B-cell leukemia homeobox 2 222988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16876 PBX4 pre-B-cell leukemia homeobox 4 227160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16877 PCBD1 pterin-4 alpha-carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha 72576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16878 PCBD2 pterin-4 alpha-carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 2 71904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16879 PCBP3 poly(rC) binding protein 3 231080 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16880 PCBP4 poly(rC) binding protein 4 269032 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16881 PCMTD2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 247744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16882 PCOTH 82432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16883 PCP4 Purkinje cell protein 4 45024 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16884 PCSK4 proprotein convertase subtilisin/kexin type 4 349032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16885 PCYT2 phosphate cytidylyltransferase 2, ethanolamine 212140 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16886 PDCD1 programmed cell death 1 186956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16887 PDCD10 programmed cell death 10 149408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16888 PDCD2 programmed cell death 2 194264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16889 PDCL2 phosducin-like 2 166912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16890 PDDC1 Parkinson disease 7 domain containing 1 121908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16891 PDE2A phosphodiesterase 2A, cGMP-stimulated 564268 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16892 PDE6G phosphodiesterase 6G, cGMP-specific, rod, gamma 61824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16893 PDE6H phosphodiesterase 6H, cGMP-specific, cone, gamma 59136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16894 PDGFB platelet-derived growth factor beta polypeptide (simian sarcoma viral (v-sis) oncogene homolog) 159572 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16895 PDIA2 protein disulfide isomerase family A, member 2 279272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16896 PDX1 pancreatic and duodenal homeobox 1 81004 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16897 PDXK pyridoxal (pyridoxine, vitamin B6) kinase 199808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16898 PDXP pyridoxal (pyridoxine, vitamin B6) phosphatase 89908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16899 PDZD4 PDZ domain containing 4 368760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16900 PDZD9 132608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16901 PDZK1IP1 PDZK1 interacting protein 1 76748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16902 PEBP1 phosphatidylethanolamine binding protein 1 98784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16903 PEBP4 158456 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16904 PECR peroxisomal trans-2-enoyl-CoA reductase 206416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16905 PEF1 penta-EF-hand domain containing 1 195916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16906 PENK proenkephalin 178192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16907 PEPD peptidase D 291108 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16908 PERP PERP, TP53 apoptosis effector 114744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16909 PES1 pescadillo homolog 1, containing BRCT domain (zebrafish) 382844 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16910 PEX10 peroxisome biogenesis factor 10 186284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16911 PEX11G peroxisomal biogenesis factor 11 gamma 109312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16912 PEX2 206528 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16913 PEX7 peroxisomal biogenesis factor 7 196672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16914 PF4 platelet factor 4 (chemokine (C-X-C motif) ligand 4) 58312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16915 PF4V1 platelet factor 4 variant 1 73248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16916 PFDN2 prefoldin subunit 2 106988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16917 PFDN4 prefoldin subunit 4 90224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16918 PFKFB2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 368256 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16919 PFKFB3 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 353592 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16920 PFN1 profilin 1 97440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16921 PFN3 profilin 3 43540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16922 PGAM4 phosphoglycerate mutase family member 4 67672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16923 PGLS 6-phosphogluconolactonase 111896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16924 PGM2 phosphoglucomutase 2 405880 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16925 PGP phosphoglycolate phosphatase 89068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16926 PGPEP1 pyroglutamyl-peptidase I 142408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16927 PGRMC1 progesterone receptor membrane component 1 117424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16928 PGRMC2 progesterone receptor membrane component 2 105196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16929 PHB2 prohibitin 2 201684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16930 PHF13 PHD finger protein 13 201656 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16931 PHF21B PHD finger protein 21B 297520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16932 PHKG1 phosphorylase kinase, gamma 1 (muscle) 262668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16933 PHLDA2 pleckstrin homology-like domain, family A, member 2 46620 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16934 PHLDA3 pleckstrin homology-like domain, family A, member 3 69608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16935 PHLDB3 pleckstrin homology-like domain, family B, member 3 369736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16936 PHOSPHO1 phosphatase, orphan 1 95856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16937 PIGC phosphatidylinositol glycan anchor biosynthesis, class C 201152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16938 PIGF phosphatidylinositol glycan anchor biosynthesis, class F 163488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16939 PIGH phosphatidylinositol glycan anchor biosynthesis, class H 96716 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16940 PIGL phosphatidylinositol glycan anchor biosynthesis, class L 176288 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16941 PIGP phosphatidylinositol glycan anchor biosynthesis, class P 110432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16942 PIGY phosphatidylinositol glycan anchor biosynthesis, class Y 49280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16943 PIGZ phosphatidylinositol glycan anchor biosynthesis, class Z 373436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16944 PIM3 pim-3 oncogene 89964 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16945 PIN4 protein (peptidylprolyl cis/trans isomerase) NIMA-interacting, 4 (parvulin) 109088 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16946 PIP5KL1 phosphatidylinositol-4-phosphate 5-kinase-like 1 155912 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16947 PITPNM1 phosphatidylinositol transfer protein, membrane-associated 1 627964 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16948 PITX3 paired-like homeodomain 3 89860 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16949 PKD1 polycystic kidney disease 1 (autosomal dominant) 1475760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16950 PKIG protein kinase (cAMP-dependent, catalytic) inhibitor gamma 53536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16951 PKLR pyruvate kinase, liver and RBC 398552 0 0 0 4 0 0 0 0 0 0 1.00 1.00 -16952 PKNOX1 PBX/knotted 1 homeobox 1 302624 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16953 PKP3 plakophilin 3 249732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16954 PLA2G10 phospholipase A2, group X 32928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16955 PLA2G12A phospholipase A2, group XIIA 129088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16956 PLA2G12B phospholipase A2, group XIIB 135296 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16957 PLA2G16 113120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16958 PLA2G2A phospholipase A2, group IIA (platelets, synovial fluid) 100480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16959 PLA2G2C phospholipase A2, group IIC 104160 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16960 PLA2G2D phospholipase A2, group IID 101696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16961 PLA2G2E phospholipase A2, group IIE 93696 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16962 PLA2G3 phospholipase A2, group III 322416 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16963 PLA2G4B phospholipase A2, group IVB (cytosolic) 534964 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16964 PLA2G5 phospholipase A2, group V 96992 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16965 PLAC1L placenta-specific 1-like 110432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16966 PLAC9 placenta-specific 9 52168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16967 PLAGL2 pleiomorphic adenoma gene-like 2 335776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16968 PLD6 76244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16969 PLEKHF1 pleckstrin homology domain containing, family F (with FYVE domain) member 1 106484 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16970 PLEKHG5 pleckstrin homology domain containing, family G (with RhoGef domain) member 5 543736 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16971 PLEKHJ1 pleckstrin homology domain containing, family J member 1 54376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16972 PLEKHN1 pleckstrin homology domain containing, family N member 1 304628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16973 PLGLB1 plasminogen-like B1 48384 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16974 PLIN3 297752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16975 PLIN5 183204 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16976 PLLP plasma membrane proteolipid (plasmolipin) 106064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16977 PLP2 proteolipid protein 2 (colonic epithelium-enriched) 107296 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16978 PMAIP1 phorbol-12-myristate-13-acetate-induced protein 1 24864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16979 PMM2 phosphomannomutase 2 171444 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16980 PNKD paroxysmal nonkinesigenic dyskinesia 294808 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16981 PNMA1 paraneoplastic antigen MA1 237356 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16982 PNMT phenylethanolamine N-methyltransferase 160216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16983 PNOC prepronociceptin 120736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16984 PNPLA2 patatin-like phospholipase domain containing 2 193564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16985 PNRC2 proline-rich nuclear receptor coactivator 2 63696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16986 POLD4 polymerase (DNA-directed), delta 4 76160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16987 POLE4 polymerase (DNA-directed), epsilon 4 (p12 subunit) 48440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16988 POLR2C polymerase (RNA) II (DNA directed) polypeptide C, 33kDa 192024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16989 POLR2F polymerase (RNA) II (DNA directed) polypeptide F 90496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16990 POLR2G polymerase (RNA) II (DNA directed) polypeptide G 123424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16991 POLR2J polymerase (RNA) II (DNA directed) polypeptide J, 13.3kDa 68012 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16992 POLR2J2 68712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16993 POLR2L polymerase (RNA) II (DNA directed) polypeptide L, 7.6kDa 33292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16994 POLR3F polymerase (RNA) III (DNA directed) polypeptide F, 39 kDa 221088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16995 POLR3G polymerase (RNA) III (DNA directed) polypeptide G (32kD) 156800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16996 POMZP3 POM (POM121 homolog, rat) and ZP3 fusion 132384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16997 POP4 processing of precursor 4, ribonuclease P/MRP subunit (S. cerevisiae) 148736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16998 POP7 processing of precursor 7, ribonuclease P/MRP subunit (S. cerevisiae) 95648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16999 POR P450 (cytochrome) oxidoreductase 325052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17000 POTEH 142380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17001 POU2AF1 POU class 2 associating factor 1 176776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17002 POU3F1 POU class 3 homeobox 1 114772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17003 POU3F3 POU class 3 homeobox 3 145152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17004 POU5F1 POU class 5 homeobox 1 166596 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17005 PPAN peter pan homolog (Drosophila) 261812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17006 PPAP2A phosphatidic acid phosphatase type 2A 218624 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17007 PPAP2C phosphatidic acid phosphatase type 2C 194880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17008 PPAPDC1B phosphatidic acid phosphatase type 2 domain containing 1B 169272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17009 PPBP pro-platelet basic protein (chemokine (C-X-C motif) ligand 7) 89376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17010 PPCDC phosphopantothenoylcysteine decarboxylase 142240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17011 PPDPF 63504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17012 PPIA peptidylprolyl isomerase A (cyclophilin A) 104272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17013 PPIAL4G 105392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17014 PPIC peptidylprolyl isomerase C (cyclophilin C) 129920 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17015 PPIF peptidylprolyl isomerase F (cyclophilin F) 100492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17016 PPIL1 peptidylprolyl isomerase (cyclophilin)-like 1 115808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17017 PPIL3 peptidylprolyl isomerase (cyclophilin)-like 3 114240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17018 PPM1J protein phosphatase 1J (PP2C domain containing) 286440 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17019 PPM1M protein phosphatase 1M (PP2C domain containing) 207416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17020 PPP1CA protein phosphatase 1, catalytic subunit, alpha isoform 228452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17021 PPP1R11 protein phosphatase 1, regulatory (inhibitor) subunit 11 61152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17022 PPP1R14A protein phosphatase 1, regulatory (inhibitor) subunit 14A 57120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17023 PPP1R14B protein phosphatase 1, regulatory (inhibitor) subunit 14B 69328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17024 PPP1R16A protein phosphatase 1, regulatory (inhibitor) subunit 16A 192592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17025 PPP1R1A protein phosphatase 1, regulatory (inhibitor) subunit 1A 102144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17026 PPP1R8 protein phosphatase 1, regulatory (inhibitor) subunit 8 234696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17027 PPP1R9B protein phosphatase 1, regulatory (inhibitor) subunit 9B 303020 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17028 PPP2R4 protein phosphatase 2A activator, regulatory subunit 4 236552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17029 PPP2R5D protein phosphatase 2, regulatory subunit B', delta isoform 419552 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17030 PPP4C protein phosphatase 4 (formerly X), catalytic subunit 210112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17031 PPT1 palmitoyl-protein thioesterase 1 (ceroid-lipofuscinosis, neuronal 1, infantile) 214368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17032 PPY pancreatic polypeptide 56864 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17033 PQLC1 PQ loop repeat containing 1 152656 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17034 PRAC 17696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17035 PRAMEF17 PRAME family member 17 156748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17036 PRAMEF18 PRAME family member 18 201292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17037 PRAMEF19 PRAME family member 19 201292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17038 PRAMEF2 PRAME family member 2 321888 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17039 PRCC papillary renal cell carcinoma (translocation-associated) 315596 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17040 PRCD progressive rod-cone degeneration 39240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17041 PRDX2 peroxiredoxin 2 138516 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17042 PRDX3 peroxiredoxin 3 170016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17043 PRDX4 peroxiredoxin 4 177224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17044 PRDX5 peroxiredoxin 5 149720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17045 PRELID1 PRELI domain containing 1 145516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17046 PRF1 perforin 1 (pore forming protein) 358668 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17047 PRH1 proline-rich protein HaeIII subfamily 1 115808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17048 PRIC285 1084316 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17049 PRIM1 primase, DNA, polypeptide 1 (49kDa) 285448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17050 PRKAR2A protein kinase, cAMP-dependent, regulatory, type II, alpha 258872 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17051 PRKCZ protein kinase C, zeta 368908 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -17052 PRKRIP1 PRKR interacting protein 1 (IL11 inducible) 118636 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17053 PRLH prolactin releasing hormone 47736 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17054 PRLHR prolactin releasing hormone receptor 167860 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17055 PRM3 protamine 3 49848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17056 PRND prion protein 2 (dublet) 114128 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17057 PROCR protein C receptor, endothelial (EPCR) 163240 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17058 PRODH proline dehydrogenase (oxidase) 1 282900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17059 PRPF39 PRP39 pre-mRNA processing factor 39 homolog (S. cerevisiae) 407080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17060 PRR15 proline rich 15 55020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17061 PRR15L 70784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17062 PRR25 160844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17063 PRR3 proline rich 3 90524 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17064 PRR5 proline rich 5 (renal) 172060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17065 PRR7 proline rich 7 (synaptic) 94836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17066 PRRG2 proline rich Gla (G-carboxyglutamic acid) 2 125200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17067 PRRX2 paired related homeobox 2 99596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17068 PRSS33 protease, serine, 33 87416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17069 PRSS50 242564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17070 PRSS53 336692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17071 PRSSL1 protease, serine-like 1 143028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17072 PRTN3 proteinase 3 (serine proteinase, neutrophil, Wegener granulomatosis autoantigen) 129188 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17073 PSENEN presenilin enhancer 2 homolog (C. elegans) 71232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17074 PSG11 pregnancy specific beta-1-glycoprotein 11 230272 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17075 PSMA6 proteasome (prosome, macropain) subunit, alpha type, 6 172256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17076 PSMB1 proteasome (prosome, macropain) subunit, beta type, 1 168000 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17077 PSMB10 proteasome (prosome, macropain) subunit, beta type, 10 181960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17078 PSMB4 proteasome (prosome, macropain) subunit, beta type, 4 184352 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17079 PSMB7 proteasome (prosome, macropain) subunit, beta type, 7 193984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17080 PSMC1 proteasome (prosome, macropain) 26S subunit, ATPase, 1 303080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17081 PSMD4 proteasome (prosome, macropain) 26S subunit, non-ATPase, 4 262976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17082 PSME1 proteasome (prosome, macropain) activator subunit 1 (PA28 alpha) 190736 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17083 PSME2 proteasome (prosome, macropain) activator subunit 2 (PA28 beta) 171136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17084 PSMG1 proteasome (prosome, macropain) assembly chaperone 1 185500 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17085 PSMG2 proteasome (prosome, macropain) assembly chaperone 2 181580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17086 PSMG3 proteasome (prosome, macropain) assembly chaperone 3 74452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17087 PSORS1C1 psoriasis susceptibility 1 candidate 1 75320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17088 PSPN persephin 51576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17089 PSTPIP1 proline-serine-threonine phosphatase interacting protein 1 174372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17090 PTDSS2 phosphatidylserine synthase 2 283912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17091 PTF1A pancreas specific transcription factor, 1a 79324 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17092 PTGDS prostaglandin D2 synthase 21kDa (brain) 113652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17093 PTGER4 prostaglandin E receptor 4 (subtype EP4) 303408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17094 PTGES prostaglandin E synthase 91136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17095 PTGES2 prostaglandin E synthase 2 202356 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17096 PTK6 PTK6 protein tyrosine kinase 6 240844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17097 PTMA prothymosin, alpha 64476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17098 PTPLB protein tyrosine phosphatase-like (proline instead of catalytic arginine), member b 130184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17099 PTPRCAP protein tyrosine phosphatase, receptor type, C-associated protein 78624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17100 PTRH1 peptidyl-tRNA hydrolase 1 homolog (S. cerevisiae) 98616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17101 PTRH2 peptidyl-tRNA hydrolase 2 121856 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17102 PTS 6-pyruvoyltetrahydropterin synthase 84000 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17103 PTTG1IP pituitary tumor-transforming 1 interacting protein 100352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17104 PTTG2 pituitary tumor-transforming 2 129920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17105 PUF60 poly-U binding splicing factor 60KDa 294040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17106 PURA purine-rich element binding protein A 161616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17107 PUSL1 pseudouridylate synthase-like 1 108696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17108 PVALB parvalbumin 78176 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17109 PVRIG poliovirus receptor related immunoglobulin domain containing 212256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17110 PXN paxillin 369020 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17111 PXT1 peroxisomal, testis specific 1 38976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17112 PYCARD PYD and CARD domain containing 123220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17113 PYCR1 pyrroline-5-carboxylate reductase 1 168728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17114 PYCR2 pyrroline-5-carboxylate reductase family, member 2 206080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17115 PYCRL pyrroline-5-carboxylate reductase-like 143924 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17116 PYDC2 66752 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17117 PYY peptide YY 64512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17118 QDPR quinoid dihydropteridine reductase 160496 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17119 QPCTL glutaminyl-peptide cyclotransferase-like 233044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17120 QRFP pyroglutamylated RFamide peptide 72128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17121 RAB10 RAB10, member RAS oncogene family 140448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17122 RAB11FIP3 RAB11 family interacting protein 3 (class II) 338988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17123 RAB12 RAB12, member RAS oncogene family 139356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17124 RAB13 RAB13, member RAS oncogene family 144256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17125 RAB1A RAB1A, member RAS oncogene family 140136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17126 RAB2A RAB2A, member RAS oncogene family 139104 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17127 RAB2B RAB2B, member RAS oncogene family 152992 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17128 RAB35 RAB35, member RAS oncogene family 128576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17129 RAB40A RAB40A, member RAS oncogene family 187712 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17130 RAB5A RAB5A, member RAS oncogene family 149632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17131 RAB5C RAB5C, member RAS oncogene family 150304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17132 RAB6B RAB6B, member RAS oncogene family 147616 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17133 RAB6C RAB6C, member RAS oncogene family 172256 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17134 RABAC1 Rab acceptor 1 (prenylated) 117292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17135 RABEPK Rab9 effector protein with kelch motifs 256928 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17136 RABL2B RAB, member of RAS oncogene family-like 2B 153636 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17137 RABL5 RAB, member RAS oncogene family-like 5 125860 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17138 RAC1 ras-related C3 botulinum toxin substrate 1 (rho family, small GTP binding protein Rac1) 140000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17139 RAC2 ras-related C3 botulinum toxin substrate 2 (rho family, small GTP binding protein Rac2) 125960 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17140 RAC3 ras-related C3 botulinum toxin substrate 3 (rho family, small GTP binding protein Rac3) 93044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17141 RAD51 RAD51 homolog (RecA homolog, E. coli) (S. cerevisiae) 236544 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17142 RAD9A RAD9 homolog A (S. pombe) 259812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17143 RAET1G retinoic acid early transcript 1G 190016 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17144 RAG1AP1 recombination activating gene 1 activating protein 1 154560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17145 RAMP2 receptor (G protein-coupled) activity modifying protein 2 99232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17146 RANGRF RAN guanine nucleotide release factor 135520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17147 RAP2C RAP2C, member of RAS oncogene family 125440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17148 RAPGEFL1 Rap guanine nucleotide exchange factor (GEF)-like 1 279776 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17149 RARA retinoic acid receptor, alpha 301780 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17150 RARRES2 retinoic acid receptor responder (tazarotene induced) 2 80284 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17151 RASD1 RAS, dexamethasone-induced 1 138432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17152 RASL10B RAS-like, family 10, member B 126980 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17153 RASL11B RAS-like, family 11, member B 158648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17154 RASL12 RAS-like, family 12 152796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17155 RASSF1 Ras association (RalGDS/AF-6) domain family member 1 211312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17156 RASSF10 Ras association (RalGDS/AF-6) domain family (N-terminal) member 10 178864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17157 RASSF3 Ras association (RalGDS/AF-6) domain family member 3 155428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17158 RASSF7 Ras association (RalGDS/AF-6) domain family (N-terminal) member 7 137424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17159 RBBP4 retinoblastoma binding protein 4 292544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17160 RBKS ribokinase 224224 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17161 RBM11 RNA binding motif protein 11 182152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17162 RBM18 RNA binding motif protein 18 132832 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17163 RBM23 RNA binding motif protein 23 295680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17164 RBMXL1 263648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17165 RCAN2 regulator of calcineurin 2 136640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17166 RDH14 retinol dehydrogenase 14 (all-trans/9-cis/11-cis) 139328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17167 RDM1 RAD52 motif 1 209888 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17168 RECQL4 RecQ protein-like 4 472976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17169 REEP1 receptor accessory protein 1 125188 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17170 REEP4 receptor accessory protein 4 172972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17171 REEP6 receptor accessory protein 6 95716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17172 REG4 regenerating islet-derived family, member 4 113568 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17173 RELB v-rel reticuloendotheliosis viral oncogene homolog B, nuclear factor of kappa light polypeptide gene enhancer in B-cells 3 (avian) 319844 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17174 REM2 RAS (RAD and GEM)-like GTP binding 2 158144 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17175 REPIN1 replication initiator 1 263984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17176 RER1 RER1 retention in endoplasmic reticulum 1 homolog (S. cerevisiae) 137760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17177 RETN resistin 68544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17178 RETNLB resistin like beta 77952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17179 REXO1 REX1, RNA exonuclease 1 homolog (S. cerevisiae) 544200 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17180 REXO2 REX2, RNA exonuclease 2 homolog (S. cerevisiae) 152020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17181 RFC2 replication factor C (activator 1) 2, 40kDa 238588 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17182 RFC3 replication factor C (activator 1) 3, 38kDa 256172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17183 RFK riboflavin kinase 101052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17184 RFNG RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase 137312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17185 RFPL1 ret finger protein-like 1 215236 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17186 RFT1 RFT1 homolog (S. cerevisiae) 366584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17187 RFX1 regulatory factor X, 1 (influences HLA class II expression) 477712 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17188 RFXANK regulatory factor X-associated ankyrin-containing protein 180292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17189 RGL2 ral guanine nucleotide dissociation stimulator-like 2 500024 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17190 RGMA RGM domain family, member A 263776 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17191 RGS11 regulator of G-protein signaling 11 190256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17192 RGS19 regulator of G-protein signaling 19 136640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17193 RGS9BP regulator of G protein signaling 9 binding protein 59220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17194 RHBDD2 rhomboid domain containing 2 212584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17195 RHBDD3 rhomboid domain containing 3 149116 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17196 RHBDL1 rhomboid, veinlet-like 1 (Drosophila) 161392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17197 RHBDL2 rhomboid, veinlet-like 2 (Drosophila) 210560 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17198 RHEB Ras homolog enriched in brain 126644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17199 RHOB ras homolog gene family, member B 116984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17200 RHOD ras homolog gene family, member D 101780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17201 RHOG ras homolog gene family, member G (rho G) 129920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17202 RHOQ ras homolog gene family, member Q 139132 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17203 RHOT2 ras homolog gene family, member T2 277312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17204 RHOU ras homolog gene family, member U 137172 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17205 RHOV ras homolog gene family, member V 128884 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17206 RHOXF2 Rhox homeobox family, member 2 171496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17207 RHPN1 rhophilin, Rho GTPase binding protein 1 278668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17208 RICH2 496768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17209 RILPL1 Rab interacting lysosomal protein-like 1 211864 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17210 RIN1 Ras and Rab interactor 1 325684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17211 RIPPLY1 ripply1 homolog (zebrafish) 94848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17212 RLN3 relaxin 3 93856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17213 RMND1 required for meiotic nuclear division 1 homolog (S. cerevisiae) 312256 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17214 RMND5A required for meiotic nuclear division 5 homolog A (S. cerevisiae) 265772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17215 RNASE12 ribonuclease, RNase A family, 12 (non-active) 100352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17216 RNASE13 ribonuclease, RNase A family, 13 (non-active) 106400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17217 RNASEH1 ribonuclease H1 173124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17218 RNASEH2B ribonuclease H2, subunit B 204960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17219 RNASEH2C ribonuclease H2, subunit C 97020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17220 RNASEK ribonuclease, RNase K 67992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17221 RNASEN ribonuclease type III, nuclear 914480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17222 RNF114 141736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17223 RNF125 ring finger protein 125 156912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17224 RNF126 ring finger protein 126 142564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17225 RNF128 ring finger protein 128 363468 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17226 RNF13 ring finger protein 13 264768 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17227 RNF151 ring finger protein 151 106792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17228 RNF166 ring finger protein 166 105464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17229 RNF181 ring finger protein 181 107968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17230 RNF183 ring finger protein 183 130592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17231 RNF186 ring finger protein 186 154112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17232 RNF215 ring finger protein 215 159132 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17233 RNF26 ring finger protein 26 279440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17234 RNF4 ring finger protein 4 134624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17235 RNF44 ring finger protein 44 225616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17236 RNF5 ring finger protein 5 105168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17237 RNF7 ring finger protein 7 77800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17238 RNLS 253792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17239 RNMTL1 RNA methyltransferase like 1 286076 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17240 RNPC3 RNA-binding region (RNP1, RRM) containing 3 36320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17241 RNPEPL1 arginyl aminopeptidase (aminopeptidase B)-like 1 241976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17242 ROGDI rogdi homolog (Drosophila) 150408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17243 ROMO1 55552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17244 ROPN1 ropporin, rhophilin associated protein 1 147532 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17245 RPA3 replication protein A3, 14kDa 85568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17246 RPH3AL rabphilin 3A-like (without C2 domains) 195456 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17247 RPL12 ribosomal protein L12 116564 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17248 RPL13 ribosomal protein L13 94948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17249 RPL13A ribosomal protein L13a 129744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17250 RPL14 ribosomal protein L14 145936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17251 RPL15 ribosomal protein L15 140280 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17252 RPL17 ribosomal protein L17 128268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17253 RPL18 ribosomal protein L18 133280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17254 RPL23 ribosomal protein L23 99232 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17255 RPL23A ribosomal protein L23a 105956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17256 RPL26 ribosomal protein L26 99204 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17257 RPL26L1 ribosomal protein L26-like 1 100800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17258 RPL27 ribosomal protein L27 95648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17259 RPL27A ribosomal protein L27a 104608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17260 RPL29 ribosomal protein L29 88200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17261 RPL30 ribosomal protein L30 81536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17262 RPL34 ribosomal protein L34 82880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17263 RPL35A ribosomal protein L35a 78176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17264 RPL36 ribosomal protein L36 45404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17265 RPL36A ribosomal protein L36a 65716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17266 RPL36AL ribosomal protein L36a-like 71372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17267 RPL37 ribosomal protein L37 69440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17268 RPL37A ribosomal protein L37a 66080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17269 RPL38 ribosomal protein L38 51296 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17270 RPL39L ribosomal protein L39-like 35840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17271 RPL41 ribosomal protein L41 13768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17272 RPL7A ribosomal protein L7a 182812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17273 RPL7L1 ribosomal protein L7-like 1 168672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17274 RPL8 ribosomal protein L8 162148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17275 RPLP1 ribosomal protein, large, P1 68592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17276 RPLP2 ribosomal protein, large, P2 70868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17277 RPN1 ribophorin I 358808 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17278 RPP21 ribonuclease P/MRP 21kDa subunit 83580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17279 RPP25 ribonuclease P/MRP 25kDa subunit 58828 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17280 RPRML reprimo-like 39984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17281 RPS10 ribosomal protein S10 109396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17282 RPS12 ribosomal protein S12 93856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17283 RPS14 ribosomal protein S14 105728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17284 RPS15 ribosomal protein S15 74492 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17285 RPS19 ribosomal protein S19 95368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17286 RPS21 ribosomal protein S21 60928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17287 RPS24 ribosomal protein S24 85784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17288 RPS25 ribosomal protein S25 88256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17289 RPS26 ribosomal protein S26 73892 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17290 RPS27 ribosomal protein S27 (metallopanstimulin 1) 60704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17291 RPS27A ribosomal protein S27a 109984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17292 RPS28 ribosomal protein S28 32396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17293 RPS29 ribosomal protein S29 51296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17294 RPS3A ribosomal protein S3A 171192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17295 RPS4Y1 ribosomal protein S4, Y-linked 1 114800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17296 RPS4Y2 ribosomal protein S4, Y-linked 2 114800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17297 RPS5 ribosomal protein S5 139972 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17298 RPS6 ribosomal protein S6 173376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17299 RPS6KA4 ribosomal protein S6 kinase, 90kDa, polypeptide 4 325996 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17300 RPS6KL1 ribosomal protein S6 kinase-like 1 346312 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -17301 RPS7 ribosomal protein S7 136248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17302 RPS8 ribosomal protein S8 144396 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17303 RPTN repetin 529312 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17304 RPUSD1 RNA pseudouridylate synthase domain containing 1 144816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17305 RPUSD2 RNA pseudouridylate synthase domain containing 2 332296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17306 RPUSD3 RNA pseudouridylate synthase domain containing 3 230244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17307 RRAGA Ras-related GTP binding A 211768 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17308 RRAS related RAS viral (r-ras) oncogene homolog 130536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17309 RRM2B ribonucleotide reductase M2 B (TP53 inducible) 246848 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17310 RRP1 ribosomal RNA processing 1 homolog (S. cerevisiae) 249388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17311 RRP15 ribosomal RNA processing 15 homolog (S. cerevisiae) 194656 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17312 RRP7A 159964 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17313 RRS1 RRS1 ribosome biogenesis regulator homolog (S. cerevisiae) 164640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17314 RSPH10B2 611648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17315 RSU1 Ras suppressor protein 1 193984 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17316 RTEL1 regulator of telomere elongation helicase 1 690816 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -17317 RTN4R reticulon 4 receptor 198296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17318 RTP2 receptor (chemosensory) transporter protein 2 153664 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -17319 RTP3 receptor (chemosensory) transporter protein 3 154084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17320 RUSC1 RUN and SH3 domain containing 1 576996 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17321 S100A1 S100 calcium binding protein A1 65632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17322 S100A10 S100 calcium binding protein A10 67648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17323 S100A12 S100 calcium binding protein A12 64288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17324 S100A3 S100 calcium binding protein A3 70336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17325 S100A4 S100 calcium binding protein A4 70336 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17326 S100A5 S100 calcium binding protein A5 77280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17327 S100A6 S100 calcium binding protein A6 62944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17328 S100A7A S100 calcium binding protein A7A 70336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17329 S100A8 S100 calcium binding protein A8 64960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17330 S100P S100 calcium binding protein P 66304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17331 S1PR2 227192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17332 S1PR4 162848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17333 SAC3D1 SAC3 domain containing 1 96516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17334 SAMD1 sterile alpha motif domain containing 1 136184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17335 SAMD13 sterile alpha motif domain containing 13 81652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17336 SAMD4B sterile alpha motif domain containing 4B 477792 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17337 SAMD5 sterile alpha motif domain containing 5 72492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17338 SAP30L SAP30-like 99792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17339 SAPS1 SAPS domain family, member 1 569400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17340 SAR1B SAR1 gene homolog B (S. cerevisiae) 139104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17341 SARNP 151648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17342 SAV1 salvador homolog 1 (Drosophila) 259672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17343 SBDS Shwachman-Bodian-Diamond syndrome 173152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17344 SBK2 134428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17345 SBNO2 strawberry notch homolog 2 (Drosophila) 471500 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17346 SCAMP4 secretory carrier membrane protein 4 143208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17347 SCAND1 SCAN domain containing 1 52780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17348 SCARF1 scavenger receptor class F, member 1 412520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17349 SCCPDH saccharopine dehydrogenase (putative) 274080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17350 SCG5 secretogranin V (7B2 protein) 147616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17351 SCGB1A1 secretoglobin, family 1A, member 1 (uteroglobin) 64512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17352 SCGB1C1 secretoglobin, family 1C, member 1 64984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17353 SCGB1D2 secretoglobin, family 1D, member 2 63840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17354 SCGB1D4 secretoglobin, family 1D, member 4 59136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17355 SCGB2A2 secretoglobin, family 2A, member 2 65856 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17356 SCGB3A2 secretoglobin, family 3A, member 2 65856 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17357 SCNN1D sodium channel, nonvoltage-gated 1, delta 246680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17358 SCO2 SCO cytochrome oxidase deficient homolog 2 (yeast) 141680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17359 SCRG1 68320 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17360 SCRN1 secernin 1 285376 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17361 SCRT2 scratch homolog 2, zinc finger protein (Drosophila) 74760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17362 SDCCAG8 serologically defined colon cancer antigen 8 492240 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -17363 SDF2L1 stromal cell-derived factor 2-like 1 71540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17364 SDF4 stromal cell derived factor 4 252028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17365 SDHC succinate dehydrogenase complex, subunit C, integral membrane protein, 15kDa 143584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17366 SDR42E1 266560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17367 SEC11A SEC11 homolog A (S. cerevisiae) 120080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17368 SEC61G Sec61 gamma subunit 49056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17369 SELENBP1 selenium binding protein 1 320312 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17370 SELK 62200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17371 SELM 63140 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17372 SELS 115136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17373 SELV 103280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17374 SEMA4C sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4C 512456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17375 SENP8 SUMO/sentrin specific peptidase family member 8 144032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17376 SEP15 116032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17377 SEPT8 septin 8 338912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17378 SEPW1 selenoprotein W, 1 58488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17379 SEPX1 selenoprotein X, 1 68992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17380 SERF2 small EDRK-rich factor 2 43008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17381 SERHL2 serine hydrolase-like 2 148240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17382 SERINC4 serine incorporator 4 191968 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17383 SERINC5 serine incorporator 5 277180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17384 SERPINB3 serpin peptidase inhibitor, clade B (ovalbumin), member 3 269024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17385 SERPINF2 serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2 324884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17386 SERTAD1 SERTA domain containing 1 146248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17387 SET SET translocation (myeloid leukemia-associated) 186860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17388 SETD6 SET domain containing 6 247380 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17389 SF3B5 splicing factor 3b, subunit 5, 10kDa 59360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17390 SF4 splicing factor 4 434560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17391 SFN stratifin 167972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17392 SFRS1 splicing factor, arginine/serine-rich 1 (splicing factor 2, alternate splicing factor) 166600 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17393 SFRS12 splicing factor, arginine/serine-rich 12 408312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17394 SFRS12IP1 SFRS12-interacting protein 1 109312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17395 SFRS13A 111672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17396 SFRS13B 176848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17397 SFRS16 splicing factor, arginine/serine-rich 16 339948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17398 SFRS2 splicing factor, arginine/serine-rich 2 134400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17399 SFRS2B splicing factor, arginine/serine-rich 2B 122164 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17400 SFRS5 splicing factor, arginine/serine-rich 5 189728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17401 SFRS6 splicing factor, arginine/serine-rich 6 216944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17402 SFRS7 splicing factor, arginine/serine-rich 7, 35kDa 167776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17403 SFRS8 splicing factor, arginine/serine-rich 8 (suppressor-of-white-apricot homolog, Drosophila) 637592 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17404 SFRS9 splicing factor, arginine/serine-rich 9 146160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17405 SFT2D2 SFT2 domain containing 2 106248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17406 SFTA2 34860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17407 SGEF 571456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17408 SGSM3 small G protein signaling modulator 3 475320 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17409 SH2B2 SH2B adaptor protein 2 177408 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17410 SH2D5 SH2 domain containing 5 198716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17411 SH2D6 SH2 domain containing 6 102844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17412 SH3BGRL SH3 domain binding glutamic acid-rich protein like 80864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17413 SH3BGRL3 SH3 domain binding glutamic acid-rich protein like 3 55888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17414 SH3RF2 SH3 domain containing ring finger 2 498624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17415 SHARPIN SHANK-associated RH domain interactor 221900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17416 SHB Src homology 2 domain containing adaptor protein B 211168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17417 SHH sonic hedgehog homolog (Drosophila) 172648 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17418 SHISA2 shisa homolog 2 (Xenopus laevis) 124992 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17419 SHISA4 shisa homolog 4 (Xenopus laevis) 120288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17420 SIAH3 183232 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17421 SIGIRR single immunoglobulin and toll-interleukin 1 receptor (TIR) domain 164412 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17422 SIM2 single-minded homolog 2 (Drosophila) 360296 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17423 SIRT3 sirtuin (silent mating type information regulation 2 homolog) 3 (S. cerevisiae) 233408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17424 SIRT6 sirtuin (silent mating type information regulation 2 homolog) 6 (S. cerevisiae) 163780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17425 SKA1 177408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17426 SKAP1 src kinase associated phosphoprotein 1 245872 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17427 SKI v-ski sarcoma viral oncogene homolog (avian) 222940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17428 SLA2 Src-like-adaptor 2 182336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17429 SLAIN1 SLAIN motif family, member 1 240576 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17430 SLAIN2 SLAIN motif family, member 2 310240 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17431 SLC12A7 solute carrier family 12 (potassium/chloride transporters), member 7 604512 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17432 SLC15A3 solute carrier family 15, member 3 282296 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17433 SLC16A11 solute carrier family 16, member 11 (monocarboxylic acid transporter 11) 162988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17434 SLC16A3 solute carrier family 16, member 3 (monocarboxylic acid transporter 4) 188916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17435 SLC25A1 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 136948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17436 SLC25A10 solute carrier family 25 (mitochondrial carrier; dicarboxylate transporter), member 10 154196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17437 SLC25A22 solute carrier family 25 (mitochondrial carrier: glutamate), member 22 157900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17438 SLC25A26 solute carrier family 25, member 26 142832 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17439 SLC25A27 solute carrier family 25, member 27 225792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17440 SLC25A29 solute carrier family 25, member 29 103880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17441 SLC25A33 solute carrier family 25, member 33 209216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17442 SLC25A38 solute carrier family 25, member 38 211232 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17443 SLC25A39 solute carrier family 25, member 39 230600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17444 SLC25A41 solute carrier family 25, member 41 233324 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17445 SLC26A1 solute carrier family 26 (sulfate transporter), member 1 222488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17446 SLC26A6 solute carrier family 26, member 6 524744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17447 SLC2A11 solute carrier family 2 (facilitated glucose transporter), member 11 339360 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17448 SLC2A4RG SLC2A4 regulator 159292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17449 SLC30A2 solute carrier family 30 (zinc transporter), member 2 253708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17450 SLC34A3 solute carrier family 34 (sodium phosphate), member 3 275520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17451 SLC35C1 solute carrier family 35, member C1 241024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17452 SLC35F2 solute carrier family 35, member F2 233632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17453 SLC35F5 solute carrier family 35, member F5 364208 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17454 SLC36A1 solute carrier family 36 (proton/amino acid symporter), member 1 329504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17455 SLC39A1 solute carrier family 39 (zinc transporter), member 1 221088 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17456 SLC39A13 solute carrier family 39 (zinc transporter), member 13 248024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17457 SLC39A3 solute carrier family 39 (zinc transporter), member 3 180460 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17458 SLC46A1 solute carrier family 46 (folate transporter), member 1 266596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17459 SLC4A2 solute carrier family 4, anion exchanger, member 2 (erythrocyte membrane protein band 3-like 1) 753536 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17460 SLC6A19 solute carrier family 6 (neutral amino acid transporter), member 19 424704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17461 SLC7A4 solute carrier family 7 (cationic amino acid transporter, y+ system), member 4 382004 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17462 SLC7A6 solute carrier family 7 (cationic amino acid transporter, y+ system), member 6 354816 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -17463 SLC9A3R2 solute carrier family 9 (sodium/hydrogen exchanger), member 3 regulator 2 124424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17464 SLMO1 slowmo homolog 1 (Drosophila) 92456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17465 SLMO2 slowmo homolog 2 (Drosophila) 136416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17466 SLPI secretory leukocyte peptidase inhibitor 92960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17467 SLURP1 secreted LY6/PLAUR domain containing 1 66948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17468 SMAD6 SMAD family member 6 126768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17469 SMAD7 SMAD family member 7 193900 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17470 SMAGP 68544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17471 SMCP sperm mitochondria-associated cysteine-rich protein 79520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17472 SMCR7 Smith-Magenis syndrome chromosome region, candidate 7 207368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17473 SMNDC1 survival motor neuron domain containing 1 165088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17474 SMPD2 sphingomyelin phosphodiesterase 2, neutral membrane (neutral sphingomyelinase) 293888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17475 SMPX small muscle protein, X-linked 62496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17476 SMTNL2 smoothelin-like 2 182028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17477 SMU1 smu-1 suppressor of mec-8 and unc-52 homolog (C. elegans) 356160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17478 SMYD4 SET and MYND domain containing 4 547880 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17479 SNAI3 snail homolog 3 (Drosophila) 160664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17480 SNAPIN SNAP-associated protein 87080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17481 SNCB synuclein, beta 95200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17482 SNCG synuclein, gamma (breast cancer-specific protein 1) 84920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17483 SNF8 SNF8, ESCRT-II complex subunit, homolog (S. cerevisiae) 181216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17484 SNN stannin 60704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17485 SNRNP40 249536 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17486 SNRNP48 206216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17487 SNRPA1 small nuclear ribonucleoprotein polypeptide A' 160832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17488 SNRPD1 small nuclear ribonucleoprotein D1 polypeptide 16kDa 84224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17489 SNRPD2 small nuclear ribonucleoprotein D2 polypeptide 16.5kDa 82656 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17490 SNRPF small nuclear ribonucleoprotein polypeptide F 62048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17491 SNRPG small nuclear ribonucleoprotein polypeptide G 55328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17492 SNTN 103040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17493 SNX15 sorting nexin 15 237664 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17494 SNX24 sorting nexin 24 115136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17495 SNX4 sorting nexin 4 296648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17496 SNX6 sorting nexin 6 276736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17497 SOCS1 suppressor of cytokine signaling 1 41076 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17498 SOCS3 suppressor of cytokine signaling 3 88956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17499 SOCS7 suppressor of cytokine signaling 7 249200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17500 SOD1 superoxide dismutase 1, soluble (amyotrophic lateral sclerosis 1 (adult)) 108640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17501 SOD3 superoxide dismutase 3, extracellular 57400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17502 SOHLH1 spermatogenesis and oogenesis specific basic helix-loop-helix 1 212996 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17503 SOLH small optic lobes homolog (Drosophila) 308980 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17504 SOX11 SRY (sex determining region Y)-box 11 136752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17505 SOX12 SRY (sex determining region Y)-box 12 64400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17506 SOX15 SRY (sex determining region Y)-box 15 104536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17507 SOX18 SRY (sex determining region Y)-box 18 77140 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17508 SOX4 SRY (sex determining region Y)-box 4 143076 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17509 SOX8 SRY (sex determining region Y)-box 8 123620 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17510 SP2 Sp2 transcription factor 413424 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17511 SP5 Sp5 transcription factor 116172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17512 SPA17 sperm autoantigenic protein 17 105728 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17513 SPAG11A sperm associated antigen 11A 39984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17514 SPAG7 sperm associated antigen 7 159488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17515 SPANXD SPANX family, member D 67648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17516 SPANXN1 SPANX family, member N1 50848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17517 SPATA21 spermatogenesis associated 21 324472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17518 SPATA2L spermatogenesis associated 2-like 182448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17519 SPATC1 spermatogenesis and centriole associated 1 277144 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17520 SPATS1 spermatogenesis associated, serine-rich 1 209440 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17521 SPC24 SPC24, NDC80 kinetochore complex component, homolog (S. cerevisiae) 89468 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17522 SPDYE5 217592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17523 SPHAR 43904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17524 SPIB Spi-B transcription factor (Spi-1/PU.1 related) 123116 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17525 SPIC Spi-C transcription factor (Spi-1/PU.1 related) 171808 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17526 SPIN2A spindlin family, member 2A 137172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17527 SPIN4 spindlin family, member 4 168624 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17528 SPINK1 serine peptidase inhibitor, Kazal type 1 57344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17529 SPINK13 67424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17530 SPINK4 serine peptidase inhibitor, Kazal type 4 62048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17531 SPINK6 serine peptidase inhibitor, Kazal type 6 58016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17532 SPINK8 serine peptidase inhibitor, Kazal type 8 (putative) 63944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17533 SPINK9 serine peptidase inhibitor, Kazal type 9 62048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17534 SPINLW1 serine peptidase inhibitor-like, with Kunitz and WAP domains 1 (eppin) 103264 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17535 SPINT4 serine peptidase inhibitor, Kunitz type 4 69888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17536 SPR sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase) 109760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17537 SPRR1B small proline-rich protein 1B (cornifin) 61376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17538 SPRR2D small proline-rich protein 2D 49952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17539 SPRR2G small proline-rich protein 2G 50624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17540 SPRR4 small proline-rich protein 4 54656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17541 SPRY2 sprouty homolog 2 (Drosophila) 213248 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17542 SPSB1 splA/ryanodine receptor domain and SOCS box containing 1 174664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17543 SPSB2 splA/ryanodine receptor domain and SOCS box containing 2 148540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17544 SPSB3 splA/ryanodine receptor domain and SOCS box containing 3 176736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17545 SRA1 steroid receptor RNA activator 1 154840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17546 SRM spermidine synthase 179872 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17547 SRP14 signal recognition particle 14kDa (homologous Alu RNA binding protein) 96544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17548 SRP9 signal recognition particle 9kDa 61152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17549 SRPK3 SFRS protein kinase 3 294112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17550 SRXN1 sulfiredoxin 1 homolog (S. cerevisiae) 60732 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17551 SRY sex determining region Y 86660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17552 SS18L1 synovial sarcoma translocation gene on chromosome 18-like 1 205536 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17553 SS18L2 synovial sarcoma translocation gene on chromosome 18-like 2 55104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17554 SSBP4 single stranded DNA binding protein 4 192384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17555 SSPN sarcospan (Kras oncogene-associated gene) 116704 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17556 SSR3 signal sequence receptor, gamma (translocon-associated protein gamma) 129472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17557 SSR4 signal sequence receptor, delta (translocon-associated protein delta) 115556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17558 SSSCA1 Sjogren syndrome/scleroderma autoantigen 1 124376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17559 SSTR3 somatostatin receptor 3 195440 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17560 SSTR5 somatostatin receptor 5 171668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17561 SSX1 synovial sarcoma, X breakpoint 1 132384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17562 SSX7 synovial sarcoma, X breakpoint 7 132384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17563 ST3GAL5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 272384 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17564 STAC3 SH3 and cysteine rich domain 3 255136 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17565 STAG3L3 stromal antigen 3-like 3 31660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17566 STAG3L4 stromal antigen 3-like 4 105056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17567 STARD5 StAR-related lipid transfer (START) domain containing 5 149184 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -17568 STARD7 StAR-related lipid transfer (START) domain containing 7 227308 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17569 STAT5A signal transducer and activator of transcription 5A 508956 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17570 STATH statherin 45920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17571 STK11 serine/threonine kinase 11 205548 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17572 STK32C serine/threonine kinase 32C 237500 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17573 STMN3 stathmin-like 3 95464 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17574 STON1 stonin 1 497280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17575 STRA13 stimulated by retinoic acid 13 homolog (mouse) 13860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17576 STUB1 STIP1 homology and U-box containing protein 1 145572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17577 STX10 syntaxin 10 173332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17578 SUCLG2 succinate-CoA ligase, GDP-forming, beta subunit 281120 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17579 SUDS3 suppressor of defective silencing 3 homolog (S. cerevisiae) 199136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17580 SUMO1 SMT3 suppressor of mif two 3 homolog 1 (S. cerevisiae) 73024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17581 SUMO2 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) 62496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17582 SUMO4 SMT3 suppressor of mif two 3 homolog 4 (S. cerevisiae) 65324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17583 SUN5 266872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17584 SURF1 surfeit 1 184632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17585 SURF2 surfeit 2 125592 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17586 SUV420H2 suppressor of variegation 4-20 homolog 2 (Drosophila) 205344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17587 SVOP SV2 related protein homolog (rat) 199032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17588 SYAP1 synapse associated protein 1, SAP47 homolog (Drosophila) 218008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17589 SYCN syncollin 76244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17590 SYNGR1 synaptogyrin 1 171388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17591 SYNGR2 synaptogyrin 2 131712 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17592 SYNGR3 synaptogyrin 3 68740 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17593 SYP synaptophysin 185760 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17594 SYT11 synaptotagmin XI 293888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17595 SYT8 synaptotagmin VIII 210420 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17596 TAC3 tachykinin 3 (neuromedin K, neurokinin beta) 86464 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17597 TACO1 162540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17598 TACSTD2 tumor-associated calcium signal transducer 2 163436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17599 TADA2A 314048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17600 TAF10 TAF10 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 30kDa 94836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17601 TAF12 TAF12 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 20kDa 113344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17602 TAF13 TAF13 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 18kDa 43520 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17603 TAF1B TATA box binding protein (TBP)-associated factor, RNA polymerase I, B, 63kDa 404320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17604 TAGLN3 transgelin 3 137984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17605 TAL1 T-cell acute lymphocytic leukemia 1 133896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17606 TARDBP TAR DNA binding protein 283360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17607 TAS2R31 taste receptor, type 2, member 31 209216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17608 TAS2R40 taste receptor, type 2, member 40 218624 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17609 TAS2R42 taste receptor, type 2, member 42 212576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17610 TAS2R43 taste receptor, type 2, member 43 209216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17611 TAX1BP3 Tax1 (human T-cell leukemia virus type I) binding protein 3 77084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17612 TBC1D13 TBC1 domain family, member 13 276552 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17613 TBC1D29 TBC1 domain family, member 29 105952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17614 TBCB tubulin folding cofactor B 128632 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17615 TBKBP1 TBK1 binding protein 1 254856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17616 TBL3 transducin (beta)-like 3 474432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17617 TBRG1 transforming growth factor beta regulator 1 152192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17618 TBX10 T-box 10 234480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17619 TBX2 T-box 2 216468 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17620 TBXA2R thromboxane A2 receptor 148148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17621 TCAP titin-cap (telethonin) 94108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17622 TCEAL1 transcription elongation factor A (SII)-like 1 99984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17623 TCEAL3 transcription elongation factor A (SII)-like 3 135968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17624 TCEAL7 transcription elongation factor A (SII)-like 7 64688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17625 TCEAL8 transcription elongation factor A (SII)-like 8 80192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17626 TCEB1 transcription elongation factor B (SIII), polypeptide 1 (15kDa, elongin C) 78624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17627 TCEB2 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) 105064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17628 TCEB3C transcription elongation factor B polypeptide 3C (elongin A3) 275632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17629 TCF19 transcription factor 19 (SC1) 157248 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17630 TCF21 transcription factor 21 115780 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17631 TCP10L t-complex 10 (mouse)-like 148736 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17632 TCP11L1 t-complex 11 (mouse)-like 1 350784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17633 TCTE3 t-complex-associated-testis-expressed 3 137312 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17634 TCTEX1D4 Tctex1 domain containing 4 40600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17635 TDGF1 teratocarcinoma-derived growth factor 1 132384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17636 TEDDM1 transmembrane epididymal protein 1 185024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17637 TELO2 TEL2, telomere maintenance 2, homolog (S. cerevisiae) 477564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17638 TEX101 testis expressed 101 185472 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17639 TEX19 102620 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17640 TFAP2E transcription factor AP-2 epsilon (activating enhancer binding protein 2 epsilon) 194236 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17641 TFAP4 transcription factor AP-4 (activating enhancer binding protein 4) 233072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17642 TFB1M transcription factor B1, mitochondrial 239456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17643 TFB2M transcription factor B2, mitochondrial 273952 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -17644 TFF1 trefoil factor 1 59808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17645 TFF3 trefoil factor 3 (intestinal) 65940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17646 TFPT TCF3 (E2A) fusion partner (in childhood Leukemia) 172452 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17647 TGFA transforming growth factor, alpha 101808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17648 TGFB1I1 transforming growth factor beta 1 induced transcript 1 279356 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17649 TGFB3 transforming growth factor, beta 3 283808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17650 TGIF2LY TGFB-induced factor homeobox 2-like, Y-linked 78680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17651 TH tyrosine hydroxylase 220164 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17652 THAP1 THAP domain containing, apoptosis associated protein 1 146496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17653 THAP10 THAP domain containing 10 169536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17654 THAP6 THAP domain containing 6 153440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17655 THAP7 THAP domain containing 7 111720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17656 THG1L tRNA-histidine guanylyltransferase 1-like (S. cerevisiae) 206304 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17657 THNSL2 threonine synthase-like 2 (S. cerevisiae) 323840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17658 THOC4 THO complex 4 121504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17659 THOP1 thimet oligopeptidase 1 375744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17660 THRSP thyroid hormone responsive (SPOT14 homolog, rat) 99680 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17661 THY1 Thy-1 cell surface antigen 111552 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17662 THYN1 thymocyte nuclear protein 1 158144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17663 TICAM2 toll-like receptor adaptor molecule 2 159488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17664 TIFAB TRAF-interacting protein with forkhead-associated domain, family member B 109760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17665 TIGD3 tigger transposable element derived 3 277592 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17666 TIGD5 tigger transposable element derived 5 161980 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17667 TIMD4 T-cell immunoglobulin and mucin domain containing 4 262752 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -17668 TIMM13 translocase of inner mitochondrial membrane 13 homolog (yeast) 60916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17669 TIMM16 69244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17670 TIMM17A translocase of inner mitochondrial membrane 17 homolog A (yeast) 120960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17671 TIMM23 translocase of inner mitochondrial membrane 23 homolog (yeast) 62548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17672 TIMM8A translocase of inner mitochondrial membrane 8 homolog A (yeast) 67648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17673 TIMM9 translocase of inner mitochondrial membrane 9 homolog (yeast) 63168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17674 TLX2 T-cell leukemia homeobox 2 88648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17675 TM2D3 TM2 domain containing 3 164052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17676 TM4SF18 transmembrane 4 L six family member 18 140224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17677 TM4SF5 transmembrane 4 L six family member 5 137536 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17678 TM6SF2 transmembrane 6 superfamily member 2 240380 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17679 TM7SF2 transmembrane 7 superfamily member 2 219660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17680 TMBIM6 203392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17681 TMC6 transmembrane channel-like 6 426660 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17682 TMCO4 transmembrane and coiled-coil domains 4 433104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17683 TMED1 transmembrane emp24 protein transport domain containing 1 127204 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17684 TMED6 transmembrane emp24 protein transport domain containing 6 165536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17685 TMED7 transmembrane emp24 protein transport domain containing 7 143220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17686 TMED7-TICAM2 265076 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17687 TMEM102 transmembrane protein 102 237916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17688 TMEM106A transmembrane protein 106A 71896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17689 TMEM106B transmembrane protein 106B 191072 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17690 TMEM110 transmembrane protein 110 172172 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17691 TMEM115 transmembrane protein 115 210084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17692 TMEM121 transmembrane protein 121 71972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17693 TMEM126A transmembrane protein 126A 135296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17694 TMEM126B transmembrane protein 126B 138656 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17695 TMEM127 transmembrane protein 127 124404 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17696 TMEM128 transmembrane protein 128 99008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17697 TMEM129 transmembrane protein 129 75096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17698 TMEM134 transmembrane protein 134 75252 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17699 TMEM136 transmembrane protein 136 102816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17700 TMEM139 transmembrane protein 139 147616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17701 TMEM14A transmembrane protein 14A 70784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17702 TMEM14C transmembrane protein 14C 80416 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17703 TMEM14E 85568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17704 TMEM150A 187712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17705 TMEM151A transmembrane protein 151A 128156 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17706 TMEM155 transmembrane protein 155 83512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17707 TMEM167B 37720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17708 TMEM170A 87556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17709 TMEM173 transmembrane protein 173 256284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17710 TMEM176A transmembrane protein 176A 158704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17711 TMEM179 transmembrane protein 179 82712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17712 TMEM183B transmembrane protein 183B 234528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17713 TMEM188 transmembrane protein 188 95872 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17714 TMEM189 transmembrane protein 189 159488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17715 TMEM190 transmembrane protein 190 110336 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17716 TMEM196 transmembrane protein 196 72352 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17717 TMEM199 transmembrane protein 199 137508 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17718 TMEM200B transmembrane protein 200B 93016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17719 TMEM201 transmembrane protein 201 219660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17720 TMEM204 transmembrane protein 204 117936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17721 TMEM205 transmembrane protein 205 130368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17722 TMEM208 transmembrane protein 208 121464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17723 TMEM209 transmembrane protein 209 383080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17724 TMEM213 75264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17725 TMEM223 90568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17726 TMEM229B 112480 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17727 TMEM27 transmembrane protein 27 154008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17728 TMEM39B transmembrane protein 39B 253568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17729 TMEM45A transmembrane protein 45A 189952 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17730 TMEM50B transmembrane protein 50B 112224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17731 TMEM52 transmembrane protein 52 86268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17732 TMEM54 transmembrane protein 54 142264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17733 TMEM59 transmembrane protein 59 224896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17734 TMEM60 transmembrane protein 60 90944 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17735 TMEM61 transmembrane protein 61 144480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17736 TMEM68 transmembrane protein 68 176960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17737 TMEM69 transmembrane protein 69 168448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17738 TMEM72 179888 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17739 TMEM80 transmembrane protein 80 78456 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17740 TMEM82 transmembrane protein 82 176372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17741 TMEM86B transmembrane protein 86B 123064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17742 TMEM88 transmembrane protein 88 83168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17743 TMEM89 transmembrane protein 89 109312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17744 TMEM9 transmembrane protein 9 128128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17745 TMEM90A transmembrane protein 90A 163296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17746 TMEM91 transmembrane protein 91 135184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17747 TMEM93 transmembrane protein 93 66584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17748 TMEM97 transmembrane protein 97 121632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17749 TMEM98 transmembrane protein 98 157920 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17750 TMEM9B TMEM9 domain family, member B 117928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17751 TMIE transmembrane inner ear 87360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17752 TMOD3 tropomodulin 3 (ubiquitous) 245280 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17753 TMPRSS11E transmembrane protease, serine 11E 287392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17754 TMSB10 thymosin beta 10 32032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17755 TMSB15B 32704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17756 TMSB4X thymosin beta 4, X-linked 32032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17757 TMSB4Y thymosin beta 4, Y-linked 20020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17758 TMUB1 transmembrane and ubiquitin-like domain containing 1 117152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17759 TMUB2 transmembrane and ubiquitin-like domain containing 2 206976 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17760 TNF tumor necrosis factor (TNF superfamily, member 2) 120680 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17761 TNFAIP8L1 tumor necrosis factor, alpha-induced protein 8-like 1 57472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17762 TNFAIP8L2 tumor necrosis factor, alpha-induced protein 8-like 2 125216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17763 TNFRSF12A tumor necrosis factor receptor superfamily, member 12A 72464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17764 TNFRSF13C tumor necrosis factor receptor superfamily, member 13C 61908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17765 TNFRSF14 tumor necrosis factor receptor superfamily, member 14 (herpesvirus entry mediator) 182476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17766 TNFRSF18 tumor necrosis factor receptor superfamily, member 18 112700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17767 TNFRSF1B tumor necrosis factor receptor superfamily, member 1B 273796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17768 TNFRSF25 tumor necrosis factor receptor superfamily, member 25 214220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17769 TNFRSF6B tumor necrosis factor receptor superfamily, member 6b, decoy 123340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17770 TNFSF12-TNFSF13 TNFSF12-TNFSF13 188704 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17771 TNFSF9 tumor necrosis factor (ligand) superfamily, member 9 119028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17772 TNNC1 troponin C type 1 (slow) 114240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17773 TNNI2 troponin I type 2 (skeletal, fast) 108948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17774 TNNT1 troponin T type 1 (skeletal, slow) 183680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17775 TNNT3 troponin T type 3 (skeletal, fast) 190064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17776 TOMM20 translocase of outer mitochondrial membrane 20 homolog (yeast) 102592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17777 TOMM40 translocase of outer mitochondrial membrane 40 homolog (yeast) 189056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17778 TOMM5 38976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17779 TOMM7 translocase of outer mitochondrial membrane 7 homolog (yeast) 40320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17780 TOR1AIP2 torsin A interacting protein 2 409696 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17781 TOR1B torsin family 1, member B (torsin B) 213892 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17782 TOR2A torsin family 2, member A 186148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17783 TOX3 TOX high mobility group box family member 3 352752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17784 TP53I11 tumor protein p53 inducible protein 11 125848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17785 TP53I13 tumor protein p53 inducible protein 13 167972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17786 TP53INP2 tumor protein p53 inducible nuclear protein 2 116536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17787 TP73 tumor protein p73 326340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17788 TPPP3 tubulin polymerization-promoting protein family member 3 121632 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17789 TPRA1 244204 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17790 TPRG1L tumor protein p63 regulated 1-like 139352 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17791 TPRKB TP53RK binding protein 121856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17792 TPSAB1 tryptase alpha/beta 1 134100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17793 TPSB2 tryptase beta 2 74340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17794 TPSG1 tryptase gamma 1 129280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17795 TPT1 tumor protein, translationally-controlled 1 121632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17796 TRA2A 193984 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17797 TRAPPC1 trafficking protein particle complex 1 101696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17798 TRAPPC2 trafficking protein particle complex 2 98224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17799 TRAPPC2L trafficking protein particle complex 2-like 83960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17800 TRAPPC5 trafficking protein particle complex 5 97272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17801 TRAPPC6A trafficking protein particle complex 6A 110744 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17802 TRIAP1 TP53 regulated inhibitor of apoptosis 1 53536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17803 TRIM27 tripartite motif-containing 27 255556 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17804 TRIM34 tripartite motif-containing 34 337120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17805 TRIM47 tripartite motif-containing 47 271768 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17806 TRIM48 tripartite motif-containing 48 129556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17807 TRIM5 tripartite motif-containing 5 371616 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17808 TRIM61 tripartite motif-containing 61 116648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17809 TRIM65 tripartite motif-containing 65 206208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17810 TRIM74 tripartite motif-containing 74 145152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17811 TRIM8 tripartite motif-containing 8 323792 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17812 TRIP10 thyroid hormone receptor interactor 10 374920 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17813 TRMT2A 343016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17814 TRMT61A 151956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17815 TRPM5 transient receptor potential cation channel, subfamily M, member 5 535500 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17816 TRPT1 tRNA phosphotransferase 1 144468 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17817 TSN translin 159264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17818 TSPAN1 tetraspanin 1 168896 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17819 TSPAN12 tetraspanin 12 211904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17820 TSPAN31 tetraspanin 31 147168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17821 TSPAN32 tetraspanin 32 206856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17822 TSPAN4 tetraspanin 4 158816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17823 TSPO translocator protein (18kDa) 49672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17824 TSPY1 testis specific protein, Y-linked 1 67760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17825 TSPY2 testis specific protein, Y-linked 2 66360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17826 TTC16 tetratricopeptide repeat domain 16 528808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17827 TTC19 tetratricopeptide repeat domain 19 226072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17828 TTC36 67116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17829 TTC4 tetratricopeptide repeat domain 4 269696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17830 TTC9 tetratricopeptide repeat domain 9 68264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17831 TTC9C tetratricopeptide repeat domain 9C 118272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17832 TTLL10 tubulin tyrosine ligase-like family, member 10 250276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17833 TTLL12 tubulin tyrosine ligase-like family, member 12 361056 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17834 TUBA1A tubulin, alpha 1a 307328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17835 TUBB2C tubulin, beta 2C 228788 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17836 TULP1 tubby like protein 1 331548 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17837 TUSC2 tumor suppressor candidate 2 44940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17838 TWIST1 twist homolog 1 (acrocephalosyndactyly 3; Saethre-Chotzen syndrome) (Drosophila) 68376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17839 TXN thioredoxin 75712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17840 TXN2 thioredoxin 2 114912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17841 TXNDC17 thioredoxin domain containing 17 86744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17842 TXNDC9 thioredoxin domain containing 9 156128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17843 TYSND1 trypsin domain containing 1 132456 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17844 TYW3 tRNA-yW synthesizing protein 3 homolog (S. cerevisiae) 180096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17845 U2AF1L4 U2 small nuclear RNA auxiliary factor 1-like 4 154784 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17846 UAP1 UDP-N-acteylglucosamine pyrophosphorylase 1 348096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17847 UBAP1 ubiquitin associated protein 1 344960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17848 UBC ubiquitin C 426468 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17849 UBD ubiquitin D 70840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17850 UBE2D2 ubiquitin-conjugating enzyme E2D 2 (UBC4/5 homolog, yeast) 103376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17851 UBE2E3 ubiquitin-conjugating enzyme E2E 3 (UBC4/5 homolog, yeast) 144088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17852 UBE2G2 ubiquitin-conjugating enzyme E2G 2 (UBC7 homolog, yeast) 105896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17853 UBE2H ubiquitin-conjugating enzyme E2H (UBC8 homolog, yeast) 129920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17854 UBE2J1 ubiquitin-conjugating enzyme E2, J1 (UBC6 homolog, yeast) 219100 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17855 UBE2K ubiquitin-conjugating enzyme E2K (UBC1 homolog, yeast) 141344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17856 UBE2L6 ubiquitin-conjugating enzyme E2L 6 107072 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17857 UBE2M ubiquitin-conjugating enzyme E2M (UBC12 homolog, yeast) 122640 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17858 UBE2N ubiquitin-conjugating enzyme E2N (UBC13 homolog, yeast) 106400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17859 UBE2S ubiquitin-conjugating enzyme E2S 124068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17860 UBE2V1 ubiquitin-conjugating enzyme E2 variant 1 118496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17861 UBE2V2 ubiquitin-conjugating enzyme E2 variant 2 101696 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17862 UBE2W ubiquitin-conjugating enzyme E2W (putative) 98672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17863 UBE2Z ubiquitin-conjugating enzyme E2Z 172928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17864 UBL4A ubiquitin-like 4A 73472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17865 UBL5 ubiquitin-like 5 53312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17866 UBQLN4 ubiquilin 4 390252 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17867 UBXN1 216280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17868 UBXN8 178856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17869 UCK1 uridine-cytidine kinase 1 166992 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17870 UCKL1 uridine-cytidine kinase 1-like 1 289408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17871 UCN urocortin 29624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17872 UCN2 urocortin 2 64764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17873 UFC1 ubiquitin-fold modifier conjugating enzyme 1 118272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17874 UFM1 ubiquitin-fold modifier 1 63168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17875 UFSP1 UFM1-specific peptidase 1 (non-functional) 86156 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17876 UGT2A2 UDP glucuronosyltransferase 2 family, polypeptide A2 360864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17877 ULBP3 UL16 binding protein 3 165416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17878 UNC119B unc-119 homolog B (C. elegans) 118272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17879 UNC93B1 unc-93 homolog B1 (C. elegans) 164092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17880 UPP1 uridine phosphorylase 1 215264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17881 UQCR10 53536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17882 UQCR11 32116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17883 UQCRHL 62720 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17884 UQCRQ ubiquinol-cytochrome c reductase, complex III subunit VII, 9.5kDa 57568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17885 URM1 ubiquitin related modifier 1 homolog (S. cerevisiae) 75264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17886 USE1 unconventional SNARE in the ER 1 homolog (S. cerevisiae) 148040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17887 USMG5 upregulated during skeletal muscle growth 5 homolog (mouse) 41440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17888 UTP18 UTP18, small subunit (SSU) processome component, homolog (yeast) 354928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17889 UTS2 urotensin 2 116480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17890 UTS2D urotensin 2 domain containing 85120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17891 UTS2R urotensin 2 receptor 124392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17892 UXT ubiquitously-expressed transcript 119616 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17893 VAMP2 vesicle-associated membrane protein 2 (synaptobrevin 2) 81760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17894 VAPA VAMP (vesicle-associated membrane protein)-associated protein A, 33kDa 197540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17895 VAPB VAMP (vesicle-associated membrane protein)-associated protein B and C 169344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17896 VASH1 vasohibin 1 182680 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17897 VASH2 vasohibin 2 191504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17898 VASN vasorin 232400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17899 VAX1 ventral anterior homeobox 1 102872 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17900 VAX2 ventral anterior homeobox 2 140252 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17901 VBP1 von Hippel-Lindau binding protein 1 125240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17902 VCX2 variable charge, X-linked 2 27580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17903 VDAC2 voltage-dependent anion channel 2 206304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17904 VEZF1 vascular endothelial zinc finger 1 347872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17905 VGLL2 vestigial like 2 (Drosophila) 104272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17906 VHLL von Hippel-Lindau tumor suppressor-like 94640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17907 VIP vasoactive intestinal peptide 119392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17908 VKORC1 vitamin K epoxide reductase complex, subunit 1 97888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17909 VMAC 55384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17910 VPS28 vacuolar protein sorting 28 homolog (S. cerevisiae) 149296 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17911 VPS29 vacuolar protein sorting 29 homolog (S. cerevisiae) 130144 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17912 VPS37A vacuolar protein sorting 37 homolog A (S. cerevisiae) 259504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17913 VPS37D vacuolar protein sorting 37 homolog D (S. cerevisiae) 73912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17914 VSNL1 visinin-like 1 131712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17915 VSTM2L V-set and transmembrane domain containing 2 like 94880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17916 WBP2 WW domain binding protein 2 162016 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17917 WBSCR16 Williams-Beuren syndrome chromosome region 16 120696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17918 WBSCR27 Williams Beuren syndrome chromosome region 27 163200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17919 WBSCR28 Williams-Beuren syndrome chromosome region 28 181440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17920 WDR18 WD repeat domain 18 173516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17921 WDR24 WD repeat domain 24 395888 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17922 WDR37 WD repeat domain 37 344288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17923 WDR81 WD repeat domain 81 459836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17924 WDR82 WD repeat domain 82 217644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17925 WDR83 217812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17926 WDR85 WD repeat domain 85 277228 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17927 WFDC10A WAP four-disulfide core domain 10A 55552 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17928 WFDC10B WAP four-disulfide core domain 10B 84448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17929 WFDC11 WAP four-disulfide core domain 11 61824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17930 WFDC13 WAP four-disulfide core domain 13 65856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17931 WFDC2 WAP four-disulfide core domain 2 86688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17932 WFDC6 WAP four-disulfide core domain 6 61152 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17933 WFIKKN1 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 1 151032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17934 WISP2 WNT1 inducible signaling pathway protein 2 159124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17935 WNT10A wingless-type MMTV integration site family, member 10A 203084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17936 WNT5B wingless-type MMTV integration site family, member 5B 225512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17937 WNT8B wingless-type MMTV integration site family, member 8B 207088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17938 WRAP53 377888 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17939 WRB tryptophan rich basic protein 122080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17940 WSB1 WD repeat and SOCS box-containing 1 291648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17941 XAGE3 X antigen family, member 3 78848 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17942 XAGE5 X antigen family, member 5 76832 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17943 XCL1 chemokine (C motif) ligand 1 79968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17944 XK X-linked Kx blood group (McLeod syndrome) 293216 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17945 XKR5 XK, Kell blood group complex subunit-related family, member 5 204680 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17946 YDJC YdjC homolog (bacterial) 75936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17947 YEATS4 YEATS domain containing 4 159488 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17948 YIPF2 Yip1 domain family, member 2 214112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17949 YIPF4 Yip1 domain family, member 4 158728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17950 YJEFN3 166232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17951 YPEL3 yippee-like 3 (Drosophila) 109676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17952 YPEL4 yippee-like 4 (Drosophila) 88240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17953 YPEL5 yippee-like 5 (Drosophila) 83692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17954 YRDC yrdC domain containing (E. coli) 104608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17955 YWHAG tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, gamma polypeptide 160804 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17956 YWHAZ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta polypeptide 161308 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17957 ZBTB10 zinc finger and BTB domain containing 10 416332 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17958 ZBTB12 zinc finger and BTB domain containing 12 245420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17959 ZBTB2 zinc finger and BTB domain containing 2 347872 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17960 ZBTB45 zinc finger and BTB domain containing 45 275128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17961 ZBTB47 zinc finger and BTB domain containing 47 199860 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17962 ZBTB8OS zinc finger and BTB domain containing 8 opposite strand 127232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17963 ZBTB9 zinc finger and BTB domain containing 9 312284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17964 ZC3H3 zinc finger CCCH-type containing 3 466800 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17965 ZCCHC10 zinc finger, CCHC domain containing 10 118496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17966 ZCCHC13 zinc finger, CCHC domain containing 13 113120 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17967 ZDHHC12 zinc finger, DHHC-type containing 12 171008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17968 ZDHHC13 zinc finger, DHHC-type containing 13 390632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17969 ZDHHC22 zinc finger, DHHC-type containing 22 160132 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17970 ZFAND1 zinc finger, AN1-type domain 1 176592 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17971 ZFAND2A zinc finger, AN1-type domain 2A 101696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17972 ZFAND2B zinc finger, AN1-type domain 2B 181440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17973 ZFAND5 zinc finger, AN1-type domain 5 148288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17974 ZFAND6 zinc finger, AN1-type domain 6 144928 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17975 ZFP41 zinc finger protein 41 homolog (mouse) 134540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17976 ZFPM1 zinc finger protein, multitype 1 205212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17977 ZFR2 zinc finger RNA binding protein 2 397852 0 0 0 4 0 0 0 0 0 0 1.00 1.00 -17978 ZFYVE19 zinc finger, FYVE domain containing 19 321192 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17979 ZG16B 143896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17980 ZGLP1 171272 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17981 ZGPAT zinc finger, CCCH-type with G patch domain 321888 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17982 ZIC5 Zic family member 5 (odd-paired homolog, Drosophila) 180796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17983 ZMYND10 zinc finger, MYND-type containing 10 306684 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17984 ZMYND12 zinc finger, MYND-type containing 12 253120 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17985 ZNF131 zinc finger protein 131 402752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17986 ZNF155 zinc finger protein 155 365792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17987 ZNF193 zinc finger protein 193 268128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17988 ZNF232 zinc finger protein 232 302540 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17989 ZNF250 zinc finger protein 250 379904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17990 ZNF296 263256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17991 ZNF322A zinc finger protein 322A 212996 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17992 ZNF358 zinc finger protein 358 248388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17993 ZNF383 zinc finger protein 383 322868 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17994 ZNF384 zinc finger protein 384 396396 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17995 ZNF397OS zinc finger protein 397 opposite strand 329364 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17996 ZNF414 zinc finger protein 414 106148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17997 ZNF444 zinc finger protein 444 57932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17998 ZNF48 zinc finger protein 48 387576 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17999 ZNF497 zinc finger protein 497 166600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18000 ZNF503 zinc finger protein 503 244056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18001 ZNF512 zinc finger protein 512 394240 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -18002 ZNF550 zinc finger protein 550 258496 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -18003 ZNF576 zinc finger protein 576 116704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18004 ZNF580 zinc finger protein 580 36820 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18005 ZNF598 zinc finger protein 598 355824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18006 ZNF668 zinc finger protein 668 402220 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -18007 ZNF672 zinc finger protein 672 181552 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -18008 ZNF682 zinc finger protein 682 338912 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -18009 ZNF684 zinc finger protein 684 258272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18010 ZNF696 zinc finger protein 696 126952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18011 ZNF704 zinc finger protein 704 270088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18012 ZNF705D zinc finger protein 705D 66024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18013 ZNF707 zinc finger protein 707 197932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18014 ZNF740 zinc finger protein 740 135744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18015 ZNF747 zinc finger protein 747 69720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18016 ZNF764 zinc finger protein 764 215600 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -18017 ZNF775 zinc finger protein 775 156520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18018 ZNF784 zinc finger protein 784 124852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18019 ZNF785 zinc finger protein 785 247744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18020 ZNF787 zinc finger protein 787 86072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18021 ZNF8 zinc finger protein 8 383096 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -18022 ZNF816A zinc finger protein 816A 440832 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -18023 ZNHIT3 zinc finger, HIT type 3 109312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18024 ZNRD1 zinc ribbon domain containing 1 55580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18025 ZNRF1 zinc and ring finger 1 83352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18026 ZNRF2 zinc and ring finger 2 66948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18027 ZNRF3 zinc and ring finger 3 465640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18028 ZSCAN10 zinc finger and SCAN domain containing 10 308060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18029 ZSWIM7 zinc finger, SWIM-type containing 7 89152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -18030 ZXDB zinc finger, X-linked, duplicated B 388668 0 0 0 1 0 0 0 0 0 0 1.00 1.00 diff --git a/core/src/test/resources/data_structural_variants.txt b/core/src/test/resources/data_structural_variants.txt deleted file mode 100644 index 15280102a74..00000000000 --- a/core/src/test/resources/data_structural_variants.txt +++ /dev/null @@ -1,6 +0,0 @@ -Sample_Id Site1_Entrez_Gene_Id Site1_Hugo_Symbol Site1_Contig Site1_Region Site1_Region_Number Site1_Ensembl_Transcript_Id Site1_Chromosome Site1_Position Site1_Description Site2_Entrez_Gene_Id Site2_Hugo_Symbol Site2_Contig Site2_Region Site2_Region_Number Site2_Ensembl_Transcript_Id Site2_Chromosome Site2_Position Site2_Description Site2_Effect_On_Frame NCBI_Build DNA_Support RNA_Support Normal_Read_Count Tumor_Read_Count Normal_Variant_Count Tumor_Variant_Count Normal_Paired_End_Read_Count Tumor_Paired_End_Read_Count Normal_Split_Read_Count Tumor_Split_Read_Count Annotation Breakpoint_Type Connection_Type Event_Info Class SV_Length Comments cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation SV_Status StructVarNamespace.column1 StructVarNamespace.column2 StructVarNamespace2.foo -TCGA-A1-A0SB-01 NA KIAA1549 p11.2 intron 5 ENST00000242365 7 138536968 KIAA1549-BRAF.K16B10.COSF509_1 NA BRAF q14.1 exon 2 ENST00000288602 7 140482957 KIAA1549-BRAF.K16B10.COSF509_2 NA GRCh37 no yes NA 1000 NA 900 NA NA NA NA KIAA1549-BRAF.K16B10.COSF509 NA NA Fusion NA NA Gain-of-Function testdriver testdriveranno testdrivertiers testdrivertiersanno SOMATIC -TCGA-A1-A0SD-01 NA EML4 p11.2 intron 5 ENST00000318522 2 42522656 EML4-ALK.E13A20.AB462411_1 NA ALK q14.1 exon 2 ENST00000389048 2 29446335 EML4-ALK.E13A20.AB462411_2 NA GRCh37 no yes NA 1006 NA 300 NA NA NA NA EML4-ALK.E13A20 NA NA Fusion NA NA Gain-of-Function NA NA NA NA SOMATIC value1a value2a bar -TCGA-A1-A0SB-02 100781 p11.2 intron 5 ENST00000242365 7 138536968 KIAA1549-BRAF.K16B10.COSF509_1 673 q14.1 exon 2 ENST00000288602 7 140482957 KIAA1549-BRAF.K16B10.COSF509_2 NA GRCh37 no yes NA 1000 NA 900 NA NA NA NA KIAA1549-BRAF.K16B10.COSF509 NA NA Fusion NA NA Gain-of-Function testdriver testdriveranno testdrivertiers testdrivertiersanno SOMATIC -TCGA-A1-A0SB-02 673 p11.2 intron 5 ENST00000242365 7 138536968 KIAA1549-BRAF.K16B10.COSF509_1 100781 q14.1 exon 2 ENST00000288602 7 140482957 KIAA1549-BRAF.K16B10.COSF509_2 NA GRCh37 no yes NA 1000 NA 900 NA NA NA NA KIAA1549-BRAF.K16B10.COSF509 NA NA Fusion NA NA Gain-of-Function testdriver testdriveranno testdrivertiers testdrivertiersanno SOMATIC -TCGA-A1-A0SB-02 110384692 AKT1 p11.2 intron 5 ENST00000242365 7 138536968 AKT1-BRAF.K16B10.COSF509_1 100781 q14.1 exon 2 ENST00000288602 7 140482957 AKT1-BRAF.K16B10.COSF509_2 NA GRCh37 no yes NA 1000 NA 900 NA NA NA NA AKT1-BRAF.K16B10.COSF509 NA NA Fusion NA NA Gain-of-Function testdriver testdriveranno testdrivertiers testdrivertiersanno SOMATIC \ No newline at end of file diff --git a/core/src/test/resources/data_structural_variants_with_no_namespace_data.txt b/core/src/test/resources/data_structural_variants_with_no_namespace_data.txt deleted file mode 100644 index b11b485cee8..00000000000 --- a/core/src/test/resources/data_structural_variants_with_no_namespace_data.txt +++ /dev/null @@ -1,2 +0,0 @@ -Sample_Id Site1_Entrez_Gene_Id Site1_Hugo_Symbol Site1_Contig Site1_Region Site1_Region_Number Site1_Ensembl_Transcript_Id Site1_Chromosome Site1_Position Site1_Description Site2_Entrez_Gene_Id Site2_Hugo_Symbol Site2_Contig Site2_Region Site2_Region_Number Site2_Ensembl_Transcript_Id Site2_Chromosome Site2_Position Site2_Description Site2_Effect_On_Frame NCBI_Build DNA_Support RNA_Support Normal_Read_Count Tumor_Read_Count Normal_Variant_Count Tumor_Variant_Count Normal_Paired_End_Read_Count Tumor_Paired_End_Read_Count Normal_Split_Read_Count Tumor_Split_Read_Count Annotation Breakpoint_Type Connection_Type Event_Info Class SV_Length Comments cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation SV_Status -TCGA-A1-A0SD-01 NA EML4 p11.2 intron 5 ENST00000318522 2 42522656 EML4-ALK.E13A20.AB462411_1 NA ALK q14.1 exon 2 ENST00000389048 2 29446335 EML4-ALK.E13A20.AB462411_2 NA GRCh37 no yes NA 1006 NA 300 NA NA NA NA EML4-ALK.E13A20 NA NA Fusion NA NA Gain-of-Function NA NA NA NA SOMATIC diff --git a/core/src/test/resources/data_structural_variants_with_unspecified_namespace.txt b/core/src/test/resources/data_structural_variants_with_unspecified_namespace.txt deleted file mode 100644 index 79d9e0c0943..00000000000 --- a/core/src/test/resources/data_structural_variants_with_unspecified_namespace.txt +++ /dev/null @@ -1,2 +0,0 @@ -Sample_Id Site1_Entrez_Gene_Id Site1_Hugo_Symbol Site1_Contig Site1_Region Site1_Region_Number Site1_Ensembl_Transcript_Id Site1_Chromosome Site1_Position Site1_Description Site2_Entrez_Gene_Id Site2_Hugo_Symbol Site2_Contig Site2_Region Site2_Region_Number Site2_Ensembl_Transcript_Id Site2_Chromosome Site2_Position Site2_Description Site2_Effect_On_Frame NCBI_Build DNA_Support RNA_Support Normal_Read_Count Tumor_Read_Count Normal_Variant_Count Tumor_Variant_Count Normal_Paired_End_Read_Count Tumor_Paired_End_Read_Count Normal_Split_Read_Count Tumor_Split_Read_Count Annotation Breakpoint_Type Connection_Type Event_Info Class SV_Length Comments cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation SV_Status StructVarNamespace.column1 StructVarNamespace.column2 StructVarNamespace2.foo FaultyStructVarNamespace.shouldNotBeImported -TCGA-A1-A0SD-01 NA EML4 p11.2 intron 5 ENST00000318522 2 42522656 EML4-ALK.E13A20.AB462411_1 NA ALK q14.1 exon 2 ENST00000389048 2 29446335 EML4-ALK.E13A20.AB462411_2 NA GRCh37 no yes NA 1006 NA 300 NA NA NA NA EML4-ALK.E13A20 NA NA Fusion NA NA Gain-of-Function NA NA NA NA SOMATIC value1a value2a bar ignored diff --git a/core/src/test/resources/demoScript.xml b/core/src/test/resources/demoScript.xml deleted file mode 100644 index 5cbac5c219b..00000000000 --- a/core/src/test/resources/demoScript.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - org.mskcc.cbio.portal.scripts.ImportCancerStudy - src/test/resources/cancer_study.txt - - - - - org.mskcc.cbio.portal.scripts.ImportClinicalData - --data - src/test/resources/clinical_data.txt - --meta - src/test/resources/clinical_meta.txt - --study - test_brca - --loadMode - bulkLoad - - - - - - \ No newline at end of file diff --git a/core/src/test/resources/dna_repair.txt b/core/src/test/resources/dna_repair.txt deleted file mode 100644 index 39f7fe2482b..00000000000 --- a/core/src/test/resources/dna_repair.txt +++ /dev/null @@ -1,157 +0,0 @@ -7486 -7157 -2074 -328 -6996 -4968 -4350 -23583 -10309 -7374 -79661 -2073 -1161 -2071 -56949 -2068 -2067 -2072 -4913 -5886 -64210 -27343 -675 -4287 -8846 -10111 -83990 -23064 -4683 -2237 -10524 -6647 -10519 -5885 -7415 -11044 -2956 -4595 -5422 -5426 -5424 -5429 -5983 -10714 -1032 -56897 -3148 -100130561 -3146 -8930 -7518 -3981 -7141 -54840 -672 -7334 -1054 -387522 -7336 -4436 -55339 -7320 -7319 -5888 -4221 -641 -3978 -143 -142 -5889 -5890 -3980 -9401 -9400 -546 -25842 -5976 -23054 -8243 -7153 -2189 -56852 -11284 -5810 -10635 -11232 -6117 -2968 -10432 -5427 -11201 -23411 -5965 -10856 -1454 -472 -7298 -1137 -10912 -3364 -2965 -10039 -2176 -7832 -545 -7341 -5884 -1453 -5932 -5111 -5984 -2175 -4331 -11219 -5883 -51065 -55775 -5985 -84268 -1647 -51426 -7405 -7516 -7517 -6188 -25 -4437 -9156 -5395 -5378 -27030 -4292 -11277 -7161 -4439 -5428 -51455 -5582 -6118 -6119 -5981 -5982 -5425 -100128414 -1642 -1643 -7508 -2967 -7507 -5887 -2966 -1022 -902 -4361 -2547 -91419 -79840 \ No newline at end of file diff --git a/core/src/test/resources/gene-length_test.txt b/core/src/test/resources/gene-length_test.txt deleted file mode 100644 index 9793fb53abc..00000000000 --- a/core/src/test/resources/gene-length_test.txt +++ /dev/null @@ -1,12 +0,0 @@ -chr6 HAVANA exon 10000 11000 . + . gene_id "ENSG00000111111.5"; transcript_id "ENST00000450305.2"; gene_type "transcribed_unprocessed_pseudogene"; gene_status "KNOWN"; gene_name "AGER"; transcript_type "transcribed_unprocessed_pseudogene"; transcript_status "KNOWN"; transcript_name "DDX11L1-001"; exon_number 5; exon_id "ENSE00001746346.2"; level 2; ont "PGO:0000005"; ont "PGO:0000019"; tag "basic"; transcript_support_level "NA"; havana_gene "OTTHUMG00000000961.2"; havana_transcript "OTTHUMT00000002844.2"; remap_original_location "chr1:+:13221-13374"; remap_status "full_contig"; -chr1 HAVANA exon 13221 13374 . + . gene_id "ENSG00000223972.5"; transcript_id "ENST00000450305.2"; gene_type "transcribed_unprocessed_pseudogene"; gene_status "KNOWN"; gene_name "ABCA4"; transcript_type "transcribed_unprocessed_pseudogene"; transcript_status "KNOWN"; transcript_name "DDX11L1-001"; exon_number 5; exon_id "ENSE00001746346.2"; level 2; ont "PGO:0000005"; ont "PGO:0000019"; tag "basic"; transcript_support_level "NA"; havana_gene "OTTHUMG00000000961.2"; havana_transcript "OTTHUMT00000002844.2"; remap_original_location "chr1:+:13221-13374"; remap_status "full_contig"; -chr1 HAVANA exon 13453 13670 . + . gene_id "ENSG00000223972.5"; transcript_id "ENST00000450305.2"; gene_type "transcribed_unprocessed_pseudogene"; gene_status "KNOWN"; gene_name "ABCA4"; transcript_type "transcribed_unprocessed_pseudogene"; transcript_status "KNOWN"; transcript_name "DDX11L1-001"; exon_number 6; exon_id "ENSE00001863096.1"; level 2; ont "PGO:0000005"; ont "PGO:0000019"; tag "basic"; transcript_support_level "NA"; havana_gene "OTTHUMG00000000961.2"; havana_transcript "OTTHUMT00000002844.2"; remap_original_location "chr1:+:13453-13670"; remap_status "full_contig"; -chr8 HAVANA exon 13404 29570 . - . gene_id "ENSG00000227232.5"; gene_type "unprocessed_pseudogene"; gene_status "KNOWN"; gene_name "AACP"; level 2; havana_gene "OTTHUMG00000000958.1"; remap_status "full_contig"; remap_num_mappings 1; remap_target_status "overlap"; -chr8 HAVANA transcript 29671 29770 . - . gene_id "ENSG00000227232.5"; transcript_id "ENST00000488147.1"; gene_type "unprocessed_pseudogene"; gene_status "KNOWN"; gene_name "AACP"; transcript_type "unprocessed_pseudogene"; transcript_status "KNOWN"; transcript_name "WASH7P-001"; level 2; ont "PGO:0000005"; tag "basic"; transcript_support_level "NA"; havana_gene "OTTHUMG00000000958.1"; havana_transcript "OTTHUMT00000002839.1"; remap_num_mappings 1; remap_status "full_contig"; remap_target_status "overlap"; -chr8 HAVANA exon 29524 29570 . - . gene_id "ENSG00000227232.5"; transcript_id "ENST00000488147.1"; gene_type "unprocessed_pseudogene"; gene_status "KNOWN"; gene_name "AACP"; transcript_type "unprocessed_pseudogene"; transcript_status "KNOWN"; transcript_name "WASH7P-001"; exon_number 1; exon_id "ENSE00001890219.1"; level 2; ont "PGO:0000005"; tag "basic"; transcript_support_level "NA"; havana_gene "OTTHUMG00000000958.1"; havana_transcript "OTTHUMT00000002839.1"; remap_original_location "chr1:-:29534-29570"; remap_status "full_contig"; -chr8 HAVANA exon 29534 29670 . - . gene_id "ENSG00000227232.5"; transcript_id "ENST00000488147.1"; gene_type "unprocessed_pseudogene"; gene_status "KNOWN"; gene_name "AACP"; transcript_type "unprocessed_pseudogene"; transcript_status "KNOWN"; transcript_name "WASH7P-001"; exon_number 1; exon_id "ENSE00001890219.1"; level 2; ont "PGO:0000005"; tag "basic"; transcript_support_level "NA"; havana_gene "OTTHUMG00000000958.1"; havana_transcript "OTTHUMT00000002839.1"; remap_original_location "chr1:-:29534-29570"; remap_status "full_contig"; -chr16 HAVANA exon 227615 228776 . - . gene_id "ENSG00000228463.9"; transcript_id "ENST00000442116.1"; gene_type "lincRNA"; gene_status "KNOWN"; gene_name "AARS"; transcript_type "lincRNA"; transcript_status "KNOWN"; transcript_name "AP006222.2-003"; exon_number 2; exon_id "ENSE00001677641.1"; level 2; transcript_support_level 5; havana_gene "OTTHUMG00000002553.3"; havana_transcript "OTTHUMT00000007244.1"; remap_original_location "chr1:-:257864-259025"; remap_status "full_contig"; -chr16 HAVANA exon 327615 328777 . - . gene_id "ENSG00000228464.9"; transcript_id "ENST00000442116.1"; gene_type "lincRNA"; gene_status "KNOWN"; gene_name "AARS"; transcript_type "lincRNA"; transcript_status "KNOWN"; transcript_name "AP006222.2-003"; exon_number 2; exon_id "ENSE00001677641.1"; level 2; transcript_support_level 5; havana_gene "OTTHUMG00000002553.3"; havana_transcript "OTTHUMT00000007244.1"; remap_original_location "chr1:-:257864-259025"; remap_status "full_contig"; -chr2 HAVANA exon 427615 428778 . - . gene_id "ENSG00000228465.9"; transcript_id "ENST00000442116.1"; gene_type "lincRNA"; gene_status "KNOWN"; gene_name "AARS"; transcript_type "lincRNA"; transcript_status "KNOWN"; transcript_name "AP006222.2-003"; exon_number 2; exon_id "ENSE00001677641.1"; level 2; transcript_support_level 5; havana_gene "OTTHUMG00000002553.3"; havana_transcript "OTTHUMT00000007244.1"; remap_original_location "chr1:-:257864-259025"; remap_status "full_contig"; -chr3 HAVANA exon 450000 450100 . - . gene_id "ENSG00000333336.9"; transcript_id "ENST00000442116.1"; gene_type "lincRNA"; gene_status "KNOWN"; gene_name "MED28P8"; transcript_type "lincRNA"; transcript_status "KNOWN"; transcript_name "AP006222.2-003"; exon_number 2; exon_id "ENSE00001677641.1"; level 2; transcript_support_level 5; havana_gene "OTTHUMG00000002553.3"; havana_transcript "OTTHUMT00000007244.1"; remap_original_location "chr1:-:257864-259025"; remap_status "full_contig"; -chr4 HAVANA exon 550000 550200 . - . gene_id "ENSG00000333337.9"; transcript_id "ENST00000442116.1"; gene_type "lincRNA"; gene_status "KNOWN"; gene_name "MED28P8"; transcript_type "lincRNA"; transcript_status "KNOWN"; transcript_name "AP006222.2-003"; exon_number 2; exon_id "ENSE00001677641.1"; level 2; transcript_support_level 5; havana_gene "OTTHUMG00000002553.3"; havana_transcript "OTTHUMT00000007244.1"; remap_original_location "chr1:-:257864-259025"; remap_status "full_contig"; diff --git a/core/src/test/resources/gene_set_test.txt b/core/src/test/resources/gene_set_test.txt deleted file mode 100644 index 59784fd7166..00000000000 --- a/core/src/test/resources/gene_set_test.txt +++ /dev/null @@ -1,15 +0,0 @@ -@title=Sample Title -!Sample Gene Set 1 -AKT1 -AKT2 -AKT3 -!Sample Gene Set 2 -ARAF -ATM -!Sample Gene Set 3 -BRAF -BRCA1 -BRCA2 -!Sample Gene Set 4 -BRCA1 -RAS = HRAS, NRAS, KRAS diff --git a/core/src/test/resources/gene_sets.txt b/core/src/test/resources/gene_sets.txt deleted file mode 100644 index 355b40facba..00000000000 --- a/core/src/test/resources/gene_sets.txt +++ /dev/null @@ -1,22 +0,0 @@ -Prostate Cancer: AR Signaling=SOX9 RAN TNK2 EP300 PXN NCOA2 AR NRIP1 NCOR1 NCOR2 -Prostate Cancer: AR and steroid synthesis enzymes=AKR1C3 AR CYB5A CYP11A1 CYP11B1 CYP11B2 CYP17A1 CYP19A1 CYP21A2 HSD17B1 HSD17B10 HSD17B11 HSD17B12 HSD17B13 HSD17B14 HSD17B2 HSD17B3 HSD17B4 HSD17B6 HSD17B7 HSD17B8 HSD3B1 HSD3B2 HSD3B7 RDH5 SHBG SRD5A1 SRD5A2 SRD5A3 STAR -Prostate Cancer: Steroid inactivating genes=AKR1C1 AKR1C2 AKR1C4 CYP3A4 CYP3A43 CYP3A5 CYP3A7 UGT2B15 UGT2B17 UGT2B7 -Prostate Cancer: Down-regulated by androgen=BCHE CDK8 CTBP1 CXCR7 DDC DPH1 FN1 HES6 MMP16 MYC PEG3 PIK3R3 PRKD1 SCNN1A SDC4 SERPINI1 SLC29A1 ST7 TULP4 -Glioblastoma: TP53 Pathway=CDKN2A MDM2 MDM4 TP53 -Glioblastoma: RTK/Ras/PI3K/AKT Signaling=EGFR ERBB2 PDGFRA MET KRAS NRAS HRAS NF1 SPRY2 FOXO1 FOXO3 AKT1 AKT2 AKT3 PIK3R1 PIK3CA PTEN -Glioblastoma: RB Pathway=CDKN2A CDKN2B CDKN2C CDK4 CDK6 CCND2 RB1 -Ovarian Cancer: Oncogenes associated with epithelial ovarian cancer=RAB25 EVI1 EIF5A2 PRKCI PIK3CA KIT FGF1 MYC EGFR NOTCH3 KRAS AKT1 ERBB2 PIK3R1 CCNE1 AKT2 AURKA -Ovarian Cancer: Putative tumor-suppressor genes in epithelial ovarian cancer=DIRAS3 RASSF1 DLEC1 SPARC DAB2 PLAGL1 RPS6KA2 PTEN OPCML BRCA2 ARL11 WWOX TP53 DPH1 BRCA1 PEG3 -General: Cell Cycle Control=RB1 RBL1 RBL2 CCNA1 CCNB1 CDC2 CCNE1 CDK2 CDC25A CCND1 CDK4 CDK6 CCND2 CDKN2A CDKN2B MYC CDKN1A CDKN1B E2F1 E2F2 E2F3 E2F4 E2F5 E2F6 E2F7 E2F8 SRC JAK1 JAK2 STAT1 STAT2 STAT3 STAT5A STAT5B -General: p53 signaling=TP53 MDM2 MDM4 CDKN2A CDKN2B TP53BP1 -General: DNA Damage Response=CHEK1 CHEK2 RAD51 BRCA1 BRCA2 MLH1 MSH2 ATM ATR MDC1 PARP1 FANCF -General: Other growth / proliferation signaling=CSF1 CSF1R IGF1 IGF1R FGF1 FGFR1 AURKA DLEC1 PLAGL1 OPCML DPH1 -General: Survival / cell death regulation signaling=NFKB1 NFKB2 CHUK DIRAS3 FAS HLA-G BAD BCL2 BCL2L1 APAF1 CASP9 CASP8 CASP10 CASP3 CASP6 CASP7 GSK3B ARL11 WWOX PEG3 TGFB1 TGFBR1 TGFBR2 -General: Telomere maintenance=TERC TERT -General: RTK signaling family=EGFR ERBB2 ERBB3 ERBB4 PDGFA PDGFB PDGFRA PDGFRB KIT FGF1 FGFR1 IGF1 IGF1R VEGFA VEGFB KDR -General: PI3K-AKT-mTOR signaling=PIK3CA PIK3R1 PIK3R2 PTEN PDPK1 AKT1 AKT2 FOXO1 FOXO3 FRAP1 RICTOR TSC1 TSC2 RHEB AKT1S1 KIAA1303 GBL -General: Ras-Raf-MEK-Erk/JNK signaling=KRAS HRAS BRAF RAF1 MAP3K1 MAP3K2 MAP3K3 MAP3K4 MAP3K5 MAP2K1 MAP2K2 MAP2K3 MAP2K4 MAP2K5 MAPK1 MAPK3 MAPK4 MAPK6 MAPK7 MAPK8 MAPK9 MAPK12 MAPK14 DAB2 RASSF1 RAB25 -General: Regulation of ribosomal protein synthesis and cell growth=RPS6KA1 RPS6KA2 RPS6KB1 RPS6KB2 EIF5A2 EIF4E EIF4EBP1 RPS6 HIF1A -General: Angiogenesis=VEGFA VEGFB KDR IL8 IL8RA IL8RB -General: Folate transport=SLC19A1 FOLR1 FOLR2 FOLR3 FOLR4 -General: Invasion and metastasis=MMP1 MMP2 MMP3 MMP7 MMP9 MMP10 MMP11 MMP12 MMP13 MMP14 MMP15 MMP16 MMP17 MMP19 MMP21 MMP23B MMP24 MMP25 MMP26 MMP27 MMP28 ITGB3 ITGAV PTK2 CDH1 SPARC WFDC2 diff --git a/core/src/test/resources/genes_test.txt b/core/src/test/resources/genes_test.txt deleted file mode 100644 index 03e84e05821..00000000000 --- a/core/src/test/resources/genes_test.txt +++ /dev/null @@ -1,22 +0,0 @@ -#tax_id GeneID Symbol LocusTag Synonyms dbXrefs chromosome map_location description type_of_gene Symbol_from_nomenclature_authority Full_name_from_nomenclature_authority Nomenclature_status Other_designations Modification_date -9606 1 A1BG - A1B|ABG|GAB|HYST2477 HGNC:5|MIM:138670|Ensembl:ENSG00000121410|HPRD:00726 19 19q13.4 alpha-1-B glycoprotein protein-coding A1BG alpha-1-B glycoprotein O alpha-1B-glycoprotein 20121230 -9606 2 A2M - A2MD|CPAMD5|FWP007|S863-7 HGNC:7|MIM:103950|Ensembl:ENSG00000175899|HPRD:00072|Vega:OTTHUMG00000150267 12 12p13.31 alpha-2-macroglobulin protein-coding A2M alpha-2-macroglobulin O C3 and PZP-like alpha-2-macroglobulin domain-containing protein 5|alpha-2-M 20121230 -9606 3 A2MP1 - A2MP HGNC:8 12 12p13.31 alpha-2-macroglobulin pseudogene 1 pseudo A2MP1 alpha-2-macroglobulin pseudogene 1 O - 20121230 -9606 9 NAT1 - AAC1|MNAT|NAT-1|NATI HGNC:7645|MIM:108345|Ensembl:ENSG00000171428|HPRD:00149|Vega:OTTHUMG00000097001 8 8p22 N-acetyltransferase 1 (arylamine N-acetyltransferase) protein-coding NAT1 N-acetyltransferase 1 (arylamine N-acetyltransferase) O N-acetyltransferase type 1|arylamide acetylase 1|arylamine N-acetyltransferase 1|monomorphic arylamine N-acetyltransferase 20121230 -9606 10 NAT2 - AAC2|NAT-2|PNAT HGNC:7646|MIM:612182|Ensembl:ENSG00000156006|HPRD:02000|Vega:OTTHUMG00000130826 8 8p22 N-acetyltransferase 2 (arylamine N-acetyltransferase) protein-coding NAT2 N-acetyltransferase 2 (arylamine N-acetyltransferase) O N-acetyltransferase type 2|arylamide acetylase 2|arylamine N-acetyltransferase 2 20121230 -9606 11 AACP - NATP HGNC:15 8 8p22 arylamide acetylase pseudogene pseudo AACP arylamide acetylase pseudogene O - 20121230 -9606 12 SERPINA3 GIG24 AACT|ACT|GIG25 HGNC:16|MIM:107280|Ensembl:ENSG00000196136|HPRD:00120|Vega:OTTHUMG00000029851 14 14q32.1 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 3 protein-coding SERPINA3 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 3 O alpha-1-antichymotrypsin|cell growth-inhibiting gene 24/25 protein|growth-inhibiting protein 24|growth-inhibiting protein 25|serine (or cysteine) proteinase inhibitor, clade A, member 3|serpin A3 20121230 -9606 13 AADAC - CES5A1|DAC HGNC:17|MIM:600338|Ensembl:ENSG00000114771|HPRD:02640|Vega:OTTHUMG00000159876 3 3q25.1 arylacetamide deacetylase protein-coding AADAC arylacetamide deacetylase O arylacetamide deacetylase (esterase) 20121230 -9606 14 AAMP - - HGNC:18|MIM:603488|Ensembl:ENSG00000127837|HPRD:04600|Vega:OTTHUMG00000155202 2 2q35 angio-associated, migratory cell protein protein-coding AAMP angio-associated, migratory cell protein O angio-associated migratory cell protein 20121230 -9606 15 AANAT - DSPS|SNAT HGNC:19|MIM:600950|Ensembl:ENSG00000129673|HPRD:02974|Vega:OTTHUMG00000180179 17 17q25 aralkylamine N-acetyltransferase protein-coding AANAT aralkylamine N-acetyltransferase O arylalkylamine N-acetyltransferase|serotonin N-acetyltransferase|serotonin acetylase 20121230 -9606 16 AARS - CMT2N HGNC:20|MIM:601065|Ensembl:ENSG00000090861|HPRD:03042|Vega:OTTHUMG00000177042 16 16q22 alanyl-tRNA synthetase protein-coding AARS alanyl-tRNA synthetase O alaRS|alanine tRNA ligase 1, cytoplasmic|alanine--tRNA ligase, cytoplasmic|alanyl-tRNA synthetase, cytoplasmic|renal carcinoma antigen NY-REN-42 20121230 -9606 17 AAVS1 - AAV HGNC:22|MIM:102699 19 19q13|19q13-qter adeno-associated virus integration site 1 other AAVS1 adeno-associated virus integration site 1 O - 20111027 -9606 18 ABAT hCG_1984265 GABA-AT|GABAT|NPD009 HGNC:23|MIM:137150|Ensembl:ENSG00000183044|HPRD:00661|Vega:OTTHUMG00000048201 16 16p13.2 4-aminobutyrate aminotransferase protein-coding ABAT 4-aminobutyrate aminotransferase O (S)-3-amino-2-methylpropionate transaminase|4-aminobutyrate aminotransferase, mitochondrial|4-aminobutyrate transaminase|GABA aminotransferase|GABA transaminase|GABA transferase|gamma-amino-N-butyrate transaminase 20121230 -9606 19 ABCA1 - ABC-1|ABC1|CERP|HDLDT1|TGD HGNC:29|MIM:600046|Ensembl:ENSG00000165029|HPRD:02501|Vega:OTTHUMG00000020417 9 9q31.1 ATP-binding cassette, sub-family A (ABC1), member 1 protein-coding ABCA1 ATP-binding cassette, sub-family A (ABC1), member 1 O ATP-binding cassette sub-family A member 1|ATP-binding cassette transporter A1|cholesterol efflux regulatory protein|membrane-bound 20121230 -9606 20 ABCA2 RP11-229P13.8 ABC2 HGNC:32|MIM:600047|Ensembl:ENSG00000107331|HPRD:08967|Vega:OTTHUMG00000020958 9 9q34 ATP-binding cassette, sub-family A (ABC1), member 2 protein-coding ABCA2 ATP-binding cassette, sub-family A (ABC1), member 2 O ATP-binding cassette 2|ATP-binding cassette sub-family A member 2|ATP-binding cassette transporter 2|ATP-binding cassette, sub-family A, member 2 20121230 -9606 21 ABCA3 - ABC-C|ABC3|EST111653|LBM180|SMDP3 HGNC:33|MIM:601615|Ensembl:ENSG00000167972|HPRD:03369|Vega:OTTHUMG00000128845 16 16p13.3 ATP-binding cassette, sub-family A (ABC1), member 3 protein-coding ABCA3 ATP-binding cassette, sub-family A (ABC1), member 3 O ABC transporter 3|ABC-C transporter|ATP-binding cassette sub-family A member 3|ATP-binding cassette transporter 3 20121230 -9606 22 ABCB7 - ABC7|ASAT|Atm1p|EST140535 HGNC:48|MIM:300135|Ensembl:ENSG00000131269|HPRD:02137|Vega:OTTHUMG00000021862 X Xq13.3 ATP-binding cassette, sub-family B (MDR/TAP), member 7 protein-coding ABCB7 ATP-binding cassette, sub-family B (MDR/TAP), member 7 O ABC transporter 7 protein|ATP-binding cassette sub-family B member 7, mitochondrial|ATP-binding cassette transporter 7 20121230 -9606 23 ABCF1 DADB-129D20.7 ABC27|ABC50 HGNC:70|MIM:603429|Ensembl:ENSG00000204574|HPRD:09139|Vega:OTTHUMG00000031094 6 6p21.33 ATP-binding cassette, sub-family F (GCN20), member 1 protein-coding ABCF1 ATP-binding cassette, sub-family F (GCN20), member 1 O ATP-binding cassette 50 (TNF-alpha stimulated)|ATP-binding cassette sub-family F member 1|TNF-alpha-stimulated ABC protein|TNFalpha-inducible ATP-binding protein 20121230 -9606 24 ABCA4 - ABC10|ABCR|ARMD2|CORD3|FFM|RMP|RP19|STGD|STGD1 HGNC:34|MIM:601691|Ensembl:ENSG00000198691|HPRD:03408|Vega:OTTHUMG00000010622 1 1p22 ATP-binding cassette, sub-family A (ABC1), member 4 protein-coding ABCA4 ATP-binding cassette, sub-family A (ABC1), member 4 O ATP binding cassette transporter|ATP-binding cassette sub-family A member 4|ATP-binding cassette transporter, retinal-specific|ATP-binding transporter, retina-specific|RIM ABC transporter|RIM protein|photoreceptor rim protein|retina-specific ABC transporter|retinal-specific ATP-binding cassette transporter|stargardt disease protein 20121230 -9606 25 MED28P8 - - HGNC:HGNC:45085 1 - mediator complex subunit 28 pseudogene 8 pseudo MED28P8 mediator complex subunit 28 pseudogene 8 O - 20160730 -9606 26 AGER - RAGE|SCARJ1 MIM:600214|HGNC:HGNC:320|Ensembl:ENSG00000204305|HPRD:02568|Vega:OTTHUMG00000031120 6 6p21.3 advanced glycosylation end-product specific receptor protein-coding AGER advanced glycosylation end-product specific receptor O advanced glycosylation end product-specific receptor|RAGE isoform NtRAGE-delta|RAGE isoform sRAGE-delta|receptor for advanced glycation end-products variant 20 20160904 diff --git a/core/src/test/resources/genesets/unit-test-geneset-hierarchy_genesets.gmt b/core/src/test/resources/genesets/unit-test-geneset-hierarchy_genesets.gmt deleted file mode 100644 index c2527bded5a..00000000000 --- a/core/src/test/resources/genesets/unit-test-geneset-hierarchy_genesets.gmt +++ /dev/null @@ -1,7 +0,0 @@ -UNITTEST_GENESET1 http://www.broadinstitute.org/gsea/msigdb/cards/GLI1_UP.V1_DN 207 208 -UNITTEST_GENESET2 http://www.broadinstitute.org/gsea/msigdb/cards/GLI1_UP.V1_UP 672 673 675 -UNITTEST_GENESET3 http://www.broadinstitute.org/gsea/msigdb/cards/E2F1_UP.V1_DN 207 472 -UNITTEST_GENESET4 http://www.broadinstitute.org/gsea/msigdb/cards/E2F1_UP.V1_UP 675 673 -UNITTEST_GENESET5 http://www.broadinstitute.org/gsea/msigdb/cards/EGFR_UP.V1_DN 207 472 208 3265 -UNITTEST_GENESET8 http://www.broadinstitute.org/gsea/msigdb/cards/ERB2_UP.V1_UP 10000 -UNITTEST_GENESET10 http://www.broadinstitute.org/gsea/msigdb/cards/GCNP_SHH_UP_EARLY.V1_UP 4893 207 208 diff --git a/core/src/test/resources/genesets/unit-test-geneset-hierarchy_tree.yaml b/core/src/test/resources/genesets/unit-test-geneset-hierarchy_tree.yaml deleted file mode 100644 index 1da934485fc..00000000000 --- a/core/src/test/resources/genesets/unit-test-geneset-hierarchy_tree.yaml +++ /dev/null @@ -1,15 +0,0 @@ -Custom Gene sets: - Gene sets: - - UNITTEST_GENESET1 -Different Gene sets from Random Institute: - Gene sets: - - UNITTEST_GENESET2 - - UNITTEST_GENESET3 - Institutes Subcategory 1: - Gene sets: - - UNITTEST_GENESET4 - Institutes Subcategory 2: - Gene sets: - - UNITTEST_GENESET1 - - UNITTEST_GENESET8 - - UNITTEST_GENESET10 diff --git a/core/src/test/resources/genesets/unit-test1_genesets.gmt b/core/src/test/resources/genesets/unit-test1_genesets.gmt deleted file mode 100644 index 67b54002a58..00000000000 --- a/core/src/test/resources/genesets/unit-test1_genesets.gmt +++ /dev/null @@ -1,10 +0,0 @@ -UNITTEST_GENESET1 http://www.broadinstitute.org/gsea/msigdb/cards/GLI1_UP.V1_DN 207 208 -UNITTEST_GENESET2 http://www.broadinstitute.org/gsea/msigdb/cards/GLI1_UP.V1_UP 672 673 675 -UNITTEST_GENESET3 http://www.broadinstitute.org/gsea/msigdb/cards/E2F1_UP.V1_DN 207 472 -UNITTEST_GENESET4 http://www.broadinstitute.org/gsea/msigdb/cards/E2F1_UP.V1_UP 675 673 -UNITTEST_GENESET5 http://www.broadinstitute.org/gsea/msigdb/cards/EGFR_UP.V1_DN 207 472 208 3265 -UNITTEST_GENESET6 http://www.broadinstitute.org/gsea/msigdb/cards/EGFR_UP.V1_UP 1 207 208 -UNITTEST_GENESET7 http://www.broadinstitute.org/gsea/msigdb/cards/ERB2_UP.V1_DN 1 2 3 -UNITTEST_GENESET8 http://www.broadinstitute.org/gsea/msigdb/cards/ERB2_UP.V1_UP 10000 -UNITTEST_GENESET9 http://www.broadinstitute.org/gsea/msigdb/cards/GCNP_SHH_UP_EARLY.V1_DN 20000 675 -UNITTEST_GENESET10 http://www.broadinstitute.org/gsea/msigdb/cards/GCNP_SHH_UP_EARLY.V1_UP 4893 207 208 diff --git a/core/src/test/resources/genesets/unit-test1_supp-genesets.txt b/core/src/test/resources/genesets/unit-test1_supp-genesets.txt deleted file mode 100644 index 0f69a630a94..00000000000 --- a/core/src/test/resources/genesets/unit-test1_supp-genesets.txt +++ /dev/null @@ -1,10 +0,0 @@ -UNITTEST_GENESET1 UNITTEST_GENESET1 Genes down-regulated in RK3E cells (kidney epithelium) over-expressing GLI1 [GeneID=2735]. -UNITTEST_GENESET2 UNITTEST_GENESET2 Genes up-regulated in RK3E cells (kidney epithelium) over-expressing GLI1 [GeneID=2735]. -UNITTEST_GENESET3 UNITTEST_GENESET3 Genes down-regulated in mouse fibroblasts over-expressing E2F1 [GeneID=1869] gene. -UNITTEST_GENESET4 UNITTEST_GENESET4 Genes up-regulated in mouse fibroblasts over-expressing E2F1 [GeneID=1869] gene. -UNITTEST_GENESET5 UNITTEST_GENESET5 Genes down-regulated in MCF-7 cells (breast cancer) positive for ESR1 [GeneID=2099] and engineered to express ligand-activatable EGFR [GeneID=1956]. -UNITTEST_GENESET6 UNITTEST_GENESET6 Genes up-regulated in MCF-7 cells (breast cancer) positive for ESR1 [GeneID=2099] and engineered to express ligand-activatable EGFR [GeneID=1956]. -UNITTEST_GENESET7 UNITTEST_GENESET7 Genes down-regulated in MCF-7 cells (breast cancer) positive for ESR1 [GeneID=2099] and engineered to express ligand-activatable ERBB2 [GeneID=2064]. -UNITTEST_GENESET8 UNITTEST_GENESET8 Genes up-regulated in MCF-7 cells (breast cancer) positive for ESR1 [GeneID=2099] and engineered to express ligand-activatable ERBB2 [GeneID=2064]. -UNITTEST_GENESET9 UNITTEST_GENESET9 Genes down-regulated in granule cell neuron precursors (GCNPs) after stimulation with Shh for 3h. -UNITTEST_GENESET10 UNITTEST_GENESET10 Genes up-regulated in granule cell neuron precursors (GCNPs) after stimulation with Shh for 3h. diff --git a/core/src/test/resources/genesets/unit-test2_genesets.gmt b/core/src/test/resources/genesets/unit-test2_genesets.gmt deleted file mode 100644 index 64ba7b7d0b4..00000000000 --- a/core/src/test/resources/genesets/unit-test2_genesets.gmt +++ /dev/null @@ -1,10 +0,0 @@ -UNITTEST_GENESET1 http://www.thehyve.nl/ 206 208 -UNITTEST_GENESET2 http://www.broadinstitute.org/gsea/msigdb/cards/GLI1_UP.V1_UP 672 673 675 -UNITTEST_GENESET3 http://www.broadinstitute.org/gsea/msigdb/cards/E2F1_UP.V1_DN 207 472 -UNITTEST_GENESET4 http://www.broadinstitute.org/gsea/msigdb/cards/E2F1_UP.V1_UP 675 673 -UNITTEST_GENESET5 http://www.broadinstitute.org/gsea/msigdb/cards/EGFR_UP.V1_DN 207 472 208 3265 -UNITTEST_GENESET6 http://www.broadinstitute.org/gsea/msigdb/cards/EGFR_UP.V1_UP 1 207 208 -UNITTEST_GENESET7 http://www.broadinstitute.org/gsea/msigdb/cards/ERB2_UP.V1_DN 1 2 3 -UNITTEST_GENESET8 http://www.broadinstitute.org/gsea/msigdb/cards/ERB2_UP.V1_UP 10000 -UNITTEST_GENESET9 http://www.broadinstitute.org/gsea/msigdb/cards/GCNP_SHH_UP_EARLY.V1_DN 20000 675 -UNITTEST_GENESET10 http://www.broadinstitute.org/gsea/msigdb/cards/GCNP_SHH_UP_EARLY.V1_UP 4893 207 208 diff --git a/core/src/test/resources/genesets/unit-test2_supp-genesets.txt b/core/src/test/resources/genesets/unit-test2_supp-genesets.txt deleted file mode 100644 index 587f0238315..00000000000 --- a/core/src/test/resources/genesets/unit-test2_supp-genesets.txt +++ /dev/null @@ -1,10 +0,0 @@ -UNITTEST_GENESET1 Thought of new nice name for this geneset Genes down-regulated in RK3E cells (kidney epithelium) over-expressing GLI1 [GeneID=2735]. -UNITTEST_GENESET2 UNITTEST_GENESET2 A made up description is suited for this a fake gene. -UNITTEST_GENESET3 UNITTEST_GENESET3 Genes down-regulated in mouse fibroblasts over-expressing E2F1 [GeneID=1869] gene. -UNITTEST_GENESET4 UNITTEST_GENESET4 Genes up-regulated in mouse fibroblasts over-expressing E2F1 [GeneID=1869] gene. -UNITTEST_GENESET5 UNITTEST_GENESET5 Genes down-regulated in MCF-7 cells (breast cancer) positive for ESR1 [GeneID=2099] and engineered to express ligand-activatable EGFR [GeneID=1956]. -UNITTEST_GENESET6 UNITTEST_GENESET6 Genes up-regulated in MCF-7 cells (breast cancer) positive for ESR1 [GeneID=2099] and engineered to express ligand-activatable EGFR [GeneID=1956]. -UNITTEST_GENESET7 UNITTEST_GENESET7 Genes down-regulated in MCF-7 cells (breast cancer) positive for ESR1 [GeneID=2099] and engineered to express ligand-activatable ERBB2 [GeneID=2064]. -UNITTEST_GENESET8 UNITTEST_GENESET8 Genes up-regulated in MCF-7 cells (breast cancer) positive for ESR1 [GeneID=2099] and engineered to express ligand-activatable ERBB2 [GeneID=2064]. -UNITTEST_GENESET9 UNITTEST_GENESET9 Genes down-regulated in granule cell neuron precursors (GCNPs) after stimulation with Shh for 3h. -UNITTEST_GENESET10 UNITTEST_GENESET10 Genes up-regulated in granule cell neuron precursors (GCNPs) after stimulation with Shh for 3h. diff --git a/core/src/test/resources/genetic_profile_test.txt b/core/src/test/resources/genetic_profile_test.txt deleted file mode 100644 index 8f0d4e767b1..00000000000 --- a/core/src/test/resources/genetic_profile_test.txt +++ /dev/null @@ -1,7 +0,0 @@ -cancer_study_identifier: study_tcga_pub -stable_id: gbm_rae -profile_name: Barry's CNA Data -profile_description: Blah Blah. -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: DISCRETE -target_line: Barry \ No newline at end of file diff --git a/core/src/test/resources/germlineOnlyMutationsData/data_mutations_extended.txt b/core/src/test/resources/germlineOnlyMutationsData/data_mutations_extended.txt deleted file mode 100644 index 029e5dfe8a7..00000000000 --- a/core/src/test/resources/germlineOnlyMutationsData/data_mutations_extended.txt +++ /dev/null @@ -1,5 +0,0 @@ -#sequenced_samples: TCGA-AA-3664-01 -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.PDB -CLEC7A 64581 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Germline Illumina GAIIx chr12 10162443 10162443 Missense_Mutation T209A neutral mutationassessor.org/?cm=msa&ty=f&p=CLC7A_HUMAN&rb=137&re=243&var=T209A mutationassessor.org/pdb.php?prot=CLC7A_HUMAN&from=137&to=243&var=T209A -TAS2R10 50839 broad.mit.edu TCGA-AA-3664-01 Unknown valid Germline Illumina GAIIx chr12 10869904 10869904 Missense_Mutation G78S medium mutationassessor.org/?cm=msa&ty=f&p=T2R10_HUMAN&rb=1&re=296&var=G78S -GPR19 2842 broad.mit.edu TCGA-AA-3664-01 Unknown valid Germline Illumina GAIIx chr12 12706312 12706312 Nonsense_Mutation L113P high mutationassessor.org/?cm=msa&ty=f&p=GPR19_HUMAN&rb=82&re=330&var=L113P mutationassessor.org/pdb.php?prot=GPR19_HUMAN&from=82&to=330&var=L113P diff --git a/core/src/test/resources/germlineOnlyMutationsData/meta_mutations_extended.txt b/core/src/test/resources/germlineOnlyMutationsData/meta_mutations_extended.txt deleted file mode 100644 index 5aa1eed1048..00000000000 --- a/core/src/test/resources/germlineOnlyMutationsData/meta_mutations_extended.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: study_tcga_pub -cancer_type_id: breast -genetic_alteration_type: MUTATION_EXTENDED -datatype: MAF -stable_id: breast_mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations diff --git a/core/src/test/resources/integrationTestScript.xml b/core/src/test/resources/integrationTestScript.xml deleted file mode 100644 index 395272de8cc..00000000000 --- a/core/src/test/resources/integrationTestScript.xml +++ /dev/null @@ -1,254 +0,0 @@ - - - - - - - - - - - - - - org.mskcc.cbio.portal.scripts.ImportTypesOfCancers - src/test/scripts/test_data/study_es_0/data_cancer_type.txt - false - --noprogress - - - - org.mskcc.cbio.portal.scripts.ImportGenesetData - --data - src/test/resources/genesets/study_es_0_genesets.gmt - --new-version - msigdb_7.5.1 - - - - - org.mskcc.cbio.portal.scripts.RemoveCancerStudy - study_es_0 - - - - - org.mskcc.cbio.portal.scripts.ImportCancerStudy - src/test/scripts/test_data/study_es_0/meta_study.txt - - - - - org.mskcc.cbio.portal.scripts.ImportClinicalData - --data - src/test/scripts/test_data/study_es_0/data_clinical_samples.txt - --meta - src/test/scripts/test_data/study_es_0/meta_clinical_samples.txt - - - - - org.mskcc.cbio.portal.scripts.ImportClinicalData - --data - src/test/scripts/test_data/study_es_0/data_clinical_patients.txt - --meta - src/test/scripts/test_data/study_es_0/meta_clinical_patients.txt - - - - - - - org.mskcc.cbio.portal.scripts.ImportCopyNumberSegmentData - --data - src/test/scripts/test_data/study_es_0/data_cna_hg19.seg - --meta - src/test/scripts/test_data/study_es_0/meta_cna_hg19_seg.txt - --loadMode - bulkload - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_mutations_extended.maf - --meta - src/test/scripts/test_data/study_es_0/meta_mutations_extended.txt - --loadMode - bulkload - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_cna_discrete.txt - --meta - src/test/scripts/test_data/study_es_0/meta_cna_discrete.txt - --loadMode - bulkload - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_expression_median.txt - --meta - src/test/scripts/test_data/study_es_0/meta_expression_median.txt - --loadMode - bulkload - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_structural_variants.txt - --meta - src/test/scripts/test_data/study_es_0/meta_structural_variants.txt - --loadMode - bulkload - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportGisticData - --data - src/test/scripts/test_data/study_es_0/data_gistic_genes_amp.txt - --study - study_es_0 - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_cna_log2.txt - --meta - src/test/scripts/test_data/study_es_0/meta_cna_log2.txt - --loadMode - bulkload - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_methylation_hm27.txt - --meta - src/test/scripts/test_data/study_es_0/meta_methylation_hm27.txt - --loadMode - bulkload - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_gsva_scores.txt - --meta - src/test/scripts/test_data/study_es_0/meta_gsva_scores.txt - --loadMode - bulkload - --noprogress - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_gsva_pvalues.txt - --meta - src/test/scripts/test_data/study_es_0/meta_gsva_pvalues.txt - --loadMode - bulkload - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_treatment_ic50.txt - --meta - src/test/scripts/test_data/study_es_0/meta_treatment_ic50.txt - --loadMode - bulkload - --noprogress - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_treatment_ec50.txt - --meta - src/test/scripts/test_data/study_es_0/meta_treatment_ec50.txt - --loadMode - bulkload - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportProfileData - --data - src/test/scripts/test_data/study_es_0/data_mutational_signature.txt - --meta - src/test/scripts/test_data/study_es_0/meta_mutational_signature.txt - --loadMode - bulkload - --noprogress - - - - - org.mskcc.cbio.portal.scripts.ImportSampleList - src/test/scripts/test_data/study_es_0/case_lists/cases_custom.txt - - - - - org.mskcc.cbio.portal.scripts.AddCaseList - study_es_0 - all - - - - - - - org.mskcc.cbio.portal.scripts.UpdateCancerStudy - study_es_0 - AVAILABLE - - - - - - - - - diff --git a/core/src/test/resources/meta_CNA.txt b/core/src/test/resources/meta_CNA.txt deleted file mode 100644 index b1ac445495f..00000000000 --- a/core/src/test/resources/meta_CNA.txt +++ /dev/null @@ -1,9 +0,0 @@ -cancer_study_identifier: study_tcga_pub -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: DISCRETE -data_filename: data_CNA_sample.txt -stable_id: cna -show_profile_in_analysis_tab: true -profile_description: Putative copy-number calls on 1080 cases determined using GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification. -profile_name: Putative copy-number alterations from GISTIC -pd_annotations_filename: data_cna_pd_annotations.txt diff --git a/core/src/test/resources/meta_mutations_extended.txt b/core/src/test/resources/meta_mutations_extended.txt deleted file mode 100644 index 5aa1eed1048..00000000000 --- a/core/src/test/resources/meta_mutations_extended.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: study_tcga_pub -cancer_type_id: breast -genetic_alteration_type: MUTATION_EXTENDED -datatype: MAF -stable_id: breast_mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations diff --git a/core/src/test/resources/meta_mutations_extended_wrong_stable_id.txt b/core/src/test/resources/meta_mutations_extended_wrong_stable_id.txt deleted file mode 100644 index 52147940279..00000000000 --- a/core/src/test/resources/meta_mutations_extended_wrong_stable_id.txt +++ /dev/null @@ -1,7 +0,0 @@ -cancer_study_identifier: study_tcga_pub -cancer_type_id: breast -genetic_alteration_type: MUTATION_EXTENDED -stable_id: study_tcga_pub_breast_mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations diff --git a/core/src/test/resources/meta_mutsig.txt b/core/src/test/resources/meta_mutsig.txt deleted file mode 100644 index e5624e373c1..00000000000 --- a/core/src/test/resources/meta_mutsig.txt +++ /dev/null @@ -1,2 +0,0 @@ -cancer_study_identifier: coadread_tcga -stable_id: coadread_tcga_mutsig diff --git a/core/src/test/resources/meta_structural_variants.txt b/core/src/test/resources/meta_structural_variants.txt deleted file mode 100644 index 5618ed54fbb..00000000000 --- a/core/src/test/resources/meta_structural_variants.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: study_tcga_pub -genetic_alteration_type: STRUCTURAL_VARIANT -datatype: SV -data_filename: data_structural_variants.txt -stable_id: sv -show_profile_in_analysis_tab: true -profile_description: Test structural variant data -profile_name: Test structural variant data diff --git a/core/src/test/resources/mrna_test.txt b/core/src/test/resources/mrna_test.txt deleted file mode 100644 index 285f6e21125..00000000000 --- a/core/src/test/resources/mrna_test.txt +++ /dev/null @@ -1,10 +0,0 @@ -Entrez_Gene_Id DD638 DD639 DD6518 DD668 DD670 MRC643 MRC676 DD0728 DD598 DD603 DD610 DD611 DD612 DD613 DD614 DD615 DD616 DD620 DD6213 DD672 DD7533 DD8107 MRC2799 MRC618 MRC3736 MRC5397 MRC624 MRC626 MRC644 ML999U PL1133 PL1294 PL3275_4 PL3677 PL4580 PL617 PL619 PL625 PL627 PL634 PL640 PL9313 DD103 DD112 DD172 DD179 DD184 DD595 DD604 DD606 DD69 DD8379 DD98 MRC288 PL289 PL295 PL299 MRC304 DD344 DD363 DD370 DD391 ML397C PL437 DD442 PL448 DD454 DD456 DD471 DD474 DD488 DD506 DD513 MRC239 MRC275 MRC600 MRC135 MRC139 MRC148 MRC259 PL123U PL126 PL128 PL131 PL247 PL269 DD171 DD216 DD226 -999999780 0 0 0 0 1 0 0 -1 0 0 -1 0 0 0 0 0 -1 0 -1 -1 -1 -1 0 -1 0 0 0 -1 -1 0 -1 0 -1 0 0 -1 -1 -1 0 -1 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 0 0 -1 0 0 -1 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -999995982 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 0 0 -1 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 -999993310 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 -999997849 0.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -999992978 0 2.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -999992978 0 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 1 1 1 -999997067 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 1 0 0 0 1 0 1 -1 0 0 0 0 0 0 0 -999911099 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 -999996352 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 diff --git a/core/src/test/resources/mutation_sample.txt b/core/src/test/resources/mutation_sample.txt deleted file mode 100644 index 50a1c2b6afb..00000000000 --- a/core/src/test/resources/mutation_sample.txt +++ /dev/null @@ -1,3 +0,0 @@ -GENE_ID COMMON TCGA-02-0055 TCGA-02-0089 TCGA-02-0027 TCGA-02-0046 TCGA-02-0001 TCGA-06-0171 TCGA-06-0138 TCGA-02-0116 TCGA-06-0147 TCGA-06-0126 TCGA-02-0080 TCGA-02-0057 TCGA-02-0058 TCGA-06-0169 TCGA-06-0187 TCGA-06-0139 TCGA-06-0122 TCGA-06-0132 TCGA-02-0037 TCGA-06-0210 TCGA-02-0028 TCGA-02-0071 TCGA-02-0047 TCGA-02-0083 TCGA-02-0033 TCGA-06-0189 TCGA-02-0038 TCGA-06-0141 TCGA-06-0209 TCGA-06-0154 TCGA-06-0125 TCGA-02-0054 TCGA-02-0052 TCGA-06-0201 TCGA-06-0219 TCGA-06-0124 TCGA-02-0034 TCGA-02-0075 TCGA-06-0174 TCGA-02-0007 TCGA-02-0021 TCGA-02-0006 TCGA-02-0114 TCGA-06-0137 TCGA-06-0188 TCGA-06-0213 TCGA-02-0011 TCGA-02-0086 TCGA-02-0102 TCGA-06-0173 TCGA-02-0014 TCGA-02-0074 TCGA-06-0221 TCGA-06-0156 TCGA-02-0069 TCGA-02-0009 TCGA-06-0178 TCGA-02-0010 TCGA-06-0130 TCGA-06-0176 TCGA-06-0143 TCGA-06-0129 TCGA-06-0211 TCGA-02-0113 TCGA-02-0060 TCGA-06-0237 TCGA-06-0241 TCGA-06-0197 TCGA-06-0133 TCGA-06-0145 TCGA-06-0168 TCGA-02-0064 TCGA-06-0158 TCGA-02-0024 TCGA-06-0195 TCGA-06-0208 TCGA-02-0115 TCGA-06-0185 TCGA-02-0099 TCGA-06-0157 TCGA-06-0166 TCGA-06-0214 TCGA-02-0107 TCGA-06-0148 TCGA-06-0190 TCGA-02-0085 TCGA-06-0184 TCGA-06-0128 TCGA-06-0206 TCGA-02-0043 TCGA-02-0003 -672 BRCA1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -675 BRCA2 0 0 0 0 0 0 0 0 0 0 0 0 0 P920S 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 I1017S 0 0 0 0 0 0 R18H 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 \ No newline at end of file diff --git a/core/src/test/resources/mutation_test.txt b/core/src/test/resources/mutation_test.txt deleted file mode 100644 index 708c3a0d12f..00000000000 --- a/core/src/test/resources/mutation_test.txt +++ /dev/null @@ -1,13 +0,0 @@ -Entrez_Gene_Id Tumor_Sample PROT_STRING PROT_STRING_SHORT CALLED_CLASSIFICATION -4763 TCGA-02-0001 e16-28_S575 e16-28_S575 Splice_Site_Del -5728 TCGA-02-0001 R159delGPETKRE* R159fs Frame_Shift_Del -7157 TCGA-02-0001 P278R P278R Missense -472 TCGA-02-0010 G138R G138R Missense -472 TCGA-02-0010 V245A V245A Missense -472 TCGA-02-0010 V245A V245A Missense -10000 TCGA-02-0010 G138R G138R Missense -10000 TCGA-02-0010 V245A V245A Missense -10000 TCGA-02-0010 V245A V245A Missense -10000 TCGA-02-0007 G138R G138R Missense -10000 TCGA-02-0007 V245A V245A Missense -10000 TCGA-02-0007 V245A V245A Missense \ No newline at end of file diff --git a/core/src/test/resources/mutations.txt b/core/src/test/resources/mutations.txt deleted file mode 100644 index f6dee03a4b3..00000000000 --- a/core/src/test/resources/mutations.txt +++ /dev/null @@ -1,454 +0,0 @@ -Entrez_Gene_Id Tumor_Sample PROT_STRING PROT_STRING_SHORT CALLED_CLASSIFICATION -4763 TCGA-02-0001 e16-28_S575 e16-28_S575 Splice_Site_Del -5728 TCGA-02-0001 R159delGPETKRE* R159fs Frame_Shift_Del -7157 TCGA-02-0001 P278R P278R Missense -1956 TCGA-02-0003 C620Y C620Y Missense -2045 TCGA-02-0003 R69Q R69Q Missense -5295 TCGA-02-0003 G376R G376R Missense -7157 TCGA-02-0003 H178Q H178Q Missense -7157 TCGA-02-0003 R282W R282W Missense -1956 TCGA-02-0007 T263P T263P Missense -5728 TCGA-02-0007 L193P L193P Missense -5925 TCGA-02-0007 R787* R787* Nonsense -9173 TCGA-02-0007 I404T I404T Missense -2313 TCGA-02-0009 V436I V436I Missense -27201 TCGA-02-0009 A115T A115T Missense -472 TCGA-02-0010 G138R G138R Missense -472 TCGA-02-0010 V245A V245A Missense -545 TCGA-02-0010 R2533* R2533* Nonsense -577 TCGA-02-0010 A633V A633V Missense -667 TCGA-02-0010 E1716G E1716G Missense -675 TCGA-02-0010 R18H R18H Missense -1029 TCGA-02-0010 A102V A102V Missense -1316 TCGA-02-0010 E12G E12G Missense -1454 TCGA-02-0010 G415R G415R Missense -1793 TCGA-02-0010 S1250L S1250L Missense -1956 TCGA-02-0010 R680G R680G Missense -2335 TCGA-02-0010 A1990T A1990T Missense -2625 TCGA-02-0010 A146T A146T Missense -2778 TCGA-02-0010 A173T A173T Missense -2956 TCGA-02-0010 R1024W R1024W Missense -3320 TCGA-02-0010 D854G D854G Missense -3371 TCGA-02-0010 R499H R499H Missense -3611 TCGA-02-0010 D138G D138G Missense -3667 TCGA-02-0010 R1140H R1140H Missense -3690 TCGA-02-0010 A776V A776V Missense -4057 TCGA-02-0010 R190C R190C Missense -4179 TCGA-02-0010 I350V I350V Missense -4233 TCGA-02-0010 e13+2 e13+2 Splice_Site -4763 TCGA-02-0010 A2315T A2315T Missense -4829 TCGA-02-0010 A86V A86V Missense -4920 TCGA-02-0010 A271T A271T Missense -4982 TCGA-02-0010 R111C R111C Missense -5045 TCGA-02-0010 A574T A574T Missense -5045 TCGA-02-0010 G755D G755D Missense -5629 TCGA-02-0010 R251H R251H Missense -6664 TCGA-02-0010 D428G D428G Missense -6678 TCGA-02-0010 A127V A127V Missense -7015 TCGA-02-0010 R672H R672H Missense -7157 TCGA-02-0010 R175H R175H Missense -7157 TCGA-02-0010 R273C R273C Missense -7249 TCGA-02-0010 A1141T A1141T Missense -7249 TCGA-02-0010 V841I V841I Missense -8038 TCGA-02-0010 D51G D51G Missense -8295 TCGA-02-0010 D3788G D3788G Missense -9314 TCGA-02-0010 H478Y H478Y Missense -9314 TCGA-02-0010 V184M V184M Missense -9757 TCGA-02-0010 R2334C R2334C Missense -51050 TCGA-02-0010 C245S C245S Missense -51592 TCGA-02-0010 K1057* K1057* Nonsense -55294 TCGA-02-0010 R367* R367* Nonsense -152110 TCGA-02-0010 I95V I95V Missense -259266 TCGA-02-0010 S883P S883P Missense -259266 TCGA-02-0010 V1610A V1610A Missense -5292 TCGA-02-0011 N269S N269S Missense -7157 TCGA-02-0011 R175G R175G Missense -667 TCGA-02-0014 G2183D G2183D Missense -675 TCGA-02-0014 I1017S I1017S Missense -3689 TCGA-02-0014 T708I T708I Missense -3939 TCGA-02-0014 V209A V209A Missense -4292 TCGA-02-0014 H543R H543R Missense -5598 TCGA-02-0014 A590T A590T Missense -5601 TCGA-02-0014 G35R G35R Missense -5728 TCGA-02-0014 P96L P96L Missense -6514 TCGA-02-0014 A313T A313T Missense -7048 TCGA-02-0014 I120L I120L Missense -7157 TCGA-02-0014 N200delIACGVFG* N200fs Frame_Shift_Del -10188 TCGA-02-0014 A50T A50T Missense -27148 TCGA-02-0014 W184* W184* Nonsense -116986 TCGA-02-0014 V921I V921I Missense -1956 TCGA-02-0021 R252C R252C Missense -5295 TCGA-02-0021 E439del E439del In_Frame_Del -5728 TCGA-02-0021 T167I T167I Missense -6252 TCGA-02-0021 A423V A423V Missense -7982 TCGA-02-0021 e3-2 e3-2 Splice_Site -2 TCGA-02-0024 G367R G367R Missense -7157 TCGA-02-0024 R342* R342* Nonsense -5728 TCGA-02-0027 R130delQLV* R130fs Frame_Shift_Del -2 TCGA-02-0028 F1290L F1290L Missense -301 TCGA-02-0028 G333E G333E Missense -1292 TCGA-02-0028 P257L P257L Missense -1499 TCGA-02-0028 e1+1 e1+1 Splice_Site -1755 TCGA-02-0028 A1027V A1027V Missense -2033 TCGA-02-0028 A2143T A2143T Missense -2625 TCGA-02-0028 S403F S403F Missense -3959 TCGA-02-0028 A522T A522T Missense -4089 TCGA-02-0028 W509* W509* Nonsense -4223 TCGA-02-0028 S136F S136F Missense -4330 TCGA-02-0028 A1292T A1292T Missense -4613 TCGA-02-0028 P44L P44L Missense -4763 TCGA-02-0028 e42-1 e42-1 Splice_Site -4763 TCGA-02-0028 R997K R997K Missense -4763 TCGA-02-0028 W2296* W2296* Nonsense -5045 TCGA-02-0028 P654S P654S Missense -5295 TCGA-02-0028 KS459delN KS459delN In_Frame_Del -5395 TCGA-02-0028 Q186* Q186* Nonsense -5601 TCGA-02-0028 V91M V91M Missense -5781 TCGA-02-0028 E69K E69K Missense -9064 TCGA-02-0028 E1186K E1186K Missense -11202 TCGA-02-0028 P86L P86L Missense -53335 TCGA-02-0028 A189T A189T Missense -55294 TCGA-02-0028 V672M V672M Missense -57188 TCGA-02-0028 W81* W81* Nonsense -2263 TCGA-02-0033 Q212K Q212K Missense -3667 TCGA-02-0033 S428L S428L Missense -4763 TCGA-02-0033 e32-1 e32-1 Splice_Site -5925 TCGA-02-0033 Q702* Q702* Nonsense -7157 TCGA-02-0033 R248Q R248Q Missense -7157 TCGA-02-0034 C135Y C135Y Missense -7157 TCGA-02-0034 E258Q E258Q Missense -5290 TCGA-02-0037 C420R C420R Missense -7157 TCGA-02-0037 R175H R175H Missense -10257 TCGA-02-0037 G770R G770R Missense -5728 TCGA-02-0038 R173C R173C Missense -21 TCGA-02-0043 A521V A521V Missense -182 TCGA-02-0043 P279L P279L Missense -667 TCGA-02-0043 P4545S P4545S Missense -831 TCGA-02-0043 A401V A401V Missense -1111 TCGA-02-0043 e11+1 e11+1 Splice_Site -1277 TCGA-02-0043 e9+1 e9+1 Splice_Site_Del -1277 TCGA-02-0043 L1235F L1235F Missense -1281 TCGA-02-0043 G861S G861S Missense -1512 TCGA-02-0043 e8+1 e8+1 Splice_Site -1594 TCGA-02-0043 G290E G290E Missense -2956 TCGA-02-0043 T1219I T1219I Missense -4916 TCGA-02-0043 N95S N95S Missense -5164 TCGA-02-0043 P182S P182S Missense -5287 TCGA-02-0043 E1144K E1144K Missense -5451 TCGA-02-0043 R285Q R285Q Missense -7015 TCGA-02-0043 E440K E440K Missense -10188 TCGA-02-0043 R147* R147* Nonsense -10446 TCGA-02-0043 E415K c.1243 Missense -23522 TCGA-02-0043 G1530E G1530E Missense -85366 TCGA-02-0043 S72N S72N Missense -116986 TCGA-02-0043 S907N S907N Missense -1956 TCGA-02-0046 G598V G598V Missense -5290 TCGA-02-0046 P18del P18del In_Frame_Del -7157 TCGA-02-0046 P177S P177S Missense -7157 TCGA-02-0046 R282W R282W Missense -5290 TCGA-02-0047 N345K N345K Missense -7249 TCGA-02-0047 L45M L45M Missense -5728 TCGA-02-0052 T78delRQI* T78fs Frame_Shift_Del -5925 TCGA-02-0052 e18+2 e18+2 Splice_Site -1608 TCGA-02-0054 K347insNSVTGATKVSSATRVSPRGTACGAG* K347fs Frame_Shift_Ins -1956 TCGA-02-0054 A289V A289V Missense -7157 TCGA-02-0054 R213* R213* Nonsense -581 TCGA-02-0055 G10D G10D Missense -1063 TCGA-02-0055 K19R K19R Missense -5324 TCGA-02-0055 M361I M361I Missense -5728 TCGA-02-0055 T131A T131A Missense -5925 TCGA-02-0055 L267delRT* L267fs Frame_Shift_Del -7157 TCGA-02-0055 V216M V216M Missense -9757 TCGA-02-0057 T498N T498N Missense -7157 TCGA-02-0058 V272M V272M Missense -23321 TCGA-02-0058 P343S P343S Missense -2260 TCGA-02-0060 K656E K656E Missense -2064 TCGA-02-0069 T216S T216S Missense -2064 TCGA-02-0069 V777A V777A Missense -3845 TCGA-02-0069 G12A G12A Missense -5528 TCGA-02-0069 G267S G267S Missense -5728 TCGA-02-0071 L320* L320* Nonsense -5295 TCGA-02-0074 N564K N564K Missense -7157 TCGA-02-0074 N235D N235D Missense -4436 TCGA-02-0075 P69T P69T Missense -4763 TCGA-02-0075 G849* G849* Nonsense -5728 TCGA-02-0075 F241L F241L Missense -7157 TCGA-02-0075 L130F L130F Missense -8826 TCGA-02-0075 Q904R Q904R Missense -51347 TCGA-02-0075 R490C R490C Missense -1594 TCGA-02-0080 P247S P247S Missense -2064 TCGA-02-0080 L49H L49H Missense -7157 TCGA-02-0080 R273C R273C Missense -25865 TCGA-02-0080 D411N D411N Missense -51050 TCGA-02-0080 A179T A179T Missense -310 TCGA-02-0083 G104E G104E Missense -405 TCGA-02-0083 P607S P607S Missense -529 TCGA-02-0083 G213R G213R Missense -558 TCGA-02-0083 P304S P304S Missense -577 TCGA-02-0083 P1455S P1455S Missense -613 TCGA-02-0083 A138T A138T Missense -667 TCGA-02-0083 G2032E G2032E Missense -842 TCGA-02-0083 G134E G134E Missense -862 TCGA-02-0083 R10K R10K Missense -867 TCGA-02-0083 P428L P428L Missense -867 TCGA-02-0083 W609* W609* Nonsense -1029 TCGA-02-0083 H134delPDPCTTLPGRASWTRWWCCTGPGRGWTCAMPGAVCPWTWL H134fs Frame_Shift_Del -1029 TCGA-02-0083 H134delPDPCTTLPGRASWTRWWCCTGPGRGWTCAMPGAVCPWTWL H134fs Frame_Shift_Del -1103 TCGA-02-0083 G130E G130E Missense -1271 TCGA-02-0083 T303I T303I Missense -1277 TCGA-02-0083 P343S P343S Missense -1277 TCGA-02-0083 P774S P774S Missense -1281 TCGA-02-0083 G879D G879D Missense -1641 TCGA-02-0083 P409L P409L Missense -1993 TCGA-02-0083 G167D G167D Missense -2043 TCGA-02-0083 P332L P332L Missense -2045 TCGA-02-0083 S207F S207F Missense -2065 TCGA-02-0083 S1046N S1046N Missense -2309 TCGA-02-0083 G86R c.772 Missense -2335 TCGA-02-0083 A1993V A1993V Missense -2475 TCGA-02-0083 A492T A492T Missense -2737 TCGA-02-0083 S276N S276N Missense -2778 TCGA-02-0083 A461V A461V Missense -2909 TCGA-02-0083 W452* W452* Nonsense -2956 TCGA-02-0083 V1056M V1056M Missense -3320 TCGA-02-0083 P48S P48S Missense -3371 TCGA-02-0083 G892D G892D Missense -3690 TCGA-02-0083 G484E G484E Missense -3815 TCGA-02-0083 A599T A599T Missense -3895 TCGA-02-0083 E113K E113K Missense -3916 TCGA-02-0083 S47C S47C Missense -3939 TCGA-02-0083 T144I T144I Missense -4067 TCGA-02-0083 A119V A119V Missense -4292 TCGA-02-0083 A410T A410T Missense -4292 TCGA-02-0083 G101S G101S Missense -4303 TCGA-02-0083 S344F S344F Missense -4436 TCGA-02-0083 G692E G692E Missense -4440 TCGA-02-0083 C167Y C167Y Missense -4753 TCGA-02-0083 D602N D602N Missense -4851 TCGA-02-0083 A2452T A2452T Missense -4920 TCGA-02-0083 E519K E519K Missense -5159 TCGA-02-0083 A74T A74T Missense -5371 TCGA-02-0083 P96T P96T Missense -5578 TCGA-02-0083 P613S P613S Missense -5590 TCGA-02-0083 E574K E574K Missense -5603 TCGA-02-0083 V184M V184M Missense -7077 TCGA-02-0083 Q212* Q212* Nonsense -7150 TCGA-02-0083 P560L P560L Missense -7157 TCGA-02-0083 P278S P278S Missense -7374 TCGA-02-0083 A34T A34T Missense -7869 TCGA-02-0083 G701D G701D Missense -8751 TCGA-02-0083 G741D G741D Missense -8826 TCGA-02-0083 S804F S804F Missense -9371 TCGA-02-0083 P46S P46S Missense -10165 TCGA-02-0083 P126S P126S Missense -10257 TCGA-02-0083 A1279T A1279T Missense -10612 TCGA-02-0083 G371S G371S Missense -23161 TCGA-02-0083 P155S P155S Missense -23786 TCGA-02-0083 G439D G439D Missense -26019 TCGA-02-0083 E851K E851K Missense -51147 TCGA-02-0083 G234R G234R Missense -53335 TCGA-02-0083 P305S P305S Missense -57188 TCGA-02-0083 D1482N D1482N Missense -57634 TCGA-02-0083 Q377* Q377* Nonsense -57724 TCGA-02-0083 S2169T S2169T Missense -60561 TCGA-02-0083 P788L P788L Missense -386653 TCGA-02-0083 S145* S145* Nonsense -4193 TCGA-02-0085 Y287H Y287H Missense -4893 TCGA-02-0085 G12D G12D Missense -4763 TCGA-02-0086 E2318delNKTCIL* E2318fs Frame_Shift_Del -4763 TCGA-02-0086 T1983delQICLMLY* T1983fs Frame_Shift_Del -596 TCGA-02-0089 A85T A85T Missense -1956 TCGA-02-0089 A289T A289T Missense -2064 TCGA-02-0089 C311R C311R Missense -2064 TCGA-02-0089 E321G E321G Missense -5295 TCGA-02-0089 D560Y D560Y Missense -6098 TCGA-02-0089 V1666I V1666I Missense -7157 TCGA-02-0089 H179Y H179Y Missense -1063 TCGA-02-0099 e13+1 e13+1 Splice_Site -1576 TCGA-02-0099 D6N D6N Missense -4683 TCGA-02-0099 P748S P748S Missense -4705 TCGA-02-0099 e6+1 e6+1 Splice_Site -5591 TCGA-02-0099 S3457F S3457F Missense -5728 TCGA-02-0099 Y177* Y177* Nonsense -6184 TCGA-02-0099 E99K E99K Missense -7472 TCGA-02-0099 D338N D338N Missense -8295 TCGA-02-0099 V2301I V2301I Missense -9564 TCGA-02-0099 E708K E708K Missense -147339 TCGA-02-0099 G283E G283E Missense -613 TCGA-02-0102 D451N D451N Missense -9990 TCGA-02-0102 A896V A896V Missense -2064 TCGA-02-0107 V750E V750E Missense -4763 TCGA-02-0107 K1640delGLLFFLALLTTTSPQSISITVTPGSGSTPSIMSGC* K1640fs Frame_Shift_Del -4763 TCGA-02-0107 R1391S R1391S Missense -196403 TCGA-02-0107 G304E G304E Missense -2064 TCGA-02-0113 V777A V777A Missense -5728 TCGA-02-0113 E235* E235* Nonsense -667 TCGA-02-0114 E6576K E6576K Missense -1029 TCGA-02-0114 W15* W15* Nonsense -1316 TCGA-02-0114 S77F S77F Missense -1540 TCGA-02-0114 A154V A154V Missense -1969 TCGA-02-0114 G111D G111D Missense -2033 TCGA-02-0114 P1337S P1337S Missense -2313 TCGA-02-0114 G94E G94E Missense -2335 TCGA-02-0114 P300S P300S Missense -2335 TCGA-02-0114 P363S P363S Missense -2956 TCGA-02-0114 E484K E484K Missense -2995 TCGA-02-0114 G98S G98S Missense -3399 TCGA-02-0114 P95S P95S Missense -4057 TCGA-02-0114 e16-1 e16-1 Splice_Site -4233 TCGA-02-0114 W540* W540* Nonsense -4440 TCGA-02-0114 A100T A100T Missense -4846 TCGA-02-0114 G345S G345S Missense -4846 TCGA-02-0114 G439R G439R Missense -4851 TCGA-02-0114 T32I T32I Missense -5159 TCGA-02-0114 L986F L986F Missense -5295 TCGA-02-0114 T576del T576del In_Frame_Del -5591 TCGA-02-0114 P2531S P2531S Missense -6098 TCGA-02-0114 e21+1 e21+1 Splice_Site -6774 TCGA-02-0114 S405delCRIQTLDPEGAEMWEWGPSQL* S405fs Frame_Shift_Del -6935 TCGA-02-0114 E128K c.382 Missense -6938 TCGA-02-0114 e13+1 e13+1 Splice_Site -6938 TCGA-02-0114 S497delCQSQWQSFSPV* S497fs Frame_Shift_Del -7157 TCGA-02-0114 A276V A276V Missense -7157 TCGA-02-0114 C176Y C176Y Missense -7248 TCGA-02-0114 S1043N S1043N Missense -7410 TCGA-02-0114 e22-1 e22-1 Splice_Site -8295 TCGA-02-0114 E2017K c.6049 Missense -8527 TCGA-02-0114 R80Q R80Q Missense -8651 TCGA-02-0114 G82E G82E Missense -9131 TCGA-02-0114 D91N D91N Missense -9212 TCGA-02-0114 V57M V57M Missense -9757 TCGA-02-0114 S1285N S1285N Missense -10677 TCGA-02-0114 W716* W716* Nonsense -10752 TCGA-02-0114 A335V A335V Missense -23235 TCGA-02-0114 G497E G497E Missense -23491 TCGA-02-0114 e5-1 c.561-1 Splice_Site -23522 TCGA-02-0114 E705K E705K Missense -25805 TCGA-02-0114 G221E G221E Missense -29110 TCGA-02-0114 A535T A535T Missense -51147 TCGA-02-0114 W220* W220* Nonsense -54900 TCGA-02-0114 S305C S305C Missense -55526 TCGA-02-0114 A783T A783T Missense -57634 TCGA-02-0114 E2169K E2169K Missense -57634 TCGA-02-0114 M1640I M1640I Missense -171017 TCGA-02-0114 A433T A433T Missense -171017 TCGA-02-0114 S269F S269F Missense -2064 TCGA-02-0115 e2+2 e2+2 Splice_Site -2064 TCGA-02-0115 C334S C334S Missense -2064 TCGA-02-0115 D326G D326G Missense -4763 TCGA-02-0115 W1641* W1641* Nonsense -1956 TCGA-02-0116 A597P A597P Missense -2064 TCGA-02-0116 N319D N319D Missense -3916 TCGA-02-0116 e5+1 e5+1 Splice_Site -5290 TCGA-02-0116 R88Q R88Q Missense -10612 TCGA-06-0122 C736Y C736Y Missense -4763 TCGA-06-0124 Q1966* Q1966* Nonsense -4763 TCGA-06-0124 S2311* S2311* Nonsense -5728 TCGA-06-0124 T277I T277I Missense -6469 TCGA-06-0124 V254M V254M Missense -667 TCGA-06-0125 S4074C S4074C Missense -1103 TCGA-06-0125 R323H R323H Missense -1956 TCGA-06-0125 G598V G598V Missense -5727 TCGA-06-0125 R1394* R1394* Nonsense -5728 TCGA-06-0125 T319del T319fs Frame_Shift_Del -5728 TCGA-06-0125 T319del* T319fs Frame_Shift_Del -1278 TCGA-06-0126 R938H R938H Missense -7133 TCGA-06-0126 T222P T222P Missense -6938 TCGA-06-0128 e17-1 e17-1 Splice_Site -7157 TCGA-06-0128 S313delAPLPSQRRNHWMENISPFRSVGVSASRCSES* S313fs Frame_Shift_Del -4194 TCGA-06-0129 T160S T160S Missense -5295 TCGA-06-0129 R574delKDERPILDVVDSKRCSAKEVERVVGQ* R574fs Frame_Shift_Del -7157 TCGA-06-0130 R158H R158H Missense -2033 TCGA-06-0133 P1880S P1880S Missense -2735 TCGA-06-0133 A1051V A1051V Missense -5295 TCGA-06-0133 W583del W583del In_Frame_Del -9990 TCGA-06-0133 D929Y D929Y Missense -53335 TCGA-06-0133 G514S G514S Missense -5728 TCGA-06-0138 R130* R130* Nonsense -23491 TCGA-06-0139 M96I c.288 Missense -3690 TCGA-06-0141 R378C R378C Missense -3838 TCGA-06-0141 R13H R13H Missense -8872 TCGA-06-0141 E293K E293K Missense -667 TCGA-06-0145 E3261K E3261K Missense -1111 TCGA-06-0145 R160H R160H Missense -5580 TCGA-06-0145 R67C R67C Missense -3643 TCGA-06-0147 A20T A20T Missense -57787 TCGA-06-0147 e13+1 e13+1 Splice_Site -667 TCGA-06-0148 K923N K923N Missense -1956 TCGA-06-0148 A289V A289V Missense -1956 TCGA-06-0154 R222C R222C Missense -54518 TCGA-06-0154 R335W R335W Missense -1956 TCGA-06-0156 A289V A289V Missense -1956 TCGA-06-0156 S703F S703F Missense -4507 TCGA-06-0156 Q122H Q122H Missense -5728 TCGA-06-0156 C105del* C105fs Frame_Shift_Del -7157 TCGA-06-0156 S99delENLPGQLRFPSGLLAFWDSQVCDLHVLPCPQQDVLPTGQDLPCAAVG* S99fs Frame_Shift_Del -1956 TCGA-06-0157 A289V A289V Missense -5728 TCGA-06-0157 Y76del* Y76fs Frame_Shift_Del -6197 TCGA-06-0157 L381H L381H Missense -6855 TCGA-06-0157 V222M V222M Missense -3689 TCGA-06-0158 e6+1 e6+1 Splice_Site -5290 TCGA-06-0166 LWGIHLM10del LWGIHLM10del In_Frame_Del -5728 TCGA-06-0166 T167S T167S Missense -5728 TCGA-06-0168 A328del* A328fs Frame_Shift_Del -675 TCGA-06-0169 P920S P920S Missense -5290 TCGA-06-0171 M1043V M1043V Missense -5781 TCGA-06-0171 I282M I282M Missense -8805 TCGA-06-0171 R391H R391H Missense -2321 TCGA-06-0173 G727C G727C Missense -6664 TCGA-06-0173 E412* E412* Nonsense -5156 TCGA-06-0174 W349C W349C Missense -5728 TCGA-06-0176 R130* R130* Nonsense -5925 TCGA-06-0176 R251* R251* Nonsense -6872 TCGA-06-0176 S1654T S1654T Missense -9564 TCGA-06-0176 A780V A780V Missense -23235 TCGA-06-0176 A635V A635V Missense -23239 TCGA-06-0176 M738T M738T Missense -53335 TCGA-06-0176 R740C R740C Missense -4829 TCGA-06-0178 P148H P148H Missense -5295 TCGA-06-0178 DKRMNS560del DKRMNS560del In_Frame_Del -4763 TCGA-06-0184 Q2281delHHFLIRTRLCTKPSFG* Q2281fs Frame_Shift_Del -5728 TCGA-06-0184 G36E G36E Missense -5925 TCGA-06-0184 e20-1 e20-1 Splice_Site -5925 TCGA-06-0184 Y659F Y659F Missense -7157 TCGA-06-0184 R158H R158H Missense -1956 TCGA-06-0185 V651M V651M Missense -5579 TCGA-06-0185 D631N D631N Missense -6772 TCGA-06-0185 K201M K201M Missense -5728 TCGA-06-0187 G132D G132D Missense -3371 TCGA-06-0188 E1897K E1897K Missense -5728 TCGA-06-0188 N323delMILTKQIKTKPTDTFLQILR* N323fs Frame_Shift_Del -7157 TCGA-06-0188 e8-1 e8-1 Splice_Site -7157 TCGA-06-0188 A307V A307V Missense -10188 TCGA-06-0189 W138* W138* Nonsense -26038 TCGA-06-0189 H1125Y H1125Y Missense -4763 TCGA-06-0190 Q1426K Q1426K Missense -5728 TCGA-06-0190 D92E D92E Missense -7157 TCGA-06-0190 G245S G245S Missense -7465 TCGA-06-0190 G160S G160S Missense -5728 TCGA-06-0195 R159K R159K Missense -5925 TCGA-06-0195 Q395* Q395* Nonsense -7157 TCGA-06-0195 D281A D281A Missense -7157 TCGA-06-0195 G266R G266R Missense -5728 TCGA-06-0197 Y76del* Y76fs Frame_Shift_Del -5728 TCGA-06-0197 Y76del* Y76fs Frame_Shift_Del -7157 TCGA-06-0197 F270S F270S Missense -2324 TCGA-06-0201 E989D E989D Missense -4763 TCGA-06-0201 e37+1 e37+1 Splice_Site -4763 TCGA-06-0201 R1513* R1513* Nonsense -5590 TCGA-06-0206 R260H R260H Missense -5728 TCGA-06-0206 T319del* T319fs Frame_Shift_Del -5925 TCGA-06-0206 e24-1 e24-1 Splice_Site -7157 TCGA-06-0206 R273H R273H Missense -12 TCGA-06-0209 V45M V45M Missense -2770 TCGA-06-0209 D193N D193N Missense -2891 TCGA-06-0213 I293del I293del In_Frame_Del -5728 TCGA-06-0213 R335* R335* Nonsense -5925 TCGA-06-0213 V654L V654L Missense -6872 TCGA-06-0213 G73E G73E Missense -4763 TCGA-06-0214 D1828N D1828N Missense -5079 TCGA-06-0214 Y346C Y346C Missense -7157 TCGA-06-0221 K139delNLPCAAVG* K139fs Frame_Shift_Del -1956 TCGA-06-0237 L62R L62R Missense -7157 TCGA-06-0237 I195T I195T Missense -7157 TCGA-06-0241 R248Q R248Q Missense diff --git a/core/src/test/resources/panCancerStudySummary/cases_all.txt b/core/src/test/resources/panCancerStudySummary/cases_all.txt deleted file mode 100755 index 1961da1041e..00000000000 --- a/core/src/test/resources/panCancerStudySummary/cases_all.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: multi_cancer_study -stable_id: multi_cancer_study_all -case_list_name: All Tumors -case_list_description: All tumor samples (19 samples) -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 diff --git a/core/src/test/resources/panCancerStudySummary/data_CNA.txt b/core/src/test/resources/panCancerStudySummary/data_CNA.txt deleted file mode 100755 index 25fcc20708e..00000000000 --- a/core/src/test/resources/panCancerStudySummary/data_CNA.txt +++ /dev/null @@ -1,13 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 -TESTA1CF 999929974 2 2 2 2 -2 -2 -2 -2 2 -2 2 -2 2 2 2 2 -2 -2 -2 -TESTA2BP1 999954715 2 0 0 0 -2 0 0 0 2 -2 0 0 0 0 0 0 0 0 0 -TESTA2M 999999992 2 0 0 0 -2 0 0 0 2 -2 2 2 0 0 0 0 0 0 0 -TESTA2ML1 999144568 2 0 0 0 -2 0 0 0 0 0 0 0 -2 0 0 0 0 0 0 -TESTAADACL2 999344752 0 2 0 0 0 -2 0 0 0 0 0 0 -2 -2 0 0 0 0 0 -TESTAAK1 999922848 0 2 2 0 0 -2 -2 0 0 0 0 0 0 -2 0 0 0 0 0 -TESTAASDH 999132949 0 2 2 0 0 -2 -2 0 0 0 0 0 0 0 0 0 0 0 0 -TESTAASS 999910157 0 0 2 0 0 0 -2 0 0 0 0 0 0 0 0 0 0 0 0 -TESTABCA1 999999919 0 0 2 0 0 0 -2 0 0 0 0 0 0 0 0 0 0 0 0 -TESTABCB6 999910058 0 0 2 0 0 0 -2 0 0 0 0 0 0 0 0 0 0 0 0 -TESTACOXL 999955289 0 0 0 2 0 0 0 -2 0 0 0 0 0 0 0 0 0 0 0 -TESTACTL7B 999910880 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 diff --git a/core/src/test/resources/panCancerStudySummary/data_clinical.txt b/core/src/test/resources/panCancerStudySummary/data_clinical.txt deleted file mode 100755 index 7ae5ef35673..00000000000 --- a/core/src/test/resources/panCancerStudySummary/data_clinical.txt +++ /dev/null @@ -1,24 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Cancer Type Cancer Type Detailed -#Patient identifier Sample identifier Subtype description Cancer Type Cancer Type Detailed -#STRING STRING STRING STRING STRING -#1 1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE CANCER_TYPE CANCER_TYPE_DETAILED -TCGA-A1-A0SB TCGA-A1-A0SB-01 NA cns byst -TCGA-A1-A0SD TCGA-A1-A0SD-01 Luminal A cns byst -TCGA-A1-A0SE TCGA-A1-A0SE-01 Luminal A cns byst -TCGA-A1-A0SF TCGA-A1-A0SF-01 NA cns byst -TCGA-A1-A0SG TCGA-A1-A0SG-01 NA cns bimt -TCGA-A1-A0SH TCGA-A1-A0SH-01 Luminal A cns bimt -TCGA-A1-A0SI TCGA-A1-A0SI-01 NA cns bimt -TCGA-A1-A0SJ TCGA-A1-A0SJ-01 Luminal A cns bimt -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like cervix cead -TCGA-A1-A0SM TCGA-A1-A0SM-01 Luminal B cervix cead -TCGA-A1-A0SN TCGA-A1-A0SN-01 NA cervix cead -TCGA-A1-A0SO TCGA-A1-A0SO-01 basal-like cervix cead -TCGA-A1-A0SP TCGA-A1-A0SP-01 NA cervix cene -TCGA-A1-A0SQ TCGA-A1-A0SQ-01 NA cervix cene -TCGA-A2-A04N TCGA-A2-A04N-01 Luminal A cervix cene -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like cervix cene -TCGA-A2-A04Q TCGA-A2-A04Q-01 basal-like cervix cacc -TCGA-A2-A04R TCGA-A2-A04R-01 Luminal B cervix cacc -TCGA-A2-A04T TCGA-A2-A04T-01 NA cervix cacc diff --git a/core/src/test/resources/panCancerStudySummary/data_mutations_extended.txt b/core/src/test/resources/panCancerStudySummary/data_mutations_extended.txt deleted file mode 100755 index 7fb714db324..00000000000 --- a/core/src/test/resources/panCancerStudySummary/data_mutations_extended.txt +++ /dev/null @@ -1,24 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer ONCOTATOR_COSMIC_OVERLAPPING ONCOTATOR_DBSNP_RS ONCOTATOR_DBSNP_VAL_STATUS ONCOTATOR_VARIANT_CLASSIFICATION ONCOTATOR_PROTEIN_CHANGE ONCOTATOR_GENE_SYMBOL ONCOTATOR_REFSEQ_MRNA_ID ONCOTATOR_REFSEQ_PROT_ID ONCOTATOR_UNIPROT_ENTRY_NAME ONCOTATOR_UNIPROT_ACCESSION ONCOTATOR_CODON_CHANGE ONCOTATOR_TRANSCRIPT_CHANGE ONCOTATOR_EXON_AFFECTED ONCOTATOR_PROTEIN_POS_START ONCOTATOR_PROTEIN_POS_END ONCOTATOR_VARIANT_CLASSIFICATION_BEST_EFFECT ONCOTATOR_PROTEIN_CHANGE_BEST_EFFECT ONCOTATOR_GENE_SYMBOL_BEST_EFFECT ONCOTATOR_REFSEQ_MRNA_ID_BEST_EFFECT ONCOTATOR_REFSEQ_PROT_ID_BEST_EFFECT ONCOTATOR_UNIPROT_ENTRY_NAME_BEST_EFFECT ONCOTATOR_UNIPROT_ACCESSION_BEST_EFFECT ONCOTATOR_CODON_CHANGE_BEST_EFFECT ONCOTATOR_TRANSCRIPT_CHANGE_BEST_EFFECT ONCOTATOR_EXON_AFFECTED_BEST_EFFECT ONCOTATOR_PROTEIN_POS_START_BEST_EFFECT ONCOTATOR_PROTEIN_POS_END_BEST_EFFECT MA:FImpact MA:FIS MA:protein.change MA:link.MSA MA:link.PDB MA:link.var chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU annotation_errors_WU -TESTA1CF 999929974 genome.wustl.edu 37 10 52573692 52573692 + Missense_Mutation SNP G G T novel unknown TCGA-A1-A0SB-01 TCGA-A1-A0SB-01 G G Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.D424E A1CF NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(1270-1272)GAC>GAA c.1272C>A 10 424 424 Missense_Mutation p.D432E A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(1294-1296)GAC>GAA c.1296C>A 12 432 432 neutral 345 D424E getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=298&re=497&var=D424E NA getma.org/?cm=var&var=hg19,10,52573692,G,T&fts=all 10 52573692 52573692 G T SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.1272 p.D424E 768 NULL superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -TESTA1CF 999929974 genome.wustl.edu 37 10 52595854 52595854 + Missense_Mutation SNP G G A novel unknown TCGA-A1-A0SD-01 TCGA-A1-A0SD-01 G G Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.A195V A1CF NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(583-585)GCG>GTG c.584C>T 6 195 195 Missense_Mutation p.A203V A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(607-609)GCG>GTG c.608C>T 8 203 203 medium 2.955 A195V getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=138&re=203&var=A195V getma.org/pdb.php?prot=A1CF_HUMAN&from=138&to=203&var=A195V getma.org/?cm=var&var=hg19,10,52595854,G,A&fts=all 10 52595854 52595854 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.584 p.A195V 1.000 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -TESTA1CF 999929974 genome.wustl.edu 37 10 52595937 52595937 + Missense_Mutation SNP G G A novel unknown TCGA-A1-A0SE-01 TCGA-A1-A0SE-01 G G Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.I167I A1CF NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(499-501)ATC>ATT c.501C>T 6 167 167 Missense_Mutation p.I175I A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(523-525)ATC>ATT c.525C>T 8 175 175 10 52595937 52595937 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.501 p.I167 615 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -TESTA2M 999999992 genome.wustl.edu 37 12 9230409 9230409 + Missense_Mutation SNP T T C novel unknown TCGA-A1-A0SJ-01 TCGA-A1-A0SJ-01 T T Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 high 3.73 Y1055C getma.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=1010&re=1266&var=Y1055C getma.org/pdb.php?prot=A2MG_HUMAN&from=1010&to=1266&var=Y1055C getma.org/?cm=var&var=hg19,12,9230409,T,C&fts=all 12 9230409 9230409 T C SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.3164 p.Y1055C 143 superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_A2M_comp PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2M 999999992 genome.wustl.edu 37 12 9242995 9242995 + Missense_Mutation SNP G G A novel unknown TCGA-A1-A0SK-01 TCGA-A1-A0SK-01 G G Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 Missense_Mutation p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 12 9242995 9242995 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.2553 p.N851 3 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2M 999999992 genome.wustl.edu 37 12 9246090 9246090 + Missense_Mutation SNP C C T novel unknown TCGA-A1-A0SM-01 TCGA-A1-A0SM-01 C C Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 Missense_Mutation p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 12 9246090 9246090 C T SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.2211 p.E737 1.000 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2M 999999992 genome.wustl.edu 37 12 9251298 9251298 + Nonsense_Mutation SNP G G A novel unknown TCGA-A1-A0SN-01 TCGA-A1-A0SN-01 G G Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 NA 0.0 R586* NA NA getma.org/?cm=var&var=hg19,12,9251298,G,A&fts=all 12 9251298 9251298 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed nonsense c.1756 p.R586* 3 HMMPfam_A2M_N_2 PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2M 999999992 genome.wustl.edu 37 12 9256962 9256962 + Missense_Mutation SNP G G T novel unknown TCGA-A1-A0SO-01 TCGA-A1-A0SO-01 G G Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.P380Q A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1138-1140)CCA>CAA c.1139C>A 11 380 380 Missense_Mutation p.P380Q A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1138-1140)CCA>CAA c.1139C>A 11 380 380 medium 2.625 P380Q getma.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=222&re=421&var=P380Q getma.org/pdb.php?prot=A2MG_HUMAN&from=222&to=421&var=P380Q getma.org/?cm=var&var=hg19,12,9256962,G,T&fts=all 12 9256962 9256962 G T SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.1139 p.P380Q 957 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2ML1 999144568 genome.wustl.edu 37 12 8975820 8975820 + Missense_Mutation SNP C C A novel unknown TCGA-A1-A0SP-01 TCGA-A1-A0SP-01 C C Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.S35S A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(103-105)TCC>TCA c.105C>A 2 35 35 Missense_Mutation p.S35S A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(103-105)TCC>TCA c.105C>A 2 35 35 12 8975820 8975820 C A SNP A2ML1 NM_144670 human genbank 57_37b +1 validated missense c.105 p.S35 801 HMMPfam_A2M_N HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2ML1 999144568 genome.wustl.edu 37 12 8994108 8994108 + Missense_Mutation SNP G G C novel unknown TCGA-A1-A0SQ-01 TCGA-A1-A0SQ-01 G G Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.W408C A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1222-1224)TGG>TGC c.1224G>C 11 408 408 Missense_Mutation p.W408C A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1222-1224)TGG>TGC c.1224G>C 11 408 408 medium 2.005 W408C getma.org/?cm=msa&ty=f&p=A2ML1_HUMAN&rb=239&re=438&var=W408C getma.org/pdb.php?prot=A2ML1_HUMAN&from=239&to=438&var=W408C getma.org/?cm=var&var=hg19,12,8994108,G,C&fts=all 12 8994108 8994108 G C SNP A2ML1 NM_144670 human genbank 57_37b +1 validated missense c.1224 p.W408C 995 NULL HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2ML1 999144568 genome.wustl.edu 37 12 8995779 8995779 + Missense_Mutation SNP G G A novel unknown TCGA-A2-A04N-01 TCGA-A2-A04N-01 G G Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.R433H A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1297-1299)CGT>CAT c.1298G>A 12 433 433 Missense_Mutation p.R433H A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1297-1299)CGT>CAT c.1298G>A 12 433 433 neutral 255 R433H getma.org/?cm=msa&ty=f&p=A2ML1_HUMAN&rb=239&re=438&var=R433H getma.org/pdb.php?prot=A2ML1_HUMAN&from=239&to=438&var=R433H getma.org/?cm=var&var=hg19,12,8995779,G,A&fts=all 12 8995779 8995779 G A SNP A2ML1 NM_144670 human genbank 57_37b +1 validated missense c.1298 p.R433H 108 NULL HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2ML1 999144568 genome.wustl.edu 37 12 8995942 8995942 + Missense_Mutation SNP C C T novel unknown TCGA-A2-A04P-01 TCGA-A2-A04P-01 C C Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.I487I A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1459-1461)ATC>ATT c.1461C>T 12 487 487 Missense_Mutation p.I487I A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1459-1461)ATC>ATT c.1461C>T 12 487 487 12 8995942 8995942 C T SNP A2ML1 NM_144670 human genbank 57_37b +1 validated missense c.1461 p.I487 40 HMMPfam_A2M_N_2 HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2ML1 999144568 genome.wustl.edu 37 12 8998791 8998791 + Missense_Mutation SNP C C T novel unknown TCGA-A2-A04Q-01 TCGA-A2-A04Q-01 C C Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.F552F A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1654-1656)TTC>TTT c.1656C>T 14 552 552 Missense_Mutation p.F552F A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1654-1656)TTC>TTT c.1656C>T 14 552 552 12 8998791 8998791 C T SNP A2ML1 NM_144670 human genbank 57_37b +1 validated missense c.1656 p.F552 669 HMMPfam_A2M_N_2 HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2ML1 999144568 genome.wustl.edu 37 12 9000231 9000231 + Missense_Mutation SNP G G A novel unknown TCGA-A2-A04R-01 TCGA-A2-A04R-01 G G Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.A590A A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1768-1770)GCG>GCA c.1770G>A 15 590 590 Missense_Mutation p.A590A A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1768-1770)GCG>GCA c.1770G>A 15 590 590 12 9000231 9000231 G A SNP A2ML1 NM_144670 human genbank 57_37b +1 validated missense c.1770 p.A590 0 HMMPfam_A2M_N_2 HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTA2ML1 999144568 genome.wustl.edu 37 12 9001389 9001389 + Missense_Mutation SNP C C G novel unknown TCGA-A2-A04T-01 TCGA-A2-A04T-01 C C Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Missense_Mutation p.S636C A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1906-1908)TCT>TGT c.1907C>G 16 636 636 Missense_Mutation p.S636C A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1906-1908)TCT>TGT c.1907C>G 16 636 636 neutral -0.22 S636C getma.org/?cm=msa&ty=f&p=A2ML1_HUMAN&rb=602&re=735&var=S636C getma.org/pdb.php?prot=A2ML1_HUMAN&from=602&to=735&var=S636C getma.org/?cm=var&var=hg19,12,9001389,C,G&fts=all 12 9001389 9001389 C G SNP A2ML1 NM_144670 human genbank 57_37b +1 validated missense c.1907 p.S636C 165 NULL HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -TESTAADACL2 999344752 genome.wustl.edu 37 3 151474795 151474795 + Frame_Shift_Del DEL G G - novel unknown TCGA-A1-A0SB-01 TCGA-A1-A0SB-01 G G Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Frame_Shift_Del p.E207fs AADACL2 NM_207365 NP_997248 ADCL2_HUMAN Q6P093 c.(619-621)GAAfs c.619delG 5 207 207 Frame_Shift_Del p.E207fs AADACL2 NM_207365 NP_997248 ADCL2_HUMAN Q6P093 c.(619-621)GAAfs c.619delG 5 207 207 3 151474795 151474795 G - DEL AADACL2 NM_207365 human genbank 57_37b +1 validated frame_shift_del c.619 p.E207fs 192 superfamily_alpha/beta-Hydrolases,HMMPfam_Abhydrolase_3 superfamily_alpha/beta-Hydrolases,HMMPfam_Abhydrolase_3,PatternScan_LIPASE_GDXG_SER (deletion:cds_exon[151474780,151475382]) no_errors -TESTAAK1 999922848 genome.wustl.edu 37 2 69870164 69870166 + In_Frame_Del DEL CTT CTT - novel unknown TCGA-A1-A0SD-01 TCGA-A1-A0SD-01 CTT CTT Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx In_Frame_Del p.K3del AAK1 NM_014911 NP_055726 AAK1_HUMAN Q2M2I8 c.(7-9)AAGdel c.7_9delAAG 2 3 3 In_Frame_Del p.K3del AAK1 NM_014911 NP_055726 AAK1_HUMAN Q2M2I8 c.(7-9)AAGdel c.7_9delAAG 2 3 3 2 69870164 69870166 CTT - DEL AAK1 NM_014911 human genbank 57_37b -1 reviewed in_frame_del c.9_7 p.K3in_frame_del 1.000:1.000:1.000 NULL superfamily_Protein kinase-like (PK-like),HMMPfam_Pkinase,HMMSmart_SM00219,HMMSmart_SM00220,PatternScan_PROTEIN_KINASE_ST (deletion:cds_exon[69870010,69870172]) no_errors -TESTAASDH 999132949 genome.wustl.edu 37 4 57216157 57216157 + Frame_Shift_Del DEL C C - novel unknown TCGA-A1-A0SD-01 TCGA-A1-A0SD-01 C C Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Frame_Shift_Del p.G587fs AASDH NM_181806 NP_861522 ACSF4_HUMAN Q4L235 c.(1759-1761)GGAfs c.1760delG 11 587 587 Frame_Shift_Del p.G587fs AASDH NM_181806 NP_861522 ACSF4_HUMAN Q4L235 c.(1759-1761)GGAfs c.1760delG 11 587 587 4 57216157 57216157 C - DEL AASDH NM_181806 human genbank 57_37b -1 validated frame_shift_del c.1760 p.G587fs 1.000 superfamily_ACP-like,HMMPfam_PP-binding superfamily_Acetyl-CoA synthetase-like,HMMPfam_AMP-binding,PatternScan_AMP_BINDING,superfamily_ACP-like,HMMPfam_PP-binding,superfamily_Quinoprotein alcohol dehydrogenase-like,HMMSmart_SM00564,HMMPfam_PQQ (deletion:cds_exon[57215429,57216224]) no_errors -TESTAASS 999910157 genome.wustl.edu 37 7 121721545 121721553 + Splice_Site DEL GTCACTCAC GTCACTCAC - novel unknown TCGA-A1-A0SQ-01 TCGA-A1-A0SQ-01 GTCACTCAC GTCACTCAC Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Splice_Site p.W760_splice AASS NM_005763 NP_005754 c.e19+1 c.2280_splice 19 Splice_Site p.W760_splice AASS NM_005763 NP_005754 c.e19+1 c.2280_splice 19 7 121721545 121721553 GTCACTCAC - DEL AASS NM_005763 human genbank 57_37b -1 reviewed splice_site_del c.2280+1_2280+1 e19+1 0.107:0.108:0.120:0.896:0.996:1.000:0.997:1.000:1.000 - - (deletion:intron[121719767,121721553]) no_errors -TESTABCA1 999999919 genome.wustl.edu 37 9 107556793 107556794 + Splice_Site INS - - AAA novel unknown TCGA-A2-A04T-01 TCGA-A2-A04T-01 - - Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx rs5899617 Splice_Site p.K1795_splice ABCA1 NM_005502 NP_005493 c.e40-1 c.5383_splice 40 Splice_Site p.K1795_splice ABCA1 NM_005502 NP_005493 c.e40-1 c.5383_splice 40 9 107556793 107556794 - AAA INS ABCA1 NM_005502 human genbank 57_37b -1 reviewed splice_site_ins c.5383-3_5383-2 e39-2 1.000:0.061 - - - no_errors -TESTABCB6 999910058 genome.wustl.edu 37 2 220082498 220082499 + Frame_Shift_Ins INS - - T novel unknown TCGA-A2-A04T-01 TCGA-A2-A04T-01 - - Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Frame_Shift_Ins p.V194fs ABCB6 NM_005689 NP_005680 ABCB6_HUMAN Q9NP58 c.(580-582)GTGfs c.580_581insA 2 194 194 Frame_Shift_Ins p.V194fs ABCB6 NM_005689 NP_005680 ABCB6_HUMAN Q9NP58 c.(580-582)GTGfs c.580_581insA 2 194 194 2 220082498 220082499 - T INS ABCB6 NM_005689 human genbank 57_37b -1 reviewed frame_shift_ins c.581_580 p.V194fs 0.982:0.957 NULL superfamily_Multidrug resistance ABC transporter MsbA N-terminal domain,HMMPfam_ABC_membrane,superfamily_P-loop containing nucleoside triphosphate hydrolases,HMMSmart_SM00382,HMMPfam_ABC_tran,PatternScan_ABC_TRANSPORTER_1 - no_errors -TESTACOXL 999955289 genome.wustl.edu 37 2 111551702 111551703 + Frame_Shift_Ins INS - - A novel unknown TCGA-A2-A04T-01 TCGA-A2-A04T-01 - - Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Frame_Shift_Ins p.S99fs ACOXL NM_001105516 NP_001098986 ACOXL_HUMAN Q9NUZ1 c.(295-297)AGCfs c.296_297insA 5 99 99 Frame_Shift_Ins p.S99fs ACOXL NM_001142807 NP_001136279 ACOXL_HUMAN Q9NUZ1 c.(295-297)AGCfs c.296_297insA 5 99 99 2 111551702 111551703 - A INS ACOXL NM_001142807 human genbank 57_37b +1 validated frame_shift_ins c.296_297 p.S99fs 1.000:1.000 superfamily_Acyl-CoA dehydrogenase NM domain-like,HMMPfam_Acyl-CoA_dh_M superfamily_Acyl-CoA dehydrogenase NM domain-like,HMMPfam_Acyl-CoA_dh_M,HMMPfam_Acyl-CoA_dh_1,superfamily_Acyl-CoA dehydrogenase C-terminal domain-like,HMMPfam_ACOX - no_errors -TESTACTL7B 999910880 genome.wustl.edu 37 9 111617204 111617205 + Frame_Shift_Ins INS - - C novel unknown TCGA-A2-A04R-01 TCGA-A2-A04R-01 - - Unknown Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx Frame_Shift_Ins p.A336fs ACTL7B NM_006686 NP_006677 ACL7B_HUMAN Q9Y614 c.(1006-1008)GCCfs c.1006_1007insG 1 336 336 Frame_Shift_Ins p.A336fs ACTL7B NM_006686 NP_006677 ACL7B_HUMAN Q9Y614 c.(1006-1008)GCCfs c.1006_1007insG 1 336 336 9 111617204 111617205 - C INS ACTL7B NM_006686 human genbank 57_37b -1 reviewed frame_shift_ins c.1007_1006 p.A336fs 0.906:0.990 HMMPfam_Actin,HMMSmart_SM00268,superfamily_Actin-like ATPase domain HMMPfam_Actin,superfamily_Actin-like ATPase domain,HMMSmart_SM00268 - no_errors diff --git a/core/src/test/resources/panCancerStudySummary/meta_CNA.txt b/core/src/test/resources/panCancerStudySummary/meta_CNA.txt deleted file mode 100755 index d77cc4b1a69..00000000000 --- a/core/src/test/resources/panCancerStudySummary/meta_CNA.txt +++ /dev/null @@ -1,7 +0,0 @@ -cancer_study_identifier: multi_cancer_study -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: DISCRETE -stable_id: gistic -show_profile_in_analysis_tab: true -profile_description: Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification. -profile_name: Putative copy-number alterations from GISTIC diff --git a/core/src/test/resources/panCancerStudySummary/meta_clinical.txt b/core/src/test/resources/panCancerStudySummary/meta_clinical.txt deleted file mode 100755 index d444715414d..00000000000 --- a/core/src/test/resources/panCancerStudySummary/meta_clinical.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: multi_cancer_study -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -data_filename: data_clinical.txt diff --git a/core/src/test/resources/panCancerStudySummary/meta_mutations_extended.txt b/core/src/test/resources/panCancerStudySummary/meta_mutations_extended.txt deleted file mode 100755 index 34a709e75d7..00000000000 --- a/core/src/test/resources/panCancerStudySummary/meta_mutations_extended.txt +++ /dev/null @@ -1,7 +0,0 @@ -cancer_study_identifier: multi_cancer_study -genetic_alteration_type: MUTATION_EXTENDED -datatype: MAF -stable_id: mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations diff --git a/core/src/test/resources/panCancerStudySummary/meta_study.txt b/core/src/test/resources/panCancerStudySummary/meta_study.txt deleted file mode 100755 index 72b7fc77c6f..00000000000 --- a/core/src/test/resources/panCancerStudySummary/meta_study.txt +++ /dev/null @@ -1,7 +0,0 @@ -type_of_cancer: pan_cancer -cancer_study_identifier: multi_cancer_study -name: Multi Cancer Study Test -description: Multi Cancer Study Test -citation: TCGA, Nature 2012, ... -pmid: 23000897,26451490 -groups: PUBLIC;GDAC;SU2C-PI3K diff --git a/core/src/test/resources/protein_sample.txt b/core/src/test/resources/protein_sample.txt deleted file mode 100644 index 2b89a2ed6f9..00000000000 --- a/core/src/test/resources/protein_sample.txt +++ /dev/null @@ -1,2 +0,0 @@ -GENE_ID COMMON TCGA-13-0717 TCGA-13-0720 TCGA-13-0724 TCGA-13-0725 -5728 PTEN positive~https://devtracker.mskcc.org/devtracker/TCGALookup.do?studyId=11&key=TCGA-13-0717 negative~https://devtracker.mskcc.org/devtracker/TCGALookup.do?studyId=11&key=TCGA-13-0720 heterogeneous~https://devtracker.mskcc.org/devtracker/TCGALookup.do?studyId=11&key=TCGA-13-0724 negative~https://devtracker.mskcc.org/devtracker/TCGALookup.do?studyId=11&key=TCGA-13-0725 diff --git a/core/src/test/resources/protein_sample_table.html b/core/src/test/resources/protein_sample_table.html deleted file mode 100644 index 7fb2b0497e9..00000000000 --- a/core/src/test/resources/protein_sample_table.html +++ /dev/null @@ -1,29 +0,0 @@ -

    PTEN

    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    CasesMeasurementImage(s) *
    TCGA-13-0717positiveImage(s)
    TCGA-13-0720negativeImage(s)
    TCGA-13-0724heterogeneousImage(s)
    TCGA-13-0725negativeImage(s)
    -

    * Login required. diff --git a/core/src/test/resources/reference_genomes.txt b/core/src/test/resources/reference_genomes.txt deleted file mode 100644 index 91f2f96bfd2..00000000000 --- a/core/src/test/resources/reference_genomes.txt +++ /dev/null @@ -1,2 +0,0 @@ -#species name build_name nonN_bases URL release_date -mouse mm10 GRCm38 2652783500 http://hgdownload.cse.ucsc.edu/goldenPath/mm10 2011-12-01 00:00:00 \ No newline at end of file diff --git a/core/src/test/resources/seed_mini.sql b/core/src/test/resources/seed_mini.sql deleted file mode 100644 index e17819cfb51..00000000000 --- a/core/src/test/resources/seed_mini.sql +++ /dev/null @@ -1,590 +0,0 @@ --- --- Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. --- --- This library is distributed in the hope that it will be useful,but WITHOUT --- ANY WARRANTY,WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS --- FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder --- is on an "as is" basis,and Memorial Sloan-Kettering Cancer Center has no --- obligations to provide maintenance,support,updates,enhancements or --- modifications. In no event shall Memorial Sloan-Kettering Cancer Center be --- liable to any party for direct,indirect,special,incidental or --- consequential damages,including lost profits,arising out of the use of this --- software and its documentation,even if Memorial Sloan-Kettering Cancer --- Center has been advised of the possibility of such damage. --- --- This file is part of cBioPortal. --- --- cBioPortal is free software: you can redistribute it and/or modify --- it under the terms of the GNU Affero General Public License as --- published by the Free Software Foundation,either version 3 of the --- License. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU Affero General Public License for more details. --- --- You should have received a copy of the GNU Affero General Public License --- along with this program. If not,see . --- ---------------------------------------------------------------------------- --- A manually extracted subset of data for a small number of genes and samples from the BRCA --- data set. This is intended to be used during unit testing,to validate the portal APIs. --- In theory,it should be enough to run up a portal. --- --- Prepared by Stuart Watt -- 13th May 2015 - -SET SESSION sql_mode = 'ANSI_QUOTES'; - -DELETE FROM structural_variant; -DELETE FROM clinical_event_data; -DELETE FROM clinical_event; -DELETE FROM cosmic_mutation; -DELETE FROM copy_number_seg_file; -DELETE FROM copy_number_seg; -DELETE FROM sample_cna_event; -DELETE FROM cna_event; -DELETE FROM gistic_to_gene; -DELETE FROM gistic; -DELETE FROM mut_sig; -DELETE FROM clinical_attribute_meta; -DELETE FROM mutation; -DELETE FROM mutation_event; -DELETE FROM sample_profile; -DELETE FROM gene_panel; -DELETE FROM gene_panel_list; -DELETE FROM genetic_profile_samples; -DELETE FROM genetic_alteration; -DELETE FROM genetic_profile; -DELETE FROM gene_alias; -DELETE FROM gene; -DELETE FROM clinical_sample; -DELETE FROM sample; -DELETE FROM sample_list_list; -DELETE FROM sample_list; -DELETE FROM clinical_patient; -DELETE FROM patient; -DELETE FROM authorities; -DELETE FROM users; -DELETE FROM cancer_study; -DELETE FROM type_of_cancer; -DELETE FROM genetic_entity; - --- type_of_cancer -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('acc','Adrenocortical Carcinoma','Purple','ACC','tissue'); -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('acbc','Adenoid Cystic Breast Cancer','HotPink','ACBC','tissue'); -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('acyc','Adenoid Cystic Carcinoma','DarkRed','ACyC','tissue'); -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('aeca','Sweat Gland Carcinoma (Apocrine Eccrine Carcinoma)','Black','AECA','tissue'); -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('afx','Atypical Fibroxanthoma','Black','AFX','tissue'); -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('all','Pediatric Acute Lymphoid Leukemia','LightSalmon','ALL','tissue'); -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('aml','Acute Monocytic Leukemia','LightSalmon','AML-M5','tissue'); -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('blad','Bladder Urothelial Adenocarcinoma','Yellow','Bladder','tissue'); -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('blca','Bladder Urothelial Carcinoma','Yellow','Bladder','tissue'); -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('bpdcn','Blastic Plasmacytoid Dendritic Cell Neoplasm','LightSalmon','BPDCN','tissue'); -INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('brca','Breast Invasive Carcinoma','HotPink','Breast','tissue'); - --- reference_genome -INSERT INTO `reference_genome` VALUES (1,'human','hg19','GRCh37',2897310462,'http://hgdownload.cse.ucsc.edu/goldenPath/hg19/bigZips','2009-02-01'); -INSERT INTO `reference_genome` VALUES (2,'human','hg38','GRCh38',3049315783,'http://hgdownload.cse.ucsc.edu/goldenPath/hg38/bigZips','2013-12-01'); - --- cancer_study -INSERT INTO "cancer_study" ("CANCER_STUDY_ID","CANCER_STUDY_IDENTIFIER","TYPE_OF_CANCER_ID","NAME","DESCRIPTION","PUBLIC","PMID","CITATION","GROUPS","REFERENCE_GENOME_ID") -VALUES (1,'study_tcga_pub','brca','Breast Invasive Carcinoma (TCGA,Nature 2012)','The Cancer Genome Atlas (TCGA) Breast Invasive Carcinoma project. 825 cases.
    Nature 2012. Raw data via the TCGA Data Portal.',1,'23000897,26451490','TCGA,Nature 2012,...','SU2C-PI3K;PUBLIC;GDAC',1); - --- gene as genetic_entity -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,207,'AKT1','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,208,'AKT2','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,10000,'AKT3','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,369,'ARAF','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,472,'ATM','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,673,'BRAF','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,672,'BRCA1','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,675,'BRCA2','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,3265,'HRAS','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,3845,'KRAS','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,4893,'NRAS','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,51259,'TMEM216','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,282770,'OR10AG1','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,983,'CDK1','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,8085,'KMT2D','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); --- add genes for structural variant events -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,57670,'KIAA1549','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,27436,'EML4','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,238,'ALK','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,2115,'ETV1','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,7273,'TTN','protein-coding'); - --- for test panels 1 and 2 -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,3983,'ABLIM1','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,80070,'ADAMTS20','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,253559,'CADM2','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,1838,'DTNB','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,2648,'KAT2A','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,4437,'MSH3','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,4602,'MYB','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,440348,'NPIPB15','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,56914,'OTOR','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,27334,'P2RY10','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,9780,'PIEZO1','protein-coding'); -INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); -SET @max_entity_id = (Select MAX(ID) from genetic_entity); -INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,2261,'FGFR3','protein-coding'); - --- cna_event -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (20093,207,-2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (20092,207,2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (26161,208,2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (2774,10000,2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (16668,472,-2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (16669,472,2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (11284,673,-2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (11283,673,2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (23934,672,-2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (23933,672,2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (18460,675,-2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (18459,675,2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (15117,3265,-2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (15118,3265,2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (17280,3845,2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (1678,4893,-2); -INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (1677,4893,2); - --- cosmic_mutation -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('78883','17',41197784,'G','A','-','c.5503C>T',672,'R1835*',2,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('23923','17',41199686,'GC','G','-','c.5440delG',672,'A1814fs*20',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('24529','17',41201160,'A','AA','-','c.5383_5384insT',672,'S1796fs*34',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1577248','17',41201164,'C','A','-','c.5380G>T',672,'E1794*',2,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('35891','17',41209082,'G','GG','-','c.5263_5264insC',672,'Q1756fs*74',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('51256','17',41209095,'G','A','-','c.5251C>T',672,'R1751*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('24528','17',41215370,'C','A','-','c.5173G>T',672,'E1725*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('68967','17',41215913,'TC','T','-','c.5129delG',672,'G1710fs*4',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('95581','17',41223001,'C','A','-','c.4930G>T',672,'E1644*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('219051','17',41223106,'C','A','-','c.4825G>T',672,'E1609*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('78884','17',41226411,'G','A','-','c.4612C>T',672,'Q1538*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('187264','17',41226515,'G','T','-','c.4508C>A',672,'S1503*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('3983467','17',41228590,'G','A','-','c.4399C>T',672,'Q1467*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('979730','17',41234451,'G','A','-','c.4327C>T',672,'R1443*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('23959','17',41243685,'TC','T','-','c.3862delG',672,'E1288fs*19',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1302865','17',41243707,'G','A','-','c.3841C>T',672,'Q1281*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1577247','17',41243721,'A','T','-','c.3827T>A',672,'L1276*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('69203','17',41243753,'A','ATT','-','c.3794_3795insAA',672,'N1265fs*4',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1577246','17',41243781,'GTGTTC','G','-','c.3762_3766delGAACA',672,'K1254fs*11',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('112117','17',41243899,'A','ATAAGTTCT','-','c.3648_3649insAGAACTTA',672,'S1217fs*21',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1325059','17',41243984,'CCT','C','-','c.3562_3563delAG',672,'R1188fs*3',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('23931','17',41243998,'CTT','C','-','c.3548_3549delAA',672,'K1183fs*4',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1666857','17',41244021,'AC','A','-','c.3526_3526delG',672,'V1176fs*34',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('706227','17',41244070,'T','A','-','c.3478A>T',672,'K1160*',1,'BRCA1 truncating'); -INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1325058','17',41244082,'C','CATCTAACA','-','c.3465_3466insTGTTAGAT',672,'D1156fs*2',1,'BRCA1 truncating'); - --- gene_alias -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (207,'AKT'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (207,'CWS6'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (208,'HIHGHH'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (208,'PKBB'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (10000,'MPPH'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (10000,'MPPH2'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (369,'A-RAF'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (369,'ARAF1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (472,'AT1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (472,'ATA'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (673,'B-RAF1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (673,'BRAF1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (672,'BRCAI'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (672,'BRCC1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (675,'BRCC2'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (675,'BROVCA2'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (675,'FACD'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3265,'C-BAS/HAS'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3265,'C-H-RAS'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3845,'C-K-RAS'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3845,'KRAS1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3845,'KRAS2'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4893,'N-ras'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4893,'NCMS'); - --- for test panels 1 and 2 -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (56914,'FDP'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (56914,'MIAL1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (253559,'IGSF4D'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (253559,'Necl-3'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (253559,'NECL3'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (253559,'SynCAM 2'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (253559,'synCAM2'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4437,'MRP1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4437,'DUP'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4437,'FAP4'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (27334,'P2Y10'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (27334,'LYPSR2'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (80070,'ADAM-TS20'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (80070,'GON-1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (80070,'ADAMTS-20'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2648,'hGCN5'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2648,'GCN5'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2648,'GCN5L2'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2648,'PCAF-b'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4602,'c-myb_CDS'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4602,'Cmyb'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4602,'c-myb'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4602,'efg'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (440348,'A-761H5.4'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (440348,'NPIPL2'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3983,'LIMAB1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3983,'abLIM-1'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3983,'ABLIM'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3983,'LIMATIN'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (9780,'FAM38A'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (9780,'Mib'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (9780,'LMPH3'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (9780,'DHS'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2261,'JTK4'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2261,'HSFGFR3EX'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2261,'ACH'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2261,'CEK2'); -INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2261,'CD333'); - -INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,START,END,CHR,REFERENCE_GENOME_ID) VALUES(207,'14q32.33',105235686,105262088,14,1); -INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,START,END,CHR,REFERENCE_GENOME_ID) VALUES(207,'14q32.33',104769349,104795751,14,2); -INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,START,END,CHR,REFERENCE_GENOME_ID) VALUES(208,'19q13.2',40736224,40791443,19,1); -INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,START,END,CHR,REFERENCE_GENOME_ID) VALUES(208,'19q13.2',40230317,40285536,19,2); -INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,START,END,CHR,REFERENCE_GENOME_ID) VALUES(51259,'11q12.2',61159159,61166335,11,1); -INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,START,END,CHR,REFERENCE_GENOME_ID) VALUES(51259,'11q12.2',61391687,61398863,11,2); -INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,START,END,CHR,REFERENCE_GENOME_ID) VALUES(282770,'11q12.1',55734975,55735990,11,1); -INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,START,END,CHR,REFERENCE_GENOME_ID) VALUES(282770,'11q12.1',55967558,55968463,11,2); - -INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (2,'study_tcga_pub_gistic',1,'COPY_NUMBER_ALTERATION','DISCRETE','Putative copy-number alterations from GISTIC','Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification.','1'); -INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (3,'study_tcga_pub_mrna',1,'MRNA_EXPRESSION','Z-SCORE','mRNA expression (microarray)','Expression levels (Agilent microarray).','0'); -INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (4,'study_tcga_pub_log2CNA',1,'COPY_NUMBER_ALTERATION','LOG2-VALUE','Log2 copy-number values','Log2 copy-number values for each gene (from Affymetrix SNP6).','0'); -INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (5,'study_tcga_pub_methylation_hm27',1,'METHYLATION','CONTINUOUS','Methylation (HM27)','Methylation beta-values (HM27 platform). For genes with multiple methylation probes,the probe least correlated with expression is selected.','0'); -INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (6,'study_tcga_pub_mutations',1,'MUTATION_EXTENDED','MAF','Mutations','Mutation data from whole exome sequencing.','1'); -INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (7,'study_tcga_pub_structural_variants',1,'STRUCTURAL_VARIANT','SV','Structural Variants','Structural Variants test data.','1'); -INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (8,'study_tcga_pub_cna_long',1,'COPY_NUMBER_ALTERATION','DISCRETE_LONG','CNA values','CNA values dummy data','1'); - --- gene_panel -INSERT INTO gene_panel (INTERNAL_ID,STABLE_ID,DESCRIPTION) VALUES (1,'TESTPANEL_CNA_DISCRETE_LONG_FORMAT','Some test panel'); - --- genetic_alteration -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 10000),'0,0,1,2,0,1,1,1,0,1,1,1,0,1,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 207),'0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 208),'0,0,0,1,0,0,0,1,0,0,0,2,0,2,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3265),'0,0,0,0,0,0,1,0,0,0,0,-1,0,0,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3845),'0,0,0,1,0,0,-1,1,1,0,1,2,2,0,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 472),'0,-1,-1,0,0,-1,0,1,0,-1,-1,1,-1,-1,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 4893),'0,-1,0,-1,0,0,0,0,-1,1,-1,0,0,0,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 672),'0,0,0,0,0,1,0,-1,0,-1,-1,0,-1,0,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 673),'0,0,0,1,0,0,0,0,0,0,-1,0,0,0,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 675),'0,-1,0,0,0,0,-1,0,1,0,-1,1,-1,-1,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 10000),'-0.473833333333333,1.51866666666667,0.148333333333333,-0.187666666666667,0.914,-0.664333333333333,-1.70783333333333,0.976,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 207),'-1.102375,-0.24375,0.018625,-0.157,0.33075,1.008,0.68175,-0.664875,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 208),'-1.22235714285714,-0.592571428571429,-0.176642857142857,-0.310428571428571,-1.19892857142857,-0.670142857142857,0.0779285714285714,-0.302642857142857,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3265),'0.068,-0.062,-0.167833333333333,0.511666666666667,2.02066666666667,0.389166666666667,-0.724666666666666,0.9485,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 369),'-1.12475,-0.30675,0.1805,-0.59775,0.16625,0.402,0.243,-0.996,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3845),'-0.17075,0.4045,0.185333333333333,0.4285,1.67616666666667,0.238,0.469833333333333,2.15883333333333,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 472),'-1.50341666666667,-1.92183333333333,-1.75541666666667,-1.57325,-1.02958333333333,-1.39791666666667,-1.51483333333333,-2.07091666666667,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 4893),'-1.91125,-2.0595,-1.22825,-1.319,-4.16675,-1.187875,0.280625,-0.13075,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 672),'-1.66108333333333,-1.38791666666667,-1.92483333333333,-1.65625,-0.35825,-1.99566666666667,-0.136416666666667,-0.70975,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 673),'0.2305,0.56,-0.10225,-0.0855,-0.012,0.138,0.141,0.6095,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 675),'-0.57075,-1.3405,-1.541,-0.40475,0.629,-1.2315,0.768,-0.033,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 10000),'0.017,0.032,0.872,0.704,0.009,0.485,0.848,0.685,-0.270,1.054,0.658,0.455,0.256,0.628,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 207),'-0.005,-0.003,-0.022,0.072,-0.042,0.015,0.045,0.026,-0.441,-0.030,0.009,0.154,-0.348,0.011,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 208),'0.045,-0.048,0.043,0.324,-0.064,0.036,0.147,0.404,0.112,0.012,0.043,1.418,0.069,1.670,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3265),'0.003,-0.043,0.009,0.009,-0.043,0.031,0.411,-0.048,0.049,-0.030,0.056,-0.695,-0.022,-0.001,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3845),'-0.009,0.001,0.006,0.379,0.022,-0.010,-0.473,1.172,2.823,0.014,0.339,1.450,3.160,0.026,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 472),'-0.006,-0.500,-0.462,-0.013,-0.003,-0.448,0.135,0.522,0.211,-0.578,-0.350,0.655,-0.449,-0.668,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 4893),'0.011,-0.420,0.014,-0.341,-0.019,0.020,0.032,-0.052,-0.453,0.455,-0.318,0.278,0.240,0.034,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 672),'0.044,-0.082,0.027,-0.003,-0.012,0.486,-0.300,-0.397,-0.284,-0.547,-0.301,0.218,-0.389,-0.011,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 673),'0.015,0.005,0.005,0.344,-0.011,0.171,0.140,-0.013,0.021,0.010,-0.385,-0.177,0.075,0.002,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 675),'-0.005,-0.502,-0.240,0.016,0.022,-0.029,-0.319,0.004,1.020,-0.024,-0.366,0.768,-0.397,-0.667,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 10000),'0.841525757,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 207),'0.134488708,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 208),'0.072712077,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3265),'0.039372,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 369),'0.125441004,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3845),'0.049338479,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 472),'0.025402093,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 4893),'0.105977072,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 672),'0.066638638,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 673),'0.020369562,'); -INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 675),'0.793930197,'); - --- genetic_profile_samples -INSERT INTO "genetic_profile_samples" ("GENETIC_PROFILE_ID","ORDERED_SAMPLE_LIST") VALUES (2,'1,2,3,4,5,6,7,8,9,10,11,12,13,14,'); -INSERT INTO "genetic_profile_samples" ("GENETIC_PROFILE_ID","ORDERED_SAMPLE_LIST") VALUES (3,'2,3,6,8,9,10,12,13,'); -INSERT INTO "genetic_profile_samples" ("GENETIC_PROFILE_ID","ORDERED_SAMPLE_LIST") VALUES (4,'1,2,3,4,5,6,7,8,9,10,11,12,13,14,'); -INSERT INTO "genetic_profile_samples" ("GENETIC_PROFILE_ID","ORDERED_SAMPLE_LIST") VALUES (5,'2,'); - --- patient -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (1,'TCGA-A1-A0SB',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (2,'TCGA-A1-A0SD',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (3,'TCGA-A1-A0SE',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (4,'TCGA-A1-A0SF',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (5,'TCGA-A1-A0SG',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (6,'TCGA-A1-A0SH',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (7,'TCGA-A1-A0SI',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (8,'TCGA-A1-A0SJ',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (9,'TCGA-A1-A0SK',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (10,'TCGA-A1-A0SM',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (11,'TCGA-A1-A0SN',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (12,'TCGA-A1-A0SO',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (13,'TCGA-A1-A0SP',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (14,'TCGA-A1-A0SQ',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (15,'TCGA-XX-0800',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (16,'TCGA-XX-0900',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (17,'TCGA-AA-3664',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (18,'TCGA-AA-3665',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (19,'TCGA-A2-A04U',1); -INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (20,'TCGA-A1-A0SB',1); - --- sample -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (1,'TCGA-A1-A0SB-01','Primary Solid Tumor',1); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (2,'TCGA-A1-A0SD-01','Primary Solid Tumor',2); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (3,'TCGA-A1-A0SE-01','Primary Solid Tumor',3); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (4,'TCGA-A1-A0SF-01','Primary Solid Tumor',4); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (5,'TCGA-A1-A0SG-01','Primary Solid Tumor',5); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (6,'TCGA-A1-A0SH-01','Primary Solid Tumor',6); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (7,'TCGA-A1-A0SI-01','Primary Solid Tumor',7); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (8,'TCGA-A1-A0SJ-01','Primary Solid Tumor',8); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (9,'TCGA-A1-A0SK-01','Primary Solid Tumor',9); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (10,'TCGA-A1-A0SM-01','Primary Solid Tumor',10); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (11,'TCGA-A1-A0SN-01','Primary Solid Tumor',11); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (12,'TCGA-A1-A0SO-01','Primary Solid Tumor',12); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (13,'TCGA-A1-A0SP-01','Primary Solid Tumor',13); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (14,'TCGA-A1-A0SQ-01','Primary Solid Tumor',14); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (15,'TCGA-XX-0800-01','Primary Solid Tumor',15); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (16,'TCGA-XX-0900-01','Primary Solid Tumor',16); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (17,'TCGA-AA-3664-01','Primary Solid Tumor',17); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (18,'TCGA-AA-3665-01','Primary Solid Tumor',18); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (19,'TCGA-A1-A0SB-02','Primary Solid Tumor',1); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (20,'TCGA-A2-A04U-11','Solid Tissues Normal',19); -INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (21,'TCGA-A1-A0SB-11','Solid Tissues Normal',20); - --- mutation_event -INSERT INTO "mutation_event" ("MUTATION_EVENT_ID","ENTREZ_GENE_ID","CHR","START_POSITION","END_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","PROTEIN_CHANGE","MUTATION_TYPE","NCBI_BUILD","STRAND","VARIANT_TYPE","DB_SNP_RS","DB_SNP_VAL_STATUS","REFSEQ_MRNA_ID","CODON_CHANGE","UNIPROT_ACCESSION","PROTEIN_POS_START","PROTEIN_POS_END","CANONICAL_TRANSCRIPT","KEYWORD") VALUES (2038,672,'17',41244748,41244748,'G','A','Q934*','Nonsense_Mutation','37','+','SNP','rs80357223','unknown','NM_007294','c.(2800-2802)CAG>TAG','P38398',934,934,1,'BRCA1 truncating'); -INSERT INTO "mutation_event" ("MUTATION_EVENT_ID","ENTREZ_GENE_ID","CHR","START_POSITION","END_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","PROTEIN_CHANGE","MUTATION_TYPE","NCBI_BUILD","STRAND","VARIANT_TYPE","DB_SNP_RS","DB_SNP_VAL_STATUS","REFSEQ_MRNA_ID","CODON_CHANGE","UNIPROT_ACCESSION","PROTEIN_POS_START","PROTEIN_POS_END","CANONICAL_TRANSCRIPT","KEYWORD") VALUES (22604,672,'17',41258504,41258504,'A','C','C61G','Missense_Mutation','37','+','SNP','rs28897672','byCluster','NM_007294','c.(181-183)TGT>GGT','P38398',61,61,1,'BRCA1 C61 missense'); -INSERT INTO "mutation_event" ("MUTATION_EVENT_ID","ENTREZ_GENE_ID","CHR","START_POSITION","END_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","PROTEIN_CHANGE","MUTATION_TYPE","NCBI_BUILD","STRAND","VARIANT_TYPE","DB_SNP_RS","DB_SNP_VAL_STATUS","REFSEQ_MRNA_ID","CODON_CHANGE","UNIPROT_ACCESSION","PROTEIN_POS_START","PROTEIN_POS_END","CANONICAL_TRANSCRIPT","KEYWORD") VALUES (2039,672,'17',41276033,41276033,'C','T','C27_splice','Splice_Site','37','+','SNP','rs80358010','byCluster','NM_007294','c.e2+1','NA',-1,-1,1,'BRCA1 truncating'); - --- mutation -INSERT INTO "mutation" ("MUTATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","ENTREZ_GENE_ID","CENTER","SEQUENCER","MUTATION_STATUS","VALIDATION_STATUS","TUMOR_SEQ_ALLELE1","TUMOR_SEQ_ALLELE2","MATCHED_NORM_SAMPLE_BARCODE","MATCH_NORM_SEQ_ALLELE1","MATCH_NORM_SEQ_ALLELE2","TUMOR_VALIDATION_ALLELE1","TUMOR_VALIDATION_ALLELE2","MATCH_NORM_VALIDATION_ALLELE1","MATCH_NORM_VALIDATION_ALLELE2","VERIFICATION_STATUS","SEQUENCING_PHASE","SEQUENCE_SOURCE","VALIDATION_METHOD","SCORE","BAM_FILE","TUMOR_ALT_COUNT","TUMOR_REF_COUNT","NORMAL_ALT_COUNT","NORMAL_REF_COUNT") VALUES (2038,6,6,672,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','G','A','TCGA-A1-A0SH-10A-03D-A099-09','G','A','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1); -INSERT INTO "mutation" ("MUTATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","ENTREZ_GENE_ID","CENTER","SEQUENCER","MUTATION_STATUS","VALIDATION_STATUS","TUMOR_SEQ_ALLELE1","TUMOR_SEQ_ALLELE2","MATCHED_NORM_SAMPLE_BARCODE","MATCH_NORM_SEQ_ALLELE1","MATCH_NORM_SEQ_ALLELE2","TUMOR_VALIDATION_ALLELE1","TUMOR_VALIDATION_ALLELE2","MATCH_NORM_VALIDATION_ALLELE1","MATCH_NORM_VALIDATION_ALLELE2","VERIFICATION_STATUS","SEQUENCING_PHASE","SEQUENCE_SOURCE","VALIDATION_METHOD","SCORE","BAM_FILE","TUMOR_ALT_COUNT","TUMOR_REF_COUNT","NORMAL_ALT_COUNT","NORMAL_REF_COUNT") VALUES (22604,6,6,672,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','A','C','TCGA-A1-A0SH-10A-03D-A099-09','A','C','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1); -INSERT INTO "mutation" ("MUTATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","ENTREZ_GENE_ID","CENTER","SEQUENCER","MUTATION_STATUS","VALIDATION_STATUS","TUMOR_SEQ_ALLELE1","TUMOR_SEQ_ALLELE2","MATCHED_NORM_SAMPLE_BARCODE","MATCH_NORM_SEQ_ALLELE1","MATCH_NORM_SEQ_ALLELE2","TUMOR_VALIDATION_ALLELE1","TUMOR_VALIDATION_ALLELE2","MATCH_NORM_VALIDATION_ALLELE1","MATCH_NORM_VALIDATION_ALLELE2","VERIFICATION_STATUS","SEQUENCING_PHASE","SEQUENCE_SOURCE","VALIDATION_METHOD","SCORE","BAM_FILE","TUMOR_ALT_COUNT","TUMOR_REF_COUNT","NORMAL_ALT_COUNT","NORMAL_REF_COUNT") VALUES (2039,6,12,672,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','T','T','TCGA-A1-A0SO-10A-03D-A099-09','T','T','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1); - --- sample_list -INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (1,'study_tcga_pub_all','other',1,'All Tumors','All tumor samples (14 samples)'); -INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (2,'study_tcga_pub_acgh','other',1,'Tumors aCGH','All tumors with aCGH data (778 samples)'); -INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (3,'study_tcga_pub_cnaseq','other',1,'Tumors with sequencing and aCGH data','All tumor samples that have CNA and sequencing data (482 samples)'); -INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (4,'study_tcga_pub_complete','other',1,'Complete samples (mutations,copy-number,expression)','Samples with complete data (463 samples)'); -INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (5,'study_tcga_pub_log2CNA','other',1,'Tumors log2 copy-number','All tumors with log2 copy-number data (778 samples)'); -INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (6,'study_tcga_pub_methylation_hm27','other',1,'Tumors with methylation data','All samples with methylation (HM27) data (311 samples)'); -INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (7,'study_tcga_pub_mrna','other',1,'Tumors with mRNA data (Agilent microarray)','All samples with mRNA expression data (526 samples)'); -INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (8,'study_tcga_pub_sequenced','other',1,'Sequenced Tumors','All sequenced samples (507 samples)'); - --- sample_list_list -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,1); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,2); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,3); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,4); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,5); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,6); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,7); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,8); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,9); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,10); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,11); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,12); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,13); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,14); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,1); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,2); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,3); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,4); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,5); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,6); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,7); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,8); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,9); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,10); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,11); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,12); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,13); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,14); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,2); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,3); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,6); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,8); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,9); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,10); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,12); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,2); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,3); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,6); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,8); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,9); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,10); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,12); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,1); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,2); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,3); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,4); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,5); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,6); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,7); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,8); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,9); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,10); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,11); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,12); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,13); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,14); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (6,2); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,2); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,3); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,6); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,8); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,9); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,10); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,12); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,13); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,2); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,3); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,6); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,8); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,9); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,10); -INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,12); - --- sample_cna_event -INSERT INTO "sample_cna_event" ("CNA_EVENT_ID","SAMPLE_ID","GENETIC_PROFILE_ID") VALUES (2774,4,2); -INSERT INTO "sample_cna_event" ("CNA_EVENT_ID","SAMPLE_ID","GENETIC_PROFILE_ID") VALUES (17280,12,2); -INSERT INTO "sample_cna_event" ("CNA_EVENT_ID","SAMPLE_ID","GENETIC_PROFILE_ID") VALUES (26161,12,2); -INSERT INTO "sample_cna_event" ("CNA_EVENT_ID","SAMPLE_ID","GENETIC_PROFILE_ID") VALUES (17280,13,2); -INSERT INTO "sample_cna_event" ("CNA_EVENT_ID","SAMPLE_ID","GENETIC_PROFILE_ID") VALUES (26161,14,2); - --- alteration_driver_annotation - -- from sample_cna_event -INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (2774,2,4,'Putative_Driver','Pathogenic','Tier 1','Highly Actionable'); -INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (17280,2,12,'Putative_Driver','Pathogenic','Tier 1','Highly Actionable'); -INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (26161,2,12,'Putative_Passenger','Pathogenic','Tier 2','Potentially Actionable'); -INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (17280,2,13,'Putative_Passenger','Pathogenic','Tier 1','Highly Actionable'); -INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (26161,2,14,'Putative_Driver','Pathogenic','Tier 2','Potentially Actionable'); - -- from mutation -INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (26161,6,6,'Putative_Driver','Pathogenic','Tier 1','Highly Actionable'); -INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (22604,6,6,'Putative_Passenger','Pathogenic','Tier 2','Potentially Actionable'); -INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (2039,6,12,'Putative_Passenger','Pathogenic','Tier 1','Highly Actionable'); - --- sample_profile -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (1,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (1,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (2,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (2,3,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (2,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (2,5,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (2,6,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (3,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (3,3,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (3,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (3,6,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (4,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (4,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (5,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (5,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (6,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (6,3,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (6,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (6,6,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (7,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (7,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (8,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (8,3,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (8,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (8,6,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (9,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (9,3,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (9,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (9,6,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (10,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (10,3,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (10,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (10,6,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (11,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (11,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (12,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (12,3,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (12,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (12,6,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (13,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (13,3,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (13,4,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (14,2,NULL); -INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (14,4,NULL); - --- users -INSERT INTO users (EMAIL,NAME,ENABLED) values ('jami@gmail.com','Jami Bax',1); -INSERT INTO users (EMAIL,NAME,ENABLED) values ('Lonnie@openid.org','Lonnie Penaloza',0); -INSERT INTO users (EMAIL,NAME,ENABLED) values ('Dhorak@yahoo.com','Darryl Horak',1); - --- authorities -INSERT INTO authorities (EMAIL,AUTHORITY) values ('jami@gmail.com','ROLE_USER'); -INSERT INTO authorities (EMAIL,AUTHORITY) values ('Lonnie@openid.org','ROLE_USER'); -INSERT INTO authorities (EMAIL,AUTHORITY) values ('Dhorak@yahoo.com','ROLE_USER'); -INSERT INTO authorities (EMAIL,AUTHORITY) values ('Dhorak@yahoo.com','ROLE_MANAGER'); - diff --git a/core/src/test/resources/segment/data_cna_hg19.seg b/core/src/test/resources/segment/data_cna_hg19.seg deleted file mode 100644 index 1bffb06c470..00000000000 --- a/core/src/test/resources/segment/data_cna_hg19.seg +++ /dev/null @@ -1,11 +0,0 @@ -ID chrom loc.start loc.end num.mark seg.mean -TCGA-3C-AAAU-01 1 3218610 95674710 53225 0.0055 -TCGA-3C-AAAU-01 1 95676511 95676518 2 -1.6636 -TCGA-3C-AAAU-01 1 95680124 167057183 24886 0.0053 -TCGA-3C-AAAU-01 1 167057495 167059336 3 -1.0999 -TCGA-3C-AAAU-01 1 167059760 181602002 9213 -8e-04 -TCGA-3C-AAAU-01 1 181603120 181609567 6 -1.2009 -TCGA-3C-AAAU-01 1 181610685 201473647 12002 0.0055 -TCGA-3C-AAAU-10 1 201474400 201474544 2 -1.4235 -TCGA-3C-AAUU-01 1 201475220 247813706 29781 -4e-04 -TCGA-3C-AAUU-01 1 201475220 201475220 29781 -4e-04 diff --git a/core/src/test/resources/segment/meta_cna_hg19_seg.txt b/core/src/test/resources/segment/meta_cna_hg19_seg.txt deleted file mode 100644 index c43c774e4ca..00000000000 --- a/core/src/test/resources/segment/meta_cna_hg19_seg.txt +++ /dev/null @@ -1,6 +0,0 @@ -cancer_study_identifier: testnewseg -reference_genome_id: hg19 -description: Somatic CNA data (copy number ratio from tumor samples minus ratio from matched normals) from TCGA. -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: SEG -data_filename: brca_tcga_data_cna_hg19.seg diff --git a/core/src/test/resources/sequenced_cases.txt b/core/src/test/resources/sequenced_cases.txt deleted file mode 100644 index b5cb6d5f96b..00000000000 --- a/core/src/test/resources/sequenced_cases.txt +++ /dev/null @@ -1,91 +0,0 @@ -TCGA-02-0001 -TCGA-02-0003 -TCGA-02-0006 -TCGA-02-0007 -TCGA-02-0009 -TCGA-02-0010 -TCGA-02-0011 -TCGA-02-0014 -TCGA-02-0021 -TCGA-02-0024 -TCGA-02-0027 -TCGA-02-0028 -TCGA-02-0033 -TCGA-02-0034 -TCGA-02-0037 -TCGA-02-0038 -TCGA-02-0043 -TCGA-02-0046 -TCGA-02-0047 -TCGA-02-0052 -TCGA-02-0054 -TCGA-02-0055 -TCGA-02-0057 -TCGA-02-0058 -TCGA-02-0060 -TCGA-02-0064 -TCGA-02-0069 -TCGA-02-0071 -TCGA-02-0074 -TCGA-02-0075 -TCGA-02-0080 -TCGA-02-0083 -TCGA-02-0085 -TCGA-02-0086 -TCGA-02-0089 -TCGA-02-0099 -TCGA-02-0102 -TCGA-02-0107 -TCGA-02-0113 -TCGA-02-0114 -TCGA-02-0115 -TCGA-02-0116 -TCGA-06-0122 -TCGA-06-0124 -TCGA-06-0125 -TCGA-06-0126 -TCGA-06-0128 -TCGA-06-0129 -TCGA-06-0130 -TCGA-06-0132 -TCGA-06-0133 -TCGA-06-0137 -TCGA-06-0138 -TCGA-06-0139 -TCGA-06-0141 -TCGA-06-0143 -TCGA-06-0145 -TCGA-06-0147 -TCGA-06-0148 -TCGA-06-0154 -TCGA-06-0156 -TCGA-06-0157 -TCGA-06-0158 -TCGA-06-0166 -TCGA-06-0168 -TCGA-06-0169 -TCGA-06-0171 -TCGA-06-0173 -TCGA-06-0174 -TCGA-06-0176 -TCGA-06-0178 -TCGA-06-0184 -TCGA-06-0185 -TCGA-06-0187 -TCGA-06-0188 -TCGA-06-0189 -TCGA-06-0190 -TCGA-06-0195 -TCGA-06-0197 -TCGA-06-0201 -TCGA-06-0206 -TCGA-06-0208 -TCGA-06-0209 -TCGA-06-0210 -TCGA-06-0211 -TCGA-06-0213 -TCGA-06-0214 -TCGA-06-0219 -TCGA-06-0221 -TCGA-06-0237 -TCGA-06-0241 diff --git a/core/src/test/resources/sequenced_genes.txt b/core/src/test/resources/sequenced_genes.txt deleted file mode 100644 index f1f2452600c..00000000000 --- a/core/src/test/resources/sequenced_genes.txt +++ /dev/null @@ -1,601 +0,0 @@ -2 -12 -21 -25 -87 -100 -133 -158 -182 -199 -207 -230 -238 -267 -284 -301 -302 -310 -324 -331 -332 -358 -369 -387 -405 -472 -529 -545 -558 -572 -575 -577 -581 -595 -596 -598 -608 -613 -634 -637 -638 -654 -657 -658 -667 -672 -673 -675 -701 -710 -829 -830 -831 -842 -857 -862 -867 -891 -894 -898 -943 -998 -1017 -1019 -1021 -1024 -1027 -1028 -1029 -1030 -1031 -1033 -1050 -1063 -1080 -1103 -1111 -1116 -1117 -1123 -1192 -1271 -1277 -1278 -1281 -1292 -1316 -1398 -1410 -1432 -1436 -1454 -1499 -1512 -1540 -1571 -1576 -1594 -1608 -1613 -1621 -1641 -1662 -1755 -1785 -1793 -1804 -1869 -1876 -1903 -1956 -1969 -1977 -1993 -1996 -2014 -2033 -2042 -2043 -2045 -2060 -2064 -2065 -2113 -2171 -2173 -2185 -2202 -2241 -2246 -2249 -2254 -2260 -2261 -2263 -2308 -2309 -2313 -2321 -2324 -2335 -2475 -2549 -2550 -2621 -2625 -2691 -2729 -2735 -2736 -2737 -2765 -2770 -2778 -2885 -2887 -2891 -2896 -2909 -2956 -2993 -2994 -2995 -3002 -3014 -3055 -3082 -3083 -3091 -3092 -3133 -3135 -3148 -3159 -3211 -3213 -3214 -3218 -3265 -3312 -3320 -3337 -3364 -3371 -3397 -3399 -3452 -3480 -3485 -3486 -3596 -3600 -3611 -3621 -3635 -3643 -3667 -3680 -3683 -3685 -3688 -3689 -3690 -3702 -3717 -3725 -3741 -3791 -3815 -3821 -3838 -3845 -3895 -3916 -3932 -3939 -3956 -3958 -3959 -3977 -4057 -4067 -4087 -4088 -4089 -4094 -4100 -4129 -4133 -4139 -4176 -4179 -4193 -4194 -4221 -4223 -4233 -4234 -4255 -4282 -4292 -4303 -4313 -4318 -4324 -4330 -4342 -4436 -4440 -4478 -4507 -4595 -4599 -4601 -4609 -4613 -4643 -4683 -4705 -4753 -4763 -4829 -4832 -4837 -4846 -4851 -4893 -4916 -4920 -4926 -4974 -4982 -5045 -5052 -5054 -5079 -5080 -5111 -5155 -5156 -5159 -5164 -5170 -5287 -5290 -5292 -5295 -5296 -5305 -5324 -5326 -5371 -5378 -5395 -5423 -5451 -5465 -5468 -5501 -5515 -5522 -5528 -5551 -5576 -5578 -5579 -5580 -5582 -5583 -5584 -5585 -5587 -5588 -5590 -5591 -5594 -5595 -5598 -5599 -5600 -5601 -5602 -5603 -5609 -5621 -5629 -5650 -5727 -5728 -5747 -5764 -5770 -5771 -5781 -5881 -5894 -5908 -5925 -5934 -5947 -5966 -5979 -6093 -6098 -6117 -6146 -6184 -6196 -6197 -6224 -6251 -6252 -6282 -6286 -6302 -6383 -6416 -6469 -6497 -6502 -6505 -6506 -6514 -6566 -6608 -6635 -6646 -6656 -6657 -6664 -6678 -6693 -6696 -6714 -6717 -6722 -6733 -6751 -6772 -6774 -6790 -6792 -6794 -6795 -6850 -6855 -6872 -6876 -6927 -6935 -6938 -7015 -7037 -7048 -7076 -7077 -7122 -7133 -7150 -7153 -7157 -7248 -7249 -7272 -7374 -7391 -7392 -7408 -7409 -7410 -7422 -7428 -7465 -7472 -7474 -7476 -7490 -7507 -7533 -7561 -7832 -7852 -7869 -7980 -7982 -8021 -8031 -8038 -8073 -8091 -8115 -8295 -8379 -8408 -8445 -8451 -8503 -8505 -8527 -8650 -8651 -8751 -8771 -8795 -8805 -8825 -8826 -8872 -8877 -8899 -9020 -9064 -9131 -9168 -9173 -9201 -9211 -9212 -9314 -9315 -9321 -9371 -9401 -9518 -9545 -9564 -9580 -9681 -9712 -9757 -9777 -9784 -9833 -9877 -9950 -9990 -10000 -10006 -10018 -10102 -10106 -10135 -10161 -10165 -10188 -10215 -10257 -10393 -10446 -10451 -10457 -10570 -10612 -10630 -10677 -10746 -10752 -10763 -10882 -10912 -10956 -10991 -11200 -11202 -11344 -22954 -23161 -23235 -23239 -23321 -23480 -23491 -23509 -23522 -23532 -23786 -25775 -25805 -25865 -25895 -25907 -25980 -26002 -26019 -26038 -26511 -26524 -27075 -27148 -27201 -27352 -27440 -29108 -29110 -30014 -51050 -51079 -51147 -51230 -51347 -51592 -51684 -51701 -51765 -53335 -54518 -54861 -54900 -55023 -55294 -55351 -55526 -55740 -55914 -56672 -57007 -57037 -57120 -57188 -57591 -57634 -57724 -57787 -57798 -60561 -64919 -65012 -65059 -79837 -79858 -80324 -81608 -83596 -84446 -84919 -85366 -92979 -114793 -115557 -116448 -116986 -136991 -138474 -140688 -140706 -147339 -152110 -160851 -168374 -170825 -171017 -171023 -196403 -225689 -259266 -283455 -386653 -399473 -402176 -653145 -728712 diff --git a/core/src/test/resources/splitMutationsData/data_mutations_extended.txt b/core/src/test/resources/splitMutationsData/data_mutations_extended.txt deleted file mode 100644 index 882e13d8c16..00000000000 --- a/core/src/test/resources/splitMutationsData/data_mutations_extended.txt +++ /dev/null @@ -1,8 +0,0 @@ -#sequenced_samples: TCGA-AA-3664-01 TCGA-AA-3665-01 -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.PDB -TMEM216 51259 broad.mit.edu TCGA-AA-3664-01 Unknown valid Somatic Illumina GAIIx chr11 60921958 60921958 Nonsense_Mutation G61G -- -- -- -ACTN3 89 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Somatic Illumina GAIIx chr11 66075660 66075660 Missense_Mutation S116R medium mutationassessor.org/?cm=msa&ty=f&p=ACTN3_HUMAN&rb=46&re=149&var=S116R mutationassessor.org/pdb.php?prot=ACTN3_HUMAN&from=46&to=149&var=S116R -CLEC7A 64581 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Germline Illumina GAIIx chr12 10162443 10162443 Missense_Mutation T209A neutral mutationassessor.org/?cm=msa&ty=f&p=CLC7A_HUMAN&rb=137&re=243&var=T209A mutationassessor.org/pdb.php?prot=CLC7A_HUMAN&from=137&to=243&var=T209A -TAS2R10 50839 broad.mit.edu TCGA-AA-3664-01 Unknown valid Germline Illumina GAIIx chr12 10869904 10869904 Missense_Mutation G78S medium mutationassessor.org/?cm=msa&ty=f&p=T2R10_HUMAN&rb=1&re=296&var=G78S -GPR19 2842 broad.mit.edu TCGA-AA-3664-01 Unknown valid Germline Illumina GAIIx chr12 12706312 12706312 Nonsense_Mutation L113P high mutationassessor.org/?cm=msa&ty=f&p=GPR19_HUMAN&rb=82&re=330&var=L113P mutationassessor.org/pdb.php?prot=GPR19_HUMAN&from=82&to=330&var=L113P -SLC38A2 54407 broad.mit.edu TCGA-AA-3664-01 Unknown Unknown Somatic Illumina GAIIx chr12 45042571 45042571 Missense_Mutation T433A low mutationassessor.org/?cm=msa&ty=f&p=S38A2_HUMAN&rb=69&re=495&var=T433A diff --git a/core/src/test/resources/splitMutationsData/data_mutations_extended_continued.txt b/core/src/test/resources/splitMutationsData/data_mutations_extended_continued.txt deleted file mode 100644 index 54d8004cad7..00000000000 --- a/core/src/test/resources/splitMutationsData/data_mutations_extended_continued.txt +++ /dev/null @@ -1,4 +0,0 @@ -#sequenced_samples: TCGA-AA-3664-01 TCGA-AA-3665-01 -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.PDB -SP1 6667 broad.mit.edu TCGA-AA-3665-01 Unknown valid Somatic Illumina GAIIx chr12 52063536 52063536 Missense_Mutation A513V low mutationassessor.org/?cm=msa&ty=f&p=SP1_HUMAN&rb=401&re=600&var=A513V -OR10AG1 282770 broad.mit.edu TCGA-AA-3664-01 Unknown valid Somatic Illumina GAIIx chr11 55492179 55492179 Missense_Mutation R113C high mutationassessor.org/?cm=msa&ty=f&p=O10AG_HUMAN&rb=32&re=281&var=R113C mutationassessor.org/pdb.php?prot=O10AG_HUMAN&from=32&to=281&var=R113C diff --git a/core/src/test/resources/splitMutationsData/meta_mutations_extended.txt b/core/src/test/resources/splitMutationsData/meta_mutations_extended.txt deleted file mode 100644 index 5aa1eed1048..00000000000 --- a/core/src/test/resources/splitMutationsData/meta_mutations_extended.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: study_tcga_pub -cancer_type_id: breast -genetic_alteration_type: MUTATION_EXTENDED -datatype: MAF -stable_id: breast_mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations diff --git a/core/src/test/resources/supp-genes.txt b/core/src/test/resources/supp-genes.txt deleted file mode 100644 index 936538ae862..00000000000 --- a/core/src/test/resources/supp-genes.txt +++ /dev/null @@ -1,4 +0,0 @@ -#This file includes supplemental/non-standard gene symbols, such as isoforms -CDKN2Ap16INK4A protein-coding 9p21 468 -CDKN2Ap14ARF protein-coding 9p21 396 -EGFRVIII protein-coding 7p12 2115 diff --git a/core/src/test/resources/tabDelimitedData/data_expression2.txt b/core/src/test/resources/tabDelimitedData/data_expression2.txt deleted file mode 100644 index a62a65250fc..00000000000 --- a/core/src/test/resources/tabDelimitedData/data_expression2.txt +++ /dev/null @@ -1,31 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id SAMPLE1 SAMPLE2 SAMPLE3 -# will be loaded -TESTTNF 999997124 770 0 220 -TESTNAT1 999999999 0 0 3 -NA 999991111 0 2 8 -NA 0 0 9940 -TESTphosphoprotein 0 0 4 -# duplicates based on Entrez Id, will be skipped: -NA 999997124 0 2 7 -TESTTNFF 999997124 0 1 5 -# wrong entrez Id, will be skipped: -TESTTNFF 999991234 0 1 6 -TESTphosphoprotein -99999948 0 0 4 -TESTphosphoprotein 999992222 0 2 10 -TESTNAT1 999993333 0 5 11 -TEST10q23del 999994444 0 5 12 -1 999999991 0 1 13 -TESTWASH3P 999374739 0 2 14 -TESTWASH3P 999374739 0 2 27 -TESTABCA2 ABCA1 0 5 15 -NA ABCA1 0 5 16 -TESTphosphoprotein ABCA1 0 5 17 -TESTNAT1 ABCA1 0 5 18 -TEST10q23del ABCA1 0 5 19 -1 ABCA1 0 5 20 -TESTACAA1 NA 0 5 21 -NA NA 0 5 22 -TESTphosphoprotein NA 0 5 23 -TESTNAT1 NA 0 5 24 -TEST10q23del NA 0 5 25 -1 NA 0 5 26 diff --git a/core/src/test/resources/tabDelimitedData/data_patient_generic_assay.txt b/core/src/test/resources/tabDelimitedData/data_patient_generic_assay.txt deleted file mode 100644 index 3b3e376b63b..00000000000 --- a/core/src/test/resources/tabDelimitedData/data_patient_generic_assay.txt +++ /dev/null @@ -1,3 +0,0 @@ -ENTITY_STABLE_ID name description TCGA-A1-A0SB TCGA-A1-A0SD -test_patient_generic_assay_1 test_patient_generic_assay_1 test_patient_generic_assay_1 0.370266873 0.010373016 -test_patient_generic_assay_2 test_patient_generic_assay_2 test_patient_generic_assay_2 0.002709404 0.009212318 \ No newline at end of file diff --git a/core/src/test/resources/tabDelimitedData/data_rppa.txt b/core/src/test/resources/tabDelimitedData/data_rppa.txt deleted file mode 100644 index 1d559f4accc..00000000000 --- a/core/src/test/resources/tabDelimitedData/data_rppa.txt +++ /dev/null @@ -1,14 +0,0 @@ -Composite.Element.REF SAMPLE1 SAMPLE2 SAMPLE3 SAMPLE4 -TESTYWHAE|14-3-3_epsilon 1.5 0 0 2 -TESTEIF4EBP1 1.5 0 0 3 -TESTTP53BP1,53BP1 1.5 0 0 4 -TESTYWHAE|14-3-3_epsilon|53BP1 1.5 0 0 5 -NA 1.5 0 0 7 -TESTARAF|A-Raf_pS299 -1.5 0 0 8 -TESTACACA|ACC1 abc 0 0 9 -TESTPRKAA1|AMPK_alpha NA 0 0 11 -TESTPRKAA1|AMPK_pT172 1.2 0 0 12 -TESTAKT1 AKT2 10000|AKT 1.5 0 0 13 -NA|K-Ras 1.5 0 0 7 -TESTPRKCA |PKC-alpha 1.5 0 0 7 -TESTTP53 |PKC-alpha 1.5 0 0 7 diff --git a/core/src/test/resources/table_test.txt b/core/src/test/resources/table_test.txt deleted file mode 100644 index 810741d0c47..00000000000 --- a/core/src/test/resources/table_test.txt +++ /dev/null @@ -1,98 +0,0 @@ - Sample1 . Sample2 . . -PatientId AKT1 AKT2 AKT3 BRCA1 BRCA2 -TCGA-02-0001 - - - - - -TCGA-02-0003 - - - - - -TCGA-02-0006 - - - - - -TCGA-02-0007 - - - - - -TCGA-02-0009 - - - - - -TCGA-02-0010 - - - - - -TCGA-02-0011 - - - - - -TCGA-02-0014 - - - - - -TCGA-02-0021 - - - - - -TCGA-02-0024 - - - - - -TCGA-02-0027 - - - - - -TCGA-02-0028 - - - - - -TCGA-02-0033 - - - - - -TCGA-02-0034 - - - - - -TCGA-02-0037 - - - - - -TCGA-02-0038 - - - - - -TCGA-02-0043 - - - - - -TCGA-02-0046 - - - - - -TCGA-02-0047 - - - - - -TCGA-02-0052 - - - - - -TCGA-02-0054 - - - - - -TCGA-02-0055 - - - - - -TCGA-02-0057 - - - - - -TCGA-02-0058 - - - - - -TCGA-02-0060 - - - - - -TCGA-02-0064 - - - - - -TCGA-02-0069 - - - - - -TCGA-02-0071 - - - - - -TCGA-02-0074 - - - - - -TCGA-02-0075 - - - - - -TCGA-02-0080 - - - - - -TCGA-02-0083 - - - - - -TCGA-02-0085 - - - - - -TCGA-02-0086 - - - - - -TCGA-02-0089 - - - - - -TCGA-02-0099 - - - - - -TCGA-02-0102 - - - - - -TCGA-02-0107 - - - - - -TCGA-02-0113 - - - - - -TCGA-02-0114 - - - - - -TCGA-02-0115 - - - - - -TCGA-02-0116 - - - - - -TCGA-06-0122 - - - - - -TCGA-06-0124 - - - - - -TCGA-06-0125 - - - - - -TCGA-06-0126 - - - - - -TCGA-06-0128 - - - - - -TCGA-06-0129 - - - - - -TCGA-06-0130 - - - - - -TCGA-06-0132 - - - - - -TCGA-06-0133 - - - - - -TCGA-06-0137 - - - - - -TCGA-06-0138 - - - - - -TCGA-06-0139 - - - - - -TCGA-06-0141 - - - - - -TCGA-06-0142 - - - - - -TCGA-06-0143 - - - - - -TCGA-06-0145 - - - - - -TCGA-06-0147 - - - - - -TCGA-06-0148 amplified - - - - -TCGA-06-0151 - - - - - -TCGA-06-0154 - - - - - -TCGA-06-0156 - - - - - -TCGA-06-0157 - - - - - -TCGA-06-0158 - - - - - -TCGA-06-0159 - - - - - -TCGA-06-0166 - - - - - -TCGA-06-0168 - - - - - -TCGA-06-0169 - - - - - -TCGA-06-0171 - - - - - -TCGA-06-0173 - - amplified - - -TCGA-06-0174 - - - - - -TCGA-06-0176 - - - - - -TCGA-06-0178 - - - - - -TCGA-06-0184 - - - - - -TCGA-06-0185 - - - - - -TCGA-06-0187 - - - - - -TCGA-06-0188 - - - - - -TCGA-06-0189 - - - - - -TCGA-06-0190 - - - - - -TCGA-06-0195 - - - - - -TCGA-06-0197 - - - - - -TCGA-06-0201 - - - - - -TCGA-06-0206 - - - - - -TCGA-06-0208 - - - - - -TCGA-06-0209 - - - - - -TCGA-06-0210 - - - - - -TCGA-06-0211 - - - - - -TCGA-06-0213 - - - - - -TCGA-06-0214 - - - - - -TCGA-06-0219 - - - - - -TCGA-06-0221 - - - - - -TCGA-06-0237 - - - - - -TCGA-06-0241 - - - - - -gene altered 1.06% 0% 1.06% 0% 0% -pathway altered 1.06% . 1.06% . . \ No newline at end of file diff --git a/core/src/test/resources/test-users.txt b/core/src/test/resources/test-users.txt deleted file mode 100644 index 65d71c78deb..00000000000 --- a/core/src/test/resources/test-users.txt +++ /dev/null @@ -1,13 +0,0 @@ -# -# List of users for testing. Each line is the following format: -# -# EMAIL_ADDRESS\tUSERNAME\tENABLED\tAUTHORITIES -# -# where AUTHORITIES is a semicolon separated list of authorities -# -# Current valid authorities: ROLE_USER, ROLE_MANAGER -# -jami@gmail.com Jami Bax true ROLE_USER -Lonnie@openid.org Lonnie Penaloza false ROLE_USER -Dhorak@yahoo.com Darryl Horak true ROLE_MANAGER;ROLE_USER - diff --git a/core/src/test/resources/test.BRCA.sig_genes.txt b/core/src/test/resources/test.BRCA.sig_genes.txt deleted file mode 100644 index c12a76cc11e..00000000000 --- a/core/src/test/resources/test.BRCA.sig_genes.txt +++ /dev/null @@ -1,17273 +0,0 @@ -rank gene description N n npat nsite nsil n1 n2 n3 n4 n5 n6 p q -1 PIK3CA phosphoinositide-3-kinase, catalytic, alpha polypeptide 1666509 168 158 29 3 54 17 88 1 8 0 <1.00e-15 <8.64e-12 -2 TP53 tumor protein p53 664677 142 139 94 3 15 33 18 7 69 0 <1.00e-15 <8.64e-12 -3 MAP3K1 mitogen-activated protein kinase kinase kinase 1 2095431 53 36 52 1 1 1 1 0 22 28 1.45e-14 5.25e-11 -4 MLL3 myeloid/lymphoid or mixed-lineage leukemia 3 7507149 30 29 30 2 4 1 3 0 20 2 1.45e-14 5.25e-11 -5 GATA3 GATA binding protein 3 562770 55 53 32 1 1 1 0 0 51 2 1.52e-14 5.25e-11 -6 CDH1 cadherin 1, type 1, E-cadherin (epithelial) 1288794 31 31 29 0 0 4 0 0 27 0 1.89e-14 5.43e-11 -7 MAP2K4 mitogen-activated protein kinase kinase 4 570375 18 18 17 0 4 0 2 0 12 0 5.94e-14 1.13e-10 -8 TBX3 T-box 3 (ulnar mammary syndrome) 601302 11 11 11 0 0 0 1 0 10 0 6.42e-14 1.13e-10 -9 RUNX1 runt-related transcription factor 1 (acute myeloid leukemia 1; aml1 oncogene) 373659 14 14 13 1 0 0 3 0 11 0 6.91e-14 1.13e-10 -10 PTEN phosphatase and tensin homolog (mutated in multiple advanced cancers 1) 632736 15 14 15 0 0 0 3 0 10 2 6.99e-14 1.13e-10 -11 PIK3R1 phosphoinositide-3-kinase, regulatory subunit 1 (alpha) 1199055 14 14 13 1 1 2 1 1 9 0 7.23e-14 1.13e-10 -12 AKT1 v-akt murine thymoma viral oncogene homolog 1 732108 12 12 2 1 0 11 1 0 0 0 7.93e-12 1.14e-08 -13 CTCF CCCTC-binding factor (zinc finger protein) 1127568 11 11 10 2 1 1 3 0 6 0 8.11e-11 1.08e-07 -14 NCOR1 nuclear receptor co-repressor 1 3741153 16 15 16 0 0 0 2 0 12 2 8.20e-10 1.01e-06 -15 RPGR retinitis pigmentosa GTPase regulator 1546350 10 10 10 0 1 3 0 0 6 0 8.59e-08 0.000099 -16 RB1 retinoblastoma 1 (including osteosarcoma) 1396278 9 9 9 0 0 0 1 0 8 0 2.57e-07 0.00028 -17 CBFB core-binding factor, beta subunit 226122 5 5 5 1 2 0 1 0 2 0 3.67e-07 0.00037 -18 ZFP36L1 zinc finger protein 36, C3H type-like 1 519675 6 6 6 0 0 0 2 0 4 0 4.04e-07 0.00039 -19 CDKN1B cyclin-dependent kinase inhibitor 1B (p27, Kip1) 276315 5 5 4 0 0 0 0 0 5 0 4.33e-07 0.00039 -20 FOXA1 forkhead box A1 490269 7 7 6 0 1 3 2 0 1 0 4.72e-07 0.00041 -21 PRRX1 paired related homeobox 1 287976 5 5 5 0 1 2 1 0 1 0 4.09e-06 0.0034 -22 MUC4 mucin 4, cell surface associated 2554266 16 13 16 9 5 5 3 3 0 0 4.78e-06 0.0038 -23 AFF2 AF4/FMR2 family, member 2 2015325 11 11 11 1 1 5 1 1 3 0 7.93e-06 0.0060 -24 DSPP dentin sialophosphoprotein 852774 7 6 7 0 3 1 0 0 3 0 9.29e-06 0.0067 -25 ATN1 atrophin 1 1634568 8 8 6 0 0 4 0 0 4 0 0.000011 0.0077 -26 MYB v-myb myeloblastosis viral oncogene homolog (avian) 1177761 7 7 7 0 0 2 0 1 4 0 0.000014 0.0096 -27 GPS2 G protein pathway suppressor 2 469482 5 5 5 1 0 0 0 0 5 0 0.000022 0.014 -28 DALRD3 DALR anticodon binding domain containing 3 596739 6 6 6 0 0 2 1 0 3 0 0.000022 0.014 -29 SF3B1 splicing factor 3b, subunit 1, 155kDa 2047773 10 10 6 0 0 2 7 0 1 0 0.000032 0.017 -30 NKAIN4 Na+/K+ transporting ATPase interacting 4 104949 3 3 3 1 0 1 1 1 0 0 0.000032 0.017 -31 PIWIL1 piwi-like 1 (Drosophila) 1351662 8 8 8 1 2 3 2 0 1 0 0.000032 0.017 -32 FAM166A 236769 4 4 4 0 0 1 0 0 3 0 0.000032 0.017 -33 SAAL1 serum amyloid A-like 1 676338 5 5 5 0 0 1 0 0 4 0 0.000039 0.020 -34 TMEM82 transmembrane protein 82 161733 4 4 4 0 1 1 1 0 1 0 0.000043 0.022 -35 HIST1H2BC histone cluster 1, H2bc 195195 4 4 4 1 0 2 1 0 1 0 0.000049 0.023 -36 TBL1XR1 transducin (beta)-like 1 X-linked receptor 1 747318 6 5 5 0 0 0 0 0 4 2 0.000049 0.023 -37 WNT7A wingless-type MMTV integration site family, member 7A 502437 5 5 5 2 1 2 0 0 2 0 0.000050 0.023 -38 BID BH3 interacting domain death agonist 208884 4 4 4 0 0 2 0 0 2 0 0.000055 0.025 -39 LRFN4 leucine rich repeat and fibronectin type III domain containing 4 264654 4 4 2 0 0 1 3 0 0 0 0.000059 0.026 -40 TLE6 transducin-like enhancer of split 6 (E(sp1) homolog, Drosophila) 624624 6 6 6 0 0 2 2 0 2 0 0.000060 0.026 -41 HIST1H1C histone cluster 1, H1c 327522 4 4 4 0 1 0 1 0 2 0 0.000063 0.026 -42 FER1L5 fer-1-like 5 (C. elegans) 1100697 7 7 7 0 0 3 1 1 2 0 0.000064 0.026 -43 GPR32 G protein-coupled receptor 32 545025 5 5 3 1 1 1 0 3 0 0 0.000085 0.034 -44 HCFC1R1 host cell factor C1 regulator 1 (XPO1 dependent) 74022 2 2 2 0 1 0 0 0 1 0 0.00010 0.040 -45 MLLT4 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 4 2120781 7 7 7 0 0 1 1 0 5 0 0.00010 0.040 -46 ITPKB inositol 1,4,5-trisphosphate 3-kinase B 1234038 7 7 7 0 1 1 0 3 2 0 0.00011 0.043 -47 COL18A1 collagen, type XVIII, alpha 1 724503 6 6 6 1 1 2 0 0 3 0 0.00012 0.045 -48 CCR2 chemokine (C-C motif) receptor 2 361491 4 4 4 1 0 3 0 0 1 0 0.00013 0.046 -49 HAUS5 840606 6 6 6 0 1 2 2 0 1 0 0.00014 0.049 -50 MUC5B mucin 5B, oligomeric mucus/gel-forming 3671187 12 12 12 6 1 4 2 0 5 0 0.00015 0.051 -51 LLGL2 lethal giant larvae homolog 2 (Drosophila) 736164 5 5 4 0 0 2 1 1 1 0 0.00017 0.059 -52 PYCRL pyrroline-5-carboxylate reductase-like 158184 3 3 2 0 0 1 2 0 0 0 0.00018 0.060 -53 KLRG2 killer cell lectin-like receptor subfamily G, member 2 191139 3 3 1 0 0 0 3 0 0 0 0.00020 0.062 -54 PQLC2 PQ loop repeat containing 2 341211 4 4 3 0 2 1 0 0 1 0 0.00020 0.062 -55 GPRIN2 G protein regulated inducer of neurite outgrowth 2 631215 4 4 2 0 0 0 1 3 0 0 0.00020 0.062 -56 CIRBP cold inducible RNA binding protein 129792 3 3 3 0 1 2 0 0 0 0 0.00020 0.062 -57 GLI4 GLI-Kruppel family member GLI4 170859 3 3 3 0 2 0 1 0 0 0 0.00021 0.064 -58 HLA-A major histocompatibility complex, class I, A 432978 4 4 3 2 0 2 0 0 2 0 0.00022 0.064 -59 UBC ubiquitin C 1029717 6 6 6 0 1 0 3 0 2 0 0.00023 0.066 -60 MYT1L myelin transcription factor 1-like 1490580 8 8 8 0 0 2 3 1 2 0 0.00024 0.070 -61 PIP4K2C phosphatidylinositol-5-phosphate 4-kinase, type II, gamma 660621 5 5 5 0 1 0 2 0 2 0 0.00025 0.071 -62 PPEF1 protein phosphatase, EF-hand calcium binding domain 1 1027182 6 6 6 1 0 2 0 2 2 0 0.00026 0.071 -63 NF1 neurofibromin 1 (neurofibromatosis, von Recklinghausen disease, Watson disease) 4431687 13 12 13 0 0 1 2 3 5 2 0.00028 0.075 -64 KCNQ2 potassium voltage-gated channel, KQT-like subfamily, member 2 420303 4 4 4 1 1 2 1 0 0 0 0.00028 0.075 -65 LYSMD3 LysM, putative peptidoglycan-binding, domain containing 3 471003 4 4 4 0 0 0 0 2 2 0 0.00028 0.075 -66 ARID1A AT rich interactive domain 1A (SWI-like) 2939079 8 8 8 0 0 1 1 0 6 0 0.00030 0.078 -67 SCGB1C1 secretoglobin, family 1C, member 1 38532 2 2 1 0 0 2 0 0 0 0 0.00033 0.086 -68 ATP10B ATPase, class V, type 10B 2268318 10 10 10 1 2 3 4 0 1 0 0.00036 0.092 -69 GRIN2A glutamate receptor, ionotropic, N-methyl D-aspartate 2A 2252601 9 9 9 0 3 0 3 0 3 0 0.00037 0.093 -70 MED23 mediator complex subunit 23 2155764 8 8 8 0 1 1 1 0 5 0 0.00038 0.094 -71 KRTAP19-6 keratin associated protein 19-6 91260 2 2 2 0 0 1 1 0 0 0 0.00044 0.11 -72 KIAA1644 312312 3 3 3 0 0 2 0 0 1 0 0.00045 0.11 -73 FMN2 formin 2 1488552 7 7 7 1 1 3 0 2 1 0 0.00046 0.11 -74 FLG filaggrin 6182358 17 16 17 4 3 8 5 0 1 0 0.00047 0.11 -75 PRND prion protein 2 (dublet) 271245 3 3 3 0 0 3 0 0 0 0 0.00047 0.11 -76 SPTA1 spectrin, alpha, erythrocytic 1 (elliptocytosis 2) 3786276 13 12 13 2 1 10 0 0 0 2 0.00050 0.11 -77 CHST2 carbohydrate (N-acetylglucosamine-6-O) sulfotransferase 2 294567 3 3 3 1 0 2 0 0 1 0 0.00053 0.12 -78 GIPC3 GIPC PDZ domain containing family, member 3 131313 2 2 2 0 0 0 0 0 2 0 0.00054 0.12 -79 RGS7 regulator of G-protein signaling 7 776724 5 5 5 1 1 1 1 0 2 0 0.00059 0.13 -80 CCDC146 coiled-coil domain containing 146 1490580 5 5 2 0 0 0 1 0 4 0 0.00061 0.13 -81 PIP5K1C phosphatidylinositol-4-phosphate 5-kinase, type I, gamma 298116 3 3 3 1 0 1 1 1 0 0 0.00063 0.13 -82 PCDHA8 protocadherin alpha 8 1065714 6 6 5 1 0 2 2 1 1 0 0.00063 0.13 -83 OPRM1 opioid receptor, mu 1 770133 5 5 5 2 0 2 1 1 1 0 0.00064 0.13 -84 OBSCN obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF 6919029 19 17 19 4 3 9 3 0 4 0 0.00069 0.14 -85 CCT6B chaperonin containing TCP1, subunit 6B (zeta 2) 807144 5 5 5 0 1 1 2 0 1 0 0.00070 0.14 -86 TPO thyroid peroxidase 1085487 6 6 6 0 2 2 1 0 1 0 0.00070 0.14 -87 CCND3 cyclin D3 339183 5 3 5 0 1 0 0 1 0 3 0.00071 0.14 -88 SELL selectin L (lymphocyte adhesion molecule 1) 588627 4 4 4 0 1 0 1 1 1 0 0.00076 0.15 -89 SARM1 sterile alpha and TIR motif containing 1 340197 4 3 4 0 0 0 0 0 2 2 0.00080 0.15 -90 CCDC88B coiled-coil domain containing 88B 932373 5 5 5 0 0 1 3 1 0 0 0.00080 0.15 -91 SPEN spen homolog, transcriptional regulator (Drosophila) 5535933 15 13 14 6 1 2 1 1 10 0 0.00081 0.15 -92 ZP4 zona pellucida glycoprotein 4 847197 5 5 5 1 0 3 1 0 1 0 0.00083 0.16 -93 EPS8L1 EPS8-like 1 429429 4 4 4 0 1 0 0 2 1 0 0.00084 0.16 -94 C19orf39 chromosome 19 open reading frame 39 353886 3 3 3 0 1 0 1 0 1 0 0.00086 0.16 -95 CCDC159 361491 3 3 3 0 0 1 0 0 2 0 0.00088 0.16 -96 PHLDA1 pleckstrin homology-like domain, family A, member 1 228657 3 3 3 0 1 0 2 0 0 0 0.00090 0.16 -97 H2BFWT H2B histone family, member W, testis-specific 264654 3 3 3 0 0 1 0 0 2 0 0.00091 0.16 -98 MEFV Mediterranean fever 996762 7 6 6 2 4 1 1 0 1 0 0.00096 0.17 -99 NEK5 NIMA (never in mitosis gene a)-related kinase 5 1078896 6 6 6 0 3 0 1 1 1 0 0.00096 0.17 -100 LIF leukemia inhibitory factor (cholinergic differentiation factor) 303186 3 3 3 0 0 1 0 1 1 0 0.0011 0.18 -101 KCNT2 potassium channel, subfamily T, member 2 1784640 8 8 8 0 3 0 0 1 4 0 0.0011 0.18 -102 PRAME preferentially expressed antigen in melanoma 771147 5 5 4 0 0 1 0 3 1 0 0.0011 0.19 -103 C1orf65 chromosome 1 open reading frame 65 507507 4 4 2 0 0 3 1 0 0 0 0.0011 0.19 -104 LPO lactoperoxidase 1040871 5 5 5 0 0 1 2 0 2 0 0.0011 0.19 -105 CXorf65 292032 3 3 3 0 1 1 0 1 0 0 0.0012 0.20 -106 CPXM1 carboxypeptidase X (M14 family), member 1 1044927 6 6 6 1 0 3 2 1 0 0 0.0012 0.20 -107 PCDH19 protocadherin 19 1620879 7 7 7 0 1 1 4 0 1 0 0.0013 0.21 -108 ATHL1 ATH1, acid trehalase-like 1 (yeast) 572910 4 4 4 1 0 3 1 0 0 0 0.0014 0.22 -109 WSCD2 WSC domain containing 2 874068 6 5 6 0 2 3 0 0 1 0 0.0014 0.23 -110 HIST1H3B histone cluster 1, H3b 210405 3 3 3 0 0 1 0 1 1 0 0.0015 0.23 -111 ROBLD3 163254 2 2 2 0 0 0 1 0 1 0 0.0015 0.23 -112 PRKD2 protein kinase D2 1108302 5 5 5 0 1 2 1 1 0 0 0.0015 0.23 -113 CDH9 cadherin 9, type 2 (T1-cadherin) 1223898 6 6 6 0 2 2 1 1 0 0 0.0015 0.23 -114 OSCP1 679380 4 4 4 0 0 0 2 1 1 0 0.0016 0.24 -115 KLRC1 killer cell lectin-like receptor subfamily C, member 1 368082 3 3 3 0 0 0 1 0 2 0 0.0016 0.24 -116 FAM58A family with sequence similarity 58, member A 330057 3 3 3 0 0 1 0 0 2 0 0.0016 0.24 -117 KCNB2 potassium voltage-gated channel, Shab-related subfamily, member 2 1391208 7 6 6 2 3 1 0 0 1 2 0.0017 0.25 -118 MUC17 mucin 17, cell surface associated 6861738 19 18 18 3 4 7 3 1 4 0 0.0017 0.25 -119 FOXP3 forkhead box P3 460356 3 3 3 1 0 1 0 0 2 0 0.0018 0.26 -120 CBLB Cas-Br-M (murine) ecotropic retroviral transforming sequence b 1531647 7 7 7 1 2 1 4 0 0 0 0.0018 0.26 -121 INSIG2 insulin induced gene 2 353886 3 3 3 0 2 0 1 0 0 0 0.0019 0.26 -122 C12orf36 chromosome 12 open reading frame 36 215475 3 3 3 0 0 1 2 0 0 0 0.0019 0.27 -123 HMGN5 308763 3 3 3 0 1 0 1 0 1 0 0.0019 0.27 -124 NHSL2 NHS-like 2 1129596 6 6 6 2 1 4 0 0 1 0 0.0020 0.28 -125 C4orf40 chromosome 4 open reading frame 40 342732 3 3 3 0 1 0 1 0 1 0 0.0020 0.28 -126 HOXA5 homeobox A5 334113 3 3 3 0 0 2 1 0 0 0 0.0021 0.28 -127 OR8H2 olfactory receptor, family 8, subfamily H, member 2 478101 4 4 4 1 3 0 1 0 0 0 0.0021 0.28 -128 KCNA1 potassium voltage-gated channel, shaker-related subfamily, member 1 (episodic ataxia with myokymia) 756444 5 5 5 1 4 1 0 0 0 0 0.0021 0.29 -129 BAI1 brain-specific angiogenesis inhibitor 1 811707 6 5 6 0 2 2 0 0 0 2 0.0022 0.29 -130 CROCC ciliary rootlet coiled-coil, rootletin 1421121 7 6 7 3 2 3 0 1 1 0 0.0022 0.29 -131 KCNN2 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 2 649974 4 4 4 0 1 0 2 0 1 0 0.0022 0.29 -132 LETM1 leucine zipper-EF-hand containing transmembrane protein 1 1054560 5 5 5 0 1 2 0 0 2 0 0.0023 0.30 -133 USH2A Usher syndrome 2A (autosomal recessive, mild) 8064849 20 20 20 4 6 3 10 1 0 0 0.0023 0.30 -134 SAPS1 SAPS domain family, member 1 738192 4 4 4 3 0 2 0 1 1 0 0.0023 0.30 -135 RARB retinoic acid receptor, beta 699153 4 4 4 3 1 1 1 0 1 0 0.0024 0.30 -136 HRNR hornerin 3232632 9 9 9 2 0 3 3 0 3 0 0.0024 0.30 -137 KRT17 keratin 17 598767 4 4 4 0 0 3 0 0 1 0 0.0024 0.30 -138 SLC7A6OS solute carrier family 7, member 6 opposite strand 262626 3 3 3 0 1 1 1 0 0 0 0.0025 0.31 -139 DMKN dermokine 728559 4 4 4 0 0 2 0 0 2 0 0.0025 0.31 -140 HIST1H3C histone cluster 1, H3c 210405 3 2 3 0 0 0 0 1 0 2 0.0025 0.31 -141 KIAA1984 KIAA1984 421317 4 3 4 0 0 1 2 0 1 0 0.0025 0.31 -142 CD5L CD5 molecule-like 541476 3 3 3 0 0 0 1 1 1 0 0.0025 0.31 -143 C9orf125 chromosome 9 open reading frame 125 616512 4 4 4 0 2 1 1 0 0 0 0.0025 0.31 -144 BSX brain-specific homeobox 222573 2 2 2 0 0 1 0 0 1 0 0.0026 0.31 -145 MSX2 msh homeobox 2 226122 2 2 2 0 0 1 0 0 1 0 0.0026 0.31 -146 NPR3 natriuretic peptide receptor C/guanylate cyclase C (atrionatriuretic peptide receptor C) 741234 4 4 4 0 0 1 1 1 1 0 0.0026 0.31 -147 CST2 cystatin SA 222066 2 2 1 0 0 0 0 0 2 0 0.0027 0.32 -148 KBTBD10 kelch repeat and BTB (POZ) domain containing 10 935415 5 5 5 0 0 2 2 1 0 0 0.0027 0.32 -149 FAM169A 1044927 4 4 4 0 1 0 0 0 3 0 0.0028 0.32 -150 KCNT1 potassium channel, subfamily T, member 1 970398 5 5 5 1 1 3 0 0 1 0 0.0028 0.32 -151 OSBPL8 oxysterol binding protein-like 8 1400334 5 5 5 0 2 2 0 0 1 0 0.0028 0.32 -152 CSH2 chorionic somatomammotropin hormone 2 320931 3 3 2 0 1 1 1 0 0 0 0.0029 0.32 -153 ERBB3 v-erb-b2 erythroblastic leukemia viral oncogene homolog 3 (avian) 2122302 8 8 8 0 0 1 2 4 1 0 0.0029 0.32 -154 TLR4 toll-like receptor 4 1283724 7 6 6 0 1 2 2 0 2 0 0.0029 0.32 -155 ARID3B AT rich interactive domain 3B (BRIGHT-like) 869505 4 4 4 0 2 0 0 0 2 0 0.0029 0.32 -156 TSC22D1 TSC22 domain family, member 1 1586910 6 6 6 1 1 2 1 0 2 0 0.0029 0.32 -157 ASB16 ankyrin repeat and SOCS box-containing 16 429429 3 3 3 1 1 1 1 0 0 0 0.0029 0.32 -158 CEACAM18 carcinoembryonic antigen-related cell adhesion molecule 18 576966 4 4 4 1 2 0 1 0 1 0 0.0030 0.32 -159 OR12D3 olfactory receptor, family 12, subfamily D, member 3 484185 4 4 3 1 3 0 0 1 0 0 0.0030 0.33 -160 HLA-C major histocompatibility complex, class I, C 478608 3 3 3 0 1 1 1 0 0 0 0.0030 0.33 -161 SLC13A1 solute carrier family 13 (sodium/sulfate symporters), member 1 936936 5 5 5 0 0 4 0 0 1 0 0.0030 0.33 -162 LHFPL4 lipoma HMGIC fusion partner-like 4 244881 2 2 2 1 0 0 0 1 1 0 0.0031 0.33 -163 SOX14 SRY (sex determining region Y)-box 14 345774 3 3 3 0 2 0 0 0 1 0 0.0031 0.33 -164 GPR78 G protein-coupled receptor 78 182013 2 2 2 0 1 1 0 0 0 0 0.0031 0.33 -165 C1orf212 chromosome 1 open reading frame 212 43602 1 1 1 0 0 0 0 0 1 0 0.0033 0.34 -166 CUL4B cullin 4B 1384617 6 6 6 0 2 2 1 0 1 0 0.0033 0.34 -167 PRDM8 PR domain containing 8 381771 3 3 3 0 0 1 1 0 1 0 0.0033 0.34 -168 DHRS9 dehydrogenase/reductase (SDR family) member 9 494832 2 2 2 0 0 0 0 0 2 0 0.0033 0.34 -169 ACVR1B activin A receptor, type IB 739713 4 4 4 1 2 0 1 0 1 0 0.0033 0.34 -170 TBC1D10C TBC1 domain family, member 10C 248430 2 2 2 1 0 1 0 0 1 0 0.0033 0.34 -171 KIF26B kinesin family member 26B 1763346 6 6 6 0 2 3 0 0 1 0 0.0033 0.34 -172 GIMAP7 GTPase, IMAP family member 7 459849 3 3 3 0 0 1 1 0 1 0 0.0035 0.35 -173 KIR3DL2 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 2 574938 4 4 4 0 0 3 0 1 0 0 0.0035 0.35 -174 HIST1H2AI histone cluster 1, H2ai 201279 2 2 2 0 0 0 0 1 1 0 0.0035 0.35 -175 CCDC34 coiled-coil domain containing 34 547560 3 3 3 0 0 1 0 0 2 0 0.0036 0.35 -176 KL klotho 1311609 6 6 6 0 1 1 3 1 0 0 0.0036 0.36 -177 PREX2 2567448 9 9 9 1 1 4 4 0 0 0 0.0037 0.36 -178 BCMO1 beta-carotene 15,15'-monooxygenase 1 855816 3 3 3 0 1 0 0 0 2 0 0.0038 0.37 -179 SEMA4F sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4F 1125540 5 5 5 0 1 2 0 1 1 0 0.0038 0.37 -180 EGR3 early growth response 3 539955 3 3 3 1 0 0 0 0 3 0 0.0039 0.37 -181 DNAJC9 DnaJ (Hsp40) homolog, subfamily C, member 9 313833 3 3 3 0 0 0 2 1 0 0 0.0039 0.37 -182 TAS2R31 taste receptor, type 2, member 31 473538 3 3 3 0 0 0 3 0 0 0 0.0040 0.38 -183 RPS6KB2 ribosomal protein S6 kinase, 70kDa, polypeptide 2 572910 3 3 3 0 1 0 1 0 1 0 0.0040 0.38 -184 IL28B interleukin 28B (interferon, lambda 3) 309777 3 3 3 0 3 0 0 0 0 0 0.0041 0.39 -185 PCDHB7 protocadherin beta 7 1208688 5 5 5 1 0 4 1 0 0 0 0.0042 0.39 -186 ARHGEF1 Rho guanine nucleotide exchange factor (GEF) 1 1206660 5 5 5 0 2 2 0 0 1 0 0.0042 0.39 -187 KIFC1 kinesin family member C1 1039350 5 5 5 0 1 2 0 2 0 0 0.0042 0.39 -188 PDE3A phosphodiesterase 3A, cGMP-inhibited 1475370 6 6 6 3 2 3 0 1 0 0 0.0043 0.40 -189 ALDH8A1 aldehyde dehydrogenase 8 family, member A1 756444 4 4 4 0 0 3 0 0 1 0 0.0044 0.40 -190 ADAMTS1 ADAM metallopeptidase with thrombospondin type 1 motif, 1 1118442 5 5 5 1 1 1 1 1 1 0 0.0044 0.40 -191 C13orf35 chromosome 13 open reading frame 35 189618 2 2 2 0 1 0 0 1 0 0 0.0044 0.40 -192 FADS2 fatty acid desaturase 2 666198 4 4 4 1 0 2 2 0 0 0 0.0047 0.42 -193 SCN7A sodium channel, voltage-gated, type VII, alpha 2357550 8 8 8 0 1 4 2 1 0 0 0.0047 0.42 -194 TMEM223 150072 2 2 2 0 0 0 0 1 1 0 0.0047 0.42 -195 SRPR signal recognition particle receptor ('docking protein') 938964 7 5 7 0 1 2 2 1 1 0 0.0047 0.42 -196 SIRPB1 signal-regulatory protein beta 1 609414 4 4 4 0 1 2 1 0 0 0 0.0048 0.42 -197 SLC30A10 solute carrier family 30, member 10 477087 3 3 3 0 0 2 1 0 0 0 0.0048 0.42 -198 HECW1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 2210013 8 8 8 4 4 2 1 0 1 0 0.0048 0.42 -199 C1orf144 chromosome 1 open reading frame 144 185562 2 2 2 0 0 1 0 1 0 0 0.0049 0.42 -200 MAEL maelstrom homolog (Drosophila) 617019 4 4 4 1 2 0 2 0 0 0 0.0050 0.42 -201 MST1 macrophage stimulating 1 (hepatocyte growth factor-like) 579501 3 3 3 0 0 1 0 1 1 0 0.0050 0.42 -202 EIF3I eukaryotic translation initiation factor 3, subunit I 518154 3 3 3 0 0 2 0 0 1 0 0.0050 0.42 -203 VCX variable charge, X-linked 151086 2 2 2 2 0 0 1 1 0 0 0.0050 0.42 -204 PTPN22 protein tyrosine phosphatase, non-receptor type 22 (lymphoid) 1283217 7 6 7 0 0 2 2 3 0 0 0.0050 0.42 -205 C12orf57 chromosome 12 open reading frame 57 198237 3 2 3 0 1 0 0 0 0 2 0.0050 0.42 -206 UNC5D unc-5 homolog D (C. elegans) 1420614 6 6 6 3 3 3 0 0 0 0 0.0051 0.42 -207 ELL elongation factor RNA polymerase II 292539 3 3 3 0 0 1 2 0 0 0 0.0051 0.42 -208 FAM96B family with sequence similarity 96, member B 118638 2 2 2 0 1 0 1 0 0 0 0.0051 0.42 -209 ROR1 receptor tyrosine kinase-like orphan receptor 1 1400841 6 6 6 0 2 2 1 0 1 0 0.0051 0.42 -210 GRIA1 glutamate receptor, ionotropic, AMPA 1 1411995 6 6 6 0 1 2 1 1 1 0 0.0052 0.42 -211 C17orf95 241332 2 2 2 0 0 0 0 1 1 0 0.0053 0.43 -212 NINL 1999608 7 7 7 0 3 1 2 1 0 0 0.0053 0.43 -213 MRPL23 mitochondrial ribosomal protein L23 196209 2 2 2 0 1 1 0 0 0 0 0.0054 0.43 -214 CXorf58 chromosome X open reading frame 58 522717 3 3 3 1 0 2 0 0 1 0 0.0054 0.43 -215 ONECUT2 one cut homeobox 2 293046 2 2 2 0 1 0 0 0 1 0 0.0054 0.43 -216 STAT4 signal transducer and activator of transcription 4 1185873 5 5 5 2 2 0 2 0 1 0 0.0055 0.44 -217 RIMS2 regulating synaptic membrane exocytosis 2 2110134 7 7 7 0 1 1 5 0 0 0 0.0055 0.44 -218 TCEB3 transcription elongation factor B (SIII), polypeptide 3 (110kDa, elongin A) 1099176 4 4 4 0 0 1 1 1 1 0 0.0055 0.44 -219 RBM47 RNA binding motif protein 47 605865 3 3 3 1 1 0 0 0 2 0 0.0056 0.44 -220 BACH2 BTB and CNC homology 1, basic leucine zipper transcription factor 2 1288794 5 5 5 1 1 1 2 1 0 0 0.0056 0.44 -221 PLCL2 phospholipase C-like 2 1560039 7 6 7 0 0 1 3 0 1 2 0.0057 0.44 -222 PCDHGB6 protocadherin gamma subfamily B, 6 1222884 5 5 5 0 1 2 1 0 1 0 0.0057 0.44 -223 C17orf102 239304 2 2 2 0 0 1 1 0 0 0 0.0057 0.44 -224 DCLRE1C DNA cross-link repair 1C (PSO2 homolog, S. cerevisiae) 1082445 5 5 5 0 0 0 3 2 0 0 0.0058 0.44 -225 ACER3 375687 3 3 3 0 2 0 1 0 0 0 0.0058 0.44 -226 GPR162 G protein-coupled receptor 162 811707 4 4 4 0 1 3 0 0 0 0 0.0058 0.44 -227 TFAP2A transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha) 592176 3 3 3 0 0 0 2 1 0 0 0.0059 0.45 -228 NPAS4 neuronal PAS domain protein 4 1237587 5 5 5 0 0 2 2 0 1 0 0.0059 0.45 -229 TMEM167A 119145 2 2 2 0 1 0 1 0 0 0 0.0059 0.45 -230 UBE2J1 ubiquitin-conjugating enzyme E2, J1 (UBC6 homolog, yeast) 438555 3 3 3 0 0 0 1 0 2 0 0.0060 0.45 -231 SRD5A2 steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2) 300651 2 2 2 0 0 0 0 1 1 0 0.0060 0.45 -232 GCM2 glial cells missing homolog 2 (Drosophila) 781287 4 4 4 0 0 1 1 1 1 0 0.0061 0.45 -233 RTN4 reticulon 4 1568151 6 6 6 0 2 2 1 0 1 0 0.0062 0.45 -234 FAM167B 134355 2 2 2 0 0 2 0 0 0 0 0.0062 0.45 -235 FFAR3 free fatty acid receptor 3 507000 3 3 3 1 0 0 2 1 0 0 0.0062 0.45 -236 CNTLN centlein, centrosomal protein 2023437 7 7 7 1 2 0 4 0 1 0 0.0062 0.45 -237 APTX aprataxin 563784 3 3 3 0 0 1 2 0 0 0 0.0062 0.45 -238 CRHR1 corticotropin releasing hormone receptor 1 608400 3 3 3 0 0 0 2 0 1 0 0.0063 0.45 -239 HLF hepatic leukemia factor 451737 3 3 2 0 0 1 1 1 0 0 0.0063 0.45 -240 ZNF626 zinc finger protein 626 831987 4 4 4 0 1 0 1 0 2 0 0.0063 0.45 -241 STK11IP serine/threonine kinase 11 interacting protein 432471 3 3 3 0 0 3 0 0 0 0 0.0063 0.45 -242 SLC35B2 solute carrier family 35, member B2 659100 4 4 4 1 0 3 0 1 0 0 0.0064 0.45 -243 DYDC2 DPY30 domain containing 2 276822 2 2 2 0 0 0 0 0 2 0 0.0064 0.45 -244 C16orf62 chromosome 16 open reading frame 62 1518465 5 5 5 0 0 1 2 0 2 0 0.0064 0.45 -245 DOK5 docking protein 5 483171 3 3 3 0 1 1 0 0 1 0 0.0064 0.45 -246 PDZRN3 PDZ domain containing RING finger 3 1238601 5 5 5 1 1 4 0 0 0 0 0.0064 0.45 -247 FAM155A 618540 4 4 4 2 1 1 1 1 0 0 0.0065 0.45 -248 PTMS parathymosin 99879 2 1 2 0 0 0 0 0 0 2 0.0065 0.45 -249 ZNF268 zinc finger protein 268 593190 3 3 2 0 0 0 0 0 3 0 0.0066 0.46 -250 GYS1 glycogen synthase 1 (muscle) 1000311 5 5 5 0 1 3 1 0 0 0 0.0066 0.46 -251 ADCY9 adenylate cyclase 9 1604148 5 5 5 1 1 2 1 0 1 0 0.0066 0.46 -252 PLA2G4F phospholipase A2, group IVF 1212237 5 5 5 1 3 0 1 1 0 0 0.0067 0.46 -253 TMIGD2 transmembrane and immunoglobulin domain containing 2 368082 2 2 2 2 0 0 0 0 2 0 0.0068 0.46 -254 DBH dopamine beta-hydroxylase (dopamine beta-monooxygenase) 918177 4 4 4 0 0 2 1 0 1 0 0.0068 0.46 -255 C5orf41 chromosome 5 open reading frame 41 945048 4 4 4 0 0 0 3 0 1 0 0.0069 0.46 -256 MYO7A myosin VIIA 1821144 7 7 7 1 3 2 1 1 0 0 0.0069 0.46 -257 NPY1R neuropeptide Y receptor Y1 589641 3 3 3 0 0 0 1 1 1 0 0.0069 0.46 -258 TCF7 transcription factor 7 (T-cell specific, HMG-box) 496353 3 3 3 0 0 3 0 0 0 0 0.0069 0.46 -259 ASXL3 additional sex combs like 3 (Drosophila) 3214380 10 10 10 1 4 4 1 0 1 0 0.0069 0.46 -260 PCDHA5 protocadherin alpha 5 1318200 5 5 5 0 1 4 0 0 0 0 0.0069 0.46 -261 C8orf31 chromosome 8 open reading frame 31 210405 2 2 2 0 0 0 1 0 1 0 0.0069 0.46 -262 LSR lipolysis stimulated lipoprotein receptor 654030 3 3 3 0 0 0 2 0 1 0 0.0070 0.46 -263 FAM171A1 1320228 6 5 6 1 1 0 2 0 3 0 0.0070 0.46 -264 IFNE 319917 2 2 2 1 0 0 1 0 1 0 0.0071 0.46 -265 SFRP1 secreted frizzled-related protein 1 265161 2 2 2 0 1 0 0 0 1 0 0.0071 0.46 -266 MORN1 MORN repeat containing 1 404586 3 3 3 0 0 3 0 0 0 0 0.0071 0.46 -267 NECAB1 N-terminal EF-hand calcium binding protein 1 371124 3 3 3 2 0 3 0 0 0 0 0.0071 0.46 -268 CBLC Cas-Br-M (murine) ecotropic retroviral transforming sequence c 584571 3 3 3 0 0 0 1 0 2 0 0.0071 0.46 -269 TRAPPC2 trafficking protein particle complex 2 201786 2 2 2 0 0 0 2 0 0 0 0.0072 0.46 -270 RGS4 regulator of G-protein signaling 4 440583 3 3 3 0 0 0 1 0 2 0 0.0072 0.46 -271 PCNXL2 pecanex-like 2 (Drosophila) 3041493 8 8 7 0 2 3 1 1 1 0 0.0072 0.46 -272 KLHL1 kelch-like 1 (Drosophila) 1150890 4 4 4 0 1 1 1 0 1 0 0.0072 0.46 -273 MAGEA10 melanoma antigen family A, 10 564798 3 3 3 0 1 0 0 0 2 0 0.0072 0.46 -274 XRCC6BP1 XRCC6 binding protein 1 335634 3 2 3 0 0 0 0 0 1 2 0.0073 0.46 -275 PAEP progestagen-associated endometrial protein (placental protein 14, pregnancy-associated endometrial alpha-2-globulin, alpha uterine protein) 178464 2 2 2 0 1 1 0 0 0 0 0.0073 0.46 -276 KCNJ12 potassium inwardly-rectifying channel, subfamily J, member 12 633750 3 3 3 1 1 0 2 0 0 0 0.0074 0.46 -277 PPIB peptidylprolyl isomerase B (cyclophilin B) 269724 2 2 2 0 1 0 0 0 1 0 0.0074 0.46 -278 UBE2V1 ubiquitin-conjugating enzyme E2 variant 1 268203 2 2 2 0 0 0 0 1 1 0 0.0074 0.46 -279 IGSF5 immunoglobulin superfamily, member 5 584064 3 3 3 0 0 1 0 0 2 0 0.0074 0.46 -280 TMEM155 transmembrane protein 155 171366 2 2 2 0 1 1 0 0 0 0 0.0075 0.46 -281 MLC1 megalencephalic leukoencephalopathy with subcortical cysts 1 316368 2 2 2 0 0 0 0 0 2 0 0.0076 0.47 -282 PRPF38B PRP38 pre-mRNA processing factor 38 (yeast) domain containing B 786357 4 4 4 0 1 0 1 1 1 0 0.0078 0.47 -283 KRTAP6-1 keratin associated protein 6-1 111540 2 2 2 0 2 0 0 0 0 0 0.0079 0.48 -284 FAT3 FAT tumor suppressor homolog 3 (Drosophila) 6798363 15 15 15 2 4 3 5 1 2 0 0.0079 0.48 -285 MPV17L MPV17 mitochondrial membrane protein-like 148551 2 2 2 0 1 0 1 0 0 0 0.0079 0.48 -286 ALPPL2 alkaline phosphatase, placental-like 2 456300 3 3 2 0 0 0 3 0 0 0 0.0079 0.48 -287 CYP3A7 cytochrome P450, family 3, subfamily A, polypeptide 7 792948 4 4 4 2 1 2 0 1 0 0 0.0080 0.48 -288 FNBP4 formin binding protein 4 1468272 5 5 5 0 0 2 2 0 1 0 0.0080 0.48 -289 ARL6IP6 ADP-ribosylation-like factor 6 interacting protein 6 251979 2 2 2 0 0 1 1 0 0 0 0.0081 0.48 -290 RXFP3 relaxin/insulin-like family peptide receptor 3 456807 3 3 3 0 2 1 0 0 0 0 0.0081 0.48 -291 MAGEL2 MAGE-like 2 788385 3 3 3 0 1 0 0 0 2 0 0.0081 0.48 -292 ARMCX2 armadillo repeat containing, X-linked 2 964821 4 4 4 1 1 0 2 0 1 0 0.0082 0.48 -293 ABCC8 ATP-binding cassette, sub-family C (CFTR/MRP), member 8 2258685 7 7 7 0 2 4 0 1 0 0 0.0082 0.48 -294 C10orf72 chromosome 10 open reading frame 72 535392 3 3 3 2 0 0 1 1 1 0 0.0082 0.48 -295 C19orf45 chromosome 19 open reading frame 45 366561 2 2 2 0 0 1 0 0 1 0 0.0082 0.48 -296 ZNF438 zinc finger protein 438 1266993 5 5 5 0 0 1 1 0 3 0 0.0083 0.48 -297 LCE2B late cornified envelope 2B 170859 2 2 2 0 0 2 0 0 0 0 0.0083 0.48 -298 ATOH1 atonal homolog 1 (Drosophila) 405093 3 3 3 0 1 1 1 0 0 0 0.0083 0.48 -299 CHST9 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 9 640341 3 3 3 0 0 0 1 1 1 0 0.0084 0.48 -300 CYP4F11 cytochrome P450, family 4, subfamily F, polypeptide 11 822861 4 4 4 1 0 1 2 0 1 0 0.0084 0.48 -301 DULLARD dullard homolog (Xenopus laevis) 302172 2 2 1 1 0 0 2 0 0 0 0.0084 0.48 -302 KDM6A 2073123 5 5 5 0 0 0 0 2 3 0 0.0084 0.48 -303 OR4A15 olfactory receptor, family 4, subfamily A, member 15 526773 3 3 3 1 2 1 0 0 0 0 0.0084 0.48 -304 CYP26B1 cytochrome P450, family 26, subfamily B, polypeptide 1 614484 3 3 3 0 0 1 1 0 1 0 0.0086 0.48 -305 FLYWCH1 FLYWCH-type zinc finger 1 322452 2 2 2 0 1 0 1 0 0 0 0.0086 0.48 -306 ODZ4 odz, odd Oz/ten-m homolog 4 (Drosophila) 3028311 9 9 9 1 5 3 1 0 0 0 0.0086 0.48 -307 C12orf44 chromosome 12 open reading frame 44 337155 2 2 2 0 0 1 0 0 1 0 0.0086 0.48 -308 PAGE1 P antigen family, member 1 (prostate associated) 233727 2 2 2 1 0 0 2 0 0 0 0.0087 0.48 -309 NFE2L3 nuclear factor (erythroid-derived 2)-like 3 774189 3 3 3 1 0 1 0 0 2 0 0.0087 0.48 -310 NHLRC1 NHL repeat containing 1 419796 3 3 3 0 0 2 1 0 0 0 0.0088 0.49 -311 NOTCH4 Notch homolog 4 (Drosophila) 2935530 6 6 5 1 0 1 2 0 3 0 0.0088 0.49 -312 AP4M1 adaptor-related protein complex 4, mu 1 subunit 673803 3 3 3 0 0 0 0 2 1 0 0.0089 0.49 -313 DCAF17 754923 4 4 4 0 2 0 2 0 0 0 0.0089 0.49 -314 COMP cartilage oligomeric matrix protein 512070 3 3 3 2 1 2 0 0 0 0 0.0090 0.49 -315 C11orf85 346281 2 2 2 0 0 0 1 0 1 0 0.0090 0.49 -316 C3orf71 230178 2 2 2 0 1 0 0 1 0 0 0.0090 0.49 -317 CD97 CD97 molecule 1195506 5 5 5 0 1 1 2 0 1 0 0.0091 0.50 -318 TMEM89 transmembrane protein 89 246909 2 2 2 0 0 0 0 0 2 0 0.0092 0.50 -319 WFDC6 WAP four-disulfide core domain 6 138411 2 2 2 1 0 1 0 0 1 0 0.0092 0.50 -320 ATF5 activating transcription factor 5 275808 2 2 2 0 0 2 0 0 0 0 0.0093 0.50 -321 HIST1H3G histone cluster 1, H3g 210405 2 2 2 1 1 1 0 0 0 0 0.0094 0.50 -322 MREG melanoregulin 286962 2 2 1 0 0 0 2 0 0 0 0.0094 0.50 -323 EFHD2 EF-hand domain family, member D2 122694 1 1 1 0 0 0 0 0 1 0 0.0096 0.51 -324 SCFD1 sec1 family domain containing 1 995748 4 4 4 0 0 2 2 0 0 0 0.0096 0.51 -325 GPSM2 G-protein signaling modulator 2 (AGS3-like, C. elegans) 1070277 4 4 4 0 1 1 1 0 1 0 0.0096 0.51 -326 GPC5 glypican 5 803088 4 4 4 3 1 3 0 0 0 0 0.0096 0.51 -327 IL27RA interleukin 27 receptor, alpha 944541 4 4 4 1 0 1 1 2 0 0 0.0096 0.51 -328 GRIP2 glutamate receptor interacting protein 2 879138 4 4 4 1 1 2 0 1 0 0 0.0096 0.51 -329 FAM49B family with sequence similarity 49, member B 514605 3 3 3 0 0 0 3 0 0 0 0.0097 0.51 -330 EFCAB4A EF-hand calcium binding domain 4A 116610 1 1 1 0 0 0 0 0 1 0 0.0097 0.51 -331 ALOXE3 arachidonate lipoxygenase 3 1067742 4 4 4 1 0 1 1 0 2 0 0.0098 0.51 -332 USP12 ubiquitin specific peptidase 12 556179 3 3 3 0 1 1 0 0 1 0 0.0098 0.51 -333 SEMG1 semenogelin I 708279 3 3 3 0 0 1 1 0 1 0 0.0099 0.51 -334 C17orf97 429429 3 3 2 1 2 1 0 0 0 0 0.0100 0.51 -335 BRCA1 breast cancer 1, early onset 2915250 8 8 8 0 1 1 1 0 5 0 0.010 0.51 -336 C1orf194 chromosome 1 open reading frame 194 212433 2 2 2 0 0 1 1 0 0 0 0.010 0.51 -337 GNAS GNAS complex locus 1099176 4 4 4 0 0 2 1 0 1 0 0.010 0.51 -338 ZNF415 zinc finger protein 415 851760 4 4 4 1 1 1 1 0 1 0 0.010 0.51 -339 PLXDC1 plexin domain containing 1 710307 3 3 3 1 2 0 0 0 1 0 0.010 0.51 -340 OR4D10 olfactory receptor, family 4, subfamily D, member 10 476580 3 3 3 0 0 0 2 0 1 0 0.010 0.51 -341 HIF3A hypoxia inducible factor 3, alpha subunit 936429 4 4 4 2 1 1 1 1 0 0 0.010 0.51 -342 CPAMD8 C3 and PZP-like, alpha-2-macroglobulin domain containing 8 2319018 7 7 5 0 1 1 1 4 0 0 0.010 0.51 -343 C17orf81 chromosome 17 open reading frame 81 501930 3 3 3 0 0 0 2 1 0 0 0.010 0.51 -344 EPB41L4A erythrocyte membrane protein band 4.1 like 4A 1087008 4 4 4 0 1 1 0 0 2 0 0.010 0.51 -345 NR1H2 nuclear receptor subfamily 1, group H, member 2 584064 3 3 3 0 2 1 0 0 0 0 0.010 0.51 -346 SNAP23 synaptosomal-associated protein, 23kDa 336648 2 2 2 0 0 0 0 1 1 0 0.010 0.51 -347 SHD Src homology 2 domain containing transforming protein D 378222 3 3 3 0 1 2 0 0 0 0 0.010 0.51 -348 NPAS3 neuronal PAS domain protein 3 876603 4 4 4 0 0 2 0 0 2 0 0.010 0.51 -349 MAP3K10 mitogen-activated protein kinase kinase kinase 10 783822 4 4 4 0 1 2 1 0 0 0 0.010 0.51 -350 CAMKK1 calcium/calmodulin-dependent protein kinase kinase 1, alpha 682929 3 3 3 0 0 0 1 0 2 0 0.010 0.51 -351 ETNK1 ethanolamine kinase 1 538434 3 3 3 0 0 2 0 1 0 0 0.010 0.51 -352 SLCO5A1 solute carrier organic anion transporter family, member 5A1 1293357 5 4 5 0 1 1 0 1 0 2 0.010 0.51 -353 WBSCR17 Williams-Beuren syndrome chromosome region 17 810693 4 4 4 0 2 0 1 0 1 0 0.010 0.51 -354 SERPINA4 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 4 659100 3 3 3 0 0 2 0 0 1 0 0.010 0.51 -355 KIAA1045 KIAA1045 624117 3 3 3 1 0 2 0 0 1 0 0.010 0.51 -356 UBQLN4 ubiquilin 4 741741 4 4 4 0 0 1 2 1 0 0 0.011 0.51 -357 TMCC1 transmembrane and coiled-coil domain family 1 1002846 4 4 4 0 1 0 3 0 0 0 0.011 0.51 -358 GHRL ghrelin/obestatin preprohormone 135369 2 2 2 0 2 0 0 0 0 0 0.011 0.51 -359 EIF1AX eukaryotic translation initiation factor 1A, X-linked 224601 2 2 2 0 0 0 1 0 1 0 0.011 0.51 -360 C9orf102 chromosome 9 open reading frame 102 1070784 4 4 2 1 2 0 0 2 0 0 0.011 0.51 -361 MADD MAP-kinase activating death domain 2577588 7 7 7 2 2 3 0 0 2 0 0.011 0.51 -362 C11orf40 chromosome 11 open reading frame 40 313326 2 2 2 0 0 0 2 0 0 0 0.011 0.51 -363 ZDHHC1 zinc finger, DHHC-type containing 1 213447 2 2 2 0 0 0 0 2 0 0 0.011 0.51 -364 PPM1L protein phosphatase 1 (formerly 2C)-like 557193 3 3 3 1 0 1 1 1 0 0 0.011 0.51 -365 IFI35 interferon-induced protein 35 401544 2 2 2 0 0 0 0 0 2 0 0.011 0.51 -366 ZFPL1 zinc finger protein-like 1 487227 3 3 3 1 1 1 1 0 0 0 0.011 0.51 -367 TMSB15A 74022 1 1 1 0 0 0 1 0 0 0 0.011 0.51 -368 UPB1 ureidopropionase, beta 583050 3 3 3 0 0 1 0 0 2 0 0.011 0.51 -369 MYRIP myosin VIIA and Rab interacting protein 1340508 5 5 5 0 1 1 2 1 0 0 0.011 0.51 -370 PLA2G4A phospholipase A2, group IVA (cytosolic, calcium-dependent) 1175226 6 5 5 0 2 1 2 1 0 0 0.011 0.51 -371 C8orf73 chromosome 8 open reading frame 73 341718 2 2 2 1 0 1 1 0 0 0 0.011 0.51 -372 RPL13A ribosomal protein L13a 252486 2 2 2 0 0 0 2 0 0 0 0.011 0.51 -373 TTC4 tetratricopeptide repeat domain 4 584571 3 3 3 1 0 0 1 2 0 0 0.011 0.51 -374 TRAF7 TNF receptor-associated factor 7 431457 3 3 3 0 1 1 0 0 1 0 0.011 0.51 -375 COL23A1 collagen, type XXIII, alpha 1 456300 3 3 3 0 0 1 1 0 1 0 0.011 0.51 -376 RPS5 ribosomal protein S5 265161 2 2 2 0 0 0 0 2 0 0 0.011 0.51 -377 C4orf50 344253 2 2 2 1 0 1 0 0 1 0 0.011 0.51 -378 HTR5A 5-hydroxytryptamine (serotonin) receptor 5A 545025 3 3 3 0 2 1 0 0 0 0 0.011 0.52 -379 CCDC102B coiled-coil domain containing 102B 795990 4 4 4 0 3 0 1 0 0 0 0.011 0.52 -380 FRMD4A FERM domain containing 4A 1158495 4 4 4 1 0 3 0 0 1 0 0.012 0.53 -381 STARD4 StAR-related lipid transfer (START) domain containing 4 323466 2 2 2 0 0 0 2 0 0 0 0.012 0.53 -382 HIST2H2BE histone cluster 2, H2be 195195 2 2 2 0 0 1 1 0 0 0 0.012 0.53 -383 EFEMP1 EGF-containing fibulin-like extracellular matrix protein 1 771654 4 4 4 1 0 1 1 0 2 0 0.012 0.53 -384 SPRR2B small proline-rich protein 2B 113061 1 1 1 0 0 0 0 0 1 0 0.012 0.53 -385 NOL12 nucleolar protein 12 237783 2 2 2 0 1 0 0 1 0 0 0.012 0.53 -386 PROK2 prokineticin 2 121173 1 1 1 0 0 0 0 0 1 0 0.012 0.53 -387 TSNARE1 t-SNARE domain containing 1 644397 3 3 3 0 2 1 0 0 0 0 0.012 0.53 -388 OBFC1 oligonucleotide/oligosaccharide-binding fold containing 1 579501 3 3 3 0 2 0 0 1 0 0 0.012 0.53 -389 FBXO44 F-box protein 44 384813 2 2 2 0 0 1 0 0 1 0 0.012 0.53 -390 FKSG83 291018 2 2 2 0 0 2 0 0 0 0 0.012 0.53 -391 CADPS Ca2+-dependent secretion activator 1918995 6 6 6 0 0 2 2 1 1 0 0.012 0.53 -392 PGBD5 piggyBac transposable element derived 5 707772 3 3 3 0 1 0 0 1 1 0 0.012 0.53 -393 HS6ST2 heparan sulfate 6-O-sulfotransferase 2 707265 3 3 3 0 0 1 2 0 0 0 0.012 0.53 -394 LRRC10 leucine rich repeat containing 10 417768 2 2 2 0 0 0 0 0 2 0 0.012 0.53 -395 IL1R2 interleukin 1 receptor, type II 623103 3 3 3 1 0 1 0 0 2 0 0.012 0.53 -396 CYP2A13 cytochrome P450, family 2, subfamily A, polypeptide 13 770640 4 4 4 1 1 2 1 0 0 0 0.012 0.54 -397 MUC6 mucin 6, oligomeric mucus/gel-forming 1565616 4 4 4 0 0 1 0 0 3 0 0.012 0.54 -398 PLA2G3 phospholipase A2, group III 719940 3 3 2 0 0 0 1 2 0 0 0.012 0.54 -399 PAX5 paired box 5 520689 3 3 3 0 0 1 1 0 1 0 0.012 0.54 -400 NUMBL numb homolog (Drosophila)-like 393939 3 2 3 0 0 0 1 0 0 2 0.012 0.54 -401 PLEKHA9 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 9 598260 3 3 3 0 0 2 0 1 0 0 0.013 0.54 -402 CRCT1 cysteine-rich C-terminal 1 44109 1 1 1 0 0 0 0 0 1 0 0.013 0.54 -403 CD163L1 CD163 molecule-like 1 2250066 7 7 7 0 1 3 2 1 0 0 0.013 0.54 -404 FGF18 fibroblast growth factor 18 308256 2 2 2 1 0 2 0 0 0 0 0.013 0.54 -405 GTSE1 G-2 and S-phase expressed 1 1141764 4 4 4 0 0 2 0 1 1 0 0.013 0.54 -406 NUDT8 nudix (nucleoside diphosphate linked moiety X)-type motif 8 120159 1 1 1 0 0 0 0 0 1 0 0.013 0.54 -407 OR5I1 olfactory receptor, family 5, subfamily I, member 1 481143 3 3 3 0 1 1 1 0 0 0 0.013 0.54 -408 WAC WW domain containing adaptor with coiled-coil 978510 4 4 4 0 0 0 3 0 1 0 0.013 0.54 -409 TMEM150B 367575 2 2 1 0 0 0 2 0 0 0 0.013 0.54 -410 OR51A7 olfactory receptor, family 51, subfamily A, member 7 478101 3 3 3 0 0 1 1 1 0 0 0.013 0.54 -411 ZPLD1 zona pellucida-like domain containing 1 679380 3 3 3 0 1 0 1 0 1 0 0.013 0.54 -412 SETDB1 SET domain, bifurcated 1 2007720 7 7 6 0 2 3 1 1 0 0 0.013 0.54 -413 OPN4 opsin 4 637806 3 3 3 1 0 1 1 0 1 0 0.013 0.54 -414 CCDC135 coiled-coil domain containing 135 572910 3 3 3 0 1 1 1 0 0 0 0.013 0.54 -415 FAM114A2 795990 4 4 4 0 2 1 1 0 0 0 0.013 0.54 -416 PRKRIR protein-kinase, interferon-inducible double stranded RNA dependent inhibitor, repressor of (P58 repressor) 1121991 4 4 4 0 1 2 0 0 1 0 0.013 0.54 -417 PCSK5 proprotein convertase subtilisin/kexin type 5 1432275 5 5 5 0 0 1 2 0 2 0 0.013 0.54 -418 C19orf40 chromosome 19 open reading frame 40 336648 2 2 2 0 0 0 0 0 2 0 0.013 0.54 -419 BRCA2 breast cancer 2, early onset 5253027 10 10 10 0 1 0 2 1 6 0 0.013 0.54 -420 PCDHA9 protocadherin alpha 9 816270 4 4 4 1 0 4 0 0 0 0 0.013 0.54 -421 MGAT5B mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isozyme B 975468 4 4 4 3 1 1 0 0 2 0 0.013 0.54 -422 VSIG8 V-set and immunoglobulin domain containing 8 401037 2 2 2 0 0 1 0 0 1 0 0.013 0.55 -423 FLII flightless I homolog (Drosophila) 1572714 5 5 5 1 1 1 1 1 1 0 0.013 0.55 -424 HLA-DRB1 major histocompatibility complex, class II, DR beta 1 380757 2 2 2 1 0 0 1 1 0 0 0.013 0.55 -425 TRIM6-TRIM34 TRIM6-TRIM34 1310595 6 4 6 1 1 0 1 0 1 3 0.013 0.55 -426 LCN10 lipocalin 10 282906 2 2 2 0 0 0 1 0 1 0 0.014 0.55 -427 RBM19 RNA binding motif protein 19 1510353 5 5 5 0 0 4 1 0 0 0 0.014 0.55 -428 OR10Q1 olfactory receptor, family 10, subfamily Q, member 1 488748 3 3 3 0 0 3 0 0 0 0 0.014 0.55 -429 PCP2 Purkinje cell protein 2 69966 1 1 1 0 0 0 0 0 1 0 0.014 0.55 -430 FUT2 fucosyltransferase 2 (secretor status included) 525252 2 2 1 0 0 0 0 0 2 0 0.014 0.55 -431 HS3ST5 heparan sulfate (glucosamine) 3-O-sulfotransferase 5 531843 3 3 3 1 1 1 1 0 0 0 0.014 0.55 -432 TRIM11 tripartite motif-containing 11 462384 2 2 2 0 0 1 0 0 1 0 0.014 0.55 -433 CFHR4 complement factor H-related 4 517140 3 3 3 0 0 2 1 0 0 0 0.014 0.55 -434 PCOTH 186576 2 2 2 0 1 1 0 0 0 0 0.014 0.55 -435 RPS27L ribosomal protein S27-like 137397 1 1 1 0 0 0 0 0 1 0 0.014 0.55 -436 SLCO1B3 solute carrier organic anion transporter family, member 1B3 1097655 4 4 4 1 0 0 3 0 1 0 0.014 0.55 -437 CYP2S1 cytochrome P450, family 2, subfamily S, polypeptide 1 694590 3 3 3 2 0 2 0 0 1 0 0.014 0.55 -438 LSM5 LSM5 homolog, U6 small nuclear RNA associated (S. cerevisiae) 150072 2 2 2 0 1 1 0 0 0 0 0.014 0.56 -439 CA9 carbonic anhydrase IX 721461 3 3 3 0 0 2 1 0 0 0 0.014 0.56 -440 ZFP28 zinc finger protein 28 homolog (mouse) 1224405 4 4 2 1 0 0 3 0 1 0 0.014 0.56 -441 AKT3 v-akt murine thymoma viral oncogene homolog 3 (protein kinase B, gamma) 780780 2 2 2 1 0 0 0 0 2 0 0.014 0.56 -442 DYRK1A dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 1A 1226940 5 5 5 1 0 1 2 2 0 0 0.014 0.56 -443 NDUFA3 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 3, 9kDa 137397 1 1 1 0 0 0 0 1 0 0 0.014 0.56 -444 PHF21B PHD finger protein 21B 393939 2 2 2 0 1 0 0 1 0 0 0.014 0.56 -445 LCN8 lipocalin 8 96330 1 1 1 1 1 0 0 0 0 0 0.015 0.56 -446 EML4 echinoderm microtubule associated protein like 4 1540266 4 4 4 0 1 0 0 0 3 0 0.015 0.56 -447 LRP2 low density lipoprotein-related protein 2 7199907 17 16 17 2 5 4 6 2 0 0 0.015 0.57 -448 MRPS30 mitochondrial ribosomal protein S30 372645 2 2 1 0 0 0 2 0 0 0 0.015 0.57 -449 DGKI diacylglycerol kinase, iota 1484496 5 5 5 0 3 1 0 0 1 0 0.015 0.57 -450 MAP1A microtubule-associated protein 1A 4270461 11 9 11 1 2 4 3 0 2 0 0.015 0.57 -451 PTH2 parathyroid hormone 2 114582 1 1 1 0 0 0 1 0 0 0 0.015 0.57 -452 XPNPEP3 X-prolyl aminopeptidase (aminopeptidase P) 3, putative 758472 3 3 3 0 0 0 1 1 1 0 0.015 0.57 -453 IL10RB interleukin 10 receptor, beta 483171 3 3 3 0 2 0 1 0 0 0 0.015 0.57 -454 MRFAP1 Mof4 family associated protein 1 190125 2 2 2 0 1 0 0 0 1 0 0.015 0.57 -455 AGAP7 800553 2 2 1 0 0 0 0 0 2 0 0.015 0.57 -456 RETNLB resistin like beta 176436 2 2 2 0 0 1 1 0 0 0 0.015 0.57 -457 TMEM132B transmembrane protein 132B 1659411 4 4 4 2 0 2 0 0 2 0 0.015 0.57 -458 C1orf122 chromosome 1 open reading frame 122 50700 1 1 1 0 0 1 0 0 0 0 0.015 0.57 -459 PCDHB6 protocadherin beta 6 1211223 4 4 4 1 1 1 1 0 1 0 0.015 0.57 -460 FOSL2 FOS-like antigen 2 420810 2 2 2 1 0 0 1 1 0 0 0.015 0.57 -461 PRUNE prune homolog (Drosophila) 706758 3 3 3 1 1 0 1 0 1 0 0.015 0.58 -462 OTOP2 otopetrin 2 707772 3 3 3 0 0 0 0 2 1 0 0.016 0.58 -463 APOB apolipoprotein B (including Ag(x) antigen) 6935253 14 14 14 3 3 3 4 1 3 0 0.016 0.58 -464 GLYR1 852267 3 3 3 0 0 1 0 0 2 0 0.016 0.58 -465 TRMT2A 273780 2 2 2 0 0 1 0 0 1 0 0.016 0.58 -466 MAP2 microtubule-associated protein 2 2942628 7 7 7 1 0 3 0 3 1 0 0.016 0.58 -467 DNALI1 dynein, axonemal, light intermediate chain 1 439569 2 2 2 0 0 0 1 0 1 0 0.016 0.58 -468 MAGIX MAGI family member, X-linked 323466 2 2 2 2 0 1 0 0 1 0 0.016 0.58 -469 DTX1 deltex homolog 1 (Drosophila) 632736 3 3 3 2 0 2 0 1 0 0 0.016 0.58 -470 RPL5 ribosomal protein L5 465933 2 2 2 0 0 0 1 0 1 0 0.016 0.58 -471 C16orf71 chromosome 16 open reading frame 71 709800 3 3 3 0 1 0 0 1 1 0 0.016 0.58 -472 TRIP10 thyroid hormone receptor interactor 10 802074 3 3 3 0 0 1 0 0 2 0 0.016 0.58 -473 C2orf73 441090 3 3 3 0 0 2 1 0 0 0 0.016 0.58 -474 GDF6 growth differentiation factor 6 404079 2 2 2 0 1 0 0 0 1 0 0.016 0.58 -475 FRMPD4 FERM and PDZ domain containing 4 2023944 6 6 6 1 3 3 0 0 0 0 0.016 0.58 -476 HPSE heparanase 734643 3 3 3 0 1 1 0 0 1 0 0.016 0.58 -477 SLC9A3R1 solute carrier family 9 (sodium/hydrogen exchanger), member 3 regulator 1 311805 2 2 2 0 0 0 1 0 1 0 0.016 0.58 -478 ACTN4 actinin, alpha 4 1134666 4 4 4 1 0 1 1 0 2 0 0.016 0.58 -479 PDXDC1 pyridoxal-dependent decarboxylase domain containing 1 1002339 3 3 3 2 1 0 0 1 1 0 0.016 0.58 -480 TACSTD2 tumor-associated calcium signal transducer 2 138918 1 1 1 0 0 0 0 1 0 0 0.016 0.58 -481 XBP1 X-box binding protein 1 376194 2 2 2 0 0 0 0 0 2 0 0.016 0.58 -482 GDI1 GDP dissociation inhibitor 1 678873 3 3 3 1 2 0 1 0 0 0 0.016 0.58 -483 TTC9C tetratricopeptide repeat domain 9C 267696 2 2 2 0 0 2 0 0 0 0 0.016 0.58 -484 DSCAML1 Down syndrome cell adhesion molecule like 1 2740842 7 7 7 1 0 3 1 0 3 0 0.016 0.58 -485 ZDHHC17 zinc finger, DHHC-type containing 17 928824 4 4 4 1 1 2 0 1 0 0 0.017 0.58 -486 RTN4RL2 reticulon 4 receptor-like 2 416247 2 2 2 0 0 1 1 0 0 0 0.017 0.58 -487 HIST1H2AD histone cluster 1, H2ad 201279 2 2 2 1 0 1 1 0 0 0 0.017 0.58 -488 C9orf153 chromosome 9 open reading frame 153 161226 1 1 1 0 0 0 0 0 1 0 0.017 0.58 -489 C1orf49 chromosome 1 open reading frame 49 386334 2 2 2 0 0 1 0 1 0 0 0.017 0.58 -490 GRPEL2 GrpE-like 2, mitochondrial (E. coli) 310791 2 2 2 0 1 0 0 0 1 0 0.017 0.58 -491 PID1 phosphotyrosine interaction domain containing 1 320424 2 2 2 0 0 1 0 0 1 0 0.017 0.58 -492 N4BP3 565812 3 3 2 0 2 1 0 0 0 0 0.017 0.58 -493 RPL41 ribosomal protein L41 21801 1 1 1 0 0 0 0 1 0 0 0.017 0.58 -494 ANKK1 ankyrin repeat and kinase domain containing 1 953667 3 3 3 0 0 1 1 0 1 0 0.017 0.58 -495 TMEM213 159198 1 1 1 0 0 0 0 0 1 0 0.017 0.58 -496 PLCB4 phospholipase C, beta 4 1910883 6 6 6 0 2 1 2 0 1 0 0.017 0.58 -497 EARS2 glutamyl-tRNA synthetase 2, mitochondrial (putative) 651495 3 3 3 0 1 0 2 0 0 0 0.017 0.58 -498 ZFPM2 zinc finger protein, multitype 2 1746108 6 6 6 1 4 0 1 0 1 0 0.017 0.58 -499 IFIT5 interferon-induced protein with tetratricopeptide repeats 5 734136 3 3 3 0 0 1 1 0 1 0 0.017 0.58 -500 SRP14 signal recognition particle 14kDa (homologous Alu RNA binding protein) 165282 1 1 1 0 0 0 0 0 1 0 0.017 0.58 -501 DGKG diacylglycerol kinase, gamma 90kDa 1245699 4 4 3 2 0 2 0 1 1 0 0.017 0.58 -502 HIST1H2BB histone cluster 1, H2bb 195195 2 2 2 0 1 0 1 0 0 0 0.017 0.58 -503 SFRS16 splicing factor, arginine/serine-rich 16 593697 3 3 3 0 1 1 0 1 0 0 0.017 0.58 -504 PERP PERP, TP53 apoptosis effector 248430 2 2 2 0 0 1 1 0 0 0 0.017 0.58 -505 ID2 inhibitor of DNA binding 2, dominant negative helix-loop-helix protein 122187 1 1 1 0 0 0 1 0 0 0 0.017 0.58 -506 C19orf53 chromosome 19 open reading frame 53 152100 1 1 1 1 0 0 0 1 0 0 0.017 0.58 -507 LASP1 LIM and SH3 protein 1 240318 2 2 2 2 0 1 1 0 0 0 0.017 0.58 -508 KISS1 KiSS-1 metastasis-suppressor 77064 1 1 1 0 0 0 0 0 1 0 0.017 0.58 -509 CLRN2 clarin 2 350844 2 2 2 0 0 1 1 0 0 0 0.017 0.58 -510 PPP3CA protein phosphatase 3 (formerly 2B), catalytic subunit, alpha isoform 790920 3 3 3 0 0 0 3 0 0 0 0.017 0.58 -511 FDXR ferredoxin reductase 607386 3 3 2 0 0 2 1 0 0 0 0.017 0.59 -512 SERPINA5 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5 627159 3 3 3 0 0 2 1 0 0 0 0.017 0.59 -513 LPA lipoprotein, Lp(a) 2280486 5 5 5 0 0 2 1 0 2 0 0.018 0.60 -514 FBXO21 F-box protein 21 854295 3 3 3 1 0 2 0 0 1 0 0.018 0.60 -515 NSMCE4A non-SMC element 4 homolog A (S. cerevisiae) 455793 2 2 2 0 0 1 0 0 1 0 0.018 0.60 -516 DOT1L DOT1-like, histone H3 methyltransferase (S. cerevisiae) 719940 3 3 3 0 0 1 0 1 1 0 0.018 0.60 -517 RBM24 RNA binding motif protein 24 298116 2 2 2 0 0 1 1 0 0 0 0.018 0.60 -518 TAAR5 trace amine associated receptor 5 516126 3 3 3 0 0 1 2 0 0 0 0.018 0.60 -519 FGF3 fibroblast growth factor 3 (murine mammary tumor virus integration site (v-int-2) oncogene homolog) 116103 1 1 1 0 0 1 0 0 0 0 0.018 0.60 -520 ADAM29 ADAM metallopeptidase domain 29 1250769 5 5 5 0 3 1 0 0 1 0 0.018 0.60 -521 UCK2 uridine-cytidine kinase 2 360477 2 2 2 3 0 0 1 0 1 0 0.018 0.60 -522 OR4K14 olfactory receptor, family 4, subfamily K, member 14 475059 3 3 3 0 2 0 1 0 0 0 0.018 0.60 -523 PILRB paired immunoglobin-like type 2 receptor beta 354900 2 2 2 0 0 0 1 0 1 0 0.018 0.60 -524 SNX3 sorting nexin 3 211419 2 2 2 0 1 0 1 0 0 0 0.018 0.60 -525 SUMO1 SMT3 suppressor of mif two 3 homolog 1 (S. cerevisiae) 157170 1 1 1 0 0 0 0 0 1 0 0.018 0.60 -526 CTNND2 catenin (cadherin-associated protein), delta 2 (neural plakophilin-related arm-repeat protein) 1583868 6 5 6 0 0 1 2 0 1 2 0.018 0.60 -527 ASXL2 additional sex combs like 2 (Drosophila) 2208492 6 6 6 1 0 1 2 0 3 0 0.018 0.60 -528 HRC histidine rich calcium binding protein 1076868 3 3 3 1 0 1 0 0 2 0 0.019 0.60 -529 CIT citron (rho-interacting, serine/threonine kinase 21) 3088644 8 8 8 1 4 3 1 0 0 0 0.019 0.60 -530 GABRA6 gamma-aminobutyric acid (GABA) A receptor, alpha 6 708786 3 3 3 0 1 1 1 0 0 0 0.019 0.60 -531 PRKCDBP protein kinase C, delta binding protein 207870 2 2 2 0 1 0 1 0 0 0 0.019 0.60 -532 ZNF625 zinc finger protein 625 468975 3 3 3 0 1 1 0 1 0 0 0.019 0.60 -533 POU4F1 POU class 4 homeobox 1 168831 1 1 1 0 0 0 0 0 1 0 0.019 0.60 -534 SPATA4 spermatogenesis associated 4 460863 2 2 2 0 0 1 0 0 1 0 0.019 0.60 -535 SQSTM1 sequestosome 1 556179 3 3 3 0 1 0 1 0 1 0 0.019 0.60 -536 FXYD4 FXYD domain containing ion transport regulator 4 151086 1 1 1 0 0 0 0 0 1 0 0.019 0.60 -537 IGDCC3 1161030 4 4 4 0 0 2 0 2 0 0 0.019 0.60 -538 PGLS 6-phosphogluconolactonase 226122 2 2 2 1 1 0 0 0 1 0 0.019 0.60 -539 SHROOM2 shroom family member 2 1660932 5 5 5 1 0 3 1 0 1 0 0.019 0.60 -540 DSC2 desmocollin 2 643890 3 3 3 0 2 0 1 0 0 0 0.019 0.60 -541 SHANK1 SH3 and multiple ankyrin repeat domains 1 1291836 4 4 4 0 2 2 0 0 0 0 0.019 0.61 -542 ANAPC5 anaphase promoting complex subunit 5 1158495 4 4 4 1 1 1 1 0 1 0 0.019 0.61 -543 SLC25A13 solute carrier family 25, member 13 (citrin) 1056588 4 4 4 1 1 1 1 0 1 0 0.019 0.61 -544 SDK1 sidekick homolog 1, cell adhesion molecule (chicken) 2813850 6 6 6 1 0 4 1 0 1 0 0.019 0.61 -545 DLGAP2 discs, large (Drosophila) homolog-associated protein 2 704223 3 3 3 1 0 3 0 0 0 0 0.019 0.61 -546 C6orf27 chromosome 6 open reading frame 27 1164579 4 4 4 2 1 2 1 0 0 0 0.019 0.61 -547 RAD54B RAD54 homolog B (S. cerevisiae) 1414023 4 4 4 0 1 1 0 1 1 0 0.019 0.61 -548 TRIM5 tripartite motif-containing 5 841113 3 3 3 1 0 0 1 0 2 0 0.019 0.61 -549 CAPN1 calpain 1, (mu/I) large subunit 711828 3 3 3 0 0 2 1 0 0 0 0.019 0.61 -550 DHRS2 dehydrogenase/reductase (SDR family) member 2 474045 2 2 2 0 0 0 0 1 1 0 0.019 0.61 -551 SCUBE1 signal peptide, CUB domain, EGF-like 1 567840 3 3 3 0 0 2 0 1 0 0 0.019 0.61 -552 WDR7 WD repeat domain 7 2321046 7 7 7 0 0 2 2 1 2 0 0.020 0.61 -553 E2F4 E2F transcription factor 4, p107/p130-binding 471003 2 2 2 0 0 0 0 0 2 0 0.020 0.61 -554 IRX2 iroquois homeobox 2 196716 2 2 2 0 1 1 0 0 0 0 0.020 0.61 -555 PEG3 paternally expressed 3 2397603 7 7 7 0 0 4 1 1 1 0 0.020 0.61 -556 BTBD17 244374 2 2 2 1 0 2 0 0 0 0 0.020 0.61 -557 MLLT10 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10 1545336 4 4 4 0 0 2 0 0 2 0 0.020 0.61 -558 ACVR2A activin A receptor, type IIA 798525 3 3 3 1 0 1 2 0 0 0 0.020 0.61 -559 SF4 splicing factor 4 796497 4 3 4 1 0 1 1 0 0 2 0.020 0.61 -560 PLEKHG5 pleckstrin homology domain containing, family G (with RhoGef domain) member 5 860886 3 3 3 0 0 1 1 0 1 0 0.020 0.61 -561 FGF7 fibroblast growth factor 7 (keratinocyte growth factor) 302679 2 2 2 0 0 0 1 0 1 0 0.020 0.61 -562 STAT5B signal transducer and activator of transcription 5B 1131117 4 4 4 1 0 2 0 1 1 0 0.020 0.62 -563 KIAA1751 KIAA1751 1101204 4 4 4 0 0 3 0 0 1 0 0.020 0.62 -564 RPL35 ribosomal protein L35 191139 2 2 2 0 0 0 1 1 0 0 0.020 0.62 -565 C21orf33 chromosome 21 open reading frame 33 179985 1 1 1 1 0 0 0 1 0 0 0.020 0.62 -566 GAGE2B G antigen 2B 106470 1 1 1 0 0 0 1 0 0 0 0.020 0.62 -567 ANKRD53 ankyrin repeat domain 53 470496 2 2 2 2 0 1 0 1 0 0 0.020 0.62 -568 CNIH cornichon homolog (Drosophila) 128271 1 1 1 0 0 0 0 0 1 0 0.020 0.62 -569 DBNDD2 dysbindin (dystrobrevin binding protein 1) domain containing 2 175929 1 1 1 0 0 0 0 0 1 0 0.020 0.62 -570 GRID1 glutamate receptor, ionotropic, delta 1 1464216 5 5 5 0 1 3 1 0 0 0 0.020 0.62 -571 ESPL1 extra spindle pole bodies homolog 1 (S. cerevisiae) 3255954 6 6 6 1 1 1 2 0 2 0 0.021 0.62 -572 IFNA2 interferon, alpha 2 289497 2 2 2 0 0 1 0 1 0 0 0.021 0.62 -573 CDH11 cadherin 11, type 2, OB-cadherin (osteoblast) 1133652 4 4 4 1 0 3 1 0 0 0 0.021 0.62 -574 WDR47 WD repeat domain 47 648453 3 3 3 0 0 2 0 0 1 0 0.021 0.62 -575 MED12 mediator complex subunit 12 3336060 8 8 8 2 0 4 0 2 2 0 0.021 0.62 -576 SEC13 SEC13 homolog (S. cerevisiae) 481650 2 2 2 0 0 1 0 0 1 0 0.021 0.62 -577 CHGB chromogranin B (secretogranin 1) 1014507 4 4 4 0 1 1 0 1 1 0 0.021 0.62 -578 SRXN1 sulfiredoxin 1 homolog (S. cerevisiae) 98865 1 1 1 0 1 0 0 0 0 0 0.021 0.62 -579 MRPL45 mitochondrial ribosomal protein L45 483171 2 2 2 2 0 0 0 1 1 0 0.021 0.62 -580 KCNK4 potassium channel, subfamily K, member 4 406614 2 2 2 0 1 0 0 0 1 0 0.021 0.62 -581 C5orf25 chromosome 5 open reading frame 25 647439 3 3 3 0 1 1 1 0 0 0 0.021 0.62 -582 RAB9B RAB9B, member RAS oncogene family 309270 2 2 2 1 0 2 0 0 0 0 0.021 0.62 -583 WSCD1 WSC domain containing 1 659607 3 3 3 0 0 1 2 0 0 0 0.021 0.62 -584 CD1D CD1d molecule 490269 2 2 2 1 0 1 0 0 1 0 0.021 0.62 -585 LCA5L Leber congenital amaurosis 5-like 1034787 4 4 4 0 0 1 2 0 1 0 0.021 0.62 -586 DBX2 developing brain homeobox 2 305721 2 2 2 0 1 0 1 0 0 0 0.021 0.62 -587 BCAT1 branched chain aminotransferase 1, cytosolic 614484 3 3 3 1 1 1 1 0 0 0 0.021 0.62 -588 SLC17A6 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 6 911079 4 4 4 0 2 1 0 1 0 0 0.021 0.62 -589 UBE2D2 ubiquitin-conjugating enzyme E2D 2 (UBC4/5 homolog, yeast) 225108 2 2 2 0 0 1 1 0 0 0 0.021 0.62 -590 LDB2 LIM domain binding 2 585078 3 3 3 0 2 1 0 0 0 0 0.021 0.62 -591 OR6S1 olfactory receptor, family 6, subfamily S, member 1 507000 3 3 3 1 2 1 0 0 0 0 0.021 0.62 -592 TRPS1 trichorhinophalangeal syndrome I 1981863 6 5 6 0 1 1 2 0 0 2 0.021 0.62 -593 PHACTR1 phosphatase and actin regulator 1 833508 3 3 3 0 1 1 0 0 1 0 0.021 0.62 -594 LCE1D late cornified envelope 1D 176943 1 1 1 0 0 0 0 0 1 0 0.021 0.62 -595 PMEPA1 prostate transmembrane protein, androgen induced 1 272766 3 2 3 0 0 1 0 0 2 0 0.022 0.63 -596 VWA3A von Willebrand factor A domain containing 3A 1584882 4 4 4 2 0 0 1 1 2 0 0.022 0.63 -597 TRAPPC5 trafficking protein particle complex 5 113568 1 1 1 0 0 0 1 0 0 0 0.022 0.63 -598 AQP7 aquaporin 7 520689 2 2 2 0 0 0 0 1 1 0 0.022 0.63 -599 TARBP2 TAR (HIV-1) RNA binding protein 2 493311 2 2 2 0 0 0 0 0 2 0 0.022 0.63 -600 HLA-G major histocompatibility complex, class I, G 515619 2 2 2 1 0 1 0 0 1 0 0.022 0.63 -601 HOMER2 homer homolog 2 (Drosophila) 510042 3 3 3 1 0 3 0 0 0 0 0.022 0.63 -602 B2M beta-2-microglobulin 188604 2 2 2 0 1 1 0 0 0 0 0.022 0.63 -603 ZFHX4 zinc finger homeobox 4 5477628 13 12 13 3 6 4 2 0 1 0 0.022 0.63 -604 GRIK1 glutamate receptor, ionotropic, kainate 1 1448499 5 5 5 0 3 0 1 0 1 0 0.022 0.63 -605 GUCY2C guanylate cyclase 2C (heat stable enterotoxin receptor) 1688310 5 5 4 0 2 1 1 0 1 0 0.022 0.63 -606 CRABP1 cellular retinoic acid binding protein 1 87711 1 1 1 1 0 0 1 0 0 0 0.022 0.63 -607 PIAS4 protein inhibitor of activated STAT, 4 246402 2 2 2 1 1 1 0 0 0 0 0.022 0.63 -608 ABHD6 abhydrolase domain containing 6 530322 2 2 2 0 0 0 1 0 1 0 0.022 0.63 -609 FAM123B family with sequence similarity 123B 1729884 5 5 5 2 0 3 2 0 0 0 0.022 0.63 -610 TNIP2 TNFAIP3 interacting protein 2 494832 2 2 2 0 0 1 0 0 1 0 0.022 0.63 -611 CYP7B1 cytochrome P450, family 7, subfamily B, polypeptide 1 719433 3 3 3 0 0 2 0 0 1 0 0.022 0.63 -612 SSNA1 Sjogren syndrome nuclear autoantigen 1 73008 1 1 1 0 1 0 0 0 0 0 0.022 0.63 -613 KHDRBS1 KH domain containing, RNA binding, signal transduction associated 1 497874 2 2 2 0 0 0 0 0 2 0 0.022 0.63 -614 MMP14 matrix metallopeptidase 14 (membrane-inserted) 871026 3 3 2 0 0 3 0 0 0 0 0.022 0.63 -615 FOLR4 379236 2 2 2 0 0 1 0 0 1 0 0.022 0.63 -616 TBC1D22B TBC1 domain family, member 22B 737685 3 3 3 0 0 2 1 0 0 0 0.022 0.63 -617 DNAJC25-GNG10 65910 1 1 1 0 0 0 0 1 0 0 0.023 0.63 -618 ZNF229 zinc finger protein 229 1264458 4 4 4 0 1 1 0 1 1 0 0.023 0.63 -619 ECE1 endothelin converting enzyme 1 1056081 3 3 3 0 0 1 1 0 1 0 0.023 0.63 -620 ZNF3 zinc finger protein 3 752388 3 3 3 1 0 2 0 1 0 0 0.023 0.63 -621 C21orf57 chromosome 21 open reading frame 57 189618 1 1 1 0 0 0 0 0 1 0 0.023 0.63 -622 USPL1 ubiquitin specific peptidase like 1 1678677 5 5 5 1 2 1 1 0 1 0 0.023 0.63 -623 CAMK2D calcium/calmodulin-dependent protein kinase (CaM kinase) II delta 758979 3 3 3 0 1 0 1 0 1 0 0.023 0.63 -624 SMYD3 SET and MYND domain containing 3 591669 3 3 3 1 2 0 0 0 1 0 0.023 0.63 -625 ATP6V0E1 ATPase, H+ transporting, lysosomal 9kDa, V0 subunit e1 130806 1 1 1 0 0 0 0 1 0 0 0.023 0.64 -626 GNB3 guanine nucleotide binding protein (G protein), beta polypeptide 3 480636 2 2 2 0 0 1 0 0 1 0 0.023 0.64 -627 WNT11 wingless-type MMTV integration site family, member 11 362505 2 2 2 0 1 0 0 0 1 0 0.023 0.64 -628 FLNB filamin B, beta (actin binding protein 278) 4043832 7 7 7 0 1 0 1 1 4 0 0.023 0.64 -629 TPTE2 transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 836043 3 3 3 1 0 1 0 1 1 0 0.023 0.64 -630 MYCL1 v-myc myelocytomatosis viral oncogene homolog 1, lung carcinoma derived (avian) 305721 2 2 2 0 0 1 1 0 0 0 0.023 0.64 -631 ACTN2 actinin, alpha 2 1337973 4 4 4 3 1 1 1 0 1 0 0.023 0.64 -632 C9orf114 chromosome 9 open reading frame 114 472017 2 2 2 2 1 0 1 0 0 0 0.023 0.64 -633 ATCAY ataxia, cerebellar, Cayman type (caytaxin) 443625 2 2 2 1 0 0 0 2 0 0 0.023 0.64 -634 FBXO18 F-box protein, helicase, 18 1710111 3 3 3 1 0 1 0 0 2 0 0.023 0.64 -635 DHX32 DEAH (Asp-Glu-Ala-His) box polypeptide 32 1153932 3 3 3 1 0 1 1 0 1 0 0.023 0.64 -636 GRIK2 glutamate receptor, ionotropic, kainate 2 1441401 5 5 5 0 0 1 4 0 0 0 0.024 0.64 -637 OR10Z1 olfactory receptor, family 10, subfamily Z, member 1 479622 2 2 2 0 0 1 0 1 0 0 0.024 0.64 -638 KLHDC9 kelch domain containing 9 359970 2 2 1 0 0 0 2 0 0 0 0.024 0.64 -639 SNX25 sorting nexin 25 1312623 4 4 4 0 1 2 0 0 1 0 0.024 0.64 -640 DNAJC27 384813 2 2 2 0 0 0 0 0 2 0 0.024 0.64 -641 TGFA transforming growth factor, alpha 165282 1 1 1 0 0 0 0 1 0 0 0.024 0.64 -642 HIST1H2AB histone cluster 1, H2ab 201279 2 2 2 0 1 0 1 0 0 0 0.024 0.64 -643 ANKRD6 ankyrin repeat domain 6 988650 4 4 4 0 2 0 2 0 0 0 0.024 0.64 -644 ZNF540 zinc finger protein 540 1002339 4 4 4 0 1 2 1 0 0 0 0.024 0.64 -645 MSL2 883194 3 3 3 0 0 1 0 1 1 0 0.024 0.64 -646 C5orf49 154635 1 1 1 1 0 0 1 0 0 0 0.024 0.64 -647 C10orf71 chromosome 10 open reading frame 71 1148862 4 4 4 0 3 0 1 0 0 0 0.024 0.64 -648 T T, brachyury homolog (mouse) 530829 3 3 3 0 1 0 1 0 1 0 0.024 0.64 -649 C13orf33 chromosome 13 open reading frame 33 356928 2 2 2 0 1 0 0 1 0 0 0.024 0.64 -650 CYP3A4 cytochrome P450, family 3, subfamily A, polypeptide 4 792948 3 3 3 1 0 1 1 0 1 0 0.024 0.64 -651 WTAP Wilms tumor 1 associated protein 620061 3 3 3 1 1 0 1 0 1 0 0.024 0.64 -652 TMEM27 transmembrane protein 27 351351 2 2 2 0 0 2 0 0 0 0 0.024 0.64 -653 ECM1 extracellular matrix protein 1 843141 3 3 3 0 0 2 1 0 0 0 0.024 0.64 -654 LRP12 low density lipoprotein-related protein 12 1280175 4 4 4 1 1 2 0 0 1 0 0.024 0.64 -655 PPP1R14A protein phosphatase 1, regulatory (inhibitor) subunit 14A 81627 1 1 1 0 0 0 0 0 1 0 0.024 0.64 -656 IL17B interleukin 17B 280371 2 2 1 0 0 2 0 0 0 0 0.024 0.64 -657 TERF2IP telomeric repeat binding factor 2, interacting protein 276315 2 2 2 0 0 1 1 0 0 0 0.024 0.64 -658 MRPL15 mitochondrial ribosomal protein L15 405093 2 2 2 0 1 0 1 0 0 0 0.024 0.64 -659 TYR tyrosinase (oculocutaneous albinism IA) 816270 3 3 3 2 0 2 1 0 0 0 0.024 0.64 -660 PGK1 phosphoglycerate kinase 1 296595 2 2 2 0 1 1 0 0 0 0 0.024 0.64 -661 LINGO1 leucine rich repeat and Ig domain containing 1 913614 3 3 3 0 1 2 0 0 0 0 0.024 0.64 -662 PVRL2 poliovirus receptor-related 2 (herpesvirus entry mediator B) 799032 3 3 3 0 0 1 1 0 1 0 0.025 0.64 -663 C20orf12 chromosome 20 open reading frame 12 1083966 4 4 4 0 0 3 0 0 1 0 0.025 0.64 -664 NUP160 nucleoporin 160kDa 2255643 6 6 6 0 0 3 2 0 1 0 0.025 0.64 -665 PRKG2 protein kinase, cGMP-dependent, type II 1194492 4 4 4 0 0 0 2 1 1 0 0.025 0.64 -666 TSSK3 testis-specific serine kinase 3 413205 2 2 2 0 0 0 1 0 1 0 0.025 0.64 -667 PCDHGB5 protocadherin gamma subfamily B, 5 1321242 4 4 4 0 1 2 0 1 0 0 0.025 0.64 -668 A2BP1 696618 3 3 3 1 1 2 0 0 0 0 0.025 0.64 -669 C15orf52 chromosome 15 open reading frame 52 706758 3 3 3 0 1 0 1 0 1 0 0.025 0.64 -670 SLC17A7 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 7 798525 3 3 3 0 0 1 0 0 2 0 0.025 0.64 -671 GSPT1 G1 to S phase transition 1 755937 3 3 3 1 2 0 0 0 1 0 0.025 0.64 -672 SLC27A5 solute carrier family 27 (fatty acid transporter), member 5 512070 2 2 2 0 0 1 0 0 1 0 0.025 0.64 -673 WWP2 WW domain containing E3 ubiquitin protein ligase 2 1308567 4 4 4 4 2 1 0 0 1 0 0.025 0.64 -674 SORCS1 sortilin-related VPS10 domain containing receptor 1 1817595 5 5 5 1 0 3 0 1 1 0 0.025 0.64 -675 C14orf37 chromosome 14 open reading frame 37 1192971 4 4 4 0 1 1 1 0 1 0 0.025 0.64 -676 LIN9 lin-9 homolog (C. elegans) 880659 3 3 3 0 0 0 1 0 2 0 0.025 0.64 -677 SLC38A10 solute carrier family 38, member 10 733629 2 2 2 0 0 0 0 0 2 0 0.025 0.64 -678 CPSF4 cleavage and polyadenylation specific factor 4, 30kDa 372645 2 2 2 0 1 0 1 0 0 0 0.025 0.64 -679 KRTAP4-2 keratin associated protein 4-2 210405 2 2 2 0 0 1 1 0 0 0 0.025 0.64 -680 BIRC8 baculoviral IAP repeat-containing 8 362505 2 2 2 0 0 1 1 0 0 0 0.025 0.64 -681 ATP1A4 ATPase, Na+/K+ transporting, alpha 4 polypeptide 1611246 5 5 5 0 0 1 4 0 0 0 0.025 0.64 -682 RAMP3 receptor (G protein-coupled) activity modifying protein 3 201279 1 1 1 0 0 0 0 0 1 0 0.025 0.65 -683 VMAC 68952 1 1 1 0 0 1 0 0 0 0 0.026 0.65 -684 HNRNPH3 546039 2 2 2 0 0 0 0 1 1 0 0.026 0.65 -685 MBD3 methyl-CpG binding domain protein 3 194181 1 1 1 0 0 0 1 0 0 0 0.026 0.65 -686 PDE9A phosphodiesterase 9A 848718 3 3 3 0 0 1 1 0 1 0 0.026 0.65 -687 GLB1L3 galactosidase, beta 1-like 3 819312 3 3 3 1 0 2 1 0 0 0 0.026 0.65 -688 KANK2 KN motif and ankyrin repeat domains 2 1164072 4 4 4 1 0 1 2 0 1 0 0.026 0.65 -689 ZNF658 zinc finger protein 658 1540773 5 5 5 2 2 0 3 0 0 0 0.026 0.65 -690 AKR1B1 aldo-keto reductase family 1, member B1 (aldose reductase) 466947 2 2 2 0 0 1 0 0 1 0 0.026 0.65 -691 ZNF69 zinc finger protein 69 234741 2 2 2 0 0 1 1 0 0 0 0.026 0.65 -692 NR0B2 nuclear receptor subfamily 0, group B, member 2 306228 2 2 2 0 0 1 1 0 0 0 0.026 0.65 -693 NR5A2 nuclear receptor subfamily 5, group A, member 2 835536 4 3 4 1 2 0 0 0 0 2 0.026 0.65 -694 ZGPAT zinc finger, CCCH-type with G patch domain 344253 2 2 1 0 0 0 2 0 0 0 0.026 0.65 -695 NDUFA1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 1, 7.5kDa 114075 1 1 1 1 0 1 0 0 0 0 0.026 0.65 -696 MAGI2 membrane associated guanylate kinase, WW and PDZ domain containing 2 2026479 6 6 6 1 3 1 1 0 1 0 0.026 0.65 -697 RAB42 RAB42, member RAS oncogene family 110019 1 1 1 0 0 1 0 0 0 0 0.026 0.65 -698 ASL argininosuccinate lyase 586092 3 3 3 0 1 1 1 0 0 0 0.026 0.65 -699 IDI1 isopentenyl-diphosphate delta isomerase 1 370617 2 2 2 0 1 1 0 0 0 0 0.026 0.65 -700 CSMD1 CUB and Sushi multiple domains 1 4348539 11 10 11 10 2 4 3 0 2 0 0.026 0.65 -701 MYO9B myosin IXB 2354508 6 6 6 2 1 1 3 0 1 0 0.026 0.65 -702 MACROD1 MACRO domain containing 1 143481 1 1 1 0 0 1 0 0 0 0 0.027 0.65 -703 OR8D4 olfactory receptor, family 8, subfamily D, member 4 481143 2 2 2 0 0 0 1 0 1 0 0.027 0.65 -704 ARL11 ADP-ribosylation factor-like 11 274794 2 2 2 0 0 2 0 0 0 0 0.027 0.65 -705 ELOVL3 elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 3 420303 2 2 2 0 0 0 0 1 1 0 0.027 0.65 -706 GRIN2C glutamate receptor, ionotropic, N-methyl D-aspartate 2C 1021098 4 4 3 1 2 0 2 0 0 0 0.027 0.65 -707 BCAS1 breast carcinoma amplified sequence 1 912093 3 3 3 0 0 1 1 0 1 0 0.027 0.65 -708 HDAC11 histone deacetylase 11 455286 2 2 2 0 1 1 0 0 0 0 0.027 0.65 -709 OR8H1 olfactory receptor, family 8, subfamily H, member 1 476580 2 2 2 1 0 1 1 0 0 0 0.027 0.65 -710 MBLAC1 102414 1 1 1 0 0 0 0 0 1 0 0.027 0.65 -711 NEFM neurofilament, medium polypeptide 150kDa 852774 4 3 4 0 1 2 1 0 0 0 0.027 0.65 -712 BTNL8 butyrophilin-like 8 324480 2 2 2 0 0 1 1 0 0 0 0.027 0.65 -713 PCDH9 protocadherin 9 1891110 4 4 4 0 1 0 2 0 1 0 0.027 0.65 -714 PLIN1 457821 2 2 2 1 1 1 0 0 0 0 0.027 0.65 -715 TFPI2 tissue factor pathway inhibitor 2 361491 2 2 2 0 0 1 0 0 1 0 0.027 0.65 -716 INSL3 insulin-like 3 (Leydig cell) 106470 1 1 1 1 0 1 0 0 0 0 0.027 0.65 -717 VNN2 vanin 2 806637 3 3 3 0 0 1 2 0 0 0 0.027 0.66 -718 OR4A5 olfactory receptor, family 4, subfamily A, member 5 482664 2 2 2 0 0 0 1 1 0 0 0.027 0.66 -719 HAO1 hydroxyacid oxidase (glycolate oxidase) 1 580515 3 3 3 0 0 2 1 0 0 0 0.027 0.66 -720 GNRH2 gonadotropin-releasing hormone 2 102921 1 1 1 0 0 0 0 0 1 0 0.027 0.66 -721 KLHDC8B kelch domain containing 8B 504465 2 2 2 0 0 0 1 0 1 0 0.028 0.66 -722 SIGLEC9 sialic acid binding Ig-like lectin 9 719940 3 3 3 1 0 2 1 0 0 0 0.028 0.66 -723 ELK1 ELK1, member of ETS oncogene family 321945 2 2 2 0 0 1 1 0 0 0 0.028 0.66 -724 KITLG KIT ligand 425373 2 2 2 0 1 0 1 0 0 0 0.028 0.66 -725 MCRS1 microspherule protein 1 732615 3 3 3 0 0 1 1 1 0 0 0.028 0.66 -726 TIPIN TIMELESS interacting protein 473538 2 2 2 0 0 0 2 0 0 0 0.028 0.66 -727 TRIM67 tripartite motif-containing 67 681408 3 3 3 2 1 0 1 1 0 0 0.028 0.66 -728 ECHS1 enoyl Coenzyme A hydratase, short chain, 1, mitochondrial 212433 1 1 1 1 0 0 0 1 0 0 0.028 0.66 -729 MYH14 myosin, heavy chain 14 1854099 5 5 5 2 1 1 1 0 2 0 0.028 0.66 -730 DIRAS2 DIRAS family, GTP-binding RAS-like 2 306228 2 2 2 1 1 1 0 0 0 0 0.028 0.66 -731 ZNF589 zinc finger protein 589 539448 2 2 1 0 0 0 0 2 0 0 0.028 0.66 -732 PTGER3 prostaglandin E receptor 3 (subtype EP3) 445653 2 2 2 1 0 0 2 0 0 0 0.028 0.66 -733 KLK12 kallikrein-related peptidase 12 288990 2 2 2 1 0 1 0 0 1 0 0.028 0.66 -734 LHCGR luteinizing hormone/choriogonadotropin receptor 1003353 4 4 4 0 1 1 1 1 0 0 0.028 0.66 -735 CEP68 centrosomal protein 68kDa 1163058 4 4 4 1 1 2 0 1 0 0 0.028 0.66 -736 ATG4D ATG4 autophagy related 4 homolog D (S. cerevisiae) 621582 3 3 3 0 0 2 0 1 0 0 0.028 0.66 -737 B4GALT1 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 1 408135 2 2 2 0 0 1 0 1 0 0 0.028 0.66 -738 RBM8A RNA binding motif protein 8A 271245 2 2 2 0 1 1 0 0 0 0 0.028 0.66 -739 FAM55A family with sequence similarity 55, member A 625638 3 3 3 0 0 1 1 1 0 0 0.028 0.66 -740 ELOVL5 ELOVL family member 5, elongation of long chain fatty acids (FEN1/Elo2, SUR4/Elo3-like, yeast) 470496 2 2 2 0 0 0 1 0 1 0 0.028 0.66 -741 PPHLN1 periphilin 1 744783 3 3 3 0 0 1 1 0 1 0 0.028 0.66 -742 CLYBL citrate lyase beta like 501423 2 2 2 0 0 1 0 1 0 0 0.028 0.66 -743 KLK5 kallikrein-related peptidase 5 314340 2 2 2 0 0 2 0 0 0 0 0.029 0.66 -744 RETSAT retinol saturase (all-trans-retinol 13,14-reductase) 950118 3 3 3 0 0 1 0 0 2 0 0.029 0.66 -745 CRB2 crumbs homolog 2 (Drosophila) 855309 3 3 3 0 0 2 1 0 0 0 0.029 0.66 -746 KIF17 kinesin family member 17 1165593 4 4 4 0 0 3 1 0 0 0 0.029 0.66 -747 POR P450 (cytochrome) oxidoreductase 321945 2 2 2 0 0 0 1 0 1 0 0.029 0.66 -748 TARS threonyl-tRNA synthetase 1139736 4 4 4 1 1 1 2 0 0 0 0.029 0.66 -749 BRMS1 breast cancer metastasis suppressor 1 465426 2 2 2 0 0 0 1 0 1 0 0.029 0.66 -750 HSPA8 heat shock 70kDa protein 8 1000311 3 3 3 0 0 0 0 1 2 0 0.029 0.66 -751 CDC25B cell division cycle 25 homolog B (S. pombe) 812214 3 3 3 1 0 1 0 2 0 0 0.029 0.66 -752 YIPF7 Yip1 domain family, member 7 360477 2 2 2 0 1 1 0 0 0 0 0.029 0.66 -753 BMPER BMP binding endothelial regulator 1004367 4 4 4 1 2 0 2 0 0 0 0.029 0.66 -754 IQCF1 IQ motif containing F1 321438 2 2 2 0 0 2 0 0 0 0 0.029 0.66 -755 PODN podocan 667212 3 3 3 1 1 1 1 0 0 0 0.029 0.66 -756 CRX cone-rod homeobox 462384 2 2 2 0 1 1 0 0 0 0 0.029 0.66 -757 RGS17 regulator of G-protein signaling 17 329043 2 2 2 0 0 0 1 0 1 0 0.029 0.66 -758 ETS2 v-ets erythroblastosis virus E26 oncogene homolog 2 (avian) 727038 3 3 3 1 1 0 2 0 0 0 0.029 0.66 -759 TIMM8A translocase of inner mitochondrial membrane 8 homolog A (yeast) 153114 1 1 1 0 0 0 0 0 1 0 0.029 0.66 -760 OR5AK2 olfactory receptor, family 5, subfamily AK, member 2 473538 2 2 2 0 0 1 0 0 1 0 0.029 0.67 -761 PEX2 467454 2 2 2 1 0 2 0 0 0 0 0.029 0.67 -762 TMEM170A 157170 1 1 1 0 0 0 1 0 0 0 0.029 0.67 -763 CASP5 caspase 5, apoptosis-related cysteine peptidase 694083 3 3 2 0 1 0 0 2 0 0 0.029 0.67 -764 C10orf47 chromosome 10 open reading frame 47 209898 1 1 1 0 0 0 0 0 1 0 0.029 0.67 -765 GLRX2 glutaredoxin 2 199758 1 1 1 1 0 0 0 0 1 0 0.030 0.67 -766 RAB33A RAB33A, member RAS oncogene family 364533 2 2 2 0 0 1 1 0 0 0 0.030 0.67 -767 COL22A1 collagen, type XXII, alpha 1 2243475 6 6 6 0 1 3 0 0 2 0 0.030 0.67 -768 CD164 CD164 molecule, sialomucin 222573 1 1 1 0 0 0 0 0 1 0 0.030 0.67 -769 CNFN cornifelin 100893 1 1 1 0 0 1 0 0 0 0 0.030 0.67 -770 C17orf67 chromosome 17 open reading frame 67 180492 1 1 1 0 0 0 1 0 0 0 0.030 0.67 -771 PLCG1 phospholipase C, gamma 1 1917474 4 4 4 0 1 1 0 0 2 0 0.030 0.67 -772 CSNK1A1L casein kinase 1, alpha 1-like 516126 2 2 2 0 0 1 1 0 0 0 0.030 0.67 -773 PJA1 praja 1 981552 3 3 3 0 0 2 0 0 1 0 0.030 0.67 -774 SCN2A sodium channel, voltage-gated, type II, alpha subunit 3152526 7 7 7 2 2 3 0 1 1 0 0.030 0.67 -775 RFC4 replication factor C (activator 1) 4, 37kDa 573924 3 2 3 0 0 0 1 0 0 2 0.030 0.67 -776 ALDOA aldolase A, fructose-bisphosphate 570375 3 3 3 0 1 1 0 1 0 0 0.030 0.67 -777 ZCWPW1 zinc finger, CW type with PWWP domain 1 1019577 4 4 4 0 0 1 1 0 2 0 0.031 0.68 -778 GATM glycine amidinotransferase (L-arginine:glycine amidinotransferase) 626145 3 3 3 0 1 2 0 0 0 0 0.031 0.68 -779 CD99 CD99 molecule 267189 2 2 2 0 1 0 0 1 0 0 0.031 0.68 -780 CR1 complement component (3b/4b) receptor 1 (Knops blood group) 2561364 6 6 6 1 1 1 2 2 0 0 0.031 0.68 -781 PRB3 proline-rich protein BstNI subfamily 3 479622 2 2 2 0 0 0 1 0 1 0 0.031 0.68 -782 DCST1 DC-STAMP domain containing 1 926796 3 3 3 0 0 2 0 0 1 0 0.031 0.68 -783 TMEM51 transmembrane protein 51 360477 2 2 2 0 2 0 0 0 0 0 0.031 0.68 -784 HIST1H1T histone cluster 1, H1t 318396 2 2 2 0 0 1 1 0 0 0 0.031 0.68 -785 CACNA2D3 calcium channel, voltage-dependent, alpha 2/delta subunit 3 1622400 5 5 5 2 2 2 1 0 0 0 0.031 0.68 -786 DCAF4L2 604344 3 3 3 0 3 0 0 0 0 0 0.031 0.68 -787 GDAP1 ganglioside-induced differentiation-associated protein 1 551109 2 2 2 0 0 1 0 1 0 0 0.031 0.68 -788 LGALS14 lectin, galactoside-binding, soluble, 14 274794 2 2 2 0 2 0 0 0 0 0 0.031 0.68 -789 AEBP1 AE binding protein 1 1096641 4 4 4 0 1 1 1 1 0 0 0.031 0.68 -790 KLK2 kallikrein-related peptidase 2 427401 2 2 2 0 0 1 1 0 0 0 0.031 0.68 -791 PDLIM7 PDZ and LIM domain 7 (enigma) 417768 2 2 2 0 0 1 1 0 0 0 0.031 0.68 -792 ELL2 elongation factor, RNA polymerase II, 2 922740 3 3 3 0 0 0 2 0 1 0 0.031 0.68 -793 TOR3A torsin family 3, member A 479622 2 2 2 0 0 1 1 0 0 0 0.031 0.68 -794 TBC1D21 TBC1 domain family, member 21 534885 2 2 2 0 0 1 0 0 1 0 0.031 0.68 -795 PGLYRP2 peptidoglycan recognition protein 2 802581 3 3 3 0 1 1 0 0 1 0 0.031 0.68 -796 MCTP2 multiple C2 domains, transmembrane 2 1381575 4 4 4 1 0 1 1 1 1 0 0.031 0.68 -797 IFITM1 interferon induced transmembrane protein 1 (9-27) 195702 1 1 1 0 0 0 0 0 1 0 0.031 0.68 -798 PNMA2 paraneoplastic antigen MA2 557193 2 2 2 0 1 0 1 0 0 0 0.031 0.68 -799 IL6 interleukin 6 (interferon, beta 2) 334113 2 2 2 1 0 0 0 0 2 0 0.031 0.68 -800 ALG10B asparagine-linked glycosylation 10 homolog B (yeast, alpha-1,2-glucosyltransferase) 727038 3 3 3 1 1 1 1 0 0 0 0.031 0.68 -801 CNBD1 cyclic nucleotide binding domain containing 1 680901 3 3 3 0 2 0 0 1 0 0 0.031 0.68 -802 HPS1 Hermansky-Pudlak syndrome 1 895869 3 3 3 0 0 2 0 1 0 0 0.031 0.68 -803 MGAM maltase-glucoamylase (alpha-glucosidase) 2915250 8 7 8 5 0 3 3 1 1 0 0.031 0.68 -804 ZHX1 zinc fingers and homeoboxes 1 1331382 4 4 4 0 0 2 0 0 2 0 0.031 0.68 -805 GP1BA glycoprotein Ib (platelet), alpha polypeptide 974961 3 3 3 1 0 0 2 0 1 0 0.032 0.68 -806 NUDT18 nudix (nucleoside diphosphate linked moiety X)-type motif 18 198744 1 1 1 0 0 0 0 0 1 0 0.032 0.68 -807 MINA MYC induced nuclear antigen 727038 3 3 3 0 0 1 1 0 1 0 0.032 0.68 -808 AKR1C2 aldo-keto reductase family 1, member C2 (dihydrodiol dehydrogenase 2; bile acid binding protein; 3-alpha hydroxysteroid dehydrogenase, type III) 447681 2 2 2 0 0 0 1 0 1 0 0.032 0.68 -809 C6 complement component 6 1456611 4 4 4 0 1 1 0 1 1 0 0.032 0.68 -810 LYPD5 LY6/PLAUR domain containing 5 275301 2 2 2 0 0 1 1 0 0 0 0.032 0.68 -811 C1orf124 chromosome 1 open reading frame 124 773175 3 3 3 1 0 1 0 1 1 0 0.032 0.68 -812 HNF1A HNF1 homeobox A 868998 3 3 3 2 1 1 1 0 0 0 0.032 0.68 -813 SIGMAR1 166296 1 1 1 0 0 1 0 0 0 0 0.032 0.68 -814 CFTR cystic fibrosis transmembrane conductance regulator (ATP-binding cassette sub-family C, member 7) 2307357 6 6 6 0 1 1 2 0 2 0 0.032 0.68 -815 MT1A metallothionein 1A 100386 1 1 1 0 0 0 1 0 0 0 0.032 0.68 -816 GNAT2 guanine nucleotide binding protein (G protein), alpha transducing activity polypeptide 2 556179 2 2 2 0 0 1 0 0 1 0 0.032 0.68 -817 TREM1 triggering receptor expressed on myeloid cells 1 365547 2 2 2 1 0 2 0 0 0 0 0.032 0.68 -818 FUNDC1 FUN14 domain containing 1 231192 1 1 1 0 0 0 0 0 1 0 0.032 0.68 -819 ATP1A3 ATPase, Na+/K+ transporting, alpha 3 polypeptide 1567137 5 5 5 1 1 4 0 0 0 0 0.032 0.68 -820 SHANK2 SH3 and multiple ankyrin repeat domains 2 1731912 5 5 5 1 3 1 1 0 0 0 0.032 0.68 -821 REG3A regenerating islet-derived 3 alpha 277836 2 2 2 0 1 0 1 0 0 0 0.032 0.68 -822 SLC34A2 solute carrier family 34 (sodium phosphate), member 2 1075347 5 4 5 0 2 1 1 0 1 0 0.032 0.68 -823 ECE2 endothelin converting enzyme 2 1464723 5 5 5 0 1 4 0 0 0 0 0.032 0.68 -824 CRYGC crystallin, gamma C 272259 3 2 3 0 1 1 0 0 1 0 0.032 0.68 -825 ITGB2 integrin, beta 2 (complement component 3 receptor 3 and 4 subunit) 787371 3 3 3 1 0 1 1 0 1 0 0.032 0.68 -826 SDK2 sidekick homolog 2 (chicken) 1843452 5 5 5 2 1 3 0 0 1 0 0.032 0.68 -827 LPGAT1 lysophosphatidylglycerol acyltransferase 1 578487 2 2 2 0 0 1 0 0 1 0 0.032 0.68 -828 ANXA13 annexin A13 568854 2 2 2 0 0 0 0 1 1 0 0.032 0.68 -829 AP2A1 adaptor-related protein complex 2, alpha 1 subunit 909558 3 3 3 1 0 0 1 1 1 0 0.032 0.68 -830 P2RY13 purinergic receptor P2Y, G-protein coupled, 13 517647 2 2 2 0 0 0 2 0 0 0 0.033 0.68 -831 MGC26647 388362 2 2 2 1 0 0 1 0 1 0 0.033 0.68 -832 POTEA 783315 3 3 3 0 0 2 1 0 0 0 0.033 0.68 -833 SLC31A1 solute carrier family 31 (copper transporters), member 1 298623 2 2 2 0 0 1 0 1 0 0 0.033 0.68 -834 LIMK1 LIM domain kinase 1 834522 3 3 3 0 0 2 1 0 0 0 0.033 0.68 -835 SOX9 SRY (sex determining region Y)-box 9 (campomelic dysplasia, autosomal sex-reversal) 498381 2 2 2 1 0 0 0 0 2 0 0.033 0.68 -836 JAGN1 jagunal homolog 1 (Drosophila) 236769 1 1 1 0 0 0 0 0 1 0 0.033 0.68 -837 SYCP2 synaptonemal complex protein 2 2415855 6 6 6 1 0 0 2 2 2 0 0.033 0.68 -838 RFX4 regulatory factor X, 4 (influences HLA class II expression) 1222377 4 4 4 0 1 2 0 1 0 0 0.033 0.68 -839 PYCARD PYD and CARD domain containing 235248 1 1 1 0 0 0 0 0 1 0 0.033 0.68 -840 RAD21 RAD21 homolog (S. pombe) 987636 3 3 3 0 0 1 1 0 1 0 0.033 0.69 -841 SMARCA4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 1984905 6 5 6 1 2 1 0 0 1 2 0.033 0.69 -842 RAB25 RAB25, member RAS oncogene family 335634 2 2 2 0 1 1 0 0 0 0 0.034 0.69 -843 BAD BCL2-antagonist of cell death 163254 1 1 1 0 1 0 0 0 0 0 0.034 0.69 -844 TPRX1 tetra-peptide repeat homeobox 1 207363 1 1 1 0 0 0 0 0 1 0 0.034 0.69 -845 SOCS6 suppressor of cytokine signaling 6 817284 3 3 3 0 1 2 0 0 0 0 0.034 0.69 -846 KCNH2 potassium voltage-gated channel, subfamily H (eag-related), member 2 1115400 4 4 4 1 4 0 0 0 0 0 0.034 0.69 -847 ISL1 ISL LIM homeobox 1 538434 2 2 2 0 0 1 0 1 0 0 0.034 0.69 -848 HIST1H2BK histone cluster 1, H2bk 195195 1 1 1 0 0 1 0 0 0 0 0.034 0.69 -849 CNTN4 contactin 4 1606683 5 5 5 1 1 2 1 1 0 0 0.034 0.69 -850 TBL1X transducin (beta)-like 1X-linked 813228 3 3 3 0 0 2 0 0 1 0 0.034 0.69 -851 OCIAD1 OCIA domain containing 1 401544 2 2 2 0 0 0 1 0 1 0 0.034 0.69 -852 FAM117B 591162 2 2 2 0 1 0 0 0 1 0 0.034 0.69 -853 S1PR4 363012 2 2 2 0 0 2 0 0 0 0 0.034 0.69 -854 BEST2 bestrophin 2 628680 3 3 3 0 1 0 1 0 1 0 0.034 0.69 -855 TTC29 tetratricopeptide repeat domain 29 658086 3 3 3 2 2 0 1 0 0 0 0.034 0.69 -856 SMAD2 SMAD family member 2 732108 3 3 3 0 0 0 2 0 1 0 0.034 0.69 -857 MRPS7 mitochondrial ribosomal protein S7 335634 2 2 2 1 0 1 1 0 0 0 0.034 0.69 -858 MYH9 myosin, heavy chain 9, non-muscle 2600403 5 5 5 0 0 0 1 1 3 0 0.035 0.70 -859 BEND4 357942 2 2 2 0 0 1 0 1 0 0 0.035 0.70 -860 FMR1NB fragile X mental retardation 1 neighbor 399516 2 2 2 1 0 1 0 0 1 0 0.035 0.70 -861 CXorf26 chromosome X open reading frame 26 350844 2 2 2 0 1 1 0 0 0 0 0.035 0.70 -862 FAM110A family with sequence similarity 110, member A 118638 1 1 1 0 0 1 0 0 0 0 0.035 0.70 -863 HTR2A 5-hydroxytryptamine (serotonin) receptor 2A 723996 3 3 3 1 0 2 1 0 0 0 0.035 0.70 -864 THNSL2 threonine synthase-like 2 (S. cerevisiae) 637299 3 2 3 0 0 0 0 1 0 2 0.035 0.70 -865 PSMD1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 1 1489566 4 4 4 0 1 1 0 0 2 0 0.035 0.70 -866 PRDM1 PR domain containing 1, with ZNF domain 1253811 4 4 4 1 0 3 1 0 0 0 0.035 0.70 -867 SLC44A5 solute carrier family 44, member 5 1141764 3 3 3 1 0 0 1 1 1 0 0.035 0.70 -868 ADA adenosine deaminase 482664 2 2 2 1 1 0 1 0 0 0 0.035 0.70 -869 RASL11B RAS-like, family 11, member B 312819 2 2 2 0 0 0 2 0 0 0 0.035 0.70 -870 TMC5 transmembrane channel-like 5 1731405 6 5 6 0 1 2 2 0 1 0 0.035 0.70 -871 SAMD1 sterile alpha motif domain containing 1 247416 1 1 1 1 0 0 0 0 1 0 0.035 0.70 -872 RPP30 ribonuclease P/MRP 30kDa subunit 469482 2 2 2 0 0 1 1 0 0 0 0.035 0.70 -873 RAB3C RAB3C, member RAS oncogene family 356928 2 2 2 0 1 0 1 0 0 0 0.036 0.70 -874 GINS2 GINS complex subunit 2 (Psf2 homolog) 245388 1 1 1 0 0 0 0 0 1 0 0.036 0.70 -875 DNASE2 deoxyribonuclease II, lysosomal 533871 2 2 2 0 0 0 1 0 1 0 0.036 0.70 -876 OR1L6 olfactory receptor, family 1, subfamily L, member 6 475566 2 2 2 0 1 1 0 0 0 0 0.036 0.70 -877 COX6C cytochrome c oxidase subunit VIc 119652 1 1 1 0 1 0 0 0 0 0 0.036 0.70 -878 RPS21 ribosomal protein S21 109512 1 1 1 0 0 1 0 0 0 0 0.036 0.70 -879 ENOX1 ecto-NOX disulfide-thiol exchanger 1 1007916 3 3 3 0 0 1 1 0 1 0 0.036 0.70 -880 SLC12A5 solute carrier family 12, (potassium-chloride transporter) member 5 1696929 5 5 5 0 1 3 1 0 0 0 0.036 0.70 -881 AIP aryl hydrocarbon receptor interacting protein 145509 1 1 1 0 0 1 0 0 0 0 0.036 0.70 -882 GPR83 G protein-coupled receptor 83 653016 3 3 3 0 0 2 0 0 1 0 0.036 0.70 -883 NEDD4L neural precursor cell expressed, developmentally down-regulated 4-like 1295892 4 4 4 1 0 0 2 2 0 0 0.036 0.70 -884 TPRG1 tumor protein p63 regulated 1 429936 2 2 2 0 0 2 0 0 0 0 0.036 0.70 -885 GRIN2D glutamate receptor, ionotropic, N-methyl D-aspartate 2D 940992 3 3 3 0 1 2 0 0 0 0 0.036 0.70 -886 PARK2 Parkinson disease (autosomal recessive, juvenile) 2, parkin 668226 3 3 3 0 1 1 0 1 0 0 0.036 0.70 -887 ZNF592 zinc finger protein 592 1928628 5 5 5 2 3 1 0 0 1 0 0.036 0.70 -888 OGFOD2 2-oxoglutarate and iron-dependent oxygenase domain containing 2 136890 1 1 1 0 0 0 0 1 0 0 0.036 0.70 -889 GABRA3 gamma-aminobutyric acid (GABA) A receptor, alpha 3 768105 3 3 3 0 0 3 0 0 0 0 0.036 0.70 -890 ZNF160 zinc finger protein 160 1253811 5 4 5 0 0 3 2 0 0 0 0.036 0.70 -891 ALKBH5 alkB, alkylation repair homolog 5 (E. coli) 409149 2 2 2 0 0 1 0 1 0 0 0.036 0.70 -892 ALPP alkaline phosphatase, placental (Regan isozyme) 593697 2 2 2 1 0 0 0 1 1 0 0.036 0.70 -893 OTP orthopedia homeobox 162240 1 1 1 0 0 1 0 0 0 0 0.036 0.70 -894 CRYBG3 1594515 5 5 5 0 1 1 2 1 0 0 0.036 0.70 -895 HPCAL1 hippocalcin-like 1 192660 1 1 1 0 0 1 0 0 0 0 0.036 0.70 -896 SFRS17A splicing factor, arginine/serine-rich 17A 719433 3 3 3 1 1 1 0 1 0 0 0.037 0.70 -897 FAM131C family with sequence similarity 131, member C 205842 1 1 1 0 0 1 0 0 0 0 0.037 0.70 -898 RMND1 required for meiotic nuclear division 1 homolog (S. cerevisiae) 706758 2 2 2 1 0 0 1 0 1 0 0.037 0.70 -899 XPO7 exportin 7 1595022 5 5 5 0 0 3 1 0 1 0 0.037 0.70 -900 ZIC4 Zic family member 4 524745 2 2 2 2 1 0 0 1 0 0 0.037 0.70 -901 CSAG1 chondrosarcoma associated gene 1 126243 1 1 1 0 0 0 1 0 0 0 0.037 0.70 -902 ZNF501 zinc finger protein 501 415740 2 2 2 0 1 0 0 0 1 0 0.037 0.70 -903 TMEM59L transmembrane protein 59-like 254514 2 2 2 0 0 2 0 0 0 0 0.037 0.70 -904 BLCAP bladder cancer associated protein 127764 1 1 1 0 0 0 1 0 0 0 0.037 0.70 -905 SH2D2A SH2 domain protein 2A 533364 2 2 2 0 0 1 0 1 0 0 0.037 0.70 -906 IL33 interleukin 33 426387 2 2 2 0 1 0 1 0 0 0 0.037 0.70 -907 ZNF131 zinc finger protein 131 911586 3 3 3 0 0 0 1 2 0 0 0.037 0.70 -908 NTRK3 neurotrophic tyrosine kinase, receptor, type 3 1423656 4 4 4 0 0 1 0 2 1 0 0.037 0.70 -909 LRRN1 leucine rich repeat neuronal 1 1092585 4 4 4 0 0 0 4 0 0 0 0.037 0.70 -910 FUK fucokinase 637806 2 2 2 1 0 0 0 1 1 0 0.037 0.70 -911 TRAF3IP3 TRAF3 interacting protein 3 870012 3 3 3 2 0 1 1 1 0 0 0.037 0.70 -912 KIAA1462 KIAA1462 2074644 5 5 5 0 1 2 2 0 0 0 0.037 0.70 -913 C14orf21 chromosome 14 open reading frame 21 947076 3 3 2 2 0 0 0 1 2 0 0.037 0.70 -914 TUBB2C tubulin, beta 2C 392418 2 2 2 0 0 2 0 0 0 0 0.037 0.70 -915 POLR3GL polymerase (RNA) III (DNA directed) polypeptide G (32kD)-like 346788 2 2 2 0 0 1 1 0 0 0 0.037 0.70 -916 CD1C CD1c molecule 520182 2 2 2 0 0 2 0 0 0 0 0.037 0.70 -917 RPL29 ribosomal protein L29 249444 1 1 1 0 0 0 0 0 1 0 0.038 0.71 -918 PDGFB platelet-derived growth factor beta polypeptide (simian sarcoma viral (v-sis) oncogene homolog) 250965 1 1 1 0 0 0 0 0 1 0 0.038 0.71 -919 KRT36 keratin 36 624624 2 2 2 0 0 1 0 0 1 0 0.038 0.71 -920 TH1L TH1-like (Drosophila) 883194 3 3 3 0 1 1 1 0 0 0 0.038 0.71 -921 BMP4 bone morphogenetic protein 4 626145 2 2 2 0 0 1 0 0 1 0 0.038 0.71 -922 CBLN1 cerebellin 1 precursor 232206 1 1 1 0 0 0 0 0 1 0 0.038 0.71 -923 CAPRIN1 cell cycle associated protein 1 1015014 3 3 3 0 0 0 1 1 1 0 0.038 0.71 -924 ZNF492 zinc finger protein 492 815256 3 3 3 1 0 1 0 0 2 0 0.038 0.71 -925 RARRES1 retinoic acid receptor responder (tazarotene induced) 1 326508 2 2 2 0 0 0 1 0 1 0 0.038 0.71 -926 FBXO25 F-box protein 25 572910 2 2 2 0 0 1 0 1 0 0 0.038 0.71 -927 FAM47B family with sequence similarity 47, member B 984594 3 3 3 1 0 2 1 0 0 0 0.038 0.71 -928 OR10K1 olfactory receptor, family 10, subfamily K, member 1 479622 2 2 2 0 1 1 0 0 0 0 0.038 0.71 -929 TMEM201 transmembrane protein 201 436527 2 2 2 0 0 0 0 0 2 0 0.038 0.71 -930 EVPL envoplakin 2367690 6 6 6 0 0 2 3 1 0 0 0.038 0.71 -931 DUSP16 dual specificity phosphatase 16 1025154 3 3 3 0 0 0 0 0 3 0 0.038 0.71 -932 NEK10 NIMA (never in mitosis gene a)- related kinase 10 1088022 4 4 4 1 0 0 3 0 1 0 0.038 0.71 -933 TMEM64 transmembrane protein 64 232713 1 1 1 0 0 0 0 0 1 0 0.038 0.71 -934 FAM167A 299130 2 2 2 0 1 1 0 0 0 0 0.038 0.71 -935 CPA1 carboxypeptidase A1 (pancreatic) 658593 3 3 3 0 1 0 2 0 0 0 0.038 0.71 -936 C9orf25 chromosome 9 open reading frame 25 245388 1 1 1 0 0 0 0 1 0 0 0.038 0.71 -937 FCHO1 FCH domain only 1 1250769 3 3 3 1 0 0 1 0 2 0 0.039 0.71 -938 TSC22D3 TSC22 domain family, member 3 370110 2 2 2 2 0 1 1 0 0 0 0.039 0.71 -939 CXCR1 535899 2 2 2 0 1 0 0 1 0 0 0.039 0.71 -940 DHRS13 dehydrogenase/reductase (SDR family) member 13 343239 2 2 2 0 0 1 1 0 0 0 0.039 0.71 -941 SLC25A18 solute carrier family 25 (mitochondrial carrier), member 18 374166 2 2 2 1 0 1 1 0 0 0 0.039 0.71 -942 VGLL3 vestigial like 3 (Drosophila) 439569 2 2 2 0 1 1 0 0 0 0 0.039 0.71 -943 FARSB phenylalanyl-tRNA synthetase, beta subunit 900432 3 3 3 0 1 1 1 0 0 0 0.039 0.71 -944 OR5R1 olfactory receptor, family 5, subfamily R, member 1 496353 2 2 2 0 1 1 0 0 0 0 0.039 0.71 -945 KIAA0319 KIAA0319 1672593 4 4 4 0 0 0 1 2 1 0 0.039 0.71 -946 SPINK2 serine peptidase inhibitor, Kazal type 2 (acrosin-trypsin inhibitor) 107484 1 1 1 0 0 0 0 1 0 0 0.039 0.71 -947 CLIC5 chloride intracellular channel 5 361491 2 2 2 0 1 0 0 0 1 0 0.039 0.71 -948 C15orf39 chromosome 15 open reading frame 39 1203111 4 4 4 1 2 1 1 0 0 0 0.039 0.72 -949 TMEM72 392418 2 2 2 0 0 1 0 0 1 0 0.039 0.72 -950 SPEG SPEG complex locus 3219450 7 7 6 2 2 3 0 0 2 0 0.040 0.72 -951 CELA2B 426894 2 2 2 1 1 1 0 0 0 0 0.040 0.72 -952 GMDS GDP-mannose 4,6-dehydratase 521196 2 2 2 0 0 0 2 0 0 0 0.040 0.72 -953 CHRNB1 cholinergic receptor, nicotinic, beta 1 (muscle) 623610 2 2 1 1 0 0 2 0 0 0 0.040 0.72 -954 ILF2 interleukin enhancer binding factor 2, 45kDa 623103 2 2 2 0 0 0 0 1 1 0 0.040 0.72 -955 CD2 CD2 molecule 545532 2 2 2 0 0 0 1 0 1 0 0.040 0.72 -956 EPHA5 EPH receptor A5 1521507 5 5 5 0 2 3 0 0 0 0 0.040 0.72 -957 FXR1 fragile X mental retardation, autosomal homolog 1 980538 3 3 3 0 0 1 1 0 1 0 0.040 0.72 -958 KPNA2 karyopherin alpha 2 (RAG cohort 1, importin alpha 1) 354393 2 2 2 0 0 2 0 0 0 0 0.040 0.72 -959 SRGAP1 SLIT-ROBO Rho GTPase activating protein 1 1696422 5 5 5 0 2 2 1 0 0 0 0.040 0.73 -960 GPR101 G protein-coupled receptor 101 776217 3 3 3 0 0 2 0 1 0 0 0.040 0.73 -961 C1orf183 chromosome 1 open reading frame 183 460863 2 2 2 0 0 2 0 0 0 0 0.040 0.73 -962 IL1RN interleukin 1 receptor antagonist 319917 2 2 2 0 1 1 0 0 0 0 0.040 0.73 -963 PTBP1 polypyrimidine tract binding protein 1 459342 2 2 2 1 0 0 2 0 0 0 0.041 0.73 -964 CRAT carnitine acetyltransferase 716391 3 3 3 0 0 1 0 1 1 0 0.041 0.73 -965 MLYCD malonyl-CoA decarboxylase 481143 2 2 2 0 0 1 0 0 1 0 0.041 0.73 -966 PRMT6 protein arginine methyltransferase 6 476580 2 2 2 0 0 1 1 0 0 0 0.041 0.73 -967 NUPL2 nucleoporin like 2 613470 2 2 2 0 0 0 0 1 1 0 0.041 0.73 -968 IGSF1 immunoglobulin superfamily, member 1 2111148 5 5 5 1 0 1 2 0 2 0 0.041 0.73 -969 UBE2A ubiquitin-conjugating enzyme E2A (RAD6 homolog) 220545 1 1 1 0 0 0 0 0 1 0 0.041 0.73 -970 NOL3 nucleolar protein 3 (apoptosis repressor with CARD domain) 266175 1 1 1 0 0 0 1 0 0 0 0.041 0.73 -971 PIWIL2 piwi-like 2 (Drosophila) 1525056 4 4 4 0 0 2 0 0 2 0 0.041 0.73 -972 FATE1 fetal and adult testis expressed 1 234234 1 1 1 0 0 0 1 0 0 0 0.041 0.73 -973 ZNF296 570882 2 2 2 0 0 1 0 0 1 0 0.041 0.73 -974 PNPO pyridoxamine 5'-phosphate oxidase 340704 2 2 2 0 0 1 0 0 1 0 0.041 0.73 -975 ERP29 endoplasmic reticulum protein 29 345267 2 2 2 0 1 1 0 0 0 0 0.041 0.73 -976 GRK4 G protein-coupled receptor kinase 4 878124 3 3 3 1 1 1 1 0 0 0 0.041 0.73 -977 GPRASP2 G protein-coupled receptor associated sorting protein 2 1278147 4 4 4 0 1 3 0 0 0 0 0.041 0.73 -978 INA internexin neuronal intermediate filament protein, alpha 244374 1 1 1 0 0 0 0 0 1 0 0.041 0.73 -979 C1orf163 chromosome 1 open reading frame 163 358956 2 2 2 0 1 0 1 0 0 0 0.041 0.73 -980 CASC5 cancer susceptibility candidate 5 3555591 7 7 7 0 1 1 4 0 1 0 0.041 0.73 -981 BRP44L brain protein 44-like 136890 1 1 1 0 0 1 0 0 0 0 0.041 0.73 -982 TMEM120B transmembrane protein 120B 419289 2 2 2 0 1 0 0 0 1 0 0.041 0.73 -983 HSD17B13 hydroxysteroid (17-beta) dehydrogenase 13 472017 2 2 2 0 1 0 0 0 1 0 0.042 0.73 -984 RASAL3 742248 3 3 3 1 0 3 0 0 0 0 0.042 0.73 -985 SNX5 sorting nexin 5 614484 2 2 2 0 0 0 0 0 2 0 0.042 0.73 -986 ELAVL1 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 1 (Hu antigen R) 475059 2 2 2 0 1 1 0 0 0 0 0.042 0.73 -987 CALHM2 496860 2 2 2 0 0 2 0 0 0 0 0.042 0.73 -988 SYNC 321438 2 2 2 0 0 0 1 1 0 0 0.042 0.73 -989 ARID3C AT rich interactive domain 3C (BRIGHT-like) 403572 2 2 2 0 0 1 1 0 0 0 0.042 0.73 -990 ATIC 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase 922740 3 3 3 0 1 0 0 0 2 0 0.042 0.73 -991 SLAMF7 SLAM family member 7 525252 2 2 2 0 0 0 1 1 0 0 0.042 0.73 -992 TIRAP toll-interleukin 1 receptor (TIR) domain containing adaptor protein 372645 2 2 2 1 1 1 0 0 0 0 0.042 0.73 -993 RFX1 regulatory factor X, 1 (influences HLA class II expression) 526773 2 2 2 0 0 0 1 1 0 0 0.042 0.73 -994 PPARGC1B peroxisome proliferator-activated receptor gamma, coactivator 1 beta 1387152 4 4 4 0 2 0 1 0 1 0 0.042 0.73 -995 LRSAM1 leucine rich repeat and sterile alpha motif containing 1 969384 3 3 3 0 0 0 1 1 1 0 0.042 0.73 -996 TOX4 TOX high mobility group box family member 4 964314 3 3 3 0 0 2 0 0 1 0 0.042 0.73 -997 PDE2A phosphodiesterase 2A, cGMP-stimulated 1089543 3 3 3 1 0 0 2 0 1 0 0.042 0.73 -998 EFCAB2 EF-hand calcium binding domain 2 247416 1 1 1 0 0 1 0 0 0 0 0.042 0.73 -999 HOXC12 homeobox C12 238797 1 1 1 0 0 0 0 0 1 0 0.042 0.73 -1000 SLC10A3 solute carrier family 10 (sodium/bile acid cotransporter family), member 3 609921 3 2 3 0 0 1 0 0 0 2 0.042 0.73 -1001 FAM86B1 family with sequence similarity 86, member B1 155142 1 1 1 0 0 1 0 0 0 0 0.042 0.73 -1002 LANCL2 LanC lantibiotic synthetase component C-like 2 (bacterial) 598767 2 2 2 0 0 1 0 1 0 0 0.042 0.73 -1003 GALR1 galanin receptor 1 397488 2 2 2 2 0 1 1 0 0 0 0.042 0.73 -1004 CORO1C coronin, actin binding protein, 1C 742755 3 3 3 0 0 1 0 2 0 0 0.043 0.73 -1005 HOXA4 homeobox A4 188604 1 1 1 0 0 0 0 0 1 0 0.043 0.73 -1006 IRX4 iroquois homeobox 4 229164 1 1 1 0 0 0 0 0 1 0 0.043 0.73 -1007 PGR progesterone receptor 624624 2 2 2 0 0 1 0 0 1 0 0.043 0.73 -1008 CHRNB2 cholinergic receptor, nicotinic, beta 2 (neuronal) 597246 2 2 2 1 0 1 0 0 1 0 0.043 0.73 -1009 RHOA ras homolog gene family, member A 303186 2 2 2 0 1 0 1 0 0 0 0.043 0.73 -1010 C12orf39 chromosome 12 open reading frame 39 156156 1 1 1 0 0 0 1 0 0 0 0.043 0.73 -1011 LOC55908 217503 1 1 1 0 0 0 0 0 1 0 0.043 0.73 -1012 C3orf34 chromosome 3 open reading frame 34 259584 1 1 1 0 0 0 0 0 1 0 0.043 0.73 -1013 USP42 ubiquitin specific peptidase 42 1411995 4 4 4 1 1 1 1 1 0 0 0.043 0.73 -1014 CNOT3 CCR4-NOT transcription complex, subunit 3 1107795 3 3 3 0 0 0 0 2 1 0 0.043 0.73 -1015 SNAPC3 small nuclear RNA activating complex, polypeptide 3, 50kDa 483678 2 2 2 0 0 1 1 0 0 0 0.043 0.73 -1016 TEX15 testis expressed 15 4251702 11 9 11 3 3 2 4 1 1 0 0.043 0.73 -1017 CEP164 centrosomal protein 164kDa 2184663 4 4 2 1 0 0 0 1 3 0 0.043 0.73 -1018 CCL7 chemokine (C-C motif) ligand 7 158184 1 1 1 0 0 0 1 0 0 0 0.043 0.73 -1019 ATM ataxia telangiectasia mutated 4775433 9 8 9 1 0 4 0 1 4 0 0.043 0.73 -1020 C20orf79 chromosome 20 open reading frame 79 240825 1 1 1 0 0 0 1 0 0 0 0.043 0.73 -1021 CDCA7L cell division cycle associated 7-like 698139 3 3 3 0 2 1 0 0 0 0 0.044 0.73 -1022 HDGFRP2 286455 2 2 2 1 1 0 0 0 1 0 0.044 0.73 -1023 CDC42BPA CDC42 binding protein kinase alpha (DMPK-like) 2688114 5 5 5 0 0 0 2 0 3 0 0.044 0.73 -1024 CD226 CD226 molecule 392925 2 2 2 0 1 0 1 0 0 0 0.044 0.73 -1025 RBM26 RNA binding motif protein 26 1534689 4 4 4 0 0 1 0 2 1 0 0.044 0.73 -1026 ANO5 1422135 4 4 4 0 1 2 0 0 1 0 0.044 0.73 -1027 C9orf91 chromosome 9 open reading frame 91 537420 2 2 2 0 0 0 1 0 1 0 0.044 0.73 -1028 MCOLN1 mucolipin 1 759486 3 3 3 1 1 1 1 0 0 0 0.044 0.73 -1029 STK31 serine/threonine kinase 31 1600092 5 5 5 0 2 1 1 0 1 0 0.044 0.73 -1030 ARMCX1 armadillo repeat containing, X-linked 1 692562 3 2 3 0 1 0 0 0 0 2 0.044 0.73 -1031 MAGEA12 melanoma antigen family A, 12 481143 2 2 2 0 0 1 0 0 1 0 0.044 0.73 -1032 KLK15 kallikrein-related peptidase 15 377208 2 2 2 0 0 2 0 0 0 0 0.044 0.73 -1033 CBX8 chromobox homolog 8 (Pc class homolog, Drosophila) 454779 3 2 3 0 1 2 0 0 0 0 0.044 0.73 -1034 CNTNAP4 contactin associated protein-like 4 1970709 5 5 5 0 1 2 2 0 0 0 0.044 0.73 -1035 MEX3C mex-3 homolog C (C. elegans) 623610 2 2 2 1 0 1 1 0 0 0 0.044 0.73 -1036 SSX3 synovial sarcoma, X breakpoint 3 325494 2 2 2 0 1 0 1 0 0 0 0.044 0.73 -1037 FAM111A family with sequence similarity 111, member A 934908 3 3 3 1 1 0 0 0 2 0 0.044 0.73 -1038 POLR1C polymerase (RNA) I polypeptide C, 30kDa 602316 2 2 2 0 0 0 1 0 1 0 0.044 0.73 -1039 MAST1 microtubule associated serine/threonine kinase 1 2161848 5 5 5 2 0 4 0 0 1 0 0.044 0.73 -1040 STXBP2 syntaxin binding protein 2 616005 2 2 2 1 0 1 0 1 0 0 0.044 0.73 -1041 RHO rhodopsin 540969 2 2 2 0 0 0 0 0 2 0 0.044 0.73 -1042 RLF rearranged L-myc fusion 2861508 7 7 7 0 2 2 2 0 1 0 0.044 0.73 -1043 FAM90A1 family with sequence similarity 90, member A1 675324 2 2 2 0 1 0 0 0 1 0 0.045 0.73 -1044 KCNK9 potassium channel, subfamily K, member 9 507000 2 2 2 0 0 1 0 0 1 0 0.045 0.73 -1045 MOGAT3 monoacylglycerol O-acyltransferase 3 521196 2 2 2 0 0 1 1 0 0 0 0.045 0.73 -1046 CCNG2 cyclin G2 538941 2 2 2 1 0 1 0 0 1 0 0.045 0.73 -1047 ZNF486 zinc finger protein 486 713856 2 2 2 2 0 0 1 0 1 0 0.045 0.73 -1048 FHIT fragile histidine triad gene 235248 1 1 1 0 0 0 1 0 0 0 0.045 0.73 -1049 ZNF620 zinc finger protein 620 651495 2 2 2 0 0 0 0 0 2 0 0.045 0.73 -1050 TMTC4 transmembrane and tetratricopeptide repeat containing 4 1193985 4 4 4 0 3 0 1 0 0 0 0.045 0.73 -1051 AMMECR1 Alport syndrome, mental retardation, midface hypoplasia and elliptocytosis chromosomal region, gene 1 278343 1 1 1 0 0 0 0 0 1 0 0.045 0.73 -1052 CUL7 cullin 7 2677974 7 6 7 0 0 3 1 0 1 2 0.045 0.73 -1053 COX10 COX10 homolog, cytochrome c oxidase assembly protein, heme A: farnesyltransferase (yeast) 662142 2 2 2 0 0 0 0 0 2 0 0.045 0.73 -1054 ZNF512 zinc finger protein 512 892320 2 2 2 0 0 0 0 0 2 0 0.045 0.73 -1055 ERN2 endoplasmic reticulum to nucleus signaling 2 1308567 4 4 4 1 1 3 0 0 0 0 0.045 0.73 -1056 MRPL18 mitochondrial ribosomal protein L18 282906 2 2 2 0 0 2 0 0 0 0 0.045 0.73 -1057 SP3 Sp3 transcription factor 1056081 3 3 3 0 0 0 1 0 2 0 0.045 0.73 -1058 FCRL5 Fc receptor-like 5 1460667 4 4 4 1 2 2 0 0 0 0 0.045 0.73 -1059 ATPIF1 ATPase inhibitory factor 1 173394 1 1 1 0 0 0 0 0 1 0 0.045 0.73 -1060 KCNJ6 potassium inwardly-rectifying channel, subfamily J, member 6 650988 2 2 2 1 0 1 0 1 0 0 0.045 0.73 -1061 RIC8A resistance to inhibitors of cholinesterase 8 homolog A (C. elegans) 772668 3 3 3 0 0 1 0 0 2 0 0.045 0.73 -1062 TPM1 tropomyosin 1 (alpha) 541983 2 2 2 0 0 0 1 0 1 0 0.045 0.73 -1063 TTC24 tetratricopeptide repeat domain 24 527787 2 2 2 0 0 0 1 0 1 0 0.045 0.73 -1064 RAD9A RAD9 homolog A (S. pombe) 488748 2 2 2 0 0 0 0 0 2 0 0.045 0.73 -1065 C1orf192 chromosome 1 open reading frame 192 280878 1 1 1 0 0 0 0 0 1 0 0.045 0.73 -1066 GPHB5 glycoprotein hormone beta 5 143988 1 1 1 0 0 0 1 0 0 0 0.045 0.73 -1067 WWC3 WWC family member 3 1528098 4 4 4 0 1 0 0 0 3 0 0.045 0.74 -1068 DFNA5 deafness, autosomal dominant 5 774189 3 3 3 0 0 0 1 0 2 0 0.046 0.74 -1069 ATP4A ATPase, H+/K+ exchanging, alpha polypeptide 1584882 4 4 4 0 0 2 1 0 1 0 0.046 0.74 -1070 FAM179A 1308060 4 4 4 0 1 1 0 2 0 0 0.046 0.74 -1071 ACACB acetyl-Coenzyme A carboxylase beta 3696030 8 8 8 0 3 5 0 0 0 0 0.046 0.74 -1072 KLRK1 killer cell lectin-like receptor subfamily K, member 1 344253 2 2 2 0 0 0 2 0 0 0 0.046 0.74 -1073 CCDC115 coiled-coil domain containing 115 283413 1 1 1 0 0 0 0 0 1 0 0.046 0.74 -1074 AQP10 aquaporin 10 471003 2 2 2 0 0 1 1 0 0 0 0.046 0.74 -1075 PTCHD1 patched domain containing 1 1285752 3 3 3 2 0 2 0 0 1 0 0.046 0.74 -1076 FAM107A family with sequence similarity 107, member A 226629 1 1 1 0 0 0 1 0 0 0 0.046 0.74 -1077 SUZ12 suppressor of zeste 12 homolog (Drosophila) 1017042 3 3 3 0 0 1 1 0 1 0 0.046 0.74 -1078 OR7D4 olfactory receptor, family 7, subfamily D, member 4 478101 2 2 2 0 0 1 0 0 1 0 0.046 0.74 -1079 EPB41L1 erythrocyte membrane protein band 4.1-like 1 1377519 4 4 4 0 1 1 0 1 1 0 0.046 0.74 -1080 ABAT 4-aminobutyrate aminotransferase 778245 3 3 3 1 0 2 1 0 0 0 0.046 0.74 -1081 TRIM56 tripartite motif-containing 56 833001 3 3 3 1 0 2 1 0 0 0 0.046 0.74 -1082 TSR2 TSR2, 20S rRNA accumulation, homolog (S. cerevisiae) 252486 1 1 1 0 0 0 1 0 0 0 0.047 0.74 -1083 ZIM3 zinc finger, imprinted 3 727545 3 3 3 0 0 1 1 1 0 0 0.047 0.74 -1084 STRA8 stimulated by retinoic acid gene 8 homolog (mouse) 374673 2 2 2 0 0 1 0 0 1 0 0.047 0.74 -1085 DEFB129 defensin, beta 129 283920 1 1 1 0 0 0 0 0 1 0 0.047 0.74 -1086 SFTPC surfactant, pulmonary-associated protein C 290511 1 1 1 0 0 0 0 0 1 0 0.047 0.74 -1087 WHSC2 Wolf-Hirschhorn syndrome candidate 2 290004 1 1 1 0 0 0 0 0 1 0 0.047 0.74 -1088 NUDT1 nudix (nucleoside diphosphate linked moiety X)-type motif 1 229671 1 1 1 0 0 1 0 0 0 0 0.047 0.74 -1089 LCE2A late cornified envelope 2A 164775 1 1 1 0 0 0 0 0 1 0 0.047 0.74 -1090 CLNK 553644 2 2 2 0 1 0 1 0 0 0 0.047 0.74 -1091 TGIF2 TGFB-induced factor homeobox 2 366054 2 2 2 0 1 1 0 0 0 0 0.047 0.74 -1092 DNAJC11 DnaJ (Hsp40) homolog, subfamily C, member 11 845676 3 3 3 0 0 0 2 0 1 0 0.047 0.75 -1093 C20orf177 chromosome 20 open reading frame 177 586092 2 2 2 1 2 0 0 0 0 0 0.047 0.75 -1094 IFLTD1 intermediate filament tail domain containing 1 607893 2 2 2 0 0 0 1 1 0 0 0.047 0.75 -1095 CENPE centromere protein E, 312kDa 4171089 9 9 9 0 1 3 4 0 1 0 0.047 0.75 -1096 DCC deleted in colorectal carcinoma 2261220 6 6 6 2 3 2 0 0 1 0 0.048 0.75 -1097 CHST5 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 5 442611 2 2 1 0 2 0 0 0 0 0 0.048 0.75 -1098 MYOM3 myomesin family, member 3 1888575 5 5 5 1 3 1 0 1 0 0 0.048 0.75 -1099 FAM98A family with sequence similarity 98, member A 805623 3 3 3 0 0 0 2 0 1 0 0.048 0.75 -1100 RNF41 ring finger protein 41 493818 2 2 2 0 2 0 0 0 0 0 0.048 0.75 -1101 RBPJL recombination signal binding protein for immunoglobulin kappa J region-like 735657 3 3 3 0 1 1 1 0 0 0 0.048 0.75 -1102 SIAH1 seven in absentia homolog 1 (Drosophila) 481650 2 2 2 0 0 0 0 1 1 0 0.048 0.75 -1103 COASY Coenzyme A synthase 869505 3 3 3 0 1 0 1 0 1 0 0.048 0.75 -1104 ESR1 estrogen receptor 1 712842 2 2 2 0 1 0 0 0 1 0 0.048 0.75 -1105 STXBP5 syntaxin binding protein 5 (tomosyn) 1672086 5 5 5 1 3 0 1 1 0 0 0.048 0.75 -1106 DSG1 desmoglein 1 574938 2 2 2 0 0 0 2 0 0 0 0.048 0.75 -1107 EDN1 endothelin 1 334113 2 2 2 1 2 0 0 0 0 0 0.048 0.75 -1108 PTPRD protein tyrosine phosphatase, receptor type, D 2957331 7 7 7 1 0 3 3 0 1 0 0.048 0.75 -1109 DSG4 desmoglein 4 517647 2 2 2 0 1 0 0 0 1 0 0.048 0.75 -1110 KRTAP13-4 keratin associated protein 13-4 246909 1 1 1 0 0 0 0 1 0 0 0.048 0.75 -1111 RAB43 RAB43, member RAS oncogene family 260598 1 1 1 0 0 0 0 1 0 0 0.048 0.75 -1112 UFC1 ubiquitin-fold modifier conjugating enzyme 1 267696 1 1 1 0 0 0 0 1 0 0 0.048 0.75 -1113 GRB7 growth factor receptor-bound protein 7 754416 3 3 3 0 2 1 0 0 0 0 0.048 0.75 -1114 THEM5 thioesterase superfamily member 5 389376 2 2 2 0 0 0 2 0 0 0 0.048 0.75 -1115 ARSB arylsulfatase B 684957 3 3 3 0 2 1 0 0 0 0 0.048 0.75 -1116 PAX8 paired box 8 599781 2 2 2 0 1 0 0 0 1 0 0.048 0.75 -1117 FAM26D family with sequence similarity 26, member D 198237 1 1 1 0 0 0 1 0 0 0 0.048 0.75 -1118 OXCT2 3-oxoacid CoA transferase 2 248430 1 1 1 0 0 1 0 0 0 0 0.048 0.75 -1119 PLEC 2989272 9 7 7 6 2 1 2 4 0 0 0.048 0.75 -1120 SPANXC SPANX family, member C 153114 1 1 1 0 1 0 0 0 0 0 0.048 0.75 -1121 HEATR3 HEAT repeat containing 3 833001 2 2 2 0 0 0 0 0 2 0 0.049 0.75 -1122 POLI polymerase (DNA directed) iota 1046955 3 3 3 0 0 1 1 1 0 0 0.049 0.75 -1123 LMO4 LIM domain only 4 260091 1 1 1 0 0 1 0 0 0 0 0.049 0.75 -1124 MBD1 methyl-CpG binding domain protein 1 1010958 3 3 3 1 1 1 1 0 0 0 0.049 0.75 -1125 UGT2B15 UDP glucuronosyltransferase 2 family, polypeptide B15 503958 2 2 2 0 1 0 0 0 1 0 0.049 0.75 -1126 HAPLN2 hyaluronan and proteoglycan link protein 2 276822 1 1 1 0 0 0 0 0 1 0 0.049 0.75 -1127 FAM174B 73008 1 1 1 0 0 1 0 0 0 0 0.049 0.75 -1128 ZNF576 zinc finger protein 576 264147 1 1 1 0 0 0 1 0 0 0 0.049 0.75 -1129 DEAF1 deformed epidermal autoregulatory factor 1 (Drosophila) 617526 2 2 2 1 0 1 0 0 1 0 0.049 0.75 -1130 GREM1 gremlin 1, cysteine knot superfamily, homolog (Xenopus laevis) 283413 1 1 1 0 0 0 1 0 0 0 0.049 0.75 -1131 PDE4D phosphodiesterase 4D, cAMP-specific (phosphodiesterase E3 dunce homolog, Drosophila) 1062165 3 3 3 0 0 1 2 0 0 0 0.049 0.75 -1132 CHD6 chromodomain helicase DNA binding protein 6 4203537 7 7 7 2 1 0 2 1 3 0 0.049 0.75 -1133 OXGR1 oxoglutarate (alpha-ketoglutarate) receptor 1 516126 2 2 2 1 0 0 0 1 1 0 0.049 0.75 -1134 MMP3 matrix metallopeptidase 3 (stromelysin 1, progelatinase) 747318 3 3 3 1 1 0 2 0 0 0 0.049 0.75 -1135 C6orf129 chromosome 6 open reading frame 129 157170 1 1 1 0 0 0 1 0 0 0 0.049 0.75 -1136 HIST1H1B histone cluster 1, H1b 347295 2 2 2 1 1 0 0 1 0 0 0.049 0.75 -1137 GJA1 gap junction protein, alpha 1, 43kDa 584571 2 2 2 0 0 0 2 0 0 0 0.049 0.75 -1138 EWSR1 Ewing sarcoma breakpoint region 1 1084473 3 3 3 0 0 1 0 0 2 0 0.050 0.75 -1139 GRIN3A glutamate receptor, ionotropic, N-methyl-D-aspartate 3A 1529112 4 4 4 2 0 3 0 1 0 0 0.050 0.75 -1140 SCN8A sodium channel, voltage gated, type VIII, alpha subunit 3046563 7 7 7 0 2 1 3 1 0 0 0.050 0.75 -1141 KRT1 keratin 1 (epidermolytic hyperkeratosis) 987636 3 3 3 0 1 2 0 0 0 0 0.050 0.75 -1142 AASDHPPT aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase 480129 2 2 2 1 0 0 2 0 0 0 0.050 0.75 -1143 CYP21A2 cytochrome P450, family 21, subfamily A, polypeptide 2 523731 2 2 2 0 0 1 1 0 0 0 0.050 0.75 -1144 TBPL2 TATA box binding protein like 2 558714 2 2 1 0 0 0 2 0 0 0 0.050 0.75 -1145 GALNT7 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 7 (GalNAc-T7) 959244 2 2 2 1 0 0 0 0 2 0 0.050 0.75 -1146 VKORC1 vitamin K epoxide reductase complex, subunit 1 178464 1 1 1 0 0 1 0 0 0 0 0.050 0.75 -1147 CACNA1E calcium channel, voltage-dependent, R type, alpha 1E subunit 3302598 8 8 8 1 3 2 2 0 1 0 0.050 0.75 -1148 ZNF688 zinc finger protein 688 240318 1 1 1 0 0 0 1 0 0 0 0.050 0.75 -1149 FAM57B family with sequence similarity 57, member B 199758 1 1 1 0 0 1 0 0 0 0 0.050 0.75 -1150 UCP2 uncoupling protein 2 (mitochondrial, proton carrier) 474045 2 2 2 0 1 0 0 0 1 0 0.050 0.75 -1151 DNAJC15 DnaJ (Hsp40) homolog, subfamily C, member 15 185055 1 1 1 0 0 0 0 1 0 0 0.050 0.75 -1152 SCOC short coiled-coil protein 195195 1 1 1 0 0 0 1 0 0 0 0.050 0.75 -1153 ACY1 aminoacylase 1 615498 2 2 2 0 0 0 1 0 1 0 0.050 0.75 -1154 ANKRD28 ankyrin repeat domain 28 1622400 4 4 4 0 1 0 1 1 1 0 0.050 0.75 -1155 FIGN fidgetin 1160016 4 4 4 0 2 0 2 0 0 0 0.050 0.75 -1156 RIMBP2 RIMS binding protein 2 1360788 4 4 4 6 2 1 1 0 0 0 0.050 0.75 -1157 CD38 CD38 molecule 474045 2 2 2 0 0 1 1 0 0 0 0.050 0.75 -1158 CLEC4G C-type lectin superfamily 4, member G 269217 1 1 1 0 0 0 1 0 0 0 0.050 0.75 -1159 C4orf36 chromosome 4 open reading frame 36 185562 1 1 1 0 0 0 1 0 0 0 0.050 0.75 -1160 NNT nicotinamide nucleotide transhydrogenase 1695915 4 4 4 0 0 0 3 1 0 0 0.050 0.75 -1161 NUF2 NUF2, NDC80 kinetochore complex component, homolog (S. cerevisiae) 733629 3 3 3 0 0 2 0 1 0 0 0.051 0.75 -1162 IQCB1 IQ motif containing B1 937443 3 3 3 0 1 0 1 1 0 0 0.051 0.75 -1163 CDK19 787878 3 3 3 0 1 1 1 0 0 0 0.051 0.75 -1164 KIAA0495 182520 1 1 1 1 1 0 0 0 0 0 0.051 0.75 -1165 SLMO2 slowmo homolog 2 (Drosophila) 290004 1 1 1 0 0 0 0 1 0 0 0.051 0.75 -1166 MMP15 matrix metallopeptidase 15 (membrane-inserted) 539448 2 2 2 1 1 1 0 0 0 0 0.051 0.75 -1167 AP2M1 adaptor-related protein complex 2, mu 1 subunit 680901 2 2 2 0 0 0 0 0 2 0 0.051 0.75 -1168 ZEB2 zinc finger E-box binding homeobox 2 1866267 5 5 5 0 2 2 1 0 0 0 0.051 0.75 -1169 PLEKHB2 pleckstrin homology domain containing, family B (evectins) member 2 353379 2 2 2 0 1 0 1 0 0 0 0.051 0.75 -1170 SRD5A1 steroid-5-alpha-reductase, alpha polypeptide 1 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 1) 255021 1 1 1 0 0 0 1 0 0 0 0.051 0.75 -1171 CMIP 442611 2 2 2 0 0 1 0 0 1 0 0.051 0.75 -1172 RHEBL1 Ras homolog enriched in brain like 1 296088 1 1 1 0 0 0 0 0 1 0 0.051 0.75 -1173 RPP38 ribonuclease P/MRP 38kDa subunit 433992 2 2 2 0 0 1 1 0 0 0 0.051 0.75 -1174 MYST1 MYST histone acetyltransferase 1 627666 2 2 2 0 0 1 1 0 0 0 0.051 0.75 -1175 C9orf170 160719 1 1 1 0 0 1 0 0 0 0 0.051 0.75 -1176 BRCC3 BRCA1/BRCA2-containing complex, subunit 3 409656 2 2 2 1 1 1 0 0 0 0 0.051 0.75 -1177 OR6C70 olfactory receptor, family 6, subfamily C, member 70 478101 2 2 2 0 0 1 1 0 0 0 0.051 0.75 -1178 RDH11 retinol dehydrogenase 11 (all-trans/9-cis/11-cis) 459849 2 2 2 0 0 1 0 0 1 0 0.051 0.75 -1179 HLA-DQB1 major histocompatibility complex, class II, DQ beta 1 259077 1 1 1 1 0 0 0 1 0 0 0.051 0.75 -1180 PM20D2 peptidase M20 domain containing 2 441090 2 2 2 0 0 0 1 1 0 0 0.051 0.75 -1181 ANKRD24 ankyrin repeat domain 24 816777 3 3 3 2 1 1 0 0 1 0 0.051 0.75 -1182 B9D2 B9 protein domain 2 273780 1 1 1 0 0 0 1 0 0 0 0.052 0.75 -1183 KIAA2022 KIAA2022 2313441 6 6 6 0 2 2 0 1 1 0 0.052 0.75 -1184 PXMP4 peroxisomal membrane protein 4, 24kDa 310284 2 2 2 0 1 0 0 1 0 0 0.052 0.75 -1185 PI3 peptidase inhibitor 3, skin-derived (SKALP) 183534 1 1 1 0 0 1 0 0 0 0 0.052 0.75 -1186 EDDM3A 227136 1 1 1 0 1 0 0 0 0 0 0.052 0.75 -1187 SP7 Sp7 transcription factor 648453 2 2 2 0 0 1 0 1 0 0 0.052 0.75 -1188 AGT angiotensinogen (serpin peptidase inhibitor, clade A, member 8) 747318 3 3 3 0 0 2 1 0 0 0 0.052 0.75 -1189 MUC21 868491 3 3 3 1 0 2 0 1 0 0 0.052 0.75 -1190 GALNT11 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 11 (GalNAc-T11) 948597 3 3 3 0 2 0 0 1 0 0 0.052 0.75 -1191 PREPL prolyl endopeptidase-like 1135680 3 3 3 0 0 0 1 0 2 0 0.052 0.75 -1192 PPP1R9A protein phosphatase 1, regulatory (inhibitor) subunit 9A 2100501 5 5 5 1 1 1 0 1 2 0 0.052 0.75 -1193 IARS isoleucyl-tRNA synthetase 1987947 5 5 5 1 1 1 2 0 1 0 0.052 0.75 -1194 GPR155 G protein-coupled receptor 155 1355211 4 4 4 0 1 1 1 0 1 0 0.052 0.75 -1195 TTYH2 tweety homolog 2 (Drosophila) 762528 3 3 3 1 0 1 1 1 0 0 0.052 0.75 -1196 C20orf7 chromosome 20 open reading frame 7 444132 2 2 2 0 0 1 1 0 0 0 0.052 0.75 -1197 GAL galanin prepropeptide 155649 1 1 1 0 0 0 0 0 1 0 0.052 0.75 -1198 NT5E 5'-nucleotidase, ecto (CD73) 718926 3 3 3 0 0 0 3 0 0 0 0.052 0.75 -1199 METTL7B methyltransferase like 7B 349323 2 2 2 0 1 1 0 0 0 0 0.052 0.75 -1200 E2F1 E2F transcription factor 1 456807 2 2 2 0 1 0 1 0 0 0 0.052 0.75 -1201 GRK1 G protein-coupled receptor kinase 1 207870 1 1 1 0 0 0 0 0 1 0 0.052 0.75 -1202 SUOX sulfite oxidase 836550 3 3 3 0 1 0 1 0 1 0 0.052 0.75 -1203 ZFHX3 zinc finger homeobox 3 5528835 9 9 9 4 1 2 1 1 4 0 0.052 0.75 -1204 TAS2R43 taste receptor, type 2, member 43 473538 3 2 3 0 0 0 1 1 1 0 0.053 0.75 -1205 COPE coatomer protein complex, subunit epsilon 151593 1 1 1 1 0 0 1 0 0 0 0.053 0.75 -1206 SMARCD3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 652509 2 2 2 0 1 0 0 0 1 0 0.053 0.75 -1207 C12orf71 414726 2 2 2 0 1 0 0 1 0 0 0.053 0.75 -1208 BMP2 bone morphogenetic protein 2 447174 2 2 2 3 1 1 0 0 0 0 0.053 0.75 -1209 SLC26A9 solute carrier family 26, member 9 1360788 5 4 5 0 1 1 2 1 0 0 0.053 0.75 -1210 ALDOB aldolase B, fructose-bisphosphate 571389 2 2 2 0 0 2 0 0 0 0 0.053 0.75 -1211 RAP2A RAP2A, member of RAS oncogene family 263133 1 1 1 0 0 0 0 0 1 0 0.053 0.75 -1212 TNNI3 troponin I type 3 (cardiac) 264147 1 1 1 0 0 0 1 0 0 0 0.053 0.75 -1213 ZNF578 zinc finger protein 578 904995 3 3 3 1 0 2 0 1 0 0 0.053 0.75 -1214 AMZ2 archaelysin family metallopeptidase 2 561249 2 2 2 0 0 0 2 0 0 0 0.053 0.75 -1215 C3orf10 chromosome 3 open reading frame 10 121680 1 1 1 0 1 0 0 0 0 0 0.053 0.75 -1216 CNTNAP5 contactin associated protein-like 5 2033070 5 5 5 1 1 3 1 0 0 0 0.053 0.76 -1217 PCDHA7 protocadherin alpha 7 1248234 4 4 4 1 2 1 1 0 0 0 0.053 0.76 -1218 ZNF215 zinc finger protein 215 798018 2 2 2 0 0 1 0 0 1 0 0.053 0.76 -1219 LAPTM5 lysosomal associated multispanning membrane protein 5 208884 1 1 1 1 0 1 0 0 0 0 0.054 0.76 -1220 COX19 COX19 cytochrome c oxidase assembly homolog (S. cerevisiae) 100893 1 1 1 0 0 1 0 0 0 0 0.054 0.76 -1221 GPI glucose phosphate isomerase 828438 2 2 2 0 0 0 1 0 1 0 0.054 0.76 -1222 ACSS3 acyl-CoA synthetase short-chain family member 3 973947 4 3 4 0 1 1 0 0 2 0 0.054 0.76 -1223 PTPRU protein tyrosine phosphatase, receptor type, U 1978821 5 5 5 0 1 3 0 0 1 0 0.054 0.76 -1224 TCEAL3 transcription elongation factor A (SII)-like 3 307749 1 1 1 0 0 0 0 0 1 0 0.054 0.76 -1225 TPPP2 tubulin polymerization-promoting protein family member 2 266175 1 1 1 0 0 0 1 0 0 0 0.054 0.76 -1226 TRPC7 transient receptor potential cation channel, subfamily C, member 7 1276119 4 4 4 1 2 0 1 0 1 0 0.054 0.76 -1227 SELT 131820 1 1 1 1 1 0 0 0 0 0 0.054 0.76 -1228 DEC1 deleted in esophageal cancer 1 116103 1 1 1 0 0 0 0 0 1 0 0.054 0.76 -1229 GIMAP6 GTPase, IMAP family member 6 449709 2 2 2 0 0 2 0 0 0 0 0.054 0.76 -1230 SIGLEC7 sialic acid binding Ig-like lectin 7 726024 3 3 3 0 0 1 2 0 0 0 0.054 0.76 -1231 SCAP SREBF chaperone 996762 3 3 3 0 1 2 0 0 0 0 0.054 0.76 -1232 CITED1 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1 279864 1 1 1 0 0 0 0 1 0 0 0.054 0.76 -1233 IL17RB interleukin 17 receptor B 754923 3 3 3 0 1 1 1 0 0 0 0.054 0.76 -1234 TSPAN12 tetraspanin 12 479622 2 2 2 0 0 1 0 0 1 0 0.054 0.76 -1235 C5orf36 chromosome 5 open reading frame 36 500409 2 2 2 2 0 0 1 0 1 0 0.054 0.76 -1236 DMRTA1 DMRT-like family A1 457821 2 2 2 0 1 0 1 0 0 0 0.054 0.76 -1237 HCFC1 host cell factor C1 (VP16-accessory protein) 2238912 5 5 5 0 0 4 1 0 0 0 0.054 0.76 -1238 PPIH peptidylprolyl isomerase H (cyclophilin H) 288990 1 1 1 0 0 0 1 0 0 0 0.054 0.76 -1239 NT5C1B 5'-nucleotidase, cytosolic IB 839592 3 3 3 1 1 1 1 0 0 0 0.054 0.76 -1240 CFP complement factor properdin 567333 2 2 2 0 1 1 0 0 0 0 0.054 0.76 -1241 ANO8 1116414 3 3 3 0 0 1 1 0 1 0 0.054 0.76 -1242 KRTAP10-7 keratin associated protein 10-7 555165 2 2 2 0 0 1 0 0 1 0 0.055 0.76 -1243 DIRC2 disrupted in renal carcinoma 2 570882 2 2 2 0 1 0 0 1 0 0 0.055 0.76 -1244 RFPL1 ret finger protein-like 1 486213 2 2 2 0 0 2 0 0 0 0 0.055 0.76 -1245 SERF2 small EDRK-rich factor 2 96837 1 1 1 0 0 0 1 0 0 0 0.055 0.76 -1246 CTDSP1 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 1 376194 2 2 2 0 1 0 1 0 0 0 0.055 0.76 -1247 SLC36A3 solute carrier family 36 (proton/amino acid symporter), member 3 736671 2 2 2 0 1 0 0 0 1 0 0.055 0.76 -1248 PDAP1 PDGFA associated protein 1 280371 1 1 1 0 0 1 0 0 0 0 0.055 0.76 -1249 MLXIP MLX interacting protein 1044420 3 3 3 0 0 0 3 0 0 0 0.055 0.76 -1250 NRXN3 neurexin 3 1825200 5 5 5 2 3 1 0 0 1 0 0.055 0.76 -1251 RPH3A rabphilin 3A homolog (mouse) 1043406 3 3 3 1 0 2 0 1 0 0 0.055 0.76 -1252 ZNF571 zinc finger protein 571 933894 3 3 3 0 0 3 0 0 0 0 0.055 0.76 -1253 OR7A10 olfactory receptor, family 7, subfamily A, member 10 473538 2 2 2 1 0 0 0 0 2 0 0.055 0.76 -1254 SLC6A18 solute carrier family 6, member 18 790920 2 2 2 1 0 1 0 0 1 0 0.055 0.76 -1255 DAB2IP DAB2 interacting protein 1385124 4 4 4 1 2 1 1 0 0 0 0.055 0.76 -1256 DDX49 DEAD (Asp-Glu-Ala-Asp) box polypeptide 49 477594 2 2 2 0 1 1 0 0 0 0 0.055 0.76 -1257 TBL2 transducin (beta)-like 2 608907 2 2 2 0 0 0 1 1 0 0 0.055 0.76 -1258 PGLYRP3 peptidoglycan recognition protein 3 534378 2 2 2 0 0 2 0 0 0 0 0.055 0.76 -1259 DUPD1 dual specificity phosphatase and pro isomerase domain containing 1 314847 1 1 1 0 0 0 0 0 1 0 0.055 0.76 -1260 VPS18 vacuolar protein sorting 18 homolog (S. cerevisiae) 1434810 4 4 4 0 1 1 2 0 0 0 0.055 0.76 -1261 COMMD2 COMM domain containing 2 314340 1 1 1 0 0 0 0 0 1 0 0.056 0.76 -1262 SPRR2F small proline-rich protein 2F 113061 1 1 1 0 0 0 0 0 1 0 0.056 0.76 -1263 VIT vitrin 1136694 3 3 3 1 1 1 0 0 1 0 0.056 0.76 -1264 DPAGT1 dolichyl-phosphate (UDP-N-acetylglucosamine) N-acetylglucosaminephosphotransferase 1 (GlcNAc-1-P transferase) 640341 2 2 2 0 0 1 0 0 1 0 0.056 0.76 -1265 GAA glucosidase, alpha; acid (Pompe disease, glycogen storage disease type II) 527280 2 2 2 0 1 0 1 0 0 0 0.056 0.76 -1266 ULBP3 UL16 binding protein 3 334113 2 2 2 0 0 0 2 0 0 0 0.056 0.76 -1267 PDE6B phosphodiesterase 6B, cGMP-specific, rod, beta (congenital stationary night blindness 3, autosomal dominant) 377715 2 2 2 0 1 1 0 0 0 0 0.056 0.76 -1268 IPCEF1 687999 2 2 2 0 0 0 1 0 1 0 0.056 0.76 -1269 KLHL7 kelch-like 7 (Drosophila) 852267 3 3 3 1 0 1 0 1 1 0 0.056 0.76 -1270 RAB2A RAB2A, member RAS oncogene family 314847 1 1 1 0 0 0 0 0 1 0 0.056 0.76 -1271 CX3CR1 chemokine (C-X3-C motif) receptor 1 594204 2 2 2 0 0 1 1 0 0 0 0.056 0.76 -1272 CCNI2 cyclin I family, member 2 295074 1 1 1 0 0 0 1 0 0 0 0.056 0.76 -1273 ZNF425 zinc finger protein 425 1142271 3 3 3 0 0 2 0 1 0 0 0.056 0.76 -1274 DFFB DNA fragmentation factor, 40kDa, beta polypeptide (caspase-activated DNase) 429429 2 2 2 0 1 1 0 0 0 0 0.056 0.76 -1275 CD52 CD52 molecule 98358 1 1 1 0 1 0 0 0 0 0 0.056 0.76 -1276 MYO10 myosin X 2875704 6 6 6 5 1 1 2 0 2 0 0.056 0.76 -1277 MEGF11 multiple EGF-like-domains 11 900939 3 3 3 1 0 0 2 1 0 0 0.057 0.76 -1278 FGFR4 fibroblast growth factor receptor 4 1279668 3 3 3 1 1 1 0 0 1 0 0.057 0.76 -1279 C17orf71 chromosome 17 open reading frame 71 1516437 4 4 4 0 1 1 0 1 1 0 0.057 0.76 -1280 LYN v-yes-1 Yamaguchi sarcoma viral related oncogene homolog 804609 3 3 3 0 1 2 0 0 0 0 0.057 0.77 -1281 ASB9 ankyrin repeat and SOCS box-containing 9 477594 2 2 2 0 0 1 1 0 0 0 0.057 0.77 -1282 PINK1 PTEN induced putative kinase 1 702702 2 2 2 0 0 0 1 1 0 0 0.057 0.77 -1283 APOB48R 1314651 4 4 4 2 0 3 1 0 0 0 0.057 0.77 -1284 FAM124A family with sequence similarity 124A 752895 3 3 3 0 2 1 0 0 0 0 0.057 0.77 -1285 KLC4 kinesin light chain 4 1022112 3 3 3 0 1 1 0 0 1 0 0.057 0.77 -1286 ITGA11 integrin, alpha 11 1619358 4 4 4 2 1 2 1 0 0 0 0.057 0.77 -1287 ZNF675 zinc finger protein 675 873561 3 3 3 0 0 0 2 0 1 0 0.057 0.77 -1288 CDS1 CDP-diacylglycerol synthase (phosphatidate cytidylyltransferase) 1 667719 2 2 2 0 0 0 1 1 0 0 0.057 0.77 -1289 DPRX divergent-paired related homeobox 298116 2 1 2 0 0 0 0 0 0 2 0.057 0.77 -1290 RNPC3 RNA-binding region (RNP1, RRM) containing 3 69459 1 1 1 0 0 0 1 0 0 0 0.057 0.77 -1291 MDH2 malate dehydrogenase 2, NAD (mitochondrial) 445653 2 2 2 0 1 1 0 0 0 0 0.057 0.77 -1292 SPTBN5 spectrin, beta, non-erythrocytic 5 2240940 5 5 5 0 1 1 1 0 2 0 0.057 0.77 -1293 ZCCHC12 zinc finger, CCHC domain containing 12 614991 2 2 2 0 0 0 0 1 1 0 0.057 0.77 -1294 PKIG protein kinase (cAMP-dependent, catalytic) inhibitor gamma 121173 1 1 1 0 0 1 0 0 0 0 0.057 0.77 -1295 GPRIN3 GPRIN family member 3 1183845 3 3 3 1 0 1 0 0 2 0 0.057 0.77 -1296 PMVK phosphomevalonate kinase 253500 1 1 1 1 0 1 0 0 0 0 0.057 0.77 -1297 SETMAR SET domain and mariner transposase fusion gene 507507 2 2 2 0 1 0 0 1 0 0 0.058 0.77 -1298 BRIX1 451737 2 2 2 1 1 1 0 0 0 0 0.058 0.77 -1299 PDZD7 PDZ domain containing 7 632736 2 2 2 1 0 1 1 0 0 0 0.058 0.77 -1300 DENND1A DENN/MADD domain containing 1A 1126047 3 3 3 1 0 1 0 0 2 0 0.058 0.77 -1301 ASCL3 achaete-scute complex homolog 3 (Drosophila) 278850 1 1 1 1 0 0 0 1 0 0 0.058 0.77 -1302 GPR143 G protein-coupled receptor 143 505479 2 2 2 0 0 2 0 0 0 0 0.058 0.77 -1303 PWP2 PWP2 periodic tryptophan protein homolog (yeast) 1068249 3 3 3 1 1 2 0 0 0 0 0.058 0.77 -1304 PAOX polyamine oxidase (exo-N4-amino) 381264 2 2 2 0 1 0 0 1 0 0 0.058 0.77 -1305 GAD2 glutamate decarboxylase 2 (pancreatic islets and brain, 65kDa) 846183 3 3 3 0 1 1 1 0 0 0 0.058 0.77 -1306 PDILT 912093 3 3 3 0 0 2 0 1 0 0 0.058 0.77 -1307 NLRP2 NLR family, pyrin domain containing 2 1639638 4 4 4 1 0 0 1 1 2 0 0.058 0.77 -1308 HIST1H2AA histone cluster 1, H2aa 202800 1 1 1 0 0 0 1 0 0 0 0.058 0.77 -1309 C2orf28 chromosome 2 open reading frame 28 311805 1 1 1 0 0 0 0 0 1 0 0.058 0.77 -1310 POTEH 322452 1 1 1 1 0 0 0 0 1 0 0.058 0.77 -1311 HIST1H4J histone cluster 1, H4j 122187 1 1 1 0 1 0 0 0 0 0 0.058 0.77 -1312 MCART6 mitochondrial carrier triple repeat 6 470496 2 2 2 0 0 2 0 0 0 0 0.058 0.77 -1313 SEC31A SEC31 homolog A (S. cerevisiae) 1902771 5 5 5 0 0 3 1 0 1 0 0.058 0.77 -1314 PSMD4 proteasome (prosome, macropain) 26S subunit, non-ATPase, 4 580008 2 2 2 0 1 0 0 0 1 0 0.058 0.77 -1315 NAT15 229671 1 1 1 0 0 1 0 0 0 0 0.058 0.77 -1316 CYTH4 548067 2 2 2 0 0 1 0 1 0 0 0.058 0.77 -1317 RTP2 receptor (chemosensory) transporter protein 2 347295 2 2 2 0 1 0 1 0 0 0 0.059 0.77 -1318 RNF14 ring finger protein 14 736671 2 2 2 0 0 0 0 0 2 0 0.059 0.77 -1319 APLNR 581529 2 2 2 0 2 0 0 0 0 0 0.059 0.77 -1320 C1orf58 chromosome 1 open reading frame 58 650988 3 2 3 2 1 0 0 0 0 2 0.059 0.77 -1321 NDUFA13 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 13 79092 1 1 1 0 0 1 0 0 0 0 0.059 0.77 -1322 C2orf76 203307 1 1 1 0 0 0 1 0 0 0 0.059 0.77 -1323 MYEOV2 myeloma overexpressed 2 315861 1 1 1 0 0 0 0 0 1 0 0.059 0.77 -1324 AMELX amelogenin (amelogenesis imperfecta 1, X-linked) 325494 1 1 1 0 0 0 0 0 1 0 0.059 0.77 -1325 KIAA0232 KIAA0232 2139540 5 5 5 1 0 1 3 0 1 0 0.059 0.77 -1326 GFPT2 glutamine-fructose-6-phosphate transaminase 2 964821 3 3 3 1 1 0 2 0 0 0 0.059 0.77 -1327 VGLL4 vestigial like 4 (Drosophila) 325494 1 1 1 0 0 0 0 0 1 0 0.059 0.77 -1328 HDAC1 histone deacetylase 1 709293 2 2 2 1 0 1 0 0 1 0 0.059 0.77 -1329 HRSP12 heat-responsive protein 12 222066 1 1 1 0 0 1 0 0 0 0 0.059 0.77 -1330 MTOR 3987555 8 8 8 1 1 1 3 2 1 0 0.059 0.77 -1331 NCOR2 nuclear receptor co-repressor 2 1320228 3 3 3 2 1 0 1 0 1 0 0.059 0.77 -1332 POM121L12 387855 2 2 2 2 0 1 1 0 0 0 0.059 0.77 -1333 SMAD9 SMAD family member 9 665691 2 2 2 0 0 2 0 0 0 0 0.060 0.77 -1334 CYP11B2 cytochrome P450, family 11, subfamily B, polypeptide 2 782808 3 3 3 1 1 1 1 0 0 0 0.060 0.77 -1335 P2RY4 pyrimidinergic receptor P2Y, G-protein coupled, 4 558714 2 2 2 1 1 1 0 0 0 0 0.060 0.77 -1336 KRT81 keratin 81 334620 1 1 1 2 0 0 0 0 1 0 0.060 0.77 -1337 PLSCR2 phospholipid scramblase 2 354393 2 2 2 0 1 0 0 1 0 0 0.060 0.77 -1338 PKNOX2 PBX/knotted 1 homeobox 2 739713 2 2 2 0 0 1 0 0 1 0 0.060 0.77 -1339 ACPT acid phosphatase, testicular 341718 2 2 2 0 0 1 1 0 0 0 0.060 0.77 -1340 WDR86 WD repeat domain 86 233220 1 1 1 0 1 0 0 0 0 0 0.060 0.77 -1341 GPR1 G protein-coupled receptor 1 543504 2 2 2 0 1 0 0 1 0 0 0.060 0.77 -1342 CYB5R2 cytochrome b5 reductase 2 437034 2 2 2 0 0 1 1 0 0 0 0.060 0.77 -1343 TRO trophinin 2270853 5 5 5 1 1 1 1 0 2 0 0.060 0.77 -1344 ROPN1 ropporin, rhophilin associated protein 1 334113 2 2 2 0 1 1 0 0 0 0 0.060 0.77 -1345 RRAD Ras-related associated with diabetes 300144 1 1 1 0 0 0 0 1 0 0 0.060 0.77 -1346 OR51Q1 olfactory receptor, family 51, subfamily Q, member 1 485706 2 2 2 0 1 0 1 0 0 0 0.060 0.77 -1347 MYL6 myosin, light chain 6, alkali, smooth muscle and non-muscle 260091 1 1 1 0 0 0 1 0 0 0 0.060 0.77 -1348 MLPH melanophilin 660114 2 2 2 0 0 1 0 1 0 0 0.060 0.77 -1349 IL23R interleukin 23 receptor 972426 3 3 3 0 0 1 1 0 1 0 0.060 0.77 -1350 PABPC1 poly(A) binding protein, cytoplasmic 1 897390 3 3 3 1 0 1 1 0 1 0 0.060 0.77 -1351 COLEC12 collectin sub-family member 12 1119456 3 3 3 0 1 0 1 0 1 0 0.060 0.77 -1352 TNFRSF11B tumor necrosis factor receptor superfamily, member 11b (osteoprotegerin) 604344 2 2 2 0 0 0 1 0 1 0 0.060 0.77 -1353 SLC22A14 solute carrier family 22, member 14 901446 3 2 3 0 0 1 0 0 0 2 0.060 0.77 -1354 MRPL43 mitochondrial ribosomal protein L43 329550 1 1 1 0 0 0 0 0 1 0 0.060 0.77 -1355 TBX4 T-box 4 750360 2 2 2 0 1 0 0 0 1 0 0.060 0.77 -1356 SNX20 sorting nexin 20 358449 2 2 2 1 1 0 1 0 0 0 0.061 0.77 -1357 CD1B CD1b molecule 520182 2 2 2 0 1 1 0 0 0 0 0.061 0.77 -1358 UBXN11 688506 2 2 2 0 0 1 1 0 0 0 0.061 0.77 -1359 ARHGEF17 Rho guanine nucleotide exchange factor (GEF) 17 2486328 4 4 3 2 0 1 0 0 3 0 0.061 0.77 -1360 HNRNPA2B1 heterogeneous nuclear ribonucleoprotein A2/B1 560742 2 2 2 0 0 0 1 0 1 0 0.061 0.77 -1361 C6orf62 chromosome 6 open reading frame 62 359970 2 2 2 0 1 0 0 0 1 0 0.061 0.77 -1362 TG thyroglobulin 4275024 9 9 9 1 3 4 1 0 1 0 0.061 0.77 -1363 C17orf77 chromosome 17 open reading frame 77 373152 2 2 2 0 0 2 0 0 0 0 0.061 0.77 -1364 ATG16L2 ATG16 autophagy related 16-like 2 (S. cerevisiae) 652509 2 2 2 0 0 1 1 0 0 0 0.061 0.77 -1365 DGKA diacylglycerol kinase, alpha 80kDa 1166100 3 3 3 0 0 0 1 1 1 0 0.061 0.77 -1366 H2AFZ H2A histone family, member Z 178464 1 1 1 0 0 0 0 1 0 0 0.061 0.77 -1367 DEFB118 defensin, beta 118 192660 1 1 1 0 0 1 0 0 0 0 0.061 0.77 -1368 ABCA13 ATP-binding cassette, sub-family A (ABC1), member 13 7541625 13 13 13 1 3 5 3 0 2 0 0.061 0.77 -1369 PHF15 PHD finger protein 15 1150890 3 3 3 0 0 2 1 0 0 0 0.061 0.77 -1370 SEZ6L2 seizure related 6 homolog (mouse)-like 2 1255332 3 3 3 2 0 1 1 0 1 0 0.061 0.77 -1371 RNF212 ring finger protein 212 334113 1 1 1 0 0 0 0 0 1 0 0.061 0.77 -1372 C19orf51 chromosome 19 open reading frame 51 660621 2 2 1 0 0 0 2 0 0 0 0.061 0.77 -1373 CASP2 caspase 2, apoptosis-related cysteine peptidase (neural precursor cell expressed, developmentally down-regulated 2) 671775 2 2 2 0 0 1 0 1 0 0 0.062 0.77 -1374 RAN RAN, member RAS oncogene family 321945 1 1 1 0 0 0 0 0 1 0 0.062 0.77 -1375 WDR13 WD repeat domain 13 732108 2 2 2 0 0 0 1 0 1 0 0.062 0.77 -1376 SLC35A2 solute carrier family 35 (UDP-galactose transporter), member A2 621075 2 2 2 0 0 1 0 0 1 0 0.062 0.77 -1377 SFRS2 splicing factor, arginine/serine-rich 2 134355 1 1 1 0 0 0 0 1 0 0 0.062 0.77 -1378 TAS2R16 taste receptor, type 2, member 16 446160 2 2 2 1 1 0 0 1 0 0 0.062 0.77 -1379 ZNF41 zinc finger protein 41 1155960 3 3 3 0 0 1 2 0 0 0 0.062 0.77 -1380 C12orf68 219024 1 1 1 0 0 0 0 0 1 0 0.062 0.77 -1381 OBFC2B oligonucleotide/oligosaccharide-binding fold containing 2B 333099 1 1 1 0 0 0 0 0 1 0 0.062 0.77 -1382 CD55 CD55 molecule, decay accelerating factor for complement (Cromer blood group) 578487 2 2 2 0 1 0 0 0 1 0 0.062 0.77 -1383 F12 coagulation factor XII (Hageman factor) 340197 1 1 1 0 0 0 0 1 0 0 0.062 0.77 -1384 RAB24 RAB24, member RAS oncogene family 326508 1 1 1 0 0 0 0 1 0 0 0.062 0.77 -1385 B3GALT4 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 4 578487 2 2 2 0 0 1 1 0 0 0 0.062 0.77 -1386 OR11H6 olfactory receptor, family 11, subfamily H, member 6 505479 2 2 2 0 0 2 0 0 0 0 0.062 0.77 -1387 YY1AP1 YY1 associated protein 1 1187901 3 3 3 1 0 0 2 0 1 0 0.062 0.77 -1388 LEPREL1 leprecan-like 1 863421 3 3 3 0 1 1 1 0 0 0 0.062 0.77 -1389 MEF2C myocyte enhancer factor 2C 712335 2 2 2 0 1 0 0 0 1 0 0.062 0.77 -1390 FAM136A family with sequence similarity 136, member A 171366 1 1 1 0 1 0 0 0 0 0 0.062 0.77 -1391 ALDH3B1 aldehyde dehydrogenase 3 family, member B1 423852 2 2 2 1 0 0 0 2 0 0 0.062 0.77 -1392 PNCK pregnancy upregulated non-ubiquitously expressed CaM kinase 561249 2 2 2 1 0 1 0 0 1 0 0.062 0.77 -1393 ZNF330 zinc finger protein 330 506493 2 2 2 0 1 0 0 1 0 0 0.062 0.77 -1394 ATF3 activating transcription factor 3 315354 1 1 1 1 0 0 0 1 0 0 0.063 0.77 -1395 ANPEP alanyl (membrane) aminopeptidase (aminopeptidase N, aminopeptidase M, microsomal aminopeptidase, CD13, p150) 1512888 3 3 3 0 1 1 0 0 1 0 0.063 0.78 -1396 MTMR12 myotubularin related protein 12 1127061 3 3 3 1 0 0 2 0 1 0 0.063 0.78 -1397 ZNF266 zinc finger protein 266 844662 3 3 3 0 2 1 0 0 0 0 0.063 0.78 -1398 OR1A2 olfactory receptor, family 1, subfamily A, member 2 473538 2 2 2 0 0 0 0 2 0 0 0.063 0.78 -1399 MC3R melanocortin 3 receptor 494832 2 2 2 0 0 2 0 0 0 0 0.063 0.78 -1400 RDH5 retinol dehydrogenase 5 (11-cis/9-cis) 493311 2 2 2 1 0 1 0 0 1 0 0.063 0.78 -1401 RPS14 ribosomal protein S14 239304 1 1 1 0 0 0 1 0 0 0 0.063 0.78 -1402 ZNF511 zinc finger protein 511 216996 1 1 1 0 1 0 0 0 0 0 0.063 0.78 -1403 KLHL38 891306 3 3 3 2 1 0 2 0 0 0 0.063 0.78 -1404 TMEM167B 106977 1 1 1 0 0 0 1 0 0 0 0.063 0.78 -1405 NOL6 nucleolar protein family 6 (RNA-associated) 1717716 4 4 4 1 1 2 0 0 1 0 0.063 0.78 -1406 ACYP1 acylphosphatase 1, erythrocyte (common) type 198237 1 1 1 0 0 1 0 0 0 0 0.063 0.78 -1407 SLC23A3 solute carrier family 23 (nucleobase transporters), member 3 835029 3 3 3 0 1 1 1 0 0 0 0.063 0.78 -1408 MYH6 myosin, heavy chain 6, cardiac muscle, alpha (cardiomyopathy, hypertrophic 1) 3012087 7 7 7 2 0 4 2 1 0 0 0.064 0.78 -1409 TIMM17A translocase of inner mitochondrial membrane 17 homolog A (yeast) 273780 1 1 1 0 0 0 1 0 0 0 0.064 0.78 -1410 KRT19 keratin 19 471510 2 2 2 0 0 1 0 0 1 0 0.064 0.78 -1411 TLL2 tolloid-like 2 1515423 4 4 4 0 1 1 1 1 0 0 0.064 0.78 -1412 GPR26 G protein-coupled receptor 26 342225 1 1 1 0 0 0 0 0 1 0 0.064 0.78 -1413 NEK3 NIMA (never in mitosis gene a)-related kinase 3 747825 2 2 2 0 1 0 0 0 1 0 0.064 0.78 -1414 ELF1 E74-like factor 1 (ets domain transcription factor) 959244 4 3 4 0 0 0 2 0 2 0 0.064 0.78 -1415 ZIC2 Zic family member 2 (odd-paired homolog, Drosophila) 312312 1 1 1 0 0 0 0 0 1 0 0.064 0.78 -1416 PDCD6IP programmed cell death 6 interacting protein 1257867 3 3 3 0 0 1 0 1 1 0 0.064 0.78 -1417 PCDHB5 protocadherin beta 5 1209195 3 3 3 3 0 1 1 0 1 0 0.064 0.78 -1418 MOS v-mos Moloney murine sarcoma viral oncogene homolog 498381 2 2 2 0 0 0 1 0 1 0 0.064 0.78 -1419 OR2F1 olfactory receptor, family 2, subfamily F, member 1 485706 2 2 2 1 0 1 0 0 1 0 0.064 0.78 -1420 ETNK2 ethanolamine kinase 2 299130 1 1 1 0 0 0 1 0 0 0 0.064 0.78 -1421 KLHL24 kelch-like 24 (Drosophila) 926289 3 3 3 0 0 0 2 1 0 0 0.064 0.78 -1422 KLF17 Kruppel-like factor 17 556179 2 2 2 0 0 1 0 0 1 0 0.064 0.78 -1423 TAF1L TAF1 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 210kDa-like 2780895 6 6 6 1 1 1 2 0 2 0 0.064 0.78 -1424 NCAM1 neural cell adhesion molecule 1 1353183 4 4 4 0 2 1 1 0 0 0 0.065 0.78 -1425 CEACAM21 carcinoembryonic antigen-related cell adhesion molecule 21 459342 2 2 2 0 0 1 0 0 1 0 0.065 0.78 -1426 SGSM1 small G protein signaling modulator 1 1534182 4 4 4 0 1 2 1 0 0 0 0.065 0.78 -1427 WDR49 WD repeat domain 49 1090050 3 3 3 0 0 0 2 0 1 0 0.065 0.78 -1428 OR13C8 olfactory receptor, family 13, subfamily C, member 8 490269 2 2 2 0 0 1 1 0 0 0 0.065 0.78 -1429 RPH3AL rabphilin 3A-like (without C2 domains) 221559 1 1 1 0 0 0 0 0 1 0 0.065 0.78 -1430 MYH7 myosin, heavy chain 7, cardiac muscle, beta 3021720 6 6 6 1 0 2 0 1 3 0 0.065 0.78 -1431 CD302 CD302 molecule 330564 1 1 1 0 0 0 0 0 1 0 0.065 0.78 -1432 F2R coagulation factor II (thrombin) receptor 605358 2 2 2 0 0 1 0 1 0 0 0.065 0.78 -1433 NBEAL1 neurobeachin-like 1 2222688 5 5 5 0 0 2 2 1 0 0 0.065 0.78 -1434 BCAR3 breast cancer anti-estrogen resistance 3 1232517 3 3 3 0 0 1 1 1 0 0 0.065 0.78 -1435 MLXIPL MLX interacting protein-like 394446 2 2 2 0 1 0 1 0 0 0 0.065 0.78 -1436 RERGL RERG/RAS-like 323466 1 1 1 0 0 0 0 1 0 0 0.065 0.78 -1437 SERINC1 serine incorporator 1 707265 2 2 2 0 0 0 1 0 1 0 0.065 0.78 -1438 TNFRSF11A tumor necrosis factor receptor superfamily, member 11a, NFKB activator 697632 2 2 2 0 1 1 0 0 0 0 0.065 0.78 -1439 PARP15 poly (ADP-ribose) polymerase family, member 15 693069 2 2 2 0 0 2 0 0 0 0 0.065 0.78 -1440 PPP2CB protein phosphatase 2 (formerly 2A), catalytic subunit, beta isoform 392925 2 2 2 0 0 1 1 0 0 0 0.065 0.78 -1441 SLC35A4 solute carrier family 35, member A4 496353 2 2 2 0 0 1 1 0 0 0 0.065 0.78 -1442 FSD2 fibronectin type III and SPRY domain containing 2 1131624 3 3 3 0 0 1 1 0 1 0 0.065 0.78 -1443 ATP10A ATPase, class V, type 10A 1973751 5 5 5 0 1 3 0 0 1 0 0.066 0.78 -1444 NRK Nik related kinase 2370732 5 5 5 0 1 1 0 0 3 0 0.066 0.78 -1445 OR10J5 olfactory receptor, family 10, subfamily J, member 5 473538 2 2 2 0 0 2 0 0 0 0 0.066 0.78 -1446 ECHDC2 enoyl Coenzyme A hydratase domain containing 2 353379 1 1 1 0 0 0 0 0 1 0 0.066 0.78 -1447 SH3GL2 SH3-domain GRB2-like 2 530322 2 2 2 0 2 0 0 0 0 0 0.066 0.78 -1448 CXorf40A chromosome X open reading frame 40A 245895 1 1 1 0 0 0 1 0 0 0 0.066 0.78 -1449 WDR17 WD repeat domain 17 2073123 5 5 5 0 1 1 3 0 0 0 0.066 0.78 -1450 DPPA3 developmental pluripotency associated 3 251472 1 1 1 0 0 1 0 0 0 0 0.066 0.78 -1451 CDKL1 cyclin-dependent kinase-like 1 (CDC2-related kinase) 564291 2 2 2 0 0 1 0 0 1 0 0.066 0.78 -1452 EED embryonic ectoderm development 640341 2 2 2 1 0 0 2 0 0 0 0.066 0.78 -1453 LTBP4 latent transforming growth factor beta binding protein 4 1680705 4 4 4 0 0 3 0 0 1 0 0.066 0.78 -1454 PSIP1 PC4 and SFRS1 interacting protein 1 852774 2 2 2 1 1 0 0 0 1 0 0.066 0.78 -1455 SMYD1 SET and MYND domain containing 1 737178 2 2 2 2 0 0 1 0 1 0 0.066 0.78 -1456 APOBEC2 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 2 346281 1 1 1 1 0 0 0 0 1 0 0.066 0.78 -1457 GPKOW G patch domain and KOW motifs 738192 2 2 2 0 0 1 1 0 0 0 0.066 0.78 -1458 PYGB phosphorylase, glycogen; brain 1154946 3 3 3 1 1 1 0 0 1 0 0.066 0.78 -1459 C1QTNF7 C1q and tumor necrosis factor related protein 7 449202 2 2 2 0 0 1 0 1 0 0 0.066 0.78 -1460 GNE glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase 1171170 3 3 3 0 1 1 1 0 0 0 0.066 0.78 -1461 CCDC53 coiled-coil domain containing 53 242853 1 1 1 0 0 0 0 0 1 0 0.066 0.79 -1462 ELOVL6 ELOVL family member 6, elongation of long chain fatty acids (FEN1/Elo2, SUR4/Elo3-like, yeast) 412698 2 2 2 0 0 1 0 1 0 0 0.067 0.79 -1463 AGGF1 angiogenic factor with G patch and FHA domains 1 1058616 3 3 3 0 1 2 0 0 0 0 0.067 0.79 -1464 OR6C6 olfactory receptor, family 6, subfamily C, member 6 481143 2 2 2 0 1 1 0 0 0 0 0.067 0.79 -1465 C2orf51 chromosome 2 open reading frame 51 281385 1 1 1 0 0 0 0 0 1 0 0.067 0.79 -1466 TRAPPC10 1778556 4 4 4 0 1 1 0 0 2 0 0.067 0.79 -1467 WHSC1 Wolf-Hirschhorn syndrome candidate 1 1864239 4 4 4 0 1 1 1 0 1 0 0.067 0.79 -1468 C9orf43 chromosome 9 open reading frame 43 729066 2 2 2 1 0 0 1 1 0 0 0.067 0.79 -1469 SH3BP1 SH3-domain binding protein 1 523731 2 2 2 0 1 0 1 0 0 0 0.067 0.79 -1470 RPL3L ribosomal protein L3-like 268203 1 1 1 0 1 0 0 0 0 0 0.067 0.79 -1471 ISLR immunoglobulin superfamily containing leucine-rich repeat 654537 2 2 2 0 0 1 1 0 0 0 0.067 0.79 -1472 DSE dermatan sulfate epimerase 1361295 4 4 4 1 1 2 1 0 0 0 0.067 0.79 -1473 CCDC9 coiled-coil domain containing 9 575445 2 2 2 0 1 1 0 0 0 0 0.067 0.79 -1474 ZBTB17 zinc finger and BTB domain containing 17 745290 2 2 2 0 0 0 1 0 1 0 0.067 0.79 -1475 RNF182 ring finger protein 182 379236 2 2 2 0 1 0 0 1 0 0 0.067 0.79 -1476 TBKBP1 TBK1 binding protein 1 545532 2 2 2 0 1 0 0 0 1 0 0.067 0.79 -1477 HIST1H2AG histone cluster 1, H2ag 201279 1 1 1 1 0 0 1 0 0 0 0.067 0.79 -1478 NEUROG3 neurogenin 3 325494 1 1 1 0 0 0 1 0 0 0 0.067 0.79 -1479 CDH6 cadherin 6, type 2, K-cadherin (fetal kidney) 1225419 3 3 3 1 0 0 1 1 1 0 0.067 0.79 -1480 FCER1A Fc fragment of IgE, high affinity I, receptor for; alpha polypeptide 402558 2 2 2 0 1 1 0 0 0 0 0.067 0.79 -1481 AQP2 aquaporin 2 (collecting duct) 344760 1 1 1 0 0 0 1 0 0 0 0.068 0.79 -1482 TXNL4A thioredoxin-like 4A 143988 1 1 1 0 0 0 0 0 1 0 0.068 0.79 -1483 INPP5B inositol polyphosphate-5-phosphatase, 75kDa 1436838 4 4 4 1 1 1 1 1 0 0 0.068 0.79 -1484 ZC3H15 zinc finger CCCH-type containing 15 629694 2 2 2 0 1 0 0 0 1 0 0.068 0.79 -1485 N4BP2 NEDD4 binding protein 2 2726139 6 6 6 0 0 4 2 0 0 0 0.068 0.79 -1486 BMPR1B bone morphogenetic protein receptor, type IB 762528 2 2 2 1 0 1 0 0 1 0 0.068 0.79 -1487 ZSCAN21 zinc finger and SCAN domain containing 21 727038 2 2 2 0 0 1 0 0 1 0 0.068 0.79 -1488 LRP3 low density lipoprotein receptor-related protein 3 361491 1 1 1 0 0 0 0 0 1 0 0.068 0.79 -1489 ADH7 alcohol dehydrogenase 7 (class IV), mu or sigma polypeptide 606879 2 2 2 0 0 2 0 0 0 0 0.068 0.79 -1490 C9orf96 chromosome 9 open reading frame 96 539955 2 2 2 0 0 1 1 0 0 0 0.068 0.79 -1491 TAF3 TAF3 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 140kDa 1238601 3 3 3 1 0 0 1 0 2 0 0.068 0.79 -1492 SFPQ splicing factor proline/glutamine-rich (polypyrimidine tract binding protein associated) 675324 2 2 2 0 0 0 1 0 1 0 0.068 0.79 -1493 SUPT5H suppressor of Ty 5 homolog (S. cerevisiae) 1673607 4 4 4 0 2 2 0 0 0 0 0.068 0.79 -1494 HIST1H2BA histone cluster 1, H2ba 196716 1 1 1 0 0 0 0 0 1 0 0.069 0.79 -1495 RAB6A RAB6A, member RAS oncogene family 356421 1 1 1 0 0 0 0 0 1 0 0.069 0.79 -1496 TMEM38A transmembrane protein 38A 403572 2 2 2 0 0 1 0 0 1 0 0.069 0.79 -1497 RAD51AP1 RAD51 associated protein 1 557193 2 2 2 0 0 1 1 0 0 0 0.069 0.79 -1498 RNF180 ring finger protein 180 609921 2 2 2 0 2 0 0 0 0 0 0.069 0.79 -1499 ABR active BCR-related gene 825903 3 3 3 2 1 2 0 0 0 0 0.069 0.79 -1500 LAMB4 laminin, beta 4 2728167 6 6 6 0 0 4 1 0 1 0 0.069 0.79 -1501 TMEM52 transmembrane protein 52 133848 1 1 1 0 0 0 0 1 0 0 0.069 0.79 -1502 OR5H2 olfactory receptor, family 5, subfamily H, member 2 481143 2 2 2 0 0 0 2 0 0 0 0.069 0.79 -1503 SPANXN5 SPANX family, member N5 115089 1 1 1 0 0 0 1 0 0 0 0.069 0.79 -1504 TRIM63 tripartite motif-containing 63 556686 2 2 2 0 1 0 0 1 0 0 0.069 0.79 -1505 PIGR polymeric immunoglobulin receptor 1160016 3 3 3 0 0 2 1 0 0 0 0.069 0.79 -1506 SPACA1 sperm acrosome associated 1 355407 1 1 1 0 0 0 0 0 1 0 0.069 0.79 -1507 MYL7 myosin, light chain 7, regulatory 258063 1 1 1 0 0 1 0 0 0 0 0.069 0.79 -1508 CPNE1 copine I 858351 2 2 2 0 0 1 0 0 1 0 0.069 0.79 -1509 TIMM22 translocase of inner mitochondrial membrane 22 homolog (yeast) 182013 1 1 1 1 1 0 0 0 0 0 0.070 0.79 -1510 PVRIG poliovirus receptor related immunoglobulin domain containing 406614 2 2 2 0 1 1 0 0 0 0 0.070 0.79 -1511 COL1A1 collagen, type I, alpha 1 2101008 6 4 6 1 4 0 1 0 1 0 0.070 0.79 -1512 RABGEF1 RAB guanine nucleotide exchange factor (GEF) 1 764556 2 2 2 0 0 0 0 1 1 0 0.070 0.79 -1513 KRAS v-Ki-ras2 Kirsten rat sarcoma viral oncogene homolog 358449 1 1 1 0 0 0 0 0 1 0 0.070 0.79 -1514 ATG4A ATG4 autophagy related 4 homolog A (S. cerevisiae) 633243 2 2 2 0 0 0 1 0 1 0 0.070 0.79 -1515 C7orf53 chromosome 7 open reading frame 53 206856 1 1 1 0 0 1 0 0 0 0 0.070 0.79 -1516 HRASLS HRAS-like suppressor 263133 1 1 1 1 0 1 0 0 0 0 0.070 0.79 -1517 UBE2CBP ubiquitin-conjugating enzyme E2C binding protein 572403 2 2 2 0 1 1 0 0 0 0 0.070 0.79 -1518 ARHGAP15 Rho GTPase activating protein 15 750360 2 2 2 1 0 0 2 0 0 0 0.070 0.79 -1519 RFXANK regulatory factor X-associated ankyrin-containing protein 367068 1 1 1 0 0 0 0 0 1 0 0.070 0.79 -1520 C4orf31 chromosome 4 open reading frame 31 871533 3 3 3 0 2 0 1 0 0 0 0.070 0.79 -1521 CNTN2 contactin 2 (axonal) 1627977 4 4 4 1 0 0 3 0 1 0 0.070 0.79 -1522 HIST2H2BF histone cluster 2, H2bf 195195 1 1 1 0 0 1 0 0 0 0 0.070 0.79 -1523 FAM166B 330564 1 1 1 0 0 0 0 0 1 0 0.070 0.79 -1524 MOAP1 modulator of apoptosis 1 537420 2 2 2 0 0 1 0 0 1 0 0.070 0.79 -1525 RCN1 reticulocalbin 1, EF-hand calcium binding domain 386334 2 2 2 0 1 1 0 0 0 0 0.070 0.79 -1526 HLA-E major histocompatibility complex, class I, E 559728 2 2 2 0 1 0 0 0 1 0 0.070 0.79 -1527 MAGEC3 melanoma antigen family C, 3 1164579 3 3 3 3 0 1 1 1 0 0 0.070 0.79 -1528 HGF hepatocyte growth factor (hepapoietin A; scatter factor) 1108809 3 3 3 0 1 0 2 0 0 0 0.070 0.79 -1529 SCML1 sex comb on midleg-like 1 (Drosophila) 517647 2 2 2 0 1 0 0 0 1 0 0.070 0.79 -1530 FBL fibrillarin 508014 2 2 2 0 0 1 1 0 0 0 0.070 0.79 -1531 C5orf51 408135 2 2 2 0 0 1 0 0 1 0 0.070 0.79 -1532 GBE1 glucan (1,4-alpha-), branching enzyme 1 (glycogen branching enzyme, Andersen disease, glycogen storage disease type IV) 1026675 3 3 3 0 1 0 2 0 0 0 0.071 0.80 -1533 C10orf25 chromosome 10 open reading frame 25 135369 1 1 1 0 0 0 0 0 1 0 0.071 0.80 -1534 C8orf40 chromosome 8 open reading frame 40 170352 1 1 1 0 0 1 0 0 0 0 0.071 0.80 -1535 MAPK8 mitogen-activated protein kinase 8 714363 2 2 2 0 0 1 0 0 1 0 0.071 0.80 -1536 S100A10 S100 calcium binding protein A10 153114 1 1 1 0 0 0 1 0 0 0 0.071 0.80 -1537 FFAR1 free fatty acid receptor 1 167310 1 1 1 1 0 1 0 0 0 0 0.071 0.80 -1538 KDM2A 1809483 3 3 3 0 0 1 0 0 2 0 0.071 0.80 -1539 FLNC filamin C, gamma (actin binding protein 280) 3708705 8 8 8 4 1 4 2 0 1 0 0.071 0.80 -1540 C20orf43 chromosome 20 open reading frame 43 393432 2 2 2 0 0 1 1 0 0 0 0.071 0.80 -1541 SLC9A4 solute carrier family 9 (sodium/hydrogen exchanger), member 4 1239615 3 3 3 0 1 1 0 0 1 0 0.071 0.80 -1542 MYBPHL myosin binding protein H-like 556179 2 2 2 0 0 1 0 0 1 0 0.071 0.80 -1543 OR4C16 olfactory receptor, family 4, subfamily C, member 16 475059 2 2 2 0 1 1 0 0 0 0 0.071 0.80 -1544 C8orf79 chromosome 8 open reading frame 79 678873 2 2 2 0 0 1 1 0 0 0 0.071 0.80 -1545 OPRK1 opioid receptor, kappa 1 502944 2 2 2 0 1 1 0 0 0 0 0.071 0.80 -1546 NFYB nuclear transcription factor Y, beta 330564 1 1 1 1 0 0 0 0 1 0 0.071 0.80 -1547 ENDOU 545532 2 2 2 0 1 1 0 0 0 0 0.071 0.80 -1548 HCFC2 host cell factor C2 1151904 3 3 3 0 0 1 0 1 1 0 0.071 0.80 -1549 C17orf64 chromosome 17 open reading frame 64 186576 1 1 1 0 0 1 0 0 0 0 0.072 0.80 -1550 SLC35F2 solute carrier family 35, member F2 528801 2 2 2 0 1 0 0 0 1 0 0.072 0.80 -1551 HIST1H2AK histone cluster 1, H2ak 201279 1 1 1 1 0 1 0 0 0 0 0.072 0.80 -1552 DET1 de-etiolated homolog 1 (Arabidopsis) 864942 2 2 2 0 0 0 0 1 1 0 0.072 0.80 -1553 MRAP melanocortin 2 receptor accessory protein 322959 1 1 1 0 0 0 0 1 0 0 0.072 0.80 -1554 CCNA2 cyclin A2 564798 2 2 2 0 0 1 1 0 0 0 0.072 0.80 -1555 NME7 non-metastatic cells 7, protein expressed in (nucleoside-diphosphate kinase) 597753 2 2 2 0 0 0 2 0 0 0 0.072 0.80 -1556 MTHFD1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase 1478412 4 4 4 0 1 1 1 0 1 0 0.072 0.80 -1557 CYB5R1 cytochrome b5 reductase 1 474045 2 2 2 0 0 1 1 0 0 0 0.072 0.80 -1558 MAGEE2 melanoma antigen family E, 2 799032 2 2 2 0 0 1 0 1 0 0 0.072 0.80 -1559 HPDL 4-hydroxyphenylpyruvate dioxygenase-like 444639 2 2 2 1 1 0 1 0 0 0 0.072 0.80 -1560 GPR97 G protein-coupled receptor 97 717405 2 2 2 0 0 1 0 0 1 0 0.072 0.80 -1561 LYZL4 lysozyme-like 4 194181 1 1 1 0 0 0 1 0 0 0 0.072 0.80 -1562 SORBS3 sorbin and SH3 domain containing 3 652509 2 2 2 0 1 0 0 0 1 0 0.072 0.80 -1563 SLC45A2 solute carrier family 45, member 2 829452 3 3 3 0 0 1 2 0 0 0 0.072 0.80 -1564 HSD3B2 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 2 573417 2 2 2 0 1 0 0 1 0 0 0.072 0.80 -1565 PGC progastricsin (pepsinogen C) 609921 2 2 2 0 1 1 0 0 0 0 0.072 0.80 -1566 C17orf104 903981 2 2 2 0 0 0 0 1 1 0 0.073 0.80 -1567 TMEM90A transmembrane protein 90A 369096 1 1 1 0 0 0 0 0 1 0 0.073 0.80 -1568 MRPL2 mitochondrial ribosomal protein L2 428922 2 2 2 0 0 2 0 0 0 0 0.073 0.80 -1569 KCNMB2 potassium large conductance calcium-activated channel, subfamily M, beta member 2 367068 1 1 1 0 0 0 0 0 1 0 0.073 0.80 -1570 PRR11 proline rich 11 567333 2 2 2 0 1 0 1 0 0 0 0.073 0.80 -1571 NUDT22 nudix (nucleoside diphosphate linked moiety X)-type motif 22 360984 1 1 1 0 0 0 1 0 0 0 0.073 0.80 -1572 C2orf50 chromosome 2 open reading frame 50 155649 1 1 1 0 0 0 0 1 0 0 0.073 0.80 -1573 OR10V1 olfactory receptor, family 10, subfamily V, member 1 473538 2 2 2 1 0 1 1 0 0 0 0.073 0.80 -1574 ODF2 outer dense fiber of sperm tails 2 1346085 4 4 4 2 0 2 2 0 0 0 0.073 0.80 -1575 KIF4A kinesin family member 4A 1936233 5 5 5 2 1 3 1 0 0 0 0.073 0.80 -1576 C5orf20 chromosome 5 open reading frame 20 374673 1 1 1 0 0 0 0 0 1 0 0.073 0.80 -1577 CA6 carbonic anhydrase VI 486213 2 2 2 0 1 1 0 0 0 0 0.073 0.80 -1578 PDE4C phosphodiesterase 4C, cAMP-specific (phosphodiesterase E1 dunce homolog, Drosophila) 882687 3 3 3 1 0 2 1 0 0 0 0.073 0.80 -1579 TTC7B tetratricopeptide repeat domain 7B 1238601 4 3 4 1 0 2 2 0 0 0 0.073 0.80 -1580 GABRG2 gamma-aminobutyric acid (GABA) A receptor, gamma 2 744276 2 2 2 0 0 2 0 0 0 0 0.073 0.80 -1581 SULT1E1 sulfotransferase family 1E, estrogen-preferring, member 1 462891 2 2 2 1 0 2 0 0 0 0 0.073 0.80 -1582 HOXA7 homeobox A7 303693 1 1 1 0 0 0 1 0 0 0 0.073 0.80 -1583 AMPD1 adenosine monophosphate deaminase 1 (isoform M) 1220349 3 3 3 1 0 0 1 1 1 0 0.073 0.80 -1584 PHF8 PHD finger protein 8 1636596 3 3 3 1 0 1 1 0 1 0 0.073 0.80 -1585 C19orf62 chromosome 19 open reading frame 62 436527 2 2 2 0 2 0 0 0 0 0 0.073 0.80 -1586 OR52N2 olfactory receptor, family 52, subfamily N, member 2 491790 2 2 2 1 0 0 1 0 1 0 0.073 0.80 -1587 TSGA13 testis specific, 13 433992 2 2 2 0 0 1 1 0 0 0 0.073 0.80 -1588 TRPC4AP transient receptor potential cation channel, subfamily C, member 4 associated protein 1160016 3 3 3 2 1 0 1 0 1 0 0.073 0.80 -1589 ANK1 ankyrin 1, erythrocytic 2914743 6 6 6 4 2 3 0 0 1 0 0.074 0.80 -1590 MAPRE3 microtubule-associated protein, RP/EB family, member 3 441090 2 2 2 0 0 0 1 0 1 0 0.074 0.80 -1591 PMS1 PMS1 postmeiotic segregation increased 1 (S. cerevisiae) 1443429 4 4 4 0 0 1 2 1 0 0 0.074 0.80 -1592 AWAT1 514605 2 2 2 1 1 1 0 0 0 0 0.074 0.80 -1593 ZFR zinc finger RNA binding protein 1602120 4 4 4 1 1 0 0 2 1 0 0.074 0.80 -1594 MAS1 MAS1 oncogene 497874 2 2 2 0 0 0 1 1 0 0 0.074 0.80 -1595 KLK7 kallikrein-related peptidase 7 145509 1 1 1 0 1 0 0 0 0 0 0.074 0.80 -1596 NXF5 nuclear RNA export factor 5 574938 2 2 2 1 0 0 1 0 1 0 0.074 0.80 -1597 SLC9A3 solute carrier family 9 (sodium/hydrogen exchanger), member 3 377715 1 1 1 1 0 0 0 0 1 0 0.074 0.80 -1598 PRDX1 peroxiredoxin 1 314340 1 1 1 0 0 0 0 0 1 0 0.074 0.80 -1599 RNASEN ribonuclease type III, nuclear 2095431 5 5 5 0 0 0 2 3 0 0 0.074 0.80 -1600 ASH2L ash2 (absent, small, or homeotic)-like (Drosophila) 842127 3 3 3 1 2 1 0 0 0 0 0.074 0.80 -1601 MPZL1 myelin protein zero-like 1 374673 1 1 1 0 0 0 0 0 1 0 0.074 0.80 -1602 PCDHA10 protocadherin alpha 10 845169 3 3 3 1 0 2 0 1 0 0 0.074 0.80 -1603 CTPS2 CTP synthase II 927303 2 2 2 0 0 1 0 0 1 0 0.074 0.80 -1604 FAM113B family with sequence similarity 113, member B 604851 2 2 2 0 0 2 0 0 0 0 0.074 0.80 -1605 MRPS31 mitochondrial ribosomal protein S31 616512 2 2 2 0 0 1 1 0 0 0 0.074 0.80 -1606 C7orf16 chromosome 7 open reading frame 16 245388 1 1 1 0 0 0 0 1 0 0 0.074 0.80 -1607 OPRD1 opioid receptor, delta 1 306228 1 1 1 0 0 1 0 0 0 0 0.074 0.80 -1608 C6orf225 127257 1 1 1 0 1 0 0 0 0 0 0.074 0.80 -1609 NTSR2 neurotensin receptor 2 314847 1 1 1 1 0 1 0 0 0 0 0.074 0.80 -1610 TRIM65 tripartite motif-containing 65 397488 2 2 2 0 1 0 1 0 0 0 0.075 0.80 -1611 PGA5 pepsinogen 5, group I (pepsinogen A) 287976 1 1 1 0 0 0 1 0 0 0 0.075 0.80 -1612 SLCO2A1 solute carrier organic anion transporter family, member 2A1 957216 3 3 3 1 1 0 2 0 0 0 0.075 0.80 -1613 DEFB113 defensin, beta 113 130299 1 1 1 0 0 0 1 0 0 0 0.075 0.80 -1614 CD74 CD74 molecule, major histocompatibility complex, class II invariant chain 381264 1 1 1 0 0 0 0 0 1 0 0.075 0.80 -1615 FLT3LG fms-related tyrosine kinase 3 ligand 206856 1 1 1 0 0 0 0 0 1 0 0.075 0.80 -1616 LELP1 late cornified envelope-like proline-rich 1 152607 1 1 1 0 0 1 0 0 0 0 0.075 0.80 -1617 FAM71B family with sequence similarity 71, member B 925782 3 3 3 0 0 1 2 0 0 0 0.075 0.80 -1618 PPP4R2 protein phosphatase 4, regulatory subunit 2 634764 2 2 2 0 0 0 2 0 0 0 0.075 0.80 -1619 C15orf58 589134 2 2 2 0 1 1 0 0 0 0 0.075 0.80 -1620 GALNTL6 939978 2 2 2 1 0 0 0 0 2 0 0.075 0.80 -1621 PEX11B peroxisomal biogenesis factor 11B 373152 1 1 1 0 0 0 1 0 0 0 0.075 0.80 -1622 LCE1E late cornified envelope 1E 183027 1 1 1 0 0 0 0 1 0 0 0.075 0.80 -1623 C6orf105 chromosome 6 open reading frame 105 363519 1 1 1 0 0 0 0 0 1 0 0.075 0.80 -1624 OR6A2 olfactory receptor, family 6, subfamily A, member 2 500916 2 2 2 0 0 1 1 0 0 0 0.075 0.80 -1625 OR4M1 olfactory receptor, family 4, subfamily M, member 1 479622 2 2 2 0 0 1 0 1 0 0 0.075 0.80 -1626 GNPTAB N-acetylglucosamine-1-phosphate transferase, alpha and beta subunits 1893138 4 4 4 0 1 0 1 1 1 0 0.075 0.80 -1627 EXT1 exostoses (multiple) 1 1158495 3 3 3 0 0 0 1 0 2 0 0.075 0.80 -1628 FHL1 four and a half LIM domains 1 567333 2 2 2 0 1 0 0 0 1 0 0.075 0.80 -1629 LRIT2 leucine-rich repeat, immunoglobulin-like and transmembrane domains 2 844155 3 3 3 0 1 2 0 0 0 0 0.075 0.80 -1630 IFT140 intraflagellar transport 140 homolog (Chlamydomonas) 1522014 3 3 3 0 0 2 0 0 1 0 0.075 0.80 -1631 CHCHD6 coiled-coil-helix-coiled-coil-helix domain containing 6 215982 1 1 1 0 0 1 0 0 0 0 0.075 0.80 -1632 CHST3 carbohydrate (chondroitin 6) sulfotransferase 3 194181 1 1 1 1 0 0 0 0 1 0 0.076 0.80 -1633 UQCRC1 ubiquinol-cytochrome c reductase core protein I 690027 2 2 2 0 0 0 0 1 1 0 0.076 0.80 -1634 FTL ferritin, light polypeptide 275808 1 1 1 0 0 1 0 0 0 0 0.076 0.80 -1635 STAU2 staufen, RNA binding protein, homolog 2 (Drosophila) 750360 2 2 2 0 0 1 0 0 1 0 0.076 0.80 -1636 COL14A1 collagen, type XIV, alpha 1 2828553 6 6 6 2 2 1 2 1 0 0 0.076 0.80 -1637 SNTG2 syntrophin, gamma 2 619047 2 2 2 2 1 0 0 1 0 0 0.076 0.80 -1638 MFSD11 major facilitator superfamily domain containing 11 710814 2 2 2 1 0 0 1 0 1 0 0.076 0.80 -1639 NLRP5 NLR family, pyrin domain containing 5 1662453 4 4 4 2 1 3 0 0 0 0 0.076 0.80 -1640 CLEC6A C-type lectin domain family 6, member A 331578 1 1 1 0 0 0 0 0 1 0 0.076 0.80 -1641 EIF4A2 eukaryotic translation initiation factor 4A, isoform 2 642876 3 2 3 0 0 0 0 2 1 0 0.076 0.80 -1642 TMEM110 transmembrane protein 110 381771 1 1 1 0 0 0 0 0 1 0 0.076 0.80 -1643 B4GALT6 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 6 280371 1 1 1 1 0 0 1 0 0 0 0.076 0.80 -1644 CAMKK2 calcium/calmodulin-dependent protein kinase kinase 2, beta 724503 2 2 2 0 1 1 0 0 0 0 0.076 0.80 -1645 ANKS4B ankyrin repeat and sterile alpha motif domain containing 4B 639834 2 2 2 0 0 1 0 0 1 0 0.076 0.80 -1646 KCNQ3 potassium voltage-gated channel, KQT-like subfamily, member 3 1150890 3 3 3 1 1 0 2 0 0 0 0.076 0.80 -1647 TCF4 transcription factor 4 1058616 3 3 3 2 0 2 0 1 0 0 0.076 0.80 -1648 NXF3 nuclear RNA export factor 3 847704 3 3 3 0 0 0 3 0 0 0 0.076 0.80 -1649 CDK18 668226 2 2 2 0 1 0 0 0 1 0 0.076 0.80 -1650 OR13C4 olfactory receptor, family 13, subfamily C, member 4 487227 2 2 2 0 0 2 0 0 0 0 0.076 0.80 -1651 NKAPL NFKB activating protein-like 614991 2 2 2 0 0 2 0 0 0 0 0.076 0.80 -1652 SERPINA11 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 11 651495 2 2 2 0 0 0 0 0 2 0 0.076 0.80 -1653 SIM1 single-minded homolog 1 (Drosophila) 1126554 3 3 3 1 2 1 0 0 0 0 0.076 0.80 -1654 SESN2 sestrin 2 625638 2 2 2 0 0 0 1 0 1 0 0.076 0.80 -1655 COIL coilin 812721 2 2 2 0 0 0 0 0 2 0 0.077 0.80 -1656 DEPDC7 DEP domain containing 7 783315 2 2 2 0 0 0 0 1 1 0 0.077 0.80 -1657 CCL11 chemokine (C-C motif) ligand 11 155142 1 1 1 0 0 1 0 0 0 0 0.077 0.80 -1658 PRSS37 369096 1 1 1 0 0 1 0 0 0 0 0.077 0.80 -1659 HINT3 histidine triad nucleotide binding protein 3 184548 1 1 1 0 0 0 0 1 0 0 0.077 0.80 -1660 HSD17B4 hydroxysteroid (17-beta) dehydrogenase 4 1169649 3 3 3 0 1 0 1 0 1 0 0.077 0.80 -1661 RAB3IL1 RAB3A interacting protein (rabin3)-like 1 363519 1 1 1 0 0 0 0 1 0 0 0.077 0.80 -1662 FBXO41 F-box protein 41 707772 2 2 2 0 1 0 0 0 1 0 0.077 0.80 -1663 BCOR BCL6 co-repressor 2577588 5 5 5 1 0 4 0 1 0 0 0.077 0.80 -1664 RWDD3 RWD domain containing 3 378222 1 1 1 0 0 0 0 0 1 0 0.077 0.80 -1665 TECRL 548574 2 2 2 0 0 1 0 0 1 0 0.077 0.80 -1666 WDR33 WD repeat domain 33 2096952 5 5 5 0 2 0 2 0 1 0 0.077 0.80 -1667 KHSRP KH-type splicing regulatory protein 730587 2 2 2 0 0 0 1 0 1 0 0.077 0.80 -1668 PLD5 phospholipase D family, member 5 695097 2 2 2 1 0 2 0 0 0 0 0.077 0.80 -1669 LDLRAD2 low density lipoprotein receptor class A domain containing 2 203307 1 1 1 1 0 0 1 0 0 0 0.077 0.80 -1670 ZNF526 zinc finger protein 526 1022619 3 3 3 0 0 2 1 0 0 0 0.077 0.80 -1671 BRWD1 bromodomain and WD repeat domain containing 1 3635190 9 7 9 1 0 1 3 3 2 0 0.077 0.80 -1672 CCNB1 cyclin B1 678366 2 2 2 0 0 1 0 0 1 0 0.077 0.80 -1673 SPANXN4 SPANX family, member N4 156156 1 1 1 0 0 0 1 0 0 0 0.077 0.80 -1674 NDN necdin homolog (mouse) 353886 1 1 1 0 0 1 0 0 0 0 0.077 0.80 -1675 ALS2CL ALS2 C-terminal like 1156467 3 3 3 0 1 1 1 0 0 0 0.078 0.80 -1676 C12orf50 chromosome 12 open reading frame 50 655551 2 2 2 0 0 0 0 0 2 0 0.078 0.80 -1677 FAM22D family with sequence similarity 22, member D 568854 2 2 2 0 0 1 1 0 0 0 0.078 0.80 -1678 OR6X1 olfactory receptor, family 6, subfamily X, member 1 478101 2 2 2 0 0 1 1 0 0 0 0.078 0.80 -1679 RFX3 regulatory factor X, 3 (influences HLA class II expression) 1252290 3 3 3 0 0 1 0 1 1 0 0.078 0.80 -1680 BFSP1 beaded filament structural protein 1, filensin 747318 2 2 2 0 1 0 1 0 0 0 0.078 0.80 -1681 STX10 syntaxin 10 353379 1 1 1 1 0 0 0 0 1 0 0.078 0.80 -1682 RAB5C RAB5C, member RAS oncogene family 340197 1 1 1 0 0 0 0 0 1 0 0.078 0.80 -1683 C19orf10 chromosome 19 open reading frame 10 82641 1 1 1 0 1 0 0 0 0 0 0.078 0.80 -1684 CALB2 calbindin 2, 29kDa (calretinin) 386334 1 1 1 0 0 0 0 0 1 0 0.078 0.80 -1685 GMFG glia maturation factor, gamma 231699 1 1 1 0 0 0 1 0 0 0 0.078 0.80 -1686 THSD7B thrombospondin, type I, domain containing 7B 2370732 5 5 5 1 2 0 3 0 0 0 0.078 0.80 -1687 GLTSCR2 glioma tumor suppressor candidate region gene 2 365040 1 1 1 0 0 0 1 0 0 0 0.078 0.80 -1688 C2orf79 166296 1 1 1 0 1 0 0 0 0 0 0.078 0.80 -1689 OR56A1 olfactory receptor, family 56, subfamily A, member 1 487227 2 2 2 2 0 1 1 0 0 0 0.078 0.80 -1690 WNT6 wingless-type MMTV integration site family, member 6 167817 1 1 1 0 0 1 0 0 0 0 0.078 0.80 -1691 MAGEB4 melanoma antigen family B, 4 529815 2 2 2 2 1 0 0 1 0 0 0.078 0.80 -1692 KCNJ10 potassium inwardly-rectifying channel, subfamily J, member 10 580008 2 2 2 0 0 1 0 1 0 0 0.078 0.80 -1693 PLEKHF2 pleckstrin homology domain containing, family F (with FYVE domain) member 2 382278 1 1 1 1 0 0 0 0 1 0 0.078 0.80 -1694 BST2 bone marrow stromal cell antigen 2 283413 1 1 1 0 0 0 1 0 0 0 0.078 0.80 -1695 UBL4B ubiquitin-like 4B 202293 1 1 1 0 0 0 1 0 0 0 0.078 0.80 -1696 JTB jumping translocation breakpoint 233727 1 1 1 0 0 0 0 0 1 0 0.078 0.80 -1697 RAPGEF3 Rap guanine nucleotide exchange factor (GEF) 3 1235559 2 2 2 0 0 0 0 0 2 0 0.078 0.80 -1698 IL17RA interleukin 17 receptor A 479622 2 2 2 0 0 1 1 0 0 0 0.078 0.80 -1699 MUM1L1 melanoma associated antigen (mutated) 1-like 1 1022112 2 2 2 0 0 0 0 0 2 0 0.078 0.80 -1700 ARG1 arginase, liver 507507 2 2 2 0 0 1 0 1 0 0 0.078 0.80 -1701 C1orf85 chromosome 1 open reading frame 85 576459 2 2 2 0 0 1 0 0 1 0 0.079 0.80 -1702 PPP1R3A protein phosphatase 1, regulatory (inhibitor) subunit 3A 1716195 6 4 6 1 1 2 1 0 2 0 0.079 0.80 -1703 IL12A interleukin 12A (natural killer cell stimulatory factor 1, cytotoxic lymphocyte maturation factor 1, p35) 374166 1 1 1 0 0 0 0 0 1 0 0.079 0.80 -1704 BMP2K BMP2 inducible kinase 1726842 3 3 3 0 0 0 2 0 1 0 0.079 0.80 -1705 ALPI alkaline phosphatase, intestinal 589134 2 2 2 0 1 1 0 0 0 0 0.079 0.80 -1706 OR10H2 olfactory receptor, family 10, subfamily H, member 2 482664 2 2 2 0 1 1 0 0 0 0 0.079 0.80 -1707 LONRF1 LON peptidase N-terminal domain and ring finger 1 834015 3 3 3 0 1 2 0 0 0 0 0.079 0.80 -1708 CYP2D6 cytochrome P450, family 2, subfamily D, polypeptide 6 656565 2 2 2 0 0 1 0 0 1 0 0.079 0.80 -1709 GJB3 gap junction protein, beta 3, 31kDa 414219 2 2 2 0 2 0 0 0 0 0 0.079 0.80 -1710 ARHGAP29 Rho GTPase activating protein 29 1964118 5 5 5 0 1 1 1 0 2 0 0.079 0.80 -1711 ACSM5 acyl-CoA synthetase medium-chain family member 5 908544 3 3 3 0 1 1 0 0 1 0 0.080 0.80 -1712 HDDC2 HD domain containing 2 279357 1 1 1 0 0 1 0 0 0 0 0.080 0.80 -1713 FAM20A family with sequence similarity 20, member A 582036 2 2 2 1 1 0 1 0 0 0 0.080 0.80 -1714 C7orf11 chromosome 7 open reading frame 11 103935 1 1 1 0 0 0 1 0 0 0 0.080 0.80 -1715 PTPN5 protein tyrosine phosphatase, non-receptor type 5 (striatum-enriched) 842634 2 2 2 0 0 1 0 0 1 0 0.080 0.80 -1716 C18orf55 chromosome 18 open reading frame 55 390897 1 1 1 0 0 0 0 0 1 0 0.080 0.80 -1717 TINAG tubulointerstitial nephritis antigen 747825 2 2 2 0 1 0 0 0 1 0 0.080 0.80 -1718 ORMDL3 ORM1-like 3 (S. cerevisiae) 240318 1 1 1 0 0 1 0 0 0 0 0.080 0.80 -1719 PLXNA1 plexin A1 1951443 3 3 3 3 0 1 0 0 2 0 0.080 0.80 -1720 ORM1 orosomucoid 1 318903 1 1 1 0 0 0 0 0 1 0 0.080 0.81 -1721 NBEAL2 neurobeachin-like 2 2430051 5 5 4 0 0 0 2 2 1 0 0.080 0.81 -1722 GCH1 GTP cyclohydrolase 1 (dopa-responsive dystonia) 269724 1 1 1 0 0 1 0 0 0 0 0.080 0.81 -1723 PJA2 praja 2, RING-H2 motif containing 1096641 3 3 3 0 0 1 2 0 0 0 0.080 0.81 -1724 KCNH7 potassium voltage-gated channel, subfamily H (eag-related), member 7 1886547 4 4 4 0 2 0 0 0 2 0 0.080 0.81 -1725 NID1 nidogen 1 1772472 4 4 4 2 0 1 2 0 1 0 0.081 0.81 -1726 CDH10 cadherin 10, type 2 (T2-cadherin) 1222377 3 3 3 1 1 1 0 0 1 0 0.081 0.81 -1727 C3orf22 chromosome 3 open reading frame 22 221052 1 1 1 0 0 1 0 0 0 0 0.081 0.81 -1728 FASTKD3 FAST kinase domains 3 1020591 3 3 3 0 1 1 0 0 1 0 0.081 0.81 -1729 LGALS12 lectin, galactoside-binding, soluble, 12 (galectin 12) 532350 2 2 2 0 0 1 1 0 0 0 0.081 0.81 -1730 CD79A CD79a molecule, immunoglobulin-associated alpha 235248 1 1 1 0 0 0 0 0 1 0 0.081 0.81 -1731 FOXM1 forkhead box M1 1238094 3 3 2 1 0 1 0 2 0 0 0.081 0.81 -1732 CEACAM6 carcinoembryonic antigen-related cell adhesion molecule 6 (non-specific cross reacting antigen) 534885 2 2 2 0 1 1 0 0 0 0 0.081 0.81 -1733 ALG1L 291018 1 1 1 0 0 1 0 0 0 0 0.081 0.81 -1734 NRP2 neuropilin 2 1610232 4 4 4 0 1 1 1 0 1 0 0.081 0.81 -1735 GABRG1 gamma-aminobutyric acid (GABA) A receptor, gamma 1 727038 2 2 2 1 1 0 1 0 0 0 0.082 0.81 -1736 IL1F5 interleukin 1 family, member 5 (delta) 245388 1 1 1 0 0 1 0 0 0 0 0.082 0.81 -1737 DNMT3A DNA (cytosine-5-)-methyltransferase 3 alpha 1319721 3 3 3 0 0 1 1 1 0 0 0.082 0.81 -1738 GPR139 G protein-coupled receptor 139 476073 2 2 2 0 0 1 1 0 0 0 0.082 0.81 -1739 IGFL4 IGF-like family member 4 198237 1 1 1 0 0 0 0 0 1 0 0.082 0.81 -1740 FABP4 fatty acid binding protein 4, adipocyte 210405 1 1 1 0 0 0 0 0 1 0 0.082 0.81 -1741 AGPAT3 1-acylglycerol-3-phosphate O-acyltransferase 3 456807 2 2 2 0 1 1 0 0 0 0 0.082 0.81 -1742 MTHFS 5,10-methenyltetrahydrofolate synthetase (5-formyltetrahydrofolate cyclo-ligase) 255021 1 1 1 1 0 0 0 1 0 0 0.082 0.81 -1743 ZNF829 zinc finger protein 829 711321 2 2 2 0 0 0 0 0 2 0 0.082 0.81 -1744 IRF9 interferon regulatory factor 9 615498 2 2 2 0 0 1 0 0 1 0 0.082 0.81 -1745 PRKCB 1139229 3 3 3 0 1 2 0 0 0 0 0.082 0.81 -1746 C11orf1 chromosome 11 open reading frame 1 237783 1 1 1 0 0 1 0 0 0 0 0.082 0.81 -1747 ZNF77 zinc finger protein 77 835029 2 2 2 0 0 0 1 1 0 0 0.082 0.81 -1748 WNT9A wingless-type MMTV integration site family, member 9A 340704 1 1 1 0 0 1 0 0 0 0 0.082 0.81 -1749 C1orf130 chromosome 1 open reading frame 130 162747 1 1 1 0 0 0 0 1 0 0 0.082 0.81 -1750 PXDN peroxidasin homolog (Drosophila) 1677156 3 3 3 1 1 0 0 0 2 0 0.082 0.81 -1751 ARPC2 actin related protein 2/3 complex, subunit 2, 34kDa 438555 2 2 2 0 2 0 0 0 0 0 0.082 0.81 -1752 OR7A17 olfactory receptor, family 7, subfamily A, member 17 473538 2 2 2 1 0 0 2 0 0 0 0.082 0.81 -1753 MFN1 mitofusin 1 1163058 3 3 3 0 0 0 1 1 1 0 0.082 0.81 -1754 SNRPB small nuclear ribonucleoprotein polypeptides B and B1 388362 1 1 1 0 0 0 0 0 1 0 0.082 0.81 -1755 POLE3 polymerase (DNA directed), epsilon 3 (p17 subunit) 233220 1 1 1 0 0 0 0 0 1 0 0.083 0.81 -1756 PTPN12 protein tyrosine phosphatase, non-receptor type 12 1172184 3 3 3 0 0 1 2 0 0 0 0.083 0.81 -1757 OR52D1 olfactory receptor, family 52, subfamily D, member 1 487227 2 2 2 0 0 1 1 0 0 0 0.083 0.81 -1758 CMTM5 CKLF-like MARVEL transmembrane domain containing 5 248937 1 1 1 0 0 1 0 0 0 0 0.083 0.81 -1759 CATSPER2 cation channel, sperm associated 2 851760 2 2 2 2 0 0 0 1 1 0 0.083 0.81 -1760 SLC39A14 solute carrier family 39 (zinc transporter), member 14 766077 2 2 2 0 0 0 1 0 1 0 0.083 0.81 -1761 TRPV2 transient receptor potential cation channel, subfamily V, member 2 1114893 3 3 3 2 0 1 1 0 1 0 0.083 0.82 -1762 THEG Theg homolog (mouse) 287469 1 1 1 0 0 0 0 1 0 0 0.083 0.82 -1763 HLA-DMB major histocompatibility complex, class II, DM beta 413712 2 2 2 0 0 1 1 0 0 0 0.083 0.82 -1764 C19orf43 chromosome 19 open reading frame 43 98358 1 1 1 0 0 1 0 0 0 0 0.083 0.82 -1765 MAOA monoamine oxidase A 803595 2 2 2 0 0 0 1 0 1 0 0.083 0.82 -1766 C14orf73 chromosome 14 open reading frame 73 317889 1 1 1 0 0 1 0 0 0 0 0.084 0.82 -1767 HAS3 hyaluronan synthase 3 855816 2 2 2 0 0 0 1 0 1 0 0.084 0.82 -1768 BZW1 basic leucine zipper and W2 domains 1 524745 2 2 2 0 1 0 0 1 0 0 0.084 0.82 -1769 VPS37B vacuolar protein sorting 37 homolog B (S. cerevisiae) 285948 1 1 1 0 0 0 1 0 0 0 0.084 0.82 -1770 STYXL1 serine/threonine/tyrosine interacting-like 1 493818 2 2 2 0 0 1 0 1 0 0 0.084 0.82 -1771 ZNRF4 zinc and ring finger 4 656058 2 2 2 2 0 2 0 0 0 0 0.084 0.82 -1772 TTC5 tetratricopeptide repeat domain 5 691041 2 2 2 0 0 1 1 0 0 0 0.084 0.82 -1773 DDX55 DEAD (Asp-Glu-Ala-Asp) box polypeptide 55 885729 3 3 3 0 0 1 2 0 0 0 0.084 0.82 -1774 SCHIP1 schwannomin interacting protein 1 403572 1 1 1 0 0 0 0 0 1 0 0.084 0.82 -1775 MYBBP1A MYB binding protein (P160) 1a 1400334 3 3 3 0 0 0 1 1 1 0 0.084 0.82 -1776 C14orf174 chromosome 14 open reading frame 174 1032759 3 3 3 0 1 0 2 0 0 0 0.084 0.82 -1777 CCDC83 coiled-coil domain containing 83 699153 2 2 2 0 1 0 0 0 1 0 0.084 0.82 -1778 ZNF705D zinc finger protein 705D 152100 1 1 1 0 0 1 0 0 0 0 0.084 0.82 -1779 MFSD8 major facilitator superfamily domain containing 8 757458 2 2 2 0 1 0 1 0 0 0 0.084 0.82 -1780 NGEF neuronal guanine nucleotide exchange factor 721461 2 2 2 2 0 1 0 0 1 0 0.084 0.82 -1781 TMEM47 transmembrane protein 47 166296 1 1 1 1 0 0 0 0 1 0 0.085 0.82 -1782 SCFD2 sec1 family domain containing 2 1048983 3 3 3 1 2 0 1 0 0 0 0.085 0.82 -1783 C10orf96 chromosome 10 open reading frame 96 410163 2 2 2 0 1 1 0 0 0 0 0.085 0.82 -1784 RUFY1 RUN and FYVE domain containing 1 953667 2 2 2 0 0 0 1 0 1 0 0.085 0.82 -1785 METTL8 methyltransferase like 8 409149 2 2 2 0 1 0 1 0 0 0 0.085 0.82 -1786 EGFR epidermal growth factor receptor (erythroblastic leukemia viral (v-erb-b) oncogene homolog, avian) 1978314 4 4 4 1 0 1 0 3 0 0 0.085 0.82 -1787 ZC3H12B zinc finger CCCH-type containing 12B 1283217 3 3 3 0 2 0 1 0 0 0 0.085 0.82 -1788 GYLTL1B glycosyltransferase-like 1B 863421 2 2 2 0 0 0 1 0 1 0 0.085 0.82 -1789 CCDC144NL 239811 1 1 1 0 0 0 0 0 1 0 0.085 0.82 -1790 KRTAP5-10 keratin associated protein 5-10 310791 1 1 1 1 0 0 0 1 0 0 0.085 0.82 -1791 DMC1 DMC1 dosage suppressor of mck1 homolog, meiosis-specific homologous recombination (yeast) 545025 2 2 2 0 0 1 0 0 1 0 0.085 0.82 -1792 MX2 myxovirus (influenza virus) resistance 2 (mouse) 1115400 3 3 3 0 0 1 1 0 1 0 0.085 0.82 -1793 MYO1C myosin IC 816777 2 2 1 0 0 0 2 0 0 0 0.085 0.82 -1794 PRKAG3 protein kinase, AMP-activated, gamma 3 non-catalytic subunit 757458 2 2 2 0 0 0 0 2 0 0 0.085 0.82 -1795 MIF4GD MIF4G domain containing 403065 1 1 1 0 0 0 0 0 1 0 0.085 0.82 -1796 CHAF1A chromatin assembly factor 1, subunit A (p150) 1377519 3 3 3 1 1 0 0 2 0 0 0.085 0.82 -1797 TSPAN33 tetraspanin 33 394446 1 1 1 0 0 0 0 0 1 0 0.085 0.82 -1798 DYTN dystrotelin 904995 3 3 3 1 0 2 1 0 0 0 0.086 0.82 -1799 GGCT 295581 1 1 1 0 0 0 0 0 1 0 0.086 0.82 -1800 PLS3 plastin 3 (T isoform) 990171 4 3 4 0 2 1 0 1 0 0 0.086 0.82 -1801 MFGE8 milk fat globule-EGF factor 8 protein 560235 2 2 2 0 2 0 0 0 0 0 0.086 0.82 -1802 PTK7 PTK7 protein tyrosine kinase 7 1586910 4 4 4 1 2 2 0 0 0 0 0.086 0.82 -1803 C10orf128 chromosome 10 open reading frame 128 173394 1 1 1 0 0 0 1 0 0 0 0.086 0.82 -1804 PSMD6 proteasome (prosome, macropain) 26S subunit, non-ATPase, 6 533871 2 2 2 0 0 1 1 0 0 0 0.086 0.82 -1805 VILL villin-like 1142271 3 3 3 1 1 1 0 0 1 0 0.086 0.82 -1806 ITGB3BP integrin beta 3 binding protein (beta3-endonexin) 286962 1 1 1 1 0 1 0 0 0 0 0.086 0.82 -1807 PHTF2 putative homeodomain transcription factor 2 1205139 3 3 3 0 0 1 0 0 2 0 0.086 0.82 -1808 RXFP1 relaxin/insulin-like family peptide receptor 1 1189422 3 3 3 0 0 1 1 0 1 0 0.086 0.82 -1809 LSM4 LSM4 homolog, U6 small nuclear RNA associated (S. cerevisiae) 166296 1 1 1 0 0 0 0 0 1 0 0.086 0.82 -1810 NUP153 nucleoporin 153kDa 2262741 5 5 5 1 0 3 2 0 0 0 0.086 0.82 -1811 TRMT61B 738699 2 2 2 0 0 1 0 0 1 0 0.086 0.82 -1812 NEUROD6 neurogenic differentiation 6 516126 2 2 2 0 0 0 1 1 0 0 0.086 0.82 -1813 ANKLE1 ankyrin repeat and LEM domain containing 1 707265 2 2 1 1 2 0 0 0 0 0 0.086 0.82 -1814 IRF2BP2 interferon regulatory factor 2 binding protein 2 365040 1 1 1 0 0 0 0 0 1 0 0.086 0.82 -1815 LTBP2 latent transforming growth factor beta binding protein 2 2383407 5 5 5 2 1 2 1 0 1 0 0.086 0.82 -1816 KLHL21 kelch-like 21 (Drosophila) 326001 1 1 1 0 0 1 0 0 0 0 0.086 0.82 -1817 C1orf198 chromosome 1 open reading frame 198 323466 1 1 1 0 0 0 1 0 0 0 0.086 0.82 -1818 SDC4 syndecan 4 280371 1 1 1 0 0 0 1 0 0 0 0.086 0.82 -1819 PCSK9 proprotein convertase subtilisin/kexin type 9 681915 2 2 1 0 0 0 0 0 2 0 0.086 0.82 -1820 FAM83E family with sequence similarity 83, member E 463905 2 2 2 1 0 1 0 1 0 0 0.086 0.82 -1821 ZKSCAN1 zinc finger with KRAB and SCAN domains 1 867984 2 2 2 0 0 0 1 0 1 0 0.087 0.82 -1822 TTBK1 tau tubulin kinase 1 1351662 3 3 3 2 0 2 1 0 0 0 0.087 0.82 -1823 CD83 CD83 molecule 241839 1 1 1 1 1 0 0 0 0 0 0.087 0.82 -1824 PQBP1 polyglutamine binding protein 1 416754 2 1 2 0 1 0 0 0 1 0 0.087 0.82 -1825 MYH7B myosin, heavy chain 7B, cardiac muscle, beta 2415855 5 5 5 3 0 3 1 0 1 0 0.087 0.82 -1826 SELP selectin P (granule membrane protein 140kDa, antigen CD62) 1296399 3 3 3 0 2 0 1 0 0 0 0.087 0.82 -1827 DCT dopachrome tautomerase (dopachrome delta-isomerase, tyrosine-related protein 2) 837564 2 2 2 0 0 1 0 0 1 0 0.087 0.82 -1828 HIPK2 homeodomain interacting protein kinase 2 1572714 4 4 4 0 1 0 2 0 1 0 0.087 0.82 -1829 TIA1 TIA1 cytotoxic granule-associated RNA binding protein 614991 2 2 2 0 1 0 0 0 1 0 0.087 0.82 -1830 TTYH1 tweety homolog 1 (Drosophila) 534378 2 2 2 2 1 1 0 0 0 0 0.087 0.82 -1831 TSPYL2 TSPY-like 2 757965 2 2 2 0 0 0 1 1 0 0 0.087 0.82 -1832 DNAJC2 980538 2 2 2 0 0 0 0 1 1 0 0.087 0.82 -1833 CBR3 carbonyl reductase 3 280371 1 1 1 0 0 1 0 0 0 0 0.087 0.82 -1834 FGFBP2 fibroblast growth factor binding protein 2 342732 1 1 1 0 0 1 0 0 0 0 0.087 0.82 -1835 ADAMTS5 ADAM metallopeptidase with thrombospondin type 1 motif, 5 (aggrecanase-2) 1092078 2 2 2 2 0 0 1 0 1 0 0.087 0.82 -1836 PITX2 paired-like homeodomain 2 401544 1 1 1 0 0 0 0 0 1 0 0.087 0.82 -1837 FABP6 fatty acid binding protein 6, ileal (gastrotropin) 282906 1 1 1 0 0 0 1 0 0 0 0.087 0.82 -1838 CLEC10A C-type lectin domain family 10, member A 502944 2 2 2 0 0 1 1 0 0 0 0.087 0.82 -1839 TPPP tubulin polymerization promoting protein 122187 1 1 1 0 0 1 0 0 0 0 0.087 0.82 -1840 THBS1 thrombospondin 1 1822665 3 3 3 1 0 1 0 1 1 0 0.087 0.82 -1841 CTGF connective tissue growth factor 391911 1 1 1 0 0 1 0 0 0 0 0.087 0.82 -1842 KIF13A kinesin family member 13A 2745405 7 6 7 1 2 1 1 2 1 0 0.087 0.82 -1843 KCNA7 potassium voltage-gated channel, shaker-related subfamily, member 7 415233 1 1 1 0 0 0 0 0 1 0 0.088 0.82 -1844 ZCCHC2 zinc finger, CCHC domain containing 2 1255332 3 3 3 2 2 0 1 0 0 0 0.088 0.82 -1845 IL13RA2 interleukin 13 receptor, alpha 2 597753 2 2 2 1 1 0 0 1 0 0 0.088 0.82 -1846 AGFG2 642876 2 2 2 0 0 0 1 0 1 0 0.088 0.82 -1847 OR5M1 olfactory receptor, family 5, subfamily M, member 1 482664 2 2 2 1 0 1 1 0 0 0 0.088 0.82 -1848 KRT25 keratin 25 702195 2 2 2 1 1 1 0 0 0 0 0.088 0.82 -1849 SLCO3A1 solute carrier organic anion transporter family, member 3A1 854295 2 2 2 0 0 2 0 0 0 0 0.088 0.82 -1850 KRTAP24-1 keratin associated protein 24-1 389883 1 1 1 0 0 0 0 0 1 0 0.088 0.82 -1851 CNTN1 contactin 1 1596543 4 4 4 3 1 2 1 0 0 0 0.088 0.82 -1852 SEC14L5 SEC14-like 5 (S. cerevisiae) 555165 2 2 2 1 0 1 0 0 1 0 0.088 0.82 -1853 GALNT10 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 10 (GalNAc-T10) 860379 2 2 2 0 0 1 1 0 0 0 0.088 0.82 -1854 RBM23 RNA binding motif protein 23 669240 2 2 2 0 0 1 1 0 0 0 0.088 0.82 -1855 SFMBT1 Scm-like with four mbt domains 1 1359267 3 3 3 0 0 1 0 1 1 0 0.088 0.82 -1856 RPL36 ribosomal protein L36 116610 1 1 1 0 0 0 0 1 0 0 0.088 0.82 -1857 FRG1 FSHD region gene 1 378729 1 1 1 0 0 0 0 1 0 0 0.088 0.82 -1858 ATXN3L ataxin 3-like 543504 2 2 2 0 1 1 0 0 0 0 0.088 0.82 -1859 S1PR5 190125 1 1 1 1 0 1 0 0 0 0 0.088 0.82 -1860 MTR 5-methyltetrahydrofolate-homocysteine methyltransferase 1946880 5 4 5 1 1 2 0 1 1 0 0.089 0.82 -1861 LHX9 LIM homeobox 9 631722 2 2 2 1 1 0 1 0 0 0 0.089 0.82 -1862 MAGED2 melanoma antigen family D, 2 875082 2 2 2 0 0 1 0 0 1 0 0.089 0.82 -1863 RWDD2A RWD domain containing 2A 449709 2 2 2 0 1 0 1 0 0 0 0.089 0.82 -1864 ARF1 ADP-ribosylation factor 1 284934 1 1 1 0 1 0 0 0 0 0 0.089 0.82 -1865 INTU inturned planar cell polarity effector homolog (Drosophila) 1466751 4 4 4 0 0 2 2 0 0 0 0.089 0.82 -1866 MAMSTR 319410 1 1 1 0 0 1 0 0 0 0 0.089 0.82 -1867 CCDC66 coiled-coil domain containing 66 1346592 3 3 3 0 0 1 1 0 1 0 0.089 0.82 -1868 EIF4A3 eukaryotic translation initiation factor 4A, isoform 3 607893 2 2 2 0 0 1 1 0 0 0 0.089 0.82 -1869 MATN4 matrilin 4 885729 2 2 2 0 1 0 0 0 1 0 0.089 0.83 -1870 CYTSB 1621386 3 3 3 0 0 2 0 0 1 0 0.089 0.83 -1871 C1orf226 424866 1 1 1 0 0 0 0 0 1 0 0.089 0.83 -1872 C1orf187 chromosome 1 open reading frame 187 400023 1 1 1 0 0 0 0 0 1 0 0.089 0.83 -1873 MEST mesoderm specific transcript homolog (mouse) 520182 2 2 2 0 0 0 1 0 1 0 0.090 0.83 -1874 HYLS1 hydrolethalus syndrome 1 458328 2 2 2 0 0 1 1 0 0 0 0.090 0.83 -1875 TRIM38 tripartite motif-containing 38 720954 2 2 2 0 0 1 0 1 0 0 0.090 0.83 -1876 LCTL lactase-like 890292 2 2 2 0 0 0 1 0 1 0 0.090 0.83 -1877 LMAN2 lectin, mannose-binding 2 466947 2 2 2 0 0 1 0 1 0 0 0.090 0.83 -1878 ZSCAN16 zinc finger and SCAN domain containing 16 536913 2 2 2 0 1 0 0 1 0 0 0.090 0.83 -1879 TXNDC11 thioredoxin domain containing 11 1352169 3 3 3 0 0 3 0 0 0 0 0.090 0.83 -1880 SLAMF9 SLAM family member 9 449202 2 2 2 1 0 0 2 0 0 0 0.090 0.83 -1881 SOBP sine oculis binding protein homolog (Drosophila) 819312 2 2 2 0 0 1 0 0 1 0 0.090 0.83 -1882 TK2 thymidine kinase 2, mitochondrial 359970 1 1 1 0 0 0 1 0 0 0 0.090 0.83 -1883 SLC12A4 solute carrier family 12 (potassium/chloride transporters), member 4 1191450 2 2 2 0 0 0 0 1 1 0 0.090 0.83 -1884 FBXL19 F-box and leucine-rich repeat protein 19 601809 2 2 2 0 1 1 0 0 0 0 0.090 0.83 -1885 BCKDK branched chain ketoacid dehydrogenase kinase 550602 2 2 2 0 0 1 0 0 1 0 0.090 0.83 -1886 NUTF2 nuclear transport factor 2 202800 1 1 1 0 0 1 0 0 0 0 0.090 0.83 -1887 PHLDB3 pleckstrin homology-like domain, family B, member 3 807144 2 2 2 0 1 0 0 0 1 0 0.090 0.83 -1888 ZNF506 zinc finger protein 506 684957 2 2 2 1 0 0 2 0 0 0 0.090 0.83 -1889 RPS27 ribosomal protein S27 (metallopanstimulin 1) 89739 1 1 1 0 0 0 1 0 0 0 0.090 0.83 -1890 BRIP1 BRCA1 interacting protein C-terminal helicase 1 1939782 4 4 4 3 0 0 2 0 2 0 0.090 0.83 -1891 GTF2F2 general transcription factor IIF, polypeptide 2, 30kDa 360984 1 1 1 1 0 1 0 0 0 0 0.090 0.83 -1892 B3GNT1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 1 350844 1 1 1 0 1 0 0 0 0 0 0.091 0.83 -1893 GSPT2 G1 to S phase transition 2 882180 2 2 2 1 0 0 0 2 0 0 0.091 0.83 -1894 DEFB1 defensin, beta 1 109005 1 1 1 0 0 1 0 0 0 0 0.091 0.83 -1895 OR5H1 olfactory receptor, family 5, subfamily H, member 1 479622 2 2 2 2 0 0 2 0 0 0 0.091 0.83 -1896 PFKM phosphofructokinase, muscle 1344564 3 3 3 1 1 0 0 1 1 0 0.091 0.83 -1897 OSTBETA 151086 1 1 1 0 1 0 0 0 0 0 0.091 0.83 -1898 PPFIA4 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 4 1033773 2 2 2 4 0 1 0 0 1 0 0.091 0.83 -1899 MCOLN3 mucolipin 3 866970 2 2 2 0 0 0 0 2 0 0 0.091 0.83 -1900 DEFB114 defensin, beta 114 110526 1 1 1 0 0 1 0 0 0 0 0.091 0.83 -1901 HIST1H2AL histone cluster 1, H2al 201279 1 1 1 0 0 0 1 0 0 0 0.091 0.83 -1902 SNAP25 synaptosomal-associated protein, 25kDa 352365 1 1 1 0 0 0 0 1 0 0 0.091 0.83 -1903 CDC37L1 cell division cycle 37 homolog (S. cerevisiae)-like 1 518154 2 2 2 0 1 0 1 0 0 0 0.091 0.83 -1904 BLM Bloom syndrome 2199366 6 5 6 1 0 4 0 0 2 0 0.091 0.83 -1905 LZTR1 leucine-zipper-like transcription regulator 1 822354 2 2 2 0 0 1 0 0 1 0 0.091 0.83 -1906 HNRNPCL1 449202 2 2 2 0 1 0 1 0 0 0 0.091 0.83 -1907 GPR77 G protein-coupled receptor 77 516126 2 2 2 0 0 1 1 0 0 0 0.092 0.83 -1908 C1orf210 chromosome 1 open reading frame 210 177450 1 1 1 0 0 0 1 0 0 0 0.092 0.83 -1909 OR10H1 olfactory receptor, family 10, subfamily H, member 1 487227 2 2 2 0 1 0 1 0 0 0 0.092 0.83 -1910 SEC24B SEC24 related gene family, member B (S. cerevisiae) 1909362 4 4 4 2 0 0 2 1 1 0 0.092 0.83 -1911 PCDHA6 protocadherin alpha 6 1395771 3 3 3 2 0 3 0 0 0 0 0.092 0.83 -1912 SPN sialophorin (leukosialin, CD43) 448188 2 2 1 0 0 0 1 0 1 0 0.092 0.83 -1913 SRPRB signal recognition particle receptor, B subunit 378222 1 1 1 0 0 0 0 0 1 0 0.092 0.83 -1914 OR56A4 olfactory receptor, family 56, subfamily A, member 4 558714 2 2 2 0 1 0 0 0 1 0 0.092 0.83 -1915 GPR84 G protein-coupled receptor 84 605865 2 2 2 0 1 0 0 1 0 0 0.092 0.83 -1916 VPS28 vacuolar protein sorting 28 homolog (S. cerevisiae) 298623 1 1 1 0 0 1 0 0 0 0 0.092 0.83 -1917 ARHGAP28 Rho GTPase activating protein 28 973440 3 3 3 1 0 1 1 1 0 0 0.092 0.83 -1918 MRFAP1L1 Morf4 family associated protein 1-like 1 196716 1 1 1 1 0 1 0 0 0 0 0.092 0.83 -1919 LGALS4 lectin, galactoside-binding, soluble, 4 (galectin 4) 513084 2 2 2 1 1 1 0 0 0 0 0.092 0.83 -1920 FSHR follicle stimulating hormone receptor 1078896 3 3 3 0 0 1 1 0 1 0 0.092 0.83 -1921 PTCHD3 patched domain containing 3 1090557 3 3 3 0 0 1 1 1 0 0 0.092 0.83 -1922 ETV1 ets variant gene 1 754923 2 2 2 0 0 1 1 0 0 0 0.092 0.83 -1923 SLC25A39 solute carrier family 25, member 39 394953 1 1 1 0 0 0 0 0 1 0 0.092 0.83 -1924 PAQR9 progestin and adipoQ receptor family member IX 192153 1 1 1 2 0 0 0 1 0 0 0.092 0.83 -1925 RPAP2 RNA polymerase II associated protein 2 919698 2 2 2 2 0 1 0 0 1 0 0.092 0.83 -1926 ATP1B1 ATPase, Na+/K+ transporting, beta 1 polypeptide 423345 1 1 1 1 0 0 0 0 1 0 0.092 0.83 -1927 ITK IL2-inducible T-cell kinase 979017 3 3 3 1 0 3 0 0 0 0 0.092 0.83 -1928 SDF4 stromal cell derived factor 4 294567 1 1 1 0 0 0 0 0 1 0 0.092 0.83 -1929 BCAT2 branched chain aminotransferase 2, mitochondrial 520689 2 2 2 1 0 2 0 0 0 0 0.092 0.83 -1930 UBE2Z ubiquitin-conjugating enzyme E2Z 391404 1 1 1 0 0 0 1 0 0 0 0.093 0.83 -1931 PRODH2 proline dehydrogenase (oxidase) 2 679380 2 2 2 1 0 0 2 0 0 0 0.093 0.83 -1932 CDK11A 479622 2 2 2 0 1 1 0 0 0 0 0.093 0.83 -1933 APOA5 apolipoprotein A-V 437541 1 1 1 0 0 0 0 0 1 0 0.093 0.83 -1934 TAF1 TAF1 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 250kDa 2951247 6 6 6 0 2 2 1 0 1 0 0.093 0.83 -1935 LHB luteinizing hormone beta polypeptide 222066 1 1 1 0 0 0 1 0 0 0 0.093 0.83 -1936 PKHD1L1 polycystic kidney and hepatic disease 1 (autosomal recessive)-like 1 6450054 12 12 12 4 3 1 4 1 3 0 0.093 0.83 -1937 SLC26A6 solute carrier family 26, member 6 853281 2 2 2 0 0 0 1 0 1 0 0.093 0.83 -1938 FAM122C family with sequence similarity 122C 327522 1 1 1 0 0 1 0 0 0 0 0.093 0.83 -1939 NODAL nodal homolog (mouse) 435513 1 1 1 0 0 0 0 0 1 0 0.093 0.83 -1940 C19orf63 chromosome 19 open reading frame 63 225108 1 1 1 0 0 1 0 0 0 0 0.093 0.83 -1941 ZNF711 zinc finger protein 711 1173198 3 3 3 0 2 1 0 0 0 0 0.094 0.83 -1942 DNTT deoxynucleotidyltransferase, terminal 798018 2 2 2 1 0 1 1 0 0 0 0.094 0.83 -1943 TMEM44 transmembrane protein 44 342732 1 1 1 0 0 0 1 0 0 0 0.094 0.83 -1944 RGAG1 retrotransposon gag domain containing 1 2116725 5 5 5 0 2 1 0 2 0 0 0.094 0.83 -1945 ZNF687 zinc finger protein 687 1753206 3 3 3 1 0 1 0 1 1 0 0.094 0.83 -1946 FGF13 fibroblast growth factor 13 514605 2 2 2 0 1 1 0 0 0 0 0.094 0.83 -1947 KCND1 potassium voltage-gated channel, Shal-related subfamily, member 1 874575 2 2 2 1 0 0 1 0 1 0 0.094 0.83 -1948 KCNK2 potassium channel, subfamily K, member 2 685464 2 2 2 0 0 0 0 1 1 0 0.094 0.83 -1949 CASP8 caspase 8, apoptosis-related cysteine peptidase 888771 2 2 2 0 0 0 1 0 1 0 0.094 0.83 -1950 HTR1E 5-hydroxytryptamine (serotonin) receptor 1E 558714 2 2 2 0 1 0 0 0 1 0 0.094 0.83 -1951 PRAMEF2 PRAME family member 2 728559 2 2 2 0 0 1 0 1 0 0 0.094 0.83 -1952 PPAPDC1A phosphatidic acid phosphatase type 2 domain containing 1A 397488 1 1 1 1 0 0 0 0 1 0 0.095 0.83 -1953 C10orf32 chromosome 10 open reading frame 32 132834 1 1 1 0 1 0 0 0 0 0 0.095 0.83 -1954 TYW3 tRNA-yW synthesizing protein 3 homolog (S. cerevisiae) 407628 1 1 1 0 0 1 0 0 0 0 0.095 0.83 -1955 ILK integrin-linked kinase 666198 2 2 2 0 0 1 0 0 1 0 0.095 0.83 -1956 BDKRB1 bradykinin receptor B1 540462 2 2 2 0 1 0 1 0 0 0 0.095 0.83 -1957 CCL13 chemokine (C-C motif) ligand 13 156663 1 1 1 1 1 0 0 0 0 0 0.095 0.83 -1958 MRPL52 mitochondrial ribosomal protein L52 187590 1 1 1 0 0 1 0 0 0 0 0.095 0.83 -1959 TGFBI transforming growth factor, beta-induced, 68kDa 990171 3 3 3 1 1 1 1 0 0 0 0.095 0.83 -1960 ZNF233 zinc finger protein 233 1028703 3 3 3 0 2 0 0 0 1 0 0.095 0.83 -1961 SNRNP35 387348 1 1 1 1 0 1 0 0 0 0 0.095 0.83 -1962 C22orf33 chromosome 22 open reading frame 33 315354 1 1 1 0 0 0 0 0 1 0 0.095 0.83 -1963 SLC24A6 solute carrier family 24 (sodium/potassium/calcium exchanger), member 6 867984 2 2 2 2 0 1 0 0 1 0 0.095 0.83 -1964 RNF43 ring finger protein 43 1203618 3 3 3 0 0 2 0 0 1 0 0.095 0.84 -1965 PPP1R3B protein phosphatase 1, regulatory (inhibitor) subunit 3B 437034 1 1 1 0 0 0 0 0 1 0 0.095 0.84 -1966 CAP1 CAP, adenylate cyclase-associated protein 1 (yeast) 748332 2 2 2 0 0 0 1 1 0 0 0.095 0.84 -1967 LCE2D late cornified envelope 2D 170859 1 1 1 0 0 1 0 0 0 0 0.095 0.84 -1968 METTL9 methyltransferase like 9 409656 1 1 1 0 0 0 1 0 0 0 0.095 0.84 -1969 NUP62 nucleoporin 62kDa 797511 2 2 2 0 0 1 1 0 0 0 0.095 0.84 -1970 DENND1B DENN/MADD domain containing 1B 1146834 3 3 3 0 0 1 2 0 0 0 0.095 0.84 -1971 ZBTB24 zinc finger and BTB domain containing 24 1099176 3 3 3 0 1 0 1 0 1 0 0.095 0.84 -1972 USP21 ubiquitin specific peptidase 21 885222 2 2 2 0 0 1 0 0 1 0 0.096 0.84 -1973 LMOD1 leiomodin 1 (smooth muscle) 920205 3 3 3 1 0 1 1 1 0 0 0.096 0.84 -1974 TM2D2 TM2 domain containing 2 281385 1 1 1 0 0 0 0 0 1 0 0.096 0.84 -1975 RAB3GAP2 RAB3 GTPase activating protein subunit 2 (non-catalytic) 2143596 5 5 5 0 0 1 4 0 0 0 0.096 0.84 -1976 ACTB actin, beta 549081 2 2 2 1 1 0 1 0 0 0 0.096 0.84 -1977 SPRYD4 SPRY domain containing 4 320424 1 1 1 0 0 0 1 0 0 0 0.096 0.84 -1978 LDOC1L leucine zipper, down-regulated in cancer 1-like 254514 1 1 1 0 0 0 0 0 1 0 0.096 0.84 -1979 METTL2A methyltransferase like 2A 433485 1 1 1 0 0 0 0 0 1 0 0.096 0.84 -1980 C19orf41 chromosome 19 open reading frame 41 318396 1 1 1 1 0 1 0 0 0 0 0.096 0.84 -1981 TXNDC8 thioredoxin domain containing 8 (spermatozoa) 188604 1 1 1 0 0 0 1 0 0 0 0.096 0.84 -1982 SNX7 sorting nexin 7 612456 2 2 2 0 1 0 0 0 1 0 0.096 0.84 -1983 KLHL35 306735 1 1 1 0 1 0 0 0 0 0 0.096 0.84 -1984 DEGS1 degenerative spermatocyte homolog 1, lipid desaturase (Drosophila) 455286 2 2 2 0 1 1 0 0 0 0 0.096 0.84 -1985 NET1 neuroepithelial cell transforming gene 1 914628 3 3 3 0 2 1 0 0 0 0 0.096 0.84 -1986 TTC31 tetratricopeptide repeat domain 31 813228 2 2 2 0 0 1 1 0 0 0 0.096 0.84 -1987 PDE6G phosphodiesterase 6G, cGMP-specific, rod, gamma 139932 1 1 1 0 0 0 0 0 1 0 0.096 0.84 -1988 FSTL4 follistatin-like 4 1312623 3 3 3 1 1 1 1 0 0 0 0.097 0.84 -1989 TSC2 tuberous sclerosis 2 754923 2 2 2 0 0 1 1 0 0 0 0.097 0.84 -1990 TBC1D5 TBC1 domain family, member 5 1251276 3 3 3 0 0 1 1 0 1 0 0.097 0.84 -1991 PSEN2 presenilin 2 (Alzheimer disease 4) 676338 2 2 2 0 0 1 1 0 0 0 0.097 0.84 -1992 TRMT2B 792441 2 2 2 0 0 1 0 0 1 0 0.097 0.84 -1993 ACTR1A ARP1 actin-related protein 1 homolog A, centractin alpha (yeast) 595725 2 2 2 0 0 2 0 0 0 0 0.097 0.84 -1994 CA2 carbonic anhydrase II 391911 1 1 1 0 0 0 0 1 0 0 0.097 0.84 -1995 OR9G4 olfactory receptor, family 9, subfamily G, member 4 500916 2 2 2 1 0 0 2 0 0 0 0.097 0.84 -1996 ELANE 106977 1 1 1 1 0 1 0 0 0 0 0.097 0.84 -1997 ZNF649 zinc finger protein 649 777738 2 2 2 0 0 1 0 1 0 0 0.097 0.84 -1998 F5 coagulation factor V (proaccelerin, labile factor) 3434925 7 7 7 1 1 2 1 2 1 0 0.097 0.84 -1999 WFDC5 WAP four-disulfide core domain 5 196716 1 1 1 0 0 1 0 0 0 0 0.097 0.84 -2000 ZNF562 zinc finger protein 562 546039 2 2 2 0 0 0 2 0 0 0 0.097 0.84 -2001 FGF5 fibroblast growth factor 5 415233 1 1 1 0 0 0 0 1 0 0 0.097 0.84 -2002 PLA2G2F phospholipase A2, group IIF 271752 1 1 1 0 0 1 0 0 0 0 0.097 0.84 -2003 UNC13C unc-13 homolog C (C. elegans) 3418701 6 6 6 2 1 0 1 1 3 0 0.097 0.84 -2004 C20orf132 chromosome 20 open reading frame 132 1425177 4 3 4 0 0 0 2 1 1 0 0.097 0.84 -2005 ST6GALNAC4 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 382278 1 1 1 0 0 1 0 0 0 0 0.097 0.84 -2006 ZNF619 zinc finger protein 619 871533 2 2 2 0 0 0 1 0 1 0 0.097 0.84 -2007 NPPA natriuretic peptide precursor A 237276 1 1 1 0 0 0 0 1 0 0 0.097 0.84 -2008 GABRA1 gamma-aminobutyric acid (GABA) A receptor, alpha 1 713349 2 2 2 0 1 1 0 0 0 0 0.098 0.84 -2009 RHCG Rh family, C glycoprotein 729573 2 2 2 0 0 1 0 0 1 0 0.098 0.84 -2010 GPR142 G protein-coupled receptor 142 652002 2 2 2 0 0 1 1 0 0 0 0.098 0.84 -2011 CHGA chromogranin A (parathyroid secretory protein 1) 369603 1 1 1 0 0 0 0 0 1 0 0.098 0.84 -2012 PSMB6 proteasome (prosome, macropain) subunit, beta type, 6 323466 1 1 1 0 0 0 1 0 0 0 0.098 0.84 -2013 SPO11 SPO11 meiotic protein covalently bound to DSB homolog (S. cerevisiae) 601302 2 2 2 0 0 1 1 0 0 0 0.098 0.84 -2014 ZBTB48 zinc finger and BTB domain containing 48 1001832 2 2 2 0 0 0 0 1 1 0 0.098 0.84 -2015 OR8B12 olfactory receptor, family 8, subfamily B, member 12 475059 2 2 2 0 2 0 0 0 0 0 0.098 0.84 -2016 LRRC29 leucine rich repeat containing 29 151086 1 1 1 0 0 0 0 1 0 0 0.098 0.84 -2017 SLC37A2 solute carrier family 37 (glycerol-3-phosphate transporter), member 2 774189 2 2 2 1 0 0 2 0 0 0 0.098 0.84 -2018 GSTA4 glutathione S-transferase A4 351351 1 1 1 0 0 0 0 0 1 0 0.098 0.84 -2019 GCAT glycine C-acetyltransferase (2-amino-3-ketobutyrate coenzyme A ligase) 524745 2 2 2 0 0 2 0 0 0 0 0.098 0.84 -2020 VSTM1 V-set and transmembrane domain containing 1 378729 1 1 1 0 0 0 1 0 0 0 0.098 0.84 -2021 C20orf114 chromosome 20 open reading frame 114 768105 2 2 2 0 0 1 0 1 0 0 0.098 0.84 -2022 GABRR3 gamma-aminobutyric acid (GABA) receptor, rho 3 672282 2 2 2 1 0 0 1 1 0 0 0.099 0.84 -2023 C19orf57 chromosome 19 open reading frame 57 954681 2 2 2 0 0 1 0 0 1 0 0.099 0.84 -2024 OTOF otoferlin 1975779 4 4 3 2 0 4 0 0 0 0 0.099 0.84 -2025 NEDD9 neural precursor cell expressed, developmentally down-regulated 9 1327833 3 3 3 0 0 3 0 0 0 0 0.099 0.84 -2026 SLC39A4 solute carrier family 39 (zinc transporter), member 4 328536 1 1 1 0 0 1 0 0 0 0 0.099 0.84 -2027 ARHGEF15 Rho guanine nucleotide exchange factor (GEF) 15 1275612 3 3 3 0 0 2 0 1 0 0 0.099 0.84 -2028 CBLN4 cerebellin 4 precursor 271752 1 1 1 0 0 1 0 0 0 0 0.099 0.84 -2029 COL5A3 collagen, type V, alpha 3 2456922 4 4 4 0 0 2 0 0 2 0 0.099 0.84 -2030 KRT222 462384 2 2 2 0 1 0 1 0 0 0 0.099 0.84 -2031 PDRG1 p53 and DNA damage regulated 1 167817 1 1 1 1 0 0 1 0 0 0 0.099 0.84 -2032 MNDA myeloid cell nuclear differentiation antigen 632736 2 2 2 1 0 0 1 0 1 0 0.099 0.84 -2033 DND1 dead end homolog 1 (zebrafish) 231192 1 1 1 0 0 1 0 0 0 0 0.099 0.84 -2034 PRR3 proline rich 3 239304 1 1 1 0 0 1 0 0 0 0 0.099 0.84 -2035 PELO pelota homolog (Drosophila) 591162 2 2 2 0 1 1 0 0 0 0 0.099 0.84 -2036 C4orf39 chromosome 4 open reading frame 39 152607 1 1 1 0 0 0 0 1 0 0 0.099 0.84 -2037 CACNA1F calcium channel, voltage-dependent, L type, alpha 1F subunit 2674425 6 6 6 0 2 3 1 0 0 0 0.099 0.84 -2038 TMEM161A transmembrane protein 161A 399009 1 1 1 0 0 0 0 1 0 0 0.099 0.84 -2039 LAYN layilin 539448 2 2 2 1 2 0 0 0 0 0 0.099 0.84 -2040 TAS2R9 taste receptor, type 2, member 9 478101 2 2 2 0 0 2 0 0 0 0 0.099 0.84 -2041 SAMD3 sterile alpha motif domain containing 3 812721 2 2 2 0 1 0 0 0 1 0 0.099 0.84 -2042 RNF19A ring finger protein 19A 1294371 3 3 3 0 0 0 2 1 0 0 0.099 0.84 -2043 TCEA1 transcription elongation factor A (SII), 1 479622 2 2 2 0 0 1 1 0 0 0 0.099 0.84 -2044 CCR7 chemokine (C-C motif) receptor 7 582543 2 2 2 0 0 1 0 0 1 0 0.099 0.84 -2045 PEX6 peroxisomal biogenesis factor 6 1213758 3 3 3 0 1 0 1 0 1 0 0.099 0.84 -2046 ODF1 outer dense fiber of sperm tails 1 385827 1 1 1 0 0 0 0 0 1 0 0.100 0.84 -2047 SLC37A1 solute carrier family 37 (glycerol-3-phosphate transporter), member 1 740727 2 2 2 0 0 1 0 0 1 0 0.100 0.84 -2048 PLA2G6 phospholipase A2, group VI (cytosolic, calcium-independent) 653523 2 2 2 0 0 1 0 0 1 0 0.100 0.84 -2049 RGS12 regulator of G-protein signaling 12 1186887 3 3 3 1 1 1 1 0 0 0 0.100 0.84 -2050 KRTAP9-9 keratin associated protein 9-9 178464 1 1 1 0 0 1 0 0 0 0 0.100 0.84 -2051 RFPL3 ret finger protein-like 3 487734 2 2 2 0 1 0 0 1 0 0 0.100 0.84 -2052 AVPI1 arginine vasopressin-induced 1 219531 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2053 TEKT2 tektin 2 (testicular) 498888 2 2 2 0 2 0 0 0 0 0 0.10 0.84 -2054 JUN jun oncogene 389376 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2055 TCHH trichohyalin 2852382 6 6 6 1 0 3 2 1 0 0 0.10 0.84 -2056 NCR2 natural cytotoxicity triggering receptor 2 403065 1 1 1 1 0 0 1 0 0 0 0.10 0.84 -2057 DEPDC4 DEP domain containing 4 458835 2 2 2 1 0 1 1 0 0 0 0.10 0.84 -2058 MTX2 metaxin 2 399516 1 1 1 0 0 0 0 1 0 0 0.10 0.84 -2059 HIST1H4L histone cluster 1, H4l 160212 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2060 FABP1 fatty acid binding protein 1, liver 202800 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2061 ENPP1 ectonucleotide pyrophosphatase/phosphodiesterase 1 1335438 3 3 3 0 1 0 0 1 1 0 0.10 0.84 -2062 PSG6 pregnancy specific beta-1-glycoprotein 6 658593 2 2 2 0 0 1 1 0 0 0 0.10 0.84 -2063 RALYL RALY RNA binding protein-like 452244 2 2 2 0 1 1 0 0 0 0 0.10 0.84 -2064 UPP1 uridine phosphorylase 1 487227 2 2 2 0 1 0 1 0 0 0 0.10 0.84 -2065 PRX periaxin 1968681 3 3 3 1 0 1 1 0 1 0 0.10 0.84 -2066 PVALB parvalbumin 176943 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2067 ENG endoglin (Osler-Rendu-Weber syndrome 1) 786864 2 2 2 0 1 0 0 0 1 0 0.10 0.84 -2068 RAI1 retinoic acid induced 1 2363127 4 4 4 0 2 0 0 0 2 0 0.10 0.84 -2069 RNF113A ring finger protein 113A 525252 2 2 2 1 1 0 1 0 0 0 0.10 0.84 -2070 TGDS TDP-glucose 4,6-dehydratase 557700 2 2 2 0 0 1 0 1 0 0 0.10 0.84 -2071 SDR39U1 459342 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2072 HIST1H3J histone cluster 1, H3j 210405 1 1 1 0 0 0 1 0 0 0 0.10 0.84 -2073 TMEM182 transmembrane protein 182 359970 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2074 AQP12B aquaporin 12B 269217 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2075 FYCO1 FYVE and coiled-coil domain containing 1 2283528 5 5 5 1 0 1 2 0 2 0 0.10 0.84 -2076 GPR153 G protein-coupled receptor 153 393939 1 1 1 1 0 0 0 0 1 0 0.10 0.84 -2077 REXO2 REX2, RNA exonuclease 2 homolog (S. cerevisiae) 258063 1 1 1 0 0 0 0 1 0 0 0.10 0.84 -2078 SCIN scinderin 741741 2 2 2 0 0 0 0 1 1 0 0.10 0.84 -2079 ZNF565 zinc finger protein 565 768612 2 2 2 0 0 2 0 0 0 0 0.10 0.84 -2080 OR13C2 olfactory receptor, family 13, subfamily C, member 2 487227 2 2 2 0 0 0 2 0 0 0 0.10 0.84 -2081 ST18 suppression of tumorigenicity 18 (breast carcinoma) (zinc finger protein) 1634568 4 4 4 2 2 1 0 0 1 0 0.10 0.84 -2082 MRPL46 mitochondrial ribosomal protein L46 405600 1 1 1 0 0 0 1 0 0 0 0.10 0.84 -2083 RASGEF1C RasGEF domain family, member 1C 378222 1 1 1 1 1 0 0 0 0 0 0.10 0.84 -2084 DMD dystrophin (muscular dystrophy, Duchenne and Becker types) 5894889 11 10 11 3 2 3 3 2 1 0 0.10 0.84 -2085 SH2D4B SH2 domain containing 4B 442104 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2086 LILRA3 leukocyte immunoglobulin-like receptor, subfamily A (without TM domain), member 3 683436 2 2 2 0 0 2 0 0 0 0 0.10 0.84 -2087 TSEN15 209391 1 1 1 0 1 0 0 0 0 0 0.10 0.84 -2088 APEX2 APEX nuclease (apurinic/apyrimidinic endonuclease) 2 780780 2 2 2 0 0 2 0 0 0 0 0.10 0.84 -2089 AKAP8L A kinase (PRKA) anchor protein 8-like 850239 2 2 2 1 1 0 1 0 0 0 0.10 0.84 -2090 MSI2 musashi homolog 2 (Drosophila) 541476 2 2 2 0 0 1 1 0 0 0 0.10 0.84 -2091 PDCL2 phosducin-like 2 361998 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2092 DBC1 deleted in bladder cancer 1 1149369 3 3 3 1 2 1 0 0 0 0 0.10 0.84 -2093 CNGA3 cyclic nucleotide gated channel alpha 3 1071291 3 3 3 0 1 1 0 1 0 0 0.10 0.84 -2094 HNRNPL heterogeneous nuclear ribonucleoprotein L 663156 2 2 2 0 1 0 0 0 1 0 0.10 0.84 -2095 C19orf29 chromosome 19 open reading frame 29 394953 1 1 1 0 0 0 1 0 0 0 0.10 0.84 -2096 CALR3 calreticulin 3 601809 2 2 2 0 0 2 0 0 0 0 0.10 0.84 -2097 TBC1D22A TBC1 domain family, member 22A 564291 2 2 2 0 0 1 0 1 0 0 0.10 0.84 -2098 CHEK2 CHK2 checkpoint homolog (S. pombe) 829959 2 2 2 0 0 1 0 1 0 0 0.10 0.84 -2099 API5 apoptosis inhibitor 5 789906 2 2 2 0 0 0 2 0 0 0 0.10 0.84 -2100 CREB3L1 cAMP responsive element binding protein 3-like 1 644904 2 2 2 0 0 1 1 0 0 0 0.10 0.84 -2101 GSTO2 glutathione S-transferase omega 2 364026 1 1 1 0 0 0 1 0 0 0 0.10 0.84 -2102 CLN3 ceroid-lipofuscinosis, neuronal 3, juvenile (Batten, Spielmeyer-Vogt disease) 689520 2 2 2 0 0 0 1 1 0 0 0.10 0.84 -2103 RELN reelin 5361018 10 10 10 3 2 3 3 0 2 0 0.10 0.84 -2104 SHE Src homology 2 domain containing E 565812 2 2 2 1 1 1 0 0 0 0 0.10 0.84 -2105 ERGIC1 endoplasmic reticulum-golgi intermediate compartment (ERGIC) 1 450723 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2106 SNTG1 syntrophin, gamma 1 822354 2 2 2 2 1 0 0 0 1 0 0.10 0.84 -2107 ABCF2 ATP-binding cassette, sub-family F (GCN20), member 2 998283 3 3 3 0 1 0 1 0 1 0 0.10 0.84 -2108 LILRA1 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 1 763542 2 2 2 0 2 0 0 0 0 0 0.10 0.84 -2109 OR52K2 olfactory receptor, family 52, subfamily K, member 2 481143 2 2 2 0 0 1 1 0 0 0 0.10 0.84 -2110 TSPAN17 tetraspanin 17 461877 1 1 1 2 0 0 0 0 1 0 0.10 0.84 -2111 KRT80 keratin 80 677352 2 2 2 0 0 2 0 0 0 0 0.10 0.84 -2112 SGK1 serum/glucocorticoid regulated kinase 1 953667 2 2 2 1 0 1 0 0 1 0 0.10 0.84 -2113 CD300LG CD300 molecule-like family member g 445146 1 1 1 0 0 0 1 0 0 0 0.10 0.84 -2114 DSC3 desmocollin 3 450216 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2115 TSKS 872547 2 2 2 0 2 0 0 0 0 0 0.10 0.84 -2116 COX5A cytochrome c oxidase subunit Va 185055 1 1 1 0 1 0 0 0 0 0 0.10 0.84 -2117 ESR2 estrogen receptor 2 (ER beta) 867477 2 2 2 1 1 0 1 0 0 0 0.10 0.84 -2118 SYT4 synaptotagmin IV 656058 2 2 2 0 0 2 0 0 0 0 0.10 0.84 -2119 SARS2 seryl-tRNA synthetase 2, mitochondrial 787371 2 2 2 0 0 2 0 0 0 0 0.10 0.84 -2120 GJB2 gap junction protein, beta 2, 26kDa 347295 1 1 1 0 0 0 1 0 0 0 0.10 0.84 -2121 GABRQ gamma-aminobutyric acid (GABA) receptor, theta 981045 3 3 3 1 2 1 0 0 0 0 0.10 0.84 -2122 SCYL2 SCY1-like 2 (S. cerevisiae) 1449006 3 3 3 0 0 0 2 0 1 0 0.10 0.84 -2123 ATP2B1 ATPase, Ca++ transporting, plasma membrane 1 1977807 4 4 4 2 1 0 2 1 0 0 0.10 0.84 -2124 C5orf42 chromosome 5 open reading frame 42 3265587 6 6 6 0 1 2 2 0 1 0 0.10 0.84 -2125 MTMR4 myotubularin related protein 4 1855620 4 4 4 0 1 2 1 0 0 0 0.10 0.84 -2126 EDEM3 ER degradation enhancer, mannosidase alpha-like 3 1387659 3 3 3 0 0 0 1 1 1 0 0.10 0.84 -2127 TRERF1 transcriptional regulating factor 1 1779063 3 3 3 4 0 1 0 0 2 0 0.10 0.84 -2128 F13A1 coagulation factor XIII, A1 polypeptide 1143285 3 3 3 0 1 2 0 0 0 0 0.10 0.84 -2129 LRRC28 leucine rich repeat containing 28 577980 2 2 2 0 0 1 1 0 0 0 0.10 0.84 -2130 ATP6V1G2 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G2 187083 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2131 PSTK phosphoseryl-tRNA kinase 442611 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2132 SLC35D2 solute carrier family 35, member D2 452751 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2133 SPIN1 spindlin 1 410163 1 1 1 1 0 0 1 0 0 0 0.10 0.84 -2134 FBXL6 F-box and leucine-rich repeat protein 6 372645 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2135 C2orf89 646932 2 2 2 0 0 1 1 0 0 0 0.10 0.84 -2136 ALKBH7 alkB, alkylation repair homolog 7 (E. coli) 240318 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2137 CDK11B 478608 2 2 2 0 0 0 1 0 1 0 0.10 0.84 -2138 FANCA Fanconi anemia, complementation group A 1884519 2 2 2 0 0 0 0 0 2 0 0.10 0.84 -2139 IGLON5 296088 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2140 PPP1R1A protein phosphatase 1, regulatory (inhibitor) subunit 1A 231192 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2141 QSER1 glutamine and serine rich 1 2662764 7 6 7 1 2 2 3 0 0 0 0.10 0.84 -2142 IMP4 IMP4, U3 small nucleolar ribonucleoprotein, homolog (yeast) 354393 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2143 C6orf211 chromosome 6 open reading frame 211 682422 2 2 2 0 1 1 0 0 0 0 0.10 0.84 -2144 FAM102A family with sequence similarity 102, member A 388362 1 1 1 0 0 1 0 0 0 0 0.10 0.84 -2145 OR4X2 olfactory receptor, family 4, subfamily X, member 2 464412 2 2 2 0 1 1 0 0 0 0 0.10 0.84 -2146 MYL1 myosin, light chain 1, alkali; skeletal, fast 312312 1 1 1 0 0 0 0 1 0 0 0.10 0.84 -2147 STC1 stanniocalcin 1 385320 1 1 1 0 0 0 0 0 1 0 0.10 0.84 -2148 DMGDH dimethylglycine dehydrogenase 1297920 3 3 3 0 1 0 1 0 1 0 0.10 0.84 -2149 RAB1A RAB1A, member RAS oncogene family 311805 1 1 1 0 0 0 1 0 0 0 0.10 0.84 -2150 LILRA2 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 2 724503 2 2 2 1 0 2 0 0 0 0 0.10 0.84 -2151 TRIM46 tripartite motif-containing 46 1006395 3 3 3 1 1 1 0 0 1 0 0.10 0.84 -2152 PLEKHA1 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 1 638313 2 2 2 0 0 0 1 1 0 0 0.10 0.84 -2153 SOX10 SRY (sex determining region Y)-box 10 475566 1 1 1 1 0 0 0 0 1 0 0.10 0.84 -2154 OR52A5 olfactory receptor, family 52, subfamily A, member 5 483678 2 2 2 0 1 0 1 0 0 0 0.10 0.84 -2155 FAM124B family with sequence similarity 124B 373152 1 1 1 0 0 0 1 0 0 0 0.11 0.84 -2156 TLN1 talin 1 3952065 7 7 7 1 0 1 2 1 3 0 0.11 0.84 -2157 DLGAP4 discs, large (Drosophila) homolog-associated protein 4 1570686 4 4 4 0 2 1 1 0 0 0 0.11 0.84 -2158 CACNG3 calcium channel, voltage-dependent, gamma subunit 3 488748 2 2 2 0 1 1 0 0 0 0 0.11 0.84 -2159 OR1D4 olfactory receptor, family 1, subfamily D, member 4 505479 2 2 2 0 2 0 0 0 0 0 0.11 0.84 -2160 RS1 retinoschisis (X-linked, juvenile) 1 354393 1 1 1 0 0 0 1 0 0 0 0.11 0.84 -2161 SMAD3 SMAD family member 3 559221 2 2 2 0 1 1 0 0 0 0 0.11 0.84 -2162 ABCB11 ATP-binding cassette, sub-family B (MDR/TAP), member 11 2065011 4 4 4 0 0 2 1 0 1 0 0.11 0.84 -2163 DNAH9 dynein, axonemal, heavy chain 9 6734988 13 12 13 2 4 5 3 0 1 0 0.11 0.84 -2164 PSG11 pregnancy specific beta-1-glycoprotein 11 521196 2 2 2 0 0 1 1 0 0 0 0.11 0.84 -2165 SNAI2 snail homolog 2 (Drosophila) 415233 1 1 1 0 0 0 0 0 1 0 0.11 0.84 -2166 CCDC24 coiled-coil domain containing 24 417768 1 1 1 0 0 1 0 0 0 0 0.11 0.84 -2167 TSKU tsukushin 477594 1 1 1 0 0 0 0 0 1 0 0.11 0.84 -2168 ATP1B4 ATPase, (Na+)/K+ transporting, beta 4 polypeptide 560742 2 2 2 0 1 1 0 0 0 0 0.11 0.84 -2169 KIAA1267 KIAA1267 1655355 3 3 3 0 0 0 0 0 3 0 0.11 0.84 -2170 TMEM119 transmembrane protein 119 367068 1 1 1 0 0 0 1 0 0 0 0.11 0.84 -2171 CYLC1 cylicin, basic protein of sperm head cytoskeleton 1 979017 3 3 3 0 0 1 2 0 0 0 0.11 0.84 -2172 MSMP 219024 1 1 1 1 1 0 0 0 0 0 0.11 0.84 -2173 CDYL chromodomain protein, Y-like 828438 2 2 2 0 1 0 1 0 0 0 0.11 0.84 -2174 ZNF740 zinc finger protein 740 307242 1 1 1 0 0 0 1 0 0 0 0.11 0.84 -2175 CASP6 caspase 6, apoptosis-related cysteine peptidase 439062 1 1 1 0 0 0 0 0 1 0 0.11 0.84 -2176 KCNK5 potassium channel, subfamily K, member 5 706251 2 2 2 0 0 1 1 0 0 0 0.11 0.84 -2177 HOOK1 hook homolog 1 (Drosophila) 1030731 3 3 3 0 1 1 0 1 0 0 0.11 0.84 -2178 KIAA0947 3344679 7 6 7 1 0 2 1 1 1 2 0.11 0.84 -2179 C7orf10 chromosome 7 open reading frame 10 606879 2 2 2 0 0 0 1 0 1 0 0.11 0.84 -2180 WDR26 WD repeat domain 26 819312 2 2 2 3 0 1 1 0 0 0 0.11 0.84 -2181 GLRX glutaredoxin (thioltransferase) 166803 1 1 1 0 0 0 1 0 0 0 0.11 0.84 -2182 FAM196A 725010 2 2 2 0 0 0 0 1 1 0 0.11 0.84 -2183 PDS5A PDS5, regulator of cohesion maintenance, homolog A (S. cerevisiae) 1802385 3 3 3 1 0 0 2 0 1 0 0.11 0.84 -2184 APOL2 apolipoprotein L, 2 520182 2 2 2 0 1 0 1 0 0 0 0.11 0.84 -2185 TGM7 transglutaminase 7 1012986 3 3 3 0 2 1 0 0 0 0 0.11 0.84 -2186 LOH12CR1 loss of heterozygosity, 12, chromosomal region 1 306735 1 1 1 0 1 0 0 0 0 0 0.11 0.84 -2187 HOXD11 homeobox D11 209898 1 1 1 0 1 0 0 0 0 0 0.11 0.84 -2188 SP100 SP100 nuclear antigen 1667016 4 4 4 0 1 1 2 0 0 0 0.11 0.84 -2189 PHEX phosphate regulating endopeptidase homolog, X-linked (hypophosphatemia, vitamin D resistant rickets) 1185366 3 3 3 0 1 1 1 0 0 0 0.11 0.84 -2190 POTEF 1487538 3 3 3 0 1 1 0 0 1 0 0.11 0.84 -2191 NQO1 NAD(P)H dehydrogenase, quinone 1 430443 1 1 1 0 0 0 1 0 0 0 0.11 0.84 -2192 PAFAH1B3 platelet-activating factor acetylhydrolase, isoform Ib, gamma subunit 29kDa 273780 1 1 1 0 0 0 1 0 0 0 0.11 0.84 -2193 AIDA 429429 1 1 1 0 0 0 1 0 0 0 0.11 0.84 -2194 ACHE acetylcholinesterase (Yt blood group) 829452 2 2 2 0 0 1 1 0 0 0 0.11 0.84 -2195 MUS81 MUS81 endonuclease homolog (S. cerevisiae) 625638 2 2 2 0 1 1 0 0 0 0 0.11 0.84 -2196 SGCZ sarcoglycan zeta 470496 1 1 1 1 0 0 0 0 1 0 0.11 0.84 -2197 OR5T1 olfactory receptor, family 5, subfamily T, member 1 499395 2 2 2 0 0 1 1 0 0 0 0.11 0.84 -2198 COQ9 coenzyme Q9 homolog (S. cerevisiae) 464412 1 1 1 0 0 0 0 0 1 0 0.11 0.84 -2199 CAD carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase 3430869 7 7 7 0 2 3 0 1 1 0 0.11 0.84 -2200 CCDC104 coiled-coil domain containing 104 541983 2 2 2 1 0 0 1 1 0 0 0.11 0.84 -2201 ABHD2 abhydrolase domain containing 2 665184 2 2 2 0 1 1 0 0 0 0 0.11 0.84 -2202 METTL2B methyltransferase like 2B 594711 2 2 2 1 0 0 2 0 0 0 0.11 0.84 -2203 KCNJ15 potassium inwardly-rectifying channel, subfamily J, member 15 573924 2 2 2 0 2 0 0 0 0 0 0.11 0.84 -2204 NRBP1 nuclear receptor binding protein 1 849732 2 2 2 0 0 0 0 1 1 0 0.11 0.84 -2205 CYP4F8 cytochrome P450, family 4, subfamily F, polypeptide 8 816270 2 2 2 0 1 0 0 1 0 0 0.11 0.84 -2206 FAM173B 365547 1 1 1 0 0 0 0 1 0 0 0.11 0.84 -2207 C14orf145 chromosome 14 open reading frame 145 1712139 3 3 3 0 0 1 0 0 2 0 0.11 0.85 -2208 C1orf96 chromosome 1 open reading frame 96 230178 1 1 1 0 0 0 0 1 0 0 0.11 0.85 -2209 HAMP hepcidin antimicrobial peptide 135369 1 1 1 0 0 0 0 1 0 0 0.11 0.85 -2210 IL1RL2 interleukin 1 receptor-like 2 898404 2 2 2 0 0 1 0 1 0 0 0.11 0.85 -2211 C14orf68 chromosome 14 open reading frame 68 454272 1 1 1 1 0 1 0 0 0 0 0.11 0.85 -2212 PRR12 proline rich 12 921726 2 2 2 1 0 1 1 0 0 0 0.11 0.85 -2213 SMTN smoothelin 1175733 3 3 3 0 0 1 0 1 1 0 0.11 0.85 -2214 CD40LG CD40 ligand (TNF superfamily, member 5, hyper-IgM syndrome) 408642 1 1 1 0 0 1 0 0 0 0 0.11 0.85 -2215 MYOZ1 myozenin 1 466440 1 1 1 0 0 0 0 0 1 0 0.11 0.85 -2216 ESAM endothelial cell adhesion molecule 540969 2 2 2 0 2 0 0 0 0 0 0.11 0.85 -2217 KLHDC7A kelch domain containing 7A 833508 2 2 2 0 0 0 2 0 0 0 0.11 0.85 -2218 CD300E CD300e molecule 321438 1 1 1 1 0 1 0 0 0 0 0.11 0.85 -2219 GPD1 glycerol-3-phosphate dehydrogenase 1 (soluble) 548574 2 2 2 0 0 2 0 0 0 0 0.11 0.85 -2220 SLC20A2 solute carrier family 20 (phosphate transporter), member 2 987129 2 2 2 1 1 0 0 0 1 0 0.11 0.85 -2221 CAPN12 calpain 12 326508 1 1 1 0 0 0 1 0 0 0 0.11 0.85 -2222 ZNF157 zinc finger protein 157 779259 2 2 2 0 0 0 2 0 0 0 0.11 0.85 -2223 C3orf36 chromosome 3 open reading frame 36 254514 1 1 1 0 0 0 1 0 0 0 0.11 0.85 -2224 XRN2 5'-3' exoribonuclease 2 1467258 3 3 3 0 1 1 0 0 1 0 0.11 0.85 -2225 PLXNA4 plexin A4 3083067 6 6 6 4 1 5 0 0 0 0 0.11 0.85 -2226 CHD9 chromodomain helicase DNA binding protein 9 4040283 7 7 7 1 0 0 4 2 1 0 0.11 0.85 -2227 FERD3L Fer3-like (Drosophila) 256035 1 1 1 1 0 0 0 1 0 0 0.11 0.85 -2228 MFSD4 major facilitator superfamily domain containing 4 684450 2 2 2 0 0 1 1 0 0 0 0.11 0.85 -2229 PNPLA3 patatin-like phospholipase domain containing 3 654537 4 2 4 0 1 0 0 0 0 3 0.11 0.85 -2230 ZNF791 zinc finger protein 791 885729 2 2 2 2 0 2 0 0 0 0 0.11 0.85 -2231 C12orf40 chromosome 12 open reading frame 40 1019577 3 3 3 0 1 1 1 0 0 0 0.11 0.85 -2232 TC2N tandem C2 domains, nuclear 769119 2 2 2 1 1 0 0 1 0 0 0.11 0.85 -2233 MTM1 myotubularin 1 947076 2 2 2 0 0 1 0 1 0 0 0.11 0.85 -2234 ASPH aspartate beta-hydroxylase 1524042 3 3 3 0 0 1 0 0 2 0 0.11 0.85 -2235 MAGED1 melanoma antigen family D, 1 1294371 2 2 2 0 0 1 0 0 1 0 0.11 0.85 -2236 MYL12A 267696 2 1 2 0 1 0 1 0 0 0 0.11 0.85 -2237 FMO2 flavin containing monooxygenase 2 (non-functional) 734136 2 2 2 0 0 0 1 1 0 0 0.11 0.85 -2238 INTS8 integrator complex subunit 8 1501734 3 3 3 0 0 0 0 3 0 0 0.11 0.85 -2239 ZNF528 zinc finger protein 528 964821 3 3 3 0 0 1 2 0 0 0 0.11 0.85 -2240 IL21 interleukin 21 258063 1 1 1 0 1 0 0 0 0 0 0.11 0.85 -2241 SYPL2 synaptophysin-like 2 357942 1 1 1 0 1 0 0 0 0 0 0.11 0.85 -2242 FUT3 fucosyltransferase 3 (galactoside 3(4)-L-fucosyltransferase, Lewis blood group) 552630 2 2 2 0 2 0 0 0 0 0 0.11 0.85 -2243 GPT2 glutamic pyruvate transaminase (alanine aminotransferase) 2 694083 2 2 2 0 0 2 0 0 0 0 0.11 0.85 -2244 PHLPP2 2050308 4 4 4 0 0 3 0 0 1 0 0.11 0.85 -2245 SLC13A5 solute carrier family 13 (sodium-dependent citrate transporter), member 5 822861 2 2 2 1 0 1 0 0 1 0 0.11 0.85 -2246 ATP9A ATPase, class II, type 9A 1614288 3 3 3 0 0 1 0 0 2 0 0.11 0.85 -2247 HIBCH 3-hydroxyisobutyryl-Coenzyme A hydrolase 616512 2 2 2 0 0 0 2 0 0 0 0.11 0.85 -2248 SMOC2 SPARC related modular calcium binding 2 624117 2 2 2 0 0 2 0 0 0 0 0.11 0.85 -2249 FAM40A family with sequence similarity 40, member A 1178268 2 2 2 0 0 1 0 0 1 0 0.11 0.85 -2250 HOOK2 hook homolog 2 (Drosophila) 978510 2 2 2 0 0 1 0 0 1 0 0.11 0.85 -2251 HNF4A hepatocyte nuclear factor 4, alpha 755430 2 2 2 0 0 1 1 0 0 0 0.11 0.85 -2252 HIST1H3D histone cluster 1, H3d 210405 1 1 1 0 0 1 0 0 0 0 0.11 0.85 -2253 ENOPH1 enolase-phosphatase 1 386841 1 1 1 0 0 0 1 0 0 0 0.11 0.85 -2254 OSBPL2 oxysterol binding protein-like 2 736671 2 2 2 0 0 1 1 0 0 0 0.11 0.85 -2255 GAP43 growth associated protein 43 369603 1 1 1 0 1 0 0 0 0 0 0.11 0.85 -2256 PPP4C protein phosphatase 4 (formerly X), catalytic subunit 432978 1 1 1 0 0 0 0 1 0 0 0.11 0.85 -2257 MMD monocyte to macrophage differentiation-associated 362505 1 1 1 0 1 0 0 0 0 0 0.11 0.85 -2258 SLCO1B1 solute carrier organic anion transporter family, member 1B1 1080924 3 3 3 0 0 1 1 0 1 0 0.11 0.85 -2259 DPH1 DPH1 homolog (S. cerevisiae) 359970 1 1 1 0 0 0 1 0 0 0 0.11 0.85 -2260 TADA2B 404586 1 1 1 1 0 0 0 0 1 0 0.11 0.85 -2261 SERPINE3 658593 2 2 2 0 0 2 0 0 0 0 0.11 0.85 -2262 PRSS50 459849 1 1 1 0 0 0 0 0 1 0 0.11 0.85 -2263 HOXB2 homeobox B2 531336 2 2 2 0 2 0 0 0 0 0 0.11 0.85 -2264 STAU1 staufen, RNA binding protein, homolog 1 (Drosophila) 912600 2 2 2 0 0 1 1 0 0 0 0.11 0.85 -2265 OR6B1 olfactory receptor, family 6, subfamily B, member 1 476580 1 1 1 0 0 0 0 0 1 0 0.11 0.85 -2266 C2orf68 143481 1 1 1 0 0 0 0 0 1 0 0.11 0.85 -2267 ZMYM3 zinc finger, MYM-type 3 2139540 4 4 4 0 1 1 1 0 1 0 0.11 0.85 -2268 FGF11 fibroblast growth factor 11 254007 1 1 1 0 1 0 0 0 0 0 0.11 0.85 -2269 CA11 carbonic anhydrase XI 469482 1 1 1 1 0 0 0 0 1 0 0.11 0.85 -2270 SLC2A3 solute carrier family 2 (facilitated glucose transporter), member 3 776217 2 2 2 0 0 0 1 1 0 0 0.11 0.85 -2271 C1orf50 chromosome 1 open reading frame 50 211419 1 1 1 0 0 1 0 0 0 0 0.11 0.85 -2272 PICK1 protein interacting with PRKCA 1 279357 1 1 1 0 0 0 1 0 0 0 0.11 0.85 -2273 REG3G regenerating islet-derived 3 gamma 277836 1 1 1 0 1 0 0 0 0 0 0.11 0.85 -2274 ARHGAP11A Rho GTPase activating protein 11A 1593501 4 4 4 0 2 0 2 0 0 0 0.11 0.85 -2275 TCF19 transcription factor 19 (SC1) 461877 1 1 1 0 0 0 0 0 1 0 0.11 0.85 -2276 HIST2H2AC histone cluster 2, H2ac 199758 1 1 1 4 0 1 0 0 0 0 0.11 0.85 -2277 TOMM22 translocase of outer mitochondrial membrane 22 homolog (yeast) 164268 1 1 1 0 1 0 0 0 0 0 0.11 0.85 -2278 KRT9 keratin 9 (epidermolytic palmoplantar keratoderma) 853788 2 2 2 3 0 1 0 1 0 0 0.11 0.85 -2279 KLRC2 killer cell lectin-like receptor subfamily C, member 2 365040 1 1 1 1 0 0 0 0 1 0 0.11 0.85 -2280 MKRN3 makorin, ring finger protein, 3 752388 2 2 2 1 1 0 0 1 0 0 0.11 0.85 -2281 SLC2A10 solute carrier family 2 (facilitated glucose transporter), member 10 830466 2 2 2 0 0 1 0 1 0 0 0.11 0.85 -2282 HOMER3 homer homolog 3 (Drosophila) 182520 1 1 1 0 0 0 0 0 1 0 0.11 0.85 -2283 LRRC30 leucine rich repeat containing 30 461370 1 1 1 0 0 0 1 0 0 0 0.11 0.85 -2284 KHK ketohexokinase (fructokinase) 492804 1 1 1 0 0 0 0 0 1 0 0.11 0.85 -2285 CHRNA10 cholinergic receptor, nicotinic, alpha 10 422838 1 1 1 0 0 0 0 0 1 0 0.11 0.85 -2286 MDGA1 MAM domain containing glycosylphosphatidylinositol anchor 1 1182831 2 2 2 1 0 1 0 0 1 0 0.11 0.85 -2287 CCDC102A coiled-coil domain containing 102A 438048 1 1 1 0 0 0 0 1 0 0 0.11 0.85 -2288 TTC15 tetratricopeptide repeat domain 15 631722 2 2 2 0 1 0 1 0 0 0 0.11 0.85 -2289 PSMC6 proteasome (prosome, macropain) 26S subunit, ATPase, 6 624624 2 2 2 1 0 1 1 0 0 0 0.11 0.85 -2290 TMEM87A transmembrane protein 87A 886236 2 2 2 0 0 0 2 0 0 0 0.11 0.85 -2291 RBM6 RNA binding motif protein 6 1750164 4 4 4 0 1 1 2 0 0 0 0.11 0.85 -2292 CLCN3 chloride channel 3 1345071 3 3 3 1 2 0 1 0 0 0 0.11 0.85 -2293 ACOT8 acyl-CoA thioesterase 8 439062 1 1 1 0 0 0 1 0 0 0 0.11 0.85 -2294 SVEP1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 5120700 8 7 8 1 0 0 4 2 2 0 0.11 0.85 -2295 SYP synaptophysin 423345 1 1 1 0 0 1 0 0 0 0 0.11 0.85 -2296 TBC1D4 TBC1 domain family, member 4 1843452 4 4 4 0 2 1 0 0 1 0 0.11 0.85 -2297 LMTK3 lemur tyrosine kinase 3 693069 2 2 2 2 1 0 0 0 1 0 0.11 0.85 -2298 DPP3 dipeptidyl-peptidase 3 1071291 3 3 3 0 0 3 0 0 0 0 0.11 0.85 -2299 TTLL12 tubulin tyrosine ligase-like family, member 12 482664 1 1 1 1 0 0 0 0 1 0 0.11 0.85 -2300 OR2B3 479622 1 1 1 0 0 0 0 0 1 0 0.11 0.85 -2301 C4orf17 chromosome 4 open reading frame 17 563784 2 2 2 0 0 0 1 1 0 0 0.11 0.85 -2302 C3orf70 284427 1 1 1 0 1 0 0 0 0 0 0.11 0.85 -2303 PEG10 paternally expressed 10 451737 1 1 1 0 0 0 0 0 1 0 0.11 0.85 -2304 NFASC neurofascin homolog (chicken) 2085798 4 4 4 0 0 0 2 0 2 0 0.11 0.85 -2305 LAMA2 laminin, alpha 2 (merosin, congenital muscular dystrophy) 4818021 7 7 7 0 1 2 2 0 2 0 0.11 0.85 -2306 CNDP1 carnosine dipeptidase 1 (metallopeptidase M20 family) 797004 2 2 2 0 0 0 1 1 0 0 0.11 0.85 -2307 KIAA1715 KIAA1715 676845 2 2 2 0 1 0 0 1 0 0 0.11 0.85 -2308 HHAT hedgehog acyltransferase 773682 2 2 2 0 0 1 0 1 0 0 0.11 0.85 -2309 HSD17B10 hydroxysteroid (17-beta) dehydrogenase 10 394953 1 1 1 0 0 1 0 0 0 0 0.11 0.85 -2310 LMAN1 lectin, mannose-binding, 1 717912 2 2 2 0 1 0 0 0 1 0 0.11 0.85 -2311 MRPL32 mitochondrial ribosomal protein L32 239811 1 1 1 0 1 0 0 0 0 0 0.11 0.85 -2312 UMOD uromodulin (uromucoid, Tamm-Horsfall glycoprotein) 743769 2 2 2 0 0 1 1 0 0 0 0.11 0.85 -2313 IRAK2 interleukin-1 receptor-associated kinase 2 882180 2 2 2 0 0 2 0 0 0 0 0.11 0.85 -2314 WISP1 WNT1 inducible signaling pathway protein 1 518661 2 2 2 1 0 2 0 0 0 0 0.11 0.85 -2315 SPPL3 555165 2 2 2 0 1 1 0 0 0 0 0.11 0.85 -2316 HRH2 histamine receptor H2 549588 2 2 2 0 1 1 0 0 0 0 0.11 0.85 -2317 CD40 CD40 molecule, TNF receptor superfamily member 5 441090 1 1 1 0 0 0 0 0 1 0 0.11 0.86 -2318 TTC19 tetratricopeptide repeat domain 19 437541 1 1 1 0 0 0 0 0 1 0 0.11 0.86 -2319 ZNF695 zinc finger protein 695 792948 2 2 2 0 0 0 1 0 1 0 0.11 0.86 -2320 C17orf78 chromosome 17 open reading frame 78 371124 1 1 1 0 0 0 0 0 1 0 0.11 0.86 -2321 RPLP2 ribosomal protein, large, P2 120159 1 1 1 0 0 0 0 1 0 0 0.11 0.86 -2322 KCNK13 potassium channel, subfamily K, member 13 454779 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2323 C6orf136 chromosome 6 open reading frame 136 454272 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2324 F2 coagulation factor II (thrombin) 837564 2 2 2 1 0 1 0 1 0 0 0.12 0.86 -2325 GUCA1C guanylate cyclase activator 1C 327522 1 1 1 0 0 0 0 1 0 0 0.12 0.86 -2326 MCTS1 malignant T cell amplified sequence 1 288990 1 1 1 0 1 0 0 0 0 0 0.12 0.86 -2327 PGD phosphogluconate dehydrogenase 756444 2 2 2 0 1 0 1 0 0 0 0.12 0.86 -2328 BLOC1S1 biogenesis of lysosome-related organelles complex-1, subunit 1 199758 1 1 1 0 0 0 1 0 0 0 0.12 0.86 -2329 IFI16 interferon, gamma-inducible protein 16 1043406 3 3 3 0 1 1 1 0 0 0 0.12 0.86 -2330 ELMOD1 ELMO/CED-12 domain containing 1 416754 1 1 1 0 0 0 1 0 0 0 0.12 0.86 -2331 CEP120 1541787 3 3 3 0 0 0 2 0 1 0 0.12 0.86 -2332 ATP2B3 ATPase, Ca++ transporting, plasma membrane 3 1700478 4 4 4 1 1 2 1 0 0 0 0.12 0.86 -2333 TAS2R10 taste receptor, type 2, member 10 470496 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2334 SVIL supervillin 3393351 6 6 6 0 1 2 2 0 1 0 0.12 0.86 -2335 ESRP2 919191 2 2 2 0 0 2 0 0 0 0 0.12 0.86 -2336 SCARB1 scavenger receptor class B, member 1 744276 2 2 2 0 1 0 1 0 0 0 0.12 0.86 -2337 OR56B4 olfactory receptor, family 56, subfamily B, member 4 488748 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2338 PCDHGA1 protocadherin gamma subfamily A, 1 1451541 3 3 3 2 1 1 0 1 0 0 0.12 0.86 -2339 LCMT1 leucine carboxyl methyltransferase 1 488241 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2340 POLD4 polymerase (DNA-directed), delta 4 139425 1 1 1 0 0 0 0 1 0 0 0.12 0.86 -2341 ZDHHC21 zinc finger, DHHC-type containing 21 418782 1 1 1 0 0 1 0 0 0 0 0.12 0.86 -2342 VPS4B vacuolar protein sorting 4 homolog B (S. cerevisiae) 683436 2 2 2 0 0 1 1 0 0 0 0.12 0.86 -2343 NPY neuropeptide Y 155142 1 1 1 0 1 0 0 0 0 0 0.12 0.86 -2344 YLPM1 YLP motif containing 1 3255447 6 6 6 0 2 0 3 0 1 0 0.12 0.86 -2345 OR10AD1 olfactory receptor, family 10, subfamily AD, member 1 485706 1 1 1 0 0 0 0 1 0 0 0.12 0.86 -2346 CD3E CD3e molecule, epsilon (CD3-TCR complex) 332592 1 1 1 0 0 0 1 0 0 0 0.12 0.86 -2347 SLC4A2 solute carrier family 4, anion exchanger, member 2 (erythrocyte membrane protein band 3-like 1) 1667016 4 4 4 0 0 2 2 0 0 0 0.12 0.86 -2348 C7orf57 chromosome 7 open reading frame 57 402558 1 1 1 0 0 0 0 1 0 0 0.12 0.86 -2349 CHRM1 cholinergic receptor, muscarinic 1 703209 2 2 2 0 1 0 1 0 0 0 0.12 0.86 -2350 DOCK11 dedicator of cytokinesis 11 3208296 6 6 6 1 2 1 1 0 2 0 0.12 0.86 -2351 GALR2 galanin receptor 2 194181 1 1 1 0 0 1 0 0 0 0 0.12 0.86 -2352 DGCR2 DiGeorge syndrome critical region gene 2 433992 1 1 1 0 0 0 0 1 0 0 0.12 0.86 -2353 PRR5 proline rich 5 (renal) 155142 1 1 1 0 1 0 0 0 0 0 0.12 0.86 -2354 DENND1C DENN/MADD domain containing 1C 956202 2 2 2 0 0 1 0 0 1 0 0.12 0.86 -2355 GLYCTK glycerate kinase 721968 2 2 2 0 0 1 1 0 0 0 0.12 0.86 -2356 SIGLEC8 sialic acid binding Ig-like lectin 8 774696 2 2 2 0 1 0 1 0 0 0 0.12 0.86 -2357 UNC13A unc-13 homolog A (C. elegans) 1950936 4 4 4 2 1 2 0 0 1 0 0.12 0.86 -2358 FAM3C family with sequence similarity 3, member C 365040 1 1 1 1 0 0 1 0 0 0 0.12 0.86 -2359 IL20RB interleukin 20 receptor beta 488748 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2360 SLC25A35 solute carrier family 25, member 35 462384 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2361 DHX37 DEAH (Asp-Glu-Ala-His) box polypeptide 37 1508832 3 3 2 2 0 1 0 0 2 0 0.12 0.86 -2362 PELI3 pellino homolog 3 (Drosophila) 498888 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2363 CYP4B1 cytochrome P450, family 4, subfamily B, polypeptide 1 804609 2 2 2 0 0 0 2 0 0 0 0.12 0.86 -2364 LRRC46 leucine rich repeat containing 46 505986 1 1 1 1 0 0 0 0 1 0 0.12 0.86 -2365 SLC39A6 solute carrier family 39 (zinc transporter), member 6 1174212 3 3 3 0 0 1 2 0 0 0 0.12 0.86 -2366 AKR7A3 aldo-keto reductase family 7, member A3 (aflatoxin aldehyde reductase) 377715 1 1 1 0 0 0 0 1 0 0 0.12 0.86 -2367 ICOSLG inducible T-cell co-stimulator ligand 281385 1 1 1 0 0 1 0 0 0 0 0.12 0.86 -2368 RP2 retinitis pigmentosa 2 (X-linked recessive) 490269 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2369 CFHR2 complement factor H-related 2 390897 1 1 1 0 0 0 1 0 0 0 0.12 0.86 -2370 S100A6 S100 calcium binding protein A6 142467 1 1 1 0 0 1 0 0 0 0 0.12 0.86 -2371 ACTG2 actin, gamma 2, smooth muscle, enteric 589641 2 2 2 0 0 2 0 0 0 0 0.12 0.86 -2372 C4orf43 324480 1 1 1 0 0 1 0 0 0 0 0.12 0.86 -2373 TOR1A torsin family 1, member A (torsin A) 424359 1 1 1 0 0 1 0 0 0 0 0.12 0.86 -2374 ZMAT5 zinc finger, matrin type 5 263640 1 1 1 0 1 0 0 0 0 0 0.12 0.86 -2375 ARL5A ADP-ribosylation factor-like 5A 285948 1 1 1 0 0 0 1 0 0 0 0.12 0.86 -2376 QPCT glutaminyl-peptide cyclotransferase (glutaminyl cyclase) 501930 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2377 MRPL51 mitochondrial ribosomal protein L51 202293 1 1 1 1 0 1 0 0 0 0 0.12 0.86 -2378 FBXO30 F-box protein 30 1138722 3 3 3 0 1 1 1 0 0 0 0.12 0.86 -2379 MRPS18B mitochondrial ribosomal protein S18B 408135 1 1 1 0 1 0 0 0 0 0 0.12 0.86 -2380 LOXL3 lysyl oxidase-like 3 1083966 3 3 3 0 1 2 0 0 0 0 0.12 0.86 -2381 SMPD2 sphingomyelin phosphodiesterase 2, neutral membrane (neutral sphingomyelinase) 665184 2 2 2 0 0 2 0 0 0 0 0.12 0.86 -2382 WISP2 WNT1 inducible signaling pathway protein 2 213447 1 1 1 0 0 1 0 0 0 0 0.12 0.86 -2383 RNF123 ring finger protein 123 1919502 4 4 4 0 1 1 2 0 0 0 0.12 0.86 -2384 TRIM72 tripartite motif-containing 72 213447 1 1 1 0 0 1 0 0 0 0 0.12 0.86 -2385 KLHL14 kelch-like 14 (Drosophila) 643890 2 2 2 0 0 0 1 1 0 0 0.12 0.86 -2386 OR5H15 olfactory receptor, family 5, subfamily H, member 15 479622 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2387 PREX1 2272881 5 5 5 0 1 3 0 0 1 0 0.12 0.86 -2388 CCDC112 coiled-coil domain containing 112 765063 2 2 2 0 0 1 1 0 0 0 0.12 0.86 -2389 ARNT aryl hydrocarbon receptor nuclear translocator 1231503 2 2 2 0 0 0 0 1 1 0 0.12 0.86 -2390 NOS1AP nitric oxide synthase 1 (neuronal) adaptor protein 771147 2 2 2 0 1 0 1 0 0 0 0.12 0.86 -2391 ST3GAL5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 616512 2 2 2 0 1 1 0 0 0 0 0.12 0.86 -2392 EBPL emopamil binding protein-like 234234 1 1 1 0 0 0 0 0 1 0 0.12 0.86 -2393 HLA-F major histocompatibility complex, class I, F 630201 2 2 2 0 0 1 1 0 0 0 0.12 0.86 -2394 MAP3K13 mitogen-activated protein kinase kinase kinase 13 1497171 3 3 3 0 1 1 0 0 1 0 0.12 0.86 -2395 DDX50 DEAD (Asp-Glu-Ala-Asp) box polypeptide 50 1106781 3 3 3 0 1 2 0 0 0 0 0.12 0.86 -2396 PSMC4 proteasome (prosome, macropain) 26S subunit, ATPase, 4 659607 2 2 2 0 1 1 0 0 0 0 0.12 0.86 -2397 ABCD1 ATP-binding cassette, sub-family D (ALD), member 1 520182 2 2 2 0 0 1 0 0 1 0 0.12 0.86 -2398 CSH1 chorionic somatomammotropin hormone 1 (placental lactogen) 412191 1 1 1 0 0 1 0 0 0 0 0.12 0.86 -2399 TOMM20L 155649 1 1 1 0 0 0 1 0 0 0 0.12 0.86 -2400 PRF1 perforin 1 (pore forming protein) 823875 2 2 2 2 0 1 0 0 1 0 0.12 0.86 -2401 FANK1 fibronectin type III and ankyrin repeat domains 1 539955 2 2 2 0 0 1 0 1 0 0 0.12 0.86 -2402 PACSIN2 protein kinase C and casein kinase substrate in neurons 2 715884 2 2 2 0 0 0 2 0 0 0 0.12 0.86 -2403 LILRA6 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6 719940 2 2 2 1 0 1 0 0 1 0 0.12 0.86 -2404 DLG1 discs, large homolog 1 (Drosophila) 1479933 3 3 3 0 0 0 0 1 2 0 0.12 0.86 -2405 BMX BMX non-receptor tyrosine kinase 1064700 2 2 2 0 0 0 1 0 1 0 0.12 0.86 -2406 FAM82B family with sequence similarity 82, member B 429429 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2407 LRBA LPS-responsive vesicle trafficking, beach and anchor containing 4360707 7 7 7 1 0 2 3 0 2 0 0.12 0.87 -2408 CELF6 300144 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2409 TGFBR1 transforming growth factor, beta receptor I (activin A receptor type II-like kinase, 53kDa) 733629 2 2 2 0 0 1 1 0 0 0 0.12 0.87 -2410 CPEB1 cytoplasmic polyadenylation element binding protein 1 818805 2 2 2 0 0 0 1 1 0 0 0.12 0.87 -2411 VSIG1 V-set and immunoglobulin domain containing 1 604344 2 2 2 1 1 1 0 0 0 0 0.12 0.87 -2412 MARCH2 membrane-associated ring finger (C3HC4) 2 383799 1 1 1 0 0 1 0 0 0 0 0.12 0.87 -2413 ARHGAP12 Rho GTPase activating protein 12 1324791 3 3 3 0 1 0 2 0 0 0 0.12 0.87 -2414 CLEC4A C-type lectin domain family 4, member A 374166 1 1 1 0 0 1 0 0 0 0 0.12 0.87 -2415 OR7A5 olfactory receptor, family 7, subfamily A, member 5 488748 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2416 TSPAN11 tetraspanin 11 339690 1 1 1 0 0 1 0 0 0 0 0.12 0.87 -2417 GRIK3 glutamate receptor, ionotropic, kainate 3 1307046 3 3 3 0 0 1 1 0 1 0 0.12 0.87 -2418 CDC37 cell division cycle 37 homolog (S. cerevisiae) 592683 2 2 2 0 1 0 1 0 0 0 0.12 0.87 -2419 ITPK1 inositol 1,3,4-triphosphate 5/6 kinase 366561 1 1 1 1 0 1 0 0 0 0 0.12 0.87 -2420 TEP1 telomerase-associated protein 1 4106700 7 7 7 1 0 4 0 2 1 0 0.12 0.87 -2421 HLA-DRB5 major histocompatibility complex, class II, DR beta 5 207870 1 1 1 1 1 0 0 0 0 0 0.12 0.87 -2422 TTC39B 966342 2 2 2 1 0 0 1 0 1 0 0.12 0.87 -2423 CDH12 cadherin 12, type 2 (N-cadherin 2) 1231503 3 3 3 0 2 0 1 0 0 0 0.12 0.87 -2424 DIRC1 disrupted in renal carcinoma 1 161733 1 1 1 0 1 0 0 0 0 0 0.12 0.87 -2425 KIAA1147 KIAA1147 499902 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2426 MIXL1 Mix1 homeobox-like 1 (Xenopus laevis) 157170 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2427 TTC18 tetratricopeptide repeat domain 18 1713660 4 4 4 0 0 1 1 1 1 0 0.12 0.87 -2428 TRAF3IP1 TNF receptor-associated factor 3 interacting protein 1 906009 2 2 2 0 1 0 1 0 0 0 0.12 0.87 -2429 OR13A1 olfactory receptor, family 13, subfamily A, member 1 501930 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2430 PRPF39 PRP39 pre-mRNA processing factor 39 homolog (S. cerevisiae) 912600 2 2 2 0 0 0 2 0 0 0 0.12 0.87 -2431 PRDM12 PR domain containing 12 242346 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2432 GPATCH2 G patch domain containing 2 794469 2 2 2 1 2 0 0 0 0 0 0.12 0.87 -2433 SLC4A5 solute carrier family 4, sodium bicarbonate cotransporter, member 5 1775007 4 4 4 0 1 1 1 0 1 0 0.12 0.87 -2434 MXD1 MAX dimerization protein 1 310791 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2435 PDCD6 programmed cell death 6 140946 1 1 1 1 0 0 1 0 0 0 0.12 0.87 -2436 LSM11 LSM11, U7 small nuclear RNA associated 328029 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2437 COX7B2 cytochrome c oxidase subunit VIIb2 126750 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2438 PRTG protogenin homolog (Gallus gallus) 1741545 4 4 4 0 2 2 0 0 0 0 0.12 0.87 -2439 TAS2R30 taste receptor, type 2, member 30 488748 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2440 OTUD7B OTU domain containing 7B 1306032 3 3 3 0 2 1 0 0 0 0 0.12 0.87 -2441 TPR translocated promoter region (to activated MET oncogene) 3669159 7 7 7 0 1 2 4 0 0 0 0.12 0.87 -2442 SLC35B1 solute carrier family 35, member B1 493311 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2443 SLC22A2 solute carrier family 22 (organic cation transporter), member 2 867984 2 2 2 0 1 0 0 0 1 0 0.12 0.87 -2444 TXNDC15 thioredoxin domain containing 15 504972 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2445 B3GNT9 206856 1 1 1 0 0 1 0 0 0 0 0.12 0.87 -2446 CHML choroideremia-like (Rab escort protein 2) 1001325 2 2 2 1 0 0 1 0 1 0 0.12 0.87 -2447 LYSMD4 LysM, putative peptidoglycan-binding, domain containing 4 461370 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2448 BBS5 Bardet-Biedl syndrome 5 543504 2 2 2 0 2 0 0 0 0 0 0.12 0.87 -2449 RNF207 ring finger protein 207 419796 1 1 1 0 0 1 0 0 0 0 0.12 0.87 -2450 BTF3L4 basic transcription factor 3-like 4 251979 1 1 1 0 0 1 0 0 0 0 0.12 0.87 -2451 CD3G CD3g molecule, gamma (CD3-TCR complex) 260598 1 1 1 0 0 1 0 0 0 0 0.12 0.87 -2452 C20orf26 chromosome 20 open reading frame 26 1935726 4 4 4 1 1 2 0 0 1 0 0.12 0.87 -2453 SDHB succinate dehydrogenase complex, subunit B, iron sulfur (Ip) 417261 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2454 SBDS Shwachman-Bodian-Diamond syndrome 391911 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2455 DEFB115 defensin, beta 115 139425 1 1 1 0 0 1 0 0 0 0 0.12 0.87 -2456 CHURC1 churchill domain containing 1 181506 1 1 1 0 0 1 0 0 0 0 0.12 0.87 -2457 CDR2L cerebellar degeneration-related protein 2-like 243360 1 1 1 1 0 0 0 0 1 0 0.12 0.87 -2458 ASB5 ankyrin repeat and SOCS box-containing 5 516126 1 1 1 1 0 0 0 0 1 0 0.12 0.87 -2459 SFTPD surfactant, pulmonary-associated protein D 586092 2 2 2 0 0 1 0 1 0 0 0.12 0.87 -2460 CCL23 chemokine (C-C motif) ligand 23 218010 1 1 1 0 0 1 0 0 0 0 0.12 0.87 -2461 MMACHC methylmalonic aciduria (cobalamin deficiency) cblC type, with homocystinuria 438555 1 1 1 1 0 0 1 0 0 0 0.12 0.87 -2462 HNRNPD 437541 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2463 ZFYVE9 zinc finger, FYVE domain containing 9 2202408 3 3 3 0 1 0 0 0 2 0 0.12 0.87 -2464 IFITM3 interferon induced transmembrane protein 3 (1-8U) 207363 1 1 1 0 1 0 0 0 0 0 0.12 0.87 -2465 PHACTR2 phosphatase and actin regulator 2 992199 2 2 2 0 0 0 0 1 1 0 0.12 0.87 -2466 SORBS2 sorbin and SH3 domain containing 2 1713660 4 4 4 0 0 2 2 0 0 0 0.12 0.87 -2467 RPS6KA6 ribosomal protein S6 kinase, 90kDa, polypeptide 6 1136187 3 3 3 0 1 1 1 0 0 0 0.12 0.87 -2468 SCYL3 SCY1-like 3 (S. cerevisiae) 1156467 3 3 3 0 0 0 1 1 1 0 0.12 0.87 -2469 NDUFAF1 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 1 507000 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2470 TXN thioredoxin 157170 1 1 1 0 1 0 0 0 0 0 0.12 0.87 -2471 TMEM146 transmembrane protein 146 1221870 3 3 3 1 1 1 1 0 0 0 0.12 0.87 -2472 AGPAT5 1-acylglycerol-3-phosphate O-acyltransferase 5 (lysophosphatidic acid acyltransferase, epsilon) 449202 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2473 SAT1 spermidine/spermine N1-acetyltransferase 1 273780 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2474 FAM9B family with sequence similarity 9, member B 298623 1 1 1 2 0 1 0 0 0 0 0.12 0.87 -2475 ARRDC4 arrestin domain containing 4 495846 1 1 1 0 0 0 0 1 0 0 0.12 0.87 -2476 SPAG5 sperm associated antigen 5 1842945 4 4 4 0 3 1 0 0 0 0 0.12 0.87 -2477 HNRPDL heterogeneous nuclear ribonucleoprotein D-like 427908 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2478 HKR1 GLI-Kruppel family member HKR1 1011972 2 2 2 0 0 0 0 0 2 0 0.12 0.87 -2479 ABCA1 ATP-binding cassette, sub-family A (ABC1), member 1 3539874 5 5 5 0 2 0 1 0 2 0 0.12 0.87 -2480 AASS aminoadipate-semialdehyde synthase 1456611 3 3 3 0 0 2 0 0 1 0 0.12 0.87 -2481 UBP1 upstream binding protein 1 (LBP-1a) 833508 2 2 2 0 0 1 0 0 1 0 0.12 0.87 -2482 CATSPER4 cation channel, sperm associated 4 638820 2 2 2 1 0 1 1 0 0 0 0.12 0.87 -2483 CHORDC1 cysteine and histidine-rich domain (CHORD)-containing 1 518154 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2484 CLIP2 CAP-GLY domain containing linker protein 2 1261416 4 3 4 1 1 1 0 0 0 2 0.12 0.87 -2485 OPA1 optic atrophy 1 (autosomal dominant) 1587924 3 3 3 2 0 2 0 0 1 0 0.12 0.87 -2486 C11orf52 chromosome 11 open reading frame 52 196716 1 1 1 0 0 0 1 0 0 0 0.12 0.87 -2487 MED27 mediator complex subunit 27 436020 1 1 1 0 0 0 0 0 1 0 0.12 0.87 -2488 PCDH11X protocadherin 11 X-linked 2088840 4 4 4 1 1 1 1 1 0 0 0.13 0.87 -2489 PLEKHA2 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 2 509028 1 1 1 0 0 0 0 0 1 0 0.13 0.87 -2490 ANKFY1 ankyrin repeat and FYVE domain containing 1 1704534 4 4 4 0 1 1 2 0 0 0 0.13 0.87 -2491 PCDHGB3 protocadherin gamma subfamily B, 3 1437852 3 3 3 1 2 1 0 0 0 0 0.13 0.87 -2492 MAN2B2 mannosidase, alpha, class 2B, member 2 1317693 3 3 3 1 0 0 2 1 0 0 0.13 0.87 -2493 TRDN triadin 854802 2 2 2 0 0 1 1 0 0 0 0.13 0.87 -2494 TUB tubby homolog (mouse) 784836 2 2 2 0 0 2 0 0 0 0 0.13 0.87 -2495 ATG9B ATG9 autophagy related 9 homolog B (S. cerevisiae) 377208 1 1 1 0 0 1 0 0 0 0 0.13 0.87 -2496 C10orf53 chromosome 10 open reading frame 53 230178 1 1 1 0 0 0 0 1 0 0 0.13 0.87 -2497 GDF9 growth differentiation factor 9 696111 2 2 2 0 0 0 1 1 0 0 0.13 0.87 -2498 PNLIPRP1 pancreatic lipase-related protein 1 736164 2 2 2 0 0 2 0 0 0 0 0.13 0.87 -2499 SIDT2 SID1 transmembrane family, member 2 1317186 3 3 3 2 1 2 0 0 0 0 0.13 0.87 -2500 PRPF4 PRP4 pre-mRNA processing factor 4 homolog (yeast) 823875 2 2 2 1 0 0 1 0 1 0 0.13 0.87 -2501 NCCRP1 259077 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2502 C1orf61 chromosome 1 open reading frame 61 231192 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2503 ZNF548 zinc finger protein 548 828945 2 2 2 0 0 0 1 1 0 0 0.13 0.87 -2504 PSMG2 proteasome (prosome, macropain) assembly chaperone 2 386334 1 1 1 0 0 1 0 0 0 0 0.13 0.87 -2505 PPP2R4 protein phosphatase 2A activator, regulatory subunit 4 493311 2 1 2 0 0 0 0 0 0 2 0.13 0.87 -2506 RIPK1 receptor (TNFRSF)-interacting serine-threonine kinase 1 1042392 3 3 3 1 0 2 0 0 1 0 0.13 0.87 -2507 RAB40A RAB40A, member RAS oncogene family 424866 1 1 1 0 0 0 0 0 1 0 0.13 0.87 -2508 CDK2 cyclin-dependent kinase 2 468975 1 1 1 0 0 0 0 0 1 0 0.13 0.87 -2509 BAHD1 bromo adjacent homology domain containing 1 1199055 3 3 3 0 1 2 0 0 0 0 0.13 0.87 -2510 UBE2Q1 ubiquitin-conjugating enzyme E2Q (putative) 1 501930 1 1 1 1 0 0 0 0 1 0 0.13 0.87 -2511 ECH1 enoyl Coenzyme A hydratase 1, peroxisomal 472017 1 1 1 0 0 0 0 0 1 0 0.13 0.87 -2512 KCNV1 potassium channel, subfamily V, member 1 532350 2 2 2 1 1 1 0 0 0 0 0.13 0.87 -2513 ANGPTL6 angiopoietin-like 6 429429 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2514 PNO1 partner of NOB1 homolog (S. cerevisiae) 292032 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2515 GLA galactosidase, alpha 668226 2 2 2 0 1 0 1 0 0 0 0.13 0.87 -2516 FAM48B2 family with sequence similarity 48, member B2 1180803 3 3 3 0 0 3 0 0 0 0 0.13 0.87 -2517 SIGLEC10 sialic acid binding Ig-like lectin 10 1083966 2 2 2 0 0 1 0 0 1 0 0.13 0.87 -2518 NUAK1 NUAK family, SNF1-like kinase, 1 904995 2 2 2 0 0 1 1 0 0 0 0.13 0.87 -2519 SRGN serglycin 247923 1 1 1 0 0 1 0 0 0 0 0.13 0.87 -2520 GRP gastrin-releasing peptide 160212 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2521 APOLD1 apolipoprotein L domain containing 1 239811 1 1 1 0 0 1 0 0 0 0 0.13 0.87 -2522 MAPK4 mitogen-activated protein kinase 4 624117 2 2 2 0 2 0 0 0 0 0 0.13 0.87 -2523 MINPP1 multiple inositol polyphosphate histidine phosphatase, 1 499902 1 1 1 0 0 0 0 0 1 0 0.13 0.87 -2524 SDCCAG8 serologically defined colon cancer antigen 8 1079403 3 3 3 0 0 0 2 0 1 0 0.13 0.87 -2525 TYK2 tyrosine kinase 2 1473342 3 3 2 1 0 0 3 0 0 0 0.13 0.87 -2526 ST3GAL1 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 530829 1 1 1 0 0 0 0 0 1 0 0.13 0.87 -2527 PMFBP1 polyamine modulated factor 1 binding protein 1 1604148 4 4 4 0 2 0 1 1 0 0 0.13 0.87 -2528 BTC betacellulin 247923 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2529 CXorf57 chromosome X open reading frame 57 1330368 3 3 3 0 0 0 2 0 1 0 0.13 0.87 -2530 SEC22A SEC22 vesicle trafficking protein homolog A (S. cerevisiae) 480636 1 1 1 0 1 0 0 0 0 0 0.13 0.87 -2531 TMEM101 transmembrane protein 101 286962 1 1 1 0 0 1 0 0 0 0 0.13 0.87 -2532 CCDC155 805623 2 2 2 0 0 2 0 0 0 0 0.13 0.87 -2533 GCK glucokinase (hexokinase 4) 575952 2 2 2 1 1 1 0 0 0 0 0.13 0.87 -2534 KIAA1310 KIAA1310 1241136 3 3 3 1 1 0 1 0 1 0 0.13 0.87 -2535 EEF1D eukaryotic translation elongation factor 1 delta (guanine nucleotide exchange protein) 448695 1 1 1 1 0 1 0 0 0 0 0.13 0.87 -2536 TROAP trophinin associated protein (tastin) 1236066 3 3 3 1 0 2 1 0 0 0 0.13 0.87 -2537 UXS1 UDP-glucuronate decarboxylase 1 586599 2 2 2 0 2 0 0 0 0 0 0.13 0.87 -2538 GPR161 G protein-coupled receptor 161 768105 2 2 2 1 0 0 1 1 0 0 0.13 0.87 -2539 HLA-DMA major histocompatibility complex, class II, DM alpha 408642 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2540 LONRF2 LON peptidase N-terminal domain and ring finger 2 725517 2 2 2 0 0 2 0 0 0 0 0.13 0.87 -2541 MYO1G myosin IG 953160 2 2 2 0 0 1 0 0 1 0 0.13 0.87 -2542 MAGEB10 melanoma antigen family B, 10 531336 2 2 2 0 0 1 1 0 0 0 0.13 0.87 -2543 THAP7 THAP domain containing 7 178464 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2544 NCOA3 nuclear receptor coactivator 3 2225223 4 4 4 1 1 1 0 1 1 0 0.13 0.87 -2545 DAK dihydroxyacetone kinase 2 homolog (S. cerevisiae) 865956 2 2 2 1 0 1 0 1 0 0 0.13 0.87 -2546 ACOT11 acyl-CoA thioesterase 11 955188 2 2 2 0 0 0 2 0 0 0 0.13 0.87 -2547 ATXN10 ataxin 10 687492 2 2 2 1 0 1 1 0 0 0 0.13 0.87 -2548 CAST calpastatin 1290315 3 3 3 1 1 1 0 0 1 0 0.13 0.87 -2549 SLC13A2 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 2 976989 2 2 2 1 0 2 0 0 0 0 0.13 0.87 -2550 KCNE2 potassium voltage-gated channel, Isk-related family, member 2 190632 1 1 1 0 1 0 0 0 0 0 0.13 0.87 -2551 UBIAD1 UbiA prenyltransferase domain containing 1 519675 1 1 1 0 0 0 0 1 0 0 0.13 0.87 -2552 BMP3 bone morphogenetic protein 3 (osteogenic) 563277 2 2 2 1 2 0 0 0 0 0 0.13 0.87 -2553 TRIM42 tripartite motif-containing 42 1111344 3 3 3 0 0 1 1 1 0 0 0.13 0.87 -2554 TUBB2B tubulin, beta 2B 431457 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2555 DHH desert hedgehog homolog (Drosophila) 315354 1 1 1 0 1 0 0 0 0 0 0.13 0.87 -2556 SREBF2 sterol regulatory element binding transcription factor 2 1491594 3 3 3 0 0 0 0 2 1 0 0.13 0.87 -2557 FAM36A family with sequence similarity 36, member A 165789 1 1 1 0 0 0 0 1 0 0 0.13 0.87 -2558 TUFM Tu translation elongation factor, mitochondrial 685464 2 2 2 1 0 2 0 0 0 0 0.13 0.87 -2559 CYP4F12 cytochrome P450, family 4, subfamily F, polypeptide 12 822354 3 2 3 1 0 1 2 0 0 0 0.13 0.87 -2560 RAP2B RAP2B, member of RAS oncogene family 185055 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2561 NHP2 231699 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2562 WDR45L WDR45-like 509028 1 1 1 0 0 0 0 0 1 0 0.13 0.87 -2563 DDAH1 dimethylarginine dimethylaminohydrolase 1 331071 1 1 1 0 1 0 0 0 0 0 0.13 0.87 -2564 KDELR3 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 3 318903 1 1 1 0 0 0 0 1 0 0 0.13 0.87 -2565 GTPBP8 GTP-binding protein 8 (putative) 431457 1 1 1 1 0 0 0 0 1 0 0.13 0.87 -2566 ZNF544 zinc finger protein 544 1097148 3 3 3 1 1 0 2 0 0 0 0.13 0.87 -2567 LIM2 lens intrinsic membrane protein 2, 19kDa 336648 1 1 1 1 0 1 0 0 0 0 0.13 0.87 -2568 DNAJC28 593697 2 2 2 0 0 0 2 0 0 0 0.13 0.87 -2569 IP6K3 615498 2 2 2 2 1 0 1 0 0 0 0.13 0.87 -2570 FBXO27 F-box protein 27 255528 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2571 ITGA2B integrin, alpha 2b (platelet glycoprotein IIb of IIb/IIIa complex, antigen CD41) 884715 2 2 2 0 1 0 1 0 0 0 0.13 0.87 -2572 C2orf43 chromosome 2 open reading frame 43 508014 1 1 1 0 0 0 0 0 1 0 0.13 0.87 -2573 AFF4 AF4/FMR2 family, member 4 1786668 4 4 4 2 2 0 1 1 0 0 0.13 0.87 -2574 ALPK1 alpha-kinase 1 1922037 4 4 4 0 2 1 1 0 0 0 0.13 0.87 -2575 CLDN11 claudin 11 (oligodendrocyte transmembrane protein) 205842 1 1 1 0 0 1 0 0 0 0 0.13 0.87 -2576 SGK2 serum/glucocorticoid regulated kinase 2 629187 2 2 2 1 0 0 1 1 0 0 0.13 0.87 -2577 ZNF281 zinc finger protein 281 1162044 3 3 3 0 0 1 1 1 0 0 0.13 0.87 -2578 LYG1 lysozyme G-like 1 306735 1 1 1 0 0 0 1 0 0 0 0.13 0.87 -2579 FMNL3 formin-like 3 1539759 3 3 3 0 1 1 1 0 0 0 0.13 0.87 -2580 ANGPT4 angiopoietin 4 744783 2 2 2 1 0 1 0 1 0 0 0.13 0.87 -2581 HMCN1 hemicentin 1 8789352 15 14 15 0 4 4 6 0 1 0 0.13 0.87 -2582 HIST3H3 histone cluster 3, H3 210405 1 1 1 0 1 0 0 0 0 0 0.13 0.87 -2583 BMPR2 bone morphogenetic protein receptor, type II (serine/threonine kinase) 1588938 2 2 1 2 0 0 0 0 2 0 0.13 0.87 -2584 RGS5 regulator of G-protein signaling 5 286962 1 1 1 0 0 1 0 0 0 0 0.13 0.87 -2585 KDM6B 855816 2 2 2 0 0 1 0 0 1 0 0.13 0.87 -2586 CDHR1 1263951 3 3 3 0 0 3 0 0 0 0 0.13 0.87 -2587 SERPINC1 serpin peptidase inhibitor, clade C (antithrombin), member 1 721461 2 2 2 0 1 0 0 0 1 0 0.13 0.87 -2588 ARHGEF4 Rho guanine nucleotide exchange factor (GEF) 4 779259 2 2 2 0 0 2 0 0 0 0 0.13 0.87 -2589 BCORL1 BCL6 co-repressor-like 1 2622711 5 5 5 2 2 3 0 0 0 0 0.13 0.87 -2590 AIFM2 apoptosis-inducing factor, mitochondrion-associated, 2 559728 2 2 2 0 0 1 1 0 0 0 0.13 0.87 -2591 APEX1 APEX nuclease (multifunctional DNA repair enzyme) 1 493311 1 1 1 0 0 0 0 1 0 0 0.13 0.87 -2592 OR4K15 olfactory receptor, family 4, subfamily K, member 15 532857 2 2 2 1 2 0 0 0 0 0 0.13 0.87 -2593 PTPN2 protein tyrosine phosphatase, non-receptor type 2 627159 2 2 2 0 0 0 2 0 0 0 0.13 0.87 -2594 SLC9A8 solute carrier family 9 (sodium/hydrogen exchanger), member 8 902460 2 2 2 1 0 0 1 1 0 0 0.13 0.87 -2595 C9orf41 chromosome 9 open reading frame 41 521196 1 1 1 1 0 0 0 0 1 0 0.13 0.87 -2596 ABT1 activator of basal transcription 1 407628 1 1 1 1 0 1 0 0 0 0 0.13 0.87 -2597 RASGRP2 RAS guanyl releasing protein 2 (calcium and DAG-regulated) 655044 2 2 2 0 1 1 0 0 0 0 0.13 0.87 -2598 LIFR leukemia inhibitory factor receptor alpha 1706562 4 4 4 1 1 1 0 0 2 0 0.13 0.87 -2599 OR5A1 olfactory receptor, family 5, subfamily A, member 1 482664 1 1 1 0 0 0 0 0 1 0 0.13 0.87 -2600 OR8U8 olfactory receptor, family 8, subfamily U, member 8 436527 1 1 1 0 1 0 0 0 0 0 0.13 0.87 -2601 FAM5C family with sequence similarity 5, member C 1180803 3 3 3 1 0 3 0 0 0 0 0.13 0.88 -2602 SNX16 sorting nexin 16 538941 1 1 1 0 0 0 0 0 1 0 0.13 0.88 -2603 LAMB3 laminin, beta 3 1803399 4 4 4 0 1 3 0 0 0 0 0.13 0.88 -2604 MAX MYC associated factor X 407121 1 1 1 0 0 0 0 1 0 0 0.13 0.88 -2605 PSG1 pregnancy specific beta-1-glycoprotein 1 677859 2 2 2 2 0 1 1 0 0 0 0.13 0.88 -2606 HDAC2 histone deacetylase 2 743769 2 2 2 0 1 0 0 0 1 0 0.13 0.88 -2607 HMGN2 high-mobility group nucleosomal binding domain 2 140946 1 1 1 0 1 0 0 0 0 0 0.13 0.88 -2608 UNC93A unc-93 homolog A (C. elegans) 712842 2 2 2 0 1 1 0 0 0 0 0.13 0.88 -2609 RBM15 RNA binding motif protein 15 1260402 2 2 2 0 0 0 1 0 1 0 0.13 0.88 -2610 PCBP2 poly(rC) binding protein 2 586599 2 2 2 0 0 0 1 1 0 0 0.13 0.88 -2611 SLCO4C1 solute carrier organic anion transporter family, member 4C1 1114386 3 3 3 0 0 1 1 1 0 0 0.13 0.88 -2612 POU3F2 POU class 3 homeobox 2 328536 1 1 1 0 0 0 1 0 0 0 0.13 0.88 -2613 MX1 myxovirus (influenza virus) resistance 1, interferon-inducible protein p78 (mouse) 1034787 2 2 2 1 0 0 2 0 0 0 0.13 0.88 -2614 UCHL3 ubiquitin carboxyl-terminal esterase L3 (ubiquitin thiolesterase) 369603 1 1 1 0 0 0 0 1 0 0 0.13 0.88 -2615 IL6ST interleukin 6 signal transducer (gp130, oncostatin M receptor) 1428219 3 3 3 0 0 0 2 1 0 0 0.13 0.88 -2616 PCDHB1 protocadherin beta 1 1247727 3 3 3 1 0 1 2 0 0 0 0.13 0.88 -2617 ATG2A ATG2 autophagy related 2 homolog A (S. cerevisiae) 1590966 3 3 3 0 0 2 1 0 0 0 0.13 0.88 -2618 FLJ43860 854295 2 2 2 0 0 1 0 0 1 0 0.13 0.88 -2619 NGFR nerve growth factor receptor (TNFR superfamily, member 16) 492297 1 1 1 0 0 0 0 0 1 0 0.13 0.88 -2620 TAS2R3 taste receptor, type 2, member 3 484185 1 1 1 1 0 0 0 0 1 0 0.13 0.88 -2621 ITGA7 integrin, alpha 7 1827228 5 4 5 0 2 1 2 0 0 0 0.13 0.88 -2622 SLC35E3 solute carrier family 35, member E3 485706 1 1 1 0 0 0 0 0 1 0 0.13 0.88 -2623 WDYHV1 281385 1 1 1 0 0 1 0 0 0 0 0.13 0.88 -2624 PHYHIPL phytanoyl-CoA 2-hydroxylase interacting protein-like 527787 1 1 1 0 0 0 0 0 1 0 0.13 0.88 -2625 PSKH1 protein serine kinase H1 619047 2 2 2 0 1 0 0 0 1 0 0.13 0.88 -2626 SSR4 signal sequence receptor, delta (translocon-associated protein delta) 178971 1 1 1 0 1 0 0 0 0 0 0.13 0.88 -2627 PKD2L1 polycystic kidney disease 2-like 1 1258374 2 2 2 0 1 0 0 0 1 0 0.13 0.88 -2628 STX7 syntaxin 7 416754 1 1 1 0 0 0 0 0 1 0 0.13 0.88 -2629 ENPP2 ectonucleotide pyrophosphatase/phosphodiesterase 2 (autotaxin) 1483989 3 3 3 1 0 0 1 2 0 0 0.13 0.88 -2630 ATPAF1 ATP synthase mitochondrial F1 complex assembly factor 1 381771 1 1 1 0 0 1 0 0 0 0 0.13 0.88 -2631 ICA1L islet cell autoantigen 1,69kDa-like 766077 2 2 2 0 0 0 2 0 0 0 0.13 0.88 -2632 DAO D-amino-acid oxidase 549588 1 1 1 1 0 0 0 0 1 0 0.13 0.88 -2633 CEACAM3 carcinoembryonic antigen-related cell adhesion molecule 3 380757 1 1 1 0 0 1 0 0 0 0 0.13 0.88 -2634 PLCXD2 phosphatidylinositol-specific phospholipase C, X domain containing 2 472017 1 1 1 1 0 1 0 0 0 0 0.13 0.88 -2635 RPS10 ribosomal protein S10 262626 1 1 1 0 1 0 0 0 0 0 0.13 0.88 -2636 KCTD7 potassium channel tetramerisation domain containing 7 374166 1 1 1 0 1 0 0 0 0 0 0.13 0.88 -2637 KIAA0895 806637 2 2 2 0 1 0 1 0 0 0 0.13 0.88 -2638 TSPO2 266175 1 1 1 0 0 1 0 0 0 0 0.13 0.88 -2639 OR2B2 olfactory receptor, family 2, subfamily B, member 2 546546 2 2 2 0 0 1 1 0 0 0 0.13 0.88 -2640 OR5H6 olfactory receptor, family 5, subfamily H, member 6 497874 1 1 1 0 0 0 0 1 0 0 0.13 0.88 -2641 C1orf101 chromosome 1 open reading frame 101 1295385 3 3 3 1 1 0 2 0 0 0 0.13 0.88 -2642 ZSCAN5A 764049 3 2 3 0 1 0 1 1 0 0 0.13 0.88 -2643 CRB3 crumbs homolog 3 (Drosophila) 185055 1 1 1 0 0 0 1 0 0 0 0.13 0.88 -2644 YAF2 YY1 associated factor 2 202293 1 1 1 0 1 0 0 0 0 0 0.13 0.88 -2645 PLA2G15 492297 1 1 1 0 0 0 1 0 0 0 0.13 0.88 -2646 IL12B interleukin 12B (natural killer cell stimulatory factor 2, cytotoxic lymphocyte maturation factor 2, p40) 512577 1 1 1 0 0 0 0 1 0 0 0.13 0.88 -2647 RRM2 ribonucleotide reductase M2 polypeptide 521196 1 1 1 1 0 0 0 1 0 0 0.13 0.88 -2648 IAPP islet amyloid polypeptide 140946 1 1 1 0 0 1 0 0 0 0 0.13 0.88 -2649 MRPL49 mitochondrial ribosomal protein L49 220545 1 1 1 0 0 0 0 1 0 0 0.13 0.88 -2650 NUAK2 NUAK family, SNF1-like kinase, 2 842127 2 2 2 2 1 1 0 0 0 0 0.13 0.88 -2651 IL27 interleukin 27 381264 1 1 1 0 0 0 0 1 0 0 0.13 0.88 -2652 PROX1 prospero homeobox 1 1130610 3 3 3 0 2 1 0 0 0 0 0.14 0.88 -2653 DDX11 DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 11 (CHL1-like helicase homolog, S. cerevisiae) 1253811 3 3 3 0 2 0 0 0 1 0 0.14 0.88 -2654 PSD pleckstrin and Sec7 domain containing 1355718 3 3 3 0 0 2 0 0 1 0 0.14 0.88 -2655 NAGK N-acetylglucosamine kinase 527787 1 1 1 0 0 0 0 1 0 0 0.14 0.88 -2656 HIST1H2AE histone cluster 1, H2ae 201279 1 1 1 2 0 1 0 0 0 0 0.14 0.88 -2657 OR52H1 olfactory receptor, family 52, subfamily H, member 1 490269 1 1 1 1 0 0 0 0 1 0 0.14 0.88 -2658 PLIN4 1491594 3 3 3 1 1 2 0 0 0 0 0.14 0.88 -2659 KCNN3 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 3 1076361 2 2 2 0 0 0 0 0 2 0 0.14 0.88 -2660 NPTX2 neuronal pentraxin II 375180 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2661 ZNF781 zinc finger protein 781 500916 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2662 CDK15 609921 2 2 2 0 1 1 0 0 0 0 0.14 0.88 -2663 COBRA1 cofactor of BRCA1 557700 1 1 1 2 0 0 0 0 1 0 0.14 0.88 -2664 INSRR insulin receptor-related receptor 1908855 4 4 4 0 0 1 2 0 1 0 0.14 0.88 -2665 ENTPD1 ectonucleoside triphosphate diphosphohydrolase 1 818298 2 2 2 0 1 0 0 0 1 0 0.14 0.88 -2666 KCNQ5 potassium voltage-gated channel, KQT-like subfamily, member 5 1274598 3 3 3 0 1 1 0 1 0 0 0.14 0.88 -2667 ANKRD16 ankyrin repeat domain 16 403572 1 1 1 1 0 1 0 0 0 0 0.14 0.88 -2668 SIRPG signal-regulatory protein gamma 556179 2 2 2 0 0 1 1 0 0 0 0.14 0.88 -2669 WDFY2 WD repeat and FYVE domain containing 2 595218 2 2 2 1 1 1 0 0 0 0 0.14 0.88 -2670 SPERT spermatid associated 470496 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2671 RTN4RL1 reticulon 4 receptor-like 1 355914 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2672 NDUFA2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 2, 8kDa 171873 1 1 1 0 0 0 1 0 0 0 0.14 0.88 -2673 TMEM71 transmembrane protein 71 468468 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2674 ADAMDEC1 ADAM-like, decysin 1 744783 2 2 2 3 0 1 1 0 0 0 0.14 0.88 -2675 STAP1 signal transducing adaptor family member 1 468468 1 1 1 0 0 0 1 0 0 0 0.14 0.88 -2676 SFRS11 splicing factor, arginine/serine-rich 11 761514 2 2 2 0 0 1 0 1 0 0 0.14 0.88 -2677 ZNF878 890799 2 2 2 1 1 0 1 0 0 0 0.14 0.88 -2678 RIN2 Ras and Rab interactor 2 1342029 3 3 3 1 0 0 0 3 0 0 0.14 0.88 -2679 FEZF2 FEZ family zinc finger 2 273780 1 1 1 1 0 1 0 0 0 0 0.14 0.88 -2680 NAA10 301665 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2681 NAALADL2 N-acetylated alpha-linked acidic dipeptidase-like 2 1239108 3 3 3 0 1 1 1 0 0 0 0.14 0.88 -2682 MCAM melanoma cell adhesion molecule 950118 2 2 2 1 0 0 0 2 0 0 0.14 0.88 -2683 CHD3 chromodomain helicase DNA binding protein 3 3023241 5 5 5 0 1 1 1 0 2 0 0.14 0.88 -2684 STRN striatin, calmodulin binding protein 1103739 3 3 3 1 1 1 0 0 1 0 0.14 0.88 -2685 DRG1 developmentally regulated GTP binding protein 1 577980 2 2 2 0 0 0 0 2 0 0 0.14 0.88 -2686 AR androgen receptor (dihydrotestosterone receptor; testicular feminization; spinal and bulbar muscular atrophy; Kennedy disease) 1118442 3 3 3 0 0 2 0 0 1 0 0.14 0.88 -2687 INHBC inhibin, beta C 540969 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2688 USP36 ubiquitin specific peptidase 36 1655862 3 3 3 4 0 2 0 0 1 0 0.14 0.88 -2689 FTSJD1 1174719 3 3 3 0 0 0 1 1 1 0 0.14 0.88 -2690 CDH19 cadherin 19, type 2 1198041 3 3 3 0 0 1 1 1 0 0 0.14 0.88 -2691 CCDC113 coiled-coil domain containing 113 539955 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2692 PRPF38A PRP38 pre-mRNA processing factor 38 (yeast) domain containing A 496353 1 1 1 0 0 0 0 1 0 0 0.14 0.88 -2693 RBM14 RNA binding motif protein 14 916149 2 2 2 0 0 0 0 1 1 0 0.14 0.88 -2694 GRHL2 grainyhead-like 2 (Drosophila) 984594 2 2 2 0 1 0 0 0 1 0 0.14 0.88 -2695 FAAH fatty acid amide hydrolase 693576 2 2 2 1 0 2 0 0 0 0 0.14 0.88 -2696 HR hairless homolog (mouse) 944541 2 2 2 1 0 2 0 0 0 0 0.14 0.88 -2697 GPSM3 G-protein signaling modulator 3 (AGS3-like, C. elegans) 252993 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2698 HEG1 HEG homolog 1 (zebrafish) 1880970 4 4 4 0 1 0 3 0 0 0 0.14 0.88 -2699 MLL5 myeloid/lymphoid or mixed-lineage leukemia 5 (trithorax homolog, Drosophila) 2878239 4 4 4 0 0 2 0 0 2 0 0.14 0.88 -2700 SLC39A1 solute carrier family 39 (zinc transporter), member 1 458328 1 1 1 0 0 0 1 0 0 0 0.14 0.88 -2701 LEPR leptin receptor 1821144 3 3 3 1 1 1 0 0 1 0 0.14 0.88 -2702 HSPD1 heat shock 60kDa protein 1 (chaperonin) 895362 2 2 2 1 0 1 1 0 0 0 0.14 0.88 -2703 ZC3H3 zinc finger CCCH-type containing 3 517647 1 1 1 2 0 0 0 1 0 0 0.14 0.88 -2704 ALDH3B2 aldehyde dehydrogenase 3 family, member B2 592176 2 2 2 0 1 0 0 1 0 0 0.14 0.88 -2705 TYRP1 tyrosinase-related protein 1 832494 2 2 2 0 0 0 1 0 1 0 0.14 0.88 -2706 CD300LF CD300 molecule-like family member f 456807 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2707 TUBD1 tubulin, delta 1 706758 2 2 2 0 1 0 1 0 0 0 0.14 0.88 -2708 NDUFS3 NADH dehydrogenase (ubiquinone) Fe-S protein 3, 30kDa (NADH-coenzyme Q reductase) 364533 1 1 1 0 1 0 0 0 0 0 0.14 0.88 -2709 SCNM1 sodium channel modifier 1 365547 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2710 EHF ets homologous factor 474045 1 1 1 0 0 0 0 1 0 0 0.14 0.88 -2711 MIER1 mesoderm induction early response 1 homolog (Xenopus laevis) 923754 2 2 2 0 0 0 1 0 1 0 0.14 0.88 -2712 TAS2R46 taste receptor, type 2, member 46 473538 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2713 DNAJC30 326001 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2714 ITPR1 inositol 1,4,5-triphosphate receptor, type 1 4245618 7 7 7 1 2 1 1 1 2 0 0.14 0.88 -2715 BRPF3 bromodomain and PHD finger containing, 3 1766895 4 4 4 0 1 0 2 1 0 0 0.14 0.88 -2716 CACNA2D1 calcium channel, voltage-dependent, alpha 2/delta subunit 1 1689831 4 4 4 0 1 1 1 0 1 0 0.14 0.88 -2717 STK17B serine/threonine kinase 17b 581529 2 2 2 0 0 1 0 0 1 0 0.14 0.88 -2718 GFRA2 GDNF family receptor alpha 2 204321 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2719 GRXCR2 384813 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2720 ENSA endosulfine alpha 304707 1 1 1 0 0 0 1 0 0 0 0.14 0.88 -2721 GRLF1 glucocorticoid receptor DNA binding factor 1 2287584 4 4 4 3 1 1 0 0 2 0 0.14 0.88 -2722 RPL18A ribosomal protein L18a 267189 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2723 BMP6 bone morphogenetic protein 6 457314 1 1 1 0 0 0 0 1 0 0 0.14 0.88 -2724 PLK2 polo-like kinase 2 (Drosophila) 932880 2 2 2 0 0 0 0 0 2 0 0.14 0.88 -2725 TMEM207 transmembrane protein 207 233727 1 1 1 0 0 0 1 0 0 0 0.14 0.88 -2726 ALS2CR11 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 11 1030224 2 2 2 1 1 0 0 0 1 0 0.14 0.88 -2727 AIG1 androgen-induced 1 365547 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2728 NTNG1 netrin G1 784836 2 2 2 1 1 0 1 0 0 0 0.14 0.88 -2729 USP5 ubiquitin specific peptidase 5 (isopeptidase T) 1347099 4 3 4 0 1 2 1 0 0 0 0.14 0.88 -2730 C15orf17 chromosome 15 open reading frame 17 192153 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2731 COMMD6 COMM domain containing 6 160719 1 1 1 0 1 0 0 0 0 0 0.14 0.88 -2732 CCDC144A coiled-coil domain containing 144A 1949415 4 4 4 0 0 2 1 1 0 0 0.14 0.88 -2733 RAPGEF4 Rap guanine nucleotide exchange factor (GEF) 4 1575249 2 2 2 1 0 0 0 0 2 0 0.14 0.88 -2734 S1PR3 578487 2 2 2 1 0 0 1 1 0 0 0.14 0.88 -2735 CATSPERG 1299441 3 3 3 0 0 2 1 0 0 0 0.14 0.88 -2736 RHOT1 ras homolog gene family, member T1 1074333 3 3 3 1 0 1 1 1 0 0 0.14 0.88 -2737 TMEM125 transmembrane protein 125 287469 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2738 CCR3 chemokine (C-C motif) receptor 3 549081 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2739 TMEM214 1005381 2 2 2 0 0 0 1 1 0 0 0.14 0.88 -2740 PLA1A phospholipase A1 member A 715884 2 2 2 2 1 0 0 0 1 0 0.14 0.88 -2741 C3orf38 chromosome 3 open reading frame 38 500916 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2742 GCLM glutamate-cysteine ligase, modifier subunit 366561 1 1 1 0 0 0 1 0 0 0 0.14 0.88 -2743 SYT8 synaptotagmin VIII 255528 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2744 IRF6 interferon regulatory factor 6 726024 2 2 2 0 0 1 0 1 0 0 0.14 0.88 -2745 HSDL2 hydroxysteroid dehydrogenase like 2 648960 2 2 2 0 1 0 1 0 0 0 0.14 0.88 -2746 GZMH granzyme H (cathepsin G-like 2, protein h-CCPX) 385827 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2747 TMEM132D transmembrane protein 132D 1293357 3 3 3 2 1 2 0 0 0 0 0.14 0.88 -2748 NXF1 nuclear RNA export factor 1 1013493 2 2 2 1 0 1 1 0 0 0 0.14 0.88 -2749 TMEM9B TMEM9 domain family, member B 257556 1 1 1 0 1 0 0 0 0 0 0.14 0.88 -2750 GYG1 glycogenin 1 573924 2 2 2 0 1 0 1 0 0 0 0.14 0.88 -2751 PPIL5 peptidylprolyl isomerase (cyclophilin)-like 5 544518 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2752 MYO5B myosin VB 2869620 5 5 4 1 1 2 2 0 0 0 0.14 0.88 -2753 STH saitohin 191139 1 1 1 0 1 0 0 0 0 0 0.14 0.88 -2754 PLAGL2 pleiomorphic adenoma gene-like 2 759993 2 2 2 0 0 0 0 1 1 0 0.14 0.88 -2755 OR5D18 olfactory receptor, family 5, subfamily D, member 18 479622 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2756 OR51A4 olfactory receptor, family 51, subfamily A, member 4 479622 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2757 TLR7 toll-like receptor 7 1601106 3 3 3 0 1 1 0 0 1 0 0.14 0.88 -2758 ESCO1 establishment of cohesion 1 homolog 1 (S. cerevisiae) 1297413 3 3 3 0 1 0 0 1 1 0 0.14 0.88 -2759 CNPY1 canopy 1 homolog (zebrafish) 147537 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2760 MED8 mediator complex subunit 8 477594 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2761 PRKAB1 protein kinase, AMP-activated, beta 1 non-catalytic subunit 386334 1 1 1 0 1 0 0 0 0 0 0.14 0.88 -2762 PCDHB4 protocadherin beta 4 1197027 3 3 3 1 2 1 0 0 0 0 0.14 0.88 -2763 VASH1 vasohibin 1 200265 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2764 LPAR6 526773 1 1 1 0 0 0 1 0 0 0 0.14 0.88 -2765 CHRM2 cholinergic receptor, muscarinic 2 712335 2 2 2 1 0 2 0 0 0 0 0.14 0.88 -2766 BCL2L12 BCL2-like 12 (proline rich) 315354 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2767 IL12RB1 interleukin 12 receptor, beta 1 909051 2 2 2 0 1 0 0 0 1 0 0.14 0.88 -2768 OR6N1 olfactory receptor, family 6, subfamily N, member 1 478101 1 1 1 1 0 0 0 0 1 0 0.14 0.88 -2769 BCL9L B-cell CLL/lymphoma 9-like 1700985 3 3 3 2 0 1 0 1 1 0 0.14 0.88 -2770 KCTD10 potassium channel tetramerisation domain containing 10 491790 1 1 1 0 0 0 0 1 0 0 0.14 0.88 -2771 MYF6 myogenic factor 6 (herculin) 375687 1 1 1 0 1 0 0 0 0 0 0.14 0.88 -2772 SAA1 serum amyloid A1 193167 1 1 1 0 1 0 0 0 0 0 0.14 0.88 -2773 LRRIQ1 leucine-rich repeats and IQ motif containing 1 2675439 5 5 5 0 0 3 2 0 0 0 0.14 0.88 -2774 PSMD9 proteasome (prosome, macropain) 26S subunit, non-ATPase, 9 280878 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2775 SRCIN1 548574 1 1 1 0 0 0 0 1 0 0 0.14 0.88 -2776 LCP1 lymphocyte cytosolic protein 1 (L-plastin) 985608 2 2 2 0 1 0 0 1 0 0 0.14 0.88 -2777 GAR1 343746 1 1 1 0 0 0 1 0 0 0 0.14 0.88 -2778 CYR61 cysteine-rich, angiogenic inducer, 61 465933 1 1 1 0 0 1 0 0 0 0 0.14 0.88 -2779 GPR50 G protein-coupled receptor 50 944034 2 2 2 0 0 2 0 0 0 0 0.14 0.88 -2780 PRMT3 protein arginine methyltransferase 3 773682 2 2 2 0 0 2 0 0 0 0 0.14 0.88 -2781 WDR74 WD repeat domain 74 525759 1 1 1 0 0 0 0 0 1 0 0.14 0.88 -2782 RBM12 RNA binding motif protein 12 1421121 3 3 3 0 0 2 0 0 1 0 0.14 0.88 -2783 TAS2R8 taste receptor, type 2, member 8 473538 1 1 1 0 0 0 1 0 0 0 0.14 0.88 -2784 KRTAP10-5 keratin associated protein 10-5 415740 1 1 1 0 0 0 1 0 0 0 0.14 0.89 -2785 ZNF660 zinc finger protein 660 507000 1 1 1 0 0 0 0 0 1 0 0.14 0.89 -2786 MCC mutated in colorectal cancers 1532661 3 3 3 0 0 1 1 0 1 0 0.14 0.89 -2787 LDHC lactate dehydrogenase C 520689 1 1 1 0 0 1 0 0 0 0 0.14 0.89 -2788 PARP12 poly (ADP-ribose) polymerase family, member 12 895362 2 2 2 0 1 0 1 0 0 0 0.14 0.89 -2789 NEB nebulin 10434060 13 13 13 0 1 3 5 0 4 0 0.14 0.89 -2790 SLC13A4 solute carrier family 13 (sodium/sulfate symporters), member 4 933894 2 2 2 0 0 2 0 0 0 0 0.14 0.89 -2791 FKBP15 FK506 binding protein 15, 133kDa 1755234 4 4 4 0 0 1 2 0 1 0 0.14 0.89 -2792 CYP2C18 cytochrome P450, family 2, subfamily C, polypeptide 18 765063 2 2 2 0 0 0 0 0 2 0 0.14 0.89 -2793 YME1L1 YME1-like 1 (S. cerevisiae) 1196013 3 3 3 0 0 1 1 1 0 0 0.14 0.89 -2794 NPTN neuroplastin 574938 1 1 1 0 0 0 0 0 1 0 0.14 0.89 -2795 TTPA tocopherol (alpha) transfer protein 329043 1 1 1 0 0 0 0 1 0 0 0.14 0.89 -2796 UPF3B UPF3 regulator of nonsense transcripts homolog B (yeast) 758472 2 2 2 1 2 0 0 0 0 0 0.14 0.89 -2797 TSPAN13 tetraspanin 13 323973 1 1 1 0 0 1 0 0 0 0 0.14 0.89 -2798 PPM1E protein phosphatase 1E (PP2C domain containing) 979017 2 2 2 0 1 0 0 1 0 0 0.14 0.89 -2799 TRIP11 thyroid hormone receptor interactor 11 3053154 5 5 5 1 0 0 4 0 1 0 0.14 0.89 -2800 C4orf23 chromosome 4 open reading frame 23 576966 1 1 1 0 0 0 0 0 1 0 0.14 0.89 -2801 WFDC11 WAP four-disulfide core domain 11 139932 1 1 1 0 0 0 1 0 0 0 0.14 0.89 -2802 KIAA1383 KIAA1383 1326819 3 3 3 1 0 1 0 1 1 0 0.14 0.89 -2803 ZCCHC6 zinc finger, CCHC domain containing 6 2326623 5 4 5 1 0 1 1 1 2 0 0.14 0.89 -2804 PANK4 pantothenate kinase 4 487734 1 1 1 0 0 0 0 1 0 0 0.14 0.89 -2805 GYPB glycophorin B (MNS blood group) 145002 1 1 1 0 0 1 0 0 0 0 0.14 0.89 -2806 DPF1 D4, zinc and double PHD fingers family 1 442104 1 1 1 0 0 0 0 1 0 0 0.14 0.89 -2807 ZNF835 677352 2 2 2 1 0 1 1 0 0 0 0.14 0.89 -2808 IFNB1 interferon, beta 1, fibroblast 287976 1 1 1 1 1 0 0 0 0 0 0.14 0.89 -2809 LRRN3 leucine rich repeat neuronal 3 1080417 2 2 2 0 0 0 1 0 1 0 0.14 0.89 -2810 SYT17 synaptotagmin XVII 729066 2 2 2 0 1 0 0 0 1 0 0.14 0.89 -2811 MUC15 mucin 15, cell surface associated 534885 1 1 1 0 0 1 0 0 0 0 0.14 0.89 -2812 PCID2 PCI domain containing 2 616512 2 2 2 0 0 1 1 0 0 0 0.14 0.89 -2813 DKK4 dickkopf homolog 4 (Xenopus laevis) 350337 1 1 1 0 1 0 0 0 0 0 0.14 0.89 -2814 PPP2R3C protein phosphatase 2 (formerly 2A), regulatory subunit B'', gamma 716898 3 2 3 0 0 0 3 0 0 0 0.14 0.89 -2815 AGK acylglycerol kinase 673803 2 2 2 0 1 0 1 0 0 0 0.14 0.89 -2816 EBF2 early B-cell factor 2 878124 2 2 2 0 0 1 1 0 0 0 0.14 0.89 -2817 RELL2 RELT-like 2 474552 1 1 1 0 0 1 0 0 0 0 0.14 0.89 -2818 CHCHD1 coiled-coil-helix-coiled-coil-helix domain containing 1 187083 1 1 1 0 0 1 0 0 0 0 0.14 0.89 -2819 ARID4B AT rich interactive domain 4B (RBP1-like) 2043717 4 4 4 1 0 0 3 0 1 0 0.14 0.89 -2820 ARHGDIB Rho GDP dissociation inhibitor (GDI) beta 317382 1 1 1 0 0 1 0 0 0 0 0.14 0.89 -2821 ERO1L ERO1-like (S. cerevisiae) 685971 2 2 2 0 0 0 1 1 0 0 0.15 0.89 -2822 TTC21B tetratricopeptide repeat domain 21B 2049294 3 3 3 0 1 1 0 0 1 0 0.15 0.89 -2823 CD2BP2 CD2 (cytoplasmic tail) binding protein 2 532350 1 1 1 0 0 0 0 0 1 0 0.15 0.89 -2824 TOR1AIP2 torsin A interacting protein 2 927303 2 2 2 0 0 1 1 0 0 0 0.15 0.89 -2825 MTFR1 mitochondrial fission regulator 1 572910 2 2 2 0 0 0 2 0 0 0 0.15 0.89 -2826 CSNK2A2 casein kinase 2, alpha prime polypeptide 501423 1 1 1 0 0 0 1 0 0 0 0.15 0.89 -2827 PCYT1B phosphate cytidylyltransferase 1, choline, beta 631722 2 2 2 0 0 1 0 1 0 0 0.15 0.89 -2828 FOXD3 forkhead box D3 191139 1 1 1 1 1 0 0 0 0 0 0.15 0.89 -2829 KLHL4 kelch-like 4 (Drosophila) 1151397 2 2 2 0 0 1 0 0 1 0 0.15 0.89 -2830 FARP2 FERM, RhoGEF and pleckstrin domain protein 2 1637103 3 3 3 0 1 0 0 0 2 0 0.15 0.89 -2831 CNKSR2 connector enhancer of kinase suppressor of Ras 2 1622907 3 3 3 0 0 0 0 1 2 0 0.15 0.89 -2832 CEMP1 cementum protein 1 339183 1 1 1 1 0 0 1 0 0 0 0.15 0.89 -2833 WDR91 WD repeat domain 91 1103739 2 2 2 0 0 0 0 2 0 0 0.15 0.89 -2834 CRTC2 CREB regulated transcription coactivator 2 1055574 2 2 2 1 0 1 1 0 0 0 0.15 0.89 -2835 FAP fibroblast activation protein, alpha 1210209 3 3 3 0 0 0 2 0 1 0 0.15 0.89 -2836 ERCC1 excision repair cross-complementing rodent repair deficiency, complementation group 1 (includes overlapping antisense sequence) 533871 1 1 1 0 0 0 0 0 1 0 0.15 0.89 -2837 TSPAN1 tetraspanin 1 382278 1 1 1 0 0 0 0 1 0 0 0.15 0.89 -2838 HEYL hairy/enhancer-of-split related with YRPW motif-like 309270 1 1 1 0 0 0 0 0 1 0 0.15 0.89 -2839 MEAF6 275808 1 1 1 0 0 0 0 1 0 0 0.15 0.89 -2840 GLOD4 glyoxalase domain containing 4 425373 1 1 1 0 0 0 0 0 1 0 0.15 0.89 -2841 SLC15A1 solute carrier family 15 (oligopeptide transporter), member 1 1120977 3 3 3 0 0 2 1 0 0 0 0.15 0.89 -2842 KCNIP1 Kv channel interacting protein 1 411684 1 1 1 0 0 0 0 0 1 0 0.15 0.89 -2843 LRCH2 leucine-rich repeats and calponin homology (CH) domain containing 2 754923 2 2 2 0 1 0 0 0 1 0 0.15 0.89 -2844 DUSP13 dual specificity phosphatase 13 548574 1 1 1 0 0 1 0 0 0 0 0.15 0.89 -2845 CPNE3 copine III 848718 2 2 2 0 1 0 1 0 0 0 0.15 0.89 -2846 ZNF167 zinc finger protein 167 1156467 3 3 3 0 0 3 0 0 0 0 0.15 0.89 -2847 CD86 CD86 molecule 516126 1 1 1 1 0 0 0 1 0 0 0.15 0.89 -2848 AMHR2 anti-Mullerian hormone receptor, type II 835029 2 2 2 0 1 0 1 0 0 0 0.15 0.89 -2849 G6PC2 glucose-6-phosphatase, catalytic, 2 551616 1 1 1 0 0 1 0 0 0 0 0.15 0.89 -2850 KCNJ2 potassium inwardly-rectifying channel, subfamily J, member 2 653016 2 2 2 0 0 0 2 0 0 0 0.15 0.89 -2851 INHBE inhibin, beta E 537927 1 1 1 0 0 0 1 0 0 0 0.15 0.89 -2852 PAX3 paired box 3 708279 2 2 2 0 0 1 1 0 0 0 0.15 0.89 -2853 POLR3F polymerase (RNA) III (DNA directed) polypeptide F, 39 kDa 494832 1 1 1 0 0 0 0 0 1 0 0.15 0.89 -2854 S100A7A S100 calcium binding protein A7A 159198 1 1 1 0 0 0 1 0 0 0 0.15 0.89 -2855 APBA2 amyloid beta (A4) precursor protein-binding, family A, member 2 (X11-like) 976989 2 2 2 0 0 0 1 0 1 0 0.15 0.89 -2856 GULP1 GULP, engulfment adaptor PTB domain containing 1 484185 1 1 1 0 0 0 1 0 0 0 0.15 0.89 -2857 ZNF460 zinc finger protein 460 845169 2 2 2 0 1 0 1 0 0 0 0.15 0.89 -2858 OAS1 2',5'-oligoadenylate synthetase 1, 40/46kDa 721968 2 2 2 0 0 0 1 1 0 0 0.15 0.89 -2859 BAZ2B bromodomain adjacent to zinc finger domain, 2B 3370029 6 6 6 0 0 1 2 1 2 0 0.15 0.89 -2860 TBC1D19 TBC1 domain family, member 19 779766 2 2 2 0 1 1 0 0 0 0 0.15 0.89 -2861 ACTG1 actin, gamma 1 569361 1 1 1 0 0 0 0 0 1 0 0.15 0.89 -2862 STK38L serine/threonine kinase 38 like 733629 2 2 2 0 0 1 1 0 0 0 0.15 0.89 -2863 FAM160A2 1450020 2 2 2 0 0 1 0 0 1 0 0.15 0.89 -2864 ESYT1 1758783 4 4 4 1 1 2 1 0 0 0 0.15 0.89 -2865 WDR72 WD repeat domain 72 1716195 4 3 4 1 0 2 0 1 1 0 0.15 0.89 -2866 GUCA1A guanylate cyclase activator 1A (retina) 315354 1 1 1 0 1 0 0 0 0 0 0.15 0.89 -2867 BAIAP2 BAI1-associated protein 2 429936 1 1 1 0 0 0 0 0 1 0 0.15 0.89 -2868 UBR3 ubiquitin protein ligase E3 component n-recognin 3 1213758 3 3 3 0 1 0 1 0 1 0 0.15 0.89 -2869 AP1S3 adaptor-related protein complex 1, sigma 3 subunit 242346 1 1 1 0 0 1 0 0 0 0 0.15 0.89 -2870 SOD1 superoxide dismutase 1, soluble (amyotrophic lateral sclerosis 1 (adult)) 207363 1 1 1 0 0 0 1 0 0 0 0.15 0.89 -2871 OPN1LW opsin 1 (cone pigments), long-wave-sensitive 509028 1 1 1 2 1 0 0 0 0 0 0.15 0.89 -2872 GBP6 guanylate binding protein family, member 6 984594 2 2 2 1 0 1 1 0 0 0 0.15 0.89 -2873 CHPT1 choline phosphotransferase 1 496860 1 1 1 0 0 0 0 0 1 0 0.15 0.89 -2874 PDE1A phosphodiesterase 1A, calmodulin-dependent 883194 2 2 2 0 2 0 0 0 0 0 0.15 0.89 -2875 FBXO3 F-box protein 3 690027 2 2 2 0 0 1 1 0 0 0 0.15 0.89 -2876 OR2Z1 olfactory receptor, family 2, subfamily Z, member 1 481143 1 1 1 1 0 1 0 0 0 0 0.15 0.89 -2877 EMR2 egf-like module containing, mucin-like, hormone receptor-like 2 1160016 3 3 3 1 1 1 1 0 0 0 0.15 0.89 -2878 C3orf24 chromosome 3 open reading frame 24 272766 1 1 1 0 0 0 1 0 0 0 0.15 0.89 -2879 TCHHL1 trichohyalin-like 1 1380561 3 3 3 0 0 2 0 1 0 0 0.15 0.89 -2880 CKAP2 cytoskeleton associated protein 2 1021098 2 2 2 0 0 1 1 0 0 0 0.15 0.89 -2881 KIAA2013 KIAA2013 599274 1 1 1 1 0 0 0 0 1 0 0.15 0.89 -2882 IL17RC interleukin 17 receptor C 862914 2 2 2 2 0 2 0 0 0 0 0.15 0.89 -2883 CPN1 carboxypeptidase N, polypeptide 1 716391 2 2 2 0 1 1 0 0 0 0 0.15 0.89 -2884 NR3C2 nuclear receptor subfamily 3, group C, member 2 1465230 3 3 3 1 0 1 2 0 0 0 0.15 0.89 -2885 MLL4 2317497 4 4 4 0 0 1 0 1 2 0 0.15 0.89 -2886 SNRPC small nuclear ribonucleoprotein polypeptide C 255528 1 1 1 0 0 0 1 0 0 0 0.15 0.89 -2887 HDX highly divergent homeobox 1069263 2 2 2 1 0 1 0 1 0 0 0.15 0.89 -2888 STRN3 striatin, calmodulin binding protein 3 1105260 2 2 2 2 0 0 0 1 1 0 0.15 0.89 -2889 HTR3E 5-hydroxytryptamine (serotonin) receptor 3, family member E 734136 2 2 2 0 0 1 1 0 0 0 0.15 0.89 -2890 FAM47A family with sequence similarity 47, member A 1206660 4 3 4 0 2 2 0 0 0 0 0.15 0.89 -2891 OR8K1 olfactory receptor, family 8, subfamily K, member 1 488748 1 1 1 2 0 1 0 0 0 0 0.15 0.89 -2892 MINK1 misshapen-like kinase 1 (zebrafish) 1024647 2 2 2 0 0 2 0 0 0 0 0.15 0.89 -2893 IL1F6 interleukin 1 family, member 6 (epsilon) 249951 1 1 1 0 0 0 0 1 0 0 0.15 0.89 -2894 FGFBP1 fibroblast growth factor binding protein 1 359463 1 1 1 0 0 0 0 0 1 0 0.15 0.89 -2895 LIG3 ligase III, DNA, ATP-dependent 1604148 3 3 3 0 0 0 2 1 0 0 0.15 0.89 -2896 ITGB4 integrin, beta 4 2111655 4 4 4 1 1 2 0 1 0 0 0.15 0.89 -2897 KRTAP5-5 keratin associated protein 5-5 364026 1 1 1 1 0 0 0 0 1 0 0.15 0.89 -2898 BAG3 BCL2-associated athanogene 3 790920 2 2 2 0 0 1 0 0 1 0 0.15 0.89 -2899 EXTL3 exostoses (multiple)-like 3 1409460 3 3 3 0 0 0 1 1 1 0 0.15 0.89 -2900 SSX7 synovial sarcoma, X breakpoint 7 299637 1 1 1 0 0 1 0 0 0 0 0.15 0.89 -2901 TMEM18 transmembrane protein 18 193674 1 1 1 0 0 0 1 0 0 0 0.15 0.89 -2902 TNFRSF1A tumor necrosis factor receptor superfamily, member 1A 484692 1 1 1 1 0 1 0 0 0 0 0.15 0.89 -2903 RDH14 retinol dehydrogenase 14 (all-trans/9-cis/11-cis) 315354 1 1 1 0 0 0 1 0 0 0 0.15 0.89 -2904 LPHN3 latrophilin 3 1923051 4 4 4 0 0 2 1 0 1 0 0.15 0.89 -2905 MOBKL1A MOB1, Mps One Binder kinase activator-like 1A (yeast) 333099 1 1 1 1 0 0 1 0 0 0 0.15 0.89 -2906 PHKA2 phosphorylase kinase, alpha 2 (liver) 1915446 4 4 4 3 3 0 0 0 1 0 0.15 0.89 -2907 TMEM150A 406614 1 1 1 0 0 1 0 0 0 0 0.15 0.89 -2908 EFR3A EFR3 homolog A (S. cerevisiae) 1273077 2 2 2 1 0 1 0 0 1 0 0.15 0.89 -2909 SPRED1 sprouty-related, EVH1 domain containing 1 672789 2 2 2 0 1 0 0 1 0 0 0.15 0.89 -2910 RPS4X ribosomal protein S4, X-linked 412191 1 1 1 0 0 0 1 0 0 0 0.15 0.89 -2911 NR6A1 nuclear receptor subfamily 6, group A, member 1 698646 2 2 2 0 0 1 1 0 0 0 0.15 0.89 -2912 KIAA0776 KIAA0776 1206660 3 3 3 1 0 0 3 0 0 0 0.15 0.89 -2913 AURKC aurora kinase C 454272 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2914 FAM53C family with sequence similarity 53, member C 605865 1 1 1 1 0 0 0 0 1 0 0.15 0.90 -2915 ERCC6 excision repair cross-complementing rodent repair deficiency, complementation group 6 2312934 5 5 5 1 0 2 2 1 0 0 0.15 0.90 -2916 SFRS4 splicing factor, arginine/serine-rich 4 702195 2 2 2 0 1 0 0 1 0 0 0.15 0.90 -2917 HSP90AB1 heat shock protein 90kDa alpha (cytosolic), class B member 1 1125033 2 2 2 0 0 0 0 0 2 0 0.15 0.90 -2918 VPS24 vacuolar protein sorting 24 homolog (S. cerevisiae) 351351 1 1 1 0 0 1 0 0 0 0 0.15 0.90 -2919 GZMK granzyme K (granzyme 3; tryptase II) 413205 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2920 C10orf119 chromosome 10 open reading frame 119 979017 2 2 2 0 0 0 1 0 1 0 0.15 0.90 -2921 ANGPTL3 angiopoietin-like 3 715377 2 2 2 0 0 0 2 0 0 0 0.15 0.90 -2922 COPS3 COP9 constitutive photomorphogenic homolog subunit 3 (Arabidopsis) 639327 2 2 2 0 0 1 0 1 0 0 0.15 0.90 -2923 C7orf60 561249 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2924 C12orf48 chromosome 12 open reading frame 48 777231 2 2 2 0 0 0 2 0 0 0 0.15 0.90 -2925 FAM53B family with sequence similarity 53, member B 338676 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2926 FEZ1 fasciculation and elongation protein zeta 1 (zygin I) 618033 2 2 2 0 1 1 0 0 0 0 0.15 0.90 -2927 ZNF420 zinc finger protein 420 1054053 2 2 2 0 0 0 0 0 2 0 0.15 0.90 -2928 LRRIQ3 964821 2 2 2 0 0 0 1 1 0 0 0.15 0.90 -2929 NEU2 sialidase 2 (cytosolic sialidase) 583050 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2930 CCDC39 coiled-coil domain containing 39 1282710 2 2 2 0 1 0 0 0 1 0 0.15 0.90 -2931 FAM46C family with sequence similarity 46, member C 598260 2 2 2 1 2 0 0 0 0 0 0.15 0.90 -2932 BAZ2A bromodomain adjacent to zinc finger domain, 2A 2957838 3 3 3 0 0 0 0 1 2 0 0.15 0.90 -2933 DMRT3 doublesex and mab-3 related transcription factor 3 491283 1 1 1 0 0 1 0 0 0 0 0.15 0.90 -2934 CREB3L2 cAMP responsive element binding protein 3-like 2 694083 2 2 2 0 1 0 1 0 0 0 0.15 0.90 -2935 STAC SH3 and cysteine rich domain 598260 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2936 GATSL3 319917 1 1 1 0 0 1 0 0 0 0 0.15 0.90 -2937 KREMEN1 kringle containing transmembrane protein 1 691041 2 2 2 0 0 1 1 0 0 0 0.15 0.90 -2938 AQP5 aquaporin 5 284427 1 1 1 0 0 0 0 1 0 0 0.15 0.90 -2939 LY6G5B lymphocyte antigen 6 complex, locus G5B 313326 1 1 1 0 0 1 0 0 0 0 0.15 0.90 -2940 CCNK cyclin K 509535 1 1 1 0 0 0 1 0 0 0 0.15 0.90 -2941 BAG4 BCL2-associated athanogene 4 567840 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2942 TSHR thyroid stimulating hormone receptor 1253304 3 3 3 1 0 3 0 0 0 0 0.15 0.90 -2943 ZNF572 zinc finger protein 572 810186 2 2 2 0 0 1 1 0 0 0 0.15 0.90 -2944 FZD3 frizzled homolog 3 (Drosophila) 1026675 2 2 2 0 1 0 1 0 0 0 0.15 0.90 -2945 ACAA1 acetyl-Coenzyme A acyltransferase 1 (peroxisomal 3-oxoacyl-Coenzyme A thiolase) 562770 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2946 SLC25A25 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 25 848211 2 2 2 0 0 1 0 0 1 0 0.15 0.90 -2947 NOP16 282399 1 1 1 0 0 1 0 0 0 0 0.15 0.90 -2948 SORBS1 sorbin and SH3 domain containing 1 2061969 4 4 4 1 2 1 0 0 1 0 0.15 0.90 -2949 C7orf61 320931 1 1 1 0 0 1 0 0 0 0 0.15 0.90 -2950 SCD stearoyl-CoA desaturase (delta-9-desaturase) 559728 1 1 1 0 0 0 0 1 0 0 0.15 0.90 -2951 TPST1 tyrosylprotein sulfotransferase 1 572403 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2952 CDH24 cadherin-like 24 985101 2 2 2 0 0 0 2 0 0 0 0.15 0.90 -2953 FAM180A 270738 1 1 1 0 0 1 0 0 0 0 0.15 0.90 -2954 PLCD3 phospholipase C, delta 3 648960 2 2 2 1 0 2 0 0 0 0 0.15 0.90 -2955 HOMER1 homer homolog 1 (Drosophila) 558207 1 1 1 0 0 0 1 0 0 0 0.15 0.90 -2956 NOD1 nucleotide-binding oligomerization domain containing 1 1415544 3 3 3 0 0 2 0 1 0 0 0.15 0.90 -2957 BZRAP1 benzodiazapine receptor (peripheral) associated protein 1 2260206 4 4 4 4 1 0 3 0 0 0 0.15 0.90 -2958 KCNH1 potassium voltage-gated channel, subfamily H (eag-related), member 1 1528098 3 3 3 1 0 3 0 0 0 0 0.15 0.90 -2959 ADPRH ADP-ribosylarginine hydrolase 550602 1 1 1 0 0 1 0 0 0 0 0.15 0.90 -2960 MYCT1 myc target 1 363012 1 1 1 0 1 0 0 0 0 0 0.15 0.90 -2961 UBA6 ubiquitin-like modifier activating enzyme 6 1592994 3 3 3 0 1 0 1 0 1 0 0.15 0.90 -2962 AFF3 AF4/FMR2 family, member 3 1762839 4 4 4 2 0 3 1 0 0 0 0.15 0.90 -2963 CRIPAK cysteine-rich PAK1 inhibitor 315354 1 1 1 1 0 1 0 0 0 0 0.15 0.90 -2964 SNCB synuclein, beta 152100 1 1 1 0 0 1 0 0 0 0 0.15 0.90 -2965 SRF serum response factor (c-fos serum response element-binding transcription factor) 526266 1 1 1 0 0 0 1 0 0 0 0.15 0.90 -2966 HS2ST1 heparan sulfate 2-O-sulfotransferase 1 559221 1 1 1 0 0 0 1 0 0 0 0.15 0.90 -2967 ZIC5 Zic family member 5 (odd-paired homolog, Drosophila) 339183 1 1 1 0 0 1 0 0 0 0 0.15 0.90 -2968 C6orf154 chromosome 6 open reading frame 154 267189 1 1 1 1 0 1 0 0 0 0 0.15 0.90 -2969 TMC4 transmembrane channel-like 4 874575 2 2 2 0 2 0 0 0 0 0 0.15 0.90 -2970 PRPSAP2 phosphoribosyl pyrophosphate synthetase-associated protein 2 583050 1 1 1 1 0 0 0 0 1 0 0.15 0.90 -2971 DAB2 disabled homolog 2, mitogen-responsive phosphoprotein (Drosophila) 1199055 3 3 3 0 1 1 1 0 0 0 0.15 0.90 -2972 CSTF3 cleavage stimulation factor, 3' pre-RNA, subunit 3, 77kDa 1181817 3 3 3 0 0 2 1 0 0 0 0.15 0.90 -2973 USH1G Usher syndrome 1G (autosomal recessive) 531843 1 1 1 0 0 0 1 0 0 0 0.15 0.90 -2974 CYP27C1 cytochrome P450, family 27, subfamily C, polypeptide 1 581529 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2975 PSG9 pregnancy specific beta-1-glycoprotein 9 661635 2 2 2 0 0 0 2 0 0 0 0.15 0.90 -2976 DNAJB5 DnaJ (Hsp40) homolog, subfamily B, member 5 554151 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2977 SNAPC4 small nuclear RNA activating complex, polypeptide 4, 190kDa 872547 2 2 1 0 0 0 2 0 0 0 0.15 0.90 -2978 COL8A1 collagen, type VIII, alpha 1 949611 2 2 2 1 0 2 0 0 0 0 0.15 0.90 -2979 ZFYVE27 zinc finger, FYVE domain containing 27 585585 1 1 1 0 0 0 0 0 1 0 0.15 0.90 -2980 TOPBP1 topoisomerase (DNA) II binding protein 1 2371239 4 4 4 1 2 0 0 2 0 0 0.15 0.90 -2981 PADI2 peptidyl arginine deiminase, type II 930345 2 2 2 0 1 0 0 0 1 0 0.16 0.90 -2982 FCRLB Fc receptor-like B 544518 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -2983 KLC2 kinesin light chain 2 943527 2 2 2 0 0 1 0 0 1 0 0.16 0.90 -2984 PADI4 peptidyl arginine deiminase, type IV 1010958 2 2 2 0 1 0 1 0 0 0 0.16 0.90 -2985 RNLS 574431 1 1 1 1 0 0 0 0 1 0 0.16 0.90 -2986 PSMD8 proteasome (prosome, macropain) 26S subunit, non-ATPase, 8 296088 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -2987 FAM86A family with sequence similarity 86, member A 468975 1 1 1 1 0 0 0 1 0 0 0.16 0.90 -2988 KRT82 keratin 82 800046 2 2 2 1 0 1 0 0 1 0 0.16 0.90 -2989 ITIH5L inter-alpha (globulin) inhibitor H5-like 1999608 4 4 4 1 2 0 0 1 1 0 0.16 0.90 -2990 MUSK muscle, skeletal, receptor tyrosine kinase 1302990 3 3 3 0 3 0 0 0 0 0 0.16 0.90 -2991 TNFSF18 tumor necrosis factor (ligand) superfamily, member 18 310284 1 1 1 0 0 0 0 1 0 0 0.16 0.90 -2992 AGXT alanine-glyoxylate aminotransferase 319410 1 1 1 0 0 0 0 1 0 0 0.16 0.90 -2993 KLHDC4 kelch domain containing 4 612963 2 2 2 0 2 0 0 0 0 0 0.16 0.90 -2994 PRKACA protein kinase, cAMP-dependent, catalytic, alpha 543504 1 1 1 1 0 0 0 1 0 0 0.16 0.90 -2995 POLB polymerase (DNA directed), beta 539448 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -2996 SHC4 SHC (Src homology 2 domain containing) family, member 4 984087 2 2 2 0 0 1 0 0 1 0 0.16 0.90 -2997 OR1K1 olfactory receptor, family 1, subfamily K, member 1 484185 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -2998 CARD14 caspase recruitment domain family, member 14 1008930 2 2 2 2 0 0 0 1 1 0 0.16 0.90 -2999 TOB1 transducer of ERBB2, 1 528294 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3000 C4orf22 chromosome 4 open reading frame 22 368082 1 1 1 0 0 0 0 1 0 0 0.16 0.90 -3001 AGAP3 1164579 3 3 3 0 2 1 0 0 0 0 0.16 0.90 -3002 SYT5 synaptotagmin V 454272 1 1 1 0 1 0 0 0 0 0 0.16 0.90 -3003 MTMR11 myotubularin related protein 11 1098669 2 2 2 0 0 1 0 1 0 0 0.16 0.90 -3004 PRSS23 protease, serine, 23 586092 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3005 FRS3 fibroblast growth factor receptor substrate 3 682422 2 2 2 0 0 2 0 0 0 0 0.16 0.90 -3006 MCM7 minichromosome maintenance complex component 7 1125540 2 2 2 0 0 1 0 0 1 0 0.16 0.90 -3007 DHRS4 dehydrogenase/reductase (SDR family) member 4 365547 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3008 MEP1A meprin A, alpha (PABA peptide hydrolase) 1163565 3 3 3 0 2 0 1 0 0 0 0.16 0.90 -3009 LGI4 leucine-rich repeat LGI family, member 4 209391 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3010 TPM2 tropomyosin 2 (beta) 518661 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3011 MRPS9 mitochondrial ribosomal protein S9 624117 2 2 2 0 1 0 0 0 1 0 0.16 0.90 -3012 GIPC2 GIPC PDZ domain containing family, member 2 369096 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3013 OSMR oncostatin M receptor 1544322 3 3 3 1 0 1 1 1 0 0 0.16 0.90 -3014 RORC RAR-related orphan receptor C 817284 2 2 2 1 0 2 0 0 0 0 0.16 0.90 -3015 PITPNC1 phosphatidylinositol transfer protein, cytoplasmic 1 555672 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3016 SFTA3 152607 1 1 1 1 1 0 0 0 0 0 0.16 0.90 -3017 DAND5 DAN domain family, member 5 293046 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3018 RBBP9 retinoblastoma binding protein 9 292539 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3019 CRKL v-crk sarcoma virus CT10 oncogene homolog (avian)-like 468468 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3020 SLC1A4 solute carrier family 1 (glutamate/neutral amino acid transporter), member 4 557700 1 1 1 1 0 0 0 0 1 0 0.16 0.90 -3021 SSX5 synovial sarcoma, X breakpoint 5 364026 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3022 CYTH1 591669 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3023 ARMC8 armadillo repeat containing 8 1081938 2 2 2 0 0 0 1 0 1 0 0.16 0.90 -3024 COL2A1 collagen, type II, alpha 1 2085291 3 3 3 0 1 0 0 0 2 0 0.16 0.90 -3025 LGALS8 lectin, galactoside-binding, soluble, 8 (galectin 8) 567840 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3026 WIF1 WNT inhibitory factor 1 521196 1 1 1 0 0 0 0 1 0 0 0.16 0.90 -3027 CLDN15 claudin 15 335127 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3028 DLX6 distal-less homeobox 6 230178 1 1 1 0 1 0 0 0 0 0 0.16 0.90 -3029 ELMO2 engulfment and cell motility 2 1137201 2 2 2 0 0 0 0 0 2 0 0.16 0.90 -3030 NTM 591162 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3031 CBS cystathionine-beta-synthase 475059 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3032 TTC35 tetratricopeptide repeat domain 35 475059 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3033 ZNF22 zinc finger protein 22 (KOX 15) 344253 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3034 DEFB112 defensin, beta 112 177450 1 1 1 1 1 0 0 0 0 0 0.16 0.90 -3035 CLDN19 claudin 19 163254 1 1 1 0 1 0 0 0 0 0 0.16 0.90 -3036 NKAIN2 Na+/K+ transporting ATPase interacting 2 332085 1 1 1 0 1 0 0 0 0 0 0.16 0.90 -3037 FAM46A family with sequence similarity 46, member A 590148 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3038 OR5L1 olfactory receptor, family 5, subfamily L, member 1 476580 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3039 SLCO1A2 solute carrier organic anion transporter family, member 1A2 1048983 2 2 2 1 0 0 0 1 1 0 0.16 0.90 -3040 LPP LIM domain containing preferred translocation partner in lipoma 950625 2 2 2 0 0 0 2 0 0 0 0.16 0.90 -3041 SMTNL1 smoothelin-like 1 715377 2 2 2 0 0 2 0 0 0 0 0.16 0.90 -3042 SUFU suppressor of fused homolog (Drosophila) 720447 2 2 2 0 0 2 0 0 0 0 0.16 0.90 -3043 GLIPR1 GLI pathogenesis-related 1 (glioma) 418275 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3044 GAB3 GRB2-associated binding protein 3 876096 2 2 2 1 1 1 0 0 0 0 0.16 0.90 -3045 PANX1 pannexin 1 617019 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3046 ELFN2 extracellular leucine-rich repeat and fibronectin type III domain containing 2 460863 1 1 1 0 0 0 0 1 0 0 0.16 0.90 -3047 NAT8 N-acetyltransferase 8 348816 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3048 CDH4 cadherin 4, type 1, R-cadherin (retinal) 1080924 2 2 2 2 0 1 0 1 0 0 0.16 0.90 -3049 SLC17A3 solute carrier family 17 (sodium phosphate), member 3 781287 2 2 2 0 0 1 1 0 0 0 0.16 0.90 -3050 CD5 CD5 molecule 722475 2 2 2 0 0 1 0 0 1 0 0.16 0.90 -3051 TMX4 456807 1 1 1 0 0 0 0 1 0 0 0.16 0.90 -3052 ROBO4 roundabout homolog 4, magic roundabout (Drosophila) 1540266 3 3 3 0 0 2 0 1 0 0 0.16 0.90 -3053 SLC30A9 solute carrier family 30 (zinc transporter), member 9 844662 2 2 2 0 0 1 1 0 0 0 0.16 0.90 -3054 SLC11A1 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 1 835029 2 2 2 0 2 0 0 0 0 0 0.16 0.90 -3055 C13orf34 chromosome 13 open reading frame 34 874068 2 2 2 0 0 1 1 0 0 0 0.16 0.90 -3056 DAP3 death associated protein 3 631215 2 2 2 0 1 0 1 0 0 0 0.16 0.90 -3057 POLR2H polymerase (RNA) II (DNA directed) polypeptide H 239811 1 1 1 0 1 0 0 0 0 0 0.16 0.90 -3058 CLDN17 claudin 17 344253 1 1 1 1 1 0 0 0 0 0 0.16 0.90 -3059 E2F3 E2F transcription factor 3 597246 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3060 ARMCX5 armadillo repeat containing, X-linked 5 852267 2 2 2 1 2 0 0 0 0 0 0.16 0.90 -3061 VAPA VAMP (vesicle-associated membrane protein)-associated protein A, 33kDa 420810 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3062 HDAC8 histone deacetylase 8 640848 2 2 2 0 1 0 1 0 0 0 0.16 0.90 -3063 EZR ezrin 919191 2 2 2 0 0 1 0 0 1 0 0.16 0.90 -3064 BTN1A1 butyrophilin, subfamily 1, member A1 815763 2 2 2 0 0 0 2 0 0 0 0.16 0.90 -3065 MUTYH mutY homolog (E. coli) 856830 2 2 2 0 0 1 1 0 0 0 0.16 0.90 -3066 CNPY3 canopy 3 homolog (zebrafish) 357942 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3067 UBE2R2 ubiquitin-conjugating enzyme E2R 2 281892 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3068 EMID2 EMI domain containing 2 390390 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3069 C11orf45 chromosome 11 open reading frame 45 224601 1 1 1 1 0 0 0 0 1 0 0.16 0.90 -3070 RNFT2 ring finger protein, transmembrane 2 442611 1 1 1 1 0 1 0 0 0 0 0.16 0.90 -3071 ZNF75D 787371 2 2 2 2 0 0 2 0 0 0 0.16 0.90 -3072 ECM2 extracellular matrix protein 2, female organ and adipocyte specific 1082952 2 2 2 0 0 1 0 0 1 0 0.16 0.90 -3073 BRAF v-raf murine sarcoma viral oncogene homolog B1 1131117 2 2 2 0 0 0 1 0 1 0 0.16 0.90 -3074 LHX5 LIM homeobox 5 378729 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3075 PNMAL2 PNMA-like 2 835029 2 2 2 0 1 0 1 0 0 0 0.16 0.90 -3076 PEX7 peroxisomal biogenesis factor 7 445146 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3077 PDZD2 PDZ domain containing 2 4368312 6 6 6 0 2 2 0 1 1 0 0.16 0.90 -3078 TTLL1 tubulin tyrosine ligase-like family, member 1 662649 2 2 2 0 0 0 1 1 0 0 0.16 0.90 -3079 RDBP RD RNA binding protein 599781 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3080 RANBP9 RAN binding protein 9 847197 2 2 2 0 1 0 1 0 0 0 0.16 0.90 -3081 CTRL chymotrypsin-like 388869 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3082 FIGF c-fos induced growth factor (vascular endothelial growth factor D) 554151 1 1 1 0 0 0 0 1 0 0 0.16 0.90 -3083 CNTFR ciliary neurotrophic factor receptor 433485 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3084 OR1M1 olfactory receptor, family 1, subfamily M, member 1 479622 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3085 GSK3A glycogen synthase kinase 3 alpha 592683 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3086 RBAK RB-associated KRAB zinc finger 1095627 2 2 2 1 0 0 1 0 1 0 0.16 0.90 -3087 PPP3CB protein phosphatase 3 (formerly 2B), catalytic subunit, beta isoform 783315 2 2 2 0 0 2 0 0 0 0 0.16 0.90 -3088 RASSF5 Ras association (RalGDS/AF-6) domain family member 5 478608 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3089 ZNF586 zinc finger protein 586 598767 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3090 HSP90AA1 heat shock protein 90kDa alpha (cytosolic), class A member 1 1244178 2 2 2 0 0 0 1 0 1 0 0.16 0.90 -3091 UBR7 577473 1 1 1 1 0 0 0 0 1 0 0.16 0.90 -3092 ZNF208 zinc finger protein 208 1906827 4 4 4 2 0 1 3 0 0 0 0.16 0.90 -3093 PKD1L2 polycystic kidney disease 1-like 2 3065829 4 4 3 1 0 1 1 0 2 0 0.16 0.90 -3094 LOC286238 175929 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3095 OCRL oculocerebrorenal syndrome of Lowe 1398813 3 3 3 1 0 3 0 0 0 0 0.16 0.90 -3096 ITLN1 intelectin 1 (galactofuranose binding) 491790 1 1 1 2 0 1 0 0 0 0 0.16 0.90 -3097 HTATSF1 HIV-1 Tat specific factor 1 1168128 3 3 3 0 1 2 0 0 0 0 0.16 0.90 -3098 UNC5C unc-5 homolog C (C. elegans) 1333410 3 3 3 0 0 2 1 0 0 0 0.16 0.90 -3099 C7orf26 chromosome 7 open reading frame 26 492804 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3100 LIAS lipoic acid synthetase 553137 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3101 UBE3C ubiquitin protein ligase E3C 1659918 3 3 3 1 0 1 0 1 1 0 0.16 0.90 -3102 SEMA5A sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5A 1596543 3 3 3 0 0 2 0 0 1 0 0.16 0.90 -3103 SYT10 synaptotagmin X 811200 2 2 2 0 0 2 0 0 0 0 0.16 0.90 -3104 UGGT2 2304315 4 4 4 1 1 0 1 1 1 0 0.16 0.90 -3105 ACE angiotensin I converting enzyme (peptidyl-dipeptidase A) 1 1628484 3 3 3 1 2 0 0 0 1 0 0.16 0.90 -3106 SPRED2 sprouty-related, EVH1 domain containing 2 634257 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3107 CORO2A coronin, actin binding protein, 2A 817791 2 2 2 0 0 1 1 0 0 0 0.16 0.90 -3108 DIP2B DIP2 disco-interacting protein 2 homolog B (Drosophila) 2393547 4 4 4 1 0 1 1 2 0 0 0.16 0.90 -3109 SLC35C2 solute carrier family 35, member C2 574938 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3110 EPN3 epsin 3 852267 2 2 2 0 1 0 0 0 1 0 0.16 0.90 -3111 EID3 EP300 interacting inhibitor of differentiation 3 486213 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3112 AKAP11 A kinase (PRKA) anchor protein 11 2915250 5 5 5 0 1 2 0 0 2 0 0.16 0.90 -3113 OR11H12 olfactory receptor, family 11, subfamily H, member 12 499395 1 1 1 0 1 0 0 0 0 0 0.16 0.90 -3114 IGFL2 IGF-like family member 2 178971 1 1 1 0 1 0 0 0 0 0 0.16 0.90 -3115 CENPL centromere protein L 532857 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3116 NFATC4 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 4 1419600 3 3 3 0 0 0 2 0 1 0 0.16 0.90 -3117 ACP6 acid phosphatase 6, lysophosphatidic 559728 1 1 1 0 0 0 1 0 0 0 0.16 0.90 -3118 PYGM phosphorylase, glycogen; muscle (McArdle syndrome, glycogen storage disease type V) 1133652 2 2 2 0 0 0 0 0 2 0 0.16 0.90 -3119 IL18RAP interleukin 18 receptor accessory protein 932880 2 2 2 0 1 0 1 0 0 0 0.16 0.90 -3120 FGA fibrinogen alpha chain 1323777 3 3 3 0 0 2 0 1 0 0 0.16 0.90 -3121 SSX4 synovial sarcoma, X breakpoint 4 208377 1 1 1 0 0 0 0 1 0 0 0.16 0.90 -3122 CXCL17 chemokine (C-X-C motif) ligand 17 190632 1 1 1 0 1 0 0 0 0 0 0.16 0.90 -3123 ZFYVE16 zinc finger, FYVE domain containing 16 2376816 3 3 3 0 0 0 1 0 2 0 0.16 0.90 -3124 CLSTN2 calsyntenin 2 1431261 3 3 3 3 1 2 0 0 0 0 0.16 0.90 -3125 TIMD4 T-cell immunoglobulin and mucin domain containing 4 594711 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3126 LRRC2 leucine rich repeat containing 2 582036 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3127 A2M alpha-2-macroglobulin 2315469 3 3 3 1 0 1 1 0 1 0 0.16 0.90 -3128 GREM2 gremlin 2, cysteine knot superfamily, homolog (Xenopus laevis) 250965 1 1 1 0 1 0 0 0 0 0 0.16 0.90 -3129 CREBZF CREB/ATF bZIP transcription factor 439569 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3130 RIMS4 regulating synaptic membrane exocytosis 4 371631 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3131 VIP vasoactive intestinal peptide 270231 1 1 1 0 1 0 0 0 0 0 0.16 0.90 -3132 DPY19L2 dpy-19-like 2 (C. elegans) 1157481 2 2 2 0 0 0 0 0 2 0 0.16 0.90 -3133 HSPA2 heat shock 70kDa protein 2 837564 2 2 2 0 2 0 0 0 0 0 0.16 0.90 -3134 SLC35D1 solute carrier family 35 (UDP-glucuronic acid/UDP-N-acetylgalactosamine dual transporter), member D1 559728 1 1 1 0 0 0 0 1 0 0 0.16 0.90 -3135 RYR2 ryanodine receptor 2 (cardiac) 7421466 13 12 13 7 6 5 1 0 1 0 0.16 0.90 -3136 ASB17 ankyrin repeat and SOCS box-containing 17 456300 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3137 ERBB2 v-erb-b2 erythroblastic leukemia viral oncogene homolog 2, neuro/glioblastoma derived oncogene homolog (avian) 1760811 4 3 4 0 1 0 2 1 0 0 0.16 0.90 -3138 GPR37 G protein-coupled receptor 37 (endothelin receptor type B-like) 794976 2 2 2 0 1 0 1 0 0 0 0.16 0.90 -3139 FOXO4 forkhead box O4 775710 2 2 2 0 0 1 1 0 0 0 0.16 0.90 -3140 PGM5 phosphoglucomutase 5 751881 2 2 2 0 1 1 0 0 0 0 0.16 0.90 -3141 SYT2 synaptotagmin II 655044 2 2 2 0 0 0 1 1 0 0 0.16 0.90 -3142 OR4S2 olfactory receptor, family 4, subfamily S, member 2 476580 1 1 1 0 0 1 0 0 0 0 0.16 0.90 -3143 RAD17 RAD17 homolog (S. pombe) 1076361 2 2 2 0 0 1 1 0 0 0 0.16 0.90 -3144 ZSWIM2 zinc finger, SWIM-type containing 2 964314 2 2 2 0 1 0 1 0 0 0 0.16 0.90 -3145 PON1 paraoxonase 1 559728 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3146 ANKRD12 ankyrin repeat domain 12 3162159 5 5 5 0 1 0 1 1 2 0 0.16 0.90 -3147 CARS2 cysteinyl-tRNA synthetase 2, mitochondrial (putative) 609414 1 1 1 0 0 0 0 0 1 0 0.16 0.90 -3148 GLIS1 GLIS family zinc finger 1 319410 1 1 1 1 0 0 1 0 0 0 0.16 0.90 -3149 MRPL53 mitochondrial ribosomal protein L53 177957 1 1 1 0 0 0 0 1 0 0 0.16 0.90 -3150 EIF2C3 eukaryotic translation initiation factor 2C, 3 1336452 3 3 3 1 0 1 1 0 1 0 0.17 0.90 -3151 OR51V1 olfactory receptor, family 51, subfamily V, member 1 491790 1 1 1 0 0 0 1 0 0 0 0.17 0.90 -3152 INPP4B inositol polyphosphate-4-phosphatase, type II, 105kDa 1444950 3 3 3 0 1 1 1 0 0 0 0.17 0.90 -3153 CDK16 789399 2 2 2 0 0 1 1 0 0 0 0.17 0.90 -3154 C10orf12 chromosome 10 open reading frame 12 1900236 4 4 4 1 1 2 1 0 0 0 0.17 0.91 -3155 SALL1 sal-like 1 (Drosophila) 1980849 4 4 4 3 1 1 1 0 1 0 0.17 0.91 -3156 ATG16L1 ATG16 autophagy related 16-like 1 (S. cerevisiae) 900939 2 2 2 0 0 2 0 0 0 0 0.17 0.91 -3157 CALU calumenin 492804 1 1 1 0 0 0 0 1 0 0 0.17 0.91 -3158 UGT1A6 UDP glucuronosyltransferase 1 family, polypeptide A6 820833 2 2 2 0 0 1 1 0 0 0 0.17 0.91 -3159 CCDC111 coiled-coil domain containing 111 792948 2 2 2 0 0 0 0 1 1 0 0.17 0.91 -3160 SLC25A21 solute carrier family 25 (mitochondrial oxodicarboxylate carrier), member 21 433992 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3161 C8orf86 346788 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3162 ICT1 immature colon carcinoma transcript 1 230685 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3163 VAC14 Vac14 homolog (S. cerevisiae) 895362 2 2 2 0 0 1 0 1 0 0 0.17 0.91 -3164 TSLP thymic stromal lymphopoietin 251472 1 1 1 1 0 1 0 0 0 0 0.17 0.91 -3165 OR52B2 olfactory receptor, family 52, subfamily B, member 2 494832 1 1 1 0 0 0 0 1 0 0 0.17 0.91 -3166 RDH16 retinol dehydrogenase 16 (all-trans) 491790 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3167 LRRC42 leucine rich repeat containing 42 666705 2 2 2 0 0 0 2 0 0 0 0.17 0.91 -3168 C2orf84 324987 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3169 ASPRV1 aspartic peptidase, retroviral-like 1 525252 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3170 STAMBPL1 STAM binding protein-like 1 684957 2 2 2 0 1 0 0 0 1 0 0.17 0.91 -3171 CSF1 colony stimulating factor 1 (macrophage) 838578 2 2 2 0 1 0 1 0 0 0 0.17 0.91 -3172 P4HTM 545025 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3173 RTN4IP1 reticulon 4 interacting protein 1 599781 1 1 1 1 0 0 0 0 1 0 0.17 0.91 -3174 C1orf66 chromosome 1 open reading frame 66 704223 2 2 2 0 0 0 1 1 0 0 0.17 0.91 -3175 ATPBD4 ATP binding domain 4 508521 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3176 ARG2 arginase, type II 509535 1 1 1 1 0 0 1 0 0 0 0.17 0.91 -3177 SEMA3B sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3B 618033 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3178 ZNF254 zinc finger protein 254 1011972 2 2 2 0 0 0 2 0 0 0 0.17 0.91 -3179 GJB4 gap junction protein, beta 4, 30.3kDa 408135 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3180 ABHD15 263640 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3181 IQCH IQ motif containing H 1606176 3 3 3 0 0 2 1 0 0 0 0.17 0.91 -3182 CPZ carboxypeptidase Z 669747 2 2 2 0 1 0 1 0 0 0 0.17 0.91 -3183 PTCRA pre T-cell antigen receptor alpha 304200 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3184 IFRD2 interferon-related developmental regulator 2 548067 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3185 NANS N-acetylneuraminic acid synthase (sialic acid synthase) 490776 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3186 KCNS2 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 2 713349 2 2 2 0 1 0 0 0 1 0 0.17 0.91 -3187 THNSL1 threonine synthase-like 1 (S. cerevisiae) 1133652 2 2 2 0 0 1 0 0 1 0 0.17 0.91 -3188 NRP1 neuropilin 1 1406418 3 3 3 0 0 2 0 0 1 0 0.17 0.91 -3189 HMGB2 high-mobility group box 2 327522 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3190 IL2 interleukin 2 242346 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3191 CHD4 chromodomain helicase DNA binding protein 4 2981160 5 5 5 2 1 2 1 1 0 0 0.17 0.91 -3192 EFNA3 ephrin-A3 306735 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3193 IRAK4 interleukin-1 receptor-associated kinase 4 723489 2 2 2 0 0 1 1 0 0 0 0.17 0.91 -3194 KIAA0907 KIAA0907 896883 2 2 2 0 0 0 2 0 0 0 0.17 0.91 -3195 SERPINA1 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 1 645411 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3196 SFRS5 splicing factor, arginine/serine-rich 5 429429 1 1 1 1 0 1 0 0 0 0 0.17 0.91 -3197 AKD1 1659411 3 3 3 1 0 1 0 1 1 0 0.17 0.91 -3198 CD34 CD34 molecule 527787 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3199 C7orf65 237276 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3200 TTLL3 tubulin tyrosine ligase-like family, member 3 1173705 2 2 2 0 1 0 1 0 0 0 0.17 0.91 -3201 MUC16 mucin 16, cell surface associated 22213698 32 31 32 18 5 13 11 1 2 0 0.17 0.91 -3202 MIIP 546039 1 1 1 1 1 0 0 0 0 0 0.17 0.91 -3203 OLIG3 oligodendrocyte transcription factor 3 246402 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3204 CRNN cornulin 758472 2 2 2 0 1 1 0 0 0 0 0.17 0.91 -3205 SNAPC1 small nuclear RNA activating complex, polypeptide 1, 43kDa 581529 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3206 C15orf32 chromosome 15 open reading frame 32 278343 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3207 LPPR2 594711 1 1 1 2 0 0 0 0 1 0 0.17 0.91 -3208 ZNF585B zinc finger protein 585B 1179282 3 3 3 0 1 1 1 0 0 0 0.17 0.91 -3209 ST6GALNAC2 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 285441 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3210 MTERF mitochondrial transcription termination factor 612456 1 1 1 0 0 0 0 1 0 0 0.17 0.91 -3211 LCE1C late cornified envelope 1C 183027 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3212 ZFP41 zinc finger protein 41 homolog (mouse) 303693 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3213 PPP1R3F protein phosphatase 1, regulatory (inhibitor) subunit 3F 660114 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3214 G3BP1 GTPase activating protein (SH3 domain) binding protein 1 732615 2 2 2 0 0 1 1 0 0 0 0.17 0.91 -3215 EHD2 EH-domain containing 2 790413 2 2 2 1 1 0 1 0 0 0 0.17 0.91 -3216 SH2D3A SH2 domain containing 3A 625131 1 1 1 1 0 1 0 0 0 0 0.17 0.91 -3217 CDCA2 cell division cycle associated 2 1585896 3 3 3 0 0 0 2 1 0 0 0.17 0.91 -3218 FCF1 FCF1 small subunit (SSU) processome component homolog (S. cerevisiae) 318903 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3219 SNX10 sorting nexin 10 319410 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3220 CYP2B6 cytochrome P450, family 2, subfamily B, polypeptide 6 766584 2 2 2 0 0 1 1 0 0 0 0.17 0.91 -3221 TBRG1 transforming growth factor beta regulator 1 338676 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3222 INHBA inhibin, beta A 653523 1 1 1 2 0 0 0 0 1 0 0.17 0.91 -3223 TNRC6B trinucleotide repeat containing 6B 2416869 3 3 3 0 0 2 0 0 1 0 0.17 0.91 -3224 RAD54L RAD54-like (S. cerevisiae) 1169142 2 2 2 0 0 1 1 0 0 0 0.17 0.91 -3225 HOXA13 homeobox A13 183534 1 1 1 0 0 0 0 1 0 0 0.17 0.91 -3226 EIF1AD eukaryotic translation initiation factor 1A domain containing 262626 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3227 TTC32 tetratricopeptide repeat domain 32 236769 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3228 C1orf54 chromosome 1 open reading frame 54 210912 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3229 NLRP10 NLR family, pyrin domain containing 10 1001832 2 2 2 1 0 2 0 0 0 0 0.17 0.91 -3230 PLAU plasminogen activator, urokinase 676845 2 2 2 1 1 0 1 0 0 0 0.17 0.91 -3231 ETS1 v-ets erythroblastosis virus E26 oncogene homolog 1 (avian) 800046 2 2 2 1 1 1 0 0 0 0 0.17 0.91 -3232 C14orf50 chromosome 14 open reading frame 50 630708 2 2 2 0 0 1 1 0 0 0 0.17 0.91 -3233 MORN3 MORN repeat containing 3 293553 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3234 MUTED muted homolog (mouse) 237276 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3235 FCN1 ficolin (collagen/fibrinogen domain containing) 1 484692 1 1 1 1 0 1 0 0 0 0 0.17 0.91 -3236 PCDHA11 protocadherin alpha 11 1279161 3 3 3 0 3 0 0 0 0 0 0.17 0.91 -3237 MTERFD1 MTERF domain containing 1 649974 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3238 RRS1 RRS1 ribosome biogenesis regulator homolog (S. cerevisiae) 235248 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3239 FASTKD1 FAST kinase domains 1 1318200 3 3 3 0 0 1 1 1 0 0 0.17 0.91 -3240 SSH3 slingshot homolog 3 (Drosophila) 887250 2 2 2 1 1 0 1 0 0 0 0.17 0.91 -3241 DNAL1 dynein, axonemal, light chain 1 278850 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3242 MND1 meiotic nuclear divisions 1 homolog (S. cerevisiae) 326001 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3243 SERTAD3 SERTA domain containing 3 301665 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3244 THOC4 THO complex 4 249444 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3245 CLEC4E C-type lectin domain family 4, member E 346788 2 1 2 0 0 1 0 0 1 0 0.17 0.91 -3246 POU4F2 POU class 4 homeobox 2 432471 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3247 KIAA1210 2629302 5 5 5 0 4 0 1 0 0 0 0.17 0.91 -3248 DNAJA4 DnaJ (Hsp40) homolog, subfamily A, member 4 578487 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3249 PTK2B PTK2B protein tyrosine kinase 2 beta 1467258 3 3 3 0 2 0 1 0 0 0 0.17 0.91 -3250 HIST1H1E histone cluster 1, H1e 208377 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3251 DPPA2 developmental pluripotency associated 2 468975 1 1 1 1 0 1 0 0 0 0 0.17 0.91 -3252 IL11RA interleukin 11 receptor, alpha 669747 1 1 1 1 0 0 0 0 1 0 0.17 0.91 -3253 PAPSS1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 972933 2 2 2 0 0 2 0 0 0 0 0.17 0.91 -3254 MAT2B methionine adenosyltransferase II, beta 507000 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3255 MRPS15 mitochondrial ribosomal protein S15 408642 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3256 WIPF3 WAS/WASL interacting protein family, member 3 345774 1 1 1 1 0 0 1 0 0 0 0.17 0.91 -3257 SLC2A5 solute carrier family 2 (facilitated glucose/fructose transporter), member 5 515112 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3258 VBP1 von Hippel-Lindau binding protein 1 264147 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3259 KIAA1529 KIAA1529 2516241 5 5 4 0 0 2 2 1 0 0 0.17 0.91 -3260 CNGA4 cyclic nucleotide gated channel alpha 4 888264 2 2 2 0 1 1 0 0 0 0 0.17 0.91 -3261 STK19 serine/threonine kinase 19 559221 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3262 SSX4B synovial sarcoma, X breakpoint 4B 208377 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3263 EFS embryonal Fyn-associated substrate 786864 2 2 1 0 0 2 0 0 0 0 0.17 0.91 -3264 SERPINA6 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 6 625638 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3265 SPP2 secreted phosphoprotein 2, 24kDa 336648 1 1 1 0 1 0 0 0 0 0 0.17 0.91 -3266 CNN3 calponin 3, acidic 485199 1 1 1 0 0 0 0 1 0 0 0.17 0.91 -3267 GLT1D1 glycosyltransferase 1 domain containing 1 385827 1 1 1 2 0 1 0 0 0 0 0.17 0.91 -3268 MAD2L2 MAD2 mitotic arrest deficient-like 2 (yeast) 309270 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3269 PRKAA2 protein kinase, AMP-activated, alpha 2 catalytic subunit 809679 2 2 2 0 1 0 0 0 1 0 0.17 0.91 -3270 SERPINE1 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1 629187 1 1 1 1 0 0 0 0 1 0 0.17 0.91 -3271 PHF20 PHD finger protein 20 1575249 2 2 2 0 1 0 0 0 1 0 0.17 0.91 -3272 CFH complement factor H 1927614 4 4 4 2 0 3 1 0 0 0 0.17 0.91 -3273 PCDHA13 protocadherin alpha 13 1440387 2 2 2 3 1 0 0 0 1 0 0.17 0.91 -3274 ECEL1 endothelin converting enzyme-like 1 748332 2 2 2 0 0 1 1 0 0 0 0.17 0.91 -3275 HOXD8 homeobox D8 308763 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3276 MSI1 musashi homolog 1 (Drosophila) 311805 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3277 ATP13A4 ATPase type 13A4 1881477 4 4 4 0 1 0 0 1 2 0 0.17 0.91 -3278 LZTS1 leucine zipper, putative tumor suppressor 1 843141 2 2 2 0 0 0 1 1 0 0 0.17 0.91 -3279 PFKP phosphofructokinase, platelet 810693 2 2 2 0 1 1 0 0 0 0 0.17 0.91 -3280 CD69 CD69 molecule 314340 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3281 KRTAP10-8 keratin associated protein 10-8 397488 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3282 ST3GAL6 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 523224 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3283 SIGLEC12 sialic acid binding Ig-like lectin 12 959751 2 2 2 1 0 1 0 1 0 0 0.17 0.91 -3284 COLQ collagen-like tail subunit (single strand of homotrimer) of asymmetric acetylcholinesterase 707772 2 2 2 0 0 0 2 0 0 0 0.17 0.91 -3285 SEC31B SEC31 homolog B (S. cerevisiae) 1845480 5 3 5 0 2 1 0 2 0 0 0.17 0.91 -3286 IQCE IQ motif containing E 969891 2 2 2 0 0 2 0 0 0 0 0.17 0.91 -3287 ZFP42 zinc finger protein 42 homolog (mouse) 475059 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3288 PIM2 pim-2 oncogene 435513 1 1 1 1 0 1 0 0 0 0 0.17 0.91 -3289 ZMIZ1 zinc finger, MIZ-type containing 1 1667016 3 3 3 0 0 1 2 0 0 0 0.17 0.91 -3290 TRIP6 thyroid hormone receptor interactor 6 679887 1 1 1 0 0 0 0 0 1 0 0.17 0.91 -3291 ZNF300 zinc finger protein 300 942006 2 2 2 0 1 0 0 0 1 0 0.17 0.91 -3292 SLC38A7 solute carrier family 38, member 7 633243 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3293 CCT2 chaperonin containing TCP1, subunit 2 (beta) 844155 2 2 2 0 0 0 2 0 0 0 0.17 0.91 -3294 DAOA D-amino acid oxidase activator 284427 1 1 1 0 0 0 1 0 0 0 0.17 0.91 -3295 PCDH7 protocadherin 7 1191957 2 2 2 0 0 1 0 0 1 0 0.17 0.91 -3296 TRAPPC9 1538745 3 3 3 0 0 1 2 0 0 0 0.17 0.91 -3297 SLC2A14 solute carrier family 2 (facilitated glucose transporter), member 14 766584 2 2 2 0 1 1 0 0 0 0 0.17 0.91 -3298 FSTL5 follistatin-like 5 1320228 3 3 3 0 1 0 2 0 0 0 0.17 0.91 -3299 ZNF217 zinc finger protein 217 1603641 3 3 3 1 1 0 0 2 0 0 0.17 0.91 -3300 RGMB RGM domain family, member B 601302 1 1 1 1 0 0 0 0 1 0 0.17 0.91 -3301 MCCC1 methylcrotonoyl-Coenzyme A carboxylase 1 (alpha) 1095627 2 2 2 0 1 0 0 0 1 0 0.17 0.91 -3302 ZC3H12C zinc finger CCCH-type containing 12C 1326819 3 3 3 0 1 1 0 1 0 0 0.17 0.91 -3303 RNASE8 ribonuclease, RNase A family, 8 237783 1 1 1 0 0 1 0 0 0 0 0.17 0.91 -3304 C12orf64 chromosome 12 open reading frame 64 3247842 7 6 7 0 3 0 2 1 1 0 0.17 0.91 -3305 ST6GALNAC1 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 932373 2 2 2 1 0 1 0 1 0 0 0.17 0.91 -3306 FBXW4 F-box and WD repeat domain containing 4 512577 1 1 1 0 0 0 0 0 1 0 0.18 0.91 -3307 SNX1 sorting nexin 1 743262 2 2 2 0 0 1 1 0 0 0 0.18 0.91 -3308 GIT1 G protein-coupled receptor kinase interactor 1 591669 1 1 1 0 0 0 1 0 0 0 0.18 0.91 -3309 ITSN2 intersectin 2 2687607 5 5 5 0 1 2 1 0 1 0 0.18 0.91 -3310 GMFB glia maturation factor, beta 228150 1 1 1 0 0 0 0 0 1 0 0.18 0.91 -3311 TMEM106B transmembrane protein 106B 432471 1 1 1 0 0 0 1 0 0 0 0.18 0.91 -3312 RLN1 relaxin 1 286455 1 1 1 0 0 0 1 0 0 0 0.18 0.91 -3313 PAGE2 P antigen family, member 2 (prostate associated) 167817 1 1 1 1 0 1 0 0 0 0 0.18 0.92 -3314 GADL1 glutamate decarboxylase-like 1 542997 1 1 1 0 0 0 0 0 1 0 0.18 0.92 -3315 RAB21 RAB21, member RAS oncogene family 275301 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3316 VSTM2A V-set and transmembrane domain containing 2A 235248 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3317 CBX3 chromobox homolog 3 (HP1 gamma homolog, Drosophila) 290004 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3318 TTC22 tetratricopeptide repeat domain 22 353379 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3319 ANKAR ankyrin and armadillo repeat containing 2169960 4 4 4 0 0 0 3 0 1 0 0.18 0.92 -3320 PLIN3 610935 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3321 C17orf68 chromosome 17 open reading frame 68 1794780 3 3 3 1 0 0 2 0 1 0 0.18 0.92 -3322 GPR109B G protein-coupled receptor 109B 592176 1 1 1 0 0 0 0 1 0 0 0.18 0.92 -3323 NLRP12 NLR family, pyrin domain containing 12 1635582 3 3 3 2 0 2 0 0 1 0 0.18 0.92 -3324 SSR1 signal sequence receptor, alpha (translocon-associated protein alpha) 410670 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3325 LRG1 leucine-rich alpha-2-glycoprotein 1 533364 1 1 1 0 0 0 0 0 1 0 0.18 0.92 -3326 B3GNT3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 570375 1 1 1 1 0 0 0 1 0 0 0.18 0.92 -3327 ZNF324 zinc finger protein 324 726531 2 2 2 3 0 1 1 0 0 0 0.18 0.92 -3328 PTPRE protein tyrosine phosphatase, receptor type, E 1095120 2 2 2 2 1 0 0 0 1 0 0.18 0.92 -3329 SPHK2 sphingosine kinase 2 744783 2 2 2 2 1 1 0 0 0 0 0.18 0.92 -3330 GRM3 glutamate receptor, metabotropic 3 1348620 3 3 3 2 1 0 2 0 0 0 0.18 0.92 -3331 C20orf186 chromosome 20 open reading frame 186 910065 2 2 2 0 0 2 0 0 0 0 0.18 0.92 -3332 GTF2IRD2 GTF2I repeat domain containing 2 1191957 2 2 2 0 0 0 1 0 1 0 0.18 0.92 -3333 DDX43 DEAD (Asp-Glu-Ala-Asp) box polypeptide 43 1019577 2 2 2 0 1 0 0 0 1 0 0.18 0.92 -3334 PYHIN1 pyrin and HIN domain family, member 1 779766 2 2 2 0 1 1 0 0 0 0 0.18 0.92 -3335 NUDT6 nudix (nucleoside diphosphate linked moiety X)-type motif 6 369603 1 1 1 1 1 0 0 0 0 0 0.18 0.92 -3336 NCKAP1 NCK-associated protein 1 1734447 3 3 3 0 1 1 1 0 0 0 0.18 0.92 -3337 KIF5C kinesin family member 5C 1244685 3 3 3 1 0 1 1 1 0 0 0.18 0.92 -3338 CSRNP1 837564 2 2 2 1 2 0 0 0 0 0 0.18 0.92 -3339 CDX4 caudal type homeobox 4 438048 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3340 CPLX4 complexin 4 250965 1 1 1 0 0 0 0 1 0 0 0.18 0.92 -3341 TRAFD1 TRAF-type zinc finger domain containing 1 909051 2 2 2 0 0 1 1 0 0 0 0.18 0.92 -3342 FBXW9 F-box and WD repeat domain containing 9 584064 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3343 CCDC106 coiled-coil domain containing 106 284427 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3344 DLX1 distal-less homeobox 1 395460 1 1 1 0 1 0 0 0 0 0 0.18 0.92 -3345 HIST1H2BF histone cluster 1, H2bf 195195 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3346 CRYZL1 crystallin, zeta (quinone reductase)-like 1 556686 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3347 POU4F3 POU class 4 homeobox 3 519675 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3348 EFHA2 EF-hand domain family, member A2 614484 1 1 1 1 0 0 0 1 0 0 0.18 0.92 -3349 ALDH1L2 aldehyde dehydrogenase 1 family, member L2 1425684 3 3 3 1 0 1 1 0 1 0 0.18 0.92 -3350 GMPR2 guanosine monophosphate reductase 2 576459 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3351 RRAGB Ras-related GTP binding B 592683 1 1 1 0 0 0 0 0 1 0 0.18 0.92 -3352 SERINC2 serine incorporator 2 380757 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3353 YWHAB tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, beta polypeptide 385827 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3354 OXER1 oxoeicosanoid (OXE) receptor 1 410670 1 1 1 1 0 1 0 0 0 0 0.18 0.92 -3355 FAM75A2 family with sequence similarity 75, member A2 1199055 2 2 2 0 0 0 0 1 1 0 0.18 0.92 -3356 CEP72 centrosomal protein 72kDa 756951 2 2 2 0 1 0 1 0 0 0 0.18 0.92 -3357 ATXN1 ataxin 1 1150383 2 2 2 1 0 1 1 0 0 0 0.18 0.92 -3358 SATL1 spermidine/spermine N1-acetyl transferase-like 1 726531 2 2 2 1 1 1 0 0 0 0 0.18 0.92 -3359 PRR23B 263640 1 1 1 0 1 0 0 0 0 0 0.18 0.92 -3360 AMPH amphiphysin 1020084 2 2 2 0 0 2 0 0 0 0 0.18 0.92 -3361 TNFRSF21 tumor necrosis factor receptor superfamily, member 21 885222 2 2 2 3 1 1 0 0 0 0 0.18 0.92 -3362 IDH3G isocitrate dehydrogenase 3 (NAD+) gamma 478101 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3363 HSPA4 heat shock 70kDa protein 4 1261416 3 3 3 0 0 1 2 0 0 0 0.18 0.92 -3364 SYMPK symplekin 1512381 3 3 3 2 0 2 0 0 1 0 0.18 0.92 -3365 IGSF22 immunoglobulin superfamily, member 22 1460160 3 3 3 1 1 1 1 0 0 0 0.18 0.92 -3366 VCL vinculin 1683747 3 3 3 1 1 0 0 0 2 0 0.18 0.92 -3367 MKRN1 makorin, ring finger protein, 1 657072 2 2 2 0 2 0 0 0 0 0 0.18 0.92 -3368 YIPF4 Yip1 domain family, member 4 342732 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3369 CCNC cyclin C 429936 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3370 IMPDH1 IMP (inosine monophosphate) dehydrogenase 1 751881 2 2 2 0 1 0 0 1 0 0 0.18 0.92 -3371 FOXK1 forkhead box K1 544011 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3372 ROD1 ROD1 regulator of differentiation 1 (S. pombe) 870012 2 2 2 1 1 0 0 1 0 0 0.18 0.92 -3373 AMY2A amylase, alpha 2A (pancreatic) 583557 1 1 1 0 1 0 0 0 0 0 0.18 0.92 -3374 SLC28A3 solute carrier family 28 (sodium-coupled nucleoside transporter), member 3 1089036 2 2 2 1 0 1 0 1 0 0 0.18 0.92 -3375 RARG retinoic acid receptor, gamma 706758 2 2 2 0 1 1 0 0 0 0 0.18 0.92 -3376 CC2D1B coiled-coil and C2 domain containing 1B 1324791 3 3 3 0 0 3 0 0 0 0 0.18 0.92 -3377 SLC41A1 solute carrier family 41, member 1 802074 2 2 2 1 1 1 0 0 0 0 0.18 0.92 -3378 ADRA1B adrenergic, alpha-1B-, receptor 555165 1 1 1 0 0 0 0 0 1 0 0.18 0.92 -3379 SLC25A45 solute carrier family 25, member 45 451737 1 1 1 0 0 0 0 0 1 0 0.18 0.92 -3380 RGS20 regulator of G-protein signaling 20 458835 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3381 LYVE1 lymphatic vessel endothelial hyaluronan receptor 1 503451 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3382 RYR3 ryanodine receptor 3 7426029 11 11 11 9 1 5 4 0 1 0 0.18 0.92 -3383 OR10J1 olfactory receptor, family 10, subfamily J, member 1 490269 1 1 1 2 1 0 0 0 0 0 0.18 0.92 -3384 TMEM9 transmembrane protein 9 290004 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3385 TMEM90B 400023 1 1 1 0 1 0 0 0 0 0 0.18 0.92 -3386 ZNF804B zinc finger protein 804B 2061462 4 4 4 1 2 1 0 0 1 0 0.18 0.92 -3387 SH3BGRL SH3 domain binding glutamic acid-rich protein like 183027 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3388 TRIM48 tripartite motif-containing 48 328029 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3389 PBXIP1 pre-B-cell leukemia homeobox interacting protein 1 1122498 2 2 2 0 0 1 1 0 0 0 0.18 0.92 -3390 KRTAP10-2 keratin associated protein 10-2 391404 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3391 RAD18 RAD18 homolog (S. cerevisiae) 752895 2 2 2 0 0 2 0 0 0 0 0.18 0.92 -3392 OR4L1 olfactory receptor, family 4, subfamily L, member 1 478101 1 1 1 1 0 1 0 0 0 0 0.18 0.92 -3393 PSG3 pregnancy specific beta-1-glycoprotein 3 664677 2 2 2 1 0 2 0 0 0 0 0.18 0.92 -3394 ASPA aspartoacylase (Canavan disease) 489762 1 1 1 0 0 0 0 0 1 0 0.18 0.92 -3395 GLCE glucuronic acid epimerase 946062 2 2 2 0 0 0 1 0 1 0 0.18 0.92 -3396 C10orf81 chromosome 10 open reading frame 81 575952 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3397 ZNF454 zinc finger protein 454 803595 2 2 2 0 1 0 1 0 0 0 0.18 0.92 -3398 ALKBH8 alkB, alkylation repair homolog 8 (E. coli) 421317 1 1 1 0 0 0 0 0 1 0 0.18 0.92 -3399 P2RX6 purinergic receptor P2X, ligand-gated ion channel, 6 378729 1 1 1 0 0 0 0 1 0 0 0.18 0.92 -3400 ZNF200 zinc finger protein 200 434499 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3401 C14orf166B chromosome 14 open reading frame 166B 656565 2 2 2 0 1 0 1 0 0 0 0.18 0.92 -3402 CYSLTR2 cysteinyl leukotriene receptor 2 529815 1 1 1 1 0 1 0 0 0 0 0.18 0.92 -3403 ZNF192 zinc finger protein 192 890799 2 2 2 0 2 0 0 0 0 0 0.18 0.92 -3404 SCLT1 sodium channel and clathrin linker 1 1090557 2 2 2 0 0 2 0 0 0 0 0.18 0.92 -3405 RAPGEF1 Rap guanine nucleotide exchange factor (GEF) 1 1631526 3 3 3 0 1 0 1 0 1 0 0.18 0.92 -3406 HS6ST3 heparan sulfate 6-O-sulfotransferase 3 415233 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3407 MRPS14 mitochondrial ribosomal protein S14 202293 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3408 TBP TATA box binding protein 531336 1 1 1 1 0 0 1 0 0 0 0.18 0.92 -3409 FANCF Fanconi anemia, complementation group F 562263 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3410 IFNA10 interferon, alpha 10 291018 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3411 FAM116A family with sequence similarity 116, member A 844662 2 2 2 0 0 0 2 0 0 0 0.18 0.92 -3412 GLCCI1 glucocorticoid induced transcript 1 616005 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3413 C1orf186 chromosome 1 open reading frame 186 273273 1 1 1 0 0 0 0 1 0 0 0.18 0.92 -3414 ITGB1BP3 integrin beta 1 binding protein 3 210912 1 1 1 0 1 0 0 0 0 0 0.18 0.92 -3415 KIAA1586 KIAA1586 1066728 2 2 2 0 0 0 2 0 0 0 0.18 0.92 -3416 PAG1 phosphoprotein associated with glycosphingolipid microdomains 1 670761 2 2 2 0 1 0 1 0 0 0 0.18 0.92 -3417 HSPA9 heat shock 70kDa protein 9 (mortalin) 1025661 2 2 2 0 0 0 1 0 1 0 0.18 0.92 -3418 CPNE4 copine IV 879138 2 2 2 0 0 1 0 0 1 0 0.18 0.92 -3419 C7 complement component 7 1320228 3 3 3 0 1 1 0 1 0 0 0.18 0.92 -3420 VPS54 vacuolar protein sorting 54 homolog (S. cerevisiae) 1532154 3 3 3 0 0 0 3 0 0 0 0.18 0.92 -3421 CDC42BPB CDC42 binding protein kinase beta (DMPK-like) 1873365 4 4 4 1 1 1 1 0 1 0 0.18 0.92 -3422 VDAC2 voltage-dependent anion channel 2 449202 1 1 1 0 0 1 0 0 0 0 0.18 0.92 -3423 ART4 ADP-ribosyltransferase 4 (Dombrock blood group) 485199 1 1 1 0 0 0 0 1 0 0 0.18 0.92 -3424 HCN4 hyperpolarization activated cyclic nucleotide-gated potassium channel 4 960765 2 2 2 2 0 2 0 0 0 0 0.18 0.92 -3425 VSX1 visual system homeobox 1 303186 1 1 1 0 0 0 0 1 0 0 0.18 0.92 -3426 C1orf103 chromosome 1 open reading frame 103 1145820 2 2 2 0 0 0 1 0 1 0 0.18 0.92 -3427 FAM122B family with sequence similarity 122B 396981 1 1 1 0 1 0 0 0 0 0 0.18 0.92 -3428 KIF2A kinesin heavy chain member 2A 1138215 2 2 2 0 0 1 1 0 0 0 0.18 0.92 -3429 RRAGD Ras-related GTP binding D 547053 1 1 1 0 0 0 1 0 0 0 0.18 0.92 -3430 ZFP37 zinc finger protein 37 homolog (mouse) 967863 2 2 2 0 0 0 1 1 0 0 0.18 0.92 -3431 AHRR aryl-hydrocarbon receptor repressor 627666 1 1 1 1 0 0 0 1 0 0 0.18 0.93 -3432 USE1 unconventional SNARE in the ER 1 homolog (S. cerevisiae) 330057 1 1 1 1 0 1 0 0 0 0 0.18 0.93 -3433 MAPK3 mitogen-activated protein kinase 3 534885 1 1 1 0 0 1 0 0 0 0 0.18 0.93 -3434 SLC47A2 solute carrier family 47, member 2 623610 1 1 1 0 0 1 0 0 0 0 0.18 0.93 -3435 PRICKLE3 prickle homolog 3 (Drosophila) 853281 2 2 2 0 1 1 0 0 0 0 0.18 0.93 -3436 NELL1 NEL-like 1 (chicken) 1274091 3 3 3 1 1 1 1 0 0 0 0.18 0.93 -3437 PRDM14 PR domain containing 14 692055 1 1 1 2 0 0 0 0 1 0 0.18 0.93 -3438 H6PD hexose-6-phosphate dehydrogenase (glucose 1-dehydrogenase) 1178775 2 2 2 0 0 0 0 1 1 0 0.18 0.93 -3439 CYP2C9 cytochrome P450, family 2, subfamily C, polypeptide 9 765063 2 2 2 0 0 1 1 0 0 0 0.18 0.93 -3440 NBPF14 neuroblastoma breakpoint family, member 14 1183338 2 2 2 0 0 1 0 0 1 0 0.18 0.93 -3441 ERBB2IP erbb2 interacting protein 2133456 4 4 4 1 2 1 0 0 1 0 0.18 0.93 -3442 TXNDC12 thioredoxin domain containing 12 (endoplasmic reticulum) 273273 1 1 1 0 0 1 0 0 0 0 0.18 0.93 -3443 CARD10 caspase recruitment domain family, member 10 710814 1 1 1 0 0 0 0 0 1 0 0.19 0.93 -3444 BHLHE41 225108 1 1 1 0 1 0 0 0 0 0 0.19 0.93 -3445 SETD7 SET domain containing (lysine methyltransferase) 7 552123 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3446 PSMA5 proteasome (prosome, macropain) subunit, alpha type, 5 386334 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3447 LARP4B 1140243 2 2 2 0 0 1 0 0 1 0 0.19 0.93 -3448 SRPX2 sushi-repeat-containing protein, X-linked 2 697632 1 1 1 0 0 0 0 0 1 0 0.19 0.93 -3449 FAM83G family with sequence similarity 83, member G 662142 1 1 1 0 0 0 0 0 1 0 0.19 0.93 -3450 TMUB2 transmembrane and ubiquitin-like domain containing 2 476073 1 1 1 0 0 0 0 1 0 0 0.19 0.93 -3451 HPS3 Hermansky-Pudlak syndrome 3 1451034 3 3 3 0 0 0 3 0 0 0 0.19 0.93 -3452 HMBOX1 homeobox containing 1 644904 1 1 1 0 0 0 0 0 1 0 0.19 0.93 -3453 LGI1 leucine-rich, glioma inactivated 1 864942 2 2 2 0 1 0 1 0 0 0 0.19 0.93 -3454 CCDC105 coiled-coil domain containing 105 404079 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3455 FUZ fuzzy homolog (Drosophila) 223587 1 1 1 0 1 0 0 0 0 0 0.19 0.93 -3456 RPL26 ribosomal protein L26 228150 1 1 1 0 1 0 0 0 0 0 0.19 0.93 -3457 WDR76 WD repeat domain 76 980031 2 2 2 1 1 0 0 1 0 0 0.19 0.93 -3458 EML3 echinoderm microtubule associated protein like 3 1161030 2 2 2 0 1 0 0 0 1 0 0.19 0.93 -3459 SFRS12IP1 SFRS12-interacting protein 1 247416 1 1 1 0 1 0 0 0 0 0 0.19 0.93 -3460 DKKL1 dickkopf-like 1 (soggy) 379743 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3461 SLC3A2 solute carrier family 3 (activators of dibasic and neutral amino acid transport), member 2 714363 2 2 2 0 0 1 1 0 0 0 0.19 0.93 -3462 NHLH1 nescient helix loop helix 1 200265 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3463 ADK adenosine kinase 539448 1 1 1 0 0 0 0 0 1 0 0.19 0.93 -3464 KCTD14 potassium channel tetramerisation domain containing 14 393432 1 1 1 0 1 0 0 0 0 0 0.19 0.93 -3465 CLDN6 claudin 6 272259 1 1 1 0 1 0 0 0 0 0 0.19 0.93 -3466 DDR2 discoidin domain receptor tyrosine kinase 2 1334424 3 3 3 1 1 2 0 0 0 0 0.19 0.93 -3467 ICA1 islet cell autoantigen 1, 69kDa 762528 2 2 2 1 1 0 0 0 1 0 0.19 0.93 -3468 CABP5 calcium binding protein 5 242853 1 1 1 1 1 0 0 0 0 0 0.19 0.93 -3469 TMPRSS11B transmembrane protease, serine 11B 654537 1 1 1 1 0 0 0 0 1 0 0.19 0.93 -3470 NT5C3 5'-nucleotidase, cytosolic III 445653 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3471 SNAI1 snail homolog 1 (Drosophila) 409149 1 1 1 0 1 0 0 0 0 0 0.19 0.93 -3472 LBP lipopolysaccharide binding protein 616512 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3473 BIN1 bridging integrator 1 632229 1 1 1 1 0 0 0 0 1 0 0.19 0.93 -3474 FHL5 four and a half LIM domains 5 443625 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3475 CD248 CD248 molecule, endosialin 594711 1 1 1 1 0 0 0 0 1 0 0.19 0.93 -3476 ADH1A alcohol dehydrogenase 1A (class I), alpha polypeptide 590148 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3477 GMEB1 glucocorticoid modulatory element binding protein 1 891306 2 2 2 0 0 2 0 0 0 0 0.19 0.93 -3478 APOH apolipoprotein H (beta-2-glycoprotein I) 542490 1 1 1 0 0 0 0 0 1 0 0.19 0.93 -3479 IGSF3 immunoglobulin superfamily, member 3 1870323 3 3 3 1 1 0 0 0 2 0 0.19 0.93 -3480 NLGN3 neuroligin 3 1265979 3 3 3 1 1 1 1 0 0 0 0.19 0.93 -3481 CTTNBP2NL CTTNBP2 N-terminal like 981552 2 2 2 0 1 0 0 0 1 0 0.19 0.93 -3482 CTNNBL1 catenin, beta like 1 823368 2 2 2 1 2 0 0 0 0 0 0.19 0.93 -3483 PTPN14 protein tyrosine phosphatase, non-receptor type 14 1842945 3 3 3 1 0 1 1 0 1 0 0.19 0.93 -3484 ANKRD7 ankyrin repeat domain 7 400023 1 1 1 0 0 0 0 1 0 0 0.19 0.93 -3485 GSTZ1 glutathione transferase zeta 1 (maleylacetoacetate isomerase) 315861 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3486 HEATR7B2 2465034 4 4 4 4 2 1 1 0 0 0 0.19 0.93 -3487 SPIN2B spindlin family, member 2B 353886 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3488 COPS8 COP9 constitutive photomorphogenic homolog subunit 8 (Arabidopsis) 294060 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3489 MMP17 matrix metallopeptidase 17 (membrane-inserted) 378729 1 1 1 0 0 0 0 0 1 0 0.19 0.93 -3490 NDUFA10 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 10, 42kDa 521703 1 1 1 0 0 0 0 0 1 0 0.19 0.93 -3491 PRKCQ protein kinase C, theta 1109823 2 2 2 0 1 0 0 1 0 0 0.19 0.93 -3492 CADM1 cell adhesion molecule 1 629187 1 1 1 0 0 0 0 0 1 0 0.19 0.93 -3493 KCTD9 potassium channel tetramerisation domain containing 9 591162 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3494 CABIN1 2953782 5 5 5 2 1 1 1 0 2 0 0.19 0.93 -3495 C15orf2 chromosome 15 open reading frame 2 1756755 2 2 2 0 0 0 1 0 1 0 0.19 0.93 -3496 C13orf26 chromosome 13 open reading frame 26 422838 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3497 F11R F11 receptor 476580 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3498 ACTBL2 actin, beta-like 2 575445 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3499 CDC20B cell division cycle 20 homolog B (S. cerevisiae) 803595 2 2 2 0 0 1 0 1 0 0 0.19 0.93 -3500 BSND Bartter syndrome, infantile, with sensorineural deafness (Barttin) 495339 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3501 CACNA1G calcium channel, voltage-dependent, T type, alpha 1G subunit 2809794 5 5 5 5 2 1 1 0 1 0 0.19 0.93 -3502 ZNF101 zinc finger protein 101 669240 2 2 2 0 1 1 0 0 0 0 0.19 0.93 -3503 FAM177B 249951 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3504 DRAM1 309270 1 1 1 1 0 0 1 0 0 0 0.19 0.93 -3505 AVPR1B arginine vasopressin receptor 1B 544518 1 1 1 1 0 1 0 0 0 0 0.19 0.93 -3506 OR6V1 olfactory receptor, family 6, subfamily V, member 1 479622 1 1 1 0 1 0 0 0 0 0 0.19 0.93 -3507 CALCA calcitonin-related polypeptide alpha 305214 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3508 CLC Charcot-Leyden crystal protein 225615 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3509 FDFT1 farnesyl-diphosphate farnesyltransferase 1 595218 1 1 1 0 1 0 0 0 0 0 0.19 0.93 -3510 CD93 CD93 molecule 770640 2 2 2 0 1 1 0 0 0 0 0.19 0.93 -3511 PCDHGB7 protocadherin gamma subfamily B, 7 1375998 3 3 3 1 1 0 1 1 0 0 0.19 0.93 -3512 CDK5 cyclin-dependent kinase 5 431457 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3513 ZNF556 zinc finger protein 556 686478 2 2 2 0 1 1 0 0 0 0 0.19 0.93 -3514 AMDHD1 amidohydrolase domain containing 1 596232 1 1 1 0 0 0 1 0 0 0 0.19 0.93 -3515 MGMT O-6-methylguanine-DNA methyltransferase 222066 1 1 1 1 1 0 0 0 0 0 0.19 0.93 -3516 POLR3C polymerase (RNA) III (DNA directed) polypeptide C (62kD) 842127 2 2 2 0 0 2 0 0 0 0 0.19 0.93 -3517 P2RY11 purinergic receptor P2Y, G-protein coupled, 11 574431 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3518 HELT 284427 1 1 1 0 0 1 0 0 0 0 0.19 0.93 -3519 PTGFRN prostaglandin F2 receptor negative regulator 1215786 2 2 2 0 1 0 1 0 0 0 0.19 0.93 -3520 ARHGEF3 Rho guanine nucleotide exchange factor (GEF) 3 771147 2 2 2 0 0 2 0 0 0 0 0.19 0.93 -3521 QARS glutaminyl-tRNA synthetase 1202097 2 2 2 0 0 0 1 1 0 0 0.19 0.93 -3522 LARP1 La ribonucleoprotein domain family, member 1 1589952 3 3 3 0 1 1 0 0 1 0 0.19 0.94 -3523 SMO smoothened homolog (Drosophila) 897390 2 2 2 1 1 1 0 0 0 0 0.19 0.94 -3524 SH3BP2 SH3-domain binding protein 2 499902 1 1 1 2 0 1 0 0 0 0 0.19 0.94 -3525 MAGEA11 melanoma antigen family A, 11 668733 1 1 1 0 0 0 0 0 1 0 0.19 0.94 -3526 MRPL48 mitochondrial ribosomal protein L48 252486 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3527 CRNKL1 crooked neck pre-mRNA splicing factor-like 1 (Drosophila) 1184859 2 2 2 0 0 1 1 0 0 0 0.19 0.94 -3528 PHACTR4 phosphatase and actin regulator 4 1120977 2 2 2 0 0 1 1 0 0 0 0.19 0.94 -3529 C1orf114 chromosome 1 open reading frame 114 784329 2 2 2 0 0 2 0 0 0 0 0.19 0.94 -3530 TTLL13 tubulin tyrosine ligase-like family, member 13 717912 2 2 2 0 1 0 1 0 0 0 0.19 0.94 -3531 COL25A1 collagen, type XXV, alpha 1 1111851 2 2 2 0 0 0 1 0 1 0 0.19 0.94 -3532 FOLH1 folate hydrolase (prostate-specific membrane antigen) 1 1118442 2 2 2 2 0 0 1 1 0 0 0.19 0.94 -3533 CCNL1 cyclin L1 668226 1 1 1 0 0 0 0 0 1 0 0.19 0.94 -3534 ODZ1 odz, odd Oz/ten-m homolog 1(Drosophila) 4209114 7 7 7 5 3 1 0 2 1 0 0.19 0.94 -3535 PES1 pescadillo homolog 1, containing BRCT domain (zebrafish) 691548 2 2 2 0 2 0 0 0 0 0 0.19 0.94 -3536 NR2C2AP nuclear receptor 2C2-associated protein 223080 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3537 RSPO2 R-spondin 2 homolog (Xenopus laevis) 381264 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3538 ENPP4 ectonucleotide pyrophosphatase/phosphodiesterase 4 (putative function) 696618 2 2 2 0 0 1 0 1 0 0 0.19 0.94 -3539 SARDH sarcosine dehydrogenase 886236 2 2 2 5 0 2 0 0 0 0 0.19 0.94 -3540 LCMT2 leucine carboxyl methyltransferase 2 806637 3 2 3 0 1 0 1 0 1 0 0.19 0.94 -3541 SCARA3 scavenger receptor class A, member 3 815763 2 2 2 1 0 2 0 0 0 0 0.19 0.94 -3542 GIMAP4 GTPase, IMAP family member 4 505986 1 1 1 0 1 0 0 0 0 0 0.19 0.94 -3543 TULP3 tubby like protein 3 673296 1 1 1 0 0 0 0 1 0 0 0.19 0.94 -3544 CNP 2',3'-cyclic nucleotide 3' phosphodiesterase 646425 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3545 AADACL4 arylacetamide deacetylase-like 4 628680 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3546 TRIM14 tripartite motif-containing 14 376701 1 1 1 0 1 0 0 0 0 0 0.19 0.94 -3547 C9orf78 chromosome 9 open reading frame 78 452244 1 1 1 0 0 0 0 0 1 0 0.19 0.94 -3548 USP29 ubiquitin specific peptidase 29 1405911 3 3 3 0 0 2 1 0 0 0 0.19 0.94 -3549 ITGA6 integrin, alpha 6 1702506 3 3 3 0 2 0 0 0 1 0 0.19 0.94 -3550 PRPF4B PRP4 pre-mRNA processing factor 4 homolog B (yeast) 1540773 3 3 3 0 1 0 1 1 0 0 0.19 0.94 -3551 EPM2AIP1 EPM2A (laforin) interacting protein 1 926289 3 2 3 0 0 1 1 0 1 0 0.19 0.94 -3552 TTL tubulin tyrosine ligase 507507 1 1 1 0 0 0 1 0 0 0 0.19 0.94 -3553 UBE2Q2 ubiquitin-conjugating enzyme E2Q (putative) 2 504972 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3554 DNAJC3 DnaJ (Hsp40) homolog, subfamily C, member 3 752388 2 2 2 0 0 1 1 0 0 0 0.19 0.94 -3555 FAM48B1 family with sequence similarity 48, member B1 1188408 2 2 2 0 0 0 2 0 0 0 0.19 0.94 -3556 PCSK2 proprotein convertase subtilisin/kexin type 2 991185 2 2 2 0 0 1 0 0 1 0 0.19 0.94 -3557 TMC2 transmembrane channel-like 2 1262937 2 2 2 0 0 1 1 0 0 0 0.19 0.94 -3558 EEF1A1 eukaryotic translation elongation factor 1 alpha 1 718419 1 1 1 0 0 0 0 0 1 0 0.19 0.94 -3559 EIF3G eukaryotic translation initiation factor 3, subunit G 460863 1 1 1 2 0 1 0 0 0 0 0.19 0.94 -3560 RAB30 RAB30, member RAS oncogene family 318396 1 1 1 1 0 0 1 0 0 0 0.19 0.94 -3561 PLEKHA8 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 8 661128 1 1 1 2 0 0 0 0 1 0 0.19 0.94 -3562 ACTR3B ARP3 actin-related protein 3 homolog B (yeast) 616005 1 1 1 0 1 0 0 0 0 0 0.19 0.94 -3563 LIMS2 LIM and senescent cell antigen-like domains 2 365547 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3564 P2RY10 purinergic receptor P2Y, G-protein coupled, 10 519168 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3565 IL34 365547 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3566 GJC1 gap junction protein, gamma 1, 45kDa 605865 1 1 1 0 0 0 1 0 0 0 0.19 0.94 -3567 AP1M2 adaptor-related protein complex 1, mu 2 subunit 669240 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3568 PHLPP1 1548378 3 3 3 1 1 0 0 1 1 0 0.19 0.94 -3569 PTGDS prostaglandin D2 synthase 21kDa (brain) 195195 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3570 DCAF13 865956 2 2 2 1 0 0 2 0 0 0 0.19 0.94 -3571 TFDP2 transcription factor Dp-2 (E2F dimerization partner 2) 675324 1 1 1 0 0 0 0 0 1 0 0.19 0.94 -3572 GPM6B glycoprotein M6B 559728 1 1 1 0 0 0 1 0 0 0 0.19 0.94 -3573 LST-3TM12 1001325 2 2 2 0 2 0 0 0 0 0 0.19 0.94 -3574 ZWILCH Zwilch, kinetochore associated, homolog (Drosophila) 936936 2 2 2 0 0 0 2 0 0 0 0.19 0.94 -3575 SRPX sushi-repeat-containing protein, X-linked 676338 1 1 1 0 0 0 0 0 1 0 0.19 0.94 -3576 DENND2D DENN/MADD domain containing 2D 729066 2 2 2 1 0 1 0 1 0 0 0.19 0.94 -3577 NIF3L1 NIF3 NGG1 interacting factor 3-like 1 (S. pombe) 587106 1 1 1 0 0 0 0 0 1 0 0.19 0.94 -3578 PEX19 peroxisomal biogenesis factor 19 472524 1 1 1 0 0 0 1 0 0 0 0.19 0.94 -3579 CYP11B1 cytochrome P450, family 11, subfamily B, polypeptide 1 784836 2 2 2 0 0 1 1 0 0 0 0.19 0.94 -3580 GNB1 guanine nucleotide binding protein (G protein), beta polypeptide 1 536913 1 1 1 0 0 0 1 0 0 0 0.19 0.94 -3581 MYO1H myosin IH 1618344 3 3 3 0 1 1 0 0 1 0 0.19 0.94 -3582 POLR2B polymerase (RNA) II (DNA directed) polypeptide B, 140kDa 1837875 3 3 3 0 1 0 0 0 2 0 0.19 0.94 -3583 HOXB8 homeobox B8 328536 1 1 1 0 0 1 0 0 0 0 0.19 0.94 -3584 FABP2 fatty acid binding protein 2, intestinal 210405 1 1 1 0 0 0 1 0 0 0 0.19 0.94 -3585 SLC25A40 solute carrier family 25, member 40 535899 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3586 SCAMP2 secretory carrier membrane protein 2 463398 1 1 1 0 1 0 0 0 0 0 0.20 0.94 -3587 CEP55 centrosomal protein 55kDa 723489 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3588 ASB8 ankyrin repeat and SOCS box-containing 8 445653 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3589 AP4E1 adaptor-related protein complex 4, epsilon 1 subunit 1695408 3 3 3 0 0 2 0 0 1 0 0.20 0.94 -3590 IQSEC1 IQ motif and Sec7 domain 1 1166607 2 2 2 0 0 0 1 0 1 0 0.20 0.94 -3591 KIFC3 kinesin family member C3 666705 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3592 GPR110 G protein-coupled receptor 110 1414023 3 3 3 0 1 2 0 0 0 0 0.20 0.94 -3593 MSH6 mutS homolog 6 (E. coli) 1980342 4 4 4 0 0 2 2 0 0 0 0.20 0.94 -3594 TACC3 transforming, acidic coiled-coil containing protein 3 478101 1 1 1 1 0 1 0 0 0 0 0.20 0.94 -3595 RPAP3 RNA polymerase II associated protein 3 1045434 2 2 2 0 1 0 0 0 1 0 0.20 0.94 -3596 ZNF642 zinc finger protein 642 811707 2 2 2 0 1 0 0 1 0 0 0.20 0.94 -3597 PRMT5 protein arginine methyltransferase 5 1036815 2 2 2 1 1 0 1 0 0 0 0.20 0.94 -3598 SATB2 SATB homeobox 2 1048983 2 2 2 0 1 1 0 0 0 0 0.20 0.94 -3599 RPS6KA2 ribosomal protein S6 kinase, 90kDa, polypeptide 2 1103232 2 2 2 0 1 0 0 1 0 0 0.20 0.94 -3600 TMEM50B transmembrane protein 50B 254007 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3601 GPD1L glycerol-3-phosphate dehydrogenase 1-like 464412 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3602 HAL histidine ammonia-lyase 1041378 2 2 2 0 1 0 1 0 0 0 0.20 0.94 -3603 PLA2G2D phospholipase A2, group IID 230178 1 1 1 0 1 0 0 0 0 0 0.20 0.94 -3604 VPS37A vacuolar protein sorting 37 homolog A (S. cerevisiae) 562263 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3605 MTBP Mdm2, transformed 3T3 cell double minute 2, p53 binding protein (mouse) binding protein, 104kDa 1421121 3 3 3 0 0 1 0 1 1 0 0.20 0.94 -3606 NSMCE2 non-SMC element 2, MMS21 homolog (S. cerevisiae) 389376 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3607 CCDC69 coiled-coil domain containing 69 464412 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3608 SLC4A11 solute carrier family 4, sodium borate transporter, member 11 1040364 2 2 2 0 0 0 1 1 0 0 0.20 0.94 -3609 P2RX3 purinergic receptor P2X, ligand-gated ion channel, 3 595218 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3610 OFD1 oral-facial-digital syndrome 1 1579305 3 3 3 0 0 1 1 0 1 0 0.20 0.94 -3611 SLC5A9 solute carrier family 5 (sodium/glucose cotransporter), member 9 1105767 2 2 2 0 0 1 1 0 0 0 0.20 0.94 -3612 CYP24A1 cytochrome P450, family 24, subfamily A, polypeptide 1 671775 1 1 1 1 0 0 0 0 1 0 0.20 0.94 -3613 ENO1 enolase 1, (alpha) 683943 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3614 PTCD2 pentatricopeptide repeat domain 2 611949 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3615 MYNN myoneurin 943527 2 2 2 0 1 1 0 0 0 0 0.20 0.94 -3616 STAG3L2 stromal antigen 3-like 2 214968 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3617 PCDHB10 protocadherin beta 10 1197027 2 2 2 1 0 2 0 0 0 0 0.20 0.94 -3618 PRMT8 protein arginine methyltransferase 8 621075 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3619 ACTL6B actin-like 6B 616512 1 1 1 1 0 0 0 0 1 0 0.20 0.94 -3620 GNPNAT1 glucosamine-phosphate N-acetyltransferase 1 291525 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3621 LNP1 leukemia NUP98 fusion partner 1 278343 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3622 HLX H2.0-like homeobox 632229 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3623 RING1 ring finger protein 1 631215 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3624 ZDHHC3 zinc finger, DHHC-type containing 3 513084 1 1 1 0 1 0 0 0 0 0 0.20 0.94 -3625 ARHGEF18 rho/rac guanine nucleotide exchange factor (GEF) 18 643383 1 1 1 1 0 0 1 0 0 0 0.20 0.94 -3626 GIMAP8 GTPase, IMAP family member 8 1021098 2 2 2 0 0 1 1 0 0 0 0.20 0.94 -3627 ASB7 ankyrin repeat and SOCS box-containing 7 495339 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3628 POLR3E polymerase (RNA) III (DNA directed) polypeptide E (80kD) 953667 2 2 2 0 0 1 0 0 1 0 0.20 0.94 -3629 CPA4 carboxypeptidase A4 664170 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3630 SEC24C SEC24 related gene family, member C (S. cerevisiae) 1710111 3 3 3 2 1 0 1 0 1 0 0.20 0.94 -3631 ZNF345 zinc finger protein 345 745797 2 2 2 0 0 0 2 0 0 0 0.20 0.94 -3632 RAB11FIP4 RAB11 family interacting protein 4 (class II) 516633 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3633 SPTLC2 serine palmitoyltransferase, long chain base subunit 2 811707 2 2 2 0 0 0 2 0 0 0 0.20 0.94 -3634 C2orf34 chromosome 2 open reading frame 34 443118 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3635 TMEM178 transmembrane protein 178 256542 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3636 PEX26 peroxisome biogenesis factor 26 356928 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3637 NMT1 N-myristoyltransferase 1 736671 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3638 SPATA6 spermatogenesis associated 6 751374 2 2 2 0 1 1 0 0 0 0 0.20 0.94 -3639 NKX3-1 NK3 homeobox 1 214461 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3640 CCIN calicin 897897 2 2 2 0 1 0 1 0 0 0 0.20 0.94 -3641 SNX11 sorting nexin 11 424359 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3642 CLEC11A C-type lectin domain family 11, member A 266175 1 1 1 0 1 0 0 0 0 0 0.20 0.94 -3643 TNRC18 trinucleotide repeat containing 18 1758276 3 3 3 2 0 2 1 0 0 0 0.20 0.94 -3644 MAGEA4 melanoma antigen family A, 4 485706 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3645 ZNF443 zinc finger protein 443 1029717 2 2 2 0 0 0 2 0 0 0 0.20 0.94 -3646 FAM26F family with sequence similarity 26, member F 216489 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3647 CCDC87 coiled-coil domain containing 87 1261923 2 2 2 0 0 1 0 0 1 0 0.20 0.94 -3648 CDKL2 cyclin-dependent kinase-like 2 (CDC2-related kinase) 736164 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3649 TAGLN2 transgelin 2 312312 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3650 TBC1D2B TBC1 domain family, member 2B 1142271 2 2 2 0 0 1 1 0 0 0 0.20 0.94 -3651 ADCY5 adenylate cyclase 5 1385124 3 3 3 1 0 2 1 0 0 0 0.20 0.94 -3652 TEAD4 TEA domain family member 4 683943 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3653 CHRD chordin 1146327 2 2 2 0 0 2 0 0 0 0 0.20 0.94 -3654 PABPC5 poly(A) binding protein, cytoplasmic 5 584571 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3655 NSL1 NSL1, MIND kinetochore complex component, homolog (S. cerevisiae) 440583 1 1 1 0 0 0 0 1 0 0 0.20 0.94 -3656 FAM133A family with sequence similarity 133, member A 380757 1 1 1 0 1 0 0 0 0 0 0.20 0.94 -3657 TMEM87B transmembrane protein 87B 797004 2 2 2 1 1 0 0 0 1 0 0.20 0.94 -3658 CTSB cathepsin B 533364 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3659 BCL7B B-cell CLL/lymphoma 7B 272259 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3660 PRAMEF17 PRAME family member 17 501930 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3661 SLC29A4 solute carrier family 29 (nucleoside transporters), member 4 402051 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3662 DNPEP aspartyl aminopeptidase 749346 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3663 ARL8B ADP-ribosylation factor-like 8B 234234 1 1 1 0 0 0 0 1 0 0 0.20 0.94 -3664 HIST1H3I histone cluster 1, H3i 210405 1 1 1 0 1 0 0 0 0 0 0.20 0.94 -3665 RTKN2 rhotekin 2 919698 2 2 2 0 1 0 1 0 0 0 0.20 0.94 -3666 SARS seryl-tRNA synthetase 805623 2 2 2 0 0 1 1 0 0 0 0.20 0.94 -3667 HTR2B 5-hydroxytryptamine (serotonin) receptor 2B 739206 1 1 1 1 0 0 0 0 1 0 0.20 0.94 -3668 COX4I2 cytochrome c oxidase subunit IV isoform 2 (lung) 269724 1 1 1 0 0 0 0 1 0 0 0.20 0.94 -3669 EXOC6 exocyst complex component 6 1261416 2 2 2 1 0 0 0 1 1 0 0.20 0.94 -3670 TIFA TRAF-interacting protein with forkhead-associated domain 283413 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3671 PSD2 pleckstrin and Sec7 domain containing 2 1202604 2 2 2 0 0 1 0 0 1 0 0.20 0.94 -3672 KIAA1143 KIAA1143 230685 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3673 MRPL30 mitochondrial ribosomal protein L30 256542 1 1 1 0 0 0 0 1 0 0 0.20 0.94 -3674 MGC42105 670761 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3675 CDK14 713856 2 2 2 2 1 1 0 0 0 0 0.20 0.94 -3676 KRTAP10-11 keratin associated protein 10-11 456807 1 1 1 0 0 0 0 1 0 0 0.20 0.94 -3677 WNT2B wingless-type MMTV integration site family, member 2B 623103 1 1 1 1 0 1 0 0 0 0 0.20 0.94 -3678 C6orf97 chromosome 6 open reading frame 97 1080417 2 2 2 0 0 0 1 1 0 0 0.20 0.94 -3679 C3orf52 chromosome 3 open reading frame 52 321438 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3680 GPX5 glutathione peroxidase 5 (epididymal androgen-related protein) 347802 1 1 1 0 1 0 0 0 0 0 0.20 0.94 -3681 ACCN3 amiloride-sensitive cation channel 3 806130 2 2 2 1 1 0 0 1 0 0 0.20 0.94 -3682 ACADSB acyl-Coenzyme A dehydrogenase, short/branched chain 657579 1 1 1 0 0 0 0 1 0 0 0.20 0.94 -3683 MNAT1 menage a trois homolog 1, cyclin H assembly factor (Xenopus laevis) 487734 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3684 FAM18B2 family with sequence similarity 18, member B2 342225 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3685 SLC39A5 solute carrier family 39 (metal ion transporter), member 5 843141 2 2 2 0 0 1 1 0 0 0 0.20 0.94 -3686 DDRGK1 284427 1 1 1 0 1 0 0 0 0 0 0.20 0.94 -3687 DNAH3 dynein, axonemal, heavy chain 3 6366399 10 10 10 4 5 2 2 1 0 0 0.20 0.94 -3688 DDX3X DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, X-linked 1022619 2 2 2 2 0 2 0 0 0 0 0.20 0.94 -3689 FAM199X 581022 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3690 MEF2A myocyte enhancer factor 2A 671268 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3691 UPK3A uroplakin 3A 419796 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3692 HRG histidine-rich glycoprotein 814242 2 2 2 0 2 0 0 0 0 0 0.20 0.94 -3693 HAP1 huntingtin-associated protein 1 (neuroan 1) 701688 2 2 2 1 0 2 0 0 0 0 0.20 0.94 -3694 TRAPPC1 trafficking protein particle complex 1 230178 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3695 HIST1H3F histone cluster 1, H3f 210405 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3696 SLMAP sarcolemma associated protein 1277640 2 2 2 1 0 0 1 0 1 0 0.20 0.94 -3697 C19orf46 chromosome 19 open reading frame 46 495846 1 1 1 1 0 0 0 1 0 0 0.20 0.94 -3698 EIF3K eukaryotic translation initiation factor 3, subunit K 349323 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3699 ACADVL acyl-Coenzyme A dehydrogenase, very long chain 824889 2 2 2 0 0 2 0 0 0 0 0.20 0.94 -3700 GDPD1 glycerophosphodiester phosphodiesterase domain containing 1 525252 1 1 1 2 0 1 0 0 0 0 0.20 0.94 -3701 LRTOMT 301665 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3702 PLEKHH1 pleckstrin homology domain containing, family H (with MyTH4 domain) member 1 1924065 3 3 3 0 0 0 1 0 2 0 0.20 0.94 -3703 SLITRK2 SLIT and NTRK-like family, member 2 1288794 2 2 2 0 1 0 0 0 1 0 0.20 0.94 -3704 KRT33A keratin 33A 630201 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3705 CCPG1 cell cycle progression 1 1167114 2 2 2 0 0 0 1 0 1 0 0.20 0.94 -3706 MTAP methylthioadenosine phosphorylase 436020 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3707 PIK3CB phosphoinositide-3-kinase, catalytic, beta polypeptide 1673607 3 3 3 0 0 2 0 1 0 0 0.20 0.94 -3708 ANXA11 annexin A11 657072 1 1 1 0 0 0 0 1 0 0 0.20 0.94 -3709 KIAA1191 KIAA1191 479622 1 1 1 0 0 0 1 0 0 0 0.20 0.94 -3710 PRICKLE2 prickle homolog 2 (Drosophila) 1299441 2 2 2 0 1 0 0 0 1 0 0.20 0.94 -3711 HAT1 histone acetyltransferase 1 661128 1 1 1 0 0 0 0 0 1 0 0.20 0.94 -3712 SNTB1 syntrophin, beta 1 (dystrophin-associated protein A1, 59kDa, basic component 1) 667719 1 1 1 0 0 0 0 1 0 0 0.20 0.94 -3713 C12orf77 226629 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3714 TAB3 1098669 4 2 4 0 0 0 1 0 0 3 0.20 0.94 -3715 CSNK1E casein kinase 1, epsilon 421317 1 1 1 0 0 1 0 0 0 0 0.20 0.94 -3716 HCN3 hyperpolarization activated cyclic nucleotide-gated potassium channel 3 1021605 2 2 2 0 1 1 0 0 0 0 0.20 0.94 -3717 TJP1 tight junction protein 1 (zona occludens 1) 2657694 4 4 4 2 0 1 0 1 2 0 0.20 0.94 -3718 IGSF8 immunoglobulin superfamily, member 8 911586 2 2 2 2 1 0 0 1 0 0 0.20 0.95 -3719 ERBB4 v-erb-a erythroblastic leukemia viral oncogene homolog 4 (avian) 2047773 4 4 4 1 2 2 0 0 0 0 0.20 0.95 -3720 EDA2R ectodysplasin A2 receptor 463398 1 1 1 1 0 0 0 1 0 0 0.20 0.95 -3721 PLA2G2C phospholipase A2, group IIC 235755 1 1 1 0 0 1 0 0 0 0 0.20 0.95 -3722 ZNF70 zinc finger protein 70 681915 1 1 1 0 0 0 1 0 0 0 0.20 0.95 -3723 ZNF597 zinc finger protein 597 652509 1 1 1 1 0 0 0 0 1 0 0.20 0.95 -3724 FGD3 FYVE, RhoGEF and PH domain containing 3 792441 2 2 2 1 1 1 0 0 0 0 0.20 0.95 -3725 OR10A4 olfactory receptor, family 10, subfamily A, member 4 482664 1 1 1 0 0 0 1 0 0 0 0.20 0.95 -3726 RHOB ras homolog gene family, member B 243867 1 1 1 0 1 0 0 0 0 0 0.20 0.95 -3727 GLIPR1L2 GLI pathogenesis-related 1 like 2 393432 1 1 1 0 0 1 0 0 0 0 0.20 0.95 -3728 ASTN1 astrotactin 1 2004678 4 4 4 2 0 4 0 0 0 0 0.20 0.95 -3729 APOL5 apolipoprotein L, 5 658086 1 1 1 0 0 1 0 0 0 0 0.20 0.95 -3730 SPARCL1 SPARC-like 1 (mast9, hevin) 1031745 2 2 2 0 0 0 1 0 1 0 0.20 0.95 -3731 HEPH hephaestin 1809990 3 3 3 1 0 2 0 1 0 0 0.20 0.95 -3732 MBD3L1 methyl-CpG binding domain protein 3-like 1 298623 1 1 1 0 0 1 0 0 0 0 0.20 0.95 -3733 RABL2A RAB, member of RAS oncogene family-like 2A 364533 1 1 1 0 0 1 0 0 0 0 0.20 0.95 -3734 GBP7 guanylate binding protein 7 992199 2 2 2 0 0 1 0 1 0 0 0.20 0.95 -3735 MRPS22 mitochondrial ribosomal protein S22 557700 1 1 1 0 0 0 0 1 0 0 0.20 0.95 -3736 CALR calreticulin 562770 1 1 1 0 0 0 1 0 0 0 0.20 0.95 -3737 SYT6 synaptotagmin VI 660114 1 1 1 0 0 0 0 0 1 0 0.20 0.95 -3738 ALDH1A1 aldehyde dehydrogenase 1 family, member A1 789906 2 2 2 2 0 2 0 0 0 0 0.20 0.95 -3739 EMB embigin homolog (mouse) 458328 1 1 1 1 0 0 0 1 0 0 0.20 0.95 -3740 RBP1 retinol binding protein 1, cellular 197223 2 1 2 0 0 2 0 0 0 0 0.20 0.95 -3741 C19orf54 chromosome 19 open reading frame 54 278850 1 1 1 0 0 1 0 0 0 0 0.20 0.95 -3742 PARP6 poly (ADP-ribose) polymerase family, member 6 946569 2 2 2 0 0 1 0 1 0 0 0.21 0.95 -3743 NFKB2 nuclear factor of kappa light polypeptide gene enhancer in B-cells 2 (p49/p100) 1194999 4 2 4 0 1 0 0 0 0 3 0.21 0.95 -3744 STARD7 StAR-related lipid transfer (START) domain containing 7 485706 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3745 ZBTB10 zinc finger and BTB domain containing 10 804609 2 2 2 0 0 1 1 0 0 0 0.21 0.95 -3746 AGMAT agmatine ureohydrolase (agmatinase) 411177 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3747 NCAM2 neural cell adhesion molecule 2 1300962 2 2 2 2 0 1 0 0 1 0 0.21 0.95 -3748 TRIM21 tripartite motif-containing 21 736164 2 2 2 1 1 1 0 0 0 0 0.21 0.95 -3749 LRPPRC leucine-rich PPR-motif containing 2121288 4 4 4 0 1 0 1 1 1 0 0.21 0.95 -3750 TPD52L1 tumor protein D52-like 1 314340 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3751 ELK3 ELK3, ETS-domain protein (SRF accessory protein 2) 617526 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3752 SLC25A19 solute carrier family 25 (mitochondrial thiamine pyrophosphate carrier), member 19 500409 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3753 ERCC3 excision repair cross-complementing rodent repair deficiency, complementation group 3 (xeroderma pigmentosum group B complementing) 1200069 2 2 2 0 0 1 1 0 0 0 0.21 0.95 -3754 ARFGAP1 ADP-ribosylation factor GTPase activating protein 1 252993 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3755 CEP290 centrosomal protein 290kDa 3392337 5 5 5 0 1 1 1 0 2 0 0.21 0.95 -3756 TP53I3 tumor protein p53 inducible protein 3 516633 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3757 RFX2 regulatory factor X, 2 (influences HLA class II expression) 587106 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3758 CD9 CD9 molecule 340704 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3759 RPS6 ribosomal protein S6 392418 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3760 FAM49A family with sequence similarity 49, member A 513084 1 1 1 1 0 0 0 0 1 0 0.21 0.95 -3761 CCNB1IP1 cyclin B1 interacting protein 1 428922 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3762 RCCD1 RCC1 domain containing 1 301158 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3763 SRRT 1372449 3 3 3 1 1 1 1 0 0 0 0.21 0.95 -3764 GUF1 GUF1 GTPase homolog (S. cerevisiae) 933387 2 2 2 0 0 1 1 0 0 0 0.21 0.95 -3765 CEP76 centrosomal protein 76kDa 994227 2 2 2 0 0 1 0 1 0 0 0.21 0.95 -3766 PRB2 proline-rich protein BstNI subfamily 2 640341 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3767 DMWD dystrophia myotonica, WD repeat containing 697632 1 1 1 1 0 1 0 0 0 0 0.21 0.95 -3768 CHIA chitinase, acidic 747825 2 2 2 0 1 0 0 1 0 0 0.21 0.95 -3769 SIPA1 signal-induced proliferation-associated gene 1 696111 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3770 NSDHL NAD(P) dependent steroid dehydrogenase-like 583050 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3771 MTCH1 mitochondrial carrier homolog 1 (C. elegans) 345774 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3772 NCF2 neutrophil cytosolic factor 2 (65kDa, chronic granulomatous disease, autosomal 2) 831987 2 2 2 2 1 0 1 0 0 0 0.21 0.95 -3773 LBXCOR1 LBXCOR1 homolog (mouse) 601809 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3774 CENPO centromere protein O 469989 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3775 TMEM173 transmembrane protein 173 590148 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3776 TSPYL1 TSPY-like 1 668226 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3777 PRKAR2B protein kinase, cAMP-dependent, regulatory, type II, beta 501930 1 1 1 0 0 0 0 1 0 0 0.21 0.95 -3778 DMRT1 doublesex and mab-3 related transcription factor 1 397488 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3779 AOC3 amine oxidase, copper containing 3 (vascular adhesion protein 1) 1164072 2 2 2 1 0 1 0 0 1 0 0.21 0.95 -3780 MAP3K8 mitogen-activated protein kinase kinase kinase 8 726024 2 2 2 0 1 0 1 0 0 0 0.21 0.95 -3781 RPP14 ribonuclease P/MRP 14kDa subunit 200265 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3782 RHOXF2 Rhox homeobox family, member 2 467961 1 1 1 1 0 0 1 0 0 0 0.21 0.95 -3783 BLOC1S2 biogenesis of lysosome-related organelles complex-1, subunit 2 218517 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3784 OR10G2 olfactory receptor, family 10, subfamily G, member 2 475059 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3785 TMED10 transmembrane emp24-like trafficking protein 10 (yeast) 344760 1 1 1 0 0 0 0 1 0 0 0.21 0.95 -3786 SFRS9 splicing factor, arginine/serine-rich 9 248430 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3787 ZNF772 zinc finger protein 772 755430 2 2 2 0 0 2 0 0 0 0 0.21 0.95 -3788 LGR4 leucine-rich repeat-containing G protein-coupled receptor 4 1388673 3 3 3 1 1 1 1 0 0 0 0.21 0.95 -3789 SLC25A41 solute carrier family 25, member 41 227643 1 1 1 0 0 0 0 1 0 0 0.21 0.95 -3790 RAB28 RAB28, member RAS oncogene family 359463 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3791 C20orf108 chromosome 20 open reading frame 108 203307 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3792 NRXN2 neurexin 2 1862718 3 3 3 0 1 2 0 0 0 0 0.21 0.95 -3793 TASP1 taspase, threonine aspartase, 1 666705 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3794 MDP1 281385 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3795 TWSG1 twisted gastrulation homolog 1 (Drosophila) 348816 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3796 GPR63 G protein-coupled receptor 63 640848 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3797 POU6F1 POU class 6 homeobox 1 364026 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3798 POFUT2 protein O-fucosyltransferase 2 492804 1 1 1 1 0 1 0 0 0 0 0.21 0.95 -3799 SLC6A4 solute carrier family 6 (neurotransmitter transporter, serotonin), member 4 986115 2 2 2 1 0 2 0 0 0 0 0.21 0.95 -3800 SLC25A32 solute carrier family 25, member 32 414726 1 1 1 0 0 0 0 1 0 0 0.21 0.95 -3801 FAM129B family with sequence similarity 129, member B 893841 2 2 2 0 2 0 0 0 0 0 0.21 0.95 -3802 CEP170 centrosomal protein 170kDa 2341326 4 4 4 0 0 1 1 1 1 0 0.21 0.95 -3803 L3MBTL2 l(3)mbt-like 2 (Drosophila) 982566 2 2 2 0 0 2 0 0 0 0 0.21 0.95 -3804 SPACA3 sperm acrosome associated 3 319410 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3805 BCL11B B-cell CLL/lymphoma 11B (zinc finger protein) 365547 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3806 LRRN4 796497 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3807 SLC35C1 solute carrier family 35, member C1 519168 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3808 ZNF552 zinc finger protein 552 607893 2 1 2 0 0 0 0 0 0 2 0.21 0.95 -3809 PSMD5 proteasome (prosome, macropain) 26S subunit, non-ATPase, 5 698646 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3810 TRIM6 tripartite motif-containing 6 802581 2 2 2 0 2 0 0 0 0 0 0.21 0.95 -3811 POLDIP3 polymerase (DNA-directed), delta interacting protein 3 653016 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3812 TMBIM4 transmembrane BAX inhibitor motif containing 4 326508 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3813 NLRP4 NLR family, pyrin domain containing 4 1531647 3 3 3 1 0 2 0 1 0 0 0.21 0.95 -3814 C17orf53 chromosome 17 open reading frame 53 1002339 2 2 2 2 0 0 1 0 1 0 0.21 0.95 -3815 ETV3 ets variant gene 3 225108 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3816 FLJ46321 2406729 4 4 4 0 1 2 1 0 0 0 0.21 0.95 -3817 PPAPDC1B phosphatidic acid phosphatase type 2 domain containing 1B 277329 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3818 GPR109A G protein-coupled receptor 109A 555672 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3819 ANP32C acidic (leucine-rich) nuclear phosphoprotein 32 family, member C 359463 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3820 FBXL4 F-box and leucine-rich repeat protein 4 960258 2 2 2 0 0 0 1 1 0 0 0.21 0.95 -3821 C20orf106 chromosome 20 open reading frame 106 265668 1 1 1 0 0 0 1 0 0 0 0.21 0.95 -3822 MSGN1 mesogenin 1 297102 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3823 GRIN1 glutamate receptor, ionotropic, N-methyl D-aspartate 1 629187 1 1 1 1 0 0 0 1 0 0 0.21 0.95 -3824 LRRC41 leucine rich repeat containing 41 1153932 2 2 2 2 0 1 0 0 1 0 0.21 0.95 -3825 PACRG PARK2 co-regulated 402558 1 1 1 0 0 0 0 1 0 0 0.21 0.95 -3826 TFPI tissue factor pathway inhibitor (lipoprotein-associated coagulation inhibitor) 545025 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3827 HNRNPA3 558207 1 1 1 1 0 0 0 0 1 0 0.21 0.95 -3828 ZNF238 zinc finger protein 238 813228 2 2 2 1 1 0 1 0 0 0 0.21 0.95 -3829 RNF219 ring finger protein 219 1117428 2 2 2 0 0 0 2 0 0 0 0.21 0.95 -3830 CCL21 chemokine (C-C motif) ligand 21 213447 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3831 CRTAP cartilage associated protein 384813 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3832 SFI1 Sfi1 homolog, spindle assembly associated (yeast) 1338480 2 2 2 3 0 0 0 0 2 0 0.21 0.95 -3833 APOL1 apolipoprotein L, 1 643383 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3834 GLT8D1 glycosyltransferase 8 domain containing 1 584064 1 1 1 0 0 0 0 1 0 0 0.21 0.95 -3835 DLK1 delta-like 1 homolog (Drosophila) 558207 1 1 1 1 1 0 0 0 0 0 0.21 0.95 -3836 CHRM5 cholinergic receptor, muscarinic 5 812721 2 2 2 0 1 0 0 0 1 0 0.21 0.95 -3837 OR51M1 olfactory receptor, family 51, subfamily M, member 1 499395 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3838 NOS3 nitric oxide synthase 3 (endothelial cell) 823875 2 2 2 0 1 0 1 0 0 0 0.21 0.95 -3839 BHLHE40 595725 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3840 LATS2 LATS, large tumor suppressor, homolog 2 (Drosophila) 1155960 2 2 2 0 1 0 0 0 1 0 0.21 0.95 -3841 ALG1 asparagine-linked glycosylation 1 homolog (S. cerevisiae, beta-1,4-mannosyltransferase) 596739 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3842 KIFC2 kinesin family member C2 573417 1 1 1 0 0 1 0 0 0 0 0.21 0.95 -3843 CDH22 cadherin-like 22 859365 2 2 2 1 0 2 0 0 0 0 0.21 0.95 -3844 WRNIP1 Werner helicase interacting protein 1 608400 1 1 1 1 0 1 0 0 0 0 0.21 0.95 -3845 MAPKAPK3 mitogen-activated protein kinase-activated protein kinase 3 551616 1 1 1 0 1 0 0 0 0 0 0.21 0.95 -3846 BTBD10 BTB (POZ) domain containing 10 740220 2 2 2 0 2 0 0 0 0 0 0.21 0.95 -3847 CDC42BPG CDC42 binding protein kinase gamma (DMPK-like) 1340001 2 2 2 1 0 0 1 0 1 0 0.21 0.95 -3848 ZNF230 zinc finger protein 230 730587 2 2 2 0 0 2 0 0 0 0 0.21 0.95 -3849 RFX6 1336452 3 3 3 0 1 1 1 0 0 0 0.21 0.95 -3850 TNFSF4 tumor necrosis factor (ligand) superfamily, member 4 (tax-transcriptionally activated glycoprotein 1, 34kDa) 285948 1 1 1 0 0 0 0 0 1 0 0.21 0.95 -3851 IFT122 intraflagellar transport 122 homolog (Chlamydomonas) 2005692 3 3 3 1 0 0 0 1 2 0 0.21 0.95 -3852 WBSCR28 Williams-Beuren syndrome chromosome region 28 410670 1 1 1 0 0 0 1 0 0 0 0.21 0.96 -3853 SLC38A8 solute carrier family 38, member 8 599274 1 1 1 0 0 1 0 0 0 0 0.21 0.96 -3854 CACNA1D calcium channel, voltage-dependent, L type, alpha 1D subunit 3384225 4 4 4 3 1 0 1 0 2 0 0.21 0.96 -3855 GNL2 guanine nucleotide binding protein-like 2 (nucleolar) 1145820 2 2 2 0 0 1 1 0 0 0 0.21 0.96 -3856 STXBP1 syntaxin binding protein 1 980031 2 2 2 0 0 1 1 0 0 0 0.21 0.96 -3857 PPFIA2 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 2 1854606 3 3 3 0 2 0 0 0 1 0 0.21 0.96 -3858 ZNF527 zinc finger protein 527 935922 2 2 2 0 0 2 0 0 0 0 0.21 0.96 -3859 C2orf16 chromosome 2 open reading frame 16 3021213 5 5 5 1 1 1 2 0 1 0 0.21 0.96 -3860 ZNF347 zinc finger protein 347 1287273 2 2 2 0 0 0 1 0 1 0 0.21 0.96 -3861 TRIM23 tripartite motif-containing 23 911079 2 2 2 0 0 0 1 1 0 0 0.21 0.96 -3862 CNOT8 CCR4-NOT transcription complex, subunit 8 457821 1 1 1 0 0 1 0 0 0 0 0.21 0.96 -3863 FAM22G family with sequence similarity 22, member G 641355 1 1 1 0 0 0 1 0 0 0 0.21 0.96 -3864 L3MBTL l(3)mbt-like (Drosophila) 1107288 2 2 2 0 2 0 0 0 0 0 0.21 0.96 -3865 SLC24A3 solute carrier family 24 (sodium/potassium/calcium exchanger), member 3 940992 2 2 2 0 0 1 1 0 0 0 0.21 0.96 -3866 COQ10A coenzyme Q10 homolog A (S. cerevisiae) 343239 1 1 1 0 1 0 0 0 0 0 0.21 0.96 -3867 ADD1 adducin 1 (alpha) 1195506 2 2 2 0 0 2 0 0 0 0 0.21 0.96 -3868 TDRD10 tudor domain containing 10 599274 1 1 1 0 0 0 0 0 1 0 0.21 0.96 -3869 C1orf14 chromosome 1 open reading frame 14 807651 2 2 2 0 1 0 1 0 0 0 0.21 0.96 -3870 RNF144A ring finger protein 144A 459849 1 1 1 0 0 1 0 0 0 0 0.21 0.96 -3871 FKBP11 FK506 binding protein 11, 19 kDa 308763 1 1 1 0 0 1 0 0 0 0 0.21 0.96 -3872 PBX4 pre-B-cell leukemia homeobox 4 386334 1 1 1 0 0 1 0 0 0 0 0.21 0.96 -3873 KCNK7 potassium channel, subfamily K, member 7 262626 1 1 1 0 0 0 1 0 0 0 0.21 0.96 -3874 GRIN2B glutamate receptor, ionotropic, N-methyl D-aspartate 2B 2283021 4 4 4 1 2 1 1 0 0 0 0.21 0.96 -3875 BCL2L11 BCL2-like 11 (apoptosis facilitator) 308763 1 1 1 0 1 0 0 0 0 0 0.21 0.96 -3876 KIAA1377 KIAA1377 1722786 3 3 3 1 1 1 1 0 0 0 0.21 0.96 -3877 TOMM34 translocase of outer mitochondrial membrane 34 419289 1 1 1 0 1 0 0 0 0 0 0.21 0.96 -3878 SAGE1 sarcoma antigen 1 1415037 3 3 3 3 1 1 0 1 0 0 0.21 0.96 -3879 WDR64 WD repeat domain 64 1037322 2 2 2 0 0 0 2 0 0 0 0.21 0.96 -3880 HDLBP high density lipoprotein binding protein (vigilin) 1911390 3 3 3 0 0 1 0 2 0 0 0.21 0.96 -3881 TRMT5 TRM5 tRNA methyltransferase 5 homolog (S. cerevisiae) 785850 1 1 1 0 0 0 0 0 1 0 0.21 0.96 -3882 PPT2 palmitoyl-protein thioesterase 2 481650 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -3883 ATP5C1 ATP synthase, H+ transporting, mitochondrial F1 complex, gamma polypeptide 1 446667 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3884 ZUFSP zinc finger with UFM1-specific peptidase domain 898911 2 2 2 0 0 0 2 0 0 0 0.22 0.96 -3885 PGCP 733122 2 2 2 0 1 0 0 1 0 0 0.22 0.96 -3886 LCAT lecithin-cholesterol acyltransferase 554658 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3887 C9orf100 chromosome 9 open reading frame 100 424866 1 1 1 1 0 0 1 0 0 0 0.22 0.96 -3888 CLDN12 claudin 12 374673 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -3889 IKZF1 IKAROS family zinc finger 1 (Ikaros) 699660 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3890 GRIK5 glutamate receptor, ionotropic, kainate 5 1179282 2 2 2 0 0 1 1 0 0 0 0.22 0.96 -3891 KRT4 keratin 4 923247 2 2 2 0 0 0 1 1 0 0 0.22 0.96 -3892 FSD1 fibronectin type III and SPRY domain containing 1 482664 1 1 1 1 1 0 0 0 0 0 0.22 0.96 -3893 SCGN secretagogin, EF-hand calcium binding protein 443625 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3894 TMEM174 transmembrane protein 174 375180 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3895 NUDCD2 NudC domain containing 2 248430 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3896 SNW1 SNW domain containing 1 845169 2 2 2 0 1 0 0 0 1 0 0.22 0.96 -3897 RPL17 ribosomal protein L17 293553 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3898 C11orf66 chromosome 11 open reading frame 66 662649 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -3899 TBX19 T-box 19 699153 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3900 C1orf27 chromosome 1 open reading frame 27 620568 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -3901 SET SET translocation (myeloid leukemia-associated) 400023 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3902 FOXN2 forkhead box N2 667212 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -3903 OR1L4 olfactory receptor, family 1, subfamily L, member 4 476580 1 1 1 1 0 0 1 0 0 0 0.22 0.96 -3904 GEFT 944034 3 2 3 0 1 1 1 0 0 0 0.22 0.96 -3905 DNM1 dynamin 1 1114893 2 2 2 0 0 2 0 0 0 0 0.22 0.96 -3906 IRF3 interferon regulatory factor 3 646425 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -3907 CHCHD2 coiled-coil-helix-coiled-coil-helix domain containing 2 226122 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3908 OPHN1 oligophrenin 1 1268007 2 2 2 0 0 0 1 0 1 0 0.22 0.96 -3909 STX6 syntaxin 6 385827 1 1 1 1 0 0 0 1 0 0 0.22 0.96 -3910 CD8A CD8a molecule 275808 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3911 STAG1 stromal antigen 1 1981863 3 3 3 2 0 1 1 0 1 0 0.22 0.96 -3912 NACA nascent polypeptide-associated complex alpha subunit 1758276 3 3 3 0 1 1 1 0 0 0 0.22 0.96 -3913 PGAP3 290511 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3914 IKZF2 IKAROS family zinc finger 2 (Helios) 815763 2 2 2 1 1 1 0 0 0 0 0.22 0.96 -3915 PAPPA pregnancy-associated plasma protein A, pappalysin 1 2308371 4 4 4 1 2 2 0 0 0 0 0.22 0.96 -3916 TMED7 transmembrane emp24 protein transport domain containing 7 261105 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3917 MANEA mannosidase, endo-alpha 712335 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3918 RCSD1 RCSD domain containing 1 611949 1 1 1 1 0 1 0 0 0 0 0.22 0.96 -3919 SEH1L SEH1-like (S. cerevisiae) 610428 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3920 STOX1 storkhead box 1 1354704 3 3 3 0 1 1 0 1 0 0 0.22 0.96 -3921 POLR1D polymerase (RNA) I polypeptide D, 16kDa 370617 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -3922 UEVLD UEV and lactate/malate dehyrogenase domains 718926 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -3923 FGD4 FYVE, RhoGEF and PH domain containing 4 1197027 2 2 2 2 0 1 0 0 1 0 0.22 0.96 -3924 SLC4A4 solute carrier family 4, sodium bicarbonate cotransporter, member 4 1826721 3 3 3 0 1 1 0 1 0 0 0.22 0.96 -3925 NDFIP1 Nedd4 family interacting protein 1 317889 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3926 HNRNPA0 heterogeneous nuclear ribonucleoprotein A0 313833 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3927 MSR1 macrophage scavenger receptor 1 730080 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3928 ETV5 ets variant gene 5 (ets-related molecule) 801567 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3929 G3BP2 GTPase activating protein (SH3 domain) binding protein 2 756951 2 2 2 0 2 0 0 0 0 0 0.22 0.96 -3930 USF1 upstream transcription factor 1 493311 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3931 TMEM38B transmembrane protein 38B 440076 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3932 PCDHB14 protocadherin beta 14 1118949 2 2 2 1 0 0 1 0 1 0 0.22 0.96 -3933 TTC7A tetratricopeptide repeat domain 7A 1242657 2 2 2 1 1 1 0 0 0 0 0.22 0.96 -3934 CHRND cholinergic receptor, nicotinic, delta 810693 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3935 ALG10 asparagine-linked glycosylation 10 homolog (yeast, alpha-1,2-glucosyltransferase) 727038 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3936 STK32B serine/threonine kinase 32B 594204 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3937 KATNB1 katanin p80 (WD repeat containing) subunit B 1 693576 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3938 MAGEC1 melanoma antigen family C, 1 1742559 3 3 3 0 1 0 1 0 1 0 0.22 0.96 -3939 C18orf19 chromosome 18 open reading frame 19 421317 1 1 1 1 0 0 1 0 0 0 0.22 0.96 -3940 ZCCHC5 zinc finger, CCHC domain containing 5 726024 1 1 1 1 0 0 1 0 0 0 0.22 0.96 -3941 CCDC84 coiled-coil domain containing 84 443625 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -3942 IDH3A isocitrate dehydrogenase 3 (NAD+) alpha 564798 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3943 ZFP30 zinc finger protein 30 homolog (mouse) 799032 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3944 GDPD2 glycerophosphodiester phosphodiesterase domain containing 2 851760 2 2 2 0 0 0 1 0 1 0 0.22 0.96 -3945 CACNG6 calcium channel, voltage-dependent, gamma subunit 6 255528 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3946 FNDC7 fibronectin type III domain containing 7 828945 2 2 2 0 1 0 1 0 0 0 0.22 0.96 -3947 TMEM50A transmembrane protein 50A 252486 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3948 TSR1 TSR1, 20S rRNA accumulation, homolog (S. cerevisiae) 1249248 2 2 2 0 0 0 2 0 0 0 0.22 0.96 -3949 DDX27 DEAD (Asp-Glu-Ala-Asp) box polypeptide 27 1254825 2 2 2 0 0 1 0 0 1 0 0.22 0.96 -3950 FAM81A family with sequence similarity 81, member A 577473 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3951 SLITRK4 SLIT and NTRK-like family, member 4 1276626 3 2 3 0 1 1 0 0 1 0 0.22 0.96 -3952 CD68 CD68 molecule 550602 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3953 NEK6 NIMA (never in mitosis gene a)-related kinase 6 499395 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3954 DYNC1I2 dynein, cytoplasmic 1, intermediate chain 2 890292 2 2 2 0 0 1 1 0 0 0 0.22 0.96 -3955 OR4P4 olfactory receptor, family 4, subfamily P, member 4 478101 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3956 ATP6V1B2 ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B2 736164 1 1 1 1 0 0 0 0 1 0 0.22 0.96 -3957 GRAMD1B GRAM domain containing 1B 1003860 2 2 2 1 1 0 0 0 1 0 0.22 0.96 -3958 DTWD2 DTW domain containing 2 354393 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -3959 ARMC7 armadillo repeat containing 7 221052 1 1 1 1 1 0 0 0 0 0 0.22 0.96 -3960 ZNF426 zinc finger protein 426 856323 2 2 2 0 0 1 1 0 0 0 0.22 0.96 -3961 HTR1B 5-hydroxytryptamine (serotonin) receptor 1B 596232 1 1 1 2 0 0 0 0 1 0 0.22 0.96 -3962 ENAM enamelin 1471821 3 3 3 0 0 2 1 0 0 0 0.22 0.96 -3963 C14orf49 chromosome 14 open reading frame 49 1428219 3 3 3 1 1 2 0 0 0 0 0.22 0.96 -3964 P2RX5 purinergic receptor P2X, ligand-gated ion channel, 5 473538 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3965 OR2D3 olfactory receptor, family 2, subfamily D, member 3 505479 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -3966 GTF2E2 general transcription factor IIE, polypeptide 2, beta 34kDa 458328 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3967 CHD1L chromodomain helicase DNA binding protein 1-like 1346085 2 2 2 0 1 0 0 0 1 0 0.22 0.96 -3968 AIM1 absent in melanoma 1 2306850 4 4 4 1 0 0 3 1 0 0 0.22 0.96 -3969 MMP12 matrix metallopeptidase 12 (macrophage elastase) 736164 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3970 CKAP2L cytoskeleton associated protein 2-like 1152918 2 2 2 0 1 0 1 0 0 0 0.22 0.96 -3971 OASL 2'-5'-oligoadenylate synthetase-like 795483 2 2 2 0 1 1 0 0 0 0 0.22 0.96 -3972 C10orf107 chromosome 10 open reading frame 107 330057 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -3973 BEND3 1192464 2 2 2 0 0 2 0 0 0 0 0.22 0.96 -3974 KCNA5 potassium voltage-gated channel, shaker-related subfamily, member 5 791427 2 2 2 1 1 1 0 0 0 0 0.22 0.96 -3975 SYNM 1841931 3 3 3 0 1 1 0 0 1 0 0.22 0.96 -3976 CEP70 centrosomal protein 70kDa 942006 2 2 2 0 0 0 2 0 0 0 0.22 0.96 -3977 HAVCR1 hepatitis A virus cellular receptor 1 571389 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3978 ERVFRDE1 432471 1 1 1 1 1 0 0 0 0 0 0.22 0.96 -3979 ORM2 orosomucoid 2 283920 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -3980 OR5L2 olfactory receptor, family 5, subfamily L, member 2 476580 1 1 1 1 0 0 1 0 0 0 0.22 0.96 -3981 TARBP1 TAR (HIV-1) RNA binding protein 1 1975779 3 3 3 0 0 2 0 0 1 0 0.22 0.96 -3982 RNASE3 ribonuclease, RNase A family, 3 (eosinophil cationic protein) 246909 1 1 1 1 1 0 0 0 0 0 0.22 0.96 -3983 WFDC8 WAP four-disulfide core domain 8 380250 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -3984 COL19A1 collagen, type XIX, alpha 1 1811511 3 3 3 1 1 0 0 1 1 0 0.22 0.96 -3985 PDCL3 phosducin-like 3 372138 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -3986 CERK ceramide kinase 569868 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3987 MMEL1 membrane metallo-endopeptidase-like 1 745797 1 1 1 1 0 0 0 0 1 0 0.22 0.96 -3988 COL5A2 collagen, type V, alpha 2 2305329 4 4 4 1 0 2 1 0 1 0 0.22 0.96 -3989 CHM choroideremia (Rab escort protein 1) 1025154 2 2 2 0 1 0 1 0 0 0 0.22 0.96 -3990 BHMT betaine-homocysteine methyltransferase 616512 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -3991 ADAM19 ADAM metallopeptidase domain 19 (meltrin beta) 1307046 2 2 2 0 0 0 1 0 1 0 0.22 0.96 -3992 WNT5B wingless-type MMTV integration site family, member 5B 505986 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -3993 PECI peroxisomal D3,D2-enoyl-CoA isomerase 599274 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -3994 TRIM10 tripartite motif-containing 10 791934 2 2 2 0 0 2 0 0 0 0 0.22 0.96 -3995 LMX1B LIM homeobox transcription factor 1, beta 506493 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -3996 EFCAB3 EF-hand calcium binding domain 3 694590 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -3997 RGS1 regulator of G-protein signaling 1 329550 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -3998 STX17 syntaxin 17 475059 1 1 1 1 0 0 1 0 0 0 0.22 0.96 -3999 DPP7 dipeptidyl-peptidase 7 271752 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -4000 C11orf84 526773 1 1 1 1 0 1 0 0 0 0 0.22 0.96 -4001 NUCKS1 nuclear casein kinase and cyclin-dependent kinase substrate 1 374673 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -4002 ABCB8 ATP-binding cassette, sub-family B (MDR/TAP), member 8 1073319 2 2 2 0 0 2 0 0 0 0 0.22 0.96 -4003 SYAP1 synapse associated protein 1, SAP47 homolog (Drosophila) 464412 1 1 1 2 0 0 1 0 0 0 0.22 0.96 -4004 KIAA0430 KIAA0430 2692170 4 4 4 2 0 2 0 0 2 0 0.22 0.96 -4005 BAP1 BRCA1 associated protein-1 (ubiquitin carboxy-terminal hydrolase) 958737 2 2 2 0 0 0 1 1 0 0 0.22 0.96 -4006 THAP1 THAP domain containing, apoptosis associated protein 1 331578 1 1 1 0 0 0 0 1 0 0 0.22 0.96 -4007 C2orf65 chromosome 2 open reading frame 65 819819 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -4008 C6orf118 chromosome 6 open reading frame 118 703716 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -4009 HOOK3 hook homolog 3 (Drosophila) 1107288 2 2 2 0 0 0 1 0 1 0 0.22 0.96 -4010 EEF2K eukaryotic elongation factor-2 kinase 1118949 2 2 2 1 0 0 2 0 0 0 0.22 0.96 -4011 HOMEZ homeobox and leucine zipper encoding 819819 2 1 2 0 0 0 0 0 0 2 0.22 0.96 -4012 ERN1 endoplasmic reticulum to nucleus signaling 1 1316679 2 2 2 0 0 1 0 0 1 0 0.22 0.96 -4013 TRIM13 tripartite motif-containing 13 625638 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -4014 RNF20 ring finger protein 20 1523028 3 3 3 1 0 2 1 0 0 0 0.22 0.96 -4015 WBSCR27 Williams Beuren syndrome chromosome region 27 348309 1 1 1 0 1 0 0 0 0 0 0.22 0.96 -4016 LONP1 lon peptidase 1, mitochondrial 836550 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -4017 PASD1 PAS domain containing 1 1166100 2 2 2 1 0 1 1 0 0 0 0.22 0.96 -4018 ACAD10 acyl-Coenzyme A dehydrogenase family, member 10 1608204 3 3 3 0 1 2 0 0 0 0 0.22 0.96 -4019 TRPM3 transient receptor potential cation channel, subfamily M, member 3 2710929 4 4 4 0 0 1 1 1 1 0 0.22 0.96 -4020 PTDSS2 phosphatidylserine synthase 2 336648 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -4021 RRP1 ribosomal RNA processing 1 homolog (S. cerevisiae) 471003 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -4022 CTSF cathepsin F 541476 1 1 1 2 0 1 0 0 0 0 0.22 0.96 -4023 DUXA double homeobox A 323973 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -4024 HIF1AN hypoxia-inducible factor 1, alpha subunit inhibitor 481650 1 1 1 1 0 0 1 0 0 0 0.22 0.96 -4025 HFE hemochromatosis 539955 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -4026 FCGR1B Fc fragment of IgG, high affinity Ib, receptor (CD64) 384813 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -4027 CTH cystathionase (cystathionine gamma-lyase) 641862 1 1 1 0 0 0 0 0 1 0 0.22 0.96 -4028 RNF135 ring finger protein 135 478101 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -4029 PRMT10 1257867 2 2 2 1 0 0 0 0 2 0 0.22 0.96 -4030 ING4 inhibitor of growth family, member 4 396474 1 1 1 0 0 1 0 0 0 0 0.22 0.96 -4031 SGK196 537927 1 1 1 0 0 0 1 0 0 0 0.22 0.96 -4032 ETF1 eukaryotic translation termination factor 1 640848 1 1 1 0 0 0 0 0 1 0 0.23 0.96 -4033 DPP10 dipeptidyl-peptidase 10 1264965 2 2 2 1 0 1 1 0 0 0 0.23 0.96 -4034 RDH12 retinol dehydrogenase 12 (all-trans/9-cis/11-cis) 496353 1 1 1 0 0 0 1 0 0 0 0.23 0.96 -4035 RAB39B RAB39B, member RAS oncogene family 329550 1 1 1 0 1 0 0 0 0 0 0.23 0.96 -4036 TFAP2C transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma) 511563 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4037 IL15 interleukin 15 260091 1 1 1 0 1 0 0 0 0 0 0.23 0.97 -4038 RANBP3 RAN binding protein 3 591162 1 1 1 1 0 0 0 1 0 0 0.23 0.97 -4039 RANGAP1 Ran GTPase activating protein 1 781794 2 2 2 0 1 0 0 1 0 0 0.23 0.97 -4040 ZNF561 zinc finger protein 561 689013 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4041 AJAP1 adherens junctions associated protein 1 428415 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4042 ARID4A AT rich interactive domain 4A (RBP1-like) 1960062 3 3 3 0 0 0 1 2 0 0 0.23 0.97 -4043 KRI1 KRI1 homolog (S. cerevisiae) 1020084 2 2 2 2 0 2 0 0 0 0 0.23 0.97 -4044 SLC35B4 solute carrier family 35, member B4 484185 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4045 FNDC1 fibronectin type III domain containing 1 2222181 4 4 4 1 1 2 1 0 0 0 0.23 0.97 -4046 MCHR2 melanin-concentrating hormone receptor 2 528801 1 1 1 0 0 0 0 1 0 0 0.23 0.97 -4047 NEK8 NIMA (never in mitosis gene a)- related kinase 8 1023126 2 2 2 0 0 1 1 0 0 0 0.23 0.97 -4048 BMP8B bone morphogenetic protein 8b (osteogenic protein 2) 279864 1 1 1 1 0 0 0 1 0 0 0.23 0.97 -4049 TNNC2 troponin C type 2 (fast) 257049 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4050 IL25 interleukin 25 281385 1 1 1 0 0 0 0 1 0 0 0.23 0.97 -4051 IDS iduronate 2-sulfatase (Hunter syndrome) 820326 2 2 2 1 0 2 0 0 0 0 0.23 0.97 -4052 FCAR Fc fragment of IgA, receptor for 484185 1 1 1 1 0 1 0 0 0 0 0.23 0.97 -4053 POFUT1 protein O-fucosyltransferase 1 564798 1 1 1 0 1 0 0 0 0 0 0.23 0.97 -4054 PPAPDC3 phosphatidic acid phosphatase type 2 domain containing 3 334113 1 1 1 0 1 0 0 0 0 0 0.23 0.97 -4055 PDIA4 protein disulfide isomerase family A, member 4 956202 2 2 2 0 0 1 0 0 1 0 0.23 0.97 -4056 BNC1 basonuclin 1 1471314 3 3 3 1 2 1 0 0 0 0 0.23 0.97 -4057 DNM3 dynamin 3 1273077 2 2 2 0 1 1 0 0 0 0 0.23 0.97 -4058 ITGB3 integrin, beta 3 (platelet glycoprotein IIIa, antigen CD61) 1188408 2 2 2 0 0 1 1 0 0 0 0.23 0.97 -4059 OR10G7 olfactory receptor, family 10, subfamily G, member 7 476580 1 1 1 0 0 0 0 1 0 0 0.23 0.97 -4060 MYPN myopalladin 2047773 3 3 3 1 0 0 0 1 2 0 0.23 0.97 -4061 METAP2 methionyl aminopeptidase 2 750867 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4062 ZNF611 zinc finger protein 611 1079910 2 2 2 0 0 0 2 0 0 0 0.23 0.97 -4063 PRDM16 PR domain containing 16 1331382 2 2 2 0 1 1 0 0 0 0 0.23 0.97 -4064 TBCEL tubulin folding cofactor E-like 660621 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4065 SMC6 structural maintenance of chromosomes 6 1713660 3 3 3 0 1 0 0 0 2 0 0.23 0.97 -4066 WNT3A wingless-type MMTV integration site family, member 3A 221052 1 1 1 1 1 0 0 0 0 0 0.23 0.97 -4067 DPY19L3 dpy-19-like 3 (C. elegans) 1127061 2 2 2 0 1 0 0 1 0 0 0.23 0.97 -4068 SLC35F1 solute carrier family 35, member F1 548574 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4069 CDK6 cyclin-dependent kinase 6 391404 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4070 NAPA N-ethylmaleimide-sensitive factor attachment protein, alpha 456300 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4071 TFAP4 transcription factor AP-4 (activating enhancer binding protein 4) 400530 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4072 CELA3B 426894 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4073 SEMG2 semenogelin II 890799 2 2 2 0 1 0 0 1 0 0 0.23 0.97 -4074 GLRA2 glycine receptor, alpha 2 743769 1 1 1 0 0 0 0 1 0 0 0.23 0.97 -4075 NARS2 asparaginyl-tRNA synthetase 2, mitochondrial (putative) 755430 1 1 1 1 0 0 0 1 0 0 0.23 0.97 -4076 NLK nemo-like kinase 685464 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4077 KIAA1274 KIAA1274 1092585 2 2 2 0 0 2 0 0 0 0 0.23 0.97 -4078 WDR67 WD repeat domain 67 1626456 2 2 2 2 1 0 0 0 1 0 0.23 0.97 -4079 THOC1 THO complex 1 941499 2 2 2 0 0 2 0 0 0 0 0.23 0.97 -4080 SOCS4 suppressor of cytokine signaling 4 672789 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4081 GATAD2B GATA zinc finger domain containing 2B 923754 2 2 2 0 0 1 1 0 0 0 0.23 0.97 -4082 LGI2 leucine-rich repeat LGI family, member 2 744783 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4083 KCTD21 potassium channel tetramerisation domain containing 21 399009 1 1 1 0 1 0 0 0 0 0 0.23 0.97 -4084 MYLK myosin light chain kinase 2895984 5 5 5 3 1 3 0 1 0 0 0.23 0.97 -4085 LRTM1 leucine-rich repeats and transmembrane domains 1 532350 1 1 1 1 0 1 0 0 0 0 0.23 0.97 -4086 ZDHHC4 zinc finger, DHHC-type containing 4 536913 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4087 SETX senataxin 4121910 6 6 6 0 0 1 2 1 2 0 0.23 0.97 -4088 OR2J3 olfactory receptor, family 2, subfamily J, member 3 476580 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4089 AIM1L absent in melanoma 1-like 746811 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4090 ADCY1 adenylate cyclase 1 (brain) 1489059 3 3 3 0 2 0 1 0 0 0 0.23 0.97 -4091 C5orf45 459342 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4092 PRPF19 PRP19/PSO4 pre-mRNA processing factor 19 homolog (S. cerevisiae) 730587 1 1 1 0 0 0 0 1 0 0 0.23 0.97 -4093 EPB49 erythrocyte membrane protein band 4.9 (dematin) 497874 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4094 TFB1M transcription factor B1, mitochondrial 536406 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4095 CACNG2 calcium channel, voltage-dependent, gamma subunit 2 469482 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4096 PI4KA phosphatidylinositol 4-kinase, catalytic, alpha 2449824 3 3 3 1 0 0 1 1 1 0 0.23 0.97 -4097 CYP4V2 cytochrome P450, family 4, subfamily V, polypeptide 2 711828 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4098 OR4S1 olfactory receptor, family 4, subfamily S, member 1 473538 1 1 1 0 0 0 0 1 0 0 0.23 0.97 -4099 L2HGDH L-2-hydroxyglutarate dehydrogenase 653016 1 1 1 0 0 0 0 1 0 0 0.23 0.97 -4100 IMMT inner membrane protein, mitochondrial (mitofilin) 1159509 2 2 2 0 1 0 1 0 0 0 0.23 0.97 -4101 RIMKLA 521703 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4102 KIAA0226 KIAA0226 1485510 3 3 3 0 1 0 1 1 0 0 0.23 0.97 -4103 B3GNT8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 414219 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4104 AKAP14 A kinase (PRKA) anchor protein 14 315861 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4105 RSPH1 radial spoke head 1 homolog (Chlamydomonas) 465426 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4106 HOXA1 homeobox A1 515112 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4107 STOM stomatin 420810 1 1 1 0 0 0 0 1 0 0 0.23 0.97 -4108 R3HDML R3H domain containing-like 396474 1 1 1 1 1 0 0 0 0 0 0.23 0.97 -4109 RERG RAS-like, estrogen-regulated, growth inhibitor 312312 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4110 HNF1B HNF1 homeobox B 591162 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4111 KIFAP3 kinesin-associated protein 3 1228461 2 2 2 0 0 1 0 0 1 0 0.23 0.97 -4112 TSG101 tumor susceptibility gene 101 591669 1 1 1 0 0 0 0 1 0 0 0.23 0.97 -4113 C17orf74 chromosome 17 open reading frame 74 769626 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4114 PRR4 proline rich 4 (lacrimal) 267696 1 1 1 0 0 0 0 1 0 0 0.23 0.97 -4115 OC90 otoconin 90 692562 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4116 FMO4 flavin containing monooxygenase 4 866463 2 2 2 0 0 1 1 0 0 0 0.23 0.97 -4117 ABCD3 ATP-binding cassette, sub-family D (ALD), member 3 1008423 2 2 2 0 2 0 0 0 0 0 0.23 0.97 -4118 SSTR3 somatostatin receptor 3 238797 1 1 1 1 0 1 0 0 0 0 0.23 0.97 -4119 TOMM40L translocase of outer mitochondrial membrane 40 homolog (yeast)-like 488241 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4120 LYPD6 LY6/PLAUR domain containing 6 269724 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4121 IFRD1 interferon-related developmental regulator 1 692562 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4122 DHX30 DEAH (Asp-Glu-Ala-His) box polypeptide 30 1825707 3 3 3 0 0 0 1 0 2 0 0.23 0.97 -4123 C9orf106 chromosome 9 open reading frame 106 244374 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4124 SLC1A6 solute carrier family 1 (high affinity aspartate/glutamate transporter), member 6 861393 1 1 1 1 0 0 1 0 0 0 0.23 0.97 -4125 C3orf75 420303 1 1 1 0 1 0 0 0 0 0 0.23 0.97 -4126 CADPS2 Ca2+-dependent activator protein for secretion 2 1798329 3 3 3 0 0 1 1 1 0 0 0.23 0.97 -4127 LARGE like-glycosyltransferase 1163058 2 2 2 0 0 2 0 0 0 0 0.23 0.97 -4128 STMN4 stathmin-like 4 342225 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4129 ATP5F1 ATP synthase, H+ transporting, mitochondrial F0 complex, subunit B1 405093 1 1 1 1 0 0 0 1 0 0 0.23 0.97 -4130 FREM1 FRAS1 related extracellular matrix 1 3366987 5 5 5 1 2 1 2 0 0 0 0.23 0.97 -4131 CELSR3 cadherin, EGF LAG seven-pass G-type receptor 3 (flamingo homolog, Drosophila) 2708394 4 4 4 2 1 2 0 0 1 0 0.23 0.97 -4132 CPA2 carboxypeptidase A2 (pancreatic) 661128 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4133 MOGS 1101204 2 2 2 0 0 0 2 0 0 0 0.23 0.97 -4134 DCLK1 doublecortin-like kinase 1 1089543 2 2 2 3 2 0 0 0 0 0 0.23 0.97 -4135 LXN latexin 351351 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4136 XCR1 chemokine (C motif) receptor 1 483678 1 1 1 0 1 0 0 0 0 0 0.23 0.97 -4137 CTSL2 cathepsin L2 523731 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4138 B3GNT7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 519168 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4139 ATP6V0B ATPase, H+ transporting, lysosomal 21kDa, V0 subunit b 293553 1 1 1 0 1 0 0 0 0 0 0.23 0.97 -4140 ZNF594 zinc finger protein 594 1230996 2 2 2 1 0 0 1 0 1 0 0.23 0.97 -4141 WDR65 WD repeat domain 65 1083459 2 2 2 0 0 1 1 0 0 0 0.23 0.97 -4142 MTMR9 myotubularin related protein 9 766584 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4143 MYL12B 269217 1 1 1 0 0 1 0 0 0 0 0.23 0.97 -4144 HSPA14 heat shock 70kDa protein 14 773175 2 2 2 0 1 0 0 1 0 0 0.23 0.97 -4145 FBXL3 F-box and leucine-rich repeat protein 3 660621 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4146 DUSP7 dual specificity phosphatase 7 380757 1 1 1 0 0 0 1 0 0 0 0.23 0.97 -4147 TAAR1 trace amine associated receptor 1 519168 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4148 GNAI1 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 1 494325 1 1 1 0 1 0 0 0 0 0 0.23 0.97 -4149 RPS6KL1 ribosomal protein S6 kinase-like 1 767091 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4150 NAA20 266175 1 1 1 1 0 0 1 0 0 0 0.23 0.97 -4151 ARHGEF9 Cdc42 guanine nucleotide exchange factor (GEF) 9 806637 2 2 2 0 1 1 0 0 0 0 0.23 0.97 -4152 UCP3 uncoupling protein 3 (mitochondrial, proton carrier) 486213 1 1 1 1 1 0 0 0 0 0 0.23 0.97 -4153 UHRF1 ubiquitin-like, containing PHD and RING finger domains, 1 942006 2 2 2 1 0 1 0 1 0 0 0.23 0.97 -4154 MSH3 mutS homolog 3 (E. coli) 1657383 2 2 2 1 1 0 0 0 1 0 0.23 0.97 -4155 ITLN2 intelectin 2 511563 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4156 RAB11A RAB11A, member RAS oncogene family 340197 1 1 1 0 0 0 0 0 1 0 0.23 0.97 -4157 ATRN attractin 2023944 3 3 3 0 1 1 1 0 0 0 0.23 0.97 -4158 CEP135 centrosomal protein 135kDa 1784133 2 2 2 0 0 0 0 1 1 0 0.23 0.97 -4159 TM9SF1 transmembrane 9 superfamily member 1 955188 2 2 2 0 0 1 1 0 0 0 0.23 0.97 -4160 GPR20 G protein-coupled receptor 20 240825 1 1 1 0 0 1 0 0 0 0 0.23 0.98 -4161 GPR125 G protein-coupled receptor 125 1916967 3 3 3 2 0 2 1 0 0 0 0.23 0.98 -4162 ICMT isoprenylcysteine carboxyl methyltransferase 342732 1 1 1 0 0 0 1 0 0 0 0.24 0.98 -4163 LHFPL1 lipoma HMGIC fusion partner-like 1 342225 1 1 1 0 0 0 1 0 0 0 0.24 0.98 -4164 DIDO1 death inducer-obliterator 1 2011269 3 3 3 1 0 1 1 0 1 0 0.24 0.98 -4165 ELP3 elongation protein 3 homolog (S. cerevisiae) 852267 1 1 1 1 0 0 0 0 1 0 0.24 0.98 -4166 KIAA1432 KIAA1432 2133963 5 4 5 1 1 2 2 0 0 0 0.24 0.98 -4167 KCNJ3 potassium inwardly-rectifying channel, subfamily J, member 3 769626 1 1 1 0 0 0 0 0 1 0 0.24 0.98 -4168 FAF2 666705 1 1 1 0 0 1 0 0 0 0 0.24 0.98 -4169 L1TD1 LINE-1 type transposase domain containing 1 862914 2 2 2 1 0 1 1 0 0 0 0.24 0.98 -4170 ERCC5 excision repair cross-complementing rodent repair deficiency, complementation group 5 (xeroderma pigmentosum, complementation group G (Cockayne syndrome)) 1789203 3 3 3 0 0 0 3 0 0 0 0.24 0.98 -4171 NMT2 N-myristoyltransferase 2 725517 1 1 1 0 0 0 0 0 1 0 0.24 0.98 -4172 LILRA5 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 5 514098 1 1 1 1 0 0 1 0 0 0 0.24 0.98 -4173 ZNF516 zinc finger protein 516 635271 1 1 1 0 0 1 0 0 0 0 0.24 0.98 -4174 MYST4 MYST histone acetyltransferase (monocytic leukemia) 4 3187002 5 5 5 2 2 1 2 0 0 0 0.24 0.98 -4175 AXIN1 axin 1 585078 1 1 1 1 0 0 0 1 0 0 0.24 0.98 -4176 REEP1 receptor accessory protein 1 242346 1 1 1 0 1 0 0 0 0 0 0.24 0.98 -4177 GHR growth hormone receptor 990171 2 2 2 0 0 1 1 0 0 0 0.24 0.98 -4178 OR6C1 olfactory receptor, family 6, subfamily C, member 1 478101 1 1 1 1 1 0 0 0 0 0 0.24 0.98 -4179 PPIL2 peptidylprolyl isomerase (cyclophilin)-like 2 780780 1 1 1 0 0 0 0 1 0 0 0.24 0.98 -4180 DAB1 disabled homolog 1 (Drosophila) 872040 2 2 2 0 0 1 0 0 1 0 0.24 0.98 -4181 SAMD9 sterile alpha motif domain containing 9 2420418 4 4 4 1 2 1 1 0 0 0 0.24 0.98 -4182 ZNF808 zinc finger protein 808 1381068 2 2 2 0 0 0 1 0 1 0 0.24 0.98 -4183 DUSP6 dual specificity phosphatase 6 374673 1 1 1 2 0 1 0 0 0 0 0.24 0.98 -4184 COPG coatomer protein complex, subunit gamma 1358760 2 2 2 0 0 0 1 0 1 0 0.24 0.98 -4185 ROPN1B ropporin, rhophilin associated protein 1B 334113 1 1 1 1 1 0 0 0 0 0 0.24 0.98 -4186 ADAMTS14 ADAM metallopeptidase with thrombospondin type 1 motif, 14 1676649 3 3 3 1 1 2 0 0 0 0 0.24 0.98 -4187 PARP8 poly (ADP-ribose) polymerase family, member 8 1353183 2 2 2 1 0 0 1 0 1 0 0.24 0.98 -4188 SERINC5 serine incorporator 5 634257 1 1 1 0 0 0 0 1 0 0 0.24 0.98 -4189 SLC1A7 solute carrier family 1 (glutamate transporter), member 7 484692 1 1 1 0 0 1 0 0 0 0 0.24 0.98 -4190 GLYAT glycine-N-acyltransferase 463905 1 1 1 0 0 1 0 0 0 0 0.24 0.98 -4191 NUPL1 nucleoporin like 1 888771 2 2 2 1 0 2 0 0 0 0 0.24 0.98 -4192 CAMK1G calcium/calmodulin-dependent protein kinase IG 747825 1 1 1 1 0 0 1 0 0 0 0.24 0.98 -4193 ZCCHC17 zinc finger, CCHC domain containing 17 382278 1 1 1 0 0 0 0 0 1 0 0.24 0.98 -4194 STEAP2 six transmembrane epithelial antigen of the prostate 2 773175 1 1 1 1 0 0 0 0 1 0 0.24 0.98 -4195 NAB1 NGFI-A binding protein 1 (EGR1 binding protein 1) 756444 1 1 1 0 0 0 0 0 1 0 0.24 0.98 -4196 GOLGA1 golgi autoantigen, golgin subfamily a, 1 1132638 2 2 2 2 0 0 1 1 0 0 0.24 0.98 -4197 ACTL7B actin-like 7B 633750 1 1 1 1 0 0 0 0 1 0 0.24 0.98 -4198 YAP1 Yes-associated protein 1, 65kDa 690534 1 1 1 0 0 1 0 0 0 0 0.24 0.98 -4199 PTPLAD1 protein tyrosine phosphatase-like A domain containing 1 528294 1 1 1 0 0 0 0 0 1 0 0.24 0.98 -4200 PPAN peter pan homolog (Drosophila) 460356 1 1 1 0 0 1 0 0 0 0 0.24 0.98 -4201 ADAMTSL2 ADAMTS-like 2 437034 1 1 1 0 1 0 0 0 0 0 0.24 0.98 -4202 DMPK dystrophia myotonica-protein kinase 697632 1 1 1 0 0 0 1 0 0 0 0.24 0.98 -4203 KIR2DS4 killer cell immunoglobulin-like receptor, two domains, short cytoplasmic tail, 4 361491 1 1 1 1 0 0 0 1 0 0 0.24 0.98 -4204 CCND1 cyclin D1 251979 1 1 1 0 1 0 0 0 0 0 0.24 0.98 -4205 ZNF606 zinc finger protein 606 1218321 2 2 2 0 0 0 2 0 0 0 0.24 0.98 -4206 SLC22A16 solute carrier family 22 (organic cation/carnitine transporter), member 16 866463 2 2 2 0 1 1 0 0 0 0 0.24 0.98 -4207 GRAMD1C GRAM domain containing 1C 1029210 2 2 2 0 0 1 1 0 0 0 0.24 0.98 -4208 MRPL40 mitochondrial ribosomal protein L40 291525 1 1 1 0 0 0 0 1 0 0 0.24 0.98 -4209 LRIG3 leucine-rich repeats and immunoglobulin-like domains 3 1620372 3 3 3 0 0 1 2 0 0 0 0.24 0.98 -4210 MPP2 membrane protein, palmitoylated 2 (MAGUK p55 subfamily member 2) 787371 1 1 1 0 0 0 0 0 1 0 0.24 0.98 -4211 PREP prolyl endopeptidase 1087008 2 2 2 0 0 1 0 1 0 0 0.24 0.98 -4212 KIT v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog 1506297 3 3 3 0 0 2 1 0 0 0 0.24 0.98 -4213 OR5K2 olfactory receptor, family 5, subfamily K, member 2 484185 1 1 1 1 1 0 0 0 0 0 0.24 0.98 -4214 ADHFE1 alcohol dehydrogenase, iron containing, 1 708279 1 1 1 0 0 1 0 0 0 0 0.24 0.98 -4215 CGRRF1 cell growth regulator with ring finger domain 1 518661 1 1 1 0 1 0 0 0 0 0 0.24 0.98 -4216 TRPC1 transient receptor potential cation channel, subfamily C, member 1 1130610 2 2 2 0 0 1 1 0 0 0 0.24 0.98 -4217 IGFBP3 insulin-like growth factor binding protein 3 245895 1 1 1 0 0 1 0 0 0 0 0.24 0.98 -4218 NF2 neurofibromin 2 (merlin) 722982 1 1 1 0 0 0 0 0 1 0 0.24 0.98 -4219 ITGAV integrin, alpha V (vitronectin receptor, alpha polypeptide, antigen CD51) 1652820 3 3 3 1 0 1 1 0 1 0 0.24 0.98 -4220 HTR1F 5-hydroxytryptamine (serotonin) receptor 1F 560235 1 1 1 0 0 0 1 0 0 0 0.24 0.98 -4221 DCDC2B doublecortin domain containing 2B 474045 1 1 1 1 0 0 0 1 0 0 0.24 0.98 -4222 CKLF chemokine-like factor 247416 1 1 1 0 1 0 0 0 0 0 0.24 0.98 -4223 NACA2 nascent polypeptide-associated complex alpha subunit 2 330564 1 1 1 0 0 0 1 0 0 0 0.24 0.98 -4224 PRR21 316368 1 1 1 0 0 0 1 0 0 0 0.24 0.98 -4225 ZNF483 zinc finger protein 483 1170663 2 2 2 1 0 0 1 1 0 0 0.24 0.98 -4226 MTERFD3 MTERF domain containing 3 589134 1 1 1 1 0 1 0 0 0 0 0.24 0.98 -4227 CNKSR1 connector enhancer of kinase suppressor of Ras 1 941499 2 2 2 3 0 1 0 1 0 0 0.24 0.98 -4228 DDC dopa decarboxylase (aromatic L-amino acid decarboxylase) 742755 1 1 1 0 1 0 0 0 0 0 0.24 0.98 -4229 FGF6 fibroblast growth factor 6 323973 1 1 1 1 0 1 0 0 0 0 0.24 0.98 -4230 EIF5 eukaryotic translation initiation factor 5 677352 1 1 1 0 1 0 0 0 0 0 0.24 0.98 -4231 POLA1 polymerase (DNA directed), alpha 1 2285556 4 4 4 1 1 2 0 0 1 0 0.24 0.98 -4232 OR4K13 olfactory receptor, family 4, subfamily K, member 13 465933 1 1 1 0 0 0 1 0 0 0 0.24 0.98 -4233 NELL2 NEL-like 2 (chicken) 1327326 2 2 2 1 0 1 0 0 1 0 0.24 0.98 -4234 UGT3A1 UDP glycosyltransferase 3 family, polypeptide A1 811200 2 2 2 0 0 2 0 0 0 0 0.24 0.98 -4235 XIAP X-linked inhibitor of apoptosis 769626 1 1 1 2 0 1 0 0 0 0 0.24 0.98 -4236 GPR160 G protein-coupled receptor 160 517647 1 1 1 1 1 0 0 0 0 0 0.24 0.98 -4237 RSAD2 radical S-adenosyl methionine domain containing 2 562770 1 1 1 0 0 0 1 0 0 0 0.24 0.98 -4238 CALCR calcitonin receptor 786357 1 1 1 0 0 0 0 0 1 0 0.24 0.99 -4239 MPPED2 metallophosphoesterase domain containing 2 497367 1 1 1 0 0 1 0 0 0 0 0.24 0.99 -4240 EHHADH enoyl-Coenzyme A, hydratase/3-hydroxyacyl Coenzyme A dehydrogenase 1115400 2 2 2 1 0 0 2 0 0 0 0.24 0.99 -4241 IL28RA interleukin 28 receptor, alpha (interferon, lambda receptor) 700674 1 1 1 1 0 0 0 0 1 0 0.24 0.99 -4242 ABCB1 ATP-binding cassette, sub-family B (MDR/TAP), member 1 2003157 3 3 3 4 0 1 1 1 0 0 0.24 0.99 -4243 OR51E2 olfactory receptor, family 51, subfamily E, member 2 490269 1 1 1 0 0 0 1 0 0 0 0.24 0.99 -4244 PDLIM4 PDZ and LIM domain 4 467454 1 1 1 0 0 1 0 0 0 0 0.24 0.99 -4245 PEX10 peroxisome biogenesis factor 10 237276 1 1 1 0 1 0 0 0 0 0 0.24 0.99 -4246 MTA3 metastasis associated 1 family, member 3 765063 1 1 1 1 0 0 1 0 0 0 0.24 0.99 -4247 DMP1 dentin matrix acidic phosphoprotein 791934 1 1 1 0 0 0 0 0 1 0 0.24 0.99 -4248 SH2B1 SH2B adaptor protein 1 1014000 2 2 2 0 1 0 0 1 0 0 0.24 0.99 -4249 TRYX3 378222 1 1 1 0 0 1 0 0 0 0 0.24 0.99 -4250 ELN elastin (supravalvular aortic stenosis, Williams-Beuren syndrome) 1060644 2 2 2 1 0 1 0 1 0 0 0.24 0.99 -4251 IQCA1 1032252 2 2 2 0 0 2 0 0 0 0 0.24 0.99 -4252 PARD6B par-6 partitioning defective 6 homolog beta (C. elegans) 537927 1 1 1 0 0 0 0 1 0 0 0.24 0.99 -4253 ZNF554 zinc finger protein 554 801060 2 2 2 0 2 0 0 0 0 0 0.24 0.99 -4254 IQCG IQ motif containing G 695604 1 1 1 2 0 0 1 0 0 0 0.24 0.99 -4255 RTN1 reticulon 1 769119 1 1 1 0 0 0 0 0 1 0 0.24 0.99 -4256 FAM83H family with sequence similarity 83, member H 493311 1 1 1 0 0 1 0 0 0 0 0.24 0.99 -4257 LRRC7 leucine rich repeat containing 7 2389998 4 4 4 2 1 1 1 1 0 0 0.24 0.99 -4258 PCDHGA9 protocadherin gamma subfamily A, 9 1459146 2 2 2 1 0 0 0 0 2 0 0.24 0.99 -4259 SC4MOL sterol-C4-methyl oxidase-like 457314 1 1 1 0 0 0 1 0 0 0 0.24 0.99 -4260 SCYL1 SCY1-like 1 (S. cerevisiae) 796497 1 1 1 0 0 0 0 0 1 0 0.24 0.99 -4261 DCAF4L1 600288 1 1 1 0 1 0 0 0 0 0 0.24 0.99 -4262 PCDHAC1 protocadherin alpha subfamily C, 1 1403376 2 2 2 1 0 0 1 0 1 0 0.24 0.99 -4263 FAM129C family with sequence similarity 129, member C 840099 2 2 2 1 1 0 0 1 0 0 0.24 0.99 -4264 C19orf59 chromosome 19 open reading frame 59 263640 1 1 1 0 0 0 1 0 0 0 0.24 0.99 -4265 MRC2 mannose receptor, C type 2 1308060 2 2 2 1 0 0 1 0 1 0 0.24 0.99 -4266 METT5D1 methyltransferase 5 domain containing 1 426894 1 1 1 0 0 0 1 0 0 0 0.24 0.99 -4267 CYP4Z1 cytochrome P450, family 4, subfamily Z, polypeptide 1 769119 1 1 1 0 0 0 0 1 0 0 0.24 0.99 -4268 GCC2 GRIP and coiled-coil domain containing 2 2604459 4 4 4 0 0 2 1 0 1 0 0.24 0.99 -4269 UGT2B10 UDP glucuronosyltransferase 2 family, polypeptide B10 816777 2 2 2 0 1 0 1 0 0 0 0.24 0.99 -4270 NOTCH3 Notch homolog 3 (Drosophila) 1917981 3 3 3 2 1 0 1 0 1 0 0.24 0.99 -4271 CCDC80 coiled-coil domain containing 80 1460667 3 3 3 0 0 2 1 0 0 0 0.24 0.99 -4272 LENG9 leukocyte receptor cluster (LRC) member 9 438555 1 1 1 0 0 0 1 0 0 0 0.24 0.99 -4273 CCNB3 cyclin B3 2145624 3 3 3 1 0 1 0 0 2 0 0.24 0.99 -4274 PRKRA protein kinase, interferon-inducible double stranded RNA dependent activator 492804 1 1 1 0 1 0 0 0 0 0 0.24 0.99 -4275 NDUFB9 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 9, 22kDa 281892 1 1 1 0 0 1 0 0 0 0 0.24 0.99 -4276 C18orf54 chromosome 18 open reading frame 54 581529 1 1 1 0 0 1 0 0 0 0 0.24 0.99 -4277 GCC1 GRIP and coiled-coil domain containing 1 1184352 2 2 2 0 1 0 0 0 1 0 0.24 0.99 -4278 CYP8B1 cytochrome P450, family 8, subfamily B, polypeptide 1 765570 1 1 1 0 0 0 0 0 1 0 0.24 0.99 -4279 ATAD2B ATPase family, AAA domain containing 2B 2094924 3 3 3 0 1 0 0 1 1 0 0.24 0.99 -4280 ANKH ankylosis, progressive homolog (mouse) 705744 1 1 1 0 0 1 0 0 0 0 0.24 0.99 -4281 ZNF513 zinc finger protein 513 712842 1 1 1 0 0 1 0 0 0 0 0.24 0.99 -4282 MRPL13 mitochondrial ribosomal protein L13 286455 1 1 1 0 0 0 1 0 0 0 0.24 0.99 -4283 KIAA1012 KIAA1012 2100501 2 2 2 0 0 0 0 0 2 0 0.24 0.99 -4284 KDM4D 799032 1 1 1 0 0 0 0 0 1 0 0.25 0.99 -4285 OVCH1 ovochymase 1 1707576 2 2 2 1 0 0 1 0 1 0 0.25 0.99 -4286 RNF121 ring finger protein 121 459849 1 1 1 0 0 0 0 1 0 0 0.25 0.99 -4287 ZNF365 zinc finger protein 365 1090557 2 2 2 0 1 0 1 0 0 0 0.25 0.99 -4288 BRD8 bromodomain containing 8 2080221 3 3 3 0 0 2 0 0 1 0 0.25 0.99 -4289 TNN tenascin N 1844973 3 3 3 0 2 0 1 0 0 0 0.25 0.99 -4290 ADORA1 adenosine A1 receptor 501423 1 1 1 1 0 1 0 0 0 0 0.25 0.99 -4291 MC4R melanocortin 4 receptor 508521 1 1 1 1 0 0 1 0 0 0 0.25 0.99 -4292 PIP5K1A phosphatidylinositol-4-phosphate 5-kinase, type I, alpha 888771 1 1 1 2 0 0 0 0 1 0 0.25 0.99 -4293 TNFRSF8 tumor necrosis factor receptor superfamily, member 8 674817 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4294 GCDH glutaryl-Coenzyme A dehydrogenase 692055 1 1 1 0 0 0 0 1 0 0 0.25 0.99 -4295 ILVBL ilvB (bacterial acetolactate synthase)-like 920712 2 2 2 0 2 0 0 0 0 0 0.25 0.99 -4296 TCEAL5 transcription elongation factor A (SII)-like 5 316875 1 1 1 0 1 0 0 0 0 0 0.25 0.99 -4297 METTL10 methyltransferase like 10 267189 1 1 1 0 1 0 0 0 0 0 0.25 0.99 -4298 TNS1 tensin 1 2666820 4 4 4 0 1 1 1 0 1 0 0.25 0.99 -4299 SMCHD1 structural maintenance of chromosomes flexible hinge domain containing 1 2512185 4 4 4 1 3 1 0 0 0 0 0.25 0.99 -4300 EFHC2 EF-hand domain (C-terminal) containing 2 990678 2 2 2 0 1 0 1 0 0 0 0.25 0.99 -4301 PLAC1L placenta-specific 1-like 249951 1 1 1 1 0 1 0 0 0 0 0.25 0.99 -4302 STK40 serine/threonine kinase 40 677859 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4303 TFCP2 transcription factor CP2 795483 1 1 1 0 0 0 0 0 1 0 0.25 0.99 -4304 GOLPH3 golgi phosphoprotein 3 (coat-protein) 346788 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4305 ZNF181 zinc finger protein 181 808158 2 2 2 0 1 0 1 0 0 0 0.25 0.99 -4306 WDR52 WD repeat domain 52 1535703 3 3 3 0 1 1 1 0 0 0 0.25 0.99 -4307 CDH2 cadherin 2, type 1, N-cadherin (neuronal) 480129 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4308 C20orf160 chromosome 20 open reading frame 160 393432 1 1 1 0 1 0 0 0 0 0 0.25 0.99 -4309 RASIP1 Ras interacting protein 1 695097 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4310 ARCN1 archain 1 795483 1 1 1 1 0 0 0 0 1 0 0.25 0.99 -4311 GMIP GEM interacting protein 885222 2 2 2 0 1 1 0 0 0 0 0.25 0.99 -4312 VSIG10 799032 1 1 1 0 0 0 0 0 1 0 0.25 0.99 -4313 ENPP3 ectonucleotide pyrophosphatase/phosphodiesterase 3 1374984 2 2 2 1 0 0 1 1 0 0 0.25 0.99 -4314 ATP1A1 ATPase, Na+/K+ transporting, alpha 1 polypeptide 1596036 3 3 3 0 2 1 0 0 0 0 0.25 0.99 -4315 GUCY1A2 guanylate cyclase 1, soluble, alpha 2 975468 2 2 2 0 0 2 0 0 0 0 0.25 0.99 -4316 SFMBT2 Scm-like with four mbt domains 2 1265979 2 2 2 1 0 0 0 2 0 0 0.25 0.99 -4317 LRRC4B leucine rich repeat containing 4B 442104 1 1 1 1 1 0 0 0 0 0 0.25 0.99 -4318 CDH8 cadherin 8, type 2 1239108 2 2 2 1 0 0 0 2 0 0 0.25 0.99 -4319 HIATL1 hippocampus abundant transcript-like 1 738699 1 1 1 0 0 0 0 1 0 0 0.25 0.99 -4320 MTUS2 1928628 3 3 3 3 1 2 0 0 0 0 0.25 0.99 -4321 DNAJB7 DnaJ (Hsp40) homolog, subfamily B, member 7 473538 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4322 MAP3K12 mitogen-activated protein kinase kinase kinase 12 1336452 2 2 2 0 0 0 0 0 2 0 0.25 0.99 -4323 DNAJC14 DnaJ (Hsp40) homolog, subfamily C, member 14 1081431 2 2 2 1 0 1 1 0 0 0 0.25 0.99 -4324 GALNTL5 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 5 691548 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4325 MAGEC2 melanoma antigen family C, 2 570882 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4326 B3GALT5 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 5 475059 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4327 BRS3 bombesin-like receptor 3 614484 1 1 1 1 0 1 0 0 0 0 0.25 0.99 -4328 COL4A1 collagen, type IV, alpha 1 2520804 4 4 4 2 2 1 0 0 1 0 0.25 0.99 -4329 RPS6KA4 ribosomal protein S6 kinase, 90kDa, polypeptide 4 510042 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4330 SPATA9 spermatogenesis associated 9 397995 1 1 1 0 1 0 0 0 0 0 0.25 0.99 -4331 SH3BP4 SH3-domain binding protein 4 1376505 2 2 2 1 1 0 0 0 1 0 0.25 0.99 -4332 ARID2 AT rich interactive domain 2 (ARID, RFX-like) 2736786 3 3 3 0 0 1 0 0 2 0 0.25 0.99 -4333 RPS6KA3 ribosomal protein S6 kinase, 90kDa, polypeptide 3 1134666 2 2 2 0 1 0 1 0 0 0 0.25 0.99 -4334 CYP1B1 cytochrome P450, family 1, subfamily B, polypeptide 1 299637 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4335 RGS9 regulator of G-protein signaling 9 1093092 2 2 2 0 1 1 0 0 0 0 0.25 0.99 -4336 ATP11A ATPase, class VI, type 11A 1835847 3 3 3 0 0 2 0 0 1 0 0.25 0.99 -4337 TLE3 transducin-like enhancer of split 3 (E(sp1) homolog, Drosophila) 963300 2 2 2 0 0 0 0 2 0 0 0.25 0.99 -4338 PDHB pyruvate dehydrogenase (lipoamide) beta 515112 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4339 STRN4 striatin, calmodulin binding protein 4 952653 2 2 2 1 0 1 0 0 1 0 0.25 0.99 -4340 C1orf129 chromosome 1 open reading frame 129 901446 1 1 1 1 0 0 0 0 1 0 0.25 0.99 -4341 AGPHD1 576966 1 1 1 0 0 0 0 1 0 0 0.25 0.99 -4342 RABGGTA Rab geranylgeranyltransferase, alpha subunit 884208 2 2 2 0 1 0 1 0 0 0 0.25 0.99 -4343 TRPC5 transient receptor potential cation channel, subfamily C, member 5 1501734 3 3 3 2 1 2 0 0 0 0 0.25 0.99 -4344 BCL6B B-cell CLL/lymphoma 6, member B (zinc finger protein) 667212 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4345 PTPN18 protein tyrosine phosphatase, non-receptor type 18 (brain-derived) 543504 1 1 1 0 0 0 0 0 1 0 0.25 0.99 -4346 MTPAP 903474 1 1 1 0 0 0 0 0 1 0 0.25 0.99 -4347 SCAMP3 secretory carrier membrane protein 3 547560 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4348 OR1I1 olfactory receptor, family 1, subfamily I, member 1 543504 1 1 1 0 1 0 0 0 0 0 0.25 0.99 -4349 PNMAL1 PNMA-like 1 684450 1 1 1 0 0 0 0 0 1 0 0.25 0.99 -4350 SIN3B SIN3 homolog B, transcription regulator (yeast) 1377519 2 2 2 1 0 1 0 0 1 0 0.25 0.99 -4351 MGAT3 mannosyl (beta-1,4-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase 505479 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4352 SIT1 signaling threshold regulating transmembrane adaptor 1 265161 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4353 TICAM1 toll-like receptor adaptor molecule 1 948597 2 2 2 0 0 0 1 0 1 0 0.25 0.99 -4354 C3orf35 chromosome 3 open reading frame 35 281385 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4355 FERMT3 fermitin family homolog 3 (Drosophila) 819819 2 2 2 1 1 1 0 0 0 0 0.25 0.99 -4356 CASP1 caspase 1, apoptosis-related cysteine peptidase (interleukin 1, beta, convertase) 634257 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4357 CDCP1 CUB domain containing protein 1 1251783 3 2 3 1 1 0 0 0 0 2 0.25 0.99 -4358 LRRC14B 328029 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4359 NEK9 NIMA (never in mitosis gene a)- related kinase 9 1422135 2 2 2 2 1 0 0 0 1 0 0.25 0.99 -4360 LRP5L low density lipoprotein receptor-related protein 5-like 392925 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4361 ITPKC inositol 1,4,5-trisphosphate 3-kinase C 862407 2 2 2 1 0 0 1 1 0 0 0.25 0.99 -4362 ASB18 ankyrin repeat and SOCS box-containing 18 322452 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4363 KCND2 potassium voltage-gated channel, Shal-related subfamily, member 2 971919 2 2 2 1 1 1 0 0 0 0 0.25 0.99 -4364 ZNF786 zinc finger protein 786 848211 2 2 2 1 1 0 0 1 0 0 0.25 0.99 -4365 MAN2A1 mannosidase, alpha, class 2A, member 1 1715688 3 3 3 1 1 0 2 0 0 0 0.25 0.99 -4366 RNASE9 ribonuclease, RNase A family, 9 (non-active) 322452 1 1 1 0 0 0 0 0 1 0 0.25 0.99 -4367 IDH1 isocitrate dehydrogenase 1 (NADP+), soluble 647439 1 1 1 0 0 0 1 0 0 0 0.25 0.99 -4368 IKBKB inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase beta 1101204 2 2 2 0 0 2 0 0 0 0 0.25 0.99 -4369 LDLRAD3 low density lipoprotein receptor class A domain containing 3 513084 1 1 1 0 0 1 0 0 0 0 0.25 0.99 -4370 HEATR1 HEAT repeat containing 1 3351777 5 5 5 0 1 0 2 1 1 0 0.25 0.99 -4371 RBM34 RNA binding motif protein 34 688506 1 1 1 0 0 0 0 0 1 0 0.25 1.00 -4372 ZNF71 zinc finger protein 71 747318 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4373 POTEE 1300962 2 2 2 0 1 1 0 0 0 0 0.25 1.00 -4374 FIP1L1 FIP1 like 1 (S. cerevisiae) 912093 1 1 1 0 0 0 0 0 1 0 0.25 1.00 -4375 POLH polymerase (DNA directed), eta 1106274 2 2 2 1 0 0 1 0 1 0 0.25 1.00 -4376 CLIC2 chloride intracellular channel 2 389376 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4377 C9orf98 chromosome 9 open reading frame 98 599274 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4378 SLC39A13 solute carrier family 39 (zinc transporter), member 13 549588 1 1 1 2 0 0 0 1 0 0 0.25 1.00 -4379 KCNG1 potassium voltage-gated channel, subfamily G, member 1 565812 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4380 DYNC1I1 dynein, cytoplasmic 1, intermediate chain 1 1015014 2 2 2 0 1 1 0 0 0 0 0.25 1.00 -4381 C18orf34 chromosome 18 open reading frame 34 1349127 2 2 2 0 0 1 1 0 0 0 0.25 1.00 -4382 VIPAR 789906 1 1 1 0 0 0 0 0 1 0 0.25 1.00 -4383 FAM114A1 family with sequence similarity 114, member A1 884208 2 2 2 0 0 2 0 0 0 0 0.25 1.00 -4384 IGF1 insulin-like growth factor 1 (somatomedin C) 348309 1 1 1 0 0 0 1 0 0 0 0.25 1.00 -4385 MGAT5 mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase 1161030 2 2 2 0 0 1 0 0 1 0 0.25 1.00 -4386 FAM71C family with sequence similarity 71, member C 372138 1 1 1 0 1 0 0 0 0 0 0.25 1.00 -4387 B3GAT3 beta-1,3-glucuronyltransferase 3 (glucuronosyltransferase I) 521196 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4388 LRWD1 leucine-rich repeats and WD repeat domain containing 1 571896 1 1 1 1 0 1 0 0 0 0 0.25 1.00 -4389 SERPIND1 serpin peptidase inhibitor, clade D (heparin cofactor), member 1 768612 1 1 1 0 0 0 0 1 0 0 0.25 1.00 -4390 USP13 ubiquitin specific peptidase 13 (isopeptidase T-3) 1269528 2 2 2 0 0 0 1 0 1 0 0.25 1.00 -4391 NME6 non-metastatic cells 6, protein expressed in (nucleoside-diphosphate kinase) 298116 1 1 1 0 0 0 1 0 0 0 0.25 1.00 -4392 KLRC3 killer cell lectin-like receptor subfamily C, member 3 327522 1 1 1 0 0 0 1 0 0 0 0.25 1.00 -4393 BTN2A1 butyrophilin, subfamily 2, member A1 830973 2 2 2 0 0 1 0 1 0 0 0.25 1.00 -4394 PTGFR prostaglandin F receptor (FP) 589641 1 1 1 0 0 0 1 0 0 0 0.25 1.00 -4395 NPAT nuclear protein, ataxia-telangiectasia locus 2208492 5 4 5 0 1 1 1 1 1 0 0.25 1.00 -4396 SH3PXD2B SH3 and PX domains 2B 1372956 2 2 2 0 0 1 1 0 0 0 0.25 1.00 -4397 SNX8 sorting nexin 8 445653 1 1 1 1 0 0 1 0 0 0 0.25 1.00 -4398 SLC7A4 solute carrier family 7 (cationic amino acid transporter, y+ system), member 4 692562 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4399 LIPE lipase, hormone-sensitive 1471314 2 2 2 0 0 1 0 1 0 0 0.25 1.00 -4400 KRT72 keratin 72 656565 1 1 1 1 0 1 0 0 0 0 0.25 1.00 -4401 KRT14 keratin 14 (epidermolysis bullosa simplex, Dowling-Meara, Koebner) 576459 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4402 OR5T2 olfactory receptor, family 5, subfamily T, member 2 549588 1 1 1 1 0 1 0 0 0 0 0.25 1.00 -4403 MTMR14 myotubularin related protein 14 929838 1 1 1 0 0 0 0 0 1 0 0.25 1.00 -4404 MAGEB6 melanoma antigen family B, 6 622596 1 1 1 0 0 0 0 1 0 0 0.25 1.00 -4405 DUSP26 dual specificity phosphatase 26 (putative) 328536 1 1 1 0 0 0 1 0 0 0 0.25 1.00 -4406 CILP cartilage intermediate layer protein, nucleotide pyrophosphohydrolase 1818609 3 3 3 0 1 1 1 0 0 0 0.25 1.00 -4407 GBP2 guanylate binding protein 2, interferon-inducible 920712 1 1 1 0 0 0 0 0 1 0 0.25 1.00 -4408 DYDC1 DPY30 domain containing 1 282906 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4409 RBBP5 retinoblastoma binding protein 5 803595 1 1 1 0 0 0 0 0 1 0 0.25 1.00 -4410 SDCBP2 syndecan binding protein (syntenin) 2 284427 1 1 1 0 0 0 1 0 0 0 0.25 1.00 -4411 CELA1 366054 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4412 TMEM189 transmembrane protein 189 360984 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4413 CD300A CD300a molecule 447681 1 1 1 0 0 1 0 0 0 0 0.25 1.00 -4414 AHCTF1 AT hook containing transcription factor 1 3522636 5 5 5 0 1 0 1 1 2 0 0.25 1.00 -4415 TBC1D25 TBC1 domain family, member 25 995748 2 2 2 0 0 0 1 1 0 0 0.26 1.00 -4416 DNHD1 dynein heavy chain domain 1 2387970 4 4 4 3 2 2 0 0 0 0 0.26 1.00 -4417 OR5M11 olfactory receptor, family 5, subfamily M, member 11 467454 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4418 EFNB1 ephrin-B1 471003 1 1 1 1 0 1 0 0 0 0 0.26 1.00 -4419 RELA v-rel reticuloendotheliosis viral oncogene homolog A, nuclear factor of kappa light polypeptide gene enhancer in B-cells 3, p65 (avian) 777231 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4420 CAV1 caveolin 1, caveolae protein, 22kDa 278343 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4421 PNKP polynucleotide kinase 3'-phosphatase 684450 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4422 REP15 362505 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4423 HEPACAM2 746304 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4424 KLHL15 kelch-like 15 (Drosophila) 924261 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4425 PPARG peroxisome proliferator-activated receptor gamma 783822 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4426 C20orf185 chromosome 20 open reading frame 185 751374 1 1 1 2 0 0 1 0 0 0 0.26 1.00 -4427 IL22 interleukin 22 283920 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4428 ITGB5 integrin, beta 5 1209702 2 2 2 2 0 0 1 1 0 0 0.26 1.00 -4429 GPR172A G protein-coupled receptor 172A 643383 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4430 QRICH2 glutamine rich 2 2388477 4 4 4 0 1 2 0 1 0 0 0.26 1.00 -4431 LRCH1 leucine-rich repeats and calponin homology (CH) domain containing 1 989664 2 2 2 0 0 1 0 1 0 0 0.26 1.00 -4432 ZNF563 zinc finger protein 563 733629 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4433 SLC20A1 solute carrier family 20 (phosphate transporter), member 1 1054560 2 2 2 0 1 0 1 0 0 0 0.26 1.00 -4434 SLC9A7 solute carrier family 9 (sodium/hydrogen exchanger), member 7 1041378 2 2 2 0 1 1 0 0 0 0 0.26 1.00 -4435 ATP13A1 ATPase type 13A1 879645 2 2 2 1 1 0 0 0 1 0 0.26 1.00 -4436 PRG2 proteoglycan 2, bone marrow (natural killer cell activator, eosinophil granule major basic protein) 310791 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4437 RAB2B RAB2B, member RAS oncogene family 346281 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4438 CLEC17A 465426 1 1 1 1 1 0 0 0 0 0 0.26 1.00 -4439 NTNG2 netrin G2 614484 1 1 1 3 0 1 0 0 0 0 0.26 1.00 -4440 ZNF239 zinc finger protein 239 700167 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4441 ATP12A ATPase, H+/K+ transporting, nongastric, alpha polypeptide 1631019 3 3 3 1 1 2 0 0 0 0 0.26 1.00 -4442 MORC1 MORC family CW-type zinc finger 1 1519986 3 3 3 0 1 0 2 0 0 0 0.26 1.00 -4443 TREML1 triggering receptor expressed on myeloid cells-like 1 486720 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4444 STAC2 SH3 and cysteine rich domain 2 401544 1 1 1 1 0 0 1 0 0 0 0.26 1.00 -4445 RG9MTD2 RNA (guanine-9-) methyltransferase domain containing 2 531336 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4446 FMN1 formin 1 1804920 3 3 3 1 1 1 1 0 0 0 0.26 1.00 -4447 NOSTRIN nitric oxide synthase trafficker 817284 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4448 CTSA cathepsin A 735150 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4449 CDO1 cysteine dioxygenase, type I 315861 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4450 PIK3R4 phosphoinositide-3-kinase, regulatory subunit 4 2105571 3 3 3 0 0 0 1 1 1 0 0.26 1.00 -4451 PDK4 pyruvate dehydrogenase kinase, isozyme 4 609414 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4452 MMAA methylmalonic aciduria (cobalamin deficiency) cblA type 649467 1 1 1 0 0 0 0 1 0 0 0.26 1.00 -4453 VCAN versican 5195229 7 7 7 0 0 0 2 2 3 0 0.26 1.00 -4454 TRIM24 tripartite motif-containing 24 1464723 2 2 2 1 0 0 1 0 1 0 0.26 1.00 -4455 MID2 midline 2 1135680 2 2 2 0 0 0 1 0 1 0 0.26 1.00 -4456 KCNU1 potassium channel, subfamily U, member 1 1803399 3 3 3 1 1 1 1 0 0 0 0.26 1.00 -4457 NUDT17 nudix (nucleoside diphosphate linked moiety X)-type motif 17 339183 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4458 IL2RG interleukin 2 receptor, gamma (severe combined immunodeficiency) 578994 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4459 MKL1 megakaryoblastic leukemia (translocation) 1 835029 1 1 1 1 0 0 0 0 1 0 0.26 1.00 -4460 TPCN1 two pore segment channel 1 1252290 2 2 2 0 0 2 0 0 0 0 0.26 1.00 -4461 EPHA1 EPH receptor A1 1436838 2 2 2 0 1 0 1 0 0 0 0.26 1.00 -4462 CPXCR1 CPX chromosome region, candidate 1 461370 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4463 MCF2L2 MCF.2 cell line derived transforming sequence-like 2 1651806 3 3 3 0 1 1 1 0 0 0 0.26 1.00 -4464 CACNA1A calcium channel, voltage-dependent, P/Q type, alpha 1A subunit 3037944 5 5 5 3 2 3 0 0 0 0 0.26 1.00 -4465 SLC17A8 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 8 921726 2 2 2 0 0 1 0 0 1 0 0.26 1.00 -4466 TAF4B TAF4b RNA polymerase II, TATA box binding protein (TBP)-associated factor, 105kDa 1225926 2 2 2 0 1 0 1 0 0 0 0.26 1.00 -4467 PDGFRA platelet-derived growth factor receptor, alpha polypeptide 1702506 3 3 3 1 2 0 1 0 0 0 0.26 1.00 -4468 IRF2BP1 interferon regulatory factor 2 binding protein 1 277329 1 1 1 1 0 1 0 0 0 0 0.26 1.00 -4469 DCHS2 dachsous 2 (Drosophila) 4366791 6 6 6 0 2 2 1 0 1 0 0.26 1.00 -4470 UBE2J2 ubiquitin-conjugating enzyme E2, J2 (UBC6 homolog, yeast) 359970 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4471 DIP2C DIP2 disco-interacting protein 2 homolog C (Drosophila) 2080728 3 3 3 0 1 0 0 0 2 0 0.26 1.00 -4472 XRCC6 X-ray repair complementing defective repair in Chinese hamster cells 6 (Ku autoantigen, 70kDa) 952146 2 2 2 0 0 0 1 1 0 0 0.26 1.00 -4473 TM4SF1 transmembrane 4 L six family member 1 318903 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4474 AKTIP AKT interacting protein 463905 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4475 COL1A2 collagen, type I, alpha 2 2013297 3 3 3 1 0 1 2 0 0 0 0.26 1.00 -4476 CARM1 coactivator-associated arginine methyltransferase 1 799032 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4477 ZNF713 zinc finger protein 713 663663 1 1 1 0 0 0 0 1 0 0 0.26 1.00 -4478 FHDC1 FH2 domain containing 1 1447992 2 2 2 1 0 0 0 1 1 0 0.26 1.00 -4479 DDX5 DEAD (Asp-Glu-Ala-Asp) box polypeptide 5 937443 1 1 1 1 0 0 0 0 1 0 0.26 1.00 -4480 MESDC2 mesoderm development candidate 2 323973 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4481 GFRA3 GDNF family receptor alpha 3 566319 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4482 SHPK sedoheptulokinase 671775 1 1 1 1 0 0 0 1 0 0 0.26 1.00 -4483 XRRA1 X-ray radiation resistance associated 1 1182324 2 2 2 1 0 1 1 0 0 0 0.26 1.00 -4484 OR4D2 olfactory receptor, family 4, subfamily D, member 2 470496 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4485 SLC13A3 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 3 844662 2 2 2 0 1 1 0 0 0 0 0.26 1.00 -4486 ANUBL1 AN1, ubiquitin-like, homolog (Xenopus laevis) 1125540 2 2 2 1 0 1 0 1 0 0 0.26 1.00 -4487 BHMT2 betaine-homocysteine methyltransferase 2 551109 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4488 NID2 nidogen 2 (osteonidogen) 2130414 3 3 3 0 1 1 0 0 1 0 0.26 1.00 -4489 P2RY1 purinergic receptor P2Y, G-protein coupled, 1 536406 1 1 1 1 1 0 0 0 0 0 0.26 1.00 -4490 IFI44 interferon-induced protein 44 693069 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4491 ENTPD7 ectonucleoside triphosphate diphosphohydrolase 7 944541 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4492 TAS2R1 taste receptor, type 2, member 1 458328 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4493 TNFRSF10D tumor necrosis factor receptor superfamily, member 10d, decoy with truncated death domain 528801 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4494 PPP2R5B protein phosphatase 2, regulatory subunit B', beta isoform 603837 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4495 TAS2R14 taste receptor, type 2, member 14 485706 1 1 1 0 0 0 0 1 0 0 0.26 1.00 -4496 ATG7 ATG7 autophagy related 7 homolog (S. cerevisiae) 1107288 2 2 2 0 0 1 1 0 0 0 0.26 1.00 -4497 FRMD7 FERM domain containing 7 1111851 2 2 2 0 0 1 0 0 1 0 0.26 1.00 -4498 FLT4 fms-related tyrosine kinase 4 628173 1 1 1 1 0 0 1 0 0 0 0.26 1.00 -4499 CA4 carbonic anhydrase IV 460863 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4500 TPST2 tyrosylprotein sulfotransferase 2 444132 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4501 PARP10 poly (ADP-ribose) polymerase family, member 10 1146834 2 2 2 0 0 0 1 0 1 0 0.26 1.00 -4502 ZNF366 zinc finger protein 366 1121484 2 2 2 0 1 1 0 0 0 0 0.26 1.00 -4503 CNR1 cannabinoid receptor 1 (brain) 721461 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4504 ADCYAP1R1 adenylate cyclase activating polypeptide 1 (pituitary) receptor type I 743769 3 1 3 1 0 0 0 0 0 3 0.26 1.00 -4505 KIRREL kin of IRRE like (Drosophila) 978510 2 2 2 1 1 1 0 0 0 0 0.26 1.00 -4506 GRB2 growth factor receptor-bound protein 2 341718 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4507 ADRA1A adrenergic, alpha-1A-, receptor 522210 1 1 1 1 0 1 0 0 0 0 0.26 1.00 -4508 C6orf138 chromosome 6 open reading frame 138 1235559 2 2 2 1 1 0 1 0 0 0 0.26 1.00 -4509 DHPS deoxyhypusine synthase 581022 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4510 FAR1 807144 2 1 2 0 0 0 0 0 0 2 0.26 1.00 -4511 TRPM2 transient receptor potential cation channel, subfamily M, member 2 860886 2 2 2 2 2 0 0 0 0 0 0.26 1.00 -4512 GGT1 gamma-glutamyltransferase 1 763542 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4513 SLC10A6 solute carrier family 10 (sodium/bile acid cotransporter family), member 6 587106 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4514 GYG2 glycogenin 2 660114 1 1 1 0 0 0 0 1 0 0 0.26 1.00 -4515 PTX3 pentraxin-related gene, rapidly induced by IL-1 beta 381264 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4516 OR3A3 olfactory receptor, family 3, subfamily A, member 3 490776 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4517 PHC3 polyhomeotic homolog 3 (Drosophila) 1545336 3 3 3 0 0 0 1 1 1 0 0.26 1.00 -4518 VIL1 villin 1 1297920 2 2 2 0 1 1 0 0 0 0 0.26 1.00 -4519 IFNA4 interferon, alpha 4 291018 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4520 AWAT2 522210 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4521 TOX2 TOX high mobility group box family member 2 771147 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4522 TRAK2 trafficking protein, kinesin binding 2 1422135 2 2 2 1 0 0 1 0 1 0 0.26 1.00 -4523 TFPT TCF3 (E2A) fusion partner (in childhood Leukemia) 398502 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4524 ACTA2 actin, alpha 2, smooth muscle, aorta 591162 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4525 SLC6A7 solute carrier family 6 (neurotransmitter transporter, L-proline), member 7 972933 2 2 2 0 0 1 1 0 0 0 0.26 1.00 -4526 SFXN5 sideroflexin 5 413205 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4527 RAVER1 ribonucleoprotein, PTB-binding 1 662649 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4528 CASR calcium-sensing receptor (hypocalciuric hypercalcemia 1, severe neonatal hyperparathyroidism) 1668537 3 3 3 0 2 1 0 0 0 0 0.26 1.00 -4529 NFE2 nuclear factor (erythroid-derived 2), 45kDa 572910 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4530 SNX31 sorting nexin 31 663663 1 1 1 0 0 0 0 1 0 0 0.26 1.00 -4531 AFTPH aftiphilin 1444950 2 2 2 0 1 0 1 0 0 0 0.26 1.00 -4532 STEAP3 STEAP family member 3 754923 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4533 TECPR2 2084277 3 3 3 0 0 1 1 0 1 0 0.26 1.00 -4534 IFNA14 interferon, alpha 14 291018 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4535 TFIP11 tuftelin interacting protein 11 1294878 2 2 2 0 1 1 0 0 0 0 0.26 1.00 -4536 FOXP4 forkhead box P4 786357 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4537 NANP N-acetylneuraminic acid phosphatase 335127 1 1 1 0 0 0 1 0 0 0 0.26 1.00 -4538 ASB1 ankyrin repeat and SOCS box-containing 1 456807 1 1 1 1 1 0 0 0 0 0 0.26 1.00 -4539 PCDHA1 protocadherin alpha 1 1442922 2 2 2 2 0 1 1 0 0 0 0.26 1.00 -4540 DHX58 DEXH (Asp-Glu-X-His) box polypeptide 58 932880 2 2 2 0 2 0 0 0 0 0 0.26 1.00 -4541 TWISTNB TWIST neighbor 501930 1 1 1 0 0 1 0 0 0 0 0.26 1.00 -4542 PCDH12 protocadherin 12 1801371 3 3 3 0 0 2 1 0 0 0 0.26 1.00 -4543 TGM6 transglutaminase 6 1096134 2 2 2 0 1 1 0 0 0 0 0.26 1.00 -4544 COPG2 coatomer protein complex, subunit gamma 2 547560 1 1 1 2 0 0 1 0 0 0 0.26 1.00 -4545 SGEF 1230489 2 2 2 1 1 1 0 0 0 0 0.26 1.00 -4546 LOX lysyl oxidase 353379 1 1 1 0 1 0 0 0 0 0 0.26 1.00 -4547 RARA retinoic acid receptor, alpha 653016 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4548 OBSL1 obscurin-like 1 1932684 3 3 3 3 0 1 1 0 1 0 0.26 1.00 -4549 HPD 4-hydroxyphenylpyruvate dioxygenase 627666 1 1 1 2 0 0 0 0 1 0 0.26 1.00 -4550 DGAT2L6 diacylglycerol O-acyltransferase 2-like 6 528294 1 1 1 1 0 0 1 0 0 0 0.26 1.00 -4551 BARX2 BARX homeobox 2 433992 1 1 1 0 0 0 0 0 1 0 0.26 1.00 -4552 MAPK14 mitogen-activated protein kinase 14 641355 1 1 1 1 0 1 0 0 0 0 0.26 1.00 -4553 TRHDE thyrotropin-releasing hormone degrading enzyme 1384110 2 2 2 0 0 0 1 1 0 0 0.27 1.00 -4554 DHCR24 24-dehydrocholesterol reductase 750867 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4555 MTIF2 mitochondrial translational initiation factor 2 1133652 2 2 2 0 1 0 0 0 1 0 0.27 1.00 -4556 AMBP alpha-1-microglobulin/bikunin precursor 557193 1 1 1 1 0 0 1 0 0 0 0.27 1.00 -4557 RCBTB2 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 2 863928 2 2 2 1 1 0 1 0 0 0 0.27 1.00 -4558 GOLGA5 golgi autoantigen, golgin subfamily a, 5 1137708 2 2 2 0 1 0 1 0 0 0 0.27 1.00 -4559 XKR9 XK, Kell blood group complex subunit-related family, member 9 574938 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4560 TM2D1 TM2 domain containing 1 290004 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4561 TCN1 transcobalamin I (vitamin B12 binding protein, R binder family) 678366 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4562 HSPA12A heat shock 70kDa protein 12A 919698 2 2 2 0 1 1 0 0 0 0 0.27 1.00 -4563 KIAA1024 KIAA1024 1400841 2 2 2 1 1 0 1 0 0 0 0.27 1.00 -4564 SGCD sarcoglycan, delta (35kDa dystrophin-associated glycoprotein) 494832 1 1 1 1 1 0 0 0 0 0 0.27 1.00 -4565 RBBP6 retinoblastoma binding protein 6 2766699 4 4 4 0 0 0 2 2 0 0 0.27 1.00 -4566 GSTA1 glutathione S-transferase A1 351351 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4567 KIAA1257 KIAA1257 614991 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4568 TAS2R13 taste receptor, type 2, member 13 464412 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4569 C20orf70 chromosome 20 open reading frame 70 394446 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4570 ITM2A integral membrane protein 2A 355407 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4571 PLD3 phospholipase D family, member 3 658086 1 1 1 1 0 1 0 0 0 0 0.27 1.00 -4572 TCF21 transcription factor 21 277836 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4573 DPYSL4 dihydropyrimidinase-like 4 507507 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4574 NPFFR2 neuropeptide FF receptor 2 680394 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4575 ACSL6 acyl-CoA synthetase long-chain family member 6 1156974 2 2 2 0 1 1 0 0 0 0 0.27 1.00 -4576 STIP1 stress-induced-phosphoprotein 1 (Hsp70/Hsp90-organizing protein) 849225 2 2 2 0 1 0 0 1 0 0 0.27 1.00 -4577 BAI3 brain-specific angiogenesis inhibitor 3 2377323 3 3 3 1 0 1 1 0 1 0 0.27 1.00 -4578 IL22RA2 interleukin 22 receptor, alpha 2 413712 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4579 MAST4 microtubule associated serine/threonine kinase family member 4 3298542 5 5 5 0 0 3 0 2 0 0 0.27 1.00 -4580 OMD osteomodulin 645918 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4581 MYO18B myosin XVIIIB 3110445 5 5 5 2 3 2 0 0 0 0 0.27 1.00 -4582 RAG1 recombination activating gene 1 1589952 3 3 3 0 0 2 1 0 0 0 0.27 1.00 -4583 SCD5 stearoyl-CoA desaturase 5 498381 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4584 CPVL carboxypeptidase, vitellogenic-like 749853 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4585 OR6M1 olfactory receptor, family 6, subfamily M, member 1 479622 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4586 RENBP renin binding protein 503451 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4587 GOT2 glutamic-oxaloacetic transaminase 2, mitochondrial (aspartate aminotransferase 2) 628680 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4588 CDHR3 1385631 2 2 2 0 0 0 0 1 1 0 0.27 1.00 -4589 RPS2 ribosomal protein S2 267189 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4590 WDR46 WD repeat domain 46 939978 2 2 2 1 0 1 1 0 0 0 0.27 1.00 -4591 SLC35A1 solute carrier family 35 (CMP-sialic acid transporter), member A1 520182 1 1 1 1 0 0 1 0 0 0 0.27 1.00 -4592 RNF128 ring finger protein 128 723489 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4593 BPI bactericidal/permeability-increasing protein 772668 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4594 CYP26A1 cytochrome P450, family 26, subfamily A, polypeptide 1 618033 1 1 1 0 0 0 0 1 0 0 0.27 1.00 -4595 CELA3A 417261 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4596 GALNTL1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 1 788892 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4597 FKBP8 FK506 binding protein 8, 38kDa 571389 1 1 1 1 0 0 1 0 0 0 0.27 1.00 -4598 KIAA1539 KIAA1539 782301 1 1 1 0 0 0 0 1 0 0 0.27 1.00 -4599 CPT1C carnitine palmitoyltransferase 1C 1133145 2 2 2 0 2 0 0 0 0 0 0.27 1.00 -4600 BAZ1A bromodomain adjacent to zinc finger domain, 1A 2361606 4 4 4 0 1 1 2 0 0 0 0.27 1.00 -4601 FAM149A family with sequence similarity 149, member A 756951 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4602 RASGRP4 RAS guanyl releasing protein 4 793962 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4603 SAT2 spermidine/spermine N1-acetyltransferase family member 2 272259 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4604 PWWP2A PWWP domain containing 2A 685971 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4605 APOF apolipoprotein F 501423 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4606 AKR1C3 aldo-keto reductase family 1, member C3 (3-alpha hydroxysteroid dehydrogenase, type II) 511056 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4607 RGS22 regulator of G-protein signaling 22 1964118 3 3 3 1 1 0 1 0 1 0 0.27 1.00 -4608 SPATA22 spermatogenesis associated 22 566826 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4609 PAX2 paired box 2 709293 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4610 FBF1 Fas (TNFRSF6) binding factor 1 527280 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4611 FBXW12 F-box and WD repeat domain containing 12 727545 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4612 WNT10B wingless-type MMTV integration site family, member 10B 551616 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4613 POTEG 676338 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4614 LONP2 lon peptidase 2, peroxisomal 1207674 2 2 2 0 0 1 1 0 0 0 0.27 1.00 -4615 PTPLAD2 protein tyrosine phosphatase-like A domain containing 2 347295 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4616 MAPKAP1 mitogen-activated protein kinase associated protein 1 826917 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4617 PDHX pyruvate dehydrogenase complex, component X 702702 1 1 1 0 0 0 0 1 0 0 0.27 1.00 -4618 ITGA1 integrin, alpha 1 1820637 3 3 3 1 0 2 1 0 0 0 0.27 1.00 -4619 MRGPRD MAS-related GPR, member D 475566 1 1 1 1 0 1 0 0 0 0 0.27 1.00 -4620 ST3GAL4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 512070 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4621 CRYM crystallin, mu 407121 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4622 VWF von Willebrand factor 4189341 6 6 5 2 0 4 2 0 0 0 0.27 1.00 -4623 CALCRL calcitonin receptor-like 727038 1 1 1 0 0 0 0 1 0 0 0.27 1.00 -4624 C1QTNF6 C1q and tumor necrosis factor related protein 6 331578 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4625 DOK3 docking protein 3 516633 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4626 GALT galactose-1-phosphate uridylyltransferase 600288 1 1 1 0 0 0 0 1 0 0 0.27 1.00 -4627 OPCML opioid binding protein/cell adhesion molecule-like 573417 1 1 1 0 0 0 0 1 0 0 0.27 1.00 -4628 OR10C1 olfactory receptor, family 10, subfamily C, member 1 478101 1 1 1 1 0 1 0 0 0 0 0.27 1.00 -4629 ARFGAP3 ADP-ribosylation factor GTPase activating protein 3 757458 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4630 MAGEB2 melanoma antigen family B, 2 488748 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4631 ZC3H12A zinc finger CCCH-type containing 12A 865449 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4632 DCAF8L1 916149 2 2 2 0 1 1 0 0 0 0 0.27 1.00 -4633 PPARA peroxisome proliferator-activated receptor alpha 723996 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4634 DNMBP dynamin binding protein 2432586 4 4 4 1 1 2 1 0 0 0 0.27 1.00 -4635 AP1B1 adaptor-related protein complex 1, beta 1 subunit 1274091 2 2 2 1 1 0 1 0 0 0 0.27 1.00 -4636 TMPRSS6 transmembrane protease, serine 6 636792 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4637 RIMS3 regulating synaptic membrane exocytosis 3 482157 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4638 C14orf102 chromosome 14 open reading frame 102 1780077 3 3 3 1 1 1 1 0 0 0 0.27 1.00 -4639 POGZ pogo transposable element with ZNF domain 2189733 3 3 3 0 0 0 2 1 0 0 0.27 1.00 -4640 C10orf2 chromosome 10 open reading frame 2 1059630 2 2 2 1 0 2 0 0 0 0 0.27 1.00 -4641 TMCO7 transmembrane and coiled-coil domains 7 1360281 2 2 2 0 0 0 0 0 2 0 0.27 1.00 -4642 PLEK2 pleckstrin 2 533364 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4643 ZNF587 zinc finger protein 587 863421 2 2 2 0 1 0 1 0 0 0 0.27 1.00 -4644 CECR5 cat eye syndrome chromosome region, candidate 5 615498 1 1 1 1 0 0 1 0 0 0 0.27 1.00 -4645 IFT74 intraflagellar transport 74 homolog (Chlamydomonas) 987636 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4646 SEPT12 septin 12 472017 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4647 IRGC immunity-related GTPase family, cinema 652002 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4648 HSD17B1 hydroxysteroid (17-beta) dehydrogenase 1 363519 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4649 SPATA13 spermatogenesis associated 13 1066221 2 2 2 0 0 1 1 0 0 0 0.27 1.00 -4650 TAF1B TATA box binding protein (TBP)-associated factor, RNA polymerase I, B, 63kDa 915135 2 2 2 0 0 2 0 0 0 0 0.27 1.00 -4651 SGCA sarcoglycan, alpha (50kDa dystrophin-associated glycoprotein) 512577 1 1 1 1 0 1 0 0 0 0 0.27 1.00 -4652 C10orf18 chromosome 10 open reading frame 18 3734055 6 6 6 0 1 0 3 0 2 0 0.27 1.00 -4653 SLC23A1 solute carrier family 23 (nucleobase transporters), member 1 883701 2 2 2 0 0 1 1 0 0 0 0.27 1.00 -4654 ESD esterase D/formylglutathione hydrolase 446667 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4655 SPNS1 spinster homolog 1 (Drosophila) 775203 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4656 NSMAF neutral sphingomyelinase (N-SMase) activation associated factor 1427205 2 2 1 0 0 0 2 0 0 0 0.27 1.00 -4657 WFS1 Wolfram syndrome 1 (wolframin) 672282 1 1 1 2 0 1 0 0 0 0 0.27 1.00 -4658 GLYATL2 glycine-N-acyltransferase-like 2 458835 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4659 ZNF699 zinc finger protein 699 988143 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4660 ACOX1 acyl-Coenzyme A oxidase 1, palmitoyl 1093092 2 2 2 0 0 0 1 1 0 0 0.27 1.00 -4661 HOXD3 homeobox D3 560235 1 1 1 2 0 0 1 0 0 0 0.27 1.00 -4662 OR5D16 olfactory receptor, family 5, subfamily D, member 16 502437 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4663 FRRS1 ferric-chelate reductase 1 984087 2 2 2 1 1 0 0 0 1 0 0.27 1.00 -4664 NKD1 naked cuticle homolog 1 (Drosophila) 466440 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4665 COMMD4 COMM domain containing 4 316875 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4666 TNFAIP8L2 tumor necrosis factor, alpha-induced protein 8-like 2 283413 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4667 SEPHS1 selenophosphate synthetase 1 613977 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4668 ITIH4 inter-alpha (globulin) inhibitor H4 (plasma Kallikrein-sensitive glycoprotein) 1414023 2 2 2 0 0 1 0 0 1 0 0.27 1.00 -4669 RPRD1B 511563 1 1 1 0 1 0 0 0 0 0 0.27 1.00 -4670 PRKCSH protein kinase C substrate 80K-H 742248 1 1 1 0 0 0 0 0 1 0 0.27 1.00 -4671 LBR lamin B receptor 963300 2 2 2 1 1 1 0 0 0 0 0.27 1.00 -4672 OR51D1 olfactory receptor, family 51, subfamily D, member 1 496353 1 1 1 1 0 1 0 0 0 0 0.27 1.00 -4673 PLCE1 phospholipase C, epsilon 1 3710733 5 5 5 1 1 2 0 0 2 0 0.27 1.00 -4674 INADL InaD-like (Drosophila) 2826018 5 4 5 0 1 0 2 0 2 0 0.27 1.00 -4675 ARR3 arrestin 3, retinal (X-arrestin) 615498 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4676 COG5 component of oligomeric golgi complex 5 1320228 2 2 2 0 1 0 1 0 0 0 0.27 1.00 -4677 SUN5 514098 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4678 LZIC leucine zipper and CTNNBIP1 domain containing 302679 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4679 RBM12B RNA binding motif protein 12B 1526070 2 2 2 0 0 0 1 0 1 0 0.27 1.00 -4680 ADPRHL2 ADP-ribosylhydrolase like 2 456807 1 1 1 0 0 1 0 0 0 0 0.27 1.00 -4681 RET ret proto-oncogene 1485510 2 2 2 0 1 0 1 0 0 0 0.27 1.00 -4682 CERCAM cerebral endothelial cell adhesion molecule 798525 1 1 1 1 0 1 0 0 0 0 0.27 1.00 -4683 GPR64 G protein-coupled receptor 64 1603134 3 3 3 1 1 2 0 0 0 0 0.27 1.00 -4684 MYO6 myosin VI 2024958 3 3 3 0 0 0 1 1 1 0 0.27 1.00 -4685 HAS1 hyaluronan synthase 1 513084 1 1 1 0 0 0 1 0 0 0 0.27 1.00 -4686 ADAMTS19 ADAM metallopeptidase with thrombospondin type 1 motif, 19 1617330 3 3 3 0 1 1 1 0 0 0 0.27 1.00 -4687 CLEC1A C-type lectin domain family 1, member A 439569 1 1 1 0 0 0 0 1 0 0 0.27 1.00 -4688 KIAA1804 1187394 2 2 2 2 0 1 1 0 0 0 0.27 1.00 -4689 MYO16 myosin XVI 2366169 4 4 4 0 0 3 0 0 1 0 0.28 1.00 -4690 SHROOM4 shroom family member 4 2261727 3 3 3 3 0 0 1 0 2 0 0.28 1.00 -4691 DCAF12 667212 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4692 TRPC6 transient receptor potential cation channel, subfamily C, member 6 1355718 2 2 2 2 1 0 0 0 1 0 0.28 1.00 -4693 TCTN1 tectonic family member 1 816777 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4694 CPSF1 cleavage and polyadenylation specific factor 1, 160kDa 1064700 2 2 2 1 1 1 0 0 0 0 0.28 1.00 -4695 UNC45A unc-45 homolog A (C. elegans) 1305018 2 2 2 0 1 1 0 0 0 0 0.28 1.00 -4696 LAMP2 lysosomal-associated membrane protein 2 790920 1 1 1 2 0 0 0 0 1 0 0.28 1.00 -4697 SPG20 spastic paraplegia 20 (Troyer syndrome) 1030731 2 2 2 0 0 0 2 0 0 0 0.28 1.00 -4698 MARCH4 membrane-associated ring finger (C3HC4) 4 455793 1 1 1 1 0 0 0 0 1 0 0.28 1.00 -4699 FAM118B family with sequence similarity 118, member B 549588 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4700 C8orf34 chromosome 8 open reading frame 34 677352 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4701 AMIGO1 adhesion molecule with Ig-like domain 1 720954 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4702 TMC8 transmembrane channel-like 8 730080 1 1 1 1 0 1 0 0 0 0 0.28 1.00 -4703 MMP26 matrix metallopeptidase 26 410670 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4704 SLC15A4 solute carrier family 15, member 4 616512 1 1 1 0 0 0 0 0 1 0 0.28 1.00 -4705 ZNF683 zinc finger protein 683 710307 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4706 C1orf135 chromosome 1 open reading frame 135 509028 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4707 ATP2C2 ATPase, Ca++ transporting, type 2C, member 2 1438866 2 2 2 0 0 1 0 1 0 0 0.28 1.00 -4708 PGAP1 post-GPI attachment to proteins 1 1458639 2 2 2 1 0 1 1 0 0 0 0.28 1.00 -4709 ZNF283 zinc finger protein 283 978510 2 2 2 0 0 1 0 0 1 0 0.28 1.00 -4710 ARPC1A actin related protein 2/3 complex, subunit 1A, 41kDa 560742 1 1 1 2 0 0 1 0 0 0 0.28 1.00 -4711 PAK1 p21/Cdc42/Rac1-activated kinase 1 (STE20 homolog, yeast) 885729 2 2 2 0 1 0 0 1 0 0 0.28 1.00 -4712 ZNF292 zinc finger protein 292 4038762 4 4 4 0 0 0 1 0 3 0 0.28 1.00 -4713 PMF1 polyamine-modulated factor 1 323466 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4714 ERO1LB ERO1-like beta (S. cerevisiae) 690534 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4715 TAF1C TATA box binding protein (TBP)-associated factor, RNA polymerase I, C, 110kDa 475566 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4716 TIGD6 tigger transposable element derived 6 795483 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4717 F2RL2 coagulation factor II (thrombin) receptor-like 2 574431 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4718 VPS72 vacuolar protein sorting 72 homolog (S. cerevisiae) 567333 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4719 GPATCH8 G patch domain containing 8 2273895 4 4 4 1 1 1 1 1 0 0 0.28 1.00 -4720 CACNA2D2 calcium channel, voltage-dependent, alpha 2/delta subunit 2 984087 2 2 2 2 0 1 0 1 0 0 0.28 1.00 -4721 SEMA5B sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5B 1398306 2 2 2 0 1 0 1 0 0 0 0.28 1.00 -4722 MSRB3 methionine sulfoxide reductase B3 295074 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4723 TSEN54 tRNA splicing endonuclease 54 homolog (S. cerevisiae) 380250 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4724 RPL18 ribosomal protein L18 297609 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4725 GHRHR growth hormone releasing hormone receptor 576966 1 1 1 0 0 0 0 1 0 0 0.28 1.00 -4726 TRIB3 tribbles homolog 3 (Drosophila) 418782 1 1 1 2 0 0 1 0 0 0 0.28 1.00 -4727 C2orf62 chromosome 2 open reading frame 62 535899 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4728 C1orf89 chromosome 1 open reading frame 89 344253 1 1 1 0 0 0 0 0 1 0 0.28 1.00 -4729 AHCYL2 S-adenosylhomocysteine hydrolase-like 2 810186 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4730 C2orf47 chromosome 2 open reading frame 47 414726 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4731 TOR1AIP1 torsin A interacting protein 1 799032 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4732 GRM6 glutamate receptor, metabotropic 6 806130 1 1 1 2 1 0 0 0 0 0 0.28 1.00 -4733 ROPN1L ropporin 1-like 361491 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4734 HTR3A 5-hydroxytryptamine (serotonin) receptor 3A 802581 1 1 1 0 0 0 0 0 1 0 0.28 1.00 -4735 WISP3 WNT1 inducible signaling pathway protein 3 577473 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4736 IL17RE interleukin 17 receptor E 764049 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4737 MRGPRX3 MAS-related GPR, member X3 493311 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4738 C10orf46 chromosome 10 open reading frame 46 435513 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4739 TFAP2B transcription factor AP-2 beta (activating enhancer binding protein 2 beta) 662649 1 1 1 0 0 0 0 1 0 0 0.28 1.00 -4740 KCTD1 potassium channel tetramerisation domain containing 1 408135 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4741 OR2AG2 olfactory receptor, family 2, subfamily AG, member 2 484185 1 1 1 1 1 0 0 0 0 0 0.28 1.00 -4742 COQ10B coenzyme Q10 homolog B (S. cerevisiae) 318903 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4743 TSSC1 tumor suppressing subtransferable candidate 1 340197 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4744 ZFAND1 zinc finger, AN1-type domain 1 419796 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4745 GAD1 glutamate decarboxylase 1 (brain, 67kDa) 957723 2 2 2 0 1 0 1 0 0 0 0.28 1.00 -4746 HMGCS1 3-hydroxy-3-methylglutaryl-Coenzyme A synthase 1 (soluble) 810693 1 1 1 1 0 0 1 0 0 0 0.28 1.00 -4747 FUS fusion (involved in t(12;16) in malignant liposarcoma) 804609 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4748 ISLR2 immunoglobulin superfamily containing leucine-rich repeat 2 1067235 1 1 1 1 0 0 0 0 1 0 0.28 1.00 -4749 ARMC6 armadillo repeat containing 6 690534 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4750 CIITA class II, major histocompatibility complex, transactivator 1757769 3 3 3 0 1 0 2 0 0 0 0.28 1.00 -4751 RANBP3L RAN binding protein 3-like 737178 1 1 1 0 0 0 0 0 1 0 0.28 1.00 -4752 RBCK1 RanBP-type and C3HC4-type zinc finger containing 1 356928 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4753 PPFIA1 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 1 1851057 3 3 3 0 0 2 1 0 0 0 0.28 1.00 -4754 NR1H4 nuclear receptor subfamily 1, group H, member 4 737685 1 1 1 1 0 0 1 0 0 0 0.28 1.00 -4755 C21orf63 chromosome 21 open reading frame 63 605358 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4756 LRRC34 leucine rich repeat containing 34 617526 1 1 1 1 0 0 1 0 0 0 0.28 1.00 -4757 CPT1A carnitine palmitoyltransferase 1A (liver) 1223391 2 2 2 1 0 1 1 0 0 0 0.28 1.00 -4758 TATDN1 TatD DNase domain containing 1 477594 1 1 1 1 0 1 0 0 0 0 0.28 1.00 -4759 IL1RAP interleukin 1 receptor accessory protein 898911 2 2 2 0 1 0 0 1 0 0 0.28 1.00 -4760 GPR34 G protein-coupled receptor 34 583050 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4761 FAM154A family with sequence similarity 154, member A 709293 1 1 1 1 0 1 0 0 0 0 0.28 1.00 -4762 RNF138 ring finger protein 138 330564 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4763 RTDR1 rhabdoid tumor deletion region gene 1 488748 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4764 KCNH6 potassium voltage-gated channel, subfamily H (eag-related), member 6 1421628 2 2 2 0 1 0 0 0 1 0 0.28 1.00 -4765 PGAP2 497874 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4766 DPP4 dipeptidyl-peptidase 4 (CD26, adenosine deaminase complexing protein 2) 1214265 2 2 2 0 0 1 1 0 0 0 0.28 1.00 -4767 YSK4 yeast Sps1/Ste20-related kinase 4 (S. cerevisiae) 2041689 3 3 3 0 1 0 2 0 0 0 0.28 1.00 -4768 C11orf87 295074 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4769 CELF4 530322 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4770 NUDT21 nudix (nucleoside diphosphate linked moiety X)-type motif 21 357435 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4771 GPAT2 793455 1 1 1 1 0 0 0 1 0 0 0.28 1.00 -4772 ZNF765 zinc finger protein 765 803088 1 1 1 0 0 0 0 1 0 0 0.28 1.00 -4773 OSR2 odd-skipped related 2 (Drosophila) 482157 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4774 CAMSAP1 calmodulin regulated spectrin-associated protein 1 1935219 3 3 3 1 0 3 0 0 0 0 0.28 1.00 -4775 CD37 CD37 molecule 445146 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4776 PRKAR1A protein kinase, cAMP-dependent, regulatory, type I, alpha (tissue specific extinguisher 1) 601302 1 1 1 2 1 0 0 0 0 0 0.28 1.00 -4777 ATXN2 ataxin 2 1674621 3 3 3 1 0 2 1 0 0 0 0.28 1.00 -4778 HNRNPH1 665184 1 1 1 1 0 1 0 0 0 0 0.28 1.00 -4779 ZRSR2 zinc finger (CCCH type), RNA-binding motif and serine/arginine rich 2 734136 1 1 1 0 0 0 0 0 1 0 0.28 1.00 -4780 TJP3 tight junction protein 3 (zona occludens 3) 904995 2 2 2 2 1 1 0 0 0 0 0.28 1.00 -4781 MASTL microtubule associated serine/threonine kinase-like 1302483 2 2 2 0 0 1 1 0 0 0 0.28 1.00 -4782 RIN1 Ras and Rab interactor 1 704223 1 1 1 1 1 0 0 0 0 0 0.28 1.00 -4783 CHST8 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 8 512070 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4784 ZC3H18 zinc finger CCCH-type containing 18 889278 1 1 1 0 0 0 0 0 1 0 0.28 1.00 -4785 SLC10A2 solute carrier family 10 (sodium/bile acid cotransporter family), member 2 542997 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4786 ANP32E acidic (leucine-rich) nuclear phosphoprotein 32 family, member E 423345 1 1 1 2 0 1 0 0 0 0 0.28 1.00 -4787 BAK1 BCL2-antagonist/killer 1 295074 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4788 VN1R2 vomeronasal 1 receptor 2 510042 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4789 HTR2C 5-hydroxytryptamine (serotonin) receptor 2C 706251 1 1 1 0 1 0 0 0 0 0 0.28 1.00 -4790 EPB41L3 erythrocyte membrane protein band 4.1-like 3 1697436 3 3 3 1 0 0 3 0 0 0 0.28 1.00 -4791 UQCRC2 ubiquinol-cytochrome c reductase core protein II 718926 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4792 CTBS chitobiase, di-N-acetyl- 509535 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4793 DUSP10 dual specificity phosphatase 10 740727 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4794 DZIP3 DAZ interacting protein 3, zinc finger 1882491 3 3 3 1 1 1 1 0 0 0 0.28 1.00 -4795 KIF1A kinesin family member 1A 1149369 2 2 2 0 1 1 0 0 0 0 0.28 1.00 -4796 MBD4 methyl-CpG binding domain protein 4 845169 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4797 UTRN utrophin 5373186 8 8 8 0 3 0 3 0 2 0 0.28 1.00 -4798 GALNT4 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 4 (GalNAc-T4) 882687 1 1 1 0 0 0 0 0 1 0 0.28 1.00 -4799 DYRK1B dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 1B 697125 1 1 1 0 0 0 1 0 0 0 0.28 1.00 -4800 ACTR6 ARP6 actin-related protein 6 homolog (yeast) 626145 1 1 1 0 0 0 0 0 1 0 0.28 1.00 -4801 STAM2 signal transducing adaptor molecule (SH3 domain and ITAM motif) 2 821340 1 1 1 0 0 1 0 0 0 0 0.28 1.00 -4802 VCAM1 vascular cell adhesion molecule 1 1143792 2 2 2 0 1 0 0 0 1 0 0.28 1.00 -4803 C2orf78 1358760 2 2 2 0 0 1 1 0 0 0 0.28 1.00 -4804 HK3 hexokinase 3 (white cell) 1327833 2 2 2 1 0 2 0 0 0 0 0.28 1.00 -4805 MIB1 mindbomb homolog 1 (Drosophila) 1456104 2 2 2 0 0 0 1 0 1 0 0.28 1.00 -4806 MPHOSPH10 M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) 1015014 2 2 2 0 0 1 1 0 0 0 0.29 1.00 -4807 RCOR1 REST corepressor 1 576459 1 1 1 0 1 0 0 0 0 0 0.29 1.00 -4808 CXorf36 chromosome X open reading frame 36 607893 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4809 SNAP91 synaptosomal-associated protein, 91kDa homolog (mouse) 1078389 2 2 2 0 1 0 0 1 0 0 0.29 1.00 -4810 C9orf64 chromosome 9 open reading frame 64 528294 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4811 OR52L1 olfactory receptor, family 52, subfamily L, member 1 503958 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4812 C1orf38 chromosome 1 open reading frame 38 886743 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4813 TEAD2 TEA domain family member 2 662649 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4814 SLC16A2 solute carrier family 16, member 2 (monocarboxylic acid transporter 8) 695604 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4815 ZNF549 zinc finger protein 549 942513 2 2 2 0 0 1 1 0 0 0 0.29 1.00 -4816 CHCHD3 coiled-coil-helix-coiled-coil-helix domain containing 3 319917 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4817 FAM115A family with sequence similarity 115, member A 584571 1 1 1 1 0 0 1 0 0 0 0.29 1.00 -4818 OR10G9 olfactory receptor, family 10, subfamily G, member 9 476580 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4819 HUNK hormonally upregulated Neu-associated kinase 975468 2 2 2 1 0 0 2 0 0 0 0.29 1.00 -4820 PPP2R5C protein phosphatase 2, regulatory subunit B', gamma isoform 874068 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4821 AOX1 aldehyde oxidase 1 2082756 3 3 3 1 0 1 2 0 0 0 0.29 1.00 -4822 DBN1 drebrin 1 898404 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4823 HIPK1 homeodomain interacting protein kinase 1 1924065 3 3 3 0 0 0 1 2 0 0 0.29 1.00 -4824 ZFP3 zinc finger protein 3 homolog (mouse) 767091 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4825 AAAS achalasia, adrenocortical insufficiency, alacrimia (Allgrove, triple-A) 864435 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4826 C9 complement component 9 874068 1 1 1 1 0 0 0 0 1 0 0.29 1.00 -4827 ALOX12 arachidonate 12-lipoxygenase 863421 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4828 KIF12 kinesin family member 12 622089 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4829 GORAB 612963 1 1 1 1 0 1 0 0 0 0 0.29 1.00 -4830 LRFN5 leucine rich repeat and fibronectin type III domain containing 5 1103232 2 2 2 0 0 0 1 1 0 0 0.29 1.00 -4831 OR52N4 olfactory receptor, family 52, subfamily N, member 4 491790 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4832 WSB2 WD repeat and SOCS box-containing 2 625638 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4833 PDIA5 protein disulfide isomerase family A, member 5 802074 1 1 1 1 0 0 1 0 0 0 0.29 1.00 -4834 SLC22A10 solute carrier family 22, member 10 844662 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4835 AFF1 AF4/FMR2 family, member 1 1781598 3 3 3 1 0 2 0 0 1 0 0.29 1.00 -4836 COPS6 COP9 constitutive photomorphogenic homolog subunit 6 (Arabidopsis) 478608 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4837 ARHGEF7 Rho guanine nucleotide exchange factor (GEF) 7 1128582 2 2 2 0 1 0 0 0 1 0 0.29 1.00 -4838 NEIL1 nei endonuclease VIII-like 1 (E. coli) 611442 1 1 1 0 1 0 0 0 0 0 0.29 1.00 -4839 STK3 serine/threonine kinase 3 (STE20 homolog, yeast) 755430 1 1 1 1 0 1 0 0 0 0 0.29 1.00 -4840 BGN biglycan 575445 1 1 1 0 1 0 0 0 0 0 0.29 1.00 -4841 SEMA3A sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3A 1208688 2 2 2 1 0 0 2 0 0 0 0.29 1.00 -4842 ZMYM4 zinc finger, MYM-type 4 2395068 4 4 4 1 0 1 2 0 1 0 0.29 1.00 -4843 TMEM195 transmembrane protein 195 704730 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4844 SQLE squalene epoxidase 845676 1 1 1 1 0 0 0 0 1 0 0.29 1.00 -4845 MAP3K11 mitogen-activated protein kinase kinase kinase 11 859872 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4846 RHBDD2 rhomboid domain containing 2 471003 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4847 PHYH phytanoyl-CoA 2-hydroxylase 493818 1 1 1 1 0 0 1 0 0 0 0.29 1.00 -4848 ACRBP acrosin binding protein 823875 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4849 MARK1 MAP/microtubule affinity-regulating kinase 1 1219335 2 2 2 0 0 0 1 1 0 0 0.29 1.00 -4850 FAM107B family with sequence similarity 107, member B 477087 1 1 1 1 0 1 0 0 0 0 0.29 1.00 -4851 PHRF1 903474 1 1 1 2 0 0 0 0 1 0 0.29 1.00 -4852 TNFAIP6 tumor necrosis factor, alpha-induced protein 6 435006 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4853 DPP8 dipeptidyl-peptidase 8 1407939 2 2 2 0 0 0 0 1 1 0 0.29 1.00 -4854 DAPK1 death-associated protein kinase 1 2184663 3 3 3 2 1 1 0 0 1 0 0.29 1.00 -4855 NMUR1 neuromedin U receptor 1 651495 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4856 KEAP1 kelch-like ECH-associated protein 1 831480 2 1 2 0 0 0 0 0 0 2 0.29 1.00 -4857 C22orf23 chromosome 22 open reading frame 23 343746 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4858 PDP2 808158 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4859 WDR43 WD repeat domain 43 945555 2 2 2 0 0 2 0 0 0 0 0.29 1.00 -4860 TSEN34 tRNA splicing endonuclease 34 homolog (S. cerevisiae) 415740 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4861 CCT8L2 chaperonin containing TCP1, subunit 8 (theta)-like 2 828438 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4862 PPA1 pyrophosphatase (inorganic) 1 428922 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4863 RPL19 ribosomal protein L19 307242 1 1 1 1 0 1 0 0 0 0 0.29 1.00 -4864 ITGA8 integrin, alpha 8 1571193 2 2 2 1 0 1 0 0 1 0 0.29 1.00 -4865 MC2R melanocortin 2 receptor (adrenocorticotropic hormone) 455286 1 1 1 0 0 0 0 1 0 0 0.29 1.00 -4866 C4orf49 331071 1 1 1 0 1 0 0 0 0 0 0.29 1.00 -4867 ZNF135 zinc finger protein 135 1068756 1 1 1 1 0 0 0 0 1 0 0.29 1.00 -4868 TSHZ2 teashirt zinc finger homeobox 2 1555983 2 2 2 0 0 2 0 0 0 0 0.29 1.00 -4869 SLC2A13 solute carrier family 2 (facilitated glucose transporter), member 13 723489 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4870 FLVCR1 feline leukemia virus subgroup C cellular receptor 1 753402 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4871 GABPA GA binding protein transcription factor, alpha subunit 60kDa 710307 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4872 PIR pirin (iron-binding nuclear protein) 460863 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4873 AK2 adenylate kinase 2 332592 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4874 IL3RA interleukin 3 receptor, alpha (low affinity) 390897 1 1 1 0 1 0 0 0 0 0 0.29 1.00 -4875 IPO13 importin 13 1438866 2 2 2 1 1 0 1 0 0 0 0.29 1.00 -4876 SGPL1 sphingosine-1-phosphate lyase 1 893841 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4877 CREB3 cAMP responsive element binding protein 3 584064 1 1 1 0 1 0 0 0 0 0 0.29 1.00 -4878 SLC6A9 solute carrier family 6 (neurotransmitter transporter, glycine), member 9 1062165 2 2 2 0 1 1 0 0 0 0 0.29 1.00 -4879 PTCH1 patched homolog 1 (Drosophila) 2172495 3 3 3 1 1 1 1 0 0 0 0.29 1.00 -4880 SSTR2 somatostatin receptor 2 564798 1 1 1 0 0 0 0 1 0 0 0.29 1.00 -4881 GP6 glycoprotein VI (platelet) 889278 1 1 1 3 0 0 0 0 1 0 0.29 1.00 -4882 RBM44 RNA binding motif protein 44 1598064 3 3 3 0 0 3 0 0 0 0 0.29 1.00 -4883 PLG plasminogen 1274091 2 2 2 1 1 1 0 0 0 0 0.29 1.00 -4884 ARHGAP24 Rho GTPase activating protein 24 1216293 2 2 2 1 2 0 0 0 0 0 0.29 1.00 -4885 RNASE11 ribonuclease, RNase A family, 11 (non-active) 306228 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4886 PRKCZ protein kinase C, zeta 675831 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4887 C9orf119 chromosome 9 open reading frame 119 365040 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4888 BTK Bruton agammaglobulinemia tyrosine kinase 1040364 2 2 2 0 0 1 1 0 0 0 0.29 1.00 -4889 PDZD8 PDZ domain containing 8 1486017 2 2 2 0 1 0 1 0 0 0 0.29 1.00 -4890 CCDC33 coiled-coil domain containing 33 1276626 2 2 2 2 1 0 1 0 0 0 0.29 1.00 -4891 ACOXL acyl-Coenzyme A oxidase-like 814242 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4892 HLTF helicase-like transcription factor 1574742 2 2 2 1 0 0 1 0 1 0 0.29 1.00 -4893 PARVA parvin, alpha 513591 1 1 1 1 1 0 0 0 0 0 0.29 1.00 -4894 GP2 glycoprotein 2 (zymogen granule membrane) 834015 1 1 1 2 0 1 0 0 0 0 0.29 1.00 -4895 MYCN v-myc myelocytomatosis viral related oncogene, neuroblastoma derived (avian) 398502 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4896 RSPH9 403065 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4897 KLHDC1 kelch domain containing 1 594711 1 1 1 0 0 0 0 0 1 0 0.29 1.00 -4898 SCG5 secretogranin V (7B2 protein) 334113 1 1 1 0 1 0 0 0 0 0 0.29 1.00 -4899 ZNF627 zinc finger protein 627 674310 1 1 1 1 0 1 0 0 0 0 0.29 1.00 -4900 CCAR1 cell division cycle and apoptosis regulator 1 1799343 3 3 3 0 1 0 1 0 1 0 0.29 1.00 -4901 FAHD2A fumarylacetoacetate hydrolase domain containing 2A 493311 1 1 1 0 1 0 0 0 0 0 0.29 1.00 -4902 PCDHB11 protocadherin beta 11 1102725 2 2 2 0 0 1 1 0 0 0 0.29 1.00 -4903 COL12A1 collagen, type XII, alpha 1 4753125 7 7 7 3 1 3 3 0 0 0 0.29 1.00 -4904 TIGIT 347802 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4905 GRXCR1 450723 1 1 1 0 1 0 0 0 0 0 0.29 1.00 -4906 ABCB10 ATP-binding cassette, sub-family B (MDR/TAP), member 10 886236 1 1 1 0 0 0 1 0 0 0 0.29 1.00 -4907 ACTRT2 actin-related protein T2 481143 1 1 1 0 0 1 0 0 0 0 0.29 1.00 -4908 GNAI2 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 2 494832 1 1 1 1 1 0 0 0 0 0 0.29 1.00 -4909 HSPBAP1 HSPB (heat shock 27kDa) associated protein 1 759993 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -4910 LEPRE1 leucine proline-enriched proteoglycan (leprecan) 1 866463 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -4911 SLITRK3 SLIT and NTRK-like family, member 3 1489566 2 2 2 0 0 1 0 1 0 0 0.30 1.00 -4912 CCDC57 coiled-coil domain containing 57 1096134 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -4913 PLXNA3 plexin A3 1943838 3 3 3 0 2 1 0 0 0 0 0.30 1.00 -4914 PABPN1 poly(A) binding protein, nuclear 1 301158 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4915 ECHDC3 enoyl Coenzyme A hydratase domain containing 3 322959 1 1 1 1 0 0 1 0 0 0 0.30 1.00 -4916 KIAA0831 KIAA0831 656058 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -4917 C16orf89 398502 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4918 SOS1 son of sevenless homolog 1 (Drosophila) 2029014 3 3 3 0 0 1 1 0 1 0 0.30 1.00 -4919 CHRNA3 cholinergic receptor, nicotinic, alpha 3 781287 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4920 RAPGEF6 Rap guanine nucleotide exchange factor (GEF) 6 2458443 4 4 4 1 1 1 1 1 0 0 0.30 1.00 -4921 SAFB scaffold attachment factor B 820833 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4922 DHRS12 dehydrogenase/reductase (SDR family) member 12 380757 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -4923 SLITRK6 SLIT and NTRK-like family, member 6 1282710 2 2 2 0 0 1 0 0 1 0 0.30 1.00 -4924 FUT11 fucosyltransferase 11 (alpha (1,3) fucosyltransferase) 567333 1 1 1 1 0 1 0 0 0 0 0.30 1.00 -4925 DRD3 dopamine receptor D3 621075 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4926 DTX2 deltex homolog 2 (Drosophila) 537927 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4927 KCTD18 potassium channel tetramerisation domain containing 18 661635 1 1 1 0 0 0 0 1 0 0 0.30 1.00 -4928 WNT8B wingless-type MMTV integration site family, member 8B 418275 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4929 SIRPA signal-regulatory protein alpha 740727 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4930 FAM193B 794469 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -4931 TEKT5 tektin 5 753402 1 1 1 2 0 0 1 0 0 0 0.30 1.00 -4932 ITGB1 integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12) 1305525 2 2 2 1 0 0 1 1 0 0 0.30 1.00 -4933 AP3D1 adaptor-related protein complex 3, delta 1 subunit 919698 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -4934 CCDC42 coiled-coil domain containing 42 338676 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -4935 KCNIP4 Kv channel interacting protein 4 467454 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4936 UTP14A UTP14, U3 small nucleolar ribonucleoprotein, homolog A (yeast) 1204632 2 2 2 1 0 1 0 1 0 0 0.30 1.00 -4937 C3orf33 chromosome 3 open reading frame 33 391404 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -4938 BEST1 bestrophin 1 841113 1 1 1 0 0 0 0 1 0 0 0.30 1.00 -4939 NDC80 NDC80 homolog, kinetochore complex component (S. cerevisiae) 1010451 2 2 2 0 0 0 2 0 0 0 0.30 1.00 -4940 SIX2 SIX homeobox 2 408135 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4941 GSTK1 glutathione S-transferase kappa 1 444639 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -4942 SNF8 SNF8, ESCRT-II complex subunit, homolog (S. cerevisiae) 410163 1 1 1 0 0 0 0 1 0 0 0.30 1.00 -4943 GJA4 gap junction protein, alpha 4, 37kDa 510042 1 1 1 0 0 0 0 1 0 0 0.30 1.00 -4944 ZNF700 zinc finger protein 700 1138215 2 2 2 1 1 0 0 0 1 0 0.30 1.00 -4945 MYO1F myosin IF 1329861 2 2 2 1 0 2 0 0 0 0 0.30 1.00 -4946 MYH11 myosin, heavy chain 11, smooth muscle 3086109 5 5 5 1 2 2 1 0 0 0 0.30 1.00 -4947 KY kyphoscoliosis peptidase 908037 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -4948 CD1E CD1e molecule 603837 1 1 1 1 0 0 1 0 0 0 0.30 1.00 -4949 PIK3R6 phosphoinositide-3-kinase, regulatory subunit 6 950625 2 2 2 0 2 0 0 0 0 0 0.30 1.00 -4950 CCBL1 cysteine conjugate-beta lyase, cytoplasmic 667719 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -4951 ZNF610 zinc finger protein 610 712335 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4952 RP1 retinitis pigmentosa 1 (autosomal dominant) 3283839 5 5 5 2 2 1 1 0 1 0 0.30 1.00 -4953 NAT9 N-acetyltransferase 9 328029 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -4954 ZNF76 zinc finger protein 76 (expressed in testis) 890799 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -4955 TBC1D8B TBC1 domain family, member 8B (with GRAM domain) 1781091 3 3 3 0 3 0 0 0 0 0 0.30 1.00 -4956 ZNF680 zinc finger protein 680 815763 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4957 MOSC2 MOCO sulphurase C-terminal domain containing 2 385320 1 1 1 0 0 0 0 1 0 0 0.30 1.00 -4958 PCBP4 poly(rC) binding protein 4 599274 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -4959 USP15 ubiquitin specific peptidase 15 1444950 2 2 2 1 0 0 0 1 1 0 0.30 1.00 -4960 RIBC1 RIB43A domain with coiled-coils 1 607893 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -4961 OR1L8 olfactory receptor, family 1, subfamily L, member 8 473538 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4962 MAPK1 mitogen-activated protein kinase 1 502944 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4963 HAUS8 647439 1 1 1 0 0 0 0 1 0 0 0.30 1.00 -4964 TMOD1 tropomodulin 1 565812 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4965 FXR2 fragile X mental retardation, autosomal homolog 2 942513 2 2 2 0 0 1 0 1 0 0 0.30 1.00 -4966 ZFP91 zinc finger protein 91 homolog (mouse) 741741 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4967 MATN2 matrilin 2 1472328 2 2 2 0 0 2 0 0 0 0 0.30 1.00 -4968 CCNT2 cyclin T2 1088022 1 1 1 1 0 0 0 0 1 0 0.30 1.00 -4969 ZSCAN1 zinc finger and SCAN domain containing 1 400023 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -4970 GIPC1 GIPC PDZ domain containing family, member 1 326508 1 1 1 1 0 1 0 0 0 0 0.30 1.00 -4971 CLUL1 clusterin-like 1 (retinal) 726531 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4972 SLC6A3 solute carrier family 6 (neurotransmitter transporter, dopamine), member 3 563784 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -4973 KCNK3 potassium channel, subfamily K, member 3 331071 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4974 RTEL1 regulator of telomere elongation helicase 1 538434 1 1 1 2 0 1 0 0 0 0 0.30 1.00 -4975 KRT28 keratin 28 720447 1 1 1 0 0 0 0 1 0 0 0.30 1.00 -4976 VLDLR very low density lipoprotein receptor 1324284 2 2 1 0 2 0 0 0 0 0 0.30 1.00 -4977 MEOX1 mesenchyme homeobox 1 314340 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -4978 EBP emopamil binding protein (sterol isomerase) 355914 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4979 C5orf28 chromosome 5 open reading frame 28 332592 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4980 TRIM17 tripartite motif-containing 17 698646 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -4981 FAM54B family with sequence similarity 54, member B 457821 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -4982 POU2F2 POU class 2 homeobox 2 526773 1 1 1 1 0 0 0 1 0 0 0.30 1.00 -4983 TCF12 transcription factor 12 (HTF4, helix-loop-helix transcription factors 4) 1150890 2 2 2 0 1 0 1 0 0 0 0.30 1.00 -4984 NDUFV2 NADH dehydrogenase (ubiquinone) flavoprotein 2, 24kDa 367068 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -4985 CCDC45 coiled-coil domain containing 45 1159509 2 2 2 1 1 0 1 0 0 0 0.30 1.00 -4986 FAM98B family with sequence similarity 98, member B 479622 1 1 1 1 1 0 0 0 0 0 0.30 1.00 -4987 C9orf131 chromosome 9 open reading frame 131 1646736 3 3 3 0 1 2 0 0 0 0 0.30 1.00 -4988 BCL9 B-cell CLL/lymphoma 9 2184663 3 3 3 0 1 0 0 0 2 0 0.30 1.00 -4989 CUEDC1 CUE domain containing 1 526266 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4990 OTOP3 otopetrin 3 865956 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4991 CDC5L CDC5 cell division cycle 5-like (S. pombe) 1228968 2 2 2 0 0 2 0 0 0 0 0.30 1.00 -4992 N6AMT2 N-6 adenine-specific DNA methyltransferase 2 (putative) 335127 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -4993 GATA2 GATA binding protein 2 411684 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -4994 C5orf4 chromosome 5 open reading frame 4 524238 1 1 1 1 0 0 0 1 0 0 0.30 1.00 -4995 SNCAIP synuclein, alpha interacting protein (synphilin) 1419600 2 2 2 2 0 1 1 0 0 0 0.30 1.00 -4996 FGF23 fibroblast growth factor 23 389376 1 1 1 2 0 1 0 0 0 0 0.30 1.00 -4997 JARID2 jumonji, AT rich interactive domain 2 1802385 3 3 3 1 0 2 1 0 0 0 0.30 1.00 -4998 ACVR1C activin A receptor, type IC 730587 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -4999 SPRYD5 SPRY domain containing 5 490776 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -5000 OLFML2A olfactomedin-like 2A 766584 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -5001 TCEAL2 transcription elongation factor A (SII)-like 2 348816 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -5002 TAF7 TAF7 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 55kDa 534378 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -5003 KRT34 keratin 34 676845 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -5004 ZNF574 zinc finger protein 574 1366365 2 2 2 1 1 0 1 0 0 0 0.30 1.00 -5005 ACCN4 amiloride-sensitive cation channel 4, pituitary 913614 1 1 1 1 0 0 0 1 0 0 0.30 1.00 -5006 ZIC3 Zic family member 3 heterotaxy 1 (odd-paired homolog, Drosophila) 485706 1 1 1 1 0 0 1 0 0 0 0.30 1.00 -5007 CTNNA3 catenin (cadherin-associated protein), alpha 3 1397292 2 2 2 1 0 1 0 0 1 0 0.30 1.00 -5008 EPHX1 epoxide hydrolase 1, microsomal (xenobiotic) 708786 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -5009 ZNF770 zinc finger protein 770 1054560 2 2 2 0 0 1 1 0 0 0 0.30 1.00 -5010 ABI3 ABI gene family, member 3 336141 1 1 1 1 0 0 1 0 0 0 0.30 1.00 -5011 FAM75A3 family with sequence similarity 75, member A3 782808 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -5012 FYB FYN binding protein (FYB-120/130) 1216800 2 2 2 0 1 0 1 0 0 0 0.30 1.00 -5013 SERPINF1 serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 1 606879 1 1 1 1 0 0 1 0 0 0 0.30 1.00 -5014 SRBD1 S1 RNA binding domain 1 1555476 2 2 2 3 1 0 0 0 1 0 0.30 1.00 -5015 FPR1 formyl peptide receptor 1 535899 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -5016 WBP4 WW domain binding protein 4 (formin binding protein 21) 590655 1 1 1 1 0 1 0 0 0 0 0.30 1.00 -5017 C1GALT1C1 C1GALT1-specific chaperone 1 487227 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -5018 CNNM1 cyclin M1 884208 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -5019 TEAD1 TEA domain family member 1 (SV40 transcriptional enhancer factor) 671775 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -5020 ADCK1 aarF domain containing kinase 1 817284 1 1 1 0 0 0 0 0 1 0 0.30 1.00 -5021 KPNA5 karyopherin alpha 5 (importin alpha 6) 849732 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -5022 EAF2 ELL associated factor 2 409149 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -5023 MPP3 membrane protein, palmitoylated 3 (MAGUK p55 subfamily member 3) 750867 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -5024 TNRC6A trinucleotide repeat containing 6A 3031860 4 4 4 1 1 2 0 0 1 0 0.30 1.00 -5025 ECD ecdysoneless homolog (Drosophila) 1007409 2 2 2 0 0 0 1 1 0 0 0.30 1.00 -5026 MTMR15 myotubularin related protein 15 1587417 2 2 2 1 0 0 0 0 2 0 0.30 1.00 -5027 SLC4A1 solute carrier family 4, anion exchanger, member 1 (erythrocyte membrane protein band 3, Diego blood group) 1320228 2 2 2 0 1 1 0 0 0 0 0.30 1.00 -5028 IL10RA interleukin 10 receptor, alpha 858351 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -5029 PPP1R16B protein phosphatase 1, regulatory (inhibitor) subunit 16B 755430 1 1 1 0 1 0 0 0 0 0 0.30 1.00 -5030 FRMD6 FERM domain containing 6 961779 2 2 2 1 2 0 0 0 0 0 0.30 1.00 -5031 CHN2 chimerin (chimaerin) 2 763542 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -5032 SLC24A1 solute carrier family 24 (sodium/potassium/calcium exchanger), member 1 1568658 2 2 2 0 0 0 1 0 1 0 0.30 1.00 -5033 PAPD7 813735 1 1 1 0 0 0 0 1 0 0 0.30 1.00 -5034 PTPN7 protein tyrosine phosphatase, non-receptor type 7 622089 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -5035 SLC41A2 solute carrier family 41, member 2 817791 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -5036 ZEB1 zinc finger E-box binding homeobox 1 1705041 3 3 3 0 1 2 0 0 0 0 0.30 1.00 -5037 CRISPLD1 cysteine-rich secretory protein LCCL domain containing 1 790413 1 1 1 1 0 1 0 0 0 0 0.30 1.00 -5038 COL27A1 collagen, type XXVII, alpha 1 2331186 3 3 3 1 1 1 1 0 0 0 0.30 1.00 -5039 LIMA1 LIM domain and actin binding 1 1177761 2 2 2 2 0 0 1 1 0 0 0.30 1.00 -5040 ALK anaplastic lymphoma receptor tyrosine kinase 2300766 3 3 3 2 0 1 0 0 2 0 0.30 1.00 -5041 NAV3 neuron navigator 3 3674736 5 5 5 2 0 1 2 0 2 0 0.30 1.00 -5042 LYG2 lysozyme G-like 2 334113 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -5043 ZCCHC7 zinc finger, CCHC domain containing 7 843648 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -5044 INMT indolethylamine N-methyltransferase 400023 1 1 1 0 0 1 0 0 0 0 0.30 1.00 -5045 CYSLTR1 cysteinyl leukotriene receptor 1 516126 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -5046 C14orf105 chromosome 14 open reading frame 105 463905 1 1 1 1 0 0 1 0 0 0 0.30 1.00 -5047 ZNF81 zinc finger protein 81 1015014 2 2 2 0 0 1 0 1 0 0 0.30 1.00 -5048 DDB1 damage-specific DNA binding protein 1, 127kDa 1757262 3 3 3 0 0 3 0 0 0 0 0.30 1.00 -5049 OR9A2 olfactory receptor, family 9, subfamily A, member 2 475059 1 1 1 0 0 0 1 0 0 0 0.30 1.00 -5050 ZNF398 zinc finger protein 398 975975 2 2 2 0 2 0 0 0 0 0 0.30 1.00 -5051 GRB10 growth factor receptor-bound protein 10 937443 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5052 RREB1 ras responsive element binding protein 1 2135484 3 3 2 0 2 1 0 0 0 0 0.31 1.00 -5053 NETO1 neuropilin (NRP) and tolloid (TLL)-like 1 809172 1 1 1 1 0 1 0 0 0 0 0.31 1.00 -5054 OR51G2 olfactory receptor, family 51, subfamily G, member 2 481143 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5055 CYP2A6 cytochrome P450, family 2, subfamily A, polypeptide 6 771147 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5056 ATP6V0A4 ATPase, H+ transporting, lysosomal V0 subunit a4 1319721 2 2 2 0 0 0 2 0 0 0 0.31 1.00 -5057 ZNF10 zinc finger protein 10 881166 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5058 MCAT malonyl CoA:ACP acyltransferase (mitochondrial) 380757 1 1 1 1 1 0 0 0 0 0 0.31 1.00 -5059 RASA1 RAS p21 protein activator (GTPase activating protein) 1 1463709 2 2 2 0 0 0 1 0 1 0 0.31 1.00 -5060 GLB1L galactosidase, beta 1-like 1028703 2 2 2 1 0 2 0 0 0 0 0.31 1.00 -5061 HDAC3 histone deacetylase 3 682422 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5062 MYCBPAP MYCBP associated protein 1454076 2 2 2 0 0 2 0 0 0 0 0.31 1.00 -5063 AAK1 AP2 associated kinase 1 1245192 2 2 2 0 0 1 0 0 1 0 0.31 1.00 -5064 CPEB2 cytoplasmic polyadenylation element binding protein 2 742248 1 1 1 2 0 0 1 0 0 0 0.31 1.00 -5065 FAM92A1 family with sequence similarity 92, member A1 402558 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5066 KIAA0141 KIAA0141 791427 1 1 1 1 0 0 0 0 1 0 0.31 1.00 -5067 MICAL2 microtubule associated monoxygenase, calponin and LIM domain containing 2 1761825 3 3 3 0 0 1 0 1 1 0 0.31 1.00 -5068 WDR45 WD repeat domain 45 570882 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5069 TMEM131 transmembrane protein 131 2697240 4 4 4 0 0 0 2 0 2 0 0.31 1.00 -5070 CUX1 cut-like homeobox 1 2229786 2 2 2 2 0 0 0 0 2 0 0.31 1.00 -5071 FOXJ2 forkhead box J2 894855 1 1 1 1 0 0 0 1 0 0 0.31 1.00 -5072 XK X-linked Kx blood group (McLeod syndrome) 556686 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5073 NUB1 negative regulator of ubiquitin-like proteins 1 795990 1 1 1 0 0 0 0 1 0 0 0.31 1.00 -5074 KRT71 keratin 71 815256 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5075 C12orf42 chromosome 12 open reading frame 42 559221 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5076 SPATA18 spermatogenesis associated 18 homolog (rat) 842634 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5077 CHRNA1 cholinergic receptor, nicotinic, alpha 1 (muscle) 754923 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5078 LRFN1 leucine rich repeat and fibronectin type III domain containing 1 435513 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5079 MAGEA1 melanoma antigen family A, 1 (directs expression of antigen MZ2-E) 473538 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5080 CACNB2 calcium channel, voltage-dependent, beta 2 subunit 1081431 2 2 2 0 2 0 0 0 0 0 0.31 1.00 -5081 ACSBG2 acyl-CoA synthetase bubblegum family member 2 1027689 2 2 2 1 1 1 0 0 0 0 0.31 1.00 -5082 PNLIP pancreatic lipase 733122 1 1 1 1 0 0 0 1 0 0 0.31 1.00 -5083 YTHDC1 YTH domain containing 1 1124019 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5084 CPNE8 copine VIII 848211 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5085 MPP7 membrane protein, palmitoylated 7 (MAGUK p55 subfamily member 7) 910065 1 1 1 1 0 0 0 1 0 0 0.31 1.00 -5086 IP6K2 757458 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5087 LPHN2 latrophilin 2 2174016 3 3 3 0 1 0 1 0 1 0 0.31 1.00 -5088 CCDC90A coiled-coil domain containing 90A 353379 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5089 EPHB1 EPH receptor B1 1530633 2 2 2 2 0 2 0 0 0 0 0.31 1.00 -5090 PTPLA protein tyrosine phosphatase-like (proline instead of catalytic arginine), member A 321438 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5091 COL4A5 collagen, type IV, alpha 5 (Alport syndrome) 2618148 4 4 4 1 0 3 0 0 1 0 0.31 1.00 -5092 GTPBP2 GTP binding protein 2 867984 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5093 MAPRE2 microtubule-associated protein, RP/EB family, member 2 473031 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5094 SHC3 SHC (Src homology 2 domain containing) transforming protein 3 705744 1 1 1 1 0 1 0 0 0 0 0.31 1.00 -5095 CITED2 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 2 342732 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5096 CYB5R4 cytochrome b5 reductase 4 786357 1 1 1 0 0 0 0 1 0 0 0.31 1.00 -5097 SAMD4A sterile alpha motif domain containing 4A 958230 2 2 2 0 1 0 1 0 0 0 0.31 1.00 -5098 ZNF613 zinc finger protein 613 948090 2 2 2 1 1 1 0 0 0 0 0.31 1.00 -5099 ZNF577 zinc finger protein 577 747318 1 1 1 1 0 1 0 0 0 0 0.31 1.00 -5100 KIR3DL3 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 3 402051 1 1 1 1 0 1 0 0 0 0 0.31 1.00 -5101 SBSN suprabasin 487227 1 1 1 1 0 1 0 0 0 0 0.31 1.00 -5102 L3MBTL4 l(3)mbt-like 4 (Drosophila) 925275 1 1 1 1 0 0 0 0 1 0 0.31 1.00 -5103 ARHGEF10L Rho guanine nucleotide exchange factor (GEF) 10-like 1165086 2 2 2 1 0 1 1 0 0 0 0.31 1.00 -5104 TSC22D2 TSC22 domain family, member 2 500409 1 1 1 0 0 0 0 1 0 0 0.31 1.00 -5105 ZC3H4 zinc finger CCCH-type containing 4 1408953 2 2 2 0 0 1 0 0 1 0 0.31 1.00 -5106 TARS2 threonyl-tRNA synthetase 2, mitochondrial (putative) 1130103 2 2 2 1 1 0 1 0 0 0 0.31 1.00 -5107 C10orf129 chromosome 10 open reading frame 129 351351 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5108 NOP14 1080924 2 2 2 0 0 1 1 0 0 0 0.31 1.00 -5109 DOC2A double C2-like domains, alpha 587106 1 1 1 3 0 0 1 0 0 0 0.31 1.00 -5110 C16orf91 356421 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5111 ELMOD2 ELMO/CED-12 domain containing 2 463398 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5112 ABCC12 ATP-binding cassette, sub-family C (CFTR/MRP), member 12 2126865 3 3 3 3 1 1 1 0 0 0 0.31 1.00 -5113 CIRH1A cirrhosis, autosomal recessive 1A (cirhin) 1077375 2 2 2 0 0 0 1 1 0 0 0.31 1.00 -5114 STARD3NL STARD3 N-terminal like 371631 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5115 ZNF774 zinc finger protein 774 742248 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5116 KIAA0652 820326 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5117 MFSD9 major facilitator superfamily domain containing 9 711828 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5118 C14orf39 chromosome 14 open reading frame 39 928824 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5119 C10orf140 chromosome 10 open reading frame 140 870012 1 1 1 2 0 0 0 1 0 0 0.31 1.00 -5120 SH2D4A SH2 domain containing 4A 710307 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5121 CYP2C8 cytochrome P450, family 2, subfamily C, polypeptide 8 765063 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5122 C7orf28A chromosome 7 open reading frame 28A 627159 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5123 OR3A2 olfactory receptor, family 3, subfamily A, member 2 491790 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5124 VRK3 vaccinia related kinase 3 746811 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5125 HS3ST2 heparan sulfate (glucosamine) 3-O-sulfotransferase 2 363519 1 1 1 1 1 0 0 0 0 0 0.31 1.00 -5126 KRT2 keratin 2 (epidermal ichthyosis bullosa of Siemens) 988650 2 2 2 2 2 0 0 0 0 0 0.31 1.00 -5127 NR2E1 nuclear receptor subfamily 2, group E, member 1 468975 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5128 SLC25A38 solute carrier family 25, member 38 472017 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5129 GPR151 G protein-coupled receptor 151 640848 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5130 PCDHGA12 protocadherin gamma subfamily A, 12 1446978 2 2 2 1 0 1 1 0 0 0 0.31 1.00 -5131 HIP1R huntingtin interacting protein 1 related 890799 1 1 1 1 0 0 0 1 0 0 0.31 1.00 -5132 GRK6 G protein-coupled receptor kinase 6 736671 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5133 LAS1L LAS1-like (S. cerevisiae) 1030731 2 2 2 1 1 0 1 0 0 0 0.31 1.00 -5134 MON1B MON1 homolog B (yeast) 759993 1 1 1 0 0 0 0 1 0 0 0.31 1.00 -5135 IFNK interferon, kappa 318396 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5136 UBA1 ubiquitin-like modifier activating enzyme 1 1658904 3 3 3 1 1 2 0 0 0 0 0.31 1.00 -5137 PCDH18 protocadherin 18 1735968 3 3 3 0 2 1 0 0 0 0 0.31 1.00 -5138 NDFIP2 Nedd4 family interacting protein 2 361998 1 1 1 0 0 0 0 1 0 0 0.31 1.00 -5139 LUZP2 leucine zipper protein 2 518661 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5140 GJB5 gap junction protein, beta 5, 31.1kDa 418782 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5141 PRDM4 PR domain containing 4 1242150 2 2 2 1 0 0 1 1 0 0 0.31 1.00 -5142 OR52A4 olfactory receptor, family 52, subfamily A, member 4 465933 1 1 1 0 0 0 0 1 0 0 0.31 1.00 -5143 UBXN4 756951 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5144 SCCPDH saccharopine dehydrogenase (putative) 580008 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5145 HADH hydroxyacyl-Coenzyme A dehydrogenase 454272 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5146 CER1 cerberus 1, cysteine knot superfamily, homolog (Xenopus laevis) 411684 1 1 1 0 0 0 0 1 0 0 0.31 1.00 -5147 THAP5 THAP domain containing 5 400530 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5148 KIF4B kinesin family member 4B 1880463 3 3 3 0 1 1 1 0 0 0 0.31 1.00 -5149 C9orf3 chromosome 9 open reading frame 3 1089036 2 2 2 1 0 2 0 0 0 0 0.31 1.00 -5150 BCL2L13 BCL2-like 13 (apoptosis facilitator) 751374 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5151 FMO3 flavin containing monooxygenase 3 826917 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5152 HNRNPA1 heterogeneous nuclear ribonucleoprotein A1 499902 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5153 OR52K1 olfactory receptor, family 52, subfamily K, member 1 481143 1 1 1 1 0 0 1 0 0 0 0.31 1.00 -5154 OR11H4 olfactory receptor, family 11, subfamily H, member 4 496353 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5155 REM1 RAS (RAD and GEM)-like GTP-binding 1 322959 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5156 RAB36 RAB36, member RAS oncogene family 363519 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5157 MARK4 MAP/microtubule affinity-regulating kinase 4 791934 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5158 HTR1A 5-hydroxytryptamine (serotonin) receptor 1A 644397 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5159 ALG2 asparagine-linked glycosylation 2 homolog (S. cerevisiae, alpha-1,3-mannosyltransferase) 459849 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5160 KAZ 888264 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5161 ECT2 epithelial cell transforming sequence 2 oncogene 1391208 2 2 2 0 1 0 0 0 1 0 0.31 1.00 -5162 SERPINB1 serpin peptidase inhibitor, clade B (ovalbumin), member 1 590148 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5163 OR8U1 olfactory receptor, family 8, subfamily U, member 1 473538 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5164 ZRANB3 zinc finger, RAN-binding domain containing 3 1546857 2 2 2 1 0 1 0 0 1 0 0.31 1.00 -5165 MBD6 methyl-CpG binding domain protein 6 1518465 2 2 2 0 0 0 1 0 1 0 0.31 1.00 -5166 PKP4 plakophilin 4 1857141 3 3 3 1 0 3 0 0 0 0 0.31 1.00 -5167 UBA7 ubiquitin-like modifier activating enzyme 7 1491594 2 2 2 0 0 1 1 0 0 0 0.31 1.00 -5168 HIST1H1D histone cluster 1, H1d 339690 1 1 1 0 1 0 0 0 0 0 0.31 1.00 -5169 MMP19 matrix metallopeptidase 19 778752 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5170 SLC27A4 solute carrier family 27 (fatty acid transporter), member 4 982059 2 2 2 0 1 0 0 0 1 0 0.31 1.00 -5171 MARCH5 membrane-associated ring finger (C3HC4) 5 416754 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5172 CDSN corneodesmosin 745290 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5173 AMT aminomethyltransferase 643383 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5174 MARVELD3 MARVEL domain containing 3 703716 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5175 ILKAP integrin-linked kinase-associated serine/threonine phosphatase 2C 592176 1 1 1 0 0 0 0 0 1 0 0.31 1.00 -5176 ZNF354B zinc finger protein 354B 925782 1 1 1 0 0 0 1 0 0 0 0.31 1.00 -5177 OTOP1 otopetrin 1 735150 1 1 1 1 0 1 0 0 0 0 0.31 1.00 -5178 DNAH17 dynein, axonemal, heavy chain 17 5562804 7 7 7 2 1 2 1 1 2 0 0.31 1.00 -5179 THUMPD2 THUMP domain containing 2 720954 1 1 1 0 0 1 0 0 0 0 0.31 1.00 -5180 PCYT1A phosphate cytidylyltransferase 1, choline, alpha 575952 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5181 SLC25A2 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 2 461370 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5182 AGAP11 813228 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5183 DDB2 damage-specific DNA binding protein 2, 48kDa 671268 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5184 OR52M1 olfactory receptor, family 52, subfamily M, member 1 485706 1 1 1 0 0 0 0 0 1 0 0.32 1.00 -5185 CACNA1I calcium channel, voltage-dependent, T type, alpha 1I subunit 1345578 2 2 2 1 0 1 0 1 0 0 0.32 1.00 -5186 RNF168 ring finger protein 168 882180 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5187 UGT2A2 UDP glucuronosyltransferase 2 family, polypeptide A2 816777 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5188 ZNF500 zinc finger protein 500 553644 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5189 HPS4 Hermansky-Pudlak syndrome 4 1076361 2 2 2 1 1 0 1 0 0 0 0.32 1.00 -5190 WDFY1 WD repeat and FYVE domain containing 1 577980 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5191 OR52R1 olfactory receptor, family 52, subfamily R, member 1 482157 1 1 1 1 1 0 0 0 0 0 0.32 1.00 -5192 FZD6 frizzled homolog 6 (Drosophila) 1087515 2 2 2 0 0 0 2 0 0 0 0.32 1.00 -5193 ADRBK1 adrenergic, beta, receptor kinase 1 616005 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5194 PHKG2 phosphorylase kinase, gamma 2 (testis) 587106 1 1 1 0 0 0 0 0 1 0 0.32 1.00 -5195 ANKMY1 ankyrin repeat and MYND domain containing 1 1201083 2 2 2 0 1 0 0 0 1 0 0.32 1.00 -5196 TAPT1 transmembrane anterior posterior transformation 1 466947 1 1 1 1 1 0 0 0 0 0 0.32 1.00 -5197 CKMT2 creatine kinase, mitochondrial 2 (sarcomeric) 657072 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5198 EPAS1 endothelial PAS domain protein 1 1241643 2 2 2 1 0 0 1 0 1 0 0.32 1.00 -5199 TMCC2 transmembrane and coiled-coil domain family 2 823875 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5200 NPC1 Niemann-Pick disease, type C1 1959048 3 3 3 0 2 0 1 0 0 0 0.32 1.00 -5201 ADCK4 aarF domain containing kinase 4 806637 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5202 OR52N5 olfactory receptor, family 52, subfamily N, member 5 496353 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5203 HMGCS2 3-hydroxy-3-methylglutaryl-Coenzyme A synthase 2 (mitochondrial) 792441 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5204 SLC40A1 solute carrier family 40 (iron-regulated transporter), member 1 886236 1 1 1 1 0 0 0 1 0 0 0.32 1.00 -5205 LINGO2 leucine rich repeat and Ig domain containing 2 925275 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5206 HYAL2 hyaluronoglucosaminidase 2 636792 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5207 ZMYND15 zinc finger, MYND-type containing 15 936936 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5208 IQCD IQ motif containing D 533364 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5209 CARD11 caspase recruitment domain family, member 11 1347099 2 2 2 2 0 2 0 0 0 0 0.32 1.00 -5210 RFX7 2156778 3 3 3 0 0 1 0 0 2 0 0.32 1.00 -5211 ESRRB estrogen-related receptor beta 652509 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5212 IMPG1 interphotoreceptor matrix proteoglycan 1 1248234 2 2 2 0 0 2 0 0 0 0 0.32 1.00 -5213 KLF6 Kruppel-like factor 6 415740 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5214 CYP2F1 cytochrome P450, family 2, subfamily F, polypeptide 1 730080 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5215 SMARCA1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 1624935 2 2 2 0 0 0 1 0 1 0 0.32 1.00 -5216 KHDRBS3 KH domain containing, RNA binding, signal transduction associated 3 499395 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5217 FAM188A 659100 1 1 1 0 0 0 0 0 1 0 0.32 1.00 -5218 TRIM8 tripartite motif-containing 8 560742 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5219 ANKRD34B ankyrin repeat domain 34B 785343 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5220 ZNF689 zinc finger protein 689 589641 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5221 CDCA7 cell division cycle associated 7 693576 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5222 TGFBR3 transforming growth factor, beta receptor III 1265979 2 2 2 0 0 2 0 0 0 0 0.32 1.00 -5223 ASTL astacin-like metallo-endopeptidase (M12 family) 614484 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5224 HCLS1 hematopoietic cell-specific Lyn substrate 1 767091 1 1 1 1 0 0 0 0 1 0 0.32 1.00 -5225 C13orf39 411177 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5226 ZBTB49 1179282 1 1 1 1 0 0 0 0 1 0 0.32 1.00 -5227 CCDC74B coiled-coil domain containing 74B 346788 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5228 LMNB1 lamin B1 730587 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5229 TMEM132A transmembrane protein 132A 1262937 2 2 2 1 1 1 0 0 0 0 0.32 1.00 -5230 SLC7A3 solute carrier family 7 (cationic amino acid transporter, y+ system), member 3 964821 1 1 1 2 0 0 0 0 1 0 0.32 1.00 -5231 PER2 period homolog 2 (Drosophila) 1804920 3 3 3 2 1 0 1 0 1 0 0.32 1.00 -5232 KBTBD8 kelch repeat and BTB (POZ) domain containing 8 913614 1 1 1 1 0 0 0 0 1 0 0.32 1.00 -5233 PRICKLE1 prickle homolog 1 (Drosophila) 1279668 2 2 2 0 1 0 1 0 0 0 0.32 1.00 -5234 OR52B6 olfactory receptor, family 52, subfamily B, member 6 513084 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5235 POGK pogo transposable element with KRAB domain 935922 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5236 SPIN2A spindlin family, member 2A 345774 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5237 ATG2B ATG2 autophagy related 2 homolog B (S. cerevisiae) 3219450 4 4 4 1 0 2 2 0 0 0 0.32 1.00 -5238 SRCRB4D scavenger receptor cysteine rich domain containing, group B (4 domains) 532857 1 1 1 1 0 1 0 0 0 0 0.32 1.00 -5239 PRSS35 protease, serine, 35 631722 1 1 1 1 1 0 0 0 0 0 0.32 1.00 -5240 CSF3R colony stimulating factor 3 receptor (granulocyte) 1399320 2 2 2 0 0 0 1 1 0 0 0.32 1.00 -5241 CDK17 827424 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5242 CCDC141 coiled-coil domain containing 141 1356732 2 2 2 0 0 0 2 0 0 0 0.32 1.00 -5243 CCRL1 chemokine (C-C motif) receptor-like 1 535899 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5244 CAPN10 calpain 10 836043 1 1 1 1 0 0 0 1 0 0 0.32 1.00 -5245 CAMKV CaM kinase-like vesicle-associated 773682 1 1 1 0 0 0 0 0 1 0 0.32 1.00 -5246 PROC protein C (inactivator of coagulation factors Va and VIIIa) 561756 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5247 PRPF8 PRP8 pre-mRNA processing factor 8 homolog (S. cerevisiae) 3589560 5 5 5 0 1 3 1 0 0 0 0.32 1.00 -5248 CTSS cathepsin S 519168 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5249 TCIRG1 T-cell, immune regulator 1, ATPase, H+ transporting, lysosomal V0 subunit A3 500916 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5250 TSSK2 testis-specific serine kinase 2 548067 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5251 GBP1 guanylate binding protein 1, interferon-inducible, 67kDa 922233 1 1 1 0 0 0 0 0 1 0 0.32 1.00 -5252 MED25 mediator complex subunit 25 784836 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5253 ZBTB25 zinc finger and BTB domain containing 25 667212 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5254 CACNB1 calcium channel, voltage-dependent, beta 1 subunit 945555 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5255 MYO7B myosin VIIB 1838889 3 3 3 1 1 1 1 0 0 0 0.32 1.00 -5256 PHF19 PHD finger protein 19 754923 1 1 1 1 0 0 1 0 0 0 0.32 1.00 -5257 SCN3A sodium channel, voltage-gated, type III, alpha subunit 3144921 5 5 5 0 1 1 1 1 1 0 0.32 1.00 -5258 ANO7 763542 1 1 1 1 0 1 0 0 0 0 0.32 1.00 -5259 TMEM161B transmembrane protein 161B 766584 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5260 CLDND1 claudin domain containing 1 427908 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5261 PIK3R3 phosphoinositide-3-kinase, regulatory subunit 3 (gamma) 722982 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5262 YIPF6 Yip1 domain family, member 6 343746 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5263 RMI1 RMI1, RecQ mediated genome instability 1, homolog (S. cerevisiae) 954174 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5264 ADAMTSL1 ADAMTS-like 1 2433600 3 3 3 3 0 1 0 1 1 0 0.32 1.00 -5265 ZNF337 zinc finger protein 337 1151904 2 2 2 0 1 0 0 0 1 0 0.32 1.00 -5266 PHF12 PHD finger protein 12 1530633 2 2 2 0 0 0 1 0 1 0 0.32 1.00 -5267 SMARCA2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 2246517 3 3 3 0 1 0 2 0 0 0 0.32 1.00 -5268 SH3YL1 SH3 domain containing, Ysc84-like 1 (S. cerevisiae) 386334 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5269 MAP7D1 MAP7 domain containing 1 721968 1 1 1 0 1 0 0 0 0 0 0.32 1.00 -5270 GIN1 gypsy retrotransposon integrase 1 809679 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5271 ACSF2 acyl-CoA synthetase family member 2 902460 1 1 1 0 0 0 0 0 1 0 0.32 1.00 -5272 BBS2 Bardet-Biedl syndrome 2 1071291 2 2 2 1 0 1 1 0 0 0 0.32 1.00 -5273 SLC22A25 solute carrier family 22, member 25 851760 1 1 1 1 1 0 0 0 0 0 0.32 1.00 -5274 MYBL1 v-myb myeloblastosis viral oncogene homolog (avian)-like 1 1124526 2 2 2 0 0 1 0 1 0 0 0.32 1.00 -5275 MAPK8IP1 mitogen-activated protein kinase 8 interacting protein 1 815763 1 1 1 0 0 0 0 0 1 0 0.32 1.00 -5276 IRAK3 interleukin-1 receptor-associated kinase 3 862914 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5277 ZSWIM4 zinc finger, SWIM-type containing 4 1337973 2 2 2 0 1 0 0 1 0 0 0.32 1.00 -5278 SYNPO2L synaptopodin 2-like 937950 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5279 TREM2 triggering receptor expressed on myeloid cells 2 361491 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5280 NOL10 nucleolar protein 10 948090 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5281 CR2 complement component (3d/Epstein Barr virus) receptor 2 1669551 2 2 2 2 0 0 1 1 0 0 0.32 1.00 -5282 LMBR1L limb region 1 homolog (mouse)-like 779766 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5283 FKBPL FK506 binding protein like 534378 1 1 1 0 0 0 0 1 0 0 0.32 1.00 -5284 MEN1 multiple endocrine neoplasia I 841113 1 1 1 1 0 0 0 0 1 0 0.32 1.00 -5285 BTBD11 BTB (POZ) domain containing 11 1117428 2 2 2 0 1 1 0 0 0 0 0.32 1.00 -5286 ARHGAP5 Rho GTPase activating protein 5 2298231 3 3 3 0 0 2 0 0 1 0 0.32 1.00 -5287 BLK B lymphoid tyrosine kinase 507507 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5288 FGFR2 fibroblast growth factor receptor 2 (bacteria-expressed kinase, keratinocyte growth factor receptor, craniofacial dysostosis 1, Crouzon syndrome, Pfeiffer syndrome, Jackson-Weiss syndrome) 1366872 2 2 1 1 0 2 0 0 0 0 0.32 1.00 -5289 LARS2 leucyl-tRNA synthetase 2, mitochondrial 1415544 2 2 2 0 0 1 0 0 1 0 0.32 1.00 -5290 GRTP1 growth hormone regulated TBC protein 1 398502 1 1 1 0 0 1 0 0 0 0 0.32 1.00 -5291 SEZ6L seizure related 6 homolog (mouse)-like 1460160 2 2 2 0 1 0 0 0 1 0 0.32 1.00 -5292 SRCAP Snf2-related CREBBP activator protein 4878861 7 7 7 3 3 1 1 2 0 0 0.32 1.00 -5293 HORMAD1 HORMA domain containing 1 629187 1 1 1 0 0 0 1 0 0 0 0.32 1.00 -5294 ACAP2 1202604 1 1 1 0 0 0 0 0 1 0 0.32 1.00 -5295 LPCAT4 767091 1 1 1 0 0 0 0 0 1 0 0.32 1.00 -5296 RSPH3 radial spoke head 3 homolog (Chlamydomonas) 797004 1 1 1 0 0 0 0 1 0 0 0.33 1.00 -5297 GJA10 gap junction protein, alpha 10, 62kDa 829452 1 1 1 0 0 0 0 0 1 0 0.33 1.00 -5298 ANKRD34A ankyrin repeat domain 34A 757458 1 1 1 2 1 0 0 0 0 0 0.33 1.00 -5299 LRRC33 leucine rich repeat containing 33 1049997 2 2 2 2 1 0 1 0 0 0 0.33 1.00 -5300 KIF27 kinesin family member 27 2166918 3 3 3 0 1 1 1 0 0 0 0.33 1.00 -5301 SAMD8 sterile alpha motif domain containing 8 505479 1 1 1 0 0 0 0 1 0 0 0.33 1.00 -5302 C1orf94 chromosome 1 open reading frame 94 684957 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5303 FAM22A family with sequence similarity 22, member A 394953 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5304 TLN2 talin 2 3904914 4 4 4 1 0 2 0 1 1 0 0.33 1.00 -5305 CD276 CD276 molecule 606372 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5306 ESPN espin 351351 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5307 DKC1 dyskeratosis congenita 1, dyskerin 803595 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5308 ZC4H2 361998 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5309 OR2AG1 olfactory receptor, family 2, subfamily AG, member 1 484185 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5310 TANC2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 2979132 4 4 4 0 2 1 1 0 0 0 0.33 1.00 -5311 CNTNAP2 contactin associated protein-like 2 2023437 3 3 3 2 1 0 1 0 1 0 0.33 1.00 -5312 RASAL1 RAS protein activator like 1 (GAP1 like) 989157 1 1 1 0 0 0 0 1 0 0 0.33 1.00 -5313 FNBP1 formin binding protein 1 885222 1 1 1 0 0 0 0 0 1 0 0.33 1.00 -5314 ZNF655 zinc finger protein 655 975975 1 1 1 1 0 0 0 0 1 0 0.33 1.00 -5315 LAMC1 laminin, gamma 1 (formerly LAMB2) 2291640 2 2 2 1 1 0 0 0 1 0 0.33 1.00 -5316 BTN3A1 butyrophilin, subfamily 3, member A1 800046 1 1 1 1 0 0 1 0 0 0 0.33 1.00 -5317 POU5F2 POU domain class 5, transcription factor 2 443118 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5318 SIAE sialic acid acetylesterase 781287 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5319 SERPINI1 serpin peptidase inhibitor, clade I (neuroserpin), member 1 641355 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5320 RBM9 RNA binding motif protein 9 618033 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5321 OR10A2 olfactory receptor, family 10, subfamily A, member 2 464412 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5322 ACAA2 acetyl-Coenzyme A acyltransferase 2 577473 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5323 OR5D14 olfactory receptor, family 5, subfamily D, member 14 481143 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5324 FZD1 frizzled homolog 1 (Drosophila) 732108 1 1 1 1 0 1 0 0 0 0 0.33 1.00 -5325 SLC25A14 solute carrier family 25 (mitochondrial carrier, brain), member 14 516126 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5326 CCDC30 1215279 1 1 1 0 0 0 0 0 1 0 0.33 1.00 -5327 TNPO1 transportin 1 1405911 2 2 2 0 1 0 0 0 1 0 0.33 1.00 -5328 ZNF473 zinc finger protein 473 1334424 2 2 2 0 2 0 0 0 0 0 0.33 1.00 -5329 CCDC144B coiled-coil domain containing 144B 542490 1 1 1 1 0 0 1 0 0 0 0.33 1.00 -5330 AURKA aurora kinase A 630708 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5331 ABI3BP ABI gene family, member 3 (NESH) binding protein 1654848 2 2 2 0 0 0 0 0 2 0 0.33 1.00 -5332 CCDC136 coiled-coil domain containing 136 1446471 2 2 2 1 1 1 0 0 0 0 0.33 1.00 -5333 ZNF75A zinc finger protein 75a 457821 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5334 SYNCRIP synaptotagmin binding, cytoplasmic RNA interacting protein 969384 1 1 1 1 0 0 0 0 1 0 0.33 1.00 -5335 COL4A3BP collagen, type IV, alpha 3 (Goodpasture antigen) binding protein 934401 1 1 1 0 0 0 0 0 1 0 0.33 1.00 -5336 NCKAP5 2893956 4 4 3 4 1 2 1 0 0 0 0.33 1.00 -5337 POTED 912093 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5338 PIP4K2A phosphatidylinositol-5-phosphate 4-kinase, type II, alpha 589641 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5339 MSTN myostatin 577980 1 1 1 1 0 0 1 0 0 0 0.33 1.00 -5340 ALG11 asparagine-linked glycosylation 11 homolog (S. cerevisiae, alpha-1,2-mannosyltransferase) 753402 1 1 1 1 0 0 1 0 0 0 0.33 1.00 -5341 DUSP9 dual specificity phosphatase 9 398502 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5342 ELTD1 EGF, latrophilin and seven transmembrane domain containing 1 1068249 2 2 2 1 0 0 1 1 0 0 0.33 1.00 -5343 EIF2S1 eukaryotic translation initiation factor 2, subunit 1 alpha, 35kDa 494832 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5344 MYH8 myosin, heavy chain 8, skeletal muscle, perinatal 3024762 4 4 4 2 1 2 0 1 0 0 0.33 1.00 -5345 LAMA1 laminin, alpha 1 4424082 6 6 6 4 1 3 1 0 1 0 0.33 1.00 -5346 BRF1 BRF1 homolog, subunit of RNA polymerase III transcription initiation factor IIIB (S. cerevisiae) 674310 1 1 1 1 1 0 0 0 0 0 0.33 1.00 -5347 SLC28A1 solute carrier family 28 (sodium-coupled nucleoside transporter), member 1 1011972 2 2 2 1 0 1 1 0 0 0 0.33 1.00 -5348 RPTN repetin 1198041 2 2 2 0 1 0 1 0 0 0 0.33 1.00 -5349 LETMD1 LETM1 domain containing 1 567333 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5350 VPS26A vacuolar protein sorting 26 homolog A (S. pombe) 513591 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5351 CYBB cytochrome b-245, beta polypeptide (chronic granulomatous disease) 894855 1 1 1 0 0 0 0 0 1 0 0.33 1.00 -5352 OR13F1 olfactory receptor, family 13, subfamily F, member 1 488748 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5353 PRRT3 proline-rich transmembrane protein 3 669240 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5354 RAE1 RAE1 RNA export 1 homolog (S. pombe) 583050 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5355 AIPL1 aryl hydrocarbon receptor interacting protein-like 1 575445 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5356 SPTBN2 spectrin, beta, non-erythrocytic 2 3286374 5 5 5 1 2 1 1 0 1 0 0.33 1.00 -5357 MBL2 mannose-binding lectin (protein C) 2, soluble (opsonic defect) 386841 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5358 PRMT7 protein arginine methyltransferase 7 902967 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5359 HNRNPR heterogeneous nuclear ribonucleoprotein R 989157 1 1 1 0 0 0 0 1 0 0 0.33 1.00 -5360 PCDHB12 protocadherin beta 12 1212237 2 2 2 0 0 0 1 1 0 0 0.33 1.00 -5361 SAMD9L sterile alpha motif domain containing 9-like 2412813 4 4 4 0 1 0 2 1 0 0 0.33 1.00 -5362 IPO5 importin 5 1702506 3 3 3 0 2 0 0 1 0 0 0.33 1.00 -5363 MCM4 minichromosome maintenance complex component 4 1309074 2 2 2 1 2 0 0 0 0 0 0.33 1.00 -5364 BTNL2 butyrophilin-like 2 (MHC class II associated) 705744 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5365 GRPR gastrin-releasing peptide receptor 591669 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5366 PI4K2B phosphatidylinositol 4-kinase type 2 beta 615498 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5367 DDX24 DEAD (Asp-Glu-Ala-Asp) box polypeptide 24 1324284 2 2 2 0 0 0 1 1 0 0 0.33 1.00 -5368 IDO1 522717 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5369 ANK3 ankyrin 3, node of Ranvier (ankyrin G) 6914973 10 9 10 0 2 1 4 3 0 0 0.33 1.00 -5370 TGM5 transglutaminase 5 1123005 2 2 2 1 1 0 1 0 0 0 0.33 1.00 -5371 EMR3 egf-like module containing, mucin-like, hormone receptor-like 3 1025661 2 2 2 0 2 0 0 0 0 0 0.33 1.00 -5372 BMS1 BMS1 homolog, ribosome assembly protein (yeast) 1996059 3 3 3 1 1 2 0 0 0 0 0.33 1.00 -5373 SLC16A13 solute carrier family 16, member 13 (monocarboxylic acid transporter 13) 621582 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5374 AMDHD2 amidohydrolase domain containing 2 575952 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5375 TAOK1 TAO kinase 1 1469286 2 2 2 0 0 0 2 0 0 0 0.33 1.00 -5376 SEPT14 septin 14 652509 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5377 ENPP7 ectonucleotide pyrophosphatase/phosphodiesterase 7 697632 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5378 UBASH3A ubiquitin associated and SH3 domain containing, A 924768 1 1 1 1 0 1 0 0 0 0 0.33 1.00 -5379 TLR10 toll-like receptor 10 1237080 1 1 1 1 0 0 0 0 1 0 0.33 1.00 -5380 TIAM2 T-cell lymphoma invasion and metastasis 2 2637414 4 4 4 1 2 1 0 0 1 0 0.33 1.00 -5381 WWC2 WW and C2 domain containing 2 1368900 2 2 2 0 2 0 0 0 0 0 0.33 1.00 -5382 ATP6V1C1 ATPase, H+ transporting, lysosomal 42kDa, V1 subunit C1 606879 1 1 1 0 0 0 0 1 0 0 0.33 1.00 -5383 KLHL23 kelch-like 23 (Drosophila) 856323 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5384 SLC6A13 solute carrier family 6 (neurotransmitter transporter, GABA), member 13 909558 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5385 SERPINB3 serpin peptidase inhibitor, clade B (ovalbumin), member 3 608907 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5386 PLBD1 804609 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5387 RIPK4 receptor-interacting serine-threonine kinase 4 916149 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5388 OR5B17 olfactory receptor, family 5, subfamily B, member 17 481143 1 1 1 1 0 0 1 0 0 0 0.33 1.00 -5389 L3MBTL3 l(3)mbt-like 3 (Drosophila) 1181817 2 2 2 0 0 0 2 0 0 0 0.33 1.00 -5390 ZNF280B zinc finger protein 280B 829452 1 1 1 0 0 0 0 0 1 0 0.33 1.00 -5391 SASS6 spindle assembly 6 homolog (C. elegans) 1035294 2 2 2 0 0 1 1 0 0 0 0.33 1.00 -5392 MTRF1L mitochondrial translational release factor 1-like 484185 1 1 1 1 0 0 1 0 0 0 0.33 1.00 -5393 CCDC62 coiled-coil domain containing 62 1072305 2 2 2 1 0 1 1 0 0 0 0.33 1.00 -5394 PDZD4 PDZ domain containing 4 376701 1 1 1 1 0 1 0 0 0 0 0.33 1.00 -5395 GTF2IRD2B GTF2I repeat domain containing 2B 1243164 1 1 1 0 0 0 0 0 1 0 0.33 1.00 -5396 RSPH10B radial spoke head 10 homolog B (Chlamydomonas) 1690845 2 2 2 0 1 0 0 0 1 0 0.33 1.00 -5397 RRP15 ribosomal RNA processing 15 homolog (S. cerevisiae) 440583 1 1 1 0 0 0 0 0 1 0 0.33 1.00 -5398 HEY2 hairy/enhancer-of-split related with YRPW motif 2 480129 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5399 TUBA3C tubulin, alpha 3c 696111 1 1 1 0 0 1 0 0 0 0 0.33 1.00 -5400 KLF7 Kruppel-like factor 7 (ubiquitous) 468975 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5401 RBM41 RNA binding motif protein 41 643890 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5402 CACNG4 calcium channel, voltage-dependent, gamma subunit 4 446160 1 1 1 0 1 0 0 0 0 0 0.33 1.00 -5403 DPYS dihydropyrimidinase 673296 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5404 TRIM60 tripartite motif-containing 60 719940 1 1 1 1 1 0 0 0 0 0 0.33 1.00 -5405 SUCLA2 succinate-CoA ligase, ADP-forming, beta subunit 680394 1 1 1 0 0 0 1 0 0 0 0.33 1.00 -5406 MKRN2 makorin, ring finger protein, 2 635271 1 1 1 0 1 0 0 0 0 0 0.34 1.00 -5407 IKZF4 IKAROS family zinc finger 4 (Eos) 859872 1 1 1 0 0 0 0 0 1 0 0.34 1.00 -5408 AMICA1 adhesion molecule, interacts with CXADR antigen 1 627666 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5409 NCKAP1L NCK-associated protein 1-like 1778556 3 3 3 0 1 2 0 0 0 0 0.34 1.00 -5410 SLC30A8 solute carrier family 30 (zinc transporter), member 8 578994 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5411 ZBTB5 zinc finger and BTB domain containing 5 1033266 2 2 2 0 1 1 0 0 0 0 0.34 1.00 -5412 SGPP1 sphingosine-1-phosphate phosphatase 1 486720 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5413 OLFML3 olfactomedin-like 3 625131 1 1 1 1 0 0 1 0 0 0 0.34 1.00 -5414 OR6K2 olfactory receptor, family 6, subfamily K, member 2 496353 1 1 1 0 1 0 0 0 0 0 0.34 1.00 -5415 RGL2 ral guanine nucleotide dissociation stimulator-like 2 1001832 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5416 RBM33 RNA binding motif protein 33 1363830 2 2 2 0 0 2 0 0 0 0 0.34 1.00 -5417 OR9K2 olfactory receptor, family 9, subfamily K, member 2 513084 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5418 PTPRG protein tyrosine phosphatase, receptor type, G 2075151 3 3 3 0 0 1 2 0 0 0 0.34 1.00 -5419 WIZ widely interspaced zinc finger motifs 890292 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5420 PABPC1L poly(A) binding protein, cytoplasmic 1-like 754416 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5421 PDGFRL platelet-derived growth factor receptor-like 554151 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5422 ZNF93 zinc finger protein 93 952653 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5423 PPM1H protein phosphatase 1H (PP2C domain containing) 677352 1 1 1 1 1 0 0 0 0 0 0.34 1.00 -5424 LCOR ligand dependent nuclear receptor corepressor 666198 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5425 COL16A1 collagen, type XVI, alpha 1 2181621 3 3 3 1 0 2 0 0 1 0 0.34 1.00 -5426 ABCA8 ATP-binding cassette, sub-family A (ABC1), member 8 2481258 4 4 4 2 2 1 1 0 0 0 0.34 1.00 -5427 C4BPA complement component 4 binding protein, alpha 931866 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5428 TMEM57 transmembrane protein 57 991185 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5429 TRPM4 transient receptor potential cation channel, subfamily M, member 4 1393743 2 2 2 2 1 0 0 0 1 0 0.34 1.00 -5430 ATP6V0D2 ATPase, H+ transporting, lysosomal 38kDa, V0 subunit d2 550095 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5431 DEPDC1 DEP domain containing 1 1259388 1 1 1 0 0 0 0 0 1 0 0.34 1.00 -5432 SUGT1 SGT1, suppressor of G2 allele of SKP1 (S. cerevisiae) 534378 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5433 KRT35 keratin 35 707772 1 1 1 1 0 1 0 0 0 0 0.34 1.00 -5434 EHD1 EH-domain containing 1 710307 1 1 1 1 0 1 0 0 0 0 0.34 1.00 -5435 BMI1 BMI1 polycomb ring finger oncogene 515619 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5436 KIAA0240 KIAA0240 1664988 2 2 2 1 0 0 1 0 1 0 0.34 1.00 -5437 PPAN-P2RY11 PPAN-P2RY11 973947 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5438 C4BPB complement component 4 binding protein, beta 396981 1 1 1 1 0 0 1 0 0 0 0.34 1.00 -5439 FCN2 ficolin (collagen/fibrinogen domain containing lectin) 2 (hucolin) 455286 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5440 KHDRBS2 KH domain containing, RNA binding, signal transduction associated 2 518661 1 1 1 2 1 0 0 0 0 0 0.34 1.00 -5441 EML5 echinoderm microtubule associated protein like 5 2924376 4 4 4 0 1 1 0 0 2 0 0.34 1.00 -5442 C3orf23 chromosome 3 open reading frame 23 802581 1 1 1 0 1 0 0 0 0 0 0.34 1.00 -5443 SUPT6H suppressor of Ty 6 homolog (S. cerevisiae) 2699775 4 4 4 0 1 1 1 0 1 0 0.34 1.00 -5444 KRBA1 KRAB-A domain containing 1 781794 1 1 1 0 1 0 0 0 0 0 0.34 1.00 -5445 APP amyloid beta (A4) precursor protein (peptidase nexin-II, Alzheimer disease) 1144806 2 2 2 0 0 0 0 1 1 0 0.34 1.00 -5446 TRIM50 tripartite motif-containing 50 474045 1 1 1 0 0 0 0 0 1 0 0.34 1.00 -5447 HCRTR1 hypocretin (orexin) receptor 1 545532 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5448 TGFBRAP1 transforming growth factor, beta receptor associated protein 1 1331889 2 2 2 0 1 1 0 0 0 0 0.34 1.00 -5449 SCN1A sodium channel, voltage-gated, type I, alpha subunit 3109938 4 4 4 1 0 2 0 1 1 0 0.34 1.00 -5450 MTO1 mitochondrial translation optimization 1 homolog (S. cerevisiae) 1078389 2 2 2 0 2 0 0 0 0 0 0.34 1.00 -5451 TPD52 tumor protein D52 394953 1 1 1 1 0 0 1 0 0 0 0.34 1.00 -5452 TMCO6 transmembrane and coiled-coil domains 6 676845 1 1 1 1 0 1 0 0 0 0 0.34 1.00 -5453 PXDNL peroxidasin homolog (Drosophila)-like 1763346 3 3 3 1 2 1 0 0 0 0 0.34 1.00 -5454 XPO6 exportin 6 1738503 2 2 2 1 0 0 0 1 1 0 0.34 1.00 -5455 CELF1 771654 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5456 DLX5 distal-less homeobox 5 444639 1 1 1 1 0 0 1 0 0 0 0.34 1.00 -5457 ATP2A1 ATPase, Ca++ transporting, cardiac muscle, fast twitch 1 1573221 2 2 2 1 1 0 0 0 1 0 0.34 1.00 -5458 RPN1 ribophorin I 810693 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5459 FAM120C family with sequence similarity 120C 1370421 2 2 2 1 0 1 1 0 0 0 0.34 1.00 -5460 SOCS5 suppressor of cytokine signaling 5 818805 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5461 SPIC Spi-C transcription factor (Spi-1/PU.1 related) 388869 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5462 MAN2B1 mannosidase, alpha, class 2B, member 1 1406418 2 2 2 2 0 0 2 0 0 0 0.34 1.00 -5463 NR1D1 nuclear receptor subfamily 1, group D, member 1 709800 1 1 1 1 0 1 0 0 0 0 0.34 1.00 -5464 POLL polymerase (DNA directed), lambda 891813 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5465 ABCC6 ATP-binding cassette, sub-family C (CFTR/MRP), member 6 1544829 2 2 2 2 1 0 0 1 0 0 0.34 1.00 -5466 WARS2 tryptophanyl tRNA synthetase 2, mitochondrial 575952 1 1 1 0 0 0 0 0 1 0 0.34 1.00 -5467 ITIH1 inter-alpha (globulin) inhibitor H1 1374477 2 2 2 0 0 1 1 0 0 0 0.34 1.00 -5468 KCNK18 potassium channel, subfamily K, member 18 589641 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5469 ZNF667 zinc finger protein 667 937443 1 1 1 0 0 0 0 0 1 0 0.34 1.00 -5470 CYP27A1 cytochrome P450, family 27, subfamily A, polypeptide 1 733122 1 1 1 1 0 1 0 0 0 0 0.34 1.00 -5471 MMP9 matrix metallopeptidase 9 (gelatinase B, 92kDa gelatinase, 92kDa type IV collagenase) 849732 1 1 1 1 1 0 0 0 0 0 0.34 1.00 -5472 GPBP1L1 GC-rich promoter binding protein 1-like 1 742755 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5473 TEAD3 TEA domain family member 3 686478 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5474 ZNF28 zinc finger protein 28 1015014 2 2 2 2 0 1 1 0 0 0 0.34 1.00 -5475 AZGP1 alpha-2-glycoprotein 1, zinc-binding 462891 1 1 1 1 0 1 0 0 0 0 0.34 1.00 -5476 AHCY S-adenosylhomocysteine hydrolase 661128 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5477 CCDC14 coiled-coil domain containing 14 1215786 2 2 2 0 0 0 1 0 1 0 0.34 1.00 -5478 KIAA2026 KIAA2026 2909673 4 4 4 0 2 1 1 0 0 0 0.34 1.00 -5479 RBM42 RNA binding motif protein 42 524745 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5480 PCDHGB2 protocadherin gamma subfamily B, 2 1400841 2 2 2 2 0 0 1 0 1 0 0.34 1.00 -5481 SULT1A1 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 1 502437 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5482 CSPG4 chondroitin sulfate proteoglycan 4 1680198 2 2 2 6 0 1 0 0 1 0 0.34 1.00 -5483 PI16 peptidase inhibitor 16 589134 1 1 1 1 0 0 0 1 0 0 0.34 1.00 -5484 ABCF1 ATP-binding cassette, sub-family F (GCN20), member 1 1298427 2 2 2 0 0 1 1 0 0 0 0.34 1.00 -5485 ENOX2 ecto-NOX disulfide-thiol exchanger 2 955188 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5486 UPRT uracil phosphoribosyltransferase (FUR1) homolog (S. cerevisiae) 485706 1 1 1 1 0 1 0 0 0 0 0.34 1.00 -5487 EGFL6 EGF-like-domain, multiple 6 868491 1 1 1 1 0 0 0 0 1 0 0.34 1.00 -5488 FAM83F family with sequence similarity 83, member F 402051 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5489 PKHD1 polycystic kidney and hepatic disease 1 (autosomal recessive) 6351696 8 8 8 2 1 3 1 1 2 0 0.34 1.00 -5490 ASZ1 ankyrin repeat, SAM and basic leucine zipper domain containing 1 750360 1 1 1 0 0 0 0 1 0 0 0.34 1.00 -5491 ABI1 abl-interactor 1 798525 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5492 TSSK1B testis-specific serine kinase 1B 561756 1 1 1 1 0 0 1 0 0 0 0.34 1.00 -5493 P2RY2 purinergic receptor P2Y, G-protein coupled, 2 576966 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5494 ZNF648 zinc finger protein 648 542490 1 1 1 0 1 0 0 0 0 0 0.34 1.00 -5495 SYN1 synapsin I 597753 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5496 GABRB2 gamma-aminobutyric acid (GABA) A receptor, beta 2 799539 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5497 SPDYE3 557700 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5498 PDHA2 pyruvate dehydrogenase (lipoamide) alpha 2 571389 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5499 ZNF674 zinc finger protein 674 893334 2 1 2 0 0 0 1 1 0 0 0.34 1.00 -5500 BAT2L2 3996174 4 4 4 0 1 1 0 0 2 0 0.34 1.00 -5501 DHRS7 dehydrogenase/reductase (SDR family) member 7 461877 1 1 1 1 1 0 0 0 0 0 0.34 1.00 -5502 SUSD5 sushi domain containing 5 909558 1 1 1 1 0 1 0 0 0 0 0.34 1.00 -5503 KCNH4 potassium voltage-gated channel, subfamily H (eag-related), member 4 1408953 2 2 2 0 1 1 0 0 0 0 0.34 1.00 -5504 ZNF205 zinc finger protein 205 632736 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5505 CEACAM20 carcinoembryonic antigen-related cell adhesion molecule 20 932373 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5506 UTP15 UTP15, U3 small nucleolar ribonucleoprotein, homolog (S. cerevisiae) 813735 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5507 SRP72 signal recognition particle 72kDa 1003353 1 1 1 2 0 0 0 0 1 0 0.34 1.00 -5508 GPATCH4 G patch domain containing 4 596232 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5509 MYH4 myosin, heavy chain 4, skeletal muscle 3027804 4 4 4 1 0 2 0 1 1 0 0.34 1.00 -5510 CASZ1 castor zinc finger 1 1499706 2 2 2 2 0 1 1 0 0 0 0.34 1.00 -5511 ARHGAP25 Rho GTPase activating protein 25 1026675 2 2 2 0 1 1 0 0 0 0 0.34 1.00 -5512 RBM5 RNA binding motif protein 5 1289808 1 1 1 0 0 0 0 0 1 0 0.34 1.00 -5513 FBXL13 F-box and leucine-rich repeat protein 13 1155960 2 2 2 0 0 2 0 0 0 0 0.34 1.00 -5514 PXN paxillin 685464 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5515 PENK proenkephalin 373152 1 1 1 2 1 0 0 0 0 0 0.34 1.00 -5516 PVRL1 poliovirus receptor-related 1 (herpesvirus entry mediator C) 984087 1 1 1 0 0 0 0 0 1 0 0.34 1.00 -5517 CRELD1 cysteine-rich with EGF-like domains 1 644397 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5518 ATF4 activating transcription factor 4 (tax-responsive enhancer element B67) 539448 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5519 LRRN2 leucine rich repeat neuronal 2 1087008 2 2 2 1 0 1 0 1 0 0 0.34 1.00 -5520 TACR2 tachykinin receptor 2 536406 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5521 CSPP1 centrosome and spindle pole associated protein 1 1972737 3 3 3 0 0 0 3 0 0 0 0.34 1.00 -5522 DCAF8 933894 1 1 1 1 0 1 0 0 0 0 0.34 1.00 -5523 METTL14 700674 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5524 ZNF780B zinc finger protein 780B 1276626 2 2 2 0 0 2 0 0 0 0 0.34 1.00 -5525 EMILIN2 elastin microfibril interfacer 2 1386645 2 2 2 1 1 1 0 0 0 0 0.34 1.00 -5526 GNAQ guanine nucleotide binding protein (G protein), q polypeptide 490776 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5527 CDK7 cyclin-dependent kinase 7 516633 1 1 1 0 1 0 0 0 0 0 0.34 1.00 -5528 SGPP2 sphingosine-1-phosphate phosphotase 2 505479 1 1 1 0 1 0 0 0 0 0 0.34 1.00 -5529 PIGA phosphatidylinositol glycan anchor biosynthesis, class A (paroxysmal nocturnal hemoglobinuria) 747825 1 1 1 0 1 0 0 0 0 0 0.34 1.00 -5530 IMPA1 inositol(myo)-1(or 4)-monophosphatase 1 451230 1 1 1 0 0 0 1 0 0 0 0.34 1.00 -5531 ALPK3 alpha-kinase 3 2318004 3 3 2 1 0 3 0 0 0 0 0.34 1.00 -5532 CAP2 CAP, adenylate cyclase-associated protein, 2 (yeast) 751374 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5533 FCAMR Fc receptor, IgA, IgM, high affinity 469482 1 1 1 0 0 1 0 0 0 0 0.34 1.00 -5534 CYP17A1 cytochrome P450, family 17, subfamily A, polypeptide 1 694590 1 1 1 0 1 0 0 0 0 0 0.34 1.00 -5535 TIGD2 tigger transposable element derived 2 802074 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5536 MICALCL MICAL C-terminal like 1025154 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5537 CD36 CD36 molecule (thrombospondin receptor) 743769 1 1 1 1 0 1 0 0 0 0 0.35 1.00 -5538 MAMDC2 MAM domain containing 2 1013493 1 1 1 1 0 0 0 0 1 0 0.35 1.00 -5539 PARD3 par-3 partitioning defective 3 homolog (C. elegans) 2057913 3 3 3 2 2 0 1 0 0 0 0.35 1.00 -5540 TRAK1 trafficking protein, kinesin binding 1 1638117 2 2 2 0 1 0 0 0 1 0 0.35 1.00 -5541 PDGFRB platelet-derived growth factor receptor, beta polypeptide 1618344 2 2 2 1 0 2 0 0 0 0 0.35 1.00 -5542 POLE2 polymerase (DNA directed), epsilon 2 (p59 subunit) 805116 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5543 MAP4K1 mitogen-activated protein kinase kinase kinase kinase 1 941499 1 1 1 1 0 1 0 0 0 0 0.35 1.00 -5544 OR5M3 olfactory receptor, family 5, subfamily M, member 3 470496 1 1 1 1 0 0 1 0 0 0 0.35 1.00 -5545 PAFAH1B1 platelet-activating factor acetylhydrolase, isoform Ib, alpha subunit 45kDa 605358 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5546 SWAP70 835029 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5547 OR51B4 olfactory receptor, family 51, subfamily B, member 4 475059 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5548 PITRM1 pitrilysin metallopeptidase 1 1439880 2 2 2 0 0 2 0 0 0 0 0.35 1.00 -5549 PDCD11 programmed cell death 11 2809794 4 4 4 0 0 1 2 0 1 0 0.35 1.00 -5550 EIF2S2 eukaryotic translation initiation factor 2, subunit 2 beta, 38kDa 471003 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5551 GBF1 golgi-specific brefeldin A resistance factor 1 2908152 4 4 4 0 0 1 0 2 1 0 0.35 1.00 -5552 FAM65C 1291836 2 2 2 1 1 0 0 1 0 0 0.35 1.00 -5553 B3GALNT1 beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) 507000 1 1 1 0 0 0 0 1 0 0 0.35 1.00 -5554 PKP1 plakophilin 1 (ectodermal dysplasia/skin fragility syndrome) 1046955 2 2 2 0 1 0 1 0 0 0 0.35 1.00 -5555 KRT6C keratin 6C 769626 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5556 EPC1 enhancer of polycomb homolog 1 (Drosophila) 1302990 2 2 2 0 0 0 1 0 1 0 0.35 1.00 -5557 EFTUD2 elongation factor Tu GTP binding domain containing 2 1533168 2 2 2 1 1 1 0 0 0 0 0.35 1.00 -5558 ZNF334 zinc finger protein 334 1043913 2 2 2 0 1 0 1 0 0 0 0.35 1.00 -5559 UBE3B ubiquitin protein ligase E3B 1677156 2 2 2 0 0 0 2 0 0 0 0.35 1.00 -5560 FAM164C 699153 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5561 CCDC121 coiled-coil domain containing 121 477087 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5562 XPOT exportin, tRNA (nuclear export receptor for tRNAs) 1513395 2 2 2 1 0 0 1 1 0 0 0.35 1.00 -5563 KBTBD4 kelch repeat and BTB (POZ) domain containing 4 810186 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5564 STK10 serine/threonine kinase 10 1361802 2 2 2 0 1 0 0 1 0 0 0.35 1.00 -5565 EPS8 epidermal growth factor receptor pathway substrate 8 1292343 3 2 3 0 1 0 0 1 1 0 0.35 1.00 -5566 XRCC4 X-ray repair complementing defective repair in Chinese hamster cells 4 526773 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5567 TOX3 TOX high mobility group box family member 3 754416 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5568 FBXO39 F-box protein 39 679887 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5569 TPK1 thiamin pyrophosphokinase 1 363519 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5570 DDX31 DEAD (Asp-Glu-Ala-Asp) box polypeptide 31 1140243 2 2 2 0 0 1 1 0 0 0 0.35 1.00 -5571 EPHA3 EPH receptor A3 1538745 2 2 2 0 1 0 0 0 1 0 0.35 1.00 -5572 OR4K2 olfactory receptor, family 4, subfamily K, member 2 481143 1 1 1 1 0 1 0 0 0 0 0.35 1.00 -5573 DSP desmoplakin 4328766 6 6 6 2 2 2 0 1 1 0 0.35 1.00 -5574 C6orf25 chromosome 6 open reading frame 25 404586 1 1 1 2 0 1 0 0 0 0 0.35 1.00 -5575 OR10H4 olfactory receptor, family 10, subfamily H, member 4 484185 1 1 1 2 0 1 0 0 0 0 0.35 1.00 -5576 SENP1 SUMO1/sentrin specific peptidase 1 968877 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5577 FOXD4 forkhead box D4 656058 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5578 MAP3K4 mitogen-activated protein kinase kinase kinase 4 2422953 3 3 3 0 0 1 0 0 2 0 0.35 1.00 -5579 MTSS1 metastasis suppressor 1 1088529 2 2 2 0 2 0 0 0 0 0 0.35 1.00 -5580 ZBTB33 zinc finger and BTB domain containing 33 1025661 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5581 TBX5 T-box 5 836043 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5582 LPPR5 429429 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5583 OR7D2 olfactory receptor, family 7, subfamily D, member 2 478101 1 1 1 1 0 0 1 0 0 0 0.35 1.00 -5584 MAP2K3 mitogen-activated protein kinase kinase 3 457314 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5585 AUP1 ancient ubiquitous protein 1 574431 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5586 ADAMTS10 ADAM metallopeptidase with thrombospondin type 1 motif, 10 1261416 2 2 2 1 0 2 0 0 0 0 0.35 1.00 -5587 B3GALT1 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 1 499395 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5588 C2orf39 chromosome 2 open reading frame 39 1080924 2 2 2 1 0 1 1 0 0 0 0.35 1.00 -5589 ATP8B4 ATPase, class I, type 8B, member 4 1869309 3 3 3 0 0 2 1 0 0 0 0.35 1.00 -5590 C19orf44 chromosome 19 open reading frame 44 921726 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5591 EPB41L2 erythrocyte membrane protein band 4.1-like 2 1566630 2 2 2 0 0 0 1 0 1 0 0.35 1.00 -5592 ADCY4 adenylate cyclase 4 1336452 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5593 PON3 paraoxonase 3 558207 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5594 GBP5 guanylate binding protein 5 913107 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5595 ANAPC7 anaphase promoting complex subunit 7 831987 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5596 ADAM21 ADAM metallopeptidase domain 21 1101711 2 2 2 2 1 0 1 0 0 0 0.35 1.00 -5597 USP46 ubiquitin specific peptidase 46 513084 1 1 1 1 0 1 0 0 0 0 0.35 1.00 -5598 NUP214 nucleoporin 214kDa 3228576 4 4 4 0 0 0 1 1 2 0 0.35 1.00 -5599 FLNA filamin A, alpha (actin binding protein 280) 3130725 4 4 4 1 1 2 0 0 1 0 0.35 1.00 -5600 SATB1 SATB homeobox 1 1182324 2 2 2 0 2 0 0 0 0 0 0.35 1.00 -5601 GALNT13 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 13 (GalNAc-T13) 869505 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5602 ACOT4 acyl-CoA thioesterase 4 414219 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5603 PRPS2 phosphoribosyl pyrophosphate synthetase 2 440076 1 1 1 1 1 0 0 0 0 0 0.35 1.00 -5604 ABCB6 ATP-binding cassette, sub-family B (MDR/TAP), member 6 1023633 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5605 CAMK1 calcium/calmodulin-dependent protein kinase I 586599 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5606 GPR12 G protein-coupled receptor 12 511563 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5607 PPP1R15B protein phosphatase 1, regulatory (inhibitor) subunit 15B 1090050 2 2 2 1 0 1 0 1 0 0 0.35 1.00 -5608 BEND5 443625 1 1 1 0 0 0 0 1 0 0 0.35 1.00 -5609 ZNF33B zinc finger protein 33B 1192971 2 2 2 0 1 0 0 1 0 0 0.35 1.00 -5610 PFKFB4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 722982 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5611 CLIC1 chloride intracellular channel 1 380250 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5612 PLA2G4D phospholipase A2, group IVD (cytosolic) 1047462 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5613 ARNTL aryl hydrocarbon receptor nuclear translocator-like 992199 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5614 QPCTL glutaminyl-peptide cyclotransferase-like 489255 1 1 1 1 0 0 1 0 0 0 0.35 1.00 -5615 ZNF678 zinc finger protein 678 758979 1 1 1 0 0 0 0 1 0 0 0.35 1.00 -5616 BFAR bifunctional apoptosis regulator 700167 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5617 C16orf93 385827 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5618 COG1 component of oligomeric golgi complex 1 1358253 2 2 2 0 0 2 0 0 0 0 0.35 1.00 -5619 HADHB hydroxyacyl-Coenzyme A dehydrogenase/3-ketoacyl-Coenzyme A thiolase/enoyl-Coenzyme A hydratase (trifunctional protein), beta subunit 752895 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5620 C7orf31 chromosome 7 open reading frame 31 917163 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5621 SGSM2 small G protein signaling modulator 2 1201083 2 2 2 0 0 0 2 0 0 0 0.35 1.00 -5622 MYO9A myosin IXA 3958149 5 5 5 1 1 2 0 1 1 0 0.35 1.00 -5623 OR5D13 olfactory receptor, family 5, subfamily D, member 13 481143 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5624 RASGRF1 Ras protein-specific guanine nucleotide-releasing factor 1 1978821 3 3 3 2 1 2 0 0 0 0 0.35 1.00 -5625 CTDSPL CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase-like 395460 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5626 SH3D19 SH3 domain containing 19 1233531 2 2 2 0 0 2 0 0 0 0 0.35 1.00 -5627 VPS4A vacuolar protein sorting 4 homolog A (S. cerevisiae) 481143 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5628 OR1J2 olfactory receptor, family 1, subfamily J, member 2 479622 1 1 1 0 0 1 0 0 0 0 0.35 1.00 -5629 ZNF518B zinc finger protein 518B 1637103 2 2 2 0 1 0 0 1 0 0 0.35 1.00 -5630 AP3M1 adaptor-related protein complex 3, mu 1 subunit 653523 1 1 1 1 1 0 0 0 0 0 0.35 1.00 -5631 ACAD11 acyl-Coenzyme A dehydrogenase family, member 11 1228461 2 2 2 0 1 0 1 0 0 0 0.35 1.00 -5632 TADA2A 753909 1 1 1 1 0 0 0 1 0 0 0.35 1.00 -5633 MMS19 MMS19 nucleotide excision repair homolog (S. cerevisiae) 1533675 2 2 2 0 0 1 0 0 1 0 0.35 1.00 -5634 PRCP prolylcarboxypeptidase (angiotensinase C) 808158 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5635 TRIM26 tripartite motif-containing 26 835536 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5636 PPAT phosphoribosyl pyrophosphate amidotransferase 810186 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5637 CRMP1 collapsin response mediator protein 1 812721 1 1 1 1 0 1 0 0 0 0 0.35 1.00 -5638 DYNC2LI1 dynein, cytoplasmic 2, light intermediate chain 1 611949 1 1 1 0 0 0 0 0 1 0 0.35 1.00 -5639 DLGAP1 discs, large (Drosophila) homolog-associated protein 1 1318707 2 2 2 1 1 0 1 0 0 0 0.35 1.00 -5640 FAM45A family with sequence similarity 45, member A 532857 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5641 IGBP1 immunoglobulin (CD79A) binding protein 1 529308 1 1 1 0 1 0 0 0 0 0 0.35 1.00 -5642 SYVN1 synovial apoptosis inhibitor 1, synoviolin 815256 1 1 1 0 0 0 1 0 0 0 0.35 1.00 -5643 COL17A1 collagen, type XVII, alpha 1 2172495 3 3 3 1 0 3 0 0 0 0 0.36 1.00 -5644 FURIN furin (paired basic amino acid cleaving enzyme) 986115 1 1 1 1 0 0 0 1 0 0 0.36 1.00 -5645 ARHGAP20 Rho GTPase activating protein 20 1788189 3 3 3 0 2 1 0 0 0 0 0.36 1.00 -5646 PRKAG2 protein kinase, AMP-activated, gamma 2 non-catalytic subunit 813228 1 1 1 1 0 1 0 0 0 0 0.36 1.00 -5647 THAP9 THAP domain containing 9 1342536 1 1 1 0 0 0 0 0 1 0 0.36 1.00 -5648 PER1 period homolog 1 (Drosophila) 1444950 2 2 2 2 0 2 0 0 0 0 0.36 1.00 -5649 MAB21L2 mab-21-like 2 (C. elegans) 549588 1 1 1 1 0 0 0 1 0 0 0.36 1.00 -5650 MAP1S microtubule-associated protein 1S 989157 1 1 1 1 1 0 0 0 0 0 0.36 1.00 -5651 CTRC chymotrypsin C (caldecrin) 413205 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5652 AADAC arylacetamide deacetylase (esterase) 618540 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5653 GRIA3 glutamate receptor, ionotrophic, AMPA 3 1452048 2 2 2 0 0 0 0 1 1 0 0.36 1.00 -5654 INTS10 integrator complex subunit 10 1048476 1 1 1 0 0 0 0 0 1 0 0.36 1.00 -5655 XPNPEP2 X-prolyl aminopeptidase (aminopeptidase P) 2, membrane-bound 1025154 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5656 OR4E2 olfactory receptor, family 4, subfamily E, member 2 479622 1 1 1 0 0 1 0 0 0 0 0.36 1.00 -5657 ACLY ATP citrate lyase 1713660 2 2 2 0 0 2 0 0 0 0 0.36 1.00 -5658 PAQR3 progestin and adipoQ receptor family member III 486213 1 1 1 1 0 0 1 0 0 0 0.36 1.00 -5659 HSF5 heat shock transcription factor family member 5 639327 1 1 1 0 0 0 0 0 1 0 0.36 1.00 -5660 SLC30A5 solute carrier family 30 (zinc transporter), member 5 1198041 2 2 2 2 0 1 1 0 0 0 0.36 1.00 -5661 SIRT3 sirtuin (silent mating type information regulation 2 homolog) 3 (S. cerevisiae) 478101 1 1 1 0 0 1 0 0 0 0 0.36 1.00 -5662 NLRP1 NLR family, pyrin domain containing 1 2107092 3 3 3 0 1 0 1 1 0 0 0.36 1.00 -5663 WDR5 WD repeat domain 5 535392 1 1 1 1 0 0 0 0 1 0 0.36 1.00 -5664 NSUN4 NOL1/NOP2/Sun domain family, member 4 582036 1 1 1 0 0 0 0 1 0 0 0.36 1.00 -5665 KANK3 KN motif and ankyrin repeat domains 3 379743 1 1 1 1 1 0 0 0 0 0 0.36 1.00 -5666 FBXO32 F-box protein 32 500916 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5667 USP1 ubiquitin specific peptidase 1 1211730 2 2 2 0 1 0 1 0 0 0 0.36 1.00 -5668 JAK2 Janus kinase 2 (a protein tyrosine kinase) 1769937 2 2 2 0 0 0 0 0 2 0 0.36 1.00 -5669 ARSH arylsulfatase family, member H 874575 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5670 STK25 serine/threonine kinase 25 (STE20 homolog, yeast) 652509 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5671 FBXO5 F-box protein 5 637299 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5672 ZSCAN5B 739206 1 1 1 1 0 1 0 0 0 0 0.36 1.00 -5673 CSF2RB colony stimulating factor 2 receptor, beta, low-affinity (granulocyte-macrophage) 1100697 2 2 2 0 0 1 0 0 1 0 0.36 1.00 -5674 INPP5D inositol polyphosphate-5-phosphatase, 145kDa 1244178 2 2 2 1 1 1 0 0 0 0 0.36 1.00 -5675 EEFSEC eukaryotic elongation factor, selenocysteine-tRNA-specific 759993 1 1 1 1 0 1 0 0 0 0 0.36 1.00 -5676 FAM83D family with sequence similarity 83, member D 665691 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5677 AKAP3 A kinase (PRKA) anchor protein 3 1305018 2 2 2 0 0 0 1 0 1 0 0.36 1.00 -5678 MCM6 minichromosome maintenance complex component 6 1255332 2 2 2 0 0 1 0 0 1 0 0.36 1.00 -5679 B4GALT3 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 3 611442 1 1 1 0 0 0 0 0 1 0 0.36 1.00 -5680 SPOP speckle-type POZ protein 588627 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5681 CDKN2AIP CDKN2A interacting protein 749853 1 1 1 0 0 1 0 0 0 0 0.36 1.00 -5682 KIR2DL4 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 4 407121 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5683 OR6C2 olfactory receptor, family 6, subfamily C, member 2 478101 1 1 1 1 0 0 0 0 1 0 0.36 1.00 -5684 C9orf5 chromosome 9 open reading frame 5 1079403 2 2 2 1 0 1 1 0 0 0 0.36 1.00 -5685 LEFTY2 left-right determination factor 2 382785 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5686 CNTNAP1 contactin associated protein 1 1991496 3 3 3 1 1 1 0 0 1 0 0.36 1.00 -5687 FOXN3 forkhead box N3 758979 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5688 PLCXD3 phosphatidylinositol-specific phospholipase C, X domain containing 3 495846 1 1 1 0 0 0 0 0 1 0 0.36 1.00 -5689 BSDC1 BSD domain containing 1 594204 1 1 1 0 0 1 0 0 0 0 0.36 1.00 -5690 INPP4A inositol polyphosphate-4-phosphatase, type I, 107kDa 1448499 2 2 2 0 0 0 1 0 1 0 0.36 1.00 -5691 SLC7A13 solute carrier family 7, (cationic amino acid transporter, y+ system) member 13 724503 1 1 1 1 1 0 0 0 0 0 0.36 1.00 -5692 KLHDC3 kelch domain containing 3 602823 1 1 1 0 0 0 0 1 0 0 0.36 1.00 -5693 ME2 malic enzyme 2, NAD(+)-dependent, mitochondrial 920205 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5694 HNRNPF 634764 1 1 1 0 0 0 0 0 1 0 0.36 1.00 -5695 LACTB lactamase, beta 664677 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5696 CCDC19 coiled-coil domain containing 19 863928 1 1 1 0 0 1 0 0 0 0 0.36 1.00 -5697 FPR3 formyl peptide receptor 3 540462 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5698 KIAA1683 KIAA1683 1398813 2 2 2 0 0 2 0 0 0 0 0.36 1.00 -5699 FANCI Fanconi anemia, complementation group I 2003157 3 3 3 0 0 0 1 1 1 0 0.36 1.00 -5700 TROVE2 TROVE domain family, member 2 855816 1 1 1 1 0 1 0 0 0 0 0.36 1.00 -5701 MRPS5 mitochondrial ribosomal protein S5 648453 1 1 1 0 0 1 0 0 0 0 0.36 1.00 -5702 ERV3 endogenous retroviral sequence 3 (includes zinc finger protein H-plk/HPF9) 787371 1 1 1 0 0 0 0 1 0 0 0.36 1.00 -5703 OLFM4 olfactomedin 4 787371 1 1 1 1 0 1 0 0 0 0 0.36 1.00 -5704 KRT15 keratin 15 711321 1 1 1 0 0 1 0 0 0 0 0.36 1.00 -5705 EIF2C1 eukaryotic translation initiation factor 2C, 1 1343550 2 2 2 1 2 0 0 0 0 0 0.36 1.00 -5706 FES feline sarcoma oncogene 941499 1 1 1 0 0 1 0 0 0 0 0.36 1.00 -5707 UBQLN1 ubiquilin 1 826410 1 1 1 1 0 0 0 0 1 0 0.36 1.00 -5708 ZXDA zinc finger, X-linked, duplicated A 742755 1 1 1 1 0 1 0 0 0 0 0.36 1.00 -5709 FAM73A family with sequence similarity 73, member A 952146 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5710 NDUFS2 NADH dehydrogenase (ubiquinone) Fe-S protein 2, 49kDa (NADH-coenzyme Q reductase) 743769 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5711 DYNC2H1 dynein, cytoplasmic 2, heavy chain 1 6446505 8 8 8 1 0 3 2 0 3 0 0.36 1.00 -5712 BMP10 bone morphogenetic protein 10 650481 1 1 1 0 0 1 0 0 0 0 0.36 1.00 -5713 ZNF621 zinc finger protein 621 617019 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5714 ACO2 aconitase 2, mitochondrial 1211223 2 2 2 0 1 0 1 0 0 0 0.36 1.00 -5715 KIAA1841 KIAA1841 1115400 2 2 2 0 0 0 2 0 0 0 0.36 1.00 -5716 ZNF189 zinc finger protein 189 940992 1 1 1 0 0 0 0 0 1 0 0.36 1.00 -5717 LAT linker for activation of T cells 441090 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5718 ZNF618 zinc finger protein 618 1208688 2 2 2 0 1 1 0 0 0 0 0.36 1.00 -5719 ZNF488 zinc finger protein 488 519675 1 1 1 2 1 0 0 0 0 0 0.36 1.00 -5720 ZBTB22 zinc finger and BTB domain containing 22 967863 1 1 1 0 0 1 0 0 0 0 0.36 1.00 -5721 PCDH15 protocadherin 15 3882606 5 5 5 3 1 2 0 0 2 0 0.36 1.00 -5722 NR1D2 nuclear receptor subfamily 1, group D, member 2 888264 1 1 1 0 0 0 0 0 1 0 0.36 1.00 -5723 ARHGAP6 Rho GTPase activating protein 6 1068756 1 1 1 2 0 0 0 1 0 0 0.36 1.00 -5724 FASLG Fas ligand (TNF superfamily, member 6) 435513 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5725 IPMK inositol polyphosphate multikinase 548067 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5726 KRT86 keratin 86 518661 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5727 OR2L3 olfactory receptor, family 2, subfamily L, member 3 478101 1 1 1 0 0 0 0 0 1 0 0.36 1.00 -5728 MAGI1 membrane associated guanylate kinase, WW and PDZ domain containing 1 2389491 3 3 3 0 1 2 0 0 0 0 0.36 1.00 -5729 ANKRD42 ankyrin repeat domain 42 613470 1 1 1 0 1 0 0 0 0 0 0.36 1.00 -5730 MFSD6L 809172 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5731 NOS2 1211730 2 2 2 1 0 2 0 0 0 0 0.36 1.00 -5732 TM9SF2 transmembrane 9 superfamily member 2 1044420 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5733 SLC29A3 solute carrier family 29 (nucleoside transporters), member 3 735657 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5734 RAB40AL RAB40A, member RAS oncogene family-like 426387 1 1 1 0 0 0 1 0 0 0 0.36 1.00 -5735 CCDC99 coiled-coil domain containing 99 944034 1 1 1 0 0 0 0 0 1 0 0.36 1.00 -5736 OPTN optineurin 905502 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5737 FST follistatin 494832 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5738 ZNF584 zinc finger protein 584 638820 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5739 FAM190A 996255 1 1 1 0 0 0 0 0 1 0 0.37 1.00 -5740 OGT O-linked N-acetylglucosamine (GlcNAc) transferase (UDP-N-acetylglucosamine:polypeptide-N-acetylglucosaminyl transferase) 1633554 2 2 2 0 1 0 0 0 1 0 0.37 1.00 -5741 SLC27A3 solute carrier family 27 (fatty acid transporter), member 3 863421 1 1 1 1 0 0 0 0 1 0 0.37 1.00 -5742 KLHL20 kelch-like 20 (Drosophila) 950118 1 1 1 1 0 1 0 0 0 0 0.37 1.00 -5743 APPL2 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 2 1024647 1 1 1 0 0 0 0 1 0 0 0.37 1.00 -5744 HEXB hexosaminidase B (beta polypeptide) 735657 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5745 PPP1R8 protein phosphatase 1, regulatory (inhibitor) subunit 8 519168 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5746 CEP350 centrosomal protein 350kDa 4653246 6 6 6 0 0 2 2 0 2 0 0.37 1.00 -5747 FAM171B 1228461 2 2 2 1 0 1 1 0 0 0 0.37 1.00 -5748 OR2AE1 olfactory receptor, family 2, subfamily AE, member 1 494832 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5749 KIAA1755 KIAA1755 1825707 3 2 3 2 0 1 0 0 0 2 0.37 1.00 -5750 RIMBP3 RIMS binding protein 3 864435 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5751 MEIS2 Meis homeobox 2 752895 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5752 LIN54 lin-54 homolog (C. elegans) 1165086 2 2 2 0 0 0 2 0 0 0 0.37 1.00 -5753 MYO1A myosin IA 1642680 2 2 2 0 0 0 1 0 1 0 0.37 1.00 -5754 CHST11 carbohydrate (chondroitin 4) sulfotransferase 11 542997 1 1 1 2 1 0 0 0 0 0 0.37 1.00 -5755 UCHL5 ubiquitin carboxyl-terminal hydrolase L5 496860 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5756 TM6SF2 transmembrane 6 superfamily member 2 534885 1 1 1 1 1 0 0 0 0 0 0.37 1.00 -5757 ZNF569 zinc finger protein 569 1053039 1 1 1 0 0 0 0 1 0 0 0.37 1.00 -5758 ZNF430 zinc finger protein 430 878631 1 1 1 0 0 0 0 0 1 0 0.37 1.00 -5759 CXorf66 556686 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5760 OR1A1 olfactory receptor, family 1, subfamily A, member 1 472524 1 1 1 0 1 0 0 0 0 0 0.37 1.00 -5761 CPNE5 copine V 775710 1 1 1 1 0 0 0 1 0 0 0.37 1.00 -5762 PLA2G4E phospholipase A2, group IVE 1078389 1 1 1 0 0 0 0 0 1 0 0.37 1.00 -5763 SEMA3F sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3F 1084473 1 1 1 1 0 0 0 0 1 0 0.37 1.00 -5764 TCF20 transcription factor 20 (AR1) 2986737 4 4 4 0 1 1 0 1 1 0 0.37 1.00 -5765 TMEFF2 transmembrane protein with EGF-like and two follistatin-like domains 2 590655 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5766 CASKIN2 CASK interacting protein 2 652002 1 1 1 2 0 1 0 0 0 0 0.37 1.00 -5767 AGXT2 alanine-glyoxylate aminotransferase 2 763035 1 1 1 1 1 0 0 0 0 0 0.37 1.00 -5768 CLN5 ceroid-lipofuscinosis, neuronal 5 464412 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5769 TRUB1 TruB pseudouridine (psi) synthase homolog 1 (E. coli) 439062 1 1 1 0 1 0 0 0 0 0 0.37 1.00 -5770 LHX4 LIM homeobox 4 584064 1 1 1 1 0 1 0 0 0 0 0.37 1.00 -5771 ADAMTS18 ADAM metallopeptidase with thrombospondin type 1 motif, 18 1811004 2 2 2 1 0 0 1 0 1 0 0.37 1.00 -5772 EFNB2 ephrin-B2 509028 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5773 KIAA0427 KIAA0427 804609 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5774 CHRNB4 cholinergic receptor, nicotinic, beta 4 741234 1 1 1 1 0 1 0 0 0 0 0.37 1.00 -5775 NMNAT1 nicotinamide nucleotide adenylyltransferase 1 433992 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5776 KIAA1919 KIAA1919 781794 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5777 AZI2 5-azacytidine induced 2 611949 1 1 1 1 0 1 0 0 0 0 0.37 1.00 -5778 CTSG cathepsin G 399009 1 1 1 1 1 0 0 0 0 0 0.37 1.00 -5779 UBA3 ubiquitin-like modifier activating enzyme 3 715377 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5780 CD14 CD14 molecule 575952 1 1 1 0 0 0 0 0 1 0 0.37 1.00 -5781 NCDN neurochondrin 1031745 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5782 DNAJC6 DnaJ (Hsp40) homolog, subfamily C, member 6 1428726 2 2 2 0 1 0 0 0 1 0 0.37 1.00 -5783 LTB4R2 leukotriene B4 receptor 2 411684 1 1 1 0 1 0 0 0 0 0 0.37 1.00 -5784 IVNS1ABP influenza virus NS1A binding protein 1004367 1 1 1 0 0 0 0 0 1 0 0.37 1.00 -5785 ZDHHC2 zinc finger, DHHC-type containing 2 441090 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5786 CSE1L CSE1 chromosome segregation 1-like (yeast) 1527084 2 2 2 0 1 0 0 0 1 0 0.37 1.00 -5787 EXT2 exostoses (multiple) 2 1184352 2 2 2 0 1 1 0 0 0 0 0.37 1.00 -5788 SLC22A11 solute carrier family 22 (organic anion/urate transporter), member 11 764049 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5789 PIK3CG phosphoinositide-3-kinase, catalytic, gamma polypeptide 1681212 2 2 2 1 0 1 1 0 0 0 0.37 1.00 -5790 ADRA2B adrenergic, alpha-2B-, receptor 498381 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5791 RINL 512070 1 1 1 0 1 0 0 0 0 0 0.37 1.00 -5792 LIPN lipase, family member N 602316 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5793 ENC1 ectodermal-neural cortex (with BTB-like domain) 899418 1 1 1 0 1 0 0 0 0 0 0.37 1.00 -5794 VPS33B vacuolar protein sorting 33 homolog B (yeast) 935922 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5795 C2orf71 1905813 3 3 3 0 0 3 0 0 0 0 0.37 1.00 -5796 KIAA1324L KIAA1324-like 1178268 3 2 3 0 1 0 1 0 1 0 0.37 1.00 -5797 MLL myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila) 5890326 5 5 5 1 1 0 0 1 3 0 0.37 1.00 -5798 FAM63A family with sequence similarity 63, member A 741234 1 1 1 0 1 0 0 0 0 0 0.37 1.00 -5799 SLC22A9 solute carrier family 22 (organic anion transporter), member 9 862914 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5800 PARS2 prolyl-tRNA synthetase 2, mitochondrial (putative) 726024 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5801 C20orf117 chromosome 20 open reading frame 117 1213758 2 2 2 0 1 0 1 0 0 0 0.37 1.00 -5802 FAM129A family with sequence similarity 129, member A 1411488 1 1 1 0 0 0 0 0 1 0 0.37 1.00 -5803 EIF2A eukaryotic translation initiation factor 2A, 65kDa 828945 1 1 1 0 1 0 0 0 0 0 0.37 1.00 -5804 CNTN6 contactin 6 1609725 2 2 2 0 1 0 1 0 0 0 0.37 1.00 -5805 BSCL2 Bernardinelli-Seip congenital lipodystrophy 2 (seipin) 677352 2 1 2 0 0 2 0 0 0 0 0.37 1.00 -5806 SNRK SNF related kinase 1175226 2 2 2 0 1 0 0 1 0 0 0.37 1.00 -5807 PLCB1 phospholipase C, beta 1 (phosphoinositide-specific) 1915953 3 3 3 1 2 1 0 0 0 0 0.37 1.00 -5808 FEM1B fem-1 homolog b (C. elegans) 932373 1 1 1 1 1 0 0 0 0 0 0.37 1.00 -5809 TAS2R19 taste receptor, type 2, member 19 458328 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5810 DOCK6 dedicator of cytokinesis 6 2646033 3 3 3 1 0 1 0 0 2 0 0.37 1.00 -5811 NCAPD3 non-SMC condensin II complex, subunit D3 2257671 3 3 3 1 0 2 0 0 1 0 0.37 1.00 -5812 GSTCD glutathione S-transferase, C-terminal domain containing 986622 1 1 1 0 0 0 0 0 1 0 0.37 1.00 -5813 MBNL2 muscleblind-like 2 (Drosophila) 610935 1 1 1 0 0 0 0 1 0 0 0.37 1.00 -5814 CD200R1L 425880 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5815 HAUS4 571896 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5816 SF3B4 splicing factor 3b, subunit 4, 49kDa 533871 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5817 TXK TXK tyrosine kinase 833508 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5818 PTGDR prostaglandin D2 receptor (DP) 512577 1 1 1 1 0 0 1 0 0 0 0.37 1.00 -5819 RPP40 ribonuclease P/MRP 40kDa subunit 527787 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5820 RNF6 ring finger protein (C3H2C3 type) 6 1049490 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5821 NMUR2 neuromedin U receptor 2 640848 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5822 BAZ1B bromodomain adjacent to zinc finger domain, 1B 2239419 3 3 3 0 0 2 0 0 1 0 0.37 1.00 -5823 SNX32 sorting nexin 32 620568 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5824 SLC35F4 solute carrier family 35, member F4 810186 1 1 1 0 1 0 0 0 0 0 0.37 1.00 -5825 CRHR2 corticotropin releasing hormone receptor 2 432978 1 1 1 1 0 0 1 0 0 0 0.37 1.00 -5826 TNKS1BP1 tankyrase 1 binding protein 1, 182kDa 2449824 3 3 3 0 0 1 0 1 1 0 0.37 1.00 -5827 FAH fumarylacetoacetate hydrolase (fumarylacetoacetase) 667212 1 1 1 1 0 1 0 0 0 0 0.37 1.00 -5828 XDH xanthine dehydrogenase 2066532 3 3 3 0 2 0 1 0 0 0 0.37 1.00 -5829 MAP7 microtubule-associated protein 7 1058616 1 1 1 0 0 0 0 0 1 0 0.37 1.00 -5830 ZNF471 zinc finger protein 471 961779 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5831 C1orf175 chromosome 1 open reading frame 175 2057913 3 3 3 2 1 1 0 1 0 0 0.37 1.00 -5832 ZNF141 zinc finger protein 141 730587 1 1 1 0 0 0 0 1 0 0 0.37 1.00 -5833 CADM4 cell adhesion molecule 4 563784 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5834 ACPP acid phosphatase, prostate 671268 1 1 1 0 1 0 0 0 0 0 0.37 1.00 -5835 WLS 912600 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5836 TCTE1 t-complex-associated-testis-expressed 1 771654 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5837 RUNX1T1 runt-related transcription factor 1; translocated to, 1 (cyclin D-related) 947583 1 1 1 1 0 0 0 1 0 0 0.37 1.00 -5838 GSN gelsolin (amyloidosis, Finnish type) 1069263 1 1 1 1 0 0 1 0 0 0 0.37 1.00 -5839 SLC18A1 solute carrier family 18 (vesicular monoamine), member 1 785850 1 1 1 1 1 0 0 0 0 0 0.37 1.00 -5840 AGBL2 ATP/GTP binding protein-like 2 1350141 2 2 2 0 0 1 1 0 0 0 0.37 1.00 -5841 SEL1L3 1492101 2 2 2 0 0 0 2 0 0 0 0.37 1.00 -5842 RAF1 v-raf-1 murine leukemia viral oncogene homolog 1 1019577 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5843 FARS2 phenylalanyl-tRNA synthetase 2, mitochondrial 699660 1 1 1 0 0 0 0 1 0 0 0.37 1.00 -5844 THSD7A thrombospondin, type I, domain containing 7A 2477202 3 3 3 1 0 2 1 0 0 0 0.37 1.00 -5845 FCHSD1 FCH and double SH3 domains 1 867984 1 1 1 0 0 0 0 0 1 0 0.37 1.00 -5846 SHKBP1 SH3KBP1 binding protein 1 1042392 1 1 1 2 0 1 0 0 0 0 0.37 1.00 -5847 SLC6A12 solute carrier family 6 (neurotransmitter transporter, betaine/GABA), member 12 816270 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5848 KTI12 KTI12 homolog, chromatin associated (S. cerevisiae) 467961 1 1 1 0 1 0 0 0 0 0 0.37 1.00 -5849 TIMM44 translocase of inner mitochondrial membrane 44 homolog (yeast) 605865 1 1 1 1 0 1 0 0 0 0 0.37 1.00 -5850 VANGL2 vang-like 2 (van gogh, Drosophila) 808158 1 1 1 1 0 0 1 0 0 0 0.37 1.00 -5851 ANGEL1 angel homolog 1 (Drosophila) 1006395 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5852 FBXO6 F-box protein 6 457314 1 1 1 1 0 0 1 0 0 0 0.37 1.00 -5853 BCLAF1 BCL2-associated transcription factor 1 1423149 1 1 1 0 0 0 0 0 1 0 0.37 1.00 -5854 TREML2 triggering receptor expressed on myeloid cells-like 2 477087 1 1 1 1 0 0 1 0 0 0 0.37 1.00 -5855 GUCY2F guanylate cyclase 2F, retinal 1723293 2 2 2 0 0 2 0 0 0 0 0.37 1.00 -5856 CD19 CD19 molecule 776724 1 1 1 0 0 1 0 0 0 0 0.37 1.00 -5857 ZNF320 zinc finger protein 320 781794 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5858 MAP1D 509028 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5859 AMACR alpha-methylacyl-CoA racemase 605865 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5860 ZNF480 zinc finger protein 480 823368 1 1 1 0 0 0 0 1 0 0 0.37 1.00 -5861 ARSK arylsulfatase family, member K 767091 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5862 PLBD2 590655 1 1 1 0 0 0 0 1 0 0 0.37 1.00 -5863 ARHGAP36 855816 1 1 1 2 0 1 0 0 0 0 0.37 1.00 -5864 NSUN7 NOL1/NOP2/Sun domain family, member 7 794976 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5865 PRSS8 protease, serine, 8 501930 1 1 1 0 0 0 1 0 0 0 0.37 1.00 -5866 AGL amylo-1, 6-glucosidase, 4-alpha-glucanotransferase (glycogen debranching enzyme, glycogen storage disease type III) 2433600 3 3 3 0 0 1 1 0 1 0 0.38 1.00 -5867 C10orf88 chromosome 10 open reading frame 88 605358 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5868 NDUFV1 NADH dehydrogenase (ubiquinone) flavoprotein 1, 51kDa 689013 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5869 DCAF11 860379 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5870 COL13A1 collagen, type XIII, alpha 1 943020 1 1 1 1 0 1 0 0 0 0 0.38 1.00 -5871 CASC4 cancer susceptibility candidate 4 684957 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5872 CD274 CD274 molecule 454779 1 1 1 0 0 0 0 1 0 0 0.38 1.00 -5873 EPB41L5 erythrocyte membrane protein band 4.1 like 5 1165086 2 2 2 0 0 1 1 0 0 0 0.38 1.00 -5874 EPOR erythropoietin receptor 586599 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5875 NDOR1 NADPH dependent diflavin oxidoreductase 1 644397 1 1 1 1 0 1 0 0 0 0 0.38 1.00 -5876 CASK calcium/calmodulin-dependent serine protein kinase (MAGUK family) 1453569 2 2 2 0 0 1 0 1 0 0 0.38 1.00 -5877 CEP57 centrosomal protein 57kDa 759486 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5878 SILV silver homolog (mouse) 1029210 1 1 1 2 0 0 0 0 1 0 0.38 1.00 -5879 MSL3 806637 1 1 1 1 0 1 0 0 0 0 0.38 1.00 -5880 FCGRT Fc fragment of IgG, receptor, transporter, alpha 526266 1 1 1 0 1 0 0 0 0 0 0.38 1.00 -5881 ZNF311 zinc finger protein 311 1026675 1 1 1 0 0 0 0 1 0 0 0.38 1.00 -5882 ZNF234 zinc finger protein 234 1074333 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5883 PCDHGA11 protocadherin gamma subfamily A, 11 1418079 2 2 2 0 1 1 0 0 0 0 0.38 1.00 -5884 C6orf58 chromosome 6 open reading frame 58 515619 1 1 1 0 1 0 0 0 0 0 0.38 1.00 -5885 POLD2 polymerase (DNA directed), delta 2, regulatory subunit 50kDa 705237 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5886 SIPA1L1 signal-induced proliferation-associated 1 like 1 2787993 4 4 4 2 1 1 1 1 0 0 0.38 1.00 -5887 DLGAP3 discs, large (Drosophila) homolog-associated protein 3 787878 1 1 1 1 0 1 0 0 0 0 0.38 1.00 -5888 DSTYK 1304511 2 2 2 2 0 1 0 1 0 0 0.38 1.00 -5889 CCDC142 coiled-coil domain containing 142 1021098 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5890 KIAA1033 KIAA1033 1815567 2 2 2 0 0 0 1 0 1 0 0.38 1.00 -5891 IL6R interleukin 6 receptor 682422 1 1 1 0 0 0 0 1 0 0 0.38 1.00 -5892 PPP2R3A protein phosphatase 2 (formerly 2A), regulatory subunit B'', alpha 1845987 3 3 3 0 2 0 1 0 0 0 0.38 1.00 -5893 GLE1 GLE1 RNA export mediator homolog (yeast) 1103739 2 1 2 0 0 0 0 0 0 2 0.38 1.00 -5894 CWF19L2 CWF19-like 2, cell cycle control (S. pombe) 1095120 1 1 1 0 0 0 0 0 1 0 0.38 1.00 -5895 SPP1 secreted phosphoprotein 1 (osteopontin, bone sialoprotein I, early T-lymphocyte activation 1) 491283 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5896 KNG1 kininogen 1 953667 1 1 1 0 0 0 0 0 1 0 0.38 1.00 -5897 ZNF761 zinc finger protein 761 1142271 3 2 3 0 1 2 0 0 0 0 0.38 1.00 -5898 SMEK2 SMEK homolog 2, suppressor of mek1 (Dictyostelium) 1193478 2 2 2 0 1 0 0 0 1 0 0.38 1.00 -5899 ST8SIA6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 517647 1 1 1 0 0 0 0 0 1 0 0.38 1.00 -5900 TMEM66 transmembrane protein 66 475059 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5901 ELAC2 elaC homolog 2 (E. coli) 1064700 1 1 1 2 0 1 0 0 0 0 0.38 1.00 -5902 PSG4 pregnancy specific beta-1-glycoprotein 4 650988 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5903 OR4N2 olfactory receptor, family 4, subfamily N, member 2 470496 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5904 TRIM55 tripartite motif-containing 55 901953 1 1 1 0 0 0 0 0 1 0 0.38 1.00 -5905 PSMD3 proteasome (prosome, macropain) 26S subunit, non-ATPase, 3 715377 1 1 1 2 1 0 0 0 0 0 0.38 1.00 -5906 NDRG2 NDRG family member 2 596232 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5907 DLC1 deleted in liver cancer 1 2360085 3 3 3 1 0 1 1 0 1 0 0.38 1.00 -5908 ZXDC ZXD family zinc finger C 817284 1 1 1 1 0 1 0 0 0 0 0.38 1.00 -5909 PTGS2 prostaglandin-endoperoxide synthase 2 (prostaglandin G/H synthase and cyclooxygenase) 912093 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5910 LMAN1L lectin, mannose-binding, 1 like 672282 1 1 1 0 0 0 0 0 1 0 0.38 1.00 -5911 GPR6 G protein-coupled receptor 6 514605 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5912 IL1A interleukin 1, alpha 425880 1 1 1 0 1 0 0 0 0 0 0.38 1.00 -5913 FMO5 flavin containing monooxygenase 5 828438 1 1 1 0 1 0 0 0 0 0 0.38 1.00 -5914 GPRASP1 G protein-coupled receptor associated sorting protein 1 2125344 3 3 3 1 0 1 1 0 1 0 0.38 1.00 -5915 KIF1B kinesin family member 1B 3541902 5 5 4 1 2 2 0 1 0 0 0.38 1.00 -5916 RC3H1 ring finger and CCCH-type zinc finger domains 1 1763346 2 2 2 1 0 1 1 0 0 0 0.38 1.00 -5917 ASCC1 activating signal cointegrator 1 complex subunit 1 469989 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5918 EIF2AK1 eukaryotic translation initiation factor 2-alpha kinase 1 928317 1 1 1 1 0 0 0 0 1 0 0.38 1.00 -5919 ACOT1 acyl-CoA thioesterase 1 414219 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5920 TMEM183B transmembrane protein 183B 532350 1 1 1 0 0 0 0 1 0 0 0.38 1.00 -5921 C11orf16 chromosome 11 open reading frame 16 678366 1 1 1 1 1 0 0 0 0 0 0.38 1.00 -5922 C1orf177 chromosome 1 open reading frame 177 578994 1 1 1 0 0 0 0 1 0 0 0.38 1.00 -5923 TAP1 transporter 1, ATP-binding cassette, sub-family B (MDR/TAP) 989157 1 1 1 1 0 0 0 0 1 0 0.38 1.00 -5924 NPSR1 neuropeptide S receptor 1 641355 1 1 1 0 1 0 0 0 0 0 0.38 1.00 -5925 C21orf29 chromosome 21 open reading frame 29 541983 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5926 EXOC1 exocyst complex component 1 1397799 2 2 2 0 1 0 1 0 0 0 0.38 1.00 -5927 CIZ1 CDKN1A interacting zinc finger protein 1 1100697 1 1 1 0 0 0 0 0 1 0 0.38 1.00 -5928 CPXM2 carboxypeptidase X (M14 family), member 2 1023633 1 1 1 2 0 1 0 0 0 0 0.38 1.00 -5929 ENAH enabled homolog (Drosophila) 867984 1 1 1 0 0 0 0 1 0 0 0.38 1.00 -5930 TMEM169 transmembrane protein 169 457314 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5931 LASS4 LAG1 homolog, ceramide synthase 4 557193 1 1 1 0 1 0 0 0 0 0 0.38 1.00 -5932 C10orf26 chromosome 10 open reading frame 26 519675 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5933 NCSTN nicastrin 1110837 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5934 ZNF358 zinc finger protein 358 480636 1 1 1 0 0 0 0 1 0 0 0.38 1.00 -5935 LGR6 leucine-rich repeat-containing G protein-coupled receptor 6 1287780 2 2 2 0 0 2 0 0 0 0 0.38 1.00 -5936 SLAMF6 SLAM family member 6 522717 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5937 SI sucrase-isomaltase (alpha-glucosidase) 2875704 4 4 4 0 0 2 1 0 1 0 0.38 1.00 -5938 EPHA2 EPH receptor A2 1434810 2 2 2 1 1 1 0 0 0 0 0.38 1.00 -5939 UTP14C UTP14, U3 small nucleolar ribonucleoprotein, homolog C (yeast) 1168635 2 2 2 0 1 0 1 0 0 0 0.38 1.00 -5940 MFI2 antigen p97 (melanoma associated) identified by monoclonal antibodies 133.2 and 96.5 924768 1 1 1 3 0 1 0 0 0 0 0.38 1.00 -5941 OR7G3 olfactory receptor, family 7, subfamily G, member 3 478101 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5942 WWC1 WW and C2 domain containing 1 1634061 2 2 2 1 1 0 0 0 1 0 0.38 1.00 -5943 ECHDC1 enoyl Coenzyme A hydratase domain containing 1 470496 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5944 WDR82 WD repeat domain 82 448188 1 1 1 1 1 0 0 0 0 0 0.38 1.00 -5945 GLRA3 glycine receptor, alpha 3 727545 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5946 RIC3 resistance to inhibitors of cholinesterase 3 homolog (C. elegans) 545025 1 1 1 1 0 0 1 0 0 0 0.38 1.00 -5947 IPO8 importin 8 1603134 4 2 4 2 0 1 3 0 0 0 0.38 1.00 -5948 SLC25A20 solute carrier family 25 (carnitine/acylcarnitine translocase), member 20 422331 1 1 1 0 1 0 0 0 0 0 0.38 1.00 -5949 TRIM45 tripartite motif-containing 45 895869 1 1 1 0 0 0 0 1 0 0 0.38 1.00 -5950 C1orf26 chromosome 1 open reading frame 26 1406925 2 2 2 0 1 0 1 0 0 0 0.38 1.00 -5951 C15orf33 chromosome 15 open reading frame 33 804609 1 1 1 0 1 0 0 0 0 0 0.38 1.00 -5952 MTF2 metal response element binding transcription factor 2 933894 1 1 1 1 0 0 1 0 0 0 0.38 1.00 -5953 OR10A7 olfactory receptor, family 10, subfamily A, member 7 484185 1 1 1 0 1 0 0 0 0 0 0.38 1.00 -5954 PIK3C3 phosphoinositide-3-kinase, class 3 1401348 2 2 2 0 1 1 0 0 0 0 0.38 1.00 -5955 SLC10A1 solute carrier family 10 (sodium/bile acid cotransporter family), member 1 542490 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5956 COL6A3 collagen, type VI, alpha 3 4944264 5 5 5 2 0 1 2 0 2 0 0.38 1.00 -5957 EXOC2 exocyst complex component 2 1461681 2 2 2 0 0 1 1 0 0 0 0.38 1.00 -5958 APOBEC4 apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 4 (putative) 561756 1 1 1 0 0 0 1 0 0 0 0.38 1.00 -5959 KIF2B kinesin family member 2B 1027182 1 1 1 0 0 0 0 1 0 0 0.38 1.00 -5960 TAB2 1067742 1 1 1 1 0 0 0 0 1 0 0.38 1.00 -5961 AQP4 aquaporin 4 502944 1 1 1 0 1 0 0 0 0 0 0.38 1.00 -5962 MAP3K9 mitogen-activated protein kinase kinase kinase 9 1497171 1 1 1 0 0 0 0 0 1 0 0.38 1.00 -5963 ANXA6 annexin A6 1058109 1 1 1 0 0 1 0 0 0 0 0.38 1.00 -5964 KIAA0922 KIAA0922 2292147 3 3 3 1 0 2 0 1 0 0 0.39 1.00 -5965 TWF2 twinfilin, actin-binding protein, homolog 2 (Drosophila) 509535 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -5966 FRMD5 FERM domain containing 5 843141 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -5967 TMPRSS13 transmembrane protease, serine 13 868491 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -5968 SYT11 synaptotagmin XI 665184 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -5969 TRIM68 tripartite motif-containing 68 751374 1 1 1 1 0 1 0 0 0 0 0.39 1.00 -5970 RTN2 reticulon 2 832494 1 1 1 1 0 0 0 1 0 0 0.39 1.00 -5971 MXRA5 matrix-remodelling associated 5 3965247 5 5 5 2 2 2 0 1 0 0 0.39 1.00 -5972 GCNT4 glucosaminyl (N-acetyl) transferase 4, core 2 (beta-1,6-N-acetylglucosaminyltransferase) 692562 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -5973 ZNF502 zinc finger protein 502 833001 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -5974 KLK8 kallikrein-related peptidase 8 438048 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -5975 POU6F2 POU class 6 homeobox 2 1034280 1 1 1 2 0 1 0 0 0 0 0.39 1.00 -5976 CTSE cathepsin E 643890 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -5977 C9orf128 chromosome 9 open reading frame 128 438555 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -5978 PPP4R4 1363323 2 2 2 0 0 0 1 0 1 0 0.39 1.00 -5979 HK1 hexokinase 1 1489059 1 1 1 0 0 0 0 0 1 0 0.39 1.00 -5980 FBXO28 F-box protein 28 433992 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -5981 PLCZ1 phospholipase C, zeta 1 954681 1 1 1 1 0 0 1 0 0 0 0.39 1.00 -5982 UTP20 UTP20, small subunit (SSU) processome component, homolog (yeast) 4338399 6 6 6 0 1 4 1 0 0 0 0.39 1.00 -5983 GPM6A glycoprotein M6A 438555 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -5984 TMTC1 transmembrane and tetratricopeptide repeat containing 1 1213251 2 2 2 0 0 2 0 0 0 0 0.39 1.00 -5985 DENND4C DENN/MADD domain containing 4C 2602938 3 3 3 0 1 0 1 0 1 0 0.39 1.00 -5986 TRPC4 transient receptor potential cation channel, subfamily C, member 4 1515423 2 2 2 1 0 2 0 0 0 0 0.39 1.00 -5987 VPS8 vacuolar protein sorting 8 homolog (S. cerevisiae) 1985919 3 3 3 0 1 0 1 1 0 0 0.39 1.00 -5988 C3orf63 chromosome 3 open reading frame 63 1961076 3 3 3 1 1 1 1 0 0 0 0.39 1.00 -5989 TNFSF13B tumor necrosis factor (ligand) superfamily, member 13b 416247 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -5990 DRP2 dystrophin related protein 2 1429740 2 2 2 0 1 1 0 0 0 0 0.39 1.00 -5991 UNC5CL unc-5 homolog C (C. elegans)-like 740727 1 1 1 1 1 0 0 0 0 0 0.39 1.00 -5992 C12orf4 chromosome 12 open reading frame 4 867477 1 1 1 0 0 0 0 0 1 0 0.39 1.00 -5993 AMD1 adenosylmethionine decarboxylase 1 469989 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -5994 BTNL3 butyrophilin-like 3 726531 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -5995 IARS2 isoleucyl-tRNA synthetase 2, mitochondrial 1450020 2 2 2 0 1 1 0 0 0 0 0.39 1.00 -5996 AARS2 alanyl-tRNA synthetase 2, mitochondrial (putative) 1476384 2 2 2 0 0 1 1 0 0 0 0.39 1.00 -5997 NOX1 NADPH oxidase 1 885729 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -5998 BCL6 B-cell CLL/lymphoma 6 (zinc finger protein 51) 1087008 1 1 1 0 0 0 0 1 0 0 0.39 1.00 -5999 DNAJB4 DnaJ (Hsp40) homolog, subfamily B, member 4 520182 1 1 1 1 1 0 0 0 0 0 0.39 1.00 -6000 STK17A serine/threonine kinase 17a 538941 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -6001 HOXA3 homeobox A3 589641 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6002 GTPBP1 GTP binding protein 1 929838 1 1 1 0 0 0 0 0 1 0 0.39 1.00 -6003 PSKH2 protein serine kinase H2 496353 1 1 1 1 1 0 0 0 0 0 0.39 1.00 -6004 TBL3 transducin (beta)-like 3 846690 1 1 1 1 0 0 1 0 0 0 0.39 1.00 -6005 PAICS phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoimidazole succinocarboxamide synthetase 562263 1 1 1 1 0 0 0 1 0 0 0.39 1.00 -6006 HFE2 hemochromatosis type 2 (juvenile) 643890 1 1 1 1 0 0 1 0 0 0 0.39 1.00 -6007 C12orf11 chromosome 12 open reading frame 11 1107795 1 1 1 1 0 0 0 1 0 0 0.39 1.00 -6008 WT1 Wilms tumor 1 423852 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6009 FBXL18 F-box and leucine-rich repeat protein 18 467454 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6010 GPR31 G protein-coupled receptor 31 457314 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -6011 TBCC tubulin folding cofactor C 462384 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -6012 PPP1R13L protein phosphatase 1, regulatory (inhibitor) subunit 13 like 565305 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6013 RPL4 ribosomal protein L4 671268 1 1 1 1 0 0 0 1 0 0 0.39 1.00 -6014 ALDH1B1 aldehyde dehydrogenase 1 family, member B1 789906 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6015 PBX1 pre-B-cell leukemia homeobox 1 574938 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6016 CETP cholesteryl ester transfer protein, plasma 783822 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6017 ANKRD50 ankyrin repeat domain 50 2180100 3 3 3 0 0 0 2 1 0 0 0.39 1.00 -6018 ZC3H11A zinc finger CCCH-type containing 11A 1265979 2 2 2 0 2 0 0 0 0 0 0.39 1.00 -6019 TSEN2 tRNA splicing endonuclease 2 homolog (S. cerevisiae) 750867 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -6020 FPR2 formyl peptide receptor 2 537420 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6021 PLAT plasminogen activator, tissue 867984 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -6022 SOX2 SRY (sex determining region Y)-box 2 456300 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6023 CLPX ClpX caseinolytic peptidase X homolog (E. coli) 950625 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6024 PRG4 proteoglycan 4 1866774 2 2 2 2 0 0 1 0 1 0 0.39 1.00 -6025 PSMB8 proteasome (prosome, macropain) subunit, beta type, 8 (large multifunctional peptidase 7) 503958 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6026 EMID1 EMI domain containing 1 429429 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6027 TRIM49 tripartite motif-containing 49 582036 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -6028 MPRIP 957723 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -6029 ITFG1 integrin alpha FG-GAP repeat containing 1 861393 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6030 FERMT2 fermitin family homolog 2 (Drosophila) 1070277 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -6031 ROBO2 roundabout, axon guidance receptor, homolog 2 (Drosophila) 2123316 3 3 3 0 1 0 2 0 0 0 0.39 1.00 -6032 OR3A1 olfactory receptor, family 3, subfamily A, member 1 482157 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6033 ZSCAN10 zinc finger and SCAN domain containing 10 424359 1 1 1 1 1 0 0 0 0 0 0.39 1.00 -6034 SCARF1 scavenger receptor class F, member 1 604344 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6035 ARID5A AT rich interactive domain 5A (MRF1-like) 733122 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6036 HELZ helicase with zinc finger 3016143 4 4 4 1 0 1 2 0 1 0 0.39 1.00 -6037 CCDC110 coiled-coil domain containing 110 1275612 2 2 2 0 1 1 0 0 0 0 0.39 1.00 -6038 ZKSCAN4 zinc finger with KRAB and SCAN domains 4 840606 1 1 1 1 0 0 0 1 0 0 0.39 1.00 -6039 DDX20 DEAD (Asp-Glu-Ala-Asp) box polypeptide 20 1144806 2 2 2 1 0 1 1 0 0 0 0.39 1.00 -6040 IMPG2 interphotoreceptor matrix proteoglycan 2 1927614 3 3 3 1 1 1 0 0 1 0 0.39 1.00 -6041 INTS4 integrator complex subunit 4 1512888 1 1 1 1 0 0 0 0 1 0 0.39 1.00 -6042 LARP7 La ribonucleoprotein domain family, member 7 911079 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6043 KIR2DL3 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 3 536406 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6044 SMC4 structural maintenance of chromosomes 4 1934712 3 3 3 1 1 0 1 1 0 0 0.39 1.00 -6045 EFHC1 EF-hand domain (C-terminal) containing 1 997269 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -6046 CSTF2T cleavage stimulation factor, 3' pre-RNA, subunit 2, 64kDa, tau variant 940485 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6047 QTRT1 queuine tRNA-ribosyltransferase 1 (tRNA-guanine transglycosylase) 542490 1 1 1 1 1 0 0 0 0 0 0.39 1.00 -6048 DAPK2 death-associated protein kinase 2 584064 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6049 CCDC123 coiled-coil domain containing 123 1202097 2 2 2 0 1 1 0 0 0 0 0.39 1.00 -6050 C2orf86 1136187 1 1 1 0 0 0 0 0 1 0 0.39 1.00 -6051 TAAR6 trace amine associated receptor 6 528294 1 1 1 0 0 0 0 1 0 0 0.39 1.00 -6052 KIAA0913 KIAA0913 2480244 3 3 3 0 0 1 1 0 1 0 0.39 1.00 -6053 ZNF180 zinc finger protein 180 1064193 1 1 1 0 0 0 0 0 1 0 0.39 1.00 -6054 SPDYC speedy homolog C (Drosophila) 461370 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6055 CYFIP2 cytoplasmic FMR1 interacting protein 2 1809990 2 2 2 0 0 0 1 0 1 0 0.39 1.00 -6056 ZMYND8 zinc finger, MYND-type containing 8 1819116 2 2 2 0 1 0 1 0 0 0 0.39 1.00 -6057 TUBA3D tubulin, alpha 3d 696111 1 1 1 0 0 1 0 0 0 0 0.39 1.00 -6058 ZNF91 zinc finger protein 91 1819116 2 2 2 0 0 0 2 0 0 0 0.39 1.00 -6059 SPPL2A 787371 1 1 1 0 0 0 0 1 0 0 0.39 1.00 -6060 C9orf11 chromosome 9 open reading frame 11 464919 1 1 1 0 1 0 0 0 0 0 0.39 1.00 -6061 VCP valosin-containing protein 1251276 2 2 2 0 0 0 1 0 1 0 0.39 1.00 -6062 GPR137B G protein-coupled receptor 137B 572403 1 1 1 0 0 0 1 0 0 0 0.39 1.00 -6063 NBPF7 neuroblastoma breakpoint family, member 7 658086 1 1 1 1 0 0 1 0 0 0 0.39 1.00 -6064 OR10J3 olfactory receptor, family 10, subfamily J, member 3 503958 1 1 1 0 0 0 0 1 0 0 0.39 1.00 -6065 SERPINB12 serpin peptidase inhibitor, clade B (ovalbumin), member 12 631722 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6066 TMEM108 transmembrane protein 108 884208 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6067 EEF2 eukaryotic translation elongation factor 2 605865 1 1 1 1 1 0 0 0 0 0 0.40 1.00 -6068 ST5 suppression of tumorigenicity 5 1734954 2 2 2 1 1 1 0 0 0 0 0.40 1.00 -6069 SLC45A3 solute carrier family 45, member 3 850746 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6070 PCK2 phosphoenolpyruvate carboxykinase 2 (mitochondrial) 1025154 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6071 TRMT1 TRM1 tRNA methyltransferase 1 homolog (S. cerevisiae) 920205 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6072 NLRP7 NLR family, pyrin domain containing 7 1598571 2 2 2 2 0 2 0 0 0 0 0.40 1.00 -6073 ZBTB46 zinc finger and BTB domain containing 46 490269 2 1 2 0 1 0 1 0 0 0 0.40 1.00 -6074 APLP2 amyloid beta (A4) precursor-like protein 2 1143285 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6075 EXO1 exonuclease 1 1314651 2 2 2 0 1 0 1 0 0 0 0.40 1.00 -6076 RBM4B RNA binding motif protein 4B 551616 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6077 ITSN1 intersectin 1 (SH3 domain protein) 2646033 3 3 3 0 0 3 0 0 0 0 0.40 1.00 -6078 FOXP1 forkhead box P1 1149369 1 1 1 1 0 0 0 0 1 0 0.40 1.00 -6079 CTTN cortactin 947583 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6080 OSBP2 oxysterol binding protein 2 733122 1 1 1 1 1 0 0 0 0 0 0.40 1.00 -6081 RALY RNA binding protein, autoantigenic (hnRNP-associated with lethal yellow homolog (mouse)) 454779 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6082 WAS Wiskott-Aldrich syndrome (eczema-thrombocytopenia) 696111 1 1 1 2 0 0 1 0 0 0 0.40 1.00 -6083 PEF1 penta-EF-hand domain containing 1 429429 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6084 TRA2B 457821 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6085 FAM160B2 504465 1 1 1 1 0 0 1 0 0 0 0.40 1.00 -6086 CD33 CD33 molecule 569361 1 1 1 1 0 0 1 0 0 0 0.40 1.00 -6087 TBX22 T-box 22 808665 1 1 1 0 0 0 0 1 0 0 0.40 1.00 -6088 WNK3 WNK lysine deficient protein kinase 3 2768727 4 4 4 0 1 2 1 0 0 0 0.40 1.00 -6089 MYH10 myosin, heavy chain 10, non-muscle 3022734 4 4 4 1 2 1 1 0 0 0 0.40 1.00 -6090 SLC26A4 solute carrier family 26, member 4 1143285 1 1 1 1 0 0 0 0 1 0 0.40 1.00 -6091 LPHN1 latrophilin 1 1888068 2 2 2 1 0 0 0 1 1 0 0.40 1.00 -6092 UGT2B4 UDP glucuronosyltransferase 2 family, polypeptide B4 816777 1 1 1 1 0 0 1 0 0 0 0.40 1.00 -6093 SLITRK1 SLIT and NTRK-like family, member 1 1058109 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6094 SYN3 synapsin III 863421 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6095 DMXL1 Dmx-like 1 4634487 7 6 7 1 1 0 3 2 1 0 0.40 1.00 -6096 C14orf115 chromosome 14 open reading frame 115 1071291 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6097 UGT8 UDP glycosyltransferase 8 (UDP-galactose ceramide galactosyltransferase) 834522 1 1 1 1 0 0 0 0 1 0 0.40 1.00 -6098 UST uronyl-2-sulfotransferase 508014 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6099 NOP2 1260909 2 2 2 0 0 0 1 1 0 0 0.40 1.00 -6100 GRAMD2 GRAM domain containing 2 541476 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6101 NEK11 NIMA (never in mitosis gene a)- related kinase 11 1024140 1 1 1 1 0 0 0 0 1 0 0.40 1.00 -6102 AKR1C1 aldo-keto reductase family 1, member C1 (dihydrodiol dehydrogenase 1; 20-alpha (3-alpha)-hydroxysteroid dehydrogenase) 466947 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6103 NCEH1 693069 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6104 DNTTIP1 deoxynucleotidyltransferase, terminal, interacting protein 1 455286 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6105 ERC1 ELKS/RAB6-interacting/CAST family member 1 1735461 2 2 2 0 1 1 0 0 0 0 0.40 1.00 -6106 CSGALNACT1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 824889 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6107 LINGO4 leucine rich repeat and Ig domain containing 4 893334 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6108 MUC7 mucin 7, secreted 578994 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6109 OR4D11 olfactory receptor, family 4, subfamily D, member 11 476580 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6110 FAM190B 1276119 2 2 2 0 1 1 0 0 0 0 0.40 1.00 -6111 SUSD2 sushi domain containing 2 666198 1 1 1 0 0 0 0 1 0 0 0.40 1.00 -6112 KRT83 keratin 83 769626 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6113 MDM2 Mdm2 p53 binding protein homolog (mouse) 770640 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6114 DCTN4 dynactin 4 (p62) 727545 1 1 1 1 0 0 1 0 0 0 0.40 1.00 -6115 NTAN1 N-terminal asparagine amidase 450216 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6116 RNF144B ring finger 144B 476580 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6117 LRRC19 leucine rich repeat containing 19 572403 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6118 MAGI3 membrane associated guanylate kinase, WW and PDZ domain containing 3 2161848 3 3 3 0 1 1 1 0 0 0 0.40 1.00 -6119 SHPRH SNF2 histone linker PHD RING helicase 2642484 3 3 3 0 0 0 2 1 0 0 0.40 1.00 -6120 OR5AS1 olfactory receptor, family 5, subfamily AS, member 1 496353 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6121 FBN1 fibrillin 1 4498611 6 6 6 5 3 3 0 0 0 0 0.40 1.00 -6122 GRN granulin 923754 1 1 1 1 1 0 0 0 0 0 0.40 1.00 -6123 GUCY2D guanylate cyclase 2D, membrane (retina-specific) 1118949 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6124 G6PD glucose-6-phosphate dehydrogenase 777231 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6125 USP43 ubiquitin specific peptidase 43 1088022 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6126 LRRC49 leucine rich repeat containing 49 1077375 1 1 1 1 0 0 0 0 1 0 0.40 1.00 -6127 PDS5B PDS5, regulator of cohesion maintenance, homolog B (S. cerevisiae) 2271360 3 3 3 0 1 1 1 0 0 0 0.40 1.00 -6128 UFD1L ubiquitin fusion degradation 1 like (yeast) 478608 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6129 ZIC1 Zic family member 1 (odd-paired homolog, Drosophila) 518661 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6130 ACP5 acid phosphatase 5, tartrate resistant 500409 1 1 1 1 0 1 0 0 0 0 0.40 1.00 -6131 PFKFB3 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 743262 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6132 CCDC82 coiled-coil domain containing 82 843141 1 1 1 1 0 1 0 0 0 0 0.40 1.00 -6133 CYP20A1 cytochrome P450, family 20, subfamily A, polypeptide 1 730587 1 1 1 1 0 1 0 0 0 0 0.40 1.00 -6134 DYRK2 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 2 817284 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6135 KIAA1370 KIAA1370 1598064 2 2 2 0 0 0 2 0 0 0 0.40 1.00 -6136 CLEC4M C-type lectin domain family 4, member M 633243 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6137 ISPD 572910 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6138 ZNRF3 zinc and ring finger 3 972426 1 1 1 1 1 0 0 0 0 0 0.40 1.00 -6139 OMA1 OMA1 homolog, zinc metallopeptidase (S. cerevisiae) 814749 1 1 1 0 0 0 0 1 0 0 0.40 1.00 -6140 LAMA3 laminin, alpha 3 4742478 6 6 6 0 0 4 0 0 2 0 0.40 1.00 -6141 PCOLCE2 procollagen C-endopeptidase enhancer 2 606879 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6142 NSFL1C NSFL1 (p97) cofactor (p47) 527280 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6143 ALG9 asparagine-linked glycosylation 9 homolog (S. cerevisiae, alpha- 1,2-mannosyltransferase) 903474 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6144 LMX1A LIM homeobox transcription factor 1, alpha 569868 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6145 TBX6 T-box 6 586092 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6146 EFCAB4B EF-hand calcium binding domain 4B 618540 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6147 DTWD1 DTW domain containing 1 472017 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6148 DTNB dystrobrevin, beta 976989 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6149 WSB1 WD repeat and SOCS box-containing 1 660114 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6150 ANKRD40 ankyrin repeat domain 40 571389 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6151 SNX29 sorting nexin 29 649467 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6152 C18orf25 chromosome 18 open reading frame 25 622596 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6153 C17orf46 chromosome 17 open reading frame 46 585078 1 1 1 0 0 0 1 0 0 0 0.40 1.00 -6154 GLUD2 glutamate dehydrogenase 2 771654 1 1 1 1 0 0 1 0 0 0 0.40 1.00 -6155 SLC2A4 solute carrier family 2 (facilitated glucose transporter), member 4 760500 1 1 1 1 0 0 1 0 0 0 0.40 1.00 -6156 MAPK10 mitogen-activated protein kinase 10 734136 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6157 MSN moesin 905502 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6158 PDE4B phosphodiesterase 4B, cAMP-specific (phosphodiesterase E4 dunce homolog, Drosophila) 1334931 2 2 2 0 1 0 1 0 0 0 0.40 1.00 -6159 FAM155B family with sequence similarity 155, member B 543504 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6160 SPTY2D1 SPT2, Suppressor of Ty, domain containing 1 (S. cerevisiae) 1055574 1 1 1 2 0 0 1 0 0 0 0.40 1.00 -6161 TMEM74 transmembrane protein 74 467454 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6162 ARPC1B actin related protein 2/3 complex, subunit 1B, 41kDa 479115 1 1 1 2 0 0 1 0 0 0 0.40 1.00 -6163 MYO1D myosin ID 1438866 2 2 2 0 1 1 0 0 0 0 0.40 1.00 -6164 ZNF510 zinc finger protein 510 1049997 1 1 1 1 0 0 0 0 1 0 0.40 1.00 -6165 PET112L PET112-like (yeast) 836550 1 1 1 0 1 0 0 0 0 0 0.40 1.00 -6166 CTAGE1 cutaneous T-cell lymphoma-associated antigen 1 1136694 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6167 MYBL2 v-myb myeloblastosis viral oncogene homolog (avian)-like 2 1045941 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6168 PION 1305525 2 2 2 1 0 0 1 0 1 0 0.40 1.00 -6169 TFEC transcription factor EC 543504 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6170 SEMA4A sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4A 1173705 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6171 SMURF2 SMAD specific E3 ubiquitin protein ligase 2 1149369 1 1 1 0 0 0 0 0 1 0 0.40 1.00 -6172 DNAH2 dynein, axonemal, heavy chain 2 6860724 10 9 10 2 1 3 3 2 1 0 0.40 1.00 -6173 TUBB tubulin, beta 684957 1 1 1 0 0 1 0 0 0 0 0.40 1.00 -6174 ACSL5 acyl-CoA synthetase long-chain family member 5 1168128 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -6175 LPCAT1 lysophosphatidylcholine acyltransferase 1 688506 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6176 MASP2 mannan-binding lectin serine peptidase 2 720447 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6177 MKS1 Meckel syndrome, type 1 843648 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6178 PVRL3 poliovirus receptor-related 3 765570 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6179 BTBD3 BTB (POZ) domain containing 3 803595 1 1 1 1 1 0 0 0 0 0 0.41 1.00 -6180 CAMTA1 calmodulin binding transcription activator 1 2526888 3 3 3 2 1 0 0 2 0 0 0.41 1.00 -6181 FBXO7 F-box protein 7 749853 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6182 SLC35F3 solute carrier family 35, member F3 713349 1 1 1 2 0 1 0 0 0 0 0.41 1.00 -6183 KIAA0494 KIAA0494 776724 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6184 XIRP2 xin actin-binding repeat containing 2 6203652 9 8 9 4 2 5 2 0 0 0 0.41 1.00 -6185 KIAA0247 KIAA0247 472524 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6186 PUM2 pumilio homolog 2 (Drosophila) 1660425 2 2 2 1 0 1 0 1 0 0 0.41 1.00 -6187 AS3MT arsenic (+3 oxidation state) methyltransferase 591669 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -6188 SCN4A sodium channel, voltage-gated, type IV, alpha subunit 2591277 3 3 3 2 1 0 0 2 0 0 0.41 1.00 -6189 GJA9 gap junction protein, alpha 9, 59kDa 786864 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6190 KLHL18 kelch-like 18 (Drosophila) 827424 1 1 1 1 0 1 0 0 0 0 0.41 1.00 -6191 DOK4 docking protein 4 479115 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6192 SSX2IP synovial sarcoma, X breakpoint 2 interacting protein 961779 1 1 1 2 0 1 0 0 0 0 0.41 1.00 -6193 TESK2 testis-specific kinase 2 890292 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6194 DNAJA3 DnaJ (Hsp40) homolog, subfamily A, member 3 555672 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -6195 ABCA4 ATP-binding cassette, sub-family A (ABC1), member 4 3535311 5 5 5 0 2 2 1 0 0 0 0.41 1.00 -6196 CHRM3 cholinergic receptor, muscarinic 3 888771 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6197 KLF3 Kruppel-like factor 3 (basic) 536406 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6198 SLFN11 schlafen family member 11 1304004 2 2 2 0 1 0 0 1 0 0 0.41 1.00 -6199 ZNF385B zinc finger protein 385B 684450 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -6200 GHSR growth hormone secretagogue receptor 507507 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6201 PUS10 pseudouridylate synthase 10 840606 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6202 HSF2 heat shock transcription factor 2 828945 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -6203 CSPG5 chondroitin sulfate proteoglycan 5 (neuroglycan C) 705237 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6204 STX3 syntaxin 3 444132 1 1 1 1 1 0 0 0 0 0 0.41 1.00 -6205 EIF2AK3 eukaryotic translation initiation factor 2-alpha kinase 3 1575249 1 1 1 1 0 0 0 0 1 0 0.41 1.00 -6206 SLC9A10 solute carrier family 9, member 10 1848522 2 2 2 0 0 0 2 0 0 0 0.41 1.00 -6207 RIPK3 receptor-interacting serine-threonine kinase 3 809679 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -6208 KCNA6 potassium voltage-gated channel, shaker-related subfamily, member 6 807651 1 1 1 1 0 1 0 0 0 0 0.41 1.00 -6209 TCEA3 transcription elongation factor A (SII), 3 470496 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6210 CASQ2 calsequestrin 2 (cardiac muscle) 630708 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6211 ARAF v-raf murine sarcoma 3611 viral oncogene homolog 807651 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6212 LPXN leupaxin 606879 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6213 ABHD12 abhydrolase domain containing 12 537927 1 1 1 0 0 0 0 1 0 0 0.41 1.00 -6214 PLCD1 phospholipase C, delta 1 1154946 1 1 1 1 0 0 0 0 1 0 0.41 1.00 -6215 FOXR2 forkhead box R2 476580 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6216 JPH1 junctophilin 1 778245 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6217 FBLN2 fibulin 2 1076868 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6218 NOM1 nucleolar protein with MIF4G domain 1 1084980 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6219 DPYSL2 dihydropyrimidinase-like 2 899925 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6220 PHLDB1 pleckstrin homology-like domain, family B, member 1 2112162 3 3 3 2 3 0 0 0 0 0 0.41 1.00 -6221 RGAG4 retrotransposon gag domain containing 4 855816 1 1 1 0 0 0 0 1 0 0 0.41 1.00 -6222 LUZP4 leucine zipper protein 4 485706 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6223 OR5AN1 olfactory receptor, family 5, subfamily AN, member 1 476580 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6224 GDPD5 glycerophosphodiester phosphodiesterase domain containing 5 714870 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6225 SLC25A44 solute carrier family 25, member 44 485199 1 1 1 1 0 1 0 0 0 0 0.41 1.00 -6226 NEK2 NIMA (never in mitosis gene a)-related kinase 2 694590 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6227 HPS6 Hermansky-Pudlak syndrome 6 924768 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6228 SLC30A1 solute carrier family 30 (zinc transporter), member 1 512070 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6229 FMO1 flavin containing monooxygenase 1 826917 1 1 1 1 1 0 0 0 0 0 0.41 1.00 -6230 MTDH metadherin 715884 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6231 DGKE diacylglycerol kinase, epsilon 64kDa 886236 1 1 1 1 0 0 0 0 1 0 0.41 1.00 -6232 GDF3 growth differentiation factor 3 559221 1 1 1 1 0 1 0 0 0 0 0.41 1.00 -6233 CHMP7 CHMP family, member 7 531336 1 1 1 0 0 0 0 1 0 0 0.41 1.00 -6234 CCDC109A coiled-coil domain containing 109A 473538 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6235 ZNF645 zinc finger protein 645 649974 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -6236 KANK4 KN motif and ankyrin repeat domains 4 1533168 2 2 2 1 1 0 0 1 0 0 0.41 1.00 -6237 CNGA2 cyclic nucleotide gated channel alpha 2 999297 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6238 CPEB3 cytoplasmic polyadenylation element binding protein 3 574431 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6239 LEKR1 leucine, glutamate and lysine rich 1 605358 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6240 ELL3 elongation factor RNA polymerase II-like 3 538941 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6241 FETUB fetuin B 596739 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6242 RTKN rhotekin 862407 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6243 ZBTB41 zinc finger and BTB domain containing 41 1404390 2 2 2 1 0 0 1 1 0 0 0.41 1.00 -6244 ABCA9 ATP-binding cassette, sub-family A (ABC1), member 9 2548689 3 3 3 2 1 0 2 0 0 0 0.41 1.00 -6245 MFF 539955 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6246 PAK7 p21(CDKN1A)-activated kinase 7 1111344 1 1 1 1 0 0 0 1 0 0 0.41 1.00 -6247 CWH43 1073319 1 1 1 0 0 0 0 1 0 0 0.41 1.00 -6248 LMBRD1 LMBR1 domain containing 1 818298 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6249 MAGEB3 melanoma antigen family B, 3 529815 1 1 1 1 1 0 0 0 0 0 0.41 1.00 -6250 SOAT1 sterol O-acyltransferase (acyl-Coenzyme A: cholesterol acyltransferase) 1 868491 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6251 KCNJ4 potassium inwardly-rectifying channel, subfamily J, member 4 606372 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6252 USP51 ubiquitin specific peptidase 51 979017 1 1 1 1 0 0 0 1 0 0 0.41 1.00 -6253 AKR1C4 aldo-keto reductase family 1, member C4 (chlordecone reductase; 3-alpha hydroxysteroid dehydrogenase, type I; dihydrodiol dehydrogenase 4) 511056 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6254 ABCD2 ATP-binding cassette, sub-family D (ALD), member 2 1147341 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6255 ZNF8 zinc finger protein 8 848718 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6256 N4BP2L2 NEDD4 binding protein 2-like 2 1841931 2 2 2 0 0 2 0 0 0 0 0.41 1.00 -6257 DCAF12L2 628680 1 1 1 1 0 0 1 0 0 0 0.41 1.00 -6258 CAMSAP1L1 calmodulin regulated spectrin-associated protein 1-like 1 2284035 3 3 3 0 0 1 1 1 0 0 0.41 1.00 -6259 BRF2 BRF2, subunit of RNA polymerase III transcription initiation factor, BRF1-like 611949 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6260 OR6K6 olfactory receptor, family 6, subfamily K, member 6 525252 1 1 1 0 0 1 0 0 0 0 0.41 1.00 -6261 HFM1 HFM1, ATP-dependent DNA helicase homolog (S. cerevisiae) 2225730 3 3 3 0 1 1 1 0 0 0 0.41 1.00 -6262 OTUD7A OTU domain containing 7A 574431 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6263 TBX18 T-box 18 790413 1 1 1 1 1 0 0 0 0 0 0.41 1.00 -6264 PCDHA4 protocadherin alpha 4 1454583 2 2 2 2 0 1 1 0 0 0 0.41 1.00 -6265 LHX8 LIM homeobox 8 451737 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6266 GIPR gastric inhibitory polypeptide receptor 568854 1 1 1 1 0 0 1 0 0 0 0.41 1.00 -6267 NSUN2 NOL1/NOP2/Sun domain family, member 2 1155960 1 1 1 0 0 0 0 0 1 0 0.41 1.00 -6268 NMNAT2 nicotinamide nucleotide adenylyltransferase 2 525252 1 1 1 0 1 0 0 0 0 0 0.41 1.00 -6269 CWF19L1 CWF19-like 1, cell cycle control (S. pombe) 848211 1 1 1 0 0 0 1 0 0 0 0.41 1.00 -6270 ZNF498 zinc finger protein 498 838578 2 1 2 0 0 0 0 1 1 0 0.41 1.00 -6271 NMD3 NMD3 homolog (S. cerevisiae) 797004 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6272 TLR8 toll-like receptor 8 1588938 2 2 2 0 0 1 0 0 1 0 0.42 1.00 -6273 SH3PXD2A SH3 and PX domains 2A 1647243 1 1 1 0 0 0 0 0 1 0 0.42 1.00 -6274 MAP2K5 mitogen-activated protein kinase kinase 5 672282 1 1 1 0 0 0 0 0 1 0 0.42 1.00 -6275 NPY2R neuropeptide Y receptor Y2 583050 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6276 SFRP4 secreted frizzled-related protein 4 537420 1 1 1 0 0 0 0 1 0 0 0.42 1.00 -6277 PPAP2A phosphatidic acid phosphatase type 2A 494832 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6278 CORO2B coronin, actin binding protein, 2B 673803 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -6279 TREH trehalase (brush-border membrane glycoprotein) 637806 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6280 ESRRG estrogen-related receptor gamma 712335 1 1 1 1 1 0 0 0 0 0 0.42 1.00 -6281 BAIAP2L1 BAI1-associated protein 2-like 1 763542 1 1 1 2 0 1 0 0 0 0 0.42 1.00 -6282 OSBPL7 oxysterol binding protein-like 7 1003353 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6283 CCDC101 coiled-coil domain containing 101 462384 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -6284 PDK2 pyruvate dehydrogenase kinase, isozyme 2 564798 1 1 1 1 1 0 0 0 0 0 0.42 1.00 -6285 VRK2 vaccinia related kinase 2 798525 1 1 1 0 0 0 0 1 0 0 0.42 1.00 -6286 ST14 suppression of tumorigenicity 14 (colon carcinoma) 1039350 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -6287 RARS2 arginyl-tRNA synthetase 2, mitochondrial 921219 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6288 KPRP keratinocyte proline-rich protein 884208 1 1 1 1 0 1 0 0 0 0 0.42 1.00 -6289 WDR20 WD repeat domain 20 911079 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6290 DCAF12L1 599781 1 1 1 3 0 1 0 0 0 0 0.42 1.00 -6291 FLRT1 fibronectin leucine rich transmembrane protein 1 1014000 1 1 1 2 0 1 0 0 0 0 0.42 1.00 -6292 ASB15 ankyrin repeat and SOCS box-containing 15 914121 1 1 1 1 1 0 0 0 0 0 0.42 1.00 -6293 DENND3 DENN/MADD domain containing 3 1739010 2 2 2 1 0 1 0 1 0 0 0.42 1.00 -6294 OR10AG1 olfactory receptor, family 10, subfamily AG, member 1 461370 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -6295 C16orf58 chromosome 16 open reading frame 58 471510 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6296 VPRBP Vpr (HIV-1) binding protein 2257671 3 3 3 0 1 0 0 0 2 0 0.42 1.00 -6297 LPIN3 lipin 3 1334424 2 2 2 1 1 1 0 0 0 0 0.42 1.00 -6298 RXFP4 relaxin/insulin-like family peptide receptor 4 564798 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -6299 TRDMT1 tRNA aspartic acid methyltransferase 1 553137 1 1 1 0 0 0 0 1 0 0 0.42 1.00 -6300 FBXO40 F-box protein 40 1085994 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6301 PDE6C phosphodiesterase 6C, cGMP-specific, cone, alpha prime 1351155 2 2 2 0 2 0 0 0 0 0 0.42 1.00 -6302 ACVR1 activin A receptor, type I 793962 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6303 MGRN1 mahogunin, ring finger 1 617019 1 1 1 0 0 0 0 1 0 0 0.42 1.00 -6304 BDNF brain-derived neurotrophic factor 523731 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6305 ADORA3 adenosine A3 receptor 907530 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6306 SLC7A7 solute carrier family 7 (cationic amino acid transporter, y+ system), member 7 797004 1 1 1 1 0 0 1 0 0 0 0.42 1.00 -6307 PDHA1 pyruvate dehydrogenase (lipoamide) alpha 1 596739 1 1 1 1 0 1 0 0 0 0 0.42 1.00 -6308 BICD1 bicaudal D homolog 1 (Drosophila) 1403376 2 2 2 0 0 1 1 0 0 0 0.42 1.00 -6309 TKTL2 transketolase-like 2 835029 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6310 TLR2 toll-like receptor 2 1196013 1 1 1 1 0 0 0 0 1 0 0.42 1.00 -6311 PLEKHG3 pleckstrin homology domain containing, family G (with RhoGef domain) member 3 1359774 2 2 2 0 1 0 1 0 0 0 0.42 1.00 -6312 FCRL2 Fc receptor-like 2 798525 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6313 FAM83A family with sequence similarity 83, member A 486213 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -6314 PHF2 PHD finger protein 2 852267 1 1 1 1 0 0 0 0 1 0 0.42 1.00 -6315 CATSPER3 cation channel, sperm associated 3 587613 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6316 GPC3 glypican 3 809172 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6317 EPHA6 EPH receptor A6 1583868 2 2 2 0 1 0 1 0 0 0 0.42 1.00 -6318 MGA MAX gene associated 4602039 5 5 5 2 1 1 1 1 1 0 0.42 1.00 -6319 ANKRD13C ankyrin repeat domain 13C 850746 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -6320 INTS7 integrator complex subunit 7 1505283 2 2 2 0 1 0 0 1 0 0 0.42 1.00 -6321 PIPOX pipecolic acid oxidase 610935 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -6322 MMP11 matrix metallopeptidase 11 (stromelysin 3) 558207 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6323 ABCC4 ATP-binding cassette, sub-family C (CFTR/MRP), member 4 2040168 3 3 3 0 3 0 0 0 0 0 0.42 1.00 -6324 FAM83C family with sequence similarity 83, member C 1003860 1 1 1 1 0 1 0 0 0 0 0.42 1.00 -6325 MAN1B1 mannosidase, alpha, class 1B, member 1 873054 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6326 RBM25 RNA binding motif protein 25 1320228 2 2 2 1 1 0 1 0 0 0 0.42 1.00 -6327 TAS1R2 taste receptor, type 1, member 2 1186887 1 1 1 2 0 0 1 0 0 0 0.42 1.00 -6328 CHERP calcium homeostasis endoplasmic reticulum protein 888264 2 1 2 1 0 0 0 1 1 0 0.42 1.00 -6329 C10orf68 chromosome 10 open reading frame 68 997269 1 1 1 0 0 0 0 0 1 0 0.42 1.00 -6330 MMP8 matrix metallopeptidase 8 (neutrophil collagenase) 732108 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6331 ZNF710 zinc finger protein 710 876096 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6332 CSRP2BP CSRP2 binding protein 1211223 2 1 2 0 0 0 0 0 0 2 0.42 1.00 -6333 OR4C13 olfactory receptor, family 4, subfamily C, member 13 473538 1 1 1 1 1 0 0 0 0 0 0.42 1.00 -6334 PTPRS protein tyrosine phosphatase, receptor type, S 1596543 2 2 2 0 0 1 1 0 0 0 0.42 1.00 -6335 TPP1 tripeptidyl peptidase I 884208 1 1 1 0 0 0 0 0 1 0 0.42 1.00 -6336 SPAST spastin 800553 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6337 SLC6A5 solute carrier family 6 (neurotransmitter transporter, glycine), member 5 1007409 1 1 1 1 0 0 1 0 0 0 0.42 1.00 -6338 ACOX3 acyl-Coenzyme A oxidase 3, pristanoyl 931359 1 1 1 0 0 0 0 1 0 0 0.42 1.00 -6339 PLXNA2 plexin A2 2942628 4 4 4 1 2 0 1 1 0 0 0.42 1.00 -6340 EXPH5 exophilin 5 3038958 4 4 4 1 0 3 0 1 0 0 0.42 1.00 -6341 AKR1B15 466947 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6342 ZNF662 zinc finger protein 662 704730 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6343 OR5W2 olfactory receptor, family 5, subfamily W, member 2 475059 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -6344 C6orf165 chromosome 6 open reading frame 165 971919 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6345 KIAA1009 KIAA1009 2088333 3 3 3 1 1 2 0 0 0 0 0.42 1.00 -6346 CXorf59 chromosome X open reading frame 59 785343 1 1 1 0 0 0 1 0 0 0 0.42 1.00 -6347 UACA uveal autoantigen with coiled-coil domains and ankyrin repeats 2174016 3 3 3 0 1 1 1 0 0 0 0.42 1.00 -6348 PPP2R5E protein phosphatase 2, regulatory subunit B', epsilon isoform 738192 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6349 ITGAX integrin, alpha X (complement component 3 receptor 4 subunit) 1672086 2 2 2 3 1 1 0 0 0 0 0.42 1.00 -6350 SLC39A9 solute carrier family 39 (zinc transporter), member 9 482664 1 1 1 0 1 0 0 0 0 0 0.42 1.00 -6351 TAPBPL TAP binding protein-like 719433 1 1 1 0 0 1 0 0 0 0 0.42 1.00 -6352 PLEKHM1 pleckstrin homology domain containing, family M (with RUN domain) member 1 1422135 2 2 2 1 1 0 0 1 0 0 0.42 1.00 -6353 CDC123 cell division cycle 123 homolog (S. cerevisiae) 538941 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6354 TUBA1B tubulin, alpha 1b 692055 1 1 1 0 0 0 0 1 0 0 0.43 1.00 -6355 PMPCA peptidase (mitochondrial processing) alpha 736164 1 1 1 1 0 1 0 0 0 0 0.43 1.00 -6356 ZNF79 zinc finger protein 79 769119 1 1 1 0 0 0 0 1 0 0 0.43 1.00 -6357 PBK PDZ binding kinase 505479 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6358 SYT16 synaptotagmin XVI 994734 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6359 FBXW8 F-box and WD repeat domain containing 8 770133 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6360 IFI44L interferon-induced protein 44-like 696618 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6361 SFRS15 splicing factor, arginine/serine-rich 15 1745601 2 2 2 1 0 0 0 1 1 0 0.43 1.00 -6362 PPOX protoporphyrinogen oxidase 751374 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6363 SUV420H1 suppressor of variegation 4-20 homolog 1 (Drosophila) 1371942 2 2 2 0 1 1 0 0 0 0 0.43 1.00 -6364 AZIN1 antizyme inhibitor 1 703209 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6365 POLR3B polymerase (RNA) III (DNA directed) polypeptide B 1743066 2 2 2 0 0 2 0 0 0 0 0.43 1.00 -6366 ZC3HC1 zinc finger, C3HC-type containing 1 785343 1 1 1 0 0 0 0 0 1 0 0.43 1.00 -6367 C9orf117 chromosome 9 open reading frame 117 645411 1 1 1 0 0 0 0 1 0 0 0.43 1.00 -6368 EXD2 770133 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -6369 GABRG3 gamma-aminobutyric acid (GABA) A receptor, gamma 3 701688 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6370 AADACL2 arylacetamide deacetylase-like 2 621582 1 1 1 0 0 0 0 0 1 0 0.43 1.00 -6371 RNF113B ring finger protein 113B 482664 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -6372 ZC3H7B zinc finger CCCH-type containing 7B 1352169 2 2 2 2 1 0 0 1 0 0 0.43 1.00 -6373 HP1BP3 heterochromatin protein 1, binding protein 3 866970 1 1 1 1 1 0 0 0 0 0 0.43 1.00 -6374 ATP5A1 ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1, cardiac muscle 834522 1 1 1 0 0 0 0 1 0 0 0.43 1.00 -6375 B4GALNT3 beta-1,4-N-acetyl-galactosaminyl transferase 3 1380054 2 2 2 0 0 2 0 0 0 0 0.43 1.00 -6376 MSH2 mutS homolog 2, colon cancer, nonpolyposis type 1 (E. coli) 1345578 2 2 2 0 1 0 0 1 0 0 0.43 1.00 -6377 HEMGN hemogen 745797 1 1 1 0 0 0 0 1 0 0 0.43 1.00 -6378 DNAJB1 DnaJ (Hsp40) homolog, subfamily B, member 1 511563 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6379 ABCG5 ATP-binding cassette, sub-family G (WHITE), member 5 (sterolin 1) 855816 1 1 1 1 0 1 0 0 0 0 0.43 1.00 -6380 SHC1 SHC (Src homology 2 domain containing) transforming protein 1 914121 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6381 USP33 ubiquitin specific peptidase 33 1465737 2 2 2 0 0 1 1 0 0 0 0.43 1.00 -6382 MICAL3 microtubule associated monoxygenase, calponin and LIM domain containing 3 1800357 2 2 2 0 0 2 0 0 0 0 0.43 1.00 -6383 PHF20L1 PHD finger protein 20-like 1 1637610 2 2 2 0 0 0 0 1 1 0 0.43 1.00 -6384 GLT8D2 glycosyltransferase 8 domain containing 2 550602 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6385 IMPDH2 IMP (inosine monophosphate) dehydrogenase 2 759993 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -6386 STRAP serine/threonine kinase receptor associated protein 495339 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -6387 ZNF250 zinc finger protein 250 842127 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6388 SETD2 SET domain containing 2 3260010 4 4 4 0 0 0 2 0 2 0 0.43 1.00 -6389 CREB3L3 cAMP responsive element binding protein 3-like 3 676338 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6390 SSRP1 structure specific recognition protein 1 1112358 1 1 1 1 0 1 0 0 0 0 0.43 1.00 -6391 CC2D1A coiled-coil and C2 domain containing 1A 1346592 2 2 2 0 0 1 0 1 0 0 0.43 1.00 -6392 NLRC4 NLR family, CARD domain containing 4 1575249 2 2 2 1 1 1 0 0 0 0 0.43 1.00 -6393 PCM1 pericentriolar material 1 2695719 3 3 3 0 0 0 1 1 1 0 0.43 1.00 -6394 FSCN3 fascin homolog 3, actin-bundling protein, testicular (Strongylocentrotus purpuratus) 719940 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -6395 DOK6 docking protein 6 485706 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6396 ICK intestinal cell (MAK-like) kinase 989157 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -6397 C6orf89 chromosome 6 open reading frame 89 553137 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6398 TUBGCP2 tubulin, gamma complex associated protein 2 991692 1 1 1 1 0 0 0 1 0 0 0.43 1.00 -6399 HPSE2 heparanase 2 863421 1 1 1 2 0 1 0 0 0 0 0.43 1.00 -6400 TMEM48 transmembrane protein 48 1032252 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6401 MMP13 matrix metallopeptidase 13 (collagenase 3) 738192 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -6402 PTCD3 Pentatricopeptide repeat domain 3 1088529 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6403 LRRC23 leucine rich repeat containing 23 629187 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6404 PRKAR2A protein kinase, cAMP-dependent, regulatory, type II, alpha 503451 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -6405 ZNF184 zinc finger protein 184 1153932 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6406 SLC6A1 solute carrier family 6 (neurotransmitter transporter, GABA), member 1 940992 1 1 1 0 0 0 0 0 1 0 0.43 1.00 -6407 RBM17 RNA binding motif protein 17 633750 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6408 PYROXD1 pyridine nucleotide-disulphide oxidoreductase domain 1 741741 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6409 CLASP2 cytoplasmic linker associated protein 2 2257671 3 3 3 1 1 1 1 0 0 0 0.43 1.00 -6410 ARHGAP17 Rho GTPase activating protein 17 1328847 2 2 2 1 2 0 0 0 0 0 0.43 1.00 -6411 EIF2C4 eukaryotic translation initiation factor 2C, 4 1335945 2 2 2 0 0 1 1 0 0 0 0.43 1.00 -6412 CS citrate synthase 709293 1 1 1 0 0 0 0 1 0 0 0.43 1.00 -6413 PIGB phosphatidylinositol glycan anchor biosynthesis, class B 720447 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6414 RLBP1 retinaldehyde binding protein 1 489255 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6415 FAS Fas (TNF receptor superfamily, member 6) 529308 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -6416 RMND5B required for meiotic nuclear division 5 homolog B (S. cerevisiae) 615498 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -6417 MMRN2 multimerin 2 1116414 1 1 1 1 0 0 0 0 1 0 0.43 1.00 -6418 SLC16A12 solute carrier family 16, member 12 (monocarboxylic acid transporter 12) 798525 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -6419 HAPLN3 hyaluronan and proteoglycan link protein 3 496860 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6420 KLRAQ1 1182831 1 1 1 0 0 0 0 0 1 0 0.43 1.00 -6421 ST8SIA1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 553137 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -6422 SPTLC1 serine palmitoyltransferase, long chain base subunit 1 754416 1 1 1 1 0 1 0 0 0 0 0.43 1.00 -6423 FGL2 fibrinogen-like 2 673296 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -6424 LILRA4 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 4 767598 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -6425 PLCB2 phospholipase C, beta 2 1645215 2 2 2 0 1 1 0 0 0 0 0.43 1.00 -6426 SLC24A4 solute carrier family 24 (sodium/potassium/calcium exchanger), member 4 924768 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -6427 SLTM SAFB-like, transcription modulator 1532661 2 2 2 1 1 0 0 0 1 0 0.43 1.00 -6428 ADAMTS12 ADAM metallopeptidase with thrombospondin type 1 motif, 12 2474667 3 3 3 0 0 3 0 0 0 0 0.43 1.00 -6429 CDKL3 cyclin-dependent kinase-like 3 709293 1 1 1 0 1 0 0 0 0 0 0.43 1.00 -6430 LPAR1 lysophosphatidic acid receptor 1 561249 1 1 1 1 0 1 0 0 0 0 0.43 1.00 -6431 TRAP1 TNF receptor-associated protein 1 662142 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6432 STAT1 signal transducer and activator of transcription 1, 91kDa 1190943 1 1 1 0 0 0 0 0 1 0 0.43 1.00 -6433 GGA1 golgi associated, gamma adaptin ear containing, ARF binding protein 1 811707 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6434 SMC1B structural maintenance of chromosomes 1B 1829256 2 2 2 1 0 0 1 0 1 0 0.43 1.00 -6435 ARAP3 2337270 3 3 3 0 1 1 0 1 0 0 0.43 1.00 -6436 GNPAT glyceronephosphate O-acyltransferase 1068249 1 1 1 1 0 0 1 0 0 0 0.43 1.00 -6437 AASDH aminoadipate-semialdehyde dehydrogenase 1699971 1 1 1 0 0 0 0 0 1 0 0.43 1.00 -6438 TPCN2 two pore segment channel 2 1043406 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6439 LHX2 LIM homeobox 2 520182 1 1 1 0 0 0 1 0 0 0 0.43 1.00 -6440 GAB1 GRB2-associated binding protein 1 1086501 1 1 1 0 0 1 0 0 0 0 0.43 1.00 -6441 LCP2 lymphocyte cytosolic protein 2 (SH2 domain containing leukocyte protein of 76kDa) 767598 1 1 1 1 1 0 0 0 0 0 0.44 1.00 -6442 PNMA5 paraneoplastic antigen like 5 684957 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6443 KLHDC10 607893 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6444 ADAMTS20 ADAM metallopeptidase with thrombospondin type 1 motif, 20 2938065 4 4 4 0 1 2 1 0 0 0 0.44 1.00 -6445 MAP2K1 mitogen-activated protein kinase kinase 1 578994 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6446 STAM signal transducing adaptor molecule (SH3 domain and ITAM motif) 1 851253 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -6447 ITPRIP 835536 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6448 STAMBP STAM binding protein 664677 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6449 USP54 ubiquitin specific peptidase 54 2506101 3 3 3 2 0 1 1 1 0 0 0.44 1.00 -6450 FSIP1 fibrous sheath interacting protein 1 907530 1 1 1 0 0 0 0 1 0 0 0.44 1.00 -6451 STIM1 stromal interaction molecule 1 964821 1 1 1 1 0 0 1 0 0 0 0.44 1.00 -6452 CCDC50 coiled-coil domain containing 50 732108 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6453 USP20 ubiquitin specific peptidase 20 1144299 1 1 1 2 0 0 0 0 1 0 0.44 1.00 -6454 HNRNPH2 686478 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6455 EMR1 egf-like module containing, mucin-like, hormone receptor-like 1 1386645 2 2 2 1 0 2 0 0 0 0 0.44 1.00 -6456 ZFP64 zinc finger protein 64 homolog (mouse) 1627977 2 2 2 1 1 0 1 0 0 0 0.44 1.00 -6457 ADD3 adducin 3 (gamma) 1103739 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6458 TGFB3 transforming growth factor, beta 3 642369 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6459 GPR132 G protein-coupled receptor 132 583050 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -6460 COL15A1 collagen, type XV, alpha 1 2197845 3 3 3 0 1 1 0 1 0 0 0.44 1.00 -6461 AGPAT6 1-acylglycerol-3-phosphate O-acyltransferase 6 (lysophosphatidic acid acyltransferase, zeta) 662142 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -6462 WASF3 WAS protein family, member 3 780780 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6463 TRIP13 thyroid hormone receptor interactor 13 638313 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -6464 RSAD1 radical S-adenosyl methionine domain containing 1 621075 1 1 1 1 1 0 0 0 0 0 0.44 1.00 -6465 PPP2R2D protein phosphatase 2, regulatory subunit B, delta isoform 655044 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6466 ZNF479 zinc finger protein 479 806637 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6467 PACS1 phosphofurin acidic cluster sorting protein 1 1327326 2 2 2 0 1 1 0 0 0 0 0.44 1.00 -6468 ADD2 adducin 2 (beta) 1213251 1 1 1 2 0 0 1 0 0 0 0.44 1.00 -6469 TCF7L2 transcription factor 7-like 2 (T-cell specific, HMG-box) 939471 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6470 PLEKHM3 pleckstrin homology domain containing, family M, member 3 1173198 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -6471 USP37 ubiquitin specific peptidase 37 1537224 2 2 2 0 0 0 2 0 0 0 0.44 1.00 -6472 SLC4A1AP solute carrier family 4 (anion exchanger), member 1, adaptor protein 1240629 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -6473 TTC16 tetratricopeptide repeat domain 16 662649 1 1 1 1 0 0 1 0 0 0 0.44 1.00 -6474 GPR75 G protein-coupled receptor 75 824889 1 1 1 0 0 0 0 1 0 0 0.44 1.00 -6475 SPON1 spondin 1, extracellular matrix protein 952653 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -6476 GPC2 glypican 2 650481 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6477 ACSM2B acyl-CoA synthetase medium-chain family member 2B 905502 1 1 1 1 0 0 0 0 1 0 0.44 1.00 -6478 GK2 glycerol kinase 2 844662 1 1 1 1 0 0 0 0 1 0 0.44 1.00 -6479 SPAG16 sperm associated antigen 16 930852 1 1 1 2 1 0 0 0 0 0 0.44 1.00 -6480 PPP1R7 protein phosphatase 1, regulatory (inhibitor) subunit 7 540462 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6481 ADAM11 ADAM metallopeptidase domain 11 831480 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6482 GLYATL1 glycine-N-acyltransferase-like 1 508014 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6483 TTC39A 825903 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -6484 TGS1 trimethylguanosine synthase homolog (S. cerevisiae) 1324284 2 2 2 0 0 1 1 0 0 0 0.44 1.00 -6485 LAMA4 laminin, alpha 4 2930460 4 4 4 0 1 3 0 0 0 0 0.44 1.00 -6486 ENO3 enolase 3 (beta, muscle) 683943 1 1 1 0 0 0 0 1 0 0 0.44 1.00 -6487 ABL1 c-abl oncogene 1, receptor tyrosine kinase 1710618 2 2 2 0 0 0 0 1 1 0 0.44 1.00 -6488 VNN1 vanin 1 795990 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6489 RAGE renal tumor antigen 657579 1 1 1 1 0 1 0 0 0 0 0.44 1.00 -6490 FAM81B family with sequence similarity 81, member B 709293 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -6491 RARS arginyl-tRNA synthetase 1010958 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -6492 OAS2 2'-5'-oligoadenylate synthetase 2, 69/71kDa 1161030 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6493 DDX56 DEAD (Asp-Glu-Ala-Asp) box polypeptide 56 770640 1 1 1 0 0 0 0 1 0 0 0.44 1.00 -6494 EPN2 epsin 2 748839 1 1 1 0 0 0 0 0 1 0 0.44 1.00 -6495 ZNF169 zinc finger protein 169 926796 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6496 IL18R1 interleukin 18 receptor 1 844662 1 1 1 2 0 0 1 0 0 0 0.44 1.00 -6497 GRIPAP1 GRIP1 associated protein 1 1360788 2 2 2 1 0 2 0 0 0 0 0.44 1.00 -6498 RABGGTB Rab geranylgeranyltransferase, beta subunit 523224 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6499 ATF7IP activating transcription factor 7 interacting protein 1961583 2 2 2 0 0 2 0 0 0 0 0.44 1.00 -6500 ZNF644 zinc finger protein 644 2030028 2 2 2 0 0 1 0 0 1 0 0.44 1.00 -6501 KIAA1614 KIAA1614 1550406 2 2 2 0 0 1 0 1 0 0 0.44 1.00 -6502 ADCY3 adenylate cyclase 3 1556997 2 2 2 1 0 1 1 0 0 0 0.44 1.00 -6503 DACH2 dachshund homolog 2 (Drosophila) 936936 1 1 1 3 0 0 1 0 0 0 0.44 1.00 -6504 BLZF1 basic leucine zipper nuclear factor 1 (JEM-1) 622089 1 1 1 1 0 0 0 1 0 0 0.44 1.00 -6505 C6orf170 chromosome 6 open reading frame 170 1978314 2 2 2 0 0 1 0 0 1 0 0.44 1.00 -6506 PER3 period homolog 3 (Drosophila) 1803906 2 2 2 0 1 0 0 0 1 0 0.44 1.00 -6507 TTC38 609414 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6508 CAPN11 calpain 11 1077882 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6509 KCNS3 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 3 750360 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6510 CMKLR1 chemokine-like receptor 1 569361 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6511 GPLD1 glycosylphosphatidylinositol specific phospholipase D1 1298934 2 2 2 0 0 1 1 0 0 0 0.44 1.00 -6512 WIPI1 WD repeat domain, phosphoinositide interacting 1 663663 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6513 PANK2 pantothenate kinase 2 (Hallervorden-Spatz syndrome) 562263 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -6514 NEUROD1 neurogenic differentiation 1 545025 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6515 TUBB4 tubulin, beta 4 654030 1 1 1 1 0 0 0 0 1 0 0.44 1.00 -6516 SGMS1 sphingomyelin synthase 1 639834 1 1 1 1 0 1 0 0 0 0 0.44 1.00 -6517 SGSM3 small G protein signaling modulator 3 779259 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6518 RFTN2 raftlin family member 2 727038 1 1 1 0 0 0 0 1 0 0 0.44 1.00 -6519 ATP6V1H ATPase, H+ transporting, lysosomal 50/57kDa, V1 subunit H 731094 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6520 HELQ 1712646 2 2 2 0 0 1 1 0 0 0 0.44 1.00 -6521 CCDC132 coiled-coil domain containing 132 1545843 2 2 2 0 1 0 0 0 1 0 0.44 1.00 -6522 GH2 growth hormone 2 512577 1 1 1 1 1 0 0 0 0 0 0.44 1.00 -6523 UBLCP1 ubiquitin-like domain containing CTD phosphatase 1 505479 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6524 NUDT13 nudix (nucleoside diphosphate linked moiety X)-type motif 13 553137 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -6525 IL22RA1 interleukin 22 receptor, alpha 1 790920 1 1 1 0 0 0 1 0 0 0 0.44 1.00 -6526 C2orf63 chromosome 2 open reading frame 63 915135 1 1 1 0 1 0 0 0 0 0 0.44 1.00 -6527 LEPREL2 leprecan-like 2 816270 1 1 1 0 0 1 0 0 0 0 0.44 1.00 -6528 IWS1 IWS1 homolog (S. cerevisiae) 1256346 1 1 1 2 0 0 0 0 1 0 0.44 1.00 -6529 PCBP1 poly(rC) binding protein 1 544011 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -6530 COL4A2 collagen, type IV, alpha 2 2102529 2 2 2 0 0 0 2 0 0 0 0.45 1.00 -6531 RUFY3 RUN and FYVE domain containing 3 1022112 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -6532 APCDD1 adenomatosis polyposis coli down-regulated 1 762021 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -6533 DOPEY2 dopey family member 2 3365466 5 4 5 1 1 2 2 0 0 0 0.45 1.00 -6534 TULP1 tubby like protein 1 642876 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6535 OVCH2 ovochymase 2 867477 1 1 1 1 1 0 0 0 0 0 0.45 1.00 -6536 FTSJD2 1318200 2 2 2 1 2 0 0 0 0 0 0.45 1.00 -6537 RBM27 RNA binding motif protein 27 1624428 2 2 2 0 0 1 1 0 0 0 0.45 1.00 -6538 APOBEC3B apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3B 598767 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6539 LRIT1 leucine-rich repeat, immunoglobulin-like and transmembrane domains 1 768612 1 1 1 0 0 0 0 1 0 0 0.45 1.00 -6540 TFRC transferrin receptor (p90, CD71) 1193478 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -6541 CLCNKB chloride channel Kb 1057095 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6542 HAO2 hydroxyacid oxidase 2 (long chain) 549588 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6543 ZBTB40 zinc finger and BTB domain containing 40 1920516 2 2 2 0 0 1 0 0 1 0 0.45 1.00 -6544 KLHL28 kelch-like 28 (Drosophila) 878124 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6545 TAAR2 trace amine associated receptor 2 539448 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -6546 FCGR1A Fc fragment of IgG, high affinity Ia, receptor (CD64) 570375 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -6547 NOS1 nitric oxide synthase 1 (neuronal) 2239419 3 3 3 0 2 0 1 0 0 0 0.45 1.00 -6548 EPHA7 EPH receptor A7 1553955 2 2 2 0 0 0 2 0 0 0 0.45 1.00 -6549 CHST1 carbohydrate (keratan sulfate Gal-6) sulfotransferase 1 628680 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6550 CLEC14A C-type lectin domain family 14, member A 525252 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6551 GARS glycyl-tRNA synthetase 1045434 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -6552 RFFL ring finger and FYVE-like domain containing 1 526266 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6553 HSPG2 heparan sulfate proteoglycan 2 4520919 5 5 5 1 1 2 1 0 1 0 0.45 1.00 -6554 CCDC125 coiled-coil domain containing 125 801060 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -6555 ITGB1BP2 integrin beta 1 binding protein (melusin) 2 551616 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6556 ANKRD32 ankyrin repeat domain 32 698646 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6557 SORT1 sortilin 1 1148862 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -6558 CXCR7 chemokine (C-X-C motif) receptor 7 554151 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6559 SMC1A structural maintenance of chromosomes 1A 1916967 2 2 2 0 0 0 2 0 0 0 0.45 1.00 -6560 DSEL dermatan sulfate epimerase-like 1862211 2 2 2 0 0 1 0 0 1 0 0.45 1.00 -6561 TTN titin 56224272 77 62 77 9 18 16 27 6 6 4 0.45 1.00 -6562 SGCE sarcoglycan, epsilon 659100 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -6563 CCDC8 coiled-coil domain containing 8 819819 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6564 SLC16A1 solute carrier family 16, member 1 (monocarboxylic acid transporter 1) 770133 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6565 CNGA1 cyclic nucleotide gated channel alpha 1 1044927 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6566 ATP8B1 ATPase, class I, type 8B, member 1 1842945 2 2 2 0 1 0 0 0 1 0 0.45 1.00 -6567 FAM186B 1373970 2 2 2 0 0 2 0 0 0 0 0.45 1.00 -6568 RIC8B resistance to inhibitors of cholinesterase 8 homolog B (C. elegans) 766077 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6569 C1GALT1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase, 1 559728 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6570 DOCK10 dedicator of cytokinesis 10 3231618 4 4 4 0 1 1 2 0 0 0 0.45 1.00 -6571 CACNA1C calcium channel, voltage-dependent, L type, alpha 1C subunit 3500835 4 4 4 3 0 2 1 1 0 0 0.45 1.00 -6572 SV2A synaptic vesicle glycoprotein 2A 1154439 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6573 ANXA3 annexin A3 517140 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -6574 POM121 POM121 membrane glycoprotein (rat) 1297413 2 2 2 0 1 0 1 0 0 0 0.45 1.00 -6575 PDE4A phosphodiesterase 4A, cAMP-specific (phosphodiesterase E2 dunce homolog, Drosophila) 1290315 1 1 1 2 0 0 1 0 0 0 0.45 1.00 -6576 TKTL1 transketolase-like 1 934401 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6577 GIMAP2 GTPase, IMAP family member 2 518154 1 1 1 1 0 0 1 0 0 0 0.45 1.00 -6578 SPATA17 spermatogenesis associated 17 570882 1 1 1 1 1 0 0 0 0 0 0.45 1.00 -6579 PTPN13 protein tyrosine phosphatase, non-receptor type 13 (APO-1/CD95 (Fas)-associated phosphatase) 3553056 4 4 4 0 2 0 0 1 1 0 0.45 1.00 -6580 GPR113 G protein-coupled receptor 113 1314144 2 2 2 0 0 0 2 0 0 0 0.45 1.00 -6581 KCNJ1 potassium inwardly-rectifying channel, subfamily J, member 1 600288 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6582 CHRNB3 cholinergic receptor, nicotinic, beta 3 710307 1 1 1 1 0 0 1 0 0 0 0.45 1.00 -6583 SPTB spectrin, beta, erythrocytic (includes spherocytosis, clinical type I) 3491202 4 4 4 1 1 2 0 0 1 0 0.45 1.00 -6584 RASA2 RAS p21 protein activator 2 1272063 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -6585 STRC stereocilin 1246206 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -6586 ZNF12 zinc finger protein 12 1069770 1 1 1 0 0 0 0 1 0 0 0.45 1.00 -6587 FAM188B 1098162 1 1 1 1 0 0 0 0 1 0 0.45 1.00 -6588 OSBPL9 oxysterol binding protein-like 9 1155960 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -6589 IRS1 insulin receptor substrate 1 1827228 1 1 1 1 0 0 0 0 1 0 0.45 1.00 -6590 CCDC114 coiled-coil domain containing 114 739206 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6591 SLAMF1 signaling lymphocytic activation molecule family member 1 525252 1 1 1 1 1 0 0 0 0 0 0.45 1.00 -6592 ZNF48 zinc finger protein 48 902967 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6593 AMIGO2 adhesion molecule with Ig-like domain 2 797511 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -6594 C11orf49 chromosome 11 open reading frame 49 602823 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -6595 PDK1 pyruvate dehydrogenase kinase, isozyme 1 585585 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -6596 RCOR3 REST corepressor 3 797511 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6597 FER1L6 fer-1-like 6 (C. elegans) 2907138 2 2 1 1 0 0 0 0 2 0 0.45 1.00 -6598 ZNF43 zinc finger protein 43 1240122 1 1 1 0 0 0 0 1 0 0 0.45 1.00 -6599 AGXT2L2 alanine-glyoxylate aminotransferase 2-like 2 678366 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -6600 ABCC2 ATP-binding cassette, sub-family C (CFTR/MRP), member 2 2416362 3 3 3 0 1 0 2 0 0 0 0.45 1.00 -6601 SLFN5 schlafen family member 5 1364844 2 2 2 1 1 0 0 1 0 0 0.45 1.00 -6602 ANXA4 annexin A4 514098 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6603 EGR1 early growth response 1 830973 1 1 1 1 0 0 0 1 0 0 0.45 1.00 -6604 SEMA7A semaphorin 7A, GPI membrane anchor (John Milton Hagen blood group) 943020 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -6605 KCNA2 potassium voltage-gated channel, shaker-related subfamily, member 2 762528 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -6606 LPL lipoprotein lipase 697632 1 1 1 1 1 0 0 0 0 0 0.45 1.00 -6607 TTC14 tetratricopeptide repeat domain 14 1128582 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6608 ALKBH1 alkB, alkylation repair homolog 1 (E. coli) 605358 1 1 1 0 0 0 0 1 0 0 0.45 1.00 -6609 GOLGA2 golgi autoantigen, golgin subfamily a, 2 1533168 2 2 2 0 0 2 0 0 0 0 0.45 1.00 -6610 CCDC11 coiled-coil domain containing 11 799539 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6611 ZNF202 zinc finger protein 202 999297 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6612 ARSF arylsulfatase F 919191 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6613 GABRR1 gamma-aminobutyric acid (GABA) receptor, rho 1 750360 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6614 EXOC6B exocyst complex component 6B 1211730 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -6615 MIA2 melanoma inhibitory activity 2 1008423 1 1 1 0 0 0 1 0 0 0 0.45 1.00 -6616 HIVEP3 human immunodeficiency virus type I enhancer binding protein 3 3178890 4 4 4 1 1 3 0 0 0 0 0.45 1.00 -6617 KIF16B kinesin family member 16B 2031549 2 2 2 0 1 0 0 0 1 0 0.45 1.00 -6618 ZER1 zer-1 homolog (C. elegans) 1111344 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6619 MFAP1 microfibrillar-associated protein 1 687492 1 1 1 0 0 0 0 1 0 0 0.45 1.00 -6620 CDH18 cadherin 18, type 2 1225419 1 1 1 0 0 0 0 1 0 0 0.45 1.00 -6621 SYNE1 spectrin repeat containing, nuclear envelope 1 13712322 16 16 16 5 6 3 3 0 4 0 0.45 1.00 -6622 ACE2 angiotensin I converting enzyme (peptidyl-dipeptidase A) 2 1262430 1 1 1 0 0 0 0 0 1 0 0.45 1.00 -6623 BACE1 beta-site APP-cleaving enzyme 1 691041 1 1 1 0 1 0 0 0 0 0 0.45 1.00 -6624 GPC6 glypican 6 831987 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6625 P2RX4 purinergic receptor P2X, ligand-gated ion channel, 4 546039 1 1 1 1 0 1 0 0 0 0 0.45 1.00 -6626 C19orf61 chromosome 19 open reading frame 61 762528 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6627 CTNNA2 catenin (cadherin-associated protein), alpha 2 1412502 2 2 2 2 0 2 0 0 0 0 0.45 1.00 -6628 GCKR glucokinase (hexokinase 4) regulator 990678 1 1 1 0 0 1 0 0 0 0 0.45 1.00 -6629 ZFP106 zinc finger protein 106 homolog (mouse) 2904096 3 3 3 0 0 0 1 0 2 0 0.46 1.00 -6630 LRCH3 leucine-rich repeats and calponin homology (CH) domain containing 3 988143 1 1 1 0 0 0 0 0 1 0 0.46 1.00 -6631 C3orf15 chromosome 3 open reading frame 15 1137708 1 1 1 1 0 1 0 0 0 0 0.46 1.00 -6632 PLOD3 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 3 989157 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -6633 XYLT2 xylosyltransferase II 1139229 1 1 1 1 0 0 1 0 0 0 0.46 1.00 -6634 COL24A1 collagen, type XXIV, alpha 1 2730195 2 2 2 0 1 0 0 0 1 0 0.46 1.00 -6635 ZRANB2 zinc finger, RAN-binding domain containing 2 542997 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6636 ZNF652 zinc finger protein 652 933387 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -6637 C12orf51 chromosome 12 open reading frame 51 5473065 6 6 6 0 0 2 3 0 1 0 0.46 1.00 -6638 FZD9 frizzled homolog 9 (Drosophila) 528294 1 1 1 1 1 0 0 0 0 0 0.46 1.00 -6639 TMC3 transmembrane channel-like 3 1640652 2 2 2 1 0 2 0 0 0 0 0.46 1.00 -6640 KIAA0146 KIAA0146 1163565 1 1 1 2 0 1 0 0 0 0 0.46 1.00 -6641 ZDHHC6 zinc finger, DHHC-type containing 6 620568 1 1 1 0 0 0 0 1 0 0 0.46 1.00 -6642 CYP2C19 cytochrome P450, family 2, subfamily C, polypeptide 19 765063 1 1 1 1 1 0 0 0 0 0 0.46 1.00 -6643 UBR5 ubiquitin protein ligase E3 component n-recognin 5 4344990 4 4 4 1 2 1 0 0 1 0 0.46 1.00 -6644 SLC5A5 solute carrier family 5 (sodium iodide symporter), member 5 823368 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6645 PRKDC protein kinase, DNA-activated, catalytic polypeptide 6175260 7 7 7 1 2 3 2 0 0 0 0.46 1.00 -6646 PI4K2A phosphatidylinositol 4-kinase type 2 alpha 525759 1 1 1 1 0 1 0 0 0 0 0.46 1.00 -6647 YTHDF1 YTH domain family, member 1 831480 1 1 1 3 0 0 0 0 1 0 0.46 1.00 -6648 SIRPB2 signal-regulatory protein beta 2 520689 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -6649 IGF2BP1 insulin-like growth factor 2 mRNA binding protein 1 909558 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6650 MPO myeloperoxidase 946062 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6651 ARHGAP31 2222181 3 3 3 0 1 1 1 0 0 0 0.46 1.00 -6652 MDGA2 MAM domain containing glycosylphosphatidylinositol anchor 2 1184352 1 1 1 1 1 0 0 0 0 0 0.46 1.00 -6653 EGF epidermal growth factor (beta-urogastrone) 1886040 2 2 2 0 1 0 0 1 0 0 0.46 1.00 -6654 ESX1 ESX homeobox 1 547560 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6655 TANK TRAF family member-associated NFKB activator 678873 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -6656 BVES blood vessel epicardial substance 563277 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -6657 FAM120B family with sequence similarity 120B 1300455 1 1 1 0 0 0 0 0 1 0 0.46 1.00 -6658 NR4A2 nuclear receptor subfamily 4, group A, member 2 757458 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6659 C6orf150 chromosome 6 open reading frame 150 570375 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -6660 TRPC3 transient receptor potential cation channel, subfamily C, member 3 1315665 2 2 2 2 1 1 0 0 0 0 0.46 1.00 -6661 B3GNT4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 545025 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -6662 MYBPC1 myosin binding protein C, slow type 1855620 2 2 2 1 0 0 1 1 0 0 0.46 1.00 -6663 BMP5 bone morphogenetic protein 5 706251 1 1 1 0 0 0 0 1 0 0 0.46 1.00 -6664 SETBP1 SET binding protein 1 2212548 3 3 3 0 0 1 2 0 0 0 0.46 1.00 -6665 IL1R1 interleukin 1 receptor, type I 887250 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -6666 PRDM15 PR domain containing 15 1156974 1 1 1 1 0 0 0 0 1 0 0.46 1.00 -6667 CHI3L1 chitinase 3-like 1 (cartilage glycoprotein-39) 604344 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6668 DUOX1 dual oxidase 1 2204436 3 3 3 1 1 2 0 0 0 0 0.46 1.00 -6669 ZNF329 zinc finger protein 329 826410 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -6670 TTLL7 tubulin tyrosine ligase-like family, member 7 1391208 2 2 2 0 2 0 0 0 0 0 0.46 1.00 -6671 LRRIQ4 863421 1 1 1 1 0 1 0 0 0 0 0.46 1.00 -6672 EIF5B eukaryotic translation initiation factor 5B 1893645 2 2 2 0 1 0 0 1 0 0 0.46 1.00 -6673 LRP10 low density lipoprotein receptor-related protein 10 1100190 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6674 DUSP27 dual specificity phosphatase 27 (putative) 1558011 2 2 2 0 1 1 0 0 0 0 0.46 1.00 -6675 TSC1 tuberous sclerosis 1 1814553 2 2 2 1 0 2 0 0 0 0 0.46 1.00 -6676 HIRA HIR histone cell cycle regulation defective homolog A (S. cerevisiae) 1311102 1 1 1 1 0 0 0 0 1 0 0.46 1.00 -6677 TEX11 testis expressed 11 1467258 2 2 2 0 1 1 0 0 0 0 0.46 1.00 -6678 KCNH3 potassium voltage-gated channel, subfamily H (eag-related), member 3 1233531 1 1 1 1 0 1 0 0 0 0 0.46 1.00 -6679 GLT25D1 glycosyltransferase 25 domain containing 1 735657 1 1 1 0 0 0 0 1 0 0 0.46 1.00 -6680 PAPD5 PAP associated domain containing 5 728052 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6681 CASC3 cancer susceptibility candidate 3 978003 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -6682 PZP pregnancy-zone protein 2328651 3 3 3 1 1 0 2 0 0 0 0.46 1.00 -6683 AMOT angiomotin 996762 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -6684 HRH4 histamine receptor H4 600795 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -6685 KIF19 kinesin family member 19 856323 1 1 1 3 1 0 0 0 0 0 0.46 1.00 -6686 VCPIP1 valosin containing protein (p97)/p47 complex interacting protein 1 1832298 1 1 1 2 0 0 0 0 1 0 0.46 1.00 -6687 LLGL1 lethal giant larvae homolog 1 (Drosophila) 1138215 1 1 1 1 0 0 1 0 0 0 0.46 1.00 -6688 PRKCI protein kinase C, iota 891306 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -6689 CRAMP1L Crm, cramped-like (Drosophila) 764049 1 1 1 1 0 0 1 0 0 0 0.46 1.00 -6690 GPR128 G protein-coupled receptor 128 1246206 1 1 1 2 0 0 1 0 0 0 0.46 1.00 -6691 BRE brain and reproductive organ-expressed (TNFRSF1A modulator) 713349 1 1 1 0 0 0 0 0 1 0 0.46 1.00 -6692 KIAA1199 KIAA1199 2057913 2 2 2 2 0 0 1 1 0 0 0.46 1.00 -6693 ZNF429 zinc finger protein 429 1017549 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -6694 B3GNT2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 607386 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -6695 ARFIP1 ADP-ribosylation factor interacting protein 1 (arfaptin 1) 585078 1 1 1 0 0 0 1 0 0 0 0.46 1.00 -6696 MAPT microtubule-associated protein tau 928317 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6697 NADK NAD kinase 651495 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -6698 EGR2 early growth response 2 (Krox-20 homolog, Drosophila) 713856 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -6699 DDN dendrin 827424 1 1 1 0 0 0 0 1 0 0 0.46 1.00 -6700 KBTBD5 kelch repeat and BTB (POZ) domain containing 5 722982 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6701 TKT transketolase (Wernicke-Korsakoff syndrome) 898404 1 1 1 0 0 1 0 0 0 0 0.46 1.00 -6702 KRT37 keratin 37 652509 1 1 1 0 1 0 0 0 0 0 0.46 1.00 -6703 CNDP2 CNDP dipeptidase 2 (metallopeptidase M20 family) 719433 1 1 1 0 0 0 0 1 0 0 0.46 1.00 -6704 TFCP2L1 transcription factor CP2-like 1 671268 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -6705 JAK3 Janus kinase 3 (a protein tyrosine kinase, leukocyte) 1281696 1 1 1 1 0 0 0 0 1 0 0.47 1.00 -6706 ZNF823 zinc finger protein 823 934401 1 1 1 0 1 0 0 0 0 0 0.47 1.00 -6707 CSRNP3 899418 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6708 NAALADL1 N-acetylated alpha-linked acidic dipeptidase-like 1 1065207 1 1 1 1 0 1 0 0 0 0 0.47 1.00 -6709 KDM3A 1965132 2 2 2 0 1 0 0 1 0 0 0.47 1.00 -6710 LAMB2 laminin, beta 2 (laminin S) 2800161 3 3 3 1 0 1 1 0 1 0 0.47 1.00 -6711 COQ3 coenzyme Q3 homolog, methyltransferase (S. cerevisiae) 576966 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6712 PCDHB13 protocadherin beta 13 1209195 1 1 1 1 0 1 0 0 0 0 0.47 1.00 -6713 FBXL2 F-box and leucine-rich repeat protein 2 671775 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -6714 PHF16 PHD finger protein 16 1273584 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -6715 C22orf28 chromosome 22 open reading frame 28 793962 1 1 1 0 0 0 0 1 0 0 0.47 1.00 -6716 NUP205 nucleoporin 205kDa 3148977 4 4 4 0 1 0 1 1 1 0 0.47 1.00 -6717 DNAI2 dynein, axonemal, intermediate chain 2 900939 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -6718 AK7 adenylate kinase 7 1137708 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6719 SGOL1 shugoshin-like 1 (S. pombe) 881166 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6720 FAM21C family with sequence similarity 21, member C 1371435 2 2 2 0 1 1 0 0 0 0 0.47 1.00 -6721 SLC4A7 solute carrier family 4, sodium bicarbonate cotransporter, member 7 1898715 2 2 2 0 0 0 0 1 1 0 0.47 1.00 -6722 AKAP12 A kinase (PRKA) anchor protein (gravin) 12 2648568 2 2 2 1 0 0 1 0 1 0 0.47 1.00 -6723 PRAMEF4 PRAME family member 4 734643 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -6724 LIG1 ligase I, DNA, ATP-dependent 1205139 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -6725 TMEM104 transmembrane protein 104 774189 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6726 BAT5 HLA-B associated transcript 5 883194 1 1 1 0 1 0 0 0 0 0 0.47 1.00 -6727 GSS glutathione synthetase 746811 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -6728 ZCCHC8 zinc finger, CCHC domain containing 8 961272 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -6729 PGM1 phosphoglucomutase 1 906009 1 1 1 0 0 0 0 1 0 0 0.47 1.00 -6730 PLEKHG4B pleckstrin homology domain containing, family G (with RhoGef domain) member 4B 848718 1 1 1 1 0 1 0 0 0 0 0.47 1.00 -6731 UBE4B ubiquitination factor E4B (UFD2 homolog, yeast) 2038647 2 2 2 1 0 2 0 0 0 0 0.47 1.00 -6732 ZNF491 zinc finger protein 491 668226 1 1 1 0 1 0 0 0 0 0 0.47 1.00 -6733 TMEM63B transmembrane protein 63B 1313130 2 1 2 1 0 0 0 0 0 2 0.47 1.00 -6734 MRS2 MRS2 magnesium homeostasis factor homolog (S. cerevisiae) 611442 1 1 1 0 0 0 0 1 0 0 0.47 1.00 -6735 MGAT4C mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme C (putative) 734643 1 1 1 0 0 0 0 1 0 0 0.47 1.00 -6736 PCDHGB4 protocadherin gamma subfamily B, 4 1254318 1 1 1 1 0 0 0 0 1 0 0.47 1.00 -6737 P4HA3 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide III 751881 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6738 AKAP9 A kinase (PRKA) anchor protein (yotiao) 9 6006429 7 7 7 2 1 2 0 3 1 0 0.47 1.00 -6739 CEP192 centrosomal protein 192kDa 3071406 4 4 4 0 1 1 1 0 1 0 0.47 1.00 -6740 ZSWIM3 zinc finger, SWIM-type containing 3 1064193 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -6741 NBR1 neighbor of BRCA1 gene 1 551616 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -6742 CHPF chondroitin polymerizing factor 952653 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -6743 CLPTM1 cleft lip and palate associated transmembrane protein 1 1008930 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -6744 C14orf106 chromosome 14 open reading frame 106 1708590 2 2 2 0 0 0 0 1 1 0 0.47 1.00 -6745 COG6 component of oligomeric golgi complex 6 959751 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -6746 WDR37 WD repeat domain 37 779259 1 1 1 1 0 1 0 0 0 0 0.47 1.00 -6747 MED13L mediator complex subunit 13-like 3387267 4 4 4 0 2 1 0 0 1 0 0.47 1.00 -6748 ENTPD6 ectonucleoside triphosphate diphosphohydrolase 6 (putative function) 709293 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6749 ANO2 1560546 2 2 2 2 1 1 0 0 0 0 0.47 1.00 -6750 MDM1 Mdm1 nuclear protein homolog (mouse) 1155453 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6751 ZNF174 zinc finger protein 174 669240 1 1 1 1 0 0 1 0 0 0 0.47 1.00 -6752 EPHB6 EPH receptor B6 1583868 2 2 2 1 0 1 1 0 0 0 0.47 1.00 -6753 CREM cAMP responsive element modulator 655044 1 1 1 0 0 0 0 1 0 0 0.47 1.00 -6754 CFB complement factor B 1200069 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6755 ZNF416 zinc finger protein 416 894348 1 1 1 0 1 0 0 0 0 0 0.47 1.00 -6756 DHX15 DEAH (Asp-Glu-Ala-His) box polypeptide 15 1201083 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -6757 TRAF6 TNF receptor-associated factor 6 806130 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6758 DHX57 DEAH (Asp-Glu-Ala-Asp/His) box polypeptide 57 2156271 3 3 3 0 1 0 1 1 0 0 0.47 1.00 -6759 UBR4 ubiquitin protein ligase E3 component n-recognin 4 7798674 9 9 8 4 1 3 4 1 0 0 0.47 1.00 -6760 FRY furry homolog (Drosophila) 4708002 6 6 6 1 2 1 0 1 2 0 0.47 1.00 -6761 DDX10 DEAD (Asp-Glu-Ala-Asp) box polypeptide 10 1312116 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -6762 CBX4 chromobox homolog 4 (Pc class homolog, Drosophila) 556179 1 1 1 0 1 0 0 0 0 0 0.47 1.00 -6763 ZBTB6 zinc finger and BTB domain containing 6 648453 3 1 3 1 0 0 1 1 1 0 0.47 1.00 -6764 EHD3 EH-domain containing 3 821340 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -6765 C4orf35 chromosome 4 open reading frame 35 604344 1 1 1 1 0 1 0 0 0 0 0.47 1.00 -6766 CD163 CD163 molecule 1792245 2 2 2 0 0 1 0 1 0 0 0.47 1.00 -6767 DLD dihydrolipoamide dehydrogenase 804102 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6768 CD244 CD244 molecule, natural killer cell receptor 2B4 582543 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6769 HP haptoglobin 627666 1 1 1 1 0 0 0 1 0 0 0.47 1.00 -6770 LRRC48 leucine rich repeat containing 48 601302 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -6771 ZNF671 zinc finger protein 671 749853 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -6772 MED24 mediator complex subunit 24 1341522 1 1 1 1 0 0 0 0 1 0 0.47 1.00 -6773 TET3 tet oncogene family member 3 2295189 3 3 3 0 1 1 1 0 0 0 0.47 1.00 -6774 ZNF449 zinc finger protein 449 797511 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6775 POU2F3 POU class 2 homeobox 3 674817 1 1 1 1 0 1 0 0 0 0 0.47 1.00 -6776 ISM2 810693 1 1 1 1 0 1 0 0 0 0 0.47 1.00 -6777 HMGCLL1 3-hydroxymethyl-3-methylglutaryl-Coenzyme A lyase-like 1 559728 1 1 1 2 0 1 0 0 0 0 0.47 1.00 -6778 ZNF551 zinc finger protein 551 983580 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -6779 RHBDF2 rhomboid 5 homolog 2 (Drosophila) 1111851 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6780 GAS2L3 growth arrest-specific 2 like 3 1073319 1 1 1 1 0 0 1 0 0 0 0.47 1.00 -6781 ZNF407 zinc finger protein 407 2820441 3 3 3 0 0 0 2 1 0 0 0.47 1.00 -6782 CCDC147 coiled-coil domain containing 147 1364337 2 2 2 2 0 0 2 0 0 0 0.47 1.00 -6783 C7orf58 chromosome 7 open reading frame 58 1630005 2 2 2 0 1 0 1 0 0 0 0.47 1.00 -6784 CCDC150 coiled-coil domain containing 150 1732926 2 2 2 0 0 0 2 0 0 0 0.47 1.00 -6785 GPR179 G protein-coupled receptor 179 3170778 4 4 4 1 3 0 1 0 0 0 0.47 1.00 -6786 NPR2 natriuretic peptide receptor B/guanylate cyclase B (atrionatriuretic peptide receptor B) 1604148 2 2 2 0 0 1 0 1 0 0 0.47 1.00 -6787 HOXB3 homeobox B3 619047 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -6788 N4BP1 NEDD4 binding protein 1 1224405 1 1 1 0 0 0 0 1 0 0 0.47 1.00 -6789 ACSL3 acyl-CoA synthetase long-chain family member 3 1125033 1 1 1 0 0 1 0 0 0 0 0.47 1.00 -6790 ALG6 asparagine-linked glycosylation 6 homolog (S. cerevisiae, alpha-1,3-glucosyltransferase) 801060 1 1 1 0 0 0 0 1 0 0 0.47 1.00 -6791 DRD2 dopamine receptor D2 689013 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -6792 SRRM2 serine/arginine repetitive matrix 2 4039776 6 5 6 3 1 1 3 0 1 0 0.47 1.00 -6793 GLI3 GLI-Kruppel family member GLI3 (Greig cephalopolysyndactyly syndrome) 2174523 3 2 3 2 0 1 0 1 1 0 0.47 1.00 -6794 SEMA3E sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3E 1214772 1 1 1 1 1 0 0 0 0 0 0.47 1.00 -6795 RANBP6 RAN binding protein 6 1684254 2 2 2 0 0 0 1 1 0 0 0.47 1.00 -6796 FKTN fukutin 720954 1 1 1 0 0 0 0 1 0 0 0.47 1.00 -6797 FNDC3A fibronectin type III domain containing 3A 1879956 1 1 1 0 0 0 0 0 1 0 0.47 1.00 -6798 DTNBP1 dystrobrevin binding protein 1 604851 1 1 1 0 0 0 1 0 0 0 0.47 1.00 -6799 HSD17B2 hydroxysteroid (17-beta) dehydrogenase 2 600288 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6800 MTRF1 mitochondrial translational release factor 1 696618 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6801 MARCO macrophage receptor with collagenous structure 826410 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -6802 AP2A2 adaptor-related protein complex 2, alpha 2 subunit 682422 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6803 UMPS uridine monophosphate synthetase 743769 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6804 ADAMTS15 ADAM metallopeptidase with thrombospondin type 1 motif, 15 1299948 1 1 1 1 0 0 0 0 1 0 0.48 1.00 -6805 PDSS1 prenyl (decaprenyl) diphosphate synthase, subunit 1 570882 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6806 MPHOSPH9 M-phase phosphoprotein 9 1610232 2 2 2 0 0 1 1 0 0 0 0.48 1.00 -6807 FBXO24 F-box protein 24 903981 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6808 PRR5L 577473 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -6809 ALDH9A1 aldehyde dehydrogenase 9 family, member A1 728559 1 1 1 1 0 1 0 0 0 0 0.48 1.00 -6810 UGT2A1 UDP glucuronosyltransferase 2 family, polypeptide A1 815256 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -6811 COL5A1 collagen, type V, alpha 1 1980849 2 2 2 1 1 1 0 0 0 0 0.48 1.00 -6812 ZNF681 zinc finger protein 681 990678 1 1 1 0 0 0 0 1 0 0 0.48 1.00 -6813 RIMS1 regulating synaptic membrane exocytosis 1 2206971 3 3 3 0 1 0 2 0 0 0 0.48 1.00 -6814 RBMS1 RNA binding motif, single stranded interacting protein 1 637806 1 1 1 0 0 0 0 1 0 0 0.48 1.00 -6815 SEMA3D sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3D 1217814 1 1 1 0 0 0 0 0 1 0 0.48 1.00 -6816 PHF3 PHD finger protein 3 3133260 4 4 4 0 0 1 2 1 0 0 0.48 1.00 -6817 ADARB1 adenosine deaminase, RNA-specific, B1 (RED1 homolog rat) 869505 1 1 1 1 0 1 0 0 0 0 0.48 1.00 -6818 KRTAP10-4 keratin associated protein 10-4 613470 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6819 PCDH10 protocadherin 10 1360281 1 1 1 2 0 0 0 0 1 0 0.48 1.00 -6820 TIMM50 translocase of inner mitochondrial membrane 50 homolog (S. cerevisiae) 663663 1 1 1 0 0 0 0 1 0 0 0.48 1.00 -6821 CAGE1 cancer antigen 1 1034787 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6822 WDR62 WD repeat domain 62 2162355 2 2 2 0 0 0 1 0 1 0 0.48 1.00 -6823 SLC26A7 solute carrier family 26, member 7 1066728 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -6824 IL13RA1 interleukin 13 receptor, alpha 1 626652 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6825 ST8SIA3 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 3 566826 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6826 RRBP1 ribosome binding protein 1 homolog 180kDa (dog) 1295892 1 1 1 0 0 0 0 1 0 0 0.48 1.00 -6827 C6orf142 chromosome 6 open reading frame 142 724503 1 1 1 2 0 0 1 0 0 0 0.48 1.00 -6828 RPS6KA1 ribosomal protein S6 kinase, 90kDa, polypeptide 1 1006395 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6829 GPR107 G protein-coupled receptor 107 804102 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6830 FASTKD5 FAST kinase domains 5 1165593 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6831 RASAL2 RAS protein activator like 2 1830270 2 2 2 0 0 2 0 0 0 0 0.48 1.00 -6832 CLCNKA chloride channel Ka 969891 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6833 LUC7L2 LUC7-like 2 (S. cerevisiae) 585078 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -6834 ADAMTS4 ADAM metallopeptidase with thrombospondin type 1 motif, 4 1255332 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6835 PRPF40B PRP40 pre-mRNA processing factor 40 homolog B (S. cerevisiae) 1363830 2 1 2 0 0 0 0 0 0 2 0.48 1.00 -6836 TRPV6 transient receptor potential cation channel, subfamily V, member 6 1134159 1 1 1 2 0 0 1 0 0 0 0.48 1.00 -6837 PLXND1 plexin D1 1932684 2 2 2 0 0 1 0 0 1 0 0.48 1.00 -6838 GMPS guanine monphosphate synthetase 1072305 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6839 PACSIN1 protein kinase C and casein kinase substrate in neurons 1 613470 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -6840 MYBPC2 myosin binding protein C, fast type 1316679 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6841 CLTCL1 clathrin, heavy chain-like 1 1963104 2 2 2 0 0 2 0 0 0 0 0.48 1.00 -6842 ZNF350 zinc finger protein 350 818805 1 1 1 0 0 0 0 0 1 0 0.48 1.00 -6843 ARMC5 armadillo repeat containing 5 937443 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -6844 WASL Wiskott-Aldrich syndrome-like 730587 1 1 1 1 0 0 0 0 1 0 0.48 1.00 -6845 MVP major vault protein 1341522 1 1 1 0 0 0 0 0 1 0 0.48 1.00 -6846 LATS1 LATS, large tumor suppressor, homolog 1 (Drosophila) 1734447 2 2 2 0 0 0 0 1 1 0 0.48 1.00 -6847 PALLD palladin, cytoskeletal associated protein 1722279 2 2 2 0 0 1 1 0 0 0 0.48 1.00 -6848 SLCO4A1 solute carrier organic anion transporter family, member 4A1 694590 1 1 1 1 1 0 0 0 0 0 0.48 1.00 -6849 ZRANB1 zinc finger, RAN-binding domain containing 1 1096641 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6850 CIR1 694083 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -6851 PCDHGA3 protocadherin gamma subfamily A, 3 1460667 2 2 2 1 0 2 0 0 0 0 0.48 1.00 -6852 MYC v-myc myelocytomatosis viral oncogene homolog (avian) 698139 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6853 TLR5 toll-like receptor 5 1308567 1 1 1 0 0 0 0 0 1 0 0.48 1.00 -6854 ANKRD35 ankyrin repeat domain 35 1454583 2 2 2 0 0 1 1 0 0 0 0.48 1.00 -6855 C11orf63 chromosome 11 open reading frame 63 1233531 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6856 SLC44A3 solute carrier family 44, member 3 952653 1 1 1 1 1 0 0 0 0 0 0.48 1.00 -6857 EP300 E1A binding protein p300 3736083 3 3 2 1 1 0 0 0 2 0 0.48 1.00 -6858 SQRDL sulfide quinone reductase-like (yeast) 583557 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6859 CTR9 Ctr9, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) 1811511 2 2 2 0 0 1 1 0 0 0 0.48 1.00 -6860 MBTD1 mbt domain containing 1 628680 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6861 WASF1 WAS protein family, member 1 867984 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -6862 SYNE2 spectrin repeat containing, nuclear envelope 2 10736739 14 13 14 4 4 3 5 1 1 0 0.48 1.00 -6863 C1orf51 chromosome 1 open reading frame 51 597246 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6864 PARP9 poly (ADP-ribose) polymerase family, member 9 1347606 1 1 1 0 0 0 0 0 1 0 0.48 1.00 -6865 SLC29A1 solute carrier family 29 (nucleoside transporters), member 1 719433 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6866 ADAM33 ADAM metallopeptidase domain 33 672789 1 1 1 1 0 0 0 0 1 0 0.48 1.00 -6867 MACROD2 MACRO domain containing 2 694083 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6868 ERLEC1 749346 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6869 LRRCC1 leucine rich repeat and coiled-coil domain containing 1 1554969 2 2 2 0 0 0 1 1 0 0 0.48 1.00 -6870 CENPT centromere protein T 823368 1 1 1 0 0 0 1 0 0 0 0.48 1.00 -6871 MYH1 myosin, heavy chain 1, skeletal muscle, adult 3027804 4 4 4 1 1 2 0 1 0 0 0.48 1.00 -6872 TBX15 T-box 15 770133 1 1 1 0 0 1 0 0 0 0 0.48 1.00 -6873 FCRL1 Fc receptor-like 1 705237 1 1 1 0 1 0 0 0 0 0 0.48 1.00 -6874 C6orf81 chromosome 6 open reading frame 81 571896 1 1 1 1 1 0 0 0 0 0 0.48 1.00 -6875 PIAS2 protein inhibitor of activated STAT, 2 998283 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6876 CDHR5 680901 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6877 DOCK5 dedicator of cytokinesis 5 2769741 3 3 3 1 1 0 0 0 2 0 0.49 1.00 -6878 GPD2 glycerol-3-phosphate dehydrogenase 2 (mitochondrial) 1139736 1 1 1 0 0 0 0 1 0 0 0.49 1.00 -6879 XRCC1 X-ray repair complementing defective repair in Chinese hamster cells 1 990678 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6880 DYRK3 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 3 871533 1 1 1 1 1 0 0 0 0 0 0.49 1.00 -6881 SERPINI2 serpin peptidase inhibitor, clade I (pancpin), member 2 633750 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6882 ODZ2 odz, odd Oz/ten-m homolog 2 (Drosophila) 3701100 3 3 3 2 0 0 1 1 1 0 0.49 1.00 -6883 AKAP8 A kinase (PRKA) anchor protein 8 1016535 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6884 ZNF582 zinc finger protein 582 795990 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6885 BCKDHA branched chain keto acid dehydrogenase E1, alpha polypeptide 610935 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6886 EYA3 eyes absent homolog 3 (Drosophila) 907530 1 1 1 0 0 0 0 1 0 0 0.49 1.00 -6887 EDC4 enhancer of mRNA decapping 4 2134470 2 2 2 1 1 0 0 0 1 0 0.49 1.00 -6888 ANKZF1 ankyrin repeat and zinc finger domain containing 1 1132131 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6889 ASS1 argininosuccinate synthetase 1 633243 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6890 BEND2 1186380 1 1 1 1 0 1 0 0 0 0 0.49 1.00 -6891 FTSJ3 FtsJ homolog 3 (E. coli) 1330368 1 1 1 1 0 0 1 0 0 0 0.49 1.00 -6892 FEN1 flap structure-specific endonuclease 1 581529 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6893 SPATA2 spermatogenesis associated 2 796497 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6894 SLC5A6 solute carrier family 5 (sodium-dependent vitamin transporter), member 6 997776 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6895 GLI1 glioma-associated oncogene homolog 1 (zinc finger protein) 1706055 2 2 2 1 0 1 1 0 0 0 0.49 1.00 -6896 ERC2 ELKS/RAB6-interacting/CAST family member 2 1484496 2 2 2 0 1 0 1 0 0 0 0.49 1.00 -6897 GFM2 G elongation factor, mitochondrial 2 1243164 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6898 ZNF862 1624428 2 2 2 1 0 0 1 0 1 0 0.49 1.00 -6899 ZNF434 zinc finger protein 434 745290 1 1 1 1 0 0 1 0 0 0 0.49 1.00 -6900 TRNT1 tRNA nucleotidyl transferase, CCA-adding, 1 675831 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6901 PLOD2 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 2 1116414 1 1 1 1 0 0 0 0 1 0 0.49 1.00 -6902 RGS3 regulator of G-protein signaling 3 1956006 2 2 2 1 0 1 0 0 1 0 0.49 1.00 -6903 DMBT1 deleted in malignant brain tumors 1 3024762 4 4 4 0 3 1 0 0 0 0 0.49 1.00 -6904 PTPRH protein tyrosine phosphatase, receptor type, H 1690845 2 2 2 1 0 2 0 0 0 0 0.49 1.00 -6905 SART3 squamous cell carcinoma antigen recognized by T cells 3 1504776 2 2 2 0 1 0 1 0 0 0 0.49 1.00 -6906 NPHS1 nephrosis 1, congenital, Finnish type (nephrin) 1724307 2 2 2 1 1 0 1 0 0 0 0.49 1.00 -6907 ZNF654 zinc finger protein 654 889278 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6908 ZBTB20 zinc finger and BTB domain containing 20 1031745 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6909 CCDC27 coiled-coil domain containing 27 919698 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6910 FOXD4L1 forkhead box D4-like 1 624117 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6911 TMPRSS11A transmembrane protease, serine 11A 662142 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6912 SAFB2 scaffold attachment factor B2 829452 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6913 NEO1 neogenin homolog 1 (chicken) 2214576 3 3 3 0 1 1 1 0 0 0 0.49 1.00 -6914 CEL carboxyl ester lipase (bile salt-stimulated lipase) 781794 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6915 NHS Nance-Horan syndrome (congenital cataracts and dental anomalies) 2208492 2 2 2 0 0 1 0 0 1 0 0.49 1.00 -6916 ACSM4 acyl-CoA synthetase medium-chain family member 4 910065 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6917 EPX eosinophil peroxidase 1113372 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6918 TP53BP2 tumor protein p53 binding protein, 2 1747122 2 2 2 0 0 0 1 1 0 0 0.49 1.00 -6919 LRRC6 leucine rich repeat containing 6 734643 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6920 ST3GAL3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 701181 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6921 IFT81 intraflagellar transport 81 homolog (Chlamydomonas) 1066221 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6922 KRT3 keratin 3 812214 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6923 REV1 REV1 homolog (S. cerevisiae) 1948908 1 1 1 2 0 0 0 0 1 0 0.49 1.00 -6924 PNPLA6 patatin-like phospholipase domain containing 6 1172184 1 1 1 1 0 1 0 0 0 0 0.49 1.00 -6925 FLT3 fms-related tyrosine kinase 3 1536717 2 2 2 2 1 0 1 0 0 0 0.49 1.00 -6926 ZNF251 zinc finger protein 251 1030224 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6927 CDC7 cell division cycle 7 homolog (S. cerevisiae) 896883 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6928 MAS1L MAS1 oncogene-like 578487 1 1 1 3 1 0 0 0 0 0 0.49 1.00 -6929 LONRF3 LON peptidase N-terminal domain and ring finger 3 762021 1 1 1 0 0 0 0 1 0 0 0.49 1.00 -6930 LPIN2 lipin 2 1384110 1 1 1 2 0 0 0 0 1 0 0.49 1.00 -6931 TMEM8B 770640 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6932 CDKAL1 CDK5 regulatory subunit associated protein 1-like 1 910572 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6933 KIF7 kinesin family member 7 1150890 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6934 SCPEP1 serine carboxypeptidase 1 674817 1 1 1 0 0 0 0 0 1 0 0.49 1.00 -6935 UBOX5 U-box domain containing 5 832494 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6936 CASC1 cancer susceptibility candidate 1 1223898 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6937 ADAMTS6 ADAM metallopeptidase with thrombospondin type 1 motif, 6 1749150 2 2 2 0 1 1 0 0 0 0 0.49 1.00 -6938 SLC5A3 solute carrier family 5 (inositol transporters), member 3 1095627 1 1 1 0 0 0 0 1 0 0 0.49 1.00 -6939 TARDBP TAR DNA binding protein 641355 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6940 SIK3 1680198 2 2 2 0 0 0 0 0 2 0 0.49 1.00 -6941 TBCE tubulin folding cofactor E 835029 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6942 CEP78 centrosomal protein 78kDa 908544 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6943 SERPINA12 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 12 639327 1 1 1 1 0 1 0 0 0 0 0.49 1.00 -6944 RNASEL ribonuclease L (2',5'-oligoisoadenylate synthetase-dependent) 1140750 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6945 ZNF532 zinc finger protein 532 1996566 2 2 2 1 1 0 0 0 1 0 0.49 1.00 -6946 MYH15 myosin, heavy chain 15 3046563 5 4 5 2 2 2 1 0 0 0 0.49 1.00 -6947 WDR6 WD repeat domain 6 1665495 2 2 2 0 0 0 1 0 1 0 0.49 1.00 -6948 DFNB31 deafness, autosomal recessive 31 1174212 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6949 CDK5RAP1 CDK5 regulatory subunit associated protein 1 920712 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6950 SLC9A9 solute carrier family 9 (sodium/hydrogen exchanger), member 9 1015014 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6951 DDI1 DDI1, DNA-damage inducible 1, homolog 1 (S. cerevisiae) 605865 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6952 THEMIS 988650 1 1 1 0 0 0 0 1 0 0 0.49 1.00 -6953 ADSL adenylosuccinate lyase 684450 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6954 EIF3L 834015 1 1 1 0 0 1 0 0 0 0 0.49 1.00 -6955 C3orf30 chromosome 3 open reading frame 30 822861 1 1 1 1 0 1 0 0 0 0 0.49 1.00 -6956 SCAI 967863 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6957 DDX17 DEAD (Asp-Glu-Ala-Asp) box polypeptide 17 992199 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6958 GRIK4 glutamate receptor, ionotropic, kainate 4 1259388 1 1 1 1 1 0 0 0 0 0 0.49 1.00 -6959 FAM65B 921726 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6960 ITIH5 inter-alpha (globulin) inhibitor H5 1474356 2 2 2 2 1 1 0 0 0 0 0.49 1.00 -6961 ZNF280C zinc finger protein 280C 1159002 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6962 OXR1 oxidation resistance 1 1203111 1 1 1 0 0 0 0 1 0 0 0.49 1.00 -6963 PAK3 p21 (CDKN1A)-activated kinase 3 916149 1 1 1 0 0 0 0 1 0 0 0.49 1.00 -6964 ANTXR1 anthrax toxin receptor 1 840099 1 1 1 0 1 0 0 0 0 0 0.49 1.00 -6965 ZDBF2 zinc finger, DBF-type containing 2 3588039 4 4 4 1 1 0 1 0 2 0 0.49 1.00 -6966 ABCC1 ATP-binding cassette, sub-family C (CFTR/MRP), member 1 2297217 3 3 3 2 1 0 2 0 0 0 0.49 1.00 -6967 FNBP1L formin binding protein 1-like 721461 1 1 1 0 0 0 1 0 0 0 0.49 1.00 -6968 HECW2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 2399124 3 3 3 2 0 1 1 1 0 0 0.50 1.00 -6969 MMRN1 multimerin 1 1885533 2 2 2 1 1 0 0 1 0 0 0.50 1.00 -6970 LCT lactase 2966964 3 3 3 0 0 2 0 0 1 0 0.50 1.00 -6971 C9orf156 chromosome 9 open reading frame 156 641862 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -6972 FMR1 fragile X mental retardation 1 969384 1 1 1 2 0 0 1 0 0 0 0.50 1.00 -6973 PTPRR protein tyrosine phosphatase, receptor type, R 1029210 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -6974 SERPINA10 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 10 684957 1 1 1 1 1 0 0 0 0 0 0.50 1.00 -6975 LRRC27 leucine rich repeat containing 27 765570 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -6976 ZNF165 zinc finger protein 165 745290 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -6977 ANGPTL5 angiopoietin-like 5 607893 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -6978 SUSD4 sushi domain containing 4 763542 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -6979 C3orf59 chromosome 3 open reading frame 59 752388 1 1 1 0 0 0 0 1 0 0 0.50 1.00 -6980 PPL periplakin 2153736 2 2 2 3 0 1 1 0 0 0 0.50 1.00 -6981 LAMB1 laminin, beta 1 2705352 3 3 3 0 1 1 0 0 1 0 0.50 1.00 -6982 PARP3 poly (ADP-ribose) polymerase family, member 3 734643 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -6983 C3 complement component 3 1999101 2 2 2 2 0 1 1 0 0 0 0.50 1.00 -6984 TOPORS topoisomerase I binding, arginine/serine-rich 1496664 2 2 2 1 0 1 1 0 0 0 0.50 1.00 -6985 COL6A6 3383718 4 4 4 1 2 1 1 0 0 0 0.50 1.00 -6986 GFM1 G elongation factor, mitochondrial 1 1137201 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -6987 PAK2 p21 (CDKN1A)-activated kinase 2 734136 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -6988 CCDC91 coiled-coil domain containing 91 696618 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -6989 CLCN1 chloride channel 1, skeletal muscle (Thomsen disease, autosomal dominant) 1426191 2 2 2 1 1 1 0 0 0 0 0.50 1.00 -6990 FDPS farnesyl diphosphate synthase (farnesyl pyrophosphate synthetase, dimethylallyltranstransferase, geranyltranstransferase) 587106 1 1 1 2 0 1 0 0 0 0 0.50 1.00 -6991 ELP2 elongation protein 2 homolog (S. cerevisiae) 1302483 1 1 1 1 0 0 1 0 0 0 0.50 1.00 -6992 ZNF583 zinc finger protein 583 875082 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -6993 HNRNPUL1 1182324 1 1 1 0 0 0 0 1 0 0 0.50 1.00 -6994 SPIRE1 spire homolog 1 (Drosophila) 952653 1 1 1 1 0 0 1 0 0 0 0.50 1.00 -6995 STAT2 signal transducer and activator of transcription 2, 113kDa 1342536 1 1 1 0 0 0 0 1 0 0 0.50 1.00 -6996 ZNF615 zinc finger protein 615 1121484 1 1 1 0 0 0 0 0 1 0 0.50 1.00 -6997 UGT1A10 UDP glucuronosyltransferase 1 family, polypeptide A10 817791 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -6998 CPB2 carboxypeptidase B2 (plasma) 667212 1 1 1 1 0 0 1 0 0 0 0.50 1.00 -6999 FAM115C 733629 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -7000 MTMR8 myotubularin related protein 8 1100697 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -7001 ALDH5A1 aldehyde dehydrogenase 5 family, member A1 (succinate-semialdehyde dehydrogenase) 654030 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -7002 SMYD5 SMYD family member 5 663663 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -7003 KLHL25 kelch-like 25 (Drosophila) 881673 1 1 1 1 0 1 0 0 0 0 0.50 1.00 -7004 SULF2 sulfatase 2 904488 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -7005 SLC45A4 solute carrier family 45, member 4 965835 1 1 1 1 0 0 0 1 0 0 0.50 1.00 -7006 ADAM10 ADAM metallopeptidase domain 10 1141764 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -7007 TGM1 transglutaminase 1 (K polypeptide epidermal type I, protein-glutamine-gamma-glutamyltransferase) 1213251 1 1 1 1 0 0 1 0 0 0 0.50 1.00 -7008 EIF2B5 eukaryotic translation initiation factor 2B, subunit 5 epsilon, 82kDa 1029717 1 1 1 1 0 1 0 0 0 0 0.50 1.00 -7009 RHD Rh blood group, D antigen 613470 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -7010 LANCL1 LanC lantibiotic synthetase component C-like 1 (bacterial) 626652 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -7011 CELF2 767091 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -7012 AMBN ameloblastin (enamel matrix protein) 685971 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -7013 TRIM29 tripartite motif-containing 29 913614 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -7014 SMC5 structural maintenance of chromosomes 5 1631019 2 2 2 1 0 0 2 0 0 0 0.50 1.00 -7015 IQSEC3 IQ motif and Sec7 domain 3 873561 1 1 1 2 1 0 0 0 0 0 0.50 1.00 -7016 FANCD2 Fanconi anemia, complementation group D2 2354508 3 3 3 0 1 1 0 0 1 0 0.50 1.00 -7017 TPM3 tropomyosin 3 651495 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -7018 ZNF665 zinc finger protein 665 1038843 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -7019 SHCBP1 SHC SH2-domain binding protein 1 995748 1 1 1 0 0 0 0 1 0 0 0.50 1.00 -7020 MON1A MON1 homolog A (yeast) 822861 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -7021 TTLL6 tubulin tyrosine ligase-like family, member 6 906009 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -7022 ACCS 1-aminocyclopropane-1-carboxylate synthase homolog (Arabidopsis)(non-functional) 791934 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -7023 ITGA2 integrin, alpha 2 (CD49B, alpha 2 subunit of VLA-2 receptor) 1858662 2 2 2 1 0 1 1 0 0 0 0.50 1.00 -7024 SELPLG selectin P ligand 617019 1 1 1 1 1 0 0 0 0 0 0.50 1.00 -7025 NAP1L2 nucleosome assembly protein 1-like 2 703209 1 1 1 2 0 1 0 0 0 0 0.50 1.00 -7026 EXOC3 exocyst complex component 3 732108 1 1 1 2 0 0 0 1 0 0 0.50 1.00 -7027 AFP alpha-fetoprotein 956202 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -7028 PRLR prolactin receptor 963807 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -7029 CHSY3 chondroitin sulfate synthase 3 1047969 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -7030 ZNF568 zinc finger protein 568 991185 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -7031 PELI1 pellino homolog 1 (Drosophila) 649467 1 1 1 0 0 1 0 0 0 0 0.50 1.00 -7032 MECP2 methyl CpG binding protein 2 (Rett syndrome) 746811 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -7033 ATP8A1 ATPase, aminophospholipid transporter (APLT), class I, type 8A, member 1 1859676 2 2 2 0 1 0 0 0 1 0 0.50 1.00 -7034 PXK PX domain containing serine/threonine kinase 863421 1 1 1 0 0 0 0 1 0 0 0.50 1.00 -7035 NOP58 836550 1 1 1 0 0 0 0 1 0 0 0.50 1.00 -7036 RFC1 replication factor C (activator 1) 1, 145kDa 1793259 2 2 2 4 0 1 1 0 0 0 0.50 1.00 -7037 ASB6 ankyrin repeat and SOCS box-containing 6 603330 1 1 1 0 1 0 0 0 0 0 0.50 1.00 -7038 SRP68 signal recognition particle 68kDa 974961 1 1 1 0 0 0 0 1 0 0 0.50 1.00 -7039 CCDC60 coiled-coil domain containing 60 866463 1 1 1 0 0 0 0 1 0 0 0.50 1.00 -7040 EEPD1 endonuclease/exonuclease/phosphatase family domain containing 1 864942 1 1 1 0 0 0 0 1 0 0 0.50 1.00 -7041 USP47 ubiquitin specific peptidase 47 1992003 2 2 2 0 0 2 0 0 0 0 0.50 1.00 -7042 CYP4F2 cytochrome P450, family 4, subfamily F, polypeptide 2 816777 1 1 1 0 0 0 1 0 0 0 0.50 1.00 -7043 BEND7 753402 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7044 VEZT vezatin, adherens junctions transmembrane protein 1157988 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7045 BAAT bile acid Coenzyme A: amino acid N-acyltransferase (glycine N-choloyltransferase) 643383 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -7046 ZNF831 zinc finger protein 831 2056392 1 1 1 2 0 0 0 0 1 0 0.51 1.00 -7047 NUP155 nucleoporin 155kDa 2188212 2 2 2 0 0 1 0 0 1 0 0.51 1.00 -7048 INTS12 integrator complex subunit 12 716391 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7049 ERG v-ets erythroblastosis virus E26 oncogene homolog (avian) 666198 1 1 1 1 0 1 0 0 0 0 0.51 1.00 -7050 SCARB2 scavenger receptor class B, member 2 691548 1 1 1 0 0 0 0 1 0 0 0.51 1.00 -7051 GUSB glucuronidase, beta 887250 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7052 USP2 ubiquitin specific peptidase 2 899418 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7053 PRKG1 protein kinase, cGMP-dependent, type I 983073 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -7054 SYCP2L synaptonemal complex protein 2-like 1295385 1 1 1 1 0 0 0 0 1 0 0.51 1.00 -7055 SELE selectin E (endothelial adhesion molecule 1) 953667 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7056 ELF2 E74-like factor 2 (ets domain transcription factor) 946062 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7057 RRP12 ribosomal RNA processing 12 homolog (S. cerevisiae) 1821144 2 2 2 0 0 1 1 0 0 0 0.51 1.00 -7058 TCEB3B transcription elongation factor B polypeptide 3B (elongin A2) 1121484 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7059 GTPBP4 GTP binding protein 4 973947 1 1 1 1 1 0 0 0 0 0 0.51 1.00 -7060 TMCC3 transmembrane and coiled-coil domain family 3 693576 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7061 RIOK2 RIO kinase 2 (yeast) 875589 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7062 TIMELESS timeless homolog (Drosophila) 1895673 2 2 2 1 1 1 0 0 0 0 0.51 1.00 -7063 NOTCH2 Notch homolog 2 (Drosophila) 3789825 4 4 4 2 1 1 1 0 1 0 0.51 1.00 -7064 CCNT1 cyclin T1 1124019 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -7065 SMAD4 SMAD family member 4 863421 1 1 1 0 0 0 0 0 1 0 0.51 1.00 -7066 OXCT1 3-oxoacid CoA transferase 1 782808 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7067 CLK1 CDC-like kinase 1 762021 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7068 KIAA1524 KIAA1524 1407432 1 1 1 1 0 0 0 0 1 0 0.51 1.00 -7069 GFAP glial fibrillary acidic protein 629187 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7070 PPWD1 peptidylprolyl isomerase domain and WD repeat containing 1 1006395 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -7071 SLAIN2 SLAIN motif family, member 2 699660 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7072 TRIM9 tripartite motif-containing 9 813228 1 1 1 1 1 0 0 0 0 0 0.51 1.00 -7073 RAI2 retinoic acid induced 2 809679 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7074 PTPRO protein tyrosine phosphatase, receptor type, O 1871337 2 2 2 0 0 0 1 1 0 0 0.51 1.00 -7075 WIPF2 WAS/WASL interacting protein family, member 2 684957 2 1 2 1 0 1 0 1 0 0 0.51 1.00 -7076 ZNF543 zinc finger protein 543 911079 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7077 CCBL2 cysteine conjugate-beta lyase 2 718419 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7078 CSNK2A1 casein kinase 2, alpha 1 polypeptide 620568 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7079 REL v-rel reticuloendotheliosis viral oncogene homolog (avian) 958230 1 1 1 1 1 0 0 0 0 0 0.51 1.00 -7080 RNF220 890799 1 1 1 0 0 0 0 0 1 0 0.51 1.00 -7081 TBX20 T-box 20 630201 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7082 GABRB3 gamma-aminobutyric acid (GABA) A receptor, beta 3 611442 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7083 CES1 carboxylesterase 1 (monocyte/macrophage serine esterase 1) 759486 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -7084 NOP56 878124 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7085 BTN3A3 butyrophilin, subfamily 3, member A3 908037 1 1 1 1 0 1 0 0 0 0 0.51 1.00 -7086 ZNF484 zinc finger protein 484 1305525 2 1 2 1 0 0 0 2 0 0 0.51 1.00 -7087 BACH1 BTB and CNC homology 1, basic leucine zipper transcription factor 1 1129089 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -7088 FAM111B family with sequence similarity 111, member B 1121991 1 1 1 1 0 0 0 0 1 0 0.51 1.00 -7089 GALNT5 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 5 (GalNAc-T5) 1451541 2 2 2 0 2 0 0 0 0 0 0.51 1.00 -7090 CHN1 chimerin (chimaerin) 1 703716 1 1 1 1 0 0 1 0 0 0 0.51 1.00 -7091 TADA3 676845 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7092 POLR1B polymerase (RNA) I polypeptide B, 128kDa 1739517 2 2 2 2 1 0 0 0 1 0 0.51 1.00 -7093 NDRG3 NDRG family member 3 602316 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7094 ZNF423 zinc finger protein 423 1636596 2 2 2 2 1 0 1 0 0 0 0.51 1.00 -7095 ALAS2 aminolevulinate, delta-, synthase 2 932880 1 1 1 1 1 0 0 0 0 0 0.51 1.00 -7096 MLLT6 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 6 1049997 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7097 ZNF570 zinc finger protein 570 824889 1 1 1 1 0 1 0 0 0 0 0.51 1.00 -7098 UBR1 ubiquitin protein ligase E3 component n-recognin 1 2757066 3 3 3 0 0 2 0 1 0 0 0.51 1.00 -7099 SLC6A14 solute carrier family 6 (amino acid transporter), member 14 980031 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7100 DDX53 DEAD (Asp-Glu-Ala-Asp) box polypeptide 53 963300 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7101 KIF2C kinesin family member 2C 1146834 1 1 1 1 0 1 0 0 0 0 0.51 1.00 -7102 ABCB7 ATP-binding cassette, sub-family B (MDR/TAP), member 7 1095120 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -7103 SLC30A4 solute carrier family 30 (zinc transporter), member 4 668226 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7104 ATG9A ATG9 autophagy related 9 homolog A (S. cerevisiae) 1223898 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7105 PTPRA protein tyrosine phosphatase, receptor type, A 1263951 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -7106 SCN11A sodium channel, voltage-gated, type XI, alpha subunit 2778360 3 3 3 0 0 2 0 1 0 0 0.51 1.00 -7107 RTN3 reticulon 3 1591980 2 2 2 0 1 0 0 0 1 0 0.51 1.00 -7108 LZTS2 leucine zipper, putative tumor suppressor 2 744783 1 1 1 0 0 1 0 0 0 0 0.51 1.00 -7109 SYNGAP1 synaptic Ras GTPase activating protein 1 homolog (rat) 1955499 2 2 2 0 0 1 0 0 1 0 0.51 1.00 -7110 CEP63 centrosomal protein 63kDa 1099176 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7111 MARK2 MAP/microtubule affinity-regulating kinase 2 1131624 1 1 1 0 0 0 0 1 0 0 0.51 1.00 -7112 CPNE2 copine II 699660 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7113 VPS53 vacuolar protein sorting 53 homolog (S. cerevisiae) 1021098 1 1 1 2 1 0 0 0 0 0 0.51 1.00 -7114 TUBAL3 tubulin, alpha-like 3 687999 1 1 1 0 1 0 0 0 0 0 0.51 1.00 -7115 PELI2 pellino homolog 2 (Drosophila) 611442 1 1 1 1 1 0 0 0 0 0 0.51 1.00 -7116 EZH1 enhancer of zeste homolog 1 (Drosophila) 1143285 1 1 1 0 0 0 1 0 0 0 0.51 1.00 -7117 CLASP1 cytoplasmic linker associated protein 1 2280486 2 2 2 0 0 1 0 0 1 0 0.51 1.00 -7118 COG3 component of oligomeric golgi complex 3 1214772 1 1 1 0 0 0 0 0 1 0 0.51 1.00 -7119 ACSM3 acyl-CoA synthetase medium-chain family member 3 966342 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -7120 GLS glutaminase 857844 1 1 1 0 0 0 0 0 1 0 0.52 1.00 -7121 FANCM Fanconi anemia, complementation group M 3163173 2 2 2 1 0 0 0 0 2 0 0.52 1.00 -7122 PFKFB1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 746304 1 1 1 1 0 1 0 0 0 0 0.52 1.00 -7123 PLCG2 phospholipase C, gamma 2 (phosphatidylinositol-specific) 1864239 2 2 2 1 0 1 1 0 0 0 0.52 1.00 -7124 USP9X ubiquitin specific peptidase 9, X-linked 3999723 4 4 4 1 0 1 1 0 2 0 0.52 1.00 -7125 MAML3 mastermind-like 3 (Drosophila) 1306032 1 1 1 2 0 1 0 0 0 0 0.52 1.00 -7126 TTC26 tetratricopeptide repeat domain 26 880659 1 1 1 0 0 0 0 1 0 0 0.52 1.00 -7127 CGNL1 cingulin-like 1 1921023 2 2 2 1 0 1 0 0 1 0 0.52 1.00 -7128 UNC5B unc-5 homolog B (C. elegans) 1356732 1 1 1 1 0 1 0 0 0 0 0.52 1.00 -7129 SPATA20 spermatogenesis associated 20 925275 1 1 1 0 0 0 0 1 0 0 0.52 1.00 -7130 KCNC2 potassium voltage-gated channel, Shaw-related subfamily, member 2 860379 1 1 1 2 1 0 0 0 0 0 0.52 1.00 -7131 PNPLA1 patatin-like phospholipase domain containing 1 734643 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7132 KIAA0195 KIAA0195 2089347 2 2 2 0 0 1 0 0 1 0 0.52 1.00 -7133 INPP5K 631215 1 1 1 0 1 0 0 0 0 0 0.52 1.00 -7134 ERCC4 excision repair cross-complementing rodent repair deficiency, complementation group 4 1310595 1 1 1 1 1 0 0 0 0 0 0.52 1.00 -7135 THOC5 THO complex 5 1078896 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7136 ENPP5 ectonucleotide pyrophosphatase/phosphodiesterase 5 (putative function) 733122 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7137 MAPK6 mitogen-activated protein kinase 6 1108302 1 1 1 0 0 0 0 1 0 0 0.52 1.00 -7138 ACAT1 acetyl-Coenzyme A acetyltransferase 1 (acetoacetyl Coenzyme A thiolase) 636792 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -7139 EPB41L4B erythrocyte membrane protein band 4.1 like 4B 1323777 1 1 1 0 0 0 0 0 1 0 0.52 1.00 -7140 JMJD5 jumonji domain containing 5 664170 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -7141 CHRNA6 cholinergic receptor, nicotinic, alpha 6 765063 1 1 1 0 1 0 0 0 0 0 0.52 1.00 -7142 NEURL4 2092896 2 2 2 1 0 2 0 0 0 0 0.52 1.00 -7143 HSPA13 728052 1 1 1 1 0 0 1 0 0 0 0.52 1.00 -7144 NSUN5 NOL1/NOP2/Sun domain family, member 5 739713 1 1 1 2 1 0 0 0 0 0 0.52 1.00 -7145 ZIK1 zinc finger protein interacting with K protein 1 homolog (mouse) 731601 1 1 1 0 1 0 0 0 0 0 0.52 1.00 -7146 PHIP pleckstrin homology domain interacting protein 2780388 3 3 3 0 1 1 0 0 1 0 0.52 1.00 -7147 KPNA4 karyopherin alpha 4 (importin alpha 3) 791427 1 1 1 1 0 0 1 0 0 0 0.52 1.00 -7148 ABL2 v-abl Abelson murine leukemia viral oncogene homolog 2 (arg, Abelson-related gene) 1823679 2 2 2 1 2 0 0 0 0 0 0.52 1.00 -7149 NFE2L1 nuclear factor (erythroid-derived 2)-like 1 1185873 1 1 1 0 0 0 0 0 1 0 0.52 1.00 -7150 ATP13A5 ATPase type 13A5 1914939 2 2 2 0 1 0 0 1 0 0 0.52 1.00 -7151 ZNF33A zinc finger protein 33A 1243164 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7152 SEPSECS Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase 726024 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -7153 SLC32A1 solute carrier family 32 (GABA vesicular transporter), member 1 745797 1 1 1 0 0 0 0 0 1 0 0.52 1.00 -7154 NR4A1 nuclear receptor subfamily 4, group A, member 1 858351 1 1 1 0 1 0 0 0 0 0 0.52 1.00 -7155 RHOBTB3 Rho-related BTB domain containing 3 937443 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7156 PGM2L1 phosphoglucomutase 2-like 1 917670 1 1 1 1 1 0 0 0 0 0 0.52 1.00 -7157 KRT18 keratin 18 665184 1 1 1 2 0 1 0 0 0 0 0.52 1.00 -7158 RABEP1 rabaptin, RAB GTPase binding effector protein 1 1277640 1 1 1 0 1 0 0 0 0 0 0.52 1.00 -7159 GPHN gephyrin 1217814 1 1 1 1 0 0 0 1 0 0 0.52 1.00 -7160 MFN2 mitofusin 2 1177254 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -7161 ZNF623 zinc finger protein 623 818805 1 1 1 0 0 0 0 0 1 0 0.52 1.00 -7162 FAM73B family with sequence similarity 73, member B 663663 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -7163 LRRTM2 leucine rich repeat transmembrane neuronal 2 790413 1 1 1 0 1 0 0 0 0 0 0.52 1.00 -7164 SLC11A2 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 2 904488 1 1 1 0 0 0 0 1 0 0 0.52 1.00 -7165 ARRB1 arrestin, beta 1 633243 1 1 1 0 1 0 0 0 0 0 0.52 1.00 -7166 DOCK2 dedicator of cytokinesis 2 2866578 3 3 3 1 0 2 0 0 1 0 0.52 1.00 -7167 ZC3H10 zinc finger CCCH-type containing 10 663663 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -7168 NUP88 nucleoporin 88kDa 1138215 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7169 FAM75A1 family with sequence similarity 75, member A1 1199055 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7170 CLSPN claspin homolog (Xenopus laevis) 2088840 1 1 1 0 0 0 0 0 1 0 0.52 1.00 -7171 SCG3 secretogranin III 737685 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7172 GLT25D2 glycosyltransferase 25 domain containing 2 842634 1 1 1 1 0 1 0 0 0 0 0.52 1.00 -7173 ARRDC3 arrestin domain containing 3 647439 1 1 1 0 1 0 0 0 0 0 0.52 1.00 -7174 CYP11A1 cytochrome P450, family 11, subfamily A, polypeptide 1 812214 1 1 1 0 1 0 0 0 0 0 0.52 1.00 -7175 CKAP5 cytoskeleton associated protein 5 3179397 4 4 4 1 1 1 2 0 0 0 0.52 1.00 -7176 FBXO15 F-box protein 15 678366 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7177 NRG3 neuregulin 3 867477 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7178 CP ceruloplasmin (ferroxidase) 1659918 2 2 2 1 1 0 0 1 0 0 0.52 1.00 -7179 KCTD20 potassium channel tetramerisation domain containing 20 653016 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7180 ZNF445 zinc finger protein 445 1555476 2 2 2 0 0 2 0 0 0 0 0.52 1.00 -7181 IKBKE inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase epsilon 940485 1 1 1 2 1 0 0 0 0 0 0.52 1.00 -7182 STOX2 storkhead box 2 1132638 1 1 1 1 0 1 0 0 0 0 0.52 1.00 -7183 KIAA1407 KIAA1407 1459653 1 1 1 0 0 0 0 0 1 0 0.52 1.00 -7184 ETV6 ets variant gene 6 (TEL oncogene) 705237 1 1 1 1 0 1 0 0 0 0 0.52 1.00 -7185 CLK4 CDC-like kinase 4 757458 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7186 CCT5 chaperonin containing TCP1, subunit 5 (epsilon) 815763 1 1 1 0 0 1 0 0 0 0 0.52 1.00 -7187 KIAA1522 KIAA1522 1366365 1 1 1 0 0 0 1 0 0 0 0.52 1.00 -7188 ALDH18A1 aldehyde dehydrogenase 18 family, member A1 1245192 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -7189 ADAMTS7 ADAM metallopeptidase with thrombospondin type 1 motif, 7 772668 1 1 1 1 1 0 0 0 0 0 0.53 1.00 -7190 NCOA7 nuclear receptor coactivator 7 1464723 1 1 1 0 0 0 0 1 0 0 0.53 1.00 -7191 RICTOR 2623218 3 3 3 3 1 2 0 0 0 0 0.53 1.00 -7192 BRDT bromodomain, testis-specific 1478412 2 2 2 0 1 0 1 0 0 0 0.53 1.00 -7193 AHDC1 AT hook, DNA binding motif, containing 1 1499706 1 1 1 1 0 0 0 0 1 0 0.53 1.00 -7194 PDE6A phosphodiesterase 6A, cGMP-specific, rod, alpha 1354197 1 1 1 2 0 0 1 0 0 0 0.53 1.00 -7195 NOC3L nucleolar complex associated 3 homolog (S. cerevisiae) 1260909 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -7196 SEC61A1 Sec61 alpha 1 subunit (S. cerevisiae) 743769 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7197 ANKRD52 ankyrin repeat domain 52 1488552 1 1 1 1 0 0 0 0 1 0 0.53 1.00 -7198 CAMK2A calcium/calmodulin-dependent protein kinase (CaM kinase) II alpha 741234 1 1 1 1 0 0 1 0 0 0 0.53 1.00 -7199 ZDHHC5 zinc finger, DHHC-type containing 5 1111344 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -7200 ZMAT1 zinc finger, matrin type 1 920712 1 1 1 0 1 0 0 0 0 0 0.53 1.00 -7201 KRT84 keratin 84 754416 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7202 CPN2 carboxypeptidase N, polypeptide 2 831480 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -7203 CLEC4F C-type lectin domain family 4, member F 911586 1 1 1 1 1 0 0 0 0 0 0.53 1.00 -7204 BRSK1 BR serine/threonine kinase 1 906009 1 1 1 0 1 0 0 0 0 0 0.53 1.00 -7205 XKRX XK, Kell blood group complex subunit-related, X-linked 690534 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7206 PTCHD2 patched domain containing 2 1812018 2 2 2 1 0 2 0 0 0 0 0.53 1.00 -7207 ZBTB44 zinc finger and BTB domain containing 44 634257 1 1 1 0 1 0 0 0 0 0 0.53 1.00 -7208 TEX2 testis expressed 2 1748643 2 2 2 0 0 0 2 0 0 0 0.53 1.00 -7209 MYLK3 myosin light chain kinase 3 1128075 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7210 STAT3 signal transducer and activator of transcription 3 (acute-phase response factor) 1216293 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -7211 SIGLEC11 sialic acid binding Ig-like lectin 11 947583 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7212 CACHD1 cache domain containing 1 1903278 2 2 2 0 1 0 1 0 0 0 0.53 1.00 -7213 GTF3C5 general transcription factor IIIC, polypeptide 5, 63kDa 681915 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7214 PI4KB phosphatidylinositol 4-kinase, catalytic, beta 1285245 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -7215 RERE arginine-glutamic acid dipeptide (RE) repeats 1494129 1 1 1 1 0 0 1 0 0 0 0.53 1.00 -7216 CYP4X1 cytochrome P450, family 4, subfamily X, polypeptide 1 800046 1 1 1 1 0 0 0 1 0 0 0.53 1.00 -7217 NCAN neurocan 1729884 2 2 1 0 2 0 0 0 0 0 0.53 1.00 -7218 JAKMIP2 janus kinase and microtubule interacting protein 2 1274091 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -7219 ROCK1 Rho-associated, coiled-coil containing protein kinase 1 2119767 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -7220 STK4 serine/threonine kinase 4 744783 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7221 ZMYM2 zinc finger, MYM-type 2 2104050 3 2 3 0 0 1 2 0 0 0 0.53 1.00 -7222 SGK223 1262937 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7223 CDRT1 CMT1A duplicated region transcript 1 1156467 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -7224 GNAO1 guanine nucleotide binding protein (G protein), alpha activating activity polypeptide O 642369 1 1 1 1 1 0 0 0 0 0 0.53 1.00 -7225 CPB1 carboxypeptidase B1 (tissue) 658086 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -7226 ENPEP glutamyl aminopeptidase (aminopeptidase A) 1487031 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -7227 NOMO3 NODAL modulator 3 990678 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -7228 UMODL1 uromodulin-like 1 1860183 2 2 2 1 0 1 0 0 1 0 0.53 1.00 -7229 PKD1L1 polycystic kidney disease 1 like 1 4169568 5 5 5 2 3 1 1 0 0 0 0.53 1.00 -7230 TRIM41 tripartite motif-containing 41 957216 1 1 1 1 0 0 0 1 0 0 0.53 1.00 -7231 TMPRSS11F transmembrane protease, serine 11F 687999 1 1 1 0 1 0 0 0 0 0 0.53 1.00 -7232 RABEP2 rabaptin, RAB GTPase binding effector protein 2 698646 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7233 GRID2 glutamate receptor, ionotropic, delta 2 1565616 2 2 2 0 1 1 0 0 0 0 0.53 1.00 -7234 C20orf152 chromosome 20 open reading frame 152 867984 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -7235 VPS11 vacuolar protein sorting 11 homolog (S. cerevisiae) 1421628 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -7236 FANCG Fanconi anemia, complementation group G 972933 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7237 IL5RA interleukin 5 receptor, alpha 673803 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -7238 LARP1B 1482975 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -7239 GOLGA3 golgi autoantigen, golgin subfamily a, 3 2162862 2 1 2 0 0 0 0 0 0 2 0.53 1.00 -7240 CSF2RA colony stimulating factor 2 receptor, alpha, low-affinity (granulocyte-macrophage) 677352 1 1 1 2 1 0 0 0 0 0 0.53 1.00 -7241 ASXL1 additional sex combs like 1 (Drosophila) 2324595 3 2 3 0 2 0 0 0 1 0 0.53 1.00 -7242 TBC1D23 TBC1 domain family, member 23 1078389 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7243 SYDE1 synapse defective 1, Rho GTPase, homolog 1 (C. elegans) 675831 1 1 1 0 1 0 0 0 0 0 0.53 1.00 -7244 ZNF7 zinc finger protein 7 1049997 1 1 1 0 0 0 1 0 0 0 0.53 1.00 -7245 SFRS18 splicing factor, arginine/serine-rich 18 1246206 1 1 1 0 0 0 0 1 0 0 0.53 1.00 -7246 GPR133 G protein-coupled receptor 133 1274091 1 1 1 1 0 1 0 0 0 0 0.53 1.00 -7247 APLP1 amyloid beta (A4) precursor-like protein 1 804609 1 1 1 2 0 0 1 0 0 0 0.53 1.00 -7248 ATP13A2 ATPase type 13A2 1471314 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -7249 CCDC47 coiled-coil domain containing 47 760500 1 1 1 0 0 0 0 0 1 0 0.53 1.00 -7250 DPYSL5 dihydropyrimidinase-like 5 882180 1 1 1 1 1 0 0 0 0 0 0.53 1.00 -7251 TRIM28 tripartite motif-containing 28 781287 1 1 1 2 0 0 1 0 0 0 0.53 1.00 -7252 ATP10D ATPase, class V, type 10D 2215083 2 2 2 0 0 1 1 0 0 0 0.53 1.00 -7253 KCNAB1 potassium voltage-gated channel, shaker-related subfamily, beta member 1 906009 1 1 1 0 0 1 0 0 0 0 0.53 1.00 -7254 GLI2 GLI-Kruppel family member GLI2 1978821 2 2 2 0 1 0 1 0 0 0 0.53 1.00 -7255 HGSNAT heparan-alpha-glucosaminide N-acetyltransferase 938964 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -7256 ADCY8 adenylate cyclase 8 (brain) 1734954 2 2 2 3 1 1 0 0 0 0 0.54 1.00 -7257 ERMAP erythroblast membrane-associated protein (Scianna blood group) 742248 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7258 CD4 CD4 molecule 716391 1 1 1 1 0 1 0 0 0 0 0.54 1.00 -7259 APBB2 amyloid beta (A4) precursor protein-binding, family B, member 2 (Fe65-like) 1150383 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7260 DNA2 DNA replication helicase 2 homolog (yeast) 1781598 2 2 2 0 0 2 0 0 0 0 0.54 1.00 -7261 COBLL1 COBL-like 1 1780584 2 2 2 1 0 1 1 0 0 0 0.54 1.00 -7262 GON4L gon-4-like (C. elegans) 3421743 4 4 4 1 1 0 1 1 1 0 0.54 1.00 -7263 FSCB fibrous sheath CABYR binding protein 1200576 1 1 1 2 0 1 0 0 0 0 0.54 1.00 -7264 C5 complement component 5 2612064 3 3 3 0 0 1 2 0 0 0 0.54 1.00 -7265 YES1 v-yes-1 Yamaguchi sarcoma viral oncogene homolog 1 849732 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7266 AKT2 v-akt murine thymoma viral oncogene homolog 2 663156 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7267 MMP27 matrix metallopeptidase 27 802074 1 1 1 1 0 1 0 0 0 0 0.54 1.00 -7268 FBXW2 F-box and WD repeat domain containing 2 704223 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -7269 FARSA phenylalanyl-tRNA synthetase, alpha subunit 723996 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -7270 ZNF573 zinc finger protein 573 865449 1 1 1 0 0 0 0 0 1 0 0.54 1.00 -7271 BCL11A B-cell CLL/lymphoma 11A (zinc finger protein) 1176240 1 1 1 1 0 0 1 0 0 0 0.54 1.00 -7272 GTF3C4 general transcription factor IIIC, polypeptide 4, 90kDa 1088022 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7273 CAPN13 calpain 13 1001325 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7274 KLHL11 kelch-like 11 (Drosophila) 804102 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -7275 SRL sarcalumenin 700167 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7276 NLRC5 NLR family, CARD domain containing 5 2693184 4 3 4 1 0 1 0 1 2 0 0.54 1.00 -7277 FLI1 Friend leukemia virus integration 1 698139 1 1 1 1 0 0 1 0 0 0 0.54 1.00 -7278 RCBTB1 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 1 805116 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -7279 NAGLU N-acetylglucosaminidase, alpha- (Sanfilippo disease IIIB) 760500 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -7280 ADAM22 ADAM metallopeptidase domain 22 1439373 1 1 1 1 0 0 1 0 0 0 0.54 1.00 -7281 CAPN2 calpain 2, (m/II) large subunit 940992 2 1 2 1 1 1 0 0 0 0 0.54 1.00 -7282 ZNF608 zinc finger protein 608 2319525 2 2 2 1 0 0 0 1 1 0 0.54 1.00 -7283 PCYOX1L prenylcysteine oxidase 1 like 718419 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7284 HYAL4 hyaluronoglucosaminidase 4 739206 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -7285 AGAP1 1256853 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7286 AOC2 amine oxidase, copper containing 2 (retina-specific) 1159509 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7287 PRDM10 PR domain containing 10 1826721 2 2 2 0 2 0 0 0 0 0 0.54 1.00 -7288 TECTA tectorin alpha 3206268 3 3 3 2 1 0 1 0 1 0 0.54 1.00 -7289 MTMR7 myotubularin related protein 7 1019577 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -7290 DPY19L4 dpy-19-like 4 (C. elegans) 1129596 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -7291 AXL AXL receptor tyrosine kinase 1340508 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7292 C1orf112 chromosome 1 open reading frame 112 1343550 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7293 SMYD4 SET and MYND domain containing 4 1137708 1 1 1 1 0 0 1 0 0 0 0.54 1.00 -7294 ZFP161 zinc finger protein 161 homolog (mouse) 688506 1 1 1 1 1 0 0 0 0 0 0.54 1.00 -7295 SIDT1 SID1 transmembrane family, member 1 1235052 1 1 1 1 0 0 0 1 0 0 0.54 1.00 -7296 TACC1 transforming, acidic coiled-coil containing protein 1 1168635 1 1 1 2 1 0 0 0 0 0 0.54 1.00 -7297 PLEKHO2 pleckstrin homology domain containing, family O member 2 698646 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7298 SLC22A6 solute carrier family 22 (organic anion transporter), member 6 848211 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7299 FLRT2 fibronectin leucine rich transmembrane protein 2 1007409 1 1 1 2 1 0 0 0 0 0 0.54 1.00 -7300 COL10A1 collagen, type X, alpha 1(Schmid metaphyseal chondrodysplasia) 1039857 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7301 ZNF274 zinc finger protein 274 801567 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7302 BCR breakpoint cluster region 1112358 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -7303 NUP98 nucleoporin 98kDa 2840721 3 3 3 0 1 1 0 0 1 0 0.54 1.00 -7304 PNN pinin, desmosome associated protein 1051518 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -7305 NOX3 NADPH oxidase 3 891813 1 1 1 3 0 1 0 0 0 0 0.54 1.00 -7306 PKN2 protein kinase N2 1516437 1 1 1 0 0 0 0 0 1 0 0.54 1.00 -7307 RNF111 ring finger protein 111 1527591 1 1 1 0 0 0 0 0 1 0 0.54 1.00 -7308 SCN10A sodium channel, voltage-gated, type X, alpha subunit 3031353 3 3 3 1 1 1 1 0 0 0 0.54 1.00 -7309 CCDC63 coiled-coil domain containing 63 880152 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7310 ZMIZ2 zinc finger, MIZ-type containing 2 1255332 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7311 NTRK1 neurotrophic tyrosine kinase, receptor, type 1 1018563 1 1 1 0 1 0 0 0 0 0 0.54 1.00 -7312 MELK maternal embryonic leucine zipper kinase 1026168 1 1 1 1 1 0 0 0 0 0 0.54 1.00 -7313 IFIT2 interferon-induced protein with tetratricopeptide repeats 2 723489 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7314 NUMB numb homolog (Drosophila) 1011972 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7315 EDNRB endothelin receptor type B 749346 1 1 1 0 0 0 0 1 0 0 0.54 1.00 -7316 DDX21 DEAD (Asp-Glu-Ala-Asp) box polypeptide 21 1220349 1 1 1 0 0 1 0 0 0 0 0.54 1.00 -7317 PTPN4 protein tyrosine phosphatase, non-receptor type 4 (megakaryocyte) 1462695 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -7318 ZBTB16 zinc finger and BTB domain containing 16 1036308 1 1 1 0 0 0 1 0 0 0 0.54 1.00 -7319 AGBL5 ATP/GTP binding protein-like 5 1410474 1 1 1 0 0 0 0 0 1 0 0.55 1.00 -7320 RPE65 retinal pigment epithelium-specific protein 65kDa 840606 1 1 1 0 0 0 0 0 1 0 0.55 1.00 -7321 HCRTR2 hypocretin (orexin) receptor 2 691041 1 1 1 1 0 1 0 0 0 0 0.55 1.00 -7322 CCT6A chaperonin containing TCP1, subunit 6A (zeta 1) 766077 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -7323 ACBD5 acyl-Coenzyme A binding domain containing 5 808158 1 1 1 0 0 0 0 0 1 0 0.55 1.00 -7324 UBAP1 ubiquitin associated protein 1 757965 1 1 1 1 1 0 0 0 0 0 0.55 1.00 -7325 IL21R interleukin 21 receptor 835536 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7326 ATP5B ATP synthase, H+ transporting, mitochondrial F1 complex, beta polypeptide 759993 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7327 ENTPD4 ectonucleoside triphosphate diphosphohydrolase 4 855816 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -7328 ROR2 receptor tyrosine kinase-like orphan receptor 2 1241136 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -7329 PRSS12 protease, serine, 12 (neurotrypsin, motopsin) 1102218 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -7330 SLC35F5 solute carrier family 35, member F5 805116 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -7331 DTX4 deltex 4 homolog (Drosophila) 839085 1 1 1 1 1 0 0 0 0 0 0.55 1.00 -7332 TAF5L TAF5-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa 908544 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7333 CDK5RAP2 CDK5 regulatory subunit associated protein 2 2925897 3 3 3 2 1 1 1 0 0 0 0.55 1.00 -7334 POU2F1 POU class 2 homeobox 1 1137708 1 1 1 1 0 0 1 0 0 0 0.55 1.00 -7335 ILF3 interleukin enhancer binding factor 3, 90kDa 1398306 1 1 1 1 0 0 0 1 0 0 0.55 1.00 -7336 MAP3K6 mitogen-activated protein kinase kinase kinase 6 1463709 1 1 1 0 0 0 0 0 1 0 0.55 1.00 -7337 ANKRD20A4 ankyrin repeat domain 20 family, member A4 1037322 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -7338 ZNF600 zinc finger protein 600 1101711 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7339 SRRM4 872547 1 1 1 3 1 0 0 0 0 0 0.55 1.00 -7340 LRRC8A leucine rich repeat containing 8 family, member A 1236066 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7341 CYP2A7 cytochrome P450, family 2, subfamily A, polypeptide 7 776217 1 1 1 0 0 0 0 1 0 0 0.55 1.00 -7342 FUBP1 far upstream element (FUSE) binding protein 1 1021605 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -7343 SESTD1 SEC14 and spectrin domains 1 1094613 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7344 TLR3 toll-like receptor 3 1384617 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -7345 ZFYVE1 zinc finger, FYVE domain containing 1 1205646 1 1 1 0 0 0 0 0 1 0 0.55 1.00 -7346 DCLK2 doublecortin-like kinase 2 723489 1 1 1 1 0 0 1 0 0 0 0.55 1.00 -7347 CTCFL CCCTC-binding factor (zinc finger protein)-like 993213 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -7348 RP1L1 retinitis pigmentosa 1-like 1 3038451 4 3 4 1 1 1 2 0 0 0 0.55 1.00 -7349 SCEL sciellin 1112865 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -7350 ASTN2 astrotactin 2 1789203 2 2 2 0 2 0 0 0 0 0 0.55 1.00 -7351 BLNK B-cell linker 729573 1 1 1 1 0 1 0 0 0 0 0.55 1.00 -7352 RAB3GAP1 RAB3 GTPase activating protein subunit 1 (catalytic) 1542294 1 1 1 0 0 0 0 0 1 0 0.55 1.00 -7353 RNF10 ring finger protein 10 1187901 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -7354 MLH3 mutL homolog 3 (E. coli) 2235870 2 2 2 0 0 0 1 0 1 0 0.55 1.00 -7355 VPS41 vacuolar protein sorting 41 homolog (S. cerevisiae) 1359267 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7356 KLHL6 kelch-like 6 (Drosophila) 960258 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -7357 MS4A14 membrane-spanning 4-domains, subfamily A, member 14 1043406 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7358 MARCH7 membrane-associated ring finger (C3HC4) 7 1090557 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7359 SSH1 slingshot homolog 1 (Drosophila) 1559025 1 1 1 2 0 0 0 0 1 0 0.55 1.00 -7360 PCDHGC3 protocadherin gamma subfamily C, 3 1445457 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7361 ERF Ets2 repressor factor 701181 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -7362 PCK1 phosphoenolpyruvate carboxykinase 1 (soluble) 965835 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -7363 STRADA 710814 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -7364 IL1RAPL2 interleukin 1 receptor accessory protein-like 2 1065207 1 1 1 1 0 1 0 0 0 0 0.55 1.00 -7365 COL4A6 collagen, type IV, alpha 6 2667834 3 3 3 0 1 0 2 0 0 0 0.55 1.00 -7366 KDM4C 1709604 2 2 2 2 2 0 0 0 0 0 0.55 1.00 -7367 CSGALNACT2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 840099 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7368 ITGB8 integrin, beta 8 1188408 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7369 PLOD1 procollagen-lysine 1, 2-oxoglutarate 5-dioxygenase 1 980031 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -7370 EYA1 eyes absent homolog 1 (Drosophila) 949104 1 1 1 1 0 0 0 0 1 0 0.55 1.00 -7371 KCNA10 potassium voltage-gated channel, shaker-related subfamily, member 10 780780 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -7372 MMP10 matrix metallopeptidase 10 (stromelysin 2) 745797 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7373 CHRNG cholinergic receptor, nicotinic, gamma 792441 1 1 1 0 0 1 0 0 0 0 0.55 1.00 -7374 SPAG6 sperm associated antigen 6 732615 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7375 THRB thyroid hormone receptor, beta (erythroblastic leukemia viral (v-erb-a) oncogene homolog 2, avian) 718926 1 1 1 0 1 0 0 0 0 0 0.55 1.00 -7376 DZIP1L DAZ interacting protein 1-like 1139736 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7377 KYNU kynureninase (L-kynurenine hydrolase) 748332 1 1 1 0 0 0 1 0 0 0 0.55 1.00 -7378 SNX13 sorting nexin 13 1439880 1 1 1 1 0 0 1 0 0 0 0.55 1.00 -7379 REC8 REC8 homolog (yeast) 867477 1 1 1 1 0 0 1 0 0 0 0.55 1.00 -7380 SCRIB scribbled homolog (Drosophila) 885729 1 1 1 1 1 0 0 0 0 0 0.55 1.00 -7381 GLG1 golgi apparatus protein 1 1706055 2 2 2 0 0 1 1 0 0 0 0.55 1.00 -7382 MERTK c-mer proto-oncogene tyrosine kinase 1526577 1 1 1 1 0 0 0 0 1 0 0.55 1.00 -7383 SKIL SKI-like oncogene 1054053 1 1 1 1 0 0 1 0 0 0 0.55 1.00 -7384 USP53 ubiquitin specific peptidase 53 1663974 2 2 2 0 0 0 2 0 0 0 0.55 1.00 -7385 PAH phenylalanine hydroxylase 715377 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7386 DPP6 dipeptidyl-peptidase 6 1028196 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7387 CES7 carboxylesterase 7 896883 1 1 1 1 0 1 0 0 0 0 0.56 1.00 -7388 PTPRZ1 protein tyrosine phosphatase, receptor-type, Z polypeptide 1 3557619 4 4 4 1 3 0 1 0 0 0 0.56 1.00 -7389 PNLIPRP3 pancreatic lipase-related protein 3 736164 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -7390 TCP11L2 t-complex 11 (mouse)-like 2 809172 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7391 NRF1 nuclear respiratory factor 1 786864 1 1 1 1 0 1 0 0 0 0 0.56 1.00 -7392 DARS aspartyl-tRNA synthetase 794469 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -7393 SENP5 SUMO1/sentrin specific peptidase 5 1168128 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7394 RC3H2 ring finger and CCCH-type zinc finger domains 2 1893138 2 2 2 1 0 0 1 0 1 0 0.56 1.00 -7395 PNLDC1 poly(A)-specific ribonuclease (PARN)-like domain containing 1 798018 1 1 1 1 0 0 0 1 0 0 0.56 1.00 -7396 RAI14 retinoic acid induced 14 1526577 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7397 SLC24A2 solute carrier family 24 (sodium/potassium/calcium exchanger), member 2 1027182 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7398 IQGAP3 IQ motif containing GTPase activating protein 3 2559336 3 3 3 3 2 0 1 0 0 0 0.56 1.00 -7399 ZNF83 zinc finger protein 83 788385 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7400 RANBP17 RAN binding protein 17 1701999 2 2 2 1 1 1 0 0 0 0 0.56 1.00 -7401 CTNNAL1 catenin (cadherin-associated protein), alpha-like 1 1082952 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -7402 LRRC31 leucine rich repeat containing 31 859365 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7403 LRRC50 leucine rich repeat containing 50 1063686 1 1 1 3 0 1 0 0 0 0 0.56 1.00 -7404 GANC glucosidase, alpha; neutral C 1440387 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7405 PCDHB8 protocadherin beta 8 1202604 1 1 1 1 1 0 0 0 0 0 0.56 1.00 -7406 MSH4 mutS homolog 4 (E. coli) 1435317 1 1 1 0 0 0 0 0 1 0 0.56 1.00 -7407 ANKRD17 ankyrin repeat domain 17 3924180 4 4 4 0 1 1 1 0 1 0 0.56 1.00 -7408 PPP1R10 protein phosphatase 1, regulatory (inhibitor) subunit 10 1407939 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7409 TNPO2 transportin 2 (importin 3, karyopherin beta 2b) 1189929 1 1 1 0 0 0 0 0 1 0 0.56 1.00 -7410 GPNMB glycoprotein (transmembrane) nmb 893841 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7411 PDE1B phosphodiesterase 1B, calmodulin-dependent 845169 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -7412 ITIH3 inter-alpha (globulin) inhibitor H3 1369914 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7413 CCT8 chaperonin containing TCP1, subunit 8 (theta) 865449 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7414 TANC1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 2885337 3 3 3 1 1 0 1 1 0 0 0.56 1.00 -7415 AKAP1 A kinase (PRKA) anchor protein 1 1395264 1 1 1 1 0 0 1 0 0 0 0.56 1.00 -7416 RIF1 RAP1 interacting factor homolog (yeast) 3832413 4 4 4 0 0 3 1 0 0 0 0.56 1.00 -7417 ZAP70 zeta-chain (TCR) associated protein kinase 70kDa 723489 1 1 1 1 1 0 0 0 0 0 0.56 1.00 -7418 ZNF107 zinc finger protein 107 1196520 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7419 PAPPA2 pappalysin 2 2797119 3 3 3 1 0 2 0 1 0 0 0.56 1.00 -7420 EPRS glutamyl-prolyl-tRNA synthetase 2366169 2 2 2 0 0 1 0 0 1 0 0.56 1.00 -7421 INTS3 integrator complex subunit 3 1647243 2 2 2 1 1 1 0 0 0 0 0.56 1.00 -7422 PCDHB16 protocadherin beta 16 1097655 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -7423 SPAG17 sperm associated antigen 17 3480048 4 4 4 0 0 2 2 0 0 0 0.56 1.00 -7424 FAM194A 1038336 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7425 IQGAP2 IQ motif containing GTPase activating protein 2 2444754 2 2 2 1 0 0 0 0 2 0 0.56 1.00 -7426 LEO1 Leo1, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) 1038843 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7427 CUL1 cullin 1 1224405 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7428 VPS35 vacuolar protein sorting 35 homolog (S. cerevisiae) 1243164 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -7429 KIF11 kinesin family member 11 1611246 2 2 2 0 1 1 0 0 0 0 0.56 1.00 -7430 KIF3C kinesin family member 3C 1223898 1 1 1 3 1 0 0 0 0 0 0.56 1.00 -7431 VWA3B von Willebrand factor A domain containing 3B 1991496 2 2 2 0 0 2 0 0 0 0 0.56 1.00 -7432 TMC7 transmembrane channel-like 7 1097655 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -7433 ARHGAP21 Rho GTPase activating protein 21 3030339 3 3 3 0 2 1 0 0 0 0 0.56 1.00 -7434 CLMN calmin (calponin-like, transmembrane) 1508325 1 1 1 1 0 0 1 0 0 0 0.56 1.00 -7435 SBF2 SET binding factor 2 2865057 3 3 3 0 1 1 1 0 0 0 0.56 1.00 -7436 GPR156 G protein-coupled receptor 156 1257867 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -7437 MARK3 MAP/microtubule affinity-regulating kinase 3 1167621 1 1 1 0 0 0 0 1 0 0 0.56 1.00 -7438 NGLY1 N-glycanase 1 952146 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7439 RGS14 regulator of G-protein signaling 14 761514 1 1 1 2 0 0 1 0 0 0 0.56 1.00 -7440 MAG myelin associated glycoprotein 768612 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7441 ZHX2 zinc fingers and homeoboxes 2 1276626 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7442 ALDH1A2 aldehyde dehydrogenase 1 family, member A2 754416 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7443 DHX38 DEAH (Asp-Glu-Ala-His) box polypeptide 38 1698957 2 2 2 0 0 2 0 0 0 0 0.56 1.00 -7444 MTHFD1L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like 1403376 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7445 CD22 CD22 molecule 1316172 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -7446 C6orf10 chromosome 6 open reading frame 10 904488 1 1 1 2 0 0 0 1 0 0 0.56 1.00 -7447 SEMA6A sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6A 1588938 1 1 1 1 0 0 0 0 1 0 0.56 1.00 -7448 FAM71A family with sequence similarity 71, member A 907023 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7449 C6orf222 chromosome 6 open reading frame 222 1015521 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7450 TCP11 t-complex 11 homolog (mouse) 818805 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7451 CALCOCO1 calcium binding and coiled-coil domain 1 1080924 1 1 1 0 0 0 0 0 1 0 0.56 1.00 -7452 CABYR calcium binding tyrosine-(Y)-phosphorylation regulated 1065207 1 1 1 0 0 0 0 0 1 0 0.56 1.00 -7453 TTC23 tetratricopeptide repeat domain 23 701688 1 1 1 0 1 0 0 0 0 0 0.56 1.00 -7454 GTF3C3 general transcription factor IIIC, polypeptide 3, 102kDa 1385631 1 1 1 0 0 1 0 0 0 0 0.56 1.00 -7455 PNPLA8 patatin-like phospholipase domain containing 8 1209195 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7456 LRRC8B leucine rich repeat containing 8 family, member B 1226940 1 1 1 0 0 0 1 0 0 0 0.56 1.00 -7457 ADC arginine decarboxylase 719433 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -7458 GGA2 golgi associated, gamma adaptin ear containing, ARF binding protein 2 920205 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7459 RAP1GDS1 RAP1, GTP-GDP dissociation stimulator 1 952653 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -7460 DNAH11 dynein, axonemal, heavy chain 11 6870357 8 8 8 2 2 0 3 2 1 0 0.57 1.00 -7461 C8orf41 chromosome 8 open reading frame 41 781794 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7462 COL28A1 collagen, type XXVIII, alpha 1 1781598 2 2 2 0 0 2 0 0 0 0 0.57 1.00 -7463 KRT85 keratin 85 789906 1 1 1 1 1 0 0 0 0 0 0.57 1.00 -7464 BTD biotinidase 822354 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -7465 ADNP activity-dependent neuroprotector homeobox 1683747 3 2 3 1 1 0 2 0 0 0 0.57 1.00 -7466 ADCY7 adenylate cyclase 7 1257867 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7467 PLTP phospholipid transfer protein 757965 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7468 SLC39A12 solute carrier family 39 (zinc transporter), member 12 1018563 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -7469 PKN3 protein kinase N3 1134159 2 1 2 0 0 1 0 0 1 0 0.57 1.00 -7470 USP38 ubiquitin specific peptidase 38 1518465 1 1 1 0 0 0 0 1 0 0 0.57 1.00 -7471 SF1 splicing factor 1 803088 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7472 ZNF439 zinc finger protein 439 766584 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7473 P2RX7 purinergic receptor P2X, ligand-gated ion channel, 7 892320 1 1 1 2 0 1 0 0 0 0 0.57 1.00 -7474 PHKB phosphorylase kinase, beta 1755741 2 2 2 0 1 0 0 1 0 0 0.57 1.00 -7475 IGF2BP3 insulin-like growth factor 2 mRNA binding protein 3 843648 1 1 1 1 1 0 0 0 0 0 0.57 1.00 -7476 MORC4 MORC family CW-type zinc finger 4 1368393 1 1 1 1 1 0 0 0 0 0 0.57 1.00 -7477 APBA1 amyloid beta (A4) precursor protein-binding, family A, member 1 (X11) 840606 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -7478 MYOF 3199170 3 3 3 2 0 1 0 0 2 0 0.57 1.00 -7479 CIC capicua homolog (Drosophila) 2214069 2 2 2 1 0 1 1 0 0 0 0.57 1.00 -7480 KIAA1958 KIAA1958 1096641 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7481 WDR44 WD repeat domain 44 1425684 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7482 PM20D1 peptidase M20 domain containing 1 790413 1 1 1 1 0 1 0 0 0 0 0.57 1.00 -7483 IRAK1 interleukin-1 receptor-associated kinase 1 768612 1 1 1 1 0 0 1 0 0 0 0.57 1.00 -7484 SMARCC1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 1 1637610 2 2 2 1 0 1 1 0 0 0 0.57 1.00 -7485 ADAMTS13 ADAM metallopeptidase with thrombospondin type 1 motif, 13 1345578 1 1 1 1 0 1 0 0 0 0 0.57 1.00 -7486 PDE11A phosphodiesterase 11A 1545336 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7487 ADAM15 ADAM metallopeptidase domain 15 1229475 1 1 1 1 0 0 0 0 1 0 0.57 1.00 -7488 ZNF441 zinc finger protein 441 959244 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -7489 ZNF30 zinc finger protein 30 958737 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -7490 MTMR3 myotubularin related protein 3 1853592 2 2 2 0 0 1 1 0 0 0 0.57 1.00 -7491 PTH2R parathyroid hormone 2 receptor 856830 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -7492 DNER delta/notch-like EGF repeat containing 978510 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -7493 LRRC8C leucine rich repeat containing 8 family, member C 1226940 1 1 1 0 0 0 0 1 0 0 0.57 1.00 -7494 ZNF35 zinc finger protein 35 809172 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -7495 ARPP21 1279668 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -7496 DVL3 dishevelled, dsh homolog 3 (Drosophila) 1073319 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7497 PCSK7 proprotein convertase subtilisin/kexin type 7 1211223 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -7498 OSBP oxysterol binding protein 1071798 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -7499 KIAA1549 2672397 3 3 3 0 2 0 0 1 0 0 0.57 1.00 -7500 PEAR1 platelet endothelial aggregation receptor 1 1432275 1 1 1 2 0 0 1 0 0 0 0.57 1.00 -7501 ARHGEF12 Rho guanine nucleotide exchange factor (GEF) 12 2433093 2 2 2 0 0 1 0 0 1 0 0.57 1.00 -7502 PTPRN2 protein tyrosine phosphatase, receptor type, N polypeptide 2 1062165 1 1 1 2 0 1 0 0 0 0 0.57 1.00 -7503 FCHO2 FCH domain only 2 1034280 1 1 1 0 0 1 0 0 0 0 0.57 1.00 -7504 SLC6A17 solute carrier family 6, member 17 1129596 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -7505 SYDE2 synapse defective 1, Rho GTPase, homolog 2 (C. elegans) 1577277 1 1 1 0 0 0 1 0 0 0 0.57 1.00 -7506 KPNB1 karyopherin (importin) beta 1 1324284 1 1 1 0 0 0 0 1 0 0 0.57 1.00 -7507 SGIP1 SH3-domain GRB2-like (endophilin) interacting protein 1 1311609 1 1 1 0 1 0 0 0 0 0 0.57 1.00 -7508 XIRP1 xin actin-binding repeat containing 1 2804724 3 3 3 0 1 1 1 0 0 0 0.57 1.00 -7509 BTN2A2 butyrophilin, subfamily 2, member A2 811200 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -7510 RTTN rotatin 3468894 3 3 3 2 0 0 0 1 2 0 0.58 1.00 -7511 SMCR8 Smith-Magenis syndrome chromosome region, candidate 8 1417065 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7512 NPEPPS aminopeptidase puromycin sensitive 1003860 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -7513 TBC1D1 TBC1 (tre-2/USP6, BUB2, cdc16) domain family, member 1 1589445 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -7514 ALCAM activated leukocyte cell adhesion molecule 918684 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -7515 PAMR1 1062165 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -7516 PUM1 pumilio homolog 1 (Drosophila) 1818609 2 2 2 1 0 1 0 0 1 0 0.58 1.00 -7517 EFTUD1 elongation factor Tu GTP binding domain containing 1 1743573 2 2 2 0 1 1 0 0 0 0 0.58 1.00 -7518 MBOAT2 membrane bound O-acyltransferase domain containing 2 778752 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -7519 MED13 mediator complex subunit 13 3333525 4 4 4 0 2 1 1 0 0 0 0.58 1.00 -7520 SNRNP200 3312231 3 3 3 2 0 2 1 0 0 0 0.58 1.00 -7521 SLC3A1 solute carrier family 3 (cystine, dibasic and neutral amino acid transporters, activator of cystine, dibasic and neutral amino acid transport), member 1 1063686 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7522 PLK1 polo-like kinase 1 (Drosophila) 857337 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -7523 UGT2B28 UDP glucuronosyltransferase 2 family, polypeptide B28 818298 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -7524 NPHP4 nephronophthisis 4 1530633 1 1 1 3 0 1 0 0 0 0 0.58 1.00 -7525 RNF214 ring finger protein 214 1099176 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7526 CATSPER1 cation channel, sperm associated 1 1107795 1 1 1 0 0 0 0 1 0 0 0.58 1.00 -7527 CD3EAP CD3e molecule, epsilon associated protein 769626 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -7528 TBC1D8 TBC1 domain family, member 8 (with GRAM domain) 1632540 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -7529 ITPR3 inositol 1,4,5-triphosphate receptor, type 3 3947502 4 4 4 1 0 2 1 0 1 0 0.58 1.00 -7530 SDHA succinate dehydrogenase complex, subunit A, flavoprotein (Fp) 1004367 1 1 1 1 0 1 0 0 0 0 0.58 1.00 -7531 PCDHGA2 protocadherin gamma subfamily A, 2 1451541 1 1 1 2 0 0 1 0 0 0 0.58 1.00 -7532 IFT88 intraflagellar transport 88 homolog (Chlamydomonas) 1308060 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7533 CDC27 cell division cycle 27 homolog (S. cerevisiae) 1293864 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7534 PTPRF protein tyrosine phosphatase, receptor type, F 2554773 3 3 3 0 2 1 0 0 0 0 0.58 1.00 -7535 CPS1 carbamoyl-phosphate synthetase 1, mitochondrial 2371239 2 2 2 0 0 1 1 0 0 0 0.58 1.00 -7536 MBTPS2 membrane-bound transcription factor peptidase, site 2 773175 1 1 1 1 0 0 1 0 0 0 0.58 1.00 -7537 WRN Werner syndrome 2247531 2 2 2 1 0 1 0 0 1 0 0.58 1.00 -7538 AK5 adenylate kinase 5 852267 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7539 LEMD3 LEM domain containing 3 1061658 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -7540 FRMD3 FERM domain containing 3 891306 1 1 1 0 0 0 1 0 0 0 0.58 1.00 -7541 ATP2C1 ATPase, Ca++ transporting, type 2C, member 1 1504776 1 1 1 1 0 0 0 0 1 0 0.58 1.00 -7542 ACCN2 amiloride-sensitive cation channel 2, neuronal 874575 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7543 RBL1 retinoblastoma-like 1 (p107) 1594008 1 1 1 2 0 0 0 1 0 0 0.58 1.00 -7544 OGG1 8-oxoguanine DNA glycosylase 873054 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7545 ZNF295 zinc finger protein 295 1624935 1 1 1 1 0 0 0 0 1 0 0.58 1.00 -7546 SRPK1 SFRS protein kinase 1 995241 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7547 SIN3A SIN3 homolog A, transcription regulator (yeast) 1978314 2 2 2 0 0 0 1 1 0 0 0.58 1.00 -7548 TRMT6 tRNA methyltransferase 6 homolog (S. cerevisiae) 778245 1 1 1 1 1 0 0 0 0 0 0.58 1.00 -7549 CPT2 carnitine palmitoyltransferase II 932880 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7550 NBPF3 neuroblastoma breakpoint family, member 3 964314 1 1 1 1 0 0 1 0 0 0 0.58 1.00 -7551 PLEKHA5 pleckstrin homology domain containing, family A member 5 1659918 2 2 2 1 0 0 2 0 0 0 0.58 1.00 -7552 PCDHAC2 protocadherin alpha subfamily C, 2 1310088 1 1 1 4 0 1 0 0 0 0 0.58 1.00 -7553 MAVS 833508 1 1 1 1 1 0 0 0 0 0 0.58 1.00 -7554 TUT1 terminal uridylyl transferase 1, U6 snRNA-specific 1386645 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -7555 SF3B2 splicing factor 3b, subunit 2, 145kDa 1398306 1 1 1 1 0 0 0 0 1 0 0.58 1.00 -7556 WDR93 WD repeat domain 93 1077375 1 1 1 1 1 0 0 0 0 0 0.58 1.00 -7557 IPP intracisternal A particle-promoted polypeptide 906009 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -7558 ZNF646 zinc finger protein 646 2755545 3 3 3 0 0 2 1 0 0 0 0.58 1.00 -7559 GPR56 G protein-coupled receptor 56 1061151 1 1 1 1 0 0 1 0 0 0 0.58 1.00 -7560 FBXO43 F-box protein 43 1088529 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7561 TULP4 tubby like protein 4 2169453 2 2 2 1 1 0 0 0 1 0 0.58 1.00 -7562 MASP1 mannan-binding lectin serine peptidase 1 (C4/C2 activating component of Ra-reactive factor) 1576263 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -7563 WDR75 WD repeat domain 75 1260909 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -7564 DEPDC1B DEP domain containing 1B 802074 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7565 EFCAB7 EF-hand calcium binding domain 7 984594 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -7566 ALPL alkaline phosphatase, liver/bone/kidney 774189 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -7567 XPO1 exportin 1 (CRM1 homolog, yeast) 1679184 2 2 2 1 1 1 0 0 0 0 0.58 1.00 -7568 MET met proto-oncogene (hepatocyte growth factor receptor) 2183649 4 2 4 0 0 1 0 0 0 3 0.58 1.00 -7569 HIPK4 homeodomain interacting protein kinase 4 894348 1 1 1 0 0 1 0 0 0 0 0.58 1.00 -7570 EYA4 eyes absent homolog 4 (Drosophila) 1065207 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -7571 ZNF45 zinc finger protein 45 1046955 1 1 1 1 0 0 0 0 1 0 0.58 1.00 -7572 ZFP112 1398306 1 1 1 1 0 0 0 1 0 0 0.58 1.00 -7573 CLCN2 chloride channel 2 1132638 1 1 1 0 1 0 0 0 0 0 0.58 1.00 -7574 CPSF3 cleavage and polyadenylation specific factor 3, 73kDa 1051011 1 1 1 0 0 0 0 0 1 0 0.58 1.00 -7575 RB1CC1 RB1-inducible coiled-coil 1 2470611 2 2 2 0 1 0 0 0 1 0 0.59 1.00 -7576 TMTC2 transmembrane and tetratricopeptide repeat containing 2 1253304 1 1 1 2 0 0 1 0 0 0 0.59 1.00 -7577 BTBD7 BTB (POZ) domain containing 7 1781598 2 2 2 0 0 1 1 0 0 0 0.59 1.00 -7578 DISP1 dispatched homolog 1 (Drosophila) 2333721 2 2 2 1 1 0 0 0 1 0 0.59 1.00 -7579 LRRTM1 leucine rich repeat transmembrane neuronal 1 795990 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -7580 TMTC3 transmembrane and tetratricopeptide repeat containing 3 1418079 1 1 1 0 0 0 1 0 0 0 0.59 1.00 -7581 USHBP1 Usher syndrome 1C binding protein 1 1024647 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -7582 CPNE9 copine family member IX 822861 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -7583 OSBPL10 oxysterol binding protein-like 10 1043406 1 1 1 0 0 0 1 0 0 0 0.59 1.00 -7584 C17orf47 chromosome 17 open reading frame 47 872547 1 1 1 1 0 1 0 0 0 0 0.59 1.00 -7585 ZNF235 zinc finger protein 235 1132131 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -7586 ZNF304 zinc finger protein 304 991185 1 1 1 0 0 0 0 1 0 0 0.59 1.00 -7587 ARSE arylsulfatase E (chondrodysplasia punctata 1) 917670 1 1 1 0 0 0 0 1 0 0 0.59 1.00 -7588 C11orf30 chromosome 11 open reading frame 30 2052843 2 2 2 1 0 0 2 0 0 0 0.59 1.00 -7589 NOL11 nucleolar protein 11 1131624 2 1 2 0 1 0 1 0 0 0 0.59 1.00 -7590 DIXDC1 DIX domain containing 1 993213 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -7591 METT11D1 methyltransferase 11 domain containing 1 758472 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -7592 ELMO1 engulfment and cell motility 1 1149876 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -7593 HLCS holocarboxylase synthetase (biotin-(proprionyl-Coenzyme A-carboxylase (ATP-hydrolysing)) ligase) 1108302 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -7594 EIF4B eukaryotic translation initiation factor 4B 961272 1 1 1 0 0 0 1 0 0 0 0.59 1.00 -7595 RALGAPB 2332707 2 2 2 0 1 0 0 0 1 0 0.59 1.00 -7596 FBN3 fibrillin 3 3353298 3 3 3 3 1 0 1 1 0 0 0.59 1.00 -7597 JHDM1D jumonji C domain containing histone demethylase 1 homolog D (S. cerevisiae) 1372956 1 1 1 0 0 0 1 0 0 0 0.59 1.00 -7598 GRHL3 grainyhead-like 3 (Drosophila) 867477 1 1 1 0 0 0 0 1 0 0 0.59 1.00 -7599 ALPK2 alpha-kinase 2 3318822 3 3 3 1 1 0 2 0 0 0 0.59 1.00 -7600 VAV1 vav 1 guanine nucleotide exchange factor 1180803 1 1 1 0 0 1 0 0 0 0 0.59 1.00 -7601 TBXAS1 thromboxane A synthase 1 (platelet, cytochrome P450, family 5, subfamily A) 840099 1 1 1 0 0 0 1 0 0 0 0.59 1.00 -7602 ITGAD integrin, alpha D 1676649 1 1 1 1 0 0 0 0 1 0 0.59 1.00 -7603 LGSN 783822 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -7604 HEATR5A HEAT repeat containing 5A 2667834 3 3 3 0 1 1 1 0 0 0 0.59 1.00 -7605 MYO15A myosin XVA 3298035 3 3 3 2 1 1 1 0 0 0 0.59 1.00 -7606 KIAA1279 KIAA1279 934401 1 1 1 1 0 0 1 0 0 0 0.59 1.00 -7607 GRM1 glutamate receptor, metabotropic 1 1866774 2 2 2 1 2 0 0 0 0 0 0.59 1.00 -7608 PPIP5K2 1918995 2 2 2 0 1 0 1 0 0 0 0.59 1.00 -7609 BCHE butyrylcholinesterase 923247 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -7610 LY9 lymphocyte antigen 9 1081938 1 1 1 0 0 0 1 0 0 0 0.59 1.00 -7611 INCENP inner centromere protein antigens 135/155kDa 1126554 1 1 1 2 0 1 0 0 0 0 0.59 1.00 -7612 AP1G2 adaptor-related protein complex 1, gamma 2 subunit 1237587 1 1 1 0 1 0 0 0 0 0 0.59 1.00 -7613 LRP4 low density lipoprotein receptor-related protein 4 2909166 3 3 3 2 1 0 1 1 0 0 0.59 1.00 -7614 KIAA0090 KIAA0090 1508325 1 1 1 0 0 0 0 0 1 0 0.59 1.00 -7615 INSR insulin receptor 1952457 2 2 2 1 0 1 0 1 0 0 0.59 1.00 -7616 GRM2 glutamate receptor, metabotropic 2 996255 1 1 1 0 0 0 0 1 0 0 0.59 1.00 -7617 ATP1A2 ATPase, Na+/K+ transporting, alpha 2 (+) polypeptide 1599078 1 1 1 0 0 0 0 1 0 0 0.59 1.00 -7618 LIG4 ligase IV, DNA, ATP-dependent 1388673 2 1 2 0 0 1 0 0 1 0 0.59 1.00 -7619 SLCO1C1 solute carrier organic anion transporter family, member 1C1 1163565 1 1 1 1 0 0 0 1 0 0 0.59 1.00 -7620 LTK leukocyte receptor tyrosine kinase 859872 1 1 1 1 1 0 0 0 0 0 0.60 1.00 -7621 BAT2L1 2992821 3 3 3 1 1 2 0 0 0 0 0.60 1.00 -7622 DCBLD1 discoidin, CUB and LCCL domain containing 1 792948 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7623 PLA2R1 phospholipase A2 receptor 1, 180kDa 2234349 2 2 2 0 0 0 2 0 0 0 0.60 1.00 -7624 MYEF2 myelin expression factor 2 864942 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7625 IFNAR2 interferon (alpha, beta and omega) receptor 2 882180 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -7626 LOXL4 lysyl oxidase-like 4 1060137 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -7627 PGM3 phosphoglucomutase 3 850239 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7628 NALCN sodium leak channel, non-selective 2732223 3 3 3 1 1 0 2 0 0 0 0.60 1.00 -7629 ZNF211 zinc finger protein 211 839592 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7630 SORCS3 sortilin-related VPS10 domain containing receptor 3 1595022 1 1 1 1 0 0 0 1 0 0 0.60 1.00 -7631 STAB1 stabilin 1 2424981 2 2 2 4 1 0 0 1 0 0 0.60 1.00 -7632 GCLC glutamate-cysteine ligase, catalytic subunit 961779 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7633 TRIP12 thyroid hormone receptor interactor 12 3112473 3 3 3 1 0 2 0 0 1 0 0.60 1.00 -7634 SLC2A9 solute carrier family 2 (facilitated glucose transporter), member 9 788385 1 1 1 1 1 0 0 0 0 0 0.60 1.00 -7635 POLN polymerase (DNA directed) nu 1353183 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7636 TBC1D9 TBC1 domain family, member 9 (with GRAM domain) 1693380 1 1 1 1 0 0 0 0 1 0 0.60 1.00 -7637 DDX46 DEAD (Asp-Glu-Ala-Asp) box polypeptide 46 1612767 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7638 MACC1 1305525 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7639 CPSF6 cleavage and polyadenylation specific factor 6, 68kDa 825396 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7640 TRPM8 transient receptor potential cation channel, subfamily M, member 8 1729377 2 2 2 0 1 1 0 0 0 0 0.60 1.00 -7641 STARD8 StAR-related lipid transfer (START) domain containing 8 1419093 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7642 KIAA0562 KIAA0562 1351662 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -7643 ITGAM integrin, alpha M (complement component 3 receptor 3 subunit) 1701999 1 1 1 0 0 0 0 0 1 0 0.60 1.00 -7644 WDR78 WD repeat domain 78 1354704 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -7645 GOLGB1 golgin B1, golgi integral membrane protein 5001048 5 5 5 1 2 1 0 0 2 0 0.60 1.00 -7646 ESYT3 1183845 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7647 ALG13 asparagine-linked glycosylation 13 homolog (S. cerevisiae) 1752699 2 2 2 0 1 0 0 1 0 0 0.60 1.00 -7648 NOMO2 NODAL modulator 2 1011972 1 1 1 0 0 0 0 1 0 0 0.60 1.00 -7649 NKTR natural killer-tumor recognition sequence 2226237 2 2 2 0 0 1 1 0 0 0 0.60 1.00 -7650 DOLK dolichol kinase 821847 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -7651 TUBGCP5 tubulin, gamma complex associated protein 5 1492608 1 1 1 1 1 0 0 0 0 0 0.60 1.00 -7652 ZNF418 zinc finger protein 418 1035801 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7653 NFATC3 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 3 1719237 3 2 3 0 1 0 2 0 0 0 0.60 1.00 -7654 ATP6V0A2 ATPase, H+ transporting, lysosomal V0 subunit a2 1282710 1 1 1 1 0 0 0 1 0 0 0.60 1.00 -7655 MAN1A2 mannosidase, alpha, class 1A, member 2 1002846 1 1 1 1 0 0 0 0 1 0 0.60 1.00 -7656 FHOD3 formin homology 2 domain containing 3 2104050 2 2 2 0 0 0 2 0 0 0 0.60 1.00 -7657 HECTD3 HECT domain containing 3 1161537 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7658 FLT1 fms-related tyrosine kinase 1 (vascular endothelial growth factor/vascular permeability factor receptor) 2111148 2 2 2 1 0 0 0 2 0 0 0.60 1.00 -7659 MAML1 mastermind-like 1 (Drosophila) 1337973 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7660 ZNF567 zinc finger protein 567 944541 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -7661 MPP4 membrane protein, palmitoylated 4 (MAGUK p55 subfamily member 4) 938457 1 1 1 1 1 0 0 0 0 0 0.60 1.00 -7662 ZNF263 zinc finger protein 263 919191 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7663 PAPOLA poly(A) polymerase alpha 1173198 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7664 PCNXL3 pecanex-like 3 (Drosophila) 1368393 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7665 C14orf43 chromosome 14 open reading frame 43 1550406 1 1 1 0 0 0 0 0 1 0 0.60 1.00 -7666 PRKCG protein kinase C, gamma 893841 1 1 1 2 0 0 1 0 0 0 0.60 1.00 -7667 KIAA0408 KIAA0408 1067235 1 1 1 1 0 0 0 0 1 0 0.60 1.00 -7668 DNMT3B DNA (cytosine-5-)-methyltransferase 3 beta 1363323 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7669 DHTKD1 dehydrogenase E1 and transketolase domain containing 1 1353690 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7670 FAM161B 1003860 1 1 1 1 0 0 1 0 0 0 0.60 1.00 -7671 PTH1R 784836 1 1 1 0 1 0 0 0 0 0 0.60 1.00 -7672 SUN1 1026675 1 1 1 0 0 0 0 1 0 0 0.60 1.00 -7673 TRIM32 tripartite motif-containing 32 996762 1 1 1 0 0 0 0 0 1 0 0.60 1.00 -7674 PABPC3 poly(A) binding protein, cytoplasmic 3 963300 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7675 BDP1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB 3988062 4 4 4 1 2 0 1 1 0 0 0.60 1.00 -7676 SOX30 SRY (sex determining region Y)-box 30 944541 1 1 1 1 1 0 0 0 0 0 0.60 1.00 -7677 PCDHGB1 protocadherin gamma subfamily B, 1 1418079 1 1 1 2 0 1 0 0 0 0 0.60 1.00 -7678 KCNA4 potassium voltage-gated channel, shaker-related subfamily, member 4 996762 1 1 1 0 0 0 1 0 0 0 0.60 1.00 -7679 TNS3 tensin 3 2223195 2 2 2 1 2 0 0 0 0 0 0.60 1.00 -7680 LRIG1 leucine-rich repeats and immunoglobulin-like domains 1 1589952 1 1 1 2 0 0 1 0 0 0 0.60 1.00 -7681 ORC3L origin recognition complex, subunit 3-like (yeast) 1125033 1 1 1 0 0 1 0 0 0 0 0.60 1.00 -7682 ACSL4 acyl-CoA synthetase long-chain family member 4 1111344 1 1 1 1 0 1 0 0 0 0 0.61 1.00 -7683 GPR126 G protein-coupled receptor 126 1941303 2 2 2 0 1 1 0 0 0 0 0.61 1.00 -7684 AKNA AT-hook transcription factor 1959048 2 2 2 0 1 0 1 0 0 0 0.61 1.00 -7685 SCN5A sodium channel, voltage-gated, type V, alpha subunit 2971020 3 3 3 3 1 0 1 1 0 0 0.61 1.00 -7686 TOX thymocyte selection-associated high mobility group box 790413 1 1 1 1 0 1 0 0 0 0 0.61 1.00 -7687 ZBTB3 zinc finger and BTB domain containing 3 878631 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7688 GYS2 glycogen synthase 2 (liver) 1103232 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7689 MYBPC3 myosin binding protein C, cardiac 1208688 1 1 1 0 0 0 0 0 1 0 0.61 1.00 -7690 KIF14 kinesin family member 14 2566941 2 2 2 0 1 0 0 0 1 0 0.61 1.00 -7691 SLC27A2 solute carrier family 27 (fatty acid transporter), member 2 868491 1 1 1 0 0 0 1 0 0 0 0.61 1.00 -7692 WDR48 WD repeat domain 48 1061151 1 1 1 0 0 0 1 0 0 0 0.61 1.00 -7693 SETD3 SET domain containing 3 952653 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7694 BIN2 bridging integrator 2 887250 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -7695 CEP152 centrosomal protein 152kDa 2567955 2 2 2 0 0 0 0 2 0 0 0.61 1.00 -7696 CDH20 cadherin 20, type 2 1019577 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7697 DST dystonin 10388937 13 11 13 2 2 3 2 1 3 2 0.61 1.00 -7698 DCP1A DCP1 decapping enzyme homolog A (S. cerevisiae) 879645 1 1 1 2 0 1 0 0 0 0 0.61 1.00 -7699 ADAD1 adenosine deaminase domain containing 1 (testis-specific) 899925 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -7700 ZNF462 zinc finger protein 462 3837483 4 4 4 2 1 1 2 0 0 0 0.61 1.00 -7701 ASTE1 asteroid homolog 1 (Drosophila) 1042392 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -7702 KIF21B kinesin family member 21B 2450838 2 2 2 3 1 0 0 1 0 0 0.61 1.00 -7703 RNF40 ring finger protein 40 1382589 1 1 1 0 0 0 1 0 0 0 0.61 1.00 -7704 UBAP2L ubiquitin associated protein 2-like 1707576 1 1 1 0 0 0 1 0 0 0 0.61 1.00 -7705 AKNAD1 1303497 1 1 1 0 0 0 1 0 0 0 0.61 1.00 -7706 C2 complement component 2 1220856 1 1 1 1 0 1 0 0 0 0 0.61 1.00 -7707 MOCOS molybdenum cofactor sulfurase 1308567 1 1 1 1 0 0 0 0 1 0 0.61 1.00 -7708 STRA6 stimulated by retinoic acid gene 6 homolog (mouse) 938457 1 1 1 2 0 1 0 0 0 0 0.61 1.00 -7709 PHC1 polyhomeotic homolog 1 (Drosophila) 1403883 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -7710 NLGN1 neuroligin 1 1263444 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7711 SACS spastic ataxia of Charlevoix-Saguenay (sacsin) 6905847 6 6 6 1 1 2 2 0 1 0 0.61 1.00 -7712 NARS asparaginyl-tRNA synthetase 856323 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7713 POMT2 protein-O-mannosyltransferase 2 938964 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -7714 ACSM1 acyl-CoA synthetase medium-chain family member 1 905502 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -7715 MYO18A myosin XVIIIA 2586207 2 2 2 0 0 1 1 0 0 0 0.61 1.00 -7716 PDE3B phosphodiesterase 3B, cGMP-inhibited 1324284 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -7717 INPP5F inositol polyphosphate-5-phosphatase F 1712139 1 1 1 0 0 0 0 0 1 0 0.61 1.00 -7718 ABCA3 ATP-binding cassette, sub-family A (ABC1), member 3 1794273 2 2 2 2 1 1 0 0 0 0 0.61 1.00 -7719 TAF6 TAF6 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 80kDa 1017549 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7720 LRFN2 leucine rich repeat and fibronectin type III domain containing 2 1089543 1 1 1 0 1 0 0 0 0 0 0.61 1.00 -7721 PPARGC1A peroxisome proliferator-activated receptor gamma, coactivator 1 alpha 1241643 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7722 TAS1R1 taste receptor, type 1, member 1 1193985 1 1 1 0 0 0 1 0 0 0 0.61 1.00 -7723 MAGEE1 melanoma antigen family E, 1 1248234 1 1 1 0 0 0 1 0 0 0 0.61 1.00 -7724 DHX36 DEAH (Asp-Glu-Ala-His) box polypeptide 36 1584882 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7725 THBS4 thrombospondin 4 1401855 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7726 KIF1C kinesin family member 1C 1476891 1 1 1 1 0 1 0 0 0 0 0.61 1.00 -7727 PRKD1 protein kinase D1 1289301 1 1 1 0 0 0 0 1 0 0 0.61 1.00 -7728 UBE4A ubiquitination factor E4A (UFD2 homolog, yeast) 1672086 1 1 1 0 0 0 0 1 0 0 0.61 1.00 -7729 DPYD dihydropyrimidine dehydrogenase 1607190 1 1 1 0 0 0 0 1 0 0 0.61 1.00 -7730 BRWD3 bromodomain and WD repeat domain containing 3 2758587 3 3 3 0 1 1 0 1 0 0 0.61 1.00 -7731 FLRT3 fibronectin leucine rich transmembrane protein 3 990678 1 1 1 0 0 0 0 0 1 0 0.61 1.00 -7732 KRT6A keratin 6A 877617 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7733 AP3B1 adaptor-related protein complex 3, beta 1 subunit 1720251 1 1 1 2 0 0 0 1 0 0 0.61 1.00 -7734 SIPA1L2 signal-induced proliferation-associated 1 like 2 2612571 2 2 2 3 1 0 1 0 0 0 0.61 1.00 -7735 FBXO10 F-box protein 10 1421628 1 1 1 1 0 0 1 0 0 0 0.61 1.00 -7736 CNOT1 CCR4-NOT transcription complex, subunit 1 3487653 3 3 3 4 0 0 2 0 1 0 0.61 1.00 -7737 CRIM1 cysteine rich transmembrane BMP regulator 1 (chordin-like) 1441908 1 1 1 0 0 0 0 0 1 0 0.61 1.00 -7738 EXOC5 exocyst complex component 5 964821 1 1 1 1 0 0 0 1 0 0 0.61 1.00 -7739 FOXP2 forkhead box P2 1171677 1 1 1 0 0 1 0 0 0 0 0.61 1.00 -7740 WDR66 WD repeat domain 66 1791738 2 2 2 1 0 2 0 0 0 0 0.62 1.00 -7741 RNF169 ring finger protein 169 834015 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7742 TRIOBP TRIO and F-actin binding protein 2240433 2 2 2 2 1 1 0 0 0 0 0.62 1.00 -7743 SLC7A14 solute carrier family 7 (cationic amino acid transporter, y+ system), member 14 1188408 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -7744 GLB1 galactosidase, beta 1 1047462 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7745 PALMD palmdelphin 855816 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -7746 TTK TTK protein kinase 1347606 1 1 1 0 0 0 0 1 0 0 0.62 1.00 -7747 FAM13C 919698 1 1 1 0 0 0 0 0 1 0 0.62 1.00 -7748 SEMA4G sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4G 1252290 1 1 1 0 0 0 0 1 0 0 0.62 1.00 -7749 ORC2L origin recognition complex, subunit 2-like (yeast) 911586 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -7750 SLC44A1 solute carrier family 44, member 1 981552 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7751 TMEM63C transmembrane protein 63C 1031238 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7752 PPIP5K1 836043 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -7753 SLC12A1 solute carrier family 12 (sodium/potassium/chloride transporters), member 1 1724814 1 1 1 0 0 0 0 0 1 0 0.62 1.00 -7754 UBE2O ubiquitin-conjugating enzyme E2O 1692873 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -7755 AMBRA1 autophagy/beclin-1 regulator 1 1875393 2 2 2 1 1 0 1 0 0 0 0.62 1.00 -7756 HELB helicase (DNA) B 1605162 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -7757 ZC3H6 zinc finger CCCH-type containing 6 1713660 1 1 1 0 0 0 0 0 1 0 0.62 1.00 -7758 PGBD4 piggyBac transposable element derived 4 887757 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -7759 LMTK2 lemur tyrosine kinase 2 2244489 2 2 2 1 0 1 1 0 0 0 0.62 1.00 -7760 XPO4 exportin 4 1712646 1 1 1 1 0 0 0 0 1 0 0.62 1.00 -7761 UBE3A ubiquitin protein ligase E3A (human papilloma virus E6-associated protein, Angelman syndrome) 1366872 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7762 UVRAG UV radiation resistance associated gene 1000818 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -7763 SEC24A SEC24 related gene family, member A (S. cerevisiae) 1705041 1 1 1 2 0 0 0 0 1 0 0.62 1.00 -7764 NBEA neurobeachin 4268940 4 4 4 1 1 1 0 0 2 0 0.62 1.00 -7765 BBS7 Bardet-Biedl syndrome 7 1130103 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -7766 C17orf66 chromosome 17 open reading frame 66 898911 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7767 FAM59A family with sequence similarity 59, member A 1263951 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -7768 CTAGE5 CTAGE family, member 5 1254825 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -7769 AGPS alkylglycerone phosphate synthase 909051 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -7770 CRY1 cryptochrome 1 (photolyase-like) 835029 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -7771 ME3 malic enzyme 3, NADP(+)-dependent, mitochondrial 906009 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -7772 IQUB IQ motif and ubiquitin domain containing 1228968 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -7773 PLCL1 phospholipase C-like 1 1555476 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -7774 PIK3AP1 phosphoinositide-3-kinase adaptor protein 1 1251783 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -7775 C11orf41 chromosome 11 open reading frame 41 2829060 3 3 3 1 2 0 0 1 0 0 0.62 1.00 -7776 PIGG phosphatidylinositol glycan anchor biosynthesis, class G 1427712 1 1 1 0 0 0 0 1 0 0 0.62 1.00 -7777 VPS33A vacuolar protein sorting 33 homolog A (S. cerevisiae) 917670 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7778 TGM4 transglutaminase 4 (prostate) 1070277 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -7779 LRP8 low density lipoprotein receptor-related protein 8, apolipoprotein e receptor 1234038 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7780 SMARCAL1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a-like 1 1431768 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -7781 THRAP3 thyroid hormone receptor associated protein 3 1474356 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -7782 KCNH8 potassium voltage-gated channel, subfamily H (eag-related), member 8 1717716 1 1 1 0 0 0 0 0 1 0 0.62 1.00 -7783 ABTB2 ankyrin repeat and BTB (POZ) domain containing 2 926289 1 1 1 1 0 1 0 0 0 0 0.62 1.00 -7784 SLC9A2 solute carrier family 9 (sodium/hydrogen exchanger), member 2 1152411 1 1 1 2 0 0 1 0 0 0 0.62 1.00 -7785 RRN3 RRN3 RNA polymerase I transcription factor homolog (S. cerevisiae) 981045 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7786 PTK2 PTK2 protein tyrosine kinase 2 1674621 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -7787 DNAJC10 DnaJ (Hsp40) homolog, subfamily C, member 10 1252290 1 1 1 0 0 1 0 0 0 0 0.62 1.00 -7788 IFIH1 interferon induced with helicase C domain 1 1592994 1 1 1 0 0 0 0 1 0 0 0.62 1.00 -7789 MYO1B myosin IB 1790217 2 2 2 0 1 1 0 0 0 0 0.62 1.00 -7790 SRGAP3 SLIT-ROBO Rho GTPase activating protein 3 1593501 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7791 GRIA2 glutamate receptor, ionotropic, AMPA 2 1435317 1 1 1 1 1 0 0 0 0 0 0.62 1.00 -7792 FBXW7 F-box and WD repeat domain containing 7 1310088 1 1 1 0 0 0 1 0 0 0 0.62 1.00 -7793 PKP2 plakophilin 2 1254825 1 1 1 0 1 0 0 0 0 0 0.62 1.00 -7794 CCDC52 coiled-coil domain containing 52 1336452 1 1 1 0 0 0 0 1 0 0 0.62 1.00 -7795 KRIT1 KRIT1, ankyrin repeat containing 1153425 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -7796 TBC1D14 TBC1 domain family, member 14 1081938 1 1 1 1 0 0 1 0 0 0 0.63 1.00 -7797 PRSS36 protease, serine, 36 951639 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -7798 DDHD2 DDHD domain containing 2 1140243 1 1 1 0 0 0 0 1 0 0 0.63 1.00 -7799 SCAPER S phase cyclin A-associated protein in the ER 2076672 2 2 2 0 0 1 1 0 0 0 0.63 1.00 -7800 SAP130 Sin3A-associated protein, 130kDa 1597557 1 1 1 1 0 0 0 0 1 0 0.63 1.00 -7801 NCBP1 nuclear cap binding protein subunit 1, 80kDa 1230489 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -7802 TYW1 tRNA-yW synthesizing protein 1 homolog (S. cerevisiae) 1143285 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -7803 WDR60 WD repeat domain 60 1488045 1 1 1 3 0 0 1 0 0 0 0.63 1.00 -7804 CSMD3 CUB and Sushi multiple domains 3 5815290 6 6 6 2 0 3 2 0 1 0 0.63 1.00 -7805 RDX radixin 914628 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -7806 NDST3 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 3 1355718 1 1 1 1 0 1 0 0 0 0 0.63 1.00 -7807 TLE4 transducin-like enhancer of split 4 (E(sp1) homolog, Drosophila) 1193478 1 1 1 1 0 1 0 0 0 0 0.63 1.00 -7808 SIPA1L3 signal-induced proliferation-associated 1 like 3 2331693 2 2 2 1 1 1 0 0 0 0 0.63 1.00 -7809 ZNF333 zinc finger protein 333 1035294 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -7810 ADAM12 ADAM metallopeptidase domain 12 (meltrin alpha) 1352169 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -7811 ADAMTS2 ADAM metallopeptidase with thrombospondin type 1 motif, 2 1188408 1 1 1 4 0 1 0 0 0 0 0.63 1.00 -7812 FILIP1 filamin A interacting protein 1 1856634 2 2 2 1 0 0 2 0 0 0 0.63 1.00 -7813 DISP2 dispatched homolog 2 (Drosophila) 1857141 2 2 2 3 1 0 0 0 1 0 0.63 1.00 -7814 ASNSD1 asparagine synthetase domain containing 1 985608 1 1 1 1 0 1 0 0 0 0 0.63 1.00 -7815 NTRK2 neurotrophic tyrosine kinase, receptor, type 2 1350141 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -7816 NFKBIZ nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, zeta 969384 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -7817 SP110 SP110 nuclear body protein 1155453 2 1 2 0 1 1 0 0 0 0 0.63 1.00 -7818 RBL2 retinoblastoma-like 2 (p130) 1649778 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -7819 KIF5A kinesin family member 5A 1627977 1 1 1 1 0 1 0 0 0 0 0.63 1.00 -7820 GPATCH1 G patch domain containing 1 1419093 1 1 1 2 0 0 1 0 0 0 0.63 1.00 -7821 RSBN1 round spermatid basic protein 1 1097655 1 1 1 2 0 0 1 0 0 0 0.63 1.00 -7822 PTPRM protein tyrosine phosphatase, receptor type, M 2160327 2 2 2 1 0 1 0 0 1 0 0.63 1.00 -7823 MCPH1 microcephalin 1 1290822 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -7824 IKBKAP inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein 2100501 3 2 3 0 0 2 1 0 0 0 0.63 1.00 -7825 PARP1 poly (ADP-ribose) polymerase family, member 1 1527591 1 1 1 1 0 0 0 1 0 0 0.63 1.00 -7826 ANO10 1017549 1 1 1 0 0 0 0 1 0 0 0.63 1.00 -7827 GOLGA4 golgi autoantigen, golgin subfamily a, 4 3422250 4 3 4 0 0 1 1 0 0 2 0.63 1.00 -7828 CHL1 cell adhesion molecule with homology to L1CAM (close homolog of L1) 1915953 2 2 2 1 2 0 0 0 0 0 0.63 1.00 -7829 RSPH4A 1102725 1 1 1 0 0 0 0 0 1 0 0.63 1.00 -7830 GGA3 golgi associated, gamma adaptin ear containing, ARF binding protein 3 1012479 1 1 1 1 0 1 0 0 0 0 0.63 1.00 -7831 DDX42 DEAD (Asp-Glu-Ala-Asp) box polypeptide 42 1462695 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -7832 GAB2 GRB2-associated binding protein 2 1009944 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -7833 SAMHD1 SAM domain and HD domain 1 986115 1 1 1 0 0 0 1 0 0 0 0.63 1.00 -7834 DDX26B DEAD/H (Asp-Glu-Ala-Asp/His) box polypeptide 26B 1318200 1 1 1 1 0 0 1 0 0 0 0.63 1.00 -7835 EML2 echinoderm microtubule associated protein like 2 1004874 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -7836 SPINK5 serine peptidase inhibitor, Kazal type 5 1740531 1 1 1 2 0 1 0 0 0 0 0.63 1.00 -7837 POLQ polymerase (DNA directed), theta 3955614 4 4 4 0 0 3 0 0 1 0 0.63 1.00 -7838 RABGAP1L RAB GTPase activating protein 1-like 1340001 1 1 1 0 0 0 0 1 0 0 0.63 1.00 -7839 NYNRIN 2861001 3 3 3 2 1 1 1 0 0 0 0.63 1.00 -7840 USP35 ubiquitin specific peptidase 35 1217307 1 1 1 0 0 1 0 0 0 0 0.63 1.00 -7841 DDX41 DEAD (Asp-Glu-Ala-Asp) box polypeptide 41 897897 1 1 1 0 1 0 0 0 0 0 0.63 1.00 -7842 SALL2 sal-like 2 (Drosophila) 1537224 1 1 1 1 0 1 0 0 0 0 0.64 1.00 -7843 ZNF224 zinc finger protein 224 1084980 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -7844 SLIT2 slit homolog 2 (Drosophila) 2244996 2 2 2 1 1 0 0 0 1 0 0.64 1.00 -7845 SMG5 Smg-5 homolog, nonsense mediated mRNA decay factor (C. elegans) 1542801 1 1 1 0 0 0 0 1 0 0 0.64 1.00 -7846 TNRC6C trinucleotide repeat containing 6C 2175537 2 2 2 1 0 2 0 0 0 0 0.64 1.00 -7847 KIAA0754 1996566 2 2 2 0 0 0 0 2 0 0 0.64 1.00 -7848 TRPA1 transient receptor potential cation channel, subfamily A, member 1 1758276 1 1 1 0 0 0 0 0 1 0 0.64 1.00 -7849 ATMIN ATM interactor 1089036 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -7850 CDC23 cell division cycle 23 homolog (S. cerevisiae) 942006 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -7851 ACTN3 actinin, alpha 3 1050504 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -7852 CACNA1B calcium channel, voltage-dependent, N type, alpha 1B subunit 2647047 1 1 1 0 0 0 0 0 1 0 0.64 1.00 -7853 ALDH1L1 aldehyde dehydrogenase 1 family, member L1 1259388 1 1 1 2 0 0 1 0 0 0 0.64 1.00 -7854 PRKCH protein kinase C, eta 977496 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -7855 HYDIN hydrocephalus inducing homolog (mouse) 7967505 8 8 8 2 4 0 2 1 1 0 0.64 1.00 -7856 TEC tec protein tyrosine kinase 995748 1 1 1 1 0 0 0 1 0 0 0.64 1.00 -7857 SETD5 SET domain containing 5 2191254 2 2 2 0 1 0 0 1 0 0 0.64 1.00 -7858 HEATR4 HEAT repeat containing 4 1523028 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -7859 FBXO34 F-box protein 34 1084980 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -7860 FASTKD2 FAST kinase domains 2 1103739 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -7861 EPHB2 EPH receptor B2 1481454 1 1 1 1 1 0 0 0 0 0 0.64 1.00 -7862 OS9 1005381 1 1 1 1 0 1 0 0 0 0 0.64 1.00 -7863 DCLK3 doublecortin-like kinase 3 995241 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -7864 SEMA3C sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C 1178268 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -7865 C13orf23 chromosome 13 open reading frame 23 1463709 1 1 1 1 0 1 0 0 0 0 0.64 1.00 -7866 ZNF616 zinc finger protein 616 1195506 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -7867 DNAH7 dynein, axonemal, heavy chain 7 6244212 8 7 8 0 0 1 6 1 0 0 0.64 1.00 -7868 GEMIN4 gem (nuclear organelle) associated protein 4 1116414 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -7869 DIS3 DIS3 mitotic control homolog (S. cerevisiae) 1383603 1 1 1 1 0 0 1 0 0 0 0.64 1.00 -7870 USP8 ubiquitin specific peptidase 8 1740531 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -7871 IGSF10 immunoglobulin superfamily, member 10 4003272 4 4 4 0 1 1 2 0 0 0 0.64 1.00 -7872 SHROOM3 shroom family member 3 2453880 3 2 3 0 1 2 0 0 0 0 0.64 1.00 -7873 ZNF609 zinc finger protein 609 2163876 2 2 2 2 0 1 1 0 0 0 0.64 1.00 -7874 FOXJ3 forkhead box J3 971919 1 1 1 0 0 0 1 0 0 0 0.64 1.00 -7875 ANKRD30A ankyrin repeat domain 30A 1938261 2 2 2 1 1 0 1 0 0 0 0.64 1.00 -7876 NEK1 NIMA (never in mitosis gene a)-related kinase 1 1744587 1 1 1 1 0 1 0 0 0 0 0.64 1.00 -7877 PHF14 PHD finger protein 14 1352169 1 1 1 1 0 0 1 0 0 0 0.64 1.00 -7878 PDZRN4 PDZ domain containing RING finger 4 1304004 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -7879 PITPNM2 phosphatidylinositol transfer protein, membrane-associated 2 1434303 1 1 1 0 1 0 0 0 0 0 0.64 1.00 -7880 GABBR2 gamma-aminobutyric acid (GABA) B receptor, 2 1220349 1 1 1 3 0 0 1 0 0 0 0.64 1.00 -7881 C10orf79 chromosome 10 open reading frame 79 2576067 2 2 2 0 0 1 0 0 1 0 0.64 1.00 -7882 SEL1L2 sel-1 suppressor of lin-12-like 2 (C. elegans) 1088529 1 1 1 0 0 1 0 0 0 0 0.64 1.00 -7883 SENP7 SUMO1/sentrin specific peptidase 7 1647243 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7884 PEX1 peroxisome biogenesis factor 1 1934205 2 2 2 0 0 2 0 0 0 0 0.65 1.00 -7885 HDAC9 histone deacetylase 9 1695408 1 1 1 0 0 0 0 0 1 0 0.65 1.00 -7886 IQSEC2 IQ motif and Sec7 domain 2 1375998 1 1 1 2 0 0 0 1 0 0 0.65 1.00 -7887 CCDC129 coiled-coil domain containing 129 1571700 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7888 FAM135B family with sequence similarity 135, member B 2178579 2 2 2 1 1 0 0 0 1 0 0.65 1.00 -7889 CD101 1572714 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7890 MYOM1 myomesin 1, 185kDa 2467569 2 2 2 0 0 1 1 0 0 0 0.65 1.00 -7891 LNX1 ligand of numb-protein X 1 1108302 1 1 1 1 0 1 0 0 0 0 0.65 1.00 -7892 CD2AP CD2-associated protein 1005888 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7893 BMP1 bone morphogenetic protein 1 1365351 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -7894 KIF18A kinesin family member 18A 1399827 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -7895 ENTHD1 ENTH domain containing 1 936936 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -7896 JAK1 Janus kinase 1 (a protein tyrosine kinase) 1804920 1 1 1 0 0 0 0 1 0 0 0.65 1.00 -7897 HAUS6 1488552 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7898 CBFA2T2 core-binding factor, runt domain, alpha subunit 2; translocated to, 2 942513 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -7899 RPAP1 RNA polymerase II associated protein 1 2022930 2 2 2 1 0 1 0 0 1 0 0.65 1.00 -7900 USP25 ubiquitin specific peptidase 25 1630005 1 1 1 0 0 0 0 1 0 0 0.65 1.00 -7901 HCN1 hyperpolarization activated cyclic nucleotide-gated potassium channel 1 1089543 1 1 1 1 0 0 1 0 0 0 0.65 1.00 -7902 ZNF99 zinc finger protein 99 1593501 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -7903 PYGL phosphorylase, glycogen; liver (Hers disease, glycogen storage disease type VI) 1250262 1 1 1 0 0 0 0 1 0 0 0.65 1.00 -7904 CHD5 chromodomain helicase DNA binding protein 5 2154243 2 2 2 2 1 1 0 0 0 0 0.65 1.00 -7905 EIF4ENIF1 eukaryotic translation initiation factor 4E nuclear import factor 1 1537731 1 1 1 1 0 0 1 0 0 0 0.65 1.00 -7906 MCM3 minichromosome maintenance complex component 3 1223391 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -7907 LRGUK leucine-rich repeats and guanylate kinase domain containing 1296906 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -7908 AP1G1 adaptor-related protein complex 1, gamma 1 subunit 1297413 1 1 1 1 1 0 0 0 0 0 0.65 1.00 -7909 C8orf80 chromosome 8 open reading frame 80 1022619 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7910 PKD2L2 polycystic kidney disease 2-like 2 944541 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -7911 KCNMA1 potassium large conductance calcium-activated channel, subfamily M, alpha member 1 1677156 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7912 TF transferrin 1073826 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7913 SLC28A2 solute carrier family 28 (sodium-coupled nucleoside transporter), member 2 1036815 1 1 1 0 0 0 0 0 1 0 0.65 1.00 -7914 UBN1 ubinuclein 1 1753206 1 1 1 2 0 1 0 0 0 0 0.65 1.00 -7915 PPP2R5D protein phosphatase 2, regulatory subunit B', delta isoform 940992 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -7916 METTL13 1044927 1 1 1 1 0 0 0 0 1 0 0.65 1.00 -7917 ZP2 zona pellucida glycoprotein 2 (sperm receptor) 1173198 1 1 1 1 0 0 0 1 0 0 0.65 1.00 -7918 KIAA0319L KIAA0319-like 1637610 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -7919 KLHL5 kelch-like 5 (Drosophila) 1172184 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -7920 CROT carnitine O-octanoyltransferase 964821 1 1 1 1 0 0 1 0 0 0 0.65 1.00 -7921 DTL denticleless homolog (Drosophila) 1142271 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7922 EPHB3 EPH receptor B3 1486524 1 1 1 1 0 0 1 0 0 0 0.65 1.00 -7923 HDAC6 histone deacetylase 6 1905306 2 2 2 2 0 1 1 0 0 0 0.65 1.00 -7924 RPA1 replication protein A1, 70kDa 895362 1 1 1 0 0 1 0 0 0 0 0.65 1.00 -7925 SLC5A12 solute carrier family 5 (sodium/glucose cotransporter), member 12 971919 1 1 1 1 0 1 0 0 0 0 0.65 1.00 -7926 INTS5 integrator complex subunit 5 1512888 2 1 2 0 0 1 1 0 0 0 0.65 1.00 -7927 NCOA5 nuclear receptor coactivator 5 896376 1 1 1 1 1 0 0 0 0 0 0.65 1.00 -7928 KIAA0467 KIAA0467 3850665 3 3 3 2 0 0 1 0 2 0 0.65 1.00 -7929 CLCN4 chloride channel 4 1179282 1 1 1 1 0 0 0 1 0 0 0.65 1.00 -7930 UNC13B unc-13 homolog B (C. elegans) 2487342 2 2 2 2 1 1 0 0 0 0 0.65 1.00 -7931 PLEKHG4 pleckstrin homology domain containing, family G (with RhoGef domain) member 4 1726335 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -7932 ZNF431 zinc finger protein 431 887757 1 1 1 0 1 0 0 0 0 0 0.65 1.00 -7933 ATF6 activating transcription factor 6 1053039 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7934 INPPL1 inositol polyphosphate phosphatase-like 1 1686282 1 1 1 2 0 0 0 0 1 0 0.65 1.00 -7935 LRRFIP2 leucine rich repeat (in FLII) interacting protein 2 1143792 1 1 1 0 0 0 1 0 0 0 0.65 1.00 -7936 CNGB3 cyclic nucleotide gated channel beta 3 1268514 1 1 1 1 0 1 0 0 0 0 0.66 1.00 -7937 PMS2 PMS2 postmeiotic segregation increased 2 (S. cerevisiae) 1339494 1 1 1 1 0 0 1 0 0 0 0.66 1.00 -7938 FNDC3B fibronectin type III domain containing 3B 1883505 1 1 1 0 0 0 0 1 0 0 0.66 1.00 -7939 ESF1 ESF1, nucleolar pre-rRNA processing protein, homolog (S. cerevisiae) 1322256 1 1 1 0 0 0 0 1 0 0 0.66 1.00 -7940 BTBD9 BTB (POZ) domain containing 9 956709 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -7941 ITGA4 integrin, alpha 4 (antigen CD49D, alpha 4 subunit of VLA-4 receptor) 1517958 1 1 1 0 0 0 0 1 0 0 0.66 1.00 -7942 ESRP1 1067742 1 1 1 2 0 0 0 1 0 0 0.66 1.00 -7943 USP45 ubiquitin specific peptidase 45 1274091 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -7944 KIAA1109 KIAA1109 7784478 8 8 8 0 2 4 1 1 0 0 0.66 1.00 -7945 SV2B synaptic vesicle glycoprotein 2B 1064700 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -7946 EPHB4 EPH receptor B4 1176240 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -7947 CHD7 chromodomain helicase DNA binding protein 7 4537650 4 4 4 1 0 1 2 0 1 0 0.66 1.00 -7948 ARHGEF6 Rac/Cdc42 guanine nucleotide exchange factor (GEF) 6 1226433 1 1 1 1 0 1 0 0 0 0 0.66 1.00 -7949 DENND2C DENN/MADD domain containing 2C 1360788 1 1 1 1 0 1 0 0 0 0 0.66 1.00 -7950 SLC26A3 solute carrier family 26, member 3 1204125 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -7951 ROBO1 roundabout, axon guidance receptor, homolog 1 (Drosophila) 2515734 2 2 2 2 0 1 1 0 0 0 0.66 1.00 -7952 HYOU1 hypoxia up-regulated 1 1571700 1 1 1 1 0 1 0 0 0 0 0.66 1.00 -7953 AUTS2 autism susceptibility candidate 2 1553448 1 1 1 1 1 0 0 0 0 0 0.66 1.00 -7954 NES nestin 2060448 3 2 3 2 0 2 1 0 0 0 0.66 1.00 -7955 NPAS2 neuronal PAS domain protein 2 1271049 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -7956 WDR35 WD repeat domain 35 1840410 1 1 1 0 0 0 0 0 1 0 0.66 1.00 -7957 PC pyruvate carboxylase 1576770 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -7958 SH3TC2 SH3 domain and tetratricopeptide repeats 2 1979835 2 2 2 0 0 1 0 0 1 0 0.66 1.00 -7959 SULF1 sulfatase 1 1364844 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -7960 CCNF cyclin F 1079910 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -7961 CCHCR1 coiled-coil alpha-helical rod protein 1 1362816 1 1 1 0 0 0 0 1 0 0 0.66 1.00 -7962 DDX60L DEAD (Asp-Glu-Ala-Asp) box polypeptide 60-like 2623218 2 2 2 0 0 1 0 1 0 0 0.66 1.00 -7963 TNFAIP3 tumor necrosis factor, alpha-induced protein 3 1219335 1 1 1 3 1 0 0 0 0 0 0.66 1.00 -7964 ABCC9 ATP-binding cassette, sub-family C (CFTR/MRP), member 9 2506608 3 2 3 1 0 0 0 1 2 0 0.66 1.00 -7965 FAM13B 1471314 1 1 1 0 0 0 0 1 0 0 0.66 1.00 -7966 GALNT3 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 3 (GalNAc-T3) 984594 1 1 1 0 0 1 0 0 0 0 0.66 1.00 -7967 CNST 1132131 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -7968 CAPN6 calpain 6 1000818 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -7969 NAV1 neuron navigator 1 2579109 2 2 2 0 0 2 0 0 0 0 0.66 1.00 -7970 NLGN4X neuroligin 4, X-linked 1252290 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -7971 CALD1 caldesmon 1 1202604 2 1 2 1 0 1 0 1 0 0 0.66 1.00 -7972 GPR98 G protein-coupled receptor 98 9718176 9 9 9 1 3 1 2 1 2 0 0.66 1.00 -7973 MCM10 minichromosome maintenance complex component 10 1370928 1 1 1 1 0 0 1 0 0 0 0.66 1.00 -7974 ADAM30 ADAM metallopeptidase domain 30 1205139 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -7975 AKAP6 A kinase (PRKA) anchor protein 6 3553056 3 3 3 1 0 1 2 0 0 0 0.66 1.00 -7976 MEI1 meiosis inhibitor 1 1737489 1 1 1 0 0 0 1 0 0 0 0.66 1.00 -7977 PLCB3 phospholipase C, beta 3 (phosphatidylinositol-specific) 1492101 1 1 1 1 1 0 0 0 0 0 0.66 1.00 -7978 DAGLA diacylglycerol lipase, alpha 1558518 1 1 1 2 0 0 1 0 0 0 0.66 1.00 -7979 ATRNL1 attractin-like 1 2007213 2 2 2 0 1 0 1 0 0 0 0.66 1.00 -7980 SBF1 SET binding factor 1 1940796 1 1 1 0 0 0 0 0 1 0 0.66 1.00 -7981 PARD3B par-3 partitioning defective 3 homolog B (C. elegans) 1760304 1 1 1 0 0 0 0 0 1 0 0.66 1.00 -7982 ZNF780A zinc finger protein 780A 979524 1 1 1 0 1 0 0 0 0 0 0.66 1.00 -7983 CP110 1535196 1 1 1 2 0 0 1 0 0 0 0.66 1.00 -7984 KSR2 kinase suppressor of ras 2 1407939 1 1 1 1 0 1 0 0 0 0 0.66 1.00 -7985 ATP2B2 ATPase, Ca++ transporting, plasma membrane 2 1932684 4 1 4 2 0 0 0 0 0 4 0.67 1.00 -7986 GRM4 glutamate receptor, metabotropic 4 1344057 1 1 1 2 0 1 0 0 0 0 0.67 1.00 -7987 PCDHGA5 protocadherin gamma subfamily A, 5 1424163 1 1 1 1 0 1 0 0 0 0 0.67 1.00 -7988 DHX40 DEAH (Asp-Glu-Ala-His) box polypeptide 40 1048476 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -7989 MYH13 myosin, heavy chain 13, skeletal muscle 2803710 2 2 2 4 1 1 0 0 0 0 0.67 1.00 -7990 BTBD12 BTB (POZ) domain containing 12 2420925 2 2 2 1 0 1 0 1 0 0 0.67 1.00 -7991 EPB41 erythrocyte membrane protein band 4.1 (elliptocytosis 1, RH-linked) 1330368 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -7992 UPF1 UPF1 regulator of nonsense transcripts homolog (yeast) 1320228 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -7993 TEX14 testis expressed 14 2334228 2 2 2 1 0 2 0 0 0 0 0.67 1.00 -7994 IFT80 intraflagellar transport 80 homolog (Chlamydomonas) 1221870 1 1 1 2 0 0 1 0 0 0 0.67 1.00 -7995 OVGP1 oviductal glycoprotein 1, 120kDa (mucin 9, oviductin) 1055067 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -7996 BRD7 bromodomain containing 7 1000818 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -7997 PIWIL4 piwi-like 4 (Drosophila) 1313637 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -7998 TET2 tet oncogene family member 2 1775514 1 1 1 1 0 1 0 0 0 0 0.67 1.00 -7999 OAS3 2'-5'-oligoadenylate synthetase 3, 100kDa 1558011 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -8000 FAM161A 1017549 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -8001 HHIPL2 HHIP-like 2 1120977 1 1 1 1 0 1 0 0 0 0 0.67 1.00 -8002 KIAA0802 KIAA0802 2251587 2 2 2 1 1 1 0 0 0 0 0.67 1.00 -8003 MANBA mannosidase, beta A, lysosomal 1281189 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -8004 KLKB1 kallikrein B, plasma (Fletcher factor) 1 1000311 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -8005 CDH26 cadherin-like 26 1314651 1 1 1 1 0 1 0 0 0 0 0.67 1.00 -8006 SEC24D SEC24 related gene family, member D (S. cerevisiae) 1615809 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -8007 ZAK 1452048 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -8008 PLEKHG6 pleckstrin homology domain containing, family G (with RhoGef domain) member 6 1049997 1 1 1 1 0 1 0 0 0 0 0.67 1.00 -8009 KCTD19 potassium channel tetramerisation domain containing 19 1434303 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -8010 TOP1 topoisomerase (DNA) I 1174212 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -8011 DIAPH3 diaphanous homolog 3 (Drosophila) 1785654 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -8012 CDH13 cadherin 13, H-cadherin (heart) 1083459 1 1 1 1 0 0 1 0 0 0 0.67 1.00 -8013 PCDHA2 protocadherin alpha 2 1483482 1 1 1 2 1 0 0 0 0 0 0.67 1.00 -8014 SIK2 1365858 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -8015 ZNF142 zinc finger protein 142 2558322 2 2 2 1 0 0 1 0 1 0 0.67 1.00 -8016 PDE10A phosphodiesterase 10A 1230996 1 1 1 1 1 0 0 0 0 0 0.67 1.00 -8017 FBXW10 F-box and WD repeat domain containing 10 1628484 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -8018 DOCK3 dedicator of cytokinesis 3 2885337 2 2 2 0 0 1 0 0 1 0 0.67 1.00 -8019 NFKB1 nuclear factor of kappa light polypeptide gene enhancer in B-cells 1 (p105) 1522014 1 1 1 0 0 1 0 0 0 0 0.67 1.00 -8020 DARS2 aspartyl-tRNA synthetase 2, mitochondrial 1017042 1 1 1 0 0 0 1 0 0 0 0.67 1.00 -8021 WDR63 WD repeat domain 63 1401348 1 1 1 0 1 0 0 0 0 0 0.67 1.00 -8022 RGNEF 2264262 3 2 3 0 0 0 1 2 0 0 0.67 1.00 -8023 CATSPERB cation channel, sperm-associated, beta 1751685 1 1 1 0 0 0 0 1 0 0 0.67 1.00 -8024 SP1 Sp1 transcription factor 1202097 1 1 1 1 0 0 1 0 0 0 0.67 1.00 -8025 BICD2 bicaudal D homolog 2 (Drosophila) 1041378 1 1 1 1 0 1 0 0 0 0 0.68 1.00 -8026 PAN2 PAN2 polyA specific ribonuclease subunit homolog (S. cerevisiae) 1880463 1 1 1 1 0 0 0 0 1 0 0.68 1.00 -8027 FILIP1L filamin A interacting protein 1-like 1748643 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -8028 SBNO1 strawberry notch homolog 1 (Drosophila) 2183142 2 2 2 1 1 0 0 1 0 0 0.68 1.00 -8029 LTBP1 latent transforming growth factor beta binding protein 1 2463513 2 2 2 1 0 0 1 1 0 0 0.68 1.00 -8030 LRRC36 leucine rich repeat containing 36 1153425 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -8031 MTMR6 myotubularin related protein 6 960258 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -8032 A1CF APOBEC1 complementation factor 991692 1 1 1 1 1 0 0 0 0 0 0.68 1.00 -8033 AGTPBP1 ATP/GTP binding protein 1 1837875 1 1 1 0 0 0 0 0 1 0 0.68 1.00 -8034 TIPARP TCDD-inducible poly(ADP-ribose) polymerase 1010958 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -8035 DAAM1 dishevelled associated activator of morphogenesis 1 1691859 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -8036 PHLDB2 pleckstrin homology-like domain, family B, member 2 1917474 1 1 1 0 0 0 0 1 0 0 0.68 1.00 -8037 NCL nucleolin 1098669 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -8038 C10orf28 chromosome 10 open reading frame 28 1197027 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -8039 TAX1BP1 Tax1 (human T-cell leukemia virus type I) binding protein 1 1234038 1 1 1 1 0 0 1 0 0 0 0.68 1.00 -8040 XPNPEP1 X-prolyl aminopeptidase (aminopeptidase P) 1, soluble 991692 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -8041 SEC16B SEC16 homolog B (S. cerevisiae) 1469286 1 1 1 1 0 0 0 1 0 0 0.68 1.00 -8042 DOPEY1 dopey family member 1 3825822 3 3 3 1 0 1 1 0 1 0 0.68 1.00 -8043 ZKSCAN2 zinc finger with KRAB and SCAN domains 2 1486524 1 1 1 1 1 0 0 0 0 0 0.68 1.00 -8044 KDR kinase insert domain receptor (a type III receptor tyrosine kinase) 2088840 2 2 2 3 0 2 0 0 0 0 0.68 1.00 -8045 PADI3 peptidyl arginine deiminase, type III 1042899 1 1 1 1 0 0 1 0 0 0 0.68 1.00 -8046 TRPV4 transient receptor potential cation channel, subfamily V, member 4 1275612 1 1 1 1 1 0 0 0 0 0 0.68 1.00 -8047 GCN1L1 GCN1 general control of amino-acid synthesis 1-like 1 (yeast) 4061070 4 4 4 4 1 1 1 0 1 0 0.68 1.00 -8048 NUP107 nucleoporin 107kDa 1465230 1 1 1 0 0 0 0 1 0 0 0.68 1.00 -8049 C1orf125 chromosome 1 open reading frame 125 1591473 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -8050 LRP1 low density lipoprotein-related protein 1 (alpha-2-macroglobulin receptor) 6692907 7 7 7 4 4 1 1 0 1 0 0.68 1.00 -8051 SLC5A11 solute carrier family 5 (sodium/glucose cotransporter), member 11 1058616 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -8052 ALS2CR8 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 8 1132638 1 1 1 0 0 0 1 0 0 0 0.68 1.00 -8053 LRP6 low density lipoprotein receptor-related protein 6 2479230 2 2 2 2 1 1 0 0 0 0 0.68 1.00 -8054 SMEK1 SMEK homolog 1, suppressor of mek1 (Dictyostelium) 1205139 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -8055 PEX5L peroxisomal biogenesis factor 5-like 984087 1 1 1 0 1 0 0 0 0 0 0.68 1.00 -8056 UHRF1BP1L UHRF1 (ICBP90) binding protein 1-like 2258685 2 2 2 1 1 0 1 0 0 0 0.68 1.00 -8057 TBC1D15 TBC1 domain family, member 15 1110330 1 1 1 0 0 0 0 1 0 0 0.68 1.00 -8058 ASH1L ash1 (absent, small, or homeotic)-like (Drosophila) 4564521 4 4 4 1 0 0 2 1 1 0 0.68 1.00 -8059 CYLD cylindromatosis (turban tumor syndrome) 1490073 1 1 1 0 0 1 0 0 0 0 0.68 1.00 -8060 FAM184A 1689324 1 1 1 1 0 0 0 1 0 0 0.68 1.00 -8061 TNC tenascin C (hexabrachion) 3403998 3 3 3 0 1 1 1 0 0 0 0.68 1.00 -8062 TBCK 1310595 1 1 1 1 0 1 0 0 0 0 0.68 1.00 -8063 ZNFX1 zinc finger, NFX1-type containing 1 2945163 2 2 2 2 0 2 0 0 0 0 0.68 1.00 -8064 FGD5 FYVE, RhoGEF and PH domain containing 5 1746615 1 1 1 2 0 1 0 0 0 0 0.68 1.00 -8065 EVC Ellis van Creveld syndrome 1098162 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -8066 DISC1 disrupted in schizophrenia 1 1369407 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -8067 DCHS1 dachsous 1 (Drosophila) 3643809 3 3 3 0 0 2 1 0 0 0 0.69 1.00 -8068 PRDM2 PR domain containing 2, with ZNF domain 2599896 2 2 2 1 0 1 0 0 1 0 0.69 1.00 -8069 SON SON DNA binding protein 3515538 3 3 3 0 0 0 1 1 1 0 0.69 1.00 -8070 SASH1 SAM and SH3 domain containing 1 1853085 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -8071 CDKL5 cyclin-dependent kinase-like 5 1608711 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -8072 KDM2B 1731912 1 1 1 3 0 1 0 0 0 0 0.69 1.00 -8073 RNF157 ring finger protein 157 1006395 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -8074 NAV2 neuron navigator 2 3654456 3 3 3 0 0 0 2 0 1 0 0.69 1.00 -8075 MCM2 minichromosome maintenance complex component 2 1345071 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -8076 AVIL advillin 1285752 1 1 1 0 0 0 0 1 0 0 0.69 1.00 -8077 BEST3 bestrophin 3 1035801 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -8078 FBLN1 fibulin 1 1129596 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -8079 USP7 ubiquitin specific peptidase 7 (herpes virus-associated) 1698450 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -8080 GIGYF2 GRB10 interacting GYF protein 2 1945359 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -8081 ACRC acidic repeat containing 1044927 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -8082 CTNNA1 catenin (cadherin-associated protein), alpha 1, 102kDa 1414023 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -8083 ASAP2 1415037 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -8084 INTS2 integrator complex subunit 2 1875393 1 1 1 2 0 0 0 0 1 0 0.69 1.00 -8085 NWD1 NACHT and WD repeat domain containing 1 2159313 2 2 2 4 1 0 0 1 0 0 0.69 1.00 -8086 MPHOSPH8 M-phase phosphoprotein 8 1227954 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -8087 FRMD4B FERM domain containing 4B 1500720 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -8088 UPF2 UPF2 regulator of nonsense transcripts homolog (yeast) 1978821 1 1 1 1 0 0 0 0 1 0 0.69 1.00 -8089 MDC1 mediator of DNA damage checkpoint 1 3207282 3 3 3 0 0 1 0 1 1 0 0.69 1.00 -8090 LUZP1 leucine zipper protein 1 1642173 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -8091 ATXN2L ataxin 2-like 1647243 1 1 1 4 1 0 0 0 0 0 0.69 1.00 -8092 SPG11 spastic paraplegia 11 (autosomal recessive) 3665610 3 3 3 1 0 1 1 0 1 0 0.69 1.00 -8093 ABCA12 ATP-binding cassette, sub-family A (ABC1), member 12 4071717 4 4 4 1 0 1 2 1 0 0 0.69 1.00 -8094 PPP1R12A protein phosphatase 1, regulatory (inhibitor) subunit 12A 1429740 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -8095 DAAM2 dishevelled associated activator of morphogenesis 2 1499199 1 1 1 1 0 1 0 0 0 0 0.69 1.00 -8096 CD109 CD109 molecule 2226744 2 2 2 0 0 1 1 0 0 0 0.69 1.00 -8097 VPS16 vacuolar protein sorting 16 homolog (S. cerevisiae) 1222884 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -8098 USP31 ubiquitin specific peptidase 31 1767402 1 1 1 2 1 0 0 0 0 0 0.69 1.00 -8099 FNIP1 folliculin interacting protein 1 1762839 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -8100 HERC5 hect domain and RLD 5 1469286 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -8101 MMP16 matrix metallopeptidase 16 (membrane-inserted) 1024140 1 1 1 1 0 0 1 0 0 0 0.69 1.00 -8102 RECQL5 RecQ protein-like 5 1481961 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -8103 FIGNL1 fidgetin-like 1 1028703 1 1 1 0 1 0 0 0 0 0 0.69 1.00 -8104 CDH17 cadherin 17, LI cadherin (liver-intestine) 1301469 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -8105 HSPH1 heat shock 105kDa/110kDa protein 1 1342536 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -8106 INO80 2439177 2 2 2 0 1 0 0 0 1 0 0.69 1.00 -8107 WNK4 WNK lysine deficient protein kinase 4 1738503 1 1 1 0 0 1 0 0 0 0 0.69 1.00 -8108 SLC4A10 solute carrier family 4, sodium bicarbonate transporter-like, member 10 1658904 1 1 1 0 0 0 1 0 0 0 0.69 1.00 -8109 PLXNC1 plexin C1 1908855 1 1 1 1 1 0 0 0 0 0 0.69 1.00 -8110 PFAS phosphoribosylformylglycinamidine synthase (FGAR amidotransferase) 1896687 1 1 1 1 0 1 0 0 0 0 0.69 1.00 -8111 C12orf63 chromosome 12 open reading frame 63 1874886 1 1 1 0 0 0 0 0 1 0 0.70 1.00 -8112 SLC12A2 solute carrier family 12 (sodium/potassium/chloride transporters), member 2 1514409 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -8113 GRIA4 glutamate receptor, ionotrophic, AMPA 4 1541280 1 1 1 1 0 0 1 0 0 0 0.70 1.00 -8114 CCDC21 coiled-coil domain containing 21 1130103 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -8115 COBL cordon-bleu homolog (mouse) 1917981 1 1 1 2 1 0 0 0 0 0 0.70 1.00 -8116 MORC2 MORC family CW-type zinc finger 2 1513395 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -8117 ANO3 1548378 1 1 1 1 0 1 0 0 0 0 0.70 1.00 -8118 RPGRIP1L RPGRIP1-like 1982370 1 1 1 1 0 0 0 1 0 0 0.70 1.00 -8119 KIAA1429 KIAA1429 2833623 2 2 2 0 1 0 1 0 0 0 0.70 1.00 -8120 HEATR6 HEAT repeat containing 6 1725321 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -8121 KIF3A kinesin family member 3A 1094613 1 1 1 0 0 1 0 0 0 0 0.70 1.00 -8122 PLEKHA4 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 4 1119456 1 1 1 3 0 1 0 0 0 0 0.70 1.00 -8123 GRAMD1A GRAM domain containing 1A 1069770 1 1 1 0 1 0 0 0 0 0 0.70 1.00 -8124 UBR2 ubiquitin protein ligase E3 component n-recognin 2 2741856 2 2 2 1 0 1 1 0 0 0 0.70 1.00 -8125 PCNX pecanex homolog (Drosophila) 3555591 3 3 3 0 1 1 1 0 0 0 0.70 1.00 -8126 ARHGEF2 rho/rac guanine nucleotide exchange factor (GEF) 2 1447992 1 1 1 2 0 0 1 0 0 0 0.70 1.00 -8127 POLG polymerase (DNA directed), gamma 1692873 1 1 1 1 0 1 0 0 0 0 0.70 1.00 -8128 ADAMTS9 ADAM metallopeptidase with thrombospondin type 1 motif, 9 2959359 2 2 2 0 0 1 0 0 1 0 0.70 1.00 -8129 ADAMTS16 ADAM metallopeptidase with thrombospondin type 1 motif, 16 1693887 1 1 1 5 1 0 0 0 0 0 0.70 1.00 -8130 KCTD3 potassium channel tetramerisation domain containing 3 1233531 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -8131 TOP3A topoisomerase (DNA) III alpha 1466244 1 1 1 0 0 0 0 0 1 0 0.70 1.00 -8132 MYCBP2 MYC binding protein 2 7129941 6 6 6 1 1 0 3 0 2 0 0.70 1.00 -8133 MAP3K15 mitogen-activated protein kinase kinase kinase 15 1835340 1 1 1 1 1 0 0 0 0 0 0.70 1.00 -8134 VAV3 vav 3 guanine nucleotide exchange factor 1306032 1 1 1 0 0 0 1 0 0 0 0.70 1.00 -8135 LIMK2 LIM domain kinase 2 1120977 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -8136 COPA coatomer protein complex, subunit alpha 1943838 1 1 1 0 0 0 1 0 0 0 0.71 1.00 -8137 CUL5 cullin 5 1213251 1 1 1 1 1 0 0 0 0 0 0.71 1.00 -8138 SDAD1 SDA1 domain containing 1 1089543 1 1 1 1 0 0 1 0 0 0 0.71 1.00 -8139 BCAN brevican 1362816 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -8140 CENPJ centromere protein J 2069067 2 2 2 0 0 2 0 0 0 0 0.71 1.00 -8141 FN1 fibronectin 1 3745716 3 3 3 2 0 1 1 1 0 0 0.71 1.00 -8142 RAD50 RAD50 homolog (S. cerevisiae) 2047773 1 1 1 0 0 0 0 1 0 0 0.71 1.00 -8143 PPEF2 protein phosphatase, EF-hand calcium binding domain 2 1179282 1 1 1 1 0 0 0 1 0 0 0.71 1.00 -8144 KDM4A 1662453 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -8145 NAALAD2 N-acetylated alpha-linked acidic dipeptidase 2 1165593 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -8146 DUOX2 dual oxidase 2 2097459 1 1 1 1 0 0 0 0 1 0 0.71 1.00 -8147 STAG2 stromal antigen 2 1997073 1 1 1 0 0 0 0 1 0 0 0.71 1.00 -8148 OGDHL oxoglutarate dehydrogenase-like 1523028 1 1 1 1 0 1 0 0 0 0 0.71 1.00 -8149 GPR112 G protein-coupled receptor 112 4731831 4 4 4 1 1 2 0 0 1 0 0.71 1.00 -8150 EIF4G3 eukaryotic translation initiation factor 4 gamma, 3 2443740 2 2 2 1 0 1 0 0 1 0 0.71 1.00 -8151 CCDC88A coiled-coil domain containing 88A 2867592 2 2 2 0 0 0 1 0 1 0 0.71 1.00 -8152 PCCA propionyl Coenzyme A carboxylase, alpha polypeptide 1072812 1 1 1 0 0 0 1 0 0 0 0.71 1.00 -8153 KTN1 kinectin 1 (kinesin receptor) 2157285 2 2 2 1 0 1 0 1 0 0 0.71 1.00 -8154 C9orf93 chromosome 9 open reading frame 93 2069067 1 1 1 0 0 0 0 0 1 0 0.71 1.00 -8155 RINT1 RAD50 interactor 1 1213251 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -8156 ANKRD26 ankyrin repeat domain 26 2671383 2 2 2 1 0 0 1 0 1 0 0.71 1.00 -8157 LRRC37A3 leucine rich repeat containing 37, member A3 2154243 2 2 2 0 0 1 1 0 0 0 0.71 1.00 -8158 DHX8 DEAH (Asp-Glu-Ala-His) box polypeptide 8 1903785 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -8159 IGF1R insulin-like growth factor 1 receptor 2011776 1 1 1 1 1 0 0 0 0 0 0.71 1.00 -8160 LDLR low density lipoprotein receptor (familial hypercholesterolemia) 1314144 1 1 1 3 0 1 0 0 0 0 0.71 1.00 -8161 TLK2 tousled-like kinase 2 1184859 1 1 1 0 0 0 1 0 0 0 0.71 1.00 -8162 ABCA10 ATP-binding cassette, sub-family A (ABC1), member 10 2423460 2 2 2 1 0 2 0 0 0 0 0.71 1.00 -8163 DNAH5 dynein, axonemal, heavy chain 5 7090395 7 7 7 5 3 2 2 0 0 0 0.71 1.00 -8164 CSMD2 CUB and Sushi multiple domains 2 5281419 5 5 5 1 1 3 0 1 0 0 0.71 1.00 -8165 PCDHGA4 protocadherin gamma subfamily A, 4 1432275 1 1 1 1 0 0 1 0 0 0 0.71 1.00 -8166 PROM1 prominin 1 1246713 1 1 1 0 0 0 1 0 0 0 0.71 1.00 -8167 MBTPS1 membrane-bound transcription factor peptidase, site 1 1478412 1 1 1 1 1 0 0 0 0 0 0.71 1.00 -8168 THADA thyroid adenoma associated 2877732 2 2 2 0 0 1 0 1 0 0 0.71 1.00 -8169 SEC23A Sec23 homolog A (S. cerevisiae) 1203618 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -8170 JAG1 jagged 1 (Alagille syndrome) 1706562 1 1 1 0 1 0 0 0 0 0 0.71 1.00 -8171 SDCCAG1 serologically defined colon cancer antigen 1 1705041 1 1 1 0 0 1 0 0 0 0 0.71 1.00 -8172 CCDC18 coiled-coil domain containing 18 2073123 1 1 1 2 0 0 0 0 1 0 0.71 1.00 -8173 ZFAT zinc finger and AT hook domain containing 1788696 1 1 1 0 0 0 0 0 1 0 0.71 1.00 -8174 AHNAK2 AHNAK nucleoprotein 2 8289957 8 7 8 7 0 4 1 0 1 2 0.72 1.00 -8175 POLR2A polymerase (RNA) II (DNA directed) polypeptide A, 220kDa 2983695 2 2 2 0 0 0 2 0 0 0 0.72 1.00 -8176 ADAMTSL3 ADAMTS-like 3 2632344 2 2 2 3 2 0 0 0 0 0 0.72 1.00 -8177 NUFIP2 nuclear fragile X mental retardation protein interacting protein 2 1066221 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -8178 MEGF8 multiple EGF-like-domains 8 2744898 2 2 2 2 0 1 0 0 1 0 0.72 1.00 -8179 PCDHGC4 protocadherin gamma subfamily C, 4 1487031 1 1 1 0 0 0 0 0 1 0 0.72 1.00 -8180 CDHR2 1856634 1 1 1 1 1 0 0 0 0 0 0.72 1.00 -8181 SPTBN4 spectrin, beta, non-erythrocytic 4 2070081 1 1 1 3 0 0 0 1 0 0 0.72 1.00 -8182 LAMC3 laminin, gamma 3 1912911 1 1 1 3 0 0 0 1 0 0 0.72 1.00 -8183 ZNF335 zinc finger protein 335 1948401 1 1 1 2 0 0 0 1 0 0 0.72 1.00 -8184 CUL9 3903900 3 3 3 1 1 0 2 0 0 0 0.72 1.00 -8185 THBS3 thrombospondin 3 1488552 1 1 1 2 0 0 1 0 0 0 0.72 1.00 -8186 HIVEP2 human immunodeficiency virus type I enhancer binding protein 2 3734055 3 3 3 0 1 0 0 1 1 0 0.72 1.00 -8187 PCDHA12 protocadherin alpha 12 1321242 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -8188 GRM8 glutamate receptor, metabotropic 8 1428219 1 1 1 1 0 0 0 0 1 0 0.72 1.00 -8189 HECTD2 HECT domain containing 2 1164579 1 1 1 1 0 0 1 0 0 0 0.72 1.00 -8190 MAP4K4 mitogen-activated protein kinase kinase kinase kinase 4 1874379 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -8191 ROCK2 Rho-associated, coiled-coil containing protein kinase 2 2125344 2 2 2 0 1 0 1 0 0 0 0.72 1.00 -8192 ZSWIM5 zinc finger, SWIM-type containing 5 1528605 1 1 1 1 1 0 0 0 0 0 0.72 1.00 -8193 LRRC16B leucine rich repeat containing 16B 1957020 1 1 1 0 0 0 0 1 0 0 0.72 1.00 -8194 EIF4G2 eukaryotic translation initiation factor 4 gamma, 2 1423656 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -8195 KIF5B kinesin family member 5B 1451034 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -8196 KIRREL2 kin of IRRE like 2 (Drosophila) 1115907 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -8197 SENP6 SUMO1/sentrin specific peptidase 6 1713153 1 1 1 1 0 0 1 0 0 0 0.72 1.00 -8198 TTLL4 tubulin tyrosine ligase-like family, member 4 1861704 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -8199 VPS52 vacuolar protein sorting 52 homolog (S. cerevisiae) 1108809 1 1 1 1 1 0 0 0 0 0 0.72 1.00 -8200 WNK1 WNK lysine deficient protein kinase 1 4052451 3 3 3 0 0 1 1 1 0 0 0.72 1.00 -8201 HNRNPM 1084980 1 1 1 0 1 0 0 0 0 0 0.72 1.00 -8202 NEDD4 neural precursor cell expressed, developmentally down-regulated 4 2121288 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -8203 COL9A1 collagen, type IX, alpha 1 1453062 1 1 1 1 1 0 0 0 0 0 0.72 1.00 -8204 FAM160B1 1174719 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -8205 ADAM18 ADAM metallopeptidase domain 18 1166100 1 1 1 0 0 1 0 0 0 0 0.72 1.00 -8206 YEATS2 YEATS domain containing 2 2185170 2 2 2 0 1 0 1 0 0 0 0.72 1.00 -8207 BOD1L 4290741 5 4 5 2 0 2 2 1 0 0 0.73 1.00 -8208 OTUD4 OTU domain containing 4 1577784 1 1 1 2 0 0 1 0 0 0 0.73 1.00 -8209 DNM2 dynamin 2 1258881 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -8210 MAMLD1 mastermind-like domain containing 1 1213251 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -8211 ITGA10 integrin, alpha 10 1827735 1 1 1 3 1 0 0 0 0 0 0.73 1.00 -8212 HIP1 huntingtin interacting protein 1 1524042 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -8213 REV3L REV3-like, catalytic subunit of DNA polymerase zeta (yeast) 4754646 4 4 4 0 1 0 3 0 0 0 0.73 1.00 -8214 CSDE1 cold shock domain containing E1, RNA-binding 1251783 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -8215 CARD6 caspase recruitment domain family, member 6 1584882 1 1 1 1 0 0 1 0 0 0 0.73 1.00 -8216 HERC4 hect domain and RLD 4 1657890 1 1 1 1 0 0 0 0 1 0 0.73 1.00 -8217 KIAA0564 KIAA0564 2907645 2 2 2 0 0 1 0 0 1 0 0.73 1.00 -8218 MALT1 mucosa associated lymphoid tissue lymphoma translocation gene 1 1181310 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -8219 BNC2 basonuclin 2 1683747 1 1 1 0 0 1 0 0 0 0 0.73 1.00 -8220 KIAA1409 KIAA1409 3815682 3 3 3 1 0 2 0 0 1 0 0.73 1.00 -8221 FAM91A1 family with sequence similarity 91, member A1 1286259 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -8222 SUPT16H suppressor of Ty 16 homolog (S. cerevisiae) 1646736 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -8223 AHR aryl hydrocarbon receptor 1278654 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -8224 ZFYVE26 zinc finger, FYVE domain containing 26 3860805 3 3 3 0 1 1 1 0 0 0 0.73 1.00 -8225 KCNH5 potassium voltage-gated channel, subfamily H (eag-related), member 5 1543815 1 1 1 3 1 0 0 0 0 0 0.73 1.00 -8226 ANKS1B ankyrin repeat and sterile alpha motif domain containing 1B 2098473 1 1 1 0 0 0 1 0 0 0 0.73 1.00 -8227 ESYT2 1162044 1 1 1 2 0 0 1 0 0 0 0.73 1.00 -8228 SMC2 structural maintenance of chromosomes 2 1870830 1 1 1 2 0 1 0 0 0 0 0.73 1.00 -8229 ODZ3 odz, odd Oz/ten-m homolog 3 (Drosophila) 3632148 3 3 3 2 2 1 0 0 0 0 0.73 1.00 -8230 PHC2 polyhomeotic homolog 2 (Drosophila) 1261416 1 1 1 0 0 0 0 1 0 0 0.73 1.00 -8231 AGBL1 ATP/GTP binding protein-like 1 1578798 1 1 1 1 0 1 0 0 0 0 0.73 1.00 -8232 OSBPL1A oxysterol binding protein-like 1A 1501227 1 1 1 1 0 0 0 0 1 0 0.73 1.00 -8233 NAT10 N-acetyltransferase 10 1617330 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -8234 FLG2 filaggrin family member 2 3642288 3 3 3 2 1 1 0 1 0 0 0.73 1.00 -8235 ZZZ3 zinc finger, ZZ-type containing 3 1397292 1 1 1 0 1 0 0 0 0 0 0.73 1.00 -8236 COL3A1 collagen, type III, alpha 1 (Ehlers-Danlos syndrome type IV, autosomal dominant) 2050308 1 1 1 1 0 0 0 0 1 0 0.74 1.00 -8237 ZNF318 zinc finger protein 318 3283839 3 3 3 0 1 2 0 0 0 0 0.74 1.00 -8238 NLRP8 NLR family, pyrin domain containing 8 1615809 1 1 1 1 0 0 0 1 0 0 0.74 1.00 -8239 HERC6 hect domain and RLD 6 1273584 1 1 1 0 1 0 0 0 0 0 0.74 1.00 -8240 DOCK9 dedicator of cytokinesis 9 3073941 2 2 2 1 0 1 0 1 0 0 0.74 1.00 -8241 TRANK1 3687918 3 3 3 0 1 0 2 0 0 0 0.74 1.00 -8242 TTBK2 tau tubulin kinase 2 1922037 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -8243 SPTBN1 spectrin, beta, non-erythrocytic 1 3767517 3 3 3 1 0 1 1 1 0 0 0.74 1.00 -8244 MAML2 mastermind-like 2 (Drosophila) 1402869 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -8245 CEP110 centrosomal protein 110kDa 3623022 3 3 3 0 0 2 1 0 0 0 0.74 1.00 -8246 RSF1 remodeling and spacing factor 1 2128893 1 1 1 0 0 0 0 1 0 0 0.74 1.00 -8247 RNF213 ring finger protein 213 6511401 6 6 6 3 0 2 3 0 1 0 0.74 1.00 -8248 TNIK TRAF2 and NCK interacting kinase 1958034 1 1 1 2 0 0 1 0 0 0 0.74 1.00 -8249 ZBBX zinc finger, B-box domain containing 1254825 1 1 1 2 1 0 0 0 0 0 0.74 1.00 -8250 ABCC10 ATP-binding cassette, sub-family C (CFTR/MRP), member 10 2268825 2 2 2 0 2 0 0 0 0 0 0.74 1.00 -8251 SEC63 SEC63 homolog (S. cerevisiae) 1181817 1 1 1 1 1 0 0 0 0 0 0.74 1.00 -8252 MPDZ multiple PDZ domain protein 3158610 2 2 2 1 0 0 1 0 1 0 0.74 1.00 -8253 BANK1 B-cell scaffold protein with ankyrin repeats 1 1190436 1 1 1 0 1 0 0 0 0 0 0.74 1.00 -8254 PLCH1 phospholipase C, eta 1 2566941 2 2 2 0 0 1 1 0 0 0 0.74 1.00 -8255 SLIT1 slit homolog 1 (Drosophila) 2063490 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -8256 MLL2 myeloid/lymphoid or mixed-lineage leukemia 2 7399158 6 6 6 2 1 3 1 0 1 0 0.74 1.00 -8257 WDR36 WD repeat domain 36 1494636 1 1 1 0 0 0 1 0 0 0 0.74 1.00 -8258 SSH2 slingshot homolog 2 (Drosophila) 2162355 1 1 1 0 0 0 0 1 0 0 0.74 1.00 -8259 ATAD5 ATPase family, AAA domain containing 5 2822469 2 2 2 2 0 0 2 0 0 0 0.74 1.00 -8260 NPR1 natriuretic peptide receptor A/guanylate cyclase A (atrionatriuretic peptide receptor A) 1197027 1 1 1 0 1 0 0 0 0 0 0.74 1.00 -8261 TCOF1 Treacher Collins-Franceschetti syndrome 1 2251080 1 1 1 1 0 0 0 0 1 0 0.74 1.00 -8262 ATXN7 ataxin 7 1304511 1 1 1 0 0 1 0 0 0 0 0.74 1.00 -8263 PLK4 polo-like kinase 4 (Drosophila) 1492101 1 1 1 0 0 0 1 0 0 0 0.74 1.00 -8264 PIK3C2B phosphoinositide-3-kinase, class 2, beta polypeptide 2474160 2 2 2 1 0 1 1 0 0 0 0.74 1.00 -8265 CUX2 cut-like homeobox 2 1603641 1 1 1 0 0 0 0 1 0 0 0.74 1.00 -8266 ETAA1 Ewing tumor-associated antigen 1 1307046 1 1 1 1 0 0 0 1 0 0 0.74 1.00 -8267 KIAA0753 KIAA0753 1452555 1 1 1 1 0 0 0 1 0 0 0.75 1.00 -8268 IPO9 importin 9 1548885 1 1 1 1 0 0 1 0 0 0 0.75 1.00 -8269 BAI2 brain-specific angiogenesis inhibitor 2 1278654 2 1 2 1 2 0 0 0 0 0 0.75 1.00 -8270 SMARCA5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 1558518 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -8271 BCAS3 breast carcinoma amplified sequence 3 1461681 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -8272 CLIP1 CAP-GLY domain containing linker protein 1 2220153 1 1 1 2 0 0 1 0 0 0 0.75 1.00 -8273 ATP2B4 ATPase, Ca++ transporting, plasma membrane 4 1967160 1 1 1 1 0 1 0 0 0 0 0.75 1.00 -8274 BSN bassoon (presynaptic cytomatrix protein) 5491317 4 4 4 2 0 2 0 0 2 0 0.75 1.00 -8275 PCDH17 protocadherin 17 1328340 2 1 2 1 0 0 2 0 0 0 0.75 1.00 -8276 WDFY3 WD repeat and FYVE domain containing 3 5500443 5 5 5 1 0 2 0 0 3 0 0.75 1.00 -8277 PIK3C2A phosphoinositide-3-kinase, class 2, alpha polypeptide 2630823 2 2 2 0 0 1 0 0 1 0 0.75 1.00 -8278 KIAA0586 KIAA0586 2162862 1 1 1 0 0 0 1 0 0 0 0.75 1.00 -8279 ABCC5 ATP-binding cassette, sub-family C (CFTR/MRP), member 5 2266290 1 1 1 1 0 0 0 1 0 0 0.75 1.00 -8280 PDE5A phosphodiesterase 5A, cGMP-specific 1290315 1 1 1 1 0 1 0 0 0 0 0.75 1.00 -8281 IRS4 insulin receptor substrate 4 1767402 1 1 1 0 0 0 1 0 0 0 0.75 1.00 -8282 NLRP13 NLR family, pyrin domain containing 13 1610232 1 1 1 1 0 0 1 0 0 0 0.75 1.00 -8283 DOCK8 dedicator of cytokinesis 8 3145935 2 2 2 1 0 0 1 0 1 0 0.75 1.00 -8284 BBS9 Bardet-Biedl syndrome 9 1395264 1 1 1 0 0 0 1 0 0 0 0.75 1.00 -8285 CDK13 1737489 1 1 1 0 0 1 0 0 0 0 0.75 1.00 -8286 MED14 mediator complex subunit 14 2139540 1 1 1 1 1 0 0 0 0 0 0.75 1.00 -8287 SLIT3 slit homolog 3 (Drosophila) 2157792 1 1 1 0 0 0 1 0 0 0 0.75 1.00 -8288 ZNF560 zinc finger protein 560 1218828 1 1 1 1 1 0 0 0 0 0 0.75 1.00 -8289 LRIG2 leucine-rich repeats and immunoglobulin-like domains 2 1657890 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -8290 PTPRJ protein tyrosine phosphatase, receptor type, J 2039661 1 1 1 0 0 0 1 0 0 0 0.75 1.00 -8291 TACC2 transforming, acidic coiled-coil containing protein 2 4528524 8 4 8 0 2 3 1 2 0 0 0.75 1.00 -8292 ASPM asp (abnormal spindle) homolog, microcephaly associated (Drosophila) 5326542 5 5 5 2 0 3 1 0 1 0 0.75 1.00 -8293 C10orf137 chromosome 10 open reading frame 137 1824693 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -8294 SLC26A5 solute carrier family 26, member 5 (prestin) 1190436 1 1 1 0 1 0 0 0 0 0 0.75 1.00 -8295 WDR3 WD repeat domain 3 1488552 1 1 1 1 0 0 1 0 0 0 0.75 1.00 -8296 PRUNE2 prune homolog 2 (Drosophila) 4682652 4 4 4 1 0 3 1 0 0 0 0.75 1.00 -8297 TNR tenascin R (restrictin, janusin) 2109627 1 1 1 2 0 0 0 1 0 0 0.76 1.00 -8298 KIAA0528 KIAA0528 1571193 1 1 1 0 0 0 1 0 0 0 0.76 1.00 -8299 ZMYM6 zinc finger, MYM-type 6 1480440 1 1 1 0 0 0 0 1 0 0 0.76 1.00 -8300 SPEF2 sperm flagellar 2 2827032 2 2 2 2 0 0 1 0 1 0 0.76 1.00 -8301 EEA1 early endosome antigen 1 2192268 1 1 1 2 0 0 1 0 0 0 0.76 1.00 -8302 MOV10 Mov10, Moloney leukemia virus 10, homolog (mouse) 1554969 1 1 1 1 0 1 0 0 0 0 0.76 1.00 -8303 DNAJC13 DnaJ (Hsp40) homolog, subfamily C, member 13 3524664 3 3 3 0 0 1 2 0 0 0 0.76 1.00 -8304 ANKS1A ankyrin repeat and sterile alpha motif domain containing 1A 1640145 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -8305 GPRC6A G protein-coupled receptor, family C, group 6, member A 1422135 1 1 1 1 0 0 1 0 0 0 0.76 1.00 -8306 RBM16 RNA binding motif protein 16 1958034 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -8307 EVI5 ecotropic viral integration site 5 1270035 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -8308 C15orf42 chromosome 15 open reading frame 42 2619669 2 2 2 0 0 2 0 0 0 0 0.76 1.00 -8309 MRVI1 murine retrovirus integration site 1 homolog 1356732 1 1 1 0 0 0 0 1 0 0 0.76 1.00 -8310 TLR1 toll-like receptor 1 1199055 1 1 1 0 1 0 0 0 0 0 0.76 1.00 -8311 EPS15 epidermal growth factor receptor pathway substrate 15 1445964 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -8312 UBN2 1847508 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -8313 C3orf20 chromosome 3 open reading frame 20 1406418 1 1 1 0 0 1 0 0 0 0 0.76 1.00 -8314 BAT2 HLA-B associated transcript 2 3342651 1 1 1 1 0 0 0 0 1 0 0.76 1.00 -8315 NIN ninein (GSK3B interacting protein) 3293472 2 2 2 1 0 0 2 0 0 0 0.76 1.00 -8316 ABCC11 ATP-binding cassette, sub-family C (CFTR/MRP), member 11 2116725 1 1 1 0 0 0 1 0 0 0 0.76 1.00 -8317 CXorf22 chromosome X open reading frame 22 1518465 1 1 1 1 0 0 1 0 0 0 0.76 1.00 -8318 ZNF721 zinc finger protein 721 1409460 1 1 1 0 0 0 1 0 0 0 0.76 1.00 -8319 DSCAM Down syndrome cell adhesion molecule 3053661 2 2 2 2 0 1 1 0 0 0 0.76 1.00 -8320 DIS3L DIS3 mitotic control homolog (S. cerevisiae)-like 1561560 1 1 1 0 0 0 1 0 0 0 0.76 1.00 -8321 WDR11 1860690 1 1 1 0 0 0 0 0 1 0 0.77 1.00 -8322 TAOK2 TAO kinase 2 2253615 1 1 1 1 0 1 0 0 0 0 0.77 1.00 -8323 PTPRB protein tyrosine phosphatase, receptor type, B 3358368 2 2 2 1 1 0 0 0 1 0 0.77 1.00 -8324 CUBN cubilin (intrinsic factor-cobalamin receptor) 5647980 5 5 5 1 1 2 1 0 1 0 0.77 1.00 -8325 CACNA2D4 calcium channel, voltage-dependent, alpha 2/delta subunit 4 1562067 1 1 1 1 1 0 0 0 0 0 0.77 1.00 -8326 IDE insulin-degrading enzyme 1550406 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -8327 MARCH10 membrane-associated ring finger (C3HC4) 10 1250769 1 1 1 2 1 0 0 0 0 0 0.77 1.00 -8328 ATP11C ATPase, class VI, type 11C 1816074 1 1 1 1 1 0 0 0 0 0 0.77 1.00 -8329 AQR aquarius homolog (mouse) 2330679 1 1 1 0 0 0 0 1 0 0 0.77 1.00 -8330 NRXN1 neurexin 1 2161848 1 1 1 2 0 0 1 0 0 0 0.77 1.00 -8331 SYCP1 synaptonemal complex protein 1 1540266 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -8332 NFAT5 nuclear factor of activated T-cells 5, tonicity-responsive 2346903 1 1 1 1 0 0 0 0 1 0 0.77 1.00 -8333 TEK TEK tyrosine kinase, endothelial (venous malformations, multiple cutaneous and mucosal) 1757769 1 1 1 2 0 1 0 0 0 0 0.77 1.00 -8334 C6orf167 chromosome 6 open reading frame 167 1940796 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -8335 DOCK4 dedicator of cytokinesis 4 2926911 2 2 2 0 0 0 1 0 1 0 0.77 1.00 -8336 PBRM1 polybromo 1 2545647 2 2 2 0 0 1 0 1 0 0 0.77 1.00 -8337 ZCCHC11 zinc finger, CCHC domain containing 11 2562378 2 2 2 0 1 1 0 0 0 0 0.77 1.00 -8338 DGKD diacylglycerol kinase, delta 130kDa 1775514 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -8339 SRRM1 serine/arginine repetitive matrix 1 1398306 1 1 1 0 1 0 0 0 0 0 0.77 1.00 -8340 ZNF518A zinc finger protein 518A 2258685 1 1 1 1 0 0 0 0 1 0 0.77 1.00 -8341 DDX58 DEAD (Asp-Glu-Ala-Asp) box polypeptide 58 1439373 1 1 1 3 1 0 0 0 0 0 0.77 1.00 -8342 LRRFIP1 leucine rich repeat (in FLII) interacting protein 1 1615302 1 1 1 0 0 0 0 1 0 0 0.77 1.00 -8343 SLC12A6 solute carrier family 12 (potassium/chloride transporters), member 6 1863225 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -8344 CNTN3 contactin 3 (plasmacytoma associated) 1609725 1 1 1 0 0 0 1 0 0 0 0.77 1.00 -8345 DENND5A 1948401 1 1 1 1 0 0 0 0 1 0 0.77 1.00 -8346 FAM120A family with sequence similarity 120A 1442922 1 1 1 0 0 0 0 0 1 0 0.77 1.00 -8347 USP11 ubiquitin specific peptidase 11 1459653 1 1 1 2 0 1 0 0 0 0 0.77 1.00 -8348 LAMC2 laminin, gamma 2 1824693 1 1 1 0 0 1 0 0 0 0 0.77 1.00 -8349 ABCA5 ATP-binding cassette, sub-family A (ABC1), member 5 2576067 3 2 3 1 0 2 1 0 0 0 0.77 1.00 -8350 HKDC1 hexokinase domain containing 1 1432782 1 1 1 1 0 0 1 0 0 0 0.78 1.00 -8351 CCDC108 coiled-coil domain containing 108 2057913 1 1 1 1 1 0 0 0 0 0 0.78 1.00 -8352 GRM5 glutamate receptor, metabotropic 5 1455090 1 1 1 0 1 0 0 0 0 0 0.78 1.00 -8353 ARFGEF2 ADP-ribosylation factor guanine nucleotide-exchange factor 2 (brefeldin A-inhibited) 2732223 2 2 2 0 1 0 1 0 0 0 0.78 1.00 -8354 DNAH8 dynein, axonemal, heavy chain 8 7011303 5 5 5 2 3 1 0 0 1 0 0.78 1.00 -8355 KDM3B 2629302 2 2 2 0 0 2 0 0 0 0 0.78 1.00 -8356 CAND1 cullin-associated and neddylation-dissociated 1 1866267 1 1 1 1 0 1 0 0 0 0 0.78 1.00 -8357 DNAH10 dynein, axonemal, heavy chain 10 6027723 5 5 5 3 3 1 0 0 1 0 0.78 1.00 -8358 ZNF197 zinc finger protein 197 1596543 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -8359 USP40 ubiquitin specific peptidase 40 1680198 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -8360 TNXB tenascin XB 5446194 3 3 3 2 0 2 0 0 1 0 0.78 1.00 -8361 MAST2 microtubule associated serine/threonine kinase 2 2699268 2 2 2 0 0 1 1 0 0 0 0.78 1.00 -8362 NUP93 nucleoporin 93kDa 1289808 1 1 1 1 1 0 0 0 0 0 0.78 1.00 -8363 SKIV2L2 superkiller viralicidic activity 2-like 2 (S. cerevisiae) 1641159 1 1 1 0 0 0 1 0 0 0 0.78 1.00 -8364 PPRC1 peroxisome proliferator-activated receptor gamma, coactivator-related 1 2481258 2 2 2 0 0 1 1 0 0 0 0.78 1.00 -8365 NARG2 NMDA receptor regulated 2 1525563 1 1 1 1 0 0 1 0 0 0 0.78 1.00 -8366 ASAP1 1711125 1 1 1 2 0 0 1 0 0 0 0.78 1.00 -8367 ACO1 aconitase 1, soluble 1394250 1 1 1 1 0 1 0 0 0 0 0.78 1.00 -8368 VPS13A vacuolar protein sorting 13 homolog A (S. cerevisiae) 5004597 4 4 4 1 1 1 1 1 0 0 0.78 1.00 -8369 NCAPD2 non-SMC condensin I complex, subunit D2 2195310 1 1 1 1 0 0 0 1 0 0 0.78 1.00 -8370 HECTD1 HECT domain containing 1 4056507 3 3 3 0 1 1 0 1 0 0 0.78 1.00 -8371 USH1C Usher syndrome 1C (autosomal recessive, severe) 1309581 1 1 1 1 1 0 0 0 0 0 0.78 1.00 -8372 ARHGAP32 3157596 2 2 2 0 1 0 1 0 0 0 0.79 1.00 -8373 TDRD1 tudor domain containing 1 1860690 1 1 1 0 0 0 1 0 0 0 0.79 1.00 -8374 NCOA6 nuclear receptor coactivator 6 3165708 2 2 2 0 0 0 0 2 0 0 0.79 1.00 -8375 EHBP1 EH domain binding protein 1 1862211 1 1 1 0 0 0 1 0 0 0 0.79 1.00 -8376 DHX34 DEAH (Asp-Glu-Ala-His) box polypeptide 34 1532661 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -8377 CCDC158 1741038 1 1 1 0 0 0 1 0 0 0 0.79 1.00 -8378 EGFLAM EGF-like, fibronectin type III and laminin G domains 1489566 1 1 1 2 0 1 0 0 0 0 0.79 1.00 -8379 DLEC1 deleted in lung and esophageal cancer 1 2836158 2 2 2 1 0 0 1 1 0 0 0.79 1.00 -8380 DNAH1 dynein, axonemal, heavy chain 1 5873595 4 4 4 2 1 1 1 0 1 0 0.79 1.00 -8381 NBAS 3713268 3 3 3 0 2 1 0 0 0 0 0.79 1.00 -8382 C15orf55 chromosome 15 open reading frame 55 1737489 1 1 1 1 0 1 0 0 0 0 0.79 1.00 -8383 BBX bobby sox homolog (Drosophila) 1415544 1 1 1 0 0 0 1 0 0 0 0.79 1.00 -8384 KDM5A 2619162 2 2 2 0 0 1 1 0 0 0 0.79 1.00 -8385 TRIM37 tripartite motif-containing 37 1507818 1 1 1 0 0 0 1 0 0 0 0.79 1.00 -8386 TTLL5 tubulin tyrosine ligase-like family, member 5 2012790 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -8387 MTTP microsomal triglyceride transfer protein 1397799 1 1 1 2 1 0 0 0 0 0 0.79 1.00 -8388 USP4 ubiquitin specific peptidase 4 (proto-oncogene) 1497171 1 1 1 0 0 0 0 1 0 0 0.79 1.00 -8389 TTF2 transcription termination factor, RNA polymerase II 1815567 1 1 1 1 0 1 0 0 0 0 0.79 1.00 -8390 POLR3A polymerase (RNA) III (DNA directed) polypeptide A, 155kDa 2178579 1 1 1 0 0 0 1 0 0 0 0.79 1.00 -8391 MYO5C myosin VC 2704845 2 2 2 1 1 0 0 0 1 0 0.79 1.00 -8392 EPHA4 EPH receptor A4 1535703 1 1 1 0 0 0 1 0 0 0 0.79 1.00 -8393 NUMA1 nuclear mitotic apparatus protein 1 3257982 2 2 2 0 1 0 1 0 0 0 0.79 1.00 -8394 SIGLEC1 sialic acid binding Ig-like lectin 1, sialoadhesin 1967667 1 1 1 2 0 1 0 0 0 0 0.79 1.00 -8395 PSMD2 proteasome (prosome, macropain) 26S subunit, non-ATPase, 2 1354704 1 1 1 0 1 0 0 0 0 0 0.79 1.00 -8396 LPIN1 lipin 1 1381068 1 1 1 0 0 1 0 0 0 0 0.79 1.00 -8397 TMEM67 transmembrane protein 67 1570686 1 1 1 0 0 0 1 0 0 0 0.80 1.00 -8398 PASK PAS domain containing serine/threonine kinase 1990989 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -8399 ZNF536 zinc finger protein 536 1833312 1 1 1 0 0 0 0 0 1 0 0.80 1.00 -8400 L1CAM L1 cell adhesion molecule 1935219 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -8401 CTNND1 catenin (cadherin-associated protein), delta 1 1489566 1 1 1 0 0 0 1 0 0 0 0.80 1.00 -8402 USP34 ubiquitin specific peptidase 34 5533398 4 4 4 1 0 1 2 0 1 0 0.80 1.00 -8403 EXOSC10 exosome component 10 1398306 1 1 1 1 0 0 1 0 0 0 0.80 1.00 -8404 PCDH1 protocadherin 1 1869816 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -8405 CORIN corin, serine peptidase 1631019 1 1 1 0 0 0 1 0 0 0 0.80 1.00 -8406 ARID5B AT rich interactive domain 5B (MRF1-like) 1828749 1 1 1 1 0 0 0 0 1 0 0.80 1.00 -8407 VPS13C vacuolar protein sorting 13 homolog C (S. cerevisiae) 5858385 6 5 6 0 3 1 0 2 0 0 0.80 1.00 -8408 CCDC73 coiled-coil domain containing 73 1656876 1 1 1 1 0 1 0 0 0 0 0.80 1.00 -8409 ZC3H7A zinc finger CCCH-type containing 7A 1523028 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -8410 TENC1 tensin like C1 domain containing phosphatase (tensin 2) 2117232 1 1 1 1 0 1 0 0 0 0 0.80 1.00 -8411 COL7A1 collagen, type VII, alpha 1 (epidermolysis bullosa, dystrophic, dominant and recessive) 4462107 3 3 3 2 1 2 0 0 0 0 0.80 1.00 -8412 ZNF521 zinc finger protein 521 1987440 1 1 1 1 1 0 0 0 0 0 0.80 1.00 -8413 USP19 ubiquitin specific peptidase 19 1970202 1 1 1 0 1 0 0 0 0 0 0.80 1.00 -8414 RNF31 ring finger protein 31 1587417 1 1 1 0 0 1 0 0 0 0 0.80 1.00 -8415 EXOC4 exocyst complex component 4 1524042 1 1 1 0 0 0 1 0 0 0 0.80 1.00 -8416 PTPRT protein tyrosine phosphatase, receptor type, T 2209506 1 1 1 0 0 0 0 1 0 0 0.80 1.00 -8417 DYSF dysferlin, limb girdle muscular dystrophy 2B (autosomal recessive) 3111459 2 2 2 2 0 1 0 0 1 0 0.80 1.00 -8418 SYNRG 2003664 1 1 1 0 0 0 1 0 0 0 0.81 1.00 -8419 FARP1 FERM, RhoGEF (ARHGEF) and pleckstrin domain protein 1 (chondrocyte-derived) 1723800 1 1 1 1 0 0 0 0 1 0 0.81 1.00 -8420 DLG2 discs, large homolog 2, chapsyn-110 (Drosophila) 1583868 1 1 1 0 1 0 0 0 0 0 0.81 1.00 -8421 KIAA2018 KIAA2018 3426306 2 2 2 0 1 1 0 0 0 0 0.81 1.00 -8422 PARP4 poly (ADP-ribose) polymerase family, member 4 2658708 2 2 2 0 1 1 0 0 0 0 0.81 1.00 -8423 RPRD2 2224209 1 1 1 1 1 0 0 0 0 0 0.81 1.00 -8424 SLK STE20-like kinase (yeast) 1918488 1 1 1 0 0 0 1 0 0 0 0.81 1.00 -8425 CLSTN1 calsyntenin 1 1477905 1 1 1 1 1 0 0 0 0 0 0.81 1.00 -8426 KIAA0100 KIAA0100 3443544 2 2 2 0 0 0 1 0 1 0 0.81 1.00 -8427 FAM13A 1622907 1 1 1 2 0 0 1 0 0 0 0.81 1.00 -8428 SOS2 son of sevenless homolog 2 (Drosophila) 2028000 1 1 1 0 0 1 0 0 0 0 0.81 1.00 -8429 MKL2 MKL/myocardin-like 2 1627470 1 1 1 0 0 0 1 0 0 0 0.81 1.00 -8430 CTTNBP2 cortactin binding protein 2 2534493 1 1 1 0 0 0 0 0 1 0 0.81 1.00 -8431 GEMIN5 gem (nuclear organelle) associated protein 5 2265783 1 1 1 1 0 0 1 0 0 0 0.81 1.00 -8432 SCUBE2 signal peptide, CUB domain, EGF-like 2 1496157 1 1 1 1 1 0 0 0 0 0 0.81 1.00 -8433 APC adenomatous polyposis coli 4356144 3 3 3 2 0 1 2 0 0 0 0.81 1.00 -8434 VPS13B vacuolar protein sorting 13 homolog B (yeast) 6198582 5 5 5 3 0 1 2 2 0 0 0.81 1.00 -8435 CREBBP CREB binding protein (Rubinstein-Taybi syndrome) 3243279 2 2 2 0 0 0 0 1 1 0 0.82 1.00 -8436 SPAG9 sperm associated antigen 9 1943838 1 1 1 0 0 0 1 0 0 0 0.82 1.00 -8437 MYO3A myosin IIIA 2509650 1 1 1 6 0 0 1 0 0 0 0.82 1.00 -8438 FREM2 FRAS1 related extracellular matrix protein 2 4492020 3 3 3 1 0 2 0 1 0 0 0.82 1.00 -8439 CECR2 cat eye syndrome chromosome region, candidate 2 2072616 1 1 1 2 0 1 0 0 0 0 0.82 1.00 -8440 GARNL3 GTPase activating Rap/RanGAP domain-like 3 1599078 1 1 1 1 0 0 1 0 0 0 0.82 1.00 -8441 FAM83B family with sequence similarity 83, member B 1547364 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -8442 ZNF827 zinc finger protein 827 1662960 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -8443 KIF20B 2773797 2 2 2 1 1 0 0 0 1 0 0.82 1.00 -8444 C2CD3 C2 calcium-dependent domain containing 3 3050112 2 2 2 1 0 0 1 1 0 0 0.82 1.00 -8445 STARD13 StAR-related lipid transfer (START) domain containing 13 1755234 1 1 1 0 0 0 1 0 0 0 0.82 1.00 -8446 C9orf79 chromosome 9 open reading frame 79 2207478 1 1 1 0 0 0 1 0 0 0 0.82 1.00 -8447 MECOM 1921023 1 1 1 0 1 0 0 0 0 0 0.82 1.00 -8448 DLG5 discs, large homolog 5 (Drosophila) 2720562 2 2 2 1 1 0 1 0 0 0 0.82 1.00 -8449 MYO1E myosin IE 1690845 1 1 1 0 0 0 0 1 0 0 0.82 1.00 -8450 HEPHL1 hephaestin-like 1 1804920 1 1 1 0 0 0 1 0 0 0 0.82 1.00 -8451 ATP7B ATPase, Cu++ transporting, beta polypeptide 2217618 1 1 1 2 0 1 0 0 0 0 0.82 1.00 -8452 DGKH diacylglycerol kinase, eta 1818609 1 1 1 0 0 0 1 0 0 0 0.82 1.00 -8453 TDRD5 tudor domain containing 5 1526070 1 1 1 2 0 0 1 0 0 0 0.82 1.00 -8454 GPR158 G protein-coupled receptor 158 1602120 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -8455 CYTSA 1683240 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -8456 NCOA1 nuclear receptor coactivator 1 2256657 1 1 1 0 0 1 0 0 0 0 0.82 1.00 -8457 TIAM1 T-cell lymphoma invasion and metastasis 1 2472132 1 1 1 1 0 0 0 0 1 0 0.82 1.00 -8458 FAM179B 2656173 1 1 1 0 0 0 0 0 1 0 0.83 1.00 -8459 KIAA1797 KIAA1797 2828046 3 2 3 0 1 0 0 1 1 0 0.83 1.00 -8460 ZC3H13 zinc finger CCCH-type containing 13 2412813 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -8461 MAN2A2 mannosidase, alpha, class 2A, member 2 1616823 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -8462 SLC4A8 solute carrier family 4, sodium bicarbonate cotransporter, member 8 1678677 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -8463 PLEKHG2 pleckstrin homology domain containing, family G (with RhoGef domain) member 2 1841931 1 1 1 0 1 0 0 0 0 0 0.83 1.00 -8464 COL11A2 collagen, type XI, alpha 2 2712957 1 1 1 1 0 0 0 0 1 0 0.83 1.00 -8465 BIRC6 baculoviral IAP repeat-containing 6 (apollon) 7079241 6 6 6 1 2 3 0 0 1 0 0.83 1.00 -8466 KALRN kalirin, RhoGEF kinase 4681131 3 3 3 1 0 1 0 2 0 0 0.83 1.00 -8467 REST RE1-silencing transcription factor 1676142 1 1 1 0 0 0 0 1 0 0 0.83 1.00 -8468 ZZEF1 zinc finger, ZZ-type with EF-hand domain 1 4259307 4 3 4 0 0 1 1 0 0 2 0.83 1.00 -8469 MAP4 microtubule-associated protein 4 2413827 1 1 1 1 0 0 0 0 1 0 0.83 1.00 -8470 HPS5 Hermansky-Pudlak syndrome 5 1763346 1 1 1 0 0 0 1 0 0 0 0.83 1.00 -8471 RUSC2 RUN and SH3 domain containing 2 2302794 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -8472 OGDH oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide) 1601613 1 1 1 0 0 1 0 0 0 0 0.83 1.00 -8473 SYNPO2 synaptopodin 2 1944852 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -8474 XPO5 exportin 5 1897701 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -8475 PCF11 PCF11, cleavage and polyadenylation factor subunit, homolog (S. cerevisiae) 2379351 1 1 1 0 0 0 1 0 0 0 0.84 1.00 -8476 DHX16 DEAH (Asp-Glu-Ala-His) box polypeptide 16 1607697 1 1 1 0 1 0 0 0 0 0 0.84 1.00 -8477 CMYA5 cardiomyopathy associated 5 6125574 5 5 5 1 2 2 1 0 0 0 0.84 1.00 -8478 NRD1 nardilysin (N-arginine dibasic convertase) 1875393 1 1 1 0 0 0 1 0 0 0 0.84 1.00 -8479 FRYL FRY-like 4661865 3 3 3 1 0 1 1 1 0 0 0.84 1.00 -8480 NBPF1 neuroblastoma breakpoint family, member 1 1724307 1 1 1 0 0 0 1 0 0 0 0.84 1.00 -8481 SGOL2 shugoshin-like 2 (S. pombe) 1941810 1 1 1 0 0 0 0 1 0 0 0.84 1.00 -8482 DYNC1H1 dynein, cytoplasmic 1, heavy chain 1 7094451 5 5 5 0 1 0 2 1 1 0 0.84 1.00 -8483 RSPH10B2 1690845 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -8484 SF3B3 splicing factor 3b, subunit 3, 130kDa 1865253 1 1 1 1 0 1 0 0 0 0 0.84 1.00 -8485 SPTAN1 spectrin, alpha, non-erythrocytic 1 (alpha-fodrin) 3814668 2 2 2 0 0 1 1 0 0 0 0.84 1.00 -8486 AHI1 Abelson helper integration site 1 1882491 1 1 1 1 0 0 1 0 0 0 0.84 1.00 -8487 ITGAL integrin, alpha L (antigen CD11A (p180), lymphocyte function-associated antigen 1; alpha polypeptide) 1789710 1 1 1 0 1 0 0 0 0 0 0.84 1.00 -8488 GAPVD1 GTPase activating protein and VPS9 domains 1 2315976 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -8489 CRB1 crumbs homolog 1 (Drosophila) 2164383 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -8490 UHRF1BP1 UHRF1 (ICBP90) binding protein 1 2210013 1 1 1 0 0 1 0 0 0 0 0.84 1.00 -8491 MACF1 microtubule-actin crosslinking factor 1 11580894 10 10 10 0 2 2 2 1 3 0 0.84 1.00 -8492 NEBL nebulette 1752699 1 1 1 1 1 0 0 0 0 0 0.84 1.00 -8493 WHSC1L1 Wolf-Hirschhorn syndrome candidate 1-like 1 2270853 1 1 1 0 0 0 1 0 0 0 0.85 1.00 -8494 ANKHD1-EIF4EBP3 ANKHD1-EIF4EBP3 3897816 1 1 1 0 0 0 0 0 1 0 0.85 1.00 -8495 SYNJ2 synaptojanin 2 2179593 1 1 1 2 0 0 0 0 1 0 0.85 1.00 -8496 RAB11FIP1 RAB11 family interacting protein 1 (class I) 1775007 1 1 1 1 0 1 0 0 0 0 0.85 1.00 -8497 DENND5B 1772979 1 1 1 0 0 0 0 1 0 0 0.85 1.00 -8498 ANLN anillin, actin binding protein 1757769 1 1 1 1 0 1 0 0 0 0 0.85 1.00 -8499 ATP8B2 ATPase, class I, type 8B, member 2 1984398 1 1 1 1 0 0 1 0 0 0 0.85 1.00 -8500 RYR1 ryanodine receptor 1 (skeletal) 6970236 5 5 5 4 3 1 1 0 0 0 0.85 1.00 -8501 COL11A1 collagen, type XI, alpha 1 2923869 2 2 2 2 1 0 1 0 0 0 0.85 1.00 -8502 ZNF638 zinc finger protein 638 3064815 2 2 2 1 0 0 1 0 1 0 0.85 1.00 -8503 PIKFYVE 3281304 2 2 2 3 0 0 2 0 0 0 0.85 1.00 -8504 IFT172 intraflagellar transport 172 homolog (Chlamydomonas) 2759094 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -8505 TNKS2 tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase 2 1726842 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -8506 IQGAP1 IQ motif containing GTPase activating protein 1 2566434 1 1 1 0 0 1 0 0 0 0 0.85 1.00 -8507 TTC3 tetratricopeptide repeat domain 3 3172806 2 2 2 1 0 1 0 1 0 0 0.85 1.00 -8508 CDK12 2278458 1 1 1 2 1 0 0 0 0 0 0.85 1.00 -8509 NOMO1 NODAL modulator 1 1743573 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -8510 FAM193A 1851057 1 1 1 0 0 0 0 0 1 0 0.85 1.00 -8511 PALM2-AKAP2 PALM2-AKAP2 1701492 1 1 1 0 1 0 0 0 0 0 0.85 1.00 -8512 TTC37 2461485 1 1 1 1 0 0 1 0 0 0 0.85 1.00 -8513 ARAP1 1873365 1 1 1 0 0 0 1 0 0 0 0.85 1.00 -8514 PLD1 phospholipase D1, phosphatidylcholine-specific 1687803 1 1 1 1 0 1 0 0 0 0 0.85 1.00 -8515 TOP2A topoisomerase (DNA) II alpha 170kDa 2209506 1 1 1 0 0 0 0 1 0 0 0.86 1.00 -8516 KDM5B 2307864 1 1 1 0 0 0 1 0 0 0 0.86 1.00 -8517 NUP210L nucleoporin 210kDa-like 2943135 2 2 2 0 0 1 0 1 0 0 0.86 1.00 -8518 ROS1 c-ros oncogene 1 , receptor tyrosine kinase 3658512 2 2 2 0 0 1 0 0 1 0 0.86 1.00 -8519 NRCAM neuronal cell adhesion molecule 2052843 1 1 1 1 1 0 0 0 0 0 0.86 1.00 -8520 MAPKBP1 mitogen-activated protein kinase binding protein 1 2321553 1 1 1 2 1 0 0 0 0 0 0.86 1.00 -8521 TDRD6 tudor domain containing 6 2796105 1 1 1 1 0 0 1 0 0 0 0.86 1.00 -8522 KIF13B kinesin family member 13B 2268318 1 1 1 0 1 0 0 0 0 0 0.86 1.00 -8523 AKAP13 A kinase (PRKA) anchor protein 13 4251702 3 3 3 2 1 2 0 0 0 0 0.86 1.00 -8524 ARFGEF1 ADP-ribosylation factor guanine nucleotide-exchange factor 1(brefeldin A-inhibited) 2884323 1 1 1 1 0 0 0 0 1 0 0.86 1.00 -8525 CHD2 chromodomain helicase DNA binding protein 2 2861001 1 1 1 1 0 0 1 0 0 0 0.86 1.00 -8526 C1orf173 chromosome 1 open reading frame 173 2342847 1 1 1 1 1 0 0 0 0 0 0.86 1.00 -8527 C1orf9 chromosome 1 open reading frame 9 1924065 1 1 1 0 0 0 1 0 0 0 0.86 1.00 -8528 KIAA1632 KIAA1632 3955614 2 2 2 1 0 1 1 0 0 0 0.86 1.00 -8529 EIF3A eukaryotic translation initiation factor 3, subunit A 2121288 1 1 1 0 0 1 0 0 0 0 0.87 1.00 -8530 EFCAB6 EF-hand calcium binding domain 6 2343354 1 1 1 0 0 1 0 0 0 0 0.87 1.00 -8531 FCGBP Fc fragment of IgG binding protein 5816304 4 4 4 1 0 4 0 0 0 0 0.87 1.00 -8532 LYST lysosomal trafficking regulator 5873595 4 4 4 1 2 1 0 0 1 0 0.87 1.00 -8533 HERC2 hect domain and RLD 2 7320573 5 5 5 2 1 3 0 0 1 0 0.87 1.00 -8534 ARHGEF11 Rho guanine nucleotide exchange factor (GEF) 11 2459457 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -8535 XRN1 5'-3' exoribonuclease 1 2669355 1 1 1 0 0 1 0 0 0 0 0.87 1.00 -8536 RNF160 2790528 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -8537 USP6 ubiquitin specific peptidase 6 (Tre-2 oncogene) 2194803 1 1 1 0 1 0 0 0 0 0 0.87 1.00 -8538 FAM65A family with sequence similarity 65, member A 1789710 2 1 2 0 1 0 1 0 0 0 0.87 1.00 -8539 ADAMTS3 ADAM metallopeptidase with thrombospondin type 1 motif, 3 1878942 1 1 1 2 0 1 0 0 0 0 0.88 1.00 -8540 MKI67 antigen identified by monoclonal antibody Ki-67 4982289 3 3 3 1 2 0 1 0 0 0 0.88 1.00 -8541 ADAR adenosine deaminase, RNA-specific 1887054 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -8542 APAF1 apoptotic peptidase activating factor 1 1952457 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -8543 SCN9A sodium channel, voltage-gated, type IX, alpha subunit 2982681 1 1 1 2 0 0 0 0 1 0 0.88 1.00 -8544 NCOA2 nuclear receptor coactivator 2 2187705 1 1 1 2 0 0 0 0 1 0 0.88 1.00 -8545 MBD5 methyl-CpG binding domain protein 5 2294175 1 1 1 0 0 0 0 1 0 0 0.88 1.00 -8546 ATAD2 ATPase family, AAA domain containing 2 2083770 1 1 1 2 0 1 0 0 0 0 0.88 1.00 -8547 SCAND3 2015325 1 1 1 0 0 0 1 0 0 0 0.88 1.00 -8548 KIAA0368 KIAA0368 2943642 1 1 1 2 0 1 0 0 0 0 0.88 1.00 -8549 CENPF centromere protein F, 350/400ka (mitosin) 4776447 3 3 3 3 0 1 2 0 0 0 0.88 1.00 -8550 NUP188 nucleoporin 188kDa 2732730 1 1 1 2 0 0 1 0 0 0 0.88 1.00 -8551 PIK3C2G phosphoinositide-3-kinase, class 2, gamma polypeptide 2244996 1 1 1 1 0 0 1 0 0 0 0.88 1.00 -8552 MYOM2 myomesin (M-protein) 2, 165kDa 2057406 1 1 1 0 0 0 0 1 0 0 0.88 1.00 -8553 MYH3 myosin, heavy chain 3, skeletal muscle, embryonic 3031353 1 1 1 3 0 0 1 0 0 0 0.88 1.00 -8554 CACNA1S calcium channel, voltage-dependent, L type, alpha 1S subunit 2936037 1 1 1 1 0 1 0 0 0 0 0.88 1.00 -8555 COL4A3 collagen, type IV, alpha 3 (Goodpasture antigen) 2433600 1 1 1 0 0 1 0 0 0 0 0.88 1.00 -8556 ANK2 ankyrin 2, neuronal 6029244 4 4 4 2 2 0 2 0 0 0 0.89 1.00 -8557 GTF3C1 general transcription factor IIIC, polypeptide 1, alpha 220kDa 3139344 1 1 1 0 0 0 0 0 1 0 0.89 1.00 -8558 LY75 lymphocyte antigen 75 2641977 1 1 1 1 0 1 0 0 0 0 0.89 1.00 -8559 A2ML1 alpha-2-macroglobulin-like 1 2284035 1 1 1 2 0 0 1 0 0 0 0.89 1.00 -8560 ATP13A3 ATPase type 13A3 1929135 1 1 1 0 0 1 0 0 0 0 0.89 1.00 -8561 DMXL2 Dmx-like 2 4661865 3 3 3 1 1 0 0 1 1 0 0.89 1.00 -8562 PLXNB1 plexin B1 2651610 1 1 1 0 0 0 1 0 0 0 0.89 1.00 -8563 HIVEP1 human immunodeficiency virus type I enhancer binding protein 1 4151823 2 2 2 1 0 0 1 1 0 0 0.89 1.00 -8564 HUWE1 HECT, UBA and WWE domain containing 1 6786195 6 5 6 0 2 0 4 0 0 0 0.89 1.00 -8565 SMARCC2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 2 1901757 1 1 1 1 0 1 0 0 0 0 0.89 1.00 -8566 MYO3B myosin IIIB 2112162 1 1 1 1 0 0 0 1 0 0 0.89 1.00 -8567 SGK269 2665299 1 1 1 2 0 0 1 0 0 0 0.89 1.00 -8568 C9orf84 chromosome 9 open reading frame 84 2318004 1 1 1 1 1 0 0 0 0 0 0.89 1.00 -8569 CHD8 chromodomain helicase DNA binding protein 8 3599700 2 2 2 2 0 1 1 0 0 0 0.89 1.00 -8570 TRIO triple functional domain (PTPRF interacting) 4169568 2 2 2 1 0 0 1 1 0 0 0.89 1.00 -8571 KIAA0556 KIAA0556 2437149 1 1 1 0 0 1 0 0 0 0 0.90 1.00 -8572 KIAA1217 KIAA1217 2999412 1 1 1 0 0 0 0 0 1 0 0.90 1.00 -8573 HTT huntingtin 4483908 3 2 3 4 1 0 0 1 1 0 0.90 1.00 -8574 KIF24 kinesin family member 24 2106078 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -8575 SMG1 5314881 3 3 3 2 1 0 1 0 1 0 0.90 1.00 -8576 MDN1 MDN1, midasin homolog (yeast) 8719893 6 6 6 4 0 2 2 0 2 0 0.90 1.00 -8577 STAB2 stabilin 2 3929757 2 2 2 1 1 1 0 0 0 0 0.90 1.00 -8578 GREB1 2692677 1 1 1 2 0 1 0 0 0 0 0.90 1.00 -8579 LRRC16A leucine rich repeat containing 16A 2117232 1 1 1 2 0 0 1 0 0 0 0.90 1.00 -8580 IGF2R insulin-like growth factor 2 receptor 3793374 2 2 2 3 0 1 1 0 0 0 0.90 1.00 -8581 BTAF1 BTAF1 RNA polymerase II, B-TFIID transcription factor-associated, 170kDa (Mot1 homolog, S. cerevisiae) 2881788 1 1 1 0 0 0 1 0 0 0 0.90 1.00 -8582 KIDINS220 2754024 1 1 1 0 1 0 0 0 0 0 0.90 1.00 -8583 ANKRD11 ankyrin repeat domain 11 3310203 1 1 1 0 0 0 0 0 1 0 0.91 1.00 -8584 MAP3K5 mitogen-activated protein kinase kinase kinase 5 2012283 1 1 1 1 1 0 0 0 0 0 0.91 1.00 -8585 PARP14 poly (ADP-ribose) polymerase family, member 14 2751489 1 1 1 0 0 0 1 0 0 0 0.91 1.00 -8586 SYTL2 synaptotagmin-like 2 2718027 1 1 1 0 0 0 1 0 0 0 0.91 1.00 -8587 MYH2 myosin, heavy chain 2, skeletal muscle, adult 3030846 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -8588 FRMPD2 FERM and PDZ domain containing 2 2030028 1 1 1 1 0 1 0 0 0 0 0.91 1.00 -8589 FAT1 6828276 4 4 4 0 0 0 3 0 1 0 0.91 1.00 -8590 DEPDC5 DEP domain containing 5 2392026 1 1 1 0 0 1 0 0 0 0 0.91 1.00 -8591 ATR ataxia telangiectasia and Rad3 related 4099095 2 2 2 0 0 1 1 0 0 0 0.91 1.00 -8592 CDH23 cadherin-like 23 4836780 3 3 3 1 3 0 0 0 0 0 0.91 1.00 -8593 PTPRC protein tyrosine phosphatase, receptor type, C 2055378 1 1 1 0 1 0 0 0 0 0 0.91 1.00 -8594 UGGT1 2418390 1 1 1 0 0 0 0 1 0 0 0.91 1.00 -8595 ABCA6 ATP-binding cassette, sub-family A (ABC1), member 6 2538042 1 1 1 0 0 0 1 0 0 0 0.92 1.00 -8596 COL4A4 collagen, type IV, alpha 4 2667327 1 1 1 4 0 0 1 0 0 0 0.92 1.00 -8597 TRPM7 transient receptor potential cation channel, subfamily M, member 7 2917278 1 1 1 0 0 0 1 0 0 0 0.92 1.00 -8598 RALGAPA2 2762136 1 1 1 1 0 0 0 1 0 0 0.92 1.00 -8599 DICER1 dicer 1, ribonuclease type III 2977611 1 1 1 0 0 1 0 0 0 0 0.92 1.00 -8600 FRMPD1 FERM and PDZ domain containing 1 2432079 1 1 1 1 0 1 0 0 0 0 0.92 1.00 -8601 SPHKAP SPHK1 interactor, AKAP domain containing 2611557 1 1 1 1 0 0 0 1 0 0 0.92 1.00 -8602 MON2 MON2 homolog (S. cerevisiae) 2684058 1 1 1 0 0 0 1 0 0 0 0.93 1.00 -8603 RAPGEF2 Rap guanine nucleotide exchange factor (GEF) 2 2271867 1 1 1 0 0 1 0 0 0 0 0.93 1.00 -8604 AHNAK AHNAK nucleoprotein 9025107 7 6 7 2 1 3 3 0 0 0 0.93 1.00 -8605 MYO5A myosin VA (heavy chain 12, myoxin) 2890407 1 1 1 1 0 0 0 1 0 0 0.93 1.00 -8606 FRAS1 Fraser syndrome 1 5983614 3 3 3 3 0 1 1 0 1 0 0.93 1.00 -8607 PLEKHH2 pleckstrin homology domain containing, family H (with MyTH4 domain) member 2 2331186 1 1 1 2 0 0 1 0 0 0 0.93 1.00 -8608 SFRS2IP splicing factor, arginine/serine-rich 2, interacting protein 2255136 1 1 1 0 1 0 0 0 0 0 0.93 1.00 -8609 TRPM6 transient receptor potential cation channel, subfamily M, member 6 3156075 1 1 1 1 0 0 1 0 0 0 0.93 1.00 -8610 DDX60 DEAD (Asp-Glu-Ala-Asp) box polypeptide 60 2629809 1 1 1 0 0 0 0 1 0 0 0.94 1.00 -8611 TP53BP1 tumor protein p53 binding protein 1 3065322 1 1 1 0 0 0 1 0 0 0 0.94 1.00 -8612 FAT4 FAT tumor suppressor homolog 4 (Drosophila) 7190781 4 4 4 1 0 0 2 1 1 0 0.94 1.00 -8613 PSME4 proteasome (prosome, macropain) activator subunit 4 2773290 1 1 1 0 0 1 0 0 0 0 0.94 1.00 -8614 THOC2 THO complex 2 2500524 1 1 1 1 0 0 1 0 0 0 0.94 1.00 -8615 ACAN aggrecan 3193086 1 1 1 1 0 0 0 1 0 0 0.94 1.00 -8616 MYST3 MYST histone acetyltransferase (monocytic leukemia) 3 3052140 1 1 1 0 0 1 0 0 0 0 0.94 1.00 -8617 ANAPC1 anaphase promoting complex subunit 1 2662257 1 1 1 0 0 0 0 1 0 0 0.94 1.00 -8618 HERC1 hect (homologous to the E6-AP (UBE3A) carboxyl terminus) domain and RCC1 (CHC1)-like domain (RLD) 1 7293702 4 4 4 1 1 1 1 0 1 0 0.94 1.00 -8619 POLR1A polymerase (RNA) I polypeptide A, 194kDa 2681523 1 1 1 2 0 0 1 0 0 0 0.95 1.00 -8620 CLTC clathrin, heavy chain (Hc) 2605980 1 1 1 0 1 0 0 0 0 0 0.95 1.00 -8621 DENND4A DENN/MADD domain containing 4A 2852889 1 1 1 0 0 0 1 0 0 0 0.95 1.00 -8622 CEP250 centrosomal protein 250kDa 3597165 1 1 1 2 0 1 0 0 0 0 0.95 1.00 -8623 C12orf35 chromosome 12 open reading frame 35 2664792 1 1 1 0 0 1 0 0 0 0 0.95 1.00 -8624 VPS13D vacuolar protein sorting 13 homolog D (S. cerevisiae) 6815601 4 4 4 1 2 0 1 1 0 0 0.96 1.00 -8625 ALMS1 Alstrom syndrome 1 6219876 3 3 3 2 1 1 1 0 0 0 0.96 1.00 -8626 F8 coagulation factor VIII, procoagulant component (hemophilia A) 3627585 1 1 1 2 0 0 1 0 0 0 0.96 1.00 -8627 C4orf21 chromosome 4 open reading frame 21 2881281 1 1 1 0 0 0 1 0 0 0 0.96 1.00 -8628 BPTF bromodomain PHD finger transcription factor 4445883 2 2 2 0 1 0 1 0 0 0 0.96 1.00 -8629 LRRK2 leucine-rich repeat kinase 2 3910491 1 1 1 2 0 0 0 1 0 0 0.96 1.00 -8630 MIA3 melanoma inhibitory activity family, member 3 2889393 1 1 1 0 1 0 0 0 0 0 0.96 1.00 -8631 MED12L mediator complex subunit 12-like 3299049 1 1 1 3 0 1 0 0 0 0 0.96 1.00 -8632 ACACA acetyl-Coenzyme A carboxylase alpha 3768531 1 1 1 0 1 0 0 0 0 0 0.96 1.00 -8633 TET1 tet oncogene 1 3272685 1 1 1 4 0 1 0 0 0 0 0.96 1.00 -8634 FAT2 FAT tumor suppressor homolog 2 (Drosophila) 6662994 4 3 4 3 0 1 2 0 1 0 0.96 1.00 -8635 ZFC3H1 3097770 1 1 1 1 0 0 1 0 0 0 0.97 1.00 -8636 TRRAP transformation/transcription domain-associated protein 5818332 3 3 3 0 1 0 2 0 0 0 0.97 1.00 -8637 ASCC3 activating signal cointegrator 1 complex subunit 3 3484104 1 1 1 2 0 0 0 1 0 0 0.97 1.00 -8638 KNTC1 kinetochore associated 1 3391830 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -8639 NIPBL Nipped-B homolog (Drosophila) 4325217 1 1 1 0 0 1 0 0 0 0 0.98 1.00 -8640 CELSR2 cadherin, EGF LAG seven-pass G-type receptor 2 (flamingo homolog, Drosophila) 3996681 1 1 1 0 1 0 0 0 0 0 0.99 1.00 -8641 LRP1B low density lipoprotein-related protein 1B (deleted in tumors) 7180641 3 3 3 2 1 1 1 0 0 0 0.99 1.00 -8642 RANBP2 RAN binding protein 2 4925505 1 1 1 0 0 0 1 0 0 0 0.99 1.00 -8643 PCLO piccolo (presynaptic cytomatrix protein) 7715526 3 3 3 0 2 1 0 0 0 0 0.99 1.00 -8644 A1BG alpha-1-B glycoprotein 408642 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8645 A4GALT alpha 1,4-galactosyltransferase (globotriaosylceramide synthase) 136890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8646 A4GNT alpha-1,4-N-acetylglucosaminyltransferase 522717 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8647 AACS acetoacetyl-CoA synthetase 954174 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8648 AADACL3 arylacetamide deacetylase-like 3 544011 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8649 AADAT aminoadipate aminotransferase 650988 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8650 AAGAB 467961 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8651 AAMP angio-associated, migratory cell protein 643383 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8652 AANAT arylalkylamine N-acetyltransferase 177450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8653 AARS alanyl-tRNA synthetase 1496664 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8654 AARSD1 alanyl-tRNA synthetase domain containing 1 855816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8655 AATF apoptosis antagonizing transcription factor 829452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8656 ABCB4 ATP-binding cassette, sub-family B (MDR/TAP), member 4 2012283 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8657 ABCB5 ATP-binding cassette, sub-family B (MDR/TAP), member 5 1987947 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8658 ABCB9 ATP-binding cassette, sub-family B (MDR/TAP), member 9 902460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8659 ABCC3 ATP-binding cassette, sub-family C (CFTR/MRP), member 3 2392533 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8660 ABCD4 ATP-binding cassette, sub-family D (ALD), member 4 939978 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8661 ABCE1 ATP-binding cassette, sub-family E (OABP), member 1 902967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8662 ABCF3 ATP-binding cassette, sub-family F (GCN20), member 3 1122498 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8663 ABCG1 ATP-binding cassette, sub-family G (WHITE), member 1 967356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8664 ABCG2 ATP-binding cassette, sub-family G (WHITE), member 2 1028196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8665 ABCG4 ATP-binding cassette, sub-family G (WHITE), member 4 1012479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8666 ABCG8 ATP-binding cassette, sub-family G (WHITE), member 8 (sterolin 2) 1000311 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8667 ABHD1 abhydrolase domain containing 1 635778 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8668 ABHD10 abhydrolase domain containing 10 403065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8669 ABHD11 abhydrolase domain containing 11 453765 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8670 ABHD12B abhydrolase domain containing 12B 411684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8671 ABHD13 abhydrolase domain containing 13 516126 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8672 ABHD14A abhydrolase domain containing 14A 325494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8673 ABHD14B abhydrolase domain containing 14B 283413 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8674 ABHD3 abhydrolase domain containing 3 556179 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8675 ABHD4 abhydrolase domain containing 4 522210 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8676 ABHD5 abhydrolase domain containing 5 520689 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8677 ABHD8 abhydrolase domain containing 8 588627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8678 ABI2 abl interactor 2 682929 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8679 ABLIM1 actin binding LIM protein 1 1280682 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8680 ABLIM2 actin binding LIM protein family, member 2 490776 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8681 ABLIM3 actin binding LIM protein family, member 3 1087008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8682 ABO ABO blood group (transferase A, alpha 1-3-N-acetylgalactosaminyltransferase; transferase B, alpha 1-3-galactosyltransferase) 416247 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8683 ABP1 amiloride binding protein 1 (amine oxidase (copper-containing)) 1149876 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8684 ABRA actin-binding Rho activating protein 585078 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8685 ABTB1 ankyrin repeat and BTB (POZ) domain containing 1 454272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8686 ACAD8 acyl-Coenzyme A dehydrogenase family, member 8 574431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8687 ACAD9 acyl-Coenzyme A dehydrogenase family, member 9 982059 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8688 ACADL acyl-Coenzyme A dehydrogenase, long chain 636792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8689 ACADM acyl-Coenzyme A dehydrogenase, C-4 to C-12 straight chain 655044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8690 ACADS acyl-Coenzyme A dehydrogenase, C-2 to C-3 short chain 538941 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8691 ACAP1 1023126 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8692 ACAT2 acetyl-Coenzyme A acetyltransferase 2 593697 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8693 ACBD3 acyl-Coenzyme A binding domain containing 3 673803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8694 ACBD4 acyl-Coenzyme A binding domain containing 4 320931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8695 ACBD6 acyl-Coenzyme A binding domain containing 6 362505 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8696 ACBD7 acyl-Coenzyme A binding domain containing 7 135369 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8697 ACCN1 amiloride-sensitive cation channel 1, neuronal (degenerin) 753402 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8698 ACCN5 amiloride-sensitive cation channel 5, intestinal 789906 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8699 ACCSL 893841 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8700 ACD adrenocortical dysplasia homolog (mouse) 658593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8701 ACER1 366054 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8702 ACER2 375180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8703 ACIN1 apoptotic chromatin condensation inducer 1 2035605 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8704 ACMSD aminocarboxymuconate semialdehyde decarboxylase 532857 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8705 ACN9 ACN9 homolog (S. cerevisiae) 195702 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8706 ACOT12 acyl-CoA thioesterase 12 809679 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8707 ACOT13 220545 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8708 ACOT2 acyl-CoA thioesterase 2 603837 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8709 ACOT6 acyl-CoA thioesterase 6 320424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8710 ACOT7 acyl-CoA thioesterase 7 601809 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8711 ACOT9 acyl-CoA thioesterase 9 703209 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8712 ACOX2 acyl-Coenzyme A oxidase 2, branched chain 1065714 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8713 ACP1 acid phosphatase 1, soluble 308763 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8714 ACP2 acid phosphatase 2, lysosomal 682929 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8715 ACPL2 acid phosphatase-like 2 741741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8716 ACR acrosin 285948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8717 ACRV1 acrosomal vesicle protein 1 412698 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8718 ACSBG1 acyl-CoA synthetase bubblegum family member 1 1058109 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8719 ACSF3 acyl-CoA synthetase family member 3 687492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8720 ACSL1 acyl-CoA synthetase long-chain family member 1 1095627 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8721 ACSM2A acyl-CoA synthetase medium-chain family member 2A 905502 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8722 ACSS1 acyl-CoA synthetase short-chain family member 1 975975 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8723 ACSS2 acyl-CoA synthetase short-chain family member 2 1033773 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8724 ACTA1 actin, alpha 1, skeletal muscle 583050 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8725 ACTC1 actin, alpha, cardiac muscle 1 587106 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8726 ACTL6A actin-like 6A 667719 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8727 ACTL7A actin-like 7A 665184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8728 ACTL8 actin-like 8 552630 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8729 ACTL9 588627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8730 ACTN1 actinin, alpha 1 1363830 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8731 ACTR10 actin-related protein 10 homolog (S. cerevisiae) 621075 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8732 ACTR1B ARP1 actin-related protein 1 homolog B, centractin beta (yeast) 533364 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8733 ACTR2 ARP2 actin-related protein 2 homolog (yeast) 602316 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8734 ACTR3 ARP3 actin-related protein 3 homolog (yeast) 637299 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8735 ACTR5 ARP5 actin-related protein 5 homolog (yeast) 750867 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8736 ACTR8 ARP8 actin-related protein 8 homolog (yeast) 912600 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8737 ACTRT1 actin-related protein T1 575445 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8738 ACVR2B activin A receptor, type IIB 774189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8739 ACVRL1 activin A receptor type II-like 1 746304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8740 ACY3 aspartoacylase (aminocyclase) 3 251472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8741 ACYP2 acylphosphatase 2, muscle type 153114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8742 ADAL adenosine deaminase-like 423852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8743 ADAM17 ADAM metallopeptidase domain 17 (tumor necrosis factor, alpha, converting enzyme) 1242150 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8744 ADAM2 ADAM metallopeptidase domain 2 (fertilin beta) 1141257 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8745 ADAM20 ADAM metallopeptidase domain 20 1183845 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8746 ADAM23 ADAM metallopeptidase domain 23 1203618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8747 ADAM28 ADAM metallopeptidase domain 28 1235052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8748 ADAM32 ADAM metallopeptidase domain 32 1004874 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8749 ADAM7 ADAM metallopeptidase domain 7 1192971 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8750 ADAM9 ADAM metallopeptidase domain 9 (meltrin gamma) 1240629 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8751 ADAMTS17 ADAM metallopeptidase with thrombospondin type 1 motif, 17 1370928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8752 ADAMTS8 ADAM metallopeptidase with thrombospondin type 1 motif, 8 910572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8753 ADAMTSL4 ADAMTS-like 4 1519986 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8754 ADAP2 539955 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8755 ADARB2 adenosine deaminase, RNA-specific, B2 (RED2 homolog rat) 479115 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8756 ADAT1 adenosine deaminase, tRNA-specific 1 783315 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8757 ADAT2 adenosine deaminase, tRNA-specific 2, TAD2 homolog (S. cerevisiae) 304200 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8758 ADCK2 aarF domain containing kinase 2 763542 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8759 ADCY10 adenylate cyclase 10 (soluble) 2515227 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8760 ADCY2 adenylate cyclase 2 (brain) 1603134 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8761 ADCY6 adenylate cyclase 6 1773993 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -8762 ADCYAP1 adenylate cyclase activating polypeptide 1 (pituitary) 156156 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8763 ADH1B alcohol dehydrogenase 1B (class I), beta polypeptide 590148 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8764 ADH1C alcohol dehydrogenase 1C (class I), gamma polypeptide 590148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8765 ADH4 alcohol dehydrogenase 4 (class II), pi polypeptide 597753 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8766 ADH5 alcohol dehydrogenase 5 (class III), chi polypeptide 488241 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8767 ADH6 alcohol dehydrogenase 6 (class V) 592176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8768 ADI1 acireductone dioxygenase 1 219024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8769 ADIG adipogenin 112047 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8770 ADIPOQ adiponectin, C1Q and collagen domain containing 376701 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8771 ADIPOR1 adiponectin receptor 1 586092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8772 ADIPOR2 adiponectin receptor 2 602823 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8773 ADM adrenomedullin 221559 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8774 ADNP2 ADNP homeobox 2 1722279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8775 ADORA2A adenosine A2a receptor 584064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8776 ADORA2B adenosine A2b receptor 338676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8777 ADPGK ADP-dependent glucokinase 649974 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8778 ADPRHL1 ADP-ribosylhydrolase like 1 196209 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8779 ADRB1 adrenergic, beta-1-, receptor 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8780 ADRB2 adrenergic, beta-2-, receptor, surface 631722 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8781 ADRBK2 adrenergic, beta, receptor kinase 2 996762 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8782 ADSS adenylosuccinate synthase 626652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8783 ADSSL1 adenylosuccinate synthase like 1 534885 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8784 AEBP2 AE binding protein 2 440583 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8785 AEN 429936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8786 AFAP1 actin filament associated protein 1 1117428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8787 AFAP1L1 actin filament associated protein 1-like 1 1142271 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8788 AFAP1L2 actin filament associated protein 1-like 2 1114386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8789 AFG3L2 AFG3 ATPase family gene 3-like 2 (yeast) 1146834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8790 AFM afamin 940992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8791 AFMID arylformamidase 465426 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8792 AGA aspartylglucosaminidase 515619 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8793 AGAP2 918684 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8794 AGAP4 737685 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8795 AGBL4 ATP/GTP binding protein-like 4 400530 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8796 AGER advanced glycosylation end product-specific receptor 653016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8797 AGFG1 795990 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8798 AGPAT1 1-acylglycerol-3-phosphate O-acyltransferase 1 (lysophosphatidic acid acyltransferase, alpha) 444132 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8799 AGPAT2 1-acylglycerol-3-phosphate O-acyltransferase 2 (lysophosphatidic acid acyltransferase, beta) 179985 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8800 AGPAT4 1-acylglycerol-3-phosphate O-acyltransferase 4 (lysophosphatidic acid acyltransferase, delta) 583050 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8801 AGPAT9 1-acylglycerol-3-phosphate O-acyltransferase 9 617526 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8802 AGR2 anterior gradient homolog 2 (Xenopus laevis) 281892 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8803 AGR3 anterior gradient homolog 3 (Xenopus laevis) 268203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8804 AGRP agouti related protein homolog (mouse) 163254 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8805 AGTR1 angiotensin II receptor, type 1 549588 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8806 AGTR2 angiotensin II receptor, type 2 555672 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8807 AGTRAP angiotensin II receptor-associated protein 268710 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8808 AGXT2L1 alanine-glyoxylate aminotransferase 2-like 1 789399 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8809 AHCYL1 S-adenosylhomocysteine hydrolase-like 1 779259 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8810 AHSA1 AHA1, activator of heat shock 90kDa protein ATPase homolog 1 (yeast) 452751 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8811 AHSA2 AHA1, activator of heat shock 90kDa protein ATPase homolog 2 (yeast) 218010 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8812 AHSG alpha-2-HS-glycoprotein 573924 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8813 AHSP 160719 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8814 AICDA activation-induced cytidine deaminase 312819 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8815 AIF1 allograft inflammatory factor 1 337662 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8816 AIF1L 190632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8817 AIFM1 apoptosis-inducing factor, mitochondrion-associated, 1 979017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8818 AIFM3 apoptosis-inducing factor, mitochondrion-associated, 3 529815 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8819 AIM2 absent in melanoma 2 533364 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8820 AIMP1 500916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8821 AIMP2 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8822 AK1 adenylate kinase 1 307749 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8823 AK3 adenylate kinase 3 278343 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8824 AK3L1 adenylate kinase 3-like 1 275301 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8825 AKAP10 A kinase (PRKA) anchor protein 10 992199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8826 AKAP2 A kinase (PRKA) anchor protein 2 1370421 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8827 AKAP4 A kinase (PRKA) anchor protein 4 1312623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8828 AKAP5 A kinase (PRKA) anchor protein 5 653016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8829 AKAP7 A kinase (PRKA) anchor protein 7 575445 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8830 AKIRIN1 190125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8831 AKIRIN2 199251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8832 AKR1A1 aldo-keto reductase family 1, member A1 (aldehyde reductase) 512070 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8833 AKR1B10 aldo-keto reductase family 1, member B10 (aldose reductase) 501930 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8834 AKR1D1 aldo-keto reductase family 1, member D1 (delta 4-3-ketosteroid-5-beta-reductase) 515619 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8835 AKR1E2 486720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8836 AKR7A2 aldo-keto reductase family 7, member A2 (aflatoxin aldehyde reductase) 408642 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8837 AKR7L 289497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8838 AKT1S1 AKT1 substrate 1 (proline-rich) 129792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8839 ALAD aminolevulinate, delta-, dehydratase 507507 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8840 ALAS1 aminolevulinate, delta-, synthase 1 995241 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8841 ALB albumin 956202 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8842 ALDH16A1 aldehyde dehydrogenase 16 family, member A1 766584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8843 ALDH1A3 aldehyde dehydrogenase 1 family, member A3 714870 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8844 ALDH2 aldehyde dehydrogenase 2 family (mitochondrial) 624624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8845 ALDH3A1 aldehyde dehydrogenase 3 family, memberA1 565305 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8846 ALDH3A2 aldehyde dehydrogenase 3 family, member A2 724503 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8847 ALDH4A1 aldehyde dehydrogenase 4 family, member A1 405093 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8848 ALDH6A1 aldehyde dehydrogenase 6 family, member A1 836043 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8849 ALDH7A1 aldehyde dehydrogenase 7 family, member A1 758472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8850 ALDOC aldolase C, fructose-bisphosphate 571389 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8851 ALG12 asparagine-linked glycosylation 12 homolog (S. cerevisiae, alpha-1,6-mannosyltransferase) 415233 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8852 ALG14 asparagine-linked glycosylation 14 homolog (S. cerevisiae) 338169 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8853 ALG3 asparagine-linked glycosylation 3 homolog (S. cerevisiae, alpha-1,3-mannosyltransferase) 565812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8854 ALG5 asparagine-linked glycosylation 5 homolog (S. cerevisiae, dolichyl-phosphate beta-glucosyltransferase) 495339 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8855 ALG8 asparagine-linked glycosylation 8 homolog (S. cerevisiae, alpha-1,3-glucosyltransferase) 777738 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8856 ALKBH2 alkB, alkylation repair homolog 2 (E. coli) 404586 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8857 ALKBH3 alkB, alkylation repair homolog 3 (E. coli) 454779 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8858 ALKBH4 alkB, alkylation repair homolog 4 (E. coli) 319917 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8859 ALKBH6 alkB, alkylation repair homolog 6 (E. coli) 284427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8860 ALLC allantoicase 444132 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8861 ALOX12B arachidonate 12-lipoxygenase, 12R type 711828 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8862 ALOX15 arachidonate 15-lipoxygenase 899418 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8863 ALOX15B arachidonate 15-lipoxygenase, type B 867477 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8864 ALOX5 arachidonate 5-lipoxygenase 770640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8865 ALOX5AP arachidonate 5-lipoxygenase-activating protein 256542 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8866 ALS2 amyotrophic lateral sclerosis 2 (juvenile) 2590263 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8867 ALS2CR12 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 12 706758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8868 ALS2CR4 amyotrophic lateral sclerosis 2 (juvenile) chromosome region, candidate 4 606879 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8869 ALX1 ALX homeobox 1 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8870 ALX3 aristaless-like homeobox 3 385827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8871 ALX4 aristaless-like homeobox 4 328029 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8872 AMAC1 acyl-malonyl condensing enzyme 1 517647 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8873 AMAC1L2 acyl-malonyl condensing enzyme 1-like 2 517647 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8874 AMAC1L3 acyl-malonyl condensing enzyme 1-like 3 507507 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8875 AMFR autocrine motility factor receptor 640848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8876 AMIGO3 adhesion molecule with Ig-like domain 3 755937 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8877 AMMECR1L AMME chromosomal region gene 1-like 485199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8878 AMN1 antagonist of mitotic exit network 1 homolog (S. cerevisiae) 386841 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8879 AMOTL1 angiomotin like 1 1358760 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8880 AMOTL2 angiomotin like 2 1147341 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8881 AMPD2 adenosine monophosphate deaminase 2 (isoform L) 1302483 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8882 AMPD3 adenosine monophosphate deaminase (isoform E) 1209195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8883 AMTN amelotin 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8884 AMY2B amylase, alpha 2B (pancreatic) 799032 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8885 ANAPC10 anaphase promoting complex subunit 10 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8886 ANAPC11 APC11 anaphase promoting complex subunit 11 homolog (yeast) 93288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8887 ANAPC13 anaphase promoting complex subunit 13 118131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8888 ANAPC16 174915 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8889 ANAPC2 anaphase promoting complex subunit 2 709293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8890 ANAPC4 anaphase promoting complex subunit 4 1219842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8891 ANG angiogenin, ribonuclease, RNase A family, 5 227136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8892 ANGEL2 angel homolog 2 (Drosophila) 847197 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8893 ANGPT1 angiopoietin 1 777231 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8894 ANGPT2 angiopoietin 2 774189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8895 ANGPTL1 angiopoietin-like 1 756444 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8896 ANGPTL2 angiopoietin-like 2 759486 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8897 ANGPTL4 angiopoietin-like 4 461370 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8898 ANGPTL7 angiopoietin-like 7 537927 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8899 ANKDD1A ankyrin repeat and death domain containing 1A 648453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8900 ANKFN1 ankyrin-repeat and fibronectin type III domain containing 1 1196520 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8901 ANKHD1 ankyrin repeat and KH domain containing 1 3833427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8902 ANKIB1 ankyrin repeat and IBR domain containing 1 1687803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8903 ANKLE2 ankyrin repeat and LEM domain containing 2 902967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8904 ANKMY2 ankyrin repeat and MYND domain containing 2 692562 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8905 ANKRA2 ankyrin repeat, family A (RFXANK-like), 2 493818 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8906 ANKRD1 ankyrin repeat domain 1 (cardiac muscle) 504972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8907 ANKRD10 ankyrin repeat domain 10 520182 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8908 ANKRD13A ankyrin repeat domain 13A 878631 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8909 ANKRD13B ankyrin repeat domain 13B 363519 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8910 ANKRD13D ankyrin repeat domain 13 family, member D 440076 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8911 ANKRD2 ankyrin repeat domain 2 (stretch responsive muscle) 260598 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8912 ANKRD20A1 ankyrin repeat domain 20 family, member A1 526266 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8913 ANKRD22 ankyrin repeat domain 22 304200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8914 ANKRD23 ankyrin repeat domain 23 391404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8915 ANKRD27 ankyrin repeat domain 27 (VPS9 domain) 1545843 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8916 ANKRD29 ankyrin repeat domain 29 412698 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8917 ANKRD33 ankyrin repeat domain 33 732108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8918 ANKRD36B ankyrin repeat domain 36B 1202097 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8919 ANKRD37 ankyrin repeat domain 37 251472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8920 ANKRD39 ankyrin repeat domain 39 222573 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8921 ANKRD44 ankyrin repeat domain 44 1450020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8922 ANKRD45 ankyrin repeat domain 45 416247 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8923 ANKRD46 ankyrin repeat domain 46 354393 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8924 ANKRD49 ankyrin repeat domain 49 369096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8925 ANKRD5 ankyrin repeat domain 5 1200069 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8926 ANKRD54 ankyrin repeat domain 54 246909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8927 ANKRD55 ankyrin repeat domain 55 957723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8928 ANKRD56 ankyrin repeat domain 56 627666 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8929 ANKRD57 ankyrin repeat domain 57 327522 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8930 ANKS3 ankyrin repeat and sterile alpha motif domain containing 3 709800 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8931 ANKS6 ankyrin repeat and sterile alpha motif domain containing 6 1146327 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8932 ANO1 1057602 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8933 ANO4 1451541 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8934 ANO6 1388673 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8935 ANP32A acidic (leucine-rich) nuclear phosphoprotein 32 family, member A 342732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8936 ANP32B acidic (leucine-rich) nuclear phosphoprotein 32 family, member B 322959 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8937 ANP32D acidic (leucine-rich) nuclear phosphoprotein 32 family, member D 202800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8938 ANTXR2 anthrax toxin receptor 2 647439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8939 ANXA1 annexin A1 552123 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8940 ANXA10 annexin A10 517647 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8941 ANXA2 annexin A2 537927 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8942 ANXA5 annexin A5 505986 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8943 ANXA7 annexin A7 770133 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8944 ANXA9 annexin A9 550602 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8945 AOAH acyloxyacyl hydrolase (neutrophil) 969384 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -8946 AP1AR 436527 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8947 AP1M1 adaptor-related protein complex 1, mu 1 subunit 523224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8948 AP1S1 adaptor-related protein complex 1, sigma 1 subunit 248430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8949 AP1S2 adaptor-related protein complex 1, sigma 2 subunit 248430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8950 AP2B1 adaptor-related protein complex 2, beta 1 subunit 1469793 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8951 AP2S1 adaptor-related protein complex 2, sigma 1 subunit 221559 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8952 AP3B2 adaptor-related protein complex 3, beta 2 subunit 1464723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8953 AP3M2 adaptor-related protein complex 3, mu 2 subunit 653523 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8954 AP3S1 adaptor-related protein complex 3, sigma 1 subunit 270231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8955 AP3S2 adaptor-related protein complex 3, sigma 2 subunit 270231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8956 AP4B1 adaptor-related protein complex 4, beta 1 subunit 1145820 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8957 AP4S1 adaptor-related protein complex 4, sigma 1 subunit 253500 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8958 APBB1 amyloid beta (A4) precursor protein-binding, family B, member 1 (Fe65) 1062165 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8959 APBB1IP amyloid beta (A4) precursor protein-binding, family B, member 1 interacting protein 803595 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8960 APBB3 amyloid beta (A4) precursor protein-binding, family B, member 3 775710 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8961 APCDD1L adenomatosis polyposis coli down-regulated 1-like 410163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8962 APCS amyloid P component, serum 344760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8963 APEH N-acylaminoacyl-peptide hydrolase 1048476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8964 APH1A anterior pharynx defective 1 homolog A (C. elegans) 330057 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8965 APH1B anterior pharynx defective 1 homolog B (C. elegans) 345267 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8966 APIP APAF1 interacting protein 352872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8967 APITD1 apoptosis-inducing, TAF9-like domain 1 306735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8968 APLF 748332 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8969 APOA1BP apolipoprotein A-I binding protein 376194 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8970 APOA2 apolipoprotein A-II 159705 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8971 APOBEC1 apolipoprotein B mRNA editing enzyme, catalytic polypeptide 1 370617 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8972 APOBEC3A apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3A 226629 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8973 APOBEC3C apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3C 298623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8974 APOBEC3D apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3D (putative) 602823 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8975 APOBEC3F apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3F 612456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8976 APOBEC3G apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3G 591162 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8977 APOBEC3H apolipoprotein B mRNA editing enzyme, catalytic polypeptide-like 3H 287976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8978 APOC1 apolipoprotein C-I 133848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8979 APOC2 apolipoprotein C-II 161226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8980 APOC4 apolipoprotein C-IV 172887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8981 APOD apolipoprotein D 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8982 APOE apolipoprotein E 192660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8983 APOL3 apolipoprotein L, 3 619047 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8984 APOL4 apolipoprotein L, 4 537420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8985 APOL6 apolipoprotein L, 6 527280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8986 APOM apolipoprotein M 299637 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8987 APOO apolipoprotein O 312312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8988 APOOL apolipoprotein O-like 347295 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8989 APPBP2 amyloid beta precursor protein (cytoplasmic tail) binding protein 2 877617 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8990 APPL1 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 1 1064193 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8991 AQP1 aquaporin 1 (Colton blood group) 416754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8992 AQP11 aquaporin 11 286962 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8993 AQP12A aquaporin 12A 257556 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8994 AQP3 aquaporin 3 (Gill blood group) 312312 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8995 AQP6 aquaporin 6, kidney specific 438555 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -8996 AQP8 aquaporin 8 410670 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8997 AQP9 aquaporin 9 462384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -8998 AQPEP 1532661 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -8999 ARAP2 2658201 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9000 ARC activity-regulated cytoskeleton-associated protein 211926 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9001 AREG amphiregulin (schwannoma-derived growth factor) 400530 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9002 ARF3 ADP-ribosylation factor 3 284934 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9003 ARF4 ADP-ribosylation factor 4 287469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9004 ARF5 ADP-ribosylation factor 5 235248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9005 ARF6 ADP-ribosylation factor 6 269724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9006 ARFGAP2 ADP-ribosylation factor GTPase activating protein 2 753909 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9007 ARFIP2 ADP-ribosylation factor interacting protein 2 (arfaptin 2) 534378 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9008 ARGFX arginine-fifty homeobox 427401 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9009 ARGLU1 arginine and glutamate rich 1 376194 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9010 ARHGAP1 Rho GTPase activating protein 1 632736 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9011 ARHGAP10 Rho GTPase activating protein 10 1163565 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9012 ARHGAP11B Rho GTPase activating protein 11B 419796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9013 ARHGAP18 Rho GTPase activating protein 18 954174 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9014 ARHGAP19 Rho GTPase activating protein 19 777231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9015 ARHGAP22 Rho GTPase activating protein 22 498381 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9016 ARHGAP26 Rho GTPase activating protein 26 1264458 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9017 ARHGAP27 Rho GTPase activating protein 27 663663 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9018 ARHGAP30 Rho GTPase activating protein 30 1591980 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9019 ARHGAP33 1592487 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9020 ARHGAP4 Rho GTPase activating protein 4 762021 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9021 ARHGAP8 Rho GTPase activating protein 8 541476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9022 ARHGAP9 Rho GTPase activating protein 9 965328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9023 ARHGDIA Rho GDP dissociation inhibitor (GDI) alpha 245895 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9024 ARHGEF10 Rho guanine nucleotide exchange factor (GEF) 10 1713153 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9025 ARHGEF19 Rho guanine nucleotide exchange factor (GEF) 19 822861 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9026 ARHGEF35 611949 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9027 ARHGEF37 1050504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9028 ARHGEF38 342732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9029 ARHGEF5 Rho guanine nucleotide exchange factor (GEF) 5 1631019 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9030 ARID3A AT rich interactive domain 3A (BRIGHT-like) 365547 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9031 ARIH1 ariadne homolog, ubiquitin-conjugating enzyme E2 binding protein, 1 (Drosophila) 684957 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9032 ARIH2 ariadne homolog 2 (Drosophila) 779766 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9033 ARL1 ADP-ribosylation factor-like 1 274794 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9034 ARL10 ADP-ribosylation factor-like 10 202293 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9035 ARL13A ADP-ribosylation factor-like 13A 456807 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9036 ARL13B ADP-ribosylation factor-like 13B 610428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9037 ARL14 ADP-ribosylation factor-like 14 295581 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9038 ARL15 ADP-ribosylation factor-like 15 183534 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9039 ARL2 ADP-ribosylation factor-like 2 256542 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9040 ARL2BP ADP-ribosylation factor-like 2 binding protein 240318 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9041 ARL3 ADP-ribosylation factor-like 3 290511 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9042 ARL4A ADP-ribosylation factor-like 4A 307749 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9043 ARL4C ADP-ribosylation factor-like 4C 276315 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9044 ARL4D ADP-ribosylation factor-like 4D 196716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9045 ARL5B ADP-ribosylation factor-like 5B 260598 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9046 ARL6 ADP-ribosylation factor-like 6 298623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9047 ARL6IP1 ADP-ribosylation factor-like 6 interacting protein 1 302172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9048 ARL6IP5 ADP-ribosylation-like factor 6 interacting protein 5 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9049 ARL8A ADP-ribosylation factor-like 8A 280878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9050 ARL9 ADP-ribosylation factor-like 9 194688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9051 ARMC1 armadillo repeat containing 1 442611 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9052 ARMC10 armadillo repeat containing 10 409656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9053 ARMC2 armadillo repeat containing 2 1354704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9054 ARMC3 armadillo repeat containing 3 1364337 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9055 ARMC4 armadillo repeat containing 4 1626963 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9056 ARMC9 armadillo repeat containing 9 1053546 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9057 ARMCX3 armadillo repeat containing, X-linked 3 580008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9058 ARMCX6 armadillo repeat containing, X-linked 6 352365 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9059 ARMS2 age-related maculopathy susceptibility 2 152607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9060 ARNT2 aryl-hydrocarbon receptor nuclear translocator 2 1083459 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9061 ARNTL2 aryl hydrocarbon receptor nuclear translocator-like 2 985608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9062 ARPC3 actin related protein 2/3 complex, subunit 3, 21kDa 286455 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9063 ARPC4 actin related protein 2/3 complex, subunit 4, 20kDa 265668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9064 ARPC5 actin related protein 2/3 complex, subunit 5, 16kDa 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9065 ARPC5L actin related protein 2/3 complex, subunit 5-like 164775 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9066 ARPM1 373659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9067 ARPP19 153114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9068 ARRB2 arrestin, beta 2 603330 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9069 ARRDC1 arrestin domain containing 1 608400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9070 ARRDC2 arrestin domain containing 2 468975 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9071 ARRDC5 arrestin domain containing 5 527787 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9072 ARSD arylsulfatase D 908544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9073 ARSG arylsulfatase G 822354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9074 ARSI arylsulfatase family, member I 686985 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9075 ARSJ arylsulfatase family, member J 916656 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9076 ART1 ADP-ribosyltransferase 1 468468 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9077 ART3 ADP-ribosyltransferase 3 596739 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9078 ART5 ADP-ribosyltransferase 5 402558 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9079 ARV1 ARV1 homolog (S. cerevisiae) 414726 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9080 ASAH1 N-acylsphingosine amidohydrolase (acid ceramidase) 1 556686 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9081 ASAH2 N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2 395460 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9082 ASAH2B N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2B 120159 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9083 ASAM 568854 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9084 ASAP3 1067742 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9085 ASB11 ankyrin repeat and SOCS box-containing 11 568854 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9086 ASB12 ankyrin repeat and SOCS box-containing 12 475566 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9087 ASB13 ankyrin repeat and SOCS box-containing 13 315354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9088 ASB14 ankyrin repeat and SOCS box-containing 14 466947 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9089 ASB2 ankyrin repeat and SOCS box-containing 2 622089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9090 ASB3 ankyrin repeat and SOCS box-containing 3 807651 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9091 ASB4 ankyrin repeat and SOCS box-containing 4 696111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9092 ASCC2 activating signal cointegrator 1 complex subunit 2 1115907 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9093 ASCL1 achaete-scute complex homolog 1 (Drosophila) 227643 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9094 ASF1A ASF1 anti-silencing function 1 homolog A (S. cerevisiae) 263640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9095 ASF1B ASF1 anti-silencing function 1 homolog B (S. cerevisiae) 316875 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9096 ASGR1 asialoglycoprotein receptor 1 325494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9097 ASGR2 asialoglycoprotein receptor 2 416754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9098 ASIP agouti signaling protein, nonagouti homolog (mouse) 116610 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9099 ASMT acetylserotonin O-methyltransferase 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9100 ASNA1 arsA arsenite transporter, ATP-binding, homolog 1 (bacterial) 513591 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9101 ASNS asparagine synthetase 877110 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9102 ASPHD1 aspartate beta-hydroxylase domain containing 1 600288 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9103 ASPHD2 aspartate beta-hydroxylase domain containing 2 552123 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9104 ASPN asporin 593697 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9105 ASPSCR1 alveolar soft part sarcoma chromosome region, candidate 1 399516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9106 ASRGL1 asparaginase like 1 383799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9107 ATAD1 ATPase family, AAA domain containing 1 568854 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9108 ATAD3A ATPase family, AAA domain containing 3A 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9109 ATE1 arginyltransferase 1 825396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9110 ATF1 activating transcription factor 1 425880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9111 ATF2 activating transcription factor 2 793962 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9112 ATF6B 1089543 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9113 ATF7 activating transcription factor 7 775203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9114 ATF7IP2 activating transcription factor 7 interacting protein 2 1059123 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9115 ATG10 ATG10 autophagy related 10 homolog (S. cerevisiae) 348309 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9116 ATG12 ATG12 autophagy related 12 homolog (S. cerevisiae) 222573 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9117 ATG3 ATG3 autophagy related 3 homolog (S. cerevisiae) 466440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9118 ATG4C ATG4 autophagy related 4 homolog C (S. cerevisiae) 718419 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9119 ATG5 ATG5 autophagy related 5 homolog (S. cerevisiae) 433992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9120 ATL1 878631 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9121 ATL2 846690 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9122 ATL3 825396 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9123 ATOH8 atonal homolog 8 (Drosophila) 298623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9124 ATOX1 ATX1 antioxidant protein 1 homolog (yeast) 103935 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9125 ATP11B ATPase, class VI, type 11B 1836861 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9126 ATP1B2 ATPase, Na+/K+ transporting, beta 2 polypeptide 397995 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9127 ATP1B3 ATPase, Na+/K+ transporting, beta 3 polypeptide 336648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9128 ATP2A2 ATPase, Ca++ transporting, cardiac muscle, slow twitch 2 1574235 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9129 ATP2A3 ATPase, Ca++ transporting, ubiquitous 1071291 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9130 ATP4B ATPase, H+/K+ exchanging, beta polypeptide 327522 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9131 ATP5E ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit 64896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9132 ATP5G1 ATP synthase, H+ transporting, mitochondrial F0 complex, subunit C1 (subunit 9) 216489 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9133 ATP5G2 ATP synthase, H+ transporting, mitochondrial F0 complex, subunit C2 (subunit 9) 275301 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9134 ATP5G3 ATP synthase, H+ transporting, mitochondrial F0 complex, subunit C3 (subunit 9) 205842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9135 ATP5H ATP synthase, H+ transporting, mitochondrial F0 complex, subunit d 256542 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9136 ATP5I ATP synthase, H+ transporting, mitochondrial F0 complex, subunit E 51207 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9137 ATP5J ATP synthase, H+ transporting, mitochondrial F0 complex, subunit F6 175422 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9138 ATP5J2 ATP synthase, H+ transporting, mitochondrial F0 complex, subunit F2 160719 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9139 ATP5L ATP synthase, H+ transporting, mitochondrial F0 complex, subunit G 138411 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9140 ATP5O ATP synthase, H+ transporting, mitochondrial F1 complex, O subunit (oligomycin sensitivity conferring protein) 319410 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9141 ATP5S ATP synthase, H+ transporting, mitochondrial F0 complex, subunit s (factor B) 364026 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9142 ATP5SL ATP5S-like 404586 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9143 ATP6AP1 ATPase, H+ transporting, lysosomal accessory protein 1 645918 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9144 ATP6AP1L 350337 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9145 ATP6AP2 ATPase, H+ transporting, lysosomal accessory protein 2 531336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9146 ATP6V0A1 ATPase, H+ transporting, lysosomal V0 subunit a1 1327833 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9147 ATP6V0C ATPase, H+ transporting, lysosomal 16kDa, V0 subunit c 201279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9148 ATP6V0D1 ATPase, H+ transporting, lysosomal 38kDa, V0 subunit d1 551616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9149 ATP6V1A ATPase, H+ transporting, lysosomal 70kDa, V1 subunit A 968370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9150 ATP6V1B1 ATPase, H+ transporting, lysosomal 56/58kDa, V1 subunit B1 (Renal tubular acidosis with deafness) 774189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9151 ATP6V1C2 ATPase, H+ transporting, lysosomal 42kDa, V1 subunit C2 632736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9152 ATP6V1D ATPase, H+ transporting, lysosomal 34kDa, V1 subunit D 395460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9153 ATP6V1E1 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E1 346281 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9154 ATP6V1E2 ATPase, H+ transporting, lysosomal 31kDa, V1 subunit E2 347295 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9155 ATP6V1F ATPase, H+ transporting, lysosomal 14kDa, V1 subunit F 174915 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9156 ATP6V1G1 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G1 125229 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9157 ATP6V1G3 ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G3 212433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9158 ATP8A2 ATPase, aminophospholipid transporter-like, class I, type 8A, member 2 1781091 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9159 ATP9B ATPase, class II, type 9B 1631526 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9160 ATPAF2 ATP synthase mitochondrial F1 complex assembly factor 2 370110 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9161 ATRIP ATR interacting protein 1103739 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9162 ATXN3 ataxin 3 567333 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9163 ATXN7L2 ataxin 7-like 2 1055574 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9164 ATXN7L3 ataxin 7-like 3 564291 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9165 AUH AU RNA binding protein/enoyl-Coenzyme A hydratase 402558 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9166 AURKB aurora kinase B 506493 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9167 AVEN apoptosis, caspase activation inhibitor 426894 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9168 AVL9 970398 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9169 AVPR1A arginine vasopressin receptor 1A 582543 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9170 AVPR2 arginine vasopressin receptor 2 (nephrogenic diabetes insipidus) 568347 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9171 AXIN2 axin 2 (conductin, axil) 1197534 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9172 AZI1 5-azacytidine induced 1 510549 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9173 B3GALNT2 beta-1,3-N-acetylgalactosaminyltransferase 2 727545 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9174 B3GALT2 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 2 645411 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9175 B3GALTL beta 1,3-galactosyltransferase-like 751881 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9176 B3GAT1 beta-1,3-glucuronyltransferase 1 (glucuronosyltransferase P) 245895 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9177 B3GAT2 beta-1,3-glucuronyltransferase 2 (glucuronosyltransferase S) 199251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9178 B3GNT5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 578487 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9179 B3GNTL1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like 1 255528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9180 B4GALNT1 beta-1,4-N-acetyl-galactosaminyl transferase 1 716898 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9181 B4GALNT2 beta-1,4-N-acetyl-galactosaminyl transferase 2 793962 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9182 B4GALT2 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 2 494325 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9183 B4GALT4 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 4 536913 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9184 B4GALT5 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 5 549588 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9185 B4GALT7 xylosylprotein beta 1,4-galactosyltransferase, polypeptide 7 (galactosyltransferase I) 466947 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9186 B9D1 B9 protein domain 1 292032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9187 BAALC brain and acute leukemia, cytoplasmic 145002 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9188 BACE2 beta-site APP-cleaving enzyme 2 593697 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9189 BAG1 BCL2-associated athanogene 458835 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9190 BAG2 BCL2-associated athanogene 2 269217 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9191 BAG5 BCL2-associated athanogene 5 747825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9192 BAGE B melanoma antigen 63882 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9193 BAGE2 B melanoma antigen family, member 2 62868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9194 BAGE3 B melanoma antigen family, member 3 62868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9195 BAGE4 B melanoma antigen family, member 4 63882 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9196 BAGE5 B melanoma antigen family, member 5 63882 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9197 BAMBI BMP and activin membrane-bound inhibitor homolog (Xenopus laevis) 362505 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9198 BANF1 barrier to autointegration factor 1 140946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9199 BANF2 barrier to autointegration factor 2 143988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9200 BANP BTG3 associated nuclear protein 360477 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9201 BARD1 BRCA1 associated RING domain 1 1123512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9202 BARHL1 BarH-like homeobox 1 467454 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9203 BARHL2 BarH-like homeobox 2 361491 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9204 BASP1 brain abundant, membrane attached signal protein 1 220038 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9205 BAT1 HLA-B associated transcript 1 672789 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9206 BAT3 HLA-B associated transcript 3 1739010 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9207 BAT4 HLA-B associated transcript 4 547053 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9208 BATF basic leucine zipper transcription factor, ATF-like 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9209 BATF2 basic leucine zipper transcription factor, ATF-like 2 390390 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9210 BATF3 basic leucine zipper transcription factor, ATF-like 3 153114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9211 BAX BCL2-associated X protein 379236 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9212 BBOX1 butyrobetaine (gamma), 2-oxoglutarate dioxygenase (gamma-butyrobetaine hydroxylase) 1 604344 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9213 BBS1 Bardet-Biedl syndrome 1 910572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9214 BBS10 Bardet-Biedl syndrome 10 1057095 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9215 BBS12 Bardet-Biedl syndrome 12 1083459 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9216 BBS4 Bardet-Biedl syndrome 4 809172 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9217 BCAM basal cell adhesion molecule (Lutheran blood group) 849225 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9218 BCAP29 B-cell receptor-associated protein 29 547053 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9219 BCAP31 B-cell receptor-associated protein 31 412191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9220 BCAS2 breast carcinoma amplified sequence 2 357942 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9221 BCAS4 breast carcinoma amplified sequence 4 227136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9222 BCCIP BRCA2 and CDKN1A interacting protein 610935 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9223 BCDIN3D BCDIN3 domain containing 449709 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9224 BCKDHB branched chain keto acid dehydrogenase E1, beta polypeptide (maple syrup urine disease) 516633 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9225 BCL10 B-cell CLL/lymphoma 10 359463 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9226 BCL2 B-cell CLL/lymphoma 2 193167 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9227 BCL2A1 BCL2-related protein A1 302172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9228 BCL2L1 BCL2-like 1 359970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9229 BCL2L10 BCL2-like 10 (apoptosis facilitator) 80613 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9230 BCL2L14 BCL2-like 14 (apoptosis facilitator) 552123 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9231 BCL2L15 BCL2-like 15 257556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9232 BCL2L2 BCL2-like 2 292539 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9233 BCL3 B-cell CLL/lymphoma 3 387855 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9234 BCL7A B-cell CLL/lymphoma 7A 316368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9235 BCL7C B-cell CLL/lymphoma 7C 331578 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9236 BCO2 beta-carotene oxygenase 2 906516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9237 BCS1L BCS1-like (yeast) 653016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9238 BDH1 3-hydroxybutyrate dehydrogenase, type 1 535392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9239 BDH2 3-hydroxybutyrate dehydrogenase, type 2 310284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9240 BDKRB2 bradykinin receptor B2 600288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9241 BECN1 beclin 1, autophagy related 665184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9242 BEND6 436020 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9243 BEST4 bestrophin 4 424866 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9244 BET1 blocked early in transport 1 homolog (S. cerevisiae) 189111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9245 BET1L blocked early in transport 1 homolog (S. cerevisiae)-like 229671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9246 BEX1 brain expressed, X-linked 1 193674 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9247 BEX2 brain expressed X-linked 2 200772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9248 BEX4 BEX family member 4 186069 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9249 BEX5 BEX family member 5 172380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9250 BFSP2 beaded filament structural protein 2, phakinin 618033 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9251 BGLAP bone gamma-carboxyglutamate (gla) protein (osteocalcin) 148044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9252 BHLHB9 basic helix-loop-helix domain containing, class B, 9 835536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9253 BICC1 bicaudal C homolog 1 (Drosophila) 1427205 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9254 BIK BCL2-interacting killer (apoptosis-inducing) 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9255 BIN3 bridging integrator 3 268203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9256 BIRC2 baculoviral IAP repeat-containing 2 957723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9257 BIRC3 baculoviral IAP repeat-containing 3 936429 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9258 BIRC5 baculoviral IAP repeat-containing 5 (survivin) 301158 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9259 BIVM basic, immunoglobulin-like variable motif containing 795483 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9260 BLID BH3-like motif containing, cell death inducer 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9261 BLMH bleomycin hydrolase 628173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9262 BLVRA biliverdin reductase A 465933 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9263 BLVRB biliverdin reductase B (flavin reductase (NADPH)) 196716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9264 BMF Bcl2 modifying factor 286455 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9265 BMP15 bone morphogenetic protein 15 501423 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9266 BMP7 bone morphogenetic protein 7 (osteogenic protein 1) 457314 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9267 BMP8A bone morphogenetic protein 8a 192153 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9268 BMPR1A bone morphogenetic protein receptor, type IA 833001 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9269 BNIP1 BCL2/adenovirus E1B 19kDa interacting protein 1 427908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9270 BNIP2 BCL2/adenovirus E1B 19kDa interacting protein 2 493818 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9271 BNIP3 BCL2/adenovirus E1B 19kDa interacting protein 3 283413 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9272 BNIP3L BCL2/adenovirus E1B 19kDa interacting protein 3-like 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9273 BNIPL BCL2/adenovirus E1B 19kD interacting protein like 564798 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9274 BOC Boc homolog (mouse) 1674114 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9275 BOD1 183027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9276 BOLA1 bolA homolog 1 (E. coli) 158184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9277 BOLA3 bolA homolog 3 (E. coli) 178971 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9278 BOLL bol, boule-like (Drosophila) 459849 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9279 BPGM 2,3-bisphosphoglycerate mutase 399516 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9280 BPHL biphenyl hydrolase-like (serine hydrolase; breast epithelial mucin-associated antigen) 402051 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9281 BPIL1 bactericidal/permeability-increasing protein-like 1 671268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9282 BPIL2 bactericidal/permeability-increasing protein-like 2 803088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9283 BPIL3 bactericidal/permeability-increasing protein-like 3 720447 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9284 BPNT1 3'(2'), 5'-bisphosphate nucleotidase 1 486213 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9285 BRAP BRCA1 associated protein 882687 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9286 BRD1 bromodomain containing 1 1160016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9287 BRD2 bromodomain containing 2 1244178 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9288 BRD3 bromodomain containing 3 507000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9289 BRD4 bromodomain containing 4 1346085 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9290 BRD9 bromodomain containing 9 733122 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9291 BRI3 brain protein I3 122694 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9292 BRI3BP BRI3 binding protein 244881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9293 BRMS1L breast cancer metastasis-suppressor 1-like 439062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9294 BRP44 brain protein 44 147537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9295 BRPF1 bromodomain and PHD finger containing, 1 1845987 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9296 BSPRY B-box and SPRY domain containing 517647 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9297 BST1 bone marrow stromal cell antigen 1 406107 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9298 BTBD1 BTB (POZ) domain containing 1 545532 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9299 BTBD16 BTB (POZ) domain containing 16 801567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9300 BTBD6 BTB (POZ) domain containing 6 558714 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9301 BTBD8 BTB (POZ) domain containing 8 545025 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9302 BTF3 basic transcription factor 3 258063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9303 BTG1 B-cell translocation gene 1, anti-proliferative 188604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9304 BTG2 BTG family, member 2 176943 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9305 BTG3 BTG family, member 3 392925 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9306 BTG4 B-cell translocation gene 4 350844 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9307 BTLA B and T lymphocyte associated 451230 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9308 BTN3A2 butyrophilin, subfamily 3, member A2 523731 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9309 BTRC beta-transducin repeat containing 923754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9310 BUB1 BUB1 budding uninhibited by benzimidazoles 1 homolog (yeast) 1687296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9311 BUB1B BUB1 budding uninhibited by benzimidazoles 1 homolog beta (yeast) 1625442 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9312 BUB3 BUB3 budding uninhibited by benzimidazoles 3 homolog (yeast) 521703 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9313 BUD13 BUD13 homolog (S. cerevisiae) 888771 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9314 BUD31 BUD31 homolog (S. cerevisiae) 228657 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9315 BYSL bystin-like 661128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9316 BZW2 basic leucine zipper and W2 domains 2 648453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9317 C10orf10 chromosome 10 open reading frame 10 208377 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9318 C10orf11 chromosome 10 open reading frame 11 314847 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9319 C10orf111 chromosome 10 open reading frame 111 239304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9320 C10orf113 chromosome 10 open reading frame 113 259077 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9321 C10orf114 chromosome 10 open reading frame 114 112554 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9322 C10orf116 chromosome 10 open reading frame 116 57798 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9323 C10orf118 chromosome 10 open reading frame 118 1397799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9324 C10orf120 chromosome 10 open reading frame 120 517140 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -9325 C10orf27 chromosome 10 open reading frame 27 544518 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9326 C10orf35 chromosome 10 open reading frame 35 159198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9327 C10orf54 chromosome 10 open reading frame 54 215475 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9328 C10orf55 chromosome 10 open reading frame 55 105456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9329 C10orf57 chromosome 10 open reading frame 57 150579 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9330 C10orf58 chromosome 10 open reading frame 58 359970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9331 C10orf62 chromosome 10 open reading frame 62 342732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9332 C10orf67 chromosome 10 open reading frame 67 202800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9333 C10orf76 chromosome 10 open reading frame 76 1100190 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9334 C10orf78 chromosome 10 open reading frame 78 373659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9335 C10orf82 chromosome 10 open reading frame 82 243867 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9336 C10orf84 chromosome 10 open reading frame 84 370110 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9337 C10orf90 chromosome 10 open reading frame 90 1082952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9338 C10orf91 chromosome 10 open reading frame 91 138918 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9339 C10orf93 chromosome 10 open reading frame 93 457314 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9340 C10orf99 chromosome 10 open reading frame 99 130806 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9341 C11orf10 chromosome 11 open reading frame 10 127257 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9342 C11orf17 chromosome 11 open reading frame 17 216489 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9343 C11orf2 chromosome 11 open reading frame2 489762 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9344 C11orf24 chromosome 11 open reading frame 24 245895 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9345 C11orf31 chromosome 11 open reading frame 31 96837 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9346 C11orf42 chromosome 11 open reading frame 42 514098 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9347 C11orf46 chromosome 11 open reading frame 46 403065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9348 C11orf48 chromosome 11 open reading frame 48 348309 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9349 C11orf51 chromosome 11 open reading frame 51 193674 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9350 C11orf53 chromosome 11 open reading frame 53 366561 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9351 C11orf54 chromosome 11 open reading frame 54 418782 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9352 C11orf57 chromosome 11 open reading frame 57 457314 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9353 C11orf58 chromosome 11 open reading frame 58 281385 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9354 C11orf59 chromosome 11 open reading frame 59 164268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9355 C11orf61 chromosome 11 open reading frame 61 520182 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9356 C11orf65 chromosome 11 open reading frame 65 493818 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9357 C11orf67 chromosome 11 open reading frame 67 193167 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9358 C11orf68 chromosome 11 open reading frame 68 385827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9359 C11orf70 chromosome 11 open reading frame 70 361998 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9360 C11orf71 chromosome 11 open reading frame 71 134862 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9361 C11orf73 chromosome 11 open reading frame 73 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9362 C11orf74 chromosome 11 open reading frame 74 347802 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9363 C11orf75 chromosome 11 open reading frame 75 93288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9364 C11orf80 chromosome 11 open reading frame 80 613977 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9365 C11orf82 chromosome 11 open reading frame 82 1527591 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9366 C11orf83 111540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9367 C11orf88 270738 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9368 C11orf9 chromosome 11 open reading frame 9 1157481 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9369 C11orf92 179478 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9370 C11orf94 103428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9371 C12orf10 chromosome 12 open reading frame 10 587613 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9372 C12orf12 chromosome 12 open reading frame 12 410163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9373 C12orf23 chromosome 12 open reading frame 23 182013 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9374 C12orf24 chromosome 12 open reading frame 24 356421 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9375 C12orf26 chromosome 12 open reading frame 26 926289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9376 C12orf29 chromosome 12 open reading frame 29 462384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9377 C12orf34 chromosome 12 open reading frame 34 264147 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9378 C12orf41 chromosome 12 open reading frame 41 709800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9379 C12orf43 chromosome 12 open reading frame 43 364026 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9380 C12orf45 chromosome 12 open reading frame 45 230685 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9381 C12orf49 chromosome 12 open reading frame 49 280878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9382 C12orf5 chromosome 12 open reading frame 5 424359 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9383 C12orf52 chromosome 12 open reading frame 52 273273 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9384 C12orf53 chromosome 12 open reading frame 53 376194 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9385 C12orf54 chromosome 12 open reading frame 54 208884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9386 C12orf56 chromosome 12 open reading frame 56 595725 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9387 C12orf59 chromosome 12 open reading frame 59 257556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9388 C12orf60 chromosome 12 open reading frame 60 376194 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9389 C12orf62 chromosome 12 open reading frame 62 90246 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9390 C12orf65 chromosome 12 open reading frame 65 258063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9391 C12orf66 684450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9392 C12orf69 345774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9393 C12orf72 406107 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9394 C12orf74 302172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9395 C12orf76 123708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9396 C13orf1 chromosome 13 open reading frame 1 254007 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9397 C13orf15 chromosome 13 open reading frame 15 96837 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9398 C13orf16 chromosome 13 open reading frame 16 241332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9399 C13orf18 chromosome 13 open reading frame 18 1017549 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9400 C13orf27 chromosome 13 open reading frame 27 356928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9401 C13orf28 chromosome 13 open reading frame 28 277329 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9402 C13orf30 chromosome 13 open reading frame 30 219024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9403 C13orf31 chromosome 13 open reading frame 31 665691 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9404 C13orf36 166296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9405 C13orf37 90246 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9406 C14orf1 chromosome 14 open reading frame 1 222573 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9407 C14orf101 chromosome 14 open reading frame 101 1026168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9408 C14orf104 chromosome 14 open reading frame 104 530322 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9409 C14orf109 chromosome 14 open reading frame 109 262626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9410 C14orf118 chromosome 14 open reading frame 118 775203 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9411 C14orf119 chromosome 14 open reading frame 119 216489 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9412 C14orf126 chromosome 14 open reading frame 126 204828 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9413 C14orf129 chromosome 14 open reading frame 129 216996 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9414 C14orf135 chromosome 14 open reading frame 135 1446471 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9415 C14orf138 chromosome 14 open reading frame 138 227643 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9416 C14orf142 chromosome 14 open reading frame 142 157677 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9417 C14orf143 chromosome 14 open reading frame 143 261105 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9418 C14orf147 chromosome 14 open reading frame 147 54756 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9419 C14orf148 chromosome 14 open reading frame 148 595725 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9420 C14orf149 chromosome 14 open reading frame 149 290511 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9421 C14orf153 chromosome 14 open reading frame 153 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9422 C14orf156 chromosome 14 open reading frame 156 175422 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9423 C14orf159 chromosome 14 open reading frame 159 970398 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9424 C14orf166 chromosome 14 open reading frame 166 355914 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9425 C14orf169 chromosome 14 open reading frame 169 651495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9426 C14orf177 chromosome 14 open reading frame 177 195702 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9427 C14orf178 chromosome 14 open reading frame 178 185562 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9428 C14orf179 chromosome 14 open reading frame 179 386334 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9429 C14orf181 chromosome 14 open reading frame 181 248937 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9430 C14orf182 170352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9431 C14orf183 371631 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9432 C14orf184 114075 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9433 C14orf2 chromosome 14 open reading frame 2 95823 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9434 C14orf28 chromosome 14 open reading frame 28 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9435 C14orf4 chromosome 14 open reading frame 4 423852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9436 C14orf45 chromosome 14 open reading frame 45 819312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9437 C14orf79 chromosome 14 open reading frame 79 505986 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9438 C14orf93 chromosome 14 open reading frame 93 831480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9439 C15orf23 chromosome 15 open reading frame 23 488241 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9440 C15orf24 chromosome 15 open reading frame 24 379743 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9441 C15orf26 chromosome 15 open reading frame 26 436527 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9442 C15orf27 chromosome 15 open reading frame 27 787371 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9443 C15orf29 chromosome 15 open reading frame 29 476073 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9444 C15orf38 chromosome 15 open reading frame 38 308763 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9445 C15orf40 chromosome 15 open reading frame 40 279357 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9446 C15orf41 chromosome 15 open reading frame 41 415740 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9447 C15orf43 chromosome 15 open reading frame 43 350337 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9448 C15orf44 chromosome 15 open reading frame 44 811707 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9449 C15orf48 chromosome 15 open reading frame 48 135876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9450 C15orf53 chromosome 15 open reading frame 53 277836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9451 C15orf54 chromosome 15 open reading frame 54 281892 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9452 C15orf57 304707 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9453 C15orf59 451230 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9454 C15orf60 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9455 C15orf63 205335 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9456 C16orf45 chromosome 16 open reading frame 45 208884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9457 C16orf46 chromosome 16 open reading frame 46 620568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9458 C16orf48 chromosome 16 open reading frame 48 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9459 C16orf5 chromosome 16 open reading frame 5 128778 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9460 C16orf53 chromosome 16 open reading frame 53 147537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9461 C16orf55 chromosome 16 open reading frame 55 116610 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9462 C16orf57 chromosome 16 open reading frame 57 367068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9463 C16orf59 chromosome 16 open reading frame 59 214461 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9464 C16orf61 chromosome 16 open reading frame 61 127764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9465 C16orf63 chromosome 16 open reading frame 63 276315 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9466 C16orf68 chromosome 16 open reading frame 68 515112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9467 C16orf70 chromosome 16 open reading frame 70 641355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9468 C16orf72 chromosome 16 open reading frame 72 311298 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9469 C16orf73 chromosome 16 open reading frame 73 338169 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9470 C16orf75 chromosome 16 open reading frame 75 77571 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9471 C16orf78 chromosome 16 open reading frame 78 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9472 C16orf80 chromosome 16 open reading frame 80 262626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9473 C16orf82 chromosome 16 open reading frame 82 225615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9474 C16orf87 208377 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9475 C16orf88 706251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9476 C16orf92 201786 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9477 C17orf101 448695 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9478 C17orf103 49179 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9479 C17orf108 49179 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9480 C17orf28 chromosome 17 open reading frame 28 896376 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9481 C17orf37 chromosome 17 open reading frame 37 85683 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9482 C17orf39 chromosome 17 open reading frame 39 245895 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9483 C17orf42 chromosome 17 open reading frame 42 537420 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9484 C17orf48 chromosome 17 open reading frame 48 527787 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9485 C17orf49 chromosome 17 open reading frame 49 242853 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9486 C17orf56 chromosome 17 open reading frame 56 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9487 C17orf57 chromosome 17 open reading frame 57 1526070 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9488 C17orf58 chromosome 17 open reading frame 58 203814 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9489 C17orf60 chromosome 17 open reading frame 60 541476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9490 C17orf61 chromosome 17 open reading frame 61 136383 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9491 C17orf62 chromosome 17 open reading frame 62 204321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9492 C17orf63 chromosome 17 open reading frame 63 262626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9493 C17orf65 chromosome 17 open reading frame 65 95316 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9494 C17orf70 chromosome 17 open reading frame 70 343239 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9495 C17orf75 chromosome 17 open reading frame 75 513591 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9496 C17orf76 chromosome 17 open reading frame 76 205842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9497 C17orf79 chromosome 17 open reading frame 79 237276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9498 C17orf80 chromosome 17 open reading frame 80 949611 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9499 C17orf85 chromosome 17 open reading frame 85 553137 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9500 C17orf87 chromosome 17 open reading frame 87 219531 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9501 C17orf90 chromosome 17 open reading frame 90 169845 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9502 C17orf98 241839 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9503 C18orf1 chromosome 18 open reading frame 1 462384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9504 C18orf10 chromosome 18 open reading frame 10 439062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9505 C18orf21 chromosome 18 open reading frame 21 324987 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9506 C18orf22 chromosome 18 open reading frame 22 455286 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9507 C18orf26 chromosome 18 open reading frame 26 327015 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9508 C18orf32 chromosome 18 open reading frame 32 121173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9509 C18orf45 chromosome 18 open reading frame 45 443625 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9510 C18orf62 chromosome 18 open reading frame 62 161226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9511 C18orf8 chromosome 18 open reading frame 8 1015014 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9512 C19orf12 chromosome 19 open reading frame 12 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9513 C19orf18 chromosome 19 open reading frame 18 340704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9514 C19orf2 chromosome 19 open reading frame 2 776217 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9515 C19orf21 chromosome 19 open reading frame 21 547053 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9516 C19orf36 chromosome 19 open reading frame 36 121680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9517 C19orf42 chromosome 19 open reading frame 42 125229 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9518 C19orf47 chromosome 19 open reading frame 47 504465 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9519 C19orf48 chromosome 19 open reading frame 48 181506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9520 C19orf50 chromosome 19 open reading frame 50 224094 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9521 C19orf55 chromosome 19 open reading frame 55 436020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9522 C19orf56 chromosome 19 open reading frame 56 169845 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9523 C19orf66 367068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9524 C19orf73 199758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9525 C19orf75 311298 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9526 C19orf76 84162 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9527 C1D 224094 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9528 C1QA complement component 1, q subcomponent, A chain 321438 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9529 C1QB complement component 1, q subcomponent, B chain 390390 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9530 C1QBP complement component 1, q subcomponent binding protein 322959 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9531 C1QC complement component 1, q subcomponent, C chain 284427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9532 C1QL1 complement component 1, q subcomponent-like 1 140439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9533 C1QL2 complement component 1, q subcomponent-like 2 212433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9534 C1QL3 complement component 1, q subcomponent-like 3 172887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9535 C1QTNF1 C1q and tumor necrosis factor related protein 1 435006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9536 C1QTNF2 C1q and tumor necrosis factor related protein 2 363519 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9537 C1QTNF3 C1q and tumor necrosis factor related protein 3 498888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9538 C1QTNF5 C1q and tumor necrosis factor related protein 5 147030 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9539 C1QTNF9 C1q and tumor necrosis factor related protein 9 434499 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9540 C1QTNF9B 514098 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9541 C1R complement component 1, r subcomponent 929331 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9542 C1RL complement component 1, r subcomponent-like 713349 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9543 C1S complement component 1, s subcomponent 1070277 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9544 C1orf100 chromosome 1 open reading frame 100 233220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9545 C1orf104 chromosome 1 open reading frame 104 362505 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9546 C1orf105 chromosome 1 open reading frame 105 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9547 C1orf106 chromosome 1 open reading frame 106 719433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9548 C1orf107 chromosome 1 open reading frame 107 1175733 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9549 C1orf109 chromosome 1 open reading frame 109 317889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9550 C1orf110 chromosome 1 open reading frame 110 466947 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9551 C1orf111 chromosome 1 open reading frame 111 404586 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9552 C1orf113 chromosome 1 open reading frame 113 562770 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9553 C1orf115 chromosome 1 open reading frame 115 62868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9554 C1orf116 chromosome 1 open reading frame 116 921726 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9555 C1orf123 chromosome 1 open reading frame 123 253500 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9556 C1orf127 chromosome 1 open reading frame 127 868491 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9557 C1orf128 chromosome 1 open reading frame 128 232206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9558 C1orf131 chromosome 1 open reading frame 131 461370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9559 C1orf141 chromosome 1 open reading frame 141 622089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9560 C1orf146 chromosome 1 open reading frame 146 285441 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9561 C1orf150 chromosome 1 open reading frame 150 216996 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9562 C1orf151 chromosome 1 open reading frame 151 93795 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9563 C1orf156 chromosome 1 open reading frame 156 569361 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9564 C1orf158 chromosome 1 open reading frame 158 304707 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9565 C1orf161 chromosome 1 open reading frame 161 564291 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9566 C1orf162 chromosome 1 open reading frame 162 247416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9567 C1orf168 chromosome 1 open reading frame 168 1149369 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9568 C1orf172 chromosome 1 open reading frame 172 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9569 C1orf174 chromosome 1 open reading frame 174 369603 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9570 C1orf182 chromosome 1 open reading frame 182 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9571 C1orf189 chromosome 1 open reading frame 189 163254 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9572 C1orf190 chromosome 1 open reading frame 190 341211 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9573 C1orf201 chromosome 1 open reading frame 201 452244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9574 C1orf21 chromosome 1 open reading frame 21 195702 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9575 C1orf213 chromosome 1 open reading frame 213 202293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9576 C1orf216 chromosome 1 open reading frame 216 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9577 C1orf227 154635 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9578 C1orf25 chromosome 1 open reading frame 25 1066221 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9579 C1orf31 chromosome 1 open reading frame 31 194688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9580 C1orf35 chromosome 1 open reading frame 35 135369 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9581 C1orf43 chromosome 1 open reading frame 43 400530 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9582 C1orf52 chromosome 1 open reading frame 52 242853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9583 C1orf53 chromosome 1 open reading frame 53 92274 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9584 C1orf55 chromosome 1 open reading frame 55 701688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9585 C1orf56 chromosome 1 open reading frame 56 485199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9586 C1orf57 chromosome 1 open reading frame 57 281385 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9587 C1orf59 chromosome 1 open reading frame 59 613470 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9588 C1orf63 chromosome 1 open reading frame 63 393432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9589 C1orf64 chromosome 1 open reading frame 64 219024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9590 C1orf74 chromosome 1 open reading frame 74 412698 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9591 C1orf77 chromosome 1 open reading frame 77 388869 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9592 C1orf83 chromosome 1 open reading frame 83 326001 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9593 C1orf84 chromosome 1 open reading frame 84 241839 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9594 C1orf87 chromosome 1 open reading frame 87 854295 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9595 C1orf88 chromosome 1 open reading frame 88 304200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9596 C1orf91 chromosome 1 open reading frame 91 219024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9597 C1orf92 chromosome 1 open reading frame 92 497367 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9598 C1orf93 chromosome 1 open reading frame 93 144495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9599 C1orf95 chromosome 1 open reading frame 95 114075 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9600 C20orf103 chromosome 20 open reading frame 103 436527 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9601 C20orf107 chromosome 20 open reading frame 107 265668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9602 C20orf11 chromosome 20 open reading frame 11 356421 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9603 C20orf111 chromosome 20 open reading frame 111 451737 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9604 C20orf112 chromosome 20 open reading frame 112 648960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9605 C20orf118 chromosome 20 open reading frame 118 340704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9606 C20orf141 chromosome 20 open reading frame 141 256542 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9607 C20orf165 chromosome 20 open reading frame 165 350844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9608 C20orf166 chromosome 20 open reading frame 166 169338 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9609 C20orf194 chromosome 20 open reading frame 194 1787175 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9610 C20orf195 chromosome 20 open reading frame 195 422331 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9611 C20orf196 chromosome 20 open reading frame 196 317382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9612 C20orf197 chromosome 20 open reading frame 197 197223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9613 C20orf20 chromosome 20 open reading frame 20 140946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9614 C20orf24 chromosome 20 open reading frame 24 233220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9615 C20orf27 chromosome 20 open reading frame 27 313326 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9616 C20orf29 chromosome 20 open reading frame 29 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9617 C20orf3 chromosome 20 open reading frame 3 602316 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9618 C20orf30 chromosome 20 open reading frame 30 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9619 C20orf4 chromosome 20 open reading frame 4 591669 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9620 C20orf46 chromosome 20 open reading frame 46 394953 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9621 C20orf54 chromosome 20 open reading frame 54 580008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9622 C20orf71 chromosome 20 open reading frame 71 402051 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9623 C20orf72 chromosome 20 open reading frame 72 532857 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9624 C20orf85 chromosome 20 open reading frame 85 184548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9625 C20orf94 chromosome 20 open reading frame 94 636285 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9626 C20orf96 chromosome 20 open reading frame 96 542490 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9627 C21orf45 chromosome 21 open reading frame 45 232713 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9628 C21orf59 chromosome 21 open reading frame 59 384306 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9629 C21orf62 chromosome 21 open reading frame 62 336141 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9630 C21orf7 chromosome 21 open reading frame 7 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9631 C21orf70 chromosome 21 open reading frame 70 117117 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9632 C21orf91 chromosome 21 open reading frame 91 461370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9633 C22orf13 chromosome 22 open reading frame 13 309777 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9634 C22orf15 chromosome 22 open reading frame 15 97851 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9635 C22orf24 chromosome 22 open reading frame 24 81627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9636 C22orf25 chromosome 22 open reading frame 25 286455 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9637 C22orf29 chromosome 22 open reading frame 29 503958 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9638 C22orf31 chromosome 22 open reading frame 31 448695 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9639 C22orf32 chromosome 22 open reading frame 32 139932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9640 C22orf36 chromosome 22 open reading frame 36 222066 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9641 C22orf40 90753 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9642 C22orf42 361998 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9643 C22orf43 369603 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9644 C22orf9 chromosome 22 open reading frame 9 606372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9645 C2CD2 C2 calcium-dependent domain containing 2 764049 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9646 C2CD2L 972426 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9647 C2orf15 chromosome 2 open reading frame 15 195702 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9648 C2orf18 chromosome 2 open reading frame 18 511563 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9649 C2orf24 chromosome 2 open reading frame 24 604344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9650 C2orf29 chromosome 2 open reading frame 29 528801 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9651 C2orf3 chromosome 2 open reading frame 3 1087515 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9652 C2orf40 chromosome 2 open reading frame 40 192660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9653 C2orf42 chromosome 2 open reading frame 42 890799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9654 C2orf44 chromosome 2 open reading frame 44 1104246 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9655 C2orf48 chromosome 2 open reading frame 48 249444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9656 C2orf49 chromosome 2 open reading frame 49 310284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9657 C2orf53 chromosome 2 open reading frame 53 510549 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9658 C2orf54 chromosome 2 open reading frame 54 297609 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9659 C2orf55 chromosome 2 open reading frame 55 628680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9660 C2orf56 chromosome 2 open reading frame 56 670761 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9661 C2orf57 chromosome 2 open reading frame 57 604344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9662 C2orf60 chromosome 2 open reading frame 60 455286 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9663 C2orf61 chromosome 2 open reading frame 61 280878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9664 C2orf64 chromosome 2 open reading frame 64 67938 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9665 C2orf66 chromosome 2 open reading frame 66 183534 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9666 C2orf67 chromosome 2 open reading frame 67 1531140 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9667 C2orf69 420303 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9668 C2orf7 chromosome 2 open reading frame 7 261612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9669 C2orf70 275808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9670 C2orf77 858858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9671 C2orf80 311298 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9672 C2orf83 196716 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9673 C2orf88 148044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9674 C3AR1 complement component 3a receptor 1 736671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9675 C3orf1 chromosome 3 open reading frame 1 449202 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9676 C3orf14 chromosome 3 open reading frame 14 204321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9677 C3orf17 chromosome 3 open reading frame 17 852267 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9678 C3orf18 chromosome 3 open reading frame 18 96330 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9679 C3orf19 chromosome 3 open reading frame 19 734136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9680 C3orf21 chromosome 3 open reading frame 21 333099 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9681 C3orf26 chromosome 3 open reading frame 26 411684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9682 C3orf27 chromosome 3 open reading frame 27 230178 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9683 C3orf31 chromosome 3 open reading frame 31 496353 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9684 C3orf32 chromosome 3 open reading frame 32 460356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9685 C3orf37 chromosome 3 open reading frame 37 552123 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9686 C3orf39 chromosome 3 open reading frame 39 885222 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9687 C3orf43 chromosome 3 open reading frame 43 333099 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9688 C3orf45 chromosome 3 open reading frame 45 239811 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9689 C3orf54 chromosome 3 open reading frame 54 411177 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9690 C3orf55 chromosome 3 open reading frame 55 189111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9691 C3orf57 chromosome 3 open reading frame 57 119145 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9692 C3orf58 chromosome 3 open reading frame 58 326508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9693 C3orf62 chromosome 3 open reading frame 62 413712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9694 C3orf64 chromosome 3 open reading frame 64 699660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9695 C3orf67 chromosome 3 open reading frame 67 882180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9696 C3orf72 221052 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9697 C3orf79 159705 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9698 C4orf14 chromosome 4 open reading frame 14 908037 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9699 C4orf19 chromosome 4 open reading frame 19 483171 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9700 C4orf26 chromosome 4 open reading frame 26 203307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9701 C4orf27 chromosome 4 open reading frame 27 517647 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9702 C4orf29 chromosome 4 open reading frame 29 523731 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9703 C4orf3 134862 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9704 C4orf32 chromosome 4 open reading frame 32 126750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9705 C4orf33 chromosome 4 open reading frame 33 314340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9706 C4orf34 chromosome 4 open reading frame 34 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9707 C4orf37 chromosome 4 open reading frame 37 664677 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9708 C4orf41 chromosome 4 open reading frame 41 1783626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9709 C4orf44 141960 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9710 C4orf45 294567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9711 C4orf46 81120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9712 C4orf51 320931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9713 C4orf6 chromosome 4 open reading frame 6 147030 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9714 C4orf7 chromosome 4 open reading frame 7 136890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9715 C5AR1 complement component 5a receptor 1 537420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9716 C5orf13 chromosome 5 open reading frame 13 111033 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9717 C5orf15 chromosome 5 open reading frame 15 338169 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9718 C5orf22 chromosome 5 open reading frame 22 690534 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9719 C5orf23 chromosome 5 open reading frame 23 187590 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9720 C5orf24 chromosome 5 open reading frame 24 289497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9721 C5orf30 chromosome 5 open reading frame 30 316875 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9722 C5orf32 chromosome 5 open reading frame 32 153114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9723 C5orf33 chromosome 5 open reading frame 33 544011 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9724 C5orf34 chromosome 5 open reading frame 34 996255 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9725 C5orf35 chromosome 5 open reading frame 35 416754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9726 C5orf38 chromosome 5 open reading frame 38 116103 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9727 C5orf39 chromosome 5 open reading frame 39 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9728 C5orf40 chromosome 5 open reading frame 40 344253 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9729 C5orf43 116103 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9730 C5orf44 625131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9731 C5orf46 139932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9732 C5orf48 211419 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9733 C5orf53 84162 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9734 C5orf54 907023 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9735 C5orf55 180999 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9736 C5orf56 197223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9737 C5orf58 162747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9738 C5orf62 48672 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9739 C6orf1 chromosome 6 open reading frame 1 236769 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9740 C6orf106 chromosome 6 open reading frame 106 422838 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9741 C6orf108 chromosome 6 open reading frame 108 208884 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9742 C6orf114 chromosome 6 open reading frame 114 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9743 C6orf115 chromosome 6 open reading frame 115 128778 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9744 C6orf120 chromosome 6 open reading frame 120 77064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9745 C6orf125 chromosome 6 open reading frame 125 201279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9746 C6orf126 chromosome 6 open reading frame 126 64389 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9747 C6orf127 chromosome 6 open reading frame 127 127257 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9748 C6orf130 chromosome 6 open reading frame 130 242853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9749 C6orf134 chromosome 6 open reading frame 134 511056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9750 C6orf145 chromosome 6 open reading frame 145 231192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9751 C6orf146 chromosome 6 open reading frame 146 786357 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9752 C6orf15 chromosome 6 open reading frame 15 463905 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9753 C6orf153 chromosome 6 open reading frame 153 341718 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9754 C6orf162 chromosome 6 open reading frame 162 153114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9755 C6orf168 chromosome 6 open reading frame 168 621075 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9756 C6orf174 chromosome 6 open reading frame 174 942513 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9757 C6orf182 chromosome 6 open reading frame 182 721461 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9758 C6orf186 chromosome 6 open reading frame 186 405093 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9759 C6orf191 chromosome 6 open reading frame 191 206349 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9760 C6orf192 chromosome 6 open reading frame 192 699660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9761 C6orf195 chromosome 6 open reading frame 195 196716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9762 C6orf201 chromosome 6 open reading frame 201 222573 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9763 C6orf203 chromosome 6 open reading frame 203 378729 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9764 C6orf204 chromosome 6 open reading frame 204 1240629 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9765 C6orf221 chromosome 6 open reading frame 221 337662 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9766 C6orf223 chromosome 6 open reading frame 223 206349 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9767 C6orf226 143481 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9768 C6orf26 chromosome 6 open reading frame 26 222573 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9769 C6orf47 chromosome 6 open reading frame 47 447174 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9770 C6orf48 chromosome 6 open reading frame 48 119652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9771 C6orf57 chromosome 6 open reading frame 57 137397 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9772 C6orf64 chromosome 6 open reading frame 64 271752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9773 C6orf70 chromosome 6 open reading frame 70 1063686 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9774 C6orf72 chromosome 6 open reading frame 72 456807 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9775 C7orf23 chromosome 7 open reading frame 23 189111 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9776 C7orf25 chromosome 7 open reading frame 25 654537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9777 C7orf27 chromosome 7 open reading frame 27 620061 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9778 C7orf28B chromosome 7 open reading frame 28B 620568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9779 C7orf29 chromosome 7 open reading frame 29 362505 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9780 C7orf30 chromosome 7 open reading frame 30 233727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9781 C7orf33 chromosome 7 open reading frame 33 276822 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9782 C7orf34 chromosome 7 open reading frame 34 229164 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9783 C7orf36 chromosome 7 open reading frame 36 345774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9784 C7orf41 chromosome 7 open reading frame 41 122694 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9785 C7orf42 chromosome 7 open reading frame 42 491283 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9786 C7orf43 chromosome 7 open reading frame 43 668226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9787 C7orf44 chromosome 7 open reading frame 44 233727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9788 C7orf45 chromosome 7 open reading frame 45 378729 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9789 C7orf46 chromosome 7 open reading frame 46 433992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9790 C7orf47 chromosome 7 open reading frame 47 118131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9791 C7orf49 chromosome 7 open reading frame 49 246402 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9792 C7orf51 chromosome 7 open reading frame 51 526266 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9793 C7orf52 chromosome 7 open reading frame 52 501930 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9794 C7orf55 chromosome 7 open reading frame 55 177450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9795 C7orf59 117624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9796 C7orf63 1407432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9797 C7orf64 525759 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9798 C7orf66 180492 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9799 C7orf68 99372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9800 C7orf69 136383 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9801 C7orf70 397488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9802 C8A complement component 8, alpha polypeptide 912093 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9803 C8B complement component 8, beta polypeptide 924768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9804 C8orf22 chromosome 8 open reading frame 22 132834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9805 C8orf33 chromosome 8 open reading frame 33 359463 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9806 C8orf37 chromosome 8 open reading frame 37 328536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9807 C8orf38 chromosome 8 open reading frame 38 424359 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9808 C8orf4 chromosome 8 open reading frame 4 164775 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9809 C8orf42 chromosome 8 open reading frame 42 164775 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9810 C8orf44 chromosome 8 open reading frame 44 247416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9811 C8orf45 chromosome 8 open reading frame 45 923247 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9812 C8orf46 chromosome 8 open reading frame 46 248430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9813 C8orf47 chromosome 8 open reading frame 47 545025 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9814 C8orf59 chromosome 8 open reading frame 59 156663 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9815 C8orf74 chromosome 8 open reading frame 74 292032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9816 C8orf76 chromosome 8 open reading frame 76 531336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9817 C8orf84 302679 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9818 C8orf85 75036 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9819 C9orf103 chromosome 9 open reading frame 103 222066 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9820 C9orf116 chromosome 9 open reading frame 116 127257 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9821 C9orf123 chromosome 9 open reading frame 123 126243 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9822 C9orf129 chromosome 9 open reading frame 129 251979 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9823 C9orf135 chromosome 9 open reading frame 135 361998 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9824 C9orf142 chromosome 9 open reading frame 142 123708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9825 C9orf150 chromosome 9 open reading frame 150 262119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9826 C9orf152 chromosome 9 open reading frame 152 369096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9827 C9orf16 chromosome 9 open reading frame 16 89739 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9828 C9orf171 415233 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9829 C9orf173 128271 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9830 C9orf21 chromosome 9 open reading frame 21 221052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9831 C9orf23 chromosome 9 open reading frame 23 251472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9832 C9orf24 chromosome 9 open reading frame 24 413205 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9833 C9orf30 chromosome 9 open reading frame 30 423852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9834 C9orf37 chromosome 9 open reading frame 37 185562 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9835 C9orf4 chromosome 9 open reading frame 4 334620 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9836 C9orf40 chromosome 9 open reading frame 40 82641 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9837 C9orf46 chromosome 9 open reading frame 46 233220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9838 C9orf50 chromosome 9 open reading frame 50 359970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9839 C9orf6 chromosome 9 open reading frame 6 246909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9840 C9orf66 chromosome 9 open reading frame 66 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9841 C9orf68 chromosome 9 open reading frame 68 527787 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9842 C9orf7 chromosome 9 open reading frame 7 161733 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9843 C9orf71 chromosome 9 open reading frame 71 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9844 C9orf72 chromosome 9 open reading frame 72 755430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9845 C9orf80 chromosome 9 open reading frame 80 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9846 C9orf82 chromosome 9 open reading frame 82 421824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9847 C9orf85 chromosome 9 open reading frame 85 248430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9848 C9orf89 chromosome 9 open reading frame 89 154128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9849 C9orf9 chromosome 9 open reading frame 9 264654 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9850 C9orf95 chromosome 9 open reading frame 95 320424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9851 CA1 carbonic anhydrase I 412698 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9852 CA10 carbonic anhydrase X 518661 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9853 CA12 carbonic anhydrase XII 517140 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9854 CA13 carbonic anhydrase XIII 414219 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9855 CA14 carbonic anhydrase XIV 536406 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9856 CA3 carbonic anhydrase III, muscle specific 390897 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9857 CA5A carbonic anhydrase VA, mitochondrial 343746 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9858 CA5B carbonic anhydrase VB, mitochondrial 497874 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9859 CA7 carbonic anhydrase VII 394953 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9860 CA8 carbonic anhydrase VIII 411177 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9861 CAB39 calcium binding protein 39 536406 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9862 CAB39L calcium binding protein 39-like 530322 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9863 CABC1 chaperone, ABC1 activity of bc1 complex homolog (S. pombe) 409149 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9864 CABLES1 Cdk5 and Abl enzyme substrate 1 569868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9865 CABLES2 Cdk5 and Abl enzyme substrate 2 511056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9866 CABP1 calcium binding protein 1 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9867 CABP2 calcium binding protein 2 229164 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9868 CABP4 calcium binding protein 4 190125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9869 CABP7 calcium binding protein 7 201279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9870 CACNB3 calcium channel, voltage-dependent, beta 3 subunit 754923 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9871 CACNB4 calcium channel, voltage-dependent, beta 4 subunit 811707 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9872 CACNG1 calcium channel, voltage-dependent, gamma subunit 1 347295 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9873 CACNG5 calcium channel, voltage-dependent, gamma subunit 5 590655 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9874 CACNG7 calcium channel, voltage-dependent, gamma subunit 7 429936 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9875 CACYBP calcyclin binding protein 350844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9876 CADM2 cell adhesion molecule 2 686478 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9877 CADM3 cell adhesion molecule 3 632229 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9878 CALB1 calbindin 1, 28kDa 420810 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9879 CALCB calcitonin-related polypeptide beta 200772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9880 CALCOCO2 calcium binding and coiled-coil domain 2 704223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9881 CALHM1 421317 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9882 CALM1 calmodulin 1 (phosphorylase kinase, delta) 236769 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9883 CALM2 calmodulin 2 (phosphorylase kinase, delta) 239304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9884 CALM3 calmodulin 3 (phosphorylase kinase, delta) 236769 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9885 CALML3 calmodulin-like 3 191139 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9886 CALML4 calmodulin-like 4 309777 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9887 CALML5 calmodulin-like 5 163254 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9888 CALML6 calmodulin-like 6 78585 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9889 CALN1 calneuron 1 348309 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9890 CAMK1D calcium/calmodulin-dependent protein kinase ID 578487 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9891 CAMK2B calcium/calmodulin-dependent protein kinase (CaM kinase) II beta 492804 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9892 CAMK2G calcium/calmodulin-dependent protein kinase (CaM kinase) II gamma 811707 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9893 CAMK2N1 calcium/calmodulin-dependent protein kinase II inhibitor 1 38025 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9894 CAMK4 calcium/calmodulin-dependent protein kinase IV 659607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9895 CAMLG calcium modulating ligand 399009 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9896 CAMP cathelicidin antimicrobial peptide 268203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9897 CAMTA2 calmodulin binding transcription activator 2 1918995 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9898 CAND2 cullin-associated and neddylation-dissociated 2 (putative) 1430754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9899 CANT1 calcium activated nucleotidase 1 441090 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9900 CANX calnexin 930345 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9901 CAPG capping protein (actin filament), gelsolin-like 511563 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9902 CAPN3 calpain 3, (p94) 1279668 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9903 CAPN5 calpain 5 848718 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9904 CAPN7 calpain 7 1226940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9905 CAPN9 calpain 9 1091571 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9906 CAPNS1 calpain, small subunit 1 321438 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9907 CAPNS2 calpain, small subunit 2 380757 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9908 CAPRIN2 caprin family member 2 1752192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9909 CAPS2 calcyphosine 2 537927 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9910 CAPSL calcyphosine-like 326001 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9911 CAPZA1 capping protein (actin filament) muscle Z-line, alpha 1 435006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9912 CAPZA2 capping protein (actin filament) muscle Z-line, alpha 2 435006 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9913 CAPZA3 capping protein (actin filament) muscle Z-line, alpha 3 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9914 CAPZB capping protein (actin filament) muscle Z-line, beta 382278 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9915 CARD16 319410 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9916 CARD17 174915 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9917 CARD18 142467 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9918 CARD8 caspase recruitment domain family, member 8 707772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9919 CARHSP1 calcium regulated heat stable protein 1, 24kDa 218010 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9920 CARKD 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9921 CARNS1 380250 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9922 CARS cysteinyl-tRNA synthetase 1325298 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9923 CASD1 CAS1 domain containing 1 1180803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9924 CASP10 caspase 10, apoptosis-related cysteine peptidase 892320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9925 CASP14 caspase 14, apoptosis-related cysteine peptidase 381771 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9926 CASP3 caspase 3, apoptosis-related cysteine peptidase 435006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9927 CASP4 caspase 4, apoptosis-related cysteine peptidase 591162 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9928 CASP7 caspase 7, apoptosis-related cysteine peptidase 526773 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9929 CASP8AP2 CASP8 associated protein 2 2945163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9930 CASP9 caspase 9, apoptosis-related cysteine peptidase 525759 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9931 CASQ1 calsequestrin 1 (fast-twitch, skeletal muscle) 626145 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9932 CASS4 Cas scaffolding protein family member 4 1208181 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9933 CAT catalase 793962 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9934 CAV2 caveolin 2 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9935 CAV3 caveolin 3 235248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9936 CBARA1 calcium binding atopy-related autoantigen 1 706758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9937 CBL Cas-Br-M (murine) ecotropic retroviral transforming sequence 1311102 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9938 CBLL1 Cas-Br-M (murine) ecotropic retroviral transforming sequence-like 1 751881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9939 CBLN2 cerebellin 2 precursor 165282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9940 CBLN3 cerebellin 3 precursor 235248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9941 CBR1 carbonyl reductase 1 280371 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9942 CBR4 carbonyl reductase 4 311805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9943 CBWD1 COBW domain containing 1 628173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9944 CBWD2 COBW domain containing 2 607893 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9945 CBWD3 COBW domain containing 3 515619 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9946 CBWD5 COBW domain containing 5 179985 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9947 CBWD6 COBW domain containing 6 327015 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9948 CBX1 chromobox homolog 1 (HP1 beta homolog Drosophila ) 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9949 CBX2 chromobox homolog 2 (Pc class homolog, Drosophila) 669747 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -9950 CBX5 chromobox homolog 5 (HP1 alpha homolog, Drosophila) 300144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9951 CBX7 chromobox homolog 7 128271 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9952 CBY1 chibby homolog 1 (Drosophila) 201279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9953 CC2D2A coiled-coil and C2 domain containing 2A 2090868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9954 CC2D2B coiled-coil and C2 domain containing 2B 507507 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9955 CCBE1 collagen and calcium binding EGF domains 1 572910 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9956 CCBP2 chemokine binding protein 2 587613 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9957 CCDC103 coiled-coil domain containing 103 316368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9958 CCDC107 coiled-coil domain containing 107 307242 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9959 CCDC109B coiled-coil domain containing 109B 436020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9960 CCDC116 coiled-coil domain containing 116 890292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9961 CCDC117 coiled-coil domain containing 117 340197 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9962 CCDC12 coiled-coil domain containing 12 202800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9963 CCDC120 coiled-coil domain containing 120 708786 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9964 CCDC122 coiled-coil domain containing 122 426894 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9965 CCDC126 coiled-coil domain containing 126 218517 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9966 CCDC127 coiled-coil domain containing 127 401037 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9967 CCDC13 coiled-coil domain containing 13 1074840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9968 CCDC130 coiled-coil domain containing 130 513591 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9969 CCDC134 coiled-coil domain containing 134 361998 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9970 CCDC137 coiled-coil domain containing 137 269217 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9971 CCDC138 coiled-coil domain containing 138 994227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9972 CCDC140 coiled-coil domain containing 140 251472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9973 CCDC148 coiled-coil domain containing 148 908037 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9974 CCDC149 coiled-coil domain containing 149 474552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9975 CCDC15 coiled-coil domain containing 15 1420614 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9976 CCDC151 coiled-coil domain containing 151 698646 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9977 CCDC153 197223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9978 CCDC157 688506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9979 CCDC160 497874 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9980 CCDC17 coiled-coil domain containing 17 526266 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9981 CCDC22 coiled-coil domain containing 22 375687 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9982 CCDC23 coiled-coil domain containing 23 105963 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9983 CCDC25 coiled-coil domain containing 25 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9984 CCDC28A coiled-coil domain containing 28A 430443 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9985 CCDC28B coiled-coil domain containing 28B 313833 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9986 CCDC3 coiled-coil domain containing 3 225615 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9987 CCDC36 coiled-coil domain containing 36 919191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9988 CCDC37 coiled-coil domain containing 37 684957 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9989 CCDC38 coiled-coil domain containing 38 888264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9990 CCDC40 coiled-coil domain containing 40 1635075 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9991 CCDC41 coiled-coil domain containing 41 1098162 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9992 CCDC43 coiled-coil domain containing 43 307242 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9993 CCDC46 coiled-coil domain containing 46 1589952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9994 CCDC48 coiled-coil domain containing 48 255528 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -9995 CCDC51 coiled-coil domain containing 51 632736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9996 CCDC54 coiled-coil domain containing 54 502437 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9997 CCDC55 coiled-coil domain containing 55 852267 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9998 CCDC56 coiled-coil domain containing 56 143481 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -9999 CCDC58 coiled-coil domain containing 58 230685 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10000 CCDC59 coiled-coil domain containing 59 373659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10001 CCDC6 coiled-coil domain containing 6 673803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10002 CCDC61 coiled-coil domain containing 61 305721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10003 CCDC64 coiled-coil domain containing 64 671775 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10004 CCDC65 coiled-coil domain containing 65 753909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10005 CCDC67 coiled-coil domain containing 67 946062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10006 CCDC68 coiled-coil domain containing 68 531336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10007 CCDC7 coiled-coil domain containing 7 775203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10008 CCDC70 coiled-coil domain containing 70 357942 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10009 CCDC71 coiled-coil domain containing 71 703209 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10010 CCDC74A coiled-coil domain containing 74A 428415 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10011 CCDC75 coiled-coil domain containing 75 271245 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10012 CCDC76 coiled-coil domain containing 76 755430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10013 CCDC77 coiled-coil domain containing 77 766077 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10014 CCDC81 coiled-coil domain containing 81 891306 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10015 CCDC85A coiled-coil domain containing 85A 712842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10016 CCDC86 coiled-coil domain containing 86 544011 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10017 CCDC88C coiled-coil domain containing 88C 2207478 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10018 CCDC89 coiled-coil domain containing 89 572403 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10019 CCDC90B coiled-coil domain containing 90B 353379 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10020 CCDC92 coiled-coil domain containing 92 513084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10021 CCDC93 coiled-coil domain containing 93 986622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10022 CCDC94 coiled-coil domain containing 94 305721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10023 CCDC96 coiled-coil domain containing 96 466947 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10024 CCDC97 coiled-coil domain containing 97 508014 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10025 CCK cholecystokinin 171366 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10026 CCKAR cholecystokinin A receptor 662649 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10027 CCKBR cholecystokinin B receptor 682929 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10028 CCL1 chemokine (C-C motif) ligand 1 153621 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10029 CCL14 chemokine (C-C motif) ligand 14 149058 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10030 CCL15 chemokine (C-C motif) ligand 15 179478 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10031 CCL16 chemokine (C-C motif) ligand 16 190125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10032 CCL17 chemokine (C-C motif) ligand 17 113061 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10033 CCL18 chemokine (C-C motif) ligand 18 (pulmonary and activation-regulated) 142974 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10034 CCL19 chemokine (C-C motif) ligand 19 158691 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10035 CCL2 chemokine (C-C motif) ligand 2 158184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10036 CCL20 chemokine (C-C motif) ligand 20 155649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10037 CCL22 chemokine (C-C motif) ligand 22 149058 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10038 CCL24 chemokine (C-C motif) ligand 24 188604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10039 CCL25 chemokine (C-C motif) ligand 25 111540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10040 CCL26 chemokine (C-C motif) ligand 26 135369 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10041 CCL27 chemokine (C-C motif) ligand 27 177957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10042 CCL28 chemokine (C-C motif) ligand 28 200772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10043 CCL3 chemokine (C-C motif) ligand 3 143481 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10044 CCL4 chemokine (C-C motif) ligand 4 147537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10045 CCL5 chemokine (C-C motif) ligand 5 132834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10046 CCL8 chemokine (C-C motif) ligand 8 158184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10047 CCM2 cerebral cavernous malformation 2 500409 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10048 CCNA1 cyclin A1 701181 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10049 CCNB2 cyclin B2 610935 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10050 CCND2 cyclin D2 451230 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10051 CCNDBP1 cyclin D-type binding-protein 1 481650 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10052 CCNE1 cyclin E1 587106 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10053 CCNE2 cyclin E2 638313 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10054 CCNG1 cyclin G1 460356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10055 CCNH cyclin H 511056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10056 CCNI cyclin I 587106 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10057 CCNJ cyclin J 557193 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10058 CCNJL cyclin J-like 600288 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10059 CCNO cyclin O 152100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10060 CCNY cyclin Y 460356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10061 CCNYL1 cyclin Y-like 1 454272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10062 CCR1 chemokine (C-C motif) receptor 1 543504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10063 CCR4 chemokine (C-C motif) receptor 4 551109 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10064 CCR6 chemokine (C-C motif) receptor 6 574431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10065 CCR8 chemokine (C-C motif) receptor 8 543504 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10066 CCR9 chemokine (C-C motif) receptor 9 566826 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10067 CCRL2 chemokine (C-C motif) receptor-like 2 301665 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10068 CCRN4L CCR4 carbon catabolite repression 4-like (S. cerevisiae) 564798 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10069 CCS copper chaperone for superoxide dismutase 412698 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10070 CCT3 chaperonin containing TCP1, subunit 3 (gamma) 858858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10071 CCT4 chaperonin containing TCP1, subunit 4 (delta) 783315 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10072 CCT7 chaperonin containing TCP1, subunit 7 (eta) 846690 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10073 CD160 CD160 molecule 284934 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10074 CD164L2 CD164 sialomucin-like 2 226122 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10075 CD177 CD177 molecule 622089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10076 CD180 CD180 molecule 1012986 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10077 CD1A CD1a molecule 511056 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10078 CD200 CD200 molecule 454779 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10079 CD200R1 CD200 receptor 1 570882 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10080 CD207 CD207 molecule, langerin 512577 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10081 CD209 CD209 molecule 630201 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10082 CD247 CD247 molecule 267189 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -10083 CD27 CD27 molecule 409149 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10084 CD28 CD28 molecule 344253 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10085 CD300C CD300c molecule 342225 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10086 CD300LB CD300 molecule-like family member b 371631 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10087 CD300LD CD300 molecule-like family member d 304707 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10088 CD320 CD320 molecule 245895 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10089 CD3D CD3d molecule, delta (CD3-TCR complex) 271752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10090 CD44 CD44 molecule (Indian blood group) 1130610 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10091 CD46 CD46 molecule, complement regulatory protein 665184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10092 CD47 CD47 molecule 491283 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10093 CD48 CD48 molecule 379236 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10094 CD53 CD53 molecule 348816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10095 CD58 CD58 molecule 358449 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10096 CD59 CD59 molecule, complement regulatory protein 201786 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10097 CD6 CD6 molecule 609414 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10098 CD63 CD63 molecule 342225 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10099 CD7 CD7 molecule 172380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10100 CD70 CD70 molecule 278850 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10101 CD72 CD72 molecule 525252 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10102 CD79B CD79b molecule, immunoglobulin-associated beta 358449 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10103 CD80 CD80 molecule 449709 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10104 CD82 CD82 molecule 421824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10105 CD84 CD84 molecule 523731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10106 CD8B CD8b molecule 332085 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10107 CD96 CD96 molecule 921726 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10108 CD99L2 CD99 molecule-like 2 386334 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10109 CDA cytidine deaminase 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10110 CDADC1 cytidine and dCMP deaminase domain containing 1 759993 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10111 CDAN1 congenital dyserythropoietic anemia, type I 1573728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10112 CDC14A CDC14 cell division cycle 14 homolog A (S. cerevisiae) 1004367 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10113 CDC14B CDC14 cell division cycle 14 homolog B (S. cerevisiae) 704223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10114 CDC16 cell division cycle 16 homolog (S. cerevisiae) 954681 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10115 CDC20 cell division cycle 20 homolog (S. cerevisiae) 780273 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10116 CDC25A cell division cycle 25 homolog A (S. pombe) 703209 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10117 CDC25C cell division cycle 25 homolog C (S. pombe) 747318 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10118 CDC26 cell division cycle 26 homolog (S. cerevisiae) 134862 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10119 CDC40 cell division cycle 40 homolog (S. cerevisiae) 912600 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10120 CDC42 cell division cycle 42 (GTP binding protein, 25kDa) 349830 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10121 CDC42EP1 CDC42 effector protein (Rho GTPase binding) 1 267189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10122 CDC42EP2 CDC42 effector protein (Rho GTPase binding) 2 322959 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10123 CDC42EP3 CDC42 effector protein (Rho GTPase binding) 3 389883 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10124 CDC42EP4 CDC42 effector protein (Rho GTPase binding) 4 538434 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10125 CDC42SE1 CDC42 small effector 1 127764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10126 CDC42SE2 CDC42 small effector 2 135369 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10127 CDC45 762528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10128 CDC6 cell division cycle 6 homolog (S. cerevisiae) 875589 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10129 CDC73 cell division cycle 73, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) 843648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10130 CDCA3 cell division cycle associated 3 419289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10131 CDCA4 cell division cycle associated 4 369603 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10132 CDCA5 cell division cycle associated 5 395460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10133 CDCA8 cell division cycle associated 8 392925 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10134 CDCP2 CUB domain containing protein 2 692562 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10135 CDH16 cadherin 16, KSP-cadherin 1272063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10136 CDH3 cadherin 3, type 1, P-cadherin (placental) 1165086 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10137 CDH5 cadherin 5, type 2, VE-cadherin (vascular epithelium) 1005381 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10138 CDH7 cadherin 7, type 2 1217814 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10139 CDIPT CDP-diacylglycerol--inositol 3-phosphatidyltransferase (phosphatidylinositol synthase) 277329 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10140 CDK1 473538 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10141 CDK10 cyclin-dependent kinase 10 322452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10142 CDK20 461370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10143 CDK2AP1 CDK2-associated protein 1 154635 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10144 CDK2AP2 CDK2-associated protein 2 77064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10145 CDK3 cyclin-dependent kinase 3 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10146 CDK4 cyclin-dependent kinase 4 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10147 CDK5R1 cyclin-dependent kinase 5, regulatory subunit 1 (p35) 451737 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10148 CDK5R2 cyclin-dependent kinase 5, regulatory subunit 2 (p39) 285441 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10149 CDK5RAP3 CDK5 regulatory subunit associated protein 3 769119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10150 CDK8 cyclin-dependent kinase 8 666705 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10151 CDK9 cyclin-dependent kinase 9 466947 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10152 CDKL4 cyclin-dependent kinase-like 4 496860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10153 CDKN1A cyclin-dependent kinase inhibitor 1A (p21, Cip1) 254514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10154 CDKN2A cyclin-dependent kinase inhibitor 2A (melanoma, p16, inhibits CDK4) 304200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10155 CDKN2AIPNL CDKN2A interacting protein N-terminal like 60840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10156 CDKN2C cyclin-dependent kinase inhibitor 2C (p18, inhibits CDK4) 261105 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10157 CDKN2D cyclin-dependent kinase inhibitor 2D (p19, inhibits CDK4) 184548 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10158 CDKN3 cyclin-dependent kinase inhibitor 3 (CDK2-associated dual specificity phosphatase) 333606 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10159 CDNF 233727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10160 CDON Cdon homolog (mouse) 1962597 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10161 CDR1 cerebellar degeneration-related protein 1, 34kDa 402051 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10162 CDR2 cerebellar degeneration-related protein 2, 62kDa 702195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10163 CDRT15 CMT1A duplicated region transcript 15 197223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10164 CDRT4 CMT1A duplicated region transcript 4 235248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10165 CDS2 CDP-diacylglycerol synthase (phosphatidate cytidylyltransferase) 2 673803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10166 CDV3 CDV3 homolog (mouse) 280371 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10167 CDX1 caudal type homeobox 1 172887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10168 CDX2 caudal type homeobox 2 194181 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10169 CDYL2 chromodomain protein, Y-like 2 696111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10170 CEACAM1 carcinoembryonic antigen-related cell adhesion molecule 1 (biliary glycoprotein) 819819 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10171 CEACAM16 carcinoembryonic antigen-related cell adhesion molecule 16 410670 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10172 CEACAM19 carcinoembryonic antigen-related cell adhesion molecule 19 413712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10173 CEACAM4 carcinoembryonic antigen-related cell adhesion molecule 4 386334 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10174 CEACAM5 carcinoembryonic antigen-related cell adhesion molecule 5 1087515 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10175 CEACAM7 carcinoembryonic antigen-related cell adhesion molecule 7 412698 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10176 CEACAM8 carcinoembryonic antigen-related cell adhesion molecule 8 542490 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10177 CEBPE CCAAT/enhancer binding protein (C/EBP), epsilon 432978 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10178 CEBPG CCAAT/enhancer binding protein (C/EBP), gamma 231699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10179 CEBPZ CCAAT/enhancer binding protein zeta 1637103 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10180 CECR1 cat eye syndrome chromosome region, candidate 1 814242 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10181 CELA2A 426894 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10182 CELF3 561249 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10183 CELF5 441597 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10184 CEND1 cell cycle exit and neuronal differentiation 1 109512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10185 CENPA centromere protein A 169845 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10186 CENPB centromere protein B, 80kDa 519168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10187 CENPBD1 118131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10188 CENPC1 centromere protein C 1 1156467 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10189 CENPH centromere protein H 325494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10190 CENPI centromere protein I 1191957 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10191 CENPK centromere protein K 428922 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10192 CENPN centromere protein N 647439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10193 CENPP centromere protein P 399516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10194 CENPQ centromere protein Q 425373 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10195 CENPV 215475 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10196 CENPW 141453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10197 CEP97 centrosomal protein 97kDa 1320228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10198 CEPT1 choline/ethanolamine phosphotransferase 1 650481 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10199 CERKL ceramide kinase-like 866463 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10200 CES2 carboxylesterase 2 (intestine, liver) 946062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10201 CES3 carboxylesterase 3 (brain) 894855 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10202 CES8 597246 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10203 CETN1 centrin, EF-hand protein, 1 237783 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10204 CETN2 centrin, EF-hand protein, 2 269724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10205 CETN3 centrin, EF-hand protein, 3 (CDC31 homolog, yeast) 265668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10206 CFDP1 craniofacial development protein 1 436020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10207 CFHR5 complement factor H-related 5 887250 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10208 CFI complement factor I 914628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10209 CFL1 cofilin 1 (non-muscle) 258570 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10210 CFL2 cofilin 2 (muscle) 262119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10211 CFLAR CASP8 and FADD-like apoptosis regulator 749853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10212 CGA glycoprotein hormones, alpha polypeptide 184041 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10213 CGB chorionic gonadotropin, beta polypeptide 120666 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10214 CGB1 chorionic gonadotropin, beta polypeptide 1 216996 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10215 CGB2 chorionic gonadotropin, beta polypeptide 2 161733 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10216 CGB5 chorionic gonadotropin, beta polypeptide 5 166803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10217 CGB7 chorionic gonadotropin, beta polypeptide 7 246402 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10218 CGB8 chorionic gonadotropin, beta polypeptide 8 158184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10219 CGGBP1 CGG triplet repeat binding protein 1 257556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10220 CGN cingulin 1818102 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10221 CGREF1 cell growth regulator with EF-hand domain 1 517647 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10222 CH25H cholesterol 25-hydroxylase 323466 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10223 CHAC1 ChaC, cation transport regulator homolog 1 (E. coli) 288483 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10224 CHAC2 ChaC, cation transport regulator homolog 2 (E. coli) 251979 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10225 CHAD chondroadherin 536406 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10226 CHAF1B chromatin assembly factor 1, subunit B (p60) 878124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10227 CHAT choline acetyltransferase 1044927 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10228 CHCHD4 coiled-coil-helix-coiled-coil-helix domain containing 4 243360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10229 CHCHD5 coiled-coil-helix-coiled-coil-helix domain containing 5 176943 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10230 CHCHD7 coiled-coil-helix-coiled-coil-helix domain containing 7 199251 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10231 CHCHD8 coiled-coil-helix-coiled-coil-helix domain containing 8 135876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10232 CHD1 chromodomain helicase DNA binding protein 1 2673411 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10233 CHDH choline dehydrogenase 547560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10234 CHEK1 CHK1 checkpoint homolog (S. pombe) 749853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10235 CHFR checkpoint with forkhead and ring finger domains 717912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10236 CHI3L2 chitinase 3-like 2 614991 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10237 CHIC1 cysteine-rich hydrophobic domain 1 223080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10238 CHIC2 cysteine-rich hydrophobic domain 2 193674 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10239 CHID1 chitinase domain containing 1 474045 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10240 CHIT1 chitinase 1 (chitotriosidase) 715377 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10241 CHKA choline kinase alpha 541476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10242 CHKB choline kinase beta 259584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10243 CHMP1B chromatin modifying protein 1B 306228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10244 CHMP2A chromatin modifying protein 2A 349323 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10245 CHMP2B chromatin modifying protein 2B 337662 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10246 CHMP4A chromatin modifying protein 4A 416754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10247 CHMP4B chromatin modifying protein 4B 304707 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10248 CHMP4C chromatin modifying protein 4C 267696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10249 CHMP5 chromatin modifying protein 5 350844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10250 CHMP6 chromatin modifying protein 6 185055 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10251 CHODL chondrolectin 386841 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10252 CHP 276315 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10253 CHP2 277836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10254 CHPF2 1039350 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10255 CHRAC1 chromatin accessibility complex 1 130299 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10256 CHRDL1 chordin-like 1 720447 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10257 CHRDL2 chordin-like 2 626652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10258 CHRFAM7A CHRNA7 (cholinergic receptor, nicotinic, alpha 7, exons 5-10) and FAM7A (family with sequence similarity 7A, exons A-E) fusion 234741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10259 CHRM4 cholinergic receptor, muscarinic 4 396474 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10260 CHRNA2 cholinergic receptor, nicotinic, alpha 2 (neuronal) 792948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10261 CHRNA5 cholinergic receptor, nicotinic, alpha 5 669747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10262 CHRNA7 cholinergic receptor, nicotinic, alpha 7 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10263 CHRNA9 cholinergic receptor, nicotinic, alpha 9 740220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10264 CHRNE cholinergic receptor, nicotinic, epsilon 418782 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10265 CHST10 carbohydrate sulfotransferase 10 553137 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10266 CHST12 carbohydrate (chondroitin 4) sulfotransferase 12 633243 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10267 CHST14 carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 14 433992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10268 CHST15 867984 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10269 CHST4 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 4 590655 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10270 CHST7 carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 7 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10271 CHSY1 chondroitin sulfate synthase 1 1063179 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10272 CHTF8 191646 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10273 CHUK conserved helix-loop-helix ubiquitous kinase 1121991 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10274 CIAO1 cytosolic iron-sulfur protein assembly 1 homolog (S. cerevisiae) 458835 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10275 CIAPIN1 cytokine induced apoptosis inhibitor 1 492297 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10276 CIB1 calcium and integrin binding 1 (calmyrin) 245388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10277 CIB2 calcium and integrin binding family member 2 270231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10278 CIB3 calcium and integrin binding family member 3 298116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10279 CIB4 calcium and integrin binding family member 4 265668 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10280 CIDEA cell death-inducing DFFA-like effector a 323466 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10281 CIDEB cell death-inducing DFFA-like effector b 344760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10282 CIDEC cell death-inducing DFFA-like effector c 293046 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10283 CILP2 cartilage intermediate layer protein 2 859872 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10284 CINP 333606 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10285 CISD1 CDGSH iron sulfur domain 1 154128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10286 CISD2 CDGSH iron sulfur domain 2 158691 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10287 CISH cytokine inducible SH2-containing protein 282906 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10288 CKAP4 cytoskeleton-associated protein 4 674310 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10289 CKM creatine kinase, muscle 594711 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10290 CKMT1A creatine kinase, mitochondrial 1A 294567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10291 CKMT1B creatine kinase, mitochondrial 1B 294060 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10292 CKS1B CDC28 protein kinase regulatory subunit 1B 127764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10293 CKS2 CDC28 protein kinase regulatory subunit 2 95823 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10294 CLCA1 chloride channel, calcium activated, family member 1 1420107 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10295 CLCA2 chloride channel, calcium activated, family member 2 1464216 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10296 CLCA4 chloride channel, calcium activated, family member 4 1427712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10297 CLCC1 chloride channel CLIC-like 1 859872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10298 CLCF1 cardiotrophin-like cytokine factor 1 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10299 CLCN5 chloride channel 5 (nephrolithiasis 2, X-linked, Dent disease) 1242150 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10300 CLCN6 chloride channel 6 1326819 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10301 CLDN1 claudin 1 326001 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10302 CLDN10 claudin 10 450723 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10303 CLDN16 claudin 16 475566 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10304 CLDN18 claudin 18 488748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10305 CLDN2 claudin 2 353379 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10306 CLDN20 claudin 20 336648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10307 CLDN22 claudin 22 338169 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10308 CLDN25 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10309 CLDN3 claudin 3 131820 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10310 CLDN4 claudin 4 321438 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10311 CLDN7 claudin 7 328536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10312 CLDN8 claudin 8 345774 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10313 CLDN9 claudin 9 163761 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10314 CLDND2 claudin domain containing 2 226629 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10315 CLEC12A C-type lectin domain family 12, member A 416754 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10316 CLEC12B C-type lectin domain family 12, member B 364533 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10317 CLEC16A C-type lectin domain family 16, member A 1544322 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10318 CLEC18A 208377 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10319 CLEC18B 539955 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10320 CLEC1B C-type lectin domain family 1, member B 361998 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10321 CLEC2B C-type lectin domain family 2, member B 236262 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10322 CLEC2D C-type lectin domain family 2, member D 345774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10323 CLEC2L C-type lectin domain family 2, member L 136890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10324 CLEC3A C-type lectin domain family 3, member A 307242 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10325 CLEC3B C-type lectin domain family 3, member B 252486 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10326 CLEC4C C-type lectin domain family 4, member C 337662 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10327 CLEC4D C-type lectin domain family 4, member D 340704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10328 CLEC5A C-type lectin domain family 5, member A 299637 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10329 CLEC7A C-type lectin domain family 7, member A 407628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10330 CLEC9A C-type lectin domain family 9, member A 380250 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10331 CLECL1 C-type lectin-like 1 259584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10332 CLGN calmegin 957723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10333 CLIC4 chloride intracellular channel 4 359970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10334 CLIC6 chloride intracellular channel 6 358449 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10335 CLINT1 clathrin interactor 1 936429 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10336 CLIP3 CAP-GLY domain containing linker protein 3 757965 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10337 CLIP4 CAP-GLY domain containing linker protein family, member 4 1104246 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10338 CLK2 CDC-like kinase 2 783315 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10339 CLK3 CDC-like kinase 3 771147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10340 CLLU1 chronic lymphocytic leukemia up-regulated 1 187590 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10341 CLLU1OS chronic lymphocytic leukemia up-regulated 1 opposite strand 161226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10342 CLN6 ceroid-lipofuscinosis, neuronal 6, late infantile, variant 444639 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10343 CLN8 ceroid-lipofuscinosis, neuronal 8 (epilepsy, progressive with mental retardation) 440583 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10344 CLNS1A chloride channel, nucleotide-sensitive, 1A 308763 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10345 CLOCK clock homolog (mouse) 1328847 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10346 CLP1 CLP1, cleavage and polyadenylation factor I subunit, homolog (S. cerevisiae) 652002 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10347 CLPB ClpB caseinolytic peptidase B homolog (E. coli) 1110837 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10348 CLPP ClpP caseinolytic peptidase, ATP-dependent, proteolytic subunit homolog (E. coli) 126750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10349 CLPS colipase, pancreatic 177957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10350 CLPTM1L CLPTM1-like 431457 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10351 CLRN1 clarin 1 387855 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10352 CLRN3 clarin 3 351351 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10353 CLSTN3 calsyntenin 3 1416558 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10354 CLTA clathrin, light chain (Lca) 280878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10355 CLTB clathrin, light chain (Lcb) 265161 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10356 CLU clusterin 749853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10357 CLUAP1 clusterin associated protein 1 590148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10358 CLVS1 550095 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10359 CLVS2 509028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10360 CMA1 chymase 1, mast cell 387348 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10361 CMAS cytidine monophosphate N-acetylneuraminic acid synthetase 544011 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10362 CMBL carboxymethylenebutenolidase homolog (Pseudomonas) 384306 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10363 CMC1 159198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10364 CMPK1 cytidine monophosphate (UMP-CMP) kinase 1, cytosolic 271752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10365 CMPK2 cytidine monophosphate (UMP-CMP) kinase 2, mitochondrial 350337 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10366 CMTM1 CKLF-like MARVEL transmembrane domain containing 1 435006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10367 CMTM2 CKLF-like MARVEL transmembrane domain containing 2 386841 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10368 CMTM3 CKLF-like MARVEL transmembrane domain containing 3 161226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10369 CMTM4 CKLF-like MARVEL transmembrane domain containing 4 223080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10370 CMTM6 CKLF-like MARVEL transmembrane domain containing 6 215982 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10371 CMTM7 CKLF-like MARVEL transmembrane domain containing 7 195195 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10372 CMTM8 CKLF-like MARVEL transmembrane domain containing 8 196209 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10373 CNBP CCHC-type zinc finger, nucleic acid binding protein 281892 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10374 CNGB1 cyclic nucleotide gated channel beta 1 1787175 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10375 CNIH2 cornichon homolog 2 (Drosophila) 190632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10376 CNIH3 cornichon homolog 3 (Drosophila) 200772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10377 CNIH4 cornichon homolog 4 (Drosophila) 186069 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10378 CNKSR3 CNKSR family member 3 872040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10379 CNN1 calponin 1, basic, smooth muscle 467454 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10380 CNN2 calponin 2 333099 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10381 CNNM2 cyclin M2 1228461 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10382 CNNM3 cyclin M3 563784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10383 CNNM4 cyclin M4 1082952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10384 CNOT10 CCR4-NOT transcription complex, subunit 10 1158495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10385 CNOT2 CCR4-NOT transcription complex, subunit 2 853281 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10386 CNOT4 CCR4-NOT transcription complex, subunit 4 1046955 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10387 CNOT6 CCR4-NOT transcription complex, subunit 6 871026 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10388 CNOT6L CCR4-NOT transcription complex, subunit 6-like 826917 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10389 CNOT7 CCR4-NOT transcription complex, subunit 7 450216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10390 CNPY2 canopy 2 homolog (zebrafish) 288483 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10391 CNPY4 canopy 4 homolog (zebrafish) 390897 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10392 CNR2 cannabinoid receptor 2 (macrophage) 537420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10393 CNRIP1 cannabinoid receptor interacting protein 1 164268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10394 CNTD1 cyclin N-terminal domain containing 1 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10395 CNTF ciliary neurotrophic factor 309777 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10396 CNTN5 contactin 5 1576770 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10397 CNTNAP3 contactin associated protein-like 3 1440387 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10398 CNTROB centrobin, centrosomal BRCA2 interacting protein 1446978 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10399 COCH coagulation factor C homolog, cochlin (Limulus polyphemus) 832494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10400 COG2 component of oligomeric golgi complex 2 1157481 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10401 COG4 component of oligomeric golgi complex 4 1022112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10402 COG7 component of oligomeric golgi complex 7 1193985 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10403 COG8 component of oligomeric golgi complex 8 634764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10404 COL21A1 collagen, type XXI, alpha 1 1375998 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10405 COL8A2 collagen, type VIII, alpha 2 459342 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10406 COL9A2 collagen, type IX, alpha 2 741741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10407 COLEC10 collectin sub-family member 10 (C-type lectin) 435006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10408 COLEC11 collectin sub-family member 11 456807 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10409 COMMD1 copper metabolism (Murr1) domain containing 1 282399 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10410 COMMD10 COMM domain containing 10 300144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10411 COMMD3 COMM domain containing 3 241839 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10412 COMMD5 COMM domain containing 5 275301 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10413 COMMD7 COMM domain containing 7 279357 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10414 COMMD8 COMM domain containing 8 254514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10415 COMMD9 COMM domain containing 9 286962 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10416 COPB1 coatomer protein complex, subunit beta 1 1493622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10417 COPB2 coatomer protein complex, subunit beta 2 (beta prime) 1424163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10418 COPS2 COP9 constitutive photomorphogenic homolog subunit 2 (Arabidopsis) 668226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10419 COPS4 COP9 constitutive photomorphogenic homolog subunit 4 (Arabidopsis) 599781 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10420 COPS5 COP9 constitutive photomorphogenic homolog subunit 5 (Arabidopsis) 525759 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10421 COPS7A COP9 constitutive photomorphogenic homolog subunit 7A (Arabidopsis) 433992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10422 COPS7B COP9 constitutive photomorphogenic homolog subunit 7B (Arabidopsis) 403065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10423 COPZ1 coatomer protein complex, subunit zeta 1 277836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10424 COPZ2 coatomer protein complex, subunit zeta 2 228150 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10425 COQ2 coenzyme Q2 homolog, prenyltransferase (yeast) 438048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10426 COQ4 coenzyme Q4 homolog (S. cerevisiae) 358956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10427 COQ5 coenzyme Q5 homolog, methyltransferase (S. cerevisiae) 513084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10428 COQ6 coenzyme Q6 homolog, monooxygenase (S. cerevisiae) 653016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10429 COQ7 coenzyme Q7 homolog, ubiquinone (yeast) 315354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10430 CORO1A coronin, actin binding protein, 1A 633243 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10431 CORO1B coronin, actin binding protein, 1B 324987 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10432 CORO6 coronin 6 390897 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10433 CORT cortistatin 241332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10434 COTL1 coactosin-like 1 (Dictyostelium) 140439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10435 COX11 COX11 homolog, cytochrome c oxidase assembly protein (yeast) 429429 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10436 COX15 COX15 homolog, cytochrome c oxidase assembly protein (yeast) 631215 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10437 COX16 170859 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10438 COX17 COX17 cytochrome c oxidase assembly homolog (S. cerevisiae) 63375 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10439 COX18 COX18 cytochrome c oxidase assembly homolog (S. cerevisiae) 349323 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10440 COX4I1 cytochrome c oxidase subunit IV isoform 1 220545 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10441 COX4NB COX4 neighbor 211926 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10442 COX5B cytochrome c oxidase subunit Vb 151593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10443 COX6A1 cytochrome c oxidase subunit VIa polypeptide 1 131820 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10444 COX6B1 cytochrome c oxidase subunit Vib polypeptide 1 (ubiquitous) 138411 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10445 COX6B2 cytochrome c oxidase subunit VIb polypeptide 2 (testis) 91260 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10446 COX7A1 cytochrome c oxidase subunit VIIa polypeptide 1 (muscle) 74022 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10447 COX7A2 cytochrome c oxidase subunit VIIa polypeptide 2 (liver) 184548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10448 COX7A2L cytochrome c oxidase subunit VIIa polypeptide 2 like 180492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10449 COX7B cytochrome c oxidase subunit VIIb 65403 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10450 COX7C cytochrome c oxidase subunit VIIc 88218 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10451 COX8A cytochrome c oxidase subunit 8A (ubiquitous) 104949 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10452 COX8C cytochrome c oxidase subunit 8C 99372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10453 CPA3 carboxypeptidase A3 (mast cell) 658086 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10454 CPA5 carboxypeptidase A5 652509 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10455 CPA6 carboxypeptidase A6 688506 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10456 CPD carboxypeptidase D 1762839 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10457 CPE carboxypeptidase E 586092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10458 CPEB4 cytoplasmic polyadenylation element binding protein 4 1130610 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10459 CPLX2 complexin 2 198237 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10460 CPLX3 complexin 3 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10461 CPM carboxypeptidase M 691548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10462 CPNE6 copine VI (neuronal) 879138 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10463 CPO carboxypeptidase O 588627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10464 CPOX coproporphyrinogen oxidase 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10465 CPPED1 449709 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10466 CPSF2 cleavage and polyadenylation specific factor 2, 100kDa 1219335 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10467 CPSF7 762021 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10468 CPT1B carnitine palmitoyltransferase 1B (muscle) 912093 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10469 CR1L complement component (3b/4b) receptor 1-like 890799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10470 CRABP2 cellular retinoic acid binding protein 2 219531 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10471 CRADD CASP2 and RIPK1 domain containing adaptor with death domain 308256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10472 CRBN cereblon 660114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10473 CRCP 267189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10474 CREB1 cAMP responsive element binding protein 1 536406 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10475 CREB3L4 cAMP responsive element binding protein 3-like 4 620568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10476 CREB5 cAMP responsive element binding protein 5 822354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10477 CREBL2 cAMP responsive element binding protein-like 2 192153 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10478 CREG1 cellular repressor of E1A-stimulated genes 1 162747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10479 CREG2 cellular repressor of E1A-stimulated genes 2 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10480 CRH corticotropin releasing hormone 124215 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10481 CRHBP corticotropin releasing hormone binding protein 455793 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10482 CRIP3 cysteine-rich protein 3 328029 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10483 CRIPT cysteine-rich PDZ-binding protein 155142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10484 CRISP1 cysteine-rich secretory protein 1 394446 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10485 CRISP2 cysteine-rich secretory protein 2 385320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10486 CRISP3 cysteine-rich secretory protein 3 388362 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10487 CRISPLD2 cysteine-rich secretory protein LCCL domain containing 2 785850 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10488 CRK v-crk sarcoma virus CT10 oncogene homolog (avian) 345774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10489 CRLF1 cytokine receptor-like factor 1 243360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10490 CRLF3 cytokine receptor-like factor 3 622596 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10491 CRLS1 cardiolipin synthase 1 322959 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10492 CRP C-reactive protein, pentraxin-related 346281 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10493 CRTAC1 cartilage acidic protein 1 857337 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10494 CRTAM cytotoxic and regulatory T cell molecule 619554 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10495 CRTC1 CREB regulated transcription coactivator 1 548067 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10496 CRTC3 CREB regulated transcription coactivator 3 904488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10497 CRY2 cryptochrome 2 (photolyase-like) 809679 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10498 CRYAA crystallin, alpha A 93288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10499 CRYAB crystallin, alpha B 272766 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10500 CRYBA1 crystallin, beta A1 324987 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10501 CRYBA2 crystallin, beta A2 220038 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10502 CRYBA4 crystallin, beta A4 309270 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10503 CRYBB1 crystallin, beta B1 394953 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10504 CRYBB2 crystallin, beta B2 323466 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10505 CRYBB3 crystallin, beta B3 273273 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10506 CRYGA crystallin, gamma A 272259 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10507 CRYGB crystallin, gamma B 273780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10508 CRYGD crystallin, gamma D 147537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10509 CRYGN crystallin, gamma N 273780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10510 CRYGS crystallin, gamma S 278343 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10511 CRYL1 crystallin, lambda 1 480129 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10512 CRYZ crystallin, zeta (quinone reductase) 518154 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10513 CSAD cysteine sulfinic acid decarboxylase 779259 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10514 CSDA cold shock domain protein A 450723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10515 CSDC2 cold shock domain containing C2, RNA binding 69966 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10516 CSF1R colony stimulating factor 1 receptor, formerly McDonough feline sarcoma viral (v-fms) oncogene homolog 1486017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10517 CSF2 colony stimulating factor 2 (granulocyte-macrophage) 228150 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10518 CSF3 colony stimulating factor 3 (granulocyte) 211419 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10519 CSHL1 chorionic somatomammotropin hormone-like 1 349323 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10520 CSK c-src tyrosine kinase 639834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10521 CSN1S1 casein alpha s1 246909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10522 CSN2 casein beta 357435 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10523 CSN3 casein kappa 284427 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10524 CSNK1A1 casein kinase 1, alpha 1 578994 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10525 CSNK1D casein kinase 1, delta 448188 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10526 CSNK1G1 casein kinase 1, gamma 1 665691 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10527 CSNK1G3 casein kinase 1, gamma 3 719940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10528 CSNK2B casein kinase 2, beta polypeptide 340704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10529 CSRNP2 835536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10530 CSRP1 cysteine and glycine-rich protein 1 305214 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10531 CSRP2 cysteine and glycine-rich protein 2 305214 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10532 CSRP3 cysteine and glycine-rich protein 3 (cardiac LIM protein) 306735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10533 CST1 cystatin SN 222066 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10534 CST11 cystatin 11 217503 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10535 CST3 cystatin C 104442 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10536 CST4 cystatin S 222066 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10537 CST5 cystatin D 223587 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10538 CST6 cystatin E/M 110526 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10539 CST7 cystatin F (leukocystatin) 230178 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10540 CST8 cystatin 8 (cystatin-related epididymal specific) 223587 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10541 CST9 cystatin 9 (testatin) 247416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10542 CST9L cystatin 9-like 231192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10543 CSTA cystatin A (stefin A) 156663 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10544 CSTB cystatin B (stefin B) 121173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10545 CSTF1 cleavage stimulation factor, 3' pre-RNA, subunit 1, 50kDa 667212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10546 CSTF2 cleavage stimulation factor, 3' pre-RNA, subunit 2, 64kDa 905502 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10547 CSTL1 cystatin-like 1 228150 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10548 CT45A5 177957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10549 CT62 212433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10550 CTAG2 cancer/testis antigen 2 255528 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10551 CTAGE6P 586599 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10552 CTBP2 C-terminal binding protein 2 1254825 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10553 CTDP1 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) phosphatase, subunit 1 553137 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10554 CTDSP2 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase 2 395460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10555 CTDSPL2 CTD (carboxy-terminal domain, RNA polymerase II, polypeptide A) small phosphatase like 2 734643 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10556 CTHRC1 collagen triple helix repeat containing 1 301158 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10557 CTLA4 cytotoxic T-lymphocyte-associated protein 4 348816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10558 CTNNB1 catenin (cadherin-associated protein), beta 1, 88kDa 1217814 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10559 CTNNBIP1 catenin, beta interacting protein 1 82641 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10560 CTNS cystinosis, nephropathic 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10561 CTPS CTP synthase 934908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10562 CTRB1 chymotrypsinogen B1 118131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10563 CTSC cathepsin C 697125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10564 CTSD cathepsin D 344760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10565 CTSH cathepsin H 446667 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10566 CTSK cathepsin K 516126 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10567 CTSL1 cathepsin L1 522210 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10568 CTSO cathepsin O 435513 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10569 CTSW cathepsin W 548574 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10570 CTSZ cathepsin Z 392925 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10571 CTXN3 cortexin 3 126750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10572 CUEDC2 CUE domain containing 2 454272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10573 CUL2 cullin 2 1175226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10574 CUL3 cullin 3 1166607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10575 CUL4A cullin 4A 1008423 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10576 CUTA cutA divalent cation tolerance homolog (E. coli) 338169 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10577 CUTC cutC copper transporter homolog (E. coli) 402051 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10578 CUZD1 CUB and zona pellucida-like domains 1 943020 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10579 CWC15 CWC15 homolog (S. cerevisiae) 299130 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10580 CWC22 1354704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10581 CWC25 607386 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10582 CWC27 747825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10583 CX3CL1 chemokine (C-X3-C motif) ligand 1 611442 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10584 CXADR coxsackie virus and adenovirus receptor 547053 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10585 CXCL1 chemokine (C-X-C motif) ligand 1 (melanoma growth stimulating activity, alpha) 119652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10586 CXCL10 chemokine (C-X-C motif) ligand 10 158691 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10587 CXCL11 chemokine (C-X-C motif) ligand 11 152607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10588 CXCL12 chemokine (C-X-C motif) ligand 12 (stromal cell-derived factor 1) 210912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10589 CXCL13 chemokine (C-X-C motif) ligand 13 (B-cell chemoattractant) 175422 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10590 CXCL14 chemokine (C-X-C motif) ligand 14 125736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10591 CXCL16 chemokine (C-X-C motif) ligand 16 344253 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10592 CXCL2 chemokine (C-X-C motif) ligand 2 119652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10593 CXCL3 chemokine (C-X-C motif) ligand 3 119652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10594 CXCL5 chemokine (C-X-C motif) ligand 5 126243 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10595 CXCL6 chemokine (C-X-C motif) ligand 6 (granulocyte chemotactic protein 2) 129792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10596 CXCL9 chemokine (C-X-C motif) ligand 9 199758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10597 CXCR2 551109 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10598 CXCR3 chemokine (C-X-C motif) receptor 3 621582 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10599 CXCR4 chemokine (C-X-C motif) receptor 4 554658 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10600 CXCR5 chemokine (C-X-C motif) receptor 5 571389 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10601 CXCR6 chemokine (C-X-C motif) receptor 6 523731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10602 CXXC1 CXXC finger 1 (PHD domain) 1023633 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10603 CXXC4 CXXC finger 4 297102 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10604 CXXC5 CXXC finger 5 218010 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10605 CXorf1 chromosome X open reading frame 1 172380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10606 CXorf21 chromosome X open reading frame 21 461370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10607 CXorf23 chromosome X open reading frame 23 1061151 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10608 CXorf27 chromosome X open reading frame 27 181506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10609 CXorf38 chromosome X open reading frame 38 443625 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10610 CXorf40B chromosome X open reading frame 40B 245895 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10611 CXorf41 chromosome X open reading frame 41 339183 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10612 CXorf48 chromosome X open reading frame 48 280371 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10613 CXorf56 chromosome X open reading frame 56 353379 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10614 CXorf61 chromosome X open reading frame 61 177450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10615 CYB561 cytochrome b-561 319917 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10616 CYB561D1 cytochrome b-561 domain containing 1 317889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10617 CYB561D2 cytochrome b-561 domain containing 2 336648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10618 CYB5A cytochrome b5 type A (microsomal) 222066 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10619 CYB5B cytochrome b5 type B (outer mitochondrial membrane) 239811 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10620 CYB5D1 cytochrome b5 domain containing 1 209898 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10621 CYB5D2 cytochrome b5 domain containing 2 407121 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10622 CYB5R3 cytochrome b5 reductase 3 269217 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10623 CYB5RL 492804 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10624 CYBASC3 cytochrome b, ascorbate dependent 3 385827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10625 CYBRD1 cytochrome b reductase 1 412191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10626 CYC1 cytochrome c-1 432978 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10627 CYCS cytochrome c, somatic 165282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10628 CYFIP1 cytoplasmic FMR1 interacting protein 1 1953978 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10629 CYGB cytoglobin 188097 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10630 CYHR1 cysteine/histidine-rich 1 199251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10631 CYLC2 cylicin, basic protein of sperm head cytoskeleton 2 540969 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10632 CYP19A1 cytochrome P450, family 19, subfamily A, polypeptide 1 784836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10633 CYP1A1 cytochrome P450, family 1, subfamily A, polypeptide 1 792441 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10634 CYP1A2 cytochrome P450, family 1, subfamily A, polypeptide 2 798525 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10635 CYP27B1 cytochrome P450, family 27, subfamily B, polypeptide 1 692562 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10636 CYP2E1 cytochrome P450, family 2, subfamily E, polypeptide 1 708279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10637 CYP2J2 cytochrome P450, family 2, subfamily J, polypeptide 2 774696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10638 CYP2R1 cytochrome P450, family 2, subfamily R, polypeptide 1 657579 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10639 CYP2U1 cytochrome P450, family 2, subfamily U, polypeptide 1 588627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10640 CYP39A1 cytochrome P450, family 39, subfamily A, polypeptide 1 739206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10641 CYP3A43 cytochrome P450, family 3, subfamily A, polypeptide 43 794469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10642 CYP3A5 cytochrome P450, family 3, subfamily A, polypeptide 5 791427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10643 CYP46A1 cytochrome P450, family 46, subfamily A, polypeptide 1 641355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10644 CYP4A11 cytochrome P450, family 4, subfamily A, polypeptide 11 815256 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10645 CYP4A22 cytochrome P450, family 4, subfamily A, polypeptide 22 815256 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10646 CYP4F22 cytochrome P450, family 4, subfamily F, polypeptide 22 824889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10647 CYP4F3 cytochrome P450, family 4, subfamily F, polypeptide 3 816777 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10648 CYP51A1 cytochrome P450, family 51, subfamily A, polypeptide 1 696618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10649 CYP7A1 cytochrome P450, family 7, subfamily A, polypeptide 1 780273 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10650 CYTH2 622596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10651 CYTH3 479622 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10652 CYTIP 563784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10653 CYTL1 cytokine-like 1 136890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10654 CYYR1 cysteine/tyrosine-rich 1 234741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10655 D4S234E 231699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10656 DACH1 dachshund homolog 1 (Drosophila) 814242 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10657 DACT1 dapper, antagonist of beta-catenin, homolog 1 (Xenopus laevis) 973947 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10658 DAD1 defender against cell death 1 177450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10659 DAG1 dystroglycan 1 (dystrophin-associated glycoprotein 1) 1366872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10660 DAGLB diacylglycerol lipase, beta 1026675 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10661 DAP death-associated protein 75036 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10662 DAPK3 death-associated protein kinase 3 349323 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10663 DAPL1 death associated protein-like 1 140946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10664 DAPP1 dual adaptor of phosphotyrosine and 3-phosphoinositides 397995 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10665 DARC Duffy blood group, chemokine receptor 530322 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10666 DAXX death-associated protein 6 1170156 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10667 DAZAP1 DAZ associated protein 1 410163 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10668 DAZAP2 DAZ associated protein 2 360477 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10669 DAZL deleted in azoospermia-like 472524 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10670 DBF4 DBF4 homolog (S. cerevisiae) 1025661 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10671 DBF4B DBF4 homolog B (S. cerevisiae) 976482 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10672 DBI diazepam binding inhibitor (GABA receptor modulator, acyl-Coenzyme A binding protein) 207870 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10673 DBNDD1 dysbindin (dystrobrevin binding protein 1) domain containing 1 135369 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10674 DBNL drebrin-like 537420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10675 DBR1 debranching enzyme homolog 1 (S. cerevisiae) 743262 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10676 DBT dihydrolipoamide branched chain transacylase E2 756951 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10677 DBX1 developing brain homeobox 1 406107 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10678 DCAF10 590655 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10679 DCAF15 732615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10680 DCAF16 332085 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10681 DCAF4 781287 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10682 DCAF5 1431768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10683 DCAF6 1329354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10684 DCAF7 532350 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10685 DCAKD dephospho-CoA kinase domain containing 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10686 DCBLD2 discoidin, CUB and LCCL domain containing 2 1106781 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10687 DCD dermcidin 176943 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10688 DCDC1 doublecortin domain containing 1 554151 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10689 DCDC2 doublecortin domain containing 2 702702 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10690 DCI dodecenoyl-Coenzyme A delta isomerase (3,2 trans-enoyl-Coenzyme A isomerase) 219024 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10691 DCK deoxycytidine kinase 363012 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10692 DCLRE1A DNA cross-link repair 1A (PSO2 homolog, S. cerevisiae) 1601613 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10693 DCLRE1B DNA cross-link repair 1B (PSO2 homolog, S. cerevisiae) 818805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10694 DCN decorin 561756 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10695 DCP1B DCP1 decapping enzyme homolog B (S. cerevisiae) 912093 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10696 DCP2 DCP2 decapping enzyme homolog (S. cerevisiae) 662649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10697 DCPS decapping enzyme, scavenger 514605 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10698 DCST2 DC-STAMP domain containing 2 1200576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10699 DCTD dCMP deaminase 285948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10700 DCTN1 dynactin 1 (p150, glued homolog, Drosophila) 2015325 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10701 DCTN2 dynactin 2 (p50) 517140 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10702 DCTN3 dynactin 3 (p22) 310791 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10703 DCTN5 dynactin 5 (p25) 290511 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10704 DCTN6 dynactin 6 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10705 DCTPP1 214968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10706 DCUN1D1 DCN1, defective in cullin neddylation 1, domain containing 1 (S. cerevisiae) 406107 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10707 DCUN1D2 DCN1, defective in cullin neddylation 1, domain containing 2 (S. cerevisiae) 406107 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10708 DCUN1D3 DCN1, defective in cullin neddylation 1, domain containing 3 (S. cerevisiae) 467961 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10709 DCUN1D4 DCN1, defective in cullin neddylation 1, domain containing 4 (S. cerevisiae) 453258 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10710 DCUN1D5 DCN1, defective in cullin neddylation 1, domain containing 5 (S. cerevisiae) 378222 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10711 DCX doublecortex; lissencephaly, X-linked (doublecortin) 694083 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10712 DCXR dicarbonyl/L-xylulose reductase 174915 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10713 DDA1 DET1 and DDB1 associated 1 121173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10714 DDAH2 dimethylarginine dimethylaminohydrolase 2 447174 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10715 DDHD1 DDHD domain containing 1 1065207 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10716 DDI2 DDI1, DNA-damage inducible 1, homolog 2 (S. cerevisiae) 554658 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10717 DDIT3 DNA-damage-inducible transcript 3 262626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10718 DDIT4 DNA-damage-inducible transcript 4 328536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10719 DDIT4L DNA-damage-inducible transcript 4-like 299130 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10720 DDO D-aspartate oxidase 572910 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10721 DDOST dolichyl-diphosphooligosaccharide-protein glycosyltransferase 516633 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10722 DDR1 discoidin domain receptor tyrosine kinase 1 1433796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10723 DDTL D-dopachrome tautomerase-like 63375 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10724 DDX1 DEAD (Asp-Glu-Ala-Asp) box polypeptide 1 1169649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10725 DDX18 DEAD (Asp-Glu-Ala-Asp) box polypeptide 18 1048983 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10726 DDX19A DEAD (Asp-Glu-Ala-As) box polypeptide 19A 701688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10727 DDX19B DEAD (Asp-Glu-Ala-As) box polypeptide 19B 719433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10728 DDX23 DEAD (Asp-Glu-Ala-Asp) box polypeptide 23 1281189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10729 DDX25 DEAD (Asp-Glu-Ala-Asp) box polypeptide 25 593697 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10730 DDX28 DEAD (Asp-Glu-Ala-Asp) box polypeptide 28 598260 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10731 DDX39 DEAD (Asp-Glu-Ala-Asp) box polypeptide 39 671268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10732 DDX4 DEAD (Asp-Glu-Ala-Asp) box polypeptide 4 1145313 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10733 DDX47 DEAD (Asp-Glu-Ala-Asp) box polypeptide 47 717912 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10734 DDX52 DEAD (Asp-Glu-Ala-Asp) box polypeptide 52 910065 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10735 DDX54 DEAD (Asp-Glu-Ala-Asp) box polypeptide 54 1139229 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10736 DDX59 DEAD (Asp-Glu-Ala-Asp) box polypeptide 59 957216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10737 DDX6 DEAD (Asp-Glu-Ala-Asp) box polypeptide 6 760500 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10738 DECR1 2,4-dienoyl CoA reductase 1, mitochondrial 494325 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10739 DEDD death effector domain containing 493311 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10740 DEDD2 death effector domain containing 2 337155 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10741 DEF6 differentially expressed in FDCP 6 homolog (mouse) 575952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10742 DEF8 differentially expressed in FDCP 8 homolog (mouse) 289497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10743 DEFA1 defensin, alpha 1 141960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10744 DEFA1B 141960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10745 DEFA3 defensin, alpha 3, neutrophil-specific 141960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10746 DEFA4 defensin, alpha 4, corticostatin 152100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10747 DEFA5 defensin, alpha 5, Paneth cell-specific 148551 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10748 DEFA6 defensin, alpha 6, Paneth cell-specific 85683 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10749 DEFB104A defensin, beta 104A 115089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10750 DEFB104B defensin, beta 104B 115089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10751 DEFB106A defensin, beta 106A 178464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10752 DEFB106B defensin, beta 106B 178464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10753 DEFB108B defensin, beta 108B 116610 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10754 DEFB110 defensin, beta 110 176943 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10755 DEFB116 defensin, beta 116 160719 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10756 DEFB119 defensin, beta 119 262119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10757 DEFB121 defensin, beta 121 121173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10758 DEFB123 defensin, beta 123 107484 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10759 DEFB124 defensin, beta 124 113568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10760 DEFB125 defensin, beta 125 242853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10761 DEFB126 defensin, beta 126 173394 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10762 DEFB127 defensin, beta 127 156156 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10763 DEFB128 defensin, beta 128 147030 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10764 DEFB132 150072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10765 DEFB134 105963 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10766 DEFB135 122694 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10767 DEFB136 124215 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10768 DEFB4A 31434 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10769 DEGS2 degenerative spermatocyte homolog 2, lipid desaturase (Drosophila) 223587 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10770 DEK DEK oncogene (DNA binding) 546546 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10771 DEM1 570882 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10772 DENND2A DENN/MADD domain containing 2A 1453569 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10773 DENND4B DENN/MADD domain containing 4B 2147145 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10774 DENR density-regulated protein 268203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10775 DEPDC6 DEP domain containing 6 571896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10776 DERA 2-deoxyribose-5-phosphate aldolase homolog (C. elegans) 485199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10777 DERL1 Der1-like domain family, member 1 351351 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10778 DERL2 Der1-like domain family, member 2 330057 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10779 DES desmin 438048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10780 DFFA DNA fragmentation factor, 45kDa, alpha polypeptide 529308 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10781 DFNB59 deafness, autosomal recessive 59 549081 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10782 DGAT2 diacylglycerol O-acyltransferase homolog 2 (mouse) 544518 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10783 DGCR14 DiGeorge syndrome critical region gene 14 468975 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10784 DGCR8 DiGeorge syndrome critical region gene 8 1196013 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10785 DGKB diacylglycerol kinase, beta 90kDa 1171170 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10786 DGKK diacylglycerol kinase, kappa 1947894 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10787 DGKZ diacylglycerol kinase, zeta 104kDa 709293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10788 DGUOK deoxyguanosine kinase 437034 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10789 DHCR7 7-dehydrocholesterol reductase 549081 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -10790 DHDDS dehydrodolichyl diphosphate synthase 525759 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10791 DHDH dihydrodiol dehydrogenase (dimeric) 379236 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10792 DHDPSL 513084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10793 DHFR dihydrofolate reductase 297609 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10794 DHFRL1 dihydrofolate reductase-like 1 287976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10795 DHODH dihydroorotate dehydrogenase 450723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10796 DHRS1 dehydrogenase/reductase (SDR family) member 1 493818 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10797 DHRS11 334620 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10798 DHRS3 dehydrogenase/reductase (SDR family) member 3 327015 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10799 DHRS4L1 dehydrogenase/reductase (SDR family) member 4 like 1 383292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10800 DHRS4L2 dehydrogenase/reductase (SDR family) member 4 like 2 301665 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10801 DHRS7B dehydrogenase/reductase (SDR family) member 7B 468468 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10802 DHRS7C dehydrogenase/reductase (SDR family) member 7C 477594 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10803 DHRSX dehydrogenase/reductase (SDR family) X-linked 455793 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10804 DHX29 DEAH (Asp-Glu-Ala-His) box polypeptide 29 2138526 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10805 DHX33 DEAH (Asp-Glu-Ala-His) box polypeptide 33 842127 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10806 DHX35 DEAH (Asp-Glu-Ala-His) box polypeptide 35 1092585 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10807 DHX9 DEAH (Asp-Glu-Ala-His) box polypeptide 9 1987947 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10808 DIABLO diablo homolog (Drosophila) 349830 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10809 DIAPH1 diaphanous homolog 1 (Drosophila) 1925079 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10810 DIAPH2 diaphanous homolog 2 (Drosophila) 1689324 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10811 DIMT1L DIM1 dimethyladenosine transferase 1-like (S. cerevisiae) 459849 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10812 DIO1 deiodinase, iodothyronine, type I 388362 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10813 DIO2 deiodinase, iodothyronine, type II 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10814 DIO3 deiodinase, iodothyronine, type III 446160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10815 DIP2A DIP2 disco-interacting protein 2 homolog A (Drosophila) 1550406 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10816 DIRAS3 DIRAS family, GTP-binding RAS-like 3 351858 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10817 DIS3L2 DIS3 mitotic control homolog (S. cerevisiae)-like 2 1107288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10818 DKK1 dickkopf homolog 1 (Xenopus laevis) 358956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10819 DKK2 dickkopf homolog 2 (Xenopus laevis) 403572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10820 DKK3 dickkopf homolog 3 (Xenopus laevis) 436020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10821 DLAT dihydrolipoamide S-acetyltransferase 908544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10822 DLG3 discs, large homolog 3 (neuroendocrine-dlg, Drosophila) 1229475 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10823 DLG4 discs, large homolog 4 (Drosophila) 1005381 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10824 DLGAP5 1324791 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10825 DLK2 delta-like 2 homolog (Drosophila) 519168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10826 DLL1 delta-like 1 (Drosophila) 755430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10827 DLL3 delta-like 3 (Drosophila) 444639 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10828 DLL4 delta-like 4 (Drosophila) 807144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10829 DLST dihydrolipoamide S-succinyltransferase (E2 component of 2-oxo-glutarate complex) 686985 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10830 DLX2 distal-less homeobox 2 223080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10831 DLX3 distal-less homeobox 3 436020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10832 DLX4 distal-less homeobox 4 406614 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10833 DMAP1 DNA methyltransferase 1 associated protein 1 686478 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10834 DMBX1 diencephalon/mesencephalon homeobox 1 590655 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10835 DMRT2 doublesex and mab-3 related transcription factor 2 621582 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10836 DMRTB1 DMRT-like family B with proline-rich C-terminal, 1 302172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10837 DMRTC2 DMRT-like family C2 574938 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10838 DMTF1 cyclin D binding myb-like transcription factor 1 1189929 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10839 DNAI1 dynein, axonemal, intermediate chain 1 1053039 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10840 DNAJA1 DnaJ (Hsp40) homolog, subfamily A, member 1 621582 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10841 DNAJA2 DnaJ (Hsp40) homolog, subfamily A, member 2 604851 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10842 DNAJB11 DnaJ (Hsp40) homolog, subfamily B, member 11 529815 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10843 DNAJB12 DnaJ (Hsp40) homolog, subfamily B, member 12 560742 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10844 DNAJB13 DnaJ (Hsp40) related, subfamily B, member 13 498381 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10845 DNAJB14 DnaJ (Hsp40) homolog, subfamily B, member 14 524745 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10846 DNAJB2 DnaJ (Hsp40) homolog, subfamily B, member 2 420303 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10847 DNAJB3 224094 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10848 DNAJB6 DnaJ (Hsp40) homolog, subfamily B, member 6 426387 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10849 DNAJB8 DnaJ (Hsp40) homolog, subfamily B, member 8 356421 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10850 DNAJB9 DnaJ (Hsp40) homolog, subfamily B, member 9 344760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10851 DNAJC1 DnaJ (Hsp40) homolog, subfamily C, member 1 753909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10852 DNAJC12 DnaJ (Hsp40) homolog, subfamily C, member 12 326508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10853 DNAJC16 DnaJ (Hsp40) homolog, subfamily C, member 16 1219335 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10854 DNAJC17 DnaJ (Hsp40) homolog, subfamily C, member 17 486213 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10855 DNAJC18 DnaJ (Hsp40) homolog, subfamily C, member 18 546546 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10856 DNAJC19 DnaJ (Hsp40) homolog, subfamily C, member 19 186576 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10857 DNAJC21 DnaJ (Hsp40) homolog, subfamily C, member 21 852774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10858 DNAJC22 524238 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10859 DNAJC24 236262 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10860 DNAJC25 384813 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10861 DNAJC4 DnaJ (Hsp40) homolog, subfamily C, member 4 286455 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10862 DNAJC5 DnaJ (Hsp40) homolog, subfamily C, member 5 239304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10863 DNAJC5B DnaJ (Hsp40) homolog, subfamily C, member 5 beta 312312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10864 DNAJC5G DnaJ (Hsp40) homolog, subfamily C, member 5 gamma 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10865 DNAJC7 DnaJ (Hsp40) homolog, subfamily C, member 7 740220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10866 DNAJC8 DnaJ (Hsp40) homolog, subfamily C, member 8 404586 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10867 DNAL4 dynein, axonemal, light chain 4 101907 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10868 DNASE1 deoxyribonuclease I 315861 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10869 DNASE1L1 deoxyribonuclease I-like 1 406107 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10870 DNASE1L3 deoxyribonuclease I-like 3 481650 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10871 DNASE2B deoxyribonuclease II beta 562770 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10872 DNLZ DNL-type zinc finger 73008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10873 DNM1L dynamin 1-like 1161537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10874 DNMT1 DNA (cytosine-5-)-methyltransferase 1 2244996 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10875 DNMT3L DNA (cytosine-5-)-methyltransferase 3-like 200772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10876 DNTTIP2 deoxynucleotidyltransferase, terminal, interacting protein 2 1142778 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10877 DOCK1 dedicator of cytokinesis 1 2791035 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10878 DOCK7 dedicator of cytokinesis 7 3287388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10879 DOHH deoxyhypusine hydroxylase/monooxygenase 176436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10880 DOK1 docking protein 1, 62kDa (downstream of tyrosine kinase 1) 616005 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10881 DOK2 docking protein 2, 56kDa 446667 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10882 DOLPP1 dolichyl pyrophosphate phosphatase 1 353379 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10883 DOM3Z dom-3 homolog Z (C. elegans) 616005 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10884 DONSON downstream neighbor of SON 717912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10885 DPCD 287976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10886 DPEP2 dipeptidase 2 668733 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10887 DPEP3 dipeptidase 3 657072 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10888 DPF2 D4, zinc and double PHD fingers family 2 618033 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10889 DPF3 D4, zinc and double PHD fingers, family 3 562770 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10890 DPH2 DPH2 homolog (S. cerevisiae) 643890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10891 DPH3 DPH3, KTI11 homolog (S. cerevisiae) 132327 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10892 DPH5 DPH5 homolog (S. cerevisiae) 449202 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10893 DPM1 dolichyl-phosphate mannosyltransferase polypeptide 1, catalytic subunit 412191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10894 DPM2 dolichyl-phosphate mannosyltransferase polypeptide 2, regulatory subunit 137397 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10895 DPM3 dolichyl-phosphate mannosyltransferase polypeptide 3 189111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10896 DPP9 dipeptidyl-peptidase 9 489762 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10897 DPPA4 developmental pluripotency associated 4 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10898 DPPA5 developmental pluripotency associated 5 184041 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10899 DPT dermatopontin 315354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10900 DPY19L1 dpy-19-like 1 (C. elegans) 1030731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10901 DPY30 dpy-30 homolog (C. elegans) 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10902 DPYSL3 dihydropyrimidinase-like 3 875082 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10903 DQX1 DEAQ box polypeptide 1 (RNA-dependent ATPase) 983580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10904 DR1 down-regulator of transcription 1, TBP-binding (negative cofactor 2) 275301 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10905 DRAM2 420303 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10906 DRAP1 DR1-associated protein 1 (negative cofactor 2 alpha) 241332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10907 DRD1 dopamine receptor D1 681915 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10908 DRD5 dopamine receptor D5 665184 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -10909 DRG2 developmentally regulated GTP binding protein 2 492804 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10910 DRGX dorsal root ganglia homeobox 369603 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10911 DSCC1 defective in sister chromatid cohesion 1 homolog (S. cerevisiae) 523224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10912 DSCR3 Down syndrome critical region gene 3 392418 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10913 DSCR4 Down syndrome critical region gene 4 187083 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10914 DSCR6 Down syndrome critical region gene 6 237783 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10915 DSG2 desmoglein 2 647439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10916 DSN1 DSN1, MIND kinetochore complex component, homolog (S. cerevisiae) 563277 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10917 DSTN destrin (actin depolymerizing factor) 257049 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10918 DTD1 D-tyrosyl-tRNA deacylase 1 homolog (S. cerevisiae) 305721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10919 DTNA dystrobrevin, alpha 1219842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10920 DTX3 deltex 3 homolog (Drosophila) 512577 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10921 DTX3L deltex 3-like (Drosophila) 1081431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10922 DUOXA1 dual oxidase maturation factor 1 713349 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10923 DUOXA2 dual oxidase maturation factor 2 393432 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10924 DUS1L dihydrouridine synthase 1-like (S. cerevisiae) 199251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10925 DUS2L dihydrouridine synthase 2-like, SMM1 homolog (S. cerevisiae) 781794 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10926 DUS4L dihydrouridine synthase 4-like (S. cerevisiae) 495846 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10927 DUSP1 dual specificity phosphatase 1 379743 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10928 DUSP11 dual specificity phosphatase 11 (RNA/RNP complex 1-interacting) 566319 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10929 DUSP12 dual specificity phosphatase 12 480129 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10930 DUSP14 dual specificity phosphatase 14 304707 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10931 DUSP15 dual specificity phosphatase 15 163761 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10932 DUSP18 dual specificity phosphatase 18 289497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10933 DUSP19 dual specificity phosphatase 19 339690 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10934 DUSP2 dual specificity phosphatase 2 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10935 DUSP21 dual specificity phosphatase 21 292539 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10936 DUSP22 dual specificity phosphatase 22 284934 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10937 DUSP23 dual specificity phosphatase 23 96330 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10938 DUSP3 dual specificity phosphatase 3 217503 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10939 DUSP4 dual specificity phosphatase 4 292539 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10940 DUSP5 dual specificity phosphatase 5 399516 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10941 DUT deoxyuridine triphosphatase 206349 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10942 DVL2 dishevelled, dsh homolog 2 (Drosophila) 882687 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10943 DYM dymeclin 1051518 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10944 DYNC1LI1 dynein, cytoplasmic 1, light intermediate chain 1 707772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10945 DYNC1LI2 dynein, cytoplasmic 1, light intermediate chain 2 680394 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10946 DYNLL1 dynein, light chain, LC8-type 1 140946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10947 DYNLL2 dynein, light chain, LC8-type 2 140946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10948 DYNLRB1 dynein, light chain, roadblock-type 1 155649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10949 DYNLRB2 dynein, light chain, roadblock-type 2 152100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10950 DYNLT1 dynein, light chain, Tctex-type 1 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10951 DYNLT3 dynein, light chain, Tctex-type 3 170859 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10952 DYRK4 dual-specificity tyrosine-(Y)-phosphorylation regulated kinase 4 814749 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10953 DYSFIP1 dysferlin interacting protein 1 103428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10954 DYX1C1 dyslexia susceptibility 1 candidate 1 710814 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10955 DZIP1 DAZ interacting protein 1 1300455 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10956 E2F2 E2F transcription factor 2 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10957 E2F5 E2F transcription factor 5, p130-binding 411177 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10958 E2F6 E2F transcription factor 6 386334 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10959 E2F7 E2F transcription factor 7 1411488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10960 E2F8 E2F transcription factor 8 1344564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10961 EAF1 ELL associated factor 1 367068 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10962 EAPP E2F-associated phosphoprotein 447174 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10963 EBAG9 estrogen receptor binding site associated, antigen, 9 330057 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10964 EBF1 early B-cell factor 1 622596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10965 EBF3 early B-cell factor 3 611949 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10966 EBI3 Epstein-Barr virus induced gene 3 212940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10967 EBLN2 412698 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10968 EBNA1BP2 EBNA1 binding protein 2 496860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10969 ECSCR 32955 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10970 ECSIT ECSIT homolog (Drosophila) 620568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10971 ECT2L epithelial cell transforming sequence 2 oncogene-like 1417065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10972 EDA ectodysplasin A 624117 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10973 EDAR ectodysplasin A receptor 657072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10974 EDARADD EDAR-associated death domain 340704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10975 EDC3 enhancer of mRNA decapping 3 homolog (S. cerevisiae) 786357 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10976 EDDM3B 227136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10977 EDEM1 ER degradation enhancer, mannosidase alpha-like 1 765063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10978 EDEM2 ER degradation enhancer, mannosidase alpha-like 2 875082 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10979 EDF1 endothelial differentiation-related factor 1 157170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10980 EDIL3 EGF-like repeats and discoidin I-like domains 3 753909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10981 EDN2 endothelin 2 141453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10982 EDN3 endothelin 3 365040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10983 EDNRA endothelin receptor type A 665184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10984 EEF1B2 eukaryotic translation elongation factor 1 beta 2 320931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10985 EEF1E1 eukaryotic translation elongation factor 1 epsilon 1 274287 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10986 EEF1G eukaryotic translation elongation factor 1 gamma 684450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10987 EFCAB1 EF-hand calcium binding domain 1 334620 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10988 EFCAB5 EF-hand calcium binding domain 5 2251080 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -10989 EFEMP2 EGF-containing fibulin-like extracellular matrix protein 2 609921 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10990 EFHA1 EF-hand domain family, member A1 602316 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10991 EFHB EF-hand domain family, member B 1294878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10992 EFHD1 EF-hand domain family, member D1 231699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10993 EFNA1 ephrin-A1 274794 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10994 EFNA4 ephrin-A4 337662 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10995 EFNA5 ephrin-A5 293046 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10996 EFNB3 ephrin-B3 448695 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10997 EGFL8 EGF-like-domain, multiple 8 463398 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10998 EGLN1 egl nine homolog 1 (C. elegans) 336141 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -10999 EGLN2 egl nine homolog 2 (C. elegans) 477594 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11000 EGLN3 egl nine homolog 3 (C. elegans) 350844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11001 EHBP1L1 EH domain binding protein 1-like 1 1291329 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11002 EHD4 EH-domain containing 4 681408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11003 EHMT1 euchromatic histone-lysine N-methyltransferase 1 1501734 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11004 EHMT2 euchromatic histone-lysine N-methyltransferase 2 1812018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11005 EI24 etoposide induced 2.4 mRNA 471510 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11006 EID1 EP300 interacting inhibitor of differentiation 1 287976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11007 EID2 EP300 interacting inhibitor of differentiation 2 254007 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11008 EID2B EP300 interacting inhibitor of differentiation 2B 223587 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11009 EIF1 eukaryotic translation initiation factor 1 163761 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11010 EIF1B eukaryotic translation initiation factor 1B 181506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11011 EIF2AK2 eukaryotic translation initiation factor 2-alpha kinase 2 870012 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11012 EIF2AK4 eukaryotic translation initiation factor 2 alpha kinase 4 2490891 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11013 EIF2B1 eukaryotic translation initiation factor 2B, subunit 1 alpha, 26kDa 483678 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11014 EIF2B2 eukaryotic translation initiation factor 2B, subunit 2 beta, 39kDa 545532 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11015 EIF2B3 eukaryotic translation initiation factor 2B, subunit 3 gamma, 58kDa 730080 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11016 EIF2B4 eukaryotic translation initiation factor 2B, subunit 4 delta, 67kDa 775203 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11017 EIF2C2 eukaryotic translation initiation factor 2C, 2 1331382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11018 EIF2S3 eukaryotic translation initiation factor 2, subunit 3 gamma, 52kDa 732615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11019 EIF3B eukaryotic translation initiation factor 3, subunit B 930345 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11020 EIF3D eukaryotic translation initiation factor 3, subunit D 861900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11021 EIF3E eukaryotic translation initiation factor 3, subunit E 704730 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11022 EIF3F eukaryotic translation initiation factor 3, subunit F 559728 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11023 EIF3H eukaryotic translation initiation factor 3, subunit H 533871 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11024 EIF3J eukaryotic translation initiation factor 3, subunit J 331578 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11025 EIF3M eukaryotic translation initiation factor 3, subunit M 569361 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11026 EIF4A1 eukaryotic translation initiation factor 4A, isoform 1 641355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11027 EIF4E eukaryotic translation initiation factor 4E 334620 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11028 EIF4E1B eukaryotic translation initiation factor 4E family member 1B 289497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11029 EIF4E2 eukaryotic translation initiation factor 4E family member 2 376194 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11030 EIF4E3 eukaryotic translation initiation factor 4E family member 3 226122 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11031 EIF4EBP1 eukaryotic translation initiation factor 4E binding protein 1 111540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11032 EIF4EBP2 eukaryotic translation initiation factor 4E binding protein 2 114582 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11033 EIF4EBP3 eukaryotic translation initiation factor 4E binding protein 3 105456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11034 EIF4G1 eukaryotic translation initiation factor 4 gamma, 1 2364648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11035 EIF4H eukaryotic translation initiation factor 4H 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11036 EIF5A eukaryotic translation initiation factor 5A 254514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11037 EIF5A2 eukaryotic translation initiation factor 5A2 242346 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11038 EIF5AL1 eukaryotic translation initiation factor 5A-like 1 124722 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11039 EIF6 eukaryotic translation initiation factor 6 444639 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11040 ELAC1 elaC homolog 1 (E. coli) 559728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11041 ELAVL2 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 2 (Hu antigen B) 559728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11042 ELAVL3 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 3 (Hu antigen C) 545532 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11043 ELAVL4 ELAV (embryonic lethal, abnormal vision, Drosophila)-like 4 (Hu antigen D) 632736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11044 ELF3 E74-like factor 3 (ets domain transcription factor, epithelial-specific ) 581529 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11045 ELF4 E74-like factor 4 (ets domain transcription factor) 1026168 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11046 ELF5 E74-like factor 5 (ets domain transcription factor) 418782 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11047 ELK4 ELK4, ETS-domain protein (SRF accessory protein 1) 735150 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11048 ELMO3 engulfment and cell motility 3 638313 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11049 ELMOD3 616512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11050 ELOF1 elongation factor 1 homolog (S. cerevisiae) 133848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11051 ELOVL1 elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 1 440076 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11052 ELOVL2 elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 2 464412 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11053 ELOVL4 elongation of very long chain fatty acids (FEN1/Elo2, SUR4/Elo3, yeast)-like 4 479115 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11054 ELOVL7 ELOVL family member 7, elongation of long chain fatty acids (yeast) 443118 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11055 ELP4 elongation protein 4 homolog (S. cerevisiae) 666705 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11056 ELSPBP1 epididymal sperm binding protein 1 350844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11057 EMCN endomucin 419289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11058 EMD emerin (Emery-Dreifuss muscular dystrophy) 249951 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11059 EME1 essential meiotic endonuclease 1 homolog 1 (S. pombe) 904488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11060 EMG1 EMG1 nucleolar protein homolog (S. cerevisiae) 375180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11061 EMILIN1 elastin microfibril interfacer 1 806637 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11062 EMILIN3 elastin microfibril interfacer 3 1087008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11063 EML1 echinoderm microtubule associated protein like 1 1280682 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11064 EMP1 epithelial membrane protein 1 248430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11065 EMP2 epithelial membrane protein 2 263640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11066 EMP3 epithelial membrane protein 3 257049 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11067 EMX2 empty spiracles homeobox 2 260091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11068 EN1 engrailed homeobox 1 200265 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11069 EN2 engrailed homeobox 2 135369 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11070 ENDOD1 endonuclease domain containing 1 611949 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11071 ENGASE 913614 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11072 ENHO 119145 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11073 ENKUR 403065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11074 ENO2 enolase 2 (gamma, neuronal) 683436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11075 ENOSF1 enolase superfamily member 1 663156 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11076 ENPP6 ectonucleotide pyrophosphatase/phosphodiesterase 6 685464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11077 ENTPD3 ectonucleoside triphosphate diphosphohydrolase 3 826410 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11078 ENTPD5 ectonucleoside triphosphate diphosphohydrolase 5 678873 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11079 ENY2 enhancer of yellow 2 homolog (Drosophila) 163254 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11080 EOMES eomesodermin homolog (Xenopus laevis) 668226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11081 EP400 E1A binding protein p400 4093518 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11082 EPB42 erythrocyte membrane protein band 4.2 1124526 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11083 EPC2 enhancer of polycomb homolog 2 (Drosophila) 1188408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11084 EPCAM 456807 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11085 EPDR1 ependymin related protein 1 (zebrafish) 274287 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11086 EPGN epithelial mitogen homolog (mouse) 211926 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11087 EPHA10 EPH receptor A10 939471 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11088 EPHA8 EPH receptor A8 709293 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11089 EPHX2 epoxide hydrolase 2, cytoplasmic 830973 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11090 EPHX3 438048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11091 EPHX4 447174 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11092 EPM2A epilepsy, progressive myoclonus type 2A, Lafora disease (laforin) 375687 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11093 EPN1 epsin 1 297609 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11094 EPO erythropoietin 296595 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11095 EPS15L1 epidermal growth factor receptor pathway substrate 15-like 1 1300455 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11096 EPS8L3 EPS8-like 3 914121 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11097 EPSTI1 epithelial stromal interaction 1 (breast) 629187 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11098 EPT1 572910 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11099 EPYC epiphycan 503451 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11100 ERAL1 Era G-protein-like 1 (E. coli) 686478 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11101 ERAP1 endoplasmic reticulum aminopeptidase 1 1486017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11102 ERAP2 endoplasmic reticulum aminopeptidase 2 1498185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11103 ERAS ES cell expressed Ras 308763 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11104 ERCC2 excision repair cross-complementing rodent repair deficiency, complementation group 2 (xeroderma pigmentosum D) 1060137 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11105 ERCC6L excision repair cross-complementing rodent repair deficiency, complementation group 6-like 1904799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11106 ERCC8 excision repair cross-complementing rodent repair deficiency, complementation group 8 628173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11107 EREG epiregulin 232713 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11108 ERGIC2 ERGIC and golgi 2 601302 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11109 ERGIC3 ERGIC and golgi 3 573417 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11110 ERH enhancer of rudimentary homolog (Drosophila) 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11111 ERI1 488241 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11112 ERI2 509028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11113 ERI3 461877 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11114 ERICH1 glutamate-rich 1 648453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11115 ERLIN1 ER lipid raft associated 1 535392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11116 ERLIN2 ER lipid raft associated 2 559221 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11117 ERMN ermin, ERM-like protein 461370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11118 ERMP1 endoplasmic reticulum metallopeptidase 1 1233531 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11119 ERP27 endoplasmic reticulum protein 27 kDa 430950 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11120 ERP44 604344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11121 ERRFI1 ERBB receptor feedback inhibitor 1 710307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11122 ESCO2 establishment of cohesion 1 homolog 2 (S. cerevisiae) 935922 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11123 ESM1 endothelial cell-specific molecule 1 287469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11124 ESRRA estrogen-related receptor alpha 500409 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11125 ETFA electron-transfer-flavoprotein, alpha polypeptide (glutaric aciduria II) 510549 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11126 ETFB electron-transfer-flavoprotein, beta polypeptide 540462 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11127 ETFDH electron-transferring-flavoprotein dehydrogenase 947076 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11128 ETHE1 ethylmalonic encephalopathy 1 333606 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11129 ETV2 ets variant gene 2 233220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11130 ETV3L ets variant gene 3-like 560742 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11131 ETV4 ets variant gene 4 (E1A enhancer binding protein, E1AF) 665691 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11132 ETV7 ets variant gene 7 (TEL2 oncogene) 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11133 EVC2 Ellis van Creveld syndrome 2 (limbin) 1816074 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11134 EVI2A ecotropic viral integration site 2A 399516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11135 EVI2B ecotropic viral integration site 2B 684957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11136 EVL Enah/Vasp-like 538941 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11137 EVX1 even-skipped homeobox 1 297609 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11138 EVX2 even-skipped homeobox 2 254514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11139 EXD1 803595 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11140 EXOC3L exocyst complex component 3-like 424866 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11141 EXOC3L2 exocyst complex component 3-like 2 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11142 EXOC7 exocyst complex component 7 924261 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11143 EXOC8 exocyst complex component 8 948090 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11144 EXOG 572910 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11145 EXOSC1 exosome component 1 314340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11146 EXOSC2 exosome component 2 465426 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11147 EXOSC3 exosome component 3 274794 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11148 EXOSC4 exosome component 4 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11149 EXOSC5 exosome component 5 346281 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11150 EXOSC7 exosome component 7 427401 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11151 EXOSC8 exosome component 8 432978 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11152 EXOSC9 exosome component 9 693576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11153 EXTL1 exostoses (multiple)-like 1 791427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11154 EXTL2 exostoses (multiple)-like 2 511563 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11155 EYA2 eyes absent homolog 2 (Drosophila) 807144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11156 EZH2 enhancer of zeste homolog 2 (Drosophila) 1181310 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11157 F10 coagulation factor X 692562 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11158 F11 coagulation factor XI (plasma thromboplastin antecedent) 980538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11159 F13B coagulation factor XIII, B polypeptide 1031238 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11160 F2RL1 coagulation factor II (thrombin) receptor-like 1 565812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11161 F3 coagulation factor III (thromboplastin, tissue factor) 409656 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11162 F7 coagulation factor VII (serum prothrombin conversion accelerator) 197223 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -11163 F9 coagulation factor IX (plasma thromboplastic component, Christmas disease, hemophilia B) 718926 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11164 FA2H fatty acid 2-hydroxylase 351351 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11165 FAAH2 fatty acid amide hydrolase 2 833001 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11166 FABP12 222573 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11167 FABP3 fatty acid binding protein 3, muscle and heart (mammary-derived growth inhibitor) 211926 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11168 FABP5 fatty acid binding protein 5 (psoriasis-associated) 172887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11169 FABP7 fatty acid binding protein 7, brain 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11170 FABP9 fatty acid binding protein 9, testis 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11171 FADD Fas (TNFRSF6)-associated via death domain 203307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11172 FADS1 fatty acid desaturase 1 585585 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11173 FADS3 fatty acid desaturase 3 392925 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11174 FADS6 fatty acid desaturase domain family, member 6 395967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11175 FAF1 Fas (TNFRSF6) associated factor 1 964314 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11176 FAHD1 fumarylacetoacetate hydrolase domain containing 1 133341 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11177 FAHD2B fumarylacetoacetate hydrolase domain containing 2B 476073 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11178 FAIM Fas apoptotic inhibitory molecule 359970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11179 FAIM2 Fas apoptotic inhibitory molecule 2 496353 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11180 FAIM3 Fas apoptotic inhibitory molecule 3 462891 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11181 FAM101A family with sequence similarity 101, member A 116103 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11182 FAM101B family with sequence similarity 101, member B 82134 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11183 FAM102B family with sequence similarity 102, member B 530322 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11184 FAM103A1 family with sequence similarity 103, member A1 185055 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11185 FAM104A family with sequence similarity 104, member A 126750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11186 FAM104B family with sequence similarity 104, member B 237276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11187 FAM105A family with sequence similarity 105, member A 524745 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11188 FAM105B family with sequence similarity 105, member B 472017 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11189 FAM108B1 family with sequence similarity 108, member B1 461370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11190 FAM108C1 family with sequence similarity 108, member C1 206856 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11191 FAM109A family with sequence similarity 109, member A 152607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11192 FAM109B family with sequence similarity 109, member B 262626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11193 FAM110B family with sequence similarity 110, member B 563784 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11194 FAM113A family with sequence similarity 113, member A 706251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11195 FAM117A family with sequence similarity 117, member A 605358 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11196 FAM118A family with sequence similarity 118, member A 560742 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11197 FAM119A family with sequence similarity 119, member A 339183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11198 FAM119B family with sequence similarity 119, member B 423852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11199 FAM120AOS family with sequence similarity 120A opposite strand 109512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11200 FAM122A family with sequence similarity 122A 380757 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11201 FAM123A family with sequence similarity 123A 711321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11202 FAM123C family with sequence similarity 123C 795990 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11203 FAM125A family with sequence similarity 125, member A 399516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11204 FAM125B family with sequence similarity 125, member B 419796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11205 FAM126A family with sequence similarity 126, member A 814242 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11206 FAM126B family with sequence similarity 126, member B 827931 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11207 FAM127A family with sequence similarity 127, member A 175422 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11208 FAM127B family with sequence similarity 127, member B 175422 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11209 FAM127C family with sequence similarity 127, member C 175422 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11210 FAM128A family with sequence similarity 128, member A 82134 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11211 FAM128B family with sequence similarity 128, member B 82134 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11212 FAM131A family with sequence similarity 131, member A 437541 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11213 FAM131B family with sequence similarity 131, member B 508014 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11214 FAM133B family with sequence similarity 133, member B 301665 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11215 FAM134A family with sequence similarity 134, member A 701181 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11216 FAM134B family with sequence similarity 134, member B 631215 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11217 FAM134C family with sequence similarity 134, member C 614991 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11218 FAM135A family with sequence similarity 135, member A 2138526 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11219 FAM150A family with sequence similarity 150, member A 107484 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11220 FAM150B family with sequence similarity 150, member B 112554 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11221 FAM151A family with sequence similarity 151, member A 907530 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11222 FAM151B family with sequence similarity 151, member B 418782 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11223 FAM153A family with sequence similarity 153, member A 419796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11224 FAM153B family with sequence similarity 153, member B 553137 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11225 FAM153C family with sequence similarity 153, member C 127257 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11226 FAM154B family with sequence similarity 154, member B 584064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11227 FAM158A 328029 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11228 FAM159A 241332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11229 FAM162A 226629 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11230 FAM162B 166803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11231 FAM163A 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11232 FAM164A 503958 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11233 FAM165B 93795 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11234 FAM168A 371124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11235 FAM168B 248937 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11236 FAM169B 303693 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11237 FAM170A 510042 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11238 FAM172A 629187 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11239 FAM174A 164775 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11240 FAM175A 559728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11241 FAM175B 647946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11242 FAM176A 236769 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11243 FAM177A1 284934 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11244 FAM178A 1791231 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11245 FAM181A 544011 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11246 FAM183A 213447 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11247 FAM187B 553644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11248 FAM189A2 699660 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11249 FAM189B 850239 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11250 FAM18A family with sequence similarity 18, member A 258063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11251 FAM18B family with sequence similarity 18, member B 319410 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11252 FAM192A 353886 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11253 FAM198B 839592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11254 FAM19A1 family with sequence similarity 19 (chemokine (C-C motif)-like), member A1 150072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11255 FAM19A2 family with sequence similarity 19 (chemokine (C-C motif)-like), member A2 208884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11256 FAM19A3 family with sequence similarity 19 (chemokine (C-C motif)-like), member A3 207870 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11257 FAM19A4 family with sequence similarity 19 (chemokine (C-C motif)-like), member A4 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11258 FAM19A5 family with sequence similarity 19 (chemokine (C-C motif)-like), member A5 66924 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11259 FAM20B family with sequence similarity 20, member B 637806 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11260 FAM21B family with sequence similarity 21, member B 1745094 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11261 FAM22F family with sequence similarity 22, member F 765063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11262 FAM24A family with sequence similarity 24, member A 165282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11263 FAM24B family with sequence similarity 24, member B 148551 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11264 FAM26E family with sequence similarity 26, member E 475566 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11265 FAM32A family with sequence similarity 32, member A 85683 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11266 FAM35A family with sequence similarity 35, member A 1285752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11267 FAM3A family with sequence similarity 3, member A 233220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11268 FAM3B family with sequence similarity 3, member B 363519 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11269 FAM3D family with sequence similarity 3, member D 360477 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11270 FAM40B family with sequence similarity 40, member B 1256853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11271 FAM46B family with sequence similarity 46, member B 264654 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11272 FAM46D family with sequence similarity 46, member D 595218 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11273 FAM47C family with sequence similarity 47, member C 1577784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11274 FAM48A family with sequence similarity 48, member A 1238601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11275 FAM50A family with sequence similarity 50, member A 457314 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11276 FAM50B family with sequence similarity 50, member B 272259 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11277 FAM53A family with sequence similarity 53, member A 224094 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11278 FAM54A family with sequence similarity 54, member A 601302 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11279 FAM55C family with sequence similarity 55, member C 861900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11280 FAM55D family with sequence similarity 55, member D 839085 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11281 FAM57A family with sequence similarity 57, member A 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11282 FAM58B family with sequence similarity 58, member B 386841 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11283 FAM5B family with sequence similarity 5, member B 1206660 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11284 FAM60A family with sequence similarity 60, member A 347802 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11285 FAM63B family with sequence similarity 63, member B 709293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11286 FAM64A family with sequence similarity 64, member A 318396 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11287 FAM69A family with sequence similarity 69, member A 219024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11288 FAM69B family with sequence similarity 69, member B 419289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11289 FAM69C 187083 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11290 FAM70A family with sequence similarity 70, member A 521196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11291 FAM70B family with sequence similarity 70, member B 283413 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11292 FAM71D family with sequence similarity 71, member D 632736 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11293 FAM71E1 family with sequence similarity 71, member E1 191139 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11294 FAM71F1 family with sequence similarity 71, member F1 538941 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11295 FAM71F2 family with sequence similarity 71, member F2 480129 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11296 FAM72A family with sequence similarity 72, member A 210912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11297 FAM72B family with sequence similarity 72, member B 236262 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11298 FAM76A family with sequence similarity 76, member A 443625 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11299 FAM76B family with sequence similarity 76, member B 491283 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11300 FAM78A family with sequence similarity 78, member A 312312 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11301 FAM78B family with sequence similarity 78, member B 295581 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11302 FAM82A1 895362 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11303 FAM82A2 718926 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11304 FAM84A family with sequence similarity 84, member A 174408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11305 FAM84B family with sequence similarity 84, member B 131820 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11306 FAM86C family with sequence similarity 86, member C 255021 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11307 FAM89A family with sequence similarity 89, member A 135876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11308 FAM89B family with sequence similarity 89, member B 140946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11309 FAM8A1 family with sequence similarity 8, member A1 276822 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11310 FAM92B family with sequence similarity 92, member B 426387 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11311 FAM96A family with sequence similarity 96, member A 255021 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11312 FAM98C family with sequence similarity 98, member C 365547 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11313 FAM9A family with sequence similarity 9, member A 457821 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11314 FAM9C family with sequence similarity 9, member C 266175 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11315 FANCB Fanconi anemia, complementation group B 1324284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11316 FANCC Fanconi anemia, complementation group C 877617 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11317 FANCE Fanconi anemia, complementation group E 709293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11318 FANCL Fanconi anemia, complementation group L 607893 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11319 FAR2 807144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11320 FASTK Fas-activated serine/threonine kinase 417261 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11321 FAU Finkel-Biskis-Reilly murine sarcoma virus (FBR-MuSV) ubiquitously expressed 211926 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11322 FBLIM1 filamin binding LIM protein 1 604851 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11323 FBLN5 fibulin 5 675324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11324 FBLN7 fibulin 7 598767 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11325 FBN2 fibrillin 2 (congenital contractural arachnodactyly) 4387578 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11326 FBP1 fructose-1,6-bisphosphatase 1 441597 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11327 FBP2 fructose-1,6-bisphosphatase 2 531336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11328 FBRS fibrosin 328029 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11329 FBXL12 F-box and leucine-rich repeat protein 12 353379 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11330 FBXL14 F-box and leucine-rich repeat protein 14 553137 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11331 FBXL17 F-box and leucine-rich repeat protein 17 516126 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11332 FBXL20 F-box and leucine-rich repeat protein 20 671775 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11333 FBXL21 F-box and leucine-rich repeat protein 21 667212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11334 FBXL22 F-box and leucine-rich repeat protein 22 258570 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11335 FBXL5 F-box and leucine-rich repeat protein 5 1030224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11336 FBXL7 F-box and leucine-rich repeat protein 7 729066 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11337 FBXO11 F-box protein 11 1384110 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11338 FBXO16 F-box protein 16 454779 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11339 FBXO17 F-box protein 17 262626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11340 FBXO2 F-box protein 2 188604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11341 FBXO22 F-box protein 22 574431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11342 FBXO31 F-box protein 31 234741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11343 FBXO33 F-box protein 33 560742 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11344 FBXO36 F-box protein 36 244881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11345 FBXO38 F-box protein 38 1851057 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11346 FBXO4 F-box protein 4 519675 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11347 FBXO42 F-box protein 42 1110330 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11348 FBXO45 F-box protein 45 279357 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11349 FBXO46 F-box protein 46 796497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11350 FBXO47 F-box protein 47 709293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11351 FBXO48 241332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11352 FBXO8 F-box protein 8 496860 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11353 FBXO9 F-box protein 9 597246 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11354 FBXW11 F-box and WD repeat domain containing 11 859365 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11355 FCER1G Fc fragment of IgE, high affinity I, receptor for; gamma polypeptide 142467 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11356 FCER2 Fc fragment of IgE, low affinity II, receptor for (CD23) 345774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11357 FCGR2A Fc fragment of IgG, low affinity IIa, receptor (CD32) 497874 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11358 FCGR2B Fc fragment of IgG, low affinity IIb, receptor (CD32) 357942 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11359 FCGR2C Fc fragment of IgG, low affinity IIc, receptor for (CD32) 435513 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11360 FCGR3A Fc fragment of IgG, low affinity IIIa, receptor (CD16a) 452751 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11361 FCGR3B Fc fragment of IgG, low affinity IIIb, receptor (CD16b) 366054 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11362 FCHSD2 FCH and double SH3 domains 2 1046955 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11363 FCN3 ficolin (collagen/fibrinogen domain containing) 3 (Hakata antigen) 423345 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11364 FCRL3 Fc receptor-like 3 1146327 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11365 FCRL4 Fc receptor-like 4 809172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11366 FCRL6 Fc receptor-like 6 681915 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11367 FCRLA Fc receptor-like A 583557 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11368 FDX1 ferredoxin 1 193674 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11369 FDX1L ferredoxin 1-like 184548 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11370 FDXACB1 790920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11371 FECH ferrochelatase (protoporphyria) 635778 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11372 FEM1A fem-1 homolog a (C. elegans) 551109 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11373 FEM1C fem-1 homolog c (C. elegans) 944034 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11374 FER fer (fps/fes related) tyrosine kinase 1288287 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11375 FERMT1 fermitin family homolog 1 (Drosophila) 1059630 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11376 FEZ2 fasciculation and elongation protein zeta 2 (zygin II) 420303 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11377 FEZF1 FEZ family zinc finger 1 637806 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11378 FFAR2 free fatty acid receptor 2 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11379 FGB fibrinogen beta chain 683943 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11380 FGD1 FYVE, RhoGEF and PH domain containing 1 (faciogenital dysplasia) 1221363 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11381 FGD2 FYVE, RhoGEF and PH domain containing 2 953667 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11382 FGD6 FYVE, RhoGEF and PH domain containing 6 2208999 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11383 FGF1 fibroblast growth factor 1 (acidic) 243360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11384 FGF10 fibroblast growth factor 10 323973 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11385 FGF12 fibroblast growth factor 12 389883 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11386 FGF14 fibroblast growth factor 14 467961 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11387 FGF16 fibroblast growth factor 16 182013 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11388 FGF17 fibroblast growth factor 17 200772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11389 FGF19 fibroblast growth factor 19 161733 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11390 FGF2 fibroblast growth factor 2 (basic) 151086 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11391 FGF20 fibroblast growth factor 20 181506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11392 FGF21 fibroblast growth factor 21 324480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11393 FGF4 fibroblast growth factor 4 (heparin secretory transforming protein 1, Kaposi sarcoma oncogene) 107484 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11394 FGF8 fibroblast growth factor 8 (androgen-induced) 265161 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11395 FGF9 fibroblast growth factor 9 (glia-activating factor) 323973 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11396 FGFBP3 fibroblast growth factor binding protein 3 106977 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11397 FGFR1 fibroblast growth factor receptor 1 (fms-related tyrosine kinase 2, Pfeiffer syndrome) 1207674 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11398 FGFR1OP FGFR1 oncogene partner 581022 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11399 FGFR1OP2 FGFR1 oncogene partner 2 403065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11400 FGG fibrinogen gamma chain 718419 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11401 FGGY FGGY carbohydrate kinase domain containing 908544 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11402 FGL1 fibrinogen-like 1 487227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11403 FGR Gardner-Rasheed feline sarcoma viral (v-fgr) oncogene homolog 828438 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11404 FH fumarate hydratase 728559 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11405 FHL2 four and a half LIM domains 2 436020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11406 FHL3 four and a half LIM domains 3 437541 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11407 FHOD1 formin homology 2 domain containing 1 1570179 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11408 FIBCD1 fibrinogen C domain containing 1 229671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11409 FIBIN 324480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11410 FIBP fibroblast growth factor (acidic) intracellular binding protein 465426 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11411 FICD FIC domain containing 702195 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11412 FIG4 FIG4 homolog (S. cerevisiae) 1392222 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11413 FIGLA folliculogenesis specific basic helix-loop-helix 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11414 FIS1 fission 1 (mitochondrial outer membrane) homolog (S. cerevisiae) 242346 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11415 FITM1 426894 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11416 FITM2 349830 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11417 FKBP10 FK506 binding protein 10, 65 kDa 690534 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11418 FKBP14 FK506 binding protein 14, 22 kDa 330564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11419 FKBP1A FK506 binding protein 1A, 12kDa 126750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11420 FKBP1B FK506 binding protein 1B, 12.6 kDa 175929 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11421 FKBP2 FK506 binding protein 2, 13kDa 226629 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11422 FKBP3 FK506 binding protein 3, 25kDa 355914 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11423 FKBP4 FK506 binding protein 4, 59kDa 663156 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11424 FKBP5 FK506 binding protein 5 746304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11425 FKBP6 FK506 binding protein 6, 36kDa 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11426 FKBP7 FK506 binding protein 7 347295 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11427 FKBP9 FK506 binding protein 9, 63 kDa 774696 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11428 FLAD1 FAD1 flavin adenine dinucleotide synthetase homolog (S. cerevisiae) 981552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11429 FLCN folliculin 740727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11430 FLJ10357 1960062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11431 FLJ37543 184548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11432 FLJ44635 218517 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11433 FLOT1 flotillin 1 675324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11434 FLOT2 flotillin 2 634764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11435 FLVCR2 feline leukemia virus subgroup C cellular receptor family, member 2 821847 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11436 FLYWCH2 FLYWCH family member 2 218517 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11437 FMNL1 formin-like 1 1327833 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11438 FMNL2 formin-like 2 1652820 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11439 FMOD fibromodulin 577473 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11440 FN3K fructosamine 3 kinase 410163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11441 FN3KRP 410163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11442 FNDC4 fibronectin type III domain containing 4 313833 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11443 FNDC5 fibronectin type III domain containing 5 245388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11444 FNDC8 fibronectin type III domain containing 8 502437 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11445 FNIP2 folliculin interacting protein 2 1668537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11446 FNTA farnesyltransferase, CAAX box, alpha 492804 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11447 FNTB farnesyltransferase, CAAX box, beta 690534 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11448 FOLH1B 698139 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11449 FOLR1 folate receptor 1 (adult) 400530 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11450 FOLR2 folate receptor 2 (fetal) 389883 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11451 FOLR3 folate receptor 3 (gamma) 381264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11452 FOS v-fos FBJ murine osteosarcoma viral oncogene homolog 568347 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11453 FOSB FBJ murine osteosarcoma viral oncogene homolog B 466947 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11454 FOSL1 FOS-like antigen 1 369096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11455 FOXA2 forkhead box A2 521196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11456 FOXA3 forkhead box A3 499902 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11457 FOXB1 forkhead box B1 272259 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11458 FOXC1 forkhead box C1 235248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11459 FOXD2 forkhead box D2 195702 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11460 FOXD4L3 forkhead box D4-like 3 287469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11461 FOXD4L6 forkhead box D4-like 6 166803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11462 FOXE3 forkhead box E3 165282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11463 FOXF1 forkhead box F1 249444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11464 FOXF2 forkhead box F2 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11465 FOXG1 forkhead box G1 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11466 FOXI1 forkhead box I1 580008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11467 FOXJ1 forkhead box J1 179478 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11468 FOXK2 forkhead box K2 400023 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11469 FOXL1 forkhead box L1 266682 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11470 FOXL2 forkhead box L2 161226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11471 FOXN1 forkhead box N1 863421 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11472 FOXN4 forkhead box N4 473031 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11473 FOXO1 forkhead box O1 680394 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11474 FOXO3 forkhead box O3 738699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11475 FOXR1 forkhead box R1 424866 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11476 FOXRED1 FAD-dependent oxidoreductase domain containing 1 379743 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11477 FOXRED2 FAD-dependent oxidoreductase domain containing 2 956709 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11478 FOXS1 forkhead box S1 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11479 FPGS folylpolyglutamate synthase 608400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11480 FPGT fucose-1-phosphate guanylyltransferase 869505 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11481 FRA10AC1 507000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11482 FRG2 FSHD region gene 2 329043 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11483 FRG2B FSHD region gene 2 family, member B 335127 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11484 FRG2C FSHD region gene 2 family, member C 438555 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11485 FRK fyn-related kinase 785850 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11486 FRMD1 FERM domain containing 1 598767 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11487 FRMD8 FERM domain containing 8 482664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11488 FRS2 fibroblast growth factor receptor substrate 2 784329 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11489 FRZB frizzled-related protein 435006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11490 FSCN1 fascin homolog 1, actin-bundling protein (Strongylocentrotus purpuratus) 329550 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11491 FSHB follicle stimulating hormone, beta polypeptide 201786 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11492 FSTL1 follistatin-like 1 464919 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11493 FTH1 ferritin, heavy polypeptide 1 228150 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11494 FTHL17 ferritin, heavy polypeptide-like 17 279864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11495 FTMT ferritin mitochondrial 318903 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11496 FTO fat mass and obesity associated 763035 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11497 FTSJ1 FtsJ homolog 1 (E. coli) 524238 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11498 FTSJ2 FtsJ homolog 2 (E. coli) 375687 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11499 FUBP3 far upstream element (FUSE) binding protein 3 855816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11500 FUCA1 fucosidase, alpha-L- 1, tissue 527280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11501 FUCA2 fucosidase, alpha-L- 2, plasma 610428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11502 FUNDC2 FUN14 domain containing 2 229671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11503 FUT1 fucosyltransferase 1 (galactoside 2-alpha-L-fucosyltransferase, H blood group) 557193 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11504 FUT10 fucosyltransferase 10 (alpha (1,3) fucosyltransferase) 738192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11505 FUT6 fucosyltransferase 6 (alpha (1,3) fucosyltransferase) 502437 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11506 FUT8 fucosyltransferase 8 (alpha (1,6) fucosyltransferase) 944541 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11507 FUT9 fucosyltransferase 9 (alpha (1,3) fucosyltransferase) 549588 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11508 FXC1 fracture callus 1 homolog (rat) 163761 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11509 FXN frataxin 249444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11510 FXYD1 FXYD domain containing ion transport regulator 1 (phospholemman) 132327 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11511 FXYD3 FXYD domain containing ion transport regulator 3 239811 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11512 FXYD5 FXYD domain containing ion transport regulator 5 288483 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11513 FXYD6 FXYD domain containing ion transport regulator 6 126750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11514 FXYD7 FXYD domain containing ion transport regulator 7 117624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11515 FYN FYN oncogene related to SRC, FGR, YES 921726 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11516 FYTTD1 forty-two-three domain containing 1 449202 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11517 FZD10 frizzled homolog 10 (Drosophila) 600795 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11518 FZD2 frizzled homolog 2 (Drosophila) 700674 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11519 FZD4 frizzled homolog 4 (Drosophila) 675831 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11520 FZD7 frizzled homolog 7 (Drosophila) 813735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11521 G2E3 1103739 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11522 G6PC glucose-6-phosphatase, catalytic subunit 554658 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11523 G6PC3 glucose 6 phosphatase, catalytic, 3 484692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11524 GAB4 GRB2-associated binding protein family, member 4 640848 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11525 GABARAP GABA(A) receptor-associated protein 139932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11526 GABARAPL1 GABA(A) receptor-associated protein like 1 139932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11527 GABARAPL2 GABA(A) receptor-associated protein-like 2 166803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11528 GABBR1 gamma-aminobutyric acid (GABA) B receptor, 1 1379040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11529 GABPB1 GA binding protein transcription factor, beta subunit 1 642876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11530 GABPB2 GA binding protein transcription factor, beta subunit 2 699153 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11531 GABRA2 gamma-aminobutyric acid (GABA) A receptor, alpha 2 705744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11532 GABRA4 gamma-aminobutyric acid (GABA) A receptor, alpha 4 862407 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11533 GABRA5 gamma-aminobutyric acid (GABA) A receptor, alpha 5 666705 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11534 GABRB1 gamma-aminobutyric acid (GABA) A receptor, beta 1 740727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11535 GABRE gamma-aminobutyric acid (GABA) A receptor, epsilon 758979 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11536 GABRP gamma-aminobutyric acid (GABA) A receptor, pi 689013 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11537 GABRR2 gamma-aminobutyric acid (GABA) receptor, rho 2 728559 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11538 GADD45A growth arrest and DNA-damage-inducible, alpha 150579 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11539 GADD45GIP1 growth arrest and DNA-damage-inducible, gamma interacting protein 1 206349 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11540 GAGE1 G antigen 1 126750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11541 GAGE10 G antigen 10 186069 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11542 GAGE2A G antigen 2A 235755 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11543 GAGE2C G antigen 2C 460356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11544 GAGE2D G antigen 2D 353886 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11545 GAGE2E G antigen 2E 289497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11546 GAGE4 G antigen 4 63375 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11547 GAGE5 G antigen 5 63375 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11548 GAGE7 G antigen 7 63375 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11549 GAGE8 G antigen 8 301665 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11550 GAK cyclin G associated kinase 952146 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11551 GAL3ST1 galactose-3-O-sulfotransferase 1 514605 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11552 GAL3ST4 galactose-3-O-sulfotransferase 4 744276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11553 GALC galactosylceramidase 1008930 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11554 GALE UDP-galactose-4-epimerase 496860 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11555 GALK1 galactokinase 1 218010 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11556 GALK2 galactokinase 2 701688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11557 GALM galactose mutarotase (aldose 1-epimerase) 521703 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11558 GALNS galactosamine (N-acetyl)-6-sulfate sulfatase (Morquio syndrome, mucopolysaccharidosis type IVA) 336141 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11559 GALNT1 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 1 (GalNAc-T1) 874068 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11560 GALNT12 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 12 (GalNAc-T12) 677352 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11561 GALNT14 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 14 (GalNAc-T14) 860886 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11562 GALNT2 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 2 (GalNAc-T2) 835029 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11563 GALNT6 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 6 (GalNAc-T6) 967863 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11564 GALNT8 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 8 (GalNAc-T8) 992199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11565 GALNT9 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase 9 (GalNAc-T9) 295074 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11566 GALNTL2 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 2 993720 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11567 GALNTL4 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 4 825396 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11568 GALP galanin-like peptide 188097 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11569 GALR3 galanin receptor 3 143481 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11570 GAN giant axonal neuropathy (gigaxonin) 845169 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11571 GANAB glucosidase, alpha; neutral AB 1504776 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11572 GAPDH glyceraldehyde-3-phosphate dehydrogenase 493818 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11573 GAPDHS glyceraldehyde-3-phosphate dehydrogenase, spermatogenic 644397 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11574 GAPT 242346 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11575 GART phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase 1582347 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11576 GAS2 growth arrest-specific 2 491790 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11577 GAS2L1 growth arrest-specific 2 like 1 442104 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11578 GAS2L2 growth arrest-specific 2 like 2 1309074 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11579 GAS7 growth arrest-specific 7 687999 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11580 GAS8 growth arrest-specific 8 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11581 GAST gastrin 159198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11582 GATA1 GATA binding protein 1 (globin transcription factor 1) 639834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11583 GATA4 GATA binding protein 4 367068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11584 GATA6 GATA binding protein 6 254514 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11585 GATAD1 GATA zinc finger domain containing 1 292539 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11586 GATAD2A GATA zinc finger domain containing 2A 813735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11587 GATC glutamyl-tRNA(Gln) amidotransferase, subunit C homolog (bacterial) 216489 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11588 GATS 223587 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11589 GBA glucosidase, beta; acid (includes glucosylceramidase) 838578 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11590 GBA2 glucosidase, beta (bile acid) 2 1445964 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11591 GBA3 glucosidase, beta, acid 3 (cytosolic) 725010 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11592 GBAS glioblastoma amplified sequence 408135 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11593 GBGT1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 446667 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11594 GBP3 guanylate binding protein 3 926796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11595 GBP4 guanylate binding protein 4 997269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11596 GBX1 gastrulation brain homeobox 1 328029 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11597 GBX2 gastrulation brain homeobox 2 267696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11598 GC group-specific component (vitamin D binding protein) 746811 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11599 GCA grancalcin, EF-hand calcium binding protein 332085 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11600 GCET2 germinal center expressed transcript 2 287469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11601 GCFC1 1316679 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11602 GCG glucagon 279864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11603 GCHFR GTP cyclohydrolase I feedback regulator 108498 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11604 GCM1 glial cells missing homolog 1 (Drosophila) 674817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11605 GCNT1 glucosaminyl (N-acetyl) transferase 1, core 2 (beta-1,6-N-acetylglucosaminyltransferase) 654537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11606 GCNT2 glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group) 1558011 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11607 GCNT3 glucosaminyl (N-acetyl) transferase 3, mucin type 669747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11608 GCOM1 877617 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11609 GCSH glycine cleavage system protein H (aminomethyl carrier) 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11610 GDA guanine deaminase 656058 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11611 GDAP1L1 ganglioside-induced differentiation-associated protein 1-like 1 355407 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11612 GDAP2 ganglioside induced differentiation associated protein 2 806637 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11613 GDE1 glycerophosphodiester phosphodiesterase 1 382785 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11614 GDF10 growth differentiation factor 10 375687 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11615 GDF11 growth differentiation factor 11 386841 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11616 GDF15 growth differentiation factor 15 237783 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11617 GDF2 growth differentiation factor 2 605865 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11618 GDF5 growth differentiation factor 5 764556 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11619 GDI2 GDP dissociation inhibitor 2 675831 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11620 GDNF glial cell derived neurotrophic factor 256542 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11621 GDPD3 glycerophosphodiester phosphodiesterase domain containing 3 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11622 GDPD4 glycerophosphodiester phosphodiesterase domain containing 4 822861 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11623 GEM GTP binding protein overexpressed in skeletal muscle 459342 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11624 GEMIN6 gem (nuclear organelle) associated protein 6 259584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11625 GEMIN7 gem (nuclear organelle) associated protein 7 202800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11626 GEMIN8 gem (nuclear organelle) associated protein 8 375687 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11627 GEN1 Gen homolog 1, endonuclease (Drosophila) 1408953 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11628 GFI1 growth factor independent 1 transcription repressor 272766 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11629 GFI1B growth factor independent 1B transcription repressor 515619 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11630 GFOD1 glucose-fructose oxidoreductase domain containing 1 566319 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11631 GFOD2 glucose-fructose oxidoreductase domain containing 2 591162 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11632 GFPT1 glutamine-fructose-6-phosphate transaminase 1 1070277 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11633 GFRA1 GDNF family receptor alpha 1 695604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11634 GFRAL GDNF family receptor alpha like 619047 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11635 GGCX gamma-glutamyl carboxylase 1161030 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11636 GGH gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase) 446160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11637 GGN gametogenetin 577980 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11638 GGNBP2 gametogenetin binding protein 2 1038843 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11639 GGPS1 geranylgeranyl diphosphate synthase 1 463905 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11640 GGT5 gamma-glutamyltransferase 5 464919 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11641 GGT7 gamma-glutamyltransferase 7 806637 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11642 GGTLC1 gamma-glutamyltransferase light chain 1 353886 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11643 GGTLC2 gamma-glutamyltransferase light chain 2 208884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11644 GH1 growth hormone 1 341718 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11645 GHDC GH3 domain containing 652509 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11646 GHITM growth hormone inducible transmembrane protein 542490 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11647 GHRH growth hormone releasing hormone 173901 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11648 GIF gastric intrinsic factor (vitamin B synthesis) 654030 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11649 GIGYF1 GRB10 interacting GYF protein 1 1390701 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11650 GIMAP1 GTPase, IMAP family member 1 347295 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11651 GIMAP5 GTPase, IMAP family member 5 472524 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11652 GINS1 GINS complex subunit 1 (Psf1 homolog) 273780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11653 GINS3 GINS complex subunit 3 (Psf3 homolog) 307749 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11654 GINS4 GINS complex subunit 4 (Sld5 homolog) 354900 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11655 GIP gastric inhibitory polypeptide 237276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11656 GIT2 G protein-coupled receptor kinase interactor 2 1187394 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11657 GIYD1 GIY-YIG domain containing 1 223080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11658 GIYD2 GIY-YIG domain containing 2 223080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11659 GJA5 gap junction protein, alpha 5, 40kDa 548067 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11660 GJA8 gap junction protein, alpha 8, 50kDa 662142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11661 GJB1 gap junction protein, beta 1, 32kDa 433992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11662 GJB6 gap junction protein, beta 6, 30kDa 400530 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11663 GJB7 gap junction protein, beta 7, 25kDa 342732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11664 GJC3 gap junction protein, gamma 3, 30.2kDa 429936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11665 GJD2 gap junction protein, delta 2, 36kDa 493818 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11666 GJD4 gap junction protein, delta 4, 40.1kDa 244374 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11667 GK glycerol kinase 894348 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11668 GK5 glycerol kinase 5 (putative) 729573 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11669 GKAP1 G kinase anchoring protein 1 567840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11670 GKN1 gastrokine 1 316368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11671 GKN2 gastrokine 2 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11672 GLB1L2 galactosidase, beta 1-like 2 906516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11673 GLDC glycine dehydrogenase (decarboxylating) 1472328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11674 GLDN gliomedin 712842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11675 GLIPR1L1 GLI pathogenesis-related 1 like 1 366054 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11676 GLIPR2 229671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11677 GLIS3 GLIS family zinc finger 3 1285245 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11678 GLMN glomulin, FKBP associated protein 941499 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11679 GLO1 glyoxalase I 248937 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11680 GLOD5 glyoxalase domain containing 5 219024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11681 GLP1R glucagon-like peptide 1 receptor 630708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11682 GLP2R glucagon-like peptide 2 receptor 867477 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11683 GLRA1 glycine receptor, alpha 1 714870 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11684 GLRA4 glycine receptor, alpha 4 664170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11685 GLRB glycine receptor, beta 775710 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11686 GLRX3 glutaredoxin 3 484692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11687 GLRX5 glutaredoxin 5 92781 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11688 GLS2 glutaminase 2 (liver, mitochondrial) 859365 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11689 GLT6D1 glycosyltransferase 6 domain containing 1 429429 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11690 GLTP glycolipid transfer protein 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11691 GLUD1 glutamate dehydrogenase 1 590148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11692 GLUL glutamate-ammonia ligase (glutamine synthetase) 581022 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11693 GM2A GM2 ganglioside activator 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11694 GMCL1 germ cell-less homolog 1 (Drosophila) 679380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11695 GMEB2 glucocorticoid modulatory element binding protein 2 499902 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11696 GML glycosylphosphatidylinositol anchored molecule like protein 247923 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11697 GMNN geminin, DNA replication inhibitor 331578 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11698 GMPPA GDP-mannose pyrophosphorylase A 664170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11699 GMPPB GDP-mannose pyrophosphorylase B 535899 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11700 GMPR guanosine monophosphate reductase 498381 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11701 GNA11 guanine nucleotide binding protein (G protein), alpha 11 (Gq class) 309777 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11702 GNA12 guanine nucleotide binding protein (G protein) alpha 12 430443 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11703 GNA13 guanine nucleotide binding protein (G protein), alpha 13 583050 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11704 GNA14 guanine nucleotide binding protein (G protein), alpha 14 497367 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11705 GNA15 guanine nucleotide binding protein (G protein), alpha 15 (Gq class) 185562 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11706 GNAI3 guanine nucleotide binding protein (G protein), alpha inhibiting activity polypeptide 3 494325 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11707 GNAL guanine nucleotide binding protein (G protein), alpha activating activity polypeptide, olfactory type 533364 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11708 GNAT1 guanine nucleotide binding protein (G protein), alpha transducing activity polypeptide 1 518154 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11709 GNAT3 guanine nucleotide binding protein, alpha transducing 3 556179 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11710 GNAZ guanine nucleotide binding protein (G protein), alpha z polypeptide 532350 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11711 GNB2 guanine nucleotide binding protein (G protein), beta polypeptide 2 458835 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11712 GNB2L1 guanine nucleotide binding protein (G protein), beta polypeptide 2-like 1 442611 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11713 GNB4 guanine nucleotide binding protein (G protein), beta polypeptide 4 536913 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11714 GNB5 guanine nucleotide binding protein (G protein), beta 5 567840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11715 GNG10 guanine nucleotide binding protein (G protein), gamma 10 65910 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11716 GNG11 guanine nucleotide binding protein (G protein), gamma 11 116610 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11717 GNG12 guanine nucleotide binding protein (G protein), gamma 12 115089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11718 GNG13 guanine nucleotide binding protein (G protein), gamma 13 27885 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11719 GNG2 guanine nucleotide binding protein (G protein), gamma 2 113568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11720 GNG3 guanine nucleotide binding protein (G protein), gamma 3 119652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11721 GNG4 guanine nucleotide binding protein (G protein), gamma 4 119652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11722 GNG5 guanine nucleotide binding protein (G protein), gamma 5 65910 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11723 GNG7 guanine nucleotide binding protein (G protein), gamma 7 65910 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11724 GNGT1 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 1 118131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11725 GNGT2 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 2 110526 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11726 GNL1 guanine nucleotide binding protein-like 1 871533 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11727 GNL3 guanine nucleotide binding protein-like 3 (nucleolar) 858351 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11728 GNL3L guanine nucleotide binding protein-like 3 (nucleolar)-like 917163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11729 GNLY granulysin 237783 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11730 GNMT glycine N-methyltransferase 355914 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11731 GNPDA1 glucosamine-6-phosphate deaminase 1 453258 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11732 GNPDA2 glucosamine-6-phosphate deaminase 2 433485 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11733 GNPTG N-acetylglucosamine-1-phosphate transferase, gamma subunit 320931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11734 GNRH1 gonadotropin-releasing hormone 1 (luteinizing-releasing hormone) 147537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11735 GNRHR gonadotropin-releasing hormone receptor 506493 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11736 GNS glucosamine (N-acetyl)-6-sulfatase (Sanfilippo disease IIID) 770133 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11737 GOLGA2B 228657 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11738 GOLGA6A 614484 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11739 GOLGA6B golgi autoantigen, golgin subfamily a, 6B 441597 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11740 GOLGA7 golgi autoantigen, golgin subfamily a, 7 162240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11741 GOLGA7B 219024 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11742 GOLIM4 golgi integral membrane protein 4 995748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11743 GOLM1 golgi membrane protein 1 629694 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11744 GOLPH3L golgi phosphoprotein 3-like 443118 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11745 GOLT1A golgi transport 1 homolog A (S. cerevisiae) 197223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11746 GOLT1B golgi transport 1 homolog B (S. cerevisiae) 213447 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11747 GOPC golgi associated PDZ and coiled-coil motif containing 710307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11748 GORASP1 golgi reassembly stacking protein 1, 65kDa 655044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11749 GORASP2 golgi reassembly stacking protein 2, 55kDa 675324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11750 GOSR1 golgi SNAP receptor complex member 1 385320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11751 GOSR2 golgi SNAP receptor complex member 2 402051 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11752 GOT1 glutamic-oxaloacetic transaminase 1, soluble (aspartate aminotransferase 1) 647946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11753 GOT1L1 glutamic-oxaloacetic transaminase 1-like 1 388362 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11754 GP5 glycoprotein V (platelet) 629187 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11755 GP9 glycoprotein IX (platelet) 214461 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11756 GPA33 glycoprotein A33 (transmembrane) 500916 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11757 GPAA1 glycosylphosphatidylinositol anchor attachment protein 1 homolog (yeast) 824382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11758 GPAM glycerol-3-phosphate acyltransferase, mitochondrial 1301469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11759 GPATCH3 G patch domain containing 3 809172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11760 GPBAR1 G protein-coupled bile acid receptor 1 504972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11761 GPBP1 GC-rich promoter binding protein 1 652509 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11762 GPC4 glypican 4 865449 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11763 GPCPD1 1062165 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11764 GPER G protein-coupled estrogen receptor 1 403572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11765 GPHA2 glycoprotein hormone alpha 2 203814 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11766 GPN1 620061 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11767 GPN2 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11768 GPN3 464919 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11769 GPR108 G protein-coupled receptor 108 561756 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11770 GPR111 G protein-coupled receptor 111 992199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11771 GPR114 G protein-coupled receptor 114 638313 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11772 GPR115 G protein-coupled receptor 115 1074840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11773 GPR116 G protein-coupled receptor 116 2089347 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11774 GPR119 G protein-coupled receptor 119 513084 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11775 GPR120 G protein-coupled receptor 120 330564 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11776 GPR124 G protein-coupled receptor 124 1066221 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11777 GPR137 G protein-coupled receptor 137 700167 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11778 GPR137C G protein-coupled receptor 137C 486720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11779 GPR141 G protein-coupled receptor 141 467454 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11780 GPR146 G protein-coupled receptor 146 249444 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11781 GPR148 G protein-coupled receptor 148 531336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11782 GPR149 G protein-coupled receptor 149 1121484 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11783 GPR15 G protein-coupled receptor 15 551109 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11784 GPR152 G protein-coupled receptor 152 399009 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11785 GPR157 G protein-coupled receptor 157 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11786 GPR17 G protein-coupled receptor 17 468468 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11787 GPR171 G protein-coupled receptor 171 488748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11788 GPR172B G protein-coupled receptor 172B 691041 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11789 GPR174 G protein-coupled receptor 174 510042 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11790 GPR176 G protein-coupled receptor 176 701688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11791 GPR18 G protein-coupled receptor 18 507000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11792 GPR180 G protein-coupled receptor 180 613470 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11793 GPR182 G protein-coupled receptor 182 618033 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11794 GPR183 552630 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11795 GPR19 G protein-coupled receptor 19 634764 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11796 GPR21 G protein-coupled receptor 21 534378 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11797 GPR22 G protein-coupled receptor 22 662142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11798 GPR3 G protein-coupled receptor 3 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11799 GPR37L1 G protein-coupled receptor 37 like 1 728559 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11800 GPR39 G protein-coupled receptor 39 694590 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -11801 GPR4 G protein-coupled receptor 4 547053 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11802 GPR45 G protein-coupled receptor 45 568854 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11803 GPR52 G protein-coupled receptor 52 552630 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11804 GPR55 G protein-coupled receptor 55 488748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11805 GPR61 G protein-coupled receptor 61 689520 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11806 GPR65 G protein-coupled receptor 65 516126 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11807 GPR68 G protein-coupled receptor 68 286455 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11808 GPR81 G protein-coupled receptor 81 529815 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11809 GPR82 G protein-coupled receptor 82 514605 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11810 GPR85 G protein-coupled receptor 85 566319 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11811 GPR87 G protein-coupled receptor 87 550095 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11812 GPR89A G protein-coupled receptor 89A 621075 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11813 GPR89B G protein-coupled receptor 89B 220545 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11814 GPRC5A G protein-coupled receptor, family C, group 5, member A 550602 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11815 GPRC5B G protein-coupled receptor, family C, group 5, member B 620568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11816 GPRC5C G protein-coupled receptor, family C, group 5, member C 698646 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11817 GPRC5D G protein-coupled receptor, family C, group 5, member D 532350 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11818 GPRIN1 G protein regulated inducer of neurite outgrowth 1 1122498 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11819 GPX1 glutathione peroxidase 1 184548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11820 GPX2 glutathione peroxidase 2 (gastrointestinal) 294567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11821 GPX3 glutathione peroxidase 3 (plasma) 309270 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11822 GPX6 glutathione peroxidase 6 (olfactory) 347802 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11823 GPX7 glutathione peroxidase 7 220038 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11824 GPX8 325494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11825 GRAMD3 GRAM domain containing 3 704730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11826 GRAMD4 GRAM domain containing 4 249951 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11827 GRAP2 GRB2-related adaptor protein 2 477087 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11828 GRASP GRP1 (general receptor for phosphoinositides 1)-associated scaffold protein 208884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11829 GRB14 growth factor receptor-bound protein 14 752388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11830 GRHL1 grainyhead-like 1 (Drosophila) 904995 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11831 GRHPR glyoxylate reductase/hydroxypyruvate reductase 427401 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11832 GRINA glutamate receptor, ionotropic, N-methyl D-aspartate-associated protein 1 (glutamate binding) 395967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11833 GRINL1A glutamate receptor, ionotropic, N-methyl D-aspartate-like 1A 510042 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11834 GRIP1 glutamate receptor interacting protein 1 1686789 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11835 GRK5 G protein-coupled receptor kinase 5 899925 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11836 GRK7 G protein-coupled receptor kinase 7 825903 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11837 GRM7 glutamate receptor, metabotropic 7 1349127 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11838 GRPEL1 GrpE-like 1, mitochondrial (E. coli) 306228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11839 GRSF1 G-rich RNA sequence binding factor 1 553644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11840 GRWD1 glutamate-rich WD repeat containing 1 597246 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11841 GSDMA 647439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11842 GSDMB 632736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11843 GSDMC 800553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11844 GSG1 germ cell associated 1 561249 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11845 GSG1L GSG1-like 326508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11846 GSG2 germ cell associated 2 (haspin) 954681 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11847 GSK3B glycogen synthase kinase 3 beta 684450 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11848 GSR glutathione reductase 664677 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11849 GSTA2 glutathione S-transferase A2 351351 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11850 GSTA3 glutathione S-transferase A3 351351 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11851 GSTA5 glutathione S-transferase A5 351351 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11852 GSTM1 glutathione S-transferase M1 349323 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11853 GSTM2 glutathione S-transferase M2 (muscle) 355914 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11854 GSTM3 glutathione S-transferase M3 (brain) 318903 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11855 GSTM4 glutathione S-transferase M4 361998 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11856 GSTM5 glutathione S-transferase M5 349323 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11857 GSTO1 glutathione S-transferase omega 1 358956 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11858 GSTP1 glutathione S-transferase pi 269217 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11859 GSTT2 glutathione S-transferase theta 2 260091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11860 GSTT2B glutathione S-transferase theta 2B (gene/pseudogene) 107991 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11861 GSX1 GS homeobox 1 196209 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11862 GSX2 GS homeobox 2 202293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11863 GTDC1 glycosyltransferase-like domain containing 1 716391 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11864 GTF2A1 general transcription factor IIA, 1, 19/37kDa 574431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11865 GTF2A1L general transcription factor IIA, 1-like 752895 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11866 GTF2A2 general transcription factor IIA, 2, 12kDa 175422 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11867 GTF2B general transcription factor IIB 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11868 GTF2E1 general transcription factor IIE, polypeptide 1, alpha 56kDa 677352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11869 GTF2F1 general transcription factor IIF, polypeptide 1, 74kDa 702702 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11870 GTF2H1 general transcription factor IIH, polypeptide 1, 62kDa 863421 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11871 GTF2H2 general transcription factor IIH, polypeptide 2, 44kDa 684450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11872 GTF2H2C 967863 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11873 GTF2H2D 967863 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11874 GTF2H3 general transcription factor IIH, polypeptide 3, 34kDa 496353 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11875 GTF2H4 general transcription factor IIH, polypeptide 4, 52kDa 651495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11876 GTF2H5 general transcription factor IIH, polypeptide 5 113568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11877 GTF2I general transcription factor II, i 1175733 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11878 GTF2IRD1 GTF2I repeat domain containing 1 1284738 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11879 GTF3A general transcription factor IIIA 451737 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11880 GTF3C2 general transcription factor IIIC, polypeptide 2, beta 110kDa 1398813 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11881 GTF3C6 general transcription factor IIIC, polypeptide 6, alpha 35kDa 306735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11882 GTPBP10 GTP-binding protein 10 (putative) 610428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11883 GTPBP3 GTP binding protein 3 (mitochondrial) 679380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11884 GTPBP5 GTP binding protein 5 (putative) 589134 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11885 GTSF1 gametocyte specific factor 1 269724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11886 GTSF1L gametocyte specific factor 1-like 228657 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11887 GUCA1B guanylate cyclase activator 1B (retina) 313833 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11888 GUCA2A guanylate cyclase activator 2A (guanylin) 142467 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11889 GUCA2B guanylate cyclase activator 2B (uroguanylin) 177957 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11890 GUCY1A3 guanylate cyclase 1, soluble, alpha 3 1076868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11891 GUCY1B3 guanylate cyclase 1, soluble, beta 3 928317 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11892 GUK1 guanylate kinase 1 258063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11893 GXYLT1 572910 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11894 GXYLT2 548067 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11895 GYPA glycophorin A (MNS blood group) 232206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11896 GYPC glycophorin C (Gerbich blood group) 177450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11897 GYPE glycophorin E 126243 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11898 GZF1 GDNF-inducible zinc finger protein 1 1072812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11899 GZMA granzyme A (granzyme 1, cytotoxic T-lymphocyte-associated serine esterase 3) 410163 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11900 GZMB granzyme B (granzyme 2, cytotoxic T-lymphocyte-associated serine esterase 1) 367068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11901 H1F0 H1 histone family, member 0 298623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11902 H1FOO H1 histone family, member O, oocyte-specific 247416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11903 H2AFB1 H2A histone family, member B1 177450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11904 H2AFB3 H2A histone family, member B3 177450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11905 H2AFJ H2A histone family, member J 199758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11906 H2AFV H2A histone family, member V 214968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11907 H2AFX H2A histone family, member X 180999 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11908 H2AFY H2A histone family, member Y 631722 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11909 H2AFY2 H2A histone family, member Y2 583557 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11910 H3F3A H3 histone, family 3A 205335 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11911 H3F3B H3 histone, family 3B (H3.3B) 154128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11912 H3F3C 208884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11913 HAAO 3-hydroxyanthranilate 3,4-dioxygenase 354900 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11914 HABP2 hyaluronan binding protein 2 879645 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11915 HABP4 hyaluronan binding protein 4 466947 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11916 HACE1 HECT domain and ankyrin repeat containing, E3 ubiquitin protein ligase 1 1392222 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11917 HACL1 2-hydroxyacyl-CoA lyase 1 915135 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11918 HADHA hydroxyacyl-Coenzyme A dehydrogenase/3-ketoacyl-Coenzyme A thiolase/enoyl-Coenzyme A hydratase (trifunctional protein), alpha subunit 1166607 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11919 HAGH hydroxyacylglutathione hydrolase 170859 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11920 HAND1 heart and neural crest derivatives expressed 1 299637 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11921 HAND2 heart and neural crest derivatives expressed 2 165282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11922 HAPLN1 hyaluronan and proteoglycan link protein 1 548067 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11923 HAPLN4 hyaluronan and proteoglycan link protein 4 189618 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11924 HARBI1 harbinger transposase derived 1 536406 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11925 HARS histidyl-tRNA synthetase 802074 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11926 HARS2 histidyl-tRNA synthetase 2, mitochondrial (putative) 740727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11927 HAS2 hyaluronan synthase 2 847197 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11928 HAUS1 425373 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11929 HAUS2 321945 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11930 HAUS3 926796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11931 HAUS7 432471 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11932 HAVCR2 hepatitis A virus cellular receptor 2 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11933 HAX1 HCLS1 associated protein X-1 440076 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11934 HBB hemoglobin, beta 231192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11935 HBD hemoglobin, delta 231192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11936 HBE1 hemoglobin, epsilon 1 231192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11937 HBEGF heparin-binding EGF-like growth factor 302679 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11938 HBG1 hemoglobin, gamma A 182520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11939 HBG2 hemoglobin, gamma G 231192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11940 HBP1 HMG-box transcription factor 1 803595 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11941 HBS1L HBS1-like (S. cerevisiae) 1078389 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11942 HBXIP hepatitis B virus x interacting protein 271752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11943 HCCS holocytochrome c synthase (cytochrome c heme-lyase) 421317 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11944 HCK hemopoietic cell kinase 741234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11945 HCST hematopoietic cell signal transducer 113061 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11946 HDAC4 histone deacetylase 4 1051518 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11947 HDAC5 histone deacetylase 5 1098162 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11948 HDAC7 histone deacetylase 7 1091064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11949 HDC histidine decarboxylase 1032759 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11950 HDDC3 HD domain containing 3 163761 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11951 HDGF hepatoma-derived growth factor (high-mobility group protein 1-like) 332592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11952 HDGFL1 hepatoma derived growth factor-like 1 121680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11953 HDGFRP3 277836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11954 HDHD1A haloacid dehalogenase-like hydrolase domain containing 1A 323466 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11955 HDHD2 haloacid dehalogenase-like hydrolase domain containing 2 407628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11956 HDHD3 haloacid dehalogenase-like hydrolase domain containing 3 385320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11957 HEATR2 HEAT repeat containing 2 810693 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11958 HEATR5B HEAT repeat containing 5B 3222492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11959 HEBP1 heme binding protein 1 260598 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11960 HEBP2 heme binding protein 2 267696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11961 HECA headcase homolog (Drosophila) 696111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11962 HELLS helicase, lymphoid-specific 1302990 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11963 HEMK1 HemK methyltransferase family member 1 535392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11964 HEPACAM hepatocyte cell adhesion molecule 492804 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11965 HEPN1 137397 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11966 HERC3 hect domain and RLD 3 1647243 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11967 HERPUD1 homocysteine-inducible, endoplasmic reticulum stress-inducible, ubiquitin-like domain member 1 535899 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11968 HERPUD2 HERPUD family member 2 635271 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11969 HES1 hairy and enhancer of split 1, (Drosophila) 347802 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11970 HES3 hairy and enhancer of split 3 (Drosophila) 86697 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11971 HESX1 HESX homeobox 1 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11972 HEXA hexosaminidase A (alpha polypeptide) 834522 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11973 HEXDC hexosaminidase (glycosyl hydrolase family 20, catalytic domain) containing 671268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11974 HEXIM1 hexamethylene bis-acetamide inducible 1 389883 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11975 HEXIM2 hexamthylene bis-acetamide inducible 2 268203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11976 HEY1 hairy/enhancer-of-split related with YRPW motif 1 284934 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11977 HGS hepatocyte growth factor-regulated tyrosine kinase substrate 851760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11978 HHATL hedgehog acyltransferase-like 777231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11979 HHEX hematopoietically expressed homeobox 229164 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -11980 HHIP hedgehog interacting protein 1056588 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11981 HHIPL1 HHIP-like 1 642369 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11982 HHLA2 HERV-H LTR-associating 2 647439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11983 HHLA3 HERV-H LTR-associating 3 182013 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11984 HIAT1 hippocampus abundant transcript 1 726531 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11985 HIBADH 3-hydroxyisobutyrate dehydrogenase 480636 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11986 HIC2 hypermethylated in cancer 2 634764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11987 HIF1A hypoxia-inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor) 1268514 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -11988 HIGD1A HIG1 domain family, member 1A 172380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11989 HIGD1B HIG1 domain family, member 1B 158184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11990 HIGD1C HIG1 domain family, member 1C 120159 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11991 HIGD2A HIG1 domain family, member 2A 166803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11992 HINFP 806130 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11993 HINT1 histidine triad nucleotide binding protein 1 199251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11994 HINT2 histidine triad nucleotide binding protein 2 216489 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11995 HIPK3 homeodomain interacting protein kinase 3 1881984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11996 HIRIP3 HIRA interacting protein 3 860886 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11997 HIST1H1A histone cluster 1, H1a 330564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11998 HIST1H2AC histone cluster 1, H2ac 201279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -11999 HIST1H2AH histone cluster 1, H2ah 198237 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12000 HIST1H2AJ histone cluster 1, H2aj 171366 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12001 HIST1H2AM histone cluster 1, H2am 201279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12002 HIST1H2BD histone cluster 1, H2bd 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12003 HIST1H2BE histone cluster 1, H2be 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12004 HIST1H2BG histone cluster 1, H2bg 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12005 HIST1H2BH histone cluster 1, H2bh 195195 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12006 HIST1H2BI histone cluster 1, H2bi 195195 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12007 HIST1H2BJ histone cluster 1, H2bj 195195 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12008 HIST1H2BL histone cluster 1, H2bl 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12009 HIST1H2BM histone cluster 1, H2bm 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12010 HIST1H2BN histone cluster 1, H2bn 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12011 HIST1H2BO histone cluster 1, H2bo 195195 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12012 HIST1H3A histone cluster 1, H3a 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12013 HIST1H3E histone cluster 1, H3e 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12014 HIST1H3H histone cluster 1, H3h 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12015 HIST1H4A histone cluster 1, H4a 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12016 HIST1H4B histone cluster 1, H4b 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12017 HIST1H4C histone cluster 1, H4c 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12018 HIST1H4D histone cluster 1, H4d 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12019 HIST1H4E histone cluster 1, H4e 160212 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12020 HIST1H4F histone cluster 1, H4f 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12021 HIST1H4G histone cluster 1, H4g 152607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12022 HIST1H4H histone cluster 1, H4h 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12023 HIST1H4I histone cluster 1, H4i 160212 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12024 HIST1H4K histone cluster 1, H4k 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12025 HIST2H2AB histone cluster 2, H2ab 201279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12026 HIST2H3D histone cluster 2, H3d 210405 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12027 HIST3H2A histone cluster 3, H2a 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12028 HIST3H2BB histone cluster 3, H2bb 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12029 HIST4H4 histone cluster 4, H4 160212 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12030 HJURP Holliday junction recognition protein 1083459 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12031 HK2 hexokinase 2 1311609 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12032 HLA-B major histocompatibility complex, class I, B 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12033 HLA-DOA major histocompatibility complex, class II, DO alpha 391404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12034 HLA-DOB major histocompatibility complex, class II, DO beta 428922 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12035 HLA-DPA1 major histocompatibility complex, class II, DP alpha 1 405093 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12036 HLA-DPB1 major histocompatibility complex, class II, DP beta 1 389883 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12037 HLA-DQA1 major histocompatibility complex, class II, DQ alpha 1 397488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12038 HLA-DQA2 major histocompatibility complex, class II, DQ alpha 2 397488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12039 HLA-DRA major histocompatibility complex, class II, DR alpha 395967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12040 HM13 histocompatibility (minor) 13 519168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12041 HMBS hydroxymethylbilane synthase 519168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12042 HMG20A high-mobility group 20A 545532 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12043 HMGA1 high mobility group AT-hook 1 161226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12044 HMGA2 high mobility group AT-hook 2 138918 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12045 HMGB1 high-mobility group box 1 336648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12046 HMGB3 high-mobility group box 3 313833 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12047 HMGB4 high-mobility group box 4 286455 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12048 HMGCL 3-hydroxymethyl-3-methylglutaryl-Coenzyme A lyase (hydroxymethylglutaricaciduria) 461877 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12049 HMGCR 3-hydroxy-3-methylglutaryl-Coenzyme A reductase 1390701 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12050 HMGN1 high-mobility group nucleosome binding domain 1 137397 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12051 HMGN3 high mobility group nucleosomal binding domain 3 164268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12052 HMGN4 high mobility group nucleosomal binding domain 4 140439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12053 HMGXB4 935922 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12054 HMHB1 histocompatibility (minor) HB-1 47151 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12055 HMMR hyaluronan-mediated motility receptor (RHAMM) 1115400 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12056 HMOX1 heme oxygenase (decycling) 1 383799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12057 HMOX2 heme oxygenase (decycling) 2 446667 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12058 HMP19 269724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12059 HMSD histocompatibility (minor) serpin domain containing 219024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12060 HN1 hematological and neurological expressed 1 265668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12061 HN1L hematological and neurological expressed 1-like 276315 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12062 HNF4G hepatocyte nuclear factor 4, gamma 698646 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12063 HNMT histamine N-methyltransferase 568347 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12064 HNRNPA1L2 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12065 HNRNPAB 412698 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12066 HNRNPC heterogeneous nuclear ribonucleoprotein C (C1/C2) 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12067 HNRNPK 755430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12068 HNRNPU heterogeneous nuclear ribonucleoprotein U (scaffold attachment factor A) 988143 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12069 HNRNPUL2 923754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12070 HNRPLL heterogeneous nuclear ribonucleoprotein L-like 754416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12071 HORMAD2 HORMA domain containing 2 425880 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12072 HOXA10 homeobox A10 239304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12073 HOXA11 homeobox A11 343746 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12074 HOXA2 homeobox A2 471003 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12075 HOXA6 homeobox A6 359970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12076 HOXA9 homeobox A9 182520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12077 HOXB1 homeobox B1 463398 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12078 HOXB13 homeobox B13 435006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12079 HOXB4 homeobox B4 262626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12080 HOXB5 homeobox B5 414726 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12081 HOXB6 homeobox B6 246909 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12082 HOXB7 homeobox B7 212433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12083 HOXB9 homeobox B9 374673 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12084 HOXC10 homeobox C10 514605 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12085 HOXC11 homeobox C11 412191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12086 HOXC13 homeobox C13 178971 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12087 HOXC4 homeobox C4 389883 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12088 HOXC5 homeobox C5 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12089 HOXC6 homeobox C6 363012 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12090 HOXC8 homeobox C8 373659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12091 HOXC9 homeobox C9 283413 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12092 HOXD1 homeobox D1 246402 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12093 HOXD10 homeobox D10 522717 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12094 HOXD12 homeobox D12 255528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12095 HOXD13 homeobox D13 319917 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12096 HOXD4 homeobox D4 307749 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12097 HOXD9 homeobox D9 222066 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12098 HPCA hippocalcin 296595 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12099 HPCAL4 hippocalcin like 4 298116 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12100 HPGD hydroxyprostaglandin dehydrogenase 15-(NAD) 371124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12101 HPGDS 314340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12102 HPN hepsin (transmembrane protease, serine 1) 520689 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12103 HPR haptoglobin-related protein 540969 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12104 HPRT1 hypoxanthine phosphoribosyltransferase 1 (Lesch-Nyhan syndrome) 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12105 HPX hemopexin 724503 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12106 HRAS v-Ha-ras Harvey rat sarcoma viral oncogene homolog 177450 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12107 HRASLS2 HRAS-like suppressor 2 256035 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12108 HRASLS5 HRAS-like suppressor family, member 5 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12109 HRH1 histamine receptor H1 744276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12110 HS1BP3 HCLS1 binding protein 3 529308 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12111 HS3ST1 heparan sulfate (glucosamine) 3-O-sulfotransferase 1 325494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12112 HS3ST3A1 heparan sulfate (glucosamine) 3-O-sulfotransferase 3A1 317382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12113 HS3ST4 heparan sulfate (glucosamine) 3-O-sulfotransferase 4 324987 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12114 HS3ST6 heparan sulfate (glucosamine) 3-O-sulfotransferase 6 221559 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12115 HSBP1 heat shock factor binding protein 1 98358 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12116 HSCB HscB iron-sulfur cluster co-chaperone homolog (E. coli) 297609 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12117 HSD11B1 hydroxysteroid (11-beta) dehydrogenase 1 457821 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12118 HSD11B2 hydroxysteroid (11-beta) dehydrogenase 2 491283 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12119 HSD17B11 hydroxysteroid (17-beta) dehydrogenase 11 472017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12120 HSD17B12 hydroxysteroid (17-beta) dehydrogenase 12 497874 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12121 HSD17B14 hydroxysteroid (17-beta) dehydrogenase 14 350844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12122 HSD17B3 hydroxysteroid (17-beta) dehydrogenase 3 494325 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12123 HSD17B6 hydroxysteroid (17-beta) dehydrogenase 6 homolog (mouse) 491790 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12124 HSD17B7 hydroxysteroid (17-beta) dehydrogenase 7 518661 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12125 HSD17B8 hydroxysteroid (17-beta) dehydrogenase 8 342225 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12126 HSD3B1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 1 574938 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12127 HSD3B7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 529308 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12128 HSDL1 hydroxysteroid dehydrogenase like 1 511563 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12129 HSF2BP heat shock transcription factor 2 binding protein 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12130 HSF4 heat shock transcription factor 4 348816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12131 HSH2D hematopoietic SH2 domain containing 492297 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12132 HSP90B1 heat shock protein 90kDa beta (Grp94), member 1 1232517 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12133 HSPA12B heat shock 70kD protein 12B 475566 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12134 HSPA1L heat shock 70kDa protein 1-like 978510 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12135 HSPA4L heat shock 70kDa protein 4-like 1259895 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12136 HSPA5 heat shock 70kDa protein 5 (glucose-regulated protein, 78kDa) 1004874 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12137 HSPA6 heat shock 70kDa protein 6 (HSP70B') 750867 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12138 HSPB11 230685 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12139 HSPB2 heat shock 27kDa protein 2 232713 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12140 HSPB3 heat shock 27kDa protein 3 231699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12141 HSPB7 heat shock 27kDa protein family, member 7 (cardiovascular) 242853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12142 HSPB8 heat shock 22kDa protein 8 305721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12143 HSPB9 heat shock protein, alpha-crystallin-related, B9 245388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12144 HSPBP1 208377 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12145 HSPC159 252993 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12146 HSPE1 heat shock 10kDa protein 1 (chaperonin 10) 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12147 HTATIP2 HIV-1 Tat interactive protein 2, 30kDa 429936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12148 HTN1 histatin 1 96330 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12149 HTN3 histatin 3 87204 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12150 HTR1D 5-hydroxytryptamine (serotonin) receptor 1D 576966 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12151 HTR3B 5-hydroxytryptamine (serotonin) receptor 3B 690534 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12152 HTR3C 5-hydroxytryptamine (serotonin) receptor 3, family member C 699660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12153 HTR3D 5-hydroxytryptamine (serotonin) receptor 3 family member D 468975 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12154 HTR4 5-hydroxytryptamine (serotonin) receptor 4 753909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12155 HTR6 5-hydroxytryptamine (serotonin) receptor 6 512070 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12156 HTR7 5-hydroxytryptamine (serotonin) receptor 7 (adenylate cyclase-coupled) 639834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12157 HTRA1 HtrA serine peptidase 1 508521 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12158 HTRA2 HtrA serine peptidase 2 625638 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12159 HTRA3 HtrA serine peptidase 3 244881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12160 HTRA4 HtrA serine peptidase 4 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12161 HUS1 HUS1 checkpoint homolog (S. pombe) 442104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12162 HUS1B HUS1 checkpoint homolog b (S. pombe) 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12163 HVCN1 hydrogen voltage-gated channel 1 428922 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12164 HYAL1 hyaluronoglucosaminidase 1 610428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12165 HYAL3 hyaluronoglucosaminidase 3 641862 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12166 HYI hydroxypyruvate isomerase homolog (E. coli) 277329 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12167 IAH1 isoamyl acetate-hydrolyzing esterase 1 homolog (S. cerevisiae) 346788 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12168 IBSP integrin-binding sialoprotein (bone sialoprotein, bone sialoprotein II) 495846 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12169 IBTK inhibitor of Bruton agammaglobulinemia tyrosine kinase 2116218 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12170 ICAM1 intercellular adhesion molecule 1 (CD54), human rhinovirus receptor 824889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12171 ICAM2 intercellular adhesion molecule 2 407121 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12172 ICAM3 intercellular adhesion molecule 3 648453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12173 ICAM4 intercellular adhesion molecule 4 (Landsteiner-Wiener blood group) 405093 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12174 ICAM5 intercellular adhesion molecule 5, telencephalin 892827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12175 ICOS inducible T-cell co-stimulator 314340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12176 ID1 inhibitor of DNA binding 1, dominant negative helix-loop-helix protein 217503 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12177 ID3 inhibitor of DNA binding 3, dominant negative helix-loop-helix protein 186576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12178 IDH2 isocitrate dehydrogenase 2 (NADP+), mitochondrial 592683 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12179 IDH3B isocitrate dehydrogenase 3 (NAD+) beta 692562 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12180 IDI2 isopentenyl-diphosphate delta isomerase 2 354900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12181 IDO2 554151 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12182 IER2 immediate early response 2 130806 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12183 IER3 immediate early response 3 158691 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12184 IER3IP1 immediate early response 3 interacting protein 1 84162 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12185 IER5 immediate early response 5 148551 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12186 IFFO1 772161 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12187 IFI27 interferon, alpha-inducible protein 27 189111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12188 IFI27L1 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12189 IFI27L2 207363 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12190 IFI6 interferon, alpha-inducible protein 6 128271 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12191 IFIT1 interferon-induced protein with tetratricopeptide repeats 1 732615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12192 IFIT1B 726531 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12193 IFIT3 interferon-induced protein with tetratricopeptide repeats 3 755430 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12194 IFITM2 interferon induced transmembrane protein 2 (1-8D) 205335 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12195 IFNA1 interferon, alpha 1 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12196 IFNA13 interferon, alpha 13 292539 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12197 IFNA16 interferon, alpha 16 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12198 IFNA17 interferon, alpha 17 291018 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12199 IFNA21 interferon, alpha 21 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12200 IFNA5 interferon, alpha 5 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12201 IFNA6 interferon, alpha 6 290004 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12202 IFNA7 interferon, alpha 7 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12203 IFNA8 interferon, alpha 8 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12204 IFNAR1 interferon (alpha, beta and omega) receptor 1 830466 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12205 IFNG interferon, gamma 262119 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12206 IFNGR1 interferon gamma receptor 1 714363 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12207 IFNGR2 interferon gamma receptor 2 (interferon gamma transducer 1) 489255 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12208 IFNW1 interferon, omega 1 300144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12209 IFT20 intraflagellar transport 20 homolog (Chlamydomonas) 174915 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12210 IFT27 298623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12211 IFT46 563784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12212 IFT52 intraflagellar transport 52 homolog (Chlamydomonas) 692562 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12213 IFT57 intraflagellar transport 57 homolog (Chlamydomonas) 566826 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12214 IGDCC4 1533168 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12215 IGF2BP2 insulin-like growth factor 2 mRNA binding protein 2 851253 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12216 IGFBP1 insulin-like growth factor binding protein 1 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12217 IGFBP2 insulin-like growth factor binding protein 2, 36kDa 244881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12218 IGFBP4 insulin-like growth factor binding protein 4 223080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12219 IGFBP5 insulin-like growth factor binding protein 5 250458 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12220 IGFBP6 insulin-like growth factor binding protein 6 203307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12221 IGFBP7 insulin-like growth factor binding protein 7 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12222 IGFBPL1 insulin-like growth factor binding protein-like 1 197223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12223 IGFL1 IGF-like family member 1 176943 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12224 IGFL3 IGF-like family member 3 199758 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12225 IGHMBP2 immunoglobulin mu binding protein 2 1272570 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12226 IGJ immunoglobulin J polypeptide, linker protein for immunoglobulin alpha and mu polypeptides 251472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12227 IGLL1 immunoglobulin lambda-like polypeptide 1 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12228 IGLL5 226629 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12229 IGSF11 immunoglobulin superfamily, member 11 669747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12230 IGSF21 immunoglobin superfamily, member 21 641355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12231 IGSF6 immunoglobulin superfamily, member 6 380250 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12232 IGSF9 immunoglobulin superfamily, member 9 1768416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12233 IGSF9B immunoglobulin superfamily, member 9B 1837368 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12234 IHH Indian hedgehog homolog (Drosophila) 469482 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12235 IK IK cytokine, down-regulator of HLA II 863421 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12236 IKBIP 873561 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12237 IKZF3 IKAROS family zinc finger 3 (Aiolos) 791427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12238 IKZF5 IKAROS family zinc finger 5 (Pegasus) 644904 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12239 IL10 interleukin 10 282399 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12240 IL12RB2 interleukin 12 receptor, beta 2 1343043 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12241 IL13 interleukin 13 223080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12242 IL15RA interleukin 15 receptor, alpha 375180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12243 IL16 interleukin 16 (lymphocyte chemoattractant factor) 2060448 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12244 IL17A interleukin 17A 243360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12245 IL17F interleukin 17F 255528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12246 IL17RD interleukin 17 receptor D 1036308 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -12247 IL18 interleukin 18 (interferon-gamma-inducing factor) 295581 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12248 IL18BP interleukin 18 binding protein 324480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12249 IL19 interleukin 19 340704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12250 IL1B interleukin 1, beta 422838 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12251 IL1F10 interleukin 1 family, member 10 (theta) 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12252 IL1F7 interleukin 1 family, member 7 (zeta) 379236 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12253 IL1F8 interleukin 1 family, member 8 (eta) 371124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12254 IL1F9 interleukin 1 family, member 9 266682 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12255 IL1RAPL1 interleukin 1 receptor accessory protein-like 1 1080417 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12256 IL1RL1 interleukin 1 receptor-like 1 876096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12257 IL20 interleukin 20 279357 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12258 IL20RA interleukin 20 receptor, alpha 810186 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12259 IL23A interleukin 23, alpha subunit p19 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12260 IL24 interleukin 24 317382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12261 IL26 interleukin 26 271752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12262 IL28A interleukin 28A (interferon, lambda 2) 317889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12263 IL29 interleukin 29 (interferon, lambda 1) 315861 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12264 IL2RA interleukin 2 receptor, alpha 431457 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12265 IL2RB interleukin 2 receptor, beta 811200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12266 IL3 interleukin 3 (colony-stimulating factor, multiple) 242853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12267 IL31 interleukin 31 257049 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12268 IL31RA interleukin 31 receptor A 1193985 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12269 IL32 interleukin 32 299637 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12270 IL4 interleukin 4 242346 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12271 IL4I1 interleukin 4 induced 1 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12272 IL4R interleukin 4 receptor 1274598 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12273 IL5 interleukin 5 (colony-stimulating factor, eosinophil) 213447 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12274 IL7 interleukin 7 275808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12275 IL7R interleukin 7 receptor 715884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12276 IL8 interleukin 8 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12277 IL9 interleukin 9 230685 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12278 IL9R interleukin 9 receptor 707772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12279 ILDR1 immunoglobulin-like domain containing receptor 1 762021 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12280 ILDR2 653016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12281 IMMP1L IMP1 inner mitochondrial membrane peptidase-like (S. cerevisiae) 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12282 IMMP2L IMP2 inner mitochondrial membrane peptidase-like (S. cerevisiae) 277836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12283 IMP3 IMP3, U3 small nucleolar ribonucleoprotein, homolog (yeast) 90753 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12284 IMP5 1043913 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12285 IMPA2 inositol(myo)-1(or 4)-monophosphatase 2 377208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12286 IMPACT Impact homolog (mouse) 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12287 IMPAD1 inositol monophosphatase domain containing 1 359463 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12288 INCA1 372645 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12289 ING1 inhibitor of growth family, member 1 408135 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12290 ING2 inhibitor of growth family, member 2 342225 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12291 ING3 inhibitor of growth family, member 3 669747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12292 INHA inhibin, alpha 529815 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12293 INHBB inhibin, beta B 392925 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12294 INO80B 369096 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12295 INO80C 303693 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12296 INO80D 1564095 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12297 INO80E 167310 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12298 INPP1 inositol polyphosphate-1-phosphatase 618540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12299 INPP5A inositol polyphosphate-5-phosphatase, 40kDa 463905 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12300 INPP5J 480129 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12301 INS-IGF2 INS-IGF2 113568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12302 INSC inscuteable homolog (Drosophila) 892320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12303 INSIG1 insulin induced gene 1 329550 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12304 INSL4 insulin-like 4 (placenta) 216996 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12305 INSL5 insulin-like 5 210912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12306 INSL6 insulin-like 6 329550 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12307 INSM2 insulinoma-associated 2 438048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12308 INTS6 integrator complex subunit 6 1331889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12309 INTS9 integrator complex subunit 9 1028196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12310 INVS inversin 1653834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12311 IP6K1 682422 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12312 IPO11 importin 11 1546350 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12313 IPO4 importin 4 1470300 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12314 IPO7 importin 7 1586403 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12315 IPPK inositol 1,3,4,5,6-pentakisphosphate 2-kinase 642369 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12316 IQCC IQ motif containing C 697125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12317 IQCF2 IQ motif containing F2 257049 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12318 IQCF3 IQ motif containing F3 241839 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12319 IQCJ IQ motif containing J 277836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12320 IQCK IQ motif containing K 362505 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12321 IRAK1BP1 interleukin-1 receptor-associated kinase 1 binding protein 1 375180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12322 IREB2 iron-responsive element binding protein 2 1499199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12323 IRF1 interferon regulatory factor 1 513084 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12324 IRF2 interferon regulatory factor 2 548574 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12325 IRF4 interferon regulatory factor 4 590655 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12326 IRF5 interferon regulatory factor 5 799032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12327 IRF8 interferon regulatory factor 8 612963 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12328 IRGQ immunity-related GTPase family, Q 728052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12329 IRX1 iroquois homeobox 1 317382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12330 IRX3 iroquois homeobox 3 310791 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12331 IRX5 iroquois homeobox 5 364533 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12332 IRX6 iroquois homeobox 6 566826 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12333 ISCA1 iron-sulfur cluster assembly 1 homolog (S. cerevisiae) 162747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12334 ISCA1P1 206349 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12335 ISCA2 iron-sulfur cluster assembly 2 homolog (S. cerevisiae) 155142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12336 ISCU iron-sulfur cluster scaffold homolog (E. coli) 227643 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12337 ISG15 ISG15 ubiquitin-like modifier 243867 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12338 ISG20 interferon stimulated exonuclease gene 20kDa 282906 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12339 ISG20L2 interferon stimulated exonuclease gene 20kDa-like 2 544518 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12340 ISL2 ISL LIM homeobox 2 242853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12341 ISM1 647439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12342 ISOC1 isochorismatase domain containing 1 306228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12343 ISX intestine-specific homeobox 311805 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12344 ISY1 ISY1 splicing factor homolog (S. cerevisiae) 453765 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12345 ITCH itchy E3 ubiquitin protein ligase homolog (mouse) 1359267 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12346 ITFG2 integrin alpha FG-GAP repeat containing 2 705744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12347 ITFG3 integrin alpha FG-GAP repeat containing 3 562263 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12348 ITGA3 integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor) 1534689 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12349 ITGA5 integrin, alpha 5 (fibronectin receptor, alpha polypeptide) 1622907 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12350 ITGA9 integrin, alpha 9 1536717 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12351 ITGAE integrin, alpha E (antigen CD103, human mucosal lymphocyte antigen 1; alpha polypeptide) 1705548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12352 ITGB1BP1 integrin beta 1 binding protein 1 317889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12353 ITGB6 integrin, beta 6 1230489 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12354 ITGB7 integrin, beta 7 1164072 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12355 ITGBL1 integrin, beta-like 1 (with EGF-like repeat domains) 662649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12356 ITIH2 inter-alpha (globulin) inhibitor H2 1482975 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12357 ITM2B integral membrane protein 2B 356928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12358 ITM2C integral membrane protein 2C 339183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12359 ITPA inosine triphosphatase (nucleoside triphosphate pyrophosphatase) 312312 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12360 ITPR2 inositol 1,4,5-triphosphate receptor, type 2 4225338 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -12361 ITPRIPL1 866970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12362 ITPRIPL2 529308 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12363 IVD isovaleryl Coenzyme A dehydrogenase 594204 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12364 IVL involucrin 492804 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12365 IYD iodotyrosine deiodinase 451230 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12366 IZUMO1 izumo sperm-egg fusion 1 552123 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12367 JAKMIP1 janus kinase and microtubule interacting protein 1 870519 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12368 JAKMIP3 janus kinase and microtubule interacting protein 3 410163 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12369 JAM2 junctional adhesion molecule 2 439062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12370 JAM3 junctional adhesion molecule 3 450723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12371 JAZF1 JAZF zinc finger 1 320931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12372 JDP2 Jun dimerization protein 2 266175 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12373 JKAMP 484692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12374 JMJD1C jumonji domain containing 1C 3859284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12375 JMJD4 jumonji domain containing 4 191646 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12376 JMJD6 jumonji domain containing 6 582036 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12377 JMJD7 328029 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12378 JMJD7-PLA2G4B 1487538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12379 JMY 1129596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12380 JOSD1 Josephin domain containing 1 316875 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12381 JPH2 junctophilin 2 552123 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12382 JPH3 junctophilin 3 396474 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12383 JPH4 junctophilin 4 379236 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12384 JRKL jerky homolog-like (mouse) 639327 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12385 JUB jub, ajuba homolog (Xenopus laevis) 492804 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12386 JUP junction plakoglobin 1020084 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12387 KAL1 Kallmann syndrome 1 sequence 957216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12388 KANK1 KN motif and ankyrin repeat domains 1 2080221 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12389 KARS lysyl-tRNA synthetase 920205 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12390 KAT2A 1080417 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12391 KAT2B 1147848 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12392 KAT5 762528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12393 KATNA1 katanin p60 (ATPase-containing) subunit A 1 768612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12394 KATNAL1 katanin p60 subunit A-like 1 767091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12395 KATNAL2 katanin p60 subunit A-like 2 738699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12396 KAZALD1 Kazal-type serine peptidase inhibitor domain 1 210912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12397 KBTBD12 951639 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12398 KBTBD2 kelch repeat and BTB (POZ) domain containing 2 955188 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12399 KBTBD3 kelch repeat and BTB (POZ) domain containing 3 936429 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12400 KBTBD6 kelch repeat and BTB (POZ) domain containing 6 1028703 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12401 KBTBD7 kelch repeat and BTB (POZ) domain containing 7 1043913 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12402 KCMF1 potassium channel modulatory factor 1 585078 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12403 KCNA3 potassium voltage-gated channel, shaker-related subfamily, member 3 727038 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12404 KCNAB2 potassium voltage-gated channel, shaker-related subfamily, beta member 2 290004 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12405 KCNAB3 potassium voltage-gated channel, shaker-related subfamily, beta member 3 456300 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12406 KCNB1 potassium voltage-gated channel, Shab-related subfamily, member 1 1221870 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12407 KCNC1 potassium voltage-gated channel, Shaw-related subfamily, member 1 660114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12408 KCNC3 potassium voltage-gated channel, Shaw-related subfamily, member 3 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12409 KCNC4 potassium voltage-gated channel, Shaw-related subfamily, member 4 926289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12410 KCND3 potassium voltage-gated channel, Shal-related subfamily, member 3 1009437 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12411 KCNE1 potassium voltage-gated channel, Isk-related family, member 1 199758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12412 KCNE1L KCNE1-like 137397 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12413 KCNE3 potassium voltage-gated channel, Isk-related family, member 3 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12414 KCNE4 potassium voltage-gated channel, Isk-related family, member 4 258063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12415 KCNF1 potassium voltage-gated channel, subfamily F, member 1 612963 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12416 KCNG3 potassium voltage-gated channel, subfamily G, member 3 329550 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12417 KCNG4 potassium voltage-gated channel, subfamily G, member 4 725010 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12418 KCNIP2 Kv channel interacting protein 2 440583 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12419 KCNIP3 Kv channel interacting protein 3, calsenilin 327522 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12420 KCNJ11 potassium inwardly-rectifying channel, subfamily J, member 11 595725 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12421 KCNJ13 potassium inwardly-rectifying channel, subfamily J, member 13 553137 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12422 KCNJ14 potassium inwardly-rectifying channel, subfamily J, member 14 311805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12423 KCNJ16 potassium inwardly-rectifying channel, subfamily J, member 16 639327 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12424 KCNJ5 potassium inwardly-rectifying channel, subfamily J, member 5 642876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12425 KCNJ8 potassium inwardly-rectifying channel, subfamily J, member 8 650481 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12426 KCNJ9 potassium inwardly-rectifying channel, subfamily J, member 9 301158 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12427 KCNK1 potassium channel, subfamily K, member 1 336648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12428 KCNK10 potassium channel, subfamily K, member 10 890799 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12429 KCNK15 potassium channel, subfamily K, member 15 242853 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12430 KCNK16 potassium channel, subfamily K, member 16 501930 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12431 KCNK17 potassium channel, subfamily K, member 17 394446 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12432 KCNK6 potassium channel, subfamily K, member 6 323973 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12433 KCNMB1 potassium large conductance calcium-activated channel, subfamily M, beta member 1 298116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12434 KCNMB3 potassium large conductance calcium-activated channel, subfamily M beta member 3 498888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12435 KCNMB4 potassium large conductance calcium-activated channel, subfamily M, beta member 4 190125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12436 KCNN1 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 1 496353 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12437 KCNN4 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 4 613470 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12438 KCNQ1 potassium voltage-gated channel, KQT-like subfamily, member 1 444132 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12439 KCNQ4 potassium voltage-gated channel, KQT-like subfamily, member 4 610428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12440 KCNRG potassium channel regulator 419289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12441 KCNS1 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 1 260091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12442 KCNV2 potassium channel, subfamily V, member 2 599781 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12443 KCTD11 potassium channel tetramerisation domain containing 11 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12444 KCTD13 potassium channel tetramerisation domain containing 13 464919 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12445 KCTD15 potassium channel tetramerisation domain containing 15 249951 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12446 KCTD16 potassium channel tetramerisation domain containing 16 656565 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12447 KCTD17 potassium channel tetramerisation domain containing 17 231192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12448 KCTD2 potassium channel tetramerisation domain containing 2 239811 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12449 KCTD4 potassium channel tetramerisation domain containing 4 397488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12450 KCTD5 potassium channel tetramerisation domain containing 5 173394 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12451 KCTD6 potassium channel tetramerisation domain containing 6 366054 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12452 KCTD8 potassium channel tetramerisation domain containing 8 235755 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12453 KDELC1 KDEL (Lys-Asp-Glu-Leu) containing 1 785343 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12454 KDELC2 KDEL (Lys-Asp-Glu-Leu) containing 2 684450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12455 KDELR1 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 1 266175 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12456 KDELR2 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 2 374673 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12457 KDM1A 1164072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12458 KDM1B 931359 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12459 KDM4B 522210 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12460 KDM5C 2359578 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12461 KDSR 3-ketodihydrosphingosine reductase 469989 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12462 KEL Kell blood group, metallo-endopeptidase 1153425 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12463 KERA keratocan 540969 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12464 KHDC1 KH homology domain containing 1 252486 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12465 KHNYN 943020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12466 KIAA0020 KIAA0020 1021605 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12467 KIAA0101 KIAA0101 191139 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12468 KIAA0174 KIAA0174 567333 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12469 KIAA0196 KIAA0196 1821144 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12470 KIAA0317 KIAA0317 1289808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12471 KIAA0355 KIAA0355 1565109 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12472 KIAA0391 KIAA0391 902460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12473 KIAA0406 KIAA0406 1641666 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12474 KIAA0415 KIAA0415 345267 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12475 KIAA0513 KIAA0513 514098 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12476 KIAA0649 KIAA0649 1381068 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12477 KIAA0664 KIAA0664 595218 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12478 KIAA0748 KIAA0748 794469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12479 KIAA0892 KIAA0892 740220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12480 KIAA0895L 563784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12481 KIAA1161 KIAA1161 892320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12482 KIAA1211 1457625 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12483 KIAA1244 KIAA1244 2879253 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12484 KIAA1324 KIAA1324 1507311 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12485 KIAA1328 KIAA1328 823368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12486 KIAA1430 KIAA1430 801060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12487 KIAA1467 KIAA1467 953160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12488 KIAA1468 KIAA1468 1650285 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12489 KIAA1486 892320 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12490 KIAA1598 KIAA1598 960765 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12491 KIAA1609 KIAA1609 700167 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12492 KIAA1704 KIAA1704 534885 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12493 KIAA1712 KIAA1712 598767 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12494 KIAA1737 KIAA1737 614484 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12495 KIAA1826 KIAA1826 530322 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12496 KIAA1949 KIAA1949 874068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12497 KIAA1967 KIAA1967 1033773 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12498 KIF15 kinesin family member 15 2183649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12499 KIF18B kinesin family member 18B 640848 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -12500 KIF20A kinesin family member 20A 1391715 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12501 KIF21A kinesin family member 21A 2578602 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12502 KIF23 kinesin family member 23 1500720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12503 KIF25 kinesin family member 25 505986 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12504 KIF3B kinesin family member 3B 1153932 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12505 KIF6 kinesin family member 6 1258374 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12506 KIF9 kinesin family member 9 1243671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12507 KIN KIN, antigenic determinant of recA protein homolog (mouse) 625638 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12508 KIR2DL1 killer cell immunoglobulin-like receptor, two domains, long cytoplasmic tail, 1 547053 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12509 KIR3DL1 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 1 675831 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12510 KIRREL3 kin of IRRE like 3 (Drosophila) 937443 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12511 KLB klotho beta 1480947 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12512 KLC1 kinesin light chain 1 898404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12513 KLC3 kinesin light chain 3 555165 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12514 KLF1 Kruppel-like factor 1 (erythroid) 205335 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12515 KLF10 Kruppel-like factor 10 719433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12516 KLF11 Kruppel-like factor 11 764556 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12517 KLF12 Kruppel-like factor 12 627159 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12518 KLF5 Kruppel-like factor 5 (intestinal) 570375 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12519 KLF8 Kruppel-like factor 8 559728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12520 KLF9 Kruppel-like factor 9 322452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12521 KLHDC2 kelch domain containing 2 565812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12522 KLHDC5 kelch domain containing 5 623610 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12523 KLHDC8A kelch domain containing 8A 533871 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12524 KLHL10 kelch-like 10 (Drosophila) 936429 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12525 KLHL12 kelch-like 12 (Drosophila) 855309 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12526 KLHL13 kelch-like 13 (Drosophila) 1011972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12527 KLHL2 kelch-like 2, Mayven (Drosophila) 918684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12528 KLHL22 kelch-like 22 (Drosophila) 772161 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12529 KLHL3 kelch-like 3 (Drosophila) 924768 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12530 KLHL31 kelch-like 31 (Drosophila) 796497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12531 KLHL32 kelch-like 32 (Drosophila) 964821 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12532 KLHL34 kelch-like 34 (Drosophila) 270231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12533 KLHL36 457821 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12534 KLHL8 kelch-like 8 (Drosophila) 962793 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12535 KLHL9 kelch-like 9 (Drosophila) 942006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12536 KLK1 kallikrein 1 410163 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12537 KLK10 kallikrein-related peptidase 10 176943 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12538 KLK11 kallikrein-related peptidase 11 459849 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12539 KLK13 kallikrein-related peptidase 13 404586 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12540 KLK14 kallikrein-related peptidase 14 244374 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12541 KLK3 kallikrein-related peptidase 3 456807 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12542 KLK4 kallikrein-related peptidase 4 365040 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12543 KLK6 kallikrein-related peptidase 6 373659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12544 KLK9 kallikrein-related peptidase 9 310284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12545 KLRB1 killer cell lectin-like receptor subfamily B, member 1 355914 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12546 KLRC4 killer cell lectin-like receptor subfamily C, member 4 249951 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12547 KLRD1 killer cell lectin-like receptor subfamily D, member 1 285948 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12548 KLRF1 killer cell lectin-like receptor subfamily F, member 1 366561 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12549 KLRG1 killer cell lectin-like receptor subfamily G, member 1 299130 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12550 KMO kynurenine 3-monooxygenase (kynurenine 3-hydroxylase) 771147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12551 KNCN kinocilin 118638 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12552 KNDC1 kinase non-catalytic C-lobe domain (KIND) containing 1 1192971 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12553 KPNA1 karyopherin alpha 1 (importin alpha 5) 846183 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12554 KPNA3 karyopherin alpha 3 (importin alpha 4) 791427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12555 KPNA6 karyopherin alpha 6 (importin alpha 7) 845169 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12556 KPTN kaptin (actin binding protein) 456807 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12557 KRBA2 KRAB-A domain containing 2 753909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12558 KRCC1 lysine-rich coiled-coil 1 397488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12559 KRR1 KRR1, small subunit (SSU) processome component, homolog (yeast) 601302 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12560 KRT10 keratin 10 (epidermolytic hyperkeratosis; keratosis palmaris et plantaris) 759993 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12561 KRT12 keratin 12 (Meesmann corneal dystrophy) 722475 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12562 KRT13 keratin 13 642876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12563 KRT16 keratin 16 (focal non-epidermolytic palmoplantar keratoderma) 666705 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12564 KRT20 keratin 20 662142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12565 KRT23 keratin 23 (histone deacetylase inducible) 601809 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12566 KRT24 keratin 24 811200 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12567 KRT26 keratin 26 729573 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12568 KRT27 keratin 27 635778 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12569 KRT31 keratin 31 628680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12570 KRT32 keratin 32 596232 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12571 KRT33B keratin 33B 630201 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12572 KRT38 keratin 38 641355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12573 KRT5 keratin 5 (epidermolysis bullosa simplex, Dowling-Meara/Kobner/Weber-Cockayne types) 916656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12574 KRT6B keratin 6B 877617 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12575 KRT7 keratin 7 725010 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12576 KRT73 keratin 73 841113 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12577 KRT74 keratin 74 824382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12578 KRT75 keratin 75 857844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12579 KRT76 keratin 76 934401 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12580 KRT77 keratin 77 879645 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12581 KRT78 keratin 78 757458 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12582 KRT79 keratin 79 833508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12583 KRT8 keratin 8 751374 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12584 KRTAP10-1 keratin associated protein 10-1 382278 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12585 KRTAP10-10 keratin associated protein 10-10 385320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12586 KRTAP10-12 keratin associated protein 10-12 376194 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12587 KRTAP10-3 keratin associated protein 10-3 339690 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12588 KRTAP10-6 keratin associated protein 10-6 558714 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12589 KRTAP10-9 keratin associated protein 10-9 447681 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12590 KRTAP11-1 keratin associated protein 11-1 251472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12591 KRTAP12-1 keratin associated protein 12-1 149565 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12592 KRTAP12-2 keratin associated protein 12-2 225615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12593 KRTAP12-3 keratin associated protein 12-3 149565 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12594 KRTAP12-4 keratin associated protein 12-4 51714 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12595 KRTAP13-1 keratin associated protein 13-1 265161 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12596 KRTAP13-2 keratin associated protein 13-2 269724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12597 KRTAP13-3 keratin associated protein 13-3 265161 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12598 KRTAP15-1 keratin associated protein 15-1 211926 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12599 KRTAP19-1 keratin associated protein 19-1 140439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12600 KRTAP19-2 keratin associated protein 19-2 82641 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12601 KRTAP19-3 keratin associated protein 19-3 126750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12602 KRTAP19-4 keratin associated protein 19-4 131313 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12603 KRTAP19-5 keratin associated protein 19-5 113061 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12604 KRTAP19-7 keratin associated protein 19-7 99372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12605 KRTAP19-8 keratin associated protein 19-8 99372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12606 KRTAP20-1 keratin associated protein 20-1 88725 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12607 KRTAP20-2 keratin associated protein 20-2 102414 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12608 KRTAP21-1 keratin associated protein 21-1 123708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12609 KRTAP21-2 keratin associated protein 21-2 129792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12610 KRTAP22-1 keratin associated protein 22-1 76557 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12611 KRTAP23-1 keratin associated protein 23-1 102414 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12612 KRTAP26-1 keratin associated protein 26-1 322959 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12613 KRTAP27-1 keratin associated protein 27-1 318396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12614 KRTAP4-1 keratin associated protein 4-1 155649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12615 KRTAP4-3 keratin associated protein 4-3 251979 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12616 KRTAP4-4 keratin associated protein 4-4 256035 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12617 KRTAP4-5 keratin associated protein 4-5 215475 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12618 KRTAP5-1 keratin associated protein 5-1 426387 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12619 KRTAP5-11 keratin associated protein 5-11 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12620 KRTAP5-2 keratin associated protein 5-2 272766 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12621 KRTAP5-3 keratin associated protein 5-3 365547 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12622 KRTAP5-6 keratin associated protein 5-6 199758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12623 KRTAP5-7 keratin associated protein 5-7 254514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12624 KRTAP5-8 keratin associated protein 5-8 287976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12625 KRTAP5-9 keratin associated protein 5-9 260598 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12626 KRTAP6-2 keratin associated protein 6-2 97851 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12627 KRTAP6-3 keratin associated protein 6-3 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12628 KRTAP8-1 keratin associated protein 8-1 99372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12629 KRTAP9-2 keratin associated protein 9-2 262119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12630 KRTAP9-3 keratin associated protein 9-3 245388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12631 KRTAP9-4 keratin associated protein 9-4 237783 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12632 KRTAP9-8 keratin associated protein 9-8 245388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12633 KRTCAP2 keratinocyte associated protein 2 246909 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12634 KRTCAP3 keratinocyte associated protein 3 350337 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12635 KRTDAP keratinocyte differentiation-associated protein 164268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12636 KSR1 kinase suppressor of ras 1 773175 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12637 KTELC1 KTEL (Lys-Tyr-Glu-Leu) containing 1 574938 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12638 LACE1 lactation elevated 1 686985 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12639 LACRT lacritin 221559 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12640 LACTB2 lactamase, beta 2 389883 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12641 LAD1 ladinin 1 771654 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12642 LAG3 lymphocyte-activation gene 3 659607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12643 LAGE3 L antigen family, member 3 127764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12644 LAIR1 leukocyte-associated immunoglobulin-like receptor 1 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12645 LAIR2 leukocyte-associated immunoglobulin-like receptor 2 242853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12646 LALBA lactalbumin, alpha- 225615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12647 LAMP1 lysosomal-associated membrane protein 1 621075 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12648 LAMP3 lysosomal-associated membrane protein 3 619554 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12649 LANCL3 LanC lantibiotic synthetase component C-like 3 (bacterial) 309270 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12650 LAP3 leucine aminopeptidase 3 763542 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12651 LAPTM4A lysosomal-associated protein transmembrane 4 alpha 311805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12652 LAPTM4B lysosomal associated protein transmembrane 4 beta 320424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12653 LARP4 La ribonucleoprotein domain family, member 4 1137201 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12654 LARP6 La ribonucleoprotein domain family, member 6 694590 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12655 LARS leucyl-tRNA synthetase 1855113 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12656 LASS1 LAG1 homolog, ceramide synthase 1 153621 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12657 LASS2 LAG1 homolog, ceramide synthase 2 599781 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12658 LASS3 LAG1 homolog, ceramide synthase 3 604344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12659 LASS5 LAG1 homolog, ceramide synthase 5 541476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12660 LASS6 LAG1 homolog, ceramide synthase 6 605865 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12661 LAT2 linker for activation of T cells family, member 2 320931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12662 LAX1 lymphocyte transmembrane adaptor 1 617019 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12663 LBH limb bud and heart development homolog (mouse) 167310 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12664 LBX1 ladybird homeobox 1 265668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12665 LBX2 ladybird homeobox 2 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12666 LCA5 Leber congenital amaurosis 5 1075854 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12667 LCE1A late cornified envelope 1A 170859 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12668 LCE1B late cornified envelope 1B 183027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12669 LCE1F late cornified envelope 1F 183027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12670 LCE2C late cornified envelope 2C 170859 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12671 LCE3A late cornified envelope 3A 138918 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12672 LCE3B late cornified envelope 3B 148044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12673 LCE3C late cornified envelope 3C 146523 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12674 LCE3D late cornified envelope 3D 143481 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12675 LCE3E late cornified envelope 3E 143481 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12676 LCE4A late cornified envelope 4A 154128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12677 LCE5A late cornified envelope 5A 183027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12678 LCK lymphocyte-specific protein tyrosine kinase 697125 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12679 LCLAT1 643383 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12680 LCN1 lipocalin 1 (tear prealbumin) 260598 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12681 LCN12 lipocalin 12 80613 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12682 LCN15 110526 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12683 LCN2 lipocalin 2 314847 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12684 LCN6 lipocalin 6 144495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12685 LCN9 lipocalin 9 268710 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12686 LCNL1 74529 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12687 LCORL ligand dependent nuclear receptor corepressor-like 415233 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12688 LDB1 LIM domain binding 1 634257 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12689 LDB3 LIM domain binding 3 1109823 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12690 LDHA lactate dehydrogenase A 581022 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12691 LDHAL6A lactate dehydrogenase A-like 6A 520689 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12692 LDHAL6B lactate dehydrogenase A-like 6B 583050 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12693 LDHB lactate dehydrogenase B 523731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12694 LDHD lactate dehydrogenase D 539955 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12695 LDLRAD1 low density lipoprotein receptor class A domain containing 1 256035 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12696 LDLRAP1 low density lipoprotein receptor adaptor protein 1 360477 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12697 LDOC1 leucine zipper, down-regulated in cancer 1 225615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12698 LEAP2 liver expressed antimicrobial peptide 2 124722 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12699 LECT1 leukocyte cell derived chemotaxin 1 450216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12700 LECT2 leukocyte cell-derived chemotaxin 2 239304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12701 LEF1 lymphoid enhancer-binding factor 1 647946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12702 LEFTY1 left-right determination factor 1 268710 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12703 LEMD1 LEM domain containing 1 171873 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12704 LEMD2 LEM domain containing 2 367068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12705 LENEP lens epithelial protein 96330 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12706 LENG1 leukocyte receptor cluster (LRC) member 1 310284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12707 LENG8 leukocyte receptor cluster (LRC) member 8 1152918 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12708 LEP leptin 259584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12709 LEPROT leptin receptor overlapping transcript 198744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12710 LEPROTL1 leptin receptor overlapping transcript-like 1 198744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12711 LETM2 leucine zipper-EF-hand containing transmembrane protein 2 620061 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12712 LGALS1 lectin, galactoside-binding, soluble, 1 (galectin 1) 76557 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12713 LGALS13 lectin, galactoside-binding, soluble, 13 (galectin 13) 221052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12714 LGALS2 lectin, galactoside-binding, soluble, 2 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12715 LGALS3 lectin, galactoside-binding, soluble, 3 396981 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12716 LGALS3BP lectin, galactoside-binding, soluble, 3 binding protein 722475 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12717 LGALS9 lectin, galactoside-binding, soluble, 9 (galectin 9) 563784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12718 LGALS9B 447174 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12719 LGALS9C 437034 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12720 LGI3 leucine-rich repeat LGI family, member 3 744783 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12721 LGMN legumain 686478 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12722 LGR5 leucine-rich repeat-containing G protein-coupled receptor 5 1417572 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12723 LGTN ligatin 920205 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12724 LHFP lipoma HMGIC fusion partner 311805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12725 LHFPL2 lipoma HMGIC fusion partner-like 2 346281 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12726 LHFPL3 lipoma HMGIC fusion partner-like 3 342732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12727 LHFPL5 lipoma HMGIC fusion partner-like 5 340704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12728 LHPP 281892 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12729 LHX6 LIM homeobox 6 269724 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12730 LILRB1 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 1 993213 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12731 LILRB2 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 2 881673 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12732 LILRB3 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 3 674310 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12733 LILRB4 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 4 707265 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12734 LILRB5 leukocyte immunoglobulin-like receptor, subfamily B (with TM and ITIM domains), member 5 871026 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12735 LIMCH1 LIM and calponin homology domains 1 1586403 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12736 LIMD1 LIM domains containing 1 1042899 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12737 LIMD2 LIM domain containing 2 126750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12738 LIMS1 LIM and senescent cell antigen-like domains 1 514098 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12739 LIN28A 273780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12740 LIN28B lin-28 homolog B (C. elegans) 389883 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12741 LIN37 lin-37 homolog (C. elegans) 301665 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12742 LIN52 lin-52 homolog (C. elegans) 190125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12743 LIN7A lin-7 homolog A (C. elegans) 322452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12744 LIN7B lin-7 homolog B (C. elegans) 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12745 LIN7C lin-7 homolog C (C. elegans) 311298 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12746 LINS1 lines homolog 1 (Drosophila) 1165086 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12747 LIPA lipase A, lysosomal acid, cholesterol esterase (Wolman disease) 626652 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12748 LIPC lipase, hepatic 778752 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12749 LIPF lipase, gastric 625131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12750 LIPG lipase, endothelial 769119 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12751 LIPH lipase, member H 707772 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12752 LIPI lipase, member I 753402 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12753 LIPJ lipase, family member J 576459 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12754 LIPK lipase, family member K 626652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12755 LIPT1 lipoyltransferase 1 570882 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12756 LITAF lipopolysaccharide-induced TNF factor 251472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12757 LIX1 Lix1 homolog (chicken) 442611 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12758 LIX1L Lix1 homolog (mouse)-like 376194 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12759 LLPH 201786 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12760 LMAN2L lectin, mannose-binding 2-like 547053 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12761 LMBR1 limb region 1 homolog (mouse) 745797 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12762 LMBRD2 LMBR1 domain containing 2 1093092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12763 LMCD1 LIM and cysteine-rich domains 1 560742 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12764 LMLN leishmanolysin-like (metallopeptidase M8 family) 1029717 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12765 LMNA lamin A/C 846690 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12766 LMO1 LIM domain only 1 (rhombotin 1) 241839 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12767 LMO2 LIM domain only 2 (rhombotin-like 1) 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12768 LMO3 LIM domain only 3 (rhombotin-like 2) 228150 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12769 LMO7 LIM domain 7 2661750 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12770 LMOD2 leiomodin 2 (cardiac) 839592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12771 LMOD3 leiomodin 3 (fetal) 859365 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12772 LNPEP leucyl/cystinyl aminopeptidase 1585389 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12773 LNX2 ligand of numb-protein X 2 1069263 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12774 LOC100302652 814242 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12775 LOC150786 382785 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12776 LOC153328 196209 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12777 LOC200726 280878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12778 LOC285033 187083 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12779 LOC401052 185055 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12780 LOC441294 373659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12781 LOC642587 157677 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12782 LOC646498 287469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12783 LOC649330 449202 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12784 LOC728819 482664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12785 LOC729991-MEF2B 345774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12786 LOC81691 1145313 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12787 LOXL1 lysyl oxidase-like 1 375687 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12788 LOXL2 lysyl oxidase-like 2 1053546 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12789 LPAR2 lysophosphatidic acid receptor 2 305721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12790 LPAR3 lysophosphatidic acid receptor 3 542490 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12791 LPAR4 lysophosphatidic acid receptor 4 566319 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12792 LPAR5 lysophosphatidic acid receptor 5 148551 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12793 LPCAT2 lysophosphatidylcholine acyltransferase 2 768612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12794 LPCAT3 764556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12795 LPPR1 510042 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12796 LPPR4 1061658 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12797 LRAT lecithin retinol acyltransferase (phosphatidylcholine--retinol O-acyltransferase) 355407 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12798 LRCH4 leucine-rich repeats and calponin homology (CH) domain containing 4 876603 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12799 LRFN3 leucine rich repeat and fibronectin type III domain containing 3 419289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12800 LRIT3 leucine-rich repeat, immunoglobulin-like and transmembrane domains 3 739713 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12801 LRMP lymphoid-restricted membrane protein 794976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12802 LRP11 low density lipoprotein receptor-related protein 11 463398 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12803 LRP2BP LRP2 binding protein 545532 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12804 LRP5 low density lipoprotein receptor-related protein 5 2204943 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12805 LRPAP1 low density lipoprotein receptor-related protein associated protein 1 249951 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12806 LRRC1 leucine rich repeat containing 1 791427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12807 LRRC14 leucine rich repeat containing 14 566319 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12808 LRRC15 leucine rich repeat containing 15 888771 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12809 LRRC17 leucine rich repeat containing 17 686478 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12810 LRRC18 leucine rich repeat containing 18 402558 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12811 LRRC20 leucine rich repeat containing 20 289497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12812 LRRC25 leucine rich repeat containing 25 370110 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12813 LRRC32 leucine rich repeat containing 32 1012479 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12814 LRRC37A2 leucine rich repeat containing 37, member A2 864942 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12815 LRRC37B leucine rich repeat containing 37B 1466244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12816 LRRC39 leucine rich repeat containing 39 527280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12817 LRRC3B leucine rich repeat containing 3B 397488 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12818 LRRC4 leucine rich repeat containing 4 979017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12819 LRRC40 leucine rich repeat containing 40 947583 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12820 LRRC43 leucine rich repeat containing 43 945555 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12821 LRRC47 leucine rich repeat containing 47 396981 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12822 LRRC4C leucine rich repeat containing 4C 976989 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12823 LRRC52 leucine rich repeat containing 52 481650 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12824 LRRC55 leucine rich repeat containing 55 524238 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12825 LRRC57 leucine rich repeat containing 57 375180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12826 LRRC58 leucine rich repeat containing 58 318396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12827 LRRC59 leucine rich repeat containing 59 419796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12828 LRRC61 leucine rich repeat containing 61 396981 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12829 LRRC66 1348113 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12830 LRRC67 358449 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12831 LRRC8D leucine rich repeat containing 8 family, member D 1308567 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12832 LRRC8E leucine rich repeat containing 8 family, member E 794976 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -12833 LRRK1 leucine-rich repeat kinase 1 2902575 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12834 LRRN4CL 245388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12835 LRRTM3 leucine rich repeat transmembrane neuronal 3 891306 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12836 LRRTM4 leucine rich repeat transmembrane neuronal 4 908037 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12837 LRTM2 leucine-rich repeats and transmembrane domains 2 534378 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12838 LSAMP limbic system-associated membrane protein 529815 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12839 LSG1 large subunit GTPase 1 homolog (S. cerevisiae) 1030731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12840 LSM1 LSM1 homolog, U6 small nuclear RNA associated (S. cerevisiae) 186576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12841 LSM10 LSM10, U7 small nuclear RNA associated 190632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12842 LSM12 LSM12 homolog (S. cerevisiae) 243360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12843 LSM14A LSM14A, SCD6 homolog A (S. cerevisiae) 704730 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12844 LSM14B LSM14B, SCD6 homolog B (S. cerevisiae) 431964 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12845 LSM2 LSM2 homolog, U6 small nuclear RNA associated (S. cerevisiae) 152607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12846 LSM3 LSM3 homolog, U6 small nuclear RNA associated (S. cerevisiae) 164775 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12847 LSM6 LSM6 homolog, U6 small nuclear RNA associated (S. cerevisiae) 129285 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12848 LSMD1 LSM domain containing 1 231699 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12849 LSP1 lymphocyte-specific protein 1 341718 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12850 LSS lanosterol synthase (2,3-oxidosqualene-lanosterol cyclase) 433992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12851 LST1 leukocyte specific transcript 1 118638 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12852 LTA lymphotoxin alpha (TNF superfamily, member 1) 319410 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12853 LTA4H leukotriene A4 hydrolase 886743 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12854 LTB lymphotoxin beta (TNF superfamily, member 3) 311298 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12855 LTB4R leukotriene B4 receptor 297609 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12856 LTBP3 latent transforming growth factor beta binding protein 3 1171170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12857 LTBR lymphotoxin beta receptor (TNFR superfamily, member 3) 643890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12858 LTF lactotransferrin 562263 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12859 LTV1 LTV1 homolog (S. cerevisiae) 746304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12860 LUC7L LUC7-like (S. cerevisiae) 550095 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12861 LUC7L3 626652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12862 LUM lumican 519675 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12863 LY6D lymphocyte antigen 6 complex, locus D 115089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12864 LY6E lymphocyte antigen 6 complex, locus E 203307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12865 LY6G5C lymphocyte antigen 6 complex, locus G5C 235755 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12866 LY6G6C lymphocyte antigen 6 complex, locus G6C 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12867 LY6G6D lymphocyte antigen 6 complex, locus G6D 209898 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12868 LY6G6F 465426 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12869 LY6H lymphocyte antigen 6 complex, locus H 184041 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12870 LY6K lymphocyte antigen 6 complex, locus K 204321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12871 LY86 lymphocyte antigen 86 258063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12872 LY96 lymphocyte antigen 96 255021 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12873 LYAR Ly1 antibody reactive homolog (mouse) 594204 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12874 LYNX1 Ly6/neurotoxin 1 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12875 LYPD1 LY6/PLAUR domain containing 1 222066 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12876 LYPD2 LY6/PLAUR domain containing 2 94302 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12877 LYPD3 LY6/PLAUR domain containing 3 504465 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12878 LYPD4 LY6/PLAUR domain containing 4 383799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12879 LYPD6B 328536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12880 LYPLA1 lysophospholipase I 332592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12881 LYPLA2 lysophospholipase II 317382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12882 LYPLAL1 lysophospholipase-like 1 355407 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12883 LYRM1 LYR motif containing 1 193167 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12884 LYRM2 LYR motif containing 2 141453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12885 LYRM4 LYR motif containing 4 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12886 LYRM5 LYR motif containing 5 142467 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12887 LYRM7 Lyrm7 homolog (mouse) 115089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12888 LYSMD1 LysM, putative peptidoglycan-binding, domain containing 1 352872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12889 LYSMD2 LysM, putative peptidoglycan-binding, domain containing 2 194181 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12890 LYZ lysozyme (renal amyloidosis) 234741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12891 LYZL1 lysozyme-like 1 298623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12892 LYZL2 lysozyme-like 2 306735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12893 LYZL6 lysozyme-like 6 234741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12894 LZTFL1 leucine zipper transcription factor-like 1 473031 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12895 M6PR mannose-6-phosphate receptor (cation dependent) 435006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12896 MAB21L1 mab-21-like 1 (C. elegans) 549588 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12897 MAD1L1 MAD1 mitotic arrest deficient-like 1 (yeast) 789906 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12898 MAD2L1 MAD2 mitotic arrest deficient-like 1 (yeast) 284427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12899 MAD2L1BP MAD2L1 binding protein 399009 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12900 MAEA macrophage erythroblast attacher 189111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12901 MAF v-maf musculoaponeurotic fibrosarcoma oncogene homolog (avian) 157170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12902 MAF1 MAF1 homolog (S. cerevisiae) 322959 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12903 MAFB v-maf musculoaponeurotic fibrosarcoma oncogene homolog B (avian) 357942 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12904 MAGEA3 melanoma antigen family A, 3 426387 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12905 MAGEA5 melanoma antigen family A, 5 192153 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12906 MAGEA6 melanoma antigen family A, 6 446667 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12907 MAGEA8 melanoma antigen family A, 8 487227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12908 MAGEB1 melanoma antigen family B, 1 531336 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12909 MAGEB16 melanoma antigen family B, 16 496353 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12910 MAGEB18 melanoma antigen family B, 18 525252 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12911 MAGEF1 melanoma antigen family F, 1 419289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12912 MAGEH1 melanoma antigen family H, 1 295581 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12913 MAGOH mago-nashi homolog, proliferation-associated (Drosophila) 233727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12914 MAGOHB mago-nashi homolog B (Drosophila) 236769 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12915 MAK male germ cell-associated kinase 975468 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12916 MAK16 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12917 MAL mal, T-cell differentiation protein 193167 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12918 MAL2 mal, T-cell differentiation protein 2 208377 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12919 MALL mal, T-cell differentiation protein-like 187083 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12920 MAN1A1 mannosidase, alpha, class 1A, member 1 825903 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12921 MAN1C1 mannosidase, alpha, class 1C, member 1 647439 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12922 MAN2C1 mannosidase, alpha, class 2C, member 1 1337973 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12923 MANBAL mannosidase, beta A, lysosomal-like 134862 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12924 MANEAL mannosidase, endo-alpha-like 396474 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12925 MANF 236769 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12926 MANSC1 MANSC domain containing 1 663156 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12927 MAOB monoamine oxidase B 797511 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12928 MAP1B microtubule-associated protein 1B 3674229 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12929 MAP1LC3A microtubule-associated protein 1 light chain 3 alpha 162747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12930 MAP1LC3B microtubule-associated protein 1 light chain 3 beta 177450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12931 MAP1LC3B2 193674 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12932 MAP1LC3C microtubule-associated protein 1 light chain 3 gamma 233220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12933 MAP2K6 mitogen-activated protein kinase kinase 6 533871 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12934 MAP3K14 mitogen-activated protein kinase kinase kinase 14 1047969 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12935 MAP3K2 mitogen-activated protein kinase kinase kinase 2 922740 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12936 MAP3K3 mitogen-activated protein kinase kinase kinase 3 1023126 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12937 MAP3K7 mitogen-activated protein kinase kinase kinase 7 907530 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12938 MAP4K2 mitogen-activated protein kinase kinase kinase kinase 2 751881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12939 MAP4K3 mitogen-activated protein kinase kinase kinase kinase 3 1379547 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12940 MAP4K5 mitogen-activated protein kinase kinase kinase kinase 5 1137201 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12941 MAP6 microtubule-associated protein 6 832494 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12942 MAP7D2 MAP7 domain containing 2 1141764 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12943 MAP7D3 MAP7 domain containing 3 1332903 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12944 MAP9 microtubule-associated protein 9 1011972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12945 MAPK13 mitogen-activated protein kinase 13 518154 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12946 MAPK15 mitogen-activated protein kinase 15 562263 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12947 MAPK1IP1L mitogen-activated protein kinase 1 interacting protein 1-like 380250 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12948 MAPK7 mitogen-activated protein kinase 7 895869 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12949 MAPK9 mitogen-activated protein kinase 9 730587 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12950 MAPKAPK2 mitogen-activated protein kinase-activated protein kinase 2 516126 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12951 MAPKAPK5 mitogen-activated protein kinase-activated protein kinase 5 729066 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12952 MAPKSP1 196209 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12953 MAPRE1 microtubule-associated protein, RP/EB family, member 1 421317 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12954 MARCH1 membrane-associated ring finger (C3HC4) 1 423345 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12955 MARCH11 membrane-associated ring finger (C3HC4) 11 346788 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12956 MARCH3 membrane-associated ring finger (C3HC4) 3 394446 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12957 MARCH6 membrane-associated ring finger (C3HC4) 6 1424163 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12958 MARCH8 membrane-associated ring finger (C3HC4) 8 456300 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12959 MARCH9 membrane-associated ring finger (C3HC4) 9 211419 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12960 MARCKSL1 MARCKS-like 1 256035 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12961 MARS methionyl-tRNA synthetase 1413009 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12962 MARS2 methionyl-tRNA synthetase 2, mitochondrial 692055 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12963 MARVELD2 MARVEL domain containing 2 862407 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12964 MAST3 microtubule associated serine/threonine kinase 3 1106274 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12965 MAT1A methionine adenosyltransferase I, alpha 577473 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12966 MAT2A methionine adenosyltransferase II, alpha 572403 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12967 MATN1 matrilin 1, cartilage matrix protein 456300 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12968 MATN3 matrilin 3 641862 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12969 MATR3 matrin 3 1318200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12970 MB myoglobin 241839 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12971 MBD2 methyl-CpG binding domain protein 2 468975 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12972 MBIP MAP3K12 binding inhibitory protein 1 542997 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12973 MBLAC2 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12974 MBNL1 muscleblind-like (Drosophila) 662649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12975 MBNL3 muscleblind-like 3 (Drosophila) 587106 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12976 MBOAT1 membrane bound O-acyltransferase domain containing 1 728559 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12977 MBOAT7 membrane bound O-acyltransferase domain containing 7 349830 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12978 MBP myelin basic protein 487734 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12979 MC1R melanocortin 1 receptor (alpha melanocyte stimulating hormone receptor) 279357 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12980 MC5R melanocortin 5 receptor 497874 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12981 MCART1 mitochondrial carrier triple repeat 1 455286 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12982 MCART2 mitochondrial carrier triple repeat 2 455286 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12983 MCCC2 methylcrotonoyl-Coenzyme A carboxylase 2 (beta) 261105 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12984 MCCD1 mitochondrial coiled-coil domain 1 91767 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12985 MCEE methylmalonyl CoA epimerase 252993 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12986 MCF2 MCF.2 cell line derived transforming sequence 1596543 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -12987 MCF2L MCF.2 cell line derived transforming sequence-like 889785 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12988 MCFD2 multiple coagulation factor deficiency 2 229671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12989 MCHR1 melanin-concentrating hormone receptor 1 647439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12990 MCL1 myeloid cell leukemia sequence 1 (BCL2-related) 298623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12991 MCM3AP minichromosome maintenance complex component 3 associated protein 2794584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12992 MCM5 minichromosome maintenance complex component 5 1078389 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12993 MCM8 minichromosome maintenance complex component 8 1315665 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12994 MCM9 minichromosome maintenance complex component 9 608400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12995 MCOLN2 mucolipin 2 890799 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12996 MCTP1 multiple C2 domains, transmembrane 1 1231503 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -12997 MDFI MyoD family inhibitor 343239 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12998 MDFIC MyoD family inhibitor domain containing 334113 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -12999 MDH1 malate dehydrogenase 1, NAD (soluble) 527787 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13000 MDH1B malate dehydrogenase 1B, NAD (soluble) 813735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13001 MDM4 Mdm4 p53 binding protein homolog (mouse) 767091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13002 ME1 malic enzyme 1, NADP(+)-dependent, cytosolic 858351 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13003 MEA1 male-enhanced antigen 1 274794 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13004 MECR mitochondrial trans-2-enoyl-CoA reductase 443625 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13005 MED1 mediator complex subunit 1 2440698 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13006 MED10 mediator complex subunit 10 197223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13007 MED11 mediator complex subunit 11 185562 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13008 MED15 mediator complex subunit 15 805116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13009 MED17 mediator complex subunit 17 887250 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13010 MED18 mediator complex subunit 18 282906 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13011 MED19 mediator complex subunit 19 192660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13012 MED20 mediator complex subunit 20 332085 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13013 MED21 mediator complex subunit 21 228657 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13014 MED22 mediator complex subunit 22 298116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13015 MED26 mediator complex subunit 26 816270 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13016 MED28 mediator complex subunit 28 280371 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13017 MED29 mediator complex subunit 29 345267 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13018 MED30 mediator complex subunit 30 212433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13019 MED31 mediator complex subunit 31 208884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13020 MED4 mediator complex subunit 4 424866 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13021 MED6 mediator complex subunit 6 384813 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13022 MED7 mediator complex subunit 7 357942 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13023 MED9 mediator complex subunit 9 112047 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13024 MEF2B myocyte enhancer factor 2B 345774 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13025 MEF2D myocyte enhancer factor 2D 697125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13026 MEGF10 multiple EGF-like-domains 10 1776021 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13027 MEGF9 multiple EGF-like-domains 9 695097 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13028 MEIG1 meiosis expressed gene 1 homolog (mouse) 139425 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13029 MEIS1 Meis homeobox 1 600288 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13030 MEIS3 Meis homeobox 3 423852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13031 MEMO1 mediator of cell motility 1 438555 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13032 MEOX2 mesenchyme homeobox 2 283920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13033 MEP1B meprin A, beta 1084473 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13034 MEPCE methylphosphate capping enzyme 753909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13035 MEPE matrix, extracellular phosphoglycoprotein with ASARM motif (bone) 806130 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13036 METAP1 methionyl aminopeptidase 1 430443 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13037 METT10D methyltransferase 10 domain containing 874575 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13038 METTL1 methyltransferase like 1 433485 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13039 METTL11A 346788 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13040 METTL12 370617 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13041 METTL3 methyltransferase like 3 906009 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13042 METTL4 methyltransferase like 4 735657 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13043 METTL5 methyltransferase like 5 333606 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13044 METTL6 methyltransferase like 6 443625 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13045 METTL7A methyltransferase like 7A 376701 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13046 MEX3A mex-3 homolog A (C. elegans) 550602 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13047 MEX3B mex-3 homolog B (C. elegans) 505479 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13048 MFAP2 microfibrillar-associated protein 2 220545 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13049 MFAP3 microfibrillar-associated protein 3 556179 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13050 MFAP3L microfibrillar-associated protein 3-like 627666 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13051 MFAP4 microfibrillar-associated protein 4 321438 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13052 MFAP5 microfibrillar associated protein 5 282906 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13053 MFHAS1 malignant fibrous histiocytoma amplified sequence 1 829959 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13054 MFNG MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase 373152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13055 MFRP membrane frizzled-related protein 536913 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13056 MFSD1 major facilitator superfamily domain containing 1 656565 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13057 MFSD2A 806637 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13058 MFSD2B 644397 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13059 MFSD5 major facilitator superfamily domain containing 5 697125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13060 MFSD6 1216800 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13061 MGAT1 mannosyl (alpha-1,3-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase 428922 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13062 MGAT2 mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase 645918 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13063 MGAT4A mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A 845676 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13064 MGAT4B mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme B 533364 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13065 MGC29506 92781 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13066 MGEA5 meningioma expressed antigen 5 (hyaluronidase) 1324284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13067 MGLL monoglyceride lipase 446160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13068 MGP matrix Gla protein 166296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13069 MGST1 microsomal glutathione S-transferase 1 243360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13070 MGST2 microsomal glutathione S-transferase 2 208884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13071 MGST3 microsomal glutathione S-transferase 3 242853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13072 MIA melanoma inhibitory activity 208884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13073 MICAL1 microtubule associated monoxygenase, calponin and LIM domain containing 1 1558518 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13074 MICALL1 MICAL-like 1 771147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13075 MICB MHC class I polypeptide-related sequence B 583050 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13076 MID1 midline 1 (Opitz/BBB syndrome) 1034280 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13077 MID1IP1 MID1 interacting protein 1 (gastrulation specific G12 homolog (zebrafish)) 272259 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13078 MIER2 mesoderm induction early response 1, family member 2 379236 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13079 MIER3 mesoderm induction early response 1, family member 3 856323 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13080 MIOS 1352676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13081 MIOX myo-inositol oxygenase 151593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13082 MIP major intrinsic protein of lens fiber 409656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13083 MIPEP mitochondrial intermediate peptidase 1024647 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13084 MIPOL1 mirror-image polydactyly 1 696111 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13085 MIS12 MIS12, MIND kinetochore complex component, homolog (yeast) 315354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13086 MITD1 MIT, microtubule interacting and transport, domain containing 1 394446 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13087 MITF microphthalmia-associated transcription factor 879138 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13088 MKI67IP MKI67 (FHA domain) interacting nucleolar phosphoprotein 461370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13089 MKKS McKusick-Kaufman syndrome 876603 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13090 MKLN1 muskelin 1, intracellular mediator containing kelch motifs 1092078 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13091 MKNK1 MAP kinase interacting serine/threonine kinase 1 625131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13092 MKNK2 MAP kinase interacting serine/threonine kinase 2 246402 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13093 MKX mohawk homeobox 451737 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13094 MLANA melan-A 189111 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13095 MLEC 334620 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13096 MLF1 myeloid leukemia factor 1 397488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13097 MLF1IP MLF1 interacting protein 637806 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13098 MLF2 myeloid leukemia factor 2 365040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13099 MLH1 mutL homolog 1, colon cancer, nonpolyposis type 2 (E. coli) 1158495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13100 MLKL mixed lineage kinase domain-like 753909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13101 MLLT1 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 1 403572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13102 MLLT11 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 11 140439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13103 MLLT3 myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 3 879645 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13104 MLN motilin 130299 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13105 MLNR motilin receptor 207870 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13106 MLST8 446160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13107 MLX MAX-like protein X 309270 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13108 MMAB methylmalonic aciduria (cobalamin deficiency) cblB type 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13109 MMADHC 465933 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13110 MMD2 monocyte to macrophage differentiation-associated 2 299130 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13111 MME membrane metallo-endopeptidase 1186887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13112 MMGT1 166803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13113 MMP1 matrix metallopeptidase 1 (interstitial collagenase) 735150 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13114 MMP2 matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase) 952146 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13115 MMP20 matrix metallopeptidase 20 (enamelysin) 756444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13116 MMP21 matrix metallopeptidase 21 607386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13117 MMP24 matrix metallopeptidase 24 (membrane-inserted) 719433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13118 MMP25 matrix metallopeptidase 25 486720 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13119 MMP28 matrix metallopeptidase 28 321438 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13120 MMP7 matrix metallopeptidase 7 (matrilysin, uterine) 419796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13121 MNS1 meiosis-specific nuclear structural 1 774696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13122 MNT MAX binding protein 391911 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13123 MOB2 201786 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13124 MOBKL1B MOB1, Mps One Binder kinase activator-like 1B (yeast) 291525 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13125 MOBKL2A MOB1, Mps One Binder kinase activator-like 2A (yeast) 279357 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13126 MOBKL2B MOB1, Mps One Binder kinase activator-like 2B (yeast) 336141 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13127 MOBKL2C MOB1, Mps One Binder kinase activator-like 2C (yeast) 417261 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13128 MOBKL3 MOB1, Mps One Binder kinase activator-like 3 (yeast) 327522 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13129 MOBP myelin-associated oligodendrocyte basic protein 128778 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13130 MOCS1 molybdenum cofactor synthesis 1 387855 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13131 MOCS2 molybdenum cofactor synthesis 2 385320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13132 MOCS3 molybdenum cofactor synthesis 3 702702 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13133 MOG myelin oligodendrocyte glycoprotein 436527 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13134 MOGAT1 monoacylglycerol O-acyltransferase 1 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13135 MOGAT2 monoacylglycerol O-acyltransferase 2 521703 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13136 MORC3 MORC family CW-type zinc finger 3 1442415 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13137 MORF4 mortality factor 4 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13138 MORF4L1 mortality factor 4 like 1 556179 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13139 MORF4L2 mortality factor 4 like 2 441597 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13140 MORN4 231699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13141 MORN5 256542 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13142 MOSC1 MOCO sulphurase C-terminal domain containing 1 386841 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13143 MOSPD1 motile sperm domain containing 1 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13144 MOSPD2 motile sperm domain containing 2 819819 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13145 MOSPD3 motile sperm domain containing 3 369096 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13146 MOV10L1 Mov10l1, Moloney leukemia virus 10-like 1, homolog (mouse) 1655862 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13147 MOXD1 monooxygenase, DBH-like 1 822354 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13148 MPDU1 mannose-P-dolichol utilization defect 1 391404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13149 MPEG1 1092585 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13150 MPG N-methylpurine-DNA glycosylase 151593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13151 MPHOSPH6 M-phase phosphoprotein 6 227136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13152 MPI mannose phosphate isomerase 657072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13153 MPL myeloproliferative leukemia virus oncogene 908544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13154 MPND MPN domain containing 352872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13155 MPP1 membrane protein, palmitoylated 1, 55kDa 720447 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13156 MPP5 membrane protein, palmitoylated 5 (MAGUK p55 subfamily member 5) 1054560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13157 MPP6 membrane protein, palmitoylated 6 (MAGUK p55 subfamily member 6) 845169 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13158 MPPE1 metallophosphoesterase 1 606879 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13159 MPPED1 metallophosphoesterase domain containing 1 257049 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13160 MPV17 MpV17 mitochondrial inner membrane protein 283413 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13161 MPV17L2 187083 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13162 MPZ myelin protein zero (Charcot-Marie-Tooth neuropathy 1B) 354900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13163 MPZL2 myelin protein zero-like 2 338676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13164 MPZL3 myelin protein zero-like 3 371124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13165 MR1 major histocompatibility complex, class I-related 532350 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13166 MRAP2 319410 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13167 MRAS muscle RAS oncogene homolog 328029 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13168 MRC1 mannose receptor, C type 1 1372956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13169 MRC1L1 mannose receptor, C type 1-like 1 1372956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13170 MRE11A MRE11 meiotic recombination 11 homolog A (S. cerevisiae) 1116921 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13171 MRGPRE MAS-related GPR, member E 205335 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13172 MRGPRX1 MAS-related GPR, member X1 493311 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13173 MRGPRX2 MAS-related GPR, member X2 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13174 MRGPRX4 MAS-related GPR, member X4 493311 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13175 MRI1 380250 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13176 MRM1 mitochondrial rRNA methyltransferase 1 homolog (S. cerevisiae) 545025 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13177 MRO maestro 390897 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13178 MRP63 mitochondrial ribosomal protein 63 130806 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13179 MRPL1 mitochondrial ribosomal protein L1 514098 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13180 MRPL10 mitochondrial ribosomal protein L10 380250 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13181 MRPL11 mitochondrial ribosomal protein L11 340704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13182 MRPL12 mitochondrial ribosomal protein L12 212940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13183 MRPL14 mitochondrial ribosomal protein L14 226122 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13184 MRPL16 mitochondrial ribosomal protein L16 391404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13185 MRPL17 mitochondrial ribosomal protein L17 273780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13186 MRPL19 mitochondrial ribosomal protein L19 341718 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13187 MRPL21 mitochondrial ribosomal protein L21 319917 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13188 MRPL22 mitochondrial ribosomal protein L22 329043 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13189 MRPL24 mitochondrial ribosomal protein L24 340197 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13190 MRPL27 mitochondrial ribosomal protein L27 234741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13191 MRPL28 mitochondrial ribosomal protein L28 159705 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13192 MRPL3 mitochondrial ribosomal protein L3 502437 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13193 MRPL33 mitochondrial ribosomal protein L33 142467 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13194 MRPL35 mitochondrial ribosomal protein L35 298116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13195 MRPL36 mitochondrial ribosomal protein L36 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13196 MRPL37 mitochondrial ribosomal protein L37 659100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13197 MRPL39 mitochondrial ribosomal protein L39 569868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13198 MRPL4 mitochondrial ribosomal protein L4 510549 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13199 MRPL42 mitochondrial ribosomal protein L42 227643 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13200 MRPL44 mitochondrial ribosomal protein L44 466440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13201 MRPL47 mitochondrial ribosomal protein L47 395967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13202 MRPL50 mitochondrial ribosomal protein L50 245895 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13203 MRPL54 mitochondrial ribosomal protein L54 133848 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13204 MRPL55 mitochondrial ribosomal protein L55 82641 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13205 MRPL9 mitochondrial ribosomal protein L9 342225 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13206 MRPS10 mitochondrial ribosomal protein S10 321438 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13207 MRPS11 mitochondrial ribosomal protein S11 257556 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13208 MRPS12 mitochondrial ribosomal protein S12 214968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13209 MRPS16 mitochondrial ribosomal protein S16 207363 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13210 MRPS17 mitochondrial ribosomal protein S17 203307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13211 MRPS18A mitochondrial ribosomal protein S18A 252993 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13212 MRPS18C mitochondrial ribosomal protein S18C 229671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13213 MRPS2 mitochondrial ribosomal protein S2 366561 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13214 MRPS21 mitochondrial ribosomal protein S21 137904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13215 MRPS23 mitochondrial ribosomal protein S23 276315 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13216 MRPS24 mitochondrial ribosomal protein S24 204321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13217 MRPS25 mitochondrial ribosomal protein S25 202800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13218 MRPS27 mitochondrial ribosomal protein S27 653523 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13219 MRPS28 mitochondrial ribosomal protein S28 292032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13220 MRPS33 mitochondrial ribosomal protein S33 166803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13221 MRPS35 mitochondrial ribosomal protein S35 474045 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13222 MRPS36 mitochondrial ribosomal protein S36 166296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13223 MRPS6 mitochondrial ribosomal protein S6 172887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13224 MRRF mitochondrial ribosome recycling factor 412191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13225 MRTO4 mRNA turnover 4 homolog (S. cerevisiae) 353886 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13226 MS4A1 membrane-spanning 4-domains, subfamily A, member 1 465426 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13227 MS4A10 membrane-spanning 4-domains, subfamily A, member 10 421824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13228 MS4A12 membrane-spanning 4-domains, subfamily A, member 12 419796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13229 MS4A13 membrane-spanning 4-domains, subfamily A, member 13 242853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13230 MS4A15 membrane-spanning 4-domains, subfamily A, member 15 314340 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13231 MS4A2 membrane-spanning 4-domains, subfamily A, member 2 (Fc fragment of IgE, high affinity I, receptor for; beta polypeptide) 412698 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13232 MS4A3 membrane-spanning 4-domains, subfamily A, member 3 (hematopoietic cell-specific) 339183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13233 MS4A4A membrane-spanning 4-domains, subfamily A, member 4 379236 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13234 MS4A5 membrane-spanning 4-domains, subfamily A, member 5 315861 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13235 MS4A6A membrane-spanning 4-domains, subfamily A, member 6A 404586 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13236 MS4A6E membrane-spanning 4-domains, subfamily A, member 6E 231192 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13237 MS4A7 membrane-spanning 4-domains, subfamily A, member 7 378729 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13238 MS4A8B membrane-spanning 4-domains, subfamily A, member 8B 393939 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13239 MSC musculin (activated B-cell factor-1) 207363 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13240 MSH5 mutS homolog 5 (E. coli) 1289301 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13241 MSL1 472017 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13242 MSMB microseminoprotein, beta- 183027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13243 MSRA methionine sulfoxide reductase A 278343 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13244 MSRB2 methionine sulfoxide reductase B2 226629 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13245 MST1R macrophage stimulating 1 receptor (c-met-related tyrosine kinase) 2109120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13246 MST4 633243 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13247 MSTO1 misato homolog 1 (Drosophila) 711828 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13248 MSX1 msh homeobox 1 146016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13249 MT1B metallothionein 1B 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13250 MT1E metallothionein 1E 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13251 MT1F metallothionein 1F 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13252 MT1G metallothionein 1G 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13253 MT1H metallothionein 1H 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13254 MT1M metallothionein 1M 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13255 MT1X metallothionein 1X 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13256 MT2A metallothionein 2A 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13257 MT3 metallothionein 3 53235 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13258 MT4 metallothionein 4 101907 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13259 MTA1 metastasis associated 1 486720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13260 MTA2 metastasis associated 1 family, member 2 1037829 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13261 MTCH2 mitochondrial carrier homolog 2 (C. elegans) 442611 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13262 MTCP1 mature T-cell proliferation 1 170352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13263 MTCP1NB 109005 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13264 MTERFD2 MTERF domain containing 2 576459 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13265 MTF1 metal-regulatory transcription factor 1 1167114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13266 MTFMT mitochondrial methionyl-tRNA formyltransferase 503451 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13267 MTG1 mitochondrial GTPase 1 homolog (S. cerevisiae) 388869 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13268 MTHFD2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase 510042 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13269 MTHFD2L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2-like 471003 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13270 MTHFR 5,10-methylenetetrahydrofolate reductase (NADPH) 1014507 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13271 MTHFSD methenyltetrahydrofolate synthetase domain containing 377208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13272 MTIF3 mitochondrial translational initiation factor 3 430443 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13273 MTL5 metallothionein-like 5, testis-specific (tesmin) 553644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13274 MTMR1 myotubularin related protein 1 967356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13275 MTMR10 myotubularin related protein 10 1048476 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13276 MTMR2 myotubularin related protein 2 967356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13277 MTNR1A melatonin receptor 1A 441090 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13278 MTNR1B melatonin receptor 1B 494325 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13279 MTP18 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13280 MTPN myotrophin 189111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13281 MTRR 5-methyltetrahydrofolate-homocysteine methyltransferase reductase 1134666 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13282 MTUS1 mitochondrial tumor suppressor 1 2113176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13283 MTX1 metaxin 1 300651 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13284 MTX3 metaxin 3 410163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13285 MUC13 mucin 13, cell surface associated 801060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13286 MUC20 mucin 20, cell surface associated 639834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13287 MUCL1 mucin-like 1 146523 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13288 MUDENG 763035 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13289 MUL1 mitochondrial ubiquitin ligase activator of NFKB 1 482157 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13290 MUM1 melanoma associated antigen (mutated) 1 682929 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13291 MURC 559221 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13292 MUSTN1 musculoskeletal, embryonic nuclear protein 1 132327 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13293 MUT methylmalonyl Coenzyme A mutase 1166607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13294 MVD mevalonate (diphospho) decarboxylase 177957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13295 MVK mevalonate kinase 582543 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13296 MXD3 MAX dimerization protein 3 138411 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13297 MXI1 MAX interactor 1 402051 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13298 MXRA7 matrix-remodelling associated 7 172380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13299 MYADM myeloid-associated differentiation marker 493311 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13300 MYBPH myosin binding protein H 704223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13301 MYCBP c-myc binding protein 119652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13302 MYD88 myeloid differentiation primary response gene (88) 406107 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13303 MYEOV myeloma overexpressed gene (in a subset of t(11;14) positive multiple myelomas) 428415 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13304 MYF5 myogenic factor 5 395460 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13305 MYL10 266175 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13306 MYL2 myosin, light chain 2, regulatory, cardiac, slow 268203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13307 MYL3 myosin, light chain 3, alkali; ventricular, skeletal, slow 310284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13308 MYL4 myosin, light chain 4, alkali; atrial, embryonic 313326 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13309 MYL5 myosin, light chain 5, regulatory 133848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13310 MYL6B myosin, light chain 6B, alkali, smooth muscle and non-muscle 330057 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13311 MYL9 myosin, light chain 9, regulatory 269217 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13312 MYLIP myosin regulatory light chain interacting protein 646425 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13313 MYLK2 myosin light chain kinase 2 893841 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13314 MYLK4 myosin light chain kinase family, member 4 573417 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13315 MYLPF 270231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13316 MYO19 myosin XIX 1083966 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13317 MYOC myocilin, trabecular meshwork inducible glucocorticoid response 774189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13318 MYOCD myocardin 1460667 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13319 MYOD1 myogenic differentiation 1 181506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13320 MYOG myogenin (myogenic factor 4) 344253 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13321 MYOT myotilin 777231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13322 MYOZ2 myozenin 2 413205 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13323 MYOZ3 myozenin 3 173394 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13324 MYSM1 myb-like, SWIRM and MPN domains 1 1276119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13325 MYST2 MYST histone acetyltransferase 2 951639 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13326 MYT1 myelin transcription factor 1 1405404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13327 MZF1 myeloid zinc finger 1 399516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13328 N4BP2L1 NEDD4 binding protein 2-like 1 325494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13329 N6AMT1 N-6 adenine-specific DNA methyltransferase 1 (putative) 333606 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13330 NAA11 351858 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13331 NAA15 1329861 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13332 NAA16 1343550 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13333 NAA25 1497171 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13334 NAA30 330564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13335 NAA35 1148862 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13336 NAA38 137904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13337 NAA40 377715 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13338 NAA50 262626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13339 NAAA 385827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13340 NAB2 NGFI-A binding protein 2 (EGR1 binding protein 2) 605358 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13341 NACC1 546039 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13342 NADSYN1 NAD synthetase 1 877617 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13343 NAE1 NEDD8 activating enzyme E1 subunit 1 845169 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13344 NAF1 nuclear assembly factor 1 homolog (S. cerevisiae) 499902 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13345 NAGA N-acetylgalactosaminidase, alpha- 594711 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13346 NAGPA N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase 439062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13347 NAIF1 nuclear apoptosis inducing factor 1 490776 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13348 NAMPT nicotinamide phosphoribosyltransferase 739713 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13349 NANOG Nanog homeobox 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13350 NANOS2 nanos homolog 2 (Drosophila) 212940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13351 NANOS3 nanos homolog 3 (Drosophila) 271245 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13352 NAP1L1 nucleosome assembly protein 1-like 1 624624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13353 NAP1L3 nucleosome assembly protein 1-like 3 729066 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13354 NAP1L4 nucleosome assembly protein 1-like 4 600288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13355 NAP1L5 nucleosome assembly protein 1-like 5 95316 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13356 NAPB N-ethylmaleimide-sensitive factor attachment protein, beta 425373 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13357 NAPEPLD N-acyl phosphatidylethanolamine phospholipase D 607386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13358 NAPG N-ethylmaleimide-sensitive factor attachment protein, gamma 500409 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13359 NAPSA napsin A aspartic peptidase 541476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13360 NARF nuclear prelamin A recognition factor 701688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13361 NASP nuclear autoantigenic sperm protein (histone-binding) 1198548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13362 NAT1 N-acetyltransferase 1 (arylamine N-acetyltransferase) 447681 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13363 NAT2 N-acetyltransferase 2 (arylamine N-acetyltransferase) 444639 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13364 NAT6 N-acetyltransferase 6 407121 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13365 NAT8B N-acetyltransferase 8B (gene/pseudogene) 348816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13366 NBL1 neuroblastoma, suppression of tumorigenicity 1 85683 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13367 NBN nibrin 1160016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13368 NBPF15 neuroblastoma breakpoint family, member 15 736671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13369 NBPF16 neuroblastoma breakpoint family, member 16 1090557 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13370 NCALD neurocalcin delta 301158 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13371 NCAPG non-SMC condensin I complex, subunit G 1529619 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13372 NCAPG2 non-SMC condensin II complex, subunit G2 1794780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13373 NCAPH non-SMC condensin I complex, subunit H 1104753 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13374 NCAPH2 non-SMC condensin II complex, subunit H2 448188 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13375 NCBP2 nuclear cap binding protein subunit 2, 20kDa 205335 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13376 NCF1 neutrophil cytosolic factor 1, (chronic granulomatous disease, autosomal 1) 259077 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13377 NCF4 neutrophil cytosolic factor 4, 40kDa 600795 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13378 NCK1 NCK adaptor protein 1 581022 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13379 NCK2 NCK adaptor protein 2 429936 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13380 NCKAP5L 1677663 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13381 NCKIPSD NCK interacting protein with SH3 domain 939978 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13382 NCOA4 nuclear receptor coactivator 4 960765 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13383 NCR1 natural cytotoxicity triggering receptor 1 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13384 NCR3 natural cytotoxicity triggering receptor 3 336648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13385 NCS1 270231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13386 NDE1 nudE nuclear distribution gene E homolog 1 (A. nidulans) 515112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13387 NDEL1 nudE nuclear distribution gene E homolog (A. nidulans)-like 1 562263 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13388 NDNL2 necdin-like 2 365040 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13389 NDP Norrie disease (pseudoglioma) 136383 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13390 NDRG1 N-myc downstream regulated gene 1 506493 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13391 NDRG4 NDRG family member 4 427908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13392 NDST1 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 1 1364844 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13393 NDST2 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 2 1354197 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13394 NDST4 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 4 1354197 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13395 NDUFA12 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 12 230178 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13396 NDUFA4 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa 132834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13397 NDUFA4L2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4-like 2 94809 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13398 NDUFA5 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 5, 13kDa 188097 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13399 NDUFA6 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 6, 14kDa 241839 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13400 NDUFA7 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 7, 14.5kDa 153621 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13401 NDUFA8 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 8, 19kDa 271245 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13402 NDUFA9 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 9, 39kDa 588627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13403 NDUFAB1 NADH dehydrogenase (ubiquinone) 1, alpha/beta subcomplex, 1, 8kDa 180492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13404 NDUFAF2 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, assembly factor 2 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13405 NDUFAF3 199758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13406 NDUFAF4 273780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13407 NDUFB1 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 1, 7kDa 166803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13408 NDUFB10 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 10, 22kDa 191139 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13409 NDUFB11 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 11, 17.3kDa 183534 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13410 NDUFB2 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 2, 8kDa 115596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13411 NDUFB3 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 3, 12kDa 154635 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13412 NDUFB5 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 5, 16kDa 300651 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13413 NDUFB6 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 6, 17kDa 203814 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13414 NDUFB8 NADH dehydrogenase (ubiquinone) 1 beta subcomplex, 8, 19kDa 288483 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13415 NDUFC1 NADH dehydrogenase (ubiquinone) 1, subcomplex unknown, 1, 6kDa 70473 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13416 NDUFC2 NADH dehydrogenase (ubiquinone) 1, subcomplex unknown, 2, 14.5kDa 102414 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13417 NDUFS1 NADH dehydrogenase (ubiquinone) Fe-S protein 1, 75kDa (NADH-coenzyme Q reductase) 1143792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13418 NDUFS4 NADH dehydrogenase (ubiquinone) Fe-S protein 4, 18kDa (NADH-coenzyme Q reductase) 277836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13419 NDUFS5 NADH dehydrogenase (ubiquinone) Fe-S protein 5, 15kDa (NADH-coenzyme Q reductase) 166803 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13420 NDUFS6 NADH dehydrogenase (ubiquinone) Fe-S protein 6, 13kDa (NADH-coenzyme Q reductase) 129285 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13421 NDUFS8 NADH dehydrogenase (ubiquinone) Fe-S protein 8, 23kDa (NADH-coenzyme Q reductase) 183027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13422 NDUFV3 NADH dehydrogenase (ubiquinone) flavoprotein 3, 10kDa 654030 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13423 NECAB2 N-terminal EF-hand calcium binding protein 2 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13424 NECAB3 N-terminal EF-hand calcium binding protein 3 306735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13425 NECAP1 NECAP endocytosis associated 1 436020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13426 NECAP2 NECAP endocytosis associated 2 443625 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13427 NEDD1 neural precursor cell expressed, developmentally down-regulated 1 1037829 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13428 NEDD8 neural precursor cell expressed, developmentally down-regulated 8 132834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13429 NEFH neurofilament, heavy polypeptide 200kDa 1111344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13430 NEFL neurofilament, light polypeptide 68kDa 557193 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13431 NEGR1 neuronal growth regulator 1 554151 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13432 NEIL2 nei like 2 (E. coli) 512577 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13433 NEIL3 nei endonuclease VIII-like 3 (E. coli) 860886 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13434 NEK4 NIMA (never in mitosis gene a)-related kinase 4 1191957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13435 NEK7 NIMA (never in mitosis gene a)-related kinase 7 479115 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13436 NENF neuron derived neurotrophic factor 179478 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13437 NETO2 neuropilin (NRP) and tolloid (TLL)-like 2 799032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13438 NEU1 sialidase 1 (lysosomal sialidase) 644904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13439 NEU3 sialidase 3 (membrane sialidase) 659100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13440 NEURL neuralized homolog (Drosophila) 489762 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13441 NEURL2 neuralized homolog 2 (Drosophila) 205842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13442 NEUROD2 neurogenic differentiation 2 354393 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13443 NEUROD4 neurogenic differentiation 4 507000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13444 NEUROG2 neurogenin 2 148551 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13445 NEXN nexilin (F actin binding protein) 1052532 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13446 NFAM1 NFAT activating protein with ITAM motif 1 314847 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13447 NFATC1 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 1 571389 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13448 NFATC2 nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2 1378026 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13449 NFATC2IP nuclear factor of activated T-cells, cytoplasmic, calcineurin-dependent 2 interacting protein 456807 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13450 NFE2L2 nuclear factor (erythroid-derived 2)-like 2 907023 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13451 NFIA nuclear factor I/A 761007 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13452 NFIB nuclear factor I/B 658593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13453 NFIC nuclear factor I/C (CCAAT-binding transcription factor) 347802 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13454 NFIL3 nuclear factor, interleukin 3 regulated 706251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13455 NFIX nuclear factor I/X (CCAAT-binding transcription factor) 670761 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13456 NFKBIA nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, alpha 378729 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13457 NFKBIB nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, beta 426894 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13458 NFKBID nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, delta 486213 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13459 NFKBIE nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, epsilon 375687 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13460 NFKBIL1 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor-like 1 309777 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13461 NFKBIL2 nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor-like 2 845676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13462 NFRKB nuclear factor related to kappaB binding protein 2066025 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13463 NFS1 NFS1 nitrogen fixation 1 homolog (S. cerevisiae) 671775 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13464 NFU1 NFU1 iron-sulfur cluster scaffold homolog (S. cerevisiae) 370617 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13465 NFX1 nuclear transcription factor, X-box binding 1 1771965 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13466 NFXL1 nuclear transcription factor, X-box binding-like 1 1310595 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13467 NFYA nuclear transcription factor Y, alpha 547560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13468 NFYC nuclear transcription factor Y, gamma 529308 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13469 NGB neuroglobin 133341 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13470 NGDN neuroguidin, EIF4E binding protein 507000 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13471 NGF nerve growth factor (beta polypeptide) 370110 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13472 NGFRAP1 nerve growth factor receptor (TNFRSF16) associated protein 1 172380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13473 NGRN neugrin, neurite outgrowth associated 342225 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13474 NHEDC1 Na+/H+ exchanger domain containing 1 857844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13475 NHEDC2 Na+/H+ exchanger domain containing 2 840606 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13476 NHEJ1 nonhomologous end-joining factor 1 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13477 NHLRC2 NHL repeat containing 2 1035801 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13478 NHLRC3 NHL repeat containing 3 543504 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13479 NHP2L1 NHP2 non-histone chromosome protein 2-like 1 (S. cerevisiae) 205842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13480 NICN1 nicolin 1 337662 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13481 NINJ1 ninjurin 1 198744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13482 NINJ2 ninjurin 2 293553 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13483 NIP7 nuclear import 7 homolog (S. cerevisiae) 285441 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13484 NIPA1 non imprinted in Prader-Willi/Angelman syndrome 1 397995 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13485 NIPA2 non imprinted in Prader-Willi/Angelman syndrome 2 559221 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13486 NIPAL1 611949 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13487 NIPAL2 515112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13488 NIPAL3 620568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13489 NIPAL4 607386 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -13490 NIPSNAP1 nipsnap homolog 1 (C. elegans) 367068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13491 NIPSNAP3A nipsnap homolog 3A (C. elegans) 356928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13492 NIPSNAP3B nipsnap homolog 3B (C. elegans) 356928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13493 NISCH nischarin 2220153 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13494 NIT1 nitrilase 1 522717 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13495 NIT2 nitrilase family, member 2 436020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13496 NKAIN1 Na+/K+ transporting ATPase interacting 1 138411 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13497 NKAIN3 Na+/K+ transporting ATPase interacting 3 283920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13498 NKAP NFKB activating protein 644904 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13499 NKG7 natural killer cell group 7 sequence 260598 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13500 NKIRAS1 NFKB inhibitor interacting Ras-like 1 299637 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13501 NKIRAS2 NFKB inhibitor interacting Ras-like 2 298116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13502 NKRF NFKB repressing factor 1063179 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13503 NKX2-2 NK2 homeobox 2 353886 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13504 NKX2-3 NK2 transcription factor related, locus 3 (Drosophila) 234741 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13505 NKX6-1 NK6 homeobox 1 207870 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13506 NLE1 notchless homolog 1 (Drosophila) 670761 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13507 NLGN2 neuroligin 2 721968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13508 NLN neurolysin (metallopeptidase M3 family) 1075854 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13509 NLRP11 NLR family, pyrin domain containing 11 1590966 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13510 NLRP14 NLR family, pyrin domain containing 14 1686282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13511 NLRP3 NLR family, pyrin domain containing 3 1595529 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13512 NLRP6 NLR family, pyrin domain containing 6 601809 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13513 NLRP9 NLR family, pyrin domain containing 9 1249755 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13514 NLRX1 NLR family member X1 1585896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13515 NMB neuromedin B 165789 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13516 NMBR neuromedin B receptor 600795 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13517 NME1 non-metastatic cells 1, protein (NM23A) expressed in 280878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13518 NME1-NME2 NME1-NME2 421824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13519 NME2 non-metastatic cells 2, protein (NM23B) expressed in 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13520 NME5 non-metastatic cells 5, protein expressed in (nucleoside-diphosphate kinase) 334113 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13521 NMI N-myc (and STAT) interactor 482664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13522 NMNAT3 nicotinamide nucleotide adenylyltransferase 3 334113 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13523 NMRAL1 NmrA-like family domain containing 1 339690 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13524 NMS neuromedin S 254514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13525 NMU neuromedin U 225615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13526 NNAT neuronatin 86697 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13527 NNMT nicotinamide N-methyltransferase 409149 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13528 NOB1 NIN1/RPN12 binding protein 1 homolog (S. cerevisiae) 601809 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13529 NOBOX NOBOX oogenesis homeobox 460863 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13530 NOC2L nucleolar complex associated 2 homolog (S. cerevisiae) 763542 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13531 NOD2 nucleotide-binding oligomerization domain containing 2 1467765 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13532 NOG noggin 234234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13533 NOL4 nucleolar protein 4 994227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13534 NOL7 nucleolar protein 7, 27kDa 306735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13535 NOL8 nucleolar protein 8 1703520 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13536 NOL9 nucleolar protein 9 890799 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13537 NOLC1 nucleolar and coiled-body phosphoprotein 1 1091064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13538 NONO non-POU domain containing, octamer-binding 714363 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13539 NOP10 102921 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13540 NOSIP nitric oxide synthase interacting protein 405600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13541 NOTCH2NL Notch homolog 2 (Drosophila) N-terminal like 368589 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13542 NOV nephroblastoma overexpressed gene 519168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13543 NOVA1 neuro-oncological ventral antigen 1 727545 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13544 NOVA2 neuro-oncological ventral antigen 2 428415 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13545 NOX4 NADPH oxidase 4 896883 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13546 NOX5 NADPH oxidase, EF-hand calcium binding domain 5 1030731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13547 NPAS1 neuronal PAS domain protein 1 427908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13548 NPBWR1 neuropeptides B/W receptor 1 260091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13549 NPC1L1 NPC1 (Niemann-Pick disease, type C1, gene)-like 1 1992510 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13550 NPC2 Niemann-Pick disease, type C2 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13551 NPEPL1 aminopeptidase-like 1 271752 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13552 NPFF neuropeptide FF-amide peptide precursor 179478 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13553 NPFFR1 neuropeptide FF receptor 1 214461 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13554 NPHP1 nephronophthisis 1 (juvenile) 1156974 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13555 NPHP3 nephronophthisis 3 (adolescent) 1877928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13556 NPHS2 nephrosis 2, idiopathic, steroid-resistant (podocin) 459342 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13557 NPIP nuclear pore complex interacting protein 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13558 NPL N-acetylneuraminate pyruvate lyase (dihydrodipicolinate synthase) 510549 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13559 NPLOC4 nuclear protein localization 4 homolog (S. cerevisiae) 737685 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13560 NPM1 nucleophosmin (nucleolar phosphoprotein B23, numatrin) 472017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13561 NPM2 nucleophosmin/nucleoplasmin, 2 267696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13562 NPM3 nucleophosmin/nucleoplasmin, 3 282399 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13563 NPNT nephronectin 847197 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13564 NPPB natriuretic peptide precursor B 211419 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13565 NPRL2 559728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13566 NPRL3 248430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13567 NPS neuropeptide S 142974 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13568 NPTX1 neuronal pentraxin I 332592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13569 NPTXR neuronal pentraxin receptor 419796 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13570 NPVF neuropeptide VF precursor 305721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13571 NPY5R neuropeptide Y receptor Y5 680394 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13572 NQO2 NAD(P)H dehydrogenase, quinone 2 365040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13573 NR0B1 nuclear receptor subfamily 0, group B, member 1 603837 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13574 NR1H3 nuclear receptor subfamily 1, group H, member 3 699153 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13575 NR1I2 nuclear receptor subfamily 1, group I, member 2 688506 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13576 NR1I3 nuclear receptor subfamily 1, group I, member 3 621075 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13577 NR2C1 nuclear receptor subfamily 2, group C, member 1 984594 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13578 NR2C2 nuclear receptor subfamily 2, group C, member 2 965328 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13579 NR2E3 nuclear receptor subfamily 2, group E, member 3 383799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13580 NR2F1 nuclear receptor subfamily 2, group F, member 1 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13581 NR2F2 nuclear receptor subfamily 2, group F, member 2 552123 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13582 NR3C1 nuclear receptor subfamily 3, group C, member 1 (glucocorticoid receptor) 1208688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13583 NR4A3 nuclear receptor subfamily 4, group A, member 3 775203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13584 NRAP nebulin-related anchoring protein 2718027 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13585 NRAS neuroblastoma RAS viral (v-ras) oncogene homolog 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13586 NRBF2 nuclear receptor binding factor 2 446160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13587 NRG1 neuregulin 1 1419093 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13588 NRG2 neuregulin 2 605865 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13589 NRG4 neuregulin 4 186576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13590 NRGN neurogranin (protein kinase C substrate, RC3) 67938 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13591 NRIP1 nuclear receptor interacting protein 1 1764867 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13592 NRIP2 nuclear receptor interacting protein 2 441090 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13593 NRIP3 nuclear receptor interacting protein 3 292032 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13594 NRL neural retina leucine zipper 194688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13595 NRM nurim (nuclear envelope membrane protein) 407121 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13596 NRN1 neuritin 1 223587 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13597 NRN1L neuritin 1-like 179478 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13598 NRSN1 neurensin 1 302172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13599 NRSN2 neurensin 2 315861 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13600 NSA2 409149 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13601 NSD1 nuclear receptor binding SET domain protein 1 4146753 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13602 NSF N-ethylmaleimide-sensitive factor 617019 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13603 NSMCE1 non-SMC element 1 homolog (S. cerevisiae) 420303 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13604 NSUN3 NOL1/NOP2/Sun domain family, member 3 530829 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13605 NSUN6 NOL1/NOP2/Sun domain family, member 6 737178 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13606 NT5C 5', 3'-nucleotidase, cytosolic 193674 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13607 NT5C1A 5'-nucleotidase, cytosolic IA 495339 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13608 NT5C2 5'-nucleotidase, cytosolic II 889278 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13609 NT5C3L 5'-nucleotidase, cytosolic III-like 390897 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13610 NT5DC1 5'-nucleotidase domain containing 1 668733 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13611 NT5DC2 5'-nucleotidase domain containing 2 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13612 NT5DC3 5'-nucleotidase domain containing 3 755937 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13613 NT5M 5',3'-nucleotidase, mitochondrial 133341 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13614 NTF3 neurotrophin 3 416247 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13615 NTF4 neurotrophin 4 220038 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13616 NTN1 netrin 1 259077 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13617 NTN3 227643 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13618 NTN4 netrin 4 947076 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13619 NTS neurotensin 268203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13620 NTSR1 neurotensin receptor 1 (high affinity) 316875 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13621 NUBP1 nucleotide binding protein 1 (MinD homolog, E. coli) 443625 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13622 NUBPL nucleotide binding protein-like 452244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13623 NUCB1 nucleobindin 1 661128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13624 NUCB2 nucleobindin 2 664677 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13625 NUDC nuclear distribution gene C homolog (A. nidulans) 480129 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13626 NUDCD1 NudC domain containing 1 908544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13627 NUDCD3 NudC domain containing 3 463398 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13628 NUDT10 nudix (nucleoside diphosphate linked moiety X)-type motif 10 255021 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13629 NUDT11 nudix (nucleoside diphosphate linked moiety X)-type motif 11 243867 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13630 NUDT12 nudix (nucleoside diphosphate linked moiety X)-type motif 12 716391 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13631 NUDT15 nudix (nucleoside diphosphate linked moiety X)-type motif 15 174915 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13632 NUDT16 nudix (nucleoside diphosphate linked moiety X)-type motif 16 185055 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13633 NUDT16L1 nudix (nucleoside diphosphate linked moiety X)-type motif 16-like 1 91767 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13634 NUDT19 nudix (nucleoside diphosphate linked moiety X)-type motif 19 213954 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13635 NUDT2 nudix (nucleoside diphosphate linked moiety X)-type motif 2 229164 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13636 NUDT3 nudix (nucleoside diphosphate linked moiety X)-type motif 3 221052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13637 NUDT4 nudix (nucleoside diphosphate linked moiety X)-type motif 4 176436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13638 NUDT5 nudix (nucleoside diphosphate linked moiety X)-type motif 5 352872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13639 NUDT7 nudix (nucleoside diphosphate linked moiety X)-type motif 7 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13640 NUDT9 nudix (nucleoside diphosphate linked moiety X)-type motif 9 550095 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13641 NUFIP1 nuclear fragile X mental retardation protein interacting protein 1 727038 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13642 NUP133 nucleoporin 133kDa 1735461 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13643 NUP210 nucleoporin 210kDa 2605473 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -13644 NUP35 nucleoporin 35kDa 515619 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13645 NUP37 nucleoporin 37kDa 515619 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13646 NUP43 nucleoporin 43kDa 595725 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13647 NUP50 nucleoporin 50kDa 727545 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13648 NUP54 nucleoporin 54kDa 757965 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13649 NUP62CL nucleoporin 62kDa C-terminal like 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13650 NUP85 nucleoporin 85kDa 1037829 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13651 NUPR1 157677 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13652 NUS1 nuclear undecaprenyl pyrophosphate synthase 1 homolog (S. cerevisiae) 244881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13653 NUSAP1 nucleolar and spindle associated protein 1 642876 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13654 NVL nuclear VCP-like 1350141 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13655 NXF2 nuclear RNA export factor 2 952653 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13656 NXF2B nuclear RNA export factor 2B 952653 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13657 NXN nucleoredoxin 355407 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13658 NXNL1 nucleoredoxin-like 1 185055 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13659 NXPH1 neurexophilin 1 417768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13660 NXPH2 neurexophilin 2 379236 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13661 NXPH3 neurexophilin 3 359463 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13662 NXPH4 neurexophilin 4 265161 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13663 NXT1 NTF2-like export factor 1 216489 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13664 NXT2 nuclear transport factor 2-like export factor 2 311298 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13665 OAF OAF homolog (Drosophila) 304707 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13666 OAT ornithine aminotransferase (gyrate atrophy) 687492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13667 OAZ2 ornithine decarboxylase antizyme 2 250458 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13668 OAZ3 ornithine decarboxylase antizyme 3 364533 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13669 OBFC2A oligonucleotide/oligosaccharide-binding fold containing 2A 323973 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13670 OBP2A odorant binding protein 2A 233727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13671 OBP2B odorant binding protein 2B 272259 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13672 OCA2 oculocutaneous albinism II 1266486 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13673 OCEL1 occludin/ELL domain containing 1 328029 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13674 OCIAD2 OCIA domain containing 2 247923 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13675 OCLM oculomedin 70473 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13676 OCLN occludin 1110837 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13677 OCM oncomodulin 175422 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13678 OCM2 175422 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13679 ODAM odontogenic, ameloblast asssociated 446160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13680 ODC1 ornithine decarboxylase 1 722982 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13681 ODF2L outer dense fiber of sperm tails 2-like 1013493 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13682 ODF3 outer dense fiber of sperm tails 3 241332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13683 ODF3L1 outer dense fiber of sperm tails 3-like 1 426387 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13684 ODF4 outer dense fiber of sperm tails 4 398502 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13685 OGFOD1 2-oxoglutarate and iron-dependent oxygenase domain containing 1 848211 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13686 OGFRL1 opioid growth factor receptor-like 1 581022 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13687 OGN osteoglycin 466947 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13688 OIP5 Opa interacting protein 5 358956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13689 OIT3 oncoprotein induced transcript 3 848718 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13690 OLA1 Obg-like ATPase 1 624117 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13691 OLAH oleoyl-ACP hydrolase 418782 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13692 OLFM1 olfactomedin 1 642369 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13693 OLFM2 olfactomedin 2 649467 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13694 OLFM3 olfactomedin 3 710307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13695 OLFML1 olfactomedin-like 1 619047 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13696 OLFML2B olfactomedin-like 2B 1158495 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13697 OLR1 oxidized low density lipoprotein (lectin-like) receptor 1 428922 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13698 OMG oligodendrocyte myelin glycoprotein 672789 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13699 OMP olfactory marker protein 218517 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13700 ONECUT1 one cut homeobox 1 598260 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13701 OOEP oocyte expressed protein homolog (dog) 234234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13702 OPA3 optic atrophy 3 (autosomal recessive, with chorea and spastic paraplegia) 483171 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13703 OPALIN 234741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13704 OPN1MW opsin 1 (cone pigments), medium-wave-sensitive 539955 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13705 OPN1MW2 opsin 1 (cone pigments), medium-wave-sensitive 2 539955 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13706 OPN1SW opsin 1 (cone pigments), short-wave-sensitive 540969 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13707 OPN3 opsin 3 463398 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13708 OPN5 opsin 5 547560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13709 OPTC opticin 459342 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13710 OR10A3 olfactory receptor, family 10, subfamily A, member 3 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13711 OR10A5 olfactory receptor, family 10, subfamily A, member 5 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13712 OR10A6 olfactory receptor, family 10, subfamily A, member 6 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13713 OR10G3 olfactory receptor, family 10, subfamily G, member 3 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13714 OR10G4 olfactory receptor, family 10, subfamily G, member 4 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13715 OR10G8 olfactory receptor, family 10, subfamily G, member 8 476580 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13716 OR10H3 olfactory receptor, family 10, subfamily H, member 3 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13717 OR10H5 olfactory receptor, family 10, subfamily H, member 5 482664 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13718 OR10K2 olfactory receptor, family 10, subfamily K, member 2 478101 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13719 OR10P1 olfactory receptor, family 10, subfamily P, member 1 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13720 OR10R2 olfactory receptor, family 10, subfamily R, member 2 513084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13721 OR10S1 olfactory receptor, family 10, subfamily S, member 1 507000 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13722 OR10T2 olfactory receptor, family 10, subfamily T, member 2 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13723 OR10W1 olfactory receptor, family 10, subfamily W, member 1 467454 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13724 OR10X1 olfactory receptor, family 10, subfamily X, member 1 499395 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13725 OR11A1 olfactory receptor, family 11, subfamily A, member 1 482664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13726 OR11G2 olfactory receptor, family 11, subfamily G, member 2 528294 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13727 OR11H1 olfactory receptor, family 11, subfamily H, member 1 499395 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13728 OR11L1 olfactory receptor, family 11, subfamily L, member 1 493311 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13729 OR12D2 olfactory receptor, family 12, subfamily D, member 2 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13730 OR13C3 olfactory receptor, family 13, subfamily C, member 3 531336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13731 OR13C5 olfactory receptor, family 13, subfamily C, member 5 487227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13732 OR13C9 olfactory receptor, family 13, subfamily C, member 9 487227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13733 OR13D1 olfactory receptor, family 13, subfamily D, member 1 529815 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13734 OR13G1 olfactory receptor, family 13, subfamily G, member 1 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13735 OR13H1 olfactory receptor, family 13, subfamily H, member 1 472017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13736 OR13J1 olfactory receptor, family 13, subfamily J, member 1 478101 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13737 OR14A16 olfactory receptor, family 14, subfamily A, member 16 472017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13738 OR14C36 olfactory receptor, family 14, subfamily C, member 36 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13739 OR14I1 olfactory receptor, family 14, subfamily I, member 1 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13740 OR14J1 olfactory receptor, family 14, subfamily J, member 1 491790 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13741 OR1B1 olfactory receptor, family 1, subfamily B, member 1 487227 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13742 OR1C1 olfactory receptor, family 1, subfamily C, member 1 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13743 OR1D2 olfactory receptor, family 1, subfamily D, member 2 477594 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13744 OR1D5 olfactory receptor, family 1, subfamily D, member 5 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13745 OR1E1 olfactory receptor, family 1, subfamily E, member 1 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13746 OR1E2 olfactory receptor, family 1, subfamily E, member 2 494832 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13747 OR1F1 olfactory receptor, family 1, subfamily F, member 1 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13748 OR1G1 olfactory receptor, family 1, subfamily G, member 1 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13749 OR1J1 olfactory receptor, family 1, subfamily J, member 1 493311 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13750 OR1J4 olfactory receptor, family 1, subfamily J, member 4 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13751 OR1L1 olfactory receptor, family 1, subfamily L, member 1 474045 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13752 OR1L3 olfactory receptor, family 1, subfamily L, member 3 496353 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13753 OR1N1 olfactory receptor, family 1, subfamily N, member 1 476580 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13754 OR1N2 olfactory receptor, family 1, subfamily N, member 2 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13755 OR1Q1 olfactory receptor, family 1, subfamily Q, member 1 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13756 OR1S1 olfactory receptor, family 1, subfamily S, member 1 497874 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13757 OR1S2 olfactory receptor, family 1, subfamily S, member 2 497874 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13758 OR2A1 olfactory receptor, family 2, subfamily A, member 1 626145 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13759 OR2A12 olfactory receptor, family 2, subfamily A, member 12 475059 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13760 OR2A14 olfactory receptor, family 2, subfamily A, member 14 475059 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13761 OR2A2 olfactory receptor, family 2, subfamily A, member 2 487227 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13762 OR2A25 olfactory receptor, family 2, subfamily A, member 25 475059 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13763 OR2A4 olfactory receptor, family 2, subfamily A, member 4 407121 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13764 OR2A42 olfactory receptor, family 2, subfamily A, member 42 607893 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13765 OR2A5 olfactory receptor, family 2, subfamily A, member 5 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13766 OR2A7 olfactory receptor, family 2, subfamily A, member 7 475059 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13767 OR2AK2 olfactory receptor, family 2, subfamily AK, member 2 513084 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13768 OR2AT4 olfactory receptor, family 2, subfamily AT, member 4 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13769 OR2B11 olfactory receptor, family 2, subfamily B, member 11 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13770 OR2B6 olfactory receptor, family 2, subfamily B, member 6 479622 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13771 OR2C1 olfactory receptor, family 2, subfamily C, member 1 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13772 OR2C3 olfactory receptor, family 2, subfamily C, member 3 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13773 OR2D2 olfactory receptor, family 2, subfamily D, member 2 472017 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13774 OR2F2 olfactory receptor, family 2, subfamily F, member 2 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13775 OR2G2 olfactory receptor, family 2, subfamily G, member 2 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13776 OR2G3 olfactory receptor, family 2, subfamily G, member 3 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13777 OR2G6 olfactory receptor, family 2, subfamily G, member 6 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13778 OR2H1 olfactory receptor, family 2, subfamily H, member 1 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13779 OR2H2 olfactory receptor, family 2, subfamily H, member 2 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13780 OR2J2 olfactory receptor, family 2, subfamily J, member 2 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13781 OR2K2 olfactory receptor, family 2, subfamily K, member 2 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13782 OR2L13 olfactory receptor, family 2, subfamily L, member 13 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13783 OR2L2 olfactory receptor, family 2, subfamily L, member 2 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13784 OR2L8 olfactory receptor, family 2, subfamily L, member 8 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13785 OR2M2 olfactory receptor, family 2, subfamily M, member 2 531336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13786 OR2M3 olfactory receptor, family 2, subfamily M, member 3 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13787 OR2M4 olfactory receptor, family 2, subfamily M, member 4 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13788 OR2M5 olfactory receptor, family 2, subfamily M, member 5 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13789 OR2M7 olfactory receptor, family 2, subfamily M, member 7 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13790 OR2S2 olfactory receptor, family 2, subfamily S, member 2 488748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13791 OR2T1 olfactory receptor, family 2, subfamily T, member 1 564798 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13792 OR2T10 olfactory receptor, family 2, subfamily T, member 10 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13793 OR2T11 olfactory receptor, family 2, subfamily T, member 11 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13794 OR2T12 olfactory receptor, family 2, subfamily T, member 12 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13795 OR2T2 olfactory receptor, family 2, subfamily T, member 2 496353 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13796 OR2T27 olfactory receptor, family 2, subfamily T, member 27 485199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13797 OR2T29 olfactory receptor, family 2, subfamily T, member 29 138918 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13798 OR2T3 olfactory receptor, family 2, subfamily T, member 3 487227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13799 OR2T33 olfactory receptor, family 2, subfamily T, member 33 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13800 OR2T34 olfactory receptor, family 2, subfamily T, member 34 487227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13801 OR2T35 olfactory receptor, family 2, subfamily T, member 35 154128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13802 OR2T4 olfactory receptor, family 2, subfamily T, member 4 532857 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13803 OR2T5 olfactory receptor, family 2, subfamily T, member 5 185055 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13804 OR2T6 olfactory receptor, family 2, subfamily T, member 6 472017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13805 OR2T8 olfactory receptor, family 2, subfamily T, member 8 461370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13806 OR2V2 olfactory receptor, family 2, subfamily V, member 2 482664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13807 OR2W1 olfactory receptor, family 2, subfamily W, member 1 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13808 OR2W3 olfactory receptor, family 2, subfamily W, member 3 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13809 OR2W5 olfactory receptor, family 2, subfamily W, member 5 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13810 OR2Y1 olfactory receptor, family 2, subfamily Y, member 1 476580 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13811 OR4A16 olfactory receptor, family 4, subfamily A, member 16 502437 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13812 OR4A47 olfactory receptor, family 4, subfamily A, member 47 473538 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13813 OR4B1 olfactory receptor, family 4, subfamily B, member 1 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13814 OR4C11 olfactory receptor, family 4, subfamily C, member 11 475059 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13815 OR4C12 olfactory receptor, family 4, subfamily C, member 12 473538 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13816 OR4C15 olfactory receptor, family 4, subfamily C, member 15 566319 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13817 OR4C3 olfactory receptor, family 4, subfamily C, member 3 503958 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13818 OR4C46 olfactory receptor, family 4, subfamily C, member 46 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13819 OR4C6 olfactory receptor, family 4, subfamily C, member 6 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13820 OR4D1 olfactory receptor, family 4, subfamily D, member 1 475059 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13821 OR4D5 olfactory receptor, family 4, subfamily D, member 5 487227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13822 OR4D6 olfactory receptor, family 4, subfamily D, member 6 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13823 OR4D9 olfactory receptor, family 4, subfamily D, member 9 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13824 OR4F15 olfactory receptor, family 4, subfamily F, member 15 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13825 OR4F17 olfactory receptor, family 4, subfamily F, member 17 439062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13826 OR4F21 olfactory receptor, family 4, subfamily F, member 21 261105 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13827 OR4F4 olfactory receptor, family 4, subfamily F, member 4 358449 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13828 OR4F6 olfactory receptor, family 4, subfamily F, member 6 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13829 OR4K1 olfactory receptor, family 4, subfamily K, member 1 476580 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13830 OR4K17 olfactory receptor, family 4, subfamily K, member 17 525252 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13831 OR4K5 olfactory receptor, family 4, subfamily K, member 5 494832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13832 OR4M2 olfactory receptor, family 4, subfamily M, member 2 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13833 OR4N4 olfactory receptor, family 4, subfamily N, member 4 484185 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13834 OR4N5 olfactory receptor, family 4, subfamily N, member 5 472017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13835 OR4Q3 olfactory receptor, family 4, subfamily Q, member 3 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13836 OR4X1 olfactory receptor, family 4, subfamily X, member 1 465933 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13837 OR51A2 olfactory receptor, family 51, subfamily A, member 2 479622 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13838 OR51B2 olfactory receptor, family 51, subfamily B, member 2 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13839 OR51B5 olfactory receptor, family 51, subfamily B, member 5 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13840 OR51B6 olfactory receptor, family 51, subfamily B, member 6 478101 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13841 OR51E1 olfactory receptor, family 51, subfamily E, member 1 487227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13842 OR51F1 olfactory receptor, family 51, subfamily F, member 1 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13843 OR51F2 olfactory receptor, family 51, subfamily F, member 2 523731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13844 OR51G1 olfactory receptor, family 51, subfamily G, member 1 491790 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13845 OR51I1 olfactory receptor, family 51, subfamily I, member 1 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13846 OR51I2 olfactory receptor, family 51, subfamily I, member 2 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13847 OR51L1 olfactory receptor, family 51, subfamily L, member 1 482664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13848 OR51S1 olfactory receptor, family 51, subfamily S, member 1 494832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13849 OR51T1 olfactory receptor, family 51, subfamily T, member 1 541983 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13850 OR52A1 olfactory receptor, family 52, subfamily A, member 1 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13851 OR52B4 olfactory receptor, family 52, subfamily B, member 4 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13852 OR52E2 olfactory receptor, family 52, subfamily E, member 2 497367 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13853 OR52E4 olfactory receptor, family 52, subfamily E, member 4 478101 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13854 OR52E6 olfactory receptor, family 52, subfamily E, member 6 479622 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13855 OR52E8 olfactory receptor, family 52, subfamily E, member 8 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13856 OR52I1 olfactory receptor, family 52, subfamily I, member 1 496353 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13857 OR52I2 olfactory receptor, family 52, subfamily I, member 2 535899 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13858 OR52J3 olfactory receptor, family 52, subfamily J, member 3 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13859 OR52N1 olfactory receptor, family 52, subfamily N, member 1 490269 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13860 OR52W1 olfactory receptor, family 52, subfamily W, member 1 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13861 OR56A3 olfactory receptor, family 56, subfamily A, member 3 482664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13862 OR56B1 olfactory receptor, family 56, subfamily B, member 1 496353 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13863 OR5A2 olfactory receptor, family 5, subfamily A, member 2 496353 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13864 OR5AC2 olfactory receptor, family 5, subfamily AC, member 2 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13865 OR5AP2 olfactory receptor, family 5, subfamily AP, member 2 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13866 OR5AR1 olfactory receptor, family 5, subfamily AR, member 1 475059 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13867 OR5AU1 olfactory receptor, family 5, subfamily AU, member 1 554151 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13868 OR5B12 olfactory receptor, family 5, subfamily B, member 12 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13869 OR5B2 olfactory receptor, family 5, subfamily B, member 2 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13870 OR5B21 olfactory receptor, family 5, subfamily B, member 21 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13871 OR5B3 olfactory receptor, family 5, subfamily B, member 3 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13872 OR5C1 olfactory receptor, family 5, subfamily C, member 1 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13873 OR5F1 olfactory receptor, family 5, subfamily F, member 1 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13874 OR5H14 olfactory receptor, family 5, subfamily H, member 14 475059 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13875 OR5J2 olfactory receptor, family 5, subfamily J, member 2 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13876 OR5K1 olfactory receptor, family 5, subfamily K, member 1 472017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13877 OR5K3 olfactory receptor, family 5, subfamily K, member 3 491790 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13878 OR5K4 olfactory receptor, family 5, subfamily K, member 4 491790 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13879 OR5M10 olfactory receptor, family 5, subfamily M, member 10 482664 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13880 OR5M8 olfactory receptor, family 5, subfamily M, member 8 476580 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13881 OR5M9 olfactory receptor, family 5, subfamily M, member 9 475059 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13882 OR5P2 olfactory receptor, family 5, subfamily P, member 2 493311 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13883 OR5P3 olfactory receptor, family 5, subfamily P, member 3 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13884 OR5T3 olfactory receptor, family 5, subfamily T, member 3 520689 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13885 OR5V1 olfactory receptor, family 5, subfamily V, member 1 491790 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13886 OR6B2 olfactory receptor, family 6, subfamily B, member 2 477087 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13887 OR6B3 olfactory receptor, family 6, subfamily B, member 3 468468 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13888 OR6C3 olfactory receptor, family 6, subfamily C, member 3 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13889 OR6C4 olfactory receptor, family 6, subfamily C, member 4 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13890 OR6C65 olfactory receptor, family 6, subfamily C, member 65 478101 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13891 OR6C68 olfactory receptor, family 6, subfamily C, member 68 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13892 OR6C74 olfactory receptor, family 6, subfamily C, member 74 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13893 OR6C75 olfactory receptor, family 6, subfamily C, member 75 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13894 OR6C76 olfactory receptor, family 6, subfamily C, member 76 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13895 OR6F1 olfactory receptor, family 6, subfamily F, member 1 472017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13896 OR6K3 olfactory receptor, family 6, subfamily K, member 3 481650 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13897 OR6N2 olfactory receptor, family 6, subfamily N, member 2 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13898 OR6Q1 olfactory receptor, family 6, subfamily Q, member 1 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13899 OR6T1 olfactory receptor, family 6, subfamily T, member 1 494832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13900 OR6Y1 olfactory receptor, family 6, subfamily Y, member 1 497874 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13901 OR7C1 olfactory receptor, family 7, subfamily C, member 1 490269 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13902 OR7C2 olfactory receptor, family 7, subfamily C, member 2 488748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13903 OR7E24 olfactory receptor, family 7, subfamily E, member 24 519168 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13904 OR7G1 olfactory receptor, family 7, subfamily G, member 1 466440 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13905 OR7G2 olfactory receptor, family 7, subfamily G, member 2 528294 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13906 OR8A1 olfactory receptor, family 8, subfamily A, member 1 499395 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13907 OR8B2 olfactory receptor, family 8, subfamily B, member 2 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13908 OR8B3 olfactory receptor, family 8, subfamily B, member 3 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13909 OR8B4 olfactory receptor, family 8, subfamily B, member 4 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13910 OR8B8 olfactory receptor, family 8, subfamily B, member 8 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13911 OR8D1 olfactory receptor, family 8, subfamily D, member 1 472017 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13912 OR8D2 olfactory receptor, family 8, subfamily D, member 2 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13913 OR8G1 olfactory receptor, family 8, subfamily G, member 1 475059 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13914 OR8G2 olfactory receptor, family 8, subfamily G, member 2 465933 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13915 OR8G5 olfactory receptor, family 8, subfamily G, member 5 529815 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13916 OR8H3 olfactory receptor, family 8, subfamily H, member 3 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13917 OR8I2 olfactory receptor, family 8, subfamily I, member 2 475059 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13918 OR8J1 olfactory receptor, family 8, subfamily J, member 1 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13919 OR8J3 olfactory receptor, family 8, subfamily J, member 3 482664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13920 OR8K3 olfactory receptor, family 8, subfamily K, member 3 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13921 OR8K5 olfactory receptor, family 8, subfamily K, member 5 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13922 OR8S1 olfactory receptor, family 8, subfamily S, member 1 551616 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13923 OR9A4 olfactory receptor, family 9, subfamily A, member 4 481143 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13924 OR9G1 olfactory receptor, family 9, subfamily G, member 1 467454 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13925 OR9G9 olfactory receptor, family 9, subfamily G, member 9 467454 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13926 OR9I1 olfactory receptor, family 9, subfamily I, member 1 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13927 OR9Q1 olfactory receptor, family 9, subfamily Q, member 1 475059 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13928 OR9Q2 olfactory receptor, family 9, subfamily Q, member 2 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13929 ORAI1 ORAI calcium release-activated calcium modulator 1 345774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13930 ORAI2 ORAI calcium release-activated calcium modulator 2 341211 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13931 ORAI3 ORAI calcium release-activated calcium modulator 3 336648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13932 ORAOV1 oral cancer overexpressed 1 192660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13933 ORC1L origin recognition complex, subunit 1-like (yeast) 1343550 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13934 ORC4L origin recognition complex, subunit 4-like (yeast) 691041 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13935 ORC5L origin recognition complex, subunit 5-like (yeast) 741234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13936 ORC6L origin recognition complex, subunit 6 like (yeast) 364026 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13937 ORMDL1 ORM1-like 1 (S. cerevisiae) 240318 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13938 ORMDL2 ORM1-like 2 (S. cerevisiae) 240318 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13939 OSBPL11 oxysterol binding protein-like 11 1164072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13940 OSBPL3 oxysterol binding protein-like 3 1395264 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13941 OSBPL6 oxysterol binding protein-like 6 1530633 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13942 OSCAR osteoclast associated, immunoglobulin-like receptor 202800 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13943 OSGEP O-sialoglycoprotein endopeptidase 533364 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13944 OSGEPL1 O-sialoglycoprotein endopeptidase-like 1 645411 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13945 OSGIN2 oxidative stress induced growth inhibitor family member 2 824382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13946 OSM oncostatin M 389376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13947 OSR1 odd-skipped related 1 (Drosophila) 410163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13948 OSTC 224094 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13949 OSTF1 osteoclast stimulating factor 1 328029 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13950 OSTM1 osteopetrosis associated transmembrane protein 1 315861 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13951 OSTN osteocrin 209898 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13952 OSTalpha 515619 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13953 OTC ornithine carbamoyltransferase 560235 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13954 OTOA otoancorin 1492101 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13955 OTOL1 685464 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13956 OTOR otoraplin 204321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13957 OTOS otospiralin 142467 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13958 OTUB1 OTU domain, ubiquitin aldehyde binding 1 363012 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13959 OTUB2 OTU domain, ubiquitin aldehyde binding 2 366054 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13960 OTUD3 OTU domain containing 3 509028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13961 OTUD5 OTU domain containing 5 661128 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13962 OTUD6A OTU domain containing 6A 380757 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13963 OTUD6B OTU domain containing 6B 417768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13964 OTX1 orthodenticle homeobox 1 538941 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13965 OTX2 orthodenticle homeobox 2 459342 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13966 OVCA2 188604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13967 OVOL1 ovo-like 1(Drosophila) 297609 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13968 OVOL2 ovo-like 2 (Drosophila) 261105 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13969 OXA1L oxidase (cytochrome c) assembly 1-like 774696 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13970 OXNAD1 oxidoreductase NAD-binding domain containing 1 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13971 OXSM 3-oxoacyl-ACP synthase, mitochondrial 703716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13972 OXSR1 oxidative-stress responsive 1 802074 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13973 OXTR oxytocin receptor 357942 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13974 P2RX1 purinergic receptor P2X, ligand-gated ion channel, 1 531336 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13975 P2RX2 purinergic receptor P2X, ligand-gated ion channel, 2 557700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13976 P2RY12 purinergic receptor P2Y, G-protein coupled, 12 523731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13977 P2RY14 purinergic receptor P2Y, G-protein coupled, 14 517647 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13978 P2RY6 pyrimidinergic receptor P2Y, G-protein coupled, 6 502437 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13979 P4HA1 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide I 880152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13980 P4HA2 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide II 876096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13981 P4HB procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), beta polypeptide 478608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13982 PA2G4 proliferation-associated 2G4, 38kDa 627159 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13983 PAAF1 proteasomal ATPase-associated factor 1 596232 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13984 PABPC4 poly(A) binding protein, cytoplasmic 4 (inducible form) 935922 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13985 PACRGL 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13986 PACS2 phosphofurin acidic cluster sorting protein 2 611949 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13987 PACSIN3 protein kinase C and casein kinase substrate in neurons 3 630708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13988 PADI1 peptidyl arginine deiminase, type I 924261 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -13989 PADI6 peptidyl arginine deiminase, type VI 880659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13990 PAF1 Paf1, RNA polymerase II associated factor, homolog (S. cerevisiae) 811707 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13991 PAFAH1B2 platelet-activating factor acetylhydrolase, isoform Ib, beta subunit 30kDa 359970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13992 PAFAH2 platelet-activating factor acetylhydrolase 2, 40kDa 615498 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13993 PAGE2B P antigen family, member 2B 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13994 PAGE4 P antigen family, member 4 (prostate associated) 164775 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13995 PAGE5 P antigen family, member 5 (prostate associated) 180999 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13996 PAIP1 poly(A) binding protein interacting protein 1 616005 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13997 PAIP2 poly(A) binding protein interacting protein 2 200772 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -13998 PAIP2B poly(A) binding protein interacting protein 2B 194688 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -13999 PAK1IP1 PAK1 interacting protein 1 618033 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14000 PAK4 p21(CDKN1A)-activated kinase 4 412191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14001 PAK6 p21(CDKN1A)-activated kinase 6 646932 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14002 PALB2 partner and localizer of BRCA2 1819623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14003 PALM2 paralemmin 2 641355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14004 PAM peptidylglycine alpha-amidating monooxygenase 1533675 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14005 PAN3 PAN3 polyA specific ribonuclease subunit homolog (S. cerevisiae) 1169142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14006 PANK1 pantothenate kinase 1 583050 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14007 PANK3 pantothenate kinase 3 562263 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14008 PANX3 pannexin 3 605865 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14009 PAPD4 PAP associated domain containing 4 766077 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14010 PAPL 692055 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14011 PAPLN papilin, proteoglycan-like sulfated glycoprotein 1534689 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14012 PAPOLB poly(A) polymerase beta (testis specific) 950625 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14013 PAPOLG poly(A) polymerase gamma 1165593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14014 PAPSS2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 953667 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14015 PAQR5 progestin and adipoQ receptor family member V 517647 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14016 PAQR6 progestin and adipoQ receptor family member VI 516633 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14017 PAQR7 progestin and adipoQ receptor family member VII 529815 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14018 PAQR8 progestin and adipoQ receptor family member VIII 541983 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14019 PARD6A par-6 partitioning defective 6 homolog alpha (C. elegans) 329550 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14020 PARK7 Parkinson disease (autosomal recessive, early onset) 7 301158 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14021 PARL presenilin associated, rhomboid-like 546039 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14022 PARM1 476073 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14023 PARN poly(A)-specific ribonuclease (deadenylation nuclease) 898911 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14024 PARP11 poly (ADP-ribose) polymerase family, member 11 520689 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14025 PARP16 poly (ADP-ribose) polymerase family, member 16 414726 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14026 PARP2 poly (ADP-ribose) polymerase family, member 2 895362 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14027 PARVB parvin, beta 633750 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14028 PARVG parvin, gamma 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14029 PATE1 203307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14030 PATE2 181506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14031 PATL1 protein associated with topoisomerase II homolog 1 (yeast) 949104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14032 PATZ1 POZ (BTB) and AT hook containing zinc finger 1 1078389 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14033 PAWR PRKC, apoptosis, WT1, regulator 267189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14034 PAX1 paired box 1 504465 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14035 PAX4 paired box 4 520689 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14036 PAX6 paired box 6 686985 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14037 PAX7 paired box 7 593697 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14038 PAX9 paired box 9 450723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14039 PAXIP1 PAX interacting (with transcription-activation domain) protein 1 1273584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14040 PBLD phenazine biosynthesis-like protein domain containing 502944 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14041 PBOV1 prostate and breast cancer overexpressed 1 203307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14042 PBX2 pre-B-cell leukemia homeobox 2 617526 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14043 PBX3 pre-B-cell leukemia homeobox 3 576459 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14044 PCBD1 pterin-4 alpha-carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha 164268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14045 PCBD2 pterin-4 alpha-carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 2 162747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14046 PCBP3 poly(rC) binding protein 3 251472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14047 PCCB propionyl Coenzyme A carboxylase, beta polypeptide 729573 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14048 PCDH20 protocadherin 20 1361295 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14049 PCDH8 protocadherin 8 482664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14050 PCDHA3 protocadherin alpha 3 1484496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14051 PCDHB15 protocadherin beta 15 1186380 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14052 PCDHB2 protocadherin beta 2 1213758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14053 PCDHB3 protocadherin beta 3 1210716 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -14054 PCDHB9 protocadherin beta 9 1201590 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14055 PCDHGA10 protocadherin gamma subfamily A, 10 1332903 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14056 PCDHGA6 protocadherin gamma subfamily A, 6 1392222 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14057 PCDHGA7 protocadherin gamma subfamily A, 7 1417065 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14058 PCDHGA8 protocadherin gamma subfamily A, 8 1380054 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14059 PCDHGC5 protocadherin gamma subfamily C, 5 1482975 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14060 PCDP1 876603 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14061 PCGF1 polycomb group ring finger 1 364026 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14062 PCGF2 polycomb group ring finger 2 306228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14063 PCGF3 polycomb group ring finger 3 197223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14064 PCGF5 polycomb group ring finger 5 409149 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14065 PCGF6 polycomb group ring finger 6 369603 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14066 PCIF1 1047969 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14067 PCMT1 protein-L-isoaspartate (D-aspartate) O-methyltransferase 331071 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14068 PCMTD1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 554658 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14069 PCMTD2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 560742 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14070 PCNA proliferating cell nuclear antigen 296595 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14071 PCNP PEST proteolytic signal containing nuclear protein 247923 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14072 PCNT pericentrin 3882606 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14073 PCOLCE procollagen C-endopeptidase enhancer 608400 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14074 PCP4 Purkinje cell protein 4 101907 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14075 PCP4L1 Purkinje cell protein 4 like 1 104442 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14076 PCSK1 proprotein convertase subtilisin/kexin type 1 1175226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14077 PCSK6 proprotein convertase subtilisin/kexin type 6 1047462 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14078 PCTP phosphatidylcholine transfer protein 265668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14079 PCYOX1 prenylcysteine oxidase 1 722982 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14080 PDC phosducin 381771 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14081 PDCD10 programmed cell death 10 338169 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14082 PDCD1LG2 programmed cell death 1 ligand 2 428922 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14083 PDCD2 programmed cell death 2 406107 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14084 PDCD2L programmed cell death 2-like 416754 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14085 PDCD4 programmed cell death 4 (neoplastic transformation inhibitor) 744276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14086 PDCD5 programmed cell death 5 168324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14087 PDCD7 programmed cell death 7 371124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14088 PDCL phosducin-like 465426 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14089 PDDC1 Parkinson disease 7 domain containing 1 103935 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14090 PDE12 phosphodiesterase 12 707772 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14091 PDE1C phosphodiesterase 1C, calmodulin-dependent 70kDa 1000311 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14092 PDE4DIP phosphodiesterase 4D interacting protein (myomegalin) 2166411 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14093 PDE6D phosphodiesterase 6D, cGMP-specific, rod, delta 239811 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14094 PDE6H phosphodiesterase 6H, cGMP-specific, cone, gamma 133848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14095 PDE7A phosphodiesterase 7A 737685 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14096 PDE7B phosphodiesterase 7B 598767 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14097 PDE8A phosphodiesterase 8A 1210716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14098 PDE8B phosphodiesterase 8B 1218321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14099 PDGFC platelet derived growth factor C 538434 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14100 PDGFD platelet derived growth factor D 577980 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14101 PDIA3 protein disulfide isomerase family A, member 3 743769 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14102 PDIA6 protein disulfide isomerase family A, member 6 644397 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14103 PDIK1L PDLIM1 interacting kinase 1 like 485199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14104 PDK3 pyruvate dehydrogenase kinase, isozyme 3 602316 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14105 PDLIM1 PDZ and LIM domain 1 (elfin) 465426 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14106 PDLIM2 PDZ and LIM domain 2 (mystique) 176436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14107 PDLIM3 PDZ and LIM domain 3 522210 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14108 PDLIM5 PDZ and LIM domain 5 982566 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14109 PDP1 878631 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14110 PDPK1 3-phosphoinositide dependent protein kinase-1 444132 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14111 PDPN podoplanin 374166 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14112 PDPR 1263444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14113 PDSS2 prenyl (decaprenyl) diphosphate synthase, subunit 2 624624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14114 PDX1 pancreatic and duodenal homeobox 1 155142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14115 PDXK pyridoxal (pyridoxine, vitamin B6) kinase 289497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14116 PDXP pyridoxal (pyridoxine, vitamin B6) phosphatase 162747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14117 PDYN prodynorphin 391911 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14118 PDZD11 PDZ domain containing 11 226629 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14119 PDZD3 PDZ domain containing 3 617526 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14120 PDZD9 300144 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14121 PDZK1 PDZ domain containing 1 743769 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14122 PEA15 phosphoprotein enriched in astrocytes 15 205335 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14123 PEBP1 phosphatidylethanolamine binding protein 1 223587 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14124 PEBP4 358449 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14125 PECAM1 platelet/endothelial cell adhesion molecule (CD31 antigen) 1016028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14126 PECR peroxisomal trans-2-enoyl-CoA reductase 473031 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14127 PELP1 proline, glutamate and leucine rich protein 1 1138215 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14128 PEMT phosphatidylethanolamine N-methyltransferase 121173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14129 PEPD peptidase D 444639 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14130 PEX11A peroxisomal biogenesis factor 11A 352872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14131 PEX11G peroxisomal biogenesis factor 11 gamma 97851 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14132 PEX12 peroxisomal biogenesis factor 12 553644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14133 PEX13 peroxisome biogenesis factor 13 573924 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14134 PEX14 peroxisomal biogenesis factor 14 468975 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14135 PEX16 peroxisomal biogenesis factor 16 452751 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14136 PEX3 peroxisomal biogenesis factor 3 593190 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14137 PEX5 peroxisomal biogenesis factor 5 1009437 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14138 PF4 platelet factor 4 (chemokine (C-X-C motif) ligand 4) 110019 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14139 PF4V1 platelet factor 4 variant 1 89232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14140 PFDN1 prefoldin subunit 1 150579 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14141 PFDN2 prefoldin subunit 2 213447 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14142 PFDN4 prefoldin subunit 4 199251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14143 PFDN5 prefoldin subunit 5 247923 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14144 PFDN6 prefoldin subunit 6 205335 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14145 PFKFB2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 833508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14146 PFN1 profilin 1 151593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14147 PFN2 profilin 2 203307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14148 PFN4 profilin family, member 4 205842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14149 PGA3 pepsinogen 3, group I (pepsinogen A) 258063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14150 PGAM1 phosphoglycerate mutase 1 (brain) 353379 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14151 PGAM2 phosphoglycerate mutase 2 (muscle) 338676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14152 PGBD1 piggyBac transposable element derived 1 1244178 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14153 PGBD2 piggyBac transposable element derived 2 906009 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14154 PGBD3 piggyBac transposable element derived 3 905502 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14155 PGF placental growth factor 232206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14156 PGGT1B protein geranylgeranyltransferase type I, beta subunit 570882 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14157 PGK2 phosphoglycerate kinase 2 637806 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14158 PGLYRP1 peptidoglycan recognition protein 1 294567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14159 PGLYRP4 peptidoglycan recognition protein 4 585078 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14160 PGM2 phosphoglucomutase 2 917670 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14161 PGPEP1 pyroglutamyl-peptidase I 309777 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14162 PGPEP1L 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14163 PGRMC1 progesterone receptor membrane component 1 170352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14164 PGRMC2 progesterone receptor membrane component 2 132834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14165 PGS1 phosphatidylglycerophosphate synthase 1 757965 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14166 PHACTR3 phosphatase and actin regulator 3 816270 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14167 PHAX 560235 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14168 PHB prohibitin 403065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14169 PHB2 prohibitin 2 474045 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14170 PHF1 PHD finger protein 1 892320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14171 PHF10 PHD finger protein 10 680901 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14172 PHF11 PHD finger protein 11 475566 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14173 PHF13 PHD finger protein 13 433485 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14174 PHF17 PHD finger protein 17 1316172 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14175 PHF21A PHD finger protein 21A 1082952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14176 PHF23 PHD finger protein 23 540969 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14177 PHF5A PHD finger protein 5A 176943 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14178 PHF6 PHD finger protein 6 628173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14179 PHF7 PHD finger protein 7 601302 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14180 PHGDH phosphoglycerate dehydrogenase 836550 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14181 PHKA1 phosphorylase kinase, alpha 1 (muscle) 1926600 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14182 PHKG1 phosphorylase kinase, gamma 1 (muscle) 574431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14183 PHLDA3 pleckstrin homology-like domain, family A, member 3 148551 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14184 PHOSPHO2 phosphatase, orphan 2 370110 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14185 PHOX2B paired-like homeobox 2b 200772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14186 PHPT1 phosphohistidine phosphatase 1 122187 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14187 PHTF1 putative homeodomain transcription factor 1 1197027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14188 PHYHD1 phytanoyl-CoA dioxygenase domain containing 1 416754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14189 PHYHIP phytanoyl-CoA 2-hydroxylase interacting protein 380757 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14190 PI15 peptidase inhibitor 15 404079 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14191 PIAS1 protein inhibitor of activated STAT, 1 1005888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14192 PIAS3 protein inhibitor of activated STAT, 3 970905 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14193 PIBF1 progesterone immunomodulatory binding factor 1 1187394 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14194 PICALM phosphatidylinositol binding clathrin assembly protein 1029717 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14195 PIF1 PIF1 5'-to-3' DNA helicase homolog (S. cerevisiae) 715884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14196 PIGC phosphatidylinositol glycan anchor biosynthesis, class C 455286 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14197 PIGF phosphatidylinositol glycan anchor biosynthesis, class F 384813 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14198 PIGH phosphatidylinositol glycan anchor biosynthesis, class H 153114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14199 PIGK phosphatidylinositol glycan anchor biosynthesis, class K 624624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14200 PIGL phosphatidylinositol glycan anchor biosynthesis, class L 338169 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14201 PIGM phosphatidylinositol glycan anchor biosynthesis, class M 646932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14202 PIGN phosphatidylinositol glycan anchor biosynthesis, class N 1097148 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14203 PIGO phosphatidylinositol glycan anchor biosynthesis, class O 1678170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14204 PIGP phosphatidylinositol glycan anchor biosynthesis, class P 210912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14205 PIGS phosphatidylinositol glycan anchor biosynthesis, class S 824382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14206 PIGT phosphatidylinositol glycan anchor biosynthesis, class T 806130 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14207 PIGU phosphatidylinositol glycan anchor biosynthesis, class U 619554 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14208 PIGV phosphatidylinositol glycan anchor biosynthesis, class V 757458 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14209 PIGW phosphatidylinositol glycan anchor biosynthesis, class W 770133 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14210 PIGX phosphatidylinositol glycan anchor biosynthesis, class X 376701 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14211 PIGY phosphatidylinositol glycan anchor biosynthesis, class Y 111540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14212 PIGZ phosphatidylinositol glycan anchor biosynthesis, class Z 818805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14213 PIH1D1 PIH1 domain containing 1 460863 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14214 PIH1D2 PIH1 domain containing 2 520182 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14215 PIK3CD phosphoinositide-3-kinase, catalytic, delta polypeptide 1148355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14216 PIK3IP1 phosphoinositide-3-kinase interacting protein 1 177957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14217 PIK3R2 phosphoinositide-3-kinase, regulatory subunit 2 (beta) 604851 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14218 PIK3R5 phosphoinositide-3-kinase, regulatory subunit 5 634764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14219 PILRA paired immunoglobin-like type 2 receptor alpha 476580 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14220 PIM1 pim-1 oncogene 399516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14221 PIN1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 105456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14222 PIN4 protein (peptidylprolyl cis/trans isomerase) NIMA-interacting, 4 (parvulin) 246909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14223 PINX1 488241 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14224 PIP prolactin-induced protein 231699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14225 PIP4K2B phosphatidylinositol-5-phosphate 4-kinase, type II, beta 571896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14226 PIP5K1B phosphatidylinositol-4-phosphate 5-kinase, type I, beta 849225 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14227 PIRT 189111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14228 PISD phosphatidylserine decarboxylase 490269 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14229 PITPNA phosphatidylinositol transfer protein, alpha 416247 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14230 PITPNB phosphatidylinositol transfer protein, beta 436020 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14231 PITPNM3 PITPNM family member 3 685971 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14232 PITX1 paired-like homeodomain 1 314340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14233 PIWIL3 piwi-like 3 (Drosophila) 1383603 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14234 PKD2 polycystic kidney disease 2 (autosomal dominant) 1200576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14235 PKDCC 406107 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14236 PKDREJ polycystic kidney disease (polycystin) and REJ homolog (sperm receptor for egg jelly homolog, sea urchin) 3039972 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14237 PKIA protein kinase (cAMP-dependent, catalytic) inhibitor alpha 121173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14238 PKIB protein kinase (cAMP-dependent, catalytic) inhibitor beta 124215 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14239 PKLR pyruvate kinase, liver and RBC 856323 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14240 PKM2 pyruvate kinase, muscle 855309 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14241 PKN1 protein kinase N1 1174212 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14242 PKNOX1 PBX/knotted 1 homeobox 1 684957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14243 PLA2G10 phospholipase A2, group X 74529 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14244 PLA2G12A phospholipase A2, group XIIA 189618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14245 PLA2G12B phospholipase A2, group XIIB 306228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14246 PLA2G16 256035 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14247 PLA2G1B phospholipase A2, group IB (pancreas) 234741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14248 PLA2G2A phospholipase A2, group IIA (platelets, synovial fluid) 226629 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14249 PLA2G2E phospholipase A2, group IIE 203307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14250 PLA2G4B phospholipase A2, group IVB (cytosolic) 1211223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14251 PLA2G4C phospholipase A2, group IVC (cytosolic, calcium-independent) 875082 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14252 PLA2G5 phospholipase A2, group V 219531 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14253 PLA2G7 phospholipase A2, group VII (platelet-activating factor acetylhydrolase, plasma) 694590 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14254 PLAA phospholipase A2-activating protein 1161537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14255 PLAC1 placenta-specific 1 326001 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14256 PLAC4 placenta-specific 4 80106 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14257 PLAC8 placenta-specific 8 182520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14258 PLAC8L1 PLAC8-like 1 278850 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14259 PLAC9 placenta-specific 9 115089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14260 PLAG1 pleiomorphic adenoma gene 1 766077 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14261 PLAGL1 pleiomorphic adenoma gene-like 1 709800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14262 PLAUR plasminogen activator, urokinase receptor 525252 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14263 PLB1 phospholipase B1 2198859 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14264 PLCD4 phospholipase C, delta 4 1182831 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14265 PLCH2 phospholipase C, eta 2 634257 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14266 PLCXD1 phosphatidylinositol-specific phospholipase C, X domain containing 1 445146 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14267 PLD2 phospholipase D2 1411995 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14268 PLD6 170352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14269 PLDN pallidin homolog (mouse) 229671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14270 PLEK pleckstrin 552123 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14271 PLEKHA3 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 3 451737 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14272 PLEKHA6 pleckstrin homology domain containing, family A member 6 1329354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14273 PLEKHA7 pleckstrin homology domain containing, family A member 7 1590966 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14274 PLEKHB1 pleckstrin homology domain containing, family B (evectins) member 1 271245 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14275 PLEKHF1 pleckstrin homology domain containing, family F (with FYVE domain) member 1 214461 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14276 PLEKHG1 pleckstrin homology domain containing, family G (with RhoGef domain) member 1 2138526 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -14277 PLEKHG7 pleckstrin homology domain containing, family G (with RhoGef domain) member 7 600288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14278 PLEKHJ1 pleckstrin homology domain containing, family J member 1 76050 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14279 PLEKHM2 pleckstrin homology domain containing, family M (with RUN domain) member 2 448188 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14280 PLEKHO1 pleckstrin homology domain containing, family O member 1 618540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14281 PLGLB1 plasminogen-like B1 165282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14282 PLGLB2 plasminogen-like B2 165282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14283 PLIN2 680394 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14284 PLIN5 280878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14285 PLK1S1 922740 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14286 PLK3 polo-like kinase 3 (Drosophila) 787371 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14287 PLLP plasma membrane proteolipid (plasmolipin) 215982 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14288 PLN phospholamban 82641 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14289 PLP1 proteolipid protein 1 (Pelizaeus-Merzbacher disease, spastic paraplegia 2, uncomplicated) 437034 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14290 PLP2 proteolipid protein 2 (colonic epithelium-enriched) 242346 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14291 PLRG1 pleiotropic regulator 1 (PRL1 homolog, Arabidopsis) 813735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14292 PLS1 plastin 1 (I isoform) 988650 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14293 PLSCR1 phospholipid scramblase 1 501423 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14294 PLSCR3 phospholipid scramblase 3 320424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14295 PLSCR4 phospholipid scramblase 4 518154 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14296 PLSCR5 phospholipid scramblase family, member 5 382278 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14297 PLUNC palate, lung and nasal epithelium associated 405093 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14298 PLVAP plasmalemma vesicle associated protein 685971 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14299 PLXDC2 plexin domain containing 2 775710 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14300 PMAIP1 phorbol-12-myristate-13-acetate-induced protein 1 56277 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14301 PMCH pro-melanin-concentrating hormone 258570 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14302 PML promyelocytic leukemia 1560546 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14303 PMM1 phosphomannomutase 1 274794 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14304 PMM2 phosphomannomutase 2 303693 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14305 PMP2 peripheral myelin protein 2 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14306 PMP22 peripheral myelin protein 22 211419 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14307 PMPCB peptidase (mitochondrial processing) beta 771654 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14308 PNKD paroxysmal nonkinesigenic dyskinesia 576966 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14309 PNLIPRP2 pancreatic lipase-related protein 2 681408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14310 PNMA1 paraneoplastic antigen MA1 540462 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14311 PNMA3 paraneoplastic antigen MA3 707772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14312 PNMT phenylethanolamine N-methyltransferase 332085 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14313 PNOC prepronociceptin 273273 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14314 PNP 445653 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14315 PNPLA2 patatin-like phospholipase domain containing 2 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14316 PNPLA4 patatin-like phospholipase domain containing 4 398502 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14317 PNPLA5 patatin-like phospholipase domain containing 5 314847 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14318 PNPLA7 patatin-like phospholipase domain containing 7 878631 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14319 PNPT1 polyribonucleotide nucleotidyltransferase 1 1249248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14320 PNRC1 proline-rich nuclear receptor coactivator 1 290511 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14321 POC1A 631215 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14322 POC1B 738192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14323 POC5 898404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14324 PODXL podocalyxin-like 678366 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14325 PODXL2 podocalyxin-like 2 708786 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14326 POF1B premature ovarian failure, 1B 929838 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14327 POLA2 polymerase (DNA directed), alpha 2 (70kD subunit) 919191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14328 POLD1 polymerase (DNA directed), delta 1, catalytic subunit 125kDa 1212744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14329 POLD3 polymerase (DNA-directed), delta 3, accessory subunit 707265 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14330 POLDIP2 polymerase (DNA-directed), delta interacting protein 2 448188 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14331 POLE polymerase (DNA directed), epsilon 3521622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14332 POLE4 polymerase (DNA-directed), epsilon 4 (p12 subunit) 77571 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14333 POLG2 polymerase (DNA directed), gamma 2, accessory subunit 755430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14334 POLK polymerase (DNA directed) kappa 1353183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14335 POLM polymerase (DNA directed), mu 622596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14336 POLR1E polymerase (RNA) I polypeptide E, 53kDa 622596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14337 POLR2C polymerase (RNA) II (DNA directed) polypeptide C, 33kDa 371631 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14338 POLR2D polymerase (RNA) II (DNA directed) polypeptide D 186576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14339 POLR2E polymerase (RNA) II (DNA directed) polypeptide E, 25kDa 110526 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14340 POLR2F polymerase (RNA) II (DNA directed) polypeptide F 192660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14341 POLR2G polymerase (RNA) II (DNA directed) polypeptide G 279357 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14342 POLR2I polymerase (RNA) II (DNA directed) polypeptide I, 14.5kDa 203814 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14343 POLR2J polymerase (RNA) II (DNA directed) polypeptide J, 13.3kDa 168324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14344 POLR2J2 165789 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14345 POLR2J3 165789 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14346 POLR2K polymerase (RNA) II (DNA directed) polypeptide K, 7.0kDa 95823 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14347 POLR2L polymerase (RNA) II (DNA directed) polypeptide L, 7.6kDa 35997 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14348 POLR3D polymerase (RNA) III (DNA directed) polypeptide D, 44kDa 537420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14349 POLR3G polymerase (RNA) III (DNA directed) polypeptide G (32kD) 354900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14350 POLR3H polymerase (RNA) III (DNA directed) polypeptide H (22.9kD) 283920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14351 POLR3K polymerase (RNA) III (DNA directed) polypeptide K, 12.3 kDa 113568 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14352 POM121C POM121 membrane glycoprotein C 1001832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14353 POMC proopiomelanocortin (adrenocorticotropin/ beta-lipotropin/ alpha-melanocyte stimulating hormone/ beta-melanocyte stimulating hormone/ beta-endorphin) 245388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14354 POMGNT1 protein O-linked mannose beta1,2-N-acetylglucosaminyltransferase 1047969 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14355 POMP proteasome maturation protein 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14356 POMT1 protein-O-mannosyltransferase 1 1041378 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14357 POMZP3 POM (POM121 homolog, rat) and ZP3 fusion 299130 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14358 PON2 paraoxonase 2 518661 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14359 POP1 processing of precursor 1, ribonuclease P/MRP subunit (S. cerevisiae) 1589445 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14360 POP4 processing of precursor 4, ribonuclease P/MRP subunit (S. cerevisiae) 321945 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14361 POP5 processing of precursor 5, ribonuclease P/MRP subunit (S. cerevisiae) 247416 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14362 POP7 processing of precursor 7, ribonuclease P/MRP subunit (S. cerevisiae) 216489 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14363 POPDC2 popeye domain containing 2 563277 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14364 POPDC3 popeye domain containing 3 450216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14365 PORCN porcupine homolog (Drosophila) 593697 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14366 POSTN periostin, osteoblast specific factor 1319721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14367 POT1 POT1 protection of telomeres 1 homolog (S. pombe) 996255 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14368 POTEB 907530 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14369 POU1F1 POU class 1 homeobox 1 495846 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14370 POU2AF1 POU class 2 associating factor 1 401037 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14371 POU3F1 POU class 3 homeobox 1 209391 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14372 POU3F3 POU class 3 homeobox 3 207870 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14373 POU3F4 POU class 3 homeobox 4 552630 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14374 POU5F1 POU class 5 homeobox 1 542997 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14375 PPA2 pyrophosphatase (inorganic) 2 452244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14376 PPAP2B phosphatidic acid phosphatase type 2B 414219 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14377 PPAPDC2 phosphatidic acid phosphatase type 2 domain containing 2 277836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14378 PPARD peroxisome proliferator-activated receptor delta 688506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14379 PPBP pro-platelet basic protein (chemokine (C-X-C motif) ligand 7) 202293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14380 PPCDC phosphopantothenoylcysteine decarboxylase 321945 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14381 PPCS phosphopantothenoylcysteine synthetase 419289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14382 PPFIA3 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 3 1622400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14383 PPFIBP1 PTPRF interacting protein, binding protein 1 (liprin beta 1) 1608204 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14384 PPFIBP2 PTPRF interacting protein, binding protein 2 (liprin beta 2) 1380561 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14385 PPIA peptidylprolyl isomerase A (cyclophilin A) 257556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14386 PPIAL4G 252993 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14387 PPIC peptidylprolyl isomerase C (cyclophilin C) 272766 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14388 PPID peptidylprolyl isomerase D (cyclophilin D) 539448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14389 PPIE peptidylprolyl isomerase E (cyclophilin E) 491283 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14390 PPIF peptidylprolyl isomerase F (cyclophilin F) 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14391 PPIG peptidylprolyl isomerase G (cyclophilin G) 1172691 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14392 PPIL1 peptidylprolyl isomerase (cyclophilin)-like 1 252486 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14393 PPIL3 peptidylprolyl isomerase (cyclophilin)-like 3 258570 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14394 PPIL4 peptidylprolyl isomerase (cyclophilin)-like 4 738699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14395 PPIL6 peptidylprolyl isomerase (cyclophilin)-like 6 420303 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14396 PPM1A protein phosphatase 1A (formerly 2C), magnesium-dependent, alpha isoform 717405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14397 PPM1B protein phosphatase 1B (formerly 2C), magnesium-dependent, beta isoform 774189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14398 PPM1D protein phosphatase 1D magnesium-dependent, delta isoform 749853 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14399 PPM1F protein phosphatase 1F (PP2C domain containing) 313833 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14400 PPM1G protein phosphatase 1G (formerly 2C), magnesium-dependent, gamma isoform 789399 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14401 PPM1J protein phosphatase 1J (PP2C domain containing) 603330 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14402 PPM1K protein phosphatase 1K (PP2C domain containing) 579501 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14403 PPM1M protein phosphatase 1M (PP2C domain containing) 411684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14404 PPM1N 343239 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14405 PPME1 protein phosphatase methylesterase 1 539448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14406 PPP1CA protein phosphatase 1, catalytic subunit, alpha isoform 453258 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14407 PPP1CB protein phosphatase 1, catalytic subunit, beta isoform 486720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14408 PPP1CC protein phosphatase 1, catalytic subunit, gamma isoform 477087 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14409 PPP1R11 protein phosphatase 1, regulatory (inhibitor) subunit 11 199251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14410 PPP1R12B protein phosphatase 1, regulatory (inhibitor) subunit 12B 1558011 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14411 PPP1R12C protein phosphatase 1, regulatory (inhibitor) subunit 12C 417261 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14412 PPP1R13B protein phosphatase 1, regulatory (inhibitor) subunit 13B 1685268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14413 PPP1R14B protein phosphatase 1, regulatory (inhibitor) subunit 14B 141453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14414 PPP1R14C protein phosphatase 1, regulatory (inhibitor) subunit 14C 103428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14415 PPP1R14D protein phosphatase 1, regulatory (inhibitor) subunit 14D 255021 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14416 PPP1R15A protein phosphatase 1, regulatory (inhibitor) subunit 15A 1030731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14417 PPP1R1B protein phosphatase 1, regulatory (inhibitor) subunit 1B (dopamine and cAMP regulated phosphoprotein, DARPP-32) 255528 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14418 PPP1R1C protein phosphatase 1, regulatory (inhibitor) subunit 1C 177450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14419 PPP1R2 protein phosphatase 1, regulatory (inhibitor) subunit 2 261612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14420 PPP1R3C protein phosphatase 1, regulatory (inhibitor) subunit 3C 486720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14421 PPP1R9B protein phosphatase 1, regulatory (inhibitor) subunit 9B 663663 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14422 PPP2CA protein phosphatase 2 (formerly 2A), catalytic subunit, alpha isoform 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14423 PPP2R1A protein phosphatase 2 (formerly 2A), regulatory subunit A , alpha isoform 886236 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14424 PPP2R1B protein phosphatase 2 (formerly 2A), regulatory subunit A, beta isoform 1059123 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14425 PPP2R2A protein phosphatase 2 (formerly 2A), regulatory subunit B, alpha isoform 696111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14426 PPP2R2B protein phosphatase 2 (formerly 2A), regulatory subunit B, beta isoform 756444 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14427 PPP2R2C protein phosphatase 2 (formerly 2A), regulatory subunit B, gamma isoform 551109 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14428 PPP2R5A protein phosphatase 2, regulatory subunit B', alpha isoform 673296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14429 PPP3CC protein phosphatase 3 (formerly 2B), catalytic subunit, gamma isoform 781794 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14430 PPP3R1 protein phosphatase 3 (formerly 2B), regulatory subunit B, alpha isoform 268710 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14431 PPP3R2 protein phosphatase 3 (formerly 2B), regulatory subunit B, beta isoform 266682 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14432 PPP4R1 protein phosphatase 4, regulatory subunit 1 1456611 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14433 PPP5C protein phosphatase 5, catalytic subunit 591162 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14434 PPP6C protein phosphatase 6, catalytic subunit 479115 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14435 PPPDE1 283413 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14436 PPPDE2 172887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14437 PPT1 palmitoyl-protein thioesterase 1 (ceroid-lipofuscinosis, neuronal 1, infantile) 485199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14438 PPTC7 PTC7 protein phosphatase homolog (S. cerevisiae) 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14439 PPY pancreatic polypeptide 98865 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14440 PPYR1 pancreatic polypeptide receptor 1 573924 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14441 PQLC3 PQ loop repeat containing 3 248430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14442 PRAC 40053 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14443 PRAF2 PRA1 domain family, member 2 146523 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14444 PRAM1 PML-RARA regulated adaptor molecule 1 979524 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14445 PRAMEF1 PRAME family member 1 728559 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14446 PRAMEF10 PRAME family member 10 704730 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14447 PRAMEF12 PRAME family member 12 742248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14448 PRAMEF13 PRAME family member 13 276315 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14449 PRAMEF14 PRAME family member 14 561249 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14450 PRAMEF16 PRAME family member 16 206856 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14451 PRAMEF18 PRAME family member 18 513591 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14452 PRAMEF19 PRAME family member 19 513591 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14453 PRAMEF6 PRAME family member 6 640341 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14454 PRAP1 proline-rich acidic protein 1 148044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14455 PRB1 proline-rich protein BstNI subfamily 1 412191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14456 PRB4 proline-rich protein BstNI subfamily 4 383292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14457 PRC1 protein regulator of cytokinesis 1 967356 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14458 PRCC papillary renal cell carcinoma (translocation-associated) 523224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14459 PRCD progressive rod-cone degeneration 44109 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14460 PRDM11 PR domain containing 11 792441 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14461 PRDM5 PR domain containing 5 943020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14462 PRDM7 PR domain containing 7 770133 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14463 PRDM9 PR domain containing 9 1381575 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14464 PRDX2 peroxiredoxin 2 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14465 PRDX3 peroxiredoxin 3 384813 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14466 PRDX4 peroxiredoxin 4 373152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14467 PRDX5 peroxiredoxin 5 244881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14468 PRDX6 peroxiredoxin 6 303186 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14469 PREB prolactin regulatory element binding 536913 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14470 PRELID1 PRELI domain containing 1 301665 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14471 PRELID2 PRELI domain containing 2 263133 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14472 PRELP proline/arginine-rich end leucine-rich repeat protein 586599 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14473 PRG3 proteoglycan 3 230178 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14474 PRH1 proline-rich protein HaeIII subfamily 1 262119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14475 PRH2 proline-rich protein HaeIII subfamily 2 260091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14476 PRHOXNB parahox cluster neighbor 90753 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14477 PRICKLE4 prickle homolog 4 (Drosophila) 597753 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14478 PRIM1 primase, DNA, polypeptide 1 (49kDa) 545532 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14479 PRIM2 primase, DNA, polypeptide 2 (58kDa) 802074 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14480 PRIMA1 proline rich membrane anchor 1 175422 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14481 PRKAA1 protein kinase, AMP-activated, alpha 1 catalytic subunit 860379 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14482 PRKAB2 protein kinase, AMP-activated, beta 2 non-catalytic subunit 348309 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14483 PRKACB protein kinase, cAMP-dependent, catalytic, beta 633750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14484 PRKACG protein kinase, cAMP-dependent, catalytic, gamma 537420 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14485 PRKAG1 protein kinase, AMP-activated, gamma 1 non-catalytic subunit 529308 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14486 PRKAR1B protein kinase, cAMP-dependent, regulatory, type I, beta 229164 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14487 PRKCA protein kinase C, alpha 1049997 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14488 PRKCD protein kinase C, delta 1034787 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14489 PRKCE protein kinase C, epsilon 1127061 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14490 PRKD3 protein kinase D3 1391715 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14491 PRKRIP1 PRKR interacting protein 1 (IL11 inducible) 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14492 PRKX protein kinase, X-linked 413205 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14493 PRL prolactin 356928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14494 PRLH prolactin releasing hormone 85176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14495 PRLHR prolactin releasing hormone receptor 419289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14496 PRM1 protamine 1 83148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14497 PRM2 protamine 2 160719 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14498 PRMT1 protein arginine methyltransferase 1 542490 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14499 PRMT2 protein arginine methyltransferase 2 488748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14500 PRNP prion protein (p27-30) (Creutzfeldt-Jakob disease, Gerstmann-Strausler-Scheinker syndrome, fatal familial insomnia) 387348 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14501 PROCA1 520689 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14502 PROCR protein C receptor, endothelial (EPCR) 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14503 PRODH proline dehydrogenase (oxidase) 1 435006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14504 PROK1 prokineticin 1 167310 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14505 PROKR1 prokineticin receptor 1 603330 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14506 PROKR2 prokineticin receptor 2 589641 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14507 PROL1 proline rich, lacrimal 1 382785 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14508 PROM2 prominin 2 1169142 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14509 PROP1 PROP paired-like homeobox 1 351351 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14510 PROS1 protein S (alpha) 1019577 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14511 PROSC proline synthetase co-transcribed homolog (bacterial) 383799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14512 PROX2 prospero homeobox 2 910065 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14513 PROZ protein Z, vitamin K-dependent plasma glycoprotein 478608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14514 PRPF18 PRP18 pre-mRNA processing factor 18 homolog (S. cerevisiae) 541983 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14515 PRPF3 PRP3 pre-mRNA processing factor 3 homolog (S. cerevisiae) 1070784 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14516 PRPF31 PRP31 pre-mRNA processing factor 31 homolog (S. cerevisiae) 460863 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14517 PRPF40A PRP40 pre-mRNA processing factor 40 homolog A (S. cerevisiae) 1282710 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14518 PRPF6 PRP6 pre-mRNA processing factor 6 homolog (S. cerevisiae) 1258374 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14519 PRPH peripherin 452244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14520 PRPH2 peripherin 2 (retinal degeneration, slow) 533871 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14521 PRPS1 phosphoribosyl pyrophosphate synthetase 1 499395 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14522 PRPS1L1 phosphoribosyl pyrophosphate synthetase 1-like 1 487227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14523 PRPSAP1 phosphoribosyl pyrophosphate synthetase-associated protein 1 519168 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14524 PRR13 proline rich 13 179985 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14525 PRR14 proline rich 14 898911 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14526 PRR15L 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14527 PRR16 proline rich 16 385320 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14528 PRR19 proline rich 19 547053 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14529 PRR5-ARHGAP8 642876 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14530 PRRC1 proline-rich coiled-coil 1 694590 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14531 PRRG1 proline rich Gla (G-carboxyglutamic acid) 1 339183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14532 PRRG2 proline rich Gla (G-carboxyglutamic acid) 2 203307 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14533 PRRG3 proline rich Gla (G-carboxyglutamic acid) 3 (transmembrane) 358956 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14534 PRRG4 proline rich Gla (G-carboxyglutamic acid) 4 (transmembrane) 355407 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14535 PRRT1 proline-rich transmembrane protein 1 238290 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14536 PRRT2 proline-rich transmembrane protein 2 524238 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14537 PRRX2 paired related homeobox 2 163761 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14538 PRSS1 protease, serine, 1 (trypsin 1) 387348 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14539 PRSS16 protease, serine, 16 (thymus) 739206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14540 PRSS2 protease, serine, 2 (trypsin 2) 387348 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14541 PRSS21 protease, serine, 21 (testisin) 354900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14542 PRSS22 protease, serine, 22 314340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14543 PRSS27 protease, serine 27 269217 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14544 PRSS3 protease, serine, 3 387348 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14545 PRSS38 358956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14546 PRSS42 265161 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14547 PRSS45 222066 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14548 PRSS48 488241 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14549 PRSS53 686985 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14550 PRSS54 582036 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14551 PRSS55 537420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14552 PRTFDC1 phosphoribosyl transferase domain containing 1 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14553 PSAP prosaposin (variant Gaucher disease and variant metachromatic leukodystrophy) 785343 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14554 PSAPL1 prosaposin-like 1 360477 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14555 PSAT1 phosphoserine aminotransferase 1 550095 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14556 PSCA prostate stem cell antigen 78585 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14557 PSD3 pleckstrin and Sec7 domain containing 3 1632033 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14558 PSD4 pleckstrin and Sec7 domain containing 4 1562574 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14559 PSEN1 presenilin 1 (Alzheimer disease 3) 732108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14560 PSENEN presenilin enhancer 2 homolog (C. elegans) 161226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14561 PSG2 pregnancy specific beta-1-glycoprotein 2 521196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14562 PSG5 pregnancy specific beta-1-glycoprotein 5 521196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14563 PSG7 pregnancy specific beta-1-glycoprotein 7 650988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14564 PSG8 pregnancy specific beta-1-glycoprotein 8 659607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14565 PSMA1 proteasome (prosome, macropain) subunit, alpha type, 1 459342 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14566 PSMA2 proteasome (prosome, macropain) subunit, alpha type, 2 373659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14567 PSMA3 proteasome (prosome, macropain) subunit, alpha type, 3 411684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14568 PSMA4 proteasome (prosome, macropain) subunit, alpha type, 4 414726 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14569 PSMA6 proteasome (prosome, macropain) subunit, alpha type, 6 389883 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14570 PSMA7 proteasome (prosome, macropain) subunit, alpha type, 7 342225 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14571 PSMA8 proteasome (prosome, macropain) subunit, alpha type, 8 405093 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14572 PSMB1 proteasome (prosome, macropain) subunit, beta type, 1 372138 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14573 PSMB10 proteasome (prosome, macropain) subunit, beta type, 10 350337 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14574 PSMB11 proteasome (prosome, macropain) subunit, beta type, 11 459342 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14575 PSMB2 proteasome (prosome, macropain) subunit, beta type, 2 294567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14576 PSMB3 proteasome (prosome, macropain) subunit, beta type, 3 325494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14577 PSMB4 proteasome (prosome, macropain) subunit, beta type, 4 417261 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14578 PSMB5 proteasome (prosome, macropain) subunit, beta type, 5 407628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14579 PSMB7 proteasome (prosome, macropain) subunit, beta type, 7 385827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14580 PSMB9 proteasome (prosome, macropain) subunit, beta type, 9 (large multifunctional peptidase 2) 314340 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14581 PSMC1 proteasome (prosome, macropain) 26S subunit, ATPase, 1 689520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14582 PSMC2 proteasome (prosome, macropain) 26S subunit, ATPase, 2 684450 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14583 PSMC3 proteasome (prosome, macropain) 26S subunit, ATPase, 3 625131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14584 PSMC3IP PSMC3 interacting protein 347802 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14585 PSMC5 proteasome (prosome, macropain) 26S subunit, ATPase, 5 591669 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14586 PSMD10 proteasome (prosome, macropain) 26S subunit, non-ATPase, 10 355407 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14587 PSMD11 proteasome (prosome, macropain) 26S subunit, non-ATPase, 11 621582 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14588 PSMD12 proteasome (prosome, macropain) 26S subunit, non-ATPase, 12 660621 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14589 PSMD13 proteasome (prosome, macropain) 26S subunit, non-ATPase, 13 590655 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14590 PSMD14 proteasome (prosome, macropain) 26S subunit, non-ATPase, 14 493311 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14591 PSMD7 proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 468975 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14592 PSME1 proteasome (prosome, macropain) activator subunit 1 (PA28 alpha) 423345 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14593 PSME2 proteasome (prosome, macropain) activator subunit 2 (PA28 beta) 387348 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14594 PSME3 proteasome (prosome, macropain) activator subunit 3 (PA28 gamma; Ki) 429936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14595 PSMF1 proteasome (prosome, macropain) inhibitor subunit 1 (PI31) 427908 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14596 PSMG1 proteasome (prosome, macropain) assembly chaperone 1 383799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14597 PSMG3 proteasome (prosome, macropain) assembly chaperone 3 190632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14598 PSORS1C1 psoriasis susceptibility 1 candidate 1 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14599 PSORS1C2 psoriasis susceptibility 1 candidate 2 212433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14600 PSPC1 paraspeckle component 1 815256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14601 PSPH phosphoserine phosphatase 353886 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14602 PSPN persephin 76557 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14603 PSRC1 proline/serine-rich coiled-coil 1 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14604 PSTPIP2 proline-serine-threonine phosphatase interacting protein 2 466440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14605 PTAFR platelet-activating factor receptor 523731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14606 PTAR1 protein prenyltransferase alpha subunit repeat containing 1 583557 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14607 PTBP2 polypyrimidine tract binding protein 2 831480 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14608 PTCD1 pentatricopeptide repeat domain 1 1069770 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14609 PTCH2 patched homolog 2 (Drosophila) 1686789 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14610 PTDSS1 phosphatidylserine synthase 1 746811 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14611 PTER phosphotriesterase related 540462 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14612 PTF1A pancreas specific transcription factor, 1a 142974 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14613 PTGER2 prostaglandin E receptor 2 (subtype EP2), 53kDa 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14614 PTGER4 prostaglandin E receptor 4 (subtype EP4) 628173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14615 PTGES prostaglandin E synthase 110019 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14616 PTGES2 prostaglandin E synthase 2 372645 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14617 PTGES3 prostaglandin E synthase 3 (cytosolic) 258063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14618 PTGIR prostaglandin I2 (prostacyclin) receptor (IP) 201279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14619 PTGIS prostaglandin I2 (prostacyclin) synthase 663663 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14620 PTGR1 520182 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14621 PTGR2 553644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14622 PTGS1 prostaglandin-endoperoxide synthase 1 (prostaglandin G/H synthase and cyclooxygenase) 934908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14623 PTH parathyroid hormone 180492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14624 PTHLH parathyroid hormone-like hormone 225615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14625 PTK6 PTK6 protein tyrosine kinase 6 240825 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14626 PTMA prothymosin, alpha 171366 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14627 PTN pleiotrophin (heparin binding growth factor 8, neurite growth-promoting factor 1) 265161 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14628 PTOV1 prostate tumor overexpressed gene 1 494325 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14629 PTP4A1 protein tyrosine phosphatase type IVA, member 1 274794 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14630 PTP4A2 protein tyrosine phosphatase type IVA, member 2 265668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14631 PTP4A3 protein tyrosine phosphatase type IVA, member 3 82134 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14632 PTPDC1 protein tyrosine phosphatase domain containing 1 1289301 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14633 PTPLB protein tyrosine phosphatase-like (proline instead of catalytic arginine), member b 321438 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14634 PTPMT1 protein tyrosine phosphatase, mitochondrial 1 218010 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14635 PTPN1 protein tyrosine phosphatase, non-receptor type 1 649467 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14636 PTPN11 protein tyrosine phosphatase, non-receptor type 11 (Noonan syndrome 1) 924768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14637 PTPN21 protein tyrosine phosphatase, non-receptor type 21 1527591 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14638 PTPN23 protein tyrosine phosphatase, non-receptor type 23 1897701 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14639 PTPN3 protein tyrosine phosphatase, non-receptor type 3 1440894 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14640 PTPN6 protein tyrosine phosphatase, non-receptor type 6 844662 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14641 PTPN9 protein tyrosine phosphatase, non-receptor type 9 895869 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14642 PTPRK protein tyrosine phosphatase, receptor type, K 2211027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14643 PTPRN protein tyrosine phosphatase, receptor type, N 1410981 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14644 PTRF polymerase I and transcript release factor 387855 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14645 PTRH1 peptidyl-tRNA hydrolase 1 homolog (S. cerevisiae) 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14646 PTRH2 peptidyl-tRNA hydrolase 2 275808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14647 PTS 6-pyruvoyltetrahydropterin synthase 190125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14648 PTTG1 pituitary tumor-transforming 1 318903 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14649 PTTG1IP pituitary tumor-transforming 1 interacting protein 227136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14650 PTTG2 pituitary tumor-transforming 2 294060 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14651 PTX4 556179 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14652 PURA purine-rich element binding protein A 233727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14653 PURB purine-rich element binding protein B 155142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14654 PURG purine-rich element binding protein G 420810 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14655 PUS1 pseudouridylate synthase 1 421317 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14656 PUS3 pseudouridylate synthase 3 739206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14657 PUS7 pseudouridylate synthase 7 homolog (S. cerevisiae) 1037322 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14658 PUS7L pseudouridylate synthase 7 homolog (S. cerevisiae)-like 1083966 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14659 PVR poliovirus receptor 574431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14660 PVRL4 poliovirus receptor-related 4 795483 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14661 PWP1 PWP1 homolog (S. cerevisiae) 793962 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14662 PXMP2 peroxisomal membrane protein 2, 22kDa 244374 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14663 PXT1 peroxisomal, testis specific 1 123708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14664 PYCR2 pyrroline-5-carboxylate reductase family, member 2 466440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14665 PYDC1 PYD (pyrin domain) containing 1 127764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14666 PYDC2 151086 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14667 PYGO1 pygopus homolog 1 (Drosophila) 644904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14668 PYGO2 pygopus homolog 2 (Drosophila) 467454 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14669 PYROXD2 905502 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14670 PYY peptide YY 57291 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14671 ProSAPiP1 478608 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14672 QDPR quinoid dihydropteridine reductase 315354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14673 QKI quaking homolog, KH domain RNA binding (mouse) 515112 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14674 QPRT quinolinate phosphoribosyltransferase (nicotinate-nucleotide pyrophosphorylase (carboxylating)) 392418 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14675 QRFP pyroglutamylated RFamide peptide 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14676 QRFPR 597753 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14677 QRICH1 glutamine-rich 1 1200069 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14678 QRSL1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 812721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14679 QSOX1 quiescin Q6 sulfhydryl oxidase 1 1023126 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14680 QSOX2 quiescin Q6 sulfhydryl oxidase 2 917670 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14681 QTRTD1 queuine tRNA-ribosyltransferase domain containing 1 648960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14682 R3HDM1 R3H domain containing 1 1690338 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14683 R3HDM2 R3H domain containing 2 993720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14684 RAB10 RAB10, member RAS oncogene family 317889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14685 RAB11B RAB11B, member RAS oncogene family 293046 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14686 RAB11FIP2 RAB11 family interacting protein 2 (class I) 790413 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14687 RAB11FIP5 RAB11 family interacting protein 5 (class I) 790920 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14688 RAB12 RAB12, member RAS oncogene family 220545 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14689 RAB13 RAB13, member RAS oncogene family 310284 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14690 RAB14 RAB14, member RAS oncogene family 342732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14691 RAB15 RAB15, member RAS onocogene family 267189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14692 RAB17 RAB17, member RAS oncogene family 333606 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14693 RAB18 RAB18, member RAS oncogene family 292539 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14694 RAB19 RAB19, member RAS oncogene family 337662 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14695 RAB1B RAB1B, member RAS oncogene family 309777 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14696 RAB20 RAB20, member RAS oncogene family 307749 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14697 RAB22A RAB22A, member RAS oncogene family 290511 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14698 RAB23 RAB23, member RAS oncogene family 374166 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14699 RAB26 RAB26, member RAS oncogene family 134355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14700 RAB27A RAB27A, member RAS oncogene family 347802 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14701 RAB27B RAB27B, member RAS oncogene family 343239 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14702 RAB31 RAB31, member RAS oncogene family 234234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14703 RAB32 RAB32, member RAS oncogene family 270231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14704 RAB33B RAB33B, member RAS oncogene family 225615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14705 RAB34 RAB34, member RAS oncogene family 371631 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14706 RAB35 RAB35, member RAS oncogene family 291018 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14707 RAB37 RAB37, member RAS oncogene family 407121 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14708 RAB38 RAB38, member RAS oncogene family 317382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14709 RAB39 RAB39, member RAS oncogene family 280878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14710 RAB3A RAB3A, member RAS oncogene family 344253 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14711 RAB3B RAB3B, member RAS oncogene family 342732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14712 RAB3D RAB3D, member RAS oncogene family 342732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14713 RAB3IP RAB3A interacting protein (rabin3) 747825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14714 RAB40B RAB40B, member RAS oncogene family 337155 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14715 RAB40C RAB40C, member RAS oncogene family 176943 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14716 RAB41 RAB41, member RAS oncogene family 353886 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14717 RAB4A RAB4A, member RAS oncogene family 329550 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14718 RAB4B RAB4B, member RAS oncogene family 328029 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14719 RAB5A RAB5A, member RAS oncogene family 338676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14720 RAB5B RAB5B, member RAS oncogene family 338676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14721 RAB6B RAB6B, member RAS oncogene family 334113 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14722 RAB6C RAB6C, member RAS oncogene family 389883 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14723 RAB7A RAB7A, member RAS oncogene family 326508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14724 RAB7L1 RAB7, member RAS oncogene family-like 1 318903 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14725 RAB8A RAB8A, member RAS oncogene family 332592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14726 RAB8B RAB8B, member RAS oncogene family 269724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14727 RAB9A RAB9A, member RAS oncogene family 309270 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14728 RABEPK Rab9 effector protein with kelch motifs 581529 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14729 RABGAP1 RAB GTPase activating protein 1 1624935 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14730 RABIF RAB interacting factor 126750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14731 RABL2B RAB, member of RAS oncogene family-like 2B 376701 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14732 RABL3 RAB, member of RAS oncogene family-like 3 202293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14733 RABL5 RAB, member RAS oncogene family-like 5 271245 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14734 RAC1 ras-related C3 botulinum toxin substrate 1 (rho family, small GTP binding protein Rac1) 316875 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14735 RAC2 ras-related C3 botulinum toxin substrate 2 (rho family, small GTP binding protein Rac2) 198237 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14736 RACGAP1 Rac GTPase activating protein 1 995241 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14737 RAD1 RAD1 homolog (S. pombe) 440583 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14738 RAD23A RAD23 homolog A (S. cerevisiae) 532857 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14739 RAD23B RAD23 homolog B (S. cerevisiae) 608400 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14740 RAD51 RAD51 homolog (RecA homolog, E. coli) (S. cerevisiae) 535392 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14741 RAD51AP2 1770444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14742 RAD51C RAD51 homolog C (S. cerevisiae) 593697 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14743 RAD51L1 RAD51-like 1 (S. cerevisiae) 626652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14744 RAD51L3 RAD51-like 3 (S. cerevisiae) 613470 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14745 RAD52 RAD52 homolog (S. cerevisiae) 659607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14746 RAD54L2 RAD54-like 2 (S. cerevisiae) 2147652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14747 RAD9B RAD9 homolog B (S. cerevisiae) 602823 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14748 RAET1E retinoic acid early transcript 1E 409656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14749 RAET1G retinoic acid early transcript 1G 389883 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14750 RAET1L retinoic acid early transcript 1L 383799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14751 RAG1AP1 recombination activating gene 1 activating protein 1 349830 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14752 RAG2 recombination activating gene 2 805116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14753 RALA v-ral simian leukemia viral oncogene homolog A (ras related) 322959 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14754 RALB v-ral simian leukemia viral oncogene homolog B (ras related; GTP binding protein) 322959 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14755 RALBP1 ralA binding protein 1 994227 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14756 RALGAPA1 3201198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14757 RALGDS ral guanine nucleotide dissociation stimulator 640341 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14758 RALGPS1 Ral GEF with PH domain and SH3 binding motif 1 885222 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14759 RALGPS2 Ral GEF with PH domain and SH3 binding motif 2 926796 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14760 RAMP1 receptor (G protein-coupled) activity modifying protein 1 168324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14761 RAMP2 receptor (G protein-coupled) activity modifying protein 2 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14762 RANBP1 RAN binding protein 1 85176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14763 RANBP10 RAN binding protein 10 769626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14764 RANGRF RAN guanine nucleotide release factor 339183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14765 RAP1A RAP1A, member of RAS oncogene family 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14766 RAP1B RAP1B, member of RAS oncogene family 293553 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14767 RAP1GAP RAP1 GTPase activating protein 672282 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14768 RAP1GAP2 680901 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14769 RAP2C RAP2C, member of RAS oncogene family 283920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14770 RAPGEF5 Rap guanine nucleotide exchange factor (GEF) 5 1097148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14771 RAPGEFL1 Rap guanine nucleotide exchange factor (GEF)-like 1 530829 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14772 RAPH1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 1458639 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14773 RAPSN receptor-associated protein of the synapse 430443 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14774 RARRES2 retinoic acid receptor responder (tazarotene induced) 2 129792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14775 RARRES3 retinoic acid receptor responder (tazarotene induced) 3 259077 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14776 RASA3 RAS p21 protein activator 3 625638 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14777 RASD2 RASD family, member 2 410163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14778 RASEF RAS and EF-hand domain containing 940992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14779 RASGEF1A RasGEF domain family, member 1A 428922 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14780 RASGEF1B RasGEF domain family, member 1B 744783 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14781 RASGRF2 Ras protein-specific guanine nucleotide-releasing factor 2 1877928 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14782 RASGRP1 RAS guanyl releasing protein 1 (calcium and DAG-regulated) 1222377 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14783 RASGRP3 RAS guanyl releasing protein 3 (calcium and DAG-regulated) 1083459 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14784 RASL10B RAS-like, family 10, member B 248430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14785 RASL11A RAS-like, family 11, member A 312819 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14786 RASL12 RAS-like, family 12 335127 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14787 RASSF1 Ras association (RalGDS/AF-6) domain family member 1 375687 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14788 RASSF2 Ras association (RalGDS/AF-6) domain family member 2 484692 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14789 RASSF3 Ras association (RalGDS/AF-6) domain family member 3 315354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14790 RASSF4 Ras association (RalGDS/AF-6) domain family member 4 457314 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14791 RASSF6 Ras association (RalGDS/AF-6) domain family member 6 509535 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14792 RASSF8 Ras association (RalGDS/AF-6) domain family (N-terminal) member 8 583050 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14793 RASSF9 Ras association (RalGDS/AF-6) domain family (N-terminal) member 9 641355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14794 RAVER2 ribonucleoprotein, PTB-binding 2 928824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14795 RAX retina and anterior neural fold homeobox 161733 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14796 RBBP4 retinoblastoma binding protein 4 662142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14797 RBBP7 retinoblastoma binding protein 7 662142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14798 RBBP8 retinoblastoma binding protein 8 1398813 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14799 RBKS ribokinase 504972 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14800 RBM10 RNA binding motif protein 10 1307046 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14801 RBM11 RNA binding motif protein 11 345774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14802 RBM15B RNA binding motif protein 15B 960258 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14803 RBM18 RNA binding motif protein 18 300651 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14804 RBM22 RNA binding motif protein 22 662649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14805 RBM28 RNA binding motif protein 28 1192971 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14806 RBM3 RNA binding motif (RNP1, RRM) protein 3 217503 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14807 RBM38 RNA binding motif protein 38 174408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14808 RBM39 RNA binding motif protein 39 840099 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14809 RBM4 RNA binding motif protein 4 559221 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14810 RBM43 RNA binding motif protein 43 549081 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14811 RBM45 RNA binding motif protein 45 696618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14812 RBM46 RNA binding motif protein 46 820326 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14813 RBM7 RNA binding motif protein 7 416247 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14814 RBMS2 RNA binding motif, single stranded interacting protein 2 646932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14815 RBMS3 RNA binding motif, single stranded interacting protein 698646 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14816 RBMX RNA binding motif protein, X-linked 612456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14817 RBMX2 RNA binding motif protein, X-linked 2 495339 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14818 RBMXL1 596739 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14819 RBP2 retinol binding protein 2, cellular 213447 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14820 RBP3 retinol binding protein 3, interstitial 1137201 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14821 RBP4 retinol binding protein 4, plasma 202293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14822 RBP5 retinol binding protein 5, cellular 214968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14823 RBP7 retinol binding protein 7, cellular 174408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14824 RBPJ recombination signal binding protein for immunoglobulin kappa J region 773175 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14825 RBPMS RNA binding protein with multiple splicing 392925 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14826 RBPMS2 RNA binding protein with multiple splicing 2 264654 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14827 RBX1 ring-box 1 134355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14828 RCAN1 regulator of calcineurin 1 303693 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14829 RCAN2 regulator of calcineurin 2 309270 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14830 RCAN3 RCAN family member 3 376194 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14831 RCC1 regulator of chromosome condensation 1 518154 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14832 RCC2 regulator of chromosome condensation 2 668226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14833 RCE1 RCE1 homolog, prenyl protein peptidase (S. cerevisiae) 417261 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14834 RCHY1 ring finger and CHY zinc finger domain containing 1 416754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14835 RCL1 RNA terminal phosphate cyclase-like 1 516126 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14836 RCN2 reticulocalbin 2, EF-hand calcium binding domain 422838 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14837 RCN3 reticulocalbin 3, EF-hand calcium binding domain 302679 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14838 RCOR2 REST corepressor 2 495846 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14839 RCVRN recoverin 256542 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14840 RD3 retinal degeneration 3 169338 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14841 RDH10 retinol dehydrogenase 10 (all-trans) 383799 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14842 RDH13 retinol dehydrogenase 13 (all-trans/9-cis) 366561 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14843 RDH8 retinol dehydrogenase 8 (all-trans) 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14844 RDM1 RAD52 motif 1 483678 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14845 RECK reversion-inducing-cysteine-rich protein with kazal motifs 1468272 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14846 RECQL RecQ protein-like (DNA helicase Q1-like) 1017042 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14847 REEP2 receptor accessory protein 2 397488 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14848 REEP3 receptor accessory protein 3 376194 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14849 REEP4 receptor accessory protein 4 312819 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14850 REEP5 receptor accessory protein 5 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14851 REG1A regenerating islet-derived 1 alpha (pancreatic stone protein, pancreatic thread protein) 264147 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14852 REG1B regenerating islet-derived 1 beta (pancreatic stone protein, pancreatic thread protein) 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14853 REG4 regenerating islet-derived family, member 4 302679 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14854 RELB v-rel reticuloendotheliosis viral oncogene homolog B, nuclear factor of kappa light polypeptide gene enhancer in B-cells 3 (avian) 790920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14855 RELL1 RELT-like 1 379236 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14856 RELT RELT tumor necrosis factor receptor 558714 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14857 REM2 RAS (RAD and GEM)-like GTP binding 2 322452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14858 REN renin 635778 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14859 REPIN1 replication initiator 1 334620 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14860 REPS1 RALBP1 associated Eps domain containing 1 1173198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14861 REPS2 RALBP1 associated Eps domain containing 2 901446 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14862 RER1 RER1 retention in endoplasmic reticulum 1 homolog (S. cerevisiae) 311805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14863 RETN resistin 103428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14864 REXO4 REX4, RNA exonuclease 4 homolog (S. cerevisiae) 655551 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14865 RFC2 replication factor C (activator 1) 2, 40kDa 479115 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14866 RFC3 replication factor C (activator 1) 3, 38kDa 540462 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14867 RFC5 replication factor C (activator 1) 5, 36.5kDa 505986 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14868 RFESD Rieske (Fe-S) domain containing 246909 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14869 RFK riboflavin kinase 201786 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14870 RFPL2 ret finger protein-like 2 588120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14871 RFPL4B ret finger protein-like 4B 403572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14872 RFT1 RFT1 homolog (S. cerevisiae) 816777 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14873 RFTN1 raftlin, lipid raft linker 1 898911 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14874 RFWD2 ring finger and WD repeat domain 2 945555 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14875 RFWD3 ring finger and WD repeat domain 3 1194492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14876 RFX5 regulatory factor X, 5 (influences HLA class II expression) 956709 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14877 RFXAP regulatory factor X-associated protein 142467 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14878 RG9MTD1 RNA (guanine-9-) methyltransferase domain containing 1 616512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14879 RG9MTD3 RNA (guanine-9-) methyltransferase domain containing 3 498381 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14880 RGL1 ral guanine nucleotide dissociation stimulator-like 1 1259388 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14881 RGL3 ral guanine nucleotide dissociation stimulator-like 3 922740 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14882 RGL4 ral guanine nucleotide dissociation stimulator-like 4 485199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14883 RGMA RGM domain family, member A 388869 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14884 RGN regucalcin (senescence marker protein-30) 405600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14885 RGP1 RGP1 retrograde golgi transport homolog (S. cerevisiae) 641355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14886 RGR retinal G protein coupled receptor 464412 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14887 RGS10 regulator of G-protein signaling 10 260091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14888 RGS13 regulator of G-protein signaling 13 251472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14889 RGS16 regulator of G-protein signaling 16 294567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14890 RGS18 regulator of G-protein signaling 18 369096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14891 RGS19 regulator of G-protein signaling 19 277836 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14892 RGS2 regulator of G-protein signaling 2, 24kDa 332592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14893 RGS21 regulator of G-protein signaling 21 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14894 RGS6 regulator of G-protein signaling 6 751881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14895 RGS7BP regulator of G-protein signaling 7 binding protein 404586 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14896 RGS8 regulator of G-protein signaling 8 330057 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14897 RHAG Rh-associated glycoprotein 643890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14898 RHBDD1 rhomboid domain containing 1 492804 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14899 RHBDF1 rhomboid 5 homolog 1 (Drosophila) 589641 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14900 RHBDL2 rhomboid, veinlet-like 2 (Drosophila) 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14901 RHBDL3 rhomboid, veinlet-like 3 (Drosophila) 539448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14902 RHBG Rh family, B glycoprotein 718926 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14903 RHCE Rh blood group, CcEe antigens 559221 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14904 RHEB Ras homolog enriched in brain 269217 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14905 RHOBTB1 Rho-related BTB domain containing 1 1078389 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14906 RHOBTB2 Rho-related BTB domain containing 2 1125033 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14907 RHOC ras homolog gene family, member C 303186 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14908 RHOD ras homolog gene family, member D 254007 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14909 RHOF ras homolog gene family, member F (in filopodia) 213954 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14910 RHOG ras homolog gene family, member G (rho G) 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14911 RHOH ras homolog gene family, member H 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14912 RHOJ ras homolog gene family, member J 337155 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14913 RHOQ ras homolog gene family, member Q 251979 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14914 RHOU ras homolog gene family, member U 265161 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14915 RHOV ras homolog gene family, member V 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14916 RHOXF1 Rhox homeobox family, member 1 83655 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14917 RHOXF2B Rhox homeobox family, member 2B 467961 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14918 RHPN2 rhophilin, Rho GTPase binding protein 2 1038336 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14919 RIBC2 RIB43A domain with coiled-coils 2 290511 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14920 RICH2 1023126 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14921 RILPL1 Rab interacting lysosomal protein-like 1 428415 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -14922 RILPL2 Rab interacting lysosomal protein-like 2 156663 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14923 RIMKLB 598767 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14924 RIN3 Ras and Rab interactor 3 1238601 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14925 RIOK1 RIO kinase 1 (yeast) 861900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14926 RIOK3 RIO kinase 3 (yeast) 808158 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14927 RIPK2 receptor-interacting serine-threonine kinase 2 755430 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14928 RIPPLY1 ripply1 homolog (zebrafish) 239304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14929 RIPPLY2 ripply2 homolog (zebrafish) 112047 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14930 RIT1 Ras-like without CAAX 1 344760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14931 RIT2 Ras-like without CAAX 2 341718 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14932 RLIM 956709 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14933 RLN2 relaxin 2 286962 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14934 RLN3 relaxin 3 221559 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14935 RLTPR RGD motif, leucine rich repeats, tropomodulin domain and proline-rich containing 876603 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14936 RMND5A required for meiotic nuclear division 5 homolog A (S. cerevisiae) 540462 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14937 RNASE1 ribonuclease, RNase A family, 1 (pancreatic) 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14938 RNASE10 ribonuclease, RNase A family, 10 (non-active) 332085 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14939 RNASE12 ribonuclease, RNase A family, 12 (non-active) 227136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14940 RNASE13 ribonuclease, RNase A family, 13 (non-active) 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14941 RNASE2 ribonuclease, RNase A family, 2 (liver, eosinophil-derived neurotoxin) 248430 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14942 RNASE4 ribonuclease, RNase A family, 4 227136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14943 RNASE6 ribonuclease, RNase A family, k6 231699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14944 RNASE7 ribonuclease, RNase A family, 7 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14945 RNASEH1 ribonuclease H1 385827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14946 RNASEH2A ribonuclease H2, subunit A 406107 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14947 RNASEH2B ribonuclease H2, subunit B 463905 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14948 RNASEH2C ribonuclease H2, subunit C 169845 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14949 RNASEK ribonuclease, RNase K 56277 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14950 RNASET2 ribonuclease T2 332592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14951 RND1 Rho family GTPase 1 364533 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14952 RND2 Rho family GTPase 2 300651 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14953 RND3 Rho family GTPase 3 382785 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14954 RNF103 ring finger protein 103 1049490 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14955 RNF11 ring finger protein 11 235755 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14956 RNF112 427401 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14957 RNF114 287469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14958 RNF115 421317 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14959 RNF122 ring finger protein 122 234741 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14960 RNF125 ring finger protein 125 279864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14961 RNF13 ring finger protein 13 599274 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14962 RNF130 ring finger protein 130 529815 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14963 RNF133 ring finger protein 133 575445 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14964 RNF139 ring finger protein 139 993720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14965 RNF141 ring finger protein 141 361491 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14966 RNF145 ring finger protein 145 1074840 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14967 RNF146 ring finger protein 146 548067 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14968 RNF148 ring finger protein 148 467454 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14969 RNF149 ring finger protein 149 436527 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14970 RNF150 ring finger protein 150 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14971 RNF152 ring finger protein 152 186576 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14972 RNF165 ring finger protein 165 373659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14973 RNF167 ring finger protein 167 550602 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14974 RNF17 ring finger protein 17 2539563 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14975 RNF170 ring finger protein 170 406107 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14976 RNF175 ring finger protein 175 445146 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14977 RNF181 ring finger protein 181 243360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14978 RNF183 ring finger protein 183 295074 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14979 RNF185 ring finger protein 185 303693 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14980 RNF186 ring finger protein 186 348816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14981 RNF19B ring finger protein 19B 822354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14982 RNF2 ring finger protein 2 524745 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14983 RNF215 ring finger protein 215 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14984 RNF216 ring finger protein 216 1437852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14985 RNF217 ring finger protein 217 433992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14986 RNF24 ring finger protein 24 240318 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14987 RNF25 ring finger protein 25 719940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14988 RNF26 ring finger protein 26 662142 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14989 RNF32 ring finger protein 32 568347 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14990 RNF34 ring finger protein 34 581022 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14991 RNF38 ring finger protein 38 809172 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -14992 RNF39 ring finger protein 39 306228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14993 RNF4 ring finger protein 4 297609 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14994 RNF5 ring finger protein 5 287469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14995 RNF7 ring finger protein 7 88725 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14996 RNF8 ring finger protein 8 744783 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14997 RNFT1 ring finger protein, transmembrane 1 650988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14998 RNGTT RNA guanylyltransferase and 5'-phosphatase 941499 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -14999 RNH1 ribonuclease/angiogenin inhibitor 1 211419 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15000 RNMT RNA (guanine-7-) methyltransferase 745797 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15001 RNMTL1 RNA methyltransferase like 1 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15002 RNPEP arginyl aminopeptidase (aminopeptidase B) 783822 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15003 RNPEPL1 arginyl aminopeptidase (aminopeptidase B)-like 1 236262 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15004 RNPS1 RNA binding protein S1, serine-rich domain 366054 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15005 ROBO3 roundabout, axon guidance receptor, homolog 3 (Drosophila) 1911390 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15006 ROGDI rogdi homolog (Drosophila) 132327 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15007 ROM1 retinal outer segment membrane protein 1 536913 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15008 ROMO1 125736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15009 RORA RAR-related orphan receptor A 958737 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15010 RORB RAR-related orphan receptor B 714363 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15011 RP9 retinitis pigmentosa 9 (autosomal dominant) 270738 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15012 RPA2 replication protein A2, 32kDa 419289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15013 RPA3 replication protein A3, 14kDa 193674 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15014 RPA4 replication protein A4, 34kDa 400530 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15015 RPAIN RPA interacting protein 339183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15016 RPE ribulose-5-phosphate-3-epimerase 389883 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15017 RPF1 550602 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15018 RPF2 483678 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15019 RPGRIP1 retinitis pigmentosa GTPase regulator interacting protein 1 1997073 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15020 RPIA ribose 5-phosphate isomerase A (ribose 5-phosphate epimerase) 367575 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15021 RPL10 ribosomal protein L10 339183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15022 RPL10A ribosomal protein L10a 316368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15023 RPL10L ribosomal protein L10-like 329043 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15024 RPL11 ribosomal protein L11 226122 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15025 RPL12 ribosomal protein L12 227136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15026 RPL13 ribosomal protein L13 133341 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15027 RPL14 ribosomal protein L14 337155 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15028 RPL15 ribosomal protein L15 317889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15029 RPL21 ribosomal protein L21 255021 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15030 RPL22 ribosomal protein L22 196209 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15031 RPL22L1 ribosomal protein L22-like 1 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15032 RPL23 ribosomal protein L23 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15033 RPL23A ribosomal protein L23a 234234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15034 RPL24 ribosomal protein L24 218010 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15035 RPL26L1 ribosomal protein L26-like 1 228150 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15036 RPL27 ribosomal protein L27 216489 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15037 RPL27A ribosomal protein L27a 236769 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15038 RPL28 ribosomal protein L28 184041 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15039 RPL3 ribosomal protein L3 568347 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15040 RPL30 ribosomal protein L30 184548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15041 RPL31 ribosomal protein L31 232713 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15042 RPL32 ribosomal protein L32 212940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15043 RPL34 ribosomal protein L34 187590 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15044 RPL35A ribosomal protein L35a 176943 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15045 RPL36A ribosomal protein L36a 172887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15046 RPL36AL ribosomal protein L36a-like 164775 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15047 RPL37 ribosomal protein L37 157170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15048 RPL37A ribosomal protein L37a 149565 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15049 RPL38 ribosomal protein L38 116103 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15050 RPL39 ribosomal protein L39 81627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15051 RPL39L ribosomal protein L39-like 81120 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15052 RPL6 ribosomal protein L6 451737 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15053 RPL7 ribosomal protein L7 390897 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15054 RPL7A ribosomal protein L7a 421824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15055 RPL7L1 ribosomal protein L7-like 1 387855 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15056 RPL8 ribosomal protein L8 369096 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15057 RPL9 ribosomal protein L9 305721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15058 RPLP0 ribosomal protein, large, P0 485199 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15059 RPLP1 ribosomal protein, large, P1 144495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15060 RPN2 ribophorin II 1013493 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15061 RPP21 ribonuclease P/MRP 21kDa subunit 214968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15062 RPRD1A 411684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15063 RPRM reprimo, TP53 dependent G2 arrest mediator candidate 100386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15064 RPS11 ribosomal protein S11 251979 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15065 RPS12 ribosomal protein S12 212433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15066 RPS13 ribosomal protein S13 229671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15067 RPS15A ribosomal protein S15a 207363 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15068 RPS16 ribosomal protein S16 233727 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15069 RPS18 ribosomal protein S18 241332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15070 RPS19 ribosomal protein S19 232206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15071 RPS19BP1 ribosomal protein S19 binding protein 1 175929 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15072 RPS20 ribosomal protein S20 187083 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15073 RPS23 ribosomal protein S23 223080 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15074 RPS24 ribosomal protein S24 219024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15075 RPS25 ribosomal protein S25 199758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15076 RPS26 ribosomal protein S26 184548 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15077 RPS27A ribosomal protein S27a 248937 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15078 RPS29 ribosomal protein S29 116103 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15079 RPS3 ribosomal protein S3 383292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15080 RPS3A ribosomal protein S3A 381771 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15081 RPS6KA5 ribosomal protein S6 kinase, 90kDa, polypeptide 5 1204632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15082 RPS6KB1 ribosomal protein S6 kinase, 70kDa, polypeptide 1 756951 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15083 RPS6KC1 ribosomal protein S6 kinase, 52kDa, polypeptide 1 1598064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15084 RPS7 ribosomal protein S7 230178 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15085 RPS8 ribosomal protein S8 330057 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15086 RPS9 ribosomal protein S9 299130 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15087 RPSA ribosomal protein SA 462384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15088 RPTOR 1641666 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15089 RPUSD2 RNA pseudouridylate synthase domain containing 2 607386 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15090 RPUSD3 RNA pseudouridylate synthase domain containing 3 488241 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15091 RPUSD4 RNA pseudouridylate synthase domain containing 4 588627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15092 RQCD1 RCD1 required for cell differentiation1 homolog (S. pombe) 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15093 RRAGA Ras-related GTP binding A 462891 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15094 RRAGC Ras-related GTP binding C 500409 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15095 RRAS related RAS viral (r-ras) oncogene homolog 252993 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15096 RRAS2 related RAS viral (r-ras) oncogene homolog 2 267189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15097 RRH retinal pigment epithelium-derived rhodopsin homolog 528294 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15098 RRM1 ribonucleotide reductase M1 1233024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15099 RRM2B ribonucleotide reductase M2 B (TP53 inducible) 544011 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15100 RRP1B ribosomal RNA processing 1 homolog B (S. cerevisiae) 966342 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15101 RRP7A 272766 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15102 RRP8 657072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15103 RRP9 ribosomal RNA processing 9, small subunit (SSU) processome component, homolog (yeast) 684957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15104 RSBN1L round spermatid basic protein 1-like 1155960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15105 RSC1A1 regulatory solute carrier protein, family 1, member 1 942006 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15106 RSL1D1 ribosomal L1 domain containing 1 764556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15107 RSL24D1 261612 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15108 RSPH6A 1094106 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15109 RSPO1 R-spondin homolog (Xenopus laevis) 404586 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15110 RSPO3 R-spondin 3 homolog (Xenopus laevis) 425373 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15111 RSPO4 R-spondin family, member 4 267696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15112 RSPRY1 ring finger and SPRY domain containing 1 887757 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15113 RSRC1 arginine/serine-rich coiled-coil 1 527787 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15114 RSRC2 arginine/serine-rich coiled-coil 2 699153 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15115 RSU1 Ras suppressor protein 1 439062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15116 RTBDN retbindin 334620 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15117 RTCD1 RNA terminal phosphate cyclase domain 1 529815 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15118 RTF1 Rtf1, Paf1/RNA polymerase II complex component, homolog (S. cerevisiae) 957216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15119 RTP1 receptor (chemosensory) transporter protein 1 405600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15120 RTP3 receptor (chemosensory) transporter protein 3 358449 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15121 RTP4 receptor (chemosensory) transporter protein 4 379743 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15122 RUFY2 RUN and FYVE domain containing 2 1012986 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15123 RUFY4 RUN and FYVE domain containing 4 565305 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15124 RUNDC1 RUN domain containing 1 689520 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15125 RUNDC2A RUN domain containing 2A 582543 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15126 RUNDC3A RUN domain containing 3A 361491 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15127 RUNDC3B RUN domain containing 3B 681408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15128 RUNX2 runt-related transcription factor 2 653523 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15129 RUSC1 RUN and SH3 domain containing 1 1352169 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15130 RUVBL1 RuvB-like 1 (E. coli) 717405 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15131 RUVBL2 RuvB-like 2 (E. coli) 633243 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15132 RWDD1 RWD domain containing 1 376194 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15133 RWDD2B RWD domain containing 2B 460863 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15134 RWDD4A RWD domain containing 4A 287469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15135 RXFP2 relaxin/insulin-like family peptide receptor 2 1184859 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15136 RXRA retinoid X receptor, alpha 574431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15137 RXRB retinoid X receptor, beta 592176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15138 RXRG retinoid X receptor, gamma 754923 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15139 RYBP RING1 and YY1 binding protein 341211 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15140 RYK RYK receptor-like tyrosine kinase 822354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15141 S100A1 S100 calcium binding protein A1 148551 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15142 S100A11 S100 calcium binding protein A11 167310 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15143 S100A12 S100 calcium binding protein A12 145509 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15144 S100A13 S100 calcium binding protein A13 154635 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15145 S100A14 S100 calcium binding protein A14 153621 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15146 S100A16 S100 calcium binding protein A16 162240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15147 S100A2 S100 calcium binding protein A2 153114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15148 S100A3 S100 calcium binding protein A3 159198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15149 S100A4 S100 calcium binding protein A4 159198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15150 S100A5 S100 calcium binding protein A5 174915 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15151 S100A7 S100 calcium binding protein A7 159198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15152 S100A7L2 S100 calcium binding protein A7-like 2 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15153 S100A8 S100 calcium binding protein A8 147030 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15154 S100A9 S100 calcium binding protein A9 178971 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15155 S100B S100 calcium binding protein B 145509 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15156 S100G S100 calcium binding protein G 125736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15157 S100P S100 calcium binding protein P 147030 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15158 S100PBP S100P binding protein 632229 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15159 S100Z S100 calcium binding protein Z 156156 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15160 S1PR1 584571 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15161 S1PR2 501423 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15162 SAA2 serum amyloid A2 193167 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15163 SAA4 serum amyloid A4, constitutive 205335 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15164 SAC3D1 SAC3 domain containing 1 256542 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15165 SACM1L SAC1 suppressor of actin mutations 1-like (yeast) 916656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15166 SAE1 SUMO1 activating enzyme subunit 1 531843 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15167 SAG S-antigen; retina and pineal gland (arrestin) 647439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15168 SALL4 sal-like 4 (Drosophila) 1548378 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15169 SAMD10 sterile alpha motif domain containing 10 267696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15170 SAMD12 sterile alpha motif domain containing 12 329043 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15171 SAMD13 sterile alpha motif domain containing 13 178971 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15172 SAMD14 sterile alpha motif domain containing 14 548067 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15173 SAMD4B sterile alpha motif domain containing 4B 1079910 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15174 SAMD7 sterile alpha motif domain containing 7 694083 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15175 SAMM50 sorting and assembly machinery component 50 homolog (S. cerevisiae) 648453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15176 SAMSN1 SAM domain, SH3 domain and nuclear localization signals 1 585078 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15177 SAP18 Sin3A-associated protein, 18kDa 203814 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15178 SAP30 Sin3A-associated protein, 30kDa 198237 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15179 SAP30BP SAP30 binding protein 492297 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15180 SAP30L SAP30-like 213447 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15181 SAPS2 SAPS domain family, member 2 924768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15182 SAPS3 SAPS domain family, member 3 1248234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15183 SAR1A SAR1 gene homolog A (S. cerevisiae) 314847 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15184 SAR1B SAR1 gene homolog B (S. cerevisiae) 314847 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15185 SARNP 343239 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15186 SART1 squamous cell carcinoma antigen recognized by T cells 583557 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15187 SASH3 SAM and SH3 domain containing 3 590655 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15188 SAV1 salvador homolog 1 (Drosophila) 588627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15189 SBK1 SH3-binding domain kinase 1 431964 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15190 SC5DL sterol-C5-desaturase (ERG3 delta-5-desaturase homolog, S. cerevisiae)-like 464412 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15191 SC65 422838 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15192 SCAF1 SR-related CTD-associated factor 1 936936 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15193 SCAMP1 secretory carrier membrane protein 1 502437 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15194 SCAMP4 secretory carrier membrane protein 4 149058 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15195 SCAMP5 secretory carrier membrane protein 5 371124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15196 SCARA5 scavenger receptor class A, member 5 (putative) 383292 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15197 SCG2 secretogranin II (chromogranin C) 942006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15198 SCGB1A1 secretoglobin, family 1A, member 1 (uteroglobin) 146016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15199 SCGB1D1 secretoglobin, family 1D, member 1 144495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15200 SCGB1D2 secretoglobin, family 1D, member 2 144495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15201 SCGB1D4 secretoglobin, family 1D, member 4 133848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15202 SCGB2A1 secretoglobin, family 2A, member 1 152100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15203 SCGB2A2 secretoglobin, family 2A, member 2 149058 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15204 SCGB3A2 secretoglobin, family 3A, member 2 149058 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15205 SCGBL 128778 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15206 SCLY selenocysteine lyase 490269 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15207 SCMH1 sex comb on midleg homolog 1 (Drosophila) 1031745 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15208 SCML2 sex comb on midleg-like 2 (Drosophila) 1094613 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15209 SCML4 sex comb on midleg-like 4 (Drosophila) 391911 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15210 SCN1B sodium channel, voltage-gated, type I, beta 371631 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15211 SCN2B sodium channel, voltage-gated, type II, beta 336648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15212 SCN3B sodium channel, voltage-gated, type III, beta 338676 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15213 SCN4B sodium channel, voltage-gated, type IV, beta 339690 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15214 SCNN1A sodium channel, nonvoltage-gated 1 alpha 1046955 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15215 SCNN1B sodium channel, nonvoltage-gated 1, beta (Liddle syndrome) 999297 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15216 SCNN1G sodium channel, nonvoltage-gated 1, gamma 1012986 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15217 SCO1 SCO cytochrome oxidase deficient homolog 1 (yeast) 331071 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15218 SCO2 SCO cytochrome oxidase deficient homolog 2 (yeast) 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15219 SCP2 sterol carrier protein 2 841113 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15220 SCRG1 154635 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15221 SCRN1 secernin 1 645918 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15222 SCRN2 secernin 2 527787 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15223 SCRN3 secernin 3 660621 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15224 SCTR secretin receptor 658593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15225 SCUBE3 signal peptide, CUB domain, EGF-like 3 1511367 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15226 SDC1 syndecan 1 447681 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15227 SDC2 syndecan 2 284934 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15228 SDC3 syndecan 3 329550 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15229 SDCBP syndecan binding protein (syntenin) 471003 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15230 SDCCAG3 serologically defined colon cancer antigen 3 488748 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15231 SDF2 stromal cell-derived factor 2 328536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15232 SDF2L1 stromal cell-derived factor 2-like 1 143988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15233 SDHAF2 262119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15234 SDHC succinate dehydrogenase complex, subunit C, integral membrane protein, 15kDa 324987 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15235 SDHD succinate dehydrogenase complex, subunit D, integral membrane protein 251472 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15236 SDPR serum deprivation response (phosphatidylserine binding protein) 652002 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15237 SDR16C5 483678 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15238 SDR42E1 603330 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15239 SDR9C7 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15240 SDS serine dehydratase 427908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15241 SDSL serine dehydratase-like 516126 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15242 SEBOX SEBOX homeobox 311805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15243 SEC11A SEC11 homolog A (S. cerevisiae) 258063 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15244 SEC11C SEC11 homolog C (S. cerevisiae) 259584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15245 SEC14L1 SEC14-like 1 (S. cerevisiae) 1105767 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15246 SEC14L2 SEC14-like 2 (S. cerevisiae) 643383 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15247 SEC14L3 SEC14-like 3 (S. cerevisiae) 622089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15248 SEC14L4 SEC14-like 4 (S. cerevisiae) 593697 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15249 SEC16A SEC16 homolog A (S. cerevisiae) 2798640 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15250 SEC22B SEC22 vesicle trafficking protein homolog B (S. cerevisiae) 298623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15251 SEC22C SEC22 vesicle trafficking protein homolog C (S. cerevisiae) 497874 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15252 SEC23B Sec23 homolog B (S. cerevisiae) 1206660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15253 SEC23IP SEC23 interacting protein 1559025 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15254 SEC61A2 Sec61 alpha 2 subunit (S. cerevisiae) 744276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15255 SEC61B Sec61 beta subunit 103935 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15256 SEC61G Sec61 gamma subunit 111033 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15257 SEC62 604344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15258 SECISBP2 SECIS binding protein 2 1250769 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15259 SECISBP2L 1627977 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15260 SECTM1 secreted and transmembrane 1 370617 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15261 SEL1L sel-1 suppressor of lin-12-like (C. elegans) 1250769 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15262 SELENBP1 selenium binding protein 1 709293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15263 SELK 107991 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15264 SELO 396474 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15265 SELS 204321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15266 SELV 147030 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15267 SEMA3G sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3G 879645 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15268 SEMA4B sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4B 1084473 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15269 SEMA4C sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4C 824889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15270 SEMA4D sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4D 1425684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15271 SEMA6C sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6C 919191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15272 SEMA6D sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6D 1691859 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15273 SENP2 SUMO1/sentrin/SMT3 specific peptidase 2 931866 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15274 SENP3 SUMO1/sentrin/SMT3 specific peptidase 3 497367 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15275 SENP8 SUMO/sentrin specific peptidase family member 8 326001 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15276 SEP15 262626 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15277 SEPHS2 selenophosphate synthetase 2 535899 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15278 SEPN1 selenoprotein N, 1 626145 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15279 SEPP1 selenoprotein P, plasma, 1 589134 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15280 SEPT1 septin 1 554658 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15281 SEPT10 septin 10 697125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15282 SEPT11 septin 11 613977 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15283 SEPT2 septin 2 572403 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15284 SEPT3 septin 3 573417 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15285 SEPT4 septin 4 795990 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15286 SEPT6 septin 6 675831 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15287 SEPT7 septin 7 563277 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15288 SEPT8 septin 8 714870 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15289 SEPT9 septin 9 688506 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15290 SEPW1 selenoprotein W, 1 127257 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15291 SERAC1 serine active site containing 1 1028703 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15292 SERBP1 SERPINE1 mRNA binding protein 1 638313 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15293 SERGEF secretion regulating guanine nucleotide exchange factor 687999 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15294 SERHL2 serine hydrolase-like 2 313326 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15295 SERINC3 serine incorporator 3 698646 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15296 SERINC4 serine incorporator 4 434499 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15297 SERP1 stress-associated endoplasmic reticulum protein 1 107991 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15298 SERP2 stress-associated endoplasmic reticulum protein family member 2 61854 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15299 SERPINA3 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 3 653016 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15300 SERPINA7 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 7 640848 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15301 SERPINA9 serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 9 673296 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15302 SERPINB10 serpin peptidase inhibitor, clade B (ovalbumin), member 10 619554 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15303 SERPINB11 serpin peptidase inhibitor, clade B (ovalbumin), member 11 611949 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15304 SERPINB13 serpin peptidase inhibitor, clade B (ovalbumin), member 13 610428 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15305 SERPINB2 serpin peptidase inhibitor, clade B (ovalbumin), member 2 646932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15306 SERPINB4 serpin peptidase inhibitor, clade B (ovalbumin), member 4 608907 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15307 SERPINB5 serpin peptidase inhibitor, clade B (ovalbumin), member 5 584064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15308 SERPINB6 serpin peptidase inhibitor, clade B (ovalbumin), member 6 585585 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15309 SERPINB7 serpin peptidase inhibitor, clade B (ovalbumin), member 7 593697 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15310 SERPINB8 serpin peptidase inhibitor, clade B (ovalbumin), member 8 589134 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15311 SERPINB9 serpin peptidase inhibitor, clade B (ovalbumin), member 9 585585 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15312 SERPINE2 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2 634257 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15313 SERPINF2 serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2 494325 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15314 SERPING1 serpin peptidase inhibitor, clade G (C1 inhibitor), member 1, (angioedema, hereditary) 748332 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15315 SERPINH1 serpin peptidase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1) 488748 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15316 SERTAD1 SERTA domain containing 1 186576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15317 SERTAD2 SERTA domain containing 2 481143 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15318 SERTAD4 SERTA domain containing 4 549081 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15319 SESN1 sestrin 1 859872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15320 SESN3 sestrin 3 728559 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15321 SETD1A SET domain containing 1A 2358564 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15322 SETD4 SET domain containing 4 702195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15323 SETD6 SET domain containing 6 463398 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15324 SETD8 SET domain containing (lysine methyltransferase) 8 482157 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15325 SETDB2 SET domain, bifurcated 2 1123512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15326 SEZ6 seizure related 6 homolog (mouse) 1116414 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15327 SF3A1 splicing factor 3a, subunit 1, 120kDa 1098669 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15328 SF3A3 splicing factor 3a, subunit 3, 60kDa 781287 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15329 SF3B14 199758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15330 SF3B5 splicing factor 3b, subunit 5, 10kDa 134355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15331 SFN stratifin 380757 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15332 SFRP2 secreted frizzled-related protein 2 381771 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15333 SFRP5 secreted frizzled-related protein 5 370617 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15334 SFRS1 splicing factor, arginine/serine-rich 1 (splicing factor 2, alternate splicing factor) 409656 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15335 SFRS12 splicing factor, arginine/serine-rich 12 891306 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15336 SFRS13B 373659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15337 SFRS14 splicing factor, arginine/serine-rich 14 1665495 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15338 SFRS2B splicing factor, arginine/serine-rich 2B 223587 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15339 SFRS3 splicing factor, arginine/serine-rich 3 261105 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15340 SFRS6 splicing factor, arginine/serine-rich 6 403065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15341 SFRS7 splicing factor, arginine/serine-rich 7, 35kDa 379743 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15342 SFRS8 splicing factor, arginine/serine-rich 8 (suppressor-of-white-apricot homolog, Drosophila) 1342536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15343 SFT2D1 SFT2 domain containing 1 225615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15344 SFT2D2 SFT2 domain containing 2 227136 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15345 SFTA2 126243 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15346 SFTPB surfactant, pulmonary-associated protein B 438048 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15347 SFXN1 sideroflexin 1 511563 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15348 SFXN2 sideroflexin 2 513591 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15349 SFXN3 sideroflexin 3 511563 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15350 SFXN4 sideroflexin 4 523731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15351 SGCB sarcoglycan, beta (43kDa dystrophin-associated glycoprotein) 478608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15352 SGCG sarcoglycan, gamma (35kDa dystrophin-associated glycoprotein) 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15353 SGK3 serum/glucocorticoid regulated kinase family, member 3 787878 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15354 SGK494 446160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15355 SGMS2 sphingomyelin synthase 2 566826 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15356 SGTA small glutamine-rich tetratricopeptide repeat (TPR)-containing, alpha 163254 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15357 SGTB small glutamine-rich tetratricopeptide repeat (TPR)-containing, beta 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15358 SH2B2 SH2B adaptor protein 2 288483 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15359 SH2B3 SH2B adaptor protein 3 522210 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15360 SH2D1A SH2 domain protein 1A, Duncan's disease (lymphoproliferative syndrome) 204321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15361 SH2D1B SH2 domain containing 1B 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15362 SH2D3C SH2 domain containing 3C 985101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15363 SH2D6 SH2 domain containing 6 105456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15364 SH2D7 542997 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15365 SH3BGR SH3 domain binding glutamic acid-rich protein 377208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15366 SH3BGRL2 SH3 domain binding glutamic acid-rich protein like 2 147537 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15367 SH3BGRL3 SH3 domain binding glutamic acid-rich protein like 3 122187 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15368 SH3BP5 SH3-domain binding protein 5 (BTK-associated) 639834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15369 SH3BP5L SH3-binding domain protein 5-like 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15370 SH3GL1 SH3-domain GRB2-like 1 430950 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15371 SH3GL3 SH3-domain GRB2-like 3 522717 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15372 SH3GLB1 SH3-domain GRB2-like endophilin B1 536406 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15373 SH3GLB2 SH3-domain GRB2-like endophilin B2 421824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15374 SH3KBP1 SH3-domain kinase binding protein 1 1081431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15375 SH3RF1 SH3 domain containing ring finger 1 1342536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15376 SH3RF2 SH3 domain containing ring finger 2 1128582 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15377 SH3RF3 832494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15378 SHARPIN SHANK-associated RH domain interactor 498381 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15379 SHB Src homology 2 domain containing adaptor protein B 421317 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15380 SHBG sex hormone-binding globulin 629187 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15381 SHF Src homology 2 domain containing F 585585 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15382 SHFM1 split hand/foot malformation (ectrodactyly) type 1 114075 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15383 SHH sonic hedgehog homolog (Drosophila) 288990 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15384 SHISA2 shisa homolog 2 (Xenopus laevis) 282906 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15385 SHISA3 shisa homolog 3 (Xenopus laevis) 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15386 SHISA4 shisa homolog 4 (Xenopus laevis) 272259 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15387 SHISA5 shisa homolog 5 (Xenopus laevis) 295074 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15388 SHMT1 serine hydroxymethyltransferase 1 (soluble) 672789 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15389 SHMT2 serine hydroxymethyltransferase 2 (mitochondrial) 792441 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15390 SHOC2 soc-2 suppressor of clear homolog (C. elegans) 902967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15391 SHOX short stature homeobox 240318 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15392 SHOX2 short stature homeobox 2 394953 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15393 SHQ1 SHQ1 homolog (S. cerevisiae) 870519 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15394 SHROOM1 shroom family member 1 559221 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15395 SIAH2 seven in absentia homolog 2 (Drosophila) 284934 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15396 SIAH3 414726 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15397 SIGLEC14 sialic acid binding Ig-like lectin 14 534885 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15398 SIGLEC5 sialic acid binding Ig-like lectin 5 771147 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15399 SIGLEC6 sialic acid binding Ig-like lectin 6 715884 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15400 SIKE1 332592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15401 SIL1 SIL1 homolog, endoplasmic reticulum chaperone (S. cerevisiae) 600288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15402 SIM2 single-minded homolog 2 (Drosophila) 599274 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15403 SIP1 survival of motor neuron protein interacting protein 1 388869 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15404 SIRPD signal-regulatory protein delta 309270 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15405 SIRT1 sirtuin (silent mating type information regulation 2 homolog) 1 (S. cerevisiae) 935922 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15406 SIRT2 sirtuin (silent mating type information regulation 2 homolog) 2 (S. cerevisiae) 533871 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15407 SIRT4 sirtuin (silent mating type information regulation 2 homolog) 4 (S. cerevisiae) 485199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15408 SIRT5 sirtuin (silent mating type information regulation 2 homolog) 5 (S. cerevisiae) 512070 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15409 SIVA1 SIVA1, apoptosis-inducing factor 213954 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15410 SIX1 SIX homeobox 1 437541 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15411 SIX3 SIX homeobox 3 319410 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15412 SIX4 SIX homeobox 4 1048476 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15413 SIX6 SIX homeobox 6 321438 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15414 SKA1 401544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15415 SKA2 260598 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15416 SKA3 616005 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15417 SKAP1 src kinase associated phosphoprotein 1 546546 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15418 SKAP2 src kinase associated phosphoprotein 2 571896 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15419 SKIV2L superkiller viralicidic activity 2-like (S. cerevisiae) 1946373 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15420 SKP1 S-phase kinase-associated protein 1 273273 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15421 SKP2 S-phase kinase-associated protein 2 (p45) 755937 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15422 SLA Src-like-adaptor 416754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15423 SLA2 Src-like-adaptor 2 412698 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15424 SLAIN1 SLAIN motif family, member 1 544518 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15425 SLAMF8 SLAM family member 8 445146 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15426 SLBP stem-loop binding protein 335127 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15427 SLC10A4 solute carrier family 10 (sodium/bile acid cotransporter family), member 4 371124 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15428 SLC10A5 solute carrier family 10 (sodium/bile acid cotransporter family), member 5 669747 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15429 SLC10A7 solute carrier family 10 (sodium/bile acid cotransporter family), member 7 565812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15430 SLC12A3 solute carrier family 12 (sodium/chloride transporters), member 3 1370928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15431 SLC12A8 solute carrier family 12 (potassium/chloride transporters), member 8 1113372 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15432 SLC12A9 solute carrier family 12 (potassium/chloride transporters), member 9 1244178 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15433 SLC14A1 solute carrier family 14 (urea transporter), member 1 (Kidd blood group) 620061 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15434 SLC14A2 solute carrier family 14 (urea transporter), member 2 1439373 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15435 SLC15A2 solute carrier family 15 (H+/peptide transporter), member 2 1154946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15436 SLC15A3 solute carrier family 15, member 3 616512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15437 SLC16A10 solute carrier family 16, member 10 (aromatic amino acid transporter) 630708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15438 SLC16A14 solute carrier family 16, member 14 (monocarboxylic acid transporter 14) 785343 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15439 SLC16A4 solute carrier family 16, member 4 (monocarboxylic acid transporter 5) 758472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15440 SLC16A5 solute carrier family 16, member 5 (monocarboxylic acid transporter 6) 756951 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15441 SLC16A6 solute carrier family 16, member 6 (monocarboxylic acid transporter 7) 796497 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15442 SLC16A7 solute carrier family 16, member 7 (monocarboxylic acid transporter 2) 736671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15443 SLC16A9 solute carrier family 16, member 9 (monocarboxylic acid transporter 9) 785850 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15444 SLC17A1 solute carrier family 17 (sodium phosphate), member 1 734136 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15445 SLC17A2 solute carrier family 17 (sodium phosphate), member 2 684957 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15446 SLC17A4 solute carrier family 17 (sodium phosphate), member 4 779766 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15447 SLC17A5 solute carrier family 17 (anion/sugar transporter), member 5 727038 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15448 SLC17A9 457314 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15449 SLC18A2 solute carrier family 18 (vesicular monoamine), member 2 750360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15450 SLC18A3 solute carrier family 18 (vesicular acetylcholine), member 3 767091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15451 SLC19A2 solute carrier family 19 (thiamine transporter), member 2 664170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15452 SLC19A3 solute carrier family 19, member 3 766077 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15453 SLC1A1 solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1 774696 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15454 SLC1A2 solute carrier family 1 (glial high affinity glutamate transporter), member 2 886236 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15455 SLC1A3 solute carrier family 1 (glial high affinity glutamate transporter), member 3 852774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15456 SLC1A5 solute carrier family 1 (neutral amino acid transporter), member 5 536406 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15457 SLC22A1 solute carrier family 22 (organic cation transporter), member 1 837564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15458 SLC22A12 solute carrier family 22 (organic anion/urate transporter), member 12 497367 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15459 SLC22A13 solute carrier family 22, member 13 836043 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15460 SLC22A15 solute carrier family 22, member 15 811707 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15461 SLC22A17 solute carrier family 22, member 17 563784 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15462 SLC22A18 solute carrier family 22, member 18 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15463 SLC22A23 solute carrier family 22, member 23 646932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15464 SLC22A3 solute carrier family 22 (extraneuronal monoamine transporter), member 3 649974 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15465 SLC22A4 solute carrier family 22 (organic cation/ergothioneine transporter), member 4 713349 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15466 SLC22A5 solute carrier family 22 (organic cation/carnitine transporter), member 5 679887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15467 SLC22A7 solute carrier family 22 (organic anion transporter), member 7 854802 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15468 SLC22A8 solute carrier family 22 (organic anion transporter), member 8 846183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15469 SLC23A2 solute carrier family 23 (nucleobase transporters), member 2 1020591 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15470 SLC24A5 solute carrier family 24, member 5 780273 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15471 SLC25A1 solute carrier family 25 (mitochondrial carrier; citrate transporter), member 1 259584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15472 SLC25A10 solute carrier family 25 (mitochondrial carrier; dicarboxylate transporter), member 10 218010 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15473 SLC25A11 solute carrier family 25 (mitochondrial carrier; oxoglutarate carrier), member 11 466440 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15474 SLC25A12 solute carrier family 25 (mitochondrial carrier, Aralar), member 12 1061151 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15475 SLC25A15 solute carrier family 25 (mitochondrial carrier; ornithine transporter) member 15 471510 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15476 SLC25A16 solute carrier family 25 (mitochondrial carrier; Graves disease autoantigen), member 16 456807 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15477 SLC25A17 solute carrier family 25 (mitochondrial carrier; peroxisomal membrane protein, 34kDa), member 17 461877 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15478 SLC25A22 solute carrier family 25 (mitochondrial carrier: glutamate), member 22 171873 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15479 SLC25A23 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 23 549588 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15480 SLC25A24 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 24 718419 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15481 SLC25A26 solute carrier family 25, member 26 276315 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15482 SLC25A27 solute carrier family 25, member 27 455286 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15483 SLC25A28 solute carrier family 25, member 28 431964 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15484 SLC25A3 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 3 565305 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15485 SLC25A30 solute carrier family 25, member 30 462384 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15486 SLC25A31 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 31 452751 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15487 SLC25A33 solute carrier family 25, member 33 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15488 SLC25A34 solute carrier family 25, member 34 223587 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15489 SLC25A36 solute carrier family 25, member 36 460356 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15490 SLC25A37 solute carrier family 25, member 37 415233 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15491 SLC25A4 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 4 404586 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15492 SLC25A42 solute carrier family 25, member 42 295581 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15493 SLC25A43 solute carrier family 25, member 43 388869 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15494 SLC25A46 solute carrier family 25, member 46 508014 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15495 SLC25A5 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 5 404586 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15496 SLC25A6 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 6 364533 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15497 SLC26A10 solute carrier family 26, member 10 824889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15498 SLC26A11 solute carrier family 26, member 11 805623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15499 SLC26A2 solute carrier family 26 (sulfate transporter), member 2 1129596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15500 SLC26A8 solute carrier family 26, member 8 1515423 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15501 SLC27A1 solute carrier family 27 (fatty acid transporter), member 1 903981 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15502 SLC27A6 solute carrier family 27 (fatty acid transporter), member 6 963300 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15503 SLC29A2 solute carrier family 29 (nucleoside transporters), member 2 548067 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15504 SLC2A1 solute carrier family 2 (facilitated glucose transporter), member 1 705744 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15505 SLC2A11 solute carrier family 2 (facilitated glucose transporter), member 11 656565 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15506 SLC2A12 solute carrier family 2 (facilitated glucose transporter), member 12 950118 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15507 SLC2A2 solute carrier family 2 (facilitated glucose transporter), member 2 820833 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15508 SLC2A7 solute carrier family 2 (facilitated glucose transporter), member 7 598260 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15509 SLC30A2 solute carrier family 30 (zinc transporter), member 2 569868 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15510 SLC30A3 solute carrier family 30 (zinc transporter), member 3 591669 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15511 SLC30A6 solute carrier family 30 (zinc transporter), member 6 731094 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15512 SLC30A7 solute carrier family 30 (zinc transporter), member 7 595725 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15513 SLC31A2 solute carrier family 31 (copper transporters), member 2 222066 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15514 SLC33A1 solute carrier family 33 (acetyl-CoA transporter), member 1 842127 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15515 SLC34A1 solute carrier family 34 (sodium phosphate), member 1 994734 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15516 SLC35A3 solute carrier family 35 (UDP-N-acetylglucosamine (UDP-GlcNAc) transporter), member A3 510042 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15517 SLC35A5 solute carrier family 35, member A5 658593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15518 SLC35B3 solute carrier family 35, member B3 631722 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15519 SLC35D3 solute carrier family 35, member D3 290511 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15520 SLC35E1 solute carrier family 35, member E1 421824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15521 SLC35E4 solute carrier family 35, member E4 262119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15522 SLC36A1 solute carrier family 36 (proton/amino acid symporter), member 1 745797 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15523 SLC36A2 solute carrier family 36 (proton/amino acid symporter), member 2 756444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15524 SLC36A4 solute carrier family 36 (proton/amino acid symporter), member 4 711321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15525 SLC37A3 solute carrier family 37 (glycerol-3-phosphate transporter), member 3 856830 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15526 SLC37A4 solute carrier family 37 (glucose-6-phosphate transporter), member 4 670254 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15527 SLC38A1 solute carrier family 38, member 1 772668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15528 SLC38A11 solute carrier family 38, member 11 603837 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15529 SLC38A2 solute carrier family 38, member 2 801567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15530 SLC38A3 solute carrier family 38, member 3 777231 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15531 SLC38A4 solute carrier family 38, member 4 863928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15532 SLC38A5 solute carrier family 38, member 5 682929 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15533 SLC38A6 solute carrier family 38, member 6 672282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15534 SLC38A9 solute carrier family 38, member 9 883194 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15535 SLC39A10 solute carrier family 39 (zinc transporter), member 10 1283724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15536 SLC39A11 solute carrier family 39 (metal ion transporter), member 11 539955 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15537 SLC39A2 solute carrier family 39 (zinc transporter), member 2 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15538 SLC39A3 solute carrier family 39 (zinc transporter), member 3 208884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15539 SLC39A7 solute carrier family 39 (zinc transporter), member 7 729066 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15540 SLC39A8 solute carrier family 39 (zinc transporter), member 8 604344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15541 SLC41A3 solute carrier family 41, member 3 870012 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15542 SLC43A1 solute carrier family 43, member 1 830973 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15543 SLC43A2 solute carrier family 43, member 2 338169 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15544 SLC43A3 solute carrier family 43, member 3 772668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15545 SLC44A2 solute carrier family 44, member 2 1063686 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15546 SLC44A4 solute carrier family 44, member 4 1120977 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15547 SLC45A1 solute carrier family 45, member 1 599274 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15548 SLC46A1 solute carrier family 46 (folate transporter), member 1 405600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15549 SLC46A2 solute carrier family 46, member 2 664170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15550 SLC46A3 solute carrier family 46, member 3 712842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15551 SLC47A1 solute carrier family 47, member 1 832494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15552 SLC48A1 71487 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15553 SLC4A3 solute carrier family 4, anion exchanger, member 3 1805427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15554 SLC4A9 solute carrier family 4, sodium bicarbonate cotransporter, member 9 1344057 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15555 SLC5A1 solute carrier family 5 (sodium/glucose cotransporter), member 1 1017042 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15556 SLC5A10 solute carrier family 5 (sodium/glucose cotransporter), member 10 806637 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15557 SLC5A2 solute carrier family 5 (sodium/glucose cotransporter), member 2 912600 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15558 SLC5A4 solute carrier family 5 (low affinity glucose cotransporter), member 4 1033773 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15559 SLC5A7 solute carrier family 5 (choline transporter), member 7 899925 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15560 SLC5A8 solute carrier family 5 (iodide transporter), member 8 887757 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15561 SLC6A11 solute carrier family 6 (neurotransmitter transporter, GABA), member 11 906516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15562 SLC6A15 solute carrier family 6, member 15 1191957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15563 SLC6A16 solute carrier family 6, member 16 1143285 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15564 SLC6A19 solute carrier family 6 (neutral amino acid transporter), member 19 730080 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15565 SLC6A2 solute carrier family 6 (neurotransmitter transporter, noradrenalin), member 2 1012986 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15566 SLC6A20 solute carrier family 6 (proline IMINO transporter), member 20 871533 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15567 SLC6A6 solute carrier family 6 (neurotransmitter transporter, taurine), member 6 972933 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15568 SLC6A8 solute carrier family 6 (neurotransmitter transporter, creatine), member 8 642876 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15569 SLC7A1 solute carrier family 7 (cationic amino acid transporter, y+ system), member 1 940485 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15570 SLC7A10 solute carrier family 7, (neutral amino acid transporter, y+ system) member 10 558207 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15571 SLC7A11 solute carrier family 7, (cationic amino acid transporter, y+ system) member 11 787878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15572 SLC7A2 solute carrier family 7 (cationic amino acid transporter, y+ system), member 2 1151904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15573 SLC7A5 solute carrier family 7 (cationic amino acid transporter, y+ system), member 5 208377 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15574 SLC7A6 solute carrier family 7 (cationic amino acid transporter, y+ system), member 6 803088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15575 SLC7A8 solute carrier family 7 (cationic amino acid transporter, y+ system), member 8 837564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15576 SLC7A9 solute carrier family 7 (cationic amino acid transporter, y+ system), member 9 766077 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15577 SLC8A1 solute carrier family 8 (sodium/calcium exchanger), member 1 1501734 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15578 SLC8A2 solute carrier family 8 (sodium-calcium exchanger), member 2 805623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15579 SLC8A3 solute carrier family 8 (sodium-calcium exchanger), member 3 1481961 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15580 SLC9A1 solute carrier family 9 (sodium/hydrogen exchanger), member 1 (antiporter, Na+/H+, amiloride sensitive) 705744 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15581 SLC9A11 solute carrier family 9, member 11 1765881 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15582 SLC9A5 solute carrier family 9 (sodium/hydrogen exchanger), member 5 1233024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15583 SLC9A6 solute carrier family 9 (sodium/hydrogen exchanger), member 6 1095120 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15584 SLCO2B1 solute carrier organic anion transporter family, member 2B1 1105260 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15585 SLCO6A1 solute carrier organic anion transporter family, member 6A1 1121484 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15586 SLFN12 schlafen family member 12 886743 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15587 SLFN13 schlafen family member 13 1373970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15588 SLFNL1 schlafen-like 1 544011 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15589 SLITRK5 SLIT and NTRK-like family, member 5 1390194 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15590 SLMO1 slowmo homolog 1 (Drosophila) 169338 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15591 SLN sarcolipin 50700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15592 SLPI secretory leukocyte peptidase inhibitor 210405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15593 SLU7 SLU7 splicing factor homolog (S. cerevisiae) 923247 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15594 SMAD1 SMAD family member 1 720954 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15595 SMAD5 SMAD family member 5 720447 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15596 SMAD7 SMAD family member 7 344760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15597 SMAGP 155142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15598 SMAP1 stromal membrane-associated GTPase-activating protein 1 672282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15599 SMAP2 stromal membrane-associated GTPase-activating protein 2 645918 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15600 SMARCAD1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 1611753 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15601 SMARCB1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 533871 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15602 SMARCD1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 719433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15603 SMARCD2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 723996 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15604 SMARCE1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 646932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15605 SMC3 structural maintenance of chromosomes 3 1901757 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15606 SMCP sperm mitochondria-associated cysteine-rich protein 179985 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15607 SMCR7L Smith-Magenis syndrome chromosome region, candidate 7-like 673296 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15608 SMG6 Smg-6 homolog, nonsense mediated mRNA decay factor (C. elegans) 2045745 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15609 SMG7 Smg-7 homolog, nonsense mediated mRNA decay factor (C. elegans) 1758783 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15610 SMNDC1 survival motor neuron domain containing 1 373659 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15611 SMOC1 SPARC related modular calcium binding 1 635271 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15612 SMOX spermine oxidase 788385 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15613 SMPD1 sphingomyelin phosphodiesterase 1, acid lysosomal 967863 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15614 SMPD3 sphingomyelin phosphodiesterase 3, neutral membrane (neutral sphingomyelinase II) 371631 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15615 SMPD4 sphingomyelin phosphodiesterase 4, neutral membrane (neutral sphingomyelinase-3) 1015521 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15616 SMPDL3A sphingomyelin phosphodiesterase, acid-like 3A 647946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15617 SMPDL3B sphingomyelin phosphodiesterase, acid-like 3B 733122 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15618 SMPX small muscle protein, X-linked 141453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15619 SMR3A submaxillary gland androgen regulated protein 3A 209391 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15620 SMR3B submaxillary gland androgen regulated protein 3B 125736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15621 SMS spermine synthase 553644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15622 SMTNL2 smoothelin-like 2 322452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15623 SMU1 smu-1 suppressor of mec-8 and unc-52 homolog (C. elegans) 806130 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15624 SMUG1 single-strand-selective monofunctional uracil-DNA glycosylase 1 416247 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15625 SMURF1 SMAD specific E3 ubiquitin protein ligase 1 1119456 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15626 SMYD2 SET and MYND domain containing 2 594711 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15627 SNAI3 snail homolog 3 (Drosophila) 148551 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15628 SNAP29 synaptosomal-associated protein, 29kDa 281892 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15629 SNAP47 668226 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15630 SNAPC2 small nuclear RNA activating complex, polypeptide 2, 45kDa 408135 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15631 SNAPC5 small nuclear RNA activating complex, polypeptide 5, 19kDa 156663 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15632 SNAPIN SNAP-associated protein 141960 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15633 SNCA synuclein, alpha (non A4 component of amyloid precursor) 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15634 SNCG synuclein, gamma (breast cancer-specific protein 1) 159198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15635 SND1 staphylococcal nuclease and tudor domain containing 1 1336452 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15636 SNHG3-RCC1 SNHG3-RCC1 518154 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15637 SNIP1 Smad nuclear interacting protein 1 570882 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15638 SNN stannin 136890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15639 SNPH syntaphilin 433992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15640 SNRNP25 158691 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15641 SNRNP27 249444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15642 SNRNP40 564798 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15643 SNRNP48 453765 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15644 SNRNP70 306228 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15645 SNRPA small nuclear ribonucleoprotein polypeptide A 442611 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15646 SNRPA1 small nuclear ribonucleoprotein polypeptide A' 364026 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15647 SNRPB2 small nuclear ribonucleoprotein polypeptide B'' 355914 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15648 SNRPD1 small nuclear ribonucleoprotein D1 polypeptide 16kDa 190632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15649 SNRPD2 small nuclear ribonucleoprotein D2 polypeptide 16.5kDa 187083 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15650 SNRPD3 small nuclear ribonucleoprotein D3 polypeptide 18kDa 199251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15651 SNRPE small nuclear ribonucleoprotein polypeptide E 151086 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15652 SNRPF small nuclear ribonucleoprotein polypeptide F 136890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15653 SNRPG small nuclear ribonucleoprotein polypeptide G 125229 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15654 SNRPN small nuclear ribonucleoprotein polypeptide N 380757 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15655 SNTA1 syntrophin, alpha 1 (dystrophin-associated protein A1, 59kDa, acidic component) 557700 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15656 SNTB2 syntrophin, beta 2 (dystrophin-associated protein A1, 59kDa, basic component 2) 540969 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15657 SNTN 233220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15658 SNUPN snurportin 1 565305 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15659 SNURF SNRPN upstream reading frame 106470 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15660 SNX12 sorting nexin 12 183027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15661 SNX14 sorting nexin 14 1433796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15662 SNX15 sorting nexin 15 425373 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15663 SNX17 sorting nexin 17 712842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15664 SNX18 sorting nexin 18 688506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15665 SNX19 sorting nexin 19 1532661 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15666 SNX2 sorting nexin 2 764556 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15667 SNX21 sorting nexin family member 21 445653 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15668 SNX22 sorting nexin 22 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15669 SNX24 sorting nexin 24 240318 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15670 SNX27 sorting nexin family member 27 669240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15671 SNX30 sorting nexin family member 30 603330 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15672 SNX33 sorting nexin 33 878631 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15673 SNX4 sorting nexin 4 640848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15674 SNX6 sorting nexin 6 616005 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15675 SNX9 sorting nexin 9 880152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15676 SOAT2 sterol O-acyltransferase 2 716391 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15677 SOCS2 suppressor of cytokine signaling 2 234234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15678 SOCS3 suppressor of cytokine signaling 3 111033 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15679 SOCS7 suppressor of cytokine signaling 7 501930 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15680 SOD2 superoxide dismutase 2, mitochondrial 294567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15681 SOHLH1 spermatogenesis and oogenesis specific basic helix-loop-helix 1 189618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15682 SOHLH2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 643890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15683 SORCS2 sortilin-related VPS10 domain containing receptor 2 667719 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15684 SORD sorbitol dehydrogenase 452751 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15685 SORL1 sortilin-related receptor, L(DLR class) A repeats-containing 3319836 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15686 SOST sclerosteosis 158691 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15687 SOSTDC1 sclerostin domain containing 1 318903 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15688 SOX13 SRY (sex determining region Y)-box 13 863421 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15689 SOX15 SRY (sex determining region Y)-box 15 196209 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15690 SOX21 SRY (sex determining region Y)-box 21 156663 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15691 SOX3 SRY (sex determining region Y)-box 3 248430 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15692 SOX5 SRY (sex determining region Y)-box 5 1197534 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15693 SOX6 SRY (sex determining region Y)-box 6 1319214 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15694 SOX7 SRY (sex determining region Y)-box 7 445653 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15695 SP140 SP140 nuclear body protein 1381068 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15696 SP140L 903981 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15697 SP2 Sp2 transcription factor 940992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15698 SP4 Sp4 transcription factor 1139736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15699 SP6 Sp6 transcription factor 237783 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15700 SPA17 sperm autoantigenic protein 17 239304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15701 SPACA4 sperm acrosome associated 4 191646 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15702 SPACA5 sperm acrosome associated 5 165282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15703 SPACA5B sperm acrosome associated 5B 165282 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15704 SPAG1 sperm associated antigen 1 1272570 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15705 SPAG11B sperm associated antigen 11B 232206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15706 SPAG4 sperm associated antigen 4 472017 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15707 SPAG7 sperm associated antigen 7 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15708 SPAG8 sperm associated antigen 8 880659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15709 SPAM1 sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding) 781794 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15710 SPANXD SPANX family, member D 153114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15711 SPANXE SPANX family, member E 153114 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15712 SPANXN1 SPANX family, member N1 115089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15713 SPANXN2 SPANX family, member N2 279357 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15714 SPANXN3 SPANX family, member N3 220038 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15715 SPARC secreted protein, acidic, cysteine-rich (osteonectin) 480636 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15716 SPATA1 spermatogenesis associated 1 611442 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15717 SPATA12 spermatogenesis associated 12 292539 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15718 SPATA16 spermatogenesis associated 16 887250 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15719 SPATA19 spermatogenesis associated 19 267696 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15720 SPATA21 spermatogenesis associated 21 732108 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15721 SPATA5 spermatogenesis associated 5 1392222 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15722 SPATA5L1 spermatogenesis associated 5-like 1 651495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15723 SPATA7 spermatogenesis associated 7 925275 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15724 SPATA8 spermatogenesis associated 8 167310 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15725 SPATC1 spermatogenesis and centriole associated 1 590148 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15726 SPATS1 spermatogenesis associated, serine-rich 1 474045 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15727 SPATS2 spermatogenesis associated, serine-rich 2 854802 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15728 SPATS2L 803088 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15729 SPC24 SPC24, NDC80 kinetochore complex component, homolog (S. cerevisiae) 107484 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15730 SPC25 SPC25, NDC80 kinetochore complex component, homolog (S. cerevisiae) 354393 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15731 SPCS1 signal peptidase complex subunit 1 homolog (S. cerevisiae) 144495 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15732 SPCS2 signal peptidase complex subunit 2 homolog (S. cerevisiae) 244374 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15733 SPCS3 signal peptidase complex subunit 3 homolog (S. cerevisiae) 173394 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15734 SPDEF SAM pointed domain containing ets transcription factor 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15735 SPDYA speedy homolog A (Drosophila) 495339 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15736 SPDYE1 524745 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15737 SPDYE5 528294 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15738 SPEF1 sperm flagellar 1 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15739 SPEM1 spermatid maturation 1 428922 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15740 SPESP1 sperm equatorial segment protein 1 537927 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15741 SPG21 spastic paraplegia 21 (autosomal recessive, Mast syndrome) 463398 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15742 SPG7 spastic paraplegia 7 (pure and complicated autosomal recessive) 892827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15743 SPHAR 99372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15744 SPHK1 sphingosine kinase 1 330564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15745 SPI1 spleen focus forming virus (SFFV) proviral integration oncogene spi1 186069 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15746 SPIB Spi-B transcription factor (Spi-1/PU.1 related) 147537 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15747 SPIN3 spindlin family, member 3 395967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15748 SPIN4 spindlin family, member 4 382278 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15749 SPINK1 serine peptidase inhibitor, Kazal type 1 129792 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15750 SPINK13 152607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15751 SPINK14 157170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15752 SPINK4 serine peptidase inhibitor, Kazal type 4 140439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15753 SPINK6 serine peptidase inhibitor, Kazal type 6 131313 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15754 SPINK7 serine peptidase inhibitor, Kazal type 7 (putative) 138918 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15755 SPINK8 serine peptidase inhibitor, Kazal type 8 (putative) 135369 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15756 SPINK9 serine peptidase inhibitor, Kazal type 9 140439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15757 SPINLW1 serine peptidase inhibitor-like, with Kunitz and WAP domains 1 (eppin) 233727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15758 SPINT1 serine peptidase inhibitor, Kunitz type 1 773175 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15759 SPINT2 serine peptidase inhibitor, Kunitz type, 2 342732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15760 SPINT4 serine peptidase inhibitor, Kunitz type 4 158184 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15761 SPNS2 spinster homolog 2 (Drosophila) 593190 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15762 SPNS3 spinster homolog 3 (Drosophila) 614991 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15763 SPOCD1 SPOC domain containing 1 826410 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15764 SPOCK1 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 1 622089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15765 SPOCK2 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 2 454779 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15766 SPOCK3 sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 3 633243 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15767 SPON2 spondin 2, extracellular matrix protein 133341 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15768 SPOPL speckle-type POZ protein-like 618033 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15769 SPR sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase) 248430 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15770 SPRED3 sprouty-related, EVH1 domain containing 3 224094 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15771 SPRR1A small proline-rich protein 1A 138918 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15772 SPRR1B small proline-rich protein 1B (cornifin) 138918 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15773 SPRR2A small proline-rich protein 2A 113061 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15774 SPRR2D small proline-rich protein 2D 113061 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15775 SPRR2E small proline-rich protein 2E 113061 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15776 SPRR2G small proline-rich protein 2G 114582 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15777 SPRR3 small proline-rich protein 3 260598 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15778 SPRR4 small proline-rich protein 4 123708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15779 SPRY1 sprouty homolog 1, antagonist of FGF signaling (Drosophila) 488748 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15780 SPRY2 sprouty homolog 2 (Drosophila) 482664 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15781 SPRY3 sprouty homolog 3 (Drosophila) 441597 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15782 SPRY4 sprouty homolog 4 (Drosophila) 495339 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15783 SPRYD3 SPRY domain containing 3 586092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15784 SPSB1 splA/ryanodine receptor domain and SOCS box containing 1 420303 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15785 SPSB2 splA/ryanodine receptor domain and SOCS box containing 2 405093 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15786 SPTLC3 serine palmitoyltransferase, long chain base subunit 3 865449 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15787 SPZ1 spermatogenic leucine zipper 1 657579 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15788 SR140 1573221 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15789 SRA1 steroid receptor RNA activator 1 337662 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15790 SRC v-src sarcoma (Schmidt-Ruppin A-2) viral oncogene homolog (avian) 575952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15791 SRD5A3 steroid 5 alpha-reductase 3 381264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15792 SREBF1 sterol regulatory element binding transcription factor 1 662142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15793 SRFBP1 serum response factor binding protein 1 670254 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15794 SRGAP2 SLIT-ROBO Rho GTPase activating protein 2 1453062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15795 SRI sorcin 296088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15796 SRM spermidine synthase 175929 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15797 SRP19 signal recognition particle 19kDa 230685 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15798 SRP54 signal recognition particle 54kDa 798525 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15799 SRP9 signal recognition particle 9kDa 138411 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15800 SRPK2 SFRS protein kinase 2 1078389 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15801 SRPK3 SFRS protein kinase 3 233727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15802 SRR serine racemase 532857 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15803 SRRD SRR1 domain containing 423345 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15804 SS18 synovial sarcoma translocation, chromosome 18 622596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15805 SS18L2 synovial sarcoma translocation gene on chromosome 18-like 2 114582 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15806 SSB Sjogren syndrome antigen B (autoantigen La) 644397 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15807 SSBP1 single-stranded DNA binding protein 1 238797 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15808 SSBP2 single-stranded DNA binding protein 2 551616 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15809 SSBP3 single stranded DNA binding protein 3 406614 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15810 SSBP4 single stranded DNA binding protein 4 203307 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15811 SSFA2 sperm specific antigen 2 1817088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15812 SSPN sarcospan (Kras oncogene-associated gene) 233727 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15813 SSR2 signal sequence receptor, beta (translocon-associated protein beta) 290004 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15814 SSR3 signal sequence receptor, gamma (translocon-associated protein gamma) 290004 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15815 SSSCA1 Sjogren syndrome/scleroderma autoantigen 1 311805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15816 SST somatostatin 148551 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15817 SSTR1 somatostatin receptor 1 561249 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15818 SSTR4 somatostatin receptor 4 518661 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -15819 SSU72 SSU72 RNA polymerase II CTD phosphatase homolog (S. cerevisiae) 209898 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15820 SSX1 synovial sarcoma, X breakpoint 1 299637 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15821 ST13 suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) 587106 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15822 ST20 suppressor of tumorigenicity 20 100893 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15823 ST3GAL2 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 425373 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15824 ST6GAL1 ST6 beta-galactosamide alpha-2,6-sialyltranferase 1 629187 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15825 ST6GAL2 ST6 beta-galactosamide alpha-2,6-sialyltranferase 2 692055 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15826 ST6GALNAC3 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 464412 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15827 ST6GALNAC5 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 448188 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15828 ST6GALNAC6 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 417768 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15829 ST7 suppression of tumorigenicity 7 974454 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15830 ST7L suppression of tumorigenicity 7 like 820326 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15831 ST8SIA2 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 2 532350 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15832 ST8SIA4 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 559728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15833 ST8SIA5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 497874 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15834 STAC3 SH3 and cysteine rich domain 3 575952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15835 STAG3 stromal antigen 3 1924065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15836 STAG3L3 stromal antigen 3-like 3 96330 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15837 STAG3L4 stromal antigen 3-like 4 237783 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15838 STAP2 signal transducing adaptor family member 2 298116 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15839 STAR steroidogenic acute regulatory protein 389376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15840 STARD10 StAR-related lipid transfer (START) domain containing 10 320931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15841 STARD3 StAR-related lipid transfer (START) domain containing 3 691041 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15842 STARD5 StAR-related lipid transfer (START) domain containing 5 285441 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15843 STARD6 StAR-related lipid transfer (START) domain containing 6 348309 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15844 STAT5A signal transducer and activator of transcription 5A 1049490 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15845 STAT6 signal transducer and activator of transcription 6, interleukin-4 induced 1332396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15846 STATH statherin 103935 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15847 STBD1 starch binding domain 1 436527 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15848 STC2 stanniocalcin 2 463398 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15849 STEAP1 six transmembrane epithelial antigen of the prostate 1 525252 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15850 STEAP4 STEAP family member 4 707772 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15851 STIL SCL/TAL1 interrupting locus 1993017 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15852 STIM2 stromal interaction molecule 2 1081938 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15853 STK16 serine/threonine kinase 16 479622 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15854 STK24 serine/threonine kinase 24 (STE20 homolog, yeast) 697125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15855 STK32A serine/threonine kinase 32A 631722 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15856 STK33 serine/threonine kinase 33 807651 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15857 STK35 serine/threonine kinase 35 401037 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15858 STK36 serine/threonine kinase 36, fused homolog (Drosophila) 2054364 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15859 STK38 serine/threonine kinase 38 735150 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15860 STK39 serine threonine kinase 39 (STE20/SPS1 homolog, yeast) 759486 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15861 STMN1 stathmin 1/oncoprotein 18 236262 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15862 STMN2 stathmin-like 2 283920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15863 STOML1 stomatin (EPB72)-like 1 522717 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15864 STOML2 stomatin (EPB72)-like 2 563277 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15865 STOML3 stomatin (EPB72)-like 3 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15866 STON1 stonin 1 1125540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15867 STON1-GTF2A1L STON1-GTF2A1L 1819623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15868 STON2 stonin 2 1388166 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15869 STRADB 659607 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15870 STRBP spermatid perinuclear RNA binding protein 1058109 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15871 STS steroid sulfatase (microsomal), isozyme S 908544 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15872 STT3A STT3, subunit of the oligosaccharyltransferase complex, homolog A (S. cerevisiae) 1108302 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15873 STT3B STT3, subunit of the oligosaccharyltransferase complex, homolog B (S. cerevisiae) 1129089 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15874 STX11 syntaxin 11 377208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15875 STX12 syntaxin 12 303693 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15876 STX16 syntaxin 16 514098 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15877 STX18 syntaxin 18 446160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15878 STX19 syntaxin 19 450723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15879 STX1A syntaxin 1A (brain) 442104 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15880 STX1B syntaxin 1B 403065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15881 STX2 syntaxin 2 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15882 STX4 syntaxin 4 456300 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15883 STX5 syntaxin 5 445653 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15884 STX8 syntaxin 8 329550 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15885 STXBP3 syntaxin binding protein 3 913614 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15886 STXBP4 syntaxin binding protein 4 875082 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15887 STXBP5L syntaxin binding protein 5-like 1860183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15888 STXBP6 syntaxin binding protein 6 (amisyn) 331071 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15889 STYK1 serine/threonine/tyrosine kinase 1 661635 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15890 STYX serine/threonine/tyrosine interacting protein 332085 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15891 SUB1 SUB1 homolog (S. cerevisiae) 202800 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15892 SUCLG1 succinate-CoA ligase, alpha subunit 494832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15893 SUCLG2 succinate-CoA ligase, GDP-forming, beta subunit 636285 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15894 SUCNR1 succinate receptor 1 513591 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15895 SUDS3 suppressor of defective silencing 3 homolog (S. cerevisiae) 450723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15896 SULT1A2 sulfotransferase family, cytosolic, 1A, phenol-preferring, member 2 464412 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15897 SULT1B1 sulfotransferase family, cytosolic, 1B, member 1 465933 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15898 SULT1C2 sulfotransferase family, cytosolic, 1C, member 2 465933 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15899 SULT1C3 sulfotransferase family, cytosolic, 1C, member 3 478101 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15900 SULT1C4 sulfotransferase family, cytosolic, 1C, member 4 475059 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15901 SULT2A1 sulfotransferase family, cytosolic, 2A, dehydroepiandrosterone (DHEA)-preferring, member 1 447174 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15902 SULT2B1 sulfotransferase family, cytosolic, 2B, member 1 433485 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15903 SULT4A1 sulfotransferase family 4A, member 1 194181 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15904 SULT6B1 sulfotransferase family, cytosolic, 6B, member 1 418782 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15905 SUMF1 sulfatase modifying factor 1 449709 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15906 SUMF2 sulfatase modifying factor 2 535899 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15907 SUMO2 SMT3 suppressor of mif two 3 homolog 2 (S. cerevisiae) 141453 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15908 SUMO3 SMT3 suppressor of mif two 3 homolog 3 (S. cerevisiae) 153621 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15909 SUMO4 SMT3 suppressor of mif two 3 homolog 4 (S. cerevisiae) 148044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15910 SUN2 731601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15911 SUN3 564798 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15912 SUPT3H suppressor of Ty 3 homolog (S. cerevisiae) 575952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15913 SUPT4H1 suppressor of Ty 4 homolog 1 (S. cerevisiae) 189618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15914 SUPT7L suppressor of Ty 7 (S. cerevisiae)-like 641355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15915 SUPV3L1 suppressor of var1, 3-like 1 (S. cerevisiae) 1227447 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15916 SURF1 surfeit 1 396981 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15917 SURF2 surfeit 2 223587 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15918 SURF4 surfeit 4 388362 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15919 SURF6 surfeit 6 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15920 SUSD1 sushi domain containing 1 1117935 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15921 SUSD3 sushi domain containing 3 352365 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15922 SUV39H1 suppressor of variegation 3-9 homolog 1 (Drosophila) 628680 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15923 SUV39H2 suppressor of variegation 3-9 homolog 2 (Drosophila) 541983 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15924 SUV420H2 suppressor of variegation 4-20 homolog 2 (Drosophila) 264654 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15925 SV2C synaptic vesicle glycoprotein 2C 1131624 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15926 SVIP 97344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15927 SVOP SV2 related protein homolog (rat) 460863 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15928 SVOPL SVOP-like 570375 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15929 SYBU 1017549 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15930 SYCE1 synaptonemal complex central element protein 1 433992 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15931 SYCE2 synaptonemal complex central element protein 2 345267 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15932 SYCN syncollin 134355 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15933 SYCP3 synaptonemal complex protein 3 376701 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15934 SYF2 SYF2 homolog, RNA splicing factor (S. cerevisiae) 328536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15935 SYK spleen tyrosine kinase 966849 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15936 SYN2 synapsin II 639327 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15937 SYNGR1 synaptogyrin 1 290511 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15938 SYNGR2 synaptogyrin 2 298116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15939 SYNGR4 synaptogyrin 4 365547 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15940 SYNJ1 synaptojanin 1 2410278 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15941 SYNJ2BP synaptojanin 2 binding protein 230178 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15942 SYNPO synaptopodin 1096134 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15943 SYNPR synaptoporin 414726 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15944 SYPL1 synaptophysin-like 1 341211 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15945 SYS1 SYS1 Golgi-localized integral membrane protein homolog (S. cerevisiae) 160719 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15946 SYT1 synaptotagmin I 659607 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15947 SYT12 synaptotagmin XII 603330 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15948 SYT13 synaptotagmin XIII 566826 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15949 SYT14 synaptotagmin XIV 853281 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15950 SYT15 synaptotagmin XV 679887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15951 SYT3 synaptotagmin III 772668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15952 SYT7 synaptotagmin VII 559728 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15953 SYT9 synaptotagmin IX 686985 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15954 SYTL1 synaptotagmin-like 1 369603 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15955 SYTL3 synaptotagmin-like 3 739206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15956 SYTL4 synaptotagmin-like 4 (granuphilin-a) 1054560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15957 SYTL5 synaptotagmin-like 5 1144299 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15958 TAAR8 trace amine associated receptor 8 523731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15959 TAAR9 trace amine associated receptor 9 532857 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15960 TAB1 815256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15961 TAC1 tachykinin, precursor 1 209898 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15962 TAC3 tachykinin 3 (neuromedin K, neurokinin beta) 195702 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15963 TAC4 tachykinin 4 (hemokinin) 183534 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15964 TACO1 382785 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15965 TACR1 tachykinin receptor 1 632736 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -15966 TACR3 tachykinin receptor 3 715884 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15967 TADA1 511056 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15968 TAF10 TAF10 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 30kDa 195195 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15969 TAF11 TAF11 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 28kDa 332592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15970 TAF12 TAF12 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 20kDa 256542 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15971 TAF15 TAF15 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 68kDa 820833 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15972 TAF1A TATA box binding protein (TBP)-associated factor, RNA polymerase I, A, 48kDa 706251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15973 TAF1D 434499 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15974 TAF2 TAF2 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 150kDa 1877928 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15975 TAF4 TAF4 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 135kDa 798018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15976 TAF5 TAF5 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 100kDa 955188 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15977 TAF6L TAF6-like RNA polymerase II, p300/CBP-associated factor (PCAF)-associated factor, 65kDa 736164 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15978 TAF7L TAF7-like RNA polymerase II, TATA box binding protein (TBP)-associated factor, 50kDa 730587 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15979 TAF8 TAF8 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 43kDa 466440 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15980 TAF9 TAF9 RNA polymerase II, TATA box binding protein (TBP)-associated factor, 32kDa 662142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15981 TAGAP T-cell activation RhoGTPase activating protein 1140750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15982 TAGLN transgelin 315354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15983 TAGLN3 transgelin 3 312312 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15984 TAL1 T-cell acute lymphocytic leukemia 1 237783 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15985 TAL2 T-cell acute lymphocytic leukemia 2 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15986 TALDO1 transaldolase 1 479115 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15987 TAOK3 TAO kinase 3 1405911 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15988 TAP2 transporter 2, ATP-binding cassette, sub-family B (MDR/TAP) 1047969 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15989 TAPBP TAP binding protein (tapasin) 731601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15990 TARP 264147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15991 TARSL2 threonyl-tRNA synthetase-like 2 1107288 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15992 TAS2R20 taste receptor, type 2, member 20 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15993 TAS2R38 taste receptor, type 2, member 38 510042 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15994 TAS2R39 taste receptor, type 2, member 39 517647 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15995 TAS2R4 taste receptor, type 2, member 4 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15996 TAS2R40 taste receptor, type 2, member 40 494832 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15997 TAS2R41 taste receptor, type 2, member 41 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -15998 TAS2R42 taste receptor, type 2, member 42 481143 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -15999 TAS2R5 taste receptor, type 2, member 5 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16000 TAS2R50 taste receptor, type 2, member 50 458328 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16001 TAS2R60 taste receptor, type 2, member 60 487227 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16002 TAS2R7 taste receptor, type 2, member 7 487227 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16003 TAT tyrosine aminotransferase 633243 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16004 TATDN2 TatD DNase domain containing 2 1171170 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16005 TATDN3 TatD DNase domain containing 3 413712 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16006 TAX1BP3 Tax1 (human T-cell leukemia virus type I) binding protein 3 49686 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16007 TAZ tafazzin (cardiomyopathy, dilated 3A (X-linked); endocardial fibroelastosis 2; Barth syndrome) 343239 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16008 TBC1D10A TBC1 domain family, member 10A 640341 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16009 TBC1D10B TBC1 domain family, member 10B 542997 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16010 TBC1D12 TBC1 domain family, member 12 688506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16011 TBC1D13 TBC1 domain family, member 13 620568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16012 TBC1D16 TBC1 domain family, member 16 375180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16013 TBC1D17 TBC1 domain family, member 17 694590 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16014 TBC1D2 TBC1 domain family, member 2 1311102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16015 TBC1D20 TBC1 domain family, member 20 593190 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16016 TBC1D24 TBC1 domain family, member 24 635271 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16017 TBC1D26 TBC1 domain family, member 26 320424 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16018 TBC1D28 TBC1 domain family, member 28 278343 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16019 TBC1D29 TBC1 domain family, member 29 227643 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16020 TBC1D7 TBC1 domain family, member 7 461370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16021 TBC1D9B TBC1 domain family, member 9B (with GRAM domain) 1577784 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16022 TBCA tubulin folding cofactor A 139932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16023 TBCB tubulin folding cofactor B 225615 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16024 TBCCD1 TBCC domain containing 1 860886 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16025 TBCD tubulin folding cofactor D 1332396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16026 TBK1 TANK-binding kinase 1 1150890 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16027 TBPL1 TBP-like 1 296595 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16028 TBR1 T-box, brain, 1 675831 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16029 TBRG4 transforming growth factor beta regulator 4 925782 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16030 TBX1 T-box 1 378729 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16031 TBX10 T-box 10 388869 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16032 TBX2 T-box 2 289497 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16033 TBX21 T-box 21 528801 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16034 TCAP titin-cap (telethonin) 65403 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16035 TCEA2 transcription elongation factor A (SII), 2 368082 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16036 TCEAL1 transcription elongation factor A (SII)-like 1 219531 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16037 TCEAL4 transcription elongation factor A (SII)-like 4 330564 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16038 TCEAL6 transcription elongation factor A (SII)-like 6 281892 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16039 TCEAL7 transcription elongation factor A (SII)-like 7 155649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16040 TCEAL8 transcription elongation factor A (SII)-like 8 181506 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16041 TCEANC 535392 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16042 TCEB1 transcription elongation factor B (SIII), polypeptide 1 (15kDa, elongin C) 177957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16043 TCEB2 transcription elongation factor B (SIII), polypeptide 2 (18kDa, elongin B) 177957 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16044 TCEB3C transcription elongation factor B polypeptide 3C (elongin A3) 420810 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16045 TCERG1 transcription elongation regulator 1 1684254 0 0 0 3 0 0 0 0 0 0 1.00 1.00 -16046 TCERG1L transcription elongation regulator 1-like 426894 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16047 TCF23 transcription factor 23 218517 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16048 TCF25 transcription factor 25 (basic helix-loop-helix) 464919 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16049 TCF3 transcription factor 3 (E2A immunoglobulin enhancer binding factors E12/E47) 372138 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16050 TCF7L1 transcription factor 7-like 1 (T-cell specific, HMG-box) 696618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16051 TCFL5 transcription factor-like 5 (basic helix-loop-helix) 444132 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16052 TCHP trichoplein, keratin filament binding 585078 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16053 TCL1A T-cell leukemia/lymphoma 1A 180999 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16054 TCL1B T-cell leukemia/lymphoma 1B 189618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16055 TCN2 transcobalamin II; macrocytic anemia 669240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16056 TCP1 t-complex 1 837057 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16057 TCP10 t-complex 10 homolog (mouse) 334620 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16058 TCP10L t-complex 10 (mouse)-like 336648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16059 TCP11L1 t-complex 11 (mouse)-like 1 793962 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16060 TCTA T-cell leukemia translocation altered gene 163761 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16061 TCTE3 t-complex-associated-testis-expressed 3 310791 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16062 TCTEX1D1 Tctex1 domain containing 1 281892 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16063 TCTEX1D2 Tctex1 domain containing 2 168324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16064 TCTN2 tectonic family member 2 1054560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16065 TCTN3 tectonic family member 3 713349 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16066 TDG thymine-DNA glycosylase 631722 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16067 TDGF1 teratocarcinoma-derived growth factor 1 299637 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16068 TDO2 tryptophan 2,3-dioxygenase 643383 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16069 TDP1 tyrosyl-DNA phosphodiesterase 1 956709 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16070 TDP2 566319 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16071 TDRD3 tudor domain containing 3 1056081 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16072 TDRD7 tudor domain containing 7 1704027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16073 TDRD9 tudor domain containing 9 1425684 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16074 TDRKH tudor and KH domain containing 879138 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16075 TECR 404079 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16076 TECTB tectorin beta 522210 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16077 TEDDM1 transmembrane epididymal protein 1 418782 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16078 TEF thyrotrophic embryonic factor 388869 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16079 TEKT1 tektin 1 651495 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16080 TEKT3 tektin 3 758472 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16081 TEKT4 tektin 4 441090 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16082 TEPP 329043 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16083 TERF1 telomeric repeat binding factor (NIMA-interacting) 1 578487 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16084 TERF2 telomeric repeat binding factor 2 652002 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16085 TERT telomerase reverse transcriptase 561249 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16086 TES testis derived transcript (3 LIM domains) 640341 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16087 TESC tescalcin 153621 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16088 TESK1 testis-specific kinase 1 898911 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16089 TEX10 testis expressed 10 1445964 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16090 TEX101 testis expressed 101 410163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16091 TEX12 testis expressed 12 196716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16092 TEX13A testis expressed 13A 627666 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16093 TEX13B testis expressed 13B 480129 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16094 TEX19 202293 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16095 TEX261 testis expressed 261 274287 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16096 TEX264 testis expressed 264 478608 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16097 TEX9 testis expressed 9 620568 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16098 TFAM transcription factor A, mitochondrial 336648 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16099 TFAP2D transcription factor AP-2 delta (activating enhancer binding protein 2 delta) 705237 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16100 TFAP2E transcription factor AP-2 epsilon (activating enhancer binding protein 2 epsilon) 425373 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16101 TFB2M transcription factor B2, mitochondrial 620061 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16102 TFDP1 transcription factor Dp-1 604344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16103 TFDP3 transcription factor Dp family, member 3 577980 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16104 TFE3 transcription factor binding to IGHM enhancer 3 703209 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16105 TFEB transcription factor EB 560742 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16106 TFF1 trefoil factor 1 79599 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16107 TFF2 trefoil factor 2 (spasmolytic protein 1) 127764 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16108 TFF3 trefoil factor 3 (intestinal) 120666 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16109 TFG TRK-fused gene 624117 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16110 TFR2 transferrin receptor 2 1102725 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16111 TGFB1 transforming growth factor, beta 1 363519 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16112 TGFB1I1 transforming growth factor beta 1 induced transcript 1 480129 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16113 TGFB2 transforming growth factor, beta 2 690027 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16114 TGFBR2 transforming growth factor, beta receptor II (70/80kDa) 868491 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16115 TGIF1 TGFB-induced factor homeobox 1 581529 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16116 TGIF2LX TGFB-induced factor homeobox 2-like, X-linked 370110 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16117 TGM2 transglutaminase 2 (C polypeptide, protein-glutamine-gamma-glutamyltransferase) 992706 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16118 TGM3 transglutaminase 3 (E polypeptide, protein-glutamine-gamma-glutamyltransferase) 1017549 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16119 TGOLN2 trans-golgi network protein 2 604344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16120 THAP10 THAP domain containing 10 361491 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16121 THAP11 THAP domain containing 11 312819 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16122 THAP2 THAP domain containing, apoptosis associated protein 2 354393 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16123 THAP3 THAP domain containing, apoptosis associated protein 3 220038 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16124 THAP6 THAP domain containing 6 347295 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16125 THAP8 THAP domain containing 8 221052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16126 THBS2 thrombospondin 2 1042899 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16127 THEM4 thioesterase superfamily member 4 326508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16128 THG1L tRNA-histidine guanylyltransferase 1-like (S. cerevisiae) 466947 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16129 THOC3 THO complex 3 409656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16130 THOC6 THO complex 6 homolog (Drosophila) 504465 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16131 THOC7 THO complex 7 homolog (Drosophila) 316368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16132 THPO thrombopoietin (myeloproliferative leukemia virus oncogene ligand, megakaryocyte growth and development factor) 548574 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16133 THRA thyroid hormone receptor, alpha (erythroblastic leukemia viral (v-erb-a) oncogene homolog, avian) 789399 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16134 THRSP thyroid hormone responsive (SPOT14 homolog, rat) 225615 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16135 THSD1 thrombospondin, type I, domain containing 1 1305525 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16136 THSD4 thrombospondin, type I, domain containing 4 1378533 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16137 THTPA thiamine triphosphatase 355407 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16138 THUMPD1 THUMP domain containing 1 427401 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16139 THUMPD3 THUMP domain containing 3 790920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16140 THY1 Thy-1 cell surface antigen 250965 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16141 THYN1 thymocyte nuclear protein 1 357942 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16142 TIAF1 TGFB1-induced anti-apoptotic factor 1 178464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16143 TIAL1 TIA1 cytotoxic granule-associated RNA binding protein-like 1 603837 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16144 TICAM2 toll-like receptor adaptor molecule 2 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16145 TIE1 tyrosine kinase with immunoglobulin-like and EGF-like domains 1 1592994 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16146 TIFAB TRAF-interacting protein with forkhead-associated domain, family member B 248430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16147 TIGD3 tigger transposable element derived 3 719940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16148 TIGD4 tigger transposable element derived 4 782301 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16149 TIGD7 tigger transposable element derived 7 838578 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16150 TIMM10 translocase of inner mitochondrial membrane 10 homolog (yeast) 142467 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16151 TIMM17B translocase of inner mitochondrial membrane 17 homolog B (yeast) 212433 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16152 TIMM23 translocase of inner mitochondrial membrane 23 homolog (yeast) 103935 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16153 TIMM8B translocase of inner mitochondrial membrane 8 homolog B (yeast) 111540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16154 TIMM9 translocase of inner mitochondrial membrane 9 homolog (yeast) 142974 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16155 TIMP1 TIMP metallopeptidase inhibitor 1 326508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16156 TIMP2 TIMP metallopeptidase inhibitor 2 278343 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16157 TIMP3 TIMP metallopeptidase inhibitor 3 (Sorsby fundus dystrophy, pseudoinflammatory) 266682 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16158 TIMP4 TIMP metallopeptidase inhibitor 4 352365 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16159 TINAGL1 tubulointerstitial nephritis antigen-like 1 598767 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16160 TINF2 TERF1 (TRF1)-interacting nuclear factor 2 707772 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16161 TIPRL TIP41, TOR signaling pathway regulator-like (S. cerevisiae) 416247 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16162 TJAP1 tight junction associated protein 1 (peripheral) 817284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16163 TJP2 tight junction protein 2 (zona occludens 2) 1597050 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16164 TK1 thymidine kinase 1, soluble 267189 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16165 TLCD1 TLC domain containing 1 284934 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16166 TLE1 transducin-like enhancer of split 1 (E(sp1) homolog, Drosophila) 1084473 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16167 TLE2 transducin-like enhancer of split 2 (E(sp1) homolog, Drosophila) 501930 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16168 TLK1 tousled-like kinase 1 1140243 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16169 TLL1 tolloid-like 1 1584882 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16170 TLR6 toll-like receptor 6 1214265 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16171 TLR9 toll-like receptor 9 1575249 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16172 TLX1 T-cell leukemia homeobox 1 145002 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16173 TLX1NB 58305 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16174 TM2D3 TM2 domain containing 3 341211 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16175 TM4SF18 transmembrane 4 L six family member 18 317382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16176 TM4SF19 transmembrane 4 L six family member 19 327522 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16177 TM4SF20 transmembrane 4 L six family member 20 357942 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16178 TM4SF4 transmembrane 4 L six family member 4 318903 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16179 TM4SF5 transmembrane 4 L six family member 5 307749 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16180 TM6SF1 transmembrane 6 superfamily member 1 535899 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16181 TM7SF2 transmembrane 7 superfamily member 2 480636 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16182 TM7SF3 transmembrane 7 superfamily member 3 844662 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16183 TM7SF4 transmembrane 7 superfamily member 4 722475 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16184 TM9SF3 transmembrane 9 superfamily member 3 874068 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16185 TM9SF4 transmembrane 9 superfamily protein member 4 1004874 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16186 TMBIM1 transmembrane BAX inhibitor motif containing 1 392418 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16187 TMBIM6 469482 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16188 TMC1 transmembrane channel-like 1 1198041 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16189 TMCO1 transmembrane and coiled-coil domains 1 301665 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16190 TMCO2 transmembrane and coiled-coil domains 2 282399 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16191 TMCO3 transmembrane and coiled-coil domains 3 1001325 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16192 TMCO4 transmembrane and coiled-coil domains 4 894348 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16193 TMCO5A 459849 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16194 TMED1 transmembrane emp24 protein transport domain containing 1 260091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16195 TMED2 transmembrane emp24 domain trafficking protein 2 286455 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16196 TMED3 transmembrane emp24 protein transport domain containing 3 250458 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16197 TMED4 transmembrane emp24 protein transport domain containing 4 269217 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16198 TMED5 transmembrane emp24 protein transport domain containing 5 352872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16199 TMED6 transmembrane emp24 protein transport domain containing 6 374673 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16200 TMED7-TICAM2 539448 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16201 TMED8 transmembrane emp24 protein transport domain containing 8 446160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16202 TMED9 transmembrane emp24 protein transport domain containing 9 220545 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16203 TMEFF1 transmembrane protein with EGF-like and two follistatin-like domains 1 498381 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16204 TMEM100 transmembrane protein 100 207363 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16205 TMEM102 transmembrane protein 102 462384 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16206 TMEM105 transmembrane protein 105 171366 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16207 TMEM106C transmembrane protein 106C 395967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16208 TMEM107 transmembrane protein 107 233220 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16209 TMEM109 transmembrane protein 109 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16210 TMEM11 transmembrane protein 11 263133 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16211 TMEM111 transmembrane protein 111 414726 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16212 TMEM115 transmembrane protein 115 350337 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16213 TMEM116 transmembrane protein 116 388362 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16214 TMEM117 transmembrane protein 117 797511 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16215 TMEM123 transmembrane protein 123 275301 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16216 TMEM126A transmembrane protein 126A 306228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16217 TMEM126B transmembrane protein 126B 313833 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16218 TMEM127 transmembrane protein 127 243867 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16219 TMEM128 transmembrane protein 128 224094 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16220 TMEM130 transmembrane protein 130 634257 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16221 TMEM132E transmembrane protein 132E 1093092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16222 TMEM133 transmembrane protein 133 199758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16223 TMEM134 transmembrane protein 134 88218 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16224 TMEM135 transmembrane protein 135 722475 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16225 TMEM136 transmembrane protein 136 232713 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16226 TMEM138 transmembrane protein 138 256035 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16227 TMEM139 transmembrane protein 139 334113 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16228 TMEM140 transmembrane protein 140 284934 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16229 TMEM141 transmembrane protein 141 89739 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16230 TMEM143 transmembrane protein 143 617526 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16231 TMEM144 transmembrane protein 144 548574 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16232 TMEM145 transmembrane protein 145 675831 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16233 TMEM147 transmembrane protein 147 352872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16234 TMEM149 transmembrane protein 149 467961 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16235 TMEM14A transmembrane protein 14A 160212 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16236 TMEM14B transmembrane protein 14B 185055 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16237 TMEM14C transmembrane protein 14C 182013 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16238 TMEM14E 193674 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16239 TMEM150C 389883 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16240 TMEM154 transmembrane protein 154 259584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16241 TMEM156 transmembrane protein 156 463398 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16242 TMEM159 transmembrane protein 159 254514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16243 TMEM163 transmembrane protein 163 352872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16244 TMEM164 transmembrane protein 164 465426 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16245 TMEM165 transmembrane protein 165 399009 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16246 TMEM168 transmembrane protein 168 1069770 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16247 TMEM17 transmembrane protein 17 258570 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16248 TMEM170B 157170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16249 TMEM171 transmembrane protein 171 500409 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16250 TMEM175 transmembrane protein 175 261612 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16251 TMEM176A transmembrane protein 176A 327015 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16252 TMEM176B transmembrane protein 176B 424359 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16253 TMEM177 transmembrane protein 177 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16254 TMEM179 transmembrane protein 179 78585 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16255 TMEM179B transmembrane protein 179B 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16256 TMEM180 transmembrane protein 180 804102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16257 TMEM181 transmembrane protein 181 694083 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16258 TMEM183A transmembrane protein 183A 532350 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16259 TMEM184A transmembrane protein 184A 168324 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16260 TMEM184B transmembrane protein 184B 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16261 TMEM184C 687999 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16262 TMEM185A transmembrane protein 185A 399516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16263 TMEM186 transmembrane protein 186 329550 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16264 TMEM187 transmembrane protein 187 373152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16265 TMEM188 transmembrane protein 188 150579 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16266 TMEM189-UBE2V1 TMEM189-UBE2V1 517140 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16267 TMEM19 transmembrane protein 19 524745 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16268 TMEM190 transmembrane protein 190 132834 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16269 TMEM192 transmembrane protein 192 410163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16270 TMEM194A 632736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16271 TMEM196 transmembrane protein 196 163761 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16272 TMEM198 transmembrane protein 198 384813 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16273 TMEM199 transmembrane protein 199 238797 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16274 TMEM2 transmembrane protein 2 2151708 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16275 TMEM20 transmembrane protein 20 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16276 TMEM200A transmembrane protein 200A 750360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16277 TMEM202 transmembrane protein 202 426894 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16278 TMEM204 transmembrane protein 204 143988 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16279 TMEM205 transmembrane protein 205 295074 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16280 TMEM206 transmembrane protein 206 550095 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16281 TMEM208 transmembrane protein 208 262119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16282 TMEM209 transmembrane protein 209 855309 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16283 TMEM211 201786 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16284 TMEM215 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16285 TMEM216 163761 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16286 TMEM217 355914 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16287 TMEM218 124722 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16288 TMEM219 374673 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16289 TMEM22 transmembrane protein 22 630201 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16290 TMEM220 218517 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16291 TMEM222 229671 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16292 TMEM225 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16293 TMEM229B 251979 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16294 TMEM231 268203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16295 TMEM25 transmembrane protein 25 525252 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16296 TMEM26 transmembrane protein 26 573417 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16297 TMEM30A transmembrane protein 30A 564798 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16298 TMEM31 transmembrane protein 31 261105 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16299 TMEM33 transmembrane protein 33 366561 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16300 TMEM35 transmembrane protein 35 259584 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16301 TMEM37 transmembrane protein 37 281892 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16302 TMEM39A transmembrane protein 39A 759993 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16303 TMEM39B transmembrane protein 39B 584064 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16304 TMEM40 transmembrane protein 40 378222 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16305 TMEM41A transmembrane protein 41A 270738 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16306 TMEM41B transmembrane protein 41B 403065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16307 TMEM42 transmembrane protein 42 150072 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16308 TMEM43 transmembrane protein 43 626145 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16309 TMEM45A transmembrane protein 45A 429936 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16310 TMEM45B transmembrane protein 45B 410163 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16311 TMEM49 transmembrane protein 49 641355 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16312 TMEM5 transmembrane protein 5 656565 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16313 TMEM53 transmembrane protein 53 395967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16314 TMEM54 transmembrane protein 54 313833 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16315 TMEM55A transmembrane protein 55A 377208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16316 TMEM55B transmembrane protein 55B 363012 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16317 TMEM56 transmembrane protein 56 413712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16318 TMEM59 transmembrane protein 59 509028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16319 TMEM60 transmembrane protein 60 205842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16320 TMEM61 transmembrane protein 61 317382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16321 TMEM62 transmembrane protein 62 914628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16322 TMEM63A transmembrane protein 63A 1128075 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16323 TMEM65 transmembrane protein 65 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16324 TMEM68 transmembrane protein 68 400530 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16325 TMEM69 transmembrane protein 69 381264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16326 TMEM70 transmembrane protein 70 298623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16327 TMEM79 transmembrane protein 79 606372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16328 TMEM80 transmembrane protein 80 173901 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16329 TMEM81 transmembrane protein 81 391404 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16330 TMEM85 transmembrane protein 85 244374 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16331 TMEM86A transmembrane protein 86A 359970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16332 TMEM86B transmembrane protein 86B 122694 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16333 TMEM8C 347802 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16334 TMEM91 transmembrane protein 91 317382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16335 TMEM92 transmembrane protein 92 252993 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16336 TMEM93 transmembrane protein 93 81627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16337 TMEM95 transmembrane protein 95 288990 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16338 TMEM97 transmembrane protein 97 209391 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16339 TMEM98 transmembrane protein 98 288990 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16340 TMEM99 transmembrane protein 99 395967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16341 TMF1 TATA element modulatory factor 1 1698450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16342 TMIE transmembrane inner ear 197730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16343 TMIGD1 transmembrane and immunoglobulin domain containing 1 412191 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16344 TMLHE trimethyllysine hydroxylase, epsilon 583557 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16345 TMOD2 tropomodulin 2 (neuronal) 553644 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16346 TMOD3 tropomodulin 3 (ubiquitous) 555165 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16347 TMOD4 tropomodulin 4 (muscle) 544518 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16348 TMPO thymopoietin 1339494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16349 TMPPE 692562 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16350 TMPRSS11D transmembrane protease, serine 11D 657579 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16351 TMPRSS11E transmembrane protease, serine 11E 490776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16352 TMPRSS12 transmembrane protease, serine 12 475566 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16353 TMPRSS15 1572714 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16354 TMPRSS2 transmembrane protease, serine 2 460863 0 0 0 4 0 0 0 0 0 0 1.00 1.00 -16355 TMPRSS3 transmembrane protease, serine 3 692562 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16356 TMPRSS4 transmembrane protease, serine 4 689013 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16357 TMPRSS5 transmembrane protease, serine 5 (spinesin) 525252 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16358 TMPRSS7 transmembrane protease, serine 7 937950 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16359 TMPRSS9 transmembrane protease, serine 9 451230 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16360 TMSB10 thymosin beta 10 63882 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16361 TMSB15B 74022 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16362 TMSB4X thymosin beta 4, X-linked 72501 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16363 TMSL3 thymosin-like 3 142974 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16364 TMUB1 transmembrane and ubiquitin-like domain containing 1 199251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16365 TMX1 435006 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16366 TMX2 457821 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16367 TMX3 669240 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16368 TNF tumor necrosis factor (TNF superfamily, member 2) 364026 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16369 TNFAIP1 tumor necrosis factor, alpha-induced protein 1 (endothelial) 486720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16370 TNFAIP2 tumor necrosis factor, alpha-induced protein 2 518661 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16371 TNFAIP8 tumor necrosis factor, alpha-induced protein 8 293046 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16372 TNFAIP8L1 tumor necrosis factor, alpha-induced protein 8-like 1 79092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16373 TNFAIP8L3 tumor necrosis factor, alpha-induced protein 8-like 3 376701 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16374 TNFRSF10A tumor necrosis factor receptor superfamily, member 10a 576459 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16375 TNFRSF10B tumor necrosis factor receptor superfamily, member 10b 575952 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16376 TNFRSF10C tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain 373152 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16377 TNFRSF12A tumor necrosis factor receptor superfamily, member 12A 58305 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16378 TNFRSF13B tumor necrosis factor receptor superfamily, member 13B 408135 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16379 TNFRSF14 tumor necrosis factor receptor superfamily, member 14 (herpesvirus entry mediator) 247923 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16380 TNFRSF17 tumor necrosis factor receptor superfamily, member 17 287469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16381 TNFRSF19 tumor necrosis factor receptor superfamily, member 19 658593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16382 TNFRSF1B tumor necrosis factor receptor superfamily, member 1B 622596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16383 TNFRSF25 tumor necrosis factor receptor superfamily, member 25 313833 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16384 TNFRSF9 tumor necrosis factor receptor superfamily, member 9 403572 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16385 TNFSF10 tumor necrosis factor (ligand) superfamily, member 10 439062 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16386 TNFSF11 tumor necrosis factor (ligand) superfamily, member 11 380757 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16387 TNFSF12 tumor necrosis factor (ligand) superfamily, member 12 285441 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16388 TNFSF12-TNFSF13 TNFSF12-TNFSF13 416754 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16389 TNFSF13 tumor necrosis factor (ligand) superfamily, member 13 358449 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16390 TNFSF14 tumor necrosis factor (ligand) superfamily, member 14 340704 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16391 TNFSF15 tumor necrosis factor (ligand) superfamily, member 15 391404 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16392 TNFSF8 tumor necrosis factor (ligand) superfamily, member 8 365547 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16393 TNIP1 TNFAIP3 interacting protein 1 970905 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16394 TNIP3 TNFAIP3 interacting protein 3 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16395 TNK1 tyrosine kinase, non-receptor, 1 409149 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16396 TNK2 tyrosine kinase, non-receptor, 2 771654 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16397 TNKS tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase 1915446 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16398 TNMD tenomodulin 497874 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16399 TNNC1 troponin C type 1 (slow) 232206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16400 TNNI1 troponin I type 1 (skeletal, slow) 295581 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16401 TNNI3K TNNI3 interacting kinase 1458639 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16402 TNNT1 troponin T type 1 (skeletal, slow) 295581 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16403 TNNT2 troponin T type 2 (cardiac) 477594 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16404 TNP1 transition protein 1 (during histone to protamine replacement) 89232 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16405 TNP2 transition protein 2 (during histone to protamine replacement) 215475 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16406 TNPO3 transportin 3 1450020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16407 TNS4 tensin 4 1111851 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16408 TOB2 transducer of ERBB2, 2 405093 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16409 TOE1 target of EGR1, member 1 (nuclear) 770133 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16410 TOM1 target of myb1 (chicken) 712842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16411 TOM1L1 target of myb1 (chicken)-like 1 755937 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16412 TOM1L2 target of myb1-like 2 (chicken) 682422 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16413 TOMM20 translocase of outer mitochondrial membrane 20 homolog (yeast) 232206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16414 TOMM40 translocase of outer mitochondrial membrane 40 homolog (yeast) 427908 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16415 TOMM5 133341 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16416 TOMM7 translocase of outer mitochondrial membrane 7 homolog (yeast) 91260 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16417 TOMM70A translocase of outer mitochondrial membrane 70 homolog A (S. cerevisiae) 784329 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16418 TOP1MT topoisomerase (DNA) I, mitochondrial 766077 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16419 TOP2B topoisomerase (DNA) II beta 180kDa 2304315 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16420 TOP3B topoisomerase (DNA) III beta 899418 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16421 TOR1B torsin family 1, member B (torsin B) 419796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16422 TOR2A torsin family 2, member A 195702 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16423 TP53AIP1 167817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16424 TP53I11 tumor protein p53 inducible protein 11 254007 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16425 TP53I13 tumor protein p53 inducible protein 13 189618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16426 TP53INP1 tumor protein p53 inducible nuclear protein 1 385827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16427 TP53INP2 tumor protein p53 inducible nuclear protein 2 152100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16428 TP53RK TP53 regulating kinase 244881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16429 TP53TG5 452751 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16430 TP63 tumor protein p63 1147848 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16431 TPBG trophoblast glycoprotein 460863 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16432 TPD52L2 tumor protein D52-like 2 297609 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16433 TPD52L3 tumor protein D52-like 3 259077 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16434 TPH1 tryptophan hydroxylase 1 (tryptophan 5-monooxygenase) 697125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16435 TPH2 tryptophan hydroxylase 2 769119 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16436 TPI1 triosephosphate isomerase 1 384813 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16437 TPM4 tropomyosin 4 445653 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16438 TPMT thiopurine S-methyltransferase 390390 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16439 TPP2 tripeptidyl peptidase II 1878942 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16440 TPPP3 tubulin polymerization-promoting protein family member 3 275301 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16441 TPRA1 485199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16442 TPRG1L tumor protein p63 regulated 1-like 254514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16443 TPRKB TP53RK binding protein 275808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16444 TPT1 tumor protein, translationally-controlled 1 219531 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16445 TPTE transmembrane phosphatase with tensin homology 882180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16446 TPX2 TPX2, microtubule-associated, homolog (Xenopus laevis) 1170156 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16447 TRA2A 439062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16448 TRABD TraB domain containing 168831 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16449 TRAF1 TNF receptor-associated factor 1 647946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16450 TRAF2 TNF receptor-associated factor 2 678366 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16451 TRAF3 TNF receptor-associated factor 3 882687 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16452 TRAF3IP2 TRAF3 interacting protein 2 877110 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16453 TRAF4 TNF receptor-associated factor 4 461370 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16454 TRAF5 TNF receptor-associated factor 5 868998 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16455 TRAIP TRAF interacting protein 738699 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16456 TRAM1 translocation associated membrane protein 1 585078 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16457 TRAM1L1 translocation associated membrane protein 1-like 1 532350 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16458 TRAM2 translocation associated membrane protein 2 523731 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16459 TRAPPC2L trafficking protein particle complex 2-like 178971 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16460 TRAPPC3 trafficking protein particle complex 3 285441 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16461 TRAPPC4 trafficking protein particle complex 4 344760 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16462 TRAPPC6A trafficking protein particle complex 6A 226122 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16463 TRAPPC6B trafficking protein particle complex 6B 254007 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16464 TRAT1 T cell receptor associated transmembrane adaptor 1 296595 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16465 TREML4 triggering receptor expressed on myeloid cells-like 4 315861 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16466 TREX1 three prime repair exonuclease 1 564798 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16467 TRH thyrotropin-releasing hormone 373659 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16468 TRHR thyrotropin-releasing hormone receptor 610935 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16469 TRIAP1 TP53 regulated inhibitor of apoptosis 1 121173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16470 TRIB1 tribbles homolog 1 (Drosophila) 388869 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16471 TRIB2 tribbles homolog 2 (Drosophila) 529308 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16472 TRIM15 tripartite motif-containing 15 556179 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16473 TRIM16 tripartite motif-containing 16 864435 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16474 TRIM16L tripartite motif-containing 16-like 538941 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16475 TRIM2 tripartite motif-containing 2 1091571 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16476 TRIM22 tripartite motif-containing 22 773175 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16477 TRIM25 tripartite motif-containing 25 784329 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16478 TRIM27 tripartite motif-containing 27 583050 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16479 TRIM3 tripartite motif-containing 3 1154946 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16480 TRIM31 tripartite motif-containing 31 664170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16481 TRIM33 tripartite motif-containing 33 1487538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16482 TRIM34 tripartite motif-containing 34 778245 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16483 TRIM35 tripartite motif-containing 35 254514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16484 TRIM36 tripartite motif-containing 36 1256346 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16485 TRIM39 tripartite motif-containing 39 803595 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16486 TRIM4 tripartite motif-containing 4 574938 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16487 TRIM40 tripartite motif-containing 40 359970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16488 TRIM43 tripartite motif-containing 43 470496 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16489 TRIM44 tripartite motif-containing 44 534885 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16490 TRIM47 tripartite motif-containing 47 566826 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16491 TRIM52 tripartite motif-containing 52 457314 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16492 TRIM54 tripartite motif-containing 54 484185 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16493 TRIM58 tripartite motif-containing 58 462891 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16494 TRIM59 tripartite motif-containing 59 616512 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16495 TRIM61 tripartite motif-containing 61 268203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16496 TRIM62 tripartite motif-containing 62 523224 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16497 TRIM69 tripartite motif-containing 69 725517 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16498 TRIM7 tripartite motif-containing 7 490269 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16499 TRIM71 tripartite motif-containing 71 978003 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16500 TRIM73 tripartite motif-containing 73 216996 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16501 TRIM74 tripartite motif-containing 74 339183 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16502 TRIML1 tripartite motif family-like 1 682422 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16503 TRIML2 tripartite motif family-like 2 604344 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16504 TRIP4 thyroid hormone receptor interactor 4 858351 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16505 TRIT1 tRNA isopentenyltransferase 1 717912 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16506 TRMT11 tRNA methyltransferase 11 homolog (S. cerevisiae) 693576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16507 TRMT112 199758 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16508 TRMT12 tRNA methyltransferase 12 homolog (S. cerevisiae) 684957 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16509 TRMT61A 279864 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16510 TRMU tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase 500916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16511 TRNAU1AP 440583 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16512 TRPM1 transient receptor potential cation channel, subfamily M, member 1 2492412 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16513 TRPT1 tRNA phosphotransferase 1 282399 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16514 TRPV1 transient receptor potential cation channel, subfamily V, member 1 839592 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16515 TRPV3 transient receptor potential cation channel, subfamily V, member 3 1103232 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16516 TRPV5 transient receptor potential cation channel, subfamily V, member 5 1140750 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16517 TRUB2 TruB pseudouridine (psi) synthase homolog 2 (E. coli) 514098 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16518 TSC22D4 TSC22 domain family, member 4 484692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16519 TSFM Ts translation elongation factor, mitochondrial 477087 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16520 TSGA10 testis specific, 10 1095627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16521 TSGA10IP testis specific, 10 interacting protein 697125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16522 TSGA14 testis specific, 14 591162 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16523 TSHB thyroid stimulating hormone, beta 215475 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16524 TSHZ1 teashirt zinc finger homeobox 1 1481454 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16525 TSHZ3 teashirt zinc finger homeobox 3 1627470 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16526 TSN translin 360477 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16527 TSNAX translin-associated factor X 454779 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16528 TSNAXIP1 translin-associated factor X interacting protein 1 971412 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16529 TSPAN10 tetraspanin 10 276822 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16530 TSPAN14 tetraspanin 14 418275 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16531 TSPAN15 tetraspanin 15 406107 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16532 TSPAN16 tetraspanin 16 360477 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16533 TSPAN18 tetraspanin 18 392925 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16534 TSPAN19 tetraspanin 19 394953 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16535 TSPAN2 tetraspanin 2 265161 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16536 TSPAN3 tetraspanin 3 366561 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16537 TSPAN31 tetraspanin 31 305721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16538 TSPAN32 tetraspanin 32 180492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16539 TSPAN5 tetraspanin 5 425373 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16540 TSPAN6 tetraspanin 6 388362 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16541 TSPAN7 tetraspanin 7 389883 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16542 TSPAN8 tetraspanin 8 378222 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16543 TSPAN9 tetraspanin 9 310284 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16544 TSPYL4 TSPY-like 4 446667 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16545 TSPYL5 TSPY-like 5 471510 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16546 TSPYL6 TSPY-like 6 626652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16547 TSSK4 testis-specific serine kinase 4 523731 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16548 TSSK6 testis-specific serine kinase 6 246402 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16549 TST thiosulfate sulfurtransferase (rhodanese) 197223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16550 TSTA3 tissue specific transplantation antigen P35B 338676 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16551 TSTD2 804609 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16552 TTC1 tetratricopeptide repeat domain 1 459849 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16553 TTC12 tetratricopeptide repeat domain 12 1116414 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16554 TTC13 tetratricopeptide repeat domain 13 1216800 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16555 TTC17 tetratricopeptide repeat domain 17 1703013 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16556 TTC21A tetratricopeptide repeat domain 21A 2069574 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16557 TTC23L 568854 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16558 TTC25 tetratricopeptide repeat domain 25 838071 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16559 TTC27 tetratricopeptide repeat domain 27 1213251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16560 TTC30A tetratricopeptide repeat domain 30A 896376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16561 TTC30B tetratricopeptide repeat domain 30B 912093 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16562 TTC33 tetratricopeptide repeat domain 33 408135 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16563 TTC36 159705 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16564 TTC39C 829959 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16565 TTC8 tetratricopeptide repeat domain 8 755430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16566 TTC9 tetratricopeptide repeat domain 9 137397 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16567 TTC9B tetratricopeptide repeat domain 9B 128778 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16568 TTF1 transcription termination factor, RNA polymerase I 1398306 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16569 TTLL11 tubulin tyrosine ligase-like family, member 11 454779 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16570 TTLL2 tubulin tyrosine ligase-like family, member 2 882180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16571 TTLL9 tubulin tyrosine ligase-like family, member 9 697125 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16572 TTPAL 529815 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16573 TTR transthyretin (prealbumin, amyloidosis type I) 88218 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16574 TTYH3 tweety homolog 3 (Drosophila) 209391 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16575 TUBA1A tubulin, alpha 1a 695604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16576 TUBA1C tubulin, alpha 1c 689013 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16577 TUBA3E tubulin, alpha 3e 696111 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16578 TUBA4A tubulin, alpha 4a 687492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16579 TUBA8 tubulin, alpha 8 691041 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16580 TUBB1 tubulin, beta 1 695604 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16581 TUBB2A tubulin, beta 2A 492297 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16582 TUBB3 tubulin, beta 3 624117 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16583 TUBB4Q tubulin, beta polypeptide 4, member Q 306735 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16584 TUBB6 tubulin, beta 6 628173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16585 TUBB8 629694 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16586 TUBE1 tubulin, epsilon 1 694083 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16587 TUBG1 tubulin, gamma 1 682929 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16588 TUBG2 tubulin, gamma 2 679887 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16589 TUBGCP3 tubulin, gamma complex associated protein 3 1366872 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16590 TUBGCP4 tubulin, gamma complex associated protein 4 1042899 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16591 TUBGCP6 tubulin, gamma complex associated protein 6 1912911 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16592 TUFT1 tuftelin 1 545025 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16593 TULP2 tubby like protein 2 816777 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16594 TUSC2 tumor suppressor candidate 2 89739 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16595 TUSC3 tumor suppressor candidate 3 489255 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16596 TUSC5 tumor suppressor candidate 5 267696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16597 TWF1 twinfilin, actin-binding protein, homolog 1 (Drosophila) 537420 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16598 TXLNA taxilin alpha 592176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16599 TXLNB taxilin beta 1060137 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16600 TXLNG 771147 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16601 TXN2 thioredoxin 2 260091 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16602 TXNDC16 thioredoxin domain containing 16 1294878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16603 TXNDC17 thioredoxin domain containing 17 79599 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16604 TXNDC2 thioredoxin domain-containing 2 (spermatozoa) 846690 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16605 TXNDC3 thioredoxin domain containing 3 (spermatozoa) 926289 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16606 TXNDC5 thioredoxin domain containing 5 542490 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16607 TXNDC6 thioredoxin domain containing 6 419796 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16608 TXNDC9 thioredoxin domain containing 9 353379 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16609 TXNIP thioredoxin interacting protein 612456 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16610 TXNL1 thioredoxin-like 1 433485 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16611 TXNL4B thioredoxin-like 4B 234234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16612 TXNRD1 thioredoxin reductase 1 931359 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16613 TXNRD2 thioredoxin reductase 2 498888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16614 TXNRD3IT1 207870 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16615 TYMS thymidylate synthetase 385827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16616 TYRO3 TYRO3 protein tyrosine kinase 1274091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16617 TYROBP TYRO protein tyrosine kinase binding protein 140439 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16618 TYSND1 trypsin domain containing 1 269217 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16619 U2AF1 U2 small nuclear RNA auxiliary factor 1 394446 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16620 U2AF1L4 U2 small nuclear RNA auxiliary factor 1-like 4 346281 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16621 U2AF2 U2 small nuclear RNA auxiliary factor 2 501423 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16622 UAP1 UDP-N-acteylglucosamine pyrophosphorylase 1 787878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16623 UAP1L1 UDP-N-acteylglucosamine pyrophosphorylase 1-like 1 272259 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16624 UBA2 ubiquitin-like modifier activating enzyme 2 933387 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16625 UBA5 ubiquitin-like modifier activating enzyme 5 556686 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16626 UBA52 ubiquitin A-52 residue ribosomal protein fusion product 1 204321 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16627 UBAC1 UBA domain containing 1 509028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16628 UBAC2 UBA domain containing 2 606372 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16629 UBAP2 ubiquitin associated protein 2 1760304 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16630 UBASH3B ubiquitin associated and SH3 domain containing, B 933387 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16631 UBB ubiquitin B 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16632 UBD ubiquitin D 256542 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16633 UBE2B ubiquitin-conjugating enzyme E2B (RAD6 homolog) 177450 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16634 UBE2C ubiquitin-conjugating enzyme E2C 309270 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16635 UBE2D1 ubiquitin-conjugating enzyme E2D 1 (UBC4/5 homolog, yeast) 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16636 UBE2D3 ubiquitin-conjugating enzyme E2D 3 (UBC4/5 homolog, yeast) 283413 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16637 UBE2D4 ubiquitin-conjugating enzyme E2D 4 (putative) 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16638 UBE2E1 ubiquitin-conjugating enzyme E2E 1 (UBC4/5 homolog, yeast) 305214 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16639 UBE2E2 ubiquitin-conjugating enzyme E2E 2 (UBC4/5 homolog, yeast) 317382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16640 UBE2E3 ubiquitin-conjugating enzyme E2E 3 (UBC4/5 homolog, yeast) 326508 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16641 UBE2F ubiquitin-conjugating enzyme E2F (putative) 301158 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16642 UBE2G1 ubiquitin-conjugating enzyme E2G 1 (UBC7 homolog, yeast) 244881 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16643 UBE2G2 ubiquitin-conjugating enzyme E2G 2 (UBC7 homolog, yeast) 168831 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16644 UBE2H ubiquitin-conjugating enzyme E2H (UBC8 homolog, yeast) 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16645 UBE2I ubiquitin-conjugating enzyme E2I (UBC9 homolog, yeast) 224601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16646 UBE2K ubiquitin-conjugating enzyme E2K (UBC1 homolog, yeast) 283920 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16647 UBE2L3 ubiquitin-conjugating enzyme E2L 3 228150 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16648 UBE2L6 ubiquitin-conjugating enzyme E2L 6 226629 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16649 UBE2M ubiquitin-conjugating enzyme E2M (UBC12 homolog, yeast) 192660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16650 UBE2N ubiquitin-conjugating enzyme E2N (UBC13 homolog, yeast) 223587 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16651 UBE2NL ubiquitin-conjugating enzyme E2N-like 236262 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16652 UBE2S ubiquitin-conjugating enzyme E2S 269217 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16653 UBE2T ubiquitin-conjugating enzyme E2T (putative) 313326 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16654 UBE2U ubiquitin-conjugating enzyme E2U (putative) 363519 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16655 UBE2V2 ubiquitin-conjugating enzyme E2 variant 2 220038 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16656 UBE2W ubiquitin-conjugating enzyme E2W (putative) 252486 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16657 UBFD1 ubiquitin family domain containing 1 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16658 UBL3 ubiquitin-like 3 189618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16659 UBL4A ubiquitin-like 4A 166296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16660 UBL5 ubiquitin-like 5 120666 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16661 UBL7 ubiquitin-like 7 (bone marrow stromal cell-derived) 555672 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16662 UBQLN2 ubiquilin 2 821847 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16663 UBQLN3 ubiquilin 3 999804 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16664 UBQLNL ubiquilin-like 726024 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16665 UBTD1 ubiquitin domain containing 1 315354 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16666 UBTD2 ubiquitin domain containing 2 326001 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16667 UBTF upstream binding transcription factor, RNA polymerase I 1165593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16668 UBXN1 449202 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16669 UBXN10 429429 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16670 UBXN2A 407628 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16671 UBXN2B 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16672 UBXN6 299130 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16673 UBXN7 728559 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16674 UBXN8 325494 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16675 UCHL1 ubiquitin carboxyl-terminal esterase L1 (ubiquitin thiolesterase) 268203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16676 UCK1 uridine-cytidine kinase 1 365040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16677 UCMA 221559 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16678 UCN urocortin 57798 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16679 UCN3 urocortin 3 (stresscopin) 248430 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16680 UCP1 uncoupling protein 1 (mitochondrial, proton carrier) 414726 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16681 UFM1 ubiquitin-fold modifier 1 142974 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16682 UFSP1 UFM1-specific peptidase 1 (non-functional) 200265 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16683 UFSP2 UFM1-specific peptidase 2 735657 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16684 UGCG UDP-glucose ceramide glucosyltransferase 567333 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16685 UGDH UDP-glucose dehydrogenase 775203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16686 UGP2 UDP-glucose pyrophosphorylase 2 794469 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16687 UGT1A1 UDP glucuronosyltransferase 1 family, polypeptide A1 822354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16688 UGT1A3 UDP glucuronosyltransferase 1 family, polypeptide A3 823875 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16689 UGT1A4 UDP glucuronosyltransferase 1 family, polypeptide A4 823875 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16690 UGT1A5 UDP glucuronosyltransferase 1 family, polypeptide A5 823875 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16691 UGT1A7 UDP glucuronosyltransferase 1 family, polypeptide A7 817791 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16692 UGT1A8 UDP glucuronosyltransferase 1 family, polypeptide A8 817791 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16693 UGT1A9 UDP glucuronosyltransferase 1 family, polypeptide A9 817791 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16694 UGT2A3 UDP glucuronosyltransferase 2 family, polypeptide A3 815256 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16695 UGT2B11 UDP glucuronosyltransferase 2 family, polypeptide B11 818298 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16696 UGT2B17 UDP glucuronosyltransferase 2 family, polypeptide B17 750867 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16697 UGT2B7 UDP glucuronosyltransferase 2 family, polypeptide B7 818298 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16698 UGT3A2 UDP glycosyltransferase 3 family, polypeptide A2 811200 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16699 UHMK1 U2AF homology motif (UHM) kinase 1 580515 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16700 UHRF2 ubiquitin-like, containing PHD and RING finger domains, 2 1199562 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16701 UIMC1 ubiquitin interaction motif containing 1 1123512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16702 ULBP1 UL16 binding protein 1 376194 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16703 ULBP2 UL16 binding protein 2 377208 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16704 ULK2 unc-51-like kinase 2 (C. elegans) 1533675 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16705 ULK3 unc-51-like kinase 3 (C. elegans) 380250 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16706 ULK4 unc-51-like kinase 4 (C. elegans) 2013804 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16707 UNC119 unc-119 homolog (C. elegans) 286455 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16708 UNC119B unc-119 homolog B (C. elegans) 267696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16709 UNC13D unc-13 homolog D (C. elegans) 764049 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16710 UNC45B unc-45 homolog B (C. elegans) 1359267 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16711 UNC50 unc-50 homolog (C. elegans) 405600 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16712 UNC5A unc-5 homolog A (C. elegans) 728052 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16713 UNC93B1 unc-93 homolog B1 (C. elegans) 290511 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16714 UNG uracil-DNA glycosylase 476073 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16715 UNK unkempt homolog (Drosophila) 757965 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16716 UPF3A UPF3 regulator of nonsense transcripts homolog A (yeast) 582543 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16717 UPK1A uroplakin 1A 314847 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16718 UPK1B uroplakin 1B 411177 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16719 UPK2 uroplakin 2 291525 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16720 UPP2 uridine phosphorylase 2 542997 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16721 UQCC ubiquinol-cytochrome c reductase complex chaperone, CBP3 homolog (yeast) 476580 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16722 UQCR10 118131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16723 UQCR11 63375 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16724 UQCRB ubiquinol-cytochrome c reductase binding protein 178464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16725 UQCRFS1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 311805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16726 UQCRH ubiquinol-cytochrome c reductase hinge protein 148044 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16727 UQCRHL 141960 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16728 UQCRQ ubiquinol-cytochrome c reductase, complex III subunit VII, 9.5kDa 128271 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16729 URB2 2337777 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16730 URGCP 1404897 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16731 URM1 ubiquitin related modifier 1 homolog (S. cerevisiae) 215982 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16732 UROC1 urocanase domain containing 1 899925 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16733 UROD uroporphyrinogen decarboxylase 580008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16734 UROS uroporphyrinogen III synthase (congenital erythropoietic porphyria) 350844 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16735 USF2 upstream transcription factor 2, c-fos interacting 294060 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16736 USMG5 upregulated during skeletal muscle growth 5 homolog (mouse) 93795 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16737 USO1 USO1 homolog, vesicle docking protein (yeast) 1241643 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16738 USP10 ubiquitin specific peptidase 10 1071798 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16739 USP14 ubiquitin specific peptidase 14 (tRNA-guanine transglycosylase) 775203 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16740 USP16 ubiquitin specific peptidase 16 1287780 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16741 USP18 ubiquitin specific peptidase 18 498381 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16742 USP22 ubiquitin specific peptidase 22 574938 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16743 USP24 ubiquitin specific peptidase 24 3759405 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16744 USP26 ubiquitin specific peptidase 26 1392222 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16745 USP28 ubiquitin specific peptidase 28 1659411 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16746 USP3 ubiquitin specific peptidase 3 774696 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16747 USP30 ubiquitin specific peptidase 30 770133 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16748 USP32 ubiquitin specific peptidase 32 2507115 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16749 USP39 ubiquitin specific peptidase 39 749346 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16750 USP44 ubiquitin specific peptidase 44 1094613 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16751 USP48 ubiquitin specific peptidase 48 1564602 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16752 USP49 ubiquitin specific peptidase 49 828945 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16753 USP50 ubiquitin specific peptidase 50 489762 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16754 USP6NL USP6 N-terminal like 1169649 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16755 UTP11L UTP11-like, U3 small nucleolar ribonucleoprotein, (yeast) 402558 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16756 UTP18 UTP18, small subunit (SSU) processome component, homolog (yeast) 698139 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16757 UTP23 288990 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16758 UTP3 UTP3, small subunit (SSU) processome component, homolog (S. cerevisiae) 655551 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16759 UTP6 UTP6, small subunit (SSU) processome component, homolog (yeast) 948090 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16760 UTS2 urotensin 2 263640 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16761 UTS2D urotensin 2 domain containing 192660 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16762 UXT ubiquitously-expressed transcript 270738 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16763 VAMP1 vesicle-associated membrane protein 1 (synaptobrevin 1) 205335 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16764 VAMP2 vesicle-associated membrane protein 2 (synaptobrevin 2) 185055 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16765 VAMP3 vesicle-associated membrane protein 3 (cellubrevin) 160719 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16766 VAMP4 vesicle-associated membrane protein 4 230178 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16767 VAMP5 vesicle-associated membrane protein 5 (myobrevin) 180492 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16768 VAMP7 vesicle-associated membrane protein 7 401037 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16769 VAMP8 vesicle-associated membrane protein 8 (endobrevin) 156156 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16770 VANGL1 vang-like 1 (van gogh, Drosophila) 812721 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16771 VAPB VAMP (vesicle-associated membrane protein)-associated protein B and C 351858 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16772 VARS valyl-tRNA synthetase 1775514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16773 VARS2 valyl-tRNA synthetase 2, mitochondrial (putative) 1647750 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16774 VASH2 vasohibin 2 342732 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16775 VASP vasodilator-stimulated phosphoprotein 431457 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16776 VAT1 vesicle amine transport protein 1 homolog (T. californica) 413205 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16777 VAT1L 523224 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16778 VAV2 vav 2 guanine nucleotide exchange factor 957723 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16779 VAX1 ventral anterior homeobox 1 292539 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16780 VAX2 ventral anterior homeobox 2 285441 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16781 VDAC1 voltage-dependent anion channel 1 448188 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16782 VDAC3 voltage-dependent anion channel 3 449709 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16783 VDR vitamin D (1,25- dihydroxyvitamin D3) receptor 666705 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16784 VEGFA vascular endothelial growth factor A 389376 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16785 VEGFB vascular endothelial growth factor B 191139 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16786 VEGFC vascular endothelial growth factor C 576459 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16787 VENTX VENT homeobox homolog (Xenopus laevis) 186069 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16788 VEPH1 ventricular zone expressed PH domain homolog 1 (zebrafish) 1345578 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16789 VEZF1 vascular endothelial zinc finger 1 787371 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16790 VGLL1 vestigial like 1 (Drosophila) 402051 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16791 VGLL2 vestigial like 2 (Drosophila) 225108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16792 VHL von Hippel-Lindau tumor suppressor 157170 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16793 VHLL von Hippel-Lindau tumor suppressor-like 214968 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16794 VIM vimentin 441090 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16795 VIPR1 vasoactive intestinal peptide receptor 1 521703 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16796 VIPR2 vasoactive intestinal peptide receptor 2 474552 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16797 VKORC1L1 vitamin K epoxide reductase complex, subunit 1-like 1 174915 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16798 VMA21 132327 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16799 VMO1 vitelline membrane outer layer 1 homolog (chicken) 242346 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16800 VN1R1 vomeronasal 1 receptor 1 540462 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16801 VN1R4 vomeronasal 1 receptor 4 461370 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16802 VN1R5 vomeronasal 1 receptor 5 546546 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16803 VOPP1 199251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16804 VPREB1 pre-B lymphocyte gene 1 225615 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16805 VPREB3 pre-B lymphocyte gene 3 134862 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16806 VPS25 vacuolar protein sorting 25 homolog (S. cerevisiae) 281385 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16807 VPS26B vacuolar protein sorting 26 homolog B (S. pombe) 501930 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16808 VPS29 vacuolar protein sorting 29 homolog (S. cerevisiae) 291018 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16809 VPS36 vacuolar protein sorting 36 homolog (S. cerevisiae) 569361 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16810 VPS37C vacuolar protein sorting 37 homolog C (S. cerevisiae) 249951 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16811 VPS37D vacuolar protein sorting 37 homolog D (S. cerevisiae) 106470 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16812 VPS39 vacuolar protein sorting 39 homolog (S. cerevisiae) 1344057 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16813 VPS45 vacuolar protein sorting 45 homolog (S. cerevisiae) 898911 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16814 VRK1 vaccinia related kinase 1 628173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16815 VSIG2 V-set and immunoglobulin domain containing 2 480129 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16816 VSIG4 V-set and immunoglobulin domain containing 4 626652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16817 VSNL1 visinin-like 1 298116 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16818 VSTM2L V-set and transmembrane domain containing 2 like 208377 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16819 VSX2 visual system homeobox 2 244374 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16820 VTA1 Vps20-associated 1 homolog (S. cerevisiae) 484692 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16821 VTCN1 V-set domain containing T cell activation inhibitor 1 440583 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16822 VTI1A vesicle transport through interaction with t-SNAREs homolog 1A (yeast) 308763 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16823 VTI1B vesicle transport through interaction with t-SNAREs homolog 1B (yeast) 306228 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16824 VTN vitronectin 613470 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16825 VWA2 von Willebrand factor A domain containing 2 994734 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16826 VWA5A 1233531 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16827 VWC2 von Willebrand factor C domain containing 2 147030 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16828 VWC2L 345267 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16829 VWCE von Willebrand factor C and EGF domains 1323777 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16830 WAPAL wings apart-like homolog (Drosophila) 1848015 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16831 WARS tryptophanyl-tRNA synthetase 738192 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16832 WASF2 WAS protein family, member 2 775203 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16833 WBP1 WW domain binding protein 1 381771 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16834 WBP11 WW domain binding protein 11 998790 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16835 WBP2 WW domain binding protein 2 276822 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16836 WBP2NL WBP2 N-terminal like 450216 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16837 WBP5 WW domain binding protein 5 161733 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16838 WBSCR16 Williams-Beuren syndrome chromosome region 16 290004 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16839 WBSCR22 Williams Beuren syndrome chromosome region 22 453258 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16840 WDHD1 WD repeat and HMG-box DNA binding protein 1 1769430 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16841 WDR1 WD repeat domain 1 530829 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16842 WDR12 WD repeat domain 12 671268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16843 WDR16 WD repeat domain 16 935415 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16844 WDR19 WD repeat domain 19 1783119 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16845 WDR25 WD repeat domain 25 805623 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16846 WDR27 WD repeat domain 27 1093599 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16847 WDR31 WD repeat domain 31 577980 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16848 WDR34 WD repeat domain 34 491790 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16849 WDR38 WD repeat domain 38 454779 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16850 WDR4 WD repeat domain 4 429429 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16851 WDR41 WD repeat domain 41 698139 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16852 WDR53 WD repeat domain 53 550095 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16853 WDR54 WD repeat domain 54 527787 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16854 WDR55 WD repeat domain 55 597753 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16855 WDR59 WD repeat domain 59 1460160 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16856 WDR5B WD repeat domain 5B 505479 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16857 WDR61 WD repeat domain 61 485706 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16858 WDR69 WD repeat domain 69 659100 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16859 WDR70 WD repeat domain 70 1032759 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16860 WDR73 WD repeat domain 73 536913 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16861 WDR77 WD repeat domain 77 443118 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16862 WDR8 WD repeat domain 8 529308 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16863 WDR83 498888 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16864 WDR85 WD repeat domain 85 569361 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16865 WDR88 WD repeat domain 88 727545 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16866 WDR89 WD repeat domain 89 592176 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16867 WDR92 WD repeat domain 92 560742 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16868 WDSUB1 WD repeat, sterile alpha motif and U-box domain containing 1 745797 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16869 WDTC1 WD and tetratricopeptide repeats 1 1016028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16870 WEE1 WEE1 homolog (S. pombe) 693069 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16871 WEE2 WEE1 homolog 2 (S. pombe) 888264 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16872 WFDC1 WAP four-disulfide core domain 1 210912 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16873 WFDC10A WAP four-disulfide core domain 10A 125736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16874 WFDC10B WAP four-disulfide core domain 10B 191139 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16875 WFDC12 WAP four-disulfide core domain 12 176436 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16876 WFDC13 WAP four-disulfide core domain 13 149058 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16877 WFDC2 WAP four-disulfide core domain 2 79092 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16878 WFDC3 WAP four-disulfide core domain 3 365040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16879 WFDC9 WAP four-disulfide core domain 9 142974 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16880 WFIKKN2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 829959 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16881 WHAMM 658593 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16882 WIBG within bgcn homolog (Drosophila) 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16883 WIPF1 WAS/WASL interacting protein family, member 1 761007 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16884 WIPI2 WD repeat domain, phosphoinositide interacting 2 620061 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16885 WNT1 wingless-type MMTV integration site family, member 1 334620 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16886 WNT10A wingless-type MMTV integration site family, member 10A 330057 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16887 WNT16 wingless-type MMTV integration site family, member 16 545025 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16888 WNT2 wingless-type MMTV integration site family member 2 549588 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16889 WNT3 wingless-type MMTV integration site family, member 3 243867 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16890 WNT4 wingless-type MMTV integration site family, member 4 493311 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16891 WNT5A wingless-type MMTV integration site family, member 5A 393939 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16892 WNT7B wingless-type MMTV integration site family, member 7B 227643 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16893 WNT8A wingless-type MMTV integration site family, member 8A 547560 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16894 WNT9B wingless-type MMTV integration site family, member 9B 511563 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16895 WRAP53 855309 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16896 WRB tryptophan rich basic protein 222573 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16897 WTIP Wilms tumor 1 interacting protein 291525 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16898 WWOX WW domain containing oxidoreductase 622596 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16899 WWP1 WW domain containing E3 ubiquitin protein ligase 1 1450527 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16900 WWTR1 WW domain containing transcription regulator 1 478608 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16901 XAB2 XPA binding protein 2 730587 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16902 XAF1 XIAP associated factor 1 473538 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16903 XAGE3 X antigen family, member 3 178464 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16904 XAGE5 X antigen family, member 5 173901 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16905 XCL1 chemokine (C motif) ligand 1 180999 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16906 XCL2 chemokine (C motif) ligand 2 180999 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16907 XG Xg blood group 297102 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16908 XKR3 XK, Kell blood group complex subunit-related family, member 3 705744 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16909 XKR4 XK, Kell blood group complex subunit-related family, member 4 640341 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16910 XKR6 XK, Kell blood group complex subunit-related family, member 6 593190 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16911 XKR7 XK, Kell blood group complex subunit-related family, member 7 576459 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16912 XKR8 XK, Kell blood group complex subunit-related family, member 8 355407 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16913 XPA xeroderma pigmentosum, complementation group A 339690 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16914 XPC xeroderma pigmentosum, complementation group C 1423656 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16915 XPR1 xenotropic and polytropic retrovirus receptor 1053546 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16916 XRCC2 X-ray repair complementing defective repair in Chinese hamster cells 2 430950 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16917 XRCC3 X-ray repair complementing defective repair in Chinese hamster cells 3 211419 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16918 XRCC5 X-ray repair complementing defective repair in Chinese hamster cells 5 (double-strand-break rejoining; Ku autoantigen, 80kDa) 1157481 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16919 XYLB xylulokinase homolog (H. influenzae) 824382 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16920 XYLT1 xylosyltransferase I 1284231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16921 YARS tyrosyl-tRNA synthetase 830973 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16922 YARS2 tyrosyl-tRNA synthetase 2, mitochondrial 736164 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16923 YBX1 Y box binding protein 1 422331 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16924 YBX2 Y box binding protein 2 431964 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16925 YEATS4 YEATS domain containing 4 333099 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16926 YIF1A Yip1 interacting factor homolog A (S. cerevisiae) 316368 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16927 YIF1B Yip1 interacting factor homolog B (S. cerevisiae) 170352 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16928 YIPF1 Yip1 domain family, member 1 483171 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16929 YIPF2 Yip1 domain family, member 2 447681 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16930 YIPF3 Yip1 domain family, member 3 509028 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16931 YIPF5 Yip1 domain family, member 5 402558 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16932 YKT6 YKT6 v-SNARE homolog (S. cerevisiae) 261105 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16933 YOD1 YOD1 OTU deubiquinating enzyme 1 homolog (S. cerevisiae) 436527 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16934 YPEL1 yippee-like 1 (Drosophila) 166296 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16935 YPEL2 yippee-like 2 (Drosophila) 190632 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16936 YPEL3 yippee-like 3 (Drosophila) 234234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16937 YPEL4 yippee-like 4 (Drosophila) 129285 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16938 YPEL5 yippee-like 5 (Drosophila) 189618 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16939 YRDC yrdC domain containing (E. coli) 236769 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16940 YTHDC2 YTH domain containing 2 2115711 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16941 YTHDF2 YTH domain family, member 2 861900 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16942 YTHDF3 YTH domain family, member 3 886743 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16943 YWHAE tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide 367575 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16944 YWHAG tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, gamma polypeptide 365040 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16945 YWHAH tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, eta polypeptide 333606 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16946 YWHAQ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, theta polypeptide 379236 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16947 YWHAZ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta polypeptide 384306 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16948 YY1 YY1 transcription factor 295074 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16949 YY2 YY2 transcription factor 569361 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16950 ZACN zinc activated ligand-gated ion channel 526266 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16951 ZADH2 zinc binding alcohol dehydrogenase, domain containing 2 471003 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16952 ZAN zonadhesin 4134585 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16953 ZAR1 zygote arrest 1 164268 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16954 ZBED1 zinc finger, BED-type containing 1 1032759 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16955 ZBED2 zinc finger, BED-type containing 2 335127 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16956 ZBED4 zinc finger, BED-type containing 4 1605669 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16957 ZBP1 Z-DNA binding protein 1 665691 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16958 ZBTB1 zinc finger and BTB domain containing 1 1068756 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16959 ZBTB11 zinc finger and BTB domain containing 11 1466244 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16960 ZBTB12 zinc finger and BTB domain containing 12 562263 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16961 ZBTB2 zinc finger and BTB domain containing 2 787371 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16962 ZBTB26 zinc finger and BTB domain containing 26 674310 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16963 ZBTB32 zinc finger and BTB domain containing 32 752388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16964 ZBTB34 zinc finger and BTB domain containing 34 721461 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16965 ZBTB37 zinc finger and BTB domain containing 37 554658 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16966 ZBTB38 zinc finger and BTB domain containing 38 1821144 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16967 ZBTB39 zinc finger and BTB domain containing 39 1086501 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16968 ZBTB4 zinc finger and BTB domain containing 4 1298427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16969 ZBTB43 zinc finger and BTB domain containing 43 713856 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16970 ZBTB45 zinc finger and BTB domain containing 45 254514 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16971 ZBTB47 zinc finger and BTB domain containing 47 400530 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16972 ZBTB7B zinc finger and BTB domain containing 7B 825396 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16973 ZBTB7C zinc finger and BTB domain containing 7C 687999 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16974 ZBTB8A 678366 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16975 ZBTB8OS zinc finger and BTB domain containing 8 opposite strand 287976 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16976 ZBTB9 zinc finger and BTB domain containing 9 722982 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16977 ZC3H12D zinc finger CCCH-type containing 12D 348816 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16978 ZC3H14 zinc finger CCCH-type containing 14 1332396 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16979 ZC3H8 zinc finger CCCH-type containing 8 402051 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16980 ZC3HAV1 zinc finger CCCH-type, antiviral 1 1243671 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16981 ZC3HAV1L zinc finger CCCH-type, antiviral 1-like 280878 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16982 ZCCHC10 zinc finger, CCHC domain containing 10 245388 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16983 ZCCHC13 zinc finger, CCHC domain containing 13 256035 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16984 ZCCHC14 zinc finger, CCHC domain containing 14 1123005 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16985 ZCCHC16 zinc finger, CCHC domain containing 16 475059 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16986 ZCCHC24 249444 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16987 ZCCHC3 zinc finger, CCHC domain containing 3 345267 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16988 ZCCHC4 zinc finger, CCHC domain containing 4 793455 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16989 ZCCHC9 zinc finger, CCHC domain containing 9 423852 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16990 ZCRB1 zinc finger CCHC-type and RNA binding motif 1 345774 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16991 ZCWPW2 zinc finger, CW type with PWWP domain 2 559221 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16992 ZDHHC11 zinc finger, DHHC-type containing 11 403065 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16993 ZDHHC12 zinc finger, DHHC-type containing 12 157677 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -16994 ZDHHC13 zinc finger, DHHC-type containing 13 829452 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16995 ZDHHC15 zinc finger, DHHC-type containing 15 576966 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16996 ZDHHC16 zinc finger, DHHC-type containing 16 595218 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16997 ZDHHC18 zinc finger, DHHC-type containing 18 436020 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -16998 ZDHHC19 zinc finger, DHHC-type containing 19 316875 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -16999 ZDHHC20 zinc finger, DHHC-type containing 20 445653 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17000 ZDHHC22 zinc finger, DHHC-type containing 22 301158 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17001 ZDHHC23 zinc finger, DHHC-type containing 23 631215 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17002 ZDHHC24 zinc finger, DHHC-type containing 24 296088 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17003 ZDHHC7 zinc finger, DHHC-type containing 7 482157 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17004 ZDHHC9 zinc finger, DHHC-type containing 9 573417 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17005 ZFAND2A zinc finger, AN1-type domain 2A 230178 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17006 ZFAND2B zinc finger, AN1-type domain 2B 377208 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17007 ZFAND3 zinc finger, AN1-type domain 3 320931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17008 ZFAND5 zinc finger, AN1-type domain 5 335634 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17009 ZFAND6 zinc finger, AN1-type domain 6 328029 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17010 ZFP1 zinc finger protein 1 homolog (mouse) 626652 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17011 ZFP14 zinc finger protein 14 homolog (mouse) 820326 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17012 ZFP2 zinc finger protein 2 homolog (mouse) 704730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17013 ZFP36 zinc finger protein 36, C3H type, homolog (mouse) 501423 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17014 ZFP57 zinc finger protein 57 homolog (mouse) 824889 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17015 ZFP82 818805 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17016 ZFP90 zinc finger protein 90 homolog (mouse) 958230 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17017 ZFX zinc finger protein, X-linked 1270035 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17018 ZFYVE19 zinc finger, FYVE domain containing 19 712335 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17019 ZFYVE20 zinc finger, FYVE domain containing 20 1216293 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17020 ZFYVE21 zinc finger, FYVE domain containing 21 286962 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17021 ZG16B 240825 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17022 ZGLP1 360984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17023 ZHX3 zinc fingers and homeoboxes 3 1454583 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17024 ZIM2 zinc finger, imprinted 2 784836 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17025 ZKSCAN3 zinc finger with KRAB and SCAN domains 3 829959 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17026 ZKSCAN5 zinc finger with KRAB and SCAN domains 5 1289808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17027 ZMAT2 zinc finger, matrin type 2 316368 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17028 ZMAT3 zinc finger, matrin type 3 451230 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17029 ZMAT4 zinc finger, matrin type 4 308256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17030 ZMPSTE24 zinc metallopeptidase (STE24 homolog, S. cerevisiae) 744276 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17031 ZMYM1 zinc finger, MYM-type 1 1756755 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17032 ZMYM5 zinc finger, MYM-type 5 1074333 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17033 ZMYND10 zinc finger, MYND-type containing 10 623103 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17034 ZMYND11 zinc finger, MYND domain containing 11 953667 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17035 ZMYND12 zinc finger, MYND-type containing 12 560742 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17036 ZMYND17 zinc finger, MYND-type containing 17 713349 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17037 ZMYND19 zinc finger, MYND-type containing 19 331071 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17038 ZNF100 zinc finger protein 100 836043 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17039 ZNF114 zinc finger protein 114 641862 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17040 ZNF117 zinc finger protein 117 740220 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17041 ZNF121 zinc finger protein 121 598767 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17042 ZNF124 zinc finger protein 124 431964 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17043 ZNF132 zinc finger protein 132 1047462 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17044 ZNF133 zinc finger protein 133 1000818 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17045 ZNF134 zinc finger protein 134 632736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17046 ZNF136 zinc finger protein 136 830973 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17047 ZNF138 zinc finger protein 138 424866 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17048 ZNF14 zinc finger protein 14 986115 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17049 ZNF140 zinc finger protein 140 704730 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17050 ZNF143 zinc finger protein 143 1002339 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17051 ZNF146 zinc finger protein 146 447681 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17052 ZNF148 zinc finger protein 148 1221363 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17053 ZNF154 zinc finger protein 154 653523 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17054 ZNF155 zinc finger protein 155 827931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17055 ZNF16 zinc finger protein 16 1042899 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17056 ZNF17 zinc finger protein 17 1004874 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17057 ZNF175 zinc finger protein 175 1091064 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17058 ZNF177 zinc finger protein 177 550602 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17059 ZNF18 zinc finger protein 18 801567 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17060 ZNF182 zinc finger protein 182 952653 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17061 ZNF185 zinc finger protein 185 (LIM domain) 712842 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17062 ZNF187 zinc finger protein 187 521196 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17063 ZNF19 zinc finger protein 19 706251 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17064 ZNF193 zinc finger protein 193 606879 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17065 ZNF195 zinc finger protein 195 853281 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17066 ZNF2 zinc finger protein 2 656058 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17067 ZNF20 zinc finger protein 20 815256 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17068 ZNF207 zinc finger protein 207 777231 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17069 ZNF212 zinc finger protein 212 750360 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17070 ZNF213 zinc finger protein 213 626145 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17071 ZNF214 zinc finger protein 214 927303 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17072 ZNF221 zinc finger protein 221 948090 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17073 ZNF222 zinc finger protein 222 693576 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17074 ZNF223 zinc finger protein 223 742755 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17075 ZNF225 zinc finger protein 225 1083459 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17076 ZNF226 zinc finger protein 226 1258374 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17077 ZNF227 zinc finger protein 227 1224912 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17078 ZNF23 zinc finger protein 23 (KOX 16) 961779 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17079 ZNF232 zinc finger protein 232 671268 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17080 ZNF236 zinc finger protein 236 2631837 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17081 ZNF24 zinc finger protein 24 567333 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17082 ZNF248 zinc finger protein 248 890292 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17083 ZNF25 zinc finger protein 25 705237 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17084 ZNF253 zinc finger protein 253 768612 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17085 ZNF256 zinc finger protein 256 942513 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17086 ZNF257 zinc finger protein 257 865956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17087 ZNF259 zinc finger protein 259 639327 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17088 ZNF26 zinc finger protein 26 801567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17089 ZNF260 zinc finger protein 260 630201 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17090 ZNF264 zinc finger protein 264 944541 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17091 ZNF267 zinc finger protein 267 1139736 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17092 ZNF273 zinc finger protein 273 875082 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17093 ZNF275 zinc finger protein 275 492297 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17094 ZNF276 zinc finger protein 276 421824 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17095 ZNF277 zinc finger protein 277 680394 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17096 ZNF280A zinc finger protein 280A 827931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17097 ZNF280D zinc finger protein 280D 1576770 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17098 ZNF282 zinc finger protein 282 726531 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17099 ZNF284 zinc finger protein 284 910065 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17100 ZNF285 904995 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17101 ZNF287 zinc finger protein 287 1169142 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17102 ZNF302 zinc finger protein 302 616512 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17103 ZNF317 zinc finger protein 317 867984 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17104 ZNF319 zinc finger protein 319 375180 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17105 ZNF32 zinc finger protein 32 420810 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17106 ZNF321 zinc finger protein 321 252993 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17107 ZNF322A zinc finger protein 322A 529308 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17108 ZNF322B zinc finger protein 322B 500916 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17109 ZNF323 zinc finger protein 323 625131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17110 ZNF324B zinc finger protein 324B 825903 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17111 ZNF326 zinc finger protein 326 902967 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17112 ZNF331 zinc finger protein 331 711828 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17113 ZNF34 zinc finger protein 34 747825 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17114 ZNF341 zinc finger protein 341 1178775 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17115 ZNF343 zinc finger protein 343 920712 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17116 ZNF346 zinc finger protein 346 372138 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17117 ZNF354A zinc finger protein 354A 914121 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17118 ZNF354C zinc finger protein 354C 852267 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17119 ZNF362 zinc finger protein 362 525252 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17120 ZNF367 zinc finger protein 367 329043 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17121 ZNF37A zinc finger protein 37A 862914 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17122 ZNF382 zinc finger protein 382 844155 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17123 ZNF383 zinc finger protein 383 732108 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17124 ZNF384 zinc finger protein 384 897390 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17125 ZNF385A zinc finger protein 385A 359970 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17126 ZNF385D zinc finger protein 385D 618540 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17127 ZNF391 zinc finger protein 391 548067 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17128 ZNF394 zinc finger protein 394 860886 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17129 ZNF395 zinc finger protein 395 636285 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17130 ZNF396 zinc finger protein 396 516126 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17131 ZNF397 zinc finger protein 397 480636 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17132 ZNF397OS zinc finger protein 397 opposite strand 758979 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17133 ZNF404 zinc finger protein 404 840606 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17134 ZNF408 zinc finger protein 408 1023633 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17135 ZNF410 zinc finger protein 410 750867 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17136 ZNF417 zinc finger protein 417 767091 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17137 ZNF419 zinc finger protein 419 779259 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17138 ZNF428 zinc finger protein 428 224094 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17139 ZNF432 zinc finger protein 432 1001325 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17140 ZNF433 zinc finger protein 433 1029717 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17141 ZNF436 zinc finger protein 436 703716 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17142 ZNF44 zinc finger protein 44 941499 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17143 ZNF440 zinc finger protein 440 911079 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17144 ZNF442 zinc finger protein 442 963300 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17145 ZNF446 zinc finger protein 446 353379 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17146 ZNF451 zinc finger protein 451 1588431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17147 ZNF461 zinc finger protein 461 830973 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17148 ZNF468 zinc finger protein 468 801567 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17149 ZNF470 zinc finger protein 470 1100190 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17150 ZNF474 zinc finger protein 474 557193 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17151 ZNF485 zinc finger protein 485 666198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17152 ZNF490 zinc finger protein 490 816270 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17153 ZNF493 zinc finger protein 493 1188408 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17154 ZNF496 zinc finger protein 496 906516 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17155 ZNF503 zinc finger protein 503 251472 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17156 ZNF507 zinc finger protein 507 1461174 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17157 ZNF512B zinc finger protein 512B 791427 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17158 ZNF514 zinc finger protein 514 616005 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17159 ZNF517 zinc finger protein 517 276822 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17160 ZNF519 zinc finger protein 519 828945 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17161 ZNF529 zinc finger protein 529 740727 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17162 ZNF530 zinc finger protein 530 901446 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17163 ZNF534 zinc finger protein 534 559728 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17164 ZNF546 zinc finger protein 546 1283217 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17165 ZNF547 zinc finger protein 547 619047 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17166 ZNF550 zinc finger protein 550 585078 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17167 ZNF555 zinc finger protein 555 961272 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17168 ZNF557 zinc finger protein 557 667719 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17169 ZNF558 zinc finger protein 558 625131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17170 ZNF559 zinc finger protein 559 827931 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17171 ZNF564 zinc finger protein 564 847197 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17172 ZNF566 zinc finger protein 566 646932 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17173 ZNF57 zinc finger protein 57 850239 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17174 ZNF581 zinc finger protein 581 303186 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17175 ZNF585A zinc finger protein 585A 1093599 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17176 ZNF593 zinc finger protein 593 107991 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17177 ZNF595 zinc finger protein 595 993720 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17178 ZNF596 zinc finger protein 596 778245 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17179 ZNF599 zinc finger protein 599 892827 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17180 ZNF605 zinc finger protein 605 982566 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17181 ZNF607 zinc finger protein 607 1068249 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17182 ZNF614 zinc finger protein 614 899418 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17183 ZNF622 zinc finger protein 622 739206 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17184 ZNF624 zinc finger protein 624 1327326 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17185 ZNF628 zinc finger protein 628 660621 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17186 ZNF629 zinc finger protein 629 1043406 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17187 ZNF630 zinc finger protein 630 1008930 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17188 ZNF639 zinc finger protein 639 747318 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17189 ZNF641 zinc finger protein 641 730587 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17190 ZNF643 zinc finger protein 643 711828 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17191 ZNF653 zinc finger protein 653 689013 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17192 ZNF664 zinc finger protein 664 400530 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17193 ZNF668 zinc finger protein 668 900939 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17194 ZNF669 zinc finger protein 669 581022 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17195 ZNF670 zinc finger protein 670 597753 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17196 ZNF672 zinc finger protein 672 328536 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17197 ZNF673 zinc finger protein 673 269724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17198 ZNF676 zinc finger protein 676 901953 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17199 ZNF677 zinc finger protein 677 895869 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17200 ZNF682 zinc finger protein 682 763542 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17201 ZNF684 zinc finger protein 684 584571 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17202 ZNF691 zinc finger protein 691 435513 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17203 ZNF692 zinc finger protein 692 719940 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17204 ZNF697 zinc finger protein 697 214461 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17205 ZNF701 zinc finger protein 701 750867 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17206 ZNF704 zinc finger protein 704 606879 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17207 ZNF705A zinc finger protein 705A 467961 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17208 ZNF706 zinc finger protein 706 121173 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17209 ZNF708 zinc finger protein 708 865956 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17210 ZNF709 zinc finger protein 709 984594 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17211 ZNF714 zinc finger protein 714 825396 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17212 ZNF718 zinc finger protein 718 725010 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17213 ZNF74 zinc finger protein 74 734643 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17214 ZNF746 zinc finger protein 746 588627 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17215 ZNF749 zinc finger protein 749 1181310 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17216 ZNF750 zinc finger protein 750 1057095 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17217 ZNF763 zinc finger protein 763 613470 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17218 ZNF764 zinc finger protein 764 307242 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17219 ZNF766 zinc finger protein 766 721461 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17220 ZNF768 zinc finger protein 768 802074 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17221 ZNF773 zinc finger protein 773 663156 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17222 ZNF776 zinc finger protein 776 776724 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17223 ZNF777 zinc finger protein 777 1211223 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17224 ZNF778 zinc finger protein 778 1105767 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17225 ZNF782 zinc finger protein 782 1072812 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17226 ZNF785 zinc finger protein 785 517647 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17227 ZNF789 zinc finger protein 789 677352 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17228 ZNF790 zinc finger protein 790 976989 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17229 ZNF792 zinc finger protein 792 952146 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17230 ZNF793 zinc finger protein 793 627159 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17231 ZNF799 zinc finger protein 799 987636 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17232 ZNF80 zinc finger protein 80 418782 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17233 ZNF800 zinc finger protein 800 1021605 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17234 ZNF804A zinc finger protein 804A 1796808 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17235 ZNF813 zinc finger protein 813 946062 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17236 ZNF816A zinc finger protein 816A 997776 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17237 ZNF821 zinc finger protein 821 574431 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17238 ZNF826 zinc finger protein 826 272766 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17239 ZNF828 zinc finger protein 828 1238601 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17240 ZNF830 zinc finger protein 830 569361 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17241 ZNF836 1431261 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17242 ZNF839 1279668 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17243 ZNF84 zinc finger protein 84 1132131 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17244 ZNF846 822354 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17245 ZNF85 zinc finger protein 85 914628 0 0 0 2 0 0 0 0 0 0 1.00 1.00 -17246 ZNF880 416247 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17247 ZNF883 580008 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17248 ZNF92 zinc finger protein 92 900939 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17249 ZNF98 zinc finger protein 98 (F7175) 870519 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17250 ZNHIT1 zinc finger, HIT type 1 245895 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17251 ZNHIT2 zinc finger, HIT type 2 191646 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17252 ZNHIT3 zinc finger, HIT type 3 235248 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17253 ZNHIT6 736671 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17254 ZNRD1 zinc ribbon domain containing 1 201279 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17255 ZNRF2 zinc and ring finger 2 137904 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17256 ZP1 zona pellucida glycoprotein 1 (sperm receptor) 918177 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17257 ZP3 zona pellucida glycoprotein 3 (sperm receptor) 636285 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17258 ZPBP zona pellucida binding protein 485199 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17259 ZPBP2 zona pellucida binding protein 2 531843 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17260 ZSCAN18 zinc finger and SCAN domain containing 18 378729 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17261 ZSCAN2 zinc finger and SCAN domain containing 2 985101 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17262 ZSCAN20 zinc finger and SCAN domain containing 20 1602120 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17263 ZSCAN22 zinc finger and SCAN domain containing 22 674817 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17264 ZSCAN29 zinc finger and SCAN domain containing 29 1307553 0 0 0 1 0 0 0 0 0 0 1.00 1.00 -17265 ZSCAN4 zinc finger and SCAN domain containing 4 666198 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17266 ZSWIM1 zinc finger, SWIM-type containing 1 741234 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17267 ZSWIM7 zinc finger, SWIM-type containing 7 184041 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17268 ZW10 ZW10, kinetochore associated, homolog (Drosophila) 1218828 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17269 ZWINT ZW10 interactor 438555 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17270 ZXDB zinc finger, X-linked, duplicated B 779259 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17271 ZYG11B zyg-11 homolog B (C. elegans) 1144299 0 0 0 0 0 0 0 0 0 0 1.00 1.00 -17272 ZYX zyxin 765570 0 0 0 1 0 0 0 0 0 0 1.00 1.00 diff --git a/core/src/test/resources/testCancerStudy.txt b/core/src/test/resources/testCancerStudy.txt deleted file mode 100644 index e364692dede..00000000000 --- a/core/src/test/resources/testCancerStudy.txt +++ /dev/null @@ -1,5 +0,0 @@ -type_of_cancer: GBM -cancer_study_identifier: tcga_gbm -name: Glioblastoma (TCGA) -description: The Cancer Genome Atlas (TCGA) Glioblastoma project. 206 primary glioblastoma samples.
    Nature 2008. Raw data via the TCGA Data Portal. -reference_genome: hg19 diff --git a/core/src/test/resources/test_PR_GDAC_CANCER.medianexp.txt b/core/src/test/resources/test_PR_GDAC_CANCER.medianexp.txt deleted file mode 100644 index 768e91b7c0b..00000000000 --- a/core/src/test/resources/test_PR_GDAC_CANCER.medianexp.txt +++ /dev/null @@ -1,7 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-02-0001-01C-01R TCGA-02-0002-01A-01R TCGA-02-0003-01A-01R TCGA-02-0004-01A-01R TCGA-02-0005-01A-01D-0182-01 TCGA-02-0006-01A-01D-0182-01 -Composite Element REF signal signal signal signal signal signal -AACS 65985 1 0 0 -1 1 1 -ELMO2 63916 3 -1 -1 1 1 5 -TP53 7157 2 1 0 0 1 1 -RPS11 6205 0 4 2 2 0 -2 -PNMA1 9240 1 2 -2 2 -2 4 diff --git a/core/src/test/resources/test_all_thresholded.by_genes.txt b/core/src/test/resources/test_all_thresholded.by_genes.txt deleted file mode 100644 index 0ebb71d7f45..00000000000 --- a/core/src/test/resources/test_all_thresholded.by_genes.txt +++ /dev/null @@ -1,7 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Cytoband TCGA-02-0001-01C-01D-0182-01 TCGA-02-0002-01A-01D-0182-01 TCGA-02-0003-01A-01D-0182-01 TCGA-02-0004-01A-01D-0182-01 TCGA-02-0005-01A-01D-0182-01 TCGA-02-9999-01A-01D-0182-01 -AACS 65985 12p13.31 1 0 0 0 0 0 -ELMO2 63916 8p22 -1 0 0 0 0 0 -PNMA1 9240 1p31.1 1 0 0 0 0 0 -RPS11 6205 12q24.31 0 1 0 0 0 0 -TP53 7157 12q24.31 1 1 2 2 0 2 -AR 367 8p22 0 0 0 0 0 0 diff --git a/core/src/test/resources/test_drugbank_small.xml b/core/src/test/resources/test_drugbank_small.xml deleted file mode 100644 index ac03433d180..00000000000 --- a/core/src/test/resources/test_drugbank_small.xml +++ /dev/null @@ -1,860 +0,0 @@ - - - - DB00001 - Lepirudin - Lepirudin is identical to natural hirudin except for substitution of leucine for isoleucine at the N-terminal end of the molecule and the absence of a sulfate group on the tyrosine at position 63. It is produced via yeast cells. - - 120993-53-5 - # Smythe MA, Stephens JL, Koerber JM, Mattson JC: A comparison of lepirudin and argatroban outcomes. Clin Appl Thromb Hemost. 2005 Oct;11(4):371-4. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/16244762 -# Tardy B, Lecompte T, Boelhen F, Tardy-Poncet B, Elalamy I, Morange P, Gruel Y, Wolf M, Francois D, Racadot E, Camarasa P, Blouch MT, Nguyen F, Doubine S, Dutrillaux F, Alhenc-Gelas M, Martin-Toutain I, Bauters A, Ffrench P, de Maistre E, Grunebaum L, Mouton C, Huisse MG, Gouault-Heilmann M, Lucke V: Predictive factors for thrombosis and major bleeding in an observational study in 181 patients with heparin-induced thrombocytopenia treated with lepirudin. Blood. 2006 Sep 1;108(5):1492-6. Epub 2006 May 11. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/16690967 -# Lubenow N, Eichler P, Lietz T, Greinacher A: Lepirudin in patients with heparin-induced thrombocytopenia - results of the third prospective study (HAT-3) and a combined analysis of HAT-1, HAT-2, and HAT-3. J Thromb Haemost. 2005 Nov;3(11):2428-36. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/16241940 -# Askari AT, Lincoff AM: Antithrombotic Drug Therapy in Cardiovascular Disease. 2009 Oct; pp. 440–. ISBN 9781603272346. "Google books":http://books.google.com/books?id=iadLoXoQkWEC&pg=PA440. - - For the treatment of heparin-induced thrombocytopenia - Lepirudin is used to break up clots and to reduce thrombocytopenia. It binds to thrombin and prevents thrombus or clot formation. It is a highly potent, selective, and essentially irreversible inhibitor of thrombin and clot-bond thrombin. Lepirudin requires no cofactor for its anticoagulant action. Lepirudin is a recombinant form of hirudin, an endogenous anticoagulant found in medicinal leeches. - Lepirudin forms a stable non-covalent complex with alpha-thrombin, thereby abolishing its ability to cleave fibrinogen and initiate the clotting cascade. The inhibition of thrombin prevents the blood clotting cascade. - In case of overdose (eg, suggested by excessively high aPTT values) the risk of bleeding is increased. - Lepirudin is thought to be metabolized by release of amino acids via catabolic hydrolysis of the parent drug. However, con-clusive data are not available. About 48% of the administration dose is excreted in the urine which consists of unchanged drug (35%) and other fragments of the parent drug. - Bioavailability is 100% following injection. - Approximately 1.3 hours - - Lepirudin is thought to be metabolized by release of amino acids via catabolic hydrolysis of the parent drug. About 48% of the administration dose is excreted in the urine which consists of unchanged drug (35%) and other fragments of the parent drug. - * 12.2 L [Healthy young subjects (n = 18, age 18-60 years)] -* 18.7 L [Healthy elderly subjects (n = 10, age 65-80 years)] -* 18 L [Renally impaired patients (n = 16, creatinine clearance below 80 mL/min)] -* 32.1 L [HIT patients (n = 73)] - * 164 ml/min [Healthy 18-60 yrs] -* 139 ml/min [Healthy 65-80 yrs] -* 61 ml/min [renal impaired] -* 114 ml/min [HIT (Heparin-induced thrombocytopenia)] - - BIOD00024 - BTD00024 - - - approved - - - - - - - Hirudin variant-1 - - - Refludan - - - - - Bayer Healthcare - http://www.bayerhealthcare.com - - - Berlex Labs - http://www.berlex.com - - - - Bayer healthcare pharmaceuticals inc - - - - Refludan 50 mg vial - 273.19 - vial - - - - Anticoagulants - Antithrombotic Agents - Fibrinolytic Agents - - - Humans and other mammals - - - -

    Powder, for solution
    - Intravenous - - - - - B01AE02 - - - 20:12.04.12 - - - - 5180668 - United States - 1993-01-19 - 2010-01-19 - - - 1339104 - Canada - 1997-07-29 - 2014-07-29 - - - - - - 374 - The prostacyclin analogue, Treprostinil, increases the risk of bleeding when combined with the anticoagulant, Lepirudin. Monitor for increased bleeding during concomitant thearpy. - - - 1381 - Additive anticoagulant/antiplatelet effects may increase bleed risk. Concomitant therapy should be avoided. - - - - -
    DB00001 sequence
    - LVYTDCTESGQNLCLCEGSNVCGQGNKCILGSDGEKNQCVTGEGTPKPQSHNDGDFEEIPEEYLQ -
    -
    - - - logP/hydrophobicity - -0.777 - - - - Molecular Weight - 6963.4250 - - - - Molecular Formula - C287H440N80O110S6 - - - - - - Drugs Product Database (DPD) - 2240996 - - - National Drug Code Directory - 50419-150-57 - - - PharmGKB - PA450195 - - - UniProtKB - P01050 - - - - - Wikipedia - http://en.wikipedia.org/wiki/Lepirudin - - - RxList - http://www.rxlist.com/cgi/generic/lepirudin.htm - - - Drugs.com - http://www.drugs.com/cdi/lepirudin.html - - - - - - inhibitor - - # Turpie AG: Anticoagulants in acute coronary syndromes. Am J Cardiol. 1999 Sep 2;84(5A):2M-6M. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/10505536 -# Warkentin TE: Venous thromboembolism in heparin-induced thrombocytopenia. Curr Opin Pulm Med. 2000 Jul;6(4):343-51. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/10912644 -# Eriksson BI: New therapeutic options in deep vein thrombosis prophylaxis. Semin Hematol. 2000 Jul;37(3 Suppl 5):7-9. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/11055889 -# Fabrizio MC: Use of ecarin clotting time (ECT) with lepirudin therapy in heparin-induced thrombocytopenia and cardiopulmonary bypass. J Extra Corpor Technol. 2001 May;33(2):117-25. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/11467439 -# Szaba FM, Smiley ST: Roles for thrombin and fibrin(ogen) in cytokine/chemokine production and macrophage adhesion in vivo. Blood. 2002 Feb 1;99(3):1053-9. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/11807012 -# Chen X, Ji ZL, Chen YZ: TTD: Therapeutic Target Database. Nucleic Acids Res. 2002 Jan 1;30(1):412-5. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/11752352 - yes - - - - - - - - DB00002 - Cetuximab - Epidermal growth factor receptor binding FAB. Cetuximab is composed of the Fv (variable; antigen-binding) regions of the 225 murine EGFr monoclonal antibody specific for the N-terminal portion of human EGFr with human IgG1 heavy and kappa light chain constant (framework) regions. - 205923-56-4 - - - For treatment of EGFR-expressing metastatic colorectal cancer in patients who are refractory to other irinotecan-based chemotherapy regimens. Cetuximab is also indicated for treatment of squamous cell carcinoma of the head and neck in conjucntion with radiation therapy. - Used in the treatment of colorectal cancer, cetuximab binds specifically to the epidermal growth factor receptor (EGFr, HER1, c-ErbB-1) on both normal and tumor cells. EGFr is over-expressed in many colorectal cancers. Cetuximab competitively inhibits the binding of epidermal growth factor (EGF) and other ligands, such as transforming growth factor–alpha. Binding of cetuximab to the EGFr blocks phosphorylation and activation of receptor-associated kinases, resulting in inhibition of cell growth, induction of apoptosis, decreased matrix metalloproteinase secretion and reduced vascular endothelial growth factor production. - Cetuximab binds to the epidermal growth factor receptor (EGFr) on both normal and tumor cells. EGFr is over-expressed in many colorectal cancers. Cetuximab competitively inhibits the binding of epidermal growth factor (EGF) and TGF alpha, thereby reducing their effects on cell growth and metastatic spread. - Single doses of cetuximab higher than 500 mg/m<sup>2</sup> have not been tested. There is no experience with overdosage in human clinical trials. - - - - - 114 hrs - - - - - - BIOD00071 - BTD00071 - - - approved - - - - - - - Anti EGFR - cetuximab - IMC-C225 - - - Erbitux - - - - - Cardinal Health - http://www.cardinal.com - - - Catalent Pharma Solutions - http://www.catalent.com - - - ImClone Systems Inc. - http://www.imclone.com - - - Oso Biopharmaceuticals Manufacturing LLC - - - - - - - Antineoplastic Agents - - - Humans and other mammals - - - -
    Solution
    - Intravenous - -
    -
    - - L01XC06 - - - - - 1340417 - Canada - 1999-03-02 - 2016-03-02 - - - - - - -
    Anti-EGFR heavy chain 1
    - QVQLKQSGPGLVQPSQSLSITCTVSGFSLTNYGVHWVRQSPGKGLEWLGVIWSGGNTDYNTPFTSRLSINKDNSKSQVFFKMNSLQSNDTAIYYCARALTYYDYEFAYWGQGTLVTVSAASTKGPSVFPLAPSSKSTSGGTAALGCLVKDYFPEPVTVSWNSGALTSGVHTFPAVLQSSGLYSLSSVVTVPSSSLGTQTYICNVNHKPSNTKVDKRVEPKSPKSCDKTHTCPPCPAPELLGGPSVFLFPPKPKDTLMISRTPEVTCVVVDVSHEDPEVKFNWYVDGVEVHNAKTKPREEQYNSTYRVVSVLTVLHQDWLNGKEYKCKVSNKALPAPIEKTISKAKGQPREPQVYTLPPSRDELTKNQVSLTCLVKGFYPSDIAVEWESNGQPENNYKTTPPVLDSDGSFFLYSKLTVDKSRWQQGNVFSCSVMHEALHNHYTQKSLSLSPGK -
    - -
    Anti-EGFR light chain 1
    - DILLTQSPVILSVSPGERVSFSCRASQSIGTNIHWYQQRTNGSPRLLIKYASESISGIPSRFSGSGSGTDFTLSINSVESEDIADYYCQQNNNWPTTFGAGTKLELKRTVAAPSVFIFPPSDEQLKSGTASVVCLLNNFYPREAKVQWKVDNALQSGNSQESVTEQDSKDSTYSLSSTLTLSKADYEKHKVYACEVTHQGLSSPVTKSFNRGA -
    - -
    Anti-EGFR heavy chain 2
    - QVQLKQSGPGLVQPSQSLSITCTVSGFSLTNYGVHWVRQSPGKGLEWLGVIWSGGNTDYNTPFTSRLSINKDNSKSQVFFKMNSLQSNDTAIYYCARALTYYDYEFAYWGQGTLVTVSAASTKGPSVFPLAPSSKSTSGGTAALGCLVKDYFPEPVTVSWNSGALTSGVHTFPAVLQSSGLYSLSSVVTVPSSSLGTQTYICNVNHKPSNTKVDKRVEPKSPKSCDKTHTCPPCPAPELLGGPSVFLFPPKPKDTLMISRTPEVTCVVVDVSHEDPEVKFNWYVDGVEVHNAKTKPREEQYNSTYRVVSVLTVLHQDWLNGKEYKCKVSNKALPAPIEKTISKAKGQPREPQVYTLPPSRDELTKNQVSLTCLVKGFYPSDIAVEWESNGQPENNYKTTPPVLDSDGSFFLYSKLTVDKSRWQQGNVFSCSVMHEALHNHYTQKSLSLSPGK -
    - -
    Anti-EGFR light chain 2
    - DILLTQSPVILSVSPGERVSFSCRASQSIGTNIHWYQQRTNGSPRLLIKYASESISGIPSRFSGSGSGTDFTLSINSVESEDIADYYCQQNNNWPTTFGAGTKLELKRTVAAPSVFIFPPSDEQLKSGTASVVCLLNNFYPREAKVQWKVDNALQSGNSQESVTEQDSKDSTYSLSSTLTLSKADYEKHKVYACEVTHQGLSSPVTKSFNRGA -
    -
    - - - logP/hydrophobicity - -0.413 - - - - Molecular Weight - 145781.6000 - - - - Molecular Formula - C6484H10042N1732O2023S36 - - - - - - Drugs Product Database (DPD) - 0 - - - National Drug Code Directory - 66733-948-23 - - - GenBank - J00228 - - - PharmGKB - PA10040 - - - - - Wikipedia - http://en.wikipedia.org/wiki/Cetuximab - - - RxList - http://www.rxlist.com/cgi/generic3/erbitux.htm - - - Drugs.com - http://www.drugs.com/cdi/cetuximab.html - - - - - - antagonist - - # Hosokawa N, Yamamoto S, Uehara Y, Hori M, Tsuchiya KS: Effect of thiazinotrienomycin B, an ansamycin antibiotic, on the function of epidermal growth factor receptor in human stomach tumor cells. J Antibiot (Tokyo). 1999 May;52(5):485-90. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/10480573 -# Wakita H, Takigawa M: Activation of epidermal growth factor receptor promotes late terminal differentiation of cell-matrix interaction-disrupted keratinocytes. J Biol Chem. 1999 Dec 24;274(52):37285-91. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/10601294 -# Suwa T, Ueda M, Jinno H, Ozawa S, Kitagawa Y, Ando N, Kitajima M: Epidermal growth factor receptor-dependent cytotoxic effect of anti-EGFR antibody-ribonuclease conjugate on human cancer cells. Anticancer Res. 1999 Sep-Oct;19(5B):4161-5. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/10628369 -# Burke P, Schooler K, Wiley HS: Regulation of epidermal growth factor receptor signaling by endocytosis and intracellular trafficking. Mol Biol Cell. 2001 Jun;12(6):1897-910. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/11408594 -# Viloria-Petit A, Crombet T, Jothy S, Hicklin D, Bohlen P, Schlaeppi JM, Rak J, Kerbel RS: Acquired resistance to the antitumor effect of epidermal growth factor receptor-blocking antibodies in vivo: a role for altered tumor angiogenesis. Cancer Res. 2001 Jul 1;61(13):5090-101. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/11431346 -# Chen X, Ji ZL, Chen YZ: TTD: Therapeutic Target Database. Nucleic Acids Res. 2002 Jan 1;30(1):412-5. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/11752352 - yes - - - - # Snyder LC, Astsaturov I, Weiner LM: Overview of monoclonal antibodies and small molecules targeting the epidermal growth factor receptor pathway in colorectal cancer. Clin Colorectal Cancer. 2005 Nov;5 Suppl 2:S71-80. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/16336752 - unknown - - - - # Overington JP, Al-Lazikani B, Hopkins AL: How many drug targets are there? Nat Rev Drug Discov. 2006 Dec;5(12):993-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17139284 -# Imming P, Sinning C, Meyer A: Drugs, their targets and the nature and number of drug targets. Nat Rev Drug Discov. 2006 Oct;5(10):821-34. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17016423 - unknown - - - - # Overington JP, Al-Lazikani B, Hopkins AL: How many drug targets are there? Nat Rev Drug Discov. 2006 Dec;5(12):993-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17139284 -# Imming P, Sinning C, Meyer A: Drugs, their targets and the nature and number of drug targets. Nat Rev Drug Discov. 2006 Oct;5(10):821-34. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17016423 - unknown - - - - # Overington JP, Al-Lazikani B, Hopkins AL: How many drug targets are there? Nat Rev Drug Discov. 2006 Dec;5(12):993-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17139284 -# Imming P, Sinning C, Meyer A: Drugs, their targets and the nature and number of drug targets. Nat Rev Drug Discov. 2006 Oct;5(10):821-34. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17016423 - unknown - - - - # Overington JP, Al-Lazikani B, Hopkins AL: How many drug targets are there? Nat Rev Drug Discov. 2006 Dec;5(12):993-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17139284 -# Imming P, Sinning C, Meyer A: Drugs, their targets and the nature and number of drug targets. Nat Rev Drug Discov. 2006 Oct;5(10):821-34. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17016423 - unknown - - - - # Overington JP, Al-Lazikani B, Hopkins AL: How many drug targets are there? Nat Rev Drug Discov. 2006 Dec;5(12):993-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17139284 -# Imming P, Sinning C, Meyer A: Drugs, their targets and the nature and number of drug targets. Nat Rev Drug Discov. 2006 Oct;5(10):821-34. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17016423 -# Zhang W, Gordon M, Schultheis AM, Yang DY, Nagashima F, Azuma M, Chang HM, Borucka E, Lurje G, Sherrod AE, Iqbal S, Groshen S, Lenz HJ: FCGR2A and FCGR3A polymorphisms associated with clinical outcome of epidermal growth factor receptor expressing metastatic colorectal cancer patients treated with single-agent cetuximab. J Clin Oncol. 2007 Aug 20;25(24):3712-8. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17704420 - unknown - - - - # Overington JP, Al-Lazikani B, Hopkins AL: How many drug targets are there? Nat Rev Drug Discov. 2006 Dec;5(12):993-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17139284 -# Imming P, Sinning C, Meyer A: Drugs, their targets and the nature and number of drug targets. Nat Rev Drug Discov. 2006 Oct;5(10):821-34. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17016423 - unknown - - - - # Negri DR, Tosi E, Valota O, Ferrini S, Cambiaggi A, Sforzini S, Silvani A, Ruffini PA, Colnaghi MI, Canevari S: In vitro and in vivo stability and anti-tumour efficacy of an anti-EGFR/anti-CD3 F(ab')2 bispecific monoclonal antibody. Br J Cancer. 1995 Oct;72(4):928-33. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/7547242 - unknown - - - - # Overington JP, Al-Lazikani B, Hopkins AL: How many drug targets are there? Nat Rev Drug Discov. 2006 Dec;5(12):993-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17139284 -# Imming P, Sinning C, Meyer A: Drugs, their targets and the nature and number of drug targets. Nat Rev Drug Discov. 2006 Oct;5(10):821-34. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17016423 -# Zhang W, Gordon M, Schultheis AM, Yang DY, Nagashima F, Azuma M, Chang HM, Borucka E, Lurje G, Sherrod AE, Iqbal S, Groshen S, Lenz HJ: FCGR2A and FCGR3A polymorphisms associated with clinical outcome of epidermal growth factor receptor expressing metastatic colorectal cancer patients treated with single-agent cetuximab. J Clin Oncol. 2007 Aug 20;25(24):3712-8. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17704420 - unknown - - - - # Overington JP, Al-Lazikani B, Hopkins AL: How many drug targets are there? Nat Rev Drug Discov. 2006 Dec;5(12):993-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17139284 -# Imming P, Sinning C, Meyer A: Drugs, their targets and the nature and number of drug targets. Nat Rev Drug Discov. 2006 Oct;5(10):821-34. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17016423 - unknown - - - - # Overington JP, Al-Lazikani B, Hopkins AL: How many drug targets are there? Nat Rev Drug Discov. 2006 Dec;5(12):993-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17139284 -# Imming P, Sinning C, Meyer A: Drugs, their targets and the nature and number of drug targets. Nat Rev Drug Discov. 2006 Oct;5(10):821-34. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17016423 - unknown - - - - - -
    - - DB00003 - Dornase Alfa - Dornase alfa is a biosynthetic form of human deoxyribunuclease I (DNase I) enzyme. It is produced in genetically modified Chinese hamster ovary (CHO) cells using recombinant DNA technology. The 260-amino acid sequence of dornase alfa is identical to the endogenous human enzyme. Dornase alfa cleaves extracellular DNA to 5´-phosphodinucleotide and 5´-phosphooligonucleotide end products without affecting intracellular DNA. In individuals with cystic fibrosis, extracellular DNA, which is an extremely viscous anion, is released by degenerating leukocytes that accumulate during inflammatory responses to infections. Enzymatic breakdown of this extracellular DNA appears to reduce sputum viscosity and viscoelasticity. - 9003-98-9 - # Cramer GW, Bosso JA: The role of dornase alfa in the treatment of cystic fibrosis. Ann Pharmacother. 1996 Jun;30(6):656-61. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/8792953 -# Jones AP, Wallis C: Dornase alfa for cystic fibrosis. Cochrane Database Syst Rev. 2010 Mar 17;3:CD001127. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/20238314 -# Riethmueller J, Kumpf M, Borth-Bruhns T, Brehm W, Wiskirchen J, Sieverding L, Ankele C, Hofbeck M, Baden W: Clinical and in vitro effect of dornase alfa in mechanically ventilated pediatric non-cystic fibrosis patients with atelectases. Cell Physiol Biochem. 2009;23(1-3):205-10. Epub 2009 Feb 18. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/19255515 - - - Used as adjunct therapy in the treatment of cystic fibrosis. - Cystic fibrosis (CF) is a disease characterized by the retention of viscous purulent secretions in the airways. These thick secretions contribute both to reduced pulmonary function and to frequent pulmonary infection. Purulent pulmonary secretions of individuals with cystic fibrosis contain very high concentrations of extracellular DNA released by degenerating leukocytes that accumulate in response to these infections. Dornase alfa hydrolyzes the DNA in sputum of CF patients and reduces sputum viscosity and viscoelasticity. The enzyme does not appear to affect sputum in the absence of an inflammatory response to infection, nor does it affect the sputum of healthy individuals. - Dornase alfa is a biosynthetic form of human DNase I. The enzyme is involved in endonucleolytic cleavage of extracellular DNA to 5´-phosphodinucleotide and 5´-phosphooligonucleotide end products. It has no effect on intracellular DNA. Optimal activity is dependent on the presence of divalent cations such as calcium and magnesium. Extracellular DNA is a viscous anionic polymer and its breakdown appears to improve the viscosity and viscoelasticity of purulent sputum of individuals with CF. - Adverse reactions occur at a frequency of < 1/1000 and are usually mild and transient in nature. Reported adverse effects include chest pain (pleuritic/non-cardiac), fever, dyspepsia, voice alteration (hoarseness), pharyngitis, dyspnea, laryngitis, rhinitis, decreased lung function, rash, urticaria, and conjunctivitis. - - Systemic absorption undetectable following administration by inhalation. - - - - - - - BIOD00001 - BTD00001 - - - approved - - - - - - - Deoxyribonuclease I - Deoxyribonuclease-1 precursor - DNase - DNase I - rhDNase - - - Pulmozyme - Viscozyme - - - - Cauterex - dornase alfa + fibrinolysin + gentamicin sulfate - - - Clorfibrase - dornase alfa + fibrinolysin + chloramphenicol - - - Elase - dornase alfa + fibrinolysin - - - Fibrabene - dornase alfa + fibrinolysin (bovine) - - - Fibrase SA - dornase alfa + fibrinolysin (bovine) - - - Fibrolan - dornase alfa + fibrinolysin (bovine) - - - Parkelase - dornase alfa + fibrinolysin - - - Ridasa - dornase alfa + ribonuclease - - - - - Cardinal Health - http://www.cardinal.com - - - Catalent Pharma Solutions - http://www.catalent.com - - - F Hoffmann-La Roche Ltd. - http://www.roche.com - - - Genentech Inc. - http://www.gene.com - - - Meda AB - http://www.meda.se - - - Medpointe Pharmaceuticals - - - - - Genentech, Inc - - - - Lufyllin 200 mg tablet - 3.21 - tablet - - - Lufyllin-gg tablet - 3.84 - tablet - - - Lufyllin-GG 200-200 mg tablet - 3.99 - tablet - - - Lufyllin-400 tablet - 4.62 - tablet - - - Lufyllin 400 mg tablet - 4.81 - tablet - - - Pulmozyme 1 mg/ml ampul - 37.05 - ml - - - Pulmozyme 1 mg/ml Solution 2.5ml Plastic Container - 77.06 - plastic - - - Lufyllin-GG 100-100 mg/15ml Elixir - 0.6 - ml - - - - Enzyme - - - Humans and other mammals - - - -
    Solution
    - Respiratory (inhalation) - 1 mg/ml -
    -
    - - R05CB13 - - - 44:00 - - - - 2184581 - Canada - 2005-02-22 - 2015-02-28 - - - 2137237 - Canada - 2004-10-26 - 2013-05-28 - - - - - - -
    DB00003 sequence
    - LKIAAFNIQTFGETKMSNATLVSYIVQILSRYDIALVQEVRDSHLTAVGKLLDNLNQDAPDTYHYVVSEPLGRNSYKERYLFVYRPDQVSAVDSYYYDDGCEPCGNDTFNREPAIVRFFSRFTEVREFAIVPLHAAPGDAVAEIDALYDVYLDVQEKWGLEDVMLMGDFNAGCSYVRPSQWSSIRLWTSPTFQWLIPDSADTTATPTHCAYDRIVVAGMLLRGAVVPDSALPFNFQAAYGLSDQLAQAISDHYPVEVMLK -
    -
    - - - logP/hydrophobicity - -0.083 - - - - Molecular Weight - 29253.9000 - - - - Molecular Formula - C1321H1999N339O396S9 - - - - - - Drugs Product Database (DPD) - 2046733 - - - GenBank - M55983 - - - PharmGKB - PA10318 - - - UniProtKB - P24855 - - - - - Wikipedia - http://en.wikipedia.org/wiki/Dornase_alfa - - - RxList - http://www.rxlist.com/cgi/generic/pulmozyme.htm - - - Drugs.com - http://www.drugs.com/cdi/dornase-alfa.html - - - - - - # Cramer GW, Bosso JA: The role of dornase alfa in the treatment of cystic fibrosis. Ann Pharmacother. 1996 Jun;30(6):656-61. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/8792953 - yes - - - - - -
    - - DB00004 - Denileukin diftitox - A recombinant DNA-derived cytotoxic protein composed of the amino acid sequences for diphtheria toxin fragments A and B (Met 1-Thr 387)-His followed by the sequences for interleukin-2 (IL-2; Ala 1-Thr 133). It is produced in an E. coli expression system. - 173146-27-5 - # Turturro F: Denileukin diftitox: a biotherapeutic paradigm shift in the treatment of lymphoid-derived disorders. Expert Rev Anticancer Ther. 2007 Jan;7(1):11-7. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17187516 -# Park M, Liu GT, Piltz-Seymour J, Wisda CL, Rook AH, Junkins-Hopkins JM, Nasta SD, Kim EJ: Vision loss following denileukin diftitox treatment: a case report of possible posterior ischemic optic neuropathy. Leuk Lymphoma. 2007 Apr;48(4):808-11. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17454642 - - For treatment of cutaneous T-cell lymphoma - Denileukin diftitox (Ontak) directs the cytocidal action of diphtheria toxin to cells which express the IL-2 receptor. The human IL-2 receptor exists in three forms, low (CD25), intermediate (CD122/CD132) and high (CD25/CD122/CD132) affinity. Malignant cells expressing one or more of the subunits of the IL-2 receptor are found in certain leukemias and lymphomas including cutaneous T-cell lymphoma (CTCL). Ontak interacts with the high affinity IL-2 receptor on the cell surface and inhibits cellular protein synthesis, resulting in cell death within hours. - Denileukin diftitox binds to the high-affinity IL-2 receptor complex. The IL-2 receptor (Tac) subunit is expressed on activated but not resting lymphocytes. The diphtheria toxin associated with Ontak then selectively kills the IL-2 bearing cells. - - - - 70-80 min - - - * 0.06 to 0.09 L/kg - * 0.6 - 2.0 mL/min/kg [Lymphoma] - - BIOD00084 - BTD00084 - - - approved - - - Organic - - Polypeptides - - - - denileukin diftitox - Diphtheria toxin precursor - DT - NAD(+--diphthamide ADP- ribosyltransferase) - - - Ontak - - - - - Eisai Inc. - http://www.eisai.com - - - Hollister-Stier Laboratories LLC - http://www.hollisterstier.com - - - Ligand Pharmaceuticals Inc. - http://www.ligand.com - - - - - - Ontak 150 mcg/ml vial - 878.4 - ml - - - - Antineoplastic Agents - - - Humans and other mammals - - - -
    Solution
    - Intravenous - -
    -
    - - L01XX29 - - - - - - - 72 - Trastuzumab may increase the risk of neutropenia and anemia. Monitor closely for signs and symptoms of adverse events. - - - - -
    DB00004 sequence
    - MGADDVVDSSKSFVMENFSSYHGTKPGYVDSIQKGIQKPKSGTQGNYDDDWKGFYSTDNKYDAAGYSVDNENPLSGKAGGVVKVTYPGLTKVLALKVDNAETIKKELGLSLTEPLMEQVGTEEFIKRFGDGASRVVLSLPFAEGSSSVEYINNWEQAKALSVELEINFETRGKRGQDAMYEYMAQACAGNRVRRSVGSSLSCINLDWDVIRDKTKTKIESLKEHGPIKNKMSESPNKTVSEEKAKQYLEEFHQTALEHPELSELKTVTGTNPVFAGANYAAWAVNVAQVIDSETADNLEKTTAALSILPGIGSVMGIADGAVHHNTEEIVAQSIALSSLMVAQAIPLVGELVDIGFAAYNFVESIINLFQVVHNSYNRPAYSPGHKTHAPTSSSTKKTQLQLEHLLLDLQMILNGINNYKNPKLTRMLTFKFYMPKKATELKHLQCLEEELKPLEEVLNLAQSKNFHLRPRDLISNINVIVLELKGSETTFMCEYADETATIVEFLNRWITFCQSIISTLT -
    -
    - - - logP/hydrophobicity - -0.301 - - - - Molecular Weight - 57647.3000 - - - - Molecular Formula - C2560H4042N678O799S17 - - - - - - Drugs Product Database (DPD) - 0 - - - National Drug Code Directory - 62856-603-01 - - - GenBank - V01536 - - - PharmGKB - PA10317 - - - UniProtKB - P00587 - - - - - Wikipedia - http://en.wikipedia.org/wiki/Denileukin_diftitox - - - RxList - http://www.rxlist.com/cgi/generic2/denileukin.htm - - - Drugs.com - http://www.drugs.com/cdi/denileukin-diftitox.html - - - - - - binder - - # Overington JP, Al-Lazikani B, Hopkins AL: How many drug targets are there? Nat Rev Drug Discov. 2006 Dec;5(12):993-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17139284 -# Imming P, Sinning C, Meyer A: Drugs, their targets and the nature and number of drug targets. Nat Rev Drug Discov. 2006 Oct;5(10):821-34. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17016423 -# Kiyokawa T, Shirono K, Hattori T, Nishimura H, Yamaguchi K, Nichols JC, Strom TB, Murphy JR, Takatsuki K: Cytotoxicity of interleukin 2-toxin toward lymphocytes from patients with adult T-cell leukemia. Cancer Res. 1989 Jul 15;49(14):4042-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/2786749 -# Murphy JR, Kelley VE, Strom TB: Interleukin 2 toxin: a step toward selective immunomodulation. Am J Kidney Dis. 1988 Feb;11(2):159-62. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/3124610 -# Duvic M, Talpur R: Optimizing denileukin diftitox (Ontak) therapy. Future Oncol. 2008 Aug;4(4):457-69. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/18684057 -# Turturro F: Denileukin diftitox: a biotherapeutic paradigm shift in the treatment of lymphoid-derived disorders. Expert Rev Anticancer Ther. 2007 Jan;7(1):11-7. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17187516 -# Chen X, Ji ZL, Chen YZ: TTD: Therapeutic Target Database. Nucleic Acids Res. 2002 Jan 1;30(1):412-5. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/11752352 - yes - - - - # Foss F, Demierre MF, DiVenuti G: A phase-1 trial of bexarotene and denileukin diftitox in patients with relapsed or refractory cutaneous T-cell lymphoma. Blood. 2005 Jul 15;106(2):454-7. Epub 2005 Apr 5. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/15811959 -# Foss F: Clinical experience with denileukin diftitox (ONTAK). Semin Oncol. 2006 Feb;33(1 Suppl 3):S11-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/16516670 -# Foss FM: DAB(389)IL-2 (denileukin diftitox, ONTAK): a new fusion protein technology. Clin Lymphoma. 2000 Nov;1 Suppl 1:S27-31. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/11707860 - unknown - - - - agonist - - # Foss F, Demierre MF, DiVenuti G: A phase-1 trial of bexarotene and denileukin diftitox in patients with relapsed or refractory cutaneous T-cell lymphoma. Blood. 2005 Jul 15;106(2):454-7. Epub 2005 Apr 5. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/15811959 -# Foss F: Clinical experience with denileukin diftitox (ONTAK). Semin Oncol. 2006 Feb;33(1 Suppl 3):S11-6. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/16516670 -# Duvic M, Talpur R: Optimizing denileukin diftitox (Ontak) therapy. Future Oncol. 2008 Aug;4(4):457-69. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/18684057 -# Turturro F: Denileukin diftitox: a biotherapeutic paradigm shift in the treatment of lymphoid-derived disorders. Expert Rev Anticancer Ther. 2007 Jan;7(1):11-7. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/17187516 -# Chen X, Ji ZL, Chen YZ: TTD: Therapeutic Target Database. Nucleic Acids Res. 2002 Jan 1;30(1):412-5. "Pubmed":http://www.ncbi.nlm.nih.gov/pubmed/11752352 - yes - - - - - -
    - diff --git a/core/src/test/resources/test_drugbank_targets.csv b/core/src/test/resources/test_drugbank_targets.csv deleted file mode 100644 index 456e54c7d75..00000000000 --- a/core/src/test/resources/test_drugbank_targets.csv +++ /dev/null @@ -1,92 +0,0 @@ -54,Prothrombin,F2,339641,M17262,P00734,THRB_HUMAN,1HAG,F2,F2,HGNC:3535,01488 -540,Sodium-dependent noradrenaline transporter,SLC6A2,189258,M65105,P23975,SC6A2_HUMAN,"",SLC6A2,SLC6A2,HGNC:11048,01232 -541,"cAMP-specific 3',5'-cyclic phosphodiesterase 4B",PDE4B,347122,L20966,Q07343,PDE4B_HUMAN,1TB5,PDE4B,PDE4B,HGNC:8781,02528 -543,Penicillin-binding protein 1B,mrcB,42468,X02163,P02919,PBPB_ECOLI,"",,,, -544,Potassium voltage-gated channel subfamily E member 1,KCNE1,386838,M26685,P15382,KCNE1_HUMAN,,KCNE1,KCNE1,HGNC:6240,01442 -545,Thyrotropin receptor,TSHR,903760,M73747,P16473,TSHR_HUMAN,"",TSHR,TSHR,HGNC:12373,04537 -546,"Isoleucyl-tRNA synthetase, cytoplasmic",IARS,551622,D28473,P41252,SYIC_HUMAN,"",IARS,IARS,HGNC:5330,02832 -547,"Propionyl-CoA carboxylase alpha chain, mitochondrial",PCCA,296366,X14608,P05165,PCCA_HUMAN,"",PCCA,PCCA,HGNC:8653,01981 -548,"NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial",NDUFS1,38079,X61100,P28331,NDUS1_HUMAN,"",NDUFS1,NDUFS1,HGNC:7707,01145 -549,Choline-phosphate cytidylyltransferase B,PCYT1B,3153239,AF052510,Q9Y5K3,PCY1B_HUMAN,,PCYT1B,PCYT1B,HGNC:8755,05376 -5410,Unsaturated glucuronyl hydrolase,ugl,"",AB019619,Q9RC92,UGL_BACGL,1VD5,"","","", -5411,Slt-IIvB,stxB2e,"",AB252836,Q47644,Q47644_ECOLX,1QOH,"","","", -5412,ATP sulfurylase,TTHA0666,"",AP008226,Q5SKH7,Q5SKH7_THET8,1V47,"","","", -5413,5'-fluoro-5'-deoxyadenosine synthase,flA,"",AJ581748,Q70GK9,Q70GK9_STRCT,1RQP,"","","", -5414,Fiber protein,L5,"",X94485,Q64822,Q64822_9ADEN,1UXB,"","","", -5416,Coat protein VP1,"","",M34958,P49302,VP1_POVMP,1SIE,"","","", -5418,Fiber protein,L5,"",X94484,Q64823,Q64823_9ADEN,1UXE,"","","", -5420,4-chlorobenzoyl CoA ligase,"","",AF537222,Q8GN86,Q8GN86_9BURK,1T5D,"","","", -5421,"Uridine phosphorylase, putative",PFE0660c,"",AL929352,Q8I3X4,Q8I3X4_PLAF7,1Q1G,"","","", -5422,B-N-acetylhexosaminidase,hex,"",AF063001,O85361,O85361_STRPL,1M01,"","","", -5423,UPF0010 protein HI1317,HI_1317,"",L42023,P44160,Y1317_HAEIN,"","","","", -5424,Endonuclease VIII-like 1,NEIL1,"",AB079068,Q96FI4,NEIL1_HUMAN,"","",NEIL1,HGNC:18448, -5426,Non-heme chloroperoxidase,cpo,"",AF031242,O31168,PRXC_STRAU,1A8U,"","","", -5427,"Hydroxyquinol 1,2-dioxygenase",chqB,"",AY822041,Q5PXQ6,CHQB_NOCSI,1TMX,"","","", -5428,Replication protein,repA,"",X58896,Q52546,Q52546_PSESX,1HKQ,"","","", -5430,Hepatocyte nuclear factor 4-gamma,HNF4G,"",Z49826,Q14541,HNF4G_HUMAN,1LV2,"",HNF4G,HGNC:5026, -5431,Lipid binding protein,"","","",P83812,P83812_GEOSE,1PZX,"","","", -5432,Trafficking protein particle complex subunit 3,TRAPPC3,"",AJ224335,O43617,TPPC3_HUMAN,1SZ7,"",TRAPPC3,HGNC:19942, -5433,UPF0230 protein TM_1468,TM_1468,"",AE000512,Q9X1H9,Y1468_THEMA,1MGP,"","","", -5435,Deoxycytidylate 5-hydroxymethyltransferase,42,"",Y00148,P08773,DCHM_BPT4,1B5E,"","","", -5436,Hydrolase,"","","",Q7SIE9,Q7SIE9_THESP,1GKQ,"","","", -5437,Putative alkylsulfatase,atsK,"",AF126201,Q9WWU5,Q9WWU5_PSEPU,1OIJ,"","","", -5439,33 kDa chaperonin,hslO,"",AP009048,P0A6Y5,HSLO_ECOLI,1I7F,"","","", -5440,UPF0067 protein yebR,yebR,"",U00096,P76270,YEBR_ECOLI,1VHM,"","","", -5443,UPF0189 protein ymdB,ymdB,"",U00096,P0A8D6,YMDB_ECOLI,1SPV,"","","", -5445,Beta-lactamase,blaB,"",X80128,P52664,BLAB_PROVU,1HZO,"","","", -5446,3-deoxy-D-manno-octulosonate 8-phosphate phosphatase,HI_1679,"",L42023,P45314,KDOP_HAEIN,1K1E,"","","", -5447,Lethal(3)malignant brain tumor-like protein,L3MBTL1,"",U89358,Q9Y468,LMBL1_HUMAN,1OZ2,"",L3MBTL,HGNC:15905, -5448,Ribonuclease Z,rnz,"",D84432,P54548,RNZ_BACSU,1Y44,"","","", -5449,Hypothetical gliding protein,mglB,"",L09121,Q9X9L0,Q9X9L0_THETH,1J3W,"","","", -5450,Prolyl endopeptidase Pep,pep,"",AF127082,Q9X5N2,Q9X5N2_MYXXA,2BKL,"","","", -5454,Internalin-A,inlA,"",AJ012346,P25146,INLA_LISMO,1O6V,"","","", -5455,Arylsulfatase A,ARSA,"",X52151,P15289,ARSA_HUMAN,1E2S,"",ARSA,HGNC:713, -5461,Coagulation factor IX,F9,"",AB186358,Q5FBE1,Q5FBE1_HUMAN,1RFN,"",F9,HGNC:3551, -5463,Calcium-activated potassium channel subunit beta 2,KCNMB2,"",AF099137,Q9Y691,KCMB2_HUMAN,1JO6,"",KCNMB2,HGNC:6286, -5466,Putative sugar kinase,STM4066,"",AE008890,Q8ZKR2,Q8ZKR2_SALTY,1TZ6,"","","", -5469,Head decoration protein,shp,"",M81255,P36275,VSHP_BPP21,1TD3,"","","", -5480,Pituitary adenylate cyclase-activating polypeptide,ADCYAP1,"",S83513,P18509,PACA_HUMAN,1GEA,"",ADCYAP1,HGNC:241, -5481,Trans-sialidase,TCTS-154,"",D50685,Q26964,Q26964_TRYCR,1S0K,"","","", -5482,Sialidase-2,NEU2,"",Y16535,Q9Y3R4,NEUR2_HUMAN,1VCU,"",NEU2,HGNC:7759, -5483,Annexin A3,ANXA3,"",M20560,P12429,ANXA3_HUMAN,1AII,"",ANXA3,HGNC:541, -5484,Maltogenic amylase,"","",AF060204,O69007,O69007_9DEIN,1SMA,"","","", -5487,Nogalonic acid methyl ester cyclase,snoaL,"",AF187532,Q9RN59,Q9RN59_STRNO,1SJW,"","","", -5488,PPH,pph,"",AF064527,Q9X2W8,Q9X2W8_RHOCE,1MZU,"","","", -5489,Ribonucleoside-diphosphate reductase 1 subunit beta,nrdB,"",K02672,P69924,RIR2_ECOLI,1MXR,"","","", -5490,Aspartate aminotransferase,"","","",P83786,P83786_THETH,1IUG,"","","", -5491,Methionine gamma-lyase,mdeA,"",D88554,P13254,MEGL_PSEPU,1PG8,"","","", -5492,Cystathionine gamma-synthase,metB,"",K01546,P00935,METB_ECOLI,1CS1,"","","", -5493,Tyrosine aminotransferase,"","","",P33447,ATTY_TRYCR,1BW0,"","","", -5497,N-acylamino acid racemase,DR_0044,"",AE000513,Q9RYA6,Q9RYA6_DEIRA,1XS2,"","","", -5498,Maltoporin,lamB,"",M26131,P02943,LAMB_ECOLI,1MPQ,"","","", -844,Epidermal growth factor receptor,EGFR,757924,X00588,P00533,EGFR_HUMAN,1IVO,EGFR,EGFR,HGNC:3236,00579 -1102,Low affinity immunoglobulin gamma Fc region receptor III-B,FCGR3B,31322,X16863,O75015,FCG3B_HUMAN,1E4K,FCGR3B,FCGR3B,HGNC:3620,09951 -3814,Complement C1r subcomponent,C1R,29539,X04701,P00736,C1R_HUMAN,1GPZ,C1R,C1R,HGNC:1246, -3815,Complement C1q subcomponent subunit A,C1QA,4894854,AF135157,P02745,C1QA_HUMAN,1PK6,C1QA,C1QA,HGNC:1241, -3816,Complement C1q subcomponent subunit B,C1QB,573114,X03084,P02746,C1QB_HUMAN,1PK6,C1QB,C1QB,HGNC:1242, -3817,Complement C1q subcomponent subunit C,C1QC,33150626,AF087892,P02747,C1QC_HUMAN,1PK6,C1QC,C1QC,HGNC:1245, -3818,Low affinity immunoglobulin gamma Fc region receptor III-A,FCGR3A,31324,X52645,P08637,FCG3A_HUMAN,1E4K,FCGR3A,FCGR3A,HGNC:3619, -2782,Complement C1s subcomponent,C1S,763110,X06596,P09871,C1S_HUMAN,1ELV,C1S,C1S,HGNC:1247,00397 -784,High affinity immunoglobulin gamma Fc receptor I,FCGR1A,31332,X14356,P12314,FCGR1_HUMAN,"",FCGR1A,FCGR1A,HGNC:3613,00904 -3819,Low affinity immunoglobulin gamma Fc region receptor II-a,FCGR2A,182474,M31932,P12318,FCG2A_HUMAN,1H9V,FCGR2A,FCGR2A,HGNC:3616, -3820,Low affinity immunoglobulin gamma Fc region receptor II-b,FCGR2B,4099445,U87560,P31994,FCG2B_HUMAN,2FCB,FCGR2B,FCGR2B,HGNC:3618, -3821,Low affinity immunoglobulin gamma Fc region receptor II-c,FCGR2C,32074,X17652,P31995,FCG2C_HUMAN,2FCB,FCGR2C,FCGR2C,HGNC:15626, -874,DNA,"","","","","",1BNA,"","","", -724,Interleukin-2 receptor alpha chain,IL2RA,33813,X01057,P01589,IL2RA_HUMAN,"",IL2RA,IL2RA,HGNC:6008,00986 -7243,Reverse transcriptase,,,,Q5DNL9,,,,,, -7244,UDP-glucuronosyltransferase 1-6,,,,P19224,,,,,, -7245,UDP-glucuronosyltransferase 1-7,,,,Q9HAW7,,,,,, -7246,UDP-glucuronosyltransferase 2B15,,,,P54855,,,,,, -7248,Neutral alpha-glucosidase AB,,,,Q14697,,,,,, -7249,Neutral alpha-glucosidase C,,,,Q8TET4,,,,,, -3823,Cytokine receptor common gamma chain,IL2RG,219890,D11086,P31785,IL2RG_HUMAN,"",IL2RG,IL2RG,HGNC:6010, -717,Interleukin-2 receptor subunit beta,IL2RB,307048,M26062,P14784,IL2RB_HUMAN,"",IL2RB,IL2RB,HGNC:6009,00896 -7170,30S ribosomal protein S7,rpsG,,,P02359,RS7_ECOLI,,,,, -7171,Trivalent metal cations,,,,"",,,,,, -7172,Penicillin-binding protein 3,pbp3,,,Q2FGH1,Q2FGH1_STAA3,,,,, -7173,Inhibitor of nuclear factor kappa-B kinase subunit alpha,CHUK,,,O15111,IKKA_HUMAN,,,,, -7174,PbpA,pbpA,,,Q65HB5,Q65HB5_BACLD,,,,, -7175,Dihydropteroate synthase,sulI,,,P0C002,DHP1_ECOLX,,,,, -7176,Folic acid synthesis protein FOL1,FOL1,,,P53848,FOL1_YEAST,,,,, -7177,"Pencillin Binding Protein 3, P. aeruginosa",,,,"",,,,,, -7178,Smoothened homolog,SMO,,,Q99835,SMO_HUMAN,,,,, diff --git a/core/src/test/resources/test_germline_white_list_file.txt b/core/src/test/resources/test_germline_white_list_file.txt deleted file mode 100644 index 9a0f9550753..00000000000 --- a/core/src/test/resources/test_germline_white_list_file.txt +++ /dev/null @@ -1,3 +0,0 @@ -FOO -BAR -BIG diff --git a/core/src/test/resources/test_germline_white_list_file2.txt b/core/src/test/resources/test_germline_white_list_file2.txt deleted file mode 100644 index dcaa9062ac2..00000000000 --- a/core/src/test/resources/test_germline_white_list_file2.txt +++ /dev/null @@ -1,2 +0,0 @@ -CLEC7A -GPR19 diff --git a/core/src/test/resources/test_global_white_list_file.txt b/core/src/test/resources/test_global_white_list_file.txt deleted file mode 100644 index 4628ffb728f..00000000000 --- a/core/src/test/resources/test_global_white_list_file.txt +++ /dev/null @@ -1,4 +0,0 @@ -1 -4 -3 -101 diff --git a/core/src/test/resources/test_groups.txt b/core/src/test/resources/test_groups.txt deleted file mode 100644 index 505b566fd2c..00000000000 --- a/core/src/test/resources/test_groups.txt +++ /dev/null @@ -1,51 +0,0 @@ -CLUSTER_ID -YEATS4=3 -SMARCA2=1 -KLF6=1 -JAK2=0 -PDGFRA=2 -FN1=2 -VLDLR=0 -MET=0 -PIK3C2B=0 -CCT6A=4 -ING4=1 -PIK3R1=0 -PRKDC=1 -EP300=1 -TNC=2 -PTPRD=5 -MDM2=1 -PIK3CA=0 -TP53=1 -NF1=1 -TEK=0 -CDKN2A=1 -KDR=2 -AGAP2=0 -PSIP1=6 -CDKN2B=1 -ADAM12=0 -EGFR=0 -ITGB3=2 -TRRAP=3 -CCND2=1 -ERBB2=0 -MPDZ=0 -BRCA2=1 -PRELP=2 -PTPRE=5 -TNK2=0 -CCT2=4 -BNC2=1 -MSH6=3 -KIT=0 -SNAPC3=1 -FRS2=2 -MGMT=1 -NUP107=6 -CDK4=1 -RB1=1 -MDM4=1 -SH3GL2=0 -PTEN=1 diff --git a/core/src/test/resources/test_meta_treatment_missing_pivot.txt b/core/src/test/resources/test_meta_treatment_missing_pivot.txt deleted file mode 100644 index 92f2359be8f..00000000000 --- a/core/src/test/resources/test_meta_treatment_missing_pivot.txt +++ /dev/null @@ -1,11 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: GENERIC_ASSAY -generic_assay_type: TREATMENT_RESPONSE -datatype: IC50 -stable_id: treatment_ic50 -profile_name: IC50 values of compounds on cellular phenotype readout -profile_description: IC50 (compound concentration resulting in half maximal inhibition) of compounds on cellular phenotype readout of cultured mutant cell lines. -data_filename: data_treatment_ic50.txt -show_profile_in_analysis_tab: true -value_sort_order: asc -generic_entity_meta_properties: NAME,DESCRIPTION,URL \ No newline at end of file diff --git a/core/src/test/resources/test_meta_treatment_missing_sortorder.txt b/core/src/test/resources/test_meta_treatment_missing_sortorder.txt deleted file mode 100644 index 92f2359be8f..00000000000 --- a/core/src/test/resources/test_meta_treatment_missing_sortorder.txt +++ /dev/null @@ -1,11 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: GENERIC_ASSAY -generic_assay_type: TREATMENT_RESPONSE -datatype: IC50 -stable_id: treatment_ic50 -profile_name: IC50 values of compounds on cellular phenotype readout -profile_description: IC50 (compound concentration resulting in half maximal inhibition) of compounds on cellular phenotype readout of cultured mutant cell lines. -data_filename: data_treatment_ic50.txt -show_profile_in_analysis_tab: true -value_sort_order: asc -generic_entity_meta_properties: NAME,DESCRIPTION,URL \ No newline at end of file diff --git a/core/src/test/resources/test_mut_sig_data.txt b/core/src/test/resources/test_mut_sig_data.txt deleted file mode 100644 index 40183c8c344..00000000000 --- a/core/src/test/resources/test_mut_sig_data.txt +++ /dev/null @@ -1,41 +0,0 @@ -rank gene N n nVal nVer CpG C+G A+T Indel p q -1 TP53 145177 48 48 0 18 17 10 3 <1E-11 <1E-8 -2 PTEN 156252 34 29 5 6 9 7 12 <1E-11 <1E-8 -3 ERBB2 283387 12 10 2 0 0 11 1 <1E-11 <1E-8 -4 EGFR 502500 20 19 1 4 13 3 0 <1E-11 <1E-8 -5 PIK3R1 179077 7 6 1 0 3 0 4 <1E-11 <1E-8 -6 PIK3CA 224502 8 7 1 1 2 3 2 <1E-11 <1E-8 -7 RB1 352773 10 9 1 2 5 2 1 <1E-11 <1E-8 -8 NF1 648932 14 12 2 0 8 2 4 <1E-11 <1E-8 -9 AKT1 150306 5 5 0 5 0 0 0 1.82E-07 0.000027 -10 PIK3C2G 488304 5 5 0 3 0 2 0 4.61E-07 0.000061 -11 CHEK2 198210 3 3 0 0 0 3 0 0.000015 0.0018 -12 GSTM5 73031 2 2 0 0 0 2 0 0.000085 0.0094 -13 PSMD13 135428 3 3 0 0 3 0 0 0.000093 0.0095 -14 HLA-E 79934 2 2 0 0 2 0 0 0.0012 0.11 -15 DDR2 273743 3 3 0 1 2 0 0 0.0014 0.13 -16 EYA1 204422 2 2 0 2 0 0 0 0.0018 0.15 -17 PDGFRA 431737 3 3 0 0 2 1 0 0.0027 0.21 -18 DGKG 148991 1 1 0 0 0 0 1 0.004 0.3 -19 DES 150589 2 2 0 1 0 1 0 0.0043 0.3 -20 IFITM3 44764 1 1 0 0 0 1 0 0.0052 0.35 -21 GRIA2 206175 1 1 0 0 0 0 1 0.0057 0.36 -22 PAX5 79891 1 1 0 0 0 1 0 0.011 0.62 -23 PIM1 76311 1 1 0 0 0 1 0 0.011 0.62 -24 PRKCZ 141349 2 2 0 1 1 0 0 0.011 0.62 -25 EPHA3 353916 2 2 0 0 1 1 0 0.014 0.65 -26 TNFRSF1B 101137 1 0 1 0 0 1 0 0.014 0.65 -27 MARK1 270729 2 2 0 0 2 0 0 0.014 0.65 -28 CHEK1 118243 1 1 0 1 0 0 0 0.014 0.65 -29 FGFR1 353008 2 2 0 0 1 1 0 0.014 0.65 -30 SLC12A6 309520 2 2 0 0 2 0 0 0.017 0.77 -31 SERPINA3 56482 1 1 0 1 0 0 0 0.019 0.82 -32 FGFR3 126195 1 1 0 0 0 1 0 0.021 0.82 -33 IL1RL1 139413 1 1 0 0 0 1 0 0.021 0.82 -34 BCL2 40874 1 0 1 0 1 0 0 0.021 0.82 -35 EPHA8 240563 2 2 0 2 0 0 0 0.022 0.82 -36 BCL11A 261151 2 2 0 2 0 0 0 0.023 0.85 -37 APBB1IP 177542 1 1 0 1 0 0 0 0.026 0.89 -38 RNF38 179619 1 1 0 0 0 1 0 0.027 0.89 -39 NRAS 42746 1 0 1 0 1 0 0 0.028 0.89 -40 KRAS 51445 1 1 0 0 1 0 0 0.028 0.89 \ No newline at end of file diff --git a/core/src/test/resources/test_pihelper_drugs.tsv b/core/src/test/resources/test_pihelper_drugs.tsv deleted file mode 100644 index 65856b3b461..00000000000 --- a/core/src/test/resources/test_pihelper_drugs.tsv +++ /dev/null @@ -1,11 +0,0 @@ -# File generated by PiHelper. Please see the project web site for further details on data use terms. -# Exporter: DrugExporter -# Time: 2012.11.07 at 14:34:14 EST -PiHelper_Drug_ID Drug_Name Drug_Synonyms Description Number_of_Targets ATC_Codes isFdaApproved isCancerDrug isNutraceutical Number_Of_Clinical_Trials DataSources References -33611 Lepirudin Refludan;Hirudin variant-1 "Lepirudin is identical to natural hirudin except for substitution of leucine for isoleucine at the N-terminal end of the molecule and the absence of a sulfate group on the tyrosine at position 63. It is produced via yeast cells." 3 B01AE02; true false false -1 DrugBank; doi:10.1038/nrd3478:1112;KEGG:D06880;National Drug Code Directory:50419-150-57;Drugs Product Database (DPD):2240996;UniProtKB:P01050;PharmGKB:PA450195;DrugBank:DB00001 -33612 Cetuximab IMC-C225;Erbitux;Cetuximab;Anti EGFR "Epidermal growth factor receptor binding FAB. Cetuximab is composed of the Fv (variable; antigen-binding) regions of the 225 murine EGFr monoclonal antibody specific for the N-terminal portion of human EGFr with human IgG1 heavy and kappa light chain constant (framework) regions." 14 L01XC06; true true false 204 DrugBank; doi:10.1038/nrd3478:197;KEGG:D03455;PharmGKB:PA10040;GenBank:J00228;NCI_Drug:42384;DrugBank:DB00002;National Drug Code Directory:66733-948-23 -33613 Dornase Alfa Viscozyme;Deoxyribonuclease I;rhDNase;DNase I;DNase;Deoxyribonuclease-1 precursor;Pulmozyme "Dornase alfa is a biosynthetic form of human deoxyribunuclease I (DNase I) enzyme. It is produced in genetically modified Chinese hamster ovary (CHO) cells using recombinant DNA technology. The 260-amino acid sequence of dornase alfa is identical to the endogenous human enzyme. Dornase alfa cleaves extracellular DNA to 5´-phosphodinucleotide and 5´-phosphooligonucleotide end products without affecting intracellular DNA. In individuals with cystic fibrosis, extracellular DNA, which is an extremely viscous anion, is released by degenerating leukocytes that accumulate during inflammatory responses to infections. Enzymatic breakdown of this extracellular DNA appears to reduce sputum viscosity and viscoelasticity. " 0 R05CB13; true false false -1 DrugBank; GenBank:M55983;UniProtKB:P24855;PharmGKB:PA10318;Drugs Product Database (DPD):2046733;DrugBank:DB00003 -33614 Denileukin diftitox DT;Denileukin Diftitox;Diphtheria toxin precursor;NAD(+--diphthamide ADP- ribosyltransferase);Ontak "A recombinant DNA-derived cytotoxic protein composed of the amino acid sequences for diphtheria toxin fragments A and B (Met 1-Thr 387)-His followed by the sequences for interleukin-2 (IL-2; Ala 1-Thr 133). It is produced in an E. coli expression system." 9 L01XX29; true true false 7 DrugBank; KEGG:D03682;National Drug Code Directory:62856-603-01;DrugBank:DB00004;GenBank:V01536;PharmGKB:PA10317;doi:10.1038/nrd3478:597;doi:10.1038/nrd3478:598;UniProtKB:P00587;doi:10.1038/nrd3478:599;NCI_Drug:42325 -33615 Etanercept Tumor necrosis factor receptor 2;Enbrel;Enbrel Sureclick;Tumor necrosis factor receptor type II;TNF-R2;p75;p80 TNF-alpha receptor;Tumor necrosis factor receptor superfamily member 1B precursor;Enbrel (Immunex Corp);CD120b "Dimeric fusion protein consisting of the extracellular ligand-binding portion of the human 75 kilodalton (p75) tumor necrosis factor receptor (TNFR) linked to the Fc portion of human IgG1. The Fc component of etanercept contains the CH2 domain, the CH3 domain and hinge region, but not the CH1 domain of IgG1. Etanercept is produced by recombinant DNA technology in a Chinese hamster ovary (CHO) mammalian cell expression system. It consists of 934 amino acids" 17 L04AB01; true false false -1 DrugBank; UniProtKB:P20333;KEGG Drug:D00742;DrugBank:DB00005;doi:10.1038/nrd3478:804;PharmGKB:PA449515;GenBank:M32315;KEGG:D00742;KEGG Compound:C07897;Drugs Product Database (DPD):2242903;National Drug Code Directory:58406-455-04 -33616 Bivalirudin Angiox;Angiomax "Bivalirudin is a synthetic 20 residue peptide (thrombin inhibitor) which reversibly inhibits thrombin. Once bound to the active site, thrombin cannot activate fibrinogen into fibrin, the crucial step in the formation of thrombus. It is administered intravenously. Because it can cause blood stagnation, it is important to monitor changes in hematocrit, activated partial thromboplastin time, international normalized ratio and blood pressure. " 3 B01AE06; true false false -1 DrugBank; Drugs Product Database (DPD):2246533;DrugBank:DB00006;KEGG:D03136;doi:10.1038/nrd3478:222;PharmGKB:PA10032;National Drug Code Directory:65293-001-01 -33724 Biotin Bios II;Lutavit H2;Coenzyme R;Factor S;Bioepiderm;D-Biotin;Vitamin B7;Biotin Forte;Rovimix H2;cis-(+)-Tetrahydro-2-oxothieno[3,4]imidazoline-4-valeric acid;(+)-cis-Hexahydro-2-oxo-1H-thieno[3,4]imidazole-4-valeric acid;Meribin;Biodermatin;D(+)-Biotin;Vitamin H "A water-soluble, enzyme co-factor present in minute amounts in every living cell. It occurs mainly bound to proteins or polypeptides and is abundant in liver, kidney, pancreas, yeast, and milk. [PubChem]" 9 A11HA05; true false true -1 DrugBank; DrugBank:DB00121;PDB:BTN;ChEBI:15956;ChemSpider:149962;KEGG Compound:C00120;KEGG Drug:D00029;Drugs Product Database (DPD):189189;PubChem Substance:46508694;BindingDB:12;PharmGKB:PA448625;PubChem Compound:171548 diff --git a/core/src/test/resources/test_pihelper_drugtargets.tsv b/core/src/test/resources/test_pihelper_drugtargets.tsv deleted file mode 100644 index 678b3b9767c..00000000000 --- a/core/src/test/resources/test_pihelper_drugtargets.tsv +++ /dev/null @@ -1,29 +0,0 @@ -# File generated by PiHelper. Please see the project web site for further details on data use terms. -# Exporter: DrugTargetExporter -# Time: 2012.11.07 at 15:01:44 EST -PiHelper_DrugTarget_ID HGNC_Symbol Drug_Name DataSources References -1 F2 Lepirudin PubMed:10912644;PubMed:10505536;PubMed:11467439;PubMed:11752352;PubMed:11055889;PubMed:11807012 -2 EGFR Cetuximab PubMed:11408594;PubMed:10601294;PubMed:10628369;PubMed:11752352;PubMed:10480573;PubMed:11431346 -3 FCGR3B Cetuximab PubMed:16336752; -4 C1R Cetuximab PubMed:17016423;PubMed:17139284 -5 C1QA Cetuximab PubMed:17016423;PubMed:17139284 -6 C1QB Cetuximab PubMed:17016423;PubMed:17139284 -7 C1QC Cetuximab PubMed:17016423;PubMed:17139284 -8 FCGR3A Cetuximab PubMed:17016423;PubMed:17704420;PubMed:17139284 -9 C1S Cetuximab PubMed:17016423;PubMed:17139284 -10 FCGR1A Cetuximab PubMed:7547242; -11 FCGR2A Cetuximab PubMed:17016423;PubMed:17704420;PubMed:17139284 -12 FCGR2B Cetuximab PubMed:17016423;PubMed:17139284 -13 FCGR2C Cetuximab PubMed:17016423;PubMed:17139284 -14 IL2RA Denileukin diftitox PubMed:17016423;PubMed:17187516;PubMed:18684057;PubMed:2786749;PubMed:3124610;PubMed:11752352;PubMed:17139284 -15 IL2RB Denileukin diftitox PubMed:16516670;PubMed:17187516;PubMed:18684057;PubMed:15811959;PubMed:11752352 -16 IL2RG Denileukin diftitox PubMed:11707860;PubMed:16516670;PubMed:15811959 -582 PCCB Biotin PubMed:17016423;PubMed:15623830;PubMed:9311592;PubMed:14997352;PubMed:17139284 -583 HLCS Biotin PubMed:16359899;PubMed:17056793;PubMed:16772434 -584 SLC5A6 Biotin PubMed:17374649;PubMed:17038304;PubMed:17135299;PubMed:16749865 -585 MCCC2 Biotin PubMed:17659996;PubMed:17254330;PubMed:17266990;PubMed:16707089 -586 ACACB Biotin PubMed:17477831; -587 MCCC1 Biotin PubMed:16773504; -588 PC Biotin PubMed:17659996;PubMed:17297119;PubMed:17008113;PubMed:17478118;PubMed:17316367 -589 PCCA Biotin PubMed:17016423;PubMed:15623830;PubMed:9311592;PubMed:12385775;PubMed:17139284 -590 ACACA Biotin PubMed:17468269;PubMed:16460018;PubMed:16545081;PubMed:16636450;PubMed:16707089 diff --git a/core/src/test/resources/test_readable_categories.txt b/core/src/test/resources/test_readable_categories.txt deleted file mode 100644 index 64bf24de2e1..00000000000 --- a/core/src/test/resources/test_readable_categories.txt +++ /dev/null @@ -1,15 +0,0 @@ -TUMORRESIDUALDISEASE : Tumor Residual Disease - -TUMORGRADE : Tumor Grade - -VITALSTATUS : Vital Status -PlatinumStatus : Platinum Status - -# this line is intentionally constructed incorrectly... - - TUMORSTAGE : Tumor Stage -PERSONNEOPLASMCANCERSTATUS : Person Neoplasm Cancer Status - ProgressionFreeStatus : Progression Free Status -PRIMARYTHERAPYOUTCOMESUCCESS : Primary Therapy Outcome Success - -## another incorrect line ## diff --git a/core/src/test/resources/test_significantly_mutated_gene_list_file.txt b/core/src/test/resources/test_significantly_mutated_gene_list_file.txt deleted file mode 100644 index 45b8b70828f..00000000000 --- a/core/src/test/resources/test_significantly_mutated_gene_list_file.txt +++ /dev/null @@ -1,4 +0,0 @@ -53 -99 -3 -777 \ No newline at end of file diff --git a/core/src/test/resources/test_somatic_white_list_file1.txt b/core/src/test/resources/test_somatic_white_list_file1.txt deleted file mode 100644 index 1c0887db287..00000000000 --- a/core/src/test/resources/test_somatic_white_list_file1.txt +++ /dev/null @@ -1,4 +0,0 @@ -ONE -FOUR -FOO -TWELVE diff --git a/core/src/test/resources/test_somatic_white_list_file2.txt b/core/src/test/resources/test_somatic_white_list_file2.txt deleted file mode 100644 index 9a5e9842354..00000000000 --- a/core/src/test/resources/test_somatic_white_list_file2.txt +++ /dev/null @@ -1,3 +0,0 @@ -FOUR -FOO -SEVENSEVENSEVEN diff --git a/core/src/test/resources/treatments/data_treatment_ic50.txt b/core/src/test/resources/treatments/data_treatment_ic50.txt deleted file mode 100644 index 616f16f1827..00000000000 --- a/core/src/test/resources/treatments/data_treatment_ic50.txt +++ /dev/null @@ -1,11 +0,0 @@ -ENTITY_STABLE_ID NAME DESCRIPTION URL -17-AAG Name of 17-AAG Desc of 17-AAG Url of 17-AAG -AEW541 Name of AEW541 Desc of AEW541 Url of AEW541 -AZD0530 Name of AZD0530 Desc of AZD0530 Url of AZD0530 -AZD6244 Name of AZD6244 Desc of AZD6244 Url of AZD6244 -Erlotinib Name of Erlotinib Desc of Erlotinib Url of Erlotinib -Irinotecan Name of Irinotecan Desc of Irinotecan Url of Irinotecan -L-685458 Name of L-685458 Desc of L-685458 Url of L-685458 -Lapatinib Name of Lapatinib Desc of Lapatinib Url of Lapatinib -LBW242 Name of LBW242 Desc of LBW242 Url of LBW242 -Nilotinib Name of Nilotinib Desc of Nilotinib Url of Nilotinib diff --git a/core/src/test/resources/treatments/data_treatment_ic50_newdesc.txt b/core/src/test/resources/treatments/data_treatment_ic50_newdesc.txt deleted file mode 100644 index 4eb805bddeb..00000000000 --- a/core/src/test/resources/treatments/data_treatment_ic50_newdesc.txt +++ /dev/null @@ -1,11 +0,0 @@ -ENTITY_STABLE_ID NAME DESCRIPTION URL -17-AAG Name of 17-AAG New New desc of 17-AAG Url of 17-AAG -AEW541 Name of AEW541 New desc of AEW541 Url of AEW541 -AZD0530 Name of AZD0530 New desc of AZD0530 Url of AZD0530 -AZD6244 Name of AZD6244 New desc of AZD6244 Url of AZD6244 -Erlotinib Name of Erlotinib New desc of Erlotinib Url of Erlotinib -Irinotecan Name of Irinotecan New desc of Irinotecan Url of Irinotecan -L-685458 Name of L-685458 New desc of L-685458 Url of L-685458 -Lapatinib Name of Lapatinib New desc of Lapatinib Url of Lapatinib -LBW242 Name of LBW242 New desc of LBW242 Url of LBW242 -Nilotinib Name of Nilotinib New desc of Nilotinib Url of Nilotinib \ No newline at end of file diff --git a/core/src/test/scripts/system_tests_validate_data.py b/core/src/test/scripts/system_tests_validate_data.py deleted file mode 100755 index ff5385c5692..00000000000 --- a/core/src/test/scripts/system_tests_validate_data.py +++ /dev/null @@ -1,264 +0,0 @@ -#!/usr/bin/env python3 - -''' -Copyright (c) 2016 The Hyve B.V. -This code is licensed under the GNU Affero General Public License (AGPL), -version 3, or (at your option) any later version. -''' - -import unittest -import logging -import tempfile -import os -import shutil -import time -import difflib - -from importer import validateData - -try: - WindowsError -except NameError: - WindowsError = None - -# globals: -PORTAL_INFO_DIR = 'test_data/api_json_system_tests' - -class ValidateDataSystemTester(unittest.TestCase): - '''Test cases around running the complete validateData script - - (such as "does it return the correct exit status?" or "does it generate - the html report when requested?", etc) - ''' - - def setUp(self): - _resetClassVars() - - # Prepare global variables related to sample profiled for mutations and gene panels - self.mutation_sample_ids = None - self.mutation_file_sample_ids = set() - self.fusion_file_sample_ids = set() - - def tearDown(self): - """Close logging handlers after running validator and remove tmpdir.""" - # restore original function - validateData.mutation_sample_ids = None - validateData.mutation_file_sample_ids = set() - validateData.fusion_file_sample_ids = set() - - # get the logger used in validateData.main_validate() - validator_logger = logging.getLogger(validateData.__name__) - # flush and close all handlers of this logger - for logging_handler in validator_logger.handlers: - logging_handler.close() - # remove the handlers from the logger to reset it - validator_logger.handlers = [] - super(ValidateDataSystemTester, self).tearDown() - - def assertFileGenerated(self, tmp_file_name, expected_file_name): - """Assert that a file has been generated with the expected contents.""" - self.assertTrue(os.path.exists(tmp_file_name)) - with open(tmp_file_name, 'r') as out_file, \ - open(expected_file_name, 'r') as ref_file: - base_filename = os.path.basename(tmp_file_name) - diff_result = difflib.context_diff( - ref_file.readlines(), - out_file.readlines(), - fromfile='Expected {}'.format(base_filename), - tofile='Generated {}'.format(base_filename)) - diff_line_list = list(diff_result) - self.assertEqual(diff_line_list, [], - msg='\n' + ''.join(diff_line_list)) - # remove temp file if all is fine: - try: - os.remove(tmp_file_name) - except WindowsError: - # ignore this Windows specific error...probably happens because of virus scanners scanning the temp file... - pass - - def test_exit_status_success(self): - '''study 0 : no errors, expected exit_status = 0. - - If there are errors, the script should return - 0: 'succeeded', - 1: 'failed', - 2: 'not performed as problems occurred', - 3: 'succeeded with warnings' - ''' - - # build up the argument list - print("===study 0") - args = ['--study_directory', 'test_data/study_es_0/', - '--portal_info_dir', PORTAL_INFO_DIR, '-v'] - # execute main function with arguments provided as if from sys.argv - args = validateData.interface(args) - exit_status = validateData.main_validate(args) - self.assertEqual(0, exit_status) - - def test_exit_status_failure(self): - '''study 1 : errors, expected exit_status = 1.''' - #Build up arguments and run - print("===study 1") - args = ['--study_directory', 'test_data/study_es_1/', - '--portal_info_dir', PORTAL_INFO_DIR, '-v'] - args = validateData.interface(args) - # Execute main function with arguments provided through sys.argv - exit_status = validateData.main_validate(args) - self.assertEqual(1, exit_status) - - @unittest.SkipTest - # FIXME Study test_data/study_es_invalid does not exist - def test_exit_status_invalid(self): - '''test to fail: give wrong hugo file, or let a meta file point to a non-existing data file, expected exit_status = 2.''' - #Build up arguments and run - print("===study invalid") - args = ['--study_directory', 'test_data/study_es_invalid/', - '--portal_info_dir', PORTAL_INFO_DIR, '-v'] - args = validateData.interface(args) - # Execute main function with arguments provided through sys.argv - exit_status = validateData.main_validate(args) - self.assertEqual(2, exit_status) - - def test_exit_status_warnings(self): - '''study 3 : warnings only, expected exit_status = 3.''' - # data_filename: test - #Build up arguments and run - print("===study 3") - args = ['--study_directory', 'test_data/study_es_3/', - '--portal_info_dir', PORTAL_INFO_DIR, '-v'] - args = validateData.interface(args) - # Execute main function with arguments provided through sys.argv - exit_status = validateData.main_validate(args) - self.assertEqual(3, exit_status) - - def test_html_output(self): - ''' - Test if html file is correctly generated when 'html_table' is given - ''' - #Build up arguments and run - out_file_name = 'test_data/study_es_0/result_report.html~' - args = ['--study_directory', 'test_data/study_es_0/', - '--portal_info_dir', PORTAL_INFO_DIR, '-v', - '--html_table', out_file_name] - args = validateData.interface(args) - # Execute main function with arguments provided through sys.argv - exit_status = validateData.main_validate(args) - self.assertEqual(0, exit_status) - self.assertFileGenerated(out_file_name, - 'test_data/study_es_0/result_report.html') - - def test_portal_mismatch(self): - '''Test if validation fails when data contradicts the portal.''' - # build up arguments and run - argv = ['--study_directory', 'test_data/study_portal_mismatch', - '--portal_info_dir', PORTAL_INFO_DIR, '--verbose'] - parsed_args = validateData.interface(argv) - exit_status = validateData.main_validate(parsed_args) - # flush logging handlers used in validateData - validator_logger = logging.getLogger(validateData.__name__) - for logging_handler in validator_logger.handlers: - logging_handler.flush() - # expecting only warnings (about the skipped checks), no errors - self.assertEqual(exit_status, 1) - - def test_no_portal_checks(self): - '''Test if validation skips portal-specific checks when instructed.''' - # build up arguments and run - argv = ['--study_directory', 'test_data/study_portal_mismatch', - '--verbose', - '--no_portal_checks'] - parsed_args = validateData.interface(argv) - exit_status = validateData.main_validate(parsed_args) - # flush logging handlers used in validateData - validator_logger = logging.getLogger(validateData.__name__) - for logging_handler in validator_logger.handlers: - logging_handler.flush() - # expecting only warnings (about the skipped checks), no errors - self.assertEqual(exit_status, 3) - - def test_problem_in_clinical(self): - '''Test whether the script aborts if the sample file cannot be parsed. - - Further files cannot be validated in this case, as all sample IDs will - be undefined. Validate if the script is giving the proper error. - ''' - # build the argument list - out_file_name = 'test_data/study_wr_clin/result_report.html~' - print('==test_problem_in_clinical==') - args = ['--study_directory', 'test_data/study_wr_clin/', - '--portal_info_dir', PORTAL_INFO_DIR, '-v', - '--html_table', out_file_name] - # execute main function with arguments provided as if from sys.argv - args = validateData.interface(args) - exit_status = validateData.main_validate(args) - self.assertEqual(1, exit_status) - # TODO - set logger in main_validate and read out buffer here to assert on nr of errors - self.assertFileGenerated(out_file_name, - 'test_data/study_wr_clin/result_report.html') - - def test_various_issues(self): - '''Test if output is generated for a mix of errors and warnings. - - This includes HTML ouput, the error line file and the exit status. - ''' - # build the argument list - html_file_name = 'test_data/study_various_issues/result_report.html~' - error_file_name = 'test_data/study_various_issues/error_file.txt~' - args = ['--study_directory', 'test_data/study_various_issues/', - '--portal_info_dir', PORTAL_INFO_DIR, '-v', - '--html_table', html_file_name, - '--error_file', error_file_name] - args = validateData.interface(args) - # execute main function with arguments provided through sys.argv - exit_status = validateData.main_validate(args) - # flush logging handlers used in validateData - validator_logger = logging.getLogger(validateData.__name__) - for logging_handler in validator_logger.handlers: - logging_handler.flush() - # should fail because of various errors in addition to warnings - self.assertEqual(1, exit_status) - # In MAF files (mutation data) there is a column called - # "Matched_Norm_Sample_Barcode". The respective metadata file supports - # giving a list of sample codes against which this column is validated. - # This and other errors are expected in these output files. - self.assertFileGenerated( - html_file_name, - 'test_data/study_various_issues/result_report.html') - self.assertFileGenerated( - error_file_name, - 'test_data/study_various_issues/error_file.txt') - - def test_files_with_quotes(self): - ''' - Tests the scenario where data files contain quotes. This should give errors. - ''' - #Build up arguments and run - out_file_name = 'test_data/study_quotes/result_report.html~' - print('==test_files_with_quotes==') - args = ['--study_directory', 'test_data/study_quotes/', - '--portal_info_dir', PORTAL_INFO_DIR, '-v', - '--html_table', out_file_name] - args = validateData.interface(args) - # Execute main function with arguments provided through sys.argv - exit_status = validateData.main_validate(args) - # should fail because of errors with quotes - self.assertEqual(1, exit_status) - self.assertFileGenerated(out_file_name, - 'test_data/study_quotes/result_report.html') - -def _resetClassVars(): - """Reset the state of classes that check mulitple files of the same type. - - GsvaWiseFileValidator classes check - consistency between multiple data files by collecting information in class variables. - This implementation is not consistent with the unit test environment that simulates - different studies to be loaded. To ensure real-world fucntionality the class variables - should be reset before each unit test that tests multi file consistency.""" - - for c in [ validateData.GsvaWiseFileValidator ]: - c.prior_validated_sample_ids = None - c.prior_validated_feature_ids = None - c.prior_validated_header = None - -if __name__ == '__main__': - unittest.main(buffer=True) diff --git a/core/src/test/scripts/system_tests_validate_studies.py b/core/src/test/scripts/system_tests_validate_studies.py deleted file mode 100755 index 714754ac8dd..00000000000 --- a/core/src/test/scripts/system_tests_validate_studies.py +++ /dev/null @@ -1,215 +0,0 @@ -#!/usr/bin/env python3 - -""" -Copyright (c) 2018 The Hyve B.V. -This code is licensed under the GNU Affero General Public License (AGPL), -version 3, or (at your option) any later version. -""" - -import unittest -import sys -import os -import glob -from contextlib import contextmanager -from io import StringIO -import logging.handlers -import tempfile -import shutil - -from importer import validateStudies, cbioportal_common - - -# globals: -PORTAL_INFO_DIR = 'test_data/api_json_system_tests' - - -# FIXME: replace by contextlib.redirect_stdout when moving to Python 3.4+ -@contextmanager -def redirect_stdout(new_target): - """Temporarily re-bind sys.stdout to a different file-like object.""" - old_target = sys.stdout - sys.stdout = new_target - try: - yield - finally: - sys.stdout = old_target - - -# FIXME: replace by tempfile.TemporaryDirectory when moving to Python 3.2+ -@contextmanager -def TemporaryDirectory(): - """Create a temporary directory and remove it after use.""" - path = tempfile.mkdtemp() - try: - yield path - finally: - shutil.rmtree(path) - - -class ValidateStudiesSystemTester(unittest.TestCase): - """Test cases around running the validateStudies script - - (such as "does it return the correct exit status?") - """ - - def test_exit_status_success(self): - """study 0 : no errors, expected exit_status = 0. - - Possible exit statuses: - 0: 'VALID', - 1: 'INVALID' - """ - - # Build up arguments and run - print("===study 0") - args = ['--list-of-studies', 'test_data/study_es_0/', - '--portal_info_dir', PORTAL_INFO_DIR] - args = validateStudies.interface(args) - exit_status = validateStudies.main(args) - self.assertEqual(0, exit_status) - - def test_exit_status_success_for_legacy_cna_discrete(self): - """study 0 : no errors, expected exit_status = 0. - - Possible exit statuses: - 0: 'VALID', - 1: 'INVALID' - """ - - # Build up arguments and run - print("===study 0 legacy") - args = ['--list-of-studies', 'test_data/study_es_0_legacy_cna_discrete/', - '--portal_info_dir', PORTAL_INFO_DIR] - args = validateStudies.interface(args) - exit_status = validateStudies.main(args) - self.assertEqual(0, exit_status) - - def test_exit_status_failure(self): - """study 1 : errors, expected exit_status = 1.""" - - # Build up arguments and run - print("===study 1") - args = ['--list-of-studies', 'test_data/study_es_1/', - '--portal_info_dir', PORTAL_INFO_DIR] - args = validateStudies.interface(args) - exit_status = validateStudies.main(args) - self.assertEqual(1, exit_status) - - @unittest.skip("Study test_data/study_es_invalid is not implemented") - def test_exit_status_invalid(self): - """test to fail: study directory not existing, so cannot run validation, expected exit_status = 1.""" - - # Build up arguments and run - print("===study invalid") - args = ['--list-of-studies', 'test_data/study_es_invalid/', - '--portal_info_dir', PORTAL_INFO_DIR] - args = validateStudies.interface(args) - exit_status = validateStudies.main(args) - self.assertEqual(1, exit_status) - - def test_exit_status_warnings(self): - """study 3 : warnings only, expected exit_status = 0.""" - - # Build up arguments and run - print("===study 3") - args = ['--list-of-studies', 'test_data/study_es_3/', - '--portal_info_dir', PORTAL_INFO_DIR] - args = validateStudies.interface(args) - exit_status = validateStudies.main(args) - self.assertEqual(0, exit_status) - - def test_exit_status_multiple_studies(self): - """Running validateStudies for four studies tested above, expected exit_status = 1.""" - - # Build up arguments and run - print("===study0,1,invalid,3") - args = ['--root-directory', 'test_data', - '--list-of-studies', 'study_es_0,study_es_1,study_es_invalid,study_es_3', - '--portal_info_dir', PORTAL_INFO_DIR] - args = validateStudies.interface(args) - exit_status = validateStudies.main(args) - self.assertEqual(1, exit_status) - - def test_logs_study_label_before_validation_messages(self): - """The log file should start with a line describing the study. - - A subsequent study should have its own header line. - """ - # given - with TemporaryDirectory() as out_dir_path: - args = [ - '--root-directory', 'test_data', - '--list-of-studies', 'study_various_issues,study_es_0', - '--portal_info_dir', PORTAL_INFO_DIR, - '--html-folder', out_dir_path - ] - # when - with redirect_stdout(StringIO()): - parsed_args = validateStudies.interface(args) - validateStudies.main(parsed_args) - # then - log_file_path = glob.glob(os.path.join(out_dir_path, 'log*.txt'))[0] - with open(log_file_path) as log_file: - log_file_lines = log_file.readlines() - self.assertIn('study_various_issues', log_file_lines[0]) - last_line_of_first_study = next( - index - for index, line - in enumerate(log_file_lines) - if 'Validation complete' in line) - self.assertIn( - 'study_es_0', - log_file_lines[last_line_of_first_study + 1]) - - -class ValidateStudiesWithEagerlyFlushingCollapser(unittest.TestCase): - """Test validation with the collapser flushing due to buffer capacity. - - When validating very large studies, it will flush partway through a study. - This can be simulated with a smaller study by lowering the buffer capacity. - """ - - def setUp(self): - """Make the collapsing log message handler flush more eagerly.""" - class EagerFlusher(logging.handlers.MemoryHandler): - def __init__(self, *args, **kwargs): - """Set the buffer capacity to 3 regardless of args.""" - # leave out any capacity argument from args and kwargs - args = args[1:] - kwargs = {k: v for k, v in list(kwargs.items()) if k != 'capacity'} - # pass 3 as the capacity argument - super(EagerFlusher, self).__init__(3, *args, **kwargs) - class EagerFlushingCollapser( - cbioportal_common.CollapsingLogMessageHandler, - EagerFlusher): - """CollapsingLogMessageHandler with EagerFlusher overrides.""" - pass - self.original_collapser = cbioportal_common.CollapsingLogMessageHandler - cbioportal_common.CollapsingLogMessageHandler = EagerFlusher - - def tearDown(self): - """Restore the unmodified collapsing log message handler.""" - cbioportal_common.CollapsingLogMessageHandler = self.original_collapser - - def test_leaves_stdout_uncluttered_if_validation_produces_errors(self): - """Test flushing the collapsing logger halfway through a study. - - This should not spill the validation messages to stdout as it previously - did, even crashing with a KeyError sometimes because non-validator - log messages got flushed into the collapsing logic. - """ - output_stream = StringIO() - with redirect_stdout(output_stream): - args = validateStudies.interface([ - '--root-directory', 'test_data', - '--list-of-studies', 'study_various_issues/', - '--portal_info_dir', PORTAL_INFO_DIR]) - validateStudies.main(args) - self.assertNotIn( - 'ERROR', - output_stream.getvalue(), - 'The validation errors should not be printed to the console.') - - -if __name__ == '__main__': - unittest.main(buffer=True) diff --git a/core/src/test/scripts/test_data/api_json_system_tests/cancer-types.json b/core/src/test/scripts/test_data/api_json_system_tests/cancer-types.json deleted file mode 100644 index 8206d90a2a9..00000000000 --- a/core/src/test/scripts/test_data/api_json_system_tests/cancer-types.json +++ /dev/null @@ -1,2 +0,0 @@ -[{"cancerTypeId":"brca-es0","name":"Breast Invasive Carcinoma","color":"HotPink"}, -{"cancerTypeId":"mychs","name":"MyxocancerTypeId Chondrosarcoma","color":"White"},{"cancerTypeId":"unec","name":"Uterine Neuroendocrine Carcinoma","color":"PeachPuff"},{"cancerTypeId":"tcca","name":"Choriocarcinoma","color":"Red"},{"cancerTypeId":"ptpr","name":"Papillary Tumor of the Pineal Region","color":"Gray"},{"cancerTypeId":"biliary_tract","name":"Biliary Tract","color":"Green"},{"cancerTypeId":"ustad","name":"Undifferentiated Stomach Adenocarcinoma","color":"LightSkyBlue"},{"cancerTypeId":"uccc","name":"Uterine Clear Cell Carcinoma","color":"PeachPuff"},{"cancerTypeId":"breast","name":"Breast","color":"HotPink"},{"cancerTypeId":"ucca","name":"Choriocarcinoma","color":"PeachPuff"},{"cancerTypeId":"ansc","name":"Anal Squamous Cell Carcinoma","color":"SaddleBrown"},{"cancerTypeId":"hccihch","name":"Hepatocellular Carcinoma plus Intrahepatic Cholangiocarcinoma","color":"MediumSeaGreen"},{"cancerTypeId":"sbmov","name":"Serous Borderline Ovarian Tumor, Micropapillary","color":"LightBlue"},{"cancerTypeId":"lihb","name":"Hepatoblastoma","color":"MediumSeaGreen"},{"cancerTypeId":"acrm","name":"Acral Melanoma","color":"Black"},{"cancerTypeId":"blad","name":"Bladder Adenocarcinoma","color":"Yellow"},{"cancerTypeId":"ogct","name":"Ovarian Germ Cell Tumor","color":"LightBlue"},{"cancerTypeId":"istad","name":"Intestinal Type Stomach Adenocarcinoma","color":"LightSkyBlue"},{"cancerTypeId":"gist","name":"Gastrointestinal Stromal Tumor","color":"LightYellow"},{"cancerTypeId":"df","name":"Dermatofibroma","color":"Black"},{"cancerTypeId":"ilc","name":"Breast Invasive Lobular Carcinoma","color":"HotPink"},{"cancerTypeId":"dlbcl","name":"Diffuse Large B-Cell Lymphoma","color":"LimeGreen"},{"cancerTypeId":"poro","name":"Poroma/Acrospiroma","color":"Black"},{"cancerTypeId":"umec","name":"Uterine Mixed Endometrial Carcinoma","color":"PeachPuff"},{"cancerTypeId":"gctb","name":"Giant Cell Tumor of Bone","color":"White"},{"cancerTypeId":"stsc","name":"Small Cell Carcinoma of the Stomach","color":"LightSkyBlue"},{"cancerTypeId":"mrls","name":"MyxocancerTypeId/Round-Cell Liposarcoma","color":"LightYellow"},{"cancerTypeId":"gej","name":"Adenocarcinoma of the Gastroesophageal Junction","color":"LightSkyBlue"},{"cancerTypeId":"imt","name":"Inflammatory Myofibroblastic Tumor","color":"LightYellow"},{"cancerTypeId":"ebov","name":"EndometriocancerTypeId Borderlin Ovarian Tumor","color":"LightBlue"},{"cancerTypeId":"nsgct","name":"Non-Seminomatous Germ Cell Tumor","color":"Red"},{"cancerTypeId":"es","name":"Ewing Sarcoma","color":"White"},{"cancerTypeId":"uterine sarcoma","name":"Uterine Sarcoma","color":"PeachPuff"},{"cancerTypeId":"thyc","name":"Thymic Carcinoma","color":"Purple"},{"cancerTypeId":"osos","name":"Osteoblastic Osteosarcoma","color":"White"},{"cancerTypeId":"gb","name":"Glioblastoma","color":"Gray"},{"cancerTypeId":"mlym","name":"Malignant Lymphoma","color":"Gray"},{"cancerTypeId":"oec","name":"Embryonal Carcinoma","color":"LightBlue"},{"cancerTypeId":"leukemia","name":"Leukemia","color":"LightSalmon"},{"cancerTypeId":"acpg","name":"Craniopharyngioma, Adamantinomatous Type","color":"Gray"},{"cancerTypeId":"occa","name":"Choriocarcinoma","color":"LightBlue"},{"cancerTypeId":"gsarc","name":"Gliosarcoma","color":"Gray"},{"cancerTypeId":"cevg","name":"Villoglandular Carcinoma","color":"Teal"},{"cancerTypeId":"fl","name":"Follicular Lymphoma","color":"LimeGreen"},{"cancerTypeId":"hgnet","name":"High-grade Neuroepithelial Tumor","color":"Gray"},{"cancerTypeId":"tnkl","name":"T-Cell and Natural Killer Lymphoma","color":"LimeGreen"},{"cancerTypeId":"sccnos","name":"Squamous Cell Carcinoma, NOS","color":"Black"},{"cancerTypeId":"cup","name":"Cancer of Unknown Primary","color":"Black"},{"cancerTypeId":"ousarc","name":"Uterine Sarcoma, Other","color":"PeachPuff"},{"cancerTypeId":"phc","name":"Pheochromocytoma","color":"Purple"},{"cancerTypeId":"prscc","name":"Prostate Small Cell Carcinoma","color":"Cyan"},{"cancerTypeId":"acpp","name":"Atypical ChorocancerTypeId Plexus Papilloma","color":"Gray"},{"cancerTypeId":"atm","name":"Atypical Meningioma","color":"Gray"},{"cancerTypeId":"hgnec","name":"High Grade Neuroendocrine Carcinoma of the Colon and Rectum","color":"SaddleBrown"},{"cancerTypeId":"odg","name":"Oligodendroglioma","color":"Gray"},{"cancerTypeId":"ogbl","name":"Gonadoblastoma","color":"LightBlue"},{"cancerTypeId":"phm","name":"Partial HydatcancerTypeIdiform Mole","color":"PeachPuff"},{"cancerTypeId":"mbov","name":"Mucinous Borderline Ovarian Tumor","color":"LightBlue"},{"cancerTypeId":"sbov","name":"Serous Borderline Ovarian Tumor","color":"LightBlue"},{"cancerTypeId":"paac","name":"Acinar Cell Carcinoma of the Pancreas","color":"Purple"},{"cancerTypeId":"paad","name":"Pancreatic Adenocarcinoma","color":"Purple"},{"cancerTypeId":"pcgp","name":"Craniopharyngioma, Papillary Type","color":"Gray"},{"cancerTypeId":"pecoma","name":"Perivascular EpitheliocancerTypeId Cell Tumor","color":"LightYellow"},{"cancerTypeId":"myf","name":"Myelofibrosis/Osteomyelofibrosis","color":"LightSalmon"},{"cancerTypeId":"peos","name":"Periosteal Osteosarcoma","color":"White"},{"cancerTypeId":"cervix","name":"Cervix","color":"Teal"},{"cancerTypeId":"ovary","name":"Ovary","color":"LightBlue"},{"cancerTypeId":"ihm","name":"Invasive HydatcancerTypeIdiform Mole","color":"PeachPuff"},{"cancerTypeId":"glioma","name":"Glioma","color":"Gray"},{"cancerTypeId":"pptcancerTypeId","name":"Pineal Parenchymal Tumor of Intermediate Differentiation","color":"Gray"},{"cancerTypeId":"mixed","name":"Mixed Cancer Types","color":"Black"},{"cancerTypeId":"clnc","name":"Cerebellar Liponeurocytoma","color":"Gray"},{"cancerTypeId":"ampulla_of_vater","name":"Ampulla of Vater","color":"Purple"},{"cancerTypeId":"upecoma","name":"Uterine Perivascular EpitheliocancerTypeId Cell Tumor","color":"PeachPuff"},{"cancerTypeId":"mzl","name":"Marginal Zone Lymphoma","color":"LimeGreen"},{"cancerTypeId":"ucec","name":"Endometrial Carcinoma","color":"PeachPuff"},{"cancerTypeId":"pma","name":"PilomyxocancerTypeId Astrocytoma","color":"Gray"},{"cancerTypeId":"thym","name":"Thymoma","color":"Purple"},{"cancerTypeId":"rms","name":"Rhabdomyosarcoma","color":"LightYellow"},{"cancerTypeId":"icemu","name":"Intestinal Type Mucinous Carcinoma","color":"Teal"},{"cancerTypeId":"fios","name":"Fibroblastic Osteosarcoma","color":"White"},{"cancerTypeId":"liver","name":"Liver","color":"MediumSeaGreen"},{"cancerTypeId":"aluca","name":"Atypical Lung CarcinocancerTypeId","color":"Gainsboro"},{"cancerTypeId":"dstad","name":"Diffuse Type Stomach Adenocarcinoma","color":"LightSkyBlue"},{"cancerTypeId":"uscc","name":"Urethral Squamous Cell Carcinoma","color":"Yellow"},{"cancerTypeId":"lcis","name":"Breast Lobular Carcinoma In Situ","color":"HotPink"},{"cancerTypeId":"omgct","name":"Mixed Germ Cell Tumor","color":"LightBlue"},{"cancerTypeId":"ccbov","name":"Clear Cell Borderline Ovarian Tumor","color":"LightBlue"},{"cancerTypeId":"nerve sheath tumor","name":"Nerve Sheath Tumor","color":"Gray"},{"cancerTypeId":"adpa","name":"Aggressive Digital Papillary Adenocarcinoma","color":"Black"},{"cancerTypeId":"bl","name":"Burkitt Lymphoma","color":"LimeGreen"},{"cancerTypeId":"amol","name":"Acute Monocytic Leukemia","color":"LightSalmon"},{"cancerTypeId":"snsc","name":"Sinonasal Squamous Cell Carcinoma","color":"DarkRed"},{"cancerTypeId":"panet","name":"Pancreatic Neuroendocrine Tumor","color":"Purple"},{"cancerTypeId":"apad","name":"Appendiceal Adenocarcinoma","color":"SaddleBrown"},{"cancerTypeId":"spir","name":"Spiroma/Spiradenoma","color":"Black"},{"cancerTypeId":"selt","name":"Sellar Tumor","color":"Gray"},{"cancerTypeId":"masc","name":"Metaplastic Adenosquamous Carcinoma","color":"HotPink"},{"cancerTypeId":"vcca","name":"Choriocarcinoma","color":"Purple"},{"cancerTypeId":"ddchs","name":"Dedifferentiated Chondrosarcoma","color":"White"},{"cancerTypeId":"cesc","name":"Cervical Squamous Cell Carcinoma","color":"Teal"},{"cancerTypeId":"brca","name":"Invasive Breast Carcinoma","color":"HotPink"},{"cancerTypeId":"aastr","name":"Anaplastic Astrocytoma","color":"Gray"},{"cancerTypeId":"cese","name":"Cervical Serous Carcinoma","color":"Teal"},{"cancerTypeId":"mgct","name":"Mixed Germ Cell Tumor","color":"Red"},{"cancerTypeId":"myec","name":"Myoepithelial Carcinoma","color":"DarkRed"},{"cancerTypeId":"umlms","name":"Uterine MyxocancerTypeId Leiomyosarcoma","color":"PeachPuff"},{"cancerTypeId":"atrt","name":"Atypical TeratocancerTypeId/RhabdocancerTypeId Tumor","color":"Gray"},{"cancerTypeId":"cm","name":"Conjunctival Melanoma","color":"Green"},{"cancerTypeId":"eye","name":"Eye","color":"Green"},{"cancerTypeId":"peritoneum","name":"Peritoneum","color":"Green"},{"cancerTypeId":"mpnst","name":"Malignant Peripheral Nerve Sheath Tumor","color":"Gray"},{"cancerTypeId":"lclc","name":"Large Cell Lung Carcinoma","color":"Gainsboro"},{"cancerTypeId":"asps","name":"Alveolar Soft Part Sarcoma","color":"LightYellow"},{"cancerTypeId":"cancerTypeIdc","name":"Breast Invasive Ductal Carcinoma","color":"HotPink"},{"cancerTypeId":"mft","name":"Malignant Fibrothecoma","color":"LightBlue"},{"cancerTypeId":"cabc","name":"Cervival AdenocancerTypeId Basal Carcinoma","color":"Teal"},{"cancerTypeId":"mfs","name":"Myxofibrosarcoma","color":"LightYellow"},{"cancerTypeId":"mschw","name":"Melanotic Schwannoma","color":"Gray"},{"cancerTypeId":"slct","name":"Sertoli-Leydig Cell Tumor","color":"LightBlue"},{"cancerTypeId":"nccrcc","name":"Renal Non-Clear Cell Carcinoma","color":"Orange"},{"cancerTypeId":"dcis","name":"Breast Ductal Carcinoma In Situ","color":"HotPink"},{"cancerTypeId":"cscc","name":"Cutaneous Squamous Cell Carcinoma","color":"Black"},{"cancerTypeId":"mfh","name":"Undifferentiated Pleomorphic Sarcoma/Malignant Fibrous Histiocytoma/High Grade Spindle Cell Sarcoma","color":"LightYellow"},{"cancerTypeId":"ovarian cancer","name":"Ovarian Cancer","color":"LightBlue"},{"cancerTypeId":"past","name":"Pilocytic Astrocytoma","color":"Gray"},{"cancerTypeId":"oyst","name":"Yolk Sac Tumor","color":"LightBlue"},{"cancerTypeId":"blsc","name":"Bladder Squamous Cell Carcinoma","color":"Yellow"},{"cancerTypeId":"cacc","name":"Cervival AdenocancerTypeId Cystic Carcinoma","color":"Teal"},{"cancerTypeId":"thap","name":"Anaplastic ThyrocancerTypeId Cancer","color":"Teal"},{"cancerTypeId":"oimt","name":"Immature Teratoma","color":"LightBlue"},{"cancerTypeId":"mm","name":"Multiple Myeloma","color":"LightSalmon"},{"cancerTypeId":"vyst","name":"Yolk Sac Tumor","color":"Purple"},{"cancerTypeId":"mp","name":"Molar Pregnancy","color":"PeachPuff"},{"cancerTypeId":"chbl","name":"Chondroblastoma","color":"White"},{"cancerTypeId":"epis","name":"EpithelocancerTypeId Sarcoma","color":"LightYellow"},{"cancerTypeId":"mt","name":"Malignant Tumor","color":"Gray"},{"cancerTypeId":"prcc","name":"Papillary Renal Cell Carcinoma","color":"Orange"},{"cancerTypeId":"rlclc","name":"Large Cell Lung Carcinoma With RhabdocancerTypeId Phenotype","color":"Gainsboro"},{"cancerTypeId":"pscc","name":"Penile Squamous Cell Carcinoma","color":"Blue"},{"cancerTypeId":"lgfms","name":"Low-Grade FibromyxocancerTypeId Sarcoma","color":"LightYellow"},{"cancerTypeId":"ints","name":"Intimal Sarcoma","color":"LightYellow"},{"cancerTypeId":"cchdm","name":"Conventional Type Chordoma","color":"White"},{"cancerTypeId":"blood","name":"Blood","color":"LightSalmon"},{"cancerTypeId":"plrms","name":"Pleomorphic Rhabdomyosarcoma","color":"LightYellow"},{"cancerTypeId":"mds","name":"Myelodysplasia","color":"LightSalmon"},{"cancerTypeId":"mmbl","name":"Melanotic Medulloblastoma","color":"Gray"},{"cancerTypeId":"nhl","name":"Non-Hodgkin’s Lymphoma","color":"LimeGreen"},{"cancerTypeId":"hgess","name":"High Grade Endometrial Stromal Sarcoma","color":"PeachPuff"},{"cancerTypeId":"thymus","name":"Thymus","color":"Purple"},{"cancerTypeId":"mmbc","name":"Mixed Type Metaplastic Breast Cancer","color":"HotPink"},{"cancerTypeId":"om","name":"Ocular Melanoma","color":"Green"},{"cancerTypeId":"uec","name":"Uterine EndometriocancerTypeId Carcinoma","color":"PeachPuff"},{"cancerTypeId":"cclc","name":"Clear Cell Carcinoma of the Lung","color":"Gainsboro"},{"cancerTypeId":"liad","name":"Hepatocellular Adenoma","color":"MediumSeaGreen"},{"cancerTypeId":"etantr","name":"Embryonal Tumor with Abundant Neuropil and True Rosettes","color":"Gray"},{"cancerTypeId":"egc","name":"Esophagogastric Adenocarcinoma","color":"LightSkyBlue"},{"cancerTypeId":"encg","name":"Encapsulated Glioma","color":"Gray"},{"cancerTypeId":"lias","name":"Liver Angiosarcoma","color":"MediumSeaGreen"},{"cancerTypeId":"sgttl","name":"Salivary Gland–Type Tumor of the Lung","color":"Gainsboro"},{"cancerTypeId":"fibs","name":"Fibrosarcoma","color":"LightYellow"},{"cancerTypeId":"prostate","name":"Prostate","color":"Cyan"},{"cancerTypeId":"ucs","name":"Uterine Carcinosarcoma/Uterine Malignant Mixed Mullerian Tumor","color":"PeachPuff"},{"cancerTypeId":"soft_tissue","name":"Soft Tissue","color":"LightYellow"},{"cancerTypeId":"os","name":"Osteosarcoma","color":"White"},{"cancerTypeId":"armm","name":"Anorectal Mucosal Melanoma","color":"SaddleBrown"},{"cancerTypeId":"vmgct","name":"Mixed Germ Cell Tumor","color":"Purple"},{"cancerTypeId":"arms","name":"Alveolar Rhabdomyosarcoma","color":"LightYellow"},{"cancerTypeId":"empsgc","name":"Endocrine Mucin Producing Sweat Gland Carcinoma","color":"Black"},{"cancerTypeId":"mel","name":"Melanoma","color":"Black"},{"cancerTypeId":"rhm","name":"RhabdocancerTypeId Meningioma","color":"Gray"},{"cancerTypeId":"lusc","name":"Lung Squamous Cell Carcinoma","color":"Gainsboro"},{"cancerTypeId":"prad","name":"Prostate Adenocarcinoma","color":"Cyan"},{"cancerTypeId":"pd","name":"Paget Disease of the Nipple","color":"HotPink"},{"cancerTypeId":"coad","name":"Colon Adenocarcinoma","color":"SaddleBrown"},{"cancerTypeId":"leuk","name":"Leukemia","color":"LightSalmon"},{"cancerTypeId":"btbeov","name":"Brenner Tumor, Benign","color":"LightBlue"},{"cancerTypeId":"pleura","name":"Pleura","color":"Blue"},{"cancerTypeId":"nbl","name":"Neuroblastoma","color":"Gray"},{"cancerTypeId":"lgnet","name":"Low-grade Neuroepithelial Tumor","color":"Gray"},{"cancerTypeId":"imtl","name":"Inflammatory Myofibroblastic Lung Tumor","color":"Gainsboro"},{"cancerTypeId":"cegcc","name":"Glassy Cell Carcinoma of the Cervix","color":"Teal"},{"cancerTypeId":"mbl","name":"Medulloblastoma","color":"Gray"},{"cancerTypeId":"ocs","name":"Ovarian Carcinosarcoma/Malignant Mixed Mesodermal Tumor","color":"LightBlue"},{"cancerTypeId":"hl","name":"Hodgkin's Lymphoma","color":"LimeGreen"},{"cancerTypeId":"mbt","name":"Miscellaneous Brain Tumor","color":"Gray"},{"cancerTypeId":"bgct","name":"Germ Cell Tumor, Brain","color":"Gray"},{"cancerTypeId":"btbov","name":"Brenner Tumor, Borderline","color":"LightBlue"},{"cancerTypeId":"ehae","name":"EpitheliocancerTypeId Hemangioendothelioma","color":"LightYellow"},{"cancerTypeId":"imtb","name":"Inflammatory Myofibroblastic Bladder Tumor","color":"Yellow"},{"cancerTypeId":"des","name":"DesmocancerTypeId/Aggressive Fibromatosis","color":"LightYellow"},{"cancerTypeId":"pbt","name":"Primary Brain Tumor","color":"Gray"},{"cancerTypeId":"mbc","name":"Metaplastic Breast Cancer","color":"HotPink"},{"cancerTypeId":"rcc","name":"Renal Cell Carcinoma","color":"Orange"},{"cancerTypeId":"dsrct","name":"Desmoplastic Small-Round-Cell Tumor","color":"LightYellow"},{"cancerTypeId":"uca","name":"Urethral Cancer","color":"Yellow"},{"cancerTypeId":"mcl","name":"Mantle Cell Lymphoma","color":"LimeGreen"},{"cancerTypeId":"epmt","name":"Ependymomal Tumor","color":"Gray"},{"cancerTypeId":"embc","name":"Epithelial Type Metaplastic Breast Cancer","color":"HotPink"},{"cancerTypeId":"uas","name":"Uterine Adenosarcoma","color":"PeachPuff"},{"cancerTypeId":"pbl","name":"Pineoblastoma","color":"Gray"},{"cancerTypeId":"mcs","name":"Metaplastic Carcinosarcoma","color":"HotPink"},{"cancerTypeId":"ras","name":"Radiation-Associated Sarcoma","color":"LightYellow"},{"cancerTypeId":"seba","name":"Sebaceous Carcinoma","color":"Black"},{"cancerTypeId":"lch","name":"Langerhans Cell Histiocytosis","color":"LightSalmon"},{"cancerTypeId":"embt","name":"Embryonal Tumor","color":"Gray"},{"cancerTypeId":"ecad","name":"Endocervical Adenocarcinoma","color":"Teal"},{"cancerTypeId":"rbl","name":"Retinoblastoma","color":"Green"},{"cancerTypeId":"dmbl","name":"Desmoplastic/Nodular Medulloblastoma","color":"Gray"},{"cancerTypeId":"plls","name":"Pleomorphic Liposarcoma","color":"LightYellow"},{"cancerTypeId":"mcc","name":"Merkel Cell Carcinoma","color":"Black"},{"cancerTypeId":"erms","name":"Embryonal Rhabdomyosarcoma","color":"LightYellow"},{"cancerTypeId":"ofmt","name":"Ossifying FibromyxocancerTypeId Tumor","color":"LightYellow"},{"cancerTypeId":"rea","name":"Renal EpitheliocancerTypeId Angiomyolipoma","color":"Orange"},{"cancerTypeId":"ccm","name":"Clear cell Meningioma","color":"Gray"},{"cancerTypeId":"ehch","name":"Extrahepatic Cholangiocarcinoma","color":"Green"},{"cancerTypeId":"gccap","name":"Goblet Cell CarcinocancerTypeId of the Appendix","color":"SaddleBrown"},{"cancerTypeId":"ldd","name":"Dysplastic Gangliocytoma of the Cerebellum/Lhermitte-Duclos Disease","color":"Gray"},{"cancerTypeId":"gbm","name":"Glioblastoma Multiforme","color":"Gray"},{"cancerTypeId":"ibc","name":"Inflammatory Breast Cancer","color":"HotPink"},{"cancerTypeId":"cce","name":"Clear Cell Ependymoma","color":"Gray"},{"cancerTypeId":"uad","name":"Urethral Adenocarcinoma","color":"Yellow"},{"cancerTypeId":"dcs","name":"Dendritic Cell Sarcoma","color":"LightYellow"},{"cancerTypeId":"gbc","name":"Gallbladder Cancer","color":"Green"},{"cancerTypeId":"scoah","name":"Spindle Cell Oncocytoma of the Adenohypophysis","color":"Gray"},{"cancerTypeId":"ecd","name":"Non-Langerhans Cell Histiocytosis/Erdheim-Chester Disease","color":"LightSalmon"},{"cancerTypeId":"accc","name":"Acinic Cell Carcinoma","color":"DarkRed"},{"cancerTypeId":"sdac","name":"Salivary Duct Adenocarcinoma","color":"DarkRed"},{"cancerTypeId":"ccs","name":"Clear Cell Sarcoma","color":"LightYellow"},{"cancerTypeId":"outt","name":"Other Uterine Tumor","color":"PeachPuff"},{"cancerTypeId":"gestational trophoblastic disease","name":"Gestational Trophoblastic Disease","color":"PeachPuff"},{"cancerTypeId":"thyrocancerTypeId","name":"ThyrocancerTypeId","color":"Teal"},{"cancerTypeId":"scgbm","name":"Small Cell Glioblastoma","color":"Gray"},{"cancerTypeId":"rgnt","name":"Rosette-forming Glioneuronal Tumor of the Fourth Ventricle","color":"Gray"},{"cancerTypeId":"lung","name":"Lung","color":"Gainsboro"},{"cancerTypeId":"gct","name":"Granular Cell Tumor","color":"Gray"},{"cancerTypeId":"lune","name":"Large Cell Neuroendocrine Carcinoma","color":"Gainsboro"},{"cancerTypeId":"hggnos","name":"High-Grade Glioma, NOS","color":"Gray"},{"cancerTypeId":"scrms","name":"Spindle Cell Rhabdomyosarcoma","color":"LightYellow"},{"cancerTypeId":"chdm","name":"Chordoma","color":"White"},{"cancerTypeId":"hcl","name":"Hairy Cell Leukemia","color":"LightSalmon"},{"cancerTypeId":"odgc","name":"Odontogenic Carcinoma","color":"DarkRed"},{"cancerTypeId":"cchm","name":"Carcinoma with ChondrocancerTypeId Metaplasia","color":"HotPink"},{"cancerTypeId":"pcv","name":"Polycythemia Vera","color":"LightSalmon"},{"cancerTypeId":"pct","name":"Porphyria Cutania Tarda","color":"Black"},{"cancerTypeId":"mac","name":"Microcystic Adnexal Carcinoma","color":"Black"},{"cancerTypeId":"mampca","name":"Mixed Ampullary Carcinoma","color":"Purple"},{"cancerTypeId":"hnscup","name":"Head and Neck Squamous Cell Carcinoma of Unknown Primary","color":"DarkRed"},{"cancerTypeId":"hcc","name":"Hepatocellular Carcinoma","color":"MediumSeaGreen"},{"cancerTypeId":"srap","name":"Signet Ring Cell Type of the Appendix","color":"SaddleBrown"},{"cancerTypeId":"stas","name":"Adenosquamous Carcinoma of the Stomach","color":"LightSkyBlue"},{"cancerTypeId":"ppct","name":"Proliferating Pilar Cystic Tumor","color":"Black"},{"cancerTypeId":"vm","name":"Melanoma of the Vulva","color":"Purple"},{"cancerTypeId":"ccsk","name":"Clear Cell Sarcoma of the KcancerTypeIdney","color":"Orange"},{"cancerTypeId":"ovt","name":"Ovarian Epithelial Tumor","color":"LightBlue"},{"cancerTypeId":"ptad","name":"Pituitary Adenoma","color":"Gray"},{"cancerTypeId":"tlym","name":"Testicular Lymphoma","color":"Red"},{"cancerTypeId":"blpt","name":"Borderline Phyllodes Tumor of the Breast","color":"HotPink"},{"cancerTypeId":"stad","name":"Stomach Adenocarcinoma","color":"LightSkyBlue"},{"cancerTypeId":"mov","name":"Mucinous Ovarian Cancer","color":"LightBlue"},{"cancerTypeId":"aeca","name":"Sweat Gland Carcinoma/Apocrine Eccrine Carcinoma","color":"Black"},{"cancerTypeId":"um","name":"Uveal Melanoma","color":"Green"},{"cancerTypeId":"wpscc","name":"Warty Penile Squamous Cell Carcinoma","color":"Blue"},{"cancerTypeId":"ball","name":"B-Cell Acute LymphocancerTypeId Leukemia","color":"LightSalmon"},{"cancerTypeId":"eov","name":"EndometriocancerTypeId Ovarian Cancer","color":"LightBlue"},{"cancerTypeId":"mng","name":"Meningioma","color":"Gray"},{"cancerTypeId":"byst","name":"Yolk Sac Tumor","color":"Gray"},{"cancerTypeId":"bcc","name":"Basal Cell Carcinoma","color":"Black"},{"cancerTypeId":"srcc","name":"SarcomatocancerTypeId Renal Cell Carcinoma","color":"Orange"},{"cancerTypeId":"stomach","name":"Esophagus_Esophagus/Stomach","color":"LightSkyBlue"},{"cancerTypeId":"pxa","name":"Pleomorphic Xanthoastrocytoma","color":"Gray"},{"cancerTypeId":"vmt","name":"Mature Teratoma","color":"Purple"},{"cancerTypeId":"chgl","name":"ChordocancerTypeId Glioma of the Third Ventricle","color":"Gray"},{"cancerTypeId":"bimt","name":"Immature Teratoma","color":"Gray"},{"cancerTypeId":"aptad","name":"Atypical Pituitary Adenoma","color":"Gray"},{"cancerTypeId":"bcl","name":"B-Cell Lymphoma","color":"LimeGreen"},{"cancerTypeId":"tt","name":"Teratoma","color":"Red"},{"cancerTypeId":"penis","name":"Penis","color":"Blue"},{"cancerTypeId":"btmov","name":"Brenner Tumor, Malignant","color":"LightBlue"},{"cancerTypeId":"ptcl","name":"Peripheral T-Cell Lymphoma","color":"LimeGreen"},{"cancerTypeId":"sbc","name":"Small Bowel Cancer","color":"SaddleBrown"},{"cancerTypeId":"non-small cell lung cancer","name":"Non-Small Cell Lung Cancer","color":"Gainsboro"},{"cancerTypeId":"hnne","name":"Head and Neck Neuroendocrine Carcinoma","color":"DarkRed"},{"cancerTypeId":"sezs","name":"Sezary Syndrome","color":"LimeGreen"},{"cancerTypeId":"skac","name":"Skin Adnexal Carcinoma","color":"Black"},{"cancerTypeId":"ssrcc","name":"Signet Ring Cell Carcinoma of the Stomach","color":"LightSkyBlue"},{"cancerTypeId":"mmb","name":"Medullomyoblastoma","color":"Gray"},{"cancerTypeId":"scbc","name":"Small Cell Bladder Cancer","color":"Yellow"},{"cancerTypeId":"ptca","name":"Pituitary Carcinoma","color":"Gray"},{"cancerTypeId":"acc","name":"Adrenocortical Carcinoma","color":"Purple"},{"cancerTypeId":"ophsc","name":"Oropharynx Squamous Cell Carcinoma","color":"DarkRed"},{"cancerTypeId":"sube","name":"Subependymoma","color":"Gray"},{"cancerTypeId":"ptcy","name":"Pituicytoma","color":"Gray"},{"cancerTypeId":"mcca","name":"Mucinous Colorectal Carcinoma","color":"SaddleBrown"},{"cancerTypeId":"pcnsl","name":"Primary CNS Lymphoma","color":"LimeGreen"},{"cancerTypeId":"alcl","name":"Anaplastic Large Cell Lymphoma","color":"LimeGreen"},{"cancerTypeId":"scco","name":"Small Cell Carcinoma of the Ovary","color":"LightBlue"},{"cancerTypeId":"sccr","name":"Scirrhous Carcinoma of the Colon and Rectum","color":"SaddleBrown"},{"cancerTypeId":"bone","name":"Bone","color":"White"},{"cancerTypeId":"npc","name":"Nasopharyngeal Carcinoma","color":"DarkRed"},{"cancerTypeId":"ocsc","name":"Oral Cavity Squamous Cell Carcinoma","color":"DarkRed"},{"cancerTypeId":"mucm","name":"Mucosal Melanoma","color":"Black"},{"cancerTypeId":"wt","name":"Wilms' Tumor","color":"Orange"},{"cancerTypeId":"ceen","name":"EndometriocancerTypeId Carcinoma","color":"Teal"},{"cancerTypeId":"vimt","name":"Immature Teratoma","color":"Purple"},{"cancerTypeId":"difg","name":"Diffuse Glioma","color":"Gray"},{"cancerTypeId":"read","name":"Rectal Adenocarcinoma","color":"SaddleBrown"},{"cancerTypeId":"mscc","name":"Metaplastic Squamous Cell Carcinoma","color":"HotPink"},{"cancerTypeId":"mcap","name":"Malignant CarcinocancerTypeId of the Appendix","color":"SaddleBrown"},{"cancerTypeId":"oast","name":"Oligoastrocytoma","color":"Gray"},{"cancerTypeId":"tall","name":"T-Cell Acute LymphocancerTypeId Leukemia","color":"LightSalmon"},{"cancerTypeId":"aca","name":"Adrenocortical Adenoma","color":"Purple"},{"cancerTypeId":"pint","name":"Pineal Tumor","color":"Gray"},{"cancerTypeId":"wm","name":"Waldenstrom Macroglobulinemia","color":"LimeGreen"},{"cancerTypeId":"aodg","name":"Anaplastic Oligodendroglioma","color":"Gray"},{"cancerTypeId":"scce","name":"Small Cell Carcinoma of the Cervix","color":"Teal"},{"cancerTypeId":"ccrcc","name":"Renal Clear Cell Carcinoma","color":"Orange"},{"cancerTypeId":"pgnt","name":"Papillary Glioneuronal Tumor","color":"Gray"},{"cancerTypeId":"gcemu","name":"Gastric Type Mucinous Carcinoma","color":"Teal"},{"cancerTypeId":"sgad","name":"Sweat Gland Adenocarcinoma","color":"Black"},{"cancerTypeId":"utuc","name":"Upper Tract Urothelial Carcinoma","color":"Yellow"},{"cancerTypeId":"bec","name":"Embryonal Carcinoma","color":"Gray"},{"cancerTypeId":"pgng","name":"Paraganglioma","color":"Gray"},{"cancerTypeId":"mdep","name":"Medulloepithelioma","color":"Gray"},{"cancerTypeId":"pinc","name":"Pineocytoma","color":"Gray"},{"cancerTypeId":"mucc","name":"MucoepcancerTypeIdermocancerTypeId Carcinoma","color":"DarkRed"},{"cancerTypeId":"secos","name":"Secondary Osteosarcoma","color":"White"},{"cancerTypeId":"btov","name":"Brenner Tumor","color":"LightBlue"},{"cancerTypeId":"vdys","name":"Dysgerminoma","color":"Purple"},{"cancerTypeId":"vgce","name":"Villoglandular Adenocarcinoma of the Cervix","color":"Teal"},{"cancerTypeId":"thfo","name":"Follicular ThyrocancerTypeId Cancer","color":"Teal"},{"cancerTypeId":"hphsc","name":"Hypopharynx Squamous Cell Carcinoma","color":"DarkRed"},{"cancerTypeId":"bpscc","name":"BasalocancerTypeId Penile Squamous Cell Carcinoma","color":"Blue"},{"cancerTypeId":"ccoc","name":"Clear Cell Odontogenic Carcinoma","color":"DarkRed"},{"cancerTypeId":"tyst","name":"Yolk Sac Tumor","color":"Red"},{"cancerTypeId":"vpe","name":"Polyembryona","color":"Purple"},{"cancerTypeId":"hema","name":"Hemangioma","color":"LightYellow"},{"cancerTypeId":"mben","name":"Medulloblastoma with Extensive Nodularity","color":"Gray"},{"cancerTypeId":"hpccns","name":"Hemangiopericytoma of the Central Nervous System","color":"Gray"},{"cancerTypeId":"immc","name":"Breast Invasive Mixed Mucinous Carcinoma","color":"HotPink"},{"cancerTypeId":"mascc","name":"Metaplastic Adenocarcinoma with Spindle Cell Differentiation","color":"HotPink"},{"cancerTypeId":"mngt","name":"Meningothelial Tumor","color":"Gray"},{"cancerTypeId":"osmad","name":"Ovarian Seromucinous Adenoma","color":"LightBlue"},{"cancerTypeId":"ulm","name":"Uterine Leiomyoma","color":"PeachPuff"},{"cancerTypeId":"non-hodgkin’s lymphoma","name":"Non-Hodgkin’s Lymphoma","color":"LimeGreen"},{"cancerTypeId":"hnsc","name":"Head and Neck Squamous Cell Carcinoma","color":"DarkRed"},{"cancerTypeId":"cecc","name":"Cervical Clear Cell Carcinoma","color":"Teal"},{"cancerTypeId":"osmbt","name":"Ovarian Seromucinous Borderline Tumor","color":"LightBlue"},{"cancerTypeId":"umc","name":"Uterine Mucinous Carcinoma","color":"PeachPuff"},{"cancerTypeId":"sem","name":"Seminoma","color":"Red"},{"cancerTypeId":"rocy","name":"Renal Oncocytoma","color":"Orange"},{"cancerTypeId":"astb","name":"Astroblastoma","color":"Gray"},{"cancerTypeId":"pt","name":"Phyllodes Tumor of the Breast","color":"HotPink"},{"cancerTypeId":"vgct","name":"Germ Cell Tumor of the Vulva","color":"Purple"},{"cancerTypeId":"vulva","name":"Vulva","color":"Purple"},{"cancerTypeId":"pampca","name":"Pancreatobiliary Ampullary Carcinoma","color":"Purple"},{"cancerTypeId":"lgsoc","name":"Low Grade Serous Ovarian Cancer","color":"LightBlue"},{"cancerTypeId":"ambl","name":"Large Cell/Anaplastic Medulloblastoma","color":"Gray"},{"cancerTypeId":"astr","name":"Astrocytoma","color":"Gray"},{"cancerTypeId":"angs","name":"Angiosarcoma","color":"LightYellow"},{"cancerTypeId":"lms","name":"Leiomyosarcoma","color":"LightYellow"},{"cancerTypeId":"tstad","name":"Tubular Stomach Adenocarcinoma","color":"LightSkyBlue"},{"cancerTypeId":"head_neck","name":"Head and Neck","color":"DarkRed"},{"cancerTypeId":"uterus","name":"Uterus","color":"PeachPuff"},{"cancerTypeId":"angl","name":"Angiocentric Glioma","color":"Gray"},{"cancerTypeId":"mnet","name":"Miscellaneous Neuroepithelial Tumor","color":"Gray"},{"cancerTypeId":"spdac","name":"Poorly Differentiated Carcinoma of the Stomach","color":"LightSkyBlue"},{"cancerTypeId":"thhc","name":"Hurthle Cell ThyrocancerTypeId Cancer","color":"Teal"},{"cancerTypeId":"cerms","name":"Cervical Rhabdomyosarcoma","color":"Teal"},{"cancerTypeId":"iampca","name":"Intestinal Ampullary Carcinoma","color":"Purple"},{"cancerTypeId":"sklmm","name":"Lentigo Maligna Melanoma","color":"Black"},{"cancerTypeId":"mbcl","name":"Mediastinal Large B-Cell Lymphoma","color":"LimeGreen"},{"cancerTypeId":"bowel","name":"Bowel","color":"SaddleBrown"},{"cancerTypeId":"chm","name":"Complete HydatcancerTypeIdiform Mole","color":"PeachPuff"},{"cancerTypeId":"dia","name":"Desmoplastic Infantile Astrocytoma","color":"Gray"},{"cancerTypeId":"uasc","name":"Uterine Adenosquamous Carcinoma","color":"PeachPuff"},{"cancerTypeId":"unk","name":"Unknown","color":"Black"},{"cancerTypeId":"tet","name":"Thymic Epithelial Tumor","color":"Purple"},{"cancerTypeId":"chs","name":"Chondrosarcoma","color":"White"},{"cancerTypeId":"cead","name":"Cervical Adenocarcinoma","color":"Teal"},{"cancerTypeId":"dig","name":"Desmoplastic Infantile Ganglioglioma","color":"Gray"},{"cancerTypeId":"afx","name":"Atypical Fibroxanthoma","color":"Black"},{"cancerTypeId":"agng","name":"Anaplastic Ganglioglioma","color":"Gray"},{"cancerTypeId":"maap","name":"Mucinous Adenocarcinoma of the Appendix","color":"SaddleBrown"},{"cancerTypeId":"myxo","name":"Myxoma","color":"LightYellow"},{"cancerTypeId":"paos","name":"Parosteal Osteosarcoma","color":"White"},{"cancerTypeId":"ginet","name":"Gastrointestinal Neuroendocrine Tumors","color":"SaddleBrown"},{"cancerTypeId":"blclc","name":"BasalocancerTypeId Large Cell Carcinoma of the Lung","color":"Gainsboro"},{"cancerTypeId":"ceas","name":"Cervical Adenosquamous Carcinoma","color":"Teal"},{"cancerTypeId":"sft","name":"Solitary Fibrous Tumor/Hemangiopericytoma","color":"LightYellow"},{"cancerTypeId":"pnet","name":"Primitive Neuroectodermal Tumor","color":"Gray"},{"cancerTypeId":"pemeso","name":"Peritoneal Mesothelioma","color":"Green"},{"cancerTypeId":"bpdcn","name":"Blastic PlasmacytocancerTypeId Dendritic Cell Neoplasm","color":"LightSalmon"},{"cancerTypeId":"skcm","name":"Cutaneous Melanoma","color":"Black"},{"cancerTypeId":"usarc","name":"Uterine Sarcoma/Mesenchymal","color":"PeachPuff"},{"cancerTypeId":"skcn","name":"Congenital Nevus","color":"Black"},{"cancerTypeId":"chrcc","name":"Chromophobe Renal Cell Carcinoma","color":"Orange"},{"cancerTypeId":"brsrcc","name":"Breast Carcinoma with Signet Ring","color":"HotPink"},{"cancerTypeId":"ccov","name":"Clear Cell Ovarian Cancer","color":"LightBlue"},{"cancerTypeId":"sarcl","name":"SarcomatocancerTypeId Carcinoma of the Lung","color":"Gainsboro"},{"cancerTypeId":"mtscc","name":"Renal Mucinous Tubular Spindle Cell Carcinoma","color":"Orange"},{"cancerTypeId":"embca","name":"Embryonal Carcinoma","color":"Red"},{"cancerTypeId":"cns","name":"Brain/CNS","color":"Gray"},{"cancerTypeId":"lxsc","name":"Larynx Squamous Cell Carcinoma","color":"DarkRed"},{"cancerTypeId":"bladder","name":"Bladder/Urinary Tract","color":"Yellow"},{"cancerTypeId":"flc","name":"Fibrolamellar Carcinoma","color":"MediumSeaGreen"},{"cancerTypeId":"sclc","name":"Small Cell Lung Cancer","color":"Gainsboro"},{"cancerTypeId":"poca","name":"Porocarcinoma/Spiroadenocarcinoma","color":"Black"},{"cancerTypeId":"ulms","name":"Uterine Leiomyosarcoma","color":"PeachPuff"},{"cancerTypeId":"ihch","name":"Intrahepatic Cholangiocarcinoma","color":"Green"},{"cancerTypeId":"breast carcinoma","name":"Breast Carcinoma","color":"HotPink"},{"cancerTypeId":"uelms","name":"Uterine EpitheliocancerTypeId Leiomyosarcoma","color":"PeachPuff"},{"cancerTypeId":"sftcns","name":"Solitary Fibrous Tumor of the Central Nervous System","color":"Gray"},{"cancerTypeId":"mchs","name":"Mesenchymal Chondrosarcoma","color":"White"},{"cancerTypeId":"usmt","name":"Uterine Smooth Muscle Tumor","color":"PeachPuff"},{"cancerTypeId":"odys","name":"Dysgerminoma","color":"LightBlue"},{"cancerTypeId":"ddls","name":"Dedifferentiated Liposarcoma","color":"LightYellow"},{"cancerTypeId":"luca","name":"Lung CarcinocancerTypeId","color":"Gainsboro"},{"cancerTypeId":"chos","name":"Chondroblastic Osteosarcoma","color":"White"},{"cancerTypeId":"dte","name":"Desmoplastic Trichoepithelioma","color":"Black"},{"cancerTypeId":"chom","name":"ChordocancerTypeId Meningioma","color":"Gray"},{"cancerTypeId":"com","name":"Carcinoma with Osseous Metaplasia","color":"HotPink"},{"cancerTypeId":"chol","name":"Cholangiocarcinoma","color":"Green"},{"cancerTypeId":"paasc","name":"Adenosquamous Carcinoma of the Pancreas","color":"Purple"},{"cancerTypeId":"cpc","name":"ChorocancerTypeId Plexus Carcinoma","color":"Gray"},{"cancerTypeId":"gng","name":"Ganglioglioma","color":"Gray"},{"cancerTypeId":"pancreas","name":"Pancreas","color":"Purple"},{"cancerTypeId":"esca","name":"Esophageal Adenocarcinoma","color":"LightSkyBlue"},{"cancerTypeId":"pact","name":"Cystic Tumor of the Pancreas","color":"Purple"},{"cancerTypeId":"escc","name":"Esophageal Squamous Cell Carcinoma","color":"LightSkyBlue"},{"cancerTypeId":"dipg","name":"Diffuse Intrinsic Pontine Glioma","color":"Gray"},{"cancerTypeId":"gclc","name":"Giant Cell Carcinoma of the Lung","color":"Gainsboro"},{"cancerTypeId":"osmca","name":"Ovarian Seromucinous Carcinoma","color":"LightBlue"},{"cancerTypeId":"bmgct","name":"Mixed Germ Cell Tumor","color":"Gray"},{"cancerTypeId":"gnc","name":"Gangliocytoma","color":"Gray"},{"cancerTypeId":"aoast","name":"Anaplastic Oligoastrocytoma","color":"Gray"},{"cancerTypeId":"cll","name":"Chronic Lymphocytic Leukemia","color":"LightSalmon"},{"cancerTypeId":"adrenal_gland","name":"Adrenal Gland","color":"Purple"},{"cancerTypeId":"emchs","name":"Extraskeletal MyxocancerTypeId Chondrosarcoma","color":"White"},{"cancerTypeId":"ustump","name":"Uterine Smooth Muscle Tumor of Uncertain Malignant Potential","color":"PeachPuff"},{"cancerTypeId":"testis","name":"Testis","color":"Red"},{"cancerTypeId":"hgsos","name":"High Grade Surface Osteosarcoma","color":"White"},{"cancerTypeId":"onbl","name":"Olfactory Neuroblastoma","color":"Gray"},{"cancerTypeId":"mxov","name":"Mixed Ovarian Carcinoma","color":"LightBlue"},{"cancerTypeId":"gmn","name":"Germinoma","color":"Gray"},{"cancerTypeId":"mup","name":"Melanoma of Unknown Primary","color":"Black"},{"cancerTypeId":"acyc","name":"AdenocancerTypeId Cystic Carcinoma","color":"DarkRed"},{"cancerTypeId":"ett","name":"EpitheliocancerTypeId Trophoblastic Tumor","color":"PeachPuff"},{"cancerTypeId":"ppm","name":"Papillary Meningioma","color":"Gray"},{"cancerTypeId":"srcbc","name":"PlasmacytocancerTypeId/Signet Ring Cell Bladder Carcinoma","color":"Yellow"},{"cancerTypeId":"luacc","name":"AdenocancerTypeId Cystic Carcinoma of the Lung","color":"Gainsboro"},{"cancerTypeId":"hgsoc","name":"High Grade Serous Ovarian Cancer","color":"LightBlue"},{"cancerTypeId":"skin","name":"Skin","color":"Black"},{"cancerTypeId":"scemu","name":"Signet Ring Mucinous Carcinoma","color":"Teal"},{"cancerTypeId":"lggnos","name":"Low-Grade Glioma, NOS","color":"Gray"},{"cancerTypeId":"omt","name":"Mature Teratoma","color":"LightBlue"},{"cancerTypeId":"bmgt","name":"Malignant Teratoma","color":"Gray"},{"cancerTypeId":"cene","name":"Cervical Neuroendocrine Tumor","color":"Teal"},{"cancerTypeId":"lgll","name":"Large Granular Lymphocytic Leukemia","color":"LightSalmon"},{"cancerTypeId":"cervical cancer","name":"Cervical Cancer","color":"Teal"},{"cancerTypeId":"plmeso","name":"Pleural Mesothelioma","color":"Blue"},{"cancerTypeId":"cml","name":"Chronic Myelogenous Leukemia","color":"LightSalmon"},{"cancerTypeId":"bmt","name":"Mature Teratoma","color":"Gray"},{"cancerTypeId":"evn","name":"Extraventricular Neurocytoma","color":"Gray"},{"cancerTypeId":"cschw","name":"Cellular Schwannoma","color":"Gray"},{"cancerTypeId":"cnc","name":"Central Neurocytoma","color":"Gray"},{"cancerTypeId":"usc","name":"Uterine Serous Carcinoma/Uterine Papillary Serous Carcinoma","color":"PeachPuff"},{"cancerTypeId":"cemu","name":"Mucinous Carcinoma","color":"Teal"},{"cancerTypeId":"scst","name":"Sex Cord Stromal Tumors","color":"LightBlue"},{"cancerTypeId":"epdca","name":"Esophageal Poorly Differentiated Carcinoma","color":"LightSkyBlue"},{"cancerTypeId":"pstt","name":"Placental Site Trophoblastic Tumor","color":"PeachPuff"},{"cancerTypeId":"vsc","name":"Squamous Cell Carcinoma of the Vulva","color":"Purple"},{"cancerTypeId":"saca","name":"Salivary Carcinoma","color":"DarkRed"},{"cancerTypeId":"ctaap","name":"Colonic Type Adenocarcinoma of the Appendix","color":"SaddleBrown"},{"cancerTypeId":"cemn","name":"Mesonephric Carcinoma","color":"Teal"},{"cancerTypeId":"lgcos","name":"Low Grade Central Osteosarcoma","color":"White"},{"cancerTypeId":"gtd","name":"Gestational Trophoblastic Disease","color":"PeachPuff"},{"cancerTypeId":"phch","name":"Perihilar Cholangiocarcinoma","color":"Green"},{"cancerTypeId":"lumec","name":"MucoepcancerTypeIdermocancerTypeId Carcinoma of the Lung","color":"Gainsboro"},{"cancerTypeId":"aml","name":"Acute MyelocancerTypeId Leukemia","color":"LightSalmon"},{"cancerTypeId":"grct","name":"Granulosa Cell Tumor","color":"LightBlue"},{"cancerTypeId":"nst","name":"Nerve Sheath Tumor","color":"Gray"},{"cancerTypeId":"sll","name":"Small Lymphocytic Lymphoma","color":"LimeGreen"},{"cancerTypeId":"dnt","name":"Dysembryoplastic Neuroepithelial Tumor","color":"Gray"},{"cancerTypeId":"coadread","name":"Colorectal Adenocarcinoma","color":"SaddleBrown"},{"cancerTypeId":"schw","name":"Schwannoma","color":"Gray"},{"cancerTypeId":"urca","name":"Urachal Carcinoma","color":"Yellow"},{"cancerTypeId":"urcc","name":"Unclassified Renal Cell Carcinoma","color":"Orange"},{"cancerTypeId":"thme","name":"Medullary ThyrocancerTypeId Cancer","color":"Teal"},{"cancerTypeId":"etc","name":"Essential Thrombocythaemia","color":"LightSalmon"},{"cancerTypeId":"mdlc","name":"Breast Mixed Ductal and Lobular Carcinoma","color":"HotPink"},{"cancerTypeId":"tmeso","name":"Testicular Mesothelioma","color":"Red"},{"cancerTypeId":"fdcs","name":"Follicular Dendritic Cell Sarcoma","color":"LightYellow"},{"cancerTypeId":"all","name":"Acute LymphocancerTypeId Leukemia","color":"LightSalmon"},{"cancerTypeId":"ddchdm","name":"Dedifferentiated Chordoma","color":"White"},{"cancerTypeId":"celi","name":"Cervical Leiomyosarcoma","color":"Teal"},{"cancerTypeId":"uus","name":"Undifferentiated Uterine Sarcoma","color":"PeachPuff"},{"cancerTypeId":"ess","name":"Endometrial Stromal Sarcoma","color":"PeachPuff"},{"cancerTypeId":"mchscns","name":"Mesenchymal Chondrosarcoma of the CNS","color":"Gray"},{"cancerTypeId":"hmbl","name":"Hemangioblastoma","color":"Gray"},{"cancerTypeId":"mrt","name":"RhabdocancerTypeId Cancer","color":"Orange"},{"cancerTypeId":"voec","name":"Embryonal Carcinoma","color":"Purple"},{"cancerTypeId":"uuc","name":"Uterine Undifferentiated Carcinoma","color":"PeachPuff"},{"cancerTypeId":"cpp","name":"ChorocancerTypeId Plexus Papilloma","color":"Gray"},{"cancerTypeId":"renal cell carcinoma","name":"Renal Cell Carcinoma","color":"Orange"},{"cancerTypeId":"hist","name":"Histiocytosis","color":"LightSalmon"},{"cancerTypeId":"thpd","name":"Poorly Differentiated ThyrocancerTypeId Cancer","color":"Teal"},{"cancerTypeId":"cpt","name":"ChorocancerTypeId Plexus Tumor","color":"Gray"},{"cancerTypeId":"other","name":"Other","color":"Black"},{"cancerTypeId":"prne","name":"Prostate Neuroendocrine Carcinoma","color":"Cyan"},{"cancerTypeId":"thpa","name":"Papillary ThyrocancerTypeId Cancer","color":"Teal"},{"cancerTypeId":"bpt","name":"Benign Phyllodes Tumor of the Breast","color":"HotPink"},{"cancerTypeId":"mrc","name":"Renal Medullary Carcinoma","color":"Orange"},{"cancerTypeId":"wdls","name":"Well-Differentiated Liposarcoma","color":"LightYellow"},{"cancerTypeId":"grc","name":"Gastric Remnant Adenocarcinoma","color":"LightSkyBlue"},{"cancerTypeId":"cancerTypeIdcs","name":"Interdigitating Dendritic Cell Sarcoma","color":"LightYellow"},{"cancerTypeId":"lymph","name":"Lymph","color":"LimeGreen"},{"cancerTypeId":"ccprc","name":"Clear Cell Papillary Renal Cell Carcinoma","color":"Orange"},{"cancerTypeId":"epm","name":"Ependymoma","color":"Gray"},{"cancerTypeId":"esophagogastric carcinoma","name":"Esophagogastric Carcinoma","color":"LightSkyBlue"},{"cancerTypeId":"ope","name":"Polyembryona","color":"LightBlue"},{"cancerTypeId":"mstad","name":"Mucinous Stomach Adenocarcinoma","color":"LightSkyBlue"},{"cancerTypeId":"ape","name":"Anaplastic Ependymoma","color":"Gray"},{"cancerTypeId":"luad","name":"Lung Adenocarcinoma","color":"Gainsboro"},{"cancerTypeId":"mpt","name":"Malignant Phyllodes Tumor of the Breast","color":"HotPink"},{"cancerTypeId":"leclc","name":"Lymphoepithelioma-like Carcinoma of the Lung","color":"Gainsboro"},{"cancerTypeId":"pstad","name":"Papillary Stomach Adenocarcinoma","color":"LightSkyBlue"},{"cancerTypeId":"soc","name":"Serous Ovarian Cancer","color":"LightBlue"},{"cancerTypeId":"anm","name":"Anaplastic Meningioma","color":"Gray"},{"cancerTypeId":"lgess","name":"Low Grade Endometrial Stromal Sarcoma","color":"PeachPuff"},{"cancerTypeId":"blca","name":"Bladder Urothelial Carcinoma","color":"Yellow"},{"cancerTypeId":"dfsp","name":"Dermatofibrosarcoma Protuberans","color":"LightYellow"},{"cancerTypeId":"prnet","name":"Primary Neuroepithelial Tumor","color":"Gray"},{"cancerTypeId":"brcanos","name":"Breast Invasive Cancer, NOS","color":"HotPink"},{"cancerTypeId":"adnos","name":"Adenocarcinoma, NOS","color":"Black"},{"cancerTypeId":"lipo","name":"Liposarcoma","color":"LightYellow"},{"cancerTypeId":"luas","name":"Lung Adenosquamous Carcinoma","color":"Gainsboro"},{"cancerTypeId":"syns","name":"Synovial Sarcoma","color":"LightYellow"},{"cancerTypeId":"nsclc","name":"Non-Small Cell Lung Cancer","color":"Gainsboro"},{"cancerTypeId":"mpc","name":"Myopericytoma","color":"LightYellow"},{"cancerTypeId":"hdcs","name":"Histiocytic Dendritic Cell Sarcoma","color":"LightYellow"},{"cancerTypeId":"acbc","name":"AdenocancerTypeId Cystic Breast Cancer","color":"HotPink"},{"cancerTypeId":"mpe","name":"Myxopapillary Ependymoma","color":"Gray"},{"cancerTypeId":"kcancerTypeIdney","name":"KcancerTypeIdney","color":"Orange"},{"cancerTypeId":"scos","name":"Small Cell Osteosarcoma","color":"White"},{"cancerTypeId":"vpscc","name":"Verrucous Penile Squamous Cell Carcinoma","color":"Blue"},{"cancerTypeId":"desm","name":"Desmoplastic Melanoma","color":"Black"},{"cancerTypeId":"ampca","name":"Ampullary Carcinoma","color":"Purple"},{"cancerTypeId":"mpn","name":"Myeloproliferative Neoplasm","color":"LightSalmon"},{"cancerTypeId":"teos","name":"Telangiectatic Osteosarcoma","color":"White"},{"cancerTypeId":"bcca","name":"Choriocarcinoma","color":"Gray"},{"cancerTypeId":"nfib","name":"Neurofibroma","color":"Gray"},{"cancerTypeId":"pan_cancer","name":"Pan-Cancer","color":"Red"}] \ No newline at end of file diff --git a/core/src/test/scripts/test_data/api_json_system_tests/gene-panels.json b/core/src/test/scripts/test_data/api_json_system_tests/gene-panels.json deleted file mode 100644 index 37e241daa79..00000000000 --- a/core/src/test/scripts/test_data/api_json_system_tests/gene-panels.json +++ /dev/null @@ -1,4 +0,0 @@ -[ -{"genes":[{"entrezGeneId": 3983,"hugoGeneSymbol":"ABLIM1"},{"entrezGeneId": 80070,"hugoGeneSymbol":"ADAMTS20"},{"entrezGeneId": 460,"hugoGeneSymbol":"ASTN1"},{"entrezGeneId": 80114,"hugoGeneSymbol":"BICC1"},{"entrezGeneId": 253559,"hugoGeneSymbol":"CADM2"},{"entrezGeneId": 51806,"hugoGeneSymbol":"CALML5"},{"entrezGeneId": 56267,"hugoGeneSymbol":"CCBL2"},{"entrezGeneId": 63967,"hugoGeneSymbol":"CLSPN"},{"entrezGeneId": 114784,"hugoGeneSymbol":"CSMD2"},{"entrezGeneId": 9231,"hugoGeneSymbol":"DLG5"},{"entrezGeneId": 1838,"hugoGeneSymbol":"DTNB"},{"entrezGeneId": 339479,"hugoGeneSymbol":"FAM5C"},{"entrezGeneId": 50486,"hugoGeneSymbol":"G0S2"},{"entrezGeneId": 2662,"hugoGeneSymbol":"GDF10"},{"entrezGeneId": 84842,"hugoGeneSymbol":"HPDL"},{"entrezGeneId": 388697,"hugoGeneSymbol":"HRNR"},{"entrezGeneId": 3339,"hugoGeneSymbol":"HSPG2"},{"entrezGeneId": 2648,"hugoGeneSymbol":"KAT2A"},{"entrezGeneId": 3776,"hugoGeneSymbol":"KCNK2"},{"entrezGeneId": 114548,"hugoGeneSymbol":"NLRP3"},{"entrezGeneId": 440348,"hugoGeneSymbol":"NPIPB15"},{"entrezGeneId": 51686,"hugoGeneSymbol":"OAZ3"},{"entrezGeneId": 81061,"hugoGeneSymbol":"OR11H1"},{"entrezGeneId": 56914,"hugoGeneSymbol":"OTOR"},{"entrezGeneId": 27334,"hugoGeneSymbol":"P2RY10"},{"entrezGeneId": 9780,"hugoGeneSymbol":"PIEZO1"},{"entrezGeneId": 343035,"hugoGeneSymbol":"RD3"},{"entrezGeneId": 284654,"hugoGeneSymbol":"RSPO1"},{"entrezGeneId": 64744,"hugoGeneSymbol":"SMAP2"},{"entrezGeneId": 219736,"hugoGeneSymbol":"STOX1"},{"entrezGeneId": 388946,"hugoGeneSymbol":"TMEM247"},{"entrezGeneId": 164118,"hugoGeneSymbol":"TTC24"},{"entrezGeneId": 57216,"hugoGeneSymbol":"VANGL2"},{"entrezGeneId": 79699,"hugoGeneSymbol":"ZYG11B"},{"entrezGeneId": 4437,"hugoGeneSymbol":"MSH3"},{"entrezGeneId": 4602,"hugoGeneSymbol":"MYB"},{"entrezGeneId": 7157,"hugoGeneSymbol":"TP53"},{"entrezGeneId": 672,"hugoGeneSymbol":"BRCA1"},{"entrezGeneId": 472,"hugoGeneSymbol":"ATM"},{"entrezGeneId": 675,"hugoGeneSymbol":"BRCA2"},{"entrezGeneId": 55,"hugoGeneSymbol":"ACPP"}],"genePanelId":"TESTPANEL1"}, -{"genes":[{"entrezGeneId": 3983,"hugoGeneSymbol":"ABLIM1"},{"entrezGeneId": 80070,"hugoGeneSymbol":"ADAMTS20"},{"entrezGeneId": 460,"hugoGeneSymbol":"ASTN1"},{"entrezGeneId": 80114,"hugoGeneSymbol":"BICC1"},{"entrezGeneId": 253559,"hugoGeneSymbol":"CADM2"},{"entrezGeneId": 51806,"hugoGeneSymbol":"CALML5"},{"entrezGeneId": 56267,"hugoGeneSymbol":"CCBL2"},{"entrezGeneId": 63967,"hugoGeneSymbol":"CLSPN"},{"entrezGeneId": 114784,"hugoGeneSymbol":"CSMD2"},{"entrezGeneId": 9231,"hugoGeneSymbol":"DLG5"},{"entrezGeneId": 1838,"hugoGeneSymbol":"DTNB"},{"entrezGeneId": 339479,"hugoGeneSymbol":"FAM5C"},{"entrezGeneId": 50486,"hugoGeneSymbol":"G0S2"},{"entrezGeneId": 2662,"hugoGeneSymbol":"GDF10"},{"entrezGeneId": 84842,"hugoGeneSymbol":"HPDL"},{"entrezGeneId": 388697,"hugoGeneSymbol":"HRNR"},{"entrezGeneId": 3339,"hugoGeneSymbol":"HSPG2"},{"entrezGeneId": 2648,"hugoGeneSymbol":"KAT2A"},{"entrezGeneId": 3776,"hugoGeneSymbol":"KCNK2"},{"entrezGeneId": 114548,"hugoGeneSymbol":"NLRP3"},{"entrezGeneId": 440348,"hugoGeneSymbol":"NPIPB15"},{"entrezGeneId": 51686,"hugoGeneSymbol":"OAZ3"},{"entrezGeneId": 81061,"hugoGeneSymbol":"OR11H1"},{"entrezGeneId": 56914,"hugoGeneSymbol":"OTOR"},{"entrezGeneId": 27334,"hugoGeneSymbol":"P2RY10"},{"entrezGeneId": 9780,"hugoGeneSymbol":"PIEZO1"},{"entrezGeneId": 343035,"hugoGeneSymbol":"RD3"},{"entrezGeneId": 284654,"hugoGeneSymbol":"RSPO1"},{"entrezGeneId": 64744,"hugoGeneSymbol":"SMAP2"},{"entrezGeneId": 219736,"hugoGeneSymbol":"STOX1"},{"entrezGeneId": 388946,"hugoGeneSymbol":"TMEM247"},{"entrezGeneId": 164118,"hugoGeneSymbol":"TTC24"},{"entrezGeneId": 57216,"hugoGeneSymbol":"VANGL2"},{"entrezGeneId": 79699,"hugoGeneSymbol":"ZYG11B"},{"entrezGeneId": 4437,"hugoGeneSymbol":"MSH3"},{"entrezGeneId": 4602,"hugoGeneSymbol":"MYB"},{"entrezGeneId": 7157,"hugoGeneSymbol":"TP53"},{"entrezGeneId": 672,"hugoGeneSymbol":"BRCA1"},{"entrezGeneId": 472,"hugoGeneSymbol":"ATM"},{"entrezGeneId": 675,"hugoGeneSymbol":"BRCA2"},{"entrezGeneId": 55,"hugoGeneSymbol":"ACPP"}],"genePanelId":"TESTPANEL2"} -] \ No newline at end of file diff --git a/core/src/test/scripts/test_data/api_json_system_tests/genes.json b/core/src/test/scripts/test_data/api_json_system_tests/genes.json deleted file mode 100644 index 7373324ebca..00000000000 --- a/core/src/test/scripts/test_data/api_json_system_tests/genes.json +++ /dev/null @@ -1,128 +0,0 @@ -[ -{"_comment": "genes for data_mutations_extended.txt", - "entrezGeneId":3983, "hugoGeneSymbol":"ABLIM1"}, -{"entrezGeneId":619562, "hugoGeneSymbol":"SNORA3"}, -{"entrezGeneId":677823, "hugoGeneSymbol":"SNORA42"}, -{"entrezGeneId":7504, "hugoGeneSymbol":"NA"}, -{"entrezGeneId":80070, "hugoGeneSymbol":"ADAMTS20"}, -{"entrezGeneId":253559, "hugoGeneSymbol":"CADM2"}, -{"entrezGeneId":1838, "hugoGeneSymbol":"DTNB"}, -{"entrezGeneId":2648, "hugoGeneSymbol":"KAT2A"}, -{"entrezGeneId":4437, "hugoGeneSymbol":"MSH3"}, -{"entrezGeneId":4602, "hugoGeneSymbol":"MYB"}, -{"entrezGeneId":440348, "hugoGeneSymbol":"NPIPB15"}, -{"entrezGeneId":81061, "hugoGeneSymbol":"OR11H1"}, -{"entrezGeneId":56914, "hugoGeneSymbol":"OTOR"}, -{"entrezGeneId":27334, "hugoGeneSymbol":"P2RY10"}, -{"entrezGeneId":9780, "hugoGeneSymbol":"PIEZO1"}, -{"entrezGeneId":388946, "hugoGeneSymbol":"TMEM247"}, -{"entrezGeneId":675, "hugoGeneSymbol":"BRCA2"}, -{"entrezGeneId":7157, "hugoGeneSymbol":"TP53"}, -{"entrezGeneId":672, "hugoGeneSymbol":"BRCA1"}, -{"entrezGeneId":472, "hugoGeneSymbol":"ATM"}, -{"entrezGeneId":55, "hugoGeneSymbol":"ACP3"}, - -{"_comment": "additional genes for CNA data", - "entrezGeneId":2073, "hugoGeneSymbol":"ERCC5"}, -{"entrezGeneId":54998, "hugoGeneSymbol":"AURKAIP1"}, -{"entrezGeneId":55210, "hugoGeneSymbol":"ATAD3A"}, -{"entrezGeneId":83858, "hugoGeneSymbol":"ATAD3B"}, -{"entrezGeneId":116983, "hugoGeneSymbol":"ACAP3"}, -{"entrezGeneId":219293, "hugoGeneSymbol":"ATAD3C"}, -{"entrezGeneId":375790, "hugoGeneSymbol":"AGRN"}, - -{"_comment": "genes for gistic data", - "entrezGeneId":26057, "hugoGeneSymbol":"ANKRD17"}, -{"entrezGeneId":311, "hugoGeneSymbol":"ANXA11"}, -{"entrezGeneId":84077, "hugoGeneSymbol":"C3ORF20"}, -{"entrezGeneId":51244, "hugoGeneSymbol":"CCDC174"}, -{"entrezGeneId":285521, "hugoGeneSymbol":"COX18"}, -{"entrezGeneId":23576, "hugoGeneSymbol":"DDAH1"}, -{"entrezGeneId":27121, "hugoGeneSymbol":"DKK4"}, -{"entrezGeneId":2064, "hugoGeneSymbol":"ERBB2"}, -{"entrezGeneId":11160, "hugoGeneSymbol":"ERLIN2"}, -{"entrezGeneId":152273, "hugoGeneSymbol":"FGD5"}, -{"entrezGeneId":3169, "hugoGeneSymbol":"FOXA1"}, -{"entrezGeneId":3480, "hugoGeneSymbol":"IGF1R"}, -{"entrezGeneId":3551, "hugoGeneSymbol":"IKBKB"}, -{"entrezGeneId":439990, "hugoGeneSymbol":"LINC00857"}, -{"entrezGeneId":8512, "hugoGeneSymbol":"MBL1P"}, -{"entrezGeneId":145282, "hugoGeneSymbol":"MIPOL1"}, -{"entrezGeneId":100616432, "hugoGeneSymbol":"MIR4714"}, -{"entrezGeneId":64432, "hugoGeneSymbol":"MRPS25"}, -{"entrezGeneId":4609, "hugoGeneSymbol":"MYC"}, -{"entrezGeneId":7182, "hugoGeneSymbol":"NR2C2"}, -{"entrezGeneId":729262, "hugoGeneSymbol":"NUTM2B"}, -{"entrezGeneId":283008, "hugoGeneSymbol":"NUTM2E"}, -{"entrezGeneId":93210, "hugoGeneSymbol":"PGAP3"}, -{"entrezGeneId":145814, "hugoGeneSymbol":"PGPEP1L"}, -{"entrezGeneId":219348, "hugoGeneSymbol":"PLAC9"}, -{"entrezGeneId":84152, "hugoGeneSymbol":"PPP1R1B"}, -{"entrezGeneId":106479541, "hugoGeneSymbol":"RNU4ATAC9P"}, -{"entrezGeneId":100151688, "hugoGeneSymbol":"RNU6ATAC5P"}, -{"entrezGeneId":653509, "hugoGeneSymbol":"SFTPA1"}, -{"entrezGeneId":6441, "hugoGeneSymbol":"SFTPD"}, -{"entrezGeneId":10948, "hugoGeneSymbol":"STARD3"}, -{"entrezGeneId":8557, "hugoGeneSymbol":"TCAP"}, -{"entrezGeneId":319089, "hugoGeneSymbol":"TTC6"}, -{"entrezGeneId":51174, "hugoGeneSymbol":"TUBD1"}, -{"entrezGeneId":7764, "hugoGeneSymbol":"ZNF217"}, -{"entrezGeneId":80139, "hugoGeneSymbol":"ZNF703"}, -{"entrezGeneId":619562, "hugoGeneSymbol":"SNORA3A"}, -{"entrezGeneId":677823, "hugoGeneSymbol":"SNORA80E"}, -{"entrezGeneId":7504, "hugoGeneSymbol":"XK"}, - -{"_comment": "extra genes for FUSION data", - "entrezGeneId":2261, "hugoGeneSymbol":"FGFR3"}, - -{"_comment": "genes for data_structural_variation.txt", - "entrezGeneId":57670, "hugoGeneSymbol":"KIAA1549"}, -{"entrezGeneId":673, "hugoGeneSymbol":"BRAF"}, -{"entrezGeneId":8031, "hugoGeneSymbol":"NCOA4"}, -{"entrezGeneId":5979, "hugoGeneSymbol":"RET"}, -{"entrezGeneId":27436, "hugoGeneSymbol":"EML4"}, -{"entrezGeneId":238, "hugoGeneSymbol":"ALK"}, -{"entrezGeneId":7113, "hugoGeneSymbol":"TMPRSS2"}, -{"entrezGeneId":2078, "hugoGeneSymbol":"ERG"}, -{"entrezGeneId":1956, "hugoGeneSymbol":"EGFR"}, -{"entrezGeneId":5774, "hugoGeneSymbol":"PTPN3"}, -{"entrezGeneId":2115, "hugoGeneSymbol":"ETV1"}, -{"entrezGeneId":7273, "hugoGeneSymbol":"TTN"}, -{"entrezGeneId":9867, "hugoGeneSymbol":"PJA2"}, -{"entrezGeneId":54810, "hugoGeneSymbol":"GIPC2"}, -{"entrezGeneId":114883, "hugoGeneSymbol":"OSBPL9"}, -{"entrezGeneId":155435, "hugoGeneSymbol":"RBM33"}, -{"entrezGeneId":55755, "hugoGeneSymbol":"CDK5RAP2"}, -{"entrezGeneId":23513, "hugoGeneSymbol":"SCRIB"}, -{"entrezGeneId":5577, "hugoGeneSymbol":"PRKAR2B"}, -{"entrezGeneId":5575, "hugoGeneSymbol":"PRKAR1B"}, -{"entrezGeneId":57157, "hugoGeneSymbol":"PHTF2"}, -{"entrezGeneId":7756, "hugoGeneSymbol":"ZNF207"}, -{"entrezGeneId":11011, "hugoGeneSymbol":"TLK2"}, -{"entrezGeneId":64759, "hugoGeneSymbol":"TNS3"}, -{"entrezGeneId":9709, "hugoGeneSymbol":"HERPUD1"}, -{"entrezGeneId":55750, "hugoGeneSymbol":"AGK"}, -{"entrezGeneId":9715, "hugoGeneSymbol":"FAM131B"}, -{"entrezGeneId":116988, "hugoGeneSymbol":"AGAP3"}, -{"entrezGeneId":8454, "hugoGeneSymbol":"CUL1"}, -{"entrezGeneId":27044, "hugoGeneSymbol":"SND1"}, -{"entrezGeneId":23608, "hugoGeneSymbol":"MKRN1"}, - -{"_comment": "genes for mrna data data_expression_median", - "entrezGeneId":90993, "hugoGeneSymbol":"CREB3L1"}, -{"entrezGeneId":9240, "hugoGeneSymbol":"PNMA1"}, -{"entrezGeneId":6205, "hugoGeneSymbol":"RPS11"}, -{"entrezGeneId":4313, "hugoGeneSymbol":"MMP2"}, -{"entrezGeneId":23051, "hugoGeneSymbol":"ZHX3"}, - -{"_comment": "genes for data_methylation_hm27.txt", - "entrezGeneId":389, "hugoGeneSymbol":"RHOC"}, -{"entrezGeneId":487, "hugoGeneSymbol":"ATP2A1"}, -{"entrezGeneId":3232, "hugoGeneSymbol":"HOXD3"}, -{"entrezGeneId":3613, "hugoGeneSymbol":"IMPA2"}, -{"entrezGeneId":7871, "hugoGeneSymbol":"SLMAP"}, -{"entrezGeneId":8148, "hugoGeneSymbol":"TAF15"}, -{"entrezGeneId":24145, "hugoGeneSymbol":"PANX1"}, -{"entrezGeneId":283234, "hugoGeneSymbol":"CCDC88B"} - -] diff --git a/core/src/test/scripts/test_data/api_json_system_tests/genesaliases.json b/core/src/test/scripts/test_data/api_json_system_tests/genesaliases.json deleted file mode 100644 index 39a9f0ed148..00000000000 --- a/core/src/test/scripts/test_data/api_json_system_tests/genesaliases.json +++ /dev/null @@ -1,6 +0,0 @@ -[ -{"_comment": "aliases for gistic data", - "entrezGeneId":"619562", "alias":"SNORA3"}, -{"entrezGeneId":"677823", "alias":"SNORA42"}, -{"entrezGeneId":"7504", "alias":"NA"} -] \ No newline at end of file diff --git a/core/src/test/scripts/test_data/api_json_system_tests/genesets.json b/core/src/test/scripts/test_data/api_json_system_tests/genesets.json deleted file mode 100644 index 1f99eccd9df..00000000000 --- a/core/src/test/scripts/test_data/api_json_system_tests/genesets.json +++ /dev/null @@ -1,101 +0,0 @@ -[ -{"_comment": "genesets for data_genesets.txt", - "genesetId":"GO_ACYLGLYCEROL_HOMEOSTASIS"}, -{"genesetId":"GO_ANATOMICAL_STRUCTURE_FORMATION_INVOLVED_IN_MORPHOGENESIS"}, -{"genesetId":"GO_ANTEROGRADE_AXONAL_TRANSPORT"}, -{"genesetId":"GO_APICAL_PROTEIN_LOCALIZATION"}, -{"genesetId":"GO_ATP_DEPENDENT_CHROMATIN_REMODELING"}, -{"genesetId":"GO_CARBOHYDRATE_CATABOLIC_PROCESS"}, -{"genesetId":"GO_CARDIAC_CHAMBER_DEVELOPMENT"}, -{"genesetId":"GO_CARDIAC_MUSCLE_ADAPTATION"}, -{"genesetId":"GO_CELLULAR_RESPONSE_TO_LIPOPROTEIN_PARTICLE_STIMULUS"}, -{"genesetId":"GO_CERAMIDE_CATABOLIC_PROCESS"}, -{"genesetId":"GO_CEREBRAL_CORTEX_RADIAL_GLIA_GUIDED_MIGRATION"}, -{"genesetId":"GO_CHROMOSOME_ORGANIZATION"}, -{"genesetId":"GO_CHROMOSOME_SEGREGATION"}, -{"genesetId":"GO_CIRCADIAN_RHYTHM"}, -{"genesetId":"GO_CYTOKINE_METABOLIC_PROCESS"}, -{"genesetId":"GO_CYTOPLASMIC_TRANSLATION"}, -{"genesetId":"GO_DENDRITE_DEVELOPMENT"}, -{"genesetId":"GO_DENTATE_GYRUS_DEVELOPMENT"}, -{"genesetId":"GO_DETECTION_OF_LIGHT_STIMULUS_INVOLVED_IN_VISUAL_PERCEPTION"}, -{"genesetId":"GO_DIGESTION"}, -{"genesetId":"GO_DNA_DEPENDENT_DNA_REPLICATION_MAINTENANCE_OF_FIDELITY"}, -{"genesetId":"GO_ENDOTHELIAL_CELL_DEVELOPMENT"}, -{"genesetId":"GO_ESTABLISHMENT_OF_SPINDLE_ORIENTATION"}, -{"genesetId":"GO_ESTABLISHMENT_OR_MAINTENANCE_OF_TRANSMEMBRANE_ELECTROCHEMICAL_GRADIENT"}, -{"genesetId":"GO_ETHER_METABOLIC_PROCESS"}, -{"genesetId":"GO_EXCRETION"}, -{"genesetId":"GO_FOREBRAIN_NEURON_DEVELOPMENT"}, -{"genesetId":"GO_G_PROTEIN_COUPLED_RECEPTOR_INTERNALIZATION"}, -{"genesetId":"GO_GLUCURONATE_METABOLIC_PROCESS"}, -{"genesetId":"GO_GLYCERALDEHYDE_3_PHOSPHATE_METABOLIC_PROCESS"}, -{"genesetId":"GO_HEMATOPOIETIC_PROGENITOR_CELL_DIFFERENTIATION"}, -{"genesetId":"GO_HEMOGLOBIN_METABOLIC_PROCESS"}, -{"genesetId":"GO_HINDBRAIN_DEVELOPMENT"}, -{"genesetId":"GO_ION_TRANSPORT"}, -{"genesetId":"GO_L_PHENYLALANINE_METABOLIC_PROCESS"}, -{"genesetId":"GO_LABYRINTHINE_LAYER_DEVELOPMENT"}, -{"genesetId":"GO_LACTATE_TRANSPORT"}, -{"genesetId":"GO_LEUKOCYTE_ACTIVATION"}, -{"genesetId":"GO_LIPID_MODIFICATION"}, -{"genesetId":"GO_MEIOTIC_CHROMOSOME_SEGREGATION"}, -{"genesetId":"GO_MEMORY"}, -{"genesetId":"GO_METANEPHRIC_NEPHRON_MORPHOGENESIS"}, -{"genesetId":"GO_MITOTIC_CYTOKINESIS"}, -{"genesetId":"GO_MODULATION_OF_GROWTH_OF_SYMBIONT_INVOLVED_IN_INTERACTION_WITH_HOST"}, -{"genesetId":"GO_MOVEMENT_IN_ENVIRONMENT_OF_OTHER_ORGANISM_INVOLVED_IN_SYMBIOTIC_INTERACTION"}, -{"genesetId":"GO_MULTICELLULAR_ORGANISM_AGING"}, -{"genesetId":"GO_N_TERMINAL_PROTEIN_AMINO_ACID_ACETYLATION"}, -{"genesetId":"GO_NEGATIVE_REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY"}, -{"genesetId":"GO_NEGATIVE_REGULATION_OF_DENDRITIC_SPINE_DEVELOPMENT"}, -{"genesetId":"GO_NEGATIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION"}, -{"genesetId":"GO_NEGATIVE_REGULATION_OF_ERK1_AND_ERK2_CASCADE"}, -{"genesetId":"GO_NEGATIVE_REGULATION_OF_KIDNEY_DEVELOPMENT"}, -{"genesetId":"GO_NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY"}, -{"genesetId":"GO_NEGATIVE_REGULATION_OF_PHOSPHOPROTEIN_PHOSPHATASE_ACTIVITY"}, -{"genesetId":"GO_NEGATIVE_REGULATION_OF_PROTEIN_COMPLEX_ASSEMBLY"}, -{"genesetId":"GO_NEGATIVE_REGULATION_OF_RESPONSE_TO_ENDOPLASMIC_RETICULUM_STRESS"}, -{"genesetId":"GO_NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_IMPORT_INTO_NUCLEUS"}, -{"genesetId":"GO_NEUROLOGICAL_SYSTEM_PROCESS"}, -{"genesetId":"GO_NEUROMUSCULAR_JUNCTION_DEVELOPMENT"}, -{"genesetId":"GO_NEURON_DEVELOPMENT"}, -{"genesetId":"GO_NEURONAL_STEM_CELL_DIVISION"}, -{"genesetId":"GO_OLIGOSACCHARIDE_METABOLIC_PROCESS"}, -{"genesetId":"GO_PHENOL_CONTAINING_COMPOUND_METABOLIC_PROCESS"}, -{"genesetId":"GO_PHOSPHATIDYLSERINE_ACYL_CHAIN_REMODELING"}, -{"genesetId":"GO_PLATELET_DERIVED_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY"}, -{"genesetId":"GO_POSITIVE_REGULATION_OF_CALCIUM_ION_TRANSPORT"}, -{"genesetId":"GO_POSITIVE_REGULATION_OF_EPITHELIAL_CELL_DIFFERENTIATION"}, -{"genesetId":"GO_POSITIVE_REGULATION_OF_KINASE_ACTIVITY"}, -{"genesetId":"GO_POSITIVE_REGULATION_OF_MITOTIC_NUCLEAR_DIVISION"}, -{"genesetId":"GO_POSITIVE_REGULATION_OF_MYOTUBE_DIFFERENTIATION"}, -{"genesetId":"GO_POSITIVE_REGULATION_OF_PROTEIN_MATURATION"}, -{"genesetId":"GO_POSITIVE_REGULATION_OF_SYNAPTIC_TRANSMISSION_GLUTAMATERGIC"}, -{"genesetId":"GO_POSITIVE_REGULATION_OF_VIRAL_TRANSCRIPTION"}, -{"genesetId":"GO_POTASSIUM_ION_TRANSPORT"}, -{"genesetId":"GO_REGULATION_OF_ANTIGEN_RECEPTOR_MEDIATED_SIGNALING_PATHWAY"}, -{"genesetId":"GO_REGULATION_OF_B_CELL_RECEPTOR_SIGNALING_PATHWAY"}, -{"genesetId":"GO_REGULATION_OF_CELL_ACTIVATION"}, -{"genesetId":"GO_REGULATION_OF_DOPAMINE_METABOLIC_PROCESS"}, -{"genesetId":"GO_REGULATION_OF_DOUBLE_STRAND_BREAK_REPAIR"}, -{"genesetId":"GO_REGULATION_OF_ESTABLISHMENT_OF_PLANAR_POLARITY"}, -{"genesetId":"GO_REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY"}, -{"genesetId":"GO_REGULATION_OF_GENE_SILENCING_BY_RNA"}, -{"genesetId":"GO_REGULATION_OF_GOLGI_ORGANIZATION"}, -{"genesetId":"GO_REGULATION_OF_HEPATOCYTE_PROLIFERATION"}, -{"genesetId":"GO_REGULATION_OF_MITOCHONDRIAL_DEPOLARIZATION"}, -{"genesetId":"GO_REGULATION_OF_NLRP3_INFLAMMASOME_COMPLEX_ASSEMBLY"}, -{"genesetId":"GO_REGULATION_OF_PROTEIN_TARGETING_TO_MITOCHONDRION"}, -{"genesetId":"GO_REGULATION_OF_RESPIRATORY_BURST"}, -{"genesetId":"GO_REGULATION_OF_T_CELL_RECEPTOR_SIGNALING_PATHWAY"}, -{"genesetId":"GO_RESPONSE_TO_UV_C"}, -{"genesetId":"GO_RNA_DEPENDENT_DNA_BIOSYNTHETIC_PROCESS"}, -{"genesetId":"GO_SINGLE_FERTILIZATION"}, -{"genesetId":"GO_SMAD_PROTEIN_SIGNAL_TRANSDUCTION"}, -{"genesetId":"GO_SPINAL_CORD_DEVELOPMENT"}, -{"genesetId":"GO_STEROID_BIOSYNTHETIC_PROCESS"}, -{"genesetId":"GO_STRESS_FIBER_ASSEMBLY"}, -{"genesetId":"GO_SYNAPTIC_VESICLE_LOCALIZATION"}, -{"genesetId":"GO_TRNA_AMINOACYLATION"} -] diff --git a/core/src/test/scripts/test_data/api_json_system_tests/genesets_version.json b/core/src/test/scripts/test_data/api_json_system_tests/genesets_version.json deleted file mode 100644 index 204c3d72556..00000000000 --- a/core/src/test/scripts/test_data/api_json_system_tests/genesets_version.json +++ /dev/null @@ -1 +0,0 @@ -["msigdb_7.5.1"] \ No newline at end of file diff --git a/core/src/test/scripts/test_data/api_json_unit_tests/cancer-types.json b/core/src/test/scripts/test_data/api_json_unit_tests/cancer-types.json deleted file mode 100644 index 6d8c81ea16c..00000000000 --- a/core/src/test/scripts/test_data/api_json_unit_tests/cancer-types.json +++ /dev/null @@ -1,7 +0,0 @@ -[ -{"cancerTypeId":"breast","name":"Breast","color":"HotPink"}, -{"cancerTypeId":"prostate","name":"Prostate","color":"Cyan"}, -{"cancerTypeId":"lung","name":"Lung","color":"Gainsboro"}, -{"cancerTypeId":"brca","name":"Invasive Breast Carcinoma","color":"HotPink"}, -{"cancerTypeId":"prad","name":"Prostate Adenocarcinoma","color":"Cyan"} -] diff --git a/core/src/test/scripts/test_data/api_json_unit_tests/gene-panels.json b/core/src/test/scripts/test_data/api_json_unit_tests/gene-panels.json deleted file mode 100644 index 37e241daa79..00000000000 --- a/core/src/test/scripts/test_data/api_json_unit_tests/gene-panels.json +++ /dev/null @@ -1,4 +0,0 @@ -[ -{"genes":[{"entrezGeneId": 3983,"hugoGeneSymbol":"ABLIM1"},{"entrezGeneId": 80070,"hugoGeneSymbol":"ADAMTS20"},{"entrezGeneId": 460,"hugoGeneSymbol":"ASTN1"},{"entrezGeneId": 80114,"hugoGeneSymbol":"BICC1"},{"entrezGeneId": 253559,"hugoGeneSymbol":"CADM2"},{"entrezGeneId": 51806,"hugoGeneSymbol":"CALML5"},{"entrezGeneId": 56267,"hugoGeneSymbol":"CCBL2"},{"entrezGeneId": 63967,"hugoGeneSymbol":"CLSPN"},{"entrezGeneId": 114784,"hugoGeneSymbol":"CSMD2"},{"entrezGeneId": 9231,"hugoGeneSymbol":"DLG5"},{"entrezGeneId": 1838,"hugoGeneSymbol":"DTNB"},{"entrezGeneId": 339479,"hugoGeneSymbol":"FAM5C"},{"entrezGeneId": 50486,"hugoGeneSymbol":"G0S2"},{"entrezGeneId": 2662,"hugoGeneSymbol":"GDF10"},{"entrezGeneId": 84842,"hugoGeneSymbol":"HPDL"},{"entrezGeneId": 388697,"hugoGeneSymbol":"HRNR"},{"entrezGeneId": 3339,"hugoGeneSymbol":"HSPG2"},{"entrezGeneId": 2648,"hugoGeneSymbol":"KAT2A"},{"entrezGeneId": 3776,"hugoGeneSymbol":"KCNK2"},{"entrezGeneId": 114548,"hugoGeneSymbol":"NLRP3"},{"entrezGeneId": 440348,"hugoGeneSymbol":"NPIPB15"},{"entrezGeneId": 51686,"hugoGeneSymbol":"OAZ3"},{"entrezGeneId": 81061,"hugoGeneSymbol":"OR11H1"},{"entrezGeneId": 56914,"hugoGeneSymbol":"OTOR"},{"entrezGeneId": 27334,"hugoGeneSymbol":"P2RY10"},{"entrezGeneId": 9780,"hugoGeneSymbol":"PIEZO1"},{"entrezGeneId": 343035,"hugoGeneSymbol":"RD3"},{"entrezGeneId": 284654,"hugoGeneSymbol":"RSPO1"},{"entrezGeneId": 64744,"hugoGeneSymbol":"SMAP2"},{"entrezGeneId": 219736,"hugoGeneSymbol":"STOX1"},{"entrezGeneId": 388946,"hugoGeneSymbol":"TMEM247"},{"entrezGeneId": 164118,"hugoGeneSymbol":"TTC24"},{"entrezGeneId": 57216,"hugoGeneSymbol":"VANGL2"},{"entrezGeneId": 79699,"hugoGeneSymbol":"ZYG11B"},{"entrezGeneId": 4437,"hugoGeneSymbol":"MSH3"},{"entrezGeneId": 4602,"hugoGeneSymbol":"MYB"},{"entrezGeneId": 7157,"hugoGeneSymbol":"TP53"},{"entrezGeneId": 672,"hugoGeneSymbol":"BRCA1"},{"entrezGeneId": 472,"hugoGeneSymbol":"ATM"},{"entrezGeneId": 675,"hugoGeneSymbol":"BRCA2"},{"entrezGeneId": 55,"hugoGeneSymbol":"ACPP"}],"genePanelId":"TESTPANEL1"}, -{"genes":[{"entrezGeneId": 3983,"hugoGeneSymbol":"ABLIM1"},{"entrezGeneId": 80070,"hugoGeneSymbol":"ADAMTS20"},{"entrezGeneId": 460,"hugoGeneSymbol":"ASTN1"},{"entrezGeneId": 80114,"hugoGeneSymbol":"BICC1"},{"entrezGeneId": 253559,"hugoGeneSymbol":"CADM2"},{"entrezGeneId": 51806,"hugoGeneSymbol":"CALML5"},{"entrezGeneId": 56267,"hugoGeneSymbol":"CCBL2"},{"entrezGeneId": 63967,"hugoGeneSymbol":"CLSPN"},{"entrezGeneId": 114784,"hugoGeneSymbol":"CSMD2"},{"entrezGeneId": 9231,"hugoGeneSymbol":"DLG5"},{"entrezGeneId": 1838,"hugoGeneSymbol":"DTNB"},{"entrezGeneId": 339479,"hugoGeneSymbol":"FAM5C"},{"entrezGeneId": 50486,"hugoGeneSymbol":"G0S2"},{"entrezGeneId": 2662,"hugoGeneSymbol":"GDF10"},{"entrezGeneId": 84842,"hugoGeneSymbol":"HPDL"},{"entrezGeneId": 388697,"hugoGeneSymbol":"HRNR"},{"entrezGeneId": 3339,"hugoGeneSymbol":"HSPG2"},{"entrezGeneId": 2648,"hugoGeneSymbol":"KAT2A"},{"entrezGeneId": 3776,"hugoGeneSymbol":"KCNK2"},{"entrezGeneId": 114548,"hugoGeneSymbol":"NLRP3"},{"entrezGeneId": 440348,"hugoGeneSymbol":"NPIPB15"},{"entrezGeneId": 51686,"hugoGeneSymbol":"OAZ3"},{"entrezGeneId": 81061,"hugoGeneSymbol":"OR11H1"},{"entrezGeneId": 56914,"hugoGeneSymbol":"OTOR"},{"entrezGeneId": 27334,"hugoGeneSymbol":"P2RY10"},{"entrezGeneId": 9780,"hugoGeneSymbol":"PIEZO1"},{"entrezGeneId": 343035,"hugoGeneSymbol":"RD3"},{"entrezGeneId": 284654,"hugoGeneSymbol":"RSPO1"},{"entrezGeneId": 64744,"hugoGeneSymbol":"SMAP2"},{"entrezGeneId": 219736,"hugoGeneSymbol":"STOX1"},{"entrezGeneId": 388946,"hugoGeneSymbol":"TMEM247"},{"entrezGeneId": 164118,"hugoGeneSymbol":"TTC24"},{"entrezGeneId": 57216,"hugoGeneSymbol":"VANGL2"},{"entrezGeneId": 79699,"hugoGeneSymbol":"ZYG11B"},{"entrezGeneId": 4437,"hugoGeneSymbol":"MSH3"},{"entrezGeneId": 4602,"hugoGeneSymbol":"MYB"},{"entrezGeneId": 7157,"hugoGeneSymbol":"TP53"},{"entrezGeneId": 672,"hugoGeneSymbol":"BRCA1"},{"entrezGeneId": 472,"hugoGeneSymbol":"ATM"},{"entrezGeneId": 675,"hugoGeneSymbol":"BRCA2"},{"entrezGeneId": 55,"hugoGeneSymbol":"ACPP"}],"genePanelId":"TESTPANEL2"} -] \ No newline at end of file diff --git a/core/src/test/scripts/test_data/api_json_unit_tests/genes.json b/core/src/test/scripts/test_data/api_json_unit_tests/genes.json deleted file mode 100644 index 145c65c21c7..00000000000 --- a/core/src/test/scripts/test_data/api_json_unit_tests/genes.json +++ /dev/null @@ -1 +0,0 @@ -[{"hugoGeneSymbol":"LINC00568","entrezGeneId":100874054},{"hugoGeneSymbol":"C1orf138","entrezGeneId":574406},{"hugoGeneSymbol":"7SK","entrezGeneId":125050},{"hugoGeneSymbol":"CENTB5","entrezGeneId":116983},{"hugoGeneSymbol":"20MER1","entrezGeneId":107198088},{"hugoGeneSymbol":"20MER2","entrezGeneId":107198089},{"hugoGeneSymbol":"3.8-1.2","entrezGeneId":353007},{"hugoGeneSymbol":"3.8-1.3","entrezGeneId":353008},{"hugoGeneSymbol":"3.8-1.4","entrezGeneId":353009},{"hugoGeneSymbol":"3.8-1.5","entrezGeneId":353010},{"hugoGeneSymbol":"5'URS","entrezGeneId":107080646},{"hugoGeneSymbol":"5-HT3C2","entrezGeneId":389180},{"hugoGeneSymbol":"A-GAMMA3'E","entrezGeneId":109951028},{"hugoGeneSymbol":"A1BG","entrezGeneId":1},{"hugoGeneSymbol":"A1BG-AS1","entrezGeneId":503538},{"hugoGeneSymbol":"A1CF","entrezGeneId":29974},{"hugoGeneSymbol":"A2M","entrezGeneId":2},{"hugoGeneSymbol":"A2M-AS1","entrezGeneId":144571},{"hugoGeneSymbol":"A2ML1","entrezGeneId":144568},{"hugoGeneSymbol":"A2ML1-AS1","entrezGeneId":100874108},{"hugoGeneSymbol":"A2ML1-AS2","entrezGeneId":106478979},{"hugoGeneSymbol":"A2MP1","entrezGeneId":3},{"hugoGeneSymbol":"A3GALT2","entrezGeneId":127550},{"hugoGeneSymbol":"A4GALT","entrezGeneId":53947},{"hugoGeneSymbol":"A4GNT","entrezGeneId":51146},{"hugoGeneSymbol":"AA06","entrezGeneId":100506677},{"hugoGeneSymbol":"AA1","entrezGeneId":100034700},{"hugoGeneSymbol":"AA2","entrezGeneId":100034703},{"hugoGeneSymbol":"AAA1","entrezGeneId":100329167},{"hugoGeneSymbol":"AAA2","entrezGeneId":100505390},{"hugoGeneSymbol":"AAA3","entrezGeneId":100188857},{"hugoGeneSymbol":"AAA4","entrezGeneId":100859927},{"hugoGeneSymbol":"AAAS","entrezGeneId":8086},{"hugoGeneSymbol":"AABT","entrezGeneId":8212},{"hugoGeneSymbol":"AACS","entrezGeneId":65985},{"hugoGeneSymbol":"AACSP1","entrezGeneId":729522},{"hugoGeneSymbol":"AADAC","entrezGeneId":13},{"hugoGeneSymbol":"AADACL2","entrezGeneId":344752},{"hugoGeneSymbol":"AADACL2-AS1","entrezGeneId":101928142},{"hugoGeneSymbol":"AADACL3","entrezGeneId":126767},{"hugoGeneSymbol":"AADACL4","entrezGeneId":343066},{"hugoGeneSymbol":"AADACP1","entrezGeneId":201651},{"hugoGeneSymbol":"AADAT","entrezGeneId":51166},{"hugoGeneSymbol":"AAED1","entrezGeneId":195827},{"hugoGeneSymbol":"AAGAB","entrezGeneId":79719},{"hugoGeneSymbol":"AAK1","entrezGeneId":22848},{"hugoGeneSymbol":"AAMDC","entrezGeneId":28971},{"hugoGeneSymbol":"AAMP","entrezGeneId":14},{"hugoGeneSymbol":"AANAT","entrezGeneId":15},{"hugoGeneSymbol":"AAR2","entrezGeneId":25980},{"hugoGeneSymbol":"AARD","entrezGeneId":441376},{"hugoGeneSymbol":"AARS","entrezGeneId":16},{"hugoGeneSymbol":"AARS2","entrezGeneId":57505},{"hugoGeneSymbol":"AARSD1","entrezGeneId":80755},{"hugoGeneSymbol":"AARSP1","entrezGeneId":106480683},{"hugoGeneSymbol":"AASDH","entrezGeneId":132949},{"hugoGeneSymbol":"AASDHPPT","entrezGeneId":60496},{"hugoGeneSymbol":"AASS","entrezGeneId":10157},{"hugoGeneSymbol":"AASTH1","entrezGeneId":544317},{"hugoGeneSymbol":"AASTH10","entrezGeneId":544603},{"hugoGeneSymbol":"AASTH11","entrezGeneId":544584},{"hugoGeneSymbol":"AASTH12","entrezGeneId":544579},{"hugoGeneSymbol":"AASTH13","entrezGeneId":544583},{"hugoGeneSymbol":"AASTH14","entrezGeneId":544567},{"hugoGeneSymbol":"AASTH15","entrezGeneId":544597},{"hugoGeneSymbol":"AASTH16","entrezGeneId":544596},{"hugoGeneSymbol":"AASTH17","entrezGeneId":544573},{"hugoGeneSymbol":"AASTH18","entrezGeneId":544595},{"hugoGeneSymbol":"AASTH19","entrezGeneId":544589},{"hugoGeneSymbol":"AASTH2","entrezGeneId":544446},{"hugoGeneSymbol":"AASTH20","entrezGeneId":544565},{"hugoGeneSymbol":"AASTH21","entrezGeneId":544569},{"hugoGeneSymbol":"AASTH22","entrezGeneId":544602},{"hugoGeneSymbol":"AASTH23","entrezGeneId":544580},{"hugoGeneSymbol":"AASTH24","entrezGeneId":544600},{"hugoGeneSymbol":"AASTH25","entrezGeneId":544570},{"hugoGeneSymbol":"AASTH26","entrezGeneId":544576},{"hugoGeneSymbol":"AASTH27","entrezGeneId":544592},{"hugoGeneSymbol":"AASTH28","entrezGeneId":553147},{"hugoGeneSymbol":"AASTH29","entrezGeneId":553142},{"hugoGeneSymbol":"AASTH3","entrezGeneId":544441},{"hugoGeneSymbol":"AASTH30","entrezGeneId":544560},{"hugoGeneSymbol":"AASTH31","entrezGeneId":544561},{"hugoGeneSymbol":"AASTH32","entrezGeneId":553145},{"hugoGeneSymbol":"AASTH33","entrezGeneId":544588},{"hugoGeneSymbol":"AASTH34","entrezGeneId":544564},{"hugoGeneSymbol":"AASTH35","entrezGeneId":544574},{"hugoGeneSymbol":"AASTH36","entrezGeneId":544585},{"hugoGeneSymbol":"AASTH37","entrezGeneId":544598},{"hugoGeneSymbol":"AASTH38","entrezGeneId":544575},{"hugoGeneSymbol":"AASTH39","entrezGeneId":544572},{"hugoGeneSymbol":"AASTH4","entrezGeneId":544440},{"hugoGeneSymbol":"AASTH40","entrezGeneId":544566},{"hugoGeneSymbol":"AASTH41","entrezGeneId":553146},{"hugoGeneSymbol":"AASTH42","entrezGeneId":544582},{"hugoGeneSymbol":"AASTH43","entrezGeneId":544590},{"hugoGeneSymbol":"AASTH44","entrezGeneId":544594},{"hugoGeneSymbol":"AASTH45","entrezGeneId":544599},{"hugoGeneSymbol":"AASTH46","entrezGeneId":544601},{"hugoGeneSymbol":"AASTH47","entrezGeneId":544571},{"hugoGeneSymbol":"AASTH48","entrezGeneId":544563},{"hugoGeneSymbol":"AASTH49","entrezGeneId":544577},{"hugoGeneSymbol":"AASTH5","entrezGeneId":544434},{"hugoGeneSymbol":"AASTH50","entrezGeneId":544578},{"hugoGeneSymbol":"AASTH51","entrezGeneId":544587},{"hugoGeneSymbol":"AASTH52","entrezGeneId":544562},{"hugoGeneSymbol":"AASTH53","entrezGeneId":544593},{"hugoGeneSymbol":"AASTH54","entrezGeneId":544586},{"hugoGeneSymbol":"AASTH55","entrezGeneId":544581},{"hugoGeneSymbol":"AASTH56","entrezGeneId":553144},{"hugoGeneSymbol":"AASTH6","entrezGeneId":544423},{"hugoGeneSymbol":"AASTH7","entrezGeneId":544425},{"hugoGeneSymbol":"AASTH8","entrezGeneId":544591},{"hugoGeneSymbol":"AASTH9","entrezGeneId":544568},{"hugoGeneSymbol":"AAT1","entrezGeneId":252842},{"hugoGeneSymbol":"AAT2","entrezGeneId":252843},{"hugoGeneSymbol":"AATBC","entrezGeneId":284837},{"hugoGeneSymbol":"AATF","entrezGeneId":26574},{"hugoGeneSymbol":"AATK","entrezGeneId":9625},{"hugoGeneSymbol":"AAVS1","entrezGeneId":17},{"hugoGeneSymbol":"ABALON","entrezGeneId":103021294},{"hugoGeneSymbol":"ABAT","entrezGeneId":18},{"hugoGeneSymbol":"ABCA1","entrezGeneId":19},{"hugoGeneSymbol":"ABCA10","entrezGeneId":10349},{"hugoGeneSymbol":"ABCA11P","entrezGeneId":79963},{"hugoGeneSymbol":"ABCA12","entrezGeneId":26154},{"hugoGeneSymbol":"ABCA13","entrezGeneId":154664},{"hugoGeneSymbol":"ABCA17P","entrezGeneId":650655},{"hugoGeneSymbol":"ABCA2","entrezGeneId":20},{"hugoGeneSymbol":"ABCA3","entrezGeneId":21},{"hugoGeneSymbol":"ABCA4","entrezGeneId":24},{"hugoGeneSymbol":"ABCA5","entrezGeneId":23461},{"hugoGeneSymbol":"ABCA6","entrezGeneId":23460},{"hugoGeneSymbol":"ABCA7","entrezGeneId":10347},{"hugoGeneSymbol":"ABCA8","entrezGeneId":10351},{"hugoGeneSymbol":"ABCA9","entrezGeneId":10350},{"hugoGeneSymbol":"ABCA9-AS1","entrezGeneId":104355297},{"hugoGeneSymbol":"ABCB1","entrezGeneId":5243},{"hugoGeneSymbol":"ABCB10","entrezGeneId":23456},{"hugoGeneSymbol":"ABCB10P1","entrezGeneId":56476},{"hugoGeneSymbol":"ABCB10P3","entrezGeneId":728248},{"hugoGeneSymbol":"ABCB10P4","entrezGeneId":100132289},{"hugoGeneSymbol":"ABCB11","entrezGeneId":8647},{"hugoGeneSymbol":"ABCB4","entrezGeneId":5244},{"hugoGeneSymbol":"ABCB5","entrezGeneId":340273},{"hugoGeneSymbol":"ABCB6","entrezGeneId":10058},{"hugoGeneSymbol":"ABCB7","entrezGeneId":22},{"hugoGeneSymbol":"ABCB8","entrezGeneId":11194},{"hugoGeneSymbol":"ABCB9","entrezGeneId":23457},{"hugoGeneSymbol":"ABCC1","entrezGeneId":4363},{"hugoGeneSymbol":"ABCC10","entrezGeneId":89845},{"hugoGeneSymbol":"ABCC11","entrezGeneId":85320},{"hugoGeneSymbol":"ABCC12","entrezGeneId":94160},{"hugoGeneSymbol":"ABCC13","entrezGeneId":150000},{"hugoGeneSymbol":"ABCC2","entrezGeneId":1244},{"hugoGeneSymbol":"ABCC3","entrezGeneId":8714},{"hugoGeneSymbol":"ABCC4","entrezGeneId":10257},{"hugoGeneSymbol":"ABCC5","entrezGeneId":10057},{"hugoGeneSymbol":"ABCC5-AS1","entrezGeneId":100873982},{"hugoGeneSymbol":"ABCC6","entrezGeneId":368},{"hugoGeneSymbol":"ABCC6P1","entrezGeneId":653190},{"hugoGeneSymbol":"ABCC6P2","entrezGeneId":730013},{"hugoGeneSymbol":"ABCC8","entrezGeneId":6833},{"hugoGeneSymbol":"ABCC9","entrezGeneId":10060},{"hugoGeneSymbol":"ABCD1","entrezGeneId":215},{"hugoGeneSymbol":"ABCD1P1","entrezGeneId":23785},{"hugoGeneSymbol":"ABCD1P2","entrezGeneId":26983},{"hugoGeneSymbol":"ABCD1P3","entrezGeneId":26982},{"hugoGeneSymbol":"ABCD1P4","entrezGeneId":26957},{"hugoGeneSymbol":"ABCD1P5","entrezGeneId":642762},{"hugoGeneSymbol":"ABCD2","entrezGeneId":225},{"hugoGeneSymbol":"ABCD3","entrezGeneId":5825},{"hugoGeneSymbol":"ABCD4","entrezGeneId":5826},{"hugoGeneSymbol":"ABCE1","entrezGeneId":6059},{"hugoGeneSymbol":"ABCF1","entrezGeneId":23},{"hugoGeneSymbol":"ABCF1-DT","entrezGeneId":107986587},{"hugoGeneSymbol":"ABCF2","entrezGeneId":10061},{"hugoGeneSymbol":"ABCF2P1","entrezGeneId":344653},{"hugoGeneSymbol":"ABCF2P2","entrezGeneId":100422059},{"hugoGeneSymbol":"ABCF3","entrezGeneId":55324},{"hugoGeneSymbol":"ABCG1","entrezGeneId":9619},{"hugoGeneSymbol":"ABCG2","entrezGeneId":9429},{"hugoGeneSymbol":"ABCG4","entrezGeneId":64137},{"hugoGeneSymbol":"ABCG5","entrezGeneId":64240},{"hugoGeneSymbol":"ABCG8","entrezGeneId":64241},{"hugoGeneSymbol":"ABHD1","entrezGeneId":84696},{"hugoGeneSymbol":"ABHD10","entrezGeneId":55347},{"hugoGeneSymbol":"ABHD11","entrezGeneId":83451},{"hugoGeneSymbol":"ABHD11-AS1","entrezGeneId":171022},{"hugoGeneSymbol":"ABHD12","entrezGeneId":26090},{"hugoGeneSymbol":"ABHD12B","entrezGeneId":145447},{"hugoGeneSymbol":"ABHD13","entrezGeneId":84945},{"hugoGeneSymbol":"ABHD14A","entrezGeneId":25864},{"hugoGeneSymbol":"ABHD14A-ACY1","entrezGeneId":100526760},{"hugoGeneSymbol":"ABHD14B","entrezGeneId":84836},{"hugoGeneSymbol":"ABHD15","entrezGeneId":116236},{"hugoGeneSymbol":"ABHD15-AS1","entrezGeneId":104355133},{"hugoGeneSymbol":"ABHD16A","entrezGeneId":7920},{"hugoGeneSymbol":"ABHD16B","entrezGeneId":140701},{"hugoGeneSymbol":"ABHD17A","entrezGeneId":81926},{"hugoGeneSymbol":"ABHD17AP1","entrezGeneId":728917},{"hugoGeneSymbol":"ABHD17AP3","entrezGeneId":648359},{"hugoGeneSymbol":"ABHD17AP4","entrezGeneId":729495},{"hugoGeneSymbol":"ABHD17AP5","entrezGeneId":91219},{"hugoGeneSymbol":"ABHD17AP6","entrezGeneId":644988},{"hugoGeneSymbol":"ABHD17AP7","entrezGeneId":100133212},{"hugoGeneSymbol":"ABHD17AP8","entrezGeneId":647144},{"hugoGeneSymbol":"ABHD17AP9","entrezGeneId":100132251},{"hugoGeneSymbol":"ABHD17B","entrezGeneId":51104},{"hugoGeneSymbol":"ABHD17C","entrezGeneId":58489},{"hugoGeneSymbol":"ABHD18","entrezGeneId":80167},{"hugoGeneSymbol":"ABHD2","entrezGeneId":11057},{"hugoGeneSymbol":"ABHD3","entrezGeneId":171586},{"hugoGeneSymbol":"ABHD4","entrezGeneId":63874},{"hugoGeneSymbol":"ABHD5","entrezGeneId":51099},{"hugoGeneSymbol":"ABHD6","entrezGeneId":57406},{"hugoGeneSymbol":"ABHD8","entrezGeneId":79575},{"hugoGeneSymbol":"ABI1","entrezGeneId":10006},{"hugoGeneSymbol":"ABI1P1","entrezGeneId":326268},{"hugoGeneSymbol":"ABI2","entrezGeneId":10152},{"hugoGeneSymbol":"ABI3","entrezGeneId":51225},{"hugoGeneSymbol":"ABI3BP","entrezGeneId":25890},{"hugoGeneSymbol":"ABL1","entrezGeneId":25},{"hugoGeneSymbol":"ABL2","entrezGeneId":27},{"hugoGeneSymbol":"ABLIM1","entrezGeneId":3983},{"hugoGeneSymbol":"ABLIM2","entrezGeneId":84448},{"hugoGeneSymbol":"ABLIM3","entrezGeneId":22885},{"hugoGeneSymbol":"ABO","entrezGeneId":28},{"hugoGeneSymbol":"ABR","entrezGeneId":29},{"hugoGeneSymbol":"ABRA","entrezGeneId":137735},{"hugoGeneSymbol":"ABRACL","entrezGeneId":58527},{"hugoGeneSymbol":"ABRAXAS1","entrezGeneId":84142},{"hugoGeneSymbol":"ABRAXAS2","entrezGeneId":23172},{"hugoGeneSymbol":"ABT1","entrezGeneId":29777},{"hugoGeneSymbol":"ABT1P1","entrezGeneId":100420695},{"hugoGeneSymbol":"ABTB1","entrezGeneId":80325},{"hugoGeneSymbol":"ABTB2","entrezGeneId":25841},{"hugoGeneSymbol":"ACAA1","entrezGeneId":30},{"hugoGeneSymbol":"ACAA2","entrezGeneId":10449},{"hugoGeneSymbol":"ACACA","entrezGeneId":31},{"hugoGeneSymbol":"ACACB","entrezGeneId":32},{"hugoGeneSymbol":"ACAD10","entrezGeneId":80724},{"hugoGeneSymbol":"ACAD11","entrezGeneId":84129},{"hugoGeneSymbol":"ACAD8","entrezGeneId":27034},{"hugoGeneSymbol":"ACAD9","entrezGeneId":28976},{"hugoGeneSymbol":"ACADL","entrezGeneId":33},{"hugoGeneSymbol":"ACADM","entrezGeneId":34},{"hugoGeneSymbol":"ACADS","entrezGeneId":35},{"hugoGeneSymbol":"ACADSB","entrezGeneId":36},{"hugoGeneSymbol":"ACADVL","entrezGeneId":37},{"hugoGeneSymbol":"ACAN","entrezGeneId":176},{"hugoGeneSymbol":"ACAP1","entrezGeneId":9744},{"hugoGeneSymbol":"ACAP2","entrezGeneId":23527},{"hugoGeneSymbol":"ACAP2-IT1","entrezGeneId":100874306},{"hugoGeneSymbol":"ACAP3","entrezGeneId":116983},{"hugoGeneSymbol":"ACAT1","entrezGeneId":38},{"hugoGeneSymbol":"ACAT2","entrezGeneId":39},{"hugoGeneSymbol":"ACBD3","entrezGeneId":64746},{"hugoGeneSymbol":"ACBD3-AS1","entrezGeneId":107985353},{"hugoGeneSymbol":"ACBD4","entrezGeneId":79777},{"hugoGeneSymbol":"ACBD5","entrezGeneId":91452},{"hugoGeneSymbol":"ACBD6","entrezGeneId":84320},{"hugoGeneSymbol":"ACBD7","entrezGeneId":414149},{"hugoGeneSymbol":"ACBD7-DCLRE1CP1","entrezGeneId":108949267},{"hugoGeneSymbol":"ACCS","entrezGeneId":84680},{"hugoGeneSymbol":"ACCSL","entrezGeneId":390110},{"hugoGeneSymbol":"ACD","entrezGeneId":65057},{"hugoGeneSymbol":"ACE","entrezGeneId":1636},{"hugoGeneSymbol":"ACE2","entrezGeneId":59272},{"hugoGeneSymbol":"ACE3P","entrezGeneId":100129123},{"hugoGeneSymbol":"ACER1","entrezGeneId":125981},{"hugoGeneSymbol":"ACER2","entrezGeneId":340485},{"hugoGeneSymbol":"ACER3","entrezGeneId":55331},{"hugoGeneSymbol":"ACF","entrezGeneId":387569},{"hugoGeneSymbol":"ACHE","entrezGeneId":43},{"hugoGeneSymbol":"ACIN1","entrezGeneId":22985},{"hugoGeneSymbol":"ACKR1","entrezGeneId":2532},{"hugoGeneSymbol":"ACKR2","entrezGeneId":1238},{"hugoGeneSymbol":"ACKR3","entrezGeneId":57007},{"hugoGeneSymbol":"ACKR4","entrezGeneId":51554},{"hugoGeneSymbol":"ACLS","entrezGeneId":46},{"hugoGeneSymbol":"ACLY","entrezGeneId":47},{"hugoGeneSymbol":"ACMSD","entrezGeneId":130013},{"hugoGeneSymbol":"ACO1","entrezGeneId":48},{"hugoGeneSymbol":"ACO2","entrezGeneId":50},{"hugoGeneSymbol":"ACOD1","entrezGeneId":730249},{"hugoGeneSymbol":"ACOT1","entrezGeneId":641371},{"hugoGeneSymbol":"ACOT11","entrezGeneId":26027},{"hugoGeneSymbol":"ACOT12","entrezGeneId":134526},{"hugoGeneSymbol":"ACOT13","entrezGeneId":55856},{"hugoGeneSymbol":"ACOT2","entrezGeneId":10965},{"hugoGeneSymbol":"ACOT4","entrezGeneId":122970},{"hugoGeneSymbol":"ACOT6","entrezGeneId":641372},{"hugoGeneSymbol":"ACOT7","entrezGeneId":11332},{"hugoGeneSymbol":"ACOT8","entrezGeneId":10005},{"hugoGeneSymbol":"ACOT9","entrezGeneId":23597},{"hugoGeneSymbol":"ACOX1","entrezGeneId":51},{"hugoGeneSymbol":"ACOX2","entrezGeneId":8309},{"hugoGeneSymbol":"ACOX3","entrezGeneId":8310},{"hugoGeneSymbol":"ACOXL","entrezGeneId":55289},{"hugoGeneSymbol":"ACOXL-AS1","entrezGeneId":400997},{"hugoGeneSymbol":"ACP1","entrezGeneId":52},{"hugoGeneSymbol":"ACP2","entrezGeneId":53},{"hugoGeneSymbol":"ACP4","entrezGeneId":93650},{"hugoGeneSymbol":"ACP5","entrezGeneId":54},{"hugoGeneSymbol":"ACP6","entrezGeneId":51205},{"hugoGeneSymbol":"ACP7","entrezGeneId":390928},{"hugoGeneSymbol":"ACPP","entrezGeneId":55},{"hugoGeneSymbol":"ACR","entrezGeneId":49},{"hugoGeneSymbol":"ACRBP","entrezGeneId":84519},{"hugoGeneSymbol":"ACRPS","entrezGeneId":85505},{"hugoGeneSymbol":"ACRPV","entrezGeneId":414058},{"hugoGeneSymbol":"ACRV1","entrezGeneId":56},{"hugoGeneSymbol":"ACSBG1","entrezGeneId":23205},{"hugoGeneSymbol":"ACSBG2","entrezGeneId":81616},{"hugoGeneSymbol":"ACSF2","entrezGeneId":80221},{"hugoGeneSymbol":"ACSF3","entrezGeneId":197322},{"hugoGeneSymbol":"ACSL1","entrezGeneId":2180},{"hugoGeneSymbol":"ACSL3","entrezGeneId":2181},{"hugoGeneSymbol":"ACSL4","entrezGeneId":2182},{"hugoGeneSymbol":"ACSL5","entrezGeneId":51703},{"hugoGeneSymbol":"ACSL6","entrezGeneId":23305},{"hugoGeneSymbol":"ACSM1","entrezGeneId":116285},{"hugoGeneSymbol":"ACSM2A","entrezGeneId":123876},{"hugoGeneSymbol":"ACSM2B","entrezGeneId":348158},{"hugoGeneSymbol":"ACSM3","entrezGeneId":6296},{"hugoGeneSymbol":"ACSM4","entrezGeneId":341392},{"hugoGeneSymbol":"ACSM5","entrezGeneId":54988},{"hugoGeneSymbol":"ACSM5P1","entrezGeneId":100421779},{"hugoGeneSymbol":"ACSM6","entrezGeneId":142827},{"hugoGeneSymbol":"ACSS1","entrezGeneId":84532},{"hugoGeneSymbol":"ACSS2","entrezGeneId":55902},{"hugoGeneSymbol":"ACSS3","entrezGeneId":79611},{"hugoGeneSymbol":"ACTA1","entrezGeneId":58},{"hugoGeneSymbol":"ACTA2","entrezGeneId":59},{"hugoGeneSymbol":"ACTA2-AS1","entrezGeneId":100132116},{"hugoGeneSymbol":"ACTB","entrezGeneId":60},{"hugoGeneSymbol":"ACTBL2","entrezGeneId":345651},{"hugoGeneSymbol":"ACTBP1","entrezGeneId":643309},{"hugoGeneSymbol":"ACTBP10","entrezGeneId":446207},{"hugoGeneSymbol":"ACTBP11","entrezGeneId":644220},{"hugoGeneSymbol":"ACTBP12","entrezGeneId":100462767},{"hugoGeneSymbol":"ACTBP13","entrezGeneId":389120},{"hugoGeneSymbol":"ACTBP14","entrezGeneId":389976},{"hugoGeneSymbol":"ACTBP2","entrezGeneId":62},{"hugoGeneSymbol":"ACTBP3","entrezGeneId":63},{"hugoGeneSymbol":"ACTBP4","entrezGeneId":64},{"hugoGeneSymbol":"ACTBP6","entrezGeneId":66},{"hugoGeneSymbol":"ACTBP7","entrezGeneId":67},{"hugoGeneSymbol":"ACTBP8","entrezGeneId":68},{"hugoGeneSymbol":"ACTBP9","entrezGeneId":69},{"hugoGeneSymbol":"ACTC1","entrezGeneId":70},{"hugoGeneSymbol":"ACTD","entrezGeneId":780896},{"hugoGeneSymbol":"ACTG1","entrezGeneId":71},{"hugoGeneSymbol":"ACTG1P1","entrezGeneId":73},{"hugoGeneSymbol":"ACTG1P10","entrezGeneId":83},{"hugoGeneSymbol":"ACTG1P11","entrezGeneId":414754},{"hugoGeneSymbol":"ACTG1P12","entrezGeneId":100418921},{"hugoGeneSymbol":"ACTG1P13","entrezGeneId":100418920},{"hugoGeneSymbol":"ACTG1P14","entrezGeneId":100418910},{"hugoGeneSymbol":"ACTG1P15","entrezGeneId":100418951},{"hugoGeneSymbol":"ACTG1P16","entrezGeneId":100418960},{"hugoGeneSymbol":"ACTG1P17","entrezGeneId":283693},{"hugoGeneSymbol":"ACTG1P18","entrezGeneId":100418924},{"hugoGeneSymbol":"ACTG1P19","entrezGeneId":644160},{"hugoGeneSymbol":"ACTG1P2","entrezGeneId":74},{"hugoGeneSymbol":"ACTG1P20","entrezGeneId":644961},{"hugoGeneSymbol":"ACTG1P21","entrezGeneId":100131291},{"hugoGeneSymbol":"ACTG1P22","entrezGeneId":100131953},{"hugoGeneSymbol":"ACTG1P23","entrezGeneId":442097},{"hugoGeneSymbol":"ACTG1P24","entrezGeneId":441783},{"hugoGeneSymbol":"ACTG1P3","entrezGeneId":75},{"hugoGeneSymbol":"ACTG1P4","entrezGeneId":648740},{"hugoGeneSymbol":"ACTG1P6","entrezGeneId":78},{"hugoGeneSymbol":"ACTG1P7","entrezGeneId":79},{"hugoGeneSymbol":"ACTG1P8","entrezGeneId":80},{"hugoGeneSymbol":"ACTG1P9","entrezGeneId":82},{"hugoGeneSymbol":"ACTG2","entrezGeneId":72},{"hugoGeneSymbol":"ACTL10","entrezGeneId":170487},{"hugoGeneSymbol":"ACTL6A","entrezGeneId":86},{"hugoGeneSymbol":"ACTL6B","entrezGeneId":51412},{"hugoGeneSymbol":"ACTL7A","entrezGeneId":10881},{"hugoGeneSymbol":"ACTL7B","entrezGeneId":10880},{"hugoGeneSymbol":"ACTL8","entrezGeneId":81569},{"hugoGeneSymbol":"ACTL9","entrezGeneId":284382},{"hugoGeneSymbol":"ACTN1","entrezGeneId":87},{"hugoGeneSymbol":"ACTN1-AS1","entrezGeneId":161159},{"hugoGeneSymbol":"ACTN2","entrezGeneId":88},{"hugoGeneSymbol":"ACTN3","entrezGeneId":89},{"hugoGeneSymbol":"ACTN4","entrezGeneId":81},{"hugoGeneSymbol":"ACTN4P1","entrezGeneId":344978},{"hugoGeneSymbol":"ACTN4P2","entrezGeneId":391026},{"hugoGeneSymbol":"ACTP1","entrezGeneId":106480335},{"hugoGeneSymbol":"ACTR10","entrezGeneId":55860},{"hugoGeneSymbol":"ACTR1A","entrezGeneId":10121},{"hugoGeneSymbol":"ACTR1B","entrezGeneId":10120},{"hugoGeneSymbol":"ACTR2","entrezGeneId":10097},{"hugoGeneSymbol":"ACTR3","entrezGeneId":10096},{"hugoGeneSymbol":"ACTR3B","entrezGeneId":57180},{"hugoGeneSymbol":"ACTR3BP1","entrezGeneId":643050},{"hugoGeneSymbol":"ACTR3BP2","entrezGeneId":440888},{"hugoGeneSymbol":"ACTR3BP3","entrezGeneId":647156},{"hugoGeneSymbol":"ACTR3BP4","entrezGeneId":777774},{"hugoGeneSymbol":"ACTR3BP5","entrezGeneId":399746},{"hugoGeneSymbol":"ACTR3BP6","entrezGeneId":644773},{"hugoGeneSymbol":"ACTR3C","entrezGeneId":653857},{"hugoGeneSymbol":"ACTR3P1","entrezGeneId":100288580},{"hugoGeneSymbol":"ACTR3P2","entrezGeneId":100129013},{"hugoGeneSymbol":"ACTR3P3","entrezGeneId":100128020},{"hugoGeneSymbol":"ACTR5","entrezGeneId":79913},{"hugoGeneSymbol":"ACTR6","entrezGeneId":64431},{"hugoGeneSymbol":"ACTR6P1","entrezGeneId":100421495},{"hugoGeneSymbol":"ACTR8","entrezGeneId":93973},{"hugoGeneSymbol":"ACTRT1","entrezGeneId":139741},{"hugoGeneSymbol":"ACTRT2","entrezGeneId":140625},{"hugoGeneSymbol":"ACTRT3","entrezGeneId":84517},{"hugoGeneSymbol":"ACVR1","entrezGeneId":90},{"hugoGeneSymbol":"ACVR1B","entrezGeneId":91},{"hugoGeneSymbol":"ACVR1C","entrezGeneId":130399},{"hugoGeneSymbol":"ACVR2A","entrezGeneId":92},{"hugoGeneSymbol":"ACVR2B","entrezGeneId":93},{"hugoGeneSymbol":"ACVR2B-AS1","entrezGeneId":100128640},{"hugoGeneSymbol":"ACVRL1","entrezGeneId":94},{"hugoGeneSymbol":"ACY1","entrezGeneId":95},{"hugoGeneSymbol":"ACY3","entrezGeneId":91703},{"hugoGeneSymbol":"ACYP1","entrezGeneId":97},{"hugoGeneSymbol":"ACYP2","entrezGeneId":98},{"hugoGeneSymbol":"AD10","entrezGeneId":780912},{"hugoGeneSymbol":"AD11","entrezGeneId":100188795},{"hugoGeneSymbol":"AD12","entrezGeneId":100188830},{"hugoGeneSymbol":"AD13","entrezGeneId":100188837},{"hugoGeneSymbol":"AD14","entrezGeneId":100188754},{"hugoGeneSymbol":"AD15","entrezGeneId":100188838},{"hugoGeneSymbol":"AD16","entrezGeneId":100271718},{"hugoGeneSymbol":"AD17","entrezGeneId":101290498},{"hugoGeneSymbol":"AD5","entrezGeneId":8081},{"hugoGeneSymbol":"AD6","entrezGeneId":64851},{"hugoGeneSymbol":"AD7","entrezGeneId":114475},{"hugoGeneSymbol":"AD8","entrezGeneId":353128},{"hugoGeneSymbol":"AD9","entrezGeneId":450086},{"hugoGeneSymbol":"ADA","entrezGeneId":100},{"hugoGeneSymbol":"ADA2","entrezGeneId":51816},{"hugoGeneSymbol":"ADAD1","entrezGeneId":132612},{"hugoGeneSymbol":"ADAD1P1","entrezGeneId":100422386},{"hugoGeneSymbol":"ADAD1P2","entrezGeneId":100422407},{"hugoGeneSymbol":"ADAD2","entrezGeneId":161931},{"hugoGeneSymbol":"ADAL","entrezGeneId":161823},{"hugoGeneSymbol":"ADAM10","entrezGeneId":102},{"hugoGeneSymbol":"ADAM11","entrezGeneId":4185},{"hugoGeneSymbol":"ADAM12","entrezGeneId":8038},{"hugoGeneSymbol":"ADAM15","entrezGeneId":8751},{"hugoGeneSymbol":"ADAM17","entrezGeneId":6868},{"hugoGeneSymbol":"ADAM18","entrezGeneId":8749},{"hugoGeneSymbol":"ADAM19","entrezGeneId":8728},{"hugoGeneSymbol":"ADAM1A","entrezGeneId":8759},{"hugoGeneSymbol":"ADAM1B","entrezGeneId":100420505},{"hugoGeneSymbol":"ADAM2","entrezGeneId":2515},{"hugoGeneSymbol":"ADAM20","entrezGeneId":8748},{"hugoGeneSymbol":"ADAM20P1","entrezGeneId":317760},{"hugoGeneSymbol":"ADAM20P2","entrezGeneId":100533671},{"hugoGeneSymbol":"ADAM20P3","entrezGeneId":644325},{"hugoGeneSymbol":"ADAM21","entrezGeneId":8747},{"hugoGeneSymbol":"ADAM21P1","entrezGeneId":145241},{"hugoGeneSymbol":"ADAM22","entrezGeneId":53616},{"hugoGeneSymbol":"ADAM23","entrezGeneId":8745},{"hugoGeneSymbol":"ADAM24P","entrezGeneId":646479},{"hugoGeneSymbol":"ADAM28","entrezGeneId":10863},{"hugoGeneSymbol":"ADAM29","entrezGeneId":11086},{"hugoGeneSymbol":"ADAM30","entrezGeneId":11085},{"hugoGeneSymbol":"ADAM32","entrezGeneId":203102},{"hugoGeneSymbol":"ADAM33","entrezGeneId":80332},{"hugoGeneSymbol":"ADAM3A","entrezGeneId":1587},{"hugoGeneSymbol":"ADAM3B","entrezGeneId":1596},{"hugoGeneSymbol":"ADAM5","entrezGeneId":255926},{"hugoGeneSymbol":"ADAM6","entrezGeneId":8755},{"hugoGeneSymbol":"ADAM7","entrezGeneId":8756},{"hugoGeneSymbol":"ADAM8","entrezGeneId":101},{"hugoGeneSymbol":"ADAM9","entrezGeneId":8754},{"hugoGeneSymbol":"ADAMDEC1","entrezGeneId":27299},{"hugoGeneSymbol":"ADAMTS1","entrezGeneId":9510},{"hugoGeneSymbol":"ADAMTS10","entrezGeneId":81794},{"hugoGeneSymbol":"ADAMTS12","entrezGeneId":81792},{"hugoGeneSymbol":"ADAMTS13","entrezGeneId":11093},{"hugoGeneSymbol":"ADAMTS14","entrezGeneId":140766},{"hugoGeneSymbol":"ADAMTS15","entrezGeneId":170689},{"hugoGeneSymbol":"ADAMTS16","entrezGeneId":170690},{"hugoGeneSymbol":"ADAMTS17","entrezGeneId":170691},{"hugoGeneSymbol":"ADAMTS18","entrezGeneId":170692},{"hugoGeneSymbol":"ADAMTS19","entrezGeneId":171019},{"hugoGeneSymbol":"ADAMTS19-AS1","entrezGeneId":103689846},{"hugoGeneSymbol":"ADAMTS2","entrezGeneId":9509},{"hugoGeneSymbol":"ADAMTS20","entrezGeneId":80070},{"hugoGeneSymbol":"ADAMTS3","entrezGeneId":9508},{"hugoGeneSymbol":"ADAMTS4","entrezGeneId":9507},{"hugoGeneSymbol":"ADAMTS5","entrezGeneId":11096},{"hugoGeneSymbol":"ADAMTS6","entrezGeneId":11174},{"hugoGeneSymbol":"ADAMTS7","entrezGeneId":11173},{"hugoGeneSymbol":"ADAMTS7P1","entrezGeneId":390660},{"hugoGeneSymbol":"ADAMTS7P3","entrezGeneId":400406},{"hugoGeneSymbol":"ADAMTS7P4","entrezGeneId":642935},{"hugoGeneSymbol":"ADAMTS8","entrezGeneId":11095},{"hugoGeneSymbol":"ADAMTS9","entrezGeneId":56999},{"hugoGeneSymbol":"ADAMTS9-AS1","entrezGeneId":101929335},{"hugoGeneSymbol":"ADAMTS9-AS2","entrezGeneId":100507098},{"hugoGeneSymbol":"ADAMTSL1","entrezGeneId":92949},{"hugoGeneSymbol":"ADAMTSL2","entrezGeneId":9719},{"hugoGeneSymbol":"ADAMTSL3","entrezGeneId":57188},{"hugoGeneSymbol":"ADAMTSL4","entrezGeneId":54507},{"hugoGeneSymbol":"ADAMTSL4-AS1","entrezGeneId":574406},{"hugoGeneSymbol":"ADAMTSL5","entrezGeneId":339366},{"hugoGeneSymbol":"ADAP1","entrezGeneId":11033},{"hugoGeneSymbol":"ADAP2","entrezGeneId":55803},{"hugoGeneSymbol":"ADAR","entrezGeneId":103},{"hugoGeneSymbol":"ADARB1","entrezGeneId":104},{"hugoGeneSymbol":"ADARB2","entrezGeneId":105},{"hugoGeneSymbol":"ADARB2-AS1","entrezGeneId":642394},{"hugoGeneSymbol":"ADAT1","entrezGeneId":23536},{"hugoGeneSymbol":"ADAT2","entrezGeneId":134637},{"hugoGeneSymbol":"ADAT3","entrezGeneId":113179},{"hugoGeneSymbol":"ADCK1","entrezGeneId":57143},{"hugoGeneSymbol":"ADCK2","entrezGeneId":90956},{"hugoGeneSymbol":"ADCK5","entrezGeneId":203054},{"hugoGeneSymbol":"ADCP1","entrezGeneId":106},{"hugoGeneSymbol":"ADCY1","entrezGeneId":107},{"hugoGeneSymbol":"ADCY10","entrezGeneId":55811},{"hugoGeneSymbol":"ADCY10P1","entrezGeneId":221442},{"hugoGeneSymbol":"ADCY2","entrezGeneId":108},{"hugoGeneSymbol":"ADCY3","entrezGeneId":109},{"hugoGeneSymbol":"ADCY4","entrezGeneId":196883},{"hugoGeneSymbol":"ADCY5","entrezGeneId":111},{"hugoGeneSymbol":"ADCY6","entrezGeneId":112},{"hugoGeneSymbol":"ADCY7","entrezGeneId":113},{"hugoGeneSymbol":"ADCY8","entrezGeneId":114},{"hugoGeneSymbol":"ADCY9","entrezGeneId":115},{"hugoGeneSymbol":"ADCYAP1","entrezGeneId":116},{"hugoGeneSymbol":"ADCYAP1R1","entrezGeneId":117},{"hugoGeneSymbol":"ADD1","entrezGeneId":118},{"hugoGeneSymbol":"ADD2","entrezGeneId":119},{"hugoGeneSymbol":"ADD3","entrezGeneId":120},{"hugoGeneSymbol":"ADD3-AS1","entrezGeneId":100505933},{"hugoGeneSymbol":"ADFN","entrezGeneId":122},{"hugoGeneSymbol":"ADGB","entrezGeneId":79747},{"hugoGeneSymbol":"ADGRA1","entrezGeneId":84435},{"hugoGeneSymbol":"ADGRA1-AS1","entrezGeneId":100128127},{"hugoGeneSymbol":"ADGRA2","entrezGeneId":25960},{"hugoGeneSymbol":"ADGRA3","entrezGeneId":166647},{"hugoGeneSymbol":"ADGRB1","entrezGeneId":575},{"hugoGeneSymbol":"ADGRB2","entrezGeneId":576},{"hugoGeneSymbol":"ADGRB3","entrezGeneId":577},{"hugoGeneSymbol":"ADGRD1","entrezGeneId":283383},{"hugoGeneSymbol":"ADGRD1-AS1","entrezGeneId":105755954},{"hugoGeneSymbol":"ADGRD2","entrezGeneId":347088},{"hugoGeneSymbol":"ADGRE1","entrezGeneId":2015},{"hugoGeneSymbol":"ADGRE2","entrezGeneId":30817},{"hugoGeneSymbol":"ADGRE3","entrezGeneId":84658},{"hugoGeneSymbol":"ADGRE4P","entrezGeneId":326342},{"hugoGeneSymbol":"ADGRE5","entrezGeneId":976},{"hugoGeneSymbol":"ADGRF1","entrezGeneId":266977},{"hugoGeneSymbol":"ADGRF2","entrezGeneId":222611},{"hugoGeneSymbol":"ADGRF3","entrezGeneId":165082},{"hugoGeneSymbol":"ADGRF4","entrezGeneId":221393},{"hugoGeneSymbol":"ADGRF5","entrezGeneId":221395},{"hugoGeneSymbol":"ADGRF5P1","entrezGeneId":389740},{"hugoGeneSymbol":"ADGRF5P2","entrezGeneId":441416},{"hugoGeneSymbol":"ADGRG1","entrezGeneId":9289},{"hugoGeneSymbol":"ADGRG2","entrezGeneId":10149},{"hugoGeneSymbol":"ADGRG3","entrezGeneId":222487},{"hugoGeneSymbol":"ADGRG4","entrezGeneId":139378},{"hugoGeneSymbol":"ADGRG5","entrezGeneId":221188},{"hugoGeneSymbol":"ADGRG6","entrezGeneId":57211},{"hugoGeneSymbol":"ADGRG7","entrezGeneId":84873},{"hugoGeneSymbol":"ADGRL1","entrezGeneId":22859},{"hugoGeneSymbol":"ADGRL2","entrezGeneId":23266},{"hugoGeneSymbol":"ADGRL3","entrezGeneId":23284},{"hugoGeneSymbol":"ADGRL3-AS1","entrezGeneId":101927186},{"hugoGeneSymbol":"ADGRL4","entrezGeneId":64123},{"hugoGeneSymbol":"ADGRV1","entrezGeneId":84059},{"hugoGeneSymbol":"ADH1A","entrezGeneId":124},{"hugoGeneSymbol":"ADH1B","entrezGeneId":125},{"hugoGeneSymbol":"ADH1C","entrezGeneId":126},{"hugoGeneSymbol":"ADH4","entrezGeneId":127},{"hugoGeneSymbol":"ADH5","entrezGeneId":128},{"hugoGeneSymbol":"ADH5P2","entrezGeneId":343296},{"hugoGeneSymbol":"ADH5P3","entrezGeneId":100131810},{"hugoGeneSymbol":"ADH5P4","entrezGeneId":642443},{"hugoGeneSymbol":"ADH6","entrezGeneId":130},{"hugoGeneSymbol":"ADH7","entrezGeneId":131},{"hugoGeneSymbol":"ADHD1","entrezGeneId":450087},{"hugoGeneSymbol":"ADHD2","entrezGeneId":450088},{"hugoGeneSymbol":"ADHD3","entrezGeneId":450089},{"hugoGeneSymbol":"ADHD4","entrezGeneId":450090},{"hugoGeneSymbol":"ADHD5","entrezGeneId":100190790},{"hugoGeneSymbol":"ADHD6","entrezGeneId":100190791},{"hugoGeneSymbol":"ADHFE1","entrezGeneId":137872},{"hugoGeneSymbol":"ADI1","entrezGeneId":55256},{"hugoGeneSymbol":"ADI1P1","entrezGeneId":100130936},{"hugoGeneSymbol":"ADI1P2","entrezGeneId":100288971},{"hugoGeneSymbol":"ADI1P3","entrezGeneId":100288129},{"hugoGeneSymbol":"ADIG","entrezGeneId":149685},{"hugoGeneSymbol":"ADIPOQ","entrezGeneId":9370},{"hugoGeneSymbol":"ADIPOQ-AS1","entrezGeneId":100874095},{"hugoGeneSymbol":"ADIPOR1","entrezGeneId":51094},{"hugoGeneSymbol":"ADIPOR1P1","entrezGeneId":645220},{"hugoGeneSymbol":"ADIPOR1P2","entrezGeneId":390503},{"hugoGeneSymbol":"ADIPOR2","entrezGeneId":79602},{"hugoGeneSymbol":"ADIPQTL2","entrezGeneId":171511},{"hugoGeneSymbol":"ADIPQTL3","entrezGeneId":171512},{"hugoGeneSymbol":"ADIPQTL4","entrezGeneId":100271698},{"hugoGeneSymbol":"ADIPQTL5","entrezGeneId":100653375},{"hugoGeneSymbol":"ADIRF","entrezGeneId":10974},{"hugoGeneSymbol":"ADIRF-AS1","entrezGeneId":100133190},{"hugoGeneSymbol":"ADK","entrezGeneId":132},{"hugoGeneSymbol":"ADM","entrezGeneId":133},{"hugoGeneSymbol":"ADM2","entrezGeneId":79924},{"hugoGeneSymbol":"ADM5","entrezGeneId":199800},{"hugoGeneSymbol":"ADNP","entrezGeneId":23394},{"hugoGeneSymbol":"ADNP-AS1","entrezGeneId":101927631},{"hugoGeneSymbol":"ADNP2","entrezGeneId":22850},{"hugoGeneSymbol":"ADO","entrezGeneId":84890},{"hugoGeneSymbol":"ADORA1","entrezGeneId":134},{"hugoGeneSymbol":"ADORA2A","entrezGeneId":135},{"hugoGeneSymbol":"ADORA2A-AS1","entrezGeneId":646023},{"hugoGeneSymbol":"ADORA2B","entrezGeneId":136},{"hugoGeneSymbol":"ADORA2BP1","entrezGeneId":137},{"hugoGeneSymbol":"ADORA3","entrezGeneId":140},{"hugoGeneSymbol":"ADPGK","entrezGeneId":83440},{"hugoGeneSymbol":"ADPGK-AS1","entrezGeneId":100287559},{"hugoGeneSymbol":"ADPRH","entrezGeneId":141},{"hugoGeneSymbol":"ADPRHL1","entrezGeneId":113622},{"hugoGeneSymbol":"ADPRHL2","entrezGeneId":54936},{"hugoGeneSymbol":"ADPRM","entrezGeneId":56985},{"hugoGeneSymbol":"ADRA1A","entrezGeneId":148},{"hugoGeneSymbol":"ADRA1B","entrezGeneId":147},{"hugoGeneSymbol":"ADRA1D","entrezGeneId":146},{"hugoGeneSymbol":"ADRA2A","entrezGeneId":150},{"hugoGeneSymbol":"ADRA2B","entrezGeneId":151},{"hugoGeneSymbol":"ADRA2C","entrezGeneId":152},{"hugoGeneSymbol":"ADRB1","entrezGeneId":153},{"hugoGeneSymbol":"ADRB2","entrezGeneId":154},{"hugoGeneSymbol":"ADRB3","entrezGeneId":155},{"hugoGeneSymbol":"ADRM1","entrezGeneId":11047},{"hugoGeneSymbol":"ADSL","entrezGeneId":158},{"hugoGeneSymbol":"ADSS","entrezGeneId":159},{"hugoGeneSymbol":"ADSSL1","entrezGeneId":122622},{"hugoGeneSymbol":"ADTRP","entrezGeneId":84830},{"hugoGeneSymbol":"AEBP1","entrezGeneId":165},{"hugoGeneSymbol":"AEBP2","entrezGeneId":121536},{"hugoGeneSymbol":"AEN","entrezGeneId":64782},{"hugoGeneSymbol":"AES","entrezGeneId":166},{"hugoGeneSymbol":"AF8T","entrezGeneId":169},{"hugoGeneSymbol":"AFA","entrezGeneId":170},{"hugoGeneSymbol":"AFA1","entrezGeneId":100188784},{"hugoGeneSymbol":"AFAP1","entrezGeneId":60312},{"hugoGeneSymbol":"AFAP1-AS1","entrezGeneId":84740},{"hugoGeneSymbol":"AFAP1L1","entrezGeneId":134265},{"hugoGeneSymbol":"AFAP1L2","entrezGeneId":84632},{"hugoGeneSymbol":"AFD1","entrezGeneId":171},{"hugoGeneSymbol":"AFDN","entrezGeneId":4301},{"hugoGeneSymbol":"AFDN-DT","entrezGeneId":653483},{"hugoGeneSymbol":"AFF1","entrezGeneId":4299},{"hugoGeneSymbol":"AFF1-AS1","entrezGeneId":100506746},{"hugoGeneSymbol":"AFF2","entrezGeneId":2334},{"hugoGeneSymbol":"AFF2-IT1","entrezGeneId":100874269},{"hugoGeneSymbol":"AFF3","entrezGeneId":3899},{"hugoGeneSymbol":"AFF4","entrezGeneId":27125},{"hugoGeneSymbol":"AFG1L","entrezGeneId":246269},{"hugoGeneSymbol":"AFG3L1P","entrezGeneId":172},{"hugoGeneSymbol":"AFG3L2","entrezGeneId":10939},{"hugoGeneSymbol":"AFG3L2P1","entrezGeneId":347028},{"hugoGeneSymbol":"AFM","entrezGeneId":173},{"hugoGeneSymbol":"AFMID","entrezGeneId":125061},{"hugoGeneSymbol":"AFP","entrezGeneId":174},{"hugoGeneSymbol":"AFTPH","entrezGeneId":54812},{"hugoGeneSymbol":"AGA","entrezGeneId":175},{"hugoGeneSymbol":"AGA2","entrezGeneId":100188771},{"hugoGeneSymbol":"AGA3","entrezGeneId":100217387},{"hugoGeneSymbol":"AGAP1","entrezGeneId":116987},{"hugoGeneSymbol":"AGAP1-IT1","entrezGeneId":100506749},{"hugoGeneSymbol":"AGAP10P","entrezGeneId":653234},{"hugoGeneSymbol":"AGAP11","entrezGeneId":119385},{"hugoGeneSymbol":"AGAP12P","entrezGeneId":414224},{"hugoGeneSymbol":"AGAP13P","entrezGeneId":728005},{"hugoGeneSymbol":"AGAP14P","entrezGeneId":653259},{"hugoGeneSymbol":"AGAP2","entrezGeneId":116986},{"hugoGeneSymbol":"AGAP2-AS1","entrezGeneId":100130776},{"hugoGeneSymbol":"AGAP3","entrezGeneId":116988},{"hugoGeneSymbol":"AGAP4","entrezGeneId":119016},{"hugoGeneSymbol":"AGAP5","entrezGeneId":729092},{"hugoGeneSymbol":"AGAP6","entrezGeneId":414189},{"hugoGeneSymbol":"AGAP7P","entrezGeneId":653268},{"hugoGeneSymbol":"AGAP9","entrezGeneId":642517},{"hugoGeneSymbol":"AGBL1","entrezGeneId":123624},{"hugoGeneSymbol":"AGBL1-AS1","entrezGeneId":727915},{"hugoGeneSymbol":"AGBL2","entrezGeneId":79841},{"hugoGeneSymbol":"AGBL3","entrezGeneId":340351},{"hugoGeneSymbol":"AGBL4","entrezGeneId":84871},{"hugoGeneSymbol":"AGBL4-IT1","entrezGeneId":100874313},{"hugoGeneSymbol":"AGBL5","entrezGeneId":60509},{"hugoGeneSymbol":"AGBL5-AS1","entrezGeneId":100874031},{"hugoGeneSymbol":"AGBL5-IT1","entrezGeneId":106481744},{"hugoGeneSymbol":"AGER","entrezGeneId":177},{"hugoGeneSymbol":"AGFG1","entrezGeneId":3267},{"hugoGeneSymbol":"AGFG2","entrezGeneId":3268},{"hugoGeneSymbol":"AGGF1","entrezGeneId":55109},{"hugoGeneSymbol":"AGGF1P1","entrezGeneId":100132380},{"hugoGeneSymbol":"AGGF1P10","entrezGeneId":100288774},{"hugoGeneSymbol":"AGGF1P2","entrezGeneId":644435},{"hugoGeneSymbol":"AGGF1P3","entrezGeneId":391552},{"hugoGeneSymbol":"AGGF1P4","entrezGeneId":100129351},{"hugoGeneSymbol":"AGGF1P5","entrezGeneId":100128103},{"hugoGeneSymbol":"AGGF1P6","entrezGeneId":106481737},{"hugoGeneSymbol":"AGGF1P7","entrezGeneId":100132606},{"hugoGeneSymbol":"AGGF1P8","entrezGeneId":100128804},{"hugoGeneSymbol":"AGGF1P9","entrezGeneId":100127958},{"hugoGeneSymbol":"AGK","entrezGeneId":55750},{"hugoGeneSymbol":"AGKP1","entrezGeneId":359793},{"hugoGeneSymbol":"AGL","entrezGeneId":178},{"hugoGeneSymbol":"AGMAT","entrezGeneId":79814},{"hugoGeneSymbol":"AGMO","entrezGeneId":392636},{"hugoGeneSymbol":"AGMX2","entrezGeneId":179},{"hugoGeneSymbol":"AGO1","entrezGeneId":26523},{"hugoGeneSymbol":"AGO2","entrezGeneId":27161},{"hugoGeneSymbol":"AGO3","entrezGeneId":192669},{"hugoGeneSymbol":"AGO4","entrezGeneId":192670},{"hugoGeneSymbol":"AGPAT1","entrezGeneId":10554},{"hugoGeneSymbol":"AGPAT2","entrezGeneId":10555},{"hugoGeneSymbol":"AGPAT3","entrezGeneId":56894},{"hugoGeneSymbol":"AGPAT4","entrezGeneId":56895},{"hugoGeneSymbol":"AGPAT4-IT1","entrezGeneId":79992},{"hugoGeneSymbol":"AGPAT5","entrezGeneId":55326},{"hugoGeneSymbol":"AGPAT5P1","entrezGeneId":646231},{"hugoGeneSymbol":"AGPS","entrezGeneId":8540},{"hugoGeneSymbol":"AGR2","entrezGeneId":10551},{"hugoGeneSymbol":"AGR3","entrezGeneId":155465},{"hugoGeneSymbol":"AGRN","entrezGeneId":375790},{"hugoGeneSymbol":"AGRP","entrezGeneId":181},{"hugoGeneSymbol":"AGSPX","entrezGeneId":100188767},{"hugoGeneSymbol":"AGT","entrezGeneId":183},{"hugoGeneSymbol":"AGTPBP1","entrezGeneId":23287},{"hugoGeneSymbol":"AGTR1","entrezGeneId":185},{"hugoGeneSymbol":"AGTR2","entrezGeneId":186},{"hugoGeneSymbol":"AGTRAP","entrezGeneId":57085},{"hugoGeneSymbol":"AGXT","entrezGeneId":189},{"hugoGeneSymbol":"AGXT2","entrezGeneId":64902},{"hugoGeneSymbol":"AHCTF1","entrezGeneId":25909},{"hugoGeneSymbol":"AHCTF1P1","entrezGeneId":285116},{"hugoGeneSymbol":"AHCY","entrezGeneId":191},{"hugoGeneSymbol":"AHCYL1","entrezGeneId":10768},{"hugoGeneSymbol":"AHCYL2","entrezGeneId":23382},{"hugoGeneSymbol":"AHCYP1","entrezGeneId":340844},{"hugoGeneSymbol":"AHCYP2","entrezGeneId":392387},{"hugoGeneSymbol":"AHCYP3","entrezGeneId":402093},{"hugoGeneSymbol":"AHCYP4","entrezGeneId":129560},{"hugoGeneSymbol":"AHCYP5","entrezGeneId":391470},{"hugoGeneSymbol":"AHCYP6","entrezGeneId":100419714},{"hugoGeneSymbol":"AHCYP7","entrezGeneId":645486},{"hugoGeneSymbol":"AHCYP8","entrezGeneId":107063538},{"hugoGeneSymbol":"AHDC1","entrezGeneId":27245},{"hugoGeneSymbol":"AHI1","entrezGeneId":54806},{"hugoGeneSymbol":"AHNAK","entrezGeneId":79026},{"hugoGeneSymbol":"AHNAK2","entrezGeneId":113146},{"hugoGeneSymbol":"AHR","entrezGeneId":196},{"hugoGeneSymbol":"AHRR","entrezGeneId":57491},{"hugoGeneSymbol":"AHSA1","entrezGeneId":10598},{"hugoGeneSymbol":"AHSA2P","entrezGeneId":130872},{"hugoGeneSymbol":"AHSG","entrezGeneId":197},{"hugoGeneSymbol":"AHSP","entrezGeneId":51327},{"hugoGeneSymbol":"AIC","entrezGeneId":192},{"hugoGeneSymbol":"AICDA","entrezGeneId":57379},{"hugoGeneSymbol":"AIDA","entrezGeneId":64853},{"hugoGeneSymbol":"AIF1","entrezGeneId":199},{"hugoGeneSymbol":"AIF1L","entrezGeneId":83543},{"hugoGeneSymbol":"AIFM1","entrezGeneId":9131},{"hugoGeneSymbol":"AIFM1P1","entrezGeneId":645120},{"hugoGeneSymbol":"AIFM2","entrezGeneId":84883},{"hugoGeneSymbol":"AIFM3","entrezGeneId":150209},{"hugoGeneSymbol":"AIG1","entrezGeneId":51390},{"hugoGeneSymbol":"AIG1P1","entrezGeneId":106479028},{"hugoGeneSymbol":"AIH3","entrezGeneId":201},{"hugoGeneSymbol":"AIM2","entrezGeneId":9447},{"hugoGeneSymbol":"AIMP1","entrezGeneId":9255},{"hugoGeneSymbol":"AIMP1P1","entrezGeneId":170547},{"hugoGeneSymbol":"AIMP1P2","entrezGeneId":100873064},{"hugoGeneSymbol":"AIMP2","entrezGeneId":7965},{"hugoGeneSymbol":"AIP","entrezGeneId":9049},{"hugoGeneSymbol":"AIPL1","entrezGeneId":23746},{"hugoGeneSymbol":"AIR","entrezGeneId":7808},{"hugoGeneSymbol":"AIRE","entrezGeneId":326},{"hugoGeneSymbol":"AIRN","entrezGeneId":100271873},{"hugoGeneSymbol":"AIS1","entrezGeneId":373071},{"hugoGeneSymbol":"AIS2","entrezGeneId":378426},{"hugoGeneSymbol":"AIS3","entrezGeneId":378427},{"hugoGeneSymbol":"AIS4","entrezGeneId":619405},{"hugoGeneSymbol":"AITD1","entrezGeneId":387578},{"hugoGeneSymbol":"AITD2","entrezGeneId":387579},{"hugoGeneSymbol":"AITD4","entrezGeneId":387581},{"hugoGeneSymbol":"AJAP1","entrezGeneId":55966},{"hugoGeneSymbol":"AJM1","entrezGeneId":389813},{"hugoGeneSymbol":"AJUBA","entrezGeneId":84962},{"hugoGeneSymbol":"AK1","entrezGeneId":203},{"hugoGeneSymbol":"AK2","entrezGeneId":204},{"hugoGeneSymbol":"AK2P1","entrezGeneId":266920},{"hugoGeneSymbol":"AK2P2","entrezGeneId":339736},{"hugoGeneSymbol":"AK3","entrezGeneId":50808},{"hugoGeneSymbol":"AK3P2","entrezGeneId":100419074},{"hugoGeneSymbol":"AK3P3","entrezGeneId":100419075},{"hugoGeneSymbol":"AK3P4","entrezGeneId":100129959},{"hugoGeneSymbol":"AK3P5","entrezGeneId":100288319},{"hugoGeneSymbol":"AK3P6","entrezGeneId":100873789},{"hugoGeneSymbol":"AK4","entrezGeneId":205},{"hugoGeneSymbol":"AK4P1","entrezGeneId":206},{"hugoGeneSymbol":"AK4P2","entrezGeneId":100132104},{"hugoGeneSymbol":"AK4P3","entrezGeneId":645619},{"hugoGeneSymbol":"AK4P4","entrezGeneId":100128705},{"hugoGeneSymbol":"AK4P5","entrezGeneId":100526416},{"hugoGeneSymbol":"AK4P6","entrezGeneId":649288},{"hugoGeneSymbol":"AK5","entrezGeneId":26289},{"hugoGeneSymbol":"AK6","entrezGeneId":102157402},{"hugoGeneSymbol":"AK6P1","entrezGeneId":100132086},{"hugoGeneSymbol":"AK6P2","entrezGeneId":100128817},{"hugoGeneSymbol":"AK7","entrezGeneId":122481},{"hugoGeneSymbol":"AK8","entrezGeneId":158067},{"hugoGeneSymbol":"AK9","entrezGeneId":221264},{"hugoGeneSymbol":"AKAIN1","entrezGeneId":642597},{"hugoGeneSymbol":"AKAP1","entrezGeneId":8165},{"hugoGeneSymbol":"AKAP10","entrezGeneId":11216},{"hugoGeneSymbol":"AKAP11","entrezGeneId":11215},{"hugoGeneSymbol":"AKAP12","entrezGeneId":9590},{"hugoGeneSymbol":"AKAP13","entrezGeneId":11214},{"hugoGeneSymbol":"AKAP14","entrezGeneId":158798},{"hugoGeneSymbol":"AKAP17A","entrezGeneId":8227},{"hugoGeneSymbol":"AKAP17BP","entrezGeneId":139516},{"hugoGeneSymbol":"AKAP2","entrezGeneId":11217},{"hugoGeneSymbol":"AKAP3","entrezGeneId":10566},{"hugoGeneSymbol":"AKAP4","entrezGeneId":8852},{"hugoGeneSymbol":"AKAP5","entrezGeneId":9495},{"hugoGeneSymbol":"AKAP6","entrezGeneId":9472},{"hugoGeneSymbol":"AKAP7","entrezGeneId":9465},{"hugoGeneSymbol":"AKAP8","entrezGeneId":10270},{"hugoGeneSymbol":"AKAP8L","entrezGeneId":26993},{"hugoGeneSymbol":"AKAP8P1","entrezGeneId":646114},{"hugoGeneSymbol":"AKAP9","entrezGeneId":10142},{"hugoGeneSymbol":"AKIP1","entrezGeneId":56672},{"hugoGeneSymbol":"AKIRIN1","entrezGeneId":79647},{"hugoGeneSymbol":"AKIRIN1P1","entrezGeneId":100418731},{"hugoGeneSymbol":"AKIRIN1P2","entrezGeneId":106480306},{"hugoGeneSymbol":"AKIRIN2","entrezGeneId":55122},{"hugoGeneSymbol":"AKIRIN2P1","entrezGeneId":100216487},{"hugoGeneSymbol":"AKNA","entrezGeneId":80709},{"hugoGeneSymbol":"AKNAD1","entrezGeneId":254268},{"hugoGeneSymbol":"AKR1A1","entrezGeneId":10327},{"hugoGeneSymbol":"AKR1B1","entrezGeneId":231},{"hugoGeneSymbol":"AKR1B10","entrezGeneId":57016},{"hugoGeneSymbol":"AKR1B10P1","entrezGeneId":340888},{"hugoGeneSymbol":"AKR1B10P2","entrezGeneId":643582},{"hugoGeneSymbol":"AKR1B15","entrezGeneId":441282},{"hugoGeneSymbol":"AKR1B1P1","entrezGeneId":401982},{"hugoGeneSymbol":"AKR1B1P2","entrezGeneId":236},{"hugoGeneSymbol":"AKR1B1P3","entrezGeneId":729347},{"hugoGeneSymbol":"AKR1B1P4","entrezGeneId":390402},{"hugoGeneSymbol":"AKR1B1P5","entrezGeneId":390482},{"hugoGeneSymbol":"AKR1B1P6","entrezGeneId":100129769},{"hugoGeneSymbol":"AKR1B1P7","entrezGeneId":126242},{"hugoGeneSymbol":"AKR1B1P8","entrezGeneId":392525},{"hugoGeneSymbol":"AKR1C1","entrezGeneId":1645},{"hugoGeneSymbol":"AKR1C2","entrezGeneId":1646},{"hugoGeneSymbol":"AKR1C3","entrezGeneId":8644},{"hugoGeneSymbol":"AKR1C4","entrezGeneId":1109},{"hugoGeneSymbol":"AKR1C5P","entrezGeneId":100996684},{"hugoGeneSymbol":"AKR1C6P","entrezGeneId":389932},{"hugoGeneSymbol":"AKR1C7P","entrezGeneId":648947},{"hugoGeneSymbol":"AKR1C8P","entrezGeneId":340811},{"hugoGeneSymbol":"AKR1D1","entrezGeneId":6718},{"hugoGeneSymbol":"AKR1D1P1","entrezGeneId":80701},{"hugoGeneSymbol":"AKR1E2","entrezGeneId":83592},{"hugoGeneSymbol":"AKR7A2","entrezGeneId":8574},{"hugoGeneSymbol":"AKR7A2P1","entrezGeneId":246182},{"hugoGeneSymbol":"AKR7A3","entrezGeneId":22977},{"hugoGeneSymbol":"AKR7L","entrezGeneId":246181},{"hugoGeneSymbol":"AKT1","entrezGeneId":207},{"hugoGeneSymbol":"AKT1S1","entrezGeneId":84335},{"hugoGeneSymbol":"AKT2","entrezGeneId":208},{"hugoGeneSymbol":"AKT3","entrezGeneId":10000},{"hugoGeneSymbol":"AKT3-IT1","entrezGeneId":100874263},{"hugoGeneSymbol":"AKTIP","entrezGeneId":64400},{"hugoGeneSymbol":"ALAD","entrezGeneId":210},{"hugoGeneSymbol":"ALAS1","entrezGeneId":211},{"hugoGeneSymbol":"ALAS2","entrezGeneId":212},{"hugoGeneSymbol":"ALB","entrezGeneId":213},{"hugoGeneSymbol":"ALCAM","entrezGeneId":214},{"hugoGeneSymbol":"ALDH16A1","entrezGeneId":126133},{"hugoGeneSymbol":"ALDH18A1","entrezGeneId":5832},{"hugoGeneSymbol":"ALDH1A1","entrezGeneId":216},{"hugoGeneSymbol":"ALDH1A2","entrezGeneId":8854},{"hugoGeneSymbol":"ALDH1A3","entrezGeneId":220},{"hugoGeneSymbol":"ALDH1B1","entrezGeneId":219},{"hugoGeneSymbol":"ALDH1L1","entrezGeneId":10840},{"hugoGeneSymbol":"ALDH1L1-AS1","entrezGeneId":100874204},{"hugoGeneSymbol":"ALDH1L1-AS2","entrezGeneId":100862662},{"hugoGeneSymbol":"ALDH1L2","entrezGeneId":160428},{"hugoGeneSymbol":"ALDH2","entrezGeneId":217},{"hugoGeneSymbol":"ALDH3A1","entrezGeneId":218},{"hugoGeneSymbol":"ALDH3A2","entrezGeneId":224},{"hugoGeneSymbol":"ALDH3B1","entrezGeneId":221},{"hugoGeneSymbol":"ALDH3B2","entrezGeneId":222},{"hugoGeneSymbol":"ALDH4A1","entrezGeneId":8659},{"hugoGeneSymbol":"ALDH5A1","entrezGeneId":7915},{"hugoGeneSymbol":"ALDH6A1","entrezGeneId":4329},{"hugoGeneSymbol":"ALDH7A1","entrezGeneId":501},{"hugoGeneSymbol":"ALDH7A1P1","entrezGeneId":541},{"hugoGeneSymbol":"ALDH7A1P2","entrezGeneId":542},{"hugoGeneSymbol":"ALDH7A1P3","entrezGeneId":543},{"hugoGeneSymbol":"ALDH7A1P4","entrezGeneId":544},{"hugoGeneSymbol":"ALDH8A1","entrezGeneId":64577},{"hugoGeneSymbol":"ALDH9A1","entrezGeneId":223},{"hugoGeneSymbol":"ALDOA","entrezGeneId":226},{"hugoGeneSymbol":"ALDOAP1","entrezGeneId":391538},{"hugoGeneSymbol":"ALDOAP2","entrezGeneId":228},{"hugoGeneSymbol":"ALDOB","entrezGeneId":229},{"hugoGeneSymbol":"ALDOC","entrezGeneId":230},{"hugoGeneSymbol":"ALG1","entrezGeneId":56052},{"hugoGeneSymbol":"ALG10","entrezGeneId":84920},{"hugoGeneSymbol":"ALG10B","entrezGeneId":144245},{"hugoGeneSymbol":"ALG11","entrezGeneId":440138},{"hugoGeneSymbol":"ALG12","entrezGeneId":79087},{"hugoGeneSymbol":"ALG13","entrezGeneId":79868},{"hugoGeneSymbol":"ALG13-AS1","entrezGeneId":106478971},{"hugoGeneSymbol":"ALG14","entrezGeneId":199857},{"hugoGeneSymbol":"ALG1L","entrezGeneId":200810},{"hugoGeneSymbol":"ALG1L10P","entrezGeneId":106479037},{"hugoGeneSymbol":"ALG1L11P","entrezGeneId":106480789},{"hugoGeneSymbol":"ALG1L12P","entrezGeneId":100421097},{"hugoGeneSymbol":"ALG1L13P","entrezGeneId":106479038},{"hugoGeneSymbol":"ALG1L14P","entrezGeneId":100996649},{"hugoGeneSymbol":"ALG1L15P","entrezGeneId":730086},{"hugoGeneSymbol":"ALG1L2","entrezGeneId":644974},{"hugoGeneSymbol":"ALG1L3P","entrezGeneId":100132066},{"hugoGeneSymbol":"ALG1L5P","entrezGeneId":647415},{"hugoGeneSymbol":"ALG1L6P","entrezGeneId":339879},{"hugoGeneSymbol":"ALG1L7P","entrezGeneId":728263},{"hugoGeneSymbol":"ALG1L8P","entrezGeneId":645015},{"hugoGeneSymbol":"ALG1L9P","entrezGeneId":285407},{"hugoGeneSymbol":"ALG2","entrezGeneId":85365},{"hugoGeneSymbol":"ALG3","entrezGeneId":10195},{"hugoGeneSymbol":"ALG3P1","entrezGeneId":442131},{"hugoGeneSymbol":"ALG5","entrezGeneId":29880},{"hugoGeneSymbol":"ALG6","entrezGeneId":29929},{"hugoGeneSymbol":"ALG8","entrezGeneId":79053},{"hugoGeneSymbol":"ALG9","entrezGeneId":79796},{"hugoGeneSymbol":"ALG9-IT1","entrezGeneId":100874303},{"hugoGeneSymbol":"ALK","entrezGeneId":238},{"hugoGeneSymbol":"ALKAL1","entrezGeneId":389658},{"hugoGeneSymbol":"ALKAL2","entrezGeneId":285016},{"hugoGeneSymbol":"ALKBH1","entrezGeneId":8846},{"hugoGeneSymbol":"ALKBH2","entrezGeneId":121642},{"hugoGeneSymbol":"ALKBH3","entrezGeneId":221120},{"hugoGeneSymbol":"ALKBH3-AS1","entrezGeneId":100507300},{"hugoGeneSymbol":"ALKBH4","entrezGeneId":54784},{"hugoGeneSymbol":"ALKBH5","entrezGeneId":54890},{"hugoGeneSymbol":"ALKBH6","entrezGeneId":84964},{"hugoGeneSymbol":"ALKBH7","entrezGeneId":84266},{"hugoGeneSymbol":"ALKBH8","entrezGeneId":91801},{"hugoGeneSymbol":"ALL1","entrezGeneId":100310785},{"hugoGeneSymbol":"ALL2","entrezGeneId":100310786},{"hugoGeneSymbol":"ALLC","entrezGeneId":55821},{"hugoGeneSymbol":"ALMS1","entrezGeneId":7840},{"hugoGeneSymbol":"ALMS1-IT1","entrezGeneId":100874291},{"hugoGeneSymbol":"ALMS1P1","entrezGeneId":200420},{"hugoGeneSymbol":"ALOX12","entrezGeneId":239},{"hugoGeneSymbol":"ALOX12-AS1","entrezGeneId":100506713},{"hugoGeneSymbol":"ALOX12B","entrezGeneId":242},{"hugoGeneSymbol":"ALOX12P1","entrezGeneId":243},{"hugoGeneSymbol":"ALOX12P2","entrezGeneId":245},{"hugoGeneSymbol":"ALOX15","entrezGeneId":246},{"hugoGeneSymbol":"ALOX15B","entrezGeneId":247},{"hugoGeneSymbol":"ALOX15P1","entrezGeneId":100652883},{"hugoGeneSymbol":"ALOX15P2","entrezGeneId":642959},{"hugoGeneSymbol":"ALOX5","entrezGeneId":240},{"hugoGeneSymbol":"ALOX5AP","entrezGeneId":241},{"hugoGeneSymbol":"ALOXE3","entrezGeneId":59344},{"hugoGeneSymbol":"ALOXE3P1","entrezGeneId":100420216},{"hugoGeneSymbol":"ALPI","entrezGeneId":248},{"hugoGeneSymbol":"ALPK1","entrezGeneId":80216},{"hugoGeneSymbol":"ALPK2","entrezGeneId":115701},{"hugoGeneSymbol":"ALPK3","entrezGeneId":57538},{"hugoGeneSymbol":"ALPL","entrezGeneId":249},{"hugoGeneSymbol":"ALPP","entrezGeneId":250},{"hugoGeneSymbol":"ALPPL2","entrezGeneId":251},{"hugoGeneSymbol":"ALPPP","entrezGeneId":260330},{"hugoGeneSymbol":"ALPQTL1","entrezGeneId":100196909},{"hugoGeneSymbol":"ALPQTL2","entrezGeneId":100196914},{"hugoGeneSymbol":"ALPQTL3","entrezGeneId":100196915},{"hugoGeneSymbol":"ALPQTL4","entrezGeneId":100196916},{"hugoGeneSymbol":"ALRH","entrezGeneId":260328},{"hugoGeneSymbol":"ALS2","entrezGeneId":57679},{"hugoGeneSymbol":"ALS2CL","entrezGeneId":259173},{"hugoGeneSymbol":"ALS2CR12","entrezGeneId":130540},{"hugoGeneSymbol":"ALS3","entrezGeneId":253},{"hugoGeneSymbol":"ALS5","entrezGeneId":255},{"hugoGeneSymbol":"ALS7","entrezGeneId":406238},{"hugoGeneSymbol":"ALX1","entrezGeneId":8092},{"hugoGeneSymbol":"ALX3","entrezGeneId":257},{"hugoGeneSymbol":"ALX4","entrezGeneId":60529},{"hugoGeneSymbol":"ALYREF","entrezGeneId":10189},{"hugoGeneSymbol":"AMACR","entrezGeneId":23600},{"hugoGeneSymbol":"AMBN","entrezGeneId":258},{"hugoGeneSymbol":"AMBP","entrezGeneId":259},{"hugoGeneSymbol":"AMBRA1","entrezGeneId":55626},{"hugoGeneSymbol":"AMCN","entrezGeneId":261},{"hugoGeneSymbol":"AMCX5","entrezGeneId":619510},{"hugoGeneSymbol":"AMD1","entrezGeneId":262},{"hugoGeneSymbol":"AMD1P1","entrezGeneId":100133024},{"hugoGeneSymbol":"AMD1P2","entrezGeneId":263},{"hugoGeneSymbol":"AMD1P3","entrezGeneId":728931},{"hugoGeneSymbol":"AMD1P4","entrezGeneId":100129761},{"hugoGeneSymbol":"AMDHD1","entrezGeneId":144193},{"hugoGeneSymbol":"AMDHD2","entrezGeneId":51005},{"hugoGeneSymbol":"AMELX","entrezGeneId":265},{"hugoGeneSymbol":"AMELY","entrezGeneId":266},{"hugoGeneSymbol":"AMER1","entrezGeneId":139285},{"hugoGeneSymbol":"AMER2","entrezGeneId":219287},{"hugoGeneSymbol":"AMER3","entrezGeneId":205147},{"hugoGeneSymbol":"AMFR","entrezGeneId":267},{"hugoGeneSymbol":"AMH","entrezGeneId":268},{"hugoGeneSymbol":"AMHR2","entrezGeneId":269},{"hugoGeneSymbol":"AMIGO1","entrezGeneId":57463},{"hugoGeneSymbol":"AMIGO2","entrezGeneId":347902},{"hugoGeneSymbol":"AMIGO3","entrezGeneId":386724},{"hugoGeneSymbol":"AMLCR2","entrezGeneId":9163},{"hugoGeneSymbol":"AMMEC","entrezGeneId":100499260},{"hugoGeneSymbol":"AMMECR1","entrezGeneId":9949},{"hugoGeneSymbol":"AMMECR1-IT1","entrezGeneId":100874352},{"hugoGeneSymbol":"AMMECR1L","entrezGeneId":83607},{"hugoGeneSymbol":"AMMECR1LP1","entrezGeneId":100420921},{"hugoGeneSymbol":"AMN","entrezGeneId":81693},{"hugoGeneSymbol":"AMN1","entrezGeneId":196394},{"hugoGeneSymbol":"AMOT","entrezGeneId":154796},{"hugoGeneSymbol":"AMOTL1","entrezGeneId":154810},{"hugoGeneSymbol":"AMOTL2","entrezGeneId":51421},{"hugoGeneSymbol":"AMPD1","entrezGeneId":270},{"hugoGeneSymbol":"AMPD2","entrezGeneId":271},{"hugoGeneSymbol":"AMPD3","entrezGeneId":272},{"hugoGeneSymbol":"AMPH","entrezGeneId":273},{"hugoGeneSymbol":"AMT","entrezGeneId":275},{"hugoGeneSymbol":"AMTN","entrezGeneId":401138},{"hugoGeneSymbol":"AMY1A","entrezGeneId":276},{"hugoGeneSymbol":"AMY1B","entrezGeneId":277},{"hugoGeneSymbol":"AMY1C","entrezGeneId":278},{"hugoGeneSymbol":"AMY2A","entrezGeneId":279},{"hugoGeneSymbol":"AMY2B","entrezGeneId":280},{"hugoGeneSymbol":"AMYP1","entrezGeneId":281},{"hugoGeneSymbol":"AMZ1","entrezGeneId":155185},{"hugoGeneSymbol":"AMZ2","entrezGeneId":51321},{"hugoGeneSymbol":"AMZ2P1","entrezGeneId":201283},{"hugoGeneSymbol":"AMZ2P2","entrezGeneId":100421018},{"hugoGeneSymbol":"AN","entrezGeneId":100187761},{"hugoGeneSymbol":"ANAPC1","entrezGeneId":64682},{"hugoGeneSymbol":"ANAPC10","entrezGeneId":10393},{"hugoGeneSymbol":"ANAPC10P1","entrezGeneId":729198},{"hugoGeneSymbol":"ANAPC11","entrezGeneId":51529},{"hugoGeneSymbol":"ANAPC13","entrezGeneId":25847},{"hugoGeneSymbol":"ANAPC15","entrezGeneId":25906},{"hugoGeneSymbol":"ANAPC16","entrezGeneId":119504},{"hugoGeneSymbol":"ANAPC1P1","entrezGeneId":100286979},{"hugoGeneSymbol":"ANAPC2","entrezGeneId":29882},{"hugoGeneSymbol":"ANAPC4","entrezGeneId":29945},{"hugoGeneSymbol":"ANAPC5","entrezGeneId":51433},{"hugoGeneSymbol":"ANAPC7","entrezGeneId":51434},{"hugoGeneSymbol":"ANBC","entrezGeneId":114293},{"hugoGeneSymbol":"ANC","entrezGeneId":8066},{"hugoGeneSymbol":"ANCR","entrezGeneId":282},{"hugoGeneSymbol":"ANG","entrezGeneId":283},{"hugoGeneSymbol":"ANGEL1","entrezGeneId":23357},{"hugoGeneSymbol":"ANGEL2","entrezGeneId":90806},{"hugoGeneSymbol":"ANGPT1","entrezGeneId":284},{"hugoGeneSymbol":"ANGPT2","entrezGeneId":285},{"hugoGeneSymbol":"ANGPT4","entrezGeneId":51378},{"hugoGeneSymbol":"ANGPTL1","entrezGeneId":9068},{"hugoGeneSymbol":"ANGPTL2","entrezGeneId":23452},{"hugoGeneSymbol":"ANGPTL3","entrezGeneId":27329},{"hugoGeneSymbol":"ANGPTL4","entrezGeneId":51129},{"hugoGeneSymbol":"ANGPTL5","entrezGeneId":253935},{"hugoGeneSymbol":"ANGPTL6","entrezGeneId":83854},{"hugoGeneSymbol":"ANGPTL7","entrezGeneId":10218},{"hugoGeneSymbol":"ANGPTL8","entrezGeneId":55908},{"hugoGeneSymbol":"ANHX","entrezGeneId":647589},{"hugoGeneSymbol":"ANIB1","entrezGeneId":116833},{"hugoGeneSymbol":"ANIB10","entrezGeneId":100271689},{"hugoGeneSymbol":"ANIB11","entrezGeneId":100750328},{"hugoGeneSymbol":"ANIB2","entrezGeneId":449013},{"hugoGeneSymbol":"ANIB3","entrezGeneId":497657},{"hugoGeneSymbol":"ANIB4","entrezGeneId":724058},{"hugoGeneSymbol":"ANIB5","entrezGeneId":100188810},{"hugoGeneSymbol":"ANIB6","entrezGeneId":100188858},{"hugoGeneSymbol":"ANIB7","entrezGeneId":100188885},{"hugoGeneSymbol":"ANIB8","entrezGeneId":100188886},{"hugoGeneSymbol":"ANIB9","entrezGeneId":100271688},{"hugoGeneSymbol":"ANIC","entrezGeneId":550625},{"hugoGeneSymbol":"ANK1","entrezGeneId":286},{"hugoGeneSymbol":"ANK2","entrezGeneId":287},{"hugoGeneSymbol":"ANK3","entrezGeneId":288},{"hugoGeneSymbol":"ANKAR","entrezGeneId":150709},{"hugoGeneSymbol":"ANKDD1A","entrezGeneId":348094},{"hugoGeneSymbol":"ANKDD1B","entrezGeneId":728780},{"hugoGeneSymbol":"ANKEF1","entrezGeneId":63926},{"hugoGeneSymbol":"ANKFN1","entrezGeneId":162282},{"hugoGeneSymbol":"ANKFY1","entrezGeneId":51479},{"hugoGeneSymbol":"ANKH","entrezGeneId":56172},{"hugoGeneSymbol":"ANKHD1","entrezGeneId":54882},{"hugoGeneSymbol":"ANKHD1-EIF4EBP3","entrezGeneId":404734},{"hugoGeneSymbol":"ANKIB1","entrezGeneId":54467},{"hugoGeneSymbol":"ANKK1","entrezGeneId":255239},{"hugoGeneSymbol":"ANKLE1","entrezGeneId":126549},{"hugoGeneSymbol":"ANKLE2","entrezGeneId":23141},{"hugoGeneSymbol":"ANKMY1","entrezGeneId":51281},{"hugoGeneSymbol":"ANKMY2","entrezGeneId":57037},{"hugoGeneSymbol":"ANKRA2","entrezGeneId":57763},{"hugoGeneSymbol":"ANKRD1","entrezGeneId":27063},{"hugoGeneSymbol":"ANKRD10","entrezGeneId":55608},{"hugoGeneSymbol":"ANKRD10-IT1","entrezGeneId":100505494},{"hugoGeneSymbol":"ANKRD11","entrezGeneId":29123},{"hugoGeneSymbol":"ANKRD12","entrezGeneId":23253},{"hugoGeneSymbol":"ANKRD13A","entrezGeneId":88455},{"hugoGeneSymbol":"ANKRD13B","entrezGeneId":124930},{"hugoGeneSymbol":"ANKRD13C","entrezGeneId":81573},{"hugoGeneSymbol":"ANKRD13D","entrezGeneId":338692},{"hugoGeneSymbol":"ANKRD16","entrezGeneId":54522},{"hugoGeneSymbol":"ANKRD17","entrezGeneId":26057},{"hugoGeneSymbol":"ANKRD18A","entrezGeneId":253650},{"hugoGeneSymbol":"ANKRD18B","entrezGeneId":441459},{"hugoGeneSymbol":"ANKRD18CP","entrezGeneId":101926917},{"hugoGeneSymbol":"ANKRD18DP","entrezGeneId":348840},{"hugoGeneSymbol":"ANKRD18EP","entrezGeneId":100131031},{"hugoGeneSymbol":"ANKRD19P","entrezGeneId":138649},{"hugoGeneSymbol":"ANKRD2","entrezGeneId":26287},{"hugoGeneSymbol":"ANKRD20A1","entrezGeneId":84210},{"hugoGeneSymbol":"ANKRD20A10P","entrezGeneId":100421422},{"hugoGeneSymbol":"ANKRD20A11P","entrezGeneId":391267},{"hugoGeneSymbol":"ANKRD20A12P","entrezGeneId":100874392},{"hugoGeneSymbol":"ANKRD20A13P","entrezGeneId":100132733},{"hugoGeneSymbol":"ANKRD20A14P","entrezGeneId":100533719},{"hugoGeneSymbol":"ANKRD20A15P","entrezGeneId":100533720},{"hugoGeneSymbol":"ANKRD20A16P","entrezGeneId":100421427},{"hugoGeneSymbol":"ANKRD20A17P","entrezGeneId":100421363},{"hugoGeneSymbol":"ANKRD20A18P","entrezGeneId":391269},{"hugoGeneSymbol":"ANKRD20A19P","entrezGeneId":400110},{"hugoGeneSymbol":"ANKRD20A2","entrezGeneId":441430},{"hugoGeneSymbol":"ANKRD20A20P","entrezGeneId":728788},{"hugoGeneSymbol":"ANKRD20A21P","entrezGeneId":102723552},{"hugoGeneSymbol":"ANKRD20A3","entrezGeneId":441425},{"hugoGeneSymbol":"ANKRD20A4","entrezGeneId":728747},{"hugoGeneSymbol":"ANKRD20A4-ANKRD20A20P","entrezGeneId":110006327},{"hugoGeneSymbol":"ANKRD20A5P","entrezGeneId":440482},{"hugoGeneSymbol":"ANKRD20A6P","entrezGeneId":728157},{"hugoGeneSymbol":"ANKRD20A7P","entrezGeneId":653436},{"hugoGeneSymbol":"ANKRD20A8P","entrezGeneId":729171},{"hugoGeneSymbol":"ANKRD20A9P","entrezGeneId":284232},{"hugoGeneSymbol":"ANKRD22","entrezGeneId":118932},{"hugoGeneSymbol":"ANKRD23","entrezGeneId":200539},{"hugoGeneSymbol":"ANKRD24","entrezGeneId":170961},{"hugoGeneSymbol":"ANKRD26","entrezGeneId":22852},{"hugoGeneSymbol":"ANKRD26P1","entrezGeneId":124149},{"hugoGeneSymbol":"ANKRD26P2","entrezGeneId":646929},{"hugoGeneSymbol":"ANKRD26P3","entrezGeneId":100101938},{"hugoGeneSymbol":"ANKRD26P4","entrezGeneId":100873882},{"hugoGeneSymbol":"ANKRD27","entrezGeneId":84079},{"hugoGeneSymbol":"ANKRD28","entrezGeneId":23243},{"hugoGeneSymbol":"ANKRD29","entrezGeneId":147463},{"hugoGeneSymbol":"ANKRD30A","entrezGeneId":91074},{"hugoGeneSymbol":"ANKRD30B","entrezGeneId":374860},{"hugoGeneSymbol":"ANKRD30BL","entrezGeneId":554226},{"hugoGeneSymbol":"ANKRD30BP1","entrezGeneId":642460},{"hugoGeneSymbol":"ANKRD30BP2","entrezGeneId":149992},{"hugoGeneSymbol":"ANKRD30BP3","entrezGeneId":338579},{"hugoGeneSymbol":"ANKRD31","entrezGeneId":256006},{"hugoGeneSymbol":"ANKRD33","entrezGeneId":341405},{"hugoGeneSymbol":"ANKRD33B","entrezGeneId":651746},{"hugoGeneSymbol":"ANKRD33B-AS1","entrezGeneId":100874247},{"hugoGeneSymbol":"ANKRD34A","entrezGeneId":284615},{"hugoGeneSymbol":"ANKRD34B","entrezGeneId":340120},{"hugoGeneSymbol":"ANKRD34C","entrezGeneId":390616},{"hugoGeneSymbol":"ANKRD34C-AS1","entrezGeneId":729911},{"hugoGeneSymbol":"ANKRD35","entrezGeneId":148741},{"hugoGeneSymbol":"ANKRD36","entrezGeneId":375248},{"hugoGeneSymbol":"ANKRD36B","entrezGeneId":57730},{"hugoGeneSymbol":"ANKRD36BP1","entrezGeneId":84832},{"hugoGeneSymbol":"ANKRD36BP2","entrezGeneId":645784},{"hugoGeneSymbol":"ANKRD36C","entrezGeneId":400986},{"hugoGeneSymbol":"ANKRD36P1","entrezGeneId":100132420},{"hugoGeneSymbol":"ANKRD37","entrezGeneId":353322},{"hugoGeneSymbol":"ANKRD39","entrezGeneId":51239},{"hugoGeneSymbol":"ANKRD40","entrezGeneId":91369},{"hugoGeneSymbol":"ANKRD42","entrezGeneId":338699},{"hugoGeneSymbol":"ANKRD44","entrezGeneId":91526},{"hugoGeneSymbol":"ANKRD44-IT1","entrezGeneId":101927547},{"hugoGeneSymbol":"ANKRD45","entrezGeneId":339416},{"hugoGeneSymbol":"ANKRD46","entrezGeneId":157567},{"hugoGeneSymbol":"ANKRD49","entrezGeneId":54851},{"hugoGeneSymbol":"ANKRD50","entrezGeneId":57182},{"hugoGeneSymbol":"ANKRD52","entrezGeneId":283373},{"hugoGeneSymbol":"ANKRD53","entrezGeneId":79998},{"hugoGeneSymbol":"ANKRD54","entrezGeneId":129138},{"hugoGeneSymbol":"ANKRD54P1","entrezGeneId":100419962},{"hugoGeneSymbol":"ANKRD55","entrezGeneId":79722},{"hugoGeneSymbol":"ANKRD57P1","entrezGeneId":100131984},{"hugoGeneSymbol":"ANKRD6","entrezGeneId":22881},{"hugoGeneSymbol":"ANKRD60","entrezGeneId":140731},{"hugoGeneSymbol":"ANKRD61","entrezGeneId":100310846},{"hugoGeneSymbol":"ANKRD62","entrezGeneId":342850},{"hugoGeneSymbol":"ANKRD62P1","entrezGeneId":107080639},{"hugoGeneSymbol":"ANKRD62P1-PARP4P3","entrezGeneId":23783},{"hugoGeneSymbol":"ANKRD63","entrezGeneId":100131244},{"hugoGeneSymbol":"ANKRD65","entrezGeneId":441869},{"hugoGeneSymbol":"ANKRD66","entrezGeneId":100287718},{"hugoGeneSymbol":"ANKRD7","entrezGeneId":56311},{"hugoGeneSymbol":"ANKRD9","entrezGeneId":122416},{"hugoGeneSymbol":"ANKS1A","entrezGeneId":23294},{"hugoGeneSymbol":"ANKS1B","entrezGeneId":56899},{"hugoGeneSymbol":"ANKS3","entrezGeneId":124401},{"hugoGeneSymbol":"ANKS4B","entrezGeneId":257629},{"hugoGeneSymbol":"ANKS6","entrezGeneId":203286},{"hugoGeneSymbol":"ANKUB1","entrezGeneId":389161},{"hugoGeneSymbol":"ANKZF1","entrezGeneId":55139},{"hugoGeneSymbol":"ANLN","entrezGeneId":54443},{"hugoGeneSymbol":"ANMA","entrezGeneId":80871},{"hugoGeneSymbol":"ANO1","entrezGeneId":55107},{"hugoGeneSymbol":"ANO1-AS1","entrezGeneId":100873981},{"hugoGeneSymbol":"ANO10","entrezGeneId":55129},{"hugoGeneSymbol":"ANO2","entrezGeneId":57101},{"hugoGeneSymbol":"ANO3","entrezGeneId":63982},{"hugoGeneSymbol":"ANO4","entrezGeneId":121601},{"hugoGeneSymbol":"ANO5","entrezGeneId":203859},{"hugoGeneSymbol":"ANO6","entrezGeneId":196527},{"hugoGeneSymbol":"ANO7","entrezGeneId":50636},{"hugoGeneSymbol":"ANO7L1","entrezGeneId":101927546},{"hugoGeneSymbol":"ANO8","entrezGeneId":57719},{"hugoGeneSymbol":"ANO9","entrezGeneId":338440},{"hugoGeneSymbol":"ANON1","entrezGeneId":171514},{"hugoGeneSymbol":"ANOP1","entrezGeneId":289},{"hugoGeneSymbol":"ANOS1","entrezGeneId":3730},{"hugoGeneSymbol":"ANOS2P","entrezGeneId":3734},{"hugoGeneSymbol":"ANP32A","entrezGeneId":8125},{"hugoGeneSymbol":"ANP32A-IT1","entrezGeneId":80035},{"hugoGeneSymbol":"ANP32AP1","entrezGeneId":723972},{"hugoGeneSymbol":"ANP32B","entrezGeneId":10541},{"hugoGeneSymbol":"ANP32BP1","entrezGeneId":646791},{"hugoGeneSymbol":"ANP32BP2","entrezGeneId":100130708},{"hugoGeneSymbol":"ANP32BP3","entrezGeneId":100652899},{"hugoGeneSymbol":"ANP32C","entrezGeneId":23520},{"hugoGeneSymbol":"ANP32D","entrezGeneId":23519},{"hugoGeneSymbol":"ANP32E","entrezGeneId":81611},{"hugoGeneSymbol":"ANPEP","entrezGeneId":290},{"hugoGeneSymbol":"ANTXR1","entrezGeneId":84168},{"hugoGeneSymbol":"ANTXR2","entrezGeneId":118429},{"hugoGeneSymbol":"ANTXRL","entrezGeneId":195977},{"hugoGeneSymbol":"ANTXRLP1","entrezGeneId":100996567},{"hugoGeneSymbol":"ANXA1","entrezGeneId":301},{"hugoGeneSymbol":"ANXA10","entrezGeneId":11199},{"hugoGeneSymbol":"ANXA11","entrezGeneId":311},{"hugoGeneSymbol":"ANXA13","entrezGeneId":312},{"hugoGeneSymbol":"ANXA2","entrezGeneId":302},{"hugoGeneSymbol":"ANXA2P1","entrezGeneId":303},{"hugoGeneSymbol":"ANXA2P2","entrezGeneId":304},{"hugoGeneSymbol":"ANXA2P3","entrezGeneId":305},{"hugoGeneSymbol":"ANXA2R","entrezGeneId":389289},{"hugoGeneSymbol":"ANXA3","entrezGeneId":306},{"hugoGeneSymbol":"ANXA4","entrezGeneId":307},{"hugoGeneSymbol":"ANXA5","entrezGeneId":308},{"hugoGeneSymbol":"ANXA6","entrezGeneId":309},{"hugoGeneSymbol":"ANXA7","entrezGeneId":310},{"hugoGeneSymbol":"ANXA8","entrezGeneId":653145},{"hugoGeneSymbol":"ANXA8L1","entrezGeneId":728113},{"hugoGeneSymbol":"ANXA9","entrezGeneId":8416},{"hugoGeneSymbol":"AOAH","entrezGeneId":313},{"hugoGeneSymbol":"AOAH-IT1","entrezGeneId":100874264},{"hugoGeneSymbol":"AOC1","entrezGeneId":26},{"hugoGeneSymbol":"AOC2","entrezGeneId":314},{"hugoGeneSymbol":"AOC3","entrezGeneId":8639},{"hugoGeneSymbol":"AOC4P","entrezGeneId":90586},{"hugoGeneSymbol":"AOCH","entrezGeneId":93956},{"hugoGeneSymbol":"AOMS1","entrezGeneId":65076},{"hugoGeneSymbol":"AOMS2","entrezGeneId":65077},{"hugoGeneSymbol":"AOS","entrezGeneId":100188340},{"hugoGeneSymbol":"AOX1","entrezGeneId":316},{"hugoGeneSymbol":"AOX2P","entrezGeneId":344454},{"hugoGeneSymbol":"AOX3P","entrezGeneId":107126360},{"hugoGeneSymbol":"AOX3P-AOX2P","entrezGeneId":107161151},{"hugoGeneSymbol":"AP1AR","entrezGeneId":55435},{"hugoGeneSymbol":"AP1B1","entrezGeneId":162},{"hugoGeneSymbol":"AP1B1P1","entrezGeneId":23782},{"hugoGeneSymbol":"AP1B1P2","entrezGeneId":23781},{"hugoGeneSymbol":"AP1G1","entrezGeneId":164},{"hugoGeneSymbol":"AP1G2","entrezGeneId":8906},{"hugoGeneSymbol":"AP1M1","entrezGeneId":8907},{"hugoGeneSymbol":"AP1M2","entrezGeneId":10053},{"hugoGeneSymbol":"AP1S1","entrezGeneId":1174},{"hugoGeneSymbol":"AP1S2","entrezGeneId":8905},{"hugoGeneSymbol":"AP1S2P1","entrezGeneId":106480305},{"hugoGeneSymbol":"AP1S3","entrezGeneId":130340},{"hugoGeneSymbol":"AP2A1","entrezGeneId":160},{"hugoGeneSymbol":"AP2A2","entrezGeneId":161},{"hugoGeneSymbol":"AP2B1","entrezGeneId":163},{"hugoGeneSymbol":"AP2M1","entrezGeneId":1173},{"hugoGeneSymbol":"AP2S1","entrezGeneId":1175},{"hugoGeneSymbol":"AP3B1","entrezGeneId":8546},{"hugoGeneSymbol":"AP3B2","entrezGeneId":8120},{"hugoGeneSymbol":"AP3D1","entrezGeneId":8943},{"hugoGeneSymbol":"AP3M1","entrezGeneId":26985},{"hugoGeneSymbol":"AP3M2","entrezGeneId":10947},{"hugoGeneSymbol":"AP3S1","entrezGeneId":1176},{"hugoGeneSymbol":"AP3S2","entrezGeneId":10239},{"hugoGeneSymbol":"AP4B1","entrezGeneId":10717},{"hugoGeneSymbol":"AP4B1-AS1","entrezGeneId":100287722},{"hugoGeneSymbol":"AP4E1","entrezGeneId":23431},{"hugoGeneSymbol":"AP4M1","entrezGeneId":9179},{"hugoGeneSymbol":"AP4S1","entrezGeneId":11154},{"hugoGeneSymbol":"AP5B1","entrezGeneId":91056},{"hugoGeneSymbol":"AP5M1","entrezGeneId":55745},{"hugoGeneSymbol":"AP5S1","entrezGeneId":55317},{"hugoGeneSymbol":"AP5Z1","entrezGeneId":9907},{"hugoGeneSymbol":"APAF1","entrezGeneId":317},{"hugoGeneSymbol":"APBA1","entrezGeneId":320},{"hugoGeneSymbol":"APBA2","entrezGeneId":321},{"hugoGeneSymbol":"APBA3","entrezGeneId":9546},{"hugoGeneSymbol":"APBB1","entrezGeneId":322},{"hugoGeneSymbol":"APBB1IP","entrezGeneId":54518},{"hugoGeneSymbol":"APBB2","entrezGeneId":323},{"hugoGeneSymbol":"APBB3","entrezGeneId":10307},{"hugoGeneSymbol":"APC","entrezGeneId":324},{"hugoGeneSymbol":"APC2","entrezGeneId":10297},{"hugoGeneSymbol":"APCDD1","entrezGeneId":147495},{"hugoGeneSymbol":"APCDD1L","entrezGeneId":164284},{"hugoGeneSymbol":"APCDD1L-DT","entrezGeneId":149773},{"hugoGeneSymbol":"APCS","entrezGeneId":325},{"hugoGeneSymbol":"APEH","entrezGeneId":327},{"hugoGeneSymbol":"APELA","entrezGeneId":100506013},{"hugoGeneSymbol":"APEX1","entrezGeneId":328},{"hugoGeneSymbol":"APEX2","entrezGeneId":27301},{"hugoGeneSymbol":"APH1A","entrezGeneId":51107},{"hugoGeneSymbol":"APH1B","entrezGeneId":83464},{"hugoGeneSymbol":"API5","entrezGeneId":8539},{"hugoGeneSymbol":"API5P1","entrezGeneId":642812},{"hugoGeneSymbol":"API5P2","entrezGeneId":728664},{"hugoGeneSymbol":"APIP","entrezGeneId":51074},{"hugoGeneSymbol":"APLF","entrezGeneId":200558},{"hugoGeneSymbol":"APLN","entrezGeneId":8862},{"hugoGeneSymbol":"APLNR","entrezGeneId":187},{"hugoGeneSymbol":"APLP1","entrezGeneId":333},{"hugoGeneSymbol":"APLP2","entrezGeneId":334},{"hugoGeneSymbol":"APMAP","entrezGeneId":57136},{"hugoGeneSymbol":"APMR1","entrezGeneId":780898},{"hugoGeneSymbol":"APMR2","entrezGeneId":100049544},{"hugoGeneSymbol":"APMR3","entrezGeneId":100653369},{"hugoGeneSymbol":"APOA1","entrezGeneId":335},{"hugoGeneSymbol":"APOA1-AS","entrezGeneId":104326055},{"hugoGeneSymbol":"APOA2","entrezGeneId":336},{"hugoGeneSymbol":"APOA4","entrezGeneId":337},{"hugoGeneSymbol":"APOA5","entrezGeneId":116519},{"hugoGeneSymbol":"APOB","entrezGeneId":338},{"hugoGeneSymbol":"APOB-ICR","entrezGeneId":106633812},{"hugoGeneSymbol":"APOB3'MAR","entrezGeneId":106632268},{"hugoGeneSymbol":"APOBEC1","entrezGeneId":339},{"hugoGeneSymbol":"APOBEC2","entrezGeneId":10930},{"hugoGeneSymbol":"APOBEC3A","entrezGeneId":200315},{"hugoGeneSymbol":"APOBEC3AP1","entrezGeneId":105377532},{"hugoGeneSymbol":"APOBEC3A_B","entrezGeneId":100913187},{"hugoGeneSymbol":"APOBEC3B","entrezGeneId":9582},{"hugoGeneSymbol":"APOBEC3B-AS1","entrezGeneId":100874530},{"hugoGeneSymbol":"APOBEC3C","entrezGeneId":27350},{"hugoGeneSymbol":"APOBEC3D","entrezGeneId":140564},{"hugoGeneSymbol":"APOBEC3F","entrezGeneId":200316},{"hugoGeneSymbol":"APOBEC3G","entrezGeneId":60489},{"hugoGeneSymbol":"APOBEC3H","entrezGeneId":164668},{"hugoGeneSymbol":"APOBEC4","entrezGeneId":403314},{"hugoGeneSymbol":"APOBR","entrezGeneId":55911},{"hugoGeneSymbol":"APOC1","entrezGeneId":341},{"hugoGeneSymbol":"APOC1P1","entrezGeneId":342},{"hugoGeneSymbol":"APOC2","entrezGeneId":344},{"hugoGeneSymbol":"APOC3","entrezGeneId":345},{"hugoGeneSymbol":"APOC4","entrezGeneId":346},{"hugoGeneSymbol":"APOC4-APOC2","entrezGeneId":100533990},{"hugoGeneSymbol":"APOD","entrezGeneId":347},{"hugoGeneSymbol":"APOE","entrezGeneId":348},{"hugoGeneSymbol":"APOF","entrezGeneId":319},{"hugoGeneSymbol":"APOH","entrezGeneId":350},{"hugoGeneSymbol":"APOL1","entrezGeneId":8542},{"hugoGeneSymbol":"APOL2","entrezGeneId":23780},{"hugoGeneSymbol":"APOL3","entrezGeneId":80833},{"hugoGeneSymbol":"APOL4","entrezGeneId":80832},{"hugoGeneSymbol":"APOL5","entrezGeneId":80831},{"hugoGeneSymbol":"APOL6","entrezGeneId":80830},{"hugoGeneSymbol":"APOLD1","entrezGeneId":81575},{"hugoGeneSymbol":"APOM","entrezGeneId":55937},{"hugoGeneSymbol":"APOO","entrezGeneId":79135},{"hugoGeneSymbol":"APOOL","entrezGeneId":139322},{"hugoGeneSymbol":"APOOP1","entrezGeneId":100286948},{"hugoGeneSymbol":"APOOP2","entrezGeneId":100129005},{"hugoGeneSymbol":"APOOP3","entrezGeneId":100131528},{"hugoGeneSymbol":"APOOP4","entrezGeneId":100128725},{"hugoGeneSymbol":"APOOP5","entrezGeneId":644649},{"hugoGeneSymbol":"APOPT1","entrezGeneId":84334},{"hugoGeneSymbol":"APP","entrezGeneId":351},{"hugoGeneSymbol":"APPBP2","entrezGeneId":10513},{"hugoGeneSymbol":"APPL1","entrezGeneId":26060},{"hugoGeneSymbol":"APPL2","entrezGeneId":55198},{"hugoGeneSymbol":"APRT","entrezGeneId":353},{"hugoGeneSymbol":"APTR","entrezGeneId":100505854},{"hugoGeneSymbol":"APTX","entrezGeneId":54840},{"hugoGeneSymbol":"AQP1","entrezGeneId":358},{"hugoGeneSymbol":"AQP10","entrezGeneId":89872},{"hugoGeneSymbol":"AQP11","entrezGeneId":282679},{"hugoGeneSymbol":"AQP12A","entrezGeneId":375318},{"hugoGeneSymbol":"AQP12B","entrezGeneId":653437},{"hugoGeneSymbol":"AQP2","entrezGeneId":359},{"hugoGeneSymbol":"AQP3","entrezGeneId":360},{"hugoGeneSymbol":"AQP4","entrezGeneId":361},{"hugoGeneSymbol":"AQP4-AS1","entrezGeneId":147429},{"hugoGeneSymbol":"AQP5","entrezGeneId":362},{"hugoGeneSymbol":"AQP6","entrezGeneId":363},{"hugoGeneSymbol":"AQP7","entrezGeneId":364},{"hugoGeneSymbol":"AQP7P1","entrezGeneId":375719},{"hugoGeneSymbol":"AQP7P2","entrezGeneId":389756},{"hugoGeneSymbol":"AQP7P3","entrezGeneId":441432},{"hugoGeneSymbol":"AQP7P4","entrezGeneId":100132938},{"hugoGeneSymbol":"AQP7P5","entrezGeneId":102724655},{"hugoGeneSymbol":"AQP8","entrezGeneId":343},{"hugoGeneSymbol":"AQP9","entrezGeneId":366},{"hugoGeneSymbol":"AQR","entrezGeneId":9716},{"hugoGeneSymbol":"AR","entrezGeneId":367},{"hugoGeneSymbol":"ARAF","entrezGeneId":369},{"hugoGeneSymbol":"ARAFP1","entrezGeneId":100421741},{"hugoGeneSymbol":"ARAFP2","entrezGeneId":644000},{"hugoGeneSymbol":"ARAFP3","entrezGeneId":285893},{"hugoGeneSymbol":"ARAP1","entrezGeneId":116985},{"hugoGeneSymbol":"ARAP1-AS1","entrezGeneId":100874075},{"hugoGeneSymbol":"ARAP1-AS2","entrezGeneId":100506020},{"hugoGeneSymbol":"ARAP2","entrezGeneId":116984},{"hugoGeneSymbol":"ARAP3","entrezGeneId":64411},{"hugoGeneSymbol":"ARC","entrezGeneId":23237},{"hugoGeneSymbol":"ARCI7","entrezGeneId":101202686},{"hugoGeneSymbol":"ARCI9","entrezGeneId":101202687},{"hugoGeneSymbol":"ARCN1","entrezGeneId":372},{"hugoGeneSymbol":"ARCODS","entrezGeneId":100381211},{"hugoGeneSymbol":"AREG","entrezGeneId":374},{"hugoGeneSymbol":"AREL1","entrezGeneId":9870},{"hugoGeneSymbol":"ARF1","entrezGeneId":375},{"hugoGeneSymbol":"ARF1P1","entrezGeneId":442334},{"hugoGeneSymbol":"ARF1P2","entrezGeneId":100420012},{"hugoGeneSymbol":"ARF1P3","entrezGeneId":442396},{"hugoGeneSymbol":"ARF2P","entrezGeneId":108489980},{"hugoGeneSymbol":"ARF3","entrezGeneId":377},{"hugoGeneSymbol":"ARF4","entrezGeneId":378},{"hugoGeneSymbol":"ARF4-AS1","entrezGeneId":106144532},{"hugoGeneSymbol":"ARF4P1","entrezGeneId":380},{"hugoGeneSymbol":"ARF4P2","entrezGeneId":170485},{"hugoGeneSymbol":"ARF4P3","entrezGeneId":390423},{"hugoGeneSymbol":"ARF4P4","entrezGeneId":100129023},{"hugoGeneSymbol":"ARF4P5","entrezGeneId":100316867},{"hugoGeneSymbol":"ARF5","entrezGeneId":381},{"hugoGeneSymbol":"ARF6","entrezGeneId":382},{"hugoGeneSymbol":"ARFGAP1","entrezGeneId":55738},{"hugoGeneSymbol":"ARFGAP2","entrezGeneId":84364},{"hugoGeneSymbol":"ARFGAP3","entrezGeneId":26286},{"hugoGeneSymbol":"ARFGEF1","entrezGeneId":10565},{"hugoGeneSymbol":"ARFGEF2","entrezGeneId":10564},{"hugoGeneSymbol":"ARFGEF3","entrezGeneId":57221},{"hugoGeneSymbol":"ARFIP1","entrezGeneId":27236},{"hugoGeneSymbol":"ARFIP2","entrezGeneId":23647},{"hugoGeneSymbol":"ARFRP1","entrezGeneId":10139},{"hugoGeneSymbol":"ARG1","entrezGeneId":383},{"hugoGeneSymbol":"ARG2","entrezGeneId":384},{"hugoGeneSymbol":"ARGFX","entrezGeneId":503582},{"hugoGeneSymbol":"ARGFXP1","entrezGeneId":503583},{"hugoGeneSymbol":"ARGFXP2","entrezGeneId":503640},{"hugoGeneSymbol":"ARGLU1","entrezGeneId":55082},{"hugoGeneSymbol":"ARHGAP1","entrezGeneId":392},{"hugoGeneSymbol":"ARHGAP10","entrezGeneId":79658},{"hugoGeneSymbol":"ARHGAP11A","entrezGeneId":9824},{"hugoGeneSymbol":"ARHGAP11B","entrezGeneId":89839},{"hugoGeneSymbol":"ARHGAP12","entrezGeneId":94134},{"hugoGeneSymbol":"ARHGAP15","entrezGeneId":55843},{"hugoGeneSymbol":"ARHGAP16P","entrezGeneId":319102},{"hugoGeneSymbol":"ARHGAP17","entrezGeneId":55114},{"hugoGeneSymbol":"ARHGAP18","entrezGeneId":93663},{"hugoGeneSymbol":"ARHGAP19","entrezGeneId":84986},{"hugoGeneSymbol":"ARHGAP19-SLIT1","entrezGeneId":100533184},{"hugoGeneSymbol":"ARHGAP20","entrezGeneId":57569},{"hugoGeneSymbol":"ARHGAP21","entrezGeneId":57584},{"hugoGeneSymbol":"ARHGAP22","entrezGeneId":58504},{"hugoGeneSymbol":"ARHGAP22-IT1","entrezGeneId":100689073},{"hugoGeneSymbol":"ARHGAP23","entrezGeneId":57636},{"hugoGeneSymbol":"ARHGAP23P1","entrezGeneId":102577425},{"hugoGeneSymbol":"ARHGAP24","entrezGeneId":83478},{"hugoGeneSymbol":"ARHGAP25","entrezGeneId":9938},{"hugoGeneSymbol":"ARHGAP26","entrezGeneId":23092},{"hugoGeneSymbol":"ARHGAP26-AS1","entrezGeneId":100874239},{"hugoGeneSymbol":"ARHGAP26-IT1","entrezGeneId":100874372},{"hugoGeneSymbol":"ARHGAP27","entrezGeneId":201176},{"hugoGeneSymbol":"ARHGAP27P1","entrezGeneId":146880},{"hugoGeneSymbol":"ARHGAP27P1-BPTFP1-KPNA2P3","entrezGeneId":109286553},{"hugoGeneSymbol":"ARHGAP27P2","entrezGeneId":440461},{"hugoGeneSymbol":"ARHGAP28","entrezGeneId":79822},{"hugoGeneSymbol":"ARHGAP29","entrezGeneId":9411},{"hugoGeneSymbol":"ARHGAP30","entrezGeneId":257106},{"hugoGeneSymbol":"ARHGAP31","entrezGeneId":57514},{"hugoGeneSymbol":"ARHGAP31-AS1","entrezGeneId":100874246},{"hugoGeneSymbol":"ARHGAP32","entrezGeneId":9743},{"hugoGeneSymbol":"ARHGAP33","entrezGeneId":115703},{"hugoGeneSymbol":"ARHGAP35","entrezGeneId":2909},{"hugoGeneSymbol":"ARHGAP36","entrezGeneId":158763},{"hugoGeneSymbol":"ARHGAP39","entrezGeneId":80728},{"hugoGeneSymbol":"ARHGAP4","entrezGeneId":393},{"hugoGeneSymbol":"ARHGAP40","entrezGeneId":343578},{"hugoGeneSymbol":"ARHGAP42","entrezGeneId":143872},{"hugoGeneSymbol":"ARHGAP42P1","entrezGeneId":100887075},{"hugoGeneSymbol":"ARHGAP42P2","entrezGeneId":100130693},{"hugoGeneSymbol":"ARHGAP42P3","entrezGeneId":266698},{"hugoGeneSymbol":"ARHGAP42P4","entrezGeneId":254398},{"hugoGeneSymbol":"ARHGAP42P5","entrezGeneId":100128514},{"hugoGeneSymbol":"ARHGAP44","entrezGeneId":9912},{"hugoGeneSymbol":"ARHGAP45","entrezGeneId":23526},{"hugoGeneSymbol":"ARHGAP5","entrezGeneId":394},{"hugoGeneSymbol":"ARHGAP5-AS1","entrezGeneId":84837},{"hugoGeneSymbol":"ARHGAP6","entrezGeneId":395},{"hugoGeneSymbol":"ARHGAP8","entrezGeneId":23779},{"hugoGeneSymbol":"ARHGAP9","entrezGeneId":64333},{"hugoGeneSymbol":"ARHGDIA","entrezGeneId":396},{"hugoGeneSymbol":"ARHGDIB","entrezGeneId":397},{"hugoGeneSymbol":"ARHGDIG","entrezGeneId":398},{"hugoGeneSymbol":"ARHGEF1","entrezGeneId":9138},{"hugoGeneSymbol":"ARHGEF10","entrezGeneId":9639},{"hugoGeneSymbol":"ARHGEF10L","entrezGeneId":55160},{"hugoGeneSymbol":"ARHGEF11","entrezGeneId":9826},{"hugoGeneSymbol":"ARHGEF12","entrezGeneId":23365},{"hugoGeneSymbol":"ARHGEF15","entrezGeneId":22899},{"hugoGeneSymbol":"ARHGEF16","entrezGeneId":27237},{"hugoGeneSymbol":"ARHGEF17","entrezGeneId":9828},{"hugoGeneSymbol":"ARHGEF18","entrezGeneId":23370},{"hugoGeneSymbol":"ARHGEF19","entrezGeneId":128272},{"hugoGeneSymbol":"ARHGEF19-AS1","entrezGeneId":100874233},{"hugoGeneSymbol":"ARHGEF2","entrezGeneId":9181},{"hugoGeneSymbol":"ARHGEF25","entrezGeneId":115557},{"hugoGeneSymbol":"ARHGEF26","entrezGeneId":26084},{"hugoGeneSymbol":"ARHGEF26-AS1","entrezGeneId":100507524},{"hugoGeneSymbol":"ARHGEF28","entrezGeneId":64283},{"hugoGeneSymbol":"ARHGEF3","entrezGeneId":50650},{"hugoGeneSymbol":"ARHGEF3-AS1","entrezGeneId":100874200},{"hugoGeneSymbol":"ARHGEF33","entrezGeneId":100271715},{"hugoGeneSymbol":"ARHGEF34P","entrezGeneId":728377},{"hugoGeneSymbol":"ARHGEF35","entrezGeneId":445328},{"hugoGeneSymbol":"ARHGEF37","entrezGeneId":389337},{"hugoGeneSymbol":"ARHGEF38","entrezGeneId":54848},{"hugoGeneSymbol":"ARHGEF38-IT1","entrezGeneId":100874374},{"hugoGeneSymbol":"ARHGEF39","entrezGeneId":84904},{"hugoGeneSymbol":"ARHGEF4","entrezGeneId":50649},{"hugoGeneSymbol":"ARHGEF40","entrezGeneId":55701},{"hugoGeneSymbol":"ARHGEF5","entrezGeneId":7984},{"hugoGeneSymbol":"ARHGEF6","entrezGeneId":9459},{"hugoGeneSymbol":"ARHGEF7","entrezGeneId":8874},{"hugoGeneSymbol":"ARHGEF7-AS1","entrezGeneId":100874226},{"hugoGeneSymbol":"ARHGEF7-AS2","entrezGeneId":100874238},{"hugoGeneSymbol":"ARHGEF7-IT1","entrezGeneId":100874371},{"hugoGeneSymbol":"ARHGEF9","entrezGeneId":23229},{"hugoGeneSymbol":"ARHGEF9-IT1","entrezGeneId":100874355},{"hugoGeneSymbol":"ARHI1","entrezGeneId":100233147},{"hugoGeneSymbol":"ARHI2","entrezGeneId":100302721},{"hugoGeneSymbol":"ARID1A","entrezGeneId":8289},{"hugoGeneSymbol":"ARID1B","entrezGeneId":57492},{"hugoGeneSymbol":"ARID2","entrezGeneId":196528},{"hugoGeneSymbol":"ARID3A","entrezGeneId":1820},{"hugoGeneSymbol":"ARID3B","entrezGeneId":10620},{"hugoGeneSymbol":"ARID3C","entrezGeneId":138715},{"hugoGeneSymbol":"ARID4A","entrezGeneId":5926},{"hugoGeneSymbol":"ARID4B","entrezGeneId":51742},{"hugoGeneSymbol":"ARID5A","entrezGeneId":10865},{"hugoGeneSymbol":"ARID5B","entrezGeneId":84159},{"hugoGeneSymbol":"ARIH1","entrezGeneId":25820},{"hugoGeneSymbol":"ARIH2","entrezGeneId":10425},{"hugoGeneSymbol":"ARIH2OS","entrezGeneId":646450},{"hugoGeneSymbol":"ARIH2P1","entrezGeneId":390844},{"hugoGeneSymbol":"ARL1","entrezGeneId":400},{"hugoGeneSymbol":"ARL10","entrezGeneId":285598},{"hugoGeneSymbol":"ARL11","entrezGeneId":115761},{"hugoGeneSymbol":"ARL13A","entrezGeneId":392509},{"hugoGeneSymbol":"ARL13B","entrezGeneId":200894},{"hugoGeneSymbol":"ARL14","entrezGeneId":80117},{"hugoGeneSymbol":"ARL14EP","entrezGeneId":120534},{"hugoGeneSymbol":"ARL14EPL","entrezGeneId":644100},{"hugoGeneSymbol":"ARL15","entrezGeneId":54622},{"hugoGeneSymbol":"ARL16","entrezGeneId":339231},{"hugoGeneSymbol":"ARL17A","entrezGeneId":51326},{"hugoGeneSymbol":"ARL17B","entrezGeneId":100506084},{"hugoGeneSymbol":"ARL2","entrezGeneId":402},{"hugoGeneSymbol":"ARL2-SNX15","entrezGeneId":100528018},{"hugoGeneSymbol":"ARL2BP","entrezGeneId":23568},{"hugoGeneSymbol":"ARL2BPP1","entrezGeneId":399666},{"hugoGeneSymbol":"ARL2BPP10","entrezGeneId":100874449},{"hugoGeneSymbol":"ARL2BPP2","entrezGeneId":643898},{"hugoGeneSymbol":"ARL2BPP3","entrezGeneId":646879},{"hugoGeneSymbol":"ARL2BPP4","entrezGeneId":100130265},{"hugoGeneSymbol":"ARL2BPP5","entrezGeneId":100874420},{"hugoGeneSymbol":"ARL2BPP6","entrezGeneId":100874421},{"hugoGeneSymbol":"ARL2BPP7","entrezGeneId":100131629},{"hugoGeneSymbol":"ARL2BPP8","entrezGeneId":100131784},{"hugoGeneSymbol":"ARL2BPP9","entrezGeneId":100421675},{"hugoGeneSymbol":"ARL3","entrezGeneId":403},{"hugoGeneSymbol":"ARL4A","entrezGeneId":10124},{"hugoGeneSymbol":"ARL4AP1","entrezGeneId":387684},{"hugoGeneSymbol":"ARL4AP2","entrezGeneId":152709},{"hugoGeneSymbol":"ARL4AP3","entrezGeneId":107984161},{"hugoGeneSymbol":"ARL4AP4","entrezGeneId":100420471},{"hugoGeneSymbol":"ARL4AP5","entrezGeneId":101928788},{"hugoGeneSymbol":"ARL4C","entrezGeneId":10123},{"hugoGeneSymbol":"ARL4D","entrezGeneId":379},{"hugoGeneSymbol":"ARL5A","entrezGeneId":26225},{"hugoGeneSymbol":"ARL5AP1","entrezGeneId":641382},{"hugoGeneSymbol":"ARL5AP2","entrezGeneId":641380},{"hugoGeneSymbol":"ARL5AP3","entrezGeneId":106480778},{"hugoGeneSymbol":"ARL5AP4","entrezGeneId":641379},{"hugoGeneSymbol":"ARL5B","entrezGeneId":221079},{"hugoGeneSymbol":"ARL5C","entrezGeneId":390790},{"hugoGeneSymbol":"ARL6","entrezGeneId":84100},{"hugoGeneSymbol":"ARL6IP1","entrezGeneId":23204},{"hugoGeneSymbol":"ARL6IP1P1","entrezGeneId":100288702},{"hugoGeneSymbol":"ARL6IP1P2","entrezGeneId":646348},{"hugoGeneSymbol":"ARL6IP1P3","entrezGeneId":729790},{"hugoGeneSymbol":"ARL6IP4","entrezGeneId":51329},{"hugoGeneSymbol":"ARL6IP5","entrezGeneId":10550},{"hugoGeneSymbol":"ARL6IP6","entrezGeneId":151188},{"hugoGeneSymbol":"ARL8A","entrezGeneId":127829},{"hugoGeneSymbol":"ARL8B","entrezGeneId":55207},{"hugoGeneSymbol":"ARL9","entrezGeneId":132946},{"hugoGeneSymbol":"ARMC1","entrezGeneId":55156},{"hugoGeneSymbol":"ARMC10","entrezGeneId":83787},{"hugoGeneSymbol":"ARMC10P1","entrezGeneId":389137},{"hugoGeneSymbol":"ARMC12","entrezGeneId":221481},{"hugoGeneSymbol":"ARMC2","entrezGeneId":84071},{"hugoGeneSymbol":"ARMC2-AS1","entrezGeneId":101929716},{"hugoGeneSymbol":"ARMC3","entrezGeneId":219681},{"hugoGeneSymbol":"ARMC4","entrezGeneId":55130},{"hugoGeneSymbol":"ARMC4P1","entrezGeneId":101060171},{"hugoGeneSymbol":"ARMC5","entrezGeneId":79798},{"hugoGeneSymbol":"ARMC6","entrezGeneId":93436},{"hugoGeneSymbol":"ARMC7","entrezGeneId":79637},{"hugoGeneSymbol":"ARMC8","entrezGeneId":25852},{"hugoGeneSymbol":"ARMC8P1","entrezGeneId":100130871},{"hugoGeneSymbol":"ARMC9","entrezGeneId":80210},{"hugoGeneSymbol":"ARMCX1","entrezGeneId":51309},{"hugoGeneSymbol":"ARMCX2","entrezGeneId":9823},{"hugoGeneSymbol":"ARMCX3","entrezGeneId":51566},{"hugoGeneSymbol":"ARMCX3-AS1","entrezGeneId":100128574},{"hugoGeneSymbol":"ARMCX4","entrezGeneId":100131755},{"hugoGeneSymbol":"ARMCX5","entrezGeneId":64860},{"hugoGeneSymbol":"ARMCX5-GPRASP2","entrezGeneId":100528062},{"hugoGeneSymbol":"ARMCX6","entrezGeneId":54470},{"hugoGeneSymbol":"ARMCX7P","entrezGeneId":653354},{"hugoGeneSymbol":"ARMD10","entrezGeneId":107880065},{"hugoGeneSymbol":"ARMH1","entrezGeneId":339541},{"hugoGeneSymbol":"ARMH2","entrezGeneId":101928603},{"hugoGeneSymbol":"ARMH3","entrezGeneId":79591},{"hugoGeneSymbol":"ARMH4","entrezGeneId":145407},{"hugoGeneSymbol":"ARMS2","entrezGeneId":387715},{"hugoGeneSymbol":"ARMT1","entrezGeneId":79624},{"hugoGeneSymbol":"ARNT","entrezGeneId":405},{"hugoGeneSymbol":"ARNT2","entrezGeneId":9915},{"hugoGeneSymbol":"ARNTL","entrezGeneId":406},{"hugoGeneSymbol":"ARNTL2","entrezGeneId":56938},{"hugoGeneSymbol":"ARNTL2-AS1","entrezGeneId":101928646},{"hugoGeneSymbol":"ARPC1A","entrezGeneId":10552},{"hugoGeneSymbol":"ARPC1B","entrezGeneId":10095},{"hugoGeneSymbol":"ARPC2","entrezGeneId":10109},{"hugoGeneSymbol":"ARPC3","entrezGeneId":10094},{"hugoGeneSymbol":"ARPC3P1","entrezGeneId":87171},{"hugoGeneSymbol":"ARPC3P2","entrezGeneId":391160},{"hugoGeneSymbol":"ARPC3P3","entrezGeneId":729494},{"hugoGeneSymbol":"ARPC3P4","entrezGeneId":100421973},{"hugoGeneSymbol":"ARPC3P5","entrezGeneId":441131},{"hugoGeneSymbol":"ARPC4","entrezGeneId":10093},{"hugoGeneSymbol":"ARPC4-TTLL3","entrezGeneId":100526693},{"hugoGeneSymbol":"ARPC5","entrezGeneId":10092},{"hugoGeneSymbol":"ARPC5L","entrezGeneId":81873},{"hugoGeneSymbol":"ARPIN","entrezGeneId":348110},{"hugoGeneSymbol":"ARPP19","entrezGeneId":10776},{"hugoGeneSymbol":"ARPP21","entrezGeneId":10777},{"hugoGeneSymbol":"ARPP21-AS1","entrezGeneId":100874098},{"hugoGeneSymbol":"ARR3","entrezGeneId":407},{"hugoGeneSymbol":"ARRB1","entrezGeneId":408},{"hugoGeneSymbol":"ARRB2","entrezGeneId":409},{"hugoGeneSymbol":"ARRDC1","entrezGeneId":92714},{"hugoGeneSymbol":"ARRDC1-AS1","entrezGeneId":85026},{"hugoGeneSymbol":"ARRDC2","entrezGeneId":27106},{"hugoGeneSymbol":"ARRDC3","entrezGeneId":57561},{"hugoGeneSymbol":"ARRDC3-AS1","entrezGeneId":100129716},{"hugoGeneSymbol":"ARRDC4","entrezGeneId":91947},{"hugoGeneSymbol":"ARRDC5","entrezGeneId":645432},{"hugoGeneSymbol":"ARSA","entrezGeneId":410},{"hugoGeneSymbol":"ARSB","entrezGeneId":411},{"hugoGeneSymbol":"ARSC2","entrezGeneId":413},{"hugoGeneSymbol":"ARSD","entrezGeneId":414},{"hugoGeneSymbol":"ARSD-AS1","entrezGeneId":100506356},{"hugoGeneSymbol":"ARSDP1","entrezGeneId":10034},{"hugoGeneSymbol":"ARSE","entrezGeneId":415},{"hugoGeneSymbol":"ARSEP1","entrezGeneId":10033},{"hugoGeneSymbol":"ARSF","entrezGeneId":416},{"hugoGeneSymbol":"ARSFP1","entrezGeneId":23757},{"hugoGeneSymbol":"ARSG","entrezGeneId":22901},{"hugoGeneSymbol":"ARSH","entrezGeneId":347527},{"hugoGeneSymbol":"ARSI","entrezGeneId":340075},{"hugoGeneSymbol":"ARSJ","entrezGeneId":79642},{"hugoGeneSymbol":"ARSK","entrezGeneId":153642},{"hugoGeneSymbol":"ART1","entrezGeneId":417},{"hugoGeneSymbol":"ART2BP","entrezGeneId":106481723},{"hugoGeneSymbol":"ART2P","entrezGeneId":418},{"hugoGeneSymbol":"ART3","entrezGeneId":419},{"hugoGeneSymbol":"ART4","entrezGeneId":420},{"hugoGeneSymbol":"ART5","entrezGeneId":116969},{"hugoGeneSymbol":"ARTN","entrezGeneId":9048},{"hugoGeneSymbol":"ARV1","entrezGeneId":64801},{"hugoGeneSymbol":"ARVCF","entrezGeneId":421},{"hugoGeneSymbol":"ARVD3","entrezGeneId":424},{"hugoGeneSymbol":"ARVD4","entrezGeneId":425},{"hugoGeneSymbol":"ARVD6","entrezGeneId":27038},{"hugoGeneSymbol":"ARX","entrezGeneId":170302},{"hugoGeneSymbol":"AS-PTPRE","entrezGeneId":105378553},{"hugoGeneSymbol":"AS3MT","entrezGeneId":57412},{"hugoGeneSymbol":"ASAH1","entrezGeneId":427},{"hugoGeneSymbol":"ASAH2","entrezGeneId":56624},{"hugoGeneSymbol":"ASAH2B","entrezGeneId":653308},{"hugoGeneSymbol":"ASAP1","entrezGeneId":50807},{"hugoGeneSymbol":"ASAP1-IT1","entrezGeneId":29065},{"hugoGeneSymbol":"ASAP1-IT2","entrezGeneId":100507117},{"hugoGeneSymbol":"ASAP2","entrezGeneId":8853},{"hugoGeneSymbol":"ASAP3","entrezGeneId":55616},{"hugoGeneSymbol":"ASB1","entrezGeneId":51665},{"hugoGeneSymbol":"ASB10","entrezGeneId":136371},{"hugoGeneSymbol":"ASB11","entrezGeneId":140456},{"hugoGeneSymbol":"ASB12","entrezGeneId":142689},{"hugoGeneSymbol":"ASB13","entrezGeneId":79754},{"hugoGeneSymbol":"ASB14","entrezGeneId":142686},{"hugoGeneSymbol":"ASB15","entrezGeneId":142685},{"hugoGeneSymbol":"ASB16","entrezGeneId":92591},{"hugoGeneSymbol":"ASB16-AS1","entrezGeneId":339201},{"hugoGeneSymbol":"ASB17","entrezGeneId":127247},{"hugoGeneSymbol":"ASB18","entrezGeneId":401036},{"hugoGeneSymbol":"ASB2","entrezGeneId":51676},{"hugoGeneSymbol":"ASB3","entrezGeneId":51130},{"hugoGeneSymbol":"ASB4","entrezGeneId":51666},{"hugoGeneSymbol":"ASB5","entrezGeneId":140458},{"hugoGeneSymbol":"ASB6","entrezGeneId":140459},{"hugoGeneSymbol":"ASB7","entrezGeneId":140460},{"hugoGeneSymbol":"ASB8","entrezGeneId":140461},{"hugoGeneSymbol":"ASB9","entrezGeneId":140462},{"hugoGeneSymbol":"ASB9P1","entrezGeneId":728619},{"hugoGeneSymbol":"ASCC1","entrezGeneId":51008},{"hugoGeneSymbol":"ASCC2","entrezGeneId":84164},{"hugoGeneSymbol":"ASCC3","entrezGeneId":10973},{"hugoGeneSymbol":"ASCL1","entrezGeneId":429},{"hugoGeneSymbol":"ASCL2","entrezGeneId":430},{"hugoGeneSymbol":"ASCL3","entrezGeneId":56676},{"hugoGeneSymbol":"ASCL4","entrezGeneId":121549},{"hugoGeneSymbol":"ASCL5","entrezGeneId":647219},{"hugoGeneSymbol":"ASD1","entrezGeneId":431},{"hugoGeneSymbol":"ASDP","entrezGeneId":100187749},{"hugoGeneSymbol":"ASDURF","entrezGeneId":110599588},{"hugoGeneSymbol":"ASF1A","entrezGeneId":25842},{"hugoGeneSymbol":"ASF1B","entrezGeneId":55723},{"hugoGeneSymbol":"ASGR1","entrezGeneId":432},{"hugoGeneSymbol":"ASGR2","entrezGeneId":433},{"hugoGeneSymbol":"ASH1L","entrezGeneId":55870},{"hugoGeneSymbol":"ASH1L-AS1","entrezGeneId":645676},{"hugoGeneSymbol":"ASH1L-IT1","entrezGeneId":106478976},{"hugoGeneSymbol":"ASH2L","entrezGeneId":9070},{"hugoGeneSymbol":"ASH2LP1","entrezGeneId":266703},{"hugoGeneSymbol":"ASH2LP2","entrezGeneId":100422088},{"hugoGeneSymbol":"ASH2LP3","entrezGeneId":100736411},{"hugoGeneSymbol":"ASIC1","entrezGeneId":41},{"hugoGeneSymbol":"ASIC2","entrezGeneId":40},{"hugoGeneSymbol":"ASIC3","entrezGeneId":9311},{"hugoGeneSymbol":"ASIC4","entrezGeneId":55515},{"hugoGeneSymbol":"ASIC5","entrezGeneId":51802},{"hugoGeneSymbol":"ASIP","entrezGeneId":434},{"hugoGeneSymbol":"ASL","entrezGeneId":435},{"hugoGeneSymbol":"ASLP1","entrezGeneId":436},{"hugoGeneSymbol":"ASMT","entrezGeneId":438},{"hugoGeneSymbol":"ASMTL","entrezGeneId":8623},{"hugoGeneSymbol":"ASMTL-AS1","entrezGeneId":80161},{"hugoGeneSymbol":"ASNA1","entrezGeneId":439},{"hugoGeneSymbol":"ASNS","entrezGeneId":440},{"hugoGeneSymbol":"ASNSD1","entrezGeneId":54529},{"hugoGeneSymbol":"ASNSP1","entrezGeneId":389652},{"hugoGeneSymbol":"ASNSP2","entrezGeneId":442},{"hugoGeneSymbol":"ASNSP3","entrezGeneId":100423061},{"hugoGeneSymbol":"ASNSP4","entrezGeneId":100419423},{"hugoGeneSymbol":"ASNSP5","entrezGeneId":100873794},{"hugoGeneSymbol":"ASNSP6","entrezGeneId":100423060},{"hugoGeneSymbol":"ASOBS","entrezGeneId":103611079},{"hugoGeneSymbol":"ASPA","entrezGeneId":443},{"hugoGeneSymbol":"ASPDH","entrezGeneId":554235},{"hugoGeneSymbol":"ASPG","entrezGeneId":374569},{"hugoGeneSymbol":"ASPG1","entrezGeneId":431710},{"hugoGeneSymbol":"ASPG2","entrezGeneId":431711},{"hugoGeneSymbol":"ASPG3","entrezGeneId":449015},{"hugoGeneSymbol":"ASPG4","entrezGeneId":100188800},{"hugoGeneSymbol":"ASPH","entrezGeneId":444},{"hugoGeneSymbol":"ASPHD1","entrezGeneId":253982},{"hugoGeneSymbol":"ASPHD2","entrezGeneId":57168},{"hugoGeneSymbol":"ASPM","entrezGeneId":259266},{"hugoGeneSymbol":"ASPN","entrezGeneId":54829},{"hugoGeneSymbol":"ASPRV1","entrezGeneId":151516},{"hugoGeneSymbol":"ASPSCR1","entrezGeneId":79058},{"hugoGeneSymbol":"ASRGL1","entrezGeneId":80150},{"hugoGeneSymbol":"ASRT3","entrezGeneId":100188801},{"hugoGeneSymbol":"ASRT4","entrezGeneId":100188823},{"hugoGeneSymbol":"ASRT6","entrezGeneId":100188840},{"hugoGeneSymbol":"ASRT8","entrezGeneId":100415896},{"hugoGeneSymbol":"ASS1","entrezGeneId":445},{"hugoGeneSymbol":"ASS1P1","entrezGeneId":442167},{"hugoGeneSymbol":"ASS1P10","entrezGeneId":455},{"hugoGeneSymbol":"ASS1P11","entrezGeneId":340274},{"hugoGeneSymbol":"ASS1P12","entrezGeneId":392302},{"hugoGeneSymbol":"ASS1P13","entrezGeneId":341230},{"hugoGeneSymbol":"ASS1P14","entrezGeneId":459},{"hugoGeneSymbol":"ASS1P2","entrezGeneId":447},{"hugoGeneSymbol":"ASS1P3","entrezGeneId":158452},{"hugoGeneSymbol":"ASS1P4","entrezGeneId":449},{"hugoGeneSymbol":"ASS1P5","entrezGeneId":450},{"hugoGeneSymbol":"ASS1P6","entrezGeneId":451},{"hugoGeneSymbol":"ASS1P7","entrezGeneId":339845},{"hugoGeneSymbol":"ASS1P8","entrezGeneId":453},{"hugoGeneSymbol":"ASS1P9","entrezGeneId":454},{"hugoGeneSymbol":"ASTE1","entrezGeneId":28990},{"hugoGeneSymbol":"ASTL","entrezGeneId":431705},{"hugoGeneSymbol":"ASTN1","entrezGeneId":460},{"hugoGeneSymbol":"ASTN2","entrezGeneId":23245},{"hugoGeneSymbol":"ASTN2-AS1","entrezGeneId":100128505},{"hugoGeneSymbol":"ASXL1","entrezGeneId":171023},{"hugoGeneSymbol":"ASXL2","entrezGeneId":55252},{"hugoGeneSymbol":"ASXL3","entrezGeneId":80816},{"hugoGeneSymbol":"ASZ1","entrezGeneId":136991},{"hugoGeneSymbol":"ATAD1","entrezGeneId":84896},{"hugoGeneSymbol":"ATAD2","entrezGeneId":29028},{"hugoGeneSymbol":"ATAD2B","entrezGeneId":54454},{"hugoGeneSymbol":"ATAD3A","entrezGeneId":55210},{"hugoGeneSymbol":"ATAD3B","entrezGeneId":83858},{"hugoGeneSymbol":"ATAD3C","entrezGeneId":219293},{"hugoGeneSymbol":"ATAD5","entrezGeneId":79915},{"hugoGeneSymbol":"ATAT1","entrezGeneId":79969},{"hugoGeneSymbol":"ATCAY","entrezGeneId":85300},{"hugoGeneSymbol":"ATD","entrezGeneId":465},{"hugoGeneSymbol":"ATE1","entrezGeneId":11101},{"hugoGeneSymbol":"ATE1-AS1","entrezGeneId":100130887},{"hugoGeneSymbol":"ATF1","entrezGeneId":466},{"hugoGeneSymbol":"ATF1P1","entrezGeneId":100128159},{"hugoGeneSymbol":"ATF2","entrezGeneId":1386},{"hugoGeneSymbol":"ATF3","entrezGeneId":467},{"hugoGeneSymbol":"ATF4","entrezGeneId":468},{"hugoGeneSymbol":"ATF4P1","entrezGeneId":469},{"hugoGeneSymbol":"ATF4P2","entrezGeneId":340600},{"hugoGeneSymbol":"ATF4P3","entrezGeneId":643159},{"hugoGeneSymbol":"ATF4P4","entrezGeneId":100127952},{"hugoGeneSymbol":"ATF5","entrezGeneId":22809},{"hugoGeneSymbol":"ATF6","entrezGeneId":22926},{"hugoGeneSymbol":"ATF6B","entrezGeneId":1388},{"hugoGeneSymbol":"ATF7","entrezGeneId":11016},{"hugoGeneSymbol":"ATF7IP","entrezGeneId":55729},{"hugoGeneSymbol":"ATF7IP2","entrezGeneId":80063},{"hugoGeneSymbol":"ATFB1","entrezGeneId":406216},{"hugoGeneSymbol":"ATFB2","entrezGeneId":619478},{"hugoGeneSymbol":"ATFB5","entrezGeneId":100188842},{"hugoGeneSymbol":"ATFB8","entrezGeneId":100306979},{"hugoGeneSymbol":"ATG10","entrezGeneId":83734},{"hugoGeneSymbol":"ATG10-AS1","entrezGeneId":100874022},{"hugoGeneSymbol":"ATG10-IT1","entrezGeneId":100874311},{"hugoGeneSymbol":"ATG101","entrezGeneId":60673},{"hugoGeneSymbol":"ATG12","entrezGeneId":9140},{"hugoGeneSymbol":"ATG12P1","entrezGeneId":100151642},{"hugoGeneSymbol":"ATG12P2","entrezGeneId":100293948},{"hugoGeneSymbol":"ATG13","entrezGeneId":9776},{"hugoGeneSymbol":"ATG14","entrezGeneId":22863},{"hugoGeneSymbol":"ATG16L1","entrezGeneId":55054},{"hugoGeneSymbol":"ATG16L2","entrezGeneId":89849},{"hugoGeneSymbol":"ATG2A","entrezGeneId":23130},{"hugoGeneSymbol":"ATG2B","entrezGeneId":55102},{"hugoGeneSymbol":"ATG3","entrezGeneId":64422},{"hugoGeneSymbol":"ATG3P1","entrezGeneId":100135756},{"hugoGeneSymbol":"ATG4A","entrezGeneId":115201},{"hugoGeneSymbol":"ATG4AP1","entrezGeneId":106480786},{"hugoGeneSymbol":"ATG4B","entrezGeneId":23192},{"hugoGeneSymbol":"ATG4C","entrezGeneId":84938},{"hugoGeneSymbol":"ATG4D","entrezGeneId":84971},{"hugoGeneSymbol":"ATG5","entrezGeneId":9474},{"hugoGeneSymbol":"ATG7","entrezGeneId":10533},{"hugoGeneSymbol":"ATG9A","entrezGeneId":79065},{"hugoGeneSymbol":"ATG9B","entrezGeneId":285973},{"hugoGeneSymbol":"ATHS","entrezGeneId":470},{"hugoGeneSymbol":"ATIC","entrezGeneId":471},{"hugoGeneSymbol":"ATL1","entrezGeneId":51062},{"hugoGeneSymbol":"ATL2","entrezGeneId":64225},{"hugoGeneSymbol":"ATL3","entrezGeneId":25923},{"hugoGeneSymbol":"ATM","entrezGeneId":472},{"hugoGeneSymbol":"ATMIN","entrezGeneId":23300},{"hugoGeneSymbol":"ATN1","entrezGeneId":1822},{"hugoGeneSymbol":"ATOD1","entrezGeneId":64069},{"hugoGeneSymbol":"ATOD3","entrezGeneId":117187},{"hugoGeneSymbol":"ATOD5","entrezGeneId":117188},{"hugoGeneSymbol":"ATOD6","entrezGeneId":114477},{"hugoGeneSymbol":"ATOD7","entrezGeneId":100310755},{"hugoGeneSymbol":"ATOD8","entrezGeneId":105463125},{"hugoGeneSymbol":"ATOD9","entrezGeneId":105463126},{"hugoGeneSymbol":"ATOH1","entrezGeneId":474},{"hugoGeneSymbol":"ATOH7","entrezGeneId":220202},{"hugoGeneSymbol":"ATOH8","entrezGeneId":84913},{"hugoGeneSymbol":"ATOX1","entrezGeneId":475},{"hugoGeneSymbol":"ATP10A","entrezGeneId":57194},{"hugoGeneSymbol":"ATP10B","entrezGeneId":23120},{"hugoGeneSymbol":"ATP10D","entrezGeneId":57205},{"hugoGeneSymbol":"ATP11A","entrezGeneId":23250},{"hugoGeneSymbol":"ATP11A-AS1","entrezGeneId":100874205},{"hugoGeneSymbol":"ATP11AUN","entrezGeneId":400165},{"hugoGeneSymbol":"ATP11B","entrezGeneId":23200},{"hugoGeneSymbol":"ATP11C","entrezGeneId":286410},{"hugoGeneSymbol":"ATP12A","entrezGeneId":479},{"hugoGeneSymbol":"ATP13A1","entrezGeneId":57130},{"hugoGeneSymbol":"ATP13A2","entrezGeneId":23400},{"hugoGeneSymbol":"ATP13A3","entrezGeneId":79572},{"hugoGeneSymbol":"ATP13A4","entrezGeneId":84239},{"hugoGeneSymbol":"ATP13A4-AS1","entrezGeneId":101929198},{"hugoGeneSymbol":"ATP13A5","entrezGeneId":344905},{"hugoGeneSymbol":"ATP13A5-AS1","entrezGeneId":100874218},{"hugoGeneSymbol":"ATP1A1","entrezGeneId":476},{"hugoGeneSymbol":"ATP1A1-AS1","entrezGeneId":84852},{"hugoGeneSymbol":"ATP1A2","entrezGeneId":477},{"hugoGeneSymbol":"ATP1A3","entrezGeneId":478},{"hugoGeneSymbol":"ATP1A4","entrezGeneId":480},{"hugoGeneSymbol":"ATP1B1","entrezGeneId":481},{"hugoGeneSymbol":"ATP1B1P1","entrezGeneId":485},{"hugoGeneSymbol":"ATP1B2","entrezGeneId":482},{"hugoGeneSymbol":"ATP1B3","entrezGeneId":483},{"hugoGeneSymbol":"ATP1B3-AS1","entrezGeneId":100874077},{"hugoGeneSymbol":"ATP1B3P1","entrezGeneId":484},{"hugoGeneSymbol":"ATP1B4","entrezGeneId":23439},{"hugoGeneSymbol":"ATP23","entrezGeneId":91419},{"hugoGeneSymbol":"ATP2A1","entrezGeneId":487},{"hugoGeneSymbol":"ATP2A1-AS1","entrezGeneId":100289092},{"hugoGeneSymbol":"ATP2A2","entrezGeneId":488},{"hugoGeneSymbol":"ATP2A3","entrezGeneId":489},{"hugoGeneSymbol":"ATP2B1","entrezGeneId":490},{"hugoGeneSymbol":"ATP2B1-AS1","entrezGeneId":338758},{"hugoGeneSymbol":"ATP2B2","entrezGeneId":491},{"hugoGeneSymbol":"ATP2B2-IT1","entrezGeneId":100874324},{"hugoGeneSymbol":"ATP2B2-IT2","entrezGeneId":100874325},{"hugoGeneSymbol":"ATP2B3","entrezGeneId":492},{"hugoGeneSymbol":"ATP2B4","entrezGeneId":493},{"hugoGeneSymbol":"ATP2C1","entrezGeneId":27032},{"hugoGeneSymbol":"ATP2C2","entrezGeneId":9914},{"hugoGeneSymbol":"ATP2C2-AS1","entrezGeneId":105371374},{"hugoGeneSymbol":"ATP4A","entrezGeneId":495},{"hugoGeneSymbol":"ATP4B","entrezGeneId":496},{"hugoGeneSymbol":"ATP5F1A","entrezGeneId":498},{"hugoGeneSymbol":"ATP5F1AP1","entrezGeneId":442416},{"hugoGeneSymbol":"ATP5F1AP10","entrezGeneId":100132619},{"hugoGeneSymbol":"ATP5F1AP2","entrezGeneId":504},{"hugoGeneSymbol":"ATP5F1AP3","entrezGeneId":645443},{"hugoGeneSymbol":"ATP5F1AP4","entrezGeneId":100129782},{"hugoGeneSymbol":"ATP5F1AP7","entrezGeneId":442415},{"hugoGeneSymbol":"ATP5F1AP8","entrezGeneId":392322},{"hugoGeneSymbol":"ATP5F1B","entrezGeneId":506},{"hugoGeneSymbol":"ATP5F1BP1","entrezGeneId":507},{"hugoGeneSymbol":"ATP5F1C","entrezGeneId":509},{"hugoGeneSymbol":"ATP5F1CP1","entrezGeneId":645560},{"hugoGeneSymbol":"ATP5F1D","entrezGeneId":513},{"hugoGeneSymbol":"ATP5F1E","entrezGeneId":514},{"hugoGeneSymbol":"ATP5F1EP1","entrezGeneId":23744},{"hugoGeneSymbol":"ATP5F1EP2","entrezGeneId":432369},{"hugoGeneSymbol":"ATP5IF1","entrezGeneId":93974},{"hugoGeneSymbol":"ATP5MC1","entrezGeneId":516},{"hugoGeneSymbol":"ATP5MC1P1","entrezGeneId":319136},{"hugoGeneSymbol":"ATP5MC1P2","entrezGeneId":319137},{"hugoGeneSymbol":"ATP5MC1P3","entrezGeneId":646619},{"hugoGeneSymbol":"ATP5MC1P4","entrezGeneId":100287755},{"hugoGeneSymbol":"ATP5MC1P5","entrezGeneId":390424},{"hugoGeneSymbol":"ATP5MC1P6","entrezGeneId":100505704},{"hugoGeneSymbol":"ATP5MC1P7","entrezGeneId":100130962},{"hugoGeneSymbol":"ATP5MC1P8","entrezGeneId":100288222},{"hugoGeneSymbol":"ATP5MC2","entrezGeneId":517},{"hugoGeneSymbol":"ATP5MC2P1","entrezGeneId":520},{"hugoGeneSymbol":"ATP5MC2P2","entrezGeneId":319119},{"hugoGeneSymbol":"ATP5MC2P3","entrezGeneId":100507097},{"hugoGeneSymbol":"ATP5MC2P4","entrezGeneId":654480},{"hugoGeneSymbol":"ATP5MC3","entrezGeneId":518},{"hugoGeneSymbol":"ATP5MD","entrezGeneId":84833},{"hugoGeneSymbol":"ATP5MDP1","entrezGeneId":100288307},{"hugoGeneSymbol":"ATP5ME","entrezGeneId":521},{"hugoGeneSymbol":"ATP5MF","entrezGeneId":9551},{"hugoGeneSymbol":"ATP5MF-PTCD1","entrezGeneId":100526740},{"hugoGeneSymbol":"ATP5MFP1","entrezGeneId":101241877},{"hugoGeneSymbol":"ATP5MFP2","entrezGeneId":387107},{"hugoGeneSymbol":"ATP5MFP3","entrezGeneId":445573},{"hugoGeneSymbol":"ATP5MFP4","entrezGeneId":654485},{"hugoGeneSymbol":"ATP5MFP5","entrezGeneId":654484},{"hugoGeneSymbol":"ATP5MFP6","entrezGeneId":654486},{"hugoGeneSymbol":"ATP5MG","entrezGeneId":10632},{"hugoGeneSymbol":"ATP5MGL","entrezGeneId":267020},{"hugoGeneSymbol":"ATP5MGP1","entrezGeneId":53411},{"hugoGeneSymbol":"ATP5MGP2","entrezGeneId":53410},{"hugoGeneSymbol":"ATP5MGP3","entrezGeneId":53409},{"hugoGeneSymbol":"ATP5MGP4","entrezGeneId":100130396},{"hugoGeneSymbol":"ATP5MGP5","entrezGeneId":100287091},{"hugoGeneSymbol":"ATP5MGP6","entrezGeneId":100462865},{"hugoGeneSymbol":"ATP5MGP7","entrezGeneId":100287964},{"hugoGeneSymbol":"ATP5MGP8","entrezGeneId":100462862},{"hugoGeneSymbol":"ATP5MPL","entrezGeneId":9556},{"hugoGeneSymbol":"ATP5PB","entrezGeneId":515},{"hugoGeneSymbol":"ATP5PBP1","entrezGeneId":100422523},{"hugoGeneSymbol":"ATP5PBP2","entrezGeneId":645973},{"hugoGeneSymbol":"ATP5PBP3","entrezGeneId":644333},{"hugoGeneSymbol":"ATP5PBP4","entrezGeneId":100422514},{"hugoGeneSymbol":"ATP5PBP5","entrezGeneId":100128516},{"hugoGeneSymbol":"ATP5PBP6","entrezGeneId":645440},{"hugoGeneSymbol":"ATP5PBP7","entrezGeneId":124496},{"hugoGeneSymbol":"ATP5PD","entrezGeneId":10476},{"hugoGeneSymbol":"ATP5PDP1","entrezGeneId":390581},{"hugoGeneSymbol":"ATP5PDP2","entrezGeneId":138234},{"hugoGeneSymbol":"ATP5PDP3","entrezGeneId":138864},{"hugoGeneSymbol":"ATP5PDP4","entrezGeneId":246723},{"hugoGeneSymbol":"ATP5PF","entrezGeneId":522},{"hugoGeneSymbol":"ATP5PFP1","entrezGeneId":359997},{"hugoGeneSymbol":"ATP5PO","entrezGeneId":539},{"hugoGeneSymbol":"ATP5S","entrezGeneId":27109},{"hugoGeneSymbol":"ATP6AP1","entrezGeneId":537},{"hugoGeneSymbol":"ATP6AP1L","entrezGeneId":92270},{"hugoGeneSymbol":"ATP6AP2","entrezGeneId":10159},{"hugoGeneSymbol":"ATP6V0A1","entrezGeneId":535},{"hugoGeneSymbol":"ATP6V0A2","entrezGeneId":23545},{"hugoGeneSymbol":"ATP6V0A4","entrezGeneId":50617},{"hugoGeneSymbol":"ATP6V0B","entrezGeneId":533},{"hugoGeneSymbol":"ATP6V0C","entrezGeneId":527},{"hugoGeneSymbol":"ATP6V0CP1","entrezGeneId":100132978},{"hugoGeneSymbol":"ATP6V0CP2","entrezGeneId":106478961},{"hugoGeneSymbol":"ATP6V0CP3","entrezGeneId":442211},{"hugoGeneSymbol":"ATP6V0D1","entrezGeneId":9114},{"hugoGeneSymbol":"ATP6V0D2","entrezGeneId":245972},{"hugoGeneSymbol":"ATP6V0E1","entrezGeneId":8992},{"hugoGeneSymbol":"ATP6V0E1P1","entrezGeneId":100874502},{"hugoGeneSymbol":"ATP6V0E1P2","entrezGeneId":100874503},{"hugoGeneSymbol":"ATP6V0E1P3","entrezGeneId":100133262},{"hugoGeneSymbol":"ATP6V0E1P4","entrezGeneId":100874504},{"hugoGeneSymbol":"ATP6V0E2","entrezGeneId":155066},{"hugoGeneSymbol":"ATP6V0E2-AS1","entrezGeneId":401431},{"hugoGeneSymbol":"ATP6V1A","entrezGeneId":523},{"hugoGeneSymbol":"ATP6V1B1","entrezGeneId":525},{"hugoGeneSymbol":"ATP6V1B1-AS1","entrezGeneId":101927750},{"hugoGeneSymbol":"ATP6V1B2","entrezGeneId":526},{"hugoGeneSymbol":"ATP6V1C1","entrezGeneId":528},{"hugoGeneSymbol":"ATP6V1C2","entrezGeneId":245973},{"hugoGeneSymbol":"ATP6V1D","entrezGeneId":51382},{"hugoGeneSymbol":"ATP6V1E1","entrezGeneId":529},{"hugoGeneSymbol":"ATP6V1E1P1","entrezGeneId":343515},{"hugoGeneSymbol":"ATP6V1E1P2","entrezGeneId":100462844},{"hugoGeneSymbol":"ATP6V1E1P3","entrezGeneId":729435},{"hugoGeneSymbol":"ATP6V1E2","entrezGeneId":90423},{"hugoGeneSymbol":"ATP6V1F","entrezGeneId":9296},{"hugoGeneSymbol":"ATP6V1G1","entrezGeneId":9550},{"hugoGeneSymbol":"ATP6V1G1P1","entrezGeneId":319116},{"hugoGeneSymbol":"ATP6V1G1P2","entrezGeneId":100128541},{"hugoGeneSymbol":"ATP6V1G1P3","entrezGeneId":100462838},{"hugoGeneSymbol":"ATP6V1G1P4","entrezGeneId":100462843},{"hugoGeneSymbol":"ATP6V1G1P5","entrezGeneId":100462840},{"hugoGeneSymbol":"ATP6V1G1P6","entrezGeneId":100462732},{"hugoGeneSymbol":"ATP6V1G1P7","entrezGeneId":100874514},{"hugoGeneSymbol":"ATP6V1G2","entrezGeneId":534},{"hugoGeneSymbol":"ATP6V1G2-DDX39B","entrezGeneId":100532737},{"hugoGeneSymbol":"ATP6V1G3","entrezGeneId":127124},{"hugoGeneSymbol":"ATP6V1H","entrezGeneId":51606},{"hugoGeneSymbol":"ATP7A","entrezGeneId":538},{"hugoGeneSymbol":"ATP7B","entrezGeneId":540},{"hugoGeneSymbol":"ATP7BP1","entrezGeneId":100462825},{"hugoGeneSymbol":"ATP8A1","entrezGeneId":10396},{"hugoGeneSymbol":"ATP8A2","entrezGeneId":51761},{"hugoGeneSymbol":"ATP8A2P1","entrezGeneId":100422505},{"hugoGeneSymbol":"ATP8A2P2","entrezGeneId":100533851},{"hugoGeneSymbol":"ATP8A2P3","entrezGeneId":100874518},{"hugoGeneSymbol":"ATP8B1","entrezGeneId":5205},{"hugoGeneSymbol":"ATP8B2","entrezGeneId":57198},{"hugoGeneSymbol":"ATP8B3","entrezGeneId":148229},{"hugoGeneSymbol":"ATP8B4","entrezGeneId":79895},{"hugoGeneSymbol":"ATP8B5P","entrezGeneId":158381},{"hugoGeneSymbol":"ATP9A","entrezGeneId":10079},{"hugoGeneSymbol":"ATP9B","entrezGeneId":374868},{"hugoGeneSymbol":"ATPAF1","entrezGeneId":64756},{"hugoGeneSymbol":"ATPAF2","entrezGeneId":91647},{"hugoGeneSymbol":"ATPLS","entrezGeneId":100499532},{"hugoGeneSymbol":"ATR","entrezGeneId":545},{"hugoGeneSymbol":"ATRAID","entrezGeneId":51374},{"hugoGeneSymbol":"ATRIP","entrezGeneId":84126},{"hugoGeneSymbol":"ATRIP-TREX1","entrezGeneId":111822955},{"hugoGeneSymbol":"ATRN","entrezGeneId":8455},{"hugoGeneSymbol":"ATRNL1","entrezGeneId":26033},{"hugoGeneSymbol":"ATRX","entrezGeneId":546},{"hugoGeneSymbol":"ATXN1","entrezGeneId":6310},{"hugoGeneSymbol":"ATXN10","entrezGeneId":25814},{"hugoGeneSymbol":"ATXN1L","entrezGeneId":342371},{"hugoGeneSymbol":"ATXN2","entrezGeneId":6311},{"hugoGeneSymbol":"ATXN2-AS","entrezGeneId":102723619},{"hugoGeneSymbol":"ATXN2L","entrezGeneId":11273},{"hugoGeneSymbol":"ATXN3","entrezGeneId":4287},{"hugoGeneSymbol":"ATXN3L","entrezGeneId":92552},{"hugoGeneSymbol":"ATXN7","entrezGeneId":6314},{"hugoGeneSymbol":"ATXN7L1","entrezGeneId":222255},{"hugoGeneSymbol":"ATXN7L2","entrezGeneId":127002},{"hugoGeneSymbol":"ATXN7L3","entrezGeneId":56970},{"hugoGeneSymbol":"ATXN7L3B","entrezGeneId":552889},{"hugoGeneSymbol":"ATXN8","entrezGeneId":724066},{"hugoGeneSymbol":"ATXN8OS","entrezGeneId":6315},{"hugoGeneSymbol":"AUH","entrezGeneId":549},{"hugoGeneSymbol":"AUNIP","entrezGeneId":79000},{"hugoGeneSymbol":"AUNX1","entrezGeneId":751798},{"hugoGeneSymbol":"AUP1","entrezGeneId":550},{"hugoGeneSymbol":"AURKA","entrezGeneId":6790},{"hugoGeneSymbol":"AURKAIP1","entrezGeneId":54998},{"hugoGeneSymbol":"AURKAPS1","entrezGeneId":6791},{"hugoGeneSymbol":"AURKAPS2","entrezGeneId":386665},{"hugoGeneSymbol":"AURKB","entrezGeneId":9212},{"hugoGeneSymbol":"AURKBPS1","entrezGeneId":644233},{"hugoGeneSymbol":"AURKC","entrezGeneId":6795},{"hugoGeneSymbol":"AUTS1","entrezGeneId":100188832},{"hugoGeneSymbol":"AUTS11","entrezGeneId":100188820},{"hugoGeneSymbol":"AUTS12","entrezGeneId":100188314},{"hugoGeneSymbol":"AUTS13","entrezGeneId":100188317},{"hugoGeneSymbol":"AUTS2","entrezGeneId":26053},{"hugoGeneSymbol":"AUTS3","entrezGeneId":387577},{"hugoGeneSymbol":"AUTS5","entrezGeneId":94313},{"hugoGeneSymbol":"AUTS6","entrezGeneId":554314},{"hugoGeneSymbol":"AUTS7","entrezGeneId":100188816},{"hugoGeneSymbol":"AUTS8","entrezGeneId":282553},{"hugoGeneSymbol":"AVEN","entrezGeneId":57099},{"hugoGeneSymbol":"AVIL","entrezGeneId":10677},{"hugoGeneSymbol":"AVL9","entrezGeneId":23080},{"hugoGeneSymbol":"AVP","entrezGeneId":551},{"hugoGeneSymbol":"AVPI1","entrezGeneId":60370},{"hugoGeneSymbol":"AVPR1A","entrezGeneId":552},{"hugoGeneSymbol":"AVPR1B","entrezGeneId":553},{"hugoGeneSymbol":"AVPR2","entrezGeneId":554},{"hugoGeneSymbol":"AVSD1","entrezGeneId":7446},{"hugoGeneSymbol":"AWAT1","entrezGeneId":158833},{"hugoGeneSymbol":"AWAT2","entrezGeneId":158835},{"hugoGeneSymbol":"AXDND1","entrezGeneId":126859},{"hugoGeneSymbol":"AXIN1","entrezGeneId":8312},{"hugoGeneSymbol":"AXIN2","entrezGeneId":8313},{"hugoGeneSymbol":"AXL","entrezGeneId":558},{"hugoGeneSymbol":"AZF1","entrezGeneId":560},{"hugoGeneSymbol":"AZGP1","entrezGeneId":563},{"hugoGeneSymbol":"AZGP1P1","entrezGeneId":646282},{"hugoGeneSymbol":"AZGP1P2","entrezGeneId":401393},{"hugoGeneSymbol":"AZI2","entrezGeneId":64343},{"hugoGeneSymbol":"AZIN1","entrezGeneId":51582},{"hugoGeneSymbol":"AZIN1-AS1","entrezGeneId":100506753},{"hugoGeneSymbol":"AZIN2","entrezGeneId":113451},{"hugoGeneSymbol":"AZON","entrezGeneId":338331},{"hugoGeneSymbol":"AZU1","entrezGeneId":566},{"hugoGeneSymbol":"AZU1P1","entrezGeneId":106480244},{"hugoGeneSymbol":"B2M","entrezGeneId":567},{"hugoGeneSymbol":"B2MR","entrezGeneId":568},{"hugoGeneSymbol":"B3GALNT1","entrezGeneId":8706},{"hugoGeneSymbol":"B3GALNT1P1","entrezGeneId":100128857},{"hugoGeneSymbol":"B3GALNT2","entrezGeneId":148789},{"hugoGeneSymbol":"B3GALNT2P1","entrezGeneId":100130402},{"hugoGeneSymbol":"B3GALT1","entrezGeneId":8708},{"hugoGeneSymbol":"B3GALT2","entrezGeneId":8707},{"hugoGeneSymbol":"B3GALT4","entrezGeneId":8705},{"hugoGeneSymbol":"B3GALT5","entrezGeneId":10317},{"hugoGeneSymbol":"B3GALT5-AS1","entrezGeneId":114041},{"hugoGeneSymbol":"B3GALT6","entrezGeneId":126792},{"hugoGeneSymbol":"B3GAT1","entrezGeneId":27087},{"hugoGeneSymbol":"B3GAT2","entrezGeneId":135152},{"hugoGeneSymbol":"B3GAT3","entrezGeneId":26229},{"hugoGeneSymbol":"B3GAT3P1","entrezGeneId":402146},{"hugoGeneSymbol":"B3GLCT","entrezGeneId":145173},{"hugoGeneSymbol":"B3GNT10","entrezGeneId":100288842},{"hugoGeneSymbol":"B3GNT2","entrezGeneId":10678},{"hugoGeneSymbol":"B3GNT2P1","entrezGeneId":100422469},{"hugoGeneSymbol":"B3GNT3","entrezGeneId":10331},{"hugoGeneSymbol":"B3GNT4","entrezGeneId":79369},{"hugoGeneSymbol":"B3GNT5","entrezGeneId":84002},{"hugoGeneSymbol":"B3GNT6","entrezGeneId":192134},{"hugoGeneSymbol":"B3GNT7","entrezGeneId":93010},{"hugoGeneSymbol":"B3GNT8","entrezGeneId":374907},{"hugoGeneSymbol":"B3GNT9","entrezGeneId":84752},{"hugoGeneSymbol":"B3GNTL1","entrezGeneId":146712},{"hugoGeneSymbol":"B3GNTL1P1","entrezGeneId":106481968},{"hugoGeneSymbol":"B3GNTL1P2","entrezGeneId":106480419},{"hugoGeneSymbol":"B4GALNT1","entrezGeneId":2583},{"hugoGeneSymbol":"B4GALNT2","entrezGeneId":124872},{"hugoGeneSymbol":"B4GALNT2P1","entrezGeneId":106481717},{"hugoGeneSymbol":"B4GALNT3","entrezGeneId":283358},{"hugoGeneSymbol":"B4GALNT4","entrezGeneId":338707},{"hugoGeneSymbol":"B4GALT1","entrezGeneId":2683},{"hugoGeneSymbol":"B4GALT1-AS1","entrezGeneId":101929639},{"hugoGeneSymbol":"B4GALT2","entrezGeneId":8704},{"hugoGeneSymbol":"B4GALT3","entrezGeneId":8703},{"hugoGeneSymbol":"B4GALT4","entrezGeneId":8702},{"hugoGeneSymbol":"B4GALT4-AS1","entrezGeneId":100874201},{"hugoGeneSymbol":"B4GALT5","entrezGeneId":9334},{"hugoGeneSymbol":"B4GALT6","entrezGeneId":9331},{"hugoGeneSymbol":"B4GALT7","entrezGeneId":11285},{"hugoGeneSymbol":"B4GAT1","entrezGeneId":11041},{"hugoGeneSymbol":"B6QTL1","entrezGeneId":100302718},{"hugoGeneSymbol":"B9D1","entrezGeneId":27077},{"hugoGeneSymbol":"B9D2","entrezGeneId":80776},{"hugoGeneSymbol":"BA255A11.4","entrezGeneId":259265},{"hugoGeneSymbol":"BA395L14.12","entrezGeneId":150478},{"hugoGeneSymbol":"BAALC","entrezGeneId":79870},{"hugoGeneSymbol":"BAALC-AS1","entrezGeneId":100499183},{"hugoGeneSymbol":"BAALC-AS2","entrezGeneId":157556},{"hugoGeneSymbol":"BAAT","entrezGeneId":570},{"hugoGeneSymbol":"BAATP1","entrezGeneId":347275},{"hugoGeneSymbol":"BABAM1","entrezGeneId":29086},{"hugoGeneSymbol":"BABAM2","entrezGeneId":9577},{"hugoGeneSymbol":"BACE1","entrezGeneId":23621},{"hugoGeneSymbol":"BACE1-AS","entrezGeneId":100379571},{"hugoGeneSymbol":"BACE2","entrezGeneId":25825},{"hugoGeneSymbol":"BACE2-IT1","entrezGeneId":282569},{"hugoGeneSymbol":"BACH1","entrezGeneId":571},{"hugoGeneSymbol":"BACH1-AS1","entrezGeneId":106478962},{"hugoGeneSymbol":"BACH1-IT2","entrezGeneId":100874322},{"hugoGeneSymbol":"BACH1-IT3","entrezGeneId":54147},{"hugoGeneSymbol":"BACH2","entrezGeneId":60468},{"hugoGeneSymbol":"BAD","entrezGeneId":572},{"hugoGeneSymbol":"BAG1","entrezGeneId":573},{"hugoGeneSymbol":"BAG2","entrezGeneId":9532},{"hugoGeneSymbol":"BAG3","entrezGeneId":9531},{"hugoGeneSymbol":"BAG4","entrezGeneId":9530},{"hugoGeneSymbol":"BAG5","entrezGeneId":9529},{"hugoGeneSymbol":"BAG6","entrezGeneId":7917},{"hugoGeneSymbol":"BAGE","entrezGeneId":574},{"hugoGeneSymbol":"BAGE2","entrezGeneId":85319},{"hugoGeneSymbol":"BAGE3","entrezGeneId":85318},{"hugoGeneSymbol":"BAGE4","entrezGeneId":85317},{"hugoGeneSymbol":"BAGE5","entrezGeneId":85316},{"hugoGeneSymbol":"BAHCC1","entrezGeneId":57597},{"hugoGeneSymbol":"BAHD1","entrezGeneId":22893},{"hugoGeneSymbol":"BAIAP2","entrezGeneId":10458},{"hugoGeneSymbol":"BAIAP2-DT","entrezGeneId":440465},{"hugoGeneSymbol":"BAIAP2L1","entrezGeneId":55971},{"hugoGeneSymbol":"BAIAP2L2","entrezGeneId":80115},{"hugoGeneSymbol":"BAIAP3","entrezGeneId":8938},{"hugoGeneSymbol":"BAK1","entrezGeneId":578},{"hugoGeneSymbol":"BAK1P1","entrezGeneId":600},{"hugoGeneSymbol":"BAK1P2","entrezGeneId":601},{"hugoGeneSymbol":"BAMBI","entrezGeneId":25805},{"hugoGeneSymbol":"BANCR","entrezGeneId":100885775},{"hugoGeneSymbol":"BANF1","entrezGeneId":8815},{"hugoGeneSymbol":"BANF1P1","entrezGeneId":317687},{"hugoGeneSymbol":"BANF1P2","entrezGeneId":414169},{"hugoGeneSymbol":"BANF1P3","entrezGeneId":100505506},{"hugoGeneSymbol":"BANF1P4","entrezGeneId":100653423},{"hugoGeneSymbol":"BANF1P5","entrezGeneId":101290503},{"hugoGeneSymbol":"BANF2","entrezGeneId":140836},{"hugoGeneSymbol":"BANK1","entrezGeneId":55024},{"hugoGeneSymbol":"BANP","entrezGeneId":54971},{"hugoGeneSymbol":"BAP1","entrezGeneId":8314},{"hugoGeneSymbol":"BARD1","entrezGeneId":580},{"hugoGeneSymbol":"BARHL1","entrezGeneId":56751},{"hugoGeneSymbol":"BARHL2","entrezGeneId":343472},{"hugoGeneSymbol":"BARX1","entrezGeneId":56033},{"hugoGeneSymbol":"BARX1-DT","entrezGeneId":101928040},{"hugoGeneSymbol":"BARX2","entrezGeneId":8538},{"hugoGeneSymbol":"BAS","entrezGeneId":8213},{"hugoGeneSymbol":"BASP1","entrezGeneId":10409},{"hugoGeneSymbol":"BASP1-AS1","entrezGeneId":285696},{"hugoGeneSymbol":"BASP1P1","entrezGeneId":646201},{"hugoGeneSymbol":"BATF","entrezGeneId":10538},{"hugoGeneSymbol":"BATF2","entrezGeneId":116071},{"hugoGeneSymbol":"BATF3","entrezGeneId":55509},{"hugoGeneSymbol":"BAX","entrezGeneId":581},{"hugoGeneSymbol":"BAZ1A","entrezGeneId":11177},{"hugoGeneSymbol":"BAZ1B","entrezGeneId":9031},{"hugoGeneSymbol":"BAZ2A","entrezGeneId":11176},{"hugoGeneSymbol":"BAZ2B","entrezGeneId":29994},{"hugoGeneSymbol":"BBC3","entrezGeneId":27113},{"hugoGeneSymbol":"BBIP1","entrezGeneId":92482},{"hugoGeneSymbol":"BBIP1P1","entrezGeneId":105373509},{"hugoGeneSymbol":"BBOF1","entrezGeneId":80127},{"hugoGeneSymbol":"BBOX1","entrezGeneId":8424},{"hugoGeneSymbol":"BBOX1-AS1","entrezGeneId":103695435},{"hugoGeneSymbol":"BBS1","entrezGeneId":582},{"hugoGeneSymbol":"BBS10","entrezGeneId":79738},{"hugoGeneSymbol":"BBS12","entrezGeneId":166379},{"hugoGeneSymbol":"BBS2","entrezGeneId":583},{"hugoGeneSymbol":"BBS4","entrezGeneId":585},{"hugoGeneSymbol":"BBS5","entrezGeneId":129880},{"hugoGeneSymbol":"BBS7","entrezGeneId":55212},{"hugoGeneSymbol":"BBS9","entrezGeneId":27241},{"hugoGeneSymbol":"BBX","entrezGeneId":56987},{"hugoGeneSymbol":"BCAM","entrezGeneId":4059},{"hugoGeneSymbol":"BCAN","entrezGeneId":63827},{"hugoGeneSymbol":"BCAP29","entrezGeneId":55973},{"hugoGeneSymbol":"BCAP31","entrezGeneId":10134},{"hugoGeneSymbol":"BCAP31P1","entrezGeneId":100194425},{"hugoGeneSymbol":"BCAP31P2","entrezGeneId":100194426},{"hugoGeneSymbol":"BCAR1","entrezGeneId":9564},{"hugoGeneSymbol":"BCAR1P1","entrezGeneId":100533717},{"hugoGeneSymbol":"BCAR1P2","entrezGeneId":100533718},{"hugoGeneSymbol":"BCAR3","entrezGeneId":8412},{"hugoGeneSymbol":"BCAR4","entrezGeneId":400500},{"hugoGeneSymbol":"BCAS1","entrezGeneId":8537},{"hugoGeneSymbol":"BCAS2","entrezGeneId":10286},{"hugoGeneSymbol":"BCAS2P1","entrezGeneId":100127960},{"hugoGeneSymbol":"BCAS2P2","entrezGeneId":100421045},{"hugoGeneSymbol":"BCAS2P3","entrezGeneId":100128339},{"hugoGeneSymbol":"BCAS3","entrezGeneId":54828},{"hugoGeneSymbol":"BCAS4","entrezGeneId":55653},{"hugoGeneSymbol":"BCAT1","entrezGeneId":586},{"hugoGeneSymbol":"BCAT2","entrezGeneId":587},{"hugoGeneSymbol":"BCC1","entrezGeneId":100307118},{"hugoGeneSymbol":"BCC2","entrezGeneId":100307119},{"hugoGeneSymbol":"BCC3","entrezGeneId":100307120},{"hugoGeneSymbol":"BCC4","entrezGeneId":100307121},{"hugoGeneSymbol":"BCC5","entrezGeneId":100307122},{"hugoGeneSymbol":"BCC6","entrezGeneId":100307123},{"hugoGeneSymbol":"BCCIP","entrezGeneId":56647},{"hugoGeneSymbol":"BCDIN3D","entrezGeneId":144233},{"hugoGeneSymbol":"BCDIN3D-AS1","entrezGeneId":100286844},{"hugoGeneSymbol":"BCHE","entrezGeneId":590},{"hugoGeneSymbol":"BCKDHA","entrezGeneId":593},{"hugoGeneSymbol":"BCKDHB","entrezGeneId":594},{"hugoGeneSymbol":"BCKDK","entrezGeneId":10295},{"hugoGeneSymbol":"BCL10","entrezGeneId":8915},{"hugoGeneSymbol":"BCL11A","entrezGeneId":53335},{"hugoGeneSymbol":"BCL11B","entrezGeneId":64919},{"hugoGeneSymbol":"BCL2","entrezGeneId":596},{"hugoGeneSymbol":"BCL2A1","entrezGeneId":597},{"hugoGeneSymbol":"BCL2L1","entrezGeneId":598},{"hugoGeneSymbol":"BCL2L10","entrezGeneId":10017},{"hugoGeneSymbol":"BCL2L11","entrezGeneId":10018},{"hugoGeneSymbol":"BCL2L12","entrezGeneId":83596},{"hugoGeneSymbol":"BCL2L12P1","entrezGeneId":100289095},{"hugoGeneSymbol":"BCL2L13","entrezGeneId":23786},{"hugoGeneSymbol":"BCL2L14","entrezGeneId":79370},{"hugoGeneSymbol":"BCL2L15","entrezGeneId":440603},{"hugoGeneSymbol":"BCL2L2","entrezGeneId":599},{"hugoGeneSymbol":"BCL2L2-PABPN1","entrezGeneId":100529063},{"hugoGeneSymbol":"BCL3","entrezGeneId":602},{"hugoGeneSymbol":"BCL5","entrezGeneId":603},{"hugoGeneSymbol":"BCL6","entrezGeneId":604},{"hugoGeneSymbol":"BCL6-AS1","entrezGeneId":106146153},{"hugoGeneSymbol":"BCL6B","entrezGeneId":255877},{"hugoGeneSymbol":"BCL7A","entrezGeneId":605},{"hugoGeneSymbol":"BCL7B","entrezGeneId":9275},{"hugoGeneSymbol":"BCL7C","entrezGeneId":9274},{"hugoGeneSymbol":"BCL9","entrezGeneId":607},{"hugoGeneSymbol":"BCL9L","entrezGeneId":283149},{"hugoGeneSymbol":"BCL9P1","entrezGeneId":100419324},{"hugoGeneSymbol":"BCLAF1","entrezGeneId":9774},{"hugoGeneSymbol":"BCLAF1P1","entrezGeneId":728366},{"hugoGeneSymbol":"BCLAF1P2","entrezGeneId":731605},{"hugoGeneSymbol":"BCLAF3","entrezGeneId":256643},{"hugoGeneSymbol":"BCO1","entrezGeneId":53630},{"hugoGeneSymbol":"BCO2","entrezGeneId":83875},{"hugoGeneSymbol":"BCOR","entrezGeneId":54880},{"hugoGeneSymbol":"BCORL1","entrezGeneId":63035},{"hugoGeneSymbol":"BCORP1","entrezGeneId":286554},{"hugoGeneSymbol":"BCR","entrezGeneId":613},{"hugoGeneSymbol":"BCRP1","entrezGeneId":644079},{"hugoGeneSymbol":"BCRP2","entrezGeneId":400892},{"hugoGeneSymbol":"BCRP3","entrezGeneId":644165},{"hugoGeneSymbol":"BCRP4","entrezGeneId":616},{"hugoGeneSymbol":"BCRP5","entrezGeneId":648980},{"hugoGeneSymbol":"BCRP6","entrezGeneId":728468},{"hugoGeneSymbol":"BCRP7","entrezGeneId":100133163},{"hugoGeneSymbol":"BCRP8","entrezGeneId":100133044},{"hugoGeneSymbol":"BCRP9","entrezGeneId":107126287},{"hugoGeneSymbol":"BCS1L","entrezGeneId":617},{"hugoGeneSymbol":"BCYRN1","entrezGeneId":618},{"hugoGeneSymbol":"BCYRN1P1","entrezGeneId":619},{"hugoGeneSymbol":"BCYRN1P2","entrezGeneId":620},{"hugoGeneSymbol":"BCYRN1P3","entrezGeneId":654337},{"hugoGeneSymbol":"BDA1B","entrezGeneId":246260},{"hugoGeneSymbol":"BDET","entrezGeneId":85504},{"hugoGeneSymbol":"BDH1","entrezGeneId":622},{"hugoGeneSymbol":"BDH2","entrezGeneId":56898},{"hugoGeneSymbol":"BDH2P1","entrezGeneId":389416},{"hugoGeneSymbol":"BDKRB1","entrezGeneId":623},{"hugoGeneSymbol":"BDKRB2","entrezGeneId":624},{"hugoGeneSymbol":"BDLN1","entrezGeneId":100913186},{"hugoGeneSymbol":"BDNF","entrezGeneId":627},{"hugoGeneSymbol":"BDNF-AS","entrezGeneId":497258},{"hugoGeneSymbol":"BDP1","entrezGeneId":55814},{"hugoGeneSymbol":"BDP1P","entrezGeneId":724038},{"hugoGeneSymbol":"BEAN1","entrezGeneId":146227},{"hugoGeneSymbol":"BEAN1-AS1","entrezGeneId":101927726},{"hugoGeneSymbol":"BECN1","entrezGeneId":8678},{"hugoGeneSymbol":"BECN1P2","entrezGeneId":100420149},{"hugoGeneSymbol":"BECN2","entrezGeneId":441925},{"hugoGeneSymbol":"BED","entrezGeneId":100653365},{"hugoGeneSymbol":"BEGAIN","entrezGeneId":57596},{"hugoGeneSymbol":"BEND2","entrezGeneId":139105},{"hugoGeneSymbol":"BEND3","entrezGeneId":57673},{"hugoGeneSymbol":"BEND3P1","entrezGeneId":644459},{"hugoGeneSymbol":"BEND3P2","entrezGeneId":392368},{"hugoGeneSymbol":"BEND3P3","entrezGeneId":650623},{"hugoGeneSymbol":"BEND4","entrezGeneId":389206},{"hugoGeneSymbol":"BEND5","entrezGeneId":79656},{"hugoGeneSymbol":"BEND6","entrezGeneId":221336},{"hugoGeneSymbol":"BEND7","entrezGeneId":222389},{"hugoGeneSymbol":"BEND7P1","entrezGeneId":100419793},{"hugoGeneSymbol":"BEST1","entrezGeneId":7439},{"hugoGeneSymbol":"BEST2","entrezGeneId":54831},{"hugoGeneSymbol":"BEST3","entrezGeneId":144453},{"hugoGeneSymbol":"BEST4","entrezGeneId":266675},{"hugoGeneSymbol":"BET1","entrezGeneId":10282},{"hugoGeneSymbol":"BET1L","entrezGeneId":51272},{"hugoGeneSymbol":"BET1P1","entrezGeneId":100128542},{"hugoGeneSymbol":"BEVI","entrezGeneId":628},{"hugoGeneSymbol":"BEX1","entrezGeneId":55859},{"hugoGeneSymbol":"BEX2","entrezGeneId":84707},{"hugoGeneSymbol":"BEX3","entrezGeneId":27018},{"hugoGeneSymbol":"BEX4","entrezGeneId":56271},{"hugoGeneSymbol":"BEX5","entrezGeneId":340542},{"hugoGeneSymbol":"BFAR","entrezGeneId":51283},{"hugoGeneSymbol":"BFD1","entrezGeneId":474296},{"hugoGeneSymbol":"BFD2","entrezGeneId":474297},{"hugoGeneSymbol":"BFD3","entrezGeneId":474298},{"hugoGeneSymbol":"BFD4","entrezGeneId":474299},{"hugoGeneSymbol":"BFD5","entrezGeneId":474300},{"hugoGeneSymbol":"BFIC2","entrezGeneId":81865},{"hugoGeneSymbol":"BFIS1","entrezGeneId":8181},{"hugoGeneSymbol":"BFIS4","entrezGeneId":100271922},{"hugoGeneSymbol":"BFSP1","entrezGeneId":631},{"hugoGeneSymbol":"BFSP2","entrezGeneId":8419},{"hugoGeneSymbol":"BFSP2-AS1","entrezGeneId":85003},{"hugoGeneSymbol":"BGLAP","entrezGeneId":632},{"hugoGeneSymbol":"BGLT3","entrezGeneId":103344929},{"hugoGeneSymbol":"BGN","entrezGeneId":633},{"hugoGeneSymbol":"BHD","entrezGeneId":50947},{"hugoGeneSymbol":"BHLHA15","entrezGeneId":168620},{"hugoGeneSymbol":"BHLHA9","entrezGeneId":727857},{"hugoGeneSymbol":"BHLHB9","entrezGeneId":80823},{"hugoGeneSymbol":"BHLHB9P1","entrezGeneId":100431177},{"hugoGeneSymbol":"BHLHE22","entrezGeneId":27319},{"hugoGeneSymbol":"BHLHE23","entrezGeneId":128408},{"hugoGeneSymbol":"BHLHE40","entrezGeneId":8553},{"hugoGeneSymbol":"BHLHE40-AS1","entrezGeneId":100507582},{"hugoGeneSymbol":"BHLHE41","entrezGeneId":79365},{"hugoGeneSymbol":"BHMG1","entrezGeneId":388553},{"hugoGeneSymbol":"BHMT","entrezGeneId":635},{"hugoGeneSymbol":"BHMT2","entrezGeneId":23743},{"hugoGeneSymbol":"BICC1","entrezGeneId":80114},{"hugoGeneSymbol":"BICD1","entrezGeneId":636},{"hugoGeneSymbol":"BICD1P1","entrezGeneId":391472},{"hugoGeneSymbol":"BICD2","entrezGeneId":23299},{"hugoGeneSymbol":"BICDL1","entrezGeneId":92558},{"hugoGeneSymbol":"BICDL2","entrezGeneId":146439},{"hugoGeneSymbol":"BICRA","entrezGeneId":29998},{"hugoGeneSymbol":"BICRA-AS1","entrezGeneId":106144534},{"hugoGeneSymbol":"BICRAL","entrezGeneId":23506},{"hugoGeneSymbol":"BID","entrezGeneId":637},{"hugoGeneSymbol":"BIK","entrezGeneId":638},{"hugoGeneSymbol":"BIN1","entrezGeneId":274},{"hugoGeneSymbol":"BIN2","entrezGeneId":51411},{"hugoGeneSymbol":"BIN2P1","entrezGeneId":345258},{"hugoGeneSymbol":"BIN2P2","entrezGeneId":644601},{"hugoGeneSymbol":"BIN3","entrezGeneId":55909},{"hugoGeneSymbol":"BIN3-IT1","entrezGeneId":80094},{"hugoGeneSymbol":"BIRC2","entrezGeneId":329},{"hugoGeneSymbol":"BIRC3","entrezGeneId":330},{"hugoGeneSymbol":"BIRC5","entrezGeneId":332},{"hugoGeneSymbol":"BIRC6","entrezGeneId":57448},{"hugoGeneSymbol":"BIRC6-AS1","entrezGeneId":100874009},{"hugoGeneSymbol":"BIRC6-AS2","entrezGeneId":103752586},{"hugoGeneSymbol":"BIRC7","entrezGeneId":79444},{"hugoGeneSymbol":"BIRC8","entrezGeneId":112401},{"hugoGeneSymbol":"BISPR","entrezGeneId":105221694},{"hugoGeneSymbol":"BIVM","entrezGeneId":54841},{"hugoGeneSymbol":"BIVM-ERCC5","entrezGeneId":100533467},{"hugoGeneSymbol":"BKMA1","entrezGeneId":7951},{"hugoGeneSymbol":"BLACAT1","entrezGeneId":101669762},{"hugoGeneSymbol":"BLACE","entrezGeneId":338436},{"hugoGeneSymbol":"BLCAP","entrezGeneId":10904},{"hugoGeneSymbol":"BLID","entrezGeneId":414899},{"hugoGeneSymbol":"BLK","entrezGeneId":640},{"hugoGeneSymbol":"BLM","entrezGeneId":641},{"hugoGeneSymbol":"BLMH","entrezGeneId":642},{"hugoGeneSymbol":"BLNK","entrezGeneId":29760},{"hugoGeneSymbol":"BLOC1S1","entrezGeneId":2647},{"hugoGeneSymbol":"BLOC1S1-RDH5","entrezGeneId":100528022},{"hugoGeneSymbol":"BLOC1S2","entrezGeneId":282991},{"hugoGeneSymbol":"BLOC1S2P1","entrezGeneId":100131924},{"hugoGeneSymbol":"BLOC1S3","entrezGeneId":388552},{"hugoGeneSymbol":"BLOC1S4","entrezGeneId":55330},{"hugoGeneSymbol":"BLOC1S5","entrezGeneId":63915},{"hugoGeneSymbol":"BLOC1S5-TXNDC5","entrezGeneId":100526836},{"hugoGeneSymbol":"BLOC1S6","entrezGeneId":26258},{"hugoGeneSymbol":"BLVRA","entrezGeneId":644},{"hugoGeneSymbol":"BLVRB","entrezGeneId":645},{"hugoGeneSymbol":"BLZF1","entrezGeneId":8548},{"hugoGeneSymbol":"BLZF2P","entrezGeneId":317729},{"hugoGeneSymbol":"BMF","entrezGeneId":90427},{"hugoGeneSymbol":"BMF-AS1","entrezGeneId":110806288},{"hugoGeneSymbol":"BMI1","entrezGeneId":648},{"hugoGeneSymbol":"BMI1P1","entrezGeneId":100127902},{"hugoGeneSymbol":"BMIQ1","entrezGeneId":170815},{"hugoGeneSymbol":"BMIQ10","entrezGeneId":353126},{"hugoGeneSymbol":"BMIQ13","entrezGeneId":100233157},{"hugoGeneSymbol":"BMIQ14","entrezGeneId":100233158},{"hugoGeneSymbol":"BMIQ15","entrezGeneId":100302719},{"hugoGeneSymbol":"BMIQ16","entrezGeneId":100859928},{"hugoGeneSymbol":"BMIQ2","entrezGeneId":192149},{"hugoGeneSymbol":"BMIQ3","entrezGeneId":337895},{"hugoGeneSymbol":"BMIQ5","entrezGeneId":449016},{"hugoGeneSymbol":"BMIQ6","entrezGeneId":449017},{"hugoGeneSymbol":"BMIQ7","entrezGeneId":404683},{"hugoGeneSymbol":"BMIQ8","entrezGeneId":56694},{"hugoGeneSymbol":"BMND10","entrezGeneId":100188883},{"hugoGeneSymbol":"BMND11","entrezGeneId":100188884},{"hugoGeneSymbol":"BMND13","entrezGeneId":100294717},{"hugoGeneSymbol":"BMND14","entrezGeneId":100294718},{"hugoGeneSymbol":"BMND2","entrezGeneId":338027},{"hugoGeneSymbol":"BMND3","entrezGeneId":246259},{"hugoGeneSymbol":"BMND4","entrezGeneId":554316},{"hugoGeneSymbol":"BMND5","entrezGeneId":554315},{"hugoGeneSymbol":"BMND6","entrezGeneId":100188797},{"hugoGeneSymbol":"BMND7","entrezGeneId":100188853},{"hugoGeneSymbol":"BMND8","entrezGeneId":100188854},{"hugoGeneSymbol":"BMND9","entrezGeneId":100188882},{"hugoGeneSymbol":"BMP1","entrezGeneId":649},{"hugoGeneSymbol":"BMP10","entrezGeneId":27302},{"hugoGeneSymbol":"BMP15","entrezGeneId":9210},{"hugoGeneSymbol":"BMP2","entrezGeneId":650},{"hugoGeneSymbol":"BMP2K","entrezGeneId":55589},{"hugoGeneSymbol":"BMP2KL","entrezGeneId":347359},{"hugoGeneSymbol":"BMP3","entrezGeneId":651},{"hugoGeneSymbol":"BMP4","entrezGeneId":652},{"hugoGeneSymbol":"BMP5","entrezGeneId":653},{"hugoGeneSymbol":"BMP6","entrezGeneId":654},{"hugoGeneSymbol":"BMP6P1","entrezGeneId":266700},{"hugoGeneSymbol":"BMP7","entrezGeneId":655},{"hugoGeneSymbol":"BMP7-AS1","entrezGeneId":102723590},{"hugoGeneSymbol":"BMP8A","entrezGeneId":353500},{"hugoGeneSymbol":"BMP8B","entrezGeneId":656},{"hugoGeneSymbol":"BMPER","entrezGeneId":168667},{"hugoGeneSymbol":"BMPR1A","entrezGeneId":657},{"hugoGeneSymbol":"BMPR1APS1","entrezGeneId":100421515},{"hugoGeneSymbol":"BMPR1APS2","entrezGeneId":100533800},{"hugoGeneSymbol":"BMPR1B","entrezGeneId":658},{"hugoGeneSymbol":"BMPR1B-DT","entrezGeneId":100507012},{"hugoGeneSymbol":"BMPR2","entrezGeneId":659},{"hugoGeneSymbol":"BMS1","entrezGeneId":9790},{"hugoGeneSymbol":"BMS1P1","entrezGeneId":399761},{"hugoGeneSymbol":"BMS1P10","entrezGeneId":728611},{"hugoGeneSymbol":"BMS1P11","entrezGeneId":644632},{"hugoGeneSymbol":"BMS1P12","entrezGeneId":644684},{"hugoGeneSymbol":"BMS1P13","entrezGeneId":644716},{"hugoGeneSymbol":"BMS1P14","entrezGeneId":728034},{"hugoGeneSymbol":"BMS1P15","entrezGeneId":642311},{"hugoGeneSymbol":"BMS1P16","entrezGeneId":727914},{"hugoGeneSymbol":"BMS1P17","entrezGeneId":101101776},{"hugoGeneSymbol":"BMS1P18","entrezGeneId":414763},{"hugoGeneSymbol":"BMS1P19","entrezGeneId":100131577},{"hugoGeneSymbol":"BMS1P2","entrezGeneId":642826},{"hugoGeneSymbol":"BMS1P20","entrezGeneId":96610},{"hugoGeneSymbol":"BMS1P21","entrezGeneId":100288974},{"hugoGeneSymbol":"BMS1P22","entrezGeneId":106480334},{"hugoGeneSymbol":"BMS1P3","entrezGeneId":414217},{"hugoGeneSymbol":"BMS1P4","entrezGeneId":729096},{"hugoGeneSymbol":"BMS1P7","entrezGeneId":100133265},{"hugoGeneSymbol":"BMS1P8","entrezGeneId":653557},{"hugoGeneSymbol":"BMS1P9","entrezGeneId":653458},{"hugoGeneSymbol":"BMT2","entrezGeneId":154743},{"hugoGeneSymbol":"BMX","entrezGeneId":660},{"hugoGeneSymbol":"BNC1","entrezGeneId":646},{"hugoGeneSymbol":"BNC2","entrezGeneId":54796},{"hugoGeneSymbol":"BNC2-AS1","entrezGeneId":111216284},{"hugoGeneSymbol":"BNIP1","entrezGeneId":662},{"hugoGeneSymbol":"BNIP2","entrezGeneId":663},{"hugoGeneSymbol":"BNIP3","entrezGeneId":664},{"hugoGeneSymbol":"BNIP3L","entrezGeneId":665},{"hugoGeneSymbol":"BNIP3P1","entrezGeneId":319138},{"hugoGeneSymbol":"BNIP3P10","entrezGeneId":100421695},{"hugoGeneSymbol":"BNIP3P11","entrezGeneId":106480286},{"hugoGeneSymbol":"BNIP3P12","entrezGeneId":100421703},{"hugoGeneSymbol":"BNIP3P13","entrezGeneId":101060192},{"hugoGeneSymbol":"BNIP3P14","entrezGeneId":100421696},{"hugoGeneSymbol":"BNIP3P15","entrezGeneId":106481692},{"hugoGeneSymbol":"BNIP3P16","entrezGeneId":106480418},{"hugoGeneSymbol":"BNIP3P17","entrezGeneId":100421704},{"hugoGeneSymbol":"BNIP3P18","entrezGeneId":106481693},{"hugoGeneSymbol":"BNIP3P19","entrezGeneId":106480281},{"hugoGeneSymbol":"BNIP3P2","entrezGeneId":100421754},{"hugoGeneSymbol":"BNIP3P20","entrezGeneId":100421705},{"hugoGeneSymbol":"BNIP3P21","entrezGeneId":100131306},{"hugoGeneSymbol":"BNIP3P22","entrezGeneId":100421706},{"hugoGeneSymbol":"BNIP3P23","entrezGeneId":100421697},{"hugoGeneSymbol":"BNIP3P24","entrezGeneId":100421698},{"hugoGeneSymbol":"BNIP3P25","entrezGeneId":100421707},{"hugoGeneSymbol":"BNIP3P26","entrezGeneId":100421699},{"hugoGeneSymbol":"BNIP3P27","entrezGeneId":100421708},{"hugoGeneSymbol":"BNIP3P28","entrezGeneId":106481966},{"hugoGeneSymbol":"BNIP3P29","entrezGeneId":100421700},{"hugoGeneSymbol":"BNIP3P3","entrezGeneId":100421736},{"hugoGeneSymbol":"BNIP3P30","entrezGeneId":106481694},{"hugoGeneSymbol":"BNIP3P31","entrezGeneId":106480282},{"hugoGeneSymbol":"BNIP3P32","entrezGeneId":106480283},{"hugoGeneSymbol":"BNIP3P33","entrezGeneId":106481695},{"hugoGeneSymbol":"BNIP3P34","entrezGeneId":100128849},{"hugoGeneSymbol":"BNIP3P35","entrezGeneId":106480284},{"hugoGeneSymbol":"BNIP3P36","entrezGeneId":106481696},{"hugoGeneSymbol":"BNIP3P37","entrezGeneId":106480285},{"hugoGeneSymbol":"BNIP3P38","entrezGeneId":100421709},{"hugoGeneSymbol":"BNIP3P39","entrezGeneId":100421701},{"hugoGeneSymbol":"BNIP3P4","entrezGeneId":100289028},{"hugoGeneSymbol":"BNIP3P40","entrezGeneId":100421702},{"hugoGeneSymbol":"BNIP3P41","entrezGeneId":101059988},{"hugoGeneSymbol":"BNIP3P42","entrezGeneId":106481697},{"hugoGeneSymbol":"BNIP3P5","entrezGeneId":100421724},{"hugoGeneSymbol":"BNIP3P6","entrezGeneId":100129777},{"hugoGeneSymbol":"BNIP3P7","entrezGeneId":101927265},{"hugoGeneSymbol":"BNIP3P8","entrezGeneId":100421710},{"hugoGeneSymbol":"BNIP3P9","entrezGeneId":106480280},{"hugoGeneSymbol":"BNIPL","entrezGeneId":149428},{"hugoGeneSymbol":"BOC","entrezGeneId":91653},{"hugoGeneSymbol":"BOD1","entrezGeneId":91272},{"hugoGeneSymbol":"BOD1L1","entrezGeneId":259282},{"hugoGeneSymbol":"BOD1L2","entrezGeneId":284257},{"hugoGeneSymbol":"BOD1P1","entrezGeneId":100129468},{"hugoGeneSymbol":"BOD1P2","entrezGeneId":100129355},{"hugoGeneSymbol":"BOK","entrezGeneId":666},{"hugoGeneSymbol":"BOK-AS1","entrezGeneId":100379249},{"hugoGeneSymbol":"BOLA1","entrezGeneId":51027},{"hugoGeneSymbol":"BOLA2","entrezGeneId":552900},{"hugoGeneSymbol":"BOLA2-SMG1P6","entrezGeneId":107282092},{"hugoGeneSymbol":"BOLA2B","entrezGeneId":654483},{"hugoGeneSymbol":"BOLA2P1","entrezGeneId":100652796},{"hugoGeneSymbol":"BOLA2P2","entrezGeneId":106480322},{"hugoGeneSymbol":"BOLA2P3","entrezGeneId":106480323},{"hugoGeneSymbol":"BOLA3","entrezGeneId":388962},{"hugoGeneSymbol":"BOLA3-AS1","entrezGeneId":100507171},{"hugoGeneSymbol":"BOLA3P1","entrezGeneId":100288111},{"hugoGeneSymbol":"BOLA3P2","entrezGeneId":100287463},{"hugoGeneSymbol":"BOLA3P3","entrezGeneId":644754},{"hugoGeneSymbol":"BOLA3P4","entrezGeneId":106480324},{"hugoGeneSymbol":"BOLL","entrezGeneId":66037},{"hugoGeneSymbol":"BOP","entrezGeneId":100294715},{"hugoGeneSymbol":"BOP1","entrezGeneId":23246},{"hugoGeneSymbol":"BORA","entrezGeneId":79866},{"hugoGeneSymbol":"BORCS5","entrezGeneId":118426},{"hugoGeneSymbol":"BORCS6","entrezGeneId":54785},{"hugoGeneSymbol":"BORCS7","entrezGeneId":119032},{"hugoGeneSymbol":"BORCS7-ASMT","entrezGeneId":100528007},{"hugoGeneSymbol":"BORCS8","entrezGeneId":729991},{"hugoGeneSymbol":"BORCS8-MEF2B","entrezGeneId":4207},{"hugoGeneSymbol":"BOS2","entrezGeneId":64585},{"hugoGeneSymbol":"BP1","entrezGeneId":474256},{"hugoGeneSymbol":"BP10","entrezGeneId":474252},{"hugoGeneSymbol":"BP11","entrezGeneId":474253},{"hugoGeneSymbol":"BP12","entrezGeneId":474254},{"hugoGeneSymbol":"BP13","entrezGeneId":474255},{"hugoGeneSymbol":"BP14","entrezGeneId":474260},{"hugoGeneSymbol":"BP15","entrezGeneId":474261},{"hugoGeneSymbol":"BP16","entrezGeneId":474262},{"hugoGeneSymbol":"BP17","entrezGeneId":474212},{"hugoGeneSymbol":"BP18","entrezGeneId":474213},{"hugoGeneSymbol":"BP19","entrezGeneId":474214},{"hugoGeneSymbol":"BP2","entrezGeneId":474257},{"hugoGeneSymbol":"BP20","entrezGeneId":474216},{"hugoGeneSymbol":"BP21","entrezGeneId":474215},{"hugoGeneSymbol":"BP22","entrezGeneId":474197},{"hugoGeneSymbol":"BP23","entrezGeneId":474198},{"hugoGeneSymbol":"BP24","entrezGeneId":474189},{"hugoGeneSymbol":"BP25","entrezGeneId":474266},{"hugoGeneSymbol":"BP26","entrezGeneId":474267},{"hugoGeneSymbol":"BP27","entrezGeneId":474269},{"hugoGeneSymbol":"BP28","entrezGeneId":474268},{"hugoGeneSymbol":"BP29","entrezGeneId":544338},{"hugoGeneSymbol":"BP3","entrezGeneId":474259},{"hugoGeneSymbol":"BP30","entrezGeneId":474190},{"hugoGeneSymbol":"BP31","entrezGeneId":474191},{"hugoGeneSymbol":"BP32","entrezGeneId":474192},{"hugoGeneSymbol":"BP33","entrezGeneId":474193},{"hugoGeneSymbol":"BP34","entrezGeneId":474194},{"hugoGeneSymbol":"BP35","entrezGeneId":474187},{"hugoGeneSymbol":"BP36","entrezGeneId":474217},{"hugoGeneSymbol":"BP37","entrezGeneId":474218},{"hugoGeneSymbol":"BP38","entrezGeneId":474220},{"hugoGeneSymbol":"BP39","entrezGeneId":474219},{"hugoGeneSymbol":"BP4","entrezGeneId":474258},{"hugoGeneSymbol":"BP45","entrezGeneId":474201},{"hugoGeneSymbol":"BP46","entrezGeneId":474202},{"hugoGeneSymbol":"BP47","entrezGeneId":474203},{"hugoGeneSymbol":"BP48","entrezGeneId":474204},{"hugoGeneSymbol":"BP49","entrezGeneId":474205},{"hugoGeneSymbol":"BP5","entrezGeneId":474301},{"hugoGeneSymbol":"BP50","entrezGeneId":474207},{"hugoGeneSymbol":"BP51","entrezGeneId":474206},{"hugoGeneSymbol":"BP52","entrezGeneId":474208},{"hugoGeneSymbol":"BP53","entrezGeneId":474209},{"hugoGeneSymbol":"BP54","entrezGeneId":474210},{"hugoGeneSymbol":"BP55","entrezGeneId":474211},{"hugoGeneSymbol":"BP6","entrezGeneId":474302},{"hugoGeneSymbol":"BP7","entrezGeneId":544319},{"hugoGeneSymbol":"BP8","entrezGeneId":544326},{"hugoGeneSymbol":"BP9","entrezGeneId":474199},{"hugoGeneSymbol":"BPESC1","entrezGeneId":60467},{"hugoGeneSymbol":"BPGM","entrezGeneId":669},{"hugoGeneSymbol":"BPHL","entrezGeneId":670},{"hugoGeneSymbol":"BPI","entrezGeneId":671},{"hugoGeneSymbol":"BPIFA1","entrezGeneId":51297},{"hugoGeneSymbol":"BPIFA2","entrezGeneId":140683},{"hugoGeneSymbol":"BPIFA3","entrezGeneId":128861},{"hugoGeneSymbol":"BPIFA4P","entrezGeneId":317716},{"hugoGeneSymbol":"BPIFB1","entrezGeneId":92747},{"hugoGeneSymbol":"BPIFB2","entrezGeneId":80341},{"hugoGeneSymbol":"BPIFB3","entrezGeneId":359710},{"hugoGeneSymbol":"BPIFB4","entrezGeneId":149954},{"hugoGeneSymbol":"BPIFB5P","entrezGeneId":100505383},{"hugoGeneSymbol":"BPIFB6","entrezGeneId":128859},{"hugoGeneSymbol":"BPIFB9P","entrezGeneId":402016},{"hugoGeneSymbol":"BPIFC","entrezGeneId":254240},{"hugoGeneSymbol":"BPNT1","entrezGeneId":10380},{"hugoGeneSymbol":"BPPV","entrezGeneId":619536},{"hugoGeneSymbol":"BPTF","entrezGeneId":2186},{"hugoGeneSymbol":"BPTFP1","entrezGeneId":109286551},{"hugoGeneSymbol":"BPY2","entrezGeneId":9083},{"hugoGeneSymbol":"BPY2B","entrezGeneId":442867},{"hugoGeneSymbol":"BPY2C","entrezGeneId":442868},{"hugoGeneSymbol":"BPY2DP","entrezGeneId":100885797},{"hugoGeneSymbol":"BRAF","entrezGeneId":673},{"hugoGeneSymbol":"BRAFP1","entrezGeneId":286494},{"hugoGeneSymbol":"BRAP","entrezGeneId":8315},{"hugoGeneSymbol":"BRAT1","entrezGeneId":221927},{"hugoGeneSymbol":"BRCA1","entrezGeneId":672},{"hugoGeneSymbol":"BRCA1P1","entrezGeneId":394269},{"hugoGeneSymbol":"BRCA2","entrezGeneId":675},{"hugoGeneSymbol":"BRCA3","entrezGeneId":60500},{"hugoGeneSymbol":"BRCATA","entrezGeneId":8068},{"hugoGeneSymbol":"BRCC3","entrezGeneId":79184},{"hugoGeneSymbol":"BRCC3P1","entrezGeneId":100421311},{"hugoGeneSymbol":"BRCD1","entrezGeneId":8105},{"hugoGeneSymbol":"BRD1","entrezGeneId":23774},{"hugoGeneSymbol":"BRD2","entrezGeneId":6046},{"hugoGeneSymbol":"BRD3","entrezGeneId":8019},{"hugoGeneSymbol":"BRD3OS","entrezGeneId":266655},{"hugoGeneSymbol":"BRD4","entrezGeneId":23476},{"hugoGeneSymbol":"BRD7","entrezGeneId":29117},{"hugoGeneSymbol":"BRD7P1","entrezGeneId":100288948},{"hugoGeneSymbol":"BRD7P2","entrezGeneId":647076},{"hugoGeneSymbol":"BRD7P3","entrezGeneId":23629},{"hugoGeneSymbol":"BRD7P4","entrezGeneId":100287229},{"hugoGeneSymbol":"BRD7P5","entrezGeneId":100129259},{"hugoGeneSymbol":"BRD7P6","entrezGeneId":100128042},{"hugoGeneSymbol":"BRD8","entrezGeneId":10902},{"hugoGeneSymbol":"BRD9","entrezGeneId":65980},{"hugoGeneSymbol":"BRD9P1","entrezGeneId":106481721},{"hugoGeneSymbol":"BRD9P2","entrezGeneId":109729114},{"hugoGeneSymbol":"BRDT","entrezGeneId":676},{"hugoGeneSymbol":"BRDTP1","entrezGeneId":643486},{"hugoGeneSymbol":"BRE-AS1","entrezGeneId":100302650},{"hugoGeneSymbol":"BREA2","entrezGeneId":286076},{"hugoGeneSymbol":"BRF1","entrezGeneId":2972},{"hugoGeneSymbol":"BRF2","entrezGeneId":55290},{"hugoGeneSymbol":"BRI3","entrezGeneId":25798},{"hugoGeneSymbol":"BRI3BP","entrezGeneId":140707},{"hugoGeneSymbol":"BRI3BPP1","entrezGeneId":100129976},{"hugoGeneSymbol":"BRI3P1","entrezGeneId":730010},{"hugoGeneSymbol":"BRI3P2","entrezGeneId":441630},{"hugoGeneSymbol":"BRI3P3","entrezGeneId":100101554},{"hugoGeneSymbol":"BRICD5","entrezGeneId":283870},{"hugoGeneSymbol":"BRINP1","entrezGeneId":1620},{"hugoGeneSymbol":"BRINP2","entrezGeneId":57795},{"hugoGeneSymbol":"BRINP3","entrezGeneId":339479},{"hugoGeneSymbol":"BRIP1","entrezGeneId":83990},{"hugoGeneSymbol":"BRIX1","entrezGeneId":55299},{"hugoGeneSymbol":"BRIX1P1","entrezGeneId":100422268},{"hugoGeneSymbol":"BRK1","entrezGeneId":55845},{"hugoGeneSymbol":"BRK1P2","entrezGeneId":100874492},{"hugoGeneSymbol":"BRKS1","entrezGeneId":50963},{"hugoGeneSymbol":"BRMS1","entrezGeneId":25855},{"hugoGeneSymbol":"BRMS1L","entrezGeneId":84312},{"hugoGeneSymbol":"BROX","entrezGeneId":148362},{"hugoGeneSymbol":"BRPF1","entrezGeneId":7862},{"hugoGeneSymbol":"BRPF3","entrezGeneId":27154},{"hugoGeneSymbol":"BRS3","entrezGeneId":680},{"hugoGeneSymbol":"BRSK1","entrezGeneId":84446},{"hugoGeneSymbol":"BRSK2","entrezGeneId":9024},{"hugoGeneSymbol":"BRV2","entrezGeneId":100313948},{"hugoGeneSymbol":"BRWD1","entrezGeneId":54014},{"hugoGeneSymbol":"BRWD1-AS1","entrezGeneId":100874093},{"hugoGeneSymbol":"BRWD1-AS2","entrezGeneId":103091865},{"hugoGeneSymbol":"BRWD1-IT1","entrezGeneId":106480743},{"hugoGeneSymbol":"BRWD1P1","entrezGeneId":106481724},{"hugoGeneSymbol":"BRWD1P2","entrezGeneId":100287505},{"hugoGeneSymbol":"BRWD1P3","entrezGeneId":106480688},{"hugoGeneSymbol":"BRWD3","entrezGeneId":254065},{"hugoGeneSymbol":"BSCL2","entrezGeneId":26580},{"hugoGeneSymbol":"BSDC1","entrezGeneId":55108},{"hugoGeneSymbol":"BSG","entrezGeneId":682},{"hugoGeneSymbol":"BSN","entrezGeneId":8927},{"hugoGeneSymbol":"BSN-AS1","entrezGeneId":106478963},{"hugoGeneSymbol":"BSN-DT","entrezGeneId":100132677},{"hugoGeneSymbol":"BSND","entrezGeneId":7809},{"hugoGeneSymbol":"BSNDP1","entrezGeneId":106480329},{"hugoGeneSymbol":"BSNDP2","entrezGeneId":100422517},{"hugoGeneSymbol":"BSNDP3","entrezGeneId":106481725},{"hugoGeneSymbol":"BSNDP4","entrezGeneId":106481726},{"hugoGeneSymbol":"BSPH1","entrezGeneId":100131137},{"hugoGeneSymbol":"BSPRY","entrezGeneId":54836},{"hugoGeneSymbol":"BST1","entrezGeneId":683},{"hugoGeneSymbol":"BST2","entrezGeneId":684},{"hugoGeneSymbol":"BSX","entrezGeneId":390259},{"hugoGeneSymbol":"BSZQTL","entrezGeneId":100188793},{"hugoGeneSymbol":"BSZQTL2","entrezGeneId":100188794},{"hugoGeneSymbol":"BSZQTL3","entrezGeneId":100188815},{"hugoGeneSymbol":"BTAF1","entrezGeneId":9044},{"hugoGeneSymbol":"BTBD1","entrezGeneId":53339},{"hugoGeneSymbol":"BTBD10","entrezGeneId":84280},{"hugoGeneSymbol":"BTBD10P1","entrezGeneId":100128678},{"hugoGeneSymbol":"BTBD10P2","entrezGeneId":100420401},{"hugoGeneSymbol":"BTBD11","entrezGeneId":121551},{"hugoGeneSymbol":"BTBD16","entrezGeneId":118663},{"hugoGeneSymbol":"BTBD17","entrezGeneId":388419},{"hugoGeneSymbol":"BTBD18","entrezGeneId":643376},{"hugoGeneSymbol":"BTBD19","entrezGeneId":149478},{"hugoGeneSymbol":"BTBD2","entrezGeneId":55643},{"hugoGeneSymbol":"BTBD3","entrezGeneId":22903},{"hugoGeneSymbol":"BTBD6","entrezGeneId":90135},{"hugoGeneSymbol":"BTBD6P1","entrezGeneId":646330},{"hugoGeneSymbol":"BTBD7","entrezGeneId":55727},{"hugoGeneSymbol":"BTBD7P1","entrezGeneId":441548},{"hugoGeneSymbol":"BTBD7P2","entrezGeneId":100420392},{"hugoGeneSymbol":"BTBD8","entrezGeneId":284697},{"hugoGeneSymbol":"BTBD9","entrezGeneId":114781},{"hugoGeneSymbol":"BTBD9-AS1","entrezGeneId":101929425},{"hugoGeneSymbol":"BTC","entrezGeneId":685},{"hugoGeneSymbol":"BTD","entrezGeneId":686},{"hugoGeneSymbol":"BTF3","entrezGeneId":689},{"hugoGeneSymbol":"BTF3L4","entrezGeneId":91408},{"hugoGeneSymbol":"BTF3L4P1","entrezGeneId":100505945},{"hugoGeneSymbol":"BTF3L4P2","entrezGeneId":653189},{"hugoGeneSymbol":"BTF3L4P3","entrezGeneId":391040},{"hugoGeneSymbol":"BTF3L4P4","entrezGeneId":100506061},{"hugoGeneSymbol":"BTF3P1","entrezGeneId":693},{"hugoGeneSymbol":"BTF3P10","entrezGeneId":345829},{"hugoGeneSymbol":"BTF3P11","entrezGeneId":690},{"hugoGeneSymbol":"BTF3P12","entrezGeneId":652963},{"hugoGeneSymbol":"BTF3P13","entrezGeneId":132556},{"hugoGeneSymbol":"BTF3P14","entrezGeneId":100132641},{"hugoGeneSymbol":"BTF3P15","entrezGeneId":100130409},{"hugoGeneSymbol":"BTF3P16","entrezGeneId":643412},{"hugoGeneSymbol":"BTF3P2","entrezGeneId":283631},{"hugoGeneSymbol":"BTF3P3","entrezGeneId":652964},{"hugoGeneSymbol":"BTF3P4","entrezGeneId":392350},{"hugoGeneSymbol":"BTF3P5","entrezGeneId":652959},{"hugoGeneSymbol":"BTF3P6","entrezGeneId":100499261},{"hugoGeneSymbol":"BTF3P7","entrezGeneId":652960},{"hugoGeneSymbol":"BTF3P8","entrezGeneId":652961},{"hugoGeneSymbol":"BTF3P9","entrezGeneId":503543},{"hugoGeneSymbol":"BTG1","entrezGeneId":694},{"hugoGeneSymbol":"BTG1P1","entrezGeneId":100129641},{"hugoGeneSymbol":"BTG2","entrezGeneId":7832},{"hugoGeneSymbol":"BTG3","entrezGeneId":10950},{"hugoGeneSymbol":"BTG3-AS1","entrezGeneId":110806272},{"hugoGeneSymbol":"BTG3P1","entrezGeneId":100419246},{"hugoGeneSymbol":"BTG4","entrezGeneId":54766},{"hugoGeneSymbol":"BTG4P1","entrezGeneId":106480330},{"hugoGeneSymbol":"BTK","entrezGeneId":695},{"hugoGeneSymbol":"BTLA","entrezGeneId":151888},{"hugoGeneSymbol":"BTN1A1","entrezGeneId":696},{"hugoGeneSymbol":"BTN1A1P1","entrezGeneId":100420941},{"hugoGeneSymbol":"BTN2A1","entrezGeneId":11120},{"hugoGeneSymbol":"BTN2A2","entrezGeneId":10385},{"hugoGeneSymbol":"BTN2A3P","entrezGeneId":54718},{"hugoGeneSymbol":"BTN3A1","entrezGeneId":11119},{"hugoGeneSymbol":"BTN3A2","entrezGeneId":11118},{"hugoGeneSymbol":"BTN3A3","entrezGeneId":10384},{"hugoGeneSymbol":"BTNL10","entrezGeneId":100129094},{"hugoGeneSymbol":"BTNL2","entrezGeneId":56244},{"hugoGeneSymbol":"BTNL3","entrezGeneId":10917},{"hugoGeneSymbol":"BTNL8","entrezGeneId":79908},{"hugoGeneSymbol":"BTNL9","entrezGeneId":153579},{"hugoGeneSymbol":"BTRC","entrezGeneId":8945},{"hugoGeneSymbol":"BTRCP1","entrezGeneId":100420631},{"hugoGeneSymbol":"BTS1","entrezGeneId":698},{"hugoGeneSymbol":"BUB1","entrezGeneId":699},{"hugoGeneSymbol":"BUB1B","entrezGeneId":701},{"hugoGeneSymbol":"BUB1B-PAK6","entrezGeneId":106821730},{"hugoGeneSymbol":"BUB1P1","entrezGeneId":100422363},{"hugoGeneSymbol":"BUB3","entrezGeneId":9184},{"hugoGeneSymbol":"BUB3P1","entrezGeneId":646614},{"hugoGeneSymbol":"BUD13","entrezGeneId":84811},{"hugoGeneSymbol":"BUD13P1","entrezGeneId":100420358},{"hugoGeneSymbol":"BUD23","entrezGeneId":114049},{"hugoGeneSymbol":"BUD31","entrezGeneId":8896},{"hugoGeneSymbol":"BUD31P1","entrezGeneId":106480331},{"hugoGeneSymbol":"BUD31P2","entrezGeneId":106480332},{"hugoGeneSymbol":"BULN","entrezGeneId":337893},{"hugoGeneSymbol":"BVES","entrezGeneId":11149},{"hugoGeneSymbol":"BVES-AS1","entrezGeneId":154442},{"hugoGeneSymbol":"BVR1","entrezGeneId":700},{"hugoGeneSymbol":"BW1","entrezGeneId":544330},{"hugoGeneSymbol":"BW10","entrezGeneId":474265},{"hugoGeneSymbol":"BW11","entrezGeneId":474303},{"hugoGeneSymbol":"BW12","entrezGeneId":474312},{"hugoGeneSymbol":"BW13","entrezGeneId":474313},{"hugoGeneSymbol":"BW14","entrezGeneId":474314},{"hugoGeneSymbol":"BW15","entrezGeneId":474311},{"hugoGeneSymbol":"BW16","entrezGeneId":544337},{"hugoGeneSymbol":"BW17","entrezGeneId":544336},{"hugoGeneSymbol":"BW18","entrezGeneId":474307},{"hugoGeneSymbol":"BW19","entrezGeneId":474294},{"hugoGeneSymbol":"BW2","entrezGeneId":474270},{"hugoGeneSymbol":"BW20","entrezGeneId":474295},{"hugoGeneSymbol":"BW22","entrezGeneId":474200},{"hugoGeneSymbol":"BW23","entrezGeneId":474276},{"hugoGeneSymbol":"BW24","entrezGeneId":474277},{"hugoGeneSymbol":"BW25","entrezGeneId":474278},{"hugoGeneSymbol":"BW26","entrezGeneId":474279},{"hugoGeneSymbol":"BW27","entrezGeneId":474280},{"hugoGeneSymbol":"BW28","entrezGeneId":474281},{"hugoGeneSymbol":"BW29","entrezGeneId":474282},{"hugoGeneSymbol":"BW3","entrezGeneId":474271},{"hugoGeneSymbol":"BW30","entrezGeneId":474283},{"hugoGeneSymbol":"BW31","entrezGeneId":474284},{"hugoGeneSymbol":"BW32","entrezGeneId":474305},{"hugoGeneSymbol":"BW33","entrezGeneId":474304},{"hugoGeneSymbol":"BW34","entrezGeneId":474306},{"hugoGeneSymbol":"BW35","entrezGeneId":544617},{"hugoGeneSymbol":"BW36","entrezGeneId":544622},{"hugoGeneSymbol":"BW37","entrezGeneId":544619},{"hugoGeneSymbol":"BW4","entrezGeneId":474272},{"hugoGeneSymbol":"BW5","entrezGeneId":474273},{"hugoGeneSymbol":"BW52","entrezGeneId":544626},{"hugoGeneSymbol":"BW53","entrezGeneId":544625},{"hugoGeneSymbol":"BW54","entrezGeneId":544620},{"hugoGeneSymbol":"BW55","entrezGeneId":544621},{"hugoGeneSymbol":"BW56","entrezGeneId":544615},{"hugoGeneSymbol":"BW57","entrezGeneId":544630},{"hugoGeneSymbol":"BW58","entrezGeneId":544636},{"hugoGeneSymbol":"BW59","entrezGeneId":544614},{"hugoGeneSymbol":"BW6","entrezGeneId":474275},{"hugoGeneSymbol":"BW60","entrezGeneId":544634},{"hugoGeneSymbol":"BW61","entrezGeneId":544632},{"hugoGeneSymbol":"BW62","entrezGeneId":544637},{"hugoGeneSymbol":"BW63","entrezGeneId":544640},{"hugoGeneSymbol":"BW64","entrezGeneId":544629},{"hugoGeneSymbol":"BW65","entrezGeneId":553143},{"hugoGeneSymbol":"BW66","entrezGeneId":544635},{"hugoGeneSymbol":"BW67","entrezGeneId":544639},{"hugoGeneSymbol":"BW68","entrezGeneId":544638},{"hugoGeneSymbol":"BW69","entrezGeneId":544624},{"hugoGeneSymbol":"BW7","entrezGeneId":474274},{"hugoGeneSymbol":"BW70","entrezGeneId":544628},{"hugoGeneSymbol":"BW71","entrezGeneId":544633},{"hugoGeneSymbol":"BW72","entrezGeneId":544627},{"hugoGeneSymbol":"BW8","entrezGeneId":474263},{"hugoGeneSymbol":"BW88","entrezGeneId":553141},{"hugoGeneSymbol":"BW9","entrezGeneId":474264},{"hugoGeneSymbol":"BWQTL2","entrezGeneId":100502569},{"hugoGeneSymbol":"BWQTL4","entrezGeneId":101448071},{"hugoGeneSymbol":"BYSL","entrezGeneId":705},{"hugoGeneSymbol":"BZW1","entrezGeneId":9689},{"hugoGeneSymbol":"BZW1P1","entrezGeneId":391592},{"hugoGeneSymbol":"BZW1P2","entrezGeneId":151579},{"hugoGeneSymbol":"BZW2","entrezGeneId":28969},{"hugoGeneSymbol":"BZX","entrezGeneId":8255},{"hugoGeneSymbol":"C10ORF105","entrezGeneId":414152},{"hugoGeneSymbol":"C10ORF111","entrezGeneId":221060},{"hugoGeneSymbol":"C10ORF113","entrezGeneId":387638},{"hugoGeneSymbol":"C10ORF120","entrezGeneId":399814},{"hugoGeneSymbol":"C10ORF126","entrezGeneId":283080},{"hugoGeneSymbol":"C10ORF142","entrezGeneId":100130539},{"hugoGeneSymbol":"C10ORF143","entrezGeneId":387723},{"hugoGeneSymbol":"C10ORF25","entrezGeneId":220979},{"hugoGeneSymbol":"C10ORF53","entrezGeneId":282966},{"hugoGeneSymbol":"C10ORF55","entrezGeneId":414236},{"hugoGeneSymbol":"C10ORF62","entrezGeneId":414157},{"hugoGeneSymbol":"C10ORF67","entrezGeneId":256815},{"hugoGeneSymbol":"C10ORF71","entrezGeneId":118461},{"hugoGeneSymbol":"C10ORF71-AS1","entrezGeneId":100506769},{"hugoGeneSymbol":"C10ORF82","entrezGeneId":143379},{"hugoGeneSymbol":"C10ORF88","entrezGeneId":80007},{"hugoGeneSymbol":"C10ORF90","entrezGeneId":118611},{"hugoGeneSymbol":"C10ORF91","entrezGeneId":170393},{"hugoGeneSymbol":"C10ORF95","entrezGeneId":79946},{"hugoGeneSymbol":"C10ORF99","entrezGeneId":387695},{"hugoGeneSymbol":"C11ORF1","entrezGeneId":64776},{"hugoGeneSymbol":"C11ORF16","entrezGeneId":56673},{"hugoGeneSymbol":"C11ORF21","entrezGeneId":29125},{"hugoGeneSymbol":"C11ORF24","entrezGeneId":53838},{"hugoGeneSymbol":"C11ORF40","entrezGeneId":143501},{"hugoGeneSymbol":"C11ORF42","entrezGeneId":160298},{"hugoGeneSymbol":"C11ORF44","entrezGeneId":283171},{"hugoGeneSymbol":"C11ORF45","entrezGeneId":219833},{"hugoGeneSymbol":"C11ORF49","entrezGeneId":79096},{"hugoGeneSymbol":"C11ORF52","entrezGeneId":91894},{"hugoGeneSymbol":"C11ORF53","entrezGeneId":341032},{"hugoGeneSymbol":"C11ORF54","entrezGeneId":28970},{"hugoGeneSymbol":"C11ORF58","entrezGeneId":10944},{"hugoGeneSymbol":"C11ORF65","entrezGeneId":160140},{"hugoGeneSymbol":"C11ORF68","entrezGeneId":83638},{"hugoGeneSymbol":"C11ORF71","entrezGeneId":54494},{"hugoGeneSymbol":"C11ORF72","entrezGeneId":100505621},{"hugoGeneSymbol":"C11ORF74","entrezGeneId":119710},{"hugoGeneSymbol":"C11ORF80","entrezGeneId":79703},{"hugoGeneSymbol":"C11ORF86","entrezGeneId":254439},{"hugoGeneSymbol":"C11ORF87","entrezGeneId":399947},{"hugoGeneSymbol":"C11ORF88","entrezGeneId":399949},{"hugoGeneSymbol":"C11ORF91","entrezGeneId":100131378},{"hugoGeneSymbol":"C11ORF94","entrezGeneId":143678},{"hugoGeneSymbol":"C11ORF95","entrezGeneId":65998},{"hugoGeneSymbol":"C11ORF96","entrezGeneId":387763},{"hugoGeneSymbol":"C11ORF97","entrezGeneId":643037},{"hugoGeneSymbol":"C11ORF98","entrezGeneId":102288414},{"hugoGeneSymbol":"C11ORF98P1","entrezGeneId":106480289},{"hugoGeneSymbol":"C12ORF10","entrezGeneId":60314},{"hugoGeneSymbol":"C12ORF29","entrezGeneId":91298},{"hugoGeneSymbol":"C12ORF4","entrezGeneId":57102},{"hugoGeneSymbol":"C12ORF40","entrezGeneId":283461},{"hugoGeneSymbol":"C12ORF42","entrezGeneId":374470},{"hugoGeneSymbol":"C12ORF43","entrezGeneId":64897},{"hugoGeneSymbol":"C12ORF45","entrezGeneId":121053},{"hugoGeneSymbol":"C12ORF49","entrezGeneId":79794},{"hugoGeneSymbol":"C12ORF50","entrezGeneId":160419},{"hugoGeneSymbol":"C12ORF54","entrezGeneId":121273},{"hugoGeneSymbol":"C12ORF56","entrezGeneId":115749},{"hugoGeneSymbol":"C12ORF57","entrezGeneId":113246},{"hugoGeneSymbol":"C12ORF60","entrezGeneId":144608},{"hugoGeneSymbol":"C12ORF65","entrezGeneId":91574},{"hugoGeneSymbol":"C12ORF66","entrezGeneId":144577},{"hugoGeneSymbol":"C12ORF71","entrezGeneId":728858},{"hugoGeneSymbol":"C12ORF73","entrezGeneId":728568},{"hugoGeneSymbol":"C12ORF74","entrezGeneId":338809},{"hugoGeneSymbol":"C12ORF75","entrezGeneId":387882},{"hugoGeneSymbol":"C12ORF76","entrezGeneId":400073},{"hugoGeneSymbol":"C12ORF77","entrezGeneId":196415},{"hugoGeneSymbol":"C12ORF80","entrezGeneId":283403},{"hugoGeneSymbol":"C12ORF81","entrezGeneId":112163659},{"hugoGeneSymbol":"C13ORF42","entrezGeneId":647166},{"hugoGeneSymbol":"C13ORF46","entrezGeneId":100507747},{"hugoGeneSymbol":"C14ORF119","entrezGeneId":55017},{"hugoGeneSymbol":"C14ORF132","entrezGeneId":56967},{"hugoGeneSymbol":"C14ORF144","entrezGeneId":145195},{"hugoGeneSymbol":"C14ORF177","entrezGeneId":283598},{"hugoGeneSymbol":"C14ORF178","entrezGeneId":283579},{"hugoGeneSymbol":"C14ORF180","entrezGeneId":400258},{"hugoGeneSymbol":"C14ORF28","entrezGeneId":122525},{"hugoGeneSymbol":"C14ORF39","entrezGeneId":317761},{"hugoGeneSymbol":"C14ORF93","entrezGeneId":60686},{"hugoGeneSymbol":"C15ORF32","entrezGeneId":145858},{"hugoGeneSymbol":"C15ORF38-AP3S2","entrezGeneId":100526783},{"hugoGeneSymbol":"C15ORF39","entrezGeneId":56905},{"hugoGeneSymbol":"C15ORF40","entrezGeneId":123207},{"hugoGeneSymbol":"C15ORF41","entrezGeneId":84529},{"hugoGeneSymbol":"C15ORF48","entrezGeneId":84419},{"hugoGeneSymbol":"C15ORF53","entrezGeneId":400359},{"hugoGeneSymbol":"C15ORF54","entrezGeneId":400360},{"hugoGeneSymbol":"C15ORF56","entrezGeneId":644809},{"hugoGeneSymbol":"C15ORF59","entrezGeneId":388135},{"hugoGeneSymbol":"C15ORF59-AS1","entrezGeneId":101929221},{"hugoGeneSymbol":"C15ORF61","entrezGeneId":145853},{"hugoGeneSymbol":"C15ORF62","entrezGeneId":643338},{"hugoGeneSymbol":"C15ORF65","entrezGeneId":145788},{"hugoGeneSymbol":"C16DELQ22","entrezGeneId":100874527},{"hugoGeneSymbol":"C16ORF45","entrezGeneId":89927},{"hugoGeneSymbol":"C16ORF46","entrezGeneId":123775},{"hugoGeneSymbol":"C16ORF47","entrezGeneId":388289},{"hugoGeneSymbol":"C16ORF54","entrezGeneId":283897},{"hugoGeneSymbol":"C16ORF58","entrezGeneId":64755},{"hugoGeneSymbol":"C16ORF70","entrezGeneId":80262},{"hugoGeneSymbol":"C16ORF71","entrezGeneId":146562},{"hugoGeneSymbol":"C16ORF72","entrezGeneId":29035},{"hugoGeneSymbol":"C16ORF74","entrezGeneId":404550},{"hugoGeneSymbol":"C16ORF78","entrezGeneId":123970},{"hugoGeneSymbol":"C16ORF82","entrezGeneId":162083},{"hugoGeneSymbol":"C16ORF86","entrezGeneId":388284},{"hugoGeneSymbol":"C16ORF87","entrezGeneId":388272},{"hugoGeneSymbol":"C16ORF89","entrezGeneId":146556},{"hugoGeneSymbol":"C16ORF90","entrezGeneId":646174},{"hugoGeneSymbol":"C16ORF91","entrezGeneId":283951},{"hugoGeneSymbol":"C16ORF92","entrezGeneId":146378},{"hugoGeneSymbol":"C16ORF95","entrezGeneId":100506581},{"hugoGeneSymbol":"C16ORF96","entrezGeneId":342346},{"hugoGeneSymbol":"C16ORF97","entrezGeneId":388276},{"hugoGeneSymbol":"C17ORF100","entrezGeneId":388327},{"hugoGeneSymbol":"C17ORF102","entrezGeneId":400591},{"hugoGeneSymbol":"C17ORF107","entrezGeneId":100130311},{"hugoGeneSymbol":"C17ORF112","entrezGeneId":100506650},{"hugoGeneSymbol":"C17ORF113","entrezGeneId":110806298},{"hugoGeneSymbol":"C17ORF47","entrezGeneId":284083},{"hugoGeneSymbol":"C17ORF49","entrezGeneId":124944},{"hugoGeneSymbol":"C17ORF50","entrezGeneId":146853},{"hugoGeneSymbol":"C17ORF51","entrezGeneId":339263},{"hugoGeneSymbol":"C17ORF53","entrezGeneId":78995},{"hugoGeneSymbol":"C17ORF58","entrezGeneId":284018},{"hugoGeneSymbol":"C17ORF64","entrezGeneId":124773},{"hugoGeneSymbol":"C17ORF67","entrezGeneId":339210},{"hugoGeneSymbol":"C17ORF75","entrezGeneId":64149},{"hugoGeneSymbol":"C17ORF77","entrezGeneId":146723},{"hugoGeneSymbol":"C17ORF78","entrezGeneId":284099},{"hugoGeneSymbol":"C17ORF80","entrezGeneId":55028},{"hugoGeneSymbol":"C17ORF82","entrezGeneId":388407},{"hugoGeneSymbol":"C17ORF97","entrezGeneId":400566},{"hugoGeneSymbol":"C17ORF98","entrezGeneId":388381},{"hugoGeneSymbol":"C17ORF99","entrezGeneId":100141515},{"hugoGeneSymbol":"C18ORF12","entrezGeneId":84322},{"hugoGeneSymbol":"C18ORF15","entrezGeneId":147276},{"hugoGeneSymbol":"C18ORF21","entrezGeneId":83608},{"hugoGeneSymbol":"C18ORF25","entrezGeneId":147339},{"hugoGeneSymbol":"C18ORF32","entrezGeneId":497661},{"hugoGeneSymbol":"C18ORF54","entrezGeneId":162681},{"hugoGeneSymbol":"C18ORF61","entrezGeneId":497259},{"hugoGeneSymbol":"C18ORF63","entrezGeneId":644041},{"hugoGeneSymbol":"C18ORF65","entrezGeneId":400658},{"hugoGeneSymbol":"C19ORF12","entrezGeneId":83636},{"hugoGeneSymbol":"C19ORF18","entrezGeneId":147685},{"hugoGeneSymbol":"C19ORF24","entrezGeneId":55009},{"hugoGeneSymbol":"C19ORF25","entrezGeneId":148223},{"hugoGeneSymbol":"C19ORF33","entrezGeneId":64073},{"hugoGeneSymbol":"C19ORF38","entrezGeneId":255809},{"hugoGeneSymbol":"C19ORF44","entrezGeneId":84167},{"hugoGeneSymbol":"C19ORF47","entrezGeneId":126526},{"hugoGeneSymbol":"C19ORF48","entrezGeneId":84798},{"hugoGeneSymbol":"C19ORF53","entrezGeneId":28974},{"hugoGeneSymbol":"C19ORF54","entrezGeneId":284325},{"hugoGeneSymbol":"C19ORF57","entrezGeneId":79173},{"hugoGeneSymbol":"C19ORF66","entrezGeneId":55337},{"hugoGeneSymbol":"C19ORF67","entrezGeneId":646457},{"hugoGeneSymbol":"C19ORF70","entrezGeneId":125988},{"hugoGeneSymbol":"C19ORF71","entrezGeneId":100128569},{"hugoGeneSymbol":"C19ORF73","entrezGeneId":55150},{"hugoGeneSymbol":"C19ORF81","entrezGeneId":342918},{"hugoGeneSymbol":"C19ORF84","entrezGeneId":147646},{"hugoGeneSymbol":"C19ORF85","entrezGeneId":111064650},{"hugoGeneSymbol":"C1D","entrezGeneId":10438},{"hugoGeneSymbol":"C1DP1","entrezGeneId":554049},{"hugoGeneSymbol":"C1DP2","entrezGeneId":642538},{"hugoGeneSymbol":"C1DP3","entrezGeneId":642521},{"hugoGeneSymbol":"C1DP4","entrezGeneId":727879},{"hugoGeneSymbol":"C1DP5","entrezGeneId":106481729},{"hugoGeneSymbol":"C1GALT1","entrezGeneId":56913},{"hugoGeneSymbol":"C1GALT1C1","entrezGeneId":29071},{"hugoGeneSymbol":"C1GALT1C1L","entrezGeneId":728819},{"hugoGeneSymbol":"C1GALT1P1","entrezGeneId":729409},{"hugoGeneSymbol":"C1GALT1P2","entrezGeneId":100128603},{"hugoGeneSymbol":"C1GALT1P3","entrezGeneId":106481730},{"hugoGeneSymbol":"C1ORF100","entrezGeneId":200159},{"hugoGeneSymbol":"C1ORF105","entrezGeneId":92346},{"hugoGeneSymbol":"C1ORF109","entrezGeneId":54955},{"hugoGeneSymbol":"C1ORF112","entrezGeneId":55732},{"hugoGeneSymbol":"C1ORF115","entrezGeneId":79762},{"hugoGeneSymbol":"C1ORF116","entrezGeneId":79098},{"hugoGeneSymbol":"C1ORF122","entrezGeneId":127687},{"hugoGeneSymbol":"C1ORF123","entrezGeneId":54987},{"hugoGeneSymbol":"C1ORF127","entrezGeneId":148345},{"hugoGeneSymbol":"C1ORF131","entrezGeneId":128061},{"hugoGeneSymbol":"C1ORF134","entrezGeneId":574037},{"hugoGeneSymbol":"C1ORF137","entrezGeneId":388667},{"hugoGeneSymbol":"C1ORF140","entrezGeneId":400804},{"hugoGeneSymbol":"C1ORF141","entrezGeneId":400757},{"hugoGeneSymbol":"C1ORF143","entrezGeneId":440714},{"hugoGeneSymbol":"C1ORF146","entrezGeneId":388649},{"hugoGeneSymbol":"C1ORF147","entrezGeneId":574431},{"hugoGeneSymbol":"C1ORF158","entrezGeneId":93190},{"hugoGeneSymbol":"C1ORF159","entrezGeneId":54991},{"hugoGeneSymbol":"C1ORF162","entrezGeneId":128346},{"hugoGeneSymbol":"C1ORF167","entrezGeneId":284498},{"hugoGeneSymbol":"C1ORF174","entrezGeneId":339448},{"hugoGeneSymbol":"C1ORF185","entrezGeneId":284546},{"hugoGeneSymbol":"C1ORF189","entrezGeneId":388701},{"hugoGeneSymbol":"C1ORF194","entrezGeneId":127003},{"hugoGeneSymbol":"C1ORF195","entrezGeneId":727684},{"hugoGeneSymbol":"C1ORF196","entrezGeneId":780789},{"hugoGeneSymbol":"C1ORF198","entrezGeneId":84886},{"hugoGeneSymbol":"C1ORF21","entrezGeneId":81563},{"hugoGeneSymbol":"C1ORF210","entrezGeneId":149466},{"hugoGeneSymbol":"C1ORF216","entrezGeneId":127703},{"hugoGeneSymbol":"C1ORF220","entrezGeneId":400798},{"hugoGeneSymbol":"C1ORF226","entrezGeneId":400793},{"hugoGeneSymbol":"C1ORF229","entrezGeneId":388759},{"hugoGeneSymbol":"C1ORF232","entrezGeneId":110806296},{"hugoGeneSymbol":"C1ORF35","entrezGeneId":79169},{"hugoGeneSymbol":"C1ORF43","entrezGeneId":25912},{"hugoGeneSymbol":"C1ORF50","entrezGeneId":79078},{"hugoGeneSymbol":"C1ORF52","entrezGeneId":148423},{"hugoGeneSymbol":"C1ORF53","entrezGeneId":388722},{"hugoGeneSymbol":"C1ORF54","entrezGeneId":79630},{"hugoGeneSymbol":"C1ORF56","entrezGeneId":54964},{"hugoGeneSymbol":"C1ORF61","entrezGeneId":10485},{"hugoGeneSymbol":"C1ORF68","entrezGeneId":100129271},{"hugoGeneSymbol":"C1ORF74","entrezGeneId":148304},{"hugoGeneSymbol":"C1ORF87","entrezGeneId":127795},{"hugoGeneSymbol":"C1ORF94","entrezGeneId":84970},{"hugoGeneSymbol":"C1QA","entrezGeneId":712},{"hugoGeneSymbol":"C1QB","entrezGeneId":713},{"hugoGeneSymbol":"C1QBP","entrezGeneId":708},{"hugoGeneSymbol":"C1QBPP1","entrezGeneId":54098},{"hugoGeneSymbol":"C1QBPP2","entrezGeneId":100422299},{"hugoGeneSymbol":"C1QBPP3","entrezGeneId":100422310},{"hugoGeneSymbol":"C1QC","entrezGeneId":714},{"hugoGeneSymbol":"C1QL1","entrezGeneId":10882},{"hugoGeneSymbol":"C1QL1P1","entrezGeneId":106480353},{"hugoGeneSymbol":"C1QL2","entrezGeneId":165257},{"hugoGeneSymbol":"C1QL3","entrezGeneId":389941},{"hugoGeneSymbol":"C1QL4","entrezGeneId":338761},{"hugoGeneSymbol":"C1QTNF1","entrezGeneId":114897},{"hugoGeneSymbol":"C1QTNF1-AS1","entrezGeneId":100507410},{"hugoGeneSymbol":"C1QTNF12","entrezGeneId":388581},{"hugoGeneSymbol":"C1QTNF2","entrezGeneId":114898},{"hugoGeneSymbol":"C1QTNF3","entrezGeneId":114899},{"hugoGeneSymbol":"C1QTNF3-AMACR","entrezGeneId":100534612},{"hugoGeneSymbol":"C1QTNF4","entrezGeneId":114900},{"hugoGeneSymbol":"C1QTNF5","entrezGeneId":114902},{"hugoGeneSymbol":"C1QTNF6","entrezGeneId":114904},{"hugoGeneSymbol":"C1QTNF7","entrezGeneId":114905},{"hugoGeneSymbol":"C1QTNF8","entrezGeneId":390664},{"hugoGeneSymbol":"C1QTNF9","entrezGeneId":338872},{"hugoGeneSymbol":"C1QTNF9-AS1","entrezGeneId":100874232},{"hugoGeneSymbol":"C1QTNF9B","entrezGeneId":387911},{"hugoGeneSymbol":"C1R","entrezGeneId":715},{"hugoGeneSymbol":"C1RL","entrezGeneId":51279},{"hugoGeneSymbol":"C1RL-AS1","entrezGeneId":283314},{"hugoGeneSymbol":"C1S","entrezGeneId":716},{"hugoGeneSymbol":"C2","entrezGeneId":717},{"hugoGeneSymbol":"C2-AS1","entrezGeneId":102060414},{"hugoGeneSymbol":"C20ORF141","entrezGeneId":128653},{"hugoGeneSymbol":"C20ORF144","entrezGeneId":128864},{"hugoGeneSymbol":"C20ORF173","entrezGeneId":140873},{"hugoGeneSymbol":"C20ORF181","entrezGeneId":100128998},{"hugoGeneSymbol":"C20ORF187","entrezGeneId":728434},{"hugoGeneSymbol":"C20ORF194","entrezGeneId":25943},{"hugoGeneSymbol":"C20ORF196","entrezGeneId":149840},{"hugoGeneSymbol":"C20ORF197","entrezGeneId":284756},{"hugoGeneSymbol":"C20ORF202","entrezGeneId":400831},{"hugoGeneSymbol":"C20ORF203","entrezGeneId":284805},{"hugoGeneSymbol":"C20ORF204","entrezGeneId":284739},{"hugoGeneSymbol":"C20ORF27","entrezGeneId":54976},{"hugoGeneSymbol":"C20ORF78","entrezGeneId":100128496},{"hugoGeneSymbol":"C20ORF85","entrezGeneId":128602},{"hugoGeneSymbol":"C20ORF96","entrezGeneId":140680},{"hugoGeneSymbol":"C21ORF140","entrezGeneId":101928147},{"hugoGeneSymbol":"C21ORF2","entrezGeneId":755},{"hugoGeneSymbol":"C21ORF58","entrezGeneId":54058},{"hugoGeneSymbol":"C21ORF59-TCP10L","entrezGeneId":110091775},{"hugoGeneSymbol":"C21ORF62","entrezGeneId":56245},{"hugoGeneSymbol":"C21ORF62-AS1","entrezGeneId":54067},{"hugoGeneSymbol":"C21ORF91","entrezGeneId":54149},{"hugoGeneSymbol":"C21ORF91-OT1","entrezGeneId":246312},{"hugoGeneSymbol":"C22ORF15","entrezGeneId":150248},{"hugoGeneSymbol":"C22ORF23","entrezGeneId":84645},{"hugoGeneSymbol":"C22ORF24","entrezGeneId":25775},{"hugoGeneSymbol":"C22ORF31","entrezGeneId":25770},{"hugoGeneSymbol":"C22ORF34","entrezGeneId":348645},{"hugoGeneSymbol":"C22ORF39","entrezGeneId":128977},{"hugoGeneSymbol":"C22ORF42","entrezGeneId":150297},{"hugoGeneSymbol":"C22ORF46","entrezGeneId":79640},{"hugoGeneSymbol":"C2CD2","entrezGeneId":25966},{"hugoGeneSymbol":"C2CD2L","entrezGeneId":9854},{"hugoGeneSymbol":"C2CD3","entrezGeneId":26005},{"hugoGeneSymbol":"C2CD4A","entrezGeneId":145741},{"hugoGeneSymbol":"C2CD4B","entrezGeneId":388125},{"hugoGeneSymbol":"C2CD4C","entrezGeneId":126567},{"hugoGeneSymbol":"C2CD4D","entrezGeneId":100191040},{"hugoGeneSymbol":"C2CD5","entrezGeneId":9847},{"hugoGeneSymbol":"C2CD6","entrezGeneId":151254},{"hugoGeneSymbol":"C2ORF15","entrezGeneId":150590},{"hugoGeneSymbol":"C2ORF16","entrezGeneId":84226},{"hugoGeneSymbol":"C2ORF27A","entrezGeneId":29798},{"hugoGeneSymbol":"C2ORF27AP1","entrezGeneId":100420811},{"hugoGeneSymbol":"C2ORF27AP2","entrezGeneId":100131855},{"hugoGeneSymbol":"C2ORF27AP3","entrezGeneId":100420784},{"hugoGeneSymbol":"C2ORF27B","entrezGeneId":408029},{"hugoGeneSymbol":"C2ORF40","entrezGeneId":84417},{"hugoGeneSymbol":"C2ORF42","entrezGeneId":54980},{"hugoGeneSymbol":"C2ORF48","entrezGeneId":348738},{"hugoGeneSymbol":"C2ORF49","entrezGeneId":79074},{"hugoGeneSymbol":"C2ORF50","entrezGeneId":130813},{"hugoGeneSymbol":"C2ORF54","entrezGeneId":79919},{"hugoGeneSymbol":"C2ORF66","entrezGeneId":401027},{"hugoGeneSymbol":"C2ORF68","entrezGeneId":388969},{"hugoGeneSymbol":"C2ORF69","entrezGeneId":205327},{"hugoGeneSymbol":"C2ORF69P1","entrezGeneId":727964},{"hugoGeneSymbol":"C2ORF69P2","entrezGeneId":642614},{"hugoGeneSymbol":"C2ORF69P3","entrezGeneId":100131279},{"hugoGeneSymbol":"C2ORF69P4","entrezGeneId":100420859},{"hugoGeneSymbol":"C2ORF69P5","entrezGeneId":107403078},{"hugoGeneSymbol":"C2ORF70","entrezGeneId":339778},{"hugoGeneSymbol":"C2ORF71","entrezGeneId":388939},{"hugoGeneSymbol":"C2ORF72","entrezGeneId":257407},{"hugoGeneSymbol":"C2ORF73","entrezGeneId":129852},{"hugoGeneSymbol":"C2ORF74","entrezGeneId":339804},{"hugoGeneSymbol":"C2ORF76","entrezGeneId":130355},{"hugoGeneSymbol":"C2ORF78","entrezGeneId":388960},{"hugoGeneSymbol":"C2ORF80","entrezGeneId":389073},{"hugoGeneSymbol":"C2ORF81","entrezGeneId":388963},{"hugoGeneSymbol":"C2ORF83","entrezGeneId":56918},{"hugoGeneSymbol":"C2ORF88","entrezGeneId":84281},{"hugoGeneSymbol":"C2ORF91","entrezGeneId":400950},{"hugoGeneSymbol":"C2ORF92","entrezGeneId":728537},{"hugoGeneSymbol":"C3","entrezGeneId":718},{"hugoGeneSymbol":"C3AR1","entrezGeneId":719},{"hugoGeneSymbol":"C3CER1","entrezGeneId":23739},{"hugoGeneSymbol":"C3ORF14","entrezGeneId":57415},{"hugoGeneSymbol":"C3ORF18","entrezGeneId":51161},{"hugoGeneSymbol":"C3ORF20","entrezGeneId":84077},{"hugoGeneSymbol":"C3ORF22","entrezGeneId":152065},{"hugoGeneSymbol":"C3ORF30","entrezGeneId":152405},{"hugoGeneSymbol":"C3ORF33","entrezGeneId":285315},{"hugoGeneSymbol":"C3ORF35","entrezGeneId":339883},{"hugoGeneSymbol":"C3ORF36","entrezGeneId":80111},{"hugoGeneSymbol":"C3ORF38","entrezGeneId":285237},{"hugoGeneSymbol":"C3ORF49","entrezGeneId":132200},{"hugoGeneSymbol":"C3ORF52","entrezGeneId":79669},{"hugoGeneSymbol":"C3ORF56","entrezGeneId":285311},{"hugoGeneSymbol":"C3ORF58","entrezGeneId":205428},{"hugoGeneSymbol":"C3ORF62","entrezGeneId":375341},{"hugoGeneSymbol":"C3ORF67","entrezGeneId":200844},{"hugoGeneSymbol":"C3ORF67-AS1","entrezGeneId":101929238},{"hugoGeneSymbol":"C3ORF70","entrezGeneId":285382},{"hugoGeneSymbol":"C3ORF79","entrezGeneId":152118},{"hugoGeneSymbol":"C3ORF80","entrezGeneId":401097},{"hugoGeneSymbol":"C3ORF84","entrezGeneId":646498},{"hugoGeneSymbol":"C3ORF85","entrezGeneId":401081},{"hugoGeneSymbol":"C3P1","entrezGeneId":388503},{"hugoGeneSymbol":"C4A","entrezGeneId":720},{"hugoGeneSymbol":"C4A-AS1","entrezGeneId":106478955},{"hugoGeneSymbol":"C4B","entrezGeneId":721},{"hugoGeneSymbol":"C4B-AS1","entrezGeneId":106480730},{"hugoGeneSymbol":"C4BPA","entrezGeneId":722},{"hugoGeneSymbol":"C4BPAP1","entrezGeneId":727859},{"hugoGeneSymbol":"C4BPAP2","entrezGeneId":724},{"hugoGeneSymbol":"C4BPAP3","entrezGeneId":100421610},{"hugoGeneSymbol":"C4BPB","entrezGeneId":725},{"hugoGeneSymbol":"C4B_2","entrezGeneId":100293534},{"hugoGeneSymbol":"C4ORF17","entrezGeneId":84103},{"hugoGeneSymbol":"C4ORF19","entrezGeneId":55286},{"hugoGeneSymbol":"C4ORF3","entrezGeneId":401152},{"hugoGeneSymbol":"C4ORF33","entrezGeneId":132321},{"hugoGeneSymbol":"C4ORF36","entrezGeneId":132989},{"hugoGeneSymbol":"C4ORF45","entrezGeneId":152940},{"hugoGeneSymbol":"C4ORF46","entrezGeneId":201725},{"hugoGeneSymbol":"C4ORF47","entrezGeneId":441054},{"hugoGeneSymbol":"C4ORF48","entrezGeneId":401115},{"hugoGeneSymbol":"C4ORF50","entrezGeneId":389197},{"hugoGeneSymbol":"C4ORF51","entrezGeneId":646603},{"hugoGeneSymbol":"C4ORF54","entrezGeneId":285556},{"hugoGeneSymbol":"C5","entrezGeneId":727},{"hugoGeneSymbol":"C5-OT1","entrezGeneId":110599590},{"hugoGeneSymbol":"C5AR1","entrezGeneId":728},{"hugoGeneSymbol":"C5AR2","entrezGeneId":27202},{"hugoGeneSymbol":"C5ORF15","entrezGeneId":56951},{"hugoGeneSymbol":"C5ORF17","entrezGeneId":439936},{"hugoGeneSymbol":"C5ORF22","entrezGeneId":55322},{"hugoGeneSymbol":"C5ORF24","entrezGeneId":134553},{"hugoGeneSymbol":"C5ORF30","entrezGeneId":90355},{"hugoGeneSymbol":"C5ORF34","entrezGeneId":375444},{"hugoGeneSymbol":"C5ORF38","entrezGeneId":153571},{"hugoGeneSymbol":"C5ORF46","entrezGeneId":389336},{"hugoGeneSymbol":"C5ORF47","entrezGeneId":133491},{"hugoGeneSymbol":"C5ORF49","entrezGeneId":134121},{"hugoGeneSymbol":"C5ORF51","entrezGeneId":285636},{"hugoGeneSymbol":"C5ORF52","entrezGeneId":100190949},{"hugoGeneSymbol":"C5ORF56","entrezGeneId":441108},{"hugoGeneSymbol":"C5ORF58","entrezGeneId":133874},{"hugoGeneSymbol":"C5ORF60","entrezGeneId":285679},{"hugoGeneSymbol":"C5ORF63","entrezGeneId":401207},{"hugoGeneSymbol":"C5ORF64","entrezGeneId":285668},{"hugoGeneSymbol":"C5ORF64-AS1","entrezGeneId":100506526},{"hugoGeneSymbol":"C5ORF66","entrezGeneId":100996485},{"hugoGeneSymbol":"C5ORF66-AS1","entrezGeneId":101927953},{"hugoGeneSymbol":"C5ORF66-AS2","entrezGeneId":340073},{"hugoGeneSymbol":"C5ORF67","entrezGeneId":101928448},{"hugoGeneSymbol":"C6","entrezGeneId":729},{"hugoGeneSymbol":"C6ORF10","entrezGeneId":10665},{"hugoGeneSymbol":"C6ORF106","entrezGeneId":64771},{"hugoGeneSymbol":"C6ORF118","entrezGeneId":168090},{"hugoGeneSymbol":"C6ORF120","entrezGeneId":387263},{"hugoGeneSymbol":"C6ORF132","entrezGeneId":647024},{"hugoGeneSymbol":"C6ORF136","entrezGeneId":221545},{"hugoGeneSymbol":"C6ORF141","entrezGeneId":135398},{"hugoGeneSymbol":"C6ORF15","entrezGeneId":29113},{"hugoGeneSymbol":"C6ORF163","entrezGeneId":206412},{"hugoGeneSymbol":"C6ORF201","entrezGeneId":404220},{"hugoGeneSymbol":"C6ORF203","entrezGeneId":51250},{"hugoGeneSymbol":"C6ORF222","entrezGeneId":389384},{"hugoGeneSymbol":"C6ORF223","entrezGeneId":221416},{"hugoGeneSymbol":"C6ORF226","entrezGeneId":441150},{"hugoGeneSymbol":"C6ORF47","entrezGeneId":57827},{"hugoGeneSymbol":"C6ORF47-AS1","entrezGeneId":106480731},{"hugoGeneSymbol":"C6ORF48","entrezGeneId":50854},{"hugoGeneSymbol":"C6ORF52","entrezGeneId":347744},{"hugoGeneSymbol":"C6ORF58","entrezGeneId":352999},{"hugoGeneSymbol":"C6ORF62","entrezGeneId":81688},{"hugoGeneSymbol":"C6ORF89","entrezGeneId":221477},{"hugoGeneSymbol":"C6ORF99","entrezGeneId":100130967},{"hugoGeneSymbol":"C7","entrezGeneId":730},{"hugoGeneSymbol":"C7ORF13","entrezGeneId":129790},{"hugoGeneSymbol":"C7ORF25","entrezGeneId":79020},{"hugoGeneSymbol":"C7ORF26","entrezGeneId":79034},{"hugoGeneSymbol":"C7ORF31","entrezGeneId":136895},{"hugoGeneSymbol":"C7ORF33","entrezGeneId":202865},{"hugoGeneSymbol":"C7ORF43","entrezGeneId":55262},{"hugoGeneSymbol":"C7ORF50","entrezGeneId":84310},{"hugoGeneSymbol":"C7ORF55-LUC7L2","entrezGeneId":100996928},{"hugoGeneSymbol":"C7ORF57","entrezGeneId":136288},{"hugoGeneSymbol":"C7ORF61","entrezGeneId":402573},{"hugoGeneSymbol":"C7ORF65","entrezGeneId":401335},{"hugoGeneSymbol":"C7ORF66","entrezGeneId":154907},{"hugoGeneSymbol":"C7ORF69","entrezGeneId":80099},{"hugoGeneSymbol":"C7ORF71","entrezGeneId":285941},{"hugoGeneSymbol":"C7ORF77","entrezGeneId":154872},{"hugoGeneSymbol":"C8A","entrezGeneId":731},{"hugoGeneSymbol":"C8B","entrezGeneId":732},{"hugoGeneSymbol":"C8G","entrezGeneId":733},{"hugoGeneSymbol":"C8ORF17","entrezGeneId":100507249},{"hugoGeneSymbol":"C8ORF31","entrezGeneId":286122},{"hugoGeneSymbol":"C8ORF33","entrezGeneId":65265},{"hugoGeneSymbol":"C8ORF34","entrezGeneId":116328},{"hugoGeneSymbol":"C8ORF34-AS1","entrezGeneId":286189},{"hugoGeneSymbol":"C8ORF37","entrezGeneId":157657},{"hugoGeneSymbol":"C8ORF37-AS1","entrezGeneId":100616530},{"hugoGeneSymbol":"C8ORF44","entrezGeneId":56260},{"hugoGeneSymbol":"C8ORF44-SGK3","entrezGeneId":100533105},{"hugoGeneSymbol":"C8ORF46","entrezGeneId":254778},{"hugoGeneSymbol":"C8ORF48","entrezGeneId":157773},{"hugoGeneSymbol":"C8ORF49","entrezGeneId":606553},{"hugoGeneSymbol":"C8ORF58","entrezGeneId":541565},{"hugoGeneSymbol":"C8ORF59","entrezGeneId":401466},{"hugoGeneSymbol":"C8ORF59P1","entrezGeneId":106481719},{"hugoGeneSymbol":"C8ORF59P2","entrezGeneId":106480687},{"hugoGeneSymbol":"C8ORF74","entrezGeneId":203076},{"hugoGeneSymbol":"C8ORF76","entrezGeneId":84933},{"hugoGeneSymbol":"C8ORF82","entrezGeneId":414919},{"hugoGeneSymbol":"C8ORF86","entrezGeneId":389649},{"hugoGeneSymbol":"C8ORF87","entrezGeneId":389676},{"hugoGeneSymbol":"C8ORF88","entrezGeneId":100127983},{"hugoGeneSymbol":"C8ORF89","entrezGeneId":100130301},{"hugoGeneSymbol":"C9","entrezGeneId":735},{"hugoGeneSymbol":"C9ORF106","entrezGeneId":414318},{"hugoGeneSymbol":"C9ORF116","entrezGeneId":138162},{"hugoGeneSymbol":"C9ORF118","entrezGeneId":414312},{"hugoGeneSymbol":"C9ORF129","entrezGeneId":445577},{"hugoGeneSymbol":"C9ORF131","entrezGeneId":138724},{"hugoGeneSymbol":"C9ORF135","entrezGeneId":138255},{"hugoGeneSymbol":"C9ORF135-DT","entrezGeneId":494558},{"hugoGeneSymbol":"C9ORF139","entrezGeneId":401563},{"hugoGeneSymbol":"C9ORF147","entrezGeneId":100133204},{"hugoGeneSymbol":"C9ORF152","entrezGeneId":401546},{"hugoGeneSymbol":"C9ORF153","entrezGeneId":389766},{"hugoGeneSymbol":"C9ORF16","entrezGeneId":79095},{"hugoGeneSymbol":"C9ORF163","entrezGeneId":158055},{"hugoGeneSymbol":"C9ORF170","entrezGeneId":401535},{"hugoGeneSymbol":"C9ORF24","entrezGeneId":84688},{"hugoGeneSymbol":"C9ORF3","entrezGeneId":84909},{"hugoGeneSymbol":"C9ORF40","entrezGeneId":55071},{"hugoGeneSymbol":"C9ORF41-AS1","entrezGeneId":101927380},{"hugoGeneSymbol":"C9ORF43","entrezGeneId":257169},{"hugoGeneSymbol":"C9ORF47","entrezGeneId":286223},{"hugoGeneSymbol":"C9ORF50","entrezGeneId":375759},{"hugoGeneSymbol":"C9ORF57","entrezGeneId":138240},{"hugoGeneSymbol":"C9ORF62","entrezGeneId":157927},{"hugoGeneSymbol":"C9ORF64","entrezGeneId":84267},{"hugoGeneSymbol":"C9ORF66","entrezGeneId":157983},{"hugoGeneSymbol":"C9ORF72","entrezGeneId":203228},{"hugoGeneSymbol":"C9ORF78","entrezGeneId":51759},{"hugoGeneSymbol":"C9ORF84","entrezGeneId":158401},{"hugoGeneSymbol":"C9ORF85","entrezGeneId":138241},{"hugoGeneSymbol":"C9ORF92","entrezGeneId":100129385},{"hugoGeneSymbol":"CA1","entrezGeneId":759},{"hugoGeneSymbol":"CA10","entrezGeneId":56934},{"hugoGeneSymbol":"CA11","entrezGeneId":770},{"hugoGeneSymbol":"CA12","entrezGeneId":771},{"hugoGeneSymbol":"CA13","entrezGeneId":377677},{"hugoGeneSymbol":"CA14","entrezGeneId":23632},{"hugoGeneSymbol":"CA15P1","entrezGeneId":100996435},{"hugoGeneSymbol":"CA15P2","entrezGeneId":440795},{"hugoGeneSymbol":"CA15P3","entrezGeneId":100996556},{"hugoGeneSymbol":"CA2","entrezGeneId":760},{"hugoGeneSymbol":"CA3","entrezGeneId":761},{"hugoGeneSymbol":"CA3-AS1","entrezGeneId":100996348},{"hugoGeneSymbol":"CA4","entrezGeneId":762},{"hugoGeneSymbol":"CA5A","entrezGeneId":763},{"hugoGeneSymbol":"CA5AP1","entrezGeneId":764},{"hugoGeneSymbol":"CA5B","entrezGeneId":11238},{"hugoGeneSymbol":"CA5BP1","entrezGeneId":340591},{"hugoGeneSymbol":"CA6","entrezGeneId":765},{"hugoGeneSymbol":"CA7","entrezGeneId":766},{"hugoGeneSymbol":"CA8","entrezGeneId":767},{"hugoGeneSymbol":"CA9","entrezGeneId":768},{"hugoGeneSymbol":"CAAP1","entrezGeneId":79886},{"hugoGeneSymbol":"CAB39","entrezGeneId":51719},{"hugoGeneSymbol":"CAB39L","entrezGeneId":81617},{"hugoGeneSymbol":"CAB39P1","entrezGeneId":106481732},{"hugoGeneSymbol":"CABCOCO1","entrezGeneId":219621},{"hugoGeneSymbol":"CABIN1","entrezGeneId":23523},{"hugoGeneSymbol":"CABLES1","entrezGeneId":91768},{"hugoGeneSymbol":"CABLES2","entrezGeneId":81928},{"hugoGeneSymbol":"CABP1","entrezGeneId":9478},{"hugoGeneSymbol":"CABP2","entrezGeneId":51475},{"hugoGeneSymbol":"CABP4","entrezGeneId":57010},{"hugoGeneSymbol":"CABP5","entrezGeneId":56344},{"hugoGeneSymbol":"CABP7","entrezGeneId":164633},{"hugoGeneSymbol":"CABS1","entrezGeneId":85438},{"hugoGeneSymbol":"CABYR","entrezGeneId":26256},{"hugoGeneSymbol":"CABYRP1","entrezGeneId":266954},{"hugoGeneSymbol":"CACD","entrezGeneId":772},{"hugoGeneSymbol":"CACD3","entrezGeneId":100653393},{"hugoGeneSymbol":"CACFD1","entrezGeneId":11094},{"hugoGeneSymbol":"CACHD1","entrezGeneId":57685},{"hugoGeneSymbol":"CACNA1A","entrezGeneId":773},{"hugoGeneSymbol":"CACNA1B","entrezGeneId":774},{"hugoGeneSymbol":"CACNA1C","entrezGeneId":775},{"hugoGeneSymbol":"CACNA1C-AS1","entrezGeneId":100652846},{"hugoGeneSymbol":"CACNA1C-AS2","entrezGeneId":100874235},{"hugoGeneSymbol":"CACNA1C-AS3","entrezGeneId":106478964},{"hugoGeneSymbol":"CACNA1C-AS4","entrezGeneId":100874234},{"hugoGeneSymbol":"CACNA1C-IT1","entrezGeneId":107984540},{"hugoGeneSymbol":"CACNA1C-IT2","entrezGeneId":100874369},{"hugoGeneSymbol":"CACNA1C-IT3","entrezGeneId":100874370},{"hugoGeneSymbol":"CACNA1D","entrezGeneId":776},{"hugoGeneSymbol":"CACNA1E","entrezGeneId":777},{"hugoGeneSymbol":"CACNA1F","entrezGeneId":778},{"hugoGeneSymbol":"CACNA1G","entrezGeneId":8913},{"hugoGeneSymbol":"CACNA1G-AS1","entrezGeneId":253962},{"hugoGeneSymbol":"CACNA1H","entrezGeneId":8912},{"hugoGeneSymbol":"CACNA1I","entrezGeneId":8911},{"hugoGeneSymbol":"CACNA1S","entrezGeneId":779},{"hugoGeneSymbol":"CACNA2D1","entrezGeneId":781},{"hugoGeneSymbol":"CACNA2D2","entrezGeneId":9254},{"hugoGeneSymbol":"CACNA2D3","entrezGeneId":55799},{"hugoGeneSymbol":"CACNA2D3-AS1","entrezGeneId":100874237},{"hugoGeneSymbol":"CACNA2D4","entrezGeneId":93589},{"hugoGeneSymbol":"CACNB1","entrezGeneId":782},{"hugoGeneSymbol":"CACNB2","entrezGeneId":783},{"hugoGeneSymbol":"CACNB3","entrezGeneId":784},{"hugoGeneSymbol":"CACNB4","entrezGeneId":785},{"hugoGeneSymbol":"CACNG1","entrezGeneId":786},{"hugoGeneSymbol":"CACNG2","entrezGeneId":10369},{"hugoGeneSymbol":"CACNG3","entrezGeneId":10368},{"hugoGeneSymbol":"CACNG4","entrezGeneId":27092},{"hugoGeneSymbol":"CACNG5","entrezGeneId":27091},{"hugoGeneSymbol":"CACNG6","entrezGeneId":59285},{"hugoGeneSymbol":"CACNG7","entrezGeneId":59284},{"hugoGeneSymbol":"CACNG8","entrezGeneId":59283},{"hugoGeneSymbol":"CACTIN","entrezGeneId":58509},{"hugoGeneSymbol":"CACTIN-AS1","entrezGeneId":404665},{"hugoGeneSymbol":"CACUL1","entrezGeneId":143384},{"hugoGeneSymbol":"CACYBP","entrezGeneId":27101},{"hugoGeneSymbol":"CACYBPP1","entrezGeneId":100420043},{"hugoGeneSymbol":"CACYBPP2","entrezGeneId":644877},{"hugoGeneSymbol":"CACYBPP3","entrezGeneId":106480809},{"hugoGeneSymbol":"CAD","entrezGeneId":790},{"hugoGeneSymbol":"CADM1","entrezGeneId":23705},{"hugoGeneSymbol":"CADM2","entrezGeneId":253559},{"hugoGeneSymbol":"CADM2-AS1","entrezGeneId":100874038},{"hugoGeneSymbol":"CADM2-AS2","entrezGeneId":100874037},{"hugoGeneSymbol":"CADM3","entrezGeneId":57863},{"hugoGeneSymbol":"CADM3-AS1","entrezGeneId":100131825},{"hugoGeneSymbol":"CADM4","entrezGeneId":199731},{"hugoGeneSymbol":"CADPS","entrezGeneId":8618},{"hugoGeneSymbol":"CADPS2","entrezGeneId":93664},{"hugoGeneSymbol":"CAGE1","entrezGeneId":285782},{"hugoGeneSymbol":"CAHM","entrezGeneId":100526820},{"hugoGeneSymbol":"CALB1","entrezGeneId":793},{"hugoGeneSymbol":"CALB2","entrezGeneId":794},{"hugoGeneSymbol":"CALCA","entrezGeneId":796},{"hugoGeneSymbol":"CALCB","entrezGeneId":797},{"hugoGeneSymbol":"CALCOCO1","entrezGeneId":57658},{"hugoGeneSymbol":"CALCOCO2","entrezGeneId":10241},{"hugoGeneSymbol":"CALCP","entrezGeneId":798},{"hugoGeneSymbol":"CALCR","entrezGeneId":799},{"hugoGeneSymbol":"CALCRL","entrezGeneId":10203},{"hugoGeneSymbol":"CALD1","entrezGeneId":800},{"hugoGeneSymbol":"CALHM1","entrezGeneId":255022},{"hugoGeneSymbol":"CALHM2","entrezGeneId":51063},{"hugoGeneSymbol":"CALHM3","entrezGeneId":119395},{"hugoGeneSymbol":"CALHM4","entrezGeneId":221301},{"hugoGeneSymbol":"CALHM5","entrezGeneId":254228},{"hugoGeneSymbol":"CALHM6","entrezGeneId":441168},{"hugoGeneSymbol":"CALM1","entrezGeneId":801},{"hugoGeneSymbol":"CALM1P1","entrezGeneId":802},{"hugoGeneSymbol":"CALM1P2","entrezGeneId":804},{"hugoGeneSymbol":"CALM2","entrezGeneId":805},{"hugoGeneSymbol":"CALM2P1","entrezGeneId":100128390},{"hugoGeneSymbol":"CALM2P2","entrezGeneId":806},{"hugoGeneSymbol":"CALM2P3","entrezGeneId":807},{"hugoGeneSymbol":"CALM2P4","entrezGeneId":643193},{"hugoGeneSymbol":"CALM3","entrezGeneId":808},{"hugoGeneSymbol":"CALML3","entrezGeneId":810},{"hugoGeneSymbol":"CALML3-AS1","entrezGeneId":100132159},{"hugoGeneSymbol":"CALML4","entrezGeneId":91860},{"hugoGeneSymbol":"CALML5","entrezGeneId":51806},{"hugoGeneSymbol":"CALML6","entrezGeneId":163688},{"hugoGeneSymbol":"CALN1","entrezGeneId":83698},{"hugoGeneSymbol":"CALR","entrezGeneId":811},{"hugoGeneSymbol":"CALR3","entrezGeneId":125972},{"hugoGeneSymbol":"CALR4P","entrezGeneId":441884},{"hugoGeneSymbol":"CALU","entrezGeneId":813},{"hugoGeneSymbol":"CALY","entrezGeneId":50632},{"hugoGeneSymbol":"CAMK1","entrezGeneId":8536},{"hugoGeneSymbol":"CAMK1D","entrezGeneId":57118},{"hugoGeneSymbol":"CAMK1G","entrezGeneId":57172},{"hugoGeneSymbol":"CAMK2A","entrezGeneId":815},{"hugoGeneSymbol":"CAMK2B","entrezGeneId":816},{"hugoGeneSymbol":"CAMK2D","entrezGeneId":817},{"hugoGeneSymbol":"CAMK2G","entrezGeneId":818},{"hugoGeneSymbol":"CAMK2N1","entrezGeneId":55450},{"hugoGeneSymbol":"CAMK2N2","entrezGeneId":94032},{"hugoGeneSymbol":"CAMK4","entrezGeneId":814},{"hugoGeneSymbol":"CAMKK1","entrezGeneId":84254},{"hugoGeneSymbol":"CAMKK2","entrezGeneId":10645},{"hugoGeneSymbol":"CAMKMT","entrezGeneId":79823},{"hugoGeneSymbol":"CAMKV","entrezGeneId":79012},{"hugoGeneSymbol":"CAMLG","entrezGeneId":819},{"hugoGeneSymbol":"CAMP","entrezGeneId":820},{"hugoGeneSymbol":"CAMPD1","entrezGeneId":100381210},{"hugoGeneSymbol":"CAMSAP1","entrezGeneId":157922},{"hugoGeneSymbol":"CAMSAP2","entrezGeneId":23271},{"hugoGeneSymbol":"CAMSAP3","entrezGeneId":57662},{"hugoGeneSymbol":"CAMTA1","entrezGeneId":23261},{"hugoGeneSymbol":"CAMTA1-DT","entrezGeneId":110841581},{"hugoGeneSymbol":"CAMTA1-IT1","entrezGeneId":100874340},{"hugoGeneSymbol":"CAMTA2","entrezGeneId":23125},{"hugoGeneSymbol":"CAND1","entrezGeneId":55832},{"hugoGeneSymbol":"CAND1.11","entrezGeneId":100130460},{"hugoGeneSymbol":"CAND2","entrezGeneId":23066},{"hugoGeneSymbol":"CANDF1","entrezGeneId":117084},{"hugoGeneSymbol":"CANDN1","entrezGeneId":338434},{"hugoGeneSymbol":"CANT1","entrezGeneId":124583},{"hugoGeneSymbol":"CANX","entrezGeneId":821},{"hugoGeneSymbol":"CAP1","entrezGeneId":10487},{"hugoGeneSymbol":"CAP1P1","entrezGeneId":401076},{"hugoGeneSymbol":"CAP1P2","entrezGeneId":399748},{"hugoGeneSymbol":"CAP2","entrezGeneId":10486},{"hugoGeneSymbol":"CAP2P1","entrezGeneId":353163},{"hugoGeneSymbol":"CAPG","entrezGeneId":822},{"hugoGeneSymbol":"CAPN1","entrezGeneId":823},{"hugoGeneSymbol":"CAPN10","entrezGeneId":11132},{"hugoGeneSymbol":"CAPN10-DT","entrezGeneId":101752400},{"hugoGeneSymbol":"CAPN11","entrezGeneId":11131},{"hugoGeneSymbol":"CAPN12","entrezGeneId":147968},{"hugoGeneSymbol":"CAPN13","entrezGeneId":92291},{"hugoGeneSymbol":"CAPN14","entrezGeneId":440854},{"hugoGeneSymbol":"CAPN15","entrezGeneId":6650},{"hugoGeneSymbol":"CAPN2","entrezGeneId":824},{"hugoGeneSymbol":"CAPN3","entrezGeneId":825},{"hugoGeneSymbol":"CAPN5","entrezGeneId":726},{"hugoGeneSymbol":"CAPN6","entrezGeneId":827},{"hugoGeneSymbol":"CAPN7","entrezGeneId":23473},{"hugoGeneSymbol":"CAPN8","entrezGeneId":388743},{"hugoGeneSymbol":"CAPN9","entrezGeneId":10753},{"hugoGeneSymbol":"CAPNS1","entrezGeneId":826},{"hugoGeneSymbol":"CAPNS1P1","entrezGeneId":391053},{"hugoGeneSymbol":"CAPNS2","entrezGeneId":84290},{"hugoGeneSymbol":"CAPRIN1","entrezGeneId":4076},{"hugoGeneSymbol":"CAPRIN2","entrezGeneId":65981},{"hugoGeneSymbol":"CAPS","entrezGeneId":828},{"hugoGeneSymbol":"CAPS2","entrezGeneId":84698},{"hugoGeneSymbol":"CAPSL","entrezGeneId":133690},{"hugoGeneSymbol":"CAPZA1","entrezGeneId":829},{"hugoGeneSymbol":"CAPZA1P","entrezGeneId":53338},{"hugoGeneSymbol":"CAPZA2","entrezGeneId":830},{"hugoGeneSymbol":"CAPZA3","entrezGeneId":93661},{"hugoGeneSymbol":"CAPZB","entrezGeneId":832},{"hugoGeneSymbol":"CARD10","entrezGeneId":29775},{"hugoGeneSymbol":"CARD11","entrezGeneId":84433},{"hugoGeneSymbol":"CARD14","entrezGeneId":79092},{"hugoGeneSymbol":"CARD16","entrezGeneId":114769},{"hugoGeneSymbol":"CARD17","entrezGeneId":440068},{"hugoGeneSymbol":"CARD18","entrezGeneId":59082},{"hugoGeneSymbol":"CARD19","entrezGeneId":84270},{"hugoGeneSymbol":"CARD6","entrezGeneId":84674},{"hugoGeneSymbol":"CARD8","entrezGeneId":22900},{"hugoGeneSymbol":"CARD8-AS1","entrezGeneId":100505812},{"hugoGeneSymbol":"CARD9","entrezGeneId":64170},{"hugoGeneSymbol":"CARF","entrezGeneId":79800},{"hugoGeneSymbol":"CARHSP1","entrezGeneId":23589},{"hugoGeneSymbol":"CARM1","entrezGeneId":10498},{"hugoGeneSymbol":"CARM1P1","entrezGeneId":100130873},{"hugoGeneSymbol":"CARMIL1","entrezGeneId":55604},{"hugoGeneSymbol":"CARMIL2","entrezGeneId":146206},{"hugoGeneSymbol":"CARMIL3","entrezGeneId":90668},{"hugoGeneSymbol":"CARMN","entrezGeneId":728264},{"hugoGeneSymbol":"CARNMT1","entrezGeneId":138199},{"hugoGeneSymbol":"CARNS1","entrezGeneId":57571},{"hugoGeneSymbol":"CARS","entrezGeneId":833},{"hugoGeneSymbol":"CARS-AS1","entrezGeneId":100852407},{"hugoGeneSymbol":"CARS2","entrezGeneId":79587},{"hugoGeneSymbol":"CARSP1","entrezGeneId":100420042},{"hugoGeneSymbol":"CARSP2","entrezGeneId":106481707},{"hugoGeneSymbol":"CARTPT","entrezGeneId":9607},{"hugoGeneSymbol":"CASC1","entrezGeneId":55259},{"hugoGeneSymbol":"CASC10","entrezGeneId":399726},{"hugoGeneSymbol":"CASC11","entrezGeneId":100270680},{"hugoGeneSymbol":"CASC15","entrezGeneId":401237},{"hugoGeneSymbol":"CASC16","entrezGeneId":643714},{"hugoGeneSymbol":"CASC17","entrezGeneId":101928165},{"hugoGeneSymbol":"CASC18","entrezGeneId":101929110},{"hugoGeneSymbol":"CASC19","entrezGeneId":103021165},{"hugoGeneSymbol":"CASC2","entrezGeneId":255082},{"hugoGeneSymbol":"CASC20","entrezGeneId":101929244},{"hugoGeneSymbol":"CASC21","entrezGeneId":103021164},{"hugoGeneSymbol":"CASC22","entrezGeneId":283854},{"hugoGeneSymbol":"CASC23","entrezGeneId":103581031},{"hugoGeneSymbol":"CASC3","entrezGeneId":22794},{"hugoGeneSymbol":"CASC4","entrezGeneId":113201},{"hugoGeneSymbol":"CASC4P1","entrezGeneId":100420689},{"hugoGeneSymbol":"CASC6","entrezGeneId":101929083},{"hugoGeneSymbol":"CASC8","entrezGeneId":727677},{"hugoGeneSymbol":"CASC9","entrezGeneId":101805492},{"hugoGeneSymbol":"CASD1","entrezGeneId":64921},{"hugoGeneSymbol":"CASK","entrezGeneId":8573},{"hugoGeneSymbol":"CASK-AS1","entrezGeneId":100873928},{"hugoGeneSymbol":"CASKIN1","entrezGeneId":57524},{"hugoGeneSymbol":"CASKIN2","entrezGeneId":57513},{"hugoGeneSymbol":"CASKP1","entrezGeneId":10029},{"hugoGeneSymbol":"CASP1","entrezGeneId":834},{"hugoGeneSymbol":"CASP10","entrezGeneId":843},{"hugoGeneSymbol":"CASP12","entrezGeneId":100506742},{"hugoGeneSymbol":"CASP14","entrezGeneId":23581},{"hugoGeneSymbol":"CASP16P","entrezGeneId":197350},{"hugoGeneSymbol":"CASP1P1","entrezGeneId":100874457},{"hugoGeneSymbol":"CASP1P2","entrezGeneId":440067},{"hugoGeneSymbol":"CASP1P3","entrezGeneId":100422634},{"hugoGeneSymbol":"CASP2","entrezGeneId":835},{"hugoGeneSymbol":"CASP3","entrezGeneId":836},{"hugoGeneSymbol":"CASP3P1","entrezGeneId":100131616},{"hugoGeneSymbol":"CASP4","entrezGeneId":837},{"hugoGeneSymbol":"CASP5","entrezGeneId":838},{"hugoGeneSymbol":"CASP6","entrezGeneId":839},{"hugoGeneSymbol":"CASP7","entrezGeneId":840},{"hugoGeneSymbol":"CASP8","entrezGeneId":841},{"hugoGeneSymbol":"CASP8AP2","entrezGeneId":9994},{"hugoGeneSymbol":"CASP9","entrezGeneId":842},{"hugoGeneSymbol":"CASQ1","entrezGeneId":844},{"hugoGeneSymbol":"CASQ2","entrezGeneId":845},{"hugoGeneSymbol":"CASR","entrezGeneId":846},{"hugoGeneSymbol":"CASS4","entrezGeneId":57091},{"hugoGeneSymbol":"CAST","entrezGeneId":831},{"hugoGeneSymbol":"CASTOR1","entrezGeneId":652968},{"hugoGeneSymbol":"CASTOR2","entrezGeneId":729438},{"hugoGeneSymbol":"CASTOR3","entrezGeneId":352954},{"hugoGeneSymbol":"CASZ1","entrezGeneId":54897},{"hugoGeneSymbol":"CAT","entrezGeneId":847},{"hugoGeneSymbol":"CATIP","entrezGeneId":375307},{"hugoGeneSymbol":"CATIP-AS1","entrezGeneId":101928513},{"hugoGeneSymbol":"CATIP-AS2","entrezGeneId":103689911},{"hugoGeneSymbol":"CATMANS","entrezGeneId":100862706},{"hugoGeneSymbol":"CATR1","entrezGeneId":856},{"hugoGeneSymbol":"CATSPER1","entrezGeneId":117144},{"hugoGeneSymbol":"CATSPER2","entrezGeneId":117155},{"hugoGeneSymbol":"CATSPER2P1","entrezGeneId":440278},{"hugoGeneSymbol":"CATSPER3","entrezGeneId":347732},{"hugoGeneSymbol":"CATSPER4","entrezGeneId":378807},{"hugoGeneSymbol":"CATSPERB","entrezGeneId":79820},{"hugoGeneSymbol":"CATSPERD","entrezGeneId":257062},{"hugoGeneSymbol":"CATSPERE","entrezGeneId":257044},{"hugoGeneSymbol":"CATSPERG","entrezGeneId":57828},{"hugoGeneSymbol":"CATSPERZ","entrezGeneId":25858},{"hugoGeneSymbol":"CAV1","entrezGeneId":857},{"hugoGeneSymbol":"CAV2","entrezGeneId":858},{"hugoGeneSymbol":"CAV3","entrezGeneId":859},{"hugoGeneSymbol":"CAVIN1","entrezGeneId":284119},{"hugoGeneSymbol":"CAVIN2","entrezGeneId":8436},{"hugoGeneSymbol":"CAVIN3","entrezGeneId":112464},{"hugoGeneSymbol":"CAVIN4","entrezGeneId":347273},{"hugoGeneSymbol":"CBARP","entrezGeneId":255057},{"hugoGeneSymbol":"CBFA2T2","entrezGeneId":9139},{"hugoGeneSymbol":"CBFA2T3","entrezGeneId":863},{"hugoGeneSymbol":"CBFB","entrezGeneId":865},{"hugoGeneSymbol":"CBL","entrezGeneId":867},{"hugoGeneSymbol":"CBLB","entrezGeneId":868},{"hugoGeneSymbol":"CBLC","entrezGeneId":23624},{"hugoGeneSymbol":"CBLL1","entrezGeneId":79872},{"hugoGeneSymbol":"CBLL2","entrezGeneId":158506},{"hugoGeneSymbol":"CBLN1","entrezGeneId":869},{"hugoGeneSymbol":"CBLN2","entrezGeneId":147381},{"hugoGeneSymbol":"CBLN3","entrezGeneId":643866},{"hugoGeneSymbol":"CBLN4","entrezGeneId":140689},{"hugoGeneSymbol":"CBR1","entrezGeneId":873},{"hugoGeneSymbol":"CBR3","entrezGeneId":874},{"hugoGeneSymbol":"CBR3-AS1","entrezGeneId":100506428},{"hugoGeneSymbol":"CBR4","entrezGeneId":84869},{"hugoGeneSymbol":"CBS","entrezGeneId":875},{"hugoGeneSymbol":"CBSL","entrezGeneId":102724560},{"hugoGeneSymbol":"CBWD1","entrezGeneId":55871},{"hugoGeneSymbol":"CBWD2","entrezGeneId":150472},{"hugoGeneSymbol":"CBWD3","entrezGeneId":445571},{"hugoGeneSymbol":"CBWD4P","entrezGeneId":653510},{"hugoGeneSymbol":"CBWD5","entrezGeneId":220869},{"hugoGeneSymbol":"CBWD6","entrezGeneId":644019},{"hugoGeneSymbol":"CBX1","entrezGeneId":10951},{"hugoGeneSymbol":"CBX1P1","entrezGeneId":645251},{"hugoGeneSymbol":"CBX1P2","entrezGeneId":100147811},{"hugoGeneSymbol":"CBX1P3","entrezGeneId":100128723},{"hugoGeneSymbol":"CBX1P4","entrezGeneId":100130461},{"hugoGeneSymbol":"CBX1P5","entrezGeneId":100133259},{"hugoGeneSymbol":"CBX2","entrezGeneId":84733},{"hugoGeneSymbol":"CBX3","entrezGeneId":11335},{"hugoGeneSymbol":"CBX3P1","entrezGeneId":159770},{"hugoGeneSymbol":"CBX3P2","entrezGeneId":645158},{"hugoGeneSymbol":"CBX3P3","entrezGeneId":100421861},{"hugoGeneSymbol":"CBX3P4","entrezGeneId":100873792},{"hugoGeneSymbol":"CBX3P5","entrezGeneId":100421943},{"hugoGeneSymbol":"CBX3P6","entrezGeneId":642721},{"hugoGeneSymbol":"CBX3P7","entrezGeneId":100421975},{"hugoGeneSymbol":"CBX3P8","entrezGeneId":100286965},{"hugoGeneSymbol":"CBX3P9","entrezGeneId":644101},{"hugoGeneSymbol":"CBX4","entrezGeneId":8535},{"hugoGeneSymbol":"CBX5","entrezGeneId":23468},{"hugoGeneSymbol":"CBX5P1","entrezGeneId":100151661},{"hugoGeneSymbol":"CBX6","entrezGeneId":23466},{"hugoGeneSymbol":"CBX7","entrezGeneId":23492},{"hugoGeneSymbol":"CBX8","entrezGeneId":57332},{"hugoGeneSymbol":"CBY1","entrezGeneId":25776},{"hugoGeneSymbol":"CBY3","entrezGeneId":646019},{"hugoGeneSymbol":"CC2D1A","entrezGeneId":54862},{"hugoGeneSymbol":"CC2D1B","entrezGeneId":200014},{"hugoGeneSymbol":"CC2D2A","entrezGeneId":57545},{"hugoGeneSymbol":"CC2D2B","entrezGeneId":387707},{"hugoGeneSymbol":"CCA1","entrezGeneId":878},{"hugoGeneSymbol":"CCAL1","entrezGeneId":882},{"hugoGeneSymbol":"CCAR1","entrezGeneId":55749},{"hugoGeneSymbol":"CCAR2","entrezGeneId":57805},{"hugoGeneSymbol":"CCAT1","entrezGeneId":100507056},{"hugoGeneSymbol":"CCAT2","entrezGeneId":101805488},{"hugoGeneSymbol":"CCBE1","entrezGeneId":147372},{"hugoGeneSymbol":"CCCSX","entrezGeneId":100820758},{"hugoGeneSymbol":"CCDC102A","entrezGeneId":92922},{"hugoGeneSymbol":"CCDC102B","entrezGeneId":79839},{"hugoGeneSymbol":"CCDC103","entrezGeneId":388389},{"hugoGeneSymbol":"CCDC105","entrezGeneId":126402},{"hugoGeneSymbol":"CCDC106","entrezGeneId":29903},{"hugoGeneSymbol":"CCDC107","entrezGeneId":203260},{"hugoGeneSymbol":"CCDC110","entrezGeneId":256309},{"hugoGeneSymbol":"CCDC112","entrezGeneId":153733},{"hugoGeneSymbol":"CCDC113","entrezGeneId":29070},{"hugoGeneSymbol":"CCDC114","entrezGeneId":93233},{"hugoGeneSymbol":"CCDC115","entrezGeneId":84317},{"hugoGeneSymbol":"CCDC116","entrezGeneId":164592},{"hugoGeneSymbol":"CCDC117","entrezGeneId":150275},{"hugoGeneSymbol":"CCDC11P1","entrezGeneId":100129040},{"hugoGeneSymbol":"CCDC12","entrezGeneId":151903},{"hugoGeneSymbol":"CCDC120","entrezGeneId":90060},{"hugoGeneSymbol":"CCDC121","entrezGeneId":79635},{"hugoGeneSymbol":"CCDC122","entrezGeneId":160857},{"hugoGeneSymbol":"CCDC124","entrezGeneId":115098},{"hugoGeneSymbol":"CCDC125","entrezGeneId":202243},{"hugoGeneSymbol":"CCDC126","entrezGeneId":90693},{"hugoGeneSymbol":"CCDC127","entrezGeneId":133957},{"hugoGeneSymbol":"CCDC129","entrezGeneId":223075},{"hugoGeneSymbol":"CCDC13","entrezGeneId":152206},{"hugoGeneSymbol":"CCDC13-AS1","entrezGeneId":100874114},{"hugoGeneSymbol":"CCDC130","entrezGeneId":81576},{"hugoGeneSymbol":"CCDC134","entrezGeneId":79879},{"hugoGeneSymbol":"CCDC136","entrezGeneId":64753},{"hugoGeneSymbol":"CCDC137","entrezGeneId":339230},{"hugoGeneSymbol":"CCDC137P","entrezGeneId":642802},{"hugoGeneSymbol":"CCDC138","entrezGeneId":165055},{"hugoGeneSymbol":"CCDC14","entrezGeneId":64770},{"hugoGeneSymbol":"CCDC140","entrezGeneId":151278},{"hugoGeneSymbol":"CCDC141","entrezGeneId":285025},{"hugoGeneSymbol":"CCDC142","entrezGeneId":84865},{"hugoGeneSymbol":"CCDC144A","entrezGeneId":9720},{"hugoGeneSymbol":"CCDC144B","entrezGeneId":284047},{"hugoGeneSymbol":"CCDC144CP","entrezGeneId":348254},{"hugoGeneSymbol":"CCDC144NL","entrezGeneId":339184},{"hugoGeneSymbol":"CCDC144NL-AS1","entrezGeneId":440416},{"hugoGeneSymbol":"CCDC146","entrezGeneId":57639},{"hugoGeneSymbol":"CCDC148","entrezGeneId":130940},{"hugoGeneSymbol":"CCDC148-AS1","entrezGeneId":554201},{"hugoGeneSymbol":"CCDC149","entrezGeneId":91050},{"hugoGeneSymbol":"CCDC15","entrezGeneId":80071},{"hugoGeneSymbol":"CCDC150","entrezGeneId":284992},{"hugoGeneSymbol":"CCDC150P1","entrezGeneId":100420678},{"hugoGeneSymbol":"CCDC151","entrezGeneId":115948},{"hugoGeneSymbol":"CCDC152","entrezGeneId":100129792},{"hugoGeneSymbol":"CCDC153","entrezGeneId":283152},{"hugoGeneSymbol":"CCDC154","entrezGeneId":645811},{"hugoGeneSymbol":"CCDC155","entrezGeneId":147872},{"hugoGeneSymbol":"CCDC157","entrezGeneId":550631},{"hugoGeneSymbol":"CCDC158","entrezGeneId":339965},{"hugoGeneSymbol":"CCDC159","entrezGeneId":126075},{"hugoGeneSymbol":"CCDC160","entrezGeneId":347475},{"hugoGeneSymbol":"CCDC162P","entrezGeneId":221262},{"hugoGeneSymbol":"CCDC163","entrezGeneId":126661},{"hugoGeneSymbol":"CCDC166","entrezGeneId":100130274},{"hugoGeneSymbol":"CCDC167","entrezGeneId":154467},{"hugoGeneSymbol":"CCDC168","entrezGeneId":643677},{"hugoGeneSymbol":"CCDC169","entrezGeneId":728591},{"hugoGeneSymbol":"CCDC169-SOHLH2","entrezGeneId":100526761},{"hugoGeneSymbol":"CCDC17","entrezGeneId":149483},{"hugoGeneSymbol":"CCDC170","entrezGeneId":80129},{"hugoGeneSymbol":"CCDC171","entrezGeneId":203238},{"hugoGeneSymbol":"CCDC172","entrezGeneId":374355},{"hugoGeneSymbol":"CCDC173","entrezGeneId":129881},{"hugoGeneSymbol":"CCDC174","entrezGeneId":51244},{"hugoGeneSymbol":"CCDC175","entrezGeneId":729665},{"hugoGeneSymbol":"CCDC177","entrezGeneId":56936},{"hugoGeneSymbol":"CCDC178","entrezGeneId":374864},{"hugoGeneSymbol":"CCDC179","entrezGeneId":100500938},{"hugoGeneSymbol":"CCDC18","entrezGeneId":343099},{"hugoGeneSymbol":"CCDC18-AS1","entrezGeneId":100131564},{"hugoGeneSymbol":"CCDC180","entrezGeneId":100499483},{"hugoGeneSymbol":"CCDC181","entrezGeneId":57821},{"hugoGeneSymbol":"CCDC182","entrezGeneId":101927581},{"hugoGeneSymbol":"CCDC183","entrezGeneId":84960},{"hugoGeneSymbol":"CCDC183-AS1","entrezGeneId":100131193},{"hugoGeneSymbol":"CCDC184","entrezGeneId":387856},{"hugoGeneSymbol":"CCDC185","entrezGeneId":164127},{"hugoGeneSymbol":"CCDC186","entrezGeneId":55088},{"hugoGeneSymbol":"CCDC187","entrezGeneId":399693},{"hugoGeneSymbol":"CCDC188","entrezGeneId":388849},{"hugoGeneSymbol":"CCDC189","entrezGeneId":90835},{"hugoGeneSymbol":"CCDC190","entrezGeneId":339512},{"hugoGeneSymbol":"CCDC191","entrezGeneId":57577},{"hugoGeneSymbol":"CCDC192","entrezGeneId":728586},{"hugoGeneSymbol":"CCDC194","entrezGeneId":110806280},{"hugoGeneSymbol":"CCDC195","entrezGeneId":110806281},{"hugoGeneSymbol":"CCDC196","entrezGeneId":440184},{"hugoGeneSymbol":"CCDC197","entrezGeneId":256369},{"hugoGeneSymbol":"CCDC198","entrezGeneId":55195},{"hugoGeneSymbol":"CCDC22","entrezGeneId":28952},{"hugoGeneSymbol":"CCDC24","entrezGeneId":149473},{"hugoGeneSymbol":"CCDC25","entrezGeneId":55246},{"hugoGeneSymbol":"CCDC26","entrezGeneId":137196},{"hugoGeneSymbol":"CCDC27","entrezGeneId":148870},{"hugoGeneSymbol":"CCDC28A","entrezGeneId":25901},{"hugoGeneSymbol":"CCDC28B","entrezGeneId":79140},{"hugoGeneSymbol":"CCDC3","entrezGeneId":83643},{"hugoGeneSymbol":"CCDC30","entrezGeneId":728621},{"hugoGeneSymbol":"CCDC32","entrezGeneId":90416},{"hugoGeneSymbol":"CCDC33","entrezGeneId":80125},{"hugoGeneSymbol":"CCDC34","entrezGeneId":91057},{"hugoGeneSymbol":"CCDC34P1","entrezGeneId":100288584},{"hugoGeneSymbol":"CCDC36","entrezGeneId":339834},{"hugoGeneSymbol":"CCDC37-DT","entrezGeneId":100506907},{"hugoGeneSymbol":"CCDC38","entrezGeneId":120935},{"hugoGeneSymbol":"CCDC39","entrezGeneId":339829},{"hugoGeneSymbol":"CCDC39-AS1","entrezGeneId":100874112},{"hugoGeneSymbol":"CCDC40","entrezGeneId":55036},{"hugoGeneSymbol":"CCDC42","entrezGeneId":146849},{"hugoGeneSymbol":"CCDC43","entrezGeneId":124808},{"hugoGeneSymbol":"CCDC47","entrezGeneId":57003},{"hugoGeneSymbol":"CCDC50","entrezGeneId":152137},{"hugoGeneSymbol":"CCDC51","entrezGeneId":79714},{"hugoGeneSymbol":"CCDC54","entrezGeneId":84692},{"hugoGeneSymbol":"CCDC57","entrezGeneId":284001},{"hugoGeneSymbol":"CCDC58","entrezGeneId":131076},{"hugoGeneSymbol":"CCDC58P1","entrezGeneId":645859},{"hugoGeneSymbol":"CCDC58P2","entrezGeneId":100287708},{"hugoGeneSymbol":"CCDC58P3","entrezGeneId":732448},{"hugoGeneSymbol":"CCDC58P4","entrezGeneId":106632269},{"hugoGeneSymbol":"CCDC58P5","entrezGeneId":100420588},{"hugoGeneSymbol":"CCDC59","entrezGeneId":29080},{"hugoGeneSymbol":"CCDC6","entrezGeneId":8030},{"hugoGeneSymbol":"CCDC60","entrezGeneId":160777},{"hugoGeneSymbol":"CCDC61","entrezGeneId":729440},{"hugoGeneSymbol":"CCDC62","entrezGeneId":84660},{"hugoGeneSymbol":"CCDC63","entrezGeneId":160762},{"hugoGeneSymbol":"CCDC65","entrezGeneId":85478},{"hugoGeneSymbol":"CCDC66","entrezGeneId":285331},{"hugoGeneSymbol":"CCDC68","entrezGeneId":80323},{"hugoGeneSymbol":"CCDC69","entrezGeneId":26112},{"hugoGeneSymbol":"CCDC7","entrezGeneId":79741},{"hugoGeneSymbol":"CCDC70","entrezGeneId":83446},{"hugoGeneSymbol":"CCDC71","entrezGeneId":64925},{"hugoGeneSymbol":"CCDC71L","entrezGeneId":168455},{"hugoGeneSymbol":"CCDC73","entrezGeneId":493860},{"hugoGeneSymbol":"CCDC74A","entrezGeneId":90557},{"hugoGeneSymbol":"CCDC74B","entrezGeneId":91409},{"hugoGeneSymbol":"CCDC74BP1","entrezGeneId":100996538},{"hugoGeneSymbol":"CCDC75P1","entrezGeneId":344709},{"hugoGeneSymbol":"CCDC77","entrezGeneId":84318},{"hugoGeneSymbol":"CCDC78","entrezGeneId":124093},{"hugoGeneSymbol":"CCDC8","entrezGeneId":83987},{"hugoGeneSymbol":"CCDC80","entrezGeneId":151887},{"hugoGeneSymbol":"CCDC81","entrezGeneId":60494},{"hugoGeneSymbol":"CCDC82","entrezGeneId":79780},{"hugoGeneSymbol":"CCDC83","entrezGeneId":220047},{"hugoGeneSymbol":"CCDC84","entrezGeneId":338657},{"hugoGeneSymbol":"CCDC85A","entrezGeneId":114800},{"hugoGeneSymbol":"CCDC85B","entrezGeneId":11007},{"hugoGeneSymbol":"CCDC85C","entrezGeneId":317762},{"hugoGeneSymbol":"CCDC86","entrezGeneId":79080},{"hugoGeneSymbol":"CCDC87","entrezGeneId":55231},{"hugoGeneSymbol":"CCDC88A","entrezGeneId":55704},{"hugoGeneSymbol":"CCDC88B","entrezGeneId":283234},{"hugoGeneSymbol":"CCDC88C","entrezGeneId":440193},{"hugoGeneSymbol":"CCDC89","entrezGeneId":220388},{"hugoGeneSymbol":"CCDC9","entrezGeneId":26093},{"hugoGeneSymbol":"CCDC90B","entrezGeneId":60492},{"hugoGeneSymbol":"CCDC91","entrezGeneId":55297},{"hugoGeneSymbol":"CCDC92","entrezGeneId":80212},{"hugoGeneSymbol":"CCDC92B","entrezGeneId":101928991},{"hugoGeneSymbol":"CCDC93","entrezGeneId":54520},{"hugoGeneSymbol":"CCDC96","entrezGeneId":257236},{"hugoGeneSymbol":"CCDC97","entrezGeneId":90324},{"hugoGeneSymbol":"CCDC9B","entrezGeneId":388115},{"hugoGeneSymbol":"CCEPR","entrezGeneId":105682749},{"hugoGeneSymbol":"CCER1","entrezGeneId":196477},{"hugoGeneSymbol":"CCER2","entrezGeneId":643669},{"hugoGeneSymbol":"CCHCR1","entrezGeneId":54535},{"hugoGeneSymbol":"CCIN","entrezGeneId":881},{"hugoGeneSymbol":"CCK","entrezGeneId":885},{"hugoGeneSymbol":"CCKAR","entrezGeneId":886},{"hugoGeneSymbol":"CCKBR","entrezGeneId":887},{"hugoGeneSymbol":"CCL1","entrezGeneId":6346},{"hugoGeneSymbol":"CCL11","entrezGeneId":6356},{"hugoGeneSymbol":"CCL13","entrezGeneId":6357},{"hugoGeneSymbol":"CCL14","entrezGeneId":6358},{"hugoGeneSymbol":"CCL15","entrezGeneId":6359},{"hugoGeneSymbol":"CCL15-CCL14","entrezGeneId":348249},{"hugoGeneSymbol":"CCL16","entrezGeneId":6360},{"hugoGeneSymbol":"CCL17","entrezGeneId":6361},{"hugoGeneSymbol":"CCL18","entrezGeneId":6362},{"hugoGeneSymbol":"CCL19","entrezGeneId":6363},{"hugoGeneSymbol":"CCL2","entrezGeneId":6347},{"hugoGeneSymbol":"CCL20","entrezGeneId":6364},{"hugoGeneSymbol":"CCL21","entrezGeneId":6366},{"hugoGeneSymbol":"CCL22","entrezGeneId":6367},{"hugoGeneSymbol":"CCL23","entrezGeneId":6368},{"hugoGeneSymbol":"CCL24","entrezGeneId":6369},{"hugoGeneSymbol":"CCL25","entrezGeneId":6370},{"hugoGeneSymbol":"CCL26","entrezGeneId":10344},{"hugoGeneSymbol":"CCL27","entrezGeneId":10850},{"hugoGeneSymbol":"CCL28","entrezGeneId":56477},{"hugoGeneSymbol":"CCL3","entrezGeneId":6348},{"hugoGeneSymbol":"CCL3L1","entrezGeneId":6349},{"hugoGeneSymbol":"CCL3L3","entrezGeneId":414062},{"hugoGeneSymbol":"CCL3P1","entrezGeneId":390788},{"hugoGeneSymbol":"CCL4","entrezGeneId":6351},{"hugoGeneSymbol":"CCL4L1","entrezGeneId":388372},{"hugoGeneSymbol":"CCL4L2","entrezGeneId":9560},{"hugoGeneSymbol":"CCL5","entrezGeneId":6352},{"hugoGeneSymbol":"CCL7","entrezGeneId":6354},{"hugoGeneSymbol":"CCL8","entrezGeneId":6355},{"hugoGeneSymbol":"CCM2","entrezGeneId":83605},{"hugoGeneSymbol":"CCM2L","entrezGeneId":140706},{"hugoGeneSymbol":"CCNA1","entrezGeneId":8900},{"hugoGeneSymbol":"CCNA2","entrezGeneId":890},{"hugoGeneSymbol":"CCNB1","entrezGeneId":891},{"hugoGeneSymbol":"CCNB1IP1","entrezGeneId":57820},{"hugoGeneSymbol":"CCNB1IP1P1","entrezGeneId":728887},{"hugoGeneSymbol":"CCNB1IP1P2","entrezGeneId":100505892},{"hugoGeneSymbol":"CCNB1IP1P3","entrezGeneId":100128456},{"hugoGeneSymbol":"CCNB2","entrezGeneId":9133},{"hugoGeneSymbol":"CCNB2P1","entrezGeneId":100132073},{"hugoGeneSymbol":"CCNB3","entrezGeneId":85417},{"hugoGeneSymbol":"CCNB3P1","entrezGeneId":100131678},{"hugoGeneSymbol":"CCNC","entrezGeneId":892},{"hugoGeneSymbol":"CCND1","entrezGeneId":595},{"hugoGeneSymbol":"CCND2","entrezGeneId":894},{"hugoGeneSymbol":"CCND2-AS1","entrezGeneId":103752584},{"hugoGeneSymbol":"CCND2P1","entrezGeneId":895},{"hugoGeneSymbol":"CCND3","entrezGeneId":896},{"hugoGeneSymbol":"CCND3P1","entrezGeneId":897},{"hugoGeneSymbol":"CCND3P2","entrezGeneId":106480307},{"hugoGeneSymbol":"CCNDBP1","entrezGeneId":23582},{"hugoGeneSymbol":"CCNE1","entrezGeneId":898},{"hugoGeneSymbol":"CCNE2","entrezGeneId":9134},{"hugoGeneSymbol":"CCNF","entrezGeneId":899},{"hugoGeneSymbol":"CCNG1","entrezGeneId":900},{"hugoGeneSymbol":"CCNG1P1","entrezGeneId":100130820},{"hugoGeneSymbol":"CCNG2","entrezGeneId":901},{"hugoGeneSymbol":"CCNG2P1","entrezGeneId":100128681},{"hugoGeneSymbol":"CCNH","entrezGeneId":902},{"hugoGeneSymbol":"CCNHP1","entrezGeneId":100128118},{"hugoGeneSymbol":"CCNI","entrezGeneId":10983},{"hugoGeneSymbol":"CCNI2","entrezGeneId":645121},{"hugoGeneSymbol":"CCNJ","entrezGeneId":54619},{"hugoGeneSymbol":"CCNJL","entrezGeneId":79616},{"hugoGeneSymbol":"CCNJP1","entrezGeneId":100128459},{"hugoGeneSymbol":"CCNJP2","entrezGeneId":100418724},{"hugoGeneSymbol":"CCNK","entrezGeneId":8812},{"hugoGeneSymbol":"CCNL1","entrezGeneId":57018},{"hugoGeneSymbol":"CCNL2","entrezGeneId":81669},{"hugoGeneSymbol":"CCNL2P1","entrezGeneId":100418743},{"hugoGeneSymbol":"CCNO","entrezGeneId":10309},{"hugoGeneSymbol":"CCNQ","entrezGeneId":92002},{"hugoGeneSymbol":"CCNQP1","entrezGeneId":339521},{"hugoGeneSymbol":"CCNQP2","entrezGeneId":100421487},{"hugoGeneSymbol":"CCNQP3","entrezGeneId":100421566},{"hugoGeneSymbol":"CCNT1","entrezGeneId":904},{"hugoGeneSymbol":"CCNT2","entrezGeneId":905},{"hugoGeneSymbol":"CCNT2-AS1","entrezGeneId":100129961},{"hugoGeneSymbol":"CCNT2P1","entrezGeneId":100418763},{"hugoGeneSymbol":"CCNY","entrezGeneId":219771},{"hugoGeneSymbol":"CCNYL1","entrezGeneId":151195},{"hugoGeneSymbol":"CCNYL2","entrezGeneId":414194},{"hugoGeneSymbol":"CCNYL3","entrezGeneId":102724928},{"hugoGeneSymbol":"CCP110","entrezGeneId":9738},{"hugoGeneSymbol":"CCPG1","entrezGeneId":9236},{"hugoGeneSymbol":"CCR1","entrezGeneId":1230},{"hugoGeneSymbol":"CCR10","entrezGeneId":2826},{"hugoGeneSymbol":"CCR12P","entrezGeneId":100133168},{"hugoGeneSymbol":"CCR2","entrezGeneId":729230},{"hugoGeneSymbol":"CCR3","entrezGeneId":1232},{"hugoGeneSymbol":"CCR4","entrezGeneId":1233},{"hugoGeneSymbol":"CCR5","entrezGeneId":1234},{"hugoGeneSymbol":"CCR6","entrezGeneId":1235},{"hugoGeneSymbol":"CCR7","entrezGeneId":1236},{"hugoGeneSymbol":"CCR8","entrezGeneId":1237},{"hugoGeneSymbol":"CCR9","entrezGeneId":10803},{"hugoGeneSymbol":"CCRL1P1","entrezGeneId":285737},{"hugoGeneSymbol":"CCRL2","entrezGeneId":9034},{"hugoGeneSymbol":"CCS","entrezGeneId":9973},{"hugoGeneSymbol":"CCSAP","entrezGeneId":126731},{"hugoGeneSymbol":"CCSER1","entrezGeneId":401145},{"hugoGeneSymbol":"CCSER2","entrezGeneId":54462},{"hugoGeneSymbol":"CCT","entrezGeneId":907},{"hugoGeneSymbol":"CCT2","entrezGeneId":10576},{"hugoGeneSymbol":"CCT3","entrezGeneId":7203},{"hugoGeneSymbol":"CCT3P1","entrezGeneId":646440},{"hugoGeneSymbol":"CCT4","entrezGeneId":10575},{"hugoGeneSymbol":"CCT4P1","entrezGeneId":650172},{"hugoGeneSymbol":"CCT4P2","entrezGeneId":100131638},{"hugoGeneSymbol":"CCT5","entrezGeneId":22948},{"hugoGeneSymbol":"CCT5-2P","entrezGeneId":100462982},{"hugoGeneSymbol":"CCT5P1","entrezGeneId":402226},{"hugoGeneSymbol":"CCT5P2","entrezGeneId":390415},{"hugoGeneSymbol":"CCT6A","entrezGeneId":908},{"hugoGeneSymbol":"CCT6B","entrezGeneId":10693},{"hugoGeneSymbol":"CCT6P1","entrezGeneId":643253},{"hugoGeneSymbol":"CCT6P2","entrezGeneId":391739},{"hugoGeneSymbol":"CCT6P3","entrezGeneId":643180},{"hugoGeneSymbol":"CCT6P4","entrezGeneId":100130481},{"hugoGeneSymbol":"CCT6P5","entrezGeneId":100463286},{"hugoGeneSymbol":"CCT7","entrezGeneId":10574},{"hugoGeneSymbol":"CCT7P1","entrezGeneId":442267},{"hugoGeneSymbol":"CCT7P2","entrezGeneId":100288772},{"hugoGeneSymbol":"CCT8","entrezGeneId":10694},{"hugoGeneSymbol":"CCT8L1P","entrezGeneId":155100},{"hugoGeneSymbol":"CCT8L2","entrezGeneId":150160},{"hugoGeneSymbol":"CCT8P1","entrezGeneId":644131},{"hugoGeneSymbol":"CCV","entrezGeneId":7792},{"hugoGeneSymbol":"CCZ1","entrezGeneId":51622},{"hugoGeneSymbol":"CCZ1B","entrezGeneId":221960},{"hugoGeneSymbol":"CCZ1P","entrezGeneId":110440226},{"hugoGeneSymbol":"CCZ1P-OR7E38P","entrezGeneId":389538},{"hugoGeneSymbol":"CD101","entrezGeneId":9398},{"hugoGeneSymbol":"CD109","entrezGeneId":135228},{"hugoGeneSymbol":"CD14","entrezGeneId":929},{"hugoGeneSymbol":"CD151","entrezGeneId":977},{"hugoGeneSymbol":"CD160","entrezGeneId":11126},{"hugoGeneSymbol":"CD163","entrezGeneId":9332},{"hugoGeneSymbol":"CD163L1","entrezGeneId":283316},{"hugoGeneSymbol":"CD164","entrezGeneId":8763},{"hugoGeneSymbol":"CD164L2","entrezGeneId":388611},{"hugoGeneSymbol":"CD177","entrezGeneId":57126},{"hugoGeneSymbol":"CD177P1","entrezGeneId":653579},{"hugoGeneSymbol":"CD180","entrezGeneId":4064},{"hugoGeneSymbol":"CD19","entrezGeneId":930},{"hugoGeneSymbol":"CD1A","entrezGeneId":909},{"hugoGeneSymbol":"CD1B","entrezGeneId":910},{"hugoGeneSymbol":"CD1C","entrezGeneId":911},{"hugoGeneSymbol":"CD1D","entrezGeneId":912},{"hugoGeneSymbol":"CD1E","entrezGeneId":913},{"hugoGeneSymbol":"CD2","entrezGeneId":914},{"hugoGeneSymbol":"CD2-LCR","entrezGeneId":107126361},{"hugoGeneSymbol":"CD200","entrezGeneId":4345},{"hugoGeneSymbol":"CD200R1","entrezGeneId":131450},{"hugoGeneSymbol":"CD200R1L","entrezGeneId":344807},{"hugoGeneSymbol":"CD207","entrezGeneId":50489},{"hugoGeneSymbol":"CD209","entrezGeneId":30835},{"hugoGeneSymbol":"CD22","entrezGeneId":933},{"hugoGeneSymbol":"CD226","entrezGeneId":10666},{"hugoGeneSymbol":"CD24","entrezGeneId":100133941},{"hugoGeneSymbol":"CD244","entrezGeneId":51744},{"hugoGeneSymbol":"CD247","entrezGeneId":919},{"hugoGeneSymbol":"CD248","entrezGeneId":57124},{"hugoGeneSymbol":"CD24P1","entrezGeneId":935},{"hugoGeneSymbol":"CD24P2","entrezGeneId":936},{"hugoGeneSymbol":"CD24P3","entrezGeneId":937},{"hugoGeneSymbol":"CD24P4","entrezGeneId":938},{"hugoGeneSymbol":"CD27","entrezGeneId":939},{"hugoGeneSymbol":"CD27-AS1","entrezGeneId":678655},{"hugoGeneSymbol":"CD274","entrezGeneId":29126},{"hugoGeneSymbol":"CD276","entrezGeneId":80381},{"hugoGeneSymbol":"CD28","entrezGeneId":940},{"hugoGeneSymbol":"CD2AP","entrezGeneId":23607},{"hugoGeneSymbol":"CD2BP2","entrezGeneId":10421},{"hugoGeneSymbol":"CD300A","entrezGeneId":11314},{"hugoGeneSymbol":"CD300C","entrezGeneId":10871},{"hugoGeneSymbol":"CD300E","entrezGeneId":342510},{"hugoGeneSymbol":"CD300H","entrezGeneId":100130520},{"hugoGeneSymbol":"CD300LB","entrezGeneId":124599},{"hugoGeneSymbol":"CD300LD","entrezGeneId":100131439},{"hugoGeneSymbol":"CD300LF","entrezGeneId":146722},{"hugoGeneSymbol":"CD300LG","entrezGeneId":146894},{"hugoGeneSymbol":"CD302","entrezGeneId":9936},{"hugoGeneSymbol":"CD320","entrezGeneId":51293},{"hugoGeneSymbol":"CD33","entrezGeneId":945},{"hugoGeneSymbol":"CD34","entrezGeneId":947},{"hugoGeneSymbol":"CD36","entrezGeneId":948},{"hugoGeneSymbol":"CD37","entrezGeneId":951},{"hugoGeneSymbol":"CD38","entrezGeneId":952},{"hugoGeneSymbol":"CD3D","entrezGeneId":915},{"hugoGeneSymbol":"CD3E","entrezGeneId":916},{"hugoGeneSymbol":"CD3EAP","entrezGeneId":10849},{"hugoGeneSymbol":"CD3G","entrezGeneId":917},{"hugoGeneSymbol":"CD4","entrezGeneId":920},{"hugoGeneSymbol":"CD40","entrezGeneId":958},{"hugoGeneSymbol":"CD40LG","entrezGeneId":959},{"hugoGeneSymbol":"CD44","entrezGeneId":960},{"hugoGeneSymbol":"CD44-AS1","entrezGeneId":109729172},{"hugoGeneSymbol":"CD46","entrezGeneId":4179},{"hugoGeneSymbol":"CD46P1","entrezGeneId":4182},{"hugoGeneSymbol":"CD47","entrezGeneId":961},{"hugoGeneSymbol":"CD48","entrezGeneId":962},{"hugoGeneSymbol":"CD5","entrezGeneId":921},{"hugoGeneSymbol":"CD52","entrezGeneId":1043},{"hugoGeneSymbol":"CD53","entrezGeneId":963},{"hugoGeneSymbol":"CD55","entrezGeneId":1604},{"hugoGeneSymbol":"CD58","entrezGeneId":965},{"hugoGeneSymbol":"CD59","entrezGeneId":966},{"hugoGeneSymbol":"CD5L","entrezGeneId":922},{"hugoGeneSymbol":"CD6","entrezGeneId":923},{"hugoGeneSymbol":"CD63","entrezGeneId":967},{"hugoGeneSymbol":"CD68","entrezGeneId":968},{"hugoGeneSymbol":"CD69","entrezGeneId":969},{"hugoGeneSymbol":"CD7","entrezGeneId":924},{"hugoGeneSymbol":"CD70","entrezGeneId":970},{"hugoGeneSymbol":"CD72","entrezGeneId":971},{"hugoGeneSymbol":"CD74","entrezGeneId":972},{"hugoGeneSymbol":"CD79A","entrezGeneId":973},{"hugoGeneSymbol":"CD79B","entrezGeneId":974},{"hugoGeneSymbol":"CD80","entrezGeneId":941},{"hugoGeneSymbol":"CD81","entrezGeneId":975},{"hugoGeneSymbol":"CD81-AS1","entrezGeneId":101927682},{"hugoGeneSymbol":"CD82","entrezGeneId":3732},{"hugoGeneSymbol":"CD83","entrezGeneId":9308},{"hugoGeneSymbol":"CD83P1","entrezGeneId":100128240},{"hugoGeneSymbol":"CD84","entrezGeneId":8832},{"hugoGeneSymbol":"CD86","entrezGeneId":942},{"hugoGeneSymbol":"CD8A","entrezGeneId":925},{"hugoGeneSymbol":"CD8B","entrezGeneId":926},{"hugoGeneSymbol":"CD8B2","entrezGeneId":927},{"hugoGeneSymbol":"CD9","entrezGeneId":928},{"hugoGeneSymbol":"CD93","entrezGeneId":22918},{"hugoGeneSymbol":"CD96","entrezGeneId":10225},{"hugoGeneSymbol":"CD99","entrezGeneId":4267},{"hugoGeneSymbol":"CD99L2","entrezGeneId":83692},{"hugoGeneSymbol":"CD99P1","entrezGeneId":401577},{"hugoGeneSymbol":"CDA","entrezGeneId":978},{"hugoGeneSymbol":"CDADC1","entrezGeneId":81602},{"hugoGeneSymbol":"CDAGS","entrezGeneId":574043},{"hugoGeneSymbol":"CDAN1","entrezGeneId":146059},{"hugoGeneSymbol":"CDAN3","entrezGeneId":981},{"hugoGeneSymbol":"CDB2","entrezGeneId":982},{"hugoGeneSymbol":"CDC123","entrezGeneId":8872},{"hugoGeneSymbol":"CDC14A","entrezGeneId":8556},{"hugoGeneSymbol":"CDC14B","entrezGeneId":8555},{"hugoGeneSymbol":"CDC14BL","entrezGeneId":100101112},{"hugoGeneSymbol":"CDC14C","entrezGeneId":168448},{"hugoGeneSymbol":"CDC16","entrezGeneId":8881},{"hugoGeneSymbol":"CDC20","entrezGeneId":991},{"hugoGeneSymbol":"CDC20B","entrezGeneId":166979},{"hugoGeneSymbol":"CDC20P1","entrezGeneId":157956},{"hugoGeneSymbol":"CDC23","entrezGeneId":8697},{"hugoGeneSymbol":"CDC25A","entrezGeneId":993},{"hugoGeneSymbol":"CDC25B","entrezGeneId":994},{"hugoGeneSymbol":"CDC25C","entrezGeneId":995},{"hugoGeneSymbol":"CDC26","entrezGeneId":246184},{"hugoGeneSymbol":"CDC26P1","entrezGeneId":729948},{"hugoGeneSymbol":"CDC27","entrezGeneId":996},{"hugoGeneSymbol":"CDC27P1","entrezGeneId":647696},{"hugoGeneSymbol":"CDC27P10","entrezGeneId":102723584},{"hugoGeneSymbol":"CDC27P11","entrezGeneId":102723603},{"hugoGeneSymbol":"CDC27P2","entrezGeneId":100130277},{"hugoGeneSymbol":"CDC27P3","entrezGeneId":102723416},{"hugoGeneSymbol":"CDC27P4","entrezGeneId":102723498},{"hugoGeneSymbol":"CDC27P5","entrezGeneId":647654},{"hugoGeneSymbol":"CDC27P6","entrezGeneId":649620},{"hugoGeneSymbol":"CDC27P7","entrezGeneId":102723711},{"hugoGeneSymbol":"CDC27P8","entrezGeneId":100288806},{"hugoGeneSymbol":"CDC27P9","entrezGeneId":102723570},{"hugoGeneSymbol":"CDC34","entrezGeneId":997},{"hugoGeneSymbol":"CDC37","entrezGeneId":11140},{"hugoGeneSymbol":"CDC37L1","entrezGeneId":55664},{"hugoGeneSymbol":"CDC37L1-DT","entrezGeneId":101929351},{"hugoGeneSymbol":"CDC37P1","entrezGeneId":390688},{"hugoGeneSymbol":"CDC37P2","entrezGeneId":647015},{"hugoGeneSymbol":"CDC40","entrezGeneId":51362},{"hugoGeneSymbol":"CDC42","entrezGeneId":998},{"hugoGeneSymbol":"CDC42-IT1","entrezGeneId":100874292},{"hugoGeneSymbol":"CDC42BPA","entrezGeneId":8476},{"hugoGeneSymbol":"CDC42BPB","entrezGeneId":9578},{"hugoGeneSymbol":"CDC42BPG","entrezGeneId":55561},{"hugoGeneSymbol":"CDC42EP1","entrezGeneId":11135},{"hugoGeneSymbol":"CDC42EP2","entrezGeneId":10435},{"hugoGeneSymbol":"CDC42EP3","entrezGeneId":10602},{"hugoGeneSymbol":"CDC42EP3P1","entrezGeneId":100128845},{"hugoGeneSymbol":"CDC42EP4","entrezGeneId":23580},{"hugoGeneSymbol":"CDC42EP5","entrezGeneId":148170},{"hugoGeneSymbol":"CDC42P1","entrezGeneId":170503},{"hugoGeneSymbol":"CDC42P2","entrezGeneId":643336},{"hugoGeneSymbol":"CDC42P3","entrezGeneId":100128627},{"hugoGeneSymbol":"CDC42P4","entrezGeneId":100131440},{"hugoGeneSymbol":"CDC42P5","entrezGeneId":100507354},{"hugoGeneSymbol":"CDC42P6","entrezGeneId":643751},{"hugoGeneSymbol":"CDC42SE1","entrezGeneId":56882},{"hugoGeneSymbol":"CDC42SE2","entrezGeneId":56990},{"hugoGeneSymbol":"CDC45","entrezGeneId":8318},{"hugoGeneSymbol":"CDC5L","entrezGeneId":988},{"hugoGeneSymbol":"CDC6","entrezGeneId":990},{"hugoGeneSymbol":"CDC7","entrezGeneId":8317},{"hugoGeneSymbol":"CDC73","entrezGeneId":79577},{"hugoGeneSymbol":"CDCA2","entrezGeneId":157313},{"hugoGeneSymbol":"CDCA3","entrezGeneId":83461},{"hugoGeneSymbol":"CDCA4","entrezGeneId":55038},{"hugoGeneSymbol":"CDCA4P1","entrezGeneId":100420502},{"hugoGeneSymbol":"CDCA4P2","entrezGeneId":100129348},{"hugoGeneSymbol":"CDCA4P3","entrezGeneId":100420558},{"hugoGeneSymbol":"CDCA4P4","entrezGeneId":100188945},{"hugoGeneSymbol":"CDCA5","entrezGeneId":113130},{"hugoGeneSymbol":"CDCA7","entrezGeneId":83879},{"hugoGeneSymbol":"CDCA7L","entrezGeneId":55536},{"hugoGeneSymbol":"CDCA8","entrezGeneId":55143},{"hugoGeneSymbol":"CDCP1","entrezGeneId":64866},{"hugoGeneSymbol":"CDCP2","entrezGeneId":200008},{"hugoGeneSymbol":"CDH1","entrezGeneId":999},{"hugoGeneSymbol":"CDH10","entrezGeneId":1008},{"hugoGeneSymbol":"CDH11","entrezGeneId":1009},{"hugoGeneSymbol":"CDH12","entrezGeneId":1010},{"hugoGeneSymbol":"CDH12P1","entrezGeneId":100093625},{"hugoGeneSymbol":"CDH12P2","entrezGeneId":1011},{"hugoGeneSymbol":"CDH12P3","entrezGeneId":100093624},{"hugoGeneSymbol":"CDH12P4","entrezGeneId":100093626},{"hugoGeneSymbol":"CDH13","entrezGeneId":1012},{"hugoGeneSymbol":"CDH15","entrezGeneId":1013},{"hugoGeneSymbol":"CDH16","entrezGeneId":1014},{"hugoGeneSymbol":"CDH17","entrezGeneId":1015},{"hugoGeneSymbol":"CDH18","entrezGeneId":1016},{"hugoGeneSymbol":"CDH18-AS1","entrezGeneId":102725105},{"hugoGeneSymbol":"CDH19","entrezGeneId":28513},{"hugoGeneSymbol":"CDH2","entrezGeneId":1000},{"hugoGeneSymbol":"CDH20","entrezGeneId":28316},{"hugoGeneSymbol":"CDH22","entrezGeneId":64405},{"hugoGeneSymbol":"CDH23","entrezGeneId":64072},{"hugoGeneSymbol":"CDH23-AS1","entrezGeneId":102723377},{"hugoGeneSymbol":"CDH24","entrezGeneId":64403},{"hugoGeneSymbol":"CDH26","entrezGeneId":60437},{"hugoGeneSymbol":"CDH3","entrezGeneId":1001},{"hugoGeneSymbol":"CDH4","entrezGeneId":1002},{"hugoGeneSymbol":"CDH5","entrezGeneId":1003},{"hugoGeneSymbol":"CDH6","entrezGeneId":1004},{"hugoGeneSymbol":"CDH7","entrezGeneId":1005},{"hugoGeneSymbol":"CDH8","entrezGeneId":1006},{"hugoGeneSymbol":"CDH9","entrezGeneId":1007},{"hugoGeneSymbol":"CDHR1","entrezGeneId":92211},{"hugoGeneSymbol":"CDHR2","entrezGeneId":54825},{"hugoGeneSymbol":"CDHR3","entrezGeneId":222256},{"hugoGeneSymbol":"CDHR4","entrezGeneId":389118},{"hugoGeneSymbol":"CDHR5","entrezGeneId":53841},{"hugoGeneSymbol":"CDIP1","entrezGeneId":29965},{"hugoGeneSymbol":"CDIPT","entrezGeneId":10423},{"hugoGeneSymbol":"CDIPTOSP","entrezGeneId":440356},{"hugoGeneSymbol":"CDK1","entrezGeneId":983},{"hugoGeneSymbol":"CDK10","entrezGeneId":8558},{"hugoGeneSymbol":"CDK11A","entrezGeneId":728642},{"hugoGeneSymbol":"CDK11B","entrezGeneId":984},{"hugoGeneSymbol":"CDK12","entrezGeneId":51755},{"hugoGeneSymbol":"CDK13","entrezGeneId":8621},{"hugoGeneSymbol":"CDK14","entrezGeneId":5218},{"hugoGeneSymbol":"CDK15","entrezGeneId":65061},{"hugoGeneSymbol":"CDK16","entrezGeneId":5127},{"hugoGeneSymbol":"CDK17","entrezGeneId":5128},{"hugoGeneSymbol":"CDK18","entrezGeneId":5129},{"hugoGeneSymbol":"CDK19","entrezGeneId":23097},{"hugoGeneSymbol":"CDK2","entrezGeneId":1017},{"hugoGeneSymbol":"CDK20","entrezGeneId":23552},{"hugoGeneSymbol":"CDK2AP1","entrezGeneId":8099},{"hugoGeneSymbol":"CDK2AP2","entrezGeneId":10263},{"hugoGeneSymbol":"CDK2AP2P1","entrezGeneId":100289027},{"hugoGeneSymbol":"CDK2AP2P2","entrezGeneId":107133486},{"hugoGeneSymbol":"CDK2AP2P3","entrezGeneId":401525},{"hugoGeneSymbol":"CDK3","entrezGeneId":1018},{"hugoGeneSymbol":"CDK4","entrezGeneId":1019},{"hugoGeneSymbol":"CDK4P1","entrezGeneId":359941},{"hugoGeneSymbol":"CDK5","entrezGeneId":1020},{"hugoGeneSymbol":"CDK5P1","entrezGeneId":392265},{"hugoGeneSymbol":"CDK5R1","entrezGeneId":8851},{"hugoGeneSymbol":"CDK5R2","entrezGeneId":8941},{"hugoGeneSymbol":"CDK5RAP1","entrezGeneId":51654},{"hugoGeneSymbol":"CDK5RAP2","entrezGeneId":55755},{"hugoGeneSymbol":"CDK5RAP3","entrezGeneId":80279},{"hugoGeneSymbol":"CDK6","entrezGeneId":1021},{"hugoGeneSymbol":"CDK7","entrezGeneId":1022},{"hugoGeneSymbol":"CDK7P1","entrezGeneId":220786},{"hugoGeneSymbol":"CDK8","entrezGeneId":1024},{"hugoGeneSymbol":"CDK8P1","entrezGeneId":100419916},{"hugoGeneSymbol":"CDK8P2","entrezGeneId":100287419},{"hugoGeneSymbol":"CDK9","entrezGeneId":1025},{"hugoGeneSymbol":"CDKAL1","entrezGeneId":54901},{"hugoGeneSymbol":"CDKL1","entrezGeneId":8814},{"hugoGeneSymbol":"CDKL2","entrezGeneId":8999},{"hugoGeneSymbol":"CDKL3","entrezGeneId":51265},{"hugoGeneSymbol":"CDKL4","entrezGeneId":344387},{"hugoGeneSymbol":"CDKL5","entrezGeneId":6792},{"hugoGeneSymbol":"CDKN1A","entrezGeneId":1026},{"hugoGeneSymbol":"CDKN1A-AS1","entrezGeneId":100861512},{"hugoGeneSymbol":"CDKN1B","entrezGeneId":1027},{"hugoGeneSymbol":"CDKN1C","entrezGeneId":1028},{"hugoGeneSymbol":"CDKN2A","entrezGeneId":1029},{"hugoGeneSymbol":"CDKN2A-DT","entrezGeneId":51198},{"hugoGeneSymbol":"CDKN2AIP","entrezGeneId":55602},{"hugoGeneSymbol":"CDKN2AIPNL","entrezGeneId":91368},{"hugoGeneSymbol":"CDKN2AIPNLP1","entrezGeneId":391169},{"hugoGeneSymbol":"CDKN2AIPNLP2","entrezGeneId":100128579},{"hugoGeneSymbol":"CDKN2AIPNLP3","entrezGeneId":100874397},{"hugoGeneSymbol":"CDKN2B","entrezGeneId":1030},{"hugoGeneSymbol":"CDKN2B-AS1","entrezGeneId":100048912},{"hugoGeneSymbol":"CDKN2C","entrezGeneId":1031},{"hugoGeneSymbol":"CDKN2D","entrezGeneId":1032},{"hugoGeneSymbol":"CDKN3","entrezGeneId":1033},{"hugoGeneSymbol":"CDL2","entrezGeneId":1023},{"hugoGeneSymbol":"CDNF","entrezGeneId":441549},{"hugoGeneSymbol":"CDO1","entrezGeneId":1036},{"hugoGeneSymbol":"CDON","entrezGeneId":50937},{"hugoGeneSymbol":"CDPF1","entrezGeneId":150383},{"hugoGeneSymbol":"CDR1","entrezGeneId":1038},{"hugoGeneSymbol":"CDR1-AS","entrezGeneId":103611090},{"hugoGeneSymbol":"CDR2","entrezGeneId":1039},{"hugoGeneSymbol":"CDR2L","entrezGeneId":30850},{"hugoGeneSymbol":"CDR3","entrezGeneId":8163},{"hugoGeneSymbol":"CDRT1","entrezGeneId":374286},{"hugoGeneSymbol":"CDRT10","entrezGeneId":94153},{"hugoGeneSymbol":"CDRT11","entrezGeneId":94154},{"hugoGeneSymbol":"CDRT12","entrezGeneId":94155},{"hugoGeneSymbol":"CDRT13","entrezGeneId":94156},{"hugoGeneSymbol":"CDRT15","entrezGeneId":146822},{"hugoGeneSymbol":"CDRT15L2","entrezGeneId":256223},{"hugoGeneSymbol":"CDRT15P1","entrezGeneId":94158},{"hugoGeneSymbol":"CDRT15P2","entrezGeneId":644694},{"hugoGeneSymbol":"CDRT2","entrezGeneId":94144},{"hugoGeneSymbol":"CDRT3","entrezGeneId":94145},{"hugoGeneSymbol":"CDRT4","entrezGeneId":284040},{"hugoGeneSymbol":"CDRT5","entrezGeneId":94148},{"hugoGeneSymbol":"CDRT7","entrezGeneId":94150},{"hugoGeneSymbol":"CDRT8","entrezGeneId":94151},{"hugoGeneSymbol":"CDS1","entrezGeneId":1040},{"hugoGeneSymbol":"CDS2","entrezGeneId":8760},{"hugoGeneSymbol":"CDSN","entrezGeneId":1041},{"hugoGeneSymbol":"CDT1","entrezGeneId":81620},{"hugoGeneSymbol":"CDV3","entrezGeneId":55573},{"hugoGeneSymbol":"CDV3P1","entrezGeneId":100129736},{"hugoGeneSymbol":"CDX1","entrezGeneId":1044},{"hugoGeneSymbol":"CDX2","entrezGeneId":1045},{"hugoGeneSymbol":"CDX4","entrezGeneId":1046},{"hugoGeneSymbol":"CDY1","entrezGeneId":9085},{"hugoGeneSymbol":"CDY10P","entrezGeneId":140043},{"hugoGeneSymbol":"CDY11P","entrezGeneId":378014},{"hugoGeneSymbol":"CDY12P","entrezGeneId":386734},{"hugoGeneSymbol":"CDY13P","entrezGeneId":386735},{"hugoGeneSymbol":"CDY14P","entrezGeneId":386736},{"hugoGeneSymbol":"CDY15P","entrezGeneId":386737},{"hugoGeneSymbol":"CDY16P","entrezGeneId":386738},{"hugoGeneSymbol":"CDY17P","entrezGeneId":386739},{"hugoGeneSymbol":"CDY18P","entrezGeneId":386740},{"hugoGeneSymbol":"CDY19P","entrezGeneId":386741},{"hugoGeneSymbol":"CDY1B","entrezGeneId":253175},{"hugoGeneSymbol":"CDY20P","entrezGeneId":386742},{"hugoGeneSymbol":"CDY21P","entrezGeneId":386743},{"hugoGeneSymbol":"CDY22P","entrezGeneId":386744},{"hugoGeneSymbol":"CDY23P","entrezGeneId":386745},{"hugoGeneSymbol":"CDY2A","entrezGeneId":9426},{"hugoGeneSymbol":"CDY2B","entrezGeneId":203611},{"hugoGeneSymbol":"CDY3P","entrezGeneId":286556},{"hugoGeneSymbol":"CDY4P","entrezGeneId":386729},{"hugoGeneSymbol":"CDY5P","entrezGeneId":378008},{"hugoGeneSymbol":"CDY6P","entrezGeneId":386730},{"hugoGeneSymbol":"CDY7P","entrezGeneId":386731},{"hugoGeneSymbol":"CDY8P","entrezGeneId":386732},{"hugoGeneSymbol":"CDY9P","entrezGeneId":378011},{"hugoGeneSymbol":"CDYL","entrezGeneId":9425},{"hugoGeneSymbol":"CDYL2","entrezGeneId":124359},{"hugoGeneSymbol":"CDYLP1","entrezGeneId":100132260},{"hugoGeneSymbol":"CEACAM1","entrezGeneId":634},{"hugoGeneSymbol":"CEACAM16","entrezGeneId":388551},{"hugoGeneSymbol":"CEACAM18","entrezGeneId":729767},{"hugoGeneSymbol":"CEACAM19","entrezGeneId":56971},{"hugoGeneSymbol":"CEACAM20","entrezGeneId":125931},{"hugoGeneSymbol":"CEACAM21","entrezGeneId":90273},{"hugoGeneSymbol":"CEACAM22P","entrezGeneId":388550},{"hugoGeneSymbol":"CEACAM3","entrezGeneId":1084},{"hugoGeneSymbol":"CEACAM4","entrezGeneId":1089},{"hugoGeneSymbol":"CEACAM5","entrezGeneId":1048},{"hugoGeneSymbol":"CEACAM6","entrezGeneId":4680},{"hugoGeneSymbol":"CEACAM7","entrezGeneId":1087},{"hugoGeneSymbol":"CEACAM8","entrezGeneId":1088},{"hugoGeneSymbol":"CEACAMP1","entrezGeneId":1090},{"hugoGeneSymbol":"CEACAMP10","entrezGeneId":1098},{"hugoGeneSymbol":"CEACAMP11","entrezGeneId":1086},{"hugoGeneSymbol":"CEACAMP2","entrezGeneId":1091},{"hugoGeneSymbol":"CEACAMP3","entrezGeneId":1092},{"hugoGeneSymbol":"CEACAMP4","entrezGeneId":1093},{"hugoGeneSymbol":"CEACAMP5","entrezGeneId":1085},{"hugoGeneSymbol":"CEACAMP6","entrezGeneId":1094},{"hugoGeneSymbol":"CEACAMP7","entrezGeneId":1095},{"hugoGeneSymbol":"CEACAMP8","entrezGeneId":1096},{"hugoGeneSymbol":"CEACAMP9","entrezGeneId":1097},{"hugoGeneSymbol":"CEBPA","entrezGeneId":1050},{"hugoGeneSymbol":"CEBPA-DT","entrezGeneId":80054},{"hugoGeneSymbol":"CEBPB","entrezGeneId":1051},{"hugoGeneSymbol":"CEBPB-AS1","entrezGeneId":101927559},{"hugoGeneSymbol":"CEBPD","entrezGeneId":1052},{"hugoGeneSymbol":"CEBPE","entrezGeneId":1053},{"hugoGeneSymbol":"CEBPG","entrezGeneId":1054},{"hugoGeneSymbol":"CEBPZ","entrezGeneId":10153},{"hugoGeneSymbol":"CEBPZOS","entrezGeneId":100505876},{"hugoGeneSymbol":"CECR","entrezGeneId":1055},{"hugoGeneSymbol":"CECR2","entrezGeneId":27443},{"hugoGeneSymbol":"CECR3","entrezGeneId":27442},{"hugoGeneSymbol":"CECR7","entrezGeneId":100130418},{"hugoGeneSymbol":"CECR9","entrezGeneId":30847},{"hugoGeneSymbol":"CEL","entrezGeneId":1056},{"hugoGeneSymbol":"CELA1","entrezGeneId":1990},{"hugoGeneSymbol":"CELA2A","entrezGeneId":63036},{"hugoGeneSymbol":"CELA2B","entrezGeneId":51032},{"hugoGeneSymbol":"CELA3A","entrezGeneId":10136},{"hugoGeneSymbol":"CELA3B","entrezGeneId":23436},{"hugoGeneSymbol":"CELF1","entrezGeneId":10658},{"hugoGeneSymbol":"CELF2","entrezGeneId":10659},{"hugoGeneSymbol":"CELF2-AS1","entrezGeneId":414196},{"hugoGeneSymbol":"CELF2-AS2","entrezGeneId":439950},{"hugoGeneSymbol":"CELF3","entrezGeneId":11189},{"hugoGeneSymbol":"CELF4","entrezGeneId":56853},{"hugoGeneSymbol":"CELF5","entrezGeneId":60680},{"hugoGeneSymbol":"CELF6","entrezGeneId":60677},{"hugoGeneSymbol":"CELIAC10","entrezGeneId":100188872},{"hugoGeneSymbol":"CELIAC11","entrezGeneId":100188873},{"hugoGeneSymbol":"CELIAC12","entrezGeneId":100188874},{"hugoGeneSymbol":"CELIAC13","entrezGeneId":100188875},{"hugoGeneSymbol":"CELIAC2","entrezGeneId":317782},{"hugoGeneSymbol":"CELIAC5","entrezGeneId":338332},{"hugoGeneSymbol":"CELIAC6","entrezGeneId":100188846},{"hugoGeneSymbol":"CELIAC7","entrezGeneId":100301522},{"hugoGeneSymbol":"CELIAC8","entrezGeneId":100188870},{"hugoGeneSymbol":"CELIAC9","entrezGeneId":100188871},{"hugoGeneSymbol":"CELP","entrezGeneId":1057},{"hugoGeneSymbol":"CELSR1","entrezGeneId":9620},{"hugoGeneSymbol":"CELSR2","entrezGeneId":1952},{"hugoGeneSymbol":"CELSR3","entrezGeneId":1951},{"hugoGeneSymbol":"CEMIP","entrezGeneId":57214},{"hugoGeneSymbol":"CEMIP2","entrezGeneId":23670},{"hugoGeneSymbol":"CEMP1","entrezGeneId":752014},{"hugoGeneSymbol":"CEND1","entrezGeneId":51286},{"hugoGeneSymbol":"CEND1P1","entrezGeneId":122631},{"hugoGeneSymbol":"CEND1P2","entrezGeneId":724034},{"hugoGeneSymbol":"CENPA","entrezGeneId":1058},{"hugoGeneSymbol":"CENPB","entrezGeneId":1059},{"hugoGeneSymbol":"CENPBD1","entrezGeneId":92806},{"hugoGeneSymbol":"CENPBD1P1","entrezGeneId":65996},{"hugoGeneSymbol":"CENPC","entrezGeneId":1060},{"hugoGeneSymbol":"CENPCP1","entrezGeneId":1061},{"hugoGeneSymbol":"CENPE","entrezGeneId":1062},{"hugoGeneSymbol":"CENPF","entrezGeneId":1063},{"hugoGeneSymbol":"CENPH","entrezGeneId":64946},{"hugoGeneSymbol":"CENPI","entrezGeneId":2491},{"hugoGeneSymbol":"CENPIP1","entrezGeneId":100419337},{"hugoGeneSymbol":"CENPJ","entrezGeneId":55835},{"hugoGeneSymbol":"CENPK","entrezGeneId":64105},{"hugoGeneSymbol":"CENPL","entrezGeneId":91687},{"hugoGeneSymbol":"CENPM","entrezGeneId":79019},{"hugoGeneSymbol":"CENPN","entrezGeneId":55839},{"hugoGeneSymbol":"CENPO","entrezGeneId":79172},{"hugoGeneSymbol":"CENPP","entrezGeneId":401541},{"hugoGeneSymbol":"CENPQ","entrezGeneId":55166},{"hugoGeneSymbol":"CENPS","entrezGeneId":378708},{"hugoGeneSymbol":"CENPS-CORT","entrezGeneId":100526739},{"hugoGeneSymbol":"CENPT","entrezGeneId":80152},{"hugoGeneSymbol":"CENPU","entrezGeneId":79682},{"hugoGeneSymbol":"CENPUP1","entrezGeneId":100130384},{"hugoGeneSymbol":"CENPUP2","entrezGeneId":100419930},{"hugoGeneSymbol":"CENPV","entrezGeneId":201161},{"hugoGeneSymbol":"CENPVL1","entrezGeneId":389857},{"hugoGeneSymbol":"CENPVL2","entrezGeneId":441495},{"hugoGeneSymbol":"CENPVL3","entrezGeneId":347549},{"hugoGeneSymbol":"CENPW","entrezGeneId":387103},{"hugoGeneSymbol":"CENPX","entrezGeneId":201254},{"hugoGeneSymbol":"CEP104","entrezGeneId":9731},{"hugoGeneSymbol":"CEP112","entrezGeneId":201134},{"hugoGeneSymbol":"CEP120","entrezGeneId":153241},{"hugoGeneSymbol":"CEP126","entrezGeneId":57562},{"hugoGeneSymbol":"CEP128","entrezGeneId":145508},{"hugoGeneSymbol":"CEP131","entrezGeneId":22994},{"hugoGeneSymbol":"CEP135","entrezGeneId":9662},{"hugoGeneSymbol":"CEP152","entrezGeneId":22995},{"hugoGeneSymbol":"CEP162","entrezGeneId":22832},{"hugoGeneSymbol":"CEP164","entrezGeneId":22897},{"hugoGeneSymbol":"CEP164P1","entrezGeneId":100289237},{"hugoGeneSymbol":"CEP170","entrezGeneId":9859},{"hugoGeneSymbol":"CEP170B","entrezGeneId":283638},{"hugoGeneSymbol":"CEP170P1","entrezGeneId":645455},{"hugoGeneSymbol":"CEP19","entrezGeneId":84984},{"hugoGeneSymbol":"CEP192","entrezGeneId":55125},{"hugoGeneSymbol":"CEP250","entrezGeneId":11190},{"hugoGeneSymbol":"CEP290","entrezGeneId":80184},{"hugoGeneSymbol":"CEP295","entrezGeneId":85459},{"hugoGeneSymbol":"CEP295NL","entrezGeneId":100653515},{"hugoGeneSymbol":"CEP350","entrezGeneId":9857},{"hugoGeneSymbol":"CEP41","entrezGeneId":95681},{"hugoGeneSymbol":"CEP44","entrezGeneId":80817},{"hugoGeneSymbol":"CEP55","entrezGeneId":55165},{"hugoGeneSymbol":"CEP57","entrezGeneId":9702},{"hugoGeneSymbol":"CEP57L1","entrezGeneId":285753},{"hugoGeneSymbol":"CEP57L1P1","entrezGeneId":221017},{"hugoGeneSymbol":"CEP63","entrezGeneId":80254},{"hugoGeneSymbol":"CEP68","entrezGeneId":23177},{"hugoGeneSymbol":"CEP70","entrezGeneId":80321},{"hugoGeneSymbol":"CEP72","entrezGeneId":55722},{"hugoGeneSymbol":"CEP76","entrezGeneId":79959},{"hugoGeneSymbol":"CEP78","entrezGeneId":84131},{"hugoGeneSymbol":"CEP83","entrezGeneId":51134},{"hugoGeneSymbol":"CEP83-DT","entrezGeneId":144486},{"hugoGeneSymbol":"CEP85","entrezGeneId":64793},{"hugoGeneSymbol":"CEP85L","entrezGeneId":387119},{"hugoGeneSymbol":"CEP89","entrezGeneId":84902},{"hugoGeneSymbol":"CEP95","entrezGeneId":90799},{"hugoGeneSymbol":"CEP97","entrezGeneId":79598},{"hugoGeneSymbol":"CEPT1","entrezGeneId":10390},{"hugoGeneSymbol":"CER1","entrezGeneId":9350},{"hugoGeneSymbol":"CERCAM","entrezGeneId":51148},{"hugoGeneSymbol":"CERK","entrezGeneId":64781},{"hugoGeneSymbol":"CERKL","entrezGeneId":375298},{"hugoGeneSymbol":"CERNA1","entrezGeneId":100129973},{"hugoGeneSymbol":"CERNA2","entrezGeneId":642934},{"hugoGeneSymbol":"CERNA3","entrezGeneId":105375847},{"hugoGeneSymbol":"CERS1","entrezGeneId":10715},{"hugoGeneSymbol":"CERS2","entrezGeneId":29956},{"hugoGeneSymbol":"CERS3","entrezGeneId":204219},{"hugoGeneSymbol":"CERS3-AS1","entrezGeneId":102723320},{"hugoGeneSymbol":"CERS4","entrezGeneId":79603},{"hugoGeneSymbol":"CERS5","entrezGeneId":91012},{"hugoGeneSymbol":"CERS6","entrezGeneId":253782},{"hugoGeneSymbol":"CERS6-AS1","entrezGeneId":100861402},{"hugoGeneSymbol":"CES1","entrezGeneId":1066},{"hugoGeneSymbol":"CES1P1","entrezGeneId":51716},{"hugoGeneSymbol":"CES1P2","entrezGeneId":390732},{"hugoGeneSymbol":"CES2","entrezGeneId":8824},{"hugoGeneSymbol":"CES3","entrezGeneId":23491},{"hugoGeneSymbol":"CES4A","entrezGeneId":283848},{"hugoGeneSymbol":"CES5A","entrezGeneId":221223},{"hugoGeneSymbol":"CES5AP1","entrezGeneId":649264},{"hugoGeneSymbol":"CETN1","entrezGeneId":1068},{"hugoGeneSymbol":"CETN2","entrezGeneId":1069},{"hugoGeneSymbol":"CETN3","entrezGeneId":1070},{"hugoGeneSymbol":"CETN4P","entrezGeneId":729338},{"hugoGeneSymbol":"CETP","entrezGeneId":1071},{"hugoGeneSymbol":"CFAP100","entrezGeneId":348807},{"hugoGeneSymbol":"CFAP126","entrezGeneId":257177},{"hugoGeneSymbol":"CFAP157","entrezGeneId":286207},{"hugoGeneSymbol":"CFAP161","entrezGeneId":161502},{"hugoGeneSymbol":"CFAP20","entrezGeneId":29105},{"hugoGeneSymbol":"CFAP206","entrezGeneId":154313},{"hugoGeneSymbol":"CFAP221","entrezGeneId":200373},{"hugoGeneSymbol":"CFAP298","entrezGeneId":56683},{"hugoGeneSymbol":"CFAP299","entrezGeneId":255119},{"hugoGeneSymbol":"CFAP300","entrezGeneId":85016},{"hugoGeneSymbol":"CFAP36","entrezGeneId":112942},{"hugoGeneSymbol":"CFAP43","entrezGeneId":80217},{"hugoGeneSymbol":"CFAP44","entrezGeneId":55779},{"hugoGeneSymbol":"CFAP44-AS1","entrezGeneId":100874029},{"hugoGeneSymbol":"CFAP45","entrezGeneId":25790},{"hugoGeneSymbol":"CFAP46","entrezGeneId":54777},{"hugoGeneSymbol":"CFAP47","entrezGeneId":286464},{"hugoGeneSymbol":"CFAP52","entrezGeneId":146845},{"hugoGeneSymbol":"CFAP53","entrezGeneId":220136},{"hugoGeneSymbol":"CFAP54","entrezGeneId":144535},{"hugoGeneSymbol":"CFAP57","entrezGeneId":149465},{"hugoGeneSymbol":"CFAP58","entrezGeneId":159686},{"hugoGeneSymbol":"CFAP58-DT","entrezGeneId":100505869},{"hugoGeneSymbol":"CFAP61","entrezGeneId":26074},{"hugoGeneSymbol":"CFAP65","entrezGeneId":255101},{"hugoGeneSymbol":"CFAP69","entrezGeneId":79846},{"hugoGeneSymbol":"CFAP70","entrezGeneId":118491},{"hugoGeneSymbol":"CFAP73","entrezGeneId":387885},{"hugoGeneSymbol":"CFAP74","entrezGeneId":85452},{"hugoGeneSymbol":"CFAP77","entrezGeneId":389799},{"hugoGeneSymbol":"CFAP97","entrezGeneId":57587},{"hugoGeneSymbol":"CFAP97D1","entrezGeneId":284067},{"hugoGeneSymbol":"CFAP97D2","entrezGeneId":101929355},{"hugoGeneSymbol":"CFAP99","entrezGeneId":402160},{"hugoGeneSymbol":"CFB","entrezGeneId":629},{"hugoGeneSymbol":"CFC1","entrezGeneId":55997},{"hugoGeneSymbol":"CFC1B","entrezGeneId":653275},{"hugoGeneSymbol":"CFD","entrezGeneId":1675},{"hugoGeneSymbol":"CFDP1","entrezGeneId":10428},{"hugoGeneSymbol":"CFH","entrezGeneId":3075},{"hugoGeneSymbol":"CFHR1","entrezGeneId":3078},{"hugoGeneSymbol":"CFHR2","entrezGeneId":3080},{"hugoGeneSymbol":"CFHR3","entrezGeneId":10878},{"hugoGeneSymbol":"CFHR4","entrezGeneId":10877},{"hugoGeneSymbol":"CFHR5","entrezGeneId":81494},{"hugoGeneSymbol":"CFI","entrezGeneId":3426},{"hugoGeneSymbol":"CFL1","entrezGeneId":1072},{"hugoGeneSymbol":"CFL1P1","entrezGeneId":142913},{"hugoGeneSymbol":"CFL1P2","entrezGeneId":391039},{"hugoGeneSymbol":"CFL1P3","entrezGeneId":100131874},{"hugoGeneSymbol":"CFL1P4","entrezGeneId":645980},{"hugoGeneSymbol":"CFL1P5","entrezGeneId":1074},{"hugoGeneSymbol":"CFL1P6","entrezGeneId":390996},{"hugoGeneSymbol":"CFL1P7","entrezGeneId":100505919},{"hugoGeneSymbol":"CFL1P8","entrezGeneId":100873812},{"hugoGeneSymbol":"CFL2","entrezGeneId":1073},{"hugoGeneSymbol":"CFLAR","entrezGeneId":8837},{"hugoGeneSymbol":"CFLAR-AS1","entrezGeneId":65072},{"hugoGeneSymbol":"CFM1","entrezGeneId":10167},{"hugoGeneSymbol":"CFM2","entrezGeneId":23727},{"hugoGeneSymbol":"CFP","entrezGeneId":5199},{"hugoGeneSymbol":"CFSS","entrezGeneId":100188773},{"hugoGeneSymbol":"CFTDX","entrezGeneId":100188765},{"hugoGeneSymbol":"CFTR","entrezGeneId":1080},{"hugoGeneSymbol":"CFTR-AS1","entrezGeneId":111082987},{"hugoGeneSymbol":"CFTRP1","entrezGeneId":140871},{"hugoGeneSymbol":"CFTRP2","entrezGeneId":107080633},{"hugoGeneSymbol":"CFTRP3","entrezGeneId":106481718},{"hugoGeneSymbol":"CGA","entrezGeneId":1081},{"hugoGeneSymbol":"CGAS","entrezGeneId":115004},{"hugoGeneSymbol":"CGB1","entrezGeneId":114335},{"hugoGeneSymbol":"CGB2","entrezGeneId":114336},{"hugoGeneSymbol":"CGB3","entrezGeneId":1082},{"hugoGeneSymbol":"CGB5","entrezGeneId":93659},{"hugoGeneSymbol":"CGB7","entrezGeneId":94027},{"hugoGeneSymbol":"CGB8","entrezGeneId":94115},{"hugoGeneSymbol":"CGF1","entrezGeneId":1083},{"hugoGeneSymbol":"CGGBP1","entrezGeneId":8545},{"hugoGeneSymbol":"CGN","entrezGeneId":57530},{"hugoGeneSymbol":"CGNL1","entrezGeneId":84952},{"hugoGeneSymbol":"CGREF1","entrezGeneId":10669},{"hugoGeneSymbol":"CGRRF1","entrezGeneId":10668},{"hugoGeneSymbol":"CH17-125A10.2","entrezGeneId":101927333},{"hugoGeneSymbol":"CH17-340M24.3","entrezGeneId":158960},{"hugoGeneSymbol":"CH25H","entrezGeneId":9023},{"hugoGeneSymbol":"CH507-145C22.1","entrezGeneId":105379493},{"hugoGeneSymbol":"CH507-42P11.6","entrezGeneId":102724398},{"hugoGeneSymbol":"CH507-9B2.8","entrezGeneId":105372831},{"hugoGeneSymbol":"CHAC1","entrezGeneId":79094},{"hugoGeneSymbol":"CHAC2","entrezGeneId":494143},{"hugoGeneSymbol":"CHAD","entrezGeneId":1101},{"hugoGeneSymbol":"CHADL","entrezGeneId":150356},{"hugoGeneSymbol":"CHAF1A","entrezGeneId":10036},{"hugoGeneSymbol":"CHAF1B","entrezGeneId":8208},{"hugoGeneSymbol":"CHAMP1","entrezGeneId":283489},{"hugoGeneSymbol":"CHAT","entrezGeneId":1103},{"hugoGeneSymbol":"CHCHD1","entrezGeneId":118487},{"hugoGeneSymbol":"CHCHD10","entrezGeneId":400916},{"hugoGeneSymbol":"CHCHD2","entrezGeneId":51142},{"hugoGeneSymbol":"CHCHD2P1","entrezGeneId":100874506},{"hugoGeneSymbol":"CHCHD2P10","entrezGeneId":392221},{"hugoGeneSymbol":"CHCHD2P11","entrezGeneId":101060040},{"hugoGeneSymbol":"CHCHD2P2","entrezGeneId":728324},{"hugoGeneSymbol":"CHCHD2P3","entrezGeneId":100128110},{"hugoGeneSymbol":"CHCHD2P4","entrezGeneId":100874507},{"hugoGeneSymbol":"CHCHD2P5","entrezGeneId":100874508},{"hugoGeneSymbol":"CHCHD2P6","entrezGeneId":645317},{"hugoGeneSymbol":"CHCHD2P7","entrezGeneId":100874509},{"hugoGeneSymbol":"CHCHD2P8","entrezGeneId":646630},{"hugoGeneSymbol":"CHCHD2P9","entrezGeneId":645345},{"hugoGeneSymbol":"CHCHD3","entrezGeneId":54927},{"hugoGeneSymbol":"CHCHD3P1","entrezGeneId":338591},{"hugoGeneSymbol":"CHCHD3P2","entrezGeneId":100422354},{"hugoGeneSymbol":"CHCHD3P3","entrezGeneId":646572},{"hugoGeneSymbol":"CHCHD4","entrezGeneId":131474},{"hugoGeneSymbol":"CHCHD4P1","entrezGeneId":645862},{"hugoGeneSymbol":"CHCHD4P2","entrezGeneId":100128657},{"hugoGeneSymbol":"CHCHD4P3","entrezGeneId":106480792},{"hugoGeneSymbol":"CHCHD4P4","entrezGeneId":728143},{"hugoGeneSymbol":"CHCHD4P5","entrezGeneId":106479039},{"hugoGeneSymbol":"CHCHD5","entrezGeneId":84269},{"hugoGeneSymbol":"CHCHD6","entrezGeneId":84303},{"hugoGeneSymbol":"CHCHD7","entrezGeneId":79145},{"hugoGeneSymbol":"CHD1","entrezGeneId":1105},{"hugoGeneSymbol":"CHD1L","entrezGeneId":9557},{"hugoGeneSymbol":"CHD2","entrezGeneId":1106},{"hugoGeneSymbol":"CHD3","entrezGeneId":1107},{"hugoGeneSymbol":"CHD4","entrezGeneId":1108},{"hugoGeneSymbol":"CHD5","entrezGeneId":26038},{"hugoGeneSymbol":"CHD6","entrezGeneId":84181},{"hugoGeneSymbol":"CHD7","entrezGeneId":55636},{"hugoGeneSymbol":"CHD8","entrezGeneId":57680},{"hugoGeneSymbol":"CHD9","entrezGeneId":80205},{"hugoGeneSymbol":"CHDH","entrezGeneId":55349},{"hugoGeneSymbol":"CHDM","entrezGeneId":121775},{"hugoGeneSymbol":"CHDS1","entrezGeneId":338334},{"hugoGeneSymbol":"CHDS2","entrezGeneId":387584},{"hugoGeneSymbol":"CHDS3","entrezGeneId":387573},{"hugoGeneSymbol":"CHDS4","entrezGeneId":387585},{"hugoGeneSymbol":"CHDS8","entrezGeneId":100188836},{"hugoGeneSymbol":"CHDS9","entrezGeneId":100188877},{"hugoGeneSymbol":"CHDT3","entrezGeneId":101154642},{"hugoGeneSymbol":"CHEK1","entrezGeneId":1111},{"hugoGeneSymbol":"CHEK2","entrezGeneId":11200},{"hugoGeneSymbol":"CHEK2P1","entrezGeneId":100133012},{"hugoGeneSymbol":"CHEK2P2","entrezGeneId":646096},{"hugoGeneSymbol":"CHEK2P3","entrezGeneId":100873791},{"hugoGeneSymbol":"CHEK2P4","entrezGeneId":106479021},{"hugoGeneSymbol":"CHEK2P5","entrezGeneId":106479022},{"hugoGeneSymbol":"CHERP","entrezGeneId":10523},{"hugoGeneSymbol":"CHFR","entrezGeneId":55743},{"hugoGeneSymbol":"CHGA","entrezGeneId":1113},{"hugoGeneSymbol":"CHGB","entrezGeneId":1114},{"hugoGeneSymbol":"CHI3L1","entrezGeneId":1116},{"hugoGeneSymbol":"CHI3L2","entrezGeneId":1117},{"hugoGeneSymbol":"CHIA","entrezGeneId":27159},{"hugoGeneSymbol":"CHIAP1","entrezGeneId":100420342},{"hugoGeneSymbol":"CHIAP2","entrezGeneId":149620},{"hugoGeneSymbol":"CHIAP3","entrezGeneId":100996315},{"hugoGeneSymbol":"CHIC1","entrezGeneId":53344},{"hugoGeneSymbol":"CHIC2","entrezGeneId":26511},{"hugoGeneSymbol":"CHID1","entrezGeneId":66005},{"hugoGeneSymbol":"CHIT1","entrezGeneId":1118},{"hugoGeneSymbol":"CHKA","entrezGeneId":1119},{"hugoGeneSymbol":"CHKB","entrezGeneId":1120},{"hugoGeneSymbol":"CHKB-CPT1B","entrezGeneId":386593},{"hugoGeneSymbol":"CHKB-DT","entrezGeneId":100144603},{"hugoGeneSymbol":"CHL1","entrezGeneId":10752},{"hugoGeneSymbol":"CHL1-AS1","entrezGeneId":101927193},{"hugoGeneSymbol":"CHL1-AS2","entrezGeneId":101927174},{"hugoGeneSymbol":"CHM","entrezGeneId":1121},{"hugoGeneSymbol":"CHML","entrezGeneId":1122},{"hugoGeneSymbol":"CHMP1A","entrezGeneId":5119},{"hugoGeneSymbol":"CHMP1AP1","entrezGeneId":646597},{"hugoGeneSymbol":"CHMP1B","entrezGeneId":57132},{"hugoGeneSymbol":"CHMP1B-AS1","entrezGeneId":109729129},{"hugoGeneSymbol":"CHMP1B2P","entrezGeneId":101060146},{"hugoGeneSymbol":"CHMP2A","entrezGeneId":27243},{"hugoGeneSymbol":"CHMP2B","entrezGeneId":25978},{"hugoGeneSymbol":"CHMP3","entrezGeneId":51652},{"hugoGeneSymbol":"CHMP4A","entrezGeneId":29082},{"hugoGeneSymbol":"CHMP4B","entrezGeneId":128866},{"hugoGeneSymbol":"CHMP4BP1","entrezGeneId":100307126},{"hugoGeneSymbol":"CHMP4C","entrezGeneId":92421},{"hugoGeneSymbol":"CHMP5","entrezGeneId":51510},{"hugoGeneSymbol":"CHMP6","entrezGeneId":79643},{"hugoGeneSymbol":"CHMP7","entrezGeneId":91782},{"hugoGeneSymbol":"CHMRQ","entrezGeneId":780925},{"hugoGeneSymbol":"CHN1","entrezGeneId":1123},{"hugoGeneSymbol":"CHN2","entrezGeneId":1124},{"hugoGeneSymbol":"CHNG3","entrezGeneId":780915},{"hugoGeneSymbol":"CHODL","entrezGeneId":140578},{"hugoGeneSymbol":"CHODL-AS1","entrezGeneId":54075},{"hugoGeneSymbol":"CHORDC1","entrezGeneId":26973},{"hugoGeneSymbol":"CHORDC2P","entrezGeneId":317775},{"hugoGeneSymbol":"CHP1","entrezGeneId":11261},{"hugoGeneSymbol":"CHP2","entrezGeneId":63928},{"hugoGeneSymbol":"CHPF","entrezGeneId":79586},{"hugoGeneSymbol":"CHPF2","entrezGeneId":54480},{"hugoGeneSymbol":"CHPT1","entrezGeneId":56994},{"hugoGeneSymbol":"CHRAC1","entrezGeneId":54108},{"hugoGeneSymbol":"CHRD","entrezGeneId":8646},{"hugoGeneSymbol":"CHRDL1","entrezGeneId":91851},{"hugoGeneSymbol":"CHRDL2","entrezGeneId":25884},{"hugoGeneSymbol":"CHRFAM7A","entrezGeneId":89832},{"hugoGeneSymbol":"CHRFAM7AP1","entrezGeneId":359999},{"hugoGeneSymbol":"CHRFAM7AP2","entrezGeneId":359998},{"hugoGeneSymbol":"CHRM1","entrezGeneId":1128},{"hugoGeneSymbol":"CHRM2","entrezGeneId":1129},{"hugoGeneSymbol":"CHRM3","entrezGeneId":1131},{"hugoGeneSymbol":"CHRM3-AS1","entrezGeneId":100873984},{"hugoGeneSymbol":"CHRM3-AS2","entrezGeneId":100506915},{"hugoGeneSymbol":"CHRM4","entrezGeneId":1132},{"hugoGeneSymbol":"CHRM5","entrezGeneId":1133},{"hugoGeneSymbol":"CHRNA1","entrezGeneId":1134},{"hugoGeneSymbol":"CHRNA10","entrezGeneId":57053},{"hugoGeneSymbol":"CHRNA2","entrezGeneId":1135},{"hugoGeneSymbol":"CHRNA3","entrezGeneId":1136},{"hugoGeneSymbol":"CHRNA4","entrezGeneId":1137},{"hugoGeneSymbol":"CHRNA5","entrezGeneId":1138},{"hugoGeneSymbol":"CHRNA6","entrezGeneId":8973},{"hugoGeneSymbol":"CHRNA7","entrezGeneId":1139},{"hugoGeneSymbol":"CHRNA9","entrezGeneId":55584},{"hugoGeneSymbol":"CHRNB1","entrezGeneId":1140},{"hugoGeneSymbol":"CHRNB2","entrezGeneId":1141},{"hugoGeneSymbol":"CHRNB3","entrezGeneId":1142},{"hugoGeneSymbol":"CHRNB4","entrezGeneId":1143},{"hugoGeneSymbol":"CHRND","entrezGeneId":1144},{"hugoGeneSymbol":"CHRNE","entrezGeneId":1145},{"hugoGeneSymbol":"CHRNG","entrezGeneId":1146},{"hugoGeneSymbol":"CHST1","entrezGeneId":8534},{"hugoGeneSymbol":"CHST10","entrezGeneId":9486},{"hugoGeneSymbol":"CHST11","entrezGeneId":50515},{"hugoGeneSymbol":"CHST12","entrezGeneId":55501},{"hugoGeneSymbol":"CHST13","entrezGeneId":166012},{"hugoGeneSymbol":"CHST14","entrezGeneId":113189},{"hugoGeneSymbol":"CHST15","entrezGeneId":51363},{"hugoGeneSymbol":"CHST2","entrezGeneId":9435},{"hugoGeneSymbol":"CHST3","entrezGeneId":9469},{"hugoGeneSymbol":"CHST4","entrezGeneId":10164},{"hugoGeneSymbol":"CHST5","entrezGeneId":23563},{"hugoGeneSymbol":"CHST6","entrezGeneId":4166},{"hugoGeneSymbol":"CHST7","entrezGeneId":56548},{"hugoGeneSymbol":"CHST8","entrezGeneId":64377},{"hugoGeneSymbol":"CHST9","entrezGeneId":83539},{"hugoGeneSymbol":"CHSY1","entrezGeneId":22856},{"hugoGeneSymbol":"CHSY3","entrezGeneId":337876},{"hugoGeneSymbol":"CHTF18","entrezGeneId":63922},{"hugoGeneSymbol":"CHTF8","entrezGeneId":54921},{"hugoGeneSymbol":"CHTF8P1","entrezGeneId":677883},{"hugoGeneSymbol":"CHTOP","entrezGeneId":26097},{"hugoGeneSymbol":"CHUK","entrezGeneId":1147},{"hugoGeneSymbol":"CHURC1","entrezGeneId":91612},{"hugoGeneSymbol":"CHURC1-FNTB","entrezGeneId":100529261},{"hugoGeneSymbol":"CIAO1","entrezGeneId":9391},{"hugoGeneSymbol":"CIAPIN1","entrezGeneId":57019},{"hugoGeneSymbol":"CIAPIN1P","entrezGeneId":728599},{"hugoGeneSymbol":"CIART","entrezGeneId":148523},{"hugoGeneSymbol":"CIB1","entrezGeneId":10519},{"hugoGeneSymbol":"CIB2","entrezGeneId":10518},{"hugoGeneSymbol":"CIB3","entrezGeneId":117286},{"hugoGeneSymbol":"CIB4","entrezGeneId":130106},{"hugoGeneSymbol":"CIC","entrezGeneId":23152},{"hugoGeneSymbol":"CICP1","entrezGeneId":360017},{"hugoGeneSymbol":"CICP10","entrezGeneId":100462787},{"hugoGeneSymbol":"CICP11","entrezGeneId":100288904},{"hugoGeneSymbol":"CICP12","entrezGeneId":100420224},{"hugoGeneSymbol":"CICP13","entrezGeneId":728615},{"hugoGeneSymbol":"CICP14","entrezGeneId":100130600},{"hugoGeneSymbol":"CICP15","entrezGeneId":100507648},{"hugoGeneSymbol":"CICP16","entrezGeneId":100420203},{"hugoGeneSymbol":"CICP17","entrezGeneId":642663},{"hugoGeneSymbol":"CICP18","entrezGeneId":646070},{"hugoGeneSymbol":"CICP19","entrezGeneId":100506706},{"hugoGeneSymbol":"CICP2","entrezGeneId":360016},{"hugoGeneSymbol":"CICP20","entrezGeneId":100129050},{"hugoGeneSymbol":"CICP21","entrezGeneId":100420263},{"hugoGeneSymbol":"CICP22","entrezGeneId":100288083},{"hugoGeneSymbol":"CICP23","entrezGeneId":100505953},{"hugoGeneSymbol":"CICP24","entrezGeneId":107986730},{"hugoGeneSymbol":"CICP25","entrezGeneId":100289383},{"hugoGeneSymbol":"CICP26","entrezGeneId":648262},{"hugoGeneSymbol":"CICP27","entrezGeneId":100420257},{"hugoGeneSymbol":"CICP28","entrezGeneId":100287136},{"hugoGeneSymbol":"CICP3","entrezGeneId":100132630},{"hugoGeneSymbol":"CICP4","entrezGeneId":100132920},{"hugoGeneSymbol":"CICP5","entrezGeneId":730978},{"hugoGeneSymbol":"CICP6","entrezGeneId":100507251},{"hugoGeneSymbol":"CICP7","entrezGeneId":100288667},{"hugoGeneSymbol":"CICP8","entrezGeneId":442676},{"hugoGeneSymbol":"CICP9","entrezGeneId":100420293},{"hugoGeneSymbol":"CIDEA","entrezGeneId":1149},{"hugoGeneSymbol":"CIDEB","entrezGeneId":27141},{"hugoGeneSymbol":"CIDEC","entrezGeneId":63924},{"hugoGeneSymbol":"CIDECP","entrezGeneId":152302},{"hugoGeneSymbol":"CIHL","entrezGeneId":100381207},{"hugoGeneSymbol":"CIITA","entrezGeneId":4261},{"hugoGeneSymbol":"CILD4","entrezGeneId":408257},{"hugoGeneSymbol":"CILD8","entrezGeneId":100190786},{"hugoGeneSymbol":"CILP","entrezGeneId":8483},{"hugoGeneSymbol":"CILP2","entrezGeneId":148113},{"hugoGeneSymbol":"CIMT","entrezGeneId":404677},{"hugoGeneSymbol":"CINN","entrezGeneId":100188835},{"hugoGeneSymbol":"CINP","entrezGeneId":51550},{"hugoGeneSymbol":"CIP2A","entrezGeneId":57650},{"hugoGeneSymbol":"CIPC","entrezGeneId":85457},{"hugoGeneSymbol":"CIR1","entrezGeneId":9541},{"hugoGeneSymbol":"CIR1P1","entrezGeneId":100131740},{"hugoGeneSymbol":"CIR1P2","entrezGeneId":100131828},{"hugoGeneSymbol":"CIR1P3","entrezGeneId":106480783},{"hugoGeneSymbol":"CIRBP","entrezGeneId":1153},{"hugoGeneSymbol":"CIRBP-AS1","entrezGeneId":148046},{"hugoGeneSymbol":"CISD1","entrezGeneId":55847},{"hugoGeneSymbol":"CISD1P1","entrezGeneId":130500},{"hugoGeneSymbol":"CISD2","entrezGeneId":493856},{"hugoGeneSymbol":"CISD3","entrezGeneId":284106},{"hugoGeneSymbol":"CISH","entrezGeneId":1154},{"hugoGeneSymbol":"CISTR","entrezGeneId":102216268},{"hugoGeneSymbol":"CIT","entrezGeneId":11113},{"hugoGeneSymbol":"CITED1","entrezGeneId":4435},{"hugoGeneSymbol":"CITED2","entrezGeneId":10370},{"hugoGeneSymbol":"CITED4","entrezGeneId":163732},{"hugoGeneSymbol":"CIZ1","entrezGeneId":25792},{"hugoGeneSymbol":"CKAP2","entrezGeneId":26586},{"hugoGeneSymbol":"CKAP2L","entrezGeneId":150468},{"hugoGeneSymbol":"CKAP2P1","entrezGeneId":100420763},{"hugoGeneSymbol":"CKAP4","entrezGeneId":10970},{"hugoGeneSymbol":"CKAP5","entrezGeneId":9793},{"hugoGeneSymbol":"CKB","entrezGeneId":1152},{"hugoGeneSymbol":"CKBE","entrezGeneId":1156},{"hugoGeneSymbol":"CKBP1","entrezGeneId":1157},{"hugoGeneSymbol":"CKLF","entrezGeneId":51192},{"hugoGeneSymbol":"CKLF-CMTM1","entrezGeneId":100529251},{"hugoGeneSymbol":"CKM","entrezGeneId":1158},{"hugoGeneSymbol":"CKMT1A","entrezGeneId":548596},{"hugoGeneSymbol":"CKMT1B","entrezGeneId":1159},{"hugoGeneSymbol":"CKMT2","entrezGeneId":1160},{"hugoGeneSymbol":"CKMT2-AS1","entrezGeneId":100131067},{"hugoGeneSymbol":"CKS1B","entrezGeneId":1163},{"hugoGeneSymbol":"CKS1BP1","entrezGeneId":317780},{"hugoGeneSymbol":"CKS1BP2","entrezGeneId":246714},{"hugoGeneSymbol":"CKS1BP3","entrezGeneId":246715},{"hugoGeneSymbol":"CKS1BP4","entrezGeneId":100499259},{"hugoGeneSymbol":"CKS1BP5","entrezGeneId":100526793},{"hugoGeneSymbol":"CKS1BP6","entrezGeneId":652904},{"hugoGeneSymbol":"CKS1BP7","entrezGeneId":137529},{"hugoGeneSymbol":"CKS2","entrezGeneId":1164},{"hugoGeneSymbol":"CLA3","entrezGeneId":1167},{"hugoGeneSymbol":"CLAM","entrezGeneId":373073},{"hugoGeneSymbol":"CLASP1","entrezGeneId":23332},{"hugoGeneSymbol":"CLASP2","entrezGeneId":23122},{"hugoGeneSymbol":"CLASRP","entrezGeneId":11129},{"hugoGeneSymbol":"CLBA1","entrezGeneId":122616},{"hugoGeneSymbol":"CLC","entrezGeneId":1178},{"hugoGeneSymbol":"CLCA1","entrezGeneId":1179},{"hugoGeneSymbol":"CLCA2","entrezGeneId":9635},{"hugoGeneSymbol":"CLCA3P","entrezGeneId":9629},{"hugoGeneSymbol":"CLCA4","entrezGeneId":22802},{"hugoGeneSymbol":"CLCC1","entrezGeneId":23155},{"hugoGeneSymbol":"CLCF1","entrezGeneId":23529},{"hugoGeneSymbol":"CLCN1","entrezGeneId":1180},{"hugoGeneSymbol":"CLCN2","entrezGeneId":1181},{"hugoGeneSymbol":"CLCN3","entrezGeneId":1182},{"hugoGeneSymbol":"CLCN3P1","entrezGeneId":100419056},{"hugoGeneSymbol":"CLCN4","entrezGeneId":1183},{"hugoGeneSymbol":"CLCN5","entrezGeneId":1184},{"hugoGeneSymbol":"CLCN6","entrezGeneId":1185},{"hugoGeneSymbol":"CLCN7","entrezGeneId":1186},{"hugoGeneSymbol":"CLCNKA","entrezGeneId":1187},{"hugoGeneSymbol":"CLCNKB","entrezGeneId":1188},{"hugoGeneSymbol":"CLCP1","entrezGeneId":266626},{"hugoGeneSymbol":"CLCP2","entrezGeneId":100128145},{"hugoGeneSymbol":"CLDN1","entrezGeneId":9076},{"hugoGeneSymbol":"CLDN10","entrezGeneId":9071},{"hugoGeneSymbol":"CLDN10-AS1","entrezGeneId":100874194},{"hugoGeneSymbol":"CLDN11","entrezGeneId":5010},{"hugoGeneSymbol":"CLDN12","entrezGeneId":9069},{"hugoGeneSymbol":"CLDN14","entrezGeneId":23562},{"hugoGeneSymbol":"CLDN15","entrezGeneId":24146},{"hugoGeneSymbol":"CLDN16","entrezGeneId":10686},{"hugoGeneSymbol":"CLDN17","entrezGeneId":26285},{"hugoGeneSymbol":"CLDN18","entrezGeneId":51208},{"hugoGeneSymbol":"CLDN19","entrezGeneId":149461},{"hugoGeneSymbol":"CLDN2","entrezGeneId":9075},{"hugoGeneSymbol":"CLDN20","entrezGeneId":49861},{"hugoGeneSymbol":"CLDN22","entrezGeneId":53842},{"hugoGeneSymbol":"CLDN23","entrezGeneId":137075},{"hugoGeneSymbol":"CLDN24","entrezGeneId":100132463},{"hugoGeneSymbol":"CLDN25","entrezGeneId":644672},{"hugoGeneSymbol":"CLDN3","entrezGeneId":1365},{"hugoGeneSymbol":"CLDN34","entrezGeneId":100288814},{"hugoGeneSymbol":"CLDN4","entrezGeneId":1364},{"hugoGeneSymbol":"CLDN5","entrezGeneId":7122},{"hugoGeneSymbol":"CLDN6","entrezGeneId":9074},{"hugoGeneSymbol":"CLDN7","entrezGeneId":1366},{"hugoGeneSymbol":"CLDN8","entrezGeneId":9073},{"hugoGeneSymbol":"CLDN9","entrezGeneId":9080},{"hugoGeneSymbol":"CLDND1","entrezGeneId":56650},{"hugoGeneSymbol":"CLDND2","entrezGeneId":125875},{"hugoGeneSymbol":"CLEC10A","entrezGeneId":10462},{"hugoGeneSymbol":"CLEC11A","entrezGeneId":6320},{"hugoGeneSymbol":"CLEC12A","entrezGeneId":160364},{"hugoGeneSymbol":"CLEC12A-AS1","entrezGeneId":400002},{"hugoGeneSymbol":"CLEC12B","entrezGeneId":387837},{"hugoGeneSymbol":"CLEC14A","entrezGeneId":161198},{"hugoGeneSymbol":"CLEC16A","entrezGeneId":23274},{"hugoGeneSymbol":"CLEC17A","entrezGeneId":388512},{"hugoGeneSymbol":"CLEC18A","entrezGeneId":348174},{"hugoGeneSymbol":"CLEC18B","entrezGeneId":497190},{"hugoGeneSymbol":"CLEC18C","entrezGeneId":283971},{"hugoGeneSymbol":"CLEC19A","entrezGeneId":728276},{"hugoGeneSymbol":"CLEC1A","entrezGeneId":51267},{"hugoGeneSymbol":"CLEC1B","entrezGeneId":51266},{"hugoGeneSymbol":"CLEC20A","entrezGeneId":400797},{"hugoGeneSymbol":"CLEC2A","entrezGeneId":387836},{"hugoGeneSymbol":"CLEC2B","entrezGeneId":9976},{"hugoGeneSymbol":"CLEC2D","entrezGeneId":29121},{"hugoGeneSymbol":"CLEC2L","entrezGeneId":154790},{"hugoGeneSymbol":"CLEC3A","entrezGeneId":10143},{"hugoGeneSymbol":"CLEC3B","entrezGeneId":7123},{"hugoGeneSymbol":"CLEC4A","entrezGeneId":50856},{"hugoGeneSymbol":"CLEC4C","entrezGeneId":170482},{"hugoGeneSymbol":"CLEC4D","entrezGeneId":338339},{"hugoGeneSymbol":"CLEC4E","entrezGeneId":26253},{"hugoGeneSymbol":"CLEC4F","entrezGeneId":165530},{"hugoGeneSymbol":"CLEC4G","entrezGeneId":339390},{"hugoGeneSymbol":"CLEC4GP1","entrezGeneId":440508},{"hugoGeneSymbol":"CLEC4M","entrezGeneId":10332},{"hugoGeneSymbol":"CLEC5A","entrezGeneId":23601},{"hugoGeneSymbol":"CLEC6A","entrezGeneId":93978},{"hugoGeneSymbol":"CLEC7A","entrezGeneId":64581},{"hugoGeneSymbol":"CLEC9A","entrezGeneId":283420},{"hugoGeneSymbol":"CLECL1","entrezGeneId":160365},{"hugoGeneSymbol":"CLGN","entrezGeneId":1047},{"hugoGeneSymbol":"CLHC1","entrezGeneId":130162},{"hugoGeneSymbol":"CLIC1","entrezGeneId":1192},{"hugoGeneSymbol":"CLIC1P1","entrezGeneId":390363},{"hugoGeneSymbol":"CLIC2","entrezGeneId":1193},{"hugoGeneSymbol":"CLIC3","entrezGeneId":9022},{"hugoGeneSymbol":"CLIC4","entrezGeneId":25932},{"hugoGeneSymbol":"CLIC4P1","entrezGeneId":646609},{"hugoGeneSymbol":"CLIC4P2","entrezGeneId":100130584},{"hugoGeneSymbol":"CLIC4P3","entrezGeneId":442447},{"hugoGeneSymbol":"CLIC5","entrezGeneId":53405},{"hugoGeneSymbol":"CLIC6","entrezGeneId":54102},{"hugoGeneSymbol":"CLINT1","entrezGeneId":9685},{"hugoGeneSymbol":"CLIP1","entrezGeneId":6249},{"hugoGeneSymbol":"CLIP1-AS1","entrezGeneId":100507066},{"hugoGeneSymbol":"CLIP2","entrezGeneId":7461},{"hugoGeneSymbol":"CLIP3","entrezGeneId":25999},{"hugoGeneSymbol":"CLIP4","entrezGeneId":79745},{"hugoGeneSymbol":"CLK1","entrezGeneId":1195},{"hugoGeneSymbol":"CLK2","entrezGeneId":1196},{"hugoGeneSymbol":"CLK2P1","entrezGeneId":1197},{"hugoGeneSymbol":"CLK3","entrezGeneId":1198},{"hugoGeneSymbol":"CLK3P1","entrezGeneId":646505},{"hugoGeneSymbol":"CLK3P2","entrezGeneId":100128834},{"hugoGeneSymbol":"CLK4","entrezGeneId":57396},{"hugoGeneSymbol":"CLLS1","entrezGeneId":100188791},{"hugoGeneSymbol":"CLLS2","entrezGeneId":8101},{"hugoGeneSymbol":"CLLS3","entrezGeneId":100270642},{"hugoGeneSymbol":"CLLS4","entrezGeneId":100270643},{"hugoGeneSymbol":"CLLS5","entrezGeneId":100270644},{"hugoGeneSymbol":"CLLU1","entrezGeneId":574028},{"hugoGeneSymbol":"CLLU1OS","entrezGeneId":574016},{"hugoGeneSymbol":"CLMAT3","entrezGeneId":101927096},{"hugoGeneSymbol":"CLMN","entrezGeneId":79789},{"hugoGeneSymbol":"CLMP","entrezGeneId":79827},{"hugoGeneSymbol":"CLN3","entrezGeneId":1201},{"hugoGeneSymbol":"CLN5","entrezGeneId":1203},{"hugoGeneSymbol":"CLN6","entrezGeneId":54982},{"hugoGeneSymbol":"CLN8","entrezGeneId":2055},{"hugoGeneSymbol":"CLN9","entrezGeneId":497231},{"hugoGeneSymbol":"CLNK","entrezGeneId":116449},{"hugoGeneSymbol":"CLNS1A","entrezGeneId":1207},{"hugoGeneSymbol":"CLNS1AP1","entrezGeneId":1204},{"hugoGeneSymbol":"CLOCK","entrezGeneId":9575},{"hugoGeneSymbol":"CLP1","entrezGeneId":10978},{"hugoGeneSymbol":"CLPB","entrezGeneId":81570},{"hugoGeneSymbol":"CLPP","entrezGeneId":8192},{"hugoGeneSymbol":"CLPS","entrezGeneId":1208},{"hugoGeneSymbol":"CLPSL1","entrezGeneId":340204},{"hugoGeneSymbol":"CLPSL2","entrezGeneId":389383},{"hugoGeneSymbol":"CLPTM1","entrezGeneId":1209},{"hugoGeneSymbol":"CLPTM1L","entrezGeneId":81037},{"hugoGeneSymbol":"CLPTM1LP1","entrezGeneId":106480241},{"hugoGeneSymbol":"CLPX","entrezGeneId":10845},{"hugoGeneSymbol":"CLQTL1","entrezGeneId":54501},{"hugoGeneSymbol":"CLQTL2","entrezGeneId":100188817},{"hugoGeneSymbol":"CLRN1","entrezGeneId":7401},{"hugoGeneSymbol":"CLRN1-AS1","entrezGeneId":116933},{"hugoGeneSymbol":"CLRN2","entrezGeneId":645104},{"hugoGeneSymbol":"CLRN3","entrezGeneId":119467},{"hugoGeneSymbol":"CLSPN","entrezGeneId":63967},{"hugoGeneSymbol":"CLSTN1","entrezGeneId":22883},{"hugoGeneSymbol":"CLSTN2","entrezGeneId":64084},{"hugoGeneSymbol":"CLSTN2-AS1","entrezGeneId":101927808},{"hugoGeneSymbol":"CLSTN3","entrezGeneId":9746},{"hugoGeneSymbol":"CLTA","entrezGeneId":1211},{"hugoGeneSymbol":"CLTB","entrezGeneId":1212},{"hugoGeneSymbol":"CLTC","entrezGeneId":1213},{"hugoGeneSymbol":"CLTCL1","entrezGeneId":8218},{"hugoGeneSymbol":"CLTRN","entrezGeneId":57393},{"hugoGeneSymbol":"CLU","entrezGeneId":1191},{"hugoGeneSymbol":"CLUAP1","entrezGeneId":23059},{"hugoGeneSymbol":"CLUH","entrezGeneId":23277},{"hugoGeneSymbol":"CLUHP1","entrezGeneId":100418708},{"hugoGeneSymbol":"CLUHP10","entrezGeneId":107161230},{"hugoGeneSymbol":"CLUHP11","entrezGeneId":100418756},{"hugoGeneSymbol":"CLUHP2","entrezGeneId":100418709},{"hugoGeneSymbol":"CLUHP3","entrezGeneId":100132341},{"hugoGeneSymbol":"CLUHP4","entrezGeneId":100418711},{"hugoGeneSymbol":"CLUHP5","entrezGeneId":100418745},{"hugoGeneSymbol":"CLUHP6","entrezGeneId":100418754},{"hugoGeneSymbol":"CLUHP7","entrezGeneId":100418719},{"hugoGeneSymbol":"CLUHP8","entrezGeneId":100418733},{"hugoGeneSymbol":"CLUHP9","entrezGeneId":100418742},{"hugoGeneSymbol":"CLUL1","entrezGeneId":27098},{"hugoGeneSymbol":"CLVS1","entrezGeneId":157807},{"hugoGeneSymbol":"CLVS2","entrezGeneId":134829},{"hugoGeneSymbol":"CLYBL","entrezGeneId":171425},{"hugoGeneSymbol":"CLYBL-AS1","entrezGeneId":101927465},{"hugoGeneSymbol":"CLYBL-AS2","entrezGeneId":100874063},{"hugoGeneSymbol":"CMA1","entrezGeneId":1215},{"hugoGeneSymbol":"CMAHP","entrezGeneId":8418},{"hugoGeneSymbol":"CMAL","entrezGeneId":246230},{"hugoGeneSymbol":"CMAS","entrezGeneId":55907},{"hugoGeneSymbol":"CMBL","entrezGeneId":134147},{"hugoGeneSymbol":"CMC1","entrezGeneId":152100},{"hugoGeneSymbol":"CMC2","entrezGeneId":56942},{"hugoGeneSymbol":"CMC4","entrezGeneId":100272147},{"hugoGeneSymbol":"CMD1B","entrezGeneId":1218},{"hugoGeneSymbol":"CMD1H","entrezGeneId":23459},{"hugoGeneSymbol":"CMD1K","entrezGeneId":65014},{"hugoGeneSymbol":"CMD1Q","entrezGeneId":664728},{"hugoGeneSymbol":"CMH21","entrezGeneId":100909387},{"hugoGeneSymbol":"CMIP","entrezGeneId":80790},{"hugoGeneSymbol":"CMKLR1","entrezGeneId":1240},{"hugoGeneSymbol":"CMM","entrezGeneId":1243},{"hugoGeneSymbol":"CMM4","entrezGeneId":474388},{"hugoGeneSymbol":"CMM7","entrezGeneId":100190932},{"hugoGeneSymbol":"CMPK1","entrezGeneId":51727},{"hugoGeneSymbol":"CMPK2","entrezGeneId":129607},{"hugoGeneSymbol":"CMR1A","entrezGeneId":1245},{"hugoGeneSymbol":"CMR2A","entrezGeneId":1246},{"hugoGeneSymbol":"CMR3A","entrezGeneId":1247},{"hugoGeneSymbol":"CMS1A1","entrezGeneId":8144},{"hugoGeneSymbol":"CMSS1","entrezGeneId":84319},{"hugoGeneSymbol":"CMT2G","entrezGeneId":431712},{"hugoGeneSymbol":"CMT2H","entrezGeneId":619496},{"hugoGeneSymbol":"CMTDIA","entrezGeneId":387574},{"hugoGeneSymbol":"CMTM1","entrezGeneId":113540},{"hugoGeneSymbol":"CMTM2","entrezGeneId":146225},{"hugoGeneSymbol":"CMTM3","entrezGeneId":123920},{"hugoGeneSymbol":"CMTM4","entrezGeneId":146223},{"hugoGeneSymbol":"CMTM5","entrezGeneId":116173},{"hugoGeneSymbol":"CMTM6","entrezGeneId":54918},{"hugoGeneSymbol":"CMTM7","entrezGeneId":112616},{"hugoGeneSymbol":"CMTM8","entrezGeneId":152189},{"hugoGeneSymbol":"CMTR1","entrezGeneId":23070},{"hugoGeneSymbol":"CMTR2","entrezGeneId":55783},{"hugoGeneSymbol":"CMTS","entrezGeneId":105180377},{"hugoGeneSymbol":"CMTX2","entrezGeneId":1253},{"hugoGeneSymbol":"CMTX3","entrezGeneId":1254},{"hugoGeneSymbol":"CMYA5","entrezGeneId":202333},{"hugoGeneSymbol":"CNA1","entrezGeneId":1255},{"hugoGeneSymbol":"CNBD1","entrezGeneId":168975},{"hugoGeneSymbol":"CNBD2","entrezGeneId":140894},{"hugoGeneSymbol":"CNBP","entrezGeneId":7555},{"hugoGeneSymbol":"CNC2","entrezGeneId":1257},{"hugoGeneSymbol":"CND","entrezGeneId":8231},{"hugoGeneSymbol":"CNDP1","entrezGeneId":84735},{"hugoGeneSymbol":"CNDP2","entrezGeneId":55748},{"hugoGeneSymbol":"CNE-2","entrezGeneId":108353832},{"hugoGeneSymbol":"CNE-3","entrezGeneId":108353831},{"hugoGeneSymbol":"CNE-5","entrezGeneId":108353830},{"hugoGeneSymbol":"CNE4","entrezGeneId":108383234},{"hugoGeneSymbol":"CNE5","entrezGeneId":108383235},{"hugoGeneSymbol":"CNE6","entrezGeneId":108383236},{"hugoGeneSymbol":"CNE7","entrezGeneId":108383238},{"hugoGeneSymbol":"CNE8","entrezGeneId":108410391},{"hugoGeneSymbol":"CNE9","entrezGeneId":108410392},{"hugoGeneSymbol":"CNEP1R1","entrezGeneId":255919},{"hugoGeneSymbol":"CNFN","entrezGeneId":84518},{"hugoGeneSymbol":"CNGA1","entrezGeneId":1259},{"hugoGeneSymbol":"CNGA2","entrezGeneId":1260},{"hugoGeneSymbol":"CNGA3","entrezGeneId":1261},{"hugoGeneSymbol":"CNGA4","entrezGeneId":1262},{"hugoGeneSymbol":"CNGB1","entrezGeneId":1258},{"hugoGeneSymbol":"CNGB3","entrezGeneId":54714},{"hugoGeneSymbol":"CNIH1","entrezGeneId":10175},{"hugoGeneSymbol":"CNIH2","entrezGeneId":254263},{"hugoGeneSymbol":"CNIH3","entrezGeneId":149111},{"hugoGeneSymbol":"CNIH4","entrezGeneId":29097},{"hugoGeneSymbol":"CNKSR1","entrezGeneId":10256},{"hugoGeneSymbol":"CNKSR2","entrezGeneId":22866},{"hugoGeneSymbol":"CNKSR3","entrezGeneId":154043},{"hugoGeneSymbol":"CNMD","entrezGeneId":11061},{"hugoGeneSymbol":"CNN1","entrezGeneId":1264},{"hugoGeneSymbol":"CNN2","entrezGeneId":1265},{"hugoGeneSymbol":"CNN2P1","entrezGeneId":646467},{"hugoGeneSymbol":"CNN2P10","entrezGeneId":646693},{"hugoGeneSymbol":"CNN2P11","entrezGeneId":100689296},{"hugoGeneSymbol":"CNN2P12","entrezGeneId":100131550},{"hugoGeneSymbol":"CNN2P2","entrezGeneId":642888},{"hugoGeneSymbol":"CNN2P3","entrezGeneId":392343},{"hugoGeneSymbol":"CNN2P4","entrezGeneId":647507},{"hugoGeneSymbol":"CNN2P6","entrezGeneId":339897},{"hugoGeneSymbol":"CNN2P7","entrezGeneId":391266},{"hugoGeneSymbol":"CNN2P8","entrezGeneId":205272},{"hugoGeneSymbol":"CNN2P9","entrezGeneId":441166},{"hugoGeneSymbol":"CNN3","entrezGeneId":1266},{"hugoGeneSymbol":"CNN3P1","entrezGeneId":643875},{"hugoGeneSymbol":"CNNM1","entrezGeneId":26507},{"hugoGeneSymbol":"CNNM2","entrezGeneId":54805},{"hugoGeneSymbol":"CNNM3","entrezGeneId":26505},{"hugoGeneSymbol":"CNNM3-DT","entrezGeneId":100506036},{"hugoGeneSymbol":"CNNM4","entrezGeneId":26504},{"hugoGeneSymbol":"CNOT1","entrezGeneId":23019},{"hugoGeneSymbol":"CNOT10","entrezGeneId":25904},{"hugoGeneSymbol":"CNOT10-AS1","entrezGeneId":100874109},{"hugoGeneSymbol":"CNOT11","entrezGeneId":55571},{"hugoGeneSymbol":"CNOT2","entrezGeneId":4848},{"hugoGeneSymbol":"CNOT3","entrezGeneId":4849},{"hugoGeneSymbol":"CNOT4","entrezGeneId":4850},{"hugoGeneSymbol":"CNOT4P1","entrezGeneId":100874389},{"hugoGeneSymbol":"CNOT6","entrezGeneId":57472},{"hugoGeneSymbol":"CNOT6L","entrezGeneId":246175},{"hugoGeneSymbol":"CNOT6LP1","entrezGeneId":729530},{"hugoGeneSymbol":"CNOT7","entrezGeneId":29883},{"hugoGeneSymbol":"CNOT7P1","entrezGeneId":100421338},{"hugoGeneSymbol":"CNOT7P2","entrezGeneId":100132332},{"hugoGeneSymbol":"CNOT8","entrezGeneId":9337},{"hugoGeneSymbol":"CNOT9","entrezGeneId":9125},{"hugoGeneSymbol":"CNP","entrezGeneId":1267},{"hugoGeneSymbol":"CNPPD1","entrezGeneId":27013},{"hugoGeneSymbol":"CNPY1","entrezGeneId":285888},{"hugoGeneSymbol":"CNPY2","entrezGeneId":10330},{"hugoGeneSymbol":"CNPY3","entrezGeneId":10695},{"hugoGeneSymbol":"CNPY3-GNMT","entrezGeneId":107080644},{"hugoGeneSymbol":"CNPY4","entrezGeneId":245812},{"hugoGeneSymbol":"CNR1","entrezGeneId":1268},{"hugoGeneSymbol":"CNR2","entrezGeneId":1269},{"hugoGeneSymbol":"CNRIP1","entrezGeneId":25927},{"hugoGeneSymbol":"CNSN","entrezGeneId":8173},{"hugoGeneSymbol":"CNST","entrezGeneId":163882},{"hugoGeneSymbol":"CNTD1","entrezGeneId":124817},{"hugoGeneSymbol":"CNTD2","entrezGeneId":79935},{"hugoGeneSymbol":"CNTF","entrezGeneId":1270},{"hugoGeneSymbol":"CNTFR","entrezGeneId":1271},{"hugoGeneSymbol":"CNTFR-AS1","entrezGeneId":415056},{"hugoGeneSymbol":"CNTLN","entrezGeneId":54875},{"hugoGeneSymbol":"CNTN1","entrezGeneId":1272},{"hugoGeneSymbol":"CNTN2","entrezGeneId":6900},{"hugoGeneSymbol":"CNTN3","entrezGeneId":5067},{"hugoGeneSymbol":"CNTN4","entrezGeneId":152330},{"hugoGeneSymbol":"CNTN4-AS1","entrezGeneId":100873975},{"hugoGeneSymbol":"CNTN4-AS2","entrezGeneId":100873976},{"hugoGeneSymbol":"CNTN5","entrezGeneId":53942},{"hugoGeneSymbol":"CNTN6","entrezGeneId":27255},{"hugoGeneSymbol":"CNTNAP1","entrezGeneId":8506},{"hugoGeneSymbol":"CNTNAP2","entrezGeneId":26047},{"hugoGeneSymbol":"CNTNAP3","entrezGeneId":79937},{"hugoGeneSymbol":"CNTNAP3B","entrezGeneId":728577},{"hugoGeneSymbol":"CNTNAP3P1","entrezGeneId":100420787},{"hugoGeneSymbol":"CNTNAP3P2","entrezGeneId":643827},{"hugoGeneSymbol":"CNTNAP3P3","entrezGeneId":106660623},{"hugoGeneSymbol":"CNTNAP3P4","entrezGeneId":107403150},{"hugoGeneSymbol":"CNTNAP3P5","entrezGeneId":100420786},{"hugoGeneSymbol":"CNTNAP3P6","entrezGeneId":100420776},{"hugoGeneSymbol":"CNTNAP3P7","entrezGeneId":100420777},{"hugoGeneSymbol":"CNTNAP3P8","entrezGeneId":100420785},{"hugoGeneSymbol":"CNTNAP3P9","entrezGeneId":107403148},{"hugoGeneSymbol":"CNTNAP4","entrezGeneId":85445},{"hugoGeneSymbol":"CNTNAP5","entrezGeneId":129684},{"hugoGeneSymbol":"CNTRL","entrezGeneId":11064},{"hugoGeneSymbol":"CNTROB","entrezGeneId":116840},{"hugoGeneSymbol":"COA1","entrezGeneId":55744},{"hugoGeneSymbol":"COA3","entrezGeneId":28958},{"hugoGeneSymbol":"COA4","entrezGeneId":51287},{"hugoGeneSymbol":"COA5","entrezGeneId":493753},{"hugoGeneSymbol":"COA6","entrezGeneId":388753},{"hugoGeneSymbol":"COA7","entrezGeneId":65260},{"hugoGeneSymbol":"COASY","entrezGeneId":80347},{"hugoGeneSymbol":"COBL","entrezGeneId":23242},{"hugoGeneSymbol":"COBLL1","entrezGeneId":22837},{"hugoGeneSymbol":"COCH","entrezGeneId":1690},{"hugoGeneSymbol":"COD2","entrezGeneId":1275},{"hugoGeneSymbol":"CODA","entrezGeneId":100188845},{"hugoGeneSymbol":"COG1","entrezGeneId":9382},{"hugoGeneSymbol":"COG2","entrezGeneId":22796},{"hugoGeneSymbol":"COG3","entrezGeneId":83548},{"hugoGeneSymbol":"COG4","entrezGeneId":25839},{"hugoGeneSymbol":"COG5","entrezGeneId":10466},{"hugoGeneSymbol":"COG6","entrezGeneId":57511},{"hugoGeneSymbol":"COG7","entrezGeneId":91949},{"hugoGeneSymbol":"COG8","entrezGeneId":84342},{"hugoGeneSymbol":"COHEN1","entrezGeneId":544618},{"hugoGeneSymbol":"COHEN2","entrezGeneId":544616},{"hugoGeneSymbol":"COIL","entrezGeneId":8161},{"hugoGeneSymbol":"COILP1","entrezGeneId":317784},{"hugoGeneSymbol":"COILP2","entrezGeneId":494447},{"hugoGeneSymbol":"COL10A1","entrezGeneId":1300},{"hugoGeneSymbol":"COL11A1","entrezGeneId":1301},{"hugoGeneSymbol":"COL11A2","entrezGeneId":1302},{"hugoGeneSymbol":"COL11A2P1","entrezGeneId":394214},{"hugoGeneSymbol":"COL12A1","entrezGeneId":1303},{"hugoGeneSymbol":"COL13A1","entrezGeneId":1305},{"hugoGeneSymbol":"COL14A1","entrezGeneId":7373},{"hugoGeneSymbol":"COL15A1","entrezGeneId":1306},{"hugoGeneSymbol":"COL16A1","entrezGeneId":1307},{"hugoGeneSymbol":"COL17A1","entrezGeneId":1308},{"hugoGeneSymbol":"COL18A1","entrezGeneId":80781},{"hugoGeneSymbol":"COL18A1-AS1","entrezGeneId":378832},{"hugoGeneSymbol":"COL18A1-AS2","entrezGeneId":100874236},{"hugoGeneSymbol":"COL19A1","entrezGeneId":1310},{"hugoGeneSymbol":"COL1A1","entrezGeneId":1277},{"hugoGeneSymbol":"COL1A2","entrezGeneId":1278},{"hugoGeneSymbol":"COL1A2-AS1","entrezGeneId":101927525},{"hugoGeneSymbol":"COL1AR","entrezGeneId":1279},{"hugoGeneSymbol":"COL20A1","entrezGeneId":57642},{"hugoGeneSymbol":"COL21A1","entrezGeneId":81578},{"hugoGeneSymbol":"COL22A1","entrezGeneId":169044},{"hugoGeneSymbol":"COL23A1","entrezGeneId":91522},{"hugoGeneSymbol":"COL24A1","entrezGeneId":255631},{"hugoGeneSymbol":"COL25A1","entrezGeneId":84570},{"hugoGeneSymbol":"COL26A1","entrezGeneId":136227},{"hugoGeneSymbol":"COL27A1","entrezGeneId":85301},{"hugoGeneSymbol":"COL28A1","entrezGeneId":340267},{"hugoGeneSymbol":"COL2A1","entrezGeneId":1280},{"hugoGeneSymbol":"COL3A1","entrezGeneId":1281},{"hugoGeneSymbol":"COL4A1","entrezGeneId":1282},{"hugoGeneSymbol":"COL4A2","entrezGeneId":1284},{"hugoGeneSymbol":"COL4A2-AS1","entrezGeneId":100874203},{"hugoGeneSymbol":"COL4A2-AS2","entrezGeneId":100129836},{"hugoGeneSymbol":"COL4A3","entrezGeneId":1285},{"hugoGeneSymbol":"COL4A3BP","entrezGeneId":10087},{"hugoGeneSymbol":"COL4A4","entrezGeneId":1286},{"hugoGeneSymbol":"COL4A5","entrezGeneId":1287},{"hugoGeneSymbol":"COL4A6","entrezGeneId":1288},{"hugoGeneSymbol":"COL5A1","entrezGeneId":1289},{"hugoGeneSymbol":"COL5A1-AS1","entrezGeneId":414316},{"hugoGeneSymbol":"COL5A2","entrezGeneId":1290},{"hugoGeneSymbol":"COL5A3","entrezGeneId":50509},{"hugoGeneSymbol":"COL6A1","entrezGeneId":1291},{"hugoGeneSymbol":"COL6A2","entrezGeneId":1292},{"hugoGeneSymbol":"COL6A3","entrezGeneId":1293},{"hugoGeneSymbol":"COL6A4P1","entrezGeneId":344875},{"hugoGeneSymbol":"COL6A4P2","entrezGeneId":646300},{"hugoGeneSymbol":"COL6A5","entrezGeneId":256076},{"hugoGeneSymbol":"COL6A6","entrezGeneId":131873},{"hugoGeneSymbol":"COL7A1","entrezGeneId":1294},{"hugoGeneSymbol":"COL8A1","entrezGeneId":1295},{"hugoGeneSymbol":"COL8A2","entrezGeneId":1296},{"hugoGeneSymbol":"COL9A1","entrezGeneId":1297},{"hugoGeneSymbol":"COL9A2","entrezGeneId":1298},{"hugoGeneSymbol":"COL9A3","entrezGeneId":1299},{"hugoGeneSymbol":"COLCA1","entrezGeneId":399948},{"hugoGeneSymbol":"COLCA2","entrezGeneId":120376},{"hugoGeneSymbol":"COLEC10","entrezGeneId":10584},{"hugoGeneSymbol":"COLEC11","entrezGeneId":78989},{"hugoGeneSymbol":"COLEC12","entrezGeneId":81035},{"hugoGeneSymbol":"COLGALT1","entrezGeneId":79709},{"hugoGeneSymbol":"COLGALT2","entrezGeneId":23127},{"hugoGeneSymbol":"COLQ","entrezGeneId":8292},{"hugoGeneSymbol":"COMA","entrezGeneId":266710},{"hugoGeneSymbol":"COMMD1","entrezGeneId":150684},{"hugoGeneSymbol":"COMMD10","entrezGeneId":51397},{"hugoGeneSymbol":"COMMD2","entrezGeneId":51122},{"hugoGeneSymbol":"COMMD3","entrezGeneId":23412},{"hugoGeneSymbol":"COMMD3-BMI1","entrezGeneId":100532731},{"hugoGeneSymbol":"COMMD4","entrezGeneId":54939},{"hugoGeneSymbol":"COMMD5","entrezGeneId":28991},{"hugoGeneSymbol":"COMMD6","entrezGeneId":170622},{"hugoGeneSymbol":"COMMD7","entrezGeneId":149951},{"hugoGeneSymbol":"COMMD8","entrezGeneId":54951},{"hugoGeneSymbol":"COMMD9","entrezGeneId":29099},{"hugoGeneSymbol":"COMP","entrezGeneId":1311},{"hugoGeneSymbol":"COMT","entrezGeneId":1312},{"hugoGeneSymbol":"COMTD1","entrezGeneId":118881},{"hugoGeneSymbol":"COP1","entrezGeneId":64326},{"hugoGeneSymbol":"COPA","entrezGeneId":1314},{"hugoGeneSymbol":"COPB1","entrezGeneId":1315},{"hugoGeneSymbol":"COPB2","entrezGeneId":9276},{"hugoGeneSymbol":"COPD","entrezGeneId":260431},{"hugoGeneSymbol":"COPD1","entrezGeneId":544444},{"hugoGeneSymbol":"COPD10","entrezGeneId":544442},{"hugoGeneSymbol":"COPD11","entrezGeneId":544421},{"hugoGeneSymbol":"COPD12","entrezGeneId":544432},{"hugoGeneSymbol":"COPD13","entrezGeneId":544417},{"hugoGeneSymbol":"COPD14","entrezGeneId":544419},{"hugoGeneSymbol":"COPD15","entrezGeneId":544431},{"hugoGeneSymbol":"COPD16","entrezGeneId":544424},{"hugoGeneSymbol":"COPD17","entrezGeneId":544433},{"hugoGeneSymbol":"COPD18","entrezGeneId":544426},{"hugoGeneSymbol":"COPD19","entrezGeneId":544416},{"hugoGeneSymbol":"COPD2","entrezGeneId":544418},{"hugoGeneSymbol":"COPD20","entrezGeneId":544436},{"hugoGeneSymbol":"COPD21","entrezGeneId":544427},{"hugoGeneSymbol":"COPD22","entrezGeneId":544430},{"hugoGeneSymbol":"COPD23","entrezGeneId":544316},{"hugoGeneSymbol":"COPD24","entrezGeneId":544448},{"hugoGeneSymbol":"COPD25","entrezGeneId":544422},{"hugoGeneSymbol":"COPD26","entrezGeneId":544437},{"hugoGeneSymbol":"COPD27","entrezGeneId":544439},{"hugoGeneSymbol":"COPD28","entrezGeneId":544435},{"hugoGeneSymbol":"COPD29","entrezGeneId":544443},{"hugoGeneSymbol":"COPD3","entrezGeneId":544420},{"hugoGeneSymbol":"COPD4","entrezGeneId":544428},{"hugoGeneSymbol":"COPD5","entrezGeneId":544447},{"hugoGeneSymbol":"COPD6","entrezGeneId":544445},{"hugoGeneSymbol":"COPD7","entrezGeneId":544315},{"hugoGeneSymbol":"COPD8","entrezGeneId":544429},{"hugoGeneSymbol":"COPD9","entrezGeneId":544438},{"hugoGeneSymbol":"COPE","entrezGeneId":11316},{"hugoGeneSymbol":"COPG1","entrezGeneId":22820},{"hugoGeneSymbol":"COPG2","entrezGeneId":26958},{"hugoGeneSymbol":"COPG2IT1","entrezGeneId":53844},{"hugoGeneSymbol":"COPRS","entrezGeneId":55352},{"hugoGeneSymbol":"COPS2","entrezGeneId":9318},{"hugoGeneSymbol":"COPS3","entrezGeneId":8533},{"hugoGeneSymbol":"COPS4","entrezGeneId":51138},{"hugoGeneSymbol":"COPS5","entrezGeneId":10987},{"hugoGeneSymbol":"COPS5P1","entrezGeneId":135270},{"hugoGeneSymbol":"COPS5P2","entrezGeneId":112268476},{"hugoGeneSymbol":"COPS6","entrezGeneId":10980},{"hugoGeneSymbol":"COPS7A","entrezGeneId":50813},{"hugoGeneSymbol":"COPS7B","entrezGeneId":64708},{"hugoGeneSymbol":"COPS8","entrezGeneId":10920},{"hugoGeneSymbol":"COPS8P1","entrezGeneId":260342},{"hugoGeneSymbol":"COPS8P2","entrezGeneId":375350},{"hugoGeneSymbol":"COPS8P3","entrezGeneId":106479058},{"hugoGeneSymbol":"COPS9","entrezGeneId":150678},{"hugoGeneSymbol":"COPZ1","entrezGeneId":22818},{"hugoGeneSymbol":"COPZ2","entrezGeneId":51226},{"hugoGeneSymbol":"COQ10A","entrezGeneId":93058},{"hugoGeneSymbol":"COQ10B","entrezGeneId":80219},{"hugoGeneSymbol":"COQ10BP1","entrezGeneId":100421150},{"hugoGeneSymbol":"COQ10BP2","entrezGeneId":100421072},{"hugoGeneSymbol":"COQ2","entrezGeneId":27235},{"hugoGeneSymbol":"COQ3","entrezGeneId":51805},{"hugoGeneSymbol":"COQ4","entrezGeneId":51117},{"hugoGeneSymbol":"COQ5","entrezGeneId":84274},{"hugoGeneSymbol":"COQ6","entrezGeneId":51004},{"hugoGeneSymbol":"COQ7","entrezGeneId":10229},{"hugoGeneSymbol":"COQ8A","entrezGeneId":56997},{"hugoGeneSymbol":"COQ8B","entrezGeneId":79934},{"hugoGeneSymbol":"COQ9","entrezGeneId":57017},{"hugoGeneSymbol":"CORD1","entrezGeneId":1319},{"hugoGeneSymbol":"CORD17","entrezGeneId":101409267},{"hugoGeneSymbol":"CORD4","entrezGeneId":1321},{"hugoGeneSymbol":"CORD8","entrezGeneId":54109},{"hugoGeneSymbol":"CORIN","entrezGeneId":10699},{"hugoGeneSymbol":"CORO1A","entrezGeneId":11151},{"hugoGeneSymbol":"CORO1B","entrezGeneId":57175},{"hugoGeneSymbol":"CORO1C","entrezGeneId":23603},{"hugoGeneSymbol":"CORO2A","entrezGeneId":7464},{"hugoGeneSymbol":"CORO2B","entrezGeneId":10391},{"hugoGeneSymbol":"CORO6","entrezGeneId":84940},{"hugoGeneSymbol":"CORO7","entrezGeneId":79585},{"hugoGeneSymbol":"CORO7-PAM16","entrezGeneId":100529144},{"hugoGeneSymbol":"CORT","entrezGeneId":1325},{"hugoGeneSymbol":"COTL1","entrezGeneId":23406},{"hugoGeneSymbol":"COTL1P1","entrezGeneId":27170},{"hugoGeneSymbol":"COTL1P2","entrezGeneId":347720},{"hugoGeneSymbol":"COX10","entrezGeneId":1352},{"hugoGeneSymbol":"COX10-AS1","entrezGeneId":100874058},{"hugoGeneSymbol":"COX11","entrezGeneId":1353},{"hugoGeneSymbol":"COX11P1","entrezGeneId":140468},{"hugoGeneSymbol":"COX14","entrezGeneId":84987},{"hugoGeneSymbol":"COX15","entrezGeneId":1355},{"hugoGeneSymbol":"COX16","entrezGeneId":51241},{"hugoGeneSymbol":"COX17","entrezGeneId":10063},{"hugoGeneSymbol":"COX17P1","entrezGeneId":81993},{"hugoGeneSymbol":"COX18","entrezGeneId":285521},{"hugoGeneSymbol":"COX19","entrezGeneId":90639},{"hugoGeneSymbol":"COX20","entrezGeneId":116228},{"hugoGeneSymbol":"COX20P1","entrezGeneId":100507102},{"hugoGeneSymbol":"COX20P2","entrezGeneId":100289170},{"hugoGeneSymbol":"COX4I1","entrezGeneId":1327},{"hugoGeneSymbol":"COX4I1P1","entrezGeneId":122867},{"hugoGeneSymbol":"COX4I1P2","entrezGeneId":652170},{"hugoGeneSymbol":"COX4I2","entrezGeneId":84701},{"hugoGeneSymbol":"COX5A","entrezGeneId":9377},{"hugoGeneSymbol":"COX5AP1","entrezGeneId":9385},{"hugoGeneSymbol":"COX5AP2","entrezGeneId":319087},{"hugoGeneSymbol":"COX5B","entrezGeneId":1329},{"hugoGeneSymbol":"COX5BP1","entrezGeneId":1330},{"hugoGeneSymbol":"COX5BP2","entrezGeneId":1331},{"hugoGeneSymbol":"COX5BP3","entrezGeneId":1332},{"hugoGeneSymbol":"COX5BP4","entrezGeneId":1333},{"hugoGeneSymbol":"COX5BP5","entrezGeneId":100288440},{"hugoGeneSymbol":"COX5BP6","entrezGeneId":101234262},{"hugoGeneSymbol":"COX5BP7","entrezGeneId":1336},{"hugoGeneSymbol":"COX5BP8","entrezGeneId":100859925},{"hugoGeneSymbol":"COX6A1","entrezGeneId":1337},{"hugoGeneSymbol":"COX6A1P1","entrezGeneId":1338},{"hugoGeneSymbol":"COX6A1P2","entrezGeneId":285849},{"hugoGeneSymbol":"COX6A1P3","entrezGeneId":100287768},{"hugoGeneSymbol":"COX6A2","entrezGeneId":1339},{"hugoGeneSymbol":"COX6B1","entrezGeneId":1340},{"hugoGeneSymbol":"COX6B1P1","entrezGeneId":140603},{"hugoGeneSymbol":"COX6B1P2","entrezGeneId":1342},{"hugoGeneSymbol":"COX6B1P3","entrezGeneId":1343},{"hugoGeneSymbol":"COX6B1P4","entrezGeneId":100462850},{"hugoGeneSymbol":"COX6B1P5","entrezGeneId":100289662},{"hugoGeneSymbol":"COX6B1P6","entrezGeneId":100462851},{"hugoGeneSymbol":"COX6B1P7","entrezGeneId":100133210},{"hugoGeneSymbol":"COX6B2","entrezGeneId":125965},{"hugoGeneSymbol":"COX6C","entrezGeneId":1345},{"hugoGeneSymbol":"COX6CP1","entrezGeneId":9384},{"hugoGeneSymbol":"COX6CP10","entrezGeneId":106481681},{"hugoGeneSymbol":"COX6CP11","entrezGeneId":106480266},{"hugoGeneSymbol":"COX6CP12","entrezGeneId":106481682},{"hugoGeneSymbol":"COX6CP13","entrezGeneId":106480267},{"hugoGeneSymbol":"COX6CP14","entrezGeneId":106481683},{"hugoGeneSymbol":"COX6CP15","entrezGeneId":106480268},{"hugoGeneSymbol":"COX6CP16","entrezGeneId":106481965},{"hugoGeneSymbol":"COX6CP17","entrezGeneId":106480269},{"hugoGeneSymbol":"COX6CP18","entrezGeneId":106481684},{"hugoGeneSymbol":"COX6CP2","entrezGeneId":170504},{"hugoGeneSymbol":"COX6CP3","entrezGeneId":100130247},{"hugoGeneSymbol":"COX6CP4","entrezGeneId":100288892},{"hugoGeneSymbol":"COX6CP5","entrezGeneId":100862855},{"hugoGeneSymbol":"COX6CP6","entrezGeneId":100289131},{"hugoGeneSymbol":"COX6CP7","entrezGeneId":106480265},{"hugoGeneSymbol":"COX6CP8","entrezGeneId":106481680},{"hugoGeneSymbol":"COX7A1","entrezGeneId":1346},{"hugoGeneSymbol":"COX7A2","entrezGeneId":1347},{"hugoGeneSymbol":"COX7A2L","entrezGeneId":9167},{"hugoGeneSymbol":"COX7A2P1","entrezGeneId":319098},{"hugoGeneSymbol":"COX7A2P2","entrezGeneId":1348},{"hugoGeneSymbol":"COX7B","entrezGeneId":1349},{"hugoGeneSymbol":"COX7B2","entrezGeneId":170712},{"hugoGeneSymbol":"COX7BP1","entrezGeneId":114657},{"hugoGeneSymbol":"COX7BP2","entrezGeneId":140692},{"hugoGeneSymbol":"COX7C","entrezGeneId":1350},{"hugoGeneSymbol":"COX7CP1","entrezGeneId":9386},{"hugoGeneSymbol":"COX8A","entrezGeneId":1351},{"hugoGeneSymbol":"COX8BP","entrezGeneId":404544},{"hugoGeneSymbol":"COX8C","entrezGeneId":341947},{"hugoGeneSymbol":"CP","entrezGeneId":1356},{"hugoGeneSymbol":"CP20","entrezGeneId":7938},{"hugoGeneSymbol":"CPA1","entrezGeneId":1357},{"hugoGeneSymbol":"CPA2","entrezGeneId":1358},{"hugoGeneSymbol":"CPA3","entrezGeneId":1359},{"hugoGeneSymbol":"CPA4","entrezGeneId":51200},{"hugoGeneSymbol":"CPA5","entrezGeneId":93979},{"hugoGeneSymbol":"CPA6","entrezGeneId":57094},{"hugoGeneSymbol":"CPAMD8","entrezGeneId":27151},{"hugoGeneSymbol":"CPAT1","entrezGeneId":60502},{"hugoGeneSymbol":"CPB1","entrezGeneId":1360},{"hugoGeneSymbol":"CPB2","entrezGeneId":1361},{"hugoGeneSymbol":"CPB2-AS1","entrezGeneId":100509894},{"hugoGeneSymbol":"CPBHM","entrezGeneId":100820762},{"hugoGeneSymbol":"CPD","entrezGeneId":1362},{"hugoGeneSymbol":"CPDP1","entrezGeneId":109729163},{"hugoGeneSymbol":"CPE","entrezGeneId":1363},{"hugoGeneSymbol":"CPEB1","entrezGeneId":64506},{"hugoGeneSymbol":"CPEB1-AS1","entrezGeneId":283692},{"hugoGeneSymbol":"CPEB2","entrezGeneId":132864},{"hugoGeneSymbol":"CPEB2-DT","entrezGeneId":441009},{"hugoGeneSymbol":"CPEB3","entrezGeneId":22849},{"hugoGeneSymbol":"CPEB4","entrezGeneId":80315},{"hugoGeneSymbol":"CPED1","entrezGeneId":79974},{"hugoGeneSymbol":"CPHL1P","entrezGeneId":389160},{"hugoGeneSymbol":"CPHXL","entrezGeneId":105371346},{"hugoGeneSymbol":"CPLANE1","entrezGeneId":65250},{"hugoGeneSymbol":"CPLANE2","entrezGeneId":79363},{"hugoGeneSymbol":"CPLX1","entrezGeneId":10815},{"hugoGeneSymbol":"CPLX2","entrezGeneId":10814},{"hugoGeneSymbol":"CPLX3","entrezGeneId":594855},{"hugoGeneSymbol":"CPLX4","entrezGeneId":339302},{"hugoGeneSymbol":"CPM","entrezGeneId":1368},{"hugoGeneSymbol":"CPN1","entrezGeneId":1369},{"hugoGeneSymbol":"CPN2","entrezGeneId":1370},{"hugoGeneSymbol":"CPNE1","entrezGeneId":8904},{"hugoGeneSymbol":"CPNE2","entrezGeneId":221184},{"hugoGeneSymbol":"CPNE3","entrezGeneId":8895},{"hugoGeneSymbol":"CPNE4","entrezGeneId":131034},{"hugoGeneSymbol":"CPNE5","entrezGeneId":57699},{"hugoGeneSymbol":"CPNE6","entrezGeneId":9362},{"hugoGeneSymbol":"CPNE7","entrezGeneId":27132},{"hugoGeneSymbol":"CPNE8","entrezGeneId":144402},{"hugoGeneSymbol":"CPNE9","entrezGeneId":151835},{"hugoGeneSymbol":"CPO","entrezGeneId":130749},{"hugoGeneSymbol":"CPOX","entrezGeneId":1371},{"hugoGeneSymbol":"CPP","entrezGeneId":340451},{"hugoGeneSymbol":"CPPED1","entrezGeneId":55313},{"hugoGeneSymbol":"CPQ","entrezGeneId":10404},{"hugoGeneSymbol":"CPROTQ","entrezGeneId":100188860},{"hugoGeneSymbol":"CPS1","entrezGeneId":1373},{"hugoGeneSymbol":"CPS1-IT1","entrezGeneId":29034},{"hugoGeneSymbol":"CPSF1","entrezGeneId":29894},{"hugoGeneSymbol":"CPSF1P1","entrezGeneId":129099},{"hugoGeneSymbol":"CPSF2","entrezGeneId":53981},{"hugoGeneSymbol":"CPSF3","entrezGeneId":51692},{"hugoGeneSymbol":"CPSF4","entrezGeneId":10898},{"hugoGeneSymbol":"CPSF4L","entrezGeneId":642843},{"hugoGeneSymbol":"CPSF6","entrezGeneId":11052},{"hugoGeneSymbol":"CPSF7","entrezGeneId":79869},{"hugoGeneSymbol":"CPT1A","entrezGeneId":1374},{"hugoGeneSymbol":"CPT1B","entrezGeneId":1375},{"hugoGeneSymbol":"CPT1C","entrezGeneId":126129},{"hugoGeneSymbol":"CPT2","entrezGeneId":1376},{"hugoGeneSymbol":"CPT2P1","entrezGeneId":100420556},{"hugoGeneSymbol":"CPTP","entrezGeneId":80772},{"hugoGeneSymbol":"CPVL","entrezGeneId":54504},{"hugoGeneSymbol":"CPVT3","entrezGeneId":100653371},{"hugoGeneSymbol":"CPXCR1","entrezGeneId":53336},{"hugoGeneSymbol":"CPXM1","entrezGeneId":56265},{"hugoGeneSymbol":"CPXM2","entrezGeneId":119587},{"hugoGeneSymbol":"CPZ","entrezGeneId":8532},{"hugoGeneSymbol":"CR1","entrezGeneId":1378},{"hugoGeneSymbol":"CR1L","entrezGeneId":1379},{"hugoGeneSymbol":"CR2","entrezGeneId":1380},{"hugoGeneSymbol":"CRABP1","entrezGeneId":1381},{"hugoGeneSymbol":"CRABP2","entrezGeneId":1382},{"hugoGeneSymbol":"CRACR2A","entrezGeneId":84766},{"hugoGeneSymbol":"CRACR2B","entrezGeneId":283229},{"hugoGeneSymbol":"CRADD","entrezGeneId":8738},{"hugoGeneSymbol":"CRAMP1","entrezGeneId":57585},{"hugoGeneSymbol":"CRAT","entrezGeneId":1384},{"hugoGeneSymbol":"CRAT37","entrezGeneId":101926928},{"hugoGeneSymbol":"CRB1","entrezGeneId":23418},{"hugoGeneSymbol":"CRB2","entrezGeneId":286204},{"hugoGeneSymbol":"CRB3","entrezGeneId":92359},{"hugoGeneSymbol":"CRB3P1","entrezGeneId":106480279},{"hugoGeneSymbol":"CRBN","entrezGeneId":51185},{"hugoGeneSymbol":"CRCL","entrezGeneId":261727},{"hugoGeneSymbol":"CRCP","entrezGeneId":27297},{"hugoGeneSymbol":"CRCS10","entrezGeneId":100271691},{"hugoGeneSymbol":"CRCS11","entrezGeneId":100271692},{"hugoGeneSymbol":"CRCS2","entrezGeneId":100188841},{"hugoGeneSymbol":"CRCS5","entrezGeneId":100188887},{"hugoGeneSymbol":"CRCS6","entrezGeneId":100187710},{"hugoGeneSymbol":"CRCS7","entrezGeneId":100187711},{"hugoGeneSymbol":"CRCS8","entrezGeneId":100271690},{"hugoGeneSymbol":"CRCS9","entrezGeneId":100329169},{"hugoGeneSymbol":"CRCT1","entrezGeneId":54544},{"hugoGeneSymbol":"CRE1","entrezGeneId":108348016},{"hugoGeneSymbol":"CRE2","entrezGeneId":108348018},{"hugoGeneSymbol":"CRE3","entrezGeneId":108348019},{"hugoGeneSymbol":"CREB1","entrezGeneId":1385},{"hugoGeneSymbol":"CREB3","entrezGeneId":10488},{"hugoGeneSymbol":"CREB3L1","entrezGeneId":90993},{"hugoGeneSymbol":"CREB3L2","entrezGeneId":64764},{"hugoGeneSymbol":"CREB3L3","entrezGeneId":84699},{"hugoGeneSymbol":"CREB3L4","entrezGeneId":148327},{"hugoGeneSymbol":"CREB5","entrezGeneId":9586},{"hugoGeneSymbol":"CREBBP","entrezGeneId":1387},{"hugoGeneSymbol":"CREBL2","entrezGeneId":1389},{"hugoGeneSymbol":"CREBRF","entrezGeneId":153222},{"hugoGeneSymbol":"CREBZF","entrezGeneId":58487},{"hugoGeneSymbol":"CREG1","entrezGeneId":8804},{"hugoGeneSymbol":"CREG2","entrezGeneId":200407},{"hugoGeneSymbol":"CRELD1","entrezGeneId":78987},{"hugoGeneSymbol":"CRELD2","entrezGeneId":79174},{"hugoGeneSymbol":"CREM","entrezGeneId":1390},{"hugoGeneSymbol":"CREST1","entrezGeneId":106029243},{"hugoGeneSymbol":"CREST2","entrezGeneId":106029244},{"hugoGeneSymbol":"CREST3","entrezGeneId":106029245},{"hugoGeneSymbol":"CRH","entrezGeneId":1392},{"hugoGeneSymbol":"CRHBP","entrezGeneId":1393},{"hugoGeneSymbol":"CRHR1","entrezGeneId":1394},{"hugoGeneSymbol":"CRHR2","entrezGeneId":1395},{"hugoGeneSymbol":"CRIM1","entrezGeneId":51232},{"hugoGeneSymbol":"CRIP1","entrezGeneId":1396},{"hugoGeneSymbol":"CRIP1P1","entrezGeneId":106480793},{"hugoGeneSymbol":"CRIP1P2","entrezGeneId":641456},{"hugoGeneSymbol":"CRIP1P3","entrezGeneId":106479040},{"hugoGeneSymbol":"CRIP1P4","entrezGeneId":641457},{"hugoGeneSymbol":"CRIP2","entrezGeneId":1397},{"hugoGeneSymbol":"CRIP3","entrezGeneId":401262},{"hugoGeneSymbol":"CRIPAK","entrezGeneId":285464},{"hugoGeneSymbol":"CRIPT","entrezGeneId":9419},{"hugoGeneSymbol":"CRISP1","entrezGeneId":167},{"hugoGeneSymbol":"CRISP2","entrezGeneId":7180},{"hugoGeneSymbol":"CRISP3","entrezGeneId":10321},{"hugoGeneSymbol":"CRISPLD1","entrezGeneId":83690},{"hugoGeneSymbol":"CRISPLD2","entrezGeneId":83716},{"hugoGeneSymbol":"CRK","entrezGeneId":1398},{"hugoGeneSymbol":"CRKL","entrezGeneId":1399},{"hugoGeneSymbol":"CRLF1","entrezGeneId":9244},{"hugoGeneSymbol":"CRLF2","entrezGeneId":64109},{"hugoGeneSymbol":"CRLF3","entrezGeneId":51379},{"hugoGeneSymbol":"CRLS1","entrezGeneId":54675},{"hugoGeneSymbol":"CRMP1","entrezGeneId":1400},{"hugoGeneSymbol":"CRNDE","entrezGeneId":643911},{"hugoGeneSymbol":"CRNKL1","entrezGeneId":51340},{"hugoGeneSymbol":"CRNN","entrezGeneId":49860},{"hugoGeneSymbol":"CROCC","entrezGeneId":9696},{"hugoGeneSymbol":"CROCC2","entrezGeneId":728763},{"hugoGeneSymbol":"CROCCP1","entrezGeneId":392547},{"hugoGeneSymbol":"CROCCP2","entrezGeneId":84809},{"hugoGeneSymbol":"CROCCP3","entrezGeneId":114819},{"hugoGeneSymbol":"CROCCP4","entrezGeneId":100421113},{"hugoGeneSymbol":"CROCCP5","entrezGeneId":100421114},{"hugoGeneSymbol":"CROT","entrezGeneId":54677},{"hugoGeneSymbol":"CRP","entrezGeneId":1401},{"hugoGeneSymbol":"CRPP1","entrezGeneId":171422},{"hugoGeneSymbol":"CRSA","entrezGeneId":7885},{"hugoGeneSymbol":"CRSP5","entrezGeneId":10688},{"hugoGeneSymbol":"CRSP8P","entrezGeneId":441089},{"hugoGeneSymbol":"CRTAC1","entrezGeneId":55118},{"hugoGeneSymbol":"CRTAM","entrezGeneId":56253},{"hugoGeneSymbol":"CRTAP","entrezGeneId":10491},{"hugoGeneSymbol":"CRTC1","entrezGeneId":23373},{"hugoGeneSymbol":"CRTC2","entrezGeneId":200186},{"hugoGeneSymbol":"CRTC3","entrezGeneId":64784},{"hugoGeneSymbol":"CRTC3-AS1","entrezGeneId":101926895},{"hugoGeneSymbol":"CRX","entrezGeneId":1406},{"hugoGeneSymbol":"CRY1","entrezGeneId":1407},{"hugoGeneSymbol":"CRY2","entrezGeneId":1408},{"hugoGeneSymbol":"CRYAA","entrezGeneId":1409},{"hugoGeneSymbol":"CRYAA2","entrezGeneId":102724652},{"hugoGeneSymbol":"CRYAB","entrezGeneId":1410},{"hugoGeneSymbol":"CRYBA1","entrezGeneId":1411},{"hugoGeneSymbol":"CRYBA2","entrezGeneId":1412},{"hugoGeneSymbol":"CRYBA4","entrezGeneId":1413},{"hugoGeneSymbol":"CRYBB1","entrezGeneId":1414},{"hugoGeneSymbol":"CRYBB2","entrezGeneId":1415},{"hugoGeneSymbol":"CRYBB2P1","entrezGeneId":1416},{"hugoGeneSymbol":"CRYBB3","entrezGeneId":1417},{"hugoGeneSymbol":"CRYBG1","entrezGeneId":202},{"hugoGeneSymbol":"CRYBG2","entrezGeneId":55057},{"hugoGeneSymbol":"CRYBG3","entrezGeneId":131544},{"hugoGeneSymbol":"CRYGA","entrezGeneId":1418},{"hugoGeneSymbol":"CRYGB","entrezGeneId":1419},{"hugoGeneSymbol":"CRYGC","entrezGeneId":1420},{"hugoGeneSymbol":"CRYGD","entrezGeneId":1421},{"hugoGeneSymbol":"CRYGEP","entrezGeneId":200575},{"hugoGeneSymbol":"CRYGFP","entrezGeneId":1423},{"hugoGeneSymbol":"CRYGGP","entrezGeneId":1424},{"hugoGeneSymbol":"CRYGN","entrezGeneId":155051},{"hugoGeneSymbol":"CRYGS","entrezGeneId":1427},{"hugoGeneSymbol":"CRYL1","entrezGeneId":51084},{"hugoGeneSymbol":"CRYM","entrezGeneId":1428},{"hugoGeneSymbol":"CRYM-AS1","entrezGeneId":400508},{"hugoGeneSymbol":"CRYZ","entrezGeneId":1429},{"hugoGeneSymbol":"CRYZL1","entrezGeneId":9946},{"hugoGeneSymbol":"CRYZL2P","entrezGeneId":730102},{"hugoGeneSymbol":"CRYZL2P-SEC16B","entrezGeneId":111240474},{"hugoGeneSymbol":"CRYZP1","entrezGeneId":1430},{"hugoGeneSymbol":"CRYZP2","entrezGeneId":100526735},{"hugoGeneSymbol":"CS","entrezGeneId":1431},{"hugoGeneSymbol":"CSAD","entrezGeneId":51380},{"hugoGeneSymbol":"CSAG1","entrezGeneId":158511},{"hugoGeneSymbol":"CSAG2","entrezGeneId":102723547},{"hugoGeneSymbol":"CSAG3","entrezGeneId":389903},{"hugoGeneSymbol":"CSAG4","entrezGeneId":100130935},{"hugoGeneSymbol":"CSCI","entrezGeneId":7944},{"hugoGeneSymbol":"CSDC2","entrezGeneId":27254},{"hugoGeneSymbol":"CSDE1","entrezGeneId":7812},{"hugoGeneSymbol":"CSE1L","entrezGeneId":1434},{"hugoGeneSymbol":"CSE1L-AS1","entrezGeneId":102723483},{"hugoGeneSymbol":"CSF1","entrezGeneId":1435},{"hugoGeneSymbol":"CSF1R","entrezGeneId":1436},{"hugoGeneSymbol":"CSF2","entrezGeneId":1437},{"hugoGeneSymbol":"CSF2RA","entrezGeneId":1438},{"hugoGeneSymbol":"CSF2RB","entrezGeneId":1439},{"hugoGeneSymbol":"CSF2RBP1","entrezGeneId":23772},{"hugoGeneSymbol":"CSF3","entrezGeneId":1440},{"hugoGeneSymbol":"CSF3R","entrezGeneId":1441},{"hugoGeneSymbol":"CSGALNACT1","entrezGeneId":55790},{"hugoGeneSymbol":"CSGALNACT2","entrezGeneId":55454},{"hugoGeneSymbol":"CSH1","entrezGeneId":1442},{"hugoGeneSymbol":"CSH2","entrezGeneId":1443},{"hugoGeneSymbol":"CSHL1","entrezGeneId":1444},{"hugoGeneSymbol":"CSK","entrezGeneId":1445},{"hugoGeneSymbol":"CSKMT","entrezGeneId":751071},{"hugoGeneSymbol":"CSMD1","entrezGeneId":64478},{"hugoGeneSymbol":"CSMD2","entrezGeneId":114784},{"hugoGeneSymbol":"CSMD2-AS1","entrezGeneId":402779},{"hugoGeneSymbol":"CSMD3","entrezGeneId":114788},{"hugoGeneSymbol":"CSN1S1","entrezGeneId":1446},{"hugoGeneSymbol":"CSN1S2AP","entrezGeneId":286828},{"hugoGeneSymbol":"CSN1S2BP","entrezGeneId":100337616},{"hugoGeneSymbol":"CSN2","entrezGeneId":1447},{"hugoGeneSymbol":"CSN3","entrezGeneId":1448},{"hugoGeneSymbol":"CSNK1A1","entrezGeneId":1452},{"hugoGeneSymbol":"CSNK1A1L","entrezGeneId":122011},{"hugoGeneSymbol":"CSNK1A1P1","entrezGeneId":161635},{"hugoGeneSymbol":"CSNK1A1P2","entrezGeneId":120321},{"hugoGeneSymbol":"CSNK1A1P3","entrezGeneId":100526776},{"hugoGeneSymbol":"CSNK1D","entrezGeneId":1453},{"hugoGeneSymbol":"CSNK1E","entrezGeneId":1454},{"hugoGeneSymbol":"CSNK1G1","entrezGeneId":53944},{"hugoGeneSymbol":"CSNK1G2","entrezGeneId":1455},{"hugoGeneSymbol":"CSNK1G2-AS1","entrezGeneId":255193},{"hugoGeneSymbol":"CSNK1G2P1","entrezGeneId":100419821},{"hugoGeneSymbol":"CSNK1G3","entrezGeneId":1456},{"hugoGeneSymbol":"CSNK2A1","entrezGeneId":1457},{"hugoGeneSymbol":"CSNK2A2","entrezGeneId":1459},{"hugoGeneSymbol":"CSNK2A3","entrezGeneId":283106},{"hugoGeneSymbol":"CSNK2B","entrezGeneId":1460},{"hugoGeneSymbol":"CSNKA2IP","entrezGeneId":111064647},{"hugoGeneSymbol":"CSPG4","entrezGeneId":1464},{"hugoGeneSymbol":"CSPG4P10","entrezGeneId":390627},{"hugoGeneSymbol":"CSPG4P11","entrezGeneId":100631254},{"hugoGeneSymbol":"CSPG4P12","entrezGeneId":728121},{"hugoGeneSymbol":"CSPG4P13","entrezGeneId":100302666},{"hugoGeneSymbol":"CSPG4P1Y","entrezGeneId":114758},{"hugoGeneSymbol":"CSPG4P2Y","entrezGeneId":84664},{"hugoGeneSymbol":"CSPG4P3Y","entrezGeneId":100287261},{"hugoGeneSymbol":"CSPG4P4Y","entrezGeneId":100287502},{"hugoGeneSymbol":"CSPG4P5","entrezGeneId":114817},{"hugoGeneSymbol":"CSPG4P9","entrezGeneId":642288},{"hugoGeneSymbol":"CSPG5","entrezGeneId":10675},{"hugoGeneSymbol":"CSPP1","entrezGeneId":79848},{"hugoGeneSymbol":"CSRNP1","entrezGeneId":64651},{"hugoGeneSymbol":"CSRNP2","entrezGeneId":81566},{"hugoGeneSymbol":"CSRNP3","entrezGeneId":80034},{"hugoGeneSymbol":"CSRP1","entrezGeneId":1465},{"hugoGeneSymbol":"CSRP2","entrezGeneId":1466},{"hugoGeneSymbol":"CSRP2P1","entrezGeneId":1467},{"hugoGeneSymbol":"CSRP3","entrezGeneId":8048},{"hugoGeneSymbol":"CST1","entrezGeneId":1469},{"hugoGeneSymbol":"CST11","entrezGeneId":140880},{"hugoGeneSymbol":"CST12P","entrezGeneId":106478911},{"hugoGeneSymbol":"CST13P","entrezGeneId":164380},{"hugoGeneSymbol":"CST2","entrezGeneId":1470},{"hugoGeneSymbol":"CST2P1","entrezGeneId":101410546},{"hugoGeneSymbol":"CST3","entrezGeneId":1471},{"hugoGeneSymbol":"CST4","entrezGeneId":1472},{"hugoGeneSymbol":"CST5","entrezGeneId":1473},{"hugoGeneSymbol":"CST6","entrezGeneId":1474},{"hugoGeneSymbol":"CST7","entrezGeneId":8530},{"hugoGeneSymbol":"CST8","entrezGeneId":10047},{"hugoGeneSymbol":"CST9","entrezGeneId":128822},{"hugoGeneSymbol":"CST9L","entrezGeneId":128821},{"hugoGeneSymbol":"CST9LP1","entrezGeneId":128820},{"hugoGeneSymbol":"CST9LP2","entrezGeneId":106480788},{"hugoGeneSymbol":"CSTA","entrezGeneId":1475},{"hugoGeneSymbol":"CSTB","entrezGeneId":1476},{"hugoGeneSymbol":"CSTF1","entrezGeneId":1477},{"hugoGeneSymbol":"CSTF2","entrezGeneId":1478},{"hugoGeneSymbol":"CSTF2T","entrezGeneId":23283},{"hugoGeneSymbol":"CSTF3","entrezGeneId":1479},{"hugoGeneSymbol":"CSTF3-DT","entrezGeneId":338739},{"hugoGeneSymbol":"CSTL1","entrezGeneId":128817},{"hugoGeneSymbol":"CSTP1","entrezGeneId":1480},{"hugoGeneSymbol":"CSTP2","entrezGeneId":1481},{"hugoGeneSymbol":"CT45A1","entrezGeneId":541466},{"hugoGeneSymbol":"CT45A10","entrezGeneId":102723631},{"hugoGeneSymbol":"CT45A11P","entrezGeneId":100129813},{"hugoGeneSymbol":"CT45A2","entrezGeneId":728911},{"hugoGeneSymbol":"CT45A3","entrezGeneId":441519},{"hugoGeneSymbol":"CT45A5","entrezGeneId":441521},{"hugoGeneSymbol":"CT45A6","entrezGeneId":541465},{"hugoGeneSymbol":"CT45A7","entrezGeneId":101060211},{"hugoGeneSymbol":"CT45A8","entrezGeneId":102723737},{"hugoGeneSymbol":"CT45A9","entrezGeneId":102723680},{"hugoGeneSymbol":"CT45B1P","entrezGeneId":100337646},{"hugoGeneSymbol":"CT47A1","entrezGeneId":728096},{"hugoGeneSymbol":"CT47A10","entrezGeneId":728036},{"hugoGeneSymbol":"CT47A11","entrezGeneId":255313},{"hugoGeneSymbol":"CT47A12","entrezGeneId":100507170},{"hugoGeneSymbol":"CT47A2","entrezGeneId":728090},{"hugoGeneSymbol":"CT47A3","entrezGeneId":728082},{"hugoGeneSymbol":"CT47A4","entrezGeneId":728075},{"hugoGeneSymbol":"CT47A5","entrezGeneId":728072},{"hugoGeneSymbol":"CT47A6","entrezGeneId":728062},{"hugoGeneSymbol":"CT47A7","entrezGeneId":653282},{"hugoGeneSymbol":"CT47A8","entrezGeneId":728049},{"hugoGeneSymbol":"CT47A9","entrezGeneId":728042},{"hugoGeneSymbol":"CT47B1","entrezGeneId":643311},{"hugoGeneSymbol":"CT55","entrezGeneId":54967},{"hugoGeneSymbol":"CT62","entrezGeneId":196993},{"hugoGeneSymbol":"CT83","entrezGeneId":203413},{"hugoGeneSymbol":"CTAA1","entrezGeneId":1483},{"hugoGeneSymbol":"CTAA2","entrezGeneId":1484},{"hugoGeneSymbol":"CTAG1A","entrezGeneId":246100},{"hugoGeneSymbol":"CTAG1B","entrezGeneId":1485},{"hugoGeneSymbol":"CTAG2","entrezGeneId":30848},{"hugoGeneSymbol":"CTAGE1","entrezGeneId":64693},{"hugoGeneSymbol":"CTAGE10P","entrezGeneId":220429},{"hugoGeneSymbol":"CTAGE11P","entrezGeneId":647288},{"hugoGeneSymbol":"CTAGE12P","entrezGeneId":392298},{"hugoGeneSymbol":"CTAGE13P","entrezGeneId":100421638},{"hugoGeneSymbol":"CTAGE14P","entrezGeneId":401018},{"hugoGeneSymbol":"CTAGE15","entrezGeneId":441294},{"hugoGeneSymbol":"CTAGE16P","entrezGeneId":341689},{"hugoGeneSymbol":"CTAGE3P","entrezGeneId":220112},{"hugoGeneSymbol":"CTAGE4","entrezGeneId":100128553},{"hugoGeneSymbol":"CTAGE6","entrezGeneId":340307},{"hugoGeneSymbol":"CTAGE7P","entrezGeneId":119437},{"hugoGeneSymbol":"CTAGE8","entrezGeneId":100142659},{"hugoGeneSymbol":"CTAGE9","entrezGeneId":643854},{"hugoGeneSymbol":"CTB-178M22.2","entrezGeneId":101927862},{"hugoGeneSymbol":"CTB-1I21.1","entrezGeneId":105379191},{"hugoGeneSymbol":"CTB-30L5.1","entrezGeneId":102724339},{"hugoGeneSymbol":"CTB-3M24.3","entrezGeneId":105379180},{"hugoGeneSymbol":"CTB-41I6.1","entrezGeneId":101928235},{"hugoGeneSymbol":"CTB-49A3.2","entrezGeneId":105379181},{"hugoGeneSymbol":"CTB-99A3.1","entrezGeneId":105378215},{"hugoGeneSymbol":"CTBP1","entrezGeneId":1487},{"hugoGeneSymbol":"CTBP1-AS","entrezGeneId":285463},{"hugoGeneSymbol":"CTBP1-DT","entrezGeneId":92070},{"hugoGeneSymbol":"CTBP2","entrezGeneId":1488},{"hugoGeneSymbol":"CTBP2P1","entrezGeneId":352905},{"hugoGeneSymbol":"CTBP2P2","entrezGeneId":100130970},{"hugoGeneSymbol":"CTBP2P3","entrezGeneId":220147},{"hugoGeneSymbol":"CTBP2P4","entrezGeneId":642909},{"hugoGeneSymbol":"CTBP2P5","entrezGeneId":646936},{"hugoGeneSymbol":"CTBP2P6","entrezGeneId":120449},{"hugoGeneSymbol":"CTBP2P7","entrezGeneId":401914},{"hugoGeneSymbol":"CTBP2P8","entrezGeneId":100420253},{"hugoGeneSymbol":"CTBS","entrezGeneId":1486},{"hugoGeneSymbol":"CTC-338M12.4","entrezGeneId":101928649},{"hugoGeneSymbol":"CTC1","entrezGeneId":80169},{"hugoGeneSymbol":"CTCF","entrezGeneId":10664},{"hugoGeneSymbol":"CTCFL","entrezGeneId":140690},{"hugoGeneSymbol":"CTD","entrezGeneId":1283},{"hugoGeneSymbol":"CTD-2154B17.1","entrezGeneId":102723441},{"hugoGeneSymbol":"CTD-2194D22.4","entrezGeneId":101929081},{"hugoGeneSymbol":"CTD-2201I18.1","entrezGeneId":101929215},{"hugoGeneSymbol":"CTD-2270F17.1","entrezGeneId":101928033},{"hugoGeneSymbol":"CTD-2297D10.2","entrezGeneId":101929176},{"hugoGeneSymbol":"CTD-2350J17.1","entrezGeneId":101929472},{"hugoGeneSymbol":"CTD-3080P12.3","entrezGeneId":101928857},{"hugoGeneSymbol":"CTDNEP1","entrezGeneId":23399},{"hugoGeneSymbol":"CTDP1","entrezGeneId":9150},{"hugoGeneSymbol":"CTDSP1","entrezGeneId":58190},{"hugoGeneSymbol":"CTDSP2","entrezGeneId":10106},{"hugoGeneSymbol":"CTDSPL","entrezGeneId":10217},{"hugoGeneSymbol":"CTDSPL2","entrezGeneId":51496},{"hugoGeneSymbol":"CTEPH1","entrezGeneId":100302516},{"hugoGeneSymbol":"CTF1","entrezGeneId":1489},{"hugoGeneSymbol":"CTF2P","entrezGeneId":100289419},{"hugoGeneSymbol":"CTGF","entrezGeneId":1490},{"hugoGeneSymbol":"CTH","entrezGeneId":1491},{"hugoGeneSymbol":"CTHRC1","entrezGeneId":115908},{"hugoGeneSymbol":"CTHRC1P1","entrezGeneId":106480299},{"hugoGeneSymbol":"CTIF","entrezGeneId":9811},{"hugoGeneSymbol":"CTLA4","entrezGeneId":1493},{"hugoGeneSymbol":"CTNNA1","entrezGeneId":1495},{"hugoGeneSymbol":"CTNNA1P1","entrezGeneId":1498},{"hugoGeneSymbol":"CTNNA2","entrezGeneId":1496},{"hugoGeneSymbol":"CTNNA3","entrezGeneId":29119},{"hugoGeneSymbol":"CTNNAL1","entrezGeneId":8727},{"hugoGeneSymbol":"CTNNB1","entrezGeneId":1499},{"hugoGeneSymbol":"CTNNBIP1","entrezGeneId":56998},{"hugoGeneSymbol":"CTNNBL1","entrezGeneId":56259},{"hugoGeneSymbol":"CTNND1","entrezGeneId":1500},{"hugoGeneSymbol":"CTNND2","entrezGeneId":1501},{"hugoGeneSymbol":"CTNS","entrezGeneId":1497},{"hugoGeneSymbol":"CTPL1","entrezGeneId":81863},{"hugoGeneSymbol":"CTPP","entrezGeneId":10306},{"hugoGeneSymbol":"CTPP5","entrezGeneId":791086},{"hugoGeneSymbol":"CTPS1","entrezGeneId":1503},{"hugoGeneSymbol":"CTPS2","entrezGeneId":56474},{"hugoGeneSymbol":"CTR9","entrezGeneId":9646},{"hugoGeneSymbol":"CTRB1","entrezGeneId":1504},{"hugoGeneSymbol":"CTRB2","entrezGeneId":440387},{"hugoGeneSymbol":"CTRC","entrezGeneId":11330},{"hugoGeneSymbol":"CTRCT25","entrezGeneId":80770},{"hugoGeneSymbol":"CTRCT27","entrezGeneId":266979},{"hugoGeneSymbol":"CTRCT28","entrezGeneId":493862},{"hugoGeneSymbol":"CTRCT29","entrezGeneId":101867602},{"hugoGeneSymbol":"CTRCT34","entrezGeneId":100302720},{"hugoGeneSymbol":"CTRCT35","entrezGeneId":619404},{"hugoGeneSymbol":"CTRCT37","entrezGeneId":100861439},{"hugoGeneSymbol":"CTRL","entrezGeneId":1506},{"hugoGeneSymbol":"CTSA","entrezGeneId":5476},{"hugoGeneSymbol":"CTSB","entrezGeneId":1508},{"hugoGeneSymbol":"CTSC","entrezGeneId":1075},{"hugoGeneSymbol":"CTSD","entrezGeneId":1509},{"hugoGeneSymbol":"CTSE","entrezGeneId":1510},{"hugoGeneSymbol":"CTSF","entrezGeneId":8722},{"hugoGeneSymbol":"CTSG","entrezGeneId":1511},{"hugoGeneSymbol":"CTSH","entrezGeneId":1512},{"hugoGeneSymbol":"CTSK","entrezGeneId":1513},{"hugoGeneSymbol":"CTSL","entrezGeneId":1514},{"hugoGeneSymbol":"CTSL3P","entrezGeneId":392360},{"hugoGeneSymbol":"CTSLP1","entrezGeneId":118945},{"hugoGeneSymbol":"CTSLP2","entrezGeneId":1517},{"hugoGeneSymbol":"CTSLP3","entrezGeneId":644021},{"hugoGeneSymbol":"CTSLP4","entrezGeneId":644496},{"hugoGeneSymbol":"CTSLP6","entrezGeneId":642413},{"hugoGeneSymbol":"CTSLP8","entrezGeneId":1518},{"hugoGeneSymbol":"CTSO","entrezGeneId":1519},{"hugoGeneSymbol":"CTSS","entrezGeneId":1520},{"hugoGeneSymbol":"CTSV","entrezGeneId":1515},{"hugoGeneSymbol":"CTSW","entrezGeneId":1521},{"hugoGeneSymbol":"CTSZ","entrezGeneId":1522},{"hugoGeneSymbol":"CTTN","entrezGeneId":2017},{"hugoGeneSymbol":"CTTNBP2","entrezGeneId":83992},{"hugoGeneSymbol":"CTTNBP2NL","entrezGeneId":55917},{"hugoGeneSymbol":"CTU1","entrezGeneId":90353},{"hugoGeneSymbol":"CTU2","entrezGeneId":348180},{"hugoGeneSymbol":"CTXN1","entrezGeneId":404217},{"hugoGeneSymbol":"CTXN2","entrezGeneId":399697},{"hugoGeneSymbol":"CTXN3","entrezGeneId":613212},{"hugoGeneSymbol":"CTXND1","entrezGeneId":100996492},{"hugoGeneSymbol":"CTXND2","entrezGeneId":100996521},{"hugoGeneSymbol":"CUBN","entrezGeneId":8029},{"hugoGeneSymbol":"CUBNP1","entrezGeneId":728064},{"hugoGeneSymbol":"CUBNP2","entrezGeneId":100289280},{"hugoGeneSymbol":"CUBNP3","entrezGeneId":100421634},{"hugoGeneSymbol":"CUEDC1","entrezGeneId":404093},{"hugoGeneSymbol":"CUEDC2","entrezGeneId":79004},{"hugoGeneSymbol":"CUL1","entrezGeneId":8454},{"hugoGeneSymbol":"CUL1P1","entrezGeneId":100288463},{"hugoGeneSymbol":"CUL2","entrezGeneId":8453},{"hugoGeneSymbol":"CUL3","entrezGeneId":8452},{"hugoGeneSymbol":"CUL4A","entrezGeneId":8451},{"hugoGeneSymbol":"CUL4AP1","entrezGeneId":100129008},{"hugoGeneSymbol":"CUL4B","entrezGeneId":8450},{"hugoGeneSymbol":"CUL5","entrezGeneId":8065},{"hugoGeneSymbol":"CUL7","entrezGeneId":9820},{"hugoGeneSymbol":"CUL9","entrezGeneId":23113},{"hugoGeneSymbol":"CUP2Q35","entrezGeneId":57306},{"hugoGeneSymbol":"CUTA","entrezGeneId":51596},{"hugoGeneSymbol":"CUTALP","entrezGeneId":253039},{"hugoGeneSymbol":"CUTC","entrezGeneId":51076},{"hugoGeneSymbol":"CUX1","entrezGeneId":1523},{"hugoGeneSymbol":"CUX2","entrezGeneId":23316},{"hugoGeneSymbol":"CUX2P1","entrezGeneId":100126596},{"hugoGeneSymbol":"CUX2P2","entrezGeneId":100126597},{"hugoGeneSymbol":"CUZD1","entrezGeneId":50624},{"hugoGeneSymbol":"CVMRF","entrezGeneId":494028},{"hugoGeneSymbol":"CWC15","entrezGeneId":51503},{"hugoGeneSymbol":"CWC22","entrezGeneId":57703},{"hugoGeneSymbol":"CWC25","entrezGeneId":54883},{"hugoGeneSymbol":"CWC27","entrezGeneId":10283},{"hugoGeneSymbol":"CWF19L1","entrezGeneId":55280},{"hugoGeneSymbol":"CWF19L2","entrezGeneId":143884},{"hugoGeneSymbol":"CWH43","entrezGeneId":80157},{"hugoGeneSymbol":"CX3CL1","entrezGeneId":6376},{"hugoGeneSymbol":"CX3CR1","entrezGeneId":1524},{"hugoGeneSymbol":"CXADR","entrezGeneId":1525},{"hugoGeneSymbol":"CXADRP1","entrezGeneId":653108},{"hugoGeneSymbol":"CXADRP2","entrezGeneId":646243},{"hugoGeneSymbol":"CXADRP3","entrezGeneId":440224},{"hugoGeneSymbol":"CXB3S","entrezGeneId":1526},{"hugoGeneSymbol":"CXCL1","entrezGeneId":2919},{"hugoGeneSymbol":"CXCL10","entrezGeneId":3627},{"hugoGeneSymbol":"CXCL11","entrezGeneId":6373},{"hugoGeneSymbol":"CXCL12","entrezGeneId":6387},{"hugoGeneSymbol":"CXCL13","entrezGeneId":10563},{"hugoGeneSymbol":"CXCL14","entrezGeneId":9547},{"hugoGeneSymbol":"CXCL16","entrezGeneId":58191},{"hugoGeneSymbol":"CXCL17","entrezGeneId":284340},{"hugoGeneSymbol":"CXCL1P1","entrezGeneId":50612},{"hugoGeneSymbol":"CXCL2","entrezGeneId":2920},{"hugoGeneSymbol":"CXCL3","entrezGeneId":2921},{"hugoGeneSymbol":"CXCL5","entrezGeneId":6374},{"hugoGeneSymbol":"CXCL6","entrezGeneId":6372},{"hugoGeneSymbol":"CXCL8","entrezGeneId":3576},{"hugoGeneSymbol":"CXCL9","entrezGeneId":4283},{"hugoGeneSymbol":"CXCR1","entrezGeneId":3577},{"hugoGeneSymbol":"CXCR2","entrezGeneId":3579},{"hugoGeneSymbol":"CXCR2P1","entrezGeneId":3580},{"hugoGeneSymbol":"CXCR3","entrezGeneId":2833},{"hugoGeneSymbol":"CXCR4","entrezGeneId":7852},{"hugoGeneSymbol":"CXCR5","entrezGeneId":643},{"hugoGeneSymbol":"CXCR6","entrezGeneId":10663},{"hugoGeneSymbol":"CXDUPQ26.3","entrezGeneId":105259600},{"hugoGeneSymbol":"CXORF21","entrezGeneId":80231},{"hugoGeneSymbol":"CXORF36","entrezGeneId":79742},{"hugoGeneSymbol":"CXORF38","entrezGeneId":159013},{"hugoGeneSymbol":"CXORF40A","entrezGeneId":91966},{"hugoGeneSymbol":"CXORF40B","entrezGeneId":541578},{"hugoGeneSymbol":"CXORF49","entrezGeneId":100130361},{"hugoGeneSymbol":"CXORF49B","entrezGeneId":100132994},{"hugoGeneSymbol":"CXORF51A","entrezGeneId":100129239},{"hugoGeneSymbol":"CXORF51B","entrezGeneId":100133053},{"hugoGeneSymbol":"CXORF56","entrezGeneId":63932},{"hugoGeneSymbol":"CXORF57","entrezGeneId":55086},{"hugoGeneSymbol":"CXORF58","entrezGeneId":254158},{"hugoGeneSymbol":"CXORF65","entrezGeneId":158830},{"hugoGeneSymbol":"CXORF66","entrezGeneId":347487},{"hugoGeneSymbol":"CXORF67","entrezGeneId":340602},{"hugoGeneSymbol":"CXXC1","entrezGeneId":30827},{"hugoGeneSymbol":"CXXC1P1","entrezGeneId":392459},{"hugoGeneSymbol":"CXXC4","entrezGeneId":80319},{"hugoGeneSymbol":"CXXC4-AS1","entrezGeneId":101929468},{"hugoGeneSymbol":"CXXC5","entrezGeneId":51523},{"hugoGeneSymbol":"CXXC5-AS1","entrezGeneId":111082989},{"hugoGeneSymbol":"CYAT1","entrezGeneId":100290481},{"hugoGeneSymbol":"CYB561","entrezGeneId":1534},{"hugoGeneSymbol":"CYB561A3","entrezGeneId":220002},{"hugoGeneSymbol":"CYB561D1","entrezGeneId":284613},{"hugoGeneSymbol":"CYB561D2","entrezGeneId":11068},{"hugoGeneSymbol":"CYB5A","entrezGeneId":1528},{"hugoGeneSymbol":"CYB5AP2","entrezGeneId":100128621},{"hugoGeneSymbol":"CYB5AP3","entrezGeneId":1531},{"hugoGeneSymbol":"CYB5AP4","entrezGeneId":1532},{"hugoGeneSymbol":"CYB5AP5","entrezGeneId":100289051},{"hugoGeneSymbol":"CYB5B","entrezGeneId":80777},{"hugoGeneSymbol":"CYB5D1","entrezGeneId":124637},{"hugoGeneSymbol":"CYB5D2","entrezGeneId":124936},{"hugoGeneSymbol":"CYB5R1","entrezGeneId":51706},{"hugoGeneSymbol":"CYB5R2","entrezGeneId":51700},{"hugoGeneSymbol":"CYB5R3","entrezGeneId":1727},{"hugoGeneSymbol":"CYB5R4","entrezGeneId":51167},{"hugoGeneSymbol":"CYB5RL","entrezGeneId":606495},{"hugoGeneSymbol":"CYBA","entrezGeneId":1535},{"hugoGeneSymbol":"CYBB","entrezGeneId":1536},{"hugoGeneSymbol":"CYBC1","entrezGeneId":79415},{"hugoGeneSymbol":"CYBRD1","entrezGeneId":79901},{"hugoGeneSymbol":"CYC1","entrezGeneId":1537},{"hugoGeneSymbol":"CYCS","entrezGeneId":54205},{"hugoGeneSymbol":"CYCSP1","entrezGeneId":122950},{"hugoGeneSymbol":"CYCSP10","entrezGeneId":360166},{"hugoGeneSymbol":"CYCSP11","entrezGeneId":360167},{"hugoGeneSymbol":"CYCSP12","entrezGeneId":360168},{"hugoGeneSymbol":"CYCSP14","entrezGeneId":360170},{"hugoGeneSymbol":"CYCSP16","entrezGeneId":360171},{"hugoGeneSymbol":"CYCSP17","entrezGeneId":360172},{"hugoGeneSymbol":"CYCSP18","entrezGeneId":360173},{"hugoGeneSymbol":"CYCSP19","entrezGeneId":360174},{"hugoGeneSymbol":"CYCSP2","entrezGeneId":360183},{"hugoGeneSymbol":"CYCSP20","entrezGeneId":349158},{"hugoGeneSymbol":"CYCSP22","entrezGeneId":360175},{"hugoGeneSymbol":"CYCSP23","entrezGeneId":360176},{"hugoGeneSymbol":"CYCSP24","entrezGeneId":360177},{"hugoGeneSymbol":"CYCSP25","entrezGeneId":120528},{"hugoGeneSymbol":"CYCSP26","entrezGeneId":360178},{"hugoGeneSymbol":"CYCSP27","entrezGeneId":341148},{"hugoGeneSymbol":"CYCSP28","entrezGeneId":360179},{"hugoGeneSymbol":"CYCSP29","entrezGeneId":360180},{"hugoGeneSymbol":"CYCSP3","entrezGeneId":349198},{"hugoGeneSymbol":"CYCSP30","entrezGeneId":121026},{"hugoGeneSymbol":"CYCSP32","entrezGeneId":360181},{"hugoGeneSymbol":"CYCSP33","entrezGeneId":221180},{"hugoGeneSymbol":"CYCSP34","entrezGeneId":360182},{"hugoGeneSymbol":"CYCSP35","entrezGeneId":121916},{"hugoGeneSymbol":"CYCSP38","entrezGeneId":360184},{"hugoGeneSymbol":"CYCSP39","entrezGeneId":342358},{"hugoGeneSymbol":"CYCSP4","entrezGeneId":360157},{"hugoGeneSymbol":"CYCSP40","entrezGeneId":360185},{"hugoGeneSymbol":"CYCSP41","entrezGeneId":360186},{"hugoGeneSymbol":"CYCSP42","entrezGeneId":343727},{"hugoGeneSymbol":"CYCSP43","entrezGeneId":360187},{"hugoGeneSymbol":"CYCSP44","entrezGeneId":349391},{"hugoGeneSymbol":"CYCSP45","entrezGeneId":352852},{"hugoGeneSymbol":"CYCSP46","entrezGeneId":286550},{"hugoGeneSymbol":"CYCSP48","entrezGeneId":360188},{"hugoGeneSymbol":"CYCSP49","entrezGeneId":360009},{"hugoGeneSymbol":"CYCSP5","entrezGeneId":360158},{"hugoGeneSymbol":"CYCSP51","entrezGeneId":343045},{"hugoGeneSymbol":"CYCSP52","entrezGeneId":360155},{"hugoGeneSymbol":"CYCSP53","entrezGeneId":360156},{"hugoGeneSymbol":"CYCSP55","entrezGeneId":157317},{"hugoGeneSymbol":"CYCSP6","entrezGeneId":360159},{"hugoGeneSymbol":"CYCSP7","entrezGeneId":164837},{"hugoGeneSymbol":"CYCSP8","entrezGeneId":360160},{"hugoGeneSymbol":"CYCTP","entrezGeneId":360163},{"hugoGeneSymbol":"CYFIP1","entrezGeneId":23191},{"hugoGeneSymbol":"CYFIP2","entrezGeneId":26999},{"hugoGeneSymbol":"CYGB","entrezGeneId":114757},{"hugoGeneSymbol":"CYHR1","entrezGeneId":50626},{"hugoGeneSymbol":"CYLC1","entrezGeneId":1538},{"hugoGeneSymbol":"CYLC2","entrezGeneId":1539},{"hugoGeneSymbol":"CYLD","entrezGeneId":1540},{"hugoGeneSymbol":"CYMD","entrezGeneId":1541},{"hugoGeneSymbol":"CYMP","entrezGeneId":643160},{"hugoGeneSymbol":"CYMP-AS1","entrezGeneId":440602},{"hugoGeneSymbol":"CYP11A1","entrezGeneId":1583},{"hugoGeneSymbol":"CYP11B1","entrezGeneId":1584},{"hugoGeneSymbol":"CYP11B2","entrezGeneId":1585},{"hugoGeneSymbol":"CYP17A1","entrezGeneId":1586},{"hugoGeneSymbol":"CYP17A1-AS1","entrezGeneId":102724307},{"hugoGeneSymbol":"CYP19A1","entrezGeneId":1588},{"hugoGeneSymbol":"CYP1A1","entrezGeneId":1543},{"hugoGeneSymbol":"CYP1A2","entrezGeneId":1544},{"hugoGeneSymbol":"CYP1B1","entrezGeneId":1545},{"hugoGeneSymbol":"CYP1B1-AS1","entrezGeneId":285154},{"hugoGeneSymbol":"CYP1D1P","entrezGeneId":100133307},{"hugoGeneSymbol":"CYP20A1","entrezGeneId":57404},{"hugoGeneSymbol":"CYP21A1P","entrezGeneId":1590},{"hugoGeneSymbol":"CYP21A2","entrezGeneId":1589},{"hugoGeneSymbol":"CYP24A1","entrezGeneId":1591},{"hugoGeneSymbol":"CYP26A1","entrezGeneId":1592},{"hugoGeneSymbol":"CYP26B1","entrezGeneId":56603},{"hugoGeneSymbol":"CYP26C1","entrezGeneId":340665},{"hugoGeneSymbol":"CYP27A1","entrezGeneId":1593},{"hugoGeneSymbol":"CYP27B1","entrezGeneId":1594},{"hugoGeneSymbol":"CYP27C1","entrezGeneId":339761},{"hugoGeneSymbol":"CYP2A13","entrezGeneId":1553},{"hugoGeneSymbol":"CYP2A6","entrezGeneId":1548},{"hugoGeneSymbol":"CYP2A7","entrezGeneId":1549},{"hugoGeneSymbol":"CYP2A7P1","entrezGeneId":1550},{"hugoGeneSymbol":"CYP2AB1P","entrezGeneId":647265},{"hugoGeneSymbol":"CYP2AC1P","entrezGeneId":106478960},{"hugoGeneSymbol":"CYP2B6","entrezGeneId":1555},{"hugoGeneSymbol":"CYP2B7P","entrezGeneId":1556},{"hugoGeneSymbol":"CYP2C115P","entrezGeneId":100874513},{"hugoGeneSymbol":"CYP2C18","entrezGeneId":1562},{"hugoGeneSymbol":"CYP2C19","entrezGeneId":1557},{"hugoGeneSymbol":"CYP2C23P","entrezGeneId":107436076},{"hugoGeneSymbol":"CYP2C56P","entrezGeneId":106478959},{"hugoGeneSymbol":"CYP2C58P","entrezGeneId":106480430},{"hugoGeneSymbol":"CYP2C59P","entrezGeneId":100874505},{"hugoGeneSymbol":"CYP2C60P","entrezGeneId":106480748},{"hugoGeneSymbol":"CYP2C61P","entrezGeneId":106480734},{"hugoGeneSymbol":"CYP2C63P","entrezGeneId":107063541},{"hugoGeneSymbol":"CYP2C8","entrezGeneId":1558},{"hugoGeneSymbol":"CYP2C9","entrezGeneId":1559},{"hugoGeneSymbol":"CYP2D6","entrezGeneId":1565},{"hugoGeneSymbol":"CYP2D7","entrezGeneId":1564},{"hugoGeneSymbol":"CYP2D7BP","entrezGeneId":1566},{"hugoGeneSymbol":"CYP2D8P","entrezGeneId":1568},{"hugoGeneSymbol":"CYP2E1","entrezGeneId":1571},{"hugoGeneSymbol":"CYP2F1","entrezGeneId":1572},{"hugoGeneSymbol":"CYP2F2P","entrezGeneId":171427},{"hugoGeneSymbol":"CYP2G1P","entrezGeneId":22952},{"hugoGeneSymbol":"CYP2G2P","entrezGeneId":83757},{"hugoGeneSymbol":"CYP2J2","entrezGeneId":1573},{"hugoGeneSymbol":"CYP2R1","entrezGeneId":120227},{"hugoGeneSymbol":"CYP2S1","entrezGeneId":29785},{"hugoGeneSymbol":"CYP2T1P","entrezGeneId":171523},{"hugoGeneSymbol":"CYP2T3P","entrezGeneId":163007},{"hugoGeneSymbol":"CYP2U1","entrezGeneId":113612},{"hugoGeneSymbol":"CYP2W1","entrezGeneId":54905},{"hugoGeneSymbol":"CYP39A1","entrezGeneId":51302},{"hugoGeneSymbol":"CYP3A137P","entrezGeneId":107063543},{"hugoGeneSymbol":"CYP3A4","entrezGeneId":1576},{"hugoGeneSymbol":"CYP3A43","entrezGeneId":64816},{"hugoGeneSymbol":"CYP3A5","entrezGeneId":1577},{"hugoGeneSymbol":"CYP3A51P","entrezGeneId":1578},{"hugoGeneSymbol":"CYP3A52P","entrezGeneId":106478983},{"hugoGeneSymbol":"CYP3A54P","entrezGeneId":106480749},{"hugoGeneSymbol":"CYP3A7","entrezGeneId":1551},{"hugoGeneSymbol":"CYP3A7-CYP3A51P","entrezGeneId":100861540},{"hugoGeneSymbol":"CYP3AP2","entrezGeneId":79424},{"hugoGeneSymbol":"CYP46A1","entrezGeneId":10858},{"hugoGeneSymbol":"CYP46A4P","entrezGeneId":100874494},{"hugoGeneSymbol":"CYP4A11","entrezGeneId":1579},{"hugoGeneSymbol":"CYP4A22","entrezGeneId":284541},{"hugoGeneSymbol":"CYP4A22-AS1","entrezGeneId":104355148},{"hugoGeneSymbol":"CYP4A26P","entrezGeneId":107080641},{"hugoGeneSymbol":"CYP4A27P","entrezGeneId":100422288},{"hugoGeneSymbol":"CYP4A43P","entrezGeneId":100874495},{"hugoGeneSymbol":"CYP4A44P","entrezGeneId":106481791},{"hugoGeneSymbol":"CYP4B1","entrezGeneId":1580},{"hugoGeneSymbol":"CYP4F10P","entrezGeneId":646575},{"hugoGeneSymbol":"CYP4F11","entrezGeneId":57834},{"hugoGeneSymbol":"CYP4F12","entrezGeneId":66002},{"hugoGeneSymbol":"CYP4F2","entrezGeneId":8529},{"hugoGeneSymbol":"CYP4F22","entrezGeneId":126410},{"hugoGeneSymbol":"CYP4F23P","entrezGeneId":100422238},{"hugoGeneSymbol":"CYP4F24P","entrezGeneId":388514},{"hugoGeneSymbol":"CYP4F25P","entrezGeneId":100288827},{"hugoGeneSymbol":"CYP4F26P","entrezGeneId":106478958},{"hugoGeneSymbol":"CYP4F27P","entrezGeneId":107133494},{"hugoGeneSymbol":"CYP4F29P","entrezGeneId":54055},{"hugoGeneSymbol":"CYP4F3","entrezGeneId":4051},{"hugoGeneSymbol":"CYP4F30P","entrezGeneId":100132708},{"hugoGeneSymbol":"CYP4F31P","entrezGeneId":107403068},{"hugoGeneSymbol":"CYP4F32P","entrezGeneId":107133497},{"hugoGeneSymbol":"CYP4F33P","entrezGeneId":107133499},{"hugoGeneSymbol":"CYP4F34P","entrezGeneId":100422247},{"hugoGeneSymbol":"CYP4F35P","entrezGeneId":284233},{"hugoGeneSymbol":"CYP4F36P","entrezGeneId":100422235},{"hugoGeneSymbol":"CYP4F44P","entrezGeneId":106480733},{"hugoGeneSymbol":"CYP4F59P","entrezGeneId":100132340},{"hugoGeneSymbol":"CYP4F60P","entrezGeneId":107126294},{"hugoGeneSymbol":"CYP4F61P","entrezGeneId":107457588},{"hugoGeneSymbol":"CYP4F62P","entrezGeneId":646802},{"hugoGeneSymbol":"CYP4F8","entrezGeneId":11283},{"hugoGeneSymbol":"CYP4F9P","entrezGeneId":105369296},{"hugoGeneSymbol":"CYP4V2","entrezGeneId":285440},{"hugoGeneSymbol":"CYP4X1","entrezGeneId":260293},{"hugoGeneSymbol":"CYP4Z1","entrezGeneId":199974},{"hugoGeneSymbol":"CYP4Z2P","entrezGeneId":163720},{"hugoGeneSymbol":"CYP51A1","entrezGeneId":1595},{"hugoGeneSymbol":"CYP51A1-AS1","entrezGeneId":613126},{"hugoGeneSymbol":"CYP51A1P1","entrezGeneId":83528},{"hugoGeneSymbol":"CYP51A1P2","entrezGeneId":83530},{"hugoGeneSymbol":"CYP51A1P3","entrezGeneId":100422264},{"hugoGeneSymbol":"CYP7A1","entrezGeneId":1581},{"hugoGeneSymbol":"CYP7B1","entrezGeneId":9420},{"hugoGeneSymbol":"CYP8B1","entrezGeneId":1582},{"hugoGeneSymbol":"CYR61","entrezGeneId":3491},{"hugoGeneSymbol":"CYREN","entrezGeneId":78996},{"hugoGeneSymbol":"CYS1","entrezGeneId":192668},{"hugoGeneSymbol":"CYSLTR1","entrezGeneId":10800},{"hugoGeneSymbol":"CYSLTR2","entrezGeneId":57105},{"hugoGeneSymbol":"CYSRT1","entrezGeneId":375791},{"hugoGeneSymbol":"CYSTM1","entrezGeneId":84418},{"hugoGeneSymbol":"CYTH1","entrezGeneId":9267},{"hugoGeneSymbol":"CYTH2","entrezGeneId":9266},{"hugoGeneSymbol":"CYTH3","entrezGeneId":9265},{"hugoGeneSymbol":"CYTH4","entrezGeneId":27128},{"hugoGeneSymbol":"CYTIP","entrezGeneId":9595},{"hugoGeneSymbol":"CYTL1","entrezGeneId":54360},{"hugoGeneSymbol":"CYTOR","entrezGeneId":112597},{"hugoGeneSymbol":"CYYR1","entrezGeneId":116159},{"hugoGeneSymbol":"CYYR1-AS1","entrezGeneId":100996571},{"hugoGeneSymbol":"CZ1P-ASNS","entrezGeneId":107986827},{"hugoGeneSymbol":"D1S111","entrezGeneId":7824},{"hugoGeneSymbol":"D21S2088E","entrezGeneId":266917},{"hugoGeneSymbol":"D2HGDH","entrezGeneId":728294},{"hugoGeneSymbol":"D6S207E","entrezGeneId":7921},{"hugoGeneSymbol":"DA4","entrezGeneId":100188695},{"hugoGeneSymbol":"DAAM1","entrezGeneId":23002},{"hugoGeneSymbol":"DAAM2","entrezGeneId":23500},{"hugoGeneSymbol":"DAB1","entrezGeneId":1600},{"hugoGeneSymbol":"DAB1-AS1","entrezGeneId":101926890},{"hugoGeneSymbol":"DAB2","entrezGeneId":1601},{"hugoGeneSymbol":"DAB2IP","entrezGeneId":153090},{"hugoGeneSymbol":"DACH1","entrezGeneId":1602},{"hugoGeneSymbol":"DACH2","entrezGeneId":117154},{"hugoGeneSymbol":"DACOR1","entrezGeneId":100131796},{"hugoGeneSymbol":"DACT1","entrezGeneId":51339},{"hugoGeneSymbol":"DACT2","entrezGeneId":168002},{"hugoGeneSymbol":"DACT3","entrezGeneId":147906},{"hugoGeneSymbol":"DACT3-AS1","entrezGeneId":100506068},{"hugoGeneSymbol":"DAD1","entrezGeneId":1603},{"hugoGeneSymbol":"DAD1P1","entrezGeneId":56286},{"hugoGeneSymbol":"DAG1","entrezGeneId":1605},{"hugoGeneSymbol":"DAGLA","entrezGeneId":747},{"hugoGeneSymbol":"DAGLB","entrezGeneId":221955},{"hugoGeneSymbol":"DALIR","entrezGeneId":104940698},{"hugoGeneSymbol":"DALRD3","entrezGeneId":55152},{"hugoGeneSymbol":"DANCR","entrezGeneId":57291},{"hugoGeneSymbol":"DAND5","entrezGeneId":199699},{"hugoGeneSymbol":"DANT1","entrezGeneId":106029310},{"hugoGeneSymbol":"DANT2","entrezGeneId":642776},{"hugoGeneSymbol":"DAO","entrezGeneId":1610},{"hugoGeneSymbol":"DAOA","entrezGeneId":267012},{"hugoGeneSymbol":"DAOA-AS1","entrezGeneId":282706},{"hugoGeneSymbol":"DAP","entrezGeneId":1611},{"hugoGeneSymbol":"DAP3","entrezGeneId":7818},{"hugoGeneSymbol":"DAP3P1","entrezGeneId":359804},{"hugoGeneSymbol":"DAP3P2","entrezGeneId":359774},{"hugoGeneSymbol":"DAPK1","entrezGeneId":1612},{"hugoGeneSymbol":"DAPK1-IT1","entrezGeneId":100506897},{"hugoGeneSymbol":"DAPK2","entrezGeneId":23604},{"hugoGeneSymbol":"DAPK3","entrezGeneId":1613},{"hugoGeneSymbol":"DAPL1","entrezGeneId":92196},{"hugoGeneSymbol":"DAPP1","entrezGeneId":27071},{"hugoGeneSymbol":"DARS","entrezGeneId":1615},{"hugoGeneSymbol":"DARS-AS1","entrezGeneId":101928243},{"hugoGeneSymbol":"DARS2","entrezGeneId":55157},{"hugoGeneSymbol":"DAW1","entrezGeneId":164781},{"hugoGeneSymbol":"DAXX","entrezGeneId":1616},{"hugoGeneSymbol":"DAZ1","entrezGeneId":1617},{"hugoGeneSymbol":"DAZ2","entrezGeneId":57055},{"hugoGeneSymbol":"DAZ3","entrezGeneId":57054},{"hugoGeneSymbol":"DAZ4","entrezGeneId":57135},{"hugoGeneSymbol":"DAZAP1","entrezGeneId":26528},{"hugoGeneSymbol":"DAZAP2","entrezGeneId":9802},{"hugoGeneSymbol":"DAZAP2P1","entrezGeneId":645805},{"hugoGeneSymbol":"DAZL","entrezGeneId":1618},{"hugoGeneSymbol":"DBA2","entrezGeneId":114086},{"hugoGeneSymbol":"DBET","entrezGeneId":100419743},{"hugoGeneSymbol":"DBF4","entrezGeneId":10926},{"hugoGeneSymbol":"DBF4B","entrezGeneId":80174},{"hugoGeneSymbol":"DBF4P1","entrezGeneId":645084},{"hugoGeneSymbol":"DBF4P2","entrezGeneId":100420180},{"hugoGeneSymbol":"DBF4P3","entrezGeneId":112272612},{"hugoGeneSymbol":"DBH","entrezGeneId":1621},{"hugoGeneSymbol":"DBH-AS1","entrezGeneId":138948},{"hugoGeneSymbol":"DBI","entrezGeneId":1622},{"hugoGeneSymbol":"DBIL5P","entrezGeneId":100131454},{"hugoGeneSymbol":"DBIL5P2","entrezGeneId":100169989},{"hugoGeneSymbol":"DBIP1","entrezGeneId":1624},{"hugoGeneSymbol":"DBIP2","entrezGeneId":1623},{"hugoGeneSymbol":"DBIP3","entrezGeneId":791082},{"hugoGeneSymbol":"DBN1","entrezGeneId":1627},{"hugoGeneSymbol":"DBNDD1","entrezGeneId":79007},{"hugoGeneSymbol":"DBNDD2","entrezGeneId":55861},{"hugoGeneSymbol":"DBNL","entrezGeneId":28988},{"hugoGeneSymbol":"DBP","entrezGeneId":1628},{"hugoGeneSymbol":"DBR1","entrezGeneId":51163},{"hugoGeneSymbol":"DBT","entrezGeneId":1629},{"hugoGeneSymbol":"DBX1","entrezGeneId":120237},{"hugoGeneSymbol":"DBX2","entrezGeneId":440097},{"hugoGeneSymbol":"DCAF1","entrezGeneId":9730},{"hugoGeneSymbol":"DCAF10","entrezGeneId":79269},{"hugoGeneSymbol":"DCAF11","entrezGeneId":80344},{"hugoGeneSymbol":"DCAF12","entrezGeneId":25853},{"hugoGeneSymbol":"DCAF12L1","entrezGeneId":139170},{"hugoGeneSymbol":"DCAF12L2","entrezGeneId":340578},{"hugoGeneSymbol":"DCAF13","entrezGeneId":25879},{"hugoGeneSymbol":"DCAF13P1","entrezGeneId":100129009},{"hugoGeneSymbol":"DCAF13P2","entrezGeneId":100288979},{"hugoGeneSymbol":"DCAF13P3","entrezGeneId":100132724},{"hugoGeneSymbol":"DCAF15","entrezGeneId":90379},{"hugoGeneSymbol":"DCAF16","entrezGeneId":54876},{"hugoGeneSymbol":"DCAF17","entrezGeneId":80067},{"hugoGeneSymbol":"DCAF4","entrezGeneId":26094},{"hugoGeneSymbol":"DCAF4L1","entrezGeneId":285429},{"hugoGeneSymbol":"DCAF4L2","entrezGeneId":138009},{"hugoGeneSymbol":"DCAF5","entrezGeneId":8816},{"hugoGeneSymbol":"DCAF6","entrezGeneId":55827},{"hugoGeneSymbol":"DCAF7","entrezGeneId":10238},{"hugoGeneSymbol":"DCAF8","entrezGeneId":50717},{"hugoGeneSymbol":"DCAF8L1","entrezGeneId":139425},{"hugoGeneSymbol":"DCAF8L2","entrezGeneId":347442},{"hugoGeneSymbol":"DCAKD","entrezGeneId":79877},{"hugoGeneSymbol":"DCANP1","entrezGeneId":140947},{"hugoGeneSymbol":"DCBLD1","entrezGeneId":285761},{"hugoGeneSymbol":"DCBLD2","entrezGeneId":131566},{"hugoGeneSymbol":"DCC","entrezGeneId":1630},{"hugoGeneSymbol":"DCD","entrezGeneId":117159},{"hugoGeneSymbol":"DCDC1","entrezGeneId":341019},{"hugoGeneSymbol":"DCDC2","entrezGeneId":51473},{"hugoGeneSymbol":"DCDC2B","entrezGeneId":149069},{"hugoGeneSymbol":"DCDC2C","entrezGeneId":728597},{"hugoGeneSymbol":"DCHS1","entrezGeneId":8642},{"hugoGeneSymbol":"DCHS2","entrezGeneId":54798},{"hugoGeneSymbol":"DCK","entrezGeneId":1633},{"hugoGeneSymbol":"DCLK1","entrezGeneId":9201},{"hugoGeneSymbol":"DCLK2","entrezGeneId":166614},{"hugoGeneSymbol":"DCLK3","entrezGeneId":85443},{"hugoGeneSymbol":"DCLRE1A","entrezGeneId":9937},{"hugoGeneSymbol":"DCLRE1B","entrezGeneId":64858},{"hugoGeneSymbol":"DCLRE1C","entrezGeneId":64421},{"hugoGeneSymbol":"DCLRE1CP1","entrezGeneId":105376432},{"hugoGeneSymbol":"DCN","entrezGeneId":1634},{"hugoGeneSymbol":"DCP1A","entrezGeneId":55802},{"hugoGeneSymbol":"DCP1B","entrezGeneId":196513},{"hugoGeneSymbol":"DCP2","entrezGeneId":167227},{"hugoGeneSymbol":"DCPS","entrezGeneId":28960},{"hugoGeneSymbol":"DCR","entrezGeneId":1637},{"hugoGeneSymbol":"DCST1","entrezGeneId":149095},{"hugoGeneSymbol":"DCST1-AS1","entrezGeneId":100505666},{"hugoGeneSymbol":"DCST2","entrezGeneId":127579},{"hugoGeneSymbol":"DCSTAMP","entrezGeneId":81501},{"hugoGeneSymbol":"DCT","entrezGeneId":1638},{"hugoGeneSymbol":"DCTD","entrezGeneId":1635},{"hugoGeneSymbol":"DCTN1","entrezGeneId":1639},{"hugoGeneSymbol":"DCTN1-AS1","entrezGeneId":100189589},{"hugoGeneSymbol":"DCTN2","entrezGeneId":10540},{"hugoGeneSymbol":"DCTN3","entrezGeneId":11258},{"hugoGeneSymbol":"DCTN4","entrezGeneId":51164},{"hugoGeneSymbol":"DCTN5","entrezGeneId":84516},{"hugoGeneSymbol":"DCTN6","entrezGeneId":10671},{"hugoGeneSymbol":"DCTPP1","entrezGeneId":79077},{"hugoGeneSymbol":"DCUN1D1","entrezGeneId":54165},{"hugoGeneSymbol":"DCUN1D2","entrezGeneId":55208},{"hugoGeneSymbol":"DCUN1D2-AS","entrezGeneId":100874229},{"hugoGeneSymbol":"DCUN1D3","entrezGeneId":123879},{"hugoGeneSymbol":"DCUN1D4","entrezGeneId":23142},{"hugoGeneSymbol":"DCUN1D5","entrezGeneId":84259},{"hugoGeneSymbol":"DCX","entrezGeneId":1641},{"hugoGeneSymbol":"DCXR","entrezGeneId":51181},{"hugoGeneSymbol":"DDA1","entrezGeneId":79016},{"hugoGeneSymbol":"DDAH1","entrezGeneId":23576},{"hugoGeneSymbol":"DDAH2","entrezGeneId":23564},{"hugoGeneSymbol":"DDB1","entrezGeneId":1642},{"hugoGeneSymbol":"DDB2","entrezGeneId":1643},{"hugoGeneSymbol":"DDC","entrezGeneId":1644},{"hugoGeneSymbol":"DDC-AS1","entrezGeneId":100129427},{"hugoGeneSymbol":"DDD3","entrezGeneId":102997065},{"hugoGeneSymbol":"DDH2","entrezGeneId":102775567},{"hugoGeneSymbol":"DDHD1","entrezGeneId":80821},{"hugoGeneSymbol":"DDHD2","entrezGeneId":23259},{"hugoGeneSymbol":"DDI1","entrezGeneId":414301},{"hugoGeneSymbol":"DDI2","entrezGeneId":84301},{"hugoGeneSymbol":"DDIAS","entrezGeneId":220042},{"hugoGeneSymbol":"DDIT3","entrezGeneId":1649},{"hugoGeneSymbol":"DDIT4","entrezGeneId":54541},{"hugoGeneSymbol":"DDIT4-AS1","entrezGeneId":110806271},{"hugoGeneSymbol":"DDIT4L","entrezGeneId":115265},{"hugoGeneSymbol":"DDN","entrezGeneId":23109},{"hugoGeneSymbol":"DDN-AS1","entrezGeneId":105369758},{"hugoGeneSymbol":"DDO","entrezGeneId":8528},{"hugoGeneSymbol":"DDOST","entrezGeneId":1650},{"hugoGeneSymbol":"DDR1","entrezGeneId":780},{"hugoGeneSymbol":"DDR1-DT","entrezGeneId":414771},{"hugoGeneSymbol":"DDR2","entrezGeneId":4921},{"hugoGeneSymbol":"DDRGK1","entrezGeneId":65992},{"hugoGeneSymbol":"DDT","entrezGeneId":1652},{"hugoGeneSymbol":"DDTL","entrezGeneId":100037417},{"hugoGeneSymbol":"DDTP1","entrezGeneId":101060160},{"hugoGeneSymbol":"DDU","entrezGeneId":29764},{"hugoGeneSymbol":"DDX1","entrezGeneId":1653},{"hugoGeneSymbol":"DDX10","entrezGeneId":1662},{"hugoGeneSymbol":"DDX10P1","entrezGeneId":100421371},{"hugoGeneSymbol":"DDX10P2","entrezGeneId":401533},{"hugoGeneSymbol":"DDX11","entrezGeneId":1663},{"hugoGeneSymbol":"DDX11-AS1","entrezGeneId":100506660},{"hugoGeneSymbol":"DDX11L1","entrezGeneId":100287102},{"hugoGeneSymbol":"DDX11L10","entrezGeneId":100287029},{"hugoGeneSymbol":"DDX11L11","entrezGeneId":100887824},{"hugoGeneSymbol":"DDX11L12","entrezGeneId":100532727},{"hugoGeneSymbol":"DDX11L16","entrezGeneId":727856},{"hugoGeneSymbol":"DDX11L2","entrezGeneId":84771},{"hugoGeneSymbol":"DDX11L3","entrezGeneId":100302657},{"hugoGeneSymbol":"DDX11L4","entrezGeneId":100337622},{"hugoGeneSymbol":"DDX11L5","entrezGeneId":100287596},{"hugoGeneSymbol":"DDX11L8","entrezGeneId":100302090},{"hugoGeneSymbol":"DDX11L9","entrezGeneId":100288486},{"hugoGeneSymbol":"DDX12P","entrezGeneId":440081},{"hugoGeneSymbol":"DDX17","entrezGeneId":10521},{"hugoGeneSymbol":"DDX18","entrezGeneId":8886},{"hugoGeneSymbol":"DDX18P1","entrezGeneId":319099},{"hugoGeneSymbol":"DDX18P2","entrezGeneId":651053},{"hugoGeneSymbol":"DDX18P3","entrezGeneId":442164},{"hugoGeneSymbol":"DDX18P4","entrezGeneId":402222},{"hugoGeneSymbol":"DDX18P5","entrezGeneId":646378},{"hugoGeneSymbol":"DDX18P6","entrezGeneId":100131370},{"hugoGeneSymbol":"DDX19A","entrezGeneId":55308},{"hugoGeneSymbol":"DDX19B","entrezGeneId":11269},{"hugoGeneSymbol":"DDX20","entrezGeneId":11218},{"hugoGeneSymbol":"DDX20P1","entrezGeneId":100421369},{"hugoGeneSymbol":"DDX21","entrezGeneId":9188},{"hugoGeneSymbol":"DDX23","entrezGeneId":9416},{"hugoGeneSymbol":"DDX24","entrezGeneId":57062},{"hugoGeneSymbol":"DDX25","entrezGeneId":29118},{"hugoGeneSymbol":"DDX27","entrezGeneId":55661},{"hugoGeneSymbol":"DDX28","entrezGeneId":55794},{"hugoGeneSymbol":"DDX31","entrezGeneId":64794},{"hugoGeneSymbol":"DDX39A","entrezGeneId":10212},{"hugoGeneSymbol":"DDX39AP1","entrezGeneId":646164},{"hugoGeneSymbol":"DDX39B","entrezGeneId":7919},{"hugoGeneSymbol":"DDX39B-AS1","entrezGeneId":106478957},{"hugoGeneSymbol":"DDX39BP1","entrezGeneId":100048904},{"hugoGeneSymbol":"DDX39BP2","entrezGeneId":100048923},{"hugoGeneSymbol":"DDX3P1","entrezGeneId":100133180},{"hugoGeneSymbol":"DDX3P2","entrezGeneId":100874489},{"hugoGeneSymbol":"DDX3P3","entrezGeneId":650560},{"hugoGeneSymbol":"DDX3X","entrezGeneId":1654},{"hugoGeneSymbol":"DDX3Y","entrezGeneId":8653},{"hugoGeneSymbol":"DDX4","entrezGeneId":54514},{"hugoGeneSymbol":"DDX41","entrezGeneId":51428},{"hugoGeneSymbol":"DDX42","entrezGeneId":11325},{"hugoGeneSymbol":"DDX43","entrezGeneId":55510},{"hugoGeneSymbol":"DDX43P1","entrezGeneId":100421307},{"hugoGeneSymbol":"DDX43P2","entrezGeneId":100533714},{"hugoGeneSymbol":"DDX43P3","entrezGeneId":106481709},{"hugoGeneSymbol":"DDX46","entrezGeneId":9879},{"hugoGeneSymbol":"DDX47","entrezGeneId":51202},{"hugoGeneSymbol":"DDX49","entrezGeneId":54555},{"hugoGeneSymbol":"DDX5","entrezGeneId":1655},{"hugoGeneSymbol":"DDX50","entrezGeneId":79009},{"hugoGeneSymbol":"DDX50P1","entrezGeneId":192146},{"hugoGeneSymbol":"DDX50P2","entrezGeneId":100421328},{"hugoGeneSymbol":"DDX51","entrezGeneId":317781},{"hugoGeneSymbol":"DDX52","entrezGeneId":11056},{"hugoGeneSymbol":"DDX53","entrezGeneId":168400},{"hugoGeneSymbol":"DDX54","entrezGeneId":79039},{"hugoGeneSymbol":"DDX55","entrezGeneId":57696},{"hugoGeneSymbol":"DDX55P1","entrezGeneId":100129640},{"hugoGeneSymbol":"DDX56","entrezGeneId":54606},{"hugoGeneSymbol":"DDX58","entrezGeneId":23586},{"hugoGeneSymbol":"DDX59","entrezGeneId":83479},{"hugoGeneSymbol":"DDX6","entrezGeneId":1656},{"hugoGeneSymbol":"DDX60","entrezGeneId":55601},{"hugoGeneSymbol":"DDX60L","entrezGeneId":91351},{"hugoGeneSymbol":"DDX6P1","entrezGeneId":442192},{"hugoGeneSymbol":"DDX6P2","entrezGeneId":100130117},{"hugoGeneSymbol":"DEAF1","entrezGeneId":10522},{"hugoGeneSymbol":"DEC1","entrezGeneId":50514},{"hugoGeneSymbol":"DECR1","entrezGeneId":1666},{"hugoGeneSymbol":"DECR2","entrezGeneId":26063},{"hugoGeneSymbol":"DEDD","entrezGeneId":9191},{"hugoGeneSymbol":"DEDD2","entrezGeneId":162989},{"hugoGeneSymbol":"DEF6","entrezGeneId":50619},{"hugoGeneSymbol":"DEF8","entrezGeneId":54849},{"hugoGeneSymbol":"DEFA1","entrezGeneId":1667},{"hugoGeneSymbol":"DEFA10P","entrezGeneId":449493},{"hugoGeneSymbol":"DEFA11P","entrezGeneId":724068},{"hugoGeneSymbol":"DEFA1A3","entrezGeneId":613253},{"hugoGeneSymbol":"DEFA1B","entrezGeneId":728358},{"hugoGeneSymbol":"DEFA3","entrezGeneId":1668},{"hugoGeneSymbol":"DEFA4","entrezGeneId":1669},{"hugoGeneSymbol":"DEFA5","entrezGeneId":1670},{"hugoGeneSymbol":"DEFA6","entrezGeneId":1671},{"hugoGeneSymbol":"DEFA7P","entrezGeneId":724067},{"hugoGeneSymbol":"DEFA8P","entrezGeneId":449491},{"hugoGeneSymbol":"DEFA9P","entrezGeneId":449492},{"hugoGeneSymbol":"DEFB1","entrezGeneId":1672},{"hugoGeneSymbol":"DEFB103A","entrezGeneId":414325},{"hugoGeneSymbol":"DEFB103B","entrezGeneId":55894},{"hugoGeneSymbol":"DEFB104A","entrezGeneId":140596},{"hugoGeneSymbol":"DEFB104B","entrezGeneId":503618},{"hugoGeneSymbol":"DEFB105A","entrezGeneId":245908},{"hugoGeneSymbol":"DEFB105B","entrezGeneId":504180},{"hugoGeneSymbol":"DEFB106A","entrezGeneId":245909},{"hugoGeneSymbol":"DEFB106B","entrezGeneId":503841},{"hugoGeneSymbol":"DEFB107A","entrezGeneId":245910},{"hugoGeneSymbol":"DEFB107B","entrezGeneId":503614},{"hugoGeneSymbol":"DEFB108A","entrezGeneId":503694},{"hugoGeneSymbol":"DEFB108B","entrezGeneId":245911},{"hugoGeneSymbol":"DEFB108C","entrezGeneId":503837},{"hugoGeneSymbol":"DEFB108D","entrezGeneId":504185},{"hugoGeneSymbol":"DEFB108E","entrezGeneId":503840},{"hugoGeneSymbol":"DEFB108F","entrezGeneId":100133128},{"hugoGeneSymbol":"DEFB109A","entrezGeneId":245912},{"hugoGeneSymbol":"DEFB109B","entrezGeneId":641517},{"hugoGeneSymbol":"DEFB109C","entrezGeneId":100286963},{"hugoGeneSymbol":"DEFB109D","entrezGeneId":503838},{"hugoGeneSymbol":"DEFB109E","entrezGeneId":503839},{"hugoGeneSymbol":"DEFB109F","entrezGeneId":110806268},{"hugoGeneSymbol":"DEFB110","entrezGeneId":245913},{"hugoGeneSymbol":"DEFB112","entrezGeneId":245915},{"hugoGeneSymbol":"DEFB113","entrezGeneId":245927},{"hugoGeneSymbol":"DEFB114","entrezGeneId":245928},{"hugoGeneSymbol":"DEFB115","entrezGeneId":245929},{"hugoGeneSymbol":"DEFB116","entrezGeneId":245930},{"hugoGeneSymbol":"DEFB117","entrezGeneId":245931},{"hugoGeneSymbol":"DEFB118","entrezGeneId":117285},{"hugoGeneSymbol":"DEFB119","entrezGeneId":245932},{"hugoGeneSymbol":"DEFB121","entrezGeneId":245934},{"hugoGeneSymbol":"DEFB122","entrezGeneId":245935},{"hugoGeneSymbol":"DEFB123","entrezGeneId":245936},{"hugoGeneSymbol":"DEFB124","entrezGeneId":245937},{"hugoGeneSymbol":"DEFB125","entrezGeneId":245938},{"hugoGeneSymbol":"DEFB126","entrezGeneId":81623},{"hugoGeneSymbol":"DEFB127","entrezGeneId":140850},{"hugoGeneSymbol":"DEFB128","entrezGeneId":245939},{"hugoGeneSymbol":"DEFB129","entrezGeneId":140881},{"hugoGeneSymbol":"DEFB130A","entrezGeneId":245940},{"hugoGeneSymbol":"DEFB130B","entrezGeneId":100133267},{"hugoGeneSymbol":"DEFB130C","entrezGeneId":110806270},{"hugoGeneSymbol":"DEFB130D","entrezGeneId":110806292},{"hugoGeneSymbol":"DEFB131A","entrezGeneId":644414},{"hugoGeneSymbol":"DEFB131B","entrezGeneId":100129216},{"hugoGeneSymbol":"DEFB131C","entrezGeneId":100128174},{"hugoGeneSymbol":"DEFB131D","entrezGeneId":100287066},{"hugoGeneSymbol":"DEFB131E","entrezGeneId":110806269},{"hugoGeneSymbol":"DEFB132","entrezGeneId":400830},{"hugoGeneSymbol":"DEFB133","entrezGeneId":403339},{"hugoGeneSymbol":"DEFB134","entrezGeneId":613211},{"hugoGeneSymbol":"DEFB135","entrezGeneId":613209},{"hugoGeneSymbol":"DEFB136","entrezGeneId":613210},{"hugoGeneSymbol":"DEFB4A","entrezGeneId":1673},{"hugoGeneSymbol":"DEFB4B","entrezGeneId":100289462},{"hugoGeneSymbol":"DEFT1P","entrezGeneId":170949},{"hugoGeneSymbol":"DEFT1P2","entrezGeneId":100287083},{"hugoGeneSymbol":"DEGS1","entrezGeneId":8560},{"hugoGeneSymbol":"DEGS2","entrezGeneId":123099},{"hugoGeneSymbol":"DEK","entrezGeneId":7913},{"hugoGeneSymbol":"DEL10Q26","entrezGeneId":780911},{"hugoGeneSymbol":"DEL11P15P14","entrezGeneId":100240736},{"hugoGeneSymbol":"DEL13Q14","entrezGeneId":100653382},{"hugoGeneSymbol":"DEL14Q11Q22","entrezGeneId":100505392},{"hugoGeneSymbol":"DEL15Q11.2","entrezGeneId":102997063},{"hugoGeneSymbol":"DEL15Q13.3","entrezGeneId":100188869},{"hugoGeneSymbol":"DEL15Q14","entrezGeneId":107522105},{"hugoGeneSymbol":"DEL15Q15.3","entrezGeneId":100240731},{"hugoGeneSymbol":"DEL15Q24","entrezGeneId":100502567},{"hugoGeneSymbol":"DEL15Q25","entrezGeneId":100820632},{"hugoGeneSymbol":"DEL15Q26QTER","entrezGeneId":100271921},{"hugoGeneSymbol":"DEL16P11.2","entrezGeneId":100187724},{"hugoGeneSymbol":"DEL16P12.1P11.2","entrezGeneId":100526742},{"hugoGeneSymbol":"DEL16P13.2","entrezGeneId":107457589},{"hugoGeneSymbol":"DEL16P13.3","entrezGeneId":100188814},{"hugoGeneSymbol":"DEL17P13.1","entrezGeneId":100653374},{"hugoGeneSymbol":"DEL17Q11.2","entrezGeneId":100852404},{"hugoGeneSymbol":"DEL17Q12","entrezGeneId":100884130},{"hugoGeneSymbol":"DEL17Q21.31","entrezGeneId":791085},{"hugoGeneSymbol":"DEL17Q23.1Q23.2","entrezGeneId":100415941},{"hugoGeneSymbol":"DEL18P","entrezGeneId":100240747},{"hugoGeneSymbol":"DEL18Q","entrezGeneId":100216483},{"hugoGeneSymbol":"DEL19P13.13","entrezGeneId":100526791},{"hugoGeneSymbol":"DEL19Q13.11","entrezGeneId":100306978},{"hugoGeneSymbol":"DEL19Q13.11P","entrezGeneId":109136577},{"hugoGeneSymbol":"DEL1P32P31","entrezGeneId":100532738},{"hugoGeneSymbol":"DEL1P36","entrezGeneId":100240737},{"hugoGeneSymbol":"DEL1Q21","entrezGeneId":100217370},{"hugoGeneSymbol":"DEL1Q41Q42","entrezGeneId":100529242},{"hugoGeneSymbol":"DEL1Q43Q44","entrezGeneId":100190984},{"hugoGeneSymbol":"DEL22Q11.2","entrezGeneId":100188856},{"hugoGeneSymbol":"DEL2P12P11.2","entrezGeneId":100529243},{"hugoGeneSymbol":"DEL2P16.1-P15","entrezGeneId":100240740},{"hugoGeneSymbol":"DEL2P21","entrezGeneId":100415942},{"hugoGeneSymbol":"DEL2Q23.1","entrezGeneId":100820633},{"hugoGeneSymbol":"DEL2Q31","entrezGeneId":100192308},{"hugoGeneSymbol":"DEL2Q32Q33","entrezGeneId":100190983},{"hugoGeneSymbol":"DEL3PTERP25","entrezGeneId":100653385},{"hugoGeneSymbol":"DEL3Q13.31","entrezGeneId":102216266},{"hugoGeneSymbol":"DEL3Q29","entrezGeneId":100188788},{"hugoGeneSymbol":"DEL4Q21","entrezGeneId":100528026},{"hugoGeneSymbol":"DEL5Q12","entrezGeneId":102997064},{"hugoGeneSymbol":"DEL6PTER","entrezGeneId":100270803},{"hugoGeneSymbol":"DEL6Q11Q14","entrezGeneId":100529221},{"hugoGeneSymbol":"DEL6Q24Q25","entrezGeneId":100505391},{"hugoGeneSymbol":"DEL7Q11.23","entrezGeneId":100653380},{"hugoGeneSymbol":"DEL8Q12Q21","entrezGeneId":100885787},{"hugoGeneSymbol":"DEL8Q13","entrezGeneId":100526741},{"hugoGeneSymbol":"DEL8Q21.11","entrezGeneId":100689491},{"hugoGeneSymbol":"DEL9P","entrezGeneId":100240748},{"hugoGeneSymbol":"DELE1","entrezGeneId":9812},{"hugoGeneSymbol":"DELXP11.3","entrezGeneId":100271686},{"hugoGeneSymbol":"DELXP21","entrezGeneId":100505389},{"hugoGeneSymbol":"DELXP22.11","entrezGeneId":100529118},{"hugoGeneSymbol":"DELXQ21","entrezGeneId":100887743},{"hugoGeneSymbol":"DELXQ28","entrezGeneId":100302680},{"hugoGeneSymbol":"DELYQ11","entrezGeneId":619469},{"hugoGeneSymbol":"DENND1A","entrezGeneId":57706},{"hugoGeneSymbol":"DENND1B","entrezGeneId":163486},{"hugoGeneSymbol":"DENND1C","entrezGeneId":79958},{"hugoGeneSymbol":"DENND2A","entrezGeneId":27147},{"hugoGeneSymbol":"DENND2C","entrezGeneId":163259},{"hugoGeneSymbol":"DENND2D","entrezGeneId":79961},{"hugoGeneSymbol":"DENND3","entrezGeneId":22898},{"hugoGeneSymbol":"DENND4A","entrezGeneId":10260},{"hugoGeneSymbol":"DENND4B","entrezGeneId":9909},{"hugoGeneSymbol":"DENND4C","entrezGeneId":55667},{"hugoGeneSymbol":"DENND5A","entrezGeneId":23258},{"hugoGeneSymbol":"DENND5B","entrezGeneId":160518},{"hugoGeneSymbol":"DENND5B-AS1","entrezGeneId":100874249},{"hugoGeneSymbol":"DENND6A","entrezGeneId":201627},{"hugoGeneSymbol":"DENND6A-AS1","entrezGeneId":106144528},{"hugoGeneSymbol":"DENND6A-DT","entrezGeneId":101929159},{"hugoGeneSymbol":"DENND6B","entrezGeneId":414918},{"hugoGeneSymbol":"DENR","entrezGeneId":8562},{"hugoGeneSymbol":"DEPDC1","entrezGeneId":55635},{"hugoGeneSymbol":"DEPDC1-AS1","entrezGeneId":101927220},{"hugoGeneSymbol":"DEPDC1B","entrezGeneId":55789},{"hugoGeneSymbol":"DEPDC1P1","entrezGeneId":730888},{"hugoGeneSymbol":"DEPDC1P2","entrezGeneId":100126446},{"hugoGeneSymbol":"DEPDC4","entrezGeneId":120863},{"hugoGeneSymbol":"DEPDC5","entrezGeneId":9681},{"hugoGeneSymbol":"DEPDC7","entrezGeneId":91614},{"hugoGeneSymbol":"DEPP1","entrezGeneId":11067},{"hugoGeneSymbol":"DEPTOR","entrezGeneId":64798},{"hugoGeneSymbol":"DER22T11-22","entrezGeneId":100529146},{"hugoGeneSymbol":"DER22T8-22","entrezGeneId":100529149},{"hugoGeneSymbol":"DERA","entrezGeneId":51071},{"hugoGeneSymbol":"DERL1","entrezGeneId":79139},{"hugoGeneSymbol":"DERL2","entrezGeneId":51009},{"hugoGeneSymbol":"DERL3","entrezGeneId":91319},{"hugoGeneSymbol":"DES","entrezGeneId":1674},{"hugoGeneSymbol":"DES-LCR","entrezGeneId":106866982},{"hugoGeneSymbol":"DESI1","entrezGeneId":27351},{"hugoGeneSymbol":"DESI2","entrezGeneId":51029},{"hugoGeneSymbol":"DET1","entrezGeneId":55070},{"hugoGeneSymbol":"DEUP1","entrezGeneId":159989},{"hugoGeneSymbol":"DEXI","entrezGeneId":28955},{"hugoGeneSymbol":"DFCTRPS","entrezGeneId":100188774},{"hugoGeneSymbol":"DFFA","entrezGeneId":1676},{"hugoGeneSymbol":"DFFB","entrezGeneId":1677},{"hugoGeneSymbol":"DFFBP1","entrezGeneId":100422581},{"hugoGeneSymbol":"DFN5","entrezGeneId":1681},{"hugoGeneSymbol":"DFN8","entrezGeneId":1684},{"hugoGeneSymbol":"DFNA16","entrezGeneId":1694},{"hugoGeneSymbol":"DFNA18","entrezGeneId":85507},{"hugoGeneSymbol":"DFNA19","entrezGeneId":1696},{"hugoGeneSymbol":"DFNA21","entrezGeneId":192644},{"hugoGeneSymbol":"DFNA24","entrezGeneId":23723},{"hugoGeneSymbol":"DFNA27","entrezGeneId":23722},{"hugoGeneSymbol":"DFNA29","entrezGeneId":23720},{"hugoGeneSymbol":"DFNA30","entrezGeneId":23719},{"hugoGeneSymbol":"DFNA31","entrezGeneId":347737},{"hugoGeneSymbol":"DFNA32","entrezGeneId":94138},{"hugoGeneSymbol":"DFNA33","entrezGeneId":29779},{"hugoGeneSymbol":"DFNA34","entrezGeneId":94139},{"hugoGeneSymbol":"DFNA35","entrezGeneId":94140},{"hugoGeneSymbol":"DFNA37","entrezGeneId":317718},{"hugoGeneSymbol":"DFNA40","entrezGeneId":63945},{"hugoGeneSymbol":"DFNA42","entrezGeneId":347713},{"hugoGeneSymbol":"DFNA43","entrezGeneId":192676},{"hugoGeneSymbol":"DFNA45","entrezGeneId":246287},{"hugoGeneSymbol":"DFNA46","entrezGeneId":246288},{"hugoGeneSymbol":"DFNA47","entrezGeneId":246289},{"hugoGeneSymbol":"DFNA49","entrezGeneId":317664},{"hugoGeneSymbol":"DFNA53","entrezGeneId":353347},{"hugoGeneSymbol":"DFNA54","entrezGeneId":448962},{"hugoGeneSymbol":"DFNA55","entrezGeneId":109729104},{"hugoGeneSymbol":"DFNA57","entrezGeneId":100093632},{"hugoGeneSymbol":"DFNA58","entrezGeneId":100359395},{"hugoGeneSymbol":"DFNA59","entrezGeneId":100271924},{"hugoGeneSymbol":"DFNA60","entrezGeneId":109729087},{"hugoGeneSymbol":"DFNA61","entrezGeneId":109729090},{"hugoGeneSymbol":"DFNA62","entrezGeneId":109729106},{"hugoGeneSymbol":"DFNA63","entrezGeneId":109729100},{"hugoGeneSymbol":"DFNA7","entrezGeneId":1689},{"hugoGeneSymbol":"DFNB100","entrezGeneId":109729099},{"hugoGeneSymbol":"DFNB13","entrezGeneId":1705},{"hugoGeneSymbol":"DFNB14","entrezGeneId":1706},{"hugoGeneSymbol":"DFNB17","entrezGeneId":1709},{"hugoGeneSymbol":"DFNB19","entrezGeneId":1712},{"hugoGeneSymbol":"DFNB20","entrezGeneId":1713},{"hugoGeneSymbol":"DFNB26","entrezGeneId":23714},{"hugoGeneSymbol":"DFNB27","entrezGeneId":23713},{"hugoGeneSymbol":"DFNB32","entrezGeneId":113877},{"hugoGeneSymbol":"DFNB33","entrezGeneId":170508},{"hugoGeneSymbol":"DFNB34","entrezGeneId":245821},{"hugoGeneSymbol":"DFNB38","entrezGeneId":337991},{"hugoGeneSymbol":"DFNB40","entrezGeneId":379003},{"hugoGeneSymbol":"DFNB43","entrezGeneId":449481},{"hugoGeneSymbol":"DFNB45","entrezGeneId":449483},{"hugoGeneSymbol":"DFNB46","entrezGeneId":449488},{"hugoGeneSymbol":"DFNB47","entrezGeneId":449489},{"hugoGeneSymbol":"DFNB5","entrezGeneId":1697},{"hugoGeneSymbol":"DFNB50","entrezGeneId":404542},{"hugoGeneSymbol":"DFNB51","entrezGeneId":448963},{"hugoGeneSymbol":"DFNB54","entrezGeneId":109729086},{"hugoGeneSymbol":"DFNB55","entrezGeneId":494148},{"hugoGeneSymbol":"DFNB56","entrezGeneId":494149},{"hugoGeneSymbol":"DFNB58","entrezGeneId":619211},{"hugoGeneSymbol":"DFNB62","entrezGeneId":692220},{"hugoGeneSymbol":"DFNB65","entrezGeneId":692219},{"hugoGeneSymbol":"DFNB69","entrezGeneId":751783},{"hugoGeneSymbol":"DFNB71","entrezGeneId":100302513},{"hugoGeneSymbol":"DFNB75","entrezGeneId":100093716},{"hugoGeneSymbol":"DFNB78","entrezGeneId":109729088},{"hugoGeneSymbol":"DFNB80","entrezGeneId":109729105},{"hugoGeneSymbol":"DFNB81","entrezGeneId":100653390},{"hugoGeneSymbol":"DFNB83","entrezGeneId":100359400},{"hugoGeneSymbol":"DFNB85","entrezGeneId":100359399},{"hugoGeneSymbol":"DFNB87","entrezGeneId":109729093},{"hugoGeneSymbol":"DFNB90","entrezGeneId":109729094},{"hugoGeneSymbol":"DFNB92","entrezGeneId":109729107},{"hugoGeneSymbol":"DFNB96","entrezGeneId":100861440},{"hugoGeneSymbol":"DFNM1","entrezGeneId":54362},{"hugoGeneSymbol":"DFNM2","entrezGeneId":494142},{"hugoGeneSymbol":"DFNX3","entrezGeneId":1680},{"hugoGeneSymbol":"DFNY1","entrezGeneId":724074},{"hugoGeneSymbol":"DGAT1","entrezGeneId":8694},{"hugoGeneSymbol":"DGAT2","entrezGeneId":84649},{"hugoGeneSymbol":"DGAT2L6","entrezGeneId":347516},{"hugoGeneSymbol":"DGAT2L7P","entrezGeneId":646409},{"hugoGeneSymbol":"DGCR","entrezGeneId":1714},{"hugoGeneSymbol":"DGCR10","entrezGeneId":26222},{"hugoGeneSymbol":"DGCR11","entrezGeneId":25786},{"hugoGeneSymbol":"DGCR12","entrezGeneId":25784},{"hugoGeneSymbol":"DGCR2","entrezGeneId":9993},{"hugoGeneSymbol":"DGCR5","entrezGeneId":26220},{"hugoGeneSymbol":"DGCR6","entrezGeneId":8214},{"hugoGeneSymbol":"DGCR6L","entrezGeneId":85359},{"hugoGeneSymbol":"DGCR8","entrezGeneId":54487},{"hugoGeneSymbol":"DGCR9","entrezGeneId":25787},{"hugoGeneSymbol":"DGKA","entrezGeneId":1606},{"hugoGeneSymbol":"DGKB","entrezGeneId":1607},{"hugoGeneSymbol":"DGKD","entrezGeneId":8527},{"hugoGeneSymbol":"DGKE","entrezGeneId":8526},{"hugoGeneSymbol":"DGKG","entrezGeneId":1608},{"hugoGeneSymbol":"DGKH","entrezGeneId":160851},{"hugoGeneSymbol":"DGKI","entrezGeneId":9162},{"hugoGeneSymbol":"DGKK","entrezGeneId":139189},{"hugoGeneSymbol":"DGKQ","entrezGeneId":1609},{"hugoGeneSymbol":"DGKZ","entrezGeneId":8525},{"hugoGeneSymbol":"DGKZP1","entrezGeneId":400126},{"hugoGeneSymbol":"DGLUCY","entrezGeneId":80017},{"hugoGeneSymbol":"DGS2","entrezGeneId":8026},{"hugoGeneSymbol":"DGUOK","entrezGeneId":1716},{"hugoGeneSymbol":"DGUOK-AS1","entrezGeneId":100874048},{"hugoGeneSymbol":"DHCR24","entrezGeneId":1718},{"hugoGeneSymbol":"DHCR7","entrezGeneId":1717},{"hugoGeneSymbol":"DHDDS","entrezGeneId":79947},{"hugoGeneSymbol":"DHDH","entrezGeneId":27294},{"hugoGeneSymbol":"DHFR","entrezGeneId":1719},{"hugoGeneSymbol":"DHFR2","entrezGeneId":200895},{"hugoGeneSymbol":"DHFRP1","entrezGeneId":573971},{"hugoGeneSymbol":"DHFRP2","entrezGeneId":729816},{"hugoGeneSymbol":"DHFRP3","entrezGeneId":1720},{"hugoGeneSymbol":"DHFRP5","entrezGeneId":100132056},{"hugoGeneSymbol":"DHFRP6","entrezGeneId":109729123},{"hugoGeneSymbol":"DHH","entrezGeneId":50846},{"hugoGeneSymbol":"DHODH","entrezGeneId":1723},{"hugoGeneSymbol":"DHPS","entrezGeneId":1725},{"hugoGeneSymbol":"DHRS1","entrezGeneId":115817},{"hugoGeneSymbol":"DHRS11","entrezGeneId":79154},{"hugoGeneSymbol":"DHRS12","entrezGeneId":79758},{"hugoGeneSymbol":"DHRS13","entrezGeneId":147015},{"hugoGeneSymbol":"DHRS2","entrezGeneId":10202},{"hugoGeneSymbol":"DHRS3","entrezGeneId":9249},{"hugoGeneSymbol":"DHRS4","entrezGeneId":10901},{"hugoGeneSymbol":"DHRS4-AS1","entrezGeneId":55449},{"hugoGeneSymbol":"DHRS4L1","entrezGeneId":728635},{"hugoGeneSymbol":"DHRS4L2","entrezGeneId":317749},{"hugoGeneSymbol":"DHRS7","entrezGeneId":51635},{"hugoGeneSymbol":"DHRS7B","entrezGeneId":25979},{"hugoGeneSymbol":"DHRS7C","entrezGeneId":201140},{"hugoGeneSymbol":"DHRS9","entrezGeneId":10170},{"hugoGeneSymbol":"DHRSX","entrezGeneId":207063},{"hugoGeneSymbol":"DHRSX-IT1","entrezGeneId":106478924},{"hugoGeneSymbol":"DHS","entrezGeneId":10774},{"hugoGeneSymbol":"DHS6S1","entrezGeneId":107305681},{"hugoGeneSymbol":"DHTKD1","entrezGeneId":55526},{"hugoGeneSymbol":"DHX15","entrezGeneId":1665},{"hugoGeneSymbol":"DHX16","entrezGeneId":8449},{"hugoGeneSymbol":"DHX29","entrezGeneId":54505},{"hugoGeneSymbol":"DHX30","entrezGeneId":22907},{"hugoGeneSymbol":"DHX32","entrezGeneId":55760},{"hugoGeneSymbol":"DHX33","entrezGeneId":56919},{"hugoGeneSymbol":"DHX34","entrezGeneId":9704},{"hugoGeneSymbol":"DHX35","entrezGeneId":60625},{"hugoGeneSymbol":"DHX36","entrezGeneId":170506},{"hugoGeneSymbol":"DHX37","entrezGeneId":57647},{"hugoGeneSymbol":"DHX38","entrezGeneId":9785},{"hugoGeneSymbol":"DHX40","entrezGeneId":79665},{"hugoGeneSymbol":"DHX40P1","entrezGeneId":107133522},{"hugoGeneSymbol":"DHX57","entrezGeneId":90957},{"hugoGeneSymbol":"DHX58","entrezGeneId":79132},{"hugoGeneSymbol":"DHX8","entrezGeneId":1659},{"hugoGeneSymbol":"DHX9","entrezGeneId":1660},{"hugoGeneSymbol":"DHX9P1","entrezGeneId":1661},{"hugoGeneSymbol":"DIABLO","entrezGeneId":56616},{"hugoGeneSymbol":"DIANPH","entrezGeneId":23771},{"hugoGeneSymbol":"DIAPH1","entrezGeneId":1729},{"hugoGeneSymbol":"DIAPH2","entrezGeneId":1730},{"hugoGeneSymbol":"DIAPH2-AS1","entrezGeneId":10824},{"hugoGeneSymbol":"DIAPH3","entrezGeneId":81624},{"hugoGeneSymbol":"DIAPH3-AS1","entrezGeneId":100874195},{"hugoGeneSymbol":"DIAPH3-AS2","entrezGeneId":100874196},{"hugoGeneSymbol":"DICER1","entrezGeneId":23405},{"hugoGeneSymbol":"DICER1-AS1","entrezGeneId":400242},{"hugoGeneSymbol":"DIDO1","entrezGeneId":11083},{"hugoGeneSymbol":"DIEXF","entrezGeneId":27042},{"hugoGeneSymbol":"DIGIT","entrezGeneId":108868751},{"hugoGeneSymbol":"DIH1","entrezGeneId":1732},{"hugoGeneSymbol":"DIH2","entrezGeneId":780899},{"hugoGeneSymbol":"DIMT1","entrezGeneId":27292},{"hugoGeneSymbol":"DIMT1P1","entrezGeneId":100422385},{"hugoGeneSymbol":"DINOL","entrezGeneId":108783646},{"hugoGeneSymbol":"DIO1","entrezGeneId":1733},{"hugoGeneSymbol":"DIO2","entrezGeneId":1734},{"hugoGeneSymbol":"DIO2-AS1","entrezGeneId":100628307},{"hugoGeneSymbol":"DIO3","entrezGeneId":1735},{"hugoGeneSymbol":"DIO3OS","entrezGeneId":64150},{"hugoGeneSymbol":"DIP","entrezGeneId":100188011},{"hugoGeneSymbol":"DIP2A","entrezGeneId":23181},{"hugoGeneSymbol":"DIP2A-IT1","entrezGeneId":100862692},{"hugoGeneSymbol":"DIP2B","entrezGeneId":57609},{"hugoGeneSymbol":"DIP2C","entrezGeneId":22982},{"hugoGeneSymbol":"DIRAS1","entrezGeneId":148252},{"hugoGeneSymbol":"DIRAS2","entrezGeneId":54769},{"hugoGeneSymbol":"DIRAS3","entrezGeneId":9077},{"hugoGeneSymbol":"DIRC1","entrezGeneId":116093},{"hugoGeneSymbol":"DIRC2","entrezGeneId":84925},{"hugoGeneSymbol":"DIRC3","entrezGeneId":729582},{"hugoGeneSymbol":"DIRC3-AS1","entrezGeneId":105373877},{"hugoGeneSymbol":"DIS3","entrezGeneId":22894},{"hugoGeneSymbol":"DIS3L","entrezGeneId":115752},{"hugoGeneSymbol":"DIS3L2","entrezGeneId":129563},{"hugoGeneSymbol":"DIS3L2P1","entrezGeneId":282697},{"hugoGeneSymbol":"DISC1","entrezGeneId":27185},{"hugoGeneSymbol":"DISC1-IT1","entrezGeneId":104472714},{"hugoGeneSymbol":"DISC1FP1","entrezGeneId":101929222},{"hugoGeneSymbol":"DISC2","entrezGeneId":27184},{"hugoGeneSymbol":"DISP1","entrezGeneId":84976},{"hugoGeneSymbol":"DISP2","entrezGeneId":85455},{"hugoGeneSymbol":"DISP3","entrezGeneId":57540},{"hugoGeneSymbol":"DIXDC1","entrezGeneId":85458},{"hugoGeneSymbol":"DKBI","entrezGeneId":80870},{"hugoGeneSymbol":"DKC1","entrezGeneId":1736},{"hugoGeneSymbol":"DKFZP434A062","entrezGeneId":26102},{"hugoGeneSymbol":"DKFZP434H168","entrezGeneId":26077},{"hugoGeneSymbol":"DKFZP434K028","entrezGeneId":26070},{"hugoGeneSymbol":"DKFZP434L192","entrezGeneId":222029},{"hugoGeneSymbol":"DKFZP451B082","entrezGeneId":401282},{"hugoGeneSymbol":"DKFZP586I1420","entrezGeneId":222161},{"hugoGeneSymbol":"DKFZP779M0652","entrezGeneId":374387},{"hugoGeneSymbol":"DKK1","entrezGeneId":22943},{"hugoGeneSymbol":"DKK2","entrezGeneId":27123},{"hugoGeneSymbol":"DKK3","entrezGeneId":27122},{"hugoGeneSymbol":"DKK4","entrezGeneId":27121},{"hugoGeneSymbol":"DKKL1","entrezGeneId":27120},{"hugoGeneSymbol":"DKKL1P1","entrezGeneId":128848},{"hugoGeneSymbol":"DLAT","entrezGeneId":1737},{"hugoGeneSymbol":"DLC1","entrezGeneId":10395},{"hugoGeneSymbol":"DLD","entrezGeneId":1738},{"hugoGeneSymbol":"DLEC1","entrezGeneId":9940},{"hugoGeneSymbol":"DLEC1P1","entrezGeneId":100421153},{"hugoGeneSymbol":"DLEU1","entrezGeneId":10301},{"hugoGeneSymbol":"DLEU1-AS1","entrezGeneId":103689915},{"hugoGeneSymbol":"DLEU2","entrezGeneId":8847},{"hugoGeneSymbol":"DLEU2L","entrezGeneId":79469},{"hugoGeneSymbol":"DLEU7","entrezGeneId":220107},{"hugoGeneSymbol":"DLEU7-AS1","entrezGeneId":100874074},{"hugoGeneSymbol":"DLG1","entrezGeneId":1739},{"hugoGeneSymbol":"DLG1-AS1","entrezGeneId":100507086},{"hugoGeneSymbol":"DLG2","entrezGeneId":1740},{"hugoGeneSymbol":"DLG2-AS1","entrezGeneId":100302690},{"hugoGeneSymbol":"DLG3","entrezGeneId":1741},{"hugoGeneSymbol":"DLG3-AS1","entrezGeneId":100873930},{"hugoGeneSymbol":"DLG4","entrezGeneId":1742},{"hugoGeneSymbol":"DLG5","entrezGeneId":9231},{"hugoGeneSymbol":"DLG5-AS1","entrezGeneId":100128292},{"hugoGeneSymbol":"DLGAP1","entrezGeneId":9229},{"hugoGeneSymbol":"DLGAP1-AS1","entrezGeneId":649446},{"hugoGeneSymbol":"DLGAP1-AS2","entrezGeneId":84777},{"hugoGeneSymbol":"DLGAP1-AS3","entrezGeneId":201477},{"hugoGeneSymbol":"DLGAP1-AS4","entrezGeneId":101410534},{"hugoGeneSymbol":"DLGAP1-AS5","entrezGeneId":284215},{"hugoGeneSymbol":"DLGAP2","entrezGeneId":9228},{"hugoGeneSymbol":"DLGAP2-AS1","entrezGeneId":100507435},{"hugoGeneSymbol":"DLGAP3","entrezGeneId":58512},{"hugoGeneSymbol":"DLGAP4","entrezGeneId":22839},{"hugoGeneSymbol":"DLGAP4-AS1","entrezGeneId":101926987},{"hugoGeneSymbol":"DLGAP5","entrezGeneId":9787},{"hugoGeneSymbol":"DLGAP5P1","entrezGeneId":360014},{"hugoGeneSymbol":"DLK1","entrezGeneId":8788},{"hugoGeneSymbol":"DLK2","entrezGeneId":65989},{"hugoGeneSymbol":"DLL1","entrezGeneId":28514},{"hugoGeneSymbol":"DLL3","entrezGeneId":10683},{"hugoGeneSymbol":"DLL4","entrezGeneId":54567},{"hugoGeneSymbol":"DLST","entrezGeneId":1743},{"hugoGeneSymbol":"DLSTP1","entrezGeneId":1744},{"hugoGeneSymbol":"DLX1","entrezGeneId":1745},{"hugoGeneSymbol":"DLX2","entrezGeneId":1746},{"hugoGeneSymbol":"DLX2-DT","entrezGeneId":104326193},{"hugoGeneSymbol":"DLX3","entrezGeneId":1747},{"hugoGeneSymbol":"DLX4","entrezGeneId":1748},{"hugoGeneSymbol":"DLX5","entrezGeneId":1749},{"hugoGeneSymbol":"DLX6","entrezGeneId":1750},{"hugoGeneSymbol":"DLX6-AS1","entrezGeneId":285987},{"hugoGeneSymbol":"DLX6-AS2","entrezGeneId":100873931},{"hugoGeneSymbol":"DM1-AS","entrezGeneId":109729182},{"hugoGeneSymbol":"DMAC1","entrezGeneId":90871},{"hugoGeneSymbol":"DMAC2","entrezGeneId":55101},{"hugoGeneSymbol":"DMAP1","entrezGeneId":55929},{"hugoGeneSymbol":"DMBT1","entrezGeneId":1755},{"hugoGeneSymbol":"DMBT1P1","entrezGeneId":375940},{"hugoGeneSymbol":"DMBX1","entrezGeneId":127343},{"hugoGeneSymbol":"DMC1","entrezGeneId":11144},{"hugoGeneSymbol":"DMD","entrezGeneId":1756},{"hugoGeneSymbol":"DMD-AS3","entrezGeneId":100873916},{"hugoGeneSymbol":"DMGDH","entrezGeneId":29958},{"hugoGeneSymbol":"DMKN","entrezGeneId":93099},{"hugoGeneSymbol":"DMP1","entrezGeneId":1758},{"hugoGeneSymbol":"DMPK","entrezGeneId":1760},{"hugoGeneSymbol":"DMRT1","entrezGeneId":1761},{"hugoGeneSymbol":"DMRT2","entrezGeneId":10655},{"hugoGeneSymbol":"DMRT3","entrezGeneId":58524},{"hugoGeneSymbol":"DMRTA1","entrezGeneId":63951},{"hugoGeneSymbol":"DMRTA2","entrezGeneId":63950},{"hugoGeneSymbol":"DMRTB1","entrezGeneId":63948},{"hugoGeneSymbol":"DMRTC1","entrezGeneId":63947},{"hugoGeneSymbol":"DMRTC1B","entrezGeneId":728656},{"hugoGeneSymbol":"DMRTC2","entrezGeneId":63946},{"hugoGeneSymbol":"DMTF1","entrezGeneId":9988},{"hugoGeneSymbol":"DMTN","entrezGeneId":2039},{"hugoGeneSymbol":"DMWD","entrezGeneId":1762},{"hugoGeneSymbol":"DMXL1","entrezGeneId":1657},{"hugoGeneSymbol":"DMXL2","entrezGeneId":23312},{"hugoGeneSymbol":"DNA2","entrezGeneId":1763},{"hugoGeneSymbol":"DNAAF1","entrezGeneId":123872},{"hugoGeneSymbol":"DNAAF2","entrezGeneId":55172},{"hugoGeneSymbol":"DNAAF3","entrezGeneId":352909},{"hugoGeneSymbol":"DNAAF4","entrezGeneId":161582},{"hugoGeneSymbol":"DNAAF4-CCPG1","entrezGeneId":100533483},{"hugoGeneSymbol":"DNAAF5","entrezGeneId":54919},{"hugoGeneSymbol":"DNAH1","entrezGeneId":25981},{"hugoGeneSymbol":"DNAH10","entrezGeneId":196385},{"hugoGeneSymbol":"DNAH10OS","entrezGeneId":642797},{"hugoGeneSymbol":"DNAH11","entrezGeneId":8701},{"hugoGeneSymbol":"DNAH12","entrezGeneId":201625},{"hugoGeneSymbol":"DNAH14","entrezGeneId":127602},{"hugoGeneSymbol":"DNAH17","entrezGeneId":8632},{"hugoGeneSymbol":"DNAH17-AS1","entrezGeneId":100996295},{"hugoGeneSymbol":"DNAH2","entrezGeneId":146754},{"hugoGeneSymbol":"DNAH3","entrezGeneId":55567},{"hugoGeneSymbol":"DNAH5","entrezGeneId":1767},{"hugoGeneSymbol":"DNAH6","entrezGeneId":1768},{"hugoGeneSymbol":"DNAH7","entrezGeneId":56171},{"hugoGeneSymbol":"DNAH8","entrezGeneId":1769},{"hugoGeneSymbol":"DNAH9","entrezGeneId":1770},{"hugoGeneSymbol":"DNAI1","entrezGeneId":27019},{"hugoGeneSymbol":"DNAI2","entrezGeneId":64446},{"hugoGeneSymbol":"DNAJA1","entrezGeneId":3301},{"hugoGeneSymbol":"DNAJA1P1","entrezGeneId":100129308},{"hugoGeneSymbol":"DNAJA1P2","entrezGeneId":100131207},{"hugoGeneSymbol":"DNAJA1P3","entrezGeneId":644588},{"hugoGeneSymbol":"DNAJA1P4","entrezGeneId":728614},{"hugoGeneSymbol":"DNAJA1P5","entrezGeneId":94236},{"hugoGeneSymbol":"DNAJA1P6","entrezGeneId":100421542},{"hugoGeneSymbol":"DNAJA2","entrezGeneId":10294},{"hugoGeneSymbol":"DNAJA3","entrezGeneId":9093},{"hugoGeneSymbol":"DNAJA4","entrezGeneId":55466},{"hugoGeneSymbol":"DNAJB1","entrezGeneId":3337},{"hugoGeneSymbol":"DNAJB11","entrezGeneId":51726},{"hugoGeneSymbol":"DNAJB12","entrezGeneId":54788},{"hugoGeneSymbol":"DNAJB13","entrezGeneId":374407},{"hugoGeneSymbol":"DNAJB14","entrezGeneId":79982},{"hugoGeneSymbol":"DNAJB1P1","entrezGeneId":171221},{"hugoGeneSymbol":"DNAJB2","entrezGeneId":3300},{"hugoGeneSymbol":"DNAJB3","entrezGeneId":414061},{"hugoGeneSymbol":"DNAJB4","entrezGeneId":11080},{"hugoGeneSymbol":"DNAJB5","entrezGeneId":25822},{"hugoGeneSymbol":"DNAJB5-DT","entrezGeneId":101926900},{"hugoGeneSymbol":"DNAJB6","entrezGeneId":10049},{"hugoGeneSymbol":"DNAJB7","entrezGeneId":150353},{"hugoGeneSymbol":"DNAJB8","entrezGeneId":165721},{"hugoGeneSymbol":"DNAJB8-AS1","entrezGeneId":285224},{"hugoGeneSymbol":"DNAJB9","entrezGeneId":4189},{"hugoGeneSymbol":"DNAJC1","entrezGeneId":64215},{"hugoGeneSymbol":"DNAJC10","entrezGeneId":54431},{"hugoGeneSymbol":"DNAJC11","entrezGeneId":55735},{"hugoGeneSymbol":"DNAJC12","entrezGeneId":56521},{"hugoGeneSymbol":"DNAJC13","entrezGeneId":23317},{"hugoGeneSymbol":"DNAJC14","entrezGeneId":85406},{"hugoGeneSymbol":"DNAJC15","entrezGeneId":29103},{"hugoGeneSymbol":"DNAJC16","entrezGeneId":23341},{"hugoGeneSymbol":"DNAJC17","entrezGeneId":55192},{"hugoGeneSymbol":"DNAJC18","entrezGeneId":202052},{"hugoGeneSymbol":"DNAJC19","entrezGeneId":131118},{"hugoGeneSymbol":"DNAJC19P1","entrezGeneId":100129853},{"hugoGeneSymbol":"DNAJC19P2","entrezGeneId":100861445},{"hugoGeneSymbol":"DNAJC19P3","entrezGeneId":100861443},{"hugoGeneSymbol":"DNAJC19P4","entrezGeneId":106480691},{"hugoGeneSymbol":"DNAJC19P5","entrezGeneId":100861453},{"hugoGeneSymbol":"DNAJC19P6","entrezGeneId":100861449},{"hugoGeneSymbol":"DNAJC19P7","entrezGeneId":100861458},{"hugoGeneSymbol":"DNAJC19P8","entrezGeneId":100861455},{"hugoGeneSymbol":"DNAJC19P9","entrezGeneId":644589},{"hugoGeneSymbol":"DNAJC2","entrezGeneId":27000},{"hugoGeneSymbol":"DNAJC21","entrezGeneId":134218},{"hugoGeneSymbol":"DNAJC22","entrezGeneId":79962},{"hugoGeneSymbol":"DNAJC24","entrezGeneId":120526},{"hugoGeneSymbol":"DNAJC25","entrezGeneId":548645},{"hugoGeneSymbol":"DNAJC25-GNG10","entrezGeneId":552891},{"hugoGeneSymbol":"DNAJC27","entrezGeneId":51277},{"hugoGeneSymbol":"DNAJC27-AS1","entrezGeneId":729723},{"hugoGeneSymbol":"DNAJC28","entrezGeneId":54943},{"hugoGeneSymbol":"DNAJC3","entrezGeneId":5611},{"hugoGeneSymbol":"DNAJC3-DT","entrezGeneId":100289274},{"hugoGeneSymbol":"DNAJC30","entrezGeneId":84277},{"hugoGeneSymbol":"DNAJC4","entrezGeneId":3338},{"hugoGeneSymbol":"DNAJC5","entrezGeneId":80331},{"hugoGeneSymbol":"DNAJC5B","entrezGeneId":85479},{"hugoGeneSymbol":"DNAJC5G","entrezGeneId":285126},{"hugoGeneSymbol":"DNAJC6","entrezGeneId":9829},{"hugoGeneSymbol":"DNAJC7","entrezGeneId":7266},{"hugoGeneSymbol":"DNAJC8","entrezGeneId":22826},{"hugoGeneSymbol":"DNAJC8P1","entrezGeneId":319111},{"hugoGeneSymbol":"DNAJC9","entrezGeneId":23234},{"hugoGeneSymbol":"DNAJC9-AS1","entrezGeneId":414245},{"hugoGeneSymbol":"DNAL1","entrezGeneId":83544},{"hugoGeneSymbol":"DNAL4","entrezGeneId":10126},{"hugoGeneSymbol":"DNALI1","entrezGeneId":7802},{"hugoGeneSymbol":"DNASE1","entrezGeneId":1773},{"hugoGeneSymbol":"DNASE1L1","entrezGeneId":1774},{"hugoGeneSymbol":"DNASE1L2","entrezGeneId":1775},{"hugoGeneSymbol":"DNASE1L3","entrezGeneId":1776},{"hugoGeneSymbol":"DNASE2","entrezGeneId":1777},{"hugoGeneSymbol":"DNASE2B","entrezGeneId":58511},{"hugoGeneSymbol":"DNCM","entrezGeneId":1784},{"hugoGeneSymbol":"DND1","entrezGeneId":373863},{"hugoGeneSymbol":"DND1P1","entrezGeneId":644157},{"hugoGeneSymbol":"DND1P2","entrezGeneId":644256},{"hugoGeneSymbol":"DNER","entrezGeneId":92737},{"hugoGeneSymbol":"DNHD1","entrezGeneId":144132},{"hugoGeneSymbol":"DNLZ","entrezGeneId":728489},{"hugoGeneSymbol":"DNM1","entrezGeneId":1759},{"hugoGeneSymbol":"DNM1DN11-7","entrezGeneId":440293},{"hugoGeneSymbol":"DNM1DN4-1","entrezGeneId":390560},{"hugoGeneSymbol":"DNM1L","entrezGeneId":10059},{"hugoGeneSymbol":"DNM1P17","entrezGeneId":100131084},{"hugoGeneSymbol":"DNM1P18","entrezGeneId":387553},{"hugoGeneSymbol":"DNM1P19","entrezGeneId":387554},{"hugoGeneSymbol":"DNM1P24","entrezGeneId":100216505},{"hugoGeneSymbol":"DNM1P25","entrezGeneId":100216506},{"hugoGeneSymbol":"DNM1P26","entrezGeneId":100216507},{"hugoGeneSymbol":"DNM1P27","entrezGeneId":100216514},{"hugoGeneSymbol":"DNM1P28","entrezGeneId":100132031},{"hugoGeneSymbol":"DNM1P29","entrezGeneId":100132204},{"hugoGeneSymbol":"DNM1P30","entrezGeneId":728388},{"hugoGeneSymbol":"DNM1P31","entrezGeneId":644153},{"hugoGeneSymbol":"DNM1P32","entrezGeneId":100132100},{"hugoGeneSymbol":"DNM1P33","entrezGeneId":554175},{"hugoGeneSymbol":"DNM1P34","entrezGeneId":729809},{"hugoGeneSymbol":"DNM1P35","entrezGeneId":100128285},{"hugoGeneSymbol":"DNM1P36","entrezGeneId":100216515},{"hugoGeneSymbol":"DNM1P37","entrezGeneId":100216516},{"hugoGeneSymbol":"DNM1P38","entrezGeneId":100216517},{"hugoGeneSymbol":"DNM1P39","entrezGeneId":100216518},{"hugoGeneSymbol":"DNM1P40","entrezGeneId":400433},{"hugoGeneSymbol":"DNM1P41","entrezGeneId":440299},{"hugoGeneSymbol":"DNM1P43","entrezGeneId":100216466},{"hugoGeneSymbol":"DNM1P44","entrezGeneId":440303},{"hugoGeneSymbol":"DNM1P45","entrezGeneId":100216542},{"hugoGeneSymbol":"DNM1P46","entrezGeneId":196968},{"hugoGeneSymbol":"DNM1P47","entrezGeneId":100216544},{"hugoGeneSymbol":"DNM1P48","entrezGeneId":100418739},{"hugoGeneSymbol":"DNM1P49","entrezGeneId":730058},{"hugoGeneSymbol":"DNM1P5","entrezGeneId":728770},{"hugoGeneSymbol":"DNM1P50","entrezGeneId":101927579},{"hugoGeneSymbol":"DNM1P51","entrezGeneId":109729113},{"hugoGeneSymbol":"DNM1P9","entrezGeneId":400403},{"hugoGeneSymbol":"DNM2","entrezGeneId":1785},{"hugoGeneSymbol":"DNM3","entrezGeneId":26052},{"hugoGeneSymbol":"DNM3-IT1","entrezGeneId":100874284},{"hugoGeneSymbol":"DNM3OS","entrezGeneId":100628315},{"hugoGeneSymbol":"DNMBP","entrezGeneId":23268},{"hugoGeneSymbol":"DNMBP-AS1","entrezGeneId":100188954},{"hugoGeneSymbol":"DNMT1","entrezGeneId":1786},{"hugoGeneSymbol":"DNMT3A","entrezGeneId":1788},{"hugoGeneSymbol":"DNMT3AP1","entrezGeneId":130802},{"hugoGeneSymbol":"DNMT3B","entrezGeneId":1789},{"hugoGeneSymbol":"DNMT3L","entrezGeneId":29947},{"hugoGeneSymbol":"DNPEP","entrezGeneId":23549},{"hugoGeneSymbol":"DNPH1","entrezGeneId":10591},{"hugoGeneSymbol":"DNTT","entrezGeneId":1791},{"hugoGeneSymbol":"DNTTIP1","entrezGeneId":116092},{"hugoGeneSymbol":"DNTTIP2","entrezGeneId":30836},{"hugoGeneSymbol":"DOC2A","entrezGeneId":8448},{"hugoGeneSymbol":"DOC2B","entrezGeneId":8447},{"hugoGeneSymbol":"DOC2GP","entrezGeneId":390213},{"hugoGeneSymbol":"DOCK1","entrezGeneId":1793},{"hugoGeneSymbol":"DOCK10","entrezGeneId":55619},{"hugoGeneSymbol":"DOCK11","entrezGeneId":139818},{"hugoGeneSymbol":"DOCK11P1","entrezGeneId":100132537},{"hugoGeneSymbol":"DOCK2","entrezGeneId":1794},{"hugoGeneSymbol":"DOCK3","entrezGeneId":1795},{"hugoGeneSymbol":"DOCK4","entrezGeneId":9732},{"hugoGeneSymbol":"DOCK4-AS1","entrezGeneId":100506413},{"hugoGeneSymbol":"DOCK5","entrezGeneId":80005},{"hugoGeneSymbol":"DOCK6","entrezGeneId":57572},{"hugoGeneSymbol":"DOCK7","entrezGeneId":85440},{"hugoGeneSymbol":"DOCK8","entrezGeneId":81704},{"hugoGeneSymbol":"DOCK9","entrezGeneId":23348},{"hugoGeneSymbol":"DOCK9-AS1","entrezGeneId":100874096},{"hugoGeneSymbol":"DOCK9-DT","entrezGeneId":100861541},{"hugoGeneSymbol":"DOHH","entrezGeneId":83475},{"hugoGeneSymbol":"DOK1","entrezGeneId":1796},{"hugoGeneSymbol":"DOK2","entrezGeneId":9046},{"hugoGeneSymbol":"DOK3","entrezGeneId":79930},{"hugoGeneSymbol":"DOK4","entrezGeneId":55715},{"hugoGeneSymbol":"DOK5","entrezGeneId":55816},{"hugoGeneSymbol":"DOK6","entrezGeneId":220164},{"hugoGeneSymbol":"DOK7","entrezGeneId":285489},{"hugoGeneSymbol":"DOLK","entrezGeneId":22845},{"hugoGeneSymbol":"DOLPP1","entrezGeneId":57171},{"hugoGeneSymbol":"DONSON","entrezGeneId":29980},{"hugoGeneSymbol":"DOPEY1","entrezGeneId":23033},{"hugoGeneSymbol":"DOPEY2","entrezGeneId":9980},{"hugoGeneSymbol":"DOT1L","entrezGeneId":84444},{"hugoGeneSymbol":"DPAGT1","entrezGeneId":1798},{"hugoGeneSymbol":"DPCD","entrezGeneId":25911},{"hugoGeneSymbol":"DPEP1","entrezGeneId":1800},{"hugoGeneSymbol":"DPEP2","entrezGeneId":64174},{"hugoGeneSymbol":"DPEP2NB","entrezGeneId":100131303},{"hugoGeneSymbol":"DPEP3","entrezGeneId":64180},{"hugoGeneSymbol":"DPF1","entrezGeneId":8193},{"hugoGeneSymbol":"DPF2","entrezGeneId":5977},{"hugoGeneSymbol":"DPF3","entrezGeneId":8110},{"hugoGeneSymbol":"DPH1","entrezGeneId":1801},{"hugoGeneSymbol":"DPH2","entrezGeneId":1802},{"hugoGeneSymbol":"DPH3","entrezGeneId":285381},{"hugoGeneSymbol":"DPH3P1","entrezGeneId":100132911},{"hugoGeneSymbol":"DPH3P2","entrezGeneId":106478926},{"hugoGeneSymbol":"DPH5","entrezGeneId":51611},{"hugoGeneSymbol":"DPH6","entrezGeneId":89978},{"hugoGeneSymbol":"DPH6-DT","entrezGeneId":100507466},{"hugoGeneSymbol":"DPH7","entrezGeneId":92715},{"hugoGeneSymbol":"DPM1","entrezGeneId":8813},{"hugoGeneSymbol":"DPM2","entrezGeneId":8818},{"hugoGeneSymbol":"DPM3","entrezGeneId":54344},{"hugoGeneSymbol":"DPP10","entrezGeneId":57628},{"hugoGeneSymbol":"DPP10-AS1","entrezGeneId":389023},{"hugoGeneSymbol":"DPP10-AS2","entrezGeneId":106478969},{"hugoGeneSymbol":"DPP10-AS3","entrezGeneId":101927591},{"hugoGeneSymbol":"DPP3","entrezGeneId":10072},{"hugoGeneSymbol":"DPP3P1","entrezGeneId":391657},{"hugoGeneSymbol":"DPP3P2","entrezGeneId":138971},{"hugoGeneSymbol":"DPP4","entrezGeneId":1803},{"hugoGeneSymbol":"DPP6","entrezGeneId":1804},{"hugoGeneSymbol":"DPP7","entrezGeneId":29952},{"hugoGeneSymbol":"DPP8","entrezGeneId":54878},{"hugoGeneSymbol":"DPP9","entrezGeneId":91039},{"hugoGeneSymbol":"DPP9-AS1","entrezGeneId":100131094},{"hugoGeneSymbol":"DPPA2","entrezGeneId":151871},{"hugoGeneSymbol":"DPPA2P1","entrezGeneId":100421137},{"hugoGeneSymbol":"DPPA2P2","entrezGeneId":100128503},{"hugoGeneSymbol":"DPPA2P3","entrezGeneId":100128023},{"hugoGeneSymbol":"DPPA2P4","entrezGeneId":100131777},{"hugoGeneSymbol":"DPPA3","entrezGeneId":359787},{"hugoGeneSymbol":"DPPA3P1","entrezGeneId":728493},{"hugoGeneSymbol":"DPPA3P2","entrezGeneId":400206},{"hugoGeneSymbol":"DPPA3P3","entrezGeneId":106481963},{"hugoGeneSymbol":"DPPA4","entrezGeneId":55211},{"hugoGeneSymbol":"DPPA4P1","entrezGeneId":100421156},{"hugoGeneSymbol":"DPPA5","entrezGeneId":340168},{"hugoGeneSymbol":"DPPA5P1","entrezGeneId":646382},{"hugoGeneSymbol":"DPPA5P2","entrezGeneId":100874380},{"hugoGeneSymbol":"DPPA5P3","entrezGeneId":100528006},{"hugoGeneSymbol":"DPPA5P4","entrezGeneId":646701},{"hugoGeneSymbol":"DPRX","entrezGeneId":503834},{"hugoGeneSymbol":"DPRXP1","entrezGeneId":503641},{"hugoGeneSymbol":"DPRXP2","entrezGeneId":503643},{"hugoGeneSymbol":"DPRXP3","entrezGeneId":503644},{"hugoGeneSymbol":"DPRXP4","entrezGeneId":503645},{"hugoGeneSymbol":"DPRXP5","entrezGeneId":503646},{"hugoGeneSymbol":"DPRXP6","entrezGeneId":503647},{"hugoGeneSymbol":"DPRXP7","entrezGeneId":503648},{"hugoGeneSymbol":"DPT","entrezGeneId":1805},{"hugoGeneSymbol":"DPY19L1","entrezGeneId":23333},{"hugoGeneSymbol":"DPY19L1P1","entrezGeneId":100129460},{"hugoGeneSymbol":"DPY19L1P2","entrezGeneId":102724668},{"hugoGeneSymbol":"DPY19L2","entrezGeneId":283417},{"hugoGeneSymbol":"DPY19L2P1","entrezGeneId":554236},{"hugoGeneSymbol":"DPY19L2P2","entrezGeneId":349152},{"hugoGeneSymbol":"DPY19L2P3","entrezGeneId":442524},{"hugoGeneSymbol":"DPY19L2P4","entrezGeneId":442523},{"hugoGeneSymbol":"DPY19L2P5","entrezGeneId":106480421},{"hugoGeneSymbol":"DPY19L3","entrezGeneId":147991},{"hugoGeneSymbol":"DPY19L4","entrezGeneId":286148},{"hugoGeneSymbol":"DPY30","entrezGeneId":84661},{"hugoGeneSymbol":"DPYD","entrezGeneId":1806},{"hugoGeneSymbol":"DPYD-AS1","entrezGeneId":100873932},{"hugoGeneSymbol":"DPYD-AS2","entrezGeneId":100873933},{"hugoGeneSymbol":"DPYD-IT1","entrezGeneId":100874267},{"hugoGeneSymbol":"DPYS","entrezGeneId":1807},{"hugoGeneSymbol":"DPYSL2","entrezGeneId":1808},{"hugoGeneSymbol":"DPYSL3","entrezGeneId":1809},{"hugoGeneSymbol":"DPYSL4","entrezGeneId":10570},{"hugoGeneSymbol":"DPYSL5","entrezGeneId":56896},{"hugoGeneSymbol":"DQX1","entrezGeneId":165545},{"hugoGeneSymbol":"DR1","entrezGeneId":1810},{"hugoGeneSymbol":"DRAIC","entrezGeneId":145837},{"hugoGeneSymbol":"DRAM1","entrezGeneId":55332},{"hugoGeneSymbol":"DRAM2","entrezGeneId":128338},{"hugoGeneSymbol":"DRAP1","entrezGeneId":10589},{"hugoGeneSymbol":"DRAXIN","entrezGeneId":374946},{"hugoGeneSymbol":"DRAXINP1","entrezGeneId":100128801},{"hugoGeneSymbol":"DRC1","entrezGeneId":92749},{"hugoGeneSymbol":"DRC3","entrezGeneId":83450},{"hugoGeneSymbol":"DRC7","entrezGeneId":84229},{"hugoGeneSymbol":"DRD1","entrezGeneId":1812},{"hugoGeneSymbol":"DRD2","entrezGeneId":1813},{"hugoGeneSymbol":"DRD3","entrezGeneId":1814},{"hugoGeneSymbol":"DRD4","entrezGeneId":1815},{"hugoGeneSymbol":"DRD5","entrezGeneId":1816},{"hugoGeneSymbol":"DRD5P1","entrezGeneId":1817},{"hugoGeneSymbol":"DRD5P2","entrezGeneId":1818},{"hugoGeneSymbol":"DRG1","entrezGeneId":4733},{"hugoGeneSymbol":"DRG2","entrezGeneId":1819},{"hugoGeneSymbol":"DRGX","entrezGeneId":644168},{"hugoGeneSymbol":"DRICH1","entrezGeneId":51233},{"hugoGeneSymbol":"DROSHA","entrezGeneId":29102},{"hugoGeneSymbol":"DRP2","entrezGeneId":1821},{"hugoGeneSymbol":"DSC1","entrezGeneId":1823},{"hugoGeneSymbol":"DSC2","entrezGeneId":1824},{"hugoGeneSymbol":"DSC3","entrezGeneId":1825},{"hugoGeneSymbol":"DSCAM","entrezGeneId":1826},{"hugoGeneSymbol":"DSCAM-AS1","entrezGeneId":100506492},{"hugoGeneSymbol":"DSCAM-IT1","entrezGeneId":100874326},{"hugoGeneSymbol":"DSCAML1","entrezGeneId":57453},{"hugoGeneSymbol":"DSCAS","entrezGeneId":101927698},{"hugoGeneSymbol":"DSCC1","entrezGeneId":79075},{"hugoGeneSymbol":"DSCR10","entrezGeneId":259234},{"hugoGeneSymbol":"DSCR4","entrezGeneId":10281},{"hugoGeneSymbol":"DSCR4-IT1","entrezGeneId":100874327},{"hugoGeneSymbol":"DSCR8","entrezGeneId":84677},{"hugoGeneSymbol":"DSCR9","entrezGeneId":257203},{"hugoGeneSymbol":"DSE","entrezGeneId":29940},{"hugoGeneSymbol":"DSEL","entrezGeneId":92126},{"hugoGeneSymbol":"DSG1","entrezGeneId":1828},{"hugoGeneSymbol":"DSG1-AS1","entrezGeneId":101927718},{"hugoGeneSymbol":"DSG2","entrezGeneId":1829},{"hugoGeneSymbol":"DSG2-AS1","entrezGeneId":100652770},{"hugoGeneSymbol":"DSG3","entrezGeneId":1830},{"hugoGeneSymbol":"DSG4","entrezGeneId":147409},{"hugoGeneSymbol":"DSN1","entrezGeneId":79980},{"hugoGeneSymbol":"DSP","entrezGeneId":1832},{"hugoGeneSymbol":"DSPA2D","entrezGeneId":144383},{"hugoGeneSymbol":"DSPP","entrezGeneId":1834},{"hugoGeneSymbol":"DSPS","entrezGeneId":107048980},{"hugoGeneSymbol":"DST","entrezGeneId":667},{"hugoGeneSymbol":"DSTN","entrezGeneId":11034},{"hugoGeneSymbol":"DSTNP1","entrezGeneId":387492},{"hugoGeneSymbol":"DSTNP2","entrezGeneId":171220},{"hugoGeneSymbol":"DSTNP3","entrezGeneId":100287016},{"hugoGeneSymbol":"DSTNP4","entrezGeneId":729454},{"hugoGeneSymbol":"DSTNP5","entrezGeneId":100132132},{"hugoGeneSymbol":"DSTYK","entrezGeneId":25778},{"hugoGeneSymbol":"DTD1","entrezGeneId":92675},{"hugoGeneSymbol":"DTD2","entrezGeneId":112487},{"hugoGeneSymbol":"DTHD1","entrezGeneId":401124},{"hugoGeneSymbol":"DTL","entrezGeneId":51514},{"hugoGeneSymbol":"DTNA","entrezGeneId":1837},{"hugoGeneSymbol":"DTNB","entrezGeneId":1838},{"hugoGeneSymbol":"DTNBP1","entrezGeneId":84062},{"hugoGeneSymbol":"DTWD1","entrezGeneId":56986},{"hugoGeneSymbol":"DTWD2","entrezGeneId":285605},{"hugoGeneSymbol":"DTX1","entrezGeneId":1840},{"hugoGeneSymbol":"DTX2","entrezGeneId":113878},{"hugoGeneSymbol":"DTX2P1","entrezGeneId":107161144},{"hugoGeneSymbol":"DTX2P1-UPK3BP1-PMS2P11","entrezGeneId":441263},{"hugoGeneSymbol":"DTX3","entrezGeneId":196403},{"hugoGeneSymbol":"DTX3L","entrezGeneId":151636},{"hugoGeneSymbol":"DTX4","entrezGeneId":23220},{"hugoGeneSymbol":"DTYMK","entrezGeneId":1841},{"hugoGeneSymbol":"DUBR","entrezGeneId":344595},{"hugoGeneSymbol":"DUH1","entrezGeneId":387570},{"hugoGeneSymbol":"DUH2","entrezGeneId":100301525},{"hugoGeneSymbol":"DUOX1","entrezGeneId":53905},{"hugoGeneSymbol":"DUOX2","entrezGeneId":50506},{"hugoGeneSymbol":"DUOXA1","entrezGeneId":90527},{"hugoGeneSymbol":"DUOXA2","entrezGeneId":405753},{"hugoGeneSymbol":"DUP14Q32","entrezGeneId":106699575},{"hugoGeneSymbol":"DUP16P11.2","entrezGeneId":100909384},{"hugoGeneSymbol":"DUP16P13.3","entrezGeneId":100505393},{"hugoGeneSymbol":"DUP17P13.3","entrezGeneId":100379203},{"hugoGeneSymbol":"DUP17Q12","entrezGeneId":100884129},{"hugoGeneSymbol":"DUP17Q21.31","entrezGeneId":100529226},{"hugoGeneSymbol":"DUP17Q23.1Q23.2","entrezGeneId":100526743},{"hugoGeneSymbol":"DUP18PDEL18Q","entrezGeneId":100240739},{"hugoGeneSymbol":"DUP1Q21","entrezGeneId":100217371},{"hugoGeneSymbol":"DUP22Q11.2","entrezGeneId":100240738},{"hugoGeneSymbol":"DUP22Q13","entrezGeneId":102503428},{"hugoGeneSymbol":"DUP2Q31.1","entrezGeneId":100529099},{"hugoGeneSymbol":"DUP3Q29","entrezGeneId":100188862},{"hugoGeneSymbol":"DUP5P13","entrezGeneId":100379202},{"hugoGeneSymbol":"DUP7Q11.23","entrezGeneId":100240730},{"hugoGeneSymbol":"DUP8Q22.1","entrezGeneId":103171572},{"hugoGeneSymbol":"DUPC1","entrezGeneId":780895},{"hugoGeneSymbol":"DUPD1","entrezGeneId":338599},{"hugoGeneSymbol":"DUPXP11.22","entrezGeneId":103753528},{"hugoGeneSymbol":"DUPXP11.23P11.22","entrezGeneId":100310754},{"hugoGeneSymbol":"DUPXQ25","entrezGeneId":108684029},{"hugoGeneSymbol":"DUPXQ27.3Q28","entrezGeneId":100874533},{"hugoGeneSymbol":"DUPXQ28","entrezGeneId":100415893},{"hugoGeneSymbol":"DURS1","entrezGeneId":10674},{"hugoGeneSymbol":"DUS1L","entrezGeneId":64118},{"hugoGeneSymbol":"DUS2","entrezGeneId":54920},{"hugoGeneSymbol":"DUS3L","entrezGeneId":56931},{"hugoGeneSymbol":"DUS4L","entrezGeneId":11062},{"hugoGeneSymbol":"DUSP1","entrezGeneId":1843},{"hugoGeneSymbol":"DUSP10","entrezGeneId":11221},{"hugoGeneSymbol":"DUSP11","entrezGeneId":8446},{"hugoGeneSymbol":"DUSP12","entrezGeneId":11266},{"hugoGeneSymbol":"DUSP12P1","entrezGeneId":100420473},{"hugoGeneSymbol":"DUSP13","entrezGeneId":51207},{"hugoGeneSymbol":"DUSP14","entrezGeneId":11072},{"hugoGeneSymbol":"DUSP15","entrezGeneId":128853},{"hugoGeneSymbol":"DUSP16","entrezGeneId":80824},{"hugoGeneSymbol":"DUSP18","entrezGeneId":150290},{"hugoGeneSymbol":"DUSP19","entrezGeneId":142679},{"hugoGeneSymbol":"DUSP2","entrezGeneId":1844},{"hugoGeneSymbol":"DUSP21","entrezGeneId":63904},{"hugoGeneSymbol":"DUSP22","entrezGeneId":56940},{"hugoGeneSymbol":"DUSP23","entrezGeneId":54935},{"hugoGeneSymbol":"DUSP26","entrezGeneId":78986},{"hugoGeneSymbol":"DUSP27","entrezGeneId":92235},{"hugoGeneSymbol":"DUSP28","entrezGeneId":285193},{"hugoGeneSymbol":"DUSP3","entrezGeneId":1845},{"hugoGeneSymbol":"DUSP4","entrezGeneId":1846},{"hugoGeneSymbol":"DUSP5","entrezGeneId":1847},{"hugoGeneSymbol":"DUSP5P1","entrezGeneId":574029},{"hugoGeneSymbol":"DUSP5P2","entrezGeneId":643459},{"hugoGeneSymbol":"DUSP6","entrezGeneId":1848},{"hugoGeneSymbol":"DUSP7","entrezGeneId":1849},{"hugoGeneSymbol":"DUSP8","entrezGeneId":1850},{"hugoGeneSymbol":"DUSP8P3","entrezGeneId":441554},{"hugoGeneSymbol":"DUSP8P4","entrezGeneId":728657},{"hugoGeneSymbol":"DUSP8P5","entrezGeneId":106903081},{"hugoGeneSymbol":"DUSP9","entrezGeneId":1852},{"hugoGeneSymbol":"DUT","entrezGeneId":1854},{"hugoGeneSymbol":"DUTP1","entrezGeneId":548637},{"hugoGeneSymbol":"DUTP2","entrezGeneId":100873909},{"hugoGeneSymbol":"DUTP3","entrezGeneId":100861485},{"hugoGeneSymbol":"DUTP4","entrezGeneId":100873910},{"hugoGeneSymbol":"DUTP5","entrezGeneId":100873911},{"hugoGeneSymbol":"DUTP6","entrezGeneId":100873912},{"hugoGeneSymbol":"DUTP7","entrezGeneId":100873913},{"hugoGeneSymbol":"DUTP8","entrezGeneId":100873914},{"hugoGeneSymbol":"DUX1","entrezGeneId":26584},{"hugoGeneSymbol":"DUX3","entrezGeneId":26582},{"hugoGeneSymbol":"DUX4","entrezGeneId":100288687},{"hugoGeneSymbol":"DUX4L1","entrezGeneId":22947},{"hugoGeneSymbol":"DUX4L10","entrezGeneId":440013},{"hugoGeneSymbol":"DUX4L11","entrezGeneId":399839},{"hugoGeneSymbol":"DUX4L12","entrezGeneId":440014},{"hugoGeneSymbol":"DUX4L13","entrezGeneId":100289581},{"hugoGeneSymbol":"DUX4L14","entrezGeneId":728022},{"hugoGeneSymbol":"DUX4L15","entrezGeneId":440017},{"hugoGeneSymbol":"DUX4L16","entrezGeneId":728169},{"hugoGeneSymbol":"DUX4L17","entrezGeneId":643001},{"hugoGeneSymbol":"DUX4L18","entrezGeneId":100132421},{"hugoGeneSymbol":"DUX4L19","entrezGeneId":643034},{"hugoGeneSymbol":"DUX4L2","entrezGeneId":728410},{"hugoGeneSymbol":"DUX4L20","entrezGeneId":102723538},{"hugoGeneSymbol":"DUX4L21","entrezGeneId":102723518},{"hugoGeneSymbol":"DUX4L22","entrezGeneId":102723495},{"hugoGeneSymbol":"DUX4L23","entrezGeneId":102723472},{"hugoGeneSymbol":"DUX4L24","entrezGeneId":102723449},{"hugoGeneSymbol":"DUX4L25","entrezGeneId":102723423},{"hugoGeneSymbol":"DUX4L26","entrezGeneId":100996350},{"hugoGeneSymbol":"DUX4L27","entrezGeneId":100131369},{"hugoGeneSymbol":"DUX4L28","entrezGeneId":106481728},{"hugoGeneSymbol":"DUX4L29","entrezGeneId":106481970},{"hugoGeneSymbol":"DUX4L3","entrezGeneId":653548},{"hugoGeneSymbol":"DUX4L31","entrezGeneId":100887073},{"hugoGeneSymbol":"DUX4L32","entrezGeneId":107075316},{"hugoGeneSymbol":"DUX4L33","entrezGeneId":107080551},{"hugoGeneSymbol":"DUX4L34","entrezGeneId":105379479},{"hugoGeneSymbol":"DUX4L35","entrezGeneId":106632270},{"hugoGeneSymbol":"DUX4L36","entrezGeneId":107080642},{"hugoGeneSymbol":"DUX4L37","entrezGeneId":107080108},{"hugoGeneSymbol":"DUX4L38","entrezGeneId":107080648},{"hugoGeneSymbol":"DUX4L39","entrezGeneId":107080645},{"hugoGeneSymbol":"DUX4L4","entrezGeneId":441056},{"hugoGeneSymbol":"DUX4L40","entrezGeneId":107080649},{"hugoGeneSymbol":"DUX4L41","entrezGeneId":107080650},{"hugoGeneSymbol":"DUX4L42","entrezGeneId":106660607},{"hugoGeneSymbol":"DUX4L43","entrezGeneId":106660617},{"hugoGeneSymbol":"DUX4L44","entrezGeneId":107080651},{"hugoGeneSymbol":"DUX4L45","entrezGeneId":100887074},{"hugoGeneSymbol":"DUX4L46","entrezGeneId":106480349},{"hugoGeneSymbol":"DUX4L47","entrezGeneId":106481738},{"hugoGeneSymbol":"DUX4L48","entrezGeneId":107105251},{"hugoGeneSymbol":"DUX4L49","entrezGeneId":107105252},{"hugoGeneSymbol":"DUX4L5","entrezGeneId":653545},{"hugoGeneSymbol":"DUX4L50","entrezGeneId":106480350},{"hugoGeneSymbol":"DUX4L51","entrezGeneId":106481740},{"hugoGeneSymbol":"DUX4L52","entrezGeneId":106480354},{"hugoGeneSymbol":"DUX4L6","entrezGeneId":653544},{"hugoGeneSymbol":"DUX4L7","entrezGeneId":653543},{"hugoGeneSymbol":"DUX4L8","entrezGeneId":26583},{"hugoGeneSymbol":"DUX4L9","entrezGeneId":100288711},{"hugoGeneSymbol":"DUX5","entrezGeneId":26581},{"hugoGeneSymbol":"DUXA","entrezGeneId":503835},{"hugoGeneSymbol":"DUXAP1","entrezGeneId":503630},{"hugoGeneSymbol":"DUXAP10","entrezGeneId":503639},{"hugoGeneSymbol":"DUXAP11","entrezGeneId":106481741},{"hugoGeneSymbol":"DUXAP12","entrezGeneId":100419081},{"hugoGeneSymbol":"DUXAP2","entrezGeneId":503631},{"hugoGeneSymbol":"DUXAP3","entrezGeneId":503632},{"hugoGeneSymbol":"DUXAP4","entrezGeneId":503633},{"hugoGeneSymbol":"DUXAP5","entrezGeneId":503634},{"hugoGeneSymbol":"DUXAP6","entrezGeneId":503635},{"hugoGeneSymbol":"DUXAP7","entrezGeneId":503636},{"hugoGeneSymbol":"DUXAP8","entrezGeneId":503637},{"hugoGeneSymbol":"DUXAP9","entrezGeneId":503638},{"hugoGeneSymbol":"DUXB","entrezGeneId":100033411},{"hugoGeneSymbol":"DVL1","entrezGeneId":1855},{"hugoGeneSymbol":"DVL1P1","entrezGeneId":8215},{"hugoGeneSymbol":"DVL2","entrezGeneId":1856},{"hugoGeneSymbol":"DVL3","entrezGeneId":1857},{"hugoGeneSymbol":"DWORF","entrezGeneId":100507537},{"hugoGeneSymbol":"DWS","entrezGeneId":1858},{"hugoGeneSymbol":"DXO","entrezGeneId":1797},{"hugoGeneSymbol":"DXS435E","entrezGeneId":8248},{"hugoGeneSymbol":"DYDC1","entrezGeneId":143241},{"hugoGeneSymbol":"DYDC2","entrezGeneId":84332},{"hugoGeneSymbol":"DYM","entrezGeneId":54808},{"hugoGeneSymbol":"DYNAP","entrezGeneId":284254},{"hugoGeneSymbol":"DYNC1H1","entrezGeneId":1778},{"hugoGeneSymbol":"DYNC1I1","entrezGeneId":1780},{"hugoGeneSymbol":"DYNC1I2","entrezGeneId":1781},{"hugoGeneSymbol":"DYNC1I2P1","entrezGeneId":728532},{"hugoGeneSymbol":"DYNC1LI1","entrezGeneId":51143},{"hugoGeneSymbol":"DYNC1LI1P1","entrezGeneId":108254688},{"hugoGeneSymbol":"DYNC1LI2","entrezGeneId":1783},{"hugoGeneSymbol":"DYNC2H1","entrezGeneId":79659},{"hugoGeneSymbol":"DYNC2LI1","entrezGeneId":51626},{"hugoGeneSymbol":"DYNLL1","entrezGeneId":8655},{"hugoGeneSymbol":"DYNLL1P1","entrezGeneId":246720},{"hugoGeneSymbol":"DYNLL1P2","entrezGeneId":731308},{"hugoGeneSymbol":"DYNLL1P3","entrezGeneId":391012},{"hugoGeneSymbol":"DYNLL1P4","entrezGeneId":100129739},{"hugoGeneSymbol":"DYNLL1P5","entrezGeneId":106480681},{"hugoGeneSymbol":"DYNLL1P6","entrezGeneId":100288885},{"hugoGeneSymbol":"DYNLL1P7","entrezGeneId":729630},{"hugoGeneSymbol":"DYNLL2","entrezGeneId":140735},{"hugoGeneSymbol":"DYNLRB1","entrezGeneId":83658},{"hugoGeneSymbol":"DYNLRB2","entrezGeneId":83657},{"hugoGeneSymbol":"DYNLT1","entrezGeneId":6993},{"hugoGeneSymbol":"DYNLT3","entrezGeneId":6990},{"hugoGeneSymbol":"DYNLT3P1","entrezGeneId":170554},{"hugoGeneSymbol":"DYNLT3P2","entrezGeneId":100381215},{"hugoGeneSymbol":"DYRK1A","entrezGeneId":1859},{"hugoGeneSymbol":"DYRK1AIP1","entrezGeneId":93980},{"hugoGeneSymbol":"DYRK1AIP2","entrezGeneId":93981},{"hugoGeneSymbol":"DYRK1B","entrezGeneId":9149},{"hugoGeneSymbol":"DYRK2","entrezGeneId":8445},{"hugoGeneSymbol":"DYRK3","entrezGeneId":8444},{"hugoGeneSymbol":"DYRK4","entrezGeneId":8798},{"hugoGeneSymbol":"DYSF","entrezGeneId":8291},{"hugoGeneSymbol":"DYT13","entrezGeneId":93983},{"hugoGeneSymbol":"DYT15","entrezGeneId":317714},{"hugoGeneSymbol":"DYT17","entrezGeneId":100216344},{"hugoGeneSymbol":"DYT2","entrezGeneId":1862},{"hugoGeneSymbol":"DYT21","entrezGeneId":100885773},{"hugoGeneSymbol":"DYT22","entrezGeneId":109729101},{"hugoGeneSymbol":"DYT7","entrezGeneId":1866},{"hugoGeneSymbol":"DYTN","entrezGeneId":391475},{"hugoGeneSymbol":"DYX1","entrezGeneId":1867},{"hugoGeneSymbol":"DYX3","entrezGeneId":11192},{"hugoGeneSymbol":"DYX4","entrezGeneId":26300},{"hugoGeneSymbol":"DYX5","entrezGeneId":171089},{"hugoGeneSymbol":"DYX6","entrezGeneId":266691},{"hugoGeneSymbol":"DYX7","entrezGeneId":266726},{"hugoGeneSymbol":"DYX8","entrezGeneId":406874},{"hugoGeneSymbol":"DYX9","entrezGeneId":474159},{"hugoGeneSymbol":"DYZ1L1","entrezGeneId":100499397},{"hugoGeneSymbol":"DYZ1L10","entrezGeneId":100288188},{"hugoGeneSymbol":"DYZ1L11","entrezGeneId":100288220},{"hugoGeneSymbol":"DYZ1L12","entrezGeneId":100288259},{"hugoGeneSymbol":"DYZ1L13","entrezGeneId":100288293},{"hugoGeneSymbol":"DYZ1L14","entrezGeneId":100288329},{"hugoGeneSymbol":"DYZ1L15","entrezGeneId":100288363},{"hugoGeneSymbol":"DYZ1L16","entrezGeneId":100499412},{"hugoGeneSymbol":"DYZ1L17","entrezGeneId":100288402},{"hugoGeneSymbol":"DYZ1L18","entrezGeneId":100288435},{"hugoGeneSymbol":"DYZ1L19","entrezGeneId":100499437},{"hugoGeneSymbol":"DYZ1L2","entrezGeneId":100288025},{"hugoGeneSymbol":"DYZ1L20","entrezGeneId":100499438},{"hugoGeneSymbol":"DYZ1L21","entrezGeneId":100288468},{"hugoGeneSymbol":"DYZ1L22","entrezGeneId":100288499},{"hugoGeneSymbol":"DYZ1L23","entrezGeneId":100499442},{"hugoGeneSymbol":"DYZ1L24","entrezGeneId":100288526},{"hugoGeneSymbol":"DYZ1L25","entrezGeneId":100288561},{"hugoGeneSymbol":"DYZ1L26","entrezGeneId":100288595},{"hugoGeneSymbol":"DYZ1L27","entrezGeneId":100499443},{"hugoGeneSymbol":"DYZ1L3","entrezGeneId":100288053},{"hugoGeneSymbol":"DYZ1L4","entrezGeneId":100499398},{"hugoGeneSymbol":"DYZ1L5","entrezGeneId":100288085},{"hugoGeneSymbol":"DYZ1L6","entrezGeneId":100499409},{"hugoGeneSymbol":"DYZ1L7","entrezGeneId":100499411},{"hugoGeneSymbol":"DYZ1L8","entrezGeneId":100288124},{"hugoGeneSymbol":"DYZ1L9","entrezGeneId":100288157},{"hugoGeneSymbol":"DZANK1","entrezGeneId":55184},{"hugoGeneSymbol":"DZIP1","entrezGeneId":22873},{"hugoGeneSymbol":"DZIP1L","entrezGeneId":199221},{"hugoGeneSymbol":"DZIP3","entrezGeneId":9666},{"hugoGeneSymbol":"E11S","entrezGeneId":1878},{"hugoGeneSymbol":"E2F1","entrezGeneId":1869},{"hugoGeneSymbol":"E2F2","entrezGeneId":1870},{"hugoGeneSymbol":"E2F3","entrezGeneId":1871},{"hugoGeneSymbol":"E2F3-IT1","entrezGeneId":100874268},{"hugoGeneSymbol":"E2F3P1","entrezGeneId":1872},{"hugoGeneSymbol":"E2F3P2","entrezGeneId":100420003},{"hugoGeneSymbol":"E2F4","entrezGeneId":1874},{"hugoGeneSymbol":"E2F4P1","entrezGeneId":100131899},{"hugoGeneSymbol":"E2F5","entrezGeneId":1875},{"hugoGeneSymbol":"E2F6","entrezGeneId":1876},{"hugoGeneSymbol":"E2F6P1","entrezGeneId":386610},{"hugoGeneSymbol":"E2F6P2","entrezGeneId":376818},{"hugoGeneSymbol":"E2F6P3","entrezGeneId":100420178},{"hugoGeneSymbol":"E2F6P4","entrezGeneId":139542},{"hugoGeneSymbol":"E2F7","entrezGeneId":144455},{"hugoGeneSymbol":"E2F8","entrezGeneId":79733},{"hugoGeneSymbol":"E4F1","entrezGeneId":1877},{"hugoGeneSymbol":"EA3","entrezGeneId":780905},{"hugoGeneSymbol":"EA7","entrezGeneId":100188859},{"hugoGeneSymbol":"EA8","entrezGeneId":104326187},{"hugoGeneSymbol":"EAF1","entrezGeneId":85403},{"hugoGeneSymbol":"EAF1-AS1","entrezGeneId":100873956},{"hugoGeneSymbol":"EAF2","entrezGeneId":55840},{"hugoGeneSymbol":"EAPP","entrezGeneId":55837},{"hugoGeneSymbol":"EARS2","entrezGeneId":124454},{"hugoGeneSymbol":"EBAG9","entrezGeneId":9166},{"hugoGeneSymbol":"EBAG9P1","entrezGeneId":100422254},{"hugoGeneSymbol":"EBF1","entrezGeneId":1879},{"hugoGeneSymbol":"EBF2","entrezGeneId":64641},{"hugoGeneSymbol":"EBF3","entrezGeneId":253738},{"hugoGeneSymbol":"EBF4","entrezGeneId":57593},{"hugoGeneSymbol":"EBI3","entrezGeneId":10148},{"hugoGeneSymbol":"EBLN1","entrezGeneId":340900},{"hugoGeneSymbol":"EBLN2","entrezGeneId":55096},{"hugoGeneSymbol":"EBLN3P","entrezGeneId":100506710},{"hugoGeneSymbol":"EBM","entrezGeneId":1881},{"hugoGeneSymbol":"EBNA1BP2","entrezGeneId":10969},{"hugoGeneSymbol":"EBP","entrezGeneId":10682},{"hugoGeneSymbol":"EBPL","entrezGeneId":84650},{"hugoGeneSymbol":"EBR3","entrezGeneId":1884},{"hugoGeneSymbol":"EBR4","entrezGeneId":1885},{"hugoGeneSymbol":"EBVS1","entrezGeneId":1888},{"hugoGeneSymbol":"ECA1","entrezGeneId":50966},{"hugoGeneSymbol":"ECB2","entrezGeneId":8056},{"hugoGeneSymbol":"ECD","entrezGeneId":11319},{"hugoGeneSymbol":"ECE1","entrezGeneId":1889},{"hugoGeneSymbol":"ECE2","entrezGeneId":9718},{"hugoGeneSymbol":"ECEL1","entrezGeneId":9427},{"hugoGeneSymbol":"ECEL1P1","entrezGeneId":100131546},{"hugoGeneSymbol":"ECEL1P2","entrezGeneId":347694},{"hugoGeneSymbol":"ECEL1P3","entrezGeneId":260332},{"hugoGeneSymbol":"ECH1","entrezGeneId":1891},{"hugoGeneSymbol":"ECHDC1","entrezGeneId":55862},{"hugoGeneSymbol":"ECHDC2","entrezGeneId":55268},{"hugoGeneSymbol":"ECHDC3","entrezGeneId":79746},{"hugoGeneSymbol":"ECHS1","entrezGeneId":1892},{"hugoGeneSymbol":"ECI1","entrezGeneId":1632},{"hugoGeneSymbol":"ECI2","entrezGeneId":10455},{"hugoGeneSymbol":"ECM1","entrezGeneId":1893},{"hugoGeneSymbol":"ECM1P1","entrezGeneId":100420354},{"hugoGeneSymbol":"ECM1P2","entrezGeneId":106481698},{"hugoGeneSymbol":"ECM2","entrezGeneId":1842},{"hugoGeneSymbol":"ECPAS","entrezGeneId":23392},{"hugoGeneSymbol":"ECRP","entrezGeneId":643332},{"hugoGeneSymbol":"ECSCR","entrezGeneId":641700},{"hugoGeneSymbol":"ECSIT","entrezGeneId":51295},{"hugoGeneSymbol":"ECT","entrezGeneId":100379198},{"hugoGeneSymbol":"ECT2","entrezGeneId":1894},{"hugoGeneSymbol":"ECT2L","entrezGeneId":345930},{"hugoGeneSymbol":"ECTD5","entrezGeneId":101101769},{"hugoGeneSymbol":"ECTD6","entrezGeneId":101101770},{"hugoGeneSymbol":"ECTD7","entrezGeneId":101101771},{"hugoGeneSymbol":"ECTD8","entrezGeneId":101101768},{"hugoGeneSymbol":"EDA","entrezGeneId":1896},{"hugoGeneSymbol":"EDA2R","entrezGeneId":60401},{"hugoGeneSymbol":"EDAR","entrezGeneId":10913},{"hugoGeneSymbol":"EDARADD","entrezGeneId":128178},{"hugoGeneSymbol":"EDC3","entrezGeneId":80153},{"hugoGeneSymbol":"EDC4","entrezGeneId":23644},{"hugoGeneSymbol":"EDDM13","entrezGeneId":100506374},{"hugoGeneSymbol":"EDDM3A","entrezGeneId":10876},{"hugoGeneSymbol":"EDDM3B","entrezGeneId":64184},{"hugoGeneSymbol":"EDDM3CP","entrezGeneId":266643},{"hugoGeneSymbol":"EDDM3DP","entrezGeneId":100128220},{"hugoGeneSymbol":"EDEM1","entrezGeneId":9695},{"hugoGeneSymbol":"EDEM2","entrezGeneId":55741},{"hugoGeneSymbol":"EDEM3","entrezGeneId":80267},{"hugoGeneSymbol":"EDF1","entrezGeneId":8721},{"hugoGeneSymbol":"EDIL3","entrezGeneId":10085},{"hugoGeneSymbol":"EDN1","entrezGeneId":1906},{"hugoGeneSymbol":"EDN2","entrezGeneId":1907},{"hugoGeneSymbol":"EDN3","entrezGeneId":1908},{"hugoGeneSymbol":"EDNRA","entrezGeneId":1909},{"hugoGeneSymbol":"EDNRB","entrezGeneId":1910},{"hugoGeneSymbol":"EDNRB-AS1","entrezGeneId":100505518},{"hugoGeneSymbol":"EDRF1","entrezGeneId":26098},{"hugoGeneSymbol":"EDRF1-AS1","entrezGeneId":101927983},{"hugoGeneSymbol":"EDS8","entrezGeneId":791254},{"hugoGeneSymbol":"EDSS2","entrezGeneId":100505394},{"hugoGeneSymbol":"EEA1","entrezGeneId":8411},{"hugoGeneSymbol":"EEC1","entrezGeneId":1913},{"hugoGeneSymbol":"EEC2","entrezGeneId":1914},{"hugoGeneSymbol":"EED","entrezGeneId":8726},{"hugoGeneSymbol":"EEF1A1","entrezGeneId":1915},{"hugoGeneSymbol":"EEF1A1P1","entrezGeneId":54054},{"hugoGeneSymbol":"EEF1A1P10","entrezGeneId":100421829},{"hugoGeneSymbol":"EEF1A1P11","entrezGeneId":440595},{"hugoGeneSymbol":"EEF1A1P12","entrezGeneId":644604},{"hugoGeneSymbol":"EEF1A1P13","entrezGeneId":133283},{"hugoGeneSymbol":"EEF1A1P14","entrezGeneId":647167},{"hugoGeneSymbol":"EEF1A1P15","entrezGeneId":643563},{"hugoGeneSymbol":"EEF1A1P16","entrezGeneId":387845},{"hugoGeneSymbol":"EEF1A1P17","entrezGeneId":401717},{"hugoGeneSymbol":"EEF1A1P18","entrezGeneId":100887747},{"hugoGeneSymbol":"EEF1A1P19","entrezGeneId":100421796},{"hugoGeneSymbol":"EEF1A1P2","entrezGeneId":319112},{"hugoGeneSymbol":"EEF1A1P20","entrezGeneId":100421797},{"hugoGeneSymbol":"EEF1A1P21","entrezGeneId":100421807},{"hugoGeneSymbol":"EEF1A1P22","entrezGeneId":645693},{"hugoGeneSymbol":"EEF1A1P23","entrezGeneId":100421815},{"hugoGeneSymbol":"EEF1A1P24","entrezGeneId":645715},{"hugoGeneSymbol":"EEF1A1P25","entrezGeneId":646612},{"hugoGeneSymbol":"EEF1A1P26","entrezGeneId":100128637},{"hugoGeneSymbol":"EEF1A1P27","entrezGeneId":100130234},{"hugoGeneSymbol":"EEF1A1P28","entrezGeneId":442709},{"hugoGeneSymbol":"EEF1A1P29","entrezGeneId":100130211},{"hugoGeneSymbol":"EEF1A1P3","entrezGeneId":100421865},{"hugoGeneSymbol":"EEF1A1P30","entrezGeneId":402420},{"hugoGeneSymbol":"EEF1A1P31","entrezGeneId":553820},{"hugoGeneSymbol":"EEF1A1P32","entrezGeneId":730232},{"hugoGeneSymbol":"EEF1A1P33","entrezGeneId":390352},{"hugoGeneSymbol":"EEF1A1P34","entrezGeneId":100132358},{"hugoGeneSymbol":"EEF1A1P35","entrezGeneId":389223},{"hugoGeneSymbol":"EEF1A1P36","entrezGeneId":100421820},{"hugoGeneSymbol":"EEF1A1P37","entrezGeneId":100421825},{"hugoGeneSymbol":"EEF1A1P38","entrezGeneId":124199},{"hugoGeneSymbol":"EEF1A1P39","entrezGeneId":100862850},{"hugoGeneSymbol":"EEF1A1P4","entrezGeneId":100421854},{"hugoGeneSymbol":"EEF1A1P40","entrezGeneId":100874490},{"hugoGeneSymbol":"EEF1A1P41","entrezGeneId":100874491},{"hugoGeneSymbol":"EEF1A1P42","entrezGeneId":442215},{"hugoGeneSymbol":"EEF1A1P43","entrezGeneId":1918},{"hugoGeneSymbol":"EEF1A1P5","entrezGeneId":158078},{"hugoGeneSymbol":"EEF1A1P6","entrezGeneId":221838},{"hugoGeneSymbol":"EEF1A1P7","entrezGeneId":390924},{"hugoGeneSymbol":"EEF1A1P8","entrezGeneId":389179},{"hugoGeneSymbol":"EEF1A1P9","entrezGeneId":441032},{"hugoGeneSymbol":"EEF1A2","entrezGeneId":1917},{"hugoGeneSymbol":"EEF1AKMT1","entrezGeneId":221143},{"hugoGeneSymbol":"EEF1AKMT2","entrezGeneId":399818},{"hugoGeneSymbol":"EEF1AKMT3","entrezGeneId":25895},{"hugoGeneSymbol":"EEF1AKMT4","entrezGeneId":110599564},{"hugoGeneSymbol":"EEF1AKMT4-ECE2","entrezGeneId":110599583},{"hugoGeneSymbol":"EEF1B2","entrezGeneId":1933},{"hugoGeneSymbol":"EEF1B2P1","entrezGeneId":1932},{"hugoGeneSymbol":"EEF1B2P2","entrezGeneId":1934},{"hugoGeneSymbol":"EEF1B2P3","entrezGeneId":644820},{"hugoGeneSymbol":"EEF1B2P4","entrezGeneId":100130631},{"hugoGeneSymbol":"EEF1B2P5","entrezGeneId":442227},{"hugoGeneSymbol":"EEF1B2P6","entrezGeneId":647030},{"hugoGeneSymbol":"EEF1B2P7","entrezGeneId":100421756},{"hugoGeneSymbol":"EEF1B2P8","entrezGeneId":100421774},{"hugoGeneSymbol":"EEF1D","entrezGeneId":1936},{"hugoGeneSymbol":"EEF1DP1","entrezGeneId":126037},{"hugoGeneSymbol":"EEF1DP2","entrezGeneId":442429},{"hugoGeneSymbol":"EEF1DP3","entrezGeneId":196549},{"hugoGeneSymbol":"EEF1DP4","entrezGeneId":442325},{"hugoGeneSymbol":"EEF1DP5","entrezGeneId":442258},{"hugoGeneSymbol":"EEF1DP6","entrezGeneId":644357},{"hugoGeneSymbol":"EEF1DP7","entrezGeneId":100422656},{"hugoGeneSymbol":"EEF1DP8","entrezGeneId":283236},{"hugoGeneSymbol":"EEF1E1","entrezGeneId":9521},{"hugoGeneSymbol":"EEF1E1-BLOC1S5","entrezGeneId":100526837},{"hugoGeneSymbol":"EEF1E1P1","entrezGeneId":100130388},{"hugoGeneSymbol":"EEF1G","entrezGeneId":1937},{"hugoGeneSymbol":"EEF1GP1","entrezGeneId":646837},{"hugoGeneSymbol":"EEF1GP2","entrezGeneId":100130260},{"hugoGeneSymbol":"EEF1GP3","entrezGeneId":651628},{"hugoGeneSymbol":"EEF1GP4","entrezGeneId":100129403},{"hugoGeneSymbol":"EEF1GP5","entrezGeneId":642357},{"hugoGeneSymbol":"EEF1GP6","entrezGeneId":100421733},{"hugoGeneSymbol":"EEF1GP7","entrezGeneId":645311},{"hugoGeneSymbol":"EEF1GP8","entrezGeneId":391698},{"hugoGeneSymbol":"EEF2","entrezGeneId":1938},{"hugoGeneSymbol":"EEF2K","entrezGeneId":29904},{"hugoGeneSymbol":"EEF2KMT","entrezGeneId":196483},{"hugoGeneSymbol":"EEFSEC","entrezGeneId":60678},{"hugoGeneSymbol":"EEGV1","entrezGeneId":1940},{"hugoGeneSymbol":"EEPD1","entrezGeneId":80820},{"hugoGeneSymbol":"EFCAB1","entrezGeneId":79645},{"hugoGeneSymbol":"EFCAB10","entrezGeneId":100130771},{"hugoGeneSymbol":"EFCAB11","entrezGeneId":90141},{"hugoGeneSymbol":"EFCAB12","entrezGeneId":90288},{"hugoGeneSymbol":"EFCAB13","entrezGeneId":124989},{"hugoGeneSymbol":"EFCAB14","entrezGeneId":9813},{"hugoGeneSymbol":"EFCAB14-AS1","entrezGeneId":100130197},{"hugoGeneSymbol":"EFCAB14P1","entrezGeneId":106479047},{"hugoGeneSymbol":"EFCAB2","entrezGeneId":84288},{"hugoGeneSymbol":"EFCAB3","entrezGeneId":146779},{"hugoGeneSymbol":"EFCAB5","entrezGeneId":374786},{"hugoGeneSymbol":"EFCAB6","entrezGeneId":64800},{"hugoGeneSymbol":"EFCAB6-AS1","entrezGeneId":100874197},{"hugoGeneSymbol":"EFCAB7","entrezGeneId":84455},{"hugoGeneSymbol":"EFCAB8","entrezGeneId":388795},{"hugoGeneSymbol":"EFCAB9","entrezGeneId":285588},{"hugoGeneSymbol":"EFCC1","entrezGeneId":79825},{"hugoGeneSymbol":"EFEMP1","entrezGeneId":2202},{"hugoGeneSymbol":"EFEMP2","entrezGeneId":30008},{"hugoGeneSymbol":"EFHB","entrezGeneId":151651},{"hugoGeneSymbol":"EFHC1","entrezGeneId":114327},{"hugoGeneSymbol":"EFHC2","entrezGeneId":80258},{"hugoGeneSymbol":"EFHD1","entrezGeneId":80303},{"hugoGeneSymbol":"EFHD2","entrezGeneId":79180},{"hugoGeneSymbol":"EFL1","entrezGeneId":79631},{"hugoGeneSymbol":"EFL1P1","entrezGeneId":648809},{"hugoGeneSymbol":"EFL1P2","entrezGeneId":100422019},{"hugoGeneSymbol":"EFNA1","entrezGeneId":1942},{"hugoGeneSymbol":"EFNA2","entrezGeneId":1943},{"hugoGeneSymbol":"EFNA3","entrezGeneId":1944},{"hugoGeneSymbol":"EFNA4","entrezGeneId":1945},{"hugoGeneSymbol":"EFNA5","entrezGeneId":1946},{"hugoGeneSymbol":"EFNB1","entrezGeneId":1947},{"hugoGeneSymbol":"EFNB2","entrezGeneId":1948},{"hugoGeneSymbol":"EFNB3","entrezGeneId":1949},{"hugoGeneSymbol":"EFR3A","entrezGeneId":23167},{"hugoGeneSymbol":"EFR3B","entrezGeneId":22979},{"hugoGeneSymbol":"EFS","entrezGeneId":10278},{"hugoGeneSymbol":"EFTUD2","entrezGeneId":9343},{"hugoGeneSymbol":"EGF","entrezGeneId":1950},{"hugoGeneSymbol":"EGFEM1P","entrezGeneId":93556},{"hugoGeneSymbol":"EGFL6","entrezGeneId":25975},{"hugoGeneSymbol":"EGFL7","entrezGeneId":51162},{"hugoGeneSymbol":"EGFL8","entrezGeneId":80864},{"hugoGeneSymbol":"EGFLAM","entrezGeneId":133584},{"hugoGeneSymbol":"EGFLAM-AS1","entrezGeneId":100874117},{"hugoGeneSymbol":"EGFLAM-AS2","entrezGeneId":100506475},{"hugoGeneSymbol":"EGFLAM-AS3","entrezGeneId":100874116},{"hugoGeneSymbol":"EGFLAM-AS4","entrezGeneId":100852408},{"hugoGeneSymbol":"EGFR","entrezGeneId":1956},{"hugoGeneSymbol":"EGFR-AS1","entrezGeneId":100507500},{"hugoGeneSymbol":"EGI","entrezGeneId":1957},{"hugoGeneSymbol":"EGLN1","entrezGeneId":54583},{"hugoGeneSymbol":"EGLN1P1","entrezGeneId":106660614},{"hugoGeneSymbol":"EGLN2","entrezGeneId":112398},{"hugoGeneSymbol":"EGLN3","entrezGeneId":112399},{"hugoGeneSymbol":"EGLN3-AS1","entrezGeneId":105370445},{"hugoGeneSymbol":"EGLN3P1","entrezGeneId":100420503},{"hugoGeneSymbol":"EGOT","entrezGeneId":100126791},{"hugoGeneSymbol":"EGR1","entrezGeneId":1958},{"hugoGeneSymbol":"EGR2","entrezGeneId":1959},{"hugoGeneSymbol":"EGR3","entrezGeneId":1960},{"hugoGeneSymbol":"EGR4","entrezGeneId":1961},{"hugoGeneSymbol":"EHBP1","entrezGeneId":23301},{"hugoGeneSymbol":"EHBP1L1","entrezGeneId":254102},{"hugoGeneSymbol":"EHD1","entrezGeneId":10938},{"hugoGeneSymbol":"EHD2","entrezGeneId":30846},{"hugoGeneSymbol":"EHD3","entrezGeneId":30845},{"hugoGeneSymbol":"EHD4","entrezGeneId":30844},{"hugoGeneSymbol":"EHD4-AS1","entrezGeneId":101928363},{"hugoGeneSymbol":"EHF","entrezGeneId":26298},{"hugoGeneSymbol":"EHHADH","entrezGeneId":1962},{"hugoGeneSymbol":"EHHADH-AS1","entrezGeneId":339926},{"hugoGeneSymbol":"EHMT1","entrezGeneId":79813},{"hugoGeneSymbol":"EHMT2","entrezGeneId":10919},{"hugoGeneSymbol":"EHMT2-AS1","entrezGeneId":106478954},{"hugoGeneSymbol":"EI24","entrezGeneId":9538},{"hugoGeneSymbol":"EI24P1","entrezGeneId":100129423},{"hugoGeneSymbol":"EI24P2","entrezGeneId":100129866},{"hugoGeneSymbol":"EI24P3","entrezGeneId":100131881},{"hugoGeneSymbol":"EI24P4","entrezGeneId":100420072},{"hugoGeneSymbol":"EI24P5","entrezGeneId":100533660},{"hugoGeneSymbol":"EID1","entrezGeneId":23741},{"hugoGeneSymbol":"EID2","entrezGeneId":163126},{"hugoGeneSymbol":"EID2B","entrezGeneId":126272},{"hugoGeneSymbol":"EID3","entrezGeneId":493861},{"hugoGeneSymbol":"EIF1","entrezGeneId":10209},{"hugoGeneSymbol":"EIF1AD","entrezGeneId":84285},{"hugoGeneSymbol":"EIF1AX","entrezGeneId":1964},{"hugoGeneSymbol":"EIF1AX-AS1","entrezGeneId":100874078},{"hugoGeneSymbol":"EIF1AXP1","entrezGeneId":280661},{"hugoGeneSymbol":"EIF1AXP2","entrezGeneId":106479036},{"hugoGeneSymbol":"EIF1AY","entrezGeneId":9086},{"hugoGeneSymbol":"EIF1B","entrezGeneId":10289},{"hugoGeneSymbol":"EIF1B-AS1","entrezGeneId":440952},{"hugoGeneSymbol":"EIF1P1","entrezGeneId":100505855},{"hugoGeneSymbol":"EIF1P2","entrezGeneId":100288425},{"hugoGeneSymbol":"EIF1P3","entrezGeneId":730144},{"hugoGeneSymbol":"EIF1P4","entrezGeneId":100130566},{"hugoGeneSymbol":"EIF1P5","entrezGeneId":106481690},{"hugoGeneSymbol":"EIF1P6","entrezGeneId":106480277},{"hugoGeneSymbol":"EIF1P7","entrezGeneId":106481691},{"hugoGeneSymbol":"EIF2A","entrezGeneId":83939},{"hugoGeneSymbol":"EIF2AK1","entrezGeneId":27102},{"hugoGeneSymbol":"EIF2AK2","entrezGeneId":5610},{"hugoGeneSymbol":"EIF2AK3","entrezGeneId":9451},{"hugoGeneSymbol":"EIF2AK4","entrezGeneId":440275},{"hugoGeneSymbol":"EIF2AP1","entrezGeneId":100874393},{"hugoGeneSymbol":"EIF2AP2","entrezGeneId":100874394},{"hugoGeneSymbol":"EIF2AP3","entrezGeneId":100874395},{"hugoGeneSymbol":"EIF2AP4","entrezGeneId":100874401},{"hugoGeneSymbol":"EIF2B1","entrezGeneId":1967},{"hugoGeneSymbol":"EIF2B2","entrezGeneId":8892},{"hugoGeneSymbol":"EIF2B3","entrezGeneId":8891},{"hugoGeneSymbol":"EIF2B4","entrezGeneId":8890},{"hugoGeneSymbol":"EIF2B5","entrezGeneId":8893},{"hugoGeneSymbol":"EIF2D","entrezGeneId":1939},{"hugoGeneSymbol":"EIF2S1","entrezGeneId":1965},{"hugoGeneSymbol":"EIF2S2","entrezGeneId":8894},{"hugoGeneSymbol":"EIF2S2P1","entrezGeneId":319115},{"hugoGeneSymbol":"EIF2S2P2","entrezGeneId":347673},{"hugoGeneSymbol":"EIF2S2P3","entrezGeneId":283014},{"hugoGeneSymbol":"EIF2S2P4","entrezGeneId":728350},{"hugoGeneSymbol":"EIF2S2P5","entrezGeneId":347675},{"hugoGeneSymbol":"EIF2S2P6","entrezGeneId":100129629},{"hugoGeneSymbol":"EIF2S2P7","entrezGeneId":647016},{"hugoGeneSymbol":"EIF2S3","entrezGeneId":1968},{"hugoGeneSymbol":"EIF2S3B","entrezGeneId":255308},{"hugoGeneSymbol":"EIF3A","entrezGeneId":8661},{"hugoGeneSymbol":"EIF3B","entrezGeneId":8662},{"hugoGeneSymbol":"EIF3C","entrezGeneId":8663},{"hugoGeneSymbol":"EIF3CL","entrezGeneId":728689},{"hugoGeneSymbol":"EIF3D","entrezGeneId":8664},{"hugoGeneSymbol":"EIF3E","entrezGeneId":3646},{"hugoGeneSymbol":"EIF3EP1","entrezGeneId":3647},{"hugoGeneSymbol":"EIF3EP2","entrezGeneId":100132597},{"hugoGeneSymbol":"EIF3EP3","entrezGeneId":100462836},{"hugoGeneSymbol":"EIF3EP4","entrezGeneId":100422200},{"hugoGeneSymbol":"EIF3F","entrezGeneId":8665},{"hugoGeneSymbol":"EIF3FP1","entrezGeneId":54053},{"hugoGeneSymbol":"EIF3FP2","entrezGeneId":83880},{"hugoGeneSymbol":"EIF3FP3","entrezGeneId":339799},{"hugoGeneSymbol":"EIF3G","entrezGeneId":8666},{"hugoGeneSymbol":"EIF3H","entrezGeneId":8667},{"hugoGeneSymbol":"EIF3I","entrezGeneId":8668},{"hugoGeneSymbol":"EIF3IP1","entrezGeneId":442720},{"hugoGeneSymbol":"EIF3J","entrezGeneId":8669},{"hugoGeneSymbol":"EIF3J-DT","entrezGeneId":645212},{"hugoGeneSymbol":"EIF3K","entrezGeneId":27335},{"hugoGeneSymbol":"EIF3KP1","entrezGeneId":134505},{"hugoGeneSymbol":"EIF3KP2","entrezGeneId":100129045},{"hugoGeneSymbol":"EIF3KP3","entrezGeneId":645368},{"hugoGeneSymbol":"EIF3L","entrezGeneId":51386},{"hugoGeneSymbol":"EIF3LP1","entrezGeneId":319117},{"hugoGeneSymbol":"EIF3LP2","entrezGeneId":143341},{"hugoGeneSymbol":"EIF3LP3","entrezGeneId":340947},{"hugoGeneSymbol":"EIF3M","entrezGeneId":10480},{"hugoGeneSymbol":"EIF4A1","entrezGeneId":1973},{"hugoGeneSymbol":"EIF4A1P1","entrezGeneId":54052},{"hugoGeneSymbol":"EIF4A1P10","entrezGeneId":100421533},{"hugoGeneSymbol":"EIF4A1P11","entrezGeneId":100130006},{"hugoGeneSymbol":"EIF4A1P12","entrezGeneId":100462830},{"hugoGeneSymbol":"EIF4A1P13","entrezGeneId":100462826},{"hugoGeneSymbol":"EIF4A1P2","entrezGeneId":359792},{"hugoGeneSymbol":"EIF4A1P3","entrezGeneId":100462824},{"hugoGeneSymbol":"EIF4A1P4","entrezGeneId":728698},{"hugoGeneSymbol":"EIF4A1P5","entrezGeneId":390394},{"hugoGeneSymbol":"EIF4A1P6","entrezGeneId":390407},{"hugoGeneSymbol":"EIF4A1P7","entrezGeneId":341784},{"hugoGeneSymbol":"EIF4A1P8","entrezGeneId":100289102},{"hugoGeneSymbol":"EIF4A1P9","entrezGeneId":642746},{"hugoGeneSymbol":"EIF4A2","entrezGeneId":1974},{"hugoGeneSymbol":"EIF4A2P1","entrezGeneId":646171},{"hugoGeneSymbol":"EIF4A2P2","entrezGeneId":100421579},{"hugoGeneSymbol":"EIF4A2P3","entrezGeneId":100133309},{"hugoGeneSymbol":"EIF4A2P4","entrezGeneId":286512},{"hugoGeneSymbol":"EIF4A2P5","entrezGeneId":106480446},{"hugoGeneSymbol":"EIF4A3","entrezGeneId":9775},{"hugoGeneSymbol":"EIF4A3P1","entrezGeneId":390843},{"hugoGeneSymbol":"EIF4B","entrezGeneId":1975},{"hugoGeneSymbol":"EIF4BP1","entrezGeneId":319118},{"hugoGeneSymbol":"EIF4BP2","entrezGeneId":100129337},{"hugoGeneSymbol":"EIF4BP3","entrezGeneId":100128771},{"hugoGeneSymbol":"EIF4BP4","entrezGeneId":100130064},{"hugoGeneSymbol":"EIF4BP5","entrezGeneId":100421528},{"hugoGeneSymbol":"EIF4BP6","entrezGeneId":645579},{"hugoGeneSymbol":"EIF4BP7","entrezGeneId":643873},{"hugoGeneSymbol":"EIF4BP8","entrezGeneId":339881},{"hugoGeneSymbol":"EIF4BP9","entrezGeneId":100129692},{"hugoGeneSymbol":"EIF4E","entrezGeneId":1977},{"hugoGeneSymbol":"EIF4E1B","entrezGeneId":253314},{"hugoGeneSymbol":"EIF4E2","entrezGeneId":9470},{"hugoGeneSymbol":"EIF4E2P1","entrezGeneId":128770},{"hugoGeneSymbol":"EIF4E2P2","entrezGeneId":645207},{"hugoGeneSymbol":"EIF4E3","entrezGeneId":317649},{"hugoGeneSymbol":"EIF4EBP1","entrezGeneId":1978},{"hugoGeneSymbol":"EIF4EBP1P1","entrezGeneId":326295},{"hugoGeneSymbol":"EIF4EBP1P2","entrezGeneId":768328},{"hugoGeneSymbol":"EIF4EBP2","entrezGeneId":1979},{"hugoGeneSymbol":"EIF4EBP2P1","entrezGeneId":170510},{"hugoGeneSymbol":"EIF4EBP2P2","entrezGeneId":100190923},{"hugoGeneSymbol":"EIF4EBP2P3","entrezGeneId":100190924},{"hugoGeneSymbol":"EIF4EBP3","entrezGeneId":8637},{"hugoGeneSymbol":"EIF4ENIF1","entrezGeneId":56478},{"hugoGeneSymbol":"EIF4EP1","entrezGeneId":1980},{"hugoGeneSymbol":"EIF4EP2","entrezGeneId":100131693},{"hugoGeneSymbol":"EIF4EP3","entrezGeneId":100132918},{"hugoGeneSymbol":"EIF4EP4","entrezGeneId":100421455},{"hugoGeneSymbol":"EIF4EP5","entrezGeneId":100131565},{"hugoGeneSymbol":"EIF4G1","entrezGeneId":1981},{"hugoGeneSymbol":"EIF4G2","entrezGeneId":1982},{"hugoGeneSymbol":"EIF4G3","entrezGeneId":8672},{"hugoGeneSymbol":"EIF4H","entrezGeneId":7458},{"hugoGeneSymbol":"EIF4HP1","entrezGeneId":401316},{"hugoGeneSymbol":"EIF4HP2","entrezGeneId":100421545},{"hugoGeneSymbol":"EIF5","entrezGeneId":1983},{"hugoGeneSymbol":"EIF5A","entrezGeneId":1984},{"hugoGeneSymbol":"EIF5A2","entrezGeneId":56648},{"hugoGeneSymbol":"EIF5A2P1","entrezGeneId":100506058},{"hugoGeneSymbol":"EIF5AL1","entrezGeneId":143244},{"hugoGeneSymbol":"EIF5AP2","entrezGeneId":1986},{"hugoGeneSymbol":"EIF5AP3","entrezGeneId":1987},{"hugoGeneSymbol":"EIF5AP4","entrezGeneId":642592},{"hugoGeneSymbol":"EIF5B","entrezGeneId":9669},{"hugoGeneSymbol":"EIF5P1","entrezGeneId":100421390},{"hugoGeneSymbol":"EIF5P2","entrezGeneId":100421391},{"hugoGeneSymbol":"EIF6","entrezGeneId":3692},{"hugoGeneSymbol":"EIG2","entrezGeneId":353124},{"hugoGeneSymbol":"EIG3","entrezGeneId":432400},{"hugoGeneSymbol":"EIG4","entrezGeneId":780913},{"hugoGeneSymbol":"EIG5","entrezGeneId":100188861},{"hugoGeneSymbol":"EIM","entrezGeneId":54119},{"hugoGeneSymbol":"EIPR1","entrezGeneId":7260},{"hugoGeneSymbol":"EIPR1-IT1","entrezGeneId":100874301},{"hugoGeneSymbol":"EJM2","entrezGeneId":50715},{"hugoGeneSymbol":"EJM3","entrezGeneId":449018},{"hugoGeneSymbol":"EJM4","entrezGeneId":100126594},{"hugoGeneSymbol":"EJM9","entrezGeneId":100750238},{"hugoGeneSymbol":"EKD2","entrezGeneId":100124415},{"hugoGeneSymbol":"ELAC1","entrezGeneId":55520},{"hugoGeneSymbol":"ELAC2","entrezGeneId":60528},{"hugoGeneSymbol":"ELANE","entrezGeneId":1991},{"hugoGeneSymbol":"ELAVL1","entrezGeneId":1994},{"hugoGeneSymbol":"ELAVL2","entrezGeneId":1993},{"hugoGeneSymbol":"ELAVL3","entrezGeneId":1995},{"hugoGeneSymbol":"ELAVL4","entrezGeneId":1996},{"hugoGeneSymbol":"ELDR","entrezGeneId":102725541},{"hugoGeneSymbol":"ELF1","entrezGeneId":1997},{"hugoGeneSymbol":"ELF2","entrezGeneId":1998},{"hugoGeneSymbol":"ELF2P1","entrezGeneId":100101917},{"hugoGeneSymbol":"ELF2P2","entrezGeneId":260335},{"hugoGeneSymbol":"ELF2P3","entrezGeneId":260336},{"hugoGeneSymbol":"ELF2P4","entrezGeneId":644935},{"hugoGeneSymbol":"ELF3","entrezGeneId":1999},{"hugoGeneSymbol":"ELF3-AS1","entrezGeneId":102723465},{"hugoGeneSymbol":"ELF4","entrezGeneId":2000},{"hugoGeneSymbol":"ELF5","entrezGeneId":2001},{"hugoGeneSymbol":"ELFN1","entrezGeneId":392617},{"hugoGeneSymbol":"ELFN1-AS1","entrezGeneId":101927125},{"hugoGeneSymbol":"ELFN2","entrezGeneId":114794},{"hugoGeneSymbol":"ELK1","entrezGeneId":2002},{"hugoGeneSymbol":"ELK1P1","entrezGeneId":647102},{"hugoGeneSymbol":"ELK2AP","entrezGeneId":2003},{"hugoGeneSymbol":"ELK2BP","entrezGeneId":9995},{"hugoGeneSymbol":"ELK3","entrezGeneId":2004},{"hugoGeneSymbol":"ELK4","entrezGeneId":2005},{"hugoGeneSymbol":"ELL","entrezGeneId":8178},{"hugoGeneSymbol":"ELL2","entrezGeneId":22936},{"hugoGeneSymbol":"ELL2P1","entrezGeneId":646270},{"hugoGeneSymbol":"ELL2P2","entrezGeneId":100421143},{"hugoGeneSymbol":"ELL2P3","entrezGeneId":100533713},{"hugoGeneSymbol":"ELL2P4","entrezGeneId":100128690},{"hugoGeneSymbol":"ELL3","entrezGeneId":80237},{"hugoGeneSymbol":"ELMO1","entrezGeneId":9844},{"hugoGeneSymbol":"ELMO1-AS1","entrezGeneId":100861514},{"hugoGeneSymbol":"ELMO2","entrezGeneId":63916},{"hugoGeneSymbol":"ELMO2P1","entrezGeneId":729894},{"hugoGeneSymbol":"ELMO3","entrezGeneId":79767},{"hugoGeneSymbol":"ELMOD1","entrezGeneId":55531},{"hugoGeneSymbol":"ELMOD2","entrezGeneId":255520},{"hugoGeneSymbol":"ELMOD3","entrezGeneId":84173},{"hugoGeneSymbol":"ELMSAN1","entrezGeneId":91748},{"hugoGeneSymbol":"ELN","entrezGeneId":2006},{"hugoGeneSymbol":"ELN-AS1","entrezGeneId":107986809},{"hugoGeneSymbol":"ELOA","entrezGeneId":6924},{"hugoGeneSymbol":"ELOA-AS1","entrezGeneId":100506963},{"hugoGeneSymbol":"ELOA2","entrezGeneId":51224},{"hugoGeneSymbol":"ELOA3","entrezGeneId":162699},{"hugoGeneSymbol":"ELOA3B","entrezGeneId":728929},{"hugoGeneSymbol":"ELOA3C","entrezGeneId":107983955},{"hugoGeneSymbol":"ELOA3D","entrezGeneId":100506888},{"hugoGeneSymbol":"ELOB","entrezGeneId":6923},{"hugoGeneSymbol":"ELOBP1","entrezGeneId":246717},{"hugoGeneSymbol":"ELOBP2","entrezGeneId":253665},{"hugoGeneSymbol":"ELOBP3","entrezGeneId":100856810},{"hugoGeneSymbol":"ELOBP4","entrezGeneId":100874519},{"hugoGeneSymbol":"ELOC","entrezGeneId":6921},{"hugoGeneSymbol":"ELOCP10","entrezGeneId":100462871},{"hugoGeneSymbol":"ELOCP11","entrezGeneId":100462872},{"hugoGeneSymbol":"ELOCP12","entrezGeneId":100462874},{"hugoGeneSymbol":"ELOCP13","entrezGeneId":100462875},{"hugoGeneSymbol":"ELOCP14","entrezGeneId":100462876},{"hugoGeneSymbol":"ELOCP15","entrezGeneId":100462877},{"hugoGeneSymbol":"ELOCP16","entrezGeneId":100462878},{"hugoGeneSymbol":"ELOCP17","entrezGeneId":100462879},{"hugoGeneSymbol":"ELOCP18","entrezGeneId":100130626},{"hugoGeneSymbol":"ELOCP19","entrezGeneId":100462880},{"hugoGeneSymbol":"ELOCP2","entrezGeneId":283747},{"hugoGeneSymbol":"ELOCP20","entrezGeneId":100287778},{"hugoGeneSymbol":"ELOCP21","entrezGeneId":100462866},{"hugoGeneSymbol":"ELOCP22","entrezGeneId":100287579},{"hugoGeneSymbol":"ELOCP23","entrezGeneId":100462881},{"hugoGeneSymbol":"ELOCP24","entrezGeneId":100287692},{"hugoGeneSymbol":"ELOCP26","entrezGeneId":101059905},{"hugoGeneSymbol":"ELOCP27","entrezGeneId":107133523},{"hugoGeneSymbol":"ELOCP28","entrezGeneId":100287483},{"hugoGeneSymbol":"ELOCP29","entrezGeneId":100132973},{"hugoGeneSymbol":"ELOCP3","entrezGeneId":644540},{"hugoGeneSymbol":"ELOCP30","entrezGeneId":106481670},{"hugoGeneSymbol":"ELOCP31","entrezGeneId":100422582},{"hugoGeneSymbol":"ELOCP32","entrezGeneId":106481964},{"hugoGeneSymbol":"ELOCP33","entrezGeneId":101928827},{"hugoGeneSymbol":"ELOCP34","entrezGeneId":106481671},{"hugoGeneSymbol":"ELOCP35","entrezGeneId":106480250},{"hugoGeneSymbol":"ELOCP4","entrezGeneId":100462873},{"hugoGeneSymbol":"ELOCP5","entrezGeneId":100288493},{"hugoGeneSymbol":"ELOCP6","entrezGeneId":100462867},{"hugoGeneSymbol":"ELOCP7","entrezGeneId":100462868},{"hugoGeneSymbol":"ELOCP8","entrezGeneId":100462869},{"hugoGeneSymbol":"ELOCP9","entrezGeneId":100462870},{"hugoGeneSymbol":"ELOF1","entrezGeneId":84337},{"hugoGeneSymbol":"ELOVL1","entrezGeneId":64834},{"hugoGeneSymbol":"ELOVL2","entrezGeneId":54898},{"hugoGeneSymbol":"ELOVL2-AS1","entrezGeneId":100506409},{"hugoGeneSymbol":"ELOVL3","entrezGeneId":83401},{"hugoGeneSymbol":"ELOVL4","entrezGeneId":6785},{"hugoGeneSymbol":"ELOVL5","entrezGeneId":60481},{"hugoGeneSymbol":"ELOVL6","entrezGeneId":79071},{"hugoGeneSymbol":"ELOVL7","entrezGeneId":79993},{"hugoGeneSymbol":"ELP1","entrezGeneId":8518},{"hugoGeneSymbol":"ELP2","entrezGeneId":55250},{"hugoGeneSymbol":"ELP3","entrezGeneId":55140},{"hugoGeneSymbol":"ELP4","entrezGeneId":26610},{"hugoGeneSymbol":"ELP5","entrezGeneId":23587},{"hugoGeneSymbol":"ELP6","entrezGeneId":54859},{"hugoGeneSymbol":"ELSPBP1","entrezGeneId":64100},{"hugoGeneSymbol":"EMB","entrezGeneId":133418},{"hugoGeneSymbol":"EMBP1","entrezGeneId":647121},{"hugoGeneSymbol":"EMC1","entrezGeneId":23065},{"hugoGeneSymbol":"EMC10","entrezGeneId":284361},{"hugoGeneSymbol":"EMC2","entrezGeneId":9694},{"hugoGeneSymbol":"EMC3","entrezGeneId":55831},{"hugoGeneSymbol":"EMC3-AS1","entrezGeneId":442075},{"hugoGeneSymbol":"EMC4","entrezGeneId":51234},{"hugoGeneSymbol":"EMC6","entrezGeneId":83460},{"hugoGeneSymbol":"EMC7","entrezGeneId":56851},{"hugoGeneSymbol":"EMC8","entrezGeneId":10328},{"hugoGeneSymbol":"EMC9","entrezGeneId":51016},{"hugoGeneSymbol":"EMCN","entrezGeneId":51705},{"hugoGeneSymbol":"EMD","entrezGeneId":2010},{"hugoGeneSymbol":"EME1","entrezGeneId":146956},{"hugoGeneSymbol":"EME2","entrezGeneId":197342},{"hugoGeneSymbol":"EMG1","entrezGeneId":10436},{"hugoGeneSymbol":"EMID1","entrezGeneId":129080},{"hugoGeneSymbol":"EMILIN1","entrezGeneId":11117},{"hugoGeneSymbol":"EMILIN2","entrezGeneId":84034},{"hugoGeneSymbol":"EMILIN3","entrezGeneId":90187},{"hugoGeneSymbol":"EML1","entrezGeneId":2009},{"hugoGeneSymbol":"EML2","entrezGeneId":24139},{"hugoGeneSymbol":"EML2-AS1","entrezGeneId":100287177},{"hugoGeneSymbol":"EML3","entrezGeneId":256364},{"hugoGeneSymbol":"EML4","entrezGeneId":27436},{"hugoGeneSymbol":"EML5","entrezGeneId":161436},{"hugoGeneSymbol":"EML6","entrezGeneId":400954},{"hugoGeneSymbol":"EMP1","entrezGeneId":2012},{"hugoGeneSymbol":"EMP2","entrezGeneId":2013},{"hugoGeneSymbol":"EMP3","entrezGeneId":2014},{"hugoGeneSymbol":"EMSY","entrezGeneId":56946},{"hugoGeneSymbol":"EMWX","entrezGeneId":10118},{"hugoGeneSymbol":"EMX1","entrezGeneId":2016},{"hugoGeneSymbol":"EMX2","entrezGeneId":2018},{"hugoGeneSymbol":"EMX2OS","entrezGeneId":196047},{"hugoGeneSymbol":"EN1","entrezGeneId":2019},{"hugoGeneSymbol":"EN2","entrezGeneId":2020},{"hugoGeneSymbol":"ENAH","entrezGeneId":55740},{"hugoGeneSymbol":"ENAM","entrezGeneId":10117},{"hugoGeneSymbol":"ENC1","entrezGeneId":8507},{"hugoGeneSymbol":"ENDO1","entrezGeneId":100188863},{"hugoGeneSymbol":"ENDOD1","entrezGeneId":23052},{"hugoGeneSymbol":"ENDOG","entrezGeneId":2021},{"hugoGeneSymbol":"ENDOU","entrezGeneId":8909},{"hugoGeneSymbol":"ENDOV","entrezGeneId":284131},{"hugoGeneSymbol":"ENFL2","entrezGeneId":50971},{"hugoGeneSymbol":"ENG","entrezGeneId":2022},{"hugoGeneSymbol":"ENGASE","entrezGeneId":64772},{"hugoGeneSymbol":"ENHO","entrezGeneId":375704},{"hugoGeneSymbol":"ENKD1","entrezGeneId":84080},{"hugoGeneSymbol":"ENKUR","entrezGeneId":219670},{"hugoGeneSymbol":"ENO1","entrezGeneId":2023},{"hugoGeneSymbol":"ENO1-AS1","entrezGeneId":100505975},{"hugoGeneSymbol":"ENO1-IT1","entrezGeneId":106480431},{"hugoGeneSymbol":"ENO1P1","entrezGeneId":2025},{"hugoGeneSymbol":"ENO1P2","entrezGeneId":100419098},{"hugoGeneSymbol":"ENO1P3","entrezGeneId":100419069},{"hugoGeneSymbol":"ENO1P4","entrezGeneId":100885799},{"hugoGeneSymbol":"ENO2","entrezGeneId":2026},{"hugoGeneSymbol":"ENO3","entrezGeneId":2027},{"hugoGeneSymbol":"ENO4","entrezGeneId":387712},{"hugoGeneSymbol":"ENOPH1","entrezGeneId":58478},{"hugoGeneSymbol":"ENOSF1","entrezGeneId":55556},{"hugoGeneSymbol":"ENOX1","entrezGeneId":55068},{"hugoGeneSymbol":"ENOX1-AS1","entrezGeneId":100874129},{"hugoGeneSymbol":"ENOX1-AS2","entrezGeneId":100874130},{"hugoGeneSymbol":"ENOX2","entrezGeneId":10495},{"hugoGeneSymbol":"ENPEP","entrezGeneId":2028},{"hugoGeneSymbol":"ENPP1","entrezGeneId":5167},{"hugoGeneSymbol":"ENPP2","entrezGeneId":5168},{"hugoGeneSymbol":"ENPP3","entrezGeneId":5169},{"hugoGeneSymbol":"ENPP4","entrezGeneId":22875},{"hugoGeneSymbol":"ENPP5","entrezGeneId":59084},{"hugoGeneSymbol":"ENPP6","entrezGeneId":133121},{"hugoGeneSymbol":"ENPP7","entrezGeneId":339221},{"hugoGeneSymbol":"ENPP7P1","entrezGeneId":100421823},{"hugoGeneSymbol":"ENPP7P10","entrezGeneId":100421805},{"hugoGeneSymbol":"ENPP7P11","entrezGeneId":100421806},{"hugoGeneSymbol":"ENPP7P12","entrezGeneId":106480230},{"hugoGeneSymbol":"ENPP7P13","entrezGeneId":104644205},{"hugoGeneSymbol":"ENPP7P14","entrezGeneId":106481720},{"hugoGeneSymbol":"ENPP7P2","entrezGeneId":100421813},{"hugoGeneSymbol":"ENPP7P3","entrezGeneId":106481658},{"hugoGeneSymbol":"ENPP7P4","entrezGeneId":100421816},{"hugoGeneSymbol":"ENPP7P5","entrezGeneId":106480674},{"hugoGeneSymbol":"ENPP7P6","entrezGeneId":107133511},{"hugoGeneSymbol":"ENPP7P7","entrezGeneId":100421859},{"hugoGeneSymbol":"ENPP7P8","entrezGeneId":100421860},{"hugoGeneSymbol":"ENPP7P9","entrezGeneId":100421803},{"hugoGeneSymbol":"ENSA","entrezGeneId":2029},{"hugoGeneSymbol":"ENSAP1","entrezGeneId":170511},{"hugoGeneSymbol":"ENSAP2","entrezGeneId":319114},{"hugoGeneSymbol":"ENSAP3","entrezGeneId":100128203},{"hugoGeneSymbol":"ENTHD1","entrezGeneId":150350},{"hugoGeneSymbol":"ENTPD1","entrezGeneId":953},{"hugoGeneSymbol":"ENTPD1-AS1","entrezGeneId":728558},{"hugoGeneSymbol":"ENTPD2","entrezGeneId":954},{"hugoGeneSymbol":"ENTPD3","entrezGeneId":956},{"hugoGeneSymbol":"ENTPD3-AS1","entrezGeneId":285266},{"hugoGeneSymbol":"ENTPD4","entrezGeneId":9583},{"hugoGeneSymbol":"ENTPD5","entrezGeneId":957},{"hugoGeneSymbol":"ENTPD6","entrezGeneId":955},{"hugoGeneSymbol":"ENTPD7","entrezGeneId":57089},{"hugoGeneSymbol":"ENTPD8","entrezGeneId":377841},{"hugoGeneSymbol":"ENUR1","entrezGeneId":2031},{"hugoGeneSymbol":"ENUR2","entrezGeneId":2032},{"hugoGeneSymbol":"ENY2","entrezGeneId":56943},{"hugoGeneSymbol":"EOE1","entrezGeneId":100302511},{"hugoGeneSymbol":"EOE2","entrezGeneId":100499167},{"hugoGeneSymbol":"EOGT","entrezGeneId":285203},{"hugoGeneSymbol":"EOMES","entrezGeneId":8320},{"hugoGeneSymbol":"EOS","entrezGeneId":7908},{"hugoGeneSymbol":"EP300","entrezGeneId":2033},{"hugoGeneSymbol":"EP300-AS1","entrezGeneId":101927279},{"hugoGeneSymbol":"EP400","entrezGeneId":57634},{"hugoGeneSymbol":"EP400P1","entrezGeneId":347918},{"hugoGeneSymbol":"EPAS1","entrezGeneId":2034},{"hugoGeneSymbol":"EPB41","entrezGeneId":2035},{"hugoGeneSymbol":"EPB41L1","entrezGeneId":2036},{"hugoGeneSymbol":"EPB41L2","entrezGeneId":2037},{"hugoGeneSymbol":"EPB41L3","entrezGeneId":23136},{"hugoGeneSymbol":"EPB41L4A","entrezGeneId":64097},{"hugoGeneSymbol":"EPB41L4A-AS1","entrezGeneId":114915},{"hugoGeneSymbol":"EPB41L4A-DT","entrezGeneId":54508},{"hugoGeneSymbol":"EPB41L4B","entrezGeneId":54566},{"hugoGeneSymbol":"EPB41L5","entrezGeneId":57669},{"hugoGeneSymbol":"EPB42","entrezGeneId":2038},{"hugoGeneSymbol":"EPC1","entrezGeneId":80314},{"hugoGeneSymbol":"EPC2","entrezGeneId":26122},{"hugoGeneSymbol":"EPCAM","entrezGeneId":4072},{"hugoGeneSymbol":"EPDR1","entrezGeneId":54749},{"hugoGeneSymbol":"EPG5","entrezGeneId":57724},{"hugoGeneSymbol":"EPGN","entrezGeneId":255324},{"hugoGeneSymbol":"EPHA1","entrezGeneId":2041},{"hugoGeneSymbol":"EPHA1-AS1","entrezGeneId":285965},{"hugoGeneSymbol":"EPHA10","entrezGeneId":284656},{"hugoGeneSymbol":"EPHA2","entrezGeneId":1969},{"hugoGeneSymbol":"EPHA3","entrezGeneId":2042},{"hugoGeneSymbol":"EPHA4","entrezGeneId":2043},{"hugoGeneSymbol":"EPHA5","entrezGeneId":2044},{"hugoGeneSymbol":"EPHA5-AS1","entrezGeneId":100144602},{"hugoGeneSymbol":"EPHA6","entrezGeneId":285220},{"hugoGeneSymbol":"EPHA7","entrezGeneId":2045},{"hugoGeneSymbol":"EPHA8","entrezGeneId":2046},{"hugoGeneSymbol":"EPHB1","entrezGeneId":2047},{"hugoGeneSymbol":"EPHB2","entrezGeneId":2048},{"hugoGeneSymbol":"EPHB3","entrezGeneId":2049},{"hugoGeneSymbol":"EPHB4","entrezGeneId":2050},{"hugoGeneSymbol":"EPHB6","entrezGeneId":2051},{"hugoGeneSymbol":"EPHX1","entrezGeneId":2052},{"hugoGeneSymbol":"EPHX2","entrezGeneId":2053},{"hugoGeneSymbol":"EPHX3","entrezGeneId":79852},{"hugoGeneSymbol":"EPHX4","entrezGeneId":253152},{"hugoGeneSymbol":"EPM2A","entrezGeneId":7957},{"hugoGeneSymbol":"EPM2AIP1","entrezGeneId":9852},{"hugoGeneSymbol":"EPN1","entrezGeneId":29924},{"hugoGeneSymbol":"EPN2","entrezGeneId":22905},{"hugoGeneSymbol":"EPN2-AS1","entrezGeneId":100874018},{"hugoGeneSymbol":"EPN2-IT1","entrezGeneId":100874309},{"hugoGeneSymbol":"EPN3","entrezGeneId":55040},{"hugoGeneSymbol":"EPO","entrezGeneId":2056},{"hugoGeneSymbol":"EPOP","entrezGeneId":100170841},{"hugoGeneSymbol":"EPOR","entrezGeneId":2057},{"hugoGeneSymbol":"EPPIN","entrezGeneId":57119},{"hugoGeneSymbol":"EPPIN-WFDC6","entrezGeneId":100526773},{"hugoGeneSymbol":"EPPK1","entrezGeneId":83481},{"hugoGeneSymbol":"EPPS","entrezGeneId":266789},{"hugoGeneSymbol":"EPRPDC","entrezGeneId":574044},{"hugoGeneSymbol":"EPRS","entrezGeneId":2058},{"hugoGeneSymbol":"EPS15","entrezGeneId":2060},{"hugoGeneSymbol":"EPS15L1","entrezGeneId":58513},{"hugoGeneSymbol":"EPS15P1","entrezGeneId":55380},{"hugoGeneSymbol":"EPS8","entrezGeneId":2059},{"hugoGeneSymbol":"EPS8L1","entrezGeneId":54869},{"hugoGeneSymbol":"EPS8L2","entrezGeneId":64787},{"hugoGeneSymbol":"EPS8L3","entrezGeneId":79574},{"hugoGeneSymbol":"EPSTI1","entrezGeneId":94240},{"hugoGeneSymbol":"EPX","entrezGeneId":8288},{"hugoGeneSymbol":"EPYC","entrezGeneId":1833},{"hugoGeneSymbol":"EQTN","entrezGeneId":54586},{"hugoGeneSymbol":"ERAL1","entrezGeneId":26284},{"hugoGeneSymbol":"ERAP1","entrezGeneId":51752},{"hugoGeneSymbol":"ERAP2","entrezGeneId":64167},{"hugoGeneSymbol":"ERAS","entrezGeneId":3266},{"hugoGeneSymbol":"ERBB2","entrezGeneId":2064},{"hugoGeneSymbol":"ERBB3","entrezGeneId":2065},{"hugoGeneSymbol":"ERBB4","entrezGeneId":2066},{"hugoGeneSymbol":"ERBIN","entrezGeneId":55914},{"hugoGeneSymbol":"ERC1","entrezGeneId":23085},{"hugoGeneSymbol":"ERC2","entrezGeneId":26059},{"hugoGeneSymbol":"ERC2-IT1","entrezGeneId":711},{"hugoGeneSymbol":"ERCC1","entrezGeneId":2067},{"hugoGeneSymbol":"ERCC2","entrezGeneId":2068},{"hugoGeneSymbol":"ERCC3","entrezGeneId":2071},{"hugoGeneSymbol":"ERCC4","entrezGeneId":2072},{"hugoGeneSymbol":"ERCC5","entrezGeneId":2073},{"hugoGeneSymbol":"ERCC6","entrezGeneId":2074},{"hugoGeneSymbol":"ERCC6L","entrezGeneId":54821},{"hugoGeneSymbol":"ERCC6L2","entrezGeneId":375748},{"hugoGeneSymbol":"ERCC8","entrezGeneId":1161},{"hugoGeneSymbol":"ERCM1","entrezGeneId":2076},{"hugoGeneSymbol":"ERDA1","entrezGeneId":9030},{"hugoGeneSymbol":"EREG","entrezGeneId":2069},{"hugoGeneSymbol":"ERF","entrezGeneId":2077},{"hugoGeneSymbol":"ERFE","entrezGeneId":151176},{"hugoGeneSymbol":"ERG","entrezGeneId":2078},{"hugoGeneSymbol":"ERG28","entrezGeneId":11161},{"hugoGeneSymbol":"ERGIC1","entrezGeneId":57222},{"hugoGeneSymbol":"ERGIC2","entrezGeneId":51290},{"hugoGeneSymbol":"ERGIC3","entrezGeneId":51614},{"hugoGeneSymbol":"ERH","entrezGeneId":2079},{"hugoGeneSymbol":"ERHP1","entrezGeneId":100507125},{"hugoGeneSymbol":"ERHP2","entrezGeneId":100874403},{"hugoGeneSymbol":"ERI1","entrezGeneId":90459},{"hugoGeneSymbol":"ERI2","entrezGeneId":112479},{"hugoGeneSymbol":"ERI3","entrezGeneId":79033},{"hugoGeneSymbol":"ERI3-IT1","entrezGeneId":100874278},{"hugoGeneSymbol":"ERICD","entrezGeneId":104355217},{"hugoGeneSymbol":"ERICH1","entrezGeneId":157697},{"hugoGeneSymbol":"ERICH2","entrezGeneId":285141},{"hugoGeneSymbol":"ERICH3","entrezGeneId":127254},{"hugoGeneSymbol":"ERICH3-AS1","entrezGeneId":101927320},{"hugoGeneSymbol":"ERICH4","entrezGeneId":100170765},{"hugoGeneSymbol":"ERICH5","entrezGeneId":203111},{"hugoGeneSymbol":"ERICH6","entrezGeneId":131831},{"hugoGeneSymbol":"ERICH6-AS1","entrezGeneId":101928085},{"hugoGeneSymbol":"ERICH6B","entrezGeneId":220081},{"hugoGeneSymbol":"ERLEC1","entrezGeneId":27248},{"hugoGeneSymbol":"ERLEC1P1","entrezGeneId":100288870},{"hugoGeneSymbol":"ERLIN1","entrezGeneId":10613},{"hugoGeneSymbol":"ERLIN2","entrezGeneId":11160},{"hugoGeneSymbol":"ERLNC1","entrezGeneId":101929441},{"hugoGeneSymbol":"ERMAP","entrezGeneId":114625},{"hugoGeneSymbol":"ERMARD","entrezGeneId":55780},{"hugoGeneSymbol":"ERMN","entrezGeneId":57471},{"hugoGeneSymbol":"ERMP1","entrezGeneId":79956},{"hugoGeneSymbol":"ERN1","entrezGeneId":2081},{"hugoGeneSymbol":"ERN2","entrezGeneId":10595},{"hugoGeneSymbol":"ERO1A","entrezGeneId":30001},{"hugoGeneSymbol":"ERO1B","entrezGeneId":56605},{"hugoGeneSymbol":"ERP27","entrezGeneId":121506},{"hugoGeneSymbol":"ERP29","entrezGeneId":10961},{"hugoGeneSymbol":"ERP29P1","entrezGeneId":100420612},{"hugoGeneSymbol":"ERP44","entrezGeneId":23071},{"hugoGeneSymbol":"ERRFI1","entrezGeneId":54206},{"hugoGeneSymbol":"ERV18-1","entrezGeneId":100133791},{"hugoGeneSymbol":"ERV3-1","entrezGeneId":2086},{"hugoGeneSymbol":"ERV3-1-ZNF117","entrezGeneId":109504726},{"hugoGeneSymbol":"ERV3-2","entrezGeneId":57612},{"hugoGeneSymbol":"ERV9-1","entrezGeneId":100616497},{"hugoGeneSymbol":"ERVE-1","entrezGeneId":85314},{"hugoGeneSymbol":"ERVE-2","entrezGeneId":100862691},{"hugoGeneSymbol":"ERVE-3","entrezGeneId":100862700},{"hugoGeneSymbol":"ERVE-4","entrezGeneId":100616105},{"hugoGeneSymbol":"ERVFC1-1","entrezGeneId":346547},{"hugoGeneSymbol":"ERVFH21-1","entrezGeneId":100616104},{"hugoGeneSymbol":"ERVFRD-1","entrezGeneId":405754},{"hugoGeneSymbol":"ERVFRD-2","entrezGeneId":388560},{"hugoGeneSymbol":"ERVFRD-3","entrezGeneId":100533725},{"hugoGeneSymbol":"ERVH-1","entrezGeneId":100616446},{"hugoGeneSymbol":"ERVH-2","entrezGeneId":100616461},{"hugoGeneSymbol":"ERVH-3","entrezGeneId":100289683},{"hugoGeneSymbol":"ERVH-4","entrezGeneId":51359},{"hugoGeneSymbol":"ERVH-5","entrezGeneId":100862699},{"hugoGeneSymbol":"ERVH-6","entrezGeneId":51581},{"hugoGeneSymbol":"ERVH-7","entrezGeneId":100862698},{"hugoGeneSymbol":"ERVH48-1","entrezGeneId":90625},{"hugoGeneSymbol":"ERVI-1","entrezGeneId":100131068},{"hugoGeneSymbol":"ERVK-1","entrezGeneId":100862690},{"hugoGeneSymbol":"ERVK-10","entrezGeneId":100616101},{"hugoGeneSymbol":"ERVK-11","entrezGeneId":100862688},{"hugoGeneSymbol":"ERVK-12","entrezGeneId":100616442},{"hugoGeneSymbol":"ERVK-13","entrezGeneId":100861467},{"hugoGeneSymbol":"ERVK-14","entrezGeneId":100862687},{"hugoGeneSymbol":"ERVK-15","entrezGeneId":100616443},{"hugoGeneSymbol":"ERVK-16","entrezGeneId":100616411},{"hugoGeneSymbol":"ERVK-17","entrezGeneId":100862686},{"hugoGeneSymbol":"ERVK-18","entrezGeneId":100775105},{"hugoGeneSymbol":"ERVK-19","entrezGeneId":100862685},{"hugoGeneSymbol":"ERVK-2","entrezGeneId":100616100},{"hugoGeneSymbol":"ERVK-20","entrezGeneId":100616444},{"hugoGeneSymbol":"ERVK-21","entrezGeneId":100616103},{"hugoGeneSymbol":"ERVK-22","entrezGeneId":100616445},{"hugoGeneSymbol":"ERVK-23","entrezGeneId":100616197},{"hugoGeneSymbol":"ERVK-24","entrezGeneId":100862684},{"hugoGeneSymbol":"ERVK-25","entrezGeneId":100862683},{"hugoGeneSymbol":"ERVK-26","entrezGeneId":103539957},{"hugoGeneSymbol":"ERVK-27","entrezGeneId":106144566},{"hugoGeneSymbol":"ERVK-28","entrezGeneId":106707175},{"hugoGeneSymbol":"ERVK-29","entrezGeneId":106144555},{"hugoGeneSymbol":"ERVK-3","entrezGeneId":100862689},{"hugoGeneSymbol":"ERVK-30","entrezGeneId":106144591},{"hugoGeneSymbol":"ERVK-31","entrezGeneId":106144590},{"hugoGeneSymbol":"ERVK-32","entrezGeneId":110006328},{"hugoGeneSymbol":"ERVK-4","entrezGeneId":60359},{"hugoGeneSymbol":"ERVK-5","entrezGeneId":60358},{"hugoGeneSymbol":"ERVK-6","entrezGeneId":64006},{"hugoGeneSymbol":"ERVK-7","entrezGeneId":449619},{"hugoGeneSymbol":"ERVK-8","entrezGeneId":619465},{"hugoGeneSymbol":"ERVK-9","entrezGeneId":100616102},{"hugoGeneSymbol":"ERVK11-1","entrezGeneId":100859922},{"hugoGeneSymbol":"ERVK13-1","entrezGeneId":100507321},{"hugoGeneSymbol":"ERVK3-1","entrezGeneId":105372481},{"hugoGeneSymbol":"ERVK3-2","entrezGeneId":100862697},{"hugoGeneSymbol":"ERVK3-3","entrezGeneId":100616462},{"hugoGeneSymbol":"ERVK3-4","entrezGeneId":100616106},{"hugoGeneSymbol":"ERVK3-5","entrezGeneId":100616412},{"hugoGeneSymbol":"ERVK3-6","entrezGeneId":100616107},{"hugoGeneSymbol":"ERVK3-7","entrezGeneId":100616199},{"hugoGeneSymbol":"ERVK3-8","entrezGeneId":100616108},{"hugoGeneSymbol":"ERVK9-1","entrezGeneId":111188150},{"hugoGeneSymbol":"ERVK9-10","entrezGeneId":111188144},{"hugoGeneSymbol":"ERVK9-11","entrezGeneId":111188141},{"hugoGeneSymbol":"ERVK9-12","entrezGeneId":105375011},{"hugoGeneSymbol":"ERVK9-2","entrezGeneId":111188149},{"hugoGeneSymbol":"ERVK9-3","entrezGeneId":111188148},{"hugoGeneSymbol":"ERVK9-4","entrezGeneId":111188143},{"hugoGeneSymbol":"ERVK9-5","entrezGeneId":111188147},{"hugoGeneSymbol":"ERVK9-6","entrezGeneId":111188146},{"hugoGeneSymbol":"ERVK9-7","entrezGeneId":111188142},{"hugoGeneSymbol":"ERVK9-8","entrezGeneId":111188145},{"hugoGeneSymbol":"ERVK9-9","entrezGeneId":111188137},{"hugoGeneSymbol":"ERVMER34-1","entrezGeneId":100288413},{"hugoGeneSymbol":"ERVMER61-1","entrezGeneId":339476},{"hugoGeneSymbol":"ERVPABLB-1","entrezGeneId":100862693},{"hugoGeneSymbol":"ERVPRODH","entrezGeneId":106660608},{"hugoGeneSymbol":"ERVS71-1","entrezGeneId":100862694},{"hugoGeneSymbol":"ERVS71-2","entrezGeneId":100616200},{"hugoGeneSymbol":"ERVV-1","entrezGeneId":147664},{"hugoGeneSymbol":"ERVV-2","entrezGeneId":100271846},{"hugoGeneSymbol":"ERVW-1","entrezGeneId":30816},{"hugoGeneSymbol":"ERVW-10","entrezGeneId":106144579},{"hugoGeneSymbol":"ERVW-11","entrezGeneId":106144560},{"hugoGeneSymbol":"ERVW-12","entrezGeneId":106144580},{"hugoGeneSymbol":"ERVW-13","entrezGeneId":106144576},{"hugoGeneSymbol":"ERVW-14","entrezGeneId":106144561},{"hugoGeneSymbol":"ERVW-15","entrezGeneId":106144597},{"hugoGeneSymbol":"ERVW-16","entrezGeneId":106144581},{"hugoGeneSymbol":"ERVW-17","entrezGeneId":106144567},{"hugoGeneSymbol":"ERVW-18","entrezGeneId":106144562},{"hugoGeneSymbol":"ERVW-19","entrezGeneId":106144571},{"hugoGeneSymbol":"ERVW-2","entrezGeneId":100379323},{"hugoGeneSymbol":"ERVW-20","entrezGeneId":106144604},{"hugoGeneSymbol":"ERVW-21","entrezGeneId":106144587},{"hugoGeneSymbol":"ERVW-22","entrezGeneId":106144563},{"hugoGeneSymbol":"ERVW-23","entrezGeneId":106144603},{"hugoGeneSymbol":"ERVW-24","entrezGeneId":106144564},{"hugoGeneSymbol":"ERVW-25","entrezGeneId":106144605},{"hugoGeneSymbol":"ERVW-26","entrezGeneId":106144572},{"hugoGeneSymbol":"ERVW-27","entrezGeneId":106144565},{"hugoGeneSymbol":"ERVW-28","entrezGeneId":105694156},{"hugoGeneSymbol":"ERVW-29","entrezGeneId":106144583},{"hugoGeneSymbol":"ERVW-3","entrezGeneId":100862696},{"hugoGeneSymbol":"ERVW-4","entrezGeneId":100616496},{"hugoGeneSymbol":"ERVW-5","entrezGeneId":100862695},{"hugoGeneSymbol":"ERVW-6","entrezGeneId":100616198},{"hugoGeneSymbol":"ERVW-7","entrezGeneId":106144589},{"hugoGeneSymbol":"ERVW-8","entrezGeneId":106144559},{"hugoGeneSymbol":"ERVW-9","entrezGeneId":106699568},{"hugoGeneSymbol":"ESA4","entrezGeneId":2090},{"hugoGeneSymbol":"ESAM","entrezGeneId":90952},{"hugoGeneSymbol":"ESAT","entrezGeneId":2096},{"hugoGeneSymbol":"ESB3","entrezGeneId":2097},{"hugoGeneSymbol":"ESCO1","entrezGeneId":114799},{"hugoGeneSymbol":"ESCO2","entrezGeneId":157570},{"hugoGeneSymbol":"ESD","entrezGeneId":2098},{"hugoGeneSymbol":"ESF1","entrezGeneId":51575},{"hugoGeneSymbol":"ESM1","entrezGeneId":11082},{"hugoGeneSymbol":"ESPL1","entrezGeneId":9700},{"hugoGeneSymbol":"ESPN","entrezGeneId":83715},{"hugoGeneSymbol":"ESPNL","entrezGeneId":339768},{"hugoGeneSymbol":"ESPNP","entrezGeneId":284729},{"hugoGeneSymbol":"ESR1","entrezGeneId":2099},{"hugoGeneSymbol":"ESR2","entrezGeneId":2100},{"hugoGeneSymbol":"ESRG","entrezGeneId":790952},{"hugoGeneSymbol":"ESRP1","entrezGeneId":54845},{"hugoGeneSymbol":"ESRP2","entrezGeneId":80004},{"hugoGeneSymbol":"ESRRA","entrezGeneId":2101},{"hugoGeneSymbol":"ESRRAP1","entrezGeneId":144847},{"hugoGeneSymbol":"ESRRAP2","entrezGeneId":144832},{"hugoGeneSymbol":"ESRRB","entrezGeneId":2103},{"hugoGeneSymbol":"ESRRG","entrezGeneId":2104},{"hugoGeneSymbol":"ESS2","entrezGeneId":8220},{"hugoGeneSymbol":"ESX1","entrezGeneId":80712},{"hugoGeneSymbol":"ESYT1","entrezGeneId":23344},{"hugoGeneSymbol":"ESYT2","entrezGeneId":57488},{"hugoGeneSymbol":"ESYT3","entrezGeneId":83850},{"hugoGeneSymbol":"ETAA1","entrezGeneId":54465},{"hugoGeneSymbol":"ETDA","entrezGeneId":101928677},{"hugoGeneSymbol":"ETDB","entrezGeneId":100129515},{"hugoGeneSymbol":"ETDC","entrezGeneId":110806299},{"hugoGeneSymbol":"ETF1","entrezGeneId":2107},{"hugoGeneSymbol":"ETF1P1","entrezGeneId":6824},{"hugoGeneSymbol":"ETF1P2","entrezGeneId":6825},{"hugoGeneSymbol":"ETF1P3","entrezGeneId":100132121},{"hugoGeneSymbol":"ETFA","entrezGeneId":2108},{"hugoGeneSymbol":"ETFB","entrezGeneId":2109},{"hugoGeneSymbol":"ETFBKMT","entrezGeneId":254013},{"hugoGeneSymbol":"ETFDH","entrezGeneId":2110},{"hugoGeneSymbol":"ETFRF1","entrezGeneId":144363},{"hugoGeneSymbol":"ETHE1","entrezGeneId":23474},{"hugoGeneSymbol":"ETL2","entrezGeneId":619399},{"hugoGeneSymbol":"ETL4","entrezGeneId":100144434},{"hugoGeneSymbol":"ETL6","entrezGeneId":103106902},{"hugoGeneSymbol":"ETM2","entrezGeneId":2112},{"hugoGeneSymbol":"ETM3","entrezGeneId":101027378},{"hugoGeneSymbol":"ETNK1","entrezGeneId":55500},{"hugoGeneSymbol":"ETNK2","entrezGeneId":55224},{"hugoGeneSymbol":"ETNPPL","entrezGeneId":64850},{"hugoGeneSymbol":"ETS1","entrezGeneId":2113},{"hugoGeneSymbol":"ETS2","entrezGeneId":2114},{"hugoGeneSymbol":"ETV1","entrezGeneId":2115},{"hugoGeneSymbol":"ETV2","entrezGeneId":2116},{"hugoGeneSymbol":"ETV3","entrezGeneId":2117},{"hugoGeneSymbol":"ETV3L","entrezGeneId":440695},{"hugoGeneSymbol":"ETV4","entrezGeneId":2118},{"hugoGeneSymbol":"ETV5","entrezGeneId":2119},{"hugoGeneSymbol":"ETV5-AS1","entrezGeneId":100873934},{"hugoGeneSymbol":"ETV6","entrezGeneId":2120},{"hugoGeneSymbol":"ETV7","entrezGeneId":51513},{"hugoGeneSymbol":"EVA1A","entrezGeneId":84141},{"hugoGeneSymbol":"EVA1B","entrezGeneId":55194},{"hugoGeneSymbol":"EVA1C","entrezGeneId":59271},{"hugoGeneSymbol":"EVADR","entrezGeneId":101928353},{"hugoGeneSymbol":"EVC","entrezGeneId":2121},{"hugoGeneSymbol":"EVC2","entrezGeneId":132884},{"hugoGeneSymbol":"EVI2A","entrezGeneId":2123},{"hugoGeneSymbol":"EVI2B","entrezGeneId":2124},{"hugoGeneSymbol":"EVI5","entrezGeneId":7813},{"hugoGeneSymbol":"EVI5L","entrezGeneId":115704},{"hugoGeneSymbol":"EVL","entrezGeneId":51466},{"hugoGeneSymbol":"EVPL","entrezGeneId":2125},{"hugoGeneSymbol":"EVPLL","entrezGeneId":645027},{"hugoGeneSymbol":"EVR3","entrezGeneId":81864},{"hugoGeneSymbol":"EVX1","entrezGeneId":2128},{"hugoGeneSymbol":"EVX1-AS","entrezGeneId":101410536},{"hugoGeneSymbol":"EVX2","entrezGeneId":344191},{"hugoGeneSymbol":"EWSAT1","entrezGeneId":283673},{"hugoGeneSymbol":"EWSR1","entrezGeneId":2130},{"hugoGeneSymbol":"EXD1","entrezGeneId":161829},{"hugoGeneSymbol":"EXD2","entrezGeneId":55218},{"hugoGeneSymbol":"EXD3","entrezGeneId":54932},{"hugoGeneSymbol":"EXO1","entrezGeneId":9156},{"hugoGeneSymbol":"EXO5","entrezGeneId":64789},{"hugoGeneSymbol":"EXOC1","entrezGeneId":55763},{"hugoGeneSymbol":"EXOC1L","entrezGeneId":644145},{"hugoGeneSymbol":"EXOC2","entrezGeneId":55770},{"hugoGeneSymbol":"EXOC3","entrezGeneId":11336},{"hugoGeneSymbol":"EXOC3-AS1","entrezGeneId":116349},{"hugoGeneSymbol":"EXOC3L1","entrezGeneId":283849},{"hugoGeneSymbol":"EXOC3L2","entrezGeneId":90332},{"hugoGeneSymbol":"EXOC3L4","entrezGeneId":91828},{"hugoGeneSymbol":"EXOC4","entrezGeneId":60412},{"hugoGeneSymbol":"EXOC5","entrezGeneId":10640},{"hugoGeneSymbol":"EXOC5P1","entrezGeneId":644548},{"hugoGeneSymbol":"EXOC6","entrezGeneId":54536},{"hugoGeneSymbol":"EXOC6B","entrezGeneId":23233},{"hugoGeneSymbol":"EXOC7","entrezGeneId":23265},{"hugoGeneSymbol":"EXOC7P1","entrezGeneId":391681},{"hugoGeneSymbol":"EXOC8","entrezGeneId":149371},{"hugoGeneSymbol":"EXOG","entrezGeneId":9941},{"hugoGeneSymbol":"EXOGP1","entrezGeneId":100128324},{"hugoGeneSymbol":"EXOSC1","entrezGeneId":51013},{"hugoGeneSymbol":"EXOSC10","entrezGeneId":5394},{"hugoGeneSymbol":"EXOSC2","entrezGeneId":23404},{"hugoGeneSymbol":"EXOSC3","entrezGeneId":51010},{"hugoGeneSymbol":"EXOSC3P1","entrezGeneId":100151640},{"hugoGeneSymbol":"EXOSC3P2","entrezGeneId":100190954},{"hugoGeneSymbol":"EXOSC4","entrezGeneId":54512},{"hugoGeneSymbol":"EXOSC5","entrezGeneId":56915},{"hugoGeneSymbol":"EXOSC6","entrezGeneId":118460},{"hugoGeneSymbol":"EXOSC7","entrezGeneId":23016},{"hugoGeneSymbol":"EXOSC8","entrezGeneId":11340},{"hugoGeneSymbol":"EXOSC9","entrezGeneId":5393},{"hugoGeneSymbol":"EXPH5","entrezGeneId":23086},{"hugoGeneSymbol":"EXT1","entrezGeneId":2131},{"hugoGeneSymbol":"EXT2","entrezGeneId":2132},{"hugoGeneSymbol":"EXT3","entrezGeneId":2133},{"hugoGeneSymbol":"EXTL1","entrezGeneId":2134},{"hugoGeneSymbol":"EXTL2","entrezGeneId":2135},{"hugoGeneSymbol":"EXTL2P1","entrezGeneId":100287682},{"hugoGeneSymbol":"EXTL3","entrezGeneId":2137},{"hugoGeneSymbol":"EXTL3-AS1","entrezGeneId":101929402},{"hugoGeneSymbol":"EYA1","entrezGeneId":2138},{"hugoGeneSymbol":"EYA2","entrezGeneId":2139},{"hugoGeneSymbol":"EYA3","entrezGeneId":2140},{"hugoGeneSymbol":"EYA4","entrezGeneId":2070},{"hugoGeneSymbol":"EYCL1","entrezGeneId":2141},{"hugoGeneSymbol":"EYS","entrezGeneId":346007},{"hugoGeneSymbol":"EZH1","entrezGeneId":2145},{"hugoGeneSymbol":"EZH2","entrezGeneId":2146},{"hugoGeneSymbol":"EZH2P1","entrezGeneId":266693},{"hugoGeneSymbol":"EZR","entrezGeneId":7430},{"hugoGeneSymbol":"EZR-AS1","entrezGeneId":101409257},{"hugoGeneSymbol":"F10","entrezGeneId":2159},{"hugoGeneSymbol":"F10-AS1","entrezGeneId":104413892},{"hugoGeneSymbol":"F11","entrezGeneId":2160},{"hugoGeneSymbol":"F11-AS1","entrezGeneId":285441},{"hugoGeneSymbol":"F11R","entrezGeneId":50848},{"hugoGeneSymbol":"F12","entrezGeneId":2161},{"hugoGeneSymbol":"F13A1","entrezGeneId":2162},{"hugoGeneSymbol":"F13B","entrezGeneId":2165},{"hugoGeneSymbol":"F2","entrezGeneId":2147},{"hugoGeneSymbol":"F2R","entrezGeneId":2149},{"hugoGeneSymbol":"F2RL1","entrezGeneId":2150},{"hugoGeneSymbol":"F2RL2","entrezGeneId":2151},{"hugoGeneSymbol":"F2RL3","entrezGeneId":9002},{"hugoGeneSymbol":"F3","entrezGeneId":2152},{"hugoGeneSymbol":"F5","entrezGeneId":2153},{"hugoGeneSymbol":"F7","entrezGeneId":2155},{"hugoGeneSymbol":"F7R","entrezGeneId":2156},{"hugoGeneSymbol":"F8","entrezGeneId":2157},{"hugoGeneSymbol":"F8A1","entrezGeneId":8263},{"hugoGeneSymbol":"F8A2","entrezGeneId":474383},{"hugoGeneSymbol":"F8A3","entrezGeneId":474384},{"hugoGeneSymbol":"F9","entrezGeneId":2158},{"hugoGeneSymbol":"FA2H","entrezGeneId":79152},{"hugoGeneSymbol":"FAAH","entrezGeneId":2166},{"hugoGeneSymbol":"FAAH2","entrezGeneId":158584},{"hugoGeneSymbol":"FAAHP1","entrezGeneId":729041},{"hugoGeneSymbol":"FAAP100","entrezGeneId":80233},{"hugoGeneSymbol":"FAAP20","entrezGeneId":199990},{"hugoGeneSymbol":"FAAP24","entrezGeneId":91442},{"hugoGeneSymbol":"FABP1","entrezGeneId":2168},{"hugoGeneSymbol":"FABP12","entrezGeneId":646486},{"hugoGeneSymbol":"FABP12P1","entrezGeneId":106479057},{"hugoGeneSymbol":"FABP2","entrezGeneId":2169},{"hugoGeneSymbol":"FABP3","entrezGeneId":2170},{"hugoGeneSymbol":"FABP3P2","entrezGeneId":56677},{"hugoGeneSymbol":"FABP4","entrezGeneId":2167},{"hugoGeneSymbol":"FABP5","entrezGeneId":2171},{"hugoGeneSymbol":"FABP5P1","entrezGeneId":387934},{"hugoGeneSymbol":"FABP5P10","entrezGeneId":344332},{"hugoGeneSymbol":"FABP5P11","entrezGeneId":266699},{"hugoGeneSymbol":"FABP5P12","entrezGeneId":100270673},{"hugoGeneSymbol":"FABP5P13","entrezGeneId":106480712},{"hugoGeneSymbol":"FABP5P14","entrezGeneId":100873957},{"hugoGeneSymbol":"FABP5P15","entrezGeneId":100873958},{"hugoGeneSymbol":"FABP5P2","entrezGeneId":729163},{"hugoGeneSymbol":"FABP5P3","entrezGeneId":220832},{"hugoGeneSymbol":"FABP5P4","entrezGeneId":404766},{"hugoGeneSymbol":"FABP5P5","entrezGeneId":100288964},{"hugoGeneSymbol":"FABP5P6","entrezGeneId":100130687},{"hugoGeneSymbol":"FABP5P7","entrezGeneId":728641},{"hugoGeneSymbol":"FABP5P8","entrezGeneId":728729},{"hugoGeneSymbol":"FABP5P9","entrezGeneId":642956},{"hugoGeneSymbol":"FABP6","entrezGeneId":2172},{"hugoGeneSymbol":"FABP7","entrezGeneId":2173},{"hugoGeneSymbol":"FABP7P1","entrezGeneId":100506953},{"hugoGeneSymbol":"FABP7P2","entrezGeneId":100874317},{"hugoGeneSymbol":"FABP9","entrezGeneId":646480},{"hugoGeneSymbol":"FADD","entrezGeneId":8772},{"hugoGeneSymbol":"FADS1","entrezGeneId":3992},{"hugoGeneSymbol":"FADS2","entrezGeneId":9415},{"hugoGeneSymbol":"FADS2P1","entrezGeneId":643181},{"hugoGeneSymbol":"FADS3","entrezGeneId":3995},{"hugoGeneSymbol":"FADS6","entrezGeneId":283985},{"hugoGeneSymbol":"FAF1","entrezGeneId":11124},{"hugoGeneSymbol":"FAF2","entrezGeneId":23197},{"hugoGeneSymbol":"FAF2P1","entrezGeneId":100128043},{"hugoGeneSymbol":"FAH","entrezGeneId":2184},{"hugoGeneSymbol":"FAHD1","entrezGeneId":81889},{"hugoGeneSymbol":"FAHD2A","entrezGeneId":51011},{"hugoGeneSymbol":"FAHD2B","entrezGeneId":151313},{"hugoGeneSymbol":"FAHD2CP","entrezGeneId":729234},{"hugoGeneSymbol":"FAHD2P1","entrezGeneId":729610},{"hugoGeneSymbol":"FAIM","entrezGeneId":55179},{"hugoGeneSymbol":"FAIM2","entrezGeneId":23017},{"hugoGeneSymbol":"FALEC","entrezGeneId":100874054},{"hugoGeneSymbol":"FAM102A","entrezGeneId":399665},{"hugoGeneSymbol":"FAM102B","entrezGeneId":284611},{"hugoGeneSymbol":"FAM104A","entrezGeneId":84923},{"hugoGeneSymbol":"FAM104B","entrezGeneId":90736},{"hugoGeneSymbol":"FAM106A","entrezGeneId":80039},{"hugoGeneSymbol":"FAM106B","entrezGeneId":100996259},{"hugoGeneSymbol":"FAM106CP","entrezGeneId":100129396},{"hugoGeneSymbol":"FAM106DP","entrezGeneId":100874406},{"hugoGeneSymbol":"FAM107A","entrezGeneId":11170},{"hugoGeneSymbol":"FAM107B","entrezGeneId":83641},{"hugoGeneSymbol":"FAM110A","entrezGeneId":83541},{"hugoGeneSymbol":"FAM110B","entrezGeneId":90362},{"hugoGeneSymbol":"FAM110C","entrezGeneId":642273},{"hugoGeneSymbol":"FAM110D","entrezGeneId":79927},{"hugoGeneSymbol":"FAM111A","entrezGeneId":63901},{"hugoGeneSymbol":"FAM111A-DT","entrezGeneId":101927204},{"hugoGeneSymbol":"FAM111B","entrezGeneId":374393},{"hugoGeneSymbol":"FAM114A1","entrezGeneId":92689},{"hugoGeneSymbol":"FAM114A2","entrezGeneId":10827},{"hugoGeneSymbol":"FAM117A","entrezGeneId":81558},{"hugoGeneSymbol":"FAM117B","entrezGeneId":150864},{"hugoGeneSymbol":"FAM118A","entrezGeneId":55007},{"hugoGeneSymbol":"FAM118B","entrezGeneId":79607},{"hugoGeneSymbol":"FAM120A","entrezGeneId":23196},{"hugoGeneSymbol":"FAM120AOS","entrezGeneId":158293},{"hugoGeneSymbol":"FAM120B","entrezGeneId":84498},{"hugoGeneSymbol":"FAM120C","entrezGeneId":54954},{"hugoGeneSymbol":"FAM122A","entrezGeneId":116224},{"hugoGeneSymbol":"FAM122B","entrezGeneId":159090},{"hugoGeneSymbol":"FAM122C","entrezGeneId":159091},{"hugoGeneSymbol":"FAM124A","entrezGeneId":220108},{"hugoGeneSymbol":"FAM124B","entrezGeneId":79843},{"hugoGeneSymbol":"FAM126A","entrezGeneId":84668},{"hugoGeneSymbol":"FAM126B","entrezGeneId":285172},{"hugoGeneSymbol":"FAM129A","entrezGeneId":116496},{"hugoGeneSymbol":"FAM129B","entrezGeneId":64855},{"hugoGeneSymbol":"FAM129C","entrezGeneId":199786},{"hugoGeneSymbol":"FAM131A","entrezGeneId":131408},{"hugoGeneSymbol":"FAM131B","entrezGeneId":9715},{"hugoGeneSymbol":"FAM131C","entrezGeneId":348487},{"hugoGeneSymbol":"FAM133A","entrezGeneId":286499},{"hugoGeneSymbol":"FAM133B","entrezGeneId":257415},{"hugoGeneSymbol":"FAM133CP","entrezGeneId":728640},{"hugoGeneSymbol":"FAM133DP","entrezGeneId":728066},{"hugoGeneSymbol":"FAM135A","entrezGeneId":57579},{"hugoGeneSymbol":"FAM135B","entrezGeneId":51059},{"hugoGeneSymbol":"FAM136A","entrezGeneId":84908},{"hugoGeneSymbol":"FAM136BP","entrezGeneId":387071},{"hugoGeneSymbol":"FAM138A","entrezGeneId":645520},{"hugoGeneSymbol":"FAM138B","entrezGeneId":654412},{"hugoGeneSymbol":"FAM138C","entrezGeneId":654835},{"hugoGeneSymbol":"FAM138D","entrezGeneId":677784},{"hugoGeneSymbol":"FAM138E","entrezGeneId":100124412},{"hugoGeneSymbol":"FAM138F","entrezGeneId":641702},{"hugoGeneSymbol":"FAM13A","entrezGeneId":10144},{"hugoGeneSymbol":"FAM13A-AS1","entrezGeneId":285512},{"hugoGeneSymbol":"FAM13B","entrezGeneId":51306},{"hugoGeneSymbol":"FAM13C","entrezGeneId":220965},{"hugoGeneSymbol":"FAM149A","entrezGeneId":25854},{"hugoGeneSymbol":"FAM149B1","entrezGeneId":317662},{"hugoGeneSymbol":"FAM149B1P1","entrezGeneId":388181},{"hugoGeneSymbol":"FAM151A","entrezGeneId":338094},{"hugoGeneSymbol":"FAM151B","entrezGeneId":167555},{"hugoGeneSymbol":"FAM153A","entrezGeneId":285596},{"hugoGeneSymbol":"FAM153B","entrezGeneId":202134},{"hugoGeneSymbol":"FAM153C","entrezGeneId":653316},{"hugoGeneSymbol":"FAM155A","entrezGeneId":728215},{"hugoGeneSymbol":"FAM155A-IT1","entrezGeneId":100874375},{"hugoGeneSymbol":"FAM155B","entrezGeneId":27112},{"hugoGeneSymbol":"FAM156A","entrezGeneId":29057},{"hugoGeneSymbol":"FAM156B","entrezGeneId":727866},{"hugoGeneSymbol":"FAM157A","entrezGeneId":728262},{"hugoGeneSymbol":"FAM157B","entrezGeneId":100132403},{"hugoGeneSymbol":"FAM157C","entrezGeneId":100996541},{"hugoGeneSymbol":"FAM160A1","entrezGeneId":729830},{"hugoGeneSymbol":"FAM160A1-DT","entrezGeneId":105377486},{"hugoGeneSymbol":"FAM160A2","entrezGeneId":84067},{"hugoGeneSymbol":"FAM160B1","entrezGeneId":57700},{"hugoGeneSymbol":"FAM160B2","entrezGeneId":64760},{"hugoGeneSymbol":"FAM161A","entrezGeneId":84140},{"hugoGeneSymbol":"FAM161B","entrezGeneId":145483},{"hugoGeneSymbol":"FAM162A","entrezGeneId":26355},{"hugoGeneSymbol":"FAM162B","entrezGeneId":221303},{"hugoGeneSymbol":"FAM163A","entrezGeneId":148753},{"hugoGeneSymbol":"FAM163B","entrezGeneId":642968},{"hugoGeneSymbol":"FAM166A","entrezGeneId":401565},{"hugoGeneSymbol":"FAM166B","entrezGeneId":730112},{"hugoGeneSymbol":"FAM167A","entrezGeneId":83648},{"hugoGeneSymbol":"FAM167A-AS1","entrezGeneId":83656},{"hugoGeneSymbol":"FAM167B","entrezGeneId":84734},{"hugoGeneSymbol":"FAM168A","entrezGeneId":23201},{"hugoGeneSymbol":"FAM168B","entrezGeneId":130074},{"hugoGeneSymbol":"FAM169A","entrezGeneId":26049},{"hugoGeneSymbol":"FAM169B","entrezGeneId":283777},{"hugoGeneSymbol":"FAM170A","entrezGeneId":340069},{"hugoGeneSymbol":"FAM170B","entrezGeneId":170370},{"hugoGeneSymbol":"FAM170B-AS1","entrezGeneId":100506733},{"hugoGeneSymbol":"FAM171A1","entrezGeneId":221061},{"hugoGeneSymbol":"FAM171A2","entrezGeneId":284069},{"hugoGeneSymbol":"FAM171B","entrezGeneId":165215},{"hugoGeneSymbol":"FAM172A","entrezGeneId":83989},{"hugoGeneSymbol":"FAM172BP","entrezGeneId":131909},{"hugoGeneSymbol":"FAM173A","entrezGeneId":65990},{"hugoGeneSymbol":"FAM173B","entrezGeneId":134145},{"hugoGeneSymbol":"FAM174A","entrezGeneId":345757},{"hugoGeneSymbol":"FAM174B","entrezGeneId":400451},{"hugoGeneSymbol":"FAM177A1","entrezGeneId":283635},{"hugoGeneSymbol":"FAM177A1P1","entrezGeneId":728710},{"hugoGeneSymbol":"FAM177B","entrezGeneId":400823},{"hugoGeneSymbol":"FAM178B","entrezGeneId":51252},{"hugoGeneSymbol":"FAM180A","entrezGeneId":389558},{"hugoGeneSymbol":"FAM180B","entrezGeneId":399888},{"hugoGeneSymbol":"FAM181A","entrezGeneId":90050},{"hugoGeneSymbol":"FAM181A-AS1","entrezGeneId":283592},{"hugoGeneSymbol":"FAM181B","entrezGeneId":220382},{"hugoGeneSymbol":"FAM182A","entrezGeneId":284800},{"hugoGeneSymbol":"FAM182B","entrezGeneId":728882},{"hugoGeneSymbol":"FAM183A","entrezGeneId":440585},{"hugoGeneSymbol":"FAM183BP","entrezGeneId":340286},{"hugoGeneSymbol":"FAM183DP","entrezGeneId":101060105},{"hugoGeneSymbol":"FAM183EP","entrezGeneId":107403081},{"hugoGeneSymbol":"FAM184A","entrezGeneId":79632},{"hugoGeneSymbol":"FAM184B","entrezGeneId":27146},{"hugoGeneSymbol":"FAM185A","entrezGeneId":222234},{"hugoGeneSymbol":"FAM185BP","entrezGeneId":641808},{"hugoGeneSymbol":"FAM186A","entrezGeneId":121006},{"hugoGeneSymbol":"FAM186B","entrezGeneId":84070},{"hugoGeneSymbol":"FAM187A","entrezGeneId":100528020},{"hugoGeneSymbol":"FAM187B","entrezGeneId":148109},{"hugoGeneSymbol":"FAM187B2P","entrezGeneId":100421621},{"hugoGeneSymbol":"FAM189A1","entrezGeneId":23359},{"hugoGeneSymbol":"FAM189A2","entrezGeneId":9413},{"hugoGeneSymbol":"FAM189B","entrezGeneId":10712},{"hugoGeneSymbol":"FAM192A","entrezGeneId":80011},{"hugoGeneSymbol":"FAM192BP","entrezGeneId":152667},{"hugoGeneSymbol":"FAM193A","entrezGeneId":8603},{"hugoGeneSymbol":"FAM193B","entrezGeneId":54540},{"hugoGeneSymbol":"FAM196A","entrezGeneId":642938},{"hugoGeneSymbol":"FAM196B","entrezGeneId":100131897},{"hugoGeneSymbol":"FAM197Y1","entrezGeneId":100289265},{"hugoGeneSymbol":"FAM197Y10","entrezGeneId":100288465},{"hugoGeneSymbol":"FAM197Y2","entrezGeneId":252946},{"hugoGeneSymbol":"FAM197Y3","entrezGeneId":107987341},{"hugoGeneSymbol":"FAM197Y4","entrezGeneId":100289188},{"hugoGeneSymbol":"FAM197Y5","entrezGeneId":100289150},{"hugoGeneSymbol":"FAM197Y6","entrezGeneId":105379270},{"hugoGeneSymbol":"FAM197Y7","entrezGeneId":105379269},{"hugoGeneSymbol":"FAM197Y8","entrezGeneId":105379268},{"hugoGeneSymbol":"FAM197Y9","entrezGeneId":100132932},{"hugoGeneSymbol":"FAM198A","entrezGeneId":729085},{"hugoGeneSymbol":"FAM198B","entrezGeneId":51313},{"hugoGeneSymbol":"FAM198B-AS1","entrezGeneId":285505},{"hugoGeneSymbol":"FAM199X","entrezGeneId":139231},{"hugoGeneSymbol":"FAM199YP","entrezGeneId":360029},{"hugoGeneSymbol":"FAM19A1","entrezGeneId":407738},{"hugoGeneSymbol":"FAM19A2","entrezGeneId":338811},{"hugoGeneSymbol":"FAM19A3","entrezGeneId":284467},{"hugoGeneSymbol":"FAM19A4","entrezGeneId":151647},{"hugoGeneSymbol":"FAM19A5","entrezGeneId":25817},{"hugoGeneSymbol":"FAM200A","entrezGeneId":221786},{"hugoGeneSymbol":"FAM200B","entrezGeneId":285550},{"hugoGeneSymbol":"FAM201A","entrezGeneId":158228},{"hugoGeneSymbol":"FAM201B","entrezGeneId":339742},{"hugoGeneSymbol":"FAM201CP","entrezGeneId":100132230},{"hugoGeneSymbol":"FAM204A","entrezGeneId":63877},{"hugoGeneSymbol":"FAM204BP","entrezGeneId":100420875},{"hugoGeneSymbol":"FAM204CP","entrezGeneId":100420916},{"hugoGeneSymbol":"FAM204DP","entrezGeneId":100420963},{"hugoGeneSymbol":"FAM205A","entrezGeneId":259308},{"hugoGeneSymbol":"FAM205BP","entrezGeneId":389715},{"hugoGeneSymbol":"FAM205C","entrezGeneId":100129969},{"hugoGeneSymbol":"FAM206A","entrezGeneId":54942},{"hugoGeneSymbol":"FAM206BP","entrezGeneId":390403},{"hugoGeneSymbol":"FAM207A","entrezGeneId":85395},{"hugoGeneSymbol":"FAM207BP","entrezGeneId":729535},{"hugoGeneSymbol":"FAM207CP","entrezGeneId":727987},{"hugoGeneSymbol":"FAM208A","entrezGeneId":23272},{"hugoGeneSymbol":"FAM208B","entrezGeneId":54906},{"hugoGeneSymbol":"FAM209A","entrezGeneId":200232},{"hugoGeneSymbol":"FAM209B","entrezGeneId":388799},{"hugoGeneSymbol":"FAM20A","entrezGeneId":54757},{"hugoGeneSymbol":"FAM20B","entrezGeneId":9917},{"hugoGeneSymbol":"FAM20C","entrezGeneId":56975},{"hugoGeneSymbol":"FAM210A","entrezGeneId":125228},{"hugoGeneSymbol":"FAM210B","entrezGeneId":116151},{"hugoGeneSymbol":"FAM210CP","entrezGeneId":100131328},{"hugoGeneSymbol":"FAM212A","entrezGeneId":389119},{"hugoGeneSymbol":"FAM212B","entrezGeneId":55924},{"hugoGeneSymbol":"FAM212B-AS1","entrezGeneId":100506343},{"hugoGeneSymbol":"FAM213A","entrezGeneId":84293},{"hugoGeneSymbol":"FAM213AP1","entrezGeneId":100420900},{"hugoGeneSymbol":"FAM213AP2","entrezGeneId":100131252},{"hugoGeneSymbol":"FAM213B","entrezGeneId":127281},{"hugoGeneSymbol":"FAM214A","entrezGeneId":56204},{"hugoGeneSymbol":"FAM214B","entrezGeneId":80256},{"hugoGeneSymbol":"FAM215A","entrezGeneId":23591},{"hugoGeneSymbol":"FAM215B","entrezGeneId":644297},{"hugoGeneSymbol":"FAM216A","entrezGeneId":29902},{"hugoGeneSymbol":"FAM216B","entrezGeneId":144809},{"hugoGeneSymbol":"FAM217A","entrezGeneId":222826},{"hugoGeneSymbol":"FAM217AP1","entrezGeneId":100133062},{"hugoGeneSymbol":"FAM217B","entrezGeneId":63939},{"hugoGeneSymbol":"FAM218A","entrezGeneId":152756},{"hugoGeneSymbol":"FAM218BP","entrezGeneId":101059914},{"hugoGeneSymbol":"FAM219A","entrezGeneId":203259},{"hugoGeneSymbol":"FAM219B","entrezGeneId":57184},{"hugoGeneSymbol":"FAM21EP","entrezGeneId":100421577},{"hugoGeneSymbol":"FAM21FP","entrezGeneId":100288690},{"hugoGeneSymbol":"FAM220A","entrezGeneId":84792},{"hugoGeneSymbol":"FAM220BP","entrezGeneId":647044},{"hugoGeneSymbol":"FAM220CP","entrezGeneId":100507415},{"hugoGeneSymbol":"FAM221A","entrezGeneId":340277},{"hugoGeneSymbol":"FAM221B","entrezGeneId":392307},{"hugoGeneSymbol":"FAM222A","entrezGeneId":84915},{"hugoGeneSymbol":"FAM222A-AS1","entrezGeneId":84983},{"hugoGeneSymbol":"FAM222B","entrezGeneId":55731},{"hugoGeneSymbol":"FAM223A","entrezGeneId":100132967},{"hugoGeneSymbol":"FAM223B","entrezGeneId":286967},{"hugoGeneSymbol":"FAM224A","entrezGeneId":401630},{"hugoGeneSymbol":"FAM224B","entrezGeneId":401629},{"hugoGeneSymbol":"FAM225A","entrezGeneId":286333},{"hugoGeneSymbol":"FAM225B","entrezGeneId":100128385},{"hugoGeneSymbol":"FAM226A","entrezGeneId":203429},{"hugoGeneSymbol":"FAM226B","entrezGeneId":653687},{"hugoGeneSymbol":"FAM227A","entrezGeneId":646851},{"hugoGeneSymbol":"FAM227B","entrezGeneId":196951},{"hugoGeneSymbol":"FAM228A","entrezGeneId":653140},{"hugoGeneSymbol":"FAM228B","entrezGeneId":375190},{"hugoGeneSymbol":"FAM229A","entrezGeneId":100128071},{"hugoGeneSymbol":"FAM229B","entrezGeneId":619208},{"hugoGeneSymbol":"FAM230A","entrezGeneId":653203},{"hugoGeneSymbol":"FAM230B","entrezGeneId":642633},{"hugoGeneSymbol":"FAM230C","entrezGeneId":26080},{"hugoGeneSymbol":"FAM231AP","entrezGeneId":729574},{"hugoGeneSymbol":"FAM231BP","entrezGeneId":100133301},{"hugoGeneSymbol":"FAM231C","entrezGeneId":729587},{"hugoGeneSymbol":"FAM231D","entrezGeneId":644634},{"hugoGeneSymbol":"FAM231EP","entrezGeneId":100132070},{"hugoGeneSymbol":"FAM234A","entrezGeneId":83986},{"hugoGeneSymbol":"FAM234B","entrezGeneId":57613},{"hugoGeneSymbol":"FAM236A","entrezGeneId":100129407},{"hugoGeneSymbol":"FAM236B","entrezGeneId":100132304},{"hugoGeneSymbol":"FAM236C","entrezGeneId":109729126},{"hugoGeneSymbol":"FAM236D","entrezGeneId":105373251},{"hugoGeneSymbol":"FAM237A","entrezGeneId":200726},{"hugoGeneSymbol":"FAM237B","entrezGeneId":107986818},{"hugoGeneSymbol":"FAM238A","entrezGeneId":645528},{"hugoGeneSymbol":"FAM238B","entrezGeneId":731789},{"hugoGeneSymbol":"FAM238C","entrezGeneId":387644},{"hugoGeneSymbol":"FAM239A","entrezGeneId":101930105},{"hugoGeneSymbol":"FAM239B","entrezGeneId":729162},{"hugoGeneSymbol":"FAM239C","entrezGeneId":107987330},{"hugoGeneSymbol":"FAM240A","entrezGeneId":100132146},{"hugoGeneSymbol":"FAM240B","entrezGeneId":110806297},{"hugoGeneSymbol":"FAM241A","entrezGeneId":132720},{"hugoGeneSymbol":"FAM241B","entrezGeneId":219738},{"hugoGeneSymbol":"FAM24A","entrezGeneId":118670},{"hugoGeneSymbol":"FAM24B","entrezGeneId":196792},{"hugoGeneSymbol":"FAM24B-CUZD1","entrezGeneId":100533195},{"hugoGeneSymbol":"FAM25A","entrezGeneId":643161},{"hugoGeneSymbol":"FAM25BP","entrezGeneId":100132929},{"hugoGeneSymbol":"FAM25C","entrezGeneId":644054},{"hugoGeneSymbol":"FAM25E","entrezGeneId":643479},{"hugoGeneSymbol":"FAM25G","entrezGeneId":100133093},{"hugoGeneSymbol":"FAM27B","entrezGeneId":100133121},{"hugoGeneSymbol":"FAM27C","entrezGeneId":100132948},{"hugoGeneSymbol":"FAM27D1","entrezGeneId":724094},{"hugoGeneSymbol":"FAM27E2","entrezGeneId":100289124},{"hugoGeneSymbol":"FAM27E3","entrezGeneId":100131997},{"hugoGeneSymbol":"FAM27E4","entrezGeneId":107987001},{"hugoGeneSymbol":"FAM27E5","entrezGeneId":284123},{"hugoGeneSymbol":"FAM30A","entrezGeneId":9834},{"hugoGeneSymbol":"FAM30B","entrezGeneId":105379202},{"hugoGeneSymbol":"FAM30C","entrezGeneId":654499},{"hugoGeneSymbol":"FAM32A","entrezGeneId":26017},{"hugoGeneSymbol":"FAM32BP","entrezGeneId":399656},{"hugoGeneSymbol":"FAM32CP","entrezGeneId":645646},{"hugoGeneSymbol":"FAM32DP","entrezGeneId":100190955},{"hugoGeneSymbol":"FAM32EP","entrezGeneId":100190956},{"hugoGeneSymbol":"FAM35A","entrezGeneId":54537},{"hugoGeneSymbol":"FAM35BP","entrezGeneId":414241},{"hugoGeneSymbol":"FAM35CP","entrezGeneId":100128781},{"hugoGeneSymbol":"FAM35DP","entrezGeneId":439965},{"hugoGeneSymbol":"FAM3A","entrezGeneId":60343},{"hugoGeneSymbol":"FAM3B","entrezGeneId":54097},{"hugoGeneSymbol":"FAM3C","entrezGeneId":10447},{"hugoGeneSymbol":"FAM3C2","entrezGeneId":286460},{"hugoGeneSymbol":"FAM3D","entrezGeneId":131177},{"hugoGeneSymbol":"FAM3D-AS1","entrezGeneId":105377108},{"hugoGeneSymbol":"FAM41AY1","entrezGeneId":340618},{"hugoGeneSymbol":"FAM41AY2","entrezGeneId":100302526},{"hugoGeneSymbol":"FAM41C","entrezGeneId":284593},{"hugoGeneSymbol":"FAM43A","entrezGeneId":131583},{"hugoGeneSymbol":"FAM43B","entrezGeneId":163933},{"hugoGeneSymbol":"FAM45A","entrezGeneId":404636},{"hugoGeneSymbol":"FAM45BP","entrezGeneId":55855},{"hugoGeneSymbol":"FAM46A","entrezGeneId":55603},{"hugoGeneSymbol":"FAM46B","entrezGeneId":115572},{"hugoGeneSymbol":"FAM46C","entrezGeneId":54855},{"hugoGeneSymbol":"FAM46D","entrezGeneId":169966},{"hugoGeneSymbol":"FAM47A","entrezGeneId":158724},{"hugoGeneSymbol":"FAM47B","entrezGeneId":170062},{"hugoGeneSymbol":"FAM47C","entrezGeneId":442444},{"hugoGeneSymbol":"FAM47DP","entrezGeneId":139249},{"hugoGeneSymbol":"FAM47E","entrezGeneId":100129583},{"hugoGeneSymbol":"FAM47E-STBD1","entrezGeneId":100631383},{"hugoGeneSymbol":"FAM49A","entrezGeneId":81553},{"hugoGeneSymbol":"FAM49B","entrezGeneId":51571},{"hugoGeneSymbol":"FAM50A","entrezGeneId":9130},{"hugoGeneSymbol":"FAM50B","entrezGeneId":26240},{"hugoGeneSymbol":"FAM53A","entrezGeneId":152877},{"hugoGeneSymbol":"FAM53B","entrezGeneId":9679},{"hugoGeneSymbol":"FAM53B-AS1","entrezGeneId":101927944},{"hugoGeneSymbol":"FAM53C","entrezGeneId":51307},{"hugoGeneSymbol":"FAM57A","entrezGeneId":79850},{"hugoGeneSymbol":"FAM57B","entrezGeneId":83723},{"hugoGeneSymbol":"FAM66A","entrezGeneId":100133172},{"hugoGeneSymbol":"FAM66B","entrezGeneId":100128890},{"hugoGeneSymbol":"FAM66C","entrezGeneId":440078},{"hugoGeneSymbol":"FAM66D","entrezGeneId":100132923},{"hugoGeneSymbol":"FAM66E","entrezGeneId":100132103},{"hugoGeneSymbol":"FAM69A","entrezGeneId":388650},{"hugoGeneSymbol":"FAM69B","entrezGeneId":138311},{"hugoGeneSymbol":"FAM69C","entrezGeneId":125704},{"hugoGeneSymbol":"FAM71A","entrezGeneId":149647},{"hugoGeneSymbol":"FAM71B","entrezGeneId":153745},{"hugoGeneSymbol":"FAM71BP1","entrezGeneId":100421478},{"hugoGeneSymbol":"FAM71C","entrezGeneId":196472},{"hugoGeneSymbol":"FAM71D","entrezGeneId":161142},{"hugoGeneSymbol":"FAM71E1","entrezGeneId":112703},{"hugoGeneSymbol":"FAM71E2","entrezGeneId":284418},{"hugoGeneSymbol":"FAM71F1","entrezGeneId":84691},{"hugoGeneSymbol":"FAM71F2","entrezGeneId":346653},{"hugoGeneSymbol":"FAM72A","entrezGeneId":729533},{"hugoGeneSymbol":"FAM72B","entrezGeneId":653820},{"hugoGeneSymbol":"FAM72C","entrezGeneId":554282},{"hugoGeneSymbol":"FAM72D","entrezGeneId":728833},{"hugoGeneSymbol":"FAM74A1","entrezGeneId":401507},{"hugoGeneSymbol":"FAM74A3","entrezGeneId":728495},{"hugoGeneSymbol":"FAM74A4","entrezGeneId":401508},{"hugoGeneSymbol":"FAM74A6","entrezGeneId":653123},{"hugoGeneSymbol":"FAM74A7","entrezGeneId":100996582},{"hugoGeneSymbol":"FAM76A","entrezGeneId":199870},{"hugoGeneSymbol":"FAM76B","entrezGeneId":143684},{"hugoGeneSymbol":"FAM78A","entrezGeneId":286336},{"hugoGeneSymbol":"FAM78B","entrezGeneId":149297},{"hugoGeneSymbol":"FAM81A","entrezGeneId":145773},{"hugoGeneSymbol":"FAM81B","entrezGeneId":153643},{"hugoGeneSymbol":"FAM83A","entrezGeneId":84985},{"hugoGeneSymbol":"FAM83A-AS1","entrezGeneId":100131726},{"hugoGeneSymbol":"FAM83B","entrezGeneId":222584},{"hugoGeneSymbol":"FAM83C","entrezGeneId":128876},{"hugoGeneSymbol":"FAM83C-AS1","entrezGeneId":140846},{"hugoGeneSymbol":"FAM83D","entrezGeneId":81610},{"hugoGeneSymbol":"FAM83E","entrezGeneId":54854},{"hugoGeneSymbol":"FAM83F","entrezGeneId":113828},{"hugoGeneSymbol":"FAM83G","entrezGeneId":644815},{"hugoGeneSymbol":"FAM83H","entrezGeneId":286077},{"hugoGeneSymbol":"FAM83H-AS1","entrezGeneId":100128338},{"hugoGeneSymbol":"FAM84A","entrezGeneId":151354},{"hugoGeneSymbol":"FAM84B","entrezGeneId":157638},{"hugoGeneSymbol":"FAM85A","entrezGeneId":619423},{"hugoGeneSymbol":"FAM85B","entrezGeneId":105379219},{"hugoGeneSymbol":"FAM86B1","entrezGeneId":85002},{"hugoGeneSymbol":"FAM86B2","entrezGeneId":653333},{"hugoGeneSymbol":"FAM86B3P","entrezGeneId":286042},{"hugoGeneSymbol":"FAM86C1","entrezGeneId":55199},{"hugoGeneSymbol":"FAM86C2P","entrezGeneId":645332},{"hugoGeneSymbol":"FAM86DP","entrezGeneId":692099},{"hugoGeneSymbol":"FAM86EP","entrezGeneId":348926},{"hugoGeneSymbol":"FAM86FP","entrezGeneId":653113},{"hugoGeneSymbol":"FAM86GP","entrezGeneId":387745},{"hugoGeneSymbol":"FAM86HP","entrezGeneId":729375},{"hugoGeneSymbol":"FAM86JP","entrezGeneId":100125556},{"hugoGeneSymbol":"FAM86KP","entrezGeneId":100287013},{"hugoGeneSymbol":"FAM86LP","entrezGeneId":641924},{"hugoGeneSymbol":"FAM86MP","entrezGeneId":644517},{"hugoGeneSymbol":"FAM87A","entrezGeneId":157693},{"hugoGeneSymbol":"FAM87B","entrezGeneId":400728},{"hugoGeneSymbol":"FAM89A","entrezGeneId":375061},{"hugoGeneSymbol":"FAM89B","entrezGeneId":23625},{"hugoGeneSymbol":"FAM8A1","entrezGeneId":51439},{"hugoGeneSymbol":"FAM8A10P","entrezGeneId":386728},{"hugoGeneSymbol":"FAM8A2P","entrezGeneId":728097},{"hugoGeneSymbol":"FAM8A3P","entrezGeneId":100129594},{"hugoGeneSymbol":"FAM8A4P","entrezGeneId":386726},{"hugoGeneSymbol":"FAM8A5P","entrezGeneId":114181},{"hugoGeneSymbol":"FAM8A6P","entrezGeneId":114182},{"hugoGeneSymbol":"FAM8A7P","entrezGeneId":386725},{"hugoGeneSymbol":"FAM8A9P","entrezGeneId":386727},{"hugoGeneSymbol":"FAM90A1","entrezGeneId":55138},{"hugoGeneSymbol":"FAM90A10P","entrezGeneId":441328},{"hugoGeneSymbol":"FAM90A11P","entrezGeneId":441331},{"hugoGeneSymbol":"FAM90A12P","entrezGeneId":645879},{"hugoGeneSymbol":"FAM90A13P","entrezGeneId":441314},{"hugoGeneSymbol":"FAM90A14P","entrezGeneId":645651},{"hugoGeneSymbol":"FAM90A15P","entrezGeneId":389630},{"hugoGeneSymbol":"FAM90A16P","entrezGeneId":441323},{"hugoGeneSymbol":"FAM90A17P","entrezGeneId":728746},{"hugoGeneSymbol":"FAM90A18P","entrezGeneId":441326},{"hugoGeneSymbol":"FAM90A19P","entrezGeneId":728753},{"hugoGeneSymbol":"FAM90A20P","entrezGeneId":728430},{"hugoGeneSymbol":"FAM90A21P","entrezGeneId":619418},{"hugoGeneSymbol":"FAM90A22P","entrezGeneId":645558},{"hugoGeneSymbol":"FAM90A23P","entrezGeneId":645572},{"hugoGeneSymbol":"FAM90A24P","entrezGeneId":441332},{"hugoGeneSymbol":"FAM90A25P","entrezGeneId":389633},{"hugoGeneSymbol":"FAM90A26","entrezGeneId":100287045},{"hugoGeneSymbol":"FAM90A27P","entrezGeneId":646508},{"hugoGeneSymbol":"FAM90A28P","entrezGeneId":100128254},{"hugoGeneSymbol":"FAM90A2P","entrezGeneId":729689},{"hugoGeneSymbol":"FAM90A3P","entrezGeneId":389611},{"hugoGeneSymbol":"FAM90A4P","entrezGeneId":441313},{"hugoGeneSymbol":"FAM90A5P","entrezGeneId":441315},{"hugoGeneSymbol":"FAM90A6P","entrezGeneId":389618},{"hugoGeneSymbol":"FAM90A7P","entrezGeneId":441317},{"hugoGeneSymbol":"FAM90A8P","entrezGeneId":441324},{"hugoGeneSymbol":"FAM90A9P","entrezGeneId":441327},{"hugoGeneSymbol":"FAM91A1","entrezGeneId":157769},{"hugoGeneSymbol":"FAM91A2P","entrezGeneId":101929801},{"hugoGeneSymbol":"FAM91A3P","entrezGeneId":729182},{"hugoGeneSymbol":"FAM91A4P","entrezGeneId":100132306},{"hugoGeneSymbol":"FAM92A","entrezGeneId":137392},{"hugoGeneSymbol":"FAM92A1P1","entrezGeneId":729073},{"hugoGeneSymbol":"FAM92A1P2","entrezGeneId":403315},{"hugoGeneSymbol":"FAM92B","entrezGeneId":339145},{"hugoGeneSymbol":"FAM95A","entrezGeneId":90499},{"hugoGeneSymbol":"FAM95B1","entrezGeneId":100133036},{"hugoGeneSymbol":"FAM95C","entrezGeneId":100289137},{"hugoGeneSymbol":"FAM96A","entrezGeneId":84191},{"hugoGeneSymbol":"FAM96AP1","entrezGeneId":106480777},{"hugoGeneSymbol":"FAM96AP2","entrezGeneId":391174},{"hugoGeneSymbol":"FAM96B","entrezGeneId":51647},{"hugoGeneSymbol":"FAM98A","entrezGeneId":25940},{"hugoGeneSymbol":"FAM98B","entrezGeneId":283742},{"hugoGeneSymbol":"FAM98C","entrezGeneId":147965},{"hugoGeneSymbol":"FAM99A","entrezGeneId":387742},{"hugoGeneSymbol":"FAM99B","entrezGeneId":100132464},{"hugoGeneSymbol":"FAM9A","entrezGeneId":171482},{"hugoGeneSymbol":"FAM9B","entrezGeneId":171483},{"hugoGeneSymbol":"FAM9C","entrezGeneId":171484},{"hugoGeneSymbol":"FAME3","entrezGeneId":100529229},{"hugoGeneSymbol":"FAME4","entrezGeneId":101409188},{"hugoGeneSymbol":"FAN1","entrezGeneId":22909},{"hugoGeneSymbol":"FANCA","entrezGeneId":2175},{"hugoGeneSymbol":"FANCB","entrezGeneId":2187},{"hugoGeneSymbol":"FANCC","entrezGeneId":2176},{"hugoGeneSymbol":"FANCD2","entrezGeneId":2177},{"hugoGeneSymbol":"FANCD2OS","entrezGeneId":115795},{"hugoGeneSymbol":"FANCD2P1","entrezGeneId":100421239},{"hugoGeneSymbol":"FANCD2P2","entrezGeneId":101929530},{"hugoGeneSymbol":"FANCE","entrezGeneId":2178},{"hugoGeneSymbol":"FANCF","entrezGeneId":2188},{"hugoGeneSymbol":"FANCG","entrezGeneId":2189},{"hugoGeneSymbol":"FANCI","entrezGeneId":55215},{"hugoGeneSymbol":"FANCL","entrezGeneId":55120},{"hugoGeneSymbol":"FANCM","entrezGeneId":57697},{"hugoGeneSymbol":"FANK1","entrezGeneId":92565},{"hugoGeneSymbol":"FANK1-AS1","entrezGeneId":101410540},{"hugoGeneSymbol":"FAP","entrezGeneId":2191},{"hugoGeneSymbol":"FAR1","entrezGeneId":84188},{"hugoGeneSymbol":"FAR1-IT1","entrezGeneId":106478978},{"hugoGeneSymbol":"FAR1P1","entrezGeneId":100128011},{"hugoGeneSymbol":"FAR2","entrezGeneId":55711},{"hugoGeneSymbol":"FAR2P1","entrezGeneId":440905},{"hugoGeneSymbol":"FAR2P2","entrezGeneId":100216479},{"hugoGeneSymbol":"FAR2P3","entrezGeneId":100288897},{"hugoGeneSymbol":"FAR2P4","entrezGeneId":100420005},{"hugoGeneSymbol":"FARP1","entrezGeneId":10160},{"hugoGeneSymbol":"FARP1-AS1","entrezGeneId":100874080},{"hugoGeneSymbol":"FARP2","entrezGeneId":9855},{"hugoGeneSymbol":"FARS2","entrezGeneId":10667},{"hugoGeneSymbol":"FARSA","entrezGeneId":2193},{"hugoGeneSymbol":"FARSA-AS1","entrezGeneId":106144598},{"hugoGeneSymbol":"FARSB","entrezGeneId":10056},{"hugoGeneSymbol":"FARSBP1","entrezGeneId":647532},{"hugoGeneSymbol":"FAS","entrezGeneId":355},{"hugoGeneSymbol":"FAS-AS1","entrezGeneId":100302740},{"hugoGeneSymbol":"FASLG","entrezGeneId":356},{"hugoGeneSymbol":"FASN","entrezGeneId":2194},{"hugoGeneSymbol":"FASTK","entrezGeneId":10922},{"hugoGeneSymbol":"FASTKD1","entrezGeneId":79675},{"hugoGeneSymbol":"FASTKD2","entrezGeneId":22868},{"hugoGeneSymbol":"FASTKD3","entrezGeneId":79072},{"hugoGeneSymbol":"FASTKD5","entrezGeneId":60493},{"hugoGeneSymbol":"FAT1","entrezGeneId":2195},{"hugoGeneSymbol":"FAT1P1","entrezGeneId":170513},{"hugoGeneSymbol":"FAT2","entrezGeneId":2196},{"hugoGeneSymbol":"FAT3","entrezGeneId":120114},{"hugoGeneSymbol":"FAT4","entrezGeneId":79633},{"hugoGeneSymbol":"FATE1","entrezGeneId":89885},{"hugoGeneSymbol":"FAU","entrezGeneId":2197},{"hugoGeneSymbol":"FAUP1","entrezGeneId":140623},{"hugoGeneSymbol":"FAUP2","entrezGeneId":100271125},{"hugoGeneSymbol":"FAUP3","entrezGeneId":100271126},{"hugoGeneSymbol":"FAXC","entrezGeneId":84553},{"hugoGeneSymbol":"FAXDC2","entrezGeneId":10826},{"hugoGeneSymbol":"FBF1","entrezGeneId":85302},{"hugoGeneSymbol":"FBH1","entrezGeneId":84893},{"hugoGeneSymbol":"FBL","entrezGeneId":2091},{"hugoGeneSymbol":"FBLIM1","entrezGeneId":54751},{"hugoGeneSymbol":"FBLL1","entrezGeneId":345630},{"hugoGeneSymbol":"FBLN1","entrezGeneId":2192},{"hugoGeneSymbol":"FBLN2","entrezGeneId":2199},{"hugoGeneSymbol":"FBLN5","entrezGeneId":10516},{"hugoGeneSymbol":"FBLN7","entrezGeneId":129804},{"hugoGeneSymbol":"FBN1","entrezGeneId":2200},{"hugoGeneSymbol":"FBN2","entrezGeneId":2201},{"hugoGeneSymbol":"FBN3","entrezGeneId":84467},{"hugoGeneSymbol":"FBP1","entrezGeneId":2203},{"hugoGeneSymbol":"FBP2","entrezGeneId":8789},{"hugoGeneSymbol":"FBP2P1","entrezGeneId":100420269},{"hugoGeneSymbol":"FBRS","entrezGeneId":64319},{"hugoGeneSymbol":"FBRSL1","entrezGeneId":57666},{"hugoGeneSymbol":"FBXL12","entrezGeneId":54850},{"hugoGeneSymbol":"FBXL13","entrezGeneId":222235},{"hugoGeneSymbol":"FBXL14","entrezGeneId":144699},{"hugoGeneSymbol":"FBXL15","entrezGeneId":79176},{"hugoGeneSymbol":"FBXL16","entrezGeneId":146330},{"hugoGeneSymbol":"FBXL17","entrezGeneId":64839},{"hugoGeneSymbol":"FBXL18","entrezGeneId":80028},{"hugoGeneSymbol":"FBXL19","entrezGeneId":54620},{"hugoGeneSymbol":"FBXL19-AS1","entrezGeneId":283932},{"hugoGeneSymbol":"FBXL2","entrezGeneId":25827},{"hugoGeneSymbol":"FBXL20","entrezGeneId":84961},{"hugoGeneSymbol":"FBXL21","entrezGeneId":26223},{"hugoGeneSymbol":"FBXL22","entrezGeneId":283807},{"hugoGeneSymbol":"FBXL3","entrezGeneId":26224},{"hugoGeneSymbol":"FBXL4","entrezGeneId":26235},{"hugoGeneSymbol":"FBXL5","entrezGeneId":26234},{"hugoGeneSymbol":"FBXL6","entrezGeneId":26233},{"hugoGeneSymbol":"FBXL7","entrezGeneId":23194},{"hugoGeneSymbol":"FBXL8","entrezGeneId":55336},{"hugoGeneSymbol":"FBXO10","entrezGeneId":26267},{"hugoGeneSymbol":"FBXO11","entrezGeneId":80204},{"hugoGeneSymbol":"FBXO15","entrezGeneId":201456},{"hugoGeneSymbol":"FBXO16","entrezGeneId":157574},{"hugoGeneSymbol":"FBXO17","entrezGeneId":115290},{"hugoGeneSymbol":"FBXO2","entrezGeneId":26232},{"hugoGeneSymbol":"FBXO21","entrezGeneId":23014},{"hugoGeneSymbol":"FBXO22","entrezGeneId":26263},{"hugoGeneSymbol":"FBXO24","entrezGeneId":26261},{"hugoGeneSymbol":"FBXO25","entrezGeneId":26260},{"hugoGeneSymbol":"FBXO27","entrezGeneId":126433},{"hugoGeneSymbol":"FBXO28","entrezGeneId":23219},{"hugoGeneSymbol":"FBXO3","entrezGeneId":26273},{"hugoGeneSymbol":"FBXO3-DT","entrezGeneId":101928440},{"hugoGeneSymbol":"FBXO30","entrezGeneId":84085},{"hugoGeneSymbol":"FBXO31","entrezGeneId":79791},{"hugoGeneSymbol":"FBXO32","entrezGeneId":114907},{"hugoGeneSymbol":"FBXO33","entrezGeneId":254170},{"hugoGeneSymbol":"FBXO34","entrezGeneId":55030},{"hugoGeneSymbol":"FBXO36","entrezGeneId":130888},{"hugoGeneSymbol":"FBXO36-IT1","entrezGeneId":100874344},{"hugoGeneSymbol":"FBXO36P1","entrezGeneId":732538},{"hugoGeneSymbol":"FBXO38","entrezGeneId":81545},{"hugoGeneSymbol":"FBXO39","entrezGeneId":162517},{"hugoGeneSymbol":"FBXO4","entrezGeneId":26272},{"hugoGeneSymbol":"FBXO40","entrezGeneId":51725},{"hugoGeneSymbol":"FBXO41","entrezGeneId":150726},{"hugoGeneSymbol":"FBXO42","entrezGeneId":54455},{"hugoGeneSymbol":"FBXO43","entrezGeneId":286151},{"hugoGeneSymbol":"FBXO44","entrezGeneId":93611},{"hugoGeneSymbol":"FBXO45","entrezGeneId":200933},{"hugoGeneSymbol":"FBXO46","entrezGeneId":23403},{"hugoGeneSymbol":"FBXO47","entrezGeneId":494188},{"hugoGeneSymbol":"FBXO48","entrezGeneId":554251},{"hugoGeneSymbol":"FBXO5","entrezGeneId":26271},{"hugoGeneSymbol":"FBXO6","entrezGeneId":26270},{"hugoGeneSymbol":"FBXO7","entrezGeneId":25793},{"hugoGeneSymbol":"FBXO8","entrezGeneId":26269},{"hugoGeneSymbol":"FBXO9","entrezGeneId":26268},{"hugoGeneSymbol":"FBXW10","entrezGeneId":10517},{"hugoGeneSymbol":"FBXW11","entrezGeneId":23291},{"hugoGeneSymbol":"FBXW11P1","entrezGeneId":54099},{"hugoGeneSymbol":"FBXW12","entrezGeneId":285231},{"hugoGeneSymbol":"FBXW2","entrezGeneId":26190},{"hugoGeneSymbol":"FBXW4","entrezGeneId":6468},{"hugoGeneSymbol":"FBXW4P1","entrezGeneId":26226},{"hugoGeneSymbol":"FBXW5","entrezGeneId":54461},{"hugoGeneSymbol":"FBXW7","entrezGeneId":55294},{"hugoGeneSymbol":"FBXW7-AS1","entrezGeneId":102191832},{"hugoGeneSymbol":"FBXW8","entrezGeneId":26259},{"hugoGeneSymbol":"FBXW9","entrezGeneId":84261},{"hugoGeneSymbol":"FCAMR","entrezGeneId":83953},{"hugoGeneSymbol":"FCAR","entrezGeneId":2204},{"hugoGeneSymbol":"FCER1A","entrezGeneId":2205},{"hugoGeneSymbol":"FCER1G","entrezGeneId":2207},{"hugoGeneSymbol":"FCER2","entrezGeneId":2208},{"hugoGeneSymbol":"FCF1","entrezGeneId":51077},{"hugoGeneSymbol":"FCF1P1","entrezGeneId":100422533},{"hugoGeneSymbol":"FCF1P10","entrezGeneId":106479046},{"hugoGeneSymbol":"FCF1P11","entrezGeneId":100132310},{"hugoGeneSymbol":"FCF1P2","entrezGeneId":101060195},{"hugoGeneSymbol":"FCF1P3","entrezGeneId":100128733},{"hugoGeneSymbol":"FCF1P4","entrezGeneId":106480799},{"hugoGeneSymbol":"FCF1P5","entrezGeneId":106479045},{"hugoGeneSymbol":"FCF1P6","entrezGeneId":100422535},{"hugoGeneSymbol":"FCF1P7","entrezGeneId":100422536},{"hugoGeneSymbol":"FCF1P8","entrezGeneId":100422531},{"hugoGeneSymbol":"FCF1P9","entrezGeneId":106480444},{"hugoGeneSymbol":"FCGBP","entrezGeneId":8857},{"hugoGeneSymbol":"FCGR1A","entrezGeneId":2209},{"hugoGeneSymbol":"FCGR1B","entrezGeneId":2210},{"hugoGeneSymbol":"FCGR1CP","entrezGeneId":100132417},{"hugoGeneSymbol":"FCGR2A","entrezGeneId":2212},{"hugoGeneSymbol":"FCGR2B","entrezGeneId":2213},{"hugoGeneSymbol":"FCGR2C","entrezGeneId":9103},{"hugoGeneSymbol":"FCGR3A","entrezGeneId":2214},{"hugoGeneSymbol":"FCGR3B","entrezGeneId":2215},{"hugoGeneSymbol":"FCGRT","entrezGeneId":2217},{"hugoGeneSymbol":"FCHO1","entrezGeneId":23149},{"hugoGeneSymbol":"FCHO2","entrezGeneId":115548},{"hugoGeneSymbol":"FCHSD1","entrezGeneId":89848},{"hugoGeneSymbol":"FCHSD2","entrezGeneId":9873},{"hugoGeneSymbol":"FCMR","entrezGeneId":9214},{"hugoGeneSymbol":"FCMTE1","entrezGeneId":50968},{"hugoGeneSymbol":"FCMTE2","entrezGeneId":554188},{"hugoGeneSymbol":"FCMTE3","entrezGeneId":109729092},{"hugoGeneSymbol":"FCN1","entrezGeneId":2219},{"hugoGeneSymbol":"FCN2","entrezGeneId":2220},{"hugoGeneSymbol":"FCN3","entrezGeneId":8547},{"hugoGeneSymbol":"FCP1","entrezGeneId":2221},{"hugoGeneSymbol":"FCRL1","entrezGeneId":115350},{"hugoGeneSymbol":"FCRL2","entrezGeneId":79368},{"hugoGeneSymbol":"FCRL3","entrezGeneId":115352},{"hugoGeneSymbol":"FCRL4","entrezGeneId":83417},{"hugoGeneSymbol":"FCRL5","entrezGeneId":83416},{"hugoGeneSymbol":"FCRL6","entrezGeneId":343413},{"hugoGeneSymbol":"FCRL6P1","entrezGeneId":100419077},{"hugoGeneSymbol":"FCRLA","entrezGeneId":84824},{"hugoGeneSymbol":"FCRLB","entrezGeneId":127943},{"hugoGeneSymbol":"FDCSP","entrezGeneId":260436},{"hugoGeneSymbol":"FDFT1","entrezGeneId":2222},{"hugoGeneSymbol":"FDPS","entrezGeneId":2224},{"hugoGeneSymbol":"FDPSP1","entrezGeneId":343332},{"hugoGeneSymbol":"FDPSP10","entrezGeneId":100190987},{"hugoGeneSymbol":"FDPSP2","entrezGeneId":619190},{"hugoGeneSymbol":"FDPSP3","entrezGeneId":2227},{"hugoGeneSymbol":"FDPSP4","entrezGeneId":2228},{"hugoGeneSymbol":"FDPSP5","entrezGeneId":2229},{"hugoGeneSymbol":"FDPSP6","entrezGeneId":54051},{"hugoGeneSymbol":"FDPSP7","entrezGeneId":441261},{"hugoGeneSymbol":"FDPSP8","entrezGeneId":401981},{"hugoGeneSymbol":"FDPSP9","entrezGeneId":401822},{"hugoGeneSymbol":"FDX1","entrezGeneId":2230},{"hugoGeneSymbol":"FDX1L","entrezGeneId":112812},{"hugoGeneSymbol":"FDX1P1","entrezGeneId":2231},{"hugoGeneSymbol":"FDX1P2","entrezGeneId":2216},{"hugoGeneSymbol":"FDXACB1","entrezGeneId":91893},{"hugoGeneSymbol":"FDXR","entrezGeneId":2232},{"hugoGeneSymbol":"FEA","entrezGeneId":7959},{"hugoGeneSymbol":"FEB1","entrezGeneId":2233},{"hugoGeneSymbol":"FEB10","entrezGeneId":100271923},{"hugoGeneSymbol":"FEB2","entrezGeneId":2234},{"hugoGeneSymbol":"FEB5","entrezGeneId":619398},{"hugoGeneSymbol":"FEB6","entrezGeneId":619397},{"hugoGeneSymbol":"FEB7","entrezGeneId":100049160},{"hugoGeneSymbol":"FEB9","entrezGeneId":100188849},{"hugoGeneSymbol":"FECB","entrezGeneId":7892},{"hugoGeneSymbol":"FECD2","entrezGeneId":100188278},{"hugoGeneSymbol":"FECD3","entrezGeneId":100380873},{"hugoGeneSymbol":"FECD5","entrezGeneId":100380874},{"hugoGeneSymbol":"FECD7","entrezGeneId":100380875},{"hugoGeneSymbol":"FECH","entrezGeneId":2235},{"hugoGeneSymbol":"FECHP1","entrezGeneId":2236},{"hugoGeneSymbol":"FEM1A","entrezGeneId":55527},{"hugoGeneSymbol":"FEM1AP1","entrezGeneId":441957},{"hugoGeneSymbol":"FEM1AP2","entrezGeneId":390834},{"hugoGeneSymbol":"FEM1AP3","entrezGeneId":643859},{"hugoGeneSymbol":"FEM1AP4","entrezGeneId":729524},{"hugoGeneSymbol":"FEM1B","entrezGeneId":10116},{"hugoGeneSymbol":"FEM1C","entrezGeneId":56929},{"hugoGeneSymbol":"FEN1","entrezGeneId":2237},{"hugoGeneSymbol":"FEN1P1","entrezGeneId":645931},{"hugoGeneSymbol":"FENDRR","entrezGeneId":400550},{"hugoGeneSymbol":"FER","entrezGeneId":2241},{"hugoGeneSymbol":"FER1L4","entrezGeneId":80307},{"hugoGeneSymbol":"FER1L5","entrezGeneId":90342},{"hugoGeneSymbol":"FER1L6","entrezGeneId":654463},{"hugoGeneSymbol":"FER1L6-AS1","entrezGeneId":439941},{"hugoGeneSymbol":"FER1L6-AS2","entrezGeneId":157376},{"hugoGeneSymbol":"FERD3L","entrezGeneId":222894},{"hugoGeneSymbol":"FERMT1","entrezGeneId":55612},{"hugoGeneSymbol":"FERMT2","entrezGeneId":10979},{"hugoGeneSymbol":"FERMT3","entrezGeneId":83706},{"hugoGeneSymbol":"FERP1","entrezGeneId":553112},{"hugoGeneSymbol":"FES","entrezGeneId":2242},{"hugoGeneSymbol":"FETUB","entrezGeneId":26998},{"hugoGeneSymbol":"FEV","entrezGeneId":54738},{"hugoGeneSymbol":"FEZ1","entrezGeneId":9638},{"hugoGeneSymbol":"FEZ2","entrezGeneId":9637},{"hugoGeneSymbol":"FEZF1","entrezGeneId":389549},{"hugoGeneSymbol":"FEZF1-AS1","entrezGeneId":154860},{"hugoGeneSymbol":"FEZF2","entrezGeneId":55079},{"hugoGeneSymbol":"FFAR1","entrezGeneId":2864},{"hugoGeneSymbol":"FFAR2","entrezGeneId":2867},{"hugoGeneSymbol":"FFAR3","entrezGeneId":2865},{"hugoGeneSymbol":"FFAR4","entrezGeneId":338557},{"hugoGeneSymbol":"FGA","entrezGeneId":2243},{"hugoGeneSymbol":"FGB","entrezGeneId":2244},{"hugoGeneSymbol":"FGD1","entrezGeneId":2245},{"hugoGeneSymbol":"FGD2","entrezGeneId":221472},{"hugoGeneSymbol":"FGD3","entrezGeneId":89846},{"hugoGeneSymbol":"FGD4","entrezGeneId":121512},{"hugoGeneSymbol":"FGD5","entrezGeneId":152273},{"hugoGeneSymbol":"FGD5-AS1","entrezGeneId":100505641},{"hugoGeneSymbol":"FGD5P1","entrezGeneId":100132526},{"hugoGeneSymbol":"FGD6","entrezGeneId":55785},{"hugoGeneSymbol":"FGF1","entrezGeneId":2246},{"hugoGeneSymbol":"FGF10","entrezGeneId":2255},{"hugoGeneSymbol":"FGF10-AS1","entrezGeneId":101927075},{"hugoGeneSymbol":"FGF10-INT1","entrezGeneId":109194135},{"hugoGeneSymbol":"FGF11","entrezGeneId":2256},{"hugoGeneSymbol":"FGF12","entrezGeneId":2257},{"hugoGeneSymbol":"FGF12-AS1","entrezGeneId":100873986},{"hugoGeneSymbol":"FGF12-AS2","entrezGeneId":100873987},{"hugoGeneSymbol":"FGF12-AS3","entrezGeneId":100873988},{"hugoGeneSymbol":"FGF13","entrezGeneId":2258},{"hugoGeneSymbol":"FGF13-AS1","entrezGeneId":100129662},{"hugoGeneSymbol":"FGF14","entrezGeneId":2259},{"hugoGeneSymbol":"FGF14-AS1","entrezGeneId":100874081},{"hugoGeneSymbol":"FGF14-AS2","entrezGeneId":283481},{"hugoGeneSymbol":"FGF14-IT1","entrezGeneId":283480},{"hugoGeneSymbol":"FGF16","entrezGeneId":8823},{"hugoGeneSymbol":"FGF17","entrezGeneId":8822},{"hugoGeneSymbol":"FGF18","entrezGeneId":8817},{"hugoGeneSymbol":"FGF19","entrezGeneId":9965},{"hugoGeneSymbol":"FGF2","entrezGeneId":2247},{"hugoGeneSymbol":"FGF20","entrezGeneId":26281},{"hugoGeneSymbol":"FGF21","entrezGeneId":26291},{"hugoGeneSymbol":"FGF22","entrezGeneId":27006},{"hugoGeneSymbol":"FGF23","entrezGeneId":8074},{"hugoGeneSymbol":"FGF3","entrezGeneId":2248},{"hugoGeneSymbol":"FGF4","entrezGeneId":2249},{"hugoGeneSymbol":"FGF5","entrezGeneId":2250},{"hugoGeneSymbol":"FGF6","entrezGeneId":2251},{"hugoGeneSymbol":"FGF7","entrezGeneId":2252},{"hugoGeneSymbol":"FGF7P1","entrezGeneId":387559},{"hugoGeneSymbol":"FGF7P2","entrezGeneId":394217},{"hugoGeneSymbol":"FGF7P3","entrezGeneId":654466},{"hugoGeneSymbol":"FGF7P4","entrezGeneId":728195},{"hugoGeneSymbol":"FGF7P5","entrezGeneId":653453},{"hugoGeneSymbol":"FGF7P6","entrezGeneId":387628},{"hugoGeneSymbol":"FGF7P7","entrezGeneId":728433},{"hugoGeneSymbol":"FGF7P8","entrezGeneId":100113421},{"hugoGeneSymbol":"FGF8","entrezGeneId":2253},{"hugoGeneSymbol":"FGF9","entrezGeneId":2254},{"hugoGeneSymbol":"FGFBP1","entrezGeneId":9982},{"hugoGeneSymbol":"FGFBP2","entrezGeneId":83888},{"hugoGeneSymbol":"FGFBP3","entrezGeneId":143282},{"hugoGeneSymbol":"FGFR1","entrezGeneId":2260},{"hugoGeneSymbol":"FGFR1OP","entrezGeneId":11116},{"hugoGeneSymbol":"FGFR1OP2","entrezGeneId":26127},{"hugoGeneSymbol":"FGFR1OP2P1","entrezGeneId":100873883},{"hugoGeneSymbol":"FGFR2","entrezGeneId":2263},{"hugoGeneSymbol":"FGFR3","entrezGeneId":2261},{"hugoGeneSymbol":"FGFR3P1","entrezGeneId":100462812},{"hugoGeneSymbol":"FGFR3P2","entrezGeneId":100462815},{"hugoGeneSymbol":"FGFR3P3","entrezGeneId":100462816},{"hugoGeneSymbol":"FGFR3P4","entrezGeneId":100420833},{"hugoGeneSymbol":"FGFR3P5","entrezGeneId":100420952},{"hugoGeneSymbol":"FGFR3P6","entrezGeneId":100420881},{"hugoGeneSymbol":"FGFR4","entrezGeneId":2264},{"hugoGeneSymbol":"FGFRL1","entrezGeneId":53834},{"hugoGeneSymbol":"FGG","entrezGeneId":2266},{"hugoGeneSymbol":"FGGY","entrezGeneId":55277},{"hugoGeneSymbol":"FGL1","entrezGeneId":2267},{"hugoGeneSymbol":"FGL2","entrezGeneId":10875},{"hugoGeneSymbol":"FGQTL1","entrezGeneId":100499165},{"hugoGeneSymbol":"FGQTL2","entrezGeneId":100379216},{"hugoGeneSymbol":"FGQTL3","entrezGeneId":100379217},{"hugoGeneSymbol":"FGQTL4","entrezGeneId":100499169},{"hugoGeneSymbol":"FGQTL6","entrezGeneId":100499168},{"hugoGeneSymbol":"FGR","entrezGeneId":2268},{"hugoGeneSymbol":"FGS2","entrezGeneId":2270},{"hugoGeneSymbol":"FGS3","entrezGeneId":93985},{"hugoGeneSymbol":"FGS5","entrezGeneId":780900},{"hugoGeneSymbol":"FH","entrezGeneId":2271},{"hugoGeneSymbol":"FHAD1","entrezGeneId":114827},{"hugoGeneSymbol":"FHASD","entrezGeneId":550626},{"hugoGeneSymbol":"FHDC1","entrezGeneId":85462},{"hugoGeneSymbol":"FHII","entrezGeneId":79179},{"hugoGeneSymbol":"FHIT","entrezGeneId":2272},{"hugoGeneSymbol":"FHL1","entrezGeneId":2273},{"hugoGeneSymbol":"FHL2","entrezGeneId":2274},{"hugoGeneSymbol":"FHL3","entrezGeneId":2275},{"hugoGeneSymbol":"FHL5","entrezGeneId":9457},{"hugoGeneSymbol":"FHOD1","entrezGeneId":29109},{"hugoGeneSymbol":"FHOD3","entrezGeneId":80206},{"hugoGeneSymbol":"FHP1","entrezGeneId":100873790},{"hugoGeneSymbol":"FIBCD1","entrezGeneId":84929},{"hugoGeneSymbol":"FIBIN","entrezGeneId":387758},{"hugoGeneSymbol":"FIBP","entrezGeneId":9158},{"hugoGeneSymbol":"FICD","entrezGeneId":11153},{"hugoGeneSymbol":"FIG4","entrezGeneId":9896},{"hugoGeneSymbol":"FIGLA","entrezGeneId":344018},{"hugoGeneSymbol":"FIGN","entrezGeneId":55137},{"hugoGeneSymbol":"FIGNL1","entrezGeneId":63979},{"hugoGeneSymbol":"FIGNL2","entrezGeneId":401720},{"hugoGeneSymbol":"FILIP1","entrezGeneId":27145},{"hugoGeneSymbol":"FILIP1L","entrezGeneId":11259},{"hugoGeneSymbol":"FILNC1","entrezGeneId":100132735},{"hugoGeneSymbol":"FIM1","entrezGeneId":2278},{"hugoGeneSymbol":"FIM3","entrezGeneId":2279},{"hugoGeneSymbol":"FIP1L1","entrezGeneId":81608},{"hugoGeneSymbol":"FIQTL1","entrezGeneId":619503},{"hugoGeneSymbol":"FIRRE","entrezGeneId":286467},{"hugoGeneSymbol":"FIS1","entrezGeneId":51024},{"hugoGeneSymbol":"FITM1","entrezGeneId":161247},{"hugoGeneSymbol":"FITM2","entrezGeneId":128486},{"hugoGeneSymbol":"FIZ1","entrezGeneId":84922},{"hugoGeneSymbol":"FJX1","entrezGeneId":24147},{"hugoGeneSymbol":"FKBP10","entrezGeneId":60681},{"hugoGeneSymbol":"FKBP11","entrezGeneId":51303},{"hugoGeneSymbol":"FKBP14","entrezGeneId":55033},{"hugoGeneSymbol":"FKBP15","entrezGeneId":23307},{"hugoGeneSymbol":"FKBP1A","entrezGeneId":2280},{"hugoGeneSymbol":"FKBP1A-SDCBP2","entrezGeneId":100528031},{"hugoGeneSymbol":"FKBP1AP1","entrezGeneId":2282},{"hugoGeneSymbol":"FKBP1AP2","entrezGeneId":2283},{"hugoGeneSymbol":"FKBP1AP3","entrezGeneId":2284},{"hugoGeneSymbol":"FKBP1AP4","entrezGeneId":2285},{"hugoGeneSymbol":"FKBP1B","entrezGeneId":2281},{"hugoGeneSymbol":"FKBP1BP1","entrezGeneId":107984636},{"hugoGeneSymbol":"FKBP1C","entrezGeneId":642489},{"hugoGeneSymbol":"FKBP2","entrezGeneId":2286},{"hugoGeneSymbol":"FKBP3","entrezGeneId":2287},{"hugoGeneSymbol":"FKBP4","entrezGeneId":2288},{"hugoGeneSymbol":"FKBP4P1","entrezGeneId":100132656},{"hugoGeneSymbol":"FKBP4P2","entrezGeneId":389727},{"hugoGeneSymbol":"FKBP4P6","entrezGeneId":100132268},{"hugoGeneSymbol":"FKBP4P7","entrezGeneId":441410},{"hugoGeneSymbol":"FKBP4P8","entrezGeneId":643880},{"hugoGeneSymbol":"FKBP5","entrezGeneId":2289},{"hugoGeneSymbol":"FKBP6","entrezGeneId":8468},{"hugoGeneSymbol":"FKBP7","entrezGeneId":51661},{"hugoGeneSymbol":"FKBP8","entrezGeneId":23770},{"hugoGeneSymbol":"FKBP9","entrezGeneId":11328},{"hugoGeneSymbol":"FKBP9P1","entrezGeneId":360132},{"hugoGeneSymbol":"FKBPL","entrezGeneId":63943},{"hugoGeneSymbol":"FKRP","entrezGeneId":79147},{"hugoGeneSymbol":"FKSG29","entrezGeneId":100131561},{"hugoGeneSymbol":"FKSG49","entrezGeneId":400949},{"hugoGeneSymbol":"FKTN","entrezGeneId":2218},{"hugoGeneSymbol":"FL1","entrezGeneId":100306940},{"hugoGeneSymbol":"FLAD1","entrezGeneId":80308},{"hugoGeneSymbol":"FLCN","entrezGeneId":201163},{"hugoGeneSymbol":"FLG","entrezGeneId":2312},{"hugoGeneSymbol":"FLG-AS1","entrezGeneId":339400},{"hugoGeneSymbol":"FLG2","entrezGeneId":388698},{"hugoGeneSymbol":"FLI1","entrezGeneId":2313},{"hugoGeneSymbol":"FLICR","entrezGeneId":110437700},{"hugoGeneSymbol":"FLII","entrezGeneId":2314},{"hugoGeneSymbol":"FLJ12825","entrezGeneId":440101},{"hugoGeneSymbol":"FLJ13224","entrezGeneId":79857},{"hugoGeneSymbol":"FLJ16779","entrezGeneId":100192386},{"hugoGeneSymbol":"FLJ20021","entrezGeneId":90024},{"hugoGeneSymbol":"FLJ20712","entrezGeneId":55025},{"hugoGeneSymbol":"FLJ21408","entrezGeneId":400512},{"hugoGeneSymbol":"FLJ22447","entrezGeneId":400221},{"hugoGeneSymbol":"FLJ23867","entrezGeneId":200058},{"hugoGeneSymbol":"FLJ25758","entrezGeneId":497049},{"hugoGeneSymbol":"FLJ30679","entrezGeneId":146512},{"hugoGeneSymbol":"FLJ30901","entrezGeneId":150378},{"hugoGeneSymbol":"FLJ31104","entrezGeneId":441072},{"hugoGeneSymbol":"FLJ31356","entrezGeneId":403150},{"hugoGeneSymbol":"FLJ32255","entrezGeneId":643977},{"hugoGeneSymbol":"FLJ33534","entrezGeneId":285150},{"hugoGeneSymbol":"FLJ34503","entrezGeneId":285759},{"hugoGeneSymbol":"FLJ36000","entrezGeneId":284124},{"hugoGeneSymbol":"FLJ37035","entrezGeneId":399821},{"hugoGeneSymbol":"FLJ37201","entrezGeneId":283011},{"hugoGeneSymbol":"FLJ37453","entrezGeneId":729614},{"hugoGeneSymbol":"FLJ38576","entrezGeneId":651430},{"hugoGeneSymbol":"FLJ39095","entrezGeneId":400812},{"hugoGeneSymbol":"FLJ40194","entrezGeneId":124871},{"hugoGeneSymbol":"FLJ40288","entrezGeneId":286023},{"hugoGeneSymbol":"FLJ42102","entrezGeneId":399923},{"hugoGeneSymbol":"FLJ42351","entrezGeneId":400999},{"hugoGeneSymbol":"FLJ42393","entrezGeneId":401105},{"hugoGeneSymbol":"FLJ42627","entrezGeneId":645644},{"hugoGeneSymbol":"FLJ42969","entrezGeneId":441374},{"hugoGeneSymbol":"FLJ43315","entrezGeneId":644316},{"hugoGeneSymbol":"FLJ44635","entrezGeneId":392490},{"hugoGeneSymbol":"FLJ45513","entrezGeneId":729220},{"hugoGeneSymbol":"FLJ46284","entrezGeneId":441369},{"hugoGeneSymbol":"FLJ46875","entrezGeneId":440918},{"hugoGeneSymbol":"FLJ46906","entrezGeneId":441172},{"hugoGeneSymbol":"FLNA","entrezGeneId":2316},{"hugoGeneSymbol":"FLNB","entrezGeneId":2317},{"hugoGeneSymbol":"FLNB-AS1","entrezGeneId":105377105},{"hugoGeneSymbol":"FLNC","entrezGeneId":2318},{"hugoGeneSymbol":"FLNC-AS1","entrezGeneId":110806300},{"hugoGeneSymbol":"FLOT1","entrezGeneId":10211},{"hugoGeneSymbol":"FLOT2","entrezGeneId":2319},{"hugoGeneSymbol":"FLRT1","entrezGeneId":23769},{"hugoGeneSymbol":"FLRT2","entrezGeneId":23768},{"hugoGeneSymbol":"FLRT3","entrezGeneId":23767},{"hugoGeneSymbol":"FLT1","entrezGeneId":2321},{"hugoGeneSymbol":"FLT1P1","entrezGeneId":391533},{"hugoGeneSymbol":"FLT3","entrezGeneId":2322},{"hugoGeneSymbol":"FLT3LG","entrezGeneId":2323},{"hugoGeneSymbol":"FLT4","entrezGeneId":2324},{"hugoGeneSymbol":"FLVCR1","entrezGeneId":28982},{"hugoGeneSymbol":"FLVCR1-DT","entrezGeneId":642946},{"hugoGeneSymbol":"FLVCR2","entrezGeneId":55640},{"hugoGeneSymbol":"FLYWCH1","entrezGeneId":84256},{"hugoGeneSymbol":"FLYWCH1P1","entrezGeneId":100130898},{"hugoGeneSymbol":"FLYWCH2","entrezGeneId":114984},{"hugoGeneSymbol":"FMC1","entrezGeneId":154791},{"hugoGeneSymbol":"FMN1","entrezGeneId":342184},{"hugoGeneSymbol":"FMN2","entrezGeneId":56776},{"hugoGeneSymbol":"FMNL1","entrezGeneId":752},{"hugoGeneSymbol":"FMNL2","entrezGeneId":114793},{"hugoGeneSymbol":"FMNL3","entrezGeneId":91010},{"hugoGeneSymbol":"FMO1","entrezGeneId":2326},{"hugoGeneSymbol":"FMO10P","entrezGeneId":100128181},{"hugoGeneSymbol":"FMO11P","entrezGeneId":100337590},{"hugoGeneSymbol":"FMO2","entrezGeneId":2327},{"hugoGeneSymbol":"FMO3","entrezGeneId":2328},{"hugoGeneSymbol":"FMO4","entrezGeneId":2329},{"hugoGeneSymbol":"FMO5","entrezGeneId":2330},{"hugoGeneSymbol":"FMO6P","entrezGeneId":388714},{"hugoGeneSymbol":"FMO7P","entrezGeneId":100337589},{"hugoGeneSymbol":"FMO8P","entrezGeneId":100129007},{"hugoGeneSymbol":"FMO9P","entrezGeneId":116123},{"hugoGeneSymbol":"FMOD","entrezGeneId":2331},{"hugoGeneSymbol":"FMR1","entrezGeneId":2332},{"hugoGeneSymbol":"FMR1-AS1","entrezGeneId":100126270},{"hugoGeneSymbol":"FMR1-IT1","entrezGeneId":106478973},{"hugoGeneSymbol":"FMR1NB","entrezGeneId":158521},{"hugoGeneSymbol":"FMR3","entrezGeneId":56247},{"hugoGeneSymbol":"FMTLE","entrezGeneId":100188848},{"hugoGeneSymbol":"FN1","entrezGeneId":2335},{"hugoGeneSymbol":"FN3K","entrezGeneId":64122},{"hugoGeneSymbol":"FN3KRP","entrezGeneId":79672},{"hugoGeneSymbol":"FNBP1","entrezGeneId":23048},{"hugoGeneSymbol":"FNBP1L","entrezGeneId":54874},{"hugoGeneSymbol":"FNBP1P1","entrezGeneId":100533642},{"hugoGeneSymbol":"FNBP1P2","entrezGeneId":100419875},{"hugoGeneSymbol":"FNBP4","entrezGeneId":23360},{"hugoGeneSymbol":"FNDC1","entrezGeneId":84624},{"hugoGeneSymbol":"FNDC1-IT1","entrezGeneId":100874312},{"hugoGeneSymbol":"FNDC10","entrezGeneId":643988},{"hugoGeneSymbol":"FNDC11","entrezGeneId":79025},{"hugoGeneSymbol":"FNDC3A","entrezGeneId":22862},{"hugoGeneSymbol":"FNDC3B","entrezGeneId":64778},{"hugoGeneSymbol":"FNDC3CP","entrezGeneId":100421340},{"hugoGeneSymbol":"FNDC4","entrezGeneId":64838},{"hugoGeneSymbol":"FNDC5","entrezGeneId":252995},{"hugoGeneSymbol":"FNDC7","entrezGeneId":163479},{"hugoGeneSymbol":"FNDC8","entrezGeneId":54752},{"hugoGeneSymbol":"FNDC9","entrezGeneId":408263},{"hugoGeneSymbol":"FNIP1","entrezGeneId":96459},{"hugoGeneSymbol":"FNIP2","entrezGeneId":57600},{"hugoGeneSymbol":"FNTA","entrezGeneId":2339},{"hugoGeneSymbol":"FNTAP1","entrezGeneId":283226},{"hugoGeneSymbol":"FNTAP2","entrezGeneId":2341},{"hugoGeneSymbol":"FNTB","entrezGeneId":2342},{"hugoGeneSymbol":"FOCAD","entrezGeneId":54914},{"hugoGeneSymbol":"FOCAD-AS1","entrezGeneId":101929548},{"hugoGeneSymbol":"FOLH1","entrezGeneId":2346},{"hugoGeneSymbol":"FOLH1B","entrezGeneId":219595},{"hugoGeneSymbol":"FOLR1","entrezGeneId":2348},{"hugoGeneSymbol":"FOLR1P1","entrezGeneId":390221},{"hugoGeneSymbol":"FOLR2","entrezGeneId":2350},{"hugoGeneSymbol":"FOLR3","entrezGeneId":2352},{"hugoGeneSymbol":"FOLR3P1","entrezGeneId":100288543},{"hugoGeneSymbol":"FOPNL","entrezGeneId":123811},{"hugoGeneSymbol":"FOS","entrezGeneId":2353},{"hugoGeneSymbol":"FOSB","entrezGeneId":2354},{"hugoGeneSymbol":"FOSL1","entrezGeneId":8061},{"hugoGeneSymbol":"FOSL1P1","entrezGeneId":100419062},{"hugoGeneSymbol":"FOSL2","entrezGeneId":2355},{"hugoGeneSymbol":"FOXA1","entrezGeneId":3169},{"hugoGeneSymbol":"FOXA2","entrezGeneId":3170},{"hugoGeneSymbol":"FOXA3","entrezGeneId":3171},{"hugoGeneSymbol":"FOXB1","entrezGeneId":27023},{"hugoGeneSymbol":"FOXB2","entrezGeneId":442425},{"hugoGeneSymbol":"FOXC1","entrezGeneId":2296},{"hugoGeneSymbol":"FOXC2","entrezGeneId":2303},{"hugoGeneSymbol":"FOXC2-AS1","entrezGeneId":103752587},{"hugoGeneSymbol":"FOXCUT","entrezGeneId":101927703},{"hugoGeneSymbol":"FOXD1","entrezGeneId":2297},{"hugoGeneSymbol":"FOXD1-AS1","entrezGeneId":106144539},{"hugoGeneSymbol":"FOXD2","entrezGeneId":2306},{"hugoGeneSymbol":"FOXD2-AS1","entrezGeneId":84793},{"hugoGeneSymbol":"FOXD3","entrezGeneId":27022},{"hugoGeneSymbol":"FOXD3-AS1","entrezGeneId":100996301},{"hugoGeneSymbol":"FOXD4","entrezGeneId":2298},{"hugoGeneSymbol":"FOXD4L1","entrezGeneId":200350},{"hugoGeneSymbol":"FOXD4L3","entrezGeneId":286380},{"hugoGeneSymbol":"FOXD4L4","entrezGeneId":349334},{"hugoGeneSymbol":"FOXD4L5","entrezGeneId":653427},{"hugoGeneSymbol":"FOXD4L6","entrezGeneId":653404},{"hugoGeneSymbol":"FOXE1","entrezGeneId":2304},{"hugoGeneSymbol":"FOXE3","entrezGeneId":2301},{"hugoGeneSymbol":"FOXF1","entrezGeneId":2294},{"hugoGeneSymbol":"FOXF2","entrezGeneId":2295},{"hugoGeneSymbol":"FOXG1","entrezGeneId":2290},{"hugoGeneSymbol":"FOXG1-AS1","entrezGeneId":103695363},{"hugoGeneSymbol":"FOXH1","entrezGeneId":8928},{"hugoGeneSymbol":"FOXI1","entrezGeneId":2299},{"hugoGeneSymbol":"FOXI2","entrezGeneId":399823},{"hugoGeneSymbol":"FOXI3","entrezGeneId":344167},{"hugoGeneSymbol":"FOXJ1","entrezGeneId":2302},{"hugoGeneSymbol":"FOXJ2","entrezGeneId":55810},{"hugoGeneSymbol":"FOXJ3","entrezGeneId":22887},{"hugoGeneSymbol":"FOXK1","entrezGeneId":221937},{"hugoGeneSymbol":"FOXK2","entrezGeneId":3607},{"hugoGeneSymbol":"FOXL1","entrezGeneId":2300},{"hugoGeneSymbol":"FOXL2","entrezGeneId":668},{"hugoGeneSymbol":"FOXL2NB","entrezGeneId":401089},{"hugoGeneSymbol":"FOXM1","entrezGeneId":2305},{"hugoGeneSymbol":"FOXN1","entrezGeneId":8456},{"hugoGeneSymbol":"FOXN2","entrezGeneId":3344},{"hugoGeneSymbol":"FOXN3","entrezGeneId":1112},{"hugoGeneSymbol":"FOXN3-AS1","entrezGeneId":400236},{"hugoGeneSymbol":"FOXN3-AS2","entrezGeneId":29018},{"hugoGeneSymbol":"FOXN3P1","entrezGeneId":643976},{"hugoGeneSymbol":"FOXN4","entrezGeneId":121643},{"hugoGeneSymbol":"FOXO1","entrezGeneId":2308},{"hugoGeneSymbol":"FOXO1B","entrezGeneId":2311},{"hugoGeneSymbol":"FOXO3","entrezGeneId":2309},{"hugoGeneSymbol":"FOXO3B","entrezGeneId":2310},{"hugoGeneSymbol":"FOXO4","entrezGeneId":4303},{"hugoGeneSymbol":"FOXO6","entrezGeneId":100132074},{"hugoGeneSymbol":"FOXP1","entrezGeneId":27086},{"hugoGeneSymbol":"FOXP1-AS1","entrezGeneId":104502416},{"hugoGeneSymbol":"FOXP1-IT1","entrezGeneId":100506815},{"hugoGeneSymbol":"FOXP2","entrezGeneId":93986},{"hugoGeneSymbol":"FOXP3","entrezGeneId":50943},{"hugoGeneSymbol":"FOXP4","entrezGeneId":116113},{"hugoGeneSymbol":"FOXP4-AS1","entrezGeneId":101060264},{"hugoGeneSymbol":"FOXQ1","entrezGeneId":94234},{"hugoGeneSymbol":"FOXR1","entrezGeneId":283150},{"hugoGeneSymbol":"FOXR2","entrezGeneId":139628},{"hugoGeneSymbol":"FOXRED1","entrezGeneId":55572},{"hugoGeneSymbol":"FOXRED2","entrezGeneId":80020},{"hugoGeneSymbol":"FOXS1","entrezGeneId":2307},{"hugoGeneSymbol":"FP248","entrezGeneId":101930072},{"hugoGeneSymbol":"FPEVF","entrezGeneId":50987},{"hugoGeneSymbol":"FPGS","entrezGeneId":2356},{"hugoGeneSymbol":"FPGT","entrezGeneId":8790},{"hugoGeneSymbol":"FPGT-TNNI3K","entrezGeneId":100526835},{"hugoGeneSymbol":"FPR1","entrezGeneId":2357},{"hugoGeneSymbol":"FPR2","entrezGeneId":2358},{"hugoGeneSymbol":"FPR3","entrezGeneId":2359},{"hugoGeneSymbol":"FRA10A","entrezGeneId":2431},{"hugoGeneSymbol":"FRA10AC1","entrezGeneId":118924},{"hugoGeneSymbol":"FRA10B","entrezGeneId":2432},{"hugoGeneSymbol":"FRA10C","entrezGeneId":2433},{"hugoGeneSymbol":"FRA10D","entrezGeneId":2434},{"hugoGeneSymbol":"FRA10E","entrezGeneId":2435},{"hugoGeneSymbol":"FRA10F","entrezGeneId":2436},{"hugoGeneSymbol":"FRA10G","entrezGeneId":2437},{"hugoGeneSymbol":"FRA11A","entrezGeneId":2438},{"hugoGeneSymbol":"FRA11C","entrezGeneId":2440},{"hugoGeneSymbol":"FRA11D","entrezGeneId":2441},{"hugoGeneSymbol":"FRA11E","entrezGeneId":2442},{"hugoGeneSymbol":"FRA11F","entrezGeneId":2443},{"hugoGeneSymbol":"FRA11G","entrezGeneId":2445},{"hugoGeneSymbol":"FRA11H","entrezGeneId":2446},{"hugoGeneSymbol":"FRA11I","entrezGeneId":2447},{"hugoGeneSymbol":"FRA12A","entrezGeneId":2448},{"hugoGeneSymbol":"FRA12B","entrezGeneId":2449},{"hugoGeneSymbol":"FRA12C","entrezGeneId":2450},{"hugoGeneSymbol":"FRA12D","entrezGeneId":2451},{"hugoGeneSymbol":"FRA12E","entrezGeneId":2452},{"hugoGeneSymbol":"FRA13A","entrezGeneId":2453},{"hugoGeneSymbol":"FRA13B","entrezGeneId":2454},{"hugoGeneSymbol":"FRA13C","entrezGeneId":2455},{"hugoGeneSymbol":"FRA13D","entrezGeneId":2456},{"hugoGeneSymbol":"FRA14B","entrezGeneId":2457},{"hugoGeneSymbol":"FRA14C","entrezGeneId":2458},{"hugoGeneSymbol":"FRA15A","entrezGeneId":2459},{"hugoGeneSymbol":"FRA16A","entrezGeneId":2460},{"hugoGeneSymbol":"FRA16B","entrezGeneId":2461},{"hugoGeneSymbol":"FRA16C","entrezGeneId":2462},{"hugoGeneSymbol":"FRA16D","entrezGeneId":2463},{"hugoGeneSymbol":"FRA16E","entrezGeneId":2464},{"hugoGeneSymbol":"FRA17A","entrezGeneId":2465},{"hugoGeneSymbol":"FRA17B","entrezGeneId":2466},{"hugoGeneSymbol":"FRA18A","entrezGeneId":2467},{"hugoGeneSymbol":"FRA18B","entrezGeneId":2468},{"hugoGeneSymbol":"FRA18C","entrezGeneId":116710},{"hugoGeneSymbol":"FRA19A","entrezGeneId":2469},{"hugoGeneSymbol":"FRA19B","entrezGeneId":2470},{"hugoGeneSymbol":"FRA1A","entrezGeneId":2360},{"hugoGeneSymbol":"FRA1B","entrezGeneId":2361},{"hugoGeneSymbol":"FRA1C","entrezGeneId":2362},{"hugoGeneSymbol":"FRA1D","entrezGeneId":2363},{"hugoGeneSymbol":"FRA1E","entrezGeneId":2364},{"hugoGeneSymbol":"FRA1F","entrezGeneId":2365},{"hugoGeneSymbol":"FRA1G","entrezGeneId":2366},{"hugoGeneSymbol":"FRA1H","entrezGeneId":2367},{"hugoGeneSymbol":"FRA1I","entrezGeneId":2368},{"hugoGeneSymbol":"FRA1J","entrezGeneId":2369},{"hugoGeneSymbol":"FRA1K","entrezGeneId":2370},{"hugoGeneSymbol":"FRA1L","entrezGeneId":2371},{"hugoGeneSymbol":"FRA1M","entrezGeneId":2372},{"hugoGeneSymbol":"FRA20A","entrezGeneId":2471},{"hugoGeneSymbol":"FRA20B","entrezGeneId":2472},{"hugoGeneSymbol":"FRA22A","entrezGeneId":2473},{"hugoGeneSymbol":"FRA22B","entrezGeneId":2474},{"hugoGeneSymbol":"FRA2A","entrezGeneId":2373},{"hugoGeneSymbol":"FRA2B","entrezGeneId":2374},{"hugoGeneSymbol":"FRA2C","entrezGeneId":2375},{"hugoGeneSymbol":"FRA2D","entrezGeneId":2376},{"hugoGeneSymbol":"FRA2E","entrezGeneId":2377},{"hugoGeneSymbol":"FRA2F","entrezGeneId":2378},{"hugoGeneSymbol":"FRA2G","entrezGeneId":2379},{"hugoGeneSymbol":"FRA2H","entrezGeneId":2380},{"hugoGeneSymbol":"FRA2I","entrezGeneId":2381},{"hugoGeneSymbol":"FRA2J","entrezGeneId":2382},{"hugoGeneSymbol":"FRA2K","entrezGeneId":2383},{"hugoGeneSymbol":"FRA3A","entrezGeneId":2384},{"hugoGeneSymbol":"FRA3C","entrezGeneId":2386},{"hugoGeneSymbol":"FRA3D","entrezGeneId":2387},{"hugoGeneSymbol":"FRA4A","entrezGeneId":2388},{"hugoGeneSymbol":"FRA4B","entrezGeneId":2389},{"hugoGeneSymbol":"FRA4C","entrezGeneId":2390},{"hugoGeneSymbol":"FRA4D","entrezGeneId":2391},{"hugoGeneSymbol":"FRA5A","entrezGeneId":2393},{"hugoGeneSymbol":"FRA5B","entrezGeneId":2394},{"hugoGeneSymbol":"FRA5C","entrezGeneId":2396},{"hugoGeneSymbol":"FRA5D","entrezGeneId":2397},{"hugoGeneSymbol":"FRA5E","entrezGeneId":2398},{"hugoGeneSymbol":"FRA5F","entrezGeneId":2399},{"hugoGeneSymbol":"FRA5G","entrezGeneId":2400},{"hugoGeneSymbol":"FRA6A","entrezGeneId":2401},{"hugoGeneSymbol":"FRA6B","entrezGeneId":2402},{"hugoGeneSymbol":"FRA6C","entrezGeneId":2403},{"hugoGeneSymbol":"FRA6D","entrezGeneId":2404},{"hugoGeneSymbol":"FRA6E","entrezGeneId":2405},{"hugoGeneSymbol":"FRA6F","entrezGeneId":2406},{"hugoGeneSymbol":"FRA6G","entrezGeneId":2407},{"hugoGeneSymbol":"FRA7A","entrezGeneId":2408},{"hugoGeneSymbol":"FRA7B","entrezGeneId":2409},{"hugoGeneSymbol":"FRA7C","entrezGeneId":2410},{"hugoGeneSymbol":"FRA7D","entrezGeneId":2411},{"hugoGeneSymbol":"FRA7E","entrezGeneId":2412},{"hugoGeneSymbol":"FRA7F","entrezGeneId":2413},{"hugoGeneSymbol":"FRA7G","entrezGeneId":2414},{"hugoGeneSymbol":"FRA7H","entrezGeneId":2415},{"hugoGeneSymbol":"FRA7I","entrezGeneId":2416},{"hugoGeneSymbol":"FRA7J","entrezGeneId":2417},{"hugoGeneSymbol":"FRA8A","entrezGeneId":2418},{"hugoGeneSymbol":"FRA8B","entrezGeneId":2419},{"hugoGeneSymbol":"FRA8C","entrezGeneId":2421},{"hugoGeneSymbol":"FRA8D","entrezGeneId":2422},{"hugoGeneSymbol":"FRA8E","entrezGeneId":2423},{"hugoGeneSymbol":"FRA9A","entrezGeneId":2425},{"hugoGeneSymbol":"FRA9B","entrezGeneId":2426},{"hugoGeneSymbol":"FRA9C","entrezGeneId":2427},{"hugoGeneSymbol":"FRA9D","entrezGeneId":2428},{"hugoGeneSymbol":"FRA9E","entrezGeneId":2429},{"hugoGeneSymbol":"FRA9F","entrezGeneId":2430},{"hugoGeneSymbol":"FRAS1","entrezGeneId":80144},{"hugoGeneSymbol":"FRAT1","entrezGeneId":10023},{"hugoGeneSymbol":"FRAT2","entrezGeneId":23401},{"hugoGeneSymbol":"FRAXA","entrezGeneId":2477},{"hugoGeneSymbol":"FRAXB","entrezGeneId":2478},{"hugoGeneSymbol":"FRAXC","entrezGeneId":2479},{"hugoGeneSymbol":"FRAXD","entrezGeneId":2480},{"hugoGeneSymbol":"FRAXE","entrezGeneId":2481},{"hugoGeneSymbol":"FRDA2","entrezGeneId":2420},{"hugoGeneSymbol":"FREM1","entrezGeneId":158326},{"hugoGeneSymbol":"FREM2","entrezGeneId":341640},{"hugoGeneSymbol":"FREM2-AS1","entrezGeneId":100874073},{"hugoGeneSymbol":"FREM3","entrezGeneId":166752},{"hugoGeneSymbol":"FRG1","entrezGeneId":2483},{"hugoGeneSymbol":"FRG1-DT","entrezGeneId":728339},{"hugoGeneSymbol":"FRG1BP","entrezGeneId":284802},{"hugoGeneSymbol":"FRG1CP","entrezGeneId":100289097},{"hugoGeneSymbol":"FRG1DP","entrezGeneId":102723316},{"hugoGeneSymbol":"FRG1EP","entrezGeneId":102723390},{"hugoGeneSymbol":"FRG1HP","entrezGeneId":100132352},{"hugoGeneSymbol":"FRG1JP","entrezGeneId":642236},{"hugoGeneSymbol":"FRG1KP","entrezGeneId":102724923},{"hugoGeneSymbol":"FRG2","entrezGeneId":448831},{"hugoGeneSymbol":"FRG2B","entrezGeneId":441581},{"hugoGeneSymbol":"FRG2C","entrezGeneId":100288801},{"hugoGeneSymbol":"FRG2DP","entrezGeneId":146481},{"hugoGeneSymbol":"FRG2EP","entrezGeneId":647476},{"hugoGeneSymbol":"FRG2FP","entrezGeneId":100128827},{"hugoGeneSymbol":"FRG2GP","entrezGeneId":106480321},{"hugoGeneSymbol":"FRG2HP","entrezGeneId":101059920},{"hugoGeneSymbol":"FRG2IP","entrezGeneId":106480351},{"hugoGeneSymbol":"FRG2JP","entrezGeneId":101059926},{"hugoGeneSymbol":"FRG2KP","entrezGeneId":102724018},{"hugoGeneSymbol":"FRG2LP","entrezGeneId":106480352},{"hugoGeneSymbol":"FRG2MP","entrezGeneId":106481739},{"hugoGeneSymbol":"FRGCA","entrezGeneId":106481742},{"hugoGeneSymbol":"FRIASS","entrezGeneId":103344927},{"hugoGeneSymbol":"FRK","entrezGeneId":2444},{"hugoGeneSymbol":"FRMD1","entrezGeneId":79981},{"hugoGeneSymbol":"FRMD3","entrezGeneId":257019},{"hugoGeneSymbol":"FRMD4A","entrezGeneId":55691},{"hugoGeneSymbol":"FRMD4B","entrezGeneId":23150},{"hugoGeneSymbol":"FRMD5","entrezGeneId":84978},{"hugoGeneSymbol":"FRMD6","entrezGeneId":122786},{"hugoGeneSymbol":"FRMD6-AS1","entrezGeneId":145438},{"hugoGeneSymbol":"FRMD6-AS2","entrezGeneId":100874185},{"hugoGeneSymbol":"FRMD7","entrezGeneId":90167},{"hugoGeneSymbol":"FRMD8","entrezGeneId":83786},{"hugoGeneSymbol":"FRMD8P1","entrezGeneId":83957},{"hugoGeneSymbol":"FRMPD1","entrezGeneId":22844},{"hugoGeneSymbol":"FRMPD2","entrezGeneId":143162},{"hugoGeneSymbol":"FRMPD2B","entrezGeneId":728798},{"hugoGeneSymbol":"FRMPD3","entrezGeneId":84443},{"hugoGeneSymbol":"FRMPD3-AS1","entrezGeneId":100874122},{"hugoGeneSymbol":"FRMPD4","entrezGeneId":9758},{"hugoGeneSymbol":"FRMPD4-AS1","entrezGeneId":100874121},{"hugoGeneSymbol":"FRRS1","entrezGeneId":391059},{"hugoGeneSymbol":"FRRS1L","entrezGeneId":23732},{"hugoGeneSymbol":"FRS2","entrezGeneId":10818},{"hugoGeneSymbol":"FRS3","entrezGeneId":10817},{"hugoGeneSymbol":"FRTS1","entrezGeneId":65211},{"hugoGeneSymbol":"FRY","entrezGeneId":10129},{"hugoGeneSymbol":"FRY-AS1","entrezGeneId":100507099},{"hugoGeneSymbol":"FRYL","entrezGeneId":285527},{"hugoGeneSymbol":"FRZB","entrezGeneId":2487},{"hugoGeneSymbol":"FSBP","entrezGeneId":100861412},{"hugoGeneSymbol":"FSCB","entrezGeneId":84075},{"hugoGeneSymbol":"FSCN1","entrezGeneId":6624},{"hugoGeneSymbol":"FSCN1P1","entrezGeneId":145989},{"hugoGeneSymbol":"FSCN2","entrezGeneId":25794},{"hugoGeneSymbol":"FSCN3","entrezGeneId":29999},{"hugoGeneSymbol":"FSD1","entrezGeneId":79187},{"hugoGeneSymbol":"FSD1L","entrezGeneId":83856},{"hugoGeneSymbol":"FSD2","entrezGeneId":123722},{"hugoGeneSymbol":"FSHB","entrezGeneId":2488},{"hugoGeneSymbol":"FSHMD1A","entrezGeneId":2489},{"hugoGeneSymbol":"FSHMD1B","entrezGeneId":2490},{"hugoGeneSymbol":"FSHR","entrezGeneId":2492},{"hugoGeneSymbol":"FSIP1","entrezGeneId":161835},{"hugoGeneSymbol":"FSIP2","entrezGeneId":401024},{"hugoGeneSymbol":"FSIP2-AS1","entrezGeneId":107985781},{"hugoGeneSymbol":"FST","entrezGeneId":10468},{"hugoGeneSymbol":"FSTL1","entrezGeneId":11167},{"hugoGeneSymbol":"FSTL3","entrezGeneId":10272},{"hugoGeneSymbol":"FSTL4","entrezGeneId":23105},{"hugoGeneSymbol":"FSTL5","entrezGeneId":56884},{"hugoGeneSymbol":"FTCD","entrezGeneId":10841},{"hugoGeneSymbol":"FTCD-AS1","entrezGeneId":100861507},{"hugoGeneSymbol":"FTCDNL1","entrezGeneId":348751},{"hugoGeneSymbol":"FTH1","entrezGeneId":2495},{"hugoGeneSymbol":"FTH1P1","entrezGeneId":2496},{"hugoGeneSymbol":"FTH1P10","entrezGeneId":2502},{"hugoGeneSymbol":"FTH1P11","entrezGeneId":2503},{"hugoGeneSymbol":"FTH1P12","entrezGeneId":2504},{"hugoGeneSymbol":"FTH1P13","entrezGeneId":646362},{"hugoGeneSymbol":"FTH1P14","entrezGeneId":139431},{"hugoGeneSymbol":"FTH1P15","entrezGeneId":2507},{"hugoGeneSymbol":"FTH1P16","entrezGeneId":2508},{"hugoGeneSymbol":"FTH1P18","entrezGeneId":441490},{"hugoGeneSymbol":"FTH1P19","entrezGeneId":389844},{"hugoGeneSymbol":"FTH1P2","entrezGeneId":2497},{"hugoGeneSymbol":"FTH1P20","entrezGeneId":729009},{"hugoGeneSymbol":"FTH1P21","entrezGeneId":2510},{"hugoGeneSymbol":"FTH1P22","entrezGeneId":100462772},{"hugoGeneSymbol":"FTH1P23","entrezGeneId":100420300},{"hugoGeneSymbol":"FTH1P24","entrezGeneId":100462797},{"hugoGeneSymbol":"FTH1P25","entrezGeneId":100462799},{"hugoGeneSymbol":"FTH1P26","entrezGeneId":100420303},{"hugoGeneSymbol":"FTH1P27","entrezGeneId":100270709},{"hugoGeneSymbol":"FTH1P3","entrezGeneId":2498},{"hugoGeneSymbol":"FTH1P4","entrezGeneId":2499},{"hugoGeneSymbol":"FTH1P5","entrezGeneId":2509},{"hugoGeneSymbol":"FTH1P6","entrezGeneId":106481787},{"hugoGeneSymbol":"FTH1P7","entrezGeneId":2500},{"hugoGeneSymbol":"FTH1P8","entrezGeneId":2501},{"hugoGeneSymbol":"FTH1P9","entrezGeneId":106478936},{"hugoGeneSymbol":"FTHL17","entrezGeneId":53940},{"hugoGeneSymbol":"FTL","entrezGeneId":2512},{"hugoGeneSymbol":"FTLP1","entrezGeneId":170514},{"hugoGeneSymbol":"FTLP10","entrezGeneId":100130017},{"hugoGeneSymbol":"FTLP11","entrezGeneId":100289501},{"hugoGeneSymbol":"FTLP12","entrezGeneId":100462792},{"hugoGeneSymbol":"FTLP13","entrezGeneId":100462793},{"hugoGeneSymbol":"FTLP14","entrezGeneId":100462794},{"hugoGeneSymbol":"FTLP15","entrezGeneId":442304},{"hugoGeneSymbol":"FTLP16","entrezGeneId":100420158},{"hugoGeneSymbol":"FTLP17","entrezGeneId":642337},{"hugoGeneSymbol":"FTLP18","entrezGeneId":100462786},{"hugoGeneSymbol":"FTLP19","entrezGeneId":100873960},{"hugoGeneSymbol":"FTLP2","entrezGeneId":392437},{"hugoGeneSymbol":"FTLP3","entrezGeneId":284764},{"hugoGeneSymbol":"FTLP4","entrezGeneId":100129251},{"hugoGeneSymbol":"FTLP5","entrezGeneId":100131661},{"hugoGeneSymbol":"FTLP6","entrezGeneId":100462788},{"hugoGeneSymbol":"FTLP7","entrezGeneId":441623},{"hugoGeneSymbol":"FTLP8","entrezGeneId":100462790},{"hugoGeneSymbol":"FTLP9","entrezGeneId":100462780},{"hugoGeneSymbol":"FTMT","entrezGeneId":94033},{"hugoGeneSymbol":"FTO","entrezGeneId":79068},{"hugoGeneSymbol":"FTO-IT1","entrezGeneId":100505692},{"hugoGeneSymbol":"FTOP1","entrezGeneId":100874223},{"hugoGeneSymbol":"FTSJ1","entrezGeneId":24140},{"hugoGeneSymbol":"FTSJ3","entrezGeneId":117246},{"hugoGeneSymbol":"FTX","entrezGeneId":100302692},{"hugoGeneSymbol":"FUBP1","entrezGeneId":8880},{"hugoGeneSymbol":"FUBP3","entrezGeneId":8939},{"hugoGeneSymbol":"FUCA1","entrezGeneId":2517},{"hugoGeneSymbol":"FUCA1P1","entrezGeneId":2518},{"hugoGeneSymbol":"FUCA2","entrezGeneId":2519},{"hugoGeneSymbol":"FUK","entrezGeneId":197258},{"hugoGeneSymbol":"FUNDC1","entrezGeneId":139341},{"hugoGeneSymbol":"FUNDC2","entrezGeneId":65991},{"hugoGeneSymbol":"FUNDC2P1","entrezGeneId":220793},{"hugoGeneSymbol":"FUNDC2P2","entrezGeneId":388965},{"hugoGeneSymbol":"FUNDC2P3","entrezGeneId":644625},{"hugoGeneSymbol":"FUNDC2P4","entrezGeneId":100127979},{"hugoGeneSymbol":"FUOM","entrezGeneId":282969},{"hugoGeneSymbol":"FURIN","entrezGeneId":5045},{"hugoGeneSymbol":"FUS","entrezGeneId":2521},{"hugoGeneSymbol":"FUSE","entrezGeneId":2522},{"hugoGeneSymbol":"FUT1","entrezGeneId":2523},{"hugoGeneSymbol":"FUT10","entrezGeneId":84750},{"hugoGeneSymbol":"FUT11","entrezGeneId":170384},{"hugoGeneSymbol":"FUT2","entrezGeneId":2524},{"hugoGeneSymbol":"FUT3","entrezGeneId":2525},{"hugoGeneSymbol":"FUT4","entrezGeneId":2526},{"hugoGeneSymbol":"FUT5","entrezGeneId":2527},{"hugoGeneSymbol":"FUT6","entrezGeneId":2528},{"hugoGeneSymbol":"FUT7","entrezGeneId":2529},{"hugoGeneSymbol":"FUT8","entrezGeneId":2530},{"hugoGeneSymbol":"FUT8-AS1","entrezGeneId":645431},{"hugoGeneSymbol":"FUT9","entrezGeneId":10690},{"hugoGeneSymbol":"FUZ","entrezGeneId":80199},{"hugoGeneSymbol":"FWS","entrezGeneId":100529224},{"hugoGeneSymbol":"FXN","entrezGeneId":2395},{"hugoGeneSymbol":"FXNP1","entrezGeneId":122942},{"hugoGeneSymbol":"FXNP2","entrezGeneId":100418706},{"hugoGeneSymbol":"FXR1","entrezGeneId":8087},{"hugoGeneSymbol":"FXR2","entrezGeneId":9513},{"hugoGeneSymbol":"FXYD1","entrezGeneId":5348},{"hugoGeneSymbol":"FXYD2","entrezGeneId":486},{"hugoGeneSymbol":"FXYD3","entrezGeneId":5349},{"hugoGeneSymbol":"FXYD4","entrezGeneId":53828},{"hugoGeneSymbol":"FXYD5","entrezGeneId":53827},{"hugoGeneSymbol":"FXYD6","entrezGeneId":53826},{"hugoGeneSymbol":"FXYD6-FXYD2","entrezGeneId":100533181},{"hugoGeneSymbol":"FXYD6P1","entrezGeneId":100128934},{"hugoGeneSymbol":"FXYD6P2","entrezGeneId":100128512},{"hugoGeneSymbol":"FXYD6P3","entrezGeneId":406875},{"hugoGeneSymbol":"FXYD7","entrezGeneId":53822},{"hugoGeneSymbol":"FYB1","entrezGeneId":2533},{"hugoGeneSymbol":"FYB2","entrezGeneId":199920},{"hugoGeneSymbol":"FYCO1","entrezGeneId":79443},{"hugoGeneSymbol":"FYN","entrezGeneId":2534},{"hugoGeneSymbol":"FYTTD1","entrezGeneId":84248},{"hugoGeneSymbol":"FYTTD1P1","entrezGeneId":100128665},{"hugoGeneSymbol":"FZD1","entrezGeneId":8321},{"hugoGeneSymbol":"FZD10","entrezGeneId":11211},{"hugoGeneSymbol":"FZD10-DT","entrezGeneId":440119},{"hugoGeneSymbol":"FZD2","entrezGeneId":2535},{"hugoGeneSymbol":"FZD3","entrezGeneId":7976},{"hugoGeneSymbol":"FZD4","entrezGeneId":8322},{"hugoGeneSymbol":"FZD5","entrezGeneId":7855},{"hugoGeneSymbol":"FZD6","entrezGeneId":8323},{"hugoGeneSymbol":"FZD7","entrezGeneId":8324},{"hugoGeneSymbol":"FZD8","entrezGeneId":8325},{"hugoGeneSymbol":"FZD9","entrezGeneId":8326},{"hugoGeneSymbol":"FZR1","entrezGeneId":51343},{"hugoGeneSymbol":"G0S2","entrezGeneId":50486},{"hugoGeneSymbol":"G2E3","entrezGeneId":55632},{"hugoGeneSymbol":"G2E3-AS1","entrezGeneId":105370431},{"hugoGeneSymbol":"G3BP1","entrezGeneId":10146},{"hugoGeneSymbol":"G3BP2","entrezGeneId":9908},{"hugoGeneSymbol":"G6PC","entrezGeneId":2538},{"hugoGeneSymbol":"G6PC2","entrezGeneId":57818},{"hugoGeneSymbol":"G6PC3","entrezGeneId":92579},{"hugoGeneSymbol":"G6PD","entrezGeneId":2539},{"hugoGeneSymbol":"G6PR","entrezGeneId":2541},{"hugoGeneSymbol":"GAA","entrezGeneId":2548},{"hugoGeneSymbol":"GAB1","entrezGeneId":2549},{"hugoGeneSymbol":"GAB2","entrezGeneId":9846},{"hugoGeneSymbol":"GAB3","entrezGeneId":139716},{"hugoGeneSymbol":"GAB4","entrezGeneId":128954},{"hugoGeneSymbol":"GABARAP","entrezGeneId":11337},{"hugoGeneSymbol":"GABARAPL1","entrezGeneId":23710},{"hugoGeneSymbol":"GABARAPL2","entrezGeneId":11345},{"hugoGeneSymbol":"GABARAPL3","entrezGeneId":23766},{"hugoGeneSymbol":"GABBR1","entrezGeneId":2550},{"hugoGeneSymbol":"GABBR2","entrezGeneId":9568},{"hugoGeneSymbol":"GABPA","entrezGeneId":2551},{"hugoGeneSymbol":"GABPAP","entrezGeneId":8327},{"hugoGeneSymbol":"GABPB1","entrezGeneId":2553},{"hugoGeneSymbol":"GABPB1-AS1","entrezGeneId":100129387},{"hugoGeneSymbol":"GABPB1-IT1","entrezGeneId":55056},{"hugoGeneSymbol":"GABPB2","entrezGeneId":126626},{"hugoGeneSymbol":"GABRA1","entrezGeneId":2554},{"hugoGeneSymbol":"GABRA2","entrezGeneId":2555},{"hugoGeneSymbol":"GABRA3","entrezGeneId":2556},{"hugoGeneSymbol":"GABRA4","entrezGeneId":2557},{"hugoGeneSymbol":"GABRA5","entrezGeneId":2558},{"hugoGeneSymbol":"GABRA6","entrezGeneId":2559},{"hugoGeneSymbol":"GABRB1","entrezGeneId":2560},{"hugoGeneSymbol":"GABRB2","entrezGeneId":2561},{"hugoGeneSymbol":"GABRB3","entrezGeneId":2562},{"hugoGeneSymbol":"GABRD","entrezGeneId":2563},{"hugoGeneSymbol":"GABRE","entrezGeneId":2564},{"hugoGeneSymbol":"GABRG1","entrezGeneId":2565},{"hugoGeneSymbol":"GABRG2","entrezGeneId":2566},{"hugoGeneSymbol":"GABRG3","entrezGeneId":2567},{"hugoGeneSymbol":"GABRG3-AS1","entrezGeneId":101928869},{"hugoGeneSymbol":"GABRP","entrezGeneId":2568},{"hugoGeneSymbol":"GABRQ","entrezGeneId":55879},{"hugoGeneSymbol":"GABRR1","entrezGeneId":2569},{"hugoGeneSymbol":"GABRR2","entrezGeneId":2570},{"hugoGeneSymbol":"GABRR3","entrezGeneId":200959},{"hugoGeneSymbol":"GACAT1","entrezGeneId":104326057},{"hugoGeneSymbol":"GACAT2","entrezGeneId":100287082},{"hugoGeneSymbol":"GACAT3","entrezGeneId":104797537},{"hugoGeneSymbol":"GAD1","entrezGeneId":2571},{"hugoGeneSymbol":"GAD2","entrezGeneId":2572},{"hugoGeneSymbol":"GADD45A","entrezGeneId":1647},{"hugoGeneSymbol":"GADD45AP1","entrezGeneId":1648},{"hugoGeneSymbol":"GADD45B","entrezGeneId":4616},{"hugoGeneSymbol":"GADD45G","entrezGeneId":10912},{"hugoGeneSymbol":"GADD45GIP1","entrezGeneId":90480},{"hugoGeneSymbol":"GADL1","entrezGeneId":339896},{"hugoGeneSymbol":"GAEC1","entrezGeneId":100126794},{"hugoGeneSymbol":"GAGE1","entrezGeneId":2543},{"hugoGeneSymbol":"GAGE10","entrezGeneId":102724473},{"hugoGeneSymbol":"GAGE12B","entrezGeneId":729428},{"hugoGeneSymbol":"GAGE12C","entrezGeneId":729422},{"hugoGeneSymbol":"GAGE12D","entrezGeneId":100132399},{"hugoGeneSymbol":"GAGE12E","entrezGeneId":729431},{"hugoGeneSymbol":"GAGE12F","entrezGeneId":100008586},{"hugoGeneSymbol":"GAGE12G","entrezGeneId":645073},{"hugoGeneSymbol":"GAGE12H","entrezGeneId":729442},{"hugoGeneSymbol":"GAGE12I","entrezGeneId":26748},{"hugoGeneSymbol":"GAGE12J","entrezGeneId":729396},{"hugoGeneSymbol":"GAGE13","entrezGeneId":645051},{"hugoGeneSymbol":"GAGE2A","entrezGeneId":729447},{"hugoGeneSymbol":"GAGE2B","entrezGeneId":645037},{"hugoGeneSymbol":"GAGE2C","entrezGeneId":2574},{"hugoGeneSymbol":"GAGE2D","entrezGeneId":729408},{"hugoGeneSymbol":"GAGE2E","entrezGeneId":26749},{"hugoGeneSymbol":"GAGE4","entrezGeneId":2576},{"hugoGeneSymbol":"GAGE5","entrezGeneId":2577},{"hugoGeneSymbol":"GAGE6","entrezGeneId":2578},{"hugoGeneSymbol":"GAGE7","entrezGeneId":2579},{"hugoGeneSymbol":"GAGE8","entrezGeneId":100101629},{"hugoGeneSymbol":"GAK","entrezGeneId":2580},{"hugoGeneSymbol":"GAL","entrezGeneId":51083},{"hugoGeneSymbol":"GAL3ST1","entrezGeneId":9514},{"hugoGeneSymbol":"GAL3ST2","entrezGeneId":64090},{"hugoGeneSymbol":"GAL3ST3","entrezGeneId":89792},{"hugoGeneSymbol":"GAL3ST4","entrezGeneId":79690},{"hugoGeneSymbol":"GALC","entrezGeneId":2581},{"hugoGeneSymbol":"GALE","entrezGeneId":2582},{"hugoGeneSymbol":"GALK1","entrezGeneId":2584},{"hugoGeneSymbol":"GALK2","entrezGeneId":2585},{"hugoGeneSymbol":"GALM","entrezGeneId":130589},{"hugoGeneSymbol":"GALNS","entrezGeneId":2588},{"hugoGeneSymbol":"GALNT1","entrezGeneId":2589},{"hugoGeneSymbol":"GALNT10","entrezGeneId":55568},{"hugoGeneSymbol":"GALNT11","entrezGeneId":63917},{"hugoGeneSymbol":"GALNT12","entrezGeneId":79695},{"hugoGeneSymbol":"GALNT13","entrezGeneId":114805},{"hugoGeneSymbol":"GALNT14","entrezGeneId":79623},{"hugoGeneSymbol":"GALNT15","entrezGeneId":117248},{"hugoGeneSymbol":"GALNT16","entrezGeneId":57452},{"hugoGeneSymbol":"GALNT17","entrezGeneId":64409},{"hugoGeneSymbol":"GALNT18","entrezGeneId":374378},{"hugoGeneSymbol":"GALNT2","entrezGeneId":2590},{"hugoGeneSymbol":"GALNT3","entrezGeneId":2591},{"hugoGeneSymbol":"GALNT4","entrezGeneId":8693},{"hugoGeneSymbol":"GALNT5","entrezGeneId":11227},{"hugoGeneSymbol":"GALNT6","entrezGeneId":11226},{"hugoGeneSymbol":"GALNT7","entrezGeneId":51809},{"hugoGeneSymbol":"GALNT8","entrezGeneId":26290},{"hugoGeneSymbol":"GALNT9","entrezGeneId":50614},{"hugoGeneSymbol":"GALNTL5","entrezGeneId":168391},{"hugoGeneSymbol":"GALNTL6","entrezGeneId":442117},{"hugoGeneSymbol":"GALP","entrezGeneId":85569},{"hugoGeneSymbol":"GALR1","entrezGeneId":2587},{"hugoGeneSymbol":"GALR2","entrezGeneId":8811},{"hugoGeneSymbol":"GALR3","entrezGeneId":8484},{"hugoGeneSymbol":"GALT","entrezGeneId":2592},{"hugoGeneSymbol":"GAMT","entrezGeneId":2593},{"hugoGeneSymbol":"GAMTP1","entrezGeneId":391491},{"hugoGeneSymbol":"GAMTP2","entrezGeneId":100129452},{"hugoGeneSymbol":"GAN","entrezGeneId":8139},{"hugoGeneSymbol":"GANAB","entrezGeneId":23193},{"hugoGeneSymbol":"GANC","entrezGeneId":2595},{"hugoGeneSymbol":"GAP43","entrezGeneId":2596},{"hugoGeneSymbol":"GAPDH","entrezGeneId":2597},{"hugoGeneSymbol":"GAPDHP1","entrezGeneId":2616},{"hugoGeneSymbol":"GAPDHP14","entrezGeneId":54050},{"hugoGeneSymbol":"GAPDHP15","entrezGeneId":642317},{"hugoGeneSymbol":"GAPDHP16","entrezGeneId":387491},{"hugoGeneSymbol":"GAPDHP17","entrezGeneId":360008},{"hugoGeneSymbol":"GAPDHP19","entrezGeneId":140028},{"hugoGeneSymbol":"GAPDHP2","entrezGeneId":170516},{"hugoGeneSymbol":"GAPDHP20","entrezGeneId":343338},{"hugoGeneSymbol":"GAPDHP21","entrezGeneId":389970},{"hugoGeneSymbol":"GAPDHP22","entrezGeneId":390421},{"hugoGeneSymbol":"GAPDHP23","entrezGeneId":391075},{"hugoGeneSymbol":"GAPDHP24","entrezGeneId":391162},{"hugoGeneSymbol":"GAPDHP25","entrezGeneId":391367},{"hugoGeneSymbol":"GAPDHP26","entrezGeneId":392374},{"hugoGeneSymbol":"GAPDHP27","entrezGeneId":401960},{"hugoGeneSymbol":"GAPDHP28","entrezGeneId":441572},{"hugoGeneSymbol":"GAPDHP29","entrezGeneId":441893},{"hugoGeneSymbol":"GAPDHP30","entrezGeneId":643228},{"hugoGeneSymbol":"GAPDHP31","entrezGeneId":643739},{"hugoGeneSymbol":"GAPDHP32","entrezGeneId":644213},{"hugoGeneSymbol":"GAPDHP33","entrezGeneId":644237},{"hugoGeneSymbol":"GAPDHP34","entrezGeneId":646877},{"hugoGeneSymbol":"GAPDHP35","entrezGeneId":647001},{"hugoGeneSymbol":"GAPDHP36","entrezGeneId":647249},{"hugoGeneSymbol":"GAPDHP37","entrezGeneId":651258},{"hugoGeneSymbol":"GAPDHP38","entrezGeneId":729493},{"hugoGeneSymbol":"GAPDHP39","entrezGeneId":100128589},{"hugoGeneSymbol":"GAPDHP40","entrezGeneId":100131743},{"hugoGeneSymbol":"GAPDHP41","entrezGeneId":100131935},{"hugoGeneSymbol":"GAPDHP42","entrezGeneId":100240707},{"hugoGeneSymbol":"GAPDHP43","entrezGeneId":100240708},{"hugoGeneSymbol":"GAPDHP44","entrezGeneId":100240709},{"hugoGeneSymbol":"GAPDHP45","entrezGeneId":100240710},{"hugoGeneSymbol":"GAPDHP46","entrezGeneId":100240711},{"hugoGeneSymbol":"GAPDHP47","entrezGeneId":100240712},{"hugoGeneSymbol":"GAPDHP48","entrezGeneId":100240713},{"hugoGeneSymbol":"GAPDHP49","entrezGeneId":100421189},{"hugoGeneSymbol":"GAPDHP50","entrezGeneId":100421236},{"hugoGeneSymbol":"GAPDHP51","entrezGeneId":100421271},{"hugoGeneSymbol":"GAPDHP52","entrezGeneId":100421313},{"hugoGeneSymbol":"GAPDHP53","entrezGeneId":100421318},{"hugoGeneSymbol":"GAPDHP54","entrezGeneId":100421319},{"hugoGeneSymbol":"GAPDHP55","entrezGeneId":100421324},{"hugoGeneSymbol":"GAPDHP56","entrezGeneId":100421232},{"hugoGeneSymbol":"GAPDHP57","entrezGeneId":100421188},{"hugoGeneSymbol":"GAPDHP58","entrezGeneId":391077},{"hugoGeneSymbol":"GAPDHP59","entrezGeneId":645024},{"hugoGeneSymbol":"GAPDHP60","entrezGeneId":2601},{"hugoGeneSymbol":"GAPDHP61","entrezGeneId":729403},{"hugoGeneSymbol":"GAPDHP62","entrezGeneId":100128961},{"hugoGeneSymbol":"GAPDHP63","entrezGeneId":442231},{"hugoGeneSymbol":"GAPDHP64","entrezGeneId":391069},{"hugoGeneSymbol":"GAPDHP65","entrezGeneId":389849},{"hugoGeneSymbol":"GAPDHP66","entrezGeneId":645256},{"hugoGeneSymbol":"GAPDHP67","entrezGeneId":2609},{"hugoGeneSymbol":"GAPDHP68","entrezGeneId":100132601},{"hugoGeneSymbol":"GAPDHP69","entrezGeneId":2611},{"hugoGeneSymbol":"GAPDHP70","entrezGeneId":642259},{"hugoGeneSymbol":"GAPDHP71","entrezGeneId":2613},{"hugoGeneSymbol":"GAPDHP72","entrezGeneId":346085},{"hugoGeneSymbol":"GAPDHP73","entrezGeneId":442262},{"hugoGeneSymbol":"GAPDHP74","entrezGeneId":391073},{"hugoGeneSymbol":"GAPDHP75","entrezGeneId":100652918},{"hugoGeneSymbol":"GAPDHP76","entrezGeneId":100287725},{"hugoGeneSymbol":"GAPDHS","entrezGeneId":26330},{"hugoGeneSymbol":"GAPLINC","entrezGeneId":100505592},{"hugoGeneSymbol":"GAPT","entrezGeneId":202309},{"hugoGeneSymbol":"GAPVD1","entrezGeneId":26130},{"hugoGeneSymbol":"GAR1","entrezGeneId":54433},{"hugoGeneSymbol":"GAREM1","entrezGeneId":64762},{"hugoGeneSymbol":"GAREM2","entrezGeneId":150946},{"hugoGeneSymbol":"GARNL3","entrezGeneId":84253},{"hugoGeneSymbol":"GARS","entrezGeneId":2617},{"hugoGeneSymbol":"GARSP1","entrezGeneId":100419764},{"hugoGeneSymbol":"GART","entrezGeneId":2618},{"hugoGeneSymbol":"GAS1","entrezGeneId":2619},{"hugoGeneSymbol":"GAS1RR","entrezGeneId":100506834},{"hugoGeneSymbol":"GAS2","entrezGeneId":2620},{"hugoGeneSymbol":"GAS2L1","entrezGeneId":10634},{"hugoGeneSymbol":"GAS2L1P1","entrezGeneId":101927222},{"hugoGeneSymbol":"GAS2L1P2","entrezGeneId":340508},{"hugoGeneSymbol":"GAS2L2","entrezGeneId":246176},{"hugoGeneSymbol":"GAS2L3","entrezGeneId":283431},{"hugoGeneSymbol":"GAS5","entrezGeneId":60674},{"hugoGeneSymbol":"GAS5-AS1","entrezGeneId":100506046},{"hugoGeneSymbol":"GAS6","entrezGeneId":2621},{"hugoGeneSymbol":"GAS6-AS1","entrezGeneId":650669},{"hugoGeneSymbol":"GAS6-DT","entrezGeneId":100506394},{"hugoGeneSymbol":"GAS7","entrezGeneId":8522},{"hugoGeneSymbol":"GAS8","entrezGeneId":2622},{"hugoGeneSymbol":"GAS8-AS1","entrezGeneId":750},{"hugoGeneSymbol":"GASAL1","entrezGeneId":401472},{"hugoGeneSymbol":"GAST","entrezGeneId":2520},{"hugoGeneSymbol":"GATA1","entrezGeneId":2623},{"hugoGeneSymbol":"GATA2","entrezGeneId":2624},{"hugoGeneSymbol":"GATA2-AS1","entrezGeneId":101927167},{"hugoGeneSymbol":"GATA3","entrezGeneId":2625},{"hugoGeneSymbol":"GATA3-AS1","entrezGeneId":399717},{"hugoGeneSymbol":"GATA4","entrezGeneId":2626},{"hugoGeneSymbol":"GATA5","entrezGeneId":140628},{"hugoGeneSymbol":"GATA6","entrezGeneId":2627},{"hugoGeneSymbol":"GATA6-AS1","entrezGeneId":100128893},{"hugoGeneSymbol":"GATAD1","entrezGeneId":57798},{"hugoGeneSymbol":"GATAD2A","entrezGeneId":54815},{"hugoGeneSymbol":"GATAD2B","entrezGeneId":57459},{"hugoGeneSymbol":"GATB","entrezGeneId":5188},{"hugoGeneSymbol":"GATC","entrezGeneId":283459},{"hugoGeneSymbol":"GATD1","entrezGeneId":347862},{"hugoGeneSymbol":"GATD3A","entrezGeneId":8209},{"hugoGeneSymbol":"GATD3B","entrezGeneId":102724023},{"hugoGeneSymbol":"GATM","entrezGeneId":2628},{"hugoGeneSymbol":"GBA","entrezGeneId":2629},{"hugoGeneSymbol":"GBA2","entrezGeneId":57704},{"hugoGeneSymbol":"GBA3","entrezGeneId":57733},{"hugoGeneSymbol":"GBAP1","entrezGeneId":2630},{"hugoGeneSymbol":"GBAT2","entrezGeneId":101927886},{"hugoGeneSymbol":"GBD2","entrezGeneId":100048905},{"hugoGeneSymbol":"GBD3","entrezGeneId":100048906},{"hugoGeneSymbol":"GBE1","entrezGeneId":2632},{"hugoGeneSymbol":"GBF1","entrezGeneId":8729},{"hugoGeneSymbol":"GBGT1","entrezGeneId":26301},{"hugoGeneSymbol":"GBP1","entrezGeneId":2633},{"hugoGeneSymbol":"GBP1P1","entrezGeneId":400759},{"hugoGeneSymbol":"GBP2","entrezGeneId":2634},{"hugoGeneSymbol":"GBP3","entrezGeneId":2635},{"hugoGeneSymbol":"GBP4","entrezGeneId":115361},{"hugoGeneSymbol":"GBP5","entrezGeneId":115362},{"hugoGeneSymbol":"GBP6","entrezGeneId":163351},{"hugoGeneSymbol":"GBP7","entrezGeneId":388646},{"hugoGeneSymbol":"GBX1","entrezGeneId":2636},{"hugoGeneSymbol":"GBX2","entrezGeneId":2637},{"hugoGeneSymbol":"GC","entrezGeneId":2638},{"hugoGeneSymbol":"GCA","entrezGeneId":25801},{"hugoGeneSymbol":"GCAT","entrezGeneId":23464},{"hugoGeneSymbol":"GCATP1","entrezGeneId":319140},{"hugoGeneSymbol":"GCC1","entrezGeneId":79571},{"hugoGeneSymbol":"GCC2","entrezGeneId":9648},{"hugoGeneSymbol":"GCC2-AS1","entrezGeneId":644903},{"hugoGeneSymbol":"GCCD2","entrezGeneId":282631},{"hugoGeneSymbol":"GCCD3","entrezGeneId":619477},{"hugoGeneSymbol":"GCDH","entrezGeneId":2639},{"hugoGeneSymbol":"GCFC2","entrezGeneId":6936},{"hugoGeneSymbol":"GCG","entrezGeneId":2641},{"hugoGeneSymbol":"GCGR","entrezGeneId":2642},{"hugoGeneSymbol":"GCH1","entrezGeneId":2643},{"hugoGeneSymbol":"GCHFR","entrezGeneId":2644},{"hugoGeneSymbol":"GCK","entrezGeneId":2645},{"hugoGeneSymbol":"GCKR","entrezGeneId":2646},{"hugoGeneSymbol":"GCLC","entrezGeneId":2729},{"hugoGeneSymbol":"GCLM","entrezGeneId":2730},{"hugoGeneSymbol":"GCM1","entrezGeneId":8521},{"hugoGeneSymbol":"GCM2","entrezGeneId":9247},{"hugoGeneSymbol":"GCN1","entrezGeneId":10985},{"hugoGeneSymbol":"GCNA","entrezGeneId":93953},{"hugoGeneSymbol":"GCNT1","entrezGeneId":2650},{"hugoGeneSymbol":"GCNT1P1","entrezGeneId":170517},{"hugoGeneSymbol":"GCNT1P2","entrezGeneId":100421560},{"hugoGeneSymbol":"GCNT1P3","entrezGeneId":100421581},{"hugoGeneSymbol":"GCNT1P4","entrezGeneId":100462829},{"hugoGeneSymbol":"GCNT1P5","entrezGeneId":100421598},{"hugoGeneSymbol":"GCNT2","entrezGeneId":2651},{"hugoGeneSymbol":"GCNT2P","entrezGeneId":644378},{"hugoGeneSymbol":"GCNT3","entrezGeneId":9245},{"hugoGeneSymbol":"GCNT4","entrezGeneId":51301},{"hugoGeneSymbol":"GCNT7","entrezGeneId":140687},{"hugoGeneSymbol":"GCOM1","entrezGeneId":145781},{"hugoGeneSymbol":"GCOM2","entrezGeneId":339970},{"hugoGeneSymbol":"GCRG224","entrezGeneId":360219},{"hugoGeneSymbol":"GCSAM","entrezGeneId":257144},{"hugoGeneSymbol":"GCSAML","entrezGeneId":148823},{"hugoGeneSymbol":"GCSAML-AS1","entrezGeneId":148824},{"hugoGeneSymbol":"GCSH","entrezGeneId":2653},{"hugoGeneSymbol":"GCSHP1","entrezGeneId":106480441},{"hugoGeneSymbol":"GCSHP2","entrezGeneId":100288298},{"hugoGeneSymbol":"GCSHP3","entrezGeneId":100329109},{"hugoGeneSymbol":"GCSHP4","entrezGeneId":100287495},{"hugoGeneSymbol":"GCSHP5","entrezGeneId":100329108},{"hugoGeneSymbol":"GCY","entrezGeneId":2656},{"hugoGeneSymbol":"GDA","entrezGeneId":9615},{"hugoGeneSymbol":"GDAP1","entrezGeneId":54332},{"hugoGeneSymbol":"GDAP1L1","entrezGeneId":78997},{"hugoGeneSymbol":"GDAP2","entrezGeneId":54834},{"hugoGeneSymbol":"GDE1","entrezGeneId":51573},{"hugoGeneSymbol":"GDF1","entrezGeneId":2657},{"hugoGeneSymbol":"GDF10","entrezGeneId":2662},{"hugoGeneSymbol":"GDF11","entrezGeneId":10220},{"hugoGeneSymbol":"GDF15","entrezGeneId":9518},{"hugoGeneSymbol":"GDF2","entrezGeneId":2658},{"hugoGeneSymbol":"GDF3","entrezGeneId":9573},{"hugoGeneSymbol":"GDF5","entrezGeneId":8200},{"hugoGeneSymbol":"GDF5OS","entrezGeneId":554250},{"hugoGeneSymbol":"GDF6","entrezGeneId":392255},{"hugoGeneSymbol":"GDF7","entrezGeneId":151449},{"hugoGeneSymbol":"GDF9","entrezGeneId":2661},{"hugoGeneSymbol":"GDI1","entrezGeneId":2664},{"hugoGeneSymbol":"GDI2","entrezGeneId":2665},{"hugoGeneSymbol":"GDI2P1","entrezGeneId":2667},{"hugoGeneSymbol":"GDI2P2","entrezGeneId":100420259},{"hugoGeneSymbol":"GDNF","entrezGeneId":2668},{"hugoGeneSymbol":"GDNF-AS1","entrezGeneId":100861519},{"hugoGeneSymbol":"GDPD1","entrezGeneId":284161},{"hugoGeneSymbol":"GDPD2","entrezGeneId":54857},{"hugoGeneSymbol":"GDPD3","entrezGeneId":79153},{"hugoGeneSymbol":"GDPD4","entrezGeneId":220032},{"hugoGeneSymbol":"GDPD5","entrezGeneId":81544},{"hugoGeneSymbol":"GDPGP1","entrezGeneId":390637},{"hugoGeneSymbol":"GEFSP4","entrezGeneId":100188796},{"hugoGeneSymbol":"GEFSP6","entrezGeneId":100190787},{"hugoGeneSymbol":"GEFSP8","entrezGeneId":100653381},{"hugoGeneSymbol":"GEM","entrezGeneId":2669},{"hugoGeneSymbol":"GEMIN2","entrezGeneId":8487},{"hugoGeneSymbol":"GEMIN2P1","entrezGeneId":101929669},{"hugoGeneSymbol":"GEMIN2P2","entrezGeneId":100287063},{"hugoGeneSymbol":"GEMIN4","entrezGeneId":50628},{"hugoGeneSymbol":"GEMIN5","entrezGeneId":25929},{"hugoGeneSymbol":"GEMIN6","entrezGeneId":79833},{"hugoGeneSymbol":"GEMIN7","entrezGeneId":79760},{"hugoGeneSymbol":"GEMIN7-AS1","entrezGeneId":105372419},{"hugoGeneSymbol":"GEMIN8","entrezGeneId":54960},{"hugoGeneSymbol":"GEMIN8P1","entrezGeneId":100128431},{"hugoGeneSymbol":"GEMIN8P2","entrezGeneId":644600},{"hugoGeneSymbol":"GEMIN8P3","entrezGeneId":100421535},{"hugoGeneSymbol":"GEMIN8P4","entrezGeneId":492303},{"hugoGeneSymbol":"GEN1","entrezGeneId":348654},{"hugoGeneSymbol":"GER","entrezGeneId":59330},{"hugoGeneSymbol":"GET4","entrezGeneId":51608},{"hugoGeneSymbol":"GEVQ1","entrezGeneId":474334},{"hugoGeneSymbol":"GEVQ2","entrezGeneId":474333},{"hugoGeneSymbol":"GFAP","entrezGeneId":2670},{"hugoGeneSymbol":"GFER","entrezGeneId":2671},{"hugoGeneSymbol":"GFI1","entrezGeneId":2672},{"hugoGeneSymbol":"GFI1B","entrezGeneId":8328},{"hugoGeneSymbol":"GFM1","entrezGeneId":85476},{"hugoGeneSymbol":"GFM2","entrezGeneId":84340},{"hugoGeneSymbol":"GFND1","entrezGeneId":100689213},{"hugoGeneSymbol":"GFOD1","entrezGeneId":54438},{"hugoGeneSymbol":"GFOD1-AS1","entrezGeneId":100874025},{"hugoGeneSymbol":"GFOD2","entrezGeneId":81577},{"hugoGeneSymbol":"GFPT1","entrezGeneId":2673},{"hugoGeneSymbol":"GFPT2","entrezGeneId":9945},{"hugoGeneSymbol":"GFRA1","entrezGeneId":2674},{"hugoGeneSymbol":"GFRA2","entrezGeneId":2675},{"hugoGeneSymbol":"GFRA3","entrezGeneId":2676},{"hugoGeneSymbol":"GFRA4","entrezGeneId":64096},{"hugoGeneSymbol":"GFRAL","entrezGeneId":389400},{"hugoGeneSymbol":"GFY","entrezGeneId":100507003},{"hugoGeneSymbol":"GGA1","entrezGeneId":26088},{"hugoGeneSymbol":"GGA2","entrezGeneId":23062},{"hugoGeneSymbol":"GGA3","entrezGeneId":23163},{"hugoGeneSymbol":"GGACT","entrezGeneId":87769},{"hugoGeneSymbol":"GGCT","entrezGeneId":79017},{"hugoGeneSymbol":"GGCX","entrezGeneId":2677},{"hugoGeneSymbol":"GGH","entrezGeneId":8836},{"hugoGeneSymbol":"GGN","entrezGeneId":199720},{"hugoGeneSymbol":"GGNBP1","entrezGeneId":449520},{"hugoGeneSymbol":"GGNBP2","entrezGeneId":79893},{"hugoGeneSymbol":"GGPS1","entrezGeneId":9453},{"hugoGeneSymbol":"GGT1","entrezGeneId":2678},{"hugoGeneSymbol":"GGT2","entrezGeneId":728441},{"hugoGeneSymbol":"GGT3P","entrezGeneId":2679},{"hugoGeneSymbol":"GGT4P","entrezGeneId":643171},{"hugoGeneSymbol":"GGT5","entrezGeneId":2687},{"hugoGeneSymbol":"GGT6","entrezGeneId":124975},{"hugoGeneSymbol":"GGT7","entrezGeneId":2686},{"hugoGeneSymbol":"GGT8P","entrezGeneId":645367},{"hugoGeneSymbol":"GGTA1P","entrezGeneId":2681},{"hugoGeneSymbol":"GGTA2P","entrezGeneId":121328},{"hugoGeneSymbol":"GGTLC1","entrezGeneId":92086},{"hugoGeneSymbol":"GGTLC2","entrezGeneId":91227},{"hugoGeneSymbol":"GGTLC3","entrezGeneId":728226},{"hugoGeneSymbol":"GGTLC4P","entrezGeneId":729838},{"hugoGeneSymbol":"GGTLC5P","entrezGeneId":653590},{"hugoGeneSymbol":"GH-LCR","entrezGeneId":106128904},{"hugoGeneSymbol":"GH1","entrezGeneId":2688},{"hugoGeneSymbol":"GH2","entrezGeneId":2689},{"hugoGeneSymbol":"GHDC","entrezGeneId":84514},{"hugoGeneSymbol":"GHET1","entrezGeneId":102723099},{"hugoGeneSymbol":"GHITM","entrezGeneId":27069},{"hugoGeneSymbol":"GHR","entrezGeneId":2690},{"hugoGeneSymbol":"GHRH","entrezGeneId":2691},{"hugoGeneSymbol":"GHRHR","entrezGeneId":2692},{"hugoGeneSymbol":"GHRL","entrezGeneId":51738},{"hugoGeneSymbol":"GHRLOS","entrezGeneId":100126793},{"hugoGeneSymbol":"GHS","entrezGeneId":7971},{"hugoGeneSymbol":"GHSR","entrezGeneId":2693},{"hugoGeneSymbol":"GID4","entrezGeneId":79018},{"hugoGeneSymbol":"GID8","entrezGeneId":54994},{"hugoGeneSymbol":"GIF","entrezGeneId":2694},{"hugoGeneSymbol":"GIGYF1","entrezGeneId":64599},{"hugoGeneSymbol":"GIGYF2","entrezGeneId":26058},{"hugoGeneSymbol":"GIMAP1","entrezGeneId":170575},{"hugoGeneSymbol":"GIMAP1-GIMAP5","entrezGeneId":100527949},{"hugoGeneSymbol":"GIMAP2","entrezGeneId":26157},{"hugoGeneSymbol":"GIMAP3P","entrezGeneId":474345},{"hugoGeneSymbol":"GIMAP4","entrezGeneId":55303},{"hugoGeneSymbol":"GIMAP5","entrezGeneId":55340},{"hugoGeneSymbol":"GIMAP6","entrezGeneId":474344},{"hugoGeneSymbol":"GIMAP7","entrezGeneId":168537},{"hugoGeneSymbol":"GIMAP8","entrezGeneId":155038},{"hugoGeneSymbol":"GIMD1","entrezGeneId":100507096},{"hugoGeneSymbol":"GIN1","entrezGeneId":54826},{"hugoGeneSymbol":"GINGF2","entrezGeneId":64644},{"hugoGeneSymbol":"GINGF3","entrezGeneId":780916},{"hugoGeneSymbol":"GINGF4","entrezGeneId":100124414},{"hugoGeneSymbol":"GINM1","entrezGeneId":116254},{"hugoGeneSymbol":"GINS1","entrezGeneId":9837},{"hugoGeneSymbol":"GINS2","entrezGeneId":51659},{"hugoGeneSymbol":"GINS3","entrezGeneId":64785},{"hugoGeneSymbol":"GINS4","entrezGeneId":84296},{"hugoGeneSymbol":"GIP","entrezGeneId":2695},{"hugoGeneSymbol":"GIPC1","entrezGeneId":10755},{"hugoGeneSymbol":"GIPC2","entrezGeneId":54810},{"hugoGeneSymbol":"GIPC3","entrezGeneId":126326},{"hugoGeneSymbol":"GIPR","entrezGeneId":2696},{"hugoGeneSymbol":"GIT1","entrezGeneId":28964},{"hugoGeneSymbol":"GIT2","entrezGeneId":9815},{"hugoGeneSymbol":"GJA1","entrezGeneId":2697},{"hugoGeneSymbol":"GJA10","entrezGeneId":84694},{"hugoGeneSymbol":"GJA1P1","entrezGeneId":2698},{"hugoGeneSymbol":"GJA3","entrezGeneId":2700},{"hugoGeneSymbol":"GJA4","entrezGeneId":2701},{"hugoGeneSymbol":"GJA5","entrezGeneId":2702},{"hugoGeneSymbol":"GJA6P","entrezGeneId":100126825},{"hugoGeneSymbol":"GJA8","entrezGeneId":2703},{"hugoGeneSymbol":"GJA9","entrezGeneId":81025},{"hugoGeneSymbol":"GJA9-MYCBP","entrezGeneId":100527950},{"hugoGeneSymbol":"GJB1","entrezGeneId":2705},{"hugoGeneSymbol":"GJB2","entrezGeneId":2706},{"hugoGeneSymbol":"GJB3","entrezGeneId":2707},{"hugoGeneSymbol":"GJB4","entrezGeneId":127534},{"hugoGeneSymbol":"GJB5","entrezGeneId":2709},{"hugoGeneSymbol":"GJB6","entrezGeneId":10804},{"hugoGeneSymbol":"GJB7","entrezGeneId":375519},{"hugoGeneSymbol":"GJC1","entrezGeneId":10052},{"hugoGeneSymbol":"GJC2","entrezGeneId":57165},{"hugoGeneSymbol":"GJC3","entrezGeneId":349149},{"hugoGeneSymbol":"GJD2","entrezGeneId":57369},{"hugoGeneSymbol":"GJD3","entrezGeneId":125111},{"hugoGeneSymbol":"GJD4","entrezGeneId":219770},{"hugoGeneSymbol":"GJE1","entrezGeneId":100126572},{"hugoGeneSymbol":"GK","entrezGeneId":2710},{"hugoGeneSymbol":"GK-AS1","entrezGeneId":100873902},{"hugoGeneSymbol":"GK-IT1","entrezGeneId":106480740},{"hugoGeneSymbol":"GK2","entrezGeneId":2712},{"hugoGeneSymbol":"GK3P","entrezGeneId":2713},{"hugoGeneSymbol":"GK4P","entrezGeneId":2716},{"hugoGeneSymbol":"GK5","entrezGeneId":256356},{"hugoGeneSymbol":"GK6P","entrezGeneId":201989},{"hugoGeneSymbol":"GKAP1","entrezGeneId":80318},{"hugoGeneSymbol":"GKN1","entrezGeneId":56287},{"hugoGeneSymbol":"GKN2","entrezGeneId":200504},{"hugoGeneSymbol":"GKN3P","entrezGeneId":100132413},{"hugoGeneSymbol":"GLA","entrezGeneId":2717},{"hugoGeneSymbol":"GLB1","entrezGeneId":2720},{"hugoGeneSymbol":"GLB1L","entrezGeneId":79411},{"hugoGeneSymbol":"GLB1L2","entrezGeneId":89944},{"hugoGeneSymbol":"GLB1L3","entrezGeneId":112937},{"hugoGeneSymbol":"GLC1B","entrezGeneId":2722},{"hugoGeneSymbol":"GLC1C","entrezGeneId":2723},{"hugoGeneSymbol":"GLC1D","entrezGeneId":2724},{"hugoGeneSymbol":"GLC1H","entrezGeneId":399564},{"hugoGeneSymbol":"GLC1I","entrezGeneId":497188},{"hugoGeneSymbol":"GLC1J","entrezGeneId":574078},{"hugoGeneSymbol":"GLC1K","entrezGeneId":574077},{"hugoGeneSymbol":"GLC1L","entrezGeneId":751781},{"hugoGeneSymbol":"GLC1M","entrezGeneId":777643},{"hugoGeneSymbol":"GLC1N","entrezGeneId":777645},{"hugoGeneSymbol":"GLC1P","entrezGeneId":101448070},{"hugoGeneSymbol":"GLC1Q","entrezGeneId":109729102},{"hugoGeneSymbol":"GLC2A","entrezGeneId":2727},{"hugoGeneSymbol":"GLC3B","entrezGeneId":2728},{"hugoGeneSymbol":"GLC3C","entrezGeneId":399565},{"hugoGeneSymbol":"GLCCI1","entrezGeneId":113263},{"hugoGeneSymbol":"GLCE","entrezGeneId":26035},{"hugoGeneSymbol":"GLDC","entrezGeneId":2731},{"hugoGeneSymbol":"GLDCP1","entrezGeneId":2732},{"hugoGeneSymbol":"GLDN","entrezGeneId":342035},{"hugoGeneSymbol":"GLE1","entrezGeneId":2733},{"hugoGeneSymbol":"GLG1","entrezGeneId":2734},{"hugoGeneSymbol":"GLI1","entrezGeneId":2735},{"hugoGeneSymbol":"GLI2","entrezGeneId":2736},{"hugoGeneSymbol":"GLI3","entrezGeneId":2737},{"hugoGeneSymbol":"GLI4","entrezGeneId":2738},{"hugoGeneSymbol":"GLIDR","entrezGeneId":389741},{"hugoGeneSymbol":"GLIPR1","entrezGeneId":11010},{"hugoGeneSymbol":"GLIPR1L1","entrezGeneId":256710},{"hugoGeneSymbol":"GLIPR1L2","entrezGeneId":144321},{"hugoGeneSymbol":"GLIPR2","entrezGeneId":152007},{"hugoGeneSymbol":"GLIS1","entrezGeneId":148979},{"hugoGeneSymbol":"GLIS2","entrezGeneId":84662},{"hugoGeneSymbol":"GLIS2-AS1","entrezGeneId":101926896},{"hugoGeneSymbol":"GLIS3","entrezGeneId":169792},{"hugoGeneSymbol":"GLIS3-AS1","entrezGeneId":84850},{"hugoGeneSymbol":"GLM4","entrezGeneId":338030},{"hugoGeneSymbol":"GLM5","entrezGeneId":100415894},{"hugoGeneSymbol":"GLM6","entrezGeneId":100415895},{"hugoGeneSymbol":"GLM7","entrezGeneId":101409265},{"hugoGeneSymbol":"GLM8","entrezGeneId":100316847},{"hugoGeneSymbol":"GLMN","entrezGeneId":11146},{"hugoGeneSymbol":"GLMP","entrezGeneId":112770},{"hugoGeneSymbol":"GLO1","entrezGeneId":2739},{"hugoGeneSymbol":"GLOD4","entrezGeneId":51031},{"hugoGeneSymbol":"GLOD5","entrezGeneId":392465},{"hugoGeneSymbol":"GLP1R","entrezGeneId":2740},{"hugoGeneSymbol":"GLP2R","entrezGeneId":9340},{"hugoGeneSymbol":"GLRA1","entrezGeneId":2741},{"hugoGeneSymbol":"GLRA2","entrezGeneId":2742},{"hugoGeneSymbol":"GLRA3","entrezGeneId":8001},{"hugoGeneSymbol":"GLRA4","entrezGeneId":441509},{"hugoGeneSymbol":"GLRB","entrezGeneId":2743},{"hugoGeneSymbol":"GLRX","entrezGeneId":2745},{"hugoGeneSymbol":"GLRX2","entrezGeneId":51022},{"hugoGeneSymbol":"GLRX3","entrezGeneId":10539},{"hugoGeneSymbol":"GLRX3P1","entrezGeneId":100418908},{"hugoGeneSymbol":"GLRX3P2","entrezGeneId":728344},{"hugoGeneSymbol":"GLRX5","entrezGeneId":51218},{"hugoGeneSymbol":"GLRXP1","entrezGeneId":170522},{"hugoGeneSymbol":"GLRXP2","entrezGeneId":171418},{"hugoGeneSymbol":"GLRXP3","entrezGeneId":100132510},{"hugoGeneSymbol":"GLS","entrezGeneId":2744},{"hugoGeneSymbol":"GLS2","entrezGeneId":27165},{"hugoGeneSymbol":"GLT1D1","entrezGeneId":144423},{"hugoGeneSymbol":"GLT6D1","entrezGeneId":360203},{"hugoGeneSymbol":"GLT8D1","entrezGeneId":55830},{"hugoGeneSymbol":"GLT8D2","entrezGeneId":83468},{"hugoGeneSymbol":"GLTP","entrezGeneId":51228},{"hugoGeneSymbol":"GLTPD2","entrezGeneId":388323},{"hugoGeneSymbol":"GLTPP1","entrezGeneId":645312},{"hugoGeneSymbol":"GLUD1","entrezGeneId":2746},{"hugoGeneSymbol":"GLUD1P2","entrezGeneId":414212},{"hugoGeneSymbol":"GLUD1P3","entrezGeneId":2749},{"hugoGeneSymbol":"GLUD1P4","entrezGeneId":2750},{"hugoGeneSymbol":"GLUD1P5","entrezGeneId":2751},{"hugoGeneSymbol":"GLUD1P8","entrezGeneId":414213},{"hugoGeneSymbol":"GLUD1P9","entrezGeneId":100131281},{"hugoGeneSymbol":"GLUD2","entrezGeneId":2747},{"hugoGeneSymbol":"GLUL","entrezGeneId":2752},{"hugoGeneSymbol":"GLULP1","entrezGeneId":2753},{"hugoGeneSymbol":"GLULP2","entrezGeneId":2754},{"hugoGeneSymbol":"GLULP3","entrezGeneId":401708},{"hugoGeneSymbol":"GLULP4","entrezGeneId":392305},{"hugoGeneSymbol":"GLULP5","entrezGeneId":100421694},{"hugoGeneSymbol":"GLULP6","entrezGeneId":343981},{"hugoGeneSymbol":"GLYAT","entrezGeneId":10249},{"hugoGeneSymbol":"GLYATL1","entrezGeneId":92292},{"hugoGeneSymbol":"GLYATL1B","entrezGeneId":100287520},{"hugoGeneSymbol":"GLYATL1P1","entrezGeneId":100129032},{"hugoGeneSymbol":"GLYATL1P2","entrezGeneId":100129933},{"hugoGeneSymbol":"GLYATL1P4","entrezGeneId":643637},{"hugoGeneSymbol":"GLYATL2","entrezGeneId":219970},{"hugoGeneSymbol":"GLYATL3","entrezGeneId":389396},{"hugoGeneSymbol":"GLYB","entrezGeneId":2757},{"hugoGeneSymbol":"GLYCAM1","entrezGeneId":644076},{"hugoGeneSymbol":"GLYCTK","entrezGeneId":132158},{"hugoGeneSymbol":"GLYCTK-AS1","entrezGeneId":100874110},{"hugoGeneSymbol":"GLYR1","entrezGeneId":84656},{"hugoGeneSymbol":"GLYS1","entrezGeneId":2759},{"hugoGeneSymbol":"GM2A","entrezGeneId":2760},{"hugoGeneSymbol":"GM2AP1","entrezGeneId":2761},{"hugoGeneSymbol":"GM2AP2","entrezGeneId":100287900},{"hugoGeneSymbol":"GMCL1","entrezGeneId":64395},{"hugoGeneSymbol":"GMCL1P2","entrezGeneId":100420975},{"hugoGeneSymbol":"GMCL2","entrezGeneId":64396},{"hugoGeneSymbol":"GMDS","entrezGeneId":2762},{"hugoGeneSymbol":"GMDS-DT","entrezGeneId":100508120},{"hugoGeneSymbol":"GMEB1","entrezGeneId":10691},{"hugoGeneSymbol":"GMEB2","entrezGeneId":26205},{"hugoGeneSymbol":"GMFA","entrezGeneId":2763},{"hugoGeneSymbol":"GMFB","entrezGeneId":2764},{"hugoGeneSymbol":"GMFBP1","entrezGeneId":100499251},{"hugoGeneSymbol":"GMFG","entrezGeneId":9535},{"hugoGeneSymbol":"GMIP","entrezGeneId":51291},{"hugoGeneSymbol":"GML","entrezGeneId":2765},{"hugoGeneSymbol":"GMNC","entrezGeneId":647309},{"hugoGeneSymbol":"GMNN","entrezGeneId":51053},{"hugoGeneSymbol":"GMPPA","entrezGeneId":29926},{"hugoGeneSymbol":"GMPPB","entrezGeneId":29925},{"hugoGeneSymbol":"GMPR","entrezGeneId":2766},{"hugoGeneSymbol":"GMPR2","entrezGeneId":51292},{"hugoGeneSymbol":"GMPS","entrezGeneId":8833},{"hugoGeneSymbol":"GMPSP1","entrezGeneId":728564},{"hugoGeneSymbol":"GNA11","entrezGeneId":2767},{"hugoGeneSymbol":"GNA12","entrezGeneId":2768},{"hugoGeneSymbol":"GNA13","entrezGeneId":10672},{"hugoGeneSymbol":"GNA14","entrezGeneId":9630},{"hugoGeneSymbol":"GNA14-AS1","entrezGeneId":101927422},{"hugoGeneSymbol":"GNA15","entrezGeneId":2769},{"hugoGeneSymbol":"GNAI1","entrezGeneId":2770},{"hugoGeneSymbol":"GNAI2","entrezGeneId":2771},{"hugoGeneSymbol":"GNAI2P1","entrezGeneId":2772},{"hugoGeneSymbol":"GNAI2P2","entrezGeneId":401646},{"hugoGeneSymbol":"GNAI3","entrezGeneId":2773},{"hugoGeneSymbol":"GNAL","entrezGeneId":2774},{"hugoGeneSymbol":"GNAO1","entrezGeneId":2775},{"hugoGeneSymbol":"GNAQ","entrezGeneId":2776},{"hugoGeneSymbol":"GNAQP1","entrezGeneId":2777},{"hugoGeneSymbol":"GNAS","entrezGeneId":2778},{"hugoGeneSymbol":"GNAS-AS1","entrezGeneId":149775},{"hugoGeneSymbol":"GNAT1","entrezGeneId":2779},{"hugoGeneSymbol":"GNAT2","entrezGeneId":2780},{"hugoGeneSymbol":"GNAT3","entrezGeneId":346562},{"hugoGeneSymbol":"GNAZ","entrezGeneId":2781},{"hugoGeneSymbol":"GNB1","entrezGeneId":2782},{"hugoGeneSymbol":"GNB1L","entrezGeneId":54584},{"hugoGeneSymbol":"GNB2","entrezGeneId":2783},{"hugoGeneSymbol":"GNB3","entrezGeneId":2784},{"hugoGeneSymbol":"GNB4","entrezGeneId":59345},{"hugoGeneSymbol":"GNB5","entrezGeneId":10681},{"hugoGeneSymbol":"GNE","entrezGeneId":10020},{"hugoGeneSymbol":"GNG10","entrezGeneId":2790},{"hugoGeneSymbol":"GNG10P1","entrezGeneId":100526656},{"hugoGeneSymbol":"GNG11","entrezGeneId":2791},{"hugoGeneSymbol":"GNG12","entrezGeneId":55970},{"hugoGeneSymbol":"GNG12-AS1","entrezGeneId":100289178},{"hugoGeneSymbol":"GNG13","entrezGeneId":51764},{"hugoGeneSymbol":"GNG14","entrezGeneId":105372280},{"hugoGeneSymbol":"GNG2","entrezGeneId":54331},{"hugoGeneSymbol":"GNG3","entrezGeneId":2785},{"hugoGeneSymbol":"GNG4","entrezGeneId":2786},{"hugoGeneSymbol":"GNG5","entrezGeneId":2787},{"hugoGeneSymbol":"GNG5P1","entrezGeneId":2789},{"hugoGeneSymbol":"GNG5P2","entrezGeneId":347687},{"hugoGeneSymbol":"GNG5P3","entrezGeneId":100101932},{"hugoGeneSymbol":"GNG5P4","entrezGeneId":100101933},{"hugoGeneSymbol":"GNG5P5","entrezGeneId":100101935},{"hugoGeneSymbol":"GNG7","entrezGeneId":2788},{"hugoGeneSymbol":"GNG8","entrezGeneId":94235},{"hugoGeneSymbol":"GNGT1","entrezGeneId":2792},{"hugoGeneSymbol":"GNGT2","entrezGeneId":2793},{"hugoGeneSymbol":"GNL1","entrezGeneId":2794},{"hugoGeneSymbol":"GNL2","entrezGeneId":29889},{"hugoGeneSymbol":"GNL2P1","entrezGeneId":100270790},{"hugoGeneSymbol":"GNL3","entrezGeneId":26354},{"hugoGeneSymbol":"GNL3L","entrezGeneId":54552},{"hugoGeneSymbol":"GNL3LP1","entrezGeneId":80060},{"hugoGeneSymbol":"GNLY","entrezGeneId":10578},{"hugoGeneSymbol":"GNMT","entrezGeneId":27232},{"hugoGeneSymbol":"GNPAT","entrezGeneId":8443},{"hugoGeneSymbol":"GNPATP","entrezGeneId":100130060},{"hugoGeneSymbol":"GNPDA1","entrezGeneId":10007},{"hugoGeneSymbol":"GNPDA2","entrezGeneId":132789},{"hugoGeneSymbol":"GNPNAT1","entrezGeneId":64841},{"hugoGeneSymbol":"GNPTAB","entrezGeneId":79158},{"hugoGeneSymbol":"GNPTG","entrezGeneId":84572},{"hugoGeneSymbol":"GNRH1","entrezGeneId":2796},{"hugoGeneSymbol":"GNRH2","entrezGeneId":2797},{"hugoGeneSymbol":"GNRHR","entrezGeneId":2798},{"hugoGeneSymbol":"GNRHR2","entrezGeneId":114814},{"hugoGeneSymbol":"GNRHR2P1","entrezGeneId":404718},{"hugoGeneSymbol":"GNS","entrezGeneId":2799},{"hugoGeneSymbol":"GOLGA1","entrezGeneId":2800},{"hugoGeneSymbol":"GOLGA2","entrezGeneId":2801},{"hugoGeneSymbol":"GOLGA2P1","entrezGeneId":100418751},{"hugoGeneSymbol":"GOLGA2P10","entrezGeneId":80154},{"hugoGeneSymbol":"GOLGA2P11","entrezGeneId":255180},{"hugoGeneSymbol":"GOLGA2P2Y","entrezGeneId":84559},{"hugoGeneSymbol":"GOLGA2P3Y","entrezGeneId":401634},{"hugoGeneSymbol":"GOLGA2P4","entrezGeneId":100873742},{"hugoGeneSymbol":"GOLGA2P5","entrezGeneId":55592},{"hugoGeneSymbol":"GOLGA2P6","entrezGeneId":729668},{"hugoGeneSymbol":"GOLGA2P7","entrezGeneId":388152},{"hugoGeneSymbol":"GOLGA2P8","entrezGeneId":728477},{"hugoGeneSymbol":"GOLGA2P9","entrezGeneId":440518},{"hugoGeneSymbol":"GOLGA3","entrezGeneId":2802},{"hugoGeneSymbol":"GOLGA4","entrezGeneId":2803},{"hugoGeneSymbol":"GOLGA4P1","entrezGeneId":192131},{"hugoGeneSymbol":"GOLGA4P2","entrezGeneId":192132},{"hugoGeneSymbol":"GOLGA4P3","entrezGeneId":192130},{"hugoGeneSymbol":"GOLGA5","entrezGeneId":9950},{"hugoGeneSymbol":"GOLGA5P1","entrezGeneId":100418736},{"hugoGeneSymbol":"GOLGA6A","entrezGeneId":342096},{"hugoGeneSymbol":"GOLGA6B","entrezGeneId":55889},{"hugoGeneSymbol":"GOLGA6C","entrezGeneId":653641},{"hugoGeneSymbol":"GOLGA6D","entrezGeneId":653643},{"hugoGeneSymbol":"GOLGA6L1","entrezGeneId":283767},{"hugoGeneSymbol":"GOLGA6L10","entrezGeneId":647042},{"hugoGeneSymbol":"GOLGA6L11P","entrezGeneId":360024},{"hugoGeneSymbol":"GOLGA6L12P","entrezGeneId":360025},{"hugoGeneSymbol":"GOLGA6L13P","entrezGeneId":360026},{"hugoGeneSymbol":"GOLGA6L14P","entrezGeneId":360027},{"hugoGeneSymbol":"GOLGA6L16P","entrezGeneId":100287845},{"hugoGeneSymbol":"GOLGA6L17P","entrezGeneId":642402},{"hugoGeneSymbol":"GOLGA6L19","entrezGeneId":101927601},{"hugoGeneSymbol":"GOLGA6L2","entrezGeneId":283685},{"hugoGeneSymbol":"GOLGA6L22","entrezGeneId":440243},{"hugoGeneSymbol":"GOLGA6L3","entrezGeneId":100133220},{"hugoGeneSymbol":"GOLGA6L4","entrezGeneId":643707},{"hugoGeneSymbol":"GOLGA6L5P","entrezGeneId":374650},{"hugoGeneSymbol":"GOLGA6L6","entrezGeneId":727832},{"hugoGeneSymbol":"GOLGA6L7","entrezGeneId":728310},{"hugoGeneSymbol":"GOLGA6L9","entrezGeneId":440295},{"hugoGeneSymbol":"GOLGA7","entrezGeneId":51125},{"hugoGeneSymbol":"GOLGA7B","entrezGeneId":401647},{"hugoGeneSymbol":"GOLGA8A","entrezGeneId":23015},{"hugoGeneSymbol":"GOLGA8B","entrezGeneId":440270},{"hugoGeneSymbol":"GOLGA8CP","entrezGeneId":729786},{"hugoGeneSymbol":"GOLGA8DP","entrezGeneId":100132979},{"hugoGeneSymbol":"GOLGA8EP","entrezGeneId":390535},{"hugoGeneSymbol":"GOLGA8F","entrezGeneId":100132565},{"hugoGeneSymbol":"GOLGA8G","entrezGeneId":283768},{"hugoGeneSymbol":"GOLGA8H","entrezGeneId":728498},{"hugoGeneSymbol":"GOLGA8IP","entrezGeneId":283796},{"hugoGeneSymbol":"GOLGA8J","entrezGeneId":653073},{"hugoGeneSymbol":"GOLGA8K","entrezGeneId":653125},{"hugoGeneSymbol":"GOLGA8M","entrezGeneId":653720},{"hugoGeneSymbol":"GOLGA8N","entrezGeneId":643699},{"hugoGeneSymbol":"GOLGA8O","entrezGeneId":728047},{"hugoGeneSymbol":"GOLGA8Q","entrezGeneId":727909},{"hugoGeneSymbol":"GOLGA8R","entrezGeneId":101059918},{"hugoGeneSymbol":"GOLGA8S","entrezGeneId":653061},{"hugoGeneSymbol":"GOLGA8T","entrezGeneId":653075},{"hugoGeneSymbol":"GOLGA8UP","entrezGeneId":100507067},{"hugoGeneSymbol":"GOLGA8VP","entrezGeneId":441736},{"hugoGeneSymbol":"GOLGB1","entrezGeneId":2804},{"hugoGeneSymbol":"GOLIM4","entrezGeneId":27333},{"hugoGeneSymbol":"GOLM1","entrezGeneId":51280},{"hugoGeneSymbol":"GOLPH3","entrezGeneId":64083},{"hugoGeneSymbol":"GOLPH3L","entrezGeneId":55204},{"hugoGeneSymbol":"GOLT1A","entrezGeneId":127845},{"hugoGeneSymbol":"GOLT1B","entrezGeneId":51026},{"hugoGeneSymbol":"GON4L","entrezGeneId":54856},{"hugoGeneSymbol":"GON7","entrezGeneId":84520},{"hugoGeneSymbol":"GOPC","entrezGeneId":57120},{"hugoGeneSymbol":"GORAB","entrezGeneId":92344},{"hugoGeneSymbol":"GORASP1","entrezGeneId":64689},{"hugoGeneSymbol":"GORASP2","entrezGeneId":26003},{"hugoGeneSymbol":"GOSR1","entrezGeneId":9527},{"hugoGeneSymbol":"GOSR2","entrezGeneId":9570},{"hugoGeneSymbol":"GOT1","entrezGeneId":2805},{"hugoGeneSymbol":"GOT1L1","entrezGeneId":137362},{"hugoGeneSymbol":"GOT2","entrezGeneId":2806},{"hugoGeneSymbol":"GOT2P1","entrezGeneId":645538},{"hugoGeneSymbol":"GOT2P2","entrezGeneId":391139},{"hugoGeneSymbol":"GOT2P3","entrezGeneId":644138},{"hugoGeneSymbol":"GOT2P4","entrezGeneId":121520},{"hugoGeneSymbol":"GOT2P5","entrezGeneId":100422625},{"hugoGeneSymbol":"GP1BA","entrezGeneId":2811},{"hugoGeneSymbol":"GP1BB","entrezGeneId":2812},{"hugoGeneSymbol":"GP2","entrezGeneId":2813},{"hugoGeneSymbol":"GP5","entrezGeneId":2814},{"hugoGeneSymbol":"GP6","entrezGeneId":51206},{"hugoGeneSymbol":"GP9","entrezGeneId":2815},{"hugoGeneSymbol":"GPA33","entrezGeneId":10223},{"hugoGeneSymbol":"GPAA1","entrezGeneId":8733},{"hugoGeneSymbol":"GPAA1P1","entrezGeneId":22945},{"hugoGeneSymbol":"GPAA1P2","entrezGeneId":106481722},{"hugoGeneSymbol":"GPALPP1","entrezGeneId":55425},{"hugoGeneSymbol":"GPAM","entrezGeneId":57678},{"hugoGeneSymbol":"GPANK1","entrezGeneId":7918},{"hugoGeneSymbol":"GPAT2","entrezGeneId":150763},{"hugoGeneSymbol":"GPAT2P1","entrezGeneId":643219},{"hugoGeneSymbol":"GPAT2P2","entrezGeneId":653924},{"hugoGeneSymbol":"GPAT3","entrezGeneId":84803},{"hugoGeneSymbol":"GPAT4","entrezGeneId":137964},{"hugoGeneSymbol":"GPATCH1","entrezGeneId":55094},{"hugoGeneSymbol":"GPATCH11","entrezGeneId":253635},{"hugoGeneSymbol":"GPATCH2","entrezGeneId":55105},{"hugoGeneSymbol":"GPATCH2L","entrezGeneId":55668},{"hugoGeneSymbol":"GPATCH3","entrezGeneId":63906},{"hugoGeneSymbol":"GPATCH4","entrezGeneId":54865},{"hugoGeneSymbol":"GPATCH8","entrezGeneId":23131},{"hugoGeneSymbol":"GPBAR1","entrezGeneId":151306},{"hugoGeneSymbol":"GPBP1","entrezGeneId":65056},{"hugoGeneSymbol":"GPBP1L1","entrezGeneId":60313},{"hugoGeneSymbol":"GPC1","entrezGeneId":2817},{"hugoGeneSymbol":"GPC2","entrezGeneId":221914},{"hugoGeneSymbol":"GPC3","entrezGeneId":2719},{"hugoGeneSymbol":"GPC3-AS1","entrezGeneId":110806308},{"hugoGeneSymbol":"GPC4","entrezGeneId":2239},{"hugoGeneSymbol":"GPC5","entrezGeneId":2262},{"hugoGeneSymbol":"GPC5-AS1","entrezGeneId":100873969},{"hugoGeneSymbol":"GPC5-AS2","entrezGeneId":100873970},{"hugoGeneSymbol":"GPC5-IT1","entrezGeneId":100874293},{"hugoGeneSymbol":"GPC6","entrezGeneId":10082},{"hugoGeneSymbol":"GPC6-AS1","entrezGeneId":100873972},{"hugoGeneSymbol":"GPC6-AS2","entrezGeneId":100873973},{"hugoGeneSymbol":"GPCPD1","entrezGeneId":56261},{"hugoGeneSymbol":"GPD1","entrezGeneId":2819},{"hugoGeneSymbol":"GPD1L","entrezGeneId":23171},{"hugoGeneSymbol":"GPD2","entrezGeneId":2820},{"hugoGeneSymbol":"GPDS1","entrezGeneId":7986},{"hugoGeneSymbol":"GPER1","entrezGeneId":2852},{"hugoGeneSymbol":"GPHA2","entrezGeneId":170589},{"hugoGeneSymbol":"GPHB5","entrezGeneId":122876},{"hugoGeneSymbol":"GPHN","entrezGeneId":10243},{"hugoGeneSymbol":"GPI","entrezGeneId":2821},{"hugoGeneSymbol":"GPIHBP1","entrezGeneId":338328},{"hugoGeneSymbol":"GPKOW","entrezGeneId":27238},{"hugoGeneSymbol":"GPLD1","entrezGeneId":2822},{"hugoGeneSymbol":"GPM6A","entrezGeneId":2823},{"hugoGeneSymbol":"GPM6B","entrezGeneId":2824},{"hugoGeneSymbol":"GPM6BP1","entrezGeneId":106480720},{"hugoGeneSymbol":"GPM6BP2","entrezGeneId":106480426},{"hugoGeneSymbol":"GPM6BP3","entrezGeneId":100873787},{"hugoGeneSymbol":"GPN1","entrezGeneId":11321},{"hugoGeneSymbol":"GPN2","entrezGeneId":54707},{"hugoGeneSymbol":"GPN3","entrezGeneId":51184},{"hugoGeneSymbol":"GPN3P1","entrezGeneId":100302689},{"hugoGeneSymbol":"GPNMB","entrezGeneId":10457},{"hugoGeneSymbol":"GPR1","entrezGeneId":2825},{"hugoGeneSymbol":"GPR1-AS","entrezGeneId":101669764},{"hugoGeneSymbol":"GPR101","entrezGeneId":83550},{"hugoGeneSymbol":"GPR107","entrezGeneId":57720},{"hugoGeneSymbol":"GPR108","entrezGeneId":56927},{"hugoGeneSymbol":"GPR119","entrezGeneId":139760},{"hugoGeneSymbol":"GPR12","entrezGeneId":2835},{"hugoGeneSymbol":"GPR132","entrezGeneId":29933},{"hugoGeneSymbol":"GPR135","entrezGeneId":64582},{"hugoGeneSymbol":"GPR137","entrezGeneId":56834},{"hugoGeneSymbol":"GPR137B","entrezGeneId":7107},{"hugoGeneSymbol":"GPR137C","entrezGeneId":283554},{"hugoGeneSymbol":"GPR139","entrezGeneId":124274},{"hugoGeneSymbol":"GPR141","entrezGeneId":353345},{"hugoGeneSymbol":"GPR142","entrezGeneId":350383},{"hugoGeneSymbol":"GPR143","entrezGeneId":4935},{"hugoGeneSymbol":"GPR143P","entrezGeneId":352896},{"hugoGeneSymbol":"GPR146","entrezGeneId":115330},{"hugoGeneSymbol":"GPR148","entrezGeneId":344561},{"hugoGeneSymbol":"GPR149","entrezGeneId":344758},{"hugoGeneSymbol":"GPR15","entrezGeneId":2838},{"hugoGeneSymbol":"GPR150","entrezGeneId":285601},{"hugoGeneSymbol":"GPR151","entrezGeneId":134391},{"hugoGeneSymbol":"GPR152","entrezGeneId":390212},{"hugoGeneSymbol":"GPR153","entrezGeneId":387509},{"hugoGeneSymbol":"GPR155","entrezGeneId":151556},{"hugoGeneSymbol":"GPR156","entrezGeneId":165829},{"hugoGeneSymbol":"GPR157","entrezGeneId":80045},{"hugoGeneSymbol":"GPR158","entrezGeneId":57512},{"hugoGeneSymbol":"GPR158-AS1","entrezGeneId":100128811},{"hugoGeneSymbol":"GPR160","entrezGeneId":26996},{"hugoGeneSymbol":"GPR161","entrezGeneId":23432},{"hugoGeneSymbol":"GPR162","entrezGeneId":27239},{"hugoGeneSymbol":"GPR165P","entrezGeneId":392486},{"hugoGeneSymbol":"GPR166P","entrezGeneId":442206},{"hugoGeneSymbol":"GPR17","entrezGeneId":2840},{"hugoGeneSymbol":"GPR171","entrezGeneId":29909},{"hugoGeneSymbol":"GPR173","entrezGeneId":54328},{"hugoGeneSymbol":"GPR174","entrezGeneId":84636},{"hugoGeneSymbol":"GPR176","entrezGeneId":11245},{"hugoGeneSymbol":"GPR179","entrezGeneId":440435},{"hugoGeneSymbol":"GPR18","entrezGeneId":2841},{"hugoGeneSymbol":"GPR180","entrezGeneId":160897},{"hugoGeneSymbol":"GPR182","entrezGeneId":11318},{"hugoGeneSymbol":"GPR183","entrezGeneId":1880},{"hugoGeneSymbol":"GPR19","entrezGeneId":2842},{"hugoGeneSymbol":"GPR20","entrezGeneId":2843},{"hugoGeneSymbol":"GPR21","entrezGeneId":2844},{"hugoGeneSymbol":"GPR22","entrezGeneId":2845},{"hugoGeneSymbol":"GPR25","entrezGeneId":2848},{"hugoGeneSymbol":"GPR26","entrezGeneId":2849},{"hugoGeneSymbol":"GPR27","entrezGeneId":2850},{"hugoGeneSymbol":"GPR3","entrezGeneId":2827},{"hugoGeneSymbol":"GPR31","entrezGeneId":2853},{"hugoGeneSymbol":"GPR32","entrezGeneId":2854},{"hugoGeneSymbol":"GPR32P1","entrezGeneId":2855},{"hugoGeneSymbol":"GPR33","entrezGeneId":2856},{"hugoGeneSymbol":"GPR34","entrezGeneId":2857},{"hugoGeneSymbol":"GPR35","entrezGeneId":2859},{"hugoGeneSymbol":"GPR36","entrezGeneId":2860},{"hugoGeneSymbol":"GPR37","entrezGeneId":2861},{"hugoGeneSymbol":"GPR37L1","entrezGeneId":9283},{"hugoGeneSymbol":"GPR39","entrezGeneId":2863},{"hugoGeneSymbol":"GPR4","entrezGeneId":2828},{"hugoGeneSymbol":"GPR42","entrezGeneId":2866},{"hugoGeneSymbol":"GPR45","entrezGeneId":11250},{"hugoGeneSymbol":"GPR50","entrezGeneId":9248},{"hugoGeneSymbol":"GPR50-AS1","entrezGeneId":100128688},{"hugoGeneSymbol":"GPR52","entrezGeneId":9293},{"hugoGeneSymbol":"GPR53P","entrezGeneId":9292},{"hugoGeneSymbol":"GPR55","entrezGeneId":9290},{"hugoGeneSymbol":"GPR6","entrezGeneId":2830},{"hugoGeneSymbol":"GPR61","entrezGeneId":83873},{"hugoGeneSymbol":"GPR62","entrezGeneId":118442},{"hugoGeneSymbol":"GPR63","entrezGeneId":81491},{"hugoGeneSymbol":"GPR65","entrezGeneId":8477},{"hugoGeneSymbol":"GPR68","entrezGeneId":8111},{"hugoGeneSymbol":"GPR75","entrezGeneId":10936},{"hugoGeneSymbol":"GPR75-ASB3","entrezGeneId":100302652},{"hugoGeneSymbol":"GPR78","entrezGeneId":27201},{"hugoGeneSymbol":"GPR79","entrezGeneId":27200},{"hugoGeneSymbol":"GPR82","entrezGeneId":27197},{"hugoGeneSymbol":"GPR83","entrezGeneId":10888},{"hugoGeneSymbol":"GPR84","entrezGeneId":53831},{"hugoGeneSymbol":"GPR85","entrezGeneId":54329},{"hugoGeneSymbol":"GPR87","entrezGeneId":53836},{"hugoGeneSymbol":"GPR88","entrezGeneId":54112},{"hugoGeneSymbol":"GPR89A","entrezGeneId":653519},{"hugoGeneSymbol":"GPR89B","entrezGeneId":51463},{"hugoGeneSymbol":"GPR89P","entrezGeneId":394254},{"hugoGeneSymbol":"GPRASP1","entrezGeneId":9737},{"hugoGeneSymbol":"GPRASP2","entrezGeneId":114928},{"hugoGeneSymbol":"GPRC5A","entrezGeneId":9052},{"hugoGeneSymbol":"GPRC5B","entrezGeneId":51704},{"hugoGeneSymbol":"GPRC5C","entrezGeneId":55890},{"hugoGeneSymbol":"GPRC5D","entrezGeneId":55507},{"hugoGeneSymbol":"GPRC5D-AS1","entrezGeneId":100506314},{"hugoGeneSymbol":"GPRC6A","entrezGeneId":222545},{"hugoGeneSymbol":"GPRIN1","entrezGeneId":114787},{"hugoGeneSymbol":"GPRIN2","entrezGeneId":9721},{"hugoGeneSymbol":"GPRIN3","entrezGeneId":285513},{"hugoGeneSymbol":"GPS1","entrezGeneId":2873},{"hugoGeneSymbol":"GPS2","entrezGeneId":2874},{"hugoGeneSymbol":"GPS2P1","entrezGeneId":392281},{"hugoGeneSymbol":"GPS2P2","entrezGeneId":100132058},{"hugoGeneSymbol":"GPSC","entrezGeneId":8156},{"hugoGeneSymbol":"GPSM1","entrezGeneId":26086},{"hugoGeneSymbol":"GPSM2","entrezGeneId":29899},{"hugoGeneSymbol":"GPSM3","entrezGeneId":63940},{"hugoGeneSymbol":"GPT","entrezGeneId":2875},{"hugoGeneSymbol":"GPT2","entrezGeneId":84706},{"hugoGeneSymbol":"GPX1","entrezGeneId":2876},{"hugoGeneSymbol":"GPX1P1","entrezGeneId":441481},{"hugoGeneSymbol":"GPX1P2","entrezGeneId":2884},{"hugoGeneSymbol":"GPX2","entrezGeneId":2877},{"hugoGeneSymbol":"GPX3","entrezGeneId":2878},{"hugoGeneSymbol":"GPX4","entrezGeneId":2879},{"hugoGeneSymbol":"GPX5","entrezGeneId":2880},{"hugoGeneSymbol":"GPX6","entrezGeneId":257202},{"hugoGeneSymbol":"GPX7","entrezGeneId":2882},{"hugoGeneSymbol":"GPX8","entrezGeneId":493869},{"hugoGeneSymbol":"GRAMD1A","entrezGeneId":57655},{"hugoGeneSymbol":"GRAMD1B","entrezGeneId":57476},{"hugoGeneSymbol":"GRAMD1C","entrezGeneId":54762},{"hugoGeneSymbol":"GRAMD2A","entrezGeneId":196996},{"hugoGeneSymbol":"GRAMD2B","entrezGeneId":65983},{"hugoGeneSymbol":"GRAMD4","entrezGeneId":23151},{"hugoGeneSymbol":"GRAMD4P1","entrezGeneId":100631252},{"hugoGeneSymbol":"GRAMD4P2","entrezGeneId":100873881},{"hugoGeneSymbol":"GRAMD4P3","entrezGeneId":100631248},{"hugoGeneSymbol":"GRAMD4P4","entrezGeneId":106480248},{"hugoGeneSymbol":"GRAMD4P5","entrezGeneId":100631249},{"hugoGeneSymbol":"GRAMD4P6","entrezGeneId":100631250},{"hugoGeneSymbol":"GRAMD4P7","entrezGeneId":100631251},{"hugoGeneSymbol":"GRAMD4P8","entrezGeneId":100631247},{"hugoGeneSymbol":"GRAP","entrezGeneId":10750},{"hugoGeneSymbol":"GRAP2","entrezGeneId":9402},{"hugoGeneSymbol":"GRAPL","entrezGeneId":400581},{"hugoGeneSymbol":"GRASP","entrezGeneId":160622},{"hugoGeneSymbol":"GRASP-AS1","entrezGeneId":692159},{"hugoGeneSymbol":"GRB10","entrezGeneId":2887},{"hugoGeneSymbol":"GRB14","entrezGeneId":2888},{"hugoGeneSymbol":"GRB2","entrezGeneId":2885},{"hugoGeneSymbol":"GRB7","entrezGeneId":2886},{"hugoGeneSymbol":"GRD1","entrezGeneId":100312954},{"hugoGeneSymbol":"GRD2","entrezGeneId":50976},{"hugoGeneSymbol":"GRDX","entrezGeneId":117189},{"hugoGeneSymbol":"GREB1","entrezGeneId":9687},{"hugoGeneSymbol":"GREB1L","entrezGeneId":80000},{"hugoGeneSymbol":"GREM1","entrezGeneId":26585},{"hugoGeneSymbol":"GREM2","entrezGeneId":64388},{"hugoGeneSymbol":"GRHL1","entrezGeneId":29841},{"hugoGeneSymbol":"GRHL2","entrezGeneId":79977},{"hugoGeneSymbol":"GRHL3","entrezGeneId":57822},{"hugoGeneSymbol":"GRHPR","entrezGeneId":9380},{"hugoGeneSymbol":"GRIA1","entrezGeneId":2890},{"hugoGeneSymbol":"GRIA2","entrezGeneId":2891},{"hugoGeneSymbol":"GRIA3","entrezGeneId":2892},{"hugoGeneSymbol":"GRIA4","entrezGeneId":2893},{"hugoGeneSymbol":"GRID1","entrezGeneId":2894},{"hugoGeneSymbol":"GRID1-AS1","entrezGeneId":100507470},{"hugoGeneSymbol":"GRID2","entrezGeneId":2895},{"hugoGeneSymbol":"GRID2IP","entrezGeneId":392862},{"hugoGeneSymbol":"GRIFIN","entrezGeneId":402635},{"hugoGeneSymbol":"GRIK1","entrezGeneId":2897},{"hugoGeneSymbol":"GRIK1-AS1","entrezGeneId":642976},{"hugoGeneSymbol":"GRIK1-AS2","entrezGeneId":100379661},{"hugoGeneSymbol":"GRIK2","entrezGeneId":2898},{"hugoGeneSymbol":"GRIK3","entrezGeneId":2899},{"hugoGeneSymbol":"GRIK4","entrezGeneId":2900},{"hugoGeneSymbol":"GRIK5","entrezGeneId":2901},{"hugoGeneSymbol":"GRIN1","entrezGeneId":2902},{"hugoGeneSymbol":"GRIN2A","entrezGeneId":2903},{"hugoGeneSymbol":"GRIN2B","entrezGeneId":2904},{"hugoGeneSymbol":"GRIN2C","entrezGeneId":2905},{"hugoGeneSymbol":"GRIN2D","entrezGeneId":2906},{"hugoGeneSymbol":"GRIN3A","entrezGeneId":116443},{"hugoGeneSymbol":"GRIN3B","entrezGeneId":116444},{"hugoGeneSymbol":"GRINA","entrezGeneId":2907},{"hugoGeneSymbol":"GRIP1","entrezGeneId":23426},{"hugoGeneSymbol":"GRIP2","entrezGeneId":80852},{"hugoGeneSymbol":"GRIPAP1","entrezGeneId":56850},{"hugoGeneSymbol":"GRK1","entrezGeneId":6011},{"hugoGeneSymbol":"GRK2","entrezGeneId":156},{"hugoGeneSymbol":"GRK3","entrezGeneId":157},{"hugoGeneSymbol":"GRK4","entrezGeneId":2868},{"hugoGeneSymbol":"GRK5","entrezGeneId":2869},{"hugoGeneSymbol":"GRK5-IT1","entrezGeneId":101927868},{"hugoGeneSymbol":"GRK6","entrezGeneId":2870},{"hugoGeneSymbol":"GRK6P1","entrezGeneId":2871},{"hugoGeneSymbol":"GRK7","entrezGeneId":131890},{"hugoGeneSymbol":"GRM1","entrezGeneId":2911},{"hugoGeneSymbol":"GRM2","entrezGeneId":2912},{"hugoGeneSymbol":"GRM3","entrezGeneId":2913},{"hugoGeneSymbol":"GRM4","entrezGeneId":2914},{"hugoGeneSymbol":"GRM5","entrezGeneId":2915},{"hugoGeneSymbol":"GRM5-AS1","entrezGeneId":100873989},{"hugoGeneSymbol":"GRM6","entrezGeneId":2916},{"hugoGeneSymbol":"GRM7","entrezGeneId":2917},{"hugoGeneSymbol":"GRM7-AS1","entrezGeneId":100873937},{"hugoGeneSymbol":"GRM7-AS2","entrezGeneId":105376946},{"hugoGeneSymbol":"GRM7-AS3","entrezGeneId":101927347},{"hugoGeneSymbol":"GRM8","entrezGeneId":2918},{"hugoGeneSymbol":"GRN","entrezGeneId":2896},{"hugoGeneSymbol":"GRP","entrezGeneId":2922},{"hugoGeneSymbol":"GRPEL1","entrezGeneId":80273},{"hugoGeneSymbol":"GRPEL2","entrezGeneId":134266},{"hugoGeneSymbol":"GRPEL2-AS1","entrezGeneId":106144529},{"hugoGeneSymbol":"GRPEL2P1","entrezGeneId":100874360},{"hugoGeneSymbol":"GRPEL2P2","entrezGeneId":100129994},{"hugoGeneSymbol":"GRPEL2P3","entrezGeneId":100129871},{"hugoGeneSymbol":"GRPR","entrezGeneId":2925},{"hugoGeneSymbol":"GRSF1","entrezGeneId":2926},{"hugoGeneSymbol":"GRTP1","entrezGeneId":79774},{"hugoGeneSymbol":"GRTP1-AS1","entrezGeneId":100874068},{"hugoGeneSymbol":"GRWD1","entrezGeneId":83743},{"hugoGeneSymbol":"GRXCR1","entrezGeneId":389207},{"hugoGeneSymbol":"GRXCR2","entrezGeneId":643226},{"hugoGeneSymbol":"GS1-124K5.11","entrezGeneId":493754},{"hugoGeneSymbol":"GS1-124K5.4","entrezGeneId":100289098},{"hugoGeneSymbol":"GS1-204I12.4","entrezGeneId":105371653},{"hugoGeneSymbol":"GS1-24F4.2","entrezGeneId":100652791},{"hugoGeneSymbol":"GS1-278J22.2","entrezGeneId":105375283},{"hugoGeneSymbol":"GS1-279B7.1","entrezGeneId":100288079},{"hugoGeneSymbol":"GS1-594A7.3","entrezGeneId":104798195},{"hugoGeneSymbol":"GS1-600G8.3","entrezGeneId":100093698},{"hugoGeneSymbol":"GSAP","entrezGeneId":54103},{"hugoGeneSymbol":"GSC","entrezGeneId":145258},{"hugoGeneSymbol":"GSC2","entrezGeneId":2928},{"hugoGeneSymbol":"GSDMA","entrezGeneId":284110},{"hugoGeneSymbol":"GSDMB","entrezGeneId":55876},{"hugoGeneSymbol":"GSDMC","entrezGeneId":56169},{"hugoGeneSymbol":"GSDMD","entrezGeneId":79792},{"hugoGeneSymbol":"GSDME","entrezGeneId":1687},{"hugoGeneSymbol":"GSE1","entrezGeneId":23199},{"hugoGeneSymbol":"GSEC","entrezGeneId":399972},{"hugoGeneSymbol":"GSG1","entrezGeneId":83445},{"hugoGeneSymbol":"GSG1L","entrezGeneId":146395},{"hugoGeneSymbol":"GSG1L2","entrezGeneId":644070},{"hugoGeneSymbol":"GSK3A","entrezGeneId":2931},{"hugoGeneSymbol":"GSK3B","entrezGeneId":2932},{"hugoGeneSymbol":"GSKIP","entrezGeneId":51527},{"hugoGeneSymbol":"GSM1","entrezGeneId":2933},{"hugoGeneSymbol":"GSN","entrezGeneId":2934},{"hugoGeneSymbol":"GSN-AS1","entrezGeneId":57000},{"hugoGeneSymbol":"GSPT1","entrezGeneId":2935},{"hugoGeneSymbol":"GSPT2","entrezGeneId":23708},{"hugoGeneSymbol":"GSR","entrezGeneId":2936},{"hugoGeneSymbol":"GSS","entrezGeneId":2937},{"hugoGeneSymbol":"GSTA1","entrezGeneId":2938},{"hugoGeneSymbol":"GSTA10P","entrezGeneId":647177},{"hugoGeneSymbol":"GSTA11P","entrezGeneId":647175},{"hugoGeneSymbol":"GSTA12P","entrezGeneId":647169},{"hugoGeneSymbol":"GSTA2","entrezGeneId":2939},{"hugoGeneSymbol":"GSTA3","entrezGeneId":2940},{"hugoGeneSymbol":"GSTA4","entrezGeneId":2941},{"hugoGeneSymbol":"GSTA5","entrezGeneId":221357},{"hugoGeneSymbol":"GSTA6P","entrezGeneId":2942},{"hugoGeneSymbol":"GSTA7P","entrezGeneId":730152},{"hugoGeneSymbol":"GSTA8P","entrezGeneId":100420627},{"hugoGeneSymbol":"GSTA9P","entrezGeneId":100174857},{"hugoGeneSymbol":"GSTCD","entrezGeneId":79807},{"hugoGeneSymbol":"GSTK1","entrezGeneId":373156},{"hugoGeneSymbol":"GSTM1","entrezGeneId":2944},{"hugoGeneSymbol":"GSTM2","entrezGeneId":2946},{"hugoGeneSymbol":"GSTM2P1","entrezGeneId":442245},{"hugoGeneSymbol":"GSTM3","entrezGeneId":2947},{"hugoGeneSymbol":"GSTM3P1","entrezGeneId":170523},{"hugoGeneSymbol":"GSTM3P2","entrezGeneId":100421057},{"hugoGeneSymbol":"GSTM4","entrezGeneId":2948},{"hugoGeneSymbol":"GSTM5","entrezGeneId":2949},{"hugoGeneSymbol":"GSTM5P1","entrezGeneId":100505557},{"hugoGeneSymbol":"GSTO1","entrezGeneId":9446},{"hugoGeneSymbol":"GSTO2","entrezGeneId":119391},{"hugoGeneSymbol":"GSTO3P","entrezGeneId":344813},{"hugoGeneSymbol":"GSTP1","entrezGeneId":2950},{"hugoGeneSymbol":"GSTP1P1","entrezGeneId":2951},{"hugoGeneSymbol":"GSTT1","entrezGeneId":2952},{"hugoGeneSymbol":"GSTT1-AS1","entrezGeneId":106099130},{"hugoGeneSymbol":"GSTT2","entrezGeneId":2953},{"hugoGeneSymbol":"GSTT2B","entrezGeneId":653689},{"hugoGeneSymbol":"GSTT4","entrezGeneId":25774},{"hugoGeneSymbol":"GSTTP2","entrezGeneId":653399},{"hugoGeneSymbol":"GSTZ1","entrezGeneId":2954},{"hugoGeneSymbol":"GSX1","entrezGeneId":219409},{"hugoGeneSymbol":"GSX2","entrezGeneId":170825},{"hugoGeneSymbol":"GTDC1","entrezGeneId":79712},{"hugoGeneSymbol":"GTF2A1","entrezGeneId":2957},{"hugoGeneSymbol":"GTF2A1L","entrezGeneId":11036},{"hugoGeneSymbol":"GTF2A2","entrezGeneId":2958},{"hugoGeneSymbol":"GTF2B","entrezGeneId":2959},{"hugoGeneSymbol":"GTF2E1","entrezGeneId":2960},{"hugoGeneSymbol":"GTF2E2","entrezGeneId":2961},{"hugoGeneSymbol":"GTF2F1","entrezGeneId":2962},{"hugoGeneSymbol":"GTF2F2","entrezGeneId":2963},{"hugoGeneSymbol":"GTF2F2P1","entrezGeneId":2964},{"hugoGeneSymbol":"GTF2F2P2","entrezGeneId":728633},{"hugoGeneSymbol":"GTF2H1","entrezGeneId":2965},{"hugoGeneSymbol":"GTF2H2","entrezGeneId":2966},{"hugoGeneSymbol":"GTF2H2B","entrezGeneId":653238},{"hugoGeneSymbol":"GTF2H2C","entrezGeneId":728340},{"hugoGeneSymbol":"GTF2H2C_2","entrezGeneId":730394},{"hugoGeneSymbol":"GTF2H3","entrezGeneId":2967},{"hugoGeneSymbol":"GTF2H4","entrezGeneId":2968},{"hugoGeneSymbol":"GTF2H5","entrezGeneId":404672},{"hugoGeneSymbol":"GTF2I","entrezGeneId":2969},{"hugoGeneSymbol":"GTF2IP1","entrezGeneId":2970},{"hugoGeneSymbol":"GTF2IP10","entrezGeneId":107403151},{"hugoGeneSymbol":"GTF2IP11","entrezGeneId":106480346},{"hugoGeneSymbol":"GTF2IP12","entrezGeneId":101926918},{"hugoGeneSymbol":"GTF2IP13","entrezGeneId":101929008},{"hugoGeneSymbol":"GTF2IP14","entrezGeneId":106481735},{"hugoGeneSymbol":"GTF2IP15","entrezGeneId":107403154},{"hugoGeneSymbol":"GTF2IP17","entrezGeneId":107403156},{"hugoGeneSymbol":"GTF2IP19","entrezGeneId":107403157},{"hugoGeneSymbol":"GTF2IP2","entrezGeneId":338448},{"hugoGeneSymbol":"GTF2IP20","entrezGeneId":441124},{"hugoGeneSymbol":"GTF2IP22","entrezGeneId":106480347},{"hugoGeneSymbol":"GTF2IP23","entrezGeneId":101929580},{"hugoGeneSymbol":"GTF2IP3","entrezGeneId":645686},{"hugoGeneSymbol":"GTF2IP4","entrezGeneId":100093631},{"hugoGeneSymbol":"GTF2IP5","entrezGeneId":100420546},{"hugoGeneSymbol":"GTF2IP6","entrezGeneId":101927390},{"hugoGeneSymbol":"GTF2IP7","entrezGeneId":101927126},{"hugoGeneSymbol":"GTF2IP8","entrezGeneId":101927717},{"hugoGeneSymbol":"GTF2IP9","entrezGeneId":106481734},{"hugoGeneSymbol":"GTF2IRD1","entrezGeneId":9569},{"hugoGeneSymbol":"GTF2IRD1P1","entrezGeneId":729156},{"hugoGeneSymbol":"GTF2IRD2","entrezGeneId":84163},{"hugoGeneSymbol":"GTF2IRD2B","entrezGeneId":389524},{"hugoGeneSymbol":"GTF2IRD2P1","entrezGeneId":401375},{"hugoGeneSymbol":"GTF3A","entrezGeneId":2971},{"hugoGeneSymbol":"GTF3AP1","entrezGeneId":100135064},{"hugoGeneSymbol":"GTF3AP2","entrezGeneId":106480682},{"hugoGeneSymbol":"GTF3AP4","entrezGeneId":100420593},{"hugoGeneSymbol":"GTF3AP5","entrezGeneId":100128217},{"hugoGeneSymbol":"GTF3AP6","entrezGeneId":100135063},{"hugoGeneSymbol":"GTF3C1","entrezGeneId":2975},{"hugoGeneSymbol":"GTF3C2","entrezGeneId":2976},{"hugoGeneSymbol":"GTF3C2-AS1","entrezGeneId":100505624},{"hugoGeneSymbol":"GTF3C3","entrezGeneId":9330},{"hugoGeneSymbol":"GTF3C4","entrezGeneId":9329},{"hugoGeneSymbol":"GTF3C5","entrezGeneId":9328},{"hugoGeneSymbol":"GTF3C6","entrezGeneId":112495},{"hugoGeneSymbol":"GTPBP1","entrezGeneId":9567},{"hugoGeneSymbol":"GTPBP10","entrezGeneId":85865},{"hugoGeneSymbol":"GTPBP2","entrezGeneId":54676},{"hugoGeneSymbol":"GTPBP3","entrezGeneId":84705},{"hugoGeneSymbol":"GTPBP4","entrezGeneId":23560},{"hugoGeneSymbol":"GTPBP6","entrezGeneId":8225},{"hugoGeneSymbol":"GTPBP8","entrezGeneId":29083},{"hugoGeneSymbol":"GTS","entrezGeneId":2973},{"hugoGeneSymbol":"GTSCR1","entrezGeneId":220158},{"hugoGeneSymbol":"GTSE1","entrezGeneId":51512},{"hugoGeneSymbol":"GTSE1-DT","entrezGeneId":150384},{"hugoGeneSymbol":"GTSF1","entrezGeneId":121355},{"hugoGeneSymbol":"GTSF1L","entrezGeneId":149699},{"hugoGeneSymbol":"GUCA1A","entrezGeneId":2978},{"hugoGeneSymbol":"GUCA1B","entrezGeneId":2979},{"hugoGeneSymbol":"GUCA1C","entrezGeneId":9626},{"hugoGeneSymbol":"GUCA2A","entrezGeneId":2980},{"hugoGeneSymbol":"GUCA2B","entrezGeneId":2981},{"hugoGeneSymbol":"GUCD1","entrezGeneId":83606},{"hugoGeneSymbol":"GUCY1A1","entrezGeneId":2982},{"hugoGeneSymbol":"GUCY1A2","entrezGeneId":2977},{"hugoGeneSymbol":"GUCY1B1","entrezGeneId":2983},{"hugoGeneSymbol":"GUCY1B2","entrezGeneId":2974},{"hugoGeneSymbol":"GUCY2C","entrezGeneId":2984},{"hugoGeneSymbol":"GUCY2D","entrezGeneId":3000},{"hugoGeneSymbol":"GUCY2EP","entrezGeneId":390226},{"hugoGeneSymbol":"GUCY2F","entrezGeneId":2986},{"hugoGeneSymbol":"GUCY2GP","entrezGeneId":390003},{"hugoGeneSymbol":"GUF1","entrezGeneId":60558},{"hugoGeneSymbol":"GUK1","entrezGeneId":2987},{"hugoGeneSymbol":"GUK2","entrezGeneId":2988},{"hugoGeneSymbol":"GULOP","entrezGeneId":2989},{"hugoGeneSymbol":"GULP1","entrezGeneId":51454},{"hugoGeneSymbol":"GUSB","entrezGeneId":2990},{"hugoGeneSymbol":"GUSBP1","entrezGeneId":728411},{"hugoGeneSymbol":"GUSBP10","entrezGeneId":642006},{"hugoGeneSymbol":"GUSBP11","entrezGeneId":91316},{"hugoGeneSymbol":"GUSBP12","entrezGeneId":642007},{"hugoGeneSymbol":"GUSBP2","entrezGeneId":387036},{"hugoGeneSymbol":"GUSBP3","entrezGeneId":653188},{"hugoGeneSymbol":"GUSBP4","entrezGeneId":375513},{"hugoGeneSymbol":"GUSBP5","entrezGeneId":441046},{"hugoGeneSymbol":"GUSBP6","entrezGeneId":653435},{"hugoGeneSymbol":"GUSBP7","entrezGeneId":100132456},{"hugoGeneSymbol":"GUSBP8","entrezGeneId":441066},{"hugoGeneSymbol":"GUSBP9","entrezGeneId":100049076},{"hugoGeneSymbol":"GUST","entrezGeneId":8258},{"hugoGeneSymbol":"GVINP1","entrezGeneId":387751},{"hugoGeneSymbol":"GVINP2","entrezGeneId":100128135},{"hugoGeneSymbol":"GVQW1","entrezGeneId":101362076},{"hugoGeneSymbol":"GVQW2","entrezGeneId":100507462},{"hugoGeneSymbol":"GVQW3","entrezGeneId":100506127},{"hugoGeneSymbol":"GXYLT1","entrezGeneId":283464},{"hugoGeneSymbol":"GXYLT1P1","entrezGeneId":100101111},{"hugoGeneSymbol":"GXYLT1P2","entrezGeneId":441958},{"hugoGeneSymbol":"GXYLT1P3","entrezGeneId":100132541},{"hugoGeneSymbol":"GXYLT1P4","entrezGeneId":100132441},{"hugoGeneSymbol":"GXYLT1P5","entrezGeneId":100131760},{"hugoGeneSymbol":"GXYLT1P6","entrezGeneId":100132672},{"hugoGeneSymbol":"GXYLT2","entrezGeneId":727936},{"hugoGeneSymbol":"GYG1","entrezGeneId":2992},{"hugoGeneSymbol":"GYG1P1","entrezGeneId":100132965},{"hugoGeneSymbol":"GYG1P2","entrezGeneId":647317},{"hugoGeneSymbol":"GYG1P3","entrezGeneId":645506},{"hugoGeneSymbol":"GYG2","entrezGeneId":8908},{"hugoGeneSymbol":"GYG2-AS1","entrezGeneId":100873938},{"hugoGeneSymbol":"GYG2P1","entrezGeneId":352887},{"hugoGeneSymbol":"GYG2P2","entrezGeneId":100418892},{"hugoGeneSymbol":"GYPA","entrezGeneId":2993},{"hugoGeneSymbol":"GYPB","entrezGeneId":2994},{"hugoGeneSymbol":"GYPC","entrezGeneId":2995},{"hugoGeneSymbol":"GYPE","entrezGeneId":2996},{"hugoGeneSymbol":"GYS1","entrezGeneId":2997},{"hugoGeneSymbol":"GYS2","entrezGeneId":2998},{"hugoGeneSymbol":"GZF1","entrezGeneId":64412},{"hugoGeneSymbol":"GZMA","entrezGeneId":3001},{"hugoGeneSymbol":"GZMAP1","entrezGeneId":106479035},{"hugoGeneSymbol":"GZMB","entrezGeneId":3002},{"hugoGeneSymbol":"GZMH","entrezGeneId":2999},{"hugoGeneSymbol":"GZMK","entrezGeneId":3003},{"hugoGeneSymbol":"GZMM","entrezGeneId":3004},{"hugoGeneSymbol":"H142T","entrezGeneId":8023},{"hugoGeneSymbol":"H19","entrezGeneId":283120},{"hugoGeneSymbol":"H19-ICR","entrezGeneId":105259599},{"hugoGeneSymbol":"H1F0","entrezGeneId":3005},{"hugoGeneSymbol":"H1FNT","entrezGeneId":341567},{"hugoGeneSymbol":"H1FOO","entrezGeneId":132243},{"hugoGeneSymbol":"H1FX","entrezGeneId":8971},{"hugoGeneSymbol":"H1FX-AS1","entrezGeneId":339942},{"hugoGeneSymbol":"H2AFB1","entrezGeneId":474382},{"hugoGeneSymbol":"H2AFB2","entrezGeneId":474381},{"hugoGeneSymbol":"H2AFB3","entrezGeneId":83740},{"hugoGeneSymbol":"H2AFJ","entrezGeneId":55766},{"hugoGeneSymbol":"H2AFV","entrezGeneId":94239},{"hugoGeneSymbol":"H2AFVP1","entrezGeneId":654500},{"hugoGeneSymbol":"H2AFX","entrezGeneId":3014},{"hugoGeneSymbol":"H2AFY","entrezGeneId":9555},{"hugoGeneSymbol":"H2AFY2","entrezGeneId":55506},{"hugoGeneSymbol":"H2AFZ","entrezGeneId":3015},{"hugoGeneSymbol":"H2AFZP1","entrezGeneId":54049},{"hugoGeneSymbol":"H2AFZP2","entrezGeneId":346990},{"hugoGeneSymbol":"H2AFZP3","entrezGeneId":728023},{"hugoGeneSymbol":"H2AFZP4","entrezGeneId":100462795},{"hugoGeneSymbol":"H2AFZP5","entrezGeneId":100288330},{"hugoGeneSymbol":"H2AFZP6","entrezGeneId":100462800},{"hugoGeneSymbol":"H2BFM","entrezGeneId":286436},{"hugoGeneSymbol":"H2BFS","entrezGeneId":54145},{"hugoGeneSymbol":"H2BFWT","entrezGeneId":158983},{"hugoGeneSymbol":"H2BFXP","entrezGeneId":767811},{"hugoGeneSymbol":"H3.X","entrezGeneId":340096},{"hugoGeneSymbol":"H3.Y","entrezGeneId":391769},{"hugoGeneSymbol":"H3F3A","entrezGeneId":3020},{"hugoGeneSymbol":"H3F3AP1","entrezGeneId":654505},{"hugoGeneSymbol":"H3F3AP2","entrezGeneId":664611},{"hugoGeneSymbol":"H3F3AP3","entrezGeneId":100689229},{"hugoGeneSymbol":"H3F3AP4","entrezGeneId":440926},{"hugoGeneSymbol":"H3F3AP5","entrezGeneId":347376},{"hugoGeneSymbol":"H3F3AP6","entrezGeneId":644914},{"hugoGeneSymbol":"H3F3B","entrezGeneId":3021},{"hugoGeneSymbol":"H3F3BP1","entrezGeneId":100287087},{"hugoGeneSymbol":"H3F3BP2","entrezGeneId":100420410},{"hugoGeneSymbol":"H3F3C","entrezGeneId":440093},{"hugoGeneSymbol":"H6PD","entrezGeneId":9563},{"hugoGeneSymbol":"HAAO","entrezGeneId":23498},{"hugoGeneSymbol":"HABP2","entrezGeneId":3026},{"hugoGeneSymbol":"HABP4","entrezGeneId":22927},{"hugoGeneSymbol":"HACD1","entrezGeneId":9200},{"hugoGeneSymbol":"HACD2","entrezGeneId":201562},{"hugoGeneSymbol":"HACD3","entrezGeneId":51495},{"hugoGeneSymbol":"HACD4","entrezGeneId":401494},{"hugoGeneSymbol":"HACE1","entrezGeneId":57531},{"hugoGeneSymbol":"HACL1","entrezGeneId":26061},{"hugoGeneSymbol":"HADH","entrezGeneId":3033},{"hugoGeneSymbol":"HADHA","entrezGeneId":3030},{"hugoGeneSymbol":"HADHAP1","entrezGeneId":3031},{"hugoGeneSymbol":"HADHAP2","entrezGeneId":399994},{"hugoGeneSymbol":"HADHB","entrezGeneId":3032},{"hugoGeneSymbol":"HAGH","entrezGeneId":3029},{"hugoGeneSymbol":"HAGHL","entrezGeneId":84264},{"hugoGeneSymbol":"HAGLR","entrezGeneId":401022},{"hugoGeneSymbol":"HAGLROS","entrezGeneId":102800310},{"hugoGeneSymbol":"HAL","entrezGeneId":3034},{"hugoGeneSymbol":"HAMP","entrezGeneId":57817},{"hugoGeneSymbol":"HAND1","entrezGeneId":9421},{"hugoGeneSymbol":"HAND2","entrezGeneId":9464},{"hugoGeneSymbol":"HAND2-AS1","entrezGeneId":79804},{"hugoGeneSymbol":"HAO1","entrezGeneId":54363},{"hugoGeneSymbol":"HAO2","entrezGeneId":51179},{"hugoGeneSymbol":"HAO2-IT1","entrezGeneId":100874270},{"hugoGeneSymbol":"HAP1","entrezGeneId":9001},{"hugoGeneSymbol":"HAPLN1","entrezGeneId":1404},{"hugoGeneSymbol":"HAPLN2","entrezGeneId":60484},{"hugoGeneSymbol":"HAPLN3","entrezGeneId":145864},{"hugoGeneSymbol":"HAPLN4","entrezGeneId":404037},{"hugoGeneSymbol":"HAR1A","entrezGeneId":768096},{"hugoGeneSymbol":"HAR1B","entrezGeneId":768097},{"hugoGeneSymbol":"HARBI1","entrezGeneId":283254},{"hugoGeneSymbol":"HARS","entrezGeneId":3035},{"hugoGeneSymbol":"HARS2","entrezGeneId":23438},{"hugoGeneSymbol":"HAS1","entrezGeneId":3036},{"hugoGeneSymbol":"HAS2","entrezGeneId":3037},{"hugoGeneSymbol":"HAS2-AS1","entrezGeneId":594842},{"hugoGeneSymbol":"HAS3","entrezGeneId":3038},{"hugoGeneSymbol":"HASPIN","entrezGeneId":83903},{"hugoGeneSymbol":"HAT1","entrezGeneId":8520},{"hugoGeneSymbol":"HAUS1","entrezGeneId":115106},{"hugoGeneSymbol":"HAUS1P1","entrezGeneId":728921},{"hugoGeneSymbol":"HAUS1P2","entrezGeneId":441484},{"hugoGeneSymbol":"HAUS1P3","entrezGeneId":100271703},{"hugoGeneSymbol":"HAUS2","entrezGeneId":55142},{"hugoGeneSymbol":"HAUS3","entrezGeneId":79441},{"hugoGeneSymbol":"HAUS4","entrezGeneId":54930},{"hugoGeneSymbol":"HAUS4P1","entrezGeneId":100129402},{"hugoGeneSymbol":"HAUS5","entrezGeneId":23354},{"hugoGeneSymbol":"HAUS6","entrezGeneId":54801},{"hugoGeneSymbol":"HAUS6P1","entrezGeneId":653175},{"hugoGeneSymbol":"HAUS6P2","entrezGeneId":100133268},{"hugoGeneSymbol":"HAUS6P3","entrezGeneId":102723574},{"hugoGeneSymbol":"HAUS7","entrezGeneId":55559},{"hugoGeneSymbol":"HAUS8","entrezGeneId":93323},{"hugoGeneSymbol":"HAUS8P1","entrezGeneId":100420901},{"hugoGeneSymbol":"HAVCR1","entrezGeneId":26762},{"hugoGeneSymbol":"HAVCR1P1","entrezGeneId":100101266},{"hugoGeneSymbol":"HAVCR1P2","entrezGeneId":100421002},{"hugoGeneSymbol":"HAVCR2","entrezGeneId":84868},{"hugoGeneSymbol":"HAX1","entrezGeneId":10456},{"hugoGeneSymbol":"HBA-LCR","entrezGeneId":106144573},{"hugoGeneSymbol":"HBA1","entrezGeneId":3039},{"hugoGeneSymbol":"HBA2","entrezGeneId":3040},{"hugoGeneSymbol":"HBAP1","entrezGeneId":3041},{"hugoGeneSymbol":"HBB","entrezGeneId":3043},{"hugoGeneSymbol":"HBB-3'HS1","entrezGeneId":105180392},{"hugoGeneSymbol":"HBB-HS-107","entrezGeneId":110740348},{"hugoGeneSymbol":"HBB-HS-111","entrezGeneId":106010958},{"hugoGeneSymbol":"HBB-LCR","entrezGeneId":109580095},{"hugoGeneSymbol":"HBBP1","entrezGeneId":3044},{"hugoGeneSymbol":"HBD","entrezGeneId":3045},{"hugoGeneSymbol":"HBE1","entrezGeneId":3046},{"hugoGeneSymbol":"HBEGF","entrezGeneId":1839},{"hugoGeneSymbol":"HBFQTL2","entrezGeneId":7954},{"hugoGeneSymbol":"HBFQTL4","entrezGeneId":171515},{"hugoGeneSymbol":"HBG1","entrezGeneId":3047},{"hugoGeneSymbol":"HBG2","entrezGeneId":3048},{"hugoGeneSymbol":"HBHR","entrezGeneId":8129},{"hugoGeneSymbol":"HBM","entrezGeneId":3042},{"hugoGeneSymbol":"HBN1","entrezGeneId":8184},{"hugoGeneSymbol":"HBP1","entrezGeneId":26959},{"hugoGeneSymbol":"HBQ1","entrezGeneId":3049},{"hugoGeneSymbol":"HBS1L","entrezGeneId":10767},{"hugoGeneSymbol":"HBZ","entrezGeneId":3050},{"hugoGeneSymbol":"HBZP1","entrezGeneId":3051},{"hugoGeneSymbol":"HCA1","entrezGeneId":266790},{"hugoGeneSymbol":"HCAR1","entrezGeneId":27198},{"hugoGeneSymbol":"HCAR2","entrezGeneId":338442},{"hugoGeneSymbol":"HCAR3","entrezGeneId":8843},{"hugoGeneSymbol":"HCC","entrezGeneId":619501},{"hugoGeneSymbol":"HCCAT5","entrezGeneId":283902},{"hugoGeneSymbol":"HCCS","entrezGeneId":3052},{"hugoGeneSymbol":"HCFC1","entrezGeneId":3054},{"hugoGeneSymbol":"HCFC1-AS1","entrezGeneId":100873990},{"hugoGeneSymbol":"HCFC1R1","entrezGeneId":54985},{"hugoGeneSymbol":"HCFC2","entrezGeneId":29915},{"hugoGeneSymbol":"HCFC2P1","entrezGeneId":100419149},{"hugoGeneSymbol":"HCG11","entrezGeneId":493812},{"hugoGeneSymbol":"HCG13P","entrezGeneId":493813},{"hugoGeneSymbol":"HCG14","entrezGeneId":414760},{"hugoGeneSymbol":"HCG15","entrezGeneId":414761},{"hugoGeneSymbol":"HCG17","entrezGeneId":414778},{"hugoGeneSymbol":"HCG18","entrezGeneId":414777},{"hugoGeneSymbol":"HCG19P","entrezGeneId":414776},{"hugoGeneSymbol":"HCG20","entrezGeneId":105375013},{"hugoGeneSymbol":"HCG2040054","entrezGeneId":644093},{"hugoGeneSymbol":"HCG21","entrezGeneId":102723346},{"hugoGeneSymbol":"HCG22","entrezGeneId":285834},{"hugoGeneSymbol":"HCG23","entrezGeneId":414764},{"hugoGeneSymbol":"HCG24","entrezGeneId":414768},{"hugoGeneSymbol":"HCG25","entrezGeneId":414765},{"hugoGeneSymbol":"HCG26","entrezGeneId":352961},{"hugoGeneSymbol":"HCG27","entrezGeneId":253018},{"hugoGeneSymbol":"HCG4","entrezGeneId":54435},{"hugoGeneSymbol":"HCG4B","entrezGeneId":80868},{"hugoGeneSymbol":"HCG4P1","entrezGeneId":387503},{"hugoGeneSymbol":"HCG4P11","entrezGeneId":353020},{"hugoGeneSymbol":"HCG4P2","entrezGeneId":387504},{"hugoGeneSymbol":"HCG4P3","entrezGeneId":353001},{"hugoGeneSymbol":"HCG4P4","entrezGeneId":353002},{"hugoGeneSymbol":"HCG4P5","entrezGeneId":353003},{"hugoGeneSymbol":"HCG4P7","entrezGeneId":353004},{"hugoGeneSymbol":"HCG4P8","entrezGeneId":353005},{"hugoGeneSymbol":"HCG4P9","entrezGeneId":353014},{"hugoGeneSymbol":"HCG9","entrezGeneId":10255},{"hugoGeneSymbol":"HCG9P1","entrezGeneId":387505},{"hugoGeneSymbol":"HCG9P2","entrezGeneId":387506},{"hugoGeneSymbol":"HCG9P3","entrezGeneId":387507},{"hugoGeneSymbol":"HCG9P5","entrezGeneId":353019},{"hugoGeneSymbol":"HCGVIII-2","entrezGeneId":353000},{"hugoGeneSymbol":"HCHGQ1","entrezGeneId":100381204},{"hugoGeneSymbol":"HCHGQ2","entrezGeneId":100381205},{"hugoGeneSymbol":"HCHGQ3","entrezGeneId":100381206},{"hugoGeneSymbol":"HCHOLA4","entrezGeneId":246132},{"hugoGeneSymbol":"HCK","entrezGeneId":3055},{"hugoGeneSymbol":"HCL1","entrezGeneId":3056},{"hugoGeneSymbol":"HCL2","entrezGeneId":3057},{"hugoGeneSymbol":"HCLS1","entrezGeneId":3059},{"hugoGeneSymbol":"HCN1","entrezGeneId":348980},{"hugoGeneSymbol":"HCN2","entrezGeneId":610},{"hugoGeneSymbol":"HCN3","entrezGeneId":57657},{"hugoGeneSymbol":"HCN4","entrezGeneId":10021},{"hugoGeneSymbol":"HCNR606","entrezGeneId":111258521},{"hugoGeneSymbol":"HCNR617","entrezGeneId":110121028},{"hugoGeneSymbol":"HCP5","entrezGeneId":10866},{"hugoGeneSymbol":"HCP5B","entrezGeneId":352990},{"hugoGeneSymbol":"HCRT","entrezGeneId":3060},{"hugoGeneSymbol":"HCRTR1","entrezGeneId":3061},{"hugoGeneSymbol":"HCRTR2","entrezGeneId":3062},{"hugoGeneSymbol":"HCST","entrezGeneId":10870},{"hugoGeneSymbol":"HCVS","entrezGeneId":3063},{"hugoGeneSymbol":"HDAC1","entrezGeneId":3065},{"hugoGeneSymbol":"HDAC10","entrezGeneId":83933},{"hugoGeneSymbol":"HDAC11","entrezGeneId":79885},{"hugoGeneSymbol":"HDAC11-AS1","entrezGeneId":100874101},{"hugoGeneSymbol":"HDAC1P1","entrezGeneId":100419595},{"hugoGeneSymbol":"HDAC1P2","entrezGeneId":100419489},{"hugoGeneSymbol":"HDAC2","entrezGeneId":3066},{"hugoGeneSymbol":"HDAC2-AS2","entrezGeneId":101927768},{"hugoGeneSymbol":"HDAC3","entrezGeneId":8841},{"hugoGeneSymbol":"HDAC4","entrezGeneId":9759},{"hugoGeneSymbol":"HDAC5","entrezGeneId":10014},{"hugoGeneSymbol":"HDAC6","entrezGeneId":10013},{"hugoGeneSymbol":"HDAC7","entrezGeneId":51564},{"hugoGeneSymbol":"HDAC8","entrezGeneId":55869},{"hugoGeneSymbol":"HDAC9","entrezGeneId":9734},{"hugoGeneSymbol":"HDC","entrezGeneId":3067},{"hugoGeneSymbol":"HDDC2","entrezGeneId":51020},{"hugoGeneSymbol":"HDDC3","entrezGeneId":374659},{"hugoGeneSymbol":"HDGF","entrezGeneId":3068},{"hugoGeneSymbol":"HDGFL1","entrezGeneId":154150},{"hugoGeneSymbol":"HDGFL2","entrezGeneId":84717},{"hugoGeneSymbol":"HDGFL3","entrezGeneId":50810},{"hugoGeneSymbol":"HDGFP1","entrezGeneId":474167},{"hugoGeneSymbol":"HDHD2","entrezGeneId":84064},{"hugoGeneSymbol":"HDHD3","entrezGeneId":81932},{"hugoGeneSymbol":"HDHD5","entrezGeneId":27440},{"hugoGeneSymbol":"HDHD5-AS1","entrezGeneId":100130717},{"hugoGeneSymbol":"HDL3","entrezGeneId":53369},{"hugoGeneSymbol":"HDLBP","entrezGeneId":3069},{"hugoGeneSymbol":"HDLC3","entrezGeneId":353125},{"hugoGeneSymbol":"HDLCQ1","entrezGeneId":192144},{"hugoGeneSymbol":"HDLCQ14","entrezGeneId":56801},{"hugoGeneSymbol":"HDLCQ2","entrezGeneId":353127},{"hugoGeneSymbol":"HDLCQ4","entrezGeneId":100188806},{"hugoGeneSymbol":"HDLCQ5","entrezGeneId":100188818},{"hugoGeneSymbol":"HDLCQ6","entrezGeneId":100188819},{"hugoGeneSymbol":"HDPA","entrezGeneId":50829},{"hugoGeneSymbol":"HDX","entrezGeneId":139324},{"hugoGeneSymbol":"HEATR1","entrezGeneId":55127},{"hugoGeneSymbol":"HEATR3","entrezGeneId":55027},{"hugoGeneSymbol":"HEATR4","entrezGeneId":399671},{"hugoGeneSymbol":"HEATR5A","entrezGeneId":25938},{"hugoGeneSymbol":"HEATR5B","entrezGeneId":54497},{"hugoGeneSymbol":"HEATR6","entrezGeneId":63897},{"hugoGeneSymbol":"HEATR9","entrezGeneId":256957},{"hugoGeneSymbol":"HEBP1","entrezGeneId":50865},{"hugoGeneSymbol":"HEBP2","entrezGeneId":23593},{"hugoGeneSymbol":"HECA","entrezGeneId":51696},{"hugoGeneSymbol":"HECTD1","entrezGeneId":25831},{"hugoGeneSymbol":"HECTD2","entrezGeneId":143279},{"hugoGeneSymbol":"HECTD2-AS1","entrezGeneId":100188947},{"hugoGeneSymbol":"HECTD3","entrezGeneId":79654},{"hugoGeneSymbol":"HECTD4","entrezGeneId":283450},{"hugoGeneSymbol":"HECW1","entrezGeneId":23072},{"hugoGeneSymbol":"HECW1-IT1","entrezGeneId":100127950},{"hugoGeneSymbol":"HECW2","entrezGeneId":57520},{"hugoGeneSymbol":"HEG1","entrezGeneId":57493},{"hugoGeneSymbol":"HEIH","entrezGeneId":100859930},{"hugoGeneSymbol":"HELB","entrezGeneId":92797},{"hugoGeneSymbol":"HELLPAR","entrezGeneId":101101692},{"hugoGeneSymbol":"HELLS","entrezGeneId":3070},{"hugoGeneSymbol":"HELQ","entrezGeneId":113510},{"hugoGeneSymbol":"HELT","entrezGeneId":391723},{"hugoGeneSymbol":"HELZ","entrezGeneId":9931},{"hugoGeneSymbol":"HELZ2","entrezGeneId":85441},{"hugoGeneSymbol":"HEMC","entrezGeneId":7909},{"hugoGeneSymbol":"HEMGN","entrezGeneId":55363},{"hugoGeneSymbol":"HEMK1","entrezGeneId":51409},{"hugoGeneSymbol":"HENMT1","entrezGeneId":113802},{"hugoGeneSymbol":"HEPACAM","entrezGeneId":220296},{"hugoGeneSymbol":"HEPACAM2","entrezGeneId":253012},{"hugoGeneSymbol":"HEPH","entrezGeneId":9843},{"hugoGeneSymbol":"HEPHL1","entrezGeneId":341208},{"hugoGeneSymbol":"HEPN1","entrezGeneId":641654},{"hugoGeneSymbol":"HERC1","entrezGeneId":8925},{"hugoGeneSymbol":"HERC2","entrezGeneId":8924},{"hugoGeneSymbol":"HERC2P1","entrezGeneId":8917},{"hugoGeneSymbol":"HERC2P10","entrezGeneId":390561},{"hugoGeneSymbol":"HERC2P11","entrezGeneId":100996738},{"hugoGeneSymbol":"HERC2P2","entrezGeneId":400322},{"hugoGeneSymbol":"HERC2P3","entrezGeneId":283755},{"hugoGeneSymbol":"HERC2P4","entrezGeneId":100289574},{"hugoGeneSymbol":"HERC2P5","entrezGeneId":388254},{"hugoGeneSymbol":"HERC2P6","entrezGeneId":8918},{"hugoGeneSymbol":"HERC2P7","entrezGeneId":100132101},{"hugoGeneSymbol":"HERC2P8","entrezGeneId":440366},{"hugoGeneSymbol":"HERC2P9","entrezGeneId":440248},{"hugoGeneSymbol":"HERC3","entrezGeneId":8916},{"hugoGeneSymbol":"HERC4","entrezGeneId":26091},{"hugoGeneSymbol":"HERC5","entrezGeneId":51191},{"hugoGeneSymbol":"HERC6","entrezGeneId":55008},{"hugoGeneSymbol":"HERPUD1","entrezGeneId":9709},{"hugoGeneSymbol":"HERPUD2","entrezGeneId":64224},{"hugoGeneSymbol":"HERV.E-PTN","entrezGeneId":111089943},{"hugoGeneSymbol":"HES1","entrezGeneId":3280},{"hugoGeneSymbol":"HES2","entrezGeneId":54626},{"hugoGeneSymbol":"HES3","entrezGeneId":390992},{"hugoGeneSymbol":"HES4","entrezGeneId":57801},{"hugoGeneSymbol":"HES5","entrezGeneId":388585},{"hugoGeneSymbol":"HES6","entrezGeneId":55502},{"hugoGeneSymbol":"HES7","entrezGeneId":84667},{"hugoGeneSymbol":"HESX1","entrezGeneId":8820},{"hugoGeneSymbol":"HEXA","entrezGeneId":3073},{"hugoGeneSymbol":"HEXA-AS1","entrezGeneId":80072},{"hugoGeneSymbol":"HEXB","entrezGeneId":3074},{"hugoGeneSymbol":"HEXDC","entrezGeneId":284004},{"hugoGeneSymbol":"HEXDC-IT1","entrezGeneId":100505970},{"hugoGeneSymbol":"HEXIM1","entrezGeneId":10614},{"hugoGeneSymbol":"HEXIM2","entrezGeneId":124790},{"hugoGeneSymbol":"HEY","entrezGeneId":100188776},{"hugoGeneSymbol":"HEY1","entrezGeneId":23462},{"hugoGeneSymbol":"HEY2","entrezGeneId":23493},{"hugoGeneSymbol":"HEYL","entrezGeneId":26508},{"hugoGeneSymbol":"HFE","entrezGeneId":3077},{"hugoGeneSymbol":"HFM","entrezGeneId":170474},{"hugoGeneSymbol":"HFM1","entrezGeneId":164045},{"hugoGeneSymbol":"HGC6.3","entrezGeneId":100128124},{"hugoGeneSymbol":"HGD","entrezGeneId":3081},{"hugoGeneSymbol":"HGF","entrezGeneId":3082},{"hugoGeneSymbol":"HGFAC","entrezGeneId":3083},{"hugoGeneSymbol":"HGH1","entrezGeneId":51236},{"hugoGeneSymbol":"HGS","entrezGeneId":9146},{"hugoGeneSymbol":"HGSNAT","entrezGeneId":138050},{"hugoGeneSymbol":"HHAT","entrezGeneId":55733},{"hugoGeneSymbol":"HHATL","entrezGeneId":57467},{"hugoGeneSymbol":"HHATL-AS1","entrezGeneId":100874044},{"hugoGeneSymbol":"HHC2:065915","entrezGeneId":111258503},{"hugoGeneSymbol":"HHC2:065944","entrezGeneId":111258504},{"hugoGeneSymbol":"HHC2:066104","entrezGeneId":111258513},{"hugoGeneSymbol":"HHC2:066522","entrezGeneId":110120780},{"hugoGeneSymbol":"HHC2:066588","entrezGeneId":111258505},{"hugoGeneSymbol":"HHC2:066628","entrezGeneId":111258506},{"hugoGeneSymbol":"HHC2:066644","entrezGeneId":111258514},{"hugoGeneSymbol":"HHC2:066650","entrezGeneId":111258507},{"hugoGeneSymbol":"HHC2:066659","entrezGeneId":111258508},{"hugoGeneSymbol":"HHC2:066683","entrezGeneId":111258515},{"hugoGeneSymbol":"HHC2:067347","entrezGeneId":111258511},{"hugoGeneSymbol":"HHCM","entrezGeneId":10639},{"hugoGeneSymbol":"HHEX","entrezGeneId":3087},{"hugoGeneSymbol":"HHIP","entrezGeneId":64399},{"hugoGeneSymbol":"HHIP-AS1","entrezGeneId":646576},{"hugoGeneSymbol":"HHIPL1","entrezGeneId":84439},{"hugoGeneSymbol":"HHIPL2","entrezGeneId":79802},{"hugoGeneSymbol":"HHLA1","entrezGeneId":10086},{"hugoGeneSymbol":"HHLA2","entrezGeneId":11148},{"hugoGeneSymbol":"HHLA3","entrezGeneId":11147},{"hugoGeneSymbol":"HHPP","entrezGeneId":100861529},{"hugoGeneSymbol":"HHT3","entrezGeneId":780903},{"hugoGeneSymbol":"HHT4","entrezGeneId":791087},{"hugoGeneSymbol":"HHV8S","entrezGeneId":101056702},{"hugoGeneSymbol":"HIBADH","entrezGeneId":11112},{"hugoGeneSymbol":"HIBCH","entrezGeneId":26275},{"hugoGeneSymbol":"HIC1","entrezGeneId":3090},{"hugoGeneSymbol":"HIC2","entrezGeneId":23119},{"hugoGeneSymbol":"HID1","entrezGeneId":283987},{"hugoGeneSymbol":"HID1-AS1","entrezGeneId":102723641},{"hugoGeneSymbol":"HIF1A","entrezGeneId":3091},{"hugoGeneSymbol":"HIF1A-AS1","entrezGeneId":100750246},{"hugoGeneSymbol":"HIF1A-AS2","entrezGeneId":100750247},{"hugoGeneSymbol":"HIF1AN","entrezGeneId":55662},{"hugoGeneSymbol":"HIF1AP1","entrezGeneId":100874523},{"hugoGeneSymbol":"HIF3A","entrezGeneId":64344},{"hugoGeneSymbol":"HIGD1A","entrezGeneId":25994},{"hugoGeneSymbol":"HIGD1AP1","entrezGeneId":100129086},{"hugoGeneSymbol":"HIGD1AP10","entrezGeneId":100287960},{"hugoGeneSymbol":"HIGD1AP11","entrezGeneId":100874453},{"hugoGeneSymbol":"HIGD1AP12","entrezGeneId":100130383},{"hugoGeneSymbol":"HIGD1AP13","entrezGeneId":100874454},{"hugoGeneSymbol":"HIGD1AP14","entrezGeneId":100874455},{"hugoGeneSymbol":"HIGD1AP15","entrezGeneId":100289605},{"hugoGeneSymbol":"HIGD1AP16","entrezGeneId":100874476},{"hugoGeneSymbol":"HIGD1AP17","entrezGeneId":100874477},{"hugoGeneSymbol":"HIGD1AP18","entrezGeneId":100874456},{"hugoGeneSymbol":"HIGD1AP2","entrezGeneId":100874450},{"hugoGeneSymbol":"HIGD1AP3","entrezGeneId":100859920},{"hugoGeneSymbol":"HIGD1AP4","entrezGeneId":100874435},{"hugoGeneSymbol":"HIGD1AP5","entrezGeneId":100289300},{"hugoGeneSymbol":"HIGD1AP6","entrezGeneId":100874436},{"hugoGeneSymbol":"HIGD1AP7","entrezGeneId":100874437},{"hugoGeneSymbol":"HIGD1AP8","entrezGeneId":100874451},{"hugoGeneSymbol":"HIGD1AP9","entrezGeneId":100874452},{"hugoGeneSymbol":"HIGD1B","entrezGeneId":51751},{"hugoGeneSymbol":"HIGD1C","entrezGeneId":613227},{"hugoGeneSymbol":"HIGD2A","entrezGeneId":192286},{"hugoGeneSymbol":"HIGD2B","entrezGeneId":123346},{"hugoGeneSymbol":"HIKESHI","entrezGeneId":51501},{"hugoGeneSymbol":"HILPDA","entrezGeneId":29923},{"hugoGeneSymbol":"HILS1","entrezGeneId":373861},{"hugoGeneSymbol":"HINFP","entrezGeneId":25988},{"hugoGeneSymbol":"HINT1","entrezGeneId":3094},{"hugoGeneSymbol":"HINT1P1","entrezGeneId":730647},{"hugoGeneSymbol":"HINT1P2","entrezGeneId":100233146},{"hugoGeneSymbol":"HINT2","entrezGeneId":84681},{"hugoGeneSymbol":"HINT2P1","entrezGeneId":101929471},{"hugoGeneSymbol":"HINT3","entrezGeneId":135114},{"hugoGeneSymbol":"HIP1","entrezGeneId":3092},{"hugoGeneSymbol":"HIP1R","entrezGeneId":9026},{"hugoGeneSymbol":"HIPK1","entrezGeneId":204851},{"hugoGeneSymbol":"HIPK1-AS1","entrezGeneId":101928846},{"hugoGeneSymbol":"HIPK2","entrezGeneId":28996},{"hugoGeneSymbol":"HIPK3","entrezGeneId":10114},{"hugoGeneSymbol":"HIPK4","entrezGeneId":147746},{"hugoGeneSymbol":"HIRA","entrezGeneId":7290},{"hugoGeneSymbol":"HIRAP1","entrezGeneId":100422545},{"hugoGeneSymbol":"HIRIP3","entrezGeneId":8479},{"hugoGeneSymbol":"HIST1H1A","entrezGeneId":3024},{"hugoGeneSymbol":"HIST1H1B","entrezGeneId":3009},{"hugoGeneSymbol":"HIST1H1C","entrezGeneId":3006},{"hugoGeneSymbol":"HIST1H1D","entrezGeneId":3007},{"hugoGeneSymbol":"HIST1H1E","entrezGeneId":3008},{"hugoGeneSymbol":"HIST1H1PS1","entrezGeneId":387325},{"hugoGeneSymbol":"HIST1H1PS2","entrezGeneId":10338},{"hugoGeneSymbol":"HIST1H1T","entrezGeneId":3010},{"hugoGeneSymbol":"HIST1H2AA","entrezGeneId":221613},{"hugoGeneSymbol":"HIST1H2AB","entrezGeneId":8335},{"hugoGeneSymbol":"HIST1H2AC","entrezGeneId":8334},{"hugoGeneSymbol":"HIST1H2AD","entrezGeneId":3013},{"hugoGeneSymbol":"HIST1H2AE","entrezGeneId":3012},{"hugoGeneSymbol":"HIST1H2AG","entrezGeneId":8969},{"hugoGeneSymbol":"HIST1H2AH","entrezGeneId":85235},{"hugoGeneSymbol":"HIST1H2AI","entrezGeneId":8329},{"hugoGeneSymbol":"HIST1H2AJ","entrezGeneId":8331},{"hugoGeneSymbol":"HIST1H2AK","entrezGeneId":8330},{"hugoGeneSymbol":"HIST1H2AL","entrezGeneId":8332},{"hugoGeneSymbol":"HIST1H2AM","entrezGeneId":8336},{"hugoGeneSymbol":"HIST1H2APS1","entrezGeneId":387319},{"hugoGeneSymbol":"HIST1H2APS2","entrezGeneId":85303},{"hugoGeneSymbol":"HIST1H2APS3","entrezGeneId":387323},{"hugoGeneSymbol":"HIST1H2APS4","entrezGeneId":8333},{"hugoGeneSymbol":"HIST1H2APS5","entrezGeneId":10341},{"hugoGeneSymbol":"HIST1H2APS6","entrezGeneId":100509927},{"hugoGeneSymbol":"HIST1H2BA","entrezGeneId":255626},{"hugoGeneSymbol":"HIST1H2BB","entrezGeneId":3018},{"hugoGeneSymbol":"HIST1H2BC","entrezGeneId":8347},{"hugoGeneSymbol":"HIST1H2BD","entrezGeneId":3017},{"hugoGeneSymbol":"HIST1H2BE","entrezGeneId":8344},{"hugoGeneSymbol":"HIST1H2BF","entrezGeneId":8343},{"hugoGeneSymbol":"HIST1H2BG","entrezGeneId":8339},{"hugoGeneSymbol":"HIST1H2BH","entrezGeneId":8345},{"hugoGeneSymbol":"HIST1H2BI","entrezGeneId":8346},{"hugoGeneSymbol":"HIST1H2BJ","entrezGeneId":8970},{"hugoGeneSymbol":"HIST1H2BK","entrezGeneId":85236},{"hugoGeneSymbol":"HIST1H2BL","entrezGeneId":8340},{"hugoGeneSymbol":"HIST1H2BM","entrezGeneId":8342},{"hugoGeneSymbol":"HIST1H2BN","entrezGeneId":8341},{"hugoGeneSymbol":"HIST1H2BO","entrezGeneId":8348},{"hugoGeneSymbol":"HIST1H2BPS1","entrezGeneId":100288742},{"hugoGeneSymbol":"HIST1H2BPS2","entrezGeneId":10340},{"hugoGeneSymbol":"HIST1H2BPS3","entrezGeneId":100820735},{"hugoGeneSymbol":"HIST1H3A","entrezGeneId":8350},{"hugoGeneSymbol":"HIST1H3B","entrezGeneId":8358},{"hugoGeneSymbol":"HIST1H3C","entrezGeneId":8352},{"hugoGeneSymbol":"HIST1H3D","entrezGeneId":8351},{"hugoGeneSymbol":"HIST1H3E","entrezGeneId":8353},{"hugoGeneSymbol":"HIST1H3F","entrezGeneId":8968},{"hugoGeneSymbol":"HIST1H3G","entrezGeneId":8355},{"hugoGeneSymbol":"HIST1H3H","entrezGeneId":8357},{"hugoGeneSymbol":"HIST1H3I","entrezGeneId":8354},{"hugoGeneSymbol":"HIST1H3J","entrezGeneId":8356},{"hugoGeneSymbol":"HIST1H3PS1","entrezGeneId":100289545},{"hugoGeneSymbol":"HIST1H4A","entrezGeneId":8359},{"hugoGeneSymbol":"HIST1H4B","entrezGeneId":8366},{"hugoGeneSymbol":"HIST1H4C","entrezGeneId":8364},{"hugoGeneSymbol":"HIST1H4D","entrezGeneId":8360},{"hugoGeneSymbol":"HIST1H4E","entrezGeneId":8367},{"hugoGeneSymbol":"HIST1H4F","entrezGeneId":8361},{"hugoGeneSymbol":"HIST1H4G","entrezGeneId":8369},{"hugoGeneSymbol":"HIST1H4H","entrezGeneId":8365},{"hugoGeneSymbol":"HIST1H4I","entrezGeneId":8294},{"hugoGeneSymbol":"HIST1H4J","entrezGeneId":8363},{"hugoGeneSymbol":"HIST1H4K","entrezGeneId":8362},{"hugoGeneSymbol":"HIST1H4L","entrezGeneId":8368},{"hugoGeneSymbol":"HIST1H4PS1","entrezGeneId":10337},{"hugoGeneSymbol":"HIST2H2AA3","entrezGeneId":8337},{"hugoGeneSymbol":"HIST2H2AA4","entrezGeneId":723790},{"hugoGeneSymbol":"HIST2H2AB","entrezGeneId":317772},{"hugoGeneSymbol":"HIST2H2AC","entrezGeneId":8338},{"hugoGeneSymbol":"HIST2H2BA","entrezGeneId":337875},{"hugoGeneSymbol":"HIST2H2BB","entrezGeneId":338391},{"hugoGeneSymbol":"HIST2H2BC","entrezGeneId":337873},{"hugoGeneSymbol":"HIST2H2BD","entrezGeneId":337874},{"hugoGeneSymbol":"HIST2H2BE","entrezGeneId":8349},{"hugoGeneSymbol":"HIST2H2BF","entrezGeneId":440689},{"hugoGeneSymbol":"HIST2H3A","entrezGeneId":333932},{"hugoGeneSymbol":"HIST2H3C","entrezGeneId":126961},{"hugoGeneSymbol":"HIST2H3D","entrezGeneId":653604},{"hugoGeneSymbol":"HIST2H3DP1","entrezGeneId":106479023},{"hugoGeneSymbol":"HIST2H3PS2","entrezGeneId":440686},{"hugoGeneSymbol":"HIST2H4A","entrezGeneId":8370},{"hugoGeneSymbol":"HIST2H4B","entrezGeneId":554313},{"hugoGeneSymbol":"HIST3H2A","entrezGeneId":92815},{"hugoGeneSymbol":"HIST3H2BA","entrezGeneId":337872},{"hugoGeneSymbol":"HIST3H2BB","entrezGeneId":128312},{"hugoGeneSymbol":"HIST3H3","entrezGeneId":8290},{"hugoGeneSymbol":"HIST4H4","entrezGeneId":121504},{"hugoGeneSymbol":"HIVEP1","entrezGeneId":3096},{"hugoGeneSymbol":"HIVEP2","entrezGeneId":3097},{"hugoGeneSymbol":"HIVEP3","entrezGeneId":59269},{"hugoGeneSymbol":"HJURP","entrezGeneId":55355},{"hugoGeneSymbol":"HJV","entrezGeneId":148738},{"hugoGeneSymbol":"HK1","entrezGeneId":3098},{"hugoGeneSymbol":"HK2","entrezGeneId":3099},{"hugoGeneSymbol":"HK2P1","entrezGeneId":642546},{"hugoGeneSymbol":"HK3","entrezGeneId":3101},{"hugoGeneSymbol":"HKDC1","entrezGeneId":80201},{"hugoGeneSymbol":"HKR1","entrezGeneId":284459},{"hugoGeneSymbol":"HLA-A","entrezGeneId":3105},{"hugoGeneSymbol":"HLA-B","entrezGeneId":3106},{"hugoGeneSymbol":"HLA-C","entrezGeneId":3107},{"hugoGeneSymbol":"HLA-DMA","entrezGeneId":3108},{"hugoGeneSymbol":"HLA-DMB","entrezGeneId":3109},{"hugoGeneSymbol":"HLA-DOA","entrezGeneId":3111},{"hugoGeneSymbol":"HLA-DOB","entrezGeneId":3112},{"hugoGeneSymbol":"HLA-DPA1","entrezGeneId":3113},{"hugoGeneSymbol":"HLA-DPA2","entrezGeneId":646702},{"hugoGeneSymbol":"HLA-DPA3","entrezGeneId":267013},{"hugoGeneSymbol":"HLA-DPB1","entrezGeneId":3115},{"hugoGeneSymbol":"HLA-DPB2","entrezGeneId":3116},{"hugoGeneSymbol":"HLA-DQA1","entrezGeneId":3117},{"hugoGeneSymbol":"HLA-DQA2","entrezGeneId":3118},{"hugoGeneSymbol":"HLA-DQB1","entrezGeneId":3119},{"hugoGeneSymbol":"HLA-DQB1-AS1","entrezGeneId":106480429},{"hugoGeneSymbol":"HLA-DQB2","entrezGeneId":3120},{"hugoGeneSymbol":"HLA-DQB3","entrezGeneId":3121},{"hugoGeneSymbol":"HLA-DRA","entrezGeneId":3122},{"hugoGeneSymbol":"HLA-DRB1","entrezGeneId":3123},{"hugoGeneSymbol":"HLA-DRB2","entrezGeneId":3124},{"hugoGeneSymbol":"HLA-DRB3","entrezGeneId":3125},{"hugoGeneSymbol":"HLA-DRB4","entrezGeneId":3126},{"hugoGeneSymbol":"HLA-DRB5","entrezGeneId":3127},{"hugoGeneSymbol":"HLA-DRB6","entrezGeneId":3128},{"hugoGeneSymbol":"HLA-DRB7","entrezGeneId":3129},{"hugoGeneSymbol":"HLA-DRB8","entrezGeneId":3130},{"hugoGeneSymbol":"HLA-DRB9","entrezGeneId":3132},{"hugoGeneSymbol":"HLA-E","entrezGeneId":3133},{"hugoGeneSymbol":"HLA-F","entrezGeneId":3134},{"hugoGeneSymbol":"HLA-F-AS1","entrezGeneId":285830},{"hugoGeneSymbol":"HLA-G","entrezGeneId":3135},{"hugoGeneSymbol":"HLA-H","entrezGeneId":3136},{"hugoGeneSymbol":"HLA-J","entrezGeneId":3137},{"hugoGeneSymbol":"HLA-K","entrezGeneId":3138},{"hugoGeneSymbol":"HLA-L","entrezGeneId":3139},{"hugoGeneSymbol":"HLA-N","entrezGeneId":267014},{"hugoGeneSymbol":"HLA-P","entrezGeneId":352963},{"hugoGeneSymbol":"HLA-S","entrezGeneId":267015},{"hugoGeneSymbol":"HLA-T","entrezGeneId":352964},{"hugoGeneSymbol":"HLA-U","entrezGeneId":352965},{"hugoGeneSymbol":"HLA-V","entrezGeneId":352962},{"hugoGeneSymbol":"HLA-W","entrezGeneId":352966},{"hugoGeneSymbol":"HLA-X","entrezGeneId":267016},{"hugoGeneSymbol":"HLA-Y","entrezGeneId":100127173},{"hugoGeneSymbol":"HLA-Z","entrezGeneId":267017},{"hugoGeneSymbol":"HLCS","entrezGeneId":3141},{"hugoGeneSymbol":"HLCS-IT1","entrezGeneId":100874294},{"hugoGeneSymbol":"HLF","entrezGeneId":3131},{"hugoGeneSymbol":"HLFP1","entrezGeneId":100873813},{"hugoGeneSymbol":"HLP","entrezGeneId":100188397},{"hugoGeneSymbol":"HLTF","entrezGeneId":6596},{"hugoGeneSymbol":"HLTF-AS1","entrezGeneId":100873945},{"hugoGeneSymbol":"HLX","entrezGeneId":3142},{"hugoGeneSymbol":"HLX-AS1","entrezGeneId":100873924},{"hugoGeneSymbol":"HM13","entrezGeneId":81502},{"hugoGeneSymbol":"HM13-AS1","entrezGeneId":100874042},{"hugoGeneSymbol":"HM13-IT1","entrezGeneId":106480432},{"hugoGeneSymbol":"HMBOX1","entrezGeneId":79618},{"hugoGeneSymbol":"HMBOX1-IT1","entrezGeneId":106481795},{"hugoGeneSymbol":"HMBS","entrezGeneId":3145},{"hugoGeneSymbol":"HMCES","entrezGeneId":56941},{"hugoGeneSymbol":"HMCN1","entrezGeneId":83872},{"hugoGeneSymbol":"HMCN2","entrezGeneId":256158},{"hugoGeneSymbol":"HMG20A","entrezGeneId":10363},{"hugoGeneSymbol":"HMG20B","entrezGeneId":10362},{"hugoGeneSymbol":"HMGA1","entrezGeneId":3159},{"hugoGeneSymbol":"HMGA1P1","entrezGeneId":203477},{"hugoGeneSymbol":"HMGA1P2","entrezGeneId":171559},{"hugoGeneSymbol":"HMGA1P3","entrezGeneId":144712},{"hugoGeneSymbol":"HMGA1P4","entrezGeneId":100506080},{"hugoGeneSymbol":"HMGA1P5","entrezGeneId":387063},{"hugoGeneSymbol":"HMGA1P6","entrezGeneId":100130029},{"hugoGeneSymbol":"HMGA1P7","entrezGeneId":387065},{"hugoGeneSymbol":"HMGA1P8","entrezGeneId":100130009},{"hugoGeneSymbol":"HMGA2","entrezGeneId":8091},{"hugoGeneSymbol":"HMGB1","entrezGeneId":3146},{"hugoGeneSymbol":"HMGB1P1","entrezGeneId":10357},{"hugoGeneSymbol":"HMGB1P10","entrezGeneId":100130561},{"hugoGeneSymbol":"HMGB1P11","entrezGeneId":100419996},{"hugoGeneSymbol":"HMGB1P12","entrezGeneId":100129723},{"hugoGeneSymbol":"HMGB1P13","entrezGeneId":100129706},{"hugoGeneSymbol":"HMGB1P14","entrezGeneId":319130},{"hugoGeneSymbol":"HMGB1P15","entrezGeneId":644129},{"hugoGeneSymbol":"HMGB1P16","entrezGeneId":646577},{"hugoGeneSymbol":"HMGB1P17","entrezGeneId":100419974},{"hugoGeneSymbol":"HMGB1P18","entrezGeneId":646526},{"hugoGeneSymbol":"HMGB1P19","entrezGeneId":100419979},{"hugoGeneSymbol":"HMGB1P20","entrezGeneId":100128227},{"hugoGeneSymbol":"HMGB1P21","entrezGeneId":100419947},{"hugoGeneSymbol":"HMGB1P22","entrezGeneId":644659},{"hugoGeneSymbol":"HMGB1P23","entrezGeneId":100873891},{"hugoGeneSymbol":"HMGB1P24","entrezGeneId":100420063},{"hugoGeneSymbol":"HMGB1P25","entrezGeneId":644651},{"hugoGeneSymbol":"HMGB1P26","entrezGeneId":645201},{"hugoGeneSymbol":"HMGB1P27","entrezGeneId":100527948},{"hugoGeneSymbol":"HMGB1P28","entrezGeneId":100133310},{"hugoGeneSymbol":"HMGB1P29","entrezGeneId":100873892},{"hugoGeneSymbol":"HMGB1P3","entrezGeneId":10356},{"hugoGeneSymbol":"HMGB1P30","entrezGeneId":100873893},{"hugoGeneSymbol":"HMGB1P31","entrezGeneId":100873894},{"hugoGeneSymbol":"HMGB1P32","entrezGeneId":100419995},{"hugoGeneSymbol":"HMGB1P33","entrezGeneId":100873905},{"hugoGeneSymbol":"HMGB1P34","entrezGeneId":100420100},{"hugoGeneSymbol":"HMGB1P35","entrezGeneId":100419950},{"hugoGeneSymbol":"HMGB1P36","entrezGeneId":100419968},{"hugoGeneSymbol":"HMGB1P37","entrezGeneId":100132863},{"hugoGeneSymbol":"HMGB1P38","entrezGeneId":100873895},{"hugoGeneSymbol":"HMGB1P39","entrezGeneId":100419972},{"hugoGeneSymbol":"HMGB1P4","entrezGeneId":10355},{"hugoGeneSymbol":"HMGB1P40","entrezGeneId":100506595},{"hugoGeneSymbol":"HMGB1P41","entrezGeneId":100873896},{"hugoGeneSymbol":"HMGB1P42","entrezGeneId":100873906},{"hugoGeneSymbol":"HMGB1P43","entrezGeneId":100420041},{"hugoGeneSymbol":"HMGB1P44","entrezGeneId":100130279},{"hugoGeneSymbol":"HMGB1P45","entrezGeneId":100129919},{"hugoGeneSymbol":"HMGB1P46","entrezGeneId":100419978},{"hugoGeneSymbol":"HMGB1P47","entrezGeneId":100873897},{"hugoGeneSymbol":"HMGB1P48","entrezGeneId":100128639},{"hugoGeneSymbol":"HMGB1P49","entrezGeneId":100420013},{"hugoGeneSymbol":"HMGB1P5","entrezGeneId":10354},{"hugoGeneSymbol":"HMGB1P50","entrezGeneId":109729125},{"hugoGeneSymbol":"HMGB1P51","entrezGeneId":109729159},{"hugoGeneSymbol":"HMGB1P6","entrezGeneId":645292},{"hugoGeneSymbol":"HMGB1P7","entrezGeneId":100420044},{"hugoGeneSymbol":"HMGB1P8","entrezGeneId":692147},{"hugoGeneSymbol":"HMGB1P9","entrezGeneId":654503},{"hugoGeneSymbol":"HMGB2","entrezGeneId":3148},{"hugoGeneSymbol":"HMGB2P1","entrezGeneId":729119},{"hugoGeneSymbol":"HMGB3","entrezGeneId":3149},{"hugoGeneSymbol":"HMGB3P1","entrezGeneId":128872},{"hugoGeneSymbol":"HMGB3P10","entrezGeneId":100129320},{"hugoGeneSymbol":"HMGB3P11","entrezGeneId":644442},{"hugoGeneSymbol":"HMGB3P12","entrezGeneId":100873898},{"hugoGeneSymbol":"HMGB3P13","entrezGeneId":100289158},{"hugoGeneSymbol":"HMGB3P14","entrezGeneId":100873899},{"hugoGeneSymbol":"HMGB3P15","entrezGeneId":644429},{"hugoGeneSymbol":"HMGB3P16","entrezGeneId":100873900},{"hugoGeneSymbol":"HMGB3P17","entrezGeneId":100419948},{"hugoGeneSymbol":"HMGB3P18","entrezGeneId":644502},{"hugoGeneSymbol":"HMGB3P19","entrezGeneId":729635},{"hugoGeneSymbol":"HMGB3P2","entrezGeneId":128879},{"hugoGeneSymbol":"HMGB3P20","entrezGeneId":442661},{"hugoGeneSymbol":"HMGB3P21","entrezGeneId":100873901},{"hugoGeneSymbol":"HMGB3P22","entrezGeneId":729595},{"hugoGeneSymbol":"HMGB3P23","entrezGeneId":100288563},{"hugoGeneSymbol":"HMGB3P24","entrezGeneId":646993},{"hugoGeneSymbol":"HMGB3P25","entrezGeneId":100873908},{"hugoGeneSymbol":"HMGB3P26","entrezGeneId":100130405},{"hugoGeneSymbol":"HMGB3P27","entrezGeneId":441795},{"hugoGeneSymbol":"HMGB3P28","entrezGeneId":100131036},{"hugoGeneSymbol":"HMGB3P29","entrezGeneId":100420015},{"hugoGeneSymbol":"HMGB3P3","entrezGeneId":100419949},{"hugoGeneSymbol":"HMGB3P30","entrezGeneId":203510},{"hugoGeneSymbol":"HMGB3P31","entrezGeneId":392545},{"hugoGeneSymbol":"HMGB3P32","entrezGeneId":100507549},{"hugoGeneSymbol":"HMGB3P4","entrezGeneId":100873890},{"hugoGeneSymbol":"HMGB3P5","entrezGeneId":645360},{"hugoGeneSymbol":"HMGB3P6","entrezGeneId":729952},{"hugoGeneSymbol":"HMGB3P7","entrezGeneId":100420033},{"hugoGeneSymbol":"HMGB3P8","entrezGeneId":100506039},{"hugoGeneSymbol":"HMGB3P9","entrezGeneId":100873879},{"hugoGeneSymbol":"HMGB4","entrezGeneId":127540},{"hugoGeneSymbol":"HMGCL","entrezGeneId":3155},{"hugoGeneSymbol":"HMGCLL1","entrezGeneId":54511},{"hugoGeneSymbol":"HMGCR","entrezGeneId":3156},{"hugoGeneSymbol":"HMGCS1","entrezGeneId":3157},{"hugoGeneSymbol":"HMGCS2","entrezGeneId":3158},{"hugoGeneSymbol":"HMGN1","entrezGeneId":3150},{"hugoGeneSymbol":"HMGN1P1","entrezGeneId":319131},{"hugoGeneSymbol":"HMGN1P10","entrezGeneId":100874438},{"hugoGeneSymbol":"HMGN1P11","entrezGeneId":644534},{"hugoGeneSymbol":"HMGN1P12","entrezGeneId":106480725},{"hugoGeneSymbol":"HMGN1P13","entrezGeneId":100874439},{"hugoGeneSymbol":"HMGN1P14","entrezGeneId":100874440},{"hugoGeneSymbol":"HMGN1P15","entrezGeneId":100874441},{"hugoGeneSymbol":"HMGN1P16","entrezGeneId":100874442},{"hugoGeneSymbol":"HMGN1P17","entrezGeneId":100874443},{"hugoGeneSymbol":"HMGN1P18","entrezGeneId":100874444},{"hugoGeneSymbol":"HMGN1P19","entrezGeneId":100874445},{"hugoGeneSymbol":"HMGN1P2","entrezGeneId":54048},{"hugoGeneSymbol":"HMGN1P20","entrezGeneId":100874459},{"hugoGeneSymbol":"HMGN1P21","entrezGeneId":728325},{"hugoGeneSymbol":"HMGN1P22","entrezGeneId":100874460},{"hugoGeneSymbol":"HMGN1P23","entrezGeneId":100874461},{"hugoGeneSymbol":"HMGN1P24","entrezGeneId":100874462},{"hugoGeneSymbol":"HMGN1P25","entrezGeneId":100507124},{"hugoGeneSymbol":"HMGN1P26","entrezGeneId":100128015},{"hugoGeneSymbol":"HMGN1P27","entrezGeneId":100874463},{"hugoGeneSymbol":"HMGN1P28","entrezGeneId":100874464},{"hugoGeneSymbol":"HMGN1P29","entrezGeneId":100885865},{"hugoGeneSymbol":"HMGN1P3","entrezGeneId":100036574},{"hugoGeneSymbol":"HMGN1P30","entrezGeneId":100132992},{"hugoGeneSymbol":"HMGN1P31","entrezGeneId":728111},{"hugoGeneSymbol":"HMGN1P32","entrezGeneId":100874465},{"hugoGeneSymbol":"HMGN1P33","entrezGeneId":100874446},{"hugoGeneSymbol":"HMGN1P34","entrezGeneId":100874447},{"hugoGeneSymbol":"HMGN1P35","entrezGeneId":100874448},{"hugoGeneSymbol":"HMGN1P36","entrezGeneId":728851},{"hugoGeneSymbol":"HMGN1P37","entrezGeneId":728776},{"hugoGeneSymbol":"HMGN1P38","entrezGeneId":643790},{"hugoGeneSymbol":"HMGN1P4","entrezGeneId":100036575},{"hugoGeneSymbol":"HMGN1P5","entrezGeneId":100874429},{"hugoGeneSymbol":"HMGN1P6","entrezGeneId":100874430},{"hugoGeneSymbol":"HMGN1P7","entrezGeneId":100129555},{"hugoGeneSymbol":"HMGN1P8","entrezGeneId":100874431},{"hugoGeneSymbol":"HMGN1P9","entrezGeneId":100874410},{"hugoGeneSymbol":"HMGN2","entrezGeneId":3151},{"hugoGeneSymbol":"HMGN2P1","entrezGeneId":319132},{"hugoGeneSymbol":"HMGN2P10","entrezGeneId":23606},{"hugoGeneSymbol":"HMGN2P11","entrezGeneId":3152},{"hugoGeneSymbol":"HMGN2P12","entrezGeneId":3153},{"hugoGeneSymbol":"HMGN2P13","entrezGeneId":100289682},{"hugoGeneSymbol":"HMGN2P14","entrezGeneId":100874458},{"hugoGeneSymbol":"HMGN2P15","entrezGeneId":100288165},{"hugoGeneSymbol":"HMGN2P16","entrezGeneId":728234},{"hugoGeneSymbol":"HMGN2P17","entrezGeneId":100113373},{"hugoGeneSymbol":"HMGN2P18","entrezGeneId":648822},{"hugoGeneSymbol":"HMGN2P19","entrezGeneId":100874466},{"hugoGeneSymbol":"HMGN2P2","entrezGeneId":317726},{"hugoGeneSymbol":"HMGN2P20","entrezGeneId":646049},{"hugoGeneSymbol":"HMGN2P21","entrezGeneId":100874467},{"hugoGeneSymbol":"HMGN2P22","entrezGeneId":100874468},{"hugoGeneSymbol":"HMGN2P23","entrezGeneId":100874469},{"hugoGeneSymbol":"HMGN2P24","entrezGeneId":729505},{"hugoGeneSymbol":"HMGN2P25","entrezGeneId":729687},{"hugoGeneSymbol":"HMGN2P26","entrezGeneId":100874470},{"hugoGeneSymbol":"HMGN2P27","entrezGeneId":100874471},{"hugoGeneSymbol":"HMGN2P28","entrezGeneId":100128372},{"hugoGeneSymbol":"HMGN2P29","entrezGeneId":100874472},{"hugoGeneSymbol":"HMGN2P3","entrezGeneId":728632},{"hugoGeneSymbol":"HMGN2P30","entrezGeneId":100131183},{"hugoGeneSymbol":"HMGN2P31","entrezGeneId":645930},{"hugoGeneSymbol":"HMGN2P32","entrezGeneId":100874473},{"hugoGeneSymbol":"HMGN2P33","entrezGeneId":100874474},{"hugoGeneSymbol":"HMGN2P34","entrezGeneId":100874478},{"hugoGeneSymbol":"HMGN2P35","entrezGeneId":100874479},{"hugoGeneSymbol":"HMGN2P36","entrezGeneId":100874480},{"hugoGeneSymbol":"HMGN2P37","entrezGeneId":100874481},{"hugoGeneSymbol":"HMGN2P38","entrezGeneId":100874482},{"hugoGeneSymbol":"HMGN2P39","entrezGeneId":100874483},{"hugoGeneSymbol":"HMGN2P4","entrezGeneId":643744},{"hugoGeneSymbol":"HMGN2P40","entrezGeneId":100874484},{"hugoGeneSymbol":"HMGN2P41","entrezGeneId":729564},{"hugoGeneSymbol":"HMGN2P42","entrezGeneId":100874485},{"hugoGeneSymbol":"HMGN2P43","entrezGeneId":100874486},{"hugoGeneSymbol":"HMGN2P44","entrezGeneId":100874487},{"hugoGeneSymbol":"HMGN2P45","entrezGeneId":100874475},{"hugoGeneSymbol":"HMGN2P46","entrezGeneId":283651},{"hugoGeneSymbol":"HMGN2P47","entrezGeneId":106480791},{"hugoGeneSymbol":"HMGN2P5","entrezGeneId":727795},{"hugoGeneSymbol":"HMGN2P6","entrezGeneId":643872},{"hugoGeneSymbol":"HMGN2P7","entrezGeneId":644498},{"hugoGeneSymbol":"HMGN2P8","entrezGeneId":100288691},{"hugoGeneSymbol":"HMGN2P9","entrezGeneId":23605},{"hugoGeneSymbol":"HMGN3","entrezGeneId":9324},{"hugoGeneSymbol":"HMGN3-AS1","entrezGeneId":100288198},{"hugoGeneSymbol":"HMGN3P1","entrezGeneId":100289191},{"hugoGeneSymbol":"HMGN4","entrezGeneId":10473},{"hugoGeneSymbol":"HMGN5","entrezGeneId":79366},{"hugoGeneSymbol":"HMGXB3","entrezGeneId":22993},{"hugoGeneSymbol":"HMGXB4","entrezGeneId":10042},{"hugoGeneSymbol":"HMHB1","entrezGeneId":57824},{"hugoGeneSymbol":"HMMR","entrezGeneId":3161},{"hugoGeneSymbol":"HMMR-AS1","entrezGeneId":101927813},{"hugoGeneSymbol":"HMN7A","entrezGeneId":50952},{"hugoGeneSymbol":"HMNJ","entrezGeneId":80768},{"hugoGeneSymbol":"HMOX1","entrezGeneId":3162},{"hugoGeneSymbol":"HMOX2","entrezGeneId":3163},{"hugoGeneSymbol":"HMSD","entrezGeneId":284293},{"hugoGeneSymbol":"HMSN5","entrezGeneId":101059903},{"hugoGeneSymbol":"HMSNO","entrezGeneId":50989},{"hugoGeneSymbol":"HMU","entrezGeneId":50823},{"hugoGeneSymbol":"HMX1","entrezGeneId":3166},{"hugoGeneSymbol":"HMX2","entrezGeneId":3167},{"hugoGeneSymbol":"HMX3","entrezGeneId":340784},{"hugoGeneSymbol":"HNB1","entrezGeneId":54111},{"hugoGeneSymbol":"HNF1A","entrezGeneId":6927},{"hugoGeneSymbol":"HNF1A-AS1","entrezGeneId":283460},{"hugoGeneSymbol":"HNF1B","entrezGeneId":6928},{"hugoGeneSymbol":"HNF4A","entrezGeneId":3172},{"hugoGeneSymbol":"HNF4A-AS1","entrezGeneId":101927219},{"hugoGeneSymbol":"HNF4G","entrezGeneId":3174},{"hugoGeneSymbol":"HNF4GP1","entrezGeneId":100130462},{"hugoGeneSymbol":"HNFJ3","entrezGeneId":100689490},{"hugoGeneSymbol":"HNMT","entrezGeneId":3176},{"hugoGeneSymbol":"HNP1","entrezGeneId":574045},{"hugoGeneSymbol":"HNRNPA0","entrezGeneId":10949},{"hugoGeneSymbol":"HNRNPA1","entrezGeneId":3178},{"hugoGeneSymbol":"HNRNPA1L2","entrezGeneId":144983},{"hugoGeneSymbol":"HNRNPA1P1","entrezGeneId":645950},{"hugoGeneSymbol":"HNRNPA1P10","entrezGeneId":664709},{"hugoGeneSymbol":"HNRNPA1P11","entrezGeneId":100128044},{"hugoGeneSymbol":"HNRNPA1P12","entrezGeneId":644037},{"hugoGeneSymbol":"HNRNPA1P13","entrezGeneId":100131130},{"hugoGeneSymbol":"HNRNPA1P14","entrezGeneId":100421351},{"hugoGeneSymbol":"HNRNPA1P15","entrezGeneId":100421353},{"hugoGeneSymbol":"HNRNPA1P16","entrezGeneId":440396},{"hugoGeneSymbol":"HNRNPA1P17","entrezGeneId":100421376},{"hugoGeneSymbol":"HNRNPA1P18","entrezGeneId":100874400},{"hugoGeneSymbol":"HNRNPA1P19","entrezGeneId":100874402},{"hugoGeneSymbol":"HNRNPA1P2","entrezGeneId":100131609},{"hugoGeneSymbol":"HNRNPA1P20","entrezGeneId":344741},{"hugoGeneSymbol":"HNRNPA1P21","entrezGeneId":344697},{"hugoGeneSymbol":"HNRNPA1P22","entrezGeneId":729102},{"hugoGeneSymbol":"HNRNPA1P23","entrezGeneId":100130002},{"hugoGeneSymbol":"HNRNPA1P24","entrezGeneId":100874396},{"hugoGeneSymbol":"HNRNPA1P25","entrezGeneId":100131983},{"hugoGeneSymbol":"HNRNPA1P26","entrezGeneId":664722},{"hugoGeneSymbol":"HNRNPA1P27","entrezGeneId":664721},{"hugoGeneSymbol":"HNRNPA1P28","entrezGeneId":100288038},{"hugoGeneSymbol":"HNRNPA1P29","entrezGeneId":100421424},{"hugoGeneSymbol":"HNRNPA1P3","entrezGeneId":170524},{"hugoGeneSymbol":"HNRNPA1P30","entrezGeneId":440125},{"hugoGeneSymbol":"HNRNPA1P31","entrezGeneId":100506925},{"hugoGeneSymbol":"HNRNPA1P32","entrezGeneId":645940},{"hugoGeneSymbol":"HNRNPA1P33","entrezGeneId":728643},{"hugoGeneSymbol":"HNRNPA1P34","entrezGeneId":100996501},{"hugoGeneSymbol":"HNRNPA1P35","entrezGeneId":645691},{"hugoGeneSymbol":"HNRNPA1P36","entrezGeneId":100128836},{"hugoGeneSymbol":"HNRNPA1P37","entrezGeneId":100421379},{"hugoGeneSymbol":"HNRNPA1P38","entrezGeneId":100421384},{"hugoGeneSymbol":"HNRNPA1P39","entrezGeneId":402112},{"hugoGeneSymbol":"HNRNPA1P4","entrezGeneId":389674},{"hugoGeneSymbol":"HNRNPA1P40","entrezGeneId":100129920},{"hugoGeneSymbol":"HNRNPA1P41","entrezGeneId":100128701},{"hugoGeneSymbol":"HNRNPA1P42","entrezGeneId":100287266},{"hugoGeneSymbol":"HNRNPA1P43","entrezGeneId":400769},{"hugoGeneSymbol":"HNRNPA1P44","entrezGeneId":100421432},{"hugoGeneSymbol":"HNRNPA1P45","entrezGeneId":100130660},{"hugoGeneSymbol":"HNRNPA1P46","entrezGeneId":100421399},{"hugoGeneSymbol":"HNRNPA1P47","entrezGeneId":100287191},{"hugoGeneSymbol":"HNRNPA1P48","entrezGeneId":642659},{"hugoGeneSymbol":"HNRNPA1P49","entrezGeneId":106481663},{"hugoGeneSymbol":"HNRNPA1P5","entrezGeneId":100506712},{"hugoGeneSymbol":"HNRNPA1P50","entrezGeneId":728170},{"hugoGeneSymbol":"HNRNPA1P51","entrezGeneId":729366},{"hugoGeneSymbol":"HNRNPA1P52","entrezGeneId":645001},{"hugoGeneSymbol":"HNRNPA1P53","entrezGeneId":728732},{"hugoGeneSymbol":"HNRNPA1P54","entrezGeneId":100421398},{"hugoGeneSymbol":"HNRNPA1P55","entrezGeneId":642958},{"hugoGeneSymbol":"HNRNPA1P56","entrezGeneId":391670},{"hugoGeneSymbol":"HNRNPA1P57","entrezGeneId":101060039},{"hugoGeneSymbol":"HNRNPA1P58","entrezGeneId":100289286},{"hugoGeneSymbol":"HNRNPA1P59","entrezGeneId":730246},{"hugoGeneSymbol":"HNRNPA1P6","entrezGeneId":729423},{"hugoGeneSymbol":"HNRNPA1P60","entrezGeneId":120364},{"hugoGeneSymbol":"HNRNPA1P61","entrezGeneId":100288283},{"hugoGeneSymbol":"HNRNPA1P62","entrezGeneId":106480235},{"hugoGeneSymbol":"HNRNPA1P63","entrezGeneId":645436},{"hugoGeneSymbol":"HNRNPA1P64","entrezGeneId":100129325},{"hugoGeneSymbol":"HNRNPA1P65","entrezGeneId":106481664},{"hugoGeneSymbol":"HNRNPA1P66","entrezGeneId":391378},{"hugoGeneSymbol":"HNRNPA1P67","entrezGeneId":728019},{"hugoGeneSymbol":"HNRNPA1P68","entrezGeneId":100421397},{"hugoGeneSymbol":"HNRNPA1P69","entrezGeneId":105369973},{"hugoGeneSymbol":"HNRNPA1P7","entrezGeneId":388275},{"hugoGeneSymbol":"HNRNPA1P70","entrezGeneId":341333},{"hugoGeneSymbol":"HNRNPA1P71","entrezGeneId":100421433},{"hugoGeneSymbol":"HNRNPA1P72","entrezGeneId":106480236},{"hugoGeneSymbol":"HNRNPA1P73","entrezGeneId":100129606},{"hugoGeneSymbol":"HNRNPA1P74","entrezGeneId":100421430},{"hugoGeneSymbol":"HNRNPA1P76","entrezGeneId":106480675},{"hugoGeneSymbol":"HNRNPA1P77","entrezGeneId":100421378},{"hugoGeneSymbol":"HNRNPA1P8","entrezGeneId":402562},{"hugoGeneSymbol":"HNRNPA1P9","entrezGeneId":100421389},{"hugoGeneSymbol":"HNRNPA2B1","entrezGeneId":3181},{"hugoGeneSymbol":"HNRNPA3","entrezGeneId":220988},{"hugoGeneSymbol":"HNRNPA3P1","entrezGeneId":10151},{"hugoGeneSymbol":"HNRNPA3P10","entrezGeneId":100421413},{"hugoGeneSymbol":"HNRNPA3P11","entrezGeneId":100421431},{"hugoGeneSymbol":"HNRNPA3P12","entrezGeneId":100421395},{"hugoGeneSymbol":"HNRNPA3P13","entrezGeneId":441026},{"hugoGeneSymbol":"HNRNPA3P14","entrezGeneId":729817},{"hugoGeneSymbol":"HNRNPA3P15","entrezGeneId":106480234},{"hugoGeneSymbol":"HNRNPA3P16","entrezGeneId":100421451},{"hugoGeneSymbol":"HNRNPA3P2","entrezGeneId":170526},{"hugoGeneSymbol":"HNRNPA3P3","entrezGeneId":643689},{"hugoGeneSymbol":"HNRNPA3P4","entrezGeneId":389395},{"hugoGeneSymbol":"HNRNPA3P5","entrezGeneId":387933},{"hugoGeneSymbol":"HNRNPA3P6","entrezGeneId":653115},{"hugoGeneSymbol":"HNRNPA3P7","entrezGeneId":100421357},{"hugoGeneSymbol":"HNRNPA3P8","entrezGeneId":100129557},{"hugoGeneSymbol":"HNRNPA3P9","entrezGeneId":100421415},{"hugoGeneSymbol":"HNRNPAB","entrezGeneId":3182},{"hugoGeneSymbol":"HNRNPABP1","entrezGeneId":390294},{"hugoGeneSymbol":"HNRNPC","entrezGeneId":3183},{"hugoGeneSymbol":"HNRNPCL1","entrezGeneId":343069},{"hugoGeneSymbol":"HNRNPCL2","entrezGeneId":440563},{"hugoGeneSymbol":"HNRNPCL3","entrezGeneId":649330},{"hugoGeneSymbol":"HNRNPCL4","entrezGeneId":101060301},{"hugoGeneSymbol":"HNRNPCP1","entrezGeneId":319133},{"hugoGeneSymbol":"HNRNPCP10","entrezGeneId":100129229},{"hugoGeneSymbol":"HNRNPCP2","entrezGeneId":653447},{"hugoGeneSymbol":"HNRNPCP3","entrezGeneId":646956},{"hugoGeneSymbol":"HNRNPCP4","entrezGeneId":100421828},{"hugoGeneSymbol":"HNRNPCP6","entrezGeneId":100421794},{"hugoGeneSymbol":"HNRNPCP7","entrezGeneId":100127907},{"hugoGeneSymbol":"HNRNPCP8","entrezGeneId":100131842},{"hugoGeneSymbol":"HNRNPCP9","entrezGeneId":100130196},{"hugoGeneSymbol":"HNRNPD","entrezGeneId":3184},{"hugoGeneSymbol":"HNRNPDL","entrezGeneId":9987},{"hugoGeneSymbol":"HNRNPDLP1","entrezGeneId":100128595},{"hugoGeneSymbol":"HNRNPDLP2","entrezGeneId":100128061},{"hugoGeneSymbol":"HNRNPDLP3","entrezGeneId":106481662},{"hugoGeneSymbol":"HNRNPDLP4","entrezGeneId":100421657},{"hugoGeneSymbol":"HNRNPDP1","entrezGeneId":8251},{"hugoGeneSymbol":"HNRNPDP2","entrezGeneId":106481661},{"hugoGeneSymbol":"HNRNPF","entrezGeneId":3185},{"hugoGeneSymbol":"HNRNPFP1","entrezGeneId":644449},{"hugoGeneSymbol":"HNRNPH1","entrezGeneId":3187},{"hugoGeneSymbol":"HNRNPH1P1","entrezGeneId":100132803},{"hugoGeneSymbol":"HNRNPH1P2","entrezGeneId":100129368},{"hugoGeneSymbol":"HNRNPH1P3","entrezGeneId":402216},{"hugoGeneSymbol":"HNRNPH2","entrezGeneId":3188},{"hugoGeneSymbol":"HNRNPH3","entrezGeneId":3189},{"hugoGeneSymbol":"HNRNPH3P1","entrezGeneId":106480233},{"hugoGeneSymbol":"HNRNPK","entrezGeneId":3190},{"hugoGeneSymbol":"HNRNPKP1","entrezGeneId":389322},{"hugoGeneSymbol":"HNRNPKP2","entrezGeneId":389053},{"hugoGeneSymbol":"HNRNPKP3","entrezGeneId":399881},{"hugoGeneSymbol":"HNRNPKP4","entrezGeneId":644063},{"hugoGeneSymbol":"HNRNPKP5","entrezGeneId":100874385},{"hugoGeneSymbol":"HNRNPL","entrezGeneId":3191},{"hugoGeneSymbol":"HNRNPLL","entrezGeneId":92906},{"hugoGeneSymbol":"HNRNPLP1","entrezGeneId":442157},{"hugoGeneSymbol":"HNRNPLP2","entrezGeneId":644390},{"hugoGeneSymbol":"HNRNPM","entrezGeneId":4670},{"hugoGeneSymbol":"HNRNPMP1","entrezGeneId":645204},{"hugoGeneSymbol":"HNRNPMP2","entrezGeneId":390948},{"hugoGeneSymbol":"HNRNPR","entrezGeneId":10236},{"hugoGeneSymbol":"HNRNPRP1","entrezGeneId":100125387},{"hugoGeneSymbol":"HNRNPRP2","entrezGeneId":100421354},{"hugoGeneSymbol":"HNRNPRP3","entrezGeneId":100421323},{"hugoGeneSymbol":"HNRNPU","entrezGeneId":3192},{"hugoGeneSymbol":"HNRNPUL1","entrezGeneId":11100},{"hugoGeneSymbol":"HNRNPUL2","entrezGeneId":221092},{"hugoGeneSymbol":"HNRNPUL2-BSCL2","entrezGeneId":100534595},{"hugoGeneSymbol":"HNRNPUP1","entrezGeneId":319134},{"hugoGeneSymbol":"HOAC","entrezGeneId":3193},{"hugoGeneSymbol":"HOGA1","entrezGeneId":112817},{"hugoGeneSymbol":"HOMER1","entrezGeneId":9456},{"hugoGeneSymbol":"HOMER2","entrezGeneId":9455},{"hugoGeneSymbol":"HOMER2P1","entrezGeneId":317768},{"hugoGeneSymbol":"HOMER2P2","entrezGeneId":317769},{"hugoGeneSymbol":"HOMER3","entrezGeneId":9454},{"hugoGeneSymbol":"HOMER3-AS1","entrezGeneId":102724360},{"hugoGeneSymbol":"HOMEZ","entrezGeneId":57594},{"hugoGeneSymbol":"HOOK1","entrezGeneId":51361},{"hugoGeneSymbol":"HOOK2","entrezGeneId":29911},{"hugoGeneSymbol":"HOOK3","entrezGeneId":84376},{"hugoGeneSymbol":"HOPX","entrezGeneId":84525},{"hugoGeneSymbol":"HORMAD1","entrezGeneId":84072},{"hugoGeneSymbol":"HORMAD2","entrezGeneId":150280},{"hugoGeneSymbol":"HORMAD2-AS1","entrezGeneId":101929664},{"hugoGeneSymbol":"HOTAIR","entrezGeneId":100124700},{"hugoGeneSymbol":"HOTAIRM1","entrezGeneId":100506311},{"hugoGeneSymbol":"HOTS","entrezGeneId":103344718},{"hugoGeneSymbol":"HOTTIP","entrezGeneId":100316868},{"hugoGeneSymbol":"HOXA-AS2","entrezGeneId":285943},{"hugoGeneSymbol":"HOXA-AS3","entrezGeneId":100133311},{"hugoGeneSymbol":"HOXA1","entrezGeneId":3198},{"hugoGeneSymbol":"HOXA10","entrezGeneId":3206},{"hugoGeneSymbol":"HOXA10-AS","entrezGeneId":100874323},{"hugoGeneSymbol":"HOXA10-HOXA9","entrezGeneId":100534589},{"hugoGeneSymbol":"HOXA11","entrezGeneId":3207},{"hugoGeneSymbol":"HOXA11-AS","entrezGeneId":221883},{"hugoGeneSymbol":"HOXA13","entrezGeneId":3209},{"hugoGeneSymbol":"HOXA2","entrezGeneId":3199},{"hugoGeneSymbol":"HOXA3","entrezGeneId":3200},{"hugoGeneSymbol":"HOXA4","entrezGeneId":3201},{"hugoGeneSymbol":"HOXA5","entrezGeneId":3202},{"hugoGeneSymbol":"HOXA6","entrezGeneId":3203},{"hugoGeneSymbol":"HOXA7","entrezGeneId":3204},{"hugoGeneSymbol":"HOXA9","entrezGeneId":3205},{"hugoGeneSymbol":"HOXA@","entrezGeneId":3197},{"hugoGeneSymbol":"HOXB-AS1","entrezGeneId":100874362},{"hugoGeneSymbol":"HOXB-AS2","entrezGeneId":100874350},{"hugoGeneSymbol":"HOXB-AS3","entrezGeneId":404266},{"hugoGeneSymbol":"HOXB-AS4","entrezGeneId":100874351},{"hugoGeneSymbol":"HOXB1","entrezGeneId":3211},{"hugoGeneSymbol":"HOXB13","entrezGeneId":10481},{"hugoGeneSymbol":"HOXB2","entrezGeneId":3212},{"hugoGeneSymbol":"HOXB3","entrezGeneId":3213},{"hugoGeneSymbol":"HOXB4","entrezGeneId":3214},{"hugoGeneSymbol":"HOXB5","entrezGeneId":3215},{"hugoGeneSymbol":"HOXB6","entrezGeneId":3216},{"hugoGeneSymbol":"HOXB7","entrezGeneId":3217},{"hugoGeneSymbol":"HOXB8","entrezGeneId":3218},{"hugoGeneSymbol":"HOXB9","entrezGeneId":3219},{"hugoGeneSymbol":"HOXB@","entrezGeneId":3210},{"hugoGeneSymbol":"HOXC-AS1","entrezGeneId":100874363},{"hugoGeneSymbol":"HOXC-AS2","entrezGeneId":100874364},{"hugoGeneSymbol":"HOXC-AS3","entrezGeneId":100874365},{"hugoGeneSymbol":"HOXC10","entrezGeneId":3226},{"hugoGeneSymbol":"HOXC11","entrezGeneId":3227},{"hugoGeneSymbol":"HOXC12","entrezGeneId":3228},{"hugoGeneSymbol":"HOXC13","entrezGeneId":3229},{"hugoGeneSymbol":"HOXC13-AS","entrezGeneId":100874366},{"hugoGeneSymbol":"HOXC4","entrezGeneId":3221},{"hugoGeneSymbol":"HOXC5","entrezGeneId":3222},{"hugoGeneSymbol":"HOXC6","entrezGeneId":3223},{"hugoGeneSymbol":"HOXC8","entrezGeneId":3224},{"hugoGeneSymbol":"HOXC9","entrezGeneId":3225},{"hugoGeneSymbol":"HOXC@","entrezGeneId":3220},{"hugoGeneSymbol":"HOXD-AS2","entrezGeneId":100506783},{"hugoGeneSymbol":"HOXD1","entrezGeneId":3231},{"hugoGeneSymbol":"HOXD10","entrezGeneId":3236},{"hugoGeneSymbol":"HOXD11","entrezGeneId":3237},{"hugoGeneSymbol":"HOXD12","entrezGeneId":3238},{"hugoGeneSymbol":"HOXD13","entrezGeneId":3239},{"hugoGeneSymbol":"HOXD3","entrezGeneId":3232},{"hugoGeneSymbol":"HOXD4","entrezGeneId":3233},{"hugoGeneSymbol":"HOXD8","entrezGeneId":3234},{"hugoGeneSymbol":"HOXD9","entrezGeneId":3235},{"hugoGeneSymbol":"HOXD@","entrezGeneId":3230},{"hugoGeneSymbol":"HP","entrezGeneId":3240},{"hugoGeneSymbol":"HP08777","entrezGeneId":105378912},{"hugoGeneSymbol":"HP09053","entrezGeneId":101929357},{"hugoGeneSymbol":"HP11014","entrezGeneId":105369557},{"hugoGeneSymbol":"HP1BP3","entrezGeneId":50809},{"hugoGeneSymbol":"HPBP","entrezGeneId":100144632},{"hugoGeneSymbol":"HPC10","entrezGeneId":100188834},{"hugoGeneSymbol":"HPC14","entrezGeneId":100188867},{"hugoGeneSymbol":"HPC15","entrezGeneId":100188868},{"hugoGeneSymbol":"HPC3","entrezGeneId":408259},{"hugoGeneSymbol":"HPC4","entrezGeneId":408260},{"hugoGeneSymbol":"HPC5","entrezGeneId":619402},{"hugoGeneSymbol":"HPC6","entrezGeneId":100188789},{"hugoGeneSymbol":"HPC7","entrezGeneId":100188809},{"hugoGeneSymbol":"HPC9","entrezGeneId":100188826},{"hugoGeneSymbol":"HPCA","entrezGeneId":3208},{"hugoGeneSymbol":"HPCAL1","entrezGeneId":3241},{"hugoGeneSymbol":"HPCAL4","entrezGeneId":51440},{"hugoGeneSymbol":"HPCQTL19","entrezGeneId":347747},{"hugoGeneSymbol":"HPCX","entrezGeneId":9566},{"hugoGeneSymbol":"HPCX2","entrezGeneId":100188769},{"hugoGeneSymbol":"HPD","entrezGeneId":3242},{"hugoGeneSymbol":"HPDL","entrezGeneId":84842},{"hugoGeneSymbol":"HPE1","entrezGeneId":3244},{"hugoGeneSymbol":"HPE6","entrezGeneId":117190},{"hugoGeneSymbol":"HPE8","entrezGeneId":619406},{"hugoGeneSymbol":"HPF1","entrezGeneId":54969},{"hugoGeneSymbol":"HPFH2","entrezGeneId":3247},{"hugoGeneSymbol":"HPGD","entrezGeneId":3248},{"hugoGeneSymbol":"HPGDS","entrezGeneId":27306},{"hugoGeneSymbol":"HPLH1","entrezGeneId":27259},{"hugoGeneSymbol":"HPN","entrezGeneId":3249},{"hugoGeneSymbol":"HPN-AS1","entrezGeneId":100128675},{"hugoGeneSymbol":"HPP1","entrezGeneId":780897},{"hugoGeneSymbol":"HPPD","entrezGeneId":100682260},{"hugoGeneSymbol":"HPR","entrezGeneId":3250},{"hugoGeneSymbol":"HPRHP","entrezGeneId":100188880},{"hugoGeneSymbol":"HPRT1","entrezGeneId":3251},{"hugoGeneSymbol":"HPRT1P1","entrezGeneId":100130067},{"hugoGeneSymbol":"HPRT1P2","entrezGeneId":3254},{"hugoGeneSymbol":"HPRT1P3","entrezGeneId":3255},{"hugoGeneSymbol":"HPS1","entrezGeneId":3257},{"hugoGeneSymbol":"HPS3","entrezGeneId":84343},{"hugoGeneSymbol":"HPS4","entrezGeneId":89781},{"hugoGeneSymbol":"HPS5","entrezGeneId":11234},{"hugoGeneSymbol":"HPS6","entrezGeneId":79803},{"hugoGeneSymbol":"HPSE","entrezGeneId":10855},{"hugoGeneSymbol":"HPSE2","entrezGeneId":60495},{"hugoGeneSymbol":"HPT","entrezGeneId":3258},{"hugoGeneSymbol":"HPV18I1","entrezGeneId":3260},{"hugoGeneSymbol":"HPV18I2","entrezGeneId":3261},{"hugoGeneSymbol":"HPV6AI1","entrezGeneId":3259},{"hugoGeneSymbol":"HPVC1","entrezGeneId":3262},{"hugoGeneSymbol":"HPX","entrezGeneId":3263},{"hugoGeneSymbol":"HPYR1","entrezGeneId":93668},{"hugoGeneSymbol":"HR","entrezGeneId":55806},{"hugoGeneSymbol":"HRAS","entrezGeneId":3265},{"hugoGeneSymbol":"HRASLS","entrezGeneId":57110},{"hugoGeneSymbol":"HRASLS2","entrezGeneId":54979},{"hugoGeneSymbol":"HRASLS5","entrezGeneId":117245},{"hugoGeneSymbol":"HRAT17","entrezGeneId":101928036},{"hugoGeneSymbol":"HRAT5","entrezGeneId":102467073},{"hugoGeneSymbol":"HRAT92","entrezGeneId":441307},{"hugoGeneSymbol":"HRC","entrezGeneId":3270},{"hugoGeneSymbol":"HRCT1","entrezGeneId":646962},{"hugoGeneSymbol":"HRES1","entrezGeneId":3272},{"hugoGeneSymbol":"HRES2","entrezGeneId":57046},{"hugoGeneSymbol":"HRG","entrezGeneId":3273},{"hugoGeneSymbol":"HRH1","entrezGeneId":3269},{"hugoGeneSymbol":"HRH2","entrezGeneId":3274},{"hugoGeneSymbol":"HRH3","entrezGeneId":11255},{"hugoGeneSymbol":"HRH4","entrezGeneId":59340},{"hugoGeneSymbol":"HRK","entrezGeneId":8739},{"hugoGeneSymbol":"HRM2","entrezGeneId":100379199},{"hugoGeneSymbol":"HRNR","entrezGeneId":388697},{"hugoGeneSymbol":"HRPT3","entrezGeneId":780919},{"hugoGeneSymbol":"HRTRT1","entrezGeneId":544623},{"hugoGeneSymbol":"HRX","entrezGeneId":7974},{"hugoGeneSymbol":"HS-E1","entrezGeneId":110740339},{"hugoGeneSymbol":"HS1BP3","entrezGeneId":64342},{"hugoGeneSymbol":"HS1BP3-IT1","entrezGeneId":100874343},{"hugoGeneSymbol":"HS2ST1","entrezGeneId":9653},{"hugoGeneSymbol":"HS3ST1","entrezGeneId":9957},{"hugoGeneSymbol":"HS3ST2","entrezGeneId":9956},{"hugoGeneSymbol":"HS3ST3A1","entrezGeneId":9955},{"hugoGeneSymbol":"HS3ST3B1","entrezGeneId":9953},{"hugoGeneSymbol":"HS3ST4","entrezGeneId":9951},{"hugoGeneSymbol":"HS3ST5","entrezGeneId":222537},{"hugoGeneSymbol":"HS3ST6","entrezGeneId":64711},{"hugoGeneSymbol":"HS6ST1","entrezGeneId":9394},{"hugoGeneSymbol":"HS6ST1P1","entrezGeneId":388605},{"hugoGeneSymbol":"HS6ST2","entrezGeneId":90161},{"hugoGeneSymbol":"HS6ST2-AS1","entrezGeneId":100874102},{"hugoGeneSymbol":"HS6ST3","entrezGeneId":266722},{"hugoGeneSymbol":"HSBP1","entrezGeneId":3281},{"hugoGeneSymbol":"HSBP1L1","entrezGeneId":440498},{"hugoGeneSymbol":"HSBP1P1","entrezGeneId":326296},{"hugoGeneSymbol":"HSBP1P2","entrezGeneId":100288483},{"hugoGeneSymbol":"HSCB","entrezGeneId":150274},{"hugoGeneSymbol":"HSCR5","entrezGeneId":404720},{"hugoGeneSymbol":"HSCR6","entrezGeneId":246321},{"hugoGeneSymbol":"HSCR7","entrezGeneId":246322},{"hugoGeneSymbol":"HSCR8","entrezGeneId":404719},{"hugoGeneSymbol":"HSCR9","entrezGeneId":100188850},{"hugoGeneSymbol":"HSD11B1","entrezGeneId":3290},{"hugoGeneSymbol":"HSD11B1L","entrezGeneId":374875},{"hugoGeneSymbol":"HSD11B2","entrezGeneId":3291},{"hugoGeneSymbol":"HSD17B1","entrezGeneId":3292},{"hugoGeneSymbol":"HSD17B10","entrezGeneId":3028},{"hugoGeneSymbol":"HSD17B11","entrezGeneId":51170},{"hugoGeneSymbol":"HSD17B12","entrezGeneId":51144},{"hugoGeneSymbol":"HSD17B13","entrezGeneId":345275},{"hugoGeneSymbol":"HSD17B14","entrezGeneId":51171},{"hugoGeneSymbol":"HSD17B1P1","entrezGeneId":643646},{"hugoGeneSymbol":"HSD17B2","entrezGeneId":3294},{"hugoGeneSymbol":"HSD17B3","entrezGeneId":3293},{"hugoGeneSymbol":"HSD17B3-AS1","entrezGeneId":105376162},{"hugoGeneSymbol":"HSD17B4","entrezGeneId":3295},{"hugoGeneSymbol":"HSD17B6","entrezGeneId":8630},{"hugoGeneSymbol":"HSD17B7","entrezGeneId":51478},{"hugoGeneSymbol":"HSD17B7P1","entrezGeneId":148818},{"hugoGeneSymbol":"HSD17B7P2","entrezGeneId":158160},{"hugoGeneSymbol":"HSD17B8","entrezGeneId":7923},{"hugoGeneSymbol":"HSD3B1","entrezGeneId":3283},{"hugoGeneSymbol":"HSD3B2","entrezGeneId":3284},{"hugoGeneSymbol":"HSD3B7","entrezGeneId":80270},{"hugoGeneSymbol":"HSD3BP1","entrezGeneId":391076},{"hugoGeneSymbol":"HSD3BP2","entrezGeneId":440606},{"hugoGeneSymbol":"HSD3BP3","entrezGeneId":441900},{"hugoGeneSymbol":"HSD3BP4","entrezGeneId":128102},{"hugoGeneSymbol":"HSD3BP5","entrezGeneId":391081},{"hugoGeneSymbol":"HSD52","entrezGeneId":729467},{"hugoGeneSymbol":"HSDL1","entrezGeneId":83693},{"hugoGeneSymbol":"HSDL2","entrezGeneId":84263},{"hugoGeneSymbol":"HSF1","entrezGeneId":3297},{"hugoGeneSymbol":"HSF2","entrezGeneId":3298},{"hugoGeneSymbol":"HSF2BP","entrezGeneId":11077},{"hugoGeneSymbol":"HSF4","entrezGeneId":3299},{"hugoGeneSymbol":"HSF5","entrezGeneId":124535},{"hugoGeneSymbol":"HSFX1","entrezGeneId":100506164},{"hugoGeneSymbol":"HSFX2","entrezGeneId":100130086},{"hugoGeneSymbol":"HSFX3","entrezGeneId":101928917},{"hugoGeneSymbol":"HSFX4","entrezGeneId":101927685},{"hugoGeneSymbol":"HSFY1","entrezGeneId":86614},{"hugoGeneSymbol":"HSFY1P1","entrezGeneId":27437},{"hugoGeneSymbol":"HSFY2","entrezGeneId":159119},{"hugoGeneSymbol":"HSFY3P","entrezGeneId":442479},{"hugoGeneSymbol":"HSFY4P","entrezGeneId":643987},{"hugoGeneSymbol":"HSFY5P","entrezGeneId":106478934},{"hugoGeneSymbol":"HSFY6P","entrezGeneId":106480722},{"hugoGeneSymbol":"HSFY7P","entrezGeneId":106478935},{"hugoGeneSymbol":"HSFY8P","entrezGeneId":106480723},{"hugoGeneSymbol":"HSH2D","entrezGeneId":84941},{"hugoGeneSymbol":"HSN1B","entrezGeneId":378888},{"hugoGeneSymbol":"HSP90AA1","entrezGeneId":3320},{"hugoGeneSymbol":"HSP90AA2P","entrezGeneId":3324},{"hugoGeneSymbol":"HSP90AA3P","entrezGeneId":3322},{"hugoGeneSymbol":"HSP90AA4P","entrezGeneId":3323},{"hugoGeneSymbol":"HSP90AA5P","entrezGeneId":730211},{"hugoGeneSymbol":"HSP90AA6P","entrezGeneId":441051},{"hugoGeneSymbol":"HSP90AB1","entrezGeneId":3326},{"hugoGeneSymbol":"HSP90AB2P","entrezGeneId":391634},{"hugoGeneSymbol":"HSP90AB3P","entrezGeneId":3327},{"hugoGeneSymbol":"HSP90AB4P","entrezGeneId":664618},{"hugoGeneSymbol":"HSP90AB5P","entrezGeneId":442083},{"hugoGeneSymbol":"HSP90AB6P","entrezGeneId":541611},{"hugoGeneSymbol":"HSP90AB7P","entrezGeneId":644495},{"hugoGeneSymbol":"HSP90B1","entrezGeneId":7184},{"hugoGeneSymbol":"HSP90B2P","entrezGeneId":7190},{"hugoGeneSymbol":"HSP90B3P","entrezGeneId":343477},{"hugoGeneSymbol":"HSPA12A","entrezGeneId":259217},{"hugoGeneSymbol":"HSPA12B","entrezGeneId":116835},{"hugoGeneSymbol":"HSPA13","entrezGeneId":6782},{"hugoGeneSymbol":"HSPA14","entrezGeneId":51182},{"hugoGeneSymbol":"HSPA1A","entrezGeneId":3303},{"hugoGeneSymbol":"HSPA1B","entrezGeneId":3304},{"hugoGeneSymbol":"HSPA1L","entrezGeneId":3305},{"hugoGeneSymbol":"HSPA2","entrezGeneId":3306},{"hugoGeneSymbol":"HSPA4","entrezGeneId":3308},{"hugoGeneSymbol":"HSPA4L","entrezGeneId":22824},{"hugoGeneSymbol":"HSPA5","entrezGeneId":3309},{"hugoGeneSymbol":"HSPA6","entrezGeneId":3310},{"hugoGeneSymbol":"HSPA7","entrezGeneId":3311},{"hugoGeneSymbol":"HSPA8","entrezGeneId":3312},{"hugoGeneSymbol":"HSPA8P1","entrezGeneId":3314},{"hugoGeneSymbol":"HSPA8P10","entrezGeneId":100420004},{"hugoGeneSymbol":"HSPA8P11","entrezGeneId":392209},{"hugoGeneSymbol":"HSPA8P12","entrezGeneId":100420038},{"hugoGeneSymbol":"HSPA8P13","entrezGeneId":106480803},{"hugoGeneSymbol":"HSPA8P14","entrezGeneId":642580},{"hugoGeneSymbol":"HSPA8P15","entrezGeneId":100420051},{"hugoGeneSymbol":"HSPA8P16","entrezGeneId":100289643},{"hugoGeneSymbol":"HSPA8P17","entrezGeneId":100533658},{"hugoGeneSymbol":"HSPA8P18","entrezGeneId":402125},{"hugoGeneSymbol":"HSPA8P19","entrezGeneId":100420049},{"hugoGeneSymbol":"HSPA8P2","entrezGeneId":100420133},{"hugoGeneSymbol":"HSPA8P20","entrezGeneId":100129231},{"hugoGeneSymbol":"HSPA8P3","entrezGeneId":100420143},{"hugoGeneSymbol":"HSPA8P4","entrezGeneId":100420028},{"hugoGeneSymbol":"HSPA8P5","entrezGeneId":399988},{"hugoGeneSymbol":"HSPA8P6","entrezGeneId":130195},{"hugoGeneSymbol":"HSPA8P7","entrezGeneId":100420080},{"hugoGeneSymbol":"HSPA8P8","entrezGeneId":100287551},{"hugoGeneSymbol":"HSPA8P9","entrezGeneId":402143},{"hugoGeneSymbol":"HSPA9","entrezGeneId":3313},{"hugoGeneSymbol":"HSPA9P1","entrezGeneId":266724},{"hugoGeneSymbol":"HSPA9P2","entrezGeneId":100873903},{"hugoGeneSymbol":"HSPB1","entrezGeneId":3315},{"hugoGeneSymbol":"HSPB11","entrezGeneId":51668},{"hugoGeneSymbol":"HSPB1P1","entrezGeneId":653553},{"hugoGeneSymbol":"HSPB1P2","entrezGeneId":653364},{"hugoGeneSymbol":"HSPB2","entrezGeneId":3316},{"hugoGeneSymbol":"HSPB2-C11ORF52","entrezGeneId":100528019},{"hugoGeneSymbol":"HSPB3","entrezGeneId":8988},{"hugoGeneSymbol":"HSPB6","entrezGeneId":126393},{"hugoGeneSymbol":"HSPB7","entrezGeneId":27129},{"hugoGeneSymbol":"HSPB8","entrezGeneId":26353},{"hugoGeneSymbol":"HSPB9","entrezGeneId":94086},{"hugoGeneSymbol":"HSPBAP1","entrezGeneId":79663},{"hugoGeneSymbol":"HSPBP1","entrezGeneId":23640},{"hugoGeneSymbol":"HSPC102","entrezGeneId":105372274},{"hugoGeneSymbol":"HSPC324","entrezGeneId":101928612},{"hugoGeneSymbol":"HSPD1","entrezGeneId":3329},{"hugoGeneSymbol":"HSPD1P1","entrezGeneId":643300},{"hugoGeneSymbol":"HSPD1P10","entrezGeneId":644016},{"hugoGeneSymbol":"HSPD1P11","entrezGeneId":100359396},{"hugoGeneSymbol":"HSPD1P12","entrezGeneId":283320},{"hugoGeneSymbol":"HSPD1P13","entrezGeneId":100462987},{"hugoGeneSymbol":"HSPD1P14","entrezGeneId":100287140},{"hugoGeneSymbol":"HSPD1P15","entrezGeneId":646273},{"hugoGeneSymbol":"HSPD1P16","entrezGeneId":100462985},{"hugoGeneSymbol":"HSPD1P17","entrezGeneId":100462986},{"hugoGeneSymbol":"HSPD1P18","entrezGeneId":100359397},{"hugoGeneSymbol":"HSPD1P19","entrezGeneId":100463288},{"hugoGeneSymbol":"HSPD1P2","entrezGeneId":645808},{"hugoGeneSymbol":"HSPD1P20","entrezGeneId":100462989},{"hugoGeneSymbol":"HSPD1P21","entrezGeneId":100462990},{"hugoGeneSymbol":"HSPD1P22","entrezGeneId":100462984},{"hugoGeneSymbol":"HSPD1P3","entrezGeneId":3332},{"hugoGeneSymbol":"HSPD1P4","entrezGeneId":644745},{"hugoGeneSymbol":"HSPD1P5","entrezGeneId":345041},{"hugoGeneSymbol":"HSPD1P6","entrezGeneId":645548},{"hugoGeneSymbol":"HSPD1P7","entrezGeneId":54047},{"hugoGeneSymbol":"HSPD1P8","entrezGeneId":647298},{"hugoGeneSymbol":"HSPD1P9","entrezGeneId":646910},{"hugoGeneSymbol":"HSPE1","entrezGeneId":3336},{"hugoGeneSymbol":"HSPE1-MOB4","entrezGeneId":100529241},{"hugoGeneSymbol":"HSPE1P1","entrezGeneId":140895},{"hugoGeneSymbol":"HSPE1P10","entrezGeneId":100288235},{"hugoGeneSymbol":"HSPE1P11","entrezGeneId":106481673},{"hugoGeneSymbol":"HSPE1P12","entrezGeneId":100286954},{"hugoGeneSymbol":"HSPE1P13","entrezGeneId":106480256},{"hugoGeneSymbol":"HSPE1P14","entrezGeneId":106481674},{"hugoGeneSymbol":"HSPE1P16","entrezGeneId":171421},{"hugoGeneSymbol":"HSPE1P18","entrezGeneId":106480257},{"hugoGeneSymbol":"HSPE1P19","entrezGeneId":106481675},{"hugoGeneSymbol":"HSPE1P2","entrezGeneId":326300},{"hugoGeneSymbol":"HSPE1P20","entrezGeneId":100288726},{"hugoGeneSymbol":"HSPE1P21","entrezGeneId":106480258},{"hugoGeneSymbol":"HSPE1P22","entrezGeneId":100289607},{"hugoGeneSymbol":"HSPE1P23","entrezGeneId":106481676},{"hugoGeneSymbol":"HSPE1P24","entrezGeneId":106480259},{"hugoGeneSymbol":"HSPE1P25","entrezGeneId":106480260},{"hugoGeneSymbol":"HSPE1P26","entrezGeneId":106481677},{"hugoGeneSymbol":"HSPE1P27","entrezGeneId":106480261},{"hugoGeneSymbol":"HSPE1P28","entrezGeneId":171420},{"hugoGeneSymbol":"HSPE1P3","entrezGeneId":100507046},{"hugoGeneSymbol":"HSPE1P4","entrezGeneId":100287369},{"hugoGeneSymbol":"HSPE1P5","entrezGeneId":100506000},{"hugoGeneSymbol":"HSPE1P6","entrezGeneId":106480254},{"hugoGeneSymbol":"HSPE1P7","entrezGeneId":100132346},{"hugoGeneSymbol":"HSPE1P8","entrezGeneId":100292290},{"hugoGeneSymbol":"HSPE1P9","entrezGeneId":106480255},{"hugoGeneSymbol":"HSPG2","entrezGeneId":3339},{"hugoGeneSymbol":"HSPH1","entrezGeneId":10808},{"hugoGeneSymbol":"HSR","entrezGeneId":338386},{"hugoGeneSymbol":"HT","entrezGeneId":140805},{"hugoGeneSymbol":"HTATIP2","entrezGeneId":10553},{"hugoGeneSymbol":"HTATSF1","entrezGeneId":27336},{"hugoGeneSymbol":"HTATSF1P1","entrezGeneId":387039},{"hugoGeneSymbol":"HTATSF1P2","entrezGeneId":401233},{"hugoGeneSymbol":"HTC1","entrezGeneId":3341},{"hugoGeneSymbol":"HTC2","entrezGeneId":3342},{"hugoGeneSymbol":"HTD2","entrezGeneId":109703458},{"hugoGeneSymbol":"HTGH","entrezGeneId":100302716},{"hugoGeneSymbol":"HTGS","entrezGeneId":56797},{"hugoGeneSymbol":"HTL","entrezGeneId":3343},{"hugoGeneSymbol":"HTN1","entrezGeneId":3346},{"hugoGeneSymbol":"HTN3","entrezGeneId":3347},{"hugoGeneSymbol":"HTNB","entrezGeneId":8080},{"hugoGeneSymbol":"HTOR","entrezGeneId":3349},{"hugoGeneSymbol":"HTR1A","entrezGeneId":3350},{"hugoGeneSymbol":"HTR1B","entrezGeneId":3351},{"hugoGeneSymbol":"HTR1D","entrezGeneId":3352},{"hugoGeneSymbol":"HTR1DP1","entrezGeneId":100421479},{"hugoGeneSymbol":"HTR1E","entrezGeneId":3354},{"hugoGeneSymbol":"HTR1F","entrezGeneId":3355},{"hugoGeneSymbol":"HTR2A","entrezGeneId":3356},{"hugoGeneSymbol":"HTR2A-AS1","entrezGeneId":100874082},{"hugoGeneSymbol":"HTR2B","entrezGeneId":3357},{"hugoGeneSymbol":"HTR2C","entrezGeneId":3358},{"hugoGeneSymbol":"HTR3A","entrezGeneId":3359},{"hugoGeneSymbol":"HTR3B","entrezGeneId":9177},{"hugoGeneSymbol":"HTR3C","entrezGeneId":170572},{"hugoGeneSymbol":"HTR3D","entrezGeneId":200909},{"hugoGeneSymbol":"HTR3E","entrezGeneId":285242},{"hugoGeneSymbol":"HTR3E-AS1","entrezGeneId":106478970},{"hugoGeneSymbol":"HTR4","entrezGeneId":3360},{"hugoGeneSymbol":"HTR5A","entrezGeneId":3361},{"hugoGeneSymbol":"HTR5A-AS1","entrezGeneId":100128264},{"hugoGeneSymbol":"HTR5BP","entrezGeneId":645694},{"hugoGeneSymbol":"HTR6","entrezGeneId":3362},{"hugoGeneSymbol":"HTR7","entrezGeneId":3363},{"hugoGeneSymbol":"HTR7P1","entrezGeneId":93164},{"hugoGeneSymbol":"HTRA1","entrezGeneId":5654},{"hugoGeneSymbol":"HTRA2","entrezGeneId":27429},{"hugoGeneSymbol":"HTRA3","entrezGeneId":94031},{"hugoGeneSymbol":"HTRA4","entrezGeneId":203100},{"hugoGeneSymbol":"HTT","entrezGeneId":3064},{"hugoGeneSymbol":"HTT-AS","entrezGeneId":100750326},{"hugoGeneSymbol":"HTX3","entrezGeneId":116629},{"hugoGeneSymbol":"HULC","entrezGeneId":728655},{"hugoGeneSymbol":"HUNK","entrezGeneId":30811},{"hugoGeneSymbol":"HUNK-AS1","entrezGeneId":106144524},{"hugoGeneSymbol":"HUS1","entrezGeneId":3364},{"hugoGeneSymbol":"HUS1B","entrezGeneId":135458},{"hugoGeneSymbol":"HUWE1","entrezGeneId":10075},{"hugoGeneSymbol":"HVBS7","entrezGeneId":3369},{"hugoGeneSymbol":"HVBS8","entrezGeneId":3370},{"hugoGeneSymbol":"HVCN1","entrezGeneId":84329},{"hugoGeneSymbol":"HWE1","entrezGeneId":100415903},{"hugoGeneSymbol":"HWE2","entrezGeneId":100415904},{"hugoGeneSymbol":"HYAL1","entrezGeneId":3373},{"hugoGeneSymbol":"HYAL2","entrezGeneId":8692},{"hugoGeneSymbol":"HYAL3","entrezGeneId":8372},{"hugoGeneSymbol":"HYAL4","entrezGeneId":23553},{"hugoGeneSymbol":"HYALP1","entrezGeneId":26062},{"hugoGeneSymbol":"HYD2","entrezGeneId":8137},{"hugoGeneSymbol":"HYDIN","entrezGeneId":54768},{"hugoGeneSymbol":"HYDIN2","entrezGeneId":100288805},{"hugoGeneSymbol":"HYI","entrezGeneId":81888},{"hugoGeneSymbol":"HYI-AS1","entrezGeneId":100873923},{"hugoGeneSymbol":"HYKK","entrezGeneId":123688},{"hugoGeneSymbol":"HYLS1","entrezGeneId":219844},{"hugoGeneSymbol":"HYMAI","entrezGeneId":57061},{"hugoGeneSymbol":"HYOU1","entrezGeneId":10525},{"hugoGeneSymbol":"HYP10","entrezGeneId":100736251},{"hugoGeneSymbol":"HYPK","entrezGeneId":25764},{"hugoGeneSymbol":"HYPLIP2","entrezGeneId":28515},{"hugoGeneSymbol":"HYPM","entrezGeneId":25763},{"hugoGeneSymbol":"HYPT9","entrezGeneId":100736250},{"hugoGeneSymbol":"HYSP3","entrezGeneId":100689211},{"hugoGeneSymbol":"HYSP4","entrezGeneId":100689214},{"hugoGeneSymbol":"HYT1","entrezGeneId":117191},{"hugoGeneSymbol":"HYT2","entrezGeneId":50986},{"hugoGeneSymbol":"HYT3","entrezGeneId":387575},{"hugoGeneSymbol":"HYT4","entrezGeneId":444980},{"hugoGeneSymbol":"HYT5","entrezGeneId":100188807},{"hugoGeneSymbol":"HYT6","entrezGeneId":100188808},{"hugoGeneSymbol":"HYT7","entrezGeneId":100188825},{"hugoGeneSymbol":"HYT8","entrezGeneId":100188321},{"hugoGeneSymbol":"IAH1","entrezGeneId":285148},{"hugoGeneSymbol":"IAPP","entrezGeneId":3375},{"hugoGeneSymbol":"IARS","entrezGeneId":3376},{"hugoGeneSymbol":"IARS2","entrezGeneId":55699},{"hugoGeneSymbol":"IARS2P1","entrezGeneId":642461},{"hugoGeneSymbol":"IBA57","entrezGeneId":200205},{"hugoGeneSymbol":"IBA57-DT","entrezGeneId":574432},{"hugoGeneSymbol":"IBD11","entrezGeneId":100529151},{"hugoGeneSymbol":"IBD12","entrezGeneId":100188952},{"hugoGeneSymbol":"IBD15","entrezGeneId":100190929},{"hugoGeneSymbol":"IBD16","entrezGeneId":100190930},{"hugoGeneSymbol":"IBD18","entrezGeneId":100190931},{"hugoGeneSymbol":"IBD19","entrezGeneId":100190926},{"hugoGeneSymbol":"IBD2","entrezGeneId":3378},{"hugoGeneSymbol":"IBD20","entrezGeneId":100190788},{"hugoGeneSymbol":"IBD21","entrezGeneId":100192312},{"hugoGeneSymbol":"IBD22","entrezGeneId":100240732},{"hugoGeneSymbol":"IBD23","entrezGeneId":100240733},{"hugoGeneSymbol":"IBD24","entrezGeneId":100270798},{"hugoGeneSymbol":"IBD25","entrezGeneId":100270799},{"hugoGeneSymbol":"IBD26","entrezGeneId":100271838},{"hugoGeneSymbol":"IBD27","entrezGeneId":100302059},{"hugoGeneSymbol":"IBD3","entrezGeneId":30829},{"hugoGeneSymbol":"IBD4","entrezGeneId":50608},{"hugoGeneSymbol":"IBD5","entrezGeneId":50941},{"hugoGeneSymbol":"IBD6","entrezGeneId":50942},{"hugoGeneSymbol":"IBD7","entrezGeneId":57042},{"hugoGeneSymbol":"IBD8","entrezGeneId":170595},{"hugoGeneSymbol":"IBD9","entrezGeneId":317669},{"hugoGeneSymbol":"IBGC1","entrezGeneId":23706},{"hugoGeneSymbol":"IBGC2","entrezGeneId":100874532},{"hugoGeneSymbol":"IBSP","entrezGeneId":3381},{"hugoGeneSymbol":"IBTK","entrezGeneId":25998},{"hugoGeneSymbol":"IBTKP1","entrezGeneId":100127883},{"hugoGeneSymbol":"ICA1","entrezGeneId":3382},{"hugoGeneSymbol":"ICA1L","entrezGeneId":130026},{"hugoGeneSymbol":"ICAM1","entrezGeneId":3383},{"hugoGeneSymbol":"ICAM2","entrezGeneId":3384},{"hugoGeneSymbol":"ICAM3","entrezGeneId":3385},{"hugoGeneSymbol":"ICAM4","entrezGeneId":3386},{"hugoGeneSymbol":"ICAM5","entrezGeneId":7087},{"hugoGeneSymbol":"ICE1","entrezGeneId":23379},{"hugoGeneSymbol":"ICE2","entrezGeneId":79664},{"hugoGeneSymbol":"ICE2P1","entrezGeneId":644491},{"hugoGeneSymbol":"ICE2P2","entrezGeneId":728432},{"hugoGeneSymbol":"ICK","entrezGeneId":22858},{"hugoGeneSymbol":"ICMT","entrezGeneId":23463},{"hugoGeneSymbol":"ICOS","entrezGeneId":29851},{"hugoGeneSymbol":"ICOSLG","entrezGeneId":23308},{"hugoGeneSymbol":"ICR1","entrezGeneId":3388},{"hugoGeneSymbol":"ICR3","entrezGeneId":3390},{"hugoGeneSymbol":"ICR4","entrezGeneId":3391},{"hugoGeneSymbol":"ID1","entrezGeneId":3397},{"hugoGeneSymbol":"ID2","entrezGeneId":3398},{"hugoGeneSymbol":"ID2-AS1","entrezGeneId":100506299},{"hugoGeneSymbol":"ID2B","entrezGeneId":84099},{"hugoGeneSymbol":"ID3","entrezGeneId":3399},{"hugoGeneSymbol":"ID4","entrezGeneId":3400},{"hugoGeneSymbol":"IDDM11","entrezGeneId":3410},{"hugoGeneSymbol":"IDDM13","entrezGeneId":3412},{"hugoGeneSymbol":"IDDM14","entrezGeneId":3413},{"hugoGeneSymbol":"IDDM15","entrezGeneId":3414},{"hugoGeneSymbol":"IDDM16","entrezGeneId":3415},{"hugoGeneSymbol":"IDDM17","entrezGeneId":8691},{"hugoGeneSymbol":"IDDM18","entrezGeneId":57044},{"hugoGeneSymbol":"IDDM23","entrezGeneId":100271697},{"hugoGeneSymbol":"IDDM24","entrezGeneId":100303715},{"hugoGeneSymbol":"IDDM3","entrezGeneId":3402},{"hugoGeneSymbol":"IDDM4","entrezGeneId":3403},{"hugoGeneSymbol":"IDDM6","entrezGeneId":3405},{"hugoGeneSymbol":"IDDM7","entrezGeneId":3406},{"hugoGeneSymbol":"IDDM8","entrezGeneId":3407},{"hugoGeneSymbol":"IDDM9","entrezGeneId":3408},{"hugoGeneSymbol":"IDDMX","entrezGeneId":8245},{"hugoGeneSymbol":"IDE","entrezGeneId":3416},{"hugoGeneSymbol":"IDH1","entrezGeneId":3417},{"hugoGeneSymbol":"IDH1-AS1","entrezGeneId":100507475},{"hugoGeneSymbol":"IDH2","entrezGeneId":3418},{"hugoGeneSymbol":"IDH2-DT","entrezGeneId":105370966},{"hugoGeneSymbol":"IDH3A","entrezGeneId":3419},{"hugoGeneSymbol":"IDH3B","entrezGeneId":3420},{"hugoGeneSymbol":"IDH3G","entrezGeneId":3421},{"hugoGeneSymbol":"IDI1","entrezGeneId":3422},{"hugoGeneSymbol":"IDI2","entrezGeneId":91734},{"hugoGeneSymbol":"IDI2-AS1","entrezGeneId":55853},{"hugoGeneSymbol":"IDNK","entrezGeneId":414328},{"hugoGeneSymbol":"IDO1","entrezGeneId":3620},{"hugoGeneSymbol":"IDO2","entrezGeneId":169355},{"hugoGeneSymbol":"IDS","entrezGeneId":3423},{"hugoGeneSymbol":"IDS2","entrezGeneId":105373366},{"hugoGeneSymbol":"IDSP1","entrezGeneId":3424},{"hugoGeneSymbol":"IDUA","entrezGeneId":3425},{"hugoGeneSymbol":"IER2","entrezGeneId":9592},{"hugoGeneSymbol":"IER3","entrezGeneId":8870},{"hugoGeneSymbol":"IER3-AS1","entrezGeneId":105379695},{"hugoGeneSymbol":"IER3IP1","entrezGeneId":51124},{"hugoGeneSymbol":"IER5","entrezGeneId":51278},{"hugoGeneSymbol":"IER5L","entrezGeneId":389792},{"hugoGeneSymbol":"IFFO1","entrezGeneId":25900},{"hugoGeneSymbol":"IFFO2","entrezGeneId":126917},{"hugoGeneSymbol":"IFI16","entrezGeneId":3428},{"hugoGeneSymbol":"IFI27","entrezGeneId":3429},{"hugoGeneSymbol":"IFI27L1","entrezGeneId":122509},{"hugoGeneSymbol":"IFI27L2","entrezGeneId":83982},{"hugoGeneSymbol":"IFI30","entrezGeneId":10437},{"hugoGeneSymbol":"IFI35","entrezGeneId":3430},{"hugoGeneSymbol":"IFI44","entrezGeneId":10561},{"hugoGeneSymbol":"IFI44L","entrezGeneId":10964},{"hugoGeneSymbol":"IFI6","entrezGeneId":2537},{"hugoGeneSymbol":"IFIH1","entrezGeneId":64135},{"hugoGeneSymbol":"IFIT1","entrezGeneId":3434},{"hugoGeneSymbol":"IFIT1B","entrezGeneId":439996},{"hugoGeneSymbol":"IFIT1P1","entrezGeneId":8373},{"hugoGeneSymbol":"IFIT2","entrezGeneId":3433},{"hugoGeneSymbol":"IFIT3","entrezGeneId":3437},{"hugoGeneSymbol":"IFIT5","entrezGeneId":24138},{"hugoGeneSymbol":"IFIT6P","entrezGeneId":100128465},{"hugoGeneSymbol":"IFITM1","entrezGeneId":8519},{"hugoGeneSymbol":"IFITM10","entrezGeneId":402778},{"hugoGeneSymbol":"IFITM2","entrezGeneId":10581},{"hugoGeneSymbol":"IFITM3","entrezGeneId":10410},{"hugoGeneSymbol":"IFITM4P","entrezGeneId":340198},{"hugoGeneSymbol":"IFITM5","entrezGeneId":387733},{"hugoGeneSymbol":"IFITM8P","entrezGeneId":613204},{"hugoGeneSymbol":"IFITM9P","entrezGeneId":390218},{"hugoGeneSymbol":"IFN1@","entrezGeneId":3438},{"hugoGeneSymbol":"IFNA1","entrezGeneId":3439},{"hugoGeneSymbol":"IFNA10","entrezGeneId":3446},{"hugoGeneSymbol":"IFNA11P","entrezGeneId":3461},{"hugoGeneSymbol":"IFNA12P","entrezGeneId":158011},{"hugoGeneSymbol":"IFNA13","entrezGeneId":3447},{"hugoGeneSymbol":"IFNA14","entrezGeneId":3448},{"hugoGeneSymbol":"IFNA16","entrezGeneId":3449},{"hugoGeneSymbol":"IFNA17","entrezGeneId":3451},{"hugoGeneSymbol":"IFNA2","entrezGeneId":3440},{"hugoGeneSymbol":"IFNA20P","entrezGeneId":3463},{"hugoGeneSymbol":"IFNA21","entrezGeneId":3452},{"hugoGeneSymbol":"IFNA22P","entrezGeneId":3453},{"hugoGeneSymbol":"IFNA4","entrezGeneId":3441},{"hugoGeneSymbol":"IFNA5","entrezGeneId":3442},{"hugoGeneSymbol":"IFNA6","entrezGeneId":3443},{"hugoGeneSymbol":"IFNA7","entrezGeneId":3444},{"hugoGeneSymbol":"IFNA8","entrezGeneId":3445},{"hugoGeneSymbol":"IFNAR1","entrezGeneId":3454},{"hugoGeneSymbol":"IFNAR2","entrezGeneId":3455},{"hugoGeneSymbol":"IFNB1","entrezGeneId":3456},{"hugoGeneSymbol":"IFNE","entrezGeneId":338376},{"hugoGeneSymbol":"IFNG","entrezGeneId":3458},{"hugoGeneSymbol":"IFNG-AS1","entrezGeneId":100885789},{"hugoGeneSymbol":"IFNGR1","entrezGeneId":3459},{"hugoGeneSymbol":"IFNGR2","entrezGeneId":3460},{"hugoGeneSymbol":"IFNK","entrezGeneId":56832},{"hugoGeneSymbol":"IFNL1","entrezGeneId":282618},{"hugoGeneSymbol":"IFNL2","entrezGeneId":282616},{"hugoGeneSymbol":"IFNL3","entrezGeneId":282617},{"hugoGeneSymbol":"IFNL3P1","entrezGeneId":100421129},{"hugoGeneSymbol":"IFNL4","entrezGeneId":101180976},{"hugoGeneSymbol":"IFNL4P1","entrezGeneId":101927833},{"hugoGeneSymbol":"IFNLR1","entrezGeneId":163702},{"hugoGeneSymbol":"IFNNP1","entrezGeneId":654783},{"hugoGeneSymbol":"IFNR","entrezGeneId":3466},{"hugoGeneSymbol":"IFNW1","entrezGeneId":3467},{"hugoGeneSymbol":"IFNWP15","entrezGeneId":100130866},{"hugoGeneSymbol":"IFNWP18","entrezGeneId":360001},{"hugoGeneSymbol":"IFNWP19","entrezGeneId":3474},{"hugoGeneSymbol":"IFNWP2","entrezGeneId":646581},{"hugoGeneSymbol":"IFNWP5","entrezGeneId":392292},{"hugoGeneSymbol":"IFNWP9","entrezGeneId":100130671},{"hugoGeneSymbol":"IFRD1","entrezGeneId":3475},{"hugoGeneSymbol":"IFRD2","entrezGeneId":7866},{"hugoGeneSymbol":"IFT122","entrezGeneId":55764},{"hugoGeneSymbol":"IFT140","entrezGeneId":9742},{"hugoGeneSymbol":"IFT172","entrezGeneId":26160},{"hugoGeneSymbol":"IFT20","entrezGeneId":90410},{"hugoGeneSymbol":"IFT22","entrezGeneId":64792},{"hugoGeneSymbol":"IFT27","entrezGeneId":11020},{"hugoGeneSymbol":"IFT43","entrezGeneId":112752},{"hugoGeneSymbol":"IFT46","entrezGeneId":56912},{"hugoGeneSymbol":"IFT52","entrezGeneId":51098},{"hugoGeneSymbol":"IFT57","entrezGeneId":55081},{"hugoGeneSymbol":"IFT74","entrezGeneId":80173},{"hugoGeneSymbol":"IFT74-AS1","entrezGeneId":101929602},{"hugoGeneSymbol":"IFT80","entrezGeneId":57560},{"hugoGeneSymbol":"IFT81","entrezGeneId":28981},{"hugoGeneSymbol":"IFT88","entrezGeneId":8100},{"hugoGeneSymbol":"IGAD1","entrezGeneId":10986},{"hugoGeneSymbol":"IGAN1","entrezGeneId":60498},{"hugoGeneSymbol":"IGAN2","entrezGeneId":100653384},{"hugoGeneSymbol":"IGAT","entrezGeneId":7927},{"hugoGeneSymbol":"IGBP1","entrezGeneId":3476},{"hugoGeneSymbol":"IGBP1-AS1","entrezGeneId":100873991},{"hugoGeneSymbol":"IGBP1-AS2","entrezGeneId":106478965},{"hugoGeneSymbol":"IGBP1P1","entrezGeneId":280655},{"hugoGeneSymbol":"IGBP1P2","entrezGeneId":645545},{"hugoGeneSymbol":"IGBP1P3","entrezGeneId":391526},{"hugoGeneSymbol":"IGBP1P4","entrezGeneId":391672},{"hugoGeneSymbol":"IGBP1P5","entrezGeneId":391642},{"hugoGeneSymbol":"IGDCC3","entrezGeneId":9543},{"hugoGeneSymbol":"IGDCC4","entrezGeneId":57722},{"hugoGeneSymbol":"IGES","entrezGeneId":3478},{"hugoGeneSymbol":"IGF1","entrezGeneId":3479},{"hugoGeneSymbol":"IGF1R","entrezGeneId":3480},{"hugoGeneSymbol":"IGF2","entrezGeneId":3481},{"hugoGeneSymbol":"IGF2-AS","entrezGeneId":51214},{"hugoGeneSymbol":"IGF2BP1","entrezGeneId":10642},{"hugoGeneSymbol":"IGF2BP2","entrezGeneId":10644},{"hugoGeneSymbol":"IGF2BP2-AS1","entrezGeneId":646600},{"hugoGeneSymbol":"IGF2BP3","entrezGeneId":10643},{"hugoGeneSymbol":"IGF2R","entrezGeneId":3482},{"hugoGeneSymbol":"IGFALS","entrezGeneId":3483},{"hugoGeneSymbol":"IGFBP1","entrezGeneId":3484},{"hugoGeneSymbol":"IGFBP2","entrezGeneId":3485},{"hugoGeneSymbol":"IGFBP3","entrezGeneId":3486},{"hugoGeneSymbol":"IGFBP4","entrezGeneId":3487},{"hugoGeneSymbol":"IGFBP5","entrezGeneId":3488},{"hugoGeneSymbol":"IGFBP6","entrezGeneId":3489},{"hugoGeneSymbol":"IGFBP7","entrezGeneId":3490},{"hugoGeneSymbol":"IGFBP7-AS1","entrezGeneId":255130},{"hugoGeneSymbol":"IGFBPL1","entrezGeneId":347252},{"hugoGeneSymbol":"IGFL1","entrezGeneId":374918},{"hugoGeneSymbol":"IGFL1P1","entrezGeneId":727703},{"hugoGeneSymbol":"IGFL1P2","entrezGeneId":727704},{"hugoGeneSymbol":"IGFL2","entrezGeneId":147920},{"hugoGeneSymbol":"IGFL2-AS1","entrezGeneId":645553},{"hugoGeneSymbol":"IGFL3","entrezGeneId":388555},{"hugoGeneSymbol":"IGFL4","entrezGeneId":444882},{"hugoGeneSymbol":"IGFLR1","entrezGeneId":79713},{"hugoGeneSymbol":"IGFN1","entrezGeneId":91156},{"hugoGeneSymbol":"IGH","entrezGeneId":3492},{"hugoGeneSymbol":"IGHA1","entrezGeneId":3493},{"hugoGeneSymbol":"IGHA2","entrezGeneId":3494},{"hugoGeneSymbol":"IGHD","entrezGeneId":3495},{"hugoGeneSymbol":"IGHD1-1","entrezGeneId":28510},{"hugoGeneSymbol":"IGHD1-14","entrezGeneId":28508},{"hugoGeneSymbol":"IGHD1-20","entrezGeneId":28507},{"hugoGeneSymbol":"IGHD1-26","entrezGeneId":28506},{"hugoGeneSymbol":"IGHD1-7","entrezGeneId":28509},{"hugoGeneSymbol":"IGHD1OR15-1A","entrezGeneId":28335},{"hugoGeneSymbol":"IGHD1OR15-1B","entrezGeneId":28334},{"hugoGeneSymbol":"IGHD2-15","entrezGeneId":28503},{"hugoGeneSymbol":"IGHD2-2","entrezGeneId":28505},{"hugoGeneSymbol":"IGHD2-21","entrezGeneId":28502},{"hugoGeneSymbol":"IGHD2-8","entrezGeneId":28504},{"hugoGeneSymbol":"IGHD2OR15-2A","entrezGeneId":28333},{"hugoGeneSymbol":"IGHD2OR15-2B","entrezGeneId":28332},{"hugoGeneSymbol":"IGHD3-10","entrezGeneId":28499},{"hugoGeneSymbol":"IGHD3-16","entrezGeneId":28498},{"hugoGeneSymbol":"IGHD3-22","entrezGeneId":28497},{"hugoGeneSymbol":"IGHD3-3","entrezGeneId":28501},{"hugoGeneSymbol":"IGHD3-9","entrezGeneId":28500},{"hugoGeneSymbol":"IGHD3OR15-3A","entrezGeneId":28331},{"hugoGeneSymbol":"IGHD3OR15-3B","entrezGeneId":28330},{"hugoGeneSymbol":"IGHD4-11","entrezGeneId":28495},{"hugoGeneSymbol":"IGHD4-17","entrezGeneId":28494},{"hugoGeneSymbol":"IGHD4-23","entrezGeneId":28493},{"hugoGeneSymbol":"IGHD4-4","entrezGeneId":28496},{"hugoGeneSymbol":"IGHD4OR15-4A","entrezGeneId":28329},{"hugoGeneSymbol":"IGHD4OR15-4B","entrezGeneId":28328},{"hugoGeneSymbol":"IGHD5-12","entrezGeneId":28491},{"hugoGeneSymbol":"IGHD5-18","entrezGeneId":28490},{"hugoGeneSymbol":"IGHD5-24","entrezGeneId":28489},{"hugoGeneSymbol":"IGHD5-5","entrezGeneId":28492},{"hugoGeneSymbol":"IGHD5OR15-5A","entrezGeneId":28327},{"hugoGeneSymbol":"IGHD5OR15-5B","entrezGeneId":28326},{"hugoGeneSymbol":"IGHD6-13","entrezGeneId":28487},{"hugoGeneSymbol":"IGHD6-19","entrezGeneId":28486},{"hugoGeneSymbol":"IGHD6-25","entrezGeneId":28485},{"hugoGeneSymbol":"IGHD6-6","entrezGeneId":28488},{"hugoGeneSymbol":"IGHD7-27","entrezGeneId":28484},{"hugoGeneSymbol":"IGHDOR15@","entrezGeneId":3496},{"hugoGeneSymbol":"IGHE","entrezGeneId":3497},{"hugoGeneSymbol":"IGHEP1","entrezGeneId":3498},{"hugoGeneSymbol":"IGHEP2","entrezGeneId":3499},{"hugoGeneSymbol":"IGHG1","entrezGeneId":3500},{"hugoGeneSymbol":"IGHG2","entrezGeneId":3501},{"hugoGeneSymbol":"IGHG3","entrezGeneId":3502},{"hugoGeneSymbol":"IGHG4","entrezGeneId":3503},{"hugoGeneSymbol":"IGHGP","entrezGeneId":3505},{"hugoGeneSymbol":"IGHJ1","entrezGeneId":28483},{"hugoGeneSymbol":"IGHJ1P","entrezGeneId":28482},{"hugoGeneSymbol":"IGHJ2","entrezGeneId":28481},{"hugoGeneSymbol":"IGHJ2P","entrezGeneId":28480},{"hugoGeneSymbol":"IGHJ3","entrezGeneId":28479},{"hugoGeneSymbol":"IGHJ3P","entrezGeneId":28478},{"hugoGeneSymbol":"IGHJ4","entrezGeneId":28477},{"hugoGeneSymbol":"IGHJ5","entrezGeneId":28476},{"hugoGeneSymbol":"IGHJ6","entrezGeneId":28475},{"hugoGeneSymbol":"IGHM","entrezGeneId":3507},{"hugoGeneSymbol":"IGHMBP2","entrezGeneId":3508},{"hugoGeneSymbol":"IGHV1-12","entrezGeneId":28471},{"hugoGeneSymbol":"IGHV1-14","entrezGeneId":28470},{"hugoGeneSymbol":"IGHV1-17","entrezGeneId":28469},{"hugoGeneSymbol":"IGHV1-18","entrezGeneId":28468},{"hugoGeneSymbol":"IGHV1-2","entrezGeneId":28474},{"hugoGeneSymbol":"IGHV1-24","entrezGeneId":28467},{"hugoGeneSymbol":"IGHV1-3","entrezGeneId":28473},{"hugoGeneSymbol":"IGHV1-38-4","entrezGeneId":28460},{"hugoGeneSymbol":"IGHV1-45","entrezGeneId":28466},{"hugoGeneSymbol":"IGHV1-46","entrezGeneId":28465},{"hugoGeneSymbol":"IGHV1-58","entrezGeneId":28464},{"hugoGeneSymbol":"IGHV1-67","entrezGeneId":28463},{"hugoGeneSymbol":"IGHV1-68","entrezGeneId":28462},{"hugoGeneSymbol":"IGHV1-69","entrezGeneId":28461},{"hugoGeneSymbol":"IGHV1-69-2","entrezGeneId":28458},{"hugoGeneSymbol":"IGHV1-69D","entrezGeneId":102723169},{"hugoGeneSymbol":"IGHV1-8","entrezGeneId":28472},{"hugoGeneSymbol":"IGHV1OR15-1","entrezGeneId":388077},{"hugoGeneSymbol":"IGHV1OR15-2","entrezGeneId":100287128},{"hugoGeneSymbol":"IGHV1OR15-3","entrezGeneId":646370},{"hugoGeneSymbol":"IGHV1OR15-4","entrezGeneId":646379},{"hugoGeneSymbol":"IGHV1OR15-5","entrezGeneId":100384884},{"hugoGeneSymbol":"IGHV1OR15-6","entrezGeneId":28320},{"hugoGeneSymbol":"IGHV1OR15-9","entrezGeneId":390531},{"hugoGeneSymbol":"IGHV1OR16-1","entrezGeneId":28315},{"hugoGeneSymbol":"IGHV1OR16-2","entrezGeneId":28314},{"hugoGeneSymbol":"IGHV1OR16-3","entrezGeneId":28313},{"hugoGeneSymbol":"IGHV1OR16-4","entrezGeneId":28312},{"hugoGeneSymbol":"IGHV1OR21-1","entrezGeneId":390530},{"hugoGeneSymbol":"IGHV2-10","entrezGeneId":28456},{"hugoGeneSymbol":"IGHV2-26","entrezGeneId":28455},{"hugoGeneSymbol":"IGHV2-5","entrezGeneId":28457},{"hugoGeneSymbol":"IGHV2-70","entrezGeneId":28454},{"hugoGeneSymbol":"IGHV2-70D","entrezGeneId":102723168},{"hugoGeneSymbol":"IGHV2OR16-5","entrezGeneId":100129631},{"hugoGeneSymbol":"IGHV3-11","entrezGeneId":28450},{"hugoGeneSymbol":"IGHV3-13","entrezGeneId":28449},{"hugoGeneSymbol":"IGHV3-15","entrezGeneId":28448},{"hugoGeneSymbol":"IGHV3-16","entrezGeneId":28447},{"hugoGeneSymbol":"IGHV3-19","entrezGeneId":28446},{"hugoGeneSymbol":"IGHV3-20","entrezGeneId":28445},{"hugoGeneSymbol":"IGHV3-21","entrezGeneId":28444},{"hugoGeneSymbol":"IGHV3-22","entrezGeneId":28443},{"hugoGeneSymbol":"IGHV3-23","entrezGeneId":28442},{"hugoGeneSymbol":"IGHV3-25","entrezGeneId":28441},{"hugoGeneSymbol":"IGHV3-29","entrezGeneId":28440},{"hugoGeneSymbol":"IGHV3-30","entrezGeneId":28439},{"hugoGeneSymbol":"IGHV3-30-2","entrezGeneId":28438},{"hugoGeneSymbol":"IGHV3-30-3","entrezGeneId":57290},{"hugoGeneSymbol":"IGHV3-30-5","entrezGeneId":89770},{"hugoGeneSymbol":"IGHV3-32","entrezGeneId":28435},{"hugoGeneSymbol":"IGHV3-33","entrezGeneId":28434},{"hugoGeneSymbol":"IGHV3-33-2","entrezGeneId":28433},{"hugoGeneSymbol":"IGHV3-35","entrezGeneId":28432},{"hugoGeneSymbol":"IGHV3-36","entrezGeneId":28431},{"hugoGeneSymbol":"IGHV3-37","entrezGeneId":28430},{"hugoGeneSymbol":"IGHV3-38","entrezGeneId":28429},{"hugoGeneSymbol":"IGHV3-38-3","entrezGeneId":28404},{"hugoGeneSymbol":"IGHV3-41","entrezGeneId":28428},{"hugoGeneSymbol":"IGHV3-42","entrezGeneId":28427},{"hugoGeneSymbol":"IGHV3-43","entrezGeneId":28426},{"hugoGeneSymbol":"IGHV3-43D","entrezGeneId":103106901},{"hugoGeneSymbol":"IGHV3-47","entrezGeneId":28425},{"hugoGeneSymbol":"IGHV3-48","entrezGeneId":28424},{"hugoGeneSymbol":"IGHV3-49","entrezGeneId":28423},{"hugoGeneSymbol":"IGHV3-50","entrezGeneId":28422},{"hugoGeneSymbol":"IGHV3-52","entrezGeneId":28421},{"hugoGeneSymbol":"IGHV3-53","entrezGeneId":28420},{"hugoGeneSymbol":"IGHV3-54","entrezGeneId":28419},{"hugoGeneSymbol":"IGHV3-57","entrezGeneId":28418},{"hugoGeneSymbol":"IGHV3-6","entrezGeneId":28453},{"hugoGeneSymbol":"IGHV3-60","entrezGeneId":28417},{"hugoGeneSymbol":"IGHV3-62","entrezGeneId":28416},{"hugoGeneSymbol":"IGHV3-63","entrezGeneId":28415},{"hugoGeneSymbol":"IGHV3-64","entrezGeneId":28414},{"hugoGeneSymbol":"IGHV3-64D","entrezGeneId":102723170},{"hugoGeneSymbol":"IGHV3-65","entrezGeneId":28413},{"hugoGeneSymbol":"IGHV3-66","entrezGeneId":28412},{"hugoGeneSymbol":"IGHV3-69-1","entrezGeneId":28402},{"hugoGeneSymbol":"IGHV3-7","entrezGeneId":28452},{"hugoGeneSymbol":"IGHV3-71","entrezGeneId":28411},{"hugoGeneSymbol":"IGHV3-72","entrezGeneId":28410},{"hugoGeneSymbol":"IGHV3-73","entrezGeneId":28409},{"hugoGeneSymbol":"IGHV3-74","entrezGeneId":28408},{"hugoGeneSymbol":"IGHV3-75","entrezGeneId":28407},{"hugoGeneSymbol":"IGHV3-76","entrezGeneId":28406},{"hugoGeneSymbol":"IGHV3-79","entrezGeneId":28405},{"hugoGeneSymbol":"IGHV3-9","entrezGeneId":28451},{"hugoGeneSymbol":"IGHV3OR15-7","entrezGeneId":28318},{"hugoGeneSymbol":"IGHV3OR16-10","entrezGeneId":28306},{"hugoGeneSymbol":"IGHV3OR16-11","entrezGeneId":28305},{"hugoGeneSymbol":"IGHV3OR16-12","entrezGeneId":28304},{"hugoGeneSymbol":"IGHV3OR16-13","entrezGeneId":100287372},{"hugoGeneSymbol":"IGHV3OR16-14","entrezGeneId":100568447},{"hugoGeneSymbol":"IGHV3OR16-15","entrezGeneId":28301},{"hugoGeneSymbol":"IGHV3OR16-16","entrezGeneId":28300},{"hugoGeneSymbol":"IGHV3OR16-6","entrezGeneId":647187},{"hugoGeneSymbol":"IGHV3OR16-7","entrezGeneId":28309},{"hugoGeneSymbol":"IGHV3OR16-8","entrezGeneId":388255},{"hugoGeneSymbol":"IGHV3OR16-9","entrezGeneId":28307},{"hugoGeneSymbol":"IGHV4-28","entrezGeneId":28400},{"hugoGeneSymbol":"IGHV4-30-1","entrezGeneId":28399},{"hugoGeneSymbol":"IGHV4-30-2","entrezGeneId":28398},{"hugoGeneSymbol":"IGHV4-30-4","entrezGeneId":28397},{"hugoGeneSymbol":"IGHV4-31","entrezGeneId":28396},{"hugoGeneSymbol":"IGHV4-34","entrezGeneId":28395},{"hugoGeneSymbol":"IGHV4-38-2","entrezGeneId":28389},{"hugoGeneSymbol":"IGHV4-39","entrezGeneId":28394},{"hugoGeneSymbol":"IGHV4-4","entrezGeneId":28401},{"hugoGeneSymbol":"IGHV4-55","entrezGeneId":28393},{"hugoGeneSymbol":"IGHV4-59","entrezGeneId":28392},{"hugoGeneSymbol":"IGHV4-61","entrezGeneId":28391},{"hugoGeneSymbol":"IGHV4-80","entrezGeneId":28390},{"hugoGeneSymbol":"IGHV4OR15-8","entrezGeneId":28317},{"hugoGeneSymbol":"IGHV5-10-1","entrezGeneId":28386},{"hugoGeneSymbol":"IGHV5-51","entrezGeneId":28388},{"hugoGeneSymbol":"IGHV5-78","entrezGeneId":28387},{"hugoGeneSymbol":"IGHV6-1","entrezGeneId":28385},{"hugoGeneSymbol":"IGHV7-27","entrezGeneId":28383},{"hugoGeneSymbol":"IGHV7-34-1","entrezGeneId":28382},{"hugoGeneSymbol":"IGHV7-4-1","entrezGeneId":57289},{"hugoGeneSymbol":"IGHV7-40","entrezGeneId":28381},{"hugoGeneSymbol":"IGHV7-56","entrezGeneId":28380},{"hugoGeneSymbol":"IGHV7-81","entrezGeneId":28378},{"hugoGeneSymbol":"IGHVII-1-1","entrezGeneId":28377},{"hugoGeneSymbol":"IGHVII-15-1","entrezGeneId":28376},{"hugoGeneSymbol":"IGHVII-20-1","entrezGeneId":28375},{"hugoGeneSymbol":"IGHVII-22-1","entrezGeneId":28374},{"hugoGeneSymbol":"IGHVII-26-2","entrezGeneId":28373},{"hugoGeneSymbol":"IGHVII-28-1","entrezGeneId":28372},{"hugoGeneSymbol":"IGHVII-30-1","entrezGeneId":28371},{"hugoGeneSymbol":"IGHVII-30-21","entrezGeneId":107548099},{"hugoGeneSymbol":"IGHVII-31-1","entrezGeneId":28370},{"hugoGeneSymbol":"IGHVII-33-1","entrezGeneId":28369},{"hugoGeneSymbol":"IGHVII-40-1","entrezGeneId":28368},{"hugoGeneSymbol":"IGHVII-43-1","entrezGeneId":28367},{"hugoGeneSymbol":"IGHVII-44-2","entrezGeneId":28366},{"hugoGeneSymbol":"IGHVII-46-1","entrezGeneId":28365},{"hugoGeneSymbol":"IGHVII-49-1","entrezGeneId":28364},{"hugoGeneSymbol":"IGHVII-51-2","entrezGeneId":28363},{"hugoGeneSymbol":"IGHVII-53-1","entrezGeneId":28362},{"hugoGeneSymbol":"IGHVII-60-1","entrezGeneId":28361},{"hugoGeneSymbol":"IGHVII-62-1","entrezGeneId":28360},{"hugoGeneSymbol":"IGHVII-65-1","entrezGeneId":28359},{"hugoGeneSymbol":"IGHVII-67-1","entrezGeneId":28358},{"hugoGeneSymbol":"IGHVII-74-1","entrezGeneId":28357},{"hugoGeneSymbol":"IGHVII-78-1","entrezGeneId":28356},{"hugoGeneSymbol":"IGHVIII-11-1","entrezGeneId":28352},{"hugoGeneSymbol":"IGHVIII-13-1","entrezGeneId":28351},{"hugoGeneSymbol":"IGHVIII-16-1","entrezGeneId":28350},{"hugoGeneSymbol":"IGHVIII-2-1","entrezGeneId":28355},{"hugoGeneSymbol":"IGHVIII-22-2","entrezGeneId":28349},{"hugoGeneSymbol":"IGHVIII-25-1","entrezGeneId":28348},{"hugoGeneSymbol":"IGHVIII-26-1","entrezGeneId":28347},{"hugoGeneSymbol":"IGHVIII-38-1","entrezGeneId":28346},{"hugoGeneSymbol":"IGHVIII-44","entrezGeneId":28345},{"hugoGeneSymbol":"IGHVIII-47-1","entrezGeneId":28344},{"hugoGeneSymbol":"IGHVIII-5-1","entrezGeneId":28354},{"hugoGeneSymbol":"IGHVIII-5-2","entrezGeneId":28353},{"hugoGeneSymbol":"IGHVIII-51-1","entrezGeneId":28343},{"hugoGeneSymbol":"IGHVIII-67-2","entrezGeneId":28342},{"hugoGeneSymbol":"IGHVIII-67-3","entrezGeneId":28341},{"hugoGeneSymbol":"IGHVIII-67-4","entrezGeneId":28340},{"hugoGeneSymbol":"IGHVIII-76-1","entrezGeneId":28339},{"hugoGeneSymbol":"IGHVIII-82","entrezGeneId":28338},{"hugoGeneSymbol":"IGHVIV-44-1","entrezGeneId":28337},{"hugoGeneSymbol":"IGIP","entrezGeneId":492311},{"hugoGeneSymbol":"IGJP1","entrezGeneId":3513},{"hugoGeneSymbol":"IGK","entrezGeneId":50802},{"hugoGeneSymbol":"IGKC","entrezGeneId":3514},{"hugoGeneSymbol":"IGKDEL","entrezGeneId":3515},{"hugoGeneSymbol":"IGKJ","entrezGeneId":7842},{"hugoGeneSymbol":"IGKJ1","entrezGeneId":28950},{"hugoGeneSymbol":"IGKJ2","entrezGeneId":28949},{"hugoGeneSymbol":"IGKJ3","entrezGeneId":28948},{"hugoGeneSymbol":"IGKJ4","entrezGeneId":28947},{"hugoGeneSymbol":"IGKJ5","entrezGeneId":28946},{"hugoGeneSymbol":"IGKV1-12","entrezGeneId":28940},{"hugoGeneSymbol":"IGKV1-13","entrezGeneId":28939},{"hugoGeneSymbol":"IGKV1-16","entrezGeneId":28938},{"hugoGeneSymbol":"IGKV1-17","entrezGeneId":28937},{"hugoGeneSymbol":"IGKV1-22","entrezGeneId":28936},{"hugoGeneSymbol":"IGKV1-27","entrezGeneId":28935},{"hugoGeneSymbol":"IGKV1-32","entrezGeneId":28934},{"hugoGeneSymbol":"IGKV1-33","entrezGeneId":28933},{"hugoGeneSymbol":"IGKV1-35","entrezGeneId":28932},{"hugoGeneSymbol":"IGKV1-37","entrezGeneId":28931},{"hugoGeneSymbol":"IGKV1-39","entrezGeneId":28930},{"hugoGeneSymbol":"IGKV1-5","entrezGeneId":28299},{"hugoGeneSymbol":"IGKV1-6","entrezGeneId":28943},{"hugoGeneSymbol":"IGKV1-8","entrezGeneId":28942},{"hugoGeneSymbol":"IGKV1-9","entrezGeneId":28941},{"hugoGeneSymbol":"IGKV1D-12","entrezGeneId":28903},{"hugoGeneSymbol":"IGKV1D-13","entrezGeneId":28902},{"hugoGeneSymbol":"IGKV1D-16","entrezGeneId":28901},{"hugoGeneSymbol":"IGKV1D-17","entrezGeneId":28900},{"hugoGeneSymbol":"IGKV1D-22","entrezGeneId":28899},{"hugoGeneSymbol":"IGKV1D-27","entrezGeneId":28898},{"hugoGeneSymbol":"IGKV1D-32","entrezGeneId":28897},{"hugoGeneSymbol":"IGKV1D-33","entrezGeneId":28896},{"hugoGeneSymbol":"IGKV1D-35","entrezGeneId":28895},{"hugoGeneSymbol":"IGKV1D-37","entrezGeneId":28894},{"hugoGeneSymbol":"IGKV1D-39","entrezGeneId":28893},{"hugoGeneSymbol":"IGKV1D-42","entrezGeneId":28892},{"hugoGeneSymbol":"IGKV1D-43","entrezGeneId":28891},{"hugoGeneSymbol":"IGKV1D-8","entrezGeneId":28904},{"hugoGeneSymbol":"IGKV1OR-2","entrezGeneId":3532},{"hugoGeneSymbol":"IGKV1OR-3","entrezGeneId":644731},{"hugoGeneSymbol":"IGKV1OR-4","entrezGeneId":3534},{"hugoGeneSymbol":"IGKV1OR1-1","entrezGeneId":3525},{"hugoGeneSymbol":"IGKV1OR10-1","entrezGeneId":642424},{"hugoGeneSymbol":"IGKV1OR15-118","entrezGeneId":100312985},{"hugoGeneSymbol":"IGKV1OR2-0","entrezGeneId":28867},{"hugoGeneSymbol":"IGKV1OR2-1","entrezGeneId":3531},{"hugoGeneSymbol":"IGKV1OR2-108","entrezGeneId":28862},{"hugoGeneSymbol":"IGKV1OR2-11","entrezGeneId":28863},{"hugoGeneSymbol":"IGKV1OR2-118","entrezGeneId":339562},{"hugoGeneSymbol":"IGKV1OR2-2","entrezGeneId":106481689},{"hugoGeneSymbol":"IGKV1OR2-3","entrezGeneId":28866},{"hugoGeneSymbol":"IGKV1OR2-6","entrezGeneId":28865},{"hugoGeneSymbol":"IGKV1OR2-9","entrezGeneId":28864},{"hugoGeneSymbol":"IGKV1OR22-1","entrezGeneId":3530},{"hugoGeneSymbol":"IGKV1OR22-5","entrezGeneId":28850},{"hugoGeneSymbol":"IGKV1OR9-1","entrezGeneId":103352540},{"hugoGeneSymbol":"IGKV1OR9-2","entrezGeneId":106480274},{"hugoGeneSymbol":"IGKV1ORY-1","entrezGeneId":439957},{"hugoGeneSymbol":"IGKV2-10","entrezGeneId":28928},{"hugoGeneSymbol":"IGKV2-14","entrezGeneId":28927},{"hugoGeneSymbol":"IGKV2-18","entrezGeneId":28926},{"hugoGeneSymbol":"IGKV2-19","entrezGeneId":28925},{"hugoGeneSymbol":"IGKV2-23","entrezGeneId":28924},{"hugoGeneSymbol":"IGKV2-24","entrezGeneId":28923},{"hugoGeneSymbol":"IGKV2-26","entrezGeneId":28922},{"hugoGeneSymbol":"IGKV2-28","entrezGeneId":28921},{"hugoGeneSymbol":"IGKV2-29","entrezGeneId":28920},{"hugoGeneSymbol":"IGKV2-30","entrezGeneId":28919},{"hugoGeneSymbol":"IGKV2-36","entrezGeneId":28918},{"hugoGeneSymbol":"IGKV2-38","entrezGeneId":28917},{"hugoGeneSymbol":"IGKV2-4","entrezGeneId":28929},{"hugoGeneSymbol":"IGKV2-40","entrezGeneId":28916},{"hugoGeneSymbol":"IGKV2D-10","entrezGeneId":28890},{"hugoGeneSymbol":"IGKV2D-14","entrezGeneId":28889},{"hugoGeneSymbol":"IGKV2D-18","entrezGeneId":28888},{"hugoGeneSymbol":"IGKV2D-19","entrezGeneId":28887},{"hugoGeneSymbol":"IGKV2D-23","entrezGeneId":28886},{"hugoGeneSymbol":"IGKV2D-24","entrezGeneId":28885},{"hugoGeneSymbol":"IGKV2D-26","entrezGeneId":28884},{"hugoGeneSymbol":"IGKV2D-28","entrezGeneId":28883},{"hugoGeneSymbol":"IGKV2D-29","entrezGeneId":28882},{"hugoGeneSymbol":"IGKV2D-30","entrezGeneId":28881},{"hugoGeneSymbol":"IGKV2D-36","entrezGeneId":28880},{"hugoGeneSymbol":"IGKV2D-38","entrezGeneId":28879},{"hugoGeneSymbol":"IGKV2D-40","entrezGeneId":28878},{"hugoGeneSymbol":"IGKV2OR2-1","entrezGeneId":28861},{"hugoGeneSymbol":"IGKV2OR2-10","entrezGeneId":28855},{"hugoGeneSymbol":"IGKV2OR2-2","entrezGeneId":28859},{"hugoGeneSymbol":"IGKV2OR2-4","entrezGeneId":28858},{"hugoGeneSymbol":"IGKV2OR2-7","entrezGeneId":652873},{"hugoGeneSymbol":"IGKV2OR2-7D","entrezGeneId":100310869},{"hugoGeneSymbol":"IGKV2OR2-8","entrezGeneId":100996600},{"hugoGeneSymbol":"IGKV2OR22-3","entrezGeneId":3529},{"hugoGeneSymbol":"IGKV2OR22-4","entrezGeneId":28847},{"hugoGeneSymbol":"IGKV3-11","entrezGeneId":28914},{"hugoGeneSymbol":"IGKV3-15","entrezGeneId":28913},{"hugoGeneSymbol":"IGKV3-20","entrezGeneId":28912},{"hugoGeneSymbol":"IGKV3-25","entrezGeneId":28911},{"hugoGeneSymbol":"IGKV3-31","entrezGeneId":28910},{"hugoGeneSymbol":"IGKV3-34","entrezGeneId":28909},{"hugoGeneSymbol":"IGKV3-7","entrezGeneId":28915},{"hugoGeneSymbol":"IGKV3D-11","entrezGeneId":28876},{"hugoGeneSymbol":"IGKV3D-15","entrezGeneId":28875},{"hugoGeneSymbol":"IGKV3D-20","entrezGeneId":28874},{"hugoGeneSymbol":"IGKV3D-25","entrezGeneId":28873},{"hugoGeneSymbol":"IGKV3D-31","entrezGeneId":28872},{"hugoGeneSymbol":"IGKV3D-34","entrezGeneId":28871},{"hugoGeneSymbol":"IGKV3D-7","entrezGeneId":28877},{"hugoGeneSymbol":"IGKV3OR2-268","entrezGeneId":3523},{"hugoGeneSymbol":"IGKV3OR2-5","entrezGeneId":28854},{"hugoGeneSymbol":"IGKV3OR22-2","entrezGeneId":3527},{"hugoGeneSymbol":"IGKV4-1","entrezGeneId":28908},{"hugoGeneSymbol":"IGKV5-2","entrezGeneId":28907},{"hugoGeneSymbol":"IGKV6-21","entrezGeneId":28906},{"hugoGeneSymbol":"IGKV6D-21","entrezGeneId":28870},{"hugoGeneSymbol":"IGKV6D-41","entrezGeneId":28869},{"hugoGeneSymbol":"IGKV7-3","entrezGeneId":28905},{"hugoGeneSymbol":"IGKV@","entrezGeneId":3519},{"hugoGeneSymbol":"IGL","entrezGeneId":3535},{"hugoGeneSymbol":"IGLC1","entrezGeneId":3537},{"hugoGeneSymbol":"IGLC2","entrezGeneId":3538},{"hugoGeneSymbol":"IGLC3","entrezGeneId":3539},{"hugoGeneSymbol":"IGLC4","entrezGeneId":3540},{"hugoGeneSymbol":"IGLC5","entrezGeneId":3541},{"hugoGeneSymbol":"IGLC6","entrezGeneId":3542},{"hugoGeneSymbol":"IGLC7","entrezGeneId":28834},{"hugoGeneSymbol":"IGLCOR22-1","entrezGeneId":84096},{"hugoGeneSymbol":"IGLCOR22-2","entrezGeneId":84086},{"hugoGeneSymbol":"IGLJ","entrezGeneId":8217},{"hugoGeneSymbol":"IGLJ1","entrezGeneId":28833},{"hugoGeneSymbol":"IGLJ2","entrezGeneId":28832},{"hugoGeneSymbol":"IGLJ3","entrezGeneId":28831},{"hugoGeneSymbol":"IGLJ4","entrezGeneId":28830},{"hugoGeneSymbol":"IGLJ5","entrezGeneId":28829},{"hugoGeneSymbol":"IGLJ6","entrezGeneId":28828},{"hugoGeneSymbol":"IGLJ7","entrezGeneId":28827},{"hugoGeneSymbol":"IGLJCOR18","entrezGeneId":204777},{"hugoGeneSymbol":"IGLL1","entrezGeneId":3543},{"hugoGeneSymbol":"IGLL2P","entrezGeneId":3544},{"hugoGeneSymbol":"IGLL3P","entrezGeneId":91353},{"hugoGeneSymbol":"IGLL4P","entrezGeneId":100287528},{"hugoGeneSymbol":"IGLL5","entrezGeneId":100423062},{"hugoGeneSymbol":"IGLON5","entrezGeneId":402665},{"hugoGeneSymbol":"IGLP1","entrezGeneId":7925},{"hugoGeneSymbol":"IGLP2","entrezGeneId":7926},{"hugoGeneSymbol":"IGLV1-36","entrezGeneId":28826},{"hugoGeneSymbol":"IGLV1-40","entrezGeneId":28825},{"hugoGeneSymbol":"IGLV1-41","entrezGeneId":28824},{"hugoGeneSymbol":"IGLV1-44","entrezGeneId":28823},{"hugoGeneSymbol":"IGLV1-47","entrezGeneId":28822},{"hugoGeneSymbol":"IGLV1-50","entrezGeneId":28821},{"hugoGeneSymbol":"IGLV1-51","entrezGeneId":28820},{"hugoGeneSymbol":"IGLV1-62","entrezGeneId":28819},{"hugoGeneSymbol":"IGLV10-54","entrezGeneId":28772},{"hugoGeneSymbol":"IGLV10-67","entrezGeneId":28771},{"hugoGeneSymbol":"IGLV11-55","entrezGeneId":28770},{"hugoGeneSymbol":"IGLV2-11","entrezGeneId":28816},{"hugoGeneSymbol":"IGLV2-14","entrezGeneId":28815},{"hugoGeneSymbol":"IGLV2-18","entrezGeneId":28814},{"hugoGeneSymbol":"IGLV2-23","entrezGeneId":28813},{"hugoGeneSymbol":"IGLV2-28","entrezGeneId":28812},{"hugoGeneSymbol":"IGLV2-33","entrezGeneId":28811},{"hugoGeneSymbol":"IGLV2-34","entrezGeneId":28810},{"hugoGeneSymbol":"IGLV2-5","entrezGeneId":28818},{"hugoGeneSymbol":"IGLV2-8","entrezGeneId":28817},{"hugoGeneSymbol":"IGLV3-1","entrezGeneId":28809},{"hugoGeneSymbol":"IGLV3-10","entrezGeneId":28803},{"hugoGeneSymbol":"IGLV3-12","entrezGeneId":28802},{"hugoGeneSymbol":"IGLV3-13","entrezGeneId":28801},{"hugoGeneSymbol":"IGLV3-15","entrezGeneId":28800},{"hugoGeneSymbol":"IGLV3-16","entrezGeneId":28799},{"hugoGeneSymbol":"IGLV3-17","entrezGeneId":28798},{"hugoGeneSymbol":"IGLV3-19","entrezGeneId":28797},{"hugoGeneSymbol":"IGLV3-2","entrezGeneId":28808},{"hugoGeneSymbol":"IGLV3-21","entrezGeneId":28796},{"hugoGeneSymbol":"IGLV3-22","entrezGeneId":28795},{"hugoGeneSymbol":"IGLV3-24","entrezGeneId":28794},{"hugoGeneSymbol":"IGLV3-25","entrezGeneId":28793},{"hugoGeneSymbol":"IGLV3-26","entrezGeneId":28792},{"hugoGeneSymbol":"IGLV3-27","entrezGeneId":28791},{"hugoGeneSymbol":"IGLV3-29","entrezGeneId":28790},{"hugoGeneSymbol":"IGLV3-30","entrezGeneId":28789},{"hugoGeneSymbol":"IGLV3-31","entrezGeneId":28788},{"hugoGeneSymbol":"IGLV3-32","entrezGeneId":28787},{"hugoGeneSymbol":"IGLV3-4","entrezGeneId":28807},{"hugoGeneSymbol":"IGLV3-6","entrezGeneId":28806},{"hugoGeneSymbol":"IGLV3-7","entrezGeneId":28805},{"hugoGeneSymbol":"IGLV3-9","entrezGeneId":28804},{"hugoGeneSymbol":"IGLV4-3","entrezGeneId":28786},{"hugoGeneSymbol":"IGLV4-60","entrezGeneId":28785},{"hugoGeneSymbol":"IGLV4-69","entrezGeneId":28784},{"hugoGeneSymbol":"IGLV5-37","entrezGeneId":28783},{"hugoGeneSymbol":"IGLV5-39","entrezGeneId":28782},{"hugoGeneSymbol":"IGLV5-45","entrezGeneId":28781},{"hugoGeneSymbol":"IGLV5-48","entrezGeneId":28780},{"hugoGeneSymbol":"IGLV5-52","entrezGeneId":28779},{"hugoGeneSymbol":"IGLV6-57","entrezGeneId":28778},{"hugoGeneSymbol":"IGLV7-35","entrezGeneId":28777},{"hugoGeneSymbol":"IGLV7-43","entrezGeneId":28776},{"hugoGeneSymbol":"IGLV7-46","entrezGeneId":28775},{"hugoGeneSymbol":"IGLV8-61","entrezGeneId":28774},{"hugoGeneSymbol":"IGLV8OR8-1","entrezGeneId":100996586},{"hugoGeneSymbol":"IGLV9-49","entrezGeneId":28773},{"hugoGeneSymbol":"IGLV@","entrezGeneId":3546},{"hugoGeneSymbol":"IGLVI-20","entrezGeneId":28769},{"hugoGeneSymbol":"IGLVI-38","entrezGeneId":28768},{"hugoGeneSymbol":"IGLVI-42","entrezGeneId":28767},{"hugoGeneSymbol":"IGLVI-56","entrezGeneId":28766},{"hugoGeneSymbol":"IGLVI-63","entrezGeneId":28765},{"hugoGeneSymbol":"IGLVI-68","entrezGeneId":28764},{"hugoGeneSymbol":"IGLVI-70","entrezGeneId":28763},{"hugoGeneSymbol":"IGLVIV-53","entrezGeneId":28762},{"hugoGeneSymbol":"IGLVIV-59","entrezGeneId":28761},{"hugoGeneSymbol":"IGLVIV-64","entrezGeneId":28760},{"hugoGeneSymbol":"IGLVIV-65","entrezGeneId":28759},{"hugoGeneSymbol":"IGLVIV-66-1","entrezGeneId":84097},{"hugoGeneSymbol":"IGLVIVOR22-1","entrezGeneId":84088},{"hugoGeneSymbol":"IGLVIVOR22-2","entrezGeneId":84087},{"hugoGeneSymbol":"IGLVV-58","entrezGeneId":28758},{"hugoGeneSymbol":"IGLVV-66","entrezGeneId":28757},{"hugoGeneSymbol":"IGLVVI-22-1","entrezGeneId":84091},{"hugoGeneSymbol":"IGLVVI-25-1","entrezGeneId":84090},{"hugoGeneSymbol":"IGLVVII-41-1","entrezGeneId":84089},{"hugoGeneSymbol":"IGSF1","entrezGeneId":3547},{"hugoGeneSymbol":"IGSF10","entrezGeneId":285313},{"hugoGeneSymbol":"IGSF11","entrezGeneId":152404},{"hugoGeneSymbol":"IGSF11-AS1","entrezGeneId":100506765},{"hugoGeneSymbol":"IGSF21","entrezGeneId":84966},{"hugoGeneSymbol":"IGSF21-AS1","entrezGeneId":105376814},{"hugoGeneSymbol":"IGSF22","entrezGeneId":283284},{"hugoGeneSymbol":"IGSF23","entrezGeneId":147710},{"hugoGeneSymbol":"IGSF3","entrezGeneId":3321},{"hugoGeneSymbol":"IGSF5","entrezGeneId":150084},{"hugoGeneSymbol":"IGSF6","entrezGeneId":10261},{"hugoGeneSymbol":"IGSF6-DREV1","entrezGeneId":65978},{"hugoGeneSymbol":"IGSF8","entrezGeneId":93185},{"hugoGeneSymbol":"IGSF9","entrezGeneId":57549},{"hugoGeneSymbol":"IGSF9B","entrezGeneId":22997},{"hugoGeneSymbol":"IH","entrezGeneId":100188864},{"hugoGeneSymbol":"IHG1","entrezGeneId":3548},{"hugoGeneSymbol":"IHH","entrezGeneId":3549},{"hugoGeneSymbol":"IHPS2","entrezGeneId":780923},{"hugoGeneSymbol":"IHPS3","entrezGeneId":100188876},{"hugoGeneSymbol":"IHPS4","entrezGeneId":100188772},{"hugoGeneSymbol":"IHPS5","entrezGeneId":100270639},{"hugoGeneSymbol":"IK","entrezGeneId":3550},{"hugoGeneSymbol":"IKBIP","entrezGeneId":121457},{"hugoGeneSymbol":"IKBKB","entrezGeneId":3551},{"hugoGeneSymbol":"IKBKE","entrezGeneId":9641},{"hugoGeneSymbol":"IKBKG","entrezGeneId":8517},{"hugoGeneSymbol":"IKBKGP1","entrezGeneId":246210},{"hugoGeneSymbol":"IKZF1","entrezGeneId":10320},{"hugoGeneSymbol":"IKZF2","entrezGeneId":22807},{"hugoGeneSymbol":"IKZF3","entrezGeneId":22806},{"hugoGeneSymbol":"IKZF4","entrezGeneId":64375},{"hugoGeneSymbol":"IKZF5","entrezGeneId":64376},{"hugoGeneSymbol":"IL10","entrezGeneId":3586},{"hugoGeneSymbol":"IL10RA","entrezGeneId":3587},{"hugoGeneSymbol":"IL10RB","entrezGeneId":3588},{"hugoGeneSymbol":"IL10RB-DT","entrezGeneId":100288432},{"hugoGeneSymbol":"IL11","entrezGeneId":3589},{"hugoGeneSymbol":"IL11RA","entrezGeneId":3590},{"hugoGeneSymbol":"IL12A","entrezGeneId":3592},{"hugoGeneSymbol":"IL12A-AS1","entrezGeneId":101928376},{"hugoGeneSymbol":"IL12B","entrezGeneId":3593},{"hugoGeneSymbol":"IL12RB1","entrezGeneId":3594},{"hugoGeneSymbol":"IL12RB2","entrezGeneId":3595},{"hugoGeneSymbol":"IL13","entrezGeneId":3596},{"hugoGeneSymbol":"IL13RA1","entrezGeneId":3597},{"hugoGeneSymbol":"IL13RA2","entrezGeneId":3598},{"hugoGeneSymbol":"IL15","entrezGeneId":3600},{"hugoGeneSymbol":"IL15RA","entrezGeneId":3601},{"hugoGeneSymbol":"IL16","entrezGeneId":3603},{"hugoGeneSymbol":"IL17A","entrezGeneId":3605},{"hugoGeneSymbol":"IL17B","entrezGeneId":27190},{"hugoGeneSymbol":"IL17C","entrezGeneId":27189},{"hugoGeneSymbol":"IL17D","entrezGeneId":53342},{"hugoGeneSymbol":"IL17F","entrezGeneId":112744},{"hugoGeneSymbol":"IL17RA","entrezGeneId":23765},{"hugoGeneSymbol":"IL17RB","entrezGeneId":55540},{"hugoGeneSymbol":"IL17RC","entrezGeneId":84818},{"hugoGeneSymbol":"IL17RD","entrezGeneId":54756},{"hugoGeneSymbol":"IL17RE","entrezGeneId":132014},{"hugoGeneSymbol":"IL17REL","entrezGeneId":400935},{"hugoGeneSymbol":"IL18","entrezGeneId":3606},{"hugoGeneSymbol":"IL18BP","entrezGeneId":10068},{"hugoGeneSymbol":"IL18R1","entrezGeneId":8809},{"hugoGeneSymbol":"IL18RAP","entrezGeneId":8807},{"hugoGeneSymbol":"IL19","entrezGeneId":29949},{"hugoGeneSymbol":"IL1A","entrezGeneId":3552},{"hugoGeneSymbol":"IL1B","entrezGeneId":3553},{"hugoGeneSymbol":"IL1F10","entrezGeneId":84639},{"hugoGeneSymbol":"IL1R1","entrezGeneId":3554},{"hugoGeneSymbol":"IL1R2","entrezGeneId":7850},{"hugoGeneSymbol":"IL1RAP","entrezGeneId":3556},{"hugoGeneSymbol":"IL1RAPL1","entrezGeneId":11141},{"hugoGeneSymbol":"IL1RAPL2","entrezGeneId":26280},{"hugoGeneSymbol":"IL1RL1","entrezGeneId":9173},{"hugoGeneSymbol":"IL1RL2","entrezGeneId":8808},{"hugoGeneSymbol":"IL1RN","entrezGeneId":3557},{"hugoGeneSymbol":"IL2","entrezGeneId":3558},{"hugoGeneSymbol":"IL20","entrezGeneId":50604},{"hugoGeneSymbol":"IL20RA","entrezGeneId":53832},{"hugoGeneSymbol":"IL20RB","entrezGeneId":53833},{"hugoGeneSymbol":"IL20RB-AS1","entrezGeneId":107986136},{"hugoGeneSymbol":"IL21","entrezGeneId":59067},{"hugoGeneSymbol":"IL21-AS1","entrezGeneId":100996941},{"hugoGeneSymbol":"IL21R","entrezGeneId":50615},{"hugoGeneSymbol":"IL21R-AS1","entrezGeneId":283888},{"hugoGeneSymbol":"IL22","entrezGeneId":50616},{"hugoGeneSymbol":"IL22RA1","entrezGeneId":58985},{"hugoGeneSymbol":"IL22RA2","entrezGeneId":116379},{"hugoGeneSymbol":"IL23A","entrezGeneId":51561},{"hugoGeneSymbol":"IL23R","entrezGeneId":149233},{"hugoGeneSymbol":"IL24","entrezGeneId":11009},{"hugoGeneSymbol":"IL25","entrezGeneId":64806},{"hugoGeneSymbol":"IL26","entrezGeneId":55801},{"hugoGeneSymbol":"IL27","entrezGeneId":246778},{"hugoGeneSymbol":"IL27RA","entrezGeneId":9466},{"hugoGeneSymbol":"IL2RA","entrezGeneId":3559},{"hugoGeneSymbol":"IL2RB","entrezGeneId":3560},{"hugoGeneSymbol":"IL2RG","entrezGeneId":3561},{"hugoGeneSymbol":"IL3","entrezGeneId":3562},{"hugoGeneSymbol":"IL31","entrezGeneId":386653},{"hugoGeneSymbol":"IL31RA","entrezGeneId":133396},{"hugoGeneSymbol":"IL32","entrezGeneId":9235},{"hugoGeneSymbol":"IL33","entrezGeneId":90865},{"hugoGeneSymbol":"IL34","entrezGeneId":146433},{"hugoGeneSymbol":"IL36A","entrezGeneId":27179},{"hugoGeneSymbol":"IL36B","entrezGeneId":27177},{"hugoGeneSymbol":"IL36G","entrezGeneId":56300},{"hugoGeneSymbol":"IL36RN","entrezGeneId":26525},{"hugoGeneSymbol":"IL37","entrezGeneId":27178},{"hugoGeneSymbol":"IL3RA","entrezGeneId":3563},{"hugoGeneSymbol":"IL4","entrezGeneId":3565},{"hugoGeneSymbol":"IL4I1","entrezGeneId":259307},{"hugoGeneSymbol":"IL4R","entrezGeneId":3566},{"hugoGeneSymbol":"IL5","entrezGeneId":3567},{"hugoGeneSymbol":"IL5RA","entrezGeneId":3568},{"hugoGeneSymbol":"IL6","entrezGeneId":3569},{"hugoGeneSymbol":"IL6R","entrezGeneId":3570},{"hugoGeneSymbol":"IL6R-AS1","entrezGeneId":101928101},{"hugoGeneSymbol":"IL6RP1","entrezGeneId":157916},{"hugoGeneSymbol":"IL6ST","entrezGeneId":3572},{"hugoGeneSymbol":"IL6STP1","entrezGeneId":3573},{"hugoGeneSymbol":"IL7","entrezGeneId":3574},{"hugoGeneSymbol":"IL7R","entrezGeneId":3575},{"hugoGeneSymbol":"IL9","entrezGeneId":3578},{"hugoGeneSymbol":"IL9R","entrezGeneId":3581},{"hugoGeneSymbol":"IL9RP1","entrezGeneId":100128449},{"hugoGeneSymbol":"IL9RP2","entrezGeneId":439945},{"hugoGeneSymbol":"IL9RP3","entrezGeneId":729486},{"hugoGeneSymbol":"IL9RP4","entrezGeneId":100132166},{"hugoGeneSymbol":"ILDR1","entrezGeneId":286676},{"hugoGeneSymbol":"ILDR2","entrezGeneId":387597},{"hugoGeneSymbol":"ILF2","entrezGeneId":3608},{"hugoGeneSymbol":"ILF2P1","entrezGeneId":100421506},{"hugoGeneSymbol":"ILF2P2","entrezGeneId":644616},{"hugoGeneSymbol":"ILF3","entrezGeneId":3609},{"hugoGeneSymbol":"ILF3-DT","entrezGeneId":147727},{"hugoGeneSymbol":"ILK","entrezGeneId":3611},{"hugoGeneSymbol":"ILKAP","entrezGeneId":80895},{"hugoGeneSymbol":"ILVBL","entrezGeneId":10994},{"hugoGeneSymbol":"IMMP1L","entrezGeneId":196294},{"hugoGeneSymbol":"IMMP1LP1","entrezGeneId":729101},{"hugoGeneSymbol":"IMMP1LP2","entrezGeneId":105369987},{"hugoGeneSymbol":"IMMP1LP3","entrezGeneId":106481715},{"hugoGeneSymbol":"IMMP2L","entrezGeneId":83943},{"hugoGeneSymbol":"IMMT","entrezGeneId":10989},{"hugoGeneSymbol":"IMMTP1","entrezGeneId":54045},{"hugoGeneSymbol":"IMP3","entrezGeneId":55272},{"hugoGeneSymbol":"IMP3P1","entrezGeneId":646087},{"hugoGeneSymbol":"IMP3P2","entrezGeneId":106480272},{"hugoGeneSymbol":"IMP4","entrezGeneId":92856},{"hugoGeneSymbol":"IMPA1","entrezGeneId":3612},{"hugoGeneSymbol":"IMPA1P1","entrezGeneId":650747},{"hugoGeneSymbol":"IMPA2","entrezGeneId":3613},{"hugoGeneSymbol":"IMPACT","entrezGeneId":55364},{"hugoGeneSymbol":"IMPAD1","entrezGeneId":54928},{"hugoGeneSymbol":"IMPDH1","entrezGeneId":3614},{"hugoGeneSymbol":"IMPDH1P1","entrezGeneId":340499},{"hugoGeneSymbol":"IMPDH1P10","entrezGeneId":100874399},{"hugoGeneSymbol":"IMPDH1P11","entrezGeneId":727833},{"hugoGeneSymbol":"IMPDH1P2","entrezGeneId":402394},{"hugoGeneSymbol":"IMPDH1P3","entrezGeneId":136307},{"hugoGeneSymbol":"IMPDH1P4","entrezGeneId":139334},{"hugoGeneSymbol":"IMPDH1P5","entrezGeneId":340780},{"hugoGeneSymbol":"IMPDH1P6","entrezGeneId":392267},{"hugoGeneSymbol":"IMPDH1P7","entrezGeneId":391467},{"hugoGeneSymbol":"IMPDH1P8","entrezGeneId":131961},{"hugoGeneSymbol":"IMPDH1P9","entrezGeneId":441132},{"hugoGeneSymbol":"IMPDH2","entrezGeneId":3615},{"hugoGeneSymbol":"IMPG1","entrezGeneId":3617},{"hugoGeneSymbol":"IMPG2","entrezGeneId":50939},{"hugoGeneSymbol":"INA","entrezGeneId":9118},{"hugoGeneSymbol":"INAFM1","entrezGeneId":255783},{"hugoGeneSymbol":"INAFM2","entrezGeneId":100505573},{"hugoGeneSymbol":"INAVA","entrezGeneId":55765},{"hugoGeneSymbol":"INCA1","entrezGeneId":388324},{"hugoGeneSymbol":"INCENP","entrezGeneId":3619},{"hugoGeneSymbol":"INDX","entrezGeneId":8259},{"hugoGeneSymbol":"INE1","entrezGeneId":8552},{"hugoGeneSymbol":"INE2","entrezGeneId":8551},{"hugoGeneSymbol":"INF2","entrezGeneId":64423},{"hugoGeneSymbol":"ING1","entrezGeneId":3621},{"hugoGeneSymbol":"ING2","entrezGeneId":3622},{"hugoGeneSymbol":"ING3","entrezGeneId":54556},{"hugoGeneSymbol":"ING4","entrezGeneId":51147},{"hugoGeneSymbol":"ING5","entrezGeneId":84289},{"hugoGeneSymbol":"INGX","entrezGeneId":27160},{"hugoGeneSymbol":"INHA","entrezGeneId":3623},{"hugoGeneSymbol":"INHBA","entrezGeneId":3624},{"hugoGeneSymbol":"INHBA-AS1","entrezGeneId":285954},{"hugoGeneSymbol":"INHBB","entrezGeneId":3625},{"hugoGeneSymbol":"INHBC","entrezGeneId":3626},{"hugoGeneSymbol":"INHBE","entrezGeneId":83729},{"hugoGeneSymbol":"INIP","entrezGeneId":58493},{"hugoGeneSymbol":"INMT","entrezGeneId":11185},{"hugoGeneSymbol":"INMT-MINDY4","entrezGeneId":100526825},{"hugoGeneSymbol":"INO80","entrezGeneId":54617},{"hugoGeneSymbol":"INO80-AS1","entrezGeneId":109729177},{"hugoGeneSymbol":"INO80B","entrezGeneId":83444},{"hugoGeneSymbol":"INO80B-WBP1","entrezGeneId":100532735},{"hugoGeneSymbol":"INO80C","entrezGeneId":125476},{"hugoGeneSymbol":"INO80D","entrezGeneId":54891},{"hugoGeneSymbol":"INO80E","entrezGeneId":283899},{"hugoGeneSymbol":"INPP1","entrezGeneId":3628},{"hugoGeneSymbol":"INPP4A","entrezGeneId":3631},{"hugoGeneSymbol":"INPP4B","entrezGeneId":8821},{"hugoGeneSymbol":"INPP5A","entrezGeneId":3632},{"hugoGeneSymbol":"INPP5B","entrezGeneId":3633},{"hugoGeneSymbol":"INPP5D","entrezGeneId":3635},{"hugoGeneSymbol":"INPP5E","entrezGeneId":56623},{"hugoGeneSymbol":"INPP5F","entrezGeneId":22876},{"hugoGeneSymbol":"INPP5J","entrezGeneId":27124},{"hugoGeneSymbol":"INPP5K","entrezGeneId":51763},{"hugoGeneSymbol":"INPPL1","entrezGeneId":3636},{"hugoGeneSymbol":"INS","entrezGeneId":3630},{"hugoGeneSymbol":"INS-IGF2","entrezGeneId":723961},{"hugoGeneSymbol":"INSC","entrezGeneId":387755},{"hugoGeneSymbol":"INSIG1","entrezGeneId":3638},{"hugoGeneSymbol":"INSIG2","entrezGeneId":51141},{"hugoGeneSymbol":"INSL3","entrezGeneId":3640},{"hugoGeneSymbol":"INSL4","entrezGeneId":3641},{"hugoGeneSymbol":"INSL5","entrezGeneId":10022},{"hugoGeneSymbol":"INSL6","entrezGeneId":11172},{"hugoGeneSymbol":"INSM1","entrezGeneId":3642},{"hugoGeneSymbol":"INSM2","entrezGeneId":84684},{"hugoGeneSymbol":"INSR","entrezGeneId":3643},{"hugoGeneSymbol":"INSRR","entrezGeneId":3645},{"hugoGeneSymbol":"INTLQ1","entrezGeneId":100462721},{"hugoGeneSymbol":"INTLQ2","entrezGeneId":100462723},{"hugoGeneSymbol":"INTLQ3","entrezGeneId":100462722},{"hugoGeneSymbol":"INTS1","entrezGeneId":26173},{"hugoGeneSymbol":"INTS10","entrezGeneId":55174},{"hugoGeneSymbol":"INTS11","entrezGeneId":54973},{"hugoGeneSymbol":"INTS12","entrezGeneId":57117},{"hugoGeneSymbol":"INTS13","entrezGeneId":55726},{"hugoGeneSymbol":"INTS14","entrezGeneId":81556},{"hugoGeneSymbol":"INTS2","entrezGeneId":57508},{"hugoGeneSymbol":"INTS3","entrezGeneId":65123},{"hugoGeneSymbol":"INTS4","entrezGeneId":92105},{"hugoGeneSymbol":"INTS4P1","entrezGeneId":285905},{"hugoGeneSymbol":"INTS4P2","entrezGeneId":644619},{"hugoGeneSymbol":"INTS5","entrezGeneId":80789},{"hugoGeneSymbol":"INTS6","entrezGeneId":26512},{"hugoGeneSymbol":"INTS6-AS1","entrezGeneId":100507398},{"hugoGeneSymbol":"INTS6L","entrezGeneId":203522},{"hugoGeneSymbol":"INTS6L-AS1","entrezGeneId":100874118},{"hugoGeneSymbol":"INTS6P1","entrezGeneId":285634},{"hugoGeneSymbol":"INTS7","entrezGeneId":25896},{"hugoGeneSymbol":"INTS8","entrezGeneId":55656},{"hugoGeneSymbol":"INTS9","entrezGeneId":55756},{"hugoGeneSymbol":"INTS9-AS1","entrezGeneId":109729178},{"hugoGeneSymbol":"INTU","entrezGeneId":27152},{"hugoGeneSymbol":"INVS","entrezGeneId":27130},{"hugoGeneSymbol":"IP6K1","entrezGeneId":9807},{"hugoGeneSymbol":"IP6K2","entrezGeneId":51447},{"hugoGeneSymbol":"IP6K3","entrezGeneId":117283},{"hugoGeneSymbol":"IPCEF1","entrezGeneId":26034},{"hugoGeneSymbol":"IPMK","entrezGeneId":253430},{"hugoGeneSymbol":"IPMKP1","entrezGeneId":401730},{"hugoGeneSymbol":"IPO11","entrezGeneId":51194},{"hugoGeneSymbol":"IPO11-LRRC70","entrezGeneId":101180901},{"hugoGeneSymbol":"IPO13","entrezGeneId":9670},{"hugoGeneSymbol":"IPO4","entrezGeneId":79711},{"hugoGeneSymbol":"IPO5","entrezGeneId":3843},{"hugoGeneSymbol":"IPO5P1","entrezGeneId":100132815},{"hugoGeneSymbol":"IPO7","entrezGeneId":10527},{"hugoGeneSymbol":"IPO7P1","entrezGeneId":100129708},{"hugoGeneSymbol":"IPO7P2","entrezGeneId":100128337},{"hugoGeneSymbol":"IPO8","entrezGeneId":10526},{"hugoGeneSymbol":"IPO8P1","entrezGeneId":100418819},{"hugoGeneSymbol":"IPO9","entrezGeneId":55705},{"hugoGeneSymbol":"IPO9-AS1","entrezGeneId":100873949},{"hugoGeneSymbol":"IPOX","entrezGeneId":8268},{"hugoGeneSymbol":"IPP","entrezGeneId":3652},{"hugoGeneSymbol":"IPPK","entrezGeneId":64768},{"hugoGeneSymbol":"IPPKP1","entrezGeneId":100874419},{"hugoGeneSymbol":"IPW","entrezGeneId":3653},{"hugoGeneSymbol":"IQANK1","entrezGeneId":642574},{"hugoGeneSymbol":"IQCA1","entrezGeneId":79781},{"hugoGeneSymbol":"IQCA1-AS1","entrezGeneId":107080627},{"hugoGeneSymbol":"IQCA1L","entrezGeneId":392843},{"hugoGeneSymbol":"IQCB1","entrezGeneId":9657},{"hugoGeneSymbol":"IQCB2P","entrezGeneId":340192},{"hugoGeneSymbol":"IQCC","entrezGeneId":55721},{"hugoGeneSymbol":"IQCD","entrezGeneId":115811},{"hugoGeneSymbol":"IQCE","entrezGeneId":23288},{"hugoGeneSymbol":"IQCF1","entrezGeneId":132141},{"hugoGeneSymbol":"IQCF2","entrezGeneId":389123},{"hugoGeneSymbol":"IQCF3","entrezGeneId":401067},{"hugoGeneSymbol":"IQCF4","entrezGeneId":100506840},{"hugoGeneSymbol":"IQCF5","entrezGeneId":389124},{"hugoGeneSymbol":"IQCF5-AS1","entrezGeneId":101928999},{"hugoGeneSymbol":"IQCF6","entrezGeneId":440956},{"hugoGeneSymbol":"IQCG","entrezGeneId":84223},{"hugoGeneSymbol":"IQCH","entrezGeneId":64799},{"hugoGeneSymbol":"IQCH-AS1","entrezGeneId":100506686},{"hugoGeneSymbol":"IQCJ","entrezGeneId":654502},{"hugoGeneSymbol":"IQCJ-SCHIP1","entrezGeneId":100505385},{"hugoGeneSymbol":"IQCJ-SCHIP1-AS1","entrezGeneId":100874433},{"hugoGeneSymbol":"IQCK","entrezGeneId":124152},{"hugoGeneSymbol":"IQCM","entrezGeneId":285423},{"hugoGeneSymbol":"IQCN","entrezGeneId":80726},{"hugoGeneSymbol":"IQGAP1","entrezGeneId":8826},{"hugoGeneSymbol":"IQGAP2","entrezGeneId":10788},{"hugoGeneSymbol":"IQGAP3","entrezGeneId":128239},{"hugoGeneSymbol":"IQSEC1","entrezGeneId":9922},{"hugoGeneSymbol":"IQSEC2","entrezGeneId":23096},{"hugoGeneSymbol":"IQSEC3","entrezGeneId":440073},{"hugoGeneSymbol":"IQSEC3P1","entrezGeneId":100132450},{"hugoGeneSymbol":"IQSEC3P2","entrezGeneId":100130073},{"hugoGeneSymbol":"IQSEC3P3","entrezGeneId":728056},{"hugoGeneSymbol":"IQUB","entrezGeneId":154865},{"hugoGeneSymbol":"IRAIN","entrezGeneId":104472848},{"hugoGeneSymbol":"IRAK1","entrezGeneId":3654},{"hugoGeneSymbol":"IRAK1BP1","entrezGeneId":134728},{"hugoGeneSymbol":"IRAK2","entrezGeneId":3656},{"hugoGeneSymbol":"IRAK3","entrezGeneId":11213},{"hugoGeneSymbol":"IRAK4","entrezGeneId":51135},{"hugoGeneSymbol":"IREB2","entrezGeneId":3658},{"hugoGeneSymbol":"IRF1","entrezGeneId":3659},{"hugoGeneSymbol":"IRF2","entrezGeneId":3660},{"hugoGeneSymbol":"IRF2BP1","entrezGeneId":26145},{"hugoGeneSymbol":"IRF2BP2","entrezGeneId":359948},{"hugoGeneSymbol":"IRF2BPL","entrezGeneId":64207},{"hugoGeneSymbol":"IRF3","entrezGeneId":3661},{"hugoGeneSymbol":"IRF4","entrezGeneId":3662},{"hugoGeneSymbol":"IRF5","entrezGeneId":3663},{"hugoGeneSymbol":"IRF5P1","entrezGeneId":100420406},{"hugoGeneSymbol":"IRF6","entrezGeneId":3664},{"hugoGeneSymbol":"IRF7","entrezGeneId":3665},{"hugoGeneSymbol":"IRF8","entrezGeneId":3394},{"hugoGeneSymbol":"IRF9","entrezGeneId":10379},{"hugoGeneSymbol":"IRGC","entrezGeneId":56269},{"hugoGeneSymbol":"IRGM","entrezGeneId":345611},{"hugoGeneSymbol":"IRGQ","entrezGeneId":126298},{"hugoGeneSymbol":"IRS1","entrezGeneId":3667},{"hugoGeneSymbol":"IRS2","entrezGeneId":8660},{"hugoGeneSymbol":"IRS3P","entrezGeneId":442338},{"hugoGeneSymbol":"IRS4","entrezGeneId":8471},{"hugoGeneSymbol":"IRX1","entrezGeneId":79192},{"hugoGeneSymbol":"IRX1P1","entrezGeneId":646390},{"hugoGeneSymbol":"IRX2","entrezGeneId":153572},{"hugoGeneSymbol":"IRX3","entrezGeneId":79191},{"hugoGeneSymbol":"IRX4","entrezGeneId":50805},{"hugoGeneSymbol":"IRX5","entrezGeneId":10265},{"hugoGeneSymbol":"IRX6","entrezGeneId":79190},{"hugoGeneSymbol":"IS1","entrezGeneId":260402},{"hugoGeneSymbol":"IS2","entrezGeneId":282552},{"hugoGeneSymbol":"IS4","entrezGeneId":100190785},{"hugoGeneSymbol":"IS5","entrezGeneId":100190985},{"hugoGeneSymbol":"ISCA1","entrezGeneId":81689},{"hugoGeneSymbol":"ISCA1P1","entrezGeneId":389293},{"hugoGeneSymbol":"ISCA1P2","entrezGeneId":100288517},{"hugoGeneSymbol":"ISCA1P3","entrezGeneId":100131092},{"hugoGeneSymbol":"ISCA1P4","entrezGeneId":100128012},{"hugoGeneSymbol":"ISCA1P5","entrezGeneId":100288250},{"hugoGeneSymbol":"ISCA1P6","entrezGeneId":100130549},{"hugoGeneSymbol":"ISCA2","entrezGeneId":122961},{"hugoGeneSymbol":"ISCA2P1","entrezGeneId":100287193},{"hugoGeneSymbol":"ISCU","entrezGeneId":23479},{"hugoGeneSymbol":"ISCUP1","entrezGeneId":100462833},{"hugoGeneSymbol":"ISCW","entrezGeneId":7928},{"hugoGeneSymbol":"ISG15","entrezGeneId":9636},{"hugoGeneSymbol":"ISG20","entrezGeneId":3669},{"hugoGeneSymbol":"ISG20L2","entrezGeneId":81875},{"hugoGeneSymbol":"ISL1","entrezGeneId":3670},{"hugoGeneSymbol":"ISL2","entrezGeneId":64843},{"hugoGeneSymbol":"ISLR","entrezGeneId":3671},{"hugoGeneSymbol":"ISLR2","entrezGeneId":57611},{"hugoGeneSymbol":"ISM1","entrezGeneId":140862},{"hugoGeneSymbol":"ISM1-AS1","entrezGeneId":100505536},{"hugoGeneSymbol":"ISM2","entrezGeneId":145501},{"hugoGeneSymbol":"ISOC1","entrezGeneId":51015},{"hugoGeneSymbol":"ISOC2","entrezGeneId":79763},{"hugoGeneSymbol":"ISPD","entrezGeneId":729920},{"hugoGeneSymbol":"ISPD-AS1","entrezGeneId":100506025},{"hugoGeneSymbol":"IST1","entrezGeneId":9798},{"hugoGeneSymbol":"ISX","entrezGeneId":91464},{"hugoGeneSymbol":"ISX-AS1","entrezGeneId":101926957},{"hugoGeneSymbol":"ISY1","entrezGeneId":57461},{"hugoGeneSymbol":"ISY1-RAB43","entrezGeneId":100534599},{"hugoGeneSymbol":"ISYNA1","entrezGeneId":51477},{"hugoGeneSymbol":"ITC1","entrezGeneId":100188785},{"hugoGeneSymbol":"ITCH","entrezGeneId":83737},{"hugoGeneSymbol":"ITCH-AS1","entrezGeneId":106480737},{"hugoGeneSymbol":"ITCH-IT1","entrezGeneId":100874302},{"hugoGeneSymbol":"ITFG1","entrezGeneId":81533},{"hugoGeneSymbol":"ITFG1-AS1","entrezGeneId":101927102},{"hugoGeneSymbol":"ITFG2","entrezGeneId":55846},{"hugoGeneSymbol":"ITFG2-AS1","entrezGeneId":283440},{"hugoGeneSymbol":"ITGA1","entrezGeneId":3672},{"hugoGeneSymbol":"ITGA10","entrezGeneId":8515},{"hugoGeneSymbol":"ITGA11","entrezGeneId":22801},{"hugoGeneSymbol":"ITGA2","entrezGeneId":3673},{"hugoGeneSymbol":"ITGA2B","entrezGeneId":3674},{"hugoGeneSymbol":"ITGA3","entrezGeneId":3675},{"hugoGeneSymbol":"ITGA4","entrezGeneId":3676},{"hugoGeneSymbol":"ITGA5","entrezGeneId":3678},{"hugoGeneSymbol":"ITGA6","entrezGeneId":3655},{"hugoGeneSymbol":"ITGA7","entrezGeneId":3679},{"hugoGeneSymbol":"ITGA8","entrezGeneId":8516},{"hugoGeneSymbol":"ITGA9","entrezGeneId":3680},{"hugoGeneSymbol":"ITGA9-AS1","entrezGeneId":101928153},{"hugoGeneSymbol":"ITGAD","entrezGeneId":3681},{"hugoGeneSymbol":"ITGAE","entrezGeneId":3682},{"hugoGeneSymbol":"ITGAL","entrezGeneId":3683},{"hugoGeneSymbol":"ITGAM","entrezGeneId":3684},{"hugoGeneSymbol":"ITGAV","entrezGeneId":3685},{"hugoGeneSymbol":"ITGAX","entrezGeneId":3687},{"hugoGeneSymbol":"ITGB1","entrezGeneId":3688},{"hugoGeneSymbol":"ITGB1-DT","entrezGeneId":101929475},{"hugoGeneSymbol":"ITGB1BP1","entrezGeneId":9270},{"hugoGeneSymbol":"ITGB1BP2","entrezGeneId":26548},{"hugoGeneSymbol":"ITGB1P1","entrezGeneId":100422691},{"hugoGeneSymbol":"ITGB2","entrezGeneId":3689},{"hugoGeneSymbol":"ITGB2-AS1","entrezGeneId":100505746},{"hugoGeneSymbol":"ITGB3","entrezGeneId":3690},{"hugoGeneSymbol":"ITGB3BP","entrezGeneId":23421},{"hugoGeneSymbol":"ITGB4","entrezGeneId":3691},{"hugoGeneSymbol":"ITGB5","entrezGeneId":3693},{"hugoGeneSymbol":"ITGB5-AS1","entrezGeneId":100873992},{"hugoGeneSymbol":"ITGB6","entrezGeneId":3694},{"hugoGeneSymbol":"ITGB7","entrezGeneId":3695},{"hugoGeneSymbol":"ITGB8","entrezGeneId":3696},{"hugoGeneSymbol":"ITGBL1","entrezGeneId":9358},{"hugoGeneSymbol":"ITIH1","entrezGeneId":3697},{"hugoGeneSymbol":"ITIH2","entrezGeneId":3698},{"hugoGeneSymbol":"ITIH3","entrezGeneId":3699},{"hugoGeneSymbol":"ITIH4","entrezGeneId":3700},{"hugoGeneSymbol":"ITIH4-AS1","entrezGeneId":100873993},{"hugoGeneSymbol":"ITIH5","entrezGeneId":80760},{"hugoGeneSymbol":"ITIH6","entrezGeneId":347365},{"hugoGeneSymbol":"ITK","entrezGeneId":3702},{"hugoGeneSymbol":"ITLN1","entrezGeneId":55600},{"hugoGeneSymbol":"ITLN2","entrezGeneId":142683},{"hugoGeneSymbol":"ITM2A","entrezGeneId":9452},{"hugoGeneSymbol":"ITM2B","entrezGeneId":9445},{"hugoGeneSymbol":"ITM2BP1","entrezGeneId":100420308},{"hugoGeneSymbol":"ITM2C","entrezGeneId":81618},{"hugoGeneSymbol":"ITPA","entrezGeneId":3704},{"hugoGeneSymbol":"ITPK1","entrezGeneId":3705},{"hugoGeneSymbol":"ITPK1-AS1","entrezGeneId":319085},{"hugoGeneSymbol":"ITPKA","entrezGeneId":3706},{"hugoGeneSymbol":"ITPKB","entrezGeneId":3707},{"hugoGeneSymbol":"ITPKB-AS1","entrezGeneId":100873994},{"hugoGeneSymbol":"ITPKB-IT1","entrezGeneId":100506443},{"hugoGeneSymbol":"ITPKC","entrezGeneId":80271},{"hugoGeneSymbol":"ITPR1","entrezGeneId":3708},{"hugoGeneSymbol":"ITPR1-DT","entrezGeneId":100996539},{"hugoGeneSymbol":"ITPR2","entrezGeneId":3709},{"hugoGeneSymbol":"ITPR3","entrezGeneId":3710},{"hugoGeneSymbol":"ITPRIP","entrezGeneId":85450},{"hugoGeneSymbol":"ITPRIPL1","entrezGeneId":150771},{"hugoGeneSymbol":"ITPRIPL2","entrezGeneId":162073},{"hugoGeneSymbol":"ITSN1","entrezGeneId":6453},{"hugoGeneSymbol":"ITSN2","entrezGeneId":50618},{"hugoGeneSymbol":"IV","entrezGeneId":8114},{"hugoGeneSymbol":"IVD","entrezGeneId":3712},{"hugoGeneSymbol":"IVL","entrezGeneId":3713},{"hugoGeneSymbol":"IVNS1ABP","entrezGeneId":10625},{"hugoGeneSymbol":"IWS1","entrezGeneId":55677},{"hugoGeneSymbol":"IYD","entrezGeneId":389434},{"hugoGeneSymbol":"IZUMO1","entrezGeneId":284359},{"hugoGeneSymbol":"IZUMO1R","entrezGeneId":390243},{"hugoGeneSymbol":"IZUMO2","entrezGeneId":126123},{"hugoGeneSymbol":"IZUMO3","entrezGeneId":100129669},{"hugoGeneSymbol":"IZUMO4","entrezGeneId":113177},{"hugoGeneSymbol":"JADE1","entrezGeneId":79960},{"hugoGeneSymbol":"JADE2","entrezGeneId":23338},{"hugoGeneSymbol":"JADE3","entrezGeneId":9767},{"hugoGeneSymbol":"JADRR","entrezGeneId":101669763},{"hugoGeneSymbol":"JAG1","entrezGeneId":182},{"hugoGeneSymbol":"JAG2","entrezGeneId":3714},{"hugoGeneSymbol":"JAGN1","entrezGeneId":84522},{"hugoGeneSymbol":"JAK1","entrezGeneId":3716},{"hugoGeneSymbol":"JAK2","entrezGeneId":3717},{"hugoGeneSymbol":"JAK3","entrezGeneId":3718},{"hugoGeneSymbol":"JAKMIP1","entrezGeneId":152789},{"hugoGeneSymbol":"JAKMIP2","entrezGeneId":9832},{"hugoGeneSymbol":"JAKMIP2-AS1","entrezGeneId":153469},{"hugoGeneSymbol":"JAKMIP3","entrezGeneId":282973},{"hugoGeneSymbol":"JAM2","entrezGeneId":58494},{"hugoGeneSymbol":"JAM3","entrezGeneId":83700},{"hugoGeneSymbol":"JAML","entrezGeneId":120425},{"hugoGeneSymbol":"JARID2","entrezGeneId":3720},{"hugoGeneSymbol":"JARID2-AS1","entrezGeneId":100506681},{"hugoGeneSymbol":"JAWAD","entrezGeneId":100192306},{"hugoGeneSymbol":"JAZF1","entrezGeneId":221895},{"hugoGeneSymbol":"JAZF1-AS1","entrezGeneId":100128081},{"hugoGeneSymbol":"JBS","entrezGeneId":3719},{"hugoGeneSymbol":"JCAD","entrezGeneId":57608},{"hugoGeneSymbol":"JCHAIN","entrezGeneId":3512},{"hugoGeneSymbol":"JDP2","entrezGeneId":122953},{"hugoGeneSymbol":"JHY","entrezGeneId":79864},{"hugoGeneSymbol":"JKAMP","entrezGeneId":51528},{"hugoGeneSymbol":"JKAMPP1","entrezGeneId":100049717},{"hugoGeneSymbol":"JMJD1C","entrezGeneId":221037},{"hugoGeneSymbol":"JMJD1C-AS1","entrezGeneId":84989},{"hugoGeneSymbol":"JMJD4","entrezGeneId":65094},{"hugoGeneSymbol":"JMJD6","entrezGeneId":23210},{"hugoGeneSymbol":"JMJD7","entrezGeneId":100137047},{"hugoGeneSymbol":"JMJD7-PLA2G4B","entrezGeneId":8681},{"hugoGeneSymbol":"JMJD8","entrezGeneId":339123},{"hugoGeneSymbol":"JMY","entrezGeneId":133746},{"hugoGeneSymbol":"JOSD1","entrezGeneId":9929},{"hugoGeneSymbol":"JOSD2","entrezGeneId":126119},{"hugoGeneSymbol":"JPH1","entrezGeneId":56704},{"hugoGeneSymbol":"JPH2","entrezGeneId":57158},{"hugoGeneSymbol":"JPH3","entrezGeneId":57338},{"hugoGeneSymbol":"JPH4","entrezGeneId":84502},{"hugoGeneSymbol":"JPT1","entrezGeneId":51155},{"hugoGeneSymbol":"JPT2","entrezGeneId":90861},{"hugoGeneSymbol":"JPX","entrezGeneId":554203},{"hugoGeneSymbol":"JRK","entrezGeneId":8629},{"hugoGeneSymbol":"JRKL","entrezGeneId":8690},{"hugoGeneSymbol":"JRKL-AS1","entrezGeneId":100874053},{"hugoGeneSymbol":"JSRP1","entrezGeneId":126306},{"hugoGeneSymbol":"JTB","entrezGeneId":10899},{"hugoGeneSymbol":"JTBP1","entrezGeneId":100874254},{"hugoGeneSymbol":"JUN","entrezGeneId":3725},{"hugoGeneSymbol":"JUNB","entrezGeneId":3726},{"hugoGeneSymbol":"JUND","entrezGeneId":3727},{"hugoGeneSymbol":"JUP","entrezGeneId":3728},{"hugoGeneSymbol":"KAAG1","entrezGeneId":353219},{"hugoGeneSymbol":"KALRN","entrezGeneId":8997},{"hugoGeneSymbol":"KANK1","entrezGeneId":23189},{"hugoGeneSymbol":"KANK1P1","entrezGeneId":100862705},{"hugoGeneSymbol":"KANK2","entrezGeneId":25959},{"hugoGeneSymbol":"KANK3","entrezGeneId":256949},{"hugoGeneSymbol":"KANK4","entrezGeneId":163782},{"hugoGeneSymbol":"KANSL1","entrezGeneId":284058},{"hugoGeneSymbol":"KANSL1-AS1","entrezGeneId":644246},{"hugoGeneSymbol":"KANSL1L","entrezGeneId":151050},{"hugoGeneSymbol":"KANSL2","entrezGeneId":54934},{"hugoGeneSymbol":"KANSL3","entrezGeneId":55683},{"hugoGeneSymbol":"KANTR","entrezGeneId":102723508},{"hugoGeneSymbol":"KAOGS","entrezGeneId":107063609},{"hugoGeneSymbol":"KARS","entrezGeneId":3735},{"hugoGeneSymbol":"KARSP1","entrezGeneId":100419558},{"hugoGeneSymbol":"KARSP2","entrezGeneId":100419560},{"hugoGeneSymbol":"KARSP3","entrezGeneId":100132079},{"hugoGeneSymbol":"KAT14","entrezGeneId":57325},{"hugoGeneSymbol":"KAT2A","entrezGeneId":2648},{"hugoGeneSymbol":"KAT2B","entrezGeneId":8850},{"hugoGeneSymbol":"KAT5","entrezGeneId":10524},{"hugoGeneSymbol":"KAT6A","entrezGeneId":7994},{"hugoGeneSymbol":"KAT6B","entrezGeneId":23522},{"hugoGeneSymbol":"KAT7","entrezGeneId":11143},{"hugoGeneSymbol":"KAT8","entrezGeneId":84148},{"hugoGeneSymbol":"KATNA1","entrezGeneId":11104},{"hugoGeneSymbol":"KATNAL1","entrezGeneId":84056},{"hugoGeneSymbol":"KATNAL2","entrezGeneId":83473},{"hugoGeneSymbol":"KATNB1","entrezGeneId":10300},{"hugoGeneSymbol":"KATNBL1","entrezGeneId":79768},{"hugoGeneSymbol":"KATNBL1P1","entrezGeneId":100420919},{"hugoGeneSymbol":"KATNBL1P2","entrezGeneId":100130235},{"hugoGeneSymbol":"KATNBL1P3","entrezGeneId":100420946},{"hugoGeneSymbol":"KATNBL1P4","entrezGeneId":100128982},{"hugoGeneSymbol":"KATNBL1P5","entrezGeneId":100420841},{"hugoGeneSymbol":"KATNBL1P6","entrezGeneId":729176},{"hugoGeneSymbol":"KAZA1","entrezGeneId":387582},{"hugoGeneSymbol":"KAZA2","entrezGeneId":101241898},{"hugoGeneSymbol":"KAZA3","entrezGeneId":101241899},{"hugoGeneSymbol":"KAZALD1","entrezGeneId":81621},{"hugoGeneSymbol":"KAZN","entrezGeneId":23254},{"hugoGeneSymbol":"KAZN-AS1","entrezGeneId":105376762},{"hugoGeneSymbol":"KBTBD11","entrezGeneId":9920},{"hugoGeneSymbol":"KBTBD11-OT1","entrezGeneId":104266957},{"hugoGeneSymbol":"KBTBD12","entrezGeneId":166348},{"hugoGeneSymbol":"KBTBD13","entrezGeneId":390594},{"hugoGeneSymbol":"KBTBD2","entrezGeneId":25948},{"hugoGeneSymbol":"KBTBD3","entrezGeneId":143879},{"hugoGeneSymbol":"KBTBD4","entrezGeneId":55709},{"hugoGeneSymbol":"KBTBD6","entrezGeneId":89890},{"hugoGeneSymbol":"KBTBD7","entrezGeneId":84078},{"hugoGeneSymbol":"KBTBD8","entrezGeneId":84541},{"hugoGeneSymbol":"KC6","entrezGeneId":641516},{"hugoGeneSymbol":"KCCAT198","entrezGeneId":105369954},{"hugoGeneSymbol":"KCCAT333","entrezGeneId":102659288},{"hugoGeneSymbol":"KCMF1","entrezGeneId":56888},{"hugoGeneSymbol":"KCNA1","entrezGeneId":3736},{"hugoGeneSymbol":"KCNA10","entrezGeneId":3744},{"hugoGeneSymbol":"KCNA2","entrezGeneId":3737},{"hugoGeneSymbol":"KCNA3","entrezGeneId":3738},{"hugoGeneSymbol":"KCNA4","entrezGeneId":3739},{"hugoGeneSymbol":"KCNA5","entrezGeneId":3741},{"hugoGeneSymbol":"KCNA6","entrezGeneId":3742},{"hugoGeneSymbol":"KCNA7","entrezGeneId":3743},{"hugoGeneSymbol":"KCNAB1","entrezGeneId":7881},{"hugoGeneSymbol":"KCNAB1-AS1","entrezGeneId":100874084},{"hugoGeneSymbol":"KCNAB1-AS2","entrezGeneId":100874083},{"hugoGeneSymbol":"KCNAB2","entrezGeneId":8514},{"hugoGeneSymbol":"KCNAB3","entrezGeneId":9196},{"hugoGeneSymbol":"KCNB1","entrezGeneId":3745},{"hugoGeneSymbol":"KCNB2","entrezGeneId":9312},{"hugoGeneSymbol":"KCNC1","entrezGeneId":3746},{"hugoGeneSymbol":"KCNC2","entrezGeneId":3747},{"hugoGeneSymbol":"KCNC3","entrezGeneId":3748},{"hugoGeneSymbol":"KCNC4","entrezGeneId":3749},{"hugoGeneSymbol":"KCND1","entrezGeneId":3750},{"hugoGeneSymbol":"KCND2","entrezGeneId":3751},{"hugoGeneSymbol":"KCND3","entrezGeneId":3752},{"hugoGeneSymbol":"KCND3-AS1","entrezGeneId":100873995},{"hugoGeneSymbol":"KCND3-IT1","entrezGeneId":100874295},{"hugoGeneSymbol":"KCNE1","entrezGeneId":3753},{"hugoGeneSymbol":"KCNE1B","entrezGeneId":102723475},{"hugoGeneSymbol":"KCNE2","entrezGeneId":9992},{"hugoGeneSymbol":"KCNE3","entrezGeneId":10008},{"hugoGeneSymbol":"KCNE4","entrezGeneId":23704},{"hugoGeneSymbol":"KCNE5","entrezGeneId":23630},{"hugoGeneSymbol":"KCNF1","entrezGeneId":3754},{"hugoGeneSymbol":"KCNG1","entrezGeneId":3755},{"hugoGeneSymbol":"KCNG2","entrezGeneId":26251},{"hugoGeneSymbol":"KCNG3","entrezGeneId":170850},{"hugoGeneSymbol":"KCNG4","entrezGeneId":93107},{"hugoGeneSymbol":"KCNH1","entrezGeneId":3756},{"hugoGeneSymbol":"KCNH1-IT1","entrezGeneId":100874296},{"hugoGeneSymbol":"KCNH2","entrezGeneId":3757},{"hugoGeneSymbol":"KCNH3","entrezGeneId":23416},{"hugoGeneSymbol":"KCNH4","entrezGeneId":23415},{"hugoGeneSymbol":"KCNH5","entrezGeneId":27133},{"hugoGeneSymbol":"KCNH6","entrezGeneId":81033},{"hugoGeneSymbol":"KCNH7","entrezGeneId":90134},{"hugoGeneSymbol":"KCNH8","entrezGeneId":131096},{"hugoGeneSymbol":"KCNIP1","entrezGeneId":30820},{"hugoGeneSymbol":"KCNIP2","entrezGeneId":30819},{"hugoGeneSymbol":"KCNIP2-AS1","entrezGeneId":100289509},{"hugoGeneSymbol":"KCNIP3","entrezGeneId":30818},{"hugoGeneSymbol":"KCNIP4","entrezGeneId":80333},{"hugoGeneSymbol":"KCNIP4-IT1","entrezGeneId":359822},{"hugoGeneSymbol":"KCNJ1","entrezGeneId":3758},{"hugoGeneSymbol":"KCNJ10","entrezGeneId":3766},{"hugoGeneSymbol":"KCNJ11","entrezGeneId":3767},{"hugoGeneSymbol":"KCNJ12","entrezGeneId":3768},{"hugoGeneSymbol":"KCNJ13","entrezGeneId":3769},{"hugoGeneSymbol":"KCNJ14","entrezGeneId":3770},{"hugoGeneSymbol":"KCNJ15","entrezGeneId":3772},{"hugoGeneSymbol":"KCNJ16","entrezGeneId":3773},{"hugoGeneSymbol":"KCNJ18","entrezGeneId":100134444},{"hugoGeneSymbol":"KCNJ2","entrezGeneId":3759},{"hugoGeneSymbol":"KCNJ2-AS1","entrezGeneId":400617},{"hugoGeneSymbol":"KCNJ3","entrezGeneId":3760},{"hugoGeneSymbol":"KCNJ4","entrezGeneId":3761},{"hugoGeneSymbol":"KCNJ5","entrezGeneId":3762},{"hugoGeneSymbol":"KCNJ6","entrezGeneId":3763},{"hugoGeneSymbol":"KCNJ6-AS1","entrezGeneId":105372799},{"hugoGeneSymbol":"KCNJ8","entrezGeneId":3764},{"hugoGeneSymbol":"KCNJ9","entrezGeneId":3765},{"hugoGeneSymbol":"KCNK1","entrezGeneId":3775},{"hugoGeneSymbol":"KCNK10","entrezGeneId":54207},{"hugoGeneSymbol":"KCNK12","entrezGeneId":56660},{"hugoGeneSymbol":"KCNK13","entrezGeneId":56659},{"hugoGeneSymbol":"KCNK15","entrezGeneId":60598},{"hugoGeneSymbol":"KCNK15-AS1","entrezGeneId":106144538},{"hugoGeneSymbol":"KCNK16","entrezGeneId":83795},{"hugoGeneSymbol":"KCNK17","entrezGeneId":89822},{"hugoGeneSymbol":"KCNK18","entrezGeneId":338567},{"hugoGeneSymbol":"KCNK2","entrezGeneId":3776},{"hugoGeneSymbol":"KCNK3","entrezGeneId":3777},{"hugoGeneSymbol":"KCNK4","entrezGeneId":50801},{"hugoGeneSymbol":"KCNK4-TEX40","entrezGeneId":106780802},{"hugoGeneSymbol":"KCNK5","entrezGeneId":8645},{"hugoGeneSymbol":"KCNK6","entrezGeneId":9424},{"hugoGeneSymbol":"KCNK7","entrezGeneId":10089},{"hugoGeneSymbol":"KCNK9","entrezGeneId":51305},{"hugoGeneSymbol":"KCNMA1","entrezGeneId":3778},{"hugoGeneSymbol":"KCNMA1-AS1","entrezGeneId":101929328},{"hugoGeneSymbol":"KCNMA1-AS2","entrezGeneId":101929310},{"hugoGeneSymbol":"KCNMA1-AS3","entrezGeneId":101929286},{"hugoGeneSymbol":"KCNMB1","entrezGeneId":3779},{"hugoGeneSymbol":"KCNMB2","entrezGeneId":10242},{"hugoGeneSymbol":"KCNMB2-AS1","entrezGeneId":104797538},{"hugoGeneSymbol":"KCNMB3","entrezGeneId":27094},{"hugoGeneSymbol":"KCNMB3P1","entrezGeneId":27093},{"hugoGeneSymbol":"KCNMB4","entrezGeneId":27345},{"hugoGeneSymbol":"KCNN1","entrezGeneId":3780},{"hugoGeneSymbol":"KCNN2","entrezGeneId":3781},{"hugoGeneSymbol":"KCNN3","entrezGeneId":3782},{"hugoGeneSymbol":"KCNN4","entrezGeneId":3783},{"hugoGeneSymbol":"KCNQ1","entrezGeneId":3784},{"hugoGeneSymbol":"KCNQ1-AS1","entrezGeneId":338653},{"hugoGeneSymbol":"KCNQ1DN","entrezGeneId":55539},{"hugoGeneSymbol":"KCNQ1OT1","entrezGeneId":10984},{"hugoGeneSymbol":"KCNQ2","entrezGeneId":3785},{"hugoGeneSymbol":"KCNQ3","entrezGeneId":3786},{"hugoGeneSymbol":"KCNQ4","entrezGeneId":9132},{"hugoGeneSymbol":"KCNQ5","entrezGeneId":56479},{"hugoGeneSymbol":"KCNQ5-AS1","entrezGeneId":100873997},{"hugoGeneSymbol":"KCNQ5-IT1","entrezGeneId":100507381},{"hugoGeneSymbol":"KCNRG","entrezGeneId":283518},{"hugoGeneSymbol":"KCNS1","entrezGeneId":3787},{"hugoGeneSymbol":"KCNS2","entrezGeneId":3788},{"hugoGeneSymbol":"KCNS3","entrezGeneId":3790},{"hugoGeneSymbol":"KCNT1","entrezGeneId":57582},{"hugoGeneSymbol":"KCNT2","entrezGeneId":343450},{"hugoGeneSymbol":"KCNU1","entrezGeneId":157855},{"hugoGeneSymbol":"KCNV1","entrezGeneId":27012},{"hugoGeneSymbol":"KCNV2","entrezGeneId":169522},{"hugoGeneSymbol":"KCP","entrezGeneId":375616},{"hugoGeneSymbol":"KCTD1","entrezGeneId":284252},{"hugoGeneSymbol":"KCTD10","entrezGeneId":83892},{"hugoGeneSymbol":"KCTD10P1","entrezGeneId":100422230},{"hugoGeneSymbol":"KCTD11","entrezGeneId":147040},{"hugoGeneSymbol":"KCTD12","entrezGeneId":115207},{"hugoGeneSymbol":"KCTD13","entrezGeneId":253980},{"hugoGeneSymbol":"KCTD14","entrezGeneId":65987},{"hugoGeneSymbol":"KCTD15","entrezGeneId":79047},{"hugoGeneSymbol":"KCTD16","entrezGeneId":57528},{"hugoGeneSymbol":"KCTD17","entrezGeneId":79734},{"hugoGeneSymbol":"KCTD18","entrezGeneId":130535},{"hugoGeneSymbol":"KCTD19","entrezGeneId":146212},{"hugoGeneSymbol":"KCTD2","entrezGeneId":23510},{"hugoGeneSymbol":"KCTD20","entrezGeneId":222658},{"hugoGeneSymbol":"KCTD21","entrezGeneId":283219},{"hugoGeneSymbol":"KCTD21-AS1","entrezGeneId":100289388},{"hugoGeneSymbol":"KCTD3","entrezGeneId":51133},{"hugoGeneSymbol":"KCTD4","entrezGeneId":386618},{"hugoGeneSymbol":"KCTD5","entrezGeneId":54442},{"hugoGeneSymbol":"KCTD6","entrezGeneId":200845},{"hugoGeneSymbol":"KCTD7","entrezGeneId":154881},{"hugoGeneSymbol":"KCTD8","entrezGeneId":386617},{"hugoGeneSymbol":"KCTD9","entrezGeneId":54793},{"hugoGeneSymbol":"KCTD9P1","entrezGeneId":100422273},{"hugoGeneSymbol":"KCTD9P2","entrezGeneId":643535},{"hugoGeneSymbol":"KCTD9P3","entrezGeneId":647013},{"hugoGeneSymbol":"KCTD9P4","entrezGeneId":100422242},{"hugoGeneSymbol":"KCTD9P5","entrezGeneId":100422179},{"hugoGeneSymbol":"KCTD9P6","entrezGeneId":642513},{"hugoGeneSymbol":"KDELC1","entrezGeneId":79070},{"hugoGeneSymbol":"KDELC1P1","entrezGeneId":100144494},{"hugoGeneSymbol":"KDELC2","entrezGeneId":143888},{"hugoGeneSymbol":"KDELR1","entrezGeneId":10945},{"hugoGeneSymbol":"KDELR2","entrezGeneId":11014},{"hugoGeneSymbol":"KDELR3","entrezGeneId":11015},{"hugoGeneSymbol":"KDF1","entrezGeneId":126695},{"hugoGeneSymbol":"KDM1A","entrezGeneId":23028},{"hugoGeneSymbol":"KDM1B","entrezGeneId":221656},{"hugoGeneSymbol":"KDM2A","entrezGeneId":22992},{"hugoGeneSymbol":"KDM2B","entrezGeneId":84678},{"hugoGeneSymbol":"KDM3A","entrezGeneId":55818},{"hugoGeneSymbol":"KDM3B","entrezGeneId":51780},{"hugoGeneSymbol":"KDM4A","entrezGeneId":9682},{"hugoGeneSymbol":"KDM4A-AS1","entrezGeneId":100132774},{"hugoGeneSymbol":"KDM4B","entrezGeneId":23030},{"hugoGeneSymbol":"KDM4C","entrezGeneId":23081},{"hugoGeneSymbol":"KDM4D","entrezGeneId":55693},{"hugoGeneSymbol":"KDM4E","entrezGeneId":390245},{"hugoGeneSymbol":"KDM4F","entrezGeneId":100129053},{"hugoGeneSymbol":"KDM5A","entrezGeneId":5927},{"hugoGeneSymbol":"KDM5B","entrezGeneId":10765},{"hugoGeneSymbol":"KDM5C","entrezGeneId":8242},{"hugoGeneSymbol":"KDM5C-IT1","entrezGeneId":100874299},{"hugoGeneSymbol":"KDM5D","entrezGeneId":8284},{"hugoGeneSymbol":"KDM5DP1","entrezGeneId":359796},{"hugoGeneSymbol":"KDM6A","entrezGeneId":7403},{"hugoGeneSymbol":"KDM6B","entrezGeneId":23135},{"hugoGeneSymbol":"KDM7A","entrezGeneId":80853},{"hugoGeneSymbol":"KDM7A-DT","entrezGeneId":100134229},{"hugoGeneSymbol":"KDM8","entrezGeneId":79831},{"hugoGeneSymbol":"KDR","entrezGeneId":3791},{"hugoGeneSymbol":"KDSR","entrezGeneId":2531},{"hugoGeneSymbol":"KEAP1","entrezGeneId":9817},{"hugoGeneSymbol":"KEL","entrezGeneId":3792},{"hugoGeneSymbol":"KERA","entrezGeneId":11081},{"hugoGeneSymbol":"KHDC1","entrezGeneId":80759},{"hugoGeneSymbol":"KHDC1L","entrezGeneId":100129128},{"hugoGeneSymbol":"KHDC1P1","entrezGeneId":653194},{"hugoGeneSymbol":"KHDC3L","entrezGeneId":154288},{"hugoGeneSymbol":"KHDC4","entrezGeneId":22889},{"hugoGeneSymbol":"KHDRBS1","entrezGeneId":10657},{"hugoGeneSymbol":"KHDRBS2","entrezGeneId":202559},{"hugoGeneSymbol":"KHDRBS3","entrezGeneId":10656},{"hugoGeneSymbol":"KHK","entrezGeneId":3795},{"hugoGeneSymbol":"KHNYN","entrezGeneId":23351},{"hugoGeneSymbol":"KHSRP","entrezGeneId":8570},{"hugoGeneSymbol":"KHSRPP1","entrezGeneId":402359},{"hugoGeneSymbol":"KIAA0040","entrezGeneId":9674},{"hugoGeneSymbol":"KIAA0087","entrezGeneId":9808},{"hugoGeneSymbol":"KIAA0100","entrezGeneId":9703},{"hugoGeneSymbol":"KIAA0232","entrezGeneId":9778},{"hugoGeneSymbol":"KIAA0319","entrezGeneId":9856},{"hugoGeneSymbol":"KIAA0319L","entrezGeneId":79932},{"hugoGeneSymbol":"KIAA0355","entrezGeneId":9710},{"hugoGeneSymbol":"KIAA0391","entrezGeneId":9692},{"hugoGeneSymbol":"KIAA0408","entrezGeneId":9729},{"hugoGeneSymbol":"KIAA0513","entrezGeneId":9764},{"hugoGeneSymbol":"KIAA0556","entrezGeneId":23247},{"hugoGeneSymbol":"KIAA0586","entrezGeneId":9786},{"hugoGeneSymbol":"KIAA0753","entrezGeneId":9851},{"hugoGeneSymbol":"KIAA0754","entrezGeneId":643314},{"hugoGeneSymbol":"KIAA0825","entrezGeneId":285600},{"hugoGeneSymbol":"KIAA0895","entrezGeneId":23366},{"hugoGeneSymbol":"KIAA0895L","entrezGeneId":653319},{"hugoGeneSymbol":"KIAA0930","entrezGeneId":23313},{"hugoGeneSymbol":"KIAA1024","entrezGeneId":23251},{"hugoGeneSymbol":"KIAA1024L","entrezGeneId":100127206},{"hugoGeneSymbol":"KIAA1107","entrezGeneId":23285},{"hugoGeneSymbol":"KIAA1109","entrezGeneId":84162},{"hugoGeneSymbol":"KIAA1143","entrezGeneId":57456},{"hugoGeneSymbol":"KIAA1147","entrezGeneId":57189},{"hugoGeneSymbol":"KIAA1191","entrezGeneId":57179},{"hugoGeneSymbol":"KIAA1210","entrezGeneId":57481},{"hugoGeneSymbol":"KIAA1211","entrezGeneId":57482},{"hugoGeneSymbol":"KIAA1211L","entrezGeneId":343990},{"hugoGeneSymbol":"KIAA1217","entrezGeneId":56243},{"hugoGeneSymbol":"KIAA1257","entrezGeneId":57501},{"hugoGeneSymbol":"KIAA1324","entrezGeneId":57535},{"hugoGeneSymbol":"KIAA1324L","entrezGeneId":222223},{"hugoGeneSymbol":"KIAA1328","entrezGeneId":57536},{"hugoGeneSymbol":"KIAA1468","entrezGeneId":57614},{"hugoGeneSymbol":"KIAA1522","entrezGeneId":57648},{"hugoGeneSymbol":"KIAA1549","entrezGeneId":57670},{"hugoGeneSymbol":"KIAA1549L","entrezGeneId":25758},{"hugoGeneSymbol":"KIAA1551","entrezGeneId":55196},{"hugoGeneSymbol":"KIAA1586","entrezGeneId":57691},{"hugoGeneSymbol":"KIAA1614","entrezGeneId":57710},{"hugoGeneSymbol":"KIAA1614-AS1","entrezGeneId":103344928},{"hugoGeneSymbol":"KIAA1656","entrezGeneId":85371},{"hugoGeneSymbol":"KIAA1671","entrezGeneId":85379},{"hugoGeneSymbol":"KIAA1755","entrezGeneId":85449},{"hugoGeneSymbol":"KIAA1841","entrezGeneId":84542},{"hugoGeneSymbol":"KIAA1958","entrezGeneId":158405},{"hugoGeneSymbol":"KIAA2012","entrezGeneId":100652824},{"hugoGeneSymbol":"KIAA2013","entrezGeneId":90231},{"hugoGeneSymbol":"KIAA2026","entrezGeneId":158358},{"hugoGeneSymbol":"KIDINS220","entrezGeneId":57498},{"hugoGeneSymbol":"KIF11","entrezGeneId":3832},{"hugoGeneSymbol":"KIF12","entrezGeneId":113220},{"hugoGeneSymbol":"KIF13A","entrezGeneId":63971},{"hugoGeneSymbol":"KIF13B","entrezGeneId":23303},{"hugoGeneSymbol":"KIF14","entrezGeneId":9928},{"hugoGeneSymbol":"KIF15","entrezGeneId":56992},{"hugoGeneSymbol":"KIF16B","entrezGeneId":55614},{"hugoGeneSymbol":"KIF17","entrezGeneId":57576},{"hugoGeneSymbol":"KIF18A","entrezGeneId":81930},{"hugoGeneSymbol":"KIF18B","entrezGeneId":146909},{"hugoGeneSymbol":"KIF18BP1","entrezGeneId":642683},{"hugoGeneSymbol":"KIF19","entrezGeneId":124602},{"hugoGeneSymbol":"KIF1A","entrezGeneId":547},{"hugoGeneSymbol":"KIF1B","entrezGeneId":23095},{"hugoGeneSymbol":"KIF1BP","entrezGeneId":26128},{"hugoGeneSymbol":"KIF1C","entrezGeneId":10749},{"hugoGeneSymbol":"KIF20A","entrezGeneId":10112},{"hugoGeneSymbol":"KIF20B","entrezGeneId":9585},{"hugoGeneSymbol":"KIF21A","entrezGeneId":55605},{"hugoGeneSymbol":"KIF21B","entrezGeneId":23046},{"hugoGeneSymbol":"KIF22","entrezGeneId":3835},{"hugoGeneSymbol":"KIF23","entrezGeneId":9493},{"hugoGeneSymbol":"KIF24","entrezGeneId":347240},{"hugoGeneSymbol":"KIF25","entrezGeneId":3834},{"hugoGeneSymbol":"KIF25-AS1","entrezGeneId":100505879},{"hugoGeneSymbol":"KIF26A","entrezGeneId":26153},{"hugoGeneSymbol":"KIF26B","entrezGeneId":55083},{"hugoGeneSymbol":"KIF26B-AS1","entrezGeneId":111216275},{"hugoGeneSymbol":"KIF27","entrezGeneId":55582},{"hugoGeneSymbol":"KIF28P","entrezGeneId":100130097},{"hugoGeneSymbol":"KIF2A","entrezGeneId":3796},{"hugoGeneSymbol":"KIF2B","entrezGeneId":84643},{"hugoGeneSymbol":"KIF2C","entrezGeneId":11004},{"hugoGeneSymbol":"KIF3A","entrezGeneId":11127},{"hugoGeneSymbol":"KIF3AP1","entrezGeneId":100419880},{"hugoGeneSymbol":"KIF3B","entrezGeneId":9371},{"hugoGeneSymbol":"KIF3C","entrezGeneId":3797},{"hugoGeneSymbol":"KIF4A","entrezGeneId":24137},{"hugoGeneSymbol":"KIF4B","entrezGeneId":285643},{"hugoGeneSymbol":"KIF4CP","entrezGeneId":347363},{"hugoGeneSymbol":"KIF5A","entrezGeneId":3798},{"hugoGeneSymbol":"KIF5B","entrezGeneId":3799},{"hugoGeneSymbol":"KIF5C","entrezGeneId":3800},{"hugoGeneSymbol":"KIF6","entrezGeneId":221458},{"hugoGeneSymbol":"KIF7","entrezGeneId":374654},{"hugoGeneSymbol":"KIF9","entrezGeneId":64147},{"hugoGeneSymbol":"KIF9-AS1","entrezGeneId":285352},{"hugoGeneSymbol":"KIFAP3","entrezGeneId":22920},{"hugoGeneSymbol":"KIFC1","entrezGeneId":3833},{"hugoGeneSymbol":"KIFC2","entrezGeneId":90990},{"hugoGeneSymbol":"KIFC3","entrezGeneId":3801},{"hugoGeneSymbol":"KIN","entrezGeneId":22944},{"hugoGeneSymbol":"KIR2DL1","entrezGeneId":3802},{"hugoGeneSymbol":"KIR2DL2","entrezGeneId":3803},{"hugoGeneSymbol":"KIR2DL3","entrezGeneId":3804},{"hugoGeneSymbol":"KIR2DL4","entrezGeneId":3805},{"hugoGeneSymbol":"KIR2DL5A","entrezGeneId":57292},{"hugoGeneSymbol":"KIR2DL5B","entrezGeneId":553128},{"hugoGeneSymbol":"KIR2DP1","entrezGeneId":554300},{"hugoGeneSymbol":"KIR2DS1","entrezGeneId":3806},{"hugoGeneSymbol":"KIR2DS2","entrezGeneId":100132285},{"hugoGeneSymbol":"KIR2DS3","entrezGeneId":3808},{"hugoGeneSymbol":"KIR2DS4","entrezGeneId":3809},{"hugoGeneSymbol":"KIR2DS5","entrezGeneId":3810},{"hugoGeneSymbol":"KIR3DL1","entrezGeneId":3811},{"hugoGeneSymbol":"KIR3DL2","entrezGeneId":3812},{"hugoGeneSymbol":"KIR3DL3","entrezGeneId":115653},{"hugoGeneSymbol":"KIR3DP1","entrezGeneId":548594},{"hugoGeneSymbol":"KIR3DS1","entrezGeneId":3813},{"hugoGeneSymbol":"KIR3DX1","entrezGeneId":90011},{"hugoGeneSymbol":"KIRREL1","entrezGeneId":55243},{"hugoGeneSymbol":"KIRREL1-IT1","entrezGeneId":100505785},{"hugoGeneSymbol":"KIRREL2","entrezGeneId":84063},{"hugoGeneSymbol":"KIRREL3","entrezGeneId":84623},{"hugoGeneSymbol":"KIRREL3-AS1","entrezGeneId":100874250},{"hugoGeneSymbol":"KIRREL3-AS2","entrezGeneId":100874251},{"hugoGeneSymbol":"KIRREL3-AS3","entrezGeneId":283165},{"hugoGeneSymbol":"KISS1","entrezGeneId":3814},{"hugoGeneSymbol":"KISS1R","entrezGeneId":84634},{"hugoGeneSymbol":"KIT","entrezGeneId":3815},{"hugoGeneSymbol":"KITLG","entrezGeneId":4254},{"hugoGeneSymbol":"KIZ","entrezGeneId":55857},{"hugoGeneSymbol":"KIZ-AS1","entrezGeneId":101929591},{"hugoGeneSymbol":"KL","entrezGeneId":9365},{"hugoGeneSymbol":"KLB","entrezGeneId":152831},{"hugoGeneSymbol":"KLC1","entrezGeneId":3831},{"hugoGeneSymbol":"KLC2","entrezGeneId":64837},{"hugoGeneSymbol":"KLC3","entrezGeneId":147700},{"hugoGeneSymbol":"KLC4","entrezGeneId":89953},{"hugoGeneSymbol":"KLF1","entrezGeneId":10661},{"hugoGeneSymbol":"KLF10","entrezGeneId":7071},{"hugoGeneSymbol":"KLF11","entrezGeneId":8462},{"hugoGeneSymbol":"KLF12","entrezGeneId":11278},{"hugoGeneSymbol":"KLF13","entrezGeneId":51621},{"hugoGeneSymbol":"KLF14","entrezGeneId":136259},{"hugoGeneSymbol":"KLF15","entrezGeneId":28999},{"hugoGeneSymbol":"KLF16","entrezGeneId":83855},{"hugoGeneSymbol":"KLF17","entrezGeneId":128209},{"hugoGeneSymbol":"KLF17P1","entrezGeneId":100133321},{"hugoGeneSymbol":"KLF17P2","entrezGeneId":106481669},{"hugoGeneSymbol":"KLF18","entrezGeneId":105378952},{"hugoGeneSymbol":"KLF2","entrezGeneId":10365},{"hugoGeneSymbol":"KLF2P1","entrezGeneId":106480253},{"hugoGeneSymbol":"KLF2P2","entrezGeneId":106480678},{"hugoGeneSymbol":"KLF2P3","entrezGeneId":106481672},{"hugoGeneSymbol":"KLF2P4","entrezGeneId":100533668},{"hugoGeneSymbol":"KLF3","entrezGeneId":51274},{"hugoGeneSymbol":"KLF3-AS1","entrezGeneId":79667},{"hugoGeneSymbol":"KLF3P1","entrezGeneId":651815},{"hugoGeneSymbol":"KLF3P2","entrezGeneId":100124394},{"hugoGeneSymbol":"KLF4","entrezGeneId":9314},{"hugoGeneSymbol":"KLF4P1","entrezGeneId":100420113},{"hugoGeneSymbol":"KLF5","entrezGeneId":688},{"hugoGeneSymbol":"KLF6","entrezGeneId":1316},{"hugoGeneSymbol":"KLF7","entrezGeneId":8609},{"hugoGeneSymbol":"KLF7-IT1","entrezGeneId":100874272},{"hugoGeneSymbol":"KLF7P1","entrezGeneId":100128036},{"hugoGeneSymbol":"KLF8","entrezGeneId":11279},{"hugoGeneSymbol":"KLF8P1","entrezGeneId":100128777},{"hugoGeneSymbol":"KLF9","entrezGeneId":687},{"hugoGeneSymbol":"KLHDC1","entrezGeneId":122773},{"hugoGeneSymbol":"KLHDC10","entrezGeneId":23008},{"hugoGeneSymbol":"KLHDC2","entrezGeneId":23588},{"hugoGeneSymbol":"KLHDC3","entrezGeneId":116138},{"hugoGeneSymbol":"KLHDC4","entrezGeneId":54758},{"hugoGeneSymbol":"KLHDC7A","entrezGeneId":127707},{"hugoGeneSymbol":"KLHDC7B","entrezGeneId":113730},{"hugoGeneSymbol":"KLHDC8A","entrezGeneId":55220},{"hugoGeneSymbol":"KLHDC8B","entrezGeneId":200942},{"hugoGeneSymbol":"KLHDC9","entrezGeneId":126823},{"hugoGeneSymbol":"KLHL1","entrezGeneId":57626},{"hugoGeneSymbol":"KLHL10","entrezGeneId":317719},{"hugoGeneSymbol":"KLHL11","entrezGeneId":55175},{"hugoGeneSymbol":"KLHL12","entrezGeneId":59349},{"hugoGeneSymbol":"KLHL13","entrezGeneId":90293},{"hugoGeneSymbol":"KLHL14","entrezGeneId":57565},{"hugoGeneSymbol":"KLHL15","entrezGeneId":80311},{"hugoGeneSymbol":"KLHL17","entrezGeneId":339451},{"hugoGeneSymbol":"KLHL18","entrezGeneId":23276},{"hugoGeneSymbol":"KLHL2","entrezGeneId":11275},{"hugoGeneSymbol":"KLHL20","entrezGeneId":27252},{"hugoGeneSymbol":"KLHL21","entrezGeneId":9903},{"hugoGeneSymbol":"KLHL22","entrezGeneId":84861},{"hugoGeneSymbol":"KLHL23","entrezGeneId":151230},{"hugoGeneSymbol":"KLHL24","entrezGeneId":54800},{"hugoGeneSymbol":"KLHL25","entrezGeneId":64410},{"hugoGeneSymbol":"KLHL26","entrezGeneId":55295},{"hugoGeneSymbol":"KLHL28","entrezGeneId":54813},{"hugoGeneSymbol":"KLHL29","entrezGeneId":114818},{"hugoGeneSymbol":"KLHL2P1","entrezGeneId":729249},{"hugoGeneSymbol":"KLHL3","entrezGeneId":26249},{"hugoGeneSymbol":"KLHL30","entrezGeneId":377007},{"hugoGeneSymbol":"KLHL30-AS1","entrezGeneId":394261},{"hugoGeneSymbol":"KLHL31","entrezGeneId":401265},{"hugoGeneSymbol":"KLHL32","entrezGeneId":114792},{"hugoGeneSymbol":"KLHL33","entrezGeneId":123103},{"hugoGeneSymbol":"KLHL34","entrezGeneId":257240},{"hugoGeneSymbol":"KLHL35","entrezGeneId":283212},{"hugoGeneSymbol":"KLHL36","entrezGeneId":79786},{"hugoGeneSymbol":"KLHL38","entrezGeneId":340359},{"hugoGeneSymbol":"KLHL4","entrezGeneId":56062},{"hugoGeneSymbol":"KLHL40","entrezGeneId":131377},{"hugoGeneSymbol":"KLHL41","entrezGeneId":10324},{"hugoGeneSymbol":"KLHL42","entrezGeneId":57542},{"hugoGeneSymbol":"KLHL5","entrezGeneId":51088},{"hugoGeneSymbol":"KLHL6","entrezGeneId":89857},{"hugoGeneSymbol":"KLHL6-AS1","entrezGeneId":100874019},{"hugoGeneSymbol":"KLHL7","entrezGeneId":55975},{"hugoGeneSymbol":"KLHL7-DT","entrezGeneId":100775104},{"hugoGeneSymbol":"KLHL8","entrezGeneId":57563},{"hugoGeneSymbol":"KLHL9","entrezGeneId":55958},{"hugoGeneSymbol":"KLK1","entrezGeneId":3816},{"hugoGeneSymbol":"KLK10","entrezGeneId":5655},{"hugoGeneSymbol":"KLK11","entrezGeneId":11012},{"hugoGeneSymbol":"KLK12","entrezGeneId":43849},{"hugoGeneSymbol":"KLK13","entrezGeneId":26085},{"hugoGeneSymbol":"KLK14","entrezGeneId":43847},{"hugoGeneSymbol":"KLK15","entrezGeneId":55554},{"hugoGeneSymbol":"KLK2","entrezGeneId":3817},{"hugoGeneSymbol":"KLK3","entrezGeneId":354},{"hugoGeneSymbol":"KLK4","entrezGeneId":9622},{"hugoGeneSymbol":"KLK5","entrezGeneId":25818},{"hugoGeneSymbol":"KLK6","entrezGeneId":5653},{"hugoGeneSymbol":"KLK7","entrezGeneId":5650},{"hugoGeneSymbol":"KLK8","entrezGeneId":11202},{"hugoGeneSymbol":"KLK9","entrezGeneId":284366},{"hugoGeneSymbol":"KLKB1","entrezGeneId":3818},{"hugoGeneSymbol":"KLKP1","entrezGeneId":606293},{"hugoGeneSymbol":"KLLN","entrezGeneId":100144748},{"hugoGeneSymbol":"KLRA1P","entrezGeneId":10748},{"hugoGeneSymbol":"KLRB1","entrezGeneId":3820},{"hugoGeneSymbol":"KLRC1","entrezGeneId":3821},{"hugoGeneSymbol":"KLRC2","entrezGeneId":3822},{"hugoGeneSymbol":"KLRC3","entrezGeneId":3823},{"hugoGeneSymbol":"KLRC4","entrezGeneId":8302},{"hugoGeneSymbol":"KLRC4-KLRK1","entrezGeneId":100528032},{"hugoGeneSymbol":"KLRD1","entrezGeneId":3824},{"hugoGeneSymbol":"KLRF1","entrezGeneId":51348},{"hugoGeneSymbol":"KLRF2","entrezGeneId":100431172},{"hugoGeneSymbol":"KLRG1","entrezGeneId":10219},{"hugoGeneSymbol":"KLRG2","entrezGeneId":346689},{"hugoGeneSymbol":"KLRK1","entrezGeneId":22914},{"hugoGeneSymbol":"KMO","entrezGeneId":8564},{"hugoGeneSymbol":"KMT2A","entrezGeneId":4297},{"hugoGeneSymbol":"KMT2B","entrezGeneId":9757},{"hugoGeneSymbol":"KMT2C","entrezGeneId":58508},{"hugoGeneSymbol":"KMT2D","entrezGeneId":8085},{"hugoGeneSymbol":"KMT2E","entrezGeneId":55904},{"hugoGeneSymbol":"KMT2E-AS1","entrezGeneId":100216545},{"hugoGeneSymbol":"KMT5A","entrezGeneId":387893},{"hugoGeneSymbol":"KMT5B","entrezGeneId":51111},{"hugoGeneSymbol":"KMT5C","entrezGeneId":84787},{"hugoGeneSymbol":"KNCN","entrezGeneId":148930},{"hugoGeneSymbol":"KNDC1","entrezGeneId":85442},{"hugoGeneSymbol":"KNG1","entrezGeneId":3827},{"hugoGeneSymbol":"KNL1","entrezGeneId":57082},{"hugoGeneSymbol":"KNOP1","entrezGeneId":400506},{"hugoGeneSymbol":"KNOP1P1","entrezGeneId":100129937},{"hugoGeneSymbol":"KNOP1P2","entrezGeneId":100420898},{"hugoGeneSymbol":"KNOP1P3","entrezGeneId":100128029},{"hugoGeneSymbol":"KNOP1P4","entrezGeneId":100420843},{"hugoGeneSymbol":"KNOP1P5","entrezGeneId":100130158},{"hugoGeneSymbol":"KNSTRN","entrezGeneId":90417},{"hugoGeneSymbol":"KNTC1","entrezGeneId":9735},{"hugoGeneSymbol":"KONDS","entrezGeneId":100653373},{"hugoGeneSymbol":"KPNA1","entrezGeneId":3836},{"hugoGeneSymbol":"KPNA2","entrezGeneId":3838},{"hugoGeneSymbol":"KPNA2P1","entrezGeneId":643513},{"hugoGeneSymbol":"KPNA2P2","entrezGeneId":645680},{"hugoGeneSymbol":"KPNA2P3","entrezGeneId":109286552},{"hugoGeneSymbol":"KPNA3","entrezGeneId":3839},{"hugoGeneSymbol":"KPNA4","entrezGeneId":3840},{"hugoGeneSymbol":"KPNA5","entrezGeneId":3841},{"hugoGeneSymbol":"KPNA6","entrezGeneId":23633},{"hugoGeneSymbol":"KPNA7","entrezGeneId":402569},{"hugoGeneSymbol":"KPNB1","entrezGeneId":3837},{"hugoGeneSymbol":"KPRP","entrezGeneId":448834},{"hugoGeneSymbol":"KPTN","entrezGeneId":11133},{"hugoGeneSymbol":"KRAS","entrezGeneId":3845},{"hugoGeneSymbol":"KRASP1","entrezGeneId":3844},{"hugoGeneSymbol":"KRBA1","entrezGeneId":84626},{"hugoGeneSymbol":"KRBA2","entrezGeneId":124751},{"hugoGeneSymbol":"KRBOX1","entrezGeneId":100506243},{"hugoGeneSymbol":"KRBOX1-AS1","entrezGeneId":100506275},{"hugoGeneSymbol":"KRBOX4","entrezGeneId":55634},{"hugoGeneSymbol":"KRCC1","entrezGeneId":51315},{"hugoGeneSymbol":"KREMEN1","entrezGeneId":83999},{"hugoGeneSymbol":"KREMEN2","entrezGeneId":79412},{"hugoGeneSymbol":"KRI1","entrezGeneId":65095},{"hugoGeneSymbol":"KRIT1","entrezGeneId":889},{"hugoGeneSymbol":"KRR1","entrezGeneId":11103},{"hugoGeneSymbol":"KRR1P1","entrezGeneId":100422486},{"hugoGeneSymbol":"KRT1","entrezGeneId":3848},{"hugoGeneSymbol":"KRT10","entrezGeneId":3858},{"hugoGeneSymbol":"KRT12","entrezGeneId":3859},{"hugoGeneSymbol":"KRT125P","entrezGeneId":100418828},{"hugoGeneSymbol":"KRT126P","entrezGeneId":643865},{"hugoGeneSymbol":"KRT127P","entrezGeneId":100418779},{"hugoGeneSymbol":"KRT128P","entrezGeneId":106480238},{"hugoGeneSymbol":"KRT13","entrezGeneId":3860},{"hugoGeneSymbol":"KRT14","entrezGeneId":3861},{"hugoGeneSymbol":"KRT15","entrezGeneId":3866},{"hugoGeneSymbol":"KRT16","entrezGeneId":3868},{"hugoGeneSymbol":"KRT16P1","entrezGeneId":729252},{"hugoGeneSymbol":"KRT16P2","entrezGeneId":400578},{"hugoGeneSymbol":"KRT16P3","entrezGeneId":644945},{"hugoGeneSymbol":"KRT16P4","entrezGeneId":339244},{"hugoGeneSymbol":"KRT16P5","entrezGeneId":353196},{"hugoGeneSymbol":"KRT16P6","entrezGeneId":353194},{"hugoGeneSymbol":"KRT17","entrezGeneId":3872},{"hugoGeneSymbol":"KRT17P1","entrezGeneId":147228},{"hugoGeneSymbol":"KRT17P2","entrezGeneId":339241},{"hugoGeneSymbol":"KRT17P3","entrezGeneId":729682},{"hugoGeneSymbol":"KRT17P4","entrezGeneId":339186},{"hugoGeneSymbol":"KRT17P5","entrezGeneId":339240},{"hugoGeneSymbol":"KRT17P6","entrezGeneId":284196},{"hugoGeneSymbol":"KRT17P7","entrezGeneId":339258},{"hugoGeneSymbol":"KRT17P8","entrezGeneId":100130074},{"hugoGeneSymbol":"KRT18","entrezGeneId":3875},{"hugoGeneSymbol":"KRT18P1","entrezGeneId":3879},{"hugoGeneSymbol":"KRT18P10","entrezGeneId":360019},{"hugoGeneSymbol":"KRT18P11","entrezGeneId":3876},{"hugoGeneSymbol":"KRT18P12","entrezGeneId":643471},{"hugoGeneSymbol":"KRT18P13","entrezGeneId":392371},{"hugoGeneSymbol":"KRT18P14","entrezGeneId":119722},{"hugoGeneSymbol":"KRT18P15","entrezGeneId":729211},{"hugoGeneSymbol":"KRT18P16","entrezGeneId":391827},{"hugoGeneSymbol":"KRT18P17","entrezGeneId":344866},{"hugoGeneSymbol":"KRT18P18","entrezGeneId":342374},{"hugoGeneSymbol":"KRT18P19","entrezGeneId":339781},{"hugoGeneSymbol":"KRT18P2","entrezGeneId":54044},{"hugoGeneSymbol":"KRT18P20","entrezGeneId":121054},{"hugoGeneSymbol":"KRT18P21","entrezGeneId":132391},{"hugoGeneSymbol":"KRT18P22","entrezGeneId":442252},{"hugoGeneSymbol":"KRT18P23","entrezGeneId":642448},{"hugoGeneSymbol":"KRT18P24","entrezGeneId":340460},{"hugoGeneSymbol":"KRT18P25","entrezGeneId":391647},{"hugoGeneSymbol":"KRT18P26","entrezGeneId":100418770},{"hugoGeneSymbol":"KRT18P27","entrezGeneId":390418},{"hugoGeneSymbol":"KRT18P28","entrezGeneId":343326},{"hugoGeneSymbol":"KRT18P29","entrezGeneId":729050},{"hugoGeneSymbol":"KRT18P3","entrezGeneId":170527},{"hugoGeneSymbol":"KRT18P30","entrezGeneId":643858},{"hugoGeneSymbol":"KRT18P31","entrezGeneId":646723},{"hugoGeneSymbol":"KRT18P32","entrezGeneId":391179},{"hugoGeneSymbol":"KRT18P33","entrezGeneId":647162},{"hugoGeneSymbol":"KRT18P34","entrezGeneId":391589},{"hugoGeneSymbol":"KRT18P35","entrezGeneId":391584},{"hugoGeneSymbol":"KRT18P36","entrezGeneId":442406},{"hugoGeneSymbol":"KRT18P37","entrezGeneId":392214},{"hugoGeneSymbol":"KRT18P38","entrezGeneId":441133},{"hugoGeneSymbol":"KRT18P39","entrezGeneId":344462},{"hugoGeneSymbol":"KRT18P4","entrezGeneId":391256},{"hugoGeneSymbol":"KRT18P40","entrezGeneId":390904},{"hugoGeneSymbol":"KRT18P41","entrezGeneId":345430},{"hugoGeneSymbol":"KRT18P42","entrezGeneId":391819},{"hugoGeneSymbol":"KRT18P43","entrezGeneId":151825},{"hugoGeneSymbol":"KRT18P44","entrezGeneId":139748},{"hugoGeneSymbol":"KRT18P45","entrezGeneId":391803},{"hugoGeneSymbol":"KRT18P46","entrezGeneId":391458},{"hugoGeneSymbol":"KRT18P47","entrezGeneId":390634},{"hugoGeneSymbol":"KRT18P48","entrezGeneId":340598},{"hugoGeneSymbol":"KRT18P49","entrezGeneId":392516},{"hugoGeneSymbol":"KRT18P5","entrezGeneId":728300},{"hugoGeneSymbol":"KRT18P50","entrezGeneId":442236},{"hugoGeneSymbol":"KRT18P51","entrezGeneId":391703},{"hugoGeneSymbol":"KRT18P52","entrezGeneId":100418769},{"hugoGeneSymbol":"KRT18P53","entrezGeneId":106478925},{"hugoGeneSymbol":"KRT18P54","entrezGeneId":100418792},{"hugoGeneSymbol":"KRT18P55","entrezGeneId":284085},{"hugoGeneSymbol":"KRT18P56","entrezGeneId":106479027},{"hugoGeneSymbol":"KRT18P57","entrezGeneId":643329},{"hugoGeneSymbol":"KRT18P58","entrezGeneId":644030},{"hugoGeneSymbol":"KRT18P59","entrezGeneId":399965},{"hugoGeneSymbol":"KRT18P6","entrezGeneId":122592},{"hugoGeneSymbol":"KRT18P60","entrezGeneId":100418829},{"hugoGeneSymbol":"KRT18P61","entrezGeneId":100418865},{"hugoGeneSymbol":"KRT18P62","entrezGeneId":100287635},{"hugoGeneSymbol":"KRT18P63","entrezGeneId":100288868},{"hugoGeneSymbol":"KRT18P64","entrezGeneId":107133513},{"hugoGeneSymbol":"KRT18P65","entrezGeneId":442249},{"hugoGeneSymbol":"KRT18P66","entrezGeneId":442405},{"hugoGeneSymbol":"KRT18P67","entrezGeneId":100631239},{"hugoGeneSymbol":"KRT18P68","entrezGeneId":139060},{"hugoGeneSymbol":"KRT18P7","entrezGeneId":100418877},{"hugoGeneSymbol":"KRT18P8","entrezGeneId":125242},{"hugoGeneSymbol":"KRT18P9","entrezGeneId":442205},{"hugoGeneSymbol":"KRT19","entrezGeneId":3880},{"hugoGeneSymbol":"KRT19P1","entrezGeneId":441160},{"hugoGeneSymbol":"KRT19P2","entrezGeneId":160313},{"hugoGeneSymbol":"KRT19P3","entrezGeneId":442114},{"hugoGeneSymbol":"KRT19P4","entrezGeneId":100128041},{"hugoGeneSymbol":"KRT19P6","entrezGeneId":106480807},{"hugoGeneSymbol":"KRT2","entrezGeneId":3849},{"hugoGeneSymbol":"KRT20","entrezGeneId":54474},{"hugoGeneSymbol":"KRT222","entrezGeneId":125113},{"hugoGeneSymbol":"KRT223P","entrezGeneId":643115},{"hugoGeneSymbol":"KRT23","entrezGeneId":25984},{"hugoGeneSymbol":"KRT24","entrezGeneId":192666},{"hugoGeneSymbol":"KRT25","entrezGeneId":147183},{"hugoGeneSymbol":"KRT26","entrezGeneId":353288},{"hugoGeneSymbol":"KRT27","entrezGeneId":342574},{"hugoGeneSymbol":"KRT28","entrezGeneId":162605},{"hugoGeneSymbol":"KRT3","entrezGeneId":3850},{"hugoGeneSymbol":"KRT31","entrezGeneId":3881},{"hugoGeneSymbol":"KRT32","entrezGeneId":3882},{"hugoGeneSymbol":"KRT33A","entrezGeneId":3883},{"hugoGeneSymbol":"KRT33B","entrezGeneId":3884},{"hugoGeneSymbol":"KRT34","entrezGeneId":3885},{"hugoGeneSymbol":"KRT35","entrezGeneId":3886},{"hugoGeneSymbol":"KRT36","entrezGeneId":8689},{"hugoGeneSymbol":"KRT37","entrezGeneId":8688},{"hugoGeneSymbol":"KRT38","entrezGeneId":8687},{"hugoGeneSymbol":"KRT39","entrezGeneId":390792},{"hugoGeneSymbol":"KRT4","entrezGeneId":3851},{"hugoGeneSymbol":"KRT40","entrezGeneId":125115},{"hugoGeneSymbol":"KRT41P","entrezGeneId":8686},{"hugoGeneSymbol":"KRT42P","entrezGeneId":284116},{"hugoGeneSymbol":"KRT43P","entrezGeneId":100418861},{"hugoGeneSymbol":"KRT5","entrezGeneId":3852},{"hugoGeneSymbol":"KRT6A","entrezGeneId":3853},{"hugoGeneSymbol":"KRT6B","entrezGeneId":3854},{"hugoGeneSymbol":"KRT6C","entrezGeneId":286887},{"hugoGeneSymbol":"KRT7","entrezGeneId":3855},{"hugoGeneSymbol":"KRT7-AS","entrezGeneId":109729127},{"hugoGeneSymbol":"KRT71","entrezGeneId":112802},{"hugoGeneSymbol":"KRT72","entrezGeneId":140807},{"hugoGeneSymbol":"KRT73","entrezGeneId":319101},{"hugoGeneSymbol":"KRT73-AS1","entrezGeneId":100127967},{"hugoGeneSymbol":"KRT74","entrezGeneId":121391},{"hugoGeneSymbol":"KRT75","entrezGeneId":9119},{"hugoGeneSymbol":"KRT76","entrezGeneId":51350},{"hugoGeneSymbol":"KRT77","entrezGeneId":374454},{"hugoGeneSymbol":"KRT78","entrezGeneId":196374},{"hugoGeneSymbol":"KRT79","entrezGeneId":338785},{"hugoGeneSymbol":"KRT8","entrezGeneId":3856},{"hugoGeneSymbol":"KRT80","entrezGeneId":144501},{"hugoGeneSymbol":"KRT81","entrezGeneId":3887},{"hugoGeneSymbol":"KRT82","entrezGeneId":3888},{"hugoGeneSymbol":"KRT83","entrezGeneId":3889},{"hugoGeneSymbol":"KRT84","entrezGeneId":3890},{"hugoGeneSymbol":"KRT85","entrezGeneId":3891},{"hugoGeneSymbol":"KRT86","entrezGeneId":3892},{"hugoGeneSymbol":"KRT87P","entrezGeneId":85349},{"hugoGeneSymbol":"KRT88P","entrezGeneId":85348},{"hugoGeneSymbol":"KRT89P","entrezGeneId":85344},{"hugoGeneSymbol":"KRT8P1","entrezGeneId":338017},{"hugoGeneSymbol":"KRT8P10","entrezGeneId":344320},{"hugoGeneSymbol":"KRT8P11","entrezGeneId":347265},{"hugoGeneSymbol":"KRT8P12","entrezGeneId":90133},{"hugoGeneSymbol":"KRT8P13","entrezGeneId":730023},{"hugoGeneSymbol":"KRT8P14","entrezGeneId":347333},{"hugoGeneSymbol":"KRT8P15","entrezGeneId":645834},{"hugoGeneSymbol":"KRT8P16","entrezGeneId":220959},{"hugoGeneSymbol":"KRT8P17","entrezGeneId":392479},{"hugoGeneSymbol":"KRT8P18","entrezGeneId":442078},{"hugoGeneSymbol":"KRT8P19","entrezGeneId":644998},{"hugoGeneSymbol":"KRT8P2","entrezGeneId":390472},{"hugoGeneSymbol":"KRT8P20","entrezGeneId":441218},{"hugoGeneSymbol":"KRT8P21","entrezGeneId":126811},{"hugoGeneSymbol":"KRT8P22","entrezGeneId":342419},{"hugoGeneSymbol":"KRT8P23","entrezGeneId":390610},{"hugoGeneSymbol":"KRT8P24","entrezGeneId":729344},{"hugoGeneSymbol":"KRT8P25","entrezGeneId":402134},{"hugoGeneSymbol":"KRT8P26","entrezGeneId":390211},{"hugoGeneSymbol":"KRT8P27","entrezGeneId":442455},{"hugoGeneSymbol":"KRT8P28","entrezGeneId":391099},{"hugoGeneSymbol":"KRT8P29","entrezGeneId":391155},{"hugoGeneSymbol":"KRT8P3","entrezGeneId":728638},{"hugoGeneSymbol":"KRT8P30","entrezGeneId":391485},{"hugoGeneSymbol":"KRT8P31","entrezGeneId":728167},{"hugoGeneSymbol":"KRT8P32","entrezGeneId":100289133},{"hugoGeneSymbol":"KRT8P33","entrezGeneId":100418737},{"hugoGeneSymbol":"KRT8P34","entrezGeneId":100418811},{"hugoGeneSymbol":"KRT8P35","entrezGeneId":100418747},{"hugoGeneSymbol":"KRT8P36","entrezGeneId":100418748},{"hugoGeneSymbol":"KRT8P37","entrezGeneId":100287325},{"hugoGeneSymbol":"KRT8P38","entrezGeneId":100418799},{"hugoGeneSymbol":"KRT8P39","entrezGeneId":100418781},{"hugoGeneSymbol":"KRT8P4","entrezGeneId":100509857},{"hugoGeneSymbol":"KRT8P40","entrezGeneId":100418728},{"hugoGeneSymbol":"KRT8P41","entrezGeneId":283102},{"hugoGeneSymbol":"KRT8P42","entrezGeneId":100418750},{"hugoGeneSymbol":"KRT8P43","entrezGeneId":100289319},{"hugoGeneSymbol":"KRT8P44","entrezGeneId":100129958},{"hugoGeneSymbol":"KRT8P45","entrezGeneId":149501},{"hugoGeneSymbol":"KRT8P46","entrezGeneId":100418744},{"hugoGeneSymbol":"KRT8P47","entrezGeneId":644743},{"hugoGeneSymbol":"KRT8P48","entrezGeneId":100887067},{"hugoGeneSymbol":"KRT8P49","entrezGeneId":643447},{"hugoGeneSymbol":"KRT8P5","entrezGeneId":342732},{"hugoGeneSymbol":"KRT8P50","entrezGeneId":102724430},{"hugoGeneSymbol":"KRT8P51","entrezGeneId":106480676},{"hugoGeneSymbol":"KRT8P6","entrezGeneId":392552},{"hugoGeneSymbol":"KRT8P7","entrezGeneId":729131},{"hugoGeneSymbol":"KRT8P8","entrezGeneId":402429},{"hugoGeneSymbol":"KRT8P9","entrezGeneId":390601},{"hugoGeneSymbol":"KRT9","entrezGeneId":3857},{"hugoGeneSymbol":"KRT90P","entrezGeneId":85340},{"hugoGeneSymbol":"KRTAP1-1","entrezGeneId":81851},{"hugoGeneSymbol":"KRTAP1-3","entrezGeneId":81850},{"hugoGeneSymbol":"KRTAP1-4","entrezGeneId":728255},{"hugoGeneSymbol":"KRTAP1-5","entrezGeneId":83895},{"hugoGeneSymbol":"KRTAP10-1","entrezGeneId":386677},{"hugoGeneSymbol":"KRTAP10-10","entrezGeneId":353333},{"hugoGeneSymbol":"KRTAP10-11","entrezGeneId":386678},{"hugoGeneSymbol":"KRTAP10-12","entrezGeneId":386685},{"hugoGeneSymbol":"KRTAP10-13P","entrezGeneId":100874224},{"hugoGeneSymbol":"KRTAP10-2","entrezGeneId":386679},{"hugoGeneSymbol":"KRTAP10-3","entrezGeneId":386682},{"hugoGeneSymbol":"KRTAP10-4","entrezGeneId":386672},{"hugoGeneSymbol":"KRTAP10-5","entrezGeneId":386680},{"hugoGeneSymbol":"KRTAP10-6","entrezGeneId":386674},{"hugoGeneSymbol":"KRTAP10-7","entrezGeneId":386675},{"hugoGeneSymbol":"KRTAP10-8","entrezGeneId":386681},{"hugoGeneSymbol":"KRTAP10-9","entrezGeneId":386676},{"hugoGeneSymbol":"KRTAP11-1","entrezGeneId":337880},{"hugoGeneSymbol":"KRTAP12-1","entrezGeneId":353332},{"hugoGeneSymbol":"KRTAP12-2","entrezGeneId":353323},{"hugoGeneSymbol":"KRTAP12-3","entrezGeneId":386683},{"hugoGeneSymbol":"KRTAP12-4","entrezGeneId":386684},{"hugoGeneSymbol":"KRTAP12-6P","entrezGeneId":112268487},{"hugoGeneSymbol":"KRTAP13-1","entrezGeneId":140258},{"hugoGeneSymbol":"KRTAP13-2","entrezGeneId":337959},{"hugoGeneSymbol":"KRTAP13-3","entrezGeneId":337960},{"hugoGeneSymbol":"KRTAP13-4","entrezGeneId":284827},{"hugoGeneSymbol":"KRTAP13-5P","entrezGeneId":337964},{"hugoGeneSymbol":"KRTAP13-6P","entrezGeneId":337965},{"hugoGeneSymbol":"KRTAP15-1","entrezGeneId":254950},{"hugoGeneSymbol":"KRTAP16-1","entrezGeneId":100505753},{"hugoGeneSymbol":"KRTAP17-1","entrezGeneId":83902},{"hugoGeneSymbol":"KRTAP19-1","entrezGeneId":337882},{"hugoGeneSymbol":"KRTAP19-10P","entrezGeneId":337983},{"hugoGeneSymbol":"KRTAP19-11P","entrezGeneId":337984},{"hugoGeneSymbol":"KRTAP19-2","entrezGeneId":337969},{"hugoGeneSymbol":"KRTAP19-3","entrezGeneId":337970},{"hugoGeneSymbol":"KRTAP19-4","entrezGeneId":337971},{"hugoGeneSymbol":"KRTAP19-5","entrezGeneId":337972},{"hugoGeneSymbol":"KRTAP19-6","entrezGeneId":337973},{"hugoGeneSymbol":"KRTAP19-7","entrezGeneId":337974},{"hugoGeneSymbol":"KRTAP19-8","entrezGeneId":728299},{"hugoGeneSymbol":"KRTAP19-9P","entrezGeneId":337982},{"hugoGeneSymbol":"KRTAP2-1","entrezGeneId":81872},{"hugoGeneSymbol":"KRTAP2-2","entrezGeneId":728279},{"hugoGeneSymbol":"KRTAP2-3","entrezGeneId":730755},{"hugoGeneSymbol":"KRTAP2-4","entrezGeneId":85294},{"hugoGeneSymbol":"KRTAP2-5P","entrezGeneId":85343},{"hugoGeneSymbol":"KRTAP20-1","entrezGeneId":337975},{"hugoGeneSymbol":"KRTAP20-2","entrezGeneId":337976},{"hugoGeneSymbol":"KRTAP20-3","entrezGeneId":337985},{"hugoGeneSymbol":"KRTAP20-4","entrezGeneId":100151643},{"hugoGeneSymbol":"KRTAP21-1","entrezGeneId":337977},{"hugoGeneSymbol":"KRTAP21-2","entrezGeneId":337978},{"hugoGeneSymbol":"KRTAP21-3","entrezGeneId":100288323},{"hugoGeneSymbol":"KRTAP21-4P","entrezGeneId":337986},{"hugoGeneSymbol":"KRTAP22-1","entrezGeneId":337979},{"hugoGeneSymbol":"KRTAP22-2","entrezGeneId":100288287},{"hugoGeneSymbol":"KRTAP23-1","entrezGeneId":337963},{"hugoGeneSymbol":"KRTAP24-1","entrezGeneId":643803},{"hugoGeneSymbol":"KRTAP25-1","entrezGeneId":100131902},{"hugoGeneSymbol":"KRTAP26-1","entrezGeneId":388818},{"hugoGeneSymbol":"KRTAP27-1","entrezGeneId":643812},{"hugoGeneSymbol":"KRTAP29-1","entrezGeneId":100533177},{"hugoGeneSymbol":"KRTAP3-1","entrezGeneId":83896},{"hugoGeneSymbol":"KRTAP3-2","entrezGeneId":83897},{"hugoGeneSymbol":"KRTAP3-3","entrezGeneId":85293},{"hugoGeneSymbol":"KRTAP3-4P","entrezGeneId":85345},{"hugoGeneSymbol":"KRTAP4-1","entrezGeneId":85285},{"hugoGeneSymbol":"KRTAP4-11","entrezGeneId":653240},{"hugoGeneSymbol":"KRTAP4-12","entrezGeneId":83755},{"hugoGeneSymbol":"KRTAP4-16","entrezGeneId":85354},{"hugoGeneSymbol":"KRTAP4-2","entrezGeneId":85291},{"hugoGeneSymbol":"KRTAP4-3","entrezGeneId":85290},{"hugoGeneSymbol":"KRTAP4-4","entrezGeneId":84616},{"hugoGeneSymbol":"KRTAP4-5","entrezGeneId":85289},{"hugoGeneSymbol":"KRTAP4-6","entrezGeneId":81871},{"hugoGeneSymbol":"KRTAP4-7","entrezGeneId":100132476},{"hugoGeneSymbol":"KRTAP4-8","entrezGeneId":728224},{"hugoGeneSymbol":"KRTAP4-9","entrezGeneId":100132386},{"hugoGeneSymbol":"KRTAP5-1","entrezGeneId":387264},{"hugoGeneSymbol":"KRTAP5-10","entrezGeneId":387273},{"hugoGeneSymbol":"KRTAP5-11","entrezGeneId":440051},{"hugoGeneSymbol":"KRTAP5-13P","entrezGeneId":387275},{"hugoGeneSymbol":"KRTAP5-14P","entrezGeneId":387276},{"hugoGeneSymbol":"KRTAP5-2","entrezGeneId":440021},{"hugoGeneSymbol":"KRTAP5-3","entrezGeneId":387266},{"hugoGeneSymbol":"KRTAP5-4","entrezGeneId":387267},{"hugoGeneSymbol":"KRTAP5-5","entrezGeneId":439915},{"hugoGeneSymbol":"KRTAP5-6","entrezGeneId":440023},{"hugoGeneSymbol":"KRTAP5-7","entrezGeneId":440050},{"hugoGeneSymbol":"KRTAP5-8","entrezGeneId":57830},{"hugoGeneSymbol":"KRTAP5-9","entrezGeneId":3846},{"hugoGeneSymbol":"KRTAP5-AS1","entrezGeneId":338651},{"hugoGeneSymbol":"KRTAP6-1","entrezGeneId":337966},{"hugoGeneSymbol":"KRTAP6-2","entrezGeneId":337967},{"hugoGeneSymbol":"KRTAP6-3","entrezGeneId":337968},{"hugoGeneSymbol":"KRTAP7-1","entrezGeneId":337878},{"hugoGeneSymbol":"KRTAP8-1","entrezGeneId":337879},{"hugoGeneSymbol":"KRTAP8-2P","entrezGeneId":337980},{"hugoGeneSymbol":"KRTAP8-3P","entrezGeneId":337981},{"hugoGeneSymbol":"KRTAP9-1","entrezGeneId":728318},{"hugoGeneSymbol":"KRTAP9-10P","entrezGeneId":106480422},{"hugoGeneSymbol":"KRTAP9-11P","entrezGeneId":85347},{"hugoGeneSymbol":"KRTAP9-12P","entrezGeneId":100287715},{"hugoGeneSymbol":"KRTAP9-2","entrezGeneId":83899},{"hugoGeneSymbol":"KRTAP9-3","entrezGeneId":83900},{"hugoGeneSymbol":"KRTAP9-4","entrezGeneId":85280},{"hugoGeneSymbol":"KRTAP9-6","entrezGeneId":100507608},{"hugoGeneSymbol":"KRTAP9-7","entrezGeneId":100505724},{"hugoGeneSymbol":"KRTAP9-8","entrezGeneId":83901},{"hugoGeneSymbol":"KRTAP9-9","entrezGeneId":81870},{"hugoGeneSymbol":"KRTCAP2","entrezGeneId":200185},{"hugoGeneSymbol":"KRTCAP3","entrezGeneId":200634},{"hugoGeneSymbol":"KRTDAP","entrezGeneId":388533},{"hugoGeneSymbol":"KSR1","entrezGeneId":8844},{"hugoGeneSymbol":"KSR1P1","entrezGeneId":106479050},{"hugoGeneSymbol":"KSR2","entrezGeneId":283455},{"hugoGeneSymbol":"KTCN2","entrezGeneId":450092},{"hugoGeneSymbol":"KTCN3","entrezGeneId":406215},{"hugoGeneSymbol":"KTCN4","entrezGeneId":550624},{"hugoGeneSymbol":"KTCN5","entrezGeneId":100885801},{"hugoGeneSymbol":"KTCN6","entrezGeneId":100885802},{"hugoGeneSymbol":"KTCN7","entrezGeneId":100887822},{"hugoGeneSymbol":"KTCN8","entrezGeneId":100885803},{"hugoGeneSymbol":"KTI12","entrezGeneId":112970},{"hugoGeneSymbol":"KTN1","entrezGeneId":3895},{"hugoGeneSymbol":"KTN1-AS1","entrezGeneId":100129075},{"hugoGeneSymbol":"KTWS","entrezGeneId":791122},{"hugoGeneSymbol":"KU-MEL-3","entrezGeneId":497048},{"hugoGeneSymbol":"KWE","entrezGeneId":3896},{"hugoGeneSymbol":"KXD1","entrezGeneId":79036},{"hugoGeneSymbol":"KY","entrezGeneId":339855},{"hugoGeneSymbol":"KYAT1","entrezGeneId":883},{"hugoGeneSymbol":"KYAT3","entrezGeneId":56267},{"hugoGeneSymbol":"KYNU","entrezGeneId":8942},{"hugoGeneSymbol":"KYNUP1","entrezGeneId":729321},{"hugoGeneSymbol":"KYNUP2","entrezGeneId":729310},{"hugoGeneSymbol":"KYNUP3","entrezGeneId":729323},{"hugoGeneSymbol":"KYPSC1","entrezGeneId":780921},{"hugoGeneSymbol":"L1CAM","entrezGeneId":3897},{"hugoGeneSymbol":"L1TD1","entrezGeneId":54596},{"hugoGeneSymbol":"L1TD1P1","entrezGeneId":100126007},{"hugoGeneSymbol":"L2HGDH","entrezGeneId":79944},{"hugoGeneSymbol":"L3HYPDH","entrezGeneId":112849},{"hugoGeneSymbol":"L3MBTL1","entrezGeneId":26013},{"hugoGeneSymbol":"L3MBTL2","entrezGeneId":83746},{"hugoGeneSymbol":"L3MBTL3","entrezGeneId":84456},{"hugoGeneSymbol":"L3MBTL4","entrezGeneId":91133},{"hugoGeneSymbol":"L3MBTL4-AS1","entrezGeneId":101927150},{"hugoGeneSymbol":"LACAT1","entrezGeneId":105371906},{"hugoGeneSymbol":"LACC1","entrezGeneId":144811},{"hugoGeneSymbol":"LACRT","entrezGeneId":90070},{"hugoGeneSymbol":"LACTB","entrezGeneId":114294},{"hugoGeneSymbol":"LACTB2","entrezGeneId":51110},{"hugoGeneSymbol":"LACTB2-AS1","entrezGeneId":286190},{"hugoGeneSymbol":"LACTBL1","entrezGeneId":646262},{"hugoGeneSymbol":"LAD1","entrezGeneId":3898},{"hugoGeneSymbol":"LAG3","entrezGeneId":3902},{"hugoGeneSymbol":"LAG5","entrezGeneId":7895},{"hugoGeneSymbol":"LAGE3","entrezGeneId":8270},{"hugoGeneSymbol":"LAGE3P1","entrezGeneId":646808},{"hugoGeneSymbol":"LAIR1","entrezGeneId":3903},{"hugoGeneSymbol":"LAIR2","entrezGeneId":3904},{"hugoGeneSymbol":"LAKLG","entrezGeneId":3905},{"hugoGeneSymbol":"LALBA","entrezGeneId":3906},{"hugoGeneSymbol":"LALL","entrezGeneId":8009},{"hugoGeneSymbol":"LAMA1","entrezGeneId":284217},{"hugoGeneSymbol":"LAMA2","entrezGeneId":3908},{"hugoGeneSymbol":"LAMA3","entrezGeneId":3909},{"hugoGeneSymbol":"LAMA4","entrezGeneId":3910},{"hugoGeneSymbol":"LAMA5","entrezGeneId":3911},{"hugoGeneSymbol":"LAMA5-AS1","entrezGeneId":101928158},{"hugoGeneSymbol":"LAMB1","entrezGeneId":3912},{"hugoGeneSymbol":"LAMB2","entrezGeneId":3913},{"hugoGeneSymbol":"LAMB2P1","entrezGeneId":22973},{"hugoGeneSymbol":"LAMB3","entrezGeneId":3914},{"hugoGeneSymbol":"LAMB4","entrezGeneId":22798},{"hugoGeneSymbol":"LAMC1","entrezGeneId":3915},{"hugoGeneSymbol":"LAMC1-AS1","entrezGeneId":110841583},{"hugoGeneSymbol":"LAMC2","entrezGeneId":3918},{"hugoGeneSymbol":"LAMC3","entrezGeneId":10319},{"hugoGeneSymbol":"LAMP1","entrezGeneId":3916},{"hugoGeneSymbol":"LAMP1P1","entrezGeneId":100421198},{"hugoGeneSymbol":"LAMP2","entrezGeneId":3920},{"hugoGeneSymbol":"LAMP3","entrezGeneId":27074},{"hugoGeneSymbol":"LAMP5","entrezGeneId":24141},{"hugoGeneSymbol":"LAMP5-AS1","entrezGeneId":101929329},{"hugoGeneSymbol":"LAMTOR1","entrezGeneId":55004},{"hugoGeneSymbol":"LAMTOR2","entrezGeneId":28956},{"hugoGeneSymbol":"LAMTOR3","entrezGeneId":8649},{"hugoGeneSymbol":"LAMTOR3P1","entrezGeneId":100130119},{"hugoGeneSymbol":"LAMTOR3P2","entrezGeneId":100874516},{"hugoGeneSymbol":"LAMTOR4","entrezGeneId":389541},{"hugoGeneSymbol":"LAMTOR5","entrezGeneId":10542},{"hugoGeneSymbol":"LAMTOR5-AS1","entrezGeneId":101410535},{"hugoGeneSymbol":"LAMTOR5P1","entrezGeneId":106478910},{"hugoGeneSymbol":"LANCL1","entrezGeneId":10314},{"hugoGeneSymbol":"LANCL1-AS1","entrezGeneId":102724820},{"hugoGeneSymbol":"LANCL2","entrezGeneId":55915},{"hugoGeneSymbol":"LANCL3","entrezGeneId":347404},{"hugoGeneSymbol":"LAP","entrezGeneId":7939},{"hugoGeneSymbol":"LAP3","entrezGeneId":51056},{"hugoGeneSymbol":"LAP3P1","entrezGeneId":100873864},{"hugoGeneSymbol":"LAP3P2","entrezGeneId":389386},{"hugoGeneSymbol":"LAPTM4A","entrezGeneId":9741},{"hugoGeneSymbol":"LAPTM4B","entrezGeneId":55353},{"hugoGeneSymbol":"LAPTM4BP1","entrezGeneId":645900},{"hugoGeneSymbol":"LAPTM4BP2","entrezGeneId":107075219},{"hugoGeneSymbol":"LAPTM5","entrezGeneId":7805},{"hugoGeneSymbol":"LARGE-AS1","entrezGeneId":100506195},{"hugoGeneSymbol":"LARGE-IT1","entrezGeneId":100874331},{"hugoGeneSymbol":"LARGE1","entrezGeneId":9215},{"hugoGeneSymbol":"LARGE2","entrezGeneId":120071},{"hugoGeneSymbol":"LARP1","entrezGeneId":23367},{"hugoGeneSymbol":"LARP1B","entrezGeneId":55132},{"hugoGeneSymbol":"LARP1BP1","entrezGeneId":644578},{"hugoGeneSymbol":"LARP1BP2","entrezGeneId":106479034},{"hugoGeneSymbol":"LARP1BP3","entrezGeneId":644403},{"hugoGeneSymbol":"LARP1P1","entrezGeneId":100379623},{"hugoGeneSymbol":"LARP4","entrezGeneId":113251},{"hugoGeneSymbol":"LARP4B","entrezGeneId":23185},{"hugoGeneSymbol":"LARP4P","entrezGeneId":554354},{"hugoGeneSymbol":"LARP6","entrezGeneId":55323},{"hugoGeneSymbol":"LARP7","entrezGeneId":51574},{"hugoGeneSymbol":"LARP7P1","entrezGeneId":106480287},{"hugoGeneSymbol":"LARP7P2","entrezGeneId":106481699},{"hugoGeneSymbol":"LARP7P3","entrezGeneId":106481700},{"hugoGeneSymbol":"LARP7P4","entrezGeneId":100421509},{"hugoGeneSymbol":"LARS","entrezGeneId":51520},{"hugoGeneSymbol":"LARS2","entrezGeneId":23395},{"hugoGeneSymbol":"LARS2-AS1","entrezGeneId":100885795},{"hugoGeneSymbol":"LAS1L","entrezGeneId":81887},{"hugoGeneSymbol":"LASP1","entrezGeneId":3927},{"hugoGeneSymbol":"LAT","entrezGeneId":27040},{"hugoGeneSymbol":"LAT2","entrezGeneId":7462},{"hugoGeneSymbol":"LATD","entrezGeneId":207115},{"hugoGeneSymbol":"LATS1","entrezGeneId":9113},{"hugoGeneSymbol":"LATS2","entrezGeneId":26524},{"hugoGeneSymbol":"LATS2-AS1","entrezGeneId":100874066},{"hugoGeneSymbol":"LAX1","entrezGeneId":54900},{"hugoGeneSymbol":"LAYN","entrezGeneId":143903},{"hugoGeneSymbol":"LBH","entrezGeneId":81606},{"hugoGeneSymbol":"LBHD1","entrezGeneId":79081},{"hugoGeneSymbol":"LBHD2","entrezGeneId":107984640},{"hugoGeneSymbol":"LBMQTL1","entrezGeneId":100294719},{"hugoGeneSymbol":"LBP","entrezGeneId":3929},{"hugoGeneSymbol":"LBR","entrezGeneId":3930},{"hugoGeneSymbol":"LBX1","entrezGeneId":10660},{"hugoGeneSymbol":"LBX1-AS1","entrezGeneId":399806},{"hugoGeneSymbol":"LBX2","entrezGeneId":85474},{"hugoGeneSymbol":"LBX2-AS1","entrezGeneId":151534},{"hugoGeneSymbol":"LCA10","entrezGeneId":100996465},{"hugoGeneSymbol":"LCA5","entrezGeneId":167691},{"hugoGeneSymbol":"LCA5L","entrezGeneId":150082},{"hugoGeneSymbol":"LCAL1","entrezGeneId":80078},{"hugoGeneSymbol":"LCAT","entrezGeneId":3931},{"hugoGeneSymbol":"LCE1A","entrezGeneId":353131},{"hugoGeneSymbol":"LCE1B","entrezGeneId":353132},{"hugoGeneSymbol":"LCE1C","entrezGeneId":353133},{"hugoGeneSymbol":"LCE1D","entrezGeneId":353134},{"hugoGeneSymbol":"LCE1E","entrezGeneId":353135},{"hugoGeneSymbol":"LCE1F","entrezGeneId":353137},{"hugoGeneSymbol":"LCE2A","entrezGeneId":353139},{"hugoGeneSymbol":"LCE2B","entrezGeneId":26239},{"hugoGeneSymbol":"LCE2C","entrezGeneId":353140},{"hugoGeneSymbol":"LCE2D","entrezGeneId":353141},{"hugoGeneSymbol":"LCE3A","entrezGeneId":353142},{"hugoGeneSymbol":"LCE3B","entrezGeneId":353143},{"hugoGeneSymbol":"LCE3C","entrezGeneId":353144},{"hugoGeneSymbol":"LCE3D","entrezGeneId":84648},{"hugoGeneSymbol":"LCE3E","entrezGeneId":353145},{"hugoGeneSymbol":"LCE4A","entrezGeneId":199834},{"hugoGeneSymbol":"LCE5A","entrezGeneId":254910},{"hugoGeneSymbol":"LCE6A","entrezGeneId":448835},{"hugoGeneSymbol":"LCEP1","entrezGeneId":450208},{"hugoGeneSymbol":"LCEP2","entrezGeneId":450209},{"hugoGeneSymbol":"LCEP3","entrezGeneId":450211},{"hugoGeneSymbol":"LCEP4","entrezGeneId":450210},{"hugoGeneSymbol":"LCK","entrezGeneId":3932},{"hugoGeneSymbol":"LCLAT1","entrezGeneId":253558},{"hugoGeneSymbol":"LCMT1","entrezGeneId":51451},{"hugoGeneSymbol":"LCMT1-AS1","entrezGeneId":102723510},{"hugoGeneSymbol":"LCMT1-AS2","entrezGeneId":100506655},{"hugoGeneSymbol":"LCMT2","entrezGeneId":9836},{"hugoGeneSymbol":"LCN1","entrezGeneId":3933},{"hugoGeneSymbol":"LCN10","entrezGeneId":414332},{"hugoGeneSymbol":"LCN12","entrezGeneId":286256},{"hugoGeneSymbol":"LCN15","entrezGeneId":389812},{"hugoGeneSymbol":"LCN1P1","entrezGeneId":286310},{"hugoGeneSymbol":"LCN1P2","entrezGeneId":653163},{"hugoGeneSymbol":"LCN2","entrezGeneId":3934},{"hugoGeneSymbol":"LCN6","entrezGeneId":158062},{"hugoGeneSymbol":"LCN8","entrezGeneId":138307},{"hugoGeneSymbol":"LCN9","entrezGeneId":392399},{"hugoGeneSymbol":"LCNL1","entrezGeneId":401562},{"hugoGeneSymbol":"LCOR","entrezGeneId":84458},{"hugoGeneSymbol":"LCORL","entrezGeneId":254251},{"hugoGeneSymbol":"LCP1","entrezGeneId":3936},{"hugoGeneSymbol":"LCP2","entrezGeneId":3937},{"hugoGeneSymbol":"LCS1","entrezGeneId":84565},{"hugoGeneSymbol":"LCT","entrezGeneId":3938},{"hugoGeneSymbol":"LCTL","entrezGeneId":197021},{"hugoGeneSymbol":"LDAH","entrezGeneId":60526},{"hugoGeneSymbol":"LDB1","entrezGeneId":8861},{"hugoGeneSymbol":"LDB2","entrezGeneId":9079},{"hugoGeneSymbol":"LDB3","entrezGeneId":11155},{"hugoGeneSymbol":"LDHA","entrezGeneId":3939},{"hugoGeneSymbol":"LDHAL6A","entrezGeneId":160287},{"hugoGeneSymbol":"LDHAL6B","entrezGeneId":92483},{"hugoGeneSymbol":"LDHAL6CP","entrezGeneId":121498},{"hugoGeneSymbol":"LDHAL6DP","entrezGeneId":100420508},{"hugoGeneSymbol":"LDHAL6EP","entrezGeneId":100420462},{"hugoGeneSymbol":"LDHAL6FP","entrezGeneId":100420477},{"hugoGeneSymbol":"LDHAP1","entrezGeneId":3940},{"hugoGeneSymbol":"LDHAP2","entrezGeneId":100190799},{"hugoGeneSymbol":"LDHAP3","entrezGeneId":442013},{"hugoGeneSymbol":"LDHAP4","entrezGeneId":158222},{"hugoGeneSymbol":"LDHAP5","entrezGeneId":729666},{"hugoGeneSymbol":"LDHAP7","entrezGeneId":100190800},{"hugoGeneSymbol":"LDHB","entrezGeneId":3945},{"hugoGeneSymbol":"LDHBP1","entrezGeneId":100289475},{"hugoGeneSymbol":"LDHBP2","entrezGeneId":3947},{"hugoGeneSymbol":"LDHBP3","entrezGeneId":100129283},{"hugoGeneSymbol":"LDHC","entrezGeneId":3948},{"hugoGeneSymbol":"LDHD","entrezGeneId":197257},{"hugoGeneSymbol":"LDLR","entrezGeneId":3949},{"hugoGeneSymbol":"LDLRAD1","entrezGeneId":388633},{"hugoGeneSymbol":"LDLRAD2","entrezGeneId":401944},{"hugoGeneSymbol":"LDLRAD3","entrezGeneId":143458},{"hugoGeneSymbol":"LDLRAD4","entrezGeneId":753},{"hugoGeneSymbol":"LDLRAD4-AS1","entrezGeneId":100288122},{"hugoGeneSymbol":"LDLRAP1","entrezGeneId":26119},{"hugoGeneSymbol":"LDOC1","entrezGeneId":23641},{"hugoGeneSymbol":"LEAP2","entrezGeneId":116842},{"hugoGeneSymbol":"LECD","entrezGeneId":100302509},{"hugoGeneSymbol":"LECT2","entrezGeneId":3950},{"hugoGeneSymbol":"LEF1","entrezGeneId":51176},{"hugoGeneSymbol":"LEF1-AS1","entrezGeneId":641518},{"hugoGeneSymbol":"LEFTY1","entrezGeneId":10637},{"hugoGeneSymbol":"LEFTY2","entrezGeneId":7044},{"hugoGeneSymbol":"LEFTY3","entrezGeneId":286754},{"hugoGeneSymbol":"LEKR1","entrezGeneId":389170},{"hugoGeneSymbol":"LELP1","entrezGeneId":149018},{"hugoGeneSymbol":"LEMD1","entrezGeneId":93273},{"hugoGeneSymbol":"LEMD1-AS1","entrezGeneId":284576},{"hugoGeneSymbol":"LEMD2","entrezGeneId":221496},{"hugoGeneSymbol":"LEMD3","entrezGeneId":23592},{"hugoGeneSymbol":"LENEP","entrezGeneId":55891},{"hugoGeneSymbol":"LENG1","entrezGeneId":79165},{"hugoGeneSymbol":"LENG8","entrezGeneId":114823},{"hugoGeneSymbol":"LENG8-AS1","entrezGeneId":104355426},{"hugoGeneSymbol":"LENG9","entrezGeneId":94059},{"hugoGeneSymbol":"LEO1","entrezGeneId":123169},{"hugoGeneSymbol":"LEP","entrezGeneId":3952},{"hugoGeneSymbol":"LEPQTL1","entrezGeneId":7839},{"hugoGeneSymbol":"LEPR","entrezGeneId":3953},{"hugoGeneSymbol":"LEPROT","entrezGeneId":54741},{"hugoGeneSymbol":"LEPROTL1","entrezGeneId":23484},{"hugoGeneSymbol":"LETM1","entrezGeneId":3954},{"hugoGeneSymbol":"LETM1P1","entrezGeneId":390597},{"hugoGeneSymbol":"LETM1P2","entrezGeneId":100131934},{"hugoGeneSymbol":"LETM1P3","entrezGeneId":100151646},{"hugoGeneSymbol":"LETM2","entrezGeneId":137994},{"hugoGeneSymbol":"LETMD1","entrezGeneId":25875},{"hugoGeneSymbol":"LEUTX","entrezGeneId":342900},{"hugoGeneSymbol":"LEXM","entrezGeneId":163747},{"hugoGeneSymbol":"LFNG","entrezGeneId":3955},{"hugoGeneSymbol":"LFS3","entrezGeneId":553989},{"hugoGeneSymbol":"LGALS1","entrezGeneId":3956},{"hugoGeneSymbol":"LGALS12","entrezGeneId":85329},{"hugoGeneSymbol":"LGALS13","entrezGeneId":29124},{"hugoGeneSymbol":"LGALS14","entrezGeneId":56891},{"hugoGeneSymbol":"LGALS16","entrezGeneId":148003},{"hugoGeneSymbol":"LGALS17A","entrezGeneId":400696},{"hugoGeneSymbol":"LGALS2","entrezGeneId":3957},{"hugoGeneSymbol":"LGALS3","entrezGeneId":3958},{"hugoGeneSymbol":"LGALS3BP","entrezGeneId":3959},{"hugoGeneSymbol":"LGALS4","entrezGeneId":3960},{"hugoGeneSymbol":"LGALS7","entrezGeneId":3963},{"hugoGeneSymbol":"LGALS7B","entrezGeneId":653499},{"hugoGeneSymbol":"LGALS8","entrezGeneId":3964},{"hugoGeneSymbol":"LGALS8-AS1","entrezGeneId":100287902},{"hugoGeneSymbol":"LGALS9","entrezGeneId":3965},{"hugoGeneSymbol":"LGALS9B","entrezGeneId":284194},{"hugoGeneSymbol":"LGALS9C","entrezGeneId":654346},{"hugoGeneSymbol":"LGALS9DP","entrezGeneId":645754},{"hugoGeneSymbol":"LGALSL","entrezGeneId":29094},{"hugoGeneSymbol":"LGI1","entrezGeneId":9211},{"hugoGeneSymbol":"LGI2","entrezGeneId":55203},{"hugoGeneSymbol":"LGI3","entrezGeneId":203190},{"hugoGeneSymbol":"LGI4","entrezGeneId":163175},{"hugoGeneSymbol":"LGMD1G","entrezGeneId":553991},{"hugoGeneSymbol":"LGMD1H","entrezGeneId":100529230},{"hugoGeneSymbol":"LGMN","entrezGeneId":5641},{"hugoGeneSymbol":"LGMNP1","entrezGeneId":122199},{"hugoGeneSymbol":"LGR4","entrezGeneId":55366},{"hugoGeneSymbol":"LGR5","entrezGeneId":8549},{"hugoGeneSymbol":"LGR6","entrezGeneId":59352},{"hugoGeneSymbol":"LGSN","entrezGeneId":51557},{"hugoGeneSymbol":"LGTN","entrezGeneId":100529141},{"hugoGeneSymbol":"LGV1","entrezGeneId":140802},{"hugoGeneSymbol":"LGV2","entrezGeneId":100329168},{"hugoGeneSymbol":"LHB","entrezGeneId":3972},{"hugoGeneSymbol":"LHCGR","entrezGeneId":3973},{"hugoGeneSymbol":"LHFPL1","entrezGeneId":340596},{"hugoGeneSymbol":"LHFPL2","entrezGeneId":10184},{"hugoGeneSymbol":"LHFPL3","entrezGeneId":375612},{"hugoGeneSymbol":"LHFPL3-AS1","entrezGeneId":645591},{"hugoGeneSymbol":"LHFPL3-AS2","entrezGeneId":723809},{"hugoGeneSymbol":"LHFPL4","entrezGeneId":375323},{"hugoGeneSymbol":"LHFPL5","entrezGeneId":222662},{"hugoGeneSymbol":"LHFPL6","entrezGeneId":10186},{"hugoGeneSymbol":"LHPP","entrezGeneId":64077},{"hugoGeneSymbol":"LHX1","entrezGeneId":3975},{"hugoGeneSymbol":"LHX1-DT","entrezGeneId":102723471},{"hugoGeneSymbol":"LHX2","entrezGeneId":9355},{"hugoGeneSymbol":"LHX3","entrezGeneId":8022},{"hugoGeneSymbol":"LHX4","entrezGeneId":89884},{"hugoGeneSymbol":"LHX4-AS1","entrezGeneId":100527964},{"hugoGeneSymbol":"LHX5","entrezGeneId":64211},{"hugoGeneSymbol":"LHX5-AS1","entrezGeneId":104355219},{"hugoGeneSymbol":"LHX6","entrezGeneId":26468},{"hugoGeneSymbol":"LHX8","entrezGeneId":431707},{"hugoGeneSymbol":"LHX9","entrezGeneId":56956},{"hugoGeneSymbol":"LI5","entrezGeneId":140560},{"hugoGeneSymbol":"LIAS","entrezGeneId":11019},{"hugoGeneSymbol":"LIF","entrezGeneId":3976},{"hugoGeneSymbol":"LIF-AS1","entrezGeneId":110806283},{"hugoGeneSymbol":"LIFR","entrezGeneId":3977},{"hugoGeneSymbol":"LIFR-AS1","entrezGeneId":100506495},{"hugoGeneSymbol":"LIG1","entrezGeneId":3978},{"hugoGeneSymbol":"LIG3","entrezGeneId":3980},{"hugoGeneSymbol":"LIG4","entrezGeneId":3981},{"hugoGeneSymbol":"LILRA1","entrezGeneId":11024},{"hugoGeneSymbol":"LILRA2","entrezGeneId":11027},{"hugoGeneSymbol":"LILRA3","entrezGeneId":11026},{"hugoGeneSymbol":"LILRA4","entrezGeneId":23547},{"hugoGeneSymbol":"LILRA5","entrezGeneId":353514},{"hugoGeneSymbol":"LILRA6","entrezGeneId":79168},{"hugoGeneSymbol":"LILRB1","entrezGeneId":10859},{"hugoGeneSymbol":"LILRB1-AS1","entrezGeneId":109729136},{"hugoGeneSymbol":"LILRB2","entrezGeneId":10288},{"hugoGeneSymbol":"LILRB3","entrezGeneId":11025},{"hugoGeneSymbol":"LILRB4","entrezGeneId":11006},{"hugoGeneSymbol":"LILRB5","entrezGeneId":10990},{"hugoGeneSymbol":"LILRP1","entrezGeneId":79167},{"hugoGeneSymbol":"LILRP2","entrezGeneId":79166},{"hugoGeneSymbol":"LIM2","entrezGeneId":3982},{"hugoGeneSymbol":"LIMA1","entrezGeneId":51474},{"hugoGeneSymbol":"LIMCH1","entrezGeneId":22998},{"hugoGeneSymbol":"LIMD1","entrezGeneId":8994},{"hugoGeneSymbol":"LIMD1-AS1","entrezGeneId":644714},{"hugoGeneSymbol":"LIMD2","entrezGeneId":80774},{"hugoGeneSymbol":"LIME1","entrezGeneId":54923},{"hugoGeneSymbol":"LIMK1","entrezGeneId":3984},{"hugoGeneSymbol":"LIMK2","entrezGeneId":3985},{"hugoGeneSymbol":"LIMS1","entrezGeneId":3987},{"hugoGeneSymbol":"LIMS1-AS1","entrezGeneId":106182118},{"hugoGeneSymbol":"LIMS2","entrezGeneId":55679},{"hugoGeneSymbol":"LIMS3","entrezGeneId":96626},{"hugoGeneSymbol":"LIMS3-LOC440895","entrezGeneId":100271835},{"hugoGeneSymbol":"LIMS4","entrezGeneId":100288695},{"hugoGeneSymbol":"LIN28A","entrezGeneId":79727},{"hugoGeneSymbol":"LIN28AP1","entrezGeneId":129402},{"hugoGeneSymbol":"LIN28AP2","entrezGeneId":100287388},{"hugoGeneSymbol":"LIN28AP3","entrezGeneId":441940},{"hugoGeneSymbol":"LIN28B","entrezGeneId":389421},{"hugoGeneSymbol":"LIN28B-AS1","entrezGeneId":100113403},{"hugoGeneSymbol":"LIN37","entrezGeneId":55957},{"hugoGeneSymbol":"LIN52","entrezGeneId":91750},{"hugoGeneSymbol":"LIN54","entrezGeneId":132660},{"hugoGeneSymbol":"LIN7A","entrezGeneId":8825},{"hugoGeneSymbol":"LIN7B","entrezGeneId":64130},{"hugoGeneSymbol":"LIN7C","entrezGeneId":55327},{"hugoGeneSymbol":"LIN9","entrezGeneId":286826},{"hugoGeneSymbol":"LINC-PINT","entrezGeneId":378805},{"hugoGeneSymbol":"LINC-ROR","entrezGeneId":100885779},{"hugoGeneSymbol":"LINC00028","entrezGeneId":140875},{"hugoGeneSymbol":"LINC00029","entrezGeneId":100144596},{"hugoGeneSymbol":"LINC00032","entrezGeneId":158035},{"hugoGeneSymbol":"LINC00051","entrezGeneId":619434},{"hugoGeneSymbol":"LINC00052","entrezGeneId":145978},{"hugoGeneSymbol":"LINC00092","entrezGeneId":100188953},{"hugoGeneSymbol":"LINC00102","entrezGeneId":100359394},{"hugoGeneSymbol":"LINC00106","entrezGeneId":751580},{"hugoGeneSymbol":"LINC00111","entrezGeneId":54090},{"hugoGeneSymbol":"LINC00112","entrezGeneId":54089},{"hugoGeneSymbol":"LINC00113","entrezGeneId":54088},{"hugoGeneSymbol":"LINC00114","entrezGeneId":400866},{"hugoGeneSymbol":"LINC00115","entrezGeneId":79854},{"hugoGeneSymbol":"LINC00158","entrezGeneId":54072},{"hugoGeneSymbol":"LINC00159","entrezGeneId":100551499},{"hugoGeneSymbol":"LINC00160","entrezGeneId":54064},{"hugoGeneSymbol":"LINC00161","entrezGeneId":118421},{"hugoGeneSymbol":"LINC00163","entrezGeneId":727699},{"hugoGeneSymbol":"LINC00165","entrezGeneId":727701},{"hugoGeneSymbol":"LINC00167","entrezGeneId":440072},{"hugoGeneSymbol":"LINC00173","entrezGeneId":100287569},{"hugoGeneSymbol":"LINC00174","entrezGeneId":285908},{"hugoGeneSymbol":"LINC00184","entrezGeneId":100302691},{"hugoGeneSymbol":"LINC00189","entrezGeneId":193629},{"hugoGeneSymbol":"LINC00200","entrezGeneId":399706},{"hugoGeneSymbol":"LINC00205","entrezGeneId":102723489},{"hugoGeneSymbol":"LINC00207","entrezGeneId":388910},{"hugoGeneSymbol":"LINC00208","entrezGeneId":83655},{"hugoGeneSymbol":"LINC00210","entrezGeneId":100885798},{"hugoGeneSymbol":"LINC00211","entrezGeneId":101929559},{"hugoGeneSymbol":"LINC00216","entrezGeneId":55451},{"hugoGeneSymbol":"LINC00221","entrezGeneId":338005},{"hugoGeneSymbol":"LINC00222","entrezGeneId":387111},{"hugoGeneSymbol":"LINC00226","entrezGeneId":338004},{"hugoGeneSymbol":"LINC00229","entrezGeneId":414351},{"hugoGeneSymbol":"LINC00235","entrezGeneId":64493},{"hugoGeneSymbol":"LINC00237","entrezGeneId":105372556},{"hugoGeneSymbol":"LINC00239","entrezGeneId":145200},{"hugoGeneSymbol":"LINC00240","entrezGeneId":100133205},{"hugoGeneSymbol":"LINC00242","entrezGeneId":401288},{"hugoGeneSymbol":"LINC00243","entrezGeneId":401247},{"hugoGeneSymbol":"LINC00244","entrezGeneId":64433},{"hugoGeneSymbol":"LINC002481","entrezGeneId":339988},{"hugoGeneSymbol":"LINC00251","entrezGeneId":552859},{"hugoGeneSymbol":"LINC00254","entrezGeneId":64735},{"hugoGeneSymbol":"LINC00260","entrezGeneId":84719},{"hugoGeneSymbol":"LINC00261","entrezGeneId":140828},{"hugoGeneSymbol":"LINC00265","entrezGeneId":349114},{"hugoGeneSymbol":"LINC00265-2P","entrezGeneId":100287296},{"hugoGeneSymbol":"LINC00265-3P","entrezGeneId":100287470},{"hugoGeneSymbol":"LINC00266-1","entrezGeneId":140849},{"hugoGeneSymbol":"LINC00266-2P","entrezGeneId":100287785},{"hugoGeneSymbol":"LINC00266-3","entrezGeneId":441123},{"hugoGeneSymbol":"LINC00266-4P","entrezGeneId":100642176},{"hugoGeneSymbol":"LINC00268","entrezGeneId":441426},{"hugoGeneSymbol":"LINC00268-2P","entrezGeneId":100288610},{"hugoGeneSymbol":"LINC00269","entrezGeneId":100996279},{"hugoGeneSymbol":"LINC00271","entrezGeneId":100131814},{"hugoGeneSymbol":"LINC00272","entrezGeneId":388719},{"hugoGeneSymbol":"LINC00276","entrezGeneId":100499171},{"hugoGeneSymbol":"LINC00278","entrezGeneId":100873962},{"hugoGeneSymbol":"LINC00279","entrezGeneId":100873963},{"hugoGeneSymbol":"LINC00280","entrezGeneId":100873964},{"hugoGeneSymbol":"LINC00283","entrezGeneId":100874057},{"hugoGeneSymbol":"LINC00284","entrezGeneId":121838},{"hugoGeneSymbol":"LINC00290","entrezGeneId":728081},{"hugoGeneSymbol":"LINC00293","entrezGeneId":497634},{"hugoGeneSymbol":"LINC00294","entrezGeneId":283267},{"hugoGeneSymbol":"LINC00297","entrezGeneId":100874059},{"hugoGeneSymbol":"LINC00298","entrezGeneId":339788},{"hugoGeneSymbol":"LINC00299","entrezGeneId":339789},{"hugoGeneSymbol":"LINC00301","entrezGeneId":283197},{"hugoGeneSymbol":"LINC00302","entrezGeneId":388699},{"hugoGeneSymbol":"LINC00303","entrezGeneId":284573},{"hugoGeneSymbol":"LINC00304","entrezGeneId":283860},{"hugoGeneSymbol":"LINC00305","entrezGeneId":221241},{"hugoGeneSymbol":"LINC00307","entrezGeneId":266919},{"hugoGeneSymbol":"LINC00308","entrezGeneId":54143},{"hugoGeneSymbol":"LINC00309","entrezGeneId":150992},{"hugoGeneSymbol":"LINC00310","entrezGeneId":114036},{"hugoGeneSymbol":"LINC00311","entrezGeneId":197196},{"hugoGeneSymbol":"LINC00312","entrezGeneId":29931},{"hugoGeneSymbol":"LINC00313","entrezGeneId":114038},{"hugoGeneSymbol":"LINC00314","entrezGeneId":246705},{"hugoGeneSymbol":"LINC00315","entrezGeneId":246704},{"hugoGeneSymbol":"LINC00316","entrezGeneId":388830},{"hugoGeneSymbol":"LINC00317","entrezGeneId":378828},{"hugoGeneSymbol":"LINC00319","entrezGeneId":284836},{"hugoGeneSymbol":"LINC00320","entrezGeneId":387486},{"hugoGeneSymbol":"LINC00322","entrezGeneId":100126693},{"hugoGeneSymbol":"LINC00323","entrezGeneId":284835},{"hugoGeneSymbol":"LINC00324","entrezGeneId":284029},{"hugoGeneSymbol":"LINC00326","entrezGeneId":285735},{"hugoGeneSymbol":"LINC00327","entrezGeneId":100506697},{"hugoGeneSymbol":"LINC00328","entrezGeneId":51152},{"hugoGeneSymbol":"LINC00328-2P","entrezGeneId":100874404},{"hugoGeneSymbol":"LINC00330","entrezGeneId":144817},{"hugoGeneSymbol":"LINC00331","entrezGeneId":100874126},{"hugoGeneSymbol":"LINC00332","entrezGeneId":100874127},{"hugoGeneSymbol":"LINC00333","entrezGeneId":100874128},{"hugoGeneSymbol":"LINC00334","entrezGeneId":114042},{"hugoGeneSymbol":"LINC00336","entrezGeneId":401253},{"hugoGeneSymbol":"LINC00337","entrezGeneId":148645},{"hugoGeneSymbol":"LINC00339","entrezGeneId":29092},{"hugoGeneSymbol":"LINC00342","entrezGeneId":150759},{"hugoGeneSymbol":"LINC00343","entrezGeneId":144920},{"hugoGeneSymbol":"LINC00345","entrezGeneId":105370208},{"hugoGeneSymbol":"LINC00346","entrezGeneId":283487},{"hugoGeneSymbol":"LINC00347","entrezGeneId":338864},{"hugoGeneSymbol":"LINC00348","entrezGeneId":100885781},{"hugoGeneSymbol":"LINC00349","entrezGeneId":100874135},{"hugoGeneSymbol":"LINC00350","entrezGeneId":100874136},{"hugoGeneSymbol":"LINC00351","entrezGeneId":100874137},{"hugoGeneSymbol":"LINC00352","entrezGeneId":100874138},{"hugoGeneSymbol":"LINC00353","entrezGeneId":100874139},{"hugoGeneSymbol":"LINC00354","entrezGeneId":101928616},{"hugoGeneSymbol":"LINC00355","entrezGeneId":144766},{"hugoGeneSymbol":"LINC00358","entrezGeneId":100874143},{"hugoGeneSymbol":"LINC00359","entrezGeneId":100887754},{"hugoGeneSymbol":"LINC00362","entrezGeneId":100874144},{"hugoGeneSymbol":"LINC00363","entrezGeneId":104326053},{"hugoGeneSymbol":"LINC00364","entrezGeneId":100874145},{"hugoGeneSymbol":"LINC00365","entrezGeneId":100874146},{"hugoGeneSymbol":"LINC00366","entrezGeneId":100874147},{"hugoGeneSymbol":"LINC00367","entrezGeneId":101930748},{"hugoGeneSymbol":"LINC00368","entrezGeneId":101927802},{"hugoGeneSymbol":"LINC00370","entrezGeneId":105370357},{"hugoGeneSymbol":"LINC00374","entrezGeneId":106144531},{"hugoGeneSymbol":"LINC00375","entrezGeneId":104355140},{"hugoGeneSymbol":"LINC00376","entrezGeneId":104355293},{"hugoGeneSymbol":"LINC00377","entrezGeneId":103724386},{"hugoGeneSymbol":"LINC00378","entrezGeneId":101926930},{"hugoGeneSymbol":"LINC00379","entrezGeneId":100874150},{"hugoGeneSymbol":"LINC00380","entrezGeneId":101930747},{"hugoGeneSymbol":"LINC00381","entrezGeneId":100874151},{"hugoGeneSymbol":"LINC00382","entrezGeneId":101927195},{"hugoGeneSymbol":"LINC00383","entrezGeneId":103689913},{"hugoGeneSymbol":"LINC00384","entrezGeneId":102157400},{"hugoGeneSymbol":"LINC00385","entrezGeneId":105370141},{"hugoGeneSymbol":"LINC00387","entrezGeneId":100874152},{"hugoGeneSymbol":"LINC00388","entrezGeneId":100874153},{"hugoGeneSymbol":"LINC00390","entrezGeneId":105370183},{"hugoGeneSymbol":"LINC00391","entrezGeneId":100874154},{"hugoGeneSymbol":"LINC00392","entrezGeneId":100874155},{"hugoGeneSymbol":"LINC00393","entrezGeneId":100874156},{"hugoGeneSymbol":"LINC00395","entrezGeneId":100874157},{"hugoGeneSymbol":"LINC00396","entrezGeneId":104355146},{"hugoGeneSymbol":"LINC00397","entrezGeneId":101930749},{"hugoGeneSymbol":"LINC00398","entrezGeneId":100874158},{"hugoGeneSymbol":"LINC00399","entrezGeneId":104326054},{"hugoGeneSymbol":"LINC00400","entrezGeneId":100874159},{"hugoGeneSymbol":"LINC00402","entrezGeneId":100507612},{"hugoGeneSymbol":"LINC00404","entrezGeneId":100874160},{"hugoGeneSymbol":"LINC00407","entrezGeneId":106144541},{"hugoGeneSymbol":"LINC00408","entrezGeneId":100652856},{"hugoGeneSymbol":"LINC00410","entrezGeneId":144776},{"hugoGeneSymbol":"LINC00411","entrezGeneId":100874161},{"hugoGeneSymbol":"LINC00412","entrezGeneId":102723332},{"hugoGeneSymbol":"LINC00415","entrezGeneId":107984009},{"hugoGeneSymbol":"LINC00417","entrezGeneId":100874164},{"hugoGeneSymbol":"LINC00421","entrezGeneId":100287114},{"hugoGeneSymbol":"LINC00423","entrezGeneId":100874167},{"hugoGeneSymbol":"LINC00424","entrezGeneId":100874182},{"hugoGeneSymbol":"LINC00426","entrezGeneId":100188949},{"hugoGeneSymbol":"LINC00427","entrezGeneId":100507040},{"hugoGeneSymbol":"LINC00428","entrezGeneId":104355147},{"hugoGeneSymbol":"LINC00430","entrezGeneId":106144533},{"hugoGeneSymbol":"LINC00431","entrezGeneId":104355135},{"hugoGeneSymbol":"LINC00433","entrezGeneId":100874168},{"hugoGeneSymbol":"LINC00434","entrezGeneId":100874169},{"hugoGeneSymbol":"LINC00437","entrezGeneId":101929121},{"hugoGeneSymbol":"LINC00440","entrezGeneId":100874172},{"hugoGeneSymbol":"LINC00442","entrezGeneId":348021},{"hugoGeneSymbol":"LINC00443","entrezGeneId":100874173},{"hugoGeneSymbol":"LINC00444","entrezGeneId":107984570},{"hugoGeneSymbol":"LINC00445","entrezGeneId":100507114},{"hugoGeneSymbol":"LINC00446","entrezGeneId":100874175},{"hugoGeneSymbol":"LINC00448","entrezGeneId":100874176},{"hugoGeneSymbol":"LINC00449","entrezGeneId":106478991},{"hugoGeneSymbol":"LINC00452","entrezGeneId":643365},{"hugoGeneSymbol":"LINC00454","entrezGeneId":100874178},{"hugoGeneSymbol":"LINC00456","entrezGeneId":103625683},{"hugoGeneSymbol":"LINC00457","entrezGeneId":100874179},{"hugoGeneSymbol":"LINC00458","entrezGeneId":100507428},{"hugoGeneSymbol":"LINC00459","entrezGeneId":100874180},{"hugoGeneSymbol":"LINC00460","entrezGeneId":728192},{"hugoGeneSymbol":"LINC00461","entrezGeneId":645323},{"hugoGeneSymbol":"LINC00462","entrezGeneId":100129597},{"hugoGeneSymbol":"LINC00463","entrezGeneId":101928922},{"hugoGeneSymbol":"LINC00466","entrezGeneId":199899},{"hugoGeneSymbol":"LINC00467","entrezGeneId":84791},{"hugoGeneSymbol":"LINC00469","entrezGeneId":283982},{"hugoGeneSymbol":"LINC00470","entrezGeneId":56651},{"hugoGeneSymbol":"LINC00471","entrezGeneId":151477},{"hugoGeneSymbol":"LINC00472","entrezGeneId":79940},{"hugoGeneSymbol":"LINC00473","entrezGeneId":90632},{"hugoGeneSymbol":"LINC00474","entrezGeneId":58483},{"hugoGeneSymbol":"LINC00475","entrezGeneId":158314},{"hugoGeneSymbol":"LINC00476","entrezGeneId":100128782},{"hugoGeneSymbol":"LINC00477","entrezGeneId":144360},{"hugoGeneSymbol":"LINC00479","entrezGeneId":150135},{"hugoGeneSymbol":"LINC00482","entrezGeneId":284185},{"hugoGeneSymbol":"LINC00483","entrezGeneId":55018},{"hugoGeneSymbol":"LINC00484","entrezGeneId":100129347},{"hugoGeneSymbol":"LINC00485","entrezGeneId":283432},{"hugoGeneSymbol":"LINC00486","entrezGeneId":285045},{"hugoGeneSymbol":"LINC00487","entrezGeneId":400941},{"hugoGeneSymbol":"LINC00488","entrezGeneId":677779},{"hugoGeneSymbol":"LINC00489","entrezGeneId":100861522},{"hugoGeneSymbol":"LINC00491","entrezGeneId":285708},{"hugoGeneSymbol":"LINC00492","entrezGeneId":100861468},{"hugoGeneSymbol":"LINC00494","entrezGeneId":284749},{"hugoGeneSymbol":"LINC00498","entrezGeneId":105377446},{"hugoGeneSymbol":"LINC00499","entrezGeneId":100874047},{"hugoGeneSymbol":"LINC00500","entrezGeneId":106480440},{"hugoGeneSymbol":"LINC00501","entrezGeneId":100820709},{"hugoGeneSymbol":"LINC00502","entrezGeneId":100874184},{"hugoGeneSymbol":"LINC00504","entrezGeneId":201853},{"hugoGeneSymbol":"LINC00506","entrezGeneId":100846978},{"hugoGeneSymbol":"LINC00507","entrezGeneId":100862680},{"hugoGeneSymbol":"LINC00508","entrezGeneId":104472718},{"hugoGeneSymbol":"LINC00511","entrezGeneId":400619},{"hugoGeneSymbol":"LINC00513","entrezGeneId":100506860},{"hugoGeneSymbol":"LINC00514","entrezGeneId":283875},{"hugoGeneSymbol":"LINC00515","entrezGeneId":282566},{"hugoGeneSymbol":"LINC00517","entrezGeneId":400208},{"hugoGeneSymbol":"LINC00518","entrezGeneId":221718},{"hugoGeneSymbol":"LINC00519","entrezGeneId":161342},{"hugoGeneSymbol":"LINC00520","entrezGeneId":645687},{"hugoGeneSymbol":"LINC00523","entrezGeneId":283601},{"hugoGeneSymbol":"LINC00524","entrezGeneId":338002},{"hugoGeneSymbol":"LINC00525","entrezGeneId":84847},{"hugoGeneSymbol":"LINC00526","entrezGeneId":147525},{"hugoGeneSymbol":"LINC00527","entrezGeneId":54748},{"hugoGeneSymbol":"LINC00528","entrezGeneId":200298},{"hugoGeneSymbol":"LINC00529","entrezGeneId":83647},{"hugoGeneSymbol":"LINC00533","entrezGeneId":387055},{"hugoGeneSymbol":"LINC00534","entrezGeneId":100874052},{"hugoGeneSymbol":"LINC00535","entrezGeneId":642924},{"hugoGeneSymbol":"LINC00536","entrezGeneId":100859921},{"hugoGeneSymbol":"LINC00537","entrezGeneId":203274},{"hugoGeneSymbol":"LINC00538","entrezGeneId":100861504},{"hugoGeneSymbol":"LINC00539","entrezGeneId":100652865},{"hugoGeneSymbol":"LINC00540","entrezGeneId":100506622},{"hugoGeneSymbol":"LINC00543","entrezGeneId":100132234},{"hugoGeneSymbol":"LINC00544","entrezGeneId":440131},{"hugoGeneSymbol":"LINC00545","entrezGeneId":440132},{"hugoGeneSymbol":"LINC00547","entrezGeneId":400121},{"hugoGeneSymbol":"LINC00548","entrezGeneId":400123},{"hugoGeneSymbol":"LINC00550","entrezGeneId":338862},{"hugoGeneSymbol":"LINC00551","entrezGeneId":283483},{"hugoGeneSymbol":"LINC00552","entrezGeneId":100130386},{"hugoGeneSymbol":"LINC00554","entrezGeneId":100861542},{"hugoGeneSymbol":"LINC00555","entrezGeneId":100861543},{"hugoGeneSymbol":"LINC00556","entrezGeneId":100861551},{"hugoGeneSymbol":"LINC00557","entrezGeneId":100861544},{"hugoGeneSymbol":"LINC00558","entrezGeneId":100861552},{"hugoGeneSymbol":"LINC00559","entrezGeneId":100874187},{"hugoGeneSymbol":"LINC00560","entrezGeneId":100861553},{"hugoGeneSymbol":"LINC00561","entrezGeneId":100861545},{"hugoGeneSymbol":"LINC00562","entrezGeneId":100861549},{"hugoGeneSymbol":"LINC00563","entrezGeneId":100861554},{"hugoGeneSymbol":"LINC00564","entrezGeneId":100861546},{"hugoGeneSymbol":"LINC00565","entrezGeneId":100861555},{"hugoGeneSymbol":"LINC00566","entrezGeneId":100861547},{"hugoGeneSymbol":"LINC00567","entrezGeneId":283486},{"hugoGeneSymbol":"LINC00570","entrezGeneId":100874055},{"hugoGeneSymbol":"LINC00571","entrezGeneId":100874188},{"hugoGeneSymbol":"LINC00572","entrezGeneId":100861573},{"hugoGeneSymbol":"LINC00574","entrezGeneId":80069},{"hugoGeneSymbol":"LINC00575","entrezGeneId":439934},{"hugoGeneSymbol":"LINC00578","entrezGeneId":100505566},{"hugoGeneSymbol":"LINC00581","entrezGeneId":100874531},{"hugoGeneSymbol":"LINC00582","entrezGeneId":100287814},{"hugoGeneSymbol":"LINC00583","entrezGeneId":100113404},{"hugoGeneSymbol":"LINC00587","entrezGeneId":414319},{"hugoGeneSymbol":"LINC00588","entrezGeneId":26138},{"hugoGeneSymbol":"LINC00589","entrezGeneId":619351},{"hugoGeneSymbol":"LINC00592","entrezGeneId":283404},{"hugoGeneSymbol":"LINC00593","entrezGeneId":414926},{"hugoGeneSymbol":"LINC00595","entrezGeneId":414243},{"hugoGeneSymbol":"LINC00596","entrezGeneId":102724845},{"hugoGeneSymbol":"LINC00597","entrezGeneId":81698},{"hugoGeneSymbol":"LINC00598","entrezGeneId":646982},{"hugoGeneSymbol":"LINC00599","entrezGeneId":157627},{"hugoGeneSymbol":"LINC00601","entrezGeneId":101101772},{"hugoGeneSymbol":"LINC00602","entrezGeneId":441177},{"hugoGeneSymbol":"LINC00603","entrezGeneId":102467077},{"hugoGeneSymbol":"LINC00604","entrezGeneId":106144578},{"hugoGeneSymbol":"LINC00605","entrezGeneId":100131366},{"hugoGeneSymbol":"LINC00606","entrezGeneId":285370},{"hugoGeneSymbol":"LINC00607","entrezGeneId":646324},{"hugoGeneSymbol":"LINC00608","entrezGeneId":151300},{"hugoGeneSymbol":"LINC00609","entrezGeneId":101101773},{"hugoGeneSymbol":"LINC00612","entrezGeneId":253128},{"hugoGeneSymbol":"LINC00613","entrezGeneId":100507528},{"hugoGeneSymbol":"LINC00614","entrezGeneId":645587},{"hugoGeneSymbol":"LINC00615","entrezGeneId":439916},{"hugoGeneSymbol":"LINC00616","entrezGeneId":641365},{"hugoGeneSymbol":"LINC00618","entrezGeneId":145249},{"hugoGeneSymbol":"LINC00619","entrezGeneId":414260},{"hugoGeneSymbol":"LINC00620","entrezGeneId":285375},{"hugoGeneSymbol":"LINC00621","entrezGeneId":100996930},{"hugoGeneSymbol":"LINC00622","entrezGeneId":644242},{"hugoGeneSymbol":"LINC00623","entrezGeneId":728855},{"hugoGeneSymbol":"LINC00624","entrezGeneId":100289211},{"hugoGeneSymbol":"LINC00626","entrezGeneId":79100},{"hugoGeneSymbol":"LINC00628","entrezGeneId":127841},{"hugoGeneSymbol":"LINC00629","entrezGeneId":100506757},{"hugoGeneSymbol":"LINC00630","entrezGeneId":100287765},{"hugoGeneSymbol":"LINC00632","entrezGeneId":286411},{"hugoGeneSymbol":"LINC00634","entrezGeneId":339674},{"hugoGeneSymbol":"LINC00635","entrezGeneId":151658},{"hugoGeneSymbol":"LINC00636","entrezGeneId":285205},{"hugoGeneSymbol":"LINC00637","entrezGeneId":145216},{"hugoGeneSymbol":"LINC00638","entrezGeneId":196872},{"hugoGeneSymbol":"LINC00639","entrezGeneId":283547},{"hugoGeneSymbol":"LINC00640","entrezGeneId":283553},{"hugoGeneSymbol":"LINC00641","entrezGeneId":283624},{"hugoGeneSymbol":"LINC00642","entrezGeneId":400238},{"hugoGeneSymbol":"LINC00643","entrezGeneId":646113},{"hugoGeneSymbol":"LINC00644","entrezGeneId":101954204},{"hugoGeneSymbol":"LINC00645","entrezGeneId":100505967},{"hugoGeneSymbol":"LINC00648","entrezGeneId":100506433},{"hugoGeneSymbol":"LINC00649","entrezGeneId":100506334},{"hugoGeneSymbol":"LINC00652","entrezGeneId":29075},{"hugoGeneSymbol":"LINC00654","entrezGeneId":149837},{"hugoGeneSymbol":"LINC00656","entrezGeneId":200261},{"hugoGeneSymbol":"LINC00658","entrezGeneId":100507629},{"hugoGeneSymbol":"LINC00659","entrezGeneId":100652730},{"hugoGeneSymbol":"LINC00661","entrezGeneId":126536},{"hugoGeneSymbol":"LINC00662","entrezGeneId":148189},{"hugoGeneSymbol":"LINC00663","entrezGeneId":284440},{"hugoGeneSymbol":"LINC00664","entrezGeneId":400680},{"hugoGeneSymbol":"LINC00665","entrezGeneId":100506930},{"hugoGeneSymbol":"LINC00667","entrezGeneId":339290},{"hugoGeneSymbol":"LINC00668","entrezGeneId":400643},{"hugoGeneSymbol":"LINC00670","entrezGeneId":284034},{"hugoGeneSymbol":"LINC00671","entrezGeneId":388387},{"hugoGeneSymbol":"LINC00672","entrezGeneId":100505576},{"hugoGeneSymbol":"LINC00673","entrezGeneId":100499467},{"hugoGeneSymbol":"LINC00674","entrezGeneId":100499466},{"hugoGeneSymbol":"LINC00676","entrezGeneId":101409253},{"hugoGeneSymbol":"LINC00677","entrezGeneId":105370683},{"hugoGeneSymbol":"LINC00678","entrezGeneId":101410541},{"hugoGeneSymbol":"LINC00680","entrezGeneId":106660612},{"hugoGeneSymbol":"LINC00680-GUSBP4","entrezGeneId":106660613},{"hugoGeneSymbol":"LINC00681","entrezGeneId":101409254},{"hugoGeneSymbol":"LINC00682","entrezGeneId":101927074},{"hugoGeneSymbol":"LINC00683","entrezGeneId":400660},{"hugoGeneSymbol":"LINC00685","entrezGeneId":283981},{"hugoGeneSymbol":"LINC00686","entrezGeneId":140865},{"hugoGeneSymbol":"LINC00687","entrezGeneId":728450},{"hugoGeneSymbol":"LINC00689","entrezGeneId":154822},{"hugoGeneSymbol":"LINC00690","entrezGeneId":100996597},{"hugoGeneSymbol":"LINC00691","entrezGeneId":152024},{"hugoGeneSymbol":"LINC00692","entrezGeneId":285326},{"hugoGeneSymbol":"LINC00693","entrezGeneId":645206},{"hugoGeneSymbol":"LINC00694","entrezGeneId":102724231},{"hugoGeneSymbol":"LINC00696","entrezGeneId":100128378},{"hugoGeneSymbol":"LINC00698","entrezGeneId":285401},{"hugoGeneSymbol":"LINC00700","entrezGeneId":282980},{"hugoGeneSymbol":"LINC00701","entrezGeneId":399708},{"hugoGeneSymbol":"LINC00702","entrezGeneId":100652988},{"hugoGeneSymbol":"LINC00703","entrezGeneId":100507059},{"hugoGeneSymbol":"LINC00705","entrezGeneId":338588},{"hugoGeneSymbol":"LINC00706","entrezGeneId":100652997},{"hugoGeneSymbol":"LINC00707","entrezGeneId":100507127},{"hugoGeneSymbol":"LINC00708","entrezGeneId":100507143},{"hugoGeneSymbol":"LINC00709","entrezGeneId":100507163},{"hugoGeneSymbol":"LINC00710","entrezGeneId":254312},{"hugoGeneSymbol":"LINC00824","entrezGeneId":101927774},{"hugoGeneSymbol":"LINC00836","entrezGeneId":101929052},{"hugoGeneSymbol":"LINC00837","entrezGeneId":100507605},{"hugoGeneSymbol":"LINC00838","entrezGeneId":100505583},{"hugoGeneSymbol":"LINC00839","entrezGeneId":84856},{"hugoGeneSymbol":"LINC00840","entrezGeneId":100506835},{"hugoGeneSymbol":"LINC00841","entrezGeneId":283033},{"hugoGeneSymbol":"LINC00842","entrezGeneId":643650},{"hugoGeneSymbol":"LINC00843","entrezGeneId":102902672},{"hugoGeneSymbol":"LINC00844","entrezGeneId":100507008},{"hugoGeneSymbol":"LINC00845","entrezGeneId":100507058},{"hugoGeneSymbol":"LINC00847","entrezGeneId":729678},{"hugoGeneSymbol":"LINC00850","entrezGeneId":101241891},{"hugoGeneSymbol":"LINC00851","entrezGeneId":440757},{"hugoGeneSymbol":"LINC00852","entrezGeneId":84657},{"hugoGeneSymbol":"LINC00853","entrezGeneId":100874253},{"hugoGeneSymbol":"LINC00854","entrezGeneId":100874261},{"hugoGeneSymbol":"LINC00856","entrezGeneId":100132987},{"hugoGeneSymbol":"LINC00857","entrezGeneId":439990},{"hugoGeneSymbol":"LINC00858","entrezGeneId":170425},{"hugoGeneSymbol":"LINC00861","entrezGeneId":100130231},{"hugoGeneSymbol":"LINC00862","entrezGeneId":554279},{"hugoGeneSymbol":"LINC00863","entrezGeneId":439994},{"hugoGeneSymbol":"LINC00864","entrezGeneId":728218},{"hugoGeneSymbol":"LINC00865","entrezGeneId":643529},{"hugoGeneSymbol":"LINC00866","entrezGeneId":100505561},{"hugoGeneSymbol":"LINC00867","entrezGeneId":100506126},{"hugoGeneSymbol":"LINC00868","entrezGeneId":283994},{"hugoGeneSymbol":"LINC00869","entrezGeneId":57234},{"hugoGeneSymbol":"LINC00870","entrezGeneId":201617},{"hugoGeneSymbol":"LINC00871","entrezGeneId":100506412},{"hugoGeneSymbol":"LINC00877","entrezGeneId":285286},{"hugoGeneSymbol":"LINC00879","entrezGeneId":255025},{"hugoGeneSymbol":"LINC00880","entrezGeneId":339894},{"hugoGeneSymbol":"LINC00881","entrezGeneId":100498859},{"hugoGeneSymbol":"LINC00882","entrezGeneId":100302640},{"hugoGeneSymbol":"LINC00884","entrezGeneId":401106},{"hugoGeneSymbol":"LINC00885","entrezGeneId":401109},{"hugoGeneSymbol":"LINC00886","entrezGeneId":730091},{"hugoGeneSymbol":"LINC00887","entrezGeneId":100131551},{"hugoGeneSymbol":"LINC00888","entrezGeneId":100505687},{"hugoGeneSymbol":"LINC00889","entrezGeneId":158696},{"hugoGeneSymbol":"LINC00891","entrezGeneId":441501},{"hugoGeneSymbol":"LINC00892","entrezGeneId":100128420},{"hugoGeneSymbol":"LINC00893","entrezGeneId":100131434},{"hugoGeneSymbol":"LINC00894","entrezGeneId":100272228},{"hugoGeneSymbol":"LINC00895","entrezGeneId":150185},{"hugoGeneSymbol":"LINC00896","entrezGeneId":150197},{"hugoGeneSymbol":"LINC00898","entrezGeneId":400932},{"hugoGeneSymbol":"LINC00899","entrezGeneId":100271722},{"hugoGeneSymbol":"LINC00900","entrezGeneId":283143},{"hugoGeneSymbol":"LINC00901","entrezGeneId":100506724},{"hugoGeneSymbol":"LINC00903","entrezGeneId":100861506},{"hugoGeneSymbol":"LINC00904","entrezGeneId":100652909},{"hugoGeneSymbol":"LINC00905","entrezGeneId":148231},{"hugoGeneSymbol":"LINC00906","entrezGeneId":148145},{"hugoGeneSymbol":"LINC00907","entrezGeneId":284260},{"hugoGeneSymbol":"LINC00908","entrezGeneId":284276},{"hugoGeneSymbol":"LINC00909","entrezGeneId":400657},{"hugoGeneSymbol":"LINC00910","entrezGeneId":100130581},{"hugoGeneSymbol":"LINC00911","entrezGeneId":100996280},{"hugoGeneSymbol":"LINC00917","entrezGeneId":732275},{"hugoGeneSymbol":"LINC00919","entrezGeneId":100505619},{"hugoGeneSymbol":"LINC00920","entrezGeneId":100505865},{"hugoGeneSymbol":"LINC00921","entrezGeneId":283876},{"hugoGeneSymbol":"LINC00922","entrezGeneId":283867},{"hugoGeneSymbol":"LINC00923","entrezGeneId":91948},{"hugoGeneSymbol":"LINC00924","entrezGeneId":145820},{"hugoGeneSymbol":"LINC00926","entrezGeneId":283663},{"hugoGeneSymbol":"LINC00927","entrezGeneId":283688},{"hugoGeneSymbol":"LINC00928","entrezGeneId":283761},{"hugoGeneSymbol":"LINC00929","entrezGeneId":503519},{"hugoGeneSymbol":"LINC00930","entrezGeneId":100144604},{"hugoGeneSymbol":"LINC00933","entrezGeneId":100506874},{"hugoGeneSymbol":"LINC00934","entrezGeneId":144742},{"hugoGeneSymbol":"LINC00937","entrezGeneId":389634},{"hugoGeneSymbol":"LINC00938","entrezGeneId":400027},{"hugoGeneSymbol":"LINC00939","entrezGeneId":400084},{"hugoGeneSymbol":"LINC00940","entrezGeneId":100271702},{"hugoGeneSymbol":"LINC00941","entrezGeneId":100287314},{"hugoGeneSymbol":"LINC00942","entrezGeneId":100292680},{"hugoGeneSymbol":"LINC00943","entrezGeneId":100507206},{"hugoGeneSymbol":"LINC00944","entrezGeneId":387895},{"hugoGeneSymbol":"LINC00945","entrezGeneId":101930746},{"hugoGeneSymbol":"LINC00950","entrezGeneId":92973},{"hugoGeneSymbol":"LINC00951","entrezGeneId":401260},{"hugoGeneSymbol":"LINC00954","entrezGeneId":400946},{"hugoGeneSymbol":"LINC00955","entrezGeneId":285492},{"hugoGeneSymbol":"LINC00957","entrezGeneId":255031},{"hugoGeneSymbol":"LINC00958","entrezGeneId":100506305},{"hugoGeneSymbol":"LINC00960","entrezGeneId":401074},{"hugoGeneSymbol":"LINC00963","entrezGeneId":100506190},{"hugoGeneSymbol":"LINC00964","entrezGeneId":157381},{"hugoGeneSymbol":"LINC00965","entrezGeneId":349196},{"hugoGeneSymbol":"LINC00967","entrezGeneId":100505659},{"hugoGeneSymbol":"LINC00968","entrezGeneId":100507632},{"hugoGeneSymbol":"LINC00970","entrezGeneId":101978719},{"hugoGeneSymbol":"LINC00971","entrezGeneId":440970},{"hugoGeneSymbol":"LINC00972","entrezGeneId":105375380},{"hugoGeneSymbol":"LINC00973","entrezGeneId":100506377},{"hugoGeneSymbol":"LINC00974","entrezGeneId":147093},{"hugoGeneSymbol":"LINC00976","entrezGeneId":106144608},{"hugoGeneSymbol":"LINC00977","entrezGeneId":728724},{"hugoGeneSymbol":"LINC00982","entrezGeneId":440556},{"hugoGeneSymbol":"LINC00987","entrezGeneId":100499405},{"hugoGeneSymbol":"LINC00989","entrezGeneId":100506035},{"hugoGeneSymbol":"LINC00992","entrezGeneId":728342},{"hugoGeneSymbol":"LINC00993","entrezGeneId":101929520},{"hugoGeneSymbol":"LINC00994","entrezGeneId":100287879},{"hugoGeneSymbol":"LINC00996","entrezGeneId":285972},{"hugoGeneSymbol":"LINC00997","entrezGeneId":401321},{"hugoGeneSymbol":"LINC00999","entrezGeneId":399744},{"hugoGeneSymbol":"LINC01000","entrezGeneId":402483},{"hugoGeneSymbol":"LINC01001","entrezGeneId":100133161},{"hugoGeneSymbol":"LINC01002","entrezGeneId":399844},{"hugoGeneSymbol":"LINC01003","entrezGeneId":100128822},{"hugoGeneSymbol":"LINC01004","entrezGeneId":100216546},{"hugoGeneSymbol":"LINC01005","entrezGeneId":100506050},{"hugoGeneSymbol":"LINC01006","entrezGeneId":100506380},{"hugoGeneSymbol":"LINC01007","entrezGeneId":100506527},{"hugoGeneSymbol":"LINC01010","entrezGeneId":154092},{"hugoGeneSymbol":"LINC01011","entrezGeneId":401232},{"hugoGeneSymbol":"LINC01012","entrezGeneId":100507173},{"hugoGeneSymbol":"LINC01013","entrezGeneId":100507254},{"hugoGeneSymbol":"LINC01014","entrezGeneId":100874330},{"hugoGeneSymbol":"LINC01015","entrezGeneId":100507362},{"hugoGeneSymbol":"LINC01016","entrezGeneId":100507584},{"hugoGeneSymbol":"LINC01017","entrezGeneId":102467075},{"hugoGeneSymbol":"LINC01018","entrezGeneId":255167},{"hugoGeneSymbol":"LINC01019","entrezGeneId":285577},{"hugoGeneSymbol":"LINC01020","entrezGeneId":340094},{"hugoGeneSymbol":"LINC01022","entrezGeneId":105375616},{"hugoGeneSymbol":"LINC01023","entrezGeneId":100652853},{"hugoGeneSymbol":"LINC01028","entrezGeneId":101928141},{"hugoGeneSymbol":"LINC01029","entrezGeneId":101927715},{"hugoGeneSymbol":"LINC01030","entrezGeneId":101937451},{"hugoGeneSymbol":"LINC01031","entrezGeneId":101929184},{"hugoGeneSymbol":"LINC01032","entrezGeneId":102724954},{"hugoGeneSymbol":"LINC01033","entrezGeneId":104355136},{"hugoGeneSymbol":"LINC01034","entrezGeneId":106144601},{"hugoGeneSymbol":"LINC01035","entrezGeneId":106144592},{"hugoGeneSymbol":"LINC01036","entrezGeneId":104169671},{"hugoGeneSymbol":"LINC01037","entrezGeneId":106144535},{"hugoGeneSymbol":"LINC01038","entrezGeneId":102724076},{"hugoGeneSymbol":"LINC01039","entrezGeneId":104355149},{"hugoGeneSymbol":"LINC01040","entrezGeneId":105370308},{"hugoGeneSymbol":"LINC01043","entrezGeneId":101928752},{"hugoGeneSymbol":"LINC01044","entrezGeneId":104266956},{"hugoGeneSymbol":"LINC01046","entrezGeneId":103689843},{"hugoGeneSymbol":"LINC01047","entrezGeneId":105616982},{"hugoGeneSymbol":"LINC01048","entrezGeneId":103695431},{"hugoGeneSymbol":"LINC01049","entrezGeneId":101927224},{"hugoGeneSymbol":"LINC01050","entrezGeneId":103689845},{"hugoGeneSymbol":"LINC01052","entrezGeneId":105370242},{"hugoGeneSymbol":"LINC01053","entrezGeneId":102723318},{"hugoGeneSymbol":"LINC01054","entrezGeneId":104355150},{"hugoGeneSymbol":"LINC01055","entrezGeneId":103752581},{"hugoGeneSymbol":"LINC01056","entrezGeneId":100144597},{"hugoGeneSymbol":"LINC01058","entrezGeneId":103724387},{"hugoGeneSymbol":"LINC01060","entrezGeneId":401164},{"hugoGeneSymbol":"LINC01061","entrezGeneId":401149},{"hugoGeneSymbol":"LINC01063","entrezGeneId":101929769},{"hugoGeneSymbol":"LINC01065","entrezGeneId":102723875},{"hugoGeneSymbol":"LINC01066","entrezGeneId":106144544},{"hugoGeneSymbol":"LINC01067","entrezGeneId":107080624},{"hugoGeneSymbol":"LINC01068","entrezGeneId":103724388},{"hugoGeneSymbol":"LINC01069","entrezGeneId":101927176},{"hugoGeneSymbol":"LINC01070","entrezGeneId":101928698},{"hugoGeneSymbol":"LINC01072","entrezGeneId":104355137},{"hugoGeneSymbol":"LINC01073","entrezGeneId":107080623},{"hugoGeneSymbol":"LINC01074","entrezGeneId":106144607},{"hugoGeneSymbol":"LINC01075","entrezGeneId":103752583},{"hugoGeneSymbol":"LINC01076","entrezGeneId":106144602},{"hugoGeneSymbol":"LINC01077","entrezGeneId":107080621},{"hugoGeneSymbol":"LINC01078","entrezGeneId":106144536},{"hugoGeneSymbol":"LINC01079","entrezGeneId":106146146},{"hugoGeneSymbol":"LINC01080","entrezGeneId":101515984},{"hugoGeneSymbol":"LINC01081","entrezGeneId":101154687},{"hugoGeneSymbol":"LINC01082","entrezGeneId":100506542},{"hugoGeneSymbol":"LINC01085","entrezGeneId":152742},{"hugoGeneSymbol":"LINC01087","entrezGeneId":101927994},{"hugoGeneSymbol":"LINC01088","entrezGeneId":100505875},{"hugoGeneSymbol":"LINC01089","entrezGeneId":338799},{"hugoGeneSymbol":"LINC01090","entrezGeneId":104355152},{"hugoGeneSymbol":"LINC01091","entrezGeneId":285419},{"hugoGeneSymbol":"LINC01093","entrezGeneId":100506229},{"hugoGeneSymbol":"LINC01094","entrezGeneId":100505702},{"hugoGeneSymbol":"LINC01095","entrezGeneId":100505545},{"hugoGeneSymbol":"LINC01096","entrezGeneId":285548},{"hugoGeneSymbol":"LINC01097","entrezGeneId":285547},{"hugoGeneSymbol":"LINC01098","entrezGeneId":285501},{"hugoGeneSymbol":"LINC01099","entrezGeneId":101928656},{"hugoGeneSymbol":"LINC01100","entrezGeneId":730109},{"hugoGeneSymbol":"LINC01101","entrezGeneId":84931},{"hugoGeneSymbol":"LINC01102","entrezGeneId":150568},{"hugoGeneSymbol":"LINC01103","entrezGeneId":101927360},{"hugoGeneSymbol":"LINC01104","entrezGeneId":150577},{"hugoGeneSymbol":"LINC01105","entrezGeneId":150622},{"hugoGeneSymbol":"LINC01106","entrezGeneId":151009},{"hugoGeneSymbol":"LINC01107","entrezGeneId":151171},{"hugoGeneSymbol":"LINC01108","entrezGeneId":102216342},{"hugoGeneSymbol":"LINC01109","entrezGeneId":102216341},{"hugoGeneSymbol":"LINC01111","entrezGeneId":101926978},{"hugoGeneSymbol":"LINC01114","entrezGeneId":284998},{"hugoGeneSymbol":"LINC01115","entrezGeneId":339822},{"hugoGeneSymbol":"LINC01116","entrezGeneId":375295},{"hugoGeneSymbol":"LINC01117","entrezGeneId":102724224},{"hugoGeneSymbol":"LINC01118","entrezGeneId":388948},{"hugoGeneSymbol":"LINC01119","entrezGeneId":100134259},{"hugoGeneSymbol":"LINC01120","entrezGeneId":389043},{"hugoGeneSymbol":"LINC01121","entrezGeneId":400952},{"hugoGeneSymbol":"LINC01122","entrezGeneId":400955},{"hugoGeneSymbol":"LINC01123","entrezGeneId":440894},{"hugoGeneSymbol":"LINC01124","entrezGeneId":440925},{"hugoGeneSymbol":"LINC01126","entrezGeneId":100129726},{"hugoGeneSymbol":"LINC01127","entrezGeneId":100506328},{"hugoGeneSymbol":"LINC01128","entrezGeneId":643837},{"hugoGeneSymbol":"LINC01132","entrezGeneId":100506810},{"hugoGeneSymbol":"LINC01133","entrezGeneId":100505633},{"hugoGeneSymbol":"LINC01134","entrezGeneId":100133612},{"hugoGeneSymbol":"LINC01135","entrezGeneId":100131060},{"hugoGeneSymbol":"LINC01136","entrezGeneId":730227},{"hugoGeneSymbol":"LINC01137","entrezGeneId":728431},{"hugoGeneSymbol":"LINC01138","entrezGeneId":388685},{"hugoGeneSymbol":"LINC01139","entrezGeneId":339535},{"hugoGeneSymbol":"LINC01140","entrezGeneId":339524},{"hugoGeneSymbol":"LINC01141","entrezGeneId":339505},{"hugoGeneSymbol":"LINC01142","entrezGeneId":284688},{"hugoGeneSymbol":"LINC01143","entrezGeneId":104355141},{"hugoGeneSymbol":"LINC01144","entrezGeneId":400752},{"hugoGeneSymbol":"LINC01146","entrezGeneId":283587},{"hugoGeneSymbol":"LINC01148","entrezGeneId":283585},{"hugoGeneSymbol":"LINC01149","entrezGeneId":101929111},{"hugoGeneSymbol":"LINC01150","entrezGeneId":101927624},{"hugoGeneSymbol":"LINC01151","entrezGeneId":104266958},{"hugoGeneSymbol":"LINC01152","entrezGeneId":102606463},{"hugoGeneSymbol":"LINC01153","entrezGeneId":101927889},{"hugoGeneSymbol":"LINC01154","entrezGeneId":106144575},{"hugoGeneSymbol":"LINC01157","entrezGeneId":105379037},{"hugoGeneSymbol":"LINC01158","entrezGeneId":100506421},{"hugoGeneSymbol":"LINC01159","entrezGeneId":102682016},{"hugoGeneSymbol":"LINC01160","entrezGeneId":100129269},{"hugoGeneSymbol":"LINC01162","entrezGeneId":104355138},{"hugoGeneSymbol":"LINC01163","entrezGeneId":101927381},{"hugoGeneSymbol":"LINC01164","entrezGeneId":399827},{"hugoGeneSymbol":"LINC01165","entrezGeneId":100128830},{"hugoGeneSymbol":"LINC01166","entrezGeneId":101927590},{"hugoGeneSymbol":"LINC01167","entrezGeneId":103695432},{"hugoGeneSymbol":"LINC01168","entrezGeneId":399829},{"hugoGeneSymbol":"LINC01169","entrezGeneId":102723165},{"hugoGeneSymbol":"LINC01170","entrezGeneId":103724389},{"hugoGeneSymbol":"LINC01173","entrezGeneId":106144537},{"hugoGeneSymbol":"LINC01176","entrezGeneId":100506516},{"hugoGeneSymbol":"LINC01177","entrezGeneId":104355218},{"hugoGeneSymbol":"LINC01179","entrezGeneId":101928151},{"hugoGeneSymbol":"LINC01180","entrezGeneId":101927017},{"hugoGeneSymbol":"LINC01181","entrezGeneId":379034},{"hugoGeneSymbol":"LINC01182","entrezGeneId":101929071},{"hugoGeneSymbol":"LINC01184","entrezGeneId":644873},{"hugoGeneSymbol":"LINC01185","entrezGeneId":400957},{"hugoGeneSymbol":"LINC01186","entrezGeneId":101927574},{"hugoGeneSymbol":"LINC01187","entrezGeneId":100507267},{"hugoGeneSymbol":"LINC01189","entrezGeneId":643648},{"hugoGeneSymbol":"LINC01191","entrezGeneId":440900},{"hugoGeneSymbol":"LINC01192","entrezGeneId":647107},{"hugoGeneSymbol":"LINC01193","entrezGeneId":348120},{"hugoGeneSymbol":"LINC01194","entrezGeneId":404663},{"hugoGeneSymbol":"LINC01195","entrezGeneId":104266959},{"hugoGeneSymbol":"LINC01197","entrezGeneId":400456},{"hugoGeneSymbol":"LINC01198","entrezGeneId":101929344},{"hugoGeneSymbol":"LINC01201","entrezGeneId":104266960},{"hugoGeneSymbol":"LINC01202","entrezGeneId":104326188},{"hugoGeneSymbol":"LINC01203","entrezGeneId":100133123},{"hugoGeneSymbol":"LINC01204","entrezGeneId":101927528},{"hugoGeneSymbol":"LINC01205","entrezGeneId":401082},{"hugoGeneSymbol":"LINC01206","entrezGeneId":100996490},{"hugoGeneSymbol":"LINC01208","entrezGeneId":100505547},{"hugoGeneSymbol":"LINC01209","entrezGeneId":101928684},{"hugoGeneSymbol":"LINC01210","entrezGeneId":100507274},{"hugoGeneSymbol":"LINC01213","entrezGeneId":101927992},{"hugoGeneSymbol":"LINC01214","entrezGeneId":101928022},{"hugoGeneSymbol":"LINC01215","entrezGeneId":101929623},{"hugoGeneSymbol":"LINC01216","entrezGeneId":100874275},{"hugoGeneSymbol":"LINC01217","entrezGeneId":100874276},{"hugoGeneSymbol":"LINC01218","entrezGeneId":107986233},{"hugoGeneSymbol":"LINC01219","entrezGeneId":104355220},{"hugoGeneSymbol":"LINC01220","entrezGeneId":731223},{"hugoGeneSymbol":"LINC01221","entrezGeneId":104266961},{"hugoGeneSymbol":"LINC01222","entrezGeneId":102800316},{"hugoGeneSymbol":"LINC01224","entrezGeneId":104472717},{"hugoGeneSymbol":"LINC01225","entrezGeneId":149086},{"hugoGeneSymbol":"LINC01226","entrezGeneId":284551},{"hugoGeneSymbol":"LINC01227","entrezGeneId":101928276},{"hugoGeneSymbol":"LINC01228","entrezGeneId":104266962},{"hugoGeneSymbol":"LINC01229","entrezGeneId":101928248},{"hugoGeneSymbol":"LINC01230","entrezGeneId":102800446},{"hugoGeneSymbol":"LINC01231","entrezGeneId":101929247},{"hugoGeneSymbol":"LINC01232","entrezGeneId":102725509},{"hugoGeneSymbol":"LINC01233","entrezGeneId":100128139},{"hugoGeneSymbol":"LINC01234","entrezGeneId":100506465},{"hugoGeneSymbol":"LINC01235","entrezGeneId":401492},{"hugoGeneSymbol":"LINC01237","entrezGeneId":101927289},{"hugoGeneSymbol":"LINC01238","entrezGeneId":102723927},{"hugoGeneSymbol":"LINC01239","entrezGeneId":441389},{"hugoGeneSymbol":"LINC01241","entrezGeneId":101929582},{"hugoGeneSymbol":"LINC01242","entrezGeneId":401497},{"hugoGeneSymbol":"LINC01243","entrezGeneId":101929620},{"hugoGeneSymbol":"LINC01246","entrezGeneId":102800315},{"hugoGeneSymbol":"LINC01247","entrezGeneId":101929390},{"hugoGeneSymbol":"LINC01248","entrezGeneId":102723818},{"hugoGeneSymbol":"LINC01249","entrezGeneId":727982},{"hugoGeneSymbol":"LINC01250","entrezGeneId":101927554},{"hugoGeneSymbol":"LINC01251","entrezGeneId":101929688},{"hugoGeneSymbol":"LINC01252","entrezGeneId":338817},{"hugoGeneSymbol":"LINC01254","entrezGeneId":101927350},{"hugoGeneSymbol":"LINC01255","entrezGeneId":101927433},{"hugoGeneSymbol":"LINC01256","entrezGeneId":104355285},{"hugoGeneSymbol":"LINC01257","entrezGeneId":116437},{"hugoGeneSymbol":"LINC01258","entrezGeneId":101928776},{"hugoGeneSymbol":"LINC01259","entrezGeneId":106144599},{"hugoGeneSymbol":"LINC01260","entrezGeneId":79015},{"hugoGeneSymbol":"LINC01262","entrezGeneId":101928971},{"hugoGeneSymbol":"LINC01264","entrezGeneId":104266963},{"hugoGeneSymbol":"LINC01265","entrezGeneId":101926904},{"hugoGeneSymbol":"LINC01266","entrezGeneId":101927215},{"hugoGeneSymbol":"LINC01267","entrezGeneId":101927565},{"hugoGeneSymbol":"LINC01268","entrezGeneId":285758},{"hugoGeneSymbol":"LINC01269","entrezGeneId":103695436},{"hugoGeneSymbol":"LINC01270","entrezGeneId":284751},{"hugoGeneSymbol":"LINC01271","entrezGeneId":101927586},{"hugoGeneSymbol":"LINC01273","entrezGeneId":101927541},{"hugoGeneSymbol":"LINC01276","entrezGeneId":103106903},{"hugoGeneSymbol":"LINC01277","entrezGeneId":100507489},{"hugoGeneSymbol":"LINC01278","entrezGeneId":92249},{"hugoGeneSymbol":"LINC01279","entrezGeneId":100506621},{"hugoGeneSymbol":"LINC01280","entrezGeneId":101928232},{"hugoGeneSymbol":"LINC01281","entrezGeneId":286442},{"hugoGeneSymbol":"LINC01282","entrezGeneId":101927449},{"hugoGeneSymbol":"LINC01284","entrezGeneId":101926971},{"hugoGeneSymbol":"LINC01285","entrezGeneId":101928287},{"hugoGeneSymbol":"LINC01287","entrezGeneId":103724390},{"hugoGeneSymbol":"LINC01288","entrezGeneId":103689844},{"hugoGeneSymbol":"LINC01289","entrezGeneId":286184},{"hugoGeneSymbol":"LINC01290","entrezGeneId":106144584},{"hugoGeneSymbol":"LINC01291","entrezGeneId":102724515},{"hugoGeneSymbol":"LINC01293","entrezGeneId":101927861},{"hugoGeneSymbol":"LINC01296","entrezGeneId":642477},{"hugoGeneSymbol":"LINC01297","entrezGeneId":106146148},{"hugoGeneSymbol":"LINC01298","entrezGeneId":619344},{"hugoGeneSymbol":"LINC01299","entrezGeneId":286186},{"hugoGeneSymbol":"LINC01300","entrezGeneId":731779},{"hugoGeneSymbol":"LINC01301","entrezGeneId":100505532},{"hugoGeneSymbol":"LINC01303","entrezGeneId":101927780},{"hugoGeneSymbol":"LINC01304","entrezGeneId":100505964},{"hugoGeneSymbol":"LINC01305","entrezGeneId":285084},{"hugoGeneSymbol":"LINC01307","entrezGeneId":104355286},{"hugoGeneSymbol":"LINC01309","entrezGeneId":104326190},{"hugoGeneSymbol":"LINC01310","entrezGeneId":100128946},{"hugoGeneSymbol":"LINC01311","entrezGeneId":100652736},{"hugoGeneSymbol":"LINC01312","entrezGeneId":154089},{"hugoGeneSymbol":"LINC01315","entrezGeneId":102723775},{"hugoGeneSymbol":"LINC01317","entrezGeneId":104355287},{"hugoGeneSymbol":"LINC01318","entrezGeneId":106144585},{"hugoGeneSymbol":"LINC01320","entrezGeneId":104355288},{"hugoGeneSymbol":"LINC01322","entrezGeneId":103695433},{"hugoGeneSymbol":"LINC01323","entrezGeneId":106635527},{"hugoGeneSymbol":"LINC01324","entrezGeneId":104355289},{"hugoGeneSymbol":"LINC01326","entrezGeneId":106144540},{"hugoGeneSymbol":"LINC01327","entrezGeneId":104310350},{"hugoGeneSymbol":"LINC01331","entrezGeneId":104310351},{"hugoGeneSymbol":"LINC01332","entrezGeneId":106144530},{"hugoGeneSymbol":"LINC01333","entrezGeneId":101929082},{"hugoGeneSymbol":"LINC01335","entrezGeneId":102503429},{"hugoGeneSymbol":"LINC01336","entrezGeneId":104326191},{"hugoGeneSymbol":"LINC01337","entrezGeneId":103689917},{"hugoGeneSymbol":"LINC01338","entrezGeneId":102546175},{"hugoGeneSymbol":"LINC01339","entrezGeneId":101929495},{"hugoGeneSymbol":"LINC01340","entrezGeneId":102546227},{"hugoGeneSymbol":"LINC01341","entrezGeneId":149134},{"hugoGeneSymbol":"LINC01342","entrezGeneId":254099},{"hugoGeneSymbol":"LINC01343","entrezGeneId":339442},{"hugoGeneSymbol":"LINC01344","entrezGeneId":400799},{"hugoGeneSymbol":"LINC01345","entrezGeneId":105376672},{"hugoGeneSymbol":"LINC01346","entrezGeneId":728716},{"hugoGeneSymbol":"LINC01347","entrezGeneId":731275},{"hugoGeneSymbol":"LINC01348","entrezGeneId":731656},{"hugoGeneSymbol":"LINC01349","entrezGeneId":100128787},{"hugoGeneSymbol":"LINC01350","entrezGeneId":101929093},{"hugoGeneSymbol":"LINC01351","entrezGeneId":101929120},{"hugoGeneSymbol":"LINC01352","entrezGeneId":101929730},{"hugoGeneSymbol":"LINC01353","entrezGeneId":100506775},{"hugoGeneSymbol":"LINC01354","entrezGeneId":100506795},{"hugoGeneSymbol":"LINC01355","entrezGeneId":100996511},{"hugoGeneSymbol":"LINC01356","entrezGeneId":100996702},{"hugoGeneSymbol":"LINC01358","entrezGeneId":101926925},{"hugoGeneSymbol":"LINC01359","entrezGeneId":101927084},{"hugoGeneSymbol":"LINC01360","entrezGeneId":101927295},{"hugoGeneSymbol":"LINC01361","entrezGeneId":101927498},{"hugoGeneSymbol":"LINC01362","entrezGeneId":103283057},{"hugoGeneSymbol":"LINC01363","entrezGeneId":101928484},{"hugoGeneSymbol":"LINC01364","entrezGeneId":100505768},{"hugoGeneSymbol":"LINC01365","entrezGeneId":101927007},{"hugoGeneSymbol":"LINC01366","entrezGeneId":257358},{"hugoGeneSymbol":"LINC01370","entrezGeneId":100505663},{"hugoGeneSymbol":"LINC01372","entrezGeneId":101929736},{"hugoGeneSymbol":"LINC01374","entrezGeneId":105378425},{"hugoGeneSymbol":"LINC01375","entrezGeneId":101926924},{"hugoGeneSymbol":"LINC01376","entrezGeneId":400945},{"hugoGeneSymbol":"LINC01377","entrezGeneId":102467074},{"hugoGeneSymbol":"LINC01378","entrezGeneId":103689918},{"hugoGeneSymbol":"LINC01381","entrezGeneId":106144568},{"hugoGeneSymbol":"LINC01384","entrezGeneId":101929685},{"hugoGeneSymbol":"LINC01385","entrezGeneId":106144542},{"hugoGeneSymbol":"LINC01386","entrezGeneId":104355294},{"hugoGeneSymbol":"LINC01387","entrezGeneId":100130480},{"hugoGeneSymbol":"LINC01388","entrezGeneId":101929179},{"hugoGeneSymbol":"LINC01389","entrezGeneId":102724077},{"hugoGeneSymbol":"LINC01391","entrezGeneId":103344930},{"hugoGeneSymbol":"LINC01392","entrezGeneId":104355291},{"hugoGeneSymbol":"LINC01393","entrezGeneId":102724386},{"hugoGeneSymbol":"LINC01394","entrezGeneId":106144586},{"hugoGeneSymbol":"LINC01395","entrezGeneId":101929557},{"hugoGeneSymbol":"LINC01396","entrezGeneId":103695434},{"hugoGeneSymbol":"LINC01397","entrezGeneId":104355139},{"hugoGeneSymbol":"LINC01398","entrezGeneId":101929651},{"hugoGeneSymbol":"LINC01399","entrezGeneId":104310353},{"hugoGeneSymbol":"LINC01400","entrezGeneId":107080554},{"hugoGeneSymbol":"LINC01402","entrezGeneId":104797536},{"hugoGeneSymbol":"LINC01405","entrezGeneId":100131138},{"hugoGeneSymbol":"LINC01410","entrezGeneId":103352539},{"hugoGeneSymbol":"LINC01411","entrezGeneId":101928176},{"hugoGeneSymbol":"LINC01412","entrezGeneId":101928455},{"hugoGeneSymbol":"LINC01413","entrezGeneId":101928611},{"hugoGeneSymbol":"LINC01415","entrezGeneId":100132501},{"hugoGeneSymbol":"LINC01416","entrezGeneId":101927273},{"hugoGeneSymbol":"LINC01419","entrezGeneId":103352670},{"hugoGeneSymbol":"LINC01422","entrezGeneId":101929539},{"hugoGeneSymbol":"LINC01423","entrezGeneId":102724678},{"hugoGeneSymbol":"LINC01424","entrezGeneId":101928689},{"hugoGeneSymbol":"LINC01425","entrezGeneId":101927821},{"hugoGeneSymbol":"LINC01426","entrezGeneId":100506385},{"hugoGeneSymbol":"LINC01427","entrezGeneId":101929663},{"hugoGeneSymbol":"LINC01428","entrezGeneId":101929265},{"hugoGeneSymbol":"LINC01429","entrezGeneId":101927678},{"hugoGeneSymbol":"LINC01430","entrezGeneId":101927242},{"hugoGeneSymbol":"LINC01431","entrezGeneId":100505683},{"hugoGeneSymbol":"LINC01432","entrezGeneId":100270679},{"hugoGeneSymbol":"LINC01433","entrezGeneId":728228},{"hugoGeneSymbol":"LINC01435","entrezGeneId":103695365},{"hugoGeneSymbol":"LINC01436","entrezGeneId":100996609},{"hugoGeneSymbol":"LINC01438","entrezGeneId":106144527},{"hugoGeneSymbol":"LINC01440","entrezGeneId":102723578},{"hugoGeneSymbol":"LINC01441","entrezGeneId":101927796},{"hugoGeneSymbol":"LINC01442","entrezGeneId":103456507},{"hugoGeneSymbol":"LINC01443","entrezGeneId":400644},{"hugoGeneSymbol":"LINC01444","entrezGeneId":101927642},{"hugoGeneSymbol":"LINC01445","entrezGeneId":102723605},{"hugoGeneSymbol":"LINC01446","entrezGeneId":401337},{"hugoGeneSymbol":"LINC01447","entrezGeneId":101929086},{"hugoGeneSymbol":"LINC01448","entrezGeneId":101928795},{"hugoGeneSymbol":"LINC01449","entrezGeneId":101928773},{"hugoGeneSymbol":"LINC01450","entrezGeneId":101928744},{"hugoGeneSymbol":"LINC01451","entrezGeneId":401561},{"hugoGeneSymbol":"LINC01455","entrezGeneId":105616916},{"hugoGeneSymbol":"LINC01456","entrezGeneId":105373144},{"hugoGeneSymbol":"LINC01460","entrezGeneId":100129995},{"hugoGeneSymbol":"LINC01461","entrezGeneId":103695366},{"hugoGeneSymbol":"LINC01465","entrezGeneId":283416},{"hugoGeneSymbol":"LINC01467","entrezGeneId":101928559},{"hugoGeneSymbol":"LINC01468","entrezGeneId":101928687},{"hugoGeneSymbol":"LINC01470","entrezGeneId":101927134},{"hugoGeneSymbol":"LINC01471","entrezGeneId":101927149},{"hugoGeneSymbol":"LINC01473","entrezGeneId":101927217},{"hugoGeneSymbol":"LINC01474","entrezGeneId":101927258},{"hugoGeneSymbol":"LINC01475","entrezGeneId":101927324},{"hugoGeneSymbol":"LINC01476","entrezGeneId":101927728},{"hugoGeneSymbol":"LINC01477","entrezGeneId":101927900},{"hugoGeneSymbol":"LINC01478","entrezGeneId":101927921},{"hugoGeneSymbol":"LINC01479","entrezGeneId":101927922},{"hugoGeneSymbol":"LINC01480","entrezGeneId":101927931},{"hugoGeneSymbol":"LINC01481","entrezGeneId":101928062},{"hugoGeneSymbol":"LINC01482","entrezGeneId":101928104},{"hugoGeneSymbol":"LINC01483","entrezGeneId":101928122},{"hugoGeneSymbol":"LINC01484","entrezGeneId":101928136},{"hugoGeneSymbol":"LINC01485","entrezGeneId":101928154},{"hugoGeneSymbol":"LINC01486","entrezGeneId":101928138},{"hugoGeneSymbol":"LINC01487","entrezGeneId":101928190},{"hugoGeneSymbol":"LINC01488","entrezGeneId":101928292},{"hugoGeneSymbol":"LINC01489","entrezGeneId":101928340},{"hugoGeneSymbol":"LINC01490","entrezGeneId":101928420},{"hugoGeneSymbol":"LINC01491","entrezGeneId":101928442},{"hugoGeneSymbol":"LINC01492","entrezGeneId":101928496},{"hugoGeneSymbol":"LINC01493","entrezGeneId":101928536},{"hugoGeneSymbol":"LINC01494","entrezGeneId":101928537},{"hugoGeneSymbol":"LINC01495","entrezGeneId":102723378},{"hugoGeneSymbol":"LINC01496","entrezGeneId":102723426},{"hugoGeneSymbol":"LINC01497","entrezGeneId":102723487},{"hugoGeneSymbol":"LINC01498","entrezGeneId":102723562},{"hugoGeneSymbol":"LINC01499","entrezGeneId":102723644},{"hugoGeneSymbol":"LINC01500","entrezGeneId":102723742},{"hugoGeneSymbol":"LINC01501","entrezGeneId":340515},{"hugoGeneSymbol":"LINC01502","entrezGeneId":100130954},{"hugoGeneSymbol":"LINC01503","entrezGeneId":100506119},{"hugoGeneSymbol":"LINC01504","entrezGeneId":100507540},{"hugoGeneSymbol":"LINC01505","entrezGeneId":100996590},{"hugoGeneSymbol":"LINC01506","entrezGeneId":101927015},{"hugoGeneSymbol":"LINC01507","entrezGeneId":101927477},{"hugoGeneSymbol":"LINC01508","entrezGeneId":101927873},{"hugoGeneSymbol":"LINC01509","entrezGeneId":101928720},{"hugoGeneSymbol":"LINC01510","entrezGeneId":100996266},{"hugoGeneSymbol":"LINC01511","entrezGeneId":100506791},{"hugoGeneSymbol":"LINC01512","entrezGeneId":100132354},{"hugoGeneSymbol":"LINC01513","entrezGeneId":112163642},{"hugoGeneSymbol":"LINC01514","entrezGeneId":101927396},{"hugoGeneSymbol":"LINC01515","entrezGeneId":101928913},{"hugoGeneSymbol":"LINC01516","entrezGeneId":101929025},{"hugoGeneSymbol":"LINC01517","entrezGeneId":101929218},{"hugoGeneSymbol":"LINC01518","entrezGeneId":101929397},{"hugoGeneSymbol":"LINC01519","entrezGeneId":101929624},{"hugoGeneSymbol":"LINC01520","entrezGeneId":101929684},{"hugoGeneSymbol":"LINC01521","entrezGeneId":54944},{"hugoGeneSymbol":"LINC01522","entrezGeneId":101927457},{"hugoGeneSymbol":"LINC01523","entrezGeneId":101060004},{"hugoGeneSymbol":"LINC01524","entrezGeneId":101927700},{"hugoGeneSymbol":"LINC01525","entrezGeneId":104355292},{"hugoGeneSymbol":"LINC01526","entrezGeneId":101928770},{"hugoGeneSymbol":"LINC01527","entrezGeneId":101927988},{"hugoGeneSymbol":"LINC01529","entrezGeneId":644050},{"hugoGeneSymbol":"LINC01530","entrezGeneId":729975},{"hugoGeneSymbol":"LINC01531","entrezGeneId":100128682},{"hugoGeneSymbol":"LINC01532","entrezGeneId":100505835},{"hugoGeneSymbol":"LINC01533","entrezGeneId":100996665},{"hugoGeneSymbol":"LINC01534","entrezGeneId":101927621},{"hugoGeneSymbol":"LINC01535","entrezGeneId":101927667},{"hugoGeneSymbol":"LINC01537","entrezGeneId":101928555},{"hugoGeneSymbol":"LINC01538","entrezGeneId":400654},{"hugoGeneSymbol":"LINC01539","entrezGeneId":100505474},{"hugoGeneSymbol":"LINC01541","entrezGeneId":100505776},{"hugoGeneSymbol":"LINC01543","entrezGeneId":100506787},{"hugoGeneSymbol":"LINC01544","entrezGeneId":100996669},{"hugoGeneSymbol":"LINC01545","entrezGeneId":724087},{"hugoGeneSymbol":"LINC01546","entrezGeneId":100129464},{"hugoGeneSymbol":"LINC01547","entrezGeneId":84536},{"hugoGeneSymbol":"LINC01548","entrezGeneId":728409},{"hugoGeneSymbol":"LINC01549","entrezGeneId":100505929},{"hugoGeneSymbol":"LINC01550","entrezGeneId":388011},{"hugoGeneSymbol":"LINC01551","entrezGeneId":387978},{"hugoGeneSymbol":"LINC01553","entrezGeneId":283025},{"hugoGeneSymbol":"LINC01554","entrezGeneId":202299},{"hugoGeneSymbol":"LINC01555","entrezGeneId":439927},{"hugoGeneSymbol":"LINC01556","entrezGeneId":729583},{"hugoGeneSymbol":"LINC01558","entrezGeneId":26238},{"hugoGeneSymbol":"LINC01559","entrezGeneId":283422},{"hugoGeneSymbol":"LINC01560","entrezGeneId":203414},{"hugoGeneSymbol":"LINC01561","entrezGeneId":404216},{"hugoGeneSymbol":"LINC01562","entrezGeneId":105378716},{"hugoGeneSymbol":"LINC01563","entrezGeneId":101060544},{"hugoGeneSymbol":"LINC01564","entrezGeneId":101927171},{"hugoGeneSymbol":"LINC01565","entrezGeneId":23434},{"hugoGeneSymbol":"LINC01566","entrezGeneId":283914},{"hugoGeneSymbol":"LINC01567","entrezGeneId":400511},{"hugoGeneSymbol":"LINC01568","entrezGeneId":100506172},{"hugoGeneSymbol":"LINC01569","entrezGeneId":100507501},{"hugoGeneSymbol":"LINC01570","entrezGeneId":101926950},{"hugoGeneSymbol":"LINC01571","entrezGeneId":101927364},{"hugoGeneSymbol":"LINC01572","entrezGeneId":101927957},{"hugoGeneSymbol":"LINC01574","entrezGeneId":102577424},{"hugoGeneSymbol":"LINC01578","entrezGeneId":100507217},{"hugoGeneSymbol":"LINC01579","entrezGeneId":283682},{"hugoGeneSymbol":"LINC01580","entrezGeneId":101927129},{"hugoGeneSymbol":"LINC01581","entrezGeneId":101927112},{"hugoGeneSymbol":"LINC01582","entrezGeneId":101927332},{"hugoGeneSymbol":"LINC01583","entrezGeneId":101929690},{"hugoGeneSymbol":"LINC01584","entrezGeneId":101929701},{"hugoGeneSymbol":"LINC01585","entrezGeneId":101929765},{"hugoGeneSymbol":"LINC01586","entrezGeneId":101929743},{"hugoGeneSymbol":"LINC01587","entrezGeneId":10141},{"hugoGeneSymbol":"LINC01588","entrezGeneId":283551},{"hugoGeneSymbol":"LINC01589","entrezGeneId":100506737},{"hugoGeneSymbol":"LINC01590","entrezGeneId":63914},{"hugoGeneSymbol":"LINC01591","entrezGeneId":286094},{"hugoGeneSymbol":"LINC01592","entrezGeneId":100505718},{"hugoGeneSymbol":"LINC01593","entrezGeneId":107178918},{"hugoGeneSymbol":"LINC01594","entrezGeneId":102724774},{"hugoGeneSymbol":"LINC01595","entrezGeneId":102725176},{"hugoGeneSymbol":"LINC01596","entrezGeneId":105377617},{"hugoGeneSymbol":"LINC01597","entrezGeneId":400841},{"hugoGeneSymbol":"LINC01598","entrezGeneId":105379478},{"hugoGeneSymbol":"LINC01599","entrezGeneId":196913},{"hugoGeneSymbol":"LINC01600","entrezGeneId":154386},{"hugoGeneSymbol":"LINC01601","entrezGeneId":105667213},{"hugoGeneSymbol":"LINC01602","entrezGeneId":100505477},{"hugoGeneSymbol":"LINC01603","entrezGeneId":100505739},{"hugoGeneSymbol":"LINC01605","entrezGeneId":100507420},{"hugoGeneSymbol":"LINC01606","entrezGeneId":100507651},{"hugoGeneSymbol":"LINC01607","entrezGeneId":101927067},{"hugoGeneSymbol":"LINC01608","entrezGeneId":101927459},{"hugoGeneSymbol":"LINC01609","entrezGeneId":101927487},{"hugoGeneSymbol":"LINC01611","entrezGeneId":105377880},{"hugoGeneSymbol":"LINC01612","entrezGeneId":101928223},{"hugoGeneSymbol":"LINC01613","entrezGeneId":106146149},{"hugoGeneSymbol":"LINC01614","entrezGeneId":105373869},{"hugoGeneSymbol":"LINC01615","entrezGeneId":101929484},{"hugoGeneSymbol":"LINC01616","entrezGeneId":106456574},{"hugoGeneSymbol":"LINC01617","entrezGeneId":101926947},{"hugoGeneSymbol":"LINC01618","entrezGeneId":152578},{"hugoGeneSymbol":"LINC01619","entrezGeneId":256021},{"hugoGeneSymbol":"LINC01620","entrezGeneId":140834},{"hugoGeneSymbol":"LINC01621","entrezGeneId":89758},{"hugoGeneSymbol":"LINC01622","entrezGeneId":285768},{"hugoGeneSymbol":"LINC01623","entrezGeneId":401242},{"hugoGeneSymbol":"LINC01624","entrezGeneId":401289},{"hugoGeneSymbol":"LINC01625","entrezGeneId":645434},{"hugoGeneSymbol":"LINC01626","entrezGeneId":102724000},{"hugoGeneSymbol":"LINC01627","entrezGeneId":105376036},{"hugoGeneSymbol":"LINC01628","entrezGeneId":102724321},{"hugoGeneSymbol":"LINC01629","entrezGeneId":105370578},{"hugoGeneSymbol":"LINC01630","entrezGeneId":100287225},{"hugoGeneSymbol":"LINC01632","entrezGeneId":101929826},{"hugoGeneSymbol":"LINC01633","entrezGeneId":101929069},{"hugoGeneSymbol":"LINC01634","entrezGeneId":100192420},{"hugoGeneSymbol":"LINC01635","entrezGeneId":101928043},{"hugoGeneSymbol":"LINC01637","entrezGeneId":101928891},{"hugoGeneSymbol":"LINC01638","entrezGeneId":105372978},{"hugoGeneSymbol":"LINC01639","entrezGeneId":105373054},{"hugoGeneSymbol":"LINC01640","entrezGeneId":105373006},{"hugoGeneSymbol":"LINC01641","entrezGeneId":107985463},{"hugoGeneSymbol":"LINC01643","entrezGeneId":105373010},{"hugoGeneSymbol":"LINC01644","entrezGeneId":101927722},{"hugoGeneSymbol":"LINC01645","entrezGeneId":102724661},{"hugoGeneSymbol":"LINC01646","entrezGeneId":105376679},{"hugoGeneSymbol":"LINC01647","entrezGeneId":101929181},{"hugoGeneSymbol":"LINC01648","entrezGeneId":101929406},{"hugoGeneSymbol":"LINC01649","entrezGeneId":101928995},{"hugoGeneSymbol":"LINC01650","entrezGeneId":101928169},{"hugoGeneSymbol":"LINC01651","entrezGeneId":105372944},{"hugoGeneSymbol":"LINC01653","entrezGeneId":101929631},{"hugoGeneSymbol":"LINC01654","entrezGeneId":101927876},{"hugoGeneSymbol":"LINC01655","entrezGeneId":101929771},{"hugoGeneSymbol":"LINC01656","entrezGeneId":101927526},{"hugoGeneSymbol":"LINC01657","entrezGeneId":101928751},{"hugoGeneSymbol":"LINC01658","entrezGeneId":388882},{"hugoGeneSymbol":"LINC01659","entrezGeneId":101929374},{"hugoGeneSymbol":"LINC01660","entrezGeneId":729461},{"hugoGeneSymbol":"LINC01661","entrezGeneId":105378889},{"hugoGeneSymbol":"LINC01662","entrezGeneId":642643},{"hugoGeneSymbol":"LINC01663","entrezGeneId":100996432},{"hugoGeneSymbol":"LINC01664","entrezGeneId":100996342},{"hugoGeneSymbol":"LINC01665","entrezGeneId":101929350},{"hugoGeneSymbol":"LINC01666","entrezGeneId":105372730},{"hugoGeneSymbol":"LINC01667","entrezGeneId":441058},{"hugoGeneSymbol":"LINC01668","entrezGeneId":101928311},{"hugoGeneSymbol":"LINC01669","entrezGeneId":102724354},{"hugoGeneSymbol":"LINC01670","entrezGeneId":105379487},{"hugoGeneSymbol":"LINC01671","entrezGeneId":101928233},{"hugoGeneSymbol":"LINC01672","entrezGeneId":100505887},{"hugoGeneSymbol":"LINC01673","entrezGeneId":105372763},{"hugoGeneSymbol":"LINC01674","entrezGeneId":102724188},{"hugoGeneSymbol":"LINC01675","entrezGeneId":105371590},{"hugoGeneSymbol":"LINC01676","entrezGeneId":101928476},{"hugoGeneSymbol":"LINC01677","entrezGeneId":105378884},{"hugoGeneSymbol":"LINC01678","entrezGeneId":105377138},{"hugoGeneSymbol":"LINC01679","entrezGeneId":101928399},{"hugoGeneSymbol":"LINC01680","entrezGeneId":105371660},{"hugoGeneSymbol":"LINC01681","entrezGeneId":105371609},{"hugoGeneSymbol":"LINC01682","entrezGeneId":101927504},{"hugoGeneSymbol":"LINC01683","entrezGeneId":105372746},{"hugoGeneSymbol":"LINC01684","entrezGeneId":105372751},{"hugoGeneSymbol":"LINC01685","entrezGeneId":105378656},{"hugoGeneSymbol":"LINC01686","entrezGeneId":284648},{"hugoGeneSymbol":"LINC01687","entrezGeneId":101927843},{"hugoGeneSymbol":"LINC01688","entrezGeneId":105371644},{"hugoGeneSymbol":"LINC01689","entrezGeneId":101927869},{"hugoGeneSymbol":"LINC01690","entrezGeneId":102724502},{"hugoGeneSymbol":"LINC01691","entrezGeneId":107985195},{"hugoGeneSymbol":"LINC01692","entrezGeneId":339622},{"hugoGeneSymbol":"LINC01693","entrezGeneId":105748977},{"hugoGeneSymbol":"LINC01694","entrezGeneId":105372840},{"hugoGeneSymbol":"LINC01695","entrezGeneId":101927973},{"hugoGeneSymbol":"LINC01696","entrezGeneId":105372897},{"hugoGeneSymbol":"LINC01697","entrezGeneId":284825},{"hugoGeneSymbol":"LINC01698","entrezGeneId":101929476},{"hugoGeneSymbol":"LINC01699","entrezGeneId":100287948},{"hugoGeneSymbol":"LINC01700","entrezGeneId":101928435},{"hugoGeneSymbol":"LINC01701","entrezGeneId":107985456},{"hugoGeneSymbol":"LINC01702","entrezGeneId":102724481},{"hugoGeneSymbol":"LINC01703","entrezGeneId":105373113},{"hugoGeneSymbol":"LINC01704","entrezGeneId":646268},{"hugoGeneSymbol":"LINC01705","entrezGeneId":107985307},{"hugoGeneSymbol":"LINC01706","entrezGeneId":101929312},{"hugoGeneSymbol":"LINC01707","entrezGeneId":105378785},{"hugoGeneSymbol":"LINC01708","entrezGeneId":101928270},{"hugoGeneSymbol":"LINC01709","entrezGeneId":105378872},{"hugoGeneSymbol":"LINC01710","entrezGeneId":105372925},{"hugoGeneSymbol":"LINC01711","entrezGeneId":79160},{"hugoGeneSymbol":"LINC01712","entrezGeneId":101927542},{"hugoGeneSymbol":"LINC01713","entrezGeneId":105372516},{"hugoGeneSymbol":"LINC01714","entrezGeneId":102724539},{"hugoGeneSymbol":"LINC01715","entrezGeneId":105378616},{"hugoGeneSymbol":"LINC01716","entrezGeneId":105372682},{"hugoGeneSymbol":"LINC01717","entrezGeneId":105372893},{"hugoGeneSymbol":"LINC01718","entrezGeneId":100506470},{"hugoGeneSymbol":"LINC01719","entrezGeneId":101928979},{"hugoGeneSymbol":"LINC01720","entrezGeneId":440704},{"hugoGeneSymbol":"LINC01721","entrezGeneId":400839},{"hugoGeneSymbol":"LINC01722","entrezGeneId":101929486},{"hugoGeneSymbol":"LINC01723","entrezGeneId":100505515},{"hugoGeneSymbol":"LINC01724","entrezGeneId":105371673},{"hugoGeneSymbol":"LINC01725","entrezGeneId":101927587},{"hugoGeneSymbol":"LINC01726","entrezGeneId":101929608},{"hugoGeneSymbol":"LINC01727","entrezGeneId":101929625},{"hugoGeneSymbol":"LINC01728","entrezGeneId":105372626},{"hugoGeneSymbol":"LINC01729","entrezGeneId":101929207},{"hugoGeneSymbol":"LINC01730","entrezGeneId":101929125},{"hugoGeneSymbol":"LINC01731","entrezGeneId":105371226},{"hugoGeneSymbol":"LINC01732","entrezGeneId":101928973},{"hugoGeneSymbol":"LINC01733","entrezGeneId":101926955},{"hugoGeneSymbol":"LINC01734","entrezGeneId":339568},{"hugoGeneSymbol":"LINC01735","entrezGeneId":107985254},{"hugoGeneSymbol":"LINC01736","entrezGeneId":101927532},{"hugoGeneSymbol":"LINC01737","entrezGeneId":101927553},{"hugoGeneSymbol":"LINC01738","entrezGeneId":107984953},{"hugoGeneSymbol":"LINC01739","entrezGeneId":105378769},{"hugoGeneSymbol":"LINC01740","entrezGeneId":101929565},{"hugoGeneSymbol":"LINC01741","entrezGeneId":101928778},{"hugoGeneSymbol":"LINC01742","entrezGeneId":105376992},{"hugoGeneSymbol":"LINC01743","entrezGeneId":255654},{"hugoGeneSymbol":"LINC01744","entrezGeneId":101927683},{"hugoGeneSymbol":"LINC01745","entrezGeneId":105373199},{"hugoGeneSymbol":"LINC01746","entrezGeneId":105372608},{"hugoGeneSymbol":"LINC01747","entrezGeneId":105372566},{"hugoGeneSymbol":"LINC01748","entrezGeneId":105378763},{"hugoGeneSymbol":"LINC01749","entrezGeneId":63930},{"hugoGeneSymbol":"LINC01750","entrezGeneId":643355},{"hugoGeneSymbol":"LINC01751","entrezGeneId":101929288},{"hugoGeneSymbol":"LINC01752","entrezGeneId":101929395},{"hugoGeneSymbol":"LINC01753","entrezGeneId":105378739},{"hugoGeneSymbol":"LINC01754","entrezGeneId":102723442},{"hugoGeneSymbol":"LINC01755","entrezGeneId":105378738},{"hugoGeneSymbol":"LINC01756","entrezGeneId":101928460},{"hugoGeneSymbol":"LINC01757","entrezGeneId":105376827},{"hugoGeneSymbol":"LINC01758","entrezGeneId":105378788},{"hugoGeneSymbol":"LINC01759","entrezGeneId":102724571},{"hugoGeneSymbol":"LINC01760","entrezGeneId":100996630},{"hugoGeneSymbol":"LINC01761","entrezGeneId":440594},{"hugoGeneSymbol":"LINC01762","entrezGeneId":101929023},{"hugoGeneSymbol":"LINC01763","entrezGeneId":105378854},{"hugoGeneSymbol":"LINC01764","entrezGeneId":105372290},{"hugoGeneSymbol":"LINC01765","entrezGeneId":105378916},{"hugoGeneSymbol":"LINC01766","entrezGeneId":102723617},{"hugoGeneSymbol":"LINC01767","entrezGeneId":105378744},{"hugoGeneSymbol":"LINC01768","entrezGeneId":107985167},{"hugoGeneSymbol":"LINC01770","entrezGeneId":102724312},{"hugoGeneSymbol":"LINC01771","entrezGeneId":105378732},{"hugoGeneSymbol":"LINC01772","entrezGeneId":107984921},{"hugoGeneSymbol":"LINC01773","entrezGeneId":107985519},{"hugoGeneSymbol":"LINC01774","entrezGeneId":105372894},{"hugoGeneSymbol":"LINC01775","entrezGeneId":101928602},{"hugoGeneSymbol":"LINC01776","entrezGeneId":729987},{"hugoGeneSymbol":"LINC01777","entrezGeneId":284661},{"hugoGeneSymbol":"LINC01778","entrezGeneId":105378622},{"hugoGeneSymbol":"LINC01779","entrezGeneId":107985190},{"hugoGeneSymbol":"LINC01780","entrezGeneId":105378934},{"hugoGeneSymbol":"LINC01781","entrezGeneId":101927412},{"hugoGeneSymbol":"LINC01782","entrezGeneId":101927411},{"hugoGeneSymbol":"LINC01783","entrezGeneId":100132147},{"hugoGeneSymbol":"LINC01784","entrezGeneId":105376745},{"hugoGeneSymbol":"LINC01785","entrezGeneId":374890},{"hugoGeneSymbol":"LINC01786","entrezGeneId":101928895},{"hugoGeneSymbol":"LINC01787","entrezGeneId":101928241},{"hugoGeneSymbol":"LINC01788","entrezGeneId":101927244},{"hugoGeneSymbol":"LINC01789","entrezGeneId":105373536},{"hugoGeneSymbol":"LINC01790","entrezGeneId":101927431},{"hugoGeneSymbol":"LINC01791","entrezGeneId":107985312},{"hugoGeneSymbol":"LINC01792","entrezGeneId":100507140},{"hugoGeneSymbol":"LINC01793","entrezGeneId":101927285},{"hugoGeneSymbol":"LINC01794","entrezGeneId":101929700},{"hugoGeneSymbol":"LINC01795","entrezGeneId":105374744},{"hugoGeneSymbol":"LINC01796","entrezGeneId":105373518},{"hugoGeneSymbol":"LINC01797","entrezGeneId":101927577},{"hugoGeneSymbol":"LINC01798","entrezGeneId":100507073},{"hugoGeneSymbol":"LINC01799","entrezGeneId":101060019},{"hugoGeneSymbol":"LINC01800","entrezGeneId":101927438},{"hugoGeneSymbol":"LINC01801","entrezGeneId":400685},{"hugoGeneSymbol":"LINC01802","entrezGeneId":105373852},{"hugoGeneSymbol":"LINC01803","entrezGeneId":105373889},{"hugoGeneSymbol":"LINC01804","entrezGeneId":101926966},{"hugoGeneSymbol":"LINC01805","entrezGeneId":105374774},{"hugoGeneSymbol":"LINC01806","entrezGeneId":100996579},{"hugoGeneSymbol":"LINC01807","entrezGeneId":101928765},{"hugoGeneSymbol":"LINC01808","entrezGeneId":105373460},{"hugoGeneSymbol":"LINC01809","entrezGeneId":101928031},{"hugoGeneSymbol":"LINC01810","entrezGeneId":105373400},{"hugoGeneSymbol":"LINC01811","entrezGeneId":101928114},{"hugoGeneSymbol":"LINC01812","entrezGeneId":101927701},{"hugoGeneSymbol":"LINC01813","entrezGeneId":101927165},{"hugoGeneSymbol":"LINC01814","entrezGeneId":101929567},{"hugoGeneSymbol":"LINC01815","entrezGeneId":100507201},{"hugoGeneSymbol":"LINC01816","entrezGeneId":100133985},{"hugoGeneSymbol":"LINC01817","entrezGeneId":105373683},{"hugoGeneSymbol":"LINC01818","entrezGeneId":105373684},{"hugoGeneSymbol":"LINC01819","entrezGeneId":102723854},{"hugoGeneSymbol":"LINC01820","entrezGeneId":105374582},{"hugoGeneSymbol":"LINC01821","entrezGeneId":101927406},{"hugoGeneSymbol":"LINC01822","entrezGeneId":645949},{"hugoGeneSymbol":"LINC01823","entrezGeneId":101927801},{"hugoGeneSymbol":"LINC01824","entrezGeneId":107985844},{"hugoGeneSymbol":"LINC01825","entrezGeneId":107985970},{"hugoGeneSymbol":"LINC01826","entrezGeneId":107985818},{"hugoGeneSymbol":"LINC01827","entrezGeneId":105373818},{"hugoGeneSymbol":"LINC01828","entrezGeneId":102800447},{"hugoGeneSymbol":"LINC01829","entrezGeneId":644838},{"hugoGeneSymbol":"LINC01830","entrezGeneId":105374322},{"hugoGeneSymbol":"LINC01831","entrezGeneId":101927331},{"hugoGeneSymbol":"LINC01832","entrezGeneId":105373635},{"hugoGeneSymbol":"LINC01833","entrezGeneId":107985879},{"hugoGeneSymbol":"LINC01834","entrezGeneId":107985280},{"hugoGeneSymbol":"LINC01835","entrezGeneId":102724279},{"hugoGeneSymbol":"LINC01836","entrezGeneId":107985343},{"hugoGeneSymbol":"LINC01837","entrezGeneId":105372363},{"hugoGeneSymbol":"LINC01838","entrezGeneId":100652911},{"hugoGeneSymbol":"LINC01839","entrezGeneId":105374251},{"hugoGeneSymbol":"LINC01840","entrezGeneId":100874079},{"hugoGeneSymbol":"LINC01841","entrezGeneId":105372288},{"hugoGeneSymbol":"LINC01842","entrezGeneId":101928845},{"hugoGeneSymbol":"LINC01843","entrezGeneId":101927934},{"hugoGeneSymbol":"LINC01844","entrezGeneId":101926975},{"hugoGeneSymbol":"LINC01845","entrezGeneId":285627},{"hugoGeneSymbol":"LINC01846","entrezGeneId":105379098},{"hugoGeneSymbol":"LINC01847","entrezGeneId":101927766},{"hugoGeneSymbol":"LINC01848","entrezGeneId":100289673},{"hugoGeneSymbol":"LINC01849","entrezGeneId":105373507},{"hugoGeneSymbol":"LINC01850","entrezGeneId":107985951},{"hugoGeneSymbol":"LINC01851","entrezGeneId":101927926},{"hugoGeneSymbol":"LINC01852","entrezGeneId":107984773},{"hugoGeneSymbol":"LINC01853","entrezGeneId":105373647},{"hugoGeneSymbol":"LINC01854","entrezGeneId":151121},{"hugoGeneSymbol":"LINC01855","entrezGeneId":105372292},{"hugoGeneSymbol":"LINC01856","entrezGeneId":101927924},{"hugoGeneSymbol":"LINC01857","entrezGeneId":102724714},{"hugoGeneSymbol":"LINC01858","entrezGeneId":101929144},{"hugoGeneSymbol":"LINC01859","entrezGeneId":101929164},{"hugoGeneSymbol":"LINC01861","entrezGeneId":105378238},{"hugoGeneSymbol":"LINC01862","entrezGeneId":105372267},{"hugoGeneSymbol":"LINC01863","entrezGeneId":107986480},{"hugoGeneSymbol":"LINC01864","entrezGeneId":101928886},{"hugoGeneSymbol":"LINC01865","entrezGeneId":105373350},{"hugoGeneSymbol":"LINC01866","entrezGeneId":107985806},{"hugoGeneSymbol":"LINC01867","entrezGeneId":105374596},{"hugoGeneSymbol":"LINC01868","entrezGeneId":107985924},{"hugoGeneSymbol":"LINC01869","entrezGeneId":284365},{"hugoGeneSymbol":"LINC01870","entrezGeneId":107985925},{"hugoGeneSymbol":"LINC01871","entrezGeneId":101929531},{"hugoGeneSymbol":"LINC01872","entrezGeneId":105372444},{"hugoGeneSymbol":"LINC01873","entrezGeneId":729348},{"hugoGeneSymbol":"LINC01874","entrezGeneId":727944},{"hugoGeneSymbol":"LINC01875","entrezGeneId":101927362},{"hugoGeneSymbol":"LINC01876","entrezGeneId":101929378},{"hugoGeneSymbol":"LINC01877","entrezGeneId":101927641},{"hugoGeneSymbol":"LINC01878","entrezGeneId":102725079},{"hugoGeneSymbol":"LINC01879","entrezGeneId":400661},{"hugoGeneSymbol":"LINC01880","entrezGeneId":105373979},{"hugoGeneSymbol":"LINC01881","entrezGeneId":728323},{"hugoGeneSymbol":"LINC01882","entrezGeneId":100996324},{"hugoGeneSymbol":"LINC01883","entrezGeneId":100996902},{"hugoGeneSymbol":"LINC01884","entrezGeneId":102723362},{"hugoGeneSymbol":"LINC01885","entrezGeneId":105373538},{"hugoGeneSymbol":"LINC01886","entrezGeneId":105373537},{"hugoGeneSymbol":"LINC01887","entrezGeneId":102724470},{"hugoGeneSymbol":"LINC01888","entrezGeneId":107985893},{"hugoGeneSymbol":"LINC01889","entrezGeneId":105373597},{"hugoGeneSymbol":"LINC01890","entrezGeneId":105374791},{"hugoGeneSymbol":"LINC01891","entrezGeneId":105373934},{"hugoGeneSymbol":"LINC01892","entrezGeneId":105371969},{"hugoGeneSymbol":"LINC01893","entrezGeneId":105372207},{"hugoGeneSymbol":"LINC01894","entrezGeneId":105372030},{"hugoGeneSymbol":"LINC01895","entrezGeneId":105371964},{"hugoGeneSymbol":"LINC01896","entrezGeneId":645321},{"hugoGeneSymbol":"LINC01897","entrezGeneId":107985146},{"hugoGeneSymbol":"LINC01898","entrezGeneId":100505853},{"hugoGeneSymbol":"LINC01899","entrezGeneId":102724913},{"hugoGeneSymbol":"LINC01900","entrezGeneId":102724208},{"hugoGeneSymbol":"LINC01901","entrezGeneId":105372080},{"hugoGeneSymbol":"LINC01902","entrezGeneId":105372079},{"hugoGeneSymbol":"LINC01903","entrezGeneId":101927430},{"hugoGeneSymbol":"LINC01904","entrezGeneId":388456},{"hugoGeneSymbol":"LINC01905","entrezGeneId":102724698},{"hugoGeneSymbol":"LINC01906","entrezGeneId":105372011},{"hugoGeneSymbol":"LINC01907","entrezGeneId":151475},{"hugoGeneSymbol":"LINC01908","entrezGeneId":105372037},{"hugoGeneSymbol":"LINC01909","entrezGeneId":101927481},{"hugoGeneSymbol":"LINC01910","entrezGeneId":101060542},{"hugoGeneSymbol":"LINC01911","entrezGeneId":105373669},{"hugoGeneSymbol":"LINC01912","entrezGeneId":105372175},{"hugoGeneSymbol":"LINC01913","entrezGeneId":388942},{"hugoGeneSymbol":"LINC01914","entrezGeneId":101929723},{"hugoGeneSymbol":"LINC01915","entrezGeneId":729950},{"hugoGeneSymbol":"LINC01916","entrezGeneId":107985128},{"hugoGeneSymbol":"LINC01917","entrezGeneId":101928167},{"hugoGeneSymbol":"LINC01918","entrezGeneId":105373984},{"hugoGeneSymbol":"LINC01919","entrezGeneId":102724651},{"hugoGeneSymbol":"LINC01920","entrezGeneId":101929260},{"hugoGeneSymbol":"LINC01921","entrezGeneId":101928327},{"hugoGeneSymbol":"LINC01922","entrezGeneId":101927606},{"hugoGeneSymbol":"LINC01923","entrezGeneId":101927619},{"hugoGeneSymbol":"LINC01924","entrezGeneId":284294},{"hugoGeneSymbol":"LINC01925","entrezGeneId":105376854},{"hugoGeneSymbol":"LINC01926","entrezGeneId":105372147},{"hugoGeneSymbol":"LINC01927","entrezGeneId":101927651},{"hugoGeneSymbol":"LINC01928","entrezGeneId":105371994},{"hugoGeneSymbol":"LINC01929","entrezGeneId":101927229},{"hugoGeneSymbol":"LINC01930","entrezGeneId":109729128},{"hugoGeneSymbol":"LINC01931","entrezGeneId":150596},{"hugoGeneSymbol":"LINC01932","entrezGeneId":105377682},{"hugoGeneSymbol":"LINC01933","entrezGeneId":101927115},{"hugoGeneSymbol":"LINC01934","entrezGeneId":101927156},{"hugoGeneSymbol":"LINC01935","entrezGeneId":105373519},{"hugoGeneSymbol":"LINC01937","entrezGeneId":105373962},{"hugoGeneSymbol":"LINC01938","entrezGeneId":105377701},{"hugoGeneSymbol":"LINC01939","entrezGeneId":101060385},{"hugoGeneSymbol":"LINC01940","entrezGeneId":401039},{"hugoGeneSymbol":"LINC01941","entrezGeneId":105373600},{"hugoGeneSymbol":"LINC01942","entrezGeneId":105377736},{"hugoGeneSymbol":"LINC01943","entrezGeneId":101928173},{"hugoGeneSymbol":"LINC01944","entrezGeneId":105377728},{"hugoGeneSymbol":"LINC01945","entrezGeneId":101928067},{"hugoGeneSymbol":"LINC01946","entrezGeneId":105374449},{"hugoGeneSymbol":"LINC01947","entrezGeneId":102557615},{"hugoGeneSymbol":"LINC01948","entrezGeneId":102467147},{"hugoGeneSymbol":"LINC01949","entrezGeneId":55338},{"hugoGeneSymbol":"LINC01950","entrezGeneId":102467213},{"hugoGeneSymbol":"LINC01951","entrezGeneId":441116},{"hugoGeneSymbol":"LINC01952","entrezGeneId":105375261},{"hugoGeneSymbol":"LINC01953","entrezGeneId":105373863},{"hugoGeneSymbol":"LINC01954","entrezGeneId":101929733},{"hugoGeneSymbol":"LINC01955","entrezGeneId":105374847},{"hugoGeneSymbol":"LINC01956","entrezGeneId":107985816},{"hugoGeneSymbol":"LINC01957","entrezGeneId":101927059},{"hugoGeneSymbol":"LINC01958","entrezGeneId":105373708},{"hugoGeneSymbol":"LINC01959","entrezGeneId":340074},{"hugoGeneSymbol":"LINC01960","entrezGeneId":100128905},{"hugoGeneSymbol":"LINC01961","entrezGeneId":101927424},{"hugoGeneSymbol":"LINC01962","entrezGeneId":102577426},{"hugoGeneSymbol":"LINC01963","entrezGeneId":150967},{"hugoGeneSymbol":"LINC01964","entrezGeneId":100996478},{"hugoGeneSymbol":"LINC01965","entrezGeneId":107985928},{"hugoGeneSymbol":"LINC01966","entrezGeneId":105373662},{"hugoGeneSymbol":"LINC01967","entrezGeneId":107986041},{"hugoGeneSymbol":"LINC01968","entrezGeneId":100507391},{"hugoGeneSymbol":"LINC01969","entrezGeneId":101927230},{"hugoGeneSymbol":"LINC01970","entrezGeneId":101929511},{"hugoGeneSymbol":"LINC01971","entrezGeneId":105371927},{"hugoGeneSymbol":"LINC01972","entrezGeneId":105374293},{"hugoGeneSymbol":"LINC01973","entrezGeneId":400624},{"hugoGeneSymbol":"LINC01974","entrezGeneId":105371798},{"hugoGeneSymbol":"LINC01975","entrezGeneId":105371496},{"hugoGeneSymbol":"LINC01976","entrezGeneId":107546764},{"hugoGeneSymbol":"LINC01977","entrezGeneId":105371919},{"hugoGeneSymbol":"LINC01978","entrezGeneId":101928738},{"hugoGeneSymbol":"LINC01979","entrezGeneId":101928766},{"hugoGeneSymbol":"LINC01980","entrezGeneId":105377007},{"hugoGeneSymbol":"LINC01981","entrezGeneId":100996624},{"hugoGeneSymbol":"LINC01982","entrezGeneId":105371830},{"hugoGeneSymbol":"LINC01983","entrezGeneId":101929697},{"hugoGeneSymbol":"LINC01984","entrezGeneId":107987252},{"hugoGeneSymbol":"LINC01985","entrezGeneId":101928015},{"hugoGeneSymbol":"LINC01986","entrezGeneId":102723448},{"hugoGeneSymbol":"LINC01987","entrezGeneId":100132174},{"hugoGeneSymbol":"LINC01988","entrezGeneId":100506319},{"hugoGeneSymbol":"LINC01989","entrezGeneId":101927239},{"hugoGeneSymbol":"LINC01990","entrezGeneId":101929607},{"hugoGeneSymbol":"LINC01991","entrezGeneId":105374266},{"hugoGeneSymbol":"LINC01992","entrezGeneId":105371708},{"hugoGeneSymbol":"LINC01993","entrezGeneId":100996291},{"hugoGeneSymbol":"LINC01994","entrezGeneId":401103},{"hugoGeneSymbol":"LINC01995","entrezGeneId":105374244},{"hugoGeneSymbol":"LINC01996","entrezGeneId":400568},{"hugoGeneSymbol":"LINC01997","entrezGeneId":105374201},{"hugoGeneSymbol":"LINC01998","entrezGeneId":107986046},{"hugoGeneSymbol":"LINC01999","entrezGeneId":388406},{"hugoGeneSymbol":"LINC02000","entrezGeneId":100507210},{"hugoGeneSymbol":"LINC02001","entrezGeneId":105371743},{"hugoGeneSymbol":"LINC02002","entrezGeneId":105371595},{"hugoGeneSymbol":"LINC02003","entrezGeneId":146795},{"hugoGeneSymbol":"LINC02004","entrezGeneId":105374119},{"hugoGeneSymbol":"LINC02005","entrezGeneId":105377165},{"hugoGeneSymbol":"LINC02006","entrezGeneId":105374165},{"hugoGeneSymbol":"LINC02008","entrezGeneId":105377180},{"hugoGeneSymbol":"LINC02009","entrezGeneId":105377068},{"hugoGeneSymbol":"LINC02010","entrezGeneId":101927866},{"hugoGeneSymbol":"LINC02011","entrezGeneId":152274},{"hugoGeneSymbol":"LINC02012","entrezGeneId":100129516},{"hugoGeneSymbol":"LINC02013","entrezGeneId":105374272},{"hugoGeneSymbol":"LINC02014","entrezGeneId":105374105},{"hugoGeneSymbol":"LINC02015","entrezGeneId":102724550},{"hugoGeneSymbol":"LINC02016","entrezGeneId":101927123},{"hugoGeneSymbol":"LINC02017","entrezGeneId":105377096},{"hugoGeneSymbol":"LINC02018","entrezGeneId":107986100},{"hugoGeneSymbol":"LINC02019","entrezGeneId":107986085},{"hugoGeneSymbol":"LINC02020","entrezGeneId":107986164},{"hugoGeneSymbol":"LINC02021","entrezGeneId":105374104},{"hugoGeneSymbol":"LINC02022","entrezGeneId":105376955},{"hugoGeneSymbol":"LINC02023","entrezGeneId":101928405},{"hugoGeneSymbol":"LINC02024","entrezGeneId":105374057},{"hugoGeneSymbol":"LINC02025","entrezGeneId":105377192},{"hugoGeneSymbol":"LINC02026","entrezGeneId":647323},{"hugoGeneSymbol":"LINC02027","entrezGeneId":728290},{"hugoGeneSymbol":"LINC02028","entrezGeneId":285389},{"hugoGeneSymbol":"LINC02029","entrezGeneId":105374177},{"hugoGeneSymbol":"LINC02030","entrezGeneId":105377098},{"hugoGeneSymbol":"LINC02031","entrezGeneId":102724617},{"hugoGeneSymbol":"LINC02032","entrezGeneId":100507461},{"hugoGeneSymbol":"LINC02033","entrezGeneId":105377031},{"hugoGeneSymbol":"LINC02034","entrezGeneId":107986125},{"hugoGeneSymbol":"LINC02035","entrezGeneId":100129550},{"hugoGeneSymbol":"LINC02036","entrezGeneId":100505920},{"hugoGeneSymbol":"LINC02037","entrezGeneId":101929337},{"hugoGeneSymbol":"LINC02038","entrezGeneId":105374285},{"hugoGeneSymbol":"LINC02039","entrezGeneId":102546228},{"hugoGeneSymbol":"LINC02040","entrezGeneId":102724763},{"hugoGeneSymbol":"LINC02041","entrezGeneId":105374261},{"hugoGeneSymbol":"LINC02042","entrezGeneId":101929694},{"hugoGeneSymbol":"LINC02043","entrezGeneId":102724699},{"hugoGeneSymbol":"LINC02044","entrezGeneId":101929717},{"hugoGeneSymbol":"LINC02045","entrezGeneId":105374146},{"hugoGeneSymbol":"LINC02046","entrezGeneId":105374149},{"hugoGeneSymbol":"LINC02047","entrezGeneId":101927346},{"hugoGeneSymbol":"LINC02048","entrezGeneId":105374289},{"hugoGeneSymbol":"LINC02049","entrezGeneId":101926983},{"hugoGeneSymbol":"LINC02050","entrezGeneId":105377175},{"hugoGeneSymbol":"LINC02051","entrezGeneId":107986165},{"hugoGeneSymbol":"LINC02052","entrezGeneId":253573},{"hugoGeneSymbol":"LINC02053","entrezGeneId":100505609},{"hugoGeneSymbol":"LINC02054","entrezGeneId":105374250},{"hugoGeneSymbol":"LINC02055","entrezGeneId":107986980},{"hugoGeneSymbol":"LINC02056","entrezGeneId":102477328},{"hugoGeneSymbol":"LINC02057","entrezGeneId":105378992},{"hugoGeneSymbol":"LINC02058","entrezGeneId":107984117},{"hugoGeneSymbol":"LINC02059","entrezGeneId":100505878},{"hugoGeneSymbol":"LINC02060","entrezGeneId":102546226},{"hugoGeneSymbol":"LINC02061","entrezGeneId":105374714},{"hugoGeneSymbol":"LINC02062","entrezGeneId":102724810},{"hugoGeneSymbol":"LINC02063","entrezGeneId":105374627},{"hugoGeneSymbol":"LINC02064","entrezGeneId":101929681},{"hugoGeneSymbol":"LINC02065","entrezGeneId":101928741},{"hugoGeneSymbol":"LINC02066","entrezGeneId":105374158},{"hugoGeneSymbol":"LINC02067","entrezGeneId":101243545},{"hugoGeneSymbol":"LINC02068","entrezGeneId":105374219},{"hugoGeneSymbol":"LINC02069","entrezGeneId":101928992},{"hugoGeneSymbol":"LINC02070","entrezGeneId":101927494},{"hugoGeneSymbol":"LINC02071","entrezGeneId":101927274},{"hugoGeneSymbol":"LINC02072","entrezGeneId":440446},{"hugoGeneSymbol":"LINC02073","entrezGeneId":105371828},{"hugoGeneSymbol":"LINC02074","entrezGeneId":102723567},{"hugoGeneSymbol":"LINC02075","entrezGeneId":101927207},{"hugoGeneSymbol":"LINC02076","entrezGeneId":400579},{"hugoGeneSymbol":"LINC02077","entrezGeneId":105377172},{"hugoGeneSymbol":"LINC02078","entrezGeneId":100652929},{"hugoGeneSymbol":"LINC02079","entrezGeneId":105371766},{"hugoGeneSymbol":"LINC02080","entrezGeneId":101928514},{"hugoGeneSymbol":"LINC02081","entrezGeneId":101928710},{"hugoGeneSymbol":"LINC02082","entrezGeneId":100507661},{"hugoGeneSymbol":"LINC02083","entrezGeneId":107986147},{"hugoGeneSymbol":"LINC02084","entrezGeneId":105377006},{"hugoGeneSymbol":"LINC02085","entrezGeneId":152225},{"hugoGeneSymbol":"LINC02086","entrezGeneId":105371809},{"hugoGeneSymbol":"LINC02087","entrezGeneId":101928567},{"hugoGeneSymbol":"LINC02088","entrezGeneId":105371582},{"hugoGeneSymbol":"LINC02089","entrezGeneId":105371831},{"hugoGeneSymbol":"LINC02090","entrezGeneId":105371562},{"hugoGeneSymbol":"LINC02091","entrezGeneId":100506371},{"hugoGeneSymbol":"LINC02092","entrezGeneId":400620},{"hugoGeneSymbol":"LINC02093","entrezGeneId":105371541},{"hugoGeneSymbol":"LINC02094","entrezGeneId":107984995},{"hugoGeneSymbol":"LINC02096","entrezGeneId":107984977},{"hugoGeneSymbol":"LINC02097","entrezGeneId":101928205},{"hugoGeneSymbol":"LINC02098","entrezGeneId":105369564},{"hugoGeneSymbol":"LINC02099","entrezGeneId":101929450},{"hugoGeneSymbol":"LINC02100","entrezGeneId":107986408},{"hugoGeneSymbol":"LINC02101","entrezGeneId":101928569},{"hugoGeneSymbol":"LINC02102","entrezGeneId":100505625},{"hugoGeneSymbol":"LINC02103","entrezGeneId":105374698},{"hugoGeneSymbol":"LINC02104","entrezGeneId":101926940},{"hugoGeneSymbol":"LINC02105","entrezGeneId":105378966},{"hugoGeneSymbol":"LINC02106","entrezGeneId":100287592},{"hugoGeneSymbol":"LINC02107","entrezGeneId":105374731},{"hugoGeneSymbol":"LINC02108","entrezGeneId":101928600},{"hugoGeneSymbol":"LINC02109","entrezGeneId":101929660},{"hugoGeneSymbol":"LINC02110","entrezGeneId":105374729},{"hugoGeneSymbol":"LINC02111","entrezGeneId":401177},{"hugoGeneSymbol":"LINC02112","entrezGeneId":285692},{"hugoGeneSymbol":"LINC02113","entrezGeneId":102724855},{"hugoGeneSymbol":"LINC02114","entrezGeneId":101929153},{"hugoGeneSymbol":"LINC02115","entrezGeneId":102467212},{"hugoGeneSymbol":"LINC02116","entrezGeneId":101929034},{"hugoGeneSymbol":"LINC02117","entrezGeneId":105374728},{"hugoGeneSymbol":"LINC02118","entrezGeneId":105378960},{"hugoGeneSymbol":"LINC02119","entrezGeneId":101929745},{"hugoGeneSymbol":"LINC02120","entrezGeneId":340113},{"hugoGeneSymbol":"LINC02121","entrezGeneId":105374631},{"hugoGeneSymbol":"LINC02122","entrezGeneId":105379036},{"hugoGeneSymbol":"LINC02123","entrezGeneId":101929261},{"hugoGeneSymbol":"LINC02124","entrezGeneId":105371048},{"hugoGeneSymbol":"LINC02125","entrezGeneId":101928203},{"hugoGeneSymbol":"LINC02126","entrezGeneId":101927650},{"hugoGeneSymbol":"LINC02127","entrezGeneId":101927334},{"hugoGeneSymbol":"LINC02128","entrezGeneId":107983964},{"hugoGeneSymbol":"LINC02129","entrezGeneId":105371156},{"hugoGeneSymbol":"LINC02130","entrezGeneId":105447648},{"hugoGeneSymbol":"LINC02131","entrezGeneId":105371350},{"hugoGeneSymbol":"LINC02132","entrezGeneId":107984811},{"hugoGeneSymbol":"LINC02133","entrezGeneId":101927132},{"hugoGeneSymbol":"LINC02134","entrezGeneId":105371238},{"hugoGeneSymbol":"LINC02135","entrezGeneId":146513},{"hugoGeneSymbol":"LINC02136","entrezGeneId":105371333},{"hugoGeneSymbol":"LINC02137","entrezGeneId":105371295},{"hugoGeneSymbol":"LINC02138","entrezGeneId":400558},{"hugoGeneSymbol":"LINC02139","entrezGeneId":400548},{"hugoGeneSymbol":"LINC02140","entrezGeneId":100996345},{"hugoGeneSymbol":"LINC02141","entrezGeneId":101927580},{"hugoGeneSymbol":"LINC02142","entrezGeneId":105374644},{"hugoGeneSymbol":"LINC02143","entrezGeneId":101927835},{"hugoGeneSymbol":"LINC02144","entrezGeneId":105379069},{"hugoGeneSymbol":"LINC02145","entrezGeneId":401172},{"hugoGeneSymbol":"LINC02146","entrezGeneId":105374677},{"hugoGeneSymbol":"LINC02147","entrezGeneId":102467224},{"hugoGeneSymbol":"LINC02148","entrezGeneId":100505811},{"hugoGeneSymbol":"LINC02149","entrezGeneId":101929454},{"hugoGeneSymbol":"LINC02150","entrezGeneId":101929505},{"hugoGeneSymbol":"LINC02151","entrezGeneId":109729162},{"hugoGeneSymbol":"LINC02152","entrezGeneId":105371071},{"hugoGeneSymbol":"LINC02153","entrezGeneId":286114},{"hugoGeneSymbol":"LINC02154","entrezGeneId":109729169},{"hugoGeneSymbol":"LINC02155","entrezGeneId":111082988},{"hugoGeneSymbol":"LINC02156","entrezGeneId":111082992},{"hugoGeneSymbol":"LINC02157","entrezGeneId":111082990},{"hugoGeneSymbol":"LINC02158","entrezGeneId":729083},{"hugoGeneSymbol":"LINC02159","entrezGeneId":285629},{"hugoGeneSymbol":"LINC02160","entrezGeneId":105374716},{"hugoGeneSymbol":"LINC02161","entrezGeneId":105379076},{"hugoGeneSymbol":"LINC02162","entrezGeneId":105374624},{"hugoGeneSymbol":"LINC02163","entrezGeneId":107986389},{"hugoGeneSymbol":"LINC02164","entrezGeneId":105371066},{"hugoGeneSymbol":"LINC02165","entrezGeneId":101927629},{"hugoGeneSymbol":"LINC02166","entrezGeneId":105371416},{"hugoGeneSymbol":"LINC02167","entrezGeneId":400533},{"hugoGeneSymbol":"LINC02168","entrezGeneId":105371252},{"hugoGeneSymbol":"LINC02169","entrezGeneId":100996338},{"hugoGeneSymbol":"LINC02170","entrezGeneId":100996425},{"hugoGeneSymbol":"LINC02171","entrezGeneId":100133461},{"hugoGeneSymbol":"LINC02172","entrezGeneId":105377443},{"hugoGeneSymbol":"LINC02173","entrezGeneId":105377355},{"hugoGeneSymbol":"LINC02174","entrezGeneId":105377536},{"hugoGeneSymbol":"LINC02175","entrezGeneId":283887},{"hugoGeneSymbol":"LINC02176","entrezGeneId":105371379},{"hugoGeneSymbol":"LINC02177","entrezGeneId":101927009},{"hugoGeneSymbol":"LINC02178","entrezGeneId":105371248},{"hugoGeneSymbol":"LINC02179","entrezGeneId":101927228},{"hugoGeneSymbol":"LINC02180","entrezGeneId":102467079},{"hugoGeneSymbol":"LINC02181","entrezGeneId":440390},{"hugoGeneSymbol":"LINC02182","entrezGeneId":101928880},{"hugoGeneSymbol":"LINC02183","entrezGeneId":105371273},{"hugoGeneSymbol":"LINC02184","entrezGeneId":100505948},{"hugoGeneSymbol":"LINC02185","entrezGeneId":101927311},{"hugoGeneSymbol":"LINC02186","entrezGeneId":101927348},{"hugoGeneSymbol":"LINC02187","entrezGeneId":102724940},{"hugoGeneSymbol":"LINC02188","entrezGeneId":102724344},{"hugoGeneSymbol":"LINC02189","entrezGeneId":101928614},{"hugoGeneSymbol":"LINC02190","entrezGeneId":105371173},{"hugoGeneSymbol":"LINC02191","entrezGeneId":105371146},{"hugoGeneSymbol":"LINC02192","entrezGeneId":100507534},{"hugoGeneSymbol":"LINC02193","entrezGeneId":105371423},{"hugoGeneSymbol":"LINC02195","entrezGeneId":105371152},{"hugoGeneSymbol":"LINC02196","entrezGeneId":107986402},{"hugoGeneSymbol":"LINC02197","entrezGeneId":102724392},{"hugoGeneSymbol":"LINC02198","entrezGeneId":101928885},{"hugoGeneSymbol":"LINC02199","entrezGeneId":101929284},{"hugoGeneSymbol":"LINC02200","entrezGeneId":102467214},{"hugoGeneSymbol":"LINC02201","entrezGeneId":101927379},{"hugoGeneSymbol":"LINC02202","entrezGeneId":101927740},{"hugoGeneSymbol":"LINC02203","entrezGeneId":727924},{"hugoGeneSymbol":"LINC02204","entrezGeneId":101929151},{"hugoGeneSymbol":"LINC02205","entrezGeneId":105370880},{"hugoGeneSymbol":"LINC02206","entrezGeneId":102723481},{"hugoGeneSymbol":"LINC02207","entrezGeneId":101927153},{"hugoGeneSymbol":"LINC02208","entrezGeneId":101927280},{"hugoGeneSymbol":"LINC02209","entrezGeneId":286135},{"hugoGeneSymbol":"LINC02210","entrezGeneId":147081},{"hugoGeneSymbol":"LINC02210-CRHR1","entrezGeneId":104909134},{"hugoGeneSymbol":"LINC02211","entrezGeneId":105374693},{"hugoGeneSymbol":"LINC02212","entrezGeneId":101929412},{"hugoGeneSymbol":"LINC02213","entrezGeneId":389273},{"hugoGeneSymbol":"LINC02214","entrezGeneId":102467223},{"hugoGeneSymbol":"LINC02215","entrezGeneId":102467225},{"hugoGeneSymbol":"LINC02216","entrezGeneId":105379141},{"hugoGeneSymbol":"LINC02217","entrezGeneId":101929544},{"hugoGeneSymbol":"LINC02218","entrezGeneId":102723526},{"hugoGeneSymbol":"LINC02219","entrezGeneId":102467655},{"hugoGeneSymbol":"LINC02220","entrezGeneId":105374658},{"hugoGeneSymbol":"LINC02221","entrezGeneId":105374648},{"hugoGeneSymbol":"LINC02222","entrezGeneId":105377765},{"hugoGeneSymbol":"LINC02223","entrezGeneId":646241},{"hugoGeneSymbol":"LINC02224","entrezGeneId":102723839},{"hugoGeneSymbol":"LINC02225","entrezGeneId":101928539},{"hugoGeneSymbol":"LINC02226","entrezGeneId":729506},{"hugoGeneSymbol":"LINC02227","entrezGeneId":101927697},{"hugoGeneSymbol":"LINC02228","entrezGeneId":105374694},{"hugoGeneSymbol":"LINC02229","entrezGeneId":101928769},{"hugoGeneSymbol":"LINC02230","entrezGeneId":105379033},{"hugoGeneSymbol":"LINC02231","entrezGeneId":109729131},{"hugoGeneSymbol":"LINC02232","entrezGeneId":401134},{"hugoGeneSymbol":"LINC02233","entrezGeneId":109729132},{"hugoGeneSymbol":"LINC02234","entrezGeneId":109729164},{"hugoGeneSymbol":"LINC02235","entrezGeneId":109729147},{"hugoGeneSymbol":"LINC02236","entrezGeneId":109729133},{"hugoGeneSymbol":"LINC02237","entrezGeneId":105375706},{"hugoGeneSymbol":"LINC02238","entrezGeneId":109729166},{"hugoGeneSymbol":"LINC02239","entrezGeneId":340107},{"hugoGeneSymbol":"LINC02240","entrezGeneId":101927460},{"hugoGeneSymbol":"LINC02241","entrezGeneId":105374676},{"hugoGeneSymbol":"LINC02242","entrezGeneId":105379006},{"hugoGeneSymbol":"LINC02243","entrezGeneId":340581},{"hugoGeneSymbol":"LINC02245","entrezGeneId":400958},{"hugoGeneSymbol":"LINC02246","entrezGeneId":107987295},{"hugoGeneSymbol":"LINC02247","entrezGeneId":105376310},{"hugoGeneSymbol":"LINC02248","entrezGeneId":107984780},{"hugoGeneSymbol":"LINC02249","entrezGeneId":26082},{"hugoGeneSymbol":"LINC02250","entrezGeneId":105370737},{"hugoGeneSymbol":"LINC02251","entrezGeneId":105371008},{"hugoGeneSymbol":"LINC02252","entrezGeneId":105370762},{"hugoGeneSymbol":"LINC02253","entrezGeneId":107984764},{"hugoGeneSymbol":"LINC02254","entrezGeneId":101927286},{"hugoGeneSymbol":"LINC02255","entrezGeneId":105370894},{"hugoGeneSymbol":"LINC02256","entrezGeneId":100996255},{"hugoGeneSymbol":"LINC02257","entrezGeneId":105372950},{"hugoGeneSymbol":"LINC02258","entrezGeneId":110806294},{"hugoGeneSymbol":"LINC02259","entrezGeneId":102723640},{"hugoGeneSymbol":"LINC02260","entrezGeneId":339978},{"hugoGeneSymbol":"LINC02261","entrezGeneId":101929199},{"hugoGeneSymbol":"LINC02262","entrezGeneId":105377389},{"hugoGeneSymbol":"LINC02263","entrezGeneId":105377390},{"hugoGeneSymbol":"LINC02264","entrezGeneId":105377391},{"hugoGeneSymbol":"LINC02265","entrezGeneId":101060498},{"hugoGeneSymbol":"LINC02266","entrezGeneId":105377466},{"hugoGeneSymbol":"LINC02267","entrezGeneId":105377338},{"hugoGeneSymbol":"LINC02268","entrezGeneId":101928509},{"hugoGeneSymbol":"LINC02269","entrezGeneId":101928478},{"hugoGeneSymbol":"LINC02270","entrezGeneId":101929019},{"hugoGeneSymbol":"LINC02271","entrezGeneId":105377249},{"hugoGeneSymbol":"LINC02272","entrezGeneId":107986322},{"hugoGeneSymbol":"LINC02273","entrezGeneId":100996286},{"hugoGeneSymbol":"LINC02274","entrezGeneId":100506498},{"hugoGeneSymbol":"LINC02275","entrezGeneId":100506085},{"hugoGeneSymbol":"LINC02276","entrezGeneId":105377456},{"hugoGeneSymbol":"LINC02277","entrezGeneId":107984027},{"hugoGeneSymbol":"LINC02278","entrezGeneId":105374411},{"hugoGeneSymbol":"LINC02279","entrezGeneId":107984637},{"hugoGeneSymbol":"LINC02280","entrezGeneId":101929634},{"hugoGeneSymbol":"LINC02281","entrezGeneId":105370423},{"hugoGeneSymbol":"LINC02282","entrezGeneId":105370424},{"hugoGeneSymbol":"LINC02283","entrezGeneId":105377656},{"hugoGeneSymbol":"LINC02284","entrezGeneId":102723699},{"hugoGeneSymbol":"LINC02285","entrezGeneId":101929422},{"hugoGeneSymbol":"LINC02286","entrezGeneId":105370414},{"hugoGeneSymbol":"LINC02287","entrezGeneId":101929002},{"hugoGeneSymbol":"LINC02288","entrezGeneId":283575},{"hugoGeneSymbol":"LINC02289","entrezGeneId":102724190},{"hugoGeneSymbol":"LINC02290","entrezGeneId":105370540},{"hugoGeneSymbol":"LINC02291","entrezGeneId":100129345},{"hugoGeneSymbol":"LINC02292","entrezGeneId":101929080},{"hugoGeneSymbol":"LINC02293","entrezGeneId":102724890},{"hugoGeneSymbol":"LINC02294","entrezGeneId":101927062},{"hugoGeneSymbol":"LINC02295","entrezGeneId":105370652},{"hugoGeneSymbol":"LINC02296","entrezGeneId":105370610},{"hugoGeneSymbol":"LINC02297","entrezGeneId":642426},{"hugoGeneSymbol":"LINC02298","entrezGeneId":102723354},{"hugoGeneSymbol":"LINC02299","entrezGeneId":105370646},{"hugoGeneSymbol":"LINC02300","entrezGeneId":105370422},{"hugoGeneSymbol":"LINC02301","entrezGeneId":101928599},{"hugoGeneSymbol":"LINC02302","entrezGeneId":101927351},{"hugoGeneSymbol":"LINC02303","entrezGeneId":105370479},{"hugoGeneSymbol":"LINC02304","entrezGeneId":105370648},{"hugoGeneSymbol":"LINC02305","entrezGeneId":102724338},{"hugoGeneSymbol":"LINC02306","entrezGeneId":107984700},{"hugoGeneSymbol":"LINC02307","entrezGeneId":105370471},{"hugoGeneSymbol":"LINC02308","entrezGeneId":100506700},{"hugoGeneSymbol":"LINC02309","entrezGeneId":105370607},{"hugoGeneSymbol":"LINC02310","entrezGeneId":105370496},{"hugoGeneSymbol":"LINC02311","entrezGeneId":102724294},{"hugoGeneSymbol":"LINC02312","entrezGeneId":100132612},{"hugoGeneSymbol":"LINC02313","entrezGeneId":105370439},{"hugoGeneSymbol":"LINC02314","entrezGeneId":100507277},{"hugoGeneSymbol":"LINC02315","entrezGeneId":644919},{"hugoGeneSymbol":"LINC02316","entrezGeneId":102724380},{"hugoGeneSymbol":"LINC02317","entrezGeneId":101930294},{"hugoGeneSymbol":"LINC02318","entrezGeneId":100506999},{"hugoGeneSymbol":"LINC02319","entrezGeneId":105370498},{"hugoGeneSymbol":"LINC02320","entrezGeneId":105370676},{"hugoGeneSymbol":"LINC02321","entrezGeneId":105370623},{"hugoGeneSymbol":"LINC02322","entrezGeneId":101927729},{"hugoGeneSymbol":"LINC02323","entrezGeneId":105370681},{"hugoGeneSymbol":"LINC02324","entrezGeneId":100128233},{"hugoGeneSymbol":"LINC02325","entrezGeneId":101929241},{"hugoGeneSymbol":"LINC02326","entrezGeneId":105370425},{"hugoGeneSymbol":"LINC02327","entrezGeneId":102724917},{"hugoGeneSymbol":"LINC02328","entrezGeneId":101928767},{"hugoGeneSymbol":"LINC02329","entrezGeneId":105370605},{"hugoGeneSymbol":"LINC02330","entrezGeneId":105370611},{"hugoGeneSymbol":"LINC02331","entrezGeneId":105370503},{"hugoGeneSymbol":"LINC02332","entrezGeneId":105370400},{"hugoGeneSymbol":"LINC02333","entrezGeneId":103191607},{"hugoGeneSymbol":"LINC02334","entrezGeneId":101929077},{"hugoGeneSymbol":"LINC02335","entrezGeneId":107984565},{"hugoGeneSymbol":"LINC02336","entrezGeneId":105370309},{"hugoGeneSymbol":"LINC02337","entrezGeneId":105370369},{"hugoGeneSymbol":"LINC02338","entrezGeneId":101926897},{"hugoGeneSymbol":"LINC02339","entrezGeneId":101926951},{"hugoGeneSymbol":"LINC02340","entrezGeneId":105370125},{"hugoGeneSymbol":"LINC02341","entrezGeneId":105370177},{"hugoGeneSymbol":"LINC02342","entrezGeneId":105370253},{"hugoGeneSymbol":"LINC02343","entrezGeneId":105370158},{"hugoGeneSymbol":"LINC02344","entrezGeneId":105370154},{"hugoGeneSymbol":"LINC02345","entrezGeneId":101928227},{"hugoGeneSymbol":"LINC02346","entrezGeneId":100128714},{"hugoGeneSymbol":"LINC02347","entrezGeneId":100128554},{"hugoGeneSymbol":"LINC02348","entrezGeneId":101927505},{"hugoGeneSymbol":"LINC02349","entrezGeneId":100506530},{"hugoGeneSymbol":"LINC02350","entrezGeneId":105370059},{"hugoGeneSymbol":"LINC02351","entrezGeneId":105371011},{"hugoGeneSymbol":"LINC02352","entrezGeneId":102725022},{"hugoGeneSymbol":"LINC02353","entrezGeneId":101927363},{"hugoGeneSymbol":"LINC02354","entrezGeneId":107984503},{"hugoGeneSymbol":"LINC02355","entrezGeneId":101927849},{"hugoGeneSymbol":"LINC02356","entrezGeneId":105369984},{"hugoGeneSymbol":"LINC02357","entrezGeneId":105374540},{"hugoGeneSymbol":"LINC02358","entrezGeneId":107986226},{"hugoGeneSymbol":"LINC02359","entrezGeneId":101927464},{"hugoGeneSymbol":"LINC02360","entrezGeneId":105374484},{"hugoGeneSymbol":"LINC02361","entrezGeneId":100996246},{"hugoGeneSymbol":"LINC02362","entrezGeneId":102723766},{"hugoGeneSymbol":"LINC02363","entrezGeneId":728175},{"hugoGeneSymbol":"LINC02364","entrezGeneId":102723764},{"hugoGeneSymbol":"LINC02365","entrezGeneId":105377586},{"hugoGeneSymbol":"LINC02366","entrezGeneId":101928162},{"hugoGeneSymbol":"LINC02367","entrezGeneId":101930452},{"hugoGeneSymbol":"LINC02368","entrezGeneId":101927694},{"hugoGeneSymbol":"LINC02369","entrezGeneId":100996679},{"hugoGeneSymbol":"LINC02370","entrezGeneId":338797},{"hugoGeneSymbol":"LINC02371","entrezGeneId":107984539},{"hugoGeneSymbol":"LINC02372","entrezGeneId":440117},{"hugoGeneSymbol":"LINC02373","entrezGeneId":105369822},{"hugoGeneSymbol":"LINC02374","entrezGeneId":105377600},{"hugoGeneSymbol":"LINC02375","entrezGeneId":101927616},{"hugoGeneSymbol":"LINC02376","entrezGeneId":105370065},{"hugoGeneSymbol":"LINC02377","entrezGeneId":105377424},{"hugoGeneSymbol":"LINC02378","entrezGeneId":105369678},{"hugoGeneSymbol":"LINC02379","entrezGeneId":101927109},{"hugoGeneSymbol":"LINC02380","entrezGeneId":101928851},{"hugoGeneSymbol":"LINC02381","entrezGeneId":400043},{"hugoGeneSymbol":"LINC02382","entrezGeneId":100506107},{"hugoGeneSymbol":"LINC02383","entrezGeneId":105374436},{"hugoGeneSymbol":"LINC02384","entrezGeneId":100507195},{"hugoGeneSymbol":"LINC02385","entrezGeneId":105369948},{"hugoGeneSymbol":"LINC02386","entrezGeneId":105369717},{"hugoGeneSymbol":"LINC02387","entrezGeneId":101929027},{"hugoGeneSymbol":"LINC02388","entrezGeneId":101927653},{"hugoGeneSymbol":"LINC02389","entrezGeneId":400046},{"hugoGeneSymbol":"LINC02390","entrezGeneId":105369652},{"hugoGeneSymbol":"LINC02391","entrezGeneId":101930023},{"hugoGeneSymbol":"LINC02392","entrezGeneId":105369893},{"hugoGeneSymbol":"LINC02393","entrezGeneId":400087},{"hugoGeneSymbol":"LINC02394","entrezGeneId":105369841},{"hugoGeneSymbol":"LINC02395","entrezGeneId":101927292},{"hugoGeneSymbol":"LINC02396","entrezGeneId":283332},{"hugoGeneSymbol":"LINC02397","entrezGeneId":100507616},{"hugoGeneSymbol":"LINC02398","entrezGeneId":100506393},{"hugoGeneSymbol":"LINC02399","entrezGeneId":105369891},{"hugoGeneSymbol":"LINC02400","entrezGeneId":101927038},{"hugoGeneSymbol":"LINC02401","entrezGeneId":101929084},{"hugoGeneSymbol":"LINC02402","entrezGeneId":101927058},{"hugoGeneSymbol":"LINC02403","entrezGeneId":105369785},{"hugoGeneSymbol":"LINC02404","entrezGeneId":105369900},{"hugoGeneSymbol":"LINC02405","entrezGeneId":101927592},{"hugoGeneSymbol":"LINC02406","entrezGeneId":105369730},{"hugoGeneSymbol":"LINC02407","entrezGeneId":105369848},{"hugoGeneSymbol":"LINC02408","entrezGeneId":100507175},{"hugoGeneSymbol":"LINC02409","entrezGeneId":105369929},{"hugoGeneSymbol":"LINC02410","entrezGeneId":105369920},{"hugoGeneSymbol":"LINC02411","entrezGeneId":101927637},{"hugoGeneSymbol":"LINC02412","entrezGeneId":102724933},{"hugoGeneSymbol":"LINC02413","entrezGeneId":105369906},{"hugoGeneSymbol":"LINC02414","entrezGeneId":105370085},{"hugoGeneSymbol":"LINC02415","entrezGeneId":107161159},{"hugoGeneSymbol":"LINC02416","entrezGeneId":107984528},{"hugoGeneSymbol":"LINC02417","entrezGeneId":101930162},{"hugoGeneSymbol":"LINC02418","entrezGeneId":100190940},{"hugoGeneSymbol":"LINC02419","entrezGeneId":105370078},{"hugoGeneSymbol":"LINC02420","entrezGeneId":102724433},{"hugoGeneSymbol":"LINC02421","entrezGeneId":101927901},{"hugoGeneSymbol":"LINC02422","entrezGeneId":105369723},{"hugoGeneSymbol":"LINC02423","entrezGeneId":105370014},{"hugoGeneSymbol":"LINC02424","entrezGeneId":105369860},{"hugoGeneSymbol":"LINC02425","entrezGeneId":105369810},{"hugoGeneSymbol":"LINC02426","entrezGeneId":101928449},{"hugoGeneSymbol":"LINC02427","entrezGeneId":105377585},{"hugoGeneSymbol":"LINC02428","entrezGeneId":101929448},{"hugoGeneSymbol":"LINC02429","entrezGeneId":105377247},{"hugoGeneSymbol":"LINC02430","entrezGeneId":107986319},{"hugoGeneSymbol":"LINC02431","entrezGeneId":100506122},{"hugoGeneSymbol":"LINC02432","entrezGeneId":100507639},{"hugoGeneSymbol":"LINC02433","entrezGeneId":340017},{"hugoGeneSymbol":"LINC02434","entrezGeneId":105377606},{"hugoGeneSymbol":"LINC02435","entrezGeneId":107986311},{"hugoGeneSymbol":"LINC02436","entrezGeneId":101928877},{"hugoGeneSymbol":"LINC02437","entrezGeneId":107986333},{"hugoGeneSymbol":"LINC02438","entrezGeneId":107986264},{"hugoGeneSymbol":"LINC02439","entrezGeneId":105370016},{"hugoGeneSymbol":"LINC02440","entrezGeneId":105370015},{"hugoGeneSymbol":"LINC02441","entrezGeneId":105370070},{"hugoGeneSymbol":"LINC02442","entrezGeneId":105369815},{"hugoGeneSymbol":"LINC02443","entrezGeneId":101929584},{"hugoGeneSymbol":"LINC02444","entrezGeneId":101928137},{"hugoGeneSymbol":"LINC02445","entrezGeneId":105369840},{"hugoGeneSymbol":"LINC02446","entrezGeneId":101060038},{"hugoGeneSymbol":"LINC02447","entrezGeneId":730971},{"hugoGeneSymbol":"LINC02448","entrezGeneId":105369792},{"hugoGeneSymbol":"LINC02449","entrezGeneId":101927905},{"hugoGeneSymbol":"LINC02450","entrezGeneId":105369739},{"hugoGeneSymbol":"LINC02451","entrezGeneId":105369738},{"hugoGeneSymbol":"LINC02452","entrezGeneId":105369924},{"hugoGeneSymbol":"LINC02453","entrezGeneId":643770},{"hugoGeneSymbol":"LINC02454","entrezGeneId":105369807},{"hugoGeneSymbol":"LINC02455","entrezGeneId":105369597},{"hugoGeneSymbol":"LINC02456","entrezGeneId":105369942},{"hugoGeneSymbol":"LINC02457","entrezGeneId":107984439},{"hugoGeneSymbol":"LINC02458","entrezGeneId":728084},{"hugoGeneSymbol":"LINC02459","entrezGeneId":105369996},{"hugoGeneSymbol":"LINC02460","entrezGeneId":105370013},{"hugoGeneSymbol":"LINC02461","entrezGeneId":105369740},{"hugoGeneSymbol":"LINC02462","entrezGeneId":105377434},{"hugoGeneSymbol":"LINC02463","entrezGeneId":105370004},{"hugoGeneSymbol":"LINC02464","entrezGeneId":105369854},{"hugoGeneSymbol":"LINC02465","entrezGeneId":107986313},{"hugoGeneSymbol":"LINC02466","entrezGeneId":101927282},{"hugoGeneSymbol":"LINC02467","entrezGeneId":107984446},{"hugoGeneSymbol":"LINC02468","entrezGeneId":105369684},{"hugoGeneSymbol":"LINC02469","entrezGeneId":105377301},{"hugoGeneSymbol":"LINC02470","entrezGeneId":100506159},{"hugoGeneSymbol":"LINC02471","entrezGeneId":105369734},{"hugoGeneSymbol":"LINC02472","entrezGeneId":105374561},{"hugoGeneSymbol":"LINC02473","entrezGeneId":107986266},{"hugoGeneSymbol":"LINC02474","entrezGeneId":110806276},{"hugoGeneSymbol":"LINC02475","entrezGeneId":100506827},{"hugoGeneSymbol":"LINC02476","entrezGeneId":105375475},{"hugoGeneSymbol":"LINC02477","entrezGeneId":105377512},{"hugoGeneSymbol":"LINC02478","entrezGeneId":100505984},{"hugoGeneSymbol":"LINC02479","entrezGeneId":105377420},{"hugoGeneSymbol":"LINC02480","entrezGeneId":105377652},{"hugoGeneSymbol":"LINC02482","entrezGeneId":105374366},{"hugoGeneSymbol":"LINC02483","entrezGeneId":441025},{"hugoGeneSymbol":"LINC02484","entrezGeneId":105374394},{"hugoGeneSymbol":"LINC02485","entrezGeneId":105377439},{"hugoGeneSymbol":"LINC02487","entrezGeneId":441178},{"hugoGeneSymbol":"LINC02488","entrezGeneId":111082994},{"hugoGeneSymbol":"LINC02489","entrezGeneId":101928919},{"hugoGeneSymbol":"LINC02490","entrezGeneId":105370822},{"hugoGeneSymbol":"LINC02491","entrezGeneId":105377467},{"hugoGeneSymbol":"LINC02492","entrezGeneId":100506272},{"hugoGeneSymbol":"LINC02493","entrezGeneId":101929123},{"hugoGeneSymbol":"LINC02494","entrezGeneId":105377671},{"hugoGeneSymbol":"LINC02495","entrezGeneId":285484},{"hugoGeneSymbol":"LINC02496","entrezGeneId":105377248},{"hugoGeneSymbol":"LINC02497","entrezGeneId":102723778},{"hugoGeneSymbol":"LINC02498","entrezGeneId":102723525},{"hugoGeneSymbol":"LINC02499","entrezGeneId":728040},{"hugoGeneSymbol":"LINC02500","entrezGeneId":101928679},{"hugoGeneSymbol":"LINC02501","entrezGeneId":105374565},{"hugoGeneSymbol":"LINC02502","entrezGeneId":100996694},{"hugoGeneSymbol":"LINC02503","entrezGeneId":105377349},{"hugoGeneSymbol":"LINC02504","entrezGeneId":101928288},{"hugoGeneSymbol":"LINC02505","entrezGeneId":105374400},{"hugoGeneSymbol":"LINC02506","entrezGeneId":102723828},{"hugoGeneSymbol":"LINC02507","entrezGeneId":105377477},{"hugoGeneSymbol":"LINC02508","entrezGeneId":105377610},{"hugoGeneSymbol":"LINC02509","entrezGeneId":105377556},{"hugoGeneSymbol":"LINC02510","entrezGeneId":729307},{"hugoGeneSymbol":"LINC02511","entrezGeneId":105377441},{"hugoGeneSymbol":"LINC02512","entrezGeneId":107986241},{"hugoGeneSymbol":"LINC02513","entrezGeneId":105374410},{"hugoGeneSymbol":"LINC02514","entrezGeneId":105377602},{"hugoGeneSymbol":"LINC02515","entrezGeneId":102723920},{"hugoGeneSymbol":"LINC02516","entrezGeneId":101927087},{"hugoGeneSymbol":"LINC02517","entrezGeneId":105374374},{"hugoGeneSymbol":"LINC02518","entrezGeneId":105377957},{"hugoGeneSymbol":"LINC02519","entrezGeneId":105378147},{"hugoGeneSymbol":"LINC02520","entrezGeneId":100505530},{"hugoGeneSymbol":"LINC02521","entrezGeneId":105374885},{"hugoGeneSymbol":"LINC02522","entrezGeneId":101928106},{"hugoGeneSymbol":"LINC02523","entrezGeneId":643623},{"hugoGeneSymbol":"LINC02525","entrezGeneId":100507194},{"hugoGeneSymbol":"LINC02526","entrezGeneId":105377926},{"hugoGeneSymbol":"LINC02527","entrezGeneId":105377946},{"hugoGeneSymbol":"LINC02528","entrezGeneId":105378020},{"hugoGeneSymbol":"LINC02529","entrezGeneId":102724053},{"hugoGeneSymbol":"LINC02530","entrezGeneId":101928309},{"hugoGeneSymbol":"LINC02531","entrezGeneId":107986533},{"hugoGeneSymbol":"LINC02532","entrezGeneId":100422737},{"hugoGeneSymbol":"LINC02533","entrezGeneId":105374895},{"hugoGeneSymbol":"LINC02534","entrezGeneId":105377962},{"hugoGeneSymbol":"LINC02535","entrezGeneId":101928820},{"hugoGeneSymbol":"LINC02536","entrezGeneId":105377997},{"hugoGeneSymbol":"LINC02537","entrezGeneId":285857},{"hugoGeneSymbol":"LINC02538","entrezGeneId":401286},{"hugoGeneSymbol":"LINC02539","entrezGeneId":100507406},{"hugoGeneSymbol":"LINC02540","entrezGeneId":105377860},{"hugoGeneSymbol":"LINC02541","entrezGeneId":101927686},{"hugoGeneSymbol":"LINC02542","entrezGeneId":102724168},{"hugoGeneSymbol":"LINC02543","entrezGeneId":101928406},{"hugoGeneSymbol":"LINC02544","entrezGeneId":101929504},{"hugoGeneSymbol":"LINC02545","entrezGeneId":105376561},{"hugoGeneSymbol":"LINC02546","entrezGeneId":105376606},{"hugoGeneSymbol":"LINC02547","entrezGeneId":105376554},{"hugoGeneSymbol":"LINC02548","entrezGeneId":105376562},{"hugoGeneSymbol":"LINC02549","entrezGeneId":101928280},{"hugoGeneSymbol":"LINC02550","entrezGeneId":105369490},{"hugoGeneSymbol":"LINC02551","entrezGeneId":100507431},{"hugoGeneSymbol":"LINC02552","entrezGeneId":102723895},{"hugoGeneSymbol":"LINC02553","entrezGeneId":105369449},{"hugoGeneSymbol":"LINC02554","entrezGeneId":100507657},{"hugoGeneSymbol":"LINC02555","entrezGeneId":101930164},{"hugoGeneSymbol":"LINC02556","entrezGeneId":102724679},{"hugoGeneSymbol":"LINC02557","entrezGeneId":105372955},{"hugoGeneSymbol":"LINC02558","entrezGeneId":105372999},{"hugoGeneSymbol":"LINC02559","entrezGeneId":105372972},{"hugoGeneSymbol":"LINC02560","entrezGeneId":110806301},{"hugoGeneSymbol":"LINC02561","entrezGeneId":110806285},{"hugoGeneSymbol":"LINC02562","entrezGeneId":105377283},{"hugoGeneSymbol":"LINC02563","entrezGeneId":105827617},{"hugoGeneSymbol":"LINC02564","entrezGeneId":102724130},{"hugoGeneSymbol":"LINC02565","entrezGeneId":105372138},{"hugoGeneSymbol":"LINC02567","entrezGeneId":110806286},{"hugoGeneSymbol":"LINC02568","entrezGeneId":102723344},{"hugoGeneSymbol":"LINC02569","entrezGeneId":111082993},{"hugoGeneSymbol":"LINC02570","entrezGeneId":105375014},{"hugoGeneSymbol":"LINC02571","entrezGeneId":105375015},{"hugoGeneSymbol":"LINC02572","entrezGeneId":105373615},{"hugoGeneSymbol":"LINC02573","entrezGeneId":111216285},{"hugoGeneSymbol":"LINC02574","entrezGeneId":111216282},{"hugoGeneSymbol":"LINC02575","entrezGeneId":111216286},{"hugoGeneSymbol":"LINC02576","entrezGeneId":102724233},{"hugoGeneSymbol":"LINC02577","entrezGeneId":111216280},{"hugoGeneSymbol":"LINC02578","entrezGeneId":111216287},{"hugoGeneSymbol":"LINC02579","entrezGeneId":339807},{"hugoGeneSymbol":"LINC02580","entrezGeneId":100506047},{"hugoGeneSymbol":"LINC02582","entrezGeneId":100505817},{"hugoGeneSymbol":"LINC02583","entrezGeneId":101805491},{"hugoGeneSymbol":"LINC02584","entrezGeneId":100009613},{"hugoGeneSymbol":"LINC02585","entrezGeneId":102724368},{"hugoGeneSymbol":"LINC02586","entrezGeneId":100873974},{"hugoGeneSymbol":"LINC02587","entrezGeneId":101927524},{"hugoGeneSymbol":"LINC02588","entrezGeneId":102725045},{"hugoGeneSymbol":"LINC2194","entrezGeneId":105371142},{"hugoGeneSymbol":"LINCMD1","entrezGeneId":101154644},{"hugoGeneSymbol":"LINCR-0001","entrezGeneId":101929191},{"hugoGeneSymbol":"LINCR-0002","entrezGeneId":103344926},{"hugoGeneSymbol":"LINCR-0003","entrezGeneId":100996645},{"hugoGeneSymbol":"LINGO1","entrezGeneId":84894},{"hugoGeneSymbol":"LINGO1-AS1","entrezGeneId":253044},{"hugoGeneSymbol":"LINGO1-AS2","entrezGeneId":101929478},{"hugoGeneSymbol":"LINGO2","entrezGeneId":158038},{"hugoGeneSymbol":"LINGO3","entrezGeneId":645191},{"hugoGeneSymbol":"LINGO4","entrezGeneId":339398},{"hugoGeneSymbol":"LINP1","entrezGeneId":108570035},{"hugoGeneSymbol":"LINS1","entrezGeneId":55180},{"hugoGeneSymbol":"LIPA","entrezGeneId":3988},{"hugoGeneSymbol":"LIPB","entrezGeneId":3989},{"hugoGeneSymbol":"LIPC","entrezGeneId":3990},{"hugoGeneSymbol":"LIPC-AS1","entrezGeneId":101928694},{"hugoGeneSymbol":"LIPE","entrezGeneId":3991},{"hugoGeneSymbol":"LIPE-AS1","entrezGeneId":100996307},{"hugoGeneSymbol":"LIPF","entrezGeneId":8513},{"hugoGeneSymbol":"LIPG","entrezGeneId":9388},{"hugoGeneSymbol":"LIPH","entrezGeneId":200879},{"hugoGeneSymbol":"LIPI","entrezGeneId":149998},{"hugoGeneSymbol":"LIPJ","entrezGeneId":142910},{"hugoGeneSymbol":"LIPK","entrezGeneId":643414},{"hugoGeneSymbol":"LIPM","entrezGeneId":340654},{"hugoGeneSymbol":"LIPN","entrezGeneId":643418},{"hugoGeneSymbol":"LIPT1","entrezGeneId":51601},{"hugoGeneSymbol":"LIPT1P1","entrezGeneId":100131188},{"hugoGeneSymbol":"LIPT2","entrezGeneId":387787},{"hugoGeneSymbol":"LITAF","entrezGeneId":9516},{"hugoGeneSymbol":"LIVAR","entrezGeneId":102724895},{"hugoGeneSymbol":"LIX1","entrezGeneId":167410},{"hugoGeneSymbol":"LIX1-AS1","entrezGeneId":101926893},{"hugoGeneSymbol":"LIX1L","entrezGeneId":128077},{"hugoGeneSymbol":"LIX1L-AS1","entrezGeneId":105371260},{"hugoGeneSymbol":"LKAAEAR1","entrezGeneId":198437},{"hugoGeneSymbol":"LKMCD","entrezGeneId":100302058},{"hugoGeneSymbol":"LL0XNC01-250H12.3","entrezGeneId":100506901},{"hugoGeneSymbol":"LL21NC02-21A1.1","entrezGeneId":101928745},{"hugoGeneSymbol":"LL22NC01-81G9.3","entrezGeneId":100506241},{"hugoGeneSymbol":"LL22NC03-102D1.18","entrezGeneId":105372949},{"hugoGeneSymbol":"LL22NC03-104C7.1","entrezGeneId":105373004},{"hugoGeneSymbol":"LL22NC03-13G6.2","entrezGeneId":105373009},{"hugoGeneSymbol":"LL22NC03-63E9.3","entrezGeneId":648691},{"hugoGeneSymbol":"LLCFC1","entrezGeneId":135927},{"hugoGeneSymbol":"LLGL1","entrezGeneId":3996},{"hugoGeneSymbol":"LLGL2","entrezGeneId":3993},{"hugoGeneSymbol":"LLPH","entrezGeneId":84298},{"hugoGeneSymbol":"LLPH-DT","entrezGeneId":103625681},{"hugoGeneSymbol":"LLPHP1","entrezGeneId":106480685},{"hugoGeneSymbol":"LLPHP2","entrezGeneId":106480300},{"hugoGeneSymbol":"LMAN1","entrezGeneId":3998},{"hugoGeneSymbol":"LMAN1L","entrezGeneId":79748},{"hugoGeneSymbol":"LMAN2","entrezGeneId":10960},{"hugoGeneSymbol":"LMAN2L","entrezGeneId":81562},{"hugoGeneSymbol":"LMBR1","entrezGeneId":64327},{"hugoGeneSymbol":"LMBR1L","entrezGeneId":55716},{"hugoGeneSymbol":"LMBRD1","entrezGeneId":55788},{"hugoGeneSymbol":"LMBRD2","entrezGeneId":92255},{"hugoGeneSymbol":"LMCD1","entrezGeneId":29995},{"hugoGeneSymbol":"LMCD1-AS1","entrezGeneId":100288428},{"hugoGeneSymbol":"LMF1","entrezGeneId":64788},{"hugoGeneSymbol":"LMF1-AS1","entrezGeneId":101929387},{"hugoGeneSymbol":"LMF2","entrezGeneId":91289},{"hugoGeneSymbol":"LMLN","entrezGeneId":89782},{"hugoGeneSymbol":"LMLN-AS1","entrezGeneId":100873947},{"hugoGeneSymbol":"LMLN2","entrezGeneId":100128908},{"hugoGeneSymbol":"LMNA","entrezGeneId":4000},{"hugoGeneSymbol":"LMNB1","entrezGeneId":4001},{"hugoGeneSymbol":"LMNB1-DT","entrezGeneId":102723557},{"hugoGeneSymbol":"LMNB2","entrezGeneId":84823},{"hugoGeneSymbol":"LMNTD1","entrezGeneId":160492},{"hugoGeneSymbol":"LMNTD2","entrezGeneId":256329},{"hugoGeneSymbol":"LMO1","entrezGeneId":4004},{"hugoGeneSymbol":"LMO2","entrezGeneId":4005},{"hugoGeneSymbol":"LMO3","entrezGeneId":55885},{"hugoGeneSymbol":"LMO4","entrezGeneId":8543},{"hugoGeneSymbol":"LMO7","entrezGeneId":4008},{"hugoGeneSymbol":"LMO7-AS1","entrezGeneId":101927155},{"hugoGeneSymbol":"LMO7DN","entrezGeneId":729420},{"hugoGeneSymbol":"LMO7DN-IT1","entrezGeneId":104326189},{"hugoGeneSymbol":"LMOD1","entrezGeneId":25802},{"hugoGeneSymbol":"LMOD2","entrezGeneId":442721},{"hugoGeneSymbol":"LMOD3","entrezGeneId":56203},{"hugoGeneSymbol":"LMPH1B","entrezGeneId":100188865},{"hugoGeneSymbol":"LMTK2","entrezGeneId":22853},{"hugoGeneSymbol":"LMTK3","entrezGeneId":114783},{"hugoGeneSymbol":"LMX1A","entrezGeneId":4009},{"hugoGeneSymbol":"LMX1B","entrezGeneId":4010},{"hugoGeneSymbol":"LNCPRESS1","entrezGeneId":101927721},{"hugoGeneSymbol":"LNCPRESS2","entrezGeneId":101929194},{"hugoGeneSymbol":"LNCR1","entrezGeneId":450093},{"hugoGeneSymbol":"LNCR3","entrezGeneId":100271687},{"hugoGeneSymbol":"LNCR4","entrezGeneId":100271693},{"hugoGeneSymbol":"LNCR5","entrezGeneId":100682395},{"hugoGeneSymbol":"LNCRI","entrezGeneId":401296},{"hugoGeneSymbol":"LNCSRLR","entrezGeneId":109729161},{"hugoGeneSymbol":"LNP1","entrezGeneId":348801},{"hugoGeneSymbol":"LNPEP","entrezGeneId":4012},{"hugoGeneSymbol":"LNPK","entrezGeneId":80856},{"hugoGeneSymbol":"LNX1","entrezGeneId":84708},{"hugoGeneSymbol":"LNX1-AS1","entrezGeneId":100873939},{"hugoGeneSymbol":"LNX1-AS2","entrezGeneId":100873955},{"hugoGeneSymbol":"LNX2","entrezGeneId":222484},{"hugoGeneSymbol":"LOAS","entrezGeneId":100188775},{"hugoGeneSymbol":"LOC100037267","entrezGeneId":100037267},{"hugoGeneSymbol":"LOC100049716","entrezGeneId":100049716},{"hugoGeneSymbol":"LOC100101126","entrezGeneId":100101126},{"hugoGeneSymbol":"LOC100101127","entrezGeneId":100101127},{"hugoGeneSymbol":"LOC100101148","entrezGeneId":100101148},{"hugoGeneSymbol":"LOC100101246","entrezGeneId":100101246},{"hugoGeneSymbol":"LOC100101247","entrezGeneId":100101247},{"hugoGeneSymbol":"LOC100101478","entrezGeneId":100101478},{"hugoGeneSymbol":"LOC100101483","entrezGeneId":100101483},{"hugoGeneSymbol":"LOC100113374","entrezGeneId":100113374},{"hugoGeneSymbol":"LOC100113375","entrezGeneId":100113375},{"hugoGeneSymbol":"LOC100113397","entrezGeneId":100113397},{"hugoGeneSymbol":"LOC100124334","entrezGeneId":100124334},{"hugoGeneSymbol":"LOC100124373","entrezGeneId":100124373},{"hugoGeneSymbol":"LOC100124401","entrezGeneId":100124401},{"hugoGeneSymbol":"LOC100124402","entrezGeneId":100124402},{"hugoGeneSymbol":"LOC100125392","entrezGeneId":100125392},{"hugoGeneSymbol":"LOC100125393","entrezGeneId":100125393},{"hugoGeneSymbol":"LOC100125409","entrezGeneId":100125409},{"hugoGeneSymbol":"LOC100126447","entrezGeneId":100126447},{"hugoGeneSymbol":"LOC100126584","entrezGeneId":100126584},{"hugoGeneSymbol":"LOC100126784","entrezGeneId":100126784},{"hugoGeneSymbol":"LOC100126822","entrezGeneId":100126822},{"hugoGeneSymbol":"LOC100127892","entrezGeneId":100127892},{"hugoGeneSymbol":"LOC100127900","entrezGeneId":100127900},{"hugoGeneSymbol":"LOC100127903","entrezGeneId":100127903},{"hugoGeneSymbol":"LOC100127912","entrezGeneId":100127912},{"hugoGeneSymbol":"LOC100127917","entrezGeneId":100127917},{"hugoGeneSymbol":"LOC100127919","entrezGeneId":100127919},{"hugoGeneSymbol":"LOC100127934","entrezGeneId":100127934},{"hugoGeneSymbol":"LOC100127938","entrezGeneId":100127938},{"hugoGeneSymbol":"LOC100127954","entrezGeneId":100127954},{"hugoGeneSymbol":"LOC100127955","entrezGeneId":100127955},{"hugoGeneSymbol":"LOC100127962","entrezGeneId":100127962},{"hugoGeneSymbol":"LOC100127965","entrezGeneId":100127965},{"hugoGeneSymbol":"LOC100127978","entrezGeneId":100127978},{"hugoGeneSymbol":"LOC100127981","entrezGeneId":100127981},{"hugoGeneSymbol":"LOC100127982","entrezGeneId":100127982},{"hugoGeneSymbol":"LOC100127986","entrezGeneId":100127986},{"hugoGeneSymbol":"LOC100128002","entrezGeneId":100128002},{"hugoGeneSymbol":"LOC100128006","entrezGeneId":100128006},{"hugoGeneSymbol":"LOC100128007","entrezGeneId":100128007},{"hugoGeneSymbol":"LOC100128022","entrezGeneId":100128022},{"hugoGeneSymbol":"LOC100128027","entrezGeneId":100128027},{"hugoGeneSymbol":"LOC100128048","entrezGeneId":100128048},{"hugoGeneSymbol":"LOC100128050","entrezGeneId":100128050},{"hugoGeneSymbol":"LOC100128052","entrezGeneId":100128052},{"hugoGeneSymbol":"LOC100128056","entrezGeneId":100128056},{"hugoGeneSymbol":"LOC100128059","entrezGeneId":100128059},{"hugoGeneSymbol":"LOC100128076","entrezGeneId":100128076},{"hugoGeneSymbol":"LOC100128078","entrezGeneId":100128078},{"hugoGeneSymbol":"LOC100128079","entrezGeneId":100128079},{"hugoGeneSymbol":"LOC100128086","entrezGeneId":100128086},{"hugoGeneSymbol":"LOC100128091","entrezGeneId":100128091},{"hugoGeneSymbol":"LOC100128093","entrezGeneId":100128093},{"hugoGeneSymbol":"LOC100128108","entrezGeneId":100128108},{"hugoGeneSymbol":"LOC100128121","entrezGeneId":100128121},{"hugoGeneSymbol":"LOC100128122","entrezGeneId":100128122},{"hugoGeneSymbol":"LOC100128144","entrezGeneId":100128144},{"hugoGeneSymbol":"LOC100128164","entrezGeneId":100128164},{"hugoGeneSymbol":"LOC100128171","entrezGeneId":100128171},{"hugoGeneSymbol":"LOC100128210","entrezGeneId":100128210},{"hugoGeneSymbol":"LOC100128238","entrezGeneId":100128238},{"hugoGeneSymbol":"LOC100128239","entrezGeneId":100128239},{"hugoGeneSymbol":"LOC100128242","entrezGeneId":100128242},{"hugoGeneSymbol":"LOC100128248","entrezGeneId":100128248},{"hugoGeneSymbol":"LOC100128253","entrezGeneId":100128253},{"hugoGeneSymbol":"LOC100128268","entrezGeneId":100128268},{"hugoGeneSymbol":"LOC100128276","entrezGeneId":100128276},{"hugoGeneSymbol":"LOC100128284","entrezGeneId":100128284},{"hugoGeneSymbol":"LOC100128288","entrezGeneId":100128288},{"hugoGeneSymbol":"LOC100128293","entrezGeneId":100128293},{"hugoGeneSymbol":"LOC100128297","entrezGeneId":100128297},{"hugoGeneSymbol":"LOC100128310","entrezGeneId":100128310},{"hugoGeneSymbol":"LOC100128317","entrezGeneId":100128317},{"hugoGeneSymbol":"LOC100128325","entrezGeneId":100128325},{"hugoGeneSymbol":"LOC100128334","entrezGeneId":100128334},{"hugoGeneSymbol":"LOC100128335","entrezGeneId":100128335},{"hugoGeneSymbol":"LOC100128340","entrezGeneId":100128340},{"hugoGeneSymbol":"LOC100128345","entrezGeneId":100128345},{"hugoGeneSymbol":"LOC100128355","entrezGeneId":100128355},{"hugoGeneSymbol":"LOC100128360","entrezGeneId":100128360},{"hugoGeneSymbol":"LOC100128361","entrezGeneId":100128361},{"hugoGeneSymbol":"LOC100128362","entrezGeneId":100128362},{"hugoGeneSymbol":"LOC100128365","entrezGeneId":100128365},{"hugoGeneSymbol":"LOC100128373","entrezGeneId":100128373},{"hugoGeneSymbol":"LOC100128379","entrezGeneId":100128379},{"hugoGeneSymbol":"LOC100128386","entrezGeneId":100128386},{"hugoGeneSymbol":"LOC100128398","entrezGeneId":100128398},{"hugoGeneSymbol":"LOC100128407","entrezGeneId":100128407},{"hugoGeneSymbol":"LOC100128428","entrezGeneId":100128428},{"hugoGeneSymbol":"LOC100128441","entrezGeneId":100128441},{"hugoGeneSymbol":"LOC100128442","entrezGeneId":100128442},{"hugoGeneSymbol":"LOC100128454","entrezGeneId":100128454},{"hugoGeneSymbol":"LOC100128464","entrezGeneId":100128464},{"hugoGeneSymbol":"LOC100128467","entrezGeneId":100128467},{"hugoGeneSymbol":"LOC100128494","entrezGeneId":100128494},{"hugoGeneSymbol":"LOC100128497","entrezGeneId":100128497},{"hugoGeneSymbol":"LOC100128523","entrezGeneId":100128523},{"hugoGeneSymbol":"LOC100128531","entrezGeneId":100128531},{"hugoGeneSymbol":"LOC100128540","entrezGeneId":100128540},{"hugoGeneSymbol":"LOC100128546","entrezGeneId":100128546},{"hugoGeneSymbol":"LOC100128548","entrezGeneId":100128548},{"hugoGeneSymbol":"LOC100128568","entrezGeneId":100128568},{"hugoGeneSymbol":"LOC100128573","entrezGeneId":100128573},{"hugoGeneSymbol":"LOC100128588","entrezGeneId":100128588},{"hugoGeneSymbol":"LOC100128592","entrezGeneId":100128592},{"hugoGeneSymbol":"LOC100128593","entrezGeneId":100128593},{"hugoGeneSymbol":"LOC100128594","entrezGeneId":100128594},{"hugoGeneSymbol":"LOC100128601","entrezGeneId":100128601},{"hugoGeneSymbol":"LOC100128610","entrezGeneId":100128610},{"hugoGeneSymbol":"LOC100128622","entrezGeneId":100128622},{"hugoGeneSymbol":"LOC100128653","entrezGeneId":100128653},{"hugoGeneSymbol":"LOC100128655","entrezGeneId":100128655},{"hugoGeneSymbol":"LOC100128673","entrezGeneId":100128673},{"hugoGeneSymbol":"LOC100128674","entrezGeneId":100128674},{"hugoGeneSymbol":"LOC100128676","entrezGeneId":100128676},{"hugoGeneSymbol":"LOC100128686","entrezGeneId":100128686},{"hugoGeneSymbol":"LOC100128713","entrezGeneId":100128713},{"hugoGeneSymbol":"LOC100128721","entrezGeneId":100128721},{"hugoGeneSymbol":"LOC100128738","entrezGeneId":100128738},{"hugoGeneSymbol":"LOC100128739","entrezGeneId":100128739},{"hugoGeneSymbol":"LOC100128759","entrezGeneId":100128759},{"hugoGeneSymbol":"LOC100128762","entrezGeneId":100128762},{"hugoGeneSymbol":"LOC100128770","entrezGeneId":100128770},{"hugoGeneSymbol":"LOC100128772","entrezGeneId":100128772},{"hugoGeneSymbol":"LOC100128775","entrezGeneId":100128775},{"hugoGeneSymbol":"LOC100128776","entrezGeneId":100128776},{"hugoGeneSymbol":"LOC100128800","entrezGeneId":100128800},{"hugoGeneSymbol":"LOC100128803","entrezGeneId":100128803},{"hugoGeneSymbol":"LOC100128808","entrezGeneId":100128808},{"hugoGeneSymbol":"LOC100128833","entrezGeneId":100128833},{"hugoGeneSymbol":"LOC100128865","entrezGeneId":100128865},{"hugoGeneSymbol":"LOC100128882","entrezGeneId":100128882},{"hugoGeneSymbol":"LOC100128885","entrezGeneId":100128885},{"hugoGeneSymbol":"LOC100128898","entrezGeneId":100128898},{"hugoGeneSymbol":"LOC100128906","entrezGeneId":100128906},{"hugoGeneSymbol":"LOC100128926","entrezGeneId":100128926},{"hugoGeneSymbol":"LOC100128929","entrezGeneId":100128929},{"hugoGeneSymbol":"LOC100128939","entrezGeneId":100128939},{"hugoGeneSymbol":"LOC100128948","entrezGeneId":100128948},{"hugoGeneSymbol":"LOC100128958","entrezGeneId":100128958},{"hugoGeneSymbol":"LOC100128964","entrezGeneId":100128964},{"hugoGeneSymbol":"LOC100128966","entrezGeneId":100128966},{"hugoGeneSymbol":"LOC100128983","entrezGeneId":100128983},{"hugoGeneSymbol":"LOC100128988","entrezGeneId":100128988},{"hugoGeneSymbol":"LOC100128993","entrezGeneId":100128993},{"hugoGeneSymbol":"LOC100129001","entrezGeneId":100129001},{"hugoGeneSymbol":"LOC100129027","entrezGeneId":100129027},{"hugoGeneSymbol":"LOC100129034","entrezGeneId":100129034},{"hugoGeneSymbol":"LOC100129037","entrezGeneId":100129037},{"hugoGeneSymbol":"LOC100129046","entrezGeneId":100129046},{"hugoGeneSymbol":"LOC100129052","entrezGeneId":100129052},{"hugoGeneSymbol":"LOC100129055","entrezGeneId":100129055},{"hugoGeneSymbol":"LOC100129078","entrezGeneId":100129078},{"hugoGeneSymbol":"LOC100129083","entrezGeneId":100129083},{"hugoGeneSymbol":"LOC100129096","entrezGeneId":100129096},{"hugoGeneSymbol":"LOC100129098","entrezGeneId":100129098},{"hugoGeneSymbol":"LOC100129099","entrezGeneId":100129099},{"hugoGeneSymbol":"LOC100129100","entrezGeneId":100129100},{"hugoGeneSymbol":"LOC100129108","entrezGeneId":100129108},{"hugoGeneSymbol":"LOC100129118","entrezGeneId":100129118},{"hugoGeneSymbol":"LOC100129129","entrezGeneId":100129129},{"hugoGeneSymbol":"LOC100129130","entrezGeneId":100129130},{"hugoGeneSymbol":"LOC100129133","entrezGeneId":100129133},{"hugoGeneSymbol":"LOC100129135","entrezGeneId":100129135},{"hugoGeneSymbol":"LOC100129137","entrezGeneId":100129137},{"hugoGeneSymbol":"LOC100129138","entrezGeneId":100129138},{"hugoGeneSymbol":"LOC100129140","entrezGeneId":100129140},{"hugoGeneSymbol":"LOC100129144","entrezGeneId":100129144},{"hugoGeneSymbol":"LOC100129148","entrezGeneId":100129148},{"hugoGeneSymbol":"LOC100129155","entrezGeneId":100129155},{"hugoGeneSymbol":"LOC100129168","entrezGeneId":100129168},{"hugoGeneSymbol":"LOC100129175","entrezGeneId":100129175},{"hugoGeneSymbol":"LOC100129184","entrezGeneId":100129184},{"hugoGeneSymbol":"LOC100129202","entrezGeneId":100129202},{"hugoGeneSymbol":"LOC100129203","entrezGeneId":100129203},{"hugoGeneSymbol":"LOC100129205","entrezGeneId":100129205},{"hugoGeneSymbol":"LOC100129215","entrezGeneId":100129215},{"hugoGeneSymbol":"LOC100129224","entrezGeneId":100129224},{"hugoGeneSymbol":"LOC100129245","entrezGeneId":100129245},{"hugoGeneSymbol":"LOC100129254","entrezGeneId":100129254},{"hugoGeneSymbol":"LOC100129262","entrezGeneId":100129262},{"hugoGeneSymbol":"LOC100129265","entrezGeneId":100129265},{"hugoGeneSymbol":"LOC100129274","entrezGeneId":100129274},{"hugoGeneSymbol":"LOC100129276","entrezGeneId":100129276},{"hugoGeneSymbol":"LOC100129291","entrezGeneId":100129291},{"hugoGeneSymbol":"LOC100129293","entrezGeneId":100129293},{"hugoGeneSymbol":"LOC100129297","entrezGeneId":100129297},{"hugoGeneSymbol":"LOC100129307","entrezGeneId":100129307},{"hugoGeneSymbol":"LOC100129316","entrezGeneId":100129316},{"hugoGeneSymbol":"LOC100129321","entrezGeneId":100129321},{"hugoGeneSymbol":"LOC100129340","entrezGeneId":100129340},{"hugoGeneSymbol":"LOC100129344","entrezGeneId":100129344},{"hugoGeneSymbol":"LOC100129352","entrezGeneId":100129352},{"hugoGeneSymbol":"LOC100129358","entrezGeneId":100129358},{"hugoGeneSymbol":"LOC100129367","entrezGeneId":100129367},{"hugoGeneSymbol":"LOC100129375","entrezGeneId":100129375},{"hugoGeneSymbol":"LOC100129381","entrezGeneId":100129381},{"hugoGeneSymbol":"LOC100129384","entrezGeneId":100129384},{"hugoGeneSymbol":"LOC100129391","entrezGeneId":100129391},{"hugoGeneSymbol":"LOC100129404","entrezGeneId":100129404},{"hugoGeneSymbol":"LOC100129422","entrezGeneId":100129422},{"hugoGeneSymbol":"LOC100129434","entrezGeneId":100129434},{"hugoGeneSymbol":"LOC100129455","entrezGeneId":100129455},{"hugoGeneSymbol":"LOC100129456","entrezGeneId":100129456},{"hugoGeneSymbol":"LOC100129457","entrezGeneId":100129457},{"hugoGeneSymbol":"LOC100129471","entrezGeneId":100129471},{"hugoGeneSymbol":"LOC100129478","entrezGeneId":100129478},{"hugoGeneSymbol":"LOC100129483","entrezGeneId":100129483},{"hugoGeneSymbol":"LOC100129484","entrezGeneId":100129484},{"hugoGeneSymbol":"LOC100129492","entrezGeneId":100129492},{"hugoGeneSymbol":"LOC100129497","entrezGeneId":100129497},{"hugoGeneSymbol":"LOC100129503","entrezGeneId":100129503},{"hugoGeneSymbol":"LOC100129526","entrezGeneId":100129526},{"hugoGeneSymbol":"LOC100129527","entrezGeneId":100129527},{"hugoGeneSymbol":"LOC100129534","entrezGeneId":100129534},{"hugoGeneSymbol":"LOC100129540","entrezGeneId":100129540},{"hugoGeneSymbol":"LOC100129554","entrezGeneId":100129554},{"hugoGeneSymbol":"LOC100129573","entrezGeneId":100129573},{"hugoGeneSymbol":"LOC100129574","entrezGeneId":100129574},{"hugoGeneSymbol":"LOC100129577","entrezGeneId":100129577},{"hugoGeneSymbol":"LOC100129586","entrezGeneId":100129586},{"hugoGeneSymbol":"LOC100129589","entrezGeneId":100129589},{"hugoGeneSymbol":"LOC100129601","entrezGeneId":100129601},{"hugoGeneSymbol":"LOC100129603","entrezGeneId":100129603},{"hugoGeneSymbol":"LOC100129607","entrezGeneId":100129607},{"hugoGeneSymbol":"LOC100129616","entrezGeneId":100129616},{"hugoGeneSymbol":"LOC100129617","entrezGeneId":100129617},{"hugoGeneSymbol":"LOC100129620","entrezGeneId":100129620},{"hugoGeneSymbol":"LOC100129626","entrezGeneId":100129626},{"hugoGeneSymbol":"LOC100129636","entrezGeneId":100129636},{"hugoGeneSymbol":"LOC100129646","entrezGeneId":100129646},{"hugoGeneSymbol":"LOC100129661","entrezGeneId":100129661},{"hugoGeneSymbol":"LOC100129667","entrezGeneId":100129667},{"hugoGeneSymbol":"LOC100129672","entrezGeneId":100129672},{"hugoGeneSymbol":"LOC100129682","entrezGeneId":100129682},{"hugoGeneSymbol":"LOC100129683","entrezGeneId":100129683},{"hugoGeneSymbol":"LOC100129687","entrezGeneId":100129687},{"hugoGeneSymbol":"LOC100129693","entrezGeneId":100129693},{"hugoGeneSymbol":"LOC100129697","entrezGeneId":100129697},{"hugoGeneSymbol":"LOC100129707","entrezGeneId":100129707},{"hugoGeneSymbol":"LOC100129724","entrezGeneId":100129724},{"hugoGeneSymbol":"LOC100129725","entrezGeneId":100129725},{"hugoGeneSymbol":"LOC100129728","entrezGeneId":100129728},{"hugoGeneSymbol":"LOC100129734","entrezGeneId":100129734},{"hugoGeneSymbol":"LOC100129774","entrezGeneId":100129774},{"hugoGeneSymbol":"LOC100129776","entrezGeneId":100129776},{"hugoGeneSymbol":"LOC100129779","entrezGeneId":100129779},{"hugoGeneSymbol":"LOC100129818","entrezGeneId":100129818},{"hugoGeneSymbol":"LOC100129830","entrezGeneId":100129830},{"hugoGeneSymbol":"LOC100129843","entrezGeneId":100129843},{"hugoGeneSymbol":"LOC100129844","entrezGeneId":100129844},{"hugoGeneSymbol":"LOC100129847","entrezGeneId":100129847},{"hugoGeneSymbol":"LOC100129851","entrezGeneId":100129851},{"hugoGeneSymbol":"LOC100129854","entrezGeneId":100129854},{"hugoGeneSymbol":"LOC100129878","entrezGeneId":100129878},{"hugoGeneSymbol":"LOC100129917","entrezGeneId":100129917},{"hugoGeneSymbol":"LOC100129923","entrezGeneId":100129923},{"hugoGeneSymbol":"LOC100129931","entrezGeneId":100129931},{"hugoGeneSymbol":"LOC100129935","entrezGeneId":100129935},{"hugoGeneSymbol":"LOC100129940","entrezGeneId":100129940},{"hugoGeneSymbol":"LOC100129942","entrezGeneId":100129942},{"hugoGeneSymbol":"LOC100129947","entrezGeneId":100129947},{"hugoGeneSymbol":"LOC100129948","entrezGeneId":100129948},{"hugoGeneSymbol":"LOC100129949","entrezGeneId":100129949},{"hugoGeneSymbol":"LOC100129955","entrezGeneId":100129955},{"hugoGeneSymbol":"LOC100129956","entrezGeneId":100129956},{"hugoGeneSymbol":"LOC100129957","entrezGeneId":100129957},{"hugoGeneSymbol":"LOC100129966","entrezGeneId":100129966},{"hugoGeneSymbol":"LOC100129989","entrezGeneId":100129989},{"hugoGeneSymbol":"LOC100129996","entrezGeneId":100129996},{"hugoGeneSymbol":"LOC100129997","entrezGeneId":100129997},{"hugoGeneSymbol":"LOC100130001","entrezGeneId":100130001},{"hugoGeneSymbol":"LOC100130018","entrezGeneId":100130018},{"hugoGeneSymbol":"LOC100130026","entrezGeneId":100130026},{"hugoGeneSymbol":"LOC100130027","entrezGeneId":100130027},{"hugoGeneSymbol":"LOC100130035","entrezGeneId":100130035},{"hugoGeneSymbol":"LOC100130044","entrezGeneId":100130044},{"hugoGeneSymbol":"LOC100130048","entrezGeneId":100130048},{"hugoGeneSymbol":"LOC100130049","entrezGeneId":100130049},{"hugoGeneSymbol":"LOC100130052","entrezGeneId":100130052},{"hugoGeneSymbol":"LOC100130063","entrezGeneId":100130063},{"hugoGeneSymbol":"LOC100130072","entrezGeneId":100130072},{"hugoGeneSymbol":"LOC100130075","entrezGeneId":100130075},{"hugoGeneSymbol":"LOC100130088","entrezGeneId":100130088},{"hugoGeneSymbol":"LOC100130102","entrezGeneId":100130102},{"hugoGeneSymbol":"LOC100130111","entrezGeneId":100130111},{"hugoGeneSymbol":"LOC100130114","entrezGeneId":100130114},{"hugoGeneSymbol":"LOC100130121","entrezGeneId":100130121},{"hugoGeneSymbol":"LOC100130134","entrezGeneId":100130134},{"hugoGeneSymbol":"LOC100130137","entrezGeneId":100130137},{"hugoGeneSymbol":"LOC100130170","entrezGeneId":100130170},{"hugoGeneSymbol":"LOC100130171","entrezGeneId":100130171},{"hugoGeneSymbol":"LOC100130172","entrezGeneId":100130172},{"hugoGeneSymbol":"LOC100130176","entrezGeneId":100130176},{"hugoGeneSymbol":"LOC100130177","entrezGeneId":100130177},{"hugoGeneSymbol":"LOC100130180","entrezGeneId":100130180},{"hugoGeneSymbol":"LOC100130203","entrezGeneId":100130203},{"hugoGeneSymbol":"LOC100130207","entrezGeneId":100130207},{"hugoGeneSymbol":"LOC100130209","entrezGeneId":100130209},{"hugoGeneSymbol":"LOC100130210","entrezGeneId":100130210},{"hugoGeneSymbol":"LOC100130238","entrezGeneId":100130238},{"hugoGeneSymbol":"LOC100130256","entrezGeneId":100130256},{"hugoGeneSymbol":"LOC100130264","entrezGeneId":100130264},{"hugoGeneSymbol":"LOC100130268","entrezGeneId":100130268},{"hugoGeneSymbol":"LOC100130270","entrezGeneId":100130270},{"hugoGeneSymbol":"LOC100130283","entrezGeneId":100130283},{"hugoGeneSymbol":"LOC100130298","entrezGeneId":100130298},{"hugoGeneSymbol":"LOC100130299","entrezGeneId":100130299},{"hugoGeneSymbol":"LOC100130321","entrezGeneId":100130321},{"hugoGeneSymbol":"LOC100130326","entrezGeneId":100130326},{"hugoGeneSymbol":"LOC100130329","entrezGeneId":100130329},{"hugoGeneSymbol":"LOC100130331","entrezGeneId":100130331},{"hugoGeneSymbol":"LOC100130345","entrezGeneId":100130345},{"hugoGeneSymbol":"LOC100130353","entrezGeneId":100130353},{"hugoGeneSymbol":"LOC100130357","entrezGeneId":100130357},{"hugoGeneSymbol":"LOC100130370","entrezGeneId":100130370},{"hugoGeneSymbol":"LOC100130373","entrezGeneId":100130373},{"hugoGeneSymbol":"LOC100130394","entrezGeneId":100130394},{"hugoGeneSymbol":"LOC100130403","entrezGeneId":100130403},{"hugoGeneSymbol":"LOC100130417","entrezGeneId":100130417},{"hugoGeneSymbol":"LOC100130437","entrezGeneId":100130437},{"hugoGeneSymbol":"LOC100130449","entrezGeneId":100130449},{"hugoGeneSymbol":"LOC100130451","entrezGeneId":100130451},{"hugoGeneSymbol":"LOC100130452","entrezGeneId":100130452},{"hugoGeneSymbol":"LOC100130455","entrezGeneId":100130455},{"hugoGeneSymbol":"LOC100130459","entrezGeneId":100130459},{"hugoGeneSymbol":"LOC100130476","entrezGeneId":100130476},{"hugoGeneSymbol":"LOC100130485","entrezGeneId":100130485},{"hugoGeneSymbol":"LOC100130487","entrezGeneId":100130487},{"hugoGeneSymbol":"LOC100130488","entrezGeneId":100130488},{"hugoGeneSymbol":"LOC100130497","entrezGeneId":100130497},{"hugoGeneSymbol":"LOC100130500","entrezGeneId":100130500},{"hugoGeneSymbol":"LOC100130531","entrezGeneId":100130531},{"hugoGeneSymbol":"LOC100130532","entrezGeneId":100130532},{"hugoGeneSymbol":"LOC100130548","entrezGeneId":100130548},{"hugoGeneSymbol":"LOC100130550","entrezGeneId":100130550},{"hugoGeneSymbol":"LOC100130571","entrezGeneId":100130571},{"hugoGeneSymbol":"LOC100130574","entrezGeneId":100130574},{"hugoGeneSymbol":"LOC100130582","entrezGeneId":100130582},{"hugoGeneSymbol":"LOC100130587","entrezGeneId":100130587},{"hugoGeneSymbol":"LOC100130602","entrezGeneId":100130602},{"hugoGeneSymbol":"LOC100130607","entrezGeneId":100130607},{"hugoGeneSymbol":"LOC100130612","entrezGeneId":100130612},{"hugoGeneSymbol":"LOC100130618","entrezGeneId":100130618},{"hugoGeneSymbol":"LOC100130620","entrezGeneId":100130620},{"hugoGeneSymbol":"LOC100130632","entrezGeneId":100130632},{"hugoGeneSymbol":"LOC100130639","entrezGeneId":100130639},{"hugoGeneSymbol":"LOC100130649","entrezGeneId":100130649},{"hugoGeneSymbol":"LOC100130664","entrezGeneId":100130664},{"hugoGeneSymbol":"LOC100130673","entrezGeneId":100130673},{"hugoGeneSymbol":"LOC100130674","entrezGeneId":100130674},{"hugoGeneSymbol":"LOC100130680","entrezGeneId":100130680},{"hugoGeneSymbol":"LOC100130682","entrezGeneId":100130682},{"hugoGeneSymbol":"LOC100130683","entrezGeneId":100130683},{"hugoGeneSymbol":"LOC100130684","entrezGeneId":100130684},{"hugoGeneSymbol":"LOC100130691","entrezGeneId":100130691},{"hugoGeneSymbol":"LOC100130698","entrezGeneId":100130698},{"hugoGeneSymbol":"LOC100130701","entrezGeneId":100130701},{"hugoGeneSymbol":"LOC100130704","entrezGeneId":100130704},{"hugoGeneSymbol":"LOC100130705","entrezGeneId":100130705},{"hugoGeneSymbol":"LOC100130714","entrezGeneId":100130714},{"hugoGeneSymbol":"LOC100130724","entrezGeneId":100130724},{"hugoGeneSymbol":"LOC100130731","entrezGeneId":100130731},{"hugoGeneSymbol":"LOC100130744","entrezGeneId":100130744},{"hugoGeneSymbol":"LOC100130746","entrezGeneId":100130746},{"hugoGeneSymbol":"LOC100130747","entrezGeneId":100130747},{"hugoGeneSymbol":"LOC100130748","entrezGeneId":100130748},{"hugoGeneSymbol":"LOC100130760","entrezGeneId":100130760},{"hugoGeneSymbol":"LOC100130766","entrezGeneId":100130766},{"hugoGeneSymbol":"LOC100130778","entrezGeneId":100130778},{"hugoGeneSymbol":"LOC100130783","entrezGeneId":100130783},{"hugoGeneSymbol":"LOC100130801","entrezGeneId":100130801},{"hugoGeneSymbol":"LOC100130841","entrezGeneId":100130841},{"hugoGeneSymbol":"LOC100130842","entrezGeneId":100130842},{"hugoGeneSymbol":"LOC100130849","entrezGeneId":100130849},{"hugoGeneSymbol":"LOC100130854","entrezGeneId":100130854},{"hugoGeneSymbol":"LOC100130861","entrezGeneId":100130861},{"hugoGeneSymbol":"LOC100130872","entrezGeneId":100130872},{"hugoGeneSymbol":"LOC100130880","entrezGeneId":100130880},{"hugoGeneSymbol":"LOC100130881","entrezGeneId":100130881},{"hugoGeneSymbol":"LOC100130891","entrezGeneId":100130891},{"hugoGeneSymbol":"LOC100130899","entrezGeneId":100130899},{"hugoGeneSymbol":"LOC100130909","entrezGeneId":100130909},{"hugoGeneSymbol":"LOC100130950","entrezGeneId":100130950},{"hugoGeneSymbol":"LOC100130964","entrezGeneId":100130964},{"hugoGeneSymbol":"LOC100130987","entrezGeneId":100130987},{"hugoGeneSymbol":"LOC100130990","entrezGeneId":100130990},{"hugoGeneSymbol":"LOC100130992","entrezGeneId":100130992},{"hugoGeneSymbol":"LOC100131011","entrezGeneId":100131011},{"hugoGeneSymbol":"LOC100131013","entrezGeneId":100131013},{"hugoGeneSymbol":"LOC100131029","entrezGeneId":100131029},{"hugoGeneSymbol":"LOC100131038","entrezGeneId":100131038},{"hugoGeneSymbol":"LOC100131041","entrezGeneId":100131041},{"hugoGeneSymbol":"LOC100131047","entrezGeneId":100131047},{"hugoGeneSymbol":"LOC100131069","entrezGeneId":100131069},{"hugoGeneSymbol":"LOC100131072","entrezGeneId":100131072},{"hugoGeneSymbol":"LOC100131078","entrezGeneId":100131078},{"hugoGeneSymbol":"LOC100131080","entrezGeneId":100131080},{"hugoGeneSymbol":"LOC100131107","entrezGeneId":100131107},{"hugoGeneSymbol":"LOC100131114","entrezGeneId":100131114},{"hugoGeneSymbol":"LOC100131124","entrezGeneId":100131124},{"hugoGeneSymbol":"LOC100131126","entrezGeneId":100131126},{"hugoGeneSymbol":"LOC100131127","entrezGeneId":100131127},{"hugoGeneSymbol":"LOC100131146","entrezGeneId":100131146},{"hugoGeneSymbol":"LOC100131158","entrezGeneId":100131158},{"hugoGeneSymbol":"LOC100131159","entrezGeneId":100131159},{"hugoGeneSymbol":"LOC100131200","entrezGeneId":100131200},{"hugoGeneSymbol":"LOC100131216","entrezGeneId":100131216},{"hugoGeneSymbol":"LOC100131223","entrezGeneId":100131223},{"hugoGeneSymbol":"LOC100131233","entrezGeneId":100131233},{"hugoGeneSymbol":"LOC100131241","entrezGeneId":100131241},{"hugoGeneSymbol":"LOC100131254","entrezGeneId":100131254},{"hugoGeneSymbol":"LOC100131257","entrezGeneId":100131257},{"hugoGeneSymbol":"LOC100131264","entrezGeneId":100131264},{"hugoGeneSymbol":"LOC100131280","entrezGeneId":100131280},{"hugoGeneSymbol":"LOC100131284","entrezGeneId":100131284},{"hugoGeneSymbol":"LOC100131289","entrezGeneId":100131289},{"hugoGeneSymbol":"LOC100131294","entrezGeneId":100131294},{"hugoGeneSymbol":"LOC100131315","entrezGeneId":100131315},{"hugoGeneSymbol":"LOC100131340","entrezGeneId":100131340},{"hugoGeneSymbol":"LOC100131347","entrezGeneId":100131347},{"hugoGeneSymbol":"LOC100131348","entrezGeneId":100131348},{"hugoGeneSymbol":"LOC100131360","entrezGeneId":100131360},{"hugoGeneSymbol":"LOC100131395","entrezGeneId":100131395},{"hugoGeneSymbol":"LOC100131411","entrezGeneId":100131411},{"hugoGeneSymbol":"LOC100131425","entrezGeneId":100131425},{"hugoGeneSymbol":"LOC100131429","entrezGeneId":100131429},{"hugoGeneSymbol":"LOC100131441","entrezGeneId":100131441},{"hugoGeneSymbol":"LOC100131448","entrezGeneId":100131448},{"hugoGeneSymbol":"LOC100131465","entrezGeneId":100131465},{"hugoGeneSymbol":"LOC100131471","entrezGeneId":100131471},{"hugoGeneSymbol":"LOC100131472","entrezGeneId":100131472},{"hugoGeneSymbol":"LOC100131479","entrezGeneId":100131479},{"hugoGeneSymbol":"LOC100131482","entrezGeneId":100131482},{"hugoGeneSymbol":"LOC100131495","entrezGeneId":100131495},{"hugoGeneSymbol":"LOC100131496","entrezGeneId":100131496},{"hugoGeneSymbol":"LOC100131520","entrezGeneId":100131520},{"hugoGeneSymbol":"LOC100131529","entrezGeneId":100131529},{"hugoGeneSymbol":"LOC100131532","entrezGeneId":100131532},{"hugoGeneSymbol":"LOC100131533","entrezGeneId":100131533},{"hugoGeneSymbol":"LOC100131536","entrezGeneId":100131536},{"hugoGeneSymbol":"LOC100131553","entrezGeneId":100131553},{"hugoGeneSymbol":"LOC100131556","entrezGeneId":100131556},{"hugoGeneSymbol":"LOC100131557","entrezGeneId":100131557},{"hugoGeneSymbol":"LOC100131562","entrezGeneId":100131562},{"hugoGeneSymbol":"LOC100131593","entrezGeneId":100131593},{"hugoGeneSymbol":"LOC100131597","entrezGeneId":100131597},{"hugoGeneSymbol":"LOC100131604","entrezGeneId":100131604},{"hugoGeneSymbol":"LOC100131617","entrezGeneId":100131617},{"hugoGeneSymbol":"LOC100131625","entrezGeneId":100131625},{"hugoGeneSymbol":"LOC100131626","entrezGeneId":100131626},{"hugoGeneSymbol":"LOC100131635","entrezGeneId":100131635},{"hugoGeneSymbol":"LOC100131676","entrezGeneId":100131676},{"hugoGeneSymbol":"LOC100131680","entrezGeneId":100131680},{"hugoGeneSymbol":"LOC100131685","entrezGeneId":100131685},{"hugoGeneSymbol":"LOC100131689","entrezGeneId":100131689},{"hugoGeneSymbol":"LOC100131725","entrezGeneId":100131725},{"hugoGeneSymbol":"LOC100131736","entrezGeneId":100131736},{"hugoGeneSymbol":"LOC100131747","entrezGeneId":100131747},{"hugoGeneSymbol":"LOC100131770","entrezGeneId":100131770},{"hugoGeneSymbol":"LOC100131779","entrezGeneId":100131779},{"hugoGeneSymbol":"LOC100131785","entrezGeneId":100131785},{"hugoGeneSymbol":"LOC100131832","entrezGeneId":100131832},{"hugoGeneSymbol":"LOC100131849","entrezGeneId":100131849},{"hugoGeneSymbol":"LOC100131852","entrezGeneId":100131852},{"hugoGeneSymbol":"LOC100131859","entrezGeneId":100131859},{"hugoGeneSymbol":"LOC100131868","entrezGeneId":100131868},{"hugoGeneSymbol":"LOC100131877","entrezGeneId":100131877},{"hugoGeneSymbol":"LOC100131884","entrezGeneId":100131884},{"hugoGeneSymbol":"LOC100131890","entrezGeneId":100131890},{"hugoGeneSymbol":"LOC100131918","entrezGeneId":100131918},{"hugoGeneSymbol":"LOC100131939","entrezGeneId":100131939},{"hugoGeneSymbol":"LOC100131943","entrezGeneId":100131943},{"hugoGeneSymbol":"LOC100131950","entrezGeneId":100131950},{"hugoGeneSymbol":"LOC100131962","entrezGeneId":100131962},{"hugoGeneSymbol":"LOC100131977","entrezGeneId":100131977},{"hugoGeneSymbol":"LOC100132004","entrezGeneId":100132004},{"hugoGeneSymbol":"LOC100132009","entrezGeneId":100132009},{"hugoGeneSymbol":"LOC100132039","entrezGeneId":100132039},{"hugoGeneSymbol":"LOC100132057","entrezGeneId":100132057},{"hugoGeneSymbol":"LOC100132062","entrezGeneId":100132062},{"hugoGeneSymbol":"LOC100132076","entrezGeneId":100132076},{"hugoGeneSymbol":"LOC100132077","entrezGeneId":100132077},{"hugoGeneSymbol":"LOC100132078","entrezGeneId":100132078},{"hugoGeneSymbol":"LOC100132081","entrezGeneId":100132081},{"hugoGeneSymbol":"LOC100132090","entrezGeneId":100132090},{"hugoGeneSymbol":"LOC100132108","entrezGeneId":100132108},{"hugoGeneSymbol":"LOC100132111","entrezGeneId":100132111},{"hugoGeneSymbol":"LOC100132126","entrezGeneId":100132126},{"hugoGeneSymbol":"LOC100132154","entrezGeneId":100132154},{"hugoGeneSymbol":"LOC100132172","entrezGeneId":100132172},{"hugoGeneSymbol":"LOC100132179","entrezGeneId":100132179},{"hugoGeneSymbol":"LOC100132202","entrezGeneId":100132202},{"hugoGeneSymbol":"LOC100132215","entrezGeneId":100132215},{"hugoGeneSymbol":"LOC100132223","entrezGeneId":100132223},{"hugoGeneSymbol":"LOC100132229","entrezGeneId":100132229},{"hugoGeneSymbol":"LOC100132239","entrezGeneId":100132239},{"hugoGeneSymbol":"LOC100132242","entrezGeneId":100132242},{"hugoGeneSymbol":"LOC100132249","entrezGeneId":100132249},{"hugoGeneSymbol":"LOC100132280","entrezGeneId":100132280},{"hugoGeneSymbol":"LOC100132287","entrezGeneId":100132287},{"hugoGeneSymbol":"LOC100132330","entrezGeneId":100132330},{"hugoGeneSymbol":"LOC100132356","entrezGeneId":100132356},{"hugoGeneSymbol":"LOC100132498","entrezGeneId":100132498},{"hugoGeneSymbol":"LOC100132524","entrezGeneId":100132524},{"hugoGeneSymbol":"LOC100132543","entrezGeneId":100132543},{"hugoGeneSymbol":"LOC100132570","entrezGeneId":100132570},{"hugoGeneSymbol":"LOC100132571","entrezGeneId":100132571},{"hugoGeneSymbol":"LOC100132599","entrezGeneId":100132599},{"hugoGeneSymbol":"LOC100132609","entrezGeneId":100132609},{"hugoGeneSymbol":"LOC100132615","entrezGeneId":100132615},{"hugoGeneSymbol":"LOC100132621","entrezGeneId":100132621},{"hugoGeneSymbol":"LOC100132626","entrezGeneId":100132626},{"hugoGeneSymbol":"LOC100132644","entrezGeneId":100132644},{"hugoGeneSymbol":"LOC100132647","entrezGeneId":100132647},{"hugoGeneSymbol":"LOC100132651","entrezGeneId":100132651},{"hugoGeneSymbol":"LOC100132658","entrezGeneId":100132658},{"hugoGeneSymbol":"LOC100132659","entrezGeneId":100132659},{"hugoGeneSymbol":"LOC100132669","entrezGeneId":100132669},{"hugoGeneSymbol":"LOC100132686","entrezGeneId":100132686},{"hugoGeneSymbol":"LOC100132698","entrezGeneId":100132698},{"hugoGeneSymbol":"LOC100132723","entrezGeneId":100132723},{"hugoGeneSymbol":"LOC100132736","entrezGeneId":100132736},{"hugoGeneSymbol":"LOC100132741","entrezGeneId":100132741},{"hugoGeneSymbol":"LOC100132762","entrezGeneId":100132762},{"hugoGeneSymbol":"LOC100132773","entrezGeneId":100132773},{"hugoGeneSymbol":"LOC100132781","entrezGeneId":100132781},{"hugoGeneSymbol":"LOC100132789","entrezGeneId":100132789},{"hugoGeneSymbol":"LOC100132797","entrezGeneId":100132797},{"hugoGeneSymbol":"LOC100132812","entrezGeneId":100132812},{"hugoGeneSymbol":"LOC100132813","entrezGeneId":100132813},{"hugoGeneSymbol":"LOC100132817","entrezGeneId":100132817},{"hugoGeneSymbol":"LOC100132824","entrezGeneId":100132824},{"hugoGeneSymbol":"LOC100132830","entrezGeneId":100132830},{"hugoGeneSymbol":"LOC100132831","entrezGeneId":100132831},{"hugoGeneSymbol":"LOC100132834","entrezGeneId":100132834},{"hugoGeneSymbol":"LOC100132849","entrezGeneId":100132849},{"hugoGeneSymbol":"LOC100132857","entrezGeneId":100132857},{"hugoGeneSymbol":"LOC100132865","entrezGeneId":100132865},{"hugoGeneSymbol":"LOC100132874","entrezGeneId":100132874},{"hugoGeneSymbol":"LOC100132977","entrezGeneId":100132977},{"hugoGeneSymbol":"LOC100133007","entrezGeneId":100133007},{"hugoGeneSymbol":"LOC100133029","entrezGeneId":100133029},{"hugoGeneSymbol":"LOC100133050","entrezGeneId":100133050},{"hugoGeneSymbol":"LOC100133059","entrezGeneId":100133059},{"hugoGeneSymbol":"LOC100133073","entrezGeneId":100133073},{"hugoGeneSymbol":"LOC100133077","entrezGeneId":100133077},{"hugoGeneSymbol":"LOC100133091","entrezGeneId":100133091},{"hugoGeneSymbol":"LOC100133092","entrezGeneId":100133092},{"hugoGeneSymbol":"LOC100133102","entrezGeneId":100133102},{"hugoGeneSymbol":"LOC100133127","entrezGeneId":100133127},{"hugoGeneSymbol":"LOC100133137","entrezGeneId":100133137},{"hugoGeneSymbol":"LOC100133147","entrezGeneId":100133147},{"hugoGeneSymbol":"LOC100133150","entrezGeneId":100133150},{"hugoGeneSymbol":"LOC100133165","entrezGeneId":100133165},{"hugoGeneSymbol":"LOC100133177","entrezGeneId":100133177},{"hugoGeneSymbol":"LOC100133211","entrezGeneId":100133211},{"hugoGeneSymbol":"LOC100133225","entrezGeneId":100133225},{"hugoGeneSymbol":"LOC100133244","entrezGeneId":100133244},{"hugoGeneSymbol":"LOC100133252","entrezGeneId":100133252},{"hugoGeneSymbol":"LOC100133261","entrezGeneId":100133261},{"hugoGeneSymbol":"LOC100133284","entrezGeneId":100133284},{"hugoGeneSymbol":"LOC100133286","entrezGeneId":100133286},{"hugoGeneSymbol":"LOC100133315","entrezGeneId":100133315},{"hugoGeneSymbol":"LOC100133316","entrezGeneId":100133316},{"hugoGeneSymbol":"LOC100133326","entrezGeneId":100133326},{"hugoGeneSymbol":"LOC100133331","entrezGeneId":100133331},{"hugoGeneSymbol":"LOC100133920","entrezGeneId":100133920},{"hugoGeneSymbol":"LOC100134040","entrezGeneId":100134040},{"hugoGeneSymbol":"LOC100134317","entrezGeneId":100134317},{"hugoGeneSymbol":"LOC100134362","entrezGeneId":100134362},{"hugoGeneSymbol":"LOC100134368","entrezGeneId":100134368},{"hugoGeneSymbol":"LOC100134391","entrezGeneId":100134391},{"hugoGeneSymbol":"LOC100134423","entrezGeneId":100134423},{"hugoGeneSymbol":"LOC100134507","entrezGeneId":100134507},{"hugoGeneSymbol":"LOC100134868","entrezGeneId":100134868},{"hugoGeneSymbol":"LOC100144595","entrezGeneId":100144595},{"hugoGeneSymbol":"LOC100147773","entrezGeneId":100147773},{"hugoGeneSymbol":"LOC100174950","entrezGeneId":100174950},{"hugoGeneSymbol":"LOC100187725","entrezGeneId":100187725},{"hugoGeneSymbol":"LOC100190922","entrezGeneId":100190922},{"hugoGeneSymbol":"LOC100190934","entrezGeneId":100190934},{"hugoGeneSymbol":"LOC100190986","entrezGeneId":100190986},{"hugoGeneSymbol":"LOC100192388","entrezGeneId":100192388},{"hugoGeneSymbol":"LOC100192389","entrezGeneId":100192389},{"hugoGeneSymbol":"LOC100192426","entrezGeneId":100192426},{"hugoGeneSymbol":"LOC100196944","entrezGeneId":100196944},{"hugoGeneSymbol":"LOC100216337","entrezGeneId":100216337},{"hugoGeneSymbol":"LOC100216346","entrezGeneId":100216346},{"hugoGeneSymbol":"LOC100216355","entrezGeneId":100216355},{"hugoGeneSymbol":"LOC100216356","entrezGeneId":100216356},{"hugoGeneSymbol":"LOC100216488","entrezGeneId":100216488},{"hugoGeneSymbol":"LOC100217367","entrezGeneId":100217367},{"hugoGeneSymbol":"LOC100233156","entrezGeneId":100233156},{"hugoGeneSymbol":"LOC100240714","entrezGeneId":100240714},{"hugoGeneSymbol":"LOC100240728","entrezGeneId":100240728},{"hugoGeneSymbol":"LOC100240734","entrezGeneId":100240734},{"hugoGeneSymbol":"LOC100240735","entrezGeneId":100240735},{"hugoGeneSymbol":"LOC100240749","entrezGeneId":100240749},{"hugoGeneSymbol":"LOC100268168","entrezGeneId":100268168},{"hugoGeneSymbol":"LOC100270647","entrezGeneId":100270647},{"hugoGeneSymbol":"LOC100270670","entrezGeneId":100270670},{"hugoGeneSymbol":"LOC100270746","entrezGeneId":100270746},{"hugoGeneSymbol":"LOC100270804","entrezGeneId":100270804},{"hugoGeneSymbol":"LOC100271656","entrezGeneId":100271656},{"hugoGeneSymbol":"LOC100271717","entrezGeneId":100271717},{"hugoGeneSymbol":"LOC100271842","entrezGeneId":100271842},{"hugoGeneSymbol":"LOC100271907","entrezGeneId":100271907},{"hugoGeneSymbol":"LOC100272217","entrezGeneId":100272217},{"hugoGeneSymbol":"LOC100286746","entrezGeneId":100286746},{"hugoGeneSymbol":"LOC100286895","entrezGeneId":100286895},{"hugoGeneSymbol":"LOC100286906","entrezGeneId":100286906},{"hugoGeneSymbol":"LOC100286922","entrezGeneId":100286922},{"hugoGeneSymbol":"LOC100286925","entrezGeneId":100286925},{"hugoGeneSymbol":"LOC100286942","entrezGeneId":100286942},{"hugoGeneSymbol":"LOC100286945","entrezGeneId":100286945},{"hugoGeneSymbol":"LOC100286946","entrezGeneId":100286946},{"hugoGeneSymbol":"LOC100286958","entrezGeneId":100286958},{"hugoGeneSymbol":"LOC100286962","entrezGeneId":100286962},{"hugoGeneSymbol":"LOC100286973","entrezGeneId":100286973},{"hugoGeneSymbol":"LOC100286986","entrezGeneId":100286986},{"hugoGeneSymbol":"LOC100286992","entrezGeneId":100286992},{"hugoGeneSymbol":"LOC100286997","entrezGeneId":100286997},{"hugoGeneSymbol":"LOC100287010","entrezGeneId":100287010},{"hugoGeneSymbol":"LOC100287014","entrezGeneId":100287014},{"hugoGeneSymbol":"LOC100287015","entrezGeneId":100287015},{"hugoGeneSymbol":"LOC100287028","entrezGeneId":100287028},{"hugoGeneSymbol":"LOC100287033","entrezGeneId":100287033},{"hugoGeneSymbol":"LOC100287036","entrezGeneId":100287036},{"hugoGeneSymbol":"LOC100287042","entrezGeneId":100287042},{"hugoGeneSymbol":"LOC100287046","entrezGeneId":100287046},{"hugoGeneSymbol":"LOC100287049","entrezGeneId":100287049},{"hugoGeneSymbol":"LOC100287072","entrezGeneId":100287072},{"hugoGeneSymbol":"LOC100287074","entrezGeneId":100287074},{"hugoGeneSymbol":"LOC100287148","entrezGeneId":100287148},{"hugoGeneSymbol":"LOC100287157","entrezGeneId":100287157},{"hugoGeneSymbol":"LOC100287175","entrezGeneId":100287175},{"hugoGeneSymbol":"LOC100287188","entrezGeneId":100287188},{"hugoGeneSymbol":"LOC100287189","entrezGeneId":100287189},{"hugoGeneSymbol":"LOC100287212","entrezGeneId":100287212},{"hugoGeneSymbol":"LOC100287243","entrezGeneId":100287243},{"hugoGeneSymbol":"LOC100287290","entrezGeneId":100287290},{"hugoGeneSymbol":"LOC100287309","entrezGeneId":100287309},{"hugoGeneSymbol":"LOC100287329","entrezGeneId":100287329},{"hugoGeneSymbol":"LOC100287335","entrezGeneId":100287335},{"hugoGeneSymbol":"LOC100287355","entrezGeneId":100287355},{"hugoGeneSymbol":"LOC100287357","entrezGeneId":100287357},{"hugoGeneSymbol":"LOC100287387","entrezGeneId":100287387},{"hugoGeneSymbol":"LOC100287402","entrezGeneId":100287402},{"hugoGeneSymbol":"LOC100287425","entrezGeneId":100287425},{"hugoGeneSymbol":"LOC100287427","entrezGeneId":100287427},{"hugoGeneSymbol":"LOC100287430","entrezGeneId":100287430},{"hugoGeneSymbol":"LOC100287453","entrezGeneId":100287453},{"hugoGeneSymbol":"LOC100287467","entrezGeneId":100287467},{"hugoGeneSymbol":"LOC100287477","entrezGeneId":100287477},{"hugoGeneSymbol":"LOC100287485","entrezGeneId":100287485},{"hugoGeneSymbol":"LOC100287489","entrezGeneId":100287489},{"hugoGeneSymbol":"LOC100287497","entrezGeneId":100287497},{"hugoGeneSymbol":"LOC100287498","entrezGeneId":100287498},{"hugoGeneSymbol":"LOC100287523","entrezGeneId":100287523},{"hugoGeneSymbol":"LOC100287539","entrezGeneId":100287539},{"hugoGeneSymbol":"LOC100287544","entrezGeneId":100287544},{"hugoGeneSymbol":"LOC100287610","entrezGeneId":100287610},{"hugoGeneSymbol":"LOC100287613","entrezGeneId":100287613},{"hugoGeneSymbol":"LOC100287614","entrezGeneId":100287614},{"hugoGeneSymbol":"LOC100287653","entrezGeneId":100287653},{"hugoGeneSymbol":"LOC100287704","entrezGeneId":100287704},{"hugoGeneSymbol":"LOC100287754","entrezGeneId":100287754},{"hugoGeneSymbol":"LOC100287757","entrezGeneId":100287757},{"hugoGeneSymbol":"LOC100287792","entrezGeneId":100287792},{"hugoGeneSymbol":"LOC100287808","entrezGeneId":100287808},{"hugoGeneSymbol":"LOC100287825","entrezGeneId":100287825},{"hugoGeneSymbol":"LOC100287834","entrezGeneId":100287834},{"hugoGeneSymbol":"LOC100287837","entrezGeneId":100287837},{"hugoGeneSymbol":"LOC100287840","entrezGeneId":100287840},{"hugoGeneSymbol":"LOC100287846","entrezGeneId":100287846},{"hugoGeneSymbol":"LOC100287852","entrezGeneId":100287852},{"hugoGeneSymbol":"LOC100287856","entrezGeneId":100287856},{"hugoGeneSymbol":"LOC100287896","entrezGeneId":100287896},{"hugoGeneSymbol":"LOC100287912","entrezGeneId":100287912},{"hugoGeneSymbol":"LOC100287928","entrezGeneId":100287928},{"hugoGeneSymbol":"LOC100287944","entrezGeneId":100287944},{"hugoGeneSymbol":"LOC100287951","entrezGeneId":100287951},{"hugoGeneSymbol":"LOC100287965","entrezGeneId":100287965},{"hugoGeneSymbol":"LOC100287966","entrezGeneId":100287966},{"hugoGeneSymbol":"LOC100287985","entrezGeneId":100287985},{"hugoGeneSymbol":"LOC100288001","entrezGeneId":100288001},{"hugoGeneSymbol":"LOC100288010","entrezGeneId":100288010},{"hugoGeneSymbol":"LOC100288016","entrezGeneId":100288016},{"hugoGeneSymbol":"LOC100288028","entrezGeneId":100288028},{"hugoGeneSymbol":"LOC100288031","entrezGeneId":100288031},{"hugoGeneSymbol":"LOC100288069","entrezGeneId":100288069},{"hugoGeneSymbol":"LOC100288073","entrezGeneId":100288073},{"hugoGeneSymbol":"LOC100288093","entrezGeneId":100288093},{"hugoGeneSymbol":"LOC100288097","entrezGeneId":100288097},{"hugoGeneSymbol":"LOC100288123","entrezGeneId":100288123},{"hugoGeneSymbol":"LOC100288125","entrezGeneId":100288125},{"hugoGeneSymbol":"LOC100288146","entrezGeneId":100288146},{"hugoGeneSymbol":"LOC100288151","entrezGeneId":100288151},{"hugoGeneSymbol":"LOC100288162","entrezGeneId":100288162},{"hugoGeneSymbol":"LOC100288172","entrezGeneId":100288172},{"hugoGeneSymbol":"LOC100288175","entrezGeneId":100288175},{"hugoGeneSymbol":"LOC100288181","entrezGeneId":100288181},{"hugoGeneSymbol":"LOC100288192","entrezGeneId":100288192},{"hugoGeneSymbol":"LOC100288203","entrezGeneId":100288203},{"hugoGeneSymbol":"LOC100288208","entrezGeneId":100288208},{"hugoGeneSymbol":"LOC100288211","entrezGeneId":100288211},{"hugoGeneSymbol":"LOC100288233","entrezGeneId":100288233},{"hugoGeneSymbol":"LOC100288241","entrezGeneId":100288241},{"hugoGeneSymbol":"LOC100288254","entrezGeneId":100288254},{"hugoGeneSymbol":"LOC100288365","entrezGeneId":100288365},{"hugoGeneSymbol":"LOC100288367","entrezGeneId":100288367},{"hugoGeneSymbol":"LOC100288379","entrezGeneId":100288379},{"hugoGeneSymbol":"LOC100288385","entrezGeneId":100288385},{"hugoGeneSymbol":"LOC100288392","entrezGeneId":100288392},{"hugoGeneSymbol":"LOC100288416","entrezGeneId":100288416},{"hugoGeneSymbol":"LOC100288437","entrezGeneId":100288437},{"hugoGeneSymbol":"LOC100288482","entrezGeneId":100288482},{"hugoGeneSymbol":"LOC100288484","entrezGeneId":100288484},{"hugoGeneSymbol":"LOC100288510","entrezGeneId":100288510},{"hugoGeneSymbol":"LOC100288533","entrezGeneId":100288533},{"hugoGeneSymbol":"LOC100288542","entrezGeneId":100288542},{"hugoGeneSymbol":"LOC100288558","entrezGeneId":100288558},{"hugoGeneSymbol":"LOC100288560","entrezGeneId":100288560},{"hugoGeneSymbol":"LOC100288562","entrezGeneId":100288562},{"hugoGeneSymbol":"LOC100288570","entrezGeneId":100288570},{"hugoGeneSymbol":"LOC100288590","entrezGeneId":100288590},{"hugoGeneSymbol":"LOC100288628","entrezGeneId":100288628},{"hugoGeneSymbol":"LOC100288637","entrezGeneId":100288637},{"hugoGeneSymbol":"LOC100288656","entrezGeneId":100288656},{"hugoGeneSymbol":"LOC100288663","entrezGeneId":100288663},{"hugoGeneSymbol":"LOC100288666","entrezGeneId":100288666},{"hugoGeneSymbol":"LOC100288683","entrezGeneId":100288683},{"hugoGeneSymbol":"LOC100288703","entrezGeneId":100288703},{"hugoGeneSymbol":"LOC100288712","entrezGeneId":100288712},{"hugoGeneSymbol":"LOC100288724","entrezGeneId":100288724},{"hugoGeneSymbol":"LOC100288728","entrezGeneId":100288728},{"hugoGeneSymbol":"LOC100288748","entrezGeneId":100288748},{"hugoGeneSymbol":"LOC100288763","entrezGeneId":100288763},{"hugoGeneSymbol":"LOC100288771","entrezGeneId":100288771},{"hugoGeneSymbol":"LOC100288778","entrezGeneId":100288778},{"hugoGeneSymbol":"LOC100288788","entrezGeneId":100288788},{"hugoGeneSymbol":"LOC100288798","entrezGeneId":100288798},{"hugoGeneSymbol":"LOC100288803","entrezGeneId":100288803},{"hugoGeneSymbol":"LOC100288846","entrezGeneId":100288846},{"hugoGeneSymbol":"LOC100288853","entrezGeneId":100288853},{"hugoGeneSymbol":"LOC100288866","entrezGeneId":100288866},{"hugoGeneSymbol":"LOC100288911","entrezGeneId":100288911},{"hugoGeneSymbol":"LOC100288914","entrezGeneId":100288914},{"hugoGeneSymbol":"LOC100288929","entrezGeneId":100288929},{"hugoGeneSymbol":"LOC100288935","entrezGeneId":100288935},{"hugoGeneSymbol":"LOC100288962","entrezGeneId":100288962},{"hugoGeneSymbol":"LOC100288966","entrezGeneId":100288966},{"hugoGeneSymbol":"LOC100288978","entrezGeneId":100288978},{"hugoGeneSymbol":"LOC100289004","entrezGeneId":100289004},{"hugoGeneSymbol":"LOC100289026","entrezGeneId":100289026},{"hugoGeneSymbol":"LOC100289037","entrezGeneId":100289037},{"hugoGeneSymbol":"LOC100289047","entrezGeneId":100289047},{"hugoGeneSymbol":"LOC100289060","entrezGeneId":100289060},{"hugoGeneSymbol":"LOC100289061","entrezGeneId":100289061},{"hugoGeneSymbol":"LOC100289085","entrezGeneId":100289085},{"hugoGeneSymbol":"LOC100289091","entrezGeneId":100289091},{"hugoGeneSymbol":"LOC100289117","entrezGeneId":100289117},{"hugoGeneSymbol":"LOC100289118","entrezGeneId":100289118},{"hugoGeneSymbol":"LOC100289141","entrezGeneId":100289141},{"hugoGeneSymbol":"LOC100289143","entrezGeneId":100289143},{"hugoGeneSymbol":"LOC100289185","entrezGeneId":100289185},{"hugoGeneSymbol":"LOC100289193","entrezGeneId":100289193},{"hugoGeneSymbol":"LOC100289194","entrezGeneId":100289194},{"hugoGeneSymbol":"LOC100289196","entrezGeneId":100289196},{"hugoGeneSymbol":"LOC100289206","entrezGeneId":100289206},{"hugoGeneSymbol":"LOC100289230","entrezGeneId":100289230},{"hugoGeneSymbol":"LOC100289238","entrezGeneId":100289238},{"hugoGeneSymbol":"LOC100289279","entrezGeneId":100289279},{"hugoGeneSymbol":"LOC100289303","entrezGeneId":100289303},{"hugoGeneSymbol":"LOC100289315","entrezGeneId":100289315},{"hugoGeneSymbol":"LOC100289320","entrezGeneId":100289320},{"hugoGeneSymbol":"LOC100289333","entrezGeneId":100289333},{"hugoGeneSymbol":"LOC100289350","entrezGeneId":100289350},{"hugoGeneSymbol":"LOC100289351","entrezGeneId":100289351},{"hugoGeneSymbol":"LOC100289360","entrezGeneId":100289360},{"hugoGeneSymbol":"LOC100289361","entrezGeneId":100289361},{"hugoGeneSymbol":"LOC100289381","entrezGeneId":100289381},{"hugoGeneSymbol":"LOC100289416","entrezGeneId":100289416},{"hugoGeneSymbol":"LOC100289442","entrezGeneId":100289442},{"hugoGeneSymbol":"LOC100289470","entrezGeneId":100289470},{"hugoGeneSymbol":"LOC100289473","entrezGeneId":100289473},{"hugoGeneSymbol":"LOC100289479","entrezGeneId":100289479},{"hugoGeneSymbol":"LOC100289495","entrezGeneId":100289495},{"hugoGeneSymbol":"LOC100289500","entrezGeneId":100289500},{"hugoGeneSymbol":"LOC100289511","entrezGeneId":100289511},{"hugoGeneSymbol":"LOC100289518","entrezGeneId":100289518},{"hugoGeneSymbol":"LOC100289543","entrezGeneId":100289543},{"hugoGeneSymbol":"LOC100289561","entrezGeneId":100289561},{"hugoGeneSymbol":"LOC100289568","entrezGeneId":100289568},{"hugoGeneSymbol":"LOC100289569","entrezGeneId":100289569},{"hugoGeneSymbol":"LOC100289580","entrezGeneId":100289580},{"hugoGeneSymbol":"LOC100289656","entrezGeneId":100289656},{"hugoGeneSymbol":"LOC100290036","entrezGeneId":100290036},{"hugoGeneSymbol":"LOC100291105","entrezGeneId":100291105},{"hugoGeneSymbol":"LOC100291628","entrezGeneId":100291628},{"hugoGeneSymbol":"LOC100292922","entrezGeneId":100292922},{"hugoGeneSymbol":"LOC100293612","entrezGeneId":100293612},{"hugoGeneSymbol":"LOC100294145","entrezGeneId":100294145},{"hugoGeneSymbol":"LOC100294160","entrezGeneId":100294160},{"hugoGeneSymbol":"LOC100294188","entrezGeneId":100294188},{"hugoGeneSymbol":"LOC100294316","entrezGeneId":100294316},{"hugoGeneSymbol":"LOC100294336","entrezGeneId":100294336},{"hugoGeneSymbol":"LOC100294362","entrezGeneId":100294362},{"hugoGeneSymbol":"LOC100294713","entrezGeneId":100294713},{"hugoGeneSymbol":"LOC100301516","entrezGeneId":100301516},{"hugoGeneSymbol":"LOC100301521","entrezGeneId":100301521},{"hugoGeneSymbol":"LOC100301990","entrezGeneId":100301990},{"hugoGeneSymbol":"LOC100302291","entrezGeneId":100302291},{"hugoGeneSymbol":"LOC100303749","entrezGeneId":100303749},{"hugoGeneSymbol":"LOC100310756","entrezGeneId":100310756},{"hugoGeneSymbol":"LOC100310782","entrezGeneId":100310782},{"hugoGeneSymbol":"LOC100310835","entrezGeneId":100310835},{"hugoGeneSymbol":"LOC100313942","entrezGeneId":100313942},{"hugoGeneSymbol":"LOC100313968","entrezGeneId":100313968},{"hugoGeneSymbol":"LOC100328982","entrezGeneId":100328982},{"hugoGeneSymbol":"LOC100329129","entrezGeneId":100329129},{"hugoGeneSymbol":"LOC100335030","entrezGeneId":100335030},{"hugoGeneSymbol":"LOC100379224","entrezGeneId":100379224},{"hugoGeneSymbol":"LOC100379236","entrezGeneId":100379236},{"hugoGeneSymbol":"LOC100379290","entrezGeneId":100379290},{"hugoGeneSymbol":"LOC100384885","entrezGeneId":100384885},{"hugoGeneSymbol":"LOC100418696","entrezGeneId":100418696},{"hugoGeneSymbol":"LOC100418700","entrezGeneId":100418700},{"hugoGeneSymbol":"LOC100418701","entrezGeneId":100418701},{"hugoGeneSymbol":"LOC100418703","entrezGeneId":100418703},{"hugoGeneSymbol":"LOC100418705","entrezGeneId":100418705},{"hugoGeneSymbol":"LOC100418707","entrezGeneId":100418707},{"hugoGeneSymbol":"LOC100418710","entrezGeneId":100418710},{"hugoGeneSymbol":"LOC100418712","entrezGeneId":100418712},{"hugoGeneSymbol":"LOC100418713","entrezGeneId":100418713},{"hugoGeneSymbol":"LOC100418714","entrezGeneId":100418714},{"hugoGeneSymbol":"LOC100418716","entrezGeneId":100418716},{"hugoGeneSymbol":"LOC100418721","entrezGeneId":100418721},{"hugoGeneSymbol":"LOC100418723","entrezGeneId":100418723},{"hugoGeneSymbol":"LOC100418730","entrezGeneId":100418730},{"hugoGeneSymbol":"LOC100418732","entrezGeneId":100418732},{"hugoGeneSymbol":"LOC100418734","entrezGeneId":100418734},{"hugoGeneSymbol":"LOC100418753","entrezGeneId":100418753},{"hugoGeneSymbol":"LOC100418759","entrezGeneId":100418759},{"hugoGeneSymbol":"LOC100418768","entrezGeneId":100418768},{"hugoGeneSymbol":"LOC100418822","entrezGeneId":100418822},{"hugoGeneSymbol":"LOC100418848","entrezGeneId":100418848},{"hugoGeneSymbol":"LOC100418862","entrezGeneId":100418862},{"hugoGeneSymbol":"LOC100418868","entrezGeneId":100418868},{"hugoGeneSymbol":"LOC100418871","entrezGeneId":100418871},{"hugoGeneSymbol":"LOC100418874","entrezGeneId":100418874},{"hugoGeneSymbol":"LOC100418882","entrezGeneId":100418882},{"hugoGeneSymbol":"LOC100418883","entrezGeneId":100418883},{"hugoGeneSymbol":"LOC100418884","entrezGeneId":100418884},{"hugoGeneSymbol":"LOC100418885","entrezGeneId":100418885},{"hugoGeneSymbol":"LOC100418888","entrezGeneId":100418888},{"hugoGeneSymbol":"LOC100418898","entrezGeneId":100418898},{"hugoGeneSymbol":"LOC100418906","entrezGeneId":100418906},{"hugoGeneSymbol":"LOC100418923","entrezGeneId":100418923},{"hugoGeneSymbol":"LOC100418928","entrezGeneId":100418928},{"hugoGeneSymbol":"LOC100418938","entrezGeneId":100418938},{"hugoGeneSymbol":"LOC100418939","entrezGeneId":100418939},{"hugoGeneSymbol":"LOC100418940","entrezGeneId":100418940},{"hugoGeneSymbol":"LOC100418956","entrezGeneId":100418956},{"hugoGeneSymbol":"LOC100418957","entrezGeneId":100418957},{"hugoGeneSymbol":"LOC100418959","entrezGeneId":100418959},{"hugoGeneSymbol":"LOC100418961","entrezGeneId":100418961},{"hugoGeneSymbol":"LOC100418965","entrezGeneId":100418965},{"hugoGeneSymbol":"LOC100418973","entrezGeneId":100418973},{"hugoGeneSymbol":"LOC100418986","entrezGeneId":100418986},{"hugoGeneSymbol":"LOC100418987","entrezGeneId":100418987},{"hugoGeneSymbol":"LOC100418988","entrezGeneId":100418988},{"hugoGeneSymbol":"LOC100418989","entrezGeneId":100418989},{"hugoGeneSymbol":"LOC100418990","entrezGeneId":100418990},{"hugoGeneSymbol":"LOC100418991","entrezGeneId":100418991},{"hugoGeneSymbol":"LOC100418992","entrezGeneId":100418992},{"hugoGeneSymbol":"LOC100418993","entrezGeneId":100418993},{"hugoGeneSymbol":"LOC100418997","entrezGeneId":100418997},{"hugoGeneSymbol":"LOC100419003","entrezGeneId":100419003},{"hugoGeneSymbol":"LOC100419008","entrezGeneId":100419008},{"hugoGeneSymbol":"LOC100419014","entrezGeneId":100419014},{"hugoGeneSymbol":"LOC100419016","entrezGeneId":100419016},{"hugoGeneSymbol":"LOC100419017","entrezGeneId":100419017},{"hugoGeneSymbol":"LOC100419033","entrezGeneId":100419033},{"hugoGeneSymbol":"LOC100419036","entrezGeneId":100419036},{"hugoGeneSymbol":"LOC100419037","entrezGeneId":100419037},{"hugoGeneSymbol":"LOC100419045","entrezGeneId":100419045},{"hugoGeneSymbol":"LOC100419046","entrezGeneId":100419046},{"hugoGeneSymbol":"LOC100419052","entrezGeneId":100419052},{"hugoGeneSymbol":"LOC100419053","entrezGeneId":100419053},{"hugoGeneSymbol":"LOC100419058","entrezGeneId":100419058},{"hugoGeneSymbol":"LOC100419059","entrezGeneId":100419059},{"hugoGeneSymbol":"LOC100419073","entrezGeneId":100419073},{"hugoGeneSymbol":"LOC100419079","entrezGeneId":100419079},{"hugoGeneSymbol":"LOC100419085","entrezGeneId":100419085},{"hugoGeneSymbol":"LOC100419092","entrezGeneId":100419092},{"hugoGeneSymbol":"LOC100419096","entrezGeneId":100419096},{"hugoGeneSymbol":"LOC100419102","entrezGeneId":100419102},{"hugoGeneSymbol":"LOC100419108","entrezGeneId":100419108},{"hugoGeneSymbol":"LOC100419110","entrezGeneId":100419110},{"hugoGeneSymbol":"LOC100419140","entrezGeneId":100419140},{"hugoGeneSymbol":"LOC100419154","entrezGeneId":100419154},{"hugoGeneSymbol":"LOC100419161","entrezGeneId":100419161},{"hugoGeneSymbol":"LOC100419170","entrezGeneId":100419170},{"hugoGeneSymbol":"LOC100419174","entrezGeneId":100419174},{"hugoGeneSymbol":"LOC100419232","entrezGeneId":100419232},{"hugoGeneSymbol":"LOC100419238","entrezGeneId":100419238},{"hugoGeneSymbol":"LOC100419257","entrezGeneId":100419257},{"hugoGeneSymbol":"LOC100419284","entrezGeneId":100419284},{"hugoGeneSymbol":"LOC100419293","entrezGeneId":100419293},{"hugoGeneSymbol":"LOC100419301","entrezGeneId":100419301},{"hugoGeneSymbol":"LOC100419307","entrezGeneId":100419307},{"hugoGeneSymbol":"LOC100419318","entrezGeneId":100419318},{"hugoGeneSymbol":"LOC100419319","entrezGeneId":100419319},{"hugoGeneSymbol":"LOC100419321","entrezGeneId":100419321},{"hugoGeneSymbol":"LOC100419353","entrezGeneId":100419353},{"hugoGeneSymbol":"LOC100419356","entrezGeneId":100419356},{"hugoGeneSymbol":"LOC100419366","entrezGeneId":100419366},{"hugoGeneSymbol":"LOC100419436","entrezGeneId":100419436},{"hugoGeneSymbol":"LOC100419447","entrezGeneId":100419447},{"hugoGeneSymbol":"LOC100419451","entrezGeneId":100419451},{"hugoGeneSymbol":"LOC100419458","entrezGeneId":100419458},{"hugoGeneSymbol":"LOC100419503","entrezGeneId":100419503},{"hugoGeneSymbol":"LOC100419506","entrezGeneId":100419506},{"hugoGeneSymbol":"LOC100419511","entrezGeneId":100419511},{"hugoGeneSymbol":"LOC100419512","entrezGeneId":100419512},{"hugoGeneSymbol":"LOC100419513","entrezGeneId":100419513},{"hugoGeneSymbol":"LOC100419515","entrezGeneId":100419515},{"hugoGeneSymbol":"LOC100419516","entrezGeneId":100419516},{"hugoGeneSymbol":"LOC100419520","entrezGeneId":100419520},{"hugoGeneSymbol":"LOC100419525","entrezGeneId":100419525},{"hugoGeneSymbol":"LOC100419542","entrezGeneId":100419542},{"hugoGeneSymbol":"LOC100419545","entrezGeneId":100419545},{"hugoGeneSymbol":"LOC100419549","entrezGeneId":100419549},{"hugoGeneSymbol":"LOC100419552","entrezGeneId":100419552},{"hugoGeneSymbol":"LOC100419553","entrezGeneId":100419553},{"hugoGeneSymbol":"LOC100419562","entrezGeneId":100419562},{"hugoGeneSymbol":"LOC100419565","entrezGeneId":100419565},{"hugoGeneSymbol":"LOC100419570","entrezGeneId":100419570},{"hugoGeneSymbol":"LOC100419572","entrezGeneId":100419572},{"hugoGeneSymbol":"LOC100419574","entrezGeneId":100419574},{"hugoGeneSymbol":"LOC100419579","entrezGeneId":100419579},{"hugoGeneSymbol":"LOC100419583","entrezGeneId":100419583},{"hugoGeneSymbol":"LOC100419613","entrezGeneId":100419613},{"hugoGeneSymbol":"LOC100419615","entrezGeneId":100419615},{"hugoGeneSymbol":"LOC100419616","entrezGeneId":100419616},{"hugoGeneSymbol":"LOC100419617","entrezGeneId":100419617},{"hugoGeneSymbol":"LOC100419620","entrezGeneId":100419620},{"hugoGeneSymbol":"LOC100419621","entrezGeneId":100419621},{"hugoGeneSymbol":"LOC100419622","entrezGeneId":100419622},{"hugoGeneSymbol":"LOC100419624","entrezGeneId":100419624},{"hugoGeneSymbol":"LOC100419639","entrezGeneId":100419639},{"hugoGeneSymbol":"LOC100419641","entrezGeneId":100419641},{"hugoGeneSymbol":"LOC100419642","entrezGeneId":100419642},{"hugoGeneSymbol":"LOC100419643","entrezGeneId":100419643},{"hugoGeneSymbol":"LOC100419644","entrezGeneId":100419644},{"hugoGeneSymbol":"LOC100419645","entrezGeneId":100419645},{"hugoGeneSymbol":"LOC100419654","entrezGeneId":100419654},{"hugoGeneSymbol":"LOC100419668","entrezGeneId":100419668},{"hugoGeneSymbol":"LOC100419673","entrezGeneId":100419673},{"hugoGeneSymbol":"LOC100419678","entrezGeneId":100419678},{"hugoGeneSymbol":"LOC100419679","entrezGeneId":100419679},{"hugoGeneSymbol":"LOC100419680","entrezGeneId":100419680},{"hugoGeneSymbol":"LOC100419684","entrezGeneId":100419684},{"hugoGeneSymbol":"LOC100419685","entrezGeneId":100419685},{"hugoGeneSymbol":"LOC100419686","entrezGeneId":100419686},{"hugoGeneSymbol":"LOC100419690","entrezGeneId":100419690},{"hugoGeneSymbol":"LOC100419691","entrezGeneId":100419691},{"hugoGeneSymbol":"LOC100419692","entrezGeneId":100419692},{"hugoGeneSymbol":"LOC100419693","entrezGeneId":100419693},{"hugoGeneSymbol":"LOC100419700","entrezGeneId":100419700},{"hugoGeneSymbol":"LOC100419701","entrezGeneId":100419701},{"hugoGeneSymbol":"LOC100419702","entrezGeneId":100419702},{"hugoGeneSymbol":"LOC100419704","entrezGeneId":100419704},{"hugoGeneSymbol":"LOC100419706","entrezGeneId":100419706},{"hugoGeneSymbol":"LOC100419707","entrezGeneId":100419707},{"hugoGeneSymbol":"LOC100419712","entrezGeneId":100419712},{"hugoGeneSymbol":"LOC100419713","entrezGeneId":100419713},{"hugoGeneSymbol":"LOC100419715","entrezGeneId":100419715},{"hugoGeneSymbol":"LOC100419716","entrezGeneId":100419716},{"hugoGeneSymbol":"LOC100419720","entrezGeneId":100419720},{"hugoGeneSymbol":"LOC100419721","entrezGeneId":100419721},{"hugoGeneSymbol":"LOC100419737","entrezGeneId":100419737},{"hugoGeneSymbol":"LOC100419739","entrezGeneId":100419739},{"hugoGeneSymbol":"LOC100419741","entrezGeneId":100419741},{"hugoGeneSymbol":"LOC100419748","entrezGeneId":100419748},{"hugoGeneSymbol":"LOC100419750","entrezGeneId":100419750},{"hugoGeneSymbol":"LOC100419752","entrezGeneId":100419752},{"hugoGeneSymbol":"LOC100419755","entrezGeneId":100419755},{"hugoGeneSymbol":"LOC100419761","entrezGeneId":100419761},{"hugoGeneSymbol":"LOC100419762","entrezGeneId":100419762},{"hugoGeneSymbol":"LOC100419763","entrezGeneId":100419763},{"hugoGeneSymbol":"LOC100419768","entrezGeneId":100419768},{"hugoGeneSymbol":"LOC100419772","entrezGeneId":100419772},{"hugoGeneSymbol":"LOC100419773","entrezGeneId":100419773},{"hugoGeneSymbol":"LOC100419774","entrezGeneId":100419774},{"hugoGeneSymbol":"LOC100419775","entrezGeneId":100419775},{"hugoGeneSymbol":"LOC100419779","entrezGeneId":100419779},{"hugoGeneSymbol":"LOC100419781","entrezGeneId":100419781},{"hugoGeneSymbol":"LOC100419782","entrezGeneId":100419782},{"hugoGeneSymbol":"LOC100419783","entrezGeneId":100419783},{"hugoGeneSymbol":"LOC100419784","entrezGeneId":100419784},{"hugoGeneSymbol":"LOC100419786","entrezGeneId":100419786},{"hugoGeneSymbol":"LOC100419790","entrezGeneId":100419790},{"hugoGeneSymbol":"LOC100419791","entrezGeneId":100419791},{"hugoGeneSymbol":"LOC100419792","entrezGeneId":100419792},{"hugoGeneSymbol":"LOC100419794","entrezGeneId":100419794},{"hugoGeneSymbol":"LOC100419795","entrezGeneId":100419795},{"hugoGeneSymbol":"LOC100419796","entrezGeneId":100419796},{"hugoGeneSymbol":"LOC100419798","entrezGeneId":100419798},{"hugoGeneSymbol":"LOC100419799","entrezGeneId":100419799},{"hugoGeneSymbol":"LOC100419801","entrezGeneId":100419801},{"hugoGeneSymbol":"LOC100419802","entrezGeneId":100419802},{"hugoGeneSymbol":"LOC100419803","entrezGeneId":100419803},{"hugoGeneSymbol":"LOC100419806","entrezGeneId":100419806},{"hugoGeneSymbol":"LOC100419811","entrezGeneId":100419811},{"hugoGeneSymbol":"LOC100419812","entrezGeneId":100419812},{"hugoGeneSymbol":"LOC100419814","entrezGeneId":100419814},{"hugoGeneSymbol":"LOC100419815","entrezGeneId":100419815},{"hugoGeneSymbol":"LOC100419816","entrezGeneId":100419816},{"hugoGeneSymbol":"LOC100419824","entrezGeneId":100419824},{"hugoGeneSymbol":"LOC100419825","entrezGeneId":100419825},{"hugoGeneSymbol":"LOC100419830","entrezGeneId":100419830},{"hugoGeneSymbol":"LOC100419831","entrezGeneId":100419831},{"hugoGeneSymbol":"LOC100419833","entrezGeneId":100419833},{"hugoGeneSymbol":"LOC100419834","entrezGeneId":100419834},{"hugoGeneSymbol":"LOC100419835","entrezGeneId":100419835},{"hugoGeneSymbol":"LOC100419836","entrezGeneId":100419836},{"hugoGeneSymbol":"LOC100419839","entrezGeneId":100419839},{"hugoGeneSymbol":"LOC100419840","entrezGeneId":100419840},{"hugoGeneSymbol":"LOC100419841","entrezGeneId":100419841},{"hugoGeneSymbol":"LOC100419842","entrezGeneId":100419842},{"hugoGeneSymbol":"LOC100419844","entrezGeneId":100419844},{"hugoGeneSymbol":"LOC100419845","entrezGeneId":100419845},{"hugoGeneSymbol":"LOC100419847","entrezGeneId":100419847},{"hugoGeneSymbol":"LOC100419848","entrezGeneId":100419848},{"hugoGeneSymbol":"LOC100419851","entrezGeneId":100419851},{"hugoGeneSymbol":"LOC100419852","entrezGeneId":100419852},{"hugoGeneSymbol":"LOC100419853","entrezGeneId":100419853},{"hugoGeneSymbol":"LOC100419859","entrezGeneId":100419859},{"hugoGeneSymbol":"LOC100419861","entrezGeneId":100419861},{"hugoGeneSymbol":"LOC100419862","entrezGeneId":100419862},{"hugoGeneSymbol":"LOC100419863","entrezGeneId":100419863},{"hugoGeneSymbol":"LOC100419870","entrezGeneId":100419870},{"hugoGeneSymbol":"LOC100419872","entrezGeneId":100419872},{"hugoGeneSymbol":"LOC100419877","entrezGeneId":100419877},{"hugoGeneSymbol":"LOC100419878","entrezGeneId":100419878},{"hugoGeneSymbol":"LOC100419882","entrezGeneId":100419882},{"hugoGeneSymbol":"LOC100419888","entrezGeneId":100419888},{"hugoGeneSymbol":"LOC100419890","entrezGeneId":100419890},{"hugoGeneSymbol":"LOC100419891","entrezGeneId":100419891},{"hugoGeneSymbol":"LOC100419892","entrezGeneId":100419892},{"hugoGeneSymbol":"LOC100419894","entrezGeneId":100419894},{"hugoGeneSymbol":"LOC100419896","entrezGeneId":100419896},{"hugoGeneSymbol":"LOC100419901","entrezGeneId":100419901},{"hugoGeneSymbol":"LOC100419906","entrezGeneId":100419906},{"hugoGeneSymbol":"LOC100419907","entrezGeneId":100419907},{"hugoGeneSymbol":"LOC100419908","entrezGeneId":100419908},{"hugoGeneSymbol":"LOC100419911","entrezGeneId":100419911},{"hugoGeneSymbol":"LOC100419912","entrezGeneId":100419912},{"hugoGeneSymbol":"LOC100419913","entrezGeneId":100419913},{"hugoGeneSymbol":"LOC100419915","entrezGeneId":100419915},{"hugoGeneSymbol":"LOC100419917","entrezGeneId":100419917},{"hugoGeneSymbol":"LOC100419920","entrezGeneId":100419920},{"hugoGeneSymbol":"LOC100419921","entrezGeneId":100419921},{"hugoGeneSymbol":"LOC100419923","entrezGeneId":100419923},{"hugoGeneSymbol":"LOC100419924","entrezGeneId":100419924},{"hugoGeneSymbol":"LOC100419925","entrezGeneId":100419925},{"hugoGeneSymbol":"LOC100419926","entrezGeneId":100419926},{"hugoGeneSymbol":"LOC100419928","entrezGeneId":100419928},{"hugoGeneSymbol":"LOC100419929","entrezGeneId":100419929},{"hugoGeneSymbol":"LOC100419932","entrezGeneId":100419932},{"hugoGeneSymbol":"LOC100419935","entrezGeneId":100419935},{"hugoGeneSymbol":"LOC100419951","entrezGeneId":100419951},{"hugoGeneSymbol":"LOC100419952","entrezGeneId":100419952},{"hugoGeneSymbol":"LOC100419956","entrezGeneId":100419956},{"hugoGeneSymbol":"LOC100419957","entrezGeneId":100419957},{"hugoGeneSymbol":"LOC100419959","entrezGeneId":100419959},{"hugoGeneSymbol":"LOC100419960","entrezGeneId":100419960},{"hugoGeneSymbol":"LOC100419966","entrezGeneId":100419966},{"hugoGeneSymbol":"LOC100419967","entrezGeneId":100419967},{"hugoGeneSymbol":"LOC100419969","entrezGeneId":100419969},{"hugoGeneSymbol":"LOC100419975","entrezGeneId":100419975},{"hugoGeneSymbol":"LOC100419977","entrezGeneId":100419977},{"hugoGeneSymbol":"LOC100419980","entrezGeneId":100419980},{"hugoGeneSymbol":"LOC100419984","entrezGeneId":100419984},{"hugoGeneSymbol":"LOC100419985","entrezGeneId":100419985},{"hugoGeneSymbol":"LOC100419986","entrezGeneId":100419986},{"hugoGeneSymbol":"LOC100419987","entrezGeneId":100419987},{"hugoGeneSymbol":"LOC100419991","entrezGeneId":100419991},{"hugoGeneSymbol":"LOC100420002","entrezGeneId":100420002},{"hugoGeneSymbol":"LOC100420006","entrezGeneId":100420006},{"hugoGeneSymbol":"LOC100420008","entrezGeneId":100420008},{"hugoGeneSymbol":"LOC100420011","entrezGeneId":100420011},{"hugoGeneSymbol":"LOC100420018","entrezGeneId":100420018},{"hugoGeneSymbol":"LOC100420019","entrezGeneId":100420019},{"hugoGeneSymbol":"LOC100420020","entrezGeneId":100420020},{"hugoGeneSymbol":"LOC100420021","entrezGeneId":100420021},{"hugoGeneSymbol":"LOC100420022","entrezGeneId":100420022},{"hugoGeneSymbol":"LOC100420024","entrezGeneId":100420024},{"hugoGeneSymbol":"LOC100420025","entrezGeneId":100420025},{"hugoGeneSymbol":"LOC100420027","entrezGeneId":100420027},{"hugoGeneSymbol":"LOC100420035","entrezGeneId":100420035},{"hugoGeneSymbol":"LOC100420048","entrezGeneId":100420048},{"hugoGeneSymbol":"LOC100420050","entrezGeneId":100420050},{"hugoGeneSymbol":"LOC100420052","entrezGeneId":100420052},{"hugoGeneSymbol":"LOC100420053","entrezGeneId":100420053},{"hugoGeneSymbol":"LOC100420054","entrezGeneId":100420054},{"hugoGeneSymbol":"LOC100420057","entrezGeneId":100420057},{"hugoGeneSymbol":"LOC100420060","entrezGeneId":100420060},{"hugoGeneSymbol":"LOC100420061","entrezGeneId":100420061},{"hugoGeneSymbol":"LOC100420062","entrezGeneId":100420062},{"hugoGeneSymbol":"LOC100420064","entrezGeneId":100420064},{"hugoGeneSymbol":"LOC100420066","entrezGeneId":100420066},{"hugoGeneSymbol":"LOC100420067","entrezGeneId":100420067},{"hugoGeneSymbol":"LOC100420073","entrezGeneId":100420073},{"hugoGeneSymbol":"LOC100420074","entrezGeneId":100420074},{"hugoGeneSymbol":"LOC100420083","entrezGeneId":100420083},{"hugoGeneSymbol":"LOC100420084","entrezGeneId":100420084},{"hugoGeneSymbol":"LOC100420089","entrezGeneId":100420089},{"hugoGeneSymbol":"LOC100420092","entrezGeneId":100420092},{"hugoGeneSymbol":"LOC100420095","entrezGeneId":100420095},{"hugoGeneSymbol":"LOC100420096","entrezGeneId":100420096},{"hugoGeneSymbol":"LOC100420097","entrezGeneId":100420097},{"hugoGeneSymbol":"LOC100420098","entrezGeneId":100420098},{"hugoGeneSymbol":"LOC100420103","entrezGeneId":100420103},{"hugoGeneSymbol":"LOC100420108","entrezGeneId":100420108},{"hugoGeneSymbol":"LOC100420109","entrezGeneId":100420109},{"hugoGeneSymbol":"LOC100420110","entrezGeneId":100420110},{"hugoGeneSymbol":"LOC100420114","entrezGeneId":100420114},{"hugoGeneSymbol":"LOC100420116","entrezGeneId":100420116},{"hugoGeneSymbol":"LOC100420117","entrezGeneId":100420117},{"hugoGeneSymbol":"LOC100420118","entrezGeneId":100420118},{"hugoGeneSymbol":"LOC100420119","entrezGeneId":100420119},{"hugoGeneSymbol":"LOC100420121","entrezGeneId":100420121},{"hugoGeneSymbol":"LOC100420122","entrezGeneId":100420122},{"hugoGeneSymbol":"LOC100420123","entrezGeneId":100420123},{"hugoGeneSymbol":"LOC100420127","entrezGeneId":100420127},{"hugoGeneSymbol":"LOC100420130","entrezGeneId":100420130},{"hugoGeneSymbol":"LOC100420144","entrezGeneId":100420144},{"hugoGeneSymbol":"LOC100420162","entrezGeneId":100420162},{"hugoGeneSymbol":"LOC100420166","entrezGeneId":100420166},{"hugoGeneSymbol":"LOC100420170","entrezGeneId":100420170},{"hugoGeneSymbol":"LOC100420171","entrezGeneId":100420171},{"hugoGeneSymbol":"LOC100420172","entrezGeneId":100420172},{"hugoGeneSymbol":"LOC100420174","entrezGeneId":100420174},{"hugoGeneSymbol":"LOC100420175","entrezGeneId":100420175},{"hugoGeneSymbol":"LOC100420177","entrezGeneId":100420177},{"hugoGeneSymbol":"LOC100420186","entrezGeneId":100420186},{"hugoGeneSymbol":"LOC100420187","entrezGeneId":100420187},{"hugoGeneSymbol":"LOC100420205","entrezGeneId":100420205},{"hugoGeneSymbol":"LOC100420211","entrezGeneId":100420211},{"hugoGeneSymbol":"LOC100420214","entrezGeneId":100420214},{"hugoGeneSymbol":"LOC100420215","entrezGeneId":100420215},{"hugoGeneSymbol":"LOC100420226","entrezGeneId":100420226},{"hugoGeneSymbol":"LOC100420228","entrezGeneId":100420228},{"hugoGeneSymbol":"LOC100420230","entrezGeneId":100420230},{"hugoGeneSymbol":"LOC100420245","entrezGeneId":100420245},{"hugoGeneSymbol":"LOC100420247","entrezGeneId":100420247},{"hugoGeneSymbol":"LOC100420250","entrezGeneId":100420250},{"hugoGeneSymbol":"LOC100420251","entrezGeneId":100420251},{"hugoGeneSymbol":"LOC100420252","entrezGeneId":100420252},{"hugoGeneSymbol":"LOC100420254","entrezGeneId":100420254},{"hugoGeneSymbol":"LOC100420255","entrezGeneId":100420255},{"hugoGeneSymbol":"LOC100420262","entrezGeneId":100420262},{"hugoGeneSymbol":"LOC100420267","entrezGeneId":100420267},{"hugoGeneSymbol":"LOC100420273","entrezGeneId":100420273},{"hugoGeneSymbol":"LOC100420289","entrezGeneId":100420289},{"hugoGeneSymbol":"LOC100420298","entrezGeneId":100420298},{"hugoGeneSymbol":"LOC100420304","entrezGeneId":100420304},{"hugoGeneSymbol":"LOC100420305","entrezGeneId":100420305},{"hugoGeneSymbol":"LOC100420311","entrezGeneId":100420311},{"hugoGeneSymbol":"LOC100420317","entrezGeneId":100420317},{"hugoGeneSymbol":"LOC100420318","entrezGeneId":100420318},{"hugoGeneSymbol":"LOC100420320","entrezGeneId":100420320},{"hugoGeneSymbol":"LOC100420321","entrezGeneId":100420321},{"hugoGeneSymbol":"LOC100420322","entrezGeneId":100420322},{"hugoGeneSymbol":"LOC100420323","entrezGeneId":100420323},{"hugoGeneSymbol":"LOC100420324","entrezGeneId":100420324},{"hugoGeneSymbol":"LOC100420325","entrezGeneId":100420325},{"hugoGeneSymbol":"LOC100420326","entrezGeneId":100420326},{"hugoGeneSymbol":"LOC100420331","entrezGeneId":100420331},{"hugoGeneSymbol":"LOC100420334","entrezGeneId":100420334},{"hugoGeneSymbol":"LOC100420336","entrezGeneId":100420336},{"hugoGeneSymbol":"LOC100420338","entrezGeneId":100420338},{"hugoGeneSymbol":"LOC100420339","entrezGeneId":100420339},{"hugoGeneSymbol":"LOC100420343","entrezGeneId":100420343},{"hugoGeneSymbol":"LOC100420347","entrezGeneId":100420347},{"hugoGeneSymbol":"LOC100420351","entrezGeneId":100420351},{"hugoGeneSymbol":"LOC100420353","entrezGeneId":100420353},{"hugoGeneSymbol":"LOC100420385","entrezGeneId":100420385},{"hugoGeneSymbol":"LOC100420386","entrezGeneId":100420386},{"hugoGeneSymbol":"LOC100420394","entrezGeneId":100420394},{"hugoGeneSymbol":"LOC100420403","entrezGeneId":100420403},{"hugoGeneSymbol":"LOC100420404","entrezGeneId":100420404},{"hugoGeneSymbol":"LOC100420408","entrezGeneId":100420408},{"hugoGeneSymbol":"LOC100420413","entrezGeneId":100420413},{"hugoGeneSymbol":"LOC100420418","entrezGeneId":100420418},{"hugoGeneSymbol":"LOC100420420","entrezGeneId":100420420},{"hugoGeneSymbol":"LOC100420423","entrezGeneId":100420423},{"hugoGeneSymbol":"LOC100420424","entrezGeneId":100420424},{"hugoGeneSymbol":"LOC100420428","entrezGeneId":100420428},{"hugoGeneSymbol":"LOC100420429","entrezGeneId":100420429},{"hugoGeneSymbol":"LOC100420430","entrezGeneId":100420430},{"hugoGeneSymbol":"LOC100420432","entrezGeneId":100420432},{"hugoGeneSymbol":"LOC100420435","entrezGeneId":100420435},{"hugoGeneSymbol":"LOC100420437","entrezGeneId":100420437},{"hugoGeneSymbol":"LOC100420438","entrezGeneId":100420438},{"hugoGeneSymbol":"LOC100420439","entrezGeneId":100420439},{"hugoGeneSymbol":"LOC100420440","entrezGeneId":100420440},{"hugoGeneSymbol":"LOC100420442","entrezGeneId":100420442},{"hugoGeneSymbol":"LOC100420446","entrezGeneId":100420446},{"hugoGeneSymbol":"LOC100420449","entrezGeneId":100420449},{"hugoGeneSymbol":"LOC100420464","entrezGeneId":100420464},{"hugoGeneSymbol":"LOC100420466","entrezGeneId":100420466},{"hugoGeneSymbol":"LOC100420467","entrezGeneId":100420467},{"hugoGeneSymbol":"LOC100420480","entrezGeneId":100420480},{"hugoGeneSymbol":"LOC100420482","entrezGeneId":100420482},{"hugoGeneSymbol":"LOC100420489","entrezGeneId":100420489},{"hugoGeneSymbol":"LOC100420494","entrezGeneId":100420494},{"hugoGeneSymbol":"LOC100420499","entrezGeneId":100420499},{"hugoGeneSymbol":"LOC100420500","entrezGeneId":100420500},{"hugoGeneSymbol":"LOC100420510","entrezGeneId":100420510},{"hugoGeneSymbol":"LOC100420513","entrezGeneId":100420513},{"hugoGeneSymbol":"LOC100420514","entrezGeneId":100420514},{"hugoGeneSymbol":"LOC100420515","entrezGeneId":100420515},{"hugoGeneSymbol":"LOC100420528","entrezGeneId":100420528},{"hugoGeneSymbol":"LOC100420531","entrezGeneId":100420531},{"hugoGeneSymbol":"LOC100420532","entrezGeneId":100420532},{"hugoGeneSymbol":"LOC100420534","entrezGeneId":100420534},{"hugoGeneSymbol":"LOC100420536","entrezGeneId":100420536},{"hugoGeneSymbol":"LOC100420539","entrezGeneId":100420539},{"hugoGeneSymbol":"LOC100420540","entrezGeneId":100420540},{"hugoGeneSymbol":"LOC100420541","entrezGeneId":100420541},{"hugoGeneSymbol":"LOC100420545","entrezGeneId":100420545},{"hugoGeneSymbol":"LOC100420547","entrezGeneId":100420547},{"hugoGeneSymbol":"LOC100420548","entrezGeneId":100420548},{"hugoGeneSymbol":"LOC100420549","entrezGeneId":100420549},{"hugoGeneSymbol":"LOC100420551","entrezGeneId":100420551},{"hugoGeneSymbol":"LOC100420563","entrezGeneId":100420563},{"hugoGeneSymbol":"LOC100420569","entrezGeneId":100420569},{"hugoGeneSymbol":"LOC100420571","entrezGeneId":100420571},{"hugoGeneSymbol":"LOC100420572","entrezGeneId":100420572},{"hugoGeneSymbol":"LOC100420575","entrezGeneId":100420575},{"hugoGeneSymbol":"LOC100420576","entrezGeneId":100420576},{"hugoGeneSymbol":"LOC100420580","entrezGeneId":100420580},{"hugoGeneSymbol":"LOC100420583","entrezGeneId":100420583},{"hugoGeneSymbol":"LOC100420584","entrezGeneId":100420584},{"hugoGeneSymbol":"LOC100420586","entrezGeneId":100420586},{"hugoGeneSymbol":"LOC100420587","entrezGeneId":100420587},{"hugoGeneSymbol":"LOC100420611","entrezGeneId":100420611},{"hugoGeneSymbol":"LOC100420615","entrezGeneId":100420615},{"hugoGeneSymbol":"LOC100420617","entrezGeneId":100420617},{"hugoGeneSymbol":"LOC100420618","entrezGeneId":100420618},{"hugoGeneSymbol":"LOC100420638","entrezGeneId":100420638},{"hugoGeneSymbol":"LOC100420641","entrezGeneId":100420641},{"hugoGeneSymbol":"LOC100420642","entrezGeneId":100420642},{"hugoGeneSymbol":"LOC100420644","entrezGeneId":100420644},{"hugoGeneSymbol":"LOC100420647","entrezGeneId":100420647},{"hugoGeneSymbol":"LOC100420648","entrezGeneId":100420648},{"hugoGeneSymbol":"LOC100420653","entrezGeneId":100420653},{"hugoGeneSymbol":"LOC100420658","entrezGeneId":100420658},{"hugoGeneSymbol":"LOC100420666","entrezGeneId":100420666},{"hugoGeneSymbol":"LOC100420667","entrezGeneId":100420667},{"hugoGeneSymbol":"LOC100420668","entrezGeneId":100420668},{"hugoGeneSymbol":"LOC100420669","entrezGeneId":100420669},{"hugoGeneSymbol":"LOC100420673","entrezGeneId":100420673},{"hugoGeneSymbol":"LOC100420679","entrezGeneId":100420679},{"hugoGeneSymbol":"LOC100420680","entrezGeneId":100420680},{"hugoGeneSymbol":"LOC100420683","entrezGeneId":100420683},{"hugoGeneSymbol":"LOC100420693","entrezGeneId":100420693},{"hugoGeneSymbol":"LOC100420707","entrezGeneId":100420707},{"hugoGeneSymbol":"LOC100420711","entrezGeneId":100420711},{"hugoGeneSymbol":"LOC100420738","entrezGeneId":100420738},{"hugoGeneSymbol":"LOC100420741","entrezGeneId":100420741},{"hugoGeneSymbol":"LOC100420742","entrezGeneId":100420742},{"hugoGeneSymbol":"LOC100420743","entrezGeneId":100420743},{"hugoGeneSymbol":"LOC100420746","entrezGeneId":100420746},{"hugoGeneSymbol":"LOC100420748","entrezGeneId":100420748},{"hugoGeneSymbol":"LOC100420758","entrezGeneId":100420758},{"hugoGeneSymbol":"LOC100420759","entrezGeneId":100420759},{"hugoGeneSymbol":"LOC100420760","entrezGeneId":100420760},{"hugoGeneSymbol":"LOC100420765","entrezGeneId":100420765},{"hugoGeneSymbol":"LOC100420769","entrezGeneId":100420769},{"hugoGeneSymbol":"LOC100420770","entrezGeneId":100420770},{"hugoGeneSymbol":"LOC100420772","entrezGeneId":100420772},{"hugoGeneSymbol":"LOC100420774","entrezGeneId":100420774},{"hugoGeneSymbol":"LOC100420775","entrezGeneId":100420775},{"hugoGeneSymbol":"LOC100420778","entrezGeneId":100420778},{"hugoGeneSymbol":"LOC100420779","entrezGeneId":100420779},{"hugoGeneSymbol":"LOC100420788","entrezGeneId":100420788},{"hugoGeneSymbol":"LOC100420789","entrezGeneId":100420789},{"hugoGeneSymbol":"LOC100420790","entrezGeneId":100420790},{"hugoGeneSymbol":"LOC100420794","entrezGeneId":100420794},{"hugoGeneSymbol":"LOC100420797","entrezGeneId":100420797},{"hugoGeneSymbol":"LOC100420798","entrezGeneId":100420798},{"hugoGeneSymbol":"LOC100420800","entrezGeneId":100420800},{"hugoGeneSymbol":"LOC100420801","entrezGeneId":100420801},{"hugoGeneSymbol":"LOC100420802","entrezGeneId":100420802},{"hugoGeneSymbol":"LOC100420803","entrezGeneId":100420803},{"hugoGeneSymbol":"LOC100420804","entrezGeneId":100420804},{"hugoGeneSymbol":"LOC100420818","entrezGeneId":100420818},{"hugoGeneSymbol":"LOC100420821","entrezGeneId":100420821},{"hugoGeneSymbol":"LOC100420828","entrezGeneId":100420828},{"hugoGeneSymbol":"LOC100420831","entrezGeneId":100420831},{"hugoGeneSymbol":"LOC100420832","entrezGeneId":100420832},{"hugoGeneSymbol":"LOC100420839","entrezGeneId":100420839},{"hugoGeneSymbol":"LOC100420845","entrezGeneId":100420845},{"hugoGeneSymbol":"LOC100420848","entrezGeneId":100420848},{"hugoGeneSymbol":"LOC100420850","entrezGeneId":100420850},{"hugoGeneSymbol":"LOC100420851","entrezGeneId":100420851},{"hugoGeneSymbol":"LOC100420852","entrezGeneId":100420852},{"hugoGeneSymbol":"LOC100420853","entrezGeneId":100420853},{"hugoGeneSymbol":"LOC100420863","entrezGeneId":100420863},{"hugoGeneSymbol":"LOC100420864","entrezGeneId":100420864},{"hugoGeneSymbol":"LOC100420869","entrezGeneId":100420869},{"hugoGeneSymbol":"LOC100420872","entrezGeneId":100420872},{"hugoGeneSymbol":"LOC100420878","entrezGeneId":100420878},{"hugoGeneSymbol":"LOC100420879","entrezGeneId":100420879},{"hugoGeneSymbol":"LOC100420880","entrezGeneId":100420880},{"hugoGeneSymbol":"LOC100420885","entrezGeneId":100420885},{"hugoGeneSymbol":"LOC100420887","entrezGeneId":100420887},{"hugoGeneSymbol":"LOC100420888","entrezGeneId":100420888},{"hugoGeneSymbol":"LOC100420889","entrezGeneId":100420889},{"hugoGeneSymbol":"LOC100420890","entrezGeneId":100420890},{"hugoGeneSymbol":"LOC100420892","entrezGeneId":100420892},{"hugoGeneSymbol":"LOC100420893","entrezGeneId":100420893},{"hugoGeneSymbol":"LOC100420895","entrezGeneId":100420895},{"hugoGeneSymbol":"LOC100420896","entrezGeneId":100420896},{"hugoGeneSymbol":"LOC100420897","entrezGeneId":100420897},{"hugoGeneSymbol":"LOC100420899","entrezGeneId":100420899},{"hugoGeneSymbol":"LOC100420902","entrezGeneId":100420902},{"hugoGeneSymbol":"LOC100420904","entrezGeneId":100420904},{"hugoGeneSymbol":"LOC100420907","entrezGeneId":100420907},{"hugoGeneSymbol":"LOC100420911","entrezGeneId":100420911},{"hugoGeneSymbol":"LOC100420925","entrezGeneId":100420925},{"hugoGeneSymbol":"LOC100420928","entrezGeneId":100420928},{"hugoGeneSymbol":"LOC100420929","entrezGeneId":100420929},{"hugoGeneSymbol":"LOC100420930","entrezGeneId":100420930},{"hugoGeneSymbol":"LOC100420939","entrezGeneId":100420939},{"hugoGeneSymbol":"LOC100420940","entrezGeneId":100420940},{"hugoGeneSymbol":"LOC100420944","entrezGeneId":100420944},{"hugoGeneSymbol":"LOC100420948","entrezGeneId":100420948},{"hugoGeneSymbol":"LOC100420949","entrezGeneId":100420949},{"hugoGeneSymbol":"LOC100420951","entrezGeneId":100420951},{"hugoGeneSymbol":"LOC100420954","entrezGeneId":100420954},{"hugoGeneSymbol":"LOC100420955","entrezGeneId":100420955},{"hugoGeneSymbol":"LOC100420957","entrezGeneId":100420957},{"hugoGeneSymbol":"LOC100420958","entrezGeneId":100420958},{"hugoGeneSymbol":"LOC100420966","entrezGeneId":100420966},{"hugoGeneSymbol":"LOC100420967","entrezGeneId":100420967},{"hugoGeneSymbol":"LOC100420981","entrezGeneId":100420981},{"hugoGeneSymbol":"LOC100420982","entrezGeneId":100420982},{"hugoGeneSymbol":"LOC100420983","entrezGeneId":100420983},{"hugoGeneSymbol":"LOC100420990","entrezGeneId":100420990},{"hugoGeneSymbol":"LOC100421006","entrezGeneId":100421006},{"hugoGeneSymbol":"LOC100421009","entrezGeneId":100421009},{"hugoGeneSymbol":"LOC100421010","entrezGeneId":100421010},{"hugoGeneSymbol":"LOC100421022","entrezGeneId":100421022},{"hugoGeneSymbol":"LOC100421023","entrezGeneId":100421023},{"hugoGeneSymbol":"LOC100421028","entrezGeneId":100421028},{"hugoGeneSymbol":"LOC100421029","entrezGeneId":100421029},{"hugoGeneSymbol":"LOC100421031","entrezGeneId":100421031},{"hugoGeneSymbol":"LOC100421039","entrezGeneId":100421039},{"hugoGeneSymbol":"LOC100421043","entrezGeneId":100421043},{"hugoGeneSymbol":"LOC100421061","entrezGeneId":100421061},{"hugoGeneSymbol":"LOC100421064","entrezGeneId":100421064},{"hugoGeneSymbol":"LOC100421071","entrezGeneId":100421071},{"hugoGeneSymbol":"LOC100421074","entrezGeneId":100421074},{"hugoGeneSymbol":"LOC100421087","entrezGeneId":100421087},{"hugoGeneSymbol":"LOC100421091","entrezGeneId":100421091},{"hugoGeneSymbol":"LOC100421092","entrezGeneId":100421092},{"hugoGeneSymbol":"LOC100421093","entrezGeneId":100421093},{"hugoGeneSymbol":"LOC100421094","entrezGeneId":100421094},{"hugoGeneSymbol":"LOC100421100","entrezGeneId":100421100},{"hugoGeneSymbol":"LOC100421108","entrezGeneId":100421108},{"hugoGeneSymbol":"LOC100421109","entrezGeneId":100421109},{"hugoGeneSymbol":"LOC100421110","entrezGeneId":100421110},{"hugoGeneSymbol":"LOC100421116","entrezGeneId":100421116},{"hugoGeneSymbol":"LOC100421121","entrezGeneId":100421121},{"hugoGeneSymbol":"LOC100421122","entrezGeneId":100421122},{"hugoGeneSymbol":"LOC100421126","entrezGeneId":100421126},{"hugoGeneSymbol":"LOC100421130","entrezGeneId":100421130},{"hugoGeneSymbol":"LOC100421141","entrezGeneId":100421141},{"hugoGeneSymbol":"LOC100421142","entrezGeneId":100421142},{"hugoGeneSymbol":"LOC100421154","entrezGeneId":100421154},{"hugoGeneSymbol":"LOC100421158","entrezGeneId":100421158},{"hugoGeneSymbol":"LOC100421160","entrezGeneId":100421160},{"hugoGeneSymbol":"LOC100421161","entrezGeneId":100421161},{"hugoGeneSymbol":"LOC100421165","entrezGeneId":100421165},{"hugoGeneSymbol":"LOC100421169","entrezGeneId":100421169},{"hugoGeneSymbol":"LOC100421171","entrezGeneId":100421171},{"hugoGeneSymbol":"LOC100421173","entrezGeneId":100421173},{"hugoGeneSymbol":"LOC100421174","entrezGeneId":100421174},{"hugoGeneSymbol":"LOC100421179","entrezGeneId":100421179},{"hugoGeneSymbol":"LOC100421184","entrezGeneId":100421184},{"hugoGeneSymbol":"LOC100421197","entrezGeneId":100421197},{"hugoGeneSymbol":"LOC100421201","entrezGeneId":100421201},{"hugoGeneSymbol":"LOC100421202","entrezGeneId":100421202},{"hugoGeneSymbol":"LOC100421204","entrezGeneId":100421204},{"hugoGeneSymbol":"LOC100421207","entrezGeneId":100421207},{"hugoGeneSymbol":"LOC100421235","entrezGeneId":100421235},{"hugoGeneSymbol":"LOC100421238","entrezGeneId":100421238},{"hugoGeneSymbol":"LOC100421246","entrezGeneId":100421246},{"hugoGeneSymbol":"LOC100421248","entrezGeneId":100421248},{"hugoGeneSymbol":"LOC100421250","entrezGeneId":100421250},{"hugoGeneSymbol":"LOC100421256","entrezGeneId":100421256},{"hugoGeneSymbol":"LOC100421257","entrezGeneId":100421257},{"hugoGeneSymbol":"LOC100421258","entrezGeneId":100421258},{"hugoGeneSymbol":"LOC100421259","entrezGeneId":100421259},{"hugoGeneSymbol":"LOC100421267","entrezGeneId":100421267},{"hugoGeneSymbol":"LOC100421269","entrezGeneId":100421269},{"hugoGeneSymbol":"LOC100421273","entrezGeneId":100421273},{"hugoGeneSymbol":"LOC100421279","entrezGeneId":100421279},{"hugoGeneSymbol":"LOC100421281","entrezGeneId":100421281},{"hugoGeneSymbol":"LOC100421287","entrezGeneId":100421287},{"hugoGeneSymbol":"LOC100421288","entrezGeneId":100421288},{"hugoGeneSymbol":"LOC100421289","entrezGeneId":100421289},{"hugoGeneSymbol":"LOC100421292","entrezGeneId":100421292},{"hugoGeneSymbol":"LOC100421293","entrezGeneId":100421293},{"hugoGeneSymbol":"LOC100421294","entrezGeneId":100421294},{"hugoGeneSymbol":"LOC100421300","entrezGeneId":100421300},{"hugoGeneSymbol":"LOC100421303","entrezGeneId":100421303},{"hugoGeneSymbol":"LOC100421306","entrezGeneId":100421306},{"hugoGeneSymbol":"LOC100421308","entrezGeneId":100421308},{"hugoGeneSymbol":"LOC100421309","entrezGeneId":100421309},{"hugoGeneSymbol":"LOC100421330","entrezGeneId":100421330},{"hugoGeneSymbol":"LOC100421332","entrezGeneId":100421332},{"hugoGeneSymbol":"LOC100421336","entrezGeneId":100421336},{"hugoGeneSymbol":"LOC100421343","entrezGeneId":100421343},{"hugoGeneSymbol":"LOC100421344","entrezGeneId":100421344},{"hugoGeneSymbol":"LOC100421347","entrezGeneId":100421347},{"hugoGeneSymbol":"LOC100421349","entrezGeneId":100421349},{"hugoGeneSymbol":"LOC100421358","entrezGeneId":100421358},{"hugoGeneSymbol":"LOC100421361","entrezGeneId":100421361},{"hugoGeneSymbol":"LOC100421362","entrezGeneId":100421362},{"hugoGeneSymbol":"LOC100421364","entrezGeneId":100421364},{"hugoGeneSymbol":"LOC100421368","entrezGeneId":100421368},{"hugoGeneSymbol":"LOC100421372","entrezGeneId":100421372},{"hugoGeneSymbol":"LOC100421385","entrezGeneId":100421385},{"hugoGeneSymbol":"LOC100421386","entrezGeneId":100421386},{"hugoGeneSymbol":"LOC100421387","entrezGeneId":100421387},{"hugoGeneSymbol":"LOC100421400","entrezGeneId":100421400},{"hugoGeneSymbol":"LOC100421401","entrezGeneId":100421401},{"hugoGeneSymbol":"LOC100421402","entrezGeneId":100421402},{"hugoGeneSymbol":"LOC100421404","entrezGeneId":100421404},{"hugoGeneSymbol":"LOC100421409","entrezGeneId":100421409},{"hugoGeneSymbol":"LOC100421414","entrezGeneId":100421414},{"hugoGeneSymbol":"LOC100421417","entrezGeneId":100421417},{"hugoGeneSymbol":"LOC100421419","entrezGeneId":100421419},{"hugoGeneSymbol":"LOC100421437","entrezGeneId":100421437},{"hugoGeneSymbol":"LOC100421438","entrezGeneId":100421438},{"hugoGeneSymbol":"LOC100421444","entrezGeneId":100421444},{"hugoGeneSymbol":"LOC100421446","entrezGeneId":100421446},{"hugoGeneSymbol":"LOC100421462","entrezGeneId":100421462},{"hugoGeneSymbol":"LOC100421465","entrezGeneId":100421465},{"hugoGeneSymbol":"LOC100421468","entrezGeneId":100421468},{"hugoGeneSymbol":"LOC100421471","entrezGeneId":100421471},{"hugoGeneSymbol":"LOC100421472","entrezGeneId":100421472},{"hugoGeneSymbol":"LOC100421474","entrezGeneId":100421474},{"hugoGeneSymbol":"LOC100421482","entrezGeneId":100421482},{"hugoGeneSymbol":"LOC100421483","entrezGeneId":100421483},{"hugoGeneSymbol":"LOC100421490","entrezGeneId":100421490},{"hugoGeneSymbol":"LOC100421493","entrezGeneId":100421493},{"hugoGeneSymbol":"LOC100421494","entrezGeneId":100421494},{"hugoGeneSymbol":"LOC100421504","entrezGeneId":100421504},{"hugoGeneSymbol":"LOC100421505","entrezGeneId":100421505},{"hugoGeneSymbol":"LOC100421508","entrezGeneId":100421508},{"hugoGeneSymbol":"LOC100421510","entrezGeneId":100421510},{"hugoGeneSymbol":"LOC100421511","entrezGeneId":100421511},{"hugoGeneSymbol":"LOC100421513","entrezGeneId":100421513},{"hugoGeneSymbol":"LOC100421517","entrezGeneId":100421517},{"hugoGeneSymbol":"LOC100421518","entrezGeneId":100421518},{"hugoGeneSymbol":"LOC100421523","entrezGeneId":100421523},{"hugoGeneSymbol":"LOC100421525","entrezGeneId":100421525},{"hugoGeneSymbol":"LOC100421527","entrezGeneId":100421527},{"hugoGeneSymbol":"LOC100421536","entrezGeneId":100421536},{"hugoGeneSymbol":"LOC100421537","entrezGeneId":100421537},{"hugoGeneSymbol":"LOC100421541","entrezGeneId":100421541},{"hugoGeneSymbol":"LOC100421548","entrezGeneId":100421548},{"hugoGeneSymbol":"LOC100421558","entrezGeneId":100421558},{"hugoGeneSymbol":"LOC100421559","entrezGeneId":100421559},{"hugoGeneSymbol":"LOC100421561","entrezGeneId":100421561},{"hugoGeneSymbol":"LOC100421569","entrezGeneId":100421569},{"hugoGeneSymbol":"LOC100421574","entrezGeneId":100421574},{"hugoGeneSymbol":"LOC100421580","entrezGeneId":100421580},{"hugoGeneSymbol":"LOC100421583","entrezGeneId":100421583},{"hugoGeneSymbol":"LOC100421591","entrezGeneId":100421591},{"hugoGeneSymbol":"LOC100421594","entrezGeneId":100421594},{"hugoGeneSymbol":"LOC100421595","entrezGeneId":100421595},{"hugoGeneSymbol":"LOC100421597","entrezGeneId":100421597},{"hugoGeneSymbol":"LOC100421602","entrezGeneId":100421602},{"hugoGeneSymbol":"LOC100421603","entrezGeneId":100421603},{"hugoGeneSymbol":"LOC100421606","entrezGeneId":100421606},{"hugoGeneSymbol":"LOC100421611","entrezGeneId":100421611},{"hugoGeneSymbol":"LOC100421614","entrezGeneId":100421614},{"hugoGeneSymbol":"LOC100421617","entrezGeneId":100421617},{"hugoGeneSymbol":"LOC100421618","entrezGeneId":100421618},{"hugoGeneSymbol":"LOC100421620","entrezGeneId":100421620},{"hugoGeneSymbol":"LOC100421622","entrezGeneId":100421622},{"hugoGeneSymbol":"LOC100421623","entrezGeneId":100421623},{"hugoGeneSymbol":"LOC100421630","entrezGeneId":100421630},{"hugoGeneSymbol":"LOC100421632","entrezGeneId":100421632},{"hugoGeneSymbol":"LOC100421636","entrezGeneId":100421636},{"hugoGeneSymbol":"LOC100421637","entrezGeneId":100421637},{"hugoGeneSymbol":"LOC100421641","entrezGeneId":100421641},{"hugoGeneSymbol":"LOC100421642","entrezGeneId":100421642},{"hugoGeneSymbol":"LOC100421646","entrezGeneId":100421646},{"hugoGeneSymbol":"LOC100421651","entrezGeneId":100421651},{"hugoGeneSymbol":"LOC100421655","entrezGeneId":100421655},{"hugoGeneSymbol":"LOC100421658","entrezGeneId":100421658},{"hugoGeneSymbol":"LOC100421663","entrezGeneId":100421663},{"hugoGeneSymbol":"LOC100421664","entrezGeneId":100421664},{"hugoGeneSymbol":"LOC100421667","entrezGeneId":100421667},{"hugoGeneSymbol":"LOC100421669","entrezGeneId":100421669},{"hugoGeneSymbol":"LOC100421670","entrezGeneId":100421670},{"hugoGeneSymbol":"LOC100421672","entrezGeneId":100421672},{"hugoGeneSymbol":"LOC100421673","entrezGeneId":100421673},{"hugoGeneSymbol":"LOC100421674","entrezGeneId":100421674},{"hugoGeneSymbol":"LOC100421684","entrezGeneId":100421684},{"hugoGeneSymbol":"LOC100421685","entrezGeneId":100421685},{"hugoGeneSymbol":"LOC100421689","entrezGeneId":100421689},{"hugoGeneSymbol":"LOC100421690","entrezGeneId":100421690},{"hugoGeneSymbol":"LOC100421691","entrezGeneId":100421691},{"hugoGeneSymbol":"LOC100421692","entrezGeneId":100421692},{"hugoGeneSymbol":"LOC100421693","entrezGeneId":100421693},{"hugoGeneSymbol":"LOC100421721","entrezGeneId":100421721},{"hugoGeneSymbol":"LOC100421730","entrezGeneId":100421730},{"hugoGeneSymbol":"LOC100421737","entrezGeneId":100421737},{"hugoGeneSymbol":"LOC100421742","entrezGeneId":100421742},{"hugoGeneSymbol":"LOC100421746","entrezGeneId":100421746},{"hugoGeneSymbol":"LOC100421749","entrezGeneId":100421749},{"hugoGeneSymbol":"LOC100421751","entrezGeneId":100421751},{"hugoGeneSymbol":"LOC100421765","entrezGeneId":100421765},{"hugoGeneSymbol":"LOC100421775","entrezGeneId":100421775},{"hugoGeneSymbol":"LOC100421782","entrezGeneId":100421782},{"hugoGeneSymbol":"LOC100421787","entrezGeneId":100421787},{"hugoGeneSymbol":"LOC100421788","entrezGeneId":100421788},{"hugoGeneSymbol":"LOC100421793","entrezGeneId":100421793},{"hugoGeneSymbol":"LOC100421798","entrezGeneId":100421798},{"hugoGeneSymbol":"LOC100421802","entrezGeneId":100421802},{"hugoGeneSymbol":"LOC100421808","entrezGeneId":100421808},{"hugoGeneSymbol":"LOC100421809","entrezGeneId":100421809},{"hugoGeneSymbol":"LOC100421810","entrezGeneId":100421810},{"hugoGeneSymbol":"LOC100421811","entrezGeneId":100421811},{"hugoGeneSymbol":"LOC100421817","entrezGeneId":100421817},{"hugoGeneSymbol":"LOC100421819","entrezGeneId":100421819},{"hugoGeneSymbol":"LOC100421821","entrezGeneId":100421821},{"hugoGeneSymbol":"LOC100421822","entrezGeneId":100421822},{"hugoGeneSymbol":"LOC100421824","entrezGeneId":100421824},{"hugoGeneSymbol":"LOC100421840","entrezGeneId":100421840},{"hugoGeneSymbol":"LOC100421842","entrezGeneId":100421842},{"hugoGeneSymbol":"LOC100421855","entrezGeneId":100421855},{"hugoGeneSymbol":"LOC100421863","entrezGeneId":100421863},{"hugoGeneSymbol":"LOC100421868","entrezGeneId":100421868},{"hugoGeneSymbol":"LOC100421870","entrezGeneId":100421870},{"hugoGeneSymbol":"LOC100421893","entrezGeneId":100421893},{"hugoGeneSymbol":"LOC100421894","entrezGeneId":100421894},{"hugoGeneSymbol":"LOC100421901","entrezGeneId":100421901},{"hugoGeneSymbol":"LOC100421910","entrezGeneId":100421910},{"hugoGeneSymbol":"LOC100421925","entrezGeneId":100421925},{"hugoGeneSymbol":"LOC100421976","entrezGeneId":100421976},{"hugoGeneSymbol":"LOC100421985","entrezGeneId":100421985},{"hugoGeneSymbol":"LOC100422013","entrezGeneId":100422013},{"hugoGeneSymbol":"LOC100422020","entrezGeneId":100422020},{"hugoGeneSymbol":"LOC100422021","entrezGeneId":100422021},{"hugoGeneSymbol":"LOC100422022","entrezGeneId":100422022},{"hugoGeneSymbol":"LOC100422024","entrezGeneId":100422024},{"hugoGeneSymbol":"LOC100422026","entrezGeneId":100422026},{"hugoGeneSymbol":"LOC100422029","entrezGeneId":100422029},{"hugoGeneSymbol":"LOC100422032","entrezGeneId":100422032},{"hugoGeneSymbol":"LOC100422044","entrezGeneId":100422044},{"hugoGeneSymbol":"LOC100422053","entrezGeneId":100422053},{"hugoGeneSymbol":"LOC100422076","entrezGeneId":100422076},{"hugoGeneSymbol":"LOC100422091","entrezGeneId":100422091},{"hugoGeneSymbol":"LOC100422094","entrezGeneId":100422094},{"hugoGeneSymbol":"LOC100422106","entrezGeneId":100422106},{"hugoGeneSymbol":"LOC100422188","entrezGeneId":100422188},{"hugoGeneSymbol":"LOC100422189","entrezGeneId":100422189},{"hugoGeneSymbol":"LOC100422190","entrezGeneId":100422190},{"hugoGeneSymbol":"LOC100422194","entrezGeneId":100422194},{"hugoGeneSymbol":"LOC100422204","entrezGeneId":100422204},{"hugoGeneSymbol":"LOC100422209","entrezGeneId":100422209},{"hugoGeneSymbol":"LOC100422212","entrezGeneId":100422212},{"hugoGeneSymbol":"LOC100422213","entrezGeneId":100422213},{"hugoGeneSymbol":"LOC100422225","entrezGeneId":100422225},{"hugoGeneSymbol":"LOC100422227","entrezGeneId":100422227},{"hugoGeneSymbol":"LOC100422232","entrezGeneId":100422232},{"hugoGeneSymbol":"LOC100422233","entrezGeneId":100422233},{"hugoGeneSymbol":"LOC100422241","entrezGeneId":100422241},{"hugoGeneSymbol":"LOC100422263","entrezGeneId":100422263},{"hugoGeneSymbol":"LOC100422267","entrezGeneId":100422267},{"hugoGeneSymbol":"LOC100422271","entrezGeneId":100422271},{"hugoGeneSymbol":"LOC100422274","entrezGeneId":100422274},{"hugoGeneSymbol":"LOC100422275","entrezGeneId":100422275},{"hugoGeneSymbol":"LOC100422285","entrezGeneId":100422285},{"hugoGeneSymbol":"LOC100422286","entrezGeneId":100422286},{"hugoGeneSymbol":"LOC100422287","entrezGeneId":100422287},{"hugoGeneSymbol":"LOC100422292","entrezGeneId":100422292},{"hugoGeneSymbol":"LOC100422294","entrezGeneId":100422294},{"hugoGeneSymbol":"LOC100422296","entrezGeneId":100422296},{"hugoGeneSymbol":"LOC100422298","entrezGeneId":100422298},{"hugoGeneSymbol":"LOC100422300","entrezGeneId":100422300},{"hugoGeneSymbol":"LOC100422315","entrezGeneId":100422315},{"hugoGeneSymbol":"LOC100422317","entrezGeneId":100422317},{"hugoGeneSymbol":"LOC100422319","entrezGeneId":100422319},{"hugoGeneSymbol":"LOC100422324","entrezGeneId":100422324},{"hugoGeneSymbol":"LOC100422325","entrezGeneId":100422325},{"hugoGeneSymbol":"LOC100422334","entrezGeneId":100422334},{"hugoGeneSymbol":"LOC100422337","entrezGeneId":100422337},{"hugoGeneSymbol":"LOC100422338","entrezGeneId":100422338},{"hugoGeneSymbol":"LOC100422352","entrezGeneId":100422352},{"hugoGeneSymbol":"LOC100422368","entrezGeneId":100422368},{"hugoGeneSymbol":"LOC100422369","entrezGeneId":100422369},{"hugoGeneSymbol":"LOC100422375","entrezGeneId":100422375},{"hugoGeneSymbol":"LOC100422376","entrezGeneId":100422376},{"hugoGeneSymbol":"LOC100422382","entrezGeneId":100422382},{"hugoGeneSymbol":"LOC100422398","entrezGeneId":100422398},{"hugoGeneSymbol":"LOC100422399","entrezGeneId":100422399},{"hugoGeneSymbol":"LOC100422402","entrezGeneId":100422402},{"hugoGeneSymbol":"LOC100422408","entrezGeneId":100422408},{"hugoGeneSymbol":"LOC100422413","entrezGeneId":100422413},{"hugoGeneSymbol":"LOC100422414","entrezGeneId":100422414},{"hugoGeneSymbol":"LOC100422416","entrezGeneId":100422416},{"hugoGeneSymbol":"LOC100422417","entrezGeneId":100422417},{"hugoGeneSymbol":"LOC100422418","entrezGeneId":100422418},{"hugoGeneSymbol":"LOC100422426","entrezGeneId":100422426},{"hugoGeneSymbol":"LOC100422432","entrezGeneId":100422432},{"hugoGeneSymbol":"LOC100422434","entrezGeneId":100422434},{"hugoGeneSymbol":"LOC100422438","entrezGeneId":100422438},{"hugoGeneSymbol":"LOC100422440","entrezGeneId":100422440},{"hugoGeneSymbol":"LOC100422441","entrezGeneId":100422441},{"hugoGeneSymbol":"LOC100422449","entrezGeneId":100422449},{"hugoGeneSymbol":"LOC100422453","entrezGeneId":100422453},{"hugoGeneSymbol":"LOC100422456","entrezGeneId":100422456},{"hugoGeneSymbol":"LOC100422463","entrezGeneId":100422463},{"hugoGeneSymbol":"LOC100422471","entrezGeneId":100422471},{"hugoGeneSymbol":"LOC100422473","entrezGeneId":100422473},{"hugoGeneSymbol":"LOC100422478","entrezGeneId":100422478},{"hugoGeneSymbol":"LOC100422479","entrezGeneId":100422479},{"hugoGeneSymbol":"LOC100422490","entrezGeneId":100422490},{"hugoGeneSymbol":"LOC100422491","entrezGeneId":100422491},{"hugoGeneSymbol":"LOC100422492","entrezGeneId":100422492},{"hugoGeneSymbol":"LOC100422493","entrezGeneId":100422493},{"hugoGeneSymbol":"LOC100422495","entrezGeneId":100422495},{"hugoGeneSymbol":"LOC100422497","entrezGeneId":100422497},{"hugoGeneSymbol":"LOC100422500","entrezGeneId":100422500},{"hugoGeneSymbol":"LOC100422501","entrezGeneId":100422501},{"hugoGeneSymbol":"LOC100422502","entrezGeneId":100422502},{"hugoGeneSymbol":"LOC100422510","entrezGeneId":100422510},{"hugoGeneSymbol":"LOC100422513","entrezGeneId":100422513},{"hugoGeneSymbol":"LOC100422519","entrezGeneId":100422519},{"hugoGeneSymbol":"LOC100422524","entrezGeneId":100422524},{"hugoGeneSymbol":"LOC100422526","entrezGeneId":100422526},{"hugoGeneSymbol":"LOC100422528","entrezGeneId":100422528},{"hugoGeneSymbol":"LOC100422529","entrezGeneId":100422529},{"hugoGeneSymbol":"LOC100422530","entrezGeneId":100422530},{"hugoGeneSymbol":"LOC100422537","entrezGeneId":100422537},{"hugoGeneSymbol":"LOC100422538","entrezGeneId":100422538},{"hugoGeneSymbol":"LOC100422548","entrezGeneId":100422548},{"hugoGeneSymbol":"LOC100422549","entrezGeneId":100422549},{"hugoGeneSymbol":"LOC100422556","entrezGeneId":100422556},{"hugoGeneSymbol":"LOC100422559","entrezGeneId":100422559},{"hugoGeneSymbol":"LOC100422561","entrezGeneId":100422561},{"hugoGeneSymbol":"LOC100422562","entrezGeneId":100422562},{"hugoGeneSymbol":"LOC100422564","entrezGeneId":100422564},{"hugoGeneSymbol":"LOC100422580","entrezGeneId":100422580},{"hugoGeneSymbol":"LOC100422587","entrezGeneId":100422587},{"hugoGeneSymbol":"LOC100422593","entrezGeneId":100422593},{"hugoGeneSymbol":"LOC100422604","entrezGeneId":100422604},{"hugoGeneSymbol":"LOC100422610","entrezGeneId":100422610},{"hugoGeneSymbol":"LOC100422614","entrezGeneId":100422614},{"hugoGeneSymbol":"LOC100422622","entrezGeneId":100422622},{"hugoGeneSymbol":"LOC100422623","entrezGeneId":100422623},{"hugoGeneSymbol":"LOC100422627","entrezGeneId":100422627},{"hugoGeneSymbol":"LOC100422628","entrezGeneId":100422628},{"hugoGeneSymbol":"LOC100422633","entrezGeneId":100422633},{"hugoGeneSymbol":"LOC100422637","entrezGeneId":100422637},{"hugoGeneSymbol":"LOC100422638","entrezGeneId":100422638},{"hugoGeneSymbol":"LOC100422639","entrezGeneId":100422639},{"hugoGeneSymbol":"LOC100422640","entrezGeneId":100422640},{"hugoGeneSymbol":"LOC100422641","entrezGeneId":100422641},{"hugoGeneSymbol":"LOC100422645","entrezGeneId":100422645},{"hugoGeneSymbol":"LOC100422646","entrezGeneId":100422646},{"hugoGeneSymbol":"LOC100422669","entrezGeneId":100422669},{"hugoGeneSymbol":"LOC100422671","entrezGeneId":100422671},{"hugoGeneSymbol":"LOC100422685","entrezGeneId":100422685},{"hugoGeneSymbol":"LOC100422687","entrezGeneId":100422687},{"hugoGeneSymbol":"LOC100422693","entrezGeneId":100422693},{"hugoGeneSymbol":"LOC100422694","entrezGeneId":100422694},{"hugoGeneSymbol":"LOC100422695","entrezGeneId":100422695},{"hugoGeneSymbol":"LOC100422696","entrezGeneId":100422696},{"hugoGeneSymbol":"LOC100422710","entrezGeneId":100422710},{"hugoGeneSymbol":"LOC100422713","entrezGeneId":100422713},{"hugoGeneSymbol":"LOC100422717","entrezGeneId":100422717},{"hugoGeneSymbol":"LOC100422730","entrezGeneId":100422730},{"hugoGeneSymbol":"LOC100422781","entrezGeneId":100422781},{"hugoGeneSymbol":"LOC100423044","entrezGeneId":100423044},{"hugoGeneSymbol":"LOC100431174","entrezGeneId":100431174},{"hugoGeneSymbol":"LOC100431175","entrezGeneId":100431175},{"hugoGeneSymbol":"LOC100462648","entrezGeneId":100462648},{"hugoGeneSymbol":"LOC100462652","entrezGeneId":100462652},{"hugoGeneSymbol":"LOC100462988","entrezGeneId":100462988},{"hugoGeneSymbol":"LOC100499191","entrezGeneId":100499191},{"hugoGeneSymbol":"LOC100499192","entrezGeneId":100499192},{"hugoGeneSymbol":"LOC100499194","entrezGeneId":100499194},{"hugoGeneSymbol":"LOC100499223","entrezGeneId":100499223},{"hugoGeneSymbol":"LOC100499399","entrezGeneId":100499399},{"hugoGeneSymbol":"LOC100499471","entrezGeneId":100499471},{"hugoGeneSymbol":"LOC100499489","entrezGeneId":100499489},{"hugoGeneSymbol":"LOC100499496","entrezGeneId":100499496},{"hugoGeneSymbol":"LOC100499497","entrezGeneId":100499497},{"hugoGeneSymbol":"LOC100500719","entrezGeneId":100500719},{"hugoGeneSymbol":"LOC100500773","entrezGeneId":100500773},{"hugoGeneSymbol":"LOC100500934","entrezGeneId":100500934},{"hugoGeneSymbol":"LOC100502572","entrezGeneId":100502572},{"hugoGeneSymbol":"LOC100505498","entrezGeneId":100505498},{"hugoGeneSymbol":"LOC100505501","entrezGeneId":100505501},{"hugoGeneSymbol":"LOC100505502","entrezGeneId":100505502},{"hugoGeneSymbol":"LOC100505524","entrezGeneId":100505524},{"hugoGeneSymbol":"LOC100505534","entrezGeneId":100505534},{"hugoGeneSymbol":"LOC100505549","entrezGeneId":100505549},{"hugoGeneSymbol":"LOC100505555","entrezGeneId":100505555},{"hugoGeneSymbol":"LOC100505570","entrezGeneId":100505570},{"hugoGeneSymbol":"LOC100505585","entrezGeneId":100505585},{"hugoGeneSymbol":"LOC100505588","entrezGeneId":100505588},{"hugoGeneSymbol":"LOC100505622","entrezGeneId":100505622},{"hugoGeneSymbol":"LOC100505635","entrezGeneId":100505635},{"hugoGeneSymbol":"LOC100505642","entrezGeneId":100505642},{"hugoGeneSymbol":"LOC100505658","entrezGeneId":100505658},{"hugoGeneSymbol":"LOC100505664","entrezGeneId":100505664},{"hugoGeneSymbol":"LOC100505685","entrezGeneId":100505685},{"hugoGeneSymbol":"LOC100505690","entrezGeneId":100505690},{"hugoGeneSymbol":"LOC100505694","entrezGeneId":100505694},{"hugoGeneSymbol":"LOC100505711","entrezGeneId":100505711},{"hugoGeneSymbol":"LOC100505715","entrezGeneId":100505715},{"hugoGeneSymbol":"LOC100505716","entrezGeneId":100505716},{"hugoGeneSymbol":"LOC100505728","entrezGeneId":100505728},{"hugoGeneSymbol":"LOC100505736","entrezGeneId":100505736},{"hugoGeneSymbol":"LOC100505774","entrezGeneId":100505774},{"hugoGeneSymbol":"LOC100505782","entrezGeneId":100505782},{"hugoGeneSymbol":"LOC100505788","entrezGeneId":100505788},{"hugoGeneSymbol":"LOC100505795","entrezGeneId":100505795},{"hugoGeneSymbol":"LOC100505796","entrezGeneId":100505796},{"hugoGeneSymbol":"LOC100505797","entrezGeneId":100505797},{"hugoGeneSymbol":"LOC100505824","entrezGeneId":100505824},{"hugoGeneSymbol":"LOC100505841","entrezGeneId":100505841},{"hugoGeneSymbol":"LOC100505851","entrezGeneId":100505851},{"hugoGeneSymbol":"LOC100505874","entrezGeneId":100505874},{"hugoGeneSymbol":"LOC100505909","entrezGeneId":100505909},{"hugoGeneSymbol":"LOC100505912","entrezGeneId":100505912},{"hugoGeneSymbol":"LOC100505915","entrezGeneId":100505915},{"hugoGeneSymbol":"LOC100505918","entrezGeneId":100505918},{"hugoGeneSymbol":"LOC100505921","entrezGeneId":100505921},{"hugoGeneSymbol":"LOC100505938","entrezGeneId":100505938},{"hugoGeneSymbol":"LOC100505942","entrezGeneId":100505942},{"hugoGeneSymbol":"LOC100505978","entrezGeneId":100505978},{"hugoGeneSymbol":"LOC100505985","entrezGeneId":100505985},{"hugoGeneSymbol":"LOC100505995","entrezGeneId":100505995},{"hugoGeneSymbol":"LOC100506016","entrezGeneId":100506016},{"hugoGeneSymbol":"LOC100506022","entrezGeneId":100506022},{"hugoGeneSymbol":"LOC100506023","entrezGeneId":100506023},{"hugoGeneSymbol":"LOC100506055","entrezGeneId":100506055},{"hugoGeneSymbol":"LOC100506071","entrezGeneId":100506071},{"hugoGeneSymbol":"LOC100506076","entrezGeneId":100506076},{"hugoGeneSymbol":"LOC100506082","entrezGeneId":100506082},{"hugoGeneSymbol":"LOC100506083","entrezGeneId":100506083},{"hugoGeneSymbol":"LOC100506098","entrezGeneId":100506098},{"hugoGeneSymbol":"LOC100506100","entrezGeneId":100506100},{"hugoGeneSymbol":"LOC100506103","entrezGeneId":100506103},{"hugoGeneSymbol":"LOC100506113","entrezGeneId":100506113},{"hugoGeneSymbol":"LOC100506114","entrezGeneId":100506114},{"hugoGeneSymbol":"LOC100506123","entrezGeneId":100506123},{"hugoGeneSymbol":"LOC100506124","entrezGeneId":100506124},{"hugoGeneSymbol":"LOC100506125","entrezGeneId":100506125},{"hugoGeneSymbol":"LOC100506133","entrezGeneId":100506133},{"hugoGeneSymbol":"LOC100506142","entrezGeneId":100506142},{"hugoGeneSymbol":"LOC100506175","entrezGeneId":100506175},{"hugoGeneSymbol":"LOC100506178","entrezGeneId":100506178},{"hugoGeneSymbol":"LOC100506188","entrezGeneId":100506188},{"hugoGeneSymbol":"LOC100506207","entrezGeneId":100506207},{"hugoGeneSymbol":"LOC100506224","entrezGeneId":100506224},{"hugoGeneSymbol":"LOC100506235","entrezGeneId":100506235},{"hugoGeneSymbol":"LOC100506236","entrezGeneId":100506236},{"hugoGeneSymbol":"LOC100506248","entrezGeneId":100506248},{"hugoGeneSymbol":"LOC100506253","entrezGeneId":100506253},{"hugoGeneSymbol":"LOC100506258","entrezGeneId":100506258},{"hugoGeneSymbol":"LOC100506271","entrezGeneId":100506271},{"hugoGeneSymbol":"LOC100506274","entrezGeneId":100506274},{"hugoGeneSymbol":"LOC100506281","entrezGeneId":100506281},{"hugoGeneSymbol":"LOC100506282","entrezGeneId":100506282},{"hugoGeneSymbol":"LOC100506289","entrezGeneId":100506289},{"hugoGeneSymbol":"LOC100506302","entrezGeneId":100506302},{"hugoGeneSymbol":"LOC100506317","entrezGeneId":100506317},{"hugoGeneSymbol":"LOC100506321","entrezGeneId":100506321},{"hugoGeneSymbol":"LOC100506358","entrezGeneId":100506358},{"hugoGeneSymbol":"LOC100506368","entrezGeneId":100506368},{"hugoGeneSymbol":"LOC100506384","entrezGeneId":100506384},{"hugoGeneSymbol":"LOC100506388","entrezGeneId":100506388},{"hugoGeneSymbol":"LOC100506400","entrezGeneId":100506400},{"hugoGeneSymbol":"LOC100506403","entrezGeneId":100506403},{"hugoGeneSymbol":"LOC100506405","entrezGeneId":100506405},{"hugoGeneSymbol":"LOC100506406","entrezGeneId":100506406},{"hugoGeneSymbol":"LOC100506411","entrezGeneId":100506411},{"hugoGeneSymbol":"LOC100506422","entrezGeneId":100506422},{"hugoGeneSymbol":"LOC100506431","entrezGeneId":100506431},{"hugoGeneSymbol":"LOC100506444","entrezGeneId":100506444},{"hugoGeneSymbol":"LOC100506446","entrezGeneId":100506446},{"hugoGeneSymbol":"LOC100506472","entrezGeneId":100506472},{"hugoGeneSymbol":"LOC100506473","entrezGeneId":100506473},{"hugoGeneSymbol":"LOC100506474","entrezGeneId":100506474},{"hugoGeneSymbol":"LOC100506476","entrezGeneId":100506476},{"hugoGeneSymbol":"LOC100506489","entrezGeneId":100506489},{"hugoGeneSymbol":"LOC100506497","entrezGeneId":100506497},{"hugoGeneSymbol":"LOC100506514","entrezGeneId":100506514},{"hugoGeneSymbol":"LOC100506532","entrezGeneId":100506532},{"hugoGeneSymbol":"LOC100506544","entrezGeneId":100506544},{"hugoGeneSymbol":"LOC100506548","entrezGeneId":100506548},{"hugoGeneSymbol":"LOC100506551","entrezGeneId":100506551},{"hugoGeneSymbol":"LOC100506563","entrezGeneId":100506563},{"hugoGeneSymbol":"LOC100506569","entrezGeneId":100506569},{"hugoGeneSymbol":"LOC100506571","entrezGeneId":100506571},{"hugoGeneSymbol":"LOC100506576","entrezGeneId":100506576},{"hugoGeneSymbol":"LOC100506578","entrezGeneId":100506578},{"hugoGeneSymbol":"LOC100506585","entrezGeneId":100506585},{"hugoGeneSymbol":"LOC100506606","entrezGeneId":100506606},{"hugoGeneSymbol":"LOC100506633","entrezGeneId":100506633},{"hugoGeneSymbol":"LOC100506639","entrezGeneId":100506639},{"hugoGeneSymbol":"LOC100506654","entrezGeneId":100506654},{"hugoGeneSymbol":"LOC100506664","entrezGeneId":100506664},{"hugoGeneSymbol":"LOC100506672","entrezGeneId":100506672},{"hugoGeneSymbol":"LOC100506675","entrezGeneId":100506675},{"hugoGeneSymbol":"LOC100506679","entrezGeneId":100506679},{"hugoGeneSymbol":"LOC100506682","entrezGeneId":100506682},{"hugoGeneSymbol":"LOC100506688","entrezGeneId":100506688},{"hugoGeneSymbol":"LOC100506691","entrezGeneId":100506691},{"hugoGeneSymbol":"LOC100506725","entrezGeneId":100506725},{"hugoGeneSymbol":"LOC100506730","entrezGeneId":100506730},{"hugoGeneSymbol":"LOC100506731","entrezGeneId":100506731},{"hugoGeneSymbol":"LOC100506747","entrezGeneId":100506747},{"hugoGeneSymbol":"LOC100506790","entrezGeneId":100506790},{"hugoGeneSymbol":"LOC100506797","entrezGeneId":100506797},{"hugoGeneSymbol":"LOC100506801","entrezGeneId":100506801},{"hugoGeneSymbol":"LOC100506804","entrezGeneId":100506804},{"hugoGeneSymbol":"LOC100506811","entrezGeneId":100506811},{"hugoGeneSymbol":"LOC100506844","entrezGeneId":100506844},{"hugoGeneSymbol":"LOC100506851","entrezGeneId":100506851},{"hugoGeneSymbol":"LOC100506858","entrezGeneId":100506858},{"hugoGeneSymbol":"LOC100506869","entrezGeneId":100506869},{"hugoGeneSymbol":"LOC100506885","entrezGeneId":100506885},{"hugoGeneSymbol":"LOC100506911","entrezGeneId":100506911},{"hugoGeneSymbol":"LOC100506922","entrezGeneId":100506922},{"hugoGeneSymbol":"LOC100506929","entrezGeneId":100506929},{"hugoGeneSymbol":"LOC100506937","entrezGeneId":100506937},{"hugoGeneSymbol":"LOC100506955","entrezGeneId":100506955},{"hugoGeneSymbol":"LOC100506974","entrezGeneId":100506974},{"hugoGeneSymbol":"LOC100506985","entrezGeneId":100506985},{"hugoGeneSymbol":"LOC100506990","entrezGeneId":100506990},{"hugoGeneSymbol":"LOC100507002","entrezGeneId":100507002},{"hugoGeneSymbol":"LOC100507006","entrezGeneId":100507006},{"hugoGeneSymbol":"LOC100507053","entrezGeneId":100507053},{"hugoGeneSymbol":"LOC100507065","entrezGeneId":100507065},{"hugoGeneSymbol":"LOC100507071","entrezGeneId":100507071},{"hugoGeneSymbol":"LOC100507083","entrezGeneId":100507083},{"hugoGeneSymbol":"LOC100507103","entrezGeneId":100507103},{"hugoGeneSymbol":"LOC100507144","entrezGeneId":100507144},{"hugoGeneSymbol":"LOC100507156","entrezGeneId":100507156},{"hugoGeneSymbol":"LOC100507205","entrezGeneId":100507205},{"hugoGeneSymbol":"LOC100507221","entrezGeneId":100507221},{"hugoGeneSymbol":"LOC100507250","entrezGeneId":100507250},{"hugoGeneSymbol":"LOC100507283","entrezGeneId":100507283},{"hugoGeneSymbol":"LOC100507291","entrezGeneId":100507291},{"hugoGeneSymbol":"LOC100507334","entrezGeneId":100507334},{"hugoGeneSymbol":"LOC100507336","entrezGeneId":100507336},{"hugoGeneSymbol":"LOC100507346","entrezGeneId":100507346},{"hugoGeneSymbol":"LOC100507351","entrezGeneId":100507351},{"hugoGeneSymbol":"LOC100507373","entrezGeneId":100507373},{"hugoGeneSymbol":"LOC100507377","entrezGeneId":100507377},{"hugoGeneSymbol":"LOC100507379","entrezGeneId":100507379},{"hugoGeneSymbol":"LOC100507384","entrezGeneId":100507384},{"hugoGeneSymbol":"LOC100507387","entrezGeneId":100507387},{"hugoGeneSymbol":"LOC100507388","entrezGeneId":100507388},{"hugoGeneSymbol":"LOC100507389","entrezGeneId":100507389},{"hugoGeneSymbol":"LOC100507393","entrezGeneId":100507393},{"hugoGeneSymbol":"LOC100507395","entrezGeneId":100507395},{"hugoGeneSymbol":"LOC100507403","entrezGeneId":100507403},{"hugoGeneSymbol":"LOC100507412","entrezGeneId":100507412},{"hugoGeneSymbol":"LOC100507422","entrezGeneId":100507422},{"hugoGeneSymbol":"LOC100507437","entrezGeneId":100507437},{"hugoGeneSymbol":"LOC100507443","entrezGeneId":100507443},{"hugoGeneSymbol":"LOC100507464","entrezGeneId":100507464},{"hugoGeneSymbol":"LOC100507468","entrezGeneId":100507468},{"hugoGeneSymbol":"LOC100507472","entrezGeneId":100507472},{"hugoGeneSymbol":"LOC100507477","entrezGeneId":100507477},{"hugoGeneSymbol":"LOC100507480","entrezGeneId":100507480},{"hugoGeneSymbol":"LOC100507487","entrezGeneId":100507487},{"hugoGeneSymbol":"LOC100507506","entrezGeneId":100507506},{"hugoGeneSymbol":"LOC100507507","entrezGeneId":100507507},{"hugoGeneSymbol":"LOC100507513","entrezGeneId":100507513},{"hugoGeneSymbol":"LOC100507516","entrezGeneId":100507516},{"hugoGeneSymbol":"LOC100507521","entrezGeneId":100507521},{"hugoGeneSymbol":"LOC100507547","entrezGeneId":100507547},{"hugoGeneSymbol":"LOC100507548","entrezGeneId":100507548},{"hugoGeneSymbol":"LOC100507551","entrezGeneId":100507551},{"hugoGeneSymbol":"LOC100507554","entrezGeneId":100507554},{"hugoGeneSymbol":"LOC100507557","entrezGeneId":100507557},{"hugoGeneSymbol":"LOC100507560","entrezGeneId":100507560},{"hugoGeneSymbol":"LOC100507561","entrezGeneId":100507561},{"hugoGeneSymbol":"LOC100507562","entrezGeneId":100507562},{"hugoGeneSymbol":"LOC100507564","entrezGeneId":100507564},{"hugoGeneSymbol":"LOC100507586","entrezGeneId":100507586},{"hugoGeneSymbol":"LOC100507599","entrezGeneId":100507599},{"hugoGeneSymbol":"LOC100507600","entrezGeneId":100507600},{"hugoGeneSymbol":"LOC100507606","entrezGeneId":100507606},{"hugoGeneSymbol":"LOC100507634","entrezGeneId":100507634},{"hugoGeneSymbol":"LOC100507642","entrezGeneId":100507642},{"hugoGeneSymbol":"LOC100507670","entrezGeneId":100507670},{"hugoGeneSymbol":"LOC100507703","entrezGeneId":100507703},{"hugoGeneSymbol":"LOC100508046","entrezGeneId":100508046},{"hugoGeneSymbol":"LOC100508631","entrezGeneId":100508631},{"hugoGeneSymbol":"LOC100509370","entrezGeneId":100509370},{"hugoGeneSymbol":"LOC100509620","entrezGeneId":100509620},{"hugoGeneSymbol":"LOC100510709","entrezGeneId":100510709},{"hugoGeneSymbol":"LOC100510710","entrezGeneId":100510710},{"hugoGeneSymbol":"LOC100526736","entrezGeneId":100526736},{"hugoGeneSymbol":"LOC100526838","entrezGeneId":100526838},{"hugoGeneSymbol":"LOC100526839","entrezGeneId":100526839},{"hugoGeneSymbol":"LOC100526840","entrezGeneId":100526840},{"hugoGeneSymbol":"LOC100526841","entrezGeneId":100526841},{"hugoGeneSymbol":"LOC100528061","entrezGeneId":100528061},{"hugoGeneSymbol":"LOC100528063","entrezGeneId":100528063},{"hugoGeneSymbol":"LOC100529052","entrezGeneId":100529052},{"hugoGeneSymbol":"LOC100529111","entrezGeneId":100529111},{"hugoGeneSymbol":"LOC100532749","entrezGeneId":100532749},{"hugoGeneSymbol":"LOC100533618","entrezGeneId":100533618},{"hugoGeneSymbol":"LOC100533621","entrezGeneId":100533621},{"hugoGeneSymbol":"LOC100533622","entrezGeneId":100533622},{"hugoGeneSymbol":"LOC100533625","entrezGeneId":100533625},{"hugoGeneSymbol":"LOC100533626","entrezGeneId":100533626},{"hugoGeneSymbol":"LOC100533627","entrezGeneId":100533627},{"hugoGeneSymbol":"LOC100533628","entrezGeneId":100533628},{"hugoGeneSymbol":"LOC100533629","entrezGeneId":100533629},{"hugoGeneSymbol":"LOC100533630","entrezGeneId":100533630},{"hugoGeneSymbol":"LOC100533631","entrezGeneId":100533631},{"hugoGeneSymbol":"LOC100533632","entrezGeneId":100533632},{"hugoGeneSymbol":"LOC100533633","entrezGeneId":100533633},{"hugoGeneSymbol":"LOC100533634","entrezGeneId":100533634},{"hugoGeneSymbol":"LOC100533635","entrezGeneId":100533635},{"hugoGeneSymbol":"LOC100533636","entrezGeneId":100533636},{"hugoGeneSymbol":"LOC100533637","entrezGeneId":100533637},{"hugoGeneSymbol":"LOC100533638","entrezGeneId":100533638},{"hugoGeneSymbol":"LOC100533640","entrezGeneId":100533640},{"hugoGeneSymbol":"LOC100533641","entrezGeneId":100533641},{"hugoGeneSymbol":"LOC100533643","entrezGeneId":100533643},{"hugoGeneSymbol":"LOC100533644","entrezGeneId":100533644},{"hugoGeneSymbol":"LOC100533648","entrezGeneId":100533648},{"hugoGeneSymbol":"LOC100533649","entrezGeneId":100533649},{"hugoGeneSymbol":"LOC100533650","entrezGeneId":100533650},{"hugoGeneSymbol":"LOC100533651","entrezGeneId":100533651},{"hugoGeneSymbol":"LOC100533652","entrezGeneId":100533652},{"hugoGeneSymbol":"LOC100533653","entrezGeneId":100533653},{"hugoGeneSymbol":"LOC100533654","entrezGeneId":100533654},{"hugoGeneSymbol":"LOC100533655","entrezGeneId":100533655},{"hugoGeneSymbol":"LOC100533659","entrezGeneId":100533659},{"hugoGeneSymbol":"LOC100533663","entrezGeneId":100533663},{"hugoGeneSymbol":"LOC100533667","entrezGeneId":100533667},{"hugoGeneSymbol":"LOC100533669","entrezGeneId":100533669},{"hugoGeneSymbol":"LOC100533670","entrezGeneId":100533670},{"hugoGeneSymbol":"LOC100533677","entrezGeneId":100533677},{"hugoGeneSymbol":"LOC100533678","entrezGeneId":100533678},{"hugoGeneSymbol":"LOC100533679","entrezGeneId":100533679},{"hugoGeneSymbol":"LOC100533706","entrezGeneId":100533706},{"hugoGeneSymbol":"LOC100533707","entrezGeneId":100533707},{"hugoGeneSymbol":"LOC100533708","entrezGeneId":100533708},{"hugoGeneSymbol":"LOC100533709","entrezGeneId":100533709},{"hugoGeneSymbol":"LOC100533710","entrezGeneId":100533710},{"hugoGeneSymbol":"LOC100533711","entrezGeneId":100533711},{"hugoGeneSymbol":"LOC100533712","entrezGeneId":100533712},{"hugoGeneSymbol":"LOC100533716","entrezGeneId":100533716},{"hugoGeneSymbol":"LOC100533722","entrezGeneId":100533722},{"hugoGeneSymbol":"LOC100533723","entrezGeneId":100533723},{"hugoGeneSymbol":"LOC100533727","entrezGeneId":100533727},{"hugoGeneSymbol":"LOC100533728","entrezGeneId":100533728},{"hugoGeneSymbol":"LOC100533729","entrezGeneId":100533729},{"hugoGeneSymbol":"LOC100533730","entrezGeneId":100533730},{"hugoGeneSymbol":"LOC100533732","entrezGeneId":100533732},{"hugoGeneSymbol":"LOC100533733","entrezGeneId":100533733},{"hugoGeneSymbol":"LOC100533734","entrezGeneId":100533734},{"hugoGeneSymbol":"LOC100533735","entrezGeneId":100533735},{"hugoGeneSymbol":"LOC100533736","entrezGeneId":100533736},{"hugoGeneSymbol":"LOC100533755","entrezGeneId":100533755},{"hugoGeneSymbol":"LOC100533757","entrezGeneId":100533757},{"hugoGeneSymbol":"LOC100533787","entrezGeneId":100533787},{"hugoGeneSymbol":"LOC100533842","entrezGeneId":100533842},{"hugoGeneSymbol":"LOC100533843","entrezGeneId":100533843},{"hugoGeneSymbol":"LOC100533845","entrezGeneId":100533845},{"hugoGeneSymbol":"LOC100533846","entrezGeneId":100533846},{"hugoGeneSymbol":"LOC100533848","entrezGeneId":100533848},{"hugoGeneSymbol":"LOC100533850","entrezGeneId":100533850},{"hugoGeneSymbol":"LOC100533852","entrezGeneId":100533852},{"hugoGeneSymbol":"LOC100533853","entrezGeneId":100533853},{"hugoGeneSymbol":"LOC100629121","entrezGeneId":100629121},{"hugoGeneSymbol":"LOC100630919","entrezGeneId":100630919},{"hugoGeneSymbol":"LOC100630923","entrezGeneId":100630923},{"hugoGeneSymbol":"LOC100631242","entrezGeneId":100631242},{"hugoGeneSymbol":"LOC100631243","entrezGeneId":100631243},{"hugoGeneSymbol":"LOC100631255","entrezGeneId":100631255},{"hugoGeneSymbol":"LOC100631258","entrezGeneId":100631258},{"hugoGeneSymbol":"LOC100631265","entrezGeneId":100631265},{"hugoGeneSymbol":"LOC100631266","entrezGeneId":100631266},{"hugoGeneSymbol":"LOC100631267","entrezGeneId":100631267},{"hugoGeneSymbol":"LOC100631268","entrezGeneId":100631268},{"hugoGeneSymbol":"LOC100631378","entrezGeneId":100631378},{"hugoGeneSymbol":"LOC100631380","entrezGeneId":100631380},{"hugoGeneSymbol":"LOC100652743","entrezGeneId":100652743},{"hugoGeneSymbol":"LOC100652758","entrezGeneId":100652758},{"hugoGeneSymbol":"LOC100652768","entrezGeneId":100652768},{"hugoGeneSymbol":"LOC100652777","entrezGeneId":100652777},{"hugoGeneSymbol":"LOC100652792","entrezGeneId":100652792},{"hugoGeneSymbol":"LOC100652794","entrezGeneId":100652794},{"hugoGeneSymbol":"LOC100652813","entrezGeneId":100652813},{"hugoGeneSymbol":"LOC100652833","entrezGeneId":100652833},{"hugoGeneSymbol":"LOC100652840","entrezGeneId":100652840},{"hugoGeneSymbol":"LOC100652871","entrezGeneId":100652871},{"hugoGeneSymbol":"LOC100652897","entrezGeneId":100652897},{"hugoGeneSymbol":"LOC100652901","entrezGeneId":100652901},{"hugoGeneSymbol":"LOC100652908","entrezGeneId":100652908},{"hugoGeneSymbol":"LOC100652931","entrezGeneId":100652931},{"hugoGeneSymbol":"LOC100652955","entrezGeneId":100652955},{"hugoGeneSymbol":"LOC100652960","entrezGeneId":100652960},{"hugoGeneSymbol":"LOC100652967","entrezGeneId":100652967},{"hugoGeneSymbol":"LOC100652976","entrezGeneId":100652976},{"hugoGeneSymbol":"LOC100652999","entrezGeneId":100652999},{"hugoGeneSymbol":"LOC100653049","entrezGeneId":100653049},{"hugoGeneSymbol":"LOC100653061","entrezGeneId":100653061},{"hugoGeneSymbol":"LOC100653133","entrezGeneId":100653133},{"hugoGeneSymbol":"LOC100653233","entrezGeneId":100653233},{"hugoGeneSymbol":"LOC100653395","entrezGeneId":100653395},{"hugoGeneSymbol":"LOC100736408","entrezGeneId":100736408},{"hugoGeneSymbol":"LOC100736412","entrezGeneId":100736412},{"hugoGeneSymbol":"LOC100820733","entrezGeneId":100820733},{"hugoGeneSymbol":"LOC100820734","entrezGeneId":100820734},{"hugoGeneSymbol":"LOC100856791","entrezGeneId":100856791},{"hugoGeneSymbol":"LOC100859919","entrezGeneId":100859919},{"hugoGeneSymbol":"LOC100862682","entrezGeneId":100862682},{"hugoGeneSymbol":"LOC100884169","entrezGeneId":100884169},{"hugoGeneSymbol":"LOC100887068","entrezGeneId":100887068},{"hugoGeneSymbol":"LOC100887072","entrezGeneId":100887072},{"hugoGeneSymbol":"LOC100887076","entrezGeneId":100887076},{"hugoGeneSymbol":"LOC100887077","entrezGeneId":100887077},{"hugoGeneSymbol":"LOC100887078","entrezGeneId":100887078},{"hugoGeneSymbol":"LOC100887080","entrezGeneId":100887080},{"hugoGeneSymbol":"LOC100913082","entrezGeneId":100913082},{"hugoGeneSymbol":"LOC100913179","entrezGeneId":100913179},{"hugoGeneSymbol":"LOC100967223","entrezGeneId":100967223},{"hugoGeneSymbol":"LOC100967224","entrezGeneId":100967224},{"hugoGeneSymbol":"LOC100996247","entrezGeneId":100996247},{"hugoGeneSymbol":"LOC100996249","entrezGeneId":100996249},{"hugoGeneSymbol":"LOC100996251","entrezGeneId":100996251},{"hugoGeneSymbol":"LOC100996262","entrezGeneId":100996262},{"hugoGeneSymbol":"LOC100996263","entrezGeneId":100996263},{"hugoGeneSymbol":"LOC100996274","entrezGeneId":100996274},{"hugoGeneSymbol":"LOC100996284","entrezGeneId":100996284},{"hugoGeneSymbol":"LOC100996288","entrezGeneId":100996288},{"hugoGeneSymbol":"LOC100996294","entrezGeneId":100996294},{"hugoGeneSymbol":"LOC100996316","entrezGeneId":100996316},{"hugoGeneSymbol":"LOC100996318","entrezGeneId":100996318},{"hugoGeneSymbol":"LOC100996325","entrezGeneId":100996325},{"hugoGeneSymbol":"LOC100996333","entrezGeneId":100996333},{"hugoGeneSymbol":"LOC100996335","entrezGeneId":100996335},{"hugoGeneSymbol":"LOC100996337","entrezGeneId":100996337},{"hugoGeneSymbol":"LOC100996349","entrezGeneId":100996349},{"hugoGeneSymbol":"LOC100996351","entrezGeneId":100996351},{"hugoGeneSymbol":"LOC100996361","entrezGeneId":100996361},{"hugoGeneSymbol":"LOC100996362","entrezGeneId":100996362},{"hugoGeneSymbol":"LOC100996364","entrezGeneId":100996364},{"hugoGeneSymbol":"LOC100996365","entrezGeneId":100996365},{"hugoGeneSymbol":"LOC100996375","entrezGeneId":100996375},{"hugoGeneSymbol":"LOC100996379","entrezGeneId":100996379},{"hugoGeneSymbol":"LOC100996384","entrezGeneId":100996384},{"hugoGeneSymbol":"LOC100996385","entrezGeneId":100996385},{"hugoGeneSymbol":"LOC100996401","entrezGeneId":100996401},{"hugoGeneSymbol":"LOC100996404","entrezGeneId":100996404},{"hugoGeneSymbol":"LOC100996413","entrezGeneId":100996413},{"hugoGeneSymbol":"LOC100996414","entrezGeneId":100996414},{"hugoGeneSymbol":"LOC100996415","entrezGeneId":100996415},{"hugoGeneSymbol":"LOC100996419","entrezGeneId":100996419},{"hugoGeneSymbol":"LOC100996437","entrezGeneId":100996437},{"hugoGeneSymbol":"LOC100996442","entrezGeneId":100996442},{"hugoGeneSymbol":"LOC100996447","entrezGeneId":100996447},{"hugoGeneSymbol":"LOC100996455","entrezGeneId":100996455},{"hugoGeneSymbol":"LOC100996476","entrezGeneId":100996476},{"hugoGeneSymbol":"LOC100996483","entrezGeneId":100996483},{"hugoGeneSymbol":"LOC100996506","entrezGeneId":100996506},{"hugoGeneSymbol":"LOC100996517","entrezGeneId":100996517},{"hugoGeneSymbol":"LOC100996549","entrezGeneId":100996549},{"hugoGeneSymbol":"LOC100996574","entrezGeneId":100996574},{"hugoGeneSymbol":"LOC100996583","entrezGeneId":100996583},{"hugoGeneSymbol":"LOC100996598","entrezGeneId":100996598},{"hugoGeneSymbol":"LOC100996611","entrezGeneId":100996611},{"hugoGeneSymbol":"LOC100996635","entrezGeneId":100996635},{"hugoGeneSymbol":"LOC100996637","entrezGeneId":100996637},{"hugoGeneSymbol":"LOC100996643","entrezGeneId":100996643},{"hugoGeneSymbol":"LOC100996654","entrezGeneId":100996654},{"hugoGeneSymbol":"LOC100996660","entrezGeneId":100996660},{"hugoGeneSymbol":"LOC100996662","entrezGeneId":100996662},{"hugoGeneSymbol":"LOC100996664","entrezGeneId":100996664},{"hugoGeneSymbol":"LOC100996670","entrezGeneId":100996670},{"hugoGeneSymbol":"LOC100996671","entrezGeneId":100996671},{"hugoGeneSymbol":"LOC100996681","entrezGeneId":100996681},{"hugoGeneSymbol":"LOC100996693","entrezGeneId":100996693},{"hugoGeneSymbol":"LOC100996696","entrezGeneId":100996696},{"hugoGeneSymbol":"LOC100996699","entrezGeneId":100996699},{"hugoGeneSymbol":"LOC100996701","entrezGeneId":100996701},{"hugoGeneSymbol":"LOC100996703","entrezGeneId":100996703},{"hugoGeneSymbol":"LOC100996709","entrezGeneId":100996709},{"hugoGeneSymbol":"LOC100996713","entrezGeneId":100996713},{"hugoGeneSymbol":"LOC100996716","entrezGeneId":100996716},{"hugoGeneSymbol":"LOC100996717","entrezGeneId":100996717},{"hugoGeneSymbol":"LOC100996720","entrezGeneId":100996720},{"hugoGeneSymbol":"LOC100996721","entrezGeneId":100996721},{"hugoGeneSymbol":"LOC100996722","entrezGeneId":100996722},{"hugoGeneSymbol":"LOC100996723","entrezGeneId":100996723},{"hugoGeneSymbol":"LOC100996724","entrezGeneId":100996724},{"hugoGeneSymbol":"LOC100996731","entrezGeneId":100996731},{"hugoGeneSymbol":"LOC100996732","entrezGeneId":100996732},{"hugoGeneSymbol":"LOC100996736","entrezGeneId":100996736},{"hugoGeneSymbol":"LOC100996737","entrezGeneId":100996737},{"hugoGeneSymbol":"LOC100996740","entrezGeneId":100996740},{"hugoGeneSymbol":"LOC100996741","entrezGeneId":100996741},{"hugoGeneSymbol":"LOC100996745","entrezGeneId":100996745},{"hugoGeneSymbol":"LOC100996747","entrezGeneId":100996747},{"hugoGeneSymbol":"LOC100996750","entrezGeneId":100996750},{"hugoGeneSymbol":"LOC100996756","entrezGeneId":100996756},{"hugoGeneSymbol":"LOC100996763","entrezGeneId":100996763},{"hugoGeneSymbol":"LOC100996792","entrezGeneId":100996792},{"hugoGeneSymbol":"LOC100996842","entrezGeneId":100996842},{"hugoGeneSymbol":"LOC100996860","entrezGeneId":100996860},{"hugoGeneSymbol":"LOC100996886","entrezGeneId":100996886},{"hugoGeneSymbol":"LOC100996911","entrezGeneId":100996911},{"hugoGeneSymbol":"LOC101027084","entrezGeneId":101027084},{"hugoGeneSymbol":"LOC101059906","entrezGeneId":101059906},{"hugoGeneSymbol":"LOC101059907","entrezGeneId":101059907},{"hugoGeneSymbol":"LOC101059915","entrezGeneId":101059915},{"hugoGeneSymbol":"LOC101059924","entrezGeneId":101059924},{"hugoGeneSymbol":"LOC101059948","entrezGeneId":101059948},{"hugoGeneSymbol":"LOC101059949","entrezGeneId":101059949},{"hugoGeneSymbol":"LOC101059954","entrezGeneId":101059954},{"hugoGeneSymbol":"LOC101059962","entrezGeneId":101059962},{"hugoGeneSymbol":"LOC101059972","entrezGeneId":101059972},{"hugoGeneSymbol":"LOC101059974","entrezGeneId":101059974},{"hugoGeneSymbol":"LOC101059977","entrezGeneId":101059977},{"hugoGeneSymbol":"LOC101059986","entrezGeneId":101059986},{"hugoGeneSymbol":"LOC101059990","entrezGeneId":101059990},{"hugoGeneSymbol":"LOC101059996","entrezGeneId":101059996},{"hugoGeneSymbol":"LOC101059997","entrezGeneId":101059997},{"hugoGeneSymbol":"LOC101060000","entrezGeneId":101060000},{"hugoGeneSymbol":"LOC101060016","entrezGeneId":101060016},{"hugoGeneSymbol":"LOC101060017","entrezGeneId":101060017},{"hugoGeneSymbol":"LOC101060021","entrezGeneId":101060021},{"hugoGeneSymbol":"LOC101060022","entrezGeneId":101060022},{"hugoGeneSymbol":"LOC101060024","entrezGeneId":101060024},{"hugoGeneSymbol":"LOC101060035","entrezGeneId":101060035},{"hugoGeneSymbol":"LOC101060042","entrezGeneId":101060042},{"hugoGeneSymbol":"LOC101060043","entrezGeneId":101060043},{"hugoGeneSymbol":"LOC101060048","entrezGeneId":101060048},{"hugoGeneSymbol":"LOC101060049","entrezGeneId":101060049},{"hugoGeneSymbol":"LOC101060052","entrezGeneId":101060052},{"hugoGeneSymbol":"LOC101060056","entrezGeneId":101060056},{"hugoGeneSymbol":"LOC101060058","entrezGeneId":101060058},{"hugoGeneSymbol":"LOC101060064","entrezGeneId":101060064},{"hugoGeneSymbol":"LOC101060066","entrezGeneId":101060066},{"hugoGeneSymbol":"LOC101060067","entrezGeneId":101060067},{"hugoGeneSymbol":"LOC101060076","entrezGeneId":101060076},{"hugoGeneSymbol":"LOC101060084","entrezGeneId":101060084},{"hugoGeneSymbol":"LOC101060086","entrezGeneId":101060086},{"hugoGeneSymbol":"LOC101060089","entrezGeneId":101060089},{"hugoGeneSymbol":"LOC101060091","entrezGeneId":101060091},{"hugoGeneSymbol":"LOC101060098","entrezGeneId":101060098},{"hugoGeneSymbol":"LOC101060099","entrezGeneId":101060099},{"hugoGeneSymbol":"LOC101060104","entrezGeneId":101060104},{"hugoGeneSymbol":"LOC101060112","entrezGeneId":101060112},{"hugoGeneSymbol":"LOC101060113","entrezGeneId":101060113},{"hugoGeneSymbol":"LOC101060118","entrezGeneId":101060118},{"hugoGeneSymbol":"LOC101060119","entrezGeneId":101060119},{"hugoGeneSymbol":"LOC101060126","entrezGeneId":101060126},{"hugoGeneSymbol":"LOC101060145","entrezGeneId":101060145},{"hugoGeneSymbol":"LOC101060152","entrezGeneId":101060152},{"hugoGeneSymbol":"LOC101060158","entrezGeneId":101060158},{"hugoGeneSymbol":"LOC101060159","entrezGeneId":101060159},{"hugoGeneSymbol":"LOC101060162","entrezGeneId":101060162},{"hugoGeneSymbol":"LOC101060164","entrezGeneId":101060164},{"hugoGeneSymbol":"LOC101060170","entrezGeneId":101060170},{"hugoGeneSymbol":"LOC101060179","entrezGeneId":101060179},{"hugoGeneSymbol":"LOC101060187","entrezGeneId":101060187},{"hugoGeneSymbol":"LOC101060191","entrezGeneId":101060191},{"hugoGeneSymbol":"LOC101060199","entrezGeneId":101060199},{"hugoGeneSymbol":"LOC101060206","entrezGeneId":101060206},{"hugoGeneSymbol":"LOC101060207","entrezGeneId":101060207},{"hugoGeneSymbol":"LOC101060212","entrezGeneId":101060212},{"hugoGeneSymbol":"LOC101060224","entrezGeneId":101060224},{"hugoGeneSymbol":"LOC101060227","entrezGeneId":101060227},{"hugoGeneSymbol":"LOC101060236","entrezGeneId":101060236},{"hugoGeneSymbol":"LOC101060254","entrezGeneId":101060254},{"hugoGeneSymbol":"LOC101060274","entrezGeneId":101060274},{"hugoGeneSymbol":"LOC101060324","entrezGeneId":101060324},{"hugoGeneSymbol":"LOC101060341","entrezGeneId":101060341},{"hugoGeneSymbol":"LOC101060391","entrezGeneId":101060391},{"hugoGeneSymbol":"LOC101060399","entrezGeneId":101060399},{"hugoGeneSymbol":"LOC101060400","entrezGeneId":101060400},{"hugoGeneSymbol":"LOC101060405","entrezGeneId":101060405},{"hugoGeneSymbol":"LOC101060445","entrezGeneId":101060445},{"hugoGeneSymbol":"LOC101060521","entrezGeneId":101060521},{"hugoGeneSymbol":"LOC101060524","entrezGeneId":101060524},{"hugoGeneSymbol":"LOC101060553","entrezGeneId":101060553},{"hugoGeneSymbol":"LOC101060587","entrezGeneId":101060587},{"hugoGeneSymbol":"LOC101060588","entrezGeneId":101060588},{"hugoGeneSymbol":"LOC101060632","entrezGeneId":101060632},{"hugoGeneSymbol":"LOC101060796","entrezGeneId":101060796},{"hugoGeneSymbol":"LOC101060852","entrezGeneId":101060852},{"hugoGeneSymbol":"LOC101101841","entrezGeneId":101101841},{"hugoGeneSymbol":"LOC101154643","entrezGeneId":101154643},{"hugoGeneSymbol":"LOC101180897","entrezGeneId":101180897},{"hugoGeneSymbol":"LOC101232810","entrezGeneId":101232810},{"hugoGeneSymbol":"LOC101241901","entrezGeneId":101241901},{"hugoGeneSymbol":"LOC101241902","entrezGeneId":101241902},{"hugoGeneSymbol":"LOC101269108","entrezGeneId":101269108},{"hugoGeneSymbol":"LOC101409255","entrezGeneId":101409255},{"hugoGeneSymbol":"LOC101409256","entrezGeneId":101409256},{"hugoGeneSymbol":"LOC101409262","entrezGeneId":101409262},{"hugoGeneSymbol":"LOC101448202","entrezGeneId":101448202},{"hugoGeneSymbol":"LOC101559451","entrezGeneId":101559451},{"hugoGeneSymbol":"LOC101593348","entrezGeneId":101593348},{"hugoGeneSymbol":"LOC101618237","entrezGeneId":101618237},{"hugoGeneSymbol":"LOC101901828","entrezGeneId":101901828},{"hugoGeneSymbol":"LOC101901829","entrezGeneId":101901829},{"hugoGeneSymbol":"LOC101926886","entrezGeneId":101926886},{"hugoGeneSymbol":"LOC101926887","entrezGeneId":101926887},{"hugoGeneSymbol":"LOC101926889","entrezGeneId":101926889},{"hugoGeneSymbol":"LOC101926892","entrezGeneId":101926892},{"hugoGeneSymbol":"LOC101926898","entrezGeneId":101926898},{"hugoGeneSymbol":"LOC101926905","entrezGeneId":101926905},{"hugoGeneSymbol":"LOC101926907","entrezGeneId":101926907},{"hugoGeneSymbol":"LOC101926908","entrezGeneId":101926908},{"hugoGeneSymbol":"LOC101926913","entrezGeneId":101926913},{"hugoGeneSymbol":"LOC101926915","entrezGeneId":101926915},{"hugoGeneSymbol":"LOC101926923","entrezGeneId":101926923},{"hugoGeneSymbol":"LOC101926933","entrezGeneId":101926933},{"hugoGeneSymbol":"LOC101926934","entrezGeneId":101926934},{"hugoGeneSymbol":"LOC101926935","entrezGeneId":101926935},{"hugoGeneSymbol":"LOC101926942","entrezGeneId":101926942},{"hugoGeneSymbol":"LOC101926943","entrezGeneId":101926943},{"hugoGeneSymbol":"LOC101926944","entrezGeneId":101926944},{"hugoGeneSymbol":"LOC101926946","entrezGeneId":101926946},{"hugoGeneSymbol":"LOC101926948","entrezGeneId":101926948},{"hugoGeneSymbol":"LOC101926949","entrezGeneId":101926949},{"hugoGeneSymbol":"LOC101926953","entrezGeneId":101926953},{"hugoGeneSymbol":"LOC101926956","entrezGeneId":101926956},{"hugoGeneSymbol":"LOC101926959","entrezGeneId":101926959},{"hugoGeneSymbol":"LOC101926960","entrezGeneId":101926960},{"hugoGeneSymbol":"LOC101926962","entrezGeneId":101926962},{"hugoGeneSymbol":"LOC101926963","entrezGeneId":101926963},{"hugoGeneSymbol":"LOC101926964","entrezGeneId":101926964},{"hugoGeneSymbol":"LOC101926967","entrezGeneId":101926967},{"hugoGeneSymbol":"LOC101926968","entrezGeneId":101926968},{"hugoGeneSymbol":"LOC101926969","entrezGeneId":101926969},{"hugoGeneSymbol":"LOC101926973","entrezGeneId":101926973},{"hugoGeneSymbol":"LOC101926974","entrezGeneId":101926974},{"hugoGeneSymbol":"LOC101926977","entrezGeneId":101926977},{"hugoGeneSymbol":"LOC101926984","entrezGeneId":101926984},{"hugoGeneSymbol":"LOC101926993","entrezGeneId":101926993},{"hugoGeneSymbol":"LOC101926994","entrezGeneId":101926994},{"hugoGeneSymbol":"LOC101927000","entrezGeneId":101927000},{"hugoGeneSymbol":"LOC101927010","entrezGeneId":101927010},{"hugoGeneSymbol":"LOC101927012","entrezGeneId":101927012},{"hugoGeneSymbol":"LOC101927013","entrezGeneId":101927013},{"hugoGeneSymbol":"LOC101927018","entrezGeneId":101927018},{"hugoGeneSymbol":"LOC101927019","entrezGeneId":101927019},{"hugoGeneSymbol":"LOC101927020","entrezGeneId":101927020},{"hugoGeneSymbol":"LOC101927021","entrezGeneId":101927021},{"hugoGeneSymbol":"LOC101927023","entrezGeneId":101927023},{"hugoGeneSymbol":"LOC101927025","entrezGeneId":101927025},{"hugoGeneSymbol":"LOC101927026","entrezGeneId":101927026},{"hugoGeneSymbol":"LOC101927027","entrezGeneId":101927027},{"hugoGeneSymbol":"LOC101927039","entrezGeneId":101927039},{"hugoGeneSymbol":"LOC101927040","entrezGeneId":101927040},{"hugoGeneSymbol":"LOC101927042","entrezGeneId":101927042},{"hugoGeneSymbol":"LOC101927043","entrezGeneId":101927043},{"hugoGeneSymbol":"LOC101927044","entrezGeneId":101927044},{"hugoGeneSymbol":"LOC101927045","entrezGeneId":101927045},{"hugoGeneSymbol":"LOC101927046","entrezGeneId":101927046},{"hugoGeneSymbol":"LOC101927048","entrezGeneId":101927048},{"hugoGeneSymbol":"LOC101927050","entrezGeneId":101927050},{"hugoGeneSymbol":"LOC101927051","entrezGeneId":101927051},{"hugoGeneSymbol":"LOC101927053","entrezGeneId":101927053},{"hugoGeneSymbol":"LOC101927055","entrezGeneId":101927055},{"hugoGeneSymbol":"LOC101927056","entrezGeneId":101927056},{"hugoGeneSymbol":"LOC101927057","entrezGeneId":101927057},{"hugoGeneSymbol":"LOC101927060","entrezGeneId":101927060},{"hugoGeneSymbol":"LOC101927066","entrezGeneId":101927066},{"hugoGeneSymbol":"LOC101927069","entrezGeneId":101927069},{"hugoGeneSymbol":"LOC101927070","entrezGeneId":101927070},{"hugoGeneSymbol":"LOC101927072","entrezGeneId":101927072},{"hugoGeneSymbol":"LOC101927073","entrezGeneId":101927073},{"hugoGeneSymbol":"LOC101927078","entrezGeneId":101927078},{"hugoGeneSymbol":"LOC101927079","entrezGeneId":101927079},{"hugoGeneSymbol":"LOC101927080","entrezGeneId":101927080},{"hugoGeneSymbol":"LOC101927082","entrezGeneId":101927082},{"hugoGeneSymbol":"LOC101927086","entrezGeneId":101927086},{"hugoGeneSymbol":"LOC101927088","entrezGeneId":101927088},{"hugoGeneSymbol":"LOC101927089","entrezGeneId":101927089},{"hugoGeneSymbol":"LOC101927093","entrezGeneId":101927093},{"hugoGeneSymbol":"LOC101927098","entrezGeneId":101927098},{"hugoGeneSymbol":"LOC101927100","entrezGeneId":101927100},{"hugoGeneSymbol":"LOC101927108","entrezGeneId":101927108},{"hugoGeneSymbol":"LOC101927118","entrezGeneId":101927118},{"hugoGeneSymbol":"LOC101927120","entrezGeneId":101927120},{"hugoGeneSymbol":"LOC101927124","entrezGeneId":101927124},{"hugoGeneSymbol":"LOC101927131","entrezGeneId":101927131},{"hugoGeneSymbol":"LOC101927136","entrezGeneId":101927136},{"hugoGeneSymbol":"LOC101927138","entrezGeneId":101927138},{"hugoGeneSymbol":"LOC101927139","entrezGeneId":101927139},{"hugoGeneSymbol":"LOC101927141","entrezGeneId":101927141},{"hugoGeneSymbol":"LOC101927142","entrezGeneId":101927142},{"hugoGeneSymbol":"LOC101927143","entrezGeneId":101927143},{"hugoGeneSymbol":"LOC101927145","entrezGeneId":101927145},{"hugoGeneSymbol":"LOC101927151","entrezGeneId":101927151},{"hugoGeneSymbol":"LOC101927157","entrezGeneId":101927157},{"hugoGeneSymbol":"LOC101927159","entrezGeneId":101927159},{"hugoGeneSymbol":"LOC101927164","entrezGeneId":101927164},{"hugoGeneSymbol":"LOC101927166","entrezGeneId":101927166},{"hugoGeneSymbol":"LOC101927168","entrezGeneId":101927168},{"hugoGeneSymbol":"LOC101927178","entrezGeneId":101927178},{"hugoGeneSymbol":"LOC101927179","entrezGeneId":101927179},{"hugoGeneSymbol":"LOC101927180","entrezGeneId":101927180},{"hugoGeneSymbol":"LOC101927182","entrezGeneId":101927182},{"hugoGeneSymbol":"LOC101927183","entrezGeneId":101927183},{"hugoGeneSymbol":"LOC101927188","entrezGeneId":101927188},{"hugoGeneSymbol":"LOC101927189","entrezGeneId":101927189},{"hugoGeneSymbol":"LOC101927190","entrezGeneId":101927190},{"hugoGeneSymbol":"LOC101927191","entrezGeneId":101927191},{"hugoGeneSymbol":"LOC101927196","entrezGeneId":101927196},{"hugoGeneSymbol":"LOC101927200","entrezGeneId":101927200},{"hugoGeneSymbol":"LOC101927202","entrezGeneId":101927202},{"hugoGeneSymbol":"LOC101927209","entrezGeneId":101927209},{"hugoGeneSymbol":"LOC101927211","entrezGeneId":101927211},{"hugoGeneSymbol":"LOC101927213","entrezGeneId":101927213},{"hugoGeneSymbol":"LOC101927226","entrezGeneId":101927226},{"hugoGeneSymbol":"LOC101927227","entrezGeneId":101927227},{"hugoGeneSymbol":"LOC101927234","entrezGeneId":101927234},{"hugoGeneSymbol":"LOC101927235","entrezGeneId":101927235},{"hugoGeneSymbol":"LOC101927237","entrezGeneId":101927237},{"hugoGeneSymbol":"LOC101927238","entrezGeneId":101927238},{"hugoGeneSymbol":"LOC101927241","entrezGeneId":101927241},{"hugoGeneSymbol":"LOC101927243","entrezGeneId":101927243},{"hugoGeneSymbol":"LOC101927245","entrezGeneId":101927245},{"hugoGeneSymbol":"LOC101927247","entrezGeneId":101927247},{"hugoGeneSymbol":"LOC101927248","entrezGeneId":101927248},{"hugoGeneSymbol":"LOC101927252","entrezGeneId":101927252},{"hugoGeneSymbol":"LOC101927253","entrezGeneId":101927253},{"hugoGeneSymbol":"LOC101927256","entrezGeneId":101927256},{"hugoGeneSymbol":"LOC101927257","entrezGeneId":101927257},{"hugoGeneSymbol":"LOC101927259","entrezGeneId":101927259},{"hugoGeneSymbol":"LOC101927262","entrezGeneId":101927262},{"hugoGeneSymbol":"LOC101927263","entrezGeneId":101927263},{"hugoGeneSymbol":"LOC101927264","entrezGeneId":101927264},{"hugoGeneSymbol":"LOC101927267","entrezGeneId":101927267},{"hugoGeneSymbol":"LOC101927268","entrezGeneId":101927268},{"hugoGeneSymbol":"LOC101927269","entrezGeneId":101927269},{"hugoGeneSymbol":"LOC101927272","entrezGeneId":101927272},{"hugoGeneSymbol":"LOC101927278","entrezGeneId":101927278},{"hugoGeneSymbol":"LOC101927281","entrezGeneId":101927281},{"hugoGeneSymbol":"LOC101927283","entrezGeneId":101927283},{"hugoGeneSymbol":"LOC101927284","entrezGeneId":101927284},{"hugoGeneSymbol":"LOC101927293","entrezGeneId":101927293},{"hugoGeneSymbol":"LOC101927296","entrezGeneId":101927296},{"hugoGeneSymbol":"LOC101927297","entrezGeneId":101927297},{"hugoGeneSymbol":"LOC101927300","entrezGeneId":101927300},{"hugoGeneSymbol":"LOC101927310","entrezGeneId":101927310},{"hugoGeneSymbol":"LOC101927314","entrezGeneId":101927314},{"hugoGeneSymbol":"LOC101927318","entrezGeneId":101927318},{"hugoGeneSymbol":"LOC101927322","entrezGeneId":101927322},{"hugoGeneSymbol":"LOC101927325","entrezGeneId":101927325},{"hugoGeneSymbol":"LOC101927329","entrezGeneId":101927329},{"hugoGeneSymbol":"LOC101927330","entrezGeneId":101927330},{"hugoGeneSymbol":"LOC101927342","entrezGeneId":101927342},{"hugoGeneSymbol":"LOC101927344","entrezGeneId":101927344},{"hugoGeneSymbol":"LOC101927345","entrezGeneId":101927345},{"hugoGeneSymbol":"LOC101927353","entrezGeneId":101927353},{"hugoGeneSymbol":"LOC101927354","entrezGeneId":101927354},{"hugoGeneSymbol":"LOC101927355","entrezGeneId":101927355},{"hugoGeneSymbol":"LOC101927356","entrezGeneId":101927356},{"hugoGeneSymbol":"LOC101927357","entrezGeneId":101927357},{"hugoGeneSymbol":"LOC101927358","entrezGeneId":101927358},{"hugoGeneSymbol":"LOC101927359","entrezGeneId":101927359},{"hugoGeneSymbol":"LOC101927365","entrezGeneId":101927365},{"hugoGeneSymbol":"LOC101927366","entrezGeneId":101927366},{"hugoGeneSymbol":"LOC101927367","entrezGeneId":101927367},{"hugoGeneSymbol":"LOC101927369","entrezGeneId":101927369},{"hugoGeneSymbol":"LOC101927372","entrezGeneId":101927372},{"hugoGeneSymbol":"LOC101927374","entrezGeneId":101927374},{"hugoGeneSymbol":"LOC101927375","entrezGeneId":101927375},{"hugoGeneSymbol":"LOC101927377","entrezGeneId":101927377},{"hugoGeneSymbol":"LOC101927378","entrezGeneId":101927378},{"hugoGeneSymbol":"LOC101927383","entrezGeneId":101927383},{"hugoGeneSymbol":"LOC101927385","entrezGeneId":101927385},{"hugoGeneSymbol":"LOC101927388","entrezGeneId":101927388},{"hugoGeneSymbol":"LOC101927389","entrezGeneId":101927389},{"hugoGeneSymbol":"LOC101927391","entrezGeneId":101927391},{"hugoGeneSymbol":"LOC101927392","entrezGeneId":101927392},{"hugoGeneSymbol":"LOC101927393","entrezGeneId":101927393},{"hugoGeneSymbol":"LOC101927394","entrezGeneId":101927394},{"hugoGeneSymbol":"LOC101927397","entrezGeneId":101927397},{"hugoGeneSymbol":"LOC101927400","entrezGeneId":101927400},{"hugoGeneSymbol":"LOC101927401","entrezGeneId":101927401},{"hugoGeneSymbol":"LOC101927402","entrezGeneId":101927402},{"hugoGeneSymbol":"LOC101927404","entrezGeneId":101927404},{"hugoGeneSymbol":"LOC101927405","entrezGeneId":101927405},{"hugoGeneSymbol":"LOC101927410","entrezGeneId":101927410},{"hugoGeneSymbol":"LOC101927413","entrezGeneId":101927413},{"hugoGeneSymbol":"LOC101927414","entrezGeneId":101927414},{"hugoGeneSymbol":"LOC101927415","entrezGeneId":101927415},{"hugoGeneSymbol":"LOC101927417","entrezGeneId":101927417},{"hugoGeneSymbol":"LOC101927418","entrezGeneId":101927418},{"hugoGeneSymbol":"LOC101927419","entrezGeneId":101927419},{"hugoGeneSymbol":"LOC101927420","entrezGeneId":101927420},{"hugoGeneSymbol":"LOC101927421","entrezGeneId":101927421},{"hugoGeneSymbol":"LOC101927429","entrezGeneId":101927429},{"hugoGeneSymbol":"LOC101927432","entrezGeneId":101927432},{"hugoGeneSymbol":"LOC101927434","entrezGeneId":101927434},{"hugoGeneSymbol":"LOC101927436","entrezGeneId":101927436},{"hugoGeneSymbol":"LOC101927437","entrezGeneId":101927437},{"hugoGeneSymbol":"LOC101927439","entrezGeneId":101927439},{"hugoGeneSymbol":"LOC101927441","entrezGeneId":101927441},{"hugoGeneSymbol":"LOC101927445","entrezGeneId":101927445},{"hugoGeneSymbol":"LOC101927446","entrezGeneId":101927446},{"hugoGeneSymbol":"LOC101927447","entrezGeneId":101927447},{"hugoGeneSymbol":"LOC101927450","entrezGeneId":101927450},{"hugoGeneSymbol":"LOC101927451","entrezGeneId":101927451},{"hugoGeneSymbol":"LOC101927452","entrezGeneId":101927452},{"hugoGeneSymbol":"LOC101927454","entrezGeneId":101927454},{"hugoGeneSymbol":"LOC101927461","entrezGeneId":101927461},{"hugoGeneSymbol":"LOC101927467","entrezGeneId":101927467},{"hugoGeneSymbol":"LOC101927468","entrezGeneId":101927468},{"hugoGeneSymbol":"LOC101927469","entrezGeneId":101927469},{"hugoGeneSymbol":"LOC101927472","entrezGeneId":101927472},{"hugoGeneSymbol":"LOC101927473","entrezGeneId":101927473},{"hugoGeneSymbol":"LOC101927474","entrezGeneId":101927474},{"hugoGeneSymbol":"LOC101927476","entrezGeneId":101927476},{"hugoGeneSymbol":"LOC101927478","entrezGeneId":101927478},{"hugoGeneSymbol":"LOC101927479","entrezGeneId":101927479},{"hugoGeneSymbol":"LOC101927480","entrezGeneId":101927480},{"hugoGeneSymbol":"LOC101927482","entrezGeneId":101927482},{"hugoGeneSymbol":"LOC101927483","entrezGeneId":101927483},{"hugoGeneSymbol":"LOC101927484","entrezGeneId":101927484},{"hugoGeneSymbol":"LOC101927486","entrezGeneId":101927486},{"hugoGeneSymbol":"LOC101927488","entrezGeneId":101927488},{"hugoGeneSymbol":"LOC101927490","entrezGeneId":101927490},{"hugoGeneSymbol":"LOC101927495","entrezGeneId":101927495},{"hugoGeneSymbol":"LOC101927496","entrezGeneId":101927496},{"hugoGeneSymbol":"LOC101927497","entrezGeneId":101927497},{"hugoGeneSymbol":"LOC101927499","entrezGeneId":101927499},{"hugoGeneSymbol":"LOC101927502","entrezGeneId":101927502},{"hugoGeneSymbol":"LOC101927503","entrezGeneId":101927503},{"hugoGeneSymbol":"LOC101927506","entrezGeneId":101927506},{"hugoGeneSymbol":"LOC101927509","entrezGeneId":101927509},{"hugoGeneSymbol":"LOC101927510","entrezGeneId":101927510},{"hugoGeneSymbol":"LOC101927511","entrezGeneId":101927511},{"hugoGeneSymbol":"LOC101927512","entrezGeneId":101927512},{"hugoGeneSymbol":"LOC101927513","entrezGeneId":101927513},{"hugoGeneSymbol":"LOC101927514","entrezGeneId":101927514},{"hugoGeneSymbol":"LOC101927516","entrezGeneId":101927516},{"hugoGeneSymbol":"LOC101927518","entrezGeneId":101927518},{"hugoGeneSymbol":"LOC101927521","entrezGeneId":101927521},{"hugoGeneSymbol":"LOC101927522","entrezGeneId":101927522},{"hugoGeneSymbol":"LOC101927523","entrezGeneId":101927523},{"hugoGeneSymbol":"LOC101927531","entrezGeneId":101927531},{"hugoGeneSymbol":"LOC101927533","entrezGeneId":101927533},{"hugoGeneSymbol":"LOC101927534","entrezGeneId":101927534},{"hugoGeneSymbol":"LOC101927536","entrezGeneId":101927536},{"hugoGeneSymbol":"LOC101927538","entrezGeneId":101927538},{"hugoGeneSymbol":"LOC101927539","entrezGeneId":101927539},{"hugoGeneSymbol":"LOC101927543","entrezGeneId":101927543},{"hugoGeneSymbol":"LOC101927548","entrezGeneId":101927548},{"hugoGeneSymbol":"LOC101927549","entrezGeneId":101927549},{"hugoGeneSymbol":"LOC101927550","entrezGeneId":101927550},{"hugoGeneSymbol":"LOC101927551","entrezGeneId":101927551},{"hugoGeneSymbol":"LOC101927552","entrezGeneId":101927552},{"hugoGeneSymbol":"LOC101927555","entrezGeneId":101927555},{"hugoGeneSymbol":"LOC101927556","entrezGeneId":101927556},{"hugoGeneSymbol":"LOC101927557","entrezGeneId":101927557},{"hugoGeneSymbol":"LOC101927558","entrezGeneId":101927558},{"hugoGeneSymbol":"LOC101927560","entrezGeneId":101927560},{"hugoGeneSymbol":"LOC101927562","entrezGeneId":101927562},{"hugoGeneSymbol":"LOC101927566","entrezGeneId":101927566},{"hugoGeneSymbol":"LOC101927571","entrezGeneId":101927571},{"hugoGeneSymbol":"LOC101927572","entrezGeneId":101927572},{"hugoGeneSymbol":"LOC101927573","entrezGeneId":101927573},{"hugoGeneSymbol":"LOC101927575","entrezGeneId":101927575},{"hugoGeneSymbol":"LOC101927583","entrezGeneId":101927583},{"hugoGeneSymbol":"LOC101927584","entrezGeneId":101927584},{"hugoGeneSymbol":"LOC101927588","entrezGeneId":101927588},{"hugoGeneSymbol":"LOC101927596","entrezGeneId":101927596},{"hugoGeneSymbol":"LOC101927598","entrezGeneId":101927598},{"hugoGeneSymbol":"LOC101927600","entrezGeneId":101927600},{"hugoGeneSymbol":"LOC101927602","entrezGeneId":101927602},{"hugoGeneSymbol":"LOC101927603","entrezGeneId":101927603},{"hugoGeneSymbol":"LOC101927604","entrezGeneId":101927604},{"hugoGeneSymbol":"LOC101927605","entrezGeneId":101927605},{"hugoGeneSymbol":"LOC101927608","entrezGeneId":101927608},{"hugoGeneSymbol":"LOC101927609","entrezGeneId":101927609},{"hugoGeneSymbol":"LOC101927610","entrezGeneId":101927610},{"hugoGeneSymbol":"LOC101927613","entrezGeneId":101927613},{"hugoGeneSymbol":"LOC101927615","entrezGeneId":101927615},{"hugoGeneSymbol":"LOC101927620","entrezGeneId":101927620},{"hugoGeneSymbol":"LOC101927623","entrezGeneId":101927623},{"hugoGeneSymbol":"LOC101927627","entrezGeneId":101927627},{"hugoGeneSymbol":"LOC101927630","entrezGeneId":101927630},{"hugoGeneSymbol":"LOC101927632","entrezGeneId":101927632},{"hugoGeneSymbol":"LOC101927635","entrezGeneId":101927635},{"hugoGeneSymbol":"LOC101927636","entrezGeneId":101927636},{"hugoGeneSymbol":"LOC101927640","entrezGeneId":101927640},{"hugoGeneSymbol":"LOC101927646","entrezGeneId":101927646},{"hugoGeneSymbol":"LOC101927647","entrezGeneId":101927647},{"hugoGeneSymbol":"LOC101927657","entrezGeneId":101927657},{"hugoGeneSymbol":"LOC101927661","entrezGeneId":101927661},{"hugoGeneSymbol":"LOC101927664","entrezGeneId":101927664},{"hugoGeneSymbol":"LOC101927666","entrezGeneId":101927666},{"hugoGeneSymbol":"LOC101927668","entrezGeneId":101927668},{"hugoGeneSymbol":"LOC101927673","entrezGeneId":101927673},{"hugoGeneSymbol":"LOC101927687","entrezGeneId":101927687},{"hugoGeneSymbol":"LOC101927690","entrezGeneId":101927690},{"hugoGeneSymbol":"LOC101927691","entrezGeneId":101927691},{"hugoGeneSymbol":"LOC101927692","entrezGeneId":101927692},{"hugoGeneSymbol":"LOC101927693","entrezGeneId":101927693},{"hugoGeneSymbol":"LOC101927699","entrezGeneId":101927699},{"hugoGeneSymbol":"LOC101927702","entrezGeneId":101927702},{"hugoGeneSymbol":"LOC101927708","entrezGeneId":101927708},{"hugoGeneSymbol":"LOC101927709","entrezGeneId":101927709},{"hugoGeneSymbol":"LOC101927711","entrezGeneId":101927711},{"hugoGeneSymbol":"LOC101927712","entrezGeneId":101927712},{"hugoGeneSymbol":"LOC101927723","entrezGeneId":101927723},{"hugoGeneSymbol":"LOC101927727","entrezGeneId":101927727},{"hugoGeneSymbol":"LOC101927730","entrezGeneId":101927730},{"hugoGeneSymbol":"LOC101927741","entrezGeneId":101927741},{"hugoGeneSymbol":"LOC101927745","entrezGeneId":101927745},{"hugoGeneSymbol":"LOC101927746","entrezGeneId":101927746},{"hugoGeneSymbol":"LOC101927751","entrezGeneId":101927751},{"hugoGeneSymbol":"LOC101927752","entrezGeneId":101927752},{"hugoGeneSymbol":"LOC101927756","entrezGeneId":101927756},{"hugoGeneSymbol":"LOC101927759","entrezGeneId":101927759},{"hugoGeneSymbol":"LOC101927760","entrezGeneId":101927760},{"hugoGeneSymbol":"LOC101927762","entrezGeneId":101927762},{"hugoGeneSymbol":"LOC101927764","entrezGeneId":101927764},{"hugoGeneSymbol":"LOC101927765","entrezGeneId":101927765},{"hugoGeneSymbol":"LOC101927769","entrezGeneId":101927769},{"hugoGeneSymbol":"LOC101927770","entrezGeneId":101927770},{"hugoGeneSymbol":"LOC101927785","entrezGeneId":101927785},{"hugoGeneSymbol":"LOC101927786","entrezGeneId":101927786},{"hugoGeneSymbol":"LOC101927787","entrezGeneId":101927787},{"hugoGeneSymbol":"LOC101927788","entrezGeneId":101927788},{"hugoGeneSymbol":"LOC101927789","entrezGeneId":101927789},{"hugoGeneSymbol":"LOC101927790","entrezGeneId":101927790},{"hugoGeneSymbol":"LOC101927793","entrezGeneId":101927793},{"hugoGeneSymbol":"LOC101927795","entrezGeneId":101927795},{"hugoGeneSymbol":"LOC101927798","entrezGeneId":101927798},{"hugoGeneSymbol":"LOC101927809","entrezGeneId":101927809},{"hugoGeneSymbol":"LOC101927811","entrezGeneId":101927811},{"hugoGeneSymbol":"LOC101927814","entrezGeneId":101927814},{"hugoGeneSymbol":"LOC101927815","entrezGeneId":101927815},{"hugoGeneSymbol":"LOC101927817","entrezGeneId":101927817},{"hugoGeneSymbol":"LOC101927822","entrezGeneId":101927822},{"hugoGeneSymbol":"LOC101927823","entrezGeneId":101927823},{"hugoGeneSymbol":"LOC101927824","entrezGeneId":101927824},{"hugoGeneSymbol":"LOC101927825","entrezGeneId":101927825},{"hugoGeneSymbol":"LOC101927827","entrezGeneId":101927827},{"hugoGeneSymbol":"LOC101927829","entrezGeneId":101927829},{"hugoGeneSymbol":"LOC101927830","entrezGeneId":101927830},{"hugoGeneSymbol":"LOC101927834","entrezGeneId":101927834},{"hugoGeneSymbol":"LOC101927837","entrezGeneId":101927837},{"hugoGeneSymbol":"LOC101927839","entrezGeneId":101927839},{"hugoGeneSymbol":"LOC101927840","entrezGeneId":101927840},{"hugoGeneSymbol":"LOC101927844","entrezGeneId":101927844},{"hugoGeneSymbol":"LOC101927845","entrezGeneId":101927845},{"hugoGeneSymbol":"LOC101927846","entrezGeneId":101927846},{"hugoGeneSymbol":"LOC101927847","entrezGeneId":101927847},{"hugoGeneSymbol":"LOC101927851","entrezGeneId":101927851},{"hugoGeneSymbol":"LOC101927854","entrezGeneId":101927854},{"hugoGeneSymbol":"LOC101927855","entrezGeneId":101927855},{"hugoGeneSymbol":"LOC101927857","entrezGeneId":101927857},{"hugoGeneSymbol":"LOC101927858","entrezGeneId":101927858},{"hugoGeneSymbol":"LOC101927859","entrezGeneId":101927859},{"hugoGeneSymbol":"LOC101927863","entrezGeneId":101927863},{"hugoGeneSymbol":"LOC101927864","entrezGeneId":101927864},{"hugoGeneSymbol":"LOC101927865","entrezGeneId":101927865},{"hugoGeneSymbol":"LOC101927870","entrezGeneId":101927870},{"hugoGeneSymbol":"LOC101927871","entrezGeneId":101927871},{"hugoGeneSymbol":"LOC101927872","entrezGeneId":101927872},{"hugoGeneSymbol":"LOC101927877","entrezGeneId":101927877},{"hugoGeneSymbol":"LOC101927879","entrezGeneId":101927879},{"hugoGeneSymbol":"LOC101927880","entrezGeneId":101927880},{"hugoGeneSymbol":"LOC101927881","entrezGeneId":101927881},{"hugoGeneSymbol":"LOC101927882","entrezGeneId":101927882},{"hugoGeneSymbol":"LOC101927884","entrezGeneId":101927884},{"hugoGeneSymbol":"LOC101927888","entrezGeneId":101927888},{"hugoGeneSymbol":"LOC101927890","entrezGeneId":101927890},{"hugoGeneSymbol":"LOC101927895","entrezGeneId":101927895},{"hugoGeneSymbol":"LOC101927896","entrezGeneId":101927896},{"hugoGeneSymbol":"LOC101927897","entrezGeneId":101927897},{"hugoGeneSymbol":"LOC101927898","entrezGeneId":101927898},{"hugoGeneSymbol":"LOC101927902","entrezGeneId":101927902},{"hugoGeneSymbol":"LOC101927904","entrezGeneId":101927904},{"hugoGeneSymbol":"LOC101927907","entrezGeneId":101927907},{"hugoGeneSymbol":"LOC101927908","entrezGeneId":101927908},{"hugoGeneSymbol":"LOC101927911","entrezGeneId":101927911},{"hugoGeneSymbol":"LOC101927913","entrezGeneId":101927913},{"hugoGeneSymbol":"LOC101927914","entrezGeneId":101927914},{"hugoGeneSymbol":"LOC101927915","entrezGeneId":101927915},{"hugoGeneSymbol":"LOC101927919","entrezGeneId":101927919},{"hugoGeneSymbol":"LOC101927923","entrezGeneId":101927923},{"hugoGeneSymbol":"LOC101927932","entrezGeneId":101927932},{"hugoGeneSymbol":"LOC101927935","entrezGeneId":101927935},{"hugoGeneSymbol":"LOC101927936","entrezGeneId":101927936},{"hugoGeneSymbol":"LOC101927942","entrezGeneId":101927942},{"hugoGeneSymbol":"LOC101927943","entrezGeneId":101927943},{"hugoGeneSymbol":"LOC101927947","entrezGeneId":101927947},{"hugoGeneSymbol":"LOC101927948","entrezGeneId":101927948},{"hugoGeneSymbol":"LOC101927949","entrezGeneId":101927949},{"hugoGeneSymbol":"LOC101927950","entrezGeneId":101927950},{"hugoGeneSymbol":"LOC101927952","entrezGeneId":101927952},{"hugoGeneSymbol":"LOC101927954","entrezGeneId":101927954},{"hugoGeneSymbol":"LOC101927960","entrezGeneId":101927960},{"hugoGeneSymbol":"LOC101927961","entrezGeneId":101927961},{"hugoGeneSymbol":"LOC101927963","entrezGeneId":101927963},{"hugoGeneSymbol":"LOC101927964","entrezGeneId":101927964},{"hugoGeneSymbol":"LOC101927966","entrezGeneId":101927966},{"hugoGeneSymbol":"LOC101927967","entrezGeneId":101927967},{"hugoGeneSymbol":"LOC101927969","entrezGeneId":101927969},{"hugoGeneSymbol":"LOC101927971","entrezGeneId":101927971},{"hugoGeneSymbol":"LOC101927972","entrezGeneId":101927972},{"hugoGeneSymbol":"LOC101927974","entrezGeneId":101927974},{"hugoGeneSymbol":"LOC101927975","entrezGeneId":101927975},{"hugoGeneSymbol":"LOC101927978","entrezGeneId":101927978},{"hugoGeneSymbol":"LOC101927979","entrezGeneId":101927979},{"hugoGeneSymbol":"LOC101927984","entrezGeneId":101927984},{"hugoGeneSymbol":"LOC101927987","entrezGeneId":101927987},{"hugoGeneSymbol":"LOC101927989","entrezGeneId":101927989},{"hugoGeneSymbol":"LOC101927993","entrezGeneId":101927993},{"hugoGeneSymbol":"LOC101927995","entrezGeneId":101927995},{"hugoGeneSymbol":"LOC101927997","entrezGeneId":101927997},{"hugoGeneSymbol":"LOC101927999","entrezGeneId":101927999},{"hugoGeneSymbol":"LOC101928000","entrezGeneId":101928000},{"hugoGeneSymbol":"LOC101928002","entrezGeneId":101928002},{"hugoGeneSymbol":"LOC101928004","entrezGeneId":101928004},{"hugoGeneSymbol":"LOC101928005","entrezGeneId":101928005},{"hugoGeneSymbol":"LOC101928007","entrezGeneId":101928007},{"hugoGeneSymbol":"LOC101928008","entrezGeneId":101928008},{"hugoGeneSymbol":"LOC101928009","entrezGeneId":101928009},{"hugoGeneSymbol":"LOC101928010","entrezGeneId":101928010},{"hugoGeneSymbol":"LOC101928012","entrezGeneId":101928012},{"hugoGeneSymbol":"LOC101928014","entrezGeneId":101928014},{"hugoGeneSymbol":"LOC101928016","entrezGeneId":101928016},{"hugoGeneSymbol":"LOC101928020","entrezGeneId":101928020},{"hugoGeneSymbol":"LOC101928021","entrezGeneId":101928021},{"hugoGeneSymbol":"LOC101928030","entrezGeneId":101928030},{"hugoGeneSymbol":"LOC101928032","entrezGeneId":101928032},{"hugoGeneSymbol":"LOC101928034","entrezGeneId":101928034},{"hugoGeneSymbol":"LOC101928035","entrezGeneId":101928035},{"hugoGeneSymbol":"LOC101928037","entrezGeneId":101928037},{"hugoGeneSymbol":"LOC101928039","entrezGeneId":101928039},{"hugoGeneSymbol":"LOC101928041","entrezGeneId":101928041},{"hugoGeneSymbol":"LOC101928042","entrezGeneId":101928042},{"hugoGeneSymbol":"LOC101928044","entrezGeneId":101928044},{"hugoGeneSymbol":"LOC101928045","entrezGeneId":101928045},{"hugoGeneSymbol":"LOC101928046","entrezGeneId":101928046},{"hugoGeneSymbol":"LOC101928047","entrezGeneId":101928047},{"hugoGeneSymbol":"LOC101928048","entrezGeneId":101928048},{"hugoGeneSymbol":"LOC101928051","entrezGeneId":101928051},{"hugoGeneSymbol":"LOC101928052","entrezGeneId":101928052},{"hugoGeneSymbol":"LOC101928053","entrezGeneId":101928053},{"hugoGeneSymbol":"LOC101928055","entrezGeneId":101928055},{"hugoGeneSymbol":"LOC101928058","entrezGeneId":101928058},{"hugoGeneSymbol":"LOC101928059","entrezGeneId":101928059},{"hugoGeneSymbol":"LOC101928063","entrezGeneId":101928063},{"hugoGeneSymbol":"LOC101928068","entrezGeneId":101928068},{"hugoGeneSymbol":"LOC101928069","entrezGeneId":101928069},{"hugoGeneSymbol":"LOC101928075","entrezGeneId":101928075},{"hugoGeneSymbol":"LOC101928076","entrezGeneId":101928076},{"hugoGeneSymbol":"LOC101928077","entrezGeneId":101928077},{"hugoGeneSymbol":"LOC101928078","entrezGeneId":101928078},{"hugoGeneSymbol":"LOC101928080","entrezGeneId":101928080},{"hugoGeneSymbol":"LOC101928081","entrezGeneId":101928081},{"hugoGeneSymbol":"LOC101928084","entrezGeneId":101928084},{"hugoGeneSymbol":"LOC101928087","entrezGeneId":101928087},{"hugoGeneSymbol":"LOC101928089","entrezGeneId":101928089},{"hugoGeneSymbol":"LOC101928092","entrezGeneId":101928092},{"hugoGeneSymbol":"LOC101928093","entrezGeneId":101928093},{"hugoGeneSymbol":"LOC101928095","entrezGeneId":101928095},{"hugoGeneSymbol":"LOC101928096","entrezGeneId":101928096},{"hugoGeneSymbol":"LOC101928098","entrezGeneId":101928098},{"hugoGeneSymbol":"LOC101928100","entrezGeneId":101928100},{"hugoGeneSymbol":"LOC101928103","entrezGeneId":101928103},{"hugoGeneSymbol":"LOC101928105","entrezGeneId":101928105},{"hugoGeneSymbol":"LOC101928107","entrezGeneId":101928107},{"hugoGeneSymbol":"LOC101928111","entrezGeneId":101928111},{"hugoGeneSymbol":"LOC101928118","entrezGeneId":101928118},{"hugoGeneSymbol":"LOC101928119","entrezGeneId":101928119},{"hugoGeneSymbol":"LOC101928120","entrezGeneId":101928120},{"hugoGeneSymbol":"LOC101928123","entrezGeneId":101928123},{"hugoGeneSymbol":"LOC101928126","entrezGeneId":101928126},{"hugoGeneSymbol":"LOC101928128","entrezGeneId":101928128},{"hugoGeneSymbol":"LOC101928131","entrezGeneId":101928131},{"hugoGeneSymbol":"LOC101928132","entrezGeneId":101928132},{"hugoGeneSymbol":"LOC101928134","entrezGeneId":101928134},{"hugoGeneSymbol":"LOC101928135","entrezGeneId":101928135},{"hugoGeneSymbol":"LOC101928140","entrezGeneId":101928140},{"hugoGeneSymbol":"LOC101928143","entrezGeneId":101928143},{"hugoGeneSymbol":"LOC101928144","entrezGeneId":101928144},{"hugoGeneSymbol":"LOC101928145","entrezGeneId":101928145},{"hugoGeneSymbol":"LOC101928146","entrezGeneId":101928146},{"hugoGeneSymbol":"LOC101928149","entrezGeneId":101928149},{"hugoGeneSymbol":"LOC101928150","entrezGeneId":101928150},{"hugoGeneSymbol":"LOC101928152","entrezGeneId":101928152},{"hugoGeneSymbol":"LOC101928156","entrezGeneId":101928156},{"hugoGeneSymbol":"LOC101928160","entrezGeneId":101928160},{"hugoGeneSymbol":"LOC101928161","entrezGeneId":101928161},{"hugoGeneSymbol":"LOC101928163","entrezGeneId":101928163},{"hugoGeneSymbol":"LOC101928166","entrezGeneId":101928166},{"hugoGeneSymbol":"LOC101928168","entrezGeneId":101928168},{"hugoGeneSymbol":"LOC101928174","entrezGeneId":101928174},{"hugoGeneSymbol":"LOC101928177","entrezGeneId":101928177},{"hugoGeneSymbol":"LOC101928180","entrezGeneId":101928180},{"hugoGeneSymbol":"LOC101928185","entrezGeneId":101928185},{"hugoGeneSymbol":"LOC101928188","entrezGeneId":101928188},{"hugoGeneSymbol":"LOC101928191","entrezGeneId":101928191},{"hugoGeneSymbol":"LOC101928193","entrezGeneId":101928193},{"hugoGeneSymbol":"LOC101928195","entrezGeneId":101928195},{"hugoGeneSymbol":"LOC101928196","entrezGeneId":101928196},{"hugoGeneSymbol":"LOC101928201","entrezGeneId":101928201},{"hugoGeneSymbol":"LOC101928202","entrezGeneId":101928202},{"hugoGeneSymbol":"LOC101928208","entrezGeneId":101928208},{"hugoGeneSymbol":"LOC101928211","entrezGeneId":101928211},{"hugoGeneSymbol":"LOC101928212","entrezGeneId":101928212},{"hugoGeneSymbol":"LOC101928214","entrezGeneId":101928214},{"hugoGeneSymbol":"LOC101928215","entrezGeneId":101928215},{"hugoGeneSymbol":"LOC101928216","entrezGeneId":101928216},{"hugoGeneSymbol":"LOC101928217","entrezGeneId":101928217},{"hugoGeneSymbol":"LOC101928219","entrezGeneId":101928219},{"hugoGeneSymbol":"LOC101928222","entrezGeneId":101928222},{"hugoGeneSymbol":"LOC101928226","entrezGeneId":101928226},{"hugoGeneSymbol":"LOC101928228","entrezGeneId":101928228},{"hugoGeneSymbol":"LOC101928230","entrezGeneId":101928230},{"hugoGeneSymbol":"LOC101928231","entrezGeneId":101928231},{"hugoGeneSymbol":"LOC101928234","entrezGeneId":101928234},{"hugoGeneSymbol":"LOC101928236","entrezGeneId":101928236},{"hugoGeneSymbol":"LOC101928237","entrezGeneId":101928237},{"hugoGeneSymbol":"LOC101928242","entrezGeneId":101928242},{"hugoGeneSymbol":"LOC101928247","entrezGeneId":101928247},{"hugoGeneSymbol":"LOC101928251","entrezGeneId":101928251},{"hugoGeneSymbol":"LOC101928253","entrezGeneId":101928253},{"hugoGeneSymbol":"LOC101928254","entrezGeneId":101928254},{"hugoGeneSymbol":"LOC101928255","entrezGeneId":101928255},{"hugoGeneSymbol":"LOC101928257","entrezGeneId":101928257},{"hugoGeneSymbol":"LOC101928263","entrezGeneId":101928263},{"hugoGeneSymbol":"LOC101928264","entrezGeneId":101928264},{"hugoGeneSymbol":"LOC101928266","entrezGeneId":101928266},{"hugoGeneSymbol":"LOC101928268","entrezGeneId":101928268},{"hugoGeneSymbol":"LOC101928269","entrezGeneId":101928269},{"hugoGeneSymbol":"LOC101928271","entrezGeneId":101928271},{"hugoGeneSymbol":"LOC101928272","entrezGeneId":101928272},{"hugoGeneSymbol":"LOC101928273","entrezGeneId":101928273},{"hugoGeneSymbol":"LOC101928274","entrezGeneId":101928274},{"hugoGeneSymbol":"LOC101928277","entrezGeneId":101928277},{"hugoGeneSymbol":"LOC101928278","entrezGeneId":101928278},{"hugoGeneSymbol":"LOC101928279","entrezGeneId":101928279},{"hugoGeneSymbol":"LOC101928283","entrezGeneId":101928283},{"hugoGeneSymbol":"LOC101928284","entrezGeneId":101928284},{"hugoGeneSymbol":"LOC101928295","entrezGeneId":101928295},{"hugoGeneSymbol":"LOC101928296","entrezGeneId":101928296},{"hugoGeneSymbol":"LOC101928298","entrezGeneId":101928298},{"hugoGeneSymbol":"LOC101928300","entrezGeneId":101928300},{"hugoGeneSymbol":"LOC101928303","entrezGeneId":101928303},{"hugoGeneSymbol":"LOC101928304","entrezGeneId":101928304},{"hugoGeneSymbol":"LOC101928306","entrezGeneId":101928306},{"hugoGeneSymbol":"LOC101928307","entrezGeneId":101928307},{"hugoGeneSymbol":"LOC101928314","entrezGeneId":101928314},{"hugoGeneSymbol":"LOC101928316","entrezGeneId":101928316},{"hugoGeneSymbol":"LOC101928317","entrezGeneId":101928317},{"hugoGeneSymbol":"LOC101928322","entrezGeneId":101928322},{"hugoGeneSymbol":"LOC101928323","entrezGeneId":101928323},{"hugoGeneSymbol":"LOC101928324","entrezGeneId":101928324},{"hugoGeneSymbol":"LOC101928326","entrezGeneId":101928326},{"hugoGeneSymbol":"LOC101928331","entrezGeneId":101928331},{"hugoGeneSymbol":"LOC101928333","entrezGeneId":101928333},{"hugoGeneSymbol":"LOC101928334","entrezGeneId":101928334},{"hugoGeneSymbol":"LOC101928335","entrezGeneId":101928335},{"hugoGeneSymbol":"LOC101928336","entrezGeneId":101928336},{"hugoGeneSymbol":"LOC101928338","entrezGeneId":101928338},{"hugoGeneSymbol":"LOC101928343","entrezGeneId":101928343},{"hugoGeneSymbol":"LOC101928344","entrezGeneId":101928344},{"hugoGeneSymbol":"LOC101928346","entrezGeneId":101928346},{"hugoGeneSymbol":"LOC101928347","entrezGeneId":101928347},{"hugoGeneSymbol":"LOC101928350","entrezGeneId":101928350},{"hugoGeneSymbol":"LOC101928351","entrezGeneId":101928351},{"hugoGeneSymbol":"LOC101928352","entrezGeneId":101928352},{"hugoGeneSymbol":"LOC101928354","entrezGeneId":101928354},{"hugoGeneSymbol":"LOC101928357","entrezGeneId":101928357},{"hugoGeneSymbol":"LOC101928358","entrezGeneId":101928358},{"hugoGeneSymbol":"LOC101928359","entrezGeneId":101928359},{"hugoGeneSymbol":"LOC101928361","entrezGeneId":101928361},{"hugoGeneSymbol":"LOC101928362","entrezGeneId":101928362},{"hugoGeneSymbol":"LOC101928368","entrezGeneId":101928368},{"hugoGeneSymbol":"LOC101928369","entrezGeneId":101928369},{"hugoGeneSymbol":"LOC101928370","entrezGeneId":101928370},{"hugoGeneSymbol":"LOC101928371","entrezGeneId":101928371},{"hugoGeneSymbol":"LOC101928372","entrezGeneId":101928372},{"hugoGeneSymbol":"LOC101928373","entrezGeneId":101928373},{"hugoGeneSymbol":"LOC101928377","entrezGeneId":101928377},{"hugoGeneSymbol":"LOC101928380","entrezGeneId":101928380},{"hugoGeneSymbol":"LOC101928381","entrezGeneId":101928381},{"hugoGeneSymbol":"LOC101928383","entrezGeneId":101928383},{"hugoGeneSymbol":"LOC101928384","entrezGeneId":101928384},{"hugoGeneSymbol":"LOC101928385","entrezGeneId":101928385},{"hugoGeneSymbol":"LOC101928386","entrezGeneId":101928386},{"hugoGeneSymbol":"LOC101928387","entrezGeneId":101928387},{"hugoGeneSymbol":"LOC101928389","entrezGeneId":101928389},{"hugoGeneSymbol":"LOC101928391","entrezGeneId":101928391},{"hugoGeneSymbol":"LOC101928392","entrezGeneId":101928392},{"hugoGeneSymbol":"LOC101928397","entrezGeneId":101928397},{"hugoGeneSymbol":"LOC101928398","entrezGeneId":101928398},{"hugoGeneSymbol":"LOC101928401","entrezGeneId":101928401},{"hugoGeneSymbol":"LOC101928402","entrezGeneId":101928402},{"hugoGeneSymbol":"LOC101928403","entrezGeneId":101928403},{"hugoGeneSymbol":"LOC101928404","entrezGeneId":101928404},{"hugoGeneSymbol":"LOC101928409","entrezGeneId":101928409},{"hugoGeneSymbol":"LOC101928414","entrezGeneId":101928414},{"hugoGeneSymbol":"LOC101928415","entrezGeneId":101928415},{"hugoGeneSymbol":"LOC101928416","entrezGeneId":101928416},{"hugoGeneSymbol":"LOC101928417","entrezGeneId":101928417},{"hugoGeneSymbol":"LOC101928418","entrezGeneId":101928418},{"hugoGeneSymbol":"LOC101928419","entrezGeneId":101928419},{"hugoGeneSymbol":"LOC101928421","entrezGeneId":101928421},{"hugoGeneSymbol":"LOC101928422","entrezGeneId":101928422},{"hugoGeneSymbol":"LOC101928424","entrezGeneId":101928424},{"hugoGeneSymbol":"LOC101928425","entrezGeneId":101928425},{"hugoGeneSymbol":"LOC101928429","entrezGeneId":101928429},{"hugoGeneSymbol":"LOC101928433","entrezGeneId":101928433},{"hugoGeneSymbol":"LOC101928436","entrezGeneId":101928436},{"hugoGeneSymbol":"LOC101928437","entrezGeneId":101928437},{"hugoGeneSymbol":"LOC101928438","entrezGeneId":101928438},{"hugoGeneSymbol":"LOC101928441","entrezGeneId":101928441},{"hugoGeneSymbol":"LOC101928443","entrezGeneId":101928443},{"hugoGeneSymbol":"LOC101928445","entrezGeneId":101928445},{"hugoGeneSymbol":"LOC101928446","entrezGeneId":101928446},{"hugoGeneSymbol":"LOC101928447","entrezGeneId":101928447},{"hugoGeneSymbol":"LOC101928450","entrezGeneId":101928450},{"hugoGeneSymbol":"LOC101928451","entrezGeneId":101928451},{"hugoGeneSymbol":"LOC101928453","entrezGeneId":101928453},{"hugoGeneSymbol":"LOC101928461","entrezGeneId":101928461},{"hugoGeneSymbol":"LOC101928462","entrezGeneId":101928462},{"hugoGeneSymbol":"LOC101928463","entrezGeneId":101928463},{"hugoGeneSymbol":"LOC101928465","entrezGeneId":101928465},{"hugoGeneSymbol":"LOC101928466","entrezGeneId":101928466},{"hugoGeneSymbol":"LOC101928472","entrezGeneId":101928472},{"hugoGeneSymbol":"LOC101928473","entrezGeneId":101928473},{"hugoGeneSymbol":"LOC101928474","entrezGeneId":101928474},{"hugoGeneSymbol":"LOC101928475","entrezGeneId":101928475},{"hugoGeneSymbol":"LOC101928477","entrezGeneId":101928477},{"hugoGeneSymbol":"LOC101928487","entrezGeneId":101928487},{"hugoGeneSymbol":"LOC101928489","entrezGeneId":101928489},{"hugoGeneSymbol":"LOC101928491","entrezGeneId":101928491},{"hugoGeneSymbol":"LOC101928495","entrezGeneId":101928495},{"hugoGeneSymbol":"LOC101928499","entrezGeneId":101928499},{"hugoGeneSymbol":"LOC101928502","entrezGeneId":101928502},{"hugoGeneSymbol":"LOC101928504","entrezGeneId":101928504},{"hugoGeneSymbol":"LOC101928505","entrezGeneId":101928505},{"hugoGeneSymbol":"LOC101928507","entrezGeneId":101928507},{"hugoGeneSymbol":"LOC101928508","entrezGeneId":101928508},{"hugoGeneSymbol":"LOC101928510","entrezGeneId":101928510},{"hugoGeneSymbol":"LOC101928512","entrezGeneId":101928512},{"hugoGeneSymbol":"LOC101928516","entrezGeneId":101928516},{"hugoGeneSymbol":"LOC101928517","entrezGeneId":101928517},{"hugoGeneSymbol":"LOC101928519","entrezGeneId":101928519},{"hugoGeneSymbol":"LOC101928521","entrezGeneId":101928521},{"hugoGeneSymbol":"LOC101928523","entrezGeneId":101928523},{"hugoGeneSymbol":"LOC101928524","entrezGeneId":101928524},{"hugoGeneSymbol":"LOC101928525","entrezGeneId":101928525},{"hugoGeneSymbol":"LOC101928526","entrezGeneId":101928526},{"hugoGeneSymbol":"LOC101928529","entrezGeneId":101928529},{"hugoGeneSymbol":"LOC101928530","entrezGeneId":101928530},{"hugoGeneSymbol":"LOC101928532","entrezGeneId":101928532},{"hugoGeneSymbol":"LOC101928535","entrezGeneId":101928535},{"hugoGeneSymbol":"LOC101928540","entrezGeneId":101928540},{"hugoGeneSymbol":"LOC101928543","entrezGeneId":101928543},{"hugoGeneSymbol":"LOC101928548","entrezGeneId":101928548},{"hugoGeneSymbol":"LOC101928551","entrezGeneId":101928551},{"hugoGeneSymbol":"LOC101928553","entrezGeneId":101928553},{"hugoGeneSymbol":"LOC101928554","entrezGeneId":101928554},{"hugoGeneSymbol":"LOC101928556","entrezGeneId":101928556},{"hugoGeneSymbol":"LOC101928557","entrezGeneId":101928557},{"hugoGeneSymbol":"LOC101928561","entrezGeneId":101928561},{"hugoGeneSymbol":"LOC101928563","entrezGeneId":101928563},{"hugoGeneSymbol":"LOC101928565","entrezGeneId":101928565},{"hugoGeneSymbol":"LOC101928570","entrezGeneId":101928570},{"hugoGeneSymbol":"LOC101928572","entrezGeneId":101928572},{"hugoGeneSymbol":"LOC101928573","entrezGeneId":101928573},{"hugoGeneSymbol":"LOC101928574","entrezGeneId":101928574},{"hugoGeneSymbol":"LOC101928576","entrezGeneId":101928576},{"hugoGeneSymbol":"LOC101928582","entrezGeneId":101928582},{"hugoGeneSymbol":"LOC101928583","entrezGeneId":101928583},{"hugoGeneSymbol":"LOC101928589","entrezGeneId":101928589},{"hugoGeneSymbol":"LOC101928590","entrezGeneId":101928590},{"hugoGeneSymbol":"LOC101928591","entrezGeneId":101928591},{"hugoGeneSymbol":"LOC101928592","entrezGeneId":101928592},{"hugoGeneSymbol":"LOC101928595","entrezGeneId":101928595},{"hugoGeneSymbol":"LOC101928596","entrezGeneId":101928596},{"hugoGeneSymbol":"LOC101928597","entrezGeneId":101928597},{"hugoGeneSymbol":"LOC101928605","entrezGeneId":101928605},{"hugoGeneSymbol":"LOC101928608","entrezGeneId":101928608},{"hugoGeneSymbol":"LOC101928617","entrezGeneId":101928617},{"hugoGeneSymbol":"LOC101928618","entrezGeneId":101928618},{"hugoGeneSymbol":"LOC101928622","entrezGeneId":101928622},{"hugoGeneSymbol":"LOC101928626","entrezGeneId":101928626},{"hugoGeneSymbol":"LOC101928627","entrezGeneId":101928627},{"hugoGeneSymbol":"LOC101928628","entrezGeneId":101928628},{"hugoGeneSymbol":"LOC101928631","entrezGeneId":101928631},{"hugoGeneSymbol":"LOC101928635","entrezGeneId":101928635},{"hugoGeneSymbol":"LOC101928636","entrezGeneId":101928636},{"hugoGeneSymbol":"LOC101928650","entrezGeneId":101928650},{"hugoGeneSymbol":"LOC101928651","entrezGeneId":101928651},{"hugoGeneSymbol":"LOC101928658","entrezGeneId":101928658},{"hugoGeneSymbol":"LOC101928659","entrezGeneId":101928659},{"hugoGeneSymbol":"LOC101928661","entrezGeneId":101928661},{"hugoGeneSymbol":"LOC101928663","entrezGeneId":101928663},{"hugoGeneSymbol":"LOC101928669","entrezGeneId":101928669},{"hugoGeneSymbol":"LOC101928673","entrezGeneId":101928673},{"hugoGeneSymbol":"LOC101928674","entrezGeneId":101928674},{"hugoGeneSymbol":"LOC101928675","entrezGeneId":101928675},{"hugoGeneSymbol":"LOC101928682","entrezGeneId":101928682},{"hugoGeneSymbol":"LOC101928688","entrezGeneId":101928688},{"hugoGeneSymbol":"LOC101928692","entrezGeneId":101928692},{"hugoGeneSymbol":"LOC101928696","entrezGeneId":101928696},{"hugoGeneSymbol":"LOC101928697","entrezGeneId":101928697},{"hugoGeneSymbol":"LOC101928700","entrezGeneId":101928700},{"hugoGeneSymbol":"LOC101928701","entrezGeneId":101928701},{"hugoGeneSymbol":"LOC101928705","entrezGeneId":101928705},{"hugoGeneSymbol":"LOC101928707","entrezGeneId":101928707},{"hugoGeneSymbol":"LOC101928708","entrezGeneId":101928708},{"hugoGeneSymbol":"LOC101928711","entrezGeneId":101928711},{"hugoGeneSymbol":"LOC101928716","entrezGeneId":101928716},{"hugoGeneSymbol":"LOC101928718","entrezGeneId":101928718},{"hugoGeneSymbol":"LOC101928721","entrezGeneId":101928721},{"hugoGeneSymbol":"LOC101928722","entrezGeneId":101928722},{"hugoGeneSymbol":"LOC101928725","entrezGeneId":101928725},{"hugoGeneSymbol":"LOC101928728","entrezGeneId":101928728},{"hugoGeneSymbol":"LOC101928730","entrezGeneId":101928730},{"hugoGeneSymbol":"LOC101928731","entrezGeneId":101928731},{"hugoGeneSymbol":"LOC101928733","entrezGeneId":101928733},{"hugoGeneSymbol":"LOC101928735","entrezGeneId":101928735},{"hugoGeneSymbol":"LOC101928737","entrezGeneId":101928737},{"hugoGeneSymbol":"LOC101928739","entrezGeneId":101928739},{"hugoGeneSymbol":"LOC101928743","entrezGeneId":101928743},{"hugoGeneSymbol":"LOC101928748","entrezGeneId":101928748},{"hugoGeneSymbol":"LOC101928755","entrezGeneId":101928755},{"hugoGeneSymbol":"LOC101928760","entrezGeneId":101928760},{"hugoGeneSymbol":"LOC101928762","entrezGeneId":101928762},{"hugoGeneSymbol":"LOC101928764","entrezGeneId":101928764},{"hugoGeneSymbol":"LOC101928768","entrezGeneId":101928768},{"hugoGeneSymbol":"LOC101928775","entrezGeneId":101928775},{"hugoGeneSymbol":"LOC101928782","entrezGeneId":101928782},{"hugoGeneSymbol":"LOC101928786","entrezGeneId":101928786},{"hugoGeneSymbol":"LOC101928791","entrezGeneId":101928791},{"hugoGeneSymbol":"LOC101928796","entrezGeneId":101928796},{"hugoGeneSymbol":"LOC101928797","entrezGeneId":101928797},{"hugoGeneSymbol":"LOC101928804","entrezGeneId":101928804},{"hugoGeneSymbol":"LOC101928807","entrezGeneId":101928807},{"hugoGeneSymbol":"LOC101928808","entrezGeneId":101928808},{"hugoGeneSymbol":"LOC101928809","entrezGeneId":101928809},{"hugoGeneSymbol":"LOC101928812","entrezGeneId":101928812},{"hugoGeneSymbol":"LOC101928813","entrezGeneId":101928813},{"hugoGeneSymbol":"LOC101928816","entrezGeneId":101928816},{"hugoGeneSymbol":"LOC101928817","entrezGeneId":101928817},{"hugoGeneSymbol":"LOC101928819","entrezGeneId":101928819},{"hugoGeneSymbol":"LOC101928823","entrezGeneId":101928823},{"hugoGeneSymbol":"LOC101928824","entrezGeneId":101928824},{"hugoGeneSymbol":"LOC101928832","entrezGeneId":101928832},{"hugoGeneSymbol":"LOC101928833","entrezGeneId":101928833},{"hugoGeneSymbol":"LOC101928834","entrezGeneId":101928834},{"hugoGeneSymbol":"LOC101928836","entrezGeneId":101928836},{"hugoGeneSymbol":"LOC101928837","entrezGeneId":101928837},{"hugoGeneSymbol":"LOC101928841","entrezGeneId":101928841},{"hugoGeneSymbol":"LOC101928842","entrezGeneId":101928842},{"hugoGeneSymbol":"LOC101928844","entrezGeneId":101928844},{"hugoGeneSymbol":"LOC101928847","entrezGeneId":101928847},{"hugoGeneSymbol":"LOC101928849","entrezGeneId":101928849},{"hugoGeneSymbol":"LOC101928850","entrezGeneId":101928850},{"hugoGeneSymbol":"LOC101928855","entrezGeneId":101928855},{"hugoGeneSymbol":"LOC101928856","entrezGeneId":101928856},{"hugoGeneSymbol":"LOC101928858","entrezGeneId":101928858},{"hugoGeneSymbol":"LOC101928859","entrezGeneId":101928859},{"hugoGeneSymbol":"LOC101928861","entrezGeneId":101928861},{"hugoGeneSymbol":"LOC101928863","entrezGeneId":101928863},{"hugoGeneSymbol":"LOC101928864","entrezGeneId":101928864},{"hugoGeneSymbol":"LOC101928865","entrezGeneId":101928865},{"hugoGeneSymbol":"LOC101928866","entrezGeneId":101928866},{"hugoGeneSymbol":"LOC101928868","entrezGeneId":101928868},{"hugoGeneSymbol":"LOC101928875","entrezGeneId":101928875},{"hugoGeneSymbol":"LOC101928879","entrezGeneId":101928879},{"hugoGeneSymbol":"LOC101928881","entrezGeneId":101928881},{"hugoGeneSymbol":"LOC101928882","entrezGeneId":101928882},{"hugoGeneSymbol":"LOC101928887","entrezGeneId":101928887},{"hugoGeneSymbol":"LOC101928893","entrezGeneId":101928893},{"hugoGeneSymbol":"LOC101928894","entrezGeneId":101928894},{"hugoGeneSymbol":"LOC101928896","entrezGeneId":101928896},{"hugoGeneSymbol":"LOC101928902","entrezGeneId":101928902},{"hugoGeneSymbol":"LOC101928906","entrezGeneId":101928906},{"hugoGeneSymbol":"LOC101928907","entrezGeneId":101928907},{"hugoGeneSymbol":"LOC101928909","entrezGeneId":101928909},{"hugoGeneSymbol":"LOC101928911","entrezGeneId":101928911},{"hugoGeneSymbol":"LOC101928912","entrezGeneId":101928912},{"hugoGeneSymbol":"LOC101928923","entrezGeneId":101928923},{"hugoGeneSymbol":"LOC101928924","entrezGeneId":101928924},{"hugoGeneSymbol":"LOC101928929","entrezGeneId":101928929},{"hugoGeneSymbol":"LOC101928932","entrezGeneId":101928932},{"hugoGeneSymbol":"LOC101928933","entrezGeneId":101928933},{"hugoGeneSymbol":"LOC101928936","entrezGeneId":101928936},{"hugoGeneSymbol":"LOC101928937","entrezGeneId":101928937},{"hugoGeneSymbol":"LOC101928940","entrezGeneId":101928940},{"hugoGeneSymbol":"LOC101928942","entrezGeneId":101928942},{"hugoGeneSymbol":"LOC101928943","entrezGeneId":101928943},{"hugoGeneSymbol":"LOC101928944","entrezGeneId":101928944},{"hugoGeneSymbol":"LOC101928948","entrezGeneId":101928948},{"hugoGeneSymbol":"LOC101928952","entrezGeneId":101928952},{"hugoGeneSymbol":"LOC101928953","entrezGeneId":101928953},{"hugoGeneSymbol":"LOC101928957","entrezGeneId":101928957},{"hugoGeneSymbol":"LOC101928959","entrezGeneId":101928959},{"hugoGeneSymbol":"LOC101928960","entrezGeneId":101928960},{"hugoGeneSymbol":"LOC101928961","entrezGeneId":101928961},{"hugoGeneSymbol":"LOC101928963","entrezGeneId":101928963},{"hugoGeneSymbol":"LOC101928972","entrezGeneId":101928972},{"hugoGeneSymbol":"LOC101928977","entrezGeneId":101928977},{"hugoGeneSymbol":"LOC101928978","entrezGeneId":101928978},{"hugoGeneSymbol":"LOC101928982","entrezGeneId":101928982},{"hugoGeneSymbol":"LOC101928985","entrezGeneId":101928985},{"hugoGeneSymbol":"LOC101928988","entrezGeneId":101928988},{"hugoGeneSymbol":"LOC101928993","entrezGeneId":101928993},{"hugoGeneSymbol":"LOC101928994","entrezGeneId":101928994},{"hugoGeneSymbol":"LOC101929000","entrezGeneId":101929000},{"hugoGeneSymbol":"LOC101929003","entrezGeneId":101929003},{"hugoGeneSymbol":"LOC101929004","entrezGeneId":101929004},{"hugoGeneSymbol":"LOC101929006","entrezGeneId":101929006},{"hugoGeneSymbol":"LOC101929007","entrezGeneId":101929007},{"hugoGeneSymbol":"LOC101929011","entrezGeneId":101929011},{"hugoGeneSymbol":"LOC101929013","entrezGeneId":101929013},{"hugoGeneSymbol":"LOC101929014","entrezGeneId":101929014},{"hugoGeneSymbol":"LOC101929018","entrezGeneId":101929018},{"hugoGeneSymbol":"LOC101929021","entrezGeneId":101929021},{"hugoGeneSymbol":"LOC101929022","entrezGeneId":101929022},{"hugoGeneSymbol":"LOC101929028","entrezGeneId":101929028},{"hugoGeneSymbol":"LOC101929031","entrezGeneId":101929031},{"hugoGeneSymbol":"LOC101929043","entrezGeneId":101929043},{"hugoGeneSymbol":"LOC101929045","entrezGeneId":101929045},{"hugoGeneSymbol":"LOC101929048","entrezGeneId":101929048},{"hugoGeneSymbol":"LOC101929050","entrezGeneId":101929050},{"hugoGeneSymbol":"LOC101929053","entrezGeneId":101929053},{"hugoGeneSymbol":"LOC101929054","entrezGeneId":101929054},{"hugoGeneSymbol":"LOC101929056","entrezGeneId":101929056},{"hugoGeneSymbol":"LOC101929057","entrezGeneId":101929057},{"hugoGeneSymbol":"LOC101929058","entrezGeneId":101929058},{"hugoGeneSymbol":"LOC101929064","entrezGeneId":101929064},{"hugoGeneSymbol":"LOC101929066","entrezGeneId":101929066},{"hugoGeneSymbol":"LOC101929073","entrezGeneId":101929073},{"hugoGeneSymbol":"LOC101929076","entrezGeneId":101929076},{"hugoGeneSymbol":"LOC101929087","entrezGeneId":101929087},{"hugoGeneSymbol":"LOC101929088","entrezGeneId":101929088},{"hugoGeneSymbol":"LOC101929089","entrezGeneId":101929089},{"hugoGeneSymbol":"LOC101929091","entrezGeneId":101929091},{"hugoGeneSymbol":"LOC101929095","entrezGeneId":101929095},{"hugoGeneSymbol":"LOC101929097","entrezGeneId":101929097},{"hugoGeneSymbol":"LOC101929098","entrezGeneId":101929098},{"hugoGeneSymbol":"LOC101929099","entrezGeneId":101929099},{"hugoGeneSymbol":"LOC101929104","entrezGeneId":101929104},{"hugoGeneSymbol":"LOC101929105","entrezGeneId":101929105},{"hugoGeneSymbol":"LOC101929106","entrezGeneId":101929106},{"hugoGeneSymbol":"LOC101929107","entrezGeneId":101929107},{"hugoGeneSymbol":"LOC101929109","entrezGeneId":101929109},{"hugoGeneSymbol":"LOC101929114","entrezGeneId":101929114},{"hugoGeneSymbol":"LOC101929116","entrezGeneId":101929116},{"hugoGeneSymbol":"LOC101929117","entrezGeneId":101929117},{"hugoGeneSymbol":"LOC101929122","entrezGeneId":101929122},{"hugoGeneSymbol":"LOC101929124","entrezGeneId":101929124},{"hugoGeneSymbol":"LOC101929128","entrezGeneId":101929128},{"hugoGeneSymbol":"LOC101929129","entrezGeneId":101929129},{"hugoGeneSymbol":"LOC101929130","entrezGeneId":101929130},{"hugoGeneSymbol":"LOC101929134","entrezGeneId":101929134},{"hugoGeneSymbol":"LOC101929135","entrezGeneId":101929135},{"hugoGeneSymbol":"LOC101929140","entrezGeneId":101929140},{"hugoGeneSymbol":"LOC101929141","entrezGeneId":101929141},{"hugoGeneSymbol":"LOC101929142","entrezGeneId":101929142},{"hugoGeneSymbol":"LOC101929147","entrezGeneId":101929147},{"hugoGeneSymbol":"LOC101929148","entrezGeneId":101929148},{"hugoGeneSymbol":"LOC101929154","entrezGeneId":101929154},{"hugoGeneSymbol":"LOC101929160","entrezGeneId":101929160},{"hugoGeneSymbol":"LOC101929161","entrezGeneId":101929161},{"hugoGeneSymbol":"LOC101929162","entrezGeneId":101929162},{"hugoGeneSymbol":"LOC101929163","entrezGeneId":101929163},{"hugoGeneSymbol":"LOC101929165","entrezGeneId":101929165},{"hugoGeneSymbol":"LOC101929172","entrezGeneId":101929172},{"hugoGeneSymbol":"LOC101929174","entrezGeneId":101929174},{"hugoGeneSymbol":"LOC101929178","entrezGeneId":101929178},{"hugoGeneSymbol":"LOC101929180","entrezGeneId":101929180},{"hugoGeneSymbol":"LOC101929185","entrezGeneId":101929185},{"hugoGeneSymbol":"LOC101929188","entrezGeneId":101929188},{"hugoGeneSymbol":"LOC101929200","entrezGeneId":101929200},{"hugoGeneSymbol":"LOC101929201","entrezGeneId":101929201},{"hugoGeneSymbol":"LOC101929204","entrezGeneId":101929204},{"hugoGeneSymbol":"LOC101929208","entrezGeneId":101929208},{"hugoGeneSymbol":"LOC101929210","entrezGeneId":101929210},{"hugoGeneSymbol":"LOC101929216","entrezGeneId":101929216},{"hugoGeneSymbol":"LOC101929217","entrezGeneId":101929217},{"hugoGeneSymbol":"LOC101929224","entrezGeneId":101929224},{"hugoGeneSymbol":"LOC101929227","entrezGeneId":101929227},{"hugoGeneSymbol":"LOC101929229","entrezGeneId":101929229},{"hugoGeneSymbol":"LOC101929230","entrezGeneId":101929230},{"hugoGeneSymbol":"LOC101929231","entrezGeneId":101929231},{"hugoGeneSymbol":"LOC101929232","entrezGeneId":101929232},{"hugoGeneSymbol":"LOC101929234","entrezGeneId":101929234},{"hugoGeneSymbol":"LOC101929235","entrezGeneId":101929235},{"hugoGeneSymbol":"LOC101929237","entrezGeneId":101929237},{"hugoGeneSymbol":"LOC101929240","entrezGeneId":101929240},{"hugoGeneSymbol":"LOC101929243","entrezGeneId":101929243},{"hugoGeneSymbol":"LOC101929248","entrezGeneId":101929248},{"hugoGeneSymbol":"LOC101929251","entrezGeneId":101929251},{"hugoGeneSymbol":"LOC101929255","entrezGeneId":101929255},{"hugoGeneSymbol":"LOC101929256","entrezGeneId":101929256},{"hugoGeneSymbol":"LOC101929258","entrezGeneId":101929258},{"hugoGeneSymbol":"LOC101929259","entrezGeneId":101929259},{"hugoGeneSymbol":"LOC101929268","entrezGeneId":101929268},{"hugoGeneSymbol":"LOC101929269","entrezGeneId":101929269},{"hugoGeneSymbol":"LOC101929270","entrezGeneId":101929270},{"hugoGeneSymbol":"LOC101929272","entrezGeneId":101929272},{"hugoGeneSymbol":"LOC101929278","entrezGeneId":101929278},{"hugoGeneSymbol":"LOC101929279","entrezGeneId":101929279},{"hugoGeneSymbol":"LOC101929280","entrezGeneId":101929280},{"hugoGeneSymbol":"LOC101929282","entrezGeneId":101929282},{"hugoGeneSymbol":"LOC101929285","entrezGeneId":101929285},{"hugoGeneSymbol":"LOC101929289","entrezGeneId":101929289},{"hugoGeneSymbol":"LOC101929290","entrezGeneId":101929290},{"hugoGeneSymbol":"LOC101929291","entrezGeneId":101929291},{"hugoGeneSymbol":"LOC101929294","entrezGeneId":101929294},{"hugoGeneSymbol":"LOC101929295","entrezGeneId":101929295},{"hugoGeneSymbol":"LOC101929297","entrezGeneId":101929297},{"hugoGeneSymbol":"LOC101929298","entrezGeneId":101929298},{"hugoGeneSymbol":"LOC101929305","entrezGeneId":101929305},{"hugoGeneSymbol":"LOC101929307","entrezGeneId":101929307},{"hugoGeneSymbol":"LOC101929308","entrezGeneId":101929308},{"hugoGeneSymbol":"LOC101929309","entrezGeneId":101929309},{"hugoGeneSymbol":"LOC101929314","entrezGeneId":101929314},{"hugoGeneSymbol":"LOC101929315","entrezGeneId":101929315},{"hugoGeneSymbol":"LOC101929316","entrezGeneId":101929316},{"hugoGeneSymbol":"LOC101929319","entrezGeneId":101929319},{"hugoGeneSymbol":"LOC101929320","entrezGeneId":101929320},{"hugoGeneSymbol":"LOC101929321","entrezGeneId":101929321},{"hugoGeneSymbol":"LOC101929322","entrezGeneId":101929322},{"hugoGeneSymbol":"LOC101929326","entrezGeneId":101929326},{"hugoGeneSymbol":"LOC101929331","entrezGeneId":101929331},{"hugoGeneSymbol":"LOC101929333","entrezGeneId":101929333},{"hugoGeneSymbol":"LOC101929340","entrezGeneId":101929340},{"hugoGeneSymbol":"LOC101929341","entrezGeneId":101929341},{"hugoGeneSymbol":"LOC101929343","entrezGeneId":101929343},{"hugoGeneSymbol":"LOC101929347","entrezGeneId":101929347},{"hugoGeneSymbol":"LOC101929348","entrezGeneId":101929348},{"hugoGeneSymbol":"LOC101929352","entrezGeneId":101929352},{"hugoGeneSymbol":"LOC101929353","entrezGeneId":101929353},{"hugoGeneSymbol":"LOC101929356","entrezGeneId":101929356},{"hugoGeneSymbol":"LOC101929359","entrezGeneId":101929359},{"hugoGeneSymbol":"LOC101929367","entrezGeneId":101929367},{"hugoGeneSymbol":"LOC101929372","entrezGeneId":101929372},{"hugoGeneSymbol":"LOC101929373","entrezGeneId":101929373},{"hugoGeneSymbol":"LOC101929380","entrezGeneId":101929380},{"hugoGeneSymbol":"LOC101929384","entrezGeneId":101929384},{"hugoGeneSymbol":"LOC101929386","entrezGeneId":101929386},{"hugoGeneSymbol":"LOC101929388","entrezGeneId":101929388},{"hugoGeneSymbol":"LOC101929398","entrezGeneId":101929398},{"hugoGeneSymbol":"LOC101929400","entrezGeneId":101929400},{"hugoGeneSymbol":"LOC101929408","entrezGeneId":101929408},{"hugoGeneSymbol":"LOC101929411","entrezGeneId":101929411},{"hugoGeneSymbol":"LOC101929413","entrezGeneId":101929413},{"hugoGeneSymbol":"LOC101929415","entrezGeneId":101929415},{"hugoGeneSymbol":"LOC101929418","entrezGeneId":101929418},{"hugoGeneSymbol":"LOC101929420","entrezGeneId":101929420},{"hugoGeneSymbol":"LOC101929427","entrezGeneId":101929427},{"hugoGeneSymbol":"LOC101929431","entrezGeneId":101929431},{"hugoGeneSymbol":"LOC101929432","entrezGeneId":101929432},{"hugoGeneSymbol":"LOC101929439","entrezGeneId":101929439},{"hugoGeneSymbol":"LOC101929440","entrezGeneId":101929440},{"hugoGeneSymbol":"LOC101929444","entrezGeneId":101929444},{"hugoGeneSymbol":"LOC101929445","entrezGeneId":101929445},{"hugoGeneSymbol":"LOC101929446","entrezGeneId":101929446},{"hugoGeneSymbol":"LOC101929447","entrezGeneId":101929447},{"hugoGeneSymbol":"LOC101929452","entrezGeneId":101929452},{"hugoGeneSymbol":"LOC101929457","entrezGeneId":101929457},{"hugoGeneSymbol":"LOC101929459","entrezGeneId":101929459},{"hugoGeneSymbol":"LOC101929460","entrezGeneId":101929460},{"hugoGeneSymbol":"LOC101929464","entrezGeneId":101929464},{"hugoGeneSymbol":"LOC101929470","entrezGeneId":101929470},{"hugoGeneSymbol":"LOC101929473","entrezGeneId":101929473},{"hugoGeneSymbol":"LOC101929479","entrezGeneId":101929479},{"hugoGeneSymbol":"LOC101929480","entrezGeneId":101929480},{"hugoGeneSymbol":"LOC101929485","entrezGeneId":101929485},{"hugoGeneSymbol":"LOC101929488","entrezGeneId":101929488},{"hugoGeneSymbol":"LOC101929492","entrezGeneId":101929492},{"hugoGeneSymbol":"LOC101929494","entrezGeneId":101929494},{"hugoGeneSymbol":"LOC101929497","entrezGeneId":101929497},{"hugoGeneSymbol":"LOC101929498","entrezGeneId":101929498},{"hugoGeneSymbol":"LOC101929506","entrezGeneId":101929506},{"hugoGeneSymbol":"LOC101929507","entrezGeneId":101929507},{"hugoGeneSymbol":"LOC101929510","entrezGeneId":101929510},{"hugoGeneSymbol":"LOC101929512","entrezGeneId":101929512},{"hugoGeneSymbol":"LOC101929516","entrezGeneId":101929516},{"hugoGeneSymbol":"LOC101929517","entrezGeneId":101929517},{"hugoGeneSymbol":"LOC101929523","entrezGeneId":101929523},{"hugoGeneSymbol":"LOC101929524","entrezGeneId":101929524},{"hugoGeneSymbol":"LOC101929526","entrezGeneId":101929526},{"hugoGeneSymbol":"LOC101929528","entrezGeneId":101929528},{"hugoGeneSymbol":"LOC101929529","entrezGeneId":101929529},{"hugoGeneSymbol":"LOC101929532","entrezGeneId":101929532},{"hugoGeneSymbol":"LOC101929534","entrezGeneId":101929534},{"hugoGeneSymbol":"LOC101929535","entrezGeneId":101929535},{"hugoGeneSymbol":"LOC101929536","entrezGeneId":101929536},{"hugoGeneSymbol":"LOC101929538","entrezGeneId":101929538},{"hugoGeneSymbol":"LOC101929540","entrezGeneId":101929540},{"hugoGeneSymbol":"LOC101929541","entrezGeneId":101929541},{"hugoGeneSymbol":"LOC101929542","entrezGeneId":101929542},{"hugoGeneSymbol":"LOC101929547","entrezGeneId":101929547},{"hugoGeneSymbol":"LOC101929549","entrezGeneId":101929549},{"hugoGeneSymbol":"LOC101929550","entrezGeneId":101929550},{"hugoGeneSymbol":"LOC101929551","entrezGeneId":101929551},{"hugoGeneSymbol":"LOC101929552","entrezGeneId":101929552},{"hugoGeneSymbol":"LOC101929554","entrezGeneId":101929554},{"hugoGeneSymbol":"LOC101929555","entrezGeneId":101929555},{"hugoGeneSymbol":"LOC101929560","entrezGeneId":101929560},{"hugoGeneSymbol":"LOC101929563","entrezGeneId":101929563},{"hugoGeneSymbol":"LOC101929566","entrezGeneId":101929566},{"hugoGeneSymbol":"LOC101929570","entrezGeneId":101929570},{"hugoGeneSymbol":"LOC101929572","entrezGeneId":101929572},{"hugoGeneSymbol":"LOC101929574","entrezGeneId":101929574},{"hugoGeneSymbol":"LOC101929575","entrezGeneId":101929575},{"hugoGeneSymbol":"LOC101929577","entrezGeneId":101929577},{"hugoGeneSymbol":"LOC101929578","entrezGeneId":101929578},{"hugoGeneSymbol":"LOC101929579","entrezGeneId":101929579},{"hugoGeneSymbol":"LOC101929583","entrezGeneId":101929583},{"hugoGeneSymbol":"LOC101929586","entrezGeneId":101929586},{"hugoGeneSymbol":"LOC101929592","entrezGeneId":101929592},{"hugoGeneSymbol":"LOC101929594","entrezGeneId":101929594},{"hugoGeneSymbol":"LOC101929595","entrezGeneId":101929595},{"hugoGeneSymbol":"LOC101929596","entrezGeneId":101929596},{"hugoGeneSymbol":"LOC101929598","entrezGeneId":101929598},{"hugoGeneSymbol":"LOC101929599","entrezGeneId":101929599},{"hugoGeneSymbol":"LOC101929601","entrezGeneId":101929601},{"hugoGeneSymbol":"LOC101929609","entrezGeneId":101929609},{"hugoGeneSymbol":"LOC101929613","entrezGeneId":101929613},{"hugoGeneSymbol":"LOC101929614","entrezGeneId":101929614},{"hugoGeneSymbol":"LOC101929617","entrezGeneId":101929617},{"hugoGeneSymbol":"LOC101929621","entrezGeneId":101929621},{"hugoGeneSymbol":"LOC101929622","entrezGeneId":101929622},{"hugoGeneSymbol":"LOC101929626","entrezGeneId":101929626},{"hugoGeneSymbol":"LOC101929627","entrezGeneId":101929627},{"hugoGeneSymbol":"LOC101929628","entrezGeneId":101929628},{"hugoGeneSymbol":"LOC101929633","entrezGeneId":101929633},{"hugoGeneSymbol":"LOC101929638","entrezGeneId":101929638},{"hugoGeneSymbol":"LOC101929643","entrezGeneId":101929643},{"hugoGeneSymbol":"LOC101929645","entrezGeneId":101929645},{"hugoGeneSymbol":"LOC101929646","entrezGeneId":101929646},{"hugoGeneSymbol":"LOC101929650","entrezGeneId":101929650},{"hugoGeneSymbol":"LOC101929653","entrezGeneId":101929653},{"hugoGeneSymbol":"LOC101929657","entrezGeneId":101929657},{"hugoGeneSymbol":"LOC101929662","entrezGeneId":101929662},{"hugoGeneSymbol":"LOC101929667","entrezGeneId":101929667},{"hugoGeneSymbol":"LOC101929679","entrezGeneId":101929679},{"hugoGeneSymbol":"LOC101929680","entrezGeneId":101929680},{"hugoGeneSymbol":"LOC101929691","entrezGeneId":101929691},{"hugoGeneSymbol":"LOC101929692","entrezGeneId":101929692},{"hugoGeneSymbol":"LOC101929698","entrezGeneId":101929698},{"hugoGeneSymbol":"LOC101929703","entrezGeneId":101929703},{"hugoGeneSymbol":"LOC101929704","entrezGeneId":101929704},{"hugoGeneSymbol":"LOC101929705","entrezGeneId":101929705},{"hugoGeneSymbol":"LOC101929707","entrezGeneId":101929707},{"hugoGeneSymbol":"LOC101929709","entrezGeneId":101929709},{"hugoGeneSymbol":"LOC101929710","entrezGeneId":101929710},{"hugoGeneSymbol":"LOC101929715","entrezGeneId":101929715},{"hugoGeneSymbol":"LOC101929718","entrezGeneId":101929718},{"hugoGeneSymbol":"LOC101929719","entrezGeneId":101929719},{"hugoGeneSymbol":"LOC101929721","entrezGeneId":101929721},{"hugoGeneSymbol":"LOC101929727","entrezGeneId":101929727},{"hugoGeneSymbol":"LOC101929732","entrezGeneId":101929732},{"hugoGeneSymbol":"LOC101929738","entrezGeneId":101929738},{"hugoGeneSymbol":"LOC101929741","entrezGeneId":101929741},{"hugoGeneSymbol":"LOC101929747","entrezGeneId":101929747},{"hugoGeneSymbol":"LOC101929748","entrezGeneId":101929748},{"hugoGeneSymbol":"LOC101929749","entrezGeneId":101929749},{"hugoGeneSymbol":"LOC101929750","entrezGeneId":101929750},{"hugoGeneSymbol":"LOC101929752","entrezGeneId":101929752},{"hugoGeneSymbol":"LOC101929753","entrezGeneId":101929753},{"hugoGeneSymbol":"LOC101929756","entrezGeneId":101929756},{"hugoGeneSymbol":"LOC101929759","entrezGeneId":101929759},{"hugoGeneSymbol":"LOC101929762","entrezGeneId":101929762},{"hugoGeneSymbol":"LOC101929767","entrezGeneId":101929767},{"hugoGeneSymbol":"LOC101929770","entrezGeneId":101929770},{"hugoGeneSymbol":"LOC101929773","entrezGeneId":101929773},{"hugoGeneSymbol":"LOC101929774","entrezGeneId":101929774},{"hugoGeneSymbol":"LOC101929775","entrezGeneId":101929775},{"hugoGeneSymbol":"LOC101929777","entrezGeneId":101929777},{"hugoGeneSymbol":"LOC101929784","entrezGeneId":101929784},{"hugoGeneSymbol":"LOC101929788","entrezGeneId":101929788},{"hugoGeneSymbol":"LOC101929790","entrezGeneId":101929790},{"hugoGeneSymbol":"LOC101929796","entrezGeneId":101929796},{"hugoGeneSymbol":"LOC101929798","entrezGeneId":101929798},{"hugoGeneSymbol":"LOC101929800","entrezGeneId":101929800},{"hugoGeneSymbol":"LOC101929802","entrezGeneId":101929802},{"hugoGeneSymbol":"LOC101929805","entrezGeneId":101929805},{"hugoGeneSymbol":"LOC101929812","entrezGeneId":101929812},{"hugoGeneSymbol":"LOC101929814","entrezGeneId":101929814},{"hugoGeneSymbol":"LOC101929815","entrezGeneId":101929815},{"hugoGeneSymbol":"LOC101929816","entrezGeneId":101929816},{"hugoGeneSymbol":"LOC101929817","entrezGeneId":101929817},{"hugoGeneSymbol":"LOC101929819","entrezGeneId":101929819},{"hugoGeneSymbol":"LOC101929823","entrezGeneId":101929823},{"hugoGeneSymbol":"LOC101929828","entrezGeneId":101929828},{"hugoGeneSymbol":"LOC101929829","entrezGeneId":101929829},{"hugoGeneSymbol":"LOC101929830","entrezGeneId":101929830},{"hugoGeneSymbol":"LOC101929846","entrezGeneId":101929846},{"hugoGeneSymbol":"LOC101929861","entrezGeneId":101929861},{"hugoGeneSymbol":"LOC101929863","entrezGeneId":101929863},{"hugoGeneSymbol":"LOC101929866","entrezGeneId":101929866},{"hugoGeneSymbol":"LOC101929876","entrezGeneId":101929876},{"hugoGeneSymbol":"LOC101929878","entrezGeneId":101929878},{"hugoGeneSymbol":"LOC101929881","entrezGeneId":101929881},{"hugoGeneSymbol":"LOC101929882","entrezGeneId":101929882},{"hugoGeneSymbol":"LOC101929894","entrezGeneId":101929894},{"hugoGeneSymbol":"LOC101929895","entrezGeneId":101929895},{"hugoGeneSymbol":"LOC101929897","entrezGeneId":101929897},{"hugoGeneSymbol":"LOC101929898","entrezGeneId":101929898},{"hugoGeneSymbol":"LOC101929901","entrezGeneId":101929901},{"hugoGeneSymbol":"LOC101929902","entrezGeneId":101929902},{"hugoGeneSymbol":"LOC101929908","entrezGeneId":101929908},{"hugoGeneSymbol":"LOC101929918","entrezGeneId":101929918},{"hugoGeneSymbol":"LOC101929922","entrezGeneId":101929922},{"hugoGeneSymbol":"LOC101929923","entrezGeneId":101929923},{"hugoGeneSymbol":"LOC101929932","entrezGeneId":101929932},{"hugoGeneSymbol":"LOC101929935","entrezGeneId":101929935},{"hugoGeneSymbol":"LOC101929937","entrezGeneId":101929937},{"hugoGeneSymbol":"LOC101929943","entrezGeneId":101929943},{"hugoGeneSymbol":"LOC101929944","entrezGeneId":101929944},{"hugoGeneSymbol":"LOC101929947","entrezGeneId":101929947},{"hugoGeneSymbol":"LOC101929950","entrezGeneId":101929950},{"hugoGeneSymbol":"LOC101929951","entrezGeneId":101929951},{"hugoGeneSymbol":"LOC101929959","entrezGeneId":101929959},{"hugoGeneSymbol":"LOC101929963","entrezGeneId":101929963},{"hugoGeneSymbol":"LOC101929964","entrezGeneId":101929964},{"hugoGeneSymbol":"LOC101929967","entrezGeneId":101929967},{"hugoGeneSymbol":"LOC101929970","entrezGeneId":101929970},{"hugoGeneSymbol":"LOC101929974","entrezGeneId":101929974},{"hugoGeneSymbol":"LOC101929976","entrezGeneId":101929976},{"hugoGeneSymbol":"LOC101929977","entrezGeneId":101929977},{"hugoGeneSymbol":"LOC101929988","entrezGeneId":101929988},{"hugoGeneSymbol":"LOC101929989","entrezGeneId":101929989},{"hugoGeneSymbol":"LOC101929996","entrezGeneId":101929996},{"hugoGeneSymbol":"LOC101929998","entrezGeneId":101929998},{"hugoGeneSymbol":"LOC101930010","entrezGeneId":101930010},{"hugoGeneSymbol":"LOC101930026","entrezGeneId":101930026},{"hugoGeneSymbol":"LOC101930028","entrezGeneId":101930028},{"hugoGeneSymbol":"LOC101930041","entrezGeneId":101930041},{"hugoGeneSymbol":"LOC101930047","entrezGeneId":101930047},{"hugoGeneSymbol":"LOC101930048","entrezGeneId":101930048},{"hugoGeneSymbol":"LOC101930053","entrezGeneId":101930053},{"hugoGeneSymbol":"LOC101930071","entrezGeneId":101930071},{"hugoGeneSymbol":"LOC101930081","entrezGeneId":101930081},{"hugoGeneSymbol":"LOC101930085","entrezGeneId":101930085},{"hugoGeneSymbol":"LOC101930090","entrezGeneId":101930090},{"hugoGeneSymbol":"LOC101930091","entrezGeneId":101930091},{"hugoGeneSymbol":"LOC101930094","entrezGeneId":101930094},{"hugoGeneSymbol":"LOC101930100","entrezGeneId":101930100},{"hugoGeneSymbol":"LOC101930109","entrezGeneId":101930109},{"hugoGeneSymbol":"LOC101930112","entrezGeneId":101930112},{"hugoGeneSymbol":"LOC101930114","entrezGeneId":101930114},{"hugoGeneSymbol":"LOC101930115","entrezGeneId":101930115},{"hugoGeneSymbol":"LOC101930123","entrezGeneId":101930123},{"hugoGeneSymbol":"LOC101930129","entrezGeneId":101930129},{"hugoGeneSymbol":"LOC101930149","entrezGeneId":101930149},{"hugoGeneSymbol":"LOC101930275","entrezGeneId":101930275},{"hugoGeneSymbol":"LOC101930276","entrezGeneId":101930276},{"hugoGeneSymbol":"LOC101930307","entrezGeneId":101930307},{"hugoGeneSymbol":"LOC101930370","entrezGeneId":101930370},{"hugoGeneSymbol":"LOC101930420","entrezGeneId":101930420},{"hugoGeneSymbol":"LOC101930421","entrezGeneId":101930421},{"hugoGeneSymbol":"LOC101930434","entrezGeneId":101930434},{"hugoGeneSymbol":"LOC101930496","entrezGeneId":101930496},{"hugoGeneSymbol":"LOC101930531","entrezGeneId":101930531},{"hugoGeneSymbol":"LOC101930552","entrezGeneId":101930552},{"hugoGeneSymbol":"LOC101930589","entrezGeneId":101930589},{"hugoGeneSymbol":"LOC101930593","entrezGeneId":101930593},{"hugoGeneSymbol":"LOC101930665","entrezGeneId":101930665},{"hugoGeneSymbol":"LOC102030688","entrezGeneId":102030688},{"hugoGeneSymbol":"LOC102031319","entrezGeneId":102031319},{"hugoGeneSymbol":"LOC102443352","entrezGeneId":102443352},{"hugoGeneSymbol":"LOC102467080","entrezGeneId":102467080},{"hugoGeneSymbol":"LOC102467081","entrezGeneId":102467081},{"hugoGeneSymbol":"LOC102467216","entrezGeneId":102467216},{"hugoGeneSymbol":"LOC102467217","entrezGeneId":102467217},{"hugoGeneSymbol":"LOC102467222","entrezGeneId":102467222},{"hugoGeneSymbol":"LOC102467226","entrezGeneId":102467226},{"hugoGeneSymbol":"LOC102503427","entrezGeneId":102503427},{"hugoGeneSymbol":"LOC102546229","entrezGeneId":102546229},{"hugoGeneSymbol":"LOC102546294","entrezGeneId":102546294},{"hugoGeneSymbol":"LOC102546299","entrezGeneId":102546299},{"hugoGeneSymbol":"LOC102606465","entrezGeneId":102606465},{"hugoGeneSymbol":"LOC102606466","entrezGeneId":102606466},{"hugoGeneSymbol":"LOC102723305","entrezGeneId":102723305},{"hugoGeneSymbol":"LOC102723312","entrezGeneId":102723312},{"hugoGeneSymbol":"LOC102723313","entrezGeneId":102723313},{"hugoGeneSymbol":"LOC102723321","entrezGeneId":102723321},{"hugoGeneSymbol":"LOC102723322","entrezGeneId":102723322},{"hugoGeneSymbol":"LOC102723323","entrezGeneId":102723323},{"hugoGeneSymbol":"LOC102723324","entrezGeneId":102723324},{"hugoGeneSymbol":"LOC102723330","entrezGeneId":102723330},{"hugoGeneSymbol":"LOC102723331","entrezGeneId":102723331},{"hugoGeneSymbol":"LOC102723333","entrezGeneId":102723333},{"hugoGeneSymbol":"LOC102723334","entrezGeneId":102723334},{"hugoGeneSymbol":"LOC102723335","entrezGeneId":102723335},{"hugoGeneSymbol":"LOC102723338","entrezGeneId":102723338},{"hugoGeneSymbol":"LOC102723339","entrezGeneId":102723339},{"hugoGeneSymbol":"LOC102723340","entrezGeneId":102723340},{"hugoGeneSymbol":"LOC102723341","entrezGeneId":102723341},{"hugoGeneSymbol":"LOC102723342","entrezGeneId":102723342},{"hugoGeneSymbol":"LOC102723345","entrezGeneId":102723345},{"hugoGeneSymbol":"LOC102723347","entrezGeneId":102723347},{"hugoGeneSymbol":"LOC102723348","entrezGeneId":102723348},{"hugoGeneSymbol":"LOC102723350","entrezGeneId":102723350},{"hugoGeneSymbol":"LOC102723360","entrezGeneId":102723360},{"hugoGeneSymbol":"LOC102723364","entrezGeneId":102723364},{"hugoGeneSymbol":"LOC102723368","entrezGeneId":102723368},{"hugoGeneSymbol":"LOC102723370","entrezGeneId":102723370},{"hugoGeneSymbol":"LOC102723373","entrezGeneId":102723373},{"hugoGeneSymbol":"LOC102723376","entrezGeneId":102723376},{"hugoGeneSymbol":"LOC102723380","entrezGeneId":102723380},{"hugoGeneSymbol":"LOC102723381","entrezGeneId":102723381},{"hugoGeneSymbol":"LOC102723382","entrezGeneId":102723382},{"hugoGeneSymbol":"LOC102723383","entrezGeneId":102723383},{"hugoGeneSymbol":"LOC102723385","entrezGeneId":102723385},{"hugoGeneSymbol":"LOC102723389","entrezGeneId":102723389},{"hugoGeneSymbol":"LOC102723392","entrezGeneId":102723392},{"hugoGeneSymbol":"LOC102723393","entrezGeneId":102723393},{"hugoGeneSymbol":"LOC102723395","entrezGeneId":102723395},{"hugoGeneSymbol":"LOC102723396","entrezGeneId":102723396},{"hugoGeneSymbol":"LOC102723401","entrezGeneId":102723401},{"hugoGeneSymbol":"LOC102723403","entrezGeneId":102723403},{"hugoGeneSymbol":"LOC102723406","entrezGeneId":102723406},{"hugoGeneSymbol":"LOC102723407","entrezGeneId":102723407},{"hugoGeneSymbol":"LOC102723408","entrezGeneId":102723408},{"hugoGeneSymbol":"LOC102723409","entrezGeneId":102723409},{"hugoGeneSymbol":"LOC102723413","entrezGeneId":102723413},{"hugoGeneSymbol":"LOC102723414","entrezGeneId":102723414},{"hugoGeneSymbol":"LOC102723415","entrezGeneId":102723415},{"hugoGeneSymbol":"LOC102723427","entrezGeneId":102723427},{"hugoGeneSymbol":"LOC102723430","entrezGeneId":102723430},{"hugoGeneSymbol":"LOC102723432","entrezGeneId":102723432},{"hugoGeneSymbol":"LOC102723436","entrezGeneId":102723436},{"hugoGeneSymbol":"LOC102723439","entrezGeneId":102723439},{"hugoGeneSymbol":"LOC102723444","entrezGeneId":102723444},{"hugoGeneSymbol":"LOC102723445","entrezGeneId":102723445},{"hugoGeneSymbol":"LOC102723446","entrezGeneId":102723446},{"hugoGeneSymbol":"LOC102723447","entrezGeneId":102723447},{"hugoGeneSymbol":"LOC102723451","entrezGeneId":102723451},{"hugoGeneSymbol":"LOC102723458","entrezGeneId":102723458},{"hugoGeneSymbol":"LOC102723461","entrezGeneId":102723461},{"hugoGeneSymbol":"LOC102723462","entrezGeneId":102723462},{"hugoGeneSymbol":"LOC102723464","entrezGeneId":102723464},{"hugoGeneSymbol":"LOC102723468","entrezGeneId":102723468},{"hugoGeneSymbol":"LOC102723478","entrezGeneId":102723478},{"hugoGeneSymbol":"LOC102723480","entrezGeneId":102723480},{"hugoGeneSymbol":"LOC102723490","entrezGeneId":102723490},{"hugoGeneSymbol":"LOC102723493","entrezGeneId":102723493},{"hugoGeneSymbol":"LOC102723502","entrezGeneId":102723502},{"hugoGeneSymbol":"LOC102723506","entrezGeneId":102723506},{"hugoGeneSymbol":"LOC102723507","entrezGeneId":102723507},{"hugoGeneSymbol":"LOC102723512","entrezGeneId":102723512},{"hugoGeneSymbol":"LOC102723516","entrezGeneId":102723516},{"hugoGeneSymbol":"LOC102723517","entrezGeneId":102723517},{"hugoGeneSymbol":"LOC102723528","entrezGeneId":102723528},{"hugoGeneSymbol":"LOC102723529","entrezGeneId":102723529},{"hugoGeneSymbol":"LOC102723530","entrezGeneId":102723530},{"hugoGeneSymbol":"LOC102723532","entrezGeneId":102723532},{"hugoGeneSymbol":"LOC102723533","entrezGeneId":102723533},{"hugoGeneSymbol":"LOC102723534","entrezGeneId":102723534},{"hugoGeneSymbol":"LOC102723536","entrezGeneId":102723536},{"hugoGeneSymbol":"LOC102723539","entrezGeneId":102723539},{"hugoGeneSymbol":"LOC102723540","entrezGeneId":102723540},{"hugoGeneSymbol":"LOC102723543","entrezGeneId":102723543},{"hugoGeneSymbol":"LOC102723544","entrezGeneId":102723544},{"hugoGeneSymbol":"LOC102723546","entrezGeneId":102723546},{"hugoGeneSymbol":"LOC102723548","entrezGeneId":102723548},{"hugoGeneSymbol":"LOC102723560","entrezGeneId":102723560},{"hugoGeneSymbol":"LOC102723561","entrezGeneId":102723561},{"hugoGeneSymbol":"LOC102723564","entrezGeneId":102723564},{"hugoGeneSymbol":"LOC102723566","entrezGeneId":102723566},{"hugoGeneSymbol":"LOC102723568","entrezGeneId":102723568},{"hugoGeneSymbol":"LOC102723573","entrezGeneId":102723573},{"hugoGeneSymbol":"LOC102723575","entrezGeneId":102723575},{"hugoGeneSymbol":"LOC102723576","entrezGeneId":102723576},{"hugoGeneSymbol":"LOC102723582","entrezGeneId":102723582},{"hugoGeneSymbol":"LOC102723585","entrezGeneId":102723585},{"hugoGeneSymbol":"LOC102723591","entrezGeneId":102723591},{"hugoGeneSymbol":"LOC102723592","entrezGeneId":102723592},{"hugoGeneSymbol":"LOC102723594","entrezGeneId":102723594},{"hugoGeneSymbol":"LOC102723596","entrezGeneId":102723596},{"hugoGeneSymbol":"LOC102723604","entrezGeneId":102723604},{"hugoGeneSymbol":"LOC102723608","entrezGeneId":102723608},{"hugoGeneSymbol":"LOC102723618","entrezGeneId":102723618},{"hugoGeneSymbol":"LOC102723623","entrezGeneId":102723623},{"hugoGeneSymbol":"LOC102723624","entrezGeneId":102723624},{"hugoGeneSymbol":"LOC102723629","entrezGeneId":102723629},{"hugoGeneSymbol":"LOC102723630","entrezGeneId":102723630},{"hugoGeneSymbol":"LOC102723632","entrezGeneId":102723632},{"hugoGeneSymbol":"LOC102723633","entrezGeneId":102723633},{"hugoGeneSymbol":"LOC102723634","entrezGeneId":102723634},{"hugoGeneSymbol":"LOC102723635","entrezGeneId":102723635},{"hugoGeneSymbol":"LOC102723636","entrezGeneId":102723636},{"hugoGeneSymbol":"LOC102723638","entrezGeneId":102723638},{"hugoGeneSymbol":"LOC102723639","entrezGeneId":102723639},{"hugoGeneSymbol":"LOC102723648","entrezGeneId":102723648},{"hugoGeneSymbol":"LOC102723649","entrezGeneId":102723649},{"hugoGeneSymbol":"LOC102723654","entrezGeneId":102723654},{"hugoGeneSymbol":"LOC102723655","entrezGeneId":102723655},{"hugoGeneSymbol":"LOC102723656","entrezGeneId":102723656},{"hugoGeneSymbol":"LOC102723657","entrezGeneId":102723657},{"hugoGeneSymbol":"LOC102723660","entrezGeneId":102723660},{"hugoGeneSymbol":"LOC102723661","entrezGeneId":102723661},{"hugoGeneSymbol":"LOC102723663","entrezGeneId":102723663},{"hugoGeneSymbol":"LOC102723665","entrezGeneId":102723665},{"hugoGeneSymbol":"LOC102723668","entrezGeneId":102723668},{"hugoGeneSymbol":"LOC102723670","entrezGeneId":102723670},{"hugoGeneSymbol":"LOC102723672","entrezGeneId":102723672},{"hugoGeneSymbol":"LOC102723675","entrezGeneId":102723675},{"hugoGeneSymbol":"LOC102723678","entrezGeneId":102723678},{"hugoGeneSymbol":"LOC102723681","entrezGeneId":102723681},{"hugoGeneSymbol":"LOC102723684","entrezGeneId":102723684},{"hugoGeneSymbol":"LOC102723686","entrezGeneId":102723686},{"hugoGeneSymbol":"LOC102723688","entrezGeneId":102723688},{"hugoGeneSymbol":"LOC102723689","entrezGeneId":102723689},{"hugoGeneSymbol":"LOC102723690","entrezGeneId":102723690},{"hugoGeneSymbol":"LOC102723692","entrezGeneId":102723692},{"hugoGeneSymbol":"LOC102723694","entrezGeneId":102723694},{"hugoGeneSymbol":"LOC102723696","entrezGeneId":102723696},{"hugoGeneSymbol":"LOC102723701","entrezGeneId":102723701},{"hugoGeneSymbol":"LOC102723703","entrezGeneId":102723703},{"hugoGeneSymbol":"LOC102723704","entrezGeneId":102723704},{"hugoGeneSymbol":"LOC102723708","entrezGeneId":102723708},{"hugoGeneSymbol":"LOC102723709","entrezGeneId":102723709},{"hugoGeneSymbol":"LOC102723713","entrezGeneId":102723713},{"hugoGeneSymbol":"LOC102723714","entrezGeneId":102723714},{"hugoGeneSymbol":"LOC102723716","entrezGeneId":102723716},{"hugoGeneSymbol":"LOC102723722","entrezGeneId":102723722},{"hugoGeneSymbol":"LOC102723724","entrezGeneId":102723724},{"hugoGeneSymbol":"LOC102723725","entrezGeneId":102723725},{"hugoGeneSymbol":"LOC102723727","entrezGeneId":102723727},{"hugoGeneSymbol":"LOC102723728","entrezGeneId":102723728},{"hugoGeneSymbol":"LOC102723729","entrezGeneId":102723729},{"hugoGeneSymbol":"LOC102723730","entrezGeneId":102723730},{"hugoGeneSymbol":"LOC102723733","entrezGeneId":102723733},{"hugoGeneSymbol":"LOC102723739","entrezGeneId":102723739},{"hugoGeneSymbol":"LOC102723740","entrezGeneId":102723740},{"hugoGeneSymbol":"LOC102723741","entrezGeneId":102723741},{"hugoGeneSymbol":"LOC102723748","entrezGeneId":102723748},{"hugoGeneSymbol":"LOC102723749","entrezGeneId":102723749},{"hugoGeneSymbol":"LOC102723750","entrezGeneId":102723750},{"hugoGeneSymbol":"LOC102723752","entrezGeneId":102723752},{"hugoGeneSymbol":"LOC102723753","entrezGeneId":102723753},{"hugoGeneSymbol":"LOC102723757","entrezGeneId":102723757},{"hugoGeneSymbol":"LOC102723758","entrezGeneId":102723758},{"hugoGeneSymbol":"LOC102723759","entrezGeneId":102723759},{"hugoGeneSymbol":"LOC102723760","entrezGeneId":102723760},{"hugoGeneSymbol":"LOC102723761","entrezGeneId":102723761},{"hugoGeneSymbol":"LOC102723763","entrezGeneId":102723763},{"hugoGeneSymbol":"LOC102723765","entrezGeneId":102723765},{"hugoGeneSymbol":"LOC102723769","entrezGeneId":102723769},{"hugoGeneSymbol":"LOC102723776","entrezGeneId":102723776},{"hugoGeneSymbol":"LOC102723777","entrezGeneId":102723777},{"hugoGeneSymbol":"LOC102723780","entrezGeneId":102723780},{"hugoGeneSymbol":"LOC102723784","entrezGeneId":102723784},{"hugoGeneSymbol":"LOC102723786","entrezGeneId":102723786},{"hugoGeneSymbol":"LOC102723789","entrezGeneId":102723789},{"hugoGeneSymbol":"LOC102723791","entrezGeneId":102723791},{"hugoGeneSymbol":"LOC102723795","entrezGeneId":102723795},{"hugoGeneSymbol":"LOC102723798","entrezGeneId":102723798},{"hugoGeneSymbol":"LOC102723803","entrezGeneId":102723803},{"hugoGeneSymbol":"LOC102723809","entrezGeneId":102723809},{"hugoGeneSymbol":"LOC102723811","entrezGeneId":102723811},{"hugoGeneSymbol":"LOC102723814","entrezGeneId":102723814},{"hugoGeneSymbol":"LOC102723815","entrezGeneId":102723815},{"hugoGeneSymbol":"LOC102723817","entrezGeneId":102723817},{"hugoGeneSymbol":"LOC102723819","entrezGeneId":102723819},{"hugoGeneSymbol":"LOC102723824","entrezGeneId":102723824},{"hugoGeneSymbol":"LOC102723825","entrezGeneId":102723825},{"hugoGeneSymbol":"LOC102723831","entrezGeneId":102723831},{"hugoGeneSymbol":"LOC102723833","entrezGeneId":102723833},{"hugoGeneSymbol":"LOC102723834","entrezGeneId":102723834},{"hugoGeneSymbol":"LOC102723838","entrezGeneId":102723838},{"hugoGeneSymbol":"LOC102723840","entrezGeneId":102723840},{"hugoGeneSymbol":"LOC102723841","entrezGeneId":102723841},{"hugoGeneSymbol":"LOC102723842","entrezGeneId":102723842},{"hugoGeneSymbol":"LOC102723846","entrezGeneId":102723846},{"hugoGeneSymbol":"LOC102723847","entrezGeneId":102723847},{"hugoGeneSymbol":"LOC102723850","entrezGeneId":102723850},{"hugoGeneSymbol":"LOC102723851","entrezGeneId":102723851},{"hugoGeneSymbol":"LOC102723855","entrezGeneId":102723855},{"hugoGeneSymbol":"LOC102723862","entrezGeneId":102723862},{"hugoGeneSymbol":"LOC102723869","entrezGeneId":102723869},{"hugoGeneSymbol":"LOC102723870","entrezGeneId":102723870},{"hugoGeneSymbol":"LOC102723872","entrezGeneId":102723872},{"hugoGeneSymbol":"LOC102723876","entrezGeneId":102723876},{"hugoGeneSymbol":"LOC102723878","entrezGeneId":102723878},{"hugoGeneSymbol":"LOC102723879","entrezGeneId":102723879},{"hugoGeneSymbol":"LOC102723883","entrezGeneId":102723883},{"hugoGeneSymbol":"LOC102723885","entrezGeneId":102723885},{"hugoGeneSymbol":"LOC102723886","entrezGeneId":102723886},{"hugoGeneSymbol":"LOC102723890","entrezGeneId":102723890},{"hugoGeneSymbol":"LOC102723896","entrezGeneId":102723896},{"hugoGeneSymbol":"LOC102723897","entrezGeneId":102723897},{"hugoGeneSymbol":"LOC102723899","entrezGeneId":102723899},{"hugoGeneSymbol":"LOC102723904","entrezGeneId":102723904},{"hugoGeneSymbol":"LOC102723906","entrezGeneId":102723906},{"hugoGeneSymbol":"LOC102723910","entrezGeneId":102723910},{"hugoGeneSymbol":"LOC102723911","entrezGeneId":102723911},{"hugoGeneSymbol":"LOC102723914","entrezGeneId":102723914},{"hugoGeneSymbol":"LOC102723915","entrezGeneId":102723915},{"hugoGeneSymbol":"LOC102723917","entrezGeneId":102723917},{"hugoGeneSymbol":"LOC102723922","entrezGeneId":102723922},{"hugoGeneSymbol":"LOC102723924","entrezGeneId":102723924},{"hugoGeneSymbol":"LOC102723930","entrezGeneId":102723930},{"hugoGeneSymbol":"LOC102723932","entrezGeneId":102723932},{"hugoGeneSymbol":"LOC102723933","entrezGeneId":102723933},{"hugoGeneSymbol":"LOC102723934","entrezGeneId":102723934},{"hugoGeneSymbol":"LOC102723935","entrezGeneId":102723935},{"hugoGeneSymbol":"LOC102723944","entrezGeneId":102723944},{"hugoGeneSymbol":"LOC102723945","entrezGeneId":102723945},{"hugoGeneSymbol":"LOC102723948","entrezGeneId":102723948},{"hugoGeneSymbol":"LOC102723952","entrezGeneId":102723952},{"hugoGeneSymbol":"LOC102723955","entrezGeneId":102723955},{"hugoGeneSymbol":"LOC102723961","entrezGeneId":102723961},{"hugoGeneSymbol":"LOC102723963","entrezGeneId":102723963},{"hugoGeneSymbol":"LOC102723964","entrezGeneId":102723964},{"hugoGeneSymbol":"LOC102723966","entrezGeneId":102723966},{"hugoGeneSymbol":"LOC102723967","entrezGeneId":102723967},{"hugoGeneSymbol":"LOC102723968","entrezGeneId":102723968},{"hugoGeneSymbol":"LOC102723971","entrezGeneId":102723971},{"hugoGeneSymbol":"LOC102723983","entrezGeneId":102723983},{"hugoGeneSymbol":"LOC102723985","entrezGeneId":102723985},{"hugoGeneSymbol":"LOC102723989","entrezGeneId":102723989},{"hugoGeneSymbol":"LOC102723994","entrezGeneId":102723994},{"hugoGeneSymbol":"LOC102723996","entrezGeneId":102723996},{"hugoGeneSymbol":"LOC102723999","entrezGeneId":102723999},{"hugoGeneSymbol":"LOC102724001","entrezGeneId":102724001},{"hugoGeneSymbol":"LOC102724008","entrezGeneId":102724008},{"hugoGeneSymbol":"LOC102724009","entrezGeneId":102724009},{"hugoGeneSymbol":"LOC102724014","entrezGeneId":102724014},{"hugoGeneSymbol":"LOC102724015","entrezGeneId":102724015},{"hugoGeneSymbol":"LOC102724017","entrezGeneId":102724017},{"hugoGeneSymbol":"LOC102724019","entrezGeneId":102724019},{"hugoGeneSymbol":"LOC102724020","entrezGeneId":102724020},{"hugoGeneSymbol":"LOC102724025","entrezGeneId":102724025},{"hugoGeneSymbol":"LOC102724027","entrezGeneId":102724027},{"hugoGeneSymbol":"LOC102724030","entrezGeneId":102724030},{"hugoGeneSymbol":"LOC102724031","entrezGeneId":102724031},{"hugoGeneSymbol":"LOC102724034","entrezGeneId":102724034},{"hugoGeneSymbol":"LOC102724036","entrezGeneId":102724036},{"hugoGeneSymbol":"LOC102724039","entrezGeneId":102724039},{"hugoGeneSymbol":"LOC102724046","entrezGeneId":102724046},{"hugoGeneSymbol":"LOC102724048","entrezGeneId":102724048},{"hugoGeneSymbol":"LOC102724050","entrezGeneId":102724050},{"hugoGeneSymbol":"LOC102724052","entrezGeneId":102724052},{"hugoGeneSymbol":"LOC102724055","entrezGeneId":102724055},{"hugoGeneSymbol":"LOC102724057","entrezGeneId":102724057},{"hugoGeneSymbol":"LOC102724058","entrezGeneId":102724058},{"hugoGeneSymbol":"LOC102724062","entrezGeneId":102724062},{"hugoGeneSymbol":"LOC102724064","entrezGeneId":102724064},{"hugoGeneSymbol":"LOC102724066","entrezGeneId":102724066},{"hugoGeneSymbol":"LOC102724068","entrezGeneId":102724068},{"hugoGeneSymbol":"LOC102724070","entrezGeneId":102724070},{"hugoGeneSymbol":"LOC102724072","entrezGeneId":102724072},{"hugoGeneSymbol":"LOC102724078","entrezGeneId":102724078},{"hugoGeneSymbol":"LOC102724080","entrezGeneId":102724080},{"hugoGeneSymbol":"LOC102724081","entrezGeneId":102724081},{"hugoGeneSymbol":"LOC102724082","entrezGeneId":102724082},{"hugoGeneSymbol":"LOC102724084","entrezGeneId":102724084},{"hugoGeneSymbol":"LOC102724087","entrezGeneId":102724087},{"hugoGeneSymbol":"LOC102724092","entrezGeneId":102724092},{"hugoGeneSymbol":"LOC102724093","entrezGeneId":102724093},{"hugoGeneSymbol":"LOC102724094","entrezGeneId":102724094},{"hugoGeneSymbol":"LOC102724096","entrezGeneId":102724096},{"hugoGeneSymbol":"LOC102724100","entrezGeneId":102724100},{"hugoGeneSymbol":"LOC102724102","entrezGeneId":102724102},{"hugoGeneSymbol":"LOC102724104","entrezGeneId":102724104},{"hugoGeneSymbol":"LOC102724117","entrezGeneId":102724117},{"hugoGeneSymbol":"LOC102724120","entrezGeneId":102724120},{"hugoGeneSymbol":"LOC102724122","entrezGeneId":102724122},{"hugoGeneSymbol":"LOC102724124","entrezGeneId":102724124},{"hugoGeneSymbol":"LOC102724133","entrezGeneId":102724133},{"hugoGeneSymbol":"LOC102724135","entrezGeneId":102724135},{"hugoGeneSymbol":"LOC102724142","entrezGeneId":102724142},{"hugoGeneSymbol":"LOC102724143","entrezGeneId":102724143},{"hugoGeneSymbol":"LOC102724145","entrezGeneId":102724145},{"hugoGeneSymbol":"LOC102724146","entrezGeneId":102724146},{"hugoGeneSymbol":"LOC102724148","entrezGeneId":102724148},{"hugoGeneSymbol":"LOC102724149","entrezGeneId":102724149},{"hugoGeneSymbol":"LOC102724150","entrezGeneId":102724150},{"hugoGeneSymbol":"LOC102724151","entrezGeneId":102724151},{"hugoGeneSymbol":"LOC102724152","entrezGeneId":102724152},{"hugoGeneSymbol":"LOC102724153","entrezGeneId":102724153},{"hugoGeneSymbol":"LOC102724156","entrezGeneId":102724156},{"hugoGeneSymbol":"LOC102724158","entrezGeneId":102724158},{"hugoGeneSymbol":"LOC102724159","entrezGeneId":102724159},{"hugoGeneSymbol":"LOC102724163","entrezGeneId":102724163},{"hugoGeneSymbol":"LOC102724165","entrezGeneId":102724165},{"hugoGeneSymbol":"LOC102724178","entrezGeneId":102724178},{"hugoGeneSymbol":"LOC102724181","entrezGeneId":102724181},{"hugoGeneSymbol":"LOC102724183","entrezGeneId":102724183},{"hugoGeneSymbol":"LOC102724191","entrezGeneId":102724191},{"hugoGeneSymbol":"LOC102724193","entrezGeneId":102724193},{"hugoGeneSymbol":"LOC102724194","entrezGeneId":102724194},{"hugoGeneSymbol":"LOC102724197","entrezGeneId":102724197},{"hugoGeneSymbol":"LOC102724200","entrezGeneId":102724200},{"hugoGeneSymbol":"LOC102724202","entrezGeneId":102724202},{"hugoGeneSymbol":"LOC102724207","entrezGeneId":102724207},{"hugoGeneSymbol":"LOC102724210","entrezGeneId":102724210},{"hugoGeneSymbol":"LOC102724214","entrezGeneId":102724214},{"hugoGeneSymbol":"LOC102724219","entrezGeneId":102724219},{"hugoGeneSymbol":"LOC102724220","entrezGeneId":102724220},{"hugoGeneSymbol":"LOC102724222","entrezGeneId":102724222},{"hugoGeneSymbol":"LOC102724223","entrezGeneId":102724223},{"hugoGeneSymbol":"LOC102724227","entrezGeneId":102724227},{"hugoGeneSymbol":"LOC102724234","entrezGeneId":102724234},{"hugoGeneSymbol":"LOC102724236","entrezGeneId":102724236},{"hugoGeneSymbol":"LOC102724237","entrezGeneId":102724237},{"hugoGeneSymbol":"LOC102724238","entrezGeneId":102724238},{"hugoGeneSymbol":"LOC102724245","entrezGeneId":102724245},{"hugoGeneSymbol":"LOC102724250","entrezGeneId":102724250},{"hugoGeneSymbol":"LOC102724253","entrezGeneId":102724253},{"hugoGeneSymbol":"LOC102724261","entrezGeneId":102724261},{"hugoGeneSymbol":"LOC102724262","entrezGeneId":102724262},{"hugoGeneSymbol":"LOC102724264","entrezGeneId":102724264},{"hugoGeneSymbol":"LOC102724265","entrezGeneId":102724265},{"hugoGeneSymbol":"LOC102724269","entrezGeneId":102724269},{"hugoGeneSymbol":"LOC102724273","entrezGeneId":102724273},{"hugoGeneSymbol":"LOC102724288","entrezGeneId":102724288},{"hugoGeneSymbol":"LOC102724289","entrezGeneId":102724289},{"hugoGeneSymbol":"LOC102724290","entrezGeneId":102724290},{"hugoGeneSymbol":"LOC102724297","entrezGeneId":102724297},{"hugoGeneSymbol":"LOC102724301","entrezGeneId":102724301},{"hugoGeneSymbol":"LOC102724319","entrezGeneId":102724319},{"hugoGeneSymbol":"LOC102724322","entrezGeneId":102724322},{"hugoGeneSymbol":"LOC102724323","entrezGeneId":102724323},{"hugoGeneSymbol":"LOC102724327","entrezGeneId":102724327},{"hugoGeneSymbol":"LOC102724329","entrezGeneId":102724329},{"hugoGeneSymbol":"LOC102724330","entrezGeneId":102724330},{"hugoGeneSymbol":"LOC102724333","entrezGeneId":102724333},{"hugoGeneSymbol":"LOC102724334","entrezGeneId":102724334},{"hugoGeneSymbol":"LOC102724340","entrezGeneId":102724340},{"hugoGeneSymbol":"LOC102724345","entrezGeneId":102724345},{"hugoGeneSymbol":"LOC102724350","entrezGeneId":102724350},{"hugoGeneSymbol":"LOC102724351","entrezGeneId":102724351},{"hugoGeneSymbol":"LOC102724355","entrezGeneId":102724355},{"hugoGeneSymbol":"LOC102724357","entrezGeneId":102724357},{"hugoGeneSymbol":"LOC102724358","entrezGeneId":102724358},{"hugoGeneSymbol":"LOC102724363","entrezGeneId":102724363},{"hugoGeneSymbol":"LOC102724364","entrezGeneId":102724364},{"hugoGeneSymbol":"LOC102724365","entrezGeneId":102724365},{"hugoGeneSymbol":"LOC102724370","entrezGeneId":102724370},{"hugoGeneSymbol":"LOC102724373","entrezGeneId":102724373},{"hugoGeneSymbol":"LOC102724378","entrezGeneId":102724378},{"hugoGeneSymbol":"LOC102724379","entrezGeneId":102724379},{"hugoGeneSymbol":"LOC102724382","entrezGeneId":102724382},{"hugoGeneSymbol":"LOC102724389","entrezGeneId":102724389},{"hugoGeneSymbol":"LOC102724393","entrezGeneId":102724393},{"hugoGeneSymbol":"LOC102724397","entrezGeneId":102724397},{"hugoGeneSymbol":"LOC102724404","entrezGeneId":102724404},{"hugoGeneSymbol":"LOC102724406","entrezGeneId":102724406},{"hugoGeneSymbol":"LOC102724407","entrezGeneId":102724407},{"hugoGeneSymbol":"LOC102724410","entrezGeneId":102724410},{"hugoGeneSymbol":"LOC102724416","entrezGeneId":102724416},{"hugoGeneSymbol":"LOC102724417","entrezGeneId":102724417},{"hugoGeneSymbol":"LOC102724419","entrezGeneId":102724419},{"hugoGeneSymbol":"LOC102724420","entrezGeneId":102724420},{"hugoGeneSymbol":"LOC102724421","entrezGeneId":102724421},{"hugoGeneSymbol":"LOC102724427","entrezGeneId":102724427},{"hugoGeneSymbol":"LOC102724429","entrezGeneId":102724429},{"hugoGeneSymbol":"LOC102724431","entrezGeneId":102724431},{"hugoGeneSymbol":"LOC102724434","entrezGeneId":102724434},{"hugoGeneSymbol":"LOC102724437","entrezGeneId":102724437},{"hugoGeneSymbol":"LOC102724438","entrezGeneId":102724438},{"hugoGeneSymbol":"LOC102724439","entrezGeneId":102724439},{"hugoGeneSymbol":"LOC102724443","entrezGeneId":102724443},{"hugoGeneSymbol":"LOC102724446","entrezGeneId":102724446},{"hugoGeneSymbol":"LOC102724447","entrezGeneId":102724447},{"hugoGeneSymbol":"LOC102724449","entrezGeneId":102724449},{"hugoGeneSymbol":"LOC102724450","entrezGeneId":102724450},{"hugoGeneSymbol":"LOC102724452","entrezGeneId":102724452},{"hugoGeneSymbol":"LOC102724458","entrezGeneId":102724458},{"hugoGeneSymbol":"LOC102724459","entrezGeneId":102724459},{"hugoGeneSymbol":"LOC102724463","entrezGeneId":102724463},{"hugoGeneSymbol":"LOC102724465","entrezGeneId":102724465},{"hugoGeneSymbol":"LOC102724467","entrezGeneId":102724467},{"hugoGeneSymbol":"LOC102724468","entrezGeneId":102724468},{"hugoGeneSymbol":"LOC102724474","entrezGeneId":102724474},{"hugoGeneSymbol":"LOC102724475","entrezGeneId":102724475},{"hugoGeneSymbol":"LOC102724479","entrezGeneId":102724479},{"hugoGeneSymbol":"LOC102724482","entrezGeneId":102724482},{"hugoGeneSymbol":"LOC102724484","entrezGeneId":102724484},{"hugoGeneSymbol":"LOC102724485","entrezGeneId":102724485},{"hugoGeneSymbol":"LOC102724488","entrezGeneId":102724488},{"hugoGeneSymbol":"LOC102724489","entrezGeneId":102724489},{"hugoGeneSymbol":"LOC102724491","entrezGeneId":102724491},{"hugoGeneSymbol":"LOC102724495","entrezGeneId":102724495},{"hugoGeneSymbol":"LOC102724497","entrezGeneId":102724497},{"hugoGeneSymbol":"LOC102724507","entrezGeneId":102724507},{"hugoGeneSymbol":"LOC102724509","entrezGeneId":102724509},{"hugoGeneSymbol":"LOC102724510","entrezGeneId":102724510},{"hugoGeneSymbol":"LOC102724511","entrezGeneId":102724511},{"hugoGeneSymbol":"LOC102724517","entrezGeneId":102724517},{"hugoGeneSymbol":"LOC102724520","entrezGeneId":102724520},{"hugoGeneSymbol":"LOC102724521","entrezGeneId":102724521},{"hugoGeneSymbol":"LOC102724523","entrezGeneId":102724523},{"hugoGeneSymbol":"LOC102724525","entrezGeneId":102724525},{"hugoGeneSymbol":"LOC102724526","entrezGeneId":102724526},{"hugoGeneSymbol":"LOC102724527","entrezGeneId":102724527},{"hugoGeneSymbol":"LOC102724528","entrezGeneId":102724528},{"hugoGeneSymbol":"LOC102724530","entrezGeneId":102724530},{"hugoGeneSymbol":"LOC102724532","entrezGeneId":102724532},{"hugoGeneSymbol":"LOC102724533","entrezGeneId":102724533},{"hugoGeneSymbol":"LOC102724542","entrezGeneId":102724542},{"hugoGeneSymbol":"LOC102724545","entrezGeneId":102724545},{"hugoGeneSymbol":"LOC102724547","entrezGeneId":102724547},{"hugoGeneSymbol":"LOC102724548","entrezGeneId":102724548},{"hugoGeneSymbol":"LOC102724551","entrezGeneId":102724551},{"hugoGeneSymbol":"LOC102724552","entrezGeneId":102724552},{"hugoGeneSymbol":"LOC102724553","entrezGeneId":102724553},{"hugoGeneSymbol":"LOC102724555","entrezGeneId":102724555},{"hugoGeneSymbol":"LOC102724557","entrezGeneId":102724557},{"hugoGeneSymbol":"LOC102724562","entrezGeneId":102724562},{"hugoGeneSymbol":"LOC102724563","entrezGeneId":102724563},{"hugoGeneSymbol":"LOC102724566","entrezGeneId":102724566},{"hugoGeneSymbol":"LOC102724572","entrezGeneId":102724572},{"hugoGeneSymbol":"LOC102724577","entrezGeneId":102724577},{"hugoGeneSymbol":"LOC102724579","entrezGeneId":102724579},{"hugoGeneSymbol":"LOC102724580","entrezGeneId":102724580},{"hugoGeneSymbol":"LOC102724584","entrezGeneId":102724584},{"hugoGeneSymbol":"LOC102724586","entrezGeneId":102724586},{"hugoGeneSymbol":"LOC102724587","entrezGeneId":102724587},{"hugoGeneSymbol":"LOC102724589","entrezGeneId":102724589},{"hugoGeneSymbol":"LOC102724591","entrezGeneId":102724591},{"hugoGeneSymbol":"LOC102724593","entrezGeneId":102724593},{"hugoGeneSymbol":"LOC102724596","entrezGeneId":102724596},{"hugoGeneSymbol":"LOC102724601","entrezGeneId":102724601},{"hugoGeneSymbol":"LOC102724602","entrezGeneId":102724602},{"hugoGeneSymbol":"LOC102724603","entrezGeneId":102724603},{"hugoGeneSymbol":"LOC102724604","entrezGeneId":102724604},{"hugoGeneSymbol":"LOC102724608","entrezGeneId":102724608},{"hugoGeneSymbol":"LOC102724612","entrezGeneId":102724612},{"hugoGeneSymbol":"LOC102724615","entrezGeneId":102724615},{"hugoGeneSymbol":"LOC102724618","entrezGeneId":102724618},{"hugoGeneSymbol":"LOC102724621","entrezGeneId":102724621},{"hugoGeneSymbol":"LOC102724623","entrezGeneId":102724623},{"hugoGeneSymbol":"LOC102724624","entrezGeneId":102724624},{"hugoGeneSymbol":"LOC102724625","entrezGeneId":102724625},{"hugoGeneSymbol":"LOC102724627","entrezGeneId":102724627},{"hugoGeneSymbol":"LOC102724632","entrezGeneId":102724632},{"hugoGeneSymbol":"LOC102724637","entrezGeneId":102724637},{"hugoGeneSymbol":"LOC102724638","entrezGeneId":102724638},{"hugoGeneSymbol":"LOC102724642","entrezGeneId":102724642},{"hugoGeneSymbol":"LOC102724643","entrezGeneId":102724643},{"hugoGeneSymbol":"LOC102724646","entrezGeneId":102724646},{"hugoGeneSymbol":"LOC102724653","entrezGeneId":102724653},{"hugoGeneSymbol":"LOC102724657","entrezGeneId":102724657},{"hugoGeneSymbol":"LOC102724659","entrezGeneId":102724659},{"hugoGeneSymbol":"LOC102724660","entrezGeneId":102724660},{"hugoGeneSymbol":"LOC102724665","entrezGeneId":102724665},{"hugoGeneSymbol":"LOC102724670","entrezGeneId":102724670},{"hugoGeneSymbol":"LOC102724672","entrezGeneId":102724672},{"hugoGeneSymbol":"LOC102724677","entrezGeneId":102724677},{"hugoGeneSymbol":"LOC102724680","entrezGeneId":102724680},{"hugoGeneSymbol":"LOC102724682","entrezGeneId":102724682},{"hugoGeneSymbol":"LOC102724684","entrezGeneId":102724684},{"hugoGeneSymbol":"LOC102724687","entrezGeneId":102724687},{"hugoGeneSymbol":"LOC102724691","entrezGeneId":102724691},{"hugoGeneSymbol":"LOC102724700","entrezGeneId":102724700},{"hugoGeneSymbol":"LOC102724701","entrezGeneId":102724701},{"hugoGeneSymbol":"LOC102724708","entrezGeneId":102724708},{"hugoGeneSymbol":"LOC102724710","entrezGeneId":102724710},{"hugoGeneSymbol":"LOC102724711","entrezGeneId":102724711},{"hugoGeneSymbol":"LOC102724715","entrezGeneId":102724715},{"hugoGeneSymbol":"LOC102724719","entrezGeneId":102724719},{"hugoGeneSymbol":"LOC102724720","entrezGeneId":102724720},{"hugoGeneSymbol":"LOC102724723","entrezGeneId":102724723},{"hugoGeneSymbol":"LOC102724726","entrezGeneId":102724726},{"hugoGeneSymbol":"LOC102724727","entrezGeneId":102724727},{"hugoGeneSymbol":"LOC102724728","entrezGeneId":102724728},{"hugoGeneSymbol":"LOC102724731","entrezGeneId":102724731},{"hugoGeneSymbol":"LOC102724732","entrezGeneId":102724732},{"hugoGeneSymbol":"LOC102724734","entrezGeneId":102724734},{"hugoGeneSymbol":"LOC102724736","entrezGeneId":102724736},{"hugoGeneSymbol":"LOC102724737","entrezGeneId":102724737},{"hugoGeneSymbol":"LOC102724738","entrezGeneId":102724738},{"hugoGeneSymbol":"LOC102724740","entrezGeneId":102724740},{"hugoGeneSymbol":"LOC102724744","entrezGeneId":102724744},{"hugoGeneSymbol":"LOC102724745","entrezGeneId":102724745},{"hugoGeneSymbol":"LOC102724748","entrezGeneId":102724748},{"hugoGeneSymbol":"LOC102724749","entrezGeneId":102724749},{"hugoGeneSymbol":"LOC102724750","entrezGeneId":102724750},{"hugoGeneSymbol":"LOC102724751","entrezGeneId":102724751},{"hugoGeneSymbol":"LOC102724754","entrezGeneId":102724754},{"hugoGeneSymbol":"LOC102724760","entrezGeneId":102724760},{"hugoGeneSymbol":"LOC102724765","entrezGeneId":102724765},{"hugoGeneSymbol":"LOC102724768","entrezGeneId":102724768},{"hugoGeneSymbol":"LOC102724770","entrezGeneId":102724770},{"hugoGeneSymbol":"LOC102724772","entrezGeneId":102724772},{"hugoGeneSymbol":"LOC102724773","entrezGeneId":102724773},{"hugoGeneSymbol":"LOC102724775","entrezGeneId":102724775},{"hugoGeneSymbol":"LOC102724776","entrezGeneId":102724776},{"hugoGeneSymbol":"LOC102724777","entrezGeneId":102724777},{"hugoGeneSymbol":"LOC102724778","entrezGeneId":102724778},{"hugoGeneSymbol":"LOC102724780","entrezGeneId":102724780},{"hugoGeneSymbol":"LOC102724784","entrezGeneId":102724784},{"hugoGeneSymbol":"LOC102724785","entrezGeneId":102724785},{"hugoGeneSymbol":"LOC102724787","entrezGeneId":102724787},{"hugoGeneSymbol":"LOC102724788","entrezGeneId":102724788},{"hugoGeneSymbol":"LOC102724793","entrezGeneId":102724793},{"hugoGeneSymbol":"LOC102724800","entrezGeneId":102724800},{"hugoGeneSymbol":"LOC102724801","entrezGeneId":102724801},{"hugoGeneSymbol":"LOC102724802","entrezGeneId":102724802},{"hugoGeneSymbol":"LOC102724804","entrezGeneId":102724804},{"hugoGeneSymbol":"LOC102724805","entrezGeneId":102724805},{"hugoGeneSymbol":"LOC102724808","entrezGeneId":102724808},{"hugoGeneSymbol":"LOC102724813","entrezGeneId":102724813},{"hugoGeneSymbol":"LOC102724814","entrezGeneId":102724814},{"hugoGeneSymbol":"LOC102724817","entrezGeneId":102724817},{"hugoGeneSymbol":"LOC102724818","entrezGeneId":102724818},{"hugoGeneSymbol":"LOC102724822","entrezGeneId":102724822},{"hugoGeneSymbol":"LOC102724823","entrezGeneId":102724823},{"hugoGeneSymbol":"LOC102724830","entrezGeneId":102724830},{"hugoGeneSymbol":"LOC102724832","entrezGeneId":102724832},{"hugoGeneSymbol":"LOC102724834","entrezGeneId":102724834},{"hugoGeneSymbol":"LOC102724838","entrezGeneId":102724838},{"hugoGeneSymbol":"LOC102724843","entrezGeneId":102724843},{"hugoGeneSymbol":"LOC102724847","entrezGeneId":102724847},{"hugoGeneSymbol":"LOC102724848","entrezGeneId":102724848},{"hugoGeneSymbol":"LOC102724849","entrezGeneId":102724849},{"hugoGeneSymbol":"LOC102724850","entrezGeneId":102724850},{"hugoGeneSymbol":"LOC102724851","entrezGeneId":102724851},{"hugoGeneSymbol":"LOC102724852","entrezGeneId":102724852},{"hugoGeneSymbol":"LOC102724856","entrezGeneId":102724856},{"hugoGeneSymbol":"LOC102724857","entrezGeneId":102724857},{"hugoGeneSymbol":"LOC102724858","entrezGeneId":102724858},{"hugoGeneSymbol":"LOC102724859","entrezGeneId":102724859},{"hugoGeneSymbol":"LOC102724861","entrezGeneId":102724861},{"hugoGeneSymbol":"LOC102724863","entrezGeneId":102724863},{"hugoGeneSymbol":"LOC102724865","entrezGeneId":102724865},{"hugoGeneSymbol":"LOC102724874","entrezGeneId":102724874},{"hugoGeneSymbol":"LOC102724875","entrezGeneId":102724875},{"hugoGeneSymbol":"LOC102724877","entrezGeneId":102724877},{"hugoGeneSymbol":"LOC102724880","entrezGeneId":102724880},{"hugoGeneSymbol":"LOC102724881","entrezGeneId":102724881},{"hugoGeneSymbol":"LOC102724883","entrezGeneId":102724883},{"hugoGeneSymbol":"LOC102724886","entrezGeneId":102724886},{"hugoGeneSymbol":"LOC102724889","entrezGeneId":102724889},{"hugoGeneSymbol":"LOC102724892","entrezGeneId":102724892},{"hugoGeneSymbol":"LOC102724900","entrezGeneId":102724900},{"hugoGeneSymbol":"LOC102724902","entrezGeneId":102724902},{"hugoGeneSymbol":"LOC102724903","entrezGeneId":102724903},{"hugoGeneSymbol":"LOC102724904","entrezGeneId":102724904},{"hugoGeneSymbol":"LOC102724906","entrezGeneId":102724906},{"hugoGeneSymbol":"LOC102724907","entrezGeneId":102724907},{"hugoGeneSymbol":"LOC102724908","entrezGeneId":102724908},{"hugoGeneSymbol":"LOC102724916","entrezGeneId":102724916},{"hugoGeneSymbol":"LOC102724919","entrezGeneId":102724919},{"hugoGeneSymbol":"LOC102724922","entrezGeneId":102724922},{"hugoGeneSymbol":"LOC102724927","entrezGeneId":102724927},{"hugoGeneSymbol":"LOC102724929","entrezGeneId":102724929},{"hugoGeneSymbol":"LOC102724934","entrezGeneId":102724934},{"hugoGeneSymbol":"LOC102724937","entrezGeneId":102724937},{"hugoGeneSymbol":"LOC102724938","entrezGeneId":102724938},{"hugoGeneSymbol":"LOC102724943","entrezGeneId":102724943},{"hugoGeneSymbol":"LOC102724945","entrezGeneId":102724945},{"hugoGeneSymbol":"LOC102724946","entrezGeneId":102724946},{"hugoGeneSymbol":"LOC102724948","entrezGeneId":102724948},{"hugoGeneSymbol":"LOC102724949","entrezGeneId":102724949},{"hugoGeneSymbol":"LOC102724950","entrezGeneId":102724950},{"hugoGeneSymbol":"LOC102724951","entrezGeneId":102724951},{"hugoGeneSymbol":"LOC102724955","entrezGeneId":102724955},{"hugoGeneSymbol":"LOC102724956","entrezGeneId":102724956},{"hugoGeneSymbol":"LOC102724957","entrezGeneId":102724957},{"hugoGeneSymbol":"LOC102724958","entrezGeneId":102724958},{"hugoGeneSymbol":"LOC102724960","entrezGeneId":102724960},{"hugoGeneSymbol":"LOC102724962","entrezGeneId":102724962},{"hugoGeneSymbol":"LOC102724965","entrezGeneId":102724965},{"hugoGeneSymbol":"LOC102724968","entrezGeneId":102724968},{"hugoGeneSymbol":"LOC102724971","entrezGeneId":102724971},{"hugoGeneSymbol":"LOC102724977","entrezGeneId":102724977},{"hugoGeneSymbol":"LOC102724979","entrezGeneId":102724979},{"hugoGeneSymbol":"LOC102724983","entrezGeneId":102724983},{"hugoGeneSymbol":"LOC102724984","entrezGeneId":102724984},{"hugoGeneSymbol":"LOC102724985","entrezGeneId":102724985},{"hugoGeneSymbol":"LOC102724992","entrezGeneId":102724992},{"hugoGeneSymbol":"LOC102724993","entrezGeneId":102724993},{"hugoGeneSymbol":"LOC102724994","entrezGeneId":102724994},{"hugoGeneSymbol":"LOC102724995","entrezGeneId":102724995},{"hugoGeneSymbol":"LOC102724999","entrezGeneId":102724999},{"hugoGeneSymbol":"LOC102725000","entrezGeneId":102725000},{"hugoGeneSymbol":"LOC102725003","entrezGeneId":102725003},{"hugoGeneSymbol":"LOC102725009","entrezGeneId":102725009},{"hugoGeneSymbol":"LOC102725019","entrezGeneId":102725019},{"hugoGeneSymbol":"LOC102725021","entrezGeneId":102725021},{"hugoGeneSymbol":"LOC102725023","entrezGeneId":102725023},{"hugoGeneSymbol":"LOC102725034","entrezGeneId":102725034},{"hugoGeneSymbol":"LOC102725035","entrezGeneId":102725035},{"hugoGeneSymbol":"LOC102725044","entrezGeneId":102725044},{"hugoGeneSymbol":"LOC102725048","entrezGeneId":102725048},{"hugoGeneSymbol":"LOC102725051","entrezGeneId":102725051},{"hugoGeneSymbol":"LOC102725065","entrezGeneId":102725065},{"hugoGeneSymbol":"LOC102725072","entrezGeneId":102725072},{"hugoGeneSymbol":"LOC102725080","entrezGeneId":102725080},{"hugoGeneSymbol":"LOC102725082","entrezGeneId":102725082},{"hugoGeneSymbol":"LOC102725101","entrezGeneId":102725101},{"hugoGeneSymbol":"LOC102725112","entrezGeneId":102725112},{"hugoGeneSymbol":"LOC102725116","entrezGeneId":102725116},{"hugoGeneSymbol":"LOC102725121","entrezGeneId":102725121},{"hugoGeneSymbol":"LOC102725126","entrezGeneId":102725126},{"hugoGeneSymbol":"LOC102725138","entrezGeneId":102725138},{"hugoGeneSymbol":"LOC102725140","entrezGeneId":102725140},{"hugoGeneSymbol":"LOC102725145","entrezGeneId":102725145},{"hugoGeneSymbol":"LOC102725148","entrezGeneId":102725148},{"hugoGeneSymbol":"LOC102725159","entrezGeneId":102725159},{"hugoGeneSymbol":"LOC102725165","entrezGeneId":102725165},{"hugoGeneSymbol":"LOC102725168","entrezGeneId":102725168},{"hugoGeneSymbol":"LOC102725179","entrezGeneId":102725179},{"hugoGeneSymbol":"LOC102725180","entrezGeneId":102725180},{"hugoGeneSymbol":"LOC102725191","entrezGeneId":102725191},{"hugoGeneSymbol":"LOC102725193","entrezGeneId":102725193},{"hugoGeneSymbol":"LOC102725201","entrezGeneId":102725201},{"hugoGeneSymbol":"LOC102725220","entrezGeneId":102725220},{"hugoGeneSymbol":"LOC102725227","entrezGeneId":102725227},{"hugoGeneSymbol":"LOC102725228","entrezGeneId":102725228},{"hugoGeneSymbol":"LOC102725231","entrezGeneId":102725231},{"hugoGeneSymbol":"LOC102725238","entrezGeneId":102725238},{"hugoGeneSymbol":"LOC102725254","entrezGeneId":102725254},{"hugoGeneSymbol":"LOC102725258","entrezGeneId":102725258},{"hugoGeneSymbol":"LOC102725532","entrezGeneId":102725532},{"hugoGeneSymbol":"LOC102929163","entrezGeneId":102929163},{"hugoGeneSymbol":"LOC103021295","entrezGeneId":103021295},{"hugoGeneSymbol":"LOC103021296","entrezGeneId":103021296},{"hugoGeneSymbol":"LOC103047893","entrezGeneId":103047893},{"hugoGeneSymbol":"LOC103091866","entrezGeneId":103091866},{"hugoGeneSymbol":"LOC103156999","entrezGeneId":103156999},{"hugoGeneSymbol":"LOC103171574","entrezGeneId":103171574},{"hugoGeneSymbol":"LOC103312105","entrezGeneId":103312105},{"hugoGeneSymbol":"LOC103344931","entrezGeneId":103344931},{"hugoGeneSymbol":"LOC103352541","entrezGeneId":103352541},{"hugoGeneSymbol":"LOC103568124","entrezGeneId":103568124},{"hugoGeneSymbol":"LOC103611081","entrezGeneId":103611081},{"hugoGeneSymbol":"LOC103689914","entrezGeneId":103689914},{"hugoGeneSymbol":"LOC103689916","entrezGeneId":103689916},{"hugoGeneSymbol":"LOC103908604","entrezGeneId":103908604},{"hugoGeneSymbol":"LOC103908605","entrezGeneId":103908605},{"hugoGeneSymbol":"LOC104054148","entrezGeneId":104054148},{"hugoGeneSymbol":"LOC104613533","entrezGeneId":104613533},{"hugoGeneSymbol":"LOC104968399","entrezGeneId":104968399},{"hugoGeneSymbol":"LOC105274304","entrezGeneId":105274304},{"hugoGeneSymbol":"LOC105274310","entrezGeneId":105274310},{"hugoGeneSymbol":"LOC105369140","entrezGeneId":105369140},{"hugoGeneSymbol":"LOC105369143","entrezGeneId":105369143},{"hugoGeneSymbol":"LOC105369146","entrezGeneId":105369146},{"hugoGeneSymbol":"LOC105369147","entrezGeneId":105369147},{"hugoGeneSymbol":"LOC105369149","entrezGeneId":105369149},{"hugoGeneSymbol":"LOC105369150","entrezGeneId":105369150},{"hugoGeneSymbol":"LOC105369151","entrezGeneId":105369151},{"hugoGeneSymbol":"LOC105369155","entrezGeneId":105369155},{"hugoGeneSymbol":"LOC105369161","entrezGeneId":105369161},{"hugoGeneSymbol":"LOC105369163","entrezGeneId":105369163},{"hugoGeneSymbol":"LOC105369164","entrezGeneId":105369164},{"hugoGeneSymbol":"LOC105369165","entrezGeneId":105369165},{"hugoGeneSymbol":"LOC105369167","entrezGeneId":105369167},{"hugoGeneSymbol":"LOC105369168","entrezGeneId":105369168},{"hugoGeneSymbol":"LOC105369171","entrezGeneId":105369171},{"hugoGeneSymbol":"LOC105369176","entrezGeneId":105369176},{"hugoGeneSymbol":"LOC105369177","entrezGeneId":105369177},{"hugoGeneSymbol":"LOC105369180","entrezGeneId":105369180},{"hugoGeneSymbol":"LOC105369182","entrezGeneId":105369182},{"hugoGeneSymbol":"LOC105369183","entrezGeneId":105369183},{"hugoGeneSymbol":"LOC105369187","entrezGeneId":105369187},{"hugoGeneSymbol":"LOC105369189","entrezGeneId":105369189},{"hugoGeneSymbol":"LOC105369192","entrezGeneId":105369192},{"hugoGeneSymbol":"LOC105369194","entrezGeneId":105369194},{"hugoGeneSymbol":"LOC105369197","entrezGeneId":105369197},{"hugoGeneSymbol":"LOC105369199","entrezGeneId":105369199},{"hugoGeneSymbol":"LOC105369201","entrezGeneId":105369201},{"hugoGeneSymbol":"LOC105369202","entrezGeneId":105369202},{"hugoGeneSymbol":"LOC105369203","entrezGeneId":105369203},{"hugoGeneSymbol":"LOC105369205","entrezGeneId":105369205},{"hugoGeneSymbol":"LOC105369207","entrezGeneId":105369207},{"hugoGeneSymbol":"LOC105369209","entrezGeneId":105369209},{"hugoGeneSymbol":"LOC105369212","entrezGeneId":105369212},{"hugoGeneSymbol":"LOC105369213","entrezGeneId":105369213},{"hugoGeneSymbol":"LOC105369214","entrezGeneId":105369214},{"hugoGeneSymbol":"LOC105369218","entrezGeneId":105369218},{"hugoGeneSymbol":"LOC105369219","entrezGeneId":105369219},{"hugoGeneSymbol":"LOC105369220","entrezGeneId":105369220},{"hugoGeneSymbol":"LOC105369222","entrezGeneId":105369222},{"hugoGeneSymbol":"LOC105369225","entrezGeneId":105369225},{"hugoGeneSymbol":"LOC105369226","entrezGeneId":105369226},{"hugoGeneSymbol":"LOC105369227","entrezGeneId":105369227},{"hugoGeneSymbol":"LOC105369228","entrezGeneId":105369228},{"hugoGeneSymbol":"LOC105369230","entrezGeneId":105369230},{"hugoGeneSymbol":"LOC105369236","entrezGeneId":105369236},{"hugoGeneSymbol":"LOC105369239","entrezGeneId":105369239},{"hugoGeneSymbol":"LOC105369243","entrezGeneId":105369243},{"hugoGeneSymbol":"LOC105369244","entrezGeneId":105369244},{"hugoGeneSymbol":"LOC105369246","entrezGeneId":105369246},{"hugoGeneSymbol":"LOC105369247","entrezGeneId":105369247},{"hugoGeneSymbol":"LOC105369249","entrezGeneId":105369249},{"hugoGeneSymbol":"LOC105369250","entrezGeneId":105369250},{"hugoGeneSymbol":"LOC105369266","entrezGeneId":105369266},{"hugoGeneSymbol":"LOC105369274","entrezGeneId":105369274},{"hugoGeneSymbol":"LOC105369277","entrezGeneId":105369277},{"hugoGeneSymbol":"LOC105369289","entrezGeneId":105369289},{"hugoGeneSymbol":"LOC105369292","entrezGeneId":105369292},{"hugoGeneSymbol":"LOC105369293","entrezGeneId":105369293},{"hugoGeneSymbol":"LOC105369294","entrezGeneId":105369294},{"hugoGeneSymbol":"LOC105369295","entrezGeneId":105369295},{"hugoGeneSymbol":"LOC105369297","entrezGeneId":105369297},{"hugoGeneSymbol":"LOC105369298","entrezGeneId":105369298},{"hugoGeneSymbol":"LOC105369299","entrezGeneId":105369299},{"hugoGeneSymbol":"LOC105369301","entrezGeneId":105369301},{"hugoGeneSymbol":"LOC105369302","entrezGeneId":105369302},{"hugoGeneSymbol":"LOC105369304","entrezGeneId":105369304},{"hugoGeneSymbol":"LOC105369305","entrezGeneId":105369305},{"hugoGeneSymbol":"LOC105369306","entrezGeneId":105369306},{"hugoGeneSymbol":"LOC105369308","entrezGeneId":105369308},{"hugoGeneSymbol":"LOC105369309","entrezGeneId":105369309},{"hugoGeneSymbol":"LOC105369310","entrezGeneId":105369310},{"hugoGeneSymbol":"LOC105369312","entrezGeneId":105369312},{"hugoGeneSymbol":"LOC105369313","entrezGeneId":105369313},{"hugoGeneSymbol":"LOC105369315","entrezGeneId":105369315},{"hugoGeneSymbol":"LOC105369317","entrezGeneId":105369317},{"hugoGeneSymbol":"LOC105369318","entrezGeneId":105369318},{"hugoGeneSymbol":"LOC105369319","entrezGeneId":105369319},{"hugoGeneSymbol":"LOC105369320","entrezGeneId":105369320},{"hugoGeneSymbol":"LOC105369321","entrezGeneId":105369321},{"hugoGeneSymbol":"LOC105369322","entrezGeneId":105369322},{"hugoGeneSymbol":"LOC105369323","entrezGeneId":105369323},{"hugoGeneSymbol":"LOC105369325","entrezGeneId":105369325},{"hugoGeneSymbol":"LOC105369326","entrezGeneId":105369326},{"hugoGeneSymbol":"LOC105369329","entrezGeneId":105369329},{"hugoGeneSymbol":"LOC105369331","entrezGeneId":105369331},{"hugoGeneSymbol":"LOC105369332","entrezGeneId":105369332},{"hugoGeneSymbol":"LOC105369333","entrezGeneId":105369333},{"hugoGeneSymbol":"LOC105369334","entrezGeneId":105369334},{"hugoGeneSymbol":"LOC105369335","entrezGeneId":105369335},{"hugoGeneSymbol":"LOC105369339","entrezGeneId":105369339},{"hugoGeneSymbol":"LOC105369340","entrezGeneId":105369340},{"hugoGeneSymbol":"LOC105369341","entrezGeneId":105369341},{"hugoGeneSymbol":"LOC105369342","entrezGeneId":105369342},{"hugoGeneSymbol":"LOC105369344","entrezGeneId":105369344},{"hugoGeneSymbol":"LOC105369346","entrezGeneId":105369346},{"hugoGeneSymbol":"LOC105369347","entrezGeneId":105369347},{"hugoGeneSymbol":"LOC105369349","entrezGeneId":105369349},{"hugoGeneSymbol":"LOC105369350","entrezGeneId":105369350},{"hugoGeneSymbol":"LOC105369351","entrezGeneId":105369351},{"hugoGeneSymbol":"LOC105369352","entrezGeneId":105369352},{"hugoGeneSymbol":"LOC105369354","entrezGeneId":105369354},{"hugoGeneSymbol":"LOC105369355","entrezGeneId":105369355},{"hugoGeneSymbol":"LOC105369358","entrezGeneId":105369358},{"hugoGeneSymbol":"LOC105369359","entrezGeneId":105369359},{"hugoGeneSymbol":"LOC105369360","entrezGeneId":105369360},{"hugoGeneSymbol":"LOC105369361","entrezGeneId":105369361},{"hugoGeneSymbol":"LOC105369362","entrezGeneId":105369362},{"hugoGeneSymbol":"LOC105369363","entrezGeneId":105369363},{"hugoGeneSymbol":"LOC105369364","entrezGeneId":105369364},{"hugoGeneSymbol":"LOC105369366","entrezGeneId":105369366},{"hugoGeneSymbol":"LOC105369367","entrezGeneId":105369367},{"hugoGeneSymbol":"LOC105369368","entrezGeneId":105369368},{"hugoGeneSymbol":"LOC105369370","entrezGeneId":105369370},{"hugoGeneSymbol":"LOC105369371","entrezGeneId":105369371},{"hugoGeneSymbol":"LOC105369372","entrezGeneId":105369372},{"hugoGeneSymbol":"LOC105369373","entrezGeneId":105369373},{"hugoGeneSymbol":"LOC105369376","entrezGeneId":105369376},{"hugoGeneSymbol":"LOC105369377","entrezGeneId":105369377},{"hugoGeneSymbol":"LOC105369378","entrezGeneId":105369378},{"hugoGeneSymbol":"LOC105369379","entrezGeneId":105369379},{"hugoGeneSymbol":"LOC105369380","entrezGeneId":105369380},{"hugoGeneSymbol":"LOC105369381","entrezGeneId":105369381},{"hugoGeneSymbol":"LOC105369382","entrezGeneId":105369382},{"hugoGeneSymbol":"LOC105369383","entrezGeneId":105369383},{"hugoGeneSymbol":"LOC105369386","entrezGeneId":105369386},{"hugoGeneSymbol":"LOC105369388","entrezGeneId":105369388},{"hugoGeneSymbol":"LOC105369389","entrezGeneId":105369389},{"hugoGeneSymbol":"LOC105369391","entrezGeneId":105369391},{"hugoGeneSymbol":"LOC105369392","entrezGeneId":105369392},{"hugoGeneSymbol":"LOC105369393","entrezGeneId":105369393},{"hugoGeneSymbol":"LOC105369395","entrezGeneId":105369395},{"hugoGeneSymbol":"LOC105369397","entrezGeneId":105369397},{"hugoGeneSymbol":"LOC105369399","entrezGeneId":105369399},{"hugoGeneSymbol":"LOC105369400","entrezGeneId":105369400},{"hugoGeneSymbol":"LOC105369401","entrezGeneId":105369401},{"hugoGeneSymbol":"LOC105369402","entrezGeneId":105369402},{"hugoGeneSymbol":"LOC105369403","entrezGeneId":105369403},{"hugoGeneSymbol":"LOC105369405","entrezGeneId":105369405},{"hugoGeneSymbol":"LOC105369406","entrezGeneId":105369406},{"hugoGeneSymbol":"LOC105369408","entrezGeneId":105369408},{"hugoGeneSymbol":"LOC105369409","entrezGeneId":105369409},{"hugoGeneSymbol":"LOC105369410","entrezGeneId":105369410},{"hugoGeneSymbol":"LOC105369413","entrezGeneId":105369413},{"hugoGeneSymbol":"LOC105369416","entrezGeneId":105369416},{"hugoGeneSymbol":"LOC105369420","entrezGeneId":105369420},{"hugoGeneSymbol":"LOC105369421","entrezGeneId":105369421},{"hugoGeneSymbol":"LOC105369422","entrezGeneId":105369422},{"hugoGeneSymbol":"LOC105369423","entrezGeneId":105369423},{"hugoGeneSymbol":"LOC105369425","entrezGeneId":105369425},{"hugoGeneSymbol":"LOC105369427","entrezGeneId":105369427},{"hugoGeneSymbol":"LOC105369428","entrezGeneId":105369428},{"hugoGeneSymbol":"LOC105369429","entrezGeneId":105369429},{"hugoGeneSymbol":"LOC105369431","entrezGeneId":105369431},{"hugoGeneSymbol":"LOC105369435","entrezGeneId":105369435},{"hugoGeneSymbol":"LOC105369436","entrezGeneId":105369436},{"hugoGeneSymbol":"LOC105369438","entrezGeneId":105369438},{"hugoGeneSymbol":"LOC105369439","entrezGeneId":105369439},{"hugoGeneSymbol":"LOC105369440","entrezGeneId":105369440},{"hugoGeneSymbol":"LOC105369441","entrezGeneId":105369441},{"hugoGeneSymbol":"LOC105369443","entrezGeneId":105369443},{"hugoGeneSymbol":"LOC105369448","entrezGeneId":105369448},{"hugoGeneSymbol":"LOC105369450","entrezGeneId":105369450},{"hugoGeneSymbol":"LOC105369451","entrezGeneId":105369451},{"hugoGeneSymbol":"LOC105369452","entrezGeneId":105369452},{"hugoGeneSymbol":"LOC105369453","entrezGeneId":105369453},{"hugoGeneSymbol":"LOC105369454","entrezGeneId":105369454},{"hugoGeneSymbol":"LOC105369455","entrezGeneId":105369455},{"hugoGeneSymbol":"LOC105369456","entrezGeneId":105369456},{"hugoGeneSymbol":"LOC105369457","entrezGeneId":105369457},{"hugoGeneSymbol":"LOC105369458","entrezGeneId":105369458},{"hugoGeneSymbol":"LOC105369460","entrezGeneId":105369460},{"hugoGeneSymbol":"LOC105369463","entrezGeneId":105369463},{"hugoGeneSymbol":"LOC105369464","entrezGeneId":105369464},{"hugoGeneSymbol":"LOC105369466","entrezGeneId":105369466},{"hugoGeneSymbol":"LOC105369468","entrezGeneId":105369468},{"hugoGeneSymbol":"LOC105369469","entrezGeneId":105369469},{"hugoGeneSymbol":"LOC105369473","entrezGeneId":105369473},{"hugoGeneSymbol":"LOC105369474","entrezGeneId":105369474},{"hugoGeneSymbol":"LOC105369475","entrezGeneId":105369475},{"hugoGeneSymbol":"LOC105369477","entrezGeneId":105369477},{"hugoGeneSymbol":"LOC105369482","entrezGeneId":105369482},{"hugoGeneSymbol":"LOC105369483","entrezGeneId":105369483},{"hugoGeneSymbol":"LOC105369484","entrezGeneId":105369484},{"hugoGeneSymbol":"LOC105369486","entrezGeneId":105369486},{"hugoGeneSymbol":"LOC105369487","entrezGeneId":105369487},{"hugoGeneSymbol":"LOC105369488","entrezGeneId":105369488},{"hugoGeneSymbol":"LOC105369489","entrezGeneId":105369489},{"hugoGeneSymbol":"LOC105369491","entrezGeneId":105369491},{"hugoGeneSymbol":"LOC105369496","entrezGeneId":105369496},{"hugoGeneSymbol":"LOC105369498","entrezGeneId":105369498},{"hugoGeneSymbol":"LOC105369499","entrezGeneId":105369499},{"hugoGeneSymbol":"LOC105369501","entrezGeneId":105369501},{"hugoGeneSymbol":"LOC105369504","entrezGeneId":105369504},{"hugoGeneSymbol":"LOC105369505","entrezGeneId":105369505},{"hugoGeneSymbol":"LOC105369506","entrezGeneId":105369506},{"hugoGeneSymbol":"LOC105369507","entrezGeneId":105369507},{"hugoGeneSymbol":"LOC105369509","entrezGeneId":105369509},{"hugoGeneSymbol":"LOC105369511","entrezGeneId":105369511},{"hugoGeneSymbol":"LOC105369512","entrezGeneId":105369512},{"hugoGeneSymbol":"LOC105369513","entrezGeneId":105369513},{"hugoGeneSymbol":"LOC105369515","entrezGeneId":105369515},{"hugoGeneSymbol":"LOC105369517","entrezGeneId":105369517},{"hugoGeneSymbol":"LOC105369519","entrezGeneId":105369519},{"hugoGeneSymbol":"LOC105369520","entrezGeneId":105369520},{"hugoGeneSymbol":"LOC105369525","entrezGeneId":105369525},{"hugoGeneSymbol":"LOC105369526","entrezGeneId":105369526},{"hugoGeneSymbol":"LOC105369527","entrezGeneId":105369527},{"hugoGeneSymbol":"LOC105369528","entrezGeneId":105369528},{"hugoGeneSymbol":"LOC105369529","entrezGeneId":105369529},{"hugoGeneSymbol":"LOC105369530","entrezGeneId":105369530},{"hugoGeneSymbol":"LOC105369531","entrezGeneId":105369531},{"hugoGeneSymbol":"LOC105369532","entrezGeneId":105369532},{"hugoGeneSymbol":"LOC105369533","entrezGeneId":105369533},{"hugoGeneSymbol":"LOC105369534","entrezGeneId":105369534},{"hugoGeneSymbol":"LOC105369535","entrezGeneId":105369535},{"hugoGeneSymbol":"LOC105369536","entrezGeneId":105369536},{"hugoGeneSymbol":"LOC105369539","entrezGeneId":105369539},{"hugoGeneSymbol":"LOC105369540","entrezGeneId":105369540},{"hugoGeneSymbol":"LOC105369541","entrezGeneId":105369541},{"hugoGeneSymbol":"LOC105369543","entrezGeneId":105369543},{"hugoGeneSymbol":"LOC105369544","entrezGeneId":105369544},{"hugoGeneSymbol":"LOC105369545","entrezGeneId":105369545},{"hugoGeneSymbol":"LOC105369547","entrezGeneId":105369547},{"hugoGeneSymbol":"LOC105369549","entrezGeneId":105369549},{"hugoGeneSymbol":"LOC105369551","entrezGeneId":105369551},{"hugoGeneSymbol":"LOC105369552","entrezGeneId":105369552},{"hugoGeneSymbol":"LOC105369554","entrezGeneId":105369554},{"hugoGeneSymbol":"LOC105369558","entrezGeneId":105369558},{"hugoGeneSymbol":"LOC105369559","entrezGeneId":105369559},{"hugoGeneSymbol":"LOC105369561","entrezGeneId":105369561},{"hugoGeneSymbol":"LOC105369562","entrezGeneId":105369562},{"hugoGeneSymbol":"LOC105369563","entrezGeneId":105369563},{"hugoGeneSymbol":"LOC105369565","entrezGeneId":105369565},{"hugoGeneSymbol":"LOC105369568","entrezGeneId":105369568},{"hugoGeneSymbol":"LOC105369571","entrezGeneId":105369571},{"hugoGeneSymbol":"LOC105369572","entrezGeneId":105369572},{"hugoGeneSymbol":"LOC105369574","entrezGeneId":105369574},{"hugoGeneSymbol":"LOC105369575","entrezGeneId":105369575},{"hugoGeneSymbol":"LOC105369576","entrezGeneId":105369576},{"hugoGeneSymbol":"LOC105369577","entrezGeneId":105369577},{"hugoGeneSymbol":"LOC105369578","entrezGeneId":105369578},{"hugoGeneSymbol":"LOC105369579","entrezGeneId":105369579},{"hugoGeneSymbol":"LOC105369580","entrezGeneId":105369580},{"hugoGeneSymbol":"LOC105369582","entrezGeneId":105369582},{"hugoGeneSymbol":"LOC105369583","entrezGeneId":105369583},{"hugoGeneSymbol":"LOC105369584","entrezGeneId":105369584},{"hugoGeneSymbol":"LOC105369586","entrezGeneId":105369586},{"hugoGeneSymbol":"LOC105369587","entrezGeneId":105369587},{"hugoGeneSymbol":"LOC105369588","entrezGeneId":105369588},{"hugoGeneSymbol":"LOC105369589","entrezGeneId":105369589},{"hugoGeneSymbol":"LOC105369591","entrezGeneId":105369591},{"hugoGeneSymbol":"LOC105369592","entrezGeneId":105369592},{"hugoGeneSymbol":"LOC105369593","entrezGeneId":105369593},{"hugoGeneSymbol":"LOC105369594","entrezGeneId":105369594},{"hugoGeneSymbol":"LOC105369595","entrezGeneId":105369595},{"hugoGeneSymbol":"LOC105369601","entrezGeneId":105369601},{"hugoGeneSymbol":"LOC105369602","entrezGeneId":105369602},{"hugoGeneSymbol":"LOC105369606","entrezGeneId":105369606},{"hugoGeneSymbol":"LOC105369607","entrezGeneId":105369607},{"hugoGeneSymbol":"LOC105369608","entrezGeneId":105369608},{"hugoGeneSymbol":"LOC105369609","entrezGeneId":105369609},{"hugoGeneSymbol":"LOC105369611","entrezGeneId":105369611},{"hugoGeneSymbol":"LOC105369612","entrezGeneId":105369612},{"hugoGeneSymbol":"LOC105369614","entrezGeneId":105369614},{"hugoGeneSymbol":"LOC105369616","entrezGeneId":105369616},{"hugoGeneSymbol":"LOC105369617","entrezGeneId":105369617},{"hugoGeneSymbol":"LOC105369618","entrezGeneId":105369618},{"hugoGeneSymbol":"LOC105369620","entrezGeneId":105369620},{"hugoGeneSymbol":"LOC105369621","entrezGeneId":105369621},{"hugoGeneSymbol":"LOC105369622","entrezGeneId":105369622},{"hugoGeneSymbol":"LOC105369623","entrezGeneId":105369623},{"hugoGeneSymbol":"LOC105369624","entrezGeneId":105369624},{"hugoGeneSymbol":"LOC105369625","entrezGeneId":105369625},{"hugoGeneSymbol":"LOC105369626","entrezGeneId":105369626},{"hugoGeneSymbol":"LOC105369628","entrezGeneId":105369628},{"hugoGeneSymbol":"LOC105369631","entrezGeneId":105369631},{"hugoGeneSymbol":"LOC105369632","entrezGeneId":105369632},{"hugoGeneSymbol":"LOC105369634","entrezGeneId":105369634},{"hugoGeneSymbol":"LOC105369639","entrezGeneId":105369639},{"hugoGeneSymbol":"LOC105369645","entrezGeneId":105369645},{"hugoGeneSymbol":"LOC105369647","entrezGeneId":105369647},{"hugoGeneSymbol":"LOC105369649","entrezGeneId":105369649},{"hugoGeneSymbol":"LOC105369655","entrezGeneId":105369655},{"hugoGeneSymbol":"LOC105369656","entrezGeneId":105369656},{"hugoGeneSymbol":"LOC105369657","entrezGeneId":105369657},{"hugoGeneSymbol":"LOC105369658","entrezGeneId":105369658},{"hugoGeneSymbol":"LOC105369663","entrezGeneId":105369663},{"hugoGeneSymbol":"LOC105369665","entrezGeneId":105369665},{"hugoGeneSymbol":"LOC105369666","entrezGeneId":105369666},{"hugoGeneSymbol":"LOC105369667","entrezGeneId":105369667},{"hugoGeneSymbol":"LOC105369668","entrezGeneId":105369668},{"hugoGeneSymbol":"LOC105369669","entrezGeneId":105369669},{"hugoGeneSymbol":"LOC105369670","entrezGeneId":105369670},{"hugoGeneSymbol":"LOC105369672","entrezGeneId":105369672},{"hugoGeneSymbol":"LOC105369673","entrezGeneId":105369673},{"hugoGeneSymbol":"LOC105369677","entrezGeneId":105369677},{"hugoGeneSymbol":"LOC105369682","entrezGeneId":105369682},{"hugoGeneSymbol":"LOC105369685","entrezGeneId":105369685},{"hugoGeneSymbol":"LOC105369686","entrezGeneId":105369686},{"hugoGeneSymbol":"LOC105369687","entrezGeneId":105369687},{"hugoGeneSymbol":"LOC105369688","entrezGeneId":105369688},{"hugoGeneSymbol":"LOC105369689","entrezGeneId":105369689},{"hugoGeneSymbol":"LOC105369690","entrezGeneId":105369690},{"hugoGeneSymbol":"LOC105369691","entrezGeneId":105369691},{"hugoGeneSymbol":"LOC105369692","entrezGeneId":105369692},{"hugoGeneSymbol":"LOC105369696","entrezGeneId":105369696},{"hugoGeneSymbol":"LOC105369697","entrezGeneId":105369697},{"hugoGeneSymbol":"LOC105369698","entrezGeneId":105369698},{"hugoGeneSymbol":"LOC105369699","entrezGeneId":105369699},{"hugoGeneSymbol":"LOC105369701","entrezGeneId":105369701},{"hugoGeneSymbol":"LOC105369704","entrezGeneId":105369704},{"hugoGeneSymbol":"LOC105369705","entrezGeneId":105369705},{"hugoGeneSymbol":"LOC105369706","entrezGeneId":105369706},{"hugoGeneSymbol":"LOC105369709","entrezGeneId":105369709},{"hugoGeneSymbol":"LOC105369710","entrezGeneId":105369710},{"hugoGeneSymbol":"LOC105369711","entrezGeneId":105369711},{"hugoGeneSymbol":"LOC105369714","entrezGeneId":105369714},{"hugoGeneSymbol":"LOC105369715","entrezGeneId":105369715},{"hugoGeneSymbol":"LOC105369716","entrezGeneId":105369716},{"hugoGeneSymbol":"LOC105369718","entrezGeneId":105369718},{"hugoGeneSymbol":"LOC105369719","entrezGeneId":105369719},{"hugoGeneSymbol":"LOC105369720","entrezGeneId":105369720},{"hugoGeneSymbol":"LOC105369722","entrezGeneId":105369722},{"hugoGeneSymbol":"LOC105369724","entrezGeneId":105369724},{"hugoGeneSymbol":"LOC105369725","entrezGeneId":105369725},{"hugoGeneSymbol":"LOC105369726","entrezGeneId":105369726},{"hugoGeneSymbol":"LOC105369728","entrezGeneId":105369728},{"hugoGeneSymbol":"LOC105369735","entrezGeneId":105369735},{"hugoGeneSymbol":"LOC105369736","entrezGeneId":105369736},{"hugoGeneSymbol":"LOC105369742","entrezGeneId":105369742},{"hugoGeneSymbol":"LOC105369743","entrezGeneId":105369743},{"hugoGeneSymbol":"LOC105369744","entrezGeneId":105369744},{"hugoGeneSymbol":"LOC105369745","entrezGeneId":105369745},{"hugoGeneSymbol":"LOC105369746","entrezGeneId":105369746},{"hugoGeneSymbol":"LOC105369747","entrezGeneId":105369747},{"hugoGeneSymbol":"LOC105369748","entrezGeneId":105369748},{"hugoGeneSymbol":"LOC105369750","entrezGeneId":105369750},{"hugoGeneSymbol":"LOC105369752","entrezGeneId":105369752},{"hugoGeneSymbol":"LOC105369753","entrezGeneId":105369753},{"hugoGeneSymbol":"LOC105369755","entrezGeneId":105369755},{"hugoGeneSymbol":"LOC105369756","entrezGeneId":105369756},{"hugoGeneSymbol":"LOC105369757","entrezGeneId":105369757},{"hugoGeneSymbol":"LOC105369759","entrezGeneId":105369759},{"hugoGeneSymbol":"LOC105369760","entrezGeneId":105369760},{"hugoGeneSymbol":"LOC105369761","entrezGeneId":105369761},{"hugoGeneSymbol":"LOC105369763","entrezGeneId":105369763},{"hugoGeneSymbol":"LOC105369764","entrezGeneId":105369764},{"hugoGeneSymbol":"LOC105369767","entrezGeneId":105369767},{"hugoGeneSymbol":"LOC105369768","entrezGeneId":105369768},{"hugoGeneSymbol":"LOC105369771","entrezGeneId":105369771},{"hugoGeneSymbol":"LOC105369772","entrezGeneId":105369772},{"hugoGeneSymbol":"LOC105369774","entrezGeneId":105369774},{"hugoGeneSymbol":"LOC105369775","entrezGeneId":105369775},{"hugoGeneSymbol":"LOC105369777","entrezGeneId":105369777},{"hugoGeneSymbol":"LOC105369778","entrezGeneId":105369778},{"hugoGeneSymbol":"LOC105369779","entrezGeneId":105369779},{"hugoGeneSymbol":"LOC105369780","entrezGeneId":105369780},{"hugoGeneSymbol":"LOC105369781","entrezGeneId":105369781},{"hugoGeneSymbol":"LOC105369782","entrezGeneId":105369782},{"hugoGeneSymbol":"LOC105369783","entrezGeneId":105369783},{"hugoGeneSymbol":"LOC105369784","entrezGeneId":105369784},{"hugoGeneSymbol":"LOC105369786","entrezGeneId":105369786},{"hugoGeneSymbol":"LOC105369787","entrezGeneId":105369787},{"hugoGeneSymbol":"LOC105369788","entrezGeneId":105369788},{"hugoGeneSymbol":"LOC105369789","entrezGeneId":105369789},{"hugoGeneSymbol":"LOC105369791","entrezGeneId":105369791},{"hugoGeneSymbol":"LOC105369793","entrezGeneId":105369793},{"hugoGeneSymbol":"LOC105369795","entrezGeneId":105369795},{"hugoGeneSymbol":"LOC105369797","entrezGeneId":105369797},{"hugoGeneSymbol":"LOC105369798","entrezGeneId":105369798},{"hugoGeneSymbol":"LOC105369801","entrezGeneId":105369801},{"hugoGeneSymbol":"LOC105369803","entrezGeneId":105369803},{"hugoGeneSymbol":"LOC105369804","entrezGeneId":105369804},{"hugoGeneSymbol":"LOC105369806","entrezGeneId":105369806},{"hugoGeneSymbol":"LOC105369808","entrezGeneId":105369808},{"hugoGeneSymbol":"LOC105369809","entrezGeneId":105369809},{"hugoGeneSymbol":"LOC105369811","entrezGeneId":105369811},{"hugoGeneSymbol":"LOC105369812","entrezGeneId":105369812},{"hugoGeneSymbol":"LOC105369813","entrezGeneId":105369813},{"hugoGeneSymbol":"LOC105369816","entrezGeneId":105369816},{"hugoGeneSymbol":"LOC105369818","entrezGeneId":105369818},{"hugoGeneSymbol":"LOC105369819","entrezGeneId":105369819},{"hugoGeneSymbol":"LOC105369820","entrezGeneId":105369820},{"hugoGeneSymbol":"LOC105369823","entrezGeneId":105369823},{"hugoGeneSymbol":"LOC105369826","entrezGeneId":105369826},{"hugoGeneSymbol":"LOC105369827","entrezGeneId":105369827},{"hugoGeneSymbol":"LOC105369828","entrezGeneId":105369828},{"hugoGeneSymbol":"LOC105369831","entrezGeneId":105369831},{"hugoGeneSymbol":"LOC105369832","entrezGeneId":105369832},{"hugoGeneSymbol":"LOC105369833","entrezGeneId":105369833},{"hugoGeneSymbol":"LOC105369838","entrezGeneId":105369838},{"hugoGeneSymbol":"LOC105369839","entrezGeneId":105369839},{"hugoGeneSymbol":"LOC105369842","entrezGeneId":105369842},{"hugoGeneSymbol":"LOC105369843","entrezGeneId":105369843},{"hugoGeneSymbol":"LOC105369844","entrezGeneId":105369844},{"hugoGeneSymbol":"LOC105369846","entrezGeneId":105369846},{"hugoGeneSymbol":"LOC105369847","entrezGeneId":105369847},{"hugoGeneSymbol":"LOC105369850","entrezGeneId":105369850},{"hugoGeneSymbol":"LOC105369851","entrezGeneId":105369851},{"hugoGeneSymbol":"LOC105369853","entrezGeneId":105369853},{"hugoGeneSymbol":"LOC105369855","entrezGeneId":105369855},{"hugoGeneSymbol":"LOC105369856","entrezGeneId":105369856},{"hugoGeneSymbol":"LOC105369859","entrezGeneId":105369859},{"hugoGeneSymbol":"LOC105369863","entrezGeneId":105369863},{"hugoGeneSymbol":"LOC105369864","entrezGeneId":105369864},{"hugoGeneSymbol":"LOC105369867","entrezGeneId":105369867},{"hugoGeneSymbol":"LOC105369869","entrezGeneId":105369869},{"hugoGeneSymbol":"LOC105369872","entrezGeneId":105369872},{"hugoGeneSymbol":"LOC105369873","entrezGeneId":105369873},{"hugoGeneSymbol":"LOC105369874","entrezGeneId":105369874},{"hugoGeneSymbol":"LOC105369875","entrezGeneId":105369875},{"hugoGeneSymbol":"LOC105369876","entrezGeneId":105369876},{"hugoGeneSymbol":"LOC105369877","entrezGeneId":105369877},{"hugoGeneSymbol":"LOC105369878","entrezGeneId":105369878},{"hugoGeneSymbol":"LOC105369879","entrezGeneId":105369879},{"hugoGeneSymbol":"LOC105369880","entrezGeneId":105369880},{"hugoGeneSymbol":"LOC105369881","entrezGeneId":105369881},{"hugoGeneSymbol":"LOC105369885","entrezGeneId":105369885},{"hugoGeneSymbol":"LOC105369886","entrezGeneId":105369886},{"hugoGeneSymbol":"LOC105369887","entrezGeneId":105369887},{"hugoGeneSymbol":"LOC105369889","entrezGeneId":105369889},{"hugoGeneSymbol":"LOC105369890","entrezGeneId":105369890},{"hugoGeneSymbol":"LOC105369892","entrezGeneId":105369892},{"hugoGeneSymbol":"LOC105369895","entrezGeneId":105369895},{"hugoGeneSymbol":"LOC105369896","entrezGeneId":105369896},{"hugoGeneSymbol":"LOC105369897","entrezGeneId":105369897},{"hugoGeneSymbol":"LOC105369898","entrezGeneId":105369898},{"hugoGeneSymbol":"LOC105369901","entrezGeneId":105369901},{"hugoGeneSymbol":"LOC105369902","entrezGeneId":105369902},{"hugoGeneSymbol":"LOC105369903","entrezGeneId":105369903},{"hugoGeneSymbol":"LOC105369904","entrezGeneId":105369904},{"hugoGeneSymbol":"LOC105369905","entrezGeneId":105369905},{"hugoGeneSymbol":"LOC105369907","entrezGeneId":105369907},{"hugoGeneSymbol":"LOC105369908","entrezGeneId":105369908},{"hugoGeneSymbol":"LOC105369909","entrezGeneId":105369909},{"hugoGeneSymbol":"LOC105369911","entrezGeneId":105369911},{"hugoGeneSymbol":"LOC105369912","entrezGeneId":105369912},{"hugoGeneSymbol":"LOC105369913","entrezGeneId":105369913},{"hugoGeneSymbol":"LOC105369914","entrezGeneId":105369914},{"hugoGeneSymbol":"LOC105369915","entrezGeneId":105369915},{"hugoGeneSymbol":"LOC105369917","entrezGeneId":105369917},{"hugoGeneSymbol":"LOC105369919","entrezGeneId":105369919},{"hugoGeneSymbol":"LOC105369921","entrezGeneId":105369921},{"hugoGeneSymbol":"LOC105369923","entrezGeneId":105369923},{"hugoGeneSymbol":"LOC105369925","entrezGeneId":105369925},{"hugoGeneSymbol":"LOC105369927","entrezGeneId":105369927},{"hugoGeneSymbol":"LOC105369928","entrezGeneId":105369928},{"hugoGeneSymbol":"LOC105369930","entrezGeneId":105369930},{"hugoGeneSymbol":"LOC105369932","entrezGeneId":105369932},{"hugoGeneSymbol":"LOC105369933","entrezGeneId":105369933},{"hugoGeneSymbol":"LOC105369935","entrezGeneId":105369935},{"hugoGeneSymbol":"LOC105369937","entrezGeneId":105369937},{"hugoGeneSymbol":"LOC105369938","entrezGeneId":105369938},{"hugoGeneSymbol":"LOC105369944","entrezGeneId":105369944},{"hugoGeneSymbol":"LOC105369945","entrezGeneId":105369945},{"hugoGeneSymbol":"LOC105369946","entrezGeneId":105369946},{"hugoGeneSymbol":"LOC105369947","entrezGeneId":105369947},{"hugoGeneSymbol":"LOC105369949","entrezGeneId":105369949},{"hugoGeneSymbol":"LOC105369950","entrezGeneId":105369950},{"hugoGeneSymbol":"LOC105369952","entrezGeneId":105369952},{"hugoGeneSymbol":"LOC105369953","entrezGeneId":105369953},{"hugoGeneSymbol":"LOC105369955","entrezGeneId":105369955},{"hugoGeneSymbol":"LOC105369956","entrezGeneId":105369956},{"hugoGeneSymbol":"LOC105369957","entrezGeneId":105369957},{"hugoGeneSymbol":"LOC105369958","entrezGeneId":105369958},{"hugoGeneSymbol":"LOC105369959","entrezGeneId":105369959},{"hugoGeneSymbol":"LOC105369960","entrezGeneId":105369960},{"hugoGeneSymbol":"LOC105369961","entrezGeneId":105369961},{"hugoGeneSymbol":"LOC105369963","entrezGeneId":105369963},{"hugoGeneSymbol":"LOC105369964","entrezGeneId":105369964},{"hugoGeneSymbol":"LOC105369965","entrezGeneId":105369965},{"hugoGeneSymbol":"LOC105369968","entrezGeneId":105369968},{"hugoGeneSymbol":"LOC105369969","entrezGeneId":105369969},{"hugoGeneSymbol":"LOC105369971","entrezGeneId":105369971},{"hugoGeneSymbol":"LOC105369974","entrezGeneId":105369974},{"hugoGeneSymbol":"LOC105369975","entrezGeneId":105369975},{"hugoGeneSymbol":"LOC105369976","entrezGeneId":105369976},{"hugoGeneSymbol":"LOC105369980","entrezGeneId":105369980},{"hugoGeneSymbol":"LOC105369981","entrezGeneId":105369981},{"hugoGeneSymbol":"LOC105369983","entrezGeneId":105369983},{"hugoGeneSymbol":"LOC105369989","entrezGeneId":105369989},{"hugoGeneSymbol":"LOC105369990","entrezGeneId":105369990},{"hugoGeneSymbol":"LOC105369991","entrezGeneId":105369991},{"hugoGeneSymbol":"LOC105369993","entrezGeneId":105369993},{"hugoGeneSymbol":"LOC105369994","entrezGeneId":105369994},{"hugoGeneSymbol":"LOC105369995","entrezGeneId":105369995},{"hugoGeneSymbol":"LOC105369998","entrezGeneId":105369998},{"hugoGeneSymbol":"LOC105369999","entrezGeneId":105369999},{"hugoGeneSymbol":"LOC105370000","entrezGeneId":105370000},{"hugoGeneSymbol":"LOC105370002","entrezGeneId":105370002},{"hugoGeneSymbol":"LOC105370003","entrezGeneId":105370003},{"hugoGeneSymbol":"LOC105370005","entrezGeneId":105370005},{"hugoGeneSymbol":"LOC105370007","entrezGeneId":105370007},{"hugoGeneSymbol":"LOC105370008","entrezGeneId":105370008},{"hugoGeneSymbol":"LOC105370010","entrezGeneId":105370010},{"hugoGeneSymbol":"LOC105370011","entrezGeneId":105370011},{"hugoGeneSymbol":"LOC105370012","entrezGeneId":105370012},{"hugoGeneSymbol":"LOC105370017","entrezGeneId":105370017},{"hugoGeneSymbol":"LOC105370018","entrezGeneId":105370018},{"hugoGeneSymbol":"LOC105370019","entrezGeneId":105370019},{"hugoGeneSymbol":"LOC105370020","entrezGeneId":105370020},{"hugoGeneSymbol":"LOC105370021","entrezGeneId":105370021},{"hugoGeneSymbol":"LOC105370022","entrezGeneId":105370022},{"hugoGeneSymbol":"LOC105370024","entrezGeneId":105370024},{"hugoGeneSymbol":"LOC105370025","entrezGeneId":105370025},{"hugoGeneSymbol":"LOC105370026","entrezGeneId":105370026},{"hugoGeneSymbol":"LOC105370027","entrezGeneId":105370027},{"hugoGeneSymbol":"LOC105370029","entrezGeneId":105370029},{"hugoGeneSymbol":"LOC105370030","entrezGeneId":105370030},{"hugoGeneSymbol":"LOC105370031","entrezGeneId":105370031},{"hugoGeneSymbol":"LOC105370032","entrezGeneId":105370032},{"hugoGeneSymbol":"LOC105370033","entrezGeneId":105370033},{"hugoGeneSymbol":"LOC105370034","entrezGeneId":105370034},{"hugoGeneSymbol":"LOC105370035","entrezGeneId":105370035},{"hugoGeneSymbol":"LOC105370041","entrezGeneId":105370041},{"hugoGeneSymbol":"LOC105370042","entrezGeneId":105370042},{"hugoGeneSymbol":"LOC105370044","entrezGeneId":105370044},{"hugoGeneSymbol":"LOC105370045","entrezGeneId":105370045},{"hugoGeneSymbol":"LOC105370047","entrezGeneId":105370047},{"hugoGeneSymbol":"LOC105370050","entrezGeneId":105370050},{"hugoGeneSymbol":"LOC105370051","entrezGeneId":105370051},{"hugoGeneSymbol":"LOC105370052","entrezGeneId":105370052},{"hugoGeneSymbol":"LOC105370053","entrezGeneId":105370053},{"hugoGeneSymbol":"LOC105370054","entrezGeneId":105370054},{"hugoGeneSymbol":"LOC105370055","entrezGeneId":105370055},{"hugoGeneSymbol":"LOC105370056","entrezGeneId":105370056},{"hugoGeneSymbol":"LOC105370057","entrezGeneId":105370057},{"hugoGeneSymbol":"LOC105370058","entrezGeneId":105370058},{"hugoGeneSymbol":"LOC105370060","entrezGeneId":105370060},{"hugoGeneSymbol":"LOC105370061","entrezGeneId":105370061},{"hugoGeneSymbol":"LOC105370062","entrezGeneId":105370062},{"hugoGeneSymbol":"LOC105370063","entrezGeneId":105370063},{"hugoGeneSymbol":"LOC105370064","entrezGeneId":105370064},{"hugoGeneSymbol":"LOC105370066","entrezGeneId":105370066},{"hugoGeneSymbol":"LOC105370067","entrezGeneId":105370067},{"hugoGeneSymbol":"LOC105370068","entrezGeneId":105370068},{"hugoGeneSymbol":"LOC105370069","entrezGeneId":105370069},{"hugoGeneSymbol":"LOC105370071","entrezGeneId":105370071},{"hugoGeneSymbol":"LOC105370073","entrezGeneId":105370073},{"hugoGeneSymbol":"LOC105370074","entrezGeneId":105370074},{"hugoGeneSymbol":"LOC105370076","entrezGeneId":105370076},{"hugoGeneSymbol":"LOC105370077","entrezGeneId":105370077},{"hugoGeneSymbol":"LOC105370079","entrezGeneId":105370079},{"hugoGeneSymbol":"LOC105370080","entrezGeneId":105370080},{"hugoGeneSymbol":"LOC105370082","entrezGeneId":105370082},{"hugoGeneSymbol":"LOC105370083","entrezGeneId":105370083},{"hugoGeneSymbol":"LOC105370084","entrezGeneId":105370084},{"hugoGeneSymbol":"LOC105370086","entrezGeneId":105370086},{"hugoGeneSymbol":"LOC105370087","entrezGeneId":105370087},{"hugoGeneSymbol":"LOC105370088","entrezGeneId":105370088},{"hugoGeneSymbol":"LOC105370090","entrezGeneId":105370090},{"hugoGeneSymbol":"LOC105370091","entrezGeneId":105370091},{"hugoGeneSymbol":"LOC105370092","entrezGeneId":105370092},{"hugoGeneSymbol":"LOC105370094","entrezGeneId":105370094},{"hugoGeneSymbol":"LOC105370101","entrezGeneId":105370101},{"hugoGeneSymbol":"LOC105370102","entrezGeneId":105370102},{"hugoGeneSymbol":"LOC105370103","entrezGeneId":105370103},{"hugoGeneSymbol":"LOC105370104","entrezGeneId":105370104},{"hugoGeneSymbol":"LOC105370105","entrezGeneId":105370105},{"hugoGeneSymbol":"LOC105370108","entrezGeneId":105370108},{"hugoGeneSymbol":"LOC105370109","entrezGeneId":105370109},{"hugoGeneSymbol":"LOC105370111","entrezGeneId":105370111},{"hugoGeneSymbol":"LOC105370112","entrezGeneId":105370112},{"hugoGeneSymbol":"LOC105370113","entrezGeneId":105370113},{"hugoGeneSymbol":"LOC105370114","entrezGeneId":105370114},{"hugoGeneSymbol":"LOC105370115","entrezGeneId":105370115},{"hugoGeneSymbol":"LOC105370117","entrezGeneId":105370117},{"hugoGeneSymbol":"LOC105370118","entrezGeneId":105370118},{"hugoGeneSymbol":"LOC105370119","entrezGeneId":105370119},{"hugoGeneSymbol":"LOC105370120","entrezGeneId":105370120},{"hugoGeneSymbol":"LOC105370121","entrezGeneId":105370121},{"hugoGeneSymbol":"LOC105370122","entrezGeneId":105370122},{"hugoGeneSymbol":"LOC105370124","entrezGeneId":105370124},{"hugoGeneSymbol":"LOC105370126","entrezGeneId":105370126},{"hugoGeneSymbol":"LOC105370128","entrezGeneId":105370128},{"hugoGeneSymbol":"LOC105370129","entrezGeneId":105370129},{"hugoGeneSymbol":"LOC105370130","entrezGeneId":105370130},{"hugoGeneSymbol":"LOC105370132","entrezGeneId":105370132},{"hugoGeneSymbol":"LOC105370135","entrezGeneId":105370135},{"hugoGeneSymbol":"LOC105370139","entrezGeneId":105370139},{"hugoGeneSymbol":"LOC105370145","entrezGeneId":105370145},{"hugoGeneSymbol":"LOC105370148","entrezGeneId":105370148},{"hugoGeneSymbol":"LOC105370149","entrezGeneId":105370149},{"hugoGeneSymbol":"LOC105370150","entrezGeneId":105370150},{"hugoGeneSymbol":"LOC105370152","entrezGeneId":105370152},{"hugoGeneSymbol":"LOC105370156","entrezGeneId":105370156},{"hugoGeneSymbol":"LOC105370159","entrezGeneId":105370159},{"hugoGeneSymbol":"LOC105370161","entrezGeneId":105370161},{"hugoGeneSymbol":"LOC105370163","entrezGeneId":105370163},{"hugoGeneSymbol":"LOC105370165","entrezGeneId":105370165},{"hugoGeneSymbol":"LOC105370167","entrezGeneId":105370167},{"hugoGeneSymbol":"LOC105370168","entrezGeneId":105370168},{"hugoGeneSymbol":"LOC105370169","entrezGeneId":105370169},{"hugoGeneSymbol":"LOC105370170","entrezGeneId":105370170},{"hugoGeneSymbol":"LOC105370171","entrezGeneId":105370171},{"hugoGeneSymbol":"LOC105370173","entrezGeneId":105370173},{"hugoGeneSymbol":"LOC105370174","entrezGeneId":105370174},{"hugoGeneSymbol":"LOC105370175","entrezGeneId":105370175},{"hugoGeneSymbol":"LOC105370176","entrezGeneId":105370176},{"hugoGeneSymbol":"LOC105370178","entrezGeneId":105370178},{"hugoGeneSymbol":"LOC105370179","entrezGeneId":105370179},{"hugoGeneSymbol":"LOC105370181","entrezGeneId":105370181},{"hugoGeneSymbol":"LOC105370182","entrezGeneId":105370182},{"hugoGeneSymbol":"LOC105370185","entrezGeneId":105370185},{"hugoGeneSymbol":"LOC105370186","entrezGeneId":105370186},{"hugoGeneSymbol":"LOC105370187","entrezGeneId":105370187},{"hugoGeneSymbol":"LOC105370188","entrezGeneId":105370188},{"hugoGeneSymbol":"LOC105370190","entrezGeneId":105370190},{"hugoGeneSymbol":"LOC105370191","entrezGeneId":105370191},{"hugoGeneSymbol":"LOC105370192","entrezGeneId":105370192},{"hugoGeneSymbol":"LOC105370194","entrezGeneId":105370194},{"hugoGeneSymbol":"LOC105370195","entrezGeneId":105370195},{"hugoGeneSymbol":"LOC105370196","entrezGeneId":105370196},{"hugoGeneSymbol":"LOC105370198","entrezGeneId":105370198},{"hugoGeneSymbol":"LOC105370201","entrezGeneId":105370201},{"hugoGeneSymbol":"LOC105370202","entrezGeneId":105370202},{"hugoGeneSymbol":"LOC105370203","entrezGeneId":105370203},{"hugoGeneSymbol":"LOC105370204","entrezGeneId":105370204},{"hugoGeneSymbol":"LOC105370205","entrezGeneId":105370205},{"hugoGeneSymbol":"LOC105370207","entrezGeneId":105370207},{"hugoGeneSymbol":"LOC105370210","entrezGeneId":105370210},{"hugoGeneSymbol":"LOC105370213","entrezGeneId":105370213},{"hugoGeneSymbol":"LOC105370214","entrezGeneId":105370214},{"hugoGeneSymbol":"LOC105370216","entrezGeneId":105370216},{"hugoGeneSymbol":"LOC105370217","entrezGeneId":105370217},{"hugoGeneSymbol":"LOC105370218","entrezGeneId":105370218},{"hugoGeneSymbol":"LOC105370219","entrezGeneId":105370219},{"hugoGeneSymbol":"LOC105370220","entrezGeneId":105370220},{"hugoGeneSymbol":"LOC105370221","entrezGeneId":105370221},{"hugoGeneSymbol":"LOC105370222","entrezGeneId":105370222},{"hugoGeneSymbol":"LOC105370223","entrezGeneId":105370223},{"hugoGeneSymbol":"LOC105370224","entrezGeneId":105370224},{"hugoGeneSymbol":"LOC105370227","entrezGeneId":105370227},{"hugoGeneSymbol":"LOC105370228","entrezGeneId":105370228},{"hugoGeneSymbol":"LOC105370230","entrezGeneId":105370230},{"hugoGeneSymbol":"LOC105370231","entrezGeneId":105370231},{"hugoGeneSymbol":"LOC105370232","entrezGeneId":105370232},{"hugoGeneSymbol":"LOC105370233","entrezGeneId":105370233},{"hugoGeneSymbol":"LOC105370234","entrezGeneId":105370234},{"hugoGeneSymbol":"LOC105370235","entrezGeneId":105370235},{"hugoGeneSymbol":"LOC105370236","entrezGeneId":105370236},{"hugoGeneSymbol":"LOC105370237","entrezGeneId":105370237},{"hugoGeneSymbol":"LOC105370238","entrezGeneId":105370238},{"hugoGeneSymbol":"LOC105370239","entrezGeneId":105370239},{"hugoGeneSymbol":"LOC105370240","entrezGeneId":105370240},{"hugoGeneSymbol":"LOC105370241","entrezGeneId":105370241},{"hugoGeneSymbol":"LOC105370243","entrezGeneId":105370243},{"hugoGeneSymbol":"LOC105370244","entrezGeneId":105370244},{"hugoGeneSymbol":"LOC105370245","entrezGeneId":105370245},{"hugoGeneSymbol":"LOC105370246","entrezGeneId":105370246},{"hugoGeneSymbol":"LOC105370247","entrezGeneId":105370247},{"hugoGeneSymbol":"LOC105370248","entrezGeneId":105370248},{"hugoGeneSymbol":"LOC105370249","entrezGeneId":105370249},{"hugoGeneSymbol":"LOC105370250","entrezGeneId":105370250},{"hugoGeneSymbol":"LOC105370251","entrezGeneId":105370251},{"hugoGeneSymbol":"LOC105370254","entrezGeneId":105370254},{"hugoGeneSymbol":"LOC105370255","entrezGeneId":105370255},{"hugoGeneSymbol":"LOC105370256","entrezGeneId":105370256},{"hugoGeneSymbol":"LOC105370259","entrezGeneId":105370259},{"hugoGeneSymbol":"LOC105370260","entrezGeneId":105370260},{"hugoGeneSymbol":"LOC105370261","entrezGeneId":105370261},{"hugoGeneSymbol":"LOC105370262","entrezGeneId":105370262},{"hugoGeneSymbol":"LOC105370263","entrezGeneId":105370263},{"hugoGeneSymbol":"LOC105370264","entrezGeneId":105370264},{"hugoGeneSymbol":"LOC105370265","entrezGeneId":105370265},{"hugoGeneSymbol":"LOC105370266","entrezGeneId":105370266},{"hugoGeneSymbol":"LOC105370269","entrezGeneId":105370269},{"hugoGeneSymbol":"LOC105370271","entrezGeneId":105370271},{"hugoGeneSymbol":"LOC105370272","entrezGeneId":105370272},{"hugoGeneSymbol":"LOC105370273","entrezGeneId":105370273},{"hugoGeneSymbol":"LOC105370274","entrezGeneId":105370274},{"hugoGeneSymbol":"LOC105370275","entrezGeneId":105370275},{"hugoGeneSymbol":"LOC105370276","entrezGeneId":105370276},{"hugoGeneSymbol":"LOC105370278","entrezGeneId":105370278},{"hugoGeneSymbol":"LOC105370281","entrezGeneId":105370281},{"hugoGeneSymbol":"LOC105370282","entrezGeneId":105370282},{"hugoGeneSymbol":"LOC105370283","entrezGeneId":105370283},{"hugoGeneSymbol":"LOC105370284","entrezGeneId":105370284},{"hugoGeneSymbol":"LOC105370285","entrezGeneId":105370285},{"hugoGeneSymbol":"LOC105370286","entrezGeneId":105370286},{"hugoGeneSymbol":"LOC105370287","entrezGeneId":105370287},{"hugoGeneSymbol":"LOC105370289","entrezGeneId":105370289},{"hugoGeneSymbol":"LOC105370290","entrezGeneId":105370290},{"hugoGeneSymbol":"LOC105370291","entrezGeneId":105370291},{"hugoGeneSymbol":"LOC105370292","entrezGeneId":105370292},{"hugoGeneSymbol":"LOC105370295","entrezGeneId":105370295},{"hugoGeneSymbol":"LOC105370297","entrezGeneId":105370297},{"hugoGeneSymbol":"LOC105370298","entrezGeneId":105370298},{"hugoGeneSymbol":"LOC105370299","entrezGeneId":105370299},{"hugoGeneSymbol":"LOC105370300","entrezGeneId":105370300},{"hugoGeneSymbol":"LOC105370301","entrezGeneId":105370301},{"hugoGeneSymbol":"LOC105370302","entrezGeneId":105370302},{"hugoGeneSymbol":"LOC105370304","entrezGeneId":105370304},{"hugoGeneSymbol":"LOC105370306","entrezGeneId":105370306},{"hugoGeneSymbol":"LOC105370307","entrezGeneId":105370307},{"hugoGeneSymbol":"LOC105370310","entrezGeneId":105370310},{"hugoGeneSymbol":"LOC105370311","entrezGeneId":105370311},{"hugoGeneSymbol":"LOC105370312","entrezGeneId":105370312},{"hugoGeneSymbol":"LOC105370313","entrezGeneId":105370313},{"hugoGeneSymbol":"LOC105370314","entrezGeneId":105370314},{"hugoGeneSymbol":"LOC105370315","entrezGeneId":105370315},{"hugoGeneSymbol":"LOC105370317","entrezGeneId":105370317},{"hugoGeneSymbol":"LOC105370321","entrezGeneId":105370321},{"hugoGeneSymbol":"LOC105370322","entrezGeneId":105370322},{"hugoGeneSymbol":"LOC105370324","entrezGeneId":105370324},{"hugoGeneSymbol":"LOC105370325","entrezGeneId":105370325},{"hugoGeneSymbol":"LOC105370327","entrezGeneId":105370327},{"hugoGeneSymbol":"LOC105370328","entrezGeneId":105370328},{"hugoGeneSymbol":"LOC105370330","entrezGeneId":105370330},{"hugoGeneSymbol":"LOC105370332","entrezGeneId":105370332},{"hugoGeneSymbol":"LOC105370333","entrezGeneId":105370333},{"hugoGeneSymbol":"LOC105370335","entrezGeneId":105370335},{"hugoGeneSymbol":"LOC105370337","entrezGeneId":105370337},{"hugoGeneSymbol":"LOC105370338","entrezGeneId":105370338},{"hugoGeneSymbol":"LOC105370339","entrezGeneId":105370339},{"hugoGeneSymbol":"LOC105370340","entrezGeneId":105370340},{"hugoGeneSymbol":"LOC105370342","entrezGeneId":105370342},{"hugoGeneSymbol":"LOC105370343","entrezGeneId":105370343},{"hugoGeneSymbol":"LOC105370344","entrezGeneId":105370344},{"hugoGeneSymbol":"LOC105370345","entrezGeneId":105370345},{"hugoGeneSymbol":"LOC105370346","entrezGeneId":105370346},{"hugoGeneSymbol":"LOC105370348","entrezGeneId":105370348},{"hugoGeneSymbol":"LOC105370349","entrezGeneId":105370349},{"hugoGeneSymbol":"LOC105370350","entrezGeneId":105370350},{"hugoGeneSymbol":"LOC105370353","entrezGeneId":105370353},{"hugoGeneSymbol":"LOC105370355","entrezGeneId":105370355},{"hugoGeneSymbol":"LOC105370356","entrezGeneId":105370356},{"hugoGeneSymbol":"LOC105370359","entrezGeneId":105370359},{"hugoGeneSymbol":"LOC105370360","entrezGeneId":105370360},{"hugoGeneSymbol":"LOC105370361","entrezGeneId":105370361},{"hugoGeneSymbol":"LOC105370362","entrezGeneId":105370362},{"hugoGeneSymbol":"LOC105370363","entrezGeneId":105370363},{"hugoGeneSymbol":"LOC105370364","entrezGeneId":105370364},{"hugoGeneSymbol":"LOC105370365","entrezGeneId":105370365},{"hugoGeneSymbol":"LOC105370366","entrezGeneId":105370366},{"hugoGeneSymbol":"LOC105370370","entrezGeneId":105370370},{"hugoGeneSymbol":"LOC105370372","entrezGeneId":105370372},{"hugoGeneSymbol":"LOC105370373","entrezGeneId":105370373},{"hugoGeneSymbol":"LOC105370378","entrezGeneId":105370378},{"hugoGeneSymbol":"LOC105370380","entrezGeneId":105370380},{"hugoGeneSymbol":"LOC105370384","entrezGeneId":105370384},{"hugoGeneSymbol":"LOC105370390","entrezGeneId":105370390},{"hugoGeneSymbol":"LOC105370397","entrezGeneId":105370397},{"hugoGeneSymbol":"LOC105370398","entrezGeneId":105370398},{"hugoGeneSymbol":"LOC105370399","entrezGeneId":105370399},{"hugoGeneSymbol":"LOC105370401","entrezGeneId":105370401},{"hugoGeneSymbol":"LOC105370404","entrezGeneId":105370404},{"hugoGeneSymbol":"LOC105370406","entrezGeneId":105370406},{"hugoGeneSymbol":"LOC105370407","entrezGeneId":105370407},{"hugoGeneSymbol":"LOC105370408","entrezGeneId":105370408},{"hugoGeneSymbol":"LOC105370409","entrezGeneId":105370409},{"hugoGeneSymbol":"LOC105370410","entrezGeneId":105370410},{"hugoGeneSymbol":"LOC105370411","entrezGeneId":105370411},{"hugoGeneSymbol":"LOC105370412","entrezGeneId":105370412},{"hugoGeneSymbol":"LOC105370413","entrezGeneId":105370413},{"hugoGeneSymbol":"LOC105370415","entrezGeneId":105370415},{"hugoGeneSymbol":"LOC105370416","entrezGeneId":105370416},{"hugoGeneSymbol":"LOC105370418","entrezGeneId":105370418},{"hugoGeneSymbol":"LOC105370419","entrezGeneId":105370419},{"hugoGeneSymbol":"LOC105370420","entrezGeneId":105370420},{"hugoGeneSymbol":"LOC105370421","entrezGeneId":105370421},{"hugoGeneSymbol":"LOC105370428","entrezGeneId":105370428},{"hugoGeneSymbol":"LOC105370429","entrezGeneId":105370429},{"hugoGeneSymbol":"LOC105370430","entrezGeneId":105370430},{"hugoGeneSymbol":"LOC105370432","entrezGeneId":105370432},{"hugoGeneSymbol":"LOC105370436","entrezGeneId":105370436},{"hugoGeneSymbol":"LOC105370437","entrezGeneId":105370437},{"hugoGeneSymbol":"LOC105370438","entrezGeneId":105370438},{"hugoGeneSymbol":"LOC105370440","entrezGeneId":105370440},{"hugoGeneSymbol":"LOC105370443","entrezGeneId":105370443},{"hugoGeneSymbol":"LOC105370444","entrezGeneId":105370444},{"hugoGeneSymbol":"LOC105370446","entrezGeneId":105370446},{"hugoGeneSymbol":"LOC105370447","entrezGeneId":105370447},{"hugoGeneSymbol":"LOC105370449","entrezGeneId":105370449},{"hugoGeneSymbol":"LOC105370450","entrezGeneId":105370450},{"hugoGeneSymbol":"LOC105370451","entrezGeneId":105370451},{"hugoGeneSymbol":"LOC105370452","entrezGeneId":105370452},{"hugoGeneSymbol":"LOC105370453","entrezGeneId":105370453},{"hugoGeneSymbol":"LOC105370455","entrezGeneId":105370455},{"hugoGeneSymbol":"LOC105370456","entrezGeneId":105370456},{"hugoGeneSymbol":"LOC105370457","entrezGeneId":105370457},{"hugoGeneSymbol":"LOC105370459","entrezGeneId":105370459},{"hugoGeneSymbol":"LOC105370460","entrezGeneId":105370460},{"hugoGeneSymbol":"LOC105370461","entrezGeneId":105370461},{"hugoGeneSymbol":"LOC105370462","entrezGeneId":105370462},{"hugoGeneSymbol":"LOC105370463","entrezGeneId":105370463},{"hugoGeneSymbol":"LOC105370464","entrezGeneId":105370464},{"hugoGeneSymbol":"LOC105370465","entrezGeneId":105370465},{"hugoGeneSymbol":"LOC105370466","entrezGeneId":105370466},{"hugoGeneSymbol":"LOC105370467","entrezGeneId":105370467},{"hugoGeneSymbol":"LOC105370469","entrezGeneId":105370469},{"hugoGeneSymbol":"LOC105370470","entrezGeneId":105370470},{"hugoGeneSymbol":"LOC105370472","entrezGeneId":105370472},{"hugoGeneSymbol":"LOC105370473","entrezGeneId":105370473},{"hugoGeneSymbol":"LOC105370474","entrezGeneId":105370474},{"hugoGeneSymbol":"LOC105370475","entrezGeneId":105370475},{"hugoGeneSymbol":"LOC105370476","entrezGeneId":105370476},{"hugoGeneSymbol":"LOC105370478","entrezGeneId":105370478},{"hugoGeneSymbol":"LOC105370480","entrezGeneId":105370480},{"hugoGeneSymbol":"LOC105370481","entrezGeneId":105370481},{"hugoGeneSymbol":"LOC105370482","entrezGeneId":105370482},{"hugoGeneSymbol":"LOC105370485","entrezGeneId":105370485},{"hugoGeneSymbol":"LOC105370487","entrezGeneId":105370487},{"hugoGeneSymbol":"LOC105370489","entrezGeneId":105370489},{"hugoGeneSymbol":"LOC105370491","entrezGeneId":105370491},{"hugoGeneSymbol":"LOC105370492","entrezGeneId":105370492},{"hugoGeneSymbol":"LOC105370495","entrezGeneId":105370495},{"hugoGeneSymbol":"LOC105370497","entrezGeneId":105370497},{"hugoGeneSymbol":"LOC105370500","entrezGeneId":105370500},{"hugoGeneSymbol":"LOC105370502","entrezGeneId":105370502},{"hugoGeneSymbol":"LOC105370504","entrezGeneId":105370504},{"hugoGeneSymbol":"LOC105370505","entrezGeneId":105370505},{"hugoGeneSymbol":"LOC105370507","entrezGeneId":105370507},{"hugoGeneSymbol":"LOC105370508","entrezGeneId":105370508},{"hugoGeneSymbol":"LOC105370509","entrezGeneId":105370509},{"hugoGeneSymbol":"LOC105370511","entrezGeneId":105370511},{"hugoGeneSymbol":"LOC105370512","entrezGeneId":105370512},{"hugoGeneSymbol":"LOC105370513","entrezGeneId":105370513},{"hugoGeneSymbol":"LOC105370515","entrezGeneId":105370515},{"hugoGeneSymbol":"LOC105370516","entrezGeneId":105370516},{"hugoGeneSymbol":"LOC105370518","entrezGeneId":105370518},{"hugoGeneSymbol":"LOC105370519","entrezGeneId":105370519},{"hugoGeneSymbol":"LOC105370522","entrezGeneId":105370522},{"hugoGeneSymbol":"LOC105370524","entrezGeneId":105370524},{"hugoGeneSymbol":"LOC105370525","entrezGeneId":105370525},{"hugoGeneSymbol":"LOC105370526","entrezGeneId":105370526},{"hugoGeneSymbol":"LOC105370527","entrezGeneId":105370527},{"hugoGeneSymbol":"LOC105370528","entrezGeneId":105370528},{"hugoGeneSymbol":"LOC105370529","entrezGeneId":105370529},{"hugoGeneSymbol":"LOC105370530","entrezGeneId":105370530},{"hugoGeneSymbol":"LOC105370531","entrezGeneId":105370531},{"hugoGeneSymbol":"LOC105370532","entrezGeneId":105370532},{"hugoGeneSymbol":"LOC105370534","entrezGeneId":105370534},{"hugoGeneSymbol":"LOC105370537","entrezGeneId":105370537},{"hugoGeneSymbol":"LOC105370538","entrezGeneId":105370538},{"hugoGeneSymbol":"LOC105370542","entrezGeneId":105370542},{"hugoGeneSymbol":"LOC105370543","entrezGeneId":105370543},{"hugoGeneSymbol":"LOC105370546","entrezGeneId":105370546},{"hugoGeneSymbol":"LOC105370547","entrezGeneId":105370547},{"hugoGeneSymbol":"LOC105370549","entrezGeneId":105370549},{"hugoGeneSymbol":"LOC105370550","entrezGeneId":105370550},{"hugoGeneSymbol":"LOC105370552","entrezGeneId":105370552},{"hugoGeneSymbol":"LOC105370555","entrezGeneId":105370555},{"hugoGeneSymbol":"LOC105370556","entrezGeneId":105370556},{"hugoGeneSymbol":"LOC105370557","entrezGeneId":105370557},{"hugoGeneSymbol":"LOC105370559","entrezGeneId":105370559},{"hugoGeneSymbol":"LOC105370560","entrezGeneId":105370560},{"hugoGeneSymbol":"LOC105370563","entrezGeneId":105370563},{"hugoGeneSymbol":"LOC105370564","entrezGeneId":105370564},{"hugoGeneSymbol":"LOC105370567","entrezGeneId":105370567},{"hugoGeneSymbol":"LOC105370569","entrezGeneId":105370569},{"hugoGeneSymbol":"LOC105370571","entrezGeneId":105370571},{"hugoGeneSymbol":"LOC105370572","entrezGeneId":105370572},{"hugoGeneSymbol":"LOC105370573","entrezGeneId":105370573},{"hugoGeneSymbol":"LOC105370575","entrezGeneId":105370575},{"hugoGeneSymbol":"LOC105370576","entrezGeneId":105370576},{"hugoGeneSymbol":"LOC105370577","entrezGeneId":105370577},{"hugoGeneSymbol":"LOC105370579","entrezGeneId":105370579},{"hugoGeneSymbol":"LOC105370581","entrezGeneId":105370581},{"hugoGeneSymbol":"LOC105370582","entrezGeneId":105370582},{"hugoGeneSymbol":"LOC105370583","entrezGeneId":105370583},{"hugoGeneSymbol":"LOC105370585","entrezGeneId":105370585},{"hugoGeneSymbol":"LOC105370586","entrezGeneId":105370586},{"hugoGeneSymbol":"LOC105370587","entrezGeneId":105370587},{"hugoGeneSymbol":"LOC105370588","entrezGeneId":105370588},{"hugoGeneSymbol":"LOC105370589","entrezGeneId":105370589},{"hugoGeneSymbol":"LOC105370590","entrezGeneId":105370590},{"hugoGeneSymbol":"LOC105370591","entrezGeneId":105370591},{"hugoGeneSymbol":"LOC105370593","entrezGeneId":105370593},{"hugoGeneSymbol":"LOC105370594","entrezGeneId":105370594},{"hugoGeneSymbol":"LOC105370596","entrezGeneId":105370596},{"hugoGeneSymbol":"LOC105370598","entrezGeneId":105370598},{"hugoGeneSymbol":"LOC105370599","entrezGeneId":105370599},{"hugoGeneSymbol":"LOC105370600","entrezGeneId":105370600},{"hugoGeneSymbol":"LOC105370601","entrezGeneId":105370601},{"hugoGeneSymbol":"LOC105370603","entrezGeneId":105370603},{"hugoGeneSymbol":"LOC105370604","entrezGeneId":105370604},{"hugoGeneSymbol":"LOC105370608","entrezGeneId":105370608},{"hugoGeneSymbol":"LOC105370612","entrezGeneId":105370612},{"hugoGeneSymbol":"LOC105370613","entrezGeneId":105370613},{"hugoGeneSymbol":"LOC105370614","entrezGeneId":105370614},{"hugoGeneSymbol":"LOC105370615","entrezGeneId":105370615},{"hugoGeneSymbol":"LOC105370616","entrezGeneId":105370616},{"hugoGeneSymbol":"LOC105370617","entrezGeneId":105370617},{"hugoGeneSymbol":"LOC105370618","entrezGeneId":105370618},{"hugoGeneSymbol":"LOC105370619","entrezGeneId":105370619},{"hugoGeneSymbol":"LOC105370620","entrezGeneId":105370620},{"hugoGeneSymbol":"LOC105370622","entrezGeneId":105370622},{"hugoGeneSymbol":"LOC105370624","entrezGeneId":105370624},{"hugoGeneSymbol":"LOC105370625","entrezGeneId":105370625},{"hugoGeneSymbol":"LOC105370627","entrezGeneId":105370627},{"hugoGeneSymbol":"LOC105370629","entrezGeneId":105370629},{"hugoGeneSymbol":"LOC105370631","entrezGeneId":105370631},{"hugoGeneSymbol":"LOC105370634","entrezGeneId":105370634},{"hugoGeneSymbol":"LOC105370635","entrezGeneId":105370635},{"hugoGeneSymbol":"LOC105370637","entrezGeneId":105370637},{"hugoGeneSymbol":"LOC105370638","entrezGeneId":105370638},{"hugoGeneSymbol":"LOC105370639","entrezGeneId":105370639},{"hugoGeneSymbol":"LOC105370640","entrezGeneId":105370640},{"hugoGeneSymbol":"LOC105370641","entrezGeneId":105370641},{"hugoGeneSymbol":"LOC105370643","entrezGeneId":105370643},{"hugoGeneSymbol":"LOC105370644","entrezGeneId":105370644},{"hugoGeneSymbol":"LOC105370645","entrezGeneId":105370645},{"hugoGeneSymbol":"LOC105370647","entrezGeneId":105370647},{"hugoGeneSymbol":"LOC105370650","entrezGeneId":105370650},{"hugoGeneSymbol":"LOC105370651","entrezGeneId":105370651},{"hugoGeneSymbol":"LOC105370653","entrezGeneId":105370653},{"hugoGeneSymbol":"LOC105370654","entrezGeneId":105370654},{"hugoGeneSymbol":"LOC105370655","entrezGeneId":105370655},{"hugoGeneSymbol":"LOC105370656","entrezGeneId":105370656},{"hugoGeneSymbol":"LOC105370657","entrezGeneId":105370657},{"hugoGeneSymbol":"LOC105370658","entrezGeneId":105370658},{"hugoGeneSymbol":"LOC105370659","entrezGeneId":105370659},{"hugoGeneSymbol":"LOC105370660","entrezGeneId":105370660},{"hugoGeneSymbol":"LOC105370661","entrezGeneId":105370661},{"hugoGeneSymbol":"LOC105370664","entrezGeneId":105370664},{"hugoGeneSymbol":"LOC105370667","entrezGeneId":105370667},{"hugoGeneSymbol":"LOC105370668","entrezGeneId":105370668},{"hugoGeneSymbol":"LOC105370669","entrezGeneId":105370669},{"hugoGeneSymbol":"LOC105370670","entrezGeneId":105370670},{"hugoGeneSymbol":"LOC105370671","entrezGeneId":105370671},{"hugoGeneSymbol":"LOC105370672","entrezGeneId":105370672},{"hugoGeneSymbol":"LOC105370673","entrezGeneId":105370673},{"hugoGeneSymbol":"LOC105370674","entrezGeneId":105370674},{"hugoGeneSymbol":"LOC105370675","entrezGeneId":105370675},{"hugoGeneSymbol":"LOC105370677","entrezGeneId":105370677},{"hugoGeneSymbol":"LOC105370679","entrezGeneId":105370679},{"hugoGeneSymbol":"LOC105370680","entrezGeneId":105370680},{"hugoGeneSymbol":"LOC105370685","entrezGeneId":105370685},{"hugoGeneSymbol":"LOC105370686","entrezGeneId":105370686},{"hugoGeneSymbol":"LOC105370687","entrezGeneId":105370687},{"hugoGeneSymbol":"LOC105370688","entrezGeneId":105370688},{"hugoGeneSymbol":"LOC105370689","entrezGeneId":105370689},{"hugoGeneSymbol":"LOC105370690","entrezGeneId":105370690},{"hugoGeneSymbol":"LOC105370691","entrezGeneId":105370691},{"hugoGeneSymbol":"LOC105370693","entrezGeneId":105370693},{"hugoGeneSymbol":"LOC105370694","entrezGeneId":105370694},{"hugoGeneSymbol":"LOC105370697","entrezGeneId":105370697},{"hugoGeneSymbol":"LOC105370698","entrezGeneId":105370698},{"hugoGeneSymbol":"LOC105370700","entrezGeneId":105370700},{"hugoGeneSymbol":"LOC105370705","entrezGeneId":105370705},{"hugoGeneSymbol":"LOC105370706","entrezGeneId":105370706},{"hugoGeneSymbol":"LOC105370707","entrezGeneId":105370707},{"hugoGeneSymbol":"LOC105370708","entrezGeneId":105370708},{"hugoGeneSymbol":"LOC105370714","entrezGeneId":105370714},{"hugoGeneSymbol":"LOC105370715","entrezGeneId":105370715},{"hugoGeneSymbol":"LOC105370720","entrezGeneId":105370720},{"hugoGeneSymbol":"LOC105370721","entrezGeneId":105370721},{"hugoGeneSymbol":"LOC105370722","entrezGeneId":105370722},{"hugoGeneSymbol":"LOC105370726","entrezGeneId":105370726},{"hugoGeneSymbol":"LOC105370728","entrezGeneId":105370728},{"hugoGeneSymbol":"LOC105370729","entrezGeneId":105370729},{"hugoGeneSymbol":"LOC105370730","entrezGeneId":105370730},{"hugoGeneSymbol":"LOC105370732","entrezGeneId":105370732},{"hugoGeneSymbol":"LOC105370733","entrezGeneId":105370733},{"hugoGeneSymbol":"LOC105370734","entrezGeneId":105370734},{"hugoGeneSymbol":"LOC105370738","entrezGeneId":105370738},{"hugoGeneSymbol":"LOC105370739","entrezGeneId":105370739},{"hugoGeneSymbol":"LOC105370740","entrezGeneId":105370740},{"hugoGeneSymbol":"LOC105370741","entrezGeneId":105370741},{"hugoGeneSymbol":"LOC105370743","entrezGeneId":105370743},{"hugoGeneSymbol":"LOC105370746","entrezGeneId":105370746},{"hugoGeneSymbol":"LOC105370747","entrezGeneId":105370747},{"hugoGeneSymbol":"LOC105370748","entrezGeneId":105370748},{"hugoGeneSymbol":"LOC105370750","entrezGeneId":105370750},{"hugoGeneSymbol":"LOC105370751","entrezGeneId":105370751},{"hugoGeneSymbol":"LOC105370752","entrezGeneId":105370752},{"hugoGeneSymbol":"LOC105370753","entrezGeneId":105370753},{"hugoGeneSymbol":"LOC105370754","entrezGeneId":105370754},{"hugoGeneSymbol":"LOC105370756","entrezGeneId":105370756},{"hugoGeneSymbol":"LOC105370757","entrezGeneId":105370757},{"hugoGeneSymbol":"LOC105370759","entrezGeneId":105370759},{"hugoGeneSymbol":"LOC105370763","entrezGeneId":105370763},{"hugoGeneSymbol":"LOC105370764","entrezGeneId":105370764},{"hugoGeneSymbol":"LOC105370765","entrezGeneId":105370765},{"hugoGeneSymbol":"LOC105370766","entrezGeneId":105370766},{"hugoGeneSymbol":"LOC105370767","entrezGeneId":105370767},{"hugoGeneSymbol":"LOC105370768","entrezGeneId":105370768},{"hugoGeneSymbol":"LOC105370769","entrezGeneId":105370769},{"hugoGeneSymbol":"LOC105370770","entrezGeneId":105370770},{"hugoGeneSymbol":"LOC105370772","entrezGeneId":105370772},{"hugoGeneSymbol":"LOC105370773","entrezGeneId":105370773},{"hugoGeneSymbol":"LOC105370774","entrezGeneId":105370774},{"hugoGeneSymbol":"LOC105370775","entrezGeneId":105370775},{"hugoGeneSymbol":"LOC105370776","entrezGeneId":105370776},{"hugoGeneSymbol":"LOC105370777","entrezGeneId":105370777},{"hugoGeneSymbol":"LOC105370780","entrezGeneId":105370780},{"hugoGeneSymbol":"LOC105370781","entrezGeneId":105370781},{"hugoGeneSymbol":"LOC105370783","entrezGeneId":105370783},{"hugoGeneSymbol":"LOC105370784","entrezGeneId":105370784},{"hugoGeneSymbol":"LOC105370785","entrezGeneId":105370785},{"hugoGeneSymbol":"LOC105370786","entrezGeneId":105370786},{"hugoGeneSymbol":"LOC105370787","entrezGeneId":105370787},{"hugoGeneSymbol":"LOC105370789","entrezGeneId":105370789},{"hugoGeneSymbol":"LOC105370790","entrezGeneId":105370790},{"hugoGeneSymbol":"LOC105370791","entrezGeneId":105370791},{"hugoGeneSymbol":"LOC105370792","entrezGeneId":105370792},{"hugoGeneSymbol":"LOC105370793","entrezGeneId":105370793},{"hugoGeneSymbol":"LOC105370794","entrezGeneId":105370794},{"hugoGeneSymbol":"LOC105370795","entrezGeneId":105370795},{"hugoGeneSymbol":"LOC105370798","entrezGeneId":105370798},{"hugoGeneSymbol":"LOC105370802","entrezGeneId":105370802},{"hugoGeneSymbol":"LOC105370803","entrezGeneId":105370803},{"hugoGeneSymbol":"LOC105370804","entrezGeneId":105370804},{"hugoGeneSymbol":"LOC105370805","entrezGeneId":105370805},{"hugoGeneSymbol":"LOC105370807","entrezGeneId":105370807},{"hugoGeneSymbol":"LOC105370809","entrezGeneId":105370809},{"hugoGeneSymbol":"LOC105370811","entrezGeneId":105370811},{"hugoGeneSymbol":"LOC105370816","entrezGeneId":105370816},{"hugoGeneSymbol":"LOC105370819","entrezGeneId":105370819},{"hugoGeneSymbol":"LOC105370820","entrezGeneId":105370820},{"hugoGeneSymbol":"LOC105370821","entrezGeneId":105370821},{"hugoGeneSymbol":"LOC105370823","entrezGeneId":105370823},{"hugoGeneSymbol":"LOC105370824","entrezGeneId":105370824},{"hugoGeneSymbol":"LOC105370826","entrezGeneId":105370826},{"hugoGeneSymbol":"LOC105370827","entrezGeneId":105370827},{"hugoGeneSymbol":"LOC105370829","entrezGeneId":105370829},{"hugoGeneSymbol":"LOC105370831","entrezGeneId":105370831},{"hugoGeneSymbol":"LOC105370832","entrezGeneId":105370832},{"hugoGeneSymbol":"LOC105370833","entrezGeneId":105370833},{"hugoGeneSymbol":"LOC105370834","entrezGeneId":105370834},{"hugoGeneSymbol":"LOC105370838","entrezGeneId":105370838},{"hugoGeneSymbol":"LOC105370839","entrezGeneId":105370839},{"hugoGeneSymbol":"LOC105370840","entrezGeneId":105370840},{"hugoGeneSymbol":"LOC105370841","entrezGeneId":105370841},{"hugoGeneSymbol":"LOC105370842","entrezGeneId":105370842},{"hugoGeneSymbol":"LOC105370844","entrezGeneId":105370844},{"hugoGeneSymbol":"LOC105370846","entrezGeneId":105370846},{"hugoGeneSymbol":"LOC105370847","entrezGeneId":105370847},{"hugoGeneSymbol":"LOC105370849","entrezGeneId":105370849},{"hugoGeneSymbol":"LOC105370850","entrezGeneId":105370850},{"hugoGeneSymbol":"LOC105370851","entrezGeneId":105370851},{"hugoGeneSymbol":"LOC105370852","entrezGeneId":105370852},{"hugoGeneSymbol":"LOC105370854","entrezGeneId":105370854},{"hugoGeneSymbol":"LOC105370855","entrezGeneId":105370855},{"hugoGeneSymbol":"LOC105370858","entrezGeneId":105370858},{"hugoGeneSymbol":"LOC105370861","entrezGeneId":105370861},{"hugoGeneSymbol":"LOC105370862","entrezGeneId":105370862},{"hugoGeneSymbol":"LOC105370866","entrezGeneId":105370866},{"hugoGeneSymbol":"LOC105370867","entrezGeneId":105370867},{"hugoGeneSymbol":"LOC105370868","entrezGeneId":105370868},{"hugoGeneSymbol":"LOC105370869","entrezGeneId":105370869},{"hugoGeneSymbol":"LOC105370870","entrezGeneId":105370870},{"hugoGeneSymbol":"LOC105370871","entrezGeneId":105370871},{"hugoGeneSymbol":"LOC105370873","entrezGeneId":105370873},{"hugoGeneSymbol":"LOC105370876","entrezGeneId":105370876},{"hugoGeneSymbol":"LOC105370877","entrezGeneId":105370877},{"hugoGeneSymbol":"LOC105370878","entrezGeneId":105370878},{"hugoGeneSymbol":"LOC105370884","entrezGeneId":105370884},{"hugoGeneSymbol":"LOC105370886","entrezGeneId":105370886},{"hugoGeneSymbol":"LOC105370887","entrezGeneId":105370887},{"hugoGeneSymbol":"LOC105370890","entrezGeneId":105370890},{"hugoGeneSymbol":"LOC105370891","entrezGeneId":105370891},{"hugoGeneSymbol":"LOC105370892","entrezGeneId":105370892},{"hugoGeneSymbol":"LOC105370893","entrezGeneId":105370893},{"hugoGeneSymbol":"LOC105370897","entrezGeneId":105370897},{"hugoGeneSymbol":"LOC105370902","entrezGeneId":105370902},{"hugoGeneSymbol":"LOC105370904","entrezGeneId":105370904},{"hugoGeneSymbol":"LOC105370906","entrezGeneId":105370906},{"hugoGeneSymbol":"LOC105370910","entrezGeneId":105370910},{"hugoGeneSymbol":"LOC105370911","entrezGeneId":105370911},{"hugoGeneSymbol":"LOC105370912","entrezGeneId":105370912},{"hugoGeneSymbol":"LOC105370913","entrezGeneId":105370913},{"hugoGeneSymbol":"LOC105370917","entrezGeneId":105370917},{"hugoGeneSymbol":"LOC105370918","entrezGeneId":105370918},{"hugoGeneSymbol":"LOC105370919","entrezGeneId":105370919},{"hugoGeneSymbol":"LOC105370921","entrezGeneId":105370921},{"hugoGeneSymbol":"LOC105370922","entrezGeneId":105370922},{"hugoGeneSymbol":"LOC105370923","entrezGeneId":105370923},{"hugoGeneSymbol":"LOC105370924","entrezGeneId":105370924},{"hugoGeneSymbol":"LOC105370926","entrezGeneId":105370926},{"hugoGeneSymbol":"LOC105370928","entrezGeneId":105370928},{"hugoGeneSymbol":"LOC105370932","entrezGeneId":105370932},{"hugoGeneSymbol":"LOC105370933","entrezGeneId":105370933},{"hugoGeneSymbol":"LOC105370934","entrezGeneId":105370934},{"hugoGeneSymbol":"LOC105370935","entrezGeneId":105370935},{"hugoGeneSymbol":"LOC105370936","entrezGeneId":105370936},{"hugoGeneSymbol":"LOC105370939","entrezGeneId":105370939},{"hugoGeneSymbol":"LOC105370940","entrezGeneId":105370940},{"hugoGeneSymbol":"LOC105370941","entrezGeneId":105370941},{"hugoGeneSymbol":"LOC105370943","entrezGeneId":105370943},{"hugoGeneSymbol":"LOC105370946","entrezGeneId":105370946},{"hugoGeneSymbol":"LOC105370947","entrezGeneId":105370947},{"hugoGeneSymbol":"LOC105370948","entrezGeneId":105370948},{"hugoGeneSymbol":"LOC105370952","entrezGeneId":105370952},{"hugoGeneSymbol":"LOC105370953","entrezGeneId":105370953},{"hugoGeneSymbol":"LOC105370954","entrezGeneId":105370954},{"hugoGeneSymbol":"LOC105370955","entrezGeneId":105370955},{"hugoGeneSymbol":"LOC105370956","entrezGeneId":105370956},{"hugoGeneSymbol":"LOC105370957","entrezGeneId":105370957},{"hugoGeneSymbol":"LOC105370958","entrezGeneId":105370958},{"hugoGeneSymbol":"LOC105370959","entrezGeneId":105370959},{"hugoGeneSymbol":"LOC105370960","entrezGeneId":105370960},{"hugoGeneSymbol":"LOC105370964","entrezGeneId":105370964},{"hugoGeneSymbol":"LOC105370965","entrezGeneId":105370965},{"hugoGeneSymbol":"LOC105370969","entrezGeneId":105370969},{"hugoGeneSymbol":"LOC105370970","entrezGeneId":105370970},{"hugoGeneSymbol":"LOC105370972","entrezGeneId":105370972},{"hugoGeneSymbol":"LOC105370973","entrezGeneId":105370973},{"hugoGeneSymbol":"LOC105370974","entrezGeneId":105370974},{"hugoGeneSymbol":"LOC105370975","entrezGeneId":105370975},{"hugoGeneSymbol":"LOC105370978","entrezGeneId":105370978},{"hugoGeneSymbol":"LOC105370979","entrezGeneId":105370979},{"hugoGeneSymbol":"LOC105370980","entrezGeneId":105370980},{"hugoGeneSymbol":"LOC105370981","entrezGeneId":105370981},{"hugoGeneSymbol":"LOC105370982","entrezGeneId":105370982},{"hugoGeneSymbol":"LOC105370984","entrezGeneId":105370984},{"hugoGeneSymbol":"LOC105370985","entrezGeneId":105370985},{"hugoGeneSymbol":"LOC105370986","entrezGeneId":105370986},{"hugoGeneSymbol":"LOC105370987","entrezGeneId":105370987},{"hugoGeneSymbol":"LOC105370988","entrezGeneId":105370988},{"hugoGeneSymbol":"LOC105370989","entrezGeneId":105370989},{"hugoGeneSymbol":"LOC105370990","entrezGeneId":105370990},{"hugoGeneSymbol":"LOC105370991","entrezGeneId":105370991},{"hugoGeneSymbol":"LOC105370992","entrezGeneId":105370992},{"hugoGeneSymbol":"LOC105370993","entrezGeneId":105370993},{"hugoGeneSymbol":"LOC105370994","entrezGeneId":105370994},{"hugoGeneSymbol":"LOC105370995","entrezGeneId":105370995},{"hugoGeneSymbol":"LOC105370997","entrezGeneId":105370997},{"hugoGeneSymbol":"LOC105370998","entrezGeneId":105370998},{"hugoGeneSymbol":"LOC105371001","entrezGeneId":105371001},{"hugoGeneSymbol":"LOC105371002","entrezGeneId":105371002},{"hugoGeneSymbol":"LOC105371004","entrezGeneId":105371004},{"hugoGeneSymbol":"LOC105371005","entrezGeneId":105371005},{"hugoGeneSymbol":"LOC105371006","entrezGeneId":105371006},{"hugoGeneSymbol":"LOC105371007","entrezGeneId":105371007},{"hugoGeneSymbol":"LOC105371009","entrezGeneId":105371009},{"hugoGeneSymbol":"LOC105371010","entrezGeneId":105371010},{"hugoGeneSymbol":"LOC105371013","entrezGeneId":105371013},{"hugoGeneSymbol":"LOC105371016","entrezGeneId":105371016},{"hugoGeneSymbol":"LOC105371017","entrezGeneId":105371017},{"hugoGeneSymbol":"LOC105371018","entrezGeneId":105371018},{"hugoGeneSymbol":"LOC105371019","entrezGeneId":105371019},{"hugoGeneSymbol":"LOC105371020","entrezGeneId":105371020},{"hugoGeneSymbol":"LOC105371021","entrezGeneId":105371021},{"hugoGeneSymbol":"LOC105371022","entrezGeneId":105371022},{"hugoGeneSymbol":"LOC105371024","entrezGeneId":105371024},{"hugoGeneSymbol":"LOC105371026","entrezGeneId":105371026},{"hugoGeneSymbol":"LOC105371028","entrezGeneId":105371028},{"hugoGeneSymbol":"LOC105371030","entrezGeneId":105371030},{"hugoGeneSymbol":"LOC105371031","entrezGeneId":105371031},{"hugoGeneSymbol":"LOC105371032","entrezGeneId":105371032},{"hugoGeneSymbol":"LOC105371036","entrezGeneId":105371036},{"hugoGeneSymbol":"LOC105371038","entrezGeneId":105371038},{"hugoGeneSymbol":"LOC105371042","entrezGeneId":105371042},{"hugoGeneSymbol":"LOC105371044","entrezGeneId":105371044},{"hugoGeneSymbol":"LOC105371045","entrezGeneId":105371045},{"hugoGeneSymbol":"LOC105371046","entrezGeneId":105371046},{"hugoGeneSymbol":"LOC105371049","entrezGeneId":105371049},{"hugoGeneSymbol":"LOC105371050","entrezGeneId":105371050},{"hugoGeneSymbol":"LOC105371055","entrezGeneId":105371055},{"hugoGeneSymbol":"LOC105371056","entrezGeneId":105371056},{"hugoGeneSymbol":"LOC105371058","entrezGeneId":105371058},{"hugoGeneSymbol":"LOC105371059","entrezGeneId":105371059},{"hugoGeneSymbol":"LOC105371060","entrezGeneId":105371060},{"hugoGeneSymbol":"LOC105371062","entrezGeneId":105371062},{"hugoGeneSymbol":"LOC105371063","entrezGeneId":105371063},{"hugoGeneSymbol":"LOC105371064","entrezGeneId":105371064},{"hugoGeneSymbol":"LOC105371065","entrezGeneId":105371065},{"hugoGeneSymbol":"LOC105371067","entrezGeneId":105371067},{"hugoGeneSymbol":"LOC105371068","entrezGeneId":105371068},{"hugoGeneSymbol":"LOC105371069","entrezGeneId":105371069},{"hugoGeneSymbol":"LOC105371070","entrezGeneId":105371070},{"hugoGeneSymbol":"LOC105371072","entrezGeneId":105371072},{"hugoGeneSymbol":"LOC105371074","entrezGeneId":105371074},{"hugoGeneSymbol":"LOC105371075","entrezGeneId":105371075},{"hugoGeneSymbol":"LOC105371076","entrezGeneId":105371076},{"hugoGeneSymbol":"LOC105371077","entrezGeneId":105371077},{"hugoGeneSymbol":"LOC105371078","entrezGeneId":105371078},{"hugoGeneSymbol":"LOC105371079","entrezGeneId":105371079},{"hugoGeneSymbol":"LOC105371080","entrezGeneId":105371080},{"hugoGeneSymbol":"LOC105371081","entrezGeneId":105371081},{"hugoGeneSymbol":"LOC105371082","entrezGeneId":105371082},{"hugoGeneSymbol":"LOC105371083","entrezGeneId":105371083},{"hugoGeneSymbol":"LOC105371084","entrezGeneId":105371084},{"hugoGeneSymbol":"LOC105371085","entrezGeneId":105371085},{"hugoGeneSymbol":"LOC105371087","entrezGeneId":105371087},{"hugoGeneSymbol":"LOC105371088","entrezGeneId":105371088},{"hugoGeneSymbol":"LOC105371089","entrezGeneId":105371089},{"hugoGeneSymbol":"LOC105371090","entrezGeneId":105371090},{"hugoGeneSymbol":"LOC105371091","entrezGeneId":105371091},{"hugoGeneSymbol":"LOC105371092","entrezGeneId":105371092},{"hugoGeneSymbol":"LOC105371093","entrezGeneId":105371093},{"hugoGeneSymbol":"LOC105371094","entrezGeneId":105371094},{"hugoGeneSymbol":"LOC105371095","entrezGeneId":105371095},{"hugoGeneSymbol":"LOC105371096","entrezGeneId":105371096},{"hugoGeneSymbol":"LOC105371097","entrezGeneId":105371097},{"hugoGeneSymbol":"LOC105371098","entrezGeneId":105371098},{"hugoGeneSymbol":"LOC105371099","entrezGeneId":105371099},{"hugoGeneSymbol":"LOC105371100","entrezGeneId":105371100},{"hugoGeneSymbol":"LOC105371102","entrezGeneId":105371102},{"hugoGeneSymbol":"LOC105371103","entrezGeneId":105371103},{"hugoGeneSymbol":"LOC105371105","entrezGeneId":105371105},{"hugoGeneSymbol":"LOC105371106","entrezGeneId":105371106},{"hugoGeneSymbol":"LOC105371108","entrezGeneId":105371108},{"hugoGeneSymbol":"LOC105371113","entrezGeneId":105371113},{"hugoGeneSymbol":"LOC105371114","entrezGeneId":105371114},{"hugoGeneSymbol":"LOC105371115","entrezGeneId":105371115},{"hugoGeneSymbol":"LOC105371116","entrezGeneId":105371116},{"hugoGeneSymbol":"LOC105371117","entrezGeneId":105371117},{"hugoGeneSymbol":"LOC105371119","entrezGeneId":105371119},{"hugoGeneSymbol":"LOC105371120","entrezGeneId":105371120},{"hugoGeneSymbol":"LOC105371121","entrezGeneId":105371121},{"hugoGeneSymbol":"LOC105371123","entrezGeneId":105371123},{"hugoGeneSymbol":"LOC105371125","entrezGeneId":105371125},{"hugoGeneSymbol":"LOC105371126","entrezGeneId":105371126},{"hugoGeneSymbol":"LOC105371129","entrezGeneId":105371129},{"hugoGeneSymbol":"LOC105371131","entrezGeneId":105371131},{"hugoGeneSymbol":"LOC105371132","entrezGeneId":105371132},{"hugoGeneSymbol":"LOC105371141","entrezGeneId":105371141},{"hugoGeneSymbol":"LOC105371143","entrezGeneId":105371143},{"hugoGeneSymbol":"LOC105371147","entrezGeneId":105371147},{"hugoGeneSymbol":"LOC105371149","entrezGeneId":105371149},{"hugoGeneSymbol":"LOC105371150","entrezGeneId":105371150},{"hugoGeneSymbol":"LOC105371153","entrezGeneId":105371153},{"hugoGeneSymbol":"LOC105371154","entrezGeneId":105371154},{"hugoGeneSymbol":"LOC105371155","entrezGeneId":105371155},{"hugoGeneSymbol":"LOC105371157","entrezGeneId":105371157},{"hugoGeneSymbol":"LOC105371159","entrezGeneId":105371159},{"hugoGeneSymbol":"LOC105371167","entrezGeneId":105371167},{"hugoGeneSymbol":"LOC105371168","entrezGeneId":105371168},{"hugoGeneSymbol":"LOC105371172","entrezGeneId":105371172},{"hugoGeneSymbol":"LOC105371174","entrezGeneId":105371174},{"hugoGeneSymbol":"LOC105371175","entrezGeneId":105371175},{"hugoGeneSymbol":"LOC105371176","entrezGeneId":105371176},{"hugoGeneSymbol":"LOC105371177","entrezGeneId":105371177},{"hugoGeneSymbol":"LOC105371184","entrezGeneId":105371184},{"hugoGeneSymbol":"LOC105371187","entrezGeneId":105371187},{"hugoGeneSymbol":"LOC105371191","entrezGeneId":105371191},{"hugoGeneSymbol":"LOC105371195","entrezGeneId":105371195},{"hugoGeneSymbol":"LOC105371196","entrezGeneId":105371196},{"hugoGeneSymbol":"LOC105371197","entrezGeneId":105371197},{"hugoGeneSymbol":"LOC105371198","entrezGeneId":105371198},{"hugoGeneSymbol":"LOC105371199","entrezGeneId":105371199},{"hugoGeneSymbol":"LOC105371200","entrezGeneId":105371200},{"hugoGeneSymbol":"LOC105371201","entrezGeneId":105371201},{"hugoGeneSymbol":"LOC105371203","entrezGeneId":105371203},{"hugoGeneSymbol":"LOC105371204","entrezGeneId":105371204},{"hugoGeneSymbol":"LOC105371206","entrezGeneId":105371206},{"hugoGeneSymbol":"LOC105371207","entrezGeneId":105371207},{"hugoGeneSymbol":"LOC105371209","entrezGeneId":105371209},{"hugoGeneSymbol":"LOC105371211","entrezGeneId":105371211},{"hugoGeneSymbol":"LOC105371214","entrezGeneId":105371214},{"hugoGeneSymbol":"LOC105371215","entrezGeneId":105371215},{"hugoGeneSymbol":"LOC105371216","entrezGeneId":105371216},{"hugoGeneSymbol":"LOC105371217","entrezGeneId":105371217},{"hugoGeneSymbol":"LOC105371219","entrezGeneId":105371219},{"hugoGeneSymbol":"LOC105371222","entrezGeneId":105371222},{"hugoGeneSymbol":"LOC105371223","entrezGeneId":105371223},{"hugoGeneSymbol":"LOC105371224","entrezGeneId":105371224},{"hugoGeneSymbol":"LOC105371225","entrezGeneId":105371225},{"hugoGeneSymbol":"LOC105371227","entrezGeneId":105371227},{"hugoGeneSymbol":"LOC105371228","entrezGeneId":105371228},{"hugoGeneSymbol":"LOC105371229","entrezGeneId":105371229},{"hugoGeneSymbol":"LOC105371230","entrezGeneId":105371230},{"hugoGeneSymbol":"LOC105371231","entrezGeneId":105371231},{"hugoGeneSymbol":"LOC105371233","entrezGeneId":105371233},{"hugoGeneSymbol":"LOC105371235","entrezGeneId":105371235},{"hugoGeneSymbol":"LOC105371236","entrezGeneId":105371236},{"hugoGeneSymbol":"LOC105371237","entrezGeneId":105371237},{"hugoGeneSymbol":"LOC105371239","entrezGeneId":105371239},{"hugoGeneSymbol":"LOC105371240","entrezGeneId":105371240},{"hugoGeneSymbol":"LOC105371241","entrezGeneId":105371241},{"hugoGeneSymbol":"LOC105371242","entrezGeneId":105371242},{"hugoGeneSymbol":"LOC105371243","entrezGeneId":105371243},{"hugoGeneSymbol":"LOC105371244","entrezGeneId":105371244},{"hugoGeneSymbol":"LOC105371245","entrezGeneId":105371245},{"hugoGeneSymbol":"LOC105371251","entrezGeneId":105371251},{"hugoGeneSymbol":"LOC105371253","entrezGeneId":105371253},{"hugoGeneSymbol":"LOC105371254","entrezGeneId":105371254},{"hugoGeneSymbol":"LOC105371256","entrezGeneId":105371256},{"hugoGeneSymbol":"LOC105371257","entrezGeneId":105371257},{"hugoGeneSymbol":"LOC105371259","entrezGeneId":105371259},{"hugoGeneSymbol":"LOC105371261","entrezGeneId":105371261},{"hugoGeneSymbol":"LOC105371262","entrezGeneId":105371262},{"hugoGeneSymbol":"LOC105371264","entrezGeneId":105371264},{"hugoGeneSymbol":"LOC105371265","entrezGeneId":105371265},{"hugoGeneSymbol":"LOC105371267","entrezGeneId":105371267},{"hugoGeneSymbol":"LOC105371268","entrezGeneId":105371268},{"hugoGeneSymbol":"LOC105371269","entrezGeneId":105371269},{"hugoGeneSymbol":"LOC105371271","entrezGeneId":105371271},{"hugoGeneSymbol":"LOC105371272","entrezGeneId":105371272},{"hugoGeneSymbol":"LOC105371274","entrezGeneId":105371274},{"hugoGeneSymbol":"LOC105371275","entrezGeneId":105371275},{"hugoGeneSymbol":"LOC105371276","entrezGeneId":105371276},{"hugoGeneSymbol":"LOC105371277","entrezGeneId":105371277},{"hugoGeneSymbol":"LOC105371278","entrezGeneId":105371278},{"hugoGeneSymbol":"LOC105371279","entrezGeneId":105371279},{"hugoGeneSymbol":"LOC105371280","entrezGeneId":105371280},{"hugoGeneSymbol":"LOC105371281","entrezGeneId":105371281},{"hugoGeneSymbol":"LOC105371283","entrezGeneId":105371283},{"hugoGeneSymbol":"LOC105371286","entrezGeneId":105371286},{"hugoGeneSymbol":"LOC105371287","entrezGeneId":105371287},{"hugoGeneSymbol":"LOC105371288","entrezGeneId":105371288},{"hugoGeneSymbol":"LOC105371289","entrezGeneId":105371289},{"hugoGeneSymbol":"LOC105371291","entrezGeneId":105371291},{"hugoGeneSymbol":"LOC105371293","entrezGeneId":105371293},{"hugoGeneSymbol":"LOC105371296","entrezGeneId":105371296},{"hugoGeneSymbol":"LOC105371298","entrezGeneId":105371298},{"hugoGeneSymbol":"LOC105371299","entrezGeneId":105371299},{"hugoGeneSymbol":"LOC105371300","entrezGeneId":105371300},{"hugoGeneSymbol":"LOC105371301","entrezGeneId":105371301},{"hugoGeneSymbol":"LOC105371302","entrezGeneId":105371302},{"hugoGeneSymbol":"LOC105371305","entrezGeneId":105371305},{"hugoGeneSymbol":"LOC105371306","entrezGeneId":105371306},{"hugoGeneSymbol":"LOC105371307","entrezGeneId":105371307},{"hugoGeneSymbol":"LOC105371308","entrezGeneId":105371308},{"hugoGeneSymbol":"LOC105371309","entrezGeneId":105371309},{"hugoGeneSymbol":"LOC105371310","entrezGeneId":105371310},{"hugoGeneSymbol":"LOC105371311","entrezGeneId":105371311},{"hugoGeneSymbol":"LOC105371312","entrezGeneId":105371312},{"hugoGeneSymbol":"LOC105371313","entrezGeneId":105371313},{"hugoGeneSymbol":"LOC105371314","entrezGeneId":105371314},{"hugoGeneSymbol":"LOC105371316","entrezGeneId":105371316},{"hugoGeneSymbol":"LOC105371317","entrezGeneId":105371317},{"hugoGeneSymbol":"LOC105371318","entrezGeneId":105371318},{"hugoGeneSymbol":"LOC105371321","entrezGeneId":105371321},{"hugoGeneSymbol":"LOC105371325","entrezGeneId":105371325},{"hugoGeneSymbol":"LOC105371328","entrezGeneId":105371328},{"hugoGeneSymbol":"LOC105371332","entrezGeneId":105371332},{"hugoGeneSymbol":"LOC105371334","entrezGeneId":105371334},{"hugoGeneSymbol":"LOC105371335","entrezGeneId":105371335},{"hugoGeneSymbol":"LOC105371337","entrezGeneId":105371337},{"hugoGeneSymbol":"LOC105371341","entrezGeneId":105371341},{"hugoGeneSymbol":"LOC105371342","entrezGeneId":105371342},{"hugoGeneSymbol":"LOC105371343","entrezGeneId":105371343},{"hugoGeneSymbol":"LOC105371344","entrezGeneId":105371344},{"hugoGeneSymbol":"LOC105371345","entrezGeneId":105371345},{"hugoGeneSymbol":"LOC105371347","entrezGeneId":105371347},{"hugoGeneSymbol":"LOC105371348","entrezGeneId":105371348},{"hugoGeneSymbol":"LOC105371349","entrezGeneId":105371349},{"hugoGeneSymbol":"LOC105371351","entrezGeneId":105371351},{"hugoGeneSymbol":"LOC105371352","entrezGeneId":105371352},{"hugoGeneSymbol":"LOC105371354","entrezGeneId":105371354},{"hugoGeneSymbol":"LOC105371356","entrezGeneId":105371356},{"hugoGeneSymbol":"LOC105371357","entrezGeneId":105371357},{"hugoGeneSymbol":"LOC105371358","entrezGeneId":105371358},{"hugoGeneSymbol":"LOC105371360","entrezGeneId":105371360},{"hugoGeneSymbol":"LOC105371361","entrezGeneId":105371361},{"hugoGeneSymbol":"LOC105371362","entrezGeneId":105371362},{"hugoGeneSymbol":"LOC105371363","entrezGeneId":105371363},{"hugoGeneSymbol":"LOC105371366","entrezGeneId":105371366},{"hugoGeneSymbol":"LOC105371368","entrezGeneId":105371368},{"hugoGeneSymbol":"LOC105371370","entrezGeneId":105371370},{"hugoGeneSymbol":"LOC105371371","entrezGeneId":105371371},{"hugoGeneSymbol":"LOC105371372","entrezGeneId":105371372},{"hugoGeneSymbol":"LOC105371376","entrezGeneId":105371376},{"hugoGeneSymbol":"LOC105371378","entrezGeneId":105371378},{"hugoGeneSymbol":"LOC105371380","entrezGeneId":105371380},{"hugoGeneSymbol":"LOC105371381","entrezGeneId":105371381},{"hugoGeneSymbol":"LOC105371382","entrezGeneId":105371382},{"hugoGeneSymbol":"LOC105371388","entrezGeneId":105371388},{"hugoGeneSymbol":"LOC105371389","entrezGeneId":105371389},{"hugoGeneSymbol":"LOC105371392","entrezGeneId":105371392},{"hugoGeneSymbol":"LOC105371393","entrezGeneId":105371393},{"hugoGeneSymbol":"LOC105371394","entrezGeneId":105371394},{"hugoGeneSymbol":"LOC105371399","entrezGeneId":105371399},{"hugoGeneSymbol":"LOC105371401","entrezGeneId":105371401},{"hugoGeneSymbol":"LOC105371403","entrezGeneId":105371403},{"hugoGeneSymbol":"LOC105371406","entrezGeneId":105371406},{"hugoGeneSymbol":"LOC105371409","entrezGeneId":105371409},{"hugoGeneSymbol":"LOC105371411","entrezGeneId":105371411},{"hugoGeneSymbol":"LOC105371412","entrezGeneId":105371412},{"hugoGeneSymbol":"LOC105371413","entrezGeneId":105371413},{"hugoGeneSymbol":"LOC105371414","entrezGeneId":105371414},{"hugoGeneSymbol":"LOC105371419","entrezGeneId":105371419},{"hugoGeneSymbol":"LOC105371425","entrezGeneId":105371425},{"hugoGeneSymbol":"LOC105371427","entrezGeneId":105371427},{"hugoGeneSymbol":"LOC105371430","entrezGeneId":105371430},{"hugoGeneSymbol":"LOC105371433","entrezGeneId":105371433},{"hugoGeneSymbol":"LOC105371434","entrezGeneId":105371434},{"hugoGeneSymbol":"LOC105371438","entrezGeneId":105371438},{"hugoGeneSymbol":"LOC105371441","entrezGeneId":105371441},{"hugoGeneSymbol":"LOC105371442","entrezGeneId":105371442},{"hugoGeneSymbol":"LOC105371444","entrezGeneId":105371444},{"hugoGeneSymbol":"LOC105371445","entrezGeneId":105371445},{"hugoGeneSymbol":"LOC105371446","entrezGeneId":105371446},{"hugoGeneSymbol":"LOC105371448","entrezGeneId":105371448},{"hugoGeneSymbol":"LOC105371449","entrezGeneId":105371449},{"hugoGeneSymbol":"LOC105371450","entrezGeneId":105371450},{"hugoGeneSymbol":"LOC105371452","entrezGeneId":105371452},{"hugoGeneSymbol":"LOC105371453","entrezGeneId":105371453},{"hugoGeneSymbol":"LOC105371455","entrezGeneId":105371455},{"hugoGeneSymbol":"LOC105371456","entrezGeneId":105371456},{"hugoGeneSymbol":"LOC105371457","entrezGeneId":105371457},{"hugoGeneSymbol":"LOC105371458","entrezGeneId":105371458},{"hugoGeneSymbol":"LOC105371459","entrezGeneId":105371459},{"hugoGeneSymbol":"LOC105371460","entrezGeneId":105371460},{"hugoGeneSymbol":"LOC105371461","entrezGeneId":105371461},{"hugoGeneSymbol":"LOC105371462","entrezGeneId":105371462},{"hugoGeneSymbol":"LOC105371464","entrezGeneId":105371464},{"hugoGeneSymbol":"LOC105371466","entrezGeneId":105371466},{"hugoGeneSymbol":"LOC105371467","entrezGeneId":105371467},{"hugoGeneSymbol":"LOC105371468","entrezGeneId":105371468},{"hugoGeneSymbol":"LOC105371470","entrezGeneId":105371470},{"hugoGeneSymbol":"LOC105371471","entrezGeneId":105371471},{"hugoGeneSymbol":"LOC105371472","entrezGeneId":105371472},{"hugoGeneSymbol":"LOC105371473","entrezGeneId":105371473},{"hugoGeneSymbol":"LOC105371475","entrezGeneId":105371475},{"hugoGeneSymbol":"LOC105371479","entrezGeneId":105371479},{"hugoGeneSymbol":"LOC105371480","entrezGeneId":105371480},{"hugoGeneSymbol":"LOC105371481","entrezGeneId":105371481},{"hugoGeneSymbol":"LOC105371483","entrezGeneId":105371483},{"hugoGeneSymbol":"LOC105371485","entrezGeneId":105371485},{"hugoGeneSymbol":"LOC105371486","entrezGeneId":105371486},{"hugoGeneSymbol":"LOC105371490","entrezGeneId":105371490},{"hugoGeneSymbol":"LOC105371492","entrezGeneId":105371492},{"hugoGeneSymbol":"LOC105371493","entrezGeneId":105371493},{"hugoGeneSymbol":"LOC105371497","entrezGeneId":105371497},{"hugoGeneSymbol":"LOC105371498","entrezGeneId":105371498},{"hugoGeneSymbol":"LOC105371499","entrezGeneId":105371499},{"hugoGeneSymbol":"LOC105371501","entrezGeneId":105371501},{"hugoGeneSymbol":"LOC105371502","entrezGeneId":105371502},{"hugoGeneSymbol":"LOC105371505","entrezGeneId":105371505},{"hugoGeneSymbol":"LOC105371506","entrezGeneId":105371506},{"hugoGeneSymbol":"LOC105371507","entrezGeneId":105371507},{"hugoGeneSymbol":"LOC105371508","entrezGeneId":105371508},{"hugoGeneSymbol":"LOC105371509","entrezGeneId":105371509},{"hugoGeneSymbol":"LOC105371512","entrezGeneId":105371512},{"hugoGeneSymbol":"LOC105371516","entrezGeneId":105371516},{"hugoGeneSymbol":"LOC105371517","entrezGeneId":105371517},{"hugoGeneSymbol":"LOC105371520","entrezGeneId":105371520},{"hugoGeneSymbol":"LOC105371525","entrezGeneId":105371525},{"hugoGeneSymbol":"LOC105371526","entrezGeneId":105371526},{"hugoGeneSymbol":"LOC105371529","entrezGeneId":105371529},{"hugoGeneSymbol":"LOC105371530","entrezGeneId":105371530},{"hugoGeneSymbol":"LOC105371531","entrezGeneId":105371531},{"hugoGeneSymbol":"LOC105371532","entrezGeneId":105371532},{"hugoGeneSymbol":"LOC105371536","entrezGeneId":105371536},{"hugoGeneSymbol":"LOC105371540","entrezGeneId":105371540},{"hugoGeneSymbol":"LOC105371543","entrezGeneId":105371543},{"hugoGeneSymbol":"LOC105371544","entrezGeneId":105371544},{"hugoGeneSymbol":"LOC105371545","entrezGeneId":105371545},{"hugoGeneSymbol":"LOC105371547","entrezGeneId":105371547},{"hugoGeneSymbol":"LOC105371551","entrezGeneId":105371551},{"hugoGeneSymbol":"LOC105371552","entrezGeneId":105371552},{"hugoGeneSymbol":"LOC105371553","entrezGeneId":105371553},{"hugoGeneSymbol":"LOC105371554","entrezGeneId":105371554},{"hugoGeneSymbol":"LOC105371557","entrezGeneId":105371557},{"hugoGeneSymbol":"LOC105371559","entrezGeneId":105371559},{"hugoGeneSymbol":"LOC105371560","entrezGeneId":105371560},{"hugoGeneSymbol":"LOC105371561","entrezGeneId":105371561},{"hugoGeneSymbol":"LOC105371566","entrezGeneId":105371566},{"hugoGeneSymbol":"LOC105371567","entrezGeneId":105371567},{"hugoGeneSymbol":"LOC105371569","entrezGeneId":105371569},{"hugoGeneSymbol":"LOC105371570","entrezGeneId":105371570},{"hugoGeneSymbol":"LOC105371573","entrezGeneId":105371573},{"hugoGeneSymbol":"LOC105371574","entrezGeneId":105371574},{"hugoGeneSymbol":"LOC105371578","entrezGeneId":105371578},{"hugoGeneSymbol":"LOC105371579","entrezGeneId":105371579},{"hugoGeneSymbol":"LOC105371580","entrezGeneId":105371580},{"hugoGeneSymbol":"LOC105371581","entrezGeneId":105371581},{"hugoGeneSymbol":"LOC105371583","entrezGeneId":105371583},{"hugoGeneSymbol":"LOC105371586","entrezGeneId":105371586},{"hugoGeneSymbol":"LOC105371589","entrezGeneId":105371589},{"hugoGeneSymbol":"LOC105371592","entrezGeneId":105371592},{"hugoGeneSymbol":"LOC105371597","entrezGeneId":105371597},{"hugoGeneSymbol":"LOC105371598","entrezGeneId":105371598},{"hugoGeneSymbol":"LOC105371600","entrezGeneId":105371600},{"hugoGeneSymbol":"LOC105371601","entrezGeneId":105371601},{"hugoGeneSymbol":"LOC105371604","entrezGeneId":105371604},{"hugoGeneSymbol":"LOC105371605","entrezGeneId":105371605},{"hugoGeneSymbol":"LOC105371606","entrezGeneId":105371606},{"hugoGeneSymbol":"LOC105371608","entrezGeneId":105371608},{"hugoGeneSymbol":"LOC105371610","entrezGeneId":105371610},{"hugoGeneSymbol":"LOC105371611","entrezGeneId":105371611},{"hugoGeneSymbol":"LOC105371614","entrezGeneId":105371614},{"hugoGeneSymbol":"LOC105371618","entrezGeneId":105371618},{"hugoGeneSymbol":"LOC105371619","entrezGeneId":105371619},{"hugoGeneSymbol":"LOC105371620","entrezGeneId":105371620},{"hugoGeneSymbol":"LOC105371622","entrezGeneId":105371622},{"hugoGeneSymbol":"LOC105371623","entrezGeneId":105371623},{"hugoGeneSymbol":"LOC105371625","entrezGeneId":105371625},{"hugoGeneSymbol":"LOC105371629","entrezGeneId":105371629},{"hugoGeneSymbol":"LOC105371630","entrezGeneId":105371630},{"hugoGeneSymbol":"LOC105371631","entrezGeneId":105371631},{"hugoGeneSymbol":"LOC105371632","entrezGeneId":105371632},{"hugoGeneSymbol":"LOC105371634","entrezGeneId":105371634},{"hugoGeneSymbol":"LOC105371635","entrezGeneId":105371635},{"hugoGeneSymbol":"LOC105371636","entrezGeneId":105371636},{"hugoGeneSymbol":"LOC105371637","entrezGeneId":105371637},{"hugoGeneSymbol":"LOC105371638","entrezGeneId":105371638},{"hugoGeneSymbol":"LOC105371640","entrezGeneId":105371640},{"hugoGeneSymbol":"LOC105371642","entrezGeneId":105371642},{"hugoGeneSymbol":"LOC105371646","entrezGeneId":105371646},{"hugoGeneSymbol":"LOC105371648","entrezGeneId":105371648},{"hugoGeneSymbol":"LOC105371649","entrezGeneId":105371649},{"hugoGeneSymbol":"LOC105371651","entrezGeneId":105371651},{"hugoGeneSymbol":"LOC105371654","entrezGeneId":105371654},{"hugoGeneSymbol":"LOC105371655","entrezGeneId":105371655},{"hugoGeneSymbol":"LOC105371656","entrezGeneId":105371656},{"hugoGeneSymbol":"LOC105371657","entrezGeneId":105371657},{"hugoGeneSymbol":"LOC105371658","entrezGeneId":105371658},{"hugoGeneSymbol":"LOC105371659","entrezGeneId":105371659},{"hugoGeneSymbol":"LOC105371661","entrezGeneId":105371661},{"hugoGeneSymbol":"LOC105371662","entrezGeneId":105371662},{"hugoGeneSymbol":"LOC105371664","entrezGeneId":105371664},{"hugoGeneSymbol":"LOC105371665","entrezGeneId":105371665},{"hugoGeneSymbol":"LOC105371667","entrezGeneId":105371667},{"hugoGeneSymbol":"LOC105371668","entrezGeneId":105371668},{"hugoGeneSymbol":"LOC105371670","entrezGeneId":105371670},{"hugoGeneSymbol":"LOC105371671","entrezGeneId":105371671},{"hugoGeneSymbol":"LOC105371672","entrezGeneId":105371672},{"hugoGeneSymbol":"LOC105371674","entrezGeneId":105371674},{"hugoGeneSymbol":"LOC105371675","entrezGeneId":105371675},{"hugoGeneSymbol":"LOC105371677","entrezGeneId":105371677},{"hugoGeneSymbol":"LOC105371679","entrezGeneId":105371679},{"hugoGeneSymbol":"LOC105371680","entrezGeneId":105371680},{"hugoGeneSymbol":"LOC105371682","entrezGeneId":105371682},{"hugoGeneSymbol":"LOC105371683","entrezGeneId":105371683},{"hugoGeneSymbol":"LOC105371684","entrezGeneId":105371684},{"hugoGeneSymbol":"LOC105371686","entrezGeneId":105371686},{"hugoGeneSymbol":"LOC105371687","entrezGeneId":105371687},{"hugoGeneSymbol":"LOC105371688","entrezGeneId":105371688},{"hugoGeneSymbol":"LOC105371689","entrezGeneId":105371689},{"hugoGeneSymbol":"LOC105371692","entrezGeneId":105371692},{"hugoGeneSymbol":"LOC105371693","entrezGeneId":105371693},{"hugoGeneSymbol":"LOC105371694","entrezGeneId":105371694},{"hugoGeneSymbol":"LOC105371695","entrezGeneId":105371695},{"hugoGeneSymbol":"LOC105371698","entrezGeneId":105371698},{"hugoGeneSymbol":"LOC105371701","entrezGeneId":105371701},{"hugoGeneSymbol":"LOC105371702","entrezGeneId":105371702},{"hugoGeneSymbol":"LOC105371703","entrezGeneId":105371703},{"hugoGeneSymbol":"LOC105371704","entrezGeneId":105371704},{"hugoGeneSymbol":"LOC105371705","entrezGeneId":105371705},{"hugoGeneSymbol":"LOC105371709","entrezGeneId":105371709},{"hugoGeneSymbol":"LOC105371710","entrezGeneId":105371710},{"hugoGeneSymbol":"LOC105371711","entrezGeneId":105371711},{"hugoGeneSymbol":"LOC105371712","entrezGeneId":105371712},{"hugoGeneSymbol":"LOC105371716","entrezGeneId":105371716},{"hugoGeneSymbol":"LOC105371720","entrezGeneId":105371720},{"hugoGeneSymbol":"LOC105371721","entrezGeneId":105371721},{"hugoGeneSymbol":"LOC105371722","entrezGeneId":105371722},{"hugoGeneSymbol":"LOC105371723","entrezGeneId":105371723},{"hugoGeneSymbol":"LOC105371725","entrezGeneId":105371725},{"hugoGeneSymbol":"LOC105371727","entrezGeneId":105371727},{"hugoGeneSymbol":"LOC105371729","entrezGeneId":105371729},{"hugoGeneSymbol":"LOC105371730","entrezGeneId":105371730},{"hugoGeneSymbol":"LOC105371731","entrezGeneId":105371731},{"hugoGeneSymbol":"LOC105371732","entrezGeneId":105371732},{"hugoGeneSymbol":"LOC105371734","entrezGeneId":105371734},{"hugoGeneSymbol":"LOC105371735","entrezGeneId":105371735},{"hugoGeneSymbol":"LOC105371737","entrezGeneId":105371737},{"hugoGeneSymbol":"LOC105371738","entrezGeneId":105371738},{"hugoGeneSymbol":"LOC105371739","entrezGeneId":105371739},{"hugoGeneSymbol":"LOC105371740","entrezGeneId":105371740},{"hugoGeneSymbol":"LOC105371741","entrezGeneId":105371741},{"hugoGeneSymbol":"LOC105371742","entrezGeneId":105371742},{"hugoGeneSymbol":"LOC105371744","entrezGeneId":105371744},{"hugoGeneSymbol":"LOC105371745","entrezGeneId":105371745},{"hugoGeneSymbol":"LOC105371746","entrezGeneId":105371746},{"hugoGeneSymbol":"LOC105371747","entrezGeneId":105371747},{"hugoGeneSymbol":"LOC105371749","entrezGeneId":105371749},{"hugoGeneSymbol":"LOC105371750","entrezGeneId":105371750},{"hugoGeneSymbol":"LOC105371751","entrezGeneId":105371751},{"hugoGeneSymbol":"LOC105371753","entrezGeneId":105371753},{"hugoGeneSymbol":"LOC105371754","entrezGeneId":105371754},{"hugoGeneSymbol":"LOC105371755","entrezGeneId":105371755},{"hugoGeneSymbol":"LOC105371756","entrezGeneId":105371756},{"hugoGeneSymbol":"LOC105371757","entrezGeneId":105371757},{"hugoGeneSymbol":"LOC105371760","entrezGeneId":105371760},{"hugoGeneSymbol":"LOC105371761","entrezGeneId":105371761},{"hugoGeneSymbol":"LOC105371762","entrezGeneId":105371762},{"hugoGeneSymbol":"LOC105371763","entrezGeneId":105371763},{"hugoGeneSymbol":"LOC105371764","entrezGeneId":105371764},{"hugoGeneSymbol":"LOC105371767","entrezGeneId":105371767},{"hugoGeneSymbol":"LOC105371768","entrezGeneId":105371768},{"hugoGeneSymbol":"LOC105371770","entrezGeneId":105371770},{"hugoGeneSymbol":"LOC105371771","entrezGeneId":105371771},{"hugoGeneSymbol":"LOC105371773","entrezGeneId":105371773},{"hugoGeneSymbol":"LOC105371775","entrezGeneId":105371775},{"hugoGeneSymbol":"LOC105371776","entrezGeneId":105371776},{"hugoGeneSymbol":"LOC105371777","entrezGeneId":105371777},{"hugoGeneSymbol":"LOC105371778","entrezGeneId":105371778},{"hugoGeneSymbol":"LOC105371781","entrezGeneId":105371781},{"hugoGeneSymbol":"LOC105371785","entrezGeneId":105371785},{"hugoGeneSymbol":"LOC105371786","entrezGeneId":105371786},{"hugoGeneSymbol":"LOC105371787","entrezGeneId":105371787},{"hugoGeneSymbol":"LOC105371788","entrezGeneId":105371788},{"hugoGeneSymbol":"LOC105371789","entrezGeneId":105371789},{"hugoGeneSymbol":"LOC105371790","entrezGeneId":105371790},{"hugoGeneSymbol":"LOC105371791","entrezGeneId":105371791},{"hugoGeneSymbol":"LOC105371792","entrezGeneId":105371792},{"hugoGeneSymbol":"LOC105371793","entrezGeneId":105371793},{"hugoGeneSymbol":"LOC105371795","entrezGeneId":105371795},{"hugoGeneSymbol":"LOC105371796","entrezGeneId":105371796},{"hugoGeneSymbol":"LOC105371799","entrezGeneId":105371799},{"hugoGeneSymbol":"LOC105371800","entrezGeneId":105371800},{"hugoGeneSymbol":"LOC105371801","entrezGeneId":105371801},{"hugoGeneSymbol":"LOC105371802","entrezGeneId":105371802},{"hugoGeneSymbol":"LOC105371808","entrezGeneId":105371808},{"hugoGeneSymbol":"LOC105371811","entrezGeneId":105371811},{"hugoGeneSymbol":"LOC105371812","entrezGeneId":105371812},{"hugoGeneSymbol":"LOC105371813","entrezGeneId":105371813},{"hugoGeneSymbol":"LOC105371814","entrezGeneId":105371814},{"hugoGeneSymbol":"LOC105371816","entrezGeneId":105371816},{"hugoGeneSymbol":"LOC105371817","entrezGeneId":105371817},{"hugoGeneSymbol":"LOC105371818","entrezGeneId":105371818},{"hugoGeneSymbol":"LOC105371819","entrezGeneId":105371819},{"hugoGeneSymbol":"LOC105371820","entrezGeneId":105371820},{"hugoGeneSymbol":"LOC105371822","entrezGeneId":105371822},{"hugoGeneSymbol":"LOC105371824","entrezGeneId":105371824},{"hugoGeneSymbol":"LOC105371825","entrezGeneId":105371825},{"hugoGeneSymbol":"LOC105371829","entrezGeneId":105371829},{"hugoGeneSymbol":"LOC105371833","entrezGeneId":105371833},{"hugoGeneSymbol":"LOC105371836","entrezGeneId":105371836},{"hugoGeneSymbol":"LOC105371839","entrezGeneId":105371839},{"hugoGeneSymbol":"LOC105371840","entrezGeneId":105371840},{"hugoGeneSymbol":"LOC105371841","entrezGeneId":105371841},{"hugoGeneSymbol":"LOC105371842","entrezGeneId":105371842},{"hugoGeneSymbol":"LOC105371843","entrezGeneId":105371843},{"hugoGeneSymbol":"LOC105371844","entrezGeneId":105371844},{"hugoGeneSymbol":"LOC105371845","entrezGeneId":105371845},{"hugoGeneSymbol":"LOC105371847","entrezGeneId":105371847},{"hugoGeneSymbol":"LOC105371848","entrezGeneId":105371848},{"hugoGeneSymbol":"LOC105371849","entrezGeneId":105371849},{"hugoGeneSymbol":"LOC105371850","entrezGeneId":105371850},{"hugoGeneSymbol":"LOC105371853","entrezGeneId":105371853},{"hugoGeneSymbol":"LOC105371854","entrezGeneId":105371854},{"hugoGeneSymbol":"LOC105371855","entrezGeneId":105371855},{"hugoGeneSymbol":"LOC105371856","entrezGeneId":105371856},{"hugoGeneSymbol":"LOC105371857","entrezGeneId":105371857},{"hugoGeneSymbol":"LOC105371858","entrezGeneId":105371858},{"hugoGeneSymbol":"LOC105371860","entrezGeneId":105371860},{"hugoGeneSymbol":"LOC105371864","entrezGeneId":105371864},{"hugoGeneSymbol":"LOC105371867","entrezGeneId":105371867},{"hugoGeneSymbol":"LOC105371870","entrezGeneId":105371870},{"hugoGeneSymbol":"LOC105371871","entrezGeneId":105371871},{"hugoGeneSymbol":"LOC105371873","entrezGeneId":105371873},{"hugoGeneSymbol":"LOC105371874","entrezGeneId":105371874},{"hugoGeneSymbol":"LOC105371877","entrezGeneId":105371877},{"hugoGeneSymbol":"LOC105371878","entrezGeneId":105371878},{"hugoGeneSymbol":"LOC105371879","entrezGeneId":105371879},{"hugoGeneSymbol":"LOC105371880","entrezGeneId":105371880},{"hugoGeneSymbol":"LOC105371881","entrezGeneId":105371881},{"hugoGeneSymbol":"LOC105371882","entrezGeneId":105371882},{"hugoGeneSymbol":"LOC105371884","entrezGeneId":105371884},{"hugoGeneSymbol":"LOC105371887","entrezGeneId":105371887},{"hugoGeneSymbol":"LOC105371888","entrezGeneId":105371888},{"hugoGeneSymbol":"LOC105371891","entrezGeneId":105371891},{"hugoGeneSymbol":"LOC105371893","entrezGeneId":105371893},{"hugoGeneSymbol":"LOC105371894","entrezGeneId":105371894},{"hugoGeneSymbol":"LOC105371896","entrezGeneId":105371896},{"hugoGeneSymbol":"LOC105371898","entrezGeneId":105371898},{"hugoGeneSymbol":"LOC105371899","entrezGeneId":105371899},{"hugoGeneSymbol":"LOC105371900","entrezGeneId":105371900},{"hugoGeneSymbol":"LOC105371901","entrezGeneId":105371901},{"hugoGeneSymbol":"LOC105371903","entrezGeneId":105371903},{"hugoGeneSymbol":"LOC105371907","entrezGeneId":105371907},{"hugoGeneSymbol":"LOC105371908","entrezGeneId":105371908},{"hugoGeneSymbol":"LOC105371909","entrezGeneId":105371909},{"hugoGeneSymbol":"LOC105371910","entrezGeneId":105371910},{"hugoGeneSymbol":"LOC105371912","entrezGeneId":105371912},{"hugoGeneSymbol":"LOC105371921","entrezGeneId":105371921},{"hugoGeneSymbol":"LOC105371922","entrezGeneId":105371922},{"hugoGeneSymbol":"LOC105371925","entrezGeneId":105371925},{"hugoGeneSymbol":"LOC105371926","entrezGeneId":105371926},{"hugoGeneSymbol":"LOC105371929","entrezGeneId":105371929},{"hugoGeneSymbol":"LOC105371930","entrezGeneId":105371930},{"hugoGeneSymbol":"LOC105371932","entrezGeneId":105371932},{"hugoGeneSymbol":"LOC105371933","entrezGeneId":105371933},{"hugoGeneSymbol":"LOC105371934","entrezGeneId":105371934},{"hugoGeneSymbol":"LOC105371936","entrezGeneId":105371936},{"hugoGeneSymbol":"LOC105371939","entrezGeneId":105371939},{"hugoGeneSymbol":"LOC105371941","entrezGeneId":105371941},{"hugoGeneSymbol":"LOC105371942","entrezGeneId":105371942},{"hugoGeneSymbol":"LOC105371944","entrezGeneId":105371944},{"hugoGeneSymbol":"LOC105371948","entrezGeneId":105371948},{"hugoGeneSymbol":"LOC105371950","entrezGeneId":105371950},{"hugoGeneSymbol":"LOC105371951","entrezGeneId":105371951},{"hugoGeneSymbol":"LOC105371952","entrezGeneId":105371952},{"hugoGeneSymbol":"LOC105371953","entrezGeneId":105371953},{"hugoGeneSymbol":"LOC105371954","entrezGeneId":105371954},{"hugoGeneSymbol":"LOC105371956","entrezGeneId":105371956},{"hugoGeneSymbol":"LOC105371957","entrezGeneId":105371957},{"hugoGeneSymbol":"LOC105371958","entrezGeneId":105371958},{"hugoGeneSymbol":"LOC105371959","entrezGeneId":105371959},{"hugoGeneSymbol":"LOC105371960","entrezGeneId":105371960},{"hugoGeneSymbol":"LOC105371961","entrezGeneId":105371961},{"hugoGeneSymbol":"LOC105371963","entrezGeneId":105371963},{"hugoGeneSymbol":"LOC105371965","entrezGeneId":105371965},{"hugoGeneSymbol":"LOC105371967","entrezGeneId":105371967},{"hugoGeneSymbol":"LOC105371968","entrezGeneId":105371968},{"hugoGeneSymbol":"LOC105371970","entrezGeneId":105371970},{"hugoGeneSymbol":"LOC105371972","entrezGeneId":105371972},{"hugoGeneSymbol":"LOC105371973","entrezGeneId":105371973},{"hugoGeneSymbol":"LOC105371974","entrezGeneId":105371974},{"hugoGeneSymbol":"LOC105371975","entrezGeneId":105371975},{"hugoGeneSymbol":"LOC105371976","entrezGeneId":105371976},{"hugoGeneSymbol":"LOC105371980","entrezGeneId":105371980},{"hugoGeneSymbol":"LOC105371981","entrezGeneId":105371981},{"hugoGeneSymbol":"LOC105371982","entrezGeneId":105371982},{"hugoGeneSymbol":"LOC105371983","entrezGeneId":105371983},{"hugoGeneSymbol":"LOC105371984","entrezGeneId":105371984},{"hugoGeneSymbol":"LOC105371985","entrezGeneId":105371985},{"hugoGeneSymbol":"LOC105371986","entrezGeneId":105371986},{"hugoGeneSymbol":"LOC105371987","entrezGeneId":105371987},{"hugoGeneSymbol":"LOC105371988","entrezGeneId":105371988},{"hugoGeneSymbol":"LOC105371989","entrezGeneId":105371989},{"hugoGeneSymbol":"LOC105371990","entrezGeneId":105371990},{"hugoGeneSymbol":"LOC105371992","entrezGeneId":105371992},{"hugoGeneSymbol":"LOC105371993","entrezGeneId":105371993},{"hugoGeneSymbol":"LOC105371995","entrezGeneId":105371995},{"hugoGeneSymbol":"LOC105371996","entrezGeneId":105371996},{"hugoGeneSymbol":"LOC105371998","entrezGeneId":105371998},{"hugoGeneSymbol":"LOC105372003","entrezGeneId":105372003},{"hugoGeneSymbol":"LOC105372004","entrezGeneId":105372004},{"hugoGeneSymbol":"LOC105372005","entrezGeneId":105372005},{"hugoGeneSymbol":"LOC105372006","entrezGeneId":105372006},{"hugoGeneSymbol":"LOC105372007","entrezGeneId":105372007},{"hugoGeneSymbol":"LOC105372008","entrezGeneId":105372008},{"hugoGeneSymbol":"LOC105372009","entrezGeneId":105372009},{"hugoGeneSymbol":"LOC105372010","entrezGeneId":105372010},{"hugoGeneSymbol":"LOC105372016","entrezGeneId":105372016},{"hugoGeneSymbol":"LOC105372017","entrezGeneId":105372017},{"hugoGeneSymbol":"LOC105372018","entrezGeneId":105372018},{"hugoGeneSymbol":"LOC105372019","entrezGeneId":105372019},{"hugoGeneSymbol":"LOC105372023","entrezGeneId":105372023},{"hugoGeneSymbol":"LOC105372026","entrezGeneId":105372026},{"hugoGeneSymbol":"LOC105372027","entrezGeneId":105372027},{"hugoGeneSymbol":"LOC105372028","entrezGeneId":105372028},{"hugoGeneSymbol":"LOC105372029","entrezGeneId":105372029},{"hugoGeneSymbol":"LOC105372031","entrezGeneId":105372031},{"hugoGeneSymbol":"LOC105372034","entrezGeneId":105372034},{"hugoGeneSymbol":"LOC105372035","entrezGeneId":105372035},{"hugoGeneSymbol":"LOC105372036","entrezGeneId":105372036},{"hugoGeneSymbol":"LOC105372038","entrezGeneId":105372038},{"hugoGeneSymbol":"LOC105372040","entrezGeneId":105372040},{"hugoGeneSymbol":"LOC105372041","entrezGeneId":105372041},{"hugoGeneSymbol":"LOC105372042","entrezGeneId":105372042},{"hugoGeneSymbol":"LOC105372043","entrezGeneId":105372043},{"hugoGeneSymbol":"LOC105372044","entrezGeneId":105372044},{"hugoGeneSymbol":"LOC105372045","entrezGeneId":105372045},{"hugoGeneSymbol":"LOC105372046","entrezGeneId":105372046},{"hugoGeneSymbol":"LOC105372047","entrezGeneId":105372047},{"hugoGeneSymbol":"LOC105372049","entrezGeneId":105372049},{"hugoGeneSymbol":"LOC105372055","entrezGeneId":105372055},{"hugoGeneSymbol":"LOC105372058","entrezGeneId":105372058},{"hugoGeneSymbol":"LOC105372059","entrezGeneId":105372059},{"hugoGeneSymbol":"LOC105372061","entrezGeneId":105372061},{"hugoGeneSymbol":"LOC105372063","entrezGeneId":105372063},{"hugoGeneSymbol":"LOC105372064","entrezGeneId":105372064},{"hugoGeneSymbol":"LOC105372065","entrezGeneId":105372065},{"hugoGeneSymbol":"LOC105372066","entrezGeneId":105372066},{"hugoGeneSymbol":"LOC105372068","entrezGeneId":105372068},{"hugoGeneSymbol":"LOC105372069","entrezGeneId":105372069},{"hugoGeneSymbol":"LOC105372071","entrezGeneId":105372071},{"hugoGeneSymbol":"LOC105372072","entrezGeneId":105372072},{"hugoGeneSymbol":"LOC105372073","entrezGeneId":105372073},{"hugoGeneSymbol":"LOC105372074","entrezGeneId":105372074},{"hugoGeneSymbol":"LOC105372076","entrezGeneId":105372076},{"hugoGeneSymbol":"LOC105372077","entrezGeneId":105372077},{"hugoGeneSymbol":"LOC105372081","entrezGeneId":105372081},{"hugoGeneSymbol":"LOC105372082","entrezGeneId":105372082},{"hugoGeneSymbol":"LOC105372083","entrezGeneId":105372083},{"hugoGeneSymbol":"LOC105372084","entrezGeneId":105372084},{"hugoGeneSymbol":"LOC105372085","entrezGeneId":105372085},{"hugoGeneSymbol":"LOC105372087","entrezGeneId":105372087},{"hugoGeneSymbol":"LOC105372088","entrezGeneId":105372088},{"hugoGeneSymbol":"LOC105372089","entrezGeneId":105372089},{"hugoGeneSymbol":"LOC105372091","entrezGeneId":105372091},{"hugoGeneSymbol":"LOC105372092","entrezGeneId":105372092},{"hugoGeneSymbol":"LOC105372093","entrezGeneId":105372093},{"hugoGeneSymbol":"LOC105372095","entrezGeneId":105372095},{"hugoGeneSymbol":"LOC105372096","entrezGeneId":105372096},{"hugoGeneSymbol":"LOC105372097","entrezGeneId":105372097},{"hugoGeneSymbol":"LOC105372098","entrezGeneId":105372098},{"hugoGeneSymbol":"LOC105372100","entrezGeneId":105372100},{"hugoGeneSymbol":"LOC105372101","entrezGeneId":105372101},{"hugoGeneSymbol":"LOC105372104","entrezGeneId":105372104},{"hugoGeneSymbol":"LOC105372105","entrezGeneId":105372105},{"hugoGeneSymbol":"LOC105372106","entrezGeneId":105372106},{"hugoGeneSymbol":"LOC105372107","entrezGeneId":105372107},{"hugoGeneSymbol":"LOC105372108","entrezGeneId":105372108},{"hugoGeneSymbol":"LOC105372109","entrezGeneId":105372109},{"hugoGeneSymbol":"LOC105372112","entrezGeneId":105372112},{"hugoGeneSymbol":"LOC105372114","entrezGeneId":105372114},{"hugoGeneSymbol":"LOC105372115","entrezGeneId":105372115},{"hugoGeneSymbol":"LOC105372116","entrezGeneId":105372116},{"hugoGeneSymbol":"LOC105372117","entrezGeneId":105372117},{"hugoGeneSymbol":"LOC105372118","entrezGeneId":105372118},{"hugoGeneSymbol":"LOC105372120","entrezGeneId":105372120},{"hugoGeneSymbol":"LOC105372121","entrezGeneId":105372121},{"hugoGeneSymbol":"LOC105372125","entrezGeneId":105372125},{"hugoGeneSymbol":"LOC105372126","entrezGeneId":105372126},{"hugoGeneSymbol":"LOC105372130","entrezGeneId":105372130},{"hugoGeneSymbol":"LOC105372131","entrezGeneId":105372131},{"hugoGeneSymbol":"LOC105372132","entrezGeneId":105372132},{"hugoGeneSymbol":"LOC105372133","entrezGeneId":105372133},{"hugoGeneSymbol":"LOC105372135","entrezGeneId":105372135},{"hugoGeneSymbol":"LOC105372136","entrezGeneId":105372136},{"hugoGeneSymbol":"LOC105372140","entrezGeneId":105372140},{"hugoGeneSymbol":"LOC105372141","entrezGeneId":105372141},{"hugoGeneSymbol":"LOC105372143","entrezGeneId":105372143},{"hugoGeneSymbol":"LOC105372145","entrezGeneId":105372145},{"hugoGeneSymbol":"LOC105372146","entrezGeneId":105372146},{"hugoGeneSymbol":"LOC105372151","entrezGeneId":105372151},{"hugoGeneSymbol":"LOC105372152","entrezGeneId":105372152},{"hugoGeneSymbol":"LOC105372155","entrezGeneId":105372155},{"hugoGeneSymbol":"LOC105372156","entrezGeneId":105372156},{"hugoGeneSymbol":"LOC105372157","entrezGeneId":105372157},{"hugoGeneSymbol":"LOC105372158","entrezGeneId":105372158},{"hugoGeneSymbol":"LOC105372159","entrezGeneId":105372159},{"hugoGeneSymbol":"LOC105372160","entrezGeneId":105372160},{"hugoGeneSymbol":"LOC105372161","entrezGeneId":105372161},{"hugoGeneSymbol":"LOC105372165","entrezGeneId":105372165},{"hugoGeneSymbol":"LOC105372166","entrezGeneId":105372166},{"hugoGeneSymbol":"LOC105372167","entrezGeneId":105372167},{"hugoGeneSymbol":"LOC105372168","entrezGeneId":105372168},{"hugoGeneSymbol":"LOC105372169","entrezGeneId":105372169},{"hugoGeneSymbol":"LOC105372170","entrezGeneId":105372170},{"hugoGeneSymbol":"LOC105372172","entrezGeneId":105372172},{"hugoGeneSymbol":"LOC105372173","entrezGeneId":105372173},{"hugoGeneSymbol":"LOC105372174","entrezGeneId":105372174},{"hugoGeneSymbol":"LOC105372178","entrezGeneId":105372178},{"hugoGeneSymbol":"LOC105372179","entrezGeneId":105372179},{"hugoGeneSymbol":"LOC105372180","entrezGeneId":105372180},{"hugoGeneSymbol":"LOC105372185","entrezGeneId":105372185},{"hugoGeneSymbol":"LOC105372186","entrezGeneId":105372186},{"hugoGeneSymbol":"LOC105372187","entrezGeneId":105372187},{"hugoGeneSymbol":"LOC105372188","entrezGeneId":105372188},{"hugoGeneSymbol":"LOC105372189","entrezGeneId":105372189},{"hugoGeneSymbol":"LOC105372190","entrezGeneId":105372190},{"hugoGeneSymbol":"LOC105372191","entrezGeneId":105372191},{"hugoGeneSymbol":"LOC105372194","entrezGeneId":105372194},{"hugoGeneSymbol":"LOC105372200","entrezGeneId":105372200},{"hugoGeneSymbol":"LOC105372201","entrezGeneId":105372201},{"hugoGeneSymbol":"LOC105372202","entrezGeneId":105372202},{"hugoGeneSymbol":"LOC105372203","entrezGeneId":105372203},{"hugoGeneSymbol":"LOC105372204","entrezGeneId":105372204},{"hugoGeneSymbol":"LOC105372206","entrezGeneId":105372206},{"hugoGeneSymbol":"LOC105372208","entrezGeneId":105372208},{"hugoGeneSymbol":"LOC105372209","entrezGeneId":105372209},{"hugoGeneSymbol":"LOC105372210","entrezGeneId":105372210},{"hugoGeneSymbol":"LOC105372211","entrezGeneId":105372211},{"hugoGeneSymbol":"LOC105372212","entrezGeneId":105372212},{"hugoGeneSymbol":"LOC105372213","entrezGeneId":105372213},{"hugoGeneSymbol":"LOC105372214","entrezGeneId":105372214},{"hugoGeneSymbol":"LOC105372217","entrezGeneId":105372217},{"hugoGeneSymbol":"LOC105372218","entrezGeneId":105372218},{"hugoGeneSymbol":"LOC105372219","entrezGeneId":105372219},{"hugoGeneSymbol":"LOC105372220","entrezGeneId":105372220},{"hugoGeneSymbol":"LOC105372221","entrezGeneId":105372221},{"hugoGeneSymbol":"LOC105372224","entrezGeneId":105372224},{"hugoGeneSymbol":"LOC105372225","entrezGeneId":105372225},{"hugoGeneSymbol":"LOC105372226","entrezGeneId":105372226},{"hugoGeneSymbol":"LOC105372228","entrezGeneId":105372228},{"hugoGeneSymbol":"LOC105372232","entrezGeneId":105372232},{"hugoGeneSymbol":"LOC105372233","entrezGeneId":105372233},{"hugoGeneSymbol":"LOC105372234","entrezGeneId":105372234},{"hugoGeneSymbol":"LOC105372235","entrezGeneId":105372235},{"hugoGeneSymbol":"LOC105372236","entrezGeneId":105372236},{"hugoGeneSymbol":"LOC105372238","entrezGeneId":105372238},{"hugoGeneSymbol":"LOC105372240","entrezGeneId":105372240},{"hugoGeneSymbol":"LOC105372242","entrezGeneId":105372242},{"hugoGeneSymbol":"LOC105372243","entrezGeneId":105372243},{"hugoGeneSymbol":"LOC105372244","entrezGeneId":105372244},{"hugoGeneSymbol":"LOC105372245","entrezGeneId":105372245},{"hugoGeneSymbol":"LOC105372246","entrezGeneId":105372246},{"hugoGeneSymbol":"LOC105372248","entrezGeneId":105372248},{"hugoGeneSymbol":"LOC105372249","entrezGeneId":105372249},{"hugoGeneSymbol":"LOC105372250","entrezGeneId":105372250},{"hugoGeneSymbol":"LOC105372252","entrezGeneId":105372252},{"hugoGeneSymbol":"LOC105372253","entrezGeneId":105372253},{"hugoGeneSymbol":"LOC105372255","entrezGeneId":105372255},{"hugoGeneSymbol":"LOC105372256","entrezGeneId":105372256},{"hugoGeneSymbol":"LOC105372257","entrezGeneId":105372257},{"hugoGeneSymbol":"LOC105372261","entrezGeneId":105372261},{"hugoGeneSymbol":"LOC105372262","entrezGeneId":105372262},{"hugoGeneSymbol":"LOC105372263","entrezGeneId":105372263},{"hugoGeneSymbol":"LOC105372266","entrezGeneId":105372266},{"hugoGeneSymbol":"LOC105372268","entrezGeneId":105372268},{"hugoGeneSymbol":"LOC105372269","entrezGeneId":105372269},{"hugoGeneSymbol":"LOC105372270","entrezGeneId":105372270},{"hugoGeneSymbol":"LOC105372272","entrezGeneId":105372272},{"hugoGeneSymbol":"LOC105372273","entrezGeneId":105372273},{"hugoGeneSymbol":"LOC105372275","entrezGeneId":105372275},{"hugoGeneSymbol":"LOC105372278","entrezGeneId":105372278},{"hugoGeneSymbol":"LOC105372279","entrezGeneId":105372279},{"hugoGeneSymbol":"LOC105372281","entrezGeneId":105372281},{"hugoGeneSymbol":"LOC105372282","entrezGeneId":105372282},{"hugoGeneSymbol":"LOC105372283","entrezGeneId":105372283},{"hugoGeneSymbol":"LOC105372284","entrezGeneId":105372284},{"hugoGeneSymbol":"LOC105372291","entrezGeneId":105372291},{"hugoGeneSymbol":"LOC105372295","entrezGeneId":105372295},{"hugoGeneSymbol":"LOC105372296","entrezGeneId":105372296},{"hugoGeneSymbol":"LOC105372298","entrezGeneId":105372298},{"hugoGeneSymbol":"LOC105372300","entrezGeneId":105372300},{"hugoGeneSymbol":"LOC105372308","entrezGeneId":105372308},{"hugoGeneSymbol":"LOC105372309","entrezGeneId":105372309},{"hugoGeneSymbol":"LOC105372310","entrezGeneId":105372310},{"hugoGeneSymbol":"LOC105372311","entrezGeneId":105372311},{"hugoGeneSymbol":"LOC105372314","entrezGeneId":105372314},{"hugoGeneSymbol":"LOC105372315","entrezGeneId":105372315},{"hugoGeneSymbol":"LOC105372316","entrezGeneId":105372316},{"hugoGeneSymbol":"LOC105372317","entrezGeneId":105372317},{"hugoGeneSymbol":"LOC105372318","entrezGeneId":105372318},{"hugoGeneSymbol":"LOC105372319","entrezGeneId":105372319},{"hugoGeneSymbol":"LOC105372321","entrezGeneId":105372321},{"hugoGeneSymbol":"LOC105372323","entrezGeneId":105372323},{"hugoGeneSymbol":"LOC105372324","entrezGeneId":105372324},{"hugoGeneSymbol":"LOC105372325","entrezGeneId":105372325},{"hugoGeneSymbol":"LOC105372326","entrezGeneId":105372326},{"hugoGeneSymbol":"LOC105372328","entrezGeneId":105372328},{"hugoGeneSymbol":"LOC105372330","entrezGeneId":105372330},{"hugoGeneSymbol":"LOC105372331","entrezGeneId":105372331},{"hugoGeneSymbol":"LOC105372332","entrezGeneId":105372332},{"hugoGeneSymbol":"LOC105372333","entrezGeneId":105372333},{"hugoGeneSymbol":"LOC105372334","entrezGeneId":105372334},{"hugoGeneSymbol":"LOC105372335","entrezGeneId":105372335},{"hugoGeneSymbol":"LOC105372337","entrezGeneId":105372337},{"hugoGeneSymbol":"LOC105372338","entrezGeneId":105372338},{"hugoGeneSymbol":"LOC105372339","entrezGeneId":105372339},{"hugoGeneSymbol":"LOC105372345","entrezGeneId":105372345},{"hugoGeneSymbol":"LOC105372346","entrezGeneId":105372346},{"hugoGeneSymbol":"LOC105372347","entrezGeneId":105372347},{"hugoGeneSymbol":"LOC105372348","entrezGeneId":105372348},{"hugoGeneSymbol":"LOC105372349","entrezGeneId":105372349},{"hugoGeneSymbol":"LOC105372352","entrezGeneId":105372352},{"hugoGeneSymbol":"LOC105372353","entrezGeneId":105372353},{"hugoGeneSymbol":"LOC105372354","entrezGeneId":105372354},{"hugoGeneSymbol":"LOC105372355","entrezGeneId":105372355},{"hugoGeneSymbol":"LOC105372356","entrezGeneId":105372356},{"hugoGeneSymbol":"LOC105372358","entrezGeneId":105372358},{"hugoGeneSymbol":"LOC105372360","entrezGeneId":105372360},{"hugoGeneSymbol":"LOC105372361","entrezGeneId":105372361},{"hugoGeneSymbol":"LOC105372362","entrezGeneId":105372362},{"hugoGeneSymbol":"LOC105372364","entrezGeneId":105372364},{"hugoGeneSymbol":"LOC105372368","entrezGeneId":105372368},{"hugoGeneSymbol":"LOC105372370","entrezGeneId":105372370},{"hugoGeneSymbol":"LOC105372371","entrezGeneId":105372371},{"hugoGeneSymbol":"LOC105372374","entrezGeneId":105372374},{"hugoGeneSymbol":"LOC105372377","entrezGeneId":105372377},{"hugoGeneSymbol":"LOC105372379","entrezGeneId":105372379},{"hugoGeneSymbol":"LOC105372380","entrezGeneId":105372380},{"hugoGeneSymbol":"LOC105372383","entrezGeneId":105372383},{"hugoGeneSymbol":"LOC105372385","entrezGeneId":105372385},{"hugoGeneSymbol":"LOC105372390","entrezGeneId":105372390},{"hugoGeneSymbol":"LOC105372394","entrezGeneId":105372394},{"hugoGeneSymbol":"LOC105372395","entrezGeneId":105372395},{"hugoGeneSymbol":"LOC105372396","entrezGeneId":105372396},{"hugoGeneSymbol":"LOC105372397","entrezGeneId":105372397},{"hugoGeneSymbol":"LOC105372399","entrezGeneId":105372399},{"hugoGeneSymbol":"LOC105372401","entrezGeneId":105372401},{"hugoGeneSymbol":"LOC105372404","entrezGeneId":105372404},{"hugoGeneSymbol":"LOC105372405","entrezGeneId":105372405},{"hugoGeneSymbol":"LOC105372407","entrezGeneId":105372407},{"hugoGeneSymbol":"LOC105372410","entrezGeneId":105372410},{"hugoGeneSymbol":"LOC105372411","entrezGeneId":105372411},{"hugoGeneSymbol":"LOC105372412","entrezGeneId":105372412},{"hugoGeneSymbol":"LOC105372414","entrezGeneId":105372414},{"hugoGeneSymbol":"LOC105372420","entrezGeneId":105372420},{"hugoGeneSymbol":"LOC105372421","entrezGeneId":105372421},{"hugoGeneSymbol":"LOC105372424","entrezGeneId":105372424},{"hugoGeneSymbol":"LOC105372426","entrezGeneId":105372426},{"hugoGeneSymbol":"LOC105372427","entrezGeneId":105372427},{"hugoGeneSymbol":"LOC105372429","entrezGeneId":105372429},{"hugoGeneSymbol":"LOC105372430","entrezGeneId":105372430},{"hugoGeneSymbol":"LOC105372431","entrezGeneId":105372431},{"hugoGeneSymbol":"LOC105372432","entrezGeneId":105372432},{"hugoGeneSymbol":"LOC105372434","entrezGeneId":105372434},{"hugoGeneSymbol":"LOC105372435","entrezGeneId":105372435},{"hugoGeneSymbol":"LOC105372436","entrezGeneId":105372436},{"hugoGeneSymbol":"LOC105372437","entrezGeneId":105372437},{"hugoGeneSymbol":"LOC105372439","entrezGeneId":105372439},{"hugoGeneSymbol":"LOC105372440","entrezGeneId":105372440},{"hugoGeneSymbol":"LOC105372441","entrezGeneId":105372441},{"hugoGeneSymbol":"LOC105372442","entrezGeneId":105372442},{"hugoGeneSymbol":"LOC105372446","entrezGeneId":105372446},{"hugoGeneSymbol":"LOC105372448","entrezGeneId":105372448},{"hugoGeneSymbol":"LOC105372449","entrezGeneId":105372449},{"hugoGeneSymbol":"LOC105372451","entrezGeneId":105372451},{"hugoGeneSymbol":"LOC105372452","entrezGeneId":105372452},{"hugoGeneSymbol":"LOC105372453","entrezGeneId":105372453},{"hugoGeneSymbol":"LOC105372454","entrezGeneId":105372454},{"hugoGeneSymbol":"LOC105372457","entrezGeneId":105372457},{"hugoGeneSymbol":"LOC105372460","entrezGeneId":105372460},{"hugoGeneSymbol":"LOC105372461","entrezGeneId":105372461},{"hugoGeneSymbol":"LOC105372462","entrezGeneId":105372462},{"hugoGeneSymbol":"LOC105372465","entrezGeneId":105372465},{"hugoGeneSymbol":"LOC105372468","entrezGeneId":105372468},{"hugoGeneSymbol":"LOC105372470","entrezGeneId":105372470},{"hugoGeneSymbol":"LOC105372471","entrezGeneId":105372471},{"hugoGeneSymbol":"LOC105372472","entrezGeneId":105372472},{"hugoGeneSymbol":"LOC105372473","entrezGeneId":105372473},{"hugoGeneSymbol":"LOC105372475","entrezGeneId":105372475},{"hugoGeneSymbol":"LOC105372478","entrezGeneId":105372478},{"hugoGeneSymbol":"LOC105372479","entrezGeneId":105372479},{"hugoGeneSymbol":"LOC105372480","entrezGeneId":105372480},{"hugoGeneSymbol":"LOC105372482","entrezGeneId":105372482},{"hugoGeneSymbol":"LOC105372483","entrezGeneId":105372483},{"hugoGeneSymbol":"LOC105372484","entrezGeneId":105372484},{"hugoGeneSymbol":"LOC105372485","entrezGeneId":105372485},{"hugoGeneSymbol":"LOC105372486","entrezGeneId":105372486},{"hugoGeneSymbol":"LOC105372489","entrezGeneId":105372489},{"hugoGeneSymbol":"LOC105372491","entrezGeneId":105372491},{"hugoGeneSymbol":"LOC105372492","entrezGeneId":105372492},{"hugoGeneSymbol":"LOC105372493","entrezGeneId":105372493},{"hugoGeneSymbol":"LOC105372494","entrezGeneId":105372494},{"hugoGeneSymbol":"LOC105372496","entrezGeneId":105372496},{"hugoGeneSymbol":"LOC105372497","entrezGeneId":105372497},{"hugoGeneSymbol":"LOC105372498","entrezGeneId":105372498},{"hugoGeneSymbol":"LOC105372499","entrezGeneId":105372499},{"hugoGeneSymbol":"LOC105372501","entrezGeneId":105372501},{"hugoGeneSymbol":"LOC105372502","entrezGeneId":105372502},{"hugoGeneSymbol":"LOC105372503","entrezGeneId":105372503},{"hugoGeneSymbol":"LOC105372504","entrezGeneId":105372504},{"hugoGeneSymbol":"LOC105372505","entrezGeneId":105372505},{"hugoGeneSymbol":"LOC105372506","entrezGeneId":105372506},{"hugoGeneSymbol":"LOC105372507","entrezGeneId":105372507},{"hugoGeneSymbol":"LOC105372508","entrezGeneId":105372508},{"hugoGeneSymbol":"LOC105372509","entrezGeneId":105372509},{"hugoGeneSymbol":"LOC105372510","entrezGeneId":105372510},{"hugoGeneSymbol":"LOC105372511","entrezGeneId":105372511},{"hugoGeneSymbol":"LOC105372513","entrezGeneId":105372513},{"hugoGeneSymbol":"LOC105372514","entrezGeneId":105372514},{"hugoGeneSymbol":"LOC105372517","entrezGeneId":105372517},{"hugoGeneSymbol":"LOC105372518","entrezGeneId":105372518},{"hugoGeneSymbol":"LOC105372520","entrezGeneId":105372520},{"hugoGeneSymbol":"LOC105372521","entrezGeneId":105372521},{"hugoGeneSymbol":"LOC105372522","entrezGeneId":105372522},{"hugoGeneSymbol":"LOC105372523","entrezGeneId":105372523},{"hugoGeneSymbol":"LOC105372524","entrezGeneId":105372524},{"hugoGeneSymbol":"LOC105372525","entrezGeneId":105372525},{"hugoGeneSymbol":"LOC105372527","entrezGeneId":105372527},{"hugoGeneSymbol":"LOC105372528","entrezGeneId":105372528},{"hugoGeneSymbol":"LOC105372529","entrezGeneId":105372529},{"hugoGeneSymbol":"LOC105372530","entrezGeneId":105372530},{"hugoGeneSymbol":"LOC105372531","entrezGeneId":105372531},{"hugoGeneSymbol":"LOC105372532","entrezGeneId":105372532},{"hugoGeneSymbol":"LOC105372535","entrezGeneId":105372535},{"hugoGeneSymbol":"LOC105372539","entrezGeneId":105372539},{"hugoGeneSymbol":"LOC105372541","entrezGeneId":105372541},{"hugoGeneSymbol":"LOC105372542","entrezGeneId":105372542},{"hugoGeneSymbol":"LOC105372544","entrezGeneId":105372544},{"hugoGeneSymbol":"LOC105372545","entrezGeneId":105372545},{"hugoGeneSymbol":"LOC105372546","entrezGeneId":105372546},{"hugoGeneSymbol":"LOC105372547","entrezGeneId":105372547},{"hugoGeneSymbol":"LOC105372548","entrezGeneId":105372548},{"hugoGeneSymbol":"LOC105372549","entrezGeneId":105372549},{"hugoGeneSymbol":"LOC105372550","entrezGeneId":105372550},{"hugoGeneSymbol":"LOC105372551","entrezGeneId":105372551},{"hugoGeneSymbol":"LOC105372553","entrezGeneId":105372553},{"hugoGeneSymbol":"LOC105372554","entrezGeneId":105372554},{"hugoGeneSymbol":"LOC105372555","entrezGeneId":105372555},{"hugoGeneSymbol":"LOC105372558","entrezGeneId":105372558},{"hugoGeneSymbol":"LOC105372560","entrezGeneId":105372560},{"hugoGeneSymbol":"LOC105372561","entrezGeneId":105372561},{"hugoGeneSymbol":"LOC105372562","entrezGeneId":105372562},{"hugoGeneSymbol":"LOC105372563","entrezGeneId":105372563},{"hugoGeneSymbol":"LOC105372564","entrezGeneId":105372564},{"hugoGeneSymbol":"LOC105372567","entrezGeneId":105372567},{"hugoGeneSymbol":"LOC105372568","entrezGeneId":105372568},{"hugoGeneSymbol":"LOC105372569","entrezGeneId":105372569},{"hugoGeneSymbol":"LOC105372571","entrezGeneId":105372571},{"hugoGeneSymbol":"LOC105372572","entrezGeneId":105372572},{"hugoGeneSymbol":"LOC105372573","entrezGeneId":105372573},{"hugoGeneSymbol":"LOC105372574","entrezGeneId":105372574},{"hugoGeneSymbol":"LOC105372575","entrezGeneId":105372575},{"hugoGeneSymbol":"LOC105372576","entrezGeneId":105372576},{"hugoGeneSymbol":"LOC105372577","entrezGeneId":105372577},{"hugoGeneSymbol":"LOC105372578","entrezGeneId":105372578},{"hugoGeneSymbol":"LOC105372579","entrezGeneId":105372579},{"hugoGeneSymbol":"LOC105372580","entrezGeneId":105372580},{"hugoGeneSymbol":"LOC105372581","entrezGeneId":105372581},{"hugoGeneSymbol":"LOC105372582","entrezGeneId":105372582},{"hugoGeneSymbol":"LOC105372585","entrezGeneId":105372585},{"hugoGeneSymbol":"LOC105372586","entrezGeneId":105372586},{"hugoGeneSymbol":"LOC105372587","entrezGeneId":105372587},{"hugoGeneSymbol":"LOC105372588","entrezGeneId":105372588},{"hugoGeneSymbol":"LOC105372589","entrezGeneId":105372589},{"hugoGeneSymbol":"LOC105372592","entrezGeneId":105372592},{"hugoGeneSymbol":"LOC105372593","entrezGeneId":105372593},{"hugoGeneSymbol":"LOC105372594","entrezGeneId":105372594},{"hugoGeneSymbol":"LOC105372599","entrezGeneId":105372599},{"hugoGeneSymbol":"LOC105372602","entrezGeneId":105372602},{"hugoGeneSymbol":"LOC105372606","entrezGeneId":105372606},{"hugoGeneSymbol":"LOC105372609","entrezGeneId":105372609},{"hugoGeneSymbol":"LOC105372613","entrezGeneId":105372613},{"hugoGeneSymbol":"LOC105372614","entrezGeneId":105372614},{"hugoGeneSymbol":"LOC105372616","entrezGeneId":105372616},{"hugoGeneSymbol":"LOC105372617","entrezGeneId":105372617},{"hugoGeneSymbol":"LOC105372618","entrezGeneId":105372618},{"hugoGeneSymbol":"LOC105372620","entrezGeneId":105372620},{"hugoGeneSymbol":"LOC105372621","entrezGeneId":105372621},{"hugoGeneSymbol":"LOC105372622","entrezGeneId":105372622},{"hugoGeneSymbol":"LOC105372623","entrezGeneId":105372623},{"hugoGeneSymbol":"LOC105372624","entrezGeneId":105372624},{"hugoGeneSymbol":"LOC105372625","entrezGeneId":105372625},{"hugoGeneSymbol":"LOC105372629","entrezGeneId":105372629},{"hugoGeneSymbol":"LOC105372630","entrezGeneId":105372630},{"hugoGeneSymbol":"LOC105372631","entrezGeneId":105372631},{"hugoGeneSymbol":"LOC105372632","entrezGeneId":105372632},{"hugoGeneSymbol":"LOC105372633","entrezGeneId":105372633},{"hugoGeneSymbol":"LOC105372636","entrezGeneId":105372636},{"hugoGeneSymbol":"LOC105372637","entrezGeneId":105372637},{"hugoGeneSymbol":"LOC105372639","entrezGeneId":105372639},{"hugoGeneSymbol":"LOC105372640","entrezGeneId":105372640},{"hugoGeneSymbol":"LOC105372641","entrezGeneId":105372641},{"hugoGeneSymbol":"LOC105372643","entrezGeneId":105372643},{"hugoGeneSymbol":"LOC105372644","entrezGeneId":105372644},{"hugoGeneSymbol":"LOC105372645","entrezGeneId":105372645},{"hugoGeneSymbol":"LOC105372646","entrezGeneId":105372646},{"hugoGeneSymbol":"LOC105372647","entrezGeneId":105372647},{"hugoGeneSymbol":"LOC105372648","entrezGeneId":105372648},{"hugoGeneSymbol":"LOC105372649","entrezGeneId":105372649},{"hugoGeneSymbol":"LOC105372651","entrezGeneId":105372651},{"hugoGeneSymbol":"LOC105372652","entrezGeneId":105372652},{"hugoGeneSymbol":"LOC105372653","entrezGeneId":105372653},{"hugoGeneSymbol":"LOC105372654","entrezGeneId":105372654},{"hugoGeneSymbol":"LOC105372655","entrezGeneId":105372655},{"hugoGeneSymbol":"LOC105372656","entrezGeneId":105372656},{"hugoGeneSymbol":"LOC105372657","entrezGeneId":105372657},{"hugoGeneSymbol":"LOC105372659","entrezGeneId":105372659},{"hugoGeneSymbol":"LOC105372661","entrezGeneId":105372661},{"hugoGeneSymbol":"LOC105372662","entrezGeneId":105372662},{"hugoGeneSymbol":"LOC105372663","entrezGeneId":105372663},{"hugoGeneSymbol":"LOC105372664","entrezGeneId":105372664},{"hugoGeneSymbol":"LOC105372665","entrezGeneId":105372665},{"hugoGeneSymbol":"LOC105372666","entrezGeneId":105372666},{"hugoGeneSymbol":"LOC105372667","entrezGeneId":105372667},{"hugoGeneSymbol":"LOC105372668","entrezGeneId":105372668},{"hugoGeneSymbol":"LOC105372669","entrezGeneId":105372669},{"hugoGeneSymbol":"LOC105372670","entrezGeneId":105372670},{"hugoGeneSymbol":"LOC105372671","entrezGeneId":105372671},{"hugoGeneSymbol":"LOC105372672","entrezGeneId":105372672},{"hugoGeneSymbol":"LOC105372675","entrezGeneId":105372675},{"hugoGeneSymbol":"LOC105372676","entrezGeneId":105372676},{"hugoGeneSymbol":"LOC105372677","entrezGeneId":105372677},{"hugoGeneSymbol":"LOC105372678","entrezGeneId":105372678},{"hugoGeneSymbol":"LOC105372679","entrezGeneId":105372679},{"hugoGeneSymbol":"LOC105372680","entrezGeneId":105372680},{"hugoGeneSymbol":"LOC105372681","entrezGeneId":105372681},{"hugoGeneSymbol":"LOC105372683","entrezGeneId":105372683},{"hugoGeneSymbol":"LOC105372685","entrezGeneId":105372685},{"hugoGeneSymbol":"LOC105372686","entrezGeneId":105372686},{"hugoGeneSymbol":"LOC105372687","entrezGeneId":105372687},{"hugoGeneSymbol":"LOC105372688","entrezGeneId":105372688},{"hugoGeneSymbol":"LOC105372690","entrezGeneId":105372690},{"hugoGeneSymbol":"LOC105372692","entrezGeneId":105372692},{"hugoGeneSymbol":"LOC105372693","entrezGeneId":105372693},{"hugoGeneSymbol":"LOC105372694","entrezGeneId":105372694},{"hugoGeneSymbol":"LOC105372695","entrezGeneId":105372695},{"hugoGeneSymbol":"LOC105372696","entrezGeneId":105372696},{"hugoGeneSymbol":"LOC105372697","entrezGeneId":105372697},{"hugoGeneSymbol":"LOC105372698","entrezGeneId":105372698},{"hugoGeneSymbol":"LOC105372699","entrezGeneId":105372699},{"hugoGeneSymbol":"LOC105372700","entrezGeneId":105372700},{"hugoGeneSymbol":"LOC105372701","entrezGeneId":105372701},{"hugoGeneSymbol":"LOC105372703","entrezGeneId":105372703},{"hugoGeneSymbol":"LOC105372704","entrezGeneId":105372704},{"hugoGeneSymbol":"LOC105372705","entrezGeneId":105372705},{"hugoGeneSymbol":"LOC105372706","entrezGeneId":105372706},{"hugoGeneSymbol":"LOC105372707","entrezGeneId":105372707},{"hugoGeneSymbol":"LOC105372708","entrezGeneId":105372708},{"hugoGeneSymbol":"LOC105372709","entrezGeneId":105372709},{"hugoGeneSymbol":"LOC105372710","entrezGeneId":105372710},{"hugoGeneSymbol":"LOC105372711","entrezGeneId":105372711},{"hugoGeneSymbol":"LOC105372714","entrezGeneId":105372714},{"hugoGeneSymbol":"LOC105372716","entrezGeneId":105372716},{"hugoGeneSymbol":"LOC105372717","entrezGeneId":105372717},{"hugoGeneSymbol":"LOC105372718","entrezGeneId":105372718},{"hugoGeneSymbol":"LOC105372719","entrezGeneId":105372719},{"hugoGeneSymbol":"LOC105372720","entrezGeneId":105372720},{"hugoGeneSymbol":"LOC105372721","entrezGeneId":105372721},{"hugoGeneSymbol":"LOC105372724","entrezGeneId":105372724},{"hugoGeneSymbol":"LOC105372725","entrezGeneId":105372725},{"hugoGeneSymbol":"LOC105372726","entrezGeneId":105372726},{"hugoGeneSymbol":"LOC105372727","entrezGeneId":105372727},{"hugoGeneSymbol":"LOC105372731","entrezGeneId":105372731},{"hugoGeneSymbol":"LOC105372733","entrezGeneId":105372733},{"hugoGeneSymbol":"LOC105372734","entrezGeneId":105372734},{"hugoGeneSymbol":"LOC105372738","entrezGeneId":105372738},{"hugoGeneSymbol":"LOC105372740","entrezGeneId":105372740},{"hugoGeneSymbol":"LOC105372741","entrezGeneId":105372741},{"hugoGeneSymbol":"LOC105372745","entrezGeneId":105372745},{"hugoGeneSymbol":"LOC105372747","entrezGeneId":105372747},{"hugoGeneSymbol":"LOC105372749","entrezGeneId":105372749},{"hugoGeneSymbol":"LOC105372750","entrezGeneId":105372750},{"hugoGeneSymbol":"LOC105372753","entrezGeneId":105372753},{"hugoGeneSymbol":"LOC105372756","entrezGeneId":105372756},{"hugoGeneSymbol":"LOC105372757","entrezGeneId":105372757},{"hugoGeneSymbol":"LOC105372758","entrezGeneId":105372758},{"hugoGeneSymbol":"LOC105372759","entrezGeneId":105372759},{"hugoGeneSymbol":"LOC105372760","entrezGeneId":105372760},{"hugoGeneSymbol":"LOC105372762","entrezGeneId":105372762},{"hugoGeneSymbol":"LOC105372764","entrezGeneId":105372764},{"hugoGeneSymbol":"LOC105372766","entrezGeneId":105372766},{"hugoGeneSymbol":"LOC105372767","entrezGeneId":105372767},{"hugoGeneSymbol":"LOC105372768","entrezGeneId":105372768},{"hugoGeneSymbol":"LOC105372770","entrezGeneId":105372770},{"hugoGeneSymbol":"LOC105372772","entrezGeneId":105372772},{"hugoGeneSymbol":"LOC105372773","entrezGeneId":105372773},{"hugoGeneSymbol":"LOC105372774","entrezGeneId":105372774},{"hugoGeneSymbol":"LOC105372775","entrezGeneId":105372775},{"hugoGeneSymbol":"LOC105372776","entrezGeneId":105372776},{"hugoGeneSymbol":"LOC105372777","entrezGeneId":105372777},{"hugoGeneSymbol":"LOC105372779","entrezGeneId":105372779},{"hugoGeneSymbol":"LOC105372782","entrezGeneId":105372782},{"hugoGeneSymbol":"LOC105372785","entrezGeneId":105372785},{"hugoGeneSymbol":"LOC105372787","entrezGeneId":105372787},{"hugoGeneSymbol":"LOC105372789","entrezGeneId":105372789},{"hugoGeneSymbol":"LOC105372790","entrezGeneId":105372790},{"hugoGeneSymbol":"LOC105372791","entrezGeneId":105372791},{"hugoGeneSymbol":"LOC105372793","entrezGeneId":105372793},{"hugoGeneSymbol":"LOC105372795","entrezGeneId":105372795},{"hugoGeneSymbol":"LOC105372797","entrezGeneId":105372797},{"hugoGeneSymbol":"LOC105372798","entrezGeneId":105372798},{"hugoGeneSymbol":"LOC105372801","entrezGeneId":105372801},{"hugoGeneSymbol":"LOC105372802","entrezGeneId":105372802},{"hugoGeneSymbol":"LOC105372803","entrezGeneId":105372803},{"hugoGeneSymbol":"LOC105372804","entrezGeneId":105372804},{"hugoGeneSymbol":"LOC105372808","entrezGeneId":105372808},{"hugoGeneSymbol":"LOC105372809","entrezGeneId":105372809},{"hugoGeneSymbol":"LOC105372812","entrezGeneId":105372812},{"hugoGeneSymbol":"LOC105372813","entrezGeneId":105372813},{"hugoGeneSymbol":"LOC105372814","entrezGeneId":105372814},{"hugoGeneSymbol":"LOC105372815","entrezGeneId":105372815},{"hugoGeneSymbol":"LOC105372816","entrezGeneId":105372816},{"hugoGeneSymbol":"LOC105372817","entrezGeneId":105372817},{"hugoGeneSymbol":"LOC105372821","entrezGeneId":105372821},{"hugoGeneSymbol":"LOC105372824","entrezGeneId":105372824},{"hugoGeneSymbol":"LOC105372825","entrezGeneId":105372825},{"hugoGeneSymbol":"LOC105372826","entrezGeneId":105372826},{"hugoGeneSymbol":"LOC105372829","entrezGeneId":105372829},{"hugoGeneSymbol":"LOC105372832","entrezGeneId":105372832},{"hugoGeneSymbol":"LOC105372833","entrezGeneId":105372833},{"hugoGeneSymbol":"LOC105372835","entrezGeneId":105372835},{"hugoGeneSymbol":"LOC105372836","entrezGeneId":105372836},{"hugoGeneSymbol":"LOC105372838","entrezGeneId":105372838},{"hugoGeneSymbol":"LOC105372839","entrezGeneId":105372839},{"hugoGeneSymbol":"LOC105372841","entrezGeneId":105372841},{"hugoGeneSymbol":"LOC105372842","entrezGeneId":105372842},{"hugoGeneSymbol":"LOC105372850","entrezGeneId":105372850},{"hugoGeneSymbol":"LOC105372853","entrezGeneId":105372853},{"hugoGeneSymbol":"LOC105372857","entrezGeneId":105372857},{"hugoGeneSymbol":"LOC105372858","entrezGeneId":105372858},{"hugoGeneSymbol":"LOC105372859","entrezGeneId":105372859},{"hugoGeneSymbol":"LOC105372860","entrezGeneId":105372860},{"hugoGeneSymbol":"LOC105372861","entrezGeneId":105372861},{"hugoGeneSymbol":"LOC105372862","entrezGeneId":105372862},{"hugoGeneSymbol":"LOC105372863","entrezGeneId":105372863},{"hugoGeneSymbol":"LOC105372864","entrezGeneId":105372864},{"hugoGeneSymbol":"LOC105372866","entrezGeneId":105372866},{"hugoGeneSymbol":"LOC105372869","entrezGeneId":105372869},{"hugoGeneSymbol":"LOC105372871","entrezGeneId":105372871},{"hugoGeneSymbol":"LOC105372873","entrezGeneId":105372873},{"hugoGeneSymbol":"LOC105372876","entrezGeneId":105372876},{"hugoGeneSymbol":"LOC105372877","entrezGeneId":105372877},{"hugoGeneSymbol":"LOC105372878","entrezGeneId":105372878},{"hugoGeneSymbol":"LOC105372879","entrezGeneId":105372879},{"hugoGeneSymbol":"LOC105372880","entrezGeneId":105372880},{"hugoGeneSymbol":"LOC105372881","entrezGeneId":105372881},{"hugoGeneSymbol":"LOC105372883","entrezGeneId":105372883},{"hugoGeneSymbol":"LOC105372884","entrezGeneId":105372884},{"hugoGeneSymbol":"LOC105372887","entrezGeneId":105372887},{"hugoGeneSymbol":"LOC105372888","entrezGeneId":105372888},{"hugoGeneSymbol":"LOC105372889","entrezGeneId":105372889},{"hugoGeneSymbol":"LOC105372891","entrezGeneId":105372891},{"hugoGeneSymbol":"LOC105372892","entrezGeneId":105372892},{"hugoGeneSymbol":"LOC105372895","entrezGeneId":105372895},{"hugoGeneSymbol":"LOC105372896","entrezGeneId":105372896},{"hugoGeneSymbol":"LOC105372898","entrezGeneId":105372898},{"hugoGeneSymbol":"LOC105372899","entrezGeneId":105372899},{"hugoGeneSymbol":"LOC105372901","entrezGeneId":105372901},{"hugoGeneSymbol":"LOC105372902","entrezGeneId":105372902},{"hugoGeneSymbol":"LOC105372903","entrezGeneId":105372903},{"hugoGeneSymbol":"LOC105372904","entrezGeneId":105372904},{"hugoGeneSymbol":"LOC105372906","entrezGeneId":105372906},{"hugoGeneSymbol":"LOC105372907","entrezGeneId":105372907},{"hugoGeneSymbol":"LOC105372908","entrezGeneId":105372908},{"hugoGeneSymbol":"LOC105372911","entrezGeneId":105372911},{"hugoGeneSymbol":"LOC105372912","entrezGeneId":105372912},{"hugoGeneSymbol":"LOC105372915","entrezGeneId":105372915},{"hugoGeneSymbol":"LOC105372916","entrezGeneId":105372916},{"hugoGeneSymbol":"LOC105372918","entrezGeneId":105372918},{"hugoGeneSymbol":"LOC105372919","entrezGeneId":105372919},{"hugoGeneSymbol":"LOC105372920","entrezGeneId":105372920},{"hugoGeneSymbol":"LOC105372922","entrezGeneId":105372922},{"hugoGeneSymbol":"LOC105372923","entrezGeneId":105372923},{"hugoGeneSymbol":"LOC105372924","entrezGeneId":105372924},{"hugoGeneSymbol":"LOC105372926","entrezGeneId":105372926},{"hugoGeneSymbol":"LOC105372928","entrezGeneId":105372928},{"hugoGeneSymbol":"LOC105372929","entrezGeneId":105372929},{"hugoGeneSymbol":"LOC105372930","entrezGeneId":105372930},{"hugoGeneSymbol":"LOC105372932","entrezGeneId":105372932},{"hugoGeneSymbol":"LOC105372934","entrezGeneId":105372934},{"hugoGeneSymbol":"LOC105372935","entrezGeneId":105372935},{"hugoGeneSymbol":"LOC105372937","entrezGeneId":105372937},{"hugoGeneSymbol":"LOC105372942","entrezGeneId":105372942},{"hugoGeneSymbol":"LOC105372945","entrezGeneId":105372945},{"hugoGeneSymbol":"LOC105372947","entrezGeneId":105372947},{"hugoGeneSymbol":"LOC105372948","entrezGeneId":105372948},{"hugoGeneSymbol":"LOC105372952","entrezGeneId":105372952},{"hugoGeneSymbol":"LOC105372956","entrezGeneId":105372956},{"hugoGeneSymbol":"LOC105372957","entrezGeneId":105372957},{"hugoGeneSymbol":"LOC105372959","entrezGeneId":105372959},{"hugoGeneSymbol":"LOC105372960","entrezGeneId":105372960},{"hugoGeneSymbol":"LOC105372962","entrezGeneId":105372962},{"hugoGeneSymbol":"LOC105372963","entrezGeneId":105372963},{"hugoGeneSymbol":"LOC105372964","entrezGeneId":105372964},{"hugoGeneSymbol":"LOC105372969","entrezGeneId":105372969},{"hugoGeneSymbol":"LOC105372970","entrezGeneId":105372970},{"hugoGeneSymbol":"LOC105372971","entrezGeneId":105372971},{"hugoGeneSymbol":"LOC105372974","entrezGeneId":105372974},{"hugoGeneSymbol":"LOC105372976","entrezGeneId":105372976},{"hugoGeneSymbol":"LOC105372977","entrezGeneId":105372977},{"hugoGeneSymbol":"LOC105372979","entrezGeneId":105372979},{"hugoGeneSymbol":"LOC105372980","entrezGeneId":105372980},{"hugoGeneSymbol":"LOC105372981","entrezGeneId":105372981},{"hugoGeneSymbol":"LOC105372984","entrezGeneId":105372984},{"hugoGeneSymbol":"LOC105372985","entrezGeneId":105372985},{"hugoGeneSymbol":"LOC105372988","entrezGeneId":105372988},{"hugoGeneSymbol":"LOC105372989","entrezGeneId":105372989},{"hugoGeneSymbol":"LOC105372990","entrezGeneId":105372990},{"hugoGeneSymbol":"LOC105372991","entrezGeneId":105372991},{"hugoGeneSymbol":"LOC105372994","entrezGeneId":105372994},{"hugoGeneSymbol":"LOC105372995","entrezGeneId":105372995},{"hugoGeneSymbol":"LOC105372997","entrezGeneId":105372997},{"hugoGeneSymbol":"LOC105372998","entrezGeneId":105372998},{"hugoGeneSymbol":"LOC105373000","entrezGeneId":105373000},{"hugoGeneSymbol":"LOC105373002","entrezGeneId":105373002},{"hugoGeneSymbol":"LOC105373003","entrezGeneId":105373003},{"hugoGeneSymbol":"LOC105373007","entrezGeneId":105373007},{"hugoGeneSymbol":"LOC105373012","entrezGeneId":105373012},{"hugoGeneSymbol":"LOC105373013","entrezGeneId":105373013},{"hugoGeneSymbol":"LOC105373014","entrezGeneId":105373014},{"hugoGeneSymbol":"LOC105373015","entrezGeneId":105373015},{"hugoGeneSymbol":"LOC105373016","entrezGeneId":105373016},{"hugoGeneSymbol":"LOC105373017","entrezGeneId":105373017},{"hugoGeneSymbol":"LOC105373018","entrezGeneId":105373018},{"hugoGeneSymbol":"LOC105373019","entrezGeneId":105373019},{"hugoGeneSymbol":"LOC105373020","entrezGeneId":105373020},{"hugoGeneSymbol":"LOC105373021","entrezGeneId":105373021},{"hugoGeneSymbol":"LOC105373022","entrezGeneId":105373022},{"hugoGeneSymbol":"LOC105373023","entrezGeneId":105373023},{"hugoGeneSymbol":"LOC105373024","entrezGeneId":105373024},{"hugoGeneSymbol":"LOC105373025","entrezGeneId":105373025},{"hugoGeneSymbol":"LOC105373027","entrezGeneId":105373027},{"hugoGeneSymbol":"LOC105373029","entrezGeneId":105373029},{"hugoGeneSymbol":"LOC105373030","entrezGeneId":105373030},{"hugoGeneSymbol":"LOC105373031","entrezGeneId":105373031},{"hugoGeneSymbol":"LOC105373032","entrezGeneId":105373032},{"hugoGeneSymbol":"LOC105373033","entrezGeneId":105373033},{"hugoGeneSymbol":"LOC105373034","entrezGeneId":105373034},{"hugoGeneSymbol":"LOC105373035","entrezGeneId":105373035},{"hugoGeneSymbol":"LOC105373037","entrezGeneId":105373037},{"hugoGeneSymbol":"LOC105373038","entrezGeneId":105373038},{"hugoGeneSymbol":"LOC105373041","entrezGeneId":105373041},{"hugoGeneSymbol":"LOC105373042","entrezGeneId":105373042},{"hugoGeneSymbol":"LOC105373043","entrezGeneId":105373043},{"hugoGeneSymbol":"LOC105373044","entrezGeneId":105373044},{"hugoGeneSymbol":"LOC105373046","entrezGeneId":105373046},{"hugoGeneSymbol":"LOC105373047","entrezGeneId":105373047},{"hugoGeneSymbol":"LOC105373051","entrezGeneId":105373051},{"hugoGeneSymbol":"LOC105373053","entrezGeneId":105373053},{"hugoGeneSymbol":"LOC105373056","entrezGeneId":105373056},{"hugoGeneSymbol":"LOC105373057","entrezGeneId":105373057},{"hugoGeneSymbol":"LOC105373058","entrezGeneId":105373058},{"hugoGeneSymbol":"LOC105373059","entrezGeneId":105373059},{"hugoGeneSymbol":"LOC105373060","entrezGeneId":105373060},{"hugoGeneSymbol":"LOC105373061","entrezGeneId":105373061},{"hugoGeneSymbol":"LOC105373062","entrezGeneId":105373062},{"hugoGeneSymbol":"LOC105373063","entrezGeneId":105373063},{"hugoGeneSymbol":"LOC105373064","entrezGeneId":105373064},{"hugoGeneSymbol":"LOC105373066","entrezGeneId":105373066},{"hugoGeneSymbol":"LOC105373067","entrezGeneId":105373067},{"hugoGeneSymbol":"LOC105373068","entrezGeneId":105373068},{"hugoGeneSymbol":"LOC105373069","entrezGeneId":105373069},{"hugoGeneSymbol":"LOC105373071","entrezGeneId":105373071},{"hugoGeneSymbol":"LOC105373074","entrezGeneId":105373074},{"hugoGeneSymbol":"LOC105373075","entrezGeneId":105373075},{"hugoGeneSymbol":"LOC105373076","entrezGeneId":105373076},{"hugoGeneSymbol":"LOC105373077","entrezGeneId":105373077},{"hugoGeneSymbol":"LOC105373080","entrezGeneId":105373080},{"hugoGeneSymbol":"LOC105373081","entrezGeneId":105373081},{"hugoGeneSymbol":"LOC105373083","entrezGeneId":105373083},{"hugoGeneSymbol":"LOC105373085","entrezGeneId":105373085},{"hugoGeneSymbol":"LOC105373086","entrezGeneId":105373086},{"hugoGeneSymbol":"LOC105373087","entrezGeneId":105373087},{"hugoGeneSymbol":"LOC105373089","entrezGeneId":105373089},{"hugoGeneSymbol":"LOC105373091","entrezGeneId":105373091},{"hugoGeneSymbol":"LOC105373095","entrezGeneId":105373095},{"hugoGeneSymbol":"LOC105373096","entrezGeneId":105373096},{"hugoGeneSymbol":"LOC105373098","entrezGeneId":105373098},{"hugoGeneSymbol":"LOC105373100","entrezGeneId":105373100},{"hugoGeneSymbol":"LOC105373102","entrezGeneId":105373102},{"hugoGeneSymbol":"LOC105373105","entrezGeneId":105373105},{"hugoGeneSymbol":"LOC105373106","entrezGeneId":105373106},{"hugoGeneSymbol":"LOC105373108","entrezGeneId":105373108},{"hugoGeneSymbol":"LOC105373109","entrezGeneId":105373109},{"hugoGeneSymbol":"LOC105373110","entrezGeneId":105373110},{"hugoGeneSymbol":"LOC105373115","entrezGeneId":105373115},{"hugoGeneSymbol":"LOC105373116","entrezGeneId":105373116},{"hugoGeneSymbol":"LOC105373117","entrezGeneId":105373117},{"hugoGeneSymbol":"LOC105373119","entrezGeneId":105373119},{"hugoGeneSymbol":"LOC105373122","entrezGeneId":105373122},{"hugoGeneSymbol":"LOC105373124","entrezGeneId":105373124},{"hugoGeneSymbol":"LOC105373125","entrezGeneId":105373125},{"hugoGeneSymbol":"LOC105373126","entrezGeneId":105373126},{"hugoGeneSymbol":"LOC105373131","entrezGeneId":105373131},{"hugoGeneSymbol":"LOC105373132","entrezGeneId":105373132},{"hugoGeneSymbol":"LOC105373133","entrezGeneId":105373133},{"hugoGeneSymbol":"LOC105373134","entrezGeneId":105373134},{"hugoGeneSymbol":"LOC105373137","entrezGeneId":105373137},{"hugoGeneSymbol":"LOC105373138","entrezGeneId":105373138},{"hugoGeneSymbol":"LOC105373140","entrezGeneId":105373140},{"hugoGeneSymbol":"LOC105373142","entrezGeneId":105373142},{"hugoGeneSymbol":"LOC105373143","entrezGeneId":105373143},{"hugoGeneSymbol":"LOC105373146","entrezGeneId":105373146},{"hugoGeneSymbol":"LOC105373148","entrezGeneId":105373148},{"hugoGeneSymbol":"LOC105373150","entrezGeneId":105373150},{"hugoGeneSymbol":"LOC105373151","entrezGeneId":105373151},{"hugoGeneSymbol":"LOC105373152","entrezGeneId":105373152},{"hugoGeneSymbol":"LOC105373153","entrezGeneId":105373153},{"hugoGeneSymbol":"LOC105373154","entrezGeneId":105373154},{"hugoGeneSymbol":"LOC105373155","entrezGeneId":105373155},{"hugoGeneSymbol":"LOC105373156","entrezGeneId":105373156},{"hugoGeneSymbol":"LOC105373158","entrezGeneId":105373158},{"hugoGeneSymbol":"LOC105373159","entrezGeneId":105373159},{"hugoGeneSymbol":"LOC105373161","entrezGeneId":105373161},{"hugoGeneSymbol":"LOC105373162","entrezGeneId":105373162},{"hugoGeneSymbol":"LOC105373163","entrezGeneId":105373163},{"hugoGeneSymbol":"LOC105373164","entrezGeneId":105373164},{"hugoGeneSymbol":"LOC105373165","entrezGeneId":105373165},{"hugoGeneSymbol":"LOC105373166","entrezGeneId":105373166},{"hugoGeneSymbol":"LOC105373167","entrezGeneId":105373167},{"hugoGeneSymbol":"LOC105373170","entrezGeneId":105373170},{"hugoGeneSymbol":"LOC105373171","entrezGeneId":105373171},{"hugoGeneSymbol":"LOC105373172","entrezGeneId":105373172},{"hugoGeneSymbol":"LOC105373174","entrezGeneId":105373174},{"hugoGeneSymbol":"LOC105373175","entrezGeneId":105373175},{"hugoGeneSymbol":"LOC105373176","entrezGeneId":105373176},{"hugoGeneSymbol":"LOC105373177","entrezGeneId":105373177},{"hugoGeneSymbol":"LOC105373178","entrezGeneId":105373178},{"hugoGeneSymbol":"LOC105373180","entrezGeneId":105373180},{"hugoGeneSymbol":"LOC105373181","entrezGeneId":105373181},{"hugoGeneSymbol":"LOC105373182","entrezGeneId":105373182},{"hugoGeneSymbol":"LOC105373184","entrezGeneId":105373184},{"hugoGeneSymbol":"LOC105373185","entrezGeneId":105373185},{"hugoGeneSymbol":"LOC105373186","entrezGeneId":105373186},{"hugoGeneSymbol":"LOC105373187","entrezGeneId":105373187},{"hugoGeneSymbol":"LOC105373188","entrezGeneId":105373188},{"hugoGeneSymbol":"LOC105373190","entrezGeneId":105373190},{"hugoGeneSymbol":"LOC105373191","entrezGeneId":105373191},{"hugoGeneSymbol":"LOC105373193","entrezGeneId":105373193},{"hugoGeneSymbol":"LOC105373194","entrezGeneId":105373194},{"hugoGeneSymbol":"LOC105373195","entrezGeneId":105373195},{"hugoGeneSymbol":"LOC105373196","entrezGeneId":105373196},{"hugoGeneSymbol":"LOC105373198","entrezGeneId":105373198},{"hugoGeneSymbol":"LOC105373201","entrezGeneId":105373201},{"hugoGeneSymbol":"LOC105373202","entrezGeneId":105373202},{"hugoGeneSymbol":"LOC105373204","entrezGeneId":105373204},{"hugoGeneSymbol":"LOC105373205","entrezGeneId":105373205},{"hugoGeneSymbol":"LOC105373206","entrezGeneId":105373206},{"hugoGeneSymbol":"LOC105373207","entrezGeneId":105373207},{"hugoGeneSymbol":"LOC105373208","entrezGeneId":105373208},{"hugoGeneSymbol":"LOC105373209","entrezGeneId":105373209},{"hugoGeneSymbol":"LOC105373210","entrezGeneId":105373210},{"hugoGeneSymbol":"LOC105373211","entrezGeneId":105373211},{"hugoGeneSymbol":"LOC105373212","entrezGeneId":105373212},{"hugoGeneSymbol":"LOC105373215","entrezGeneId":105373215},{"hugoGeneSymbol":"LOC105373218","entrezGeneId":105373218},{"hugoGeneSymbol":"LOC105373220","entrezGeneId":105373220},{"hugoGeneSymbol":"LOC105373221","entrezGeneId":105373221},{"hugoGeneSymbol":"LOC105373222","entrezGeneId":105373222},{"hugoGeneSymbol":"LOC105373223","entrezGeneId":105373223},{"hugoGeneSymbol":"LOC105373224","entrezGeneId":105373224},{"hugoGeneSymbol":"LOC105373225","entrezGeneId":105373225},{"hugoGeneSymbol":"LOC105373228","entrezGeneId":105373228},{"hugoGeneSymbol":"LOC105373230","entrezGeneId":105373230},{"hugoGeneSymbol":"LOC105373231","entrezGeneId":105373231},{"hugoGeneSymbol":"LOC105373233","entrezGeneId":105373233},{"hugoGeneSymbol":"LOC105373234","entrezGeneId":105373234},{"hugoGeneSymbol":"LOC105373235","entrezGeneId":105373235},{"hugoGeneSymbol":"LOC105373239","entrezGeneId":105373239},{"hugoGeneSymbol":"LOC105373240","entrezGeneId":105373240},{"hugoGeneSymbol":"LOC105373241","entrezGeneId":105373241},{"hugoGeneSymbol":"LOC105373242","entrezGeneId":105373242},{"hugoGeneSymbol":"LOC105373244","entrezGeneId":105373244},{"hugoGeneSymbol":"LOC105373247","entrezGeneId":105373247},{"hugoGeneSymbol":"LOC105373249","entrezGeneId":105373249},{"hugoGeneSymbol":"LOC105373250","entrezGeneId":105373250},{"hugoGeneSymbol":"LOC105373252","entrezGeneId":105373252},{"hugoGeneSymbol":"LOC105373254","entrezGeneId":105373254},{"hugoGeneSymbol":"LOC105373255","entrezGeneId":105373255},{"hugoGeneSymbol":"LOC105373258","entrezGeneId":105373258},{"hugoGeneSymbol":"LOC105373260","entrezGeneId":105373260},{"hugoGeneSymbol":"LOC105373261","entrezGeneId":105373261},{"hugoGeneSymbol":"LOC105373262","entrezGeneId":105373262},{"hugoGeneSymbol":"LOC105373264","entrezGeneId":105373264},{"hugoGeneSymbol":"LOC105373265","entrezGeneId":105373265},{"hugoGeneSymbol":"LOC105373266","entrezGeneId":105373266},{"hugoGeneSymbol":"LOC105373269","entrezGeneId":105373269},{"hugoGeneSymbol":"LOC105373270","entrezGeneId":105373270},{"hugoGeneSymbol":"LOC105373271","entrezGeneId":105373271},{"hugoGeneSymbol":"LOC105373273","entrezGeneId":105373273},{"hugoGeneSymbol":"LOC105373275","entrezGeneId":105373275},{"hugoGeneSymbol":"LOC105373277","entrezGeneId":105373277},{"hugoGeneSymbol":"LOC105373278","entrezGeneId":105373278},{"hugoGeneSymbol":"LOC105373279","entrezGeneId":105373279},{"hugoGeneSymbol":"LOC105373281","entrezGeneId":105373281},{"hugoGeneSymbol":"LOC105373282","entrezGeneId":105373282},{"hugoGeneSymbol":"LOC105373283","entrezGeneId":105373283},{"hugoGeneSymbol":"LOC105373284","entrezGeneId":105373284},{"hugoGeneSymbol":"LOC105373285","entrezGeneId":105373285},{"hugoGeneSymbol":"LOC105373286","entrezGeneId":105373286},{"hugoGeneSymbol":"LOC105373287","entrezGeneId":105373287},{"hugoGeneSymbol":"LOC105373288","entrezGeneId":105373288},{"hugoGeneSymbol":"LOC105373289","entrezGeneId":105373289},{"hugoGeneSymbol":"LOC105373292","entrezGeneId":105373292},{"hugoGeneSymbol":"LOC105373293","entrezGeneId":105373293},{"hugoGeneSymbol":"LOC105373294","entrezGeneId":105373294},{"hugoGeneSymbol":"LOC105373296","entrezGeneId":105373296},{"hugoGeneSymbol":"LOC105373297","entrezGeneId":105373297},{"hugoGeneSymbol":"LOC105373298","entrezGeneId":105373298},{"hugoGeneSymbol":"LOC105373299","entrezGeneId":105373299},{"hugoGeneSymbol":"LOC105373300","entrezGeneId":105373300},{"hugoGeneSymbol":"LOC105373302","entrezGeneId":105373302},{"hugoGeneSymbol":"LOC105373303","entrezGeneId":105373303},{"hugoGeneSymbol":"LOC105373304","entrezGeneId":105373304},{"hugoGeneSymbol":"LOC105373305","entrezGeneId":105373305},{"hugoGeneSymbol":"LOC105373306","entrezGeneId":105373306},{"hugoGeneSymbol":"LOC105373310","entrezGeneId":105373310},{"hugoGeneSymbol":"LOC105373311","entrezGeneId":105373311},{"hugoGeneSymbol":"LOC105373312","entrezGeneId":105373312},{"hugoGeneSymbol":"LOC105373313","entrezGeneId":105373313},{"hugoGeneSymbol":"LOC105373314","entrezGeneId":105373314},{"hugoGeneSymbol":"LOC105373318","entrezGeneId":105373318},{"hugoGeneSymbol":"LOC105373320","entrezGeneId":105373320},{"hugoGeneSymbol":"LOC105373323","entrezGeneId":105373323},{"hugoGeneSymbol":"LOC105373324","entrezGeneId":105373324},{"hugoGeneSymbol":"LOC105373328","entrezGeneId":105373328},{"hugoGeneSymbol":"LOC105373331","entrezGeneId":105373331},{"hugoGeneSymbol":"LOC105373332","entrezGeneId":105373332},{"hugoGeneSymbol":"LOC105373333","entrezGeneId":105373333},{"hugoGeneSymbol":"LOC105373334","entrezGeneId":105373334},{"hugoGeneSymbol":"LOC105373335","entrezGeneId":105373335},{"hugoGeneSymbol":"LOC105373336","entrezGeneId":105373336},{"hugoGeneSymbol":"LOC105373338","entrezGeneId":105373338},{"hugoGeneSymbol":"LOC105373342","entrezGeneId":105373342},{"hugoGeneSymbol":"LOC105373343","entrezGeneId":105373343},{"hugoGeneSymbol":"LOC105373344","entrezGeneId":105373344},{"hugoGeneSymbol":"LOC105373345","entrezGeneId":105373345},{"hugoGeneSymbol":"LOC105373346","entrezGeneId":105373346},{"hugoGeneSymbol":"LOC105373347","entrezGeneId":105373347},{"hugoGeneSymbol":"LOC105373348","entrezGeneId":105373348},{"hugoGeneSymbol":"LOC105373349","entrezGeneId":105373349},{"hugoGeneSymbol":"LOC105373351","entrezGeneId":105373351},{"hugoGeneSymbol":"LOC105373352","entrezGeneId":105373352},{"hugoGeneSymbol":"LOC105373354","entrezGeneId":105373354},{"hugoGeneSymbol":"LOC105373358","entrezGeneId":105373358},{"hugoGeneSymbol":"LOC105373359","entrezGeneId":105373359},{"hugoGeneSymbol":"LOC105373367","entrezGeneId":105373367},{"hugoGeneSymbol":"LOC105373368","entrezGeneId":105373368},{"hugoGeneSymbol":"LOC105373369","entrezGeneId":105373369},{"hugoGeneSymbol":"LOC105373370","entrezGeneId":105373370},{"hugoGeneSymbol":"LOC105373372","entrezGeneId":105373372},{"hugoGeneSymbol":"LOC105373373","entrezGeneId":105373373},{"hugoGeneSymbol":"LOC105373378","entrezGeneId":105373378},{"hugoGeneSymbol":"LOC105373379","entrezGeneId":105373379},{"hugoGeneSymbol":"LOC105373381","entrezGeneId":105373381},{"hugoGeneSymbol":"LOC105373383","entrezGeneId":105373383},{"hugoGeneSymbol":"LOC105373384","entrezGeneId":105373384},{"hugoGeneSymbol":"LOC105373386","entrezGeneId":105373386},{"hugoGeneSymbol":"LOC105373387","entrezGeneId":105373387},{"hugoGeneSymbol":"LOC105373389","entrezGeneId":105373389},{"hugoGeneSymbol":"LOC105373390","entrezGeneId":105373390},{"hugoGeneSymbol":"LOC105373392","entrezGeneId":105373392},{"hugoGeneSymbol":"LOC105373393","entrezGeneId":105373393},{"hugoGeneSymbol":"LOC105373394","entrezGeneId":105373394},{"hugoGeneSymbol":"LOC105373395","entrezGeneId":105373395},{"hugoGeneSymbol":"LOC105373397","entrezGeneId":105373397},{"hugoGeneSymbol":"LOC105373398","entrezGeneId":105373398},{"hugoGeneSymbol":"LOC105373399","entrezGeneId":105373399},{"hugoGeneSymbol":"LOC105373401","entrezGeneId":105373401},{"hugoGeneSymbol":"LOC105373402","entrezGeneId":105373402},{"hugoGeneSymbol":"LOC105373404","entrezGeneId":105373404},{"hugoGeneSymbol":"LOC105373406","entrezGeneId":105373406},{"hugoGeneSymbol":"LOC105373407","entrezGeneId":105373407},{"hugoGeneSymbol":"LOC105373408","entrezGeneId":105373408},{"hugoGeneSymbol":"LOC105373409","entrezGeneId":105373409},{"hugoGeneSymbol":"LOC105373411","entrezGeneId":105373411},{"hugoGeneSymbol":"LOC105373414","entrezGeneId":105373414},{"hugoGeneSymbol":"LOC105373415","entrezGeneId":105373415},{"hugoGeneSymbol":"LOC105373416","entrezGeneId":105373416},{"hugoGeneSymbol":"LOC105373417","entrezGeneId":105373417},{"hugoGeneSymbol":"LOC105373418","entrezGeneId":105373418},{"hugoGeneSymbol":"LOC105373419","entrezGeneId":105373419},{"hugoGeneSymbol":"LOC105373421","entrezGeneId":105373421},{"hugoGeneSymbol":"LOC105373422","entrezGeneId":105373422},{"hugoGeneSymbol":"LOC105373424","entrezGeneId":105373424},{"hugoGeneSymbol":"LOC105373426","entrezGeneId":105373426},{"hugoGeneSymbol":"LOC105373428","entrezGeneId":105373428},{"hugoGeneSymbol":"LOC105373429","entrezGeneId":105373429},{"hugoGeneSymbol":"LOC105373430","entrezGeneId":105373430},{"hugoGeneSymbol":"LOC105373431","entrezGeneId":105373431},{"hugoGeneSymbol":"LOC105373432","entrezGeneId":105373432},{"hugoGeneSymbol":"LOC105373433","entrezGeneId":105373433},{"hugoGeneSymbol":"LOC105373436","entrezGeneId":105373436},{"hugoGeneSymbol":"LOC105373437","entrezGeneId":105373437},{"hugoGeneSymbol":"LOC105373438","entrezGeneId":105373438},{"hugoGeneSymbol":"LOC105373440","entrezGeneId":105373440},{"hugoGeneSymbol":"LOC105373443","entrezGeneId":105373443},{"hugoGeneSymbol":"LOC105373444","entrezGeneId":105373444},{"hugoGeneSymbol":"LOC105373447","entrezGeneId":105373447},{"hugoGeneSymbol":"LOC105373448","entrezGeneId":105373448},{"hugoGeneSymbol":"LOC105373449","entrezGeneId":105373449},{"hugoGeneSymbol":"LOC105373451","entrezGeneId":105373451},{"hugoGeneSymbol":"LOC105373454","entrezGeneId":105373454},{"hugoGeneSymbol":"LOC105373455","entrezGeneId":105373455},{"hugoGeneSymbol":"LOC105373456","entrezGeneId":105373456},{"hugoGeneSymbol":"LOC105373458","entrezGeneId":105373458},{"hugoGeneSymbol":"LOC105373459","entrezGeneId":105373459},{"hugoGeneSymbol":"LOC105373461","entrezGeneId":105373461},{"hugoGeneSymbol":"LOC105373463","entrezGeneId":105373463},{"hugoGeneSymbol":"LOC105373465","entrezGeneId":105373465},{"hugoGeneSymbol":"LOC105373466","entrezGeneId":105373466},{"hugoGeneSymbol":"LOC105373467","entrezGeneId":105373467},{"hugoGeneSymbol":"LOC105373471","entrezGeneId":105373471},{"hugoGeneSymbol":"LOC105373475","entrezGeneId":105373475},{"hugoGeneSymbol":"LOC105373479","entrezGeneId":105373479},{"hugoGeneSymbol":"LOC105373480","entrezGeneId":105373480},{"hugoGeneSymbol":"LOC105373481","entrezGeneId":105373481},{"hugoGeneSymbol":"LOC105373484","entrezGeneId":105373484},{"hugoGeneSymbol":"LOC105373485","entrezGeneId":105373485},{"hugoGeneSymbol":"LOC105373487","entrezGeneId":105373487},{"hugoGeneSymbol":"LOC105373488","entrezGeneId":105373488},{"hugoGeneSymbol":"LOC105373490","entrezGeneId":105373490},{"hugoGeneSymbol":"LOC105373492","entrezGeneId":105373492},{"hugoGeneSymbol":"LOC105373493","entrezGeneId":105373493},{"hugoGeneSymbol":"LOC105373494","entrezGeneId":105373494},{"hugoGeneSymbol":"LOC105373496","entrezGeneId":105373496},{"hugoGeneSymbol":"LOC105373499","entrezGeneId":105373499},{"hugoGeneSymbol":"LOC105373501","entrezGeneId":105373501},{"hugoGeneSymbol":"LOC105373502","entrezGeneId":105373502},{"hugoGeneSymbol":"LOC105373504","entrezGeneId":105373504},{"hugoGeneSymbol":"LOC105373506","entrezGeneId":105373506},{"hugoGeneSymbol":"LOC105373508","entrezGeneId":105373508},{"hugoGeneSymbol":"LOC105373510","entrezGeneId":105373510},{"hugoGeneSymbol":"LOC105373511","entrezGeneId":105373511},{"hugoGeneSymbol":"LOC105373512","entrezGeneId":105373512},{"hugoGeneSymbol":"LOC105373514","entrezGeneId":105373514},{"hugoGeneSymbol":"LOC105373520","entrezGeneId":105373520},{"hugoGeneSymbol":"LOC105373521","entrezGeneId":105373521},{"hugoGeneSymbol":"LOC105373522","entrezGeneId":105373522},{"hugoGeneSymbol":"LOC105373523","entrezGeneId":105373523},{"hugoGeneSymbol":"LOC105373524","entrezGeneId":105373524},{"hugoGeneSymbol":"LOC105373525","entrezGeneId":105373525},{"hugoGeneSymbol":"LOC105373526","entrezGeneId":105373526},{"hugoGeneSymbol":"LOC105373527","entrezGeneId":105373527},{"hugoGeneSymbol":"LOC105373528","entrezGeneId":105373528},{"hugoGeneSymbol":"LOC105373529","entrezGeneId":105373529},{"hugoGeneSymbol":"LOC105373530","entrezGeneId":105373530},{"hugoGeneSymbol":"LOC105373531","entrezGeneId":105373531},{"hugoGeneSymbol":"LOC105373534","entrezGeneId":105373534},{"hugoGeneSymbol":"LOC105373535","entrezGeneId":105373535},{"hugoGeneSymbol":"LOC105373539","entrezGeneId":105373539},{"hugoGeneSymbol":"LOC105373545","entrezGeneId":105373545},{"hugoGeneSymbol":"LOC105373547","entrezGeneId":105373547},{"hugoGeneSymbol":"LOC105373548","entrezGeneId":105373548},{"hugoGeneSymbol":"LOC105373549","entrezGeneId":105373549},{"hugoGeneSymbol":"LOC105373551","entrezGeneId":105373551},{"hugoGeneSymbol":"LOC105373552","entrezGeneId":105373552},{"hugoGeneSymbol":"LOC105373553","entrezGeneId":105373553},{"hugoGeneSymbol":"LOC105373554","entrezGeneId":105373554},{"hugoGeneSymbol":"LOC105373557","entrezGeneId":105373557},{"hugoGeneSymbol":"LOC105373559","entrezGeneId":105373559},{"hugoGeneSymbol":"LOC105373560","entrezGeneId":105373560},{"hugoGeneSymbol":"LOC105373562","entrezGeneId":105373562},{"hugoGeneSymbol":"LOC105373563","entrezGeneId":105373563},{"hugoGeneSymbol":"LOC105373567","entrezGeneId":105373567},{"hugoGeneSymbol":"LOC105373570","entrezGeneId":105373570},{"hugoGeneSymbol":"LOC105373572","entrezGeneId":105373572},{"hugoGeneSymbol":"LOC105373574","entrezGeneId":105373574},{"hugoGeneSymbol":"LOC105373575","entrezGeneId":105373575},{"hugoGeneSymbol":"LOC105373576","entrezGeneId":105373576},{"hugoGeneSymbol":"LOC105373578","entrezGeneId":105373578},{"hugoGeneSymbol":"LOC105373579","entrezGeneId":105373579},{"hugoGeneSymbol":"LOC105373580","entrezGeneId":105373580},{"hugoGeneSymbol":"LOC105373581","entrezGeneId":105373581},{"hugoGeneSymbol":"LOC105373582","entrezGeneId":105373582},{"hugoGeneSymbol":"LOC105373583","entrezGeneId":105373583},{"hugoGeneSymbol":"LOC105373584","entrezGeneId":105373584},{"hugoGeneSymbol":"LOC105373585","entrezGeneId":105373585},{"hugoGeneSymbol":"LOC105373587","entrezGeneId":105373587},{"hugoGeneSymbol":"LOC105373588","entrezGeneId":105373588},{"hugoGeneSymbol":"LOC105373590","entrezGeneId":105373590},{"hugoGeneSymbol":"LOC105373591","entrezGeneId":105373591},{"hugoGeneSymbol":"LOC105373592","entrezGeneId":105373592},{"hugoGeneSymbol":"LOC105373593","entrezGeneId":105373593},{"hugoGeneSymbol":"LOC105373594","entrezGeneId":105373594},{"hugoGeneSymbol":"LOC105373595","entrezGeneId":105373595},{"hugoGeneSymbol":"LOC105373596","entrezGeneId":105373596},{"hugoGeneSymbol":"LOC105373598","entrezGeneId":105373598},{"hugoGeneSymbol":"LOC105373601","entrezGeneId":105373601},{"hugoGeneSymbol":"LOC105373602","entrezGeneId":105373602},{"hugoGeneSymbol":"LOC105373603","entrezGeneId":105373603},{"hugoGeneSymbol":"LOC105373604","entrezGeneId":105373604},{"hugoGeneSymbol":"LOC105373605","entrezGeneId":105373605},{"hugoGeneSymbol":"LOC105373608","entrezGeneId":105373608},{"hugoGeneSymbol":"LOC105373609","entrezGeneId":105373609},{"hugoGeneSymbol":"LOC105373610","entrezGeneId":105373610},{"hugoGeneSymbol":"LOC105373611","entrezGeneId":105373611},{"hugoGeneSymbol":"LOC105373612","entrezGeneId":105373612},{"hugoGeneSymbol":"LOC105373613","entrezGeneId":105373613},{"hugoGeneSymbol":"LOC105373614","entrezGeneId":105373614},{"hugoGeneSymbol":"LOC105373616","entrezGeneId":105373616},{"hugoGeneSymbol":"LOC105373617","entrezGeneId":105373617},{"hugoGeneSymbol":"LOC105373618","entrezGeneId":105373618},{"hugoGeneSymbol":"LOC105373622","entrezGeneId":105373622},{"hugoGeneSymbol":"LOC105373623","entrezGeneId":105373623},{"hugoGeneSymbol":"LOC105373627","entrezGeneId":105373627},{"hugoGeneSymbol":"LOC105373628","entrezGeneId":105373628},{"hugoGeneSymbol":"LOC105373629","entrezGeneId":105373629},{"hugoGeneSymbol":"LOC105373633","entrezGeneId":105373633},{"hugoGeneSymbol":"LOC105373634","entrezGeneId":105373634},{"hugoGeneSymbol":"LOC105373636","entrezGeneId":105373636},{"hugoGeneSymbol":"LOC105373637","entrezGeneId":105373637},{"hugoGeneSymbol":"LOC105373639","entrezGeneId":105373639},{"hugoGeneSymbol":"LOC105373640","entrezGeneId":105373640},{"hugoGeneSymbol":"LOC105373641","entrezGeneId":105373641},{"hugoGeneSymbol":"LOC105373643","entrezGeneId":105373643},{"hugoGeneSymbol":"LOC105373644","entrezGeneId":105373644},{"hugoGeneSymbol":"LOC105373645","entrezGeneId":105373645},{"hugoGeneSymbol":"LOC105373648","entrezGeneId":105373648},{"hugoGeneSymbol":"LOC105373649","entrezGeneId":105373649},{"hugoGeneSymbol":"LOC105373651","entrezGeneId":105373651},{"hugoGeneSymbol":"LOC105373652","entrezGeneId":105373652},{"hugoGeneSymbol":"LOC105373654","entrezGeneId":105373654},{"hugoGeneSymbol":"LOC105373656","entrezGeneId":105373656},{"hugoGeneSymbol":"LOC105373663","entrezGeneId":105373663},{"hugoGeneSymbol":"LOC105373664","entrezGeneId":105373664},{"hugoGeneSymbol":"LOC105373665","entrezGeneId":105373665},{"hugoGeneSymbol":"LOC105373666","entrezGeneId":105373666},{"hugoGeneSymbol":"LOC105373667","entrezGeneId":105373667},{"hugoGeneSymbol":"LOC105373668","entrezGeneId":105373668},{"hugoGeneSymbol":"LOC105373673","entrezGeneId":105373673},{"hugoGeneSymbol":"LOC105373674","entrezGeneId":105373674},{"hugoGeneSymbol":"LOC105373677","entrezGeneId":105373677},{"hugoGeneSymbol":"LOC105373678","entrezGeneId":105373678},{"hugoGeneSymbol":"LOC105373679","entrezGeneId":105373679},{"hugoGeneSymbol":"LOC105373680","entrezGeneId":105373680},{"hugoGeneSymbol":"LOC105373682","entrezGeneId":105373682},{"hugoGeneSymbol":"LOC105373685","entrezGeneId":105373685},{"hugoGeneSymbol":"LOC105373686","entrezGeneId":105373686},{"hugoGeneSymbol":"LOC105373688","entrezGeneId":105373688},{"hugoGeneSymbol":"LOC105373689","entrezGeneId":105373689},{"hugoGeneSymbol":"LOC105373690","entrezGeneId":105373690},{"hugoGeneSymbol":"LOC105373691","entrezGeneId":105373691},{"hugoGeneSymbol":"LOC105373692","entrezGeneId":105373692},{"hugoGeneSymbol":"LOC105373693","entrezGeneId":105373693},{"hugoGeneSymbol":"LOC105373694","entrezGeneId":105373694},{"hugoGeneSymbol":"LOC105373696","entrezGeneId":105373696},{"hugoGeneSymbol":"LOC105373698","entrezGeneId":105373698},{"hugoGeneSymbol":"LOC105373699","entrezGeneId":105373699},{"hugoGeneSymbol":"LOC105373700","entrezGeneId":105373700},{"hugoGeneSymbol":"LOC105373703","entrezGeneId":105373703},{"hugoGeneSymbol":"LOC105373707","entrezGeneId":105373707},{"hugoGeneSymbol":"LOC105373709","entrezGeneId":105373709},{"hugoGeneSymbol":"LOC105373710","entrezGeneId":105373710},{"hugoGeneSymbol":"LOC105373711","entrezGeneId":105373711},{"hugoGeneSymbol":"LOC105373712","entrezGeneId":105373712},{"hugoGeneSymbol":"LOC105373713","entrezGeneId":105373713},{"hugoGeneSymbol":"LOC105373714","entrezGeneId":105373714},{"hugoGeneSymbol":"LOC105373715","entrezGeneId":105373715},{"hugoGeneSymbol":"LOC105373716","entrezGeneId":105373716},{"hugoGeneSymbol":"LOC105373717","entrezGeneId":105373717},{"hugoGeneSymbol":"LOC105373718","entrezGeneId":105373718},{"hugoGeneSymbol":"LOC105373719","entrezGeneId":105373719},{"hugoGeneSymbol":"LOC105373720","entrezGeneId":105373720},{"hugoGeneSymbol":"LOC105373722","entrezGeneId":105373722},{"hugoGeneSymbol":"LOC105373724","entrezGeneId":105373724},{"hugoGeneSymbol":"LOC105373727","entrezGeneId":105373727},{"hugoGeneSymbol":"LOC105373728","entrezGeneId":105373728},{"hugoGeneSymbol":"LOC105373730","entrezGeneId":105373730},{"hugoGeneSymbol":"LOC105373733","entrezGeneId":105373733},{"hugoGeneSymbol":"LOC105373734","entrezGeneId":105373734},{"hugoGeneSymbol":"LOC105373735","entrezGeneId":105373735},{"hugoGeneSymbol":"LOC105373737","entrezGeneId":105373737},{"hugoGeneSymbol":"LOC105373739","entrezGeneId":105373739},{"hugoGeneSymbol":"LOC105373740","entrezGeneId":105373740},{"hugoGeneSymbol":"LOC105373741","entrezGeneId":105373741},{"hugoGeneSymbol":"LOC105373742","entrezGeneId":105373742},{"hugoGeneSymbol":"LOC105373743","entrezGeneId":105373743},{"hugoGeneSymbol":"LOC105373744","entrezGeneId":105373744},{"hugoGeneSymbol":"LOC105373745","entrezGeneId":105373745},{"hugoGeneSymbol":"LOC105373746","entrezGeneId":105373746},{"hugoGeneSymbol":"LOC105373748","entrezGeneId":105373748},{"hugoGeneSymbol":"LOC105373750","entrezGeneId":105373750},{"hugoGeneSymbol":"LOC105373752","entrezGeneId":105373752},{"hugoGeneSymbol":"LOC105373754","entrezGeneId":105373754},{"hugoGeneSymbol":"LOC105373756","entrezGeneId":105373756},{"hugoGeneSymbol":"LOC105373757","entrezGeneId":105373757},{"hugoGeneSymbol":"LOC105373759","entrezGeneId":105373759},{"hugoGeneSymbol":"LOC105373760","entrezGeneId":105373760},{"hugoGeneSymbol":"LOC105373762","entrezGeneId":105373762},{"hugoGeneSymbol":"LOC105373764","entrezGeneId":105373764},{"hugoGeneSymbol":"LOC105373766","entrezGeneId":105373766},{"hugoGeneSymbol":"LOC105373767","entrezGeneId":105373767},{"hugoGeneSymbol":"LOC105373768","entrezGeneId":105373768},{"hugoGeneSymbol":"LOC105373769","entrezGeneId":105373769},{"hugoGeneSymbol":"LOC105373770","entrezGeneId":105373770},{"hugoGeneSymbol":"LOC105373771","entrezGeneId":105373771},{"hugoGeneSymbol":"LOC105373772","entrezGeneId":105373772},{"hugoGeneSymbol":"LOC105373774","entrezGeneId":105373774},{"hugoGeneSymbol":"LOC105373775","entrezGeneId":105373775},{"hugoGeneSymbol":"LOC105373776","entrezGeneId":105373776},{"hugoGeneSymbol":"LOC105373777","entrezGeneId":105373777},{"hugoGeneSymbol":"LOC105373779","entrezGeneId":105373779},{"hugoGeneSymbol":"LOC105373780","entrezGeneId":105373780},{"hugoGeneSymbol":"LOC105373781","entrezGeneId":105373781},{"hugoGeneSymbol":"LOC105373782","entrezGeneId":105373782},{"hugoGeneSymbol":"LOC105373785","entrezGeneId":105373785},{"hugoGeneSymbol":"LOC105373786","entrezGeneId":105373786},{"hugoGeneSymbol":"LOC105373788","entrezGeneId":105373788},{"hugoGeneSymbol":"LOC105373790","entrezGeneId":105373790},{"hugoGeneSymbol":"LOC105373791","entrezGeneId":105373791},{"hugoGeneSymbol":"LOC105373793","entrezGeneId":105373793},{"hugoGeneSymbol":"LOC105373794","entrezGeneId":105373794},{"hugoGeneSymbol":"LOC105373795","entrezGeneId":105373795},{"hugoGeneSymbol":"LOC105373796","entrezGeneId":105373796},{"hugoGeneSymbol":"LOC105373802","entrezGeneId":105373802},{"hugoGeneSymbol":"LOC105373804","entrezGeneId":105373804},{"hugoGeneSymbol":"LOC105373805","entrezGeneId":105373805},{"hugoGeneSymbol":"LOC105373811","entrezGeneId":105373811},{"hugoGeneSymbol":"LOC105373812","entrezGeneId":105373812},{"hugoGeneSymbol":"LOC105373813","entrezGeneId":105373813},{"hugoGeneSymbol":"LOC105373815","entrezGeneId":105373815},{"hugoGeneSymbol":"LOC105373816","entrezGeneId":105373816},{"hugoGeneSymbol":"LOC105373817","entrezGeneId":105373817},{"hugoGeneSymbol":"LOC105373819","entrezGeneId":105373819},{"hugoGeneSymbol":"LOC105373821","entrezGeneId":105373821},{"hugoGeneSymbol":"LOC105373822","entrezGeneId":105373822},{"hugoGeneSymbol":"LOC105373823","entrezGeneId":105373823},{"hugoGeneSymbol":"LOC105373824","entrezGeneId":105373824},{"hugoGeneSymbol":"LOC105373826","entrezGeneId":105373826},{"hugoGeneSymbol":"LOC105373828","entrezGeneId":105373828},{"hugoGeneSymbol":"LOC105373830","entrezGeneId":105373830},{"hugoGeneSymbol":"LOC105373831","entrezGeneId":105373831},{"hugoGeneSymbol":"LOC105373833","entrezGeneId":105373833},{"hugoGeneSymbol":"LOC105373835","entrezGeneId":105373835},{"hugoGeneSymbol":"LOC105373836","entrezGeneId":105373836},{"hugoGeneSymbol":"LOC105373845","entrezGeneId":105373845},{"hugoGeneSymbol":"LOC105373847","entrezGeneId":105373847},{"hugoGeneSymbol":"LOC105373848","entrezGeneId":105373848},{"hugoGeneSymbol":"LOC105373851","entrezGeneId":105373851},{"hugoGeneSymbol":"LOC105373854","entrezGeneId":105373854},{"hugoGeneSymbol":"LOC105373855","entrezGeneId":105373855},{"hugoGeneSymbol":"LOC105373856","entrezGeneId":105373856},{"hugoGeneSymbol":"LOC105373857","entrezGeneId":105373857},{"hugoGeneSymbol":"LOC105373864","entrezGeneId":105373864},{"hugoGeneSymbol":"LOC105373868","entrezGeneId":105373868},{"hugoGeneSymbol":"LOC105373870","entrezGeneId":105373870},{"hugoGeneSymbol":"LOC105373871","entrezGeneId":105373871},{"hugoGeneSymbol":"LOC105373872","entrezGeneId":105373872},{"hugoGeneSymbol":"LOC105373873","entrezGeneId":105373873},{"hugoGeneSymbol":"LOC105373874","entrezGeneId":105373874},{"hugoGeneSymbol":"LOC105373876","entrezGeneId":105373876},{"hugoGeneSymbol":"LOC105373878","entrezGeneId":105373878},{"hugoGeneSymbol":"LOC105373880","entrezGeneId":105373880},{"hugoGeneSymbol":"LOC105373881","entrezGeneId":105373881},{"hugoGeneSymbol":"LOC105373882","entrezGeneId":105373882},{"hugoGeneSymbol":"LOC105373883","entrezGeneId":105373883},{"hugoGeneSymbol":"LOC105373884","entrezGeneId":105373884},{"hugoGeneSymbol":"LOC105373885","entrezGeneId":105373885},{"hugoGeneSymbol":"LOC105373886","entrezGeneId":105373886},{"hugoGeneSymbol":"LOC105373887","entrezGeneId":105373887},{"hugoGeneSymbol":"LOC105373888","entrezGeneId":105373888},{"hugoGeneSymbol":"LOC105373890","entrezGeneId":105373890},{"hugoGeneSymbol":"LOC105373891","entrezGeneId":105373891},{"hugoGeneSymbol":"LOC105373893","entrezGeneId":105373893},{"hugoGeneSymbol":"LOC105373894","entrezGeneId":105373894},{"hugoGeneSymbol":"LOC105373895","entrezGeneId":105373895},{"hugoGeneSymbol":"LOC105373896","entrezGeneId":105373896},{"hugoGeneSymbol":"LOC105373897","entrezGeneId":105373897},{"hugoGeneSymbol":"LOC105373898","entrezGeneId":105373898},{"hugoGeneSymbol":"LOC105373899","entrezGeneId":105373899},{"hugoGeneSymbol":"LOC105373900","entrezGeneId":105373900},{"hugoGeneSymbol":"LOC105373902","entrezGeneId":105373902},{"hugoGeneSymbol":"LOC105373903","entrezGeneId":105373903},{"hugoGeneSymbol":"LOC105373904","entrezGeneId":105373904},{"hugoGeneSymbol":"LOC105373905","entrezGeneId":105373905},{"hugoGeneSymbol":"LOC105373906","entrezGeneId":105373906},{"hugoGeneSymbol":"LOC105373907","entrezGeneId":105373907},{"hugoGeneSymbol":"LOC105373908","entrezGeneId":105373908},{"hugoGeneSymbol":"LOC105373909","entrezGeneId":105373909},{"hugoGeneSymbol":"LOC105373910","entrezGeneId":105373910},{"hugoGeneSymbol":"LOC105373911","entrezGeneId":105373911},{"hugoGeneSymbol":"LOC105373914","entrezGeneId":105373914},{"hugoGeneSymbol":"LOC105373915","entrezGeneId":105373915},{"hugoGeneSymbol":"LOC105373918","entrezGeneId":105373918},{"hugoGeneSymbol":"LOC105373919","entrezGeneId":105373919},{"hugoGeneSymbol":"LOC105373920","entrezGeneId":105373920},{"hugoGeneSymbol":"LOC105373921","entrezGeneId":105373921},{"hugoGeneSymbol":"LOC105373923","entrezGeneId":105373923},{"hugoGeneSymbol":"LOC105373924","entrezGeneId":105373924},{"hugoGeneSymbol":"LOC105373925","entrezGeneId":105373925},{"hugoGeneSymbol":"LOC105373926","entrezGeneId":105373926},{"hugoGeneSymbol":"LOC105373928","entrezGeneId":105373928},{"hugoGeneSymbol":"LOC105373929","entrezGeneId":105373929},{"hugoGeneSymbol":"LOC105373932","entrezGeneId":105373932},{"hugoGeneSymbol":"LOC105373933","entrezGeneId":105373933},{"hugoGeneSymbol":"LOC105373936","entrezGeneId":105373936},{"hugoGeneSymbol":"LOC105373937","entrezGeneId":105373937},{"hugoGeneSymbol":"LOC105373938","entrezGeneId":105373938},{"hugoGeneSymbol":"LOC105373939","entrezGeneId":105373939},{"hugoGeneSymbol":"LOC105373940","entrezGeneId":105373940},{"hugoGeneSymbol":"LOC105373941","entrezGeneId":105373941},{"hugoGeneSymbol":"LOC105373942","entrezGeneId":105373942},{"hugoGeneSymbol":"LOC105373943","entrezGeneId":105373943},{"hugoGeneSymbol":"LOC105373944","entrezGeneId":105373944},{"hugoGeneSymbol":"LOC105373945","entrezGeneId":105373945},{"hugoGeneSymbol":"LOC105373946","entrezGeneId":105373946},{"hugoGeneSymbol":"LOC105373947","entrezGeneId":105373947},{"hugoGeneSymbol":"LOC105373948","entrezGeneId":105373948},{"hugoGeneSymbol":"LOC105373949","entrezGeneId":105373949},{"hugoGeneSymbol":"LOC105373950","entrezGeneId":105373950},{"hugoGeneSymbol":"LOC105373951","entrezGeneId":105373951},{"hugoGeneSymbol":"LOC105373952","entrezGeneId":105373952},{"hugoGeneSymbol":"LOC105373953","entrezGeneId":105373953},{"hugoGeneSymbol":"LOC105373954","entrezGeneId":105373954},{"hugoGeneSymbol":"LOC105373957","entrezGeneId":105373957},{"hugoGeneSymbol":"LOC105373958","entrezGeneId":105373958},{"hugoGeneSymbol":"LOC105373960","entrezGeneId":105373960},{"hugoGeneSymbol":"LOC105373961","entrezGeneId":105373961},{"hugoGeneSymbol":"LOC105373963","entrezGeneId":105373963},{"hugoGeneSymbol":"LOC105373966","entrezGeneId":105373966},{"hugoGeneSymbol":"LOC105373968","entrezGeneId":105373968},{"hugoGeneSymbol":"LOC105373970","entrezGeneId":105373970},{"hugoGeneSymbol":"LOC105373971","entrezGeneId":105373971},{"hugoGeneSymbol":"LOC105373973","entrezGeneId":105373973},{"hugoGeneSymbol":"LOC105373974","entrezGeneId":105373974},{"hugoGeneSymbol":"LOC105373975","entrezGeneId":105373975},{"hugoGeneSymbol":"LOC105373976","entrezGeneId":105373976},{"hugoGeneSymbol":"LOC105373977","entrezGeneId":105373977},{"hugoGeneSymbol":"LOC105373978","entrezGeneId":105373978},{"hugoGeneSymbol":"LOC105373980","entrezGeneId":105373980},{"hugoGeneSymbol":"LOC105373985","entrezGeneId":105373985},{"hugoGeneSymbol":"LOC105373986","entrezGeneId":105373986},{"hugoGeneSymbol":"LOC105373989","entrezGeneId":105373989},{"hugoGeneSymbol":"LOC105373991","entrezGeneId":105373991},{"hugoGeneSymbol":"LOC105373992","entrezGeneId":105373992},{"hugoGeneSymbol":"LOC105373994","entrezGeneId":105373994},{"hugoGeneSymbol":"LOC105373996","entrezGeneId":105373996},{"hugoGeneSymbol":"LOC105373997","entrezGeneId":105373997},{"hugoGeneSymbol":"LOC105373998","entrezGeneId":105373998},{"hugoGeneSymbol":"LOC105373999","entrezGeneId":105373999},{"hugoGeneSymbol":"LOC105374000","entrezGeneId":105374000},{"hugoGeneSymbol":"LOC105374002","entrezGeneId":105374002},{"hugoGeneSymbol":"LOC105374003","entrezGeneId":105374003},{"hugoGeneSymbol":"LOC105374004","entrezGeneId":105374004},{"hugoGeneSymbol":"LOC105374005","entrezGeneId":105374005},{"hugoGeneSymbol":"LOC105374006","entrezGeneId":105374006},{"hugoGeneSymbol":"LOC105374007","entrezGeneId":105374007},{"hugoGeneSymbol":"LOC105374009","entrezGeneId":105374009},{"hugoGeneSymbol":"LOC105374010","entrezGeneId":105374010},{"hugoGeneSymbol":"LOC105374013","entrezGeneId":105374013},{"hugoGeneSymbol":"LOC105374016","entrezGeneId":105374016},{"hugoGeneSymbol":"LOC105374017","entrezGeneId":105374017},{"hugoGeneSymbol":"LOC105374018","entrezGeneId":105374018},{"hugoGeneSymbol":"LOC105374019","entrezGeneId":105374019},{"hugoGeneSymbol":"LOC105374020","entrezGeneId":105374020},{"hugoGeneSymbol":"LOC105374021","entrezGeneId":105374021},{"hugoGeneSymbol":"LOC105374023","entrezGeneId":105374023},{"hugoGeneSymbol":"LOC105374024","entrezGeneId":105374024},{"hugoGeneSymbol":"LOC105374026","entrezGeneId":105374026},{"hugoGeneSymbol":"LOC105374027","entrezGeneId":105374027},{"hugoGeneSymbol":"LOC105374029","entrezGeneId":105374029},{"hugoGeneSymbol":"LOC105374031","entrezGeneId":105374031},{"hugoGeneSymbol":"LOC105374033","entrezGeneId":105374033},{"hugoGeneSymbol":"LOC105374034","entrezGeneId":105374034},{"hugoGeneSymbol":"LOC105374036","entrezGeneId":105374036},{"hugoGeneSymbol":"LOC105374037","entrezGeneId":105374037},{"hugoGeneSymbol":"LOC105374038","entrezGeneId":105374038},{"hugoGeneSymbol":"LOC105374039","entrezGeneId":105374039},{"hugoGeneSymbol":"LOC105374040","entrezGeneId":105374040},{"hugoGeneSymbol":"LOC105374041","entrezGeneId":105374041},{"hugoGeneSymbol":"LOC105374042","entrezGeneId":105374042},{"hugoGeneSymbol":"LOC105374048","entrezGeneId":105374048},{"hugoGeneSymbol":"LOC105374051","entrezGeneId":105374051},{"hugoGeneSymbol":"LOC105374052","entrezGeneId":105374052},{"hugoGeneSymbol":"LOC105374053","entrezGeneId":105374053},{"hugoGeneSymbol":"LOC105374054","entrezGeneId":105374054},{"hugoGeneSymbol":"LOC105374056","entrezGeneId":105374056},{"hugoGeneSymbol":"LOC105374058","entrezGeneId":105374058},{"hugoGeneSymbol":"LOC105374059","entrezGeneId":105374059},{"hugoGeneSymbol":"LOC105374060","entrezGeneId":105374060},{"hugoGeneSymbol":"LOC105374062","entrezGeneId":105374062},{"hugoGeneSymbol":"LOC105374063","entrezGeneId":105374063},{"hugoGeneSymbol":"LOC105374064","entrezGeneId":105374064},{"hugoGeneSymbol":"LOC105374065","entrezGeneId":105374065},{"hugoGeneSymbol":"LOC105374069","entrezGeneId":105374069},{"hugoGeneSymbol":"LOC105374071","entrezGeneId":105374071},{"hugoGeneSymbol":"LOC105374076","entrezGeneId":105374076},{"hugoGeneSymbol":"LOC105374077","entrezGeneId":105374077},{"hugoGeneSymbol":"LOC105374080","entrezGeneId":105374080},{"hugoGeneSymbol":"LOC105374081","entrezGeneId":105374081},{"hugoGeneSymbol":"LOC105374083","entrezGeneId":105374083},{"hugoGeneSymbol":"LOC105374085","entrezGeneId":105374085},{"hugoGeneSymbol":"LOC105374088","entrezGeneId":105374088},{"hugoGeneSymbol":"LOC105374089","entrezGeneId":105374089},{"hugoGeneSymbol":"LOC105374090","entrezGeneId":105374090},{"hugoGeneSymbol":"LOC105374094","entrezGeneId":105374094},{"hugoGeneSymbol":"LOC105374096","entrezGeneId":105374096},{"hugoGeneSymbol":"LOC105374101","entrezGeneId":105374101},{"hugoGeneSymbol":"LOC105374102","entrezGeneId":105374102},{"hugoGeneSymbol":"LOC105374103","entrezGeneId":105374103},{"hugoGeneSymbol":"LOC105374106","entrezGeneId":105374106},{"hugoGeneSymbol":"LOC105374107","entrezGeneId":105374107},{"hugoGeneSymbol":"LOC105374108","entrezGeneId":105374108},{"hugoGeneSymbol":"LOC105374110","entrezGeneId":105374110},{"hugoGeneSymbol":"LOC105374111","entrezGeneId":105374111},{"hugoGeneSymbol":"LOC105374113","entrezGeneId":105374113},{"hugoGeneSymbol":"LOC105374114","entrezGeneId":105374114},{"hugoGeneSymbol":"LOC105374115","entrezGeneId":105374115},{"hugoGeneSymbol":"LOC105374116","entrezGeneId":105374116},{"hugoGeneSymbol":"LOC105374117","entrezGeneId":105374117},{"hugoGeneSymbol":"LOC105374118","entrezGeneId":105374118},{"hugoGeneSymbol":"LOC105374120","entrezGeneId":105374120},{"hugoGeneSymbol":"LOC105374121","entrezGeneId":105374121},{"hugoGeneSymbol":"LOC105374122","entrezGeneId":105374122},{"hugoGeneSymbol":"LOC105374123","entrezGeneId":105374123},{"hugoGeneSymbol":"LOC105374124","entrezGeneId":105374124},{"hugoGeneSymbol":"LOC105374126","entrezGeneId":105374126},{"hugoGeneSymbol":"LOC105374127","entrezGeneId":105374127},{"hugoGeneSymbol":"LOC105374128","entrezGeneId":105374128},{"hugoGeneSymbol":"LOC105374129","entrezGeneId":105374129},{"hugoGeneSymbol":"LOC105374132","entrezGeneId":105374132},{"hugoGeneSymbol":"LOC105374134","entrezGeneId":105374134},{"hugoGeneSymbol":"LOC105374136","entrezGeneId":105374136},{"hugoGeneSymbol":"LOC105374137","entrezGeneId":105374137},{"hugoGeneSymbol":"LOC105374138","entrezGeneId":105374138},{"hugoGeneSymbol":"LOC105374139","entrezGeneId":105374139},{"hugoGeneSymbol":"LOC105374140","entrezGeneId":105374140},{"hugoGeneSymbol":"LOC105374141","entrezGeneId":105374141},{"hugoGeneSymbol":"LOC105374142","entrezGeneId":105374142},{"hugoGeneSymbol":"LOC105374143","entrezGeneId":105374143},{"hugoGeneSymbol":"LOC105374144","entrezGeneId":105374144},{"hugoGeneSymbol":"LOC105374145","entrezGeneId":105374145},{"hugoGeneSymbol":"LOC105374147","entrezGeneId":105374147},{"hugoGeneSymbol":"LOC105374148","entrezGeneId":105374148},{"hugoGeneSymbol":"LOC105374150","entrezGeneId":105374150},{"hugoGeneSymbol":"LOC105374151","entrezGeneId":105374151},{"hugoGeneSymbol":"LOC105374152","entrezGeneId":105374152},{"hugoGeneSymbol":"LOC105374153","entrezGeneId":105374153},{"hugoGeneSymbol":"LOC105374154","entrezGeneId":105374154},{"hugoGeneSymbol":"LOC105374155","entrezGeneId":105374155},{"hugoGeneSymbol":"LOC105374157","entrezGeneId":105374157},{"hugoGeneSymbol":"LOC105374159","entrezGeneId":105374159},{"hugoGeneSymbol":"LOC105374160","entrezGeneId":105374160},{"hugoGeneSymbol":"LOC105374162","entrezGeneId":105374162},{"hugoGeneSymbol":"LOC105374163","entrezGeneId":105374163},{"hugoGeneSymbol":"LOC105374164","entrezGeneId":105374164},{"hugoGeneSymbol":"LOC105374166","entrezGeneId":105374166},{"hugoGeneSymbol":"LOC105374167","entrezGeneId":105374167},{"hugoGeneSymbol":"LOC105374170","entrezGeneId":105374170},{"hugoGeneSymbol":"LOC105374171","entrezGeneId":105374171},{"hugoGeneSymbol":"LOC105374172","entrezGeneId":105374172},{"hugoGeneSymbol":"LOC105374174","entrezGeneId":105374174},{"hugoGeneSymbol":"LOC105374179","entrezGeneId":105374179},{"hugoGeneSymbol":"LOC105374181","entrezGeneId":105374181},{"hugoGeneSymbol":"LOC105374186","entrezGeneId":105374186},{"hugoGeneSymbol":"LOC105374187","entrezGeneId":105374187},{"hugoGeneSymbol":"LOC105374188","entrezGeneId":105374188},{"hugoGeneSymbol":"LOC105374189","entrezGeneId":105374189},{"hugoGeneSymbol":"LOC105374190","entrezGeneId":105374190},{"hugoGeneSymbol":"LOC105374191","entrezGeneId":105374191},{"hugoGeneSymbol":"LOC105374192","entrezGeneId":105374192},{"hugoGeneSymbol":"LOC105374193","entrezGeneId":105374193},{"hugoGeneSymbol":"LOC105374194","entrezGeneId":105374194},{"hugoGeneSymbol":"LOC105374195","entrezGeneId":105374195},{"hugoGeneSymbol":"LOC105374196","entrezGeneId":105374196},{"hugoGeneSymbol":"LOC105374197","entrezGeneId":105374197},{"hugoGeneSymbol":"LOC105374200","entrezGeneId":105374200},{"hugoGeneSymbol":"LOC105374205","entrezGeneId":105374205},{"hugoGeneSymbol":"LOC105374206","entrezGeneId":105374206},{"hugoGeneSymbol":"LOC105374209","entrezGeneId":105374209},{"hugoGeneSymbol":"LOC105374211","entrezGeneId":105374211},{"hugoGeneSymbol":"LOC105374216","entrezGeneId":105374216},{"hugoGeneSymbol":"LOC105374217","entrezGeneId":105374217},{"hugoGeneSymbol":"LOC105374218","entrezGeneId":105374218},{"hugoGeneSymbol":"LOC105374220","entrezGeneId":105374220},{"hugoGeneSymbol":"LOC105374221","entrezGeneId":105374221},{"hugoGeneSymbol":"LOC105374224","entrezGeneId":105374224},{"hugoGeneSymbol":"LOC105374225","entrezGeneId":105374225},{"hugoGeneSymbol":"LOC105374226","entrezGeneId":105374226},{"hugoGeneSymbol":"LOC105374229","entrezGeneId":105374229},{"hugoGeneSymbol":"LOC105374230","entrezGeneId":105374230},{"hugoGeneSymbol":"LOC105374234","entrezGeneId":105374234},{"hugoGeneSymbol":"LOC105374235","entrezGeneId":105374235},{"hugoGeneSymbol":"LOC105374240","entrezGeneId":105374240},{"hugoGeneSymbol":"LOC105374242","entrezGeneId":105374242},{"hugoGeneSymbol":"LOC105374243","entrezGeneId":105374243},{"hugoGeneSymbol":"LOC105374245","entrezGeneId":105374245},{"hugoGeneSymbol":"LOC105374246","entrezGeneId":105374246},{"hugoGeneSymbol":"LOC105374247","entrezGeneId":105374247},{"hugoGeneSymbol":"LOC105374248","entrezGeneId":105374248},{"hugoGeneSymbol":"LOC105374249","entrezGeneId":105374249},{"hugoGeneSymbol":"LOC105374252","entrezGeneId":105374252},{"hugoGeneSymbol":"LOC105374253","entrezGeneId":105374253},{"hugoGeneSymbol":"LOC105374254","entrezGeneId":105374254},{"hugoGeneSymbol":"LOC105374257","entrezGeneId":105374257},{"hugoGeneSymbol":"LOC105374258","entrezGeneId":105374258},{"hugoGeneSymbol":"LOC105374259","entrezGeneId":105374259},{"hugoGeneSymbol":"LOC105374260","entrezGeneId":105374260},{"hugoGeneSymbol":"LOC105374262","entrezGeneId":105374262},{"hugoGeneSymbol":"LOC105374263","entrezGeneId":105374263},{"hugoGeneSymbol":"LOC105374264","entrezGeneId":105374264},{"hugoGeneSymbol":"LOC105374265","entrezGeneId":105374265},{"hugoGeneSymbol":"LOC105374270","entrezGeneId":105374270},{"hugoGeneSymbol":"LOC105374275","entrezGeneId":105374275},{"hugoGeneSymbol":"LOC105374276","entrezGeneId":105374276},{"hugoGeneSymbol":"LOC105374277","entrezGeneId":105374277},{"hugoGeneSymbol":"LOC105374280","entrezGeneId":105374280},{"hugoGeneSymbol":"LOC105374282","entrezGeneId":105374282},{"hugoGeneSymbol":"LOC105374283","entrezGeneId":105374283},{"hugoGeneSymbol":"LOC105374284","entrezGeneId":105374284},{"hugoGeneSymbol":"LOC105374286","entrezGeneId":105374286},{"hugoGeneSymbol":"LOC105374287","entrezGeneId":105374287},{"hugoGeneSymbol":"LOC105374291","entrezGeneId":105374291},{"hugoGeneSymbol":"LOC105374292","entrezGeneId":105374292},{"hugoGeneSymbol":"LOC105374294","entrezGeneId":105374294},{"hugoGeneSymbol":"LOC105374295","entrezGeneId":105374295},{"hugoGeneSymbol":"LOC105374296","entrezGeneId":105374296},{"hugoGeneSymbol":"LOC105374297","entrezGeneId":105374297},{"hugoGeneSymbol":"LOC105374298","entrezGeneId":105374298},{"hugoGeneSymbol":"LOC105374299","entrezGeneId":105374299},{"hugoGeneSymbol":"LOC105374301","entrezGeneId":105374301},{"hugoGeneSymbol":"LOC105374303","entrezGeneId":105374303},{"hugoGeneSymbol":"LOC105374304","entrezGeneId":105374304},{"hugoGeneSymbol":"LOC105374306","entrezGeneId":105374306},{"hugoGeneSymbol":"LOC105374307","entrezGeneId":105374307},{"hugoGeneSymbol":"LOC105374308","entrezGeneId":105374308},{"hugoGeneSymbol":"LOC105374309","entrezGeneId":105374309},{"hugoGeneSymbol":"LOC105374310","entrezGeneId":105374310},{"hugoGeneSymbol":"LOC105374312","entrezGeneId":105374312},{"hugoGeneSymbol":"LOC105374313","entrezGeneId":105374313},{"hugoGeneSymbol":"LOC105374314","entrezGeneId":105374314},{"hugoGeneSymbol":"LOC105374317","entrezGeneId":105374317},{"hugoGeneSymbol":"LOC105374318","entrezGeneId":105374318},{"hugoGeneSymbol":"LOC105374320","entrezGeneId":105374320},{"hugoGeneSymbol":"LOC105374323","entrezGeneId":105374323},{"hugoGeneSymbol":"LOC105374325","entrezGeneId":105374325},{"hugoGeneSymbol":"LOC105374328","entrezGeneId":105374328},{"hugoGeneSymbol":"LOC105374329","entrezGeneId":105374329},{"hugoGeneSymbol":"LOC105374332","entrezGeneId":105374332},{"hugoGeneSymbol":"LOC105374333","entrezGeneId":105374333},{"hugoGeneSymbol":"LOC105374334","entrezGeneId":105374334},{"hugoGeneSymbol":"LOC105374336","entrezGeneId":105374336},{"hugoGeneSymbol":"LOC105374338","entrezGeneId":105374338},{"hugoGeneSymbol":"LOC105374339","entrezGeneId":105374339},{"hugoGeneSymbol":"LOC105374340","entrezGeneId":105374340},{"hugoGeneSymbol":"LOC105374341","entrezGeneId":105374341},{"hugoGeneSymbol":"LOC105374343","entrezGeneId":105374343},{"hugoGeneSymbol":"LOC105374344","entrezGeneId":105374344},{"hugoGeneSymbol":"LOC105374346","entrezGeneId":105374346},{"hugoGeneSymbol":"LOC105374347","entrezGeneId":105374347},{"hugoGeneSymbol":"LOC105374348","entrezGeneId":105374348},{"hugoGeneSymbol":"LOC105374349","entrezGeneId":105374349},{"hugoGeneSymbol":"LOC105374352","entrezGeneId":105374352},{"hugoGeneSymbol":"LOC105374353","entrezGeneId":105374353},{"hugoGeneSymbol":"LOC105374354","entrezGeneId":105374354},{"hugoGeneSymbol":"LOC105374355","entrezGeneId":105374355},{"hugoGeneSymbol":"LOC105374357","entrezGeneId":105374357},{"hugoGeneSymbol":"LOC105374358","entrezGeneId":105374358},{"hugoGeneSymbol":"LOC105374359","entrezGeneId":105374359},{"hugoGeneSymbol":"LOC105374362","entrezGeneId":105374362},{"hugoGeneSymbol":"LOC105374363","entrezGeneId":105374363},{"hugoGeneSymbol":"LOC105374364","entrezGeneId":105374364},{"hugoGeneSymbol":"LOC105374365","entrezGeneId":105374365},{"hugoGeneSymbol":"LOC105374367","entrezGeneId":105374367},{"hugoGeneSymbol":"LOC105374368","entrezGeneId":105374368},{"hugoGeneSymbol":"LOC105374369","entrezGeneId":105374369},{"hugoGeneSymbol":"LOC105374370","entrezGeneId":105374370},{"hugoGeneSymbol":"LOC105374371","entrezGeneId":105374371},{"hugoGeneSymbol":"LOC105374373","entrezGeneId":105374373},{"hugoGeneSymbol":"LOC105374376","entrezGeneId":105374376},{"hugoGeneSymbol":"LOC105374377","entrezGeneId":105374377},{"hugoGeneSymbol":"LOC105374378","entrezGeneId":105374378},{"hugoGeneSymbol":"LOC105374381","entrezGeneId":105374381},{"hugoGeneSymbol":"LOC105374382","entrezGeneId":105374382},{"hugoGeneSymbol":"LOC105374383","entrezGeneId":105374383},{"hugoGeneSymbol":"LOC105374384","entrezGeneId":105374384},{"hugoGeneSymbol":"LOC105374386","entrezGeneId":105374386},{"hugoGeneSymbol":"LOC105374389","entrezGeneId":105374389},{"hugoGeneSymbol":"LOC105374391","entrezGeneId":105374391},{"hugoGeneSymbol":"LOC105374392","entrezGeneId":105374392},{"hugoGeneSymbol":"LOC105374396","entrezGeneId":105374396},{"hugoGeneSymbol":"LOC105374397","entrezGeneId":105374397},{"hugoGeneSymbol":"LOC105374399","entrezGeneId":105374399},{"hugoGeneSymbol":"LOC105374402","entrezGeneId":105374402},{"hugoGeneSymbol":"LOC105374404","entrezGeneId":105374404},{"hugoGeneSymbol":"LOC105374406","entrezGeneId":105374406},{"hugoGeneSymbol":"LOC105374407","entrezGeneId":105374407},{"hugoGeneSymbol":"LOC105374408","entrezGeneId":105374408},{"hugoGeneSymbol":"LOC105374409","entrezGeneId":105374409},{"hugoGeneSymbol":"LOC105374412","entrezGeneId":105374412},{"hugoGeneSymbol":"LOC105374413","entrezGeneId":105374413},{"hugoGeneSymbol":"LOC105374414","entrezGeneId":105374414},{"hugoGeneSymbol":"LOC105374418","entrezGeneId":105374418},{"hugoGeneSymbol":"LOC105374419","entrezGeneId":105374419},{"hugoGeneSymbol":"LOC105374421","entrezGeneId":105374421},{"hugoGeneSymbol":"LOC105374423","entrezGeneId":105374423},{"hugoGeneSymbol":"LOC105374425","entrezGeneId":105374425},{"hugoGeneSymbol":"LOC105374426","entrezGeneId":105374426},{"hugoGeneSymbol":"LOC105374428","entrezGeneId":105374428},{"hugoGeneSymbol":"LOC105374430","entrezGeneId":105374430},{"hugoGeneSymbol":"LOC105374432","entrezGeneId":105374432},{"hugoGeneSymbol":"LOC105374433","entrezGeneId":105374433},{"hugoGeneSymbol":"LOC105374434","entrezGeneId":105374434},{"hugoGeneSymbol":"LOC105374435","entrezGeneId":105374435},{"hugoGeneSymbol":"LOC105374438","entrezGeneId":105374438},{"hugoGeneSymbol":"LOC105374439","entrezGeneId":105374439},{"hugoGeneSymbol":"LOC105374440","entrezGeneId":105374440},{"hugoGeneSymbol":"LOC105374441","entrezGeneId":105374441},{"hugoGeneSymbol":"LOC105374442","entrezGeneId":105374442},{"hugoGeneSymbol":"LOC105374443","entrezGeneId":105374443},{"hugoGeneSymbol":"LOC105374444","entrezGeneId":105374444},{"hugoGeneSymbol":"LOC105374445","entrezGeneId":105374445},{"hugoGeneSymbol":"LOC105374453","entrezGeneId":105374453},{"hugoGeneSymbol":"LOC105374454","entrezGeneId":105374454},{"hugoGeneSymbol":"LOC105374455","entrezGeneId":105374455},{"hugoGeneSymbol":"LOC105374456","entrezGeneId":105374456},{"hugoGeneSymbol":"LOC105374457","entrezGeneId":105374457},{"hugoGeneSymbol":"LOC105374458","entrezGeneId":105374458},{"hugoGeneSymbol":"LOC105374459","entrezGeneId":105374459},{"hugoGeneSymbol":"LOC105374461","entrezGeneId":105374461},{"hugoGeneSymbol":"LOC105374464","entrezGeneId":105374464},{"hugoGeneSymbol":"LOC105374465","entrezGeneId":105374465},{"hugoGeneSymbol":"LOC105374466","entrezGeneId":105374466},{"hugoGeneSymbol":"LOC105374467","entrezGeneId":105374467},{"hugoGeneSymbol":"LOC105374468","entrezGeneId":105374468},{"hugoGeneSymbol":"LOC105374470","entrezGeneId":105374470},{"hugoGeneSymbol":"LOC105374471","entrezGeneId":105374471},{"hugoGeneSymbol":"LOC105374473","entrezGeneId":105374473},{"hugoGeneSymbol":"LOC105374474","entrezGeneId":105374474},{"hugoGeneSymbol":"LOC105374475","entrezGeneId":105374475},{"hugoGeneSymbol":"LOC105374476","entrezGeneId":105374476},{"hugoGeneSymbol":"LOC105374478","entrezGeneId":105374478},{"hugoGeneSymbol":"LOC105374479","entrezGeneId":105374479},{"hugoGeneSymbol":"LOC105374480","entrezGeneId":105374480},{"hugoGeneSymbol":"LOC105374481","entrezGeneId":105374481},{"hugoGeneSymbol":"LOC105374482","entrezGeneId":105374482},{"hugoGeneSymbol":"LOC105374483","entrezGeneId":105374483},{"hugoGeneSymbol":"LOC105374488","entrezGeneId":105374488},{"hugoGeneSymbol":"LOC105374489","entrezGeneId":105374489},{"hugoGeneSymbol":"LOC105374490","entrezGeneId":105374490},{"hugoGeneSymbol":"LOC105374491","entrezGeneId":105374491},{"hugoGeneSymbol":"LOC105374492","entrezGeneId":105374492},{"hugoGeneSymbol":"LOC105374493","entrezGeneId":105374493},{"hugoGeneSymbol":"LOC105374494","entrezGeneId":105374494},{"hugoGeneSymbol":"LOC105374495","entrezGeneId":105374495},{"hugoGeneSymbol":"LOC105374496","entrezGeneId":105374496},{"hugoGeneSymbol":"LOC105374497","entrezGeneId":105374497},{"hugoGeneSymbol":"LOC105374498","entrezGeneId":105374498},{"hugoGeneSymbol":"LOC105374501","entrezGeneId":105374501},{"hugoGeneSymbol":"LOC105374502","entrezGeneId":105374502},{"hugoGeneSymbol":"LOC105374505","entrezGeneId":105374505},{"hugoGeneSymbol":"LOC105374506","entrezGeneId":105374506},{"hugoGeneSymbol":"LOC105374507","entrezGeneId":105374507},{"hugoGeneSymbol":"LOC105374510","entrezGeneId":105374510},{"hugoGeneSymbol":"LOC105374511","entrezGeneId":105374511},{"hugoGeneSymbol":"LOC105374513","entrezGeneId":105374513},{"hugoGeneSymbol":"LOC105374514","entrezGeneId":105374514},{"hugoGeneSymbol":"LOC105374515","entrezGeneId":105374515},{"hugoGeneSymbol":"LOC105374516","entrezGeneId":105374516},{"hugoGeneSymbol":"LOC105374517","entrezGeneId":105374517},{"hugoGeneSymbol":"LOC105374519","entrezGeneId":105374519},{"hugoGeneSymbol":"LOC105374520","entrezGeneId":105374520},{"hugoGeneSymbol":"LOC105374521","entrezGeneId":105374521},{"hugoGeneSymbol":"LOC105374523","entrezGeneId":105374523},{"hugoGeneSymbol":"LOC105374524","entrezGeneId":105374524},{"hugoGeneSymbol":"LOC105374525","entrezGeneId":105374525},{"hugoGeneSymbol":"LOC105374527","entrezGeneId":105374527},{"hugoGeneSymbol":"LOC105374528","entrezGeneId":105374528},{"hugoGeneSymbol":"LOC105374531","entrezGeneId":105374531},{"hugoGeneSymbol":"LOC105374534","entrezGeneId":105374534},{"hugoGeneSymbol":"LOC105374535","entrezGeneId":105374535},{"hugoGeneSymbol":"LOC105374536","entrezGeneId":105374536},{"hugoGeneSymbol":"LOC105374537","entrezGeneId":105374537},{"hugoGeneSymbol":"LOC105374538","entrezGeneId":105374538},{"hugoGeneSymbol":"LOC105374541","entrezGeneId":105374541},{"hugoGeneSymbol":"LOC105374542","entrezGeneId":105374542},{"hugoGeneSymbol":"LOC105374545","entrezGeneId":105374545},{"hugoGeneSymbol":"LOC105374546","entrezGeneId":105374546},{"hugoGeneSymbol":"LOC105374547","entrezGeneId":105374547},{"hugoGeneSymbol":"LOC105374548","entrezGeneId":105374548},{"hugoGeneSymbol":"LOC105374549","entrezGeneId":105374549},{"hugoGeneSymbol":"LOC105374550","entrezGeneId":105374550},{"hugoGeneSymbol":"LOC105374552","entrezGeneId":105374552},{"hugoGeneSymbol":"LOC105374553","entrezGeneId":105374553},{"hugoGeneSymbol":"LOC105374555","entrezGeneId":105374555},{"hugoGeneSymbol":"LOC105374556","entrezGeneId":105374556},{"hugoGeneSymbol":"LOC105374557","entrezGeneId":105374557},{"hugoGeneSymbol":"LOC105374558","entrezGeneId":105374558},{"hugoGeneSymbol":"LOC105374559","entrezGeneId":105374559},{"hugoGeneSymbol":"LOC105374562","entrezGeneId":105374562},{"hugoGeneSymbol":"LOC105374564","entrezGeneId":105374564},{"hugoGeneSymbol":"LOC105374566","entrezGeneId":105374566},{"hugoGeneSymbol":"LOC105374567","entrezGeneId":105374567},{"hugoGeneSymbol":"LOC105374568","entrezGeneId":105374568},{"hugoGeneSymbol":"LOC105374570","entrezGeneId":105374570},{"hugoGeneSymbol":"LOC105374571","entrezGeneId":105374571},{"hugoGeneSymbol":"LOC105374573","entrezGeneId":105374573},{"hugoGeneSymbol":"LOC105374576","entrezGeneId":105374576},{"hugoGeneSymbol":"LOC105374577","entrezGeneId":105374577},{"hugoGeneSymbol":"LOC105374580","entrezGeneId":105374580},{"hugoGeneSymbol":"LOC105374581","entrezGeneId":105374581},{"hugoGeneSymbol":"LOC105374584","entrezGeneId":105374584},{"hugoGeneSymbol":"LOC105374588","entrezGeneId":105374588},{"hugoGeneSymbol":"LOC105374589","entrezGeneId":105374589},{"hugoGeneSymbol":"LOC105374590","entrezGeneId":105374590},{"hugoGeneSymbol":"LOC105374591","entrezGeneId":105374591},{"hugoGeneSymbol":"LOC105374592","entrezGeneId":105374592},{"hugoGeneSymbol":"LOC105374593","entrezGeneId":105374593},{"hugoGeneSymbol":"LOC105374594","entrezGeneId":105374594},{"hugoGeneSymbol":"LOC105374595","entrezGeneId":105374595},{"hugoGeneSymbol":"LOC105374597","entrezGeneId":105374597},{"hugoGeneSymbol":"LOC105374598","entrezGeneId":105374598},{"hugoGeneSymbol":"LOC105374600","entrezGeneId":105374600},{"hugoGeneSymbol":"LOC105374601","entrezGeneId":105374601},{"hugoGeneSymbol":"LOC105374602","entrezGeneId":105374602},{"hugoGeneSymbol":"LOC105374606","entrezGeneId":105374606},{"hugoGeneSymbol":"LOC105374607","entrezGeneId":105374607},{"hugoGeneSymbol":"LOC105374608","entrezGeneId":105374608},{"hugoGeneSymbol":"LOC105374610","entrezGeneId":105374610},{"hugoGeneSymbol":"LOC105374612","entrezGeneId":105374612},{"hugoGeneSymbol":"LOC105374614","entrezGeneId":105374614},{"hugoGeneSymbol":"LOC105374615","entrezGeneId":105374615},{"hugoGeneSymbol":"LOC105374616","entrezGeneId":105374616},{"hugoGeneSymbol":"LOC105374618","entrezGeneId":105374618},{"hugoGeneSymbol":"LOC105374620","entrezGeneId":105374620},{"hugoGeneSymbol":"LOC105374621","entrezGeneId":105374621},{"hugoGeneSymbol":"LOC105374625","entrezGeneId":105374625},{"hugoGeneSymbol":"LOC105374626","entrezGeneId":105374626},{"hugoGeneSymbol":"LOC105374629","entrezGeneId":105374629},{"hugoGeneSymbol":"LOC105374630","entrezGeneId":105374630},{"hugoGeneSymbol":"LOC105374634","entrezGeneId":105374634},{"hugoGeneSymbol":"LOC105374636","entrezGeneId":105374636},{"hugoGeneSymbol":"LOC105374639","entrezGeneId":105374639},{"hugoGeneSymbol":"LOC105374640","entrezGeneId":105374640},{"hugoGeneSymbol":"LOC105374641","entrezGeneId":105374641},{"hugoGeneSymbol":"LOC105374642","entrezGeneId":105374642},{"hugoGeneSymbol":"LOC105374643","entrezGeneId":105374643},{"hugoGeneSymbol":"LOC105374645","entrezGeneId":105374645},{"hugoGeneSymbol":"LOC105374646","entrezGeneId":105374646},{"hugoGeneSymbol":"LOC105374647","entrezGeneId":105374647},{"hugoGeneSymbol":"LOC105374649","entrezGeneId":105374649},{"hugoGeneSymbol":"LOC105374651","entrezGeneId":105374651},{"hugoGeneSymbol":"LOC105374652","entrezGeneId":105374652},{"hugoGeneSymbol":"LOC105374653","entrezGeneId":105374653},{"hugoGeneSymbol":"LOC105374654","entrezGeneId":105374654},{"hugoGeneSymbol":"LOC105374655","entrezGeneId":105374655},{"hugoGeneSymbol":"LOC105374656","entrezGeneId":105374656},{"hugoGeneSymbol":"LOC105374657","entrezGeneId":105374657},{"hugoGeneSymbol":"LOC105374659","entrezGeneId":105374659},{"hugoGeneSymbol":"LOC105374660","entrezGeneId":105374660},{"hugoGeneSymbol":"LOC105374661","entrezGeneId":105374661},{"hugoGeneSymbol":"LOC105374662","entrezGeneId":105374662},{"hugoGeneSymbol":"LOC105374663","entrezGeneId":105374663},{"hugoGeneSymbol":"LOC105374664","entrezGeneId":105374664},{"hugoGeneSymbol":"LOC105374666","entrezGeneId":105374666},{"hugoGeneSymbol":"LOC105374667","entrezGeneId":105374667},{"hugoGeneSymbol":"LOC105374668","entrezGeneId":105374668},{"hugoGeneSymbol":"LOC105374669","entrezGeneId":105374669},{"hugoGeneSymbol":"LOC105374672","entrezGeneId":105374672},{"hugoGeneSymbol":"LOC105374673","entrezGeneId":105374673},{"hugoGeneSymbol":"LOC105374674","entrezGeneId":105374674},{"hugoGeneSymbol":"LOC105374678","entrezGeneId":105374678},{"hugoGeneSymbol":"LOC105374681","entrezGeneId":105374681},{"hugoGeneSymbol":"LOC105374682","entrezGeneId":105374682},{"hugoGeneSymbol":"LOC105374683","entrezGeneId":105374683},{"hugoGeneSymbol":"LOC105374685","entrezGeneId":105374685},{"hugoGeneSymbol":"LOC105374686","entrezGeneId":105374686},{"hugoGeneSymbol":"LOC105374687","entrezGeneId":105374687},{"hugoGeneSymbol":"LOC105374688","entrezGeneId":105374688},{"hugoGeneSymbol":"LOC105374689","entrezGeneId":105374689},{"hugoGeneSymbol":"LOC105374690","entrezGeneId":105374690},{"hugoGeneSymbol":"LOC105374695","entrezGeneId":105374695},{"hugoGeneSymbol":"LOC105374696","entrezGeneId":105374696},{"hugoGeneSymbol":"LOC105374697","entrezGeneId":105374697},{"hugoGeneSymbol":"LOC105374699","entrezGeneId":105374699},{"hugoGeneSymbol":"LOC105374701","entrezGeneId":105374701},{"hugoGeneSymbol":"LOC105374702","entrezGeneId":105374702},{"hugoGeneSymbol":"LOC105374703","entrezGeneId":105374703},{"hugoGeneSymbol":"LOC105374704","entrezGeneId":105374704},{"hugoGeneSymbol":"LOC105374705","entrezGeneId":105374705},{"hugoGeneSymbol":"LOC105374706","entrezGeneId":105374706},{"hugoGeneSymbol":"LOC105374707","entrezGeneId":105374707},{"hugoGeneSymbol":"LOC105374709","entrezGeneId":105374709},{"hugoGeneSymbol":"LOC105374711","entrezGeneId":105374711},{"hugoGeneSymbol":"LOC105374715","entrezGeneId":105374715},{"hugoGeneSymbol":"LOC105374717","entrezGeneId":105374717},{"hugoGeneSymbol":"LOC105374719","entrezGeneId":105374719},{"hugoGeneSymbol":"LOC105374721","entrezGeneId":105374721},{"hugoGeneSymbol":"LOC105374723","entrezGeneId":105374723},{"hugoGeneSymbol":"LOC105374724","entrezGeneId":105374724},{"hugoGeneSymbol":"LOC105374726","entrezGeneId":105374726},{"hugoGeneSymbol":"LOC105374727","entrezGeneId":105374727},{"hugoGeneSymbol":"LOC105374730","entrezGeneId":105374730},{"hugoGeneSymbol":"LOC105374732","entrezGeneId":105374732},{"hugoGeneSymbol":"LOC105374733","entrezGeneId":105374733},{"hugoGeneSymbol":"LOC105374735","entrezGeneId":105374735},{"hugoGeneSymbol":"LOC105374736","entrezGeneId":105374736},{"hugoGeneSymbol":"LOC105374737","entrezGeneId":105374737},{"hugoGeneSymbol":"LOC105374739","entrezGeneId":105374739},{"hugoGeneSymbol":"LOC105374740","entrezGeneId":105374740},{"hugoGeneSymbol":"LOC105374745","entrezGeneId":105374745},{"hugoGeneSymbol":"LOC105374746","entrezGeneId":105374746},{"hugoGeneSymbol":"LOC105374748","entrezGeneId":105374748},{"hugoGeneSymbol":"LOC105374749","entrezGeneId":105374749},{"hugoGeneSymbol":"LOC105374754","entrezGeneId":105374754},{"hugoGeneSymbol":"LOC105374758","entrezGeneId":105374758},{"hugoGeneSymbol":"LOC105374759","entrezGeneId":105374759},{"hugoGeneSymbol":"LOC105374760","entrezGeneId":105374760},{"hugoGeneSymbol":"LOC105374761","entrezGeneId":105374761},{"hugoGeneSymbol":"LOC105374764","entrezGeneId":105374764},{"hugoGeneSymbol":"LOC105374768","entrezGeneId":105374768},{"hugoGeneSymbol":"LOC105374769","entrezGeneId":105374769},{"hugoGeneSymbol":"LOC105374771","entrezGeneId":105374771},{"hugoGeneSymbol":"LOC105374772","entrezGeneId":105374772},{"hugoGeneSymbol":"LOC105374773","entrezGeneId":105374773},{"hugoGeneSymbol":"LOC105374775","entrezGeneId":105374775},{"hugoGeneSymbol":"LOC105374776","entrezGeneId":105374776},{"hugoGeneSymbol":"LOC105374777","entrezGeneId":105374777},{"hugoGeneSymbol":"LOC105374780","entrezGeneId":105374780},{"hugoGeneSymbol":"LOC105374781","entrezGeneId":105374781},{"hugoGeneSymbol":"LOC105374785","entrezGeneId":105374785},{"hugoGeneSymbol":"LOC105374786","entrezGeneId":105374786},{"hugoGeneSymbol":"LOC105374789","entrezGeneId":105374789},{"hugoGeneSymbol":"LOC105374790","entrezGeneId":105374790},{"hugoGeneSymbol":"LOC105374792","entrezGeneId":105374792},{"hugoGeneSymbol":"LOC105374793","entrezGeneId":105374793},{"hugoGeneSymbol":"LOC105374794","entrezGeneId":105374794},{"hugoGeneSymbol":"LOC105374795","entrezGeneId":105374795},{"hugoGeneSymbol":"LOC105374796","entrezGeneId":105374796},{"hugoGeneSymbol":"LOC105374797","entrezGeneId":105374797},{"hugoGeneSymbol":"LOC105374798","entrezGeneId":105374798},{"hugoGeneSymbol":"LOC105374800","entrezGeneId":105374800},{"hugoGeneSymbol":"LOC105374802","entrezGeneId":105374802},{"hugoGeneSymbol":"LOC105374803","entrezGeneId":105374803},{"hugoGeneSymbol":"LOC105374804","entrezGeneId":105374804},{"hugoGeneSymbol":"LOC105374807","entrezGeneId":105374807},{"hugoGeneSymbol":"LOC105374808","entrezGeneId":105374808},{"hugoGeneSymbol":"LOC105374809","entrezGeneId":105374809},{"hugoGeneSymbol":"LOC105374810","entrezGeneId":105374810},{"hugoGeneSymbol":"LOC105374811","entrezGeneId":105374811},{"hugoGeneSymbol":"LOC105374812","entrezGeneId":105374812},{"hugoGeneSymbol":"LOC105374813","entrezGeneId":105374813},{"hugoGeneSymbol":"LOC105374814","entrezGeneId":105374814},{"hugoGeneSymbol":"LOC105374815","entrezGeneId":105374815},{"hugoGeneSymbol":"LOC105374816","entrezGeneId":105374816},{"hugoGeneSymbol":"LOC105374817","entrezGeneId":105374817},{"hugoGeneSymbol":"LOC105374819","entrezGeneId":105374819},{"hugoGeneSymbol":"LOC105374820","entrezGeneId":105374820},{"hugoGeneSymbol":"LOC105374821","entrezGeneId":105374821},{"hugoGeneSymbol":"LOC105374822","entrezGeneId":105374822},{"hugoGeneSymbol":"LOC105374823","entrezGeneId":105374823},{"hugoGeneSymbol":"LOC105374824","entrezGeneId":105374824},{"hugoGeneSymbol":"LOC105374827","entrezGeneId":105374827},{"hugoGeneSymbol":"LOC105374828","entrezGeneId":105374828},{"hugoGeneSymbol":"LOC105374829","entrezGeneId":105374829},{"hugoGeneSymbol":"LOC105374831","entrezGeneId":105374831},{"hugoGeneSymbol":"LOC105374832","entrezGeneId":105374832},{"hugoGeneSymbol":"LOC105374833","entrezGeneId":105374833},{"hugoGeneSymbol":"LOC105374834","entrezGeneId":105374834},{"hugoGeneSymbol":"LOC105374835","entrezGeneId":105374835},{"hugoGeneSymbol":"LOC105374836","entrezGeneId":105374836},{"hugoGeneSymbol":"LOC105374837","entrezGeneId":105374837},{"hugoGeneSymbol":"LOC105374838","entrezGeneId":105374838},{"hugoGeneSymbol":"LOC105374839","entrezGeneId":105374839},{"hugoGeneSymbol":"LOC105374841","entrezGeneId":105374841},{"hugoGeneSymbol":"LOC105374842","entrezGeneId":105374842},{"hugoGeneSymbol":"LOC105374843","entrezGeneId":105374843},{"hugoGeneSymbol":"LOC105374845","entrezGeneId":105374845},{"hugoGeneSymbol":"LOC105374846","entrezGeneId":105374846},{"hugoGeneSymbol":"LOC105374848","entrezGeneId":105374848},{"hugoGeneSymbol":"LOC105374851","entrezGeneId":105374851},{"hugoGeneSymbol":"LOC105374852","entrezGeneId":105374852},{"hugoGeneSymbol":"LOC105374853","entrezGeneId":105374853},{"hugoGeneSymbol":"LOC105374854","entrezGeneId":105374854},{"hugoGeneSymbol":"LOC105374855","entrezGeneId":105374855},{"hugoGeneSymbol":"LOC105374857","entrezGeneId":105374857},{"hugoGeneSymbol":"LOC105374858","entrezGeneId":105374858},{"hugoGeneSymbol":"LOC105374859","entrezGeneId":105374859},{"hugoGeneSymbol":"LOC105374862","entrezGeneId":105374862},{"hugoGeneSymbol":"LOC105374866","entrezGeneId":105374866},{"hugoGeneSymbol":"LOC105374868","entrezGeneId":105374868},{"hugoGeneSymbol":"LOC105374869","entrezGeneId":105374869},{"hugoGeneSymbol":"LOC105374870","entrezGeneId":105374870},{"hugoGeneSymbol":"LOC105374873","entrezGeneId":105374873},{"hugoGeneSymbol":"LOC105374875","entrezGeneId":105374875},{"hugoGeneSymbol":"LOC105374879","entrezGeneId":105374879},{"hugoGeneSymbol":"LOC105374880","entrezGeneId":105374880},{"hugoGeneSymbol":"LOC105374882","entrezGeneId":105374882},{"hugoGeneSymbol":"LOC105374883","entrezGeneId":105374883},{"hugoGeneSymbol":"LOC105374887","entrezGeneId":105374887},{"hugoGeneSymbol":"LOC105374888","entrezGeneId":105374888},{"hugoGeneSymbol":"LOC105374889","entrezGeneId":105374889},{"hugoGeneSymbol":"LOC105374890","entrezGeneId":105374890},{"hugoGeneSymbol":"LOC105374893","entrezGeneId":105374893},{"hugoGeneSymbol":"LOC105374894","entrezGeneId":105374894},{"hugoGeneSymbol":"LOC105374897","entrezGeneId":105374897},{"hugoGeneSymbol":"LOC105374898","entrezGeneId":105374898},{"hugoGeneSymbol":"LOC105374901","entrezGeneId":105374901},{"hugoGeneSymbol":"LOC105374902","entrezGeneId":105374902},{"hugoGeneSymbol":"LOC105374903","entrezGeneId":105374903},{"hugoGeneSymbol":"LOC105374904","entrezGeneId":105374904},{"hugoGeneSymbol":"LOC105374906","entrezGeneId":105374906},{"hugoGeneSymbol":"LOC105374907","entrezGeneId":105374907},{"hugoGeneSymbol":"LOC105374910","entrezGeneId":105374910},{"hugoGeneSymbol":"LOC105374911","entrezGeneId":105374911},{"hugoGeneSymbol":"LOC105374912","entrezGeneId":105374912},{"hugoGeneSymbol":"LOC105374913","entrezGeneId":105374913},{"hugoGeneSymbol":"LOC105374914","entrezGeneId":105374914},{"hugoGeneSymbol":"LOC105374918","entrezGeneId":105374918},{"hugoGeneSymbol":"LOC105374919","entrezGeneId":105374919},{"hugoGeneSymbol":"LOC105374920","entrezGeneId":105374920},{"hugoGeneSymbol":"LOC105374921","entrezGeneId":105374921},{"hugoGeneSymbol":"LOC105374923","entrezGeneId":105374923},{"hugoGeneSymbol":"LOC105374924","entrezGeneId":105374924},{"hugoGeneSymbol":"LOC105374925","entrezGeneId":105374925},{"hugoGeneSymbol":"LOC105374927","entrezGeneId":105374927},{"hugoGeneSymbol":"LOC105374928","entrezGeneId":105374928},{"hugoGeneSymbol":"LOC105374929","entrezGeneId":105374929},{"hugoGeneSymbol":"LOC105374931","entrezGeneId":105374931},{"hugoGeneSymbol":"LOC105374933","entrezGeneId":105374933},{"hugoGeneSymbol":"LOC105374934","entrezGeneId":105374934},{"hugoGeneSymbol":"LOC105374935","entrezGeneId":105374935},{"hugoGeneSymbol":"LOC105374936","entrezGeneId":105374936},{"hugoGeneSymbol":"LOC105374937","entrezGeneId":105374937},{"hugoGeneSymbol":"LOC105374938","entrezGeneId":105374938},{"hugoGeneSymbol":"LOC105374939","entrezGeneId":105374939},{"hugoGeneSymbol":"LOC105374940","entrezGeneId":105374940},{"hugoGeneSymbol":"LOC105374942","entrezGeneId":105374942},{"hugoGeneSymbol":"LOC105374943","entrezGeneId":105374943},{"hugoGeneSymbol":"LOC105374944","entrezGeneId":105374944},{"hugoGeneSymbol":"LOC105374945","entrezGeneId":105374945},{"hugoGeneSymbol":"LOC105374946","entrezGeneId":105374946},{"hugoGeneSymbol":"LOC105374947","entrezGeneId":105374947},{"hugoGeneSymbol":"LOC105374948","entrezGeneId":105374948},{"hugoGeneSymbol":"LOC105374949","entrezGeneId":105374949},{"hugoGeneSymbol":"LOC105374951","entrezGeneId":105374951},{"hugoGeneSymbol":"LOC105374952","entrezGeneId":105374952},{"hugoGeneSymbol":"LOC105374953","entrezGeneId":105374953},{"hugoGeneSymbol":"LOC105374955","entrezGeneId":105374955},{"hugoGeneSymbol":"LOC105374957","entrezGeneId":105374957},{"hugoGeneSymbol":"LOC105374958","entrezGeneId":105374958},{"hugoGeneSymbol":"LOC105374959","entrezGeneId":105374959},{"hugoGeneSymbol":"LOC105374960","entrezGeneId":105374960},{"hugoGeneSymbol":"LOC105374961","entrezGeneId":105374961},{"hugoGeneSymbol":"LOC105374963","entrezGeneId":105374963},{"hugoGeneSymbol":"LOC105374965","entrezGeneId":105374965},{"hugoGeneSymbol":"LOC105374966","entrezGeneId":105374966},{"hugoGeneSymbol":"LOC105374968","entrezGeneId":105374968},{"hugoGeneSymbol":"LOC105374970","entrezGeneId":105374970},{"hugoGeneSymbol":"LOC105374971","entrezGeneId":105374971},{"hugoGeneSymbol":"LOC105374972","entrezGeneId":105374972},{"hugoGeneSymbol":"LOC105374973","entrezGeneId":105374973},{"hugoGeneSymbol":"LOC105374974","entrezGeneId":105374974},{"hugoGeneSymbol":"LOC105374975","entrezGeneId":105374975},{"hugoGeneSymbol":"LOC105374976","entrezGeneId":105374976},{"hugoGeneSymbol":"LOC105374978","entrezGeneId":105374978},{"hugoGeneSymbol":"LOC105374981","entrezGeneId":105374981},{"hugoGeneSymbol":"LOC105374985","entrezGeneId":105374985},{"hugoGeneSymbol":"LOC105374986","entrezGeneId":105374986},{"hugoGeneSymbol":"LOC105374988","entrezGeneId":105374988},{"hugoGeneSymbol":"LOC105374989","entrezGeneId":105374989},{"hugoGeneSymbol":"LOC105374991","entrezGeneId":105374991},{"hugoGeneSymbol":"LOC105374992","entrezGeneId":105374992},{"hugoGeneSymbol":"LOC105374995","entrezGeneId":105374995},{"hugoGeneSymbol":"LOC105374996","entrezGeneId":105374996},{"hugoGeneSymbol":"LOC105374997","entrezGeneId":105374997},{"hugoGeneSymbol":"LOC105374998","entrezGeneId":105374998},{"hugoGeneSymbol":"LOC105375001","entrezGeneId":105375001},{"hugoGeneSymbol":"LOC105375002","entrezGeneId":105375002},{"hugoGeneSymbol":"LOC105375003","entrezGeneId":105375003},{"hugoGeneSymbol":"LOC105375005","entrezGeneId":105375005},{"hugoGeneSymbol":"LOC105375006","entrezGeneId":105375006},{"hugoGeneSymbol":"LOC105375008","entrezGeneId":105375008},{"hugoGeneSymbol":"LOC105375009","entrezGeneId":105375009},{"hugoGeneSymbol":"LOC105375010","entrezGeneId":105375010},{"hugoGeneSymbol":"LOC105375012","entrezGeneId":105375012},{"hugoGeneSymbol":"LOC105375018","entrezGeneId":105375018},{"hugoGeneSymbol":"LOC105375019","entrezGeneId":105375019},{"hugoGeneSymbol":"LOC105375020","entrezGeneId":105375020},{"hugoGeneSymbol":"LOC105375021","entrezGeneId":105375021},{"hugoGeneSymbol":"LOC105375022","entrezGeneId":105375022},{"hugoGeneSymbol":"LOC105375023","entrezGeneId":105375023},{"hugoGeneSymbol":"LOC105375024","entrezGeneId":105375024},{"hugoGeneSymbol":"LOC105375025","entrezGeneId":105375025},{"hugoGeneSymbol":"LOC105375026","entrezGeneId":105375026},{"hugoGeneSymbol":"LOC105375027","entrezGeneId":105375027},{"hugoGeneSymbol":"LOC105375028","entrezGeneId":105375028},{"hugoGeneSymbol":"LOC105375034","entrezGeneId":105375034},{"hugoGeneSymbol":"LOC105375035","entrezGeneId":105375035},{"hugoGeneSymbol":"LOC105375036","entrezGeneId":105375036},{"hugoGeneSymbol":"LOC105375037","entrezGeneId":105375037},{"hugoGeneSymbol":"LOC105375038","entrezGeneId":105375038},{"hugoGeneSymbol":"LOC105375040","entrezGeneId":105375040},{"hugoGeneSymbol":"LOC105375044","entrezGeneId":105375044},{"hugoGeneSymbol":"LOC105375045","entrezGeneId":105375045},{"hugoGeneSymbol":"LOC105375046","entrezGeneId":105375046},{"hugoGeneSymbol":"LOC105375047","entrezGeneId":105375047},{"hugoGeneSymbol":"LOC105375049","entrezGeneId":105375049},{"hugoGeneSymbol":"LOC105375050","entrezGeneId":105375050},{"hugoGeneSymbol":"LOC105375051","entrezGeneId":105375051},{"hugoGeneSymbol":"LOC105375052","entrezGeneId":105375052},{"hugoGeneSymbol":"LOC105375053","entrezGeneId":105375053},{"hugoGeneSymbol":"LOC105375055","entrezGeneId":105375055},{"hugoGeneSymbol":"LOC105375056","entrezGeneId":105375056},{"hugoGeneSymbol":"LOC105375059","entrezGeneId":105375059},{"hugoGeneSymbol":"LOC105375060","entrezGeneId":105375060},{"hugoGeneSymbol":"LOC105375061","entrezGeneId":105375061},{"hugoGeneSymbol":"LOC105375063","entrezGeneId":105375063},{"hugoGeneSymbol":"LOC105375064","entrezGeneId":105375064},{"hugoGeneSymbol":"LOC105375065","entrezGeneId":105375065},{"hugoGeneSymbol":"LOC105375067","entrezGeneId":105375067},{"hugoGeneSymbol":"LOC105375068","entrezGeneId":105375068},{"hugoGeneSymbol":"LOC105375069","entrezGeneId":105375069},{"hugoGeneSymbol":"LOC105375070","entrezGeneId":105375070},{"hugoGeneSymbol":"LOC105375072","entrezGeneId":105375072},{"hugoGeneSymbol":"LOC105375074","entrezGeneId":105375074},{"hugoGeneSymbol":"LOC105375075","entrezGeneId":105375075},{"hugoGeneSymbol":"LOC105375078","entrezGeneId":105375078},{"hugoGeneSymbol":"LOC105375079","entrezGeneId":105375079},{"hugoGeneSymbol":"LOC105375080","entrezGeneId":105375080},{"hugoGeneSymbol":"LOC105375081","entrezGeneId":105375081},{"hugoGeneSymbol":"LOC105375082","entrezGeneId":105375082},{"hugoGeneSymbol":"LOC105375084","entrezGeneId":105375084},{"hugoGeneSymbol":"LOC105375085","entrezGeneId":105375085},{"hugoGeneSymbol":"LOC105375087","entrezGeneId":105375087},{"hugoGeneSymbol":"LOC105375091","entrezGeneId":105375091},{"hugoGeneSymbol":"LOC105375095","entrezGeneId":105375095},{"hugoGeneSymbol":"LOC105375097","entrezGeneId":105375097},{"hugoGeneSymbol":"LOC105375098","entrezGeneId":105375098},{"hugoGeneSymbol":"LOC105375100","entrezGeneId":105375100},{"hugoGeneSymbol":"LOC105375101","entrezGeneId":105375101},{"hugoGeneSymbol":"LOC105375102","entrezGeneId":105375102},{"hugoGeneSymbol":"LOC105375103","entrezGeneId":105375103},{"hugoGeneSymbol":"LOC105375106","entrezGeneId":105375106},{"hugoGeneSymbol":"LOC105375107","entrezGeneId":105375107},{"hugoGeneSymbol":"LOC105375112","entrezGeneId":105375112},{"hugoGeneSymbol":"LOC105375113","entrezGeneId":105375113},{"hugoGeneSymbol":"LOC105375114","entrezGeneId":105375114},{"hugoGeneSymbol":"LOC105375115","entrezGeneId":105375115},{"hugoGeneSymbol":"LOC105375116","entrezGeneId":105375116},{"hugoGeneSymbol":"LOC105375118","entrezGeneId":105375118},{"hugoGeneSymbol":"LOC105375119","entrezGeneId":105375119},{"hugoGeneSymbol":"LOC105375120","entrezGeneId":105375120},{"hugoGeneSymbol":"LOC105375122","entrezGeneId":105375122},{"hugoGeneSymbol":"LOC105375123","entrezGeneId":105375123},{"hugoGeneSymbol":"LOC105375124","entrezGeneId":105375124},{"hugoGeneSymbol":"LOC105375126","entrezGeneId":105375126},{"hugoGeneSymbol":"LOC105375127","entrezGeneId":105375127},{"hugoGeneSymbol":"LOC105375128","entrezGeneId":105375128},{"hugoGeneSymbol":"LOC105375130","entrezGeneId":105375130},{"hugoGeneSymbol":"LOC105375131","entrezGeneId":105375131},{"hugoGeneSymbol":"LOC105375132","entrezGeneId":105375132},{"hugoGeneSymbol":"LOC105375133","entrezGeneId":105375133},{"hugoGeneSymbol":"LOC105375134","entrezGeneId":105375134},{"hugoGeneSymbol":"LOC105375138","entrezGeneId":105375138},{"hugoGeneSymbol":"LOC105375142","entrezGeneId":105375142},{"hugoGeneSymbol":"LOC105375144","entrezGeneId":105375144},{"hugoGeneSymbol":"LOC105375145","entrezGeneId":105375145},{"hugoGeneSymbol":"LOC105375146","entrezGeneId":105375146},{"hugoGeneSymbol":"LOC105375147","entrezGeneId":105375147},{"hugoGeneSymbol":"LOC105375148","entrezGeneId":105375148},{"hugoGeneSymbol":"LOC105375149","entrezGeneId":105375149},{"hugoGeneSymbol":"LOC105375150","entrezGeneId":105375150},{"hugoGeneSymbol":"LOC105375151","entrezGeneId":105375151},{"hugoGeneSymbol":"LOC105375153","entrezGeneId":105375153},{"hugoGeneSymbol":"LOC105375154","entrezGeneId":105375154},{"hugoGeneSymbol":"LOC105375155","entrezGeneId":105375155},{"hugoGeneSymbol":"LOC105375156","entrezGeneId":105375156},{"hugoGeneSymbol":"LOC105375157","entrezGeneId":105375157},{"hugoGeneSymbol":"LOC105375158","entrezGeneId":105375158},{"hugoGeneSymbol":"LOC105375161","entrezGeneId":105375161},{"hugoGeneSymbol":"LOC105375162","entrezGeneId":105375162},{"hugoGeneSymbol":"LOC105375163","entrezGeneId":105375163},{"hugoGeneSymbol":"LOC105375164","entrezGeneId":105375164},{"hugoGeneSymbol":"LOC105375166","entrezGeneId":105375166},{"hugoGeneSymbol":"LOC105375167","entrezGeneId":105375167},{"hugoGeneSymbol":"LOC105375168","entrezGeneId":105375168},{"hugoGeneSymbol":"LOC105375169","entrezGeneId":105375169},{"hugoGeneSymbol":"LOC105375170","entrezGeneId":105375170},{"hugoGeneSymbol":"LOC105375171","entrezGeneId":105375171},{"hugoGeneSymbol":"LOC105375172","entrezGeneId":105375172},{"hugoGeneSymbol":"LOC105375174","entrezGeneId":105375174},{"hugoGeneSymbol":"LOC105375176","entrezGeneId":105375176},{"hugoGeneSymbol":"LOC105375179","entrezGeneId":105375179},{"hugoGeneSymbol":"LOC105375180","entrezGeneId":105375180},{"hugoGeneSymbol":"LOC105375181","entrezGeneId":105375181},{"hugoGeneSymbol":"LOC105375183","entrezGeneId":105375183},{"hugoGeneSymbol":"LOC105375184","entrezGeneId":105375184},{"hugoGeneSymbol":"LOC105375185","entrezGeneId":105375185},{"hugoGeneSymbol":"LOC105375186","entrezGeneId":105375186},{"hugoGeneSymbol":"LOC105375187","entrezGeneId":105375187},{"hugoGeneSymbol":"LOC105375188","entrezGeneId":105375188},{"hugoGeneSymbol":"LOC105375191","entrezGeneId":105375191},{"hugoGeneSymbol":"LOC105375193","entrezGeneId":105375193},{"hugoGeneSymbol":"LOC105375194","entrezGeneId":105375194},{"hugoGeneSymbol":"LOC105375195","entrezGeneId":105375195},{"hugoGeneSymbol":"LOC105375196","entrezGeneId":105375196},{"hugoGeneSymbol":"LOC105375198","entrezGeneId":105375198},{"hugoGeneSymbol":"LOC105375199","entrezGeneId":105375199},{"hugoGeneSymbol":"LOC105375200","entrezGeneId":105375200},{"hugoGeneSymbol":"LOC105375202","entrezGeneId":105375202},{"hugoGeneSymbol":"LOC105375205","entrezGeneId":105375205},{"hugoGeneSymbol":"LOC105375206","entrezGeneId":105375206},{"hugoGeneSymbol":"LOC105375207","entrezGeneId":105375207},{"hugoGeneSymbol":"LOC105375208","entrezGeneId":105375208},{"hugoGeneSymbol":"LOC105375210","entrezGeneId":105375210},{"hugoGeneSymbol":"LOC105375211","entrezGeneId":105375211},{"hugoGeneSymbol":"LOC105375213","entrezGeneId":105375213},{"hugoGeneSymbol":"LOC105375215","entrezGeneId":105375215},{"hugoGeneSymbol":"LOC105375216","entrezGeneId":105375216},{"hugoGeneSymbol":"LOC105375217","entrezGeneId":105375217},{"hugoGeneSymbol":"LOC105375218","entrezGeneId":105375218},{"hugoGeneSymbol":"LOC105375219","entrezGeneId":105375219},{"hugoGeneSymbol":"LOC105375220","entrezGeneId":105375220},{"hugoGeneSymbol":"LOC105375221","entrezGeneId":105375221},{"hugoGeneSymbol":"LOC105375222","entrezGeneId":105375222},{"hugoGeneSymbol":"LOC105375224","entrezGeneId":105375224},{"hugoGeneSymbol":"LOC105375228","entrezGeneId":105375228},{"hugoGeneSymbol":"LOC105375230","entrezGeneId":105375230},{"hugoGeneSymbol":"LOC105375231","entrezGeneId":105375231},{"hugoGeneSymbol":"LOC105375233","entrezGeneId":105375233},{"hugoGeneSymbol":"LOC105375235","entrezGeneId":105375235},{"hugoGeneSymbol":"LOC105375236","entrezGeneId":105375236},{"hugoGeneSymbol":"LOC105375237","entrezGeneId":105375237},{"hugoGeneSymbol":"LOC105375238","entrezGeneId":105375238},{"hugoGeneSymbol":"LOC105375239","entrezGeneId":105375239},{"hugoGeneSymbol":"LOC105375240","entrezGeneId":105375240},{"hugoGeneSymbol":"LOC105375241","entrezGeneId":105375241},{"hugoGeneSymbol":"LOC105375242","entrezGeneId":105375242},{"hugoGeneSymbol":"LOC105375243","entrezGeneId":105375243},{"hugoGeneSymbol":"LOC105375244","entrezGeneId":105375244},{"hugoGeneSymbol":"LOC105375245","entrezGeneId":105375245},{"hugoGeneSymbol":"LOC105375246","entrezGeneId":105375246},{"hugoGeneSymbol":"LOC105375247","entrezGeneId":105375247},{"hugoGeneSymbol":"LOC105375248","entrezGeneId":105375248},{"hugoGeneSymbol":"LOC105375249","entrezGeneId":105375249},{"hugoGeneSymbol":"LOC105375250","entrezGeneId":105375250},{"hugoGeneSymbol":"LOC105375251","entrezGeneId":105375251},{"hugoGeneSymbol":"LOC105375252","entrezGeneId":105375252},{"hugoGeneSymbol":"LOC105375253","entrezGeneId":105375253},{"hugoGeneSymbol":"LOC105375257","entrezGeneId":105375257},{"hugoGeneSymbol":"LOC105375258","entrezGeneId":105375258},{"hugoGeneSymbol":"LOC105375259","entrezGeneId":105375259},{"hugoGeneSymbol":"LOC105375260","entrezGeneId":105375260},{"hugoGeneSymbol":"LOC105375262","entrezGeneId":105375262},{"hugoGeneSymbol":"LOC105375264","entrezGeneId":105375264},{"hugoGeneSymbol":"LOC105375265","entrezGeneId":105375265},{"hugoGeneSymbol":"LOC105375266","entrezGeneId":105375266},{"hugoGeneSymbol":"LOC105375267","entrezGeneId":105375267},{"hugoGeneSymbol":"LOC105375268","entrezGeneId":105375268},{"hugoGeneSymbol":"LOC105375270","entrezGeneId":105375270},{"hugoGeneSymbol":"LOC105375271","entrezGeneId":105375271},{"hugoGeneSymbol":"LOC105375272","entrezGeneId":105375272},{"hugoGeneSymbol":"LOC105375273","entrezGeneId":105375273},{"hugoGeneSymbol":"LOC105375277","entrezGeneId":105375277},{"hugoGeneSymbol":"LOC105375278","entrezGeneId":105375278},{"hugoGeneSymbol":"LOC105375282","entrezGeneId":105375282},{"hugoGeneSymbol":"LOC105375284","entrezGeneId":105375284},{"hugoGeneSymbol":"LOC105375287","entrezGeneId":105375287},{"hugoGeneSymbol":"LOC105375288","entrezGeneId":105375288},{"hugoGeneSymbol":"LOC105375289","entrezGeneId":105375289},{"hugoGeneSymbol":"LOC105375291","entrezGeneId":105375291},{"hugoGeneSymbol":"LOC105375292","entrezGeneId":105375292},{"hugoGeneSymbol":"LOC105375294","entrezGeneId":105375294},{"hugoGeneSymbol":"LOC105375295","entrezGeneId":105375295},{"hugoGeneSymbol":"LOC105375296","entrezGeneId":105375296},{"hugoGeneSymbol":"LOC105375297","entrezGeneId":105375297},{"hugoGeneSymbol":"LOC105375298","entrezGeneId":105375298},{"hugoGeneSymbol":"LOC105375299","entrezGeneId":105375299},{"hugoGeneSymbol":"LOC105375300","entrezGeneId":105375300},{"hugoGeneSymbol":"LOC105375301","entrezGeneId":105375301},{"hugoGeneSymbol":"LOC105375302","entrezGeneId":105375302},{"hugoGeneSymbol":"LOC105375303","entrezGeneId":105375303},{"hugoGeneSymbol":"LOC105375304","entrezGeneId":105375304},{"hugoGeneSymbol":"LOC105375310","entrezGeneId":105375310},{"hugoGeneSymbol":"LOC105375311","entrezGeneId":105375311},{"hugoGeneSymbol":"LOC105375313","entrezGeneId":105375313},{"hugoGeneSymbol":"LOC105375314","entrezGeneId":105375314},{"hugoGeneSymbol":"LOC105375315","entrezGeneId":105375315},{"hugoGeneSymbol":"LOC105375317","entrezGeneId":105375317},{"hugoGeneSymbol":"LOC105375318","entrezGeneId":105375318},{"hugoGeneSymbol":"LOC105375319","entrezGeneId":105375319},{"hugoGeneSymbol":"LOC105375321","entrezGeneId":105375321},{"hugoGeneSymbol":"LOC105375322","entrezGeneId":105375322},{"hugoGeneSymbol":"LOC105375323","entrezGeneId":105375323},{"hugoGeneSymbol":"LOC105375324","entrezGeneId":105375324},{"hugoGeneSymbol":"LOC105375326","entrezGeneId":105375326},{"hugoGeneSymbol":"LOC105375328","entrezGeneId":105375328},{"hugoGeneSymbol":"LOC105375329","entrezGeneId":105375329},{"hugoGeneSymbol":"LOC105375330","entrezGeneId":105375330},{"hugoGeneSymbol":"LOC105375333","entrezGeneId":105375333},{"hugoGeneSymbol":"LOC105375334","entrezGeneId":105375334},{"hugoGeneSymbol":"LOC105375336","entrezGeneId":105375336},{"hugoGeneSymbol":"LOC105375337","entrezGeneId":105375337},{"hugoGeneSymbol":"LOC105375340","entrezGeneId":105375340},{"hugoGeneSymbol":"LOC105375341","entrezGeneId":105375341},{"hugoGeneSymbol":"LOC105375342","entrezGeneId":105375342},{"hugoGeneSymbol":"LOC105375343","entrezGeneId":105375343},{"hugoGeneSymbol":"LOC105375344","entrezGeneId":105375344},{"hugoGeneSymbol":"LOC105375345","entrezGeneId":105375345},{"hugoGeneSymbol":"LOC105375346","entrezGeneId":105375346},{"hugoGeneSymbol":"LOC105375347","entrezGeneId":105375347},{"hugoGeneSymbol":"LOC105375350","entrezGeneId":105375350},{"hugoGeneSymbol":"LOC105375352","entrezGeneId":105375352},{"hugoGeneSymbol":"LOC105375356","entrezGeneId":105375356},{"hugoGeneSymbol":"LOC105375358","entrezGeneId":105375358},{"hugoGeneSymbol":"LOC105375359","entrezGeneId":105375359},{"hugoGeneSymbol":"LOC105375361","entrezGeneId":105375361},{"hugoGeneSymbol":"LOC105375363","entrezGeneId":105375363},{"hugoGeneSymbol":"LOC105375366","entrezGeneId":105375366},{"hugoGeneSymbol":"LOC105375368","entrezGeneId":105375368},{"hugoGeneSymbol":"LOC105375369","entrezGeneId":105375369},{"hugoGeneSymbol":"LOC105375370","entrezGeneId":105375370},{"hugoGeneSymbol":"LOC105375371","entrezGeneId":105375371},{"hugoGeneSymbol":"LOC105375372","entrezGeneId":105375372},{"hugoGeneSymbol":"LOC105375373","entrezGeneId":105375373},{"hugoGeneSymbol":"LOC105375376","entrezGeneId":105375376},{"hugoGeneSymbol":"LOC105375377","entrezGeneId":105375377},{"hugoGeneSymbol":"LOC105375378","entrezGeneId":105375378},{"hugoGeneSymbol":"LOC105375382","entrezGeneId":105375382},{"hugoGeneSymbol":"LOC105375384","entrezGeneId":105375384},{"hugoGeneSymbol":"LOC105375386","entrezGeneId":105375386},{"hugoGeneSymbol":"LOC105375387","entrezGeneId":105375387},{"hugoGeneSymbol":"LOC105375392","entrezGeneId":105375392},{"hugoGeneSymbol":"LOC105375397","entrezGeneId":105375397},{"hugoGeneSymbol":"LOC105375400","entrezGeneId":105375400},{"hugoGeneSymbol":"LOC105375401","entrezGeneId":105375401},{"hugoGeneSymbol":"LOC105375402","entrezGeneId":105375402},{"hugoGeneSymbol":"LOC105375403","entrezGeneId":105375403},{"hugoGeneSymbol":"LOC105375404","entrezGeneId":105375404},{"hugoGeneSymbol":"LOC105375405","entrezGeneId":105375405},{"hugoGeneSymbol":"LOC105375409","entrezGeneId":105375409},{"hugoGeneSymbol":"LOC105375410","entrezGeneId":105375410},{"hugoGeneSymbol":"LOC105375411","entrezGeneId":105375411},{"hugoGeneSymbol":"LOC105375412","entrezGeneId":105375412},{"hugoGeneSymbol":"LOC105375414","entrezGeneId":105375414},{"hugoGeneSymbol":"LOC105375416","entrezGeneId":105375416},{"hugoGeneSymbol":"LOC105375417","entrezGeneId":105375417},{"hugoGeneSymbol":"LOC105375418","entrezGeneId":105375418},{"hugoGeneSymbol":"LOC105375419","entrezGeneId":105375419},{"hugoGeneSymbol":"LOC105375421","entrezGeneId":105375421},{"hugoGeneSymbol":"LOC105375422","entrezGeneId":105375422},{"hugoGeneSymbol":"LOC105375423","entrezGeneId":105375423},{"hugoGeneSymbol":"LOC105375426","entrezGeneId":105375426},{"hugoGeneSymbol":"LOC105375427","entrezGeneId":105375427},{"hugoGeneSymbol":"LOC105375429","entrezGeneId":105375429},{"hugoGeneSymbol":"LOC105375431","entrezGeneId":105375431},{"hugoGeneSymbol":"LOC105375433","entrezGeneId":105375433},{"hugoGeneSymbol":"LOC105375434","entrezGeneId":105375434},{"hugoGeneSymbol":"LOC105375435","entrezGeneId":105375435},{"hugoGeneSymbol":"LOC105375436","entrezGeneId":105375436},{"hugoGeneSymbol":"LOC105375440","entrezGeneId":105375440},{"hugoGeneSymbol":"LOC105375441","entrezGeneId":105375441},{"hugoGeneSymbol":"LOC105375443","entrezGeneId":105375443},{"hugoGeneSymbol":"LOC105375444","entrezGeneId":105375444},{"hugoGeneSymbol":"LOC105375445","entrezGeneId":105375445},{"hugoGeneSymbol":"LOC105375446","entrezGeneId":105375446},{"hugoGeneSymbol":"LOC105375448","entrezGeneId":105375448},{"hugoGeneSymbol":"LOC105375450","entrezGeneId":105375450},{"hugoGeneSymbol":"LOC105375451","entrezGeneId":105375451},{"hugoGeneSymbol":"LOC105375452","entrezGeneId":105375452},{"hugoGeneSymbol":"LOC105375456","entrezGeneId":105375456},{"hugoGeneSymbol":"LOC105375457","entrezGeneId":105375457},{"hugoGeneSymbol":"LOC105375461","entrezGeneId":105375461},{"hugoGeneSymbol":"LOC105375462","entrezGeneId":105375462},{"hugoGeneSymbol":"LOC105375463","entrezGeneId":105375463},{"hugoGeneSymbol":"LOC105375465","entrezGeneId":105375465},{"hugoGeneSymbol":"LOC105375466","entrezGeneId":105375466},{"hugoGeneSymbol":"LOC105375467","entrezGeneId":105375467},{"hugoGeneSymbol":"LOC105375468","entrezGeneId":105375468},{"hugoGeneSymbol":"LOC105375469","entrezGeneId":105375469},{"hugoGeneSymbol":"LOC105375470","entrezGeneId":105375470},{"hugoGeneSymbol":"LOC105375471","entrezGeneId":105375471},{"hugoGeneSymbol":"LOC105375472","entrezGeneId":105375472},{"hugoGeneSymbol":"LOC105375473","entrezGeneId":105375473},{"hugoGeneSymbol":"LOC105375476","entrezGeneId":105375476},{"hugoGeneSymbol":"LOC105375477","entrezGeneId":105375477},{"hugoGeneSymbol":"LOC105375478","entrezGeneId":105375478},{"hugoGeneSymbol":"LOC105375481","entrezGeneId":105375481},{"hugoGeneSymbol":"LOC105375482","entrezGeneId":105375482},{"hugoGeneSymbol":"LOC105375483","entrezGeneId":105375483},{"hugoGeneSymbol":"LOC105375484","entrezGeneId":105375484},{"hugoGeneSymbol":"LOC105375486","entrezGeneId":105375486},{"hugoGeneSymbol":"LOC105375487","entrezGeneId":105375487},{"hugoGeneSymbol":"LOC105375488","entrezGeneId":105375488},{"hugoGeneSymbol":"LOC105375489","entrezGeneId":105375489},{"hugoGeneSymbol":"LOC105375490","entrezGeneId":105375490},{"hugoGeneSymbol":"LOC105375492","entrezGeneId":105375492},{"hugoGeneSymbol":"LOC105375493","entrezGeneId":105375493},{"hugoGeneSymbol":"LOC105375494","entrezGeneId":105375494},{"hugoGeneSymbol":"LOC105375497","entrezGeneId":105375497},{"hugoGeneSymbol":"LOC105375500","entrezGeneId":105375500},{"hugoGeneSymbol":"LOC105375501","entrezGeneId":105375501},{"hugoGeneSymbol":"LOC105375503","entrezGeneId":105375503},{"hugoGeneSymbol":"LOC105375504","entrezGeneId":105375504},{"hugoGeneSymbol":"LOC105375505","entrezGeneId":105375505},{"hugoGeneSymbol":"LOC105375508","entrezGeneId":105375508},{"hugoGeneSymbol":"LOC105375509","entrezGeneId":105375509},{"hugoGeneSymbol":"LOC105375511","entrezGeneId":105375511},{"hugoGeneSymbol":"LOC105375512","entrezGeneId":105375512},{"hugoGeneSymbol":"LOC105375513","entrezGeneId":105375513},{"hugoGeneSymbol":"LOC105375514","entrezGeneId":105375514},{"hugoGeneSymbol":"LOC105375517","entrezGeneId":105375517},{"hugoGeneSymbol":"LOC105375518","entrezGeneId":105375518},{"hugoGeneSymbol":"LOC105375519","entrezGeneId":105375519},{"hugoGeneSymbol":"LOC105375520","entrezGeneId":105375520},{"hugoGeneSymbol":"LOC105375521","entrezGeneId":105375521},{"hugoGeneSymbol":"LOC105375522","entrezGeneId":105375522},{"hugoGeneSymbol":"LOC105375523","entrezGeneId":105375523},{"hugoGeneSymbol":"LOC105375524","entrezGeneId":105375524},{"hugoGeneSymbol":"LOC105375525","entrezGeneId":105375525},{"hugoGeneSymbol":"LOC105375527","entrezGeneId":105375527},{"hugoGeneSymbol":"LOC105375530","entrezGeneId":105375530},{"hugoGeneSymbol":"LOC105375532","entrezGeneId":105375532},{"hugoGeneSymbol":"LOC105375534","entrezGeneId":105375534},{"hugoGeneSymbol":"LOC105375535","entrezGeneId":105375535},{"hugoGeneSymbol":"LOC105375536","entrezGeneId":105375536},{"hugoGeneSymbol":"LOC105375537","entrezGeneId":105375537},{"hugoGeneSymbol":"LOC105375538","entrezGeneId":105375538},{"hugoGeneSymbol":"LOC105375539","entrezGeneId":105375539},{"hugoGeneSymbol":"LOC105375541","entrezGeneId":105375541},{"hugoGeneSymbol":"LOC105375542","entrezGeneId":105375542},{"hugoGeneSymbol":"LOC105375543","entrezGeneId":105375543},{"hugoGeneSymbol":"LOC105375544","entrezGeneId":105375544},{"hugoGeneSymbol":"LOC105375545","entrezGeneId":105375545},{"hugoGeneSymbol":"LOC105375546","entrezGeneId":105375546},{"hugoGeneSymbol":"LOC105375547","entrezGeneId":105375547},{"hugoGeneSymbol":"LOC105375548","entrezGeneId":105375548},{"hugoGeneSymbol":"LOC105375549","entrezGeneId":105375549},{"hugoGeneSymbol":"LOC105375551","entrezGeneId":105375551},{"hugoGeneSymbol":"LOC105375552","entrezGeneId":105375552},{"hugoGeneSymbol":"LOC105375553","entrezGeneId":105375553},{"hugoGeneSymbol":"LOC105375554","entrezGeneId":105375554},{"hugoGeneSymbol":"LOC105375556","entrezGeneId":105375556},{"hugoGeneSymbol":"LOC105375557","entrezGeneId":105375557},{"hugoGeneSymbol":"LOC105375559","entrezGeneId":105375559},{"hugoGeneSymbol":"LOC105375560","entrezGeneId":105375560},{"hugoGeneSymbol":"LOC105375563","entrezGeneId":105375563},{"hugoGeneSymbol":"LOC105375564","entrezGeneId":105375564},{"hugoGeneSymbol":"LOC105375566","entrezGeneId":105375566},{"hugoGeneSymbol":"LOC105375567","entrezGeneId":105375567},{"hugoGeneSymbol":"LOC105375570","entrezGeneId":105375570},{"hugoGeneSymbol":"LOC105375571","entrezGeneId":105375571},{"hugoGeneSymbol":"LOC105375574","entrezGeneId":105375574},{"hugoGeneSymbol":"LOC105375577","entrezGeneId":105375577},{"hugoGeneSymbol":"LOC105375578","entrezGeneId":105375578},{"hugoGeneSymbol":"LOC105375579","entrezGeneId":105375579},{"hugoGeneSymbol":"LOC105375580","entrezGeneId":105375580},{"hugoGeneSymbol":"LOC105375581","entrezGeneId":105375581},{"hugoGeneSymbol":"LOC105375582","entrezGeneId":105375582},{"hugoGeneSymbol":"LOC105375584","entrezGeneId":105375584},{"hugoGeneSymbol":"LOC105375586","entrezGeneId":105375586},{"hugoGeneSymbol":"LOC105375587","entrezGeneId":105375587},{"hugoGeneSymbol":"LOC105375588","entrezGeneId":105375588},{"hugoGeneSymbol":"LOC105375589","entrezGeneId":105375589},{"hugoGeneSymbol":"LOC105375591","entrezGeneId":105375591},{"hugoGeneSymbol":"LOC105375592","entrezGeneId":105375592},{"hugoGeneSymbol":"LOC105375593","entrezGeneId":105375593},{"hugoGeneSymbol":"LOC105375594","entrezGeneId":105375594},{"hugoGeneSymbol":"LOC105375597","entrezGeneId":105375597},{"hugoGeneSymbol":"LOC105375599","entrezGeneId":105375599},{"hugoGeneSymbol":"LOC105375601","entrezGeneId":105375601},{"hugoGeneSymbol":"LOC105375602","entrezGeneId":105375602},{"hugoGeneSymbol":"LOC105375603","entrezGeneId":105375603},{"hugoGeneSymbol":"LOC105375604","entrezGeneId":105375604},{"hugoGeneSymbol":"LOC105375605","entrezGeneId":105375605},{"hugoGeneSymbol":"LOC105375607","entrezGeneId":105375607},{"hugoGeneSymbol":"LOC105375610","entrezGeneId":105375610},{"hugoGeneSymbol":"LOC105375613","entrezGeneId":105375613},{"hugoGeneSymbol":"LOC105375614","entrezGeneId":105375614},{"hugoGeneSymbol":"LOC105375615","entrezGeneId":105375615},{"hugoGeneSymbol":"LOC105375622","entrezGeneId":105375622},{"hugoGeneSymbol":"LOC105375623","entrezGeneId":105375623},{"hugoGeneSymbol":"LOC105375624","entrezGeneId":105375624},{"hugoGeneSymbol":"LOC105375626","entrezGeneId":105375626},{"hugoGeneSymbol":"LOC105375628","entrezGeneId":105375628},{"hugoGeneSymbol":"LOC105375629","entrezGeneId":105375629},{"hugoGeneSymbol":"LOC105375630","entrezGeneId":105375630},{"hugoGeneSymbol":"LOC105375631","entrezGeneId":105375631},{"hugoGeneSymbol":"LOC105375633","entrezGeneId":105375633},{"hugoGeneSymbol":"LOC105375634","entrezGeneId":105375634},{"hugoGeneSymbol":"LOC105375635","entrezGeneId":105375635},{"hugoGeneSymbol":"LOC105375637","entrezGeneId":105375637},{"hugoGeneSymbol":"LOC105375638","entrezGeneId":105375638},{"hugoGeneSymbol":"LOC105375639","entrezGeneId":105375639},{"hugoGeneSymbol":"LOC105375641","entrezGeneId":105375641},{"hugoGeneSymbol":"LOC105375642","entrezGeneId":105375642},{"hugoGeneSymbol":"LOC105375643","entrezGeneId":105375643},{"hugoGeneSymbol":"LOC105375644","entrezGeneId":105375644},{"hugoGeneSymbol":"LOC105375645","entrezGeneId":105375645},{"hugoGeneSymbol":"LOC105375646","entrezGeneId":105375646},{"hugoGeneSymbol":"LOC105375647","entrezGeneId":105375647},{"hugoGeneSymbol":"LOC105375648","entrezGeneId":105375648},{"hugoGeneSymbol":"LOC105375652","entrezGeneId":105375652},{"hugoGeneSymbol":"LOC105375653","entrezGeneId":105375653},{"hugoGeneSymbol":"LOC105375655","entrezGeneId":105375655},{"hugoGeneSymbol":"LOC105375657","entrezGeneId":105375657},{"hugoGeneSymbol":"LOC105375659","entrezGeneId":105375659},{"hugoGeneSymbol":"LOC105375660","entrezGeneId":105375660},{"hugoGeneSymbol":"LOC105375666","entrezGeneId":105375666},{"hugoGeneSymbol":"LOC105375668","entrezGeneId":105375668},{"hugoGeneSymbol":"LOC105375669","entrezGeneId":105375669},{"hugoGeneSymbol":"LOC105375670","entrezGeneId":105375670},{"hugoGeneSymbol":"LOC105375671","entrezGeneId":105375671},{"hugoGeneSymbol":"LOC105375672","entrezGeneId":105375672},{"hugoGeneSymbol":"LOC105375673","entrezGeneId":105375673},{"hugoGeneSymbol":"LOC105375674","entrezGeneId":105375674},{"hugoGeneSymbol":"LOC105375675","entrezGeneId":105375675},{"hugoGeneSymbol":"LOC105375676","entrezGeneId":105375676},{"hugoGeneSymbol":"LOC105375679","entrezGeneId":105375679},{"hugoGeneSymbol":"LOC105375680","entrezGeneId":105375680},{"hugoGeneSymbol":"LOC105375683","entrezGeneId":105375683},{"hugoGeneSymbol":"LOC105375684","entrezGeneId":105375684},{"hugoGeneSymbol":"LOC105375685","entrezGeneId":105375685},{"hugoGeneSymbol":"LOC105375686","entrezGeneId":105375686},{"hugoGeneSymbol":"LOC105375688","entrezGeneId":105375688},{"hugoGeneSymbol":"LOC105375689","entrezGeneId":105375689},{"hugoGeneSymbol":"LOC105375690","entrezGeneId":105375690},{"hugoGeneSymbol":"LOC105375691","entrezGeneId":105375691},{"hugoGeneSymbol":"LOC105375692","entrezGeneId":105375692},{"hugoGeneSymbol":"LOC105375693","entrezGeneId":105375693},{"hugoGeneSymbol":"LOC105375694","entrezGeneId":105375694},{"hugoGeneSymbol":"LOC105375695","entrezGeneId":105375695},{"hugoGeneSymbol":"LOC105375696","entrezGeneId":105375696},{"hugoGeneSymbol":"LOC105375700","entrezGeneId":105375700},{"hugoGeneSymbol":"LOC105375701","entrezGeneId":105375701},{"hugoGeneSymbol":"LOC105375703","entrezGeneId":105375703},{"hugoGeneSymbol":"LOC105375704","entrezGeneId":105375704},{"hugoGeneSymbol":"LOC105375705","entrezGeneId":105375705},{"hugoGeneSymbol":"LOC105375707","entrezGeneId":105375707},{"hugoGeneSymbol":"LOC105375709","entrezGeneId":105375709},{"hugoGeneSymbol":"LOC105375710","entrezGeneId":105375710},{"hugoGeneSymbol":"LOC105375711","entrezGeneId":105375711},{"hugoGeneSymbol":"LOC105375712","entrezGeneId":105375712},{"hugoGeneSymbol":"LOC105375713","entrezGeneId":105375713},{"hugoGeneSymbol":"LOC105375715","entrezGeneId":105375715},{"hugoGeneSymbol":"LOC105375716","entrezGeneId":105375716},{"hugoGeneSymbol":"LOC105375717","entrezGeneId":105375717},{"hugoGeneSymbol":"LOC105375719","entrezGeneId":105375719},{"hugoGeneSymbol":"LOC105375721","entrezGeneId":105375721},{"hugoGeneSymbol":"LOC105375723","entrezGeneId":105375723},{"hugoGeneSymbol":"LOC105375724","entrezGeneId":105375724},{"hugoGeneSymbol":"LOC105375725","entrezGeneId":105375725},{"hugoGeneSymbol":"LOC105375727","entrezGeneId":105375727},{"hugoGeneSymbol":"LOC105375728","entrezGeneId":105375728},{"hugoGeneSymbol":"LOC105375730","entrezGeneId":105375730},{"hugoGeneSymbol":"LOC105375731","entrezGeneId":105375731},{"hugoGeneSymbol":"LOC105375732","entrezGeneId":105375732},{"hugoGeneSymbol":"LOC105375733","entrezGeneId":105375733},{"hugoGeneSymbol":"LOC105375737","entrezGeneId":105375737},{"hugoGeneSymbol":"LOC105375738","entrezGeneId":105375738},{"hugoGeneSymbol":"LOC105375739","entrezGeneId":105375739},{"hugoGeneSymbol":"LOC105375740","entrezGeneId":105375740},{"hugoGeneSymbol":"LOC105375741","entrezGeneId":105375741},{"hugoGeneSymbol":"LOC105375742","entrezGeneId":105375742},{"hugoGeneSymbol":"LOC105375743","entrezGeneId":105375743},{"hugoGeneSymbol":"LOC105375744","entrezGeneId":105375744},{"hugoGeneSymbol":"LOC105375746","entrezGeneId":105375746},{"hugoGeneSymbol":"LOC105375747","entrezGeneId":105375747},{"hugoGeneSymbol":"LOC105375748","entrezGeneId":105375748},{"hugoGeneSymbol":"LOC105375749","entrezGeneId":105375749},{"hugoGeneSymbol":"LOC105375750","entrezGeneId":105375750},{"hugoGeneSymbol":"LOC105375751","entrezGeneId":105375751},{"hugoGeneSymbol":"LOC105375752","entrezGeneId":105375752},{"hugoGeneSymbol":"LOC105375753","entrezGeneId":105375753},{"hugoGeneSymbol":"LOC105375754","entrezGeneId":105375754},{"hugoGeneSymbol":"LOC105375758","entrezGeneId":105375758},{"hugoGeneSymbol":"LOC105375759","entrezGeneId":105375759},{"hugoGeneSymbol":"LOC105375760","entrezGeneId":105375760},{"hugoGeneSymbol":"LOC105375761","entrezGeneId":105375761},{"hugoGeneSymbol":"LOC105375762","entrezGeneId":105375762},{"hugoGeneSymbol":"LOC105375763","entrezGeneId":105375763},{"hugoGeneSymbol":"LOC105375765","entrezGeneId":105375765},{"hugoGeneSymbol":"LOC105375767","entrezGeneId":105375767},{"hugoGeneSymbol":"LOC105375768","entrezGeneId":105375768},{"hugoGeneSymbol":"LOC105375769","entrezGeneId":105375769},{"hugoGeneSymbol":"LOC105375771","entrezGeneId":105375771},{"hugoGeneSymbol":"LOC105375772","entrezGeneId":105375772},{"hugoGeneSymbol":"LOC105375773","entrezGeneId":105375773},{"hugoGeneSymbol":"LOC105375775","entrezGeneId":105375775},{"hugoGeneSymbol":"LOC105375776","entrezGeneId":105375776},{"hugoGeneSymbol":"LOC105375777","entrezGeneId":105375777},{"hugoGeneSymbol":"LOC105375779","entrezGeneId":105375779},{"hugoGeneSymbol":"LOC105375781","entrezGeneId":105375781},{"hugoGeneSymbol":"LOC105375782","entrezGeneId":105375782},{"hugoGeneSymbol":"LOC105375783","entrezGeneId":105375783},{"hugoGeneSymbol":"LOC105375784","entrezGeneId":105375784},{"hugoGeneSymbol":"LOC105375785","entrezGeneId":105375785},{"hugoGeneSymbol":"LOC105375787","entrezGeneId":105375787},{"hugoGeneSymbol":"LOC105375789","entrezGeneId":105375789},{"hugoGeneSymbol":"LOC105375790","entrezGeneId":105375790},{"hugoGeneSymbol":"LOC105375791","entrezGeneId":105375791},{"hugoGeneSymbol":"LOC105375792","entrezGeneId":105375792},{"hugoGeneSymbol":"LOC105375794","entrezGeneId":105375794},{"hugoGeneSymbol":"LOC105375795","entrezGeneId":105375795},{"hugoGeneSymbol":"LOC105375796","entrezGeneId":105375796},{"hugoGeneSymbol":"LOC105375798","entrezGeneId":105375798},{"hugoGeneSymbol":"LOC105375799","entrezGeneId":105375799},{"hugoGeneSymbol":"LOC105375800","entrezGeneId":105375800},{"hugoGeneSymbol":"LOC105375805","entrezGeneId":105375805},{"hugoGeneSymbol":"LOC105375809","entrezGeneId":105375809},{"hugoGeneSymbol":"LOC105375811","entrezGeneId":105375811},{"hugoGeneSymbol":"LOC105375812","entrezGeneId":105375812},{"hugoGeneSymbol":"LOC105375813","entrezGeneId":105375813},{"hugoGeneSymbol":"LOC105375814","entrezGeneId":105375814},{"hugoGeneSymbol":"LOC105375815","entrezGeneId":105375815},{"hugoGeneSymbol":"LOC105375816","entrezGeneId":105375816},{"hugoGeneSymbol":"LOC105375817","entrezGeneId":105375817},{"hugoGeneSymbol":"LOC105375818","entrezGeneId":105375818},{"hugoGeneSymbol":"LOC105375820","entrezGeneId":105375820},{"hugoGeneSymbol":"LOC105375821","entrezGeneId":105375821},{"hugoGeneSymbol":"LOC105375822","entrezGeneId":105375822},{"hugoGeneSymbol":"LOC105375823","entrezGeneId":105375823},{"hugoGeneSymbol":"LOC105375825","entrezGeneId":105375825},{"hugoGeneSymbol":"LOC105375826","entrezGeneId":105375826},{"hugoGeneSymbol":"LOC105375828","entrezGeneId":105375828},{"hugoGeneSymbol":"LOC105375829","entrezGeneId":105375829},{"hugoGeneSymbol":"LOC105375830","entrezGeneId":105375830},{"hugoGeneSymbol":"LOC105375831","entrezGeneId":105375831},{"hugoGeneSymbol":"LOC105375833","entrezGeneId":105375833},{"hugoGeneSymbol":"LOC105375835","entrezGeneId":105375835},{"hugoGeneSymbol":"LOC105375836","entrezGeneId":105375836},{"hugoGeneSymbol":"LOC105375839","entrezGeneId":105375839},{"hugoGeneSymbol":"LOC105375840","entrezGeneId":105375840},{"hugoGeneSymbol":"LOC105375841","entrezGeneId":105375841},{"hugoGeneSymbol":"LOC105375842","entrezGeneId":105375842},{"hugoGeneSymbol":"LOC105375843","entrezGeneId":105375843},{"hugoGeneSymbol":"LOC105375844","entrezGeneId":105375844},{"hugoGeneSymbol":"LOC105375845","entrezGeneId":105375845},{"hugoGeneSymbol":"LOC105375846","entrezGeneId":105375846},{"hugoGeneSymbol":"LOC105375849","entrezGeneId":105375849},{"hugoGeneSymbol":"LOC105375850","entrezGeneId":105375850},{"hugoGeneSymbol":"LOC105375851","entrezGeneId":105375851},{"hugoGeneSymbol":"LOC105375852","entrezGeneId":105375852},{"hugoGeneSymbol":"LOC105375855","entrezGeneId":105375855},{"hugoGeneSymbol":"LOC105375856","entrezGeneId":105375856},{"hugoGeneSymbol":"LOC105375857","entrezGeneId":105375857},{"hugoGeneSymbol":"LOC105375858","entrezGeneId":105375858},{"hugoGeneSymbol":"LOC105375859","entrezGeneId":105375859},{"hugoGeneSymbol":"LOC105375860","entrezGeneId":105375860},{"hugoGeneSymbol":"LOC105375861","entrezGeneId":105375861},{"hugoGeneSymbol":"LOC105375863","entrezGeneId":105375863},{"hugoGeneSymbol":"LOC105375864","entrezGeneId":105375864},{"hugoGeneSymbol":"LOC105375870","entrezGeneId":105375870},{"hugoGeneSymbol":"LOC105375871","entrezGeneId":105375871},{"hugoGeneSymbol":"LOC105375873","entrezGeneId":105375873},{"hugoGeneSymbol":"LOC105375874","entrezGeneId":105375874},{"hugoGeneSymbol":"LOC105375875","entrezGeneId":105375875},{"hugoGeneSymbol":"LOC105375876","entrezGeneId":105375876},{"hugoGeneSymbol":"LOC105375877","entrezGeneId":105375877},{"hugoGeneSymbol":"LOC105375878","entrezGeneId":105375878},{"hugoGeneSymbol":"LOC105375879","entrezGeneId":105375879},{"hugoGeneSymbol":"LOC105375880","entrezGeneId":105375880},{"hugoGeneSymbol":"LOC105375881","entrezGeneId":105375881},{"hugoGeneSymbol":"LOC105375883","entrezGeneId":105375883},{"hugoGeneSymbol":"LOC105375884","entrezGeneId":105375884},{"hugoGeneSymbol":"LOC105375885","entrezGeneId":105375885},{"hugoGeneSymbol":"LOC105375886","entrezGeneId":105375886},{"hugoGeneSymbol":"LOC105375888","entrezGeneId":105375888},{"hugoGeneSymbol":"LOC105375889","entrezGeneId":105375889},{"hugoGeneSymbol":"LOC105375890","entrezGeneId":105375890},{"hugoGeneSymbol":"LOC105375892","entrezGeneId":105375892},{"hugoGeneSymbol":"LOC105375894","entrezGeneId":105375894},{"hugoGeneSymbol":"LOC105375896","entrezGeneId":105375896},{"hugoGeneSymbol":"LOC105375897","entrezGeneId":105375897},{"hugoGeneSymbol":"LOC105375899","entrezGeneId":105375899},{"hugoGeneSymbol":"LOC105375901","entrezGeneId":105375901},{"hugoGeneSymbol":"LOC105375902","entrezGeneId":105375902},{"hugoGeneSymbol":"LOC105375903","entrezGeneId":105375903},{"hugoGeneSymbol":"LOC105375904","entrezGeneId":105375904},{"hugoGeneSymbol":"LOC105375905","entrezGeneId":105375905},{"hugoGeneSymbol":"LOC105375906","entrezGeneId":105375906},{"hugoGeneSymbol":"LOC105375909","entrezGeneId":105375909},{"hugoGeneSymbol":"LOC105375911","entrezGeneId":105375911},{"hugoGeneSymbol":"LOC105375912","entrezGeneId":105375912},{"hugoGeneSymbol":"LOC105375913","entrezGeneId":105375913},{"hugoGeneSymbol":"LOC105375914","entrezGeneId":105375914},{"hugoGeneSymbol":"LOC105375915","entrezGeneId":105375915},{"hugoGeneSymbol":"LOC105375916","entrezGeneId":105375916},{"hugoGeneSymbol":"LOC105375918","entrezGeneId":105375918},{"hugoGeneSymbol":"LOC105375919","entrezGeneId":105375919},{"hugoGeneSymbol":"LOC105375920","entrezGeneId":105375920},{"hugoGeneSymbol":"LOC105375921","entrezGeneId":105375921},{"hugoGeneSymbol":"LOC105375922","entrezGeneId":105375922},{"hugoGeneSymbol":"LOC105375924","entrezGeneId":105375924},{"hugoGeneSymbol":"LOC105375925","entrezGeneId":105375925},{"hugoGeneSymbol":"LOC105375926","entrezGeneId":105375926},{"hugoGeneSymbol":"LOC105375928","entrezGeneId":105375928},{"hugoGeneSymbol":"LOC105375929","entrezGeneId":105375929},{"hugoGeneSymbol":"LOC105375930","entrezGeneId":105375930},{"hugoGeneSymbol":"LOC105375931","entrezGeneId":105375931},{"hugoGeneSymbol":"LOC105375932","entrezGeneId":105375932},{"hugoGeneSymbol":"LOC105375933","entrezGeneId":105375933},{"hugoGeneSymbol":"LOC105375935","entrezGeneId":105375935},{"hugoGeneSymbol":"LOC105375936","entrezGeneId":105375936},{"hugoGeneSymbol":"LOC105375937","entrezGeneId":105375937},{"hugoGeneSymbol":"LOC105375938","entrezGeneId":105375938},{"hugoGeneSymbol":"LOC105375942","entrezGeneId":105375942},{"hugoGeneSymbol":"LOC105375943","entrezGeneId":105375943},{"hugoGeneSymbol":"LOC105375945","entrezGeneId":105375945},{"hugoGeneSymbol":"LOC105375947","entrezGeneId":105375947},{"hugoGeneSymbol":"LOC105375949","entrezGeneId":105375949},{"hugoGeneSymbol":"LOC105375951","entrezGeneId":105375951},{"hugoGeneSymbol":"LOC105375952","entrezGeneId":105375952},{"hugoGeneSymbol":"LOC105375953","entrezGeneId":105375953},{"hugoGeneSymbol":"LOC105375955","entrezGeneId":105375955},{"hugoGeneSymbol":"LOC105375956","entrezGeneId":105375956},{"hugoGeneSymbol":"LOC105375957","entrezGeneId":105375957},{"hugoGeneSymbol":"LOC105375959","entrezGeneId":105375959},{"hugoGeneSymbol":"LOC105375962","entrezGeneId":105375962},{"hugoGeneSymbol":"LOC105375964","entrezGeneId":105375964},{"hugoGeneSymbol":"LOC105375968","entrezGeneId":105375968},{"hugoGeneSymbol":"LOC105375969","entrezGeneId":105375969},{"hugoGeneSymbol":"LOC105375970","entrezGeneId":105375970},{"hugoGeneSymbol":"LOC105375971","entrezGeneId":105375971},{"hugoGeneSymbol":"LOC105375972","entrezGeneId":105375972},{"hugoGeneSymbol":"LOC105375974","entrezGeneId":105375974},{"hugoGeneSymbol":"LOC105375975","entrezGeneId":105375975},{"hugoGeneSymbol":"LOC105375976","entrezGeneId":105375976},{"hugoGeneSymbol":"LOC105375977","entrezGeneId":105375977},{"hugoGeneSymbol":"LOC105375979","entrezGeneId":105375979},{"hugoGeneSymbol":"LOC105375980","entrezGeneId":105375980},{"hugoGeneSymbol":"LOC105375981","entrezGeneId":105375981},{"hugoGeneSymbol":"LOC105375983","entrezGeneId":105375983},{"hugoGeneSymbol":"LOC105375985","entrezGeneId":105375985},{"hugoGeneSymbol":"LOC105375987","entrezGeneId":105375987},{"hugoGeneSymbol":"LOC105375988","entrezGeneId":105375988},{"hugoGeneSymbol":"LOC105375989","entrezGeneId":105375989},{"hugoGeneSymbol":"LOC105375990","entrezGeneId":105375990},{"hugoGeneSymbol":"LOC105375992","entrezGeneId":105375992},{"hugoGeneSymbol":"LOC105375993","entrezGeneId":105375993},{"hugoGeneSymbol":"LOC105375994","entrezGeneId":105375994},{"hugoGeneSymbol":"LOC105375996","entrezGeneId":105375996},{"hugoGeneSymbol":"LOC105375997","entrezGeneId":105375997},{"hugoGeneSymbol":"LOC105375999","entrezGeneId":105375999},{"hugoGeneSymbol":"LOC105376000","entrezGeneId":105376000},{"hugoGeneSymbol":"LOC105376001","entrezGeneId":105376001},{"hugoGeneSymbol":"LOC105376002","entrezGeneId":105376002},{"hugoGeneSymbol":"LOC105376003","entrezGeneId":105376003},{"hugoGeneSymbol":"LOC105376004","entrezGeneId":105376004},{"hugoGeneSymbol":"LOC105376005","entrezGeneId":105376005},{"hugoGeneSymbol":"LOC105376009","entrezGeneId":105376009},{"hugoGeneSymbol":"LOC105376010","entrezGeneId":105376010},{"hugoGeneSymbol":"LOC105376011","entrezGeneId":105376011},{"hugoGeneSymbol":"LOC105376013","entrezGeneId":105376013},{"hugoGeneSymbol":"LOC105376014","entrezGeneId":105376014},{"hugoGeneSymbol":"LOC105376015","entrezGeneId":105376015},{"hugoGeneSymbol":"LOC105376016","entrezGeneId":105376016},{"hugoGeneSymbol":"LOC105376017","entrezGeneId":105376017},{"hugoGeneSymbol":"LOC105376018","entrezGeneId":105376018},{"hugoGeneSymbol":"LOC105376020","entrezGeneId":105376020},{"hugoGeneSymbol":"LOC105376023","entrezGeneId":105376023},{"hugoGeneSymbol":"LOC105376025","entrezGeneId":105376025},{"hugoGeneSymbol":"LOC105376026","entrezGeneId":105376026},{"hugoGeneSymbol":"LOC105376030","entrezGeneId":105376030},{"hugoGeneSymbol":"LOC105376031","entrezGeneId":105376031},{"hugoGeneSymbol":"LOC105376032","entrezGeneId":105376032},{"hugoGeneSymbol":"LOC105376033","entrezGeneId":105376033},{"hugoGeneSymbol":"LOC105376034","entrezGeneId":105376034},{"hugoGeneSymbol":"LOC105376035","entrezGeneId":105376035},{"hugoGeneSymbol":"LOC105376037","entrezGeneId":105376037},{"hugoGeneSymbol":"LOC105376039","entrezGeneId":105376039},{"hugoGeneSymbol":"LOC105376040","entrezGeneId":105376040},{"hugoGeneSymbol":"LOC105376041","entrezGeneId":105376041},{"hugoGeneSymbol":"LOC105376042","entrezGeneId":105376042},{"hugoGeneSymbol":"LOC105376043","entrezGeneId":105376043},{"hugoGeneSymbol":"LOC105376044","entrezGeneId":105376044},{"hugoGeneSymbol":"LOC105376045","entrezGeneId":105376045},{"hugoGeneSymbol":"LOC105376046","entrezGeneId":105376046},{"hugoGeneSymbol":"LOC105376050","entrezGeneId":105376050},{"hugoGeneSymbol":"LOC105376057","entrezGeneId":105376057},{"hugoGeneSymbol":"LOC105376058","entrezGeneId":105376058},{"hugoGeneSymbol":"LOC105376059","entrezGeneId":105376059},{"hugoGeneSymbol":"LOC105376060","entrezGeneId":105376060},{"hugoGeneSymbol":"LOC105376063","entrezGeneId":105376063},{"hugoGeneSymbol":"LOC105376064","entrezGeneId":105376064},{"hugoGeneSymbol":"LOC105376065","entrezGeneId":105376065},{"hugoGeneSymbol":"LOC105376067","entrezGeneId":105376067},{"hugoGeneSymbol":"LOC105376070","entrezGeneId":105376070},{"hugoGeneSymbol":"LOC105376071","entrezGeneId":105376071},{"hugoGeneSymbol":"LOC105376072","entrezGeneId":105376072},{"hugoGeneSymbol":"LOC105376074","entrezGeneId":105376074},{"hugoGeneSymbol":"LOC105376076","entrezGeneId":105376076},{"hugoGeneSymbol":"LOC105376078","entrezGeneId":105376078},{"hugoGeneSymbol":"LOC105376079","entrezGeneId":105376079},{"hugoGeneSymbol":"LOC105376080","entrezGeneId":105376080},{"hugoGeneSymbol":"LOC105376081","entrezGeneId":105376081},{"hugoGeneSymbol":"LOC105376082","entrezGeneId":105376082},{"hugoGeneSymbol":"LOC105376083","entrezGeneId":105376083},{"hugoGeneSymbol":"LOC105376084","entrezGeneId":105376084},{"hugoGeneSymbol":"LOC105376085","entrezGeneId":105376085},{"hugoGeneSymbol":"LOC105376086","entrezGeneId":105376086},{"hugoGeneSymbol":"LOC105376087","entrezGeneId":105376087},{"hugoGeneSymbol":"LOC105376088","entrezGeneId":105376088},{"hugoGeneSymbol":"LOC105376090","entrezGeneId":105376090},{"hugoGeneSymbol":"LOC105376091","entrezGeneId":105376091},{"hugoGeneSymbol":"LOC105376093","entrezGeneId":105376093},{"hugoGeneSymbol":"LOC105376095","entrezGeneId":105376095},{"hugoGeneSymbol":"LOC105376096","entrezGeneId":105376096},{"hugoGeneSymbol":"LOC105376097","entrezGeneId":105376097},{"hugoGeneSymbol":"LOC105376099","entrezGeneId":105376099},{"hugoGeneSymbol":"LOC105376100","entrezGeneId":105376100},{"hugoGeneSymbol":"LOC105376101","entrezGeneId":105376101},{"hugoGeneSymbol":"LOC105376103","entrezGeneId":105376103},{"hugoGeneSymbol":"LOC105376105","entrezGeneId":105376105},{"hugoGeneSymbol":"LOC105376106","entrezGeneId":105376106},{"hugoGeneSymbol":"LOC105376107","entrezGeneId":105376107},{"hugoGeneSymbol":"LOC105376108","entrezGeneId":105376108},{"hugoGeneSymbol":"LOC105376110","entrezGeneId":105376110},{"hugoGeneSymbol":"LOC105376114","entrezGeneId":105376114},{"hugoGeneSymbol":"LOC105376116","entrezGeneId":105376116},{"hugoGeneSymbol":"LOC105376118","entrezGeneId":105376118},{"hugoGeneSymbol":"LOC105376119","entrezGeneId":105376119},{"hugoGeneSymbol":"LOC105376121","entrezGeneId":105376121},{"hugoGeneSymbol":"LOC105376123","entrezGeneId":105376123},{"hugoGeneSymbol":"LOC105376124","entrezGeneId":105376124},{"hugoGeneSymbol":"LOC105376126","entrezGeneId":105376126},{"hugoGeneSymbol":"LOC105376127","entrezGeneId":105376127},{"hugoGeneSymbol":"LOC105376131","entrezGeneId":105376131},{"hugoGeneSymbol":"LOC105376134","entrezGeneId":105376134},{"hugoGeneSymbol":"LOC105376135","entrezGeneId":105376135},{"hugoGeneSymbol":"LOC105376136","entrezGeneId":105376136},{"hugoGeneSymbol":"LOC105376137","entrezGeneId":105376137},{"hugoGeneSymbol":"LOC105376139","entrezGeneId":105376139},{"hugoGeneSymbol":"LOC105376140","entrezGeneId":105376140},{"hugoGeneSymbol":"LOC105376142","entrezGeneId":105376142},{"hugoGeneSymbol":"LOC105376143","entrezGeneId":105376143},{"hugoGeneSymbol":"LOC105376144","entrezGeneId":105376144},{"hugoGeneSymbol":"LOC105376146","entrezGeneId":105376146},{"hugoGeneSymbol":"LOC105376147","entrezGeneId":105376147},{"hugoGeneSymbol":"LOC105376148","entrezGeneId":105376148},{"hugoGeneSymbol":"LOC105376154","entrezGeneId":105376154},{"hugoGeneSymbol":"LOC105376155","entrezGeneId":105376155},{"hugoGeneSymbol":"LOC105376156","entrezGeneId":105376156},{"hugoGeneSymbol":"LOC105376157","entrezGeneId":105376157},{"hugoGeneSymbol":"LOC105376158","entrezGeneId":105376158},{"hugoGeneSymbol":"LOC105376159","entrezGeneId":105376159},{"hugoGeneSymbol":"LOC105376161","entrezGeneId":105376161},{"hugoGeneSymbol":"LOC105376163","entrezGeneId":105376163},{"hugoGeneSymbol":"LOC105376166","entrezGeneId":105376166},{"hugoGeneSymbol":"LOC105376167","entrezGeneId":105376167},{"hugoGeneSymbol":"LOC105376168","entrezGeneId":105376168},{"hugoGeneSymbol":"LOC105376171","entrezGeneId":105376171},{"hugoGeneSymbol":"LOC105376174","entrezGeneId":105376174},{"hugoGeneSymbol":"LOC105376176","entrezGeneId":105376176},{"hugoGeneSymbol":"LOC105376177","entrezGeneId":105376177},{"hugoGeneSymbol":"LOC105376179","entrezGeneId":105376179},{"hugoGeneSymbol":"LOC105376180","entrezGeneId":105376180},{"hugoGeneSymbol":"LOC105376181","entrezGeneId":105376181},{"hugoGeneSymbol":"LOC105376182","entrezGeneId":105376182},{"hugoGeneSymbol":"LOC105376183","entrezGeneId":105376183},{"hugoGeneSymbol":"LOC105376184","entrezGeneId":105376184},{"hugoGeneSymbol":"LOC105376186","entrezGeneId":105376186},{"hugoGeneSymbol":"LOC105376187","entrezGeneId":105376187},{"hugoGeneSymbol":"LOC105376188","entrezGeneId":105376188},{"hugoGeneSymbol":"LOC105376190","entrezGeneId":105376190},{"hugoGeneSymbol":"LOC105376191","entrezGeneId":105376191},{"hugoGeneSymbol":"LOC105376192","entrezGeneId":105376192},{"hugoGeneSymbol":"LOC105376193","entrezGeneId":105376193},{"hugoGeneSymbol":"LOC105376194","entrezGeneId":105376194},{"hugoGeneSymbol":"LOC105376195","entrezGeneId":105376195},{"hugoGeneSymbol":"LOC105376196","entrezGeneId":105376196},{"hugoGeneSymbol":"LOC105376197","entrezGeneId":105376197},{"hugoGeneSymbol":"LOC105376199","entrezGeneId":105376199},{"hugoGeneSymbol":"LOC105376201","entrezGeneId":105376201},{"hugoGeneSymbol":"LOC105376204","entrezGeneId":105376204},{"hugoGeneSymbol":"LOC105376205","entrezGeneId":105376205},{"hugoGeneSymbol":"LOC105376206","entrezGeneId":105376206},{"hugoGeneSymbol":"LOC105376207","entrezGeneId":105376207},{"hugoGeneSymbol":"LOC105376208","entrezGeneId":105376208},{"hugoGeneSymbol":"LOC105376209","entrezGeneId":105376209},{"hugoGeneSymbol":"LOC105376211","entrezGeneId":105376211},{"hugoGeneSymbol":"LOC105376212","entrezGeneId":105376212},{"hugoGeneSymbol":"LOC105376213","entrezGeneId":105376213},{"hugoGeneSymbol":"LOC105376214","entrezGeneId":105376214},{"hugoGeneSymbol":"LOC105376216","entrezGeneId":105376216},{"hugoGeneSymbol":"LOC105376217","entrezGeneId":105376217},{"hugoGeneSymbol":"LOC105376218","entrezGeneId":105376218},{"hugoGeneSymbol":"LOC105376219","entrezGeneId":105376219},{"hugoGeneSymbol":"LOC105376220","entrezGeneId":105376220},{"hugoGeneSymbol":"LOC105376221","entrezGeneId":105376221},{"hugoGeneSymbol":"LOC105376222","entrezGeneId":105376222},{"hugoGeneSymbol":"LOC105376223","entrezGeneId":105376223},{"hugoGeneSymbol":"LOC105376224","entrezGeneId":105376224},{"hugoGeneSymbol":"LOC105376225","entrezGeneId":105376225},{"hugoGeneSymbol":"LOC105376228","entrezGeneId":105376228},{"hugoGeneSymbol":"LOC105376229","entrezGeneId":105376229},{"hugoGeneSymbol":"LOC105376231","entrezGeneId":105376231},{"hugoGeneSymbol":"LOC105376232","entrezGeneId":105376232},{"hugoGeneSymbol":"LOC105376233","entrezGeneId":105376233},{"hugoGeneSymbol":"LOC105376234","entrezGeneId":105376234},{"hugoGeneSymbol":"LOC105376235","entrezGeneId":105376235},{"hugoGeneSymbol":"LOC105376236","entrezGeneId":105376236},{"hugoGeneSymbol":"LOC105376237","entrezGeneId":105376237},{"hugoGeneSymbol":"LOC105376238","entrezGeneId":105376238},{"hugoGeneSymbol":"LOC105376239","entrezGeneId":105376239},{"hugoGeneSymbol":"LOC105376240","entrezGeneId":105376240},{"hugoGeneSymbol":"LOC105376241","entrezGeneId":105376241},{"hugoGeneSymbol":"LOC105376242","entrezGeneId":105376242},{"hugoGeneSymbol":"LOC105376243","entrezGeneId":105376243},{"hugoGeneSymbol":"LOC105376244","entrezGeneId":105376244},{"hugoGeneSymbol":"LOC105376246","entrezGeneId":105376246},{"hugoGeneSymbol":"LOC105376247","entrezGeneId":105376247},{"hugoGeneSymbol":"LOC105376248","entrezGeneId":105376248},{"hugoGeneSymbol":"LOC105376249","entrezGeneId":105376249},{"hugoGeneSymbol":"LOC105376250","entrezGeneId":105376250},{"hugoGeneSymbol":"LOC105376253","entrezGeneId":105376253},{"hugoGeneSymbol":"LOC105376257","entrezGeneId":105376257},{"hugoGeneSymbol":"LOC105376265","entrezGeneId":105376265},{"hugoGeneSymbol":"LOC105376266","entrezGeneId":105376266},{"hugoGeneSymbol":"LOC105376267","entrezGeneId":105376267},{"hugoGeneSymbol":"LOC105376268","entrezGeneId":105376268},{"hugoGeneSymbol":"LOC105376269","entrezGeneId":105376269},{"hugoGeneSymbol":"LOC105376270","entrezGeneId":105376270},{"hugoGeneSymbol":"LOC105376271","entrezGeneId":105376271},{"hugoGeneSymbol":"LOC105376272","entrezGeneId":105376272},{"hugoGeneSymbol":"LOC105376273","entrezGeneId":105376273},{"hugoGeneSymbol":"LOC105376274","entrezGeneId":105376274},{"hugoGeneSymbol":"LOC105376275","entrezGeneId":105376275},{"hugoGeneSymbol":"LOC105376276","entrezGeneId":105376276},{"hugoGeneSymbol":"LOC105376277","entrezGeneId":105376277},{"hugoGeneSymbol":"LOC105376278","entrezGeneId":105376278},{"hugoGeneSymbol":"LOC105376279","entrezGeneId":105376279},{"hugoGeneSymbol":"LOC105376281","entrezGeneId":105376281},{"hugoGeneSymbol":"LOC105376286","entrezGeneId":105376286},{"hugoGeneSymbol":"LOC105376287","entrezGeneId":105376287},{"hugoGeneSymbol":"LOC105376289","entrezGeneId":105376289},{"hugoGeneSymbol":"LOC105376290","entrezGeneId":105376290},{"hugoGeneSymbol":"LOC105376291","entrezGeneId":105376291},{"hugoGeneSymbol":"LOC105376292","entrezGeneId":105376292},{"hugoGeneSymbol":"LOC105376294","entrezGeneId":105376294},{"hugoGeneSymbol":"LOC105376297","entrezGeneId":105376297},{"hugoGeneSymbol":"LOC105376299","entrezGeneId":105376299},{"hugoGeneSymbol":"LOC105376300","entrezGeneId":105376300},{"hugoGeneSymbol":"LOC105376301","entrezGeneId":105376301},{"hugoGeneSymbol":"LOC105376302","entrezGeneId":105376302},{"hugoGeneSymbol":"LOC105376304","entrezGeneId":105376304},{"hugoGeneSymbol":"LOC105376306","entrezGeneId":105376306},{"hugoGeneSymbol":"LOC105376308","entrezGeneId":105376308},{"hugoGeneSymbol":"LOC105376311","entrezGeneId":105376311},{"hugoGeneSymbol":"LOC105376313","entrezGeneId":105376313},{"hugoGeneSymbol":"LOC105376314","entrezGeneId":105376314},{"hugoGeneSymbol":"LOC105376316","entrezGeneId":105376316},{"hugoGeneSymbol":"LOC105376317","entrezGeneId":105376317},{"hugoGeneSymbol":"LOC105376318","entrezGeneId":105376318},{"hugoGeneSymbol":"LOC105376319","entrezGeneId":105376319},{"hugoGeneSymbol":"LOC105376322","entrezGeneId":105376322},{"hugoGeneSymbol":"LOC105376323","entrezGeneId":105376323},{"hugoGeneSymbol":"LOC105376325","entrezGeneId":105376325},{"hugoGeneSymbol":"LOC105376326","entrezGeneId":105376326},{"hugoGeneSymbol":"LOC105376327","entrezGeneId":105376327},{"hugoGeneSymbol":"LOC105376328","entrezGeneId":105376328},{"hugoGeneSymbol":"LOC105376331","entrezGeneId":105376331},{"hugoGeneSymbol":"LOC105376332","entrezGeneId":105376332},{"hugoGeneSymbol":"LOC105376333","entrezGeneId":105376333},{"hugoGeneSymbol":"LOC105376334","entrezGeneId":105376334},{"hugoGeneSymbol":"LOC105376335","entrezGeneId":105376335},{"hugoGeneSymbol":"LOC105376339","entrezGeneId":105376339},{"hugoGeneSymbol":"LOC105376340","entrezGeneId":105376340},{"hugoGeneSymbol":"LOC105376341","entrezGeneId":105376341},{"hugoGeneSymbol":"LOC105376342","entrezGeneId":105376342},{"hugoGeneSymbol":"LOC105376344","entrezGeneId":105376344},{"hugoGeneSymbol":"LOC105376345","entrezGeneId":105376345},{"hugoGeneSymbol":"LOC105376346","entrezGeneId":105376346},{"hugoGeneSymbol":"LOC105376348","entrezGeneId":105376348},{"hugoGeneSymbol":"LOC105376349","entrezGeneId":105376349},{"hugoGeneSymbol":"LOC105376350","entrezGeneId":105376350},{"hugoGeneSymbol":"LOC105376351","entrezGeneId":105376351},{"hugoGeneSymbol":"LOC105376352","entrezGeneId":105376352},{"hugoGeneSymbol":"LOC105376353","entrezGeneId":105376353},{"hugoGeneSymbol":"LOC105376354","entrezGeneId":105376354},{"hugoGeneSymbol":"LOC105376356","entrezGeneId":105376356},{"hugoGeneSymbol":"LOC105376357","entrezGeneId":105376357},{"hugoGeneSymbol":"LOC105376358","entrezGeneId":105376358},{"hugoGeneSymbol":"LOC105376360","entrezGeneId":105376360},{"hugoGeneSymbol":"LOC105376361","entrezGeneId":105376361},{"hugoGeneSymbol":"LOC105376363","entrezGeneId":105376363},{"hugoGeneSymbol":"LOC105376364","entrezGeneId":105376364},{"hugoGeneSymbol":"LOC105376365","entrezGeneId":105376365},{"hugoGeneSymbol":"LOC105376367","entrezGeneId":105376367},{"hugoGeneSymbol":"LOC105376368","entrezGeneId":105376368},{"hugoGeneSymbol":"LOC105376369","entrezGeneId":105376369},{"hugoGeneSymbol":"LOC105376370","entrezGeneId":105376370},{"hugoGeneSymbol":"LOC105376371","entrezGeneId":105376371},{"hugoGeneSymbol":"LOC105376372","entrezGeneId":105376372},{"hugoGeneSymbol":"LOC105376373","entrezGeneId":105376373},{"hugoGeneSymbol":"LOC105376374","entrezGeneId":105376374},{"hugoGeneSymbol":"LOC105376375","entrezGeneId":105376375},{"hugoGeneSymbol":"LOC105376380","entrezGeneId":105376380},{"hugoGeneSymbol":"LOC105376381","entrezGeneId":105376381},{"hugoGeneSymbol":"LOC105376382","entrezGeneId":105376382},{"hugoGeneSymbol":"LOC105376383","entrezGeneId":105376383},{"hugoGeneSymbol":"LOC105376384","entrezGeneId":105376384},{"hugoGeneSymbol":"LOC105376386","entrezGeneId":105376386},{"hugoGeneSymbol":"LOC105376387","entrezGeneId":105376387},{"hugoGeneSymbol":"LOC105376388","entrezGeneId":105376388},{"hugoGeneSymbol":"LOC105376390","entrezGeneId":105376390},{"hugoGeneSymbol":"LOC105376391","entrezGeneId":105376391},{"hugoGeneSymbol":"LOC105376392","entrezGeneId":105376392},{"hugoGeneSymbol":"LOC105376394","entrezGeneId":105376394},{"hugoGeneSymbol":"LOC105376395","entrezGeneId":105376395},{"hugoGeneSymbol":"LOC105376396","entrezGeneId":105376396},{"hugoGeneSymbol":"LOC105376397","entrezGeneId":105376397},{"hugoGeneSymbol":"LOC105376398","entrezGeneId":105376398},{"hugoGeneSymbol":"LOC105376399","entrezGeneId":105376399},{"hugoGeneSymbol":"LOC105376400","entrezGeneId":105376400},{"hugoGeneSymbol":"LOC105376402","entrezGeneId":105376402},{"hugoGeneSymbol":"LOC105376403","entrezGeneId":105376403},{"hugoGeneSymbol":"LOC105376404","entrezGeneId":105376404},{"hugoGeneSymbol":"LOC105376405","entrezGeneId":105376405},{"hugoGeneSymbol":"LOC105376409","entrezGeneId":105376409},{"hugoGeneSymbol":"LOC105376410","entrezGeneId":105376410},{"hugoGeneSymbol":"LOC105376411","entrezGeneId":105376411},{"hugoGeneSymbol":"LOC105376412","entrezGeneId":105376412},{"hugoGeneSymbol":"LOC105376413","entrezGeneId":105376413},{"hugoGeneSymbol":"LOC105376415","entrezGeneId":105376415},{"hugoGeneSymbol":"LOC105376416","entrezGeneId":105376416},{"hugoGeneSymbol":"LOC105376418","entrezGeneId":105376418},{"hugoGeneSymbol":"LOC105376419","entrezGeneId":105376419},{"hugoGeneSymbol":"LOC105376420","entrezGeneId":105376420},{"hugoGeneSymbol":"LOC105376421","entrezGeneId":105376421},{"hugoGeneSymbol":"LOC105376422","entrezGeneId":105376422},{"hugoGeneSymbol":"LOC105376425","entrezGeneId":105376425},{"hugoGeneSymbol":"LOC105376426","entrezGeneId":105376426},{"hugoGeneSymbol":"LOC105376428","entrezGeneId":105376428},{"hugoGeneSymbol":"LOC105376429","entrezGeneId":105376429},{"hugoGeneSymbol":"LOC105376431","entrezGeneId":105376431},{"hugoGeneSymbol":"LOC105376433","entrezGeneId":105376433},{"hugoGeneSymbol":"LOC105376434","entrezGeneId":105376434},{"hugoGeneSymbol":"LOC105376435","entrezGeneId":105376435},{"hugoGeneSymbol":"LOC105376436","entrezGeneId":105376436},{"hugoGeneSymbol":"LOC105376437","entrezGeneId":105376437},{"hugoGeneSymbol":"LOC105376438","entrezGeneId":105376438},{"hugoGeneSymbol":"LOC105376440","entrezGeneId":105376440},{"hugoGeneSymbol":"LOC105376441","entrezGeneId":105376441},{"hugoGeneSymbol":"LOC105376442","entrezGeneId":105376442},{"hugoGeneSymbol":"LOC105376444","entrezGeneId":105376444},{"hugoGeneSymbol":"LOC105376445","entrezGeneId":105376445},{"hugoGeneSymbol":"LOC105376447","entrezGeneId":105376447},{"hugoGeneSymbol":"LOC105376448","entrezGeneId":105376448},{"hugoGeneSymbol":"LOC105376449","entrezGeneId":105376449},{"hugoGeneSymbol":"LOC105376450","entrezGeneId":105376450},{"hugoGeneSymbol":"LOC105376451","entrezGeneId":105376451},{"hugoGeneSymbol":"LOC105376453","entrezGeneId":105376453},{"hugoGeneSymbol":"LOC105376454","entrezGeneId":105376454},{"hugoGeneSymbol":"LOC105376455","entrezGeneId":105376455},{"hugoGeneSymbol":"LOC105376456","entrezGeneId":105376456},{"hugoGeneSymbol":"LOC105376460","entrezGeneId":105376460},{"hugoGeneSymbol":"LOC105376461","entrezGeneId":105376461},{"hugoGeneSymbol":"LOC105376463","entrezGeneId":105376463},{"hugoGeneSymbol":"LOC105376466","entrezGeneId":105376466},{"hugoGeneSymbol":"LOC105376467","entrezGeneId":105376467},{"hugoGeneSymbol":"LOC105376468","entrezGeneId":105376468},{"hugoGeneSymbol":"LOC105376470","entrezGeneId":105376470},{"hugoGeneSymbol":"LOC105376471","entrezGeneId":105376471},{"hugoGeneSymbol":"LOC105376472","entrezGeneId":105376472},{"hugoGeneSymbol":"LOC105376473","entrezGeneId":105376473},{"hugoGeneSymbol":"LOC105376474","entrezGeneId":105376474},{"hugoGeneSymbol":"LOC105376475","entrezGeneId":105376475},{"hugoGeneSymbol":"LOC105376476","entrezGeneId":105376476},{"hugoGeneSymbol":"LOC105376477","entrezGeneId":105376477},{"hugoGeneSymbol":"LOC105376478","entrezGeneId":105376478},{"hugoGeneSymbol":"LOC105376479","entrezGeneId":105376479},{"hugoGeneSymbol":"LOC105376480","entrezGeneId":105376480},{"hugoGeneSymbol":"LOC105376481","entrezGeneId":105376481},{"hugoGeneSymbol":"LOC105376482","entrezGeneId":105376482},{"hugoGeneSymbol":"LOC105376483","entrezGeneId":105376483},{"hugoGeneSymbol":"LOC105376484","entrezGeneId":105376484},{"hugoGeneSymbol":"LOC105376485","entrezGeneId":105376485},{"hugoGeneSymbol":"LOC105376486","entrezGeneId":105376486},{"hugoGeneSymbol":"LOC105376489","entrezGeneId":105376489},{"hugoGeneSymbol":"LOC105376490","entrezGeneId":105376490},{"hugoGeneSymbol":"LOC105376491","entrezGeneId":105376491},{"hugoGeneSymbol":"LOC105376493","entrezGeneId":105376493},{"hugoGeneSymbol":"LOC105376494","entrezGeneId":105376494},{"hugoGeneSymbol":"LOC105376495","entrezGeneId":105376495},{"hugoGeneSymbol":"LOC105376496","entrezGeneId":105376496},{"hugoGeneSymbol":"LOC105376497","entrezGeneId":105376497},{"hugoGeneSymbol":"LOC105376498","entrezGeneId":105376498},{"hugoGeneSymbol":"LOC105376499","entrezGeneId":105376499},{"hugoGeneSymbol":"LOC105376500","entrezGeneId":105376500},{"hugoGeneSymbol":"LOC105376504","entrezGeneId":105376504},{"hugoGeneSymbol":"LOC105376505","entrezGeneId":105376505},{"hugoGeneSymbol":"LOC105376506","entrezGeneId":105376506},{"hugoGeneSymbol":"LOC105376507","entrezGeneId":105376507},{"hugoGeneSymbol":"LOC105376508","entrezGeneId":105376508},{"hugoGeneSymbol":"LOC105376509","entrezGeneId":105376509},{"hugoGeneSymbol":"LOC105376512","entrezGeneId":105376512},{"hugoGeneSymbol":"LOC105376513","entrezGeneId":105376513},{"hugoGeneSymbol":"LOC105376514","entrezGeneId":105376514},{"hugoGeneSymbol":"LOC105376517","entrezGeneId":105376517},{"hugoGeneSymbol":"LOC105376520","entrezGeneId":105376520},{"hugoGeneSymbol":"LOC105376525","entrezGeneId":105376525},{"hugoGeneSymbol":"LOC105376526","entrezGeneId":105376526},{"hugoGeneSymbol":"LOC105376527","entrezGeneId":105376527},{"hugoGeneSymbol":"LOC105376528","entrezGeneId":105376528},{"hugoGeneSymbol":"LOC105376533","entrezGeneId":105376533},{"hugoGeneSymbol":"LOC105376535","entrezGeneId":105376535},{"hugoGeneSymbol":"LOC105376536","entrezGeneId":105376536},{"hugoGeneSymbol":"LOC105376539","entrezGeneId":105376539},{"hugoGeneSymbol":"LOC105376541","entrezGeneId":105376541},{"hugoGeneSymbol":"LOC105376542","entrezGeneId":105376542},{"hugoGeneSymbol":"LOC105376544","entrezGeneId":105376544},{"hugoGeneSymbol":"LOC105376547","entrezGeneId":105376547},{"hugoGeneSymbol":"LOC105376548","entrezGeneId":105376548},{"hugoGeneSymbol":"LOC105376550","entrezGeneId":105376550},{"hugoGeneSymbol":"LOC105376553","entrezGeneId":105376553},{"hugoGeneSymbol":"LOC105376556","entrezGeneId":105376556},{"hugoGeneSymbol":"LOC105376557","entrezGeneId":105376557},{"hugoGeneSymbol":"LOC105376558","entrezGeneId":105376558},{"hugoGeneSymbol":"LOC105376567","entrezGeneId":105376567},{"hugoGeneSymbol":"LOC105376568","entrezGeneId":105376568},{"hugoGeneSymbol":"LOC105376569","entrezGeneId":105376569},{"hugoGeneSymbol":"LOC105376570","entrezGeneId":105376570},{"hugoGeneSymbol":"LOC105376571","entrezGeneId":105376571},{"hugoGeneSymbol":"LOC105376572","entrezGeneId":105376572},{"hugoGeneSymbol":"LOC105376576","entrezGeneId":105376576},{"hugoGeneSymbol":"LOC105376577","entrezGeneId":105376577},{"hugoGeneSymbol":"LOC105376578","entrezGeneId":105376578},{"hugoGeneSymbol":"LOC105376579","entrezGeneId":105376579},{"hugoGeneSymbol":"LOC105376580","entrezGeneId":105376580},{"hugoGeneSymbol":"LOC105376583","entrezGeneId":105376583},{"hugoGeneSymbol":"LOC105376584","entrezGeneId":105376584},{"hugoGeneSymbol":"LOC105376585","entrezGeneId":105376585},{"hugoGeneSymbol":"LOC105376586","entrezGeneId":105376586},{"hugoGeneSymbol":"LOC105376587","entrezGeneId":105376587},{"hugoGeneSymbol":"LOC105376588","entrezGeneId":105376588},{"hugoGeneSymbol":"LOC105376589","entrezGeneId":105376589},{"hugoGeneSymbol":"LOC105376591","entrezGeneId":105376591},{"hugoGeneSymbol":"LOC105376592","entrezGeneId":105376592},{"hugoGeneSymbol":"LOC105376593","entrezGeneId":105376593},{"hugoGeneSymbol":"LOC105376594","entrezGeneId":105376594},{"hugoGeneSymbol":"LOC105376595","entrezGeneId":105376595},{"hugoGeneSymbol":"LOC105376596","entrezGeneId":105376596},{"hugoGeneSymbol":"LOC105376598","entrezGeneId":105376598},{"hugoGeneSymbol":"LOC105376599","entrezGeneId":105376599},{"hugoGeneSymbol":"LOC105376600","entrezGeneId":105376600},{"hugoGeneSymbol":"LOC105376601","entrezGeneId":105376601},{"hugoGeneSymbol":"LOC105376602","entrezGeneId":105376602},{"hugoGeneSymbol":"LOC105376603","entrezGeneId":105376603},{"hugoGeneSymbol":"LOC105376604","entrezGeneId":105376604},{"hugoGeneSymbol":"LOC105376605","entrezGeneId":105376605},{"hugoGeneSymbol":"LOC105376607","entrezGeneId":105376607},{"hugoGeneSymbol":"LOC105376609","entrezGeneId":105376609},{"hugoGeneSymbol":"LOC105376611","entrezGeneId":105376611},{"hugoGeneSymbol":"LOC105376613","entrezGeneId":105376613},{"hugoGeneSymbol":"LOC105376615","entrezGeneId":105376615},{"hugoGeneSymbol":"LOC105376617","entrezGeneId":105376617},{"hugoGeneSymbol":"LOC105376619","entrezGeneId":105376619},{"hugoGeneSymbol":"LOC105376620","entrezGeneId":105376620},{"hugoGeneSymbol":"LOC105376621","entrezGeneId":105376621},{"hugoGeneSymbol":"LOC105376622","entrezGeneId":105376622},{"hugoGeneSymbol":"LOC105376623","entrezGeneId":105376623},{"hugoGeneSymbol":"LOC105376624","entrezGeneId":105376624},{"hugoGeneSymbol":"LOC105376625","entrezGeneId":105376625},{"hugoGeneSymbol":"LOC105376626","entrezGeneId":105376626},{"hugoGeneSymbol":"LOC105376627","entrezGeneId":105376627},{"hugoGeneSymbol":"LOC105376631","entrezGeneId":105376631},{"hugoGeneSymbol":"LOC105376632","entrezGeneId":105376632},{"hugoGeneSymbol":"LOC105376633","entrezGeneId":105376633},{"hugoGeneSymbol":"LOC105376634","entrezGeneId":105376634},{"hugoGeneSymbol":"LOC105376635","entrezGeneId":105376635},{"hugoGeneSymbol":"LOC105376636","entrezGeneId":105376636},{"hugoGeneSymbol":"LOC105376637","entrezGeneId":105376637},{"hugoGeneSymbol":"LOC105376639","entrezGeneId":105376639},{"hugoGeneSymbol":"LOC105376640","entrezGeneId":105376640},{"hugoGeneSymbol":"LOC105376641","entrezGeneId":105376641},{"hugoGeneSymbol":"LOC105376642","entrezGeneId":105376642},{"hugoGeneSymbol":"LOC105376644","entrezGeneId":105376644},{"hugoGeneSymbol":"LOC105376645","entrezGeneId":105376645},{"hugoGeneSymbol":"LOC105376646","entrezGeneId":105376646},{"hugoGeneSymbol":"LOC105376647","entrezGeneId":105376647},{"hugoGeneSymbol":"LOC105376649","entrezGeneId":105376649},{"hugoGeneSymbol":"LOC105376650","entrezGeneId":105376650},{"hugoGeneSymbol":"LOC105376652","entrezGeneId":105376652},{"hugoGeneSymbol":"LOC105376654","entrezGeneId":105376654},{"hugoGeneSymbol":"LOC105376655","entrezGeneId":105376655},{"hugoGeneSymbol":"LOC105376656","entrezGeneId":105376656},{"hugoGeneSymbol":"LOC105376658","entrezGeneId":105376658},{"hugoGeneSymbol":"LOC105376661","entrezGeneId":105376661},{"hugoGeneSymbol":"LOC105376662","entrezGeneId":105376662},{"hugoGeneSymbol":"LOC105376670","entrezGeneId":105376670},{"hugoGeneSymbol":"LOC105376671","entrezGeneId":105376671},{"hugoGeneSymbol":"LOC105376673","entrezGeneId":105376673},{"hugoGeneSymbol":"LOC105376674","entrezGeneId":105376674},{"hugoGeneSymbol":"LOC105376675","entrezGeneId":105376675},{"hugoGeneSymbol":"LOC105376678","entrezGeneId":105376678},{"hugoGeneSymbol":"LOC105376680","entrezGeneId":105376680},{"hugoGeneSymbol":"LOC105376681","entrezGeneId":105376681},{"hugoGeneSymbol":"LOC105376682","entrezGeneId":105376682},{"hugoGeneSymbol":"LOC105376684","entrezGeneId":105376684},{"hugoGeneSymbol":"LOC105376686","entrezGeneId":105376686},{"hugoGeneSymbol":"LOC105376687","entrezGeneId":105376687},{"hugoGeneSymbol":"LOC105376689","entrezGeneId":105376689},{"hugoGeneSymbol":"LOC105376691","entrezGeneId":105376691},{"hugoGeneSymbol":"LOC105376692","entrezGeneId":105376692},{"hugoGeneSymbol":"LOC105376695","entrezGeneId":105376695},{"hugoGeneSymbol":"LOC105376698","entrezGeneId":105376698},{"hugoGeneSymbol":"LOC105376704","entrezGeneId":105376704},{"hugoGeneSymbol":"LOC105376707","entrezGeneId":105376707},{"hugoGeneSymbol":"LOC105376709","entrezGeneId":105376709},{"hugoGeneSymbol":"LOC105376710","entrezGeneId":105376710},{"hugoGeneSymbol":"LOC105376712","entrezGeneId":105376712},{"hugoGeneSymbol":"LOC105376713","entrezGeneId":105376713},{"hugoGeneSymbol":"LOC105376714","entrezGeneId":105376714},{"hugoGeneSymbol":"LOC105376717","entrezGeneId":105376717},{"hugoGeneSymbol":"LOC105376718","entrezGeneId":105376718},{"hugoGeneSymbol":"LOC105376722","entrezGeneId":105376722},{"hugoGeneSymbol":"LOC105376724","entrezGeneId":105376724},{"hugoGeneSymbol":"LOC105376725","entrezGeneId":105376725},{"hugoGeneSymbol":"LOC105376730","entrezGeneId":105376730},{"hugoGeneSymbol":"LOC105376731","entrezGeneId":105376731},{"hugoGeneSymbol":"LOC105376733","entrezGeneId":105376733},{"hugoGeneSymbol":"LOC105376735","entrezGeneId":105376735},{"hugoGeneSymbol":"LOC105376736","entrezGeneId":105376736},{"hugoGeneSymbol":"LOC105376737","entrezGeneId":105376737},{"hugoGeneSymbol":"LOC105376738","entrezGeneId":105376738},{"hugoGeneSymbol":"LOC105376739","entrezGeneId":105376739},{"hugoGeneSymbol":"LOC105376740","entrezGeneId":105376740},{"hugoGeneSymbol":"LOC105376744","entrezGeneId":105376744},{"hugoGeneSymbol":"LOC105376747","entrezGeneId":105376747},{"hugoGeneSymbol":"LOC105376748","entrezGeneId":105376748},{"hugoGeneSymbol":"LOC105376749","entrezGeneId":105376749},{"hugoGeneSymbol":"LOC105376751","entrezGeneId":105376751},{"hugoGeneSymbol":"LOC105376752","entrezGeneId":105376752},{"hugoGeneSymbol":"LOC105376753","entrezGeneId":105376753},{"hugoGeneSymbol":"LOC105376754","entrezGeneId":105376754},{"hugoGeneSymbol":"LOC105376755","entrezGeneId":105376755},{"hugoGeneSymbol":"LOC105376756","entrezGeneId":105376756},{"hugoGeneSymbol":"LOC105376759","entrezGeneId":105376759},{"hugoGeneSymbol":"LOC105376767","entrezGeneId":105376767},{"hugoGeneSymbol":"LOC105376772","entrezGeneId":105376772},{"hugoGeneSymbol":"LOC105376774","entrezGeneId":105376774},{"hugoGeneSymbol":"LOC105376775","entrezGeneId":105376775},{"hugoGeneSymbol":"LOC105376778","entrezGeneId":105376778},{"hugoGeneSymbol":"LOC105376781","entrezGeneId":105376781},{"hugoGeneSymbol":"LOC105376786","entrezGeneId":105376786},{"hugoGeneSymbol":"LOC105376787","entrezGeneId":105376787},{"hugoGeneSymbol":"LOC105376789","entrezGeneId":105376789},{"hugoGeneSymbol":"LOC105376791","entrezGeneId":105376791},{"hugoGeneSymbol":"LOC105376794","entrezGeneId":105376794},{"hugoGeneSymbol":"LOC105376799","entrezGeneId":105376799},{"hugoGeneSymbol":"LOC105376805","entrezGeneId":105376805},{"hugoGeneSymbol":"LOC105376806","entrezGeneId":105376806},{"hugoGeneSymbol":"LOC105376808","entrezGeneId":105376808},{"hugoGeneSymbol":"LOC105376809","entrezGeneId":105376809},{"hugoGeneSymbol":"LOC105376810","entrezGeneId":105376810},{"hugoGeneSymbol":"LOC105376812","entrezGeneId":105376812},{"hugoGeneSymbol":"LOC105376815","entrezGeneId":105376815},{"hugoGeneSymbol":"LOC105376817","entrezGeneId":105376817},{"hugoGeneSymbol":"LOC105376818","entrezGeneId":105376818},{"hugoGeneSymbol":"LOC105376819","entrezGeneId":105376819},{"hugoGeneSymbol":"LOC105376823","entrezGeneId":105376823},{"hugoGeneSymbol":"LOC105376825","entrezGeneId":105376825},{"hugoGeneSymbol":"LOC105376826","entrezGeneId":105376826},{"hugoGeneSymbol":"LOC105376828","entrezGeneId":105376828},{"hugoGeneSymbol":"LOC105376829","entrezGeneId":105376829},{"hugoGeneSymbol":"LOC105376830","entrezGeneId":105376830},{"hugoGeneSymbol":"LOC105376832","entrezGeneId":105376832},{"hugoGeneSymbol":"LOC105376834","entrezGeneId":105376834},{"hugoGeneSymbol":"LOC105376836","entrezGeneId":105376836},{"hugoGeneSymbol":"LOC105376839","entrezGeneId":105376839},{"hugoGeneSymbol":"LOC105376844","entrezGeneId":105376844},{"hugoGeneSymbol":"LOC105376845","entrezGeneId":105376845},{"hugoGeneSymbol":"LOC105376850","entrezGeneId":105376850},{"hugoGeneSymbol":"LOC105376856","entrezGeneId":105376856},{"hugoGeneSymbol":"LOC105376859","entrezGeneId":105376859},{"hugoGeneSymbol":"LOC105376860","entrezGeneId":105376860},{"hugoGeneSymbol":"LOC105376861","entrezGeneId":105376861},{"hugoGeneSymbol":"LOC105376863","entrezGeneId":105376863},{"hugoGeneSymbol":"LOC105376864","entrezGeneId":105376864},{"hugoGeneSymbol":"LOC105376866","entrezGeneId":105376866},{"hugoGeneSymbol":"LOC105376871","entrezGeneId":105376871},{"hugoGeneSymbol":"LOC105376872","entrezGeneId":105376872},{"hugoGeneSymbol":"LOC105376873","entrezGeneId":105376873},{"hugoGeneSymbol":"LOC105376874","entrezGeneId":105376874},{"hugoGeneSymbol":"LOC105376875","entrezGeneId":105376875},{"hugoGeneSymbol":"LOC105376876","entrezGeneId":105376876},{"hugoGeneSymbol":"LOC105376878","entrezGeneId":105376878},{"hugoGeneSymbol":"LOC105376879","entrezGeneId":105376879},{"hugoGeneSymbol":"LOC105376882","entrezGeneId":105376882},{"hugoGeneSymbol":"LOC105376885","entrezGeneId":105376885},{"hugoGeneSymbol":"LOC105376886","entrezGeneId":105376886},{"hugoGeneSymbol":"LOC105376888","entrezGeneId":105376888},{"hugoGeneSymbol":"LOC105376890","entrezGeneId":105376890},{"hugoGeneSymbol":"LOC105376892","entrezGeneId":105376892},{"hugoGeneSymbol":"LOC105376898","entrezGeneId":105376898},{"hugoGeneSymbol":"LOC105376899","entrezGeneId":105376899},{"hugoGeneSymbol":"LOC105376901","entrezGeneId":105376901},{"hugoGeneSymbol":"LOC105376906","entrezGeneId":105376906},{"hugoGeneSymbol":"LOC105376910","entrezGeneId":105376910},{"hugoGeneSymbol":"LOC105376912","entrezGeneId":105376912},{"hugoGeneSymbol":"LOC105376914","entrezGeneId":105376914},{"hugoGeneSymbol":"LOC105376917","entrezGeneId":105376917},{"hugoGeneSymbol":"LOC105376921","entrezGeneId":105376921},{"hugoGeneSymbol":"LOC105376922","entrezGeneId":105376922},{"hugoGeneSymbol":"LOC105376923","entrezGeneId":105376923},{"hugoGeneSymbol":"LOC105376924","entrezGeneId":105376924},{"hugoGeneSymbol":"LOC105376926","entrezGeneId":105376926},{"hugoGeneSymbol":"LOC105376933","entrezGeneId":105376933},{"hugoGeneSymbol":"LOC105376934","entrezGeneId":105376934},{"hugoGeneSymbol":"LOC105376936","entrezGeneId":105376936},{"hugoGeneSymbol":"LOC105376938","entrezGeneId":105376938},{"hugoGeneSymbol":"LOC105376939","entrezGeneId":105376939},{"hugoGeneSymbol":"LOC105376940","entrezGeneId":105376940},{"hugoGeneSymbol":"LOC105376941","entrezGeneId":105376941},{"hugoGeneSymbol":"LOC105376942","entrezGeneId":105376942},{"hugoGeneSymbol":"LOC105376943","entrezGeneId":105376943},{"hugoGeneSymbol":"LOC105376944","entrezGeneId":105376944},{"hugoGeneSymbol":"LOC105376945","entrezGeneId":105376945},{"hugoGeneSymbol":"LOC105376949","entrezGeneId":105376949},{"hugoGeneSymbol":"LOC105376950","entrezGeneId":105376950},{"hugoGeneSymbol":"LOC105376951","entrezGeneId":105376951},{"hugoGeneSymbol":"LOC105376952","entrezGeneId":105376952},{"hugoGeneSymbol":"LOC105376956","entrezGeneId":105376956},{"hugoGeneSymbol":"LOC105376957","entrezGeneId":105376957},{"hugoGeneSymbol":"LOC105376958","entrezGeneId":105376958},{"hugoGeneSymbol":"LOC105376959","entrezGeneId":105376959},{"hugoGeneSymbol":"LOC105376960","entrezGeneId":105376960},{"hugoGeneSymbol":"LOC105376963","entrezGeneId":105376963},{"hugoGeneSymbol":"LOC105376964","entrezGeneId":105376964},{"hugoGeneSymbol":"LOC105376972","entrezGeneId":105376972},{"hugoGeneSymbol":"LOC105376975","entrezGeneId":105376975},{"hugoGeneSymbol":"LOC105376976","entrezGeneId":105376976},{"hugoGeneSymbol":"LOC105376978","entrezGeneId":105376978},{"hugoGeneSymbol":"LOC105376980","entrezGeneId":105376980},{"hugoGeneSymbol":"LOC105376981","entrezGeneId":105376981},{"hugoGeneSymbol":"LOC105376982","entrezGeneId":105376982},{"hugoGeneSymbol":"LOC105376984","entrezGeneId":105376984},{"hugoGeneSymbol":"LOC105376985","entrezGeneId":105376985},{"hugoGeneSymbol":"LOC105376987","entrezGeneId":105376987},{"hugoGeneSymbol":"LOC105376988","entrezGeneId":105376988},{"hugoGeneSymbol":"LOC105376989","entrezGeneId":105376989},{"hugoGeneSymbol":"LOC105376991","entrezGeneId":105376991},{"hugoGeneSymbol":"LOC105376993","entrezGeneId":105376993},{"hugoGeneSymbol":"LOC105376995","entrezGeneId":105376995},{"hugoGeneSymbol":"LOC105376996","entrezGeneId":105376996},{"hugoGeneSymbol":"LOC105376997","entrezGeneId":105376997},{"hugoGeneSymbol":"LOC105376998","entrezGeneId":105376998},{"hugoGeneSymbol":"LOC105377000","entrezGeneId":105377000},{"hugoGeneSymbol":"LOC105377001","entrezGeneId":105377001},{"hugoGeneSymbol":"LOC105377002","entrezGeneId":105377002},{"hugoGeneSymbol":"LOC105377003","entrezGeneId":105377003},{"hugoGeneSymbol":"LOC105377004","entrezGeneId":105377004},{"hugoGeneSymbol":"LOC105377005","entrezGeneId":105377005},{"hugoGeneSymbol":"LOC105377008","entrezGeneId":105377008},{"hugoGeneSymbol":"LOC105377009","entrezGeneId":105377009},{"hugoGeneSymbol":"LOC105377013","entrezGeneId":105377013},{"hugoGeneSymbol":"LOC105377015","entrezGeneId":105377015},{"hugoGeneSymbol":"LOC105377016","entrezGeneId":105377016},{"hugoGeneSymbol":"LOC105377017","entrezGeneId":105377017},{"hugoGeneSymbol":"LOC105377018","entrezGeneId":105377018},{"hugoGeneSymbol":"LOC105377019","entrezGeneId":105377019},{"hugoGeneSymbol":"LOC105377021","entrezGeneId":105377021},{"hugoGeneSymbol":"LOC105377022","entrezGeneId":105377022},{"hugoGeneSymbol":"LOC105377023","entrezGeneId":105377023},{"hugoGeneSymbol":"LOC105377024","entrezGeneId":105377024},{"hugoGeneSymbol":"LOC105377029","entrezGeneId":105377029},{"hugoGeneSymbol":"LOC105377030","entrezGeneId":105377030},{"hugoGeneSymbol":"LOC105377033","entrezGeneId":105377033},{"hugoGeneSymbol":"LOC105377034","entrezGeneId":105377034},{"hugoGeneSymbol":"LOC105377035","entrezGeneId":105377035},{"hugoGeneSymbol":"LOC105377037","entrezGeneId":105377037},{"hugoGeneSymbol":"LOC105377038","entrezGeneId":105377038},{"hugoGeneSymbol":"LOC105377039","entrezGeneId":105377039},{"hugoGeneSymbol":"LOC105377043","entrezGeneId":105377043},{"hugoGeneSymbol":"LOC105377045","entrezGeneId":105377045},{"hugoGeneSymbol":"LOC105377046","entrezGeneId":105377046},{"hugoGeneSymbol":"LOC105377048","entrezGeneId":105377048},{"hugoGeneSymbol":"LOC105377051","entrezGeneId":105377051},{"hugoGeneSymbol":"LOC105377052","entrezGeneId":105377052},{"hugoGeneSymbol":"LOC105377054","entrezGeneId":105377054},{"hugoGeneSymbol":"LOC105377055","entrezGeneId":105377055},{"hugoGeneSymbol":"LOC105377056","entrezGeneId":105377056},{"hugoGeneSymbol":"LOC105377061","entrezGeneId":105377061},{"hugoGeneSymbol":"LOC105377062","entrezGeneId":105377062},{"hugoGeneSymbol":"LOC105377063","entrezGeneId":105377063},{"hugoGeneSymbol":"LOC105377067","entrezGeneId":105377067},{"hugoGeneSymbol":"LOC105377073","entrezGeneId":105377073},{"hugoGeneSymbol":"LOC105377074","entrezGeneId":105377074},{"hugoGeneSymbol":"LOC105377077","entrezGeneId":105377077},{"hugoGeneSymbol":"LOC105377079","entrezGeneId":105377079},{"hugoGeneSymbol":"LOC105377082","entrezGeneId":105377082},{"hugoGeneSymbol":"LOC105377083","entrezGeneId":105377083},{"hugoGeneSymbol":"LOC105377085","entrezGeneId":105377085},{"hugoGeneSymbol":"LOC105377086","entrezGeneId":105377086},{"hugoGeneSymbol":"LOC105377087","entrezGeneId":105377087},{"hugoGeneSymbol":"LOC105377088","entrezGeneId":105377088},{"hugoGeneSymbol":"LOC105377091","entrezGeneId":105377091},{"hugoGeneSymbol":"LOC105377094","entrezGeneId":105377094},{"hugoGeneSymbol":"LOC105377095","entrezGeneId":105377095},{"hugoGeneSymbol":"LOC105377097","entrezGeneId":105377097},{"hugoGeneSymbol":"LOC105377099","entrezGeneId":105377099},{"hugoGeneSymbol":"LOC105377100","entrezGeneId":105377100},{"hugoGeneSymbol":"LOC105377101","entrezGeneId":105377101},{"hugoGeneSymbol":"LOC105377102","entrezGeneId":105377102},{"hugoGeneSymbol":"LOC105377103","entrezGeneId":105377103},{"hugoGeneSymbol":"LOC105377104","entrezGeneId":105377104},{"hugoGeneSymbol":"LOC105377106","entrezGeneId":105377106},{"hugoGeneSymbol":"LOC105377109","entrezGeneId":105377109},{"hugoGeneSymbol":"LOC105377110","entrezGeneId":105377110},{"hugoGeneSymbol":"LOC105377111","entrezGeneId":105377111},{"hugoGeneSymbol":"LOC105377112","entrezGeneId":105377112},{"hugoGeneSymbol":"LOC105377113","entrezGeneId":105377113},{"hugoGeneSymbol":"LOC105377114","entrezGeneId":105377114},{"hugoGeneSymbol":"LOC105377115","entrezGeneId":105377115},{"hugoGeneSymbol":"LOC105377116","entrezGeneId":105377116},{"hugoGeneSymbol":"LOC105377119","entrezGeneId":105377119},{"hugoGeneSymbol":"LOC105377121","entrezGeneId":105377121},{"hugoGeneSymbol":"LOC105377123","entrezGeneId":105377123},{"hugoGeneSymbol":"LOC105377124","entrezGeneId":105377124},{"hugoGeneSymbol":"LOC105377125","entrezGeneId":105377125},{"hugoGeneSymbol":"LOC105377127","entrezGeneId":105377127},{"hugoGeneSymbol":"LOC105377128","entrezGeneId":105377128},{"hugoGeneSymbol":"LOC105377134","entrezGeneId":105377134},{"hugoGeneSymbol":"LOC105377136","entrezGeneId":105377136},{"hugoGeneSymbol":"LOC105377137","entrezGeneId":105377137},{"hugoGeneSymbol":"LOC105377139","entrezGeneId":105377139},{"hugoGeneSymbol":"LOC105377141","entrezGeneId":105377141},{"hugoGeneSymbol":"LOC105377142","entrezGeneId":105377142},{"hugoGeneSymbol":"LOC105377143","entrezGeneId":105377143},{"hugoGeneSymbol":"LOC105377144","entrezGeneId":105377144},{"hugoGeneSymbol":"LOC105377146","entrezGeneId":105377146},{"hugoGeneSymbol":"LOC105377148","entrezGeneId":105377148},{"hugoGeneSymbol":"LOC105377151","entrezGeneId":105377151},{"hugoGeneSymbol":"LOC105377152","entrezGeneId":105377152},{"hugoGeneSymbol":"LOC105377155","entrezGeneId":105377155},{"hugoGeneSymbol":"LOC105377156","entrezGeneId":105377156},{"hugoGeneSymbol":"LOC105377157","entrezGeneId":105377157},{"hugoGeneSymbol":"LOC105377158","entrezGeneId":105377158},{"hugoGeneSymbol":"LOC105377159","entrezGeneId":105377159},{"hugoGeneSymbol":"LOC105377160","entrezGeneId":105377160},{"hugoGeneSymbol":"LOC105377161","entrezGeneId":105377161},{"hugoGeneSymbol":"LOC105377162","entrezGeneId":105377162},{"hugoGeneSymbol":"LOC105377164","entrezGeneId":105377164},{"hugoGeneSymbol":"LOC105377166","entrezGeneId":105377166},{"hugoGeneSymbol":"LOC105377167","entrezGeneId":105377167},{"hugoGeneSymbol":"LOC105377168","entrezGeneId":105377168},{"hugoGeneSymbol":"LOC105377169","entrezGeneId":105377169},{"hugoGeneSymbol":"LOC105377171","entrezGeneId":105377171},{"hugoGeneSymbol":"LOC105377173","entrezGeneId":105377173},{"hugoGeneSymbol":"LOC105377174","entrezGeneId":105377174},{"hugoGeneSymbol":"LOC105377176","entrezGeneId":105377176},{"hugoGeneSymbol":"LOC105377177","entrezGeneId":105377177},{"hugoGeneSymbol":"LOC105377178","entrezGeneId":105377178},{"hugoGeneSymbol":"LOC105377179","entrezGeneId":105377179},{"hugoGeneSymbol":"LOC105377181","entrezGeneId":105377181},{"hugoGeneSymbol":"LOC105377182","entrezGeneId":105377182},{"hugoGeneSymbol":"LOC105377183","entrezGeneId":105377183},{"hugoGeneSymbol":"LOC105377186","entrezGeneId":105377186},{"hugoGeneSymbol":"LOC105377187","entrezGeneId":105377187},{"hugoGeneSymbol":"LOC105377188","entrezGeneId":105377188},{"hugoGeneSymbol":"LOC105377190","entrezGeneId":105377190},{"hugoGeneSymbol":"LOC105377191","entrezGeneId":105377191},{"hugoGeneSymbol":"LOC105377193","entrezGeneId":105377193},{"hugoGeneSymbol":"LOC105377196","entrezGeneId":105377196},{"hugoGeneSymbol":"LOC105377198","entrezGeneId":105377198},{"hugoGeneSymbol":"LOC105377199","entrezGeneId":105377199},{"hugoGeneSymbol":"LOC105377202","entrezGeneId":105377202},{"hugoGeneSymbol":"LOC105377203","entrezGeneId":105377203},{"hugoGeneSymbol":"LOC105377205","entrezGeneId":105377205},{"hugoGeneSymbol":"LOC105377207","entrezGeneId":105377207},{"hugoGeneSymbol":"LOC105377208","entrezGeneId":105377208},{"hugoGeneSymbol":"LOC105377209","entrezGeneId":105377209},{"hugoGeneSymbol":"LOC105377211","entrezGeneId":105377211},{"hugoGeneSymbol":"LOC105377212","entrezGeneId":105377212},{"hugoGeneSymbol":"LOC105377213","entrezGeneId":105377213},{"hugoGeneSymbol":"LOC105377217","entrezGeneId":105377217},{"hugoGeneSymbol":"LOC105377218","entrezGeneId":105377218},{"hugoGeneSymbol":"LOC105377219","entrezGeneId":105377219},{"hugoGeneSymbol":"LOC105377220","entrezGeneId":105377220},{"hugoGeneSymbol":"LOC105377223","entrezGeneId":105377223},{"hugoGeneSymbol":"LOC105377224","entrezGeneId":105377224},{"hugoGeneSymbol":"LOC105377225","entrezGeneId":105377225},{"hugoGeneSymbol":"LOC105377227","entrezGeneId":105377227},{"hugoGeneSymbol":"LOC105377229","entrezGeneId":105377229},{"hugoGeneSymbol":"LOC105377230","entrezGeneId":105377230},{"hugoGeneSymbol":"LOC105377231","entrezGeneId":105377231},{"hugoGeneSymbol":"LOC105377232","entrezGeneId":105377232},{"hugoGeneSymbol":"LOC105377234","entrezGeneId":105377234},{"hugoGeneSymbol":"LOC105377235","entrezGeneId":105377235},{"hugoGeneSymbol":"LOC105377236","entrezGeneId":105377236},{"hugoGeneSymbol":"LOC105377237","entrezGeneId":105377237},{"hugoGeneSymbol":"LOC105377238","entrezGeneId":105377238},{"hugoGeneSymbol":"LOC105377239","entrezGeneId":105377239},{"hugoGeneSymbol":"LOC105377241","entrezGeneId":105377241},{"hugoGeneSymbol":"LOC105377242","entrezGeneId":105377242},{"hugoGeneSymbol":"LOC105377244","entrezGeneId":105377244},{"hugoGeneSymbol":"LOC105377245","entrezGeneId":105377245},{"hugoGeneSymbol":"LOC105377246","entrezGeneId":105377246},{"hugoGeneSymbol":"LOC105377253","entrezGeneId":105377253},{"hugoGeneSymbol":"LOC105377254","entrezGeneId":105377254},{"hugoGeneSymbol":"LOC105377255","entrezGeneId":105377255},{"hugoGeneSymbol":"LOC105377256","entrezGeneId":105377256},{"hugoGeneSymbol":"LOC105377258","entrezGeneId":105377258},{"hugoGeneSymbol":"LOC105377259","entrezGeneId":105377259},{"hugoGeneSymbol":"LOC105377260","entrezGeneId":105377260},{"hugoGeneSymbol":"LOC105377261","entrezGeneId":105377261},{"hugoGeneSymbol":"LOC105377262","entrezGeneId":105377262},{"hugoGeneSymbol":"LOC105377265","entrezGeneId":105377265},{"hugoGeneSymbol":"LOC105377267","entrezGeneId":105377267},{"hugoGeneSymbol":"LOC105377269","entrezGeneId":105377269},{"hugoGeneSymbol":"LOC105377270","entrezGeneId":105377270},{"hugoGeneSymbol":"LOC105377271","entrezGeneId":105377271},{"hugoGeneSymbol":"LOC105377272","entrezGeneId":105377272},{"hugoGeneSymbol":"LOC105377273","entrezGeneId":105377273},{"hugoGeneSymbol":"LOC105377275","entrezGeneId":105377275},{"hugoGeneSymbol":"LOC105377276","entrezGeneId":105377276},{"hugoGeneSymbol":"LOC105377277","entrezGeneId":105377277},{"hugoGeneSymbol":"LOC105377278","entrezGeneId":105377278},{"hugoGeneSymbol":"LOC105377280","entrezGeneId":105377280},{"hugoGeneSymbol":"LOC105377282","entrezGeneId":105377282},{"hugoGeneSymbol":"LOC105377284","entrezGeneId":105377284},{"hugoGeneSymbol":"LOC105377285","entrezGeneId":105377285},{"hugoGeneSymbol":"LOC105377286","entrezGeneId":105377286},{"hugoGeneSymbol":"LOC105377289","entrezGeneId":105377289},{"hugoGeneSymbol":"LOC105377290","entrezGeneId":105377290},{"hugoGeneSymbol":"LOC105377291","entrezGeneId":105377291},{"hugoGeneSymbol":"LOC105377294","entrezGeneId":105377294},{"hugoGeneSymbol":"LOC105377295","entrezGeneId":105377295},{"hugoGeneSymbol":"LOC105377296","entrezGeneId":105377296},{"hugoGeneSymbol":"LOC105377297","entrezGeneId":105377297},{"hugoGeneSymbol":"LOC105377299","entrezGeneId":105377299},{"hugoGeneSymbol":"LOC105377300","entrezGeneId":105377300},{"hugoGeneSymbol":"LOC105377302","entrezGeneId":105377302},{"hugoGeneSymbol":"LOC105377303","entrezGeneId":105377303},{"hugoGeneSymbol":"LOC105377305","entrezGeneId":105377305},{"hugoGeneSymbol":"LOC105377306","entrezGeneId":105377306},{"hugoGeneSymbol":"LOC105377307","entrezGeneId":105377307},{"hugoGeneSymbol":"LOC105377308","entrezGeneId":105377308},{"hugoGeneSymbol":"LOC105377310","entrezGeneId":105377310},{"hugoGeneSymbol":"LOC105377313","entrezGeneId":105377313},{"hugoGeneSymbol":"LOC105377315","entrezGeneId":105377315},{"hugoGeneSymbol":"LOC105377319","entrezGeneId":105377319},{"hugoGeneSymbol":"LOC105377320","entrezGeneId":105377320},{"hugoGeneSymbol":"LOC105377321","entrezGeneId":105377321},{"hugoGeneSymbol":"LOC105377323","entrezGeneId":105377323},{"hugoGeneSymbol":"LOC105377324","entrezGeneId":105377324},{"hugoGeneSymbol":"LOC105377326","entrezGeneId":105377326},{"hugoGeneSymbol":"LOC105377327","entrezGeneId":105377327},{"hugoGeneSymbol":"LOC105377328","entrezGeneId":105377328},{"hugoGeneSymbol":"LOC105377329","entrezGeneId":105377329},{"hugoGeneSymbol":"LOC105377331","entrezGeneId":105377331},{"hugoGeneSymbol":"LOC105377335","entrezGeneId":105377335},{"hugoGeneSymbol":"LOC105377337","entrezGeneId":105377337},{"hugoGeneSymbol":"LOC105377340","entrezGeneId":105377340},{"hugoGeneSymbol":"LOC105377342","entrezGeneId":105377342},{"hugoGeneSymbol":"LOC105377343","entrezGeneId":105377343},{"hugoGeneSymbol":"LOC105377345","entrezGeneId":105377345},{"hugoGeneSymbol":"LOC105377347","entrezGeneId":105377347},{"hugoGeneSymbol":"LOC105377348","entrezGeneId":105377348},{"hugoGeneSymbol":"LOC105377350","entrezGeneId":105377350},{"hugoGeneSymbol":"LOC105377351","entrezGeneId":105377351},{"hugoGeneSymbol":"LOC105377352","entrezGeneId":105377352},{"hugoGeneSymbol":"LOC105377356","entrezGeneId":105377356},{"hugoGeneSymbol":"LOC105377357","entrezGeneId":105377357},{"hugoGeneSymbol":"LOC105377358","entrezGeneId":105377358},{"hugoGeneSymbol":"LOC105377359","entrezGeneId":105377359},{"hugoGeneSymbol":"LOC105377362","entrezGeneId":105377362},{"hugoGeneSymbol":"LOC105377363","entrezGeneId":105377363},{"hugoGeneSymbol":"LOC105377364","entrezGeneId":105377364},{"hugoGeneSymbol":"LOC105377365","entrezGeneId":105377365},{"hugoGeneSymbol":"LOC105377366","entrezGeneId":105377366},{"hugoGeneSymbol":"LOC105377367","entrezGeneId":105377367},{"hugoGeneSymbol":"LOC105377369","entrezGeneId":105377369},{"hugoGeneSymbol":"LOC105377370","entrezGeneId":105377370},{"hugoGeneSymbol":"LOC105377372","entrezGeneId":105377372},{"hugoGeneSymbol":"LOC105377373","entrezGeneId":105377373},{"hugoGeneSymbol":"LOC105377374","entrezGeneId":105377374},{"hugoGeneSymbol":"LOC105377375","entrezGeneId":105377375},{"hugoGeneSymbol":"LOC105377376","entrezGeneId":105377376},{"hugoGeneSymbol":"LOC105377378","entrezGeneId":105377378},{"hugoGeneSymbol":"LOC105377379","entrezGeneId":105377379},{"hugoGeneSymbol":"LOC105377380","entrezGeneId":105377380},{"hugoGeneSymbol":"LOC105377382","entrezGeneId":105377382},{"hugoGeneSymbol":"LOC105377383","entrezGeneId":105377383},{"hugoGeneSymbol":"LOC105377384","entrezGeneId":105377384},{"hugoGeneSymbol":"LOC105377385","entrezGeneId":105377385},{"hugoGeneSymbol":"LOC105377387","entrezGeneId":105377387},{"hugoGeneSymbol":"LOC105377388","entrezGeneId":105377388},{"hugoGeneSymbol":"LOC105377392","entrezGeneId":105377392},{"hugoGeneSymbol":"LOC105377393","entrezGeneId":105377393},{"hugoGeneSymbol":"LOC105377394","entrezGeneId":105377394},{"hugoGeneSymbol":"LOC105377395","entrezGeneId":105377395},{"hugoGeneSymbol":"LOC105377396","entrezGeneId":105377396},{"hugoGeneSymbol":"LOC105377397","entrezGeneId":105377397},{"hugoGeneSymbol":"LOC105377399","entrezGeneId":105377399},{"hugoGeneSymbol":"LOC105377400","entrezGeneId":105377400},{"hugoGeneSymbol":"LOC105377401","entrezGeneId":105377401},{"hugoGeneSymbol":"LOC105377402","entrezGeneId":105377402},{"hugoGeneSymbol":"LOC105377404","entrezGeneId":105377404},{"hugoGeneSymbol":"LOC105377405","entrezGeneId":105377405},{"hugoGeneSymbol":"LOC105377406","entrezGeneId":105377406},{"hugoGeneSymbol":"LOC105377407","entrezGeneId":105377407},{"hugoGeneSymbol":"LOC105377408","entrezGeneId":105377408},{"hugoGeneSymbol":"LOC105377409","entrezGeneId":105377409},{"hugoGeneSymbol":"LOC105377410","entrezGeneId":105377410},{"hugoGeneSymbol":"LOC105377411","entrezGeneId":105377411},{"hugoGeneSymbol":"LOC105377412","entrezGeneId":105377412},{"hugoGeneSymbol":"LOC105377413","entrezGeneId":105377413},{"hugoGeneSymbol":"LOC105377414","entrezGeneId":105377414},{"hugoGeneSymbol":"LOC105377416","entrezGeneId":105377416},{"hugoGeneSymbol":"LOC105377417","entrezGeneId":105377417},{"hugoGeneSymbol":"LOC105377418","entrezGeneId":105377418},{"hugoGeneSymbol":"LOC105377422","entrezGeneId":105377422},{"hugoGeneSymbol":"LOC105377423","entrezGeneId":105377423},{"hugoGeneSymbol":"LOC105377425","entrezGeneId":105377425},{"hugoGeneSymbol":"LOC105377428","entrezGeneId":105377428},{"hugoGeneSymbol":"LOC105377431","entrezGeneId":105377431},{"hugoGeneSymbol":"LOC105377432","entrezGeneId":105377432},{"hugoGeneSymbol":"LOC105377436","entrezGeneId":105377436},{"hugoGeneSymbol":"LOC105377437","entrezGeneId":105377437},{"hugoGeneSymbol":"LOC105377438","entrezGeneId":105377438},{"hugoGeneSymbol":"LOC105377442","entrezGeneId":105377442},{"hugoGeneSymbol":"LOC105377444","entrezGeneId":105377444},{"hugoGeneSymbol":"LOC105377445","entrezGeneId":105377445},{"hugoGeneSymbol":"LOC105377447","entrezGeneId":105377447},{"hugoGeneSymbol":"LOC105377448","entrezGeneId":105377448},{"hugoGeneSymbol":"LOC105377449","entrezGeneId":105377449},{"hugoGeneSymbol":"LOC105377451","entrezGeneId":105377451},{"hugoGeneSymbol":"LOC105377452","entrezGeneId":105377452},{"hugoGeneSymbol":"LOC105377457","entrezGeneId":105377457},{"hugoGeneSymbol":"LOC105377458","entrezGeneId":105377458},{"hugoGeneSymbol":"LOC105377459","entrezGeneId":105377459},{"hugoGeneSymbol":"LOC105377460","entrezGeneId":105377460},{"hugoGeneSymbol":"LOC105377461","entrezGeneId":105377461},{"hugoGeneSymbol":"LOC105377462","entrezGeneId":105377462},{"hugoGeneSymbol":"LOC105377465","entrezGeneId":105377465},{"hugoGeneSymbol":"LOC105377468","entrezGeneId":105377468},{"hugoGeneSymbol":"LOC105377469","entrezGeneId":105377469},{"hugoGeneSymbol":"LOC105377470","entrezGeneId":105377470},{"hugoGeneSymbol":"LOC105377472","entrezGeneId":105377472},{"hugoGeneSymbol":"LOC105377473","entrezGeneId":105377473},{"hugoGeneSymbol":"LOC105377474","entrezGeneId":105377474},{"hugoGeneSymbol":"LOC105377475","entrezGeneId":105377475},{"hugoGeneSymbol":"LOC105377476","entrezGeneId":105377476},{"hugoGeneSymbol":"LOC105377478","entrezGeneId":105377478},{"hugoGeneSymbol":"LOC105377479","entrezGeneId":105377479},{"hugoGeneSymbol":"LOC105377480","entrezGeneId":105377480},{"hugoGeneSymbol":"LOC105377481","entrezGeneId":105377481},{"hugoGeneSymbol":"LOC105377483","entrezGeneId":105377483},{"hugoGeneSymbol":"LOC105377485","entrezGeneId":105377485},{"hugoGeneSymbol":"LOC105377488","entrezGeneId":105377488},{"hugoGeneSymbol":"LOC105377489","entrezGeneId":105377489},{"hugoGeneSymbol":"LOC105377490","entrezGeneId":105377490},{"hugoGeneSymbol":"LOC105377492","entrezGeneId":105377492},{"hugoGeneSymbol":"LOC105377495","entrezGeneId":105377495},{"hugoGeneSymbol":"LOC105377496","entrezGeneId":105377496},{"hugoGeneSymbol":"LOC105377498","entrezGeneId":105377498},{"hugoGeneSymbol":"LOC105377499","entrezGeneId":105377499},{"hugoGeneSymbol":"LOC105377500","entrezGeneId":105377500},{"hugoGeneSymbol":"LOC105377501","entrezGeneId":105377501},{"hugoGeneSymbol":"LOC105377502","entrezGeneId":105377502},{"hugoGeneSymbol":"LOC105377503","entrezGeneId":105377503},{"hugoGeneSymbol":"LOC105377504","entrezGeneId":105377504},{"hugoGeneSymbol":"LOC105377505","entrezGeneId":105377505},{"hugoGeneSymbol":"LOC105377506","entrezGeneId":105377506},{"hugoGeneSymbol":"LOC105377507","entrezGeneId":105377507},{"hugoGeneSymbol":"LOC105377508","entrezGeneId":105377508},{"hugoGeneSymbol":"LOC105377509","entrezGeneId":105377509},{"hugoGeneSymbol":"LOC105377510","entrezGeneId":105377510},{"hugoGeneSymbol":"LOC105377513","entrezGeneId":105377513},{"hugoGeneSymbol":"LOC105377514","entrezGeneId":105377514},{"hugoGeneSymbol":"LOC105377515","entrezGeneId":105377515},{"hugoGeneSymbol":"LOC105377516","entrezGeneId":105377516},{"hugoGeneSymbol":"LOC105377517","entrezGeneId":105377517},{"hugoGeneSymbol":"LOC105377519","entrezGeneId":105377519},{"hugoGeneSymbol":"LOC105377520","entrezGeneId":105377520},{"hugoGeneSymbol":"LOC105377521","entrezGeneId":105377521},{"hugoGeneSymbol":"LOC105377523","entrezGeneId":105377523},{"hugoGeneSymbol":"LOC105377524","entrezGeneId":105377524},{"hugoGeneSymbol":"LOC105377527","entrezGeneId":105377527},{"hugoGeneSymbol":"LOC105377529","entrezGeneId":105377529},{"hugoGeneSymbol":"LOC105377530","entrezGeneId":105377530},{"hugoGeneSymbol":"LOC105377534","entrezGeneId":105377534},{"hugoGeneSymbol":"LOC105377535","entrezGeneId":105377535},{"hugoGeneSymbol":"LOC105377537","entrezGeneId":105377537},{"hugoGeneSymbol":"LOC105377540","entrezGeneId":105377540},{"hugoGeneSymbol":"LOC105377541","entrezGeneId":105377541},{"hugoGeneSymbol":"LOC105377543","entrezGeneId":105377543},{"hugoGeneSymbol":"LOC105377544","entrezGeneId":105377544},{"hugoGeneSymbol":"LOC105377546","entrezGeneId":105377546},{"hugoGeneSymbol":"LOC105377547","entrezGeneId":105377547},{"hugoGeneSymbol":"LOC105377548","entrezGeneId":105377548},{"hugoGeneSymbol":"LOC105377549","entrezGeneId":105377549},{"hugoGeneSymbol":"LOC105377551","entrezGeneId":105377551},{"hugoGeneSymbol":"LOC105377552","entrezGeneId":105377552},{"hugoGeneSymbol":"LOC105377555","entrezGeneId":105377555},{"hugoGeneSymbol":"LOC105377557","entrezGeneId":105377557},{"hugoGeneSymbol":"LOC105377558","entrezGeneId":105377558},{"hugoGeneSymbol":"LOC105377559","entrezGeneId":105377559},{"hugoGeneSymbol":"LOC105377560","entrezGeneId":105377560},{"hugoGeneSymbol":"LOC105377561","entrezGeneId":105377561},{"hugoGeneSymbol":"LOC105377562","entrezGeneId":105377562},{"hugoGeneSymbol":"LOC105377563","entrezGeneId":105377563},{"hugoGeneSymbol":"LOC105377564","entrezGeneId":105377564},{"hugoGeneSymbol":"LOC105377565","entrezGeneId":105377565},{"hugoGeneSymbol":"LOC105377567","entrezGeneId":105377567},{"hugoGeneSymbol":"LOC105377568","entrezGeneId":105377568},{"hugoGeneSymbol":"LOC105377571","entrezGeneId":105377571},{"hugoGeneSymbol":"LOC105377572","entrezGeneId":105377572},{"hugoGeneSymbol":"LOC105377576","entrezGeneId":105377576},{"hugoGeneSymbol":"LOC105377577","entrezGeneId":105377577},{"hugoGeneSymbol":"LOC105377578","entrezGeneId":105377578},{"hugoGeneSymbol":"LOC105377579","entrezGeneId":105377579},{"hugoGeneSymbol":"LOC105377580","entrezGeneId":105377580},{"hugoGeneSymbol":"LOC105377581","entrezGeneId":105377581},{"hugoGeneSymbol":"LOC105377582","entrezGeneId":105377582},{"hugoGeneSymbol":"LOC105377584","entrezGeneId":105377584},{"hugoGeneSymbol":"LOC105377587","entrezGeneId":105377587},{"hugoGeneSymbol":"LOC105377588","entrezGeneId":105377588},{"hugoGeneSymbol":"LOC105377590","entrezGeneId":105377590},{"hugoGeneSymbol":"LOC105377591","entrezGeneId":105377591},{"hugoGeneSymbol":"LOC105377596","entrezGeneId":105377596},{"hugoGeneSymbol":"LOC105377599","entrezGeneId":105377599},{"hugoGeneSymbol":"LOC105377603","entrezGeneId":105377603},{"hugoGeneSymbol":"LOC105377604","entrezGeneId":105377604},{"hugoGeneSymbol":"LOC105377607","entrezGeneId":105377607},{"hugoGeneSymbol":"LOC105377608","entrezGeneId":105377608},{"hugoGeneSymbol":"LOC105377609","entrezGeneId":105377609},{"hugoGeneSymbol":"LOC105377611","entrezGeneId":105377611},{"hugoGeneSymbol":"LOC105377612","entrezGeneId":105377612},{"hugoGeneSymbol":"LOC105377613","entrezGeneId":105377613},{"hugoGeneSymbol":"LOC105377614","entrezGeneId":105377614},{"hugoGeneSymbol":"LOC105377615","entrezGeneId":105377615},{"hugoGeneSymbol":"LOC105377616","entrezGeneId":105377616},{"hugoGeneSymbol":"LOC105377619","entrezGeneId":105377619},{"hugoGeneSymbol":"LOC105377621","entrezGeneId":105377621},{"hugoGeneSymbol":"LOC105377622","entrezGeneId":105377622},{"hugoGeneSymbol":"LOC105377623","entrezGeneId":105377623},{"hugoGeneSymbol":"LOC105377626","entrezGeneId":105377626},{"hugoGeneSymbol":"LOC105377627","entrezGeneId":105377627},{"hugoGeneSymbol":"LOC105377628","entrezGeneId":105377628},{"hugoGeneSymbol":"LOC105377632","entrezGeneId":105377632},{"hugoGeneSymbol":"LOC105377633","entrezGeneId":105377633},{"hugoGeneSymbol":"LOC105377635","entrezGeneId":105377635},{"hugoGeneSymbol":"LOC105377636","entrezGeneId":105377636},{"hugoGeneSymbol":"LOC105377641","entrezGeneId":105377641},{"hugoGeneSymbol":"LOC105377642","entrezGeneId":105377642},{"hugoGeneSymbol":"LOC105377644","entrezGeneId":105377644},{"hugoGeneSymbol":"LOC105377645","entrezGeneId":105377645},{"hugoGeneSymbol":"LOC105377647","entrezGeneId":105377647},{"hugoGeneSymbol":"LOC105377650","entrezGeneId":105377650},{"hugoGeneSymbol":"LOC105377651","entrezGeneId":105377651},{"hugoGeneSymbol":"LOC105377654","entrezGeneId":105377654},{"hugoGeneSymbol":"LOC105377657","entrezGeneId":105377657},{"hugoGeneSymbol":"LOC105377658","entrezGeneId":105377658},{"hugoGeneSymbol":"LOC105377659","entrezGeneId":105377659},{"hugoGeneSymbol":"LOC105377660","entrezGeneId":105377660},{"hugoGeneSymbol":"LOC105377661","entrezGeneId":105377661},{"hugoGeneSymbol":"LOC105377663","entrezGeneId":105377663},{"hugoGeneSymbol":"LOC105377664","entrezGeneId":105377664},{"hugoGeneSymbol":"LOC105377665","entrezGeneId":105377665},{"hugoGeneSymbol":"LOC105377666","entrezGeneId":105377666},{"hugoGeneSymbol":"LOC105377667","entrezGeneId":105377667},{"hugoGeneSymbol":"LOC105377668","entrezGeneId":105377668},{"hugoGeneSymbol":"LOC105377670","entrezGeneId":105377670},{"hugoGeneSymbol":"LOC105377672","entrezGeneId":105377672},{"hugoGeneSymbol":"LOC105377673","entrezGeneId":105377673},{"hugoGeneSymbol":"LOC105377675","entrezGeneId":105377675},{"hugoGeneSymbol":"LOC105377676","entrezGeneId":105377676},{"hugoGeneSymbol":"LOC105377677","entrezGeneId":105377677},{"hugoGeneSymbol":"LOC105377678","entrezGeneId":105377678},{"hugoGeneSymbol":"LOC105377680","entrezGeneId":105377680},{"hugoGeneSymbol":"LOC105377683","entrezGeneId":105377683},{"hugoGeneSymbol":"LOC105377684","entrezGeneId":105377684},{"hugoGeneSymbol":"LOC105377685","entrezGeneId":105377685},{"hugoGeneSymbol":"LOC105377687","entrezGeneId":105377687},{"hugoGeneSymbol":"LOC105377688","entrezGeneId":105377688},{"hugoGeneSymbol":"LOC105377689","entrezGeneId":105377689},{"hugoGeneSymbol":"LOC105377690","entrezGeneId":105377690},{"hugoGeneSymbol":"LOC105377691","entrezGeneId":105377691},{"hugoGeneSymbol":"LOC105377693","entrezGeneId":105377693},{"hugoGeneSymbol":"LOC105377694","entrezGeneId":105377694},{"hugoGeneSymbol":"LOC105377696","entrezGeneId":105377696},{"hugoGeneSymbol":"LOC105377697","entrezGeneId":105377697},{"hugoGeneSymbol":"LOC105377698","entrezGeneId":105377698},{"hugoGeneSymbol":"LOC105377699","entrezGeneId":105377699},{"hugoGeneSymbol":"LOC105377700","entrezGeneId":105377700},{"hugoGeneSymbol":"LOC105377702","entrezGeneId":105377702},{"hugoGeneSymbol":"LOC105377703","entrezGeneId":105377703},{"hugoGeneSymbol":"LOC105377705","entrezGeneId":105377705},{"hugoGeneSymbol":"LOC105377706","entrezGeneId":105377706},{"hugoGeneSymbol":"LOC105377708","entrezGeneId":105377708},{"hugoGeneSymbol":"LOC105377709","entrezGeneId":105377709},{"hugoGeneSymbol":"LOC105377712","entrezGeneId":105377712},{"hugoGeneSymbol":"LOC105377713","entrezGeneId":105377713},{"hugoGeneSymbol":"LOC105377714","entrezGeneId":105377714},{"hugoGeneSymbol":"LOC105377715","entrezGeneId":105377715},{"hugoGeneSymbol":"LOC105377716","entrezGeneId":105377716},{"hugoGeneSymbol":"LOC105377720","entrezGeneId":105377720},{"hugoGeneSymbol":"LOC105377721","entrezGeneId":105377721},{"hugoGeneSymbol":"LOC105377722","entrezGeneId":105377722},{"hugoGeneSymbol":"LOC105377723","entrezGeneId":105377723},{"hugoGeneSymbol":"LOC105377724","entrezGeneId":105377724},{"hugoGeneSymbol":"LOC105377725","entrezGeneId":105377725},{"hugoGeneSymbol":"LOC105377727","entrezGeneId":105377727},{"hugoGeneSymbol":"LOC105377729","entrezGeneId":105377729},{"hugoGeneSymbol":"LOC105377730","entrezGeneId":105377730},{"hugoGeneSymbol":"LOC105377731","entrezGeneId":105377731},{"hugoGeneSymbol":"LOC105377732","entrezGeneId":105377732},{"hugoGeneSymbol":"LOC105377733","entrezGeneId":105377733},{"hugoGeneSymbol":"LOC105377735","entrezGeneId":105377735},{"hugoGeneSymbol":"LOC105377739","entrezGeneId":105377739},{"hugoGeneSymbol":"LOC105377740","entrezGeneId":105377740},{"hugoGeneSymbol":"LOC105377741","entrezGeneId":105377741},{"hugoGeneSymbol":"LOC105377742","entrezGeneId":105377742},{"hugoGeneSymbol":"LOC105377743","entrezGeneId":105377743},{"hugoGeneSymbol":"LOC105377744","entrezGeneId":105377744},{"hugoGeneSymbol":"LOC105377745","entrezGeneId":105377745},{"hugoGeneSymbol":"LOC105377746","entrezGeneId":105377746},{"hugoGeneSymbol":"LOC105377747","entrezGeneId":105377747},{"hugoGeneSymbol":"LOC105377750","entrezGeneId":105377750},{"hugoGeneSymbol":"LOC105377752","entrezGeneId":105377752},{"hugoGeneSymbol":"LOC105377753","entrezGeneId":105377753},{"hugoGeneSymbol":"LOC105377754","entrezGeneId":105377754},{"hugoGeneSymbol":"LOC105377756","entrezGeneId":105377756},{"hugoGeneSymbol":"LOC105377757","entrezGeneId":105377757},{"hugoGeneSymbol":"LOC105377759","entrezGeneId":105377759},{"hugoGeneSymbol":"LOC105377761","entrezGeneId":105377761},{"hugoGeneSymbol":"LOC105377762","entrezGeneId":105377762},{"hugoGeneSymbol":"LOC105377763","entrezGeneId":105377763},{"hugoGeneSymbol":"LOC105377766","entrezGeneId":105377766},{"hugoGeneSymbol":"LOC105377769","entrezGeneId":105377769},{"hugoGeneSymbol":"LOC105377771","entrezGeneId":105377771},{"hugoGeneSymbol":"LOC105377773","entrezGeneId":105377773},{"hugoGeneSymbol":"LOC105377774","entrezGeneId":105377774},{"hugoGeneSymbol":"LOC105377775","entrezGeneId":105377775},{"hugoGeneSymbol":"LOC105377776","entrezGeneId":105377776},{"hugoGeneSymbol":"LOC105377777","entrezGeneId":105377777},{"hugoGeneSymbol":"LOC105377778","entrezGeneId":105377778},{"hugoGeneSymbol":"LOC105377779","entrezGeneId":105377779},{"hugoGeneSymbol":"LOC105377781","entrezGeneId":105377781},{"hugoGeneSymbol":"LOC105377782","entrezGeneId":105377782},{"hugoGeneSymbol":"LOC105377783","entrezGeneId":105377783},{"hugoGeneSymbol":"LOC105377784","entrezGeneId":105377784},{"hugoGeneSymbol":"LOC105377785","entrezGeneId":105377785},{"hugoGeneSymbol":"LOC105377786","entrezGeneId":105377786},{"hugoGeneSymbol":"LOC105377789","entrezGeneId":105377789},{"hugoGeneSymbol":"LOC105377790","entrezGeneId":105377790},{"hugoGeneSymbol":"LOC105377791","entrezGeneId":105377791},{"hugoGeneSymbol":"LOC105377792","entrezGeneId":105377792},{"hugoGeneSymbol":"LOC105377793","entrezGeneId":105377793},{"hugoGeneSymbol":"LOC105377794","entrezGeneId":105377794},{"hugoGeneSymbol":"LOC105377795","entrezGeneId":105377795},{"hugoGeneSymbol":"LOC105377796","entrezGeneId":105377796},{"hugoGeneSymbol":"LOC105377797","entrezGeneId":105377797},{"hugoGeneSymbol":"LOC105377799","entrezGeneId":105377799},{"hugoGeneSymbol":"LOC105377800","entrezGeneId":105377800},{"hugoGeneSymbol":"LOC105377801","entrezGeneId":105377801},{"hugoGeneSymbol":"LOC105377803","entrezGeneId":105377803},{"hugoGeneSymbol":"LOC105377805","entrezGeneId":105377805},{"hugoGeneSymbol":"LOC105377806","entrezGeneId":105377806},{"hugoGeneSymbol":"LOC105377809","entrezGeneId":105377809},{"hugoGeneSymbol":"LOC105377811","entrezGeneId":105377811},{"hugoGeneSymbol":"LOC105377814","entrezGeneId":105377814},{"hugoGeneSymbol":"LOC105377815","entrezGeneId":105377815},{"hugoGeneSymbol":"LOC105377816","entrezGeneId":105377816},{"hugoGeneSymbol":"LOC105377822","entrezGeneId":105377822},{"hugoGeneSymbol":"LOC105377824","entrezGeneId":105377824},{"hugoGeneSymbol":"LOC105377826","entrezGeneId":105377826},{"hugoGeneSymbol":"LOC105377836","entrezGeneId":105377836},{"hugoGeneSymbol":"LOC105377837","entrezGeneId":105377837},{"hugoGeneSymbol":"LOC105377838","entrezGeneId":105377838},{"hugoGeneSymbol":"LOC105377839","entrezGeneId":105377839},{"hugoGeneSymbol":"LOC105377840","entrezGeneId":105377840},{"hugoGeneSymbol":"LOC105377841","entrezGeneId":105377841},{"hugoGeneSymbol":"LOC105377842","entrezGeneId":105377842},{"hugoGeneSymbol":"LOC105377843","entrezGeneId":105377843},{"hugoGeneSymbol":"LOC105377844","entrezGeneId":105377844},{"hugoGeneSymbol":"LOC105377845","entrezGeneId":105377845},{"hugoGeneSymbol":"LOC105377846","entrezGeneId":105377846},{"hugoGeneSymbol":"LOC105377847","entrezGeneId":105377847},{"hugoGeneSymbol":"LOC105377848","entrezGeneId":105377848},{"hugoGeneSymbol":"LOC105377849","entrezGeneId":105377849},{"hugoGeneSymbol":"LOC105377850","entrezGeneId":105377850},{"hugoGeneSymbol":"LOC105377853","entrezGeneId":105377853},{"hugoGeneSymbol":"LOC105377855","entrezGeneId":105377855},{"hugoGeneSymbol":"LOC105377857","entrezGeneId":105377857},{"hugoGeneSymbol":"LOC105377858","entrezGeneId":105377858},{"hugoGeneSymbol":"LOC105377861","entrezGeneId":105377861},{"hugoGeneSymbol":"LOC105377862","entrezGeneId":105377862},{"hugoGeneSymbol":"LOC105377864","entrezGeneId":105377864},{"hugoGeneSymbol":"LOC105377865","entrezGeneId":105377865},{"hugoGeneSymbol":"LOC105377867","entrezGeneId":105377867},{"hugoGeneSymbol":"LOC105377869","entrezGeneId":105377869},{"hugoGeneSymbol":"LOC105377871","entrezGeneId":105377871},{"hugoGeneSymbol":"LOC105377872","entrezGeneId":105377872},{"hugoGeneSymbol":"LOC105377873","entrezGeneId":105377873},{"hugoGeneSymbol":"LOC105377874","entrezGeneId":105377874},{"hugoGeneSymbol":"LOC105377875","entrezGeneId":105377875},{"hugoGeneSymbol":"LOC105377876","entrezGeneId":105377876},{"hugoGeneSymbol":"LOC105377877","entrezGeneId":105377877},{"hugoGeneSymbol":"LOC105377879","entrezGeneId":105377879},{"hugoGeneSymbol":"LOC105377881","entrezGeneId":105377881},{"hugoGeneSymbol":"LOC105377882","entrezGeneId":105377882},{"hugoGeneSymbol":"LOC105377884","entrezGeneId":105377884},{"hugoGeneSymbol":"LOC105377885","entrezGeneId":105377885},{"hugoGeneSymbol":"LOC105377887","entrezGeneId":105377887},{"hugoGeneSymbol":"LOC105377889","entrezGeneId":105377889},{"hugoGeneSymbol":"LOC105377890","entrezGeneId":105377890},{"hugoGeneSymbol":"LOC105377891","entrezGeneId":105377891},{"hugoGeneSymbol":"LOC105377893","entrezGeneId":105377893},{"hugoGeneSymbol":"LOC105377894","entrezGeneId":105377894},{"hugoGeneSymbol":"LOC105377896","entrezGeneId":105377896},{"hugoGeneSymbol":"LOC105377897","entrezGeneId":105377897},{"hugoGeneSymbol":"LOC105377899","entrezGeneId":105377899},{"hugoGeneSymbol":"LOC105377901","entrezGeneId":105377901},{"hugoGeneSymbol":"LOC105377904","entrezGeneId":105377904},{"hugoGeneSymbol":"LOC105377905","entrezGeneId":105377905},{"hugoGeneSymbol":"LOC105377908","entrezGeneId":105377908},{"hugoGeneSymbol":"LOC105377909","entrezGeneId":105377909},{"hugoGeneSymbol":"LOC105377910","entrezGeneId":105377910},{"hugoGeneSymbol":"LOC105377911","entrezGeneId":105377911},{"hugoGeneSymbol":"LOC105377913","entrezGeneId":105377913},{"hugoGeneSymbol":"LOC105377916","entrezGeneId":105377916},{"hugoGeneSymbol":"LOC105377917","entrezGeneId":105377917},{"hugoGeneSymbol":"LOC105377918","entrezGeneId":105377918},{"hugoGeneSymbol":"LOC105377920","entrezGeneId":105377920},{"hugoGeneSymbol":"LOC105377921","entrezGeneId":105377921},{"hugoGeneSymbol":"LOC105377922","entrezGeneId":105377922},{"hugoGeneSymbol":"LOC105377923","entrezGeneId":105377923},{"hugoGeneSymbol":"LOC105377924","entrezGeneId":105377924},{"hugoGeneSymbol":"LOC105377927","entrezGeneId":105377927},{"hugoGeneSymbol":"LOC105377928","entrezGeneId":105377928},{"hugoGeneSymbol":"LOC105377929","entrezGeneId":105377929},{"hugoGeneSymbol":"LOC105377932","entrezGeneId":105377932},{"hugoGeneSymbol":"LOC105377935","entrezGeneId":105377935},{"hugoGeneSymbol":"LOC105377936","entrezGeneId":105377936},{"hugoGeneSymbol":"LOC105377937","entrezGeneId":105377937},{"hugoGeneSymbol":"LOC105377938","entrezGeneId":105377938},{"hugoGeneSymbol":"LOC105377939","entrezGeneId":105377939},{"hugoGeneSymbol":"LOC105377940","entrezGeneId":105377940},{"hugoGeneSymbol":"LOC105377941","entrezGeneId":105377941},{"hugoGeneSymbol":"LOC105377944","entrezGeneId":105377944},{"hugoGeneSymbol":"LOC105377945","entrezGeneId":105377945},{"hugoGeneSymbol":"LOC105377947","entrezGeneId":105377947},{"hugoGeneSymbol":"LOC105377949","entrezGeneId":105377949},{"hugoGeneSymbol":"LOC105377950","entrezGeneId":105377950},{"hugoGeneSymbol":"LOC105377951","entrezGeneId":105377951},{"hugoGeneSymbol":"LOC105377952","entrezGeneId":105377952},{"hugoGeneSymbol":"LOC105377953","entrezGeneId":105377953},{"hugoGeneSymbol":"LOC105377955","entrezGeneId":105377955},{"hugoGeneSymbol":"LOC105377956","entrezGeneId":105377956},{"hugoGeneSymbol":"LOC105377959","entrezGeneId":105377959},{"hugoGeneSymbol":"LOC105377960","entrezGeneId":105377960},{"hugoGeneSymbol":"LOC105377961","entrezGeneId":105377961},{"hugoGeneSymbol":"LOC105377963","entrezGeneId":105377963},{"hugoGeneSymbol":"LOC105377964","entrezGeneId":105377964},{"hugoGeneSymbol":"LOC105377967","entrezGeneId":105377967},{"hugoGeneSymbol":"LOC105377971","entrezGeneId":105377971},{"hugoGeneSymbol":"LOC105377972","entrezGeneId":105377972},{"hugoGeneSymbol":"LOC105377973","entrezGeneId":105377973},{"hugoGeneSymbol":"LOC105377975","entrezGeneId":105377975},{"hugoGeneSymbol":"LOC105377977","entrezGeneId":105377977},{"hugoGeneSymbol":"LOC105377978","entrezGeneId":105377978},{"hugoGeneSymbol":"LOC105377979","entrezGeneId":105377979},{"hugoGeneSymbol":"LOC105377981","entrezGeneId":105377981},{"hugoGeneSymbol":"LOC105377982","entrezGeneId":105377982},{"hugoGeneSymbol":"LOC105377984","entrezGeneId":105377984},{"hugoGeneSymbol":"LOC105377986","entrezGeneId":105377986},{"hugoGeneSymbol":"LOC105377989","entrezGeneId":105377989},{"hugoGeneSymbol":"LOC105377991","entrezGeneId":105377991},{"hugoGeneSymbol":"LOC105377992","entrezGeneId":105377992},{"hugoGeneSymbol":"LOC105377993","entrezGeneId":105377993},{"hugoGeneSymbol":"LOC105377994","entrezGeneId":105377994},{"hugoGeneSymbol":"LOC105377995","entrezGeneId":105377995},{"hugoGeneSymbol":"LOC105377996","entrezGeneId":105377996},{"hugoGeneSymbol":"LOC105377998","entrezGeneId":105377998},{"hugoGeneSymbol":"LOC105377999","entrezGeneId":105377999},{"hugoGeneSymbol":"LOC105378000","entrezGeneId":105378000},{"hugoGeneSymbol":"LOC105378002","entrezGeneId":105378002},{"hugoGeneSymbol":"LOC105378003","entrezGeneId":105378003},{"hugoGeneSymbol":"LOC105378004","entrezGeneId":105378004},{"hugoGeneSymbol":"LOC105378005","entrezGeneId":105378005},{"hugoGeneSymbol":"LOC105378008","entrezGeneId":105378008},{"hugoGeneSymbol":"LOC105378009","entrezGeneId":105378009},{"hugoGeneSymbol":"LOC105378010","entrezGeneId":105378010},{"hugoGeneSymbol":"LOC105378011","entrezGeneId":105378011},{"hugoGeneSymbol":"LOC105378012","entrezGeneId":105378012},{"hugoGeneSymbol":"LOC105378013","entrezGeneId":105378013},{"hugoGeneSymbol":"LOC105378017","entrezGeneId":105378017},{"hugoGeneSymbol":"LOC105378018","entrezGeneId":105378018},{"hugoGeneSymbol":"LOC105378021","entrezGeneId":105378021},{"hugoGeneSymbol":"LOC105378023","entrezGeneId":105378023},{"hugoGeneSymbol":"LOC105378024","entrezGeneId":105378024},{"hugoGeneSymbol":"LOC105378025","entrezGeneId":105378025},{"hugoGeneSymbol":"LOC105378026","entrezGeneId":105378026},{"hugoGeneSymbol":"LOC105378027","entrezGeneId":105378027},{"hugoGeneSymbol":"LOC105378029","entrezGeneId":105378029},{"hugoGeneSymbol":"LOC105378030","entrezGeneId":105378030},{"hugoGeneSymbol":"LOC105378031","entrezGeneId":105378031},{"hugoGeneSymbol":"LOC105378032","entrezGeneId":105378032},{"hugoGeneSymbol":"LOC105378035","entrezGeneId":105378035},{"hugoGeneSymbol":"LOC105378036","entrezGeneId":105378036},{"hugoGeneSymbol":"LOC105378039","entrezGeneId":105378039},{"hugoGeneSymbol":"LOC105378040","entrezGeneId":105378040},{"hugoGeneSymbol":"LOC105378041","entrezGeneId":105378041},{"hugoGeneSymbol":"LOC105378042","entrezGeneId":105378042},{"hugoGeneSymbol":"LOC105378043","entrezGeneId":105378043},{"hugoGeneSymbol":"LOC105378044","entrezGeneId":105378044},{"hugoGeneSymbol":"LOC105378046","entrezGeneId":105378046},{"hugoGeneSymbol":"LOC105378047","entrezGeneId":105378047},{"hugoGeneSymbol":"LOC105378050","entrezGeneId":105378050},{"hugoGeneSymbol":"LOC105378052","entrezGeneId":105378052},{"hugoGeneSymbol":"LOC105378054","entrezGeneId":105378054},{"hugoGeneSymbol":"LOC105378061","entrezGeneId":105378061},{"hugoGeneSymbol":"LOC105378065","entrezGeneId":105378065},{"hugoGeneSymbol":"LOC105378066","entrezGeneId":105378066},{"hugoGeneSymbol":"LOC105378067","entrezGeneId":105378067},{"hugoGeneSymbol":"LOC105378068","entrezGeneId":105378068},{"hugoGeneSymbol":"LOC105378069","entrezGeneId":105378069},{"hugoGeneSymbol":"LOC105378071","entrezGeneId":105378071},{"hugoGeneSymbol":"LOC105378072","entrezGeneId":105378072},{"hugoGeneSymbol":"LOC105378073","entrezGeneId":105378073},{"hugoGeneSymbol":"LOC105378075","entrezGeneId":105378075},{"hugoGeneSymbol":"LOC105378076","entrezGeneId":105378076},{"hugoGeneSymbol":"LOC105378077","entrezGeneId":105378077},{"hugoGeneSymbol":"LOC105378078","entrezGeneId":105378078},{"hugoGeneSymbol":"LOC105378083","entrezGeneId":105378083},{"hugoGeneSymbol":"LOC105378084","entrezGeneId":105378084},{"hugoGeneSymbol":"LOC105378085","entrezGeneId":105378085},{"hugoGeneSymbol":"LOC105378087","entrezGeneId":105378087},{"hugoGeneSymbol":"LOC105378088","entrezGeneId":105378088},{"hugoGeneSymbol":"LOC105378091","entrezGeneId":105378091},{"hugoGeneSymbol":"LOC105378093","entrezGeneId":105378093},{"hugoGeneSymbol":"LOC105378094","entrezGeneId":105378094},{"hugoGeneSymbol":"LOC105378095","entrezGeneId":105378095},{"hugoGeneSymbol":"LOC105378097","entrezGeneId":105378097},{"hugoGeneSymbol":"LOC105378098","entrezGeneId":105378098},{"hugoGeneSymbol":"LOC105378099","entrezGeneId":105378099},{"hugoGeneSymbol":"LOC105378100","entrezGeneId":105378100},{"hugoGeneSymbol":"LOC105378102","entrezGeneId":105378102},{"hugoGeneSymbol":"LOC105378104","entrezGeneId":105378104},{"hugoGeneSymbol":"LOC105378105","entrezGeneId":105378105},{"hugoGeneSymbol":"LOC105378106","entrezGeneId":105378106},{"hugoGeneSymbol":"LOC105378109","entrezGeneId":105378109},{"hugoGeneSymbol":"LOC105378110","entrezGeneId":105378110},{"hugoGeneSymbol":"LOC105378113","entrezGeneId":105378113},{"hugoGeneSymbol":"LOC105378114","entrezGeneId":105378114},{"hugoGeneSymbol":"LOC105378115","entrezGeneId":105378115},{"hugoGeneSymbol":"LOC105378116","entrezGeneId":105378116},{"hugoGeneSymbol":"LOC105378117","entrezGeneId":105378117},{"hugoGeneSymbol":"LOC105378118","entrezGeneId":105378118},{"hugoGeneSymbol":"LOC105378119","entrezGeneId":105378119},{"hugoGeneSymbol":"LOC105378120","entrezGeneId":105378120},{"hugoGeneSymbol":"LOC105378122","entrezGeneId":105378122},{"hugoGeneSymbol":"LOC105378123","entrezGeneId":105378123},{"hugoGeneSymbol":"LOC105378126","entrezGeneId":105378126},{"hugoGeneSymbol":"LOC105378127","entrezGeneId":105378127},{"hugoGeneSymbol":"LOC105378128","entrezGeneId":105378128},{"hugoGeneSymbol":"LOC105378129","entrezGeneId":105378129},{"hugoGeneSymbol":"LOC105378130","entrezGeneId":105378130},{"hugoGeneSymbol":"LOC105378131","entrezGeneId":105378131},{"hugoGeneSymbol":"LOC105378132","entrezGeneId":105378132},{"hugoGeneSymbol":"LOC105378135","entrezGeneId":105378135},{"hugoGeneSymbol":"LOC105378137","entrezGeneId":105378137},{"hugoGeneSymbol":"LOC105378138","entrezGeneId":105378138},{"hugoGeneSymbol":"LOC105378139","entrezGeneId":105378139},{"hugoGeneSymbol":"LOC105378140","entrezGeneId":105378140},{"hugoGeneSymbol":"LOC105378141","entrezGeneId":105378141},{"hugoGeneSymbol":"LOC105378142","entrezGeneId":105378142},{"hugoGeneSymbol":"LOC105378143","entrezGeneId":105378143},{"hugoGeneSymbol":"LOC105378144","entrezGeneId":105378144},{"hugoGeneSymbol":"LOC105378145","entrezGeneId":105378145},{"hugoGeneSymbol":"LOC105378146","entrezGeneId":105378146},{"hugoGeneSymbol":"LOC105378148","entrezGeneId":105378148},{"hugoGeneSymbol":"LOC105378149","entrezGeneId":105378149},{"hugoGeneSymbol":"LOC105378150","entrezGeneId":105378150},{"hugoGeneSymbol":"LOC105378153","entrezGeneId":105378153},{"hugoGeneSymbol":"LOC105378157","entrezGeneId":105378157},{"hugoGeneSymbol":"LOC105378161","entrezGeneId":105378161},{"hugoGeneSymbol":"LOC105378171","entrezGeneId":105378171},{"hugoGeneSymbol":"LOC105378174","entrezGeneId":105378174},{"hugoGeneSymbol":"LOC105378175","entrezGeneId":105378175},{"hugoGeneSymbol":"LOC105378177","entrezGeneId":105378177},{"hugoGeneSymbol":"LOC105378178","entrezGeneId":105378178},{"hugoGeneSymbol":"LOC105378179","entrezGeneId":105378179},{"hugoGeneSymbol":"LOC105378180","entrezGeneId":105378180},{"hugoGeneSymbol":"LOC105378183","entrezGeneId":105378183},{"hugoGeneSymbol":"LOC105378184","entrezGeneId":105378184},{"hugoGeneSymbol":"LOC105378185","entrezGeneId":105378185},{"hugoGeneSymbol":"LOC105378187","entrezGeneId":105378187},{"hugoGeneSymbol":"LOC105378189","entrezGeneId":105378189},{"hugoGeneSymbol":"LOC105378193","entrezGeneId":105378193},{"hugoGeneSymbol":"LOC105378198","entrezGeneId":105378198},{"hugoGeneSymbol":"LOC105378199","entrezGeneId":105378199},{"hugoGeneSymbol":"LOC105378204","entrezGeneId":105378204},{"hugoGeneSymbol":"LOC105378208","entrezGeneId":105378208},{"hugoGeneSymbol":"LOC105378209","entrezGeneId":105378209},{"hugoGeneSymbol":"LOC105378210","entrezGeneId":105378210},{"hugoGeneSymbol":"LOC105378211","entrezGeneId":105378211},{"hugoGeneSymbol":"LOC105378213","entrezGeneId":105378213},{"hugoGeneSymbol":"LOC105378214","entrezGeneId":105378214},{"hugoGeneSymbol":"LOC105378218","entrezGeneId":105378218},{"hugoGeneSymbol":"LOC105378221","entrezGeneId":105378221},{"hugoGeneSymbol":"LOC105378224","entrezGeneId":105378224},{"hugoGeneSymbol":"LOC105378225","entrezGeneId":105378225},{"hugoGeneSymbol":"LOC105378226","entrezGeneId":105378226},{"hugoGeneSymbol":"LOC105378228","entrezGeneId":105378228},{"hugoGeneSymbol":"LOC105378230","entrezGeneId":105378230},{"hugoGeneSymbol":"LOC105378231","entrezGeneId":105378231},{"hugoGeneSymbol":"LOC105378234","entrezGeneId":105378234},{"hugoGeneSymbol":"LOC105378235","entrezGeneId":105378235},{"hugoGeneSymbol":"LOC105378236","entrezGeneId":105378236},{"hugoGeneSymbol":"LOC105378237","entrezGeneId":105378237},{"hugoGeneSymbol":"LOC105378239","entrezGeneId":105378239},{"hugoGeneSymbol":"LOC105378240","entrezGeneId":105378240},{"hugoGeneSymbol":"LOC105378242","entrezGeneId":105378242},{"hugoGeneSymbol":"LOC105378247","entrezGeneId":105378247},{"hugoGeneSymbol":"LOC105378248","entrezGeneId":105378248},{"hugoGeneSymbol":"LOC105378250","entrezGeneId":105378250},{"hugoGeneSymbol":"LOC105378255","entrezGeneId":105378255},{"hugoGeneSymbol":"LOC105378256","entrezGeneId":105378256},{"hugoGeneSymbol":"LOC105378258","entrezGeneId":105378258},{"hugoGeneSymbol":"LOC105378260","entrezGeneId":105378260},{"hugoGeneSymbol":"LOC105378262","entrezGeneId":105378262},{"hugoGeneSymbol":"LOC105378267","entrezGeneId":105378267},{"hugoGeneSymbol":"LOC105378268","entrezGeneId":105378268},{"hugoGeneSymbol":"LOC105378269","entrezGeneId":105378269},{"hugoGeneSymbol":"LOC105378270","entrezGeneId":105378270},{"hugoGeneSymbol":"LOC105378271","entrezGeneId":105378271},{"hugoGeneSymbol":"LOC105378272","entrezGeneId":105378272},{"hugoGeneSymbol":"LOC105378274","entrezGeneId":105378274},{"hugoGeneSymbol":"LOC105378275","entrezGeneId":105378275},{"hugoGeneSymbol":"LOC105378277","entrezGeneId":105378277},{"hugoGeneSymbol":"LOC105378281","entrezGeneId":105378281},{"hugoGeneSymbol":"LOC105378283","entrezGeneId":105378283},{"hugoGeneSymbol":"LOC105378286","entrezGeneId":105378286},{"hugoGeneSymbol":"LOC105378287","entrezGeneId":105378287},{"hugoGeneSymbol":"LOC105378289","entrezGeneId":105378289},{"hugoGeneSymbol":"LOC105378291","entrezGeneId":105378291},{"hugoGeneSymbol":"LOC105378292","entrezGeneId":105378292},{"hugoGeneSymbol":"LOC105378298","entrezGeneId":105378298},{"hugoGeneSymbol":"LOC105378299","entrezGeneId":105378299},{"hugoGeneSymbol":"LOC105378302","entrezGeneId":105378302},{"hugoGeneSymbol":"LOC105378305","entrezGeneId":105378305},{"hugoGeneSymbol":"LOC105378306","entrezGeneId":105378306},{"hugoGeneSymbol":"LOC105378307","entrezGeneId":105378307},{"hugoGeneSymbol":"LOC105378308","entrezGeneId":105378308},{"hugoGeneSymbol":"LOC105378309","entrezGeneId":105378309},{"hugoGeneSymbol":"LOC105378310","entrezGeneId":105378310},{"hugoGeneSymbol":"LOC105378311","entrezGeneId":105378311},{"hugoGeneSymbol":"LOC105378313","entrezGeneId":105378313},{"hugoGeneSymbol":"LOC105378314","entrezGeneId":105378314},{"hugoGeneSymbol":"LOC105378316","entrezGeneId":105378316},{"hugoGeneSymbol":"LOC105378318","entrezGeneId":105378318},{"hugoGeneSymbol":"LOC105378319","entrezGeneId":105378319},{"hugoGeneSymbol":"LOC105378320","entrezGeneId":105378320},{"hugoGeneSymbol":"LOC105378323","entrezGeneId":105378323},{"hugoGeneSymbol":"LOC105378325","entrezGeneId":105378325},{"hugoGeneSymbol":"LOC105378326","entrezGeneId":105378326},{"hugoGeneSymbol":"LOC105378327","entrezGeneId":105378327},{"hugoGeneSymbol":"LOC105378328","entrezGeneId":105378328},{"hugoGeneSymbol":"LOC105378329","entrezGeneId":105378329},{"hugoGeneSymbol":"LOC105378330","entrezGeneId":105378330},{"hugoGeneSymbol":"LOC105378333","entrezGeneId":105378333},{"hugoGeneSymbol":"LOC105378335","entrezGeneId":105378335},{"hugoGeneSymbol":"LOC105378336","entrezGeneId":105378336},{"hugoGeneSymbol":"LOC105378337","entrezGeneId":105378337},{"hugoGeneSymbol":"LOC105378338","entrezGeneId":105378338},{"hugoGeneSymbol":"LOC105378339","entrezGeneId":105378339},{"hugoGeneSymbol":"LOC105378340","entrezGeneId":105378340},{"hugoGeneSymbol":"LOC105378342","entrezGeneId":105378342},{"hugoGeneSymbol":"LOC105378345","entrezGeneId":105378345},{"hugoGeneSymbol":"LOC105378346","entrezGeneId":105378346},{"hugoGeneSymbol":"LOC105378347","entrezGeneId":105378347},{"hugoGeneSymbol":"LOC105378349","entrezGeneId":105378349},{"hugoGeneSymbol":"LOC105378350","entrezGeneId":105378350},{"hugoGeneSymbol":"LOC105378351","entrezGeneId":105378351},{"hugoGeneSymbol":"LOC105378353","entrezGeneId":105378353},{"hugoGeneSymbol":"LOC105378355","entrezGeneId":105378355},{"hugoGeneSymbol":"LOC105378356","entrezGeneId":105378356},{"hugoGeneSymbol":"LOC105378358","entrezGeneId":105378358},{"hugoGeneSymbol":"LOC105378360","entrezGeneId":105378360},{"hugoGeneSymbol":"LOC105378367","entrezGeneId":105378367},{"hugoGeneSymbol":"LOC105378369","entrezGeneId":105378369},{"hugoGeneSymbol":"LOC105378372","entrezGeneId":105378372},{"hugoGeneSymbol":"LOC105378373","entrezGeneId":105378373},{"hugoGeneSymbol":"LOC105378374","entrezGeneId":105378374},{"hugoGeneSymbol":"LOC105378375","entrezGeneId":105378375},{"hugoGeneSymbol":"LOC105378378","entrezGeneId":105378378},{"hugoGeneSymbol":"LOC105378379","entrezGeneId":105378379},{"hugoGeneSymbol":"LOC105378383","entrezGeneId":105378383},{"hugoGeneSymbol":"LOC105378385","entrezGeneId":105378385},{"hugoGeneSymbol":"LOC105378386","entrezGeneId":105378386},{"hugoGeneSymbol":"LOC105378387","entrezGeneId":105378387},{"hugoGeneSymbol":"LOC105378390","entrezGeneId":105378390},{"hugoGeneSymbol":"LOC105378392","entrezGeneId":105378392},{"hugoGeneSymbol":"LOC105378393","entrezGeneId":105378393},{"hugoGeneSymbol":"LOC105378394","entrezGeneId":105378394},{"hugoGeneSymbol":"LOC105378396","entrezGeneId":105378396},{"hugoGeneSymbol":"LOC105378397","entrezGeneId":105378397},{"hugoGeneSymbol":"LOC105378398","entrezGeneId":105378398},{"hugoGeneSymbol":"LOC105378399","entrezGeneId":105378399},{"hugoGeneSymbol":"LOC105378400","entrezGeneId":105378400},{"hugoGeneSymbol":"LOC105378401","entrezGeneId":105378401},{"hugoGeneSymbol":"LOC105378402","entrezGeneId":105378402},{"hugoGeneSymbol":"LOC105378403","entrezGeneId":105378403},{"hugoGeneSymbol":"LOC105378404","entrezGeneId":105378404},{"hugoGeneSymbol":"LOC105378406","entrezGeneId":105378406},{"hugoGeneSymbol":"LOC105378407","entrezGeneId":105378407},{"hugoGeneSymbol":"LOC105378408","entrezGeneId":105378408},{"hugoGeneSymbol":"LOC105378409","entrezGeneId":105378409},{"hugoGeneSymbol":"LOC105378410","entrezGeneId":105378410},{"hugoGeneSymbol":"LOC105378412","entrezGeneId":105378412},{"hugoGeneSymbol":"LOC105378414","entrezGeneId":105378414},{"hugoGeneSymbol":"LOC105378415","entrezGeneId":105378415},{"hugoGeneSymbol":"LOC105378416","entrezGeneId":105378416},{"hugoGeneSymbol":"LOC105378418","entrezGeneId":105378418},{"hugoGeneSymbol":"LOC105378419","entrezGeneId":105378419},{"hugoGeneSymbol":"LOC105378421","entrezGeneId":105378421},{"hugoGeneSymbol":"LOC105378424","entrezGeneId":105378424},{"hugoGeneSymbol":"LOC105378426","entrezGeneId":105378426},{"hugoGeneSymbol":"LOC105378429","entrezGeneId":105378429},{"hugoGeneSymbol":"LOC105378430","entrezGeneId":105378430},{"hugoGeneSymbol":"LOC105378433","entrezGeneId":105378433},{"hugoGeneSymbol":"LOC105378436","entrezGeneId":105378436},{"hugoGeneSymbol":"LOC105378437","entrezGeneId":105378437},{"hugoGeneSymbol":"LOC105378438","entrezGeneId":105378438},{"hugoGeneSymbol":"LOC105378443","entrezGeneId":105378443},{"hugoGeneSymbol":"LOC105378444","entrezGeneId":105378444},{"hugoGeneSymbol":"LOC105378447","entrezGeneId":105378447},{"hugoGeneSymbol":"LOC105378448","entrezGeneId":105378448},{"hugoGeneSymbol":"LOC105378449","entrezGeneId":105378449},{"hugoGeneSymbol":"LOC105378450","entrezGeneId":105378450},{"hugoGeneSymbol":"LOC105378452","entrezGeneId":105378452},{"hugoGeneSymbol":"LOC105378453","entrezGeneId":105378453},{"hugoGeneSymbol":"LOC105378454","entrezGeneId":105378454},{"hugoGeneSymbol":"LOC105378455","entrezGeneId":105378455},{"hugoGeneSymbol":"LOC105378456","entrezGeneId":105378456},{"hugoGeneSymbol":"LOC105378457","entrezGeneId":105378457},{"hugoGeneSymbol":"LOC105378458","entrezGeneId":105378458},{"hugoGeneSymbol":"LOC105378460","entrezGeneId":105378460},{"hugoGeneSymbol":"LOC105378464","entrezGeneId":105378464},{"hugoGeneSymbol":"LOC105378465","entrezGeneId":105378465},{"hugoGeneSymbol":"LOC105378466","entrezGeneId":105378466},{"hugoGeneSymbol":"LOC105378467","entrezGeneId":105378467},{"hugoGeneSymbol":"LOC105378468","entrezGeneId":105378468},{"hugoGeneSymbol":"LOC105378469","entrezGeneId":105378469},{"hugoGeneSymbol":"LOC105378470","entrezGeneId":105378470},{"hugoGeneSymbol":"LOC105378472","entrezGeneId":105378472},{"hugoGeneSymbol":"LOC105378473","entrezGeneId":105378473},{"hugoGeneSymbol":"LOC105378474","entrezGeneId":105378474},{"hugoGeneSymbol":"LOC105378475","entrezGeneId":105378475},{"hugoGeneSymbol":"LOC105378476","entrezGeneId":105378476},{"hugoGeneSymbol":"LOC105378477","entrezGeneId":105378477},{"hugoGeneSymbol":"LOC105378478","entrezGeneId":105378478},{"hugoGeneSymbol":"LOC105378479","entrezGeneId":105378479},{"hugoGeneSymbol":"LOC105378480","entrezGeneId":105378480},{"hugoGeneSymbol":"LOC105378481","entrezGeneId":105378481},{"hugoGeneSymbol":"LOC105378482","entrezGeneId":105378482},{"hugoGeneSymbol":"LOC105378483","entrezGeneId":105378483},{"hugoGeneSymbol":"LOC105378484","entrezGeneId":105378484},{"hugoGeneSymbol":"LOC105378485","entrezGeneId":105378485},{"hugoGeneSymbol":"LOC105378486","entrezGeneId":105378486},{"hugoGeneSymbol":"LOC105378487","entrezGeneId":105378487},{"hugoGeneSymbol":"LOC105378488","entrezGeneId":105378488},{"hugoGeneSymbol":"LOC105378489","entrezGeneId":105378489},{"hugoGeneSymbol":"LOC105378490","entrezGeneId":105378490},{"hugoGeneSymbol":"LOC105378492","entrezGeneId":105378492},{"hugoGeneSymbol":"LOC105378493","entrezGeneId":105378493},{"hugoGeneSymbol":"LOC105378494","entrezGeneId":105378494},{"hugoGeneSymbol":"LOC105378496","entrezGeneId":105378496},{"hugoGeneSymbol":"LOC105378497","entrezGeneId":105378497},{"hugoGeneSymbol":"LOC105378498","entrezGeneId":105378498},{"hugoGeneSymbol":"LOC105378499","entrezGeneId":105378499},{"hugoGeneSymbol":"LOC105378500","entrezGeneId":105378500},{"hugoGeneSymbol":"LOC105378502","entrezGeneId":105378502},{"hugoGeneSymbol":"LOC105378504","entrezGeneId":105378504},{"hugoGeneSymbol":"LOC105378506","entrezGeneId":105378506},{"hugoGeneSymbol":"LOC105378507","entrezGeneId":105378507},{"hugoGeneSymbol":"LOC105378511","entrezGeneId":105378511},{"hugoGeneSymbol":"LOC105378512","entrezGeneId":105378512},{"hugoGeneSymbol":"LOC105378513","entrezGeneId":105378513},{"hugoGeneSymbol":"LOC105378515","entrezGeneId":105378515},{"hugoGeneSymbol":"LOC105378516","entrezGeneId":105378516},{"hugoGeneSymbol":"LOC105378518","entrezGeneId":105378518},{"hugoGeneSymbol":"LOC105378519","entrezGeneId":105378519},{"hugoGeneSymbol":"LOC105378520","entrezGeneId":105378520},{"hugoGeneSymbol":"LOC105378521","entrezGeneId":105378521},{"hugoGeneSymbol":"LOC105378522","entrezGeneId":105378522},{"hugoGeneSymbol":"LOC105378523","entrezGeneId":105378523},{"hugoGeneSymbol":"LOC105378525","entrezGeneId":105378525},{"hugoGeneSymbol":"LOC105378526","entrezGeneId":105378526},{"hugoGeneSymbol":"LOC105378530","entrezGeneId":105378530},{"hugoGeneSymbol":"LOC105378531","entrezGeneId":105378531},{"hugoGeneSymbol":"LOC105378532","entrezGeneId":105378532},{"hugoGeneSymbol":"LOC105378533","entrezGeneId":105378533},{"hugoGeneSymbol":"LOC105378534","entrezGeneId":105378534},{"hugoGeneSymbol":"LOC105378536","entrezGeneId":105378536},{"hugoGeneSymbol":"LOC105378539","entrezGeneId":105378539},{"hugoGeneSymbol":"LOC105378541","entrezGeneId":105378541},{"hugoGeneSymbol":"LOC105378542","entrezGeneId":105378542},{"hugoGeneSymbol":"LOC105378543","entrezGeneId":105378543},{"hugoGeneSymbol":"LOC105378544","entrezGeneId":105378544},{"hugoGeneSymbol":"LOC105378545","entrezGeneId":105378545},{"hugoGeneSymbol":"LOC105378547","entrezGeneId":105378547},{"hugoGeneSymbol":"LOC105378548","entrezGeneId":105378548},{"hugoGeneSymbol":"LOC105378549","entrezGeneId":105378549},{"hugoGeneSymbol":"LOC105378550","entrezGeneId":105378550},{"hugoGeneSymbol":"LOC105378551","entrezGeneId":105378551},{"hugoGeneSymbol":"LOC105378552","entrezGeneId":105378552},{"hugoGeneSymbol":"LOC105378554","entrezGeneId":105378554},{"hugoGeneSymbol":"LOC105378555","entrezGeneId":105378555},{"hugoGeneSymbol":"LOC105378556","entrezGeneId":105378556},{"hugoGeneSymbol":"LOC105378557","entrezGeneId":105378557},{"hugoGeneSymbol":"LOC105378558","entrezGeneId":105378558},{"hugoGeneSymbol":"LOC105378560","entrezGeneId":105378560},{"hugoGeneSymbol":"LOC105378561","entrezGeneId":105378561},{"hugoGeneSymbol":"LOC105378562","entrezGeneId":105378562},{"hugoGeneSymbol":"LOC105378563","entrezGeneId":105378563},{"hugoGeneSymbol":"LOC105378565","entrezGeneId":105378565},{"hugoGeneSymbol":"LOC105378566","entrezGeneId":105378566},{"hugoGeneSymbol":"LOC105378567","entrezGeneId":105378567},{"hugoGeneSymbol":"LOC105378568","entrezGeneId":105378568},{"hugoGeneSymbol":"LOC105378569","entrezGeneId":105378569},{"hugoGeneSymbol":"LOC105378570","entrezGeneId":105378570},{"hugoGeneSymbol":"LOC105378571","entrezGeneId":105378571},{"hugoGeneSymbol":"LOC105378572","entrezGeneId":105378572},{"hugoGeneSymbol":"LOC105378573","entrezGeneId":105378573},{"hugoGeneSymbol":"LOC105378574","entrezGeneId":105378574},{"hugoGeneSymbol":"LOC105378575","entrezGeneId":105378575},{"hugoGeneSymbol":"LOC105378576","entrezGeneId":105378576},{"hugoGeneSymbol":"LOC105378577","entrezGeneId":105378577},{"hugoGeneSymbol":"LOC105378580","entrezGeneId":105378580},{"hugoGeneSymbol":"LOC105378585","entrezGeneId":105378585},{"hugoGeneSymbol":"LOC105378586","entrezGeneId":105378586},{"hugoGeneSymbol":"LOC105378589","entrezGeneId":105378589},{"hugoGeneSymbol":"LOC105378590","entrezGeneId":105378590},{"hugoGeneSymbol":"LOC105378591","entrezGeneId":105378591},{"hugoGeneSymbol":"LOC105378592","entrezGeneId":105378592},{"hugoGeneSymbol":"LOC105378593","entrezGeneId":105378593},{"hugoGeneSymbol":"LOC105378597","entrezGeneId":105378597},{"hugoGeneSymbol":"LOC105378598","entrezGeneId":105378598},{"hugoGeneSymbol":"LOC105378599","entrezGeneId":105378599},{"hugoGeneSymbol":"LOC105378600","entrezGeneId":105378600},{"hugoGeneSymbol":"LOC105378601","entrezGeneId":105378601},{"hugoGeneSymbol":"LOC105378602","entrezGeneId":105378602},{"hugoGeneSymbol":"LOC105378603","entrezGeneId":105378603},{"hugoGeneSymbol":"LOC105378604","entrezGeneId":105378604},{"hugoGeneSymbol":"LOC105378605","entrezGeneId":105378605},{"hugoGeneSymbol":"LOC105378606","entrezGeneId":105378606},{"hugoGeneSymbol":"LOC105378607","entrezGeneId":105378607},{"hugoGeneSymbol":"LOC105378608","entrezGeneId":105378608},{"hugoGeneSymbol":"LOC105378609","entrezGeneId":105378609},{"hugoGeneSymbol":"LOC105378610","entrezGeneId":105378610},{"hugoGeneSymbol":"LOC105378612","entrezGeneId":105378612},{"hugoGeneSymbol":"LOC105378614","entrezGeneId":105378614},{"hugoGeneSymbol":"LOC105378615","entrezGeneId":105378615},{"hugoGeneSymbol":"LOC105378617","entrezGeneId":105378617},{"hugoGeneSymbol":"LOC105378618","entrezGeneId":105378618},{"hugoGeneSymbol":"LOC105378619","entrezGeneId":105378619},{"hugoGeneSymbol":"LOC105378620","entrezGeneId":105378620},{"hugoGeneSymbol":"LOC105378621","entrezGeneId":105378621},{"hugoGeneSymbol":"LOC105378623","entrezGeneId":105378623},{"hugoGeneSymbol":"LOC105378625","entrezGeneId":105378625},{"hugoGeneSymbol":"LOC105378626","entrezGeneId":105378626},{"hugoGeneSymbol":"LOC105378628","entrezGeneId":105378628},{"hugoGeneSymbol":"LOC105378629","entrezGeneId":105378629},{"hugoGeneSymbol":"LOC105378631","entrezGeneId":105378631},{"hugoGeneSymbol":"LOC105378632","entrezGeneId":105378632},{"hugoGeneSymbol":"LOC105378635","entrezGeneId":105378635},{"hugoGeneSymbol":"LOC105378638","entrezGeneId":105378638},{"hugoGeneSymbol":"LOC105378639","entrezGeneId":105378639},{"hugoGeneSymbol":"LOC105378640","entrezGeneId":105378640},{"hugoGeneSymbol":"LOC105378641","entrezGeneId":105378641},{"hugoGeneSymbol":"LOC105378642","entrezGeneId":105378642},{"hugoGeneSymbol":"LOC105378644","entrezGeneId":105378644},{"hugoGeneSymbol":"LOC105378645","entrezGeneId":105378645},{"hugoGeneSymbol":"LOC105378646","entrezGeneId":105378646},{"hugoGeneSymbol":"LOC105378647","entrezGeneId":105378647},{"hugoGeneSymbol":"LOC105378648","entrezGeneId":105378648},{"hugoGeneSymbol":"LOC105378649","entrezGeneId":105378649},{"hugoGeneSymbol":"LOC105378650","entrezGeneId":105378650},{"hugoGeneSymbol":"LOC105378651","entrezGeneId":105378651},{"hugoGeneSymbol":"LOC105378653","entrezGeneId":105378653},{"hugoGeneSymbol":"LOC105378654","entrezGeneId":105378654},{"hugoGeneSymbol":"LOC105378655","entrezGeneId":105378655},{"hugoGeneSymbol":"LOC105378657","entrezGeneId":105378657},{"hugoGeneSymbol":"LOC105378658","entrezGeneId":105378658},{"hugoGeneSymbol":"LOC105378660","entrezGeneId":105378660},{"hugoGeneSymbol":"LOC105378662","entrezGeneId":105378662},{"hugoGeneSymbol":"LOC105378663","entrezGeneId":105378663},{"hugoGeneSymbol":"LOC105378665","entrezGeneId":105378665},{"hugoGeneSymbol":"LOC105378666","entrezGeneId":105378666},{"hugoGeneSymbol":"LOC105378667","entrezGeneId":105378667},{"hugoGeneSymbol":"LOC105378668","entrezGeneId":105378668},{"hugoGeneSymbol":"LOC105378669","entrezGeneId":105378669},{"hugoGeneSymbol":"LOC105378671","entrezGeneId":105378671},{"hugoGeneSymbol":"LOC105378672","entrezGeneId":105378672},{"hugoGeneSymbol":"LOC105378673","entrezGeneId":105378673},{"hugoGeneSymbol":"LOC105378674","entrezGeneId":105378674},{"hugoGeneSymbol":"LOC105378675","entrezGeneId":105378675},{"hugoGeneSymbol":"LOC105378676","entrezGeneId":105378676},{"hugoGeneSymbol":"LOC105378678","entrezGeneId":105378678},{"hugoGeneSymbol":"LOC105378683","entrezGeneId":105378683},{"hugoGeneSymbol":"LOC105378685","entrezGeneId":105378685},{"hugoGeneSymbol":"LOC105378687","entrezGeneId":105378687},{"hugoGeneSymbol":"LOC105378688","entrezGeneId":105378688},{"hugoGeneSymbol":"LOC105378690","entrezGeneId":105378690},{"hugoGeneSymbol":"LOC105378691","entrezGeneId":105378691},{"hugoGeneSymbol":"LOC105378693","entrezGeneId":105378693},{"hugoGeneSymbol":"LOC105378694","entrezGeneId":105378694},{"hugoGeneSymbol":"LOC105378696","entrezGeneId":105378696},{"hugoGeneSymbol":"LOC105378697","entrezGeneId":105378697},{"hugoGeneSymbol":"LOC105378698","entrezGeneId":105378698},{"hugoGeneSymbol":"LOC105378699","entrezGeneId":105378699},{"hugoGeneSymbol":"LOC105378701","entrezGeneId":105378701},{"hugoGeneSymbol":"LOC105378706","entrezGeneId":105378706},{"hugoGeneSymbol":"LOC105378708","entrezGeneId":105378708},{"hugoGeneSymbol":"LOC105378709","entrezGeneId":105378709},{"hugoGeneSymbol":"LOC105378710","entrezGeneId":105378710},{"hugoGeneSymbol":"LOC105378711","entrezGeneId":105378711},{"hugoGeneSymbol":"LOC105378712","entrezGeneId":105378712},{"hugoGeneSymbol":"LOC105378714","entrezGeneId":105378714},{"hugoGeneSymbol":"LOC105378715","entrezGeneId":105378715},{"hugoGeneSymbol":"LOC105378717","entrezGeneId":105378717},{"hugoGeneSymbol":"LOC105378719","entrezGeneId":105378719},{"hugoGeneSymbol":"LOC105378720","entrezGeneId":105378720},{"hugoGeneSymbol":"LOC105378721","entrezGeneId":105378721},{"hugoGeneSymbol":"LOC105378723","entrezGeneId":105378723},{"hugoGeneSymbol":"LOC105378724","entrezGeneId":105378724},{"hugoGeneSymbol":"LOC105378726","entrezGeneId":105378726},{"hugoGeneSymbol":"LOC105378728","entrezGeneId":105378728},{"hugoGeneSymbol":"LOC105378730","entrezGeneId":105378730},{"hugoGeneSymbol":"LOC105378731","entrezGeneId":105378731},{"hugoGeneSymbol":"LOC105378733","entrezGeneId":105378733},{"hugoGeneSymbol":"LOC105378734","entrezGeneId":105378734},{"hugoGeneSymbol":"LOC105378735","entrezGeneId":105378735},{"hugoGeneSymbol":"LOC105378736","entrezGeneId":105378736},{"hugoGeneSymbol":"LOC105378737","entrezGeneId":105378737},{"hugoGeneSymbol":"LOC105378740","entrezGeneId":105378740},{"hugoGeneSymbol":"LOC105378741","entrezGeneId":105378741},{"hugoGeneSymbol":"LOC105378745","entrezGeneId":105378745},{"hugoGeneSymbol":"LOC105378746","entrezGeneId":105378746},{"hugoGeneSymbol":"LOC105378747","entrezGeneId":105378747},{"hugoGeneSymbol":"LOC105378748","entrezGeneId":105378748},{"hugoGeneSymbol":"LOC105378751","entrezGeneId":105378751},{"hugoGeneSymbol":"LOC105378753","entrezGeneId":105378753},{"hugoGeneSymbol":"LOC105378756","entrezGeneId":105378756},{"hugoGeneSymbol":"LOC105378758","entrezGeneId":105378758},{"hugoGeneSymbol":"LOC105378760","entrezGeneId":105378760},{"hugoGeneSymbol":"LOC105378761","entrezGeneId":105378761},{"hugoGeneSymbol":"LOC105378764","entrezGeneId":105378764},{"hugoGeneSymbol":"LOC105378766","entrezGeneId":105378766},{"hugoGeneSymbol":"LOC105378768","entrezGeneId":105378768},{"hugoGeneSymbol":"LOC105378770","entrezGeneId":105378770},{"hugoGeneSymbol":"LOC105378771","entrezGeneId":105378771},{"hugoGeneSymbol":"LOC105378772","entrezGeneId":105378772},{"hugoGeneSymbol":"LOC105378773","entrezGeneId":105378773},{"hugoGeneSymbol":"LOC105378774","entrezGeneId":105378774},{"hugoGeneSymbol":"LOC105378776","entrezGeneId":105378776},{"hugoGeneSymbol":"LOC105378779","entrezGeneId":105378779},{"hugoGeneSymbol":"LOC105378780","entrezGeneId":105378780},{"hugoGeneSymbol":"LOC105378781","entrezGeneId":105378781},{"hugoGeneSymbol":"LOC105378782","entrezGeneId":105378782},{"hugoGeneSymbol":"LOC105378783","entrezGeneId":105378783},{"hugoGeneSymbol":"LOC105378786","entrezGeneId":105378786},{"hugoGeneSymbol":"LOC105378787","entrezGeneId":105378787},{"hugoGeneSymbol":"LOC105378789","entrezGeneId":105378789},{"hugoGeneSymbol":"LOC105378790","entrezGeneId":105378790},{"hugoGeneSymbol":"LOC105378792","entrezGeneId":105378792},{"hugoGeneSymbol":"LOC105378793","entrezGeneId":105378793},{"hugoGeneSymbol":"LOC105378794","entrezGeneId":105378794},{"hugoGeneSymbol":"LOC105378795","entrezGeneId":105378795},{"hugoGeneSymbol":"LOC105378796","entrezGeneId":105378796},{"hugoGeneSymbol":"LOC105378797","entrezGeneId":105378797},{"hugoGeneSymbol":"LOC105378798","entrezGeneId":105378798},{"hugoGeneSymbol":"LOC105378799","entrezGeneId":105378799},{"hugoGeneSymbol":"LOC105378800","entrezGeneId":105378800},{"hugoGeneSymbol":"LOC105378801","entrezGeneId":105378801},{"hugoGeneSymbol":"LOC105378802","entrezGeneId":105378802},{"hugoGeneSymbol":"LOC105378805","entrezGeneId":105378805},{"hugoGeneSymbol":"LOC105378806","entrezGeneId":105378806},{"hugoGeneSymbol":"LOC105378807","entrezGeneId":105378807},{"hugoGeneSymbol":"LOC105378808","entrezGeneId":105378808},{"hugoGeneSymbol":"LOC105378810","entrezGeneId":105378810},{"hugoGeneSymbol":"LOC105378811","entrezGeneId":105378811},{"hugoGeneSymbol":"LOC105378812","entrezGeneId":105378812},{"hugoGeneSymbol":"LOC105378813","entrezGeneId":105378813},{"hugoGeneSymbol":"LOC105378814","entrezGeneId":105378814},{"hugoGeneSymbol":"LOC105378816","entrezGeneId":105378816},{"hugoGeneSymbol":"LOC105378819","entrezGeneId":105378819},{"hugoGeneSymbol":"LOC105378821","entrezGeneId":105378821},{"hugoGeneSymbol":"LOC105378823","entrezGeneId":105378823},{"hugoGeneSymbol":"LOC105378824","entrezGeneId":105378824},{"hugoGeneSymbol":"LOC105378825","entrezGeneId":105378825},{"hugoGeneSymbol":"LOC105378826","entrezGeneId":105378826},{"hugoGeneSymbol":"LOC105378827","entrezGeneId":105378827},{"hugoGeneSymbol":"LOC105378828","entrezGeneId":105378828},{"hugoGeneSymbol":"LOC105378831","entrezGeneId":105378831},{"hugoGeneSymbol":"LOC105378833","entrezGeneId":105378833},{"hugoGeneSymbol":"LOC105378834","entrezGeneId":105378834},{"hugoGeneSymbol":"LOC105378835","entrezGeneId":105378835},{"hugoGeneSymbol":"LOC105378836","entrezGeneId":105378836},{"hugoGeneSymbol":"LOC105378838","entrezGeneId":105378838},{"hugoGeneSymbol":"LOC105378839","entrezGeneId":105378839},{"hugoGeneSymbol":"LOC105378841","entrezGeneId":105378841},{"hugoGeneSymbol":"LOC105378842","entrezGeneId":105378842},{"hugoGeneSymbol":"LOC105378843","entrezGeneId":105378843},{"hugoGeneSymbol":"LOC105378844","entrezGeneId":105378844},{"hugoGeneSymbol":"LOC105378847","entrezGeneId":105378847},{"hugoGeneSymbol":"LOC105378848","entrezGeneId":105378848},{"hugoGeneSymbol":"LOC105378849","entrezGeneId":105378849},{"hugoGeneSymbol":"LOC105378850","entrezGeneId":105378850},{"hugoGeneSymbol":"LOC105378851","entrezGeneId":105378851},{"hugoGeneSymbol":"LOC105378852","entrezGeneId":105378852},{"hugoGeneSymbol":"LOC105378853","entrezGeneId":105378853},{"hugoGeneSymbol":"LOC105378855","entrezGeneId":105378855},{"hugoGeneSymbol":"LOC105378856","entrezGeneId":105378856},{"hugoGeneSymbol":"LOC105378858","entrezGeneId":105378858},{"hugoGeneSymbol":"LOC105378859","entrezGeneId":105378859},{"hugoGeneSymbol":"LOC105378860","entrezGeneId":105378860},{"hugoGeneSymbol":"LOC105378861","entrezGeneId":105378861},{"hugoGeneSymbol":"LOC105378862","entrezGeneId":105378862},{"hugoGeneSymbol":"LOC105378863","entrezGeneId":105378863},{"hugoGeneSymbol":"LOC105378864","entrezGeneId":105378864},{"hugoGeneSymbol":"LOC105378866","entrezGeneId":105378866},{"hugoGeneSymbol":"LOC105378867","entrezGeneId":105378867},{"hugoGeneSymbol":"LOC105378874","entrezGeneId":105378874},{"hugoGeneSymbol":"LOC105378878","entrezGeneId":105378878},{"hugoGeneSymbol":"LOC105378879","entrezGeneId":105378879},{"hugoGeneSymbol":"LOC105378880","entrezGeneId":105378880},{"hugoGeneSymbol":"LOC105378881","entrezGeneId":105378881},{"hugoGeneSymbol":"LOC105378882","entrezGeneId":105378882},{"hugoGeneSymbol":"LOC105378883","entrezGeneId":105378883},{"hugoGeneSymbol":"LOC105378885","entrezGeneId":105378885},{"hugoGeneSymbol":"LOC105378886","entrezGeneId":105378886},{"hugoGeneSymbol":"LOC105378887","entrezGeneId":105378887},{"hugoGeneSymbol":"LOC105378888","entrezGeneId":105378888},{"hugoGeneSymbol":"LOC105378890","entrezGeneId":105378890},{"hugoGeneSymbol":"LOC105378891","entrezGeneId":105378891},{"hugoGeneSymbol":"LOC105378892","entrezGeneId":105378892},{"hugoGeneSymbol":"LOC105378893","entrezGeneId":105378893},{"hugoGeneSymbol":"LOC105378895","entrezGeneId":105378895},{"hugoGeneSymbol":"LOC105378897","entrezGeneId":105378897},{"hugoGeneSymbol":"LOC105378898","entrezGeneId":105378898},{"hugoGeneSymbol":"LOC105378899","entrezGeneId":105378899},{"hugoGeneSymbol":"LOC105378901","entrezGeneId":105378901},{"hugoGeneSymbol":"LOC105378903","entrezGeneId":105378903},{"hugoGeneSymbol":"LOC105378904","entrezGeneId":105378904},{"hugoGeneSymbol":"LOC105378906","entrezGeneId":105378906},{"hugoGeneSymbol":"LOC105378909","entrezGeneId":105378909},{"hugoGeneSymbol":"LOC105378910","entrezGeneId":105378910},{"hugoGeneSymbol":"LOC105378911","entrezGeneId":105378911},{"hugoGeneSymbol":"LOC105378913","entrezGeneId":105378913},{"hugoGeneSymbol":"LOC105378914","entrezGeneId":105378914},{"hugoGeneSymbol":"LOC105378915","entrezGeneId":105378915},{"hugoGeneSymbol":"LOC105378917","entrezGeneId":105378917},{"hugoGeneSymbol":"LOC105378918","entrezGeneId":105378918},{"hugoGeneSymbol":"LOC105378919","entrezGeneId":105378919},{"hugoGeneSymbol":"LOC105378920","entrezGeneId":105378920},{"hugoGeneSymbol":"LOC105378924","entrezGeneId":105378924},{"hugoGeneSymbol":"LOC105378925","entrezGeneId":105378925},{"hugoGeneSymbol":"LOC105378926","entrezGeneId":105378926},{"hugoGeneSymbol":"LOC105378927","entrezGeneId":105378927},{"hugoGeneSymbol":"LOC105378929","entrezGeneId":105378929},{"hugoGeneSymbol":"LOC105378930","entrezGeneId":105378930},{"hugoGeneSymbol":"LOC105378933","entrezGeneId":105378933},{"hugoGeneSymbol":"LOC105378935","entrezGeneId":105378935},{"hugoGeneSymbol":"LOC105378936","entrezGeneId":105378936},{"hugoGeneSymbol":"LOC105378937","entrezGeneId":105378937},{"hugoGeneSymbol":"LOC105378938","entrezGeneId":105378938},{"hugoGeneSymbol":"LOC105378939","entrezGeneId":105378939},{"hugoGeneSymbol":"LOC105378940","entrezGeneId":105378940},{"hugoGeneSymbol":"LOC105378941","entrezGeneId":105378941},{"hugoGeneSymbol":"LOC105378943","entrezGeneId":105378943},{"hugoGeneSymbol":"LOC105378944","entrezGeneId":105378944},{"hugoGeneSymbol":"LOC105378946","entrezGeneId":105378946},{"hugoGeneSymbol":"LOC105378947","entrezGeneId":105378947},{"hugoGeneSymbol":"LOC105378948","entrezGeneId":105378948},{"hugoGeneSymbol":"LOC105378949","entrezGeneId":105378949},{"hugoGeneSymbol":"LOC105378950","entrezGeneId":105378950},{"hugoGeneSymbol":"LOC105378951","entrezGeneId":105378951},{"hugoGeneSymbol":"LOC105378954","entrezGeneId":105378954},{"hugoGeneSymbol":"LOC105378955","entrezGeneId":105378955},{"hugoGeneSymbol":"LOC105378956","entrezGeneId":105378956},{"hugoGeneSymbol":"LOC105378959","entrezGeneId":105378959},{"hugoGeneSymbol":"LOC105378961","entrezGeneId":105378961},{"hugoGeneSymbol":"LOC105378962","entrezGeneId":105378962},{"hugoGeneSymbol":"LOC105378963","entrezGeneId":105378963},{"hugoGeneSymbol":"LOC105378964","entrezGeneId":105378964},{"hugoGeneSymbol":"LOC105378965","entrezGeneId":105378965},{"hugoGeneSymbol":"LOC105378967","entrezGeneId":105378967},{"hugoGeneSymbol":"LOC105378968","entrezGeneId":105378968},{"hugoGeneSymbol":"LOC105378969","entrezGeneId":105378969},{"hugoGeneSymbol":"LOC105378971","entrezGeneId":105378971},{"hugoGeneSymbol":"LOC105378973","entrezGeneId":105378973},{"hugoGeneSymbol":"LOC105378975","entrezGeneId":105378975},{"hugoGeneSymbol":"LOC105378976","entrezGeneId":105378976},{"hugoGeneSymbol":"LOC105378977","entrezGeneId":105378977},{"hugoGeneSymbol":"LOC105378978","entrezGeneId":105378978},{"hugoGeneSymbol":"LOC105378979","entrezGeneId":105378979},{"hugoGeneSymbol":"LOC105378980","entrezGeneId":105378980},{"hugoGeneSymbol":"LOC105378983","entrezGeneId":105378983},{"hugoGeneSymbol":"LOC105378984","entrezGeneId":105378984},{"hugoGeneSymbol":"LOC105378986","entrezGeneId":105378986},{"hugoGeneSymbol":"LOC105378988","entrezGeneId":105378988},{"hugoGeneSymbol":"LOC105378991","entrezGeneId":105378991},{"hugoGeneSymbol":"LOC105378993","entrezGeneId":105378993},{"hugoGeneSymbol":"LOC105378994","entrezGeneId":105378994},{"hugoGeneSymbol":"LOC105378995","entrezGeneId":105378995},{"hugoGeneSymbol":"LOC105378997","entrezGeneId":105378997},{"hugoGeneSymbol":"LOC105378998","entrezGeneId":105378998},{"hugoGeneSymbol":"LOC105378999","entrezGeneId":105378999},{"hugoGeneSymbol":"LOC105379002","entrezGeneId":105379002},{"hugoGeneSymbol":"LOC105379003","entrezGeneId":105379003},{"hugoGeneSymbol":"LOC105379004","entrezGeneId":105379004},{"hugoGeneSymbol":"LOC105379005","entrezGeneId":105379005},{"hugoGeneSymbol":"LOC105379007","entrezGeneId":105379007},{"hugoGeneSymbol":"LOC105379010","entrezGeneId":105379010},{"hugoGeneSymbol":"LOC105379011","entrezGeneId":105379011},{"hugoGeneSymbol":"LOC105379012","entrezGeneId":105379012},{"hugoGeneSymbol":"LOC105379013","entrezGeneId":105379013},{"hugoGeneSymbol":"LOC105379014","entrezGeneId":105379014},{"hugoGeneSymbol":"LOC105379015","entrezGeneId":105379015},{"hugoGeneSymbol":"LOC105379016","entrezGeneId":105379016},{"hugoGeneSymbol":"LOC105379020","entrezGeneId":105379020},{"hugoGeneSymbol":"LOC105379021","entrezGeneId":105379021},{"hugoGeneSymbol":"LOC105379023","entrezGeneId":105379023},{"hugoGeneSymbol":"LOC105379025","entrezGeneId":105379025},{"hugoGeneSymbol":"LOC105379026","entrezGeneId":105379026},{"hugoGeneSymbol":"LOC105379027","entrezGeneId":105379027},{"hugoGeneSymbol":"LOC105379028","entrezGeneId":105379028},{"hugoGeneSymbol":"LOC105379030","entrezGeneId":105379030},{"hugoGeneSymbol":"LOC105379031","entrezGeneId":105379031},{"hugoGeneSymbol":"LOC105379034","entrezGeneId":105379034},{"hugoGeneSymbol":"LOC105379035","entrezGeneId":105379035},{"hugoGeneSymbol":"LOC105379039","entrezGeneId":105379039},{"hugoGeneSymbol":"LOC105379040","entrezGeneId":105379040},{"hugoGeneSymbol":"LOC105379041","entrezGeneId":105379041},{"hugoGeneSymbol":"LOC105379042","entrezGeneId":105379042},{"hugoGeneSymbol":"LOC105379045","entrezGeneId":105379045},{"hugoGeneSymbol":"LOC105379047","entrezGeneId":105379047},{"hugoGeneSymbol":"LOC105379048","entrezGeneId":105379048},{"hugoGeneSymbol":"LOC105379049","entrezGeneId":105379049},{"hugoGeneSymbol":"LOC105379050","entrezGeneId":105379050},{"hugoGeneSymbol":"LOC105379051","entrezGeneId":105379051},{"hugoGeneSymbol":"LOC105379052","entrezGeneId":105379052},{"hugoGeneSymbol":"LOC105379053","entrezGeneId":105379053},{"hugoGeneSymbol":"LOC105379055","entrezGeneId":105379055},{"hugoGeneSymbol":"LOC105379057","entrezGeneId":105379057},{"hugoGeneSymbol":"LOC105379059","entrezGeneId":105379059},{"hugoGeneSymbol":"LOC105379061","entrezGeneId":105379061},{"hugoGeneSymbol":"LOC105379062","entrezGeneId":105379062},{"hugoGeneSymbol":"LOC105379063","entrezGeneId":105379063},{"hugoGeneSymbol":"LOC105379064","entrezGeneId":105379064},{"hugoGeneSymbol":"LOC105379065","entrezGeneId":105379065},{"hugoGeneSymbol":"LOC105379066","entrezGeneId":105379066},{"hugoGeneSymbol":"LOC105379070","entrezGeneId":105379070},{"hugoGeneSymbol":"LOC105379073","entrezGeneId":105379073},{"hugoGeneSymbol":"LOC105379074","entrezGeneId":105379074},{"hugoGeneSymbol":"LOC105379077","entrezGeneId":105379077},{"hugoGeneSymbol":"LOC105379078","entrezGeneId":105379078},{"hugoGeneSymbol":"LOC105379080","entrezGeneId":105379080},{"hugoGeneSymbol":"LOC105379082","entrezGeneId":105379082},{"hugoGeneSymbol":"LOC105379083","entrezGeneId":105379083},{"hugoGeneSymbol":"LOC105379085","entrezGeneId":105379085},{"hugoGeneSymbol":"LOC105379086","entrezGeneId":105379086},{"hugoGeneSymbol":"LOC105379087","entrezGeneId":105379087},{"hugoGeneSymbol":"LOC105379089","entrezGeneId":105379089},{"hugoGeneSymbol":"LOC105379090","entrezGeneId":105379090},{"hugoGeneSymbol":"LOC105379091","entrezGeneId":105379091},{"hugoGeneSymbol":"LOC105379094","entrezGeneId":105379094},{"hugoGeneSymbol":"LOC105379096","entrezGeneId":105379096},{"hugoGeneSymbol":"LOC105379099","entrezGeneId":105379099},{"hugoGeneSymbol":"LOC105379100","entrezGeneId":105379100},{"hugoGeneSymbol":"LOC105379101","entrezGeneId":105379101},{"hugoGeneSymbol":"LOC105379102","entrezGeneId":105379102},{"hugoGeneSymbol":"LOC105379104","entrezGeneId":105379104},{"hugoGeneSymbol":"LOC105379105","entrezGeneId":105379105},{"hugoGeneSymbol":"LOC105379107","entrezGeneId":105379107},{"hugoGeneSymbol":"LOC105379109","entrezGeneId":105379109},{"hugoGeneSymbol":"LOC105379110","entrezGeneId":105379110},{"hugoGeneSymbol":"LOC105379111","entrezGeneId":105379111},{"hugoGeneSymbol":"LOC105379114","entrezGeneId":105379114},{"hugoGeneSymbol":"LOC105379117","entrezGeneId":105379117},{"hugoGeneSymbol":"LOC105379118","entrezGeneId":105379118},{"hugoGeneSymbol":"LOC105379119","entrezGeneId":105379119},{"hugoGeneSymbol":"LOC105379121","entrezGeneId":105379121},{"hugoGeneSymbol":"LOC105379122","entrezGeneId":105379122},{"hugoGeneSymbol":"LOC105379123","entrezGeneId":105379123},{"hugoGeneSymbol":"LOC105379126","entrezGeneId":105379126},{"hugoGeneSymbol":"LOC105379127","entrezGeneId":105379127},{"hugoGeneSymbol":"LOC105379129","entrezGeneId":105379129},{"hugoGeneSymbol":"LOC105379130","entrezGeneId":105379130},{"hugoGeneSymbol":"LOC105379133","entrezGeneId":105379133},{"hugoGeneSymbol":"LOC105379134","entrezGeneId":105379134},{"hugoGeneSymbol":"LOC105379135","entrezGeneId":105379135},{"hugoGeneSymbol":"LOC105379136","entrezGeneId":105379136},{"hugoGeneSymbol":"LOC105379137","entrezGeneId":105379137},{"hugoGeneSymbol":"LOC105379138","entrezGeneId":105379138},{"hugoGeneSymbol":"LOC105379139","entrezGeneId":105379139},{"hugoGeneSymbol":"LOC105379143","entrezGeneId":105379143},{"hugoGeneSymbol":"LOC105379144","entrezGeneId":105379144},{"hugoGeneSymbol":"LOC105379147","entrezGeneId":105379147},{"hugoGeneSymbol":"LOC105379148","entrezGeneId":105379148},{"hugoGeneSymbol":"LOC105379149","entrezGeneId":105379149},{"hugoGeneSymbol":"LOC105379150","entrezGeneId":105379150},{"hugoGeneSymbol":"LOC105379151","entrezGeneId":105379151},{"hugoGeneSymbol":"LOC105379152","entrezGeneId":105379152},{"hugoGeneSymbol":"LOC105379154","entrezGeneId":105379154},{"hugoGeneSymbol":"LOC105379155","entrezGeneId":105379155},{"hugoGeneSymbol":"LOC105379156","entrezGeneId":105379156},{"hugoGeneSymbol":"LOC105379157","entrezGeneId":105379157},{"hugoGeneSymbol":"LOC105379158","entrezGeneId":105379158},{"hugoGeneSymbol":"LOC105379162","entrezGeneId":105379162},{"hugoGeneSymbol":"LOC105379163","entrezGeneId":105379163},{"hugoGeneSymbol":"LOC105379164","entrezGeneId":105379164},{"hugoGeneSymbol":"LOC105379167","entrezGeneId":105379167},{"hugoGeneSymbol":"LOC105379168","entrezGeneId":105379168},{"hugoGeneSymbol":"LOC105379169","entrezGeneId":105379169},{"hugoGeneSymbol":"LOC105379170","entrezGeneId":105379170},{"hugoGeneSymbol":"LOC105379171","entrezGeneId":105379171},{"hugoGeneSymbol":"LOC105379172","entrezGeneId":105379172},{"hugoGeneSymbol":"LOC105379173","entrezGeneId":105379173},{"hugoGeneSymbol":"LOC105379174","entrezGeneId":105379174},{"hugoGeneSymbol":"LOC105379175","entrezGeneId":105379175},{"hugoGeneSymbol":"LOC105379176","entrezGeneId":105379176},{"hugoGeneSymbol":"LOC105379177","entrezGeneId":105379177},{"hugoGeneSymbol":"LOC105379178","entrezGeneId":105379178},{"hugoGeneSymbol":"LOC105379179","entrezGeneId":105379179},{"hugoGeneSymbol":"LOC105379182","entrezGeneId":105379182},{"hugoGeneSymbol":"LOC105379183","entrezGeneId":105379183},{"hugoGeneSymbol":"LOC105379185","entrezGeneId":105379185},{"hugoGeneSymbol":"LOC105379188","entrezGeneId":105379188},{"hugoGeneSymbol":"LOC105379189","entrezGeneId":105379189},{"hugoGeneSymbol":"LOC105379192","entrezGeneId":105379192},{"hugoGeneSymbol":"LOC105379193","entrezGeneId":105379193},{"hugoGeneSymbol":"LOC105379194","entrezGeneId":105379194},{"hugoGeneSymbol":"LOC105379195","entrezGeneId":105379195},{"hugoGeneSymbol":"LOC105379196","entrezGeneId":105379196},{"hugoGeneSymbol":"LOC105379198","entrezGeneId":105379198},{"hugoGeneSymbol":"LOC105379199","entrezGeneId":105379199},{"hugoGeneSymbol":"LOC105379203","entrezGeneId":105379203},{"hugoGeneSymbol":"LOC105379205","entrezGeneId":105379205},{"hugoGeneSymbol":"LOC105379207","entrezGeneId":105379207},{"hugoGeneSymbol":"LOC105379208","entrezGeneId":105379208},{"hugoGeneSymbol":"LOC105379215","entrezGeneId":105379215},{"hugoGeneSymbol":"LOC105379216","entrezGeneId":105379216},{"hugoGeneSymbol":"LOC105379220","entrezGeneId":105379220},{"hugoGeneSymbol":"LOC105379222","entrezGeneId":105379222},{"hugoGeneSymbol":"LOC105379224","entrezGeneId":105379224},{"hugoGeneSymbol":"LOC105379225","entrezGeneId":105379225},{"hugoGeneSymbol":"LOC105379227","entrezGeneId":105379227},{"hugoGeneSymbol":"LOC105379228","entrezGeneId":105379228},{"hugoGeneSymbol":"LOC105379230","entrezGeneId":105379230},{"hugoGeneSymbol":"LOC105379231","entrezGeneId":105379231},{"hugoGeneSymbol":"LOC105379234","entrezGeneId":105379234},{"hugoGeneSymbol":"LOC105379235","entrezGeneId":105379235},{"hugoGeneSymbol":"LOC105379237","entrezGeneId":105379237},{"hugoGeneSymbol":"LOC105379241","entrezGeneId":105379241},{"hugoGeneSymbol":"LOC105379242","entrezGeneId":105379242},{"hugoGeneSymbol":"LOC105379243","entrezGeneId":105379243},{"hugoGeneSymbol":"LOC105379244","entrezGeneId":105379244},{"hugoGeneSymbol":"LOC105379245","entrezGeneId":105379245},{"hugoGeneSymbol":"LOC105379246","entrezGeneId":105379246},{"hugoGeneSymbol":"LOC105379249","entrezGeneId":105379249},{"hugoGeneSymbol":"LOC105379250","entrezGeneId":105379250},{"hugoGeneSymbol":"LOC105379251","entrezGeneId":105379251},{"hugoGeneSymbol":"LOC105379252","entrezGeneId":105379252},{"hugoGeneSymbol":"LOC105379255","entrezGeneId":105379255},{"hugoGeneSymbol":"LOC105379257","entrezGeneId":105379257},{"hugoGeneSymbol":"LOC105379263","entrezGeneId":105379263},{"hugoGeneSymbol":"LOC105379264","entrezGeneId":105379264},{"hugoGeneSymbol":"LOC105379265","entrezGeneId":105379265},{"hugoGeneSymbol":"LOC105379266","entrezGeneId":105379266},{"hugoGeneSymbol":"LOC105379267","entrezGeneId":105379267},{"hugoGeneSymbol":"LOC105379271","entrezGeneId":105379271},{"hugoGeneSymbol":"LOC105379272","entrezGeneId":105379272},{"hugoGeneSymbol":"LOC105379273","entrezGeneId":105379273},{"hugoGeneSymbol":"LOC105379274","entrezGeneId":105379274},{"hugoGeneSymbol":"LOC105379275","entrezGeneId":105379275},{"hugoGeneSymbol":"LOC105379278","entrezGeneId":105379278},{"hugoGeneSymbol":"LOC105379279","entrezGeneId":105379279},{"hugoGeneSymbol":"LOC105379280","entrezGeneId":105379280},{"hugoGeneSymbol":"LOC105379281","entrezGeneId":105379281},{"hugoGeneSymbol":"LOC105379282","entrezGeneId":105379282},{"hugoGeneSymbol":"LOC105379283","entrezGeneId":105379283},{"hugoGeneSymbol":"LOC105379289","entrezGeneId":105379289},{"hugoGeneSymbol":"LOC105379292","entrezGeneId":105379292},{"hugoGeneSymbol":"LOC105379297","entrezGeneId":105379297},{"hugoGeneSymbol":"LOC105379300","entrezGeneId":105379300},{"hugoGeneSymbol":"LOC105379301","entrezGeneId":105379301},{"hugoGeneSymbol":"LOC105379303","entrezGeneId":105379303},{"hugoGeneSymbol":"LOC105379306","entrezGeneId":105379306},{"hugoGeneSymbol":"LOC105379308","entrezGeneId":105379308},{"hugoGeneSymbol":"LOC105379309","entrezGeneId":105379309},{"hugoGeneSymbol":"LOC105379310","entrezGeneId":105379310},{"hugoGeneSymbol":"LOC105379311","entrezGeneId":105379311},{"hugoGeneSymbol":"LOC105379312","entrezGeneId":105379312},{"hugoGeneSymbol":"LOC105379314","entrezGeneId":105379314},{"hugoGeneSymbol":"LOC105379315","entrezGeneId":105379315},{"hugoGeneSymbol":"LOC105379316","entrezGeneId":105379316},{"hugoGeneSymbol":"LOC105379318","entrezGeneId":105379318},{"hugoGeneSymbol":"LOC105379321","entrezGeneId":105379321},{"hugoGeneSymbol":"LOC105379322","entrezGeneId":105379322},{"hugoGeneSymbol":"LOC105379325","entrezGeneId":105379325},{"hugoGeneSymbol":"LOC105379326","entrezGeneId":105379326},{"hugoGeneSymbol":"LOC105379327","entrezGeneId":105379327},{"hugoGeneSymbol":"LOC105379328","entrezGeneId":105379328},{"hugoGeneSymbol":"LOC105379329","entrezGeneId":105379329},{"hugoGeneSymbol":"LOC105379330","entrezGeneId":105379330},{"hugoGeneSymbol":"LOC105379331","entrezGeneId":105379331},{"hugoGeneSymbol":"LOC105379332","entrezGeneId":105379332},{"hugoGeneSymbol":"LOC105379333","entrezGeneId":105379333},{"hugoGeneSymbol":"LOC105379335","entrezGeneId":105379335},{"hugoGeneSymbol":"LOC105379336","entrezGeneId":105379336},{"hugoGeneSymbol":"LOC105379337","entrezGeneId":105379337},{"hugoGeneSymbol":"LOC105379339","entrezGeneId":105379339},{"hugoGeneSymbol":"LOC105379340","entrezGeneId":105379340},{"hugoGeneSymbol":"LOC105379342","entrezGeneId":105379342},{"hugoGeneSymbol":"LOC105379343","entrezGeneId":105379343},{"hugoGeneSymbol":"LOC105379346","entrezGeneId":105379346},{"hugoGeneSymbol":"LOC105379349","entrezGeneId":105379349},{"hugoGeneSymbol":"LOC105379350","entrezGeneId":105379350},{"hugoGeneSymbol":"LOC105379351","entrezGeneId":105379351},{"hugoGeneSymbol":"LOC105379352","entrezGeneId":105379352},{"hugoGeneSymbol":"LOC105379354","entrezGeneId":105379354},{"hugoGeneSymbol":"LOC105379355","entrezGeneId":105379355},{"hugoGeneSymbol":"LOC105379356","entrezGeneId":105379356},{"hugoGeneSymbol":"LOC105379357","entrezGeneId":105379357},{"hugoGeneSymbol":"LOC105379358","entrezGeneId":105379358},{"hugoGeneSymbol":"LOC105379360","entrezGeneId":105379360},{"hugoGeneSymbol":"LOC105379361","entrezGeneId":105379361},{"hugoGeneSymbol":"LOC105379362","entrezGeneId":105379362},{"hugoGeneSymbol":"LOC105379363","entrezGeneId":105379363},{"hugoGeneSymbol":"LOC105379364","entrezGeneId":105379364},{"hugoGeneSymbol":"LOC105379365","entrezGeneId":105379365},{"hugoGeneSymbol":"LOC105379366","entrezGeneId":105379366},{"hugoGeneSymbol":"LOC105379368","entrezGeneId":105379368},{"hugoGeneSymbol":"LOC105379369","entrezGeneId":105379369},{"hugoGeneSymbol":"LOC105379370","entrezGeneId":105379370},{"hugoGeneSymbol":"LOC105379371","entrezGeneId":105379371},{"hugoGeneSymbol":"LOC105379374","entrezGeneId":105379374},{"hugoGeneSymbol":"LOC105379375","entrezGeneId":105379375},{"hugoGeneSymbol":"LOC105379376","entrezGeneId":105379376},{"hugoGeneSymbol":"LOC105379377","entrezGeneId":105379377},{"hugoGeneSymbol":"LOC105379378","entrezGeneId":105379378},{"hugoGeneSymbol":"LOC105379379","entrezGeneId":105379379},{"hugoGeneSymbol":"LOC105379380","entrezGeneId":105379380},{"hugoGeneSymbol":"LOC105379381","entrezGeneId":105379381},{"hugoGeneSymbol":"LOC105379382","entrezGeneId":105379382},{"hugoGeneSymbol":"LOC105379383","entrezGeneId":105379383},{"hugoGeneSymbol":"LOC105379384","entrezGeneId":105379384},{"hugoGeneSymbol":"LOC105379385","entrezGeneId":105379385},{"hugoGeneSymbol":"LOC105379386","entrezGeneId":105379386},{"hugoGeneSymbol":"LOC105379387","entrezGeneId":105379387},{"hugoGeneSymbol":"LOC105379388","entrezGeneId":105379388},{"hugoGeneSymbol":"LOC105379389","entrezGeneId":105379389},{"hugoGeneSymbol":"LOC105379390","entrezGeneId":105379390},{"hugoGeneSymbol":"LOC105379391","entrezGeneId":105379391},{"hugoGeneSymbol":"LOC105379392","entrezGeneId":105379392},{"hugoGeneSymbol":"LOC105379393","entrezGeneId":105379393},{"hugoGeneSymbol":"LOC105379395","entrezGeneId":105379395},{"hugoGeneSymbol":"LOC105379396","entrezGeneId":105379396},{"hugoGeneSymbol":"LOC105379397","entrezGeneId":105379397},{"hugoGeneSymbol":"LOC105379403","entrezGeneId":105379403},{"hugoGeneSymbol":"LOC105379404","entrezGeneId":105379404},{"hugoGeneSymbol":"LOC105379406","entrezGeneId":105379406},{"hugoGeneSymbol":"LOC105379407","entrezGeneId":105379407},{"hugoGeneSymbol":"LOC105379409","entrezGeneId":105379409},{"hugoGeneSymbol":"LOC105379412","entrezGeneId":105379412},{"hugoGeneSymbol":"LOC105379413","entrezGeneId":105379413},{"hugoGeneSymbol":"LOC105379414","entrezGeneId":105379414},{"hugoGeneSymbol":"LOC105379417","entrezGeneId":105379417},{"hugoGeneSymbol":"LOC105379418","entrezGeneId":105379418},{"hugoGeneSymbol":"LOC105379420","entrezGeneId":105379420},{"hugoGeneSymbol":"LOC105379426","entrezGeneId":105379426},{"hugoGeneSymbol":"LOC105379428","entrezGeneId":105379428},{"hugoGeneSymbol":"LOC105379434","entrezGeneId":105379434},{"hugoGeneSymbol":"LOC105379435","entrezGeneId":105379435},{"hugoGeneSymbol":"LOC105379437","entrezGeneId":105379437},{"hugoGeneSymbol":"LOC105379438","entrezGeneId":105379438},{"hugoGeneSymbol":"LOC105379439","entrezGeneId":105379439},{"hugoGeneSymbol":"LOC105379442","entrezGeneId":105379442},{"hugoGeneSymbol":"LOC105379443","entrezGeneId":105379443},{"hugoGeneSymbol":"LOC105379444","entrezGeneId":105379444},{"hugoGeneSymbol":"LOC105379445","entrezGeneId":105379445},{"hugoGeneSymbol":"LOC105379446","entrezGeneId":105379446},{"hugoGeneSymbol":"LOC105379447","entrezGeneId":105379447},{"hugoGeneSymbol":"LOC105379448","entrezGeneId":105379448},{"hugoGeneSymbol":"LOC105379450","entrezGeneId":105379450},{"hugoGeneSymbol":"LOC105379451","entrezGeneId":105379451},{"hugoGeneSymbol":"LOC105379452","entrezGeneId":105379452},{"hugoGeneSymbol":"LOC105379453","entrezGeneId":105379453},{"hugoGeneSymbol":"LOC105379457","entrezGeneId":105379457},{"hugoGeneSymbol":"LOC105379460","entrezGeneId":105379460},{"hugoGeneSymbol":"LOC105379461","entrezGeneId":105379461},{"hugoGeneSymbol":"LOC105379464","entrezGeneId":105379464},{"hugoGeneSymbol":"LOC105379466","entrezGeneId":105379466},{"hugoGeneSymbol":"LOC105379473","entrezGeneId":105379473},{"hugoGeneSymbol":"LOC105379474","entrezGeneId":105379474},{"hugoGeneSymbol":"LOC105379475","entrezGeneId":105379475},{"hugoGeneSymbol":"LOC105379476","entrezGeneId":105379476},{"hugoGeneSymbol":"LOC105379477","entrezGeneId":105379477},{"hugoGeneSymbol":"LOC105379481","entrezGeneId":105379481},{"hugoGeneSymbol":"LOC105379482","entrezGeneId":105379482},{"hugoGeneSymbol":"LOC105379484","entrezGeneId":105379484},{"hugoGeneSymbol":"LOC105379488","entrezGeneId":105379488},{"hugoGeneSymbol":"LOC105379489","entrezGeneId":105379489},{"hugoGeneSymbol":"LOC105379490","entrezGeneId":105379490},{"hugoGeneSymbol":"LOC105379491","entrezGeneId":105379491},{"hugoGeneSymbol":"LOC105379497","entrezGeneId":105379497},{"hugoGeneSymbol":"LOC105379499","entrezGeneId":105379499},{"hugoGeneSymbol":"LOC105379501","entrezGeneId":105379501},{"hugoGeneSymbol":"LOC105379502","entrezGeneId":105379502},{"hugoGeneSymbol":"LOC105379503","entrezGeneId":105379503},{"hugoGeneSymbol":"LOC105379504","entrezGeneId":105379504},{"hugoGeneSymbol":"LOC105379505","entrezGeneId":105379505},{"hugoGeneSymbol":"LOC105379506","entrezGeneId":105379506},{"hugoGeneSymbol":"LOC105379507","entrezGeneId":105379507},{"hugoGeneSymbol":"LOC105379508","entrezGeneId":105379508},{"hugoGeneSymbol":"LOC105379511","entrezGeneId":105379511},{"hugoGeneSymbol":"LOC105379513","entrezGeneId":105379513},{"hugoGeneSymbol":"LOC105379514","entrezGeneId":105379514},{"hugoGeneSymbol":"LOC105379516","entrezGeneId":105379516},{"hugoGeneSymbol":"LOC105379518","entrezGeneId":105379518},{"hugoGeneSymbol":"LOC105379521","entrezGeneId":105379521},{"hugoGeneSymbol":"LOC105379522","entrezGeneId":105379522},{"hugoGeneSymbol":"LOC105379523","entrezGeneId":105379523},{"hugoGeneSymbol":"LOC105379524","entrezGeneId":105379524},{"hugoGeneSymbol":"LOC105379525","entrezGeneId":105379525},{"hugoGeneSymbol":"LOC105379527","entrezGeneId":105379527},{"hugoGeneSymbol":"LOC105379528","entrezGeneId":105379528},{"hugoGeneSymbol":"LOC105379529","entrezGeneId":105379529},{"hugoGeneSymbol":"LOC105379533","entrezGeneId":105379533},{"hugoGeneSymbol":"LOC105379535","entrezGeneId":105379535},{"hugoGeneSymbol":"LOC105379537","entrezGeneId":105379537},{"hugoGeneSymbol":"LOC105379539","entrezGeneId":105379539},{"hugoGeneSymbol":"LOC105379540","entrezGeneId":105379540},{"hugoGeneSymbol":"LOC105379544","entrezGeneId":105379544},{"hugoGeneSymbol":"LOC105379545","entrezGeneId":105379545},{"hugoGeneSymbol":"LOC105379547","entrezGeneId":105379547},{"hugoGeneSymbol":"LOC105379548","entrezGeneId":105379548},{"hugoGeneSymbol":"LOC105379549","entrezGeneId":105379549},{"hugoGeneSymbol":"LOC105379550","entrezGeneId":105379550},{"hugoGeneSymbol":"LOC105379551","entrezGeneId":105379551},{"hugoGeneSymbol":"LOC105379554","entrezGeneId":105379554},{"hugoGeneSymbol":"LOC105379555","entrezGeneId":105379555},{"hugoGeneSymbol":"LOC105379556","entrezGeneId":105379556},{"hugoGeneSymbol":"LOC105379557","entrezGeneId":105379557},{"hugoGeneSymbol":"LOC105379561","entrezGeneId":105379561},{"hugoGeneSymbol":"LOC105379562","entrezGeneId":105379562},{"hugoGeneSymbol":"LOC105379563","entrezGeneId":105379563},{"hugoGeneSymbol":"LOC105379564","entrezGeneId":105379564},{"hugoGeneSymbol":"LOC105379565","entrezGeneId":105379565},{"hugoGeneSymbol":"LOC105379566","entrezGeneId":105379566},{"hugoGeneSymbol":"LOC105379574","entrezGeneId":105379574},{"hugoGeneSymbol":"LOC105379575","entrezGeneId":105379575},{"hugoGeneSymbol":"LOC105379576","entrezGeneId":105379576},{"hugoGeneSymbol":"LOC105379578","entrezGeneId":105379578},{"hugoGeneSymbol":"LOC105379580","entrezGeneId":105379580},{"hugoGeneSymbol":"LOC105379583","entrezGeneId":105379583},{"hugoGeneSymbol":"LOC105379585","entrezGeneId":105379585},{"hugoGeneSymbol":"LOC105379586","entrezGeneId":105379586},{"hugoGeneSymbol":"LOC105379589","entrezGeneId":105379589},{"hugoGeneSymbol":"LOC105379593","entrezGeneId":105379593},{"hugoGeneSymbol":"LOC105379597","entrezGeneId":105379597},{"hugoGeneSymbol":"LOC105379599","entrezGeneId":105379599},{"hugoGeneSymbol":"LOC105379600","entrezGeneId":105379600},{"hugoGeneSymbol":"LOC105379601","entrezGeneId":105379601},{"hugoGeneSymbol":"LOC105379602","entrezGeneId":105379602},{"hugoGeneSymbol":"LOC105379603","entrezGeneId":105379603},{"hugoGeneSymbol":"LOC105379604","entrezGeneId":105379604},{"hugoGeneSymbol":"LOC105379605","entrezGeneId":105379605},{"hugoGeneSymbol":"LOC105379611","entrezGeneId":105379611},{"hugoGeneSymbol":"LOC105379613","entrezGeneId":105379613},{"hugoGeneSymbol":"LOC105379618","entrezGeneId":105379618},{"hugoGeneSymbol":"LOC105379623","entrezGeneId":105379623},{"hugoGeneSymbol":"LOC105379626","entrezGeneId":105379626},{"hugoGeneSymbol":"LOC105379627","entrezGeneId":105379627},{"hugoGeneSymbol":"LOC105379633","entrezGeneId":105379633},{"hugoGeneSymbol":"LOC105379634","entrezGeneId":105379634},{"hugoGeneSymbol":"LOC105379635","entrezGeneId":105379635},{"hugoGeneSymbol":"LOC105379638","entrezGeneId":105379638},{"hugoGeneSymbol":"LOC105379640","entrezGeneId":105379640},{"hugoGeneSymbol":"LOC105379641","entrezGeneId":105379641},{"hugoGeneSymbol":"LOC105379655","entrezGeneId":105379655},{"hugoGeneSymbol":"LOC105379656","entrezGeneId":105379656},{"hugoGeneSymbol":"LOC105379657","entrezGeneId":105379657},{"hugoGeneSymbol":"LOC105379663","entrezGeneId":105379663},{"hugoGeneSymbol":"LOC105379664","entrezGeneId":105379664},{"hugoGeneSymbol":"LOC105379675","entrezGeneId":105379675},{"hugoGeneSymbol":"LOC105379712","entrezGeneId":105379712},{"hugoGeneSymbol":"LOC105379719","entrezGeneId":105379719},{"hugoGeneSymbol":"LOC105379720","entrezGeneId":105379720},{"hugoGeneSymbol":"LOC105379725","entrezGeneId":105379725},{"hugoGeneSymbol":"LOC105379743","entrezGeneId":105379743},{"hugoGeneSymbol":"LOC105379749","entrezGeneId":105379749},{"hugoGeneSymbol":"LOC105379752","entrezGeneId":105379752},{"hugoGeneSymbol":"LOC105379765","entrezGeneId":105379765},{"hugoGeneSymbol":"LOC105379771","entrezGeneId":105379771},{"hugoGeneSymbol":"LOC105379772","entrezGeneId":105379772},{"hugoGeneSymbol":"LOC105379778","entrezGeneId":105379778},{"hugoGeneSymbol":"LOC105379783","entrezGeneId":105379783},{"hugoGeneSymbol":"LOC105379807","entrezGeneId":105379807},{"hugoGeneSymbol":"LOC105379814","entrezGeneId":105379814},{"hugoGeneSymbol":"LOC105379818","entrezGeneId":105379818},{"hugoGeneSymbol":"LOC105379825","entrezGeneId":105379825},{"hugoGeneSymbol":"LOC105379827","entrezGeneId":105379827},{"hugoGeneSymbol":"LOC105379829","entrezGeneId":105379829},{"hugoGeneSymbol":"LOC105379839","entrezGeneId":105379839},{"hugoGeneSymbol":"LOC105379841","entrezGeneId":105379841},{"hugoGeneSymbol":"LOC105379850","entrezGeneId":105379850},{"hugoGeneSymbol":"LOC105379854","entrezGeneId":105379854},{"hugoGeneSymbol":"LOC105379857","entrezGeneId":105379857},{"hugoGeneSymbol":"LOC105379861","entrezGeneId":105379861},{"hugoGeneSymbol":"LOC105379869","entrezGeneId":105379869},{"hugoGeneSymbol":"LOC105379880","entrezGeneId":105379880},{"hugoGeneSymbol":"LOC105379882","entrezGeneId":105379882},{"hugoGeneSymbol":"LOC105447645","entrezGeneId":105447645},{"hugoGeneSymbol":"LOC105616981","entrezGeneId":105616981},{"hugoGeneSymbol":"LOC105747689","entrezGeneId":105747689},{"hugoGeneSymbol":"LOC105755953","entrezGeneId":105755953},{"hugoGeneSymbol":"LOC105943583","entrezGeneId":105943583},{"hugoGeneSymbol":"LOC105943586","entrezGeneId":105943586},{"hugoGeneSymbol":"LOC105943587","entrezGeneId":105943587},{"hugoGeneSymbol":"LOC105980003","entrezGeneId":105980003},{"hugoGeneSymbol":"LOC105980005","entrezGeneId":105980005},{"hugoGeneSymbol":"LOC105980006","entrezGeneId":105980006},{"hugoGeneSymbol":"LOC105980008","entrezGeneId":105980008},{"hugoGeneSymbol":"LOC105980073","entrezGeneId":105980073},{"hugoGeneSymbol":"LOC105980078","entrezGeneId":105980078},{"hugoGeneSymbol":"LOC106007485","entrezGeneId":106007485},{"hugoGeneSymbol":"LOC106007490","entrezGeneId":106007490},{"hugoGeneSymbol":"LOC106007491","entrezGeneId":106007491},{"hugoGeneSymbol":"LOC106007493","entrezGeneId":106007493},{"hugoGeneSymbol":"LOC106014249","entrezGeneId":106014249},{"hugoGeneSymbol":"LOC106020709","entrezGeneId":106020709},{"hugoGeneSymbol":"LOC106020710","entrezGeneId":106020710},{"hugoGeneSymbol":"LOC106020711","entrezGeneId":106020711},{"hugoGeneSymbol":"LOC106020712","entrezGeneId":106020712},{"hugoGeneSymbol":"LOC106029240","entrezGeneId":106029240},{"hugoGeneSymbol":"LOC106029241","entrezGeneId":106029241},{"hugoGeneSymbol":"LOC106029242","entrezGeneId":106029242},{"hugoGeneSymbol":"LOC106029311","entrezGeneId":106029311},{"hugoGeneSymbol":"LOC106029312","entrezGeneId":106029312},{"hugoGeneSymbol":"LOC106029313","entrezGeneId":106029313},{"hugoGeneSymbol":"LOC106049962","entrezGeneId":106049962},{"hugoGeneSymbol":"LOC106050037","entrezGeneId":106050037},{"hugoGeneSymbol":"LOC106050102","entrezGeneId":106050102},{"hugoGeneSymbol":"LOC106050103","entrezGeneId":106050103},{"hugoGeneSymbol":"LOC106096416","entrezGeneId":106096416},{"hugoGeneSymbol":"LOC106099062","entrezGeneId":106099062},{"hugoGeneSymbol":"LOC106099063","entrezGeneId":106099063},{"hugoGeneSymbol":"LOC106099064","entrezGeneId":106099064},{"hugoGeneSymbol":"LOC106099065","entrezGeneId":106099065},{"hugoGeneSymbol":"LOC106113036","entrezGeneId":106113036},{"hugoGeneSymbol":"LOC106113037","entrezGeneId":106113037},{"hugoGeneSymbol":"LOC106128902","entrezGeneId":106128902},{"hugoGeneSymbol":"LOC106128905","entrezGeneId":106128905},{"hugoGeneSymbol":"LOC106128906","entrezGeneId":106128906},{"hugoGeneSymbol":"LOC106144556","entrezGeneId":106144556},{"hugoGeneSymbol":"LOC106144557","entrezGeneId":106144557},{"hugoGeneSymbol":"LOC106144558","entrezGeneId":106144558},{"hugoGeneSymbol":"LOC106144609","entrezGeneId":106144609},{"hugoGeneSymbol":"LOC106144610","entrezGeneId":106144610},{"hugoGeneSymbol":"LOC106146143","entrezGeneId":106146143},{"hugoGeneSymbol":"LOC106146144","entrezGeneId":106146144},{"hugoGeneSymbol":"LOC106146150","entrezGeneId":106146150},{"hugoGeneSymbol":"LOC106146151","entrezGeneId":106146151},{"hugoGeneSymbol":"LOC106146152","entrezGeneId":106146152},{"hugoGeneSymbol":"LOC106501712","entrezGeneId":106501712},{"hugoGeneSymbol":"LOC106501713","entrezGeneId":106501713},{"hugoGeneSymbol":"LOC106560211","entrezGeneId":106560211},{"hugoGeneSymbol":"LOC106627981","entrezGeneId":106627981},{"hugoGeneSymbol":"LOC106627982","entrezGeneId":106627982},{"hugoGeneSymbol":"LOC106660606","entrezGeneId":106660606},{"hugoGeneSymbol":"LOC106660625","entrezGeneId":106660625},{"hugoGeneSymbol":"LOC106677019","entrezGeneId":106677019},{"hugoGeneSymbol":"LOC106694315","entrezGeneId":106694315},{"hugoGeneSymbol":"LOC106694316","entrezGeneId":106694316},{"hugoGeneSymbol":"LOC106699567","entrezGeneId":106699567},{"hugoGeneSymbol":"LOC106699570","entrezGeneId":106699570},{"hugoGeneSymbol":"LOC106707172","entrezGeneId":106707172},{"hugoGeneSymbol":"LOC106707173","entrezGeneId":106707173},{"hugoGeneSymbol":"LOC106707174","entrezGeneId":106707174},{"hugoGeneSymbol":"LOC106721785","entrezGeneId":106721785},{"hugoGeneSymbol":"LOC106728414","entrezGeneId":106728414},{"hugoGeneSymbol":"LOC106728418","entrezGeneId":106728418},{"hugoGeneSymbol":"LOC106736464","entrezGeneId":106736464},{"hugoGeneSymbol":"LOC106736465","entrezGeneId":106736465},{"hugoGeneSymbol":"LOC106736468","entrezGeneId":106736468},{"hugoGeneSymbol":"LOC106736469","entrezGeneId":106736469},{"hugoGeneSymbol":"LOC106736470","entrezGeneId":106736470},{"hugoGeneSymbol":"LOC106736476","entrezGeneId":106736476},{"hugoGeneSymbol":"LOC106736477","entrezGeneId":106736477},{"hugoGeneSymbol":"LOC106736480","entrezGeneId":106736480},{"hugoGeneSymbol":"LOC106736481","entrezGeneId":106736481},{"hugoGeneSymbol":"LOC106736614","entrezGeneId":106736614},{"hugoGeneSymbol":"LOC106780800","entrezGeneId":106780800},{"hugoGeneSymbol":"LOC106780803","entrezGeneId":106780803},{"hugoGeneSymbol":"LOC106780804","entrezGeneId":106780804},{"hugoGeneSymbol":"LOC106780824","entrezGeneId":106780824},{"hugoGeneSymbol":"LOC106780825","entrezGeneId":106780825},{"hugoGeneSymbol":"LOC106783492","entrezGeneId":106783492},{"hugoGeneSymbol":"LOC106783493","entrezGeneId":106783493},{"hugoGeneSymbol":"LOC106783494","entrezGeneId":106783494},{"hugoGeneSymbol":"LOC106783495","entrezGeneId":106783495},{"hugoGeneSymbol":"LOC106783496","entrezGeneId":106783496},{"hugoGeneSymbol":"LOC106783497","entrezGeneId":106783497},{"hugoGeneSymbol":"LOC106783498","entrezGeneId":106783498},{"hugoGeneSymbol":"LOC106783500","entrezGeneId":106783500},{"hugoGeneSymbol":"LOC106783501","entrezGeneId":106783501},{"hugoGeneSymbol":"LOC106783502","entrezGeneId":106783502},{"hugoGeneSymbol":"LOC106783503","entrezGeneId":106783503},{"hugoGeneSymbol":"LOC106783504","entrezGeneId":106783504},{"hugoGeneSymbol":"LOC106783505","entrezGeneId":106783505},{"hugoGeneSymbol":"LOC106783506","entrezGeneId":106783506},{"hugoGeneSymbol":"LOC106783507","entrezGeneId":106783507},{"hugoGeneSymbol":"LOC106783508","entrezGeneId":106783508},{"hugoGeneSymbol":"LOC106783509","entrezGeneId":106783509},{"hugoGeneSymbol":"LOC106783574","entrezGeneId":106783574},{"hugoGeneSymbol":"LOC106783575","entrezGeneId":106783575},{"hugoGeneSymbol":"LOC106783576","entrezGeneId":106783576},{"hugoGeneSymbol":"LOC106794091","entrezGeneId":106794091},{"hugoGeneSymbol":"LOC106794092","entrezGeneId":106794092},{"hugoGeneSymbol":"LOC106799832","entrezGeneId":106799832},{"hugoGeneSymbol":"LOC106799833","entrezGeneId":106799833},{"hugoGeneSymbol":"LOC106799834","entrezGeneId":106799834},{"hugoGeneSymbol":"LOC106799835","entrezGeneId":106799835},{"hugoGeneSymbol":"LOC106799836","entrezGeneId":106799836},{"hugoGeneSymbol":"LOC106799837","entrezGeneId":106799837},{"hugoGeneSymbol":"LOC106799838","entrezGeneId":106799838},{"hugoGeneSymbol":"LOC106799839","entrezGeneId":106799839},{"hugoGeneSymbol":"LOC106799840","entrezGeneId":106799840},{"hugoGeneSymbol":"LOC106799841","entrezGeneId":106799841},{"hugoGeneSymbol":"LOC106799842","entrezGeneId":106799842},{"hugoGeneSymbol":"LOC106799843","entrezGeneId":106799843},{"hugoGeneSymbol":"LOC106799844","entrezGeneId":106799844},{"hugoGeneSymbol":"LOC106799845","entrezGeneId":106799845},{"hugoGeneSymbol":"LOC106799846","entrezGeneId":106799846},{"hugoGeneSymbol":"LOC106799848","entrezGeneId":106799848},{"hugoGeneSymbol":"LOC106799849","entrezGeneId":106799849},{"hugoGeneSymbol":"LOC106799915","entrezGeneId":106799915},{"hugoGeneSymbol":"LOC106804089","entrezGeneId":106804089},{"hugoGeneSymbol":"LOC106804547","entrezGeneId":106804547},{"hugoGeneSymbol":"LOC106804612","entrezGeneId":106804612},{"hugoGeneSymbol":"LOC106804613","entrezGeneId":106804613},{"hugoGeneSymbol":"LOC106865368","entrezGeneId":106865368},{"hugoGeneSymbol":"LOC106865369","entrezGeneId":106865369},{"hugoGeneSymbol":"LOC106867047","entrezGeneId":106867047},{"hugoGeneSymbol":"LOC106903146","entrezGeneId":106903146},{"hugoGeneSymbol":"LOC106992256","entrezGeneId":106992256},{"hugoGeneSymbol":"LOC107001062","entrezGeneId":107001062},{"hugoGeneSymbol":"LOC107001063","entrezGeneId":107001063},{"hugoGeneSymbol":"LOC107032760","entrezGeneId":107032760},{"hugoGeneSymbol":"LOC107032825","entrezGeneId":107032825},{"hugoGeneSymbol":"LOC107048982","entrezGeneId":107048982},{"hugoGeneSymbol":"LOC107048984","entrezGeneId":107048984},{"hugoGeneSymbol":"LOC107057645","entrezGeneId":107057645},{"hugoGeneSymbol":"LOC107063610","entrezGeneId":107063610},{"hugoGeneSymbol":"LOC107075317","entrezGeneId":107075317},{"hugoGeneSymbol":"LOC107080552","entrezGeneId":107080552},{"hugoGeneSymbol":"LOC107080555","entrezGeneId":107080555},{"hugoGeneSymbol":"LOC107105282","entrezGeneId":107105282},{"hugoGeneSymbol":"LOC107105350","entrezGeneId":107105350},{"hugoGeneSymbol":"LOC107126281","entrezGeneId":107126281},{"hugoGeneSymbol":"LOC107126288","entrezGeneId":107126288},{"hugoGeneSymbol":"LOC107126359","entrezGeneId":107126359},{"hugoGeneSymbol":"LOC107133509","entrezGeneId":107133509},{"hugoGeneSymbol":"LOC107133510","entrezGeneId":107133510},{"hugoGeneSymbol":"LOC107133517","entrezGeneId":107133517},{"hugoGeneSymbol":"LOC107133518","entrezGeneId":107133518},{"hugoGeneSymbol":"LOC107161156","entrezGeneId":107161156},{"hugoGeneSymbol":"LOC107178920","entrezGeneId":107178920},{"hugoGeneSymbol":"LOC107181287","entrezGeneId":107181287},{"hugoGeneSymbol":"LOC107181288","entrezGeneId":107181288},{"hugoGeneSymbol":"LOC107195252","entrezGeneId":107195252},{"hugoGeneSymbol":"LOC107197952","entrezGeneId":107197952},{"hugoGeneSymbol":"LOC107198087","entrezGeneId":107198087},{"hugoGeneSymbol":"LOC107228318","entrezGeneId":107228318},{"hugoGeneSymbol":"LOC107228383","entrezGeneId":107228383},{"hugoGeneSymbol":"LOC107275221","entrezGeneId":107275221},{"hugoGeneSymbol":"LOC107275222","entrezGeneId":107275222},{"hugoGeneSymbol":"LOC107275223","entrezGeneId":107275223},{"hugoGeneSymbol":"LOC107275224","entrezGeneId":107275224},{"hugoGeneSymbol":"LOC107275225","entrezGeneId":107275225},{"hugoGeneSymbol":"LOC107275226","entrezGeneId":107275226},{"hugoGeneSymbol":"LOC107303337","entrezGeneId":107303337},{"hugoGeneSymbol":"LOC107303338","entrezGeneId":107303338},{"hugoGeneSymbol":"LOC107303339","entrezGeneId":107303339},{"hugoGeneSymbol":"LOC107303340","entrezGeneId":107303340},{"hugoGeneSymbol":"LOC107303341","entrezGeneId":107303341},{"hugoGeneSymbol":"LOC107303342","entrezGeneId":107303342},{"hugoGeneSymbol":"LOC107303343","entrezGeneId":107303343},{"hugoGeneSymbol":"LOC107305683","entrezGeneId":107305683},{"hugoGeneSymbol":"LOC107305684","entrezGeneId":107305684},{"hugoGeneSymbol":"LOC107305685","entrezGeneId":107305685},{"hugoGeneSymbol":"LOC107305686","entrezGeneId":107305686},{"hugoGeneSymbol":"LOC107325936","entrezGeneId":107325936},{"hugoGeneSymbol":"LOC107325941","entrezGeneId":107325941},{"hugoGeneSymbol":"LOC107325942","entrezGeneId":107325942},{"hugoGeneSymbol":"LOC107372315","entrezGeneId":107372315},{"hugoGeneSymbol":"LOC107403075","entrezGeneId":107403075},{"hugoGeneSymbol":"LOC107403080","entrezGeneId":107403080},{"hugoGeneSymbol":"LOC107403153","entrezGeneId":107403153},{"hugoGeneSymbol":"LOC107403164","entrezGeneId":107403164},{"hugoGeneSymbol":"LOC107403234","entrezGeneId":107403234},{"hugoGeneSymbol":"LOC107403242","entrezGeneId":107403242},{"hugoGeneSymbol":"LOC107436002","entrezGeneId":107436002},{"hugoGeneSymbol":"LOC107436008","entrezGeneId":107436008},{"hugoGeneSymbol":"LOC107457584","entrezGeneId":107457584},{"hugoGeneSymbol":"LOC107457585","entrezGeneId":107457585},{"hugoGeneSymbol":"LOC107457586","entrezGeneId":107457586},{"hugoGeneSymbol":"LOC107457587","entrezGeneId":107457587},{"hugoGeneSymbol":"LOC107457596","entrezGeneId":107457596},{"hugoGeneSymbol":"LOC107457597","entrezGeneId":107457597},{"hugoGeneSymbol":"LOC107457599","entrezGeneId":107457599},{"hugoGeneSymbol":"LOC107457601","entrezGeneId":107457601},{"hugoGeneSymbol":"LOC107457602","entrezGeneId":107457602},{"hugoGeneSymbol":"LOC107522028","entrezGeneId":107522028},{"hugoGeneSymbol":"LOC107522029","entrezGeneId":107522029},{"hugoGeneSymbol":"LOC107522030","entrezGeneId":107522030},{"hugoGeneSymbol":"LOC107522031","entrezGeneId":107522031},{"hugoGeneSymbol":"LOC107522035","entrezGeneId":107522035},{"hugoGeneSymbol":"LOC107522039","entrezGeneId":107522039},{"hugoGeneSymbol":"LOC107546745","entrezGeneId":107546745},{"hugoGeneSymbol":"LOC107546746","entrezGeneId":107546746},{"hugoGeneSymbol":"LOC107546747","entrezGeneId":107546747},{"hugoGeneSymbol":"LOC107546778","entrezGeneId":107546778},{"hugoGeneSymbol":"LOC107546780","entrezGeneId":107546780},{"hugoGeneSymbol":"LOC107548103","entrezGeneId":107548103},{"hugoGeneSymbol":"LOC107548109","entrezGeneId":107548109},{"hugoGeneSymbol":"LOC107548111","entrezGeneId":107548111},{"hugoGeneSymbol":"LOC107548112","entrezGeneId":107548112},{"hugoGeneSymbol":"LOC107648851","entrezGeneId":107648851},{"hugoGeneSymbol":"LOC107648856","entrezGeneId":107648856},{"hugoGeneSymbol":"LOC107648859","entrezGeneId":107648859},{"hugoGeneSymbol":"LOC107648863","entrezGeneId":107648863},{"hugoGeneSymbol":"LOC107648864","entrezGeneId":107648864},{"hugoGeneSymbol":"LOC107648866","entrezGeneId":107648866},{"hugoGeneSymbol":"LOC107652445","entrezGeneId":107652445},{"hugoGeneSymbol":"LOC107758904","entrezGeneId":107758904},{"hugoGeneSymbol":"LOC107832851","entrezGeneId":107832851},{"hugoGeneSymbol":"LOC107832852","entrezGeneId":107832852},{"hugoGeneSymbol":"LOC107832854","entrezGeneId":107832854},{"hugoGeneSymbol":"LOC107832855","entrezGeneId":107832855},{"hugoGeneSymbol":"LOC107838685","entrezGeneId":107838685},{"hugoGeneSymbol":"LOC107880064","entrezGeneId":107880064},{"hugoGeneSymbol":"LOC107882126","entrezGeneId":107882126},{"hugoGeneSymbol":"LOC107882127","entrezGeneId":107882127},{"hugoGeneSymbol":"LOC107882129","entrezGeneId":107882129},{"hugoGeneSymbol":"LOC107882132","entrezGeneId":107882132},{"hugoGeneSymbol":"LOC107882133","entrezGeneId":107882133},{"hugoGeneSymbol":"LOC107963947","entrezGeneId":107963947},{"hugoGeneSymbol":"LOC107963948","entrezGeneId":107963948},{"hugoGeneSymbol":"LOC107963949","entrezGeneId":107963949},{"hugoGeneSymbol":"LOC107963950","entrezGeneId":107963950},{"hugoGeneSymbol":"LOC107963951","entrezGeneId":107963951},{"hugoGeneSymbol":"LOC107963955","entrezGeneId":107963955},{"hugoGeneSymbol":"LOC107966121","entrezGeneId":107966121},{"hugoGeneSymbol":"LOC107966125","entrezGeneId":107966125},{"hugoGeneSymbol":"LOC107980434","entrezGeneId":107980434},{"hugoGeneSymbol":"LOC107980440","entrezGeneId":107980440},{"hugoGeneSymbol":"LOC107980445","entrezGeneId":107980445},{"hugoGeneSymbol":"LOC107982234","entrezGeneId":107982234},{"hugoGeneSymbol":"LOC107983947","entrezGeneId":107983947},{"hugoGeneSymbol":"LOC107983949","entrezGeneId":107983949},{"hugoGeneSymbol":"LOC107983950","entrezGeneId":107983950},{"hugoGeneSymbol":"LOC107983952","entrezGeneId":107983952},{"hugoGeneSymbol":"LOC107983958","entrezGeneId":107983958},{"hugoGeneSymbol":"LOC107983959","entrezGeneId":107983959},{"hugoGeneSymbol":"LOC107983960","entrezGeneId":107983960},{"hugoGeneSymbol":"LOC107983961","entrezGeneId":107983961},{"hugoGeneSymbol":"LOC107983962","entrezGeneId":107983962},{"hugoGeneSymbol":"LOC107983963","entrezGeneId":107983963},{"hugoGeneSymbol":"LOC107983966","entrezGeneId":107983966},{"hugoGeneSymbol":"LOC107983969","entrezGeneId":107983969},{"hugoGeneSymbol":"LOC107983971","entrezGeneId":107983971},{"hugoGeneSymbol":"LOC107983974","entrezGeneId":107983974},{"hugoGeneSymbol":"LOC107983975","entrezGeneId":107983975},{"hugoGeneSymbol":"LOC107983976","entrezGeneId":107983976},{"hugoGeneSymbol":"LOC107983979","entrezGeneId":107983979},{"hugoGeneSymbol":"LOC107983980","entrezGeneId":107983980},{"hugoGeneSymbol":"LOC107983981","entrezGeneId":107983981},{"hugoGeneSymbol":"LOC107983982","entrezGeneId":107983982},{"hugoGeneSymbol":"LOC107983983","entrezGeneId":107983983},{"hugoGeneSymbol":"LOC107983985","entrezGeneId":107983985},{"hugoGeneSymbol":"LOC107983989","entrezGeneId":107983989},{"hugoGeneSymbol":"LOC107983990","entrezGeneId":107983990},{"hugoGeneSymbol":"LOC107983991","entrezGeneId":107983991},{"hugoGeneSymbol":"LOC107983995","entrezGeneId":107983995},{"hugoGeneSymbol":"LOC107983996","entrezGeneId":107983996},{"hugoGeneSymbol":"LOC107983998","entrezGeneId":107983998},{"hugoGeneSymbol":"LOC107983999","entrezGeneId":107983999},{"hugoGeneSymbol":"LOC107984000","entrezGeneId":107984000},{"hugoGeneSymbol":"LOC107984001","entrezGeneId":107984001},{"hugoGeneSymbol":"LOC107984002","entrezGeneId":107984002},{"hugoGeneSymbol":"LOC107984003","entrezGeneId":107984003},{"hugoGeneSymbol":"LOC107984004","entrezGeneId":107984004},{"hugoGeneSymbol":"LOC107984005","entrezGeneId":107984005},{"hugoGeneSymbol":"LOC107984006","entrezGeneId":107984006},{"hugoGeneSymbol":"LOC107984007","entrezGeneId":107984007},{"hugoGeneSymbol":"LOC107984010","entrezGeneId":107984010},{"hugoGeneSymbol":"LOC107984011","entrezGeneId":107984011},{"hugoGeneSymbol":"LOC107984012","entrezGeneId":107984012},{"hugoGeneSymbol":"LOC107984013","entrezGeneId":107984013},{"hugoGeneSymbol":"LOC107984014","entrezGeneId":107984014},{"hugoGeneSymbol":"LOC107984015","entrezGeneId":107984015},{"hugoGeneSymbol":"LOC107984016","entrezGeneId":107984016},{"hugoGeneSymbol":"LOC107984017","entrezGeneId":107984017},{"hugoGeneSymbol":"LOC107984018","entrezGeneId":107984018},{"hugoGeneSymbol":"LOC107984019","entrezGeneId":107984019},{"hugoGeneSymbol":"LOC107984020","entrezGeneId":107984020},{"hugoGeneSymbol":"LOC107984021","entrezGeneId":107984021},{"hugoGeneSymbol":"LOC107984023","entrezGeneId":107984023},{"hugoGeneSymbol":"LOC107984024","entrezGeneId":107984024},{"hugoGeneSymbol":"LOC107984025","entrezGeneId":107984025},{"hugoGeneSymbol":"LOC107984026","entrezGeneId":107984026},{"hugoGeneSymbol":"LOC107984028","entrezGeneId":107984028},{"hugoGeneSymbol":"LOC107984029","entrezGeneId":107984029},{"hugoGeneSymbol":"LOC107984030","entrezGeneId":107984030},{"hugoGeneSymbol":"LOC107984031","entrezGeneId":107984031},{"hugoGeneSymbol":"LOC107984032","entrezGeneId":107984032},{"hugoGeneSymbol":"LOC107984033","entrezGeneId":107984033},{"hugoGeneSymbol":"LOC107984034","entrezGeneId":107984034},{"hugoGeneSymbol":"LOC107984035","entrezGeneId":107984035},{"hugoGeneSymbol":"LOC107984036","entrezGeneId":107984036},{"hugoGeneSymbol":"LOC107984037","entrezGeneId":107984037},{"hugoGeneSymbol":"LOC107984039","entrezGeneId":107984039},{"hugoGeneSymbol":"LOC107984040","entrezGeneId":107984040},{"hugoGeneSymbol":"LOC107984041","entrezGeneId":107984041},{"hugoGeneSymbol":"LOC107984043","entrezGeneId":107984043},{"hugoGeneSymbol":"LOC107984053","entrezGeneId":107984053},{"hugoGeneSymbol":"LOC107984055","entrezGeneId":107984055},{"hugoGeneSymbol":"LOC107984056","entrezGeneId":107984056},{"hugoGeneSymbol":"LOC107984058","entrezGeneId":107984058},{"hugoGeneSymbol":"LOC107984059","entrezGeneId":107984059},{"hugoGeneSymbol":"LOC107984063","entrezGeneId":107984063},{"hugoGeneSymbol":"LOC107984065","entrezGeneId":107984065},{"hugoGeneSymbol":"LOC107984069","entrezGeneId":107984069},{"hugoGeneSymbol":"LOC107984079","entrezGeneId":107984079},{"hugoGeneSymbol":"LOC107984083","entrezGeneId":107984083},{"hugoGeneSymbol":"LOC107984084","entrezGeneId":107984084},{"hugoGeneSymbol":"LOC107984087","entrezGeneId":107984087},{"hugoGeneSymbol":"LOC107984088","entrezGeneId":107984088},{"hugoGeneSymbol":"LOC107984089","entrezGeneId":107984089},{"hugoGeneSymbol":"LOC107984092","entrezGeneId":107984092},{"hugoGeneSymbol":"LOC107984097","entrezGeneId":107984097},{"hugoGeneSymbol":"LOC107984098","entrezGeneId":107984098},{"hugoGeneSymbol":"LOC107984104","entrezGeneId":107984104},{"hugoGeneSymbol":"LOC107984108","entrezGeneId":107984108},{"hugoGeneSymbol":"LOC107984109","entrezGeneId":107984109},{"hugoGeneSymbol":"LOC107984110","entrezGeneId":107984110},{"hugoGeneSymbol":"LOC107984111","entrezGeneId":107984111},{"hugoGeneSymbol":"LOC107984112","entrezGeneId":107984112},{"hugoGeneSymbol":"LOC107984113","entrezGeneId":107984113},{"hugoGeneSymbol":"LOC107984115","entrezGeneId":107984115},{"hugoGeneSymbol":"LOC107984116","entrezGeneId":107984116},{"hugoGeneSymbol":"LOC107984118","entrezGeneId":107984118},{"hugoGeneSymbol":"LOC107984120","entrezGeneId":107984120},{"hugoGeneSymbol":"LOC107984123","entrezGeneId":107984123},{"hugoGeneSymbol":"LOC107984124","entrezGeneId":107984124},{"hugoGeneSymbol":"LOC107984125","entrezGeneId":107984125},{"hugoGeneSymbol":"LOC107984126","entrezGeneId":107984126},{"hugoGeneSymbol":"LOC107984127","entrezGeneId":107984127},{"hugoGeneSymbol":"LOC107984128","entrezGeneId":107984128},{"hugoGeneSymbol":"LOC107984129","entrezGeneId":107984129},{"hugoGeneSymbol":"LOC107984130","entrezGeneId":107984130},{"hugoGeneSymbol":"LOC107984131","entrezGeneId":107984131},{"hugoGeneSymbol":"LOC107984132","entrezGeneId":107984132},{"hugoGeneSymbol":"LOC107984133","entrezGeneId":107984133},{"hugoGeneSymbol":"LOC107984135","entrezGeneId":107984135},{"hugoGeneSymbol":"LOC107984136","entrezGeneId":107984136},{"hugoGeneSymbol":"LOC107984137","entrezGeneId":107984137},{"hugoGeneSymbol":"LOC107984138","entrezGeneId":107984138},{"hugoGeneSymbol":"LOC107984139","entrezGeneId":107984139},{"hugoGeneSymbol":"LOC107984140","entrezGeneId":107984140},{"hugoGeneSymbol":"LOC107984142","entrezGeneId":107984142},{"hugoGeneSymbol":"LOC107984143","entrezGeneId":107984143},{"hugoGeneSymbol":"LOC107984144","entrezGeneId":107984144},{"hugoGeneSymbol":"LOC107984145","entrezGeneId":107984145},{"hugoGeneSymbol":"LOC107984146","entrezGeneId":107984146},{"hugoGeneSymbol":"LOC107984148","entrezGeneId":107984148},{"hugoGeneSymbol":"LOC107984149","entrezGeneId":107984149},{"hugoGeneSymbol":"LOC107984150","entrezGeneId":107984150},{"hugoGeneSymbol":"LOC107984151","entrezGeneId":107984151},{"hugoGeneSymbol":"LOC107984153","entrezGeneId":107984153},{"hugoGeneSymbol":"LOC107984154","entrezGeneId":107984154},{"hugoGeneSymbol":"LOC107984155","entrezGeneId":107984155},{"hugoGeneSymbol":"LOC107984156","entrezGeneId":107984156},{"hugoGeneSymbol":"LOC107984158","entrezGeneId":107984158},{"hugoGeneSymbol":"LOC107984159","entrezGeneId":107984159},{"hugoGeneSymbol":"LOC107984160","entrezGeneId":107984160},{"hugoGeneSymbol":"LOC107984162","entrezGeneId":107984162},{"hugoGeneSymbol":"LOC107984164","entrezGeneId":107984164},{"hugoGeneSymbol":"LOC107984165","entrezGeneId":107984165},{"hugoGeneSymbol":"LOC107984168","entrezGeneId":107984168},{"hugoGeneSymbol":"LOC107984169","entrezGeneId":107984169},{"hugoGeneSymbol":"LOC107984170","entrezGeneId":107984170},{"hugoGeneSymbol":"LOC107984171","entrezGeneId":107984171},{"hugoGeneSymbol":"LOC107984172","entrezGeneId":107984172},{"hugoGeneSymbol":"LOC107984173","entrezGeneId":107984173},{"hugoGeneSymbol":"LOC107984174","entrezGeneId":107984174},{"hugoGeneSymbol":"LOC107984175","entrezGeneId":107984175},{"hugoGeneSymbol":"LOC107984176","entrezGeneId":107984176},{"hugoGeneSymbol":"LOC107984177","entrezGeneId":107984177},{"hugoGeneSymbol":"LOC107984178","entrezGeneId":107984178},{"hugoGeneSymbol":"LOC107984179","entrezGeneId":107984179},{"hugoGeneSymbol":"LOC107984180","entrezGeneId":107984180},{"hugoGeneSymbol":"LOC107984181","entrezGeneId":107984181},{"hugoGeneSymbol":"LOC107984182","entrezGeneId":107984182},{"hugoGeneSymbol":"LOC107984183","entrezGeneId":107984183},{"hugoGeneSymbol":"LOC107984184","entrezGeneId":107984184},{"hugoGeneSymbol":"LOC107984185","entrezGeneId":107984185},{"hugoGeneSymbol":"LOC107984186","entrezGeneId":107984186},{"hugoGeneSymbol":"LOC107984187","entrezGeneId":107984187},{"hugoGeneSymbol":"LOC107984188","entrezGeneId":107984188},{"hugoGeneSymbol":"LOC107984189","entrezGeneId":107984189},{"hugoGeneSymbol":"LOC107984190","entrezGeneId":107984190},{"hugoGeneSymbol":"LOC107984191","entrezGeneId":107984191},{"hugoGeneSymbol":"LOC107984192","entrezGeneId":107984192},{"hugoGeneSymbol":"LOC107984193","entrezGeneId":107984193},{"hugoGeneSymbol":"LOC107984195","entrezGeneId":107984195},{"hugoGeneSymbol":"LOC107984196","entrezGeneId":107984196},{"hugoGeneSymbol":"LOC107984197","entrezGeneId":107984197},{"hugoGeneSymbol":"LOC107984198","entrezGeneId":107984198},{"hugoGeneSymbol":"LOC107984199","entrezGeneId":107984199},{"hugoGeneSymbol":"LOC107984200","entrezGeneId":107984200},{"hugoGeneSymbol":"LOC107984201","entrezGeneId":107984201},{"hugoGeneSymbol":"LOC107984202","entrezGeneId":107984202},{"hugoGeneSymbol":"LOC107984203","entrezGeneId":107984203},{"hugoGeneSymbol":"LOC107984204","entrezGeneId":107984204},{"hugoGeneSymbol":"LOC107984205","entrezGeneId":107984205},{"hugoGeneSymbol":"LOC107984206","entrezGeneId":107984206},{"hugoGeneSymbol":"LOC107984207","entrezGeneId":107984207},{"hugoGeneSymbol":"LOC107984208","entrezGeneId":107984208},{"hugoGeneSymbol":"LOC107984209","entrezGeneId":107984209},{"hugoGeneSymbol":"LOC107984210","entrezGeneId":107984210},{"hugoGeneSymbol":"LOC107984211","entrezGeneId":107984211},{"hugoGeneSymbol":"LOC107984212","entrezGeneId":107984212},{"hugoGeneSymbol":"LOC107984213","entrezGeneId":107984213},{"hugoGeneSymbol":"LOC107984214","entrezGeneId":107984214},{"hugoGeneSymbol":"LOC107984215","entrezGeneId":107984215},{"hugoGeneSymbol":"LOC107984216","entrezGeneId":107984216},{"hugoGeneSymbol":"LOC107984217","entrezGeneId":107984217},{"hugoGeneSymbol":"LOC107984218","entrezGeneId":107984218},{"hugoGeneSymbol":"LOC107984219","entrezGeneId":107984219},{"hugoGeneSymbol":"LOC107984220","entrezGeneId":107984220},{"hugoGeneSymbol":"LOC107984221","entrezGeneId":107984221},{"hugoGeneSymbol":"LOC107984222","entrezGeneId":107984222},{"hugoGeneSymbol":"LOC107984223","entrezGeneId":107984223},{"hugoGeneSymbol":"LOC107984224","entrezGeneId":107984224},{"hugoGeneSymbol":"LOC107984225","entrezGeneId":107984225},{"hugoGeneSymbol":"LOC107984226","entrezGeneId":107984226},{"hugoGeneSymbol":"LOC107984227","entrezGeneId":107984227},{"hugoGeneSymbol":"LOC107984234","entrezGeneId":107984234},{"hugoGeneSymbol":"LOC107984235","entrezGeneId":107984235},{"hugoGeneSymbol":"LOC107984236","entrezGeneId":107984236},{"hugoGeneSymbol":"LOC107984237","entrezGeneId":107984237},{"hugoGeneSymbol":"LOC107984238","entrezGeneId":107984238},{"hugoGeneSymbol":"LOC107984239","entrezGeneId":107984239},{"hugoGeneSymbol":"LOC107984240","entrezGeneId":107984240},{"hugoGeneSymbol":"LOC107984241","entrezGeneId":107984241},{"hugoGeneSymbol":"LOC107984242","entrezGeneId":107984242},{"hugoGeneSymbol":"LOC107984243","entrezGeneId":107984243},{"hugoGeneSymbol":"LOC107984244","entrezGeneId":107984244},{"hugoGeneSymbol":"LOC107984245","entrezGeneId":107984245},{"hugoGeneSymbol":"LOC107984246","entrezGeneId":107984246},{"hugoGeneSymbol":"LOC107984247","entrezGeneId":107984247},{"hugoGeneSymbol":"LOC107984248","entrezGeneId":107984248},{"hugoGeneSymbol":"LOC107984249","entrezGeneId":107984249},{"hugoGeneSymbol":"LOC107984251","entrezGeneId":107984251},{"hugoGeneSymbol":"LOC107984252","entrezGeneId":107984252},{"hugoGeneSymbol":"LOC107984253","entrezGeneId":107984253},{"hugoGeneSymbol":"LOC107984254","entrezGeneId":107984254},{"hugoGeneSymbol":"LOC107984255","entrezGeneId":107984255},{"hugoGeneSymbol":"LOC107984256","entrezGeneId":107984256},{"hugoGeneSymbol":"LOC107984257","entrezGeneId":107984257},{"hugoGeneSymbol":"LOC107984258","entrezGeneId":107984258},{"hugoGeneSymbol":"LOC107984260","entrezGeneId":107984260},{"hugoGeneSymbol":"LOC107984261","entrezGeneId":107984261},{"hugoGeneSymbol":"LOC107984262","entrezGeneId":107984262},{"hugoGeneSymbol":"LOC107984263","entrezGeneId":107984263},{"hugoGeneSymbol":"LOC107984264","entrezGeneId":107984264},{"hugoGeneSymbol":"LOC107984265","entrezGeneId":107984265},{"hugoGeneSymbol":"LOC107984266","entrezGeneId":107984266},{"hugoGeneSymbol":"LOC107984268","entrezGeneId":107984268},{"hugoGeneSymbol":"LOC107984269","entrezGeneId":107984269},{"hugoGeneSymbol":"LOC107984270","entrezGeneId":107984270},{"hugoGeneSymbol":"LOC107984271","entrezGeneId":107984271},{"hugoGeneSymbol":"LOC107984272","entrezGeneId":107984272},{"hugoGeneSymbol":"LOC107984273","entrezGeneId":107984273},{"hugoGeneSymbol":"LOC107984274","entrezGeneId":107984274},{"hugoGeneSymbol":"LOC107984275","entrezGeneId":107984275},{"hugoGeneSymbol":"LOC107984276","entrezGeneId":107984276},{"hugoGeneSymbol":"LOC107984277","entrezGeneId":107984277},{"hugoGeneSymbol":"LOC107984279","entrezGeneId":107984279},{"hugoGeneSymbol":"LOC107984280","entrezGeneId":107984280},{"hugoGeneSymbol":"LOC107984281","entrezGeneId":107984281},{"hugoGeneSymbol":"LOC107984282","entrezGeneId":107984282},{"hugoGeneSymbol":"LOC107984283","entrezGeneId":107984283},{"hugoGeneSymbol":"LOC107984284","entrezGeneId":107984284},{"hugoGeneSymbol":"LOC107984285","entrezGeneId":107984285},{"hugoGeneSymbol":"LOC107984289","entrezGeneId":107984289},{"hugoGeneSymbol":"LOC107984292","entrezGeneId":107984292},{"hugoGeneSymbol":"LOC107984293","entrezGeneId":107984293},{"hugoGeneSymbol":"LOC107984294","entrezGeneId":107984294},{"hugoGeneSymbol":"LOC107984298","entrezGeneId":107984298},{"hugoGeneSymbol":"LOC107984299","entrezGeneId":107984299},{"hugoGeneSymbol":"LOC107984301","entrezGeneId":107984301},{"hugoGeneSymbol":"LOC107984302","entrezGeneId":107984302},{"hugoGeneSymbol":"LOC107984303","entrezGeneId":107984303},{"hugoGeneSymbol":"LOC107984304","entrezGeneId":107984304},{"hugoGeneSymbol":"LOC107984305","entrezGeneId":107984305},{"hugoGeneSymbol":"LOC107984307","entrezGeneId":107984307},{"hugoGeneSymbol":"LOC107984308","entrezGeneId":107984308},{"hugoGeneSymbol":"LOC107984309","entrezGeneId":107984309},{"hugoGeneSymbol":"LOC107984310","entrezGeneId":107984310},{"hugoGeneSymbol":"LOC107984311","entrezGeneId":107984311},{"hugoGeneSymbol":"LOC107984312","entrezGeneId":107984312},{"hugoGeneSymbol":"LOC107984313","entrezGeneId":107984313},{"hugoGeneSymbol":"LOC107984314","entrezGeneId":107984314},{"hugoGeneSymbol":"LOC107984315","entrezGeneId":107984315},{"hugoGeneSymbol":"LOC107984316","entrezGeneId":107984316},{"hugoGeneSymbol":"LOC107984317","entrezGeneId":107984317},{"hugoGeneSymbol":"LOC107984318","entrezGeneId":107984318},{"hugoGeneSymbol":"LOC107984320","entrezGeneId":107984320},{"hugoGeneSymbol":"LOC107984321","entrezGeneId":107984321},{"hugoGeneSymbol":"LOC107984322","entrezGeneId":107984322},{"hugoGeneSymbol":"LOC107984323","entrezGeneId":107984323},{"hugoGeneSymbol":"LOC107984324","entrezGeneId":107984324},{"hugoGeneSymbol":"LOC107984325","entrezGeneId":107984325},{"hugoGeneSymbol":"LOC107984326","entrezGeneId":107984326},{"hugoGeneSymbol":"LOC107984328","entrezGeneId":107984328},{"hugoGeneSymbol":"LOC107984329","entrezGeneId":107984329},{"hugoGeneSymbol":"LOC107984330","entrezGeneId":107984330},{"hugoGeneSymbol":"LOC107984331","entrezGeneId":107984331},{"hugoGeneSymbol":"LOC107984333","entrezGeneId":107984333},{"hugoGeneSymbol":"LOC107984334","entrezGeneId":107984334},{"hugoGeneSymbol":"LOC107984335","entrezGeneId":107984335},{"hugoGeneSymbol":"LOC107984336","entrezGeneId":107984336},{"hugoGeneSymbol":"LOC107984337","entrezGeneId":107984337},{"hugoGeneSymbol":"LOC107984338","entrezGeneId":107984338},{"hugoGeneSymbol":"LOC107984340","entrezGeneId":107984340},{"hugoGeneSymbol":"LOC107984341","entrezGeneId":107984341},{"hugoGeneSymbol":"LOC107984343","entrezGeneId":107984343},{"hugoGeneSymbol":"LOC107984344","entrezGeneId":107984344},{"hugoGeneSymbol":"LOC107984345","entrezGeneId":107984345},{"hugoGeneSymbol":"LOC107984346","entrezGeneId":107984346},{"hugoGeneSymbol":"LOC107984347","entrezGeneId":107984347},{"hugoGeneSymbol":"LOC107984350","entrezGeneId":107984350},{"hugoGeneSymbol":"LOC107984351","entrezGeneId":107984351},{"hugoGeneSymbol":"LOC107984352","entrezGeneId":107984352},{"hugoGeneSymbol":"LOC107984354","entrezGeneId":107984354},{"hugoGeneSymbol":"LOC107984355","entrezGeneId":107984355},{"hugoGeneSymbol":"LOC107984356","entrezGeneId":107984356},{"hugoGeneSymbol":"LOC107984357","entrezGeneId":107984357},{"hugoGeneSymbol":"LOC107984358","entrezGeneId":107984358},{"hugoGeneSymbol":"LOC107984359","entrezGeneId":107984359},{"hugoGeneSymbol":"LOC107984360","entrezGeneId":107984360},{"hugoGeneSymbol":"LOC107984361","entrezGeneId":107984361},{"hugoGeneSymbol":"LOC107984362","entrezGeneId":107984362},{"hugoGeneSymbol":"LOC107984363","entrezGeneId":107984363},{"hugoGeneSymbol":"LOC107984364","entrezGeneId":107984364},{"hugoGeneSymbol":"LOC107984365","entrezGeneId":107984365},{"hugoGeneSymbol":"LOC107984366","entrezGeneId":107984366},{"hugoGeneSymbol":"LOC107984367","entrezGeneId":107984367},{"hugoGeneSymbol":"LOC107984368","entrezGeneId":107984368},{"hugoGeneSymbol":"LOC107984369","entrezGeneId":107984369},{"hugoGeneSymbol":"LOC107984370","entrezGeneId":107984370},{"hugoGeneSymbol":"LOC107984371","entrezGeneId":107984371},{"hugoGeneSymbol":"LOC107984372","entrezGeneId":107984372},{"hugoGeneSymbol":"LOC107984373","entrezGeneId":107984373},{"hugoGeneSymbol":"LOC107984374","entrezGeneId":107984374},{"hugoGeneSymbol":"LOC107984375","entrezGeneId":107984375},{"hugoGeneSymbol":"LOC107984376","entrezGeneId":107984376},{"hugoGeneSymbol":"LOC107984377","entrezGeneId":107984377},{"hugoGeneSymbol":"LOC107984378","entrezGeneId":107984378},{"hugoGeneSymbol":"LOC107984379","entrezGeneId":107984379},{"hugoGeneSymbol":"LOC107984380","entrezGeneId":107984380},{"hugoGeneSymbol":"LOC107984381","entrezGeneId":107984381},{"hugoGeneSymbol":"LOC107984382","entrezGeneId":107984382},{"hugoGeneSymbol":"LOC107984384","entrezGeneId":107984384},{"hugoGeneSymbol":"LOC107984385","entrezGeneId":107984385},{"hugoGeneSymbol":"LOC107984386","entrezGeneId":107984386},{"hugoGeneSymbol":"LOC107984387","entrezGeneId":107984387},{"hugoGeneSymbol":"LOC107984388","entrezGeneId":107984388},{"hugoGeneSymbol":"LOC107984389","entrezGeneId":107984389},{"hugoGeneSymbol":"LOC107984390","entrezGeneId":107984390},{"hugoGeneSymbol":"LOC107984391","entrezGeneId":107984391},{"hugoGeneSymbol":"LOC107984393","entrezGeneId":107984393},{"hugoGeneSymbol":"LOC107984394","entrezGeneId":107984394},{"hugoGeneSymbol":"LOC107984396","entrezGeneId":107984396},{"hugoGeneSymbol":"LOC107984397","entrezGeneId":107984397},{"hugoGeneSymbol":"LOC107984398","entrezGeneId":107984398},{"hugoGeneSymbol":"LOC107984399","entrezGeneId":107984399},{"hugoGeneSymbol":"LOC107984400","entrezGeneId":107984400},{"hugoGeneSymbol":"LOC107984402","entrezGeneId":107984402},{"hugoGeneSymbol":"LOC107984403","entrezGeneId":107984403},{"hugoGeneSymbol":"LOC107984404","entrezGeneId":107984404},{"hugoGeneSymbol":"LOC107984405","entrezGeneId":107984405},{"hugoGeneSymbol":"LOC107984406","entrezGeneId":107984406},{"hugoGeneSymbol":"LOC107984407","entrezGeneId":107984407},{"hugoGeneSymbol":"LOC107984408","entrezGeneId":107984408},{"hugoGeneSymbol":"LOC107984409","entrezGeneId":107984409},{"hugoGeneSymbol":"LOC107984410","entrezGeneId":107984410},{"hugoGeneSymbol":"LOC107984411","entrezGeneId":107984411},{"hugoGeneSymbol":"LOC107984412","entrezGeneId":107984412},{"hugoGeneSymbol":"LOC107984413","entrezGeneId":107984413},{"hugoGeneSymbol":"LOC107984414","entrezGeneId":107984414},{"hugoGeneSymbol":"LOC107984416","entrezGeneId":107984416},{"hugoGeneSymbol":"LOC107984418","entrezGeneId":107984418},{"hugoGeneSymbol":"LOC107984419","entrezGeneId":107984419},{"hugoGeneSymbol":"LOC107984420","entrezGeneId":107984420},{"hugoGeneSymbol":"LOC107984421","entrezGeneId":107984421},{"hugoGeneSymbol":"LOC107984423","entrezGeneId":107984423},{"hugoGeneSymbol":"LOC107984424","entrezGeneId":107984424},{"hugoGeneSymbol":"LOC107984425","entrezGeneId":107984425},{"hugoGeneSymbol":"LOC107984426","entrezGeneId":107984426},{"hugoGeneSymbol":"LOC107984427","entrezGeneId":107984427},{"hugoGeneSymbol":"LOC107984428","entrezGeneId":107984428},{"hugoGeneSymbol":"LOC107984429","entrezGeneId":107984429},{"hugoGeneSymbol":"LOC107984430","entrezGeneId":107984430},{"hugoGeneSymbol":"LOC107984431","entrezGeneId":107984431},{"hugoGeneSymbol":"LOC107984432","entrezGeneId":107984432},{"hugoGeneSymbol":"LOC107984433","entrezGeneId":107984433},{"hugoGeneSymbol":"LOC107984434","entrezGeneId":107984434},{"hugoGeneSymbol":"LOC107984435","entrezGeneId":107984435},{"hugoGeneSymbol":"LOC107984436","entrezGeneId":107984436},{"hugoGeneSymbol":"LOC107984437","entrezGeneId":107984437},{"hugoGeneSymbol":"LOC107984438","entrezGeneId":107984438},{"hugoGeneSymbol":"LOC107984440","entrezGeneId":107984440},{"hugoGeneSymbol":"LOC107984442","entrezGeneId":107984442},{"hugoGeneSymbol":"LOC107984443","entrezGeneId":107984443},{"hugoGeneSymbol":"LOC107984444","entrezGeneId":107984444},{"hugoGeneSymbol":"LOC107984445","entrezGeneId":107984445},{"hugoGeneSymbol":"LOC107984447","entrezGeneId":107984447},{"hugoGeneSymbol":"LOC107984448","entrezGeneId":107984448},{"hugoGeneSymbol":"LOC107984449","entrezGeneId":107984449},{"hugoGeneSymbol":"LOC107984450","entrezGeneId":107984450},{"hugoGeneSymbol":"LOC107984451","entrezGeneId":107984451},{"hugoGeneSymbol":"LOC107984452","entrezGeneId":107984452},{"hugoGeneSymbol":"LOC107984455","entrezGeneId":107984455},{"hugoGeneSymbol":"LOC107984456","entrezGeneId":107984456},{"hugoGeneSymbol":"LOC107984457","entrezGeneId":107984457},{"hugoGeneSymbol":"LOC107984459","entrezGeneId":107984459},{"hugoGeneSymbol":"LOC107984461","entrezGeneId":107984461},{"hugoGeneSymbol":"LOC107984462","entrezGeneId":107984462},{"hugoGeneSymbol":"LOC107984463","entrezGeneId":107984463},{"hugoGeneSymbol":"LOC107984466","entrezGeneId":107984466},{"hugoGeneSymbol":"LOC107984467","entrezGeneId":107984467},{"hugoGeneSymbol":"LOC107984468","entrezGeneId":107984468},{"hugoGeneSymbol":"LOC107984469","entrezGeneId":107984469},{"hugoGeneSymbol":"LOC107984470","entrezGeneId":107984470},{"hugoGeneSymbol":"LOC107984471","entrezGeneId":107984471},{"hugoGeneSymbol":"LOC107984472","entrezGeneId":107984472},{"hugoGeneSymbol":"LOC107984473","entrezGeneId":107984473},{"hugoGeneSymbol":"LOC107984474","entrezGeneId":107984474},{"hugoGeneSymbol":"LOC107984475","entrezGeneId":107984475},{"hugoGeneSymbol":"LOC107984476","entrezGeneId":107984476},{"hugoGeneSymbol":"LOC107984478","entrezGeneId":107984478},{"hugoGeneSymbol":"LOC107984479","entrezGeneId":107984479},{"hugoGeneSymbol":"LOC107984480","entrezGeneId":107984480},{"hugoGeneSymbol":"LOC107984481","entrezGeneId":107984481},{"hugoGeneSymbol":"LOC107984482","entrezGeneId":107984482},{"hugoGeneSymbol":"LOC107984484","entrezGeneId":107984484},{"hugoGeneSymbol":"LOC107984485","entrezGeneId":107984485},{"hugoGeneSymbol":"LOC107984486","entrezGeneId":107984486},{"hugoGeneSymbol":"LOC107984487","entrezGeneId":107984487},{"hugoGeneSymbol":"LOC107984489","entrezGeneId":107984489},{"hugoGeneSymbol":"LOC107984492","entrezGeneId":107984492},{"hugoGeneSymbol":"LOC107984494","entrezGeneId":107984494},{"hugoGeneSymbol":"LOC107984495","entrezGeneId":107984495},{"hugoGeneSymbol":"LOC107984496","entrezGeneId":107984496},{"hugoGeneSymbol":"LOC107984498","entrezGeneId":107984498},{"hugoGeneSymbol":"LOC107984499","entrezGeneId":107984499},{"hugoGeneSymbol":"LOC107984500","entrezGeneId":107984500},{"hugoGeneSymbol":"LOC107984501","entrezGeneId":107984501},{"hugoGeneSymbol":"LOC107984504","entrezGeneId":107984504},{"hugoGeneSymbol":"LOC107984505","entrezGeneId":107984505},{"hugoGeneSymbol":"LOC107984506","entrezGeneId":107984506},{"hugoGeneSymbol":"LOC107984507","entrezGeneId":107984507},{"hugoGeneSymbol":"LOC107984508","entrezGeneId":107984508},{"hugoGeneSymbol":"LOC107984509","entrezGeneId":107984509},{"hugoGeneSymbol":"LOC107984510","entrezGeneId":107984510},{"hugoGeneSymbol":"LOC107984512","entrezGeneId":107984512},{"hugoGeneSymbol":"LOC107984515","entrezGeneId":107984515},{"hugoGeneSymbol":"LOC107984516","entrezGeneId":107984516},{"hugoGeneSymbol":"LOC107984521","entrezGeneId":107984521},{"hugoGeneSymbol":"LOC107984522","entrezGeneId":107984522},{"hugoGeneSymbol":"LOC107984525","entrezGeneId":107984525},{"hugoGeneSymbol":"LOC107984526","entrezGeneId":107984526},{"hugoGeneSymbol":"LOC107984527","entrezGeneId":107984527},{"hugoGeneSymbol":"LOC107984529","entrezGeneId":107984529},{"hugoGeneSymbol":"LOC107984530","entrezGeneId":107984530},{"hugoGeneSymbol":"LOC107984531","entrezGeneId":107984531},{"hugoGeneSymbol":"LOC107984532","entrezGeneId":107984532},{"hugoGeneSymbol":"LOC107984533","entrezGeneId":107984533},{"hugoGeneSymbol":"LOC107984535","entrezGeneId":107984535},{"hugoGeneSymbol":"LOC107984536","entrezGeneId":107984536},{"hugoGeneSymbol":"LOC107984537","entrezGeneId":107984537},{"hugoGeneSymbol":"LOC107984542","entrezGeneId":107984542},{"hugoGeneSymbol":"LOC107984543","entrezGeneId":107984543},{"hugoGeneSymbol":"LOC107984544","entrezGeneId":107984544},{"hugoGeneSymbol":"LOC107984545","entrezGeneId":107984545},{"hugoGeneSymbol":"LOC107984546","entrezGeneId":107984546},{"hugoGeneSymbol":"LOC107984547","entrezGeneId":107984547},{"hugoGeneSymbol":"LOC107984548","entrezGeneId":107984548},{"hugoGeneSymbol":"LOC107984551","entrezGeneId":107984551},{"hugoGeneSymbol":"LOC107984552","entrezGeneId":107984552},{"hugoGeneSymbol":"LOC107984553","entrezGeneId":107984553},{"hugoGeneSymbol":"LOC107984554","entrezGeneId":107984554},{"hugoGeneSymbol":"LOC107984555","entrezGeneId":107984555},{"hugoGeneSymbol":"LOC107984557","entrezGeneId":107984557},{"hugoGeneSymbol":"LOC107984558","entrezGeneId":107984558},{"hugoGeneSymbol":"LOC107984559","entrezGeneId":107984559},{"hugoGeneSymbol":"LOC107984561","entrezGeneId":107984561},{"hugoGeneSymbol":"LOC107984562","entrezGeneId":107984562},{"hugoGeneSymbol":"LOC107984563","entrezGeneId":107984563},{"hugoGeneSymbol":"LOC107984564","entrezGeneId":107984564},{"hugoGeneSymbol":"LOC107984566","entrezGeneId":107984566},{"hugoGeneSymbol":"LOC107984567","entrezGeneId":107984567},{"hugoGeneSymbol":"LOC107984568","entrezGeneId":107984568},{"hugoGeneSymbol":"LOC107984569","entrezGeneId":107984569},{"hugoGeneSymbol":"LOC107984572","entrezGeneId":107984572},{"hugoGeneSymbol":"LOC107984573","entrezGeneId":107984573},{"hugoGeneSymbol":"LOC107984574","entrezGeneId":107984574},{"hugoGeneSymbol":"LOC107984575","entrezGeneId":107984575},{"hugoGeneSymbol":"LOC107984576","entrezGeneId":107984576},{"hugoGeneSymbol":"LOC107984577","entrezGeneId":107984577},{"hugoGeneSymbol":"LOC107984578","entrezGeneId":107984578},{"hugoGeneSymbol":"LOC107984579","entrezGeneId":107984579},{"hugoGeneSymbol":"LOC107984580","entrezGeneId":107984580},{"hugoGeneSymbol":"LOC107984581","entrezGeneId":107984581},{"hugoGeneSymbol":"LOC107984582","entrezGeneId":107984582},{"hugoGeneSymbol":"LOC107984583","entrezGeneId":107984583},{"hugoGeneSymbol":"LOC107984584","entrezGeneId":107984584},{"hugoGeneSymbol":"LOC107984585","entrezGeneId":107984585},{"hugoGeneSymbol":"LOC107984587","entrezGeneId":107984587},{"hugoGeneSymbol":"LOC107984588","entrezGeneId":107984588},{"hugoGeneSymbol":"LOC107984589","entrezGeneId":107984589},{"hugoGeneSymbol":"LOC107984590","entrezGeneId":107984590},{"hugoGeneSymbol":"LOC107984591","entrezGeneId":107984591},{"hugoGeneSymbol":"LOC107984593","entrezGeneId":107984593},{"hugoGeneSymbol":"LOC107984594","entrezGeneId":107984594},{"hugoGeneSymbol":"LOC107984596","entrezGeneId":107984596},{"hugoGeneSymbol":"LOC107984597","entrezGeneId":107984597},{"hugoGeneSymbol":"LOC107984598","entrezGeneId":107984598},{"hugoGeneSymbol":"LOC107984599","entrezGeneId":107984599},{"hugoGeneSymbol":"LOC107984601","entrezGeneId":107984601},{"hugoGeneSymbol":"LOC107984602","entrezGeneId":107984602},{"hugoGeneSymbol":"LOC107984604","entrezGeneId":107984604},{"hugoGeneSymbol":"LOC107984606","entrezGeneId":107984606},{"hugoGeneSymbol":"LOC107984607","entrezGeneId":107984607},{"hugoGeneSymbol":"LOC107984608","entrezGeneId":107984608},{"hugoGeneSymbol":"LOC107984609","entrezGeneId":107984609},{"hugoGeneSymbol":"LOC107984610","entrezGeneId":107984610},{"hugoGeneSymbol":"LOC107984611","entrezGeneId":107984611},{"hugoGeneSymbol":"LOC107984613","entrezGeneId":107984613},{"hugoGeneSymbol":"LOC107984615","entrezGeneId":107984615},{"hugoGeneSymbol":"LOC107984616","entrezGeneId":107984616},{"hugoGeneSymbol":"LOC107984617","entrezGeneId":107984617},{"hugoGeneSymbol":"LOC107984618","entrezGeneId":107984618},{"hugoGeneSymbol":"LOC107984619","entrezGeneId":107984619},{"hugoGeneSymbol":"LOC107984620","entrezGeneId":107984620},{"hugoGeneSymbol":"LOC107984621","entrezGeneId":107984621},{"hugoGeneSymbol":"LOC107984622","entrezGeneId":107984622},{"hugoGeneSymbol":"LOC107984624","entrezGeneId":107984624},{"hugoGeneSymbol":"LOC107984625","entrezGeneId":107984625},{"hugoGeneSymbol":"LOC107984626","entrezGeneId":107984626},{"hugoGeneSymbol":"LOC107984627","entrezGeneId":107984627},{"hugoGeneSymbol":"LOC107984628","entrezGeneId":107984628},{"hugoGeneSymbol":"LOC107984629","entrezGeneId":107984629},{"hugoGeneSymbol":"LOC107984630","entrezGeneId":107984630},{"hugoGeneSymbol":"LOC107984631","entrezGeneId":107984631},{"hugoGeneSymbol":"LOC107984634","entrezGeneId":107984634},{"hugoGeneSymbol":"LOC107984635","entrezGeneId":107984635},{"hugoGeneSymbol":"LOC107984638","entrezGeneId":107984638},{"hugoGeneSymbol":"LOC107984639","entrezGeneId":107984639},{"hugoGeneSymbol":"LOC107984641","entrezGeneId":107984641},{"hugoGeneSymbol":"LOC107984642","entrezGeneId":107984642},{"hugoGeneSymbol":"LOC107984643","entrezGeneId":107984643},{"hugoGeneSymbol":"LOC107984644","entrezGeneId":107984644},{"hugoGeneSymbol":"LOC107984645","entrezGeneId":107984645},{"hugoGeneSymbol":"LOC107984646","entrezGeneId":107984646},{"hugoGeneSymbol":"LOC107984647","entrezGeneId":107984647},{"hugoGeneSymbol":"LOC107984648","entrezGeneId":107984648},{"hugoGeneSymbol":"LOC107984649","entrezGeneId":107984649},{"hugoGeneSymbol":"LOC107984650","entrezGeneId":107984650},{"hugoGeneSymbol":"LOC107984651","entrezGeneId":107984651},{"hugoGeneSymbol":"LOC107984652","entrezGeneId":107984652},{"hugoGeneSymbol":"LOC107984653","entrezGeneId":107984653},{"hugoGeneSymbol":"LOC107984654","entrezGeneId":107984654},{"hugoGeneSymbol":"LOC107984655","entrezGeneId":107984655},{"hugoGeneSymbol":"LOC107984656","entrezGeneId":107984656},{"hugoGeneSymbol":"LOC107984658","entrezGeneId":107984658},{"hugoGeneSymbol":"LOC107984659","entrezGeneId":107984659},{"hugoGeneSymbol":"LOC107984660","entrezGeneId":107984660},{"hugoGeneSymbol":"LOC107984661","entrezGeneId":107984661},{"hugoGeneSymbol":"LOC107984663","entrezGeneId":107984663},{"hugoGeneSymbol":"LOC107984664","entrezGeneId":107984664},{"hugoGeneSymbol":"LOC107984665","entrezGeneId":107984665},{"hugoGeneSymbol":"LOC107984667","entrezGeneId":107984667},{"hugoGeneSymbol":"LOC107984668","entrezGeneId":107984668},{"hugoGeneSymbol":"LOC107984669","entrezGeneId":107984669},{"hugoGeneSymbol":"LOC107984670","entrezGeneId":107984670},{"hugoGeneSymbol":"LOC107984671","entrezGeneId":107984671},{"hugoGeneSymbol":"LOC107984673","entrezGeneId":107984673},{"hugoGeneSymbol":"LOC107984674","entrezGeneId":107984674},{"hugoGeneSymbol":"LOC107984676","entrezGeneId":107984676},{"hugoGeneSymbol":"LOC107984678","entrezGeneId":107984678},{"hugoGeneSymbol":"LOC107984679","entrezGeneId":107984679},{"hugoGeneSymbol":"LOC107984681","entrezGeneId":107984681},{"hugoGeneSymbol":"LOC107984682","entrezGeneId":107984682},{"hugoGeneSymbol":"LOC107984684","entrezGeneId":107984684},{"hugoGeneSymbol":"LOC107984685","entrezGeneId":107984685},{"hugoGeneSymbol":"LOC107984686","entrezGeneId":107984686},{"hugoGeneSymbol":"LOC107984689","entrezGeneId":107984689},{"hugoGeneSymbol":"LOC107984690","entrezGeneId":107984690},{"hugoGeneSymbol":"LOC107984691","entrezGeneId":107984691},{"hugoGeneSymbol":"LOC107984692","entrezGeneId":107984692},{"hugoGeneSymbol":"LOC107984693","entrezGeneId":107984693},{"hugoGeneSymbol":"LOC107984694","entrezGeneId":107984694},{"hugoGeneSymbol":"LOC107984695","entrezGeneId":107984695},{"hugoGeneSymbol":"LOC107984696","entrezGeneId":107984696},{"hugoGeneSymbol":"LOC107984697","entrezGeneId":107984697},{"hugoGeneSymbol":"LOC107984698","entrezGeneId":107984698},{"hugoGeneSymbol":"LOC107984699","entrezGeneId":107984699},{"hugoGeneSymbol":"LOC107984701","entrezGeneId":107984701},{"hugoGeneSymbol":"LOC107984702","entrezGeneId":107984702},{"hugoGeneSymbol":"LOC107984703","entrezGeneId":107984703},{"hugoGeneSymbol":"LOC107984704","entrezGeneId":107984704},{"hugoGeneSymbol":"LOC107984705","entrezGeneId":107984705},{"hugoGeneSymbol":"LOC107984706","entrezGeneId":107984706},{"hugoGeneSymbol":"LOC107984708","entrezGeneId":107984708},{"hugoGeneSymbol":"LOC107984709","entrezGeneId":107984709},{"hugoGeneSymbol":"LOC107984710","entrezGeneId":107984710},{"hugoGeneSymbol":"LOC107984711","entrezGeneId":107984711},{"hugoGeneSymbol":"LOC107984713","entrezGeneId":107984713},{"hugoGeneSymbol":"LOC107984714","entrezGeneId":107984714},{"hugoGeneSymbol":"LOC107984715","entrezGeneId":107984715},{"hugoGeneSymbol":"LOC107984716","entrezGeneId":107984716},{"hugoGeneSymbol":"LOC107984718","entrezGeneId":107984718},{"hugoGeneSymbol":"LOC107984720","entrezGeneId":107984720},{"hugoGeneSymbol":"LOC107984723","entrezGeneId":107984723},{"hugoGeneSymbol":"LOC107984724","entrezGeneId":107984724},{"hugoGeneSymbol":"LOC107984725","entrezGeneId":107984725},{"hugoGeneSymbol":"LOC107984727","entrezGeneId":107984727},{"hugoGeneSymbol":"LOC107984728","entrezGeneId":107984728},{"hugoGeneSymbol":"LOC107984731","entrezGeneId":107984731},{"hugoGeneSymbol":"LOC107984732","entrezGeneId":107984732},{"hugoGeneSymbol":"LOC107984733","entrezGeneId":107984733},{"hugoGeneSymbol":"LOC107984734","entrezGeneId":107984734},{"hugoGeneSymbol":"LOC107984735","entrezGeneId":107984735},{"hugoGeneSymbol":"LOC107984736","entrezGeneId":107984736},{"hugoGeneSymbol":"LOC107984737","entrezGeneId":107984737},{"hugoGeneSymbol":"LOC107984739","entrezGeneId":107984739},{"hugoGeneSymbol":"LOC107984740","entrezGeneId":107984740},{"hugoGeneSymbol":"LOC107984741","entrezGeneId":107984741},{"hugoGeneSymbol":"LOC107984743","entrezGeneId":107984743},{"hugoGeneSymbol":"LOC107984745","entrezGeneId":107984745},{"hugoGeneSymbol":"LOC107984746","entrezGeneId":107984746},{"hugoGeneSymbol":"LOC107984747","entrezGeneId":107984747},{"hugoGeneSymbol":"LOC107984748","entrezGeneId":107984748},{"hugoGeneSymbol":"LOC107984749","entrezGeneId":107984749},{"hugoGeneSymbol":"LOC107984750","entrezGeneId":107984750},{"hugoGeneSymbol":"LOC107984751","entrezGeneId":107984751},{"hugoGeneSymbol":"LOC107984754","entrezGeneId":107984754},{"hugoGeneSymbol":"LOC107984755","entrezGeneId":107984755},{"hugoGeneSymbol":"LOC107984756","entrezGeneId":107984756},{"hugoGeneSymbol":"LOC107984757","entrezGeneId":107984757},{"hugoGeneSymbol":"LOC107984758","entrezGeneId":107984758},{"hugoGeneSymbol":"LOC107984759","entrezGeneId":107984759},{"hugoGeneSymbol":"LOC107984760","entrezGeneId":107984760},{"hugoGeneSymbol":"LOC107984761","entrezGeneId":107984761},{"hugoGeneSymbol":"LOC107984763","entrezGeneId":107984763},{"hugoGeneSymbol":"LOC107984766","entrezGeneId":107984766},{"hugoGeneSymbol":"LOC107984770","entrezGeneId":107984770},{"hugoGeneSymbol":"LOC107984772","entrezGeneId":107984772},{"hugoGeneSymbol":"LOC107984774","entrezGeneId":107984774},{"hugoGeneSymbol":"LOC107984776","entrezGeneId":107984776},{"hugoGeneSymbol":"LOC107984777","entrezGeneId":107984777},{"hugoGeneSymbol":"LOC107984778","entrezGeneId":107984778},{"hugoGeneSymbol":"LOC107984779","entrezGeneId":107984779},{"hugoGeneSymbol":"LOC107984781","entrezGeneId":107984781},{"hugoGeneSymbol":"LOC107984782","entrezGeneId":107984782},{"hugoGeneSymbol":"LOC107984783","entrezGeneId":107984783},{"hugoGeneSymbol":"LOC107984784","entrezGeneId":107984784},{"hugoGeneSymbol":"LOC107984785","entrezGeneId":107984785},{"hugoGeneSymbol":"LOC107984786","entrezGeneId":107984786},{"hugoGeneSymbol":"LOC107984787","entrezGeneId":107984787},{"hugoGeneSymbol":"LOC107984788","entrezGeneId":107984788},{"hugoGeneSymbol":"LOC107984789","entrezGeneId":107984789},{"hugoGeneSymbol":"LOC107984790","entrezGeneId":107984790},{"hugoGeneSymbol":"LOC107984791","entrezGeneId":107984791},{"hugoGeneSymbol":"LOC107984792","entrezGeneId":107984792},{"hugoGeneSymbol":"LOC107984793","entrezGeneId":107984793},{"hugoGeneSymbol":"LOC107984794","entrezGeneId":107984794},{"hugoGeneSymbol":"LOC107984798","entrezGeneId":107984798},{"hugoGeneSymbol":"LOC107984800","entrezGeneId":107984800},{"hugoGeneSymbol":"LOC107984801","entrezGeneId":107984801},{"hugoGeneSymbol":"LOC107984802","entrezGeneId":107984802},{"hugoGeneSymbol":"LOC107984803","entrezGeneId":107984803},{"hugoGeneSymbol":"LOC107984805","entrezGeneId":107984805},{"hugoGeneSymbol":"LOC107984806","entrezGeneId":107984806},{"hugoGeneSymbol":"LOC107984807","entrezGeneId":107984807},{"hugoGeneSymbol":"LOC107984809","entrezGeneId":107984809},{"hugoGeneSymbol":"LOC107984812","entrezGeneId":107984812},{"hugoGeneSymbol":"LOC107984813","entrezGeneId":107984813},{"hugoGeneSymbol":"LOC107984814","entrezGeneId":107984814},{"hugoGeneSymbol":"LOC107984815","entrezGeneId":107984815},{"hugoGeneSymbol":"LOC107984816","entrezGeneId":107984816},{"hugoGeneSymbol":"LOC107984817","entrezGeneId":107984817},{"hugoGeneSymbol":"LOC107984819","entrezGeneId":107984819},{"hugoGeneSymbol":"LOC107984820","entrezGeneId":107984820},{"hugoGeneSymbol":"LOC107984821","entrezGeneId":107984821},{"hugoGeneSymbol":"LOC107984822","entrezGeneId":107984822},{"hugoGeneSymbol":"LOC107984823","entrezGeneId":107984823},{"hugoGeneSymbol":"LOC107984824","entrezGeneId":107984824},{"hugoGeneSymbol":"LOC107984825","entrezGeneId":107984825},{"hugoGeneSymbol":"LOC107984826","entrezGeneId":107984826},{"hugoGeneSymbol":"LOC107984827","entrezGeneId":107984827},{"hugoGeneSymbol":"LOC107984828","entrezGeneId":107984828},{"hugoGeneSymbol":"LOC107984829","entrezGeneId":107984829},{"hugoGeneSymbol":"LOC107984830","entrezGeneId":107984830},{"hugoGeneSymbol":"LOC107984831","entrezGeneId":107984831},{"hugoGeneSymbol":"LOC107984832","entrezGeneId":107984832},{"hugoGeneSymbol":"LOC107984833","entrezGeneId":107984833},{"hugoGeneSymbol":"LOC107984834","entrezGeneId":107984834},{"hugoGeneSymbol":"LOC107984835","entrezGeneId":107984835},{"hugoGeneSymbol":"LOC107984836","entrezGeneId":107984836},{"hugoGeneSymbol":"LOC107984837","entrezGeneId":107984837},{"hugoGeneSymbol":"LOC107984839","entrezGeneId":107984839},{"hugoGeneSymbol":"LOC107984840","entrezGeneId":107984840},{"hugoGeneSymbol":"LOC107984841","entrezGeneId":107984841},{"hugoGeneSymbol":"LOC107984842","entrezGeneId":107984842},{"hugoGeneSymbol":"LOC107984844","entrezGeneId":107984844},{"hugoGeneSymbol":"LOC107984847","entrezGeneId":107984847},{"hugoGeneSymbol":"LOC107984849","entrezGeneId":107984849},{"hugoGeneSymbol":"LOC107984850","entrezGeneId":107984850},{"hugoGeneSymbol":"LOC107984851","entrezGeneId":107984851},{"hugoGeneSymbol":"LOC107984852","entrezGeneId":107984852},{"hugoGeneSymbol":"LOC107984854","entrezGeneId":107984854},{"hugoGeneSymbol":"LOC107984855","entrezGeneId":107984855},{"hugoGeneSymbol":"LOC107984856","entrezGeneId":107984856},{"hugoGeneSymbol":"LOC107984858","entrezGeneId":107984858},{"hugoGeneSymbol":"LOC107984859","entrezGeneId":107984859},{"hugoGeneSymbol":"LOC107984861","entrezGeneId":107984861},{"hugoGeneSymbol":"LOC107984862","entrezGeneId":107984862},{"hugoGeneSymbol":"LOC107984865","entrezGeneId":107984865},{"hugoGeneSymbol":"LOC107984867","entrezGeneId":107984867},{"hugoGeneSymbol":"LOC107984868","entrezGeneId":107984868},{"hugoGeneSymbol":"LOC107984869","entrezGeneId":107984869},{"hugoGeneSymbol":"LOC107984870","entrezGeneId":107984870},{"hugoGeneSymbol":"LOC107984871","entrezGeneId":107984871},{"hugoGeneSymbol":"LOC107984872","entrezGeneId":107984872},{"hugoGeneSymbol":"LOC107984874","entrezGeneId":107984874},{"hugoGeneSymbol":"LOC107984875","entrezGeneId":107984875},{"hugoGeneSymbol":"LOC107984876","entrezGeneId":107984876},{"hugoGeneSymbol":"LOC107984877","entrezGeneId":107984877},{"hugoGeneSymbol":"LOC107984878","entrezGeneId":107984878},{"hugoGeneSymbol":"LOC107984880","entrezGeneId":107984880},{"hugoGeneSymbol":"LOC107984881","entrezGeneId":107984881},{"hugoGeneSymbol":"LOC107984886","entrezGeneId":107984886},{"hugoGeneSymbol":"LOC107984887","entrezGeneId":107984887},{"hugoGeneSymbol":"LOC107984888","entrezGeneId":107984888},{"hugoGeneSymbol":"LOC107984889","entrezGeneId":107984889},{"hugoGeneSymbol":"LOC107984890","entrezGeneId":107984890},{"hugoGeneSymbol":"LOC107984891","entrezGeneId":107984891},{"hugoGeneSymbol":"LOC107984892","entrezGeneId":107984892},{"hugoGeneSymbol":"LOC107984893","entrezGeneId":107984893},{"hugoGeneSymbol":"LOC107984894","entrezGeneId":107984894},{"hugoGeneSymbol":"LOC107984895","entrezGeneId":107984895},{"hugoGeneSymbol":"LOC107984896","entrezGeneId":107984896},{"hugoGeneSymbol":"LOC107984897","entrezGeneId":107984897},{"hugoGeneSymbol":"LOC107984898","entrezGeneId":107984898},{"hugoGeneSymbol":"LOC107984900","entrezGeneId":107984900},{"hugoGeneSymbol":"LOC107984901","entrezGeneId":107984901},{"hugoGeneSymbol":"LOC107984902","entrezGeneId":107984902},{"hugoGeneSymbol":"LOC107984903","entrezGeneId":107984903},{"hugoGeneSymbol":"LOC107984904","entrezGeneId":107984904},{"hugoGeneSymbol":"LOC107984905","entrezGeneId":107984905},{"hugoGeneSymbol":"LOC107984906","entrezGeneId":107984906},{"hugoGeneSymbol":"LOC107984909","entrezGeneId":107984909},{"hugoGeneSymbol":"LOC107984910","entrezGeneId":107984910},{"hugoGeneSymbol":"LOC107984911","entrezGeneId":107984911},{"hugoGeneSymbol":"LOC107984912","entrezGeneId":107984912},{"hugoGeneSymbol":"LOC107984913","entrezGeneId":107984913},{"hugoGeneSymbol":"LOC107984915","entrezGeneId":107984915},{"hugoGeneSymbol":"LOC107984916","entrezGeneId":107984916},{"hugoGeneSymbol":"LOC107984917","entrezGeneId":107984917},{"hugoGeneSymbol":"LOC107984918","entrezGeneId":107984918},{"hugoGeneSymbol":"LOC107984919","entrezGeneId":107984919},{"hugoGeneSymbol":"LOC107984923","entrezGeneId":107984923},{"hugoGeneSymbol":"LOC107984928","entrezGeneId":107984928},{"hugoGeneSymbol":"LOC107984929","entrezGeneId":107984929},{"hugoGeneSymbol":"LOC107984931","entrezGeneId":107984931},{"hugoGeneSymbol":"LOC107984932","entrezGeneId":107984932},{"hugoGeneSymbol":"LOC107984933","entrezGeneId":107984933},{"hugoGeneSymbol":"LOC107984934","entrezGeneId":107984934},{"hugoGeneSymbol":"LOC107984935","entrezGeneId":107984935},{"hugoGeneSymbol":"LOC107984936","entrezGeneId":107984936},{"hugoGeneSymbol":"LOC107984940","entrezGeneId":107984940},{"hugoGeneSymbol":"LOC107984941","entrezGeneId":107984941},{"hugoGeneSymbol":"LOC107984942","entrezGeneId":107984942},{"hugoGeneSymbol":"LOC107984943","entrezGeneId":107984943},{"hugoGeneSymbol":"LOC107984945","entrezGeneId":107984945},{"hugoGeneSymbol":"LOC107984946","entrezGeneId":107984946},{"hugoGeneSymbol":"LOC107984947","entrezGeneId":107984947},{"hugoGeneSymbol":"LOC107984948","entrezGeneId":107984948},{"hugoGeneSymbol":"LOC107984950","entrezGeneId":107984950},{"hugoGeneSymbol":"LOC107984951","entrezGeneId":107984951},{"hugoGeneSymbol":"LOC107984952","entrezGeneId":107984952},{"hugoGeneSymbol":"LOC107984954","entrezGeneId":107984954},{"hugoGeneSymbol":"LOC107984955","entrezGeneId":107984955},{"hugoGeneSymbol":"LOC107984956","entrezGeneId":107984956},{"hugoGeneSymbol":"LOC107984957","entrezGeneId":107984957},{"hugoGeneSymbol":"LOC107984958","entrezGeneId":107984958},{"hugoGeneSymbol":"LOC107984960","entrezGeneId":107984960},{"hugoGeneSymbol":"LOC107984961","entrezGeneId":107984961},{"hugoGeneSymbol":"LOC107984962","entrezGeneId":107984962},{"hugoGeneSymbol":"LOC107984963","entrezGeneId":107984963},{"hugoGeneSymbol":"LOC107984964","entrezGeneId":107984964},{"hugoGeneSymbol":"LOC107984965","entrezGeneId":107984965},{"hugoGeneSymbol":"LOC107984966","entrezGeneId":107984966},{"hugoGeneSymbol":"LOC107984967","entrezGeneId":107984967},{"hugoGeneSymbol":"LOC107984969","entrezGeneId":107984969},{"hugoGeneSymbol":"LOC107984970","entrezGeneId":107984970},{"hugoGeneSymbol":"LOC107984971","entrezGeneId":107984971},{"hugoGeneSymbol":"LOC107984972","entrezGeneId":107984972},{"hugoGeneSymbol":"LOC107984973","entrezGeneId":107984973},{"hugoGeneSymbol":"LOC107984974","entrezGeneId":107984974},{"hugoGeneSymbol":"LOC107984976","entrezGeneId":107984976},{"hugoGeneSymbol":"LOC107984979","entrezGeneId":107984979},{"hugoGeneSymbol":"LOC107984980","entrezGeneId":107984980},{"hugoGeneSymbol":"LOC107984982","entrezGeneId":107984982},{"hugoGeneSymbol":"LOC107984983","entrezGeneId":107984983},{"hugoGeneSymbol":"LOC107984984","entrezGeneId":107984984},{"hugoGeneSymbol":"LOC107984986","entrezGeneId":107984986},{"hugoGeneSymbol":"LOC107984988","entrezGeneId":107984988},{"hugoGeneSymbol":"LOC107984989","entrezGeneId":107984989},{"hugoGeneSymbol":"LOC107984990","entrezGeneId":107984990},{"hugoGeneSymbol":"LOC107984991","entrezGeneId":107984991},{"hugoGeneSymbol":"LOC107984992","entrezGeneId":107984992},{"hugoGeneSymbol":"LOC107984993","entrezGeneId":107984993},{"hugoGeneSymbol":"LOC107984996","entrezGeneId":107984996},{"hugoGeneSymbol":"LOC107984997","entrezGeneId":107984997},{"hugoGeneSymbol":"LOC107984998","entrezGeneId":107984998},{"hugoGeneSymbol":"LOC107984999","entrezGeneId":107984999},{"hugoGeneSymbol":"LOC107985000","entrezGeneId":107985000},{"hugoGeneSymbol":"LOC107985001","entrezGeneId":107985001},{"hugoGeneSymbol":"LOC107985002","entrezGeneId":107985002},{"hugoGeneSymbol":"LOC107985004","entrezGeneId":107985004},{"hugoGeneSymbol":"LOC107985005","entrezGeneId":107985005},{"hugoGeneSymbol":"LOC107985006","entrezGeneId":107985006},{"hugoGeneSymbol":"LOC107985007","entrezGeneId":107985007},{"hugoGeneSymbol":"LOC107985009","entrezGeneId":107985009},{"hugoGeneSymbol":"LOC107985010","entrezGeneId":107985010},{"hugoGeneSymbol":"LOC107985011","entrezGeneId":107985011},{"hugoGeneSymbol":"LOC107985012","entrezGeneId":107985012},{"hugoGeneSymbol":"LOC107985013","entrezGeneId":107985013},{"hugoGeneSymbol":"LOC107985014","entrezGeneId":107985014},{"hugoGeneSymbol":"LOC107985015","entrezGeneId":107985015},{"hugoGeneSymbol":"LOC107985017","entrezGeneId":107985017},{"hugoGeneSymbol":"LOC107985018","entrezGeneId":107985018},{"hugoGeneSymbol":"LOC107985019","entrezGeneId":107985019},{"hugoGeneSymbol":"LOC107985020","entrezGeneId":107985020},{"hugoGeneSymbol":"LOC107985021","entrezGeneId":107985021},{"hugoGeneSymbol":"LOC107985022","entrezGeneId":107985022},{"hugoGeneSymbol":"LOC107985023","entrezGeneId":107985023},{"hugoGeneSymbol":"LOC107985026","entrezGeneId":107985026},{"hugoGeneSymbol":"LOC107985027","entrezGeneId":107985027},{"hugoGeneSymbol":"LOC107985028","entrezGeneId":107985028},{"hugoGeneSymbol":"LOC107985029","entrezGeneId":107985029},{"hugoGeneSymbol":"LOC107985031","entrezGeneId":107985031},{"hugoGeneSymbol":"LOC107985032","entrezGeneId":107985032},{"hugoGeneSymbol":"LOC107985033","entrezGeneId":107985033},{"hugoGeneSymbol":"LOC107985034","entrezGeneId":107985034},{"hugoGeneSymbol":"LOC107985035","entrezGeneId":107985035},{"hugoGeneSymbol":"LOC107985036","entrezGeneId":107985036},{"hugoGeneSymbol":"LOC107985037","entrezGeneId":107985037},{"hugoGeneSymbol":"LOC107985038","entrezGeneId":107985038},{"hugoGeneSymbol":"LOC107985039","entrezGeneId":107985039},{"hugoGeneSymbol":"LOC107985040","entrezGeneId":107985040},{"hugoGeneSymbol":"LOC107985041","entrezGeneId":107985041},{"hugoGeneSymbol":"LOC107985043","entrezGeneId":107985043},{"hugoGeneSymbol":"LOC107985044","entrezGeneId":107985044},{"hugoGeneSymbol":"LOC107985046","entrezGeneId":107985046},{"hugoGeneSymbol":"LOC107985047","entrezGeneId":107985047},{"hugoGeneSymbol":"LOC107985048","entrezGeneId":107985048},{"hugoGeneSymbol":"LOC107985049","entrezGeneId":107985049},{"hugoGeneSymbol":"LOC107985050","entrezGeneId":107985050},{"hugoGeneSymbol":"LOC107985051","entrezGeneId":107985051},{"hugoGeneSymbol":"LOC107985052","entrezGeneId":107985052},{"hugoGeneSymbol":"LOC107985053","entrezGeneId":107985053},{"hugoGeneSymbol":"LOC107985054","entrezGeneId":107985054},{"hugoGeneSymbol":"LOC107985055","entrezGeneId":107985055},{"hugoGeneSymbol":"LOC107985056","entrezGeneId":107985056},{"hugoGeneSymbol":"LOC107985057","entrezGeneId":107985057},{"hugoGeneSymbol":"LOC107985059","entrezGeneId":107985059},{"hugoGeneSymbol":"LOC107985061","entrezGeneId":107985061},{"hugoGeneSymbol":"LOC107985063","entrezGeneId":107985063},{"hugoGeneSymbol":"LOC107985064","entrezGeneId":107985064},{"hugoGeneSymbol":"LOC107985065","entrezGeneId":107985065},{"hugoGeneSymbol":"LOC107985067","entrezGeneId":107985067},{"hugoGeneSymbol":"LOC107985068","entrezGeneId":107985068},{"hugoGeneSymbol":"LOC107985069","entrezGeneId":107985069},{"hugoGeneSymbol":"LOC107985071","entrezGeneId":107985071},{"hugoGeneSymbol":"LOC107985072","entrezGeneId":107985072},{"hugoGeneSymbol":"LOC107985073","entrezGeneId":107985073},{"hugoGeneSymbol":"LOC107985074","entrezGeneId":107985074},{"hugoGeneSymbol":"LOC107985075","entrezGeneId":107985075},{"hugoGeneSymbol":"LOC107985076","entrezGeneId":107985076},{"hugoGeneSymbol":"LOC107985077","entrezGeneId":107985077},{"hugoGeneSymbol":"LOC107985078","entrezGeneId":107985078},{"hugoGeneSymbol":"LOC107985079","entrezGeneId":107985079},{"hugoGeneSymbol":"LOC107985080","entrezGeneId":107985080},{"hugoGeneSymbol":"LOC107985081","entrezGeneId":107985081},{"hugoGeneSymbol":"LOC107985082","entrezGeneId":107985082},{"hugoGeneSymbol":"LOC107985085","entrezGeneId":107985085},{"hugoGeneSymbol":"LOC107985086","entrezGeneId":107985086},{"hugoGeneSymbol":"LOC107985087","entrezGeneId":107985087},{"hugoGeneSymbol":"LOC107985088","entrezGeneId":107985088},{"hugoGeneSymbol":"LOC107985089","entrezGeneId":107985089},{"hugoGeneSymbol":"LOC107985090","entrezGeneId":107985090},{"hugoGeneSymbol":"LOC107985091","entrezGeneId":107985091},{"hugoGeneSymbol":"LOC107985092","entrezGeneId":107985092},{"hugoGeneSymbol":"LOC107985093","entrezGeneId":107985093},{"hugoGeneSymbol":"LOC107985094","entrezGeneId":107985094},{"hugoGeneSymbol":"LOC107985095","entrezGeneId":107985095},{"hugoGeneSymbol":"LOC107985096","entrezGeneId":107985096},{"hugoGeneSymbol":"LOC107985097","entrezGeneId":107985097},{"hugoGeneSymbol":"LOC107985098","entrezGeneId":107985098},{"hugoGeneSymbol":"LOC107985099","entrezGeneId":107985099},{"hugoGeneSymbol":"LOC107985100","entrezGeneId":107985100},{"hugoGeneSymbol":"LOC107985101","entrezGeneId":107985101},{"hugoGeneSymbol":"LOC107985102","entrezGeneId":107985102},{"hugoGeneSymbol":"LOC107985103","entrezGeneId":107985103},{"hugoGeneSymbol":"LOC107985104","entrezGeneId":107985104},{"hugoGeneSymbol":"LOC107985106","entrezGeneId":107985106},{"hugoGeneSymbol":"LOC107985107","entrezGeneId":107985107},{"hugoGeneSymbol":"LOC107985108","entrezGeneId":107985108},{"hugoGeneSymbol":"LOC107985110","entrezGeneId":107985110},{"hugoGeneSymbol":"LOC107985113","entrezGeneId":107985113},{"hugoGeneSymbol":"LOC107985114","entrezGeneId":107985114},{"hugoGeneSymbol":"LOC107985115","entrezGeneId":107985115},{"hugoGeneSymbol":"LOC107985116","entrezGeneId":107985116},{"hugoGeneSymbol":"LOC107985118","entrezGeneId":107985118},{"hugoGeneSymbol":"LOC107985119","entrezGeneId":107985119},{"hugoGeneSymbol":"LOC107985120","entrezGeneId":107985120},{"hugoGeneSymbol":"LOC107985122","entrezGeneId":107985122},{"hugoGeneSymbol":"LOC107985124","entrezGeneId":107985124},{"hugoGeneSymbol":"LOC107985125","entrezGeneId":107985125},{"hugoGeneSymbol":"LOC107985126","entrezGeneId":107985126},{"hugoGeneSymbol":"LOC107985129","entrezGeneId":107985129},{"hugoGeneSymbol":"LOC107985130","entrezGeneId":107985130},{"hugoGeneSymbol":"LOC107985131","entrezGeneId":107985131},{"hugoGeneSymbol":"LOC107985132","entrezGeneId":107985132},{"hugoGeneSymbol":"LOC107985134","entrezGeneId":107985134},{"hugoGeneSymbol":"LOC107985135","entrezGeneId":107985135},{"hugoGeneSymbol":"LOC107985136","entrezGeneId":107985136},{"hugoGeneSymbol":"LOC107985137","entrezGeneId":107985137},{"hugoGeneSymbol":"LOC107985138","entrezGeneId":107985138},{"hugoGeneSymbol":"LOC107985139","entrezGeneId":107985139},{"hugoGeneSymbol":"LOC107985141","entrezGeneId":107985141},{"hugoGeneSymbol":"LOC107985142","entrezGeneId":107985142},{"hugoGeneSymbol":"LOC107985143","entrezGeneId":107985143},{"hugoGeneSymbol":"LOC107985144","entrezGeneId":107985144},{"hugoGeneSymbol":"LOC107985145","entrezGeneId":107985145},{"hugoGeneSymbol":"LOC107985147","entrezGeneId":107985147},{"hugoGeneSymbol":"LOC107985149","entrezGeneId":107985149},{"hugoGeneSymbol":"LOC107985151","entrezGeneId":107985151},{"hugoGeneSymbol":"LOC107985152","entrezGeneId":107985152},{"hugoGeneSymbol":"LOC107985153","entrezGeneId":107985153},{"hugoGeneSymbol":"LOC107985154","entrezGeneId":107985154},{"hugoGeneSymbol":"LOC107985155","entrezGeneId":107985155},{"hugoGeneSymbol":"LOC107985156","entrezGeneId":107985156},{"hugoGeneSymbol":"LOC107985157","entrezGeneId":107985157},{"hugoGeneSymbol":"LOC107985158","entrezGeneId":107985158},{"hugoGeneSymbol":"LOC107985159","entrezGeneId":107985159},{"hugoGeneSymbol":"LOC107985160","entrezGeneId":107985160},{"hugoGeneSymbol":"LOC107985161","entrezGeneId":107985161},{"hugoGeneSymbol":"LOC107985162","entrezGeneId":107985162},{"hugoGeneSymbol":"LOC107985163","entrezGeneId":107985163},{"hugoGeneSymbol":"LOC107985164","entrezGeneId":107985164},{"hugoGeneSymbol":"LOC107985165","entrezGeneId":107985165},{"hugoGeneSymbol":"LOC107985166","entrezGeneId":107985166},{"hugoGeneSymbol":"LOC107985168","entrezGeneId":107985168},{"hugoGeneSymbol":"LOC107985171","entrezGeneId":107985171},{"hugoGeneSymbol":"LOC107985172","entrezGeneId":107985172},{"hugoGeneSymbol":"LOC107985173","entrezGeneId":107985173},{"hugoGeneSymbol":"LOC107985174","entrezGeneId":107985174},{"hugoGeneSymbol":"LOC107985176","entrezGeneId":107985176},{"hugoGeneSymbol":"LOC107985177","entrezGeneId":107985177},{"hugoGeneSymbol":"LOC107985178","entrezGeneId":107985178},{"hugoGeneSymbol":"LOC107985179","entrezGeneId":107985179},{"hugoGeneSymbol":"LOC107985180","entrezGeneId":107985180},{"hugoGeneSymbol":"LOC107985181","entrezGeneId":107985181},{"hugoGeneSymbol":"LOC107985182","entrezGeneId":107985182},{"hugoGeneSymbol":"LOC107985183","entrezGeneId":107985183},{"hugoGeneSymbol":"LOC107985184","entrezGeneId":107985184},{"hugoGeneSymbol":"LOC107985185","entrezGeneId":107985185},{"hugoGeneSymbol":"LOC107985186","entrezGeneId":107985186},{"hugoGeneSymbol":"LOC107985188","entrezGeneId":107985188},{"hugoGeneSymbol":"LOC107985189","entrezGeneId":107985189},{"hugoGeneSymbol":"LOC107985191","entrezGeneId":107985191},{"hugoGeneSymbol":"LOC107985192","entrezGeneId":107985192},{"hugoGeneSymbol":"LOC107985193","entrezGeneId":107985193},{"hugoGeneSymbol":"LOC107985194","entrezGeneId":107985194},{"hugoGeneSymbol":"LOC107985200","entrezGeneId":107985200},{"hugoGeneSymbol":"LOC107985201","entrezGeneId":107985201},{"hugoGeneSymbol":"LOC107985203","entrezGeneId":107985203},{"hugoGeneSymbol":"LOC107985204","entrezGeneId":107985204},{"hugoGeneSymbol":"LOC107985206","entrezGeneId":107985206},{"hugoGeneSymbol":"LOC107985207","entrezGeneId":107985207},{"hugoGeneSymbol":"LOC107985208","entrezGeneId":107985208},{"hugoGeneSymbol":"LOC107985209","entrezGeneId":107985209},{"hugoGeneSymbol":"LOC107985210","entrezGeneId":107985210},{"hugoGeneSymbol":"LOC107985211","entrezGeneId":107985211},{"hugoGeneSymbol":"LOC107985212","entrezGeneId":107985212},{"hugoGeneSymbol":"LOC107985213","entrezGeneId":107985213},{"hugoGeneSymbol":"LOC107985215","entrezGeneId":107985215},{"hugoGeneSymbol":"LOC107985216","entrezGeneId":107985216},{"hugoGeneSymbol":"LOC107985217","entrezGeneId":107985217},{"hugoGeneSymbol":"LOC107985219","entrezGeneId":107985219},{"hugoGeneSymbol":"LOC107985220","entrezGeneId":107985220},{"hugoGeneSymbol":"LOC107985221","entrezGeneId":107985221},{"hugoGeneSymbol":"LOC107985222","entrezGeneId":107985222},{"hugoGeneSymbol":"LOC107985223","entrezGeneId":107985223},{"hugoGeneSymbol":"LOC107985224","entrezGeneId":107985224},{"hugoGeneSymbol":"LOC107985225","entrezGeneId":107985225},{"hugoGeneSymbol":"LOC107985227","entrezGeneId":107985227},{"hugoGeneSymbol":"LOC107985228","entrezGeneId":107985228},{"hugoGeneSymbol":"LOC107985229","entrezGeneId":107985229},{"hugoGeneSymbol":"LOC107985230","entrezGeneId":107985230},{"hugoGeneSymbol":"LOC107985231","entrezGeneId":107985231},{"hugoGeneSymbol":"LOC107985232","entrezGeneId":107985232},{"hugoGeneSymbol":"LOC107985233","entrezGeneId":107985233},{"hugoGeneSymbol":"LOC107985235","entrezGeneId":107985235},{"hugoGeneSymbol":"LOC107985236","entrezGeneId":107985236},{"hugoGeneSymbol":"LOC107985238","entrezGeneId":107985238},{"hugoGeneSymbol":"LOC107985239","entrezGeneId":107985239},{"hugoGeneSymbol":"LOC107985241","entrezGeneId":107985241},{"hugoGeneSymbol":"LOC107985242","entrezGeneId":107985242},{"hugoGeneSymbol":"LOC107985243","entrezGeneId":107985243},{"hugoGeneSymbol":"LOC107985244","entrezGeneId":107985244},{"hugoGeneSymbol":"LOC107985245","entrezGeneId":107985245},{"hugoGeneSymbol":"LOC107985246","entrezGeneId":107985246},{"hugoGeneSymbol":"LOC107985249","entrezGeneId":107985249},{"hugoGeneSymbol":"LOC107985250","entrezGeneId":107985250},{"hugoGeneSymbol":"LOC107985251","entrezGeneId":107985251},{"hugoGeneSymbol":"LOC107985253","entrezGeneId":107985253},{"hugoGeneSymbol":"LOC107985255","entrezGeneId":107985255},{"hugoGeneSymbol":"LOC107985256","entrezGeneId":107985256},{"hugoGeneSymbol":"LOC107985257","entrezGeneId":107985257},{"hugoGeneSymbol":"LOC107985258","entrezGeneId":107985258},{"hugoGeneSymbol":"LOC107985259","entrezGeneId":107985259},{"hugoGeneSymbol":"LOC107985260","entrezGeneId":107985260},{"hugoGeneSymbol":"LOC107985261","entrezGeneId":107985261},{"hugoGeneSymbol":"LOC107985262","entrezGeneId":107985262},{"hugoGeneSymbol":"LOC107985263","entrezGeneId":107985263},{"hugoGeneSymbol":"LOC107985264","entrezGeneId":107985264},{"hugoGeneSymbol":"LOC107985265","entrezGeneId":107985265},{"hugoGeneSymbol":"LOC107985268","entrezGeneId":107985268},{"hugoGeneSymbol":"LOC107985269","entrezGeneId":107985269},{"hugoGeneSymbol":"LOC107985270","entrezGeneId":107985270},{"hugoGeneSymbol":"LOC107985271","entrezGeneId":107985271},{"hugoGeneSymbol":"LOC107985272","entrezGeneId":107985272},{"hugoGeneSymbol":"LOC107985273","entrezGeneId":107985273},{"hugoGeneSymbol":"LOC107985276","entrezGeneId":107985276},{"hugoGeneSymbol":"LOC107985278","entrezGeneId":107985278},{"hugoGeneSymbol":"LOC107985279","entrezGeneId":107985279},{"hugoGeneSymbol":"LOC107985281","entrezGeneId":107985281},{"hugoGeneSymbol":"LOC107985282","entrezGeneId":107985282},{"hugoGeneSymbol":"LOC107985284","entrezGeneId":107985284},{"hugoGeneSymbol":"LOC107985285","entrezGeneId":107985285},{"hugoGeneSymbol":"LOC107985286","entrezGeneId":107985286},{"hugoGeneSymbol":"LOC107985287","entrezGeneId":107985287},{"hugoGeneSymbol":"LOC107985288","entrezGeneId":107985288},{"hugoGeneSymbol":"LOC107985289","entrezGeneId":107985289},{"hugoGeneSymbol":"LOC107985290","entrezGeneId":107985290},{"hugoGeneSymbol":"LOC107985291","entrezGeneId":107985291},{"hugoGeneSymbol":"LOC107985293","entrezGeneId":107985293},{"hugoGeneSymbol":"LOC107985295","entrezGeneId":107985295},{"hugoGeneSymbol":"LOC107985296","entrezGeneId":107985296},{"hugoGeneSymbol":"LOC107985297","entrezGeneId":107985297},{"hugoGeneSymbol":"LOC107985299","entrezGeneId":107985299},{"hugoGeneSymbol":"LOC107985300","entrezGeneId":107985300},{"hugoGeneSymbol":"LOC107985301","entrezGeneId":107985301},{"hugoGeneSymbol":"LOC107985302","entrezGeneId":107985302},{"hugoGeneSymbol":"LOC107985303","entrezGeneId":107985303},{"hugoGeneSymbol":"LOC107985304","entrezGeneId":107985304},{"hugoGeneSymbol":"LOC107985305","entrezGeneId":107985305},{"hugoGeneSymbol":"LOC107985306","entrezGeneId":107985306},{"hugoGeneSymbol":"LOC107985308","entrezGeneId":107985308},{"hugoGeneSymbol":"LOC107985309","entrezGeneId":107985309},{"hugoGeneSymbol":"LOC107985311","entrezGeneId":107985311},{"hugoGeneSymbol":"LOC107985314","entrezGeneId":107985314},{"hugoGeneSymbol":"LOC107985315","entrezGeneId":107985315},{"hugoGeneSymbol":"LOC107985317","entrezGeneId":107985317},{"hugoGeneSymbol":"LOC107985318","entrezGeneId":107985318},{"hugoGeneSymbol":"LOC107985320","entrezGeneId":107985320},{"hugoGeneSymbol":"LOC107985321","entrezGeneId":107985321},{"hugoGeneSymbol":"LOC107985322","entrezGeneId":107985322},{"hugoGeneSymbol":"LOC107985323","entrezGeneId":107985323},{"hugoGeneSymbol":"LOC107985324","entrezGeneId":107985324},{"hugoGeneSymbol":"LOC107985325","entrezGeneId":107985325},{"hugoGeneSymbol":"LOC107985326","entrezGeneId":107985326},{"hugoGeneSymbol":"LOC107985327","entrezGeneId":107985327},{"hugoGeneSymbol":"LOC107985329","entrezGeneId":107985329},{"hugoGeneSymbol":"LOC107985332","entrezGeneId":107985332},{"hugoGeneSymbol":"LOC107985334","entrezGeneId":107985334},{"hugoGeneSymbol":"LOC107985335","entrezGeneId":107985335},{"hugoGeneSymbol":"LOC107985336","entrezGeneId":107985336},{"hugoGeneSymbol":"LOC107985337","entrezGeneId":107985337},{"hugoGeneSymbol":"LOC107985338","entrezGeneId":107985338},{"hugoGeneSymbol":"LOC107985340","entrezGeneId":107985340},{"hugoGeneSymbol":"LOC107985341","entrezGeneId":107985341},{"hugoGeneSymbol":"LOC107985342","entrezGeneId":107985342},{"hugoGeneSymbol":"LOC107985345","entrezGeneId":107985345},{"hugoGeneSymbol":"LOC107985346","entrezGeneId":107985346},{"hugoGeneSymbol":"LOC107985347","entrezGeneId":107985347},{"hugoGeneSymbol":"LOC107985349","entrezGeneId":107985349},{"hugoGeneSymbol":"LOC107985352","entrezGeneId":107985352},{"hugoGeneSymbol":"LOC107985354","entrezGeneId":107985354},{"hugoGeneSymbol":"LOC107985355","entrezGeneId":107985355},{"hugoGeneSymbol":"LOC107985357","entrezGeneId":107985357},{"hugoGeneSymbol":"LOC107985358","entrezGeneId":107985358},{"hugoGeneSymbol":"LOC107985359","entrezGeneId":107985359},{"hugoGeneSymbol":"LOC107985360","entrezGeneId":107985360},{"hugoGeneSymbol":"LOC107985361","entrezGeneId":107985361},{"hugoGeneSymbol":"LOC107985362","entrezGeneId":107985362},{"hugoGeneSymbol":"LOC107985363","entrezGeneId":107985363},{"hugoGeneSymbol":"LOC107985364","entrezGeneId":107985364},{"hugoGeneSymbol":"LOC107985365","entrezGeneId":107985365},{"hugoGeneSymbol":"LOC107985366","entrezGeneId":107985366},{"hugoGeneSymbol":"LOC107985367","entrezGeneId":107985367},{"hugoGeneSymbol":"LOC107985368","entrezGeneId":107985368},{"hugoGeneSymbol":"LOC107985369","entrezGeneId":107985369},{"hugoGeneSymbol":"LOC107985371","entrezGeneId":107985371},{"hugoGeneSymbol":"LOC107985372","entrezGeneId":107985372},{"hugoGeneSymbol":"LOC107985373","entrezGeneId":107985373},{"hugoGeneSymbol":"LOC107985375","entrezGeneId":107985375},{"hugoGeneSymbol":"LOC107985376","entrezGeneId":107985376},{"hugoGeneSymbol":"LOC107985377","entrezGeneId":107985377},{"hugoGeneSymbol":"LOC107985379","entrezGeneId":107985379},{"hugoGeneSymbol":"LOC107985380","entrezGeneId":107985380},{"hugoGeneSymbol":"LOC107985381","entrezGeneId":107985381},{"hugoGeneSymbol":"LOC107985382","entrezGeneId":107985382},{"hugoGeneSymbol":"LOC107985383","entrezGeneId":107985383},{"hugoGeneSymbol":"LOC107985384","entrezGeneId":107985384},{"hugoGeneSymbol":"LOC107985385","entrezGeneId":107985385},{"hugoGeneSymbol":"LOC107985386","entrezGeneId":107985386},{"hugoGeneSymbol":"LOC107985387","entrezGeneId":107985387},{"hugoGeneSymbol":"LOC107985388","entrezGeneId":107985388},{"hugoGeneSymbol":"LOC107985389","entrezGeneId":107985389},{"hugoGeneSymbol":"LOC107985391","entrezGeneId":107985391},{"hugoGeneSymbol":"LOC107985392","entrezGeneId":107985392},{"hugoGeneSymbol":"LOC107985393","entrezGeneId":107985393},{"hugoGeneSymbol":"LOC107985394","entrezGeneId":107985394},{"hugoGeneSymbol":"LOC107985395","entrezGeneId":107985395},{"hugoGeneSymbol":"LOC107985396","entrezGeneId":107985396},{"hugoGeneSymbol":"LOC107985397","entrezGeneId":107985397},{"hugoGeneSymbol":"LOC107985398","entrezGeneId":107985398},{"hugoGeneSymbol":"LOC107985399","entrezGeneId":107985399},{"hugoGeneSymbol":"LOC107985400","entrezGeneId":107985400},{"hugoGeneSymbol":"LOC107985401","entrezGeneId":107985401},{"hugoGeneSymbol":"LOC107985402","entrezGeneId":107985402},{"hugoGeneSymbol":"LOC107985403","entrezGeneId":107985403},{"hugoGeneSymbol":"LOC107985404","entrezGeneId":107985404},{"hugoGeneSymbol":"LOC107985405","entrezGeneId":107985405},{"hugoGeneSymbol":"LOC107985406","entrezGeneId":107985406},{"hugoGeneSymbol":"LOC107985407","entrezGeneId":107985407},{"hugoGeneSymbol":"LOC107985408","entrezGeneId":107985408},{"hugoGeneSymbol":"LOC107985409","entrezGeneId":107985409},{"hugoGeneSymbol":"LOC107985410","entrezGeneId":107985410},{"hugoGeneSymbol":"LOC107985411","entrezGeneId":107985411},{"hugoGeneSymbol":"LOC107985412","entrezGeneId":107985412},{"hugoGeneSymbol":"LOC107985413","entrezGeneId":107985413},{"hugoGeneSymbol":"LOC107985414","entrezGeneId":107985414},{"hugoGeneSymbol":"LOC107985416","entrezGeneId":107985416},{"hugoGeneSymbol":"LOC107985417","entrezGeneId":107985417},{"hugoGeneSymbol":"LOC107985418","entrezGeneId":107985418},{"hugoGeneSymbol":"LOC107985420","entrezGeneId":107985420},{"hugoGeneSymbol":"LOC107985421","entrezGeneId":107985421},{"hugoGeneSymbol":"LOC107985423","entrezGeneId":107985423},{"hugoGeneSymbol":"LOC107985427","entrezGeneId":107985427},{"hugoGeneSymbol":"LOC107985428","entrezGeneId":107985428},{"hugoGeneSymbol":"LOC107985429","entrezGeneId":107985429},{"hugoGeneSymbol":"LOC107985430","entrezGeneId":107985430},{"hugoGeneSymbol":"LOC107985432","entrezGeneId":107985432},{"hugoGeneSymbol":"LOC107985433","entrezGeneId":107985433},{"hugoGeneSymbol":"LOC107985434","entrezGeneId":107985434},{"hugoGeneSymbol":"LOC107985435","entrezGeneId":107985435},{"hugoGeneSymbol":"LOC107985436","entrezGeneId":107985436},{"hugoGeneSymbol":"LOC107985437","entrezGeneId":107985437},{"hugoGeneSymbol":"LOC107985438","entrezGeneId":107985438},{"hugoGeneSymbol":"LOC107985439","entrezGeneId":107985439},{"hugoGeneSymbol":"LOC107985440","entrezGeneId":107985440},{"hugoGeneSymbol":"LOC107985441","entrezGeneId":107985441},{"hugoGeneSymbol":"LOC107985442","entrezGeneId":107985442},{"hugoGeneSymbol":"LOC107985443","entrezGeneId":107985443},{"hugoGeneSymbol":"LOC107985446","entrezGeneId":107985446},{"hugoGeneSymbol":"LOC107985447","entrezGeneId":107985447},{"hugoGeneSymbol":"LOC107985448","entrezGeneId":107985448},{"hugoGeneSymbol":"LOC107985449","entrezGeneId":107985449},{"hugoGeneSymbol":"LOC107985451","entrezGeneId":107985451},{"hugoGeneSymbol":"LOC107985452","entrezGeneId":107985452},{"hugoGeneSymbol":"LOC107985453","entrezGeneId":107985453},{"hugoGeneSymbol":"LOC107985454","entrezGeneId":107985454},{"hugoGeneSymbol":"LOC107985455","entrezGeneId":107985455},{"hugoGeneSymbol":"LOC107985457","entrezGeneId":107985457},{"hugoGeneSymbol":"LOC107985458","entrezGeneId":107985458},{"hugoGeneSymbol":"LOC107985459","entrezGeneId":107985459},{"hugoGeneSymbol":"LOC107985460","entrezGeneId":107985460},{"hugoGeneSymbol":"LOC107985461","entrezGeneId":107985461},{"hugoGeneSymbol":"LOC107985462","entrezGeneId":107985462},{"hugoGeneSymbol":"LOC107985464","entrezGeneId":107985464},{"hugoGeneSymbol":"LOC107985465","entrezGeneId":107985465},{"hugoGeneSymbol":"LOC107985466","entrezGeneId":107985466},{"hugoGeneSymbol":"LOC107985467","entrezGeneId":107985467},{"hugoGeneSymbol":"LOC107985468","entrezGeneId":107985468},{"hugoGeneSymbol":"LOC107985469","entrezGeneId":107985469},{"hugoGeneSymbol":"LOC107985470","entrezGeneId":107985470},{"hugoGeneSymbol":"LOC107985471","entrezGeneId":107985471},{"hugoGeneSymbol":"LOC107985472","entrezGeneId":107985472},{"hugoGeneSymbol":"LOC107985474","entrezGeneId":107985474},{"hugoGeneSymbol":"LOC107985475","entrezGeneId":107985475},{"hugoGeneSymbol":"LOC107985476","entrezGeneId":107985476},{"hugoGeneSymbol":"LOC107985478","entrezGeneId":107985478},{"hugoGeneSymbol":"LOC107985479","entrezGeneId":107985479},{"hugoGeneSymbol":"LOC107985480","entrezGeneId":107985480},{"hugoGeneSymbol":"LOC107985481","entrezGeneId":107985481},{"hugoGeneSymbol":"LOC107985482","entrezGeneId":107985482},{"hugoGeneSymbol":"LOC107985483","entrezGeneId":107985483},{"hugoGeneSymbol":"LOC107985484","entrezGeneId":107985484},{"hugoGeneSymbol":"LOC107985485","entrezGeneId":107985485},{"hugoGeneSymbol":"LOC107985486","entrezGeneId":107985486},{"hugoGeneSymbol":"LOC107985487","entrezGeneId":107985487},{"hugoGeneSymbol":"LOC107985488","entrezGeneId":107985488},{"hugoGeneSymbol":"LOC107985490","entrezGeneId":107985490},{"hugoGeneSymbol":"LOC107985492","entrezGeneId":107985492},{"hugoGeneSymbol":"LOC107985494","entrezGeneId":107985494},{"hugoGeneSymbol":"LOC107985495","entrezGeneId":107985495},{"hugoGeneSymbol":"LOC107985497","entrezGeneId":107985497},{"hugoGeneSymbol":"LOC107985499","entrezGeneId":107985499},{"hugoGeneSymbol":"LOC107985500","entrezGeneId":107985500},{"hugoGeneSymbol":"LOC107985501","entrezGeneId":107985501},{"hugoGeneSymbol":"LOC107985502","entrezGeneId":107985502},{"hugoGeneSymbol":"LOC107985504","entrezGeneId":107985504},{"hugoGeneSymbol":"LOC107985505","entrezGeneId":107985505},{"hugoGeneSymbol":"LOC107985506","entrezGeneId":107985506},{"hugoGeneSymbol":"LOC107985507","entrezGeneId":107985507},{"hugoGeneSymbol":"LOC107985508","entrezGeneId":107985508},{"hugoGeneSymbol":"LOC107985509","entrezGeneId":107985509},{"hugoGeneSymbol":"LOC107985511","entrezGeneId":107985511},{"hugoGeneSymbol":"LOC107985512","entrezGeneId":107985512},{"hugoGeneSymbol":"LOC107985513","entrezGeneId":107985513},{"hugoGeneSymbol":"LOC107985515","entrezGeneId":107985515},{"hugoGeneSymbol":"LOC107985516","entrezGeneId":107985516},{"hugoGeneSymbol":"LOC107985517","entrezGeneId":107985517},{"hugoGeneSymbol":"LOC107985518","entrezGeneId":107985518},{"hugoGeneSymbol":"LOC107985521","entrezGeneId":107985521},{"hugoGeneSymbol":"LOC107985522","entrezGeneId":107985522},{"hugoGeneSymbol":"LOC107985523","entrezGeneId":107985523},{"hugoGeneSymbol":"LOC107985524","entrezGeneId":107985524},{"hugoGeneSymbol":"LOC107985525","entrezGeneId":107985525},{"hugoGeneSymbol":"LOC107985526","entrezGeneId":107985526},{"hugoGeneSymbol":"LOC107985528","entrezGeneId":107985528},{"hugoGeneSymbol":"LOC107985529","entrezGeneId":107985529},{"hugoGeneSymbol":"LOC107985530","entrezGeneId":107985530},{"hugoGeneSymbol":"LOC107985532","entrezGeneId":107985532},{"hugoGeneSymbol":"LOC107985533","entrezGeneId":107985533},{"hugoGeneSymbol":"LOC107985534","entrezGeneId":107985534},{"hugoGeneSymbol":"LOC107985535","entrezGeneId":107985535},{"hugoGeneSymbol":"LOC107985536","entrezGeneId":107985536},{"hugoGeneSymbol":"LOC107985537","entrezGeneId":107985537},{"hugoGeneSymbol":"LOC107985538","entrezGeneId":107985538},{"hugoGeneSymbol":"LOC107985541","entrezGeneId":107985541},{"hugoGeneSymbol":"LOC107985542","entrezGeneId":107985542},{"hugoGeneSymbol":"LOC107985543","entrezGeneId":107985543},{"hugoGeneSymbol":"LOC107985544","entrezGeneId":107985544},{"hugoGeneSymbol":"LOC107985545","entrezGeneId":107985545},{"hugoGeneSymbol":"LOC107985549","entrezGeneId":107985549},{"hugoGeneSymbol":"LOC107985550","entrezGeneId":107985550},{"hugoGeneSymbol":"LOC107985551","entrezGeneId":107985551},{"hugoGeneSymbol":"LOC107985553","entrezGeneId":107985553},{"hugoGeneSymbol":"LOC107985554","entrezGeneId":107985554},{"hugoGeneSymbol":"LOC107985555","entrezGeneId":107985555},{"hugoGeneSymbol":"LOC107985556","entrezGeneId":107985556},{"hugoGeneSymbol":"LOC107985557","entrezGeneId":107985557},{"hugoGeneSymbol":"LOC107985558","entrezGeneId":107985558},{"hugoGeneSymbol":"LOC107985561","entrezGeneId":107985561},{"hugoGeneSymbol":"LOC107985562","entrezGeneId":107985562},{"hugoGeneSymbol":"LOC107985563","entrezGeneId":107985563},{"hugoGeneSymbol":"LOC107985564","entrezGeneId":107985564},{"hugoGeneSymbol":"LOC107985565","entrezGeneId":107985565},{"hugoGeneSymbol":"LOC107985566","entrezGeneId":107985566},{"hugoGeneSymbol":"LOC107985567","entrezGeneId":107985567},{"hugoGeneSymbol":"LOC107985568","entrezGeneId":107985568},{"hugoGeneSymbol":"LOC107985570","entrezGeneId":107985570},{"hugoGeneSymbol":"LOC107985571","entrezGeneId":107985571},{"hugoGeneSymbol":"LOC107985573","entrezGeneId":107985573},{"hugoGeneSymbol":"LOC107985576","entrezGeneId":107985576},{"hugoGeneSymbol":"LOC107985577","entrezGeneId":107985577},{"hugoGeneSymbol":"LOC107985579","entrezGeneId":107985579},{"hugoGeneSymbol":"LOC107985580","entrezGeneId":107985580},{"hugoGeneSymbol":"LOC107985581","entrezGeneId":107985581},{"hugoGeneSymbol":"LOC107985582","entrezGeneId":107985582},{"hugoGeneSymbol":"LOC107985584","entrezGeneId":107985584},{"hugoGeneSymbol":"LOC107985588","entrezGeneId":107985588},{"hugoGeneSymbol":"LOC107985590","entrezGeneId":107985590},{"hugoGeneSymbol":"LOC107985591","entrezGeneId":107985591},{"hugoGeneSymbol":"LOC107985593","entrezGeneId":107985593},{"hugoGeneSymbol":"LOC107985594","entrezGeneId":107985594},{"hugoGeneSymbol":"LOC107985595","entrezGeneId":107985595},{"hugoGeneSymbol":"LOC107985596","entrezGeneId":107985596},{"hugoGeneSymbol":"LOC107985599","entrezGeneId":107985599},{"hugoGeneSymbol":"LOC107985627","entrezGeneId":107985627},{"hugoGeneSymbol":"LOC107985628","entrezGeneId":107985628},{"hugoGeneSymbol":"LOC107985629","entrezGeneId":107985629},{"hugoGeneSymbol":"LOC107985630","entrezGeneId":107985630},{"hugoGeneSymbol":"LOC107985631","entrezGeneId":107985631},{"hugoGeneSymbol":"LOC107985632","entrezGeneId":107985632},{"hugoGeneSymbol":"LOC107985634","entrezGeneId":107985634},{"hugoGeneSymbol":"LOC107985635","entrezGeneId":107985635},{"hugoGeneSymbol":"LOC107985637","entrezGeneId":107985637},{"hugoGeneSymbol":"LOC107985638","entrezGeneId":107985638},{"hugoGeneSymbol":"LOC107985639","entrezGeneId":107985639},{"hugoGeneSymbol":"LOC107985640","entrezGeneId":107985640},{"hugoGeneSymbol":"LOC107985641","entrezGeneId":107985641},{"hugoGeneSymbol":"LOC107985642","entrezGeneId":107985642},{"hugoGeneSymbol":"LOC107985643","entrezGeneId":107985643},{"hugoGeneSymbol":"LOC107985644","entrezGeneId":107985644},{"hugoGeneSymbol":"LOC107985645","entrezGeneId":107985645},{"hugoGeneSymbol":"LOC107985646","entrezGeneId":107985646},{"hugoGeneSymbol":"LOC107985647","entrezGeneId":107985647},{"hugoGeneSymbol":"LOC107985648","entrezGeneId":107985648},{"hugoGeneSymbol":"LOC107985650","entrezGeneId":107985650},{"hugoGeneSymbol":"LOC107985651","entrezGeneId":107985651},{"hugoGeneSymbol":"LOC107985652","entrezGeneId":107985652},{"hugoGeneSymbol":"LOC107985653","entrezGeneId":107985653},{"hugoGeneSymbol":"LOC107985655","entrezGeneId":107985655},{"hugoGeneSymbol":"LOC107985656","entrezGeneId":107985656},{"hugoGeneSymbol":"LOC107985657","entrezGeneId":107985657},{"hugoGeneSymbol":"LOC107985658","entrezGeneId":107985658},{"hugoGeneSymbol":"LOC107985659","entrezGeneId":107985659},{"hugoGeneSymbol":"LOC107985660","entrezGeneId":107985660},{"hugoGeneSymbol":"LOC107985661","entrezGeneId":107985661},{"hugoGeneSymbol":"LOC107985662","entrezGeneId":107985662},{"hugoGeneSymbol":"LOC107985664","entrezGeneId":107985664},{"hugoGeneSymbol":"LOC107985665","entrezGeneId":107985665},{"hugoGeneSymbol":"LOC107985666","entrezGeneId":107985666},{"hugoGeneSymbol":"LOC107985667","entrezGeneId":107985667},{"hugoGeneSymbol":"LOC107985669","entrezGeneId":107985669},{"hugoGeneSymbol":"LOC107985670","entrezGeneId":107985670},{"hugoGeneSymbol":"LOC107985674","entrezGeneId":107985674},{"hugoGeneSymbol":"LOC107985675","entrezGeneId":107985675},{"hugoGeneSymbol":"LOC107985676","entrezGeneId":107985676},{"hugoGeneSymbol":"LOC107985677","entrezGeneId":107985677},{"hugoGeneSymbol":"LOC107985678","entrezGeneId":107985678},{"hugoGeneSymbol":"LOC107985679","entrezGeneId":107985679},{"hugoGeneSymbol":"LOC107985680","entrezGeneId":107985680},{"hugoGeneSymbol":"LOC107985681","entrezGeneId":107985681},{"hugoGeneSymbol":"LOC107985682","entrezGeneId":107985682},{"hugoGeneSymbol":"LOC107985683","entrezGeneId":107985683},{"hugoGeneSymbol":"LOC107985684","entrezGeneId":107985684},{"hugoGeneSymbol":"LOC107985685","entrezGeneId":107985685},{"hugoGeneSymbol":"LOC107985686","entrezGeneId":107985686},{"hugoGeneSymbol":"LOC107985687","entrezGeneId":107985687},{"hugoGeneSymbol":"LOC107985688","entrezGeneId":107985688},{"hugoGeneSymbol":"LOC107985690","entrezGeneId":107985690},{"hugoGeneSymbol":"LOC107985691","entrezGeneId":107985691},{"hugoGeneSymbol":"LOC107985692","entrezGeneId":107985692},{"hugoGeneSymbol":"LOC107985693","entrezGeneId":107985693},{"hugoGeneSymbol":"LOC107985694","entrezGeneId":107985694},{"hugoGeneSymbol":"LOC107985695","entrezGeneId":107985695},{"hugoGeneSymbol":"LOC107985697","entrezGeneId":107985697},{"hugoGeneSymbol":"LOC107985698","entrezGeneId":107985698},{"hugoGeneSymbol":"LOC107985699","entrezGeneId":107985699},{"hugoGeneSymbol":"LOC107985700","entrezGeneId":107985700},{"hugoGeneSymbol":"LOC107985701","entrezGeneId":107985701},{"hugoGeneSymbol":"LOC107985703","entrezGeneId":107985703},{"hugoGeneSymbol":"LOC107985704","entrezGeneId":107985704},{"hugoGeneSymbol":"LOC107985705","entrezGeneId":107985705},{"hugoGeneSymbol":"LOC107985706","entrezGeneId":107985706},{"hugoGeneSymbol":"LOC107985707","entrezGeneId":107985707},{"hugoGeneSymbol":"LOC107985708","entrezGeneId":107985708},{"hugoGeneSymbol":"LOC107985709","entrezGeneId":107985709},{"hugoGeneSymbol":"LOC107985710","entrezGeneId":107985710},{"hugoGeneSymbol":"LOC107985711","entrezGeneId":107985711},{"hugoGeneSymbol":"LOC107985712","entrezGeneId":107985712},{"hugoGeneSymbol":"LOC107985713","entrezGeneId":107985713},{"hugoGeneSymbol":"LOC107985714","entrezGeneId":107985714},{"hugoGeneSymbol":"LOC107985715","entrezGeneId":107985715},{"hugoGeneSymbol":"LOC107985716","entrezGeneId":107985716},{"hugoGeneSymbol":"LOC107985717","entrezGeneId":107985717},{"hugoGeneSymbol":"LOC107985718","entrezGeneId":107985718},{"hugoGeneSymbol":"LOC107985719","entrezGeneId":107985719},{"hugoGeneSymbol":"LOC107985720","entrezGeneId":107985720},{"hugoGeneSymbol":"LOC107985721","entrezGeneId":107985721},{"hugoGeneSymbol":"LOC107985725","entrezGeneId":107985725},{"hugoGeneSymbol":"LOC107985726","entrezGeneId":107985726},{"hugoGeneSymbol":"LOC107985727","entrezGeneId":107985727},{"hugoGeneSymbol":"LOC107985728","entrezGeneId":107985728},{"hugoGeneSymbol":"LOC107985729","entrezGeneId":107985729},{"hugoGeneSymbol":"LOC107985732","entrezGeneId":107985732},{"hugoGeneSymbol":"LOC107985733","entrezGeneId":107985733},{"hugoGeneSymbol":"LOC107985734","entrezGeneId":107985734},{"hugoGeneSymbol":"LOC107985736","entrezGeneId":107985736},{"hugoGeneSymbol":"LOC107985737","entrezGeneId":107985737},{"hugoGeneSymbol":"LOC107985740","entrezGeneId":107985740},{"hugoGeneSymbol":"LOC107985743","entrezGeneId":107985743},{"hugoGeneSymbol":"LOC107985744","entrezGeneId":107985744},{"hugoGeneSymbol":"LOC107985745","entrezGeneId":107985745},{"hugoGeneSymbol":"LOC107985746","entrezGeneId":107985746},{"hugoGeneSymbol":"LOC107985747","entrezGeneId":107985747},{"hugoGeneSymbol":"LOC107985766","entrezGeneId":107985766},{"hugoGeneSymbol":"LOC107985767","entrezGeneId":107985767},{"hugoGeneSymbol":"LOC107985768","entrezGeneId":107985768},{"hugoGeneSymbol":"LOC107985769","entrezGeneId":107985769},{"hugoGeneSymbol":"LOC107985770","entrezGeneId":107985770},{"hugoGeneSymbol":"LOC107985771","entrezGeneId":107985771},{"hugoGeneSymbol":"LOC107985772","entrezGeneId":107985772},{"hugoGeneSymbol":"LOC107985773","entrezGeneId":107985773},{"hugoGeneSymbol":"LOC107985774","entrezGeneId":107985774},{"hugoGeneSymbol":"LOC107985775","entrezGeneId":107985775},{"hugoGeneSymbol":"LOC107985776","entrezGeneId":107985776},{"hugoGeneSymbol":"LOC107985778","entrezGeneId":107985778},{"hugoGeneSymbol":"LOC107985779","entrezGeneId":107985779},{"hugoGeneSymbol":"LOC107985780","entrezGeneId":107985780},{"hugoGeneSymbol":"LOC107985782","entrezGeneId":107985782},{"hugoGeneSymbol":"LOC107985783","entrezGeneId":107985783},{"hugoGeneSymbol":"LOC107985784","entrezGeneId":107985784},{"hugoGeneSymbol":"LOC107985785","entrezGeneId":107985785},{"hugoGeneSymbol":"LOC107985786","entrezGeneId":107985786},{"hugoGeneSymbol":"LOC107985787","entrezGeneId":107985787},{"hugoGeneSymbol":"LOC107985788","entrezGeneId":107985788},{"hugoGeneSymbol":"LOC107985789","entrezGeneId":107985789},{"hugoGeneSymbol":"LOC107985790","entrezGeneId":107985790},{"hugoGeneSymbol":"LOC107985792","entrezGeneId":107985792},{"hugoGeneSymbol":"LOC107985793","entrezGeneId":107985793},{"hugoGeneSymbol":"LOC107985795","entrezGeneId":107985795},{"hugoGeneSymbol":"LOC107985797","entrezGeneId":107985797},{"hugoGeneSymbol":"LOC107985798","entrezGeneId":107985798},{"hugoGeneSymbol":"LOC107985801","entrezGeneId":107985801},{"hugoGeneSymbol":"LOC107985802","entrezGeneId":107985802},{"hugoGeneSymbol":"LOC107985803","entrezGeneId":107985803},{"hugoGeneSymbol":"LOC107985804","entrezGeneId":107985804},{"hugoGeneSymbol":"LOC107985805","entrezGeneId":107985805},{"hugoGeneSymbol":"LOC107985807","entrezGeneId":107985807},{"hugoGeneSymbol":"LOC107985808","entrezGeneId":107985808},{"hugoGeneSymbol":"LOC107985809","entrezGeneId":107985809},{"hugoGeneSymbol":"LOC107985810","entrezGeneId":107985810},{"hugoGeneSymbol":"LOC107985811","entrezGeneId":107985811},{"hugoGeneSymbol":"LOC107985812","entrezGeneId":107985812},{"hugoGeneSymbol":"LOC107985813","entrezGeneId":107985813},{"hugoGeneSymbol":"LOC107985814","entrezGeneId":107985814},{"hugoGeneSymbol":"LOC107985815","entrezGeneId":107985815},{"hugoGeneSymbol":"LOC107985817","entrezGeneId":107985817},{"hugoGeneSymbol":"LOC107985819","entrezGeneId":107985819},{"hugoGeneSymbol":"LOC107985820","entrezGeneId":107985820},{"hugoGeneSymbol":"LOC107985821","entrezGeneId":107985821},{"hugoGeneSymbol":"LOC107985822","entrezGeneId":107985822},{"hugoGeneSymbol":"LOC107985823","entrezGeneId":107985823},{"hugoGeneSymbol":"LOC107985824","entrezGeneId":107985824},{"hugoGeneSymbol":"LOC107985825","entrezGeneId":107985825},{"hugoGeneSymbol":"LOC107985826","entrezGeneId":107985826},{"hugoGeneSymbol":"LOC107985827","entrezGeneId":107985827},{"hugoGeneSymbol":"LOC107985828","entrezGeneId":107985828},{"hugoGeneSymbol":"LOC107985829","entrezGeneId":107985829},{"hugoGeneSymbol":"LOC107985830","entrezGeneId":107985830},{"hugoGeneSymbol":"LOC107985831","entrezGeneId":107985831},{"hugoGeneSymbol":"LOC107985832","entrezGeneId":107985832},{"hugoGeneSymbol":"LOC107985833","entrezGeneId":107985833},{"hugoGeneSymbol":"LOC107985834","entrezGeneId":107985834},{"hugoGeneSymbol":"LOC107985835","entrezGeneId":107985835},{"hugoGeneSymbol":"LOC107985836","entrezGeneId":107985836},{"hugoGeneSymbol":"LOC107985837","entrezGeneId":107985837},{"hugoGeneSymbol":"LOC107985838","entrezGeneId":107985838},{"hugoGeneSymbol":"LOC107985839","entrezGeneId":107985839},{"hugoGeneSymbol":"LOC107985840","entrezGeneId":107985840},{"hugoGeneSymbol":"LOC107985841","entrezGeneId":107985841},{"hugoGeneSymbol":"LOC107985842","entrezGeneId":107985842},{"hugoGeneSymbol":"LOC107985843","entrezGeneId":107985843},{"hugoGeneSymbol":"LOC107985845","entrezGeneId":107985845},{"hugoGeneSymbol":"LOC107985846","entrezGeneId":107985846},{"hugoGeneSymbol":"LOC107985847","entrezGeneId":107985847},{"hugoGeneSymbol":"LOC107985848","entrezGeneId":107985848},{"hugoGeneSymbol":"LOC107985849","entrezGeneId":107985849},{"hugoGeneSymbol":"LOC107985850","entrezGeneId":107985850},{"hugoGeneSymbol":"LOC107985851","entrezGeneId":107985851},{"hugoGeneSymbol":"LOC107985852","entrezGeneId":107985852},{"hugoGeneSymbol":"LOC107985853","entrezGeneId":107985853},{"hugoGeneSymbol":"LOC107985854","entrezGeneId":107985854},{"hugoGeneSymbol":"LOC107985855","entrezGeneId":107985855},{"hugoGeneSymbol":"LOC107985856","entrezGeneId":107985856},{"hugoGeneSymbol":"LOC107985857","entrezGeneId":107985857},{"hugoGeneSymbol":"LOC107985858","entrezGeneId":107985858},{"hugoGeneSymbol":"LOC107985859","entrezGeneId":107985859},{"hugoGeneSymbol":"LOC107985861","entrezGeneId":107985861},{"hugoGeneSymbol":"LOC107985862","entrezGeneId":107985862},{"hugoGeneSymbol":"LOC107985863","entrezGeneId":107985863},{"hugoGeneSymbol":"LOC107985864","entrezGeneId":107985864},{"hugoGeneSymbol":"LOC107985865","entrezGeneId":107985865},{"hugoGeneSymbol":"LOC107985866","entrezGeneId":107985866},{"hugoGeneSymbol":"LOC107985868","entrezGeneId":107985868},{"hugoGeneSymbol":"LOC107985869","entrezGeneId":107985869},{"hugoGeneSymbol":"LOC107985870","entrezGeneId":107985870},{"hugoGeneSymbol":"LOC107985871","entrezGeneId":107985871},{"hugoGeneSymbol":"LOC107985872","entrezGeneId":107985872},{"hugoGeneSymbol":"LOC107985873","entrezGeneId":107985873},{"hugoGeneSymbol":"LOC107985874","entrezGeneId":107985874},{"hugoGeneSymbol":"LOC107985875","entrezGeneId":107985875},{"hugoGeneSymbol":"LOC107985876","entrezGeneId":107985876},{"hugoGeneSymbol":"LOC107985877","entrezGeneId":107985877},{"hugoGeneSymbol":"LOC107985878","entrezGeneId":107985878},{"hugoGeneSymbol":"LOC107985880","entrezGeneId":107985880},{"hugoGeneSymbol":"LOC107985882","entrezGeneId":107985882},{"hugoGeneSymbol":"LOC107985883","entrezGeneId":107985883},{"hugoGeneSymbol":"LOC107985885","entrezGeneId":107985885},{"hugoGeneSymbol":"LOC107985886","entrezGeneId":107985886},{"hugoGeneSymbol":"LOC107985888","entrezGeneId":107985888},{"hugoGeneSymbol":"LOC107985889","entrezGeneId":107985889},{"hugoGeneSymbol":"LOC107985890","entrezGeneId":107985890},{"hugoGeneSymbol":"LOC107985891","entrezGeneId":107985891},{"hugoGeneSymbol":"LOC107985892","entrezGeneId":107985892},{"hugoGeneSymbol":"LOC107985894","entrezGeneId":107985894},{"hugoGeneSymbol":"LOC107985895","entrezGeneId":107985895},{"hugoGeneSymbol":"LOC107985896","entrezGeneId":107985896},{"hugoGeneSymbol":"LOC107985897","entrezGeneId":107985897},{"hugoGeneSymbol":"LOC107985898","entrezGeneId":107985898},{"hugoGeneSymbol":"LOC107985900","entrezGeneId":107985900},{"hugoGeneSymbol":"LOC107985902","entrezGeneId":107985902},{"hugoGeneSymbol":"LOC107985903","entrezGeneId":107985903},{"hugoGeneSymbol":"LOC107985904","entrezGeneId":107985904},{"hugoGeneSymbol":"LOC107985905","entrezGeneId":107985905},{"hugoGeneSymbol":"LOC107985906","entrezGeneId":107985906},{"hugoGeneSymbol":"LOC107985907","entrezGeneId":107985907},{"hugoGeneSymbol":"LOC107985908","entrezGeneId":107985908},{"hugoGeneSymbol":"LOC107985909","entrezGeneId":107985909},{"hugoGeneSymbol":"LOC107985910","entrezGeneId":107985910},{"hugoGeneSymbol":"LOC107985911","entrezGeneId":107985911},{"hugoGeneSymbol":"LOC107985915","entrezGeneId":107985915},{"hugoGeneSymbol":"LOC107985916","entrezGeneId":107985916},{"hugoGeneSymbol":"LOC107985917","entrezGeneId":107985917},{"hugoGeneSymbol":"LOC107985920","entrezGeneId":107985920},{"hugoGeneSymbol":"LOC107985921","entrezGeneId":107985921},{"hugoGeneSymbol":"LOC107985922","entrezGeneId":107985922},{"hugoGeneSymbol":"LOC107985923","entrezGeneId":107985923},{"hugoGeneSymbol":"LOC107985926","entrezGeneId":107985926},{"hugoGeneSymbol":"LOC107985927","entrezGeneId":107985927},{"hugoGeneSymbol":"LOC107985929","entrezGeneId":107985929},{"hugoGeneSymbol":"LOC107985930","entrezGeneId":107985930},{"hugoGeneSymbol":"LOC107985931","entrezGeneId":107985931},{"hugoGeneSymbol":"LOC107985932","entrezGeneId":107985932},{"hugoGeneSymbol":"LOC107985933","entrezGeneId":107985933},{"hugoGeneSymbol":"LOC107985934","entrezGeneId":107985934},{"hugoGeneSymbol":"LOC107985935","entrezGeneId":107985935},{"hugoGeneSymbol":"LOC107985936","entrezGeneId":107985936},{"hugoGeneSymbol":"LOC107985937","entrezGeneId":107985937},{"hugoGeneSymbol":"LOC107985938","entrezGeneId":107985938},{"hugoGeneSymbol":"LOC107985939","entrezGeneId":107985939},{"hugoGeneSymbol":"LOC107985940","entrezGeneId":107985940},{"hugoGeneSymbol":"LOC107985941","entrezGeneId":107985941},{"hugoGeneSymbol":"LOC107985942","entrezGeneId":107985942},{"hugoGeneSymbol":"LOC107985943","entrezGeneId":107985943},{"hugoGeneSymbol":"LOC107985944","entrezGeneId":107985944},{"hugoGeneSymbol":"LOC107985945","entrezGeneId":107985945},{"hugoGeneSymbol":"LOC107985946","entrezGeneId":107985946},{"hugoGeneSymbol":"LOC107985947","entrezGeneId":107985947},{"hugoGeneSymbol":"LOC107985948","entrezGeneId":107985948},{"hugoGeneSymbol":"LOC107985949","entrezGeneId":107985949},{"hugoGeneSymbol":"LOC107985950","entrezGeneId":107985950},{"hugoGeneSymbol":"LOC107985952","entrezGeneId":107985952},{"hugoGeneSymbol":"LOC107985953","entrezGeneId":107985953},{"hugoGeneSymbol":"LOC107985955","entrezGeneId":107985955},{"hugoGeneSymbol":"LOC107985957","entrezGeneId":107985957},{"hugoGeneSymbol":"LOC107985958","entrezGeneId":107985958},{"hugoGeneSymbol":"LOC107985959","entrezGeneId":107985959},{"hugoGeneSymbol":"LOC107985960","entrezGeneId":107985960},{"hugoGeneSymbol":"LOC107985961","entrezGeneId":107985961},{"hugoGeneSymbol":"LOC107985962","entrezGeneId":107985962},{"hugoGeneSymbol":"LOC107985963","entrezGeneId":107985963},{"hugoGeneSymbol":"LOC107985965","entrezGeneId":107985965},{"hugoGeneSymbol":"LOC107985966","entrezGeneId":107985966},{"hugoGeneSymbol":"LOC107985967","entrezGeneId":107985967},{"hugoGeneSymbol":"LOC107985968","entrezGeneId":107985968},{"hugoGeneSymbol":"LOC107985969","entrezGeneId":107985969},{"hugoGeneSymbol":"LOC107985971","entrezGeneId":107985971},{"hugoGeneSymbol":"LOC107985972","entrezGeneId":107985972},{"hugoGeneSymbol":"LOC107985976","entrezGeneId":107985976},{"hugoGeneSymbol":"LOC107985977","entrezGeneId":107985977},{"hugoGeneSymbol":"LOC107985978","entrezGeneId":107985978},{"hugoGeneSymbol":"LOC107985979","entrezGeneId":107985979},{"hugoGeneSymbol":"LOC107985980","entrezGeneId":107985980},{"hugoGeneSymbol":"LOC107985981","entrezGeneId":107985981},{"hugoGeneSymbol":"LOC107985982","entrezGeneId":107985982},{"hugoGeneSymbol":"LOC107985983","entrezGeneId":107985983},{"hugoGeneSymbol":"LOC107985984","entrezGeneId":107985984},{"hugoGeneSymbol":"LOC107985985","entrezGeneId":107985985},{"hugoGeneSymbol":"LOC107985986","entrezGeneId":107985986},{"hugoGeneSymbol":"LOC107985987","entrezGeneId":107985987},{"hugoGeneSymbol":"LOC107985988","entrezGeneId":107985988},{"hugoGeneSymbol":"LOC107985989","entrezGeneId":107985989},{"hugoGeneSymbol":"LOC107985990","entrezGeneId":107985990},{"hugoGeneSymbol":"LOC107985991","entrezGeneId":107985991},{"hugoGeneSymbol":"LOC107985992","entrezGeneId":107985992},{"hugoGeneSymbol":"LOC107985993","entrezGeneId":107985993},{"hugoGeneSymbol":"LOC107985994","entrezGeneId":107985994},{"hugoGeneSymbol":"LOC107985995","entrezGeneId":107985995},{"hugoGeneSymbol":"LOC107985996","entrezGeneId":107985996},{"hugoGeneSymbol":"LOC107985997","entrezGeneId":107985997},{"hugoGeneSymbol":"LOC107985998","entrezGeneId":107985998},{"hugoGeneSymbol":"LOC107985999","entrezGeneId":107985999},{"hugoGeneSymbol":"LOC107986000","entrezGeneId":107986000},{"hugoGeneSymbol":"LOC107986001","entrezGeneId":107986001},{"hugoGeneSymbol":"LOC107986002","entrezGeneId":107986002},{"hugoGeneSymbol":"LOC107986003","entrezGeneId":107986003},{"hugoGeneSymbol":"LOC107986004","entrezGeneId":107986004},{"hugoGeneSymbol":"LOC107986006","entrezGeneId":107986006},{"hugoGeneSymbol":"LOC107986007","entrezGeneId":107986007},{"hugoGeneSymbol":"LOC107986008","entrezGeneId":107986008},{"hugoGeneSymbol":"LOC107986009","entrezGeneId":107986009},{"hugoGeneSymbol":"LOC107986010","entrezGeneId":107986010},{"hugoGeneSymbol":"LOC107986011","entrezGeneId":107986011},{"hugoGeneSymbol":"LOC107986012","entrezGeneId":107986012},{"hugoGeneSymbol":"LOC107986013","entrezGeneId":107986013},{"hugoGeneSymbol":"LOC107986015","entrezGeneId":107986015},{"hugoGeneSymbol":"LOC107986016","entrezGeneId":107986016},{"hugoGeneSymbol":"LOC107986017","entrezGeneId":107986017},{"hugoGeneSymbol":"LOC107986018","entrezGeneId":107986018},{"hugoGeneSymbol":"LOC107986019","entrezGeneId":107986019},{"hugoGeneSymbol":"LOC107986020","entrezGeneId":107986020},{"hugoGeneSymbol":"LOC107986021","entrezGeneId":107986021},{"hugoGeneSymbol":"LOC107986022","entrezGeneId":107986022},{"hugoGeneSymbol":"LOC107986023","entrezGeneId":107986023},{"hugoGeneSymbol":"LOC107986024","entrezGeneId":107986024},{"hugoGeneSymbol":"LOC107986025","entrezGeneId":107986025},{"hugoGeneSymbol":"LOC107986027","entrezGeneId":107986027},{"hugoGeneSymbol":"LOC107986028","entrezGeneId":107986028},{"hugoGeneSymbol":"LOC107986029","entrezGeneId":107986029},{"hugoGeneSymbol":"LOC107986031","entrezGeneId":107986031},{"hugoGeneSymbol":"LOC107986032","entrezGeneId":107986032},{"hugoGeneSymbol":"LOC107986033","entrezGeneId":107986033},{"hugoGeneSymbol":"LOC107986034","entrezGeneId":107986034},{"hugoGeneSymbol":"LOC107986035","entrezGeneId":107986035},{"hugoGeneSymbol":"LOC107986036","entrezGeneId":107986036},{"hugoGeneSymbol":"LOC107986039","entrezGeneId":107986039},{"hugoGeneSymbol":"LOC107986040","entrezGeneId":107986040},{"hugoGeneSymbol":"LOC107986042","entrezGeneId":107986042},{"hugoGeneSymbol":"LOC107986043","entrezGeneId":107986043},{"hugoGeneSymbol":"LOC107986044","entrezGeneId":107986044},{"hugoGeneSymbol":"LOC107986045","entrezGeneId":107986045},{"hugoGeneSymbol":"LOC107986047","entrezGeneId":107986047},{"hugoGeneSymbol":"LOC107986048","entrezGeneId":107986048},{"hugoGeneSymbol":"LOC107986049","entrezGeneId":107986049},{"hugoGeneSymbol":"LOC107986050","entrezGeneId":107986050},{"hugoGeneSymbol":"LOC107986051","entrezGeneId":107986051},{"hugoGeneSymbol":"LOC107986052","entrezGeneId":107986052},{"hugoGeneSymbol":"LOC107986053","entrezGeneId":107986053},{"hugoGeneSymbol":"LOC107986054","entrezGeneId":107986054},{"hugoGeneSymbol":"LOC107986055","entrezGeneId":107986055},{"hugoGeneSymbol":"LOC107986056","entrezGeneId":107986056},{"hugoGeneSymbol":"LOC107986057","entrezGeneId":107986057},{"hugoGeneSymbol":"LOC107986058","entrezGeneId":107986058},{"hugoGeneSymbol":"LOC107986059","entrezGeneId":107986059},{"hugoGeneSymbol":"LOC107986061","entrezGeneId":107986061},{"hugoGeneSymbol":"LOC107986063","entrezGeneId":107986063},{"hugoGeneSymbol":"LOC107986064","entrezGeneId":107986064},{"hugoGeneSymbol":"LOC107986065","entrezGeneId":107986065},{"hugoGeneSymbol":"LOC107986066","entrezGeneId":107986066},{"hugoGeneSymbol":"LOC107986067","entrezGeneId":107986067},{"hugoGeneSymbol":"LOC107986068","entrezGeneId":107986068},{"hugoGeneSymbol":"LOC107986069","entrezGeneId":107986069},{"hugoGeneSymbol":"LOC107986070","entrezGeneId":107986070},{"hugoGeneSymbol":"LOC107986071","entrezGeneId":107986071},{"hugoGeneSymbol":"LOC107986072","entrezGeneId":107986072},{"hugoGeneSymbol":"LOC107986073","entrezGeneId":107986073},{"hugoGeneSymbol":"LOC107986075","entrezGeneId":107986075},{"hugoGeneSymbol":"LOC107986076","entrezGeneId":107986076},{"hugoGeneSymbol":"LOC107986077","entrezGeneId":107986077},{"hugoGeneSymbol":"LOC107986079","entrezGeneId":107986079},{"hugoGeneSymbol":"LOC107986080","entrezGeneId":107986080},{"hugoGeneSymbol":"LOC107986081","entrezGeneId":107986081},{"hugoGeneSymbol":"LOC107986082","entrezGeneId":107986082},{"hugoGeneSymbol":"LOC107986083","entrezGeneId":107986083},{"hugoGeneSymbol":"LOC107986084","entrezGeneId":107986084},{"hugoGeneSymbol":"LOC107986086","entrezGeneId":107986086},{"hugoGeneSymbol":"LOC107986087","entrezGeneId":107986087},{"hugoGeneSymbol":"LOC107986088","entrezGeneId":107986088},{"hugoGeneSymbol":"LOC107986089","entrezGeneId":107986089},{"hugoGeneSymbol":"LOC107986091","entrezGeneId":107986091},{"hugoGeneSymbol":"LOC107986092","entrezGeneId":107986092},{"hugoGeneSymbol":"LOC107986093","entrezGeneId":107986093},{"hugoGeneSymbol":"LOC107986094","entrezGeneId":107986094},{"hugoGeneSymbol":"LOC107986095","entrezGeneId":107986095},{"hugoGeneSymbol":"LOC107986097","entrezGeneId":107986097},{"hugoGeneSymbol":"LOC107986098","entrezGeneId":107986098},{"hugoGeneSymbol":"LOC107986099","entrezGeneId":107986099},{"hugoGeneSymbol":"LOC107986101","entrezGeneId":107986101},{"hugoGeneSymbol":"LOC107986103","entrezGeneId":107986103},{"hugoGeneSymbol":"LOC107986104","entrezGeneId":107986104},{"hugoGeneSymbol":"LOC107986105","entrezGeneId":107986105},{"hugoGeneSymbol":"LOC107986106","entrezGeneId":107986106},{"hugoGeneSymbol":"LOC107986107","entrezGeneId":107986107},{"hugoGeneSymbol":"LOC107986108","entrezGeneId":107986108},{"hugoGeneSymbol":"LOC107986109","entrezGeneId":107986109},{"hugoGeneSymbol":"LOC107986110","entrezGeneId":107986110},{"hugoGeneSymbol":"LOC107986112","entrezGeneId":107986112},{"hugoGeneSymbol":"LOC107986113","entrezGeneId":107986113},{"hugoGeneSymbol":"LOC107986114","entrezGeneId":107986114},{"hugoGeneSymbol":"LOC107986115","entrezGeneId":107986115},{"hugoGeneSymbol":"LOC107986116","entrezGeneId":107986116},{"hugoGeneSymbol":"LOC107986118","entrezGeneId":107986118},{"hugoGeneSymbol":"LOC107986119","entrezGeneId":107986119},{"hugoGeneSymbol":"LOC107986120","entrezGeneId":107986120},{"hugoGeneSymbol":"LOC107986121","entrezGeneId":107986121},{"hugoGeneSymbol":"LOC107986123","entrezGeneId":107986123},{"hugoGeneSymbol":"LOC107986124","entrezGeneId":107986124},{"hugoGeneSymbol":"LOC107986126","entrezGeneId":107986126},{"hugoGeneSymbol":"LOC107986127","entrezGeneId":107986127},{"hugoGeneSymbol":"LOC107986129","entrezGeneId":107986129},{"hugoGeneSymbol":"LOC107986131","entrezGeneId":107986131},{"hugoGeneSymbol":"LOC107986133","entrezGeneId":107986133},{"hugoGeneSymbol":"LOC107986135","entrezGeneId":107986135},{"hugoGeneSymbol":"LOC107986138","entrezGeneId":107986138},{"hugoGeneSymbol":"LOC107986140","entrezGeneId":107986140},{"hugoGeneSymbol":"LOC107986141","entrezGeneId":107986141},{"hugoGeneSymbol":"LOC107986142","entrezGeneId":107986142},{"hugoGeneSymbol":"LOC107986144","entrezGeneId":107986144},{"hugoGeneSymbol":"LOC107986148","entrezGeneId":107986148},{"hugoGeneSymbol":"LOC107986149","entrezGeneId":107986149},{"hugoGeneSymbol":"LOC107986150","entrezGeneId":107986150},{"hugoGeneSymbol":"LOC107986151","entrezGeneId":107986151},{"hugoGeneSymbol":"LOC107986152","entrezGeneId":107986152},{"hugoGeneSymbol":"LOC107986153","entrezGeneId":107986153},{"hugoGeneSymbol":"LOC107986154","entrezGeneId":107986154},{"hugoGeneSymbol":"LOC107986155","entrezGeneId":107986155},{"hugoGeneSymbol":"LOC107986156","entrezGeneId":107986156},{"hugoGeneSymbol":"LOC107986157","entrezGeneId":107986157},{"hugoGeneSymbol":"LOC107986158","entrezGeneId":107986158},{"hugoGeneSymbol":"LOC107986160","entrezGeneId":107986160},{"hugoGeneSymbol":"LOC107986161","entrezGeneId":107986161},{"hugoGeneSymbol":"LOC107986162","entrezGeneId":107986162},{"hugoGeneSymbol":"LOC107986163","entrezGeneId":107986163},{"hugoGeneSymbol":"LOC107986166","entrezGeneId":107986166},{"hugoGeneSymbol":"LOC107986167","entrezGeneId":107986167},{"hugoGeneSymbol":"LOC107986168","entrezGeneId":107986168},{"hugoGeneSymbol":"LOC107986169","entrezGeneId":107986169},{"hugoGeneSymbol":"LOC107986170","entrezGeneId":107986170},{"hugoGeneSymbol":"LOC107986171","entrezGeneId":107986171},{"hugoGeneSymbol":"LOC107986172","entrezGeneId":107986172},{"hugoGeneSymbol":"LOC107986173","entrezGeneId":107986173},{"hugoGeneSymbol":"LOC107986174","entrezGeneId":107986174},{"hugoGeneSymbol":"LOC107986175","entrezGeneId":107986175},{"hugoGeneSymbol":"LOC107986176","entrezGeneId":107986176},{"hugoGeneSymbol":"LOC107986177","entrezGeneId":107986177},{"hugoGeneSymbol":"LOC107986178","entrezGeneId":107986178},{"hugoGeneSymbol":"LOC107986179","entrezGeneId":107986179},{"hugoGeneSymbol":"LOC107986180","entrezGeneId":107986180},{"hugoGeneSymbol":"LOC107986181","entrezGeneId":107986181},{"hugoGeneSymbol":"LOC107986182","entrezGeneId":107986182},{"hugoGeneSymbol":"LOC107986183","entrezGeneId":107986183},{"hugoGeneSymbol":"LOC107986184","entrezGeneId":107986184},{"hugoGeneSymbol":"LOC107986185","entrezGeneId":107986185},{"hugoGeneSymbol":"LOC107986186","entrezGeneId":107986186},{"hugoGeneSymbol":"LOC107986187","entrezGeneId":107986187},{"hugoGeneSymbol":"LOC107986188","entrezGeneId":107986188},{"hugoGeneSymbol":"LOC107986189","entrezGeneId":107986189},{"hugoGeneSymbol":"LOC107986190","entrezGeneId":107986190},{"hugoGeneSymbol":"LOC107986192","entrezGeneId":107986192},{"hugoGeneSymbol":"LOC107986193","entrezGeneId":107986193},{"hugoGeneSymbol":"LOC107986194","entrezGeneId":107986194},{"hugoGeneSymbol":"LOC107986195","entrezGeneId":107986195},{"hugoGeneSymbol":"LOC107986196","entrezGeneId":107986196},{"hugoGeneSymbol":"LOC107986197","entrezGeneId":107986197},{"hugoGeneSymbol":"LOC107986198","entrezGeneId":107986198},{"hugoGeneSymbol":"LOC107986199","entrezGeneId":107986199},{"hugoGeneSymbol":"LOC107986200","entrezGeneId":107986200},{"hugoGeneSymbol":"LOC107986201","entrezGeneId":107986201},{"hugoGeneSymbol":"LOC107986202","entrezGeneId":107986202},{"hugoGeneSymbol":"LOC107986203","entrezGeneId":107986203},{"hugoGeneSymbol":"LOC107986204","entrezGeneId":107986204},{"hugoGeneSymbol":"LOC107986205","entrezGeneId":107986205},{"hugoGeneSymbol":"LOC107986206","entrezGeneId":107986206},{"hugoGeneSymbol":"LOC107986207","entrezGeneId":107986207},{"hugoGeneSymbol":"LOC107986208","entrezGeneId":107986208},{"hugoGeneSymbol":"LOC107986209","entrezGeneId":107986209},{"hugoGeneSymbol":"LOC107986210","entrezGeneId":107986210},{"hugoGeneSymbol":"LOC107986211","entrezGeneId":107986211},{"hugoGeneSymbol":"LOC107986214","entrezGeneId":107986214},{"hugoGeneSymbol":"LOC107986215","entrezGeneId":107986215},{"hugoGeneSymbol":"LOC107986217","entrezGeneId":107986217},{"hugoGeneSymbol":"LOC107986218","entrezGeneId":107986218},{"hugoGeneSymbol":"LOC107986219","entrezGeneId":107986219},{"hugoGeneSymbol":"LOC107986220","entrezGeneId":107986220},{"hugoGeneSymbol":"LOC107986221","entrezGeneId":107986221},{"hugoGeneSymbol":"LOC107986222","entrezGeneId":107986222},{"hugoGeneSymbol":"LOC107986223","entrezGeneId":107986223},{"hugoGeneSymbol":"LOC107986224","entrezGeneId":107986224},{"hugoGeneSymbol":"LOC107986225","entrezGeneId":107986225},{"hugoGeneSymbol":"LOC107986228","entrezGeneId":107986228},{"hugoGeneSymbol":"LOC107986229","entrezGeneId":107986229},{"hugoGeneSymbol":"LOC107986230","entrezGeneId":107986230},{"hugoGeneSymbol":"LOC107986231","entrezGeneId":107986231},{"hugoGeneSymbol":"LOC107986232","entrezGeneId":107986232},{"hugoGeneSymbol":"LOC107986234","entrezGeneId":107986234},{"hugoGeneSymbol":"LOC107986235","entrezGeneId":107986235},{"hugoGeneSymbol":"LOC107986236","entrezGeneId":107986236},{"hugoGeneSymbol":"LOC107986237","entrezGeneId":107986237},{"hugoGeneSymbol":"LOC107986238","entrezGeneId":107986238},{"hugoGeneSymbol":"LOC107986239","entrezGeneId":107986239},{"hugoGeneSymbol":"LOC107986240","entrezGeneId":107986240},{"hugoGeneSymbol":"LOC107986244","entrezGeneId":107986244},{"hugoGeneSymbol":"LOC107986245","entrezGeneId":107986245},{"hugoGeneSymbol":"LOC107986246","entrezGeneId":107986246},{"hugoGeneSymbol":"LOC107986249","entrezGeneId":107986249},{"hugoGeneSymbol":"LOC107986250","entrezGeneId":107986250},{"hugoGeneSymbol":"LOC107986251","entrezGeneId":107986251},{"hugoGeneSymbol":"LOC107986252","entrezGeneId":107986252},{"hugoGeneSymbol":"LOC107986253","entrezGeneId":107986253},{"hugoGeneSymbol":"LOC107986254","entrezGeneId":107986254},{"hugoGeneSymbol":"LOC107986255","entrezGeneId":107986255},{"hugoGeneSymbol":"LOC107986256","entrezGeneId":107986256},{"hugoGeneSymbol":"LOC107986257","entrezGeneId":107986257},{"hugoGeneSymbol":"LOC107986258","entrezGeneId":107986258},{"hugoGeneSymbol":"LOC107986260","entrezGeneId":107986260},{"hugoGeneSymbol":"LOC107986261","entrezGeneId":107986261},{"hugoGeneSymbol":"LOC107986262","entrezGeneId":107986262},{"hugoGeneSymbol":"LOC107986263","entrezGeneId":107986263},{"hugoGeneSymbol":"LOC107986265","entrezGeneId":107986265},{"hugoGeneSymbol":"LOC107986268","entrezGeneId":107986268},{"hugoGeneSymbol":"LOC107986269","entrezGeneId":107986269},{"hugoGeneSymbol":"LOC107986270","entrezGeneId":107986270},{"hugoGeneSymbol":"LOC107986271","entrezGeneId":107986271},{"hugoGeneSymbol":"LOC107986272","entrezGeneId":107986272},{"hugoGeneSymbol":"LOC107986273","entrezGeneId":107986273},{"hugoGeneSymbol":"LOC107986275","entrezGeneId":107986275},{"hugoGeneSymbol":"LOC107986276","entrezGeneId":107986276},{"hugoGeneSymbol":"LOC107986277","entrezGeneId":107986277},{"hugoGeneSymbol":"LOC107986278","entrezGeneId":107986278},{"hugoGeneSymbol":"LOC107986279","entrezGeneId":107986279},{"hugoGeneSymbol":"LOC107986281","entrezGeneId":107986281},{"hugoGeneSymbol":"LOC107986282","entrezGeneId":107986282},{"hugoGeneSymbol":"LOC107986283","entrezGeneId":107986283},{"hugoGeneSymbol":"LOC107986284","entrezGeneId":107986284},{"hugoGeneSymbol":"LOC107986285","entrezGeneId":107986285},{"hugoGeneSymbol":"LOC107986286","entrezGeneId":107986286},{"hugoGeneSymbol":"LOC107986287","entrezGeneId":107986287},{"hugoGeneSymbol":"LOC107986289","entrezGeneId":107986289},{"hugoGeneSymbol":"LOC107986290","entrezGeneId":107986290},{"hugoGeneSymbol":"LOC107986291","entrezGeneId":107986291},{"hugoGeneSymbol":"LOC107986292","entrezGeneId":107986292},{"hugoGeneSymbol":"LOC107986293","entrezGeneId":107986293},{"hugoGeneSymbol":"LOC107986294","entrezGeneId":107986294},{"hugoGeneSymbol":"LOC107986295","entrezGeneId":107986295},{"hugoGeneSymbol":"LOC107986297","entrezGeneId":107986297},{"hugoGeneSymbol":"LOC107986298","entrezGeneId":107986298},{"hugoGeneSymbol":"LOC107986299","entrezGeneId":107986299},{"hugoGeneSymbol":"LOC107986300","entrezGeneId":107986300},{"hugoGeneSymbol":"LOC107986302","entrezGeneId":107986302},{"hugoGeneSymbol":"LOC107986303","entrezGeneId":107986303},{"hugoGeneSymbol":"LOC107986304","entrezGeneId":107986304},{"hugoGeneSymbol":"LOC107986305","entrezGeneId":107986305},{"hugoGeneSymbol":"LOC107986306","entrezGeneId":107986306},{"hugoGeneSymbol":"LOC107986307","entrezGeneId":107986307},{"hugoGeneSymbol":"LOC107986309","entrezGeneId":107986309},{"hugoGeneSymbol":"LOC107986310","entrezGeneId":107986310},{"hugoGeneSymbol":"LOC107986312","entrezGeneId":107986312},{"hugoGeneSymbol":"LOC107986314","entrezGeneId":107986314},{"hugoGeneSymbol":"LOC107986315","entrezGeneId":107986315},{"hugoGeneSymbol":"LOC107986317","entrezGeneId":107986317},{"hugoGeneSymbol":"LOC107986320","entrezGeneId":107986320},{"hugoGeneSymbol":"LOC107986321","entrezGeneId":107986321},{"hugoGeneSymbol":"LOC107986324","entrezGeneId":107986324},{"hugoGeneSymbol":"LOC107986325","entrezGeneId":107986325},{"hugoGeneSymbol":"LOC107986326","entrezGeneId":107986326},{"hugoGeneSymbol":"LOC107986327","entrezGeneId":107986327},{"hugoGeneSymbol":"LOC107986328","entrezGeneId":107986328},{"hugoGeneSymbol":"LOC107986329","entrezGeneId":107986329},{"hugoGeneSymbol":"LOC107986330","entrezGeneId":107986330},{"hugoGeneSymbol":"LOC107986332","entrezGeneId":107986332},{"hugoGeneSymbol":"LOC107986334","entrezGeneId":107986334},{"hugoGeneSymbol":"LOC107986335","entrezGeneId":107986335},{"hugoGeneSymbol":"LOC107986336","entrezGeneId":107986336},{"hugoGeneSymbol":"LOC107986337","entrezGeneId":107986337},{"hugoGeneSymbol":"LOC107986338","entrezGeneId":107986338},{"hugoGeneSymbol":"LOC107986343","entrezGeneId":107986343},{"hugoGeneSymbol":"LOC107986345","entrezGeneId":107986345},{"hugoGeneSymbol":"LOC107986346","entrezGeneId":107986346},{"hugoGeneSymbol":"LOC107986347","entrezGeneId":107986347},{"hugoGeneSymbol":"LOC107986348","entrezGeneId":107986348},{"hugoGeneSymbol":"LOC107986350","entrezGeneId":107986350},{"hugoGeneSymbol":"LOC107986351","entrezGeneId":107986351},{"hugoGeneSymbol":"LOC107986352","entrezGeneId":107986352},{"hugoGeneSymbol":"LOC107986353","entrezGeneId":107986353},{"hugoGeneSymbol":"LOC107986354","entrezGeneId":107986354},{"hugoGeneSymbol":"LOC107986355","entrezGeneId":107986355},{"hugoGeneSymbol":"LOC107986356","entrezGeneId":107986356},{"hugoGeneSymbol":"LOC107986357","entrezGeneId":107986357},{"hugoGeneSymbol":"LOC107986358","entrezGeneId":107986358},{"hugoGeneSymbol":"LOC107986359","entrezGeneId":107986359},{"hugoGeneSymbol":"LOC107986360","entrezGeneId":107986360},{"hugoGeneSymbol":"LOC107986361","entrezGeneId":107986361},{"hugoGeneSymbol":"LOC107986362","entrezGeneId":107986362},{"hugoGeneSymbol":"LOC107986363","entrezGeneId":107986363},{"hugoGeneSymbol":"LOC107986364","entrezGeneId":107986364},{"hugoGeneSymbol":"LOC107986365","entrezGeneId":107986365},{"hugoGeneSymbol":"LOC107986366","entrezGeneId":107986366},{"hugoGeneSymbol":"LOC107986367","entrezGeneId":107986367},{"hugoGeneSymbol":"LOC107986368","entrezGeneId":107986368},{"hugoGeneSymbol":"LOC107986369","entrezGeneId":107986369},{"hugoGeneSymbol":"LOC107986370","entrezGeneId":107986370},{"hugoGeneSymbol":"LOC107986371","entrezGeneId":107986371},{"hugoGeneSymbol":"LOC107986372","entrezGeneId":107986372},{"hugoGeneSymbol":"LOC107986373","entrezGeneId":107986373},{"hugoGeneSymbol":"LOC107986374","entrezGeneId":107986374},{"hugoGeneSymbol":"LOC107986375","entrezGeneId":107986375},{"hugoGeneSymbol":"LOC107986376","entrezGeneId":107986376},{"hugoGeneSymbol":"LOC107986377","entrezGeneId":107986377},{"hugoGeneSymbol":"LOC107986378","entrezGeneId":107986378},{"hugoGeneSymbol":"LOC107986379","entrezGeneId":107986379},{"hugoGeneSymbol":"LOC107986380","entrezGeneId":107986380},{"hugoGeneSymbol":"LOC107986381","entrezGeneId":107986381},{"hugoGeneSymbol":"LOC107986382","entrezGeneId":107986382},{"hugoGeneSymbol":"LOC107986383","entrezGeneId":107986383},{"hugoGeneSymbol":"LOC107986384","entrezGeneId":107986384},{"hugoGeneSymbol":"LOC107986385","entrezGeneId":107986385},{"hugoGeneSymbol":"LOC107986386","entrezGeneId":107986386},{"hugoGeneSymbol":"LOC107986387","entrezGeneId":107986387},{"hugoGeneSymbol":"LOC107986388","entrezGeneId":107986388},{"hugoGeneSymbol":"LOC107986391","entrezGeneId":107986391},{"hugoGeneSymbol":"LOC107986392","entrezGeneId":107986392},{"hugoGeneSymbol":"LOC107986394","entrezGeneId":107986394},{"hugoGeneSymbol":"LOC107986395","entrezGeneId":107986395},{"hugoGeneSymbol":"LOC107986396","entrezGeneId":107986396},{"hugoGeneSymbol":"LOC107986397","entrezGeneId":107986397},{"hugoGeneSymbol":"LOC107986398","entrezGeneId":107986398},{"hugoGeneSymbol":"LOC107986399","entrezGeneId":107986399},{"hugoGeneSymbol":"LOC107986400","entrezGeneId":107986400},{"hugoGeneSymbol":"LOC107986401","entrezGeneId":107986401},{"hugoGeneSymbol":"LOC107986403","entrezGeneId":107986403},{"hugoGeneSymbol":"LOC107986405","entrezGeneId":107986405},{"hugoGeneSymbol":"LOC107986406","entrezGeneId":107986406},{"hugoGeneSymbol":"LOC107986407","entrezGeneId":107986407},{"hugoGeneSymbol":"LOC107986409","entrezGeneId":107986409},{"hugoGeneSymbol":"LOC107986410","entrezGeneId":107986410},{"hugoGeneSymbol":"LOC107986411","entrezGeneId":107986411},{"hugoGeneSymbol":"LOC107986412","entrezGeneId":107986412},{"hugoGeneSymbol":"LOC107986413","entrezGeneId":107986413},{"hugoGeneSymbol":"LOC107986414","entrezGeneId":107986414},{"hugoGeneSymbol":"LOC107986415","entrezGeneId":107986415},{"hugoGeneSymbol":"LOC107986416","entrezGeneId":107986416},{"hugoGeneSymbol":"LOC107986418","entrezGeneId":107986418},{"hugoGeneSymbol":"LOC107986419","entrezGeneId":107986419},{"hugoGeneSymbol":"LOC107986420","entrezGeneId":107986420},{"hugoGeneSymbol":"LOC107986421","entrezGeneId":107986421},{"hugoGeneSymbol":"LOC107986422","entrezGeneId":107986422},{"hugoGeneSymbol":"LOC107986423","entrezGeneId":107986423},{"hugoGeneSymbol":"LOC107986424","entrezGeneId":107986424},{"hugoGeneSymbol":"LOC107986426","entrezGeneId":107986426},{"hugoGeneSymbol":"LOC107986427","entrezGeneId":107986427},{"hugoGeneSymbol":"LOC107986428","entrezGeneId":107986428},{"hugoGeneSymbol":"LOC107986430","entrezGeneId":107986430},{"hugoGeneSymbol":"LOC107986431","entrezGeneId":107986431},{"hugoGeneSymbol":"LOC107986432","entrezGeneId":107986432},{"hugoGeneSymbol":"LOC107986433","entrezGeneId":107986433},{"hugoGeneSymbol":"LOC107986434","entrezGeneId":107986434},{"hugoGeneSymbol":"LOC107986435","entrezGeneId":107986435},{"hugoGeneSymbol":"LOC107986436","entrezGeneId":107986436},{"hugoGeneSymbol":"LOC107986437","entrezGeneId":107986437},{"hugoGeneSymbol":"LOC107986438","entrezGeneId":107986438},{"hugoGeneSymbol":"LOC107986439","entrezGeneId":107986439},{"hugoGeneSymbol":"LOC107986440","entrezGeneId":107986440},{"hugoGeneSymbol":"LOC107986441","entrezGeneId":107986441},{"hugoGeneSymbol":"LOC107986443","entrezGeneId":107986443},{"hugoGeneSymbol":"LOC107986444","entrezGeneId":107986444},{"hugoGeneSymbol":"LOC107986445","entrezGeneId":107986445},{"hugoGeneSymbol":"LOC107986446","entrezGeneId":107986446},{"hugoGeneSymbol":"LOC107986447","entrezGeneId":107986447},{"hugoGeneSymbol":"LOC107986448","entrezGeneId":107986448},{"hugoGeneSymbol":"LOC107986449","entrezGeneId":107986449},{"hugoGeneSymbol":"LOC107986450","entrezGeneId":107986450},{"hugoGeneSymbol":"LOC107986451","entrezGeneId":107986451},{"hugoGeneSymbol":"LOC107986452","entrezGeneId":107986452},{"hugoGeneSymbol":"LOC107986453","entrezGeneId":107986453},{"hugoGeneSymbol":"LOC107986454","entrezGeneId":107986454},{"hugoGeneSymbol":"LOC107986455","entrezGeneId":107986455},{"hugoGeneSymbol":"LOC107986457","entrezGeneId":107986457},{"hugoGeneSymbol":"LOC107986458","entrezGeneId":107986458},{"hugoGeneSymbol":"LOC107986459","entrezGeneId":107986459},{"hugoGeneSymbol":"LOC107986461","entrezGeneId":107986461},{"hugoGeneSymbol":"LOC107986462","entrezGeneId":107986462},{"hugoGeneSymbol":"LOC107986463","entrezGeneId":107986463},{"hugoGeneSymbol":"LOC107986464","entrezGeneId":107986464},{"hugoGeneSymbol":"LOC107986465","entrezGeneId":107986465},{"hugoGeneSymbol":"LOC107986466","entrezGeneId":107986466},{"hugoGeneSymbol":"LOC107986467","entrezGeneId":107986467},{"hugoGeneSymbol":"LOC107986468","entrezGeneId":107986468},{"hugoGeneSymbol":"LOC107986469","entrezGeneId":107986469},{"hugoGeneSymbol":"LOC107986470","entrezGeneId":107986470},{"hugoGeneSymbol":"LOC107986472","entrezGeneId":107986472},{"hugoGeneSymbol":"LOC107986473","entrezGeneId":107986473},{"hugoGeneSymbol":"LOC107986474","entrezGeneId":107986474},{"hugoGeneSymbol":"LOC107986475","entrezGeneId":107986475},{"hugoGeneSymbol":"LOC107986476","entrezGeneId":107986476},{"hugoGeneSymbol":"LOC107986477","entrezGeneId":107986477},{"hugoGeneSymbol":"LOC107986478","entrezGeneId":107986478},{"hugoGeneSymbol":"LOC107986479","entrezGeneId":107986479},{"hugoGeneSymbol":"LOC107986482","entrezGeneId":107986482},{"hugoGeneSymbol":"LOC107986483","entrezGeneId":107986483},{"hugoGeneSymbol":"LOC107986484","entrezGeneId":107986484},{"hugoGeneSymbol":"LOC107986485","entrezGeneId":107986485},{"hugoGeneSymbol":"LOC107986486","entrezGeneId":107986486},{"hugoGeneSymbol":"LOC107986487","entrezGeneId":107986487},{"hugoGeneSymbol":"LOC107986488","entrezGeneId":107986488},{"hugoGeneSymbol":"LOC107986489","entrezGeneId":107986489},{"hugoGeneSymbol":"LOC107986490","entrezGeneId":107986490},{"hugoGeneSymbol":"LOC107986491","entrezGeneId":107986491},{"hugoGeneSymbol":"LOC107986492","entrezGeneId":107986492},{"hugoGeneSymbol":"LOC107986493","entrezGeneId":107986493},{"hugoGeneSymbol":"LOC107986494","entrezGeneId":107986494},{"hugoGeneSymbol":"LOC107986495","entrezGeneId":107986495},{"hugoGeneSymbol":"LOC107986496","entrezGeneId":107986496},{"hugoGeneSymbol":"LOC107986512","entrezGeneId":107986512},{"hugoGeneSymbol":"LOC107986513","entrezGeneId":107986513},{"hugoGeneSymbol":"LOC107986514","entrezGeneId":107986514},{"hugoGeneSymbol":"LOC107986515","entrezGeneId":107986515},{"hugoGeneSymbol":"LOC107986516","entrezGeneId":107986516},{"hugoGeneSymbol":"LOC107986517","entrezGeneId":107986517},{"hugoGeneSymbol":"LOC107986519","entrezGeneId":107986519},{"hugoGeneSymbol":"LOC107986520","entrezGeneId":107986520},{"hugoGeneSymbol":"LOC107986521","entrezGeneId":107986521},{"hugoGeneSymbol":"LOC107986522","entrezGeneId":107986522},{"hugoGeneSymbol":"LOC107986523","entrezGeneId":107986523},{"hugoGeneSymbol":"LOC107986524","entrezGeneId":107986524},{"hugoGeneSymbol":"LOC107986525","entrezGeneId":107986525},{"hugoGeneSymbol":"LOC107986526","entrezGeneId":107986526},{"hugoGeneSymbol":"LOC107986528","entrezGeneId":107986528},{"hugoGeneSymbol":"LOC107986529","entrezGeneId":107986529},{"hugoGeneSymbol":"LOC107986530","entrezGeneId":107986530},{"hugoGeneSymbol":"LOC107986531","entrezGeneId":107986531},{"hugoGeneSymbol":"LOC107986532","entrezGeneId":107986532},{"hugoGeneSymbol":"LOC107986534","entrezGeneId":107986534},{"hugoGeneSymbol":"LOC107986535","entrezGeneId":107986535},{"hugoGeneSymbol":"LOC107986537","entrezGeneId":107986537},{"hugoGeneSymbol":"LOC107986538","entrezGeneId":107986538},{"hugoGeneSymbol":"LOC107986539","entrezGeneId":107986539},{"hugoGeneSymbol":"LOC107986540","entrezGeneId":107986540},{"hugoGeneSymbol":"LOC107986541","entrezGeneId":107986541},{"hugoGeneSymbol":"LOC107986543","entrezGeneId":107986543},{"hugoGeneSymbol":"LOC107986544","entrezGeneId":107986544},{"hugoGeneSymbol":"LOC107986545","entrezGeneId":107986545},{"hugoGeneSymbol":"LOC107986546","entrezGeneId":107986546},{"hugoGeneSymbol":"LOC107986547","entrezGeneId":107986547},{"hugoGeneSymbol":"LOC107986548","entrezGeneId":107986548},{"hugoGeneSymbol":"LOC107986549","entrezGeneId":107986549},{"hugoGeneSymbol":"LOC107986550","entrezGeneId":107986550},{"hugoGeneSymbol":"LOC107986551","entrezGeneId":107986551},{"hugoGeneSymbol":"LOC107986552","entrezGeneId":107986552},{"hugoGeneSymbol":"LOC107986553","entrezGeneId":107986553},{"hugoGeneSymbol":"LOC107986554","entrezGeneId":107986554},{"hugoGeneSymbol":"LOC107986555","entrezGeneId":107986555},{"hugoGeneSymbol":"LOC107986556","entrezGeneId":107986556},{"hugoGeneSymbol":"LOC107986557","entrezGeneId":107986557},{"hugoGeneSymbol":"LOC107986558","entrezGeneId":107986558},{"hugoGeneSymbol":"LOC107986559","entrezGeneId":107986559},{"hugoGeneSymbol":"LOC107986560","entrezGeneId":107986560},{"hugoGeneSymbol":"LOC107986561","entrezGeneId":107986561},{"hugoGeneSymbol":"LOC107986562","entrezGeneId":107986562},{"hugoGeneSymbol":"LOC107986564","entrezGeneId":107986564},{"hugoGeneSymbol":"LOC107986566","entrezGeneId":107986566},{"hugoGeneSymbol":"LOC107986567","entrezGeneId":107986567},{"hugoGeneSymbol":"LOC107986569","entrezGeneId":107986569},{"hugoGeneSymbol":"LOC107986570","entrezGeneId":107986570},{"hugoGeneSymbol":"LOC107986571","entrezGeneId":107986571},{"hugoGeneSymbol":"LOC107986572","entrezGeneId":107986572},{"hugoGeneSymbol":"LOC107986573","entrezGeneId":107986573},{"hugoGeneSymbol":"LOC107986574","entrezGeneId":107986574},{"hugoGeneSymbol":"LOC107986575","entrezGeneId":107986575},{"hugoGeneSymbol":"LOC107986576","entrezGeneId":107986576},{"hugoGeneSymbol":"LOC107986577","entrezGeneId":107986577},{"hugoGeneSymbol":"LOC107986578","entrezGeneId":107986578},{"hugoGeneSymbol":"LOC107986579","entrezGeneId":107986579},{"hugoGeneSymbol":"LOC107986582","entrezGeneId":107986582},{"hugoGeneSymbol":"LOC107986583","entrezGeneId":107986583},{"hugoGeneSymbol":"LOC107986584","entrezGeneId":107986584},{"hugoGeneSymbol":"LOC107986586","entrezGeneId":107986586},{"hugoGeneSymbol":"LOC107986588","entrezGeneId":107986588},{"hugoGeneSymbol":"LOC107986589","entrezGeneId":107986589},{"hugoGeneSymbol":"LOC107986590","entrezGeneId":107986590},{"hugoGeneSymbol":"LOC107986592","entrezGeneId":107986592},{"hugoGeneSymbol":"LOC107986593","entrezGeneId":107986593},{"hugoGeneSymbol":"LOC107986594","entrezGeneId":107986594},{"hugoGeneSymbol":"LOC107986595","entrezGeneId":107986595},{"hugoGeneSymbol":"LOC107986596","entrezGeneId":107986596},{"hugoGeneSymbol":"LOC107986597","entrezGeneId":107986597},{"hugoGeneSymbol":"LOC107986598","entrezGeneId":107986598},{"hugoGeneSymbol":"LOC107986599","entrezGeneId":107986599},{"hugoGeneSymbol":"LOC107986600","entrezGeneId":107986600},{"hugoGeneSymbol":"LOC107986601","entrezGeneId":107986601},{"hugoGeneSymbol":"LOC107986602","entrezGeneId":107986602},{"hugoGeneSymbol":"LOC107986603","entrezGeneId":107986603},{"hugoGeneSymbol":"LOC107986604","entrezGeneId":107986604},{"hugoGeneSymbol":"LOC107986605","entrezGeneId":107986605},{"hugoGeneSymbol":"LOC107986606","entrezGeneId":107986606},{"hugoGeneSymbol":"LOC107986607","entrezGeneId":107986607},{"hugoGeneSymbol":"LOC107986608","entrezGeneId":107986608},{"hugoGeneSymbol":"LOC107986610","entrezGeneId":107986610},{"hugoGeneSymbol":"LOC107986611","entrezGeneId":107986611},{"hugoGeneSymbol":"LOC107986613","entrezGeneId":107986613},{"hugoGeneSymbol":"LOC107986614","entrezGeneId":107986614},{"hugoGeneSymbol":"LOC107986617","entrezGeneId":107986617},{"hugoGeneSymbol":"LOC107986618","entrezGeneId":107986618},{"hugoGeneSymbol":"LOC107986619","entrezGeneId":107986619},{"hugoGeneSymbol":"LOC107986620","entrezGeneId":107986620},{"hugoGeneSymbol":"LOC107986621","entrezGeneId":107986621},{"hugoGeneSymbol":"LOC107986622","entrezGeneId":107986622},{"hugoGeneSymbol":"LOC107986623","entrezGeneId":107986623},{"hugoGeneSymbol":"LOC107986624","entrezGeneId":107986624},{"hugoGeneSymbol":"LOC107986625","entrezGeneId":107986625},{"hugoGeneSymbol":"LOC107986626","entrezGeneId":107986626},{"hugoGeneSymbol":"LOC107986627","entrezGeneId":107986627},{"hugoGeneSymbol":"LOC107986629","entrezGeneId":107986629},{"hugoGeneSymbol":"LOC107986630","entrezGeneId":107986630},{"hugoGeneSymbol":"LOC107986631","entrezGeneId":107986631},{"hugoGeneSymbol":"LOC107986632","entrezGeneId":107986632},{"hugoGeneSymbol":"LOC107986633","entrezGeneId":107986633},{"hugoGeneSymbol":"LOC107986634","entrezGeneId":107986634},{"hugoGeneSymbol":"LOC107986635","entrezGeneId":107986635},{"hugoGeneSymbol":"LOC107986636","entrezGeneId":107986636},{"hugoGeneSymbol":"LOC107986637","entrezGeneId":107986637},{"hugoGeneSymbol":"LOC107986638","entrezGeneId":107986638},{"hugoGeneSymbol":"LOC107986639","entrezGeneId":107986639},{"hugoGeneSymbol":"LOC107986640","entrezGeneId":107986640},{"hugoGeneSymbol":"LOC107986641","entrezGeneId":107986641},{"hugoGeneSymbol":"LOC107986642","entrezGeneId":107986642},{"hugoGeneSymbol":"LOC107986643","entrezGeneId":107986643},{"hugoGeneSymbol":"LOC107986644","entrezGeneId":107986644},{"hugoGeneSymbol":"LOC107986646","entrezGeneId":107986646},{"hugoGeneSymbol":"LOC107986648","entrezGeneId":107986648},{"hugoGeneSymbol":"LOC107986649","entrezGeneId":107986649},{"hugoGeneSymbol":"LOC107986650","entrezGeneId":107986650},{"hugoGeneSymbol":"LOC107986651","entrezGeneId":107986651},{"hugoGeneSymbol":"LOC107986652","entrezGeneId":107986652},{"hugoGeneSymbol":"LOC107986653","entrezGeneId":107986653},{"hugoGeneSymbol":"LOC107986654","entrezGeneId":107986654},{"hugoGeneSymbol":"LOC107986655","entrezGeneId":107986655},{"hugoGeneSymbol":"LOC107986656","entrezGeneId":107986656},{"hugoGeneSymbol":"LOC107986659","entrezGeneId":107986659},{"hugoGeneSymbol":"LOC107986660","entrezGeneId":107986660},{"hugoGeneSymbol":"LOC107986661","entrezGeneId":107986661},{"hugoGeneSymbol":"LOC107986662","entrezGeneId":107986662},{"hugoGeneSymbol":"LOC107986663","entrezGeneId":107986663},{"hugoGeneSymbol":"LOC107986664","entrezGeneId":107986664},{"hugoGeneSymbol":"LOC107986665","entrezGeneId":107986665},{"hugoGeneSymbol":"LOC107986666","entrezGeneId":107986666},{"hugoGeneSymbol":"LOC107986667","entrezGeneId":107986667},{"hugoGeneSymbol":"LOC107986668","entrezGeneId":107986668},{"hugoGeneSymbol":"LOC107986669","entrezGeneId":107986669},{"hugoGeneSymbol":"LOC107986671","entrezGeneId":107986671},{"hugoGeneSymbol":"LOC107986672","entrezGeneId":107986672},{"hugoGeneSymbol":"LOC107986673","entrezGeneId":107986673},{"hugoGeneSymbol":"LOC107986674","entrezGeneId":107986674},{"hugoGeneSymbol":"LOC107986675","entrezGeneId":107986675},{"hugoGeneSymbol":"LOC107986676","entrezGeneId":107986676},{"hugoGeneSymbol":"LOC107986677","entrezGeneId":107986677},{"hugoGeneSymbol":"LOC107986678","entrezGeneId":107986678},{"hugoGeneSymbol":"LOC107986694","entrezGeneId":107986694},{"hugoGeneSymbol":"LOC107986696","entrezGeneId":107986696},{"hugoGeneSymbol":"LOC107986697","entrezGeneId":107986697},{"hugoGeneSymbol":"LOC107986698","entrezGeneId":107986698},{"hugoGeneSymbol":"LOC107986699","entrezGeneId":107986699},{"hugoGeneSymbol":"LOC107986700","entrezGeneId":107986700},{"hugoGeneSymbol":"LOC107986703","entrezGeneId":107986703},{"hugoGeneSymbol":"LOC107986704","entrezGeneId":107986704},{"hugoGeneSymbol":"LOC107986707","entrezGeneId":107986707},{"hugoGeneSymbol":"LOC107986708","entrezGeneId":107986708},{"hugoGeneSymbol":"LOC107986709","entrezGeneId":107986709},{"hugoGeneSymbol":"LOC107986710","entrezGeneId":107986710},{"hugoGeneSymbol":"LOC107986712","entrezGeneId":107986712},{"hugoGeneSymbol":"LOC107986713","entrezGeneId":107986713},{"hugoGeneSymbol":"LOC107986714","entrezGeneId":107986714},{"hugoGeneSymbol":"LOC107986715","entrezGeneId":107986715},{"hugoGeneSymbol":"LOC107986716","entrezGeneId":107986716},{"hugoGeneSymbol":"LOC107986717","entrezGeneId":107986717},{"hugoGeneSymbol":"LOC107986718","entrezGeneId":107986718},{"hugoGeneSymbol":"LOC107986719","entrezGeneId":107986719},{"hugoGeneSymbol":"LOC107986720","entrezGeneId":107986720},{"hugoGeneSymbol":"LOC107986721","entrezGeneId":107986721},{"hugoGeneSymbol":"LOC107986722","entrezGeneId":107986722},{"hugoGeneSymbol":"LOC107986723","entrezGeneId":107986723},{"hugoGeneSymbol":"LOC107986725","entrezGeneId":107986725},{"hugoGeneSymbol":"LOC107986726","entrezGeneId":107986726},{"hugoGeneSymbol":"LOC107986727","entrezGeneId":107986727},{"hugoGeneSymbol":"LOC107986729","entrezGeneId":107986729},{"hugoGeneSymbol":"LOC107986731","entrezGeneId":107986731},{"hugoGeneSymbol":"LOC107986733","entrezGeneId":107986733},{"hugoGeneSymbol":"LOC107986734","entrezGeneId":107986734},{"hugoGeneSymbol":"LOC107986735","entrezGeneId":107986735},{"hugoGeneSymbol":"LOC107986736","entrezGeneId":107986736},{"hugoGeneSymbol":"LOC107986737","entrezGeneId":107986737},{"hugoGeneSymbol":"LOC107986738","entrezGeneId":107986738},{"hugoGeneSymbol":"LOC107986739","entrezGeneId":107986739},{"hugoGeneSymbol":"LOC107986740","entrezGeneId":107986740},{"hugoGeneSymbol":"LOC107986741","entrezGeneId":107986741},{"hugoGeneSymbol":"LOC107986742","entrezGeneId":107986742},{"hugoGeneSymbol":"LOC107986743","entrezGeneId":107986743},{"hugoGeneSymbol":"LOC107986744","entrezGeneId":107986744},{"hugoGeneSymbol":"LOC107986745","entrezGeneId":107986745},{"hugoGeneSymbol":"LOC107986746","entrezGeneId":107986746},{"hugoGeneSymbol":"LOC107986747","entrezGeneId":107986747},{"hugoGeneSymbol":"LOC107986749","entrezGeneId":107986749},{"hugoGeneSymbol":"LOC107986750","entrezGeneId":107986750},{"hugoGeneSymbol":"LOC107986751","entrezGeneId":107986751},{"hugoGeneSymbol":"LOC107986752","entrezGeneId":107986752},{"hugoGeneSymbol":"LOC107986754","entrezGeneId":107986754},{"hugoGeneSymbol":"LOC107986755","entrezGeneId":107986755},{"hugoGeneSymbol":"LOC107986756","entrezGeneId":107986756},{"hugoGeneSymbol":"LOC107986757","entrezGeneId":107986757},{"hugoGeneSymbol":"LOC107986758","entrezGeneId":107986758},{"hugoGeneSymbol":"LOC107986759","entrezGeneId":107986759},{"hugoGeneSymbol":"LOC107986760","entrezGeneId":107986760},{"hugoGeneSymbol":"LOC107986761","entrezGeneId":107986761},{"hugoGeneSymbol":"LOC107986762","entrezGeneId":107986762},{"hugoGeneSymbol":"LOC107986763","entrezGeneId":107986763},{"hugoGeneSymbol":"LOC107986764","entrezGeneId":107986764},{"hugoGeneSymbol":"LOC107986766","entrezGeneId":107986766},{"hugoGeneSymbol":"LOC107986767","entrezGeneId":107986767},{"hugoGeneSymbol":"LOC107986768","entrezGeneId":107986768},{"hugoGeneSymbol":"LOC107986769","entrezGeneId":107986769},{"hugoGeneSymbol":"LOC107986770","entrezGeneId":107986770},{"hugoGeneSymbol":"LOC107986772","entrezGeneId":107986772},{"hugoGeneSymbol":"LOC107986773","entrezGeneId":107986773},{"hugoGeneSymbol":"LOC107986774","entrezGeneId":107986774},{"hugoGeneSymbol":"LOC107986775","entrezGeneId":107986775},{"hugoGeneSymbol":"LOC107986776","entrezGeneId":107986776},{"hugoGeneSymbol":"LOC107986777","entrezGeneId":107986777},{"hugoGeneSymbol":"LOC107986778","entrezGeneId":107986778},{"hugoGeneSymbol":"LOC107986779","entrezGeneId":107986779},{"hugoGeneSymbol":"LOC107986780","entrezGeneId":107986780},{"hugoGeneSymbol":"LOC107986781","entrezGeneId":107986781},{"hugoGeneSymbol":"LOC107986782","entrezGeneId":107986782},{"hugoGeneSymbol":"LOC107986783","entrezGeneId":107986783},{"hugoGeneSymbol":"LOC107986784","entrezGeneId":107986784},{"hugoGeneSymbol":"LOC107986785","entrezGeneId":107986785},{"hugoGeneSymbol":"LOC107986786","entrezGeneId":107986786},{"hugoGeneSymbol":"LOC107986787","entrezGeneId":107986787},{"hugoGeneSymbol":"LOC107986788","entrezGeneId":107986788},{"hugoGeneSymbol":"LOC107986789","entrezGeneId":107986789},{"hugoGeneSymbol":"LOC107986790","entrezGeneId":107986790},{"hugoGeneSymbol":"LOC107986791","entrezGeneId":107986791},{"hugoGeneSymbol":"LOC107986794","entrezGeneId":107986794},{"hugoGeneSymbol":"LOC107986795","entrezGeneId":107986795},{"hugoGeneSymbol":"LOC107986796","entrezGeneId":107986796},{"hugoGeneSymbol":"LOC107986797","entrezGeneId":107986797},{"hugoGeneSymbol":"LOC107986798","entrezGeneId":107986798},{"hugoGeneSymbol":"LOC107986799","entrezGeneId":107986799},{"hugoGeneSymbol":"LOC107986800","entrezGeneId":107986800},{"hugoGeneSymbol":"LOC107986801","entrezGeneId":107986801},{"hugoGeneSymbol":"LOC107986803","entrezGeneId":107986803},{"hugoGeneSymbol":"LOC107986804","entrezGeneId":107986804},{"hugoGeneSymbol":"LOC107986805","entrezGeneId":107986805},{"hugoGeneSymbol":"LOC107986806","entrezGeneId":107986806},{"hugoGeneSymbol":"LOC107986810","entrezGeneId":107986810},{"hugoGeneSymbol":"LOC107986811","entrezGeneId":107986811},{"hugoGeneSymbol":"LOC107986812","entrezGeneId":107986812},{"hugoGeneSymbol":"LOC107986813","entrezGeneId":107986813},{"hugoGeneSymbol":"LOC107986814","entrezGeneId":107986814},{"hugoGeneSymbol":"LOC107986815","entrezGeneId":107986815},{"hugoGeneSymbol":"LOC107986816","entrezGeneId":107986816},{"hugoGeneSymbol":"LOC107986817","entrezGeneId":107986817},{"hugoGeneSymbol":"LOC107986819","entrezGeneId":107986819},{"hugoGeneSymbol":"LOC107986820","entrezGeneId":107986820},{"hugoGeneSymbol":"LOC107986821","entrezGeneId":107986821},{"hugoGeneSymbol":"LOC107986822","entrezGeneId":107986822},{"hugoGeneSymbol":"LOC107986823","entrezGeneId":107986823},{"hugoGeneSymbol":"LOC107986824","entrezGeneId":107986824},{"hugoGeneSymbol":"LOC107986825","entrezGeneId":107986825},{"hugoGeneSymbol":"LOC107986826","entrezGeneId":107986826},{"hugoGeneSymbol":"LOC107986828","entrezGeneId":107986828},{"hugoGeneSymbol":"LOC107986829","entrezGeneId":107986829},{"hugoGeneSymbol":"LOC107986830","entrezGeneId":107986830},{"hugoGeneSymbol":"LOC107986832","entrezGeneId":107986832},{"hugoGeneSymbol":"LOC107986833","entrezGeneId":107986833},{"hugoGeneSymbol":"LOC107986834","entrezGeneId":107986834},{"hugoGeneSymbol":"LOC107986835","entrezGeneId":107986835},{"hugoGeneSymbol":"LOC107986836","entrezGeneId":107986836},{"hugoGeneSymbol":"LOC107986837","entrezGeneId":107986837},{"hugoGeneSymbol":"LOC107986838","entrezGeneId":107986838},{"hugoGeneSymbol":"LOC107986839","entrezGeneId":107986839},{"hugoGeneSymbol":"LOC107986840","entrezGeneId":107986840},{"hugoGeneSymbol":"LOC107986841","entrezGeneId":107986841},{"hugoGeneSymbol":"LOC107986842","entrezGeneId":107986842},{"hugoGeneSymbol":"LOC107986843","entrezGeneId":107986843},{"hugoGeneSymbol":"LOC107986845","entrezGeneId":107986845},{"hugoGeneSymbol":"LOC107986846","entrezGeneId":107986846},{"hugoGeneSymbol":"LOC107986847","entrezGeneId":107986847},{"hugoGeneSymbol":"LOC107986848","entrezGeneId":107986848},{"hugoGeneSymbol":"LOC107986849","entrezGeneId":107986849},{"hugoGeneSymbol":"LOC107986850","entrezGeneId":107986850},{"hugoGeneSymbol":"LOC107986851","entrezGeneId":107986851},{"hugoGeneSymbol":"LOC107986852","entrezGeneId":107986852},{"hugoGeneSymbol":"LOC107986853","entrezGeneId":107986853},{"hugoGeneSymbol":"LOC107986854","entrezGeneId":107986854},{"hugoGeneSymbol":"LOC107986855","entrezGeneId":107986855},{"hugoGeneSymbol":"LOC107986856","entrezGeneId":107986856},{"hugoGeneSymbol":"LOC107986858","entrezGeneId":107986858},{"hugoGeneSymbol":"LOC107986859","entrezGeneId":107986859},{"hugoGeneSymbol":"LOC107986860","entrezGeneId":107986860},{"hugoGeneSymbol":"LOC107986862","entrezGeneId":107986862},{"hugoGeneSymbol":"LOC107986863","entrezGeneId":107986863},{"hugoGeneSymbol":"LOC107986864","entrezGeneId":107986864},{"hugoGeneSymbol":"LOC107986865","entrezGeneId":107986865},{"hugoGeneSymbol":"LOC107986868","entrezGeneId":107986868},{"hugoGeneSymbol":"LOC107986870","entrezGeneId":107986870},{"hugoGeneSymbol":"LOC107986871","entrezGeneId":107986871},{"hugoGeneSymbol":"LOC107986872","entrezGeneId":107986872},{"hugoGeneSymbol":"LOC107986874","entrezGeneId":107986874},{"hugoGeneSymbol":"LOC107986875","entrezGeneId":107986875},{"hugoGeneSymbol":"LOC107986876","entrezGeneId":107986876},{"hugoGeneSymbol":"LOC107986878","entrezGeneId":107986878},{"hugoGeneSymbol":"LOC107986880","entrezGeneId":107986880},{"hugoGeneSymbol":"LOC107986881","entrezGeneId":107986881},{"hugoGeneSymbol":"LOC107986882","entrezGeneId":107986882},{"hugoGeneSymbol":"LOC107986883","entrezGeneId":107986883},{"hugoGeneSymbol":"LOC107986884","entrezGeneId":107986884},{"hugoGeneSymbol":"LOC107986885","entrezGeneId":107986885},{"hugoGeneSymbol":"LOC107986886","entrezGeneId":107986886},{"hugoGeneSymbol":"LOC107986887","entrezGeneId":107986887},{"hugoGeneSymbol":"LOC107986888","entrezGeneId":107986888},{"hugoGeneSymbol":"LOC107986889","entrezGeneId":107986889},{"hugoGeneSymbol":"LOC107986890","entrezGeneId":107986890},{"hugoGeneSymbol":"LOC107986891","entrezGeneId":107986891},{"hugoGeneSymbol":"LOC107986892","entrezGeneId":107986892},{"hugoGeneSymbol":"LOC107986893","entrezGeneId":107986893},{"hugoGeneSymbol":"LOC107986894","entrezGeneId":107986894},{"hugoGeneSymbol":"LOC107986895","entrezGeneId":107986895},{"hugoGeneSymbol":"LOC107986896","entrezGeneId":107986896},{"hugoGeneSymbol":"LOC107986897","entrezGeneId":107986897},{"hugoGeneSymbol":"LOC107986898","entrezGeneId":107986898},{"hugoGeneSymbol":"LOC107986899","entrezGeneId":107986899},{"hugoGeneSymbol":"LOC107986901","entrezGeneId":107986901},{"hugoGeneSymbol":"LOC107986902","entrezGeneId":107986902},{"hugoGeneSymbol":"LOC107986903","entrezGeneId":107986903},{"hugoGeneSymbol":"LOC107986904","entrezGeneId":107986904},{"hugoGeneSymbol":"LOC107986905","entrezGeneId":107986905},{"hugoGeneSymbol":"LOC107986906","entrezGeneId":107986906},{"hugoGeneSymbol":"LOC107986907","entrezGeneId":107986907},{"hugoGeneSymbol":"LOC107986908","entrezGeneId":107986908},{"hugoGeneSymbol":"LOC107986909","entrezGeneId":107986909},{"hugoGeneSymbol":"LOC107986910","entrezGeneId":107986910},{"hugoGeneSymbol":"LOC107986912","entrezGeneId":107986912},{"hugoGeneSymbol":"LOC107986913","entrezGeneId":107986913},{"hugoGeneSymbol":"LOC107986914","entrezGeneId":107986914},{"hugoGeneSymbol":"LOC107986915","entrezGeneId":107986915},{"hugoGeneSymbol":"LOC107986916","entrezGeneId":107986916},{"hugoGeneSymbol":"LOC107986918","entrezGeneId":107986918},{"hugoGeneSymbol":"LOC107986919","entrezGeneId":107986919},{"hugoGeneSymbol":"LOC107986920","entrezGeneId":107986920},{"hugoGeneSymbol":"LOC107986921","entrezGeneId":107986921},{"hugoGeneSymbol":"LOC107986922","entrezGeneId":107986922},{"hugoGeneSymbol":"LOC107986923","entrezGeneId":107986923},{"hugoGeneSymbol":"LOC107986924","entrezGeneId":107986924},{"hugoGeneSymbol":"LOC107986925","entrezGeneId":107986925},{"hugoGeneSymbol":"LOC107986926","entrezGeneId":107986926},{"hugoGeneSymbol":"LOC107986929","entrezGeneId":107986929},{"hugoGeneSymbol":"LOC107986930","entrezGeneId":107986930},{"hugoGeneSymbol":"LOC107986931","entrezGeneId":107986931},{"hugoGeneSymbol":"LOC107986932","entrezGeneId":107986932},{"hugoGeneSymbol":"LOC107986933","entrezGeneId":107986933},{"hugoGeneSymbol":"LOC107986934","entrezGeneId":107986934},{"hugoGeneSymbol":"LOC107986935","entrezGeneId":107986935},{"hugoGeneSymbol":"LOC107986936","entrezGeneId":107986936},{"hugoGeneSymbol":"LOC107986938","entrezGeneId":107986938},{"hugoGeneSymbol":"LOC107986939","entrezGeneId":107986939},{"hugoGeneSymbol":"LOC107986940","entrezGeneId":107986940},{"hugoGeneSymbol":"LOC107986941","entrezGeneId":107986941},{"hugoGeneSymbol":"LOC107986942","entrezGeneId":107986942},{"hugoGeneSymbol":"LOC107986943","entrezGeneId":107986943},{"hugoGeneSymbol":"LOC107986944","entrezGeneId":107986944},{"hugoGeneSymbol":"LOC107986945","entrezGeneId":107986945},{"hugoGeneSymbol":"LOC107986946","entrezGeneId":107986946},{"hugoGeneSymbol":"LOC107986948","entrezGeneId":107986948},{"hugoGeneSymbol":"LOC107986949","entrezGeneId":107986949},{"hugoGeneSymbol":"LOC107986950","entrezGeneId":107986950},{"hugoGeneSymbol":"LOC107986951","entrezGeneId":107986951},{"hugoGeneSymbol":"LOC107986952","entrezGeneId":107986952},{"hugoGeneSymbol":"LOC107986953","entrezGeneId":107986953},{"hugoGeneSymbol":"LOC107986954","entrezGeneId":107986954},{"hugoGeneSymbol":"LOC107986955","entrezGeneId":107986955},{"hugoGeneSymbol":"LOC107986956","entrezGeneId":107986956},{"hugoGeneSymbol":"LOC107986957","entrezGeneId":107986957},{"hugoGeneSymbol":"LOC107986959","entrezGeneId":107986959},{"hugoGeneSymbol":"LOC107986960","entrezGeneId":107986960},{"hugoGeneSymbol":"LOC107986961","entrezGeneId":107986961},{"hugoGeneSymbol":"LOC107986962","entrezGeneId":107986962},{"hugoGeneSymbol":"LOC107986963","entrezGeneId":107986963},{"hugoGeneSymbol":"LOC107986964","entrezGeneId":107986964},{"hugoGeneSymbol":"LOC107986965","entrezGeneId":107986965},{"hugoGeneSymbol":"LOC107986966","entrezGeneId":107986966},{"hugoGeneSymbol":"LOC107986968","entrezGeneId":107986968},{"hugoGeneSymbol":"LOC107986969","entrezGeneId":107986969},{"hugoGeneSymbol":"LOC107986970","entrezGeneId":107986970},{"hugoGeneSymbol":"LOC107986971","entrezGeneId":107986971},{"hugoGeneSymbol":"LOC107986972","entrezGeneId":107986972},{"hugoGeneSymbol":"LOC107986973","entrezGeneId":107986973},{"hugoGeneSymbol":"LOC107986974","entrezGeneId":107986974},{"hugoGeneSymbol":"LOC107986976","entrezGeneId":107986976},{"hugoGeneSymbol":"LOC107986977","entrezGeneId":107986977},{"hugoGeneSymbol":"LOC107986978","entrezGeneId":107986978},{"hugoGeneSymbol":"LOC107986979","entrezGeneId":107986979},{"hugoGeneSymbol":"LOC107986981","entrezGeneId":107986981},{"hugoGeneSymbol":"LOC107986982","entrezGeneId":107986982},{"hugoGeneSymbol":"LOC107986983","entrezGeneId":107986983},{"hugoGeneSymbol":"LOC107986984","entrezGeneId":107986984},{"hugoGeneSymbol":"LOC107986985","entrezGeneId":107986985},{"hugoGeneSymbol":"LOC107986986","entrezGeneId":107986986},{"hugoGeneSymbol":"LOC107986989","entrezGeneId":107986989},{"hugoGeneSymbol":"LOC107986990","entrezGeneId":107986990},{"hugoGeneSymbol":"LOC107986991","entrezGeneId":107986991},{"hugoGeneSymbol":"LOC107986992","entrezGeneId":107986992},{"hugoGeneSymbol":"LOC107986993","entrezGeneId":107986993},{"hugoGeneSymbol":"LOC107986995","entrezGeneId":107986995},{"hugoGeneSymbol":"LOC107986997","entrezGeneId":107986997},{"hugoGeneSymbol":"LOC107986998","entrezGeneId":107986998},{"hugoGeneSymbol":"LOC107986999","entrezGeneId":107986999},{"hugoGeneSymbol":"LOC107987000","entrezGeneId":107987000},{"hugoGeneSymbol":"LOC107987003","entrezGeneId":107987003},{"hugoGeneSymbol":"LOC107987004","entrezGeneId":107987004},{"hugoGeneSymbol":"LOC107987006","entrezGeneId":107987006},{"hugoGeneSymbol":"LOC107987007","entrezGeneId":107987007},{"hugoGeneSymbol":"LOC107987008","entrezGeneId":107987008},{"hugoGeneSymbol":"LOC107987009","entrezGeneId":107987009},{"hugoGeneSymbol":"LOC107987010","entrezGeneId":107987010},{"hugoGeneSymbol":"LOC107987011","entrezGeneId":107987011},{"hugoGeneSymbol":"LOC107987012","entrezGeneId":107987012},{"hugoGeneSymbol":"LOC107987013","entrezGeneId":107987013},{"hugoGeneSymbol":"LOC107987014","entrezGeneId":107987014},{"hugoGeneSymbol":"LOC107987015","entrezGeneId":107987015},{"hugoGeneSymbol":"LOC107987016","entrezGeneId":107987016},{"hugoGeneSymbol":"LOC107987020","entrezGeneId":107987020},{"hugoGeneSymbol":"LOC107987021","entrezGeneId":107987021},{"hugoGeneSymbol":"LOC107987022","entrezGeneId":107987022},{"hugoGeneSymbol":"LOC107987023","entrezGeneId":107987023},{"hugoGeneSymbol":"LOC107987024","entrezGeneId":107987024},{"hugoGeneSymbol":"LOC107987025","entrezGeneId":107987025},{"hugoGeneSymbol":"LOC107987026","entrezGeneId":107987026},{"hugoGeneSymbol":"LOC107987027","entrezGeneId":107987027},{"hugoGeneSymbol":"LOC107987028","entrezGeneId":107987028},{"hugoGeneSymbol":"LOC107987029","entrezGeneId":107987029},{"hugoGeneSymbol":"LOC107987031","entrezGeneId":107987031},{"hugoGeneSymbol":"LOC107987032","entrezGeneId":107987032},{"hugoGeneSymbol":"LOC107987033","entrezGeneId":107987033},{"hugoGeneSymbol":"LOC107987035","entrezGeneId":107987035},{"hugoGeneSymbol":"LOC107987037","entrezGeneId":107987037},{"hugoGeneSymbol":"LOC107987038","entrezGeneId":107987038},{"hugoGeneSymbol":"LOC107987039","entrezGeneId":107987039},{"hugoGeneSymbol":"LOC107987040","entrezGeneId":107987040},{"hugoGeneSymbol":"LOC107987041","entrezGeneId":107987041},{"hugoGeneSymbol":"LOC107987042","entrezGeneId":107987042},{"hugoGeneSymbol":"LOC107987043","entrezGeneId":107987043},{"hugoGeneSymbol":"LOC107987044","entrezGeneId":107987044},{"hugoGeneSymbol":"LOC107987046","entrezGeneId":107987046},{"hugoGeneSymbol":"LOC107987047","entrezGeneId":107987047},{"hugoGeneSymbol":"LOC107987048","entrezGeneId":107987048},{"hugoGeneSymbol":"LOC107987049","entrezGeneId":107987049},{"hugoGeneSymbol":"LOC107987051","entrezGeneId":107987051},{"hugoGeneSymbol":"LOC107987052","entrezGeneId":107987052},{"hugoGeneSymbol":"LOC107987053","entrezGeneId":107987053},{"hugoGeneSymbol":"LOC107987054","entrezGeneId":107987054},{"hugoGeneSymbol":"LOC107987055","entrezGeneId":107987055},{"hugoGeneSymbol":"LOC107987056","entrezGeneId":107987056},{"hugoGeneSymbol":"LOC107987057","entrezGeneId":107987057},{"hugoGeneSymbol":"LOC107987058","entrezGeneId":107987058},{"hugoGeneSymbol":"LOC107987059","entrezGeneId":107987059},{"hugoGeneSymbol":"LOC107987060","entrezGeneId":107987060},{"hugoGeneSymbol":"LOC107987061","entrezGeneId":107987061},{"hugoGeneSymbol":"LOC107987063","entrezGeneId":107987063},{"hugoGeneSymbol":"LOC107987064","entrezGeneId":107987064},{"hugoGeneSymbol":"LOC107987065","entrezGeneId":107987065},{"hugoGeneSymbol":"LOC107987066","entrezGeneId":107987066},{"hugoGeneSymbol":"LOC107987067","entrezGeneId":107987067},{"hugoGeneSymbol":"LOC107987068","entrezGeneId":107987068},{"hugoGeneSymbol":"LOC107987069","entrezGeneId":107987069},{"hugoGeneSymbol":"LOC107987070","entrezGeneId":107987070},{"hugoGeneSymbol":"LOC107987071","entrezGeneId":107987071},{"hugoGeneSymbol":"LOC107987072","entrezGeneId":107987072},{"hugoGeneSymbol":"LOC107987073","entrezGeneId":107987073},{"hugoGeneSymbol":"LOC107987074","entrezGeneId":107987074},{"hugoGeneSymbol":"LOC107987075","entrezGeneId":107987075},{"hugoGeneSymbol":"LOC107987076","entrezGeneId":107987076},{"hugoGeneSymbol":"LOC107987077","entrezGeneId":107987077},{"hugoGeneSymbol":"LOC107987078","entrezGeneId":107987078},{"hugoGeneSymbol":"LOC107987079","entrezGeneId":107987079},{"hugoGeneSymbol":"LOC107987080","entrezGeneId":107987080},{"hugoGeneSymbol":"LOC107987081","entrezGeneId":107987081},{"hugoGeneSymbol":"LOC107987082","entrezGeneId":107987082},{"hugoGeneSymbol":"LOC107987083","entrezGeneId":107987083},{"hugoGeneSymbol":"LOC107987084","entrezGeneId":107987084},{"hugoGeneSymbol":"LOC107987085","entrezGeneId":107987085},{"hugoGeneSymbol":"LOC107987086","entrezGeneId":107987086},{"hugoGeneSymbol":"LOC107987087","entrezGeneId":107987087},{"hugoGeneSymbol":"LOC107987088","entrezGeneId":107987088},{"hugoGeneSymbol":"LOC107987089","entrezGeneId":107987089},{"hugoGeneSymbol":"LOC107987090","entrezGeneId":107987090},{"hugoGeneSymbol":"LOC107987091","entrezGeneId":107987091},{"hugoGeneSymbol":"LOC107987094","entrezGeneId":107987094},{"hugoGeneSymbol":"LOC107987095","entrezGeneId":107987095},{"hugoGeneSymbol":"LOC107987096","entrezGeneId":107987096},{"hugoGeneSymbol":"LOC107987097","entrezGeneId":107987097},{"hugoGeneSymbol":"LOC107987098","entrezGeneId":107987098},{"hugoGeneSymbol":"LOC107987099","entrezGeneId":107987099},{"hugoGeneSymbol":"LOC107987100","entrezGeneId":107987100},{"hugoGeneSymbol":"LOC107987101","entrezGeneId":107987101},{"hugoGeneSymbol":"LOC107987102","entrezGeneId":107987102},{"hugoGeneSymbol":"LOC107987103","entrezGeneId":107987103},{"hugoGeneSymbol":"LOC107987104","entrezGeneId":107987104},{"hugoGeneSymbol":"LOC107987105","entrezGeneId":107987105},{"hugoGeneSymbol":"LOC107987106","entrezGeneId":107987106},{"hugoGeneSymbol":"LOC107987107","entrezGeneId":107987107},{"hugoGeneSymbol":"LOC107987108","entrezGeneId":107987108},{"hugoGeneSymbol":"LOC107987109","entrezGeneId":107987109},{"hugoGeneSymbol":"LOC107987110","entrezGeneId":107987110},{"hugoGeneSymbol":"LOC107987111","entrezGeneId":107987111},{"hugoGeneSymbol":"LOC107987112","entrezGeneId":107987112},{"hugoGeneSymbol":"LOC107987113","entrezGeneId":107987113},{"hugoGeneSymbol":"LOC107987114","entrezGeneId":107987114},{"hugoGeneSymbol":"LOC107987115","entrezGeneId":107987115},{"hugoGeneSymbol":"LOC107987116","entrezGeneId":107987116},{"hugoGeneSymbol":"LOC107987117","entrezGeneId":107987117},{"hugoGeneSymbol":"LOC107987118","entrezGeneId":107987118},{"hugoGeneSymbol":"LOC107987119","entrezGeneId":107987119},{"hugoGeneSymbol":"LOC107987120","entrezGeneId":107987120},{"hugoGeneSymbol":"LOC107987121","entrezGeneId":107987121},{"hugoGeneSymbol":"LOC107987122","entrezGeneId":107987122},{"hugoGeneSymbol":"LOC107987123","entrezGeneId":107987123},{"hugoGeneSymbol":"LOC107987124","entrezGeneId":107987124},{"hugoGeneSymbol":"LOC107987125","entrezGeneId":107987125},{"hugoGeneSymbol":"LOC107987126","entrezGeneId":107987126},{"hugoGeneSymbol":"LOC107987127","entrezGeneId":107987127},{"hugoGeneSymbol":"LOC107987128","entrezGeneId":107987128},{"hugoGeneSymbol":"LOC107987129","entrezGeneId":107987129},{"hugoGeneSymbol":"LOC107987132","entrezGeneId":107987132},{"hugoGeneSymbol":"LOC107987133","entrezGeneId":107987133},{"hugoGeneSymbol":"LOC107987134","entrezGeneId":107987134},{"hugoGeneSymbol":"LOC107987135","entrezGeneId":107987135},{"hugoGeneSymbol":"LOC107987136","entrezGeneId":107987136},{"hugoGeneSymbol":"LOC107987137","entrezGeneId":107987137},{"hugoGeneSymbol":"LOC107987138","entrezGeneId":107987138},{"hugoGeneSymbol":"LOC107987139","entrezGeneId":107987139},{"hugoGeneSymbol":"LOC107987140","entrezGeneId":107987140},{"hugoGeneSymbol":"LOC107987141","entrezGeneId":107987141},{"hugoGeneSymbol":"LOC107987142","entrezGeneId":107987142},{"hugoGeneSymbol":"LOC107987143","entrezGeneId":107987143},{"hugoGeneSymbol":"LOC107987145","entrezGeneId":107987145},{"hugoGeneSymbol":"LOC107987146","entrezGeneId":107987146},{"hugoGeneSymbol":"LOC107987147","entrezGeneId":107987147},{"hugoGeneSymbol":"LOC107987148","entrezGeneId":107987148},{"hugoGeneSymbol":"LOC107987150","entrezGeneId":107987150},{"hugoGeneSymbol":"LOC107987151","entrezGeneId":107987151},{"hugoGeneSymbol":"LOC107987152","entrezGeneId":107987152},{"hugoGeneSymbol":"LOC107987153","entrezGeneId":107987153},{"hugoGeneSymbol":"LOC107987155","entrezGeneId":107987155},{"hugoGeneSymbol":"LOC107987157","entrezGeneId":107987157},{"hugoGeneSymbol":"LOC107987158","entrezGeneId":107987158},{"hugoGeneSymbol":"LOC107987159","entrezGeneId":107987159},{"hugoGeneSymbol":"LOC107987160","entrezGeneId":107987160},{"hugoGeneSymbol":"LOC107987164","entrezGeneId":107987164},{"hugoGeneSymbol":"LOC107987165","entrezGeneId":107987165},{"hugoGeneSymbol":"LOC107987166","entrezGeneId":107987166},{"hugoGeneSymbol":"LOC107987168","entrezGeneId":107987168},{"hugoGeneSymbol":"LOC107987169","entrezGeneId":107987169},{"hugoGeneSymbol":"LOC107987170","entrezGeneId":107987170},{"hugoGeneSymbol":"LOC107987171","entrezGeneId":107987171},{"hugoGeneSymbol":"LOC107987172","entrezGeneId":107987172},{"hugoGeneSymbol":"LOC107987174","entrezGeneId":107987174},{"hugoGeneSymbol":"LOC107987175","entrezGeneId":107987175},{"hugoGeneSymbol":"LOC107987176","entrezGeneId":107987176},{"hugoGeneSymbol":"LOC107987177","entrezGeneId":107987177},{"hugoGeneSymbol":"LOC107987178","entrezGeneId":107987178},{"hugoGeneSymbol":"LOC107987180","entrezGeneId":107987180},{"hugoGeneSymbol":"LOC107987181","entrezGeneId":107987181},{"hugoGeneSymbol":"LOC107987182","entrezGeneId":107987182},{"hugoGeneSymbol":"LOC107987183","entrezGeneId":107987183},{"hugoGeneSymbol":"LOC107987186","entrezGeneId":107987186},{"hugoGeneSymbol":"LOC107987187","entrezGeneId":107987187},{"hugoGeneSymbol":"LOC107987188","entrezGeneId":107987188},{"hugoGeneSymbol":"LOC107987189","entrezGeneId":107987189},{"hugoGeneSymbol":"LOC107987190","entrezGeneId":107987190},{"hugoGeneSymbol":"LOC107987191","entrezGeneId":107987191},{"hugoGeneSymbol":"LOC107987192","entrezGeneId":107987192},{"hugoGeneSymbol":"LOC107987200","entrezGeneId":107987200},{"hugoGeneSymbol":"LOC107987204","entrezGeneId":107987204},{"hugoGeneSymbol":"LOC107987206","entrezGeneId":107987206},{"hugoGeneSymbol":"LOC107987207","entrezGeneId":107987207},{"hugoGeneSymbol":"LOC107987208","entrezGeneId":107987208},{"hugoGeneSymbol":"LOC107987209","entrezGeneId":107987209},{"hugoGeneSymbol":"LOC107987210","entrezGeneId":107987210},{"hugoGeneSymbol":"LOC107987211","entrezGeneId":107987211},{"hugoGeneSymbol":"LOC107987215","entrezGeneId":107987215},{"hugoGeneSymbol":"LOC107987217","entrezGeneId":107987217},{"hugoGeneSymbol":"LOC107987218","entrezGeneId":107987218},{"hugoGeneSymbol":"LOC107987219","entrezGeneId":107987219},{"hugoGeneSymbol":"LOC107987220","entrezGeneId":107987220},{"hugoGeneSymbol":"LOC107987221","entrezGeneId":107987221},{"hugoGeneSymbol":"LOC107987222","entrezGeneId":107987222},{"hugoGeneSymbol":"LOC107987223","entrezGeneId":107987223},{"hugoGeneSymbol":"LOC107987224","entrezGeneId":107987224},{"hugoGeneSymbol":"LOC107987225","entrezGeneId":107987225},{"hugoGeneSymbol":"LOC107987227","entrezGeneId":107987227},{"hugoGeneSymbol":"LOC107987228","entrezGeneId":107987228},{"hugoGeneSymbol":"LOC107987232","entrezGeneId":107987232},{"hugoGeneSymbol":"LOC107987233","entrezGeneId":107987233},{"hugoGeneSymbol":"LOC107987234","entrezGeneId":107987234},{"hugoGeneSymbol":"LOC107987235","entrezGeneId":107987235},{"hugoGeneSymbol":"LOC107987236","entrezGeneId":107987236},{"hugoGeneSymbol":"LOC107987237","entrezGeneId":107987237},{"hugoGeneSymbol":"LOC107987238","entrezGeneId":107987238},{"hugoGeneSymbol":"LOC107987240","entrezGeneId":107987240},{"hugoGeneSymbol":"LOC107987241","entrezGeneId":107987241},{"hugoGeneSymbol":"LOC107987243","entrezGeneId":107987243},{"hugoGeneSymbol":"LOC107987244","entrezGeneId":107987244},{"hugoGeneSymbol":"LOC107987245","entrezGeneId":107987245},{"hugoGeneSymbol":"LOC107987246","entrezGeneId":107987246},{"hugoGeneSymbol":"LOC107987247","entrezGeneId":107987247},{"hugoGeneSymbol":"LOC107987248","entrezGeneId":107987248},{"hugoGeneSymbol":"LOC107987249","entrezGeneId":107987249},{"hugoGeneSymbol":"LOC107987250","entrezGeneId":107987250},{"hugoGeneSymbol":"LOC107987251","entrezGeneId":107987251},{"hugoGeneSymbol":"LOC107987254","entrezGeneId":107987254},{"hugoGeneSymbol":"LOC107987256","entrezGeneId":107987256},{"hugoGeneSymbol":"LOC107987258","entrezGeneId":107987258},{"hugoGeneSymbol":"LOC107987259","entrezGeneId":107987259},{"hugoGeneSymbol":"LOC107987261","entrezGeneId":107987261},{"hugoGeneSymbol":"LOC107987262","entrezGeneId":107987262},{"hugoGeneSymbol":"LOC107987264","entrezGeneId":107987264},{"hugoGeneSymbol":"LOC107987266","entrezGeneId":107987266},{"hugoGeneSymbol":"LOC107987267","entrezGeneId":107987267},{"hugoGeneSymbol":"LOC107987269","entrezGeneId":107987269},{"hugoGeneSymbol":"LOC107987270","entrezGeneId":107987270},{"hugoGeneSymbol":"LOC107987272","entrezGeneId":107987272},{"hugoGeneSymbol":"LOC107987276","entrezGeneId":107987276},{"hugoGeneSymbol":"LOC107987277","entrezGeneId":107987277},{"hugoGeneSymbol":"LOC107987278","entrezGeneId":107987278},{"hugoGeneSymbol":"LOC107987280","entrezGeneId":107987280},{"hugoGeneSymbol":"LOC107987281","entrezGeneId":107987281},{"hugoGeneSymbol":"LOC107987282","entrezGeneId":107987282},{"hugoGeneSymbol":"LOC107987284","entrezGeneId":107987284},{"hugoGeneSymbol":"LOC107987285","entrezGeneId":107987285},{"hugoGeneSymbol":"LOC107987288","entrezGeneId":107987288},{"hugoGeneSymbol":"LOC107987289","entrezGeneId":107987289},{"hugoGeneSymbol":"LOC107987290","entrezGeneId":107987290},{"hugoGeneSymbol":"LOC107987292","entrezGeneId":107987292},{"hugoGeneSymbol":"LOC107987293","entrezGeneId":107987293},{"hugoGeneSymbol":"LOC107987294","entrezGeneId":107987294},{"hugoGeneSymbol":"LOC107987296","entrezGeneId":107987296},{"hugoGeneSymbol":"LOC107987299","entrezGeneId":107987299},{"hugoGeneSymbol":"LOC107987300","entrezGeneId":107987300},{"hugoGeneSymbol":"LOC107987301","entrezGeneId":107987301},{"hugoGeneSymbol":"LOC107987302","entrezGeneId":107987302},{"hugoGeneSymbol":"LOC107987303","entrezGeneId":107987303},{"hugoGeneSymbol":"LOC107987304","entrezGeneId":107987304},{"hugoGeneSymbol":"LOC107987305","entrezGeneId":107987305},{"hugoGeneSymbol":"LOC107987306","entrezGeneId":107987306},{"hugoGeneSymbol":"LOC107987307","entrezGeneId":107987307},{"hugoGeneSymbol":"LOC107987308","entrezGeneId":107987308},{"hugoGeneSymbol":"LOC107987309","entrezGeneId":107987309},{"hugoGeneSymbol":"LOC107987311","entrezGeneId":107987311},{"hugoGeneSymbol":"LOC107987320","entrezGeneId":107987320},{"hugoGeneSymbol":"LOC107987322","entrezGeneId":107987322},{"hugoGeneSymbol":"LOC107987323","entrezGeneId":107987323},{"hugoGeneSymbol":"LOC107987324","entrezGeneId":107987324},{"hugoGeneSymbol":"LOC107987325","entrezGeneId":107987325},{"hugoGeneSymbol":"LOC107987326","entrezGeneId":107987326},{"hugoGeneSymbol":"LOC107987327","entrezGeneId":107987327},{"hugoGeneSymbol":"LOC107987328","entrezGeneId":107987328},{"hugoGeneSymbol":"LOC107987329","entrezGeneId":107987329},{"hugoGeneSymbol":"LOC107987331","entrezGeneId":107987331},{"hugoGeneSymbol":"LOC107987333","entrezGeneId":107987333},{"hugoGeneSymbol":"LOC107987334","entrezGeneId":107987334},{"hugoGeneSymbol":"LOC107987335","entrezGeneId":107987335},{"hugoGeneSymbol":"LOC107987338","entrezGeneId":107987338},{"hugoGeneSymbol":"LOC107987339","entrezGeneId":107987339},{"hugoGeneSymbol":"LOC107987340","entrezGeneId":107987340},{"hugoGeneSymbol":"LOC107987342","entrezGeneId":107987342},{"hugoGeneSymbol":"LOC107987343","entrezGeneId":107987343},{"hugoGeneSymbol":"LOC107987344","entrezGeneId":107987344},{"hugoGeneSymbol":"LOC107987345","entrezGeneId":107987345},{"hugoGeneSymbol":"LOC107987346","entrezGeneId":107987346},{"hugoGeneSymbol":"LOC107987347","entrezGeneId":107987347},{"hugoGeneSymbol":"LOC107987348","entrezGeneId":107987348},{"hugoGeneSymbol":"LOC107987349","entrezGeneId":107987349},{"hugoGeneSymbol":"LOC107987350","entrezGeneId":107987350},{"hugoGeneSymbol":"LOC107987351","entrezGeneId":107987351},{"hugoGeneSymbol":"LOC107987352","entrezGeneId":107987352},{"hugoGeneSymbol":"LOC107987353","entrezGeneId":107987353},{"hugoGeneSymbol":"LOC107987354","entrezGeneId":107987354},{"hugoGeneSymbol":"LOC107987355","entrezGeneId":107987355},{"hugoGeneSymbol":"LOC107987356","entrezGeneId":107987356},{"hugoGeneSymbol":"LOC107987357","entrezGeneId":107987357},{"hugoGeneSymbol":"LOC107987358","entrezGeneId":107987358},{"hugoGeneSymbol":"LOC107987359","entrezGeneId":107987359},{"hugoGeneSymbol":"LOC107987360","entrezGeneId":107987360},{"hugoGeneSymbol":"LOC107987361","entrezGeneId":107987361},{"hugoGeneSymbol":"LOC107987362","entrezGeneId":107987362},{"hugoGeneSymbol":"LOC107987363","entrezGeneId":107987363},{"hugoGeneSymbol":"LOC107987364","entrezGeneId":107987364},{"hugoGeneSymbol":"LOC107987365","entrezGeneId":107987365},{"hugoGeneSymbol":"LOC107987366","entrezGeneId":107987366},{"hugoGeneSymbol":"LOC107987369","entrezGeneId":107987369},{"hugoGeneSymbol":"LOC107987370","entrezGeneId":107987370},{"hugoGeneSymbol":"LOC107987371","entrezGeneId":107987371},{"hugoGeneSymbol":"LOC107987372","entrezGeneId":107987372},{"hugoGeneSymbol":"LOC107987373","entrezGeneId":107987373},{"hugoGeneSymbol":"LOC107987374","entrezGeneId":107987374},{"hugoGeneSymbol":"LOC107987375","entrezGeneId":107987375},{"hugoGeneSymbol":"LOC107987377","entrezGeneId":107987377},{"hugoGeneSymbol":"LOC107987378","entrezGeneId":107987378},{"hugoGeneSymbol":"LOC107987379","entrezGeneId":107987379},{"hugoGeneSymbol":"LOC107987380","entrezGeneId":107987380},{"hugoGeneSymbol":"LOC107987381","entrezGeneId":107987381},{"hugoGeneSymbol":"LOC107987382","entrezGeneId":107987382},{"hugoGeneSymbol":"LOC107987383","entrezGeneId":107987383},{"hugoGeneSymbol":"LOC107987384","entrezGeneId":107987384},{"hugoGeneSymbol":"LOC107987385","entrezGeneId":107987385},{"hugoGeneSymbol":"LOC107987386","entrezGeneId":107987386},{"hugoGeneSymbol":"LOC107987388","entrezGeneId":107987388},{"hugoGeneSymbol":"LOC107987389","entrezGeneId":107987389},{"hugoGeneSymbol":"LOC107987390","entrezGeneId":107987390},{"hugoGeneSymbol":"LOC107987391","entrezGeneId":107987391},{"hugoGeneSymbol":"LOC107987392","entrezGeneId":107987392},{"hugoGeneSymbol":"LOC107987393","entrezGeneId":107987393},{"hugoGeneSymbol":"LOC107987394","entrezGeneId":107987394},{"hugoGeneSymbol":"LOC107987395","entrezGeneId":107987395},{"hugoGeneSymbol":"LOC107987396","entrezGeneId":107987396},{"hugoGeneSymbol":"LOC107987397","entrezGeneId":107987397},{"hugoGeneSymbol":"LOC107987398","entrezGeneId":107987398},{"hugoGeneSymbol":"LOC107987399","entrezGeneId":107987399},{"hugoGeneSymbol":"LOC107987401","entrezGeneId":107987401},{"hugoGeneSymbol":"LOC107987405","entrezGeneId":107987405},{"hugoGeneSymbol":"LOC107987407","entrezGeneId":107987407},{"hugoGeneSymbol":"LOC107987408","entrezGeneId":107987408},{"hugoGeneSymbol":"LOC107987409","entrezGeneId":107987409},{"hugoGeneSymbol":"LOC107987411","entrezGeneId":107987411},{"hugoGeneSymbol":"LOC107987412","entrezGeneId":107987412},{"hugoGeneSymbol":"LOC107987413","entrezGeneId":107987413},{"hugoGeneSymbol":"LOC107987414","entrezGeneId":107987414},{"hugoGeneSymbol":"LOC107987415","entrezGeneId":107987415},{"hugoGeneSymbol":"LOC107987416","entrezGeneId":107987416},{"hugoGeneSymbol":"LOC107987417","entrezGeneId":107987417},{"hugoGeneSymbol":"LOC107987418","entrezGeneId":107987418},{"hugoGeneSymbol":"LOC107987419","entrezGeneId":107987419},{"hugoGeneSymbol":"LOC107987420","entrezGeneId":107987420},{"hugoGeneSymbol":"LOC107987421","entrezGeneId":107987421},{"hugoGeneSymbol":"LOC107987422","entrezGeneId":107987422},{"hugoGeneSymbol":"LOC107987423","entrezGeneId":107987423},{"hugoGeneSymbol":"LOC107987425","entrezGeneId":107987425},{"hugoGeneSymbol":"LOC107987426","entrezGeneId":107987426},{"hugoGeneSymbol":"LOC107987427","entrezGeneId":107987427},{"hugoGeneSymbol":"LOC107987428","entrezGeneId":107987428},{"hugoGeneSymbol":"LOC107987429","entrezGeneId":107987429},{"hugoGeneSymbol":"LOC107987432","entrezGeneId":107987432},{"hugoGeneSymbol":"LOC107987433","entrezGeneId":107987433},{"hugoGeneSymbol":"LOC107987434","entrezGeneId":107987434},{"hugoGeneSymbol":"LOC107987435","entrezGeneId":107987435},{"hugoGeneSymbol":"LOC107987436","entrezGeneId":107987436},{"hugoGeneSymbol":"LOC107987437","entrezGeneId":107987437},{"hugoGeneSymbol":"LOC107987438","entrezGeneId":107987438},{"hugoGeneSymbol":"LOC107987440","entrezGeneId":107987440},{"hugoGeneSymbol":"LOC107987441","entrezGeneId":107987441},{"hugoGeneSymbol":"LOC107987443","entrezGeneId":107987443},{"hugoGeneSymbol":"LOC107987447","entrezGeneId":107987447},{"hugoGeneSymbol":"LOC107987448","entrezGeneId":107987448},{"hugoGeneSymbol":"LOC107987449","entrezGeneId":107987449},{"hugoGeneSymbol":"LOC107987452","entrezGeneId":107987452},{"hugoGeneSymbol":"LOC107987457","entrezGeneId":107987457},{"hugoGeneSymbol":"LOC107987459","entrezGeneId":107987459},{"hugoGeneSymbol":"LOC107987461","entrezGeneId":107987461},{"hugoGeneSymbol":"LOC107987462","entrezGeneId":107987462},{"hugoGeneSymbol":"LOC107987463","entrezGeneId":107987463},{"hugoGeneSymbol":"LOC107987464","entrezGeneId":107987464},{"hugoGeneSymbol":"LOC107987467","entrezGeneId":107987467},{"hugoGeneSymbol":"LOC107987469","entrezGeneId":107987469},{"hugoGeneSymbol":"LOC107987470","entrezGeneId":107987470},{"hugoGeneSymbol":"LOC107987471","entrezGeneId":107987471},{"hugoGeneSymbol":"LOC107987472","entrezGeneId":107987472},{"hugoGeneSymbol":"LOC107987473","entrezGeneId":107987473},{"hugoGeneSymbol":"LOC107987474","entrezGeneId":107987474},{"hugoGeneSymbol":"LOC107987475","entrezGeneId":107987475},{"hugoGeneSymbol":"LOC107987476","entrezGeneId":107987476},{"hugoGeneSymbol":"LOC107987477","entrezGeneId":107987477},{"hugoGeneSymbol":"LOC107987478","entrezGeneId":107987478},{"hugoGeneSymbol":"LOC107987479","entrezGeneId":107987479},{"hugoGeneSymbol":"LOC107987482","entrezGeneId":107987482},{"hugoGeneSymbol":"LOC107987483","entrezGeneId":107987483},{"hugoGeneSymbol":"LOC107987484","entrezGeneId":107987484},{"hugoGeneSymbol":"LOC107987485","entrezGeneId":107987485},{"hugoGeneSymbol":"LOC107987486","entrezGeneId":107987486},{"hugoGeneSymbol":"LOC107987487","entrezGeneId":107987487},{"hugoGeneSymbol":"LOC107987488","entrezGeneId":107987488},{"hugoGeneSymbol":"LOC107987489","entrezGeneId":107987489},{"hugoGeneSymbol":"LOC107987490","entrezGeneId":107987490},{"hugoGeneSymbol":"LOC107987491","entrezGeneId":107987491},{"hugoGeneSymbol":"LOC107987545","entrezGeneId":107987545},{"hugoGeneSymbol":"LOC107987560","entrezGeneId":107987560},{"hugoGeneSymbol":"LOC107987561","entrezGeneId":107987561},{"hugoGeneSymbol":"LOC107988021","entrezGeneId":107988021},{"hugoGeneSymbol":"LOC107988022","entrezGeneId":107988022},{"hugoGeneSymbol":"LOC107988023","entrezGeneId":107988023},{"hugoGeneSymbol":"LOC107988024","entrezGeneId":107988024},{"hugoGeneSymbol":"LOC107988025","entrezGeneId":107988025},{"hugoGeneSymbol":"LOC107988030","entrezGeneId":107988030},{"hugoGeneSymbol":"LOC107988032","entrezGeneId":107988032},{"hugoGeneSymbol":"LOC107988033","entrezGeneId":107988033},{"hugoGeneSymbol":"LOC107988038","entrezGeneId":107988038},{"hugoGeneSymbol":"LOC107988042","entrezGeneId":107988042},{"hugoGeneSymbol":"LOC107988044","entrezGeneId":107988044},{"hugoGeneSymbol":"LOC107988045","entrezGeneId":107988045},{"hugoGeneSymbol":"LOC107988046","entrezGeneId":107988046},{"hugoGeneSymbol":"LOC107988047","entrezGeneId":107988047},{"hugoGeneSymbol":"LOC107988048","entrezGeneId":107988048},{"hugoGeneSymbol":"LOC107988049","entrezGeneId":107988049},{"hugoGeneSymbol":"LOC107992387","entrezGeneId":107992387},{"hugoGeneSymbol":"LOC107992388","entrezGeneId":107992388},{"hugoGeneSymbol":"LOC107992389","entrezGeneId":107992389},{"hugoGeneSymbol":"LOC107992391","entrezGeneId":107992391},{"hugoGeneSymbol":"LOC107992392","entrezGeneId":107992392},{"hugoGeneSymbol":"LOC107992393","entrezGeneId":107992393},{"hugoGeneSymbol":"LOC108004521","entrezGeneId":108004521},{"hugoGeneSymbol":"LOC108004522","entrezGeneId":108004522},{"hugoGeneSymbol":"LOC108004523","entrezGeneId":108004523},{"hugoGeneSymbol":"LOC108004524","entrezGeneId":108004524},{"hugoGeneSymbol":"LOC108004525","entrezGeneId":108004525},{"hugoGeneSymbol":"LOC108004526","entrezGeneId":108004526},{"hugoGeneSymbol":"LOC108004527","entrezGeneId":108004527},{"hugoGeneSymbol":"LOC108004528","entrezGeneId":108004528},{"hugoGeneSymbol":"LOC108004529","entrezGeneId":108004529},{"hugoGeneSymbol":"LOC108004531","entrezGeneId":108004531},{"hugoGeneSymbol":"LOC108004532","entrezGeneId":108004532},{"hugoGeneSymbol":"LOC108004536","entrezGeneId":108004536},{"hugoGeneSymbol":"LOC108004538","entrezGeneId":108004538},{"hugoGeneSymbol":"LOC108004539","entrezGeneId":108004539},{"hugoGeneSymbol":"LOC108004543","entrezGeneId":108004543},{"hugoGeneSymbol":"LOC108004544","entrezGeneId":108004544},{"hugoGeneSymbol":"LOC108004545","entrezGeneId":108004545},{"hugoGeneSymbol":"LOC108004546","entrezGeneId":108004546},{"hugoGeneSymbol":"LOC108004547","entrezGeneId":108004547},{"hugoGeneSymbol":"LOC108004548","entrezGeneId":108004548},{"hugoGeneSymbol":"LOC108004549","entrezGeneId":108004549},{"hugoGeneSymbol":"LOC108004550","entrezGeneId":108004550},{"hugoGeneSymbol":"LOC108021839","entrezGeneId":108021839},{"hugoGeneSymbol":"LOC108021840","entrezGeneId":108021840},{"hugoGeneSymbol":"LOC108021842","entrezGeneId":108021842},{"hugoGeneSymbol":"LOC108021843","entrezGeneId":108021843},{"hugoGeneSymbol":"LOC108021844","entrezGeneId":108021844},{"hugoGeneSymbol":"LOC108021845","entrezGeneId":108021845},{"hugoGeneSymbol":"LOC108021846","entrezGeneId":108021846},{"hugoGeneSymbol":"LOC108021854","entrezGeneId":108021854},{"hugoGeneSymbol":"LOC108021855","entrezGeneId":108021855},{"hugoGeneSymbol":"LOC108165612","entrezGeneId":108165612},{"hugoGeneSymbol":"LOC108165613","entrezGeneId":108165613},{"hugoGeneSymbol":"LOC108167311","entrezGeneId":108167311},{"hugoGeneSymbol":"LOC108167312","entrezGeneId":108167312},{"hugoGeneSymbol":"LOC108167314","entrezGeneId":108167314},{"hugoGeneSymbol":"LOC108167315","entrezGeneId":108167315},{"hugoGeneSymbol":"LOC108169207","entrezGeneId":108169207},{"hugoGeneSymbol":"LOC108169209","entrezGeneId":108169209},{"hugoGeneSymbol":"LOC108175340","entrezGeneId":108175340},{"hugoGeneSymbol":"LOC108175341","entrezGeneId":108175341},{"hugoGeneSymbol":"LOC108175343","entrezGeneId":108175343},{"hugoGeneSymbol":"LOC108175345","entrezGeneId":108175345},{"hugoGeneSymbol":"LOC108175348","entrezGeneId":108175348},{"hugoGeneSymbol":"LOC108175349","entrezGeneId":108175349},{"hugoGeneSymbol":"LOC108175350","entrezGeneId":108175350},{"hugoGeneSymbol":"LOC108175351","entrezGeneId":108175351},{"hugoGeneSymbol":"LOC108178982","entrezGeneId":108178982},{"hugoGeneSymbol":"LOC108178983","entrezGeneId":108178983},{"hugoGeneSymbol":"LOC108178984","entrezGeneId":108178984},{"hugoGeneSymbol":"LOC108178986","entrezGeneId":108178986},{"hugoGeneSymbol":"LOC108178987","entrezGeneId":108178987},{"hugoGeneSymbol":"LOC108178988","entrezGeneId":108178988},{"hugoGeneSymbol":"LOC108178989","entrezGeneId":108178989},{"hugoGeneSymbol":"LOC108178991","entrezGeneId":108178991},{"hugoGeneSymbol":"LOC108178992","entrezGeneId":108178992},{"hugoGeneSymbol":"LOC108178993","entrezGeneId":108178993},{"hugoGeneSymbol":"LOC108178994","entrezGeneId":108178994},{"hugoGeneSymbol":"LOC108178995","entrezGeneId":108178995},{"hugoGeneSymbol":"LOC108178996","entrezGeneId":108178996},{"hugoGeneSymbol":"LOC108192210","entrezGeneId":108192210},{"hugoGeneSymbol":"LOC108192211","entrezGeneId":108192211},{"hugoGeneSymbol":"LOC108228196","entrezGeneId":108228196},{"hugoGeneSymbol":"LOC108228197","entrezGeneId":108228197},{"hugoGeneSymbol":"LOC108228198","entrezGeneId":108228198},{"hugoGeneSymbol":"LOC108228199","entrezGeneId":108228199},{"hugoGeneSymbol":"LOC108228200","entrezGeneId":108228200},{"hugoGeneSymbol":"LOC108228201","entrezGeneId":108228201},{"hugoGeneSymbol":"LOC108228202","entrezGeneId":108228202},{"hugoGeneSymbol":"LOC108228205","entrezGeneId":108228205},{"hugoGeneSymbol":"LOC108228206","entrezGeneId":108228206},{"hugoGeneSymbol":"LOC108228207","entrezGeneId":108228207},{"hugoGeneSymbol":"LOC108228208","entrezGeneId":108228208},{"hugoGeneSymbol":"LOC108228209","entrezGeneId":108228209},{"hugoGeneSymbol":"LOC108251791","entrezGeneId":108251791},{"hugoGeneSymbol":"LOC108251792","entrezGeneId":108251792},{"hugoGeneSymbol":"LOC108251793","entrezGeneId":108251793},{"hugoGeneSymbol":"LOC108251794","entrezGeneId":108251794},{"hugoGeneSymbol":"LOC108251795","entrezGeneId":108251795},{"hugoGeneSymbol":"LOC108251796","entrezGeneId":108251796},{"hugoGeneSymbol":"LOC108251797","entrezGeneId":108251797},{"hugoGeneSymbol":"LOC108251798","entrezGeneId":108251798},{"hugoGeneSymbol":"LOC108251799","entrezGeneId":108251799},{"hugoGeneSymbol":"LOC108251801","entrezGeneId":108251801},{"hugoGeneSymbol":"LOC108251802","entrezGeneId":108251802},{"hugoGeneSymbol":"LOC108251803","entrezGeneId":108251803},{"hugoGeneSymbol":"LOC108254662","entrezGeneId":108254662},{"hugoGeneSymbol":"LOC108254663","entrezGeneId":108254663},{"hugoGeneSymbol":"LOC108254664","entrezGeneId":108254664},{"hugoGeneSymbol":"LOC108254665","entrezGeneId":108254665},{"hugoGeneSymbol":"LOC108254666","entrezGeneId":108254666},{"hugoGeneSymbol":"LOC108254667","entrezGeneId":108254667},{"hugoGeneSymbol":"LOC108254668","entrezGeneId":108254668},{"hugoGeneSymbol":"LOC108254669","entrezGeneId":108254669},{"hugoGeneSymbol":"LOC108254670","entrezGeneId":108254670},{"hugoGeneSymbol":"LOC108254671","entrezGeneId":108254671},{"hugoGeneSymbol":"LOC108254672","entrezGeneId":108254672},{"hugoGeneSymbol":"LOC108254673","entrezGeneId":108254673},{"hugoGeneSymbol":"LOC108254675","entrezGeneId":108254675},{"hugoGeneSymbol":"LOC108254679","entrezGeneId":108254679},{"hugoGeneSymbol":"LOC108254680","entrezGeneId":108254680},{"hugoGeneSymbol":"LOC108254681","entrezGeneId":108254681},{"hugoGeneSymbol":"LOC108254682","entrezGeneId":108254682},{"hugoGeneSymbol":"LOC108254683","entrezGeneId":108254683},{"hugoGeneSymbol":"LOC108254684","entrezGeneId":108254684},{"hugoGeneSymbol":"LOC108254685","entrezGeneId":108254685},{"hugoGeneSymbol":"LOC108254686","entrezGeneId":108254686},{"hugoGeneSymbol":"LOC108254689","entrezGeneId":108254689},{"hugoGeneSymbol":"LOC108254690","entrezGeneId":108254690},{"hugoGeneSymbol":"LOC108254691","entrezGeneId":108254691},{"hugoGeneSymbol":"LOC108254692","entrezGeneId":108254692},{"hugoGeneSymbol":"LOC108254693","entrezGeneId":108254693},{"hugoGeneSymbol":"LOC108254694","entrezGeneId":108254694},{"hugoGeneSymbol":"LOC108254695","entrezGeneId":108254695},{"hugoGeneSymbol":"LOC108281110","entrezGeneId":108281110},{"hugoGeneSymbol":"LOC108281111","entrezGeneId":108281111},{"hugoGeneSymbol":"LOC108281113","entrezGeneId":108281113},{"hugoGeneSymbol":"LOC108281114","entrezGeneId":108281114},{"hugoGeneSymbol":"LOC108281115","entrezGeneId":108281115},{"hugoGeneSymbol":"LOC108281116","entrezGeneId":108281116},{"hugoGeneSymbol":"LOC108281117","entrezGeneId":108281117},{"hugoGeneSymbol":"LOC108281118","entrezGeneId":108281118},{"hugoGeneSymbol":"LOC108281119","entrezGeneId":108281119},{"hugoGeneSymbol":"LOC108281120","entrezGeneId":108281120},{"hugoGeneSymbol":"LOC108281122","entrezGeneId":108281122},{"hugoGeneSymbol":"LOC108281123","entrezGeneId":108281123},{"hugoGeneSymbol":"LOC108281124","entrezGeneId":108281124},{"hugoGeneSymbol":"LOC108281125","entrezGeneId":108281125},{"hugoGeneSymbol":"LOC108281126","entrezGeneId":108281126},{"hugoGeneSymbol":"LOC108281127","entrezGeneId":108281127},{"hugoGeneSymbol":"LOC108281128","entrezGeneId":108281128},{"hugoGeneSymbol":"LOC108281129","entrezGeneId":108281129},{"hugoGeneSymbol":"LOC108281130","entrezGeneId":108281130},{"hugoGeneSymbol":"LOC108281131","entrezGeneId":108281131},{"hugoGeneSymbol":"LOC108281132","entrezGeneId":108281132},{"hugoGeneSymbol":"LOC108281133","entrezGeneId":108281133},{"hugoGeneSymbol":"LOC108281134","entrezGeneId":108281134},{"hugoGeneSymbol":"LOC108281135","entrezGeneId":108281135},{"hugoGeneSymbol":"LOC108281136","entrezGeneId":108281136},{"hugoGeneSymbol":"LOC108281137","entrezGeneId":108281137},{"hugoGeneSymbol":"LOC108281139","entrezGeneId":108281139},{"hugoGeneSymbol":"LOC108281140","entrezGeneId":108281140},{"hugoGeneSymbol":"LOC108281141","entrezGeneId":108281141},{"hugoGeneSymbol":"LOC108281142","entrezGeneId":108281142},{"hugoGeneSymbol":"LOC108281143","entrezGeneId":108281143},{"hugoGeneSymbol":"LOC108281144","entrezGeneId":108281144},{"hugoGeneSymbol":"LOC108281145","entrezGeneId":108281145},{"hugoGeneSymbol":"LOC108281146","entrezGeneId":108281146},{"hugoGeneSymbol":"LOC108281147","entrezGeneId":108281147},{"hugoGeneSymbol":"LOC108281148","entrezGeneId":108281148},{"hugoGeneSymbol":"LOC108281149","entrezGeneId":108281149},{"hugoGeneSymbol":"LOC108281150","entrezGeneId":108281150},{"hugoGeneSymbol":"LOC108281151","entrezGeneId":108281151},{"hugoGeneSymbol":"LOC108281152","entrezGeneId":108281152},{"hugoGeneSymbol":"LOC108281153","entrezGeneId":108281153},{"hugoGeneSymbol":"LOC108281154","entrezGeneId":108281154},{"hugoGeneSymbol":"LOC108281155","entrezGeneId":108281155},{"hugoGeneSymbol":"LOC108281156","entrezGeneId":108281156},{"hugoGeneSymbol":"LOC108281157","entrezGeneId":108281157},{"hugoGeneSymbol":"LOC108281158","entrezGeneId":108281158},{"hugoGeneSymbol":"LOC108281159","entrezGeneId":108281159},{"hugoGeneSymbol":"LOC108281160","entrezGeneId":108281160},{"hugoGeneSymbol":"LOC108281161","entrezGeneId":108281161},{"hugoGeneSymbol":"LOC108281162","entrezGeneId":108281162},{"hugoGeneSymbol":"LOC108281163","entrezGeneId":108281163},{"hugoGeneSymbol":"LOC108281164","entrezGeneId":108281164},{"hugoGeneSymbol":"LOC108281165","entrezGeneId":108281165},{"hugoGeneSymbol":"LOC108281166","entrezGeneId":108281166},{"hugoGeneSymbol":"LOC108281167","entrezGeneId":108281167},{"hugoGeneSymbol":"LOC108281168","entrezGeneId":108281168},{"hugoGeneSymbol":"LOC108281169","entrezGeneId":108281169},{"hugoGeneSymbol":"LOC108281170","entrezGeneId":108281170},{"hugoGeneSymbol":"LOC108281171","entrezGeneId":108281171},{"hugoGeneSymbol":"LOC108281172","entrezGeneId":108281172},{"hugoGeneSymbol":"LOC108281173","entrezGeneId":108281173},{"hugoGeneSymbol":"LOC108281174","entrezGeneId":108281174},{"hugoGeneSymbol":"LOC108281176","entrezGeneId":108281176},{"hugoGeneSymbol":"LOC108281177","entrezGeneId":108281177},{"hugoGeneSymbol":"LOC108281179","entrezGeneId":108281179},{"hugoGeneSymbol":"LOC108281180","entrezGeneId":108281180},{"hugoGeneSymbol":"LOC108281181","entrezGeneId":108281181},{"hugoGeneSymbol":"LOC108281182","entrezGeneId":108281182},{"hugoGeneSymbol":"LOC108281183","entrezGeneId":108281183},{"hugoGeneSymbol":"LOC108281184","entrezGeneId":108281184},{"hugoGeneSymbol":"LOC108281185","entrezGeneId":108281185},{"hugoGeneSymbol":"LOC108281186","entrezGeneId":108281186},{"hugoGeneSymbol":"LOC108281187","entrezGeneId":108281187},{"hugoGeneSymbol":"LOC108281188","entrezGeneId":108281188},{"hugoGeneSymbol":"LOC108281189","entrezGeneId":108281189},{"hugoGeneSymbol":"LOC108281190","entrezGeneId":108281190},{"hugoGeneSymbol":"LOC108281191","entrezGeneId":108281191},{"hugoGeneSymbol":"LOC108281192","entrezGeneId":108281192},{"hugoGeneSymbol":"LOC108318665","entrezGeneId":108318665},{"hugoGeneSymbol":"LOC108318668","entrezGeneId":108318668},{"hugoGeneSymbol":"LOC108318669","entrezGeneId":108318669},{"hugoGeneSymbol":"LOC108348017","entrezGeneId":108348017},{"hugoGeneSymbol":"LOC108348020","entrezGeneId":108348020},{"hugoGeneSymbol":"LOC108348022","entrezGeneId":108348022},{"hugoGeneSymbol":"LOC108348023","entrezGeneId":108348023},{"hugoGeneSymbol":"LOC108348024","entrezGeneId":108348024},{"hugoGeneSymbol":"LOC108348025","entrezGeneId":108348025},{"hugoGeneSymbol":"LOC108348026","entrezGeneId":108348026},{"hugoGeneSymbol":"LOC108348027","entrezGeneId":108348027},{"hugoGeneSymbol":"LOC108348028","entrezGeneId":108348028},{"hugoGeneSymbol":"LOC108348029","entrezGeneId":108348029},{"hugoGeneSymbol":"LOC108348030","entrezGeneId":108348030},{"hugoGeneSymbol":"LOC108348031","entrezGeneId":108348031},{"hugoGeneSymbol":"LOC108353813","entrezGeneId":108353813},{"hugoGeneSymbol":"LOC108353814","entrezGeneId":108353814},{"hugoGeneSymbol":"LOC108353815","entrezGeneId":108353815},{"hugoGeneSymbol":"LOC108353816","entrezGeneId":108353816},{"hugoGeneSymbol":"LOC108353817","entrezGeneId":108353817},{"hugoGeneSymbol":"LOC108353818","entrezGeneId":108353818},{"hugoGeneSymbol":"LOC108353819","entrezGeneId":108353819},{"hugoGeneSymbol":"LOC108353820","entrezGeneId":108353820},{"hugoGeneSymbol":"LOC108353821","entrezGeneId":108353821},{"hugoGeneSymbol":"LOC108353822","entrezGeneId":108353822},{"hugoGeneSymbol":"LOC108353823","entrezGeneId":108353823},{"hugoGeneSymbol":"LOC108410393","entrezGeneId":108410393},{"hugoGeneSymbol":"LOC108449887","entrezGeneId":108449887},{"hugoGeneSymbol":"LOC108449888","entrezGeneId":108449888},{"hugoGeneSymbol":"LOC108449897","entrezGeneId":108449897},{"hugoGeneSymbol":"LOC108449898","entrezGeneId":108449898},{"hugoGeneSymbol":"LOC108491823","entrezGeneId":108491823},{"hugoGeneSymbol":"LOC108491824","entrezGeneId":108491824},{"hugoGeneSymbol":"LOC108491825","entrezGeneId":108491825},{"hugoGeneSymbol":"LOC108491827","entrezGeneId":108491827},{"hugoGeneSymbol":"LOC108491829","entrezGeneId":108491829},{"hugoGeneSymbol":"LOC108491830","entrezGeneId":108491830},{"hugoGeneSymbol":"LOC108491832","entrezGeneId":108491832},{"hugoGeneSymbol":"LOC108491836","entrezGeneId":108491836},{"hugoGeneSymbol":"LOC108491837","entrezGeneId":108491837},{"hugoGeneSymbol":"LOC108510655","entrezGeneId":108510655},{"hugoGeneSymbol":"LOC108510657","entrezGeneId":108510657},{"hugoGeneSymbol":"LOC108511947","entrezGeneId":108511947},{"hugoGeneSymbol":"LOC108644431","entrezGeneId":108644431},{"hugoGeneSymbol":"LOC108660404","entrezGeneId":108660404},{"hugoGeneSymbol":"LOC108660405","entrezGeneId":108660405},{"hugoGeneSymbol":"LOC108660406","entrezGeneId":108660406},{"hugoGeneSymbol":"LOC108663984","entrezGeneId":108663984},{"hugoGeneSymbol":"LOC108663985","entrezGeneId":108663985},{"hugoGeneSymbol":"LOC108663987","entrezGeneId":108663987},{"hugoGeneSymbol":"LOC108663993","entrezGeneId":108663993},{"hugoGeneSymbol":"LOC108663996","entrezGeneId":108663996},{"hugoGeneSymbol":"LOC108684022","entrezGeneId":108684022},{"hugoGeneSymbol":"LOC108720144","entrezGeneId":108720144},{"hugoGeneSymbol":"LOC108720145","entrezGeneId":108720145},{"hugoGeneSymbol":"LOC108745275","entrezGeneId":108745275},{"hugoGeneSymbol":"LOC108745276","entrezGeneId":108745276},{"hugoGeneSymbol":"LOC108771181","entrezGeneId":108771181},{"hugoGeneSymbol":"LOC108771182","entrezGeneId":108771182},{"hugoGeneSymbol":"LOC108771183","entrezGeneId":108771183},{"hugoGeneSymbol":"LOC108771184","entrezGeneId":108771184},{"hugoGeneSymbol":"LOC108783645","entrezGeneId":108783645},{"hugoGeneSymbol":"LOC108783647","entrezGeneId":108783647},{"hugoGeneSymbol":"LOC108783648","entrezGeneId":108783648},{"hugoGeneSymbol":"LOC108783649","entrezGeneId":108783649},{"hugoGeneSymbol":"LOC108783652","entrezGeneId":108783652},{"hugoGeneSymbol":"LOC108783653","entrezGeneId":108783653},{"hugoGeneSymbol":"LOC108783654","entrezGeneId":108783654},{"hugoGeneSymbol":"LOC108863620","entrezGeneId":108863620},{"hugoGeneSymbol":"LOC108863624","entrezGeneId":108863624},{"hugoGeneSymbol":"LOC108868752","entrezGeneId":108868752},{"hugoGeneSymbol":"LOC108868753","entrezGeneId":108868753},{"hugoGeneSymbol":"LOC108903148","entrezGeneId":108903148},{"hugoGeneSymbol":"LOC108903149","entrezGeneId":108903149},{"hugoGeneSymbol":"LOC108942766","entrezGeneId":108942766},{"hugoGeneSymbol":"LOC108961161","entrezGeneId":108961161},{"hugoGeneSymbol":"LOC108964933","entrezGeneId":108964933},{"hugoGeneSymbol":"LOC109029529","entrezGeneId":109029529},{"hugoGeneSymbol":"LOC109029530","entrezGeneId":109029530},{"hugoGeneSymbol":"LOC109029533","entrezGeneId":109029533},{"hugoGeneSymbol":"LOC109029536","entrezGeneId":109029536},{"hugoGeneSymbol":"LOC109113859","entrezGeneId":109113859},{"hugoGeneSymbol":"LOC109113860","entrezGeneId":109113860},{"hugoGeneSymbol":"LOC109113861","entrezGeneId":109113861},{"hugoGeneSymbol":"LOC109113862","entrezGeneId":109113862},{"hugoGeneSymbol":"LOC109113863","entrezGeneId":109113863},{"hugoGeneSymbol":"LOC109115964","entrezGeneId":109115964},{"hugoGeneSymbol":"LOC109117330","entrezGeneId":109117330},{"hugoGeneSymbol":"LOC109117331","entrezGeneId":109117331},{"hugoGeneSymbol":"LOC109136576","entrezGeneId":109136576},{"hugoGeneSymbol":"LOC109245078","entrezGeneId":109245078},{"hugoGeneSymbol":"LOC109245079","entrezGeneId":109245079},{"hugoGeneSymbol":"LOC109279247","entrezGeneId":109279247},{"hugoGeneSymbol":"LOC109279841","entrezGeneId":109279841},{"hugoGeneSymbol":"LOC109280160","entrezGeneId":109280160},{"hugoGeneSymbol":"LOC109280161","entrezGeneId":109280161},{"hugoGeneSymbol":"LOC109280162","entrezGeneId":109280162},{"hugoGeneSymbol":"LOC109280163","entrezGeneId":109280163},{"hugoGeneSymbol":"LOC109280164","entrezGeneId":109280164},{"hugoGeneSymbol":"LOC109280165","entrezGeneId":109280165},{"hugoGeneSymbol":"LOC109286554","entrezGeneId":109286554},{"hugoGeneSymbol":"LOC109286555","entrezGeneId":109286555},{"hugoGeneSymbol":"LOC109286556","entrezGeneId":109286556},{"hugoGeneSymbol":"LOC109286563","entrezGeneId":109286563},{"hugoGeneSymbol":"LOC109286564","entrezGeneId":109286564},{"hugoGeneSymbol":"LOC109286569","entrezGeneId":109286569},{"hugoGeneSymbol":"LOC109363672","entrezGeneId":109363672},{"hugoGeneSymbol":"LOC109363676","entrezGeneId":109363676},{"hugoGeneSymbol":"LOC109396974","entrezGeneId":109396974},{"hugoGeneSymbol":"LOC109433677","entrezGeneId":109433677},{"hugoGeneSymbol":"LOC109433679","entrezGeneId":109433679},{"hugoGeneSymbol":"LOC109461473","entrezGeneId":109461473},{"hugoGeneSymbol":"LOC109461475","entrezGeneId":109461475},{"hugoGeneSymbol":"LOC109461476","entrezGeneId":109461476},{"hugoGeneSymbol":"LOC109461477","entrezGeneId":109461477},{"hugoGeneSymbol":"LOC109461478","entrezGeneId":109461478},{"hugoGeneSymbol":"LOC109461479","entrezGeneId":109461479},{"hugoGeneSymbol":"LOC109461484","entrezGeneId":109461484},{"hugoGeneSymbol":"LOC109504725","entrezGeneId":109504725},{"hugoGeneSymbol":"LOC109504727","entrezGeneId":109504727},{"hugoGeneSymbol":"LOC109504728","entrezGeneId":109504728},{"hugoGeneSymbol":"LOC109580097","entrezGeneId":109580097},{"hugoGeneSymbol":"LOC109609705","entrezGeneId":109609705},{"hugoGeneSymbol":"LOC109609706","entrezGeneId":109609706},{"hugoGeneSymbol":"LOC109610631","entrezGeneId":109610631},{"hugoGeneSymbol":"LOC109611589","entrezGeneId":109611589},{"hugoGeneSymbol":"LOC109611591","entrezGeneId":109611591},{"hugoGeneSymbol":"LOC109611593","entrezGeneId":109611593},{"hugoGeneSymbol":"LOC109614541","entrezGeneId":109614541},{"hugoGeneSymbol":"LOC109617027","entrezGeneId":109617027},{"hugoGeneSymbol":"LOC109621227","entrezGeneId":109621227},{"hugoGeneSymbol":"LOC109623489","entrezGeneId":109623489},{"hugoGeneSymbol":"LOC109623491","entrezGeneId":109623491},{"hugoGeneSymbol":"LOC109648314","entrezGeneId":109648314},{"hugoGeneSymbol":"LOC109648316","entrezGeneId":109648316},{"hugoGeneSymbol":"LOC109648317","entrezGeneId":109648317},{"hugoGeneSymbol":"LOC109648318","entrezGeneId":109648318},{"hugoGeneSymbol":"LOC109851610","entrezGeneId":109851610},{"hugoGeneSymbol":"LOC109864269","entrezGeneId":109864269},{"hugoGeneSymbol":"LOC109951029","entrezGeneId":109951029},{"hugoGeneSymbol":"LOC110006317","entrezGeneId":110006317},{"hugoGeneSymbol":"LOC110006318","entrezGeneId":110006318},{"hugoGeneSymbol":"LOC110006319","entrezGeneId":110006319},{"hugoGeneSymbol":"LOC110008579","entrezGeneId":110008579},{"hugoGeneSymbol":"LOC110008580","entrezGeneId":110008580},{"hugoGeneSymbol":"LOC110011216","entrezGeneId":110011216},{"hugoGeneSymbol":"LOC110011217","entrezGeneId":110011217},{"hugoGeneSymbol":"LOC110013311","entrezGeneId":110013311},{"hugoGeneSymbol":"LOC110013312","entrezGeneId":110013312},{"hugoGeneSymbol":"LOC110091768","entrezGeneId":110091768},{"hugoGeneSymbol":"LOC110091776","entrezGeneId":110091776},{"hugoGeneSymbol":"LOC110091777","entrezGeneId":110091777},{"hugoGeneSymbol":"LOC110117498","entrezGeneId":110117498},{"hugoGeneSymbol":"LOC110117498-PIK3R3","entrezGeneId":110117499},{"hugoGeneSymbol":"LOC110120569","entrezGeneId":110120569},{"hugoGeneSymbol":"LOC110120570","entrezGeneId":110120570},{"hugoGeneSymbol":"LOC110120571","entrezGeneId":110120571},{"hugoGeneSymbol":"LOC110120572","entrezGeneId":110120572},{"hugoGeneSymbol":"LOC110120573","entrezGeneId":110120573},{"hugoGeneSymbol":"LOC110120574","entrezGeneId":110120574},{"hugoGeneSymbol":"LOC110120575","entrezGeneId":110120575},{"hugoGeneSymbol":"LOC110120576","entrezGeneId":110120576},{"hugoGeneSymbol":"LOC110120577","entrezGeneId":110120577},{"hugoGeneSymbol":"LOC110120578","entrezGeneId":110120578},{"hugoGeneSymbol":"LOC110120579","entrezGeneId":110120579},{"hugoGeneSymbol":"LOC110120580","entrezGeneId":110120580},{"hugoGeneSymbol":"LOC110120581","entrezGeneId":110120581},{"hugoGeneSymbol":"LOC110120582","entrezGeneId":110120582},{"hugoGeneSymbol":"LOC110120583","entrezGeneId":110120583},{"hugoGeneSymbol":"LOC110120584","entrezGeneId":110120584},{"hugoGeneSymbol":"LOC110120585","entrezGeneId":110120585},{"hugoGeneSymbol":"LOC110120586","entrezGeneId":110120586},{"hugoGeneSymbol":"LOC110120587","entrezGeneId":110120587},{"hugoGeneSymbol":"LOC110120588","entrezGeneId":110120588},{"hugoGeneSymbol":"LOC110120589","entrezGeneId":110120589},{"hugoGeneSymbol":"LOC110120590","entrezGeneId":110120590},{"hugoGeneSymbol":"LOC110120591","entrezGeneId":110120591},{"hugoGeneSymbol":"LOC110120592","entrezGeneId":110120592},{"hugoGeneSymbol":"LOC110120593","entrezGeneId":110120593},{"hugoGeneSymbol":"LOC110120594","entrezGeneId":110120594},{"hugoGeneSymbol":"LOC110120595","entrezGeneId":110120595},{"hugoGeneSymbol":"LOC110120596","entrezGeneId":110120596},{"hugoGeneSymbol":"LOC110120597","entrezGeneId":110120597},{"hugoGeneSymbol":"LOC110120598","entrezGeneId":110120598},{"hugoGeneSymbol":"LOC110120599","entrezGeneId":110120599},{"hugoGeneSymbol":"LOC110120600","entrezGeneId":110120600},{"hugoGeneSymbol":"LOC110120601","entrezGeneId":110120601},{"hugoGeneSymbol":"LOC110120602","entrezGeneId":110120602},{"hugoGeneSymbol":"LOC110120603","entrezGeneId":110120603},{"hugoGeneSymbol":"LOC110120604","entrezGeneId":110120604},{"hugoGeneSymbol":"LOC110120605","entrezGeneId":110120605},{"hugoGeneSymbol":"LOC110120606","entrezGeneId":110120606},{"hugoGeneSymbol":"LOC110120607","entrezGeneId":110120607},{"hugoGeneSymbol":"LOC110120608","entrezGeneId":110120608},{"hugoGeneSymbol":"LOC110120609","entrezGeneId":110120609},{"hugoGeneSymbol":"LOC110120610","entrezGeneId":110120610},{"hugoGeneSymbol":"LOC110120611","entrezGeneId":110120611},{"hugoGeneSymbol":"LOC110120612","entrezGeneId":110120612},{"hugoGeneSymbol":"LOC110120613","entrezGeneId":110120613},{"hugoGeneSymbol":"LOC110120614","entrezGeneId":110120614},{"hugoGeneSymbol":"LOC110120615","entrezGeneId":110120615},{"hugoGeneSymbol":"LOC110120617","entrezGeneId":110120617},{"hugoGeneSymbol":"LOC110120618","entrezGeneId":110120618},{"hugoGeneSymbol":"LOC110120619","entrezGeneId":110120619},{"hugoGeneSymbol":"LOC110120620","entrezGeneId":110120620},{"hugoGeneSymbol":"LOC110120621","entrezGeneId":110120621},{"hugoGeneSymbol":"LOC110120622","entrezGeneId":110120622},{"hugoGeneSymbol":"LOC110120623","entrezGeneId":110120623},{"hugoGeneSymbol":"LOC110120624","entrezGeneId":110120624},{"hugoGeneSymbol":"LOC110120625","entrezGeneId":110120625},{"hugoGeneSymbol":"LOC110120626","entrezGeneId":110120626},{"hugoGeneSymbol":"LOC110120627","entrezGeneId":110120627},{"hugoGeneSymbol":"LOC110120628","entrezGeneId":110120628},{"hugoGeneSymbol":"LOC110120629","entrezGeneId":110120629},{"hugoGeneSymbol":"LOC110120630","entrezGeneId":110120630},{"hugoGeneSymbol":"LOC110120631","entrezGeneId":110120631},{"hugoGeneSymbol":"LOC110120632","entrezGeneId":110120632},{"hugoGeneSymbol":"LOC110120633","entrezGeneId":110120633},{"hugoGeneSymbol":"LOC110120634","entrezGeneId":110120634},{"hugoGeneSymbol":"LOC110120635","entrezGeneId":110120635},{"hugoGeneSymbol":"LOC110120636","entrezGeneId":110120636},{"hugoGeneSymbol":"LOC110120637","entrezGeneId":110120637},{"hugoGeneSymbol":"LOC110120638","entrezGeneId":110120638},{"hugoGeneSymbol":"LOC110120640","entrezGeneId":110120640},{"hugoGeneSymbol":"LOC110120641","entrezGeneId":110120641},{"hugoGeneSymbol":"LOC110120642","entrezGeneId":110120642},{"hugoGeneSymbol":"LOC110120643","entrezGeneId":110120643},{"hugoGeneSymbol":"LOC110120644","entrezGeneId":110120644},{"hugoGeneSymbol":"LOC110120645","entrezGeneId":110120645},{"hugoGeneSymbol":"LOC110120646","entrezGeneId":110120646},{"hugoGeneSymbol":"LOC110120647","entrezGeneId":110120647},{"hugoGeneSymbol":"LOC110120648","entrezGeneId":110120648},{"hugoGeneSymbol":"LOC110120649","entrezGeneId":110120649},{"hugoGeneSymbol":"LOC110120650","entrezGeneId":110120650},{"hugoGeneSymbol":"LOC110120651","entrezGeneId":110120651},{"hugoGeneSymbol":"LOC110120652","entrezGeneId":110120652},{"hugoGeneSymbol":"LOC110120653","entrezGeneId":110120653},{"hugoGeneSymbol":"LOC110120654","entrezGeneId":110120654},{"hugoGeneSymbol":"LOC110120655","entrezGeneId":110120655},{"hugoGeneSymbol":"LOC110120656","entrezGeneId":110120656},{"hugoGeneSymbol":"LOC110120657","entrezGeneId":110120657},{"hugoGeneSymbol":"LOC110120658","entrezGeneId":110120658},{"hugoGeneSymbol":"LOC110120659","entrezGeneId":110120659},{"hugoGeneSymbol":"LOC110120660","entrezGeneId":110120660},{"hugoGeneSymbol":"LOC110120661","entrezGeneId":110120661},{"hugoGeneSymbol":"LOC110120662","entrezGeneId":110120662},{"hugoGeneSymbol":"LOC110120664","entrezGeneId":110120664},{"hugoGeneSymbol":"LOC110120665","entrezGeneId":110120665},{"hugoGeneSymbol":"LOC110120666","entrezGeneId":110120666},{"hugoGeneSymbol":"LOC110120667","entrezGeneId":110120667},{"hugoGeneSymbol":"LOC110120668","entrezGeneId":110120668},{"hugoGeneSymbol":"LOC110120669","entrezGeneId":110120669},{"hugoGeneSymbol":"LOC110120670","entrezGeneId":110120670},{"hugoGeneSymbol":"LOC110120671","entrezGeneId":110120671},{"hugoGeneSymbol":"LOC110120672","entrezGeneId":110120672},{"hugoGeneSymbol":"LOC110120673","entrezGeneId":110120673},{"hugoGeneSymbol":"LOC110120674","entrezGeneId":110120674},{"hugoGeneSymbol":"LOC110120675","entrezGeneId":110120675},{"hugoGeneSymbol":"LOC110120676","entrezGeneId":110120676},{"hugoGeneSymbol":"LOC110120677","entrezGeneId":110120677},{"hugoGeneSymbol":"LOC110120678","entrezGeneId":110120678},{"hugoGeneSymbol":"LOC110120679","entrezGeneId":110120679},{"hugoGeneSymbol":"LOC110120680","entrezGeneId":110120680},{"hugoGeneSymbol":"LOC110120681","entrezGeneId":110120681},{"hugoGeneSymbol":"LOC110120682","entrezGeneId":110120682},{"hugoGeneSymbol":"LOC110120683","entrezGeneId":110120683},{"hugoGeneSymbol":"LOC110120684","entrezGeneId":110120684},{"hugoGeneSymbol":"LOC110120685","entrezGeneId":110120685},{"hugoGeneSymbol":"LOC110120686","entrezGeneId":110120686},{"hugoGeneSymbol":"LOC110120687","entrezGeneId":110120687},{"hugoGeneSymbol":"LOC110120688","entrezGeneId":110120688},{"hugoGeneSymbol":"LOC110120689","entrezGeneId":110120689},{"hugoGeneSymbol":"LOC110120690","entrezGeneId":110120690},{"hugoGeneSymbol":"LOC110120691","entrezGeneId":110120691},{"hugoGeneSymbol":"LOC110120692","entrezGeneId":110120692},{"hugoGeneSymbol":"LOC110120693","entrezGeneId":110120693},{"hugoGeneSymbol":"LOC110120694","entrezGeneId":110120694},{"hugoGeneSymbol":"LOC110120695","entrezGeneId":110120695},{"hugoGeneSymbol":"LOC110120696","entrezGeneId":110120696},{"hugoGeneSymbol":"LOC110120697","entrezGeneId":110120697},{"hugoGeneSymbol":"LOC110120698","entrezGeneId":110120698},{"hugoGeneSymbol":"LOC110120699","entrezGeneId":110120699},{"hugoGeneSymbol":"LOC110120700","entrezGeneId":110120700},{"hugoGeneSymbol":"LOC110120701","entrezGeneId":110120701},{"hugoGeneSymbol":"LOC110120702","entrezGeneId":110120702},{"hugoGeneSymbol":"LOC110120703","entrezGeneId":110120703},{"hugoGeneSymbol":"LOC110120704","entrezGeneId":110120704},{"hugoGeneSymbol":"LOC110120705","entrezGeneId":110120705},{"hugoGeneSymbol":"LOC110120706","entrezGeneId":110120706},{"hugoGeneSymbol":"LOC110120708","entrezGeneId":110120708},{"hugoGeneSymbol":"LOC110120709","entrezGeneId":110120709},{"hugoGeneSymbol":"LOC110120710","entrezGeneId":110120710},{"hugoGeneSymbol":"LOC110120711","entrezGeneId":110120711},{"hugoGeneSymbol":"LOC110120712","entrezGeneId":110120712},{"hugoGeneSymbol":"LOC110120713","entrezGeneId":110120713},{"hugoGeneSymbol":"LOC110120714","entrezGeneId":110120714},{"hugoGeneSymbol":"LOC110120715","entrezGeneId":110120715},{"hugoGeneSymbol":"LOC110120716","entrezGeneId":110120716},{"hugoGeneSymbol":"LOC110120717","entrezGeneId":110120717},{"hugoGeneSymbol":"LOC110120718","entrezGeneId":110120718},{"hugoGeneSymbol":"LOC110120719","entrezGeneId":110120719},{"hugoGeneSymbol":"LOC110120720","entrezGeneId":110120720},{"hugoGeneSymbol":"LOC110120721","entrezGeneId":110120721},{"hugoGeneSymbol":"LOC110120722","entrezGeneId":110120722},{"hugoGeneSymbol":"LOC110120723","entrezGeneId":110120723},{"hugoGeneSymbol":"LOC110120724","entrezGeneId":110120724},{"hugoGeneSymbol":"LOC110120725","entrezGeneId":110120725},{"hugoGeneSymbol":"LOC110120726","entrezGeneId":110120726},{"hugoGeneSymbol":"LOC110120727","entrezGeneId":110120727},{"hugoGeneSymbol":"LOC110120728","entrezGeneId":110120728},{"hugoGeneSymbol":"LOC110120729","entrezGeneId":110120729},{"hugoGeneSymbol":"LOC110120730","entrezGeneId":110120730},{"hugoGeneSymbol":"LOC110120731","entrezGeneId":110120731},{"hugoGeneSymbol":"LOC110120732","entrezGeneId":110120732},{"hugoGeneSymbol":"LOC110120733","entrezGeneId":110120733},{"hugoGeneSymbol":"LOC110120734","entrezGeneId":110120734},{"hugoGeneSymbol":"LOC110120735","entrezGeneId":110120735},{"hugoGeneSymbol":"LOC110120736","entrezGeneId":110120736},{"hugoGeneSymbol":"LOC110120737","entrezGeneId":110120737},{"hugoGeneSymbol":"LOC110120738","entrezGeneId":110120738},{"hugoGeneSymbol":"LOC110120739","entrezGeneId":110120739},{"hugoGeneSymbol":"LOC110120740","entrezGeneId":110120740},{"hugoGeneSymbol":"LOC110120741","entrezGeneId":110120741},{"hugoGeneSymbol":"LOC110120742","entrezGeneId":110120742},{"hugoGeneSymbol":"LOC110120743","entrezGeneId":110120743},{"hugoGeneSymbol":"LOC110120744","entrezGeneId":110120744},{"hugoGeneSymbol":"LOC110120745","entrezGeneId":110120745},{"hugoGeneSymbol":"LOC110120746","entrezGeneId":110120746},{"hugoGeneSymbol":"LOC110120747","entrezGeneId":110120747},{"hugoGeneSymbol":"LOC110120748","entrezGeneId":110120748},{"hugoGeneSymbol":"LOC110120749","entrezGeneId":110120749},{"hugoGeneSymbol":"LOC110120750","entrezGeneId":110120750},{"hugoGeneSymbol":"LOC110120751","entrezGeneId":110120751},{"hugoGeneSymbol":"LOC110120752","entrezGeneId":110120752},{"hugoGeneSymbol":"LOC110120753","entrezGeneId":110120753},{"hugoGeneSymbol":"LOC110120754","entrezGeneId":110120754},{"hugoGeneSymbol":"LOC110120755","entrezGeneId":110120755},{"hugoGeneSymbol":"LOC110120756","entrezGeneId":110120756},{"hugoGeneSymbol":"LOC110120757","entrezGeneId":110120757},{"hugoGeneSymbol":"LOC110120758","entrezGeneId":110120758},{"hugoGeneSymbol":"LOC110120759","entrezGeneId":110120759},{"hugoGeneSymbol":"LOC110120760","entrezGeneId":110120760},{"hugoGeneSymbol":"LOC110120761","entrezGeneId":110120761},{"hugoGeneSymbol":"LOC110120762","entrezGeneId":110120762},{"hugoGeneSymbol":"LOC110120763","entrezGeneId":110120763},{"hugoGeneSymbol":"LOC110120764","entrezGeneId":110120764},{"hugoGeneSymbol":"LOC110120765","entrezGeneId":110120765},{"hugoGeneSymbol":"LOC110120766","entrezGeneId":110120766},{"hugoGeneSymbol":"LOC110120767","entrezGeneId":110120767},{"hugoGeneSymbol":"LOC110120768","entrezGeneId":110120768},{"hugoGeneSymbol":"LOC110120769","entrezGeneId":110120769},{"hugoGeneSymbol":"LOC110120770","entrezGeneId":110120770},{"hugoGeneSymbol":"LOC110120771","entrezGeneId":110120771},{"hugoGeneSymbol":"LOC110120772","entrezGeneId":110120772},{"hugoGeneSymbol":"LOC110120773","entrezGeneId":110120773},{"hugoGeneSymbol":"LOC110120774","entrezGeneId":110120774},{"hugoGeneSymbol":"LOC110120775","entrezGeneId":110120775},{"hugoGeneSymbol":"LOC110120776","entrezGeneId":110120776},{"hugoGeneSymbol":"LOC110120777","entrezGeneId":110120777},{"hugoGeneSymbol":"LOC110120778","entrezGeneId":110120778},{"hugoGeneSymbol":"LOC110120779","entrezGeneId":110120779},{"hugoGeneSymbol":"LOC110120781","entrezGeneId":110120781},{"hugoGeneSymbol":"LOC110120782","entrezGeneId":110120782},{"hugoGeneSymbol":"LOC110120783","entrezGeneId":110120783},{"hugoGeneSymbol":"LOC110120784","entrezGeneId":110120784},{"hugoGeneSymbol":"LOC110120785","entrezGeneId":110120785},{"hugoGeneSymbol":"LOC110120786","entrezGeneId":110120786},{"hugoGeneSymbol":"LOC110120787","entrezGeneId":110120787},{"hugoGeneSymbol":"LOC110120788","entrezGeneId":110120788},{"hugoGeneSymbol":"LOC110120789","entrezGeneId":110120789},{"hugoGeneSymbol":"LOC110120790","entrezGeneId":110120790},{"hugoGeneSymbol":"LOC110120791","entrezGeneId":110120791},{"hugoGeneSymbol":"LOC110120792","entrezGeneId":110120792},{"hugoGeneSymbol":"LOC110120793","entrezGeneId":110120793},{"hugoGeneSymbol":"LOC110120794","entrezGeneId":110120794},{"hugoGeneSymbol":"LOC110120795","entrezGeneId":110120795},{"hugoGeneSymbol":"LOC110120796","entrezGeneId":110120796},{"hugoGeneSymbol":"LOC110120797","entrezGeneId":110120797},{"hugoGeneSymbol":"LOC110120798","entrezGeneId":110120798},{"hugoGeneSymbol":"LOC110120799","entrezGeneId":110120799},{"hugoGeneSymbol":"LOC110120800","entrezGeneId":110120800},{"hugoGeneSymbol":"LOC110120801","entrezGeneId":110120801},{"hugoGeneSymbol":"LOC110120802","entrezGeneId":110120802},{"hugoGeneSymbol":"LOC110120803","entrezGeneId":110120803},{"hugoGeneSymbol":"LOC110120804","entrezGeneId":110120804},{"hugoGeneSymbol":"LOC110120805","entrezGeneId":110120805},{"hugoGeneSymbol":"LOC110120806","entrezGeneId":110120806},{"hugoGeneSymbol":"LOC110120807","entrezGeneId":110120807},{"hugoGeneSymbol":"LOC110120808","entrezGeneId":110120808},{"hugoGeneSymbol":"LOC110120809","entrezGeneId":110120809},{"hugoGeneSymbol":"LOC110120810","entrezGeneId":110120810},{"hugoGeneSymbol":"LOC110120811","entrezGeneId":110120811},{"hugoGeneSymbol":"LOC110120812","entrezGeneId":110120812},{"hugoGeneSymbol":"LOC110120813","entrezGeneId":110120813},{"hugoGeneSymbol":"LOC110120814","entrezGeneId":110120814},{"hugoGeneSymbol":"LOC110120815","entrezGeneId":110120815},{"hugoGeneSymbol":"LOC110120816","entrezGeneId":110120816},{"hugoGeneSymbol":"LOC110120817","entrezGeneId":110120817},{"hugoGeneSymbol":"LOC110120818","entrezGeneId":110120818},{"hugoGeneSymbol":"LOC110120819","entrezGeneId":110120819},{"hugoGeneSymbol":"LOC110120820","entrezGeneId":110120820},{"hugoGeneSymbol":"LOC110120821","entrezGeneId":110120821},{"hugoGeneSymbol":"LOC110120822","entrezGeneId":110120822},{"hugoGeneSymbol":"LOC110120823","entrezGeneId":110120823},{"hugoGeneSymbol":"LOC110120824","entrezGeneId":110120824},{"hugoGeneSymbol":"LOC110120826","entrezGeneId":110120826},{"hugoGeneSymbol":"LOC110120827","entrezGeneId":110120827},{"hugoGeneSymbol":"LOC110120828","entrezGeneId":110120828},{"hugoGeneSymbol":"LOC110120829","entrezGeneId":110120829},{"hugoGeneSymbol":"LOC110120830","entrezGeneId":110120830},{"hugoGeneSymbol":"LOC110120831","entrezGeneId":110120831},{"hugoGeneSymbol":"LOC110120832","entrezGeneId":110120832},{"hugoGeneSymbol":"LOC110120833","entrezGeneId":110120833},{"hugoGeneSymbol":"LOC110120834","entrezGeneId":110120834},{"hugoGeneSymbol":"LOC110120835","entrezGeneId":110120835},{"hugoGeneSymbol":"LOC110120836","entrezGeneId":110120836},{"hugoGeneSymbol":"LOC110120837","entrezGeneId":110120837},{"hugoGeneSymbol":"LOC110120838","entrezGeneId":110120838},{"hugoGeneSymbol":"LOC110120839","entrezGeneId":110120839},{"hugoGeneSymbol":"LOC110120840","entrezGeneId":110120840},{"hugoGeneSymbol":"LOC110120841","entrezGeneId":110120841},{"hugoGeneSymbol":"LOC110120842","entrezGeneId":110120842},{"hugoGeneSymbol":"LOC110120843","entrezGeneId":110120843},{"hugoGeneSymbol":"LOC110120845","entrezGeneId":110120845},{"hugoGeneSymbol":"LOC110120846","entrezGeneId":110120846},{"hugoGeneSymbol":"LOC110120848","entrezGeneId":110120848},{"hugoGeneSymbol":"LOC110120849","entrezGeneId":110120849},{"hugoGeneSymbol":"LOC110120850","entrezGeneId":110120850},{"hugoGeneSymbol":"LOC110120851","entrezGeneId":110120851},{"hugoGeneSymbol":"LOC110120852","entrezGeneId":110120852},{"hugoGeneSymbol":"LOC110120853","entrezGeneId":110120853},{"hugoGeneSymbol":"LOC110120854","entrezGeneId":110120854},{"hugoGeneSymbol":"LOC110120855","entrezGeneId":110120855},{"hugoGeneSymbol":"LOC110120856","entrezGeneId":110120856},{"hugoGeneSymbol":"LOC110120857","entrezGeneId":110120857},{"hugoGeneSymbol":"LOC110120858","entrezGeneId":110120858},{"hugoGeneSymbol":"LOC110120859","entrezGeneId":110120859},{"hugoGeneSymbol":"LOC110120860","entrezGeneId":110120860},{"hugoGeneSymbol":"LOC110120861","entrezGeneId":110120861},{"hugoGeneSymbol":"LOC110120862","entrezGeneId":110120862},{"hugoGeneSymbol":"LOC110120863","entrezGeneId":110120863},{"hugoGeneSymbol":"LOC110120864","entrezGeneId":110120864},{"hugoGeneSymbol":"LOC110120865","entrezGeneId":110120865},{"hugoGeneSymbol":"LOC110120866","entrezGeneId":110120866},{"hugoGeneSymbol":"LOC110120867","entrezGeneId":110120867},{"hugoGeneSymbol":"LOC110120868","entrezGeneId":110120868},{"hugoGeneSymbol":"LOC110120869","entrezGeneId":110120869},{"hugoGeneSymbol":"LOC110120870","entrezGeneId":110120870},{"hugoGeneSymbol":"LOC110120871","entrezGeneId":110120871},{"hugoGeneSymbol":"LOC110120872","entrezGeneId":110120872},{"hugoGeneSymbol":"LOC110120873","entrezGeneId":110120873},{"hugoGeneSymbol":"LOC110120874","entrezGeneId":110120874},{"hugoGeneSymbol":"LOC110120875","entrezGeneId":110120875},{"hugoGeneSymbol":"LOC110120876","entrezGeneId":110120876},{"hugoGeneSymbol":"LOC110120877","entrezGeneId":110120877},{"hugoGeneSymbol":"LOC110120878","entrezGeneId":110120878},{"hugoGeneSymbol":"LOC110120879","entrezGeneId":110120879},{"hugoGeneSymbol":"LOC110120880","entrezGeneId":110120880},{"hugoGeneSymbol":"LOC110120881","entrezGeneId":110120881},{"hugoGeneSymbol":"LOC110120882","entrezGeneId":110120882},{"hugoGeneSymbol":"LOC110120883","entrezGeneId":110120883},{"hugoGeneSymbol":"LOC110120884","entrezGeneId":110120884},{"hugoGeneSymbol":"LOC110120885","entrezGeneId":110120885},{"hugoGeneSymbol":"LOC110120886","entrezGeneId":110120886},{"hugoGeneSymbol":"LOC110120887","entrezGeneId":110120887},{"hugoGeneSymbol":"LOC110120888","entrezGeneId":110120888},{"hugoGeneSymbol":"LOC110120889","entrezGeneId":110120889},{"hugoGeneSymbol":"LOC110120890","entrezGeneId":110120890},{"hugoGeneSymbol":"LOC110120891","entrezGeneId":110120891},{"hugoGeneSymbol":"LOC110120892","entrezGeneId":110120892},{"hugoGeneSymbol":"LOC110120893","entrezGeneId":110120893},{"hugoGeneSymbol":"LOC110120895","entrezGeneId":110120895},{"hugoGeneSymbol":"LOC110120896","entrezGeneId":110120896},{"hugoGeneSymbol":"LOC110120897","entrezGeneId":110120897},{"hugoGeneSymbol":"LOC110120898","entrezGeneId":110120898},{"hugoGeneSymbol":"LOC110120899","entrezGeneId":110120899},{"hugoGeneSymbol":"LOC110120900","entrezGeneId":110120900},{"hugoGeneSymbol":"LOC110120901","entrezGeneId":110120901},{"hugoGeneSymbol":"LOC110120902","entrezGeneId":110120902},{"hugoGeneSymbol":"LOC110120903","entrezGeneId":110120903},{"hugoGeneSymbol":"LOC110120904","entrezGeneId":110120904},{"hugoGeneSymbol":"LOC110120905","entrezGeneId":110120905},{"hugoGeneSymbol":"LOC110120906","entrezGeneId":110120906},{"hugoGeneSymbol":"LOC110120907","entrezGeneId":110120907},{"hugoGeneSymbol":"LOC110120908","entrezGeneId":110120908},{"hugoGeneSymbol":"LOC110120909","entrezGeneId":110120909},{"hugoGeneSymbol":"LOC110120910","entrezGeneId":110120910},{"hugoGeneSymbol":"LOC110120911","entrezGeneId":110120911},{"hugoGeneSymbol":"LOC110120912","entrezGeneId":110120912},{"hugoGeneSymbol":"LOC110120913","entrezGeneId":110120913},{"hugoGeneSymbol":"LOC110120914","entrezGeneId":110120914},{"hugoGeneSymbol":"LOC110120915","entrezGeneId":110120915},{"hugoGeneSymbol":"LOC110120916","entrezGeneId":110120916},{"hugoGeneSymbol":"LOC110120917","entrezGeneId":110120917},{"hugoGeneSymbol":"LOC110120918","entrezGeneId":110120918},{"hugoGeneSymbol":"LOC110120919","entrezGeneId":110120919},{"hugoGeneSymbol":"LOC110120920","entrezGeneId":110120920},{"hugoGeneSymbol":"LOC110120921","entrezGeneId":110120921},{"hugoGeneSymbol":"LOC110120922","entrezGeneId":110120922},{"hugoGeneSymbol":"LOC110120923","entrezGeneId":110120923},{"hugoGeneSymbol":"LOC110120924","entrezGeneId":110120924},{"hugoGeneSymbol":"LOC110120925","entrezGeneId":110120925},{"hugoGeneSymbol":"LOC110120926","entrezGeneId":110120926},{"hugoGeneSymbol":"LOC110120927","entrezGeneId":110120927},{"hugoGeneSymbol":"LOC110120928","entrezGeneId":110120928},{"hugoGeneSymbol":"LOC110120929","entrezGeneId":110120929},{"hugoGeneSymbol":"LOC110120930","entrezGeneId":110120930},{"hugoGeneSymbol":"LOC110120931","entrezGeneId":110120931},{"hugoGeneSymbol":"LOC110120932","entrezGeneId":110120932},{"hugoGeneSymbol":"LOC110120933","entrezGeneId":110120933},{"hugoGeneSymbol":"LOC110120934","entrezGeneId":110120934},{"hugoGeneSymbol":"LOC110120935","entrezGeneId":110120935},{"hugoGeneSymbol":"LOC110120936","entrezGeneId":110120936},{"hugoGeneSymbol":"LOC110120937","entrezGeneId":110120937},{"hugoGeneSymbol":"LOC110120938","entrezGeneId":110120938},{"hugoGeneSymbol":"LOC110120939","entrezGeneId":110120939},{"hugoGeneSymbol":"LOC110120940","entrezGeneId":110120940},{"hugoGeneSymbol":"LOC110120941","entrezGeneId":110120941},{"hugoGeneSymbol":"LOC110120942","entrezGeneId":110120942},{"hugoGeneSymbol":"LOC110120944","entrezGeneId":110120944},{"hugoGeneSymbol":"LOC110120945","entrezGeneId":110120945},{"hugoGeneSymbol":"LOC110120946","entrezGeneId":110120946},{"hugoGeneSymbol":"LOC110120947","entrezGeneId":110120947},{"hugoGeneSymbol":"LOC110120948","entrezGeneId":110120948},{"hugoGeneSymbol":"LOC110120949","entrezGeneId":110120949},{"hugoGeneSymbol":"LOC110120950","entrezGeneId":110120950},{"hugoGeneSymbol":"LOC110120951","entrezGeneId":110120951},{"hugoGeneSymbol":"LOC110120952","entrezGeneId":110120952},{"hugoGeneSymbol":"LOC110120953","entrezGeneId":110120953},{"hugoGeneSymbol":"LOC110120954","entrezGeneId":110120954},{"hugoGeneSymbol":"LOC110120955","entrezGeneId":110120955},{"hugoGeneSymbol":"LOC110120956","entrezGeneId":110120956},{"hugoGeneSymbol":"LOC110120957","entrezGeneId":110120957},{"hugoGeneSymbol":"LOC110120958","entrezGeneId":110120958},{"hugoGeneSymbol":"LOC110120959","entrezGeneId":110120959},{"hugoGeneSymbol":"LOC110120960","entrezGeneId":110120960},{"hugoGeneSymbol":"LOC110120961","entrezGeneId":110120961},{"hugoGeneSymbol":"LOC110120962","entrezGeneId":110120962},{"hugoGeneSymbol":"LOC110120963","entrezGeneId":110120963},{"hugoGeneSymbol":"LOC110120964","entrezGeneId":110120964},{"hugoGeneSymbol":"LOC110120965","entrezGeneId":110120965},{"hugoGeneSymbol":"LOC110120966","entrezGeneId":110120966},{"hugoGeneSymbol":"LOC110120967","entrezGeneId":110120967},{"hugoGeneSymbol":"LOC110120968","entrezGeneId":110120968},{"hugoGeneSymbol":"LOC110120969","entrezGeneId":110120969},{"hugoGeneSymbol":"LOC110120970","entrezGeneId":110120970},{"hugoGeneSymbol":"LOC110120971","entrezGeneId":110120971},{"hugoGeneSymbol":"LOC110120972","entrezGeneId":110120972},{"hugoGeneSymbol":"LOC110120973","entrezGeneId":110120973},{"hugoGeneSymbol":"LOC110120974","entrezGeneId":110120974},{"hugoGeneSymbol":"LOC110120975","entrezGeneId":110120975},{"hugoGeneSymbol":"LOC110120976","entrezGeneId":110120976},{"hugoGeneSymbol":"LOC110120977","entrezGeneId":110120977},{"hugoGeneSymbol":"LOC110120978","entrezGeneId":110120978},{"hugoGeneSymbol":"LOC110120979","entrezGeneId":110120979},{"hugoGeneSymbol":"LOC110120980","entrezGeneId":110120980},{"hugoGeneSymbol":"LOC110120981","entrezGeneId":110120981},{"hugoGeneSymbol":"LOC110120982","entrezGeneId":110120982},{"hugoGeneSymbol":"LOC110120983","entrezGeneId":110120983},{"hugoGeneSymbol":"LOC110120984","entrezGeneId":110120984},{"hugoGeneSymbol":"LOC110120985","entrezGeneId":110120985},{"hugoGeneSymbol":"LOC110120986","entrezGeneId":110120986},{"hugoGeneSymbol":"LOC110120987","entrezGeneId":110120987},{"hugoGeneSymbol":"LOC110120988","entrezGeneId":110120988},{"hugoGeneSymbol":"LOC110120989","entrezGeneId":110120989},{"hugoGeneSymbol":"LOC110120990","entrezGeneId":110120990},{"hugoGeneSymbol":"LOC110120991","entrezGeneId":110120991},{"hugoGeneSymbol":"LOC110120992","entrezGeneId":110120992},{"hugoGeneSymbol":"LOC110120993","entrezGeneId":110120993},{"hugoGeneSymbol":"LOC110120994","entrezGeneId":110120994},{"hugoGeneSymbol":"LOC110120995","entrezGeneId":110120995},{"hugoGeneSymbol":"LOC110120996","entrezGeneId":110120996},{"hugoGeneSymbol":"LOC110120997","entrezGeneId":110120997},{"hugoGeneSymbol":"LOC110120998","entrezGeneId":110120998},{"hugoGeneSymbol":"LOC110120999","entrezGeneId":110120999},{"hugoGeneSymbol":"LOC110121000","entrezGeneId":110121000},{"hugoGeneSymbol":"LOC110121001","entrezGeneId":110121001},{"hugoGeneSymbol":"LOC110121002","entrezGeneId":110121002},{"hugoGeneSymbol":"LOC110121003","entrezGeneId":110121003},{"hugoGeneSymbol":"LOC110121004","entrezGeneId":110121004},{"hugoGeneSymbol":"LOC110121005","entrezGeneId":110121005},{"hugoGeneSymbol":"LOC110121006","entrezGeneId":110121006},{"hugoGeneSymbol":"LOC110121007","entrezGeneId":110121007},{"hugoGeneSymbol":"LOC110121008","entrezGeneId":110121008},{"hugoGeneSymbol":"LOC110121009","entrezGeneId":110121009},{"hugoGeneSymbol":"LOC110121010","entrezGeneId":110121010},{"hugoGeneSymbol":"LOC110121011","entrezGeneId":110121011},{"hugoGeneSymbol":"LOC110121012","entrezGeneId":110121012},{"hugoGeneSymbol":"LOC110121013","entrezGeneId":110121013},{"hugoGeneSymbol":"LOC110121014","entrezGeneId":110121014},{"hugoGeneSymbol":"LOC110121015","entrezGeneId":110121015},{"hugoGeneSymbol":"LOC110121016","entrezGeneId":110121016},{"hugoGeneSymbol":"LOC110121017","entrezGeneId":110121017},{"hugoGeneSymbol":"LOC110121018","entrezGeneId":110121018},{"hugoGeneSymbol":"LOC110121019","entrezGeneId":110121019},{"hugoGeneSymbol":"LOC110121020","entrezGeneId":110121020},{"hugoGeneSymbol":"LOC110121021","entrezGeneId":110121021},{"hugoGeneSymbol":"LOC110121022","entrezGeneId":110121022},{"hugoGeneSymbol":"LOC110121023","entrezGeneId":110121023},{"hugoGeneSymbol":"LOC110121024","entrezGeneId":110121024},{"hugoGeneSymbol":"LOC110121025","entrezGeneId":110121025},{"hugoGeneSymbol":"LOC110121026","entrezGeneId":110121026},{"hugoGeneSymbol":"LOC110121027","entrezGeneId":110121027},{"hugoGeneSymbol":"LOC110121029","entrezGeneId":110121029},{"hugoGeneSymbol":"LOC110121030","entrezGeneId":110121030},{"hugoGeneSymbol":"LOC110121031","entrezGeneId":110121031},{"hugoGeneSymbol":"LOC110121032","entrezGeneId":110121032},{"hugoGeneSymbol":"LOC110121033","entrezGeneId":110121033},{"hugoGeneSymbol":"LOC110121034","entrezGeneId":110121034},{"hugoGeneSymbol":"LOC110121035","entrezGeneId":110121035},{"hugoGeneSymbol":"LOC110121036","entrezGeneId":110121036},{"hugoGeneSymbol":"LOC110121037","entrezGeneId":110121037},{"hugoGeneSymbol":"LOC110121038","entrezGeneId":110121038},{"hugoGeneSymbol":"LOC110121039","entrezGeneId":110121039},{"hugoGeneSymbol":"LOC110121041","entrezGeneId":110121041},{"hugoGeneSymbol":"LOC110121042","entrezGeneId":110121042},{"hugoGeneSymbol":"LOC110121043","entrezGeneId":110121043},{"hugoGeneSymbol":"LOC110121044","entrezGeneId":110121044},{"hugoGeneSymbol":"LOC110121045","entrezGeneId":110121045},{"hugoGeneSymbol":"LOC110121046","entrezGeneId":110121046},{"hugoGeneSymbol":"LOC110121047","entrezGeneId":110121047},{"hugoGeneSymbol":"LOC110121048","entrezGeneId":110121048},{"hugoGeneSymbol":"LOC110121049","entrezGeneId":110121049},{"hugoGeneSymbol":"LOC110121050","entrezGeneId":110121050},{"hugoGeneSymbol":"LOC110121051","entrezGeneId":110121051},{"hugoGeneSymbol":"LOC110121052","entrezGeneId":110121052},{"hugoGeneSymbol":"LOC110121053","entrezGeneId":110121053},{"hugoGeneSymbol":"LOC110121054","entrezGeneId":110121054},{"hugoGeneSymbol":"LOC110121055","entrezGeneId":110121055},{"hugoGeneSymbol":"LOC110121056","entrezGeneId":110121056},{"hugoGeneSymbol":"LOC110121057","entrezGeneId":110121057},{"hugoGeneSymbol":"LOC110121058","entrezGeneId":110121058},{"hugoGeneSymbol":"LOC110121059","entrezGeneId":110121059},{"hugoGeneSymbol":"LOC110121060","entrezGeneId":110121060},{"hugoGeneSymbol":"LOC110121061","entrezGeneId":110121061},{"hugoGeneSymbol":"LOC110121062","entrezGeneId":110121062},{"hugoGeneSymbol":"LOC110121063","entrezGeneId":110121063},{"hugoGeneSymbol":"LOC110121064","entrezGeneId":110121064},{"hugoGeneSymbol":"LOC110121065","entrezGeneId":110121065},{"hugoGeneSymbol":"LOC110121066","entrezGeneId":110121066},{"hugoGeneSymbol":"LOC110121067","entrezGeneId":110121067},{"hugoGeneSymbol":"LOC110121068","entrezGeneId":110121068},{"hugoGeneSymbol":"LOC110121069","entrezGeneId":110121069},{"hugoGeneSymbol":"LOC110121070","entrezGeneId":110121070},{"hugoGeneSymbol":"LOC110121071","entrezGeneId":110121071},{"hugoGeneSymbol":"LOC110121072","entrezGeneId":110121072},{"hugoGeneSymbol":"LOC110121073","entrezGeneId":110121073},{"hugoGeneSymbol":"LOC110121074","entrezGeneId":110121074},{"hugoGeneSymbol":"LOC110121075","entrezGeneId":110121075},{"hugoGeneSymbol":"LOC110121076","entrezGeneId":110121076},{"hugoGeneSymbol":"LOC110121077","entrezGeneId":110121077},{"hugoGeneSymbol":"LOC110121078","entrezGeneId":110121078},{"hugoGeneSymbol":"LOC110121079","entrezGeneId":110121079},{"hugoGeneSymbol":"LOC110121080","entrezGeneId":110121080},{"hugoGeneSymbol":"LOC110121081","entrezGeneId":110121081},{"hugoGeneSymbol":"LOC110121082","entrezGeneId":110121082},{"hugoGeneSymbol":"LOC110121083","entrezGeneId":110121083},{"hugoGeneSymbol":"LOC110121084","entrezGeneId":110121084},{"hugoGeneSymbol":"LOC110121085","entrezGeneId":110121085},{"hugoGeneSymbol":"LOC110121086","entrezGeneId":110121086},{"hugoGeneSymbol":"LOC110121087","entrezGeneId":110121087},{"hugoGeneSymbol":"LOC110121088","entrezGeneId":110121088},{"hugoGeneSymbol":"LOC110121089","entrezGeneId":110121089},{"hugoGeneSymbol":"LOC110121090","entrezGeneId":110121090},{"hugoGeneSymbol":"LOC110121091","entrezGeneId":110121091},{"hugoGeneSymbol":"LOC110121092","entrezGeneId":110121092},{"hugoGeneSymbol":"LOC110121093","entrezGeneId":110121093},{"hugoGeneSymbol":"LOC110121094","entrezGeneId":110121094},{"hugoGeneSymbol":"LOC110121096","entrezGeneId":110121096},{"hugoGeneSymbol":"LOC110121097","entrezGeneId":110121097},{"hugoGeneSymbol":"LOC110121098","entrezGeneId":110121098},{"hugoGeneSymbol":"LOC110121099","entrezGeneId":110121099},{"hugoGeneSymbol":"LOC110121100","entrezGeneId":110121100},{"hugoGeneSymbol":"LOC110121101","entrezGeneId":110121101},{"hugoGeneSymbol":"LOC110121102","entrezGeneId":110121102},{"hugoGeneSymbol":"LOC110121103","entrezGeneId":110121103},{"hugoGeneSymbol":"LOC110121104","entrezGeneId":110121104},{"hugoGeneSymbol":"LOC110121105","entrezGeneId":110121105},{"hugoGeneSymbol":"LOC110121106","entrezGeneId":110121106},{"hugoGeneSymbol":"LOC110121107","entrezGeneId":110121107},{"hugoGeneSymbol":"LOC110121108","entrezGeneId":110121108},{"hugoGeneSymbol":"LOC110121109","entrezGeneId":110121109},{"hugoGeneSymbol":"LOC110121110","entrezGeneId":110121110},{"hugoGeneSymbol":"LOC110121111","entrezGeneId":110121111},{"hugoGeneSymbol":"LOC110121112","entrezGeneId":110121112},{"hugoGeneSymbol":"LOC110121113","entrezGeneId":110121113},{"hugoGeneSymbol":"LOC110121114","entrezGeneId":110121114},{"hugoGeneSymbol":"LOC110121115","entrezGeneId":110121115},{"hugoGeneSymbol":"LOC110121116","entrezGeneId":110121116},{"hugoGeneSymbol":"LOC110121117","entrezGeneId":110121117},{"hugoGeneSymbol":"LOC110121118","entrezGeneId":110121118},{"hugoGeneSymbol":"LOC110121119","entrezGeneId":110121119},{"hugoGeneSymbol":"LOC110121120","entrezGeneId":110121120},{"hugoGeneSymbol":"LOC110121121","entrezGeneId":110121121},{"hugoGeneSymbol":"LOC110121122","entrezGeneId":110121122},{"hugoGeneSymbol":"LOC110121123","entrezGeneId":110121123},{"hugoGeneSymbol":"LOC110121124","entrezGeneId":110121124},{"hugoGeneSymbol":"LOC110121125","entrezGeneId":110121125},{"hugoGeneSymbol":"LOC110121126","entrezGeneId":110121126},{"hugoGeneSymbol":"LOC110121127","entrezGeneId":110121127},{"hugoGeneSymbol":"LOC110121128","entrezGeneId":110121128},{"hugoGeneSymbol":"LOC110121129","entrezGeneId":110121129},{"hugoGeneSymbol":"LOC110121130","entrezGeneId":110121130},{"hugoGeneSymbol":"LOC110121131","entrezGeneId":110121131},{"hugoGeneSymbol":"LOC110121132","entrezGeneId":110121132},{"hugoGeneSymbol":"LOC110121133","entrezGeneId":110121133},{"hugoGeneSymbol":"LOC110121134","entrezGeneId":110121134},{"hugoGeneSymbol":"LOC110121135","entrezGeneId":110121135},{"hugoGeneSymbol":"LOC110121136","entrezGeneId":110121136},{"hugoGeneSymbol":"LOC110121137","entrezGeneId":110121137},{"hugoGeneSymbol":"LOC110121138","entrezGeneId":110121138},{"hugoGeneSymbol":"LOC110121139","entrezGeneId":110121139},{"hugoGeneSymbol":"LOC110121140","entrezGeneId":110121140},{"hugoGeneSymbol":"LOC110121141","entrezGeneId":110121141},{"hugoGeneSymbol":"LOC110121142","entrezGeneId":110121142},{"hugoGeneSymbol":"LOC110121143","entrezGeneId":110121143},{"hugoGeneSymbol":"LOC110121144","entrezGeneId":110121144},{"hugoGeneSymbol":"LOC110121145","entrezGeneId":110121145},{"hugoGeneSymbol":"LOC110121146","entrezGeneId":110121146},{"hugoGeneSymbol":"LOC110121147","entrezGeneId":110121147},{"hugoGeneSymbol":"LOC110121148","entrezGeneId":110121148},{"hugoGeneSymbol":"LOC110121149","entrezGeneId":110121149},{"hugoGeneSymbol":"LOC110121150","entrezGeneId":110121150},{"hugoGeneSymbol":"LOC110121151","entrezGeneId":110121151},{"hugoGeneSymbol":"LOC110121152","entrezGeneId":110121152},{"hugoGeneSymbol":"LOC110121153","entrezGeneId":110121153},{"hugoGeneSymbol":"LOC110121154","entrezGeneId":110121154},{"hugoGeneSymbol":"LOC110121155","entrezGeneId":110121155},{"hugoGeneSymbol":"LOC110121156","entrezGeneId":110121156},{"hugoGeneSymbol":"LOC110121157","entrezGeneId":110121157},{"hugoGeneSymbol":"LOC110121158","entrezGeneId":110121158},{"hugoGeneSymbol":"LOC110121159","entrezGeneId":110121159},{"hugoGeneSymbol":"LOC110121160","entrezGeneId":110121160},{"hugoGeneSymbol":"LOC110121161","entrezGeneId":110121161},{"hugoGeneSymbol":"LOC110121162","entrezGeneId":110121162},{"hugoGeneSymbol":"LOC110121163","entrezGeneId":110121163},{"hugoGeneSymbol":"LOC110121164","entrezGeneId":110121164},{"hugoGeneSymbol":"LOC110121165","entrezGeneId":110121165},{"hugoGeneSymbol":"LOC110121166","entrezGeneId":110121166},{"hugoGeneSymbol":"LOC110121167","entrezGeneId":110121167},{"hugoGeneSymbol":"LOC110121168","entrezGeneId":110121168},{"hugoGeneSymbol":"LOC110121169","entrezGeneId":110121169},{"hugoGeneSymbol":"LOC110121170","entrezGeneId":110121170},{"hugoGeneSymbol":"LOC110121171","entrezGeneId":110121171},{"hugoGeneSymbol":"LOC110121172","entrezGeneId":110121172},{"hugoGeneSymbol":"LOC110121173","entrezGeneId":110121173},{"hugoGeneSymbol":"LOC110121174","entrezGeneId":110121174},{"hugoGeneSymbol":"LOC110121175","entrezGeneId":110121175},{"hugoGeneSymbol":"LOC110121176","entrezGeneId":110121176},{"hugoGeneSymbol":"LOC110121177","entrezGeneId":110121177},{"hugoGeneSymbol":"LOC110121178","entrezGeneId":110121178},{"hugoGeneSymbol":"LOC110121179","entrezGeneId":110121179},{"hugoGeneSymbol":"LOC110121180","entrezGeneId":110121180},{"hugoGeneSymbol":"LOC110121181","entrezGeneId":110121181},{"hugoGeneSymbol":"LOC110121182","entrezGeneId":110121182},{"hugoGeneSymbol":"LOC110121183","entrezGeneId":110121183},{"hugoGeneSymbol":"LOC110121184","entrezGeneId":110121184},{"hugoGeneSymbol":"LOC110121185","entrezGeneId":110121185},{"hugoGeneSymbol":"LOC110121186","entrezGeneId":110121186},{"hugoGeneSymbol":"LOC110121187","entrezGeneId":110121187},{"hugoGeneSymbol":"LOC110121188","entrezGeneId":110121188},{"hugoGeneSymbol":"LOC110121190","entrezGeneId":110121190},{"hugoGeneSymbol":"LOC110121191","entrezGeneId":110121191},{"hugoGeneSymbol":"LOC110121192","entrezGeneId":110121192},{"hugoGeneSymbol":"LOC110121194","entrezGeneId":110121194},{"hugoGeneSymbol":"LOC110121195","entrezGeneId":110121195},{"hugoGeneSymbol":"LOC110121196","entrezGeneId":110121196},{"hugoGeneSymbol":"LOC110121197","entrezGeneId":110121197},{"hugoGeneSymbol":"LOC110121198","entrezGeneId":110121198},{"hugoGeneSymbol":"LOC110121199","entrezGeneId":110121199},{"hugoGeneSymbol":"LOC110121200","entrezGeneId":110121200},{"hugoGeneSymbol":"LOC110121201","entrezGeneId":110121201},{"hugoGeneSymbol":"LOC110121202","entrezGeneId":110121202},{"hugoGeneSymbol":"LOC110121203","entrezGeneId":110121203},{"hugoGeneSymbol":"LOC110121204","entrezGeneId":110121204},{"hugoGeneSymbol":"LOC110121205","entrezGeneId":110121205},{"hugoGeneSymbol":"LOC110121207","entrezGeneId":110121207},{"hugoGeneSymbol":"LOC110121208","entrezGeneId":110121208},{"hugoGeneSymbol":"LOC110121209","entrezGeneId":110121209},{"hugoGeneSymbol":"LOC110121210","entrezGeneId":110121210},{"hugoGeneSymbol":"LOC110121211","entrezGeneId":110121211},{"hugoGeneSymbol":"LOC110121212","entrezGeneId":110121212},{"hugoGeneSymbol":"LOC110121213","entrezGeneId":110121213},{"hugoGeneSymbol":"LOC110121214","entrezGeneId":110121214},{"hugoGeneSymbol":"LOC110121215","entrezGeneId":110121215},{"hugoGeneSymbol":"LOC110121216","entrezGeneId":110121216},{"hugoGeneSymbol":"LOC110121217","entrezGeneId":110121217},{"hugoGeneSymbol":"LOC110121218","entrezGeneId":110121218},{"hugoGeneSymbol":"LOC110121220","entrezGeneId":110121220},{"hugoGeneSymbol":"LOC110121221","entrezGeneId":110121221},{"hugoGeneSymbol":"LOC110121222","entrezGeneId":110121222},{"hugoGeneSymbol":"LOC110121223","entrezGeneId":110121223},{"hugoGeneSymbol":"LOC110121224","entrezGeneId":110121224},{"hugoGeneSymbol":"LOC110121225","entrezGeneId":110121225},{"hugoGeneSymbol":"LOC110121226","entrezGeneId":110121226},{"hugoGeneSymbol":"LOC110121227","entrezGeneId":110121227},{"hugoGeneSymbol":"LOC110121228","entrezGeneId":110121228},{"hugoGeneSymbol":"LOC110121229","entrezGeneId":110121229},{"hugoGeneSymbol":"LOC110121230","entrezGeneId":110121230},{"hugoGeneSymbol":"LOC110121231","entrezGeneId":110121231},{"hugoGeneSymbol":"LOC110121232","entrezGeneId":110121232},{"hugoGeneSymbol":"LOC110121233","entrezGeneId":110121233},{"hugoGeneSymbol":"LOC110121234","entrezGeneId":110121234},{"hugoGeneSymbol":"LOC110121235","entrezGeneId":110121235},{"hugoGeneSymbol":"LOC110121236","entrezGeneId":110121236},{"hugoGeneSymbol":"LOC110121237","entrezGeneId":110121237},{"hugoGeneSymbol":"LOC110121238","entrezGeneId":110121238},{"hugoGeneSymbol":"LOC110121239","entrezGeneId":110121239},{"hugoGeneSymbol":"LOC110121240","entrezGeneId":110121240},{"hugoGeneSymbol":"LOC110121241","entrezGeneId":110121241},{"hugoGeneSymbol":"LOC110121242","entrezGeneId":110121242},{"hugoGeneSymbol":"LOC110121243","entrezGeneId":110121243},{"hugoGeneSymbol":"LOC110121244","entrezGeneId":110121244},{"hugoGeneSymbol":"LOC110121245","entrezGeneId":110121245},{"hugoGeneSymbol":"LOC110121246","entrezGeneId":110121246},{"hugoGeneSymbol":"LOC110121247","entrezGeneId":110121247},{"hugoGeneSymbol":"LOC110121248","entrezGeneId":110121248},{"hugoGeneSymbol":"LOC110121249","entrezGeneId":110121249},{"hugoGeneSymbol":"LOC110121250","entrezGeneId":110121250},{"hugoGeneSymbol":"LOC110121251","entrezGeneId":110121251},{"hugoGeneSymbol":"LOC110121252","entrezGeneId":110121252},{"hugoGeneSymbol":"LOC110121253","entrezGeneId":110121253},{"hugoGeneSymbol":"LOC110121254","entrezGeneId":110121254},{"hugoGeneSymbol":"LOC110121255","entrezGeneId":110121255},{"hugoGeneSymbol":"LOC110121256","entrezGeneId":110121256},{"hugoGeneSymbol":"LOC110121257","entrezGeneId":110121257},{"hugoGeneSymbol":"LOC110121258","entrezGeneId":110121258},{"hugoGeneSymbol":"LOC110121259","entrezGeneId":110121259},{"hugoGeneSymbol":"LOC110121260","entrezGeneId":110121260},{"hugoGeneSymbol":"LOC110121261","entrezGeneId":110121261},{"hugoGeneSymbol":"LOC110121262","entrezGeneId":110121262},{"hugoGeneSymbol":"LOC110121263","entrezGeneId":110121263},{"hugoGeneSymbol":"LOC110121264","entrezGeneId":110121264},{"hugoGeneSymbol":"LOC110121265","entrezGeneId":110121265},{"hugoGeneSymbol":"LOC110121266","entrezGeneId":110121266},{"hugoGeneSymbol":"LOC110121267","entrezGeneId":110121267},{"hugoGeneSymbol":"LOC110121268","entrezGeneId":110121268},{"hugoGeneSymbol":"LOC110121269","entrezGeneId":110121269},{"hugoGeneSymbol":"LOC110121270","entrezGeneId":110121270},{"hugoGeneSymbol":"LOC110121271","entrezGeneId":110121271},{"hugoGeneSymbol":"LOC110121272","entrezGeneId":110121272},{"hugoGeneSymbol":"LOC110121273","entrezGeneId":110121273},{"hugoGeneSymbol":"LOC110121274","entrezGeneId":110121274},{"hugoGeneSymbol":"LOC110121275","entrezGeneId":110121275},{"hugoGeneSymbol":"LOC110121276","entrezGeneId":110121276},{"hugoGeneSymbol":"LOC110121277","entrezGeneId":110121277},{"hugoGeneSymbol":"LOC110121278","entrezGeneId":110121278},{"hugoGeneSymbol":"LOC110121279","entrezGeneId":110121279},{"hugoGeneSymbol":"LOC110121280","entrezGeneId":110121280},{"hugoGeneSymbol":"LOC110121281","entrezGeneId":110121281},{"hugoGeneSymbol":"LOC110121282","entrezGeneId":110121282},{"hugoGeneSymbol":"LOC110121283","entrezGeneId":110121283},{"hugoGeneSymbol":"LOC110121284","entrezGeneId":110121284},{"hugoGeneSymbol":"LOC110121285","entrezGeneId":110121285},{"hugoGeneSymbol":"LOC110121286","entrezGeneId":110121286},{"hugoGeneSymbol":"LOC110121287","entrezGeneId":110121287},{"hugoGeneSymbol":"LOC110121288","entrezGeneId":110121288},{"hugoGeneSymbol":"LOC110121289","entrezGeneId":110121289},{"hugoGeneSymbol":"LOC110121290","entrezGeneId":110121290},{"hugoGeneSymbol":"LOC110121291","entrezGeneId":110121291},{"hugoGeneSymbol":"LOC110121292","entrezGeneId":110121292},{"hugoGeneSymbol":"LOC110121293","entrezGeneId":110121293},{"hugoGeneSymbol":"LOC110121294","entrezGeneId":110121294},{"hugoGeneSymbol":"LOC110121295","entrezGeneId":110121295},{"hugoGeneSymbol":"LOC110121296","entrezGeneId":110121296},{"hugoGeneSymbol":"LOC110121297","entrezGeneId":110121297},{"hugoGeneSymbol":"LOC110121298","entrezGeneId":110121298},{"hugoGeneSymbol":"LOC110121299","entrezGeneId":110121299},{"hugoGeneSymbol":"LOC110121300","entrezGeneId":110121300},{"hugoGeneSymbol":"LOC110121301","entrezGeneId":110121301},{"hugoGeneSymbol":"LOC110121302","entrezGeneId":110121302},{"hugoGeneSymbol":"LOC110121303","entrezGeneId":110121303},{"hugoGeneSymbol":"LOC110121304","entrezGeneId":110121304},{"hugoGeneSymbol":"LOC110121305","entrezGeneId":110121305},{"hugoGeneSymbol":"LOC110121306","entrezGeneId":110121306},{"hugoGeneSymbol":"LOC110121307","entrezGeneId":110121307},{"hugoGeneSymbol":"LOC110121308","entrezGeneId":110121308},{"hugoGeneSymbol":"LOC110121309","entrezGeneId":110121309},{"hugoGeneSymbol":"LOC110121310","entrezGeneId":110121310},{"hugoGeneSymbol":"LOC110121311","entrezGeneId":110121311},{"hugoGeneSymbol":"LOC110121312","entrezGeneId":110121312},{"hugoGeneSymbol":"LOC110121313","entrezGeneId":110121313},{"hugoGeneSymbol":"LOC110121314","entrezGeneId":110121314},{"hugoGeneSymbol":"LOC110121315","entrezGeneId":110121315},{"hugoGeneSymbol":"LOC110121317","entrezGeneId":110121317},{"hugoGeneSymbol":"LOC110121318","entrezGeneId":110121318},{"hugoGeneSymbol":"LOC110121319","entrezGeneId":110121319},{"hugoGeneSymbol":"LOC110121321","entrezGeneId":110121321},{"hugoGeneSymbol":"LOC110121322","entrezGeneId":110121322},{"hugoGeneSymbol":"LOC110121323","entrezGeneId":110121323},{"hugoGeneSymbol":"LOC110121324","entrezGeneId":110121324},{"hugoGeneSymbol":"LOC110121325","entrezGeneId":110121325},{"hugoGeneSymbol":"LOC110121326","entrezGeneId":110121326},{"hugoGeneSymbol":"LOC110121327","entrezGeneId":110121327},{"hugoGeneSymbol":"LOC110121328","entrezGeneId":110121328},{"hugoGeneSymbol":"LOC110121329","entrezGeneId":110121329},{"hugoGeneSymbol":"LOC110121330","entrezGeneId":110121330},{"hugoGeneSymbol":"LOC110121331","entrezGeneId":110121331},{"hugoGeneSymbol":"LOC110121332","entrezGeneId":110121332},{"hugoGeneSymbol":"LOC110121333","entrezGeneId":110121333},{"hugoGeneSymbol":"LOC110121334","entrezGeneId":110121334},{"hugoGeneSymbol":"LOC110121335","entrezGeneId":110121335},{"hugoGeneSymbol":"LOC110121336","entrezGeneId":110121336},{"hugoGeneSymbol":"LOC110121337","entrezGeneId":110121337},{"hugoGeneSymbol":"LOC110121338","entrezGeneId":110121338},{"hugoGeneSymbol":"LOC110121339","entrezGeneId":110121339},{"hugoGeneSymbol":"LOC110121340","entrezGeneId":110121340},{"hugoGeneSymbol":"LOC110121341","entrezGeneId":110121341},{"hugoGeneSymbol":"LOC110121342","entrezGeneId":110121342},{"hugoGeneSymbol":"LOC110121343","entrezGeneId":110121343},{"hugoGeneSymbol":"LOC110121344","entrezGeneId":110121344},{"hugoGeneSymbol":"LOC110121345","entrezGeneId":110121345},{"hugoGeneSymbol":"LOC110121346","entrezGeneId":110121346},{"hugoGeneSymbol":"LOC110121347","entrezGeneId":110121347},{"hugoGeneSymbol":"LOC110121348","entrezGeneId":110121348},{"hugoGeneSymbol":"LOC110121349","entrezGeneId":110121349},{"hugoGeneSymbol":"LOC110121350","entrezGeneId":110121350},{"hugoGeneSymbol":"LOC110121352","entrezGeneId":110121352},{"hugoGeneSymbol":"LOC110121353","entrezGeneId":110121353},{"hugoGeneSymbol":"LOC110121354","entrezGeneId":110121354},{"hugoGeneSymbol":"LOC110121355","entrezGeneId":110121355},{"hugoGeneSymbol":"LOC110121356","entrezGeneId":110121356},{"hugoGeneSymbol":"LOC110121357","entrezGeneId":110121357},{"hugoGeneSymbol":"LOC110121358","entrezGeneId":110121358},{"hugoGeneSymbol":"LOC110121359","entrezGeneId":110121359},{"hugoGeneSymbol":"LOC110121360","entrezGeneId":110121360},{"hugoGeneSymbol":"LOC110121361","entrezGeneId":110121361},{"hugoGeneSymbol":"LOC110121362","entrezGeneId":110121362},{"hugoGeneSymbol":"LOC110121363","entrezGeneId":110121363},{"hugoGeneSymbol":"LOC110121364","entrezGeneId":110121364},{"hugoGeneSymbol":"LOC110121365","entrezGeneId":110121365},{"hugoGeneSymbol":"LOC110121366","entrezGeneId":110121366},{"hugoGeneSymbol":"LOC110121367","entrezGeneId":110121367},{"hugoGeneSymbol":"LOC110121368","entrezGeneId":110121368},{"hugoGeneSymbol":"LOC110121369","entrezGeneId":110121369},{"hugoGeneSymbol":"LOC110121370","entrezGeneId":110121370},{"hugoGeneSymbol":"LOC110121371","entrezGeneId":110121371},{"hugoGeneSymbol":"LOC110121372","entrezGeneId":110121372},{"hugoGeneSymbol":"LOC110121373","entrezGeneId":110121373},{"hugoGeneSymbol":"LOC110121374","entrezGeneId":110121374},{"hugoGeneSymbol":"LOC110121375","entrezGeneId":110121375},{"hugoGeneSymbol":"LOC110121376","entrezGeneId":110121376},{"hugoGeneSymbol":"LOC110121377","entrezGeneId":110121377},{"hugoGeneSymbol":"LOC110121378","entrezGeneId":110121378},{"hugoGeneSymbol":"LOC110121379","entrezGeneId":110121379},{"hugoGeneSymbol":"LOC110121380","entrezGeneId":110121380},{"hugoGeneSymbol":"LOC110121381","entrezGeneId":110121381},{"hugoGeneSymbol":"LOC110121382","entrezGeneId":110121382},{"hugoGeneSymbol":"LOC110121383","entrezGeneId":110121383},{"hugoGeneSymbol":"LOC110121384","entrezGeneId":110121384},{"hugoGeneSymbol":"LOC110121385","entrezGeneId":110121385},{"hugoGeneSymbol":"LOC110121386","entrezGeneId":110121386},{"hugoGeneSymbol":"LOC110121388","entrezGeneId":110121388},{"hugoGeneSymbol":"LOC110121389","entrezGeneId":110121389},{"hugoGeneSymbol":"LOC110121390","entrezGeneId":110121390},{"hugoGeneSymbol":"LOC110121391","entrezGeneId":110121391},{"hugoGeneSymbol":"LOC110121392","entrezGeneId":110121392},{"hugoGeneSymbol":"LOC110121394","entrezGeneId":110121394},{"hugoGeneSymbol":"LOC110121395","entrezGeneId":110121395},{"hugoGeneSymbol":"LOC110121396","entrezGeneId":110121396},{"hugoGeneSymbol":"LOC110121397","entrezGeneId":110121397},{"hugoGeneSymbol":"LOC110121398","entrezGeneId":110121398},{"hugoGeneSymbol":"LOC110121399","entrezGeneId":110121399},{"hugoGeneSymbol":"LOC110121400","entrezGeneId":110121400},{"hugoGeneSymbol":"LOC110121401","entrezGeneId":110121401},{"hugoGeneSymbol":"LOC110121402","entrezGeneId":110121402},{"hugoGeneSymbol":"LOC110121403","entrezGeneId":110121403},{"hugoGeneSymbol":"LOC110121404","entrezGeneId":110121404},{"hugoGeneSymbol":"LOC110121405","entrezGeneId":110121405},{"hugoGeneSymbol":"LOC110121406","entrezGeneId":110121406},{"hugoGeneSymbol":"LOC110121407","entrezGeneId":110121407},{"hugoGeneSymbol":"LOC110121408","entrezGeneId":110121408},{"hugoGeneSymbol":"LOC110121409","entrezGeneId":110121409},{"hugoGeneSymbol":"LOC110121410","entrezGeneId":110121410},{"hugoGeneSymbol":"LOC110121411","entrezGeneId":110121411},{"hugoGeneSymbol":"LOC110121412","entrezGeneId":110121412},{"hugoGeneSymbol":"LOC110121413","entrezGeneId":110121413},{"hugoGeneSymbol":"LOC110121414","entrezGeneId":110121414},{"hugoGeneSymbol":"LOC110121415","entrezGeneId":110121415},{"hugoGeneSymbol":"LOC110121416","entrezGeneId":110121416},{"hugoGeneSymbol":"LOC110121417","entrezGeneId":110121417},{"hugoGeneSymbol":"LOC110121418","entrezGeneId":110121418},{"hugoGeneSymbol":"LOC110121419","entrezGeneId":110121419},{"hugoGeneSymbol":"LOC110121420","entrezGeneId":110121420},{"hugoGeneSymbol":"LOC110121421","entrezGeneId":110121421},{"hugoGeneSymbol":"LOC110121422","entrezGeneId":110121422},{"hugoGeneSymbol":"LOC110121423","entrezGeneId":110121423},{"hugoGeneSymbol":"LOC110121424","entrezGeneId":110121424},{"hugoGeneSymbol":"LOC110121425","entrezGeneId":110121425},{"hugoGeneSymbol":"LOC110121426","entrezGeneId":110121426},{"hugoGeneSymbol":"LOC110121427","entrezGeneId":110121427},{"hugoGeneSymbol":"LOC110121428","entrezGeneId":110121428},{"hugoGeneSymbol":"LOC110121429","entrezGeneId":110121429},{"hugoGeneSymbol":"LOC110121430","entrezGeneId":110121430},{"hugoGeneSymbol":"LOC110121431","entrezGeneId":110121431},{"hugoGeneSymbol":"LOC110121433","entrezGeneId":110121433},{"hugoGeneSymbol":"LOC110121434","entrezGeneId":110121434},{"hugoGeneSymbol":"LOC110121435","entrezGeneId":110121435},{"hugoGeneSymbol":"LOC110121436","entrezGeneId":110121436},{"hugoGeneSymbol":"LOC110121437","entrezGeneId":110121437},{"hugoGeneSymbol":"LOC110121438","entrezGeneId":110121438},{"hugoGeneSymbol":"LOC110121439","entrezGeneId":110121439},{"hugoGeneSymbol":"LOC110121440","entrezGeneId":110121440},{"hugoGeneSymbol":"LOC110121441","entrezGeneId":110121441},{"hugoGeneSymbol":"LOC110121442","entrezGeneId":110121442},{"hugoGeneSymbol":"LOC110121443","entrezGeneId":110121443},{"hugoGeneSymbol":"LOC110121444","entrezGeneId":110121444},{"hugoGeneSymbol":"LOC110121445","entrezGeneId":110121445},{"hugoGeneSymbol":"LOC110121446","entrezGeneId":110121446},{"hugoGeneSymbol":"LOC110121447","entrezGeneId":110121447},{"hugoGeneSymbol":"LOC110121448","entrezGeneId":110121448},{"hugoGeneSymbol":"LOC110121449","entrezGeneId":110121449},{"hugoGeneSymbol":"LOC110121450","entrezGeneId":110121450},{"hugoGeneSymbol":"LOC110121451","entrezGeneId":110121451},{"hugoGeneSymbol":"LOC110121452","entrezGeneId":110121452},{"hugoGeneSymbol":"LOC110121453","entrezGeneId":110121453},{"hugoGeneSymbol":"LOC110121454","entrezGeneId":110121454},{"hugoGeneSymbol":"LOC110121455","entrezGeneId":110121455},{"hugoGeneSymbol":"LOC110121456","entrezGeneId":110121456},{"hugoGeneSymbol":"LOC110121457","entrezGeneId":110121457},{"hugoGeneSymbol":"LOC110121458","entrezGeneId":110121458},{"hugoGeneSymbol":"LOC110121459","entrezGeneId":110121459},{"hugoGeneSymbol":"LOC110121460","entrezGeneId":110121460},{"hugoGeneSymbol":"LOC110121461","entrezGeneId":110121461},{"hugoGeneSymbol":"LOC110121462","entrezGeneId":110121462},{"hugoGeneSymbol":"LOC110121463","entrezGeneId":110121463},{"hugoGeneSymbol":"LOC110121464","entrezGeneId":110121464},{"hugoGeneSymbol":"LOC110121465","entrezGeneId":110121465},{"hugoGeneSymbol":"LOC110121466","entrezGeneId":110121466},{"hugoGeneSymbol":"LOC110121467","entrezGeneId":110121467},{"hugoGeneSymbol":"LOC110121468","entrezGeneId":110121468},{"hugoGeneSymbol":"LOC110121469","entrezGeneId":110121469},{"hugoGeneSymbol":"LOC110121470","entrezGeneId":110121470},{"hugoGeneSymbol":"LOC110121471","entrezGeneId":110121471},{"hugoGeneSymbol":"LOC110121472","entrezGeneId":110121472},{"hugoGeneSymbol":"LOC110121473","entrezGeneId":110121473},{"hugoGeneSymbol":"LOC110121474","entrezGeneId":110121474},{"hugoGeneSymbol":"LOC110121475","entrezGeneId":110121475},{"hugoGeneSymbol":"LOC110121476","entrezGeneId":110121476},{"hugoGeneSymbol":"LOC110121477","entrezGeneId":110121477},{"hugoGeneSymbol":"LOC110121478","entrezGeneId":110121478},{"hugoGeneSymbol":"LOC110121479","entrezGeneId":110121479},{"hugoGeneSymbol":"LOC110121480","entrezGeneId":110121480},{"hugoGeneSymbol":"LOC110121481","entrezGeneId":110121481},{"hugoGeneSymbol":"LOC110121482","entrezGeneId":110121482},{"hugoGeneSymbol":"LOC110121483","entrezGeneId":110121483},{"hugoGeneSymbol":"LOC110121484","entrezGeneId":110121484},{"hugoGeneSymbol":"LOC110121485","entrezGeneId":110121485},{"hugoGeneSymbol":"LOC110121486","entrezGeneId":110121486},{"hugoGeneSymbol":"LOC110121487","entrezGeneId":110121487},{"hugoGeneSymbol":"LOC110121488","entrezGeneId":110121488},{"hugoGeneSymbol":"LOC110121489","entrezGeneId":110121489},{"hugoGeneSymbol":"LOC110121490","entrezGeneId":110121490},{"hugoGeneSymbol":"LOC110121491","entrezGeneId":110121491},{"hugoGeneSymbol":"LOC110121492","entrezGeneId":110121492},{"hugoGeneSymbol":"LOC110121493","entrezGeneId":110121493},{"hugoGeneSymbol":"LOC110121494","entrezGeneId":110121494},{"hugoGeneSymbol":"LOC110121495","entrezGeneId":110121495},{"hugoGeneSymbol":"LOC110121496","entrezGeneId":110121496},{"hugoGeneSymbol":"LOC110121497","entrezGeneId":110121497},{"hugoGeneSymbol":"LOC110121498","entrezGeneId":110121498},{"hugoGeneSymbol":"LOC110121499","entrezGeneId":110121499},{"hugoGeneSymbol":"LOC110121500","entrezGeneId":110121500},{"hugoGeneSymbol":"LOC110121501","entrezGeneId":110121501},{"hugoGeneSymbol":"LOC110121502","entrezGeneId":110121502},{"hugoGeneSymbol":"LOC110121503","entrezGeneId":110121503},{"hugoGeneSymbol":"LOC110121504","entrezGeneId":110121504},{"hugoGeneSymbol":"LOC110121505","entrezGeneId":110121505},{"hugoGeneSymbol":"LOC110121506","entrezGeneId":110121506},{"hugoGeneSymbol":"LOC110121507","entrezGeneId":110121507},{"hugoGeneSymbol":"LOC110262331","entrezGeneId":110262331},{"hugoGeneSymbol":"LOC110283621","entrezGeneId":110283621},{"hugoGeneSymbol":"LOC110351180","entrezGeneId":110351180},{"hugoGeneSymbol":"LOC110366354","entrezGeneId":110366354},{"hugoGeneSymbol":"LOC110366355","entrezGeneId":110366355},{"hugoGeneSymbol":"LOC110384692","entrezGeneId":110384692},{"hugoGeneSymbol":"LOC110386947","entrezGeneId":110386947},{"hugoGeneSymbol":"LOC110386948","entrezGeneId":110386948},{"hugoGeneSymbol":"LOC110386949","entrezGeneId":110386949},{"hugoGeneSymbol":"LOC110386951","entrezGeneId":110386951},{"hugoGeneSymbol":"LOC110408762","entrezGeneId":110408762},{"hugoGeneSymbol":"LOC110467515","entrezGeneId":110467515},{"hugoGeneSymbol":"LOC110467516","entrezGeneId":110467516},{"hugoGeneSymbol":"LOC110467517","entrezGeneId":110467517},{"hugoGeneSymbol":"LOC110485084","entrezGeneId":110485084},{"hugoGeneSymbol":"LOC110485085","entrezGeneId":110485085},{"hugoGeneSymbol":"LOC110594336","entrezGeneId":110594336},{"hugoGeneSymbol":"LOC110594337","entrezGeneId":110594337},{"hugoGeneSymbol":"LOC110596863","entrezGeneId":110596863},{"hugoGeneSymbol":"LOC110596865","entrezGeneId":110596865},{"hugoGeneSymbol":"LOC110596866","entrezGeneId":110596866},{"hugoGeneSymbol":"LOC110596867","entrezGeneId":110596867},{"hugoGeneSymbol":"LOC110599562","entrezGeneId":110599562},{"hugoGeneSymbol":"LOC110599567","entrezGeneId":110599567},{"hugoGeneSymbol":"LOC110599568","entrezGeneId":110599568},{"hugoGeneSymbol":"LOC110599569","entrezGeneId":110599569},{"hugoGeneSymbol":"LOC110599570","entrezGeneId":110599570},{"hugoGeneSymbol":"LOC110599571","entrezGeneId":110599571},{"hugoGeneSymbol":"LOC110599572","entrezGeneId":110599572},{"hugoGeneSymbol":"LOC110599575","entrezGeneId":110599575},{"hugoGeneSymbol":"LOC110599576","entrezGeneId":110599576},{"hugoGeneSymbol":"LOC110599577","entrezGeneId":110599577},{"hugoGeneSymbol":"LOC110599578","entrezGeneId":110599578},{"hugoGeneSymbol":"LOC110599579","entrezGeneId":110599579},{"hugoGeneSymbol":"LOC110599580","entrezGeneId":110599580},{"hugoGeneSymbol":"LOC110599582","entrezGeneId":110599582},{"hugoGeneSymbol":"LOC110599585","entrezGeneId":110599585},{"hugoGeneSymbol":"LOC110599586","entrezGeneId":110599586},{"hugoGeneSymbol":"LOC110599591","entrezGeneId":110599591},{"hugoGeneSymbol":"LOC110599592","entrezGeneId":110599592},{"hugoGeneSymbol":"LOC110631417","entrezGeneId":110631417},{"hugoGeneSymbol":"LOC110673971","entrezGeneId":110673971},{"hugoGeneSymbol":"LOC110673972","entrezGeneId":110673972},{"hugoGeneSymbol":"LOC110673974","entrezGeneId":110673974},{"hugoGeneSymbol":"LOC110740340","entrezGeneId":110740340},{"hugoGeneSymbol":"LOC110740341","entrezGeneId":110740341},{"hugoGeneSymbol":"LOC110806262","entrezGeneId":110806262},{"hugoGeneSymbol":"LOC110806263","entrezGeneId":110806263},{"hugoGeneSymbol":"LOC110806264","entrezGeneId":110806264},{"hugoGeneSymbol":"LOC110806306","entrezGeneId":110806306},{"hugoGeneSymbol":"LOC110973015","entrezGeneId":110973015},{"hugoGeneSymbol":"LOC111089942","entrezGeneId":111089942},{"hugoGeneSymbol":"LOC111089944","entrezGeneId":111089944},{"hugoGeneSymbol":"LOC111089946","entrezGeneId":111089946},{"hugoGeneSymbol":"LOC111089947","entrezGeneId":111089947},{"hugoGeneSymbol":"LOC111099027","entrezGeneId":111099027},{"hugoGeneSymbol":"LOC111099028","entrezGeneId":111099028},{"hugoGeneSymbol":"LOC111162620","entrezGeneId":111162620},{"hugoGeneSymbol":"LOC111162621","entrezGeneId":111162621},{"hugoGeneSymbol":"LOC111188152","entrezGeneId":111188152},{"hugoGeneSymbol":"LOC111188153","entrezGeneId":111188153},{"hugoGeneSymbol":"LOC111188154","entrezGeneId":111188154},{"hugoGeneSymbol":"LOC111188156","entrezGeneId":111188156},{"hugoGeneSymbol":"LOC111188158","entrezGeneId":111188158},{"hugoGeneSymbol":"LOC111188159","entrezGeneId":111188159},{"hugoGeneSymbol":"LOC111188161","entrezGeneId":111188161},{"hugoGeneSymbol":"LOC111188163","entrezGeneId":111188163},{"hugoGeneSymbol":"LOC111188164","entrezGeneId":111188164},{"hugoGeneSymbol":"LOC111216272","entrezGeneId":111216272},{"hugoGeneSymbol":"LOC111216273","entrezGeneId":111216273},{"hugoGeneSymbol":"LOC111216288","entrezGeneId":111216288},{"hugoGeneSymbol":"LOC111216289","entrezGeneId":111216289},{"hugoGeneSymbol":"LOC111216290","entrezGeneId":111216290},{"hugoGeneSymbol":"LOC111216291","entrezGeneId":111216291},{"hugoGeneSymbol":"LOC111216292","entrezGeneId":111216292},{"hugoGeneSymbol":"LOC111240471","entrezGeneId":111240471},{"hugoGeneSymbol":"LOC111240475","entrezGeneId":111240475},{"hugoGeneSymbol":"LOC111240478","entrezGeneId":111240478},{"hugoGeneSymbol":"LOC111240479","entrezGeneId":111240479},{"hugoGeneSymbol":"LOC111242783","entrezGeneId":111242783},{"hugoGeneSymbol":"LOC111242785","entrezGeneId":111242785},{"hugoGeneSymbol":"LOC111242786","entrezGeneId":111242786},{"hugoGeneSymbol":"LOC111255642","entrezGeneId":111255642},{"hugoGeneSymbol":"LOC111255645","entrezGeneId":111255645},{"hugoGeneSymbol":"LOC111255649","entrezGeneId":111255649},{"hugoGeneSymbol":"LOC111258501","entrezGeneId":111258501},{"hugoGeneSymbol":"LOC111258509","entrezGeneId":111258509},{"hugoGeneSymbol":"LOC111258516","entrezGeneId":111258516},{"hugoGeneSymbol":"LOC111258517","entrezGeneId":111258517},{"hugoGeneSymbol":"LOC111258518","entrezGeneId":111258518},{"hugoGeneSymbol":"LOC111258520","entrezGeneId":111258520},{"hugoGeneSymbol":"LOC111258525","entrezGeneId":111258525},{"hugoGeneSymbol":"LOC111258526","entrezGeneId":111258526},{"hugoGeneSymbol":"LOC111365141","entrezGeneId":111365141},{"hugoGeneSymbol":"LOC111365143","entrezGeneId":111365143},{"hugoGeneSymbol":"LOC111365145","entrezGeneId":111365145},{"hugoGeneSymbol":"LOC111365146","entrezGeneId":111365146},{"hugoGeneSymbol":"LOC111365148","entrezGeneId":111365148},{"hugoGeneSymbol":"LOC111365149","entrezGeneId":111365149},{"hugoGeneSymbol":"LOC111365150","entrezGeneId":111365150},{"hugoGeneSymbol":"LOC111365151","entrezGeneId":111365151},{"hugoGeneSymbol":"LOC111365152","entrezGeneId":111365152},{"hugoGeneSymbol":"LOC111365153","entrezGeneId":111365153},{"hugoGeneSymbol":"LOC111365154","entrezGeneId":111365154},{"hugoGeneSymbol":"LOC111365155","entrezGeneId":111365155},{"hugoGeneSymbol":"LOC111365156","entrezGeneId":111365156},{"hugoGeneSymbol":"LOC111365157","entrezGeneId":111365157},{"hugoGeneSymbol":"LOC111365158","entrezGeneId":111365158},{"hugoGeneSymbol":"LOC111365159","entrezGeneId":111365159},{"hugoGeneSymbol":"LOC111365160","entrezGeneId":111365160},{"hugoGeneSymbol":"LOC111365161","entrezGeneId":111365161},{"hugoGeneSymbol":"LOC111365162","entrezGeneId":111365162},{"hugoGeneSymbol":"LOC111365163","entrezGeneId":111365163},{"hugoGeneSymbol":"LOC111365164","entrezGeneId":111365164},{"hugoGeneSymbol":"LOC111365165","entrezGeneId":111365165},{"hugoGeneSymbol":"LOC111365166","entrezGeneId":111365166},{"hugoGeneSymbol":"LOC111365167","entrezGeneId":111365167},{"hugoGeneSymbol":"LOC111365168","entrezGeneId":111365168},{"hugoGeneSymbol":"LOC111365169","entrezGeneId":111365169},{"hugoGeneSymbol":"LOC111365170","entrezGeneId":111365170},{"hugoGeneSymbol":"LOC111365171","entrezGeneId":111365171},{"hugoGeneSymbol":"LOC111365172","entrezGeneId":111365172},{"hugoGeneSymbol":"LOC111365173","entrezGeneId":111365173},{"hugoGeneSymbol":"LOC111365174","entrezGeneId":111365174},{"hugoGeneSymbol":"LOC111365175","entrezGeneId":111365175},{"hugoGeneSymbol":"LOC111365176","entrezGeneId":111365176},{"hugoGeneSymbol":"LOC111365177","entrezGeneId":111365177},{"hugoGeneSymbol":"LOC111365178","entrezGeneId":111365178},{"hugoGeneSymbol":"LOC111365179","entrezGeneId":111365179},{"hugoGeneSymbol":"LOC111365180","entrezGeneId":111365180},{"hugoGeneSymbol":"LOC111365181","entrezGeneId":111365181},{"hugoGeneSymbol":"LOC111365182","entrezGeneId":111365182},{"hugoGeneSymbol":"LOC111365183","entrezGeneId":111365183},{"hugoGeneSymbol":"LOC111365184","entrezGeneId":111365184},{"hugoGeneSymbol":"LOC111365185","entrezGeneId":111365185},{"hugoGeneSymbol":"LOC111365186","entrezGeneId":111365186},{"hugoGeneSymbol":"LOC111365187","entrezGeneId":111365187},{"hugoGeneSymbol":"LOC111365188","entrezGeneId":111365188},{"hugoGeneSymbol":"LOC111365189","entrezGeneId":111365189},{"hugoGeneSymbol":"LOC111365190","entrezGeneId":111365190},{"hugoGeneSymbol":"LOC111365191","entrezGeneId":111365191},{"hugoGeneSymbol":"LOC111365192","entrezGeneId":111365192},{"hugoGeneSymbol":"LOC111365193","entrezGeneId":111365193},{"hugoGeneSymbol":"LOC111365194","entrezGeneId":111365194},{"hugoGeneSymbol":"LOC111365195","entrezGeneId":111365195},{"hugoGeneSymbol":"LOC111365196","entrezGeneId":111365196},{"hugoGeneSymbol":"LOC111365197","entrezGeneId":111365197},{"hugoGeneSymbol":"LOC111365198","entrezGeneId":111365198},{"hugoGeneSymbol":"LOC111365199","entrezGeneId":111365199},{"hugoGeneSymbol":"LOC111365200","entrezGeneId":111365200},{"hugoGeneSymbol":"LOC111365201","entrezGeneId":111365201},{"hugoGeneSymbol":"LOC111365202","entrezGeneId":111365202},{"hugoGeneSymbol":"LOC111365204","entrezGeneId":111365204},{"hugoGeneSymbol":"LOC111365205","entrezGeneId":111365205},{"hugoGeneSymbol":"LOC111365206","entrezGeneId":111365206},{"hugoGeneSymbol":"LOC111365207","entrezGeneId":111365207},{"hugoGeneSymbol":"LOC111365208","entrezGeneId":111365208},{"hugoGeneSymbol":"LOC111365210","entrezGeneId":111365210},{"hugoGeneSymbol":"LOC111365211","entrezGeneId":111365211},{"hugoGeneSymbol":"LOC111365212","entrezGeneId":111365212},{"hugoGeneSymbol":"LOC111365213","entrezGeneId":111365213},{"hugoGeneSymbol":"LOC111365214","entrezGeneId":111365214},{"hugoGeneSymbol":"LOC111365215","entrezGeneId":111365215},{"hugoGeneSymbol":"LOC111365216","entrezGeneId":111365216},{"hugoGeneSymbol":"LOC111365217","entrezGeneId":111365217},{"hugoGeneSymbol":"LOC111365218","entrezGeneId":111365218},{"hugoGeneSymbol":"LOC111365219","entrezGeneId":111365219},{"hugoGeneSymbol":"LOC111365221","entrezGeneId":111365221},{"hugoGeneSymbol":"LOC111365223","entrezGeneId":111365223},{"hugoGeneSymbol":"LOC111365225","entrezGeneId":111365225},{"hugoGeneSymbol":"LOC111365226","entrezGeneId":111365226},{"hugoGeneSymbol":"LOC111413008","entrezGeneId":111413008},{"hugoGeneSymbol":"LOC111413009","entrezGeneId":111413009},{"hugoGeneSymbol":"LOC111413010","entrezGeneId":111413010},{"hugoGeneSymbol":"LOC111413011","entrezGeneId":111413011},{"hugoGeneSymbol":"LOC111413012","entrezGeneId":111413012},{"hugoGeneSymbol":"LOC111413013","entrezGeneId":111413013},{"hugoGeneSymbol":"LOC111413014","entrezGeneId":111413014},{"hugoGeneSymbol":"LOC111413015","entrezGeneId":111413015},{"hugoGeneSymbol":"LOC111413016","entrezGeneId":111413016},{"hugoGeneSymbol":"LOC111413017","entrezGeneId":111413017},{"hugoGeneSymbol":"LOC111413018","entrezGeneId":111413018},{"hugoGeneSymbol":"LOC111413020","entrezGeneId":111413020},{"hugoGeneSymbol":"LOC111413021","entrezGeneId":111413021},{"hugoGeneSymbol":"LOC111413022","entrezGeneId":111413022},{"hugoGeneSymbol":"LOC111413023","entrezGeneId":111413023},{"hugoGeneSymbol":"LOC111413024","entrezGeneId":111413024},{"hugoGeneSymbol":"LOC111413025","entrezGeneId":111413025},{"hugoGeneSymbol":"LOC111413027","entrezGeneId":111413027},{"hugoGeneSymbol":"LOC111413028","entrezGeneId":111413028},{"hugoGeneSymbol":"LOC111413029","entrezGeneId":111413029},{"hugoGeneSymbol":"LOC111413030","entrezGeneId":111413030},{"hugoGeneSymbol":"LOC111413032","entrezGeneId":111413032},{"hugoGeneSymbol":"LOC111413033","entrezGeneId":111413033},{"hugoGeneSymbol":"LOC111413034","entrezGeneId":111413034},{"hugoGeneSymbol":"LOC111413035","entrezGeneId":111413035},{"hugoGeneSymbol":"LOC111413036","entrezGeneId":111413036},{"hugoGeneSymbol":"LOC111413037","entrezGeneId":111413037},{"hugoGeneSymbol":"LOC111413038","entrezGeneId":111413038},{"hugoGeneSymbol":"LOC111413039","entrezGeneId":111413039},{"hugoGeneSymbol":"LOC111413040","entrezGeneId":111413040},{"hugoGeneSymbol":"LOC111413041","entrezGeneId":111413041},{"hugoGeneSymbol":"LOC111413042","entrezGeneId":111413042},{"hugoGeneSymbol":"LOC111413043","entrezGeneId":111413043},{"hugoGeneSymbol":"LOC111413044","entrezGeneId":111413044},{"hugoGeneSymbol":"LOC111413045","entrezGeneId":111413045},{"hugoGeneSymbol":"LOC111413046","entrezGeneId":111413046},{"hugoGeneSymbol":"LOC111413047","entrezGeneId":111413047},{"hugoGeneSymbol":"LOC111413048","entrezGeneId":111413048},{"hugoGeneSymbol":"LOC111429603","entrezGeneId":111429603},{"hugoGeneSymbol":"LOC111429604","entrezGeneId":111429604},{"hugoGeneSymbol":"LOC111429606","entrezGeneId":111429606},{"hugoGeneSymbol":"LOC111429607","entrezGeneId":111429607},{"hugoGeneSymbol":"LOC111429608","entrezGeneId":111429608},{"hugoGeneSymbol":"LOC111429610","entrezGeneId":111429610},{"hugoGeneSymbol":"LOC111429611","entrezGeneId":111429611},{"hugoGeneSymbol":"LOC111429612","entrezGeneId":111429612},{"hugoGeneSymbol":"LOC111429613","entrezGeneId":111429613},{"hugoGeneSymbol":"LOC111429614","entrezGeneId":111429614},{"hugoGeneSymbol":"LOC111429615","entrezGeneId":111429615},{"hugoGeneSymbol":"LOC111429617","entrezGeneId":111429617},{"hugoGeneSymbol":"LOC111429618","entrezGeneId":111429618},{"hugoGeneSymbol":"LOC111429620","entrezGeneId":111429620},{"hugoGeneSymbol":"LOC111429622","entrezGeneId":111429622},{"hugoGeneSymbol":"LOC111429623","entrezGeneId":111429623},{"hugoGeneSymbol":"LOC111429625","entrezGeneId":111429625},{"hugoGeneSymbol":"LOC111429626","entrezGeneId":111429626},{"hugoGeneSymbol":"LOC111429628","entrezGeneId":111429628},{"hugoGeneSymbol":"LOC111429629","entrezGeneId":111429629},{"hugoGeneSymbol":"LOC111464985","entrezGeneId":111464985},{"hugoGeneSymbol":"LOC111464986","entrezGeneId":111464986},{"hugoGeneSymbol":"LOC111464987","entrezGeneId":111464987},{"hugoGeneSymbol":"LOC111464988","entrezGeneId":111464988},{"hugoGeneSymbol":"LOC111464990","entrezGeneId":111464990},{"hugoGeneSymbol":"LOC111464991","entrezGeneId":111464991},{"hugoGeneSymbol":"LOC111464992","entrezGeneId":111464992},{"hugoGeneSymbol":"LOC111464993","entrezGeneId":111464993},{"hugoGeneSymbol":"LOC111464994","entrezGeneId":111464994},{"hugoGeneSymbol":"LOC111465001","entrezGeneId":111465001},{"hugoGeneSymbol":"LOC111465007","entrezGeneId":111465007},{"hugoGeneSymbol":"LOC111465008","entrezGeneId":111465008},{"hugoGeneSymbol":"LOC111465009","entrezGeneId":111465009},{"hugoGeneSymbol":"LOC111465010","entrezGeneId":111465010},{"hugoGeneSymbol":"LOC111465012","entrezGeneId":111465012},{"hugoGeneSymbol":"LOC111465013","entrezGeneId":111465013},{"hugoGeneSymbol":"LOC111465015","entrezGeneId":111465015},{"hugoGeneSymbol":"LOC111465016","entrezGeneId":111465016},{"hugoGeneSymbol":"LOC111465017","entrezGeneId":111465017},{"hugoGeneSymbol":"LOC111465018","entrezGeneId":111465018},{"hugoGeneSymbol":"LOC111465019","entrezGeneId":111465019},{"hugoGeneSymbol":"LOC111465020","entrezGeneId":111465020},{"hugoGeneSymbol":"LOC111500310","entrezGeneId":111500310},{"hugoGeneSymbol":"LOC111500312","entrezGeneId":111500312},{"hugoGeneSymbol":"LOC111500313","entrezGeneId":111500313},{"hugoGeneSymbol":"LOC111500315","entrezGeneId":111500315},{"hugoGeneSymbol":"LOC111500319","entrezGeneId":111500319},{"hugoGeneSymbol":"LOC111501760","entrezGeneId":111501760},{"hugoGeneSymbol":"LOC111501763","entrezGeneId":111501763},{"hugoGeneSymbol":"LOC111501764","entrezGeneId":111501764},{"hugoGeneSymbol":"LOC111501765","entrezGeneId":111501765},{"hugoGeneSymbol":"LOC111501766","entrezGeneId":111501766},{"hugoGeneSymbol":"LOC111501767","entrezGeneId":111501767},{"hugoGeneSymbol":"LOC111501769","entrezGeneId":111501769},{"hugoGeneSymbol":"LOC111501772","entrezGeneId":111501772},{"hugoGeneSymbol":"LOC111501773","entrezGeneId":111501773},{"hugoGeneSymbol":"LOC111501774","entrezGeneId":111501774},{"hugoGeneSymbol":"LOC111501775","entrezGeneId":111501775},{"hugoGeneSymbol":"LOC111501776","entrezGeneId":111501776},{"hugoGeneSymbol":"LOC111501777","entrezGeneId":111501777},{"hugoGeneSymbol":"LOC111501778","entrezGeneId":111501778},{"hugoGeneSymbol":"LOC111501779","entrezGeneId":111501779},{"hugoGeneSymbol":"LOC111501788","entrezGeneId":111501788},{"hugoGeneSymbol":"LOC111501790","entrezGeneId":111501790},{"hugoGeneSymbol":"LOC111501791","entrezGeneId":111501791},{"hugoGeneSymbol":"LOC111501793","entrezGeneId":111501793},{"hugoGeneSymbol":"LOC111519897","entrezGeneId":111519897},{"hugoGeneSymbol":"LOC111519898","entrezGeneId":111519898},{"hugoGeneSymbol":"LOC111556106","entrezGeneId":111556106},{"hugoGeneSymbol":"LOC111556107","entrezGeneId":111556107},{"hugoGeneSymbol":"LOC111556113","entrezGeneId":111556113},{"hugoGeneSymbol":"LOC111556114","entrezGeneId":111556114},{"hugoGeneSymbol":"LOC111556115","entrezGeneId":111556115},{"hugoGeneSymbol":"LOC111556116","entrezGeneId":111556116},{"hugoGeneSymbol":"LOC111556120","entrezGeneId":111556120},{"hugoGeneSymbol":"LOC111556121","entrezGeneId":111556121},{"hugoGeneSymbol":"LOC111556122","entrezGeneId":111556122},{"hugoGeneSymbol":"LOC111556134","entrezGeneId":111556134},{"hugoGeneSymbol":"LOC111556135","entrezGeneId":111556135},{"hugoGeneSymbol":"LOC111556136","entrezGeneId":111556136},{"hugoGeneSymbol":"LOC111556137","entrezGeneId":111556137},{"hugoGeneSymbol":"LOC111556138","entrezGeneId":111556138},{"hugoGeneSymbol":"LOC111556139","entrezGeneId":111556139},{"hugoGeneSymbol":"LOC111556140","entrezGeneId":111556140},{"hugoGeneSymbol":"LOC111556141","entrezGeneId":111556141},{"hugoGeneSymbol":"LOC111556143","entrezGeneId":111556143},{"hugoGeneSymbol":"LOC111556144","entrezGeneId":111556144},{"hugoGeneSymbol":"LOC111556145","entrezGeneId":111556145},{"hugoGeneSymbol":"LOC111556148","entrezGeneId":111556148},{"hugoGeneSymbol":"LOC111556149","entrezGeneId":111556149},{"hugoGeneSymbol":"LOC111556151","entrezGeneId":111556151},{"hugoGeneSymbol":"LOC111556152","entrezGeneId":111556152},{"hugoGeneSymbol":"LOC111556153","entrezGeneId":111556153},{"hugoGeneSymbol":"LOC111556155","entrezGeneId":111556155},{"hugoGeneSymbol":"LOC111556156","entrezGeneId":111556156},{"hugoGeneSymbol":"LOC111556158","entrezGeneId":111556158},{"hugoGeneSymbol":"LOC111556159","entrezGeneId":111556159},{"hugoGeneSymbol":"LOC111556160","entrezGeneId":111556160},{"hugoGeneSymbol":"LOC111556161","entrezGeneId":111556161},{"hugoGeneSymbol":"LOC111556162","entrezGeneId":111556162},{"hugoGeneSymbol":"LOC111556163","entrezGeneId":111556163},{"hugoGeneSymbol":"LOC111562369","entrezGeneId":111562369},{"hugoGeneSymbol":"LOC111562370","entrezGeneId":111562370},{"hugoGeneSymbol":"LOC111562371","entrezGeneId":111562371},{"hugoGeneSymbol":"LOC111562373","entrezGeneId":111562373},{"hugoGeneSymbol":"LOC111562374","entrezGeneId":111562374},{"hugoGeneSymbol":"LOC111562375","entrezGeneId":111562375},{"hugoGeneSymbol":"LOC111562376","entrezGeneId":111562376},{"hugoGeneSymbol":"LOC111562378","entrezGeneId":111562378},{"hugoGeneSymbol":"LOC111562379","entrezGeneId":111562379},{"hugoGeneSymbol":"LOC111562380","entrezGeneId":111562380},{"hugoGeneSymbol":"LOC111589205","entrezGeneId":111589205},{"hugoGeneSymbol":"LOC111589206","entrezGeneId":111589206},{"hugoGeneSymbol":"LOC111589207","entrezGeneId":111589207},{"hugoGeneSymbol":"LOC111589208","entrezGeneId":111589208},{"hugoGeneSymbol":"LOC111589209","entrezGeneId":111589209},{"hugoGeneSymbol":"LOC111589210","entrezGeneId":111589210},{"hugoGeneSymbol":"LOC111589211","entrezGeneId":111589211},{"hugoGeneSymbol":"LOC111589212","entrezGeneId":111589212},{"hugoGeneSymbol":"LOC111589213","entrezGeneId":111589213},{"hugoGeneSymbol":"LOC111589214","entrezGeneId":111589214},{"hugoGeneSymbol":"LOC111589215","entrezGeneId":111589215},{"hugoGeneSymbol":"LOC111589216","entrezGeneId":111589216},{"hugoGeneSymbol":"LOC111591499","entrezGeneId":111591499},{"hugoGeneSymbol":"LOC111591500","entrezGeneId":111591500},{"hugoGeneSymbol":"LOC111591501","entrezGeneId":111591501},{"hugoGeneSymbol":"LOC111591502","entrezGeneId":111591502},{"hugoGeneSymbol":"LOC111591503","entrezGeneId":111591503},{"hugoGeneSymbol":"LOC111591504","entrezGeneId":111591504},{"hugoGeneSymbol":"LOC111591505","entrezGeneId":111591505},{"hugoGeneSymbol":"LOC111591506","entrezGeneId":111591506},{"hugoGeneSymbol":"LOC111591507","entrezGeneId":111591507},{"hugoGeneSymbol":"LOC111591508","entrezGeneId":111591508},{"hugoGeneSymbol":"LOC111591509","entrezGeneId":111591509},{"hugoGeneSymbol":"LOC111674463","entrezGeneId":111674463},{"hugoGeneSymbol":"LOC111674464","entrezGeneId":111674464},{"hugoGeneSymbol":"LOC111674465","entrezGeneId":111674465},{"hugoGeneSymbol":"LOC111674466","entrezGeneId":111674466},{"hugoGeneSymbol":"LOC111674467","entrezGeneId":111674467},{"hugoGeneSymbol":"LOC111674468","entrezGeneId":111674468},{"hugoGeneSymbol":"LOC111674470","entrezGeneId":111674470},{"hugoGeneSymbol":"LOC111674471","entrezGeneId":111674471},{"hugoGeneSymbol":"LOC111674472","entrezGeneId":111674472},{"hugoGeneSymbol":"LOC111674473","entrezGeneId":111674473},{"hugoGeneSymbol":"LOC111674474","entrezGeneId":111674474},{"hugoGeneSymbol":"LOC111674475","entrezGeneId":111674475},{"hugoGeneSymbol":"LOC111674476","entrezGeneId":111674476},{"hugoGeneSymbol":"LOC111674477","entrezGeneId":111674477},{"hugoGeneSymbol":"LOC111674478","entrezGeneId":111674478},{"hugoGeneSymbol":"LOC111674479","entrezGeneId":111674479},{"hugoGeneSymbol":"LOC111718489","entrezGeneId":111718489},{"hugoGeneSymbol":"LOC111718490","entrezGeneId":111718490},{"hugoGeneSymbol":"LOC111718491","entrezGeneId":111718491},{"hugoGeneSymbol":"LOC111718492","entrezGeneId":111718492},{"hugoGeneSymbol":"LOC111718493","entrezGeneId":111718493},{"hugoGeneSymbol":"LOC111718495","entrezGeneId":111718495},{"hugoGeneSymbol":"LOC111721701","entrezGeneId":111721701},{"hugoGeneSymbol":"LOC111721702","entrezGeneId":111721702},{"hugoGeneSymbol":"LOC111721703","entrezGeneId":111721703},{"hugoGeneSymbol":"LOC111721704","entrezGeneId":111721704},{"hugoGeneSymbol":"LOC111721705","entrezGeneId":111721705},{"hugoGeneSymbol":"LOC111721706","entrezGeneId":111721706},{"hugoGeneSymbol":"LOC111721707","entrezGeneId":111721707},{"hugoGeneSymbol":"LOC111721708","entrezGeneId":111721708},{"hugoGeneSymbol":"LOC111721709","entrezGeneId":111721709},{"hugoGeneSymbol":"LOC111721710","entrezGeneId":111721710},{"hugoGeneSymbol":"LOC111721711","entrezGeneId":111721711},{"hugoGeneSymbol":"LOC111721712","entrezGeneId":111721712},{"hugoGeneSymbol":"LOC111721713","entrezGeneId":111721713},{"hugoGeneSymbol":"LOC111721714","entrezGeneId":111721714},{"hugoGeneSymbol":"LOC111721715","entrezGeneId":111721715},{"hugoGeneSymbol":"LOC111721716","entrezGeneId":111721716},{"hugoGeneSymbol":"LOC111776215","entrezGeneId":111776215},{"hugoGeneSymbol":"LOC111776216","entrezGeneId":111776216},{"hugoGeneSymbol":"LOC111776217","entrezGeneId":111776217},{"hugoGeneSymbol":"LOC111776218","entrezGeneId":111776218},{"hugoGeneSymbol":"LOC111776219","entrezGeneId":111776219},{"hugoGeneSymbol":"LOC111776220","entrezGeneId":111776220},{"hugoGeneSymbol":"LOC111776221","entrezGeneId":111776221},{"hugoGeneSymbol":"LOC111811965","entrezGeneId":111811965},{"hugoGeneSymbol":"LOC111811966","entrezGeneId":111811966},{"hugoGeneSymbol":"LOC111811967","entrezGeneId":111811967},{"hugoGeneSymbol":"LOC111811968","entrezGeneId":111811968},{"hugoGeneSymbol":"LOC111811969","entrezGeneId":111811969},{"hugoGeneSymbol":"LOC111811970","entrezGeneId":111811970},{"hugoGeneSymbol":"LOC111818956","entrezGeneId":111818956},{"hugoGeneSymbol":"LOC111818958","entrezGeneId":111818958},{"hugoGeneSymbol":"LOC111818962","entrezGeneId":111818962},{"hugoGeneSymbol":"LOC111818963","entrezGeneId":111818963},{"hugoGeneSymbol":"LOC111818964","entrezGeneId":111818964},{"hugoGeneSymbol":"LOC111818965","entrezGeneId":111818965},{"hugoGeneSymbol":"LOC111818966","entrezGeneId":111818966},{"hugoGeneSymbol":"LOC111818967","entrezGeneId":111818967},{"hugoGeneSymbol":"LOC111818968","entrezGeneId":111818968},{"hugoGeneSymbol":"LOC111818969","entrezGeneId":111818969},{"hugoGeneSymbol":"LOC111822946","entrezGeneId":111822946},{"hugoGeneSymbol":"LOC111822947","entrezGeneId":111822947},{"hugoGeneSymbol":"LOC111822948","entrezGeneId":111822948},{"hugoGeneSymbol":"LOC111822949","entrezGeneId":111822949},{"hugoGeneSymbol":"LOC111822950","entrezGeneId":111822950},{"hugoGeneSymbol":"LOC111822951","entrezGeneId":111822951},{"hugoGeneSymbol":"LOC111822952","entrezGeneId":111822952},{"hugoGeneSymbol":"LOC111828490","entrezGeneId":111828490},{"hugoGeneSymbol":"LOC111828491","entrezGeneId":111828491},{"hugoGeneSymbol":"LOC111828492","entrezGeneId":111828492},{"hugoGeneSymbol":"LOC111828494","entrezGeneId":111828494},{"hugoGeneSymbol":"LOC111828495","entrezGeneId":111828495},{"hugoGeneSymbol":"LOC111828496","entrezGeneId":111828496},{"hugoGeneSymbol":"LOC111828503","entrezGeneId":111828503},{"hugoGeneSymbol":"LOC111828504","entrezGeneId":111828504},{"hugoGeneSymbol":"LOC111828505","entrezGeneId":111828505},{"hugoGeneSymbol":"LOC111828506","entrezGeneId":111828506},{"hugoGeneSymbol":"LOC111828507","entrezGeneId":111828507},{"hugoGeneSymbol":"LOC111828508","entrezGeneId":111828508},{"hugoGeneSymbol":"LOC111828509","entrezGeneId":111828509},{"hugoGeneSymbol":"LOC111828510","entrezGeneId":111828510},{"hugoGeneSymbol":"LOC111828511","entrezGeneId":111828511},{"hugoGeneSymbol":"LOC111828512","entrezGeneId":111828512},{"hugoGeneSymbol":"LOC111828513","entrezGeneId":111828513},{"hugoGeneSymbol":"LOC111828514","entrezGeneId":111828514},{"hugoGeneSymbol":"LOC111828515","entrezGeneId":111828515},{"hugoGeneSymbol":"LOC111828516","entrezGeneId":111828516},{"hugoGeneSymbol":"LOC111828517","entrezGeneId":111828517},{"hugoGeneSymbol":"LOC111828520","entrezGeneId":111828520},{"hugoGeneSymbol":"LOC111828522","entrezGeneId":111828522},{"hugoGeneSymbol":"LOC111828524","entrezGeneId":111828524},{"hugoGeneSymbol":"LOC111828525","entrezGeneId":111828525},{"hugoGeneSymbol":"LOC111828526","entrezGeneId":111828526},{"hugoGeneSymbol":"LOC111828527","entrezGeneId":111828527},{"hugoGeneSymbol":"LOC111828528","entrezGeneId":111828528},{"hugoGeneSymbol":"LOC111828529","entrezGeneId":111828529},{"hugoGeneSymbol":"LOC111828530","entrezGeneId":111828530},{"hugoGeneSymbol":"LOC111828531","entrezGeneId":111828531},{"hugoGeneSymbol":"LOC111832670","entrezGeneId":111832670},{"hugoGeneSymbol":"LOC111832671","entrezGeneId":111832671},{"hugoGeneSymbol":"LOC111832674","entrezGeneId":111832674},{"hugoGeneSymbol":"LOC111832675","entrezGeneId":111832675},{"hugoGeneSymbol":"LOC111875816","entrezGeneId":111875816},{"hugoGeneSymbol":"LOC111875817","entrezGeneId":111875817},{"hugoGeneSymbol":"LOC111875818","entrezGeneId":111875818},{"hugoGeneSymbol":"LOC111875819","entrezGeneId":111875819},{"hugoGeneSymbol":"LOC111875820","entrezGeneId":111875820},{"hugoGeneSymbol":"LOC111875821","entrezGeneId":111875821},{"hugoGeneSymbol":"LOC111875822","entrezGeneId":111875822},{"hugoGeneSymbol":"LOC111875823","entrezGeneId":111875823},{"hugoGeneSymbol":"LOC111875824","entrezGeneId":111875824},{"hugoGeneSymbol":"LOC111875825","entrezGeneId":111875825},{"hugoGeneSymbol":"LOC111875826","entrezGeneId":111875826},{"hugoGeneSymbol":"LOC111875827","entrezGeneId":111875827},{"hugoGeneSymbol":"LOC111875828","entrezGeneId":111875828},{"hugoGeneSymbol":"LOC111875829","entrezGeneId":111875829},{"hugoGeneSymbol":"LOC111875830","entrezGeneId":111875830},{"hugoGeneSymbol":"LOC111875831","entrezGeneId":111875831},{"hugoGeneSymbol":"LOC111875832","entrezGeneId":111875832},{"hugoGeneSymbol":"LOC111875833","entrezGeneId":111875833},{"hugoGeneSymbol":"LOC111875834","entrezGeneId":111875834},{"hugoGeneSymbol":"LOC111875835","entrezGeneId":111875835},{"hugoGeneSymbol":"LOC111946221","entrezGeneId":111946221},{"hugoGeneSymbol":"LOC111946222","entrezGeneId":111946222},{"hugoGeneSymbol":"LOC111946223","entrezGeneId":111946223},{"hugoGeneSymbol":"LOC111946224","entrezGeneId":111946224},{"hugoGeneSymbol":"LOC111946225","entrezGeneId":111946225},{"hugoGeneSymbol":"LOC111946226","entrezGeneId":111946226},{"hugoGeneSymbol":"LOC111946227","entrezGeneId":111946227},{"hugoGeneSymbol":"LOC111946228","entrezGeneId":111946228},{"hugoGeneSymbol":"LOC111946229","entrezGeneId":111946229},{"hugoGeneSymbol":"LOC111946230","entrezGeneId":111946230},{"hugoGeneSymbol":"LOC111946231","entrezGeneId":111946231},{"hugoGeneSymbol":"LOC111946232","entrezGeneId":111946232},{"hugoGeneSymbol":"LOC111946234","entrezGeneId":111946234},{"hugoGeneSymbol":"LOC111946236","entrezGeneId":111946236},{"hugoGeneSymbol":"LOC111946237","entrezGeneId":111946237},{"hugoGeneSymbol":"LOC111946238","entrezGeneId":111946238},{"hugoGeneSymbol":"LOC111946239","entrezGeneId":111946239},{"hugoGeneSymbol":"LOC111946240","entrezGeneId":111946240},{"hugoGeneSymbol":"LOC111946241","entrezGeneId":111946241},{"hugoGeneSymbol":"LOC111946242","entrezGeneId":111946242},{"hugoGeneSymbol":"LOC111946243","entrezGeneId":111946243},{"hugoGeneSymbol":"LOC111946244","entrezGeneId":111946244},{"hugoGeneSymbol":"LOC111946245","entrezGeneId":111946245},{"hugoGeneSymbol":"LOC111946246","entrezGeneId":111946246},{"hugoGeneSymbol":"LOC111946247","entrezGeneId":111946247},{"hugoGeneSymbol":"LOC111946248","entrezGeneId":111946248},{"hugoGeneSymbol":"LOC111946249","entrezGeneId":111946249},{"hugoGeneSymbol":"LOC111946250","entrezGeneId":111946250},{"hugoGeneSymbol":"LOC111946251","entrezGeneId":111946251},{"hugoGeneSymbol":"LOC111946252","entrezGeneId":111946252},{"hugoGeneSymbol":"LOC111949323","entrezGeneId":111949323},{"hugoGeneSymbol":"LOC111982863","entrezGeneId":111982863},{"hugoGeneSymbol":"LOC111982864","entrezGeneId":111982864},{"hugoGeneSymbol":"LOC111982865","entrezGeneId":111982865},{"hugoGeneSymbol":"LOC111982866","entrezGeneId":111982866},{"hugoGeneSymbol":"LOC111982867","entrezGeneId":111982867},{"hugoGeneSymbol":"LOC111982868","entrezGeneId":111982868},{"hugoGeneSymbol":"LOC111982869","entrezGeneId":111982869},{"hugoGeneSymbol":"LOC111982870","entrezGeneId":111982870},{"hugoGeneSymbol":"LOC111982871","entrezGeneId":111982871},{"hugoGeneSymbol":"LOC111982872","entrezGeneId":111982872},{"hugoGeneSymbol":"LOC111982873","entrezGeneId":111982873},{"hugoGeneSymbol":"LOC111982875","entrezGeneId":111982875},{"hugoGeneSymbol":"LOC111982876","entrezGeneId":111982876},{"hugoGeneSymbol":"LOC111982877","entrezGeneId":111982877},{"hugoGeneSymbol":"LOC111982878","entrezGeneId":111982878},{"hugoGeneSymbol":"LOC111982879","entrezGeneId":111982879},{"hugoGeneSymbol":"LOC111982880","entrezGeneId":111982880},{"hugoGeneSymbol":"LOC111982881","entrezGeneId":111982881},{"hugoGeneSymbol":"LOC111982882","entrezGeneId":111982882},{"hugoGeneSymbol":"LOC111982883","entrezGeneId":111982883},{"hugoGeneSymbol":"LOC111982884","entrezGeneId":111982884},{"hugoGeneSymbol":"LOC111982885","entrezGeneId":111982885},{"hugoGeneSymbol":"LOC111982886","entrezGeneId":111982886},{"hugoGeneSymbol":"LOC111982887","entrezGeneId":111982887},{"hugoGeneSymbol":"LOC111982888","entrezGeneId":111982888},{"hugoGeneSymbol":"LOC111982889","entrezGeneId":111982889},{"hugoGeneSymbol":"LOC111982890","entrezGeneId":111982890},{"hugoGeneSymbol":"LOC111982891","entrezGeneId":111982891},{"hugoGeneSymbol":"LOC111982892","entrezGeneId":111982892},{"hugoGeneSymbol":"LOC111982893","entrezGeneId":111982893},{"hugoGeneSymbol":"LOC111982894","entrezGeneId":111982894},{"hugoGeneSymbol":"LOC112042777","entrezGeneId":112042777},{"hugoGeneSymbol":"LOC112042778","entrezGeneId":112042778},{"hugoGeneSymbol":"LOC112042779","entrezGeneId":112042779},{"hugoGeneSymbol":"LOC112042780","entrezGeneId":112042780},{"hugoGeneSymbol":"LOC112042781","entrezGeneId":112042781},{"hugoGeneSymbol":"LOC112042782","entrezGeneId":112042782},{"hugoGeneSymbol":"LOC112042783","entrezGeneId":112042783},{"hugoGeneSymbol":"LOC112042784","entrezGeneId":112042784},{"hugoGeneSymbol":"LOC112042785","entrezGeneId":112042785},{"hugoGeneSymbol":"LOC112042786","entrezGeneId":112042786},{"hugoGeneSymbol":"LOC112061819","entrezGeneId":112061819},{"hugoGeneSymbol":"LOC112061820","entrezGeneId":112061820},{"hugoGeneSymbol":"LOC112061821","entrezGeneId":112061821},{"hugoGeneSymbol":"LOC112061822","entrezGeneId":112061822},{"hugoGeneSymbol":"LOC112061823","entrezGeneId":112061823},{"hugoGeneSymbol":"LOC112067710","entrezGeneId":112067710},{"hugoGeneSymbol":"LOC112067711","entrezGeneId":112067711},{"hugoGeneSymbol":"LOC112067712","entrezGeneId":112067712},{"hugoGeneSymbol":"LOC112067713","entrezGeneId":112067713},{"hugoGeneSymbol":"LOC112067714","entrezGeneId":112067714},{"hugoGeneSymbol":"LOC112067715","entrezGeneId":112067715},{"hugoGeneSymbol":"LOC112067716","entrezGeneId":112067716},{"hugoGeneSymbol":"LOC112067717","entrezGeneId":112067717},{"hugoGeneSymbol":"LOC112067718","entrezGeneId":112067718},{"hugoGeneSymbol":"LOC112067719","entrezGeneId":112067719},{"hugoGeneSymbol":"LOC112067720","entrezGeneId":112067720},{"hugoGeneSymbol":"LOC112081391","entrezGeneId":112081391},{"hugoGeneSymbol":"LOC112081392","entrezGeneId":112081392},{"hugoGeneSymbol":"LOC112081393","entrezGeneId":112081393},{"hugoGeneSymbol":"LOC112081394","entrezGeneId":112081394},{"hugoGeneSymbol":"LOC112081395","entrezGeneId":112081395},{"hugoGeneSymbol":"LOC112081396","entrezGeneId":112081396},{"hugoGeneSymbol":"LOC112081397","entrezGeneId":112081397},{"hugoGeneSymbol":"LOC112081398","entrezGeneId":112081398},{"hugoGeneSymbol":"LOC112081399","entrezGeneId":112081399},{"hugoGeneSymbol":"LOC112081400","entrezGeneId":112081400},{"hugoGeneSymbol":"LOC112081401","entrezGeneId":112081401},{"hugoGeneSymbol":"LOC112081402","entrezGeneId":112081402},{"hugoGeneSymbol":"LOC112081403","entrezGeneId":112081403},{"hugoGeneSymbol":"LOC112081404","entrezGeneId":112081404},{"hugoGeneSymbol":"LOC112081405","entrezGeneId":112081405},{"hugoGeneSymbol":"LOC112081406","entrezGeneId":112081406},{"hugoGeneSymbol":"LOC112081407","entrezGeneId":112081407},{"hugoGeneSymbol":"LOC112081408","entrezGeneId":112081408},{"hugoGeneSymbol":"LOC112081409","entrezGeneId":112081409},{"hugoGeneSymbol":"LOC112081410","entrezGeneId":112081410},{"hugoGeneSymbol":"LOC112081411","entrezGeneId":112081411},{"hugoGeneSymbol":"LOC112081412","entrezGeneId":112081412},{"hugoGeneSymbol":"LOC112081413","entrezGeneId":112081413},{"hugoGeneSymbol":"LOC112081415","entrezGeneId":112081415},{"hugoGeneSymbol":"LOC112081416","entrezGeneId":112081416},{"hugoGeneSymbol":"LOC112136078","entrezGeneId":112136078},{"hugoGeneSymbol":"LOC112136080","entrezGeneId":112136080},{"hugoGeneSymbol":"LOC112136081","entrezGeneId":112136081},{"hugoGeneSymbol":"LOC112136082","entrezGeneId":112136082},{"hugoGeneSymbol":"LOC112136083","entrezGeneId":112136083},{"hugoGeneSymbol":"LOC112136088","entrezGeneId":112136088},{"hugoGeneSymbol":"LOC112136089","entrezGeneId":112136089},{"hugoGeneSymbol":"LOC112136090","entrezGeneId":112136090},{"hugoGeneSymbol":"LOC112136091","entrezGeneId":112136091},{"hugoGeneSymbol":"LOC112136092","entrezGeneId":112136092},{"hugoGeneSymbol":"LOC112136093","entrezGeneId":112136093},{"hugoGeneSymbol":"LOC112136094","entrezGeneId":112136094},{"hugoGeneSymbol":"LOC112136095","entrezGeneId":112136095},{"hugoGeneSymbol":"LOC112136096","entrezGeneId":112136096},{"hugoGeneSymbol":"LOC112136097","entrezGeneId":112136097},{"hugoGeneSymbol":"LOC112136100","entrezGeneId":112136100},{"hugoGeneSymbol":"LOC112136101","entrezGeneId":112136101},{"hugoGeneSymbol":"LOC112136102","entrezGeneId":112136102},{"hugoGeneSymbol":"LOC112136103","entrezGeneId":112136103},{"hugoGeneSymbol":"LOC112136104","entrezGeneId":112136104},{"hugoGeneSymbol":"LOC112136105","entrezGeneId":112136105},{"hugoGeneSymbol":"LOC112136106","entrezGeneId":112136106},{"hugoGeneSymbol":"LOC112136107","entrezGeneId":112136107},{"hugoGeneSymbol":"LOC112136108","entrezGeneId":112136108},{"hugoGeneSymbol":"LOC112136111","entrezGeneId":112136111},{"hugoGeneSymbol":"LOC112136112","entrezGeneId":112136112},{"hugoGeneSymbol":"LOC112163525","entrezGeneId":112163525},{"hugoGeneSymbol":"LOC112163526","entrezGeneId":112163526},{"hugoGeneSymbol":"LOC112163527","entrezGeneId":112163527},{"hugoGeneSymbol":"LOC112163528","entrezGeneId":112163528},{"hugoGeneSymbol":"LOC112163529","entrezGeneId":112163529},{"hugoGeneSymbol":"LOC112163530","entrezGeneId":112163530},{"hugoGeneSymbol":"LOC112163531","entrezGeneId":112163531},{"hugoGeneSymbol":"LOC112163532","entrezGeneId":112163532},{"hugoGeneSymbol":"LOC112163533","entrezGeneId":112163533},{"hugoGeneSymbol":"LOC112163534","entrezGeneId":112163534},{"hugoGeneSymbol":"LOC112163535","entrezGeneId":112163535},{"hugoGeneSymbol":"LOC112163537","entrezGeneId":112163537},{"hugoGeneSymbol":"LOC112163538","entrezGeneId":112163538},{"hugoGeneSymbol":"LOC112163539","entrezGeneId":112163539},{"hugoGeneSymbol":"LOC112163540","entrezGeneId":112163540},{"hugoGeneSymbol":"LOC112163541","entrezGeneId":112163541},{"hugoGeneSymbol":"LOC112163542","entrezGeneId":112163542},{"hugoGeneSymbol":"LOC112163543","entrezGeneId":112163543},{"hugoGeneSymbol":"LOC112163544","entrezGeneId":112163544},{"hugoGeneSymbol":"LOC112163545","entrezGeneId":112163545},{"hugoGeneSymbol":"LOC112163546","entrezGeneId":112163546},{"hugoGeneSymbol":"LOC112163547","entrezGeneId":112163547},{"hugoGeneSymbol":"LOC112163548","entrezGeneId":112163548},{"hugoGeneSymbol":"LOC112163549","entrezGeneId":112163549},{"hugoGeneSymbol":"LOC112163550","entrezGeneId":112163550},{"hugoGeneSymbol":"LOC112163551","entrezGeneId":112163551},{"hugoGeneSymbol":"LOC112163552","entrezGeneId":112163552},{"hugoGeneSymbol":"LOC112163594","entrezGeneId":112163594},{"hugoGeneSymbol":"LOC112163595","entrezGeneId":112163595},{"hugoGeneSymbol":"LOC112163596","entrezGeneId":112163596},{"hugoGeneSymbol":"LOC112163597","entrezGeneId":112163597},{"hugoGeneSymbol":"LOC112163598","entrezGeneId":112163598},{"hugoGeneSymbol":"LOC112163600","entrezGeneId":112163600},{"hugoGeneSymbol":"LOC112163601","entrezGeneId":112163601},{"hugoGeneSymbol":"LOC112163602","entrezGeneId":112163602},{"hugoGeneSymbol":"LOC112163604","entrezGeneId":112163604},{"hugoGeneSymbol":"LOC112163605","entrezGeneId":112163605},{"hugoGeneSymbol":"LOC112163606","entrezGeneId":112163606},{"hugoGeneSymbol":"LOC112163607","entrezGeneId":112163607},{"hugoGeneSymbol":"LOC112163608","entrezGeneId":112163608},{"hugoGeneSymbol":"LOC112163609","entrezGeneId":112163609},{"hugoGeneSymbol":"LOC112163612","entrezGeneId":112163612},{"hugoGeneSymbol":"LOC112163613","entrezGeneId":112163613},{"hugoGeneSymbol":"LOC112163615","entrezGeneId":112163615},{"hugoGeneSymbol":"LOC112163617","entrezGeneId":112163617},{"hugoGeneSymbol":"LOC112163618","entrezGeneId":112163618},{"hugoGeneSymbol":"LOC112163619","entrezGeneId":112163619},{"hugoGeneSymbol":"LOC112163620","entrezGeneId":112163620},{"hugoGeneSymbol":"LOC112163621","entrezGeneId":112163621},{"hugoGeneSymbol":"LOC112163622","entrezGeneId":112163622},{"hugoGeneSymbol":"LOC112163623","entrezGeneId":112163623},{"hugoGeneSymbol":"LOC112163625","entrezGeneId":112163625},{"hugoGeneSymbol":"LOC112163626","entrezGeneId":112163626},{"hugoGeneSymbol":"LOC112163628","entrezGeneId":112163628},{"hugoGeneSymbol":"LOC112163629","entrezGeneId":112163629},{"hugoGeneSymbol":"LOC112163630","entrezGeneId":112163630},{"hugoGeneSymbol":"LOC112163631","entrezGeneId":112163631},{"hugoGeneSymbol":"LOC112163632","entrezGeneId":112163632},{"hugoGeneSymbol":"LOC112163633","entrezGeneId":112163633},{"hugoGeneSymbol":"LOC112163634","entrezGeneId":112163634},{"hugoGeneSymbol":"LOC112163635","entrezGeneId":112163635},{"hugoGeneSymbol":"LOC112163636","entrezGeneId":112163636},{"hugoGeneSymbol":"LOC112163637","entrezGeneId":112163637},{"hugoGeneSymbol":"LOC112163638","entrezGeneId":112163638},{"hugoGeneSymbol":"LOC112163639","entrezGeneId":112163639},{"hugoGeneSymbol":"LOC112163640","entrezGeneId":112163640},{"hugoGeneSymbol":"LOC112163643","entrezGeneId":112163643},{"hugoGeneSymbol":"LOC112163644","entrezGeneId":112163644},{"hugoGeneSymbol":"LOC112163645","entrezGeneId":112163645},{"hugoGeneSymbol":"LOC112163646","entrezGeneId":112163646},{"hugoGeneSymbol":"LOC112163647","entrezGeneId":112163647},{"hugoGeneSymbol":"LOC112163648","entrezGeneId":112163648},{"hugoGeneSymbol":"LOC112163649","entrezGeneId":112163649},{"hugoGeneSymbol":"LOC112163650","entrezGeneId":112163650},{"hugoGeneSymbol":"LOC112163651","entrezGeneId":112163651},{"hugoGeneSymbol":"LOC112163652","entrezGeneId":112163652},{"hugoGeneSymbol":"LOC112163653","entrezGeneId":112163653},{"hugoGeneSymbol":"LOC112163654","entrezGeneId":112163654},{"hugoGeneSymbol":"LOC112163655","entrezGeneId":112163655},{"hugoGeneSymbol":"LOC112163656","entrezGeneId":112163656},{"hugoGeneSymbol":"LOC112163657","entrezGeneId":112163657},{"hugoGeneSymbol":"LOC112163658","entrezGeneId":112163658},{"hugoGeneSymbol":"LOC112163662","entrezGeneId":112163662},{"hugoGeneSymbol":"LOC112163663","entrezGeneId":112163663},{"hugoGeneSymbol":"LOC112163664","entrezGeneId":112163664},{"hugoGeneSymbol":"LOC112163665","entrezGeneId":112163665},{"hugoGeneSymbol":"LOC112163666","entrezGeneId":112163666},{"hugoGeneSymbol":"LOC112163667","entrezGeneId":112163667},{"hugoGeneSymbol":"LOC112163668","entrezGeneId":112163668},{"hugoGeneSymbol":"LOC112163669","entrezGeneId":112163669},{"hugoGeneSymbol":"LOC112163670","entrezGeneId":112163670},{"hugoGeneSymbol":"LOC112163671","entrezGeneId":112163671},{"hugoGeneSymbol":"LOC112163672","entrezGeneId":112163672},{"hugoGeneSymbol":"LOC112163674","entrezGeneId":112163674},{"hugoGeneSymbol":"LOC112163675","entrezGeneId":112163675},{"hugoGeneSymbol":"LOC112163676","entrezGeneId":112163676},{"hugoGeneSymbol":"LOC112163679","entrezGeneId":112163679},{"hugoGeneSymbol":"LOC112163680","entrezGeneId":112163680},{"hugoGeneSymbol":"LOC112163681","entrezGeneId":112163681},{"hugoGeneSymbol":"LOC112163682","entrezGeneId":112163682},{"hugoGeneSymbol":"LOC112163683","entrezGeneId":112163683},{"hugoGeneSymbol":"LOC112163684","entrezGeneId":112163684},{"hugoGeneSymbol":"LOC112163685","entrezGeneId":112163685},{"hugoGeneSymbol":"LOC112214170","entrezGeneId":112214170},{"hugoGeneSymbol":"LOC112214171","entrezGeneId":112214171},{"hugoGeneSymbol":"LOC112214174","entrezGeneId":112214174},{"hugoGeneSymbol":"LOC112214175","entrezGeneId":112214175},{"hugoGeneSymbol":"LOC112214176","entrezGeneId":112214176},{"hugoGeneSymbol":"LOC112267849","entrezGeneId":112267849},{"hugoGeneSymbol":"LOC112267850","entrezGeneId":112267850},{"hugoGeneSymbol":"LOC112267851","entrezGeneId":112267851},{"hugoGeneSymbol":"LOC112267852","entrezGeneId":112267852},{"hugoGeneSymbol":"LOC112267853","entrezGeneId":112267853},{"hugoGeneSymbol":"LOC112267854","entrezGeneId":112267854},{"hugoGeneSymbol":"LOC112267855","entrezGeneId":112267855},{"hugoGeneSymbol":"LOC112267856","entrezGeneId":112267856},{"hugoGeneSymbol":"LOC112267857","entrezGeneId":112267857},{"hugoGeneSymbol":"LOC112267858","entrezGeneId":112267858},{"hugoGeneSymbol":"LOC112267859","entrezGeneId":112267859},{"hugoGeneSymbol":"LOC112267860","entrezGeneId":112267860},{"hugoGeneSymbol":"LOC112267861","entrezGeneId":112267861},{"hugoGeneSymbol":"LOC112267862","entrezGeneId":112267862},{"hugoGeneSymbol":"LOC112267863","entrezGeneId":112267863},{"hugoGeneSymbol":"LOC112267864","entrezGeneId":112267864},{"hugoGeneSymbol":"LOC112267865","entrezGeneId":112267865},{"hugoGeneSymbol":"LOC112267866","entrezGeneId":112267866},{"hugoGeneSymbol":"LOC112267867","entrezGeneId":112267867},{"hugoGeneSymbol":"LOC112267868","entrezGeneId":112267868},{"hugoGeneSymbol":"LOC112267869","entrezGeneId":112267869},{"hugoGeneSymbol":"LOC112267870","entrezGeneId":112267870},{"hugoGeneSymbol":"LOC112267871","entrezGeneId":112267871},{"hugoGeneSymbol":"LOC112267872","entrezGeneId":112267872},{"hugoGeneSymbol":"LOC112267873","entrezGeneId":112267873},{"hugoGeneSymbol":"LOC112267874","entrezGeneId":112267874},{"hugoGeneSymbol":"LOC112267875","entrezGeneId":112267875},{"hugoGeneSymbol":"LOC112267876","entrezGeneId":112267876},{"hugoGeneSymbol":"LOC112267877","entrezGeneId":112267877},{"hugoGeneSymbol":"LOC112267878","entrezGeneId":112267878},{"hugoGeneSymbol":"LOC112267879","entrezGeneId":112267879},{"hugoGeneSymbol":"LOC112267880","entrezGeneId":112267880},{"hugoGeneSymbol":"LOC112267881","entrezGeneId":112267881},{"hugoGeneSymbol":"LOC112267882","entrezGeneId":112267882},{"hugoGeneSymbol":"LOC112267883","entrezGeneId":112267883},{"hugoGeneSymbol":"LOC112267884","entrezGeneId":112267884},{"hugoGeneSymbol":"LOC112267885","entrezGeneId":112267885},{"hugoGeneSymbol":"LOC112267886","entrezGeneId":112267886},{"hugoGeneSymbol":"LOC112267887","entrezGeneId":112267887},{"hugoGeneSymbol":"LOC112267888","entrezGeneId":112267888},{"hugoGeneSymbol":"LOC112267889","entrezGeneId":112267889},{"hugoGeneSymbol":"LOC112267890","entrezGeneId":112267890},{"hugoGeneSymbol":"LOC112267891","entrezGeneId":112267891},{"hugoGeneSymbol":"LOC112267892","entrezGeneId":112267892},{"hugoGeneSymbol":"LOC112267893","entrezGeneId":112267893},{"hugoGeneSymbol":"LOC112267894","entrezGeneId":112267894},{"hugoGeneSymbol":"LOC112267895","entrezGeneId":112267895},{"hugoGeneSymbol":"LOC112267896","entrezGeneId":112267896},{"hugoGeneSymbol":"LOC112267897","entrezGeneId":112267897},{"hugoGeneSymbol":"LOC112267898","entrezGeneId":112267898},{"hugoGeneSymbol":"LOC112267899","entrezGeneId":112267899},{"hugoGeneSymbol":"LOC112267900","entrezGeneId":112267900},{"hugoGeneSymbol":"LOC112267901","entrezGeneId":112267901},{"hugoGeneSymbol":"LOC112267902","entrezGeneId":112267902},{"hugoGeneSymbol":"LOC112267903","entrezGeneId":112267903},{"hugoGeneSymbol":"LOC112267904","entrezGeneId":112267904},{"hugoGeneSymbol":"LOC112267905","entrezGeneId":112267905},{"hugoGeneSymbol":"LOC112267906","entrezGeneId":112267906},{"hugoGeneSymbol":"LOC112267907","entrezGeneId":112267907},{"hugoGeneSymbol":"LOC112267908","entrezGeneId":112267908},{"hugoGeneSymbol":"LOC112267909","entrezGeneId":112267909},{"hugoGeneSymbol":"LOC112267910","entrezGeneId":112267910},{"hugoGeneSymbol":"LOC112267911","entrezGeneId":112267911},{"hugoGeneSymbol":"LOC112267912","entrezGeneId":112267912},{"hugoGeneSymbol":"LOC112267913","entrezGeneId":112267913},{"hugoGeneSymbol":"LOC112267914","entrezGeneId":112267914},{"hugoGeneSymbol":"LOC112267915","entrezGeneId":112267915},{"hugoGeneSymbol":"LOC112267916","entrezGeneId":112267916},{"hugoGeneSymbol":"LOC112267917","entrezGeneId":112267917},{"hugoGeneSymbol":"LOC112267918","entrezGeneId":112267918},{"hugoGeneSymbol":"LOC112267919","entrezGeneId":112267919},{"hugoGeneSymbol":"LOC112267920","entrezGeneId":112267920},{"hugoGeneSymbol":"LOC112267921","entrezGeneId":112267921},{"hugoGeneSymbol":"LOC112267922","entrezGeneId":112267922},{"hugoGeneSymbol":"LOC112267923","entrezGeneId":112267923},{"hugoGeneSymbol":"LOC112267924","entrezGeneId":112267924},{"hugoGeneSymbol":"LOC112267925","entrezGeneId":112267925},{"hugoGeneSymbol":"LOC112267926","entrezGeneId":112267926},{"hugoGeneSymbol":"LOC112267927","entrezGeneId":112267927},{"hugoGeneSymbol":"LOC112267928","entrezGeneId":112267928},{"hugoGeneSymbol":"LOC112267929","entrezGeneId":112267929},{"hugoGeneSymbol":"LOC112267930","entrezGeneId":112267930},{"hugoGeneSymbol":"LOC112267931","entrezGeneId":112267931},{"hugoGeneSymbol":"LOC112267932","entrezGeneId":112267932},{"hugoGeneSymbol":"LOC112267933","entrezGeneId":112267933},{"hugoGeneSymbol":"LOC112267934","entrezGeneId":112267934},{"hugoGeneSymbol":"LOC112267935","entrezGeneId":112267935},{"hugoGeneSymbol":"LOC112267936","entrezGeneId":112267936},{"hugoGeneSymbol":"LOC112267937","entrezGeneId":112267937},{"hugoGeneSymbol":"LOC112267938","entrezGeneId":112267938},{"hugoGeneSymbol":"LOC112267939","entrezGeneId":112267939},{"hugoGeneSymbol":"LOC112267940","entrezGeneId":112267940},{"hugoGeneSymbol":"LOC112267941","entrezGeneId":112267941},{"hugoGeneSymbol":"LOC112267942","entrezGeneId":112267942},{"hugoGeneSymbol":"LOC112267943","entrezGeneId":112267943},{"hugoGeneSymbol":"LOC112267944","entrezGeneId":112267944},{"hugoGeneSymbol":"LOC112267945","entrezGeneId":112267945},{"hugoGeneSymbol":"LOC112267946","entrezGeneId":112267946},{"hugoGeneSymbol":"LOC112267947","entrezGeneId":112267947},{"hugoGeneSymbol":"LOC112267948","entrezGeneId":112267948},{"hugoGeneSymbol":"LOC112267949","entrezGeneId":112267949},{"hugoGeneSymbol":"LOC112267950","entrezGeneId":112267950},{"hugoGeneSymbol":"LOC112267951","entrezGeneId":112267951},{"hugoGeneSymbol":"LOC112267952","entrezGeneId":112267952},{"hugoGeneSymbol":"LOC112267953","entrezGeneId":112267953},{"hugoGeneSymbol":"LOC112267954","entrezGeneId":112267954},{"hugoGeneSymbol":"LOC112267955","entrezGeneId":112267955},{"hugoGeneSymbol":"LOC112267956","entrezGeneId":112267956},{"hugoGeneSymbol":"LOC112267957","entrezGeneId":112267957},{"hugoGeneSymbol":"LOC112267958","entrezGeneId":112267958},{"hugoGeneSymbol":"LOC112267959","entrezGeneId":112267959},{"hugoGeneSymbol":"LOC112267960","entrezGeneId":112267960},{"hugoGeneSymbol":"LOC112267961","entrezGeneId":112267961},{"hugoGeneSymbol":"LOC112267962","entrezGeneId":112267962},{"hugoGeneSymbol":"LOC112267963","entrezGeneId":112267963},{"hugoGeneSymbol":"LOC112267964","entrezGeneId":112267964},{"hugoGeneSymbol":"LOC112267965","entrezGeneId":112267965},{"hugoGeneSymbol":"LOC112267966","entrezGeneId":112267966},{"hugoGeneSymbol":"LOC112267967","entrezGeneId":112267967},{"hugoGeneSymbol":"LOC112267968","entrezGeneId":112267968},{"hugoGeneSymbol":"LOC112267969","entrezGeneId":112267969},{"hugoGeneSymbol":"LOC112267970","entrezGeneId":112267970},{"hugoGeneSymbol":"LOC112267971","entrezGeneId":112267971},{"hugoGeneSymbol":"LOC112267972","entrezGeneId":112267972},{"hugoGeneSymbol":"LOC112267973","entrezGeneId":112267973},{"hugoGeneSymbol":"LOC112267974","entrezGeneId":112267974},{"hugoGeneSymbol":"LOC112267975","entrezGeneId":112267975},{"hugoGeneSymbol":"LOC112267976","entrezGeneId":112267976},{"hugoGeneSymbol":"LOC112267977","entrezGeneId":112267977},{"hugoGeneSymbol":"LOC112267978","entrezGeneId":112267978},{"hugoGeneSymbol":"LOC112267979","entrezGeneId":112267979},{"hugoGeneSymbol":"LOC112267980","entrezGeneId":112267980},{"hugoGeneSymbol":"LOC112267981","entrezGeneId":112267981},{"hugoGeneSymbol":"LOC112267982","entrezGeneId":112267982},{"hugoGeneSymbol":"LOC112267983","entrezGeneId":112267983},{"hugoGeneSymbol":"LOC112267984","entrezGeneId":112267984},{"hugoGeneSymbol":"LOC112267985","entrezGeneId":112267985},{"hugoGeneSymbol":"LOC112267986","entrezGeneId":112267986},{"hugoGeneSymbol":"LOC112267987","entrezGeneId":112267987},{"hugoGeneSymbol":"LOC112267988","entrezGeneId":112267988},{"hugoGeneSymbol":"LOC112267989","entrezGeneId":112267989},{"hugoGeneSymbol":"LOC112267990","entrezGeneId":112267990},{"hugoGeneSymbol":"LOC112267991","entrezGeneId":112267991},{"hugoGeneSymbol":"LOC112267992","entrezGeneId":112267992},{"hugoGeneSymbol":"LOC112267993","entrezGeneId":112267993},{"hugoGeneSymbol":"LOC112267994","entrezGeneId":112267994},{"hugoGeneSymbol":"LOC112267995","entrezGeneId":112267995},{"hugoGeneSymbol":"LOC112267996","entrezGeneId":112267996},{"hugoGeneSymbol":"LOC112267997","entrezGeneId":112267997},{"hugoGeneSymbol":"LOC112267998","entrezGeneId":112267998},{"hugoGeneSymbol":"LOC112267999","entrezGeneId":112267999},{"hugoGeneSymbol":"LOC112268000","entrezGeneId":112268000},{"hugoGeneSymbol":"LOC112268001","entrezGeneId":112268001},{"hugoGeneSymbol":"LOC112268002","entrezGeneId":112268002},{"hugoGeneSymbol":"LOC112268003","entrezGeneId":112268003},{"hugoGeneSymbol":"LOC112268004","entrezGeneId":112268004},{"hugoGeneSymbol":"LOC112268005","entrezGeneId":112268005},{"hugoGeneSymbol":"LOC112268006","entrezGeneId":112268006},{"hugoGeneSymbol":"LOC112268007","entrezGeneId":112268007},{"hugoGeneSymbol":"LOC112268008","entrezGeneId":112268008},{"hugoGeneSymbol":"LOC112268009","entrezGeneId":112268009},{"hugoGeneSymbol":"LOC112268010","entrezGeneId":112268010},{"hugoGeneSymbol":"LOC112268011","entrezGeneId":112268011},{"hugoGeneSymbol":"LOC112268012","entrezGeneId":112268012},{"hugoGeneSymbol":"LOC112268013","entrezGeneId":112268013},{"hugoGeneSymbol":"LOC112268014","entrezGeneId":112268014},{"hugoGeneSymbol":"LOC112268015","entrezGeneId":112268015},{"hugoGeneSymbol":"LOC112268016","entrezGeneId":112268016},{"hugoGeneSymbol":"LOC112268017","entrezGeneId":112268017},{"hugoGeneSymbol":"LOC112268018","entrezGeneId":112268018},{"hugoGeneSymbol":"LOC112268019","entrezGeneId":112268019},{"hugoGeneSymbol":"LOC112268020","entrezGeneId":112268020},{"hugoGeneSymbol":"LOC112268021","entrezGeneId":112268021},{"hugoGeneSymbol":"LOC112268022","entrezGeneId":112268022},{"hugoGeneSymbol":"LOC112268023","entrezGeneId":112268023},{"hugoGeneSymbol":"LOC112268024","entrezGeneId":112268024},{"hugoGeneSymbol":"LOC112268025","entrezGeneId":112268025},{"hugoGeneSymbol":"LOC112268026","entrezGeneId":112268026},{"hugoGeneSymbol":"LOC112268027","entrezGeneId":112268027},{"hugoGeneSymbol":"LOC112268028","entrezGeneId":112268028},{"hugoGeneSymbol":"LOC112268029","entrezGeneId":112268029},{"hugoGeneSymbol":"LOC112268030","entrezGeneId":112268030},{"hugoGeneSymbol":"LOC112268031","entrezGeneId":112268031},{"hugoGeneSymbol":"LOC112268032","entrezGeneId":112268032},{"hugoGeneSymbol":"LOC112268033","entrezGeneId":112268033},{"hugoGeneSymbol":"LOC112268034","entrezGeneId":112268034},{"hugoGeneSymbol":"LOC112268035","entrezGeneId":112268035},{"hugoGeneSymbol":"LOC112268036","entrezGeneId":112268036},{"hugoGeneSymbol":"LOC112268037","entrezGeneId":112268037},{"hugoGeneSymbol":"LOC112268038","entrezGeneId":112268038},{"hugoGeneSymbol":"LOC112268039","entrezGeneId":112268039},{"hugoGeneSymbol":"LOC112268040","entrezGeneId":112268040},{"hugoGeneSymbol":"LOC112268041","entrezGeneId":112268041},{"hugoGeneSymbol":"LOC112268042","entrezGeneId":112268042},{"hugoGeneSymbol":"LOC112268043","entrezGeneId":112268043},{"hugoGeneSymbol":"LOC112268044","entrezGeneId":112268044},{"hugoGeneSymbol":"LOC112268045","entrezGeneId":112268045},{"hugoGeneSymbol":"LOC112268046","entrezGeneId":112268046},{"hugoGeneSymbol":"LOC112268047","entrezGeneId":112268047},{"hugoGeneSymbol":"LOC112268048","entrezGeneId":112268048},{"hugoGeneSymbol":"LOC112268049","entrezGeneId":112268049},{"hugoGeneSymbol":"LOC112268050","entrezGeneId":112268050},{"hugoGeneSymbol":"LOC112268051","entrezGeneId":112268051},{"hugoGeneSymbol":"LOC112268052","entrezGeneId":112268052},{"hugoGeneSymbol":"LOC112268053","entrezGeneId":112268053},{"hugoGeneSymbol":"LOC112268054","entrezGeneId":112268054},{"hugoGeneSymbol":"LOC112268055","entrezGeneId":112268055},{"hugoGeneSymbol":"LOC112268056","entrezGeneId":112268056},{"hugoGeneSymbol":"LOC112268057","entrezGeneId":112268057},{"hugoGeneSymbol":"LOC112268058","entrezGeneId":112268058},{"hugoGeneSymbol":"LOC112268059","entrezGeneId":112268059},{"hugoGeneSymbol":"LOC112268060","entrezGeneId":112268060},{"hugoGeneSymbol":"LOC112268061","entrezGeneId":112268061},{"hugoGeneSymbol":"LOC112268062","entrezGeneId":112268062},{"hugoGeneSymbol":"LOC112268063","entrezGeneId":112268063},{"hugoGeneSymbol":"LOC112268064","entrezGeneId":112268064},{"hugoGeneSymbol":"LOC112268065","entrezGeneId":112268065},{"hugoGeneSymbol":"LOC112268066","entrezGeneId":112268066},{"hugoGeneSymbol":"LOC112268067","entrezGeneId":112268067},{"hugoGeneSymbol":"LOC112268068","entrezGeneId":112268068},{"hugoGeneSymbol":"LOC112268069","entrezGeneId":112268069},{"hugoGeneSymbol":"LOC112268070","entrezGeneId":112268070},{"hugoGeneSymbol":"LOC112268071","entrezGeneId":112268071},{"hugoGeneSymbol":"LOC112268072","entrezGeneId":112268072},{"hugoGeneSymbol":"LOC112268073","entrezGeneId":112268073},{"hugoGeneSymbol":"LOC112268074","entrezGeneId":112268074},{"hugoGeneSymbol":"LOC112268075","entrezGeneId":112268075},{"hugoGeneSymbol":"LOC112268076","entrezGeneId":112268076},{"hugoGeneSymbol":"LOC112268077","entrezGeneId":112268077},{"hugoGeneSymbol":"LOC112268078","entrezGeneId":112268078},{"hugoGeneSymbol":"LOC112268079","entrezGeneId":112268079},{"hugoGeneSymbol":"LOC112268080","entrezGeneId":112268080},{"hugoGeneSymbol":"LOC112268081","entrezGeneId":112268081},{"hugoGeneSymbol":"LOC112268082","entrezGeneId":112268082},{"hugoGeneSymbol":"LOC112268083","entrezGeneId":112268083},{"hugoGeneSymbol":"LOC112268084","entrezGeneId":112268084},{"hugoGeneSymbol":"LOC112268085","entrezGeneId":112268085},{"hugoGeneSymbol":"LOC112268086","entrezGeneId":112268086},{"hugoGeneSymbol":"LOC112268087","entrezGeneId":112268087},{"hugoGeneSymbol":"LOC112268088","entrezGeneId":112268088},{"hugoGeneSymbol":"LOC112268089","entrezGeneId":112268089},{"hugoGeneSymbol":"LOC112268090","entrezGeneId":112268090},{"hugoGeneSymbol":"LOC112268091","entrezGeneId":112268091},{"hugoGeneSymbol":"LOC112268092","entrezGeneId":112268092},{"hugoGeneSymbol":"LOC112268093","entrezGeneId":112268093},{"hugoGeneSymbol":"LOC112268094","entrezGeneId":112268094},{"hugoGeneSymbol":"LOC112268095","entrezGeneId":112268095},{"hugoGeneSymbol":"LOC112268096","entrezGeneId":112268096},{"hugoGeneSymbol":"LOC112268097","entrezGeneId":112268097},{"hugoGeneSymbol":"LOC112268098","entrezGeneId":112268098},{"hugoGeneSymbol":"LOC112268099","entrezGeneId":112268099},{"hugoGeneSymbol":"LOC112268100","entrezGeneId":112268100},{"hugoGeneSymbol":"LOC112268101","entrezGeneId":112268101},{"hugoGeneSymbol":"LOC112268102","entrezGeneId":112268102},{"hugoGeneSymbol":"LOC112268103","entrezGeneId":112268103},{"hugoGeneSymbol":"LOC112268104","entrezGeneId":112268104},{"hugoGeneSymbol":"LOC112268105","entrezGeneId":112268105},{"hugoGeneSymbol":"LOC112268106","entrezGeneId":112268106},{"hugoGeneSymbol":"LOC112268107","entrezGeneId":112268107},{"hugoGeneSymbol":"LOC112268108","entrezGeneId":112268108},{"hugoGeneSymbol":"LOC112268109","entrezGeneId":112268109},{"hugoGeneSymbol":"LOC112268110","entrezGeneId":112268110},{"hugoGeneSymbol":"LOC112268111","entrezGeneId":112268111},{"hugoGeneSymbol":"LOC112268112","entrezGeneId":112268112},{"hugoGeneSymbol":"LOC112268113","entrezGeneId":112268113},{"hugoGeneSymbol":"LOC112268114","entrezGeneId":112268114},{"hugoGeneSymbol":"LOC112268115","entrezGeneId":112268115},{"hugoGeneSymbol":"LOC112268116","entrezGeneId":112268116},{"hugoGeneSymbol":"LOC112268117","entrezGeneId":112268117},{"hugoGeneSymbol":"LOC112268118","entrezGeneId":112268118},{"hugoGeneSymbol":"LOC112268119","entrezGeneId":112268119},{"hugoGeneSymbol":"LOC112268120","entrezGeneId":112268120},{"hugoGeneSymbol":"LOC112268121","entrezGeneId":112268121},{"hugoGeneSymbol":"LOC112268122","entrezGeneId":112268122},{"hugoGeneSymbol":"LOC112268123","entrezGeneId":112268123},{"hugoGeneSymbol":"LOC112268124","entrezGeneId":112268124},{"hugoGeneSymbol":"LOC112268125","entrezGeneId":112268125},{"hugoGeneSymbol":"LOC112268126","entrezGeneId":112268126},{"hugoGeneSymbol":"LOC112268127","entrezGeneId":112268127},{"hugoGeneSymbol":"LOC112268128","entrezGeneId":112268128},{"hugoGeneSymbol":"LOC112268129","entrezGeneId":112268129},{"hugoGeneSymbol":"LOC112268130","entrezGeneId":112268130},{"hugoGeneSymbol":"LOC112268131","entrezGeneId":112268131},{"hugoGeneSymbol":"LOC112268132","entrezGeneId":112268132},{"hugoGeneSymbol":"LOC112268133","entrezGeneId":112268133},{"hugoGeneSymbol":"LOC112268134","entrezGeneId":112268134},{"hugoGeneSymbol":"LOC112268135","entrezGeneId":112268135},{"hugoGeneSymbol":"LOC112268136","entrezGeneId":112268136},{"hugoGeneSymbol":"LOC112268137","entrezGeneId":112268137},{"hugoGeneSymbol":"LOC112268138","entrezGeneId":112268138},{"hugoGeneSymbol":"LOC112268139","entrezGeneId":112268139},{"hugoGeneSymbol":"LOC112268140","entrezGeneId":112268140},{"hugoGeneSymbol":"LOC112268141","entrezGeneId":112268141},{"hugoGeneSymbol":"LOC112268142","entrezGeneId":112268142},{"hugoGeneSymbol":"LOC112268143","entrezGeneId":112268143},{"hugoGeneSymbol":"LOC112268144","entrezGeneId":112268144},{"hugoGeneSymbol":"LOC112268145","entrezGeneId":112268145},{"hugoGeneSymbol":"LOC112268146","entrezGeneId":112268146},{"hugoGeneSymbol":"LOC112268147","entrezGeneId":112268147},{"hugoGeneSymbol":"LOC112268148","entrezGeneId":112268148},{"hugoGeneSymbol":"LOC112268149","entrezGeneId":112268149},{"hugoGeneSymbol":"LOC112268150","entrezGeneId":112268150},{"hugoGeneSymbol":"LOC112268151","entrezGeneId":112268151},{"hugoGeneSymbol":"LOC112268152","entrezGeneId":112268152},{"hugoGeneSymbol":"LOC112268153","entrezGeneId":112268153},{"hugoGeneSymbol":"LOC112268154","entrezGeneId":112268154},{"hugoGeneSymbol":"LOC112268155","entrezGeneId":112268155},{"hugoGeneSymbol":"LOC112268156","entrezGeneId":112268156},{"hugoGeneSymbol":"LOC112268157","entrezGeneId":112268157},{"hugoGeneSymbol":"LOC112268158","entrezGeneId":112268158},{"hugoGeneSymbol":"LOC112268159","entrezGeneId":112268159},{"hugoGeneSymbol":"LOC112268160","entrezGeneId":112268160},{"hugoGeneSymbol":"LOC112268161","entrezGeneId":112268161},{"hugoGeneSymbol":"LOC112268162","entrezGeneId":112268162},{"hugoGeneSymbol":"LOC112268163","entrezGeneId":112268163},{"hugoGeneSymbol":"LOC112268164","entrezGeneId":112268164},{"hugoGeneSymbol":"LOC112268165","entrezGeneId":112268165},{"hugoGeneSymbol":"LOC112268166","entrezGeneId":112268166},{"hugoGeneSymbol":"LOC112268167","entrezGeneId":112268167},{"hugoGeneSymbol":"LOC112268168","entrezGeneId":112268168},{"hugoGeneSymbol":"LOC112268169","entrezGeneId":112268169},{"hugoGeneSymbol":"LOC112268170","entrezGeneId":112268170},{"hugoGeneSymbol":"LOC112268171","entrezGeneId":112268171},{"hugoGeneSymbol":"LOC112268172","entrezGeneId":112268172},{"hugoGeneSymbol":"LOC112268173","entrezGeneId":112268173},{"hugoGeneSymbol":"LOC112268174","entrezGeneId":112268174},{"hugoGeneSymbol":"LOC112268175","entrezGeneId":112268175},{"hugoGeneSymbol":"LOC112268176","entrezGeneId":112268176},{"hugoGeneSymbol":"LOC112268177","entrezGeneId":112268177},{"hugoGeneSymbol":"LOC112268178","entrezGeneId":112268178},{"hugoGeneSymbol":"LOC112268179","entrezGeneId":112268179},{"hugoGeneSymbol":"LOC112268180","entrezGeneId":112268180},{"hugoGeneSymbol":"LOC112268181","entrezGeneId":112268181},{"hugoGeneSymbol":"LOC112268182","entrezGeneId":112268182},{"hugoGeneSymbol":"LOC112268183","entrezGeneId":112268183},{"hugoGeneSymbol":"LOC112268184","entrezGeneId":112268184},{"hugoGeneSymbol":"LOC112268185","entrezGeneId":112268185},{"hugoGeneSymbol":"LOC112268186","entrezGeneId":112268186},{"hugoGeneSymbol":"LOC112268187","entrezGeneId":112268187},{"hugoGeneSymbol":"LOC112268188","entrezGeneId":112268188},{"hugoGeneSymbol":"LOC112268189","entrezGeneId":112268189},{"hugoGeneSymbol":"LOC112268190","entrezGeneId":112268190},{"hugoGeneSymbol":"LOC112268191","entrezGeneId":112268191},{"hugoGeneSymbol":"LOC112268192","entrezGeneId":112268192},{"hugoGeneSymbol":"LOC112268193","entrezGeneId":112268193},{"hugoGeneSymbol":"LOC112268194","entrezGeneId":112268194},{"hugoGeneSymbol":"LOC112268195","entrezGeneId":112268195},{"hugoGeneSymbol":"LOC112268196","entrezGeneId":112268196},{"hugoGeneSymbol":"LOC112268197","entrezGeneId":112268197},{"hugoGeneSymbol":"LOC112268198","entrezGeneId":112268198},{"hugoGeneSymbol":"LOC112268199","entrezGeneId":112268199},{"hugoGeneSymbol":"LOC112268200","entrezGeneId":112268200},{"hugoGeneSymbol":"LOC112268201","entrezGeneId":112268201},{"hugoGeneSymbol":"LOC112268202","entrezGeneId":112268202},{"hugoGeneSymbol":"LOC112268203","entrezGeneId":112268203},{"hugoGeneSymbol":"LOC112268204","entrezGeneId":112268204},{"hugoGeneSymbol":"LOC112268205","entrezGeneId":112268205},{"hugoGeneSymbol":"LOC112268206","entrezGeneId":112268206},{"hugoGeneSymbol":"LOC112268207","entrezGeneId":112268207},{"hugoGeneSymbol":"LOC112268208","entrezGeneId":112268208},{"hugoGeneSymbol":"LOC112268209","entrezGeneId":112268209},{"hugoGeneSymbol":"LOC112268210","entrezGeneId":112268210},{"hugoGeneSymbol":"LOC112268211","entrezGeneId":112268211},{"hugoGeneSymbol":"LOC112268212","entrezGeneId":112268212},{"hugoGeneSymbol":"LOC112268213","entrezGeneId":112268213},{"hugoGeneSymbol":"LOC112268214","entrezGeneId":112268214},{"hugoGeneSymbol":"LOC112268215","entrezGeneId":112268215},{"hugoGeneSymbol":"LOC112268216","entrezGeneId":112268216},{"hugoGeneSymbol":"LOC112268217","entrezGeneId":112268217},{"hugoGeneSymbol":"LOC112268218","entrezGeneId":112268218},{"hugoGeneSymbol":"LOC112268219","entrezGeneId":112268219},{"hugoGeneSymbol":"LOC112268220","entrezGeneId":112268220},{"hugoGeneSymbol":"LOC112268221","entrezGeneId":112268221},{"hugoGeneSymbol":"LOC112268222","entrezGeneId":112268222},{"hugoGeneSymbol":"LOC112268223","entrezGeneId":112268223},{"hugoGeneSymbol":"LOC112268224","entrezGeneId":112268224},{"hugoGeneSymbol":"LOC112268225","entrezGeneId":112268225},{"hugoGeneSymbol":"LOC112268226","entrezGeneId":112268226},{"hugoGeneSymbol":"LOC112268227","entrezGeneId":112268227},{"hugoGeneSymbol":"LOC112268228","entrezGeneId":112268228},{"hugoGeneSymbol":"LOC112268229","entrezGeneId":112268229},{"hugoGeneSymbol":"LOC112268230","entrezGeneId":112268230},{"hugoGeneSymbol":"LOC112268231","entrezGeneId":112268231},{"hugoGeneSymbol":"LOC112268232","entrezGeneId":112268232},{"hugoGeneSymbol":"LOC112268233","entrezGeneId":112268233},{"hugoGeneSymbol":"LOC112268234","entrezGeneId":112268234},{"hugoGeneSymbol":"LOC112268235","entrezGeneId":112268235},{"hugoGeneSymbol":"LOC112268236","entrezGeneId":112268236},{"hugoGeneSymbol":"LOC112268237","entrezGeneId":112268237},{"hugoGeneSymbol":"LOC112268238","entrezGeneId":112268238},{"hugoGeneSymbol":"LOC112268239","entrezGeneId":112268239},{"hugoGeneSymbol":"LOC112268240","entrezGeneId":112268240},{"hugoGeneSymbol":"LOC112268241","entrezGeneId":112268241},{"hugoGeneSymbol":"LOC112268242","entrezGeneId":112268242},{"hugoGeneSymbol":"LOC112268243","entrezGeneId":112268243},{"hugoGeneSymbol":"LOC112268244","entrezGeneId":112268244},{"hugoGeneSymbol":"LOC112268245","entrezGeneId":112268245},{"hugoGeneSymbol":"LOC112268246","entrezGeneId":112268246},{"hugoGeneSymbol":"LOC112268247","entrezGeneId":112268247},{"hugoGeneSymbol":"LOC112268248","entrezGeneId":112268248},{"hugoGeneSymbol":"LOC112268249","entrezGeneId":112268249},{"hugoGeneSymbol":"LOC112268250","entrezGeneId":112268250},{"hugoGeneSymbol":"LOC112268251","entrezGeneId":112268251},{"hugoGeneSymbol":"LOC112268252","entrezGeneId":112268252},{"hugoGeneSymbol":"LOC112268253","entrezGeneId":112268253},{"hugoGeneSymbol":"LOC112268254","entrezGeneId":112268254},{"hugoGeneSymbol":"LOC112268255","entrezGeneId":112268255},{"hugoGeneSymbol":"LOC112268256","entrezGeneId":112268256},{"hugoGeneSymbol":"LOC112268257","entrezGeneId":112268257},{"hugoGeneSymbol":"LOC112268258","entrezGeneId":112268258},{"hugoGeneSymbol":"LOC112268259","entrezGeneId":112268259},{"hugoGeneSymbol":"LOC112268260","entrezGeneId":112268260},{"hugoGeneSymbol":"LOC112268261","entrezGeneId":112268261},{"hugoGeneSymbol":"LOC112268262","entrezGeneId":112268262},{"hugoGeneSymbol":"LOC112268263","entrezGeneId":112268263},{"hugoGeneSymbol":"LOC112268264","entrezGeneId":112268264},{"hugoGeneSymbol":"LOC112268265","entrezGeneId":112268265},{"hugoGeneSymbol":"LOC112268266","entrezGeneId":112268266},{"hugoGeneSymbol":"LOC112268267","entrezGeneId":112268267},{"hugoGeneSymbol":"LOC112268268","entrezGeneId":112268268},{"hugoGeneSymbol":"LOC112268269","entrezGeneId":112268269},{"hugoGeneSymbol":"LOC112268270","entrezGeneId":112268270},{"hugoGeneSymbol":"LOC112268271","entrezGeneId":112268271},{"hugoGeneSymbol":"LOC112268272","entrezGeneId":112268272},{"hugoGeneSymbol":"LOC112268273","entrezGeneId":112268273},{"hugoGeneSymbol":"LOC112268274","entrezGeneId":112268274},{"hugoGeneSymbol":"LOC112268275","entrezGeneId":112268275},{"hugoGeneSymbol":"LOC112268276","entrezGeneId":112268276},{"hugoGeneSymbol":"LOC112268277","entrezGeneId":112268277},{"hugoGeneSymbol":"LOC112268278","entrezGeneId":112268278},{"hugoGeneSymbol":"LOC112268279","entrezGeneId":112268279},{"hugoGeneSymbol":"LOC112268280","entrezGeneId":112268280},{"hugoGeneSymbol":"LOC112268281","entrezGeneId":112268281},{"hugoGeneSymbol":"LOC112268282","entrezGeneId":112268282},{"hugoGeneSymbol":"LOC112268283","entrezGeneId":112268283},{"hugoGeneSymbol":"LOC112268284","entrezGeneId":112268284},{"hugoGeneSymbol":"LOC112268285","entrezGeneId":112268285},{"hugoGeneSymbol":"LOC112268286","entrezGeneId":112268286},{"hugoGeneSymbol":"LOC112268287","entrezGeneId":112268287},{"hugoGeneSymbol":"LOC112268288","entrezGeneId":112268288},{"hugoGeneSymbol":"LOC112268289","entrezGeneId":112268289},{"hugoGeneSymbol":"LOC112268290","entrezGeneId":112268290},{"hugoGeneSymbol":"LOC112268291","entrezGeneId":112268291},{"hugoGeneSymbol":"LOC112268292","entrezGeneId":112268292},{"hugoGeneSymbol":"LOC112268293","entrezGeneId":112268293},{"hugoGeneSymbol":"LOC112268294","entrezGeneId":112268294},{"hugoGeneSymbol":"LOC112268295","entrezGeneId":112268295},{"hugoGeneSymbol":"LOC112268296","entrezGeneId":112268296},{"hugoGeneSymbol":"LOC112268297","entrezGeneId":112268297},{"hugoGeneSymbol":"LOC112268298","entrezGeneId":112268298},{"hugoGeneSymbol":"LOC112268299","entrezGeneId":112268299},{"hugoGeneSymbol":"LOC112268300","entrezGeneId":112268300},{"hugoGeneSymbol":"LOC112268301","entrezGeneId":112268301},{"hugoGeneSymbol":"LOC112268302","entrezGeneId":112268302},{"hugoGeneSymbol":"LOC112268303","entrezGeneId":112268303},{"hugoGeneSymbol":"LOC112268304","entrezGeneId":112268304},{"hugoGeneSymbol":"LOC112268305","entrezGeneId":112268305},{"hugoGeneSymbol":"LOC112268306","entrezGeneId":112268306},{"hugoGeneSymbol":"LOC112268307","entrezGeneId":112268307},{"hugoGeneSymbol":"LOC112268308","entrezGeneId":112268308},{"hugoGeneSymbol":"LOC112268309","entrezGeneId":112268309},{"hugoGeneSymbol":"LOC112268310","entrezGeneId":112268310},{"hugoGeneSymbol":"LOC112268311","entrezGeneId":112268311},{"hugoGeneSymbol":"LOC112268312","entrezGeneId":112268312},{"hugoGeneSymbol":"LOC112268313","entrezGeneId":112268313},{"hugoGeneSymbol":"LOC112268314","entrezGeneId":112268314},{"hugoGeneSymbol":"LOC112268315","entrezGeneId":112268315},{"hugoGeneSymbol":"LOC112268316","entrezGeneId":112268316},{"hugoGeneSymbol":"LOC112268317","entrezGeneId":112268317},{"hugoGeneSymbol":"LOC112268318","entrezGeneId":112268318},{"hugoGeneSymbol":"LOC112268319","entrezGeneId":112268319},{"hugoGeneSymbol":"LOC112268320","entrezGeneId":112268320},{"hugoGeneSymbol":"LOC112268321","entrezGeneId":112268321},{"hugoGeneSymbol":"LOC112268322","entrezGeneId":112268322},{"hugoGeneSymbol":"LOC112268323","entrezGeneId":112268323},{"hugoGeneSymbol":"LOC112268324","entrezGeneId":112268324},{"hugoGeneSymbol":"LOC112268325","entrezGeneId":112268325},{"hugoGeneSymbol":"LOC112268326","entrezGeneId":112268326},{"hugoGeneSymbol":"LOC112268327","entrezGeneId":112268327},{"hugoGeneSymbol":"LOC112268328","entrezGeneId":112268328},{"hugoGeneSymbol":"LOC112268329","entrezGeneId":112268329},{"hugoGeneSymbol":"LOC112268330","entrezGeneId":112268330},{"hugoGeneSymbol":"LOC112268331","entrezGeneId":112268331},{"hugoGeneSymbol":"LOC112268332","entrezGeneId":112268332},{"hugoGeneSymbol":"LOC112268333","entrezGeneId":112268333},{"hugoGeneSymbol":"LOC112268334","entrezGeneId":112268334},{"hugoGeneSymbol":"LOC112268335","entrezGeneId":112268335},{"hugoGeneSymbol":"LOC112268336","entrezGeneId":112268336},{"hugoGeneSymbol":"LOC112268337","entrezGeneId":112268337},{"hugoGeneSymbol":"LOC112268338","entrezGeneId":112268338},{"hugoGeneSymbol":"LOC112268339","entrezGeneId":112268339},{"hugoGeneSymbol":"LOC112268340","entrezGeneId":112268340},{"hugoGeneSymbol":"LOC112268341","entrezGeneId":112268341},{"hugoGeneSymbol":"LOC112268342","entrezGeneId":112268342},{"hugoGeneSymbol":"LOC112268343","entrezGeneId":112268343},{"hugoGeneSymbol":"LOC112268344","entrezGeneId":112268344},{"hugoGeneSymbol":"LOC112268345","entrezGeneId":112268345},{"hugoGeneSymbol":"LOC112268346","entrezGeneId":112268346},{"hugoGeneSymbol":"LOC112268347","entrezGeneId":112268347},{"hugoGeneSymbol":"LOC112268348","entrezGeneId":112268348},{"hugoGeneSymbol":"LOC112268349","entrezGeneId":112268349},{"hugoGeneSymbol":"LOC112268350","entrezGeneId":112268350},{"hugoGeneSymbol":"LOC112268351","entrezGeneId":112268351},{"hugoGeneSymbol":"LOC112268352","entrezGeneId":112268352},{"hugoGeneSymbol":"LOC112268353","entrezGeneId":112268353},{"hugoGeneSymbol":"LOC112268354","entrezGeneId":112268354},{"hugoGeneSymbol":"LOC112268355","entrezGeneId":112268355},{"hugoGeneSymbol":"LOC112268356","entrezGeneId":112268356},{"hugoGeneSymbol":"LOC112268357","entrezGeneId":112268357},{"hugoGeneSymbol":"LOC112268358","entrezGeneId":112268358},{"hugoGeneSymbol":"LOC112268359","entrezGeneId":112268359},{"hugoGeneSymbol":"LOC112268360","entrezGeneId":112268360},{"hugoGeneSymbol":"LOC112268361","entrezGeneId":112268361},{"hugoGeneSymbol":"LOC112268362","entrezGeneId":112268362},{"hugoGeneSymbol":"LOC112268363","entrezGeneId":112268363},{"hugoGeneSymbol":"LOC112268364","entrezGeneId":112268364},{"hugoGeneSymbol":"LOC112268365","entrezGeneId":112268365},{"hugoGeneSymbol":"LOC112268366","entrezGeneId":112268366},{"hugoGeneSymbol":"LOC112268367","entrezGeneId":112268367},{"hugoGeneSymbol":"LOC112268368","entrezGeneId":112268368},{"hugoGeneSymbol":"LOC112268369","entrezGeneId":112268369},{"hugoGeneSymbol":"LOC112268370","entrezGeneId":112268370},{"hugoGeneSymbol":"LOC112268371","entrezGeneId":112268371},{"hugoGeneSymbol":"LOC112268372","entrezGeneId":112268372},{"hugoGeneSymbol":"LOC112268373","entrezGeneId":112268373},{"hugoGeneSymbol":"LOC112268374","entrezGeneId":112268374},{"hugoGeneSymbol":"LOC112268375","entrezGeneId":112268375},{"hugoGeneSymbol":"LOC112268376","entrezGeneId":112268376},{"hugoGeneSymbol":"LOC112268377","entrezGeneId":112268377},{"hugoGeneSymbol":"LOC112268378","entrezGeneId":112268378},{"hugoGeneSymbol":"LOC112268379","entrezGeneId":112268379},{"hugoGeneSymbol":"LOC112268380","entrezGeneId":112268380},{"hugoGeneSymbol":"LOC112268381","entrezGeneId":112268381},{"hugoGeneSymbol":"LOC112268382","entrezGeneId":112268382},{"hugoGeneSymbol":"LOC112268383","entrezGeneId":112268383},{"hugoGeneSymbol":"LOC112268384","entrezGeneId":112268384},{"hugoGeneSymbol":"LOC112268385","entrezGeneId":112268385},{"hugoGeneSymbol":"LOC112268386","entrezGeneId":112268386},{"hugoGeneSymbol":"LOC112268387","entrezGeneId":112268387},{"hugoGeneSymbol":"LOC112268388","entrezGeneId":112268388},{"hugoGeneSymbol":"LOC112268389","entrezGeneId":112268389},{"hugoGeneSymbol":"LOC112268390","entrezGeneId":112268390},{"hugoGeneSymbol":"LOC112268391","entrezGeneId":112268391},{"hugoGeneSymbol":"LOC112268392","entrezGeneId":112268392},{"hugoGeneSymbol":"LOC112268393","entrezGeneId":112268393},{"hugoGeneSymbol":"LOC112268394","entrezGeneId":112268394},{"hugoGeneSymbol":"LOC112268395","entrezGeneId":112268395},{"hugoGeneSymbol":"LOC112268396","entrezGeneId":112268396},{"hugoGeneSymbol":"LOC112268397","entrezGeneId":112268397},{"hugoGeneSymbol":"LOC112268398","entrezGeneId":112268398},{"hugoGeneSymbol":"LOC112268399","entrezGeneId":112268399},{"hugoGeneSymbol":"LOC112268400","entrezGeneId":112268400},{"hugoGeneSymbol":"LOC112268401","entrezGeneId":112268401},{"hugoGeneSymbol":"LOC112268402","entrezGeneId":112268402},{"hugoGeneSymbol":"LOC112268403","entrezGeneId":112268403},{"hugoGeneSymbol":"LOC112268404","entrezGeneId":112268404},{"hugoGeneSymbol":"LOC112268405","entrezGeneId":112268405},{"hugoGeneSymbol":"LOC112268406","entrezGeneId":112268406},{"hugoGeneSymbol":"LOC112268407","entrezGeneId":112268407},{"hugoGeneSymbol":"LOC112268408","entrezGeneId":112268408},{"hugoGeneSymbol":"LOC112268409","entrezGeneId":112268409},{"hugoGeneSymbol":"LOC112268410","entrezGeneId":112268410},{"hugoGeneSymbol":"LOC112268411","entrezGeneId":112268411},{"hugoGeneSymbol":"LOC112268412","entrezGeneId":112268412},{"hugoGeneSymbol":"LOC112268413","entrezGeneId":112268413},{"hugoGeneSymbol":"LOC112268414","entrezGeneId":112268414},{"hugoGeneSymbol":"LOC112268415","entrezGeneId":112268415},{"hugoGeneSymbol":"LOC112268416","entrezGeneId":112268416},{"hugoGeneSymbol":"LOC112268417","entrezGeneId":112268417},{"hugoGeneSymbol":"LOC112268418","entrezGeneId":112268418},{"hugoGeneSymbol":"LOC112268419","entrezGeneId":112268419},{"hugoGeneSymbol":"LOC112268420","entrezGeneId":112268420},{"hugoGeneSymbol":"LOC112268421","entrezGeneId":112268421},{"hugoGeneSymbol":"LOC112268422","entrezGeneId":112268422},{"hugoGeneSymbol":"LOC112268423","entrezGeneId":112268423},{"hugoGeneSymbol":"LOC112268424","entrezGeneId":112268424},{"hugoGeneSymbol":"LOC112268425","entrezGeneId":112268425},{"hugoGeneSymbol":"LOC112268426","entrezGeneId":112268426},{"hugoGeneSymbol":"LOC112268427","entrezGeneId":112268427},{"hugoGeneSymbol":"LOC112268428","entrezGeneId":112268428},{"hugoGeneSymbol":"LOC112268429","entrezGeneId":112268429},{"hugoGeneSymbol":"LOC112268430","entrezGeneId":112268430},{"hugoGeneSymbol":"LOC112268431","entrezGeneId":112268431},{"hugoGeneSymbol":"LOC112268432","entrezGeneId":112268432},{"hugoGeneSymbol":"LOC112268433","entrezGeneId":112268433},{"hugoGeneSymbol":"LOC112268434","entrezGeneId":112268434},{"hugoGeneSymbol":"LOC112268435","entrezGeneId":112268435},{"hugoGeneSymbol":"LOC112268436","entrezGeneId":112268436},{"hugoGeneSymbol":"LOC112268437","entrezGeneId":112268437},{"hugoGeneSymbol":"LOC112268438","entrezGeneId":112268438},{"hugoGeneSymbol":"LOC112268439","entrezGeneId":112268439},{"hugoGeneSymbol":"LOC112268440","entrezGeneId":112268440},{"hugoGeneSymbol":"LOC112268441","entrezGeneId":112268441},{"hugoGeneSymbol":"LOC112268442","entrezGeneId":112268442},{"hugoGeneSymbol":"LOC112268443","entrezGeneId":112268443},{"hugoGeneSymbol":"LOC112268444","entrezGeneId":112268444},{"hugoGeneSymbol":"LOC112268445","entrezGeneId":112268445},{"hugoGeneSymbol":"LOC112268446","entrezGeneId":112268446},{"hugoGeneSymbol":"LOC112268447","entrezGeneId":112268447},{"hugoGeneSymbol":"LOC112268448","entrezGeneId":112268448},{"hugoGeneSymbol":"LOC112268449","entrezGeneId":112268449},{"hugoGeneSymbol":"LOC112268450","entrezGeneId":112268450},{"hugoGeneSymbol":"LOC112268451","entrezGeneId":112268451},{"hugoGeneSymbol":"LOC112268452","entrezGeneId":112268452},{"hugoGeneSymbol":"LOC112268453","entrezGeneId":112268453},{"hugoGeneSymbol":"LOC112268454","entrezGeneId":112268454},{"hugoGeneSymbol":"LOC112268455","entrezGeneId":112268455},{"hugoGeneSymbol":"LOC112268456","entrezGeneId":112268456},{"hugoGeneSymbol":"LOC112268457","entrezGeneId":112268457},{"hugoGeneSymbol":"LOC112268458","entrezGeneId":112268458},{"hugoGeneSymbol":"LOC112268459","entrezGeneId":112268459},{"hugoGeneSymbol":"LOC112268460","entrezGeneId":112268460},{"hugoGeneSymbol":"LOC112268461","entrezGeneId":112268461},{"hugoGeneSymbol":"LOC112268462","entrezGeneId":112268462},{"hugoGeneSymbol":"LOC112268463","entrezGeneId":112268463},{"hugoGeneSymbol":"LOC112268464","entrezGeneId":112268464},{"hugoGeneSymbol":"LOC112268465","entrezGeneId":112268465},{"hugoGeneSymbol":"LOC112268466","entrezGeneId":112268466},{"hugoGeneSymbol":"LOC112268467","entrezGeneId":112268467},{"hugoGeneSymbol":"LOC112268468","entrezGeneId":112268468},{"hugoGeneSymbol":"LOC112268469","entrezGeneId":112268469},{"hugoGeneSymbol":"LOC112268470","entrezGeneId":112268470},{"hugoGeneSymbol":"LOC112268471","entrezGeneId":112268471},{"hugoGeneSymbol":"LOC112268472","entrezGeneId":112268472},{"hugoGeneSymbol":"LOC112268473","entrezGeneId":112268473},{"hugoGeneSymbol":"LOC112268474","entrezGeneId":112268474},{"hugoGeneSymbol":"LOC112268475","entrezGeneId":112268475},{"hugoGeneSymbol":"LOC112268478","entrezGeneId":112268478},{"hugoGeneSymbol":"LOC112268479","entrezGeneId":112268479},{"hugoGeneSymbol":"LOC112268480","entrezGeneId":112268480},{"hugoGeneSymbol":"LOC112268481","entrezGeneId":112268481},{"hugoGeneSymbol":"LOC112268482","entrezGeneId":112268482},{"hugoGeneSymbol":"LOC112268483","entrezGeneId":112268483},{"hugoGeneSymbol":"LOC112268484","entrezGeneId":112268484},{"hugoGeneSymbol":"LOC112268485","entrezGeneId":112268485},{"hugoGeneSymbol":"LOC112268486","entrezGeneId":112268486},{"hugoGeneSymbol":"LOC112272545","entrezGeneId":112272545},{"hugoGeneSymbol":"LOC112272546","entrezGeneId":112272546},{"hugoGeneSymbol":"LOC112272548","entrezGeneId":112272548},{"hugoGeneSymbol":"LOC112272549","entrezGeneId":112272549},{"hugoGeneSymbol":"LOC112272550","entrezGeneId":112272550},{"hugoGeneSymbol":"LOC112272551","entrezGeneId":112272551},{"hugoGeneSymbol":"LOC112272552","entrezGeneId":112272552},{"hugoGeneSymbol":"LOC112272553","entrezGeneId":112272553},{"hugoGeneSymbol":"LOC112272554","entrezGeneId":112272554},{"hugoGeneSymbol":"LOC112272555","entrezGeneId":112272555},{"hugoGeneSymbol":"LOC112272556","entrezGeneId":112272556},{"hugoGeneSymbol":"LOC112272557","entrezGeneId":112272557},{"hugoGeneSymbol":"LOC112272558","entrezGeneId":112272558},{"hugoGeneSymbol":"LOC112272559","entrezGeneId":112272559},{"hugoGeneSymbol":"LOC112272560","entrezGeneId":112272560},{"hugoGeneSymbol":"LOC112272561","entrezGeneId":112272561},{"hugoGeneSymbol":"LOC112272566","entrezGeneId":112272566},{"hugoGeneSymbol":"LOC112272567","entrezGeneId":112272567},{"hugoGeneSymbol":"LOC112272568","entrezGeneId":112272568},{"hugoGeneSymbol":"LOC112272569","entrezGeneId":112272569},{"hugoGeneSymbol":"LOC112272570","entrezGeneId":112272570},{"hugoGeneSymbol":"LOC112272571","entrezGeneId":112272571},{"hugoGeneSymbol":"LOC112272572","entrezGeneId":112272572},{"hugoGeneSymbol":"LOC112272573","entrezGeneId":112272573},{"hugoGeneSymbol":"LOC112272574","entrezGeneId":112272574},{"hugoGeneSymbol":"LOC112272575","entrezGeneId":112272575},{"hugoGeneSymbol":"LOC112272576","entrezGeneId":112272576},{"hugoGeneSymbol":"LOC112272578","entrezGeneId":112272578},{"hugoGeneSymbol":"LOC112272579","entrezGeneId":112272579},{"hugoGeneSymbol":"LOC112272580","entrezGeneId":112272580},{"hugoGeneSymbol":"LOC112272581","entrezGeneId":112272581},{"hugoGeneSymbol":"LOC112272582","entrezGeneId":112272582},{"hugoGeneSymbol":"LOC112272583","entrezGeneId":112272583},{"hugoGeneSymbol":"LOC112272584","entrezGeneId":112272584},{"hugoGeneSymbol":"LOC112272585","entrezGeneId":112272585},{"hugoGeneSymbol":"LOC112272586","entrezGeneId":112272586},{"hugoGeneSymbol":"LOC112272587","entrezGeneId":112272587},{"hugoGeneSymbol":"LOC112272590","entrezGeneId":112272590},{"hugoGeneSymbol":"LOC112272591","entrezGeneId":112272591},{"hugoGeneSymbol":"LOC112272592","entrezGeneId":112272592},{"hugoGeneSymbol":"LOC112272593","entrezGeneId":112272593},{"hugoGeneSymbol":"LOC112272594","entrezGeneId":112272594},{"hugoGeneSymbol":"LOC112272596","entrezGeneId":112272596},{"hugoGeneSymbol":"LOC112272597","entrezGeneId":112272597},{"hugoGeneSymbol":"LOC112272598","entrezGeneId":112272598},{"hugoGeneSymbol":"LOC112272599","entrezGeneId":112272599},{"hugoGeneSymbol":"LOC112272600","entrezGeneId":112272600},{"hugoGeneSymbol":"LOC112272602","entrezGeneId":112272602},{"hugoGeneSymbol":"LOC112272603","entrezGeneId":112272603},{"hugoGeneSymbol":"LOC112272604","entrezGeneId":112272604},{"hugoGeneSymbol":"LOC112272605","entrezGeneId":112272605},{"hugoGeneSymbol":"LOC112272606","entrezGeneId":112272606},{"hugoGeneSymbol":"LOC112272607","entrezGeneId":112272607},{"hugoGeneSymbol":"LOC112272608","entrezGeneId":112272608},{"hugoGeneSymbol":"LOC112272609","entrezGeneId":112272609},{"hugoGeneSymbol":"LOC112272610","entrezGeneId":112272610},{"hugoGeneSymbol":"LOC112272613","entrezGeneId":112272613},{"hugoGeneSymbol":"LOC112272614","entrezGeneId":112272614},{"hugoGeneSymbol":"LOC112272615","entrezGeneId":112272615},{"hugoGeneSymbol":"LOC112272616","entrezGeneId":112272616},{"hugoGeneSymbol":"LOC112272617","entrezGeneId":112272617},{"hugoGeneSymbol":"LOC112272618","entrezGeneId":112272618},{"hugoGeneSymbol":"LOC112272619","entrezGeneId":112272619},{"hugoGeneSymbol":"LOC112272620","entrezGeneId":112272620},{"hugoGeneSymbol":"LOC112272621","entrezGeneId":112272621},{"hugoGeneSymbol":"LOC112272622","entrezGeneId":112272622},{"hugoGeneSymbol":"LOC112272623","entrezGeneId":112272623},{"hugoGeneSymbol":"LOC114224","entrezGeneId":114224},{"hugoGeneSymbol":"LOC121296","entrezGeneId":121296},{"hugoGeneSymbol":"LOC123862","entrezGeneId":123862},{"hugoGeneSymbol":"LOC124865","entrezGeneId":124865},{"hugoGeneSymbol":"LOC126860","entrezGeneId":126860},{"hugoGeneSymbol":"LOC126987","entrezGeneId":126987},{"hugoGeneSymbol":"LOC127011","entrezGeneId":127011},{"hugoGeneSymbol":"LOC128136","entrezGeneId":128136},{"hugoGeneSymbol":"LOC129026","entrezGeneId":129026},{"hugoGeneSymbol":"LOC129522","entrezGeneId":129522},{"hugoGeneSymbol":"LOC129656","entrezGeneId":129656},{"hugoGeneSymbol":"LOC131054","entrezGeneId":131054},{"hugoGeneSymbol":"LOC132386","entrezGeneId":132386},{"hugoGeneSymbol":"LOC133332","entrezGeneId":133332},{"hugoGeneSymbol":"LOC139061","entrezGeneId":139061},{"hugoGeneSymbol":"LOC139952","entrezGeneId":139952},{"hugoGeneSymbol":"LOC139957","entrezGeneId":139957},{"hugoGeneSymbol":"LOC143666","entrezGeneId":143666},{"hugoGeneSymbol":"LOC145474","entrezGeneId":145474},{"hugoGeneSymbol":"LOC145694","entrezGeneId":145694},{"hugoGeneSymbol":"LOC145783","entrezGeneId":145783},{"hugoGeneSymbol":"LOC145845","entrezGeneId":145845},{"hugoGeneSymbol":"LOC146253","entrezGeneId":146253},{"hugoGeneSymbol":"LOC147004","entrezGeneId":147004},{"hugoGeneSymbol":"LOC148413","entrezGeneId":148413},{"hugoGeneSymbol":"LOC148430","entrezGeneId":148430},{"hugoGeneSymbol":"LOC148696","entrezGeneId":148696},{"hugoGeneSymbol":"LOC148709","entrezGeneId":148709},{"hugoGeneSymbol":"LOC149373","entrezGeneId":149373},{"hugoGeneSymbol":"LOC149684","entrezGeneId":149684},{"hugoGeneSymbol":"LOC149844","entrezGeneId":149844},{"hugoGeneSymbol":"LOC149935","entrezGeneId":149935},{"hugoGeneSymbol":"LOC150051","entrezGeneId":150051},{"hugoGeneSymbol":"LOC150417","entrezGeneId":150417},{"hugoGeneSymbol":"LOC150776","entrezGeneId":150776},{"hugoGeneSymbol":"LOC150935","entrezGeneId":150935},{"hugoGeneSymbol":"LOC151174","entrezGeneId":151174},{"hugoGeneSymbol":"LOC151457","entrezGeneId":151457},{"hugoGeneSymbol":"LOC151484","entrezGeneId":151484},{"hugoGeneSymbol":"LOC151760","entrezGeneId":151760},{"hugoGeneSymbol":"LOC152048","entrezGeneId":152048},{"hugoGeneSymbol":"LOC152594","entrezGeneId":152594},{"hugoGeneSymbol":"LOC152845","entrezGeneId":152845},{"hugoGeneSymbol":"LOC153684","entrezGeneId":153684},{"hugoGeneSymbol":"LOC153893","entrezGeneId":153893},{"hugoGeneSymbol":"LOC153910","entrezGeneId":153910},{"hugoGeneSymbol":"LOC154449","entrezGeneId":154449},{"hugoGeneSymbol":"LOC154761","entrezGeneId":154761},{"hugoGeneSymbol":"LOC154937","entrezGeneId":154937},{"hugoGeneSymbol":"LOC155060","entrezGeneId":155060},{"hugoGeneSymbol":"LOC157273","entrezGeneId":157273},{"hugoGeneSymbol":"LOC158434","entrezGeneId":158434},{"hugoGeneSymbol":"LOC158435","entrezGeneId":158435},{"hugoGeneSymbol":"LOC158781","entrezGeneId":158781},{"hugoGeneSymbol":"LOC158948","entrezGeneId":158948},{"hugoGeneSymbol":"LOC159007","entrezGeneId":159007},{"hugoGeneSymbol":"LOC162137","entrezGeneId":162137},{"hugoGeneSymbol":"LOC171391","entrezGeneId":171391},{"hugoGeneSymbol":"LOC171417","entrezGeneId":171417},{"hugoGeneSymbol":"LOC196469","entrezGeneId":196469},{"hugoGeneSymbol":"LOC199882","entrezGeneId":199882},{"hugoGeneSymbol":"LOC200772","entrezGeneId":200772},{"hugoGeneSymbol":"LOC202181","entrezGeneId":202181},{"hugoGeneSymbol":"LOC202319","entrezGeneId":202319},{"hugoGeneSymbol":"LOC203930","entrezGeneId":203930},{"hugoGeneSymbol":"LOC204800","entrezGeneId":204800},{"hugoGeneSymbol":"LOC220077","entrezGeneId":220077},{"hugoGeneSymbol":"LOC220729","entrezGeneId":220729},{"hugoGeneSymbol":"LOC221122","entrezGeneId":221122},{"hugoGeneSymbol":"LOC221946","entrezGeneId":221946},{"hugoGeneSymbol":"LOC246784","entrezGeneId":246784},{"hugoGeneSymbol":"LOC254028","entrezGeneId":254028},{"hugoGeneSymbol":"LOC254896","entrezGeneId":254896},{"hugoGeneSymbol":"LOC256880","entrezGeneId":256880},{"hugoGeneSymbol":"LOC257396","entrezGeneId":257396},{"hugoGeneSymbol":"LOC260331","entrezGeneId":260331},{"hugoGeneSymbol":"LOC260339","entrezGeneId":260339},{"hugoGeneSymbol":"LOC260421","entrezGeneId":260421},{"hugoGeneSymbol":"LOC260422","entrezGeneId":260422},{"hugoGeneSymbol":"LOC266683","entrezGeneId":266683},{"hugoGeneSymbol":"LOC266694","entrezGeneId":266694},{"hugoGeneSymbol":"LOC268276","entrezGeneId":268276},{"hugoGeneSymbol":"LOC282551","entrezGeneId":282551},{"hugoGeneSymbol":"LOC283028","entrezGeneId":283028},{"hugoGeneSymbol":"LOC283038","entrezGeneId":283038},{"hugoGeneSymbol":"LOC283045","entrezGeneId":283045},{"hugoGeneSymbol":"LOC283140","entrezGeneId":283140},{"hugoGeneSymbol":"LOC283172","entrezGeneId":283172},{"hugoGeneSymbol":"LOC283177","entrezGeneId":283177},{"hugoGeneSymbol":"LOC283194","entrezGeneId":283194},{"hugoGeneSymbol":"LOC283214","entrezGeneId":283214},{"hugoGeneSymbol":"LOC283299","entrezGeneId":283299},{"hugoGeneSymbol":"LOC283335","entrezGeneId":283335},{"hugoGeneSymbol":"LOC283387","entrezGeneId":283387},{"hugoGeneSymbol":"LOC283435","entrezGeneId":283435},{"hugoGeneSymbol":"LOC283665","entrezGeneId":283665},{"hugoGeneSymbol":"LOC283683","entrezGeneId":283683},{"hugoGeneSymbol":"LOC283710","entrezGeneId":283710},{"hugoGeneSymbol":"LOC283731","entrezGeneId":283731},{"hugoGeneSymbol":"LOC283788","entrezGeneId":283788},{"hugoGeneSymbol":"LOC283804","entrezGeneId":283804},{"hugoGeneSymbol":"LOC283856","entrezGeneId":283856},{"hugoGeneSymbol":"LOC283922","entrezGeneId":283922},{"hugoGeneSymbol":"LOC284009","entrezGeneId":284009},{"hugoGeneSymbol":"LOC284191","entrezGeneId":284191},{"hugoGeneSymbol":"LOC284240","entrezGeneId":284240},{"hugoGeneSymbol":"LOC284241","entrezGeneId":284241},{"hugoGeneSymbol":"LOC284269","entrezGeneId":284269},{"hugoGeneSymbol":"LOC284344","entrezGeneId":284344},{"hugoGeneSymbol":"LOC284379","entrezGeneId":284379},{"hugoGeneSymbol":"LOC284395","entrezGeneId":284395},{"hugoGeneSymbol":"LOC284412","entrezGeneId":284412},{"hugoGeneSymbol":"LOC284441","entrezGeneId":284441},{"hugoGeneSymbol":"LOC284454","entrezGeneId":284454},{"hugoGeneSymbol":"LOC284561","entrezGeneId":284561},{"hugoGeneSymbol":"LOC284577","entrezGeneId":284577},{"hugoGeneSymbol":"LOC284578","entrezGeneId":284578},{"hugoGeneSymbol":"LOC284581","entrezGeneId":284581},{"hugoGeneSymbol":"LOC284600","entrezGeneId":284600},{"hugoGeneSymbol":"LOC284620","entrezGeneId":284620},{"hugoGeneSymbol":"LOC284632","entrezGeneId":284632},{"hugoGeneSymbol":"LOC284685","entrezGeneId":284685},{"hugoGeneSymbol":"LOC284788","entrezGeneId":284788},{"hugoGeneSymbol":"LOC284798","entrezGeneId":284798},{"hugoGeneSymbol":"LOC284865","entrezGeneId":284865},{"hugoGeneSymbol":"LOC284898","entrezGeneId":284898},{"hugoGeneSymbol":"LOC284912","entrezGeneId":284912},{"hugoGeneSymbol":"LOC284930","entrezGeneId":284930},{"hugoGeneSymbol":"LOC284933","entrezGeneId":284933},{"hugoGeneSymbol":"LOC284950","entrezGeneId":284950},{"hugoGeneSymbol":"LOC285000","entrezGeneId":285000},{"hugoGeneSymbol":"LOC285043","entrezGeneId":285043},{"hugoGeneSymbol":"LOC285074","entrezGeneId":285074},{"hugoGeneSymbol":"LOC285095","entrezGeneId":285095},{"hugoGeneSymbol":"LOC285097","entrezGeneId":285097},{"hugoGeneSymbol":"LOC285191","entrezGeneId":285191},{"hugoGeneSymbol":"LOC285232","entrezGeneId":285232},{"hugoGeneSymbol":"LOC285303","entrezGeneId":285303},{"hugoGeneSymbol":"LOC285422","entrezGeneId":285422},{"hugoGeneSymbol":"LOC285442","entrezGeneId":285442},{"hugoGeneSymbol":"LOC285453","entrezGeneId":285453},{"hugoGeneSymbol":"LOC285500","entrezGeneId":285500},{"hugoGeneSymbol":"LOC285591","entrezGeneId":285591},{"hugoGeneSymbol":"LOC285593","entrezGeneId":285593},{"hugoGeneSymbol":"LOC285626","entrezGeneId":285626},{"hugoGeneSymbol":"LOC285638","entrezGeneId":285638},{"hugoGeneSymbol":"LOC285697","entrezGeneId":285697},{"hugoGeneSymbol":"LOC285706","entrezGeneId":285706},{"hugoGeneSymbol":"LOC285762","entrezGeneId":285762},{"hugoGeneSymbol":"LOC285766","entrezGeneId":285766},{"hugoGeneSymbol":"LOC285804","entrezGeneId":285804},{"hugoGeneSymbol":"LOC285819","entrezGeneId":285819},{"hugoGeneSymbol":"LOC285847","entrezGeneId":285847},{"hugoGeneSymbol":"LOC285889","entrezGeneId":285889},{"hugoGeneSymbol":"LOC286059","entrezGeneId":286059},{"hugoGeneSymbol":"LOC286083","entrezGeneId":286083},{"hugoGeneSymbol":"LOC286177","entrezGeneId":286177},{"hugoGeneSymbol":"LOC286178","entrezGeneId":286178},{"hugoGeneSymbol":"LOC286238","entrezGeneId":286238},{"hugoGeneSymbol":"LOC286297","entrezGeneId":286297},{"hugoGeneSymbol":"LOC286359","entrezGeneId":286359},{"hugoGeneSymbol":"LOC286437","entrezGeneId":286437},{"hugoGeneSymbol":"LOC286453","entrezGeneId":286453},{"hugoGeneSymbol":"LOC286456","entrezGeneId":286456},{"hugoGeneSymbol":"LOC317727","entrezGeneId":317727},{"hugoGeneSymbol":"LOC338694","entrezGeneId":338694},{"hugoGeneSymbol":"LOC338963","entrezGeneId":338963},{"hugoGeneSymbol":"LOC339059","entrezGeneId":339059},{"hugoGeneSymbol":"LOC339166","entrezGeneId":339166},{"hugoGeneSymbol":"LOC339192","entrezGeneId":339192},{"hugoGeneSymbol":"LOC339260","entrezGeneId":339260},{"hugoGeneSymbol":"LOC339298","entrezGeneId":339298},{"hugoGeneSymbol":"LOC339352","entrezGeneId":339352},{"hugoGeneSymbol":"LOC339468","entrezGeneId":339468},{"hugoGeneSymbol":"LOC339529","entrezGeneId":339529},{"hugoGeneSymbol":"LOC339539","entrezGeneId":339539},{"hugoGeneSymbol":"LOC339593","entrezGeneId":339593},{"hugoGeneSymbol":"LOC339666","entrezGeneId":339666},{"hugoGeneSymbol":"LOC339685","entrezGeneId":339685},{"hugoGeneSymbol":"LOC339803","entrezGeneId":339803},{"hugoGeneSymbol":"LOC339862","entrezGeneId":339862},{"hugoGeneSymbol":"LOC339874","entrezGeneId":339874},{"hugoGeneSymbol":"LOC339902","entrezGeneId":339902},{"hugoGeneSymbol":"LOC339966","entrezGeneId":339966},{"hugoGeneSymbol":"LOC339975","entrezGeneId":339975},{"hugoGeneSymbol":"LOC340089","entrezGeneId":340089},{"hugoGeneSymbol":"LOC340090","entrezGeneId":340090},{"hugoGeneSymbol":"LOC340184","entrezGeneId":340184},{"hugoGeneSymbol":"LOC340268","entrezGeneId":340268},{"hugoGeneSymbol":"LOC340357","entrezGeneId":340357},{"hugoGeneSymbol":"LOC340512","entrezGeneId":340512},{"hugoGeneSymbol":"LOC340569","entrezGeneId":340569},{"hugoGeneSymbol":"LOC341056","entrezGeneId":341056},{"hugoGeneSymbol":"LOC341378","entrezGeneId":341378},{"hugoGeneSymbol":"LOC342293","entrezGeneId":342293},{"hugoGeneSymbol":"LOC342443","entrezGeneId":342443},{"hugoGeneSymbol":"LOC342784","entrezGeneId":342784},{"hugoGeneSymbol":"LOC343052","entrezGeneId":343052},{"hugoGeneSymbol":"LOC343165","entrezGeneId":343165},{"hugoGeneSymbol":"LOC343508","entrezGeneId":343508},{"hugoGeneSymbol":"LOC344065","entrezGeneId":344065},{"hugoGeneSymbol":"LOC344382","entrezGeneId":344382},{"hugoGeneSymbol":"LOC344593","entrezGeneId":344593},{"hugoGeneSymbol":"LOC344967","entrezGeneId":344967},{"hugoGeneSymbol":"LOC345471","entrezGeneId":345471},{"hugoGeneSymbol":"LOC345571","entrezGeneId":345571},{"hugoGeneSymbol":"LOC345576","entrezGeneId":345576},{"hugoGeneSymbol":"LOC346296","entrezGeneId":346296},{"hugoGeneSymbol":"LOC346329","entrezGeneId":346329},{"hugoGeneSymbol":"LOC347097","entrezGeneId":347097},{"hugoGeneSymbol":"LOC347381","entrezGeneId":347381},{"hugoGeneSymbol":"LOC347422","entrezGeneId":347422},{"hugoGeneSymbol":"LOC347674","entrezGeneId":347674},{"hugoGeneSymbol":"LOC348210","entrezGeneId":348210},{"hugoGeneSymbol":"LOC348958","entrezGeneId":348958},{"hugoGeneSymbol":"LOC349160","entrezGeneId":349160},{"hugoGeneSymbol":"LOC359819","entrezGeneId":359819},{"hugoGeneSymbol":"LOC374443","entrezGeneId":374443},{"hugoGeneSymbol":"LOC375196","entrezGeneId":375196},{"hugoGeneSymbol":"LOC387770","entrezGeneId":387770},{"hugoGeneSymbol":"LOC387810","entrezGeneId":387810},{"hugoGeneSymbol":"LOC387820","entrezGeneId":387820},{"hugoGeneSymbol":"LOC387869","entrezGeneId":387869},{"hugoGeneSymbol":"LOC388104","entrezGeneId":388104},{"hugoGeneSymbol":"LOC388242","entrezGeneId":388242},{"hugoGeneSymbol":"LOC388248","entrezGeneId":388248},{"hugoGeneSymbol":"LOC388282","entrezGeneId":388282},{"hugoGeneSymbol":"LOC388436","entrezGeneId":388436},{"hugoGeneSymbol":"LOC388572","entrezGeneId":388572},{"hugoGeneSymbol":"LOC388692","entrezGeneId":388692},{"hugoGeneSymbol":"LOC388734","entrezGeneId":388734},{"hugoGeneSymbol":"LOC388780","entrezGeneId":388780},{"hugoGeneSymbol":"LOC388813","entrezGeneId":388813},{"hugoGeneSymbol":"LOC388955","entrezGeneId":388955},{"hugoGeneSymbol":"LOC388996","entrezGeneId":388996},{"hugoGeneSymbol":"LOC389199","entrezGeneId":389199},{"hugoGeneSymbol":"LOC389247","entrezGeneId":389247},{"hugoGeneSymbol":"LOC389249","entrezGeneId":389249},{"hugoGeneSymbol":"LOC389465","entrezGeneId":389465},{"hugoGeneSymbol":"LOC389473","entrezGeneId":389473},{"hugoGeneSymbol":"LOC389602","entrezGeneId":389602},{"hugoGeneSymbol":"LOC389641","entrezGeneId":389641},{"hugoGeneSymbol":"LOC389705","entrezGeneId":389705},{"hugoGeneSymbol":"LOC389765","entrezGeneId":389765},{"hugoGeneSymbol":"LOC389768","entrezGeneId":389768},{"hugoGeneSymbol":"LOC389831","entrezGeneId":389831},{"hugoGeneSymbol":"LOC389834","entrezGeneId":389834},{"hugoGeneSymbol":"LOC389842","entrezGeneId":389842},{"hugoGeneSymbol":"LOC389895","entrezGeneId":389895},{"hugoGeneSymbol":"LOC389906","entrezGeneId":389906},{"hugoGeneSymbol":"LOC390029","entrezGeneId":390029},{"hugoGeneSymbol":"LOC390098","entrezGeneId":390098},{"hugoGeneSymbol":"LOC390099","entrezGeneId":390099},{"hugoGeneSymbol":"LOC390101","entrezGeneId":390101},{"hugoGeneSymbol":"LOC390250","entrezGeneId":390250},{"hugoGeneSymbol":"LOC390251","entrezGeneId":390251},{"hugoGeneSymbol":"LOC390255","entrezGeneId":390255},{"hugoGeneSymbol":"LOC390282","entrezGeneId":390282},{"hugoGeneSymbol":"LOC390306","entrezGeneId":390306},{"hugoGeneSymbol":"LOC390308","entrezGeneId":390308},{"hugoGeneSymbol":"LOC390314","entrezGeneId":390314},{"hugoGeneSymbol":"LOC390332","entrezGeneId":390332},{"hugoGeneSymbol":"LOC390358","entrezGeneId":390358},{"hugoGeneSymbol":"LOC390586","entrezGeneId":390586},{"hugoGeneSymbol":"LOC390600","entrezGeneId":390600},{"hugoGeneSymbol":"LOC390614","entrezGeneId":390614},{"hugoGeneSymbol":"LOC390617","entrezGeneId":390617},{"hugoGeneSymbol":"LOC390618","entrezGeneId":390618},{"hugoGeneSymbol":"LOC390638","entrezGeneId":390638},{"hugoGeneSymbol":"LOC390705","entrezGeneId":390705},{"hugoGeneSymbol":"LOC390714","entrezGeneId":390714},{"hugoGeneSymbol":"LOC390739","entrezGeneId":390739},{"hugoGeneSymbol":"LOC390806","entrezGeneId":390806},{"hugoGeneSymbol":"LOC390846","entrezGeneId":390846},{"hugoGeneSymbol":"LOC390860","entrezGeneId":390860},{"hugoGeneSymbol":"LOC390876","entrezGeneId":390876},{"hugoGeneSymbol":"LOC390877","entrezGeneId":390877},{"hugoGeneSymbol":"LOC390933","entrezGeneId":390933},{"hugoGeneSymbol":"LOC390937","entrezGeneId":390937},{"hugoGeneSymbol":"LOC390997","entrezGeneId":390997},{"hugoGeneSymbol":"LOC391020","entrezGeneId":391020},{"hugoGeneSymbol":"LOC391048","entrezGeneId":391048},{"hugoGeneSymbol":"LOC391092","entrezGeneId":391092},{"hugoGeneSymbol":"LOC391136","entrezGeneId":391136},{"hugoGeneSymbol":"LOC391239","entrezGeneId":391239},{"hugoGeneSymbol":"LOC391247","entrezGeneId":391247},{"hugoGeneSymbol":"LOC391322","entrezGeneId":391322},{"hugoGeneSymbol":"LOC391334","entrezGeneId":391334},{"hugoGeneSymbol":"LOC391359","entrezGeneId":391359},{"hugoGeneSymbol":"LOC391383","entrezGeneId":391383},{"hugoGeneSymbol":"LOC391448","entrezGeneId":391448},{"hugoGeneSymbol":"LOC391465","entrezGeneId":391465},{"hugoGeneSymbol":"LOC391556","entrezGeneId":391556},{"hugoGeneSymbol":"LOC391562","entrezGeneId":391562},{"hugoGeneSymbol":"LOC391566","entrezGeneId":391566},{"hugoGeneSymbol":"LOC391578","entrezGeneId":391578},{"hugoGeneSymbol":"LOC391600","entrezGeneId":391600},{"hugoGeneSymbol":"LOC391636","entrezGeneId":391636},{"hugoGeneSymbol":"LOC391674","entrezGeneId":391674},{"hugoGeneSymbol":"LOC391707","entrezGeneId":391707},{"hugoGeneSymbol":"LOC391710","entrezGeneId":391710},{"hugoGeneSymbol":"LOC391711","entrezGeneId":391711},{"hugoGeneSymbol":"LOC391713","entrezGeneId":391713},{"hugoGeneSymbol":"LOC391741","entrezGeneId":391741},{"hugoGeneSymbol":"LOC391742","entrezGeneId":391742},{"hugoGeneSymbol":"LOC391744","entrezGeneId":391744},{"hugoGeneSymbol":"LOC391746","entrezGeneId":391746},{"hugoGeneSymbol":"LOC391747","entrezGeneId":391747},{"hugoGeneSymbol":"LOC391765","entrezGeneId":391765},{"hugoGeneSymbol":"LOC391768","entrezGeneId":391768},{"hugoGeneSymbol":"LOC391771","entrezGeneId":391771},{"hugoGeneSymbol":"LOC391798","entrezGeneId":391798},{"hugoGeneSymbol":"LOC391813","entrezGeneId":391813},{"hugoGeneSymbol":"LOC391834","entrezGeneId":391834},{"hugoGeneSymbol":"LOC392027","entrezGeneId":392027},{"hugoGeneSymbol":"LOC392145","entrezGeneId":392145},{"hugoGeneSymbol":"LOC392180","entrezGeneId":392180},{"hugoGeneSymbol":"LOC392187","entrezGeneId":392187},{"hugoGeneSymbol":"LOC392196","entrezGeneId":392196},{"hugoGeneSymbol":"LOC392226","entrezGeneId":392226},{"hugoGeneSymbol":"LOC392232","entrezGeneId":392232},{"hugoGeneSymbol":"LOC392264","entrezGeneId":392264},{"hugoGeneSymbol":"LOC392266","entrezGeneId":392266},{"hugoGeneSymbol":"LOC392268","entrezGeneId":392268},{"hugoGeneSymbol":"LOC392334","entrezGeneId":392334},{"hugoGeneSymbol":"LOC392364","entrezGeneId":392364},{"hugoGeneSymbol":"LOC392426","entrezGeneId":392426},{"hugoGeneSymbol":"LOC392435","entrezGeneId":392435},{"hugoGeneSymbol":"LOC392436","entrezGeneId":392436},{"hugoGeneSymbol":"LOC392439","entrezGeneId":392439},{"hugoGeneSymbol":"LOC392440","entrezGeneId":392440},{"hugoGeneSymbol":"LOC392442","entrezGeneId":392442},{"hugoGeneSymbol":"LOC392452","entrezGeneId":392452},{"hugoGeneSymbol":"LOC392456","entrezGeneId":392456},{"hugoGeneSymbol":"LOC392477","entrezGeneId":392477},{"hugoGeneSymbol":"LOC392485","entrezGeneId":392485},{"hugoGeneSymbol":"LOC392489","entrezGeneId":392489},{"hugoGeneSymbol":"LOC392508","entrezGeneId":392508},{"hugoGeneSymbol":"LOC392529","entrezGeneId":392529},{"hugoGeneSymbol":"LOC392536","entrezGeneId":392536},{"hugoGeneSymbol":"LOC392538","entrezGeneId":392538},{"hugoGeneSymbol":"LOC392539","entrezGeneId":392539},{"hugoGeneSymbol":"LOC392543","entrezGeneId":392543},{"hugoGeneSymbol":"LOC392555","entrezGeneId":392555},{"hugoGeneSymbol":"LOC392787","entrezGeneId":392787},{"hugoGeneSymbol":"LOC399715","entrezGeneId":399715},{"hugoGeneSymbol":"LOC399716","entrezGeneId":399716},{"hugoGeneSymbol":"LOC399783","entrezGeneId":399783},{"hugoGeneSymbol":"LOC399815","entrezGeneId":399815},{"hugoGeneSymbol":"LOC399886","entrezGeneId":399886},{"hugoGeneSymbol":"LOC399900","entrezGeneId":399900},{"hugoGeneSymbol":"LOC399975","entrezGeneId":399975},{"hugoGeneSymbol":"LOC400026","entrezGeneId":400026},{"hugoGeneSymbol":"LOC400036","entrezGeneId":400036},{"hugoGeneSymbol":"LOC400061","entrezGeneId":400061},{"hugoGeneSymbol":"LOC400174","entrezGeneId":400174},{"hugoGeneSymbol":"LOC400212","entrezGeneId":400212},{"hugoGeneSymbol":"LOC400347","entrezGeneId":400347},{"hugoGeneSymbol":"LOC400446","entrezGeneId":400446},{"hugoGeneSymbol":"LOC400464","entrezGeneId":400464},{"hugoGeneSymbol":"LOC400499","entrezGeneId":400499},{"hugoGeneSymbol":"LOC400541","entrezGeneId":400541},{"hugoGeneSymbol":"LOC400553","entrezGeneId":400553},{"hugoGeneSymbol":"LOC400622","entrezGeneId":400622},{"hugoGeneSymbol":"LOC400627","entrezGeneId":400627},{"hugoGeneSymbol":"LOC400655","entrezGeneId":400655},{"hugoGeneSymbol":"LOC400682","entrezGeneId":400682},{"hugoGeneSymbol":"LOC400684","entrezGeneId":400684},{"hugoGeneSymbol":"LOC400706","entrezGeneId":400706},{"hugoGeneSymbol":"LOC400710","entrezGeneId":400710},{"hugoGeneSymbol":"LOC400743","entrezGeneId":400743},{"hugoGeneSymbol":"LOC400748","entrezGeneId":400748},{"hugoGeneSymbol":"LOC400750","entrezGeneId":400750},{"hugoGeneSymbol":"LOC400794","entrezGeneId":400794},{"hugoGeneSymbol":"LOC400800","entrezGeneId":400800},{"hugoGeneSymbol":"LOC400867","entrezGeneId":400867},{"hugoGeneSymbol":"LOC400940","entrezGeneId":400940},{"hugoGeneSymbol":"LOC401002","entrezGeneId":401002},{"hugoGeneSymbol":"LOC401021","entrezGeneId":401021},{"hugoGeneSymbol":"LOC401040","entrezGeneId":401040},{"hugoGeneSymbol":"LOC401127","entrezGeneId":401127},{"hugoGeneSymbol":"LOC401131","entrezGeneId":401131},{"hugoGeneSymbol":"LOC401176","entrezGeneId":401176},{"hugoGeneSymbol":"LOC401191","entrezGeneId":401191},{"hugoGeneSymbol":"LOC401218","entrezGeneId":401218},{"hugoGeneSymbol":"LOC401261","entrezGeneId":401261},{"hugoGeneSymbol":"LOC401312","entrezGeneId":401312},{"hugoGeneSymbol":"LOC401320","entrezGeneId":401320},{"hugoGeneSymbol":"LOC401324","entrezGeneId":401324},{"hugoGeneSymbol":"LOC401357","entrezGeneId":401357},{"hugoGeneSymbol":"LOC401442","entrezGeneId":401442},{"hugoGeneSymbol":"LOC401463","entrezGeneId":401463},{"hugoGeneSymbol":"LOC401471","entrezGeneId":401471},{"hugoGeneSymbol":"LOC401478","entrezGeneId":401478},{"hugoGeneSymbol":"LOC401554","entrezGeneId":401554},{"hugoGeneSymbol":"LOC401557","entrezGeneId":401557},{"hugoGeneSymbol":"LOC401585","entrezGeneId":401585},{"hugoGeneSymbol":"LOC401589","entrezGeneId":401589},{"hugoGeneSymbol":"LOC401602","entrezGeneId":401602},{"hugoGeneSymbol":"LOC401677","entrezGeneId":401677},{"hugoGeneSymbol":"LOC401679","entrezGeneId":401679},{"hugoGeneSymbol":"LOC401703","entrezGeneId":401703},{"hugoGeneSymbol":"LOC401767","entrezGeneId":401767},{"hugoGeneSymbol":"LOC401770","entrezGeneId":401770},{"hugoGeneSymbol":"LOC401777","entrezGeneId":401777},{"hugoGeneSymbol":"LOC401805","entrezGeneId":401805},{"hugoGeneSymbol":"LOC401864","entrezGeneId":401864},{"hugoGeneSymbol":"LOC401875","entrezGeneId":401875},{"hugoGeneSymbol":"LOC401913","entrezGeneId":401913},{"hugoGeneSymbol":"LOC401957","entrezGeneId":401957},{"hugoGeneSymbol":"LOC402076","entrezGeneId":402076},{"hugoGeneSymbol":"LOC402096","entrezGeneId":402096},{"hugoGeneSymbol":"LOC402182","entrezGeneId":402182},{"hugoGeneSymbol":"LOC402192","entrezGeneId":402192},{"hugoGeneSymbol":"LOC402221","entrezGeneId":402221},{"hugoGeneSymbol":"LOC402229","entrezGeneId":402229},{"hugoGeneSymbol":"LOC402230","entrezGeneId":402230},{"hugoGeneSymbol":"LOC402279","entrezGeneId":402279},{"hugoGeneSymbol":"LOC402329","entrezGeneId":402329},{"hugoGeneSymbol":"LOC402425","entrezGeneId":402425},{"hugoGeneSymbol":"LOC402634","entrezGeneId":402634},{"hugoGeneSymbol":"LOC402641","entrezGeneId":402641},{"hugoGeneSymbol":"LOC402715","entrezGeneId":402715},{"hugoGeneSymbol":"LOC403312","entrezGeneId":403312},{"hugoGeneSymbol":"LOC403323","entrezGeneId":403323},{"hugoGeneSymbol":"LOC407835","entrezGeneId":407835},{"hugoGeneSymbol":"LOC414300","entrezGeneId":414300},{"hugoGeneSymbol":"LOC439933","entrezGeneId":439933},{"hugoGeneSymbol":"LOC440028","entrezGeneId":440028},{"hugoGeneSymbol":"LOC440040","entrezGeneId":440040},{"hugoGeneSymbol":"LOC440059","entrezGeneId":440059},{"hugoGeneSymbol":"LOC440084","entrezGeneId":440084},{"hugoGeneSymbol":"LOC440173","entrezGeneId":440173},{"hugoGeneSymbol":"LOC440180","entrezGeneId":440180},{"hugoGeneSymbol":"LOC440181","entrezGeneId":440181},{"hugoGeneSymbol":"LOC440292","entrezGeneId":440292},{"hugoGeneSymbol":"LOC440300","entrezGeneId":440300},{"hugoGeneSymbol":"LOC440311","entrezGeneId":440311},{"hugoGeneSymbol":"LOC440313","entrezGeneId":440313},{"hugoGeneSymbol":"LOC440346","entrezGeneId":440346},{"hugoGeneSymbol":"LOC440434","entrezGeneId":440434},{"hugoGeneSymbol":"LOC440489","entrezGeneId":440489},{"hugoGeneSymbol":"LOC440514","entrezGeneId":440514},{"hugoGeneSymbol":"LOC440568","entrezGeneId":440568},{"hugoGeneSymbol":"LOC440570","entrezGeneId":440570},{"hugoGeneSymbol":"LOC440700","entrezGeneId":440700},{"hugoGeneSymbol":"LOC440742","entrezGeneId":440742},{"hugoGeneSymbol":"LOC440786","entrezGeneId":440786},{"hugoGeneSymbol":"LOC440792","entrezGeneId":440792},{"hugoGeneSymbol":"LOC440864","entrezGeneId":440864},{"hugoGeneSymbol":"LOC440895","entrezGeneId":440895},{"hugoGeneSymbol":"LOC440896","entrezGeneId":440896},{"hugoGeneSymbol":"LOC440910","entrezGeneId":440910},{"hugoGeneSymbol":"LOC440934","entrezGeneId":440934},{"hugoGeneSymbol":"LOC440973","entrezGeneId":440973},{"hugoGeneSymbol":"LOC440982","entrezGeneId":440982},{"hugoGeneSymbol":"LOC441052","entrezGeneId":441052},{"hugoGeneSymbol":"LOC441081","entrezGeneId":441081},{"hugoGeneSymbol":"LOC441086","entrezGeneId":441086},{"hugoGeneSymbol":"LOC441087","entrezGeneId":441087},{"hugoGeneSymbol":"LOC441098","entrezGeneId":441098},{"hugoGeneSymbol":"LOC441155","entrezGeneId":441155},{"hugoGeneSymbol":"LOC441179","entrezGeneId":441179},{"hugoGeneSymbol":"LOC441204","entrezGeneId":441204},{"hugoGeneSymbol":"LOC441228","entrezGeneId":441228},{"hugoGeneSymbol":"LOC441239","entrezGeneId":441239},{"hugoGeneSymbol":"LOC441241","entrezGeneId":441241},{"hugoGeneSymbol":"LOC441242","entrezGeneId":441242},{"hugoGeneSymbol":"LOC441259","entrezGeneId":441259},{"hugoGeneSymbol":"LOC441320","entrezGeneId":441320},{"hugoGeneSymbol":"LOC441454","entrezGeneId":441454},{"hugoGeneSymbol":"LOC441455","entrezGeneId":441455},{"hugoGeneSymbol":"LOC441487","entrezGeneId":441487},{"hugoGeneSymbol":"LOC441488","entrezGeneId":441488},{"hugoGeneSymbol":"LOC441511","entrezGeneId":441511},{"hugoGeneSymbol":"LOC441592","entrezGeneId":441592},{"hugoGeneSymbol":"LOC441601","entrezGeneId":441601},{"hugoGeneSymbol":"LOC441644","entrezGeneId":441644},{"hugoGeneSymbol":"LOC441666","entrezGeneId":441666},{"hugoGeneSymbol":"LOC441711","entrezGeneId":441711},{"hugoGeneSymbol":"LOC441722","entrezGeneId":441722},{"hugoGeneSymbol":"LOC441728","entrezGeneId":441728},{"hugoGeneSymbol":"LOC441750","entrezGeneId":441750},{"hugoGeneSymbol":"LOC441768","entrezGeneId":441768},{"hugoGeneSymbol":"LOC441784","entrezGeneId":441784},{"hugoGeneSymbol":"LOC441806","entrezGeneId":441806},{"hugoGeneSymbol":"LOC441862","entrezGeneId":441862},{"hugoGeneSymbol":"LOC441880","entrezGeneId":441880},{"hugoGeneSymbol":"LOC441887","entrezGeneId":441887},{"hugoGeneSymbol":"LOC441904","entrezGeneId":441904},{"hugoGeneSymbol":"LOC441907","entrezGeneId":441907},{"hugoGeneSymbol":"LOC441914","entrezGeneId":441914},{"hugoGeneSymbol":"LOC441996","entrezGeneId":441996},{"hugoGeneSymbol":"LOC442017","entrezGeneId":442017},{"hugoGeneSymbol":"LOC442028","entrezGeneId":442028},{"hugoGeneSymbol":"LOC442041","entrezGeneId":442041},{"hugoGeneSymbol":"LOC442042","entrezGeneId":442042},{"hugoGeneSymbol":"LOC442058","entrezGeneId":442058},{"hugoGeneSymbol":"LOC442063","entrezGeneId":442063},{"hugoGeneSymbol":"LOC442064","entrezGeneId":442064},{"hugoGeneSymbol":"LOC442087","entrezGeneId":442087},{"hugoGeneSymbol":"LOC442113","entrezGeneId":442113},{"hugoGeneSymbol":"LOC442132","entrezGeneId":442132},{"hugoGeneSymbol":"LOC442155","entrezGeneId":442155},{"hugoGeneSymbol":"LOC442161","entrezGeneId":442161},{"hugoGeneSymbol":"LOC442172","entrezGeneId":442172},{"hugoGeneSymbol":"LOC442225","entrezGeneId":442225},{"hugoGeneSymbol":"LOC442244","entrezGeneId":442244},{"hugoGeneSymbol":"LOC442263","entrezGeneId":442263},{"hugoGeneSymbol":"LOC442272","entrezGeneId":442272},{"hugoGeneSymbol":"LOC442292","entrezGeneId":442292},{"hugoGeneSymbol":"LOC442293","entrezGeneId":442293},{"hugoGeneSymbol":"LOC442309","entrezGeneId":442309},{"hugoGeneSymbol":"LOC442382","entrezGeneId":442382},{"hugoGeneSymbol":"LOC442389","entrezGeneId":442389},{"hugoGeneSymbol":"LOC442427","entrezGeneId":442427},{"hugoGeneSymbol":"LOC442443","entrezGeneId":442443},{"hugoGeneSymbol":"LOC442445","entrezGeneId":442445},{"hugoGeneSymbol":"LOC442497","entrezGeneId":442497},{"hugoGeneSymbol":"LOC442517","entrezGeneId":442517},{"hugoGeneSymbol":"LOC442603","entrezGeneId":442603},{"hugoGeneSymbol":"LOC442727","entrezGeneId":442727},{"hugoGeneSymbol":"LOC494127","entrezGeneId":494127},{"hugoGeneSymbol":"LOC494141","entrezGeneId":494141},{"hugoGeneSymbol":"LOC497256","entrezGeneId":497256},{"hugoGeneSymbol":"LOC503540","entrezGeneId":503540},{"hugoGeneSymbol":"LOC51145","entrezGeneId":51145},{"hugoGeneSymbol":"LOC541472","entrezGeneId":541472},{"hugoGeneSymbol":"LOC541473","entrezGeneId":541473},{"hugoGeneSymbol":"LOC550113","entrezGeneId":550113},{"hugoGeneSymbol":"LOC550644","entrezGeneId":550644},{"hugoGeneSymbol":"LOC553139","entrezGeneId":553139},{"hugoGeneSymbol":"LOC553939","entrezGeneId":553939},{"hugoGeneSymbol":"LOC554206","entrezGeneId":554206},{"hugoGeneSymbol":"LOC554249","entrezGeneId":554249},{"hugoGeneSymbol":"LOC574080","entrezGeneId":574080},{"hugoGeneSymbol":"LOC574538","entrezGeneId":574538},{"hugoGeneSymbol":"LOC606724","entrezGeneId":606724},{"hugoGeneSymbol":"LOC613038","entrezGeneId":613038},{"hugoGeneSymbol":"LOC613206","entrezGeneId":613206},{"hugoGeneSymbol":"LOC613266","entrezGeneId":613266},{"hugoGeneSymbol":"LOC619539","entrezGeneId":619539},{"hugoGeneSymbol":"LOC619540","entrezGeneId":619540},{"hugoGeneSymbol":"LOC641367","entrezGeneId":641367},{"hugoGeneSymbol":"LOC641378","entrezGeneId":641378},{"hugoGeneSymbol":"LOC641381","entrezGeneId":641381},{"hugoGeneSymbol":"LOC641589","entrezGeneId":641589},{"hugoGeneSymbol":"LOC641695","entrezGeneId":641695},{"hugoGeneSymbol":"LOC641708","entrezGeneId":641708},{"hugoGeneSymbol":"LOC641746","entrezGeneId":641746},{"hugoGeneSymbol":"LOC642131","entrezGeneId":642131},{"hugoGeneSymbol":"LOC642204","entrezGeneId":642204},{"hugoGeneSymbol":"LOC642249","entrezGeneId":642249},{"hugoGeneSymbol":"LOC642355","entrezGeneId":642355},{"hugoGeneSymbol":"LOC642361","entrezGeneId":642361},{"hugoGeneSymbol":"LOC642366","entrezGeneId":642366},{"hugoGeneSymbol":"LOC642381","entrezGeneId":642381},{"hugoGeneSymbol":"LOC642414","entrezGeneId":642414},{"hugoGeneSymbol":"LOC642423","entrezGeneId":642423},{"hugoGeneSymbol":"LOC642474","entrezGeneId":642474},{"hugoGeneSymbol":"LOC642484","entrezGeneId":642484},{"hugoGeneSymbol":"LOC642487","entrezGeneId":642487},{"hugoGeneSymbol":"LOC642490","entrezGeneId":642490},{"hugoGeneSymbol":"LOC642496","entrezGeneId":642496},{"hugoGeneSymbol":"LOC642502","entrezGeneId":642502},{"hugoGeneSymbol":"LOC642550","entrezGeneId":642550},{"hugoGeneSymbol":"LOC642554","entrezGeneId":642554},{"hugoGeneSymbol":"LOC642579","entrezGeneId":642579},{"hugoGeneSymbol":"LOC642590","entrezGeneId":642590},{"hugoGeneSymbol":"LOC642635","entrezGeneId":642635},{"hugoGeneSymbol":"LOC642648","entrezGeneId":642648},{"hugoGeneSymbol":"LOC642661","entrezGeneId":642661},{"hugoGeneSymbol":"LOC642669","entrezGeneId":642669},{"hugoGeneSymbol":"LOC642677","entrezGeneId":642677},{"hugoGeneSymbol":"LOC642692","entrezGeneId":642692},{"hugoGeneSymbol":"LOC642696","entrezGeneId":642696},{"hugoGeneSymbol":"LOC642791","entrezGeneId":642791},{"hugoGeneSymbol":"LOC642846","entrezGeneId":642846},{"hugoGeneSymbol":"LOC642852","entrezGeneId":642852},{"hugoGeneSymbol":"LOC642862","entrezGeneId":642862},{"hugoGeneSymbol":"LOC642890","entrezGeneId":642890},{"hugoGeneSymbol":"LOC642897","entrezGeneId":642897},{"hugoGeneSymbol":"LOC642929","entrezGeneId":642929},{"hugoGeneSymbol":"LOC642943","entrezGeneId":642943},{"hugoGeneSymbol":"LOC642969","entrezGeneId":642969},{"hugoGeneSymbol":"LOC642975","entrezGeneId":642975},{"hugoGeneSymbol":"LOC643014","entrezGeneId":643014},{"hugoGeneSymbol":"LOC643015","entrezGeneId":643015},{"hugoGeneSymbol":"LOC643043","entrezGeneId":643043},{"hugoGeneSymbol":"LOC643058","entrezGeneId":643058},{"hugoGeneSymbol":"LOC643067","entrezGeneId":643067},{"hugoGeneSymbol":"LOC643072","entrezGeneId":643072},{"hugoGeneSymbol":"LOC643118","entrezGeneId":643118},{"hugoGeneSymbol":"LOC643167","entrezGeneId":643167},{"hugoGeneSymbol":"LOC643168","entrezGeneId":643168},{"hugoGeneSymbol":"LOC643172","entrezGeneId":643172},{"hugoGeneSymbol":"LOC643201","entrezGeneId":643201},{"hugoGeneSymbol":"LOC643307","entrezGeneId":643307},{"hugoGeneSymbol":"LOC643327","entrezGeneId":643327},{"hugoGeneSymbol":"LOC643339","entrezGeneId":643339},{"hugoGeneSymbol":"LOC643342","entrezGeneId":643342},{"hugoGeneSymbol":"LOC643348","entrezGeneId":643348},{"hugoGeneSymbol":"LOC643367","entrezGeneId":643367},{"hugoGeneSymbol":"LOC643371","entrezGeneId":643371},{"hugoGeneSymbol":"LOC643373","entrezGeneId":643373},{"hugoGeneSymbol":"LOC643381","entrezGeneId":643381},{"hugoGeneSymbol":"LOC643387","entrezGeneId":643387},{"hugoGeneSymbol":"LOC643406","entrezGeneId":643406},{"hugoGeneSymbol":"LOC643438","entrezGeneId":643438},{"hugoGeneSymbol":"LOC643441","entrezGeneId":643441},{"hugoGeneSymbol":"LOC643454","entrezGeneId":643454},{"hugoGeneSymbol":"LOC643494","entrezGeneId":643494},{"hugoGeneSymbol":"LOC643542","entrezGeneId":643542},{"hugoGeneSymbol":"LOC643554","entrezGeneId":643554},{"hugoGeneSymbol":"LOC643562","entrezGeneId":643562},{"hugoGeneSymbol":"LOC643576","entrezGeneId":643576},{"hugoGeneSymbol":"LOC643605","entrezGeneId":643605},{"hugoGeneSymbol":"LOC643630","entrezGeneId":643630},{"hugoGeneSymbol":"LOC643634","entrezGeneId":643634},{"hugoGeneSymbol":"LOC643709","entrezGeneId":643709},{"hugoGeneSymbol":"LOC643711","entrezGeneId":643711},{"hugoGeneSymbol":"LOC643733","entrezGeneId":643733},{"hugoGeneSymbol":"LOC643784","entrezGeneId":643784},{"hugoGeneSymbol":"LOC643802","entrezGeneId":643802},{"hugoGeneSymbol":"LOC643855","entrezGeneId":643855},{"hugoGeneSymbol":"LOC643888","entrezGeneId":643888},{"hugoGeneSymbol":"LOC643896","entrezGeneId":643896},{"hugoGeneSymbol":"LOC643916","entrezGeneId":643916},{"hugoGeneSymbol":"LOC644006","entrezGeneId":644006},{"hugoGeneSymbol":"LOC644051","entrezGeneId":644051},{"hugoGeneSymbol":"LOC644060","entrezGeneId":644060},{"hugoGeneSymbol":"LOC644090","entrezGeneId":644090},{"hugoGeneSymbol":"LOC644110","entrezGeneId":644110},{"hugoGeneSymbol":"LOC644135","entrezGeneId":644135},{"hugoGeneSymbol":"LOC644158","entrezGeneId":644158},{"hugoGeneSymbol":"LOC644169","entrezGeneId":644169},{"hugoGeneSymbol":"LOC644189","entrezGeneId":644189},{"hugoGeneSymbol":"LOC644203","entrezGeneId":644203},{"hugoGeneSymbol":"LOC644215","entrezGeneId":644215},{"hugoGeneSymbol":"LOC644249","entrezGeneId":644249},{"hugoGeneSymbol":"LOC644261","entrezGeneId":644261},{"hugoGeneSymbol":"LOC644265","entrezGeneId":644265},{"hugoGeneSymbol":"LOC644269","entrezGeneId":644269},{"hugoGeneSymbol":"LOC644277","entrezGeneId":644277},{"hugoGeneSymbol":"LOC644285","entrezGeneId":644285},{"hugoGeneSymbol":"LOC644295","entrezGeneId":644295},{"hugoGeneSymbol":"LOC644303","entrezGeneId":644303},{"hugoGeneSymbol":"LOC644310","entrezGeneId":644310},{"hugoGeneSymbol":"LOC644335","entrezGeneId":644335},{"hugoGeneSymbol":"LOC644383","entrezGeneId":644383},{"hugoGeneSymbol":"LOC644387","entrezGeneId":644387},{"hugoGeneSymbol":"LOC644422","entrezGeneId":644422},{"hugoGeneSymbol":"LOC644436","entrezGeneId":644436},{"hugoGeneSymbol":"LOC644456","entrezGeneId":644456},{"hugoGeneSymbol":"LOC644462","entrezGeneId":644462},{"hugoGeneSymbol":"LOC644525","entrezGeneId":644525},{"hugoGeneSymbol":"LOC644554","entrezGeneId":644554},{"hugoGeneSymbol":"LOC644563","entrezGeneId":644563},{"hugoGeneSymbol":"LOC644584","entrezGeneId":644584},{"hugoGeneSymbol":"LOC644656","entrezGeneId":644656},{"hugoGeneSymbol":"LOC644661","entrezGeneId":644661},{"hugoGeneSymbol":"LOC644667","entrezGeneId":644667},{"hugoGeneSymbol":"LOC644669","entrezGeneId":644669},{"hugoGeneSymbol":"LOC644681","entrezGeneId":644681},{"hugoGeneSymbol":"LOC644721","entrezGeneId":644721},{"hugoGeneSymbol":"LOC644746","entrezGeneId":644746},{"hugoGeneSymbol":"LOC644762","entrezGeneId":644762},{"hugoGeneSymbol":"LOC644776","entrezGeneId":644776},{"hugoGeneSymbol":"LOC644794","entrezGeneId":644794},{"hugoGeneSymbol":"LOC644893","entrezGeneId":644893},{"hugoGeneSymbol":"LOC644906","entrezGeneId":644906},{"hugoGeneSymbol":"LOC644909","entrezGeneId":644909},{"hugoGeneSymbol":"LOC644924","entrezGeneId":644924},{"hugoGeneSymbol":"LOC644936","entrezGeneId":644936},{"hugoGeneSymbol":"LOC645086","entrezGeneId":645086},{"hugoGeneSymbol":"LOC645135","entrezGeneId":645135},{"hugoGeneSymbol":"LOC645139","entrezGeneId":645139},{"hugoGeneSymbol":"LOC645163","entrezGeneId":645163},{"hugoGeneSymbol":"LOC645166","entrezGeneId":645166},{"hugoGeneSymbol":"LOC645177","entrezGeneId":645177},{"hugoGeneSymbol":"LOC645180","entrezGeneId":645180},{"hugoGeneSymbol":"LOC645181","entrezGeneId":645181},{"hugoGeneSymbol":"LOC645188","entrezGeneId":645188},{"hugoGeneSymbol":"LOC645202","entrezGeneId":645202},{"hugoGeneSymbol":"LOC645261","entrezGeneId":645261},{"hugoGeneSymbol":"LOC645266","entrezGeneId":645266},{"hugoGeneSymbol":"LOC645272","entrezGeneId":645272},{"hugoGeneSymbol":"LOC645297","entrezGeneId":645297},{"hugoGeneSymbol":"LOC645314","entrezGeneId":645314},{"hugoGeneSymbol":"LOC645319","entrezGeneId":645319},{"hugoGeneSymbol":"LOC645324","entrezGeneId":645324},{"hugoGeneSymbol":"LOC645357","entrezGeneId":645357},{"hugoGeneSymbol":"LOC645388","entrezGeneId":645388},{"hugoGeneSymbol":"LOC645397","entrezGeneId":645397},{"hugoGeneSymbol":"LOC645405","entrezGeneId":645405},{"hugoGeneSymbol":"LOC645415","entrezGeneId":645415},{"hugoGeneSymbol":"LOC645433","entrezGeneId":645433},{"hugoGeneSymbol":"LOC645468","entrezGeneId":645468},{"hugoGeneSymbol":"LOC645481","entrezGeneId":645481},{"hugoGeneSymbol":"LOC645482","entrezGeneId":645482},{"hugoGeneSymbol":"LOC645485","entrezGeneId":645485},{"hugoGeneSymbol":"LOC645513","entrezGeneId":645513},{"hugoGeneSymbol":"LOC645529","entrezGeneId":645529},{"hugoGeneSymbol":"LOC645544","entrezGeneId":645544},{"hugoGeneSymbol":"LOC645749","entrezGeneId":645749},{"hugoGeneSymbol":"LOC645752","entrezGeneId":645752},{"hugoGeneSymbol":"LOC645763","entrezGeneId":645763},{"hugoGeneSymbol":"LOC645773","entrezGeneId":645773},{"hugoGeneSymbol":"LOC645852","entrezGeneId":645852},{"hugoGeneSymbol":"LOC645853","entrezGeneId":645853},{"hugoGeneSymbol":"LOC645877","entrezGeneId":645877},{"hugoGeneSymbol":"LOC645937","entrezGeneId":645937},{"hugoGeneSymbol":"LOC645938","entrezGeneId":645938},{"hugoGeneSymbol":"LOC645965","entrezGeneId":645965},{"hugoGeneSymbol":"LOC645967","entrezGeneId":645967},{"hugoGeneSymbol":"LOC645978","entrezGeneId":645978},{"hugoGeneSymbol":"LOC646012","entrezGeneId":646012},{"hugoGeneSymbol":"LOC646029","entrezGeneId":646029},{"hugoGeneSymbol":"LOC646030","entrezGeneId":646030},{"hugoGeneSymbol":"LOC646044","entrezGeneId":646044},{"hugoGeneSymbol":"LOC646050","entrezGeneId":646050},{"hugoGeneSymbol":"LOC646058","entrezGeneId":646058},{"hugoGeneSymbol":"LOC646066","entrezGeneId":646066},{"hugoGeneSymbol":"LOC646071","entrezGeneId":646071},{"hugoGeneSymbol":"LOC646103","entrezGeneId":646103},{"hugoGeneSymbol":"LOC646112","entrezGeneId":646112},{"hugoGeneSymbol":"LOC646120","entrezGeneId":646120},{"hugoGeneSymbol":"LOC646127","entrezGeneId":646127},{"hugoGeneSymbol":"LOC646140","entrezGeneId":646140},{"hugoGeneSymbol":"LOC646197","entrezGeneId":646197},{"hugoGeneSymbol":"LOC646203","entrezGeneId":646203},{"hugoGeneSymbol":"LOC646214","entrezGeneId":646214},{"hugoGeneSymbol":"LOC646216","entrezGeneId":646216},{"hugoGeneSymbol":"LOC646227","entrezGeneId":646227},{"hugoGeneSymbol":"LOC646274","entrezGeneId":646274},{"hugoGeneSymbol":"LOC646347","entrezGeneId":646347},{"hugoGeneSymbol":"LOC646358","entrezGeneId":646358},{"hugoGeneSymbol":"LOC646383","entrezGeneId":646383},{"hugoGeneSymbol":"LOC646388","entrezGeneId":646388},{"hugoGeneSymbol":"LOC646408","entrezGeneId":646408},{"hugoGeneSymbol":"LOC646430","entrezGeneId":646430},{"hugoGeneSymbol":"LOC646471","entrezGeneId":646471},{"hugoGeneSymbol":"LOC646506","entrezGeneId":646506},{"hugoGeneSymbol":"LOC646517","entrezGeneId":646517},{"hugoGeneSymbol":"LOC646522","entrezGeneId":646522},{"hugoGeneSymbol":"LOC646548","entrezGeneId":646548},{"hugoGeneSymbol":"LOC646555","entrezGeneId":646555},{"hugoGeneSymbol":"LOC646588","entrezGeneId":646588},{"hugoGeneSymbol":"LOC646616","entrezGeneId":646616},{"hugoGeneSymbol":"LOC646626","entrezGeneId":646626},{"hugoGeneSymbol":"LOC646629","entrezGeneId":646629},{"hugoGeneSymbol":"LOC646639","entrezGeneId":646639},{"hugoGeneSymbol":"LOC646644","entrezGeneId":646644},{"hugoGeneSymbol":"LOC646652","entrezGeneId":646652},{"hugoGeneSymbol":"LOC646665","entrezGeneId":646665},{"hugoGeneSymbol":"LOC646666","entrezGeneId":646666},{"hugoGeneSymbol":"LOC646674","entrezGeneId":646674},{"hugoGeneSymbol":"LOC646696","entrezGeneId":646696},{"hugoGeneSymbol":"LOC646700","entrezGeneId":646700},{"hugoGeneSymbol":"LOC646708","entrezGeneId":646708},{"hugoGeneSymbol":"LOC646709","entrezGeneId":646709},{"hugoGeneSymbol":"LOC646730","entrezGeneId":646730},{"hugoGeneSymbol":"LOC646736","entrezGeneId":646736},{"hugoGeneSymbol":"LOC646745","entrezGeneId":646745},{"hugoGeneSymbol":"LOC646762","entrezGeneId":646762},{"hugoGeneSymbol":"LOC646794","entrezGeneId":646794},{"hugoGeneSymbol":"LOC646797","entrezGeneId":646797},{"hugoGeneSymbol":"LOC646801","entrezGeneId":646801},{"hugoGeneSymbol":"LOC646804","entrezGeneId":646804},{"hugoGeneSymbol":"LOC646813","entrezGeneId":646813},{"hugoGeneSymbol":"LOC646828","entrezGeneId":646828},{"hugoGeneSymbol":"LOC646853","entrezGeneId":646853},{"hugoGeneSymbol":"LOC646870","entrezGeneId":646870},{"hugoGeneSymbol":"LOC646890","entrezGeneId":646890},{"hugoGeneSymbol":"LOC646903","entrezGeneId":646903},{"hugoGeneSymbol":"LOC646927","entrezGeneId":646927},{"hugoGeneSymbol":"LOC646934","entrezGeneId":646934},{"hugoGeneSymbol":"LOC646938","entrezGeneId":646938},{"hugoGeneSymbol":"LOC646970","entrezGeneId":646970},{"hugoGeneSymbol":"LOC646976","entrezGeneId":646976},{"hugoGeneSymbol":"LOC646995","entrezGeneId":646995},{"hugoGeneSymbol":"LOC646999","entrezGeneId":646999},{"hugoGeneSymbol":"LOC647002","entrezGeneId":647002},{"hugoGeneSymbol":"LOC647070","entrezGeneId":647070},{"hugoGeneSymbol":"LOC647077","entrezGeneId":647077},{"hugoGeneSymbol":"LOC647086","entrezGeneId":647086},{"hugoGeneSymbol":"LOC647132","entrezGeneId":647132},{"hugoGeneSymbol":"LOC647145","entrezGeneId":647145},{"hugoGeneSymbol":"LOC647150","entrezGeneId":647150},{"hugoGeneSymbol":"LOC647208","entrezGeneId":647208},{"hugoGeneSymbol":"LOC647211","entrezGeneId":647211},{"hugoGeneSymbol":"LOC647253","entrezGeneId":647253},{"hugoGeneSymbol":"LOC647264","entrezGeneId":647264},{"hugoGeneSymbol":"LOC647275","entrezGeneId":647275},{"hugoGeneSymbol":"LOC647299","entrezGeneId":647299},{"hugoGeneSymbol":"LOC647481","entrezGeneId":647481},{"hugoGeneSymbol":"LOC647503","entrezGeneId":647503},{"hugoGeneSymbol":"LOC647859","entrezGeneId":647859},{"hugoGeneSymbol":"LOC647996","entrezGeneId":647996},{"hugoGeneSymbol":"LOC648442","entrezGeneId":648442},{"hugoGeneSymbol":"LOC648771","entrezGeneId":648771},{"hugoGeneSymbol":"LOC648774","entrezGeneId":648774},{"hugoGeneSymbol":"LOC648927","entrezGeneId":648927},{"hugoGeneSymbol":"LOC648934","entrezGeneId":648934},{"hugoGeneSymbol":"LOC648987","entrezGeneId":648987},{"hugoGeneSymbol":"LOC649024","entrezGeneId":649024},{"hugoGeneSymbol":"LOC649133","entrezGeneId":649133},{"hugoGeneSymbol":"LOC649166","entrezGeneId":649166},{"hugoGeneSymbol":"LOC649305","entrezGeneId":649305},{"hugoGeneSymbol":"LOC649352","entrezGeneId":649352},{"hugoGeneSymbol":"LOC650024","entrezGeneId":650024},{"hugoGeneSymbol":"LOC650181","entrezGeneId":650181},{"hugoGeneSymbol":"LOC650226","entrezGeneId":650226},{"hugoGeneSymbol":"LOC650293","entrezGeneId":650293},{"hugoGeneSymbol":"LOC650866","entrezGeneId":650866},{"hugoGeneSymbol":"LOC651337","entrezGeneId":651337},{"hugoGeneSymbol":"LOC651644","entrezGeneId":651644},{"hugoGeneSymbol":"LOC652276","entrezGeneId":652276},{"hugoGeneSymbol":"LOC652549","entrezGeneId":652549},{"hugoGeneSymbol":"LOC652608","entrezGeneId":652608},{"hugoGeneSymbol":"LOC653071","entrezGeneId":653071},{"hugoGeneSymbol":"LOC653080","entrezGeneId":653080},{"hugoGeneSymbol":"LOC653155","entrezGeneId":653155},{"hugoGeneSymbol":"LOC653160","entrezGeneId":653160},{"hugoGeneSymbol":"LOC653303","entrezGeneId":653303},{"hugoGeneSymbol":"LOC653406","entrezGeneId":653406},{"hugoGeneSymbol":"LOC653503","entrezGeneId":653503},{"hugoGeneSymbol":"LOC653513","entrezGeneId":653513},{"hugoGeneSymbol":"LOC653588","entrezGeneId":653588},{"hugoGeneSymbol":"LOC653631","entrezGeneId":653631},{"hugoGeneSymbol":"LOC653653","entrezGeneId":653653},{"hugoGeneSymbol":"LOC653698","entrezGeneId":653698},{"hugoGeneSymbol":"LOC653712","entrezGeneId":653712},{"hugoGeneSymbol":"LOC653786","entrezGeneId":653786},{"hugoGeneSymbol":"LOC654338","entrezGeneId":654338},{"hugoGeneSymbol":"LOC654342","entrezGeneId":654342},{"hugoGeneSymbol":"LOC654780","entrezGeneId":654780},{"hugoGeneSymbol":"LOC654841","entrezGeneId":654841},{"hugoGeneSymbol":"LOC677762","entrezGeneId":677762},{"hugoGeneSymbol":"LOC692246","entrezGeneId":692246},{"hugoGeneSymbol":"LOC692247","entrezGeneId":692247},{"hugoGeneSymbol":"LOC724060","entrezGeneId":724060},{"hugoGeneSymbol":"LOC724065","entrezGeneId":724065},{"hugoGeneSymbol":"LOC724084","entrezGeneId":724084},{"hugoGeneSymbol":"LOC724085","entrezGeneId":724085},{"hugoGeneSymbol":"LOC724104","entrezGeneId":724104},{"hugoGeneSymbol":"LOC724105","entrezGeneId":724105},{"hugoGeneSymbol":"LOC727681","entrezGeneId":727681},{"hugoGeneSymbol":"LOC727709","entrezGeneId":727709},{"hugoGeneSymbol":"LOC727713","entrezGeneId":727713},{"hugoGeneSymbol":"LOC727751","entrezGeneId":727751},{"hugoGeneSymbol":"LOC727803","entrezGeneId":727803},{"hugoGeneSymbol":"LOC727838","entrezGeneId":727838},{"hugoGeneSymbol":"LOC727874","entrezGeneId":727874},{"hugoGeneSymbol":"LOC727884","entrezGeneId":727884},{"hugoGeneSymbol":"LOC727896","entrezGeneId":727896},{"hugoGeneSymbol":"LOC727919","entrezGeneId":727919},{"hugoGeneSymbol":"LOC727930","entrezGeneId":727930},{"hugoGeneSymbol":"LOC727947","entrezGeneId":727947},{"hugoGeneSymbol":"LOC727978","entrezGeneId":727978},{"hugoGeneSymbol":"LOC727980","entrezGeneId":727980},{"hugoGeneSymbol":"LOC728024","entrezGeneId":728024},{"hugoGeneSymbol":"LOC728026","entrezGeneId":728026},{"hugoGeneSymbol":"LOC728048","entrezGeneId":728048},{"hugoGeneSymbol":"LOC728095","entrezGeneId":728095},{"hugoGeneSymbol":"LOC728098","entrezGeneId":728098},{"hugoGeneSymbol":"LOC728138","entrezGeneId":728138},{"hugoGeneSymbol":"LOC728145","entrezGeneId":728145},{"hugoGeneSymbol":"LOC728158","entrezGeneId":728158},{"hugoGeneSymbol":"LOC728196","entrezGeneId":728196},{"hugoGeneSymbol":"LOC728307","entrezGeneId":728307},{"hugoGeneSymbol":"LOC728317","entrezGeneId":728317},{"hugoGeneSymbol":"LOC728327","entrezGeneId":728327},{"hugoGeneSymbol":"LOC728376","entrezGeneId":728376},{"hugoGeneSymbol":"LOC728392","entrezGeneId":728392},{"hugoGeneSymbol":"LOC728416","entrezGeneId":728416},{"hugoGeneSymbol":"LOC728417","entrezGeneId":728417},{"hugoGeneSymbol":"LOC728424","entrezGeneId":728424},{"hugoGeneSymbol":"LOC728452","entrezGeneId":728452},{"hugoGeneSymbol":"LOC728470","entrezGeneId":728470},{"hugoGeneSymbol":"LOC728485","entrezGeneId":728485},{"hugoGeneSymbol":"LOC728488","entrezGeneId":728488},{"hugoGeneSymbol":"LOC728499","entrezGeneId":728499},{"hugoGeneSymbol":"LOC728506","entrezGeneId":728506},{"hugoGeneSymbol":"LOC728519","entrezGeneId":728519},{"hugoGeneSymbol":"LOC728526","entrezGeneId":728526},{"hugoGeneSymbol":"LOC728533","entrezGeneId":728533},{"hugoGeneSymbol":"LOC728535","entrezGeneId":728535},{"hugoGeneSymbol":"LOC728540","entrezGeneId":728540},{"hugoGeneSymbol":"LOC728549","entrezGeneId":728549},{"hugoGeneSymbol":"LOC728554","entrezGeneId":728554},{"hugoGeneSymbol":"LOC728575","entrezGeneId":728575},{"hugoGeneSymbol":"LOC728587","entrezGeneId":728587},{"hugoGeneSymbol":"LOC728602","entrezGeneId":728602},{"hugoGeneSymbol":"LOC728613","entrezGeneId":728613},{"hugoGeneSymbol":"LOC728660","entrezGeneId":728660},{"hugoGeneSymbol":"LOC728667","entrezGeneId":728667},{"hugoGeneSymbol":"LOC728673","entrezGeneId":728673},{"hugoGeneSymbol":"LOC728688","entrezGeneId":728688},{"hugoGeneSymbol":"LOC728715","entrezGeneId":728715},{"hugoGeneSymbol":"LOC728730","entrezGeneId":728730},{"hugoGeneSymbol":"LOC728739","entrezGeneId":728739},{"hugoGeneSymbol":"LOC728743","entrezGeneId":728743},{"hugoGeneSymbol":"LOC728752","entrezGeneId":728752},{"hugoGeneSymbol":"LOC728755","entrezGeneId":728755},{"hugoGeneSymbol":"LOC728807","entrezGeneId":728807},{"hugoGeneSymbol":"LOC728811","entrezGeneId":728811},{"hugoGeneSymbol":"LOC728815","entrezGeneId":728815},{"hugoGeneSymbol":"LOC728825","entrezGeneId":728825},{"hugoGeneSymbol":"LOC728853","entrezGeneId":728853},{"hugoGeneSymbol":"LOC728877","entrezGeneId":728877},{"hugoGeneSymbol":"LOC728975","entrezGeneId":728975},{"hugoGeneSymbol":"LOC728989","entrezGeneId":728989},{"hugoGeneSymbol":"LOC729033","entrezGeneId":729033},{"hugoGeneSymbol":"LOC729040","entrezGeneId":729040},{"hugoGeneSymbol":"LOC729056","entrezGeneId":729056},{"hugoGeneSymbol":"LOC729057","entrezGeneId":729057},{"hugoGeneSymbol":"LOC729080","entrezGeneId":729080},{"hugoGeneSymbol":"LOC729086","entrezGeneId":729086},{"hugoGeneSymbol":"LOC729126","entrezGeneId":729126},{"hugoGeneSymbol":"LOC729141","entrezGeneId":729141},{"hugoGeneSymbol":"LOC729159","entrezGeneId":729159},{"hugoGeneSymbol":"LOC729200","entrezGeneId":729200},{"hugoGeneSymbol":"LOC729217","entrezGeneId":729217},{"hugoGeneSymbol":"LOC729218","entrezGeneId":729218},{"hugoGeneSymbol":"LOC729224","entrezGeneId":729224},{"hugoGeneSymbol":"LOC729254","entrezGeneId":729254},{"hugoGeneSymbol":"LOC729291","entrezGeneId":729291},{"hugoGeneSymbol":"LOC729296","entrezGeneId":729296},{"hugoGeneSymbol":"LOC729305","entrezGeneId":729305},{"hugoGeneSymbol":"LOC729316","entrezGeneId":729316},{"hugoGeneSymbol":"LOC729317","entrezGeneId":729317},{"hugoGeneSymbol":"LOC729334","entrezGeneId":729334},{"hugoGeneSymbol":"LOC729369","entrezGeneId":729369},{"hugoGeneSymbol":"LOC729451","entrezGeneId":729451},{"hugoGeneSymbol":"LOC729496","entrezGeneId":729496},{"hugoGeneSymbol":"LOC729532","entrezGeneId":729532},{"hugoGeneSymbol":"LOC729557","entrezGeneId":729557},{"hugoGeneSymbol":"LOC729558","entrezGeneId":729558},{"hugoGeneSymbol":"LOC729603","entrezGeneId":729603},{"hugoGeneSymbol":"LOC729609","entrezGeneId":729609},{"hugoGeneSymbol":"LOC729652","entrezGeneId":729652},{"hugoGeneSymbol":"LOC729654","entrezGeneId":729654},{"hugoGeneSymbol":"LOC729674","entrezGeneId":729674},{"hugoGeneSymbol":"LOC729681","entrezGeneId":729681},{"hugoGeneSymbol":"LOC729683","entrezGeneId":729683},{"hugoGeneSymbol":"LOC729707","entrezGeneId":729707},{"hugoGeneSymbol":"LOC729732","entrezGeneId":729732},{"hugoGeneSymbol":"LOC729737","entrezGeneId":729737},{"hugoGeneSymbol":"LOC729774","entrezGeneId":729774},{"hugoGeneSymbol":"LOC729800","entrezGeneId":729800},{"hugoGeneSymbol":"LOC729815","entrezGeneId":729815},{"hugoGeneSymbol":"LOC729835","entrezGeneId":729835},{"hugoGeneSymbol":"LOC729839","entrezGeneId":729839},{"hugoGeneSymbol":"LOC729856","entrezGeneId":729856},{"hugoGeneSymbol":"LOC729859","entrezGeneId":729859},{"hugoGeneSymbol":"LOC729867","entrezGeneId":729867},{"hugoGeneSymbol":"LOC729870","entrezGeneId":729870},{"hugoGeneSymbol":"LOC729900","entrezGeneId":729900},{"hugoGeneSymbol":"LOC729930","entrezGeneId":729930},{"hugoGeneSymbol":"LOC729941","entrezGeneId":729941},{"hugoGeneSymbol":"LOC729945","entrezGeneId":729945},{"hugoGeneSymbol":"LOC729960","entrezGeneId":729960},{"hugoGeneSymbol":"LOC729966","entrezGeneId":729966},{"hugoGeneSymbol":"LOC729968","entrezGeneId":729968},{"hugoGeneSymbol":"LOC729970","entrezGeneId":729970},{"hugoGeneSymbol":"LOC729973","entrezGeneId":729973},{"hugoGeneSymbol":"LOC729998","entrezGeneId":729998},{"hugoGeneSymbol":"LOC729999","entrezGeneId":729999},{"hugoGeneSymbol":"LOC730021","entrezGeneId":730021},{"hugoGeneSymbol":"LOC730043","entrezGeneId":730043},{"hugoGeneSymbol":"LOC730069","entrezGeneId":730069},{"hugoGeneSymbol":"LOC730076","entrezGeneId":730076},{"hugoGeneSymbol":"LOC730098","entrezGeneId":730098},{"hugoGeneSymbol":"LOC730100","entrezGeneId":730100},{"hugoGeneSymbol":"LOC730101","entrezGeneId":730101},{"hugoGeneSymbol":"LOC730110","entrezGeneId":730110},{"hugoGeneSymbol":"LOC730129","entrezGeneId":730129},{"hugoGeneSymbol":"LOC730183","entrezGeneId":730183},{"hugoGeneSymbol":"LOC730202","entrezGeneId":730202},{"hugoGeneSymbol":"LOC730222","entrezGeneId":730222},{"hugoGeneSymbol":"LOC730234","entrezGeneId":730234},{"hugoGeneSymbol":"LOC730257","entrezGeneId":730257},{"hugoGeneSymbol":"LOC730268","entrezGeneId":730268},{"hugoGeneSymbol":"LOC730338","entrezGeneId":730338},{"hugoGeneSymbol":"LOC730668","entrezGeneId":730668},{"hugoGeneSymbol":"LOC731075","entrezGeneId":731075},{"hugoGeneSymbol":"LOC731157","entrezGeneId":731157},{"hugoGeneSymbol":"LOC731631","entrezGeneId":731631},{"hugoGeneSymbol":"LOC731755","entrezGeneId":731755},{"hugoGeneSymbol":"LOC732229","entrezGeneId":732229},{"hugoGeneSymbol":"LOC732265","entrezGeneId":732265},{"hugoGeneSymbol":"LOC751602","entrezGeneId":751602},{"hugoGeneSymbol":"LOC751603","entrezGeneId":751603},{"hugoGeneSymbol":"LOC751837","entrezGeneId":751837},{"hugoGeneSymbol":"LOC777650","entrezGeneId":777650},{"hugoGeneSymbol":"LOC780780","entrezGeneId":780780},{"hugoGeneSymbol":"LOC791091","entrezGeneId":791091},{"hugoGeneSymbol":"LOC791092","entrezGeneId":791092},{"hugoGeneSymbol":"LOC791093","entrezGeneId":791093},{"hugoGeneSymbol":"LOC791095","entrezGeneId":791095},{"hugoGeneSymbol":"LOC791096","entrezGeneId":791096},{"hugoGeneSymbol":"LOC791097","entrezGeneId":791097},{"hugoGeneSymbol":"LOC791098","entrezGeneId":791098},{"hugoGeneSymbol":"LOC791126","entrezGeneId":791126},{"hugoGeneSymbol":"LOC79999","entrezGeneId":79999},{"hugoGeneSymbol":"LOC84214","entrezGeneId":84214},{"hugoGeneSymbol":"LOC89844","entrezGeneId":89844},{"hugoGeneSymbol":"LOC90246","entrezGeneId":90246},{"hugoGeneSymbol":"LOC90768","entrezGeneId":90768},{"hugoGeneSymbol":"LOC91370","entrezGeneId":91370},{"hugoGeneSymbol":"LOC91450","entrezGeneId":91450},{"hugoGeneSymbol":"LOC91548","entrezGeneId":91548},{"hugoGeneSymbol":"LOC93429","entrezGeneId":93429},{"hugoGeneSymbol":"LOC93463","entrezGeneId":93463},{"hugoGeneSymbol":"LOC93622","entrezGeneId":93622},{"hugoGeneSymbol":"LOH12CR2","entrezGeneId":503693},{"hugoGeneSymbol":"LOH19CR1","entrezGeneId":8378},{"hugoGeneSymbol":"LOH1CR1","entrezGeneId":8377},{"hugoGeneSymbol":"LONP1","entrezGeneId":9361},{"hugoGeneSymbol":"LONP2","entrezGeneId":83752},{"hugoGeneSymbol":"LONRF1","entrezGeneId":91694},{"hugoGeneSymbol":"LONRF2","entrezGeneId":164832},{"hugoGeneSymbol":"LONRF2P1","entrezGeneId":100421827},{"hugoGeneSymbol":"LONRF2P2","entrezGeneId":100421799},{"hugoGeneSymbol":"LONRF3","entrezGeneId":79836},{"hugoGeneSymbol":"LOR","entrezGeneId":4014},{"hugoGeneSymbol":"LOX","entrezGeneId":4015},{"hugoGeneSymbol":"LOXHD1","entrezGeneId":125336},{"hugoGeneSymbol":"LOXL1","entrezGeneId":4016},{"hugoGeneSymbol":"LOXL1-AS1","entrezGeneId":100287616},{"hugoGeneSymbol":"LOXL2","entrezGeneId":4017},{"hugoGeneSymbol":"LOXL3","entrezGeneId":84695},{"hugoGeneSymbol":"LOXL4","entrezGeneId":84171},{"hugoGeneSymbol":"LPA","entrezGeneId":4018},{"hugoGeneSymbol":"LPAL1","entrezGeneId":4019},{"hugoGeneSymbol":"LPAL2","entrezGeneId":80350},{"hugoGeneSymbol":"LPAR1","entrezGeneId":1902},{"hugoGeneSymbol":"LPAR2","entrezGeneId":9170},{"hugoGeneSymbol":"LPAR3","entrezGeneId":23566},{"hugoGeneSymbol":"LPAR4","entrezGeneId":2846},{"hugoGeneSymbol":"LPAR5","entrezGeneId":57121},{"hugoGeneSymbol":"LPAR6","entrezGeneId":10161},{"hugoGeneSymbol":"LPCAT1","entrezGeneId":79888},{"hugoGeneSymbol":"LPCAT2","entrezGeneId":54947},{"hugoGeneSymbol":"LPCAT2BP","entrezGeneId":100128094},{"hugoGeneSymbol":"LPCAT3","entrezGeneId":10162},{"hugoGeneSymbol":"LPCAT4","entrezGeneId":254531},{"hugoGeneSymbol":"LPEQ6126","entrezGeneId":100128818},{"hugoGeneSymbol":"LPGAT1","entrezGeneId":9926},{"hugoGeneSymbol":"LPGAT1P1","entrezGeneId":100129398},{"hugoGeneSymbol":"LPIN1","entrezGeneId":23175},{"hugoGeneSymbol":"LPIN2","entrezGeneId":9663},{"hugoGeneSymbol":"LPIN3","entrezGeneId":64900},{"hugoGeneSymbol":"LPL","entrezGeneId":4023},{"hugoGeneSymbol":"LPO","entrezGeneId":4025},{"hugoGeneSymbol":"LPP","entrezGeneId":4026},{"hugoGeneSymbol":"LPP-AS1","entrezGeneId":100873917},{"hugoGeneSymbol":"LPP-AS2","entrezGeneId":339929},{"hugoGeneSymbol":"LPRS","entrezGeneId":81861},{"hugoGeneSymbol":"LPRS6","entrezGeneId":100499166},{"hugoGeneSymbol":"LPSA","entrezGeneId":8177},{"hugoGeneSymbol":"LPXN","entrezGeneId":9404},{"hugoGeneSymbol":"LRAT","entrezGeneId":9227},{"hugoGeneSymbol":"LRBA","entrezGeneId":987},{"hugoGeneSymbol":"LRCH1","entrezGeneId":23143},{"hugoGeneSymbol":"LRCH2","entrezGeneId":57631},{"hugoGeneSymbol":"LRCH3","entrezGeneId":84859},{"hugoGeneSymbol":"LRCH4","entrezGeneId":4034},{"hugoGeneSymbol":"LRCOL1","entrezGeneId":100507055},{"hugoGeneSymbol":"LRFN1","entrezGeneId":57622},{"hugoGeneSymbol":"LRFN2","entrezGeneId":57497},{"hugoGeneSymbol":"LRFN3","entrezGeneId":79414},{"hugoGeneSymbol":"LRFN4","entrezGeneId":78999},{"hugoGeneSymbol":"LRFN5","entrezGeneId":145581},{"hugoGeneSymbol":"LRG1","entrezGeneId":116844},{"hugoGeneSymbol":"LRGUK","entrezGeneId":136332},{"hugoGeneSymbol":"LRIF1","entrezGeneId":55791},{"hugoGeneSymbol":"LRIG1","entrezGeneId":26018},{"hugoGeneSymbol":"LRIG2","entrezGeneId":9860},{"hugoGeneSymbol":"LRIG3","entrezGeneId":121227},{"hugoGeneSymbol":"LRIT1","entrezGeneId":26103},{"hugoGeneSymbol":"LRIT2","entrezGeneId":340745},{"hugoGeneSymbol":"LRIT3","entrezGeneId":345193},{"hugoGeneSymbol":"LRMDA","entrezGeneId":83938},{"hugoGeneSymbol":"LRMP","entrezGeneId":4033},{"hugoGeneSymbol":"LRP1","entrezGeneId":4035},{"hugoGeneSymbol":"LRP1-AS","entrezGeneId":105751187},{"hugoGeneSymbol":"LRP10","entrezGeneId":26020},{"hugoGeneSymbol":"LRP11","entrezGeneId":84918},{"hugoGeneSymbol":"LRP12","entrezGeneId":29967},{"hugoGeneSymbol":"LRP1B","entrezGeneId":53353},{"hugoGeneSymbol":"LRP2","entrezGeneId":4036},{"hugoGeneSymbol":"LRP2BP","entrezGeneId":55805},{"hugoGeneSymbol":"LRP3","entrezGeneId":4037},{"hugoGeneSymbol":"LRP4","entrezGeneId":4038},{"hugoGeneSymbol":"LRP4-AS1","entrezGeneId":100507401},{"hugoGeneSymbol":"LRP5","entrezGeneId":4041},{"hugoGeneSymbol":"LRP5L","entrezGeneId":91355},{"hugoGeneSymbol":"LRP6","entrezGeneId":4040},{"hugoGeneSymbol":"LRP8","entrezGeneId":7804},{"hugoGeneSymbol":"LRPAP1","entrezGeneId":4043},{"hugoGeneSymbol":"LRPPRC","entrezGeneId":10128},{"hugoGeneSymbol":"LRR1","entrezGeneId":122769},{"hugoGeneSymbol":"LRRC1","entrezGeneId":55227},{"hugoGeneSymbol":"LRRC10","entrezGeneId":376132},{"hugoGeneSymbol":"LRRC10B","entrezGeneId":390205},{"hugoGeneSymbol":"LRRC14","entrezGeneId":9684},{"hugoGeneSymbol":"LRRC14B","entrezGeneId":389257},{"hugoGeneSymbol":"LRRC15","entrezGeneId":131578},{"hugoGeneSymbol":"LRRC17","entrezGeneId":10234},{"hugoGeneSymbol":"LRRC18","entrezGeneId":474354},{"hugoGeneSymbol":"LRRC19","entrezGeneId":64922},{"hugoGeneSymbol":"LRRC2","entrezGeneId":79442},{"hugoGeneSymbol":"LRRC2-AS1","entrezGeneId":83598},{"hugoGeneSymbol":"LRRC20","entrezGeneId":55222},{"hugoGeneSymbol":"LRRC23","entrezGeneId":10233},{"hugoGeneSymbol":"LRRC24","entrezGeneId":441381},{"hugoGeneSymbol":"LRRC25","entrezGeneId":126364},{"hugoGeneSymbol":"LRRC26","entrezGeneId":389816},{"hugoGeneSymbol":"LRRC27","entrezGeneId":80313},{"hugoGeneSymbol":"LRRC28","entrezGeneId":123355},{"hugoGeneSymbol":"LRRC29","entrezGeneId":26231},{"hugoGeneSymbol":"LRRC3","entrezGeneId":81543},{"hugoGeneSymbol":"LRRC3-DT","entrezGeneId":100861510},{"hugoGeneSymbol":"LRRC30","entrezGeneId":339291},{"hugoGeneSymbol":"LRRC31","entrezGeneId":79782},{"hugoGeneSymbol":"LRRC32","entrezGeneId":2615},{"hugoGeneSymbol":"LRRC34","entrezGeneId":151827},{"hugoGeneSymbol":"LRRC34P1","entrezGeneId":100288378},{"hugoGeneSymbol":"LRRC34P2","entrezGeneId":100420613},{"hugoGeneSymbol":"LRRC36","entrezGeneId":55282},{"hugoGeneSymbol":"LRRC37A","entrezGeneId":9884},{"hugoGeneSymbol":"LRRC37A10P","entrezGeneId":100533791},{"hugoGeneSymbol":"LRRC37A11P","entrezGeneId":342666},{"hugoGeneSymbol":"LRRC37A12P","entrezGeneId":101929254},{"hugoGeneSymbol":"LRRC37A13P","entrezGeneId":106479024},{"hugoGeneSymbol":"LRRC37A14P","entrezGeneId":106479025},{"hugoGeneSymbol":"LRRC37A15P","entrezGeneId":106481796},{"hugoGeneSymbol":"LRRC37A16P","entrezGeneId":651250},{"hugoGeneSymbol":"LRRC37A17P","entrezGeneId":644397},{"hugoGeneSymbol":"LRRC37A2","entrezGeneId":474170},{"hugoGeneSymbol":"LRRC37A3","entrezGeneId":374819},{"hugoGeneSymbol":"LRRC37A4P","entrezGeneId":55073},{"hugoGeneSymbol":"LRRC37A5P","entrezGeneId":652972},{"hugoGeneSymbol":"LRRC37A6P","entrezGeneId":387646},{"hugoGeneSymbol":"LRRC37A7P","entrezGeneId":100421589},{"hugoGeneSymbol":"LRRC37A8P","entrezGeneId":100533789},{"hugoGeneSymbol":"LRRC37A9P","entrezGeneId":100533790},{"hugoGeneSymbol":"LRRC37B","entrezGeneId":114659},{"hugoGeneSymbol":"LRRC37BP1","entrezGeneId":147172},{"hugoGeneSymbol":"LRRC38","entrezGeneId":126755},{"hugoGeneSymbol":"LRRC39","entrezGeneId":127495},{"hugoGeneSymbol":"LRRC3B","entrezGeneId":116135},{"hugoGeneSymbol":"LRRC3C","entrezGeneId":100505591},{"hugoGeneSymbol":"LRRC4","entrezGeneId":64101},{"hugoGeneSymbol":"LRRC40","entrezGeneId":55631},{"hugoGeneSymbol":"LRRC41","entrezGeneId":10489},{"hugoGeneSymbol":"LRRC42","entrezGeneId":115353},{"hugoGeneSymbol":"LRRC43","entrezGeneId":254050},{"hugoGeneSymbol":"LRRC45","entrezGeneId":201255},{"hugoGeneSymbol":"LRRC46","entrezGeneId":90506},{"hugoGeneSymbol":"LRRC47","entrezGeneId":57470},{"hugoGeneSymbol":"LRRC49","entrezGeneId":54839},{"hugoGeneSymbol":"LRRC4B","entrezGeneId":94030},{"hugoGeneSymbol":"LRRC4C","entrezGeneId":57689},{"hugoGeneSymbol":"LRRC52","entrezGeneId":440699},{"hugoGeneSymbol":"LRRC53","entrezGeneId":105378803},{"hugoGeneSymbol":"LRRC55","entrezGeneId":219527},{"hugoGeneSymbol":"LRRC56","entrezGeneId":115399},{"hugoGeneSymbol":"LRRC57","entrezGeneId":255252},{"hugoGeneSymbol":"LRRC58","entrezGeneId":116064},{"hugoGeneSymbol":"LRRC59","entrezGeneId":55379},{"hugoGeneSymbol":"LRRC6","entrezGeneId":23639},{"hugoGeneSymbol":"LRRC61","entrezGeneId":65999},{"hugoGeneSymbol":"LRRC63","entrezGeneId":220416},{"hugoGeneSymbol":"LRRC66","entrezGeneId":339977},{"hugoGeneSymbol":"LRRC69","entrezGeneId":100130742},{"hugoGeneSymbol":"LRRC6P1","entrezGeneId":100420589},{"hugoGeneSymbol":"LRRC7","entrezGeneId":57554},{"hugoGeneSymbol":"LRRC70","entrezGeneId":100130733},{"hugoGeneSymbol":"LRRC71","entrezGeneId":149499},{"hugoGeneSymbol":"LRRC72","entrezGeneId":100506049},{"hugoGeneSymbol":"LRRC73","entrezGeneId":221424},{"hugoGeneSymbol":"LRRC74A","entrezGeneId":145497},{"hugoGeneSymbol":"LRRC74B","entrezGeneId":400891},{"hugoGeneSymbol":"LRRC75A","entrezGeneId":388341},{"hugoGeneSymbol":"LRRC75A-AS1","entrezGeneId":125144},{"hugoGeneSymbol":"LRRC75B","entrezGeneId":388886},{"hugoGeneSymbol":"LRRC77P","entrezGeneId":646168},{"hugoGeneSymbol":"LRRC8A","entrezGeneId":56262},{"hugoGeneSymbol":"LRRC8B","entrezGeneId":23507},{"hugoGeneSymbol":"LRRC8C","entrezGeneId":84230},{"hugoGeneSymbol":"LRRC8C-DT","entrezGeneId":400761},{"hugoGeneSymbol":"LRRC8D","entrezGeneId":55144},{"hugoGeneSymbol":"LRRC8E","entrezGeneId":80131},{"hugoGeneSymbol":"LRRC9","entrezGeneId":341883},{"hugoGeneSymbol":"LRRCC1","entrezGeneId":85444},{"hugoGeneSymbol":"LRRD1","entrezGeneId":401387},{"hugoGeneSymbol":"LRRFIP1","entrezGeneId":9208},{"hugoGeneSymbol":"LRRFIP1P1","entrezGeneId":101290506},{"hugoGeneSymbol":"LRRFIP2","entrezGeneId":9209},{"hugoGeneSymbol":"LRRIQ1","entrezGeneId":84125},{"hugoGeneSymbol":"LRRIQ3","entrezGeneId":127255},{"hugoGeneSymbol":"LRRIQ4","entrezGeneId":344657},{"hugoGeneSymbol":"LRRK1","entrezGeneId":79705},{"hugoGeneSymbol":"LRRK2","entrezGeneId":120892},{"hugoGeneSymbol":"LRRN1","entrezGeneId":57633},{"hugoGeneSymbol":"LRRN2","entrezGeneId":10446},{"hugoGeneSymbol":"LRRN3","entrezGeneId":54674},{"hugoGeneSymbol":"LRRN4","entrezGeneId":164312},{"hugoGeneSymbol":"LRRN4CL","entrezGeneId":221091},{"hugoGeneSymbol":"LRRTM1","entrezGeneId":347730},{"hugoGeneSymbol":"LRRTM2","entrezGeneId":26045},{"hugoGeneSymbol":"LRRTM3","entrezGeneId":347731},{"hugoGeneSymbol":"LRRTM4","entrezGeneId":80059},{"hugoGeneSymbol":"LRSAM1","entrezGeneId":90678},{"hugoGeneSymbol":"LRSL","entrezGeneId":406214},{"hugoGeneSymbol":"LRTM1","entrezGeneId":57408},{"hugoGeneSymbol":"LRTM2","entrezGeneId":654429},{"hugoGeneSymbol":"LRTOMT","entrezGeneId":220074},{"hugoGeneSymbol":"LRWD1","entrezGeneId":222229},{"hugoGeneSymbol":"LSAMP","entrezGeneId":4045},{"hugoGeneSymbol":"LSAMP-AS1","entrezGeneId":101926903},{"hugoGeneSymbol":"LSG1","entrezGeneId":55341},{"hugoGeneSymbol":"LSINCT5","entrezGeneId":101234261},{"hugoGeneSymbol":"LSM1","entrezGeneId":27257},{"hugoGeneSymbol":"LSM10","entrezGeneId":84967},{"hugoGeneSymbol":"LSM11","entrezGeneId":134353},{"hugoGeneSymbol":"LSM12","entrezGeneId":124801},{"hugoGeneSymbol":"LSM12P1","entrezGeneId":653122},{"hugoGeneSymbol":"LSM14A","entrezGeneId":26065},{"hugoGeneSymbol":"LSM14B","entrezGeneId":149986},{"hugoGeneSymbol":"LSM1P1","entrezGeneId":100820732},{"hugoGeneSymbol":"LSM1P2","entrezGeneId":106480288},{"hugoGeneSymbol":"LSM2","entrezGeneId":57819},{"hugoGeneSymbol":"LSM3","entrezGeneId":27258},{"hugoGeneSymbol":"LSM3P1","entrezGeneId":100303748},{"hugoGeneSymbol":"LSM3P2","entrezGeneId":100303745},{"hugoGeneSymbol":"LSM3P3","entrezGeneId":647302},{"hugoGeneSymbol":"LSM3P4","entrezGeneId":100130178},{"hugoGeneSymbol":"LSM3P5","entrezGeneId":100303743},{"hugoGeneSymbol":"LSM4","entrezGeneId":25804},{"hugoGeneSymbol":"LSM5","entrezGeneId":23658},{"hugoGeneSymbol":"LSM6","entrezGeneId":11157},{"hugoGeneSymbol":"LSM6P1","entrezGeneId":100129011},{"hugoGeneSymbol":"LSM6P2","entrezGeneId":100462857},{"hugoGeneSymbol":"LSM7","entrezGeneId":51690},{"hugoGeneSymbol":"LSM8","entrezGeneId":51691},{"hugoGeneSymbol":"LSMEM1","entrezGeneId":286006},{"hugoGeneSymbol":"LSMEM2","entrezGeneId":132228},{"hugoGeneSymbol":"LSP1","entrezGeneId":4046},{"hugoGeneSymbol":"LSP1P1","entrezGeneId":100463528},{"hugoGeneSymbol":"LSP1P2","entrezGeneId":100873967},{"hugoGeneSymbol":"LSP1P3","entrezGeneId":729862},{"hugoGeneSymbol":"LSR","entrezGeneId":51599},{"hugoGeneSymbol":"LSS","entrezGeneId":4047},{"hugoGeneSymbol":"LST1","entrezGeneId":7940},{"hugoGeneSymbol":"LTA","entrezGeneId":4049},{"hugoGeneSymbol":"LTA4H","entrezGeneId":4048},{"hugoGeneSymbol":"LTB","entrezGeneId":4050},{"hugoGeneSymbol":"LTB4R","entrezGeneId":1241},{"hugoGeneSymbol":"LTB4R2","entrezGeneId":56413},{"hugoGeneSymbol":"LTBP1","entrezGeneId":4052},{"hugoGeneSymbol":"LTBP2","entrezGeneId":4053},{"hugoGeneSymbol":"LTBP3","entrezGeneId":4054},{"hugoGeneSymbol":"LTBP4","entrezGeneId":8425},{"hugoGeneSymbol":"LTBR","entrezGeneId":4055},{"hugoGeneSymbol":"LTC4S","entrezGeneId":4056},{"hugoGeneSymbol":"LTF","entrezGeneId":4057},{"hugoGeneSymbol":"LTK","entrezGeneId":4058},{"hugoGeneSymbol":"LTN1","entrezGeneId":26046},{"hugoGeneSymbol":"LTV1","entrezGeneId":84946},{"hugoGeneSymbol":"LTV1P1","entrezGeneId":100289220},{"hugoGeneSymbol":"LUADT1","entrezGeneId":106182249},{"hugoGeneSymbol":"LUARIS","entrezGeneId":100506895},{"hugoGeneSymbol":"LUC7L","entrezGeneId":55692},{"hugoGeneSymbol":"LUC7L2","entrezGeneId":51631},{"hugoGeneSymbol":"LUC7L3","entrezGeneId":51747},{"hugoGeneSymbol":"LUC7L3P1","entrezGeneId":100420198},{"hugoGeneSymbol":"LUCAT1","entrezGeneId":100505994},{"hugoGeneSymbol":"LUM","entrezGeneId":4060},{"hugoGeneSymbol":"LUNAR1","entrezGeneId":104564224},{"hugoGeneSymbol":"LURAP1","entrezGeneId":541468},{"hugoGeneSymbol":"LURAP1L","entrezGeneId":286343},{"hugoGeneSymbol":"LURAP1L-AS1","entrezGeneId":101929467},{"hugoGeneSymbol":"LUZP1","entrezGeneId":7798},{"hugoGeneSymbol":"LUZP2","entrezGeneId":338645},{"hugoGeneSymbol":"LUZP4","entrezGeneId":51213},{"hugoGeneSymbol":"LUZP4P1","entrezGeneId":101060111},{"hugoGeneSymbol":"LUZP6","entrezGeneId":767558},{"hugoGeneSymbol":"LVNC2","entrezGeneId":619411},{"hugoGeneSymbol":"LVRN","entrezGeneId":206338},{"hugoGeneSymbol":"LVSKS","entrezGeneId":101060869},{"hugoGeneSymbol":"LXN","entrezGeneId":56925},{"hugoGeneSymbol":"LY6D","entrezGeneId":8581},{"hugoGeneSymbol":"LY6E","entrezGeneId":4061},{"hugoGeneSymbol":"LY6E-DT","entrezGeneId":100133669},{"hugoGeneSymbol":"LY6G5B","entrezGeneId":58496},{"hugoGeneSymbol":"LY6G5C","entrezGeneId":80741},{"hugoGeneSymbol":"LY6G6C","entrezGeneId":80740},{"hugoGeneSymbol":"LY6G6D","entrezGeneId":58530},{"hugoGeneSymbol":"LY6G6E","entrezGeneId":79136},{"hugoGeneSymbol":"LY6G6F","entrezGeneId":259215},{"hugoGeneSymbol":"LY6G6F-LY6G6D","entrezGeneId":110599563},{"hugoGeneSymbol":"LY6H","entrezGeneId":4062},{"hugoGeneSymbol":"LY6K","entrezGeneId":54742},{"hugoGeneSymbol":"LY6L","entrezGeneId":101928108},{"hugoGeneSymbol":"LY75","entrezGeneId":4065},{"hugoGeneSymbol":"LY75-CD302","entrezGeneId":100526664},{"hugoGeneSymbol":"LY86","entrezGeneId":9450},{"hugoGeneSymbol":"LY86-AS1","entrezGeneId":285780},{"hugoGeneSymbol":"LY9","entrezGeneId":4063},{"hugoGeneSymbol":"LY96","entrezGeneId":23643},{"hugoGeneSymbol":"LYAR","entrezGeneId":55646},{"hugoGeneSymbol":"LYARP1","entrezGeneId":100420968},{"hugoGeneSymbol":"LYG1","entrezGeneId":129530},{"hugoGeneSymbol":"LYG2","entrezGeneId":254773},{"hugoGeneSymbol":"LYL1","entrezGeneId":4066},{"hugoGeneSymbol":"LYN","entrezGeneId":4067},{"hugoGeneSymbol":"LYNX1","entrezGeneId":66004},{"hugoGeneSymbol":"LYNX1-SLURP2","entrezGeneId":111188157},{"hugoGeneSymbol":"LYPD1","entrezGeneId":116372},{"hugoGeneSymbol":"LYPD2","entrezGeneId":137797},{"hugoGeneSymbol":"LYPD3","entrezGeneId":27076},{"hugoGeneSymbol":"LYPD4","entrezGeneId":147719},{"hugoGeneSymbol":"LYPD5","entrezGeneId":284348},{"hugoGeneSymbol":"LYPD6","entrezGeneId":130574},{"hugoGeneSymbol":"LYPD6B","entrezGeneId":130576},{"hugoGeneSymbol":"LYPD8","entrezGeneId":646627},{"hugoGeneSymbol":"LYPLA1","entrezGeneId":10434},{"hugoGeneSymbol":"LYPLA1P1","entrezGeneId":100129401},{"hugoGeneSymbol":"LYPLA1P2","entrezGeneId":391686},{"hugoGeneSymbol":"LYPLA1P3","entrezGeneId":157713},{"hugoGeneSymbol":"LYPLA2","entrezGeneId":11313},{"hugoGeneSymbol":"LYPLA2P1","entrezGeneId":653639},{"hugoGeneSymbol":"LYPLA2P2","entrezGeneId":388499},{"hugoGeneSymbol":"LYPLA2P3","entrezGeneId":100128790},{"hugoGeneSymbol":"LYPLAL1","entrezGeneId":127018},{"hugoGeneSymbol":"LYPLAL1-DT","entrezGeneId":643723},{"hugoGeneSymbol":"LYRM1","entrezGeneId":57149},{"hugoGeneSymbol":"LYRM2","entrezGeneId":57226},{"hugoGeneSymbol":"LYRM4","entrezGeneId":57128},{"hugoGeneSymbol":"LYRM4-AS1","entrezGeneId":100129461},{"hugoGeneSymbol":"LYRM7","entrezGeneId":90624},{"hugoGeneSymbol":"LYRM9","entrezGeneId":201229},{"hugoGeneSymbol":"LYSMD1","entrezGeneId":388695},{"hugoGeneSymbol":"LYSMD2","entrezGeneId":256586},{"hugoGeneSymbol":"LYSMD3","entrezGeneId":116068},{"hugoGeneSymbol":"LYSMD4","entrezGeneId":145748},{"hugoGeneSymbol":"LYST","entrezGeneId":1130},{"hugoGeneSymbol":"LYST-AS1","entrezGeneId":100874266},{"hugoGeneSymbol":"LYVE1","entrezGeneId":10894},{"hugoGeneSymbol":"LYZ","entrezGeneId":4069},{"hugoGeneSymbol":"LYZL1","entrezGeneId":84569},{"hugoGeneSymbol":"LYZL2","entrezGeneId":119180},{"hugoGeneSymbol":"LYZL4","entrezGeneId":131375},{"hugoGeneSymbol":"LYZL6","entrezGeneId":57151},{"hugoGeneSymbol":"LZIC","entrezGeneId":84328},{"hugoGeneSymbol":"LZTFL1","entrezGeneId":54585},{"hugoGeneSymbol":"LZTR1","entrezGeneId":8216},{"hugoGeneSymbol":"LZTS1","entrezGeneId":11178},{"hugoGeneSymbol":"LZTS1-AS1","entrezGeneId":100874051},{"hugoGeneSymbol":"LZTS2","entrezGeneId":84445},{"hugoGeneSymbol":"LZTS3","entrezGeneId":9762},{"hugoGeneSymbol":"M1AP","entrezGeneId":130951},{"hugoGeneSymbol":"M6PR","entrezGeneId":4074},{"hugoGeneSymbol":"MAA","entrezGeneId":4080},{"hugoGeneSymbol":"MAATS1","entrezGeneId":89876},{"hugoGeneSymbol":"MAB21L1","entrezGeneId":4081},{"hugoGeneSymbol":"MAB21L2","entrezGeneId":10586},{"hugoGeneSymbol":"MAB21L3","entrezGeneId":126868},{"hugoGeneSymbol":"MACC1","entrezGeneId":346389},{"hugoGeneSymbol":"MACC1-AS1","entrezGeneId":100874041},{"hugoGeneSymbol":"MACF1","entrezGeneId":23499},{"hugoGeneSymbol":"MACO1","entrezGeneId":55219},{"hugoGeneSymbol":"MACOM","entrezGeneId":791229},{"hugoGeneSymbol":"MACROD1","entrezGeneId":28992},{"hugoGeneSymbol":"MACROD2","entrezGeneId":140733},{"hugoGeneSymbol":"MACROD2-AS1","entrezGeneId":100379174},{"hugoGeneSymbol":"MACROD2-IT1","entrezGeneId":140848},{"hugoGeneSymbol":"MACST","entrezGeneId":100529231},{"hugoGeneSymbol":"MAD1L1","entrezGeneId":8379},{"hugoGeneSymbol":"MAD2L1","entrezGeneId":4085},{"hugoGeneSymbol":"MAD2L1BP","entrezGeneId":9587},{"hugoGeneSymbol":"MAD2L1P1","entrezGeneId":326596},{"hugoGeneSymbol":"MAD2L2","entrezGeneId":10459},{"hugoGeneSymbol":"MADCAM1","entrezGeneId":8174},{"hugoGeneSymbol":"MADD","entrezGeneId":8567},{"hugoGeneSymbol":"MAEA","entrezGeneId":10296},{"hugoGeneSymbol":"MAEL","entrezGeneId":84944},{"hugoGeneSymbol":"MAF","entrezGeneId":4094},{"hugoGeneSymbol":"MAF1","entrezGeneId":84232},{"hugoGeneSymbol":"MAFA","entrezGeneId":389692},{"hugoGeneSymbol":"MAFA-AS1","entrezGeneId":104326051},{"hugoGeneSymbol":"MAFB","entrezGeneId":9935},{"hugoGeneSymbol":"MAFD1","entrezGeneId":4095},{"hugoGeneSymbol":"MAFD2","entrezGeneId":4096},{"hugoGeneSymbol":"MAFD3","entrezGeneId":100188792},{"hugoGeneSymbol":"MAFD4","entrezGeneId":100126593},{"hugoGeneSymbol":"MAFD5","entrezGeneId":100188843},{"hugoGeneSymbol":"MAFD6","entrezGeneId":100188844},{"hugoGeneSymbol":"MAFD8","entrezGeneId":100196912},{"hugoGeneSymbol":"MAFD9","entrezGeneId":100196917},{"hugoGeneSymbol":"MAFF","entrezGeneId":23764},{"hugoGeneSymbol":"MAFG","entrezGeneId":4097},{"hugoGeneSymbol":"MAFG-DT","entrezGeneId":92659},{"hugoGeneSymbol":"MAFIP","entrezGeneId":727764},{"hugoGeneSymbol":"MAFK","entrezGeneId":7975},{"hugoGeneSymbol":"MAFTRR","entrezGeneId":102467146},{"hugoGeneSymbol":"MAG","entrezGeneId":4099},{"hugoGeneSymbol":"MAGEA1","entrezGeneId":4100},{"hugoGeneSymbol":"MAGEA10","entrezGeneId":4109},{"hugoGeneSymbol":"MAGEA10-MAGEA5","entrezGeneId":100533997},{"hugoGeneSymbol":"MAGEA11","entrezGeneId":4110},{"hugoGeneSymbol":"MAGEA12","entrezGeneId":4111},{"hugoGeneSymbol":"MAGEA13P","entrezGeneId":139363},{"hugoGeneSymbol":"MAGEA2","entrezGeneId":4101},{"hugoGeneSymbol":"MAGEA2B","entrezGeneId":266740},{"hugoGeneSymbol":"MAGEA3","entrezGeneId":4102},{"hugoGeneSymbol":"MAGEA4","entrezGeneId":4103},{"hugoGeneSymbol":"MAGEA5","entrezGeneId":4104},{"hugoGeneSymbol":"MAGEA6","entrezGeneId":4105},{"hugoGeneSymbol":"MAGEA7P","entrezGeneId":4106},{"hugoGeneSymbol":"MAGEA8","entrezGeneId":4107},{"hugoGeneSymbol":"MAGEA8-AS1","entrezGeneId":101410537},{"hugoGeneSymbol":"MAGEA9","entrezGeneId":4108},{"hugoGeneSymbol":"MAGEA9B","entrezGeneId":728269},{"hugoGeneSymbol":"MAGEB1","entrezGeneId":4112},{"hugoGeneSymbol":"MAGEB10","entrezGeneId":139422},{"hugoGeneSymbol":"MAGEB16","entrezGeneId":139604},{"hugoGeneSymbol":"MAGEB17","entrezGeneId":645864},{"hugoGeneSymbol":"MAGEB18","entrezGeneId":286514},{"hugoGeneSymbol":"MAGEB2","entrezGeneId":4113},{"hugoGeneSymbol":"MAGEB3","entrezGeneId":4114},{"hugoGeneSymbol":"MAGEB4","entrezGeneId":4115},{"hugoGeneSymbol":"MAGEB5","entrezGeneId":347541},{"hugoGeneSymbol":"MAGEB6","entrezGeneId":158809},{"hugoGeneSymbol":"MAGEB6B","entrezGeneId":392433},{"hugoGeneSymbol":"MAGEC1","entrezGeneId":9947},{"hugoGeneSymbol":"MAGEC2","entrezGeneId":51438},{"hugoGeneSymbol":"MAGEC3","entrezGeneId":139081},{"hugoGeneSymbol":"MAGED1","entrezGeneId":9500},{"hugoGeneSymbol":"MAGED2","entrezGeneId":10916},{"hugoGeneSymbol":"MAGED4","entrezGeneId":728239},{"hugoGeneSymbol":"MAGED4B","entrezGeneId":81557},{"hugoGeneSymbol":"MAGEE1","entrezGeneId":57692},{"hugoGeneSymbol":"MAGEE2","entrezGeneId":139599},{"hugoGeneSymbol":"MAGEF1","entrezGeneId":64110},{"hugoGeneSymbol":"MAGEH1","entrezGeneId":28986},{"hugoGeneSymbol":"MAGEL2","entrezGeneId":54551},{"hugoGeneSymbol":"MAGI1","entrezGeneId":9223},{"hugoGeneSymbol":"MAGI1-AS1","entrezGeneId":100873983},{"hugoGeneSymbol":"MAGI1-IT1","entrezGeneId":151877},{"hugoGeneSymbol":"MAGI2","entrezGeneId":9863},{"hugoGeneSymbol":"MAGI2-AS1","entrezGeneId":100874020},{"hugoGeneSymbol":"MAGI2-AS2","entrezGeneId":100874021},{"hugoGeneSymbol":"MAGI2-AS3","entrezGeneId":100505881},{"hugoGeneSymbol":"MAGI3","entrezGeneId":260425},{"hugoGeneSymbol":"MAGIX","entrezGeneId":79917},{"hugoGeneSymbol":"MAGOH","entrezGeneId":4116},{"hugoGeneSymbol":"MAGOH2P","entrezGeneId":100506898},{"hugoGeneSymbol":"MAGOH3P","entrezGeneId":90352},{"hugoGeneSymbol":"MAGOHB","entrezGeneId":55110},{"hugoGeneSymbol":"MAGT1","entrezGeneId":84061},{"hugoGeneSymbol":"MAIP1","entrezGeneId":79568},{"hugoGeneSymbol":"MAJIN","entrezGeneId":283129},{"hugoGeneSymbol":"MAK","entrezGeneId":4117},{"hugoGeneSymbol":"MAK16","entrezGeneId":84549},{"hugoGeneSymbol":"MAL","entrezGeneId":4118},{"hugoGeneSymbol":"MAL2","entrezGeneId":114569},{"hugoGeneSymbol":"MAL2-AS1","entrezGeneId":105375726},{"hugoGeneSymbol":"MALAT1","entrezGeneId":378938},{"hugoGeneSymbol":"MALINC1","entrezGeneId":100505636},{"hugoGeneSymbol":"MALL","entrezGeneId":7851},{"hugoGeneSymbol":"MALRD1","entrezGeneId":340895},{"hugoGeneSymbol":"MALSU1","entrezGeneId":115416},{"hugoGeneSymbol":"MALT1","entrezGeneId":10892},{"hugoGeneSymbol":"MAMDC2","entrezGeneId":256691},{"hugoGeneSymbol":"MAMDC2-AS1","entrezGeneId":100507244},{"hugoGeneSymbol":"MAMDC4","entrezGeneId":158056},{"hugoGeneSymbol":"MAML1","entrezGeneId":9794},{"hugoGeneSymbol":"MAML2","entrezGeneId":84441},{"hugoGeneSymbol":"MAML3","entrezGeneId":55534},{"hugoGeneSymbol":"MAMLD1","entrezGeneId":10046},{"hugoGeneSymbol":"MAMSTR","entrezGeneId":284358},{"hugoGeneSymbol":"MAN1A1","entrezGeneId":4121},{"hugoGeneSymbol":"MAN1A2","entrezGeneId":10905},{"hugoGeneSymbol":"MAN1A2P1","entrezGeneId":100129507},{"hugoGeneSymbol":"MAN1B1","entrezGeneId":11253},{"hugoGeneSymbol":"MAN1B1-DT","entrezGeneId":100289341},{"hugoGeneSymbol":"MAN1C1","entrezGeneId":57134},{"hugoGeneSymbol":"MAN2A1","entrezGeneId":4124},{"hugoGeneSymbol":"MAN2A2","entrezGeneId":4122},{"hugoGeneSymbol":"MAN2B1","entrezGeneId":4125},{"hugoGeneSymbol":"MAN2B2","entrezGeneId":23324},{"hugoGeneSymbol":"MAN2C1","entrezGeneId":4123},{"hugoGeneSymbol":"MANBA","entrezGeneId":4126},{"hugoGeneSymbol":"MANBAL","entrezGeneId":63905},{"hugoGeneSymbol":"MANCR","entrezGeneId":100216001},{"hugoGeneSymbol":"MANEA","entrezGeneId":79694},{"hugoGeneSymbol":"MANEA-DT","entrezGeneId":101927288},{"hugoGeneSymbol":"MANEAL","entrezGeneId":149175},{"hugoGeneSymbol":"MANF","entrezGeneId":7873},{"hugoGeneSymbol":"MANSC1","entrezGeneId":54682},{"hugoGeneSymbol":"MANSC4","entrezGeneId":100287284},{"hugoGeneSymbol":"MAOA","entrezGeneId":4128},{"hugoGeneSymbol":"MAOB","entrezGeneId":4129},{"hugoGeneSymbol":"MAP10","entrezGeneId":54627},{"hugoGeneSymbol":"MAP1A","entrezGeneId":4130},{"hugoGeneSymbol":"MAP1B","entrezGeneId":4131},{"hugoGeneSymbol":"MAP1LC3A","entrezGeneId":84557},{"hugoGeneSymbol":"MAP1LC3B","entrezGeneId":81631},{"hugoGeneSymbol":"MAP1LC3B2","entrezGeneId":643246},{"hugoGeneSymbol":"MAP1LC3BP1","entrezGeneId":392288},{"hugoGeneSymbol":"MAP1LC3C","entrezGeneId":440738},{"hugoGeneSymbol":"MAP1LC3P","entrezGeneId":387615},{"hugoGeneSymbol":"MAP1S","entrezGeneId":55201},{"hugoGeneSymbol":"MAP2","entrezGeneId":4133},{"hugoGeneSymbol":"MAP2K1","entrezGeneId":5604},{"hugoGeneSymbol":"MAP2K1P1","entrezGeneId":29778},{"hugoGeneSymbol":"MAP2K2","entrezGeneId":5605},{"hugoGeneSymbol":"MAP2K3","entrezGeneId":5606},{"hugoGeneSymbol":"MAP2K4","entrezGeneId":6416},{"hugoGeneSymbol":"MAP2K4P1","entrezGeneId":139201},{"hugoGeneSymbol":"MAP2K5","entrezGeneId":5607},{"hugoGeneSymbol":"MAP2K6","entrezGeneId":5608},{"hugoGeneSymbol":"MAP2K7","entrezGeneId":5609},{"hugoGeneSymbol":"MAP3K1","entrezGeneId":4214},{"hugoGeneSymbol":"MAP3K10","entrezGeneId":4294},{"hugoGeneSymbol":"MAP3K11","entrezGeneId":4296},{"hugoGeneSymbol":"MAP3K12","entrezGeneId":7786},{"hugoGeneSymbol":"MAP3K13","entrezGeneId":9175},{"hugoGeneSymbol":"MAP3K14","entrezGeneId":9020},{"hugoGeneSymbol":"MAP3K14-AS1","entrezGeneId":100133991},{"hugoGeneSymbol":"MAP3K15","entrezGeneId":389840},{"hugoGeneSymbol":"MAP3K19","entrezGeneId":80122},{"hugoGeneSymbol":"MAP3K2","entrezGeneId":10746},{"hugoGeneSymbol":"MAP3K20","entrezGeneId":51776},{"hugoGeneSymbol":"MAP3K20-AS1","entrezGeneId":339751},{"hugoGeneSymbol":"MAP3K21","entrezGeneId":84451},{"hugoGeneSymbol":"MAP3K3","entrezGeneId":4215},{"hugoGeneSymbol":"MAP3K4","entrezGeneId":4216},{"hugoGeneSymbol":"MAP3K5","entrezGeneId":4217},{"hugoGeneSymbol":"MAP3K6","entrezGeneId":9064},{"hugoGeneSymbol":"MAP3K7","entrezGeneId":6885},{"hugoGeneSymbol":"MAP3K7CL","entrezGeneId":56911},{"hugoGeneSymbol":"MAP3K8","entrezGeneId":1326},{"hugoGeneSymbol":"MAP3K9","entrezGeneId":4293},{"hugoGeneSymbol":"MAP4","entrezGeneId":4134},{"hugoGeneSymbol":"MAP4K1","entrezGeneId":11184},{"hugoGeneSymbol":"MAP4K2","entrezGeneId":5871},{"hugoGeneSymbol":"MAP4K3","entrezGeneId":8491},{"hugoGeneSymbol":"MAP4K4","entrezGeneId":9448},{"hugoGeneSymbol":"MAP4K5","entrezGeneId":11183},{"hugoGeneSymbol":"MAP6","entrezGeneId":4135},{"hugoGeneSymbol":"MAP6D1","entrezGeneId":79929},{"hugoGeneSymbol":"MAP7","entrezGeneId":9053},{"hugoGeneSymbol":"MAP7D1","entrezGeneId":55700},{"hugoGeneSymbol":"MAP7D2","entrezGeneId":256714},{"hugoGeneSymbol":"MAP7D3","entrezGeneId":79649},{"hugoGeneSymbol":"MAP9","entrezGeneId":79884},{"hugoGeneSymbol":"MAPK1","entrezGeneId":5594},{"hugoGeneSymbol":"MAPK10","entrezGeneId":5602},{"hugoGeneSymbol":"MAPK11","entrezGeneId":5600},{"hugoGeneSymbol":"MAPK12","entrezGeneId":6300},{"hugoGeneSymbol":"MAPK13","entrezGeneId":5603},{"hugoGeneSymbol":"MAPK14","entrezGeneId":1432},{"hugoGeneSymbol":"MAPK15","entrezGeneId":225689},{"hugoGeneSymbol":"MAPK1IP1L","entrezGeneId":93487},{"hugoGeneSymbol":"MAPK3","entrezGeneId":5595},{"hugoGeneSymbol":"MAPK4","entrezGeneId":5596},{"hugoGeneSymbol":"MAPK6","entrezGeneId":5597},{"hugoGeneSymbol":"MAPK6PS1","entrezGeneId":317686},{"hugoGeneSymbol":"MAPK6PS2","entrezGeneId":254664},{"hugoGeneSymbol":"MAPK6PS3","entrezGeneId":317684},{"hugoGeneSymbol":"MAPK6PS4","entrezGeneId":286065},{"hugoGeneSymbol":"MAPK6PS5","entrezGeneId":286156},{"hugoGeneSymbol":"MAPK6PS6","entrezGeneId":282967},{"hugoGeneSymbol":"MAPK7","entrezGeneId":5598},{"hugoGeneSymbol":"MAPK8","entrezGeneId":5599},{"hugoGeneSymbol":"MAPK8IP1","entrezGeneId":9479},{"hugoGeneSymbol":"MAPK8IP1P1","entrezGeneId":644253},{"hugoGeneSymbol":"MAPK8IP1P2","entrezGeneId":644172},{"hugoGeneSymbol":"MAPK8IP2","entrezGeneId":23542},{"hugoGeneSymbol":"MAPK8IP3","entrezGeneId":23162},{"hugoGeneSymbol":"MAPK9","entrezGeneId":5601},{"hugoGeneSymbol":"MAPKAP1","entrezGeneId":79109},{"hugoGeneSymbol":"MAPKAPK2","entrezGeneId":9261},{"hugoGeneSymbol":"MAPKAPK3","entrezGeneId":7867},{"hugoGeneSymbol":"MAPKAPK5","entrezGeneId":8550},{"hugoGeneSymbol":"MAPKAPK5-AS1","entrezGeneId":51275},{"hugoGeneSymbol":"MAPKAPK5P1","entrezGeneId":100533849},{"hugoGeneSymbol":"MAPKBP1","entrezGeneId":23005},{"hugoGeneSymbol":"MAPRE1","entrezGeneId":22919},{"hugoGeneSymbol":"MAPRE1P1","entrezGeneId":80327},{"hugoGeneSymbol":"MAPRE1P2","entrezGeneId":642305},{"hugoGeneSymbol":"MAPRE1P3","entrezGeneId":100422229},{"hugoGeneSymbol":"MAPRE2","entrezGeneId":10982},{"hugoGeneSymbol":"MAPRE3","entrezGeneId":22924},{"hugoGeneSymbol":"MAPT","entrezGeneId":4137},{"hugoGeneSymbol":"MAPT-AS1","entrezGeneId":100128977},{"hugoGeneSymbol":"MAPT-IT1","entrezGeneId":100130148},{"hugoGeneSymbol":"MARC1","entrezGeneId":64757},{"hugoGeneSymbol":"MARC2","entrezGeneId":54996},{"hugoGeneSymbol":"MARCH1","entrezGeneId":55016},{"hugoGeneSymbol":"MARCH10","entrezGeneId":162333},{"hugoGeneSymbol":"MARCH11","entrezGeneId":441061},{"hugoGeneSymbol":"MARCH2","entrezGeneId":51257},{"hugoGeneSymbol":"MARCH3","entrezGeneId":115123},{"hugoGeneSymbol":"MARCH4","entrezGeneId":57574},{"hugoGeneSymbol":"MARCH5","entrezGeneId":54708},{"hugoGeneSymbol":"MARCH6","entrezGeneId":10299},{"hugoGeneSymbol":"MARCH7","entrezGeneId":64844},{"hugoGeneSymbol":"MARCH8","entrezGeneId":220972},{"hugoGeneSymbol":"MARCH9","entrezGeneId":92979},{"hugoGeneSymbol":"MARCKS","entrezGeneId":4082},{"hugoGeneSymbol":"MARCKSL1","entrezGeneId":65108},{"hugoGeneSymbol":"MARCKSL1P1","entrezGeneId":100913183},{"hugoGeneSymbol":"MARCKSL1P2","entrezGeneId":100913182},{"hugoGeneSymbol":"MARCKSP1","entrezGeneId":4083},{"hugoGeneSymbol":"MARCO","entrezGeneId":8685},{"hugoGeneSymbol":"MARCOL","entrezGeneId":105378220},{"hugoGeneSymbol":"MARF1","entrezGeneId":9665},{"hugoGeneSymbol":"MARK1","entrezGeneId":4139},{"hugoGeneSymbol":"MARK2","entrezGeneId":2011},{"hugoGeneSymbol":"MARK2P1","entrezGeneId":100421501},{"hugoGeneSymbol":"MARK2P10","entrezGeneId":402679},{"hugoGeneSymbol":"MARK2P11","entrezGeneId":100421484},{"hugoGeneSymbol":"MARK2P12","entrezGeneId":100421565},{"hugoGeneSymbol":"MARK2P13","entrezGeneId":100631260},{"hugoGeneSymbol":"MARK2P14","entrezGeneId":100631261},{"hugoGeneSymbol":"MARK2P15","entrezGeneId":100533794},{"hugoGeneSymbol":"MARK2P16","entrezGeneId":100533795},{"hugoGeneSymbol":"MARK2P17","entrezGeneId":100421499},{"hugoGeneSymbol":"MARK2P2","entrezGeneId":100421502},{"hugoGeneSymbol":"MARK2P3","entrezGeneId":100421507},{"hugoGeneSymbol":"MARK2P4","entrezGeneId":100421496},{"hugoGeneSymbol":"MARK2P5","entrezGeneId":100421485},{"hugoGeneSymbol":"MARK2P6","entrezGeneId":100421500},{"hugoGeneSymbol":"MARK2P7","entrezGeneId":100421531},{"hugoGeneSymbol":"MARK2P8","entrezGeneId":100421498},{"hugoGeneSymbol":"MARK2P9","entrezGeneId":100507674},{"hugoGeneSymbol":"MARK3","entrezGeneId":4140},{"hugoGeneSymbol":"MARK3P1","entrezGeneId":100421550},{"hugoGeneSymbol":"MARK3P2","entrezGeneId":100421503},{"hugoGeneSymbol":"MARK3P3","entrezGeneId":100533754},{"hugoGeneSymbol":"MARK4","entrezGeneId":57787},{"hugoGeneSymbol":"MARS","entrezGeneId":4141},{"hugoGeneSymbol":"MARS2","entrezGeneId":92935},{"hugoGeneSymbol":"MARVELD1","entrezGeneId":83742},{"hugoGeneSymbol":"MARVELD2","entrezGeneId":153562},{"hugoGeneSymbol":"MARVELD3","entrezGeneId":91862},{"hugoGeneSymbol":"MAS1","entrezGeneId":4142},{"hugoGeneSymbol":"MAS1L","entrezGeneId":116511},{"hugoGeneSymbol":"MAS1LP1","entrezGeneId":646366},{"hugoGeneSymbol":"MASCRNA","entrezGeneId":109136578},{"hugoGeneSymbol":"MASP1","entrezGeneId":5648},{"hugoGeneSymbol":"MASP2","entrezGeneId":10747},{"hugoGeneSymbol":"MAST1","entrezGeneId":22983},{"hugoGeneSymbol":"MAST2","entrezGeneId":23139},{"hugoGeneSymbol":"MAST3","entrezGeneId":23031},{"hugoGeneSymbol":"MAST4","entrezGeneId":375449},{"hugoGeneSymbol":"MAST4-AS1","entrezGeneId":101928794},{"hugoGeneSymbol":"MAST4-IT1","entrezGeneId":100874310},{"hugoGeneSymbol":"MASTL","entrezGeneId":84930},{"hugoGeneSymbol":"MAT1A","entrezGeneId":4143},{"hugoGeneSymbol":"MAT2A","entrezGeneId":4144},{"hugoGeneSymbol":"MAT2B","entrezGeneId":27430},{"hugoGeneSymbol":"MATK","entrezGeneId":4145},{"hugoGeneSymbol":"MATN1","entrezGeneId":4146},{"hugoGeneSymbol":"MATN1-AS1","entrezGeneId":100129196},{"hugoGeneSymbol":"MATN2","entrezGeneId":4147},{"hugoGeneSymbol":"MATN3","entrezGeneId":4148},{"hugoGeneSymbol":"MATN4","entrezGeneId":8785},{"hugoGeneSymbol":"MATR3","entrezGeneId":9782},{"hugoGeneSymbol":"MAU2","entrezGeneId":23383},{"hugoGeneSymbol":"MAVS","entrezGeneId":57506},{"hugoGeneSymbol":"MAX","entrezGeneId":4149},{"hugoGeneSymbol":"MAZ","entrezGeneId":4150},{"hugoGeneSymbol":"MB","entrezGeneId":4151},{"hugoGeneSymbol":"MB21D2","entrezGeneId":151963},{"hugoGeneSymbol":"MBCS","entrezGeneId":109819370},{"hugoGeneSymbol":"MBD1","entrezGeneId":4152},{"hugoGeneSymbol":"MBD2","entrezGeneId":8932},{"hugoGeneSymbol":"MBD3","entrezGeneId":53615},{"hugoGeneSymbol":"MBD3L1","entrezGeneId":85509},{"hugoGeneSymbol":"MBD3L2","entrezGeneId":125997},{"hugoGeneSymbol":"MBD3L2B","entrezGeneId":729458},{"hugoGeneSymbol":"MBD3L3","entrezGeneId":653657},{"hugoGeneSymbol":"MBD3L4","entrezGeneId":653656},{"hugoGeneSymbol":"MBD3L5","entrezGeneId":284428},{"hugoGeneSymbol":"MBD4","entrezGeneId":8930},{"hugoGeneSymbol":"MBD5","entrezGeneId":55777},{"hugoGeneSymbol":"MBD6","entrezGeneId":114785},{"hugoGeneSymbol":"MBIP","entrezGeneId":51562},{"hugoGeneSymbol":"MBL1P","entrezGeneId":8512},{"hugoGeneSymbol":"MBL2","entrezGeneId":4153},{"hugoGeneSymbol":"MBL3P","entrezGeneId":50639},{"hugoGeneSymbol":"MBLAC1","entrezGeneId":255374},{"hugoGeneSymbol":"MBLAC2","entrezGeneId":153364},{"hugoGeneSymbol":"MBNL1","entrezGeneId":4154},{"hugoGeneSymbol":"MBNL1-AS1","entrezGeneId":401093},{"hugoGeneSymbol":"MBNL2","entrezGeneId":10150},{"hugoGeneSymbol":"MBNL3","entrezGeneId":55796},{"hugoGeneSymbol":"MBNP","entrezGeneId":101154649},{"hugoGeneSymbol":"MBOAT1","entrezGeneId":154141},{"hugoGeneSymbol":"MBOAT2","entrezGeneId":129642},{"hugoGeneSymbol":"MBOAT4","entrezGeneId":619373},{"hugoGeneSymbol":"MBOAT7","entrezGeneId":79143},{"hugoGeneSymbol":"MBP","entrezGeneId":4155},{"hugoGeneSymbol":"MBS1","entrezGeneId":4156},{"hugoGeneSymbol":"MBS2","entrezGeneId":7880},{"hugoGeneSymbol":"MBS3","entrezGeneId":22811},{"hugoGeneSymbol":"MBTD1","entrezGeneId":54799},{"hugoGeneSymbol":"MBTPS1","entrezGeneId":8720},{"hugoGeneSymbol":"MBTPS2","entrezGeneId":51360},{"hugoGeneSymbol":"MC1R","entrezGeneId":4157},{"hugoGeneSymbol":"MC2R","entrezGeneId":4158},{"hugoGeneSymbol":"MC3R","entrezGeneId":4159},{"hugoGeneSymbol":"MC4R","entrezGeneId":4160},{"hugoGeneSymbol":"MC5R","entrezGeneId":4161},{"hugoGeneSymbol":"MCAM","entrezGeneId":4162},{"hugoGeneSymbol":"MCAT","entrezGeneId":27349},{"hugoGeneSymbol":"MCC","entrezGeneId":4163},{"hugoGeneSymbol":"MCCC1","entrezGeneId":56922},{"hugoGeneSymbol":"MCCC1-AS1","entrezGeneId":106480736},{"hugoGeneSymbol":"MCCC2","entrezGeneId":64087},{"hugoGeneSymbol":"MCCD1","entrezGeneId":401250},{"hugoGeneSymbol":"MCCD1P1","entrezGeneId":100048903},{"hugoGeneSymbol":"MCCD1P2","entrezGeneId":100048924},{"hugoGeneSymbol":"MCDR1","entrezGeneId":4167},{"hugoGeneSymbol":"MCDR3","entrezGeneId":317668},{"hugoGeneSymbol":"MCDR4","entrezGeneId":619370},{"hugoGeneSymbol":"MCDR5","entrezGeneId":106660618},{"hugoGeneSymbol":"MCEE","entrezGeneId":84693},{"hugoGeneSymbol":"MCEMP1","entrezGeneId":199675},{"hugoGeneSymbol":"MCF2","entrezGeneId":4168},{"hugoGeneSymbol":"MCF2L","entrezGeneId":23263},{"hugoGeneSymbol":"MCF2L-AS1","entrezGeneId":100289410},{"hugoGeneSymbol":"MCF2L2","entrezGeneId":23101},{"hugoGeneSymbol":"MCFD2","entrezGeneId":90411},{"hugoGeneSymbol":"MCFD2P1","entrezGeneId":645927},{"hugoGeneSymbol":"MCHR1","entrezGeneId":2847},{"hugoGeneSymbol":"MCHR2","entrezGeneId":84539},{"hugoGeneSymbol":"MCHR2-AS1","entrezGeneId":728012},{"hugoGeneSymbol":"MCI2","entrezGeneId":100233226},{"hugoGeneSymbol":"MCIDAS","entrezGeneId":345643},{"hugoGeneSymbol":"MCL1","entrezGeneId":4170},{"hugoGeneSymbol":"MCM10","entrezGeneId":55388},{"hugoGeneSymbol":"MCM2","entrezGeneId":4171},{"hugoGeneSymbol":"MCM3","entrezGeneId":4172},{"hugoGeneSymbol":"MCM3AP","entrezGeneId":8888},{"hugoGeneSymbol":"MCM3AP-AS1","entrezGeneId":114044},{"hugoGeneSymbol":"MCM4","entrezGeneId":4173},{"hugoGeneSymbol":"MCM5","entrezGeneId":4174},{"hugoGeneSymbol":"MCM6","entrezGeneId":4175},{"hugoGeneSymbol":"MCM7","entrezGeneId":4176},{"hugoGeneSymbol":"MCM8","entrezGeneId":84515},{"hugoGeneSymbol":"MCM8-AS1","entrezGeneId":101929225},{"hugoGeneSymbol":"MCM9","entrezGeneId":254394},{"hugoGeneSymbol":"MCMBP","entrezGeneId":79892},{"hugoGeneSymbol":"MCMDC2","entrezGeneId":157777},{"hugoGeneSymbol":"MCOLN1","entrezGeneId":57192},{"hugoGeneSymbol":"MCOLN2","entrezGeneId":255231},{"hugoGeneSymbol":"MCOLN3","entrezGeneId":55283},{"hugoGeneSymbol":"MCOP1","entrezGeneId":8113},{"hugoGeneSymbol":"MCOPCB1","entrezGeneId":85503},{"hugoGeneSymbol":"MCOPCB2","entrezGeneId":80771},{"hugoGeneSymbol":"MCOPCT1","entrezGeneId":8130},{"hugoGeneSymbol":"MCOR","entrezGeneId":8104},{"hugoGeneSymbol":"MCPH1","entrezGeneId":79648},{"hugoGeneSymbol":"MCPH1-AS1","entrezGeneId":100507530},{"hugoGeneSymbol":"MCRIP1","entrezGeneId":348262},{"hugoGeneSymbol":"MCRIP2","entrezGeneId":84331},{"hugoGeneSymbol":"MCRIP2P1","entrezGeneId":102388891},{"hugoGeneSymbol":"MCRIP2P2","entrezGeneId":106480278},{"hugoGeneSymbol":"MCRS1","entrezGeneId":10445},{"hugoGeneSymbol":"MCS","entrezGeneId":4183},{"hugoGeneSymbol":"MCS+9.7","entrezGeneId":106736613},{"hugoGeneSymbol":"MCTP1","entrezGeneId":79772},{"hugoGeneSymbol":"MCTP2","entrezGeneId":55784},{"hugoGeneSymbol":"MCTS1","entrezGeneId":28985},{"hugoGeneSymbol":"MCTS2P","entrezGeneId":100101490},{"hugoGeneSymbol":"MCU","entrezGeneId":90550},{"hugoGeneSymbol":"MCUB","entrezGeneId":55013},{"hugoGeneSymbol":"MCUR1","entrezGeneId":63933},{"hugoGeneSymbol":"MCUR1P1","entrezGeneId":53383},{"hugoGeneSymbol":"MCUR1P2","entrezGeneId":100420620},{"hugoGeneSymbol":"MDBS2","entrezGeneId":619480},{"hugoGeneSymbol":"MDC1","entrezGeneId":9656},{"hugoGeneSymbol":"MDC1-AS1","entrezGeneId":106478956},{"hugoGeneSymbol":"MDC1B","entrezGeneId":53368},{"hugoGeneSymbol":"MDCMP","entrezGeneId":619409},{"hugoGeneSymbol":"MDD1","entrezGeneId":431708},{"hugoGeneSymbol":"MDD2","entrezGeneId":431709},{"hugoGeneSymbol":"MDFI","entrezGeneId":4188},{"hugoGeneSymbol":"MDFIC","entrezGeneId":29969},{"hugoGeneSymbol":"MDFIC2","entrezGeneId":107986096},{"hugoGeneSymbol":"MDGA1","entrezGeneId":266727},{"hugoGeneSymbol":"MDGA2","entrezGeneId":161357},{"hugoGeneSymbol":"MDH1","entrezGeneId":4190},{"hugoGeneSymbol":"MDH1B","entrezGeneId":130752},{"hugoGeneSymbol":"MDH2","entrezGeneId":4191},{"hugoGeneSymbol":"MDK","entrezGeneId":4192},{"hugoGeneSymbol":"MDM1","entrezGeneId":56890},{"hugoGeneSymbol":"MDM2","entrezGeneId":4193},{"hugoGeneSymbol":"MDM4","entrezGeneId":4194},{"hugoGeneSymbol":"MDN1","entrezGeneId":23195},{"hugoGeneSymbol":"MDNS","entrezGeneId":100529148},{"hugoGeneSymbol":"MDP1","entrezGeneId":145553},{"hugoGeneSymbol":"MDRV","entrezGeneId":4195},{"hugoGeneSymbol":"MDS2","entrezGeneId":259283},{"hugoGeneSymbol":"ME1","entrezGeneId":4199},{"hugoGeneSymbol":"ME2","entrezGeneId":4200},{"hugoGeneSymbol":"ME2P1","entrezGeneId":286239},{"hugoGeneSymbol":"ME3","entrezGeneId":10873},{"hugoGeneSymbol":"MEA1","entrezGeneId":4201},{"hugoGeneSymbol":"MEAF6","entrezGeneId":64769},{"hugoGeneSymbol":"MEAF6P1","entrezGeneId":100874045},{"hugoGeneSymbol":"MEAT6","entrezGeneId":105378111},{"hugoGeneSymbol":"MECOM","entrezGeneId":2122},{"hugoGeneSymbol":"MECP2","entrezGeneId":4204},{"hugoGeneSymbol":"MECR","entrezGeneId":51102},{"hugoGeneSymbol":"MED1","entrezGeneId":5469},{"hugoGeneSymbol":"MED10","entrezGeneId":84246},{"hugoGeneSymbol":"MED11","entrezGeneId":400569},{"hugoGeneSymbol":"MED12","entrezGeneId":9968},{"hugoGeneSymbol":"MED12L","entrezGeneId":116931},{"hugoGeneSymbol":"MED13","entrezGeneId":9969},{"hugoGeneSymbol":"MED13L","entrezGeneId":23389},{"hugoGeneSymbol":"MED13P1","entrezGeneId":100499481},{"hugoGeneSymbol":"MED14","entrezGeneId":9282},{"hugoGeneSymbol":"MED14OS","entrezGeneId":100873985},{"hugoGeneSymbol":"MED14P1","entrezGeneId":359791},{"hugoGeneSymbol":"MED15","entrezGeneId":51586},{"hugoGeneSymbol":"MED15P1","entrezGeneId":326615},{"hugoGeneSymbol":"MED15P3","entrezGeneId":106481657},{"hugoGeneSymbol":"MED15P4","entrezGeneId":100127989},{"hugoGeneSymbol":"MED15P5","entrezGeneId":391436},{"hugoGeneSymbol":"MED15P6","entrezGeneId":100996438},{"hugoGeneSymbol":"MED15P7","entrezGeneId":100996466},{"hugoGeneSymbol":"MED15P8","entrezGeneId":106480229},{"hugoGeneSymbol":"MED15P9","entrezGeneId":285103},{"hugoGeneSymbol":"MED16","entrezGeneId":10025},{"hugoGeneSymbol":"MED17","entrezGeneId":9440},{"hugoGeneSymbol":"MED18","entrezGeneId":54797},{"hugoGeneSymbol":"MED19","entrezGeneId":219541},{"hugoGeneSymbol":"MED20","entrezGeneId":9477},{"hugoGeneSymbol":"MED21","entrezGeneId":9412},{"hugoGeneSymbol":"MED22","entrezGeneId":6837},{"hugoGeneSymbol":"MED23","entrezGeneId":9439},{"hugoGeneSymbol":"MED24","entrezGeneId":9862},{"hugoGeneSymbol":"MED25","entrezGeneId":81857},{"hugoGeneSymbol":"MED26","entrezGeneId":9441},{"hugoGeneSymbol":"MED27","entrezGeneId":9442},{"hugoGeneSymbol":"MED28","entrezGeneId":80306},{"hugoGeneSymbol":"MED28P1","entrezGeneId":100420207},{"hugoGeneSymbol":"MED28P2","entrezGeneId":106480445},{"hugoGeneSymbol":"MED28P3","entrezGeneId":100131051},{"hugoGeneSymbol":"MED28P4","entrezGeneId":100130359},{"hugoGeneSymbol":"MED28P5","entrezGeneId":106479053},{"hugoGeneSymbol":"MED28P6","entrezGeneId":106480808},{"hugoGeneSymbol":"MED28P7","entrezGeneId":729327},{"hugoGeneSymbol":"MED28P8","entrezGeneId":101060144},{"hugoGeneSymbol":"MED29","entrezGeneId":55588},{"hugoGeneSymbol":"MED30","entrezGeneId":90390},{"hugoGeneSymbol":"MED31","entrezGeneId":51003},{"hugoGeneSymbol":"MED4","entrezGeneId":29079},{"hugoGeneSymbol":"MED4-AS1","entrezGeneId":100873965},{"hugoGeneSymbol":"MED6","entrezGeneId":10001},{"hugoGeneSymbol":"MED6P1","entrezGeneId":100128990},{"hugoGeneSymbol":"MED7","entrezGeneId":9443},{"hugoGeneSymbol":"MED8","entrezGeneId":112950},{"hugoGeneSymbol":"MED9","entrezGeneId":55090},{"hugoGeneSymbol":"MEDAG","entrezGeneId":84935},{"hugoGeneSymbol":"MEF2A","entrezGeneId":4205},{"hugoGeneSymbol":"MEF2AP1","entrezGeneId":4206},{"hugoGeneSymbol":"MEF2B","entrezGeneId":100271849},{"hugoGeneSymbol":"MEF2BNBP1","entrezGeneId":100128109},{"hugoGeneSymbol":"MEF2C","entrezGeneId":4208},{"hugoGeneSymbol":"MEF2C-AS1","entrezGeneId":101929423},{"hugoGeneSymbol":"MEF2C-AS2","entrezGeneId":109729137},{"hugoGeneSymbol":"MEF2D","entrezGeneId":4209},{"hugoGeneSymbol":"MEFV","entrezGeneId":4210},{"hugoGeneSymbol":"MEG3","entrezGeneId":55384},{"hugoGeneSymbol":"MEG8","entrezGeneId":79104},{"hugoGeneSymbol":"MEG9","entrezGeneId":100507257},{"hugoGeneSymbol":"MEGF10","entrezGeneId":84466},{"hugoGeneSymbol":"MEGF11","entrezGeneId":84465},{"hugoGeneSymbol":"MEGF6","entrezGeneId":1953},{"hugoGeneSymbol":"MEGF8","entrezGeneId":1954},{"hugoGeneSymbol":"MEGF9","entrezGeneId":1955},{"hugoGeneSymbol":"MEHMO","entrezGeneId":8422},{"hugoGeneSymbol":"MEI1","entrezGeneId":150365},{"hugoGeneSymbol":"MEI4","entrezGeneId":101928601},{"hugoGeneSymbol":"MEIG1","entrezGeneId":644890},{"hugoGeneSymbol":"MEIKIN","entrezGeneId":728637},{"hugoGeneSymbol":"MEIOB","entrezGeneId":254528},{"hugoGeneSymbol":"MEIOC","entrezGeneId":284071},{"hugoGeneSymbol":"MEIS1","entrezGeneId":4211},{"hugoGeneSymbol":"MEIS1-AS2","entrezGeneId":100873998},{"hugoGeneSymbol":"MEIS1-AS3","entrezGeneId":730198},{"hugoGeneSymbol":"MEIS2","entrezGeneId":4212},{"hugoGeneSymbol":"MEIS3","entrezGeneId":56917},{"hugoGeneSymbol":"MEIS3P1","entrezGeneId":4213},{"hugoGeneSymbol":"MEIS3P2","entrezGeneId":257468},{"hugoGeneSymbol":"MELK","entrezGeneId":9833},{"hugoGeneSymbol":"MELTF","entrezGeneId":4241},{"hugoGeneSymbol":"MELTF-AS1","entrezGeneId":100507057},{"hugoGeneSymbol":"MEMO1","entrezGeneId":51072},{"hugoGeneSymbol":"MEMO1P1","entrezGeneId":728556},{"hugoGeneSymbol":"MEMO1P2","entrezGeneId":645175},{"hugoGeneSymbol":"MEMO1P3","entrezGeneId":100462782},{"hugoGeneSymbol":"MEMO1P4","entrezGeneId":100462785},{"hugoGeneSymbol":"MEMO1P5","entrezGeneId":106481668},{"hugoGeneSymbol":"MEN1","entrezGeneId":4221},{"hugoGeneSymbol":"MENAQ1","entrezGeneId":100188822},{"hugoGeneSymbol":"MENAQ2","entrezGeneId":100302562},{"hugoGeneSymbol":"MENAQ3","entrezGeneId":100302563},{"hugoGeneSymbol":"MENOQ1","entrezGeneId":494029},{"hugoGeneSymbol":"MENOQ2","entrezGeneId":100302517},{"hugoGeneSymbol":"MENOQ3","entrezGeneId":100302518},{"hugoGeneSymbol":"MENOQ4","entrezGeneId":100302519},{"hugoGeneSymbol":"MEOX1","entrezGeneId":4222},{"hugoGeneSymbol":"MEOX2","entrezGeneId":4223},{"hugoGeneSymbol":"MEP1A","entrezGeneId":4224},{"hugoGeneSymbol":"MEP1AP1","entrezGeneId":642840},{"hugoGeneSymbol":"MEP1AP2","entrezGeneId":644777},{"hugoGeneSymbol":"MEP1AP3","entrezGeneId":389747},{"hugoGeneSymbol":"MEP1AP4","entrezGeneId":643157},{"hugoGeneSymbol":"MEP1B","entrezGeneId":4225},{"hugoGeneSymbol":"MEPCE","entrezGeneId":56257},{"hugoGeneSymbol":"MEPE","entrezGeneId":56955},{"hugoGeneSymbol":"MER5","entrezGeneId":4228},{"hugoGeneSymbol":"MERTK","entrezGeneId":10461},{"hugoGeneSymbol":"MESD","entrezGeneId":23184},{"hugoGeneSymbol":"MESP1","entrezGeneId":55897},{"hugoGeneSymbol":"MESP2","entrezGeneId":145873},{"hugoGeneSymbol":"MEST","entrezGeneId":4232},{"hugoGeneSymbol":"MESTIT1","entrezGeneId":317751},{"hugoGeneSymbol":"MESTP1","entrezGeneId":338470},{"hugoGeneSymbol":"MESTP2","entrezGeneId":100421572},{"hugoGeneSymbol":"MESTP3","entrezGeneId":645641},{"hugoGeneSymbol":"MESTP4","entrezGeneId":131572},{"hugoGeneSymbol":"MET","entrezGeneId":4233},{"hugoGeneSymbol":"METAP1","entrezGeneId":23173},{"hugoGeneSymbol":"METAP1D","entrezGeneId":254042},{"hugoGeneSymbol":"METAP2","entrezGeneId":10988},{"hugoGeneSymbol":"METRN","entrezGeneId":79006},{"hugoGeneSymbol":"METRNL","entrezGeneId":284207},{"hugoGeneSymbol":"METTL1","entrezGeneId":4234},{"hugoGeneSymbol":"METTL11B","entrezGeneId":149281},{"hugoGeneSymbol":"METTL13","entrezGeneId":51603},{"hugoGeneSymbol":"METTL14","entrezGeneId":57721},{"hugoGeneSymbol":"METTL15","entrezGeneId":196074},{"hugoGeneSymbol":"METTL15P1","entrezGeneId":100130758},{"hugoGeneSymbol":"METTL15P2","entrezGeneId":644915},{"hugoGeneSymbol":"METTL15P3","entrezGeneId":729650},{"hugoGeneSymbol":"METTL16","entrezGeneId":79066},{"hugoGeneSymbol":"METTL17","entrezGeneId":64745},{"hugoGeneSymbol":"METTL18","entrezGeneId":92342},{"hugoGeneSymbol":"METTL21A","entrezGeneId":151194},{"hugoGeneSymbol":"METTL21AP1","entrezGeneId":100421629},{"hugoGeneSymbol":"METTL21C","entrezGeneId":196541},{"hugoGeneSymbol":"METTL21EP","entrezGeneId":121952},{"hugoGeneSymbol":"METTL22","entrezGeneId":79091},{"hugoGeneSymbol":"METTL23","entrezGeneId":124512},{"hugoGeneSymbol":"METTL24","entrezGeneId":728464},{"hugoGeneSymbol":"METTL25","entrezGeneId":84190},{"hugoGeneSymbol":"METTL26","entrezGeneId":84326},{"hugoGeneSymbol":"METTL27","entrezGeneId":155368},{"hugoGeneSymbol":"METTL2A","entrezGeneId":339175},{"hugoGeneSymbol":"METTL2B","entrezGeneId":55798},{"hugoGeneSymbol":"METTL3","entrezGeneId":56339},{"hugoGeneSymbol":"METTL4","entrezGeneId":64863},{"hugoGeneSymbol":"METTL5","entrezGeneId":29081},{"hugoGeneSymbol":"METTL6","entrezGeneId":131965},{"hugoGeneSymbol":"METTL7A","entrezGeneId":25840},{"hugoGeneSymbol":"METTL7AP1","entrezGeneId":100996686},{"hugoGeneSymbol":"METTL7B","entrezGeneId":196410},{"hugoGeneSymbol":"METTL8","entrezGeneId":79828},{"hugoGeneSymbol":"METTL8P1","entrezGeneId":728996},{"hugoGeneSymbol":"METTL9","entrezGeneId":51108},{"hugoGeneSymbol":"MEX3A","entrezGeneId":92312},{"hugoGeneSymbol":"MEX3B","entrezGeneId":84206},{"hugoGeneSymbol":"MEX3C","entrezGeneId":51320},{"hugoGeneSymbol":"MEX3D","entrezGeneId":399664},{"hugoGeneSymbol":"MFAP1","entrezGeneId":4236},{"hugoGeneSymbol":"MFAP1P1","entrezGeneId":646755},{"hugoGeneSymbol":"MFAP2","entrezGeneId":4237},{"hugoGeneSymbol":"MFAP3","entrezGeneId":4238},{"hugoGeneSymbol":"MFAP3L","entrezGeneId":9848},{"hugoGeneSymbol":"MFAP4","entrezGeneId":4239},{"hugoGeneSymbol":"MFAP5","entrezGeneId":8076},{"hugoGeneSymbol":"MFF","entrezGeneId":56947},{"hugoGeneSymbol":"MFGE8","entrezGeneId":4240},{"hugoGeneSymbol":"MFHAS1","entrezGeneId":9258},{"hugoGeneSymbol":"MFN1","entrezGeneId":55669},{"hugoGeneSymbol":"MFN2","entrezGeneId":9927},{"hugoGeneSymbol":"MFNG","entrezGeneId":4242},{"hugoGeneSymbol":"MFRP","entrezGeneId":83552},{"hugoGeneSymbol":"MFSD1","entrezGeneId":64747},{"hugoGeneSymbol":"MFSD10","entrezGeneId":10227},{"hugoGeneSymbol":"MFSD11","entrezGeneId":79157},{"hugoGeneSymbol":"MFSD12","entrezGeneId":126321},{"hugoGeneSymbol":"MFSD13A","entrezGeneId":79847},{"hugoGeneSymbol":"MFSD13B","entrezGeneId":105371130},{"hugoGeneSymbol":"MFSD14A","entrezGeneId":64645},{"hugoGeneSymbol":"MFSD14B","entrezGeneId":84641},{"hugoGeneSymbol":"MFSD14C","entrezGeneId":84278},{"hugoGeneSymbol":"MFSD1P1","entrezGeneId":100313532},{"hugoGeneSymbol":"MFSD2A","entrezGeneId":84879},{"hugoGeneSymbol":"MFSD2B","entrezGeneId":388931},{"hugoGeneSymbol":"MFSD3","entrezGeneId":113655},{"hugoGeneSymbol":"MFSD4A","entrezGeneId":148808},{"hugoGeneSymbol":"MFSD4B","entrezGeneId":91749},{"hugoGeneSymbol":"MFSD4BP1","entrezGeneId":100128154},{"hugoGeneSymbol":"MFSD5","entrezGeneId":84975},{"hugoGeneSymbol":"MFSD6","entrezGeneId":54842},{"hugoGeneSymbol":"MFSD6L","entrezGeneId":162387},{"hugoGeneSymbol":"MFSD8","entrezGeneId":256471},{"hugoGeneSymbol":"MFSD9","entrezGeneId":84804},{"hugoGeneSymbol":"MFT2","entrezGeneId":100188881},{"hugoGeneSymbol":"MGA","entrezGeneId":23269},{"hugoGeneSymbol":"MGAM","entrezGeneId":8972},{"hugoGeneSymbol":"MGAM2","entrezGeneId":93432},{"hugoGeneSymbol":"MGARP","entrezGeneId":84709},{"hugoGeneSymbol":"MGAT1","entrezGeneId":4245},{"hugoGeneSymbol":"MGAT2","entrezGeneId":4247},{"hugoGeneSymbol":"MGAT2P1","entrezGeneId":100422588},{"hugoGeneSymbol":"MGAT2P2","entrezGeneId":100422589},{"hugoGeneSymbol":"MGAT3","entrezGeneId":4248},{"hugoGeneSymbol":"MGAT3-AS1","entrezGeneId":104502417},{"hugoGeneSymbol":"MGAT4A","entrezGeneId":11320},{"hugoGeneSymbol":"MGAT4B","entrezGeneId":11282},{"hugoGeneSymbol":"MGAT4C","entrezGeneId":25834},{"hugoGeneSymbol":"MGAT4D","entrezGeneId":152586},{"hugoGeneSymbol":"MGAT4EP","entrezGeneId":641515},{"hugoGeneSymbol":"MGAT5","entrezGeneId":4249},{"hugoGeneSymbol":"MGAT5B","entrezGeneId":146664},{"hugoGeneSymbol":"MGC12916","entrezGeneId":84815},{"hugoGeneSymbol":"MGC15885","entrezGeneId":197003},{"hugoGeneSymbol":"MGC16025","entrezGeneId":85009},{"hugoGeneSymbol":"MGC16275","entrezGeneId":85001},{"hugoGeneSymbol":"MGC27345","entrezGeneId":157247},{"hugoGeneSymbol":"MGC27382","entrezGeneId":149047},{"hugoGeneSymbol":"MGC2889","entrezGeneId":84789},{"hugoGeneSymbol":"MGC32805","entrezGeneId":153163},{"hugoGeneSymbol":"MGC34796","entrezGeneId":414927},{"hugoGeneSymbol":"MGC4859","entrezGeneId":79150},{"hugoGeneSymbol":"MGC70870","entrezGeneId":403340},{"hugoGeneSymbol":"MGCT","entrezGeneId":8093},{"hugoGeneSymbol":"MGEA5","entrezGeneId":10724},{"hugoGeneSymbol":"MGLL","entrezGeneId":11343},{"hugoGeneSymbol":"MGME1","entrezGeneId":92667},{"hugoGeneSymbol":"MGMT","entrezGeneId":4255},{"hugoGeneSymbol":"MGP","entrezGeneId":4256},{"hugoGeneSymbol":"MGR1","entrezGeneId":192115},{"hugoGeneSymbol":"MGR12","entrezGeneId":100188851},{"hugoGeneSymbol":"MGR2","entrezGeneId":8249},{"hugoGeneSymbol":"MGR3","entrezGeneId":337892},{"hugoGeneSymbol":"MGR4","entrezGeneId":338342},{"hugoGeneSymbol":"MGR5","entrezGeneId":387576},{"hugoGeneSymbol":"MGR6","entrezGeneId":317773},{"hugoGeneSymbol":"MGR7","entrezGeneId":553992},{"hugoGeneSymbol":"MGR8","entrezGeneId":100188790},{"hugoGeneSymbol":"MGR9","entrezGeneId":100415943},{"hugoGeneSymbol":"MGRN1","entrezGeneId":23295},{"hugoGeneSymbol":"MGS","entrezGeneId":100126595},{"hugoGeneSymbol":"MGST1","entrezGeneId":4257},{"hugoGeneSymbol":"MGST2","entrezGeneId":4258},{"hugoGeneSymbol":"MGST3","entrezGeneId":4259},{"hugoGeneSymbol":"MHAC","entrezGeneId":53341},{"hugoGeneSymbol":"MHB","entrezGeneId":619511},{"hugoGeneSymbol":"MHENCR","entrezGeneId":100505771},{"hugoGeneSymbol":"MHRT","entrezGeneId":104564225},{"hugoGeneSymbol":"MHS2","entrezGeneId":4264},{"hugoGeneSymbol":"MHS3","entrezGeneId":7977},{"hugoGeneSymbol":"MHS4","entrezGeneId":4265},{"hugoGeneSymbol":"MHS6","entrezGeneId":4266},{"hugoGeneSymbol":"MHW1","entrezGeneId":10386},{"hugoGeneSymbol":"MHW2","entrezGeneId":50979},{"hugoGeneSymbol":"MIA","entrezGeneId":8190},{"hugoGeneSymbol":"MIA-RAB4B","entrezGeneId":100529262},{"hugoGeneSymbol":"MIA2","entrezGeneId":4253},{"hugoGeneSymbol":"MIA3","entrezGeneId":375056},{"hugoGeneSymbol":"MIAT","entrezGeneId":440823},{"hugoGeneSymbol":"MIATNB","entrezGeneId":102724827},{"hugoGeneSymbol":"MIB1","entrezGeneId":57534},{"hugoGeneSymbol":"MIB2","entrezGeneId":142678},{"hugoGeneSymbol":"MIC12","entrezGeneId":4273},{"hugoGeneSymbol":"MIC7","entrezGeneId":4270},{"hugoGeneSymbol":"MICA","entrezGeneId":100507436},{"hugoGeneSymbol":"MICA-AS1","entrezGeneId":101929072},{"hugoGeneSymbol":"MICAL1","entrezGeneId":64780},{"hugoGeneSymbol":"MICAL2","entrezGeneId":9645},{"hugoGeneSymbol":"MICAL3","entrezGeneId":57553},{"hugoGeneSymbol":"MICALCL","entrezGeneId":84953},{"hugoGeneSymbol":"MICALL1","entrezGeneId":85377},{"hugoGeneSymbol":"MICALL2","entrezGeneId":79778},{"hugoGeneSymbol":"MICB","entrezGeneId":4277},{"hugoGeneSymbol":"MICB-DT","entrezGeneId":102725068},{"hugoGeneSymbol":"MICC","entrezGeneId":100129192},{"hugoGeneSymbol":"MICD","entrezGeneId":4279},{"hugoGeneSymbol":"MICE","entrezGeneId":4280},{"hugoGeneSymbol":"MICF","entrezGeneId":352957},{"hugoGeneSymbol":"MICG","entrezGeneId":352967},{"hugoGeneSymbol":"MICU1","entrezGeneId":10367},{"hugoGeneSymbol":"MICU2","entrezGeneId":221154},{"hugoGeneSymbol":"MICU3","entrezGeneId":286097},{"hugoGeneSymbol":"MID1","entrezGeneId":4281},{"hugoGeneSymbol":"MID1IP1","entrezGeneId":58526},{"hugoGeneSymbol":"MID1IP1-AS1","entrezGeneId":100874211},{"hugoGeneSymbol":"MID2","entrezGeneId":11043},{"hugoGeneSymbol":"MIDN","entrezGeneId":90007},{"hugoGeneSymbol":"MIEF1","entrezGeneId":54471},{"hugoGeneSymbol":"MIEF2","entrezGeneId":125170},{"hugoGeneSymbol":"MIEN1","entrezGeneId":84299},{"hugoGeneSymbol":"MIER1","entrezGeneId":57708},{"hugoGeneSymbol":"MIER2","entrezGeneId":54531},{"hugoGeneSymbol":"MIER3","entrezGeneId":166968},{"hugoGeneSymbol":"MIF","entrezGeneId":4282},{"hugoGeneSymbol":"MIF-AS1","entrezGeneId":284889},{"hugoGeneSymbol":"MIF4GD","entrezGeneId":57409},{"hugoGeneSymbol":"MIG7","entrezGeneId":723788},{"hugoGeneSymbol":"MIGA1","entrezGeneId":374986},{"hugoGeneSymbol":"MIGA2","entrezGeneId":84895},{"hugoGeneSymbol":"MIIP","entrezGeneId":60672},{"hugoGeneSymbol":"MILR1","entrezGeneId":284021},{"hugoGeneSymbol":"MIMT1","entrezGeneId":100073347},{"hugoGeneSymbol":"MINCR","entrezGeneId":100507316},{"hugoGeneSymbol":"MINDY1","entrezGeneId":55793},{"hugoGeneSymbol":"MINDY2","entrezGeneId":54629},{"hugoGeneSymbol":"MINDY3","entrezGeneId":80013},{"hugoGeneSymbol":"MINDY4","entrezGeneId":84182},{"hugoGeneSymbol":"MINDY4B","entrezGeneId":646951},{"hugoGeneSymbol":"MINK1","entrezGeneId":50488},{"hugoGeneSymbol":"MINOS1","entrezGeneId":440574},{"hugoGeneSymbol":"MINOS1-NBL1","entrezGeneId":100532736},{"hugoGeneSymbol":"MINOS1P1","entrezGeneId":100462953},{"hugoGeneSymbol":"MINOS1P2","entrezGeneId":100289489},{"hugoGeneSymbol":"MINOS1P3","entrezGeneId":100462954},{"hugoGeneSymbol":"MINOS1P4","entrezGeneId":100462957},{"hugoGeneSymbol":"MINPP1","entrezGeneId":9562},{"hugoGeneSymbol":"MIOS","entrezGeneId":54468},{"hugoGeneSymbol":"MIOX","entrezGeneId":55586},{"hugoGeneSymbol":"MIOXP1","entrezGeneId":100419614},{"hugoGeneSymbol":"MIP","entrezGeneId":4284},{"hugoGeneSymbol":"MIPEP","entrezGeneId":4285},{"hugoGeneSymbol":"MIPEPP1","entrezGeneId":100533682},{"hugoGeneSymbol":"MIPEPP2","entrezGeneId":100130099},{"hugoGeneSymbol":"MIPEPP3","entrezGeneId":650794},{"hugoGeneSymbol":"MIPOL1","entrezGeneId":145282},{"hugoGeneSymbol":"MIR1-1","entrezGeneId":406904},{"hugoGeneSymbol":"MIR1-1HG","entrezGeneId":128826},{"hugoGeneSymbol":"MIR1-1HG-AS1","entrezGeneId":253868},{"hugoGeneSymbol":"MIR1-2","entrezGeneId":406905},{"hugoGeneSymbol":"MIR100","entrezGeneId":406892},{"hugoGeneSymbol":"MIR100HG","entrezGeneId":399959},{"hugoGeneSymbol":"MIR101-1","entrezGeneId":406893},{"hugoGeneSymbol":"MIR101-2","entrezGeneId":406894},{"hugoGeneSymbol":"MIR103A1","entrezGeneId":406895},{"hugoGeneSymbol":"MIR103A2","entrezGeneId":406896},{"hugoGeneSymbol":"MIR103B1","entrezGeneId":100302238},{"hugoGeneSymbol":"MIR103B2","entrezGeneId":100302282},{"hugoGeneSymbol":"MIR105-1","entrezGeneId":406897},{"hugoGeneSymbol":"MIR105-2","entrezGeneId":406898},{"hugoGeneSymbol":"MIR106A","entrezGeneId":406899},{"hugoGeneSymbol":"MIR106B","entrezGeneId":406900},{"hugoGeneSymbol":"MIR107","entrezGeneId":406901},{"hugoGeneSymbol":"MIR10A","entrezGeneId":406902},{"hugoGeneSymbol":"MIR10B","entrezGeneId":406903},{"hugoGeneSymbol":"MIR1178","entrezGeneId":100302274},{"hugoGeneSymbol":"MIR1179","entrezGeneId":100302235},{"hugoGeneSymbol":"MIR1180","entrezGeneId":100302256},{"hugoGeneSymbol":"MIR1181","entrezGeneId":100302213},{"hugoGeneSymbol":"MIR1182","entrezGeneId":100302132},{"hugoGeneSymbol":"MIR1183","entrezGeneId":100302122},{"hugoGeneSymbol":"MIR1184-1","entrezGeneId":100302111},{"hugoGeneSymbol":"MIR1184-2","entrezGeneId":100422985},{"hugoGeneSymbol":"MIR1184-3","entrezGeneId":100422977},{"hugoGeneSymbol":"MIR1185-1","entrezGeneId":100302157},{"hugoGeneSymbol":"MIR1185-2","entrezGeneId":100302209},{"hugoGeneSymbol":"MIR1193","entrezGeneId":100422837},{"hugoGeneSymbol":"MIR1197","entrezGeneId":100302250},{"hugoGeneSymbol":"MIR1199","entrezGeneId":102466515},{"hugoGeneSymbol":"MIR1200","entrezGeneId":100302113},{"hugoGeneSymbol":"MIR1202","entrezGeneId":100302259},{"hugoGeneSymbol":"MIR1203","entrezGeneId":100302211},{"hugoGeneSymbol":"MIR1204","entrezGeneId":100302185},{"hugoGeneSymbol":"MIR1205","entrezGeneId":100302161},{"hugoGeneSymbol":"MIR1206","entrezGeneId":100302170},{"hugoGeneSymbol":"MIR1207","entrezGeneId":100302175},{"hugoGeneSymbol":"MIR1208","entrezGeneId":100302281},{"hugoGeneSymbol":"MIR122","entrezGeneId":406906},{"hugoGeneSymbol":"MIR1224","entrezGeneId":100187716},{"hugoGeneSymbol":"MIR1225","entrezGeneId":100188847},{"hugoGeneSymbol":"MIR1226","entrezGeneId":100302232},{"hugoGeneSymbol":"MIR1227","entrezGeneId":100302283},{"hugoGeneSymbol":"MIR1228","entrezGeneId":100302201},{"hugoGeneSymbol":"MIR1229","entrezGeneId":100302156},{"hugoGeneSymbol":"MIR1231","entrezGeneId":100302158},{"hugoGeneSymbol":"MIR1233-1","entrezGeneId":100302160},{"hugoGeneSymbol":"MIR1233-2","entrezGeneId":100422845},{"hugoGeneSymbol":"MIR1234","entrezGeneId":100302196},{"hugoGeneSymbol":"MIR1236","entrezGeneId":100302242},{"hugoGeneSymbol":"MIR1237","entrezGeneId":100302280},{"hugoGeneSymbol":"MIR1238","entrezGeneId":100302226},{"hugoGeneSymbol":"MIR124-1","entrezGeneId":406907},{"hugoGeneSymbol":"MIR124-2","entrezGeneId":406908},{"hugoGeneSymbol":"MIR124-2HG","entrezGeneId":100130155},{"hugoGeneSymbol":"MIR124-3","entrezGeneId":406909},{"hugoGeneSymbol":"MIR1243","entrezGeneId":100302188},{"hugoGeneSymbol":"MIR1244-1","entrezGeneId":100302285},{"hugoGeneSymbol":"MIR1244-2","entrezGeneId":100422885},{"hugoGeneSymbol":"MIR1244-3","entrezGeneId":100422872},{"hugoGeneSymbol":"MIR1244-4","entrezGeneId":103504734},{"hugoGeneSymbol":"MIR1245A","entrezGeneId":100302219},{"hugoGeneSymbol":"MIR1245B","entrezGeneId":100616324},{"hugoGeneSymbol":"MIR1246","entrezGeneId":100302142},{"hugoGeneSymbol":"MIR1247","entrezGeneId":100302145},{"hugoGeneSymbol":"MIR1248","entrezGeneId":100302143},{"hugoGeneSymbol":"MIR1249","entrezGeneId":100302149},{"hugoGeneSymbol":"MIR1250","entrezGeneId":100302229},{"hugoGeneSymbol":"MIR1251","entrezGeneId":100302289},{"hugoGeneSymbol":"MIR1252","entrezGeneId":100302136},{"hugoGeneSymbol":"MIR1253","entrezGeneId":100302208},{"hugoGeneSymbol":"MIR1255A","entrezGeneId":100302193},{"hugoGeneSymbol":"MIR1255B1","entrezGeneId":100313806},{"hugoGeneSymbol":"MIR1255B2","entrezGeneId":100313835},{"hugoGeneSymbol":"MIR1256","entrezGeneId":100302155},{"hugoGeneSymbol":"MIR1257","entrezGeneId":100302168},{"hugoGeneSymbol":"MIR1258","entrezGeneId":100302172},{"hugoGeneSymbol":"MIR125A","entrezGeneId":406910},{"hugoGeneSymbol":"MIR125B1","entrezGeneId":406911},{"hugoGeneSymbol":"MIR125B2","entrezGeneId":406912},{"hugoGeneSymbol":"MIR126","entrezGeneId":406913},{"hugoGeneSymbol":"MIR1260A","entrezGeneId":100302236},{"hugoGeneSymbol":"MIR1260B","entrezGeneId":100422991},{"hugoGeneSymbol":"MIR1261","entrezGeneId":100302228},{"hugoGeneSymbol":"MIR1262","entrezGeneId":100302279},{"hugoGeneSymbol":"MIR1263","entrezGeneId":100302148},{"hugoGeneSymbol":"MIR1264","entrezGeneId":100302251},{"hugoGeneSymbol":"MIR1265","entrezGeneId":100302116},{"hugoGeneSymbol":"MIR1266","entrezGeneId":100302202},{"hugoGeneSymbol":"MIR1267","entrezGeneId":100302286},{"hugoGeneSymbol":"MIR1268A","entrezGeneId":100302233},{"hugoGeneSymbol":"MIR1268B","entrezGeneId":100616121},{"hugoGeneSymbol":"MIR1269A","entrezGeneId":100302177},{"hugoGeneSymbol":"MIR1269B","entrezGeneId":100616494},{"hugoGeneSymbol":"MIR127","entrezGeneId":406914},{"hugoGeneSymbol":"MIR1270","entrezGeneId":100302179},{"hugoGeneSymbol":"MIR1271","entrezGeneId":100302203},{"hugoGeneSymbol":"MIR1272","entrezGeneId":100302184},{"hugoGeneSymbol":"MIR1273C","entrezGeneId":100422821},{"hugoGeneSymbol":"MIR1273H","entrezGeneId":102466247},{"hugoGeneSymbol":"MIR1275","entrezGeneId":100302123},{"hugoGeneSymbol":"MIR1276","entrezGeneId":100302121},{"hugoGeneSymbol":"MIR1277","entrezGeneId":100302214},{"hugoGeneSymbol":"MIR1278","entrezGeneId":100302163},{"hugoGeneSymbol":"MIR1279","entrezGeneId":100302182},{"hugoGeneSymbol":"MIR128-1","entrezGeneId":406915},{"hugoGeneSymbol":"MIR128-2","entrezGeneId":406916},{"hugoGeneSymbol":"MIR1281","entrezGeneId":100302237},{"hugoGeneSymbol":"MIR1282","entrezGeneId":100302254},{"hugoGeneSymbol":"MIR1283-1","entrezGeneId":100302265},{"hugoGeneSymbol":"MIR1283-2","entrezGeneId":100302205},{"hugoGeneSymbol":"MIR1284","entrezGeneId":100302112},{"hugoGeneSymbol":"MIR1285-1","entrezGeneId":100302218},{"hugoGeneSymbol":"MIR1285-2","entrezGeneId":100302268},{"hugoGeneSymbol":"MIR1286","entrezGeneId":100302118},{"hugoGeneSymbol":"MIR1287","entrezGeneId":100302133},{"hugoGeneSymbol":"MIR1288","entrezGeneId":100302124},{"hugoGeneSymbol":"MIR1289-1","entrezGeneId":100302125},{"hugoGeneSymbol":"MIR1289-2","entrezGeneId":100302134},{"hugoGeneSymbol":"MIR129-1","entrezGeneId":406917},{"hugoGeneSymbol":"MIR129-2","entrezGeneId":406918},{"hugoGeneSymbol":"MIR1290","entrezGeneId":100302276},{"hugoGeneSymbol":"MIR1291","entrezGeneId":100302221},{"hugoGeneSymbol":"MIR1292","entrezGeneId":100302138},{"hugoGeneSymbol":"MIR1293","entrezGeneId":100302220},{"hugoGeneSymbol":"MIR1294","entrezGeneId":100302181},{"hugoGeneSymbol":"MIR1295A","entrezGeneId":100302178},{"hugoGeneSymbol":"MIR1295B","entrezGeneId":100847009},{"hugoGeneSymbol":"MIR1296","entrezGeneId":100302150},{"hugoGeneSymbol":"MIR1297","entrezGeneId":100302187},{"hugoGeneSymbol":"MIR1298","entrezGeneId":100302153},{"hugoGeneSymbol":"MIR1299","entrezGeneId":100302167},{"hugoGeneSymbol":"MIR1301","entrezGeneId":100302246},{"hugoGeneSymbol":"MIR1302-1","entrezGeneId":100302227},{"hugoGeneSymbol":"MIR1302-10","entrezGeneId":100422834},{"hugoGeneSymbol":"MIR1302-11","entrezGeneId":100422919},{"hugoGeneSymbol":"MIR1302-2","entrezGeneId":100302278},{"hugoGeneSymbol":"MIR1302-2HG","entrezGeneId":107985730},{"hugoGeneSymbol":"MIR1302-3","entrezGeneId":100302128},{"hugoGeneSymbol":"MIR1302-4","entrezGeneId":100302130},{"hugoGeneSymbol":"MIR1302-5","entrezGeneId":100302146},{"hugoGeneSymbol":"MIR1302-6","entrezGeneId":100302140},{"hugoGeneSymbol":"MIR1302-7","entrezGeneId":100302147},{"hugoGeneSymbol":"MIR1302-8","entrezGeneId":100302223},{"hugoGeneSymbol":"MIR1302-9","entrezGeneId":100422831},{"hugoGeneSymbol":"MIR1303","entrezGeneId":100302284},{"hugoGeneSymbol":"MIR1304","entrezGeneId":100302240},{"hugoGeneSymbol":"MIR1305","entrezGeneId":100302270},{"hugoGeneSymbol":"MIR1306","entrezGeneId":100302197},{"hugoGeneSymbol":"MIR1307","entrezGeneId":100302174},{"hugoGeneSymbol":"MIR130A","entrezGeneId":406919},{"hugoGeneSymbol":"MIR130B","entrezGeneId":406920},{"hugoGeneSymbol":"MIR132","entrezGeneId":406921},{"hugoGeneSymbol":"MIR1321","entrezGeneId":100302171},{"hugoGeneSymbol":"MIR1322","entrezGeneId":100302166},{"hugoGeneSymbol":"MIR1323","entrezGeneId":100302255},{"hugoGeneSymbol":"MIR1324","entrezGeneId":100302212},{"hugoGeneSymbol":"MIR133A1","entrezGeneId":406922},{"hugoGeneSymbol":"MIR133A1HG","entrezGeneId":102723167},{"hugoGeneSymbol":"MIR133A2","entrezGeneId":406923},{"hugoGeneSymbol":"MIR133B","entrezGeneId":442890},{"hugoGeneSymbol":"MIR134","entrezGeneId":406924},{"hugoGeneSymbol":"MIR1343","entrezGeneId":100616437},{"hugoGeneSymbol":"MIR135A1","entrezGeneId":406925},{"hugoGeneSymbol":"MIR135A2","entrezGeneId":406926},{"hugoGeneSymbol":"MIR135B","entrezGeneId":442891},{"hugoGeneSymbol":"MIR136","entrezGeneId":406927},{"hugoGeneSymbol":"MIR137","entrezGeneId":406928},{"hugoGeneSymbol":"MIR137HG","entrezGeneId":400765},{"hugoGeneSymbol":"MIR138-1","entrezGeneId":406929},{"hugoGeneSymbol":"MIR138-2","entrezGeneId":406930},{"hugoGeneSymbol":"MIR139","entrezGeneId":406931},{"hugoGeneSymbol":"MIR140","entrezGeneId":406932},{"hugoGeneSymbol":"MIR141","entrezGeneId":406933},{"hugoGeneSymbol":"MIR142","entrezGeneId":406934},{"hugoGeneSymbol":"MIR143","entrezGeneId":406935},{"hugoGeneSymbol":"MIR144","entrezGeneId":406936},{"hugoGeneSymbol":"MIR145","entrezGeneId":406937},{"hugoGeneSymbol":"MIR1468","entrezGeneId":100302115},{"hugoGeneSymbol":"MIR1469","entrezGeneId":100302258},{"hugoGeneSymbol":"MIR146A","entrezGeneId":406938},{"hugoGeneSymbol":"MIR146B","entrezGeneId":574447},{"hugoGeneSymbol":"MIR1470","entrezGeneId":100302127},{"hugoGeneSymbol":"MIR1471","entrezGeneId":100302126},{"hugoGeneSymbol":"MIR147A","entrezGeneId":406939},{"hugoGeneSymbol":"MIR147B","entrezGeneId":100126311},{"hugoGeneSymbol":"MIR148A","entrezGeneId":406940},{"hugoGeneSymbol":"MIR148B","entrezGeneId":442892},{"hugoGeneSymbol":"MIR149","entrezGeneId":406941},{"hugoGeneSymbol":"MIR150","entrezGeneId":406942},{"hugoGeneSymbol":"MIR151A","entrezGeneId":442893},{"hugoGeneSymbol":"MIR151B","entrezGeneId":100616247},{"hugoGeneSymbol":"MIR152","entrezGeneId":406943},{"hugoGeneSymbol":"MIR153-1","entrezGeneId":406944},{"hugoGeneSymbol":"MIR153-2","entrezGeneId":406945},{"hugoGeneSymbol":"MIR1537","entrezGeneId":100302139},{"hugoGeneSymbol":"MIR1538","entrezGeneId":100302119},{"hugoGeneSymbol":"MIR1539","entrezGeneId":100302257},{"hugoGeneSymbol":"MIR154","entrezGeneId":406946},{"hugoGeneSymbol":"MIR155","entrezGeneId":406947},{"hugoGeneSymbol":"MIR155HG","entrezGeneId":114614},{"hugoGeneSymbol":"MIR1587","entrezGeneId":100616251},{"hugoGeneSymbol":"MIR15A","entrezGeneId":406948},{"hugoGeneSymbol":"MIR15B","entrezGeneId":406949},{"hugoGeneSymbol":"MIR16-1","entrezGeneId":406950},{"hugoGeneSymbol":"MIR16-2","entrezGeneId":406951},{"hugoGeneSymbol":"MIR17","entrezGeneId":406952},{"hugoGeneSymbol":"MIR17HG","entrezGeneId":407975},{"hugoGeneSymbol":"MIR181A1","entrezGeneId":406995},{"hugoGeneSymbol":"MIR181A1HG","entrezGeneId":100131234},{"hugoGeneSymbol":"MIR181A2","entrezGeneId":406954},{"hugoGeneSymbol":"MIR181A2HG","entrezGeneId":100379345},{"hugoGeneSymbol":"MIR181B1","entrezGeneId":406955},{"hugoGeneSymbol":"MIR181B2","entrezGeneId":406956},{"hugoGeneSymbol":"MIR181C","entrezGeneId":406957},{"hugoGeneSymbol":"MIR181D","entrezGeneId":574457},{"hugoGeneSymbol":"MIR182","entrezGeneId":406958},{"hugoGeneSymbol":"MIR1825","entrezGeneId":100302183},{"hugoGeneSymbol":"MIR1827","entrezGeneId":100302217},{"hugoGeneSymbol":"MIR183","entrezGeneId":406959},{"hugoGeneSymbol":"MIR184","entrezGeneId":406960},{"hugoGeneSymbol":"MIR185","entrezGeneId":406961},{"hugoGeneSymbol":"MIR186","entrezGeneId":406962},{"hugoGeneSymbol":"MIR187","entrezGeneId":406963},{"hugoGeneSymbol":"MIR188","entrezGeneId":406964},{"hugoGeneSymbol":"MIR18A","entrezGeneId":406953},{"hugoGeneSymbol":"MIR18B","entrezGeneId":574033},{"hugoGeneSymbol":"MIR1908","entrezGeneId":100302263},{"hugoGeneSymbol":"MIR1909","entrezGeneId":100302210},{"hugoGeneSymbol":"MIR190A","entrezGeneId":406965},{"hugoGeneSymbol":"MIR190B","entrezGeneId":100126346},{"hugoGeneSymbol":"MIR191","entrezGeneId":406966},{"hugoGeneSymbol":"MIR1910","entrezGeneId":100302261},{"hugoGeneSymbol":"MIR1911","entrezGeneId":100302222},{"hugoGeneSymbol":"MIR1912","entrezGeneId":100302144},{"hugoGeneSymbol":"MIR1913","entrezGeneId":100302141},{"hugoGeneSymbol":"MIR1914","entrezGeneId":100302137},{"hugoGeneSymbol":"MIR1915","entrezGeneId":100302129},{"hugoGeneSymbol":"MIR192","entrezGeneId":406967},{"hugoGeneSymbol":"MIR193A","entrezGeneId":406968},{"hugoGeneSymbol":"MIR193B","entrezGeneId":574455},{"hugoGeneSymbol":"MIR193BHG","entrezGeneId":100129781},{"hugoGeneSymbol":"MIR194-1","entrezGeneId":406969},{"hugoGeneSymbol":"MIR194-2","entrezGeneId":406970},{"hugoGeneSymbol":"MIR194-2HG","entrezGeneId":105369343},{"hugoGeneSymbol":"MIR195","entrezGeneId":406971},{"hugoGeneSymbol":"MIR196A1","entrezGeneId":406972},{"hugoGeneSymbol":"MIR196A2","entrezGeneId":406973},{"hugoGeneSymbol":"MIR196B","entrezGeneId":442920},{"hugoGeneSymbol":"MIR197","entrezGeneId":406974},{"hugoGeneSymbol":"MIR1972-1","entrezGeneId":100302243},{"hugoGeneSymbol":"MIR1972-2","entrezGeneId":100422922},{"hugoGeneSymbol":"MIR1973","entrezGeneId":100302290},{"hugoGeneSymbol":"MIR1976","entrezGeneId":100302190},{"hugoGeneSymbol":"MIR198","entrezGeneId":406975},{"hugoGeneSymbol":"MIR199A1","entrezGeneId":406976},{"hugoGeneSymbol":"MIR199A2","entrezGeneId":406977},{"hugoGeneSymbol":"MIR199B","entrezGeneId":406978},{"hugoGeneSymbol":"MIR19A","entrezGeneId":406979},{"hugoGeneSymbol":"MIR19B1","entrezGeneId":406980},{"hugoGeneSymbol":"MIR19B2","entrezGeneId":406981},{"hugoGeneSymbol":"MIR200A","entrezGeneId":406983},{"hugoGeneSymbol":"MIR200B","entrezGeneId":406984},{"hugoGeneSymbol":"MIR200C","entrezGeneId":406985},{"hugoGeneSymbol":"MIR200CHG","entrezGeneId":105369635},{"hugoGeneSymbol":"MIR202","entrezGeneId":574448},{"hugoGeneSymbol":"MIR202HG","entrezGeneId":101927671},{"hugoGeneSymbol":"MIR203A","entrezGeneId":406986},{"hugoGeneSymbol":"MIR203B","entrezGeneId":100616173},{"hugoGeneSymbol":"MIR204","entrezGeneId":406987},{"hugoGeneSymbol":"MIR205","entrezGeneId":406988},{"hugoGeneSymbol":"MIR2052","entrezGeneId":100302260},{"hugoGeneSymbol":"MIR2052HG","entrezGeneId":441355},{"hugoGeneSymbol":"MIR2053","entrezGeneId":100302225},{"hugoGeneSymbol":"MIR2054","entrezGeneId":100302267},{"hugoGeneSymbol":"MIR205HG","entrezGeneId":642587},{"hugoGeneSymbol":"MIR206","entrezGeneId":406989},{"hugoGeneSymbol":"MIR208A","entrezGeneId":406990},{"hugoGeneSymbol":"MIR208B","entrezGeneId":100126336},{"hugoGeneSymbol":"MIR20A","entrezGeneId":406982},{"hugoGeneSymbol":"MIR20B","entrezGeneId":574032},{"hugoGeneSymbol":"MIR21","entrezGeneId":406991},{"hugoGeneSymbol":"MIR210","entrezGeneId":406992},{"hugoGeneSymbol":"MIR210HG","entrezGeneId":100506211},{"hugoGeneSymbol":"MIR211","entrezGeneId":406993},{"hugoGeneSymbol":"MIR2110","entrezGeneId":100302224},{"hugoGeneSymbol":"MIR2113","entrezGeneId":100302164},{"hugoGeneSymbol":"MIR2114","entrezGeneId":100313839},{"hugoGeneSymbol":"MIR2115","entrezGeneId":100313840},{"hugoGeneSymbol":"MIR2116","entrezGeneId":100313886},{"hugoGeneSymbol":"MIR2117","entrezGeneId":100313779},{"hugoGeneSymbol":"MIR2117HG","entrezGeneId":106660605},{"hugoGeneSymbol":"MIR212","entrezGeneId":406994},{"hugoGeneSymbol":"MIR214","entrezGeneId":406996},{"hugoGeneSymbol":"MIR215","entrezGeneId":406997},{"hugoGeneSymbol":"MIR216A","entrezGeneId":406998},{"hugoGeneSymbol":"MIR216B","entrezGeneId":100126319},{"hugoGeneSymbol":"MIR217","entrezGeneId":406999},{"hugoGeneSymbol":"MIR217HG","entrezGeneId":104355290},{"hugoGeneSymbol":"MIR218-1","entrezGeneId":407000},{"hugoGeneSymbol":"MIR218-2","entrezGeneId":407001},{"hugoGeneSymbol":"MIR219A1","entrezGeneId":407002},{"hugoGeneSymbol":"MIR219A2","entrezGeneId":407003},{"hugoGeneSymbol":"MIR219B","entrezGeneId":100616335},{"hugoGeneSymbol":"MIR22","entrezGeneId":407004},{"hugoGeneSymbol":"MIR221","entrezGeneId":407006},{"hugoGeneSymbol":"MIR222","entrezGeneId":407007},{"hugoGeneSymbol":"MIR222HG","entrezGeneId":104457406},{"hugoGeneSymbol":"MIR223","entrezGeneId":407008},{"hugoGeneSymbol":"MIR224","entrezGeneId":407009},{"hugoGeneSymbol":"MIR2276","entrezGeneId":100313842},{"hugoGeneSymbol":"MIR2277","entrezGeneId":100313887},{"hugoGeneSymbol":"MIR2278","entrezGeneId":100313780},{"hugoGeneSymbol":"MIR22HG","entrezGeneId":84981},{"hugoGeneSymbol":"MIR2355","entrezGeneId":100423036},{"hugoGeneSymbol":"MIR2392","entrezGeneId":100616495},{"hugoGeneSymbol":"MIR23A","entrezGeneId":407010},{"hugoGeneSymbol":"MIR23B","entrezGeneId":407011},{"hugoGeneSymbol":"MIR23C","entrezGeneId":100500809},{"hugoGeneSymbol":"MIR24-1","entrezGeneId":407012},{"hugoGeneSymbol":"MIR24-2","entrezGeneId":407013},{"hugoGeneSymbol":"MIR2467","entrezGeneId":100616360},{"hugoGeneSymbol":"MIR25","entrezGeneId":407014},{"hugoGeneSymbol":"MIR2681","entrezGeneId":100616110},{"hugoGeneSymbol":"MIR2682","entrezGeneId":100616452},{"hugoGeneSymbol":"MIR26A1","entrezGeneId":407015},{"hugoGeneSymbol":"MIR26A2","entrezGeneId":407016},{"hugoGeneSymbol":"MIR26B","entrezGeneId":407017},{"hugoGeneSymbol":"MIR27A","entrezGeneId":407018},{"hugoGeneSymbol":"MIR27B","entrezGeneId":407019},{"hugoGeneSymbol":"MIR28","entrezGeneId":407020},{"hugoGeneSymbol":"MIR2861","entrezGeneId":100422910},{"hugoGeneSymbol":"MIR2909","entrezGeneId":100422969},{"hugoGeneSymbol":"MIR296","entrezGeneId":407022},{"hugoGeneSymbol":"MIR297","entrezGeneId":100126354},{"hugoGeneSymbol":"MIR298","entrezGeneId":100126296},{"hugoGeneSymbol":"MIR299","entrezGeneId":407023},{"hugoGeneSymbol":"MIR29A","entrezGeneId":407021},{"hugoGeneSymbol":"MIR29B1","entrezGeneId":407024},{"hugoGeneSymbol":"MIR29B2","entrezGeneId":407025},{"hugoGeneSymbol":"MIR29B2CHG","entrezGeneId":100128537},{"hugoGeneSymbol":"MIR29C","entrezGeneId":407026},{"hugoGeneSymbol":"MIR300","entrezGeneId":100126297},{"hugoGeneSymbol":"MIR301A","entrezGeneId":407027},{"hugoGeneSymbol":"MIR301B","entrezGeneId":100126318},{"hugoGeneSymbol":"MIR302A","entrezGeneId":407028},{"hugoGeneSymbol":"MIR302B","entrezGeneId":442894},{"hugoGeneSymbol":"MIR302C","entrezGeneId":442895},{"hugoGeneSymbol":"MIR302D","entrezGeneId":442896},{"hugoGeneSymbol":"MIR302E","entrezGeneId":100313774},{"hugoGeneSymbol":"MIR302F","entrezGeneId":100302131},{"hugoGeneSymbol":"MIR3064","entrezGeneId":100616387},{"hugoGeneSymbol":"MIR3065","entrezGeneId":100422915},{"hugoGeneSymbol":"MIR3074","entrezGeneId":100422842},{"hugoGeneSymbol":"MIR30A","entrezGeneId":407029},{"hugoGeneSymbol":"MIR30B","entrezGeneId":407030},{"hugoGeneSymbol":"MIR30C1","entrezGeneId":407031},{"hugoGeneSymbol":"MIR30C2","entrezGeneId":407032},{"hugoGeneSymbol":"MIR30D","entrezGeneId":407033},{"hugoGeneSymbol":"MIR30E","entrezGeneId":407034},{"hugoGeneSymbol":"MIR31","entrezGeneId":407035},{"hugoGeneSymbol":"MIR3115","entrezGeneId":100422866},{"hugoGeneSymbol":"MIR3116-1","entrezGeneId":100422902},{"hugoGeneSymbol":"MIR3116-2","entrezGeneId":100422946},{"hugoGeneSymbol":"MIR3117","entrezGeneId":100422871},{"hugoGeneSymbol":"MIR3118-1","entrezGeneId":100423008},{"hugoGeneSymbol":"MIR3118-2","entrezGeneId":100422949},{"hugoGeneSymbol":"MIR3118-3","entrezGeneId":100422844},{"hugoGeneSymbol":"MIR3118-4","entrezGeneId":100422935},{"hugoGeneSymbol":"MIR3119-1","entrezGeneId":100422839},{"hugoGeneSymbol":"MIR3119-2","entrezGeneId":100423010},{"hugoGeneSymbol":"MIR3120","entrezGeneId":100422882},{"hugoGeneSymbol":"MIR3121","entrezGeneId":100423032},{"hugoGeneSymbol":"MIR3122","entrezGeneId":100422947},{"hugoGeneSymbol":"MIR3123","entrezGeneId":100422856},{"hugoGeneSymbol":"MIR3124","entrezGeneId":100422879},{"hugoGeneSymbol":"MIR3125","entrezGeneId":100422986},{"hugoGeneSymbol":"MIR3126","entrezGeneId":100423030},{"hugoGeneSymbol":"MIR3127","entrezGeneId":100422928},{"hugoGeneSymbol":"MIR3128","entrezGeneId":100422824},{"hugoGeneSymbol":"MIR3129","entrezGeneId":100422908},{"hugoGeneSymbol":"MIR3130-1","entrezGeneId":100422993},{"hugoGeneSymbol":"MIR3130-2","entrezGeneId":100423002},{"hugoGeneSymbol":"MIR3131","entrezGeneId":100422957},{"hugoGeneSymbol":"MIR3132","entrezGeneId":100423039},{"hugoGeneSymbol":"MIR3133","entrezGeneId":100422942},{"hugoGeneSymbol":"MIR3134","entrezGeneId":100422990},{"hugoGeneSymbol":"MIR3135A","entrezGeneId":100422901},{"hugoGeneSymbol":"MIR3135B","entrezGeneId":100616218},{"hugoGeneSymbol":"MIR3136","entrezGeneId":100422859},{"hugoGeneSymbol":"MIR3137","entrezGeneId":100422926},{"hugoGeneSymbol":"MIR3138","entrezGeneId":100423011},{"hugoGeneSymbol":"MIR3139","entrezGeneId":100423017},{"hugoGeneSymbol":"MIR3140","entrezGeneId":100422896},{"hugoGeneSymbol":"MIR3141","entrezGeneId":100422950},{"hugoGeneSymbol":"MIR3142","entrezGeneId":100422938},{"hugoGeneSymbol":"MIR3142HG","entrezGeneId":107075116},{"hugoGeneSymbol":"MIR3143","entrezGeneId":100422934},{"hugoGeneSymbol":"MIR3144","entrezGeneId":100422951},{"hugoGeneSymbol":"MIR3145","entrezGeneId":100423001},{"hugoGeneSymbol":"MIR3146","entrezGeneId":100422967},{"hugoGeneSymbol":"MIR3147","entrezGeneId":100422939},{"hugoGeneSymbol":"MIR3148","entrezGeneId":100422876},{"hugoGeneSymbol":"MIR3149","entrezGeneId":100422921},{"hugoGeneSymbol":"MIR3150A","entrezGeneId":100422964},{"hugoGeneSymbol":"MIR3150B","entrezGeneId":100500907},{"hugoGeneSymbol":"MIR3150BHG","entrezGeneId":105375650},{"hugoGeneSymbol":"MIR3151","entrezGeneId":100422992},{"hugoGeneSymbol":"MIR3152","entrezGeneId":100422869},{"hugoGeneSymbol":"MIR3153","entrezGeneId":100422936},{"hugoGeneSymbol":"MIR3154","entrezGeneId":100422893},{"hugoGeneSymbol":"MIR3155A","entrezGeneId":100422989},{"hugoGeneSymbol":"MIR3155B","entrezGeneId":100628560},{"hugoGeneSymbol":"MIR3156-1","entrezGeneId":100422988},{"hugoGeneSymbol":"MIR3156-2","entrezGeneId":100422907},{"hugoGeneSymbol":"MIR3156-3","entrezGeneId":100423018},{"hugoGeneSymbol":"MIR3157","entrezGeneId":100422892},{"hugoGeneSymbol":"MIR3158-1","entrezGeneId":100422900},{"hugoGeneSymbol":"MIR3158-2","entrezGeneId":100423033},{"hugoGeneSymbol":"MIR3159","entrezGeneId":100423016},{"hugoGeneSymbol":"MIR3160-1","entrezGeneId":100422827},{"hugoGeneSymbol":"MIR3160-2","entrezGeneId":100422825},{"hugoGeneSymbol":"MIR3161","entrezGeneId":100423000},{"hugoGeneSymbol":"MIR3162","entrezGeneId":100422880},{"hugoGeneSymbol":"MIR3163","entrezGeneId":100423029},{"hugoGeneSymbol":"MIR3164","entrezGeneId":100422846},{"hugoGeneSymbol":"MIR3165","entrezGeneId":100422953},{"hugoGeneSymbol":"MIR3166","entrezGeneId":100423040},{"hugoGeneSymbol":"MIR3167","entrezGeneId":100422918},{"hugoGeneSymbol":"MIR3168","entrezGeneId":100422878},{"hugoGeneSymbol":"MIR3169","entrezGeneId":100422973},{"hugoGeneSymbol":"MIR3170","entrezGeneId":100422881},{"hugoGeneSymbol":"MIR3171","entrezGeneId":100422830},{"hugoGeneSymbol":"MIR3173","entrezGeneId":100422981},{"hugoGeneSymbol":"MIR3174","entrezGeneId":100422841},{"hugoGeneSymbol":"MIR3175","entrezGeneId":100422995},{"hugoGeneSymbol":"MIR3176","entrezGeneId":100423037},{"hugoGeneSymbol":"MIR3177","entrezGeneId":100423012},{"hugoGeneSymbol":"MIR3178","entrezGeneId":100422974},{"hugoGeneSymbol":"MIR3179-1","entrezGeneId":100422960},{"hugoGeneSymbol":"MIR3179-2","entrezGeneId":100422886},{"hugoGeneSymbol":"MIR3179-3","entrezGeneId":100423006},{"hugoGeneSymbol":"MIR3179-4","entrezGeneId":103504729},{"hugoGeneSymbol":"MIR3180-1","entrezGeneId":100422870},{"hugoGeneSymbol":"MIR3180-2","entrezGeneId":100422956},{"hugoGeneSymbol":"MIR3180-3","entrezGeneId":100422836},{"hugoGeneSymbol":"MIR3180-4","entrezGeneId":100500852},{"hugoGeneSymbol":"MIR3180-5","entrezGeneId":100500916},{"hugoGeneSymbol":"MIR3181","entrezGeneId":100422972},{"hugoGeneSymbol":"MIR3182","entrezGeneId":100422853},{"hugoGeneSymbol":"MIR3183","entrezGeneId":100422835},{"hugoGeneSymbol":"MIR3184","entrezGeneId":100423003},{"hugoGeneSymbol":"MIR3185","entrezGeneId":100422978},{"hugoGeneSymbol":"MIR3186","entrezGeneId":100422944},{"hugoGeneSymbol":"MIR3187","entrezGeneId":100422854},{"hugoGeneSymbol":"MIR3188","entrezGeneId":100422833},{"hugoGeneSymbol":"MIR3189","entrezGeneId":100422943},{"hugoGeneSymbol":"MIR3190","entrezGeneId":100422899},{"hugoGeneSymbol":"MIR3191","entrezGeneId":100422832},{"hugoGeneSymbol":"MIR3192","entrezGeneId":100422875},{"hugoGeneSymbol":"MIR3193","entrezGeneId":100422904},{"hugoGeneSymbol":"MIR3194","entrezGeneId":100422889},{"hugoGeneSymbol":"MIR3195","entrezGeneId":100422838},{"hugoGeneSymbol":"MIR3196","entrezGeneId":100423014},{"hugoGeneSymbol":"MIR3197","entrezGeneId":100423023},{"hugoGeneSymbol":"MIR3198-1","entrezGeneId":100423025},{"hugoGeneSymbol":"MIR3198-2","entrezGeneId":100616400},{"hugoGeneSymbol":"MIR3199-1","entrezGeneId":100423034},{"hugoGeneSymbol":"MIR3199-2","entrezGeneId":100422998},{"hugoGeneSymbol":"MIR31HG","entrezGeneId":554202},{"hugoGeneSymbol":"MIR32","entrezGeneId":407036},{"hugoGeneSymbol":"MIR3200","entrezGeneId":100422912},{"hugoGeneSymbol":"MIR3201","entrezGeneId":100422916},{"hugoGeneSymbol":"MIR3202-1","entrezGeneId":100422987},{"hugoGeneSymbol":"MIR3202-2","entrezGeneId":100422877},{"hugoGeneSymbol":"MIR320A","entrezGeneId":407037},{"hugoGeneSymbol":"MIR320B1","entrezGeneId":100302117},{"hugoGeneSymbol":"MIR320B2","entrezGeneId":100313769},{"hugoGeneSymbol":"MIR320C1","entrezGeneId":100302135},{"hugoGeneSymbol":"MIR320C2","entrezGeneId":100302195},{"hugoGeneSymbol":"MIR320D1","entrezGeneId":100313896},{"hugoGeneSymbol":"MIR320D2","entrezGeneId":100302169},{"hugoGeneSymbol":"MIR320E","entrezGeneId":100422913},{"hugoGeneSymbol":"MIR323A","entrezGeneId":442897},{"hugoGeneSymbol":"MIR323B","entrezGeneId":574410},{"hugoGeneSymbol":"MIR324","entrezGeneId":442898},{"hugoGeneSymbol":"MIR325","entrezGeneId":442899},{"hugoGeneSymbol":"MIR325HG","entrezGeneId":101928469},{"hugoGeneSymbol":"MIR326","entrezGeneId":442900},{"hugoGeneSymbol":"MIR328","entrezGeneId":442901},{"hugoGeneSymbol":"MIR329-1","entrezGeneId":574408},{"hugoGeneSymbol":"MIR329-2","entrezGeneId":574409},{"hugoGeneSymbol":"MIR330","entrezGeneId":442902},{"hugoGeneSymbol":"MIR331","entrezGeneId":442903},{"hugoGeneSymbol":"MIR335","entrezGeneId":442904},{"hugoGeneSymbol":"MIR337","entrezGeneId":442905},{"hugoGeneSymbol":"MIR338","entrezGeneId":442906},{"hugoGeneSymbol":"MIR339","entrezGeneId":442907},{"hugoGeneSymbol":"MIR33A","entrezGeneId":407039},{"hugoGeneSymbol":"MIR33B","entrezGeneId":693120},{"hugoGeneSymbol":"MIR340","entrezGeneId":442908},{"hugoGeneSymbol":"MIR342","entrezGeneId":442909},{"hugoGeneSymbol":"MIR345","entrezGeneId":442910},{"hugoGeneSymbol":"MIR346","entrezGeneId":442911},{"hugoGeneSymbol":"MIR34A","entrezGeneId":407040},{"hugoGeneSymbol":"MIR34AHG","entrezGeneId":106614088},{"hugoGeneSymbol":"MIR34B","entrezGeneId":407041},{"hugoGeneSymbol":"MIR34C","entrezGeneId":407042},{"hugoGeneSymbol":"MIR3529","entrezGeneId":100616238},{"hugoGeneSymbol":"MIR3591","entrezGeneId":100616357},{"hugoGeneSymbol":"MIR3605","entrezGeneId":100500853},{"hugoGeneSymbol":"MIR3606","entrezGeneId":100500837},{"hugoGeneSymbol":"MIR3609","entrezGeneId":100500819},{"hugoGeneSymbol":"MIR361","entrezGeneId":494323},{"hugoGeneSymbol":"MIR3610","entrezGeneId":100500914},{"hugoGeneSymbol":"MIR3611","entrezGeneId":100500890},{"hugoGeneSymbol":"MIR3612","entrezGeneId":100500817},{"hugoGeneSymbol":"MIR3613","entrezGeneId":100500908},{"hugoGeneSymbol":"MIR3614","entrezGeneId":100500827},{"hugoGeneSymbol":"MIR3615","entrezGeneId":100500847},{"hugoGeneSymbol":"MIR3616","entrezGeneId":100500814},{"hugoGeneSymbol":"MIR3617","entrezGeneId":100500897},{"hugoGeneSymbol":"MIR3618","entrezGeneId":100500860},{"hugoGeneSymbol":"MIR3619","entrezGeneId":100500828},{"hugoGeneSymbol":"MIR362","entrezGeneId":574030},{"hugoGeneSymbol":"MIR3620","entrezGeneId":100500810},{"hugoGeneSymbol":"MIR3621","entrezGeneId":100500811},{"hugoGeneSymbol":"MIR3622A","entrezGeneId":100500858},{"hugoGeneSymbol":"MIR3622B","entrezGeneId":100500871},{"hugoGeneSymbol":"MIR363","entrezGeneId":574031},{"hugoGeneSymbol":"MIR3646","entrezGeneId":100500813},{"hugoGeneSymbol":"MIR3648-1","entrezGeneId":100500862},{"hugoGeneSymbol":"MIR3648-2","entrezGeneId":103504731},{"hugoGeneSymbol":"MIR3649","entrezGeneId":100500816},{"hugoGeneSymbol":"MIR3650","entrezGeneId":100500824},{"hugoGeneSymbol":"MIR3651","entrezGeneId":100500918},{"hugoGeneSymbol":"MIR3652","entrezGeneId":100500842},{"hugoGeneSymbol":"MIR3654","entrezGeneId":100500804},{"hugoGeneSymbol":"MIR3655","entrezGeneId":100500820},{"hugoGeneSymbol":"MIR3657","entrezGeneId":100500889},{"hugoGeneSymbol":"MIR3658","entrezGeneId":100500832},{"hugoGeneSymbol":"MIR3659","entrezGeneId":100500801},{"hugoGeneSymbol":"MIR365A","entrezGeneId":100126355},{"hugoGeneSymbol":"MIR365B","entrezGeneId":100126356},{"hugoGeneSymbol":"MIR3660","entrezGeneId":100500825},{"hugoGeneSymbol":"MIR3661","entrezGeneId":100500905},{"hugoGeneSymbol":"MIR3662","entrezGeneId":100500880},{"hugoGeneSymbol":"MIR3663","entrezGeneId":100500893},{"hugoGeneSymbol":"MIR3663HG","entrezGeneId":101927704},{"hugoGeneSymbol":"MIR3664","entrezGeneId":100500844},{"hugoGeneSymbol":"MIR3665","entrezGeneId":100500861},{"hugoGeneSymbol":"MIR3666","entrezGeneId":100500896},{"hugoGeneSymbol":"MIR3667","entrezGeneId":100500882},{"hugoGeneSymbol":"MIR3668","entrezGeneId":100500879},{"hugoGeneSymbol":"MIR367","entrezGeneId":442912},{"hugoGeneSymbol":"MIR3670-1","entrezGeneId":100500910},{"hugoGeneSymbol":"MIR3670-2","entrezGeneId":100846994},{"hugoGeneSymbol":"MIR3670-3","entrezGeneId":103504726},{"hugoGeneSymbol":"MIR3670-4","entrezGeneId":103504740},{"hugoGeneSymbol":"MIR3671","entrezGeneId":100500854},{"hugoGeneSymbol":"MIR3672","entrezGeneId":100500869},{"hugoGeneSymbol":"MIR3674","entrezGeneId":100500912},{"hugoGeneSymbol":"MIR3675","entrezGeneId":100500876},{"hugoGeneSymbol":"MIR3677","entrezGeneId":100500812},{"hugoGeneSymbol":"MIR3678","entrezGeneId":100500841},{"hugoGeneSymbol":"MIR3679","entrezGeneId":100500878},{"hugoGeneSymbol":"MIR3680-1","entrezGeneId":100500917},{"hugoGeneSymbol":"MIR3680-2","entrezGeneId":100847041},{"hugoGeneSymbol":"MIR3681","entrezGeneId":100500884},{"hugoGeneSymbol":"MIR3681HG","entrezGeneId":100506457},{"hugoGeneSymbol":"MIR3682","entrezGeneId":100500850},{"hugoGeneSymbol":"MIR3683","entrezGeneId":100500886},{"hugoGeneSymbol":"MIR3684","entrezGeneId":100500867},{"hugoGeneSymbol":"MIR3685","entrezGeneId":100500802},{"hugoGeneSymbol":"MIR3686","entrezGeneId":100500839},{"hugoGeneSymbol":"MIR3688-1","entrezGeneId":100500881},{"hugoGeneSymbol":"MIR3688-2","entrezGeneId":100616303},{"hugoGeneSymbol":"MIR3689A","entrezGeneId":100500846},{"hugoGeneSymbol":"MIR3689B","entrezGeneId":100500906},{"hugoGeneSymbol":"MIR3689C","entrezGeneId":100616333},{"hugoGeneSymbol":"MIR3689D1","entrezGeneId":100616131},{"hugoGeneSymbol":"MIR3689D2","entrezGeneId":100616344},{"hugoGeneSymbol":"MIR3689E","entrezGeneId":100616460},{"hugoGeneSymbol":"MIR3689F","entrezGeneId":100616212},{"hugoGeneSymbol":"MIR369","entrezGeneId":442914},{"hugoGeneSymbol":"MIR3690","entrezGeneId":100500894},{"hugoGeneSymbol":"MIR3691","entrezGeneId":100500900},{"hugoGeneSymbol":"MIR3692","entrezGeneId":100500899},{"hugoGeneSymbol":"MIR370","entrezGeneId":442915},{"hugoGeneSymbol":"MIR3713","entrezGeneId":100500855},{"hugoGeneSymbol":"MIR3714","entrezGeneId":100500913},{"hugoGeneSymbol":"MIR371A","entrezGeneId":442916},{"hugoGeneSymbol":"MIR371B","entrezGeneId":100616185},{"hugoGeneSymbol":"MIR372","entrezGeneId":442917},{"hugoGeneSymbol":"MIR373","entrezGeneId":442918},{"hugoGeneSymbol":"MIR374A","entrezGeneId":442919},{"hugoGeneSymbol":"MIR374B","entrezGeneId":100126317},{"hugoGeneSymbol":"MIR374C","entrezGeneId":100500807},{"hugoGeneSymbol":"MIR375","entrezGeneId":494324},{"hugoGeneSymbol":"MIR376A1","entrezGeneId":494325},{"hugoGeneSymbol":"MIR376A2","entrezGeneId":664615},{"hugoGeneSymbol":"MIR376B","entrezGeneId":574435},{"hugoGeneSymbol":"MIR376C","entrezGeneId":442913},{"hugoGeneSymbol":"MIR377","entrezGeneId":494326},{"hugoGeneSymbol":"MIR378A","entrezGeneId":494327},{"hugoGeneSymbol":"MIR378B","entrezGeneId":100422933},{"hugoGeneSymbol":"MIR378C","entrezGeneId":100422867},{"hugoGeneSymbol":"MIR378D1","entrezGeneId":100616201},{"hugoGeneSymbol":"MIR378D2","entrezGeneId":100616169},{"hugoGeneSymbol":"MIR378E","entrezGeneId":100616498},{"hugoGeneSymbol":"MIR378F","entrezGeneId":100616492},{"hugoGeneSymbol":"MIR378G","entrezGeneId":100616321},{"hugoGeneSymbol":"MIR378H","entrezGeneId":100616306},{"hugoGeneSymbol":"MIR378I","entrezGeneId":100616259},{"hugoGeneSymbol":"MIR378J","entrezGeneId":102465136},{"hugoGeneSymbol":"MIR379","entrezGeneId":494328},{"hugoGeneSymbol":"MIR380","entrezGeneId":494329},{"hugoGeneSymbol":"MIR381","entrezGeneId":494330},{"hugoGeneSymbol":"MIR381HG","entrezGeneId":378881},{"hugoGeneSymbol":"MIR382","entrezGeneId":494331},{"hugoGeneSymbol":"MIR383","entrezGeneId":494332},{"hugoGeneSymbol":"MIR384","entrezGeneId":494333},{"hugoGeneSymbol":"MIR3907","entrezGeneId":100500835},{"hugoGeneSymbol":"MIR3908","entrezGeneId":100500909},{"hugoGeneSymbol":"MIR3909","entrezGeneId":100500826},{"hugoGeneSymbol":"MIR3910-1","entrezGeneId":100500821},{"hugoGeneSymbol":"MIR3910-2","entrezGeneId":100500902},{"hugoGeneSymbol":"MIR3911","entrezGeneId":100500872},{"hugoGeneSymbol":"MIR3912","entrezGeneId":100500831},{"hugoGeneSymbol":"MIR3913-1","entrezGeneId":100500903},{"hugoGeneSymbol":"MIR3913-2","entrezGeneId":100500868},{"hugoGeneSymbol":"MIR3914-1","entrezGeneId":100500836},{"hugoGeneSymbol":"MIR3914-2","entrezGeneId":100500920},{"hugoGeneSymbol":"MIR3915","entrezGeneId":100500915},{"hugoGeneSymbol":"MIR3916","entrezGeneId":100500849},{"hugoGeneSymbol":"MIR3917","entrezGeneId":100500808},{"hugoGeneSymbol":"MIR3918","entrezGeneId":100500851},{"hugoGeneSymbol":"MIR3919","entrezGeneId":100500803},{"hugoGeneSymbol":"MIR3920","entrezGeneId":100500823},{"hugoGeneSymbol":"MIR3921","entrezGeneId":100500859},{"hugoGeneSymbol":"MIR3922","entrezGeneId":100500843},{"hugoGeneSymbol":"MIR3923","entrezGeneId":100500877},{"hugoGeneSymbol":"MIR3924","entrezGeneId":100500834},{"hugoGeneSymbol":"MIR3925","entrezGeneId":100500885},{"hugoGeneSymbol":"MIR3926-1","entrezGeneId":100500870},{"hugoGeneSymbol":"MIR3926-2","entrezGeneId":100500838},{"hugoGeneSymbol":"MIR3927","entrezGeneId":100500898},{"hugoGeneSymbol":"MIR3928","entrezGeneId":100500901},{"hugoGeneSymbol":"MIR3929","entrezGeneId":100500864},{"hugoGeneSymbol":"MIR3934","entrezGeneId":100500873},{"hugoGeneSymbol":"MIR3935","entrezGeneId":100500891},{"hugoGeneSymbol":"MIR3936","entrezGeneId":100500865},{"hugoGeneSymbol":"MIR3936HG","entrezGeneId":553103},{"hugoGeneSymbol":"MIR3937","entrezGeneId":100500822},{"hugoGeneSymbol":"MIR3938","entrezGeneId":100500875},{"hugoGeneSymbol":"MIR3939","entrezGeneId":100500857},{"hugoGeneSymbol":"MIR3940","entrezGeneId":100500888},{"hugoGeneSymbol":"MIR3941","entrezGeneId":100500866},{"hugoGeneSymbol":"MIR3942","entrezGeneId":100500904},{"hugoGeneSymbol":"MIR3943","entrezGeneId":100500829},{"hugoGeneSymbol":"MIR3944","entrezGeneId":100500911},{"hugoGeneSymbol":"MIR3945","entrezGeneId":100500818},{"hugoGeneSymbol":"MIR3945HG","entrezGeneId":731424},{"hugoGeneSymbol":"MIR3960","entrezGeneId":100616250},{"hugoGeneSymbol":"MIR3972","entrezGeneId":100616188},{"hugoGeneSymbol":"MIR3973","entrezGeneId":100616311},{"hugoGeneSymbol":"MIR3974","entrezGeneId":100616279},{"hugoGeneSymbol":"MIR3975","entrezGeneId":100616257},{"hugoGeneSymbol":"MIR3976","entrezGeneId":100616244},{"hugoGeneSymbol":"MIR3976HG","entrezGeneId":645355},{"hugoGeneSymbol":"MIR3977","entrezGeneId":100616297},{"hugoGeneSymbol":"MIR3978","entrezGeneId":100616491},{"hugoGeneSymbol":"MIR409","entrezGeneId":574413},{"hugoGeneSymbol":"MIR410","entrezGeneId":574434},{"hugoGeneSymbol":"MIR411","entrezGeneId":693121},{"hugoGeneSymbol":"MIR412","entrezGeneId":574433},{"hugoGeneSymbol":"MIR421","entrezGeneId":693122},{"hugoGeneSymbol":"MIR422A","entrezGeneId":494334},{"hugoGeneSymbol":"MIR423","entrezGeneId":494335},{"hugoGeneSymbol":"MIR424","entrezGeneId":494336},{"hugoGeneSymbol":"MIR425","entrezGeneId":494337},{"hugoGeneSymbol":"MIR4251","entrezGeneId":100422968},{"hugoGeneSymbol":"MIR4252","entrezGeneId":100422975},{"hugoGeneSymbol":"MIR4253","entrezGeneId":100422914},{"hugoGeneSymbol":"MIR4254","entrezGeneId":100423028},{"hugoGeneSymbol":"MIR4255","entrezGeneId":100422898},{"hugoGeneSymbol":"MIR4256","entrezGeneId":100422976},{"hugoGeneSymbol":"MIR4257","entrezGeneId":100422997},{"hugoGeneSymbol":"MIR4258","entrezGeneId":100423020},{"hugoGeneSymbol":"MIR4259","entrezGeneId":100422852},{"hugoGeneSymbol":"MIR4260","entrezGeneId":100422894},{"hugoGeneSymbol":"MIR4261","entrezGeneId":100422929},{"hugoGeneSymbol":"MIR4262","entrezGeneId":100422996},{"hugoGeneSymbol":"MIR4263","entrezGeneId":100422965},{"hugoGeneSymbol":"MIR4264","entrezGeneId":100422888},{"hugoGeneSymbol":"MIR4265","entrezGeneId":100422863},{"hugoGeneSymbol":"MIR4266","entrezGeneId":100423027},{"hugoGeneSymbol":"MIR4267","entrezGeneId":100422994},{"hugoGeneSymbol":"MIR4268","entrezGeneId":100422959},{"hugoGeneSymbol":"MIR4269","entrezGeneId":100423043},{"hugoGeneSymbol":"MIR4270","entrezGeneId":100422868},{"hugoGeneSymbol":"MIR4271","entrezGeneId":100422952},{"hugoGeneSymbol":"MIR4272","entrezGeneId":100422941},{"hugoGeneSymbol":"MIR4273","entrezGeneId":100422955},{"hugoGeneSymbol":"MIR4274","entrezGeneId":100422826},{"hugoGeneSymbol":"MIR4275","entrezGeneId":100422937},{"hugoGeneSymbol":"MIR4276","entrezGeneId":100423042},{"hugoGeneSymbol":"MIR4277","entrezGeneId":100422966},{"hugoGeneSymbol":"MIR4278","entrezGeneId":100422999},{"hugoGeneSymbol":"MIR4279","entrezGeneId":100422874},{"hugoGeneSymbol":"MIR4280","entrezGeneId":100422887},{"hugoGeneSymbol":"MIR4281","entrezGeneId":100422962},{"hugoGeneSymbol":"MIR4282","entrezGeneId":100423005},{"hugoGeneSymbol":"MIR4283-1","entrezGeneId":100422917},{"hugoGeneSymbol":"MIR4283-2","entrezGeneId":100422848},{"hugoGeneSymbol":"MIR4284","entrezGeneId":100422948},{"hugoGeneSymbol":"MIR4285","entrezGeneId":100422858},{"hugoGeneSymbol":"MIR4286","entrezGeneId":100422982},{"hugoGeneSymbol":"MIR4287","entrezGeneId":100422828},{"hugoGeneSymbol":"MIR4288","entrezGeneId":100422903},{"hugoGeneSymbol":"MIR4289","entrezGeneId":100423015},{"hugoGeneSymbol":"MIR429","entrezGeneId":554210},{"hugoGeneSymbol":"MIR4290","entrezGeneId":100422963},{"hugoGeneSymbol":"MIR4290HG","entrezGeneId":286370},{"hugoGeneSymbol":"MIR4291","entrezGeneId":100422927},{"hugoGeneSymbol":"MIR4292","entrezGeneId":100422860},{"hugoGeneSymbol":"MIR4293","entrezGeneId":100422843},{"hugoGeneSymbol":"MIR4294","entrezGeneId":100422895},{"hugoGeneSymbol":"MIR4295","entrezGeneId":100422909},{"hugoGeneSymbol":"MIR4296","entrezGeneId":100423041},{"hugoGeneSymbol":"MIR4297","entrezGeneId":100422873},{"hugoGeneSymbol":"MIR4298","entrezGeneId":100423021},{"hugoGeneSymbol":"MIR4299","entrezGeneId":100423026},{"hugoGeneSymbol":"MIR4300","entrezGeneId":100422823},{"hugoGeneSymbol":"MIR4300HG","entrezGeneId":101928989},{"hugoGeneSymbol":"MIR4301","entrezGeneId":100422855},{"hugoGeneSymbol":"MIR4302","entrezGeneId":100422897},{"hugoGeneSymbol":"MIR4303","entrezGeneId":100422924},{"hugoGeneSymbol":"MIR4304","entrezGeneId":100422931},{"hugoGeneSymbol":"MIR4305","entrezGeneId":100422940},{"hugoGeneSymbol":"MIR4306","entrezGeneId":100422861},{"hugoGeneSymbol":"MIR4307","entrezGeneId":100423019},{"hugoGeneSymbol":"MIR4307HG","entrezGeneId":101927081},{"hugoGeneSymbol":"MIR4308","entrezGeneId":100422984},{"hugoGeneSymbol":"MIR4309","entrezGeneId":100422954},{"hugoGeneSymbol":"MIR431","entrezGeneId":574038},{"hugoGeneSymbol":"MIR4310","entrezGeneId":100423013},{"hugoGeneSymbol":"MIR4311","entrezGeneId":100422905},{"hugoGeneSymbol":"MIR4312","entrezGeneId":100422971},{"hugoGeneSymbol":"MIR4313","entrezGeneId":100423035},{"hugoGeneSymbol":"MIR4314","entrezGeneId":100422983},{"hugoGeneSymbol":"MIR4315-1","entrezGeneId":100423004},{"hugoGeneSymbol":"MIR4315-2","entrezGeneId":100422961},{"hugoGeneSymbol":"MIR4316","entrezGeneId":100422851},{"hugoGeneSymbol":"MIR4317","entrezGeneId":100422840},{"hugoGeneSymbol":"MIR4318","entrezGeneId":100422857},{"hugoGeneSymbol":"MIR4319","entrezGeneId":100422829},{"hugoGeneSymbol":"MIR432","entrezGeneId":574451},{"hugoGeneSymbol":"MIR4320","entrezGeneId":100422865},{"hugoGeneSymbol":"MIR4321","entrezGeneId":100423031},{"hugoGeneSymbol":"MIR4322","entrezGeneId":100422925},{"hugoGeneSymbol":"MIR4323","entrezGeneId":100422980},{"hugoGeneSymbol":"MIR4324","entrezGeneId":100422979},{"hugoGeneSymbol":"MIR4325","entrezGeneId":100422883},{"hugoGeneSymbol":"MIR4326","entrezGeneId":100422945},{"hugoGeneSymbol":"MIR4327","entrezGeneId":100422891},{"hugoGeneSymbol":"MIR4328","entrezGeneId":100422932},{"hugoGeneSymbol":"MIR4329","entrezGeneId":100423009},{"hugoGeneSymbol":"MIR433","entrezGeneId":574034},{"hugoGeneSymbol":"MIR4330","entrezGeneId":100422930},{"hugoGeneSymbol":"MIR4418","entrezGeneId":100616433},{"hugoGeneSymbol":"MIR4420","entrezGeneId":100616164},{"hugoGeneSymbol":"MIR4421","entrezGeneId":100616189},{"hugoGeneSymbol":"MIR4422","entrezGeneId":100616272},{"hugoGeneSymbol":"MIR4422HG","entrezGeneId":109729135},{"hugoGeneSymbol":"MIR4423","entrezGeneId":100616481},{"hugoGeneSymbol":"MIR4424","entrezGeneId":100616328},{"hugoGeneSymbol":"MIR4425","entrezGeneId":100616365},{"hugoGeneSymbol":"MIR4426","entrezGeneId":100616345},{"hugoGeneSymbol":"MIR4427","entrezGeneId":100616390},{"hugoGeneSymbol":"MIR4428","entrezGeneId":100616141},{"hugoGeneSymbol":"MIR4429","entrezGeneId":100616469},{"hugoGeneSymbol":"MIR4430","entrezGeneId":100616136},{"hugoGeneSymbol":"MIR4431","entrezGeneId":100616431},{"hugoGeneSymbol":"MIR4432","entrezGeneId":100616473},{"hugoGeneSymbol":"MIR4432HG","entrezGeneId":106660609},{"hugoGeneSymbol":"MIR4433A","entrezGeneId":100616265},{"hugoGeneSymbol":"MIR4433B","entrezGeneId":102465833},{"hugoGeneSymbol":"MIR4434","entrezGeneId":100616419},{"hugoGeneSymbol":"MIR4435-1","entrezGeneId":100616499},{"hugoGeneSymbol":"MIR4435-2","entrezGeneId":100616341},{"hugoGeneSymbol":"MIR4435-2HG","entrezGeneId":541471},{"hugoGeneSymbol":"MIR4436A","entrezGeneId":100616399},{"hugoGeneSymbol":"MIR4436B1","entrezGeneId":100616123},{"hugoGeneSymbol":"MIR4436B2","entrezGeneId":100847033},{"hugoGeneSymbol":"MIR4437","entrezGeneId":100616213},{"hugoGeneSymbol":"MIR4438","entrezGeneId":100616375},{"hugoGeneSymbol":"MIR4439","entrezGeneId":100616207},{"hugoGeneSymbol":"MIR4440","entrezGeneId":100616397},{"hugoGeneSymbol":"MIR4441","entrezGeneId":100616493},{"hugoGeneSymbol":"MIR4442","entrezGeneId":100616477},{"hugoGeneSymbol":"MIR4443","entrezGeneId":100616407},{"hugoGeneSymbol":"MIR4444-1","entrezGeneId":100616394},{"hugoGeneSymbol":"MIR4444-2","entrezGeneId":100846999},{"hugoGeneSymbol":"MIR4445","entrezGeneId":100616129},{"hugoGeneSymbol":"MIR4446","entrezGeneId":100616476},{"hugoGeneSymbol":"MIR4447","entrezGeneId":100616485},{"hugoGeneSymbol":"MIR4448","entrezGeneId":100616127},{"hugoGeneSymbol":"MIR4449","entrezGeneId":100616436},{"hugoGeneSymbol":"MIR4450","entrezGeneId":100616299},{"hugoGeneSymbol":"MIR4451","entrezGeneId":100616349},{"hugoGeneSymbol":"MIR4452","entrezGeneId":100616463},{"hugoGeneSymbol":"MIR4453","entrezGeneId":100616193},{"hugoGeneSymbol":"MIR4453HG","entrezGeneId":54553},{"hugoGeneSymbol":"MIR4454","entrezGeneId":100616234},{"hugoGeneSymbol":"MIR4455","entrezGeneId":100616111},{"hugoGeneSymbol":"MIR4456","entrezGeneId":100616381},{"hugoGeneSymbol":"MIR4457","entrezGeneId":100616235},{"hugoGeneSymbol":"MIR4458","entrezGeneId":100616142},{"hugoGeneSymbol":"MIR4458HG","entrezGeneId":100505738},{"hugoGeneSymbol":"MIR4460","entrezGeneId":100616325},{"hugoGeneSymbol":"MIR4462","entrezGeneId":100616413},{"hugoGeneSymbol":"MIR4463","entrezGeneId":100616389},{"hugoGeneSymbol":"MIR4464","entrezGeneId":100616109},{"hugoGeneSymbol":"MIR4465","entrezGeneId":100616180},{"hugoGeneSymbol":"MIR4466","entrezGeneId":100616154},{"hugoGeneSymbol":"MIR4467","entrezGeneId":100616367},{"hugoGeneSymbol":"MIR4468","entrezGeneId":100616226},{"hugoGeneSymbol":"MIR4469","entrezGeneId":100616115},{"hugoGeneSymbol":"MIR4470","entrezGeneId":100616484},{"hugoGeneSymbol":"MIR4471","entrezGeneId":100616451},{"hugoGeneSymbol":"MIR4472-1","entrezGeneId":100616268},{"hugoGeneSymbol":"MIR4472-2","entrezGeneId":100616309},{"hugoGeneSymbol":"MIR4473","entrezGeneId":100616229},{"hugoGeneSymbol":"MIR4474","entrezGeneId":100616441},{"hugoGeneSymbol":"MIR4475","entrezGeneId":100616289},{"hugoGeneSymbol":"MIR4476","entrezGeneId":100616456},{"hugoGeneSymbol":"MIR4477A","entrezGeneId":100616184},{"hugoGeneSymbol":"MIR4477B","entrezGeneId":100616194},{"hugoGeneSymbol":"MIR4478","entrezGeneId":100616312},{"hugoGeneSymbol":"MIR4479","entrezGeneId":100616480},{"hugoGeneSymbol":"MIR448","entrezGeneId":554212},{"hugoGeneSymbol":"MIR4480","entrezGeneId":100616151},{"hugoGeneSymbol":"MIR4481","entrezGeneId":100616320},{"hugoGeneSymbol":"MIR4482","entrezGeneId":100616323},{"hugoGeneSymbol":"MIR4483","entrezGeneId":100616162},{"hugoGeneSymbol":"MIR4484","entrezGeneId":100616327},{"hugoGeneSymbol":"MIR4485","entrezGeneId":100616263},{"hugoGeneSymbol":"MIR4486","entrezGeneId":100616118},{"hugoGeneSymbol":"MIR4487","entrezGeneId":100616222},{"hugoGeneSymbol":"MIR4488","entrezGeneId":100616470},{"hugoGeneSymbol":"MIR4489","entrezGeneId":100616284},{"hugoGeneSymbol":"MIR4490","entrezGeneId":100616186},{"hugoGeneSymbol":"MIR4491","entrezGeneId":100616330},{"hugoGeneSymbol":"MIR4492","entrezGeneId":100616376},{"hugoGeneSymbol":"MIR4493","entrezGeneId":100616319},{"hugoGeneSymbol":"MIR4494","entrezGeneId":100616478},{"hugoGeneSymbol":"MIR4495","entrezGeneId":100616287},{"hugoGeneSymbol":"MIR4496","entrezGeneId":100616240},{"hugoGeneSymbol":"MIR4497","entrezGeneId":100616454},{"hugoGeneSymbol":"MIR4498","entrezGeneId":100616179},{"hugoGeneSymbol":"MIR4499","entrezGeneId":100616304},{"hugoGeneSymbol":"MIR449A","entrezGeneId":554213},{"hugoGeneSymbol":"MIR449B","entrezGeneId":693123},{"hugoGeneSymbol":"MIR449C","entrezGeneId":100313923},{"hugoGeneSymbol":"MIR4500","entrezGeneId":100616182},{"hugoGeneSymbol":"MIR4500HG","entrezGeneId":642345},{"hugoGeneSymbol":"MIR4501","entrezGeneId":100616137},{"hugoGeneSymbol":"MIR4502","entrezGeneId":100616227},{"hugoGeneSymbol":"MIR4503","entrezGeneId":100616280},{"hugoGeneSymbol":"MIR4504","entrezGeneId":100616261},{"hugoGeneSymbol":"MIR4505","entrezGeneId":100616158},{"hugoGeneSymbol":"MIR4506","entrezGeneId":100616140},{"hugoGeneSymbol":"MIR4507","entrezGeneId":100616135},{"hugoGeneSymbol":"MIR4508","entrezGeneId":100616275},{"hugoGeneSymbol":"MIR4509-1","entrezGeneId":100616223},{"hugoGeneSymbol":"MIR4509-2","entrezGeneId":100616228},{"hugoGeneSymbol":"MIR4509-3","entrezGeneId":100616382},{"hugoGeneSymbol":"MIR450A1","entrezGeneId":554214},{"hugoGeneSymbol":"MIR450A2","entrezGeneId":574505},{"hugoGeneSymbol":"MIR450B","entrezGeneId":100126302},{"hugoGeneSymbol":"MIR4510","entrezGeneId":100616293},{"hugoGeneSymbol":"MIR4511","entrezGeneId":100616379},{"hugoGeneSymbol":"MIR4512","entrezGeneId":100616149},{"hugoGeneSymbol":"MIR4513","entrezGeneId":100616183},{"hugoGeneSymbol":"MIR4514","entrezGeneId":100616181},{"hugoGeneSymbol":"MIR4515","entrezGeneId":100616404},{"hugoGeneSymbol":"MIR4516","entrezGeneId":100616258},{"hugoGeneSymbol":"MIR4517","entrezGeneId":100616487},{"hugoGeneSymbol":"MIR4518","entrezGeneId":100616405},{"hugoGeneSymbol":"MIR4519","entrezGeneId":100616231},{"hugoGeneSymbol":"MIR451A","entrezGeneId":574411},{"hugoGeneSymbol":"MIR451B","entrezGeneId":100616273},{"hugoGeneSymbol":"MIR452","entrezGeneId":574412},{"hugoGeneSymbol":"MIR4520-1","entrezGeneId":100616401},{"hugoGeneSymbol":"MIR4520-2","entrezGeneId":100616466},{"hugoGeneSymbol":"MIR4521","entrezGeneId":100616406},{"hugoGeneSymbol":"MIR4522","entrezGeneId":100616277},{"hugoGeneSymbol":"MIR4523","entrezGeneId":100616122},{"hugoGeneSymbol":"MIR4524A","entrezGeneId":100616316},{"hugoGeneSymbol":"MIR4524B","entrezGeneId":100847008},{"hugoGeneSymbol":"MIR4525","entrezGeneId":100616196},{"hugoGeneSymbol":"MIR4526","entrezGeneId":100616130},{"hugoGeneSymbol":"MIR4527","entrezGeneId":100616264},{"hugoGeneSymbol":"MIR4527HG","entrezGeneId":110175910},{"hugoGeneSymbol":"MIR4528","entrezGeneId":100616232},{"hugoGeneSymbol":"MIR4529","entrezGeneId":100616290},{"hugoGeneSymbol":"MIR4530","entrezGeneId":100616163},{"hugoGeneSymbol":"MIR4531","entrezGeneId":100616355},{"hugoGeneSymbol":"MIR4533","entrezGeneId":100616362},{"hugoGeneSymbol":"MIR4534","entrezGeneId":100616146},{"hugoGeneSymbol":"MIR4535","entrezGeneId":100616415},{"hugoGeneSymbol":"MIR4536-1","entrezGeneId":100616155},{"hugoGeneSymbol":"MIR4536-2","entrezGeneId":100847061},{"hugoGeneSymbol":"MIR4537","entrezGeneId":100616422},{"hugoGeneSymbol":"MIR4538","entrezGeneId":100616276},{"hugoGeneSymbol":"MIR4539","entrezGeneId":100616374},{"hugoGeneSymbol":"MIR454","entrezGeneId":768216},{"hugoGeneSymbol":"MIR4540","entrezGeneId":100616278},{"hugoGeneSymbol":"MIR455","entrezGeneId":619556},{"hugoGeneSymbol":"MIR4632","entrezGeneId":100616438},{"hugoGeneSymbol":"MIR4633","entrezGeneId":100616175},{"hugoGeneSymbol":"MIR4634","entrezGeneId":100616202},{"hugoGeneSymbol":"MIR4635","entrezGeneId":100616479},{"hugoGeneSymbol":"MIR4636","entrezGeneId":100616326},{"hugoGeneSymbol":"MIR4637","entrezGeneId":100616271},{"hugoGeneSymbol":"MIR4638","entrezGeneId":100616342},{"hugoGeneSymbol":"MIR4639","entrezGeneId":100616269},{"hugoGeneSymbol":"MIR4640","entrezGeneId":100616237},{"hugoGeneSymbol":"MIR4641","entrezGeneId":100616178},{"hugoGeneSymbol":"MIR4642","entrezGeneId":100616352},{"hugoGeneSymbol":"MIR4643","entrezGeneId":100616174},{"hugoGeneSymbol":"MIR4644","entrezGeneId":100616430},{"hugoGeneSymbol":"MIR4645","entrezGeneId":100616285},{"hugoGeneSymbol":"MIR4646","entrezGeneId":100616230},{"hugoGeneSymbol":"MIR4647","entrezGeneId":100616124},{"hugoGeneSymbol":"MIR4648","entrezGeneId":100616116},{"hugoGeneSymbol":"MIR4649","entrezGeneId":100616346},{"hugoGeneSymbol":"MIR4650-1","entrezGeneId":100616310},{"hugoGeneSymbol":"MIR4650-2","entrezGeneId":100616331},{"hugoGeneSymbol":"MIR4651","entrezGeneId":100616270},{"hugoGeneSymbol":"MIR4652","entrezGeneId":100616206},{"hugoGeneSymbol":"MIR4653","entrezGeneId":100616117},{"hugoGeneSymbol":"MIR4654","entrezGeneId":100616386},{"hugoGeneSymbol":"MIR4655","entrezGeneId":100616160},{"hugoGeneSymbol":"MIR4656","entrezGeneId":100616465},{"hugoGeneSymbol":"MIR4657","entrezGeneId":100616393},{"hugoGeneSymbol":"MIR4658","entrezGeneId":100616439},{"hugoGeneSymbol":"MIR4659A","entrezGeneId":100616348},{"hugoGeneSymbol":"MIR4659B","entrezGeneId":100616372},{"hugoGeneSymbol":"MIR466","entrezGeneId":100423038},{"hugoGeneSymbol":"MIR4660","entrezGeneId":100616350},{"hugoGeneSymbol":"MIR4661","entrezGeneId":100616245},{"hugoGeneSymbol":"MIR4662A","entrezGeneId":100616221},{"hugoGeneSymbol":"MIR4662B","entrezGeneId":100616255},{"hugoGeneSymbol":"MIR4663","entrezGeneId":100616260},{"hugoGeneSymbol":"MIR4664","entrezGeneId":100616318},{"hugoGeneSymbol":"MIR4665","entrezGeneId":100616288},{"hugoGeneSymbol":"MIR4666A","entrezGeneId":100616308},{"hugoGeneSymbol":"MIR4666B","entrezGeneId":100847047},{"hugoGeneSymbol":"MIR4667","entrezGeneId":100616214},{"hugoGeneSymbol":"MIR4668","entrezGeneId":100616114},{"hugoGeneSymbol":"MIR4669","entrezGeneId":100616236},{"hugoGeneSymbol":"MIR4670","entrezGeneId":100616351},{"hugoGeneSymbol":"MIR4671","entrezGeneId":100616380},{"hugoGeneSymbol":"MIR4672","entrezGeneId":100616429},{"hugoGeneSymbol":"MIR4673","entrezGeneId":100616242},{"hugoGeneSymbol":"MIR4674","entrezGeneId":100616301},{"hugoGeneSymbol":"MIR4675","entrezGeneId":100616383},{"hugoGeneSymbol":"MIR4676","entrezGeneId":100616286},{"hugoGeneSymbol":"MIR4677","entrezGeneId":100616343},{"hugoGeneSymbol":"MIR4678","entrezGeneId":100616296},{"hugoGeneSymbol":"MIR4679-1","entrezGeneId":100616128},{"hugoGeneSymbol":"MIR4679-2","entrezGeneId":100616192},{"hugoGeneSymbol":"MIR4680","entrezGeneId":100616113},{"hugoGeneSymbol":"MIR4681","entrezGeneId":100616398},{"hugoGeneSymbol":"MIR4682","entrezGeneId":100616322},{"hugoGeneSymbol":"MIR4683","entrezGeneId":100616500},{"hugoGeneSymbol":"MIR4684","entrezGeneId":100616391},{"hugoGeneSymbol":"MIR4685","entrezGeneId":100616482},{"hugoGeneSymbol":"MIR4686","entrezGeneId":100616126},{"hugoGeneSymbol":"MIR4687","entrezGeneId":100616453},{"hugoGeneSymbol":"MIR4688","entrezGeneId":100616368},{"hugoGeneSymbol":"MIR4689","entrezGeneId":100616421},{"hugoGeneSymbol":"MIR4690","entrezGeneId":100616292},{"hugoGeneSymbol":"MIR4691","entrezGeneId":100616403},{"hugoGeneSymbol":"MIR4692","entrezGeneId":100616410},{"hugoGeneSymbol":"MIR4693","entrezGeneId":100616457},{"hugoGeneSymbol":"MIR4694","entrezGeneId":100616426},{"hugoGeneSymbol":"MIR4695","entrezGeneId":100616120},{"hugoGeneSymbol":"MIR4696","entrezGeneId":100616402},{"hugoGeneSymbol":"MIR4697","entrezGeneId":100616119},{"hugoGeneSymbol":"MIR4697HG","entrezGeneId":283174},{"hugoGeneSymbol":"MIR4698","entrezGeneId":100616486},{"hugoGeneSymbol":"MIR4699","entrezGeneId":100616133},{"hugoGeneSymbol":"MIR4700","entrezGeneId":100616329},{"hugoGeneSymbol":"MIR4701","entrezGeneId":100616262},{"hugoGeneSymbol":"MIR4703","entrezGeneId":100616423},{"hugoGeneSymbol":"MIR4704","entrezGeneId":100616205},{"hugoGeneSymbol":"MIR4705","entrezGeneId":100616239},{"hugoGeneSymbol":"MIR4706","entrezGeneId":100616490},{"hugoGeneSymbol":"MIR4707","entrezGeneId":100616424},{"hugoGeneSymbol":"MIR4708","entrezGeneId":100616176},{"hugoGeneSymbol":"MIR4709","entrezGeneId":100616211},{"hugoGeneSymbol":"MIR4710","entrezGeneId":100616300},{"hugoGeneSymbol":"MIR4711","entrezGeneId":100616409},{"hugoGeneSymbol":"MIR4712","entrezGeneId":100616396},{"hugoGeneSymbol":"MIR4713","entrezGeneId":100616369},{"hugoGeneSymbol":"MIR4713HG","entrezGeneId":109729174},{"hugoGeneSymbol":"MIR4714","entrezGeneId":100616432},{"hugoGeneSymbol":"MIR4715","entrezGeneId":100616474},{"hugoGeneSymbol":"MIR4716","entrezGeneId":100616332},{"hugoGeneSymbol":"MIR4717","entrezGeneId":100616241},{"hugoGeneSymbol":"MIR4718","entrezGeneId":100616195},{"hugoGeneSymbol":"MIR4719","entrezGeneId":100616172},{"hugoGeneSymbol":"MIR4720","entrezGeneId":100616150},{"hugoGeneSymbol":"MIR4721","entrezGeneId":100616256},{"hugoGeneSymbol":"MIR4722","entrezGeneId":100616167},{"hugoGeneSymbol":"MIR4723","entrezGeneId":100616388},{"hugoGeneSymbol":"MIR4724","entrezGeneId":100616248},{"hugoGeneSymbol":"MIR4725","entrezGeneId":100616449},{"hugoGeneSymbol":"MIR4726","entrezGeneId":100616153},{"hugoGeneSymbol":"MIR4727","entrezGeneId":100616416},{"hugoGeneSymbol":"MIR4728","entrezGeneId":100616132},{"hugoGeneSymbol":"MIR4729","entrezGeneId":100616204},{"hugoGeneSymbol":"MIR4730","entrezGeneId":100616359},{"hugoGeneSymbol":"MIR4731","entrezGeneId":100616125},{"hugoGeneSymbol":"MIR4732","entrezGeneId":100616385},{"hugoGeneSymbol":"MIR4733","entrezGeneId":100616266},{"hugoGeneSymbol":"MIR4734","entrezGeneId":100616203},{"hugoGeneSymbol":"MIR4735","entrezGeneId":100616363},{"hugoGeneSymbol":"MIR4736","entrezGeneId":100616220},{"hugoGeneSymbol":"MIR4737","entrezGeneId":100616210},{"hugoGeneSymbol":"MIR4738","entrezGeneId":100616282},{"hugoGeneSymbol":"MIR4739","entrezGeneId":100616170},{"hugoGeneSymbol":"MIR4740","entrezGeneId":100616294},{"hugoGeneSymbol":"MIR4741","entrezGeneId":100616139},{"hugoGeneSymbol":"MIR4742","entrezGeneId":100616468},{"hugoGeneSymbol":"MIR4743","entrezGeneId":100616366},{"hugoGeneSymbol":"MIR4744","entrezGeneId":100616420},{"hugoGeneSymbol":"MIR4745","entrezGeneId":100616459},{"hugoGeneSymbol":"MIR4746","entrezGeneId":100616371},{"hugoGeneSymbol":"MIR4747","entrezGeneId":100616337},{"hugoGeneSymbol":"MIR4748","entrezGeneId":100616425},{"hugoGeneSymbol":"MIR4749","entrezGeneId":100616313},{"hugoGeneSymbol":"MIR4750","entrezGeneId":100616314},{"hugoGeneSymbol":"MIR4751","entrezGeneId":100616483},{"hugoGeneSymbol":"MIR4752","entrezGeneId":100616171},{"hugoGeneSymbol":"MIR4753","entrezGeneId":100616224},{"hugoGeneSymbol":"MIR4754","entrezGeneId":100616168},{"hugoGeneSymbol":"MIR4755","entrezGeneId":100616434},{"hugoGeneSymbol":"MIR4756","entrezGeneId":100616225},{"hugoGeneSymbol":"MIR4757","entrezGeneId":100616307},{"hugoGeneSymbol":"MIR4758","entrezGeneId":100616340},{"hugoGeneSymbol":"MIR4759","entrezGeneId":100616243},{"hugoGeneSymbol":"MIR4760","entrezGeneId":100616148},{"hugoGeneSymbol":"MIR4761","entrezGeneId":100616414},{"hugoGeneSymbol":"MIR4762","entrezGeneId":100616253},{"hugoGeneSymbol":"MIR4763","entrezGeneId":100616143},{"hugoGeneSymbol":"MIR4764","entrezGeneId":100616295},{"hugoGeneSymbol":"MIR4765","entrezGeneId":100616219},{"hugoGeneSymbol":"MIR4766","entrezGeneId":100616283},{"hugoGeneSymbol":"MIR4767","entrezGeneId":100616467},{"hugoGeneSymbol":"MIR4768","entrezGeneId":100616249},{"hugoGeneSymbol":"MIR4769","entrezGeneId":100616147},{"hugoGeneSymbol":"MIR4770","entrezGeneId":100616373},{"hugoGeneSymbol":"MIR4771-1","entrezGeneId":100616370},{"hugoGeneSymbol":"MIR4771-2","entrezGeneId":100616165},{"hugoGeneSymbol":"MIR4772","entrezGeneId":100616157},{"hugoGeneSymbol":"MIR4773-1","entrezGeneId":100616392},{"hugoGeneSymbol":"MIR4773-2","entrezGeneId":100616418},{"hugoGeneSymbol":"MIR4774","entrezGeneId":100616356},{"hugoGeneSymbol":"MIR4775","entrezGeneId":100616361},{"hugoGeneSymbol":"MIR4776-1","entrezGeneId":100616267},{"hugoGeneSymbol":"MIR4776-2","entrezGeneId":100616472},{"hugoGeneSymbol":"MIR4777","entrezGeneId":100616317},{"hugoGeneSymbol":"MIR4778","entrezGeneId":100616464},{"hugoGeneSymbol":"MIR4779","entrezGeneId":100616159},{"hugoGeneSymbol":"MIR4780","entrezGeneId":100616447},{"hugoGeneSymbol":"MIR4781","entrezGeneId":100616315},{"hugoGeneSymbol":"MIR4782","entrezGeneId":100616208},{"hugoGeneSymbol":"MIR4783","entrezGeneId":100616187},{"hugoGeneSymbol":"MIR4784","entrezGeneId":100616378},{"hugoGeneSymbol":"MIR4785","entrezGeneId":100616364},{"hugoGeneSymbol":"MIR4786","entrezGeneId":100616417},{"hugoGeneSymbol":"MIR4787","entrezGeneId":100616138},{"hugoGeneSymbol":"MIR4788","entrezGeneId":100616281},{"hugoGeneSymbol":"MIR4789","entrezGeneId":100616395},{"hugoGeneSymbol":"MIR4790","entrezGeneId":100616334},{"hugoGeneSymbol":"MIR4791","entrezGeneId":100616291},{"hugoGeneSymbol":"MIR4793","entrezGeneId":100616112},{"hugoGeneSymbol":"MIR4794","entrezGeneId":100616338},{"hugoGeneSymbol":"MIR4795","entrezGeneId":100616161},{"hugoGeneSymbol":"MIR4796","entrezGeneId":100616166},{"hugoGeneSymbol":"MIR4797","entrezGeneId":100616216},{"hugoGeneSymbol":"MIR4798","entrezGeneId":100616471},{"hugoGeneSymbol":"MIR4799","entrezGeneId":100616246},{"hugoGeneSymbol":"MIR4800","entrezGeneId":100616358},{"hugoGeneSymbol":"MIR4801","entrezGeneId":100616435},{"hugoGeneSymbol":"MIR4802","entrezGeneId":100616274},{"hugoGeneSymbol":"MIR4803","entrezGeneId":100616377},{"hugoGeneSymbol":"MIR4804","entrezGeneId":100616152},{"hugoGeneSymbol":"MIR483","entrezGeneId":619552},{"hugoGeneSymbol":"MIR484","entrezGeneId":619553},{"hugoGeneSymbol":"MIR485","entrezGeneId":574436},{"hugoGeneSymbol":"MIR486-1","entrezGeneId":619554},{"hugoGeneSymbol":"MIR486-2","entrezGeneId":102465696},{"hugoGeneSymbol":"MIR487A","entrezGeneId":619555},{"hugoGeneSymbol":"MIR487B","entrezGeneId":664616},{"hugoGeneSymbol":"MIR488","entrezGeneId":574441},{"hugoGeneSymbol":"MIR489","entrezGeneId":574442},{"hugoGeneSymbol":"MIR490","entrezGeneId":574443},{"hugoGeneSymbol":"MIR491","entrezGeneId":574444},{"hugoGeneSymbol":"MIR492","entrezGeneId":574449},{"hugoGeneSymbol":"MIR493","entrezGeneId":574450},{"hugoGeneSymbol":"MIR494","entrezGeneId":574452},{"hugoGeneSymbol":"MIR495","entrezGeneId":574453},{"hugoGeneSymbol":"MIR496","entrezGeneId":574454},{"hugoGeneSymbol":"MIR497","entrezGeneId":574456},{"hugoGeneSymbol":"MIR497HG","entrezGeneId":100506755},{"hugoGeneSymbol":"MIR498","entrezGeneId":574460},{"hugoGeneSymbol":"MIR4999","entrezGeneId":100847049},{"hugoGeneSymbol":"MIR499A","entrezGeneId":574501},{"hugoGeneSymbol":"MIR499B","entrezGeneId":100616134},{"hugoGeneSymbol":"MIR5000","entrezGeneId":100846995},{"hugoGeneSymbol":"MIR5001","entrezGeneId":100847037},{"hugoGeneSymbol":"MIR5002","entrezGeneId":100847021},{"hugoGeneSymbol":"MIR5003","entrezGeneId":100847029},{"hugoGeneSymbol":"MIR5004","entrezGeneId":100847012},{"hugoGeneSymbol":"MIR5006","entrezGeneId":100847026},{"hugoGeneSymbol":"MIR5007","entrezGeneId":100846996},{"hugoGeneSymbol":"MIR5008","entrezGeneId":100847072},{"hugoGeneSymbol":"MIR5009","entrezGeneId":100846993},{"hugoGeneSymbol":"MIR500A","entrezGeneId":574502},{"hugoGeneSymbol":"MIR500B","entrezGeneId":100422911},{"hugoGeneSymbol":"MIR501","entrezGeneId":574503},{"hugoGeneSymbol":"MIR5010","entrezGeneId":100847046},{"hugoGeneSymbol":"MIR5011","entrezGeneId":100847002},{"hugoGeneSymbol":"MIR502","entrezGeneId":574504},{"hugoGeneSymbol":"MIR503","entrezGeneId":574506},{"hugoGeneSymbol":"MIR503HG","entrezGeneId":84848},{"hugoGeneSymbol":"MIR504","entrezGeneId":574507},{"hugoGeneSymbol":"MIR5047","entrezGeneId":100616408},{"hugoGeneSymbol":"MIR505","entrezGeneId":574508},{"hugoGeneSymbol":"MIR506","entrezGeneId":574511},{"hugoGeneSymbol":"MIR507","entrezGeneId":574512},{"hugoGeneSymbol":"MIR508","entrezGeneId":574513},{"hugoGeneSymbol":"MIR5087","entrezGeneId":100847044},{"hugoGeneSymbol":"MIR5088","entrezGeneId":100847074},{"hugoGeneSymbol":"MIR5089","entrezGeneId":100847067},{"hugoGeneSymbol":"MIR509-1","entrezGeneId":574514},{"hugoGeneSymbol":"MIR509-2","entrezGeneId":100126301},{"hugoGeneSymbol":"MIR509-3","entrezGeneId":100126337},{"hugoGeneSymbol":"MIR5090","entrezGeneId":100847073},{"hugoGeneSymbol":"MIR5091","entrezGeneId":100847023},{"hugoGeneSymbol":"MIR5092","entrezGeneId":100847039},{"hugoGeneSymbol":"MIR5093","entrezGeneId":100847022},{"hugoGeneSymbol":"MIR5094","entrezGeneId":100847059},{"hugoGeneSymbol":"MIR510","entrezGeneId":574515},{"hugoGeneSymbol":"MIR5100","entrezGeneId":100847014},{"hugoGeneSymbol":"MIR511","entrezGeneId":574445},{"hugoGeneSymbol":"MIR512-1","entrezGeneId":574458},{"hugoGeneSymbol":"MIR512-2","entrezGeneId":574459},{"hugoGeneSymbol":"MIR513A1","entrezGeneId":574509},{"hugoGeneSymbol":"MIR513A2","entrezGeneId":574510},{"hugoGeneSymbol":"MIR513B","entrezGeneId":100313822},{"hugoGeneSymbol":"MIR513C","entrezGeneId":100302114},{"hugoGeneSymbol":"MIR514A1","entrezGeneId":574516},{"hugoGeneSymbol":"MIR514A2","entrezGeneId":574517},{"hugoGeneSymbol":"MIR514A3","entrezGeneId":574518},{"hugoGeneSymbol":"MIR514B","entrezGeneId":100422847},{"hugoGeneSymbol":"MIR515-1","entrezGeneId":574462},{"hugoGeneSymbol":"MIR515-2","entrezGeneId":574465},{"hugoGeneSymbol":"MIR516A1","entrezGeneId":574498},{"hugoGeneSymbol":"MIR516A2","entrezGeneId":574499},{"hugoGeneSymbol":"MIR516B1","entrezGeneId":574490},{"hugoGeneSymbol":"MIR516B2","entrezGeneId":574485},{"hugoGeneSymbol":"MIR517A","entrezGeneId":574479},{"hugoGeneSymbol":"MIR517B","entrezGeneId":574483},{"hugoGeneSymbol":"MIR517C","entrezGeneId":574492},{"hugoGeneSymbol":"MIR5186","entrezGeneId":100847036},{"hugoGeneSymbol":"MIR5187","entrezGeneId":100847090},{"hugoGeneSymbol":"MIR5188","entrezGeneId":100847004},{"hugoGeneSymbol":"MIR5189","entrezGeneId":100847057},{"hugoGeneSymbol":"MIR518A1","entrezGeneId":574488},{"hugoGeneSymbol":"MIR518A2","entrezGeneId":574491},{"hugoGeneSymbol":"MIR518B","entrezGeneId":574474},{"hugoGeneSymbol":"MIR518C","entrezGeneId":574477},{"hugoGeneSymbol":"MIR518D","entrezGeneId":574489},{"hugoGeneSymbol":"MIR518E","entrezGeneId":574487},{"hugoGeneSymbol":"MIR518F","entrezGeneId":574472},{"hugoGeneSymbol":"MIR5190","entrezGeneId":100847080},{"hugoGeneSymbol":"MIR5191","entrezGeneId":100847050},{"hugoGeneSymbol":"MIR5192","entrezGeneId":100847087},{"hugoGeneSymbol":"MIR5193","entrezGeneId":100847079},{"hugoGeneSymbol":"MIR5194","entrezGeneId":100847051},{"hugoGeneSymbol":"MIR5195","entrezGeneId":100847062},{"hugoGeneSymbol":"MIR5196","entrezGeneId":100847070},{"hugoGeneSymbol":"MIR5197","entrezGeneId":100846991},{"hugoGeneSymbol":"MIR519A1","entrezGeneId":574496},{"hugoGeneSymbol":"MIR519A2","entrezGeneId":574500},{"hugoGeneSymbol":"MIR519B","entrezGeneId":574469},{"hugoGeneSymbol":"MIR519C","entrezGeneId":574466},{"hugoGeneSymbol":"MIR519D","entrezGeneId":574480},{"hugoGeneSymbol":"MIR519E","entrezGeneId":574463},{"hugoGeneSymbol":"MIR520A","entrezGeneId":574467},{"hugoGeneSymbol":"MIR520B","entrezGeneId":574473},{"hugoGeneSymbol":"MIR520C","entrezGeneId":574476},{"hugoGeneSymbol":"MIR520D","entrezGeneId":574482},{"hugoGeneSymbol":"MIR520E","entrezGeneId":574461},{"hugoGeneSymbol":"MIR520F","entrezGeneId":574464},{"hugoGeneSymbol":"MIR520G","entrezGeneId":574484},{"hugoGeneSymbol":"MIR520H","entrezGeneId":574493},{"hugoGeneSymbol":"MIR521-1","entrezGeneId":574494},{"hugoGeneSymbol":"MIR521-2","entrezGeneId":574481},{"hugoGeneSymbol":"MIR522","entrezGeneId":574495},{"hugoGeneSymbol":"MIR523","entrezGeneId":574471},{"hugoGeneSymbol":"MIR524","entrezGeneId":574478},{"hugoGeneSymbol":"MIR525","entrezGeneId":574470},{"hugoGeneSymbol":"MIR526A1","entrezGeneId":574475},{"hugoGeneSymbol":"MIR526A2","entrezGeneId":574486},{"hugoGeneSymbol":"MIR526B","entrezGeneId":574468},{"hugoGeneSymbol":"MIR527","entrezGeneId":574497},{"hugoGeneSymbol":"MIR532","entrezGeneId":693124},{"hugoGeneSymbol":"MIR539","entrezGeneId":664612},{"hugoGeneSymbol":"MIR541","entrezGeneId":100126308},{"hugoGeneSymbol":"MIR542","entrezGeneId":664617},{"hugoGeneSymbol":"MIR543","entrezGeneId":100126335},{"hugoGeneSymbol":"MIR544A","entrezGeneId":664613},{"hugoGeneSymbol":"MIR544B","entrezGeneId":100422864},{"hugoGeneSymbol":"MIR545","entrezGeneId":664614},{"hugoGeneSymbol":"MIR548A1","entrezGeneId":693125},{"hugoGeneSymbol":"MIR548A1HG","entrezGeneId":105374956},{"hugoGeneSymbol":"MIR548A2","entrezGeneId":693126},{"hugoGeneSymbol":"MIR548A3","entrezGeneId":693127},{"hugoGeneSymbol":"MIR548AA1","entrezGeneId":100500863},{"hugoGeneSymbol":"MIR548AA2","entrezGeneId":100500895},{"hugoGeneSymbol":"MIR548AB","entrezGeneId":100616336},{"hugoGeneSymbol":"MIR548AC","entrezGeneId":100616384},{"hugoGeneSymbol":"MIR548AD","entrezGeneId":100616475},{"hugoGeneSymbol":"MIR548AE1","entrezGeneId":100616305},{"hugoGeneSymbol":"MIR548AE2","entrezGeneId":100616339},{"hugoGeneSymbol":"MIR548AG1","entrezGeneId":100616450},{"hugoGeneSymbol":"MIR548AG2","entrezGeneId":100616440},{"hugoGeneSymbol":"MIR548AH","entrezGeneId":100616254},{"hugoGeneSymbol":"MIR548AI","entrezGeneId":100616347},{"hugoGeneSymbol":"MIR548AJ1","entrezGeneId":100616191},{"hugoGeneSymbol":"MIR548AJ2","entrezGeneId":100616252},{"hugoGeneSymbol":"MIR548AK","entrezGeneId":100616488},{"hugoGeneSymbol":"MIR548AL","entrezGeneId":100616215},{"hugoGeneSymbol":"MIR548AM","entrezGeneId":100616428},{"hugoGeneSymbol":"MIR548AN","entrezGeneId":100616144},{"hugoGeneSymbol":"MIR548AO","entrezGeneId":100847068},{"hugoGeneSymbol":"MIR548AP","entrezGeneId":100847084},{"hugoGeneSymbol":"MIR548AQ","entrezGeneId":100847078},{"hugoGeneSymbol":"MIR548AR","entrezGeneId":100847035},{"hugoGeneSymbol":"MIR548AS","entrezGeneId":100847092},{"hugoGeneSymbol":"MIR548AT","entrezGeneId":100847030},{"hugoGeneSymbol":"MIR548AU","entrezGeneId":100847045},{"hugoGeneSymbol":"MIR548AV","entrezGeneId":100847083},{"hugoGeneSymbol":"MIR548AW","entrezGeneId":100846992},{"hugoGeneSymbol":"MIR548AX","entrezGeneId":100847063},{"hugoGeneSymbol":"MIR548AY","entrezGeneId":102465247},{"hugoGeneSymbol":"MIR548AZ","entrezGeneId":102466162},{"hugoGeneSymbol":"MIR548B","entrezGeneId":693128},{"hugoGeneSymbol":"MIR548BA","entrezGeneId":102465854},{"hugoGeneSymbol":"MIR548BB","entrezGeneId":103504735},{"hugoGeneSymbol":"MIR548C","entrezGeneId":693129},{"hugoGeneSymbol":"MIR548D1","entrezGeneId":693130},{"hugoGeneSymbol":"MIR548D2","entrezGeneId":693131},{"hugoGeneSymbol":"MIR548E","entrezGeneId":100313921},{"hugoGeneSymbol":"MIR548F1","entrezGeneId":100302192},{"hugoGeneSymbol":"MIR548F2","entrezGeneId":100313771},{"hugoGeneSymbol":"MIR548F3","entrezGeneId":100302159},{"hugoGeneSymbol":"MIR548F4","entrezGeneId":100313895},{"hugoGeneSymbol":"MIR548F5","entrezGeneId":100302239},{"hugoGeneSymbol":"MIR548G","entrezGeneId":100313938},{"hugoGeneSymbol":"MIR548H1","entrezGeneId":100313830},{"hugoGeneSymbol":"MIR548H2","entrezGeneId":100313773},{"hugoGeneSymbol":"MIR548H3","entrezGeneId":100302287},{"hugoGeneSymbol":"MIR548H4","entrezGeneId":100313884},{"hugoGeneSymbol":"MIR548H5","entrezGeneId":100616455},{"hugoGeneSymbol":"MIR548I1","entrezGeneId":100302204},{"hugoGeneSymbol":"MIR548I2","entrezGeneId":100302277},{"hugoGeneSymbol":"MIR548I3","entrezGeneId":100302186},{"hugoGeneSymbol":"MIR548I4","entrezGeneId":100302191},{"hugoGeneSymbol":"MIR548J","entrezGeneId":100313914},{"hugoGeneSymbol":"MIR548K","entrezGeneId":100313770},{"hugoGeneSymbol":"MIR548L","entrezGeneId":100302275},{"hugoGeneSymbol":"MIR548M","entrezGeneId":100313772},{"hugoGeneSymbol":"MIR548N","entrezGeneId":100302152},{"hugoGeneSymbol":"MIR548O","entrezGeneId":100313829},{"hugoGeneSymbol":"MIR548O2","entrezGeneId":100616190},{"hugoGeneSymbol":"MIR548P","entrezGeneId":100302288},{"hugoGeneSymbol":"MIR548Q","entrezGeneId":100313841},{"hugoGeneSymbol":"MIR548S","entrezGeneId":100422862},{"hugoGeneSymbol":"MIR548T","entrezGeneId":100422849},{"hugoGeneSymbol":"MIR548U","entrezGeneId":100422884},{"hugoGeneSymbol":"MIR548V","entrezGeneId":100422850},{"hugoGeneSymbol":"MIR548W","entrezGeneId":100422923},{"hugoGeneSymbol":"MIR548X","entrezGeneId":100422920},{"hugoGeneSymbol":"MIR548X2","entrezGeneId":100616302},{"hugoGeneSymbol":"MIR548XHG","entrezGeneId":101927797},{"hugoGeneSymbol":"MIR548Y","entrezGeneId":100500919},{"hugoGeneSymbol":"MIR548Z","entrezGeneId":100500856},{"hugoGeneSymbol":"MIR549A","entrezGeneId":693132},{"hugoGeneSymbol":"MIR550A1","entrezGeneId":693133},{"hugoGeneSymbol":"MIR550A2","entrezGeneId":693134},{"hugoGeneSymbol":"MIR550A3","entrezGeneId":100616354},{"hugoGeneSymbol":"MIR550B1","entrezGeneId":100500883},{"hugoGeneSymbol":"MIR550B2","entrezGeneId":100500830},{"hugoGeneSymbol":"MIR551A","entrezGeneId":693135},{"hugoGeneSymbol":"MIR551B","entrezGeneId":693136},{"hugoGeneSymbol":"MIR552","entrezGeneId":693137},{"hugoGeneSymbol":"MIR553","entrezGeneId":693138},{"hugoGeneSymbol":"MIR554","entrezGeneId":693139},{"hugoGeneSymbol":"MIR555","entrezGeneId":693140},{"hugoGeneSymbol":"MIR556","entrezGeneId":693141},{"hugoGeneSymbol":"MIR557","entrezGeneId":693142},{"hugoGeneSymbol":"MIR5571","entrezGeneId":100847006},{"hugoGeneSymbol":"MIR5572","entrezGeneId":100847042},{"hugoGeneSymbol":"MIR5579","entrezGeneId":100847000},{"hugoGeneSymbol":"MIR558","entrezGeneId":693143},{"hugoGeneSymbol":"MIR5580","entrezGeneId":100847076},{"hugoGeneSymbol":"MIR5581","entrezGeneId":100847010},{"hugoGeneSymbol":"MIR5582","entrezGeneId":100847020},{"hugoGeneSymbol":"MIR5583-1","entrezGeneId":100847025},{"hugoGeneSymbol":"MIR5583-2","entrezGeneId":100846997},{"hugoGeneSymbol":"MIR5584","entrezGeneId":100847089},{"hugoGeneSymbol":"MIR5585","entrezGeneId":100847018},{"hugoGeneSymbol":"MIR5586","entrezGeneId":100847088},{"hugoGeneSymbol":"MIR5587","entrezGeneId":100847028},{"hugoGeneSymbol":"MIR5588","entrezGeneId":100847054},{"hugoGeneSymbol":"MIR5589","entrezGeneId":100847093},{"hugoGeneSymbol":"MIR559","entrezGeneId":693144},{"hugoGeneSymbol":"MIR5590","entrezGeneId":100847069},{"hugoGeneSymbol":"MIR5591","entrezGeneId":100847065},{"hugoGeneSymbol":"MIR561","entrezGeneId":693146},{"hugoGeneSymbol":"MIR562","entrezGeneId":693147},{"hugoGeneSymbol":"MIR563","entrezGeneId":693148},{"hugoGeneSymbol":"MIR564","entrezGeneId":693149},{"hugoGeneSymbol":"MIR567","entrezGeneId":693152},{"hugoGeneSymbol":"MIR568","entrezGeneId":693153},{"hugoGeneSymbol":"MIR5680","entrezGeneId":100847001},{"hugoGeneSymbol":"MIR5681A","entrezGeneId":100847058},{"hugoGeneSymbol":"MIR5681B","entrezGeneId":100847091},{"hugoGeneSymbol":"MIR5682","entrezGeneId":100847043},{"hugoGeneSymbol":"MIR5683","entrezGeneId":100847034},{"hugoGeneSymbol":"MIR5684","entrezGeneId":100847071},{"hugoGeneSymbol":"MIR5685","entrezGeneId":100847075},{"hugoGeneSymbol":"MIR5687","entrezGeneId":100847019},{"hugoGeneSymbol":"MIR5688","entrezGeneId":100847077},{"hugoGeneSymbol":"MIR5689","entrezGeneId":100846998},{"hugoGeneSymbol":"MIR5689HG","entrezGeneId":106660610},{"hugoGeneSymbol":"MIR569","entrezGeneId":693154},{"hugoGeneSymbol":"MIR5690","entrezGeneId":100847048},{"hugoGeneSymbol":"MIR5691","entrezGeneId":100847015},{"hugoGeneSymbol":"MIR5692A1","entrezGeneId":100847066},{"hugoGeneSymbol":"MIR5692A2","entrezGeneId":100847038},{"hugoGeneSymbol":"MIR5692B","entrezGeneId":100847013},{"hugoGeneSymbol":"MIR5692C1","entrezGeneId":100847082},{"hugoGeneSymbol":"MIR5692C2","entrezGeneId":100847017},{"hugoGeneSymbol":"MIR5693","entrezGeneId":100847003},{"hugoGeneSymbol":"MIR5694","entrezGeneId":100847064},{"hugoGeneSymbol":"MIR5695","entrezGeneId":100847016},{"hugoGeneSymbol":"MIR5696","entrezGeneId":100847007},{"hugoGeneSymbol":"MIR5697","entrezGeneId":100847055},{"hugoGeneSymbol":"MIR5698","entrezGeneId":100847024},{"hugoGeneSymbol":"MIR5699","entrezGeneId":100847086},{"hugoGeneSymbol":"MIR570","entrezGeneId":693155},{"hugoGeneSymbol":"MIR5700","entrezGeneId":100847031},{"hugoGeneSymbol":"MIR5701-1","entrezGeneId":100847060},{"hugoGeneSymbol":"MIR5701-2","entrezGeneId":100847005},{"hugoGeneSymbol":"MIR5701-3","entrezGeneId":103504741},{"hugoGeneSymbol":"MIR5702","entrezGeneId":100847053},{"hugoGeneSymbol":"MIR5703","entrezGeneId":100847081},{"hugoGeneSymbol":"MIR5704","entrezGeneId":100847040},{"hugoGeneSymbol":"MIR5705","entrezGeneId":100847027},{"hugoGeneSymbol":"MIR5706","entrezGeneId":100847085},{"hugoGeneSymbol":"MIR5707","entrezGeneId":100847032},{"hugoGeneSymbol":"MIR5708","entrezGeneId":100847056},{"hugoGeneSymbol":"MIR570HG","entrezGeneId":440993},{"hugoGeneSymbol":"MIR571","entrezGeneId":693156},{"hugoGeneSymbol":"MIR572","entrezGeneId":693157},{"hugoGeneSymbol":"MIR573","entrezGeneId":693158},{"hugoGeneSymbol":"MIR5739","entrezGeneId":102466081},{"hugoGeneSymbol":"MIR574","entrezGeneId":693159},{"hugoGeneSymbol":"MIR575","entrezGeneId":693160},{"hugoGeneSymbol":"MIR576","entrezGeneId":693161},{"hugoGeneSymbol":"MIR577","entrezGeneId":693162},{"hugoGeneSymbol":"MIR578","entrezGeneId":693163},{"hugoGeneSymbol":"MIR5787","entrezGeneId":102464817},{"hugoGeneSymbol":"MIR579","entrezGeneId":693164},{"hugoGeneSymbol":"MIR580","entrezGeneId":693165},{"hugoGeneSymbol":"MIR581","entrezGeneId":693166},{"hugoGeneSymbol":"MIR582","entrezGeneId":693167},{"hugoGeneSymbol":"MIR583","entrezGeneId":693168},{"hugoGeneSymbol":"MIR583HG","entrezGeneId":107984114},{"hugoGeneSymbol":"MIR584","entrezGeneId":693169},{"hugoGeneSymbol":"MIR585","entrezGeneId":693170},{"hugoGeneSymbol":"MIR586","entrezGeneId":693171},{"hugoGeneSymbol":"MIR587","entrezGeneId":693172},{"hugoGeneSymbol":"MIR588","entrezGeneId":693173},{"hugoGeneSymbol":"MIR589","entrezGeneId":693174},{"hugoGeneSymbol":"MIR590","entrezGeneId":693175},{"hugoGeneSymbol":"MIR591","entrezGeneId":693176},{"hugoGeneSymbol":"MIR592","entrezGeneId":693177},{"hugoGeneSymbol":"MIR593","entrezGeneId":693178},{"hugoGeneSymbol":"MIR595","entrezGeneId":693180},{"hugoGeneSymbol":"MIR596","entrezGeneId":693181},{"hugoGeneSymbol":"MIR597","entrezGeneId":693182},{"hugoGeneSymbol":"MIR598","entrezGeneId":693183},{"hugoGeneSymbol":"MIR599","entrezGeneId":693184},{"hugoGeneSymbol":"MIR600","entrezGeneId":693185},{"hugoGeneSymbol":"MIR600HG","entrezGeneId":81571},{"hugoGeneSymbol":"MIR601","entrezGeneId":693186},{"hugoGeneSymbol":"MIR602","entrezGeneId":693187},{"hugoGeneSymbol":"MIR603","entrezGeneId":693188},{"hugoGeneSymbol":"MIR604","entrezGeneId":693189},{"hugoGeneSymbol":"MIR605","entrezGeneId":693190},{"hugoGeneSymbol":"MIR606","entrezGeneId":693191},{"hugoGeneSymbol":"MIR6068","entrezGeneId":102464823},{"hugoGeneSymbol":"MIR6069","entrezGeneId":102464824},{"hugoGeneSymbol":"MIR607","entrezGeneId":693192},{"hugoGeneSymbol":"MIR6070","entrezGeneId":102464825},{"hugoGeneSymbol":"MIR6071","entrezGeneId":102466516},{"hugoGeneSymbol":"MIR6072","entrezGeneId":102465944},{"hugoGeneSymbol":"MIR6073","entrezGeneId":102464826},{"hugoGeneSymbol":"MIR6074","entrezGeneId":102464827},{"hugoGeneSymbol":"MIR6075","entrezGeneId":102466103},{"hugoGeneSymbol":"MIR6076","entrezGeneId":102464828},{"hugoGeneSymbol":"MIR6077","entrezGeneId":102466225},{"hugoGeneSymbol":"MIR6078","entrezGeneId":102464829},{"hugoGeneSymbol":"MIR6079","entrezGeneId":102464830},{"hugoGeneSymbol":"MIR608","entrezGeneId":693193},{"hugoGeneSymbol":"MIR6080","entrezGeneId":102464831},{"hugoGeneSymbol":"MIR6081","entrezGeneId":102466518},{"hugoGeneSymbol":"MIR6082","entrezGeneId":102466953},{"hugoGeneSymbol":"MIR6083","entrezGeneId":102464832},{"hugoGeneSymbol":"MIR6084","entrezGeneId":102464833},{"hugoGeneSymbol":"MIR6085","entrezGeneId":102464834},{"hugoGeneSymbol":"MIR6086","entrezGeneId":102466519},{"hugoGeneSymbol":"MIR6088","entrezGeneId":102464836},{"hugoGeneSymbol":"MIR6089","entrezGeneId":102464837},{"hugoGeneSymbol":"MIR609","entrezGeneId":693194},{"hugoGeneSymbol":"MIR6090","entrezGeneId":102466104},{"hugoGeneSymbol":"MIR610","entrezGeneId":693195},{"hugoGeneSymbol":"MIR611","entrezGeneId":693196},{"hugoGeneSymbol":"MIR612","entrezGeneId":693197},{"hugoGeneSymbol":"MIR6124","entrezGeneId":102466906},{"hugoGeneSymbol":"MIR6125","entrezGeneId":102465133},{"hugoGeneSymbol":"MIR6126","entrezGeneId":102465134},{"hugoGeneSymbol":"MIR6127","entrezGeneId":102466615},{"hugoGeneSymbol":"MIR6128","entrezGeneId":102465135},{"hugoGeneSymbol":"MIR6129","entrezGeneId":102465137},{"hugoGeneSymbol":"MIR613","entrezGeneId":693198},{"hugoGeneSymbol":"MIR6130","entrezGeneId":102466967},{"hugoGeneSymbol":"MIR6131","entrezGeneId":102465138},{"hugoGeneSymbol":"MIR6132","entrezGeneId":102466616},{"hugoGeneSymbol":"MIR6133","entrezGeneId":102465139},{"hugoGeneSymbol":"MIR6134","entrezGeneId":102465140},{"hugoGeneSymbol":"MIR614","entrezGeneId":693199},{"hugoGeneSymbol":"MIR615","entrezGeneId":693200},{"hugoGeneSymbol":"MIR616","entrezGeneId":693201},{"hugoGeneSymbol":"MIR6165","entrezGeneId":102465141},{"hugoGeneSymbol":"MIR617","entrezGeneId":693202},{"hugoGeneSymbol":"MIR618","entrezGeneId":693203},{"hugoGeneSymbol":"MIR619","entrezGeneId":693204},{"hugoGeneSymbol":"MIR620","entrezGeneId":693205},{"hugoGeneSymbol":"MIR621","entrezGeneId":693206},{"hugoGeneSymbol":"MIR622","entrezGeneId":693207},{"hugoGeneSymbol":"MIR623","entrezGeneId":693208},{"hugoGeneSymbol":"MIR624","entrezGeneId":693209},{"hugoGeneSymbol":"MIR625","entrezGeneId":693210},{"hugoGeneSymbol":"MIR626","entrezGeneId":693211},{"hugoGeneSymbol":"MIR627","entrezGeneId":693212},{"hugoGeneSymbol":"MIR628","entrezGeneId":693213},{"hugoGeneSymbol":"MIR629","entrezGeneId":693214},{"hugoGeneSymbol":"MIR630","entrezGeneId":693215},{"hugoGeneSymbol":"MIR631","entrezGeneId":693216},{"hugoGeneSymbol":"MIR632","entrezGeneId":693217},{"hugoGeneSymbol":"MIR633","entrezGeneId":693218},{"hugoGeneSymbol":"MIR634","entrezGeneId":693219},{"hugoGeneSymbol":"MIR635","entrezGeneId":693220},{"hugoGeneSymbol":"MIR636","entrezGeneId":693221},{"hugoGeneSymbol":"MIR637","entrezGeneId":693222},{"hugoGeneSymbol":"MIR638","entrezGeneId":693223},{"hugoGeneSymbol":"MIR639","entrezGeneId":693224},{"hugoGeneSymbol":"MIR640","entrezGeneId":693225},{"hugoGeneSymbol":"MIR641","entrezGeneId":693226},{"hugoGeneSymbol":"MIR642A","entrezGeneId":693227},{"hugoGeneSymbol":"MIR642B","entrezGeneId":100500845},{"hugoGeneSymbol":"MIR643","entrezGeneId":693228},{"hugoGeneSymbol":"MIR644A","entrezGeneId":693229},{"hugoGeneSymbol":"MIR645","entrezGeneId":693230},{"hugoGeneSymbol":"MIR646","entrezGeneId":693231},{"hugoGeneSymbol":"MIR646HG","entrezGeneId":284757},{"hugoGeneSymbol":"MIR647","entrezGeneId":693232},{"hugoGeneSymbol":"MIR648","entrezGeneId":693233},{"hugoGeneSymbol":"MIR649","entrezGeneId":693234},{"hugoGeneSymbol":"MIR6499","entrezGeneId":102465246},{"hugoGeneSymbol":"MIR650","entrezGeneId":723778},{"hugoGeneSymbol":"MIR6500","entrezGeneId":102466656},{"hugoGeneSymbol":"MIR6501","entrezGeneId":102465248},{"hugoGeneSymbol":"MIR6502","entrezGeneId":102465249},{"hugoGeneSymbol":"MIR6503","entrezGeneId":102465250},{"hugoGeneSymbol":"MIR6504","entrezGeneId":102465251},{"hugoGeneSymbol":"MIR6505","entrezGeneId":102466657},{"hugoGeneSymbol":"MIR6506","entrezGeneId":102465252},{"hugoGeneSymbol":"MIR6507","entrezGeneId":102465253},{"hugoGeneSymbol":"MIR6508","entrezGeneId":102466972},{"hugoGeneSymbol":"MIR6509","entrezGeneId":102465254},{"hugoGeneSymbol":"MIR651","entrezGeneId":723779},{"hugoGeneSymbol":"MIR6510","entrezGeneId":102466658},{"hugoGeneSymbol":"MIR6511A1","entrezGeneId":102466268},{"hugoGeneSymbol":"MIR6511A2","entrezGeneId":102466812},{"hugoGeneSymbol":"MIR6511A3","entrezGeneId":102465683},{"hugoGeneSymbol":"MIR6511A4","entrezGeneId":102465684},{"hugoGeneSymbol":"MIR6511B1","entrezGeneId":102465429},{"hugoGeneSymbol":"MIR6511B2","entrezGeneId":102465985},{"hugoGeneSymbol":"MIR6512","entrezGeneId":102465255},{"hugoGeneSymbol":"MIR6513","entrezGeneId":102465256},{"hugoGeneSymbol":"MIR6514","entrezGeneId":102465257},{"hugoGeneSymbol":"MIR6515","entrezGeneId":102466659},{"hugoGeneSymbol":"MIR6516","entrezGeneId":102466864},{"hugoGeneSymbol":"MIR652","entrezGeneId":724022},{"hugoGeneSymbol":"MIR653","entrezGeneId":724023},{"hugoGeneSymbol":"MIR654","entrezGeneId":724024},{"hugoGeneSymbol":"MIR655","entrezGeneId":724025},{"hugoGeneSymbol":"MIR656","entrezGeneId":724026},{"hugoGeneSymbol":"MIR657","entrezGeneId":724027},{"hugoGeneSymbol":"MIR658","entrezGeneId":724028},{"hugoGeneSymbol":"MIR659","entrezGeneId":724029},{"hugoGeneSymbol":"MIR660","entrezGeneId":724030},{"hugoGeneSymbol":"MIR661","entrezGeneId":724031},{"hugoGeneSymbol":"MIR662","entrezGeneId":724032},{"hugoGeneSymbol":"MIR663A","entrezGeneId":724033},{"hugoGeneSymbol":"MIR663AHG","entrezGeneId":284801},{"hugoGeneSymbol":"MIR663B","entrezGeneId":100313824},{"hugoGeneSymbol":"MIR664A","entrezGeneId":100302234},{"hugoGeneSymbol":"MIR664B","entrezGeneId":100847052},{"hugoGeneSymbol":"MIR665","entrezGeneId":100126315},{"hugoGeneSymbol":"MIR668","entrezGeneId":768214},{"hugoGeneSymbol":"MIR670","entrezGeneId":100313777},{"hugoGeneSymbol":"MIR670HG","entrezGeneId":100507261},{"hugoGeneSymbol":"MIR671","entrezGeneId":768213},{"hugoGeneSymbol":"MIR6715A","entrezGeneId":102466189},{"hugoGeneSymbol":"MIR6715B","entrezGeneId":102465427},{"hugoGeneSymbol":"MIR6716","entrezGeneId":102466719},{"hugoGeneSymbol":"MIR6717","entrezGeneId":102465428},{"hugoGeneSymbol":"MIR6718","entrezGeneId":102465430},{"hugoGeneSymbol":"MIR6719","entrezGeneId":102465974},{"hugoGeneSymbol":"MIR6720","entrezGeneId":102466720},{"hugoGeneSymbol":"MIR6721","entrezGeneId":102466190},{"hugoGeneSymbol":"MIR6722","entrezGeneId":102465431},{"hugoGeneSymbol":"MIR6724-1","entrezGeneId":102465433},{"hugoGeneSymbol":"MIR6724-2","entrezGeneId":103504727},{"hugoGeneSymbol":"MIR6724-3","entrezGeneId":103504739},{"hugoGeneSymbol":"MIR6724-4","entrezGeneId":103504733},{"hugoGeneSymbol":"MIR6726","entrezGeneId":102465434},{"hugoGeneSymbol":"MIR6727","entrezGeneId":102465435},{"hugoGeneSymbol":"MIR6728","entrezGeneId":102465436},{"hugoGeneSymbol":"MIR6729","entrezGeneId":102466982},{"hugoGeneSymbol":"MIR6730","entrezGeneId":102466722},{"hugoGeneSymbol":"MIR6731","entrezGeneId":102465437},{"hugoGeneSymbol":"MIR6732","entrezGeneId":102465438},{"hugoGeneSymbol":"MIR6733","entrezGeneId":102465439},{"hugoGeneSymbol":"MIR6734","entrezGeneId":102466723},{"hugoGeneSymbol":"MIR6735","entrezGeneId":102465440},{"hugoGeneSymbol":"MIR6736","entrezGeneId":102466191},{"hugoGeneSymbol":"MIR6737","entrezGeneId":102465441},{"hugoGeneSymbol":"MIR6738","entrezGeneId":102465442},{"hugoGeneSymbol":"MIR6739","entrezGeneId":102466724},{"hugoGeneSymbol":"MIR6740","entrezGeneId":102465443},{"hugoGeneSymbol":"MIR6741","entrezGeneId":102466270},{"hugoGeneSymbol":"MIR6742","entrezGeneId":102465444},{"hugoGeneSymbol":"MIR6743","entrezGeneId":102465445},{"hugoGeneSymbol":"MIR6744","entrezGeneId":102466725},{"hugoGeneSymbol":"MIR6745","entrezGeneId":102466726},{"hugoGeneSymbol":"MIR6746","entrezGeneId":102465446},{"hugoGeneSymbol":"MIR6747","entrezGeneId":102465447},{"hugoGeneSymbol":"MIR6748","entrezGeneId":102465448},{"hugoGeneSymbol":"MIR6749","entrezGeneId":102466727},{"hugoGeneSymbol":"MIR675","entrezGeneId":100033819},{"hugoGeneSymbol":"MIR6750","entrezGeneId":102466192},{"hugoGeneSymbol":"MIR6751","entrezGeneId":102465449},{"hugoGeneSymbol":"MIR6752","entrezGeneId":102465450},{"hugoGeneSymbol":"MIR6753","entrezGeneId":102465451},{"hugoGeneSymbol":"MIR6754","entrezGeneId":102466728},{"hugoGeneSymbol":"MIR6755","entrezGeneId":102465452},{"hugoGeneSymbol":"MIR6756","entrezGeneId":102465453},{"hugoGeneSymbol":"MIR6757","entrezGeneId":102466193},{"hugoGeneSymbol":"MIR6758","entrezGeneId":102465454},{"hugoGeneSymbol":"MIR6759","entrezGeneId":102466729},{"hugoGeneSymbol":"MIR676","entrezGeneId":100500887},{"hugoGeneSymbol":"MIR6760","entrezGeneId":102465455},{"hugoGeneSymbol":"MIR6761","entrezGeneId":102465456},{"hugoGeneSymbol":"MIR6762","entrezGeneId":102465457},{"hugoGeneSymbol":"MIR6763","entrezGeneId":102465975},{"hugoGeneSymbol":"MIR6764","entrezGeneId":102466730},{"hugoGeneSymbol":"MIR6765","entrezGeneId":102465458},{"hugoGeneSymbol":"MIR6766","entrezGeneId":102466983},{"hugoGeneSymbol":"MIR6767","entrezGeneId":102465459},{"hugoGeneSymbol":"MIR6768","entrezGeneId":102465460},{"hugoGeneSymbol":"MIR6769A","entrezGeneId":102466731},{"hugoGeneSymbol":"MIR6769B","entrezGeneId":102466202},{"hugoGeneSymbol":"MIR6770-1","entrezGeneId":102465461},{"hugoGeneSymbol":"MIR6770-2","entrezGeneId":102465908},{"hugoGeneSymbol":"MIR6770-3","entrezGeneId":102466259},{"hugoGeneSymbol":"MIR6771","entrezGeneId":102465462},{"hugoGeneSymbol":"MIR6772","entrezGeneId":102465463},{"hugoGeneSymbol":"MIR6773","entrezGeneId":102466194},{"hugoGeneSymbol":"MIR6774","entrezGeneId":102466732},{"hugoGeneSymbol":"MIR6775","entrezGeneId":102465464},{"hugoGeneSymbol":"MIR6776","entrezGeneId":102465465},{"hugoGeneSymbol":"MIR6777","entrezGeneId":102465466},{"hugoGeneSymbol":"MIR6778","entrezGeneId":102466733},{"hugoGeneSymbol":"MIR6779","entrezGeneId":102465467},{"hugoGeneSymbol":"MIR6780A","entrezGeneId":102466195},{"hugoGeneSymbol":"MIR6780B","entrezGeneId":102466746},{"hugoGeneSymbol":"MIR6781","entrezGeneId":102465468},{"hugoGeneSymbol":"MIR6782","entrezGeneId":102465469},{"hugoGeneSymbol":"MIR6783","entrezGeneId":102466734},{"hugoGeneSymbol":"MIR6784","entrezGeneId":102465470},{"hugoGeneSymbol":"MIR6785","entrezGeneId":102466911},{"hugoGeneSymbol":"MIR6786","entrezGeneId":102465471},{"hugoGeneSymbol":"MIR6787","entrezGeneId":102465472},{"hugoGeneSymbol":"MIR6788","entrezGeneId":102466735},{"hugoGeneSymbol":"MIR6789","entrezGeneId":102466736},{"hugoGeneSymbol":"MIR6790","entrezGeneId":102465473},{"hugoGeneSymbol":"MIR6791","entrezGeneId":102465474},{"hugoGeneSymbol":"MIR6792","entrezGeneId":102465475},{"hugoGeneSymbol":"MIR6793","entrezGeneId":102466737},{"hugoGeneSymbol":"MIR6794","entrezGeneId":102466196},{"hugoGeneSymbol":"MIR6795","entrezGeneId":102465476},{"hugoGeneSymbol":"MIR6796","entrezGeneId":102465477},{"hugoGeneSymbol":"MIR6797","entrezGeneId":102465478},{"hugoGeneSymbol":"MIR6798","entrezGeneId":102466738},{"hugoGeneSymbol":"MIR6799","entrezGeneId":102465479},{"hugoGeneSymbol":"MIR6800","entrezGeneId":102465480},{"hugoGeneSymbol":"MIR6801","entrezGeneId":102466984},{"hugoGeneSymbol":"MIR6802","entrezGeneId":102465481},{"hugoGeneSymbol":"MIR6803","entrezGeneId":102466739},{"hugoGeneSymbol":"MIR6804","entrezGeneId":102465482},{"hugoGeneSymbol":"MIR6805","entrezGeneId":102465483},{"hugoGeneSymbol":"MIR6806","entrezGeneId":102465484},{"hugoGeneSymbol":"MIR6807","entrezGeneId":102465976},{"hugoGeneSymbol":"MIR6808","entrezGeneId":102466740},{"hugoGeneSymbol":"MIR6809","entrezGeneId":102465485},{"hugoGeneSymbol":"MIR6810","entrezGeneId":102466197},{"hugoGeneSymbol":"MIR6811","entrezGeneId":102465486},{"hugoGeneSymbol":"MIR6812","entrezGeneId":102465487},{"hugoGeneSymbol":"MIR6813","entrezGeneId":102466741},{"hugoGeneSymbol":"MIR6814","entrezGeneId":102465488},{"hugoGeneSymbol":"MIR6815","entrezGeneId":102465489},{"hugoGeneSymbol":"MIR6816","entrezGeneId":102465490},{"hugoGeneSymbol":"MIR6817","entrezGeneId":102466198},{"hugoGeneSymbol":"MIR6818","entrezGeneId":102466742},{"hugoGeneSymbol":"MIR6819","entrezGeneId":102465491},{"hugoGeneSymbol":"MIR6820","entrezGeneId":102465492},{"hugoGeneSymbol":"MIR6821","entrezGeneId":102465493},{"hugoGeneSymbol":"MIR6822","entrezGeneId":102466743},{"hugoGeneSymbol":"MIR6823","entrezGeneId":102465494},{"hugoGeneSymbol":"MIR6824","entrezGeneId":102465495},{"hugoGeneSymbol":"MIR6825","entrezGeneId":102466199},{"hugoGeneSymbol":"MIR6826","entrezGeneId":102465496},{"hugoGeneSymbol":"MIR6827","entrezGeneId":102466744},{"hugoGeneSymbol":"MIR6828","entrezGeneId":102465497},{"hugoGeneSymbol":"MIR6829","entrezGeneId":102465977},{"hugoGeneSymbol":"MIR6830","entrezGeneId":102465498},{"hugoGeneSymbol":"MIR6831","entrezGeneId":102465499},{"hugoGeneSymbol":"MIR6832","entrezGeneId":102466745},{"hugoGeneSymbol":"MIR6833","entrezGeneId":102465500},{"hugoGeneSymbol":"MIR6834","entrezGeneId":102465501},{"hugoGeneSymbol":"MIR6835","entrezGeneId":102465502},{"hugoGeneSymbol":"MIR6836","entrezGeneId":102465503},{"hugoGeneSymbol":"MIR6837","entrezGeneId":102466985},{"hugoGeneSymbol":"MIR6838","entrezGeneId":102465504},{"hugoGeneSymbol":"MIR6839","entrezGeneId":102465505},{"hugoGeneSymbol":"MIR6840","entrezGeneId":102466747},{"hugoGeneSymbol":"MIR6841","entrezGeneId":102465506},{"hugoGeneSymbol":"MIR6842","entrezGeneId":102465507},{"hugoGeneSymbol":"MIR6843","entrezGeneId":102465508},{"hugoGeneSymbol":"MIR6844","entrezGeneId":102466200},{"hugoGeneSymbol":"MIR6845","entrezGeneId":102466748},{"hugoGeneSymbol":"MIR6846","entrezGeneId":102465509},{"hugoGeneSymbol":"MIR6847","entrezGeneId":102465510},{"hugoGeneSymbol":"MIR6848","entrezGeneId":102465511},{"hugoGeneSymbol":"MIR6849","entrezGeneId":102466749},{"hugoGeneSymbol":"MIR6850","entrezGeneId":102465978},{"hugoGeneSymbol":"MIR6851","entrezGeneId":102465512},{"hugoGeneSymbol":"MIR6852","entrezGeneId":102465513},{"hugoGeneSymbol":"MIR6853","entrezGeneId":102466201},{"hugoGeneSymbol":"MIR6854","entrezGeneId":102465514},{"hugoGeneSymbol":"MIR6855","entrezGeneId":102466750},{"hugoGeneSymbol":"MIR6856","entrezGeneId":102465515},{"hugoGeneSymbol":"MIR6857","entrezGeneId":102465516},{"hugoGeneSymbol":"MIR6858","entrezGeneId":102465517},{"hugoGeneSymbol":"MIR6859-1","entrezGeneId":102466751},{"hugoGeneSymbol":"MIR6859-2","entrezGeneId":102465909},{"hugoGeneSymbol":"MIR6859-3","entrezGeneId":102465910},{"hugoGeneSymbol":"MIR6859-4","entrezGeneId":103504738},{"hugoGeneSymbol":"MIR6860","entrezGeneId":102465518},{"hugoGeneSymbol":"MIR6861","entrezGeneId":102465519},{"hugoGeneSymbol":"MIR6862-1","entrezGeneId":102465520},{"hugoGeneSymbol":"MIR6862-2","entrezGeneId":102465907},{"hugoGeneSymbol":"MIR6863","entrezGeneId":102466752},{"hugoGeneSymbol":"MIR6864","entrezGeneId":102465521},{"hugoGeneSymbol":"MIR6865","entrezGeneId":102465522},{"hugoGeneSymbol":"MIR6866","entrezGeneId":102466986},{"hugoGeneSymbol":"MIR6867","entrezGeneId":102465523},{"hugoGeneSymbol":"MIR6868","entrezGeneId":102466753},{"hugoGeneSymbol":"MIR6869","entrezGeneId":102465524},{"hugoGeneSymbol":"MIR6870","entrezGeneId":102465525},{"hugoGeneSymbol":"MIR6871","entrezGeneId":102466912},{"hugoGeneSymbol":"MIR6872","entrezGeneId":102465526},{"hugoGeneSymbol":"MIR6873","entrezGeneId":102466754},{"hugoGeneSymbol":"MIR6874","entrezGeneId":102466203},{"hugoGeneSymbol":"MIR6875","entrezGeneId":102466755},{"hugoGeneSymbol":"MIR6876","entrezGeneId":102465527},{"hugoGeneSymbol":"MIR6877","entrezGeneId":102465528},{"hugoGeneSymbol":"MIR6878","entrezGeneId":102465529},{"hugoGeneSymbol":"MIR6879","entrezGeneId":102466756},{"hugoGeneSymbol":"MIR6880","entrezGeneId":102466204},{"hugoGeneSymbol":"MIR6881","entrezGeneId":102465530},{"hugoGeneSymbol":"MIR6882","entrezGeneId":102465531},{"hugoGeneSymbol":"MIR6883","entrezGeneId":102465532},{"hugoGeneSymbol":"MIR6884","entrezGeneId":102466757},{"hugoGeneSymbol":"MIR6885","entrezGeneId":102465533},{"hugoGeneSymbol":"MIR6886","entrezGeneId":102465534},{"hugoGeneSymbol":"MIR6887","entrezGeneId":102466205},{"hugoGeneSymbol":"MIR6888","entrezGeneId":102465535},{"hugoGeneSymbol":"MIR6889","entrezGeneId":102466758},{"hugoGeneSymbol":"MIR6890","entrezGeneId":102465536},{"hugoGeneSymbol":"MIR6891","entrezGeneId":102465537},{"hugoGeneSymbol":"MIR6892","entrezGeneId":102465538},{"hugoGeneSymbol":"MIR6893","entrezGeneId":102466271},{"hugoGeneSymbol":"MIR6894","entrezGeneId":102466759},{"hugoGeneSymbol":"MIR6895","entrezGeneId":102465539},{"hugoGeneSymbol":"MIR7-1","entrezGeneId":407043},{"hugoGeneSymbol":"MIR7-2","entrezGeneId":407044},{"hugoGeneSymbol":"MIR7-3","entrezGeneId":407045},{"hugoGeneSymbol":"MIR7-3HG","entrezGeneId":284424},{"hugoGeneSymbol":"MIR708","entrezGeneId":100126333},{"hugoGeneSymbol":"MIR7106","entrezGeneId":102466222},{"hugoGeneSymbol":"MIR7107","entrezGeneId":102465665},{"hugoGeneSymbol":"MIR7108","entrezGeneId":102466806},{"hugoGeneSymbol":"MIR7109","entrezGeneId":102465666},{"hugoGeneSymbol":"MIR711","entrezGeneId":100313843},{"hugoGeneSymbol":"MIR7110","entrezGeneId":102465667},{"hugoGeneSymbol":"MIR7111","entrezGeneId":102465668},{"hugoGeneSymbol":"MIR7112","entrezGeneId":102465906},{"hugoGeneSymbol":"MIR7113","entrezGeneId":102465669},{"hugoGeneSymbol":"MIR7114","entrezGeneId":102466223},{"hugoGeneSymbol":"MIR7150","entrezGeneId":102465688},{"hugoGeneSymbol":"MIR7151","entrezGeneId":102466814},{"hugoGeneSymbol":"MIR7152","entrezGeneId":102465689},{"hugoGeneSymbol":"MIR7153","entrezGeneId":102465690},{"hugoGeneSymbol":"MIR7154","entrezGeneId":102465691},{"hugoGeneSymbol":"MIR7155","entrezGeneId":102466815},{"hugoGeneSymbol":"MIR7156","entrezGeneId":102466995},{"hugoGeneSymbol":"MIR7157","entrezGeneId":102465692},{"hugoGeneSymbol":"MIR7158","entrezGeneId":102465693},{"hugoGeneSymbol":"MIR7159","entrezGeneId":102466816},{"hugoGeneSymbol":"MIR7160","entrezGeneId":102465695},{"hugoGeneSymbol":"MIR7161","entrezGeneId":102465694},{"hugoGeneSymbol":"MIR7162","entrezGeneId":102466227},{"hugoGeneSymbol":"MIR718","entrezGeneId":100313781},{"hugoGeneSymbol":"MIR744","entrezGeneId":100126313},{"hugoGeneSymbol":"MIR7515","entrezGeneId":102466235},{"hugoGeneSymbol":"MIR7515HG","entrezGeneId":102800314},{"hugoGeneSymbol":"MIR758","entrezGeneId":768212},{"hugoGeneSymbol":"MIR759","entrezGeneId":100313778},{"hugoGeneSymbol":"MIR760","entrezGeneId":100126348},{"hugoGeneSymbol":"MIR761","entrezGeneId":100313892},{"hugoGeneSymbol":"MIR762","entrezGeneId":100313837},{"hugoGeneSymbol":"MIR762HG","entrezGeneId":101928736},{"hugoGeneSymbol":"MIR764","entrezGeneId":100313838},{"hugoGeneSymbol":"MIR765","entrezGeneId":768220},{"hugoGeneSymbol":"MIR766","entrezGeneId":768218},{"hugoGeneSymbol":"MIR767","entrezGeneId":768215},{"hugoGeneSymbol":"MIR769","entrezGeneId":768217},{"hugoGeneSymbol":"MIR770","entrezGeneId":768222},{"hugoGeneSymbol":"MIR7702","entrezGeneId":102465800},{"hugoGeneSymbol":"MIR7703","entrezGeneId":102465801},{"hugoGeneSymbol":"MIR7704","entrezGeneId":102465802},{"hugoGeneSymbol":"MIR7705","entrezGeneId":102466854},{"hugoGeneSymbol":"MIR7706","entrezGeneId":102465803},{"hugoGeneSymbol":"MIR7843","entrezGeneId":102465832},{"hugoGeneSymbol":"MIR7844","entrezGeneId":102465834},{"hugoGeneSymbol":"MIR7845","entrezGeneId":102465835},{"hugoGeneSymbol":"MIR7846","entrezGeneId":102465836},{"hugoGeneSymbol":"MIR7847","entrezGeneId":102465993},{"hugoGeneSymbol":"MIR7848","entrezGeneId":102466865},{"hugoGeneSymbol":"MIR7849","entrezGeneId":102465837},{"hugoGeneSymbol":"MIR7850","entrezGeneId":102465838},{"hugoGeneSymbol":"MIR7851","entrezGeneId":102467003},{"hugoGeneSymbol":"MIR7852","entrezGeneId":102465839},{"hugoGeneSymbol":"MIR7853","entrezGeneId":102466866},{"hugoGeneSymbol":"MIR7854","entrezGeneId":102465840},{"hugoGeneSymbol":"MIR7855","entrezGeneId":102465841},{"hugoGeneSymbol":"MIR7856","entrezGeneId":102465842},{"hugoGeneSymbol":"MIR7973-1","entrezGeneId":102466250},{"hugoGeneSymbol":"MIR7973-2","entrezGeneId":102465855},{"hugoGeneSymbol":"MIR7974","entrezGeneId":102465856},{"hugoGeneSymbol":"MIR7975","entrezGeneId":102466872},{"hugoGeneSymbol":"MIR7976","entrezGeneId":102465857},{"hugoGeneSymbol":"MIR7977","entrezGeneId":102465858},{"hugoGeneSymbol":"MIR7978","entrezGeneId":102465859},{"hugoGeneSymbol":"MIR802","entrezGeneId":768219},{"hugoGeneSymbol":"MIR8052","entrezGeneId":102466873},{"hugoGeneSymbol":"MIR8053","entrezGeneId":102467004},{"hugoGeneSymbol":"MIR8054","entrezGeneId":102465860},{"hugoGeneSymbol":"MIR8055","entrezGeneId":102465861},{"hugoGeneSymbol":"MIR8056","entrezGeneId":102465862},{"hugoGeneSymbol":"MIR8057","entrezGeneId":102466874},{"hugoGeneSymbol":"MIR8058","entrezGeneId":102465863},{"hugoGeneSymbol":"MIR8059","entrezGeneId":102466918},{"hugoGeneSymbol":"MIR8060","entrezGeneId":102465864},{"hugoGeneSymbol":"MIR8061","entrezGeneId":102466251},{"hugoGeneSymbol":"MIR8062","entrezGeneId":102465865},{"hugoGeneSymbol":"MIR8063","entrezGeneId":102466875},{"hugoGeneSymbol":"MIR8064","entrezGeneId":102465866},{"hugoGeneSymbol":"MIR8065","entrezGeneId":102465867},{"hugoGeneSymbol":"MIR8066","entrezGeneId":102465868},{"hugoGeneSymbol":"MIR8067","entrezGeneId":102465869},{"hugoGeneSymbol":"MIR8068","entrezGeneId":102466876},{"hugoGeneSymbol":"MIR8069-1","entrezGeneId":102466252},{"hugoGeneSymbol":"MIR8069-2","entrezGeneId":103504736},{"hugoGeneSymbol":"MIR8070","entrezGeneId":102465870},{"hugoGeneSymbol":"MIR8071-1","entrezGeneId":102465871},{"hugoGeneSymbol":"MIR8071-2","entrezGeneId":102466889},{"hugoGeneSymbol":"MIR8072","entrezGeneId":102466877},{"hugoGeneSymbol":"MIR8073","entrezGeneId":102465872},{"hugoGeneSymbol":"MIR8074","entrezGeneId":102465873},{"hugoGeneSymbol":"MIR8075","entrezGeneId":102465874},{"hugoGeneSymbol":"MIR8076","entrezGeneId":102466253},{"hugoGeneSymbol":"MIR8077","entrezGeneId":102465875},{"hugoGeneSymbol":"MIR8078","entrezGeneId":102466878},{"hugoGeneSymbol":"MIR8079","entrezGeneId":102465876},{"hugoGeneSymbol":"MIR8080","entrezGeneId":102465877},{"hugoGeneSymbol":"MIR8081","entrezGeneId":102465995},{"hugoGeneSymbol":"MIR8082","entrezGeneId":102465878},{"hugoGeneSymbol":"MIR8083","entrezGeneId":102466879},{"hugoGeneSymbol":"MIR8084","entrezGeneId":102467005},{"hugoGeneSymbol":"MIR8085","entrezGeneId":102465879},{"hugoGeneSymbol":"MIR8086","entrezGeneId":102465880},{"hugoGeneSymbol":"MIR8087","entrezGeneId":102465881},{"hugoGeneSymbol":"MIR8088","entrezGeneId":102466880},{"hugoGeneSymbol":"MIR8089","entrezGeneId":102465882},{"hugoGeneSymbol":"MIR8485","entrezGeneId":103504737},{"hugoGeneSymbol":"MIR873","entrezGeneId":100126316},{"hugoGeneSymbol":"MIR874","entrezGeneId":100126343},{"hugoGeneSymbol":"MIR875","entrezGeneId":100126309},{"hugoGeneSymbol":"MIR876","entrezGeneId":100126310},{"hugoGeneSymbol":"MIR877","entrezGeneId":100126314},{"hugoGeneSymbol":"MIR885","entrezGeneId":100126334},{"hugoGeneSymbol":"MIR887","entrezGeneId":100126347},{"hugoGeneSymbol":"MIR888","entrezGeneId":100126306},{"hugoGeneSymbol":"MIR889","entrezGeneId":100126345},{"hugoGeneSymbol":"MIR890","entrezGeneId":100126303},{"hugoGeneSymbol":"MIR891A","entrezGeneId":100126341},{"hugoGeneSymbol":"MIR891B","entrezGeneId":100126304},{"hugoGeneSymbol":"MIR892A","entrezGeneId":100126342},{"hugoGeneSymbol":"MIR892B","entrezGeneId":100126307},{"hugoGeneSymbol":"MIR892C","entrezGeneId":102466721},{"hugoGeneSymbol":"MIR9-1","entrezGeneId":407046},{"hugoGeneSymbol":"MIR9-2","entrezGeneId":407047},{"hugoGeneSymbol":"MIR9-3","entrezGeneId":407051},{"hugoGeneSymbol":"MIR9-3HG","entrezGeneId":254559},{"hugoGeneSymbol":"MIR920","entrezGeneId":100126320},{"hugoGeneSymbol":"MIR921","entrezGeneId":100126349},{"hugoGeneSymbol":"MIR922","entrezGeneId":100126321},{"hugoGeneSymbol":"MIR924","entrezGeneId":100126323},{"hugoGeneSymbol":"MIR924HG","entrezGeneId":647946},{"hugoGeneSymbol":"MIR92A1","entrezGeneId":407048},{"hugoGeneSymbol":"MIR92A2","entrezGeneId":407049},{"hugoGeneSymbol":"MIR92B","entrezGeneId":693235},{"hugoGeneSymbol":"MIR93","entrezGeneId":407050},{"hugoGeneSymbol":"MIR933","entrezGeneId":100126350},{"hugoGeneSymbol":"MIR934","entrezGeneId":100126324},{"hugoGeneSymbol":"MIR935","entrezGeneId":100126325},{"hugoGeneSymbol":"MIR936","entrezGeneId":100126326},{"hugoGeneSymbol":"MIR937","entrezGeneId":100126338},{"hugoGeneSymbol":"MIR938","entrezGeneId":100126327},{"hugoGeneSymbol":"MIR939","entrezGeneId":100126351},{"hugoGeneSymbol":"MIR940","entrezGeneId":100126328},{"hugoGeneSymbol":"MIR941-1","entrezGeneId":100126329},{"hugoGeneSymbol":"MIR941-2","entrezGeneId":100126339},{"hugoGeneSymbol":"MIR941-3","entrezGeneId":100126352},{"hugoGeneSymbol":"MIR941-4","entrezGeneId":100126330},{"hugoGeneSymbol":"MIR941-5","entrezGeneId":103504732},{"hugoGeneSymbol":"MIR942","entrezGeneId":100126331},{"hugoGeneSymbol":"MIR943","entrezGeneId":100126332},{"hugoGeneSymbol":"MIR944","entrezGeneId":100126340},{"hugoGeneSymbol":"MIR95","entrezGeneId":407052},{"hugoGeneSymbol":"MIR9500","entrezGeneId":103504730},{"hugoGeneSymbol":"MIR96","entrezGeneId":407053},{"hugoGeneSymbol":"MIR98","entrezGeneId":407054},{"hugoGeneSymbol":"MIR99A","entrezGeneId":407055},{"hugoGeneSymbol":"MIR99AHG","entrezGeneId":388815},{"hugoGeneSymbol":"MIR99B","entrezGeneId":407056},{"hugoGeneSymbol":"MIRLET7A1","entrezGeneId":406881},{"hugoGeneSymbol":"MIRLET7A2","entrezGeneId":406882},{"hugoGeneSymbol":"MIRLET7A3","entrezGeneId":406883},{"hugoGeneSymbol":"MIRLET7B","entrezGeneId":406884},{"hugoGeneSymbol":"MIRLET7BHG","entrezGeneId":400931},{"hugoGeneSymbol":"MIRLET7C","entrezGeneId":406885},{"hugoGeneSymbol":"MIRLET7D","entrezGeneId":406886},{"hugoGeneSymbol":"MIRLET7DHG","entrezGeneId":158257},{"hugoGeneSymbol":"MIRLET7E","entrezGeneId":406887},{"hugoGeneSymbol":"MIRLET7F1","entrezGeneId":406888},{"hugoGeneSymbol":"MIRLET7F2","entrezGeneId":406889},{"hugoGeneSymbol":"MIRLET7G","entrezGeneId":406890},{"hugoGeneSymbol":"MIRLET7I","entrezGeneId":406891},{"hugoGeneSymbol":"MIS12","entrezGeneId":79003},{"hugoGeneSymbol":"MIS18A","entrezGeneId":54069},{"hugoGeneSymbol":"MIS18A-AS1","entrezGeneId":100874202},{"hugoGeneSymbol":"MIS18BP1","entrezGeneId":55320},{"hugoGeneSymbol":"MISP","entrezGeneId":126353},{"hugoGeneSymbol":"MISP3","entrezGeneId":113230},{"hugoGeneSymbol":"MITD1","entrezGeneId":129531},{"hugoGeneSymbol":"MITF","entrezGeneId":4286},{"hugoGeneSymbol":"MIXL1","entrezGeneId":83881},{"hugoGeneSymbol":"MKI67","entrezGeneId":4288},{"hugoGeneSymbol":"MKI67P1","entrezGeneId":100271918},{"hugoGeneSymbol":"MKKS","entrezGeneId":8195},{"hugoGeneSymbol":"MKL1","entrezGeneId":57591},{"hugoGeneSymbol":"MKL2","entrezGeneId":57496},{"hugoGeneSymbol":"MKLN1","entrezGeneId":4289},{"hugoGeneSymbol":"MKLN1-AS","entrezGeneId":100506881},{"hugoGeneSymbol":"MKNK1","entrezGeneId":8569},{"hugoGeneSymbol":"MKNK1-AS1","entrezGeneId":100507423},{"hugoGeneSymbol":"MKNK2","entrezGeneId":2872},{"hugoGeneSymbol":"MKNK2P1","entrezGeneId":389948},{"hugoGeneSymbol":"MKRN1","entrezGeneId":23608},{"hugoGeneSymbol":"MKRN2","entrezGeneId":23609},{"hugoGeneSymbol":"MKRN2OS","entrezGeneId":100129480},{"hugoGeneSymbol":"MKRN3","entrezGeneId":7681},{"hugoGeneSymbol":"MKRN3-AS1","entrezGeneId":10108},{"hugoGeneSymbol":"MKRN4P","entrezGeneId":7682},{"hugoGeneSymbol":"MKRN5P","entrezGeneId":7683},{"hugoGeneSymbol":"MKRN6P","entrezGeneId":23610},{"hugoGeneSymbol":"MKRN7P","entrezGeneId":7686},{"hugoGeneSymbol":"MKRN8P","entrezGeneId":391033},{"hugoGeneSymbol":"MKRN9P","entrezGeneId":400058},{"hugoGeneSymbol":"MKS1","entrezGeneId":54903},{"hugoGeneSymbol":"MKX","entrezGeneId":283078},{"hugoGeneSymbol":"MKX-AS1","entrezGeneId":101929202},{"hugoGeneSymbol":"MLANA","entrezGeneId":2315},{"hugoGeneSymbol":"MLC1","entrezGeneId":23209},{"hugoGeneSymbol":"MLEC","entrezGeneId":9761},{"hugoGeneSymbol":"MLECP1","entrezGeneId":106480317},{"hugoGeneSymbol":"MLF1","entrezGeneId":4291},{"hugoGeneSymbol":"MLF2","entrezGeneId":8079},{"hugoGeneSymbol":"MLH1","entrezGeneId":4292},{"hugoGeneSymbol":"MLH3","entrezGeneId":27030},{"hugoGeneSymbol":"MLIP","entrezGeneId":90523},{"hugoGeneSymbol":"MLIP-AS1","entrezGeneId":100873951},{"hugoGeneSymbol":"MLIP-IT1","entrezGeneId":100874282},{"hugoGeneSymbol":"MLKL","entrezGeneId":197259},{"hugoGeneSymbol":"MLLT1","entrezGeneId":4298},{"hugoGeneSymbol":"MLLT10","entrezGeneId":8028},{"hugoGeneSymbol":"MLLT10P1","entrezGeneId":140678},{"hugoGeneSymbol":"MLLT10P2","entrezGeneId":106480724},{"hugoGeneSymbol":"MLLT11","entrezGeneId":10962},{"hugoGeneSymbol":"MLLT3","entrezGeneId":4300},{"hugoGeneSymbol":"MLLT6","entrezGeneId":4302},{"hugoGeneSymbol":"MLN","entrezGeneId":4295},{"hugoGeneSymbol":"MLNR","entrezGeneId":2862},{"hugoGeneSymbol":"MLPH","entrezGeneId":79083},{"hugoGeneSymbol":"MLRL","entrezGeneId":8201},{"hugoGeneSymbol":"MLSM7","entrezGeneId":100820631},{"hugoGeneSymbol":"MLST8","entrezGeneId":64223},{"hugoGeneSymbol":"MLVI2","entrezGeneId":4309},{"hugoGeneSymbol":"MLVI4","entrezGeneId":66001},{"hugoGeneSymbol":"MLX","entrezGeneId":6945},{"hugoGeneSymbol":"MLXIP","entrezGeneId":22877},{"hugoGeneSymbol":"MLXIPL","entrezGeneId":51085},{"hugoGeneSymbol":"MLYCD","entrezGeneId":23417},{"hugoGeneSymbol":"MMAA","entrezGeneId":166785},{"hugoGeneSymbol":"MMAB","entrezGeneId":326625},{"hugoGeneSymbol":"MMACHC","entrezGeneId":25974},{"hugoGeneSymbol":"MMADHC","entrezGeneId":27249},{"hugoGeneSymbol":"MMD","entrezGeneId":23531},{"hugoGeneSymbol":"MMD2","entrezGeneId":221938},{"hugoGeneSymbol":"MMDFS","entrezGeneId":80767},{"hugoGeneSymbol":"MMDK","entrezGeneId":10305},{"hugoGeneSymbol":"MME","entrezGeneId":4311},{"hugoGeneSymbol":"MME-AS1","entrezGeneId":100873918},{"hugoGeneSymbol":"MMEDF","entrezGeneId":260403},{"hugoGeneSymbol":"MMEL1","entrezGeneId":79258},{"hugoGeneSymbol":"MMGT1","entrezGeneId":93380},{"hugoGeneSymbol":"MMP1","entrezGeneId":4312},{"hugoGeneSymbol":"MMP10","entrezGeneId":4319},{"hugoGeneSymbol":"MMP11","entrezGeneId":4320},{"hugoGeneSymbol":"MMP12","entrezGeneId":4321},{"hugoGeneSymbol":"MMP13","entrezGeneId":4322},{"hugoGeneSymbol":"MMP14","entrezGeneId":4323},{"hugoGeneSymbol":"MMP15","entrezGeneId":4324},{"hugoGeneSymbol":"MMP16","entrezGeneId":4325},{"hugoGeneSymbol":"MMP17","entrezGeneId":4326},{"hugoGeneSymbol":"MMP19","entrezGeneId":4327},{"hugoGeneSymbol":"MMP2","entrezGeneId":4313},{"hugoGeneSymbol":"MMP2-AS1","entrezGeneId":107984884},{"hugoGeneSymbol":"MMP20","entrezGeneId":9313},{"hugoGeneSymbol":"MMP21","entrezGeneId":118856},{"hugoGeneSymbol":"MMP23A","entrezGeneId":8511},{"hugoGeneSymbol":"MMP23B","entrezGeneId":8510},{"hugoGeneSymbol":"MMP24","entrezGeneId":10893},{"hugoGeneSymbol":"MMP24-AS1-EDEM2","entrezGeneId":111089941},{"hugoGeneSymbol":"MMP24OS","entrezGeneId":101410538},{"hugoGeneSymbol":"MMP25","entrezGeneId":64386},{"hugoGeneSymbol":"MMP25-AS1","entrezGeneId":100507419},{"hugoGeneSymbol":"MMP26","entrezGeneId":56547},{"hugoGeneSymbol":"MMP27","entrezGeneId":64066},{"hugoGeneSymbol":"MMP28","entrezGeneId":79148},{"hugoGeneSymbol":"MMP3","entrezGeneId":4314},{"hugoGeneSymbol":"MMP7","entrezGeneId":4316},{"hugoGeneSymbol":"MMP8","entrezGeneId":4317},{"hugoGeneSymbol":"MMP9","entrezGeneId":4318},{"hugoGeneSymbol":"MMRFCGU","entrezGeneId":100529147},{"hugoGeneSymbol":"MMRN1","entrezGeneId":22915},{"hugoGeneSymbol":"MMRN2","entrezGeneId":79812},{"hugoGeneSymbol":"MMS","entrezGeneId":338340},{"hugoGeneSymbol":"MMS19","entrezGeneId":64210},{"hugoGeneSymbol":"MMS22L","entrezGeneId":253714},{"hugoGeneSymbol":"MMVP1","entrezGeneId":50951},{"hugoGeneSymbol":"MMVP2","entrezGeneId":352956},{"hugoGeneSymbol":"MMVP3","entrezGeneId":100034705},{"hugoGeneSymbol":"MN1","entrezGeneId":4330},{"hugoGeneSymbol":"MNAT1","entrezGeneId":4331},{"hugoGeneSymbol":"MND1","entrezGeneId":84057},{"hugoGeneSymbol":"MNDA","entrezGeneId":4332},{"hugoGeneSymbol":"MNDEC","entrezGeneId":100188855},{"hugoGeneSymbol":"MNG2","entrezGeneId":59081},{"hugoGeneSymbol":"MNG3","entrezGeneId":94337},{"hugoGeneSymbol":"MNRI","entrezGeneId":117192},{"hugoGeneSymbol":"MNS1","entrezGeneId":55329},{"hugoGeneSymbol":"MNS16A","entrezGeneId":110806265},{"hugoGeneSymbol":"MNT","entrezGeneId":4335},{"hugoGeneSymbol":"MNX1","entrezGeneId":3110},{"hugoGeneSymbol":"MNX1-AS1","entrezGeneId":645249},{"hugoGeneSymbol":"MNX1-AS2","entrezGeneId":105375606},{"hugoGeneSymbol":"MOAP1","entrezGeneId":64112},{"hugoGeneSymbol":"MOB1A","entrezGeneId":55233},{"hugoGeneSymbol":"MOB1AP1","entrezGeneId":100873874},{"hugoGeneSymbol":"MOB1AP2","entrezGeneId":100873854},{"hugoGeneSymbol":"MOB1B","entrezGeneId":92597},{"hugoGeneSymbol":"MOB2","entrezGeneId":81532},{"hugoGeneSymbol":"MOB3A","entrezGeneId":126308},{"hugoGeneSymbol":"MOB3B","entrezGeneId":79817},{"hugoGeneSymbol":"MOB3C","entrezGeneId":148932},{"hugoGeneSymbol":"MOB4","entrezGeneId":25843},{"hugoGeneSymbol":"MOBP","entrezGeneId":4336},{"hugoGeneSymbol":"MOCOS","entrezGeneId":55034},{"hugoGeneSymbol":"MOCS1","entrezGeneId":4337},{"hugoGeneSymbol":"MOCS1P1","entrezGeneId":27187},{"hugoGeneSymbol":"MOCS2","entrezGeneId":4338},{"hugoGeneSymbol":"MOCS3","entrezGeneId":27304},{"hugoGeneSymbol":"MOCS3P1","entrezGeneId":326305},{"hugoGeneSymbol":"MOCS3P2","entrezGeneId":100420520},{"hugoGeneSymbol":"MOG","entrezGeneId":4340},{"hugoGeneSymbol":"MOGAT1","entrezGeneId":116255},{"hugoGeneSymbol":"MOGAT2","entrezGeneId":80168},{"hugoGeneSymbol":"MOGAT3","entrezGeneId":346606},{"hugoGeneSymbol":"MOGS","entrezGeneId":7841},{"hugoGeneSymbol":"MOK","entrezGeneId":5891},{"hugoGeneSymbol":"MON1A","entrezGeneId":84315},{"hugoGeneSymbol":"MON1B","entrezGeneId":22879},{"hugoGeneSymbol":"MON2","entrezGeneId":23041},{"hugoGeneSymbol":"MORC1","entrezGeneId":27136},{"hugoGeneSymbol":"MORC1-AS1","entrezGeneId":100506506},{"hugoGeneSymbol":"MORC2","entrezGeneId":22880},{"hugoGeneSymbol":"MORC2-AS1","entrezGeneId":150291},{"hugoGeneSymbol":"MORC3","entrezGeneId":23515},{"hugoGeneSymbol":"MORC4","entrezGeneId":79710},{"hugoGeneSymbol":"MORF4","entrezGeneId":10934},{"hugoGeneSymbol":"MORF4L1","entrezGeneId":10933},{"hugoGeneSymbol":"MORF4L1P1","entrezGeneId":326591},{"hugoGeneSymbol":"MORF4L1P2","entrezGeneId":326594},{"hugoGeneSymbol":"MORF4L1P3","entrezGeneId":326593},{"hugoGeneSymbol":"MORF4L1P4","entrezGeneId":100420030},{"hugoGeneSymbol":"MORF4L1P5","entrezGeneId":100129288},{"hugoGeneSymbol":"MORF4L1P6","entrezGeneId":100873878},{"hugoGeneSymbol":"MORF4L1P7","entrezGeneId":100130637},{"hugoGeneSymbol":"MORF4L2","entrezGeneId":9643},{"hugoGeneSymbol":"MORF4L2-AS1","entrezGeneId":340544},{"hugoGeneSymbol":"MORF4L2P1","entrezGeneId":643915},{"hugoGeneSymbol":"MORN1","entrezGeneId":79906},{"hugoGeneSymbol":"MORN2","entrezGeneId":729967},{"hugoGeneSymbol":"MORN3","entrezGeneId":283385},{"hugoGeneSymbol":"MORN4","entrezGeneId":118812},{"hugoGeneSymbol":"MORN5","entrezGeneId":254956},{"hugoGeneSymbol":"MOS","entrezGeneId":4342},{"hugoGeneSymbol":"MOSMO","entrezGeneId":730094},{"hugoGeneSymbol":"MOSPD1","entrezGeneId":56180},{"hugoGeneSymbol":"MOSPD2","entrezGeneId":158747},{"hugoGeneSymbol":"MOSPD3","entrezGeneId":64598},{"hugoGeneSymbol":"MOV10","entrezGeneId":4343},{"hugoGeneSymbol":"MOV10L1","entrezGeneId":54456},{"hugoGeneSymbol":"MOXD1","entrezGeneId":26002},{"hugoGeneSymbol":"MOXD2P","entrezGeneId":100289017},{"hugoGeneSymbol":"MPC1","entrezGeneId":51660},{"hugoGeneSymbol":"MPC1L","entrezGeneId":347411},{"hugoGeneSymbol":"MPC2","entrezGeneId":25874},{"hugoGeneSymbol":"MPD3","entrezGeneId":780920},{"hugoGeneSymbol":"MPDU1","entrezGeneId":9526},{"hugoGeneSymbol":"MPDZ","entrezGeneId":8777},{"hugoGeneSymbol":"MPEG1","entrezGeneId":219972},{"hugoGeneSymbol":"MPG","entrezGeneId":4350},{"hugoGeneSymbol":"MPHOSPH10","entrezGeneId":10199},{"hugoGeneSymbol":"MPHOSPH6","entrezGeneId":10200},{"hugoGeneSymbol":"MPHOSPH8","entrezGeneId":54737},{"hugoGeneSymbol":"MPHOSPH9","entrezGeneId":10198},{"hugoGeneSymbol":"MPI","entrezGeneId":4351},{"hugoGeneSymbol":"MPIG6B","entrezGeneId":80739},{"hugoGeneSymbol":"MPL","entrezGeneId":4352},{"hugoGeneSymbol":"MPLKIP","entrezGeneId":136647},{"hugoGeneSymbol":"MPND","entrezGeneId":84954},{"hugoGeneSymbol":"MPO","entrezGeneId":4353},{"hugoGeneSymbol":"MPP1","entrezGeneId":4354},{"hugoGeneSymbol":"MPP2","entrezGeneId":4355},{"hugoGeneSymbol":"MPP3","entrezGeneId":4356},{"hugoGeneSymbol":"MPP4","entrezGeneId":58538},{"hugoGeneSymbol":"MPP5","entrezGeneId":64398},{"hugoGeneSymbol":"MPP6","entrezGeneId":51678},{"hugoGeneSymbol":"MPP7","entrezGeneId":143098},{"hugoGeneSymbol":"MPPE1","entrezGeneId":65258},{"hugoGeneSymbol":"MPPE1P1","entrezGeneId":390501},{"hugoGeneSymbol":"MPPED1","entrezGeneId":758},{"hugoGeneSymbol":"MPPED2","entrezGeneId":744},{"hugoGeneSymbol":"MPRIP","entrezGeneId":23164},{"hugoGeneSymbol":"MPRIP-AS1","entrezGeneId":100874529},{"hugoGeneSymbol":"MPRIPP1","entrezGeneId":100421374},{"hugoGeneSymbol":"MPST","entrezGeneId":4357},{"hugoGeneSymbol":"MPTX1","entrezGeneId":649458},{"hugoGeneSymbol":"MPV17","entrezGeneId":4358},{"hugoGeneSymbol":"MPV17L","entrezGeneId":255027},{"hugoGeneSymbol":"MPV17L2","entrezGeneId":84769},{"hugoGeneSymbol":"MPVQTL1","entrezGeneId":100271867},{"hugoGeneSymbol":"MPVQTL2","entrezGeneId":100271868},{"hugoGeneSymbol":"MPVQTL3","entrezGeneId":100271869},{"hugoGeneSymbol":"MPVQTL4","entrezGeneId":100887753},{"hugoGeneSymbol":"MPVQTL5","entrezGeneId":100887752},{"hugoGeneSymbol":"MPVQTL6","entrezGeneId":100887751},{"hugoGeneSymbol":"MPZ","entrezGeneId":4359},{"hugoGeneSymbol":"MPZL1","entrezGeneId":9019},{"hugoGeneSymbol":"MPZL2","entrezGeneId":10205},{"hugoGeneSymbol":"MPZL3","entrezGeneId":196264},{"hugoGeneSymbol":"MR1","entrezGeneId":3140},{"hugoGeneSymbol":"MR1P1","entrezGeneId":100129575},{"hugoGeneSymbol":"MRAP","entrezGeneId":56246},{"hugoGeneSymbol":"MRAP2","entrezGeneId":112609},{"hugoGeneSymbol":"MRAS","entrezGeneId":22808},{"hugoGeneSymbol":"MRBC","entrezGeneId":7960},{"hugoGeneSymbol":"MRC1","entrezGeneId":4360},{"hugoGeneSymbol":"MRC2","entrezGeneId":9902},{"hugoGeneSymbol":"MRD2","entrezGeneId":106865367},{"hugoGeneSymbol":"MRE11","entrezGeneId":4361},{"hugoGeneSymbol":"MRE11P1","entrezGeneId":4362},{"hugoGeneSymbol":"MREG","entrezGeneId":55686},{"hugoGeneSymbol":"MREGP1","entrezGeneId":106480304},{"hugoGeneSymbol":"MRFAP1","entrezGeneId":93621},{"hugoGeneSymbol":"MRFAP1L1","entrezGeneId":114932},{"hugoGeneSymbol":"MRGBP","entrezGeneId":55257},{"hugoGeneSymbol":"MRGPRD","entrezGeneId":116512},{"hugoGeneSymbol":"MRGPRE","entrezGeneId":116534},{"hugoGeneSymbol":"MRGPRF","entrezGeneId":116535},{"hugoGeneSymbol":"MRGPRF-AS1","entrezGeneId":101928200},{"hugoGeneSymbol":"MRGPRG","entrezGeneId":386746},{"hugoGeneSymbol":"MRGPRG-AS1","entrezGeneId":283303},{"hugoGeneSymbol":"MRGPRX1","entrezGeneId":259249},{"hugoGeneSymbol":"MRGPRX2","entrezGeneId":117194},{"hugoGeneSymbol":"MRGPRX3","entrezGeneId":117195},{"hugoGeneSymbol":"MRGPRX4","entrezGeneId":117196},{"hugoGeneSymbol":"MRI1","entrezGeneId":84245},{"hugoGeneSymbol":"MRLN","entrezGeneId":100507027},{"hugoGeneSymbol":"MRM1","entrezGeneId":79922},{"hugoGeneSymbol":"MRM2","entrezGeneId":29960},{"hugoGeneSymbol":"MRM3","entrezGeneId":55178},{"hugoGeneSymbol":"MRNIP","entrezGeneId":51149},{"hugoGeneSymbol":"MRO","entrezGeneId":83876},{"hugoGeneSymbol":"MROH1","entrezGeneId":727957},{"hugoGeneSymbol":"MROH2A","entrezGeneId":339766},{"hugoGeneSymbol":"MROH2B","entrezGeneId":133558},{"hugoGeneSymbol":"MROH3P","entrezGeneId":647215},{"hugoGeneSymbol":"MROH4P","entrezGeneId":101154686},{"hugoGeneSymbol":"MROH5","entrezGeneId":389690},{"hugoGeneSymbol":"MROH6","entrezGeneId":642475},{"hugoGeneSymbol":"MROH7","entrezGeneId":374977},{"hugoGeneSymbol":"MROH7-TTC4","entrezGeneId":100527960},{"hugoGeneSymbol":"MROH8","entrezGeneId":140699},{"hugoGeneSymbol":"MROH9","entrezGeneId":80133},{"hugoGeneSymbol":"MROS","entrezGeneId":8011},{"hugoGeneSymbol":"MRPL1","entrezGeneId":65008},{"hugoGeneSymbol":"MRPL10","entrezGeneId":124995},{"hugoGeneSymbol":"MRPL11","entrezGeneId":65003},{"hugoGeneSymbol":"MRPL11P2","entrezGeneId":134008},{"hugoGeneSymbol":"MRPL11P3","entrezGeneId":359734},{"hugoGeneSymbol":"MRPL12","entrezGeneId":6182},{"hugoGeneSymbol":"MRPL13","entrezGeneId":28998},{"hugoGeneSymbol":"MRPL14","entrezGeneId":64928},{"hugoGeneSymbol":"MRPL14P1","entrezGeneId":359735},{"hugoGeneSymbol":"MRPL15","entrezGeneId":29088},{"hugoGeneSymbol":"MRPL15P1","entrezGeneId":359736},{"hugoGeneSymbol":"MRPL16","entrezGeneId":54948},{"hugoGeneSymbol":"MRPL17","entrezGeneId":63875},{"hugoGeneSymbol":"MRPL18","entrezGeneId":29074},{"hugoGeneSymbol":"MRPL19","entrezGeneId":9801},{"hugoGeneSymbol":"MRPL2","entrezGeneId":51069},{"hugoGeneSymbol":"MRPL20","entrezGeneId":55052},{"hugoGeneSymbol":"MRPL20P1","entrezGeneId":359737},{"hugoGeneSymbol":"MRPL21","entrezGeneId":219927},{"hugoGeneSymbol":"MRPL22","entrezGeneId":29093},{"hugoGeneSymbol":"MRPL22P1","entrezGeneId":359738},{"hugoGeneSymbol":"MRPL23","entrezGeneId":6150},{"hugoGeneSymbol":"MRPL23-AS1","entrezGeneId":100133545},{"hugoGeneSymbol":"MRPL24","entrezGeneId":79590},{"hugoGeneSymbol":"MRPL27","entrezGeneId":51264},{"hugoGeneSymbol":"MRPL28","entrezGeneId":10573},{"hugoGeneSymbol":"MRPL2P1","entrezGeneId":347894},{"hugoGeneSymbol":"MRPL3","entrezGeneId":11222},{"hugoGeneSymbol":"MRPL30","entrezGeneId":51263},{"hugoGeneSymbol":"MRPL30P1","entrezGeneId":359740},{"hugoGeneSymbol":"MRPL30P2","entrezGeneId":359817},{"hugoGeneSymbol":"MRPL32","entrezGeneId":64983},{"hugoGeneSymbol":"MRPL32P1","entrezGeneId":359741},{"hugoGeneSymbol":"MRPL33","entrezGeneId":9553},{"hugoGeneSymbol":"MRPL34","entrezGeneId":64981},{"hugoGeneSymbol":"MRPL35","entrezGeneId":51318},{"hugoGeneSymbol":"MRPL35P1","entrezGeneId":359742},{"hugoGeneSymbol":"MRPL35P2","entrezGeneId":359743},{"hugoGeneSymbol":"MRPL35P3","entrezGeneId":359744},{"hugoGeneSymbol":"MRPL35P4","entrezGeneId":359745},{"hugoGeneSymbol":"MRPL36","entrezGeneId":64979},{"hugoGeneSymbol":"MRPL36P1","entrezGeneId":285003},{"hugoGeneSymbol":"MRPL37","entrezGeneId":51253},{"hugoGeneSymbol":"MRPL37P1","entrezGeneId":100420950},{"hugoGeneSymbol":"MRPL38","entrezGeneId":64978},{"hugoGeneSymbol":"MRPL39","entrezGeneId":54148},{"hugoGeneSymbol":"MRPL3P1","entrezGeneId":359739},{"hugoGeneSymbol":"MRPL4","entrezGeneId":51073},{"hugoGeneSymbol":"MRPL40","entrezGeneId":64976},{"hugoGeneSymbol":"MRPL40P1","entrezGeneId":645328},{"hugoGeneSymbol":"MRPL41","entrezGeneId":64975},{"hugoGeneSymbol":"MRPL42","entrezGeneId":28977},{"hugoGeneSymbol":"MRPL42P1","entrezGeneId":285415},{"hugoGeneSymbol":"MRPL42P2","entrezGeneId":346116},{"hugoGeneSymbol":"MRPL42P3","entrezGeneId":359746},{"hugoGeneSymbol":"MRPL42P4","entrezGeneId":346470},{"hugoGeneSymbol":"MRPL42P5","entrezGeneId":359821},{"hugoGeneSymbol":"MRPL42P6","entrezGeneId":106480794},{"hugoGeneSymbol":"MRPL43","entrezGeneId":84545},{"hugoGeneSymbol":"MRPL44","entrezGeneId":65080},{"hugoGeneSymbol":"MRPL45","entrezGeneId":84311},{"hugoGeneSymbol":"MRPL45P1","entrezGeneId":359747},{"hugoGeneSymbol":"MRPL45P2","entrezGeneId":653479},{"hugoGeneSymbol":"MRPL46","entrezGeneId":26589},{"hugoGeneSymbol":"MRPL47","entrezGeneId":57129},{"hugoGeneSymbol":"MRPL48","entrezGeneId":51642},{"hugoGeneSymbol":"MRPL48P1","entrezGeneId":221717},{"hugoGeneSymbol":"MRPL49","entrezGeneId":740},{"hugoGeneSymbol":"MRPL49P1","entrezGeneId":359748},{"hugoGeneSymbol":"MRPL49P2","entrezGeneId":346711},{"hugoGeneSymbol":"MRPL50","entrezGeneId":54534},{"hugoGeneSymbol":"MRPL50P1","entrezGeneId":351143},{"hugoGeneSymbol":"MRPL50P2","entrezGeneId":359749},{"hugoGeneSymbol":"MRPL50P3","entrezGeneId":359750},{"hugoGeneSymbol":"MRPL50P4","entrezGeneId":359751},{"hugoGeneSymbol":"MRPL51","entrezGeneId":51258},{"hugoGeneSymbol":"MRPL51P1","entrezGeneId":351773},{"hugoGeneSymbol":"MRPL51P2","entrezGeneId":343819},{"hugoGeneSymbol":"MRPL52","entrezGeneId":122704},{"hugoGeneSymbol":"MRPL53","entrezGeneId":116540},{"hugoGeneSymbol":"MRPL53P1","entrezGeneId":359752},{"hugoGeneSymbol":"MRPL54","entrezGeneId":116541},{"hugoGeneSymbol":"MRPL55","entrezGeneId":128308},{"hugoGeneSymbol":"MRPL57","entrezGeneId":78988},{"hugoGeneSymbol":"MRPL57P1","entrezGeneId":126581},{"hugoGeneSymbol":"MRPL57P10","entrezGeneId":347587},{"hugoGeneSymbol":"MRPL57P2","entrezGeneId":359729},{"hugoGeneSymbol":"MRPL57P3","entrezGeneId":359730},{"hugoGeneSymbol":"MRPL57P6","entrezGeneId":134490},{"hugoGeneSymbol":"MRPL57P7","entrezGeneId":359731},{"hugoGeneSymbol":"MRPL57P8","entrezGeneId":359732},{"hugoGeneSymbol":"MRPL57P9","entrezGeneId":359733},{"hugoGeneSymbol":"MRPL58","entrezGeneId":3396},{"hugoGeneSymbol":"MRPL9","entrezGeneId":65005},{"hugoGeneSymbol":"MRPL9P1","entrezGeneId":137290},{"hugoGeneSymbol":"MRPS10","entrezGeneId":55173},{"hugoGeneSymbol":"MRPS10P1","entrezGeneId":359753},{"hugoGeneSymbol":"MRPS10P2","entrezGeneId":359802},{"hugoGeneSymbol":"MRPS10P5","entrezGeneId":359754},{"hugoGeneSymbol":"MRPS11","entrezGeneId":64963},{"hugoGeneSymbol":"MRPS11P1","entrezGeneId":128774},{"hugoGeneSymbol":"MRPS12","entrezGeneId":6183},{"hugoGeneSymbol":"MRPS14","entrezGeneId":63931},{"hugoGeneSymbol":"MRPS15","entrezGeneId":64960},{"hugoGeneSymbol":"MRPS15P1","entrezGeneId":359755},{"hugoGeneSymbol":"MRPS15P2","entrezGeneId":359756},{"hugoGeneSymbol":"MRPS16","entrezGeneId":51021},{"hugoGeneSymbol":"MRPS16P1","entrezGeneId":137406},{"hugoGeneSymbol":"MRPS16P2","entrezGeneId":128609},{"hugoGeneSymbol":"MRPS16P3","entrezGeneId":338388},{"hugoGeneSymbol":"MRPS17","entrezGeneId":51373},{"hugoGeneSymbol":"MRPS17P1","entrezGeneId":359803},{"hugoGeneSymbol":"MRPS17P3","entrezGeneId":359757},{"hugoGeneSymbol":"MRPS17P5","entrezGeneId":359758},{"hugoGeneSymbol":"MRPS17P6","entrezGeneId":359759},{"hugoGeneSymbol":"MRPS17P7","entrezGeneId":342776},{"hugoGeneSymbol":"MRPS17P9","entrezGeneId":359760},{"hugoGeneSymbol":"MRPS18A","entrezGeneId":55168},{"hugoGeneSymbol":"MRPS18AP1","entrezGeneId":359761},{"hugoGeneSymbol":"MRPS18B","entrezGeneId":28973},{"hugoGeneSymbol":"MRPS18BP1","entrezGeneId":359762},{"hugoGeneSymbol":"MRPS18BP2","entrezGeneId":359763},{"hugoGeneSymbol":"MRPS18C","entrezGeneId":51023},{"hugoGeneSymbol":"MRPS18CP2","entrezGeneId":286043},{"hugoGeneSymbol":"MRPS18CP3","entrezGeneId":359764},{"hugoGeneSymbol":"MRPS18CP4","entrezGeneId":349842},{"hugoGeneSymbol":"MRPS18CP5","entrezGeneId":359765},{"hugoGeneSymbol":"MRPS18CP6","entrezGeneId":343901},{"hugoGeneSymbol":"MRPS2","entrezGeneId":51116},{"hugoGeneSymbol":"MRPS21","entrezGeneId":54460},{"hugoGeneSymbol":"MRPS21P1","entrezGeneId":199900},{"hugoGeneSymbol":"MRPS21P2","entrezGeneId":359766},{"hugoGeneSymbol":"MRPS21P3","entrezGeneId":359767},{"hugoGeneSymbol":"MRPS21P4","entrezGeneId":359768},{"hugoGeneSymbol":"MRPS21P5","entrezGeneId":359769},{"hugoGeneSymbol":"MRPS21P6","entrezGeneId":359770},{"hugoGeneSymbol":"MRPS21P7","entrezGeneId":359771},{"hugoGeneSymbol":"MRPS21P8","entrezGeneId":350297},{"hugoGeneSymbol":"MRPS21P9","entrezGeneId":359772},{"hugoGeneSymbol":"MRPS22","entrezGeneId":56945},{"hugoGeneSymbol":"MRPS22P1","entrezGeneId":359773},{"hugoGeneSymbol":"MRPS23","entrezGeneId":51649},{"hugoGeneSymbol":"MRPS23P1","entrezGeneId":352290},{"hugoGeneSymbol":"MRPS24","entrezGeneId":64951},{"hugoGeneSymbol":"MRPS24P1","entrezGeneId":338389},{"hugoGeneSymbol":"MRPS25","entrezGeneId":64432},{"hugoGeneSymbol":"MRPS25P1","entrezGeneId":338390},{"hugoGeneSymbol":"MRPS26","entrezGeneId":64949},{"hugoGeneSymbol":"MRPS27","entrezGeneId":23107},{"hugoGeneSymbol":"MRPS28","entrezGeneId":28957},{"hugoGeneSymbol":"MRPS30","entrezGeneId":10884},{"hugoGeneSymbol":"MRPS30-DT","entrezGeneId":100506674},{"hugoGeneSymbol":"MRPS31","entrezGeneId":10240},{"hugoGeneSymbol":"MRPS31P1","entrezGeneId":351449},{"hugoGeneSymbol":"MRPS31P2","entrezGeneId":341757},{"hugoGeneSymbol":"MRPS31P4","entrezGeneId":100885866},{"hugoGeneSymbol":"MRPS31P5","entrezGeneId":100887750},{"hugoGeneSymbol":"MRPS33","entrezGeneId":51650},{"hugoGeneSymbol":"MRPS33P1","entrezGeneId":148330},{"hugoGeneSymbol":"MRPS33P2","entrezGeneId":359775},{"hugoGeneSymbol":"MRPS33P3","entrezGeneId":359776},{"hugoGeneSymbol":"MRPS33P4","entrezGeneId":359777},{"hugoGeneSymbol":"MRPS34","entrezGeneId":65993},{"hugoGeneSymbol":"MRPS35","entrezGeneId":60488},{"hugoGeneSymbol":"MRPS35P1","entrezGeneId":339910},{"hugoGeneSymbol":"MRPS35P2","entrezGeneId":359778},{"hugoGeneSymbol":"MRPS35P3","entrezGeneId":359779},{"hugoGeneSymbol":"MRPS36","entrezGeneId":92259},{"hugoGeneSymbol":"MRPS36P1","entrezGeneId":347705},{"hugoGeneSymbol":"MRPS36P2","entrezGeneId":347706},{"hugoGeneSymbol":"MRPS36P3","entrezGeneId":347704},{"hugoGeneSymbol":"MRPS36P4","entrezGeneId":347702},{"hugoGeneSymbol":"MRPS36P5","entrezGeneId":347703},{"hugoGeneSymbol":"MRPS36P6","entrezGeneId":347707},{"hugoGeneSymbol":"MRPS5","entrezGeneId":64969},{"hugoGeneSymbol":"MRPS5P3","entrezGeneId":133615},{"hugoGeneSymbol":"MRPS5P4","entrezGeneId":359797},{"hugoGeneSymbol":"MRPS6","entrezGeneId":64968},{"hugoGeneSymbol":"MRPS6P1","entrezGeneId":359780},{"hugoGeneSymbol":"MRPS6P2","entrezGeneId":359781},{"hugoGeneSymbol":"MRPS6P4","entrezGeneId":359782},{"hugoGeneSymbol":"MRPS7","entrezGeneId":51081},{"hugoGeneSymbol":"MRPS7P1","entrezGeneId":359783},{"hugoGeneSymbol":"MRPS7P2","entrezGeneId":341469},{"hugoGeneSymbol":"MRPS9","entrezGeneId":64965},{"hugoGeneSymbol":"MRRF","entrezGeneId":92399},{"hugoGeneSymbol":"MRRFP1","entrezGeneId":286423},{"hugoGeneSymbol":"MRS2","entrezGeneId":57380},{"hugoGeneSymbol":"MRS2P1","entrezGeneId":100130448},{"hugoGeneSymbol":"MRS2P2","entrezGeneId":729633},{"hugoGeneSymbol":"MRSD","entrezGeneId":4364},{"hugoGeneSymbol":"MRSS","entrezGeneId":114890},{"hugoGeneSymbol":"MRST","entrezGeneId":8126},{"hugoGeneSymbol":"MRT10","entrezGeneId":100101425},{"hugoGeneSymbol":"MRT11","entrezGeneId":100101426},{"hugoGeneSymbol":"MRT16","entrezGeneId":100689014},{"hugoGeneSymbol":"MRT17","entrezGeneId":100689013},{"hugoGeneSymbol":"MRT18","entrezGeneId":109729096},{"hugoGeneSymbol":"MRT19","entrezGeneId":100852395},{"hugoGeneSymbol":"MRT20","entrezGeneId":109729109},{"hugoGeneSymbol":"MRT22","entrezGeneId":109729110},{"hugoGeneSymbol":"MRT23","entrezGeneId":100852398},{"hugoGeneSymbol":"MRT24","entrezGeneId":100852402},{"hugoGeneSymbol":"MRT25","entrezGeneId":100852403},{"hugoGeneSymbol":"MRT26","entrezGeneId":109729097},{"hugoGeneSymbol":"MRT27","entrezGeneId":100852397},{"hugoGeneSymbol":"MRT28","entrezGeneId":100852396},{"hugoGeneSymbol":"MRT29","entrezGeneId":100852393},{"hugoGeneSymbol":"MRT30","entrezGeneId":100852401},{"hugoGeneSymbol":"MRT31","entrezGeneId":100852399},{"hugoGeneSymbol":"MRT32","entrezGeneId":100852400},{"hugoGeneSymbol":"MRT33","entrezGeneId":100852394},{"hugoGeneSymbol":"MRT35","entrezGeneId":101409266},{"hugoGeneSymbol":"MRT4","entrezGeneId":100009675},{"hugoGeneSymbol":"MRT8","entrezGeneId":100101423},{"hugoGeneSymbol":"MRT9","entrezGeneId":100101424},{"hugoGeneSymbol":"MRTO4","entrezGeneId":51154},{"hugoGeneSymbol":"MRVI1","entrezGeneId":10335},{"hugoGeneSymbol":"MRVI1-AS1","entrezGeneId":100129827},{"hugoGeneSymbol":"MRX11","entrezGeneId":4375},{"hugoGeneSymbol":"MRX14","entrezGeneId":4378},{"hugoGeneSymbol":"MRX15","entrezGeneId":4379},{"hugoGeneSymbol":"MRX17","entrezGeneId":4381},{"hugoGeneSymbol":"MRX20","entrezGeneId":4384},{"hugoGeneSymbol":"MRX23","entrezGeneId":4387},{"hugoGeneSymbol":"MRX24","entrezGeneId":4388},{"hugoGeneSymbol":"MRX25","entrezGeneId":4389},{"hugoGeneSymbol":"MRX26","entrezGeneId":4390},{"hugoGeneSymbol":"MRX27","entrezGeneId":4391},{"hugoGeneSymbol":"MRX28","entrezGeneId":4392},{"hugoGeneSymbol":"MRX31","entrezGeneId":4395},{"hugoGeneSymbol":"MRX37","entrezGeneId":4402},{"hugoGeneSymbol":"MRX39","entrezGeneId":4404},{"hugoGeneSymbol":"MRX4","entrezGeneId":4366},{"hugoGeneSymbol":"MRX40","entrezGeneId":4405},{"hugoGeneSymbol":"MRX42","entrezGeneId":4406},{"hugoGeneSymbol":"MRX49","entrezGeneId":4412},{"hugoGeneSymbol":"MRX5","entrezGeneId":4369},{"hugoGeneSymbol":"MRX50","entrezGeneId":4413},{"hugoGeneSymbol":"MRX51","entrezGeneId":4414},{"hugoGeneSymbol":"MRX53","entrezGeneId":4416},{"hugoGeneSymbol":"MRX56","entrezGeneId":4419},{"hugoGeneSymbol":"MRX57","entrezGeneId":4420},{"hugoGeneSymbol":"MRX6","entrezGeneId":4370},{"hugoGeneSymbol":"MRX61","entrezGeneId":4424},{"hugoGeneSymbol":"MRX64","entrezGeneId":4427},{"hugoGeneSymbol":"MRX65","entrezGeneId":4428},{"hugoGeneSymbol":"MRX66","entrezGeneId":23700},{"hugoGeneSymbol":"MRX67","entrezGeneId":23699},{"hugoGeneSymbol":"MRX69","entrezGeneId":23697},{"hugoGeneSymbol":"MRX7","entrezGeneId":4371},{"hugoGeneSymbol":"MRX70","entrezGeneId":23696},{"hugoGeneSymbol":"MRX71","entrezGeneId":767575},{"hugoGeneSymbol":"MRX73","entrezGeneId":23694},{"hugoGeneSymbol":"MRX75","entrezGeneId":89760},{"hugoGeneSymbol":"MRX77","entrezGeneId":93991},{"hugoGeneSymbol":"MRX8","entrezGeneId":4372},{"hugoGeneSymbol":"MRX80","entrezGeneId":378483},{"hugoGeneSymbol":"MRX81","entrezGeneId":266678},{"hugoGeneSymbol":"MRX82","entrezGeneId":378484},{"hugoGeneSymbol":"MRX84","entrezGeneId":378882},{"hugoGeneSymbol":"MRX86","entrezGeneId":503496},{"hugoGeneSymbol":"MRX88","entrezGeneId":105463129},{"hugoGeneSymbol":"MRX92","entrezGeneId":102775565},{"hugoGeneSymbol":"MRX95","entrezGeneId":102775568},{"hugoGeneSymbol":"MRXS11","entrezGeneId":50644},{"hugoGeneSymbol":"MRXS12","entrezGeneId":8246},{"hugoGeneSymbol":"MRXS17","entrezGeneId":100739996},{"hugoGeneSymbol":"MRXS7","entrezGeneId":4429},{"hugoGeneSymbol":"MRXSA","entrezGeneId":57791},{"hugoGeneSymbol":"MRXSAB","entrezGeneId":57792},{"hugoGeneSymbol":"MRXSBWB","entrezGeneId":105463128},{"hugoGeneSymbol":"MRXSCS","entrezGeneId":100820761},{"hugoGeneSymbol":"MRXSL","entrezGeneId":57790},{"hugoGeneSymbol":"MRXSMP","entrezGeneId":574047},{"hugoGeneSymbol":"MS","entrezGeneId":4397},{"hugoGeneSymbol":"MS2","entrezGeneId":100271694},{"hugoGeneSymbol":"MS3","entrezGeneId":100271695},{"hugoGeneSymbol":"MS4","entrezGeneId":100271696},{"hugoGeneSymbol":"MS4A1","entrezGeneId":931},{"hugoGeneSymbol":"MS4A10","entrezGeneId":341116},{"hugoGeneSymbol":"MS4A12","entrezGeneId":54860},{"hugoGeneSymbol":"MS4A13","entrezGeneId":503497},{"hugoGeneSymbol":"MS4A14","entrezGeneId":84689},{"hugoGeneSymbol":"MS4A15","entrezGeneId":219995},{"hugoGeneSymbol":"MS4A18","entrezGeneId":728588},{"hugoGeneSymbol":"MS4A2","entrezGeneId":2206},{"hugoGeneSymbol":"MS4A3","entrezGeneId":932},{"hugoGeneSymbol":"MS4A4A","entrezGeneId":51338},{"hugoGeneSymbol":"MS4A4E","entrezGeneId":643680},{"hugoGeneSymbol":"MS4A5","entrezGeneId":64232},{"hugoGeneSymbol":"MS4A6A","entrezGeneId":64231},{"hugoGeneSymbol":"MS4A6E","entrezGeneId":245802},{"hugoGeneSymbol":"MS4A7","entrezGeneId":58475},{"hugoGeneSymbol":"MS4A8","entrezGeneId":83661},{"hugoGeneSymbol":"MSANTD1","entrezGeneId":345222},{"hugoGeneSymbol":"MSANTD2","entrezGeneId":79684},{"hugoGeneSymbol":"MSANTD2P1","entrezGeneId":100130310},{"hugoGeneSymbol":"MSANTD3","entrezGeneId":91283},{"hugoGeneSymbol":"MSANTD3-TMEFF1","entrezGeneId":100526694},{"hugoGeneSymbol":"MSANTD4","entrezGeneId":84437},{"hugoGeneSymbol":"MSBP1","entrezGeneId":4431},{"hugoGeneSymbol":"MSBP2","entrezGeneId":4432},{"hugoGeneSymbol":"MSC","entrezGeneId":9242},{"hugoGeneSymbol":"MSC-AS1","entrezGeneId":100132891},{"hugoGeneSymbol":"MSD","entrezGeneId":4434},{"hugoGeneSymbol":"MSE","entrezGeneId":101180900},{"hugoGeneSymbol":"MSGN1","entrezGeneId":343930},{"hugoGeneSymbol":"MSH2","entrezGeneId":4436},{"hugoGeneSymbol":"MSH3","entrezGeneId":4437},{"hugoGeneSymbol":"MSH4","entrezGeneId":4438},{"hugoGeneSymbol":"MSH5","entrezGeneId":4439},{"hugoGeneSymbol":"MSH5-SAPCD1","entrezGeneId":100532732},{"hugoGeneSymbol":"MSH6","entrezGeneId":2956},{"hugoGeneSymbol":"MSI1","entrezGeneId":4440},{"hugoGeneSymbol":"MSI2","entrezGeneId":124540},{"hugoGeneSymbol":"MSK10","entrezGeneId":4448},{"hugoGeneSymbol":"MSK32","entrezGeneId":4467},{"hugoGeneSymbol":"MSK38","entrezGeneId":4473},{"hugoGeneSymbol":"MSK9","entrezGeneId":4447},{"hugoGeneSymbol":"MSL1","entrezGeneId":339287},{"hugoGeneSymbol":"MSL2","entrezGeneId":55167},{"hugoGeneSymbol":"MSL3","entrezGeneId":10943},{"hugoGeneSymbol":"MSL3P1","entrezGeneId":151507},{"hugoGeneSymbol":"MSLN","entrezGeneId":10232},{"hugoGeneSymbol":"MSLNL","entrezGeneId":401827},{"hugoGeneSymbol":"MSMB","entrezGeneId":4477},{"hugoGeneSymbol":"MSMO1","entrezGeneId":6307},{"hugoGeneSymbol":"MSMP","entrezGeneId":692094},{"hugoGeneSymbol":"MSN","entrezGeneId":4478},{"hugoGeneSymbol":"MSNP1","entrezGeneId":4479},{"hugoGeneSymbol":"MSPC","entrezGeneId":107988031},{"hugoGeneSymbol":"MSR1","entrezGeneId":4481},{"hugoGeneSymbol":"MSRA","entrezGeneId":4482},{"hugoGeneSymbol":"MSRB1","entrezGeneId":51734},{"hugoGeneSymbol":"MSRB1P1","entrezGeneId":441849},{"hugoGeneSymbol":"MSRB2","entrezGeneId":22921},{"hugoGeneSymbol":"MSRB3","entrezGeneId":253827},{"hugoGeneSymbol":"MSS51","entrezGeneId":118490},{"hugoGeneSymbol":"MSSD","entrezGeneId":619407},{"hugoGeneSymbol":"MST1","entrezGeneId":4485},{"hugoGeneSymbol":"MST1L","entrezGeneId":11223},{"hugoGeneSymbol":"MST1P2","entrezGeneId":11209},{"hugoGeneSymbol":"MST1R","entrezGeneId":4486},{"hugoGeneSymbol":"MSTN","entrezGeneId":2660},{"hugoGeneSymbol":"MSTO1","entrezGeneId":55154},{"hugoGeneSymbol":"MSTO2P","entrezGeneId":100129405},{"hugoGeneSymbol":"MSX1","entrezGeneId":4487},{"hugoGeneSymbol":"MSX2","entrezGeneId":4488},{"hugoGeneSymbol":"MSX2P1","entrezGeneId":55545},{"hugoGeneSymbol":"MT-ATP6","entrezGeneId":4508},{"hugoGeneSymbol":"MT-ATP8","entrezGeneId":4509},{"hugoGeneSymbol":"MT-CO1","entrezGeneId":4512},{"hugoGeneSymbol":"MT-CO2","entrezGeneId":4513},{"hugoGeneSymbol":"MT-CO3","entrezGeneId":4514},{"hugoGeneSymbol":"MT-CYB","entrezGeneId":4519},{"hugoGeneSymbol":"MT-ND1","entrezGeneId":4535},{"hugoGeneSymbol":"MT-ND2","entrezGeneId":4536},{"hugoGeneSymbol":"MT-ND3","entrezGeneId":4537},{"hugoGeneSymbol":"MT-ND4","entrezGeneId":4538},{"hugoGeneSymbol":"MT-ND4L","entrezGeneId":4539},{"hugoGeneSymbol":"MT-ND5","entrezGeneId":4540},{"hugoGeneSymbol":"MT-ND6","entrezGeneId":4541},{"hugoGeneSymbol":"MT-RNR1","entrezGeneId":4549},{"hugoGeneSymbol":"MT-RNR2","entrezGeneId":4550},{"hugoGeneSymbol":"MT-TA","entrezGeneId":4553},{"hugoGeneSymbol":"MT-TC","entrezGeneId":4511},{"hugoGeneSymbol":"MT-TD","entrezGeneId":4555},{"hugoGeneSymbol":"MT-TE","entrezGeneId":4556},{"hugoGeneSymbol":"MT-TF","entrezGeneId":4558},{"hugoGeneSymbol":"MT-TG","entrezGeneId":4563},{"hugoGeneSymbol":"MT-TH","entrezGeneId":4564},{"hugoGeneSymbol":"MT-TI","entrezGeneId":4565},{"hugoGeneSymbol":"MT-TK","entrezGeneId":4566},{"hugoGeneSymbol":"MT-TL1","entrezGeneId":4567},{"hugoGeneSymbol":"MT-TL2","entrezGeneId":4568},{"hugoGeneSymbol":"MT-TM","entrezGeneId":4569},{"hugoGeneSymbol":"MT-TN","entrezGeneId":4570},{"hugoGeneSymbol":"MT-TP","entrezGeneId":4571},{"hugoGeneSymbol":"MT-TQ","entrezGeneId":4572},{"hugoGeneSymbol":"MT-TR","entrezGeneId":4573},{"hugoGeneSymbol":"MT-TS1","entrezGeneId":4574},{"hugoGeneSymbol":"MT-TS2","entrezGeneId":4575},{"hugoGeneSymbol":"MT-TT","entrezGeneId":4576},{"hugoGeneSymbol":"MT-TV","entrezGeneId":4577},{"hugoGeneSymbol":"MT-TW","entrezGeneId":4578},{"hugoGeneSymbol":"MT-TY","entrezGeneId":4579},{"hugoGeneSymbol":"MT1A","entrezGeneId":4489},{"hugoGeneSymbol":"MT1B","entrezGeneId":4490},{"hugoGeneSymbol":"MT1CP","entrezGeneId":441771},{"hugoGeneSymbol":"MT1DP","entrezGeneId":326343},{"hugoGeneSymbol":"MT1E","entrezGeneId":4493},{"hugoGeneSymbol":"MT1F","entrezGeneId":4494},{"hugoGeneSymbol":"MT1G","entrezGeneId":4495},{"hugoGeneSymbol":"MT1H","entrezGeneId":4496},{"hugoGeneSymbol":"MT1HL1","entrezGeneId":645745},{"hugoGeneSymbol":"MT1IP","entrezGeneId":644314},{"hugoGeneSymbol":"MT1JP","entrezGeneId":4498},{"hugoGeneSymbol":"MT1L","entrezGeneId":4500},{"hugoGeneSymbol":"MT1M","entrezGeneId":4499},{"hugoGeneSymbol":"MT1P1","entrezGeneId":493987},{"hugoGeneSymbol":"MT1P3","entrezGeneId":140851},{"hugoGeneSymbol":"MT1X","entrezGeneId":4501},{"hugoGeneSymbol":"MT1XP1","entrezGeneId":645652},{"hugoGeneSymbol":"MT2A","entrezGeneId":4502},{"hugoGeneSymbol":"MT2P1","entrezGeneId":4503},{"hugoGeneSymbol":"MT3","entrezGeneId":4504},{"hugoGeneSymbol":"MT4","entrezGeneId":84560},{"hugoGeneSymbol":"MTA1","entrezGeneId":9112},{"hugoGeneSymbol":"MTA2","entrezGeneId":9219},{"hugoGeneSymbol":"MTA3","entrezGeneId":57504},{"hugoGeneSymbol":"MTAP","entrezGeneId":4507},{"hugoGeneSymbol":"MTAPP1","entrezGeneId":100874257},{"hugoGeneSymbol":"MTAPP2","entrezGeneId":100420621},{"hugoGeneSymbol":"MTATP6P1","entrezGeneId":106480796},{"hugoGeneSymbol":"MTATP6P10","entrezGeneId":107403069},{"hugoGeneSymbol":"MTATP6P11","entrezGeneId":107075311},{"hugoGeneSymbol":"MTATP6P12","entrezGeneId":107403071},{"hugoGeneSymbol":"MTATP6P13","entrezGeneId":107075272},{"hugoGeneSymbol":"MTATP6P14","entrezGeneId":107075157},{"hugoGeneSymbol":"MTATP6P15","entrezGeneId":107075273},{"hugoGeneSymbol":"MTATP6P16","entrezGeneId":107075158},{"hugoGeneSymbol":"MTATP6P17","entrezGeneId":107075274},{"hugoGeneSymbol":"MTATP6P18","entrezGeneId":107075159},{"hugoGeneSymbol":"MTATP6P19","entrezGeneId":107075275},{"hugoGeneSymbol":"MTATP6P2","entrezGeneId":100287745},{"hugoGeneSymbol":"MTATP6P20","entrezGeneId":107075201},{"hugoGeneSymbol":"MTATP6P21","entrezGeneId":107075299},{"hugoGeneSymbol":"MTATP6P22","entrezGeneId":107075202},{"hugoGeneSymbol":"MTATP6P23","entrezGeneId":107075300},{"hugoGeneSymbol":"MTATP6P24","entrezGeneId":107075232},{"hugoGeneSymbol":"MTATP6P25","entrezGeneId":107075203},{"hugoGeneSymbol":"MTATP6P26","entrezGeneId":107075301},{"hugoGeneSymbol":"MTATP6P27","entrezGeneId":107075204},{"hugoGeneSymbol":"MTATP6P28","entrezGeneId":107403070},{"hugoGeneSymbol":"MTATP6P29","entrezGeneId":107075315},{"hugoGeneSymbol":"MTATP6P3","entrezGeneId":106479043},{"hugoGeneSymbol":"MTATP6P30","entrezGeneId":107075302},{"hugoGeneSymbol":"MTATP6P31","entrezGeneId":107075205},{"hugoGeneSymbol":"MTATP6P4","entrezGeneId":106480797},{"hugoGeneSymbol":"MTATP6P5","entrezGeneId":107403073},{"hugoGeneSymbol":"MTATP6P6","entrezGeneId":106660633},{"hugoGeneSymbol":"MTATP6P7","entrezGeneId":106480798},{"hugoGeneSymbol":"MTATP6P8","entrezGeneId":107131119},{"hugoGeneSymbol":"MTATP6P9","entrezGeneId":106479044},{"hugoGeneSymbol":"MTATP8P1","entrezGeneId":106480795},{"hugoGeneSymbol":"MTATP8P2","entrezGeneId":106479042},{"hugoGeneSymbol":"MTATP8P3","entrezGeneId":107161229},{"hugoGeneSymbol":"MTATP8P4","entrezGeneId":107080107},{"hugoGeneSymbol":"MTBP","entrezGeneId":27085},{"hugoGeneSymbol":"MTBS1","entrezGeneId":404716},{"hugoGeneSymbol":"MTBS2","entrezGeneId":100188829},{"hugoGeneSymbol":"MTBS3","entrezGeneId":100302686},{"hugoGeneSymbol":"MTBSX","entrezGeneId":57789},{"hugoGeneSymbol":"MTCH1","entrezGeneId":23787},{"hugoGeneSymbol":"MTCH2","entrezGeneId":23788},{"hugoGeneSymbol":"MTCL1","entrezGeneId":23255},{"hugoGeneSymbol":"MTCL1P1","entrezGeneId":100288130},{"hugoGeneSymbol":"MTCO1P1","entrezGeneId":56167},{"hugoGeneSymbol":"MTCO1P10","entrezGeneId":107075140},{"hugoGeneSymbol":"MTCO1P11","entrezGeneId":107075264},{"hugoGeneSymbol":"MTCO1P12","entrezGeneId":107075141},{"hugoGeneSymbol":"MTCO1P13","entrezGeneId":107105281},{"hugoGeneSymbol":"MTCO1P14","entrezGeneId":107075142},{"hugoGeneSymbol":"MTCO1P15","entrezGeneId":107075265},{"hugoGeneSymbol":"MTCO1P16","entrezGeneId":107105283},{"hugoGeneSymbol":"MTCO1P17","entrezGeneId":107075222},{"hugoGeneSymbol":"MTCO1P18","entrezGeneId":107075143},{"hugoGeneSymbol":"MTCO1P19","entrezGeneId":107075144},{"hugoGeneSymbol":"MTCO1P2","entrezGeneId":326603},{"hugoGeneSymbol":"MTCO1P20","entrezGeneId":107075163},{"hugoGeneSymbol":"MTCO1P21","entrezGeneId":107075164},{"hugoGeneSymbol":"MTCO1P22","entrezGeneId":107075165},{"hugoGeneSymbol":"MTCO1P23","entrezGeneId":107075281},{"hugoGeneSymbol":"MTCO1P24","entrezGeneId":107075166},{"hugoGeneSymbol":"MTCO1P25","entrezGeneId":107075167},{"hugoGeneSymbol":"MTCO1P26","entrezGeneId":107105267},{"hugoGeneSymbol":"MTCO1P27","entrezGeneId":107075168},{"hugoGeneSymbol":"MTCO1P28","entrezGeneId":107075169},{"hugoGeneSymbol":"MTCO1P29","entrezGeneId":107075225},{"hugoGeneSymbol":"MTCO1P3","entrezGeneId":100873205},{"hugoGeneSymbol":"MTCO1P30","entrezGeneId":107075170},{"hugoGeneSymbol":"MTCO1P31","entrezGeneId":107075171},{"hugoGeneSymbol":"MTCO1P32","entrezGeneId":107105268},{"hugoGeneSymbol":"MTCO1P33","entrezGeneId":107105269},{"hugoGeneSymbol":"MTCO1P34","entrezGeneId":107105270},{"hugoGeneSymbol":"MTCO1P35","entrezGeneId":107075234},{"hugoGeneSymbol":"MTCO1P36","entrezGeneId":107105272},{"hugoGeneSymbol":"MTCO1P37","entrezGeneId":107105273},{"hugoGeneSymbol":"MTCO1P38","entrezGeneId":107105274},{"hugoGeneSymbol":"MTCO1P39","entrezGeneId":107075282},{"hugoGeneSymbol":"MTCO1P4","entrezGeneId":106480684},{"hugoGeneSymbol":"MTCO1P40","entrezGeneId":107075172},{"hugoGeneSymbol":"MTCO1P41","entrezGeneId":107105277},{"hugoGeneSymbol":"MTCO1P42","entrezGeneId":107075283},{"hugoGeneSymbol":"MTCO1P43","entrezGeneId":107075173},{"hugoGeneSymbol":"MTCO1P44","entrezGeneId":107075226},{"hugoGeneSymbol":"MTCO1P45","entrezGeneId":107075174},{"hugoGeneSymbol":"MTCO1P46","entrezGeneId":107075175},{"hugoGeneSymbol":"MTCO1P47","entrezGeneId":107075284},{"hugoGeneSymbol":"MTCO1P48","entrezGeneId":107075176},{"hugoGeneSymbol":"MTCO1P49","entrezGeneId":107075177},{"hugoGeneSymbol":"MTCO1P5","entrezGeneId":106480318},{"hugoGeneSymbol":"MTCO1P50","entrezGeneId":107105279},{"hugoGeneSymbol":"MTCO1P51","entrezGeneId":100287067},{"hugoGeneSymbol":"MTCO1P52","entrezGeneId":107075227},{"hugoGeneSymbol":"MTCO1P53","entrezGeneId":107075285},{"hugoGeneSymbol":"MTCO1P54","entrezGeneId":107075178},{"hugoGeneSymbol":"MTCO1P55","entrezGeneId":107075179},{"hugoGeneSymbol":"MTCO1P56","entrezGeneId":107075286},{"hugoGeneSymbol":"MTCO1P57","entrezGeneId":109729155},{"hugoGeneSymbol":"MTCO1P6","entrezGeneId":107075137},{"hugoGeneSymbol":"MTCO1P7","entrezGeneId":107075263},{"hugoGeneSymbol":"MTCO1P8","entrezGeneId":107075138},{"hugoGeneSymbol":"MTCO1P9","entrezGeneId":107075139},{"hugoGeneSymbol":"MTCO2P1","entrezGeneId":140909},{"hugoGeneSymbol":"MTCO2P10","entrezGeneId":107161153},{"hugoGeneSymbol":"MTCO2P11","entrezGeneId":107075214},{"hugoGeneSymbol":"MTCO2P12","entrezGeneId":107075310},{"hugoGeneSymbol":"MTCO2P13","entrezGeneId":107403168},{"hugoGeneSymbol":"MTCO2P14","entrezGeneId":107403169},{"hugoGeneSymbol":"MTCO2P15","entrezGeneId":107075147},{"hugoGeneSymbol":"MTCO2P16","entrezGeneId":107075148},{"hugoGeneSymbol":"MTCO2P17","entrezGeneId":107075268},{"hugoGeneSymbol":"MTCO2P18","entrezGeneId":107075149},{"hugoGeneSymbol":"MTCO2P19","entrezGeneId":107075223},{"hugoGeneSymbol":"MTCO2P2","entrezGeneId":100873202},{"hugoGeneSymbol":"MTCO2P20","entrezGeneId":107075230},{"hugoGeneSymbol":"MTCO2P21","entrezGeneId":107075191},{"hugoGeneSymbol":"MTCO2P22","entrezGeneId":100289404},{"hugoGeneSymbol":"MTCO2P23","entrezGeneId":107075192},{"hugoGeneSymbol":"MTCO2P24","entrezGeneId":107075193},{"hugoGeneSymbol":"MTCO2P25","entrezGeneId":107075290},{"hugoGeneSymbol":"MTCO2P26","entrezGeneId":107403163},{"hugoGeneSymbol":"MTCO2P27","entrezGeneId":107075291},{"hugoGeneSymbol":"MTCO2P28","entrezGeneId":107126362},{"hugoGeneSymbol":"MTCO2P29","entrezGeneId":107075194},{"hugoGeneSymbol":"MTCO2P3","entrezGeneId":100873203},{"hugoGeneSymbol":"MTCO2P30","entrezGeneId":107075195},{"hugoGeneSymbol":"MTCO2P31","entrezGeneId":107075292},{"hugoGeneSymbol":"MTCO2P32","entrezGeneId":107075196},{"hugoGeneSymbol":"MTCO2P33","entrezGeneId":107075197},{"hugoGeneSymbol":"MTCO2P34","entrezGeneId":109729142},{"hugoGeneSymbol":"MTCO2P4","entrezGeneId":106480296},{"hugoGeneSymbol":"MTCO2P5","entrezGeneId":107075181},{"hugoGeneSymbol":"MTCO2P6","entrezGeneId":107075266},{"hugoGeneSymbol":"MTCO2P7","entrezGeneId":107075145},{"hugoGeneSymbol":"MTCO2P8","entrezGeneId":107075146},{"hugoGeneSymbol":"MTCO2P9","entrezGeneId":107075267},{"hugoGeneSymbol":"MTCO3P1","entrezGeneId":404026},{"hugoGeneSymbol":"MTCO3P10","entrezGeneId":107075152},{"hugoGeneSymbol":"MTCO3P11","entrezGeneId":107075153},{"hugoGeneSymbol":"MTCO3P12","entrezGeneId":107075270},{"hugoGeneSymbol":"MTCO3P13","entrezGeneId":107075224},{"hugoGeneSymbol":"MTCO3P14","entrezGeneId":107403236},{"hugoGeneSymbol":"MTCO3P15","entrezGeneId":107075154},{"hugoGeneSymbol":"MTCO3P16","entrezGeneId":107075155},{"hugoGeneSymbol":"MTCO3P17","entrezGeneId":107075271},{"hugoGeneSymbol":"MTCO3P18","entrezGeneId":107075215},{"hugoGeneSymbol":"MTCO3P19","entrezGeneId":107075156},{"hugoGeneSymbol":"MTCO3P2","entrezGeneId":100873207},{"hugoGeneSymbol":"MTCO3P20","entrezGeneId":107075180},{"hugoGeneSymbol":"MTCO3P21","entrezGeneId":107075162},{"hugoGeneSymbol":"MTCO3P22","entrezGeneId":100289371},{"hugoGeneSymbol":"MTCO3P23","entrezGeneId":107075182},{"hugoGeneSymbol":"MTCO3P24","entrezGeneId":107075217},{"hugoGeneSymbol":"MTCO3P25","entrezGeneId":107403240},{"hugoGeneSymbol":"MTCO3P26","entrezGeneId":107403241},{"hugoGeneSymbol":"MTCO3P27","entrezGeneId":107075183},{"hugoGeneSymbol":"MTCO3P28","entrezGeneId":107075184},{"hugoGeneSymbol":"MTCO3P29","entrezGeneId":107075185},{"hugoGeneSymbol":"MTCO3P3","entrezGeneId":107403237},{"hugoGeneSymbol":"MTCO3P30","entrezGeneId":107075229},{"hugoGeneSymbol":"MTCO3P31","entrezGeneId":107075186},{"hugoGeneSymbol":"MTCO3P32","entrezGeneId":107436001},{"hugoGeneSymbol":"MTCO3P33","entrezGeneId":107436003},{"hugoGeneSymbol":"MTCO3P34","entrezGeneId":107436004},{"hugoGeneSymbol":"MTCO3P35","entrezGeneId":107075287},{"hugoGeneSymbol":"MTCO3P36","entrezGeneId":107436006},{"hugoGeneSymbol":"MTCO3P37","entrezGeneId":107436007},{"hugoGeneSymbol":"MTCO3P38","entrezGeneId":107075187},{"hugoGeneSymbol":"MTCO3P39","entrezGeneId":107075313},{"hugoGeneSymbol":"MTCO3P4","entrezGeneId":107075216},{"hugoGeneSymbol":"MTCO3P40","entrezGeneId":107075188},{"hugoGeneSymbol":"MTCO3P41","entrezGeneId":107075288},{"hugoGeneSymbol":"MTCO3P42","entrezGeneId":107075189},{"hugoGeneSymbol":"MTCO3P43","entrezGeneId":107075190},{"hugoGeneSymbol":"MTCO3P44","entrezGeneId":107075289},{"hugoGeneSymbol":"MTCO3P45","entrezGeneId":107075218},{"hugoGeneSymbol":"MTCO3P46","entrezGeneId":107075293},{"hugoGeneSymbol":"MTCO3P5","entrezGeneId":107075228},{"hugoGeneSymbol":"MTCO3P6","entrezGeneId":107403235},{"hugoGeneSymbol":"MTCO3P7","entrezGeneId":107075150},{"hugoGeneSymbol":"MTCO3P8","entrezGeneId":107075151},{"hugoGeneSymbol":"MTCO3P9","entrezGeneId":107075269},{"hugoGeneSymbol":"MTCP1","entrezGeneId":4515},{"hugoGeneSymbol":"MTCYBP1","entrezGeneId":100499418},{"hugoGeneSymbol":"MTCYBP10","entrezGeneId":107075121},{"hugoGeneSymbol":"MTCYBP11","entrezGeneId":107075122},{"hugoGeneSymbol":"MTCYBP12","entrezGeneId":107075123},{"hugoGeneSymbol":"MTCYBP13","entrezGeneId":107075129},{"hugoGeneSymbol":"MTCYBP14","entrezGeneId":107075120},{"hugoGeneSymbol":"MTCYBP15","entrezGeneId":107075258},{"hugoGeneSymbol":"MTCYBP16","entrezGeneId":107075126},{"hugoGeneSymbol":"MTCYBP17","entrezGeneId":107075213},{"hugoGeneSymbol":"MTCYBP18","entrezGeneId":107075130},{"hugoGeneSymbol":"MTCYBP19","entrezGeneId":107075127},{"hugoGeneSymbol":"MTCYBP2","entrezGeneId":100873168},{"hugoGeneSymbol":"MTCYBP20","entrezGeneId":107075128},{"hugoGeneSymbol":"MTCYBP21","entrezGeneId":107075260},{"hugoGeneSymbol":"MTCYBP22","entrezGeneId":107075221},{"hugoGeneSymbol":"MTCYBP23","entrezGeneId":107075131},{"hugoGeneSymbol":"MTCYBP24","entrezGeneId":107075132},{"hugoGeneSymbol":"MTCYBP25","entrezGeneId":107403064},{"hugoGeneSymbol":"MTCYBP26","entrezGeneId":107403065},{"hugoGeneSymbol":"MTCYBP27","entrezGeneId":107075133},{"hugoGeneSymbol":"MTCYBP28","entrezGeneId":107075134},{"hugoGeneSymbol":"MTCYBP29","entrezGeneId":107075135},{"hugoGeneSymbol":"MTCYBP3","entrezGeneId":100873204},{"hugoGeneSymbol":"MTCYBP30","entrezGeneId":107403066},{"hugoGeneSymbol":"MTCYBP31","entrezGeneId":107075136},{"hugoGeneSymbol":"MTCYBP32","entrezGeneId":107075231},{"hugoGeneSymbol":"MTCYBP33","entrezGeneId":109729143},{"hugoGeneSymbol":"MTCYBP34","entrezGeneId":109729115},{"hugoGeneSymbol":"MTCYBP35","entrezGeneId":109729150},{"hugoGeneSymbol":"MTCYBP36","entrezGeneId":109729116},{"hugoGeneSymbol":"MTCYBP37","entrezGeneId":109729151},{"hugoGeneSymbol":"MTCYBP38","entrezGeneId":109729117},{"hugoGeneSymbol":"MTCYBP39","entrezGeneId":109729152},{"hugoGeneSymbol":"MTCYBP4","entrezGeneId":100873169},{"hugoGeneSymbol":"MTCYBP40","entrezGeneId":109729144},{"hugoGeneSymbol":"MTCYBP41","entrezGeneId":109729118},{"hugoGeneSymbol":"MTCYBP42","entrezGeneId":109729153},{"hugoGeneSymbol":"MTCYBP43","entrezGeneId":109729119},{"hugoGeneSymbol":"MTCYBP44","entrezGeneId":109729154},{"hugoGeneSymbol":"MTCYBP45","entrezGeneId":109729120},{"hugoGeneSymbol":"MTCYBP5","entrezGeneId":107075125},{"hugoGeneSymbol":"MTCYBP6","entrezGeneId":107075259},{"hugoGeneSymbol":"MTCYBP7","entrezGeneId":107075257},{"hugoGeneSymbol":"MTCYBP8","entrezGeneId":107075220},{"hugoGeneSymbol":"MTCYBP9","entrezGeneId":107075124},{"hugoGeneSymbol":"MTDH","entrezGeneId":92140},{"hugoGeneSymbol":"MTDHP1","entrezGeneId":100418814},{"hugoGeneSymbol":"MTDHP2","entrezGeneId":100418835},{"hugoGeneSymbol":"MTDHP3","entrezGeneId":100418832},{"hugoGeneSymbol":"MTDHP4","entrezGeneId":100418834},{"hugoGeneSymbol":"MTDHP5","entrezGeneId":100418836},{"hugoGeneSymbol":"MTERF1","entrezGeneId":7978},{"hugoGeneSymbol":"MTERF2","entrezGeneId":80298},{"hugoGeneSymbol":"MTERF3","entrezGeneId":51001},{"hugoGeneSymbol":"MTERF4","entrezGeneId":130916},{"hugoGeneSymbol":"MTF1","entrezGeneId":4520},{"hugoGeneSymbol":"MTF2","entrezGeneId":22823},{"hugoGeneSymbol":"MTFMT","entrezGeneId":123263},{"hugoGeneSymbol":"MTFP1","entrezGeneId":51537},{"hugoGeneSymbol":"MTFR1","entrezGeneId":9650},{"hugoGeneSymbol":"MTFR1L","entrezGeneId":56181},{"hugoGeneSymbol":"MTFR2","entrezGeneId":113115},{"hugoGeneSymbol":"MTG1","entrezGeneId":92170},{"hugoGeneSymbol":"MTG2","entrezGeneId":26164},{"hugoGeneSymbol":"MTHFD1","entrezGeneId":4522},{"hugoGeneSymbol":"MTHFD1L","entrezGeneId":25902},{"hugoGeneSymbol":"MTHFD1P1","entrezGeneId":4523},{"hugoGeneSymbol":"MTHFD2","entrezGeneId":10797},{"hugoGeneSymbol":"MTHFD2L","entrezGeneId":441024},{"hugoGeneSymbol":"MTHFD2P1","entrezGeneId":100287639},{"hugoGeneSymbol":"MTHFD2P2","entrezGeneId":106480237},{"hugoGeneSymbol":"MTHFD2P3","entrezGeneId":106481665},{"hugoGeneSymbol":"MTHFD2P4","entrezGeneId":100131135},{"hugoGeneSymbol":"MTHFD2P5","entrezGeneId":442707},{"hugoGeneSymbol":"MTHFD2P6","entrezGeneId":100130042},{"hugoGeneSymbol":"MTHFD2P7","entrezGeneId":442098},{"hugoGeneSymbol":"MTHFR","entrezGeneId":4524},{"hugoGeneSymbol":"MTHFS","entrezGeneId":10588},{"hugoGeneSymbol":"MTHFSD","entrezGeneId":64779},{"hugoGeneSymbol":"MTIF2","entrezGeneId":4528},{"hugoGeneSymbol":"MTIF2P1","entrezGeneId":80713},{"hugoGeneSymbol":"MTIF3","entrezGeneId":219402},{"hugoGeneSymbol":"MTL3P","entrezGeneId":4531},{"hugoGeneSymbol":"MTM1","entrezGeneId":4534},{"hugoGeneSymbol":"MTMR1","entrezGeneId":8776},{"hugoGeneSymbol":"MTMR10","entrezGeneId":54893},{"hugoGeneSymbol":"MTMR11","entrezGeneId":10903},{"hugoGeneSymbol":"MTMR12","entrezGeneId":54545},{"hugoGeneSymbol":"MTMR14","entrezGeneId":64419},{"hugoGeneSymbol":"MTMR2","entrezGeneId":8898},{"hugoGeneSymbol":"MTMR3","entrezGeneId":8897},{"hugoGeneSymbol":"MTMR4","entrezGeneId":9110},{"hugoGeneSymbol":"MTMR6","entrezGeneId":9107},{"hugoGeneSymbol":"MTMR7","entrezGeneId":9108},{"hugoGeneSymbol":"MTMR8","entrezGeneId":55613},{"hugoGeneSymbol":"MTMR9","entrezGeneId":66036},{"hugoGeneSymbol":"MTMR9LP","entrezGeneId":339483},{"hugoGeneSymbol":"MTND1P1","entrezGeneId":100499468},{"hugoGeneSymbol":"MTND1P10","entrezGeneId":100873343},{"hugoGeneSymbol":"MTND1P11","entrezGeneId":100873212},{"hugoGeneSymbol":"MTND1P12","entrezGeneId":106480744},{"hugoGeneSymbol":"MTND1P13","entrezGeneId":100887745},{"hugoGeneSymbol":"MTND1P14","entrezGeneId":100873337},{"hugoGeneSymbol":"MTND1P15","entrezGeneId":100288998},{"hugoGeneSymbol":"MTND1P16","entrezGeneId":100873213},{"hugoGeneSymbol":"MTND1P17","entrezGeneId":100873342},{"hugoGeneSymbol":"MTND1P18","entrezGeneId":100873338},{"hugoGeneSymbol":"MTND1P19","entrezGeneId":100873220},{"hugoGeneSymbol":"MTND1P2","entrezGeneId":100873170},{"hugoGeneSymbol":"MTND1P20","entrezGeneId":100873339},{"hugoGeneSymbol":"MTND1P21","entrezGeneId":100873340},{"hugoGeneSymbol":"MTND1P22","entrezGeneId":100287591},{"hugoGeneSymbol":"MTND1P23","entrezGeneId":100887749},{"hugoGeneSymbol":"MTND1P24","entrezGeneId":100873341},{"hugoGeneSymbol":"MTND1P25","entrezGeneId":100288950},{"hugoGeneSymbol":"MTND1P26","entrezGeneId":100873214},{"hugoGeneSymbol":"MTND1P27","entrezGeneId":100288227},{"hugoGeneSymbol":"MTND1P28","entrezGeneId":100873215},{"hugoGeneSymbol":"MTND1P29","entrezGeneId":100873216},{"hugoGeneSymbol":"MTND1P3","entrezGeneId":100288984},{"hugoGeneSymbol":"MTND1P30","entrezGeneId":100507157},{"hugoGeneSymbol":"MTND1P31","entrezGeneId":100873217},{"hugoGeneSymbol":"MTND1P32","entrezGeneId":100856881},{"hugoGeneSymbol":"MTND1P33","entrezGeneId":100873218},{"hugoGeneSymbol":"MTND1P34","entrezGeneId":100873219},{"hugoGeneSymbol":"MTND1P35","entrezGeneId":106480433},{"hugoGeneSymbol":"MTND1P36","entrezGeneId":100506721},{"hugoGeneSymbol":"MTND1P37","entrezGeneId":109729170},{"hugoGeneSymbol":"MTND1P4","entrezGeneId":100873171},{"hugoGeneSymbol":"MTND1P5","entrezGeneId":100873174},{"hugoGeneSymbol":"MTND1P6","entrezGeneId":100873173},{"hugoGeneSymbol":"MTND1P7","entrezGeneId":100873172},{"hugoGeneSymbol":"MTND1P8","entrezGeneId":100287461},{"hugoGeneSymbol":"MTND1P9","entrezGeneId":100873221},{"hugoGeneSymbol":"MTND2P1","entrezGeneId":387315},{"hugoGeneSymbol":"MTND2P10","entrezGeneId":100873238},{"hugoGeneSymbol":"MTND2P11","entrezGeneId":100873222},{"hugoGeneSymbol":"MTND2P12","entrezGeneId":100873344},{"hugoGeneSymbol":"MTND2P13","entrezGeneId":100873345},{"hugoGeneSymbol":"MTND2P14","entrezGeneId":100873223},{"hugoGeneSymbol":"MTND2P15","entrezGeneId":100873346},{"hugoGeneSymbol":"MTND2P16","entrezGeneId":100873347},{"hugoGeneSymbol":"MTND2P17","entrezGeneId":100873348},{"hugoGeneSymbol":"MTND2P18","entrezGeneId":100873224},{"hugoGeneSymbol":"MTND2P19","entrezGeneId":100873225},{"hugoGeneSymbol":"MTND2P2","entrezGeneId":56168},{"hugoGeneSymbol":"MTND2P20","entrezGeneId":100873226},{"hugoGeneSymbol":"MTND2P21","entrezGeneId":100873227},{"hugoGeneSymbol":"MTND2P22","entrezGeneId":100873228},{"hugoGeneSymbol":"MTND2P23","entrezGeneId":100873229},{"hugoGeneSymbol":"MTND2P24","entrezGeneId":100873230},{"hugoGeneSymbol":"MTND2P25","entrezGeneId":100873231},{"hugoGeneSymbol":"MTND2P26","entrezGeneId":100873349},{"hugoGeneSymbol":"MTND2P27","entrezGeneId":100873232},{"hugoGeneSymbol":"MTND2P28","entrezGeneId":100652939},{"hugoGeneSymbol":"MTND2P29","entrezGeneId":100873233},{"hugoGeneSymbol":"MTND2P3","entrezGeneId":100499457},{"hugoGeneSymbol":"MTND2P30","entrezGeneId":100873234},{"hugoGeneSymbol":"MTND2P31","entrezGeneId":100873235},{"hugoGeneSymbol":"MTND2P32","entrezGeneId":100873237},{"hugoGeneSymbol":"MTND2P33","entrezGeneId":100873236},{"hugoGeneSymbol":"MTND2P34","entrezGeneId":107161146},{"hugoGeneSymbol":"MTND2P35","entrezGeneId":107161147},{"hugoGeneSymbol":"MTND2P36","entrezGeneId":107161148},{"hugoGeneSymbol":"MTND2P37","entrezGeneId":107161150},{"hugoGeneSymbol":"MTND2P38","entrezGeneId":107075276},{"hugoGeneSymbol":"MTND2P39","entrezGeneId":107075312},{"hugoGeneSymbol":"MTND2P4","entrezGeneId":100873175},{"hugoGeneSymbol":"MTND2P40","entrezGeneId":107075280},{"hugoGeneSymbol":"MTND2P41","entrezGeneId":109729121},{"hugoGeneSymbol":"MTND2P5","entrezGeneId":100873176},{"hugoGeneSymbol":"MTND2P6","entrezGeneId":100873177},{"hugoGeneSymbol":"MTND2P7","entrezGeneId":100873179},{"hugoGeneSymbol":"MTND2P8","entrezGeneId":100873178},{"hugoGeneSymbol":"MTND2P9","entrezGeneId":100884155},{"hugoGeneSymbol":"MTND3P1","entrezGeneId":100873208},{"hugoGeneSymbol":"MTND3P10","entrezGeneId":100873239},{"hugoGeneSymbol":"MTND3P11","entrezGeneId":107161160},{"hugoGeneSymbol":"MTND3P12","entrezGeneId":107075160},{"hugoGeneSymbol":"MTND3P13","entrezGeneId":107075277},{"hugoGeneSymbol":"MTND3P14","entrezGeneId":107161161},{"hugoGeneSymbol":"MTND3P15","entrezGeneId":107161162},{"hugoGeneSymbol":"MTND3P16","entrezGeneId":107075278},{"hugoGeneSymbol":"MTND3P17","entrezGeneId":107075279},{"hugoGeneSymbol":"MTND3P18","entrezGeneId":107161164},{"hugoGeneSymbol":"MTND3P19","entrezGeneId":107075161},{"hugoGeneSymbol":"MTND3P2","entrezGeneId":100873180},{"hugoGeneSymbol":"MTND3P20","entrezGeneId":107075294},{"hugoGeneSymbol":"MTND3P21","entrezGeneId":107075198},{"hugoGeneSymbol":"MTND3P22","entrezGeneId":107075314},{"hugoGeneSymbol":"MTND3P23","entrezGeneId":107075295},{"hugoGeneSymbol":"MTND3P24","entrezGeneId":107075199},{"hugoGeneSymbol":"MTND3P25","entrezGeneId":107075297},{"hugoGeneSymbol":"MTND3P3","entrezGeneId":100873187},{"hugoGeneSymbol":"MTND3P4","entrezGeneId":100873181},{"hugoGeneSymbol":"MTND3P5","entrezGeneId":100873186},{"hugoGeneSymbol":"MTND3P6","entrezGeneId":100873182},{"hugoGeneSymbol":"MTND3P7","entrezGeneId":100873183},{"hugoGeneSymbol":"MTND3P8","entrezGeneId":100873185},{"hugoGeneSymbol":"MTND3P9","entrezGeneId":100873184},{"hugoGeneSymbol":"MTND4LP1","entrezGeneId":106478909},{"hugoGeneSymbol":"MTND4LP10","entrezGeneId":107075099},{"hugoGeneSymbol":"MTND4LP11","entrezGeneId":107075238},{"hugoGeneSymbol":"MTND4LP12","entrezGeneId":107075239},{"hugoGeneSymbol":"MTND4LP13","entrezGeneId":107075100},{"hugoGeneSymbol":"MTND4LP14","entrezGeneId":107075305},{"hugoGeneSymbol":"MTND4LP15","entrezGeneId":107131123},{"hugoGeneSymbol":"MTND4LP16","entrezGeneId":107075210},{"hugoGeneSymbol":"MTND4LP17","entrezGeneId":107075240},{"hugoGeneSymbol":"MTND4LP18","entrezGeneId":107075101},{"hugoGeneSymbol":"MTND4LP19","entrezGeneId":107075241},{"hugoGeneSymbol":"MTND4LP2","entrezGeneId":107075098},{"hugoGeneSymbol":"MTND4LP20","entrezGeneId":107075242},{"hugoGeneSymbol":"MTND4LP21","entrezGeneId":107075306},{"hugoGeneSymbol":"MTND4LP22","entrezGeneId":107075102},{"hugoGeneSymbol":"MTND4LP23","entrezGeneId":107133487},{"hugoGeneSymbol":"MTND4LP24","entrezGeneId":107075103},{"hugoGeneSymbol":"MTND4LP25","entrezGeneId":107075243},{"hugoGeneSymbol":"MTND4LP26","entrezGeneId":107075104},{"hugoGeneSymbol":"MTND4LP27","entrezGeneId":107133488},{"hugoGeneSymbol":"MTND4LP28","entrezGeneId":107133489},{"hugoGeneSymbol":"MTND4LP29","entrezGeneId":107133490},{"hugoGeneSymbol":"MTND4LP3","entrezGeneId":107075245},{"hugoGeneSymbol":"MTND4LP30","entrezGeneId":107075244},{"hugoGeneSymbol":"MTND4LP31","entrezGeneId":107075296},{"hugoGeneSymbol":"MTND4LP32","entrezGeneId":109729156},{"hugoGeneSymbol":"MTND4LP4","entrezGeneId":107131120},{"hugoGeneSymbol":"MTND4LP5","entrezGeneId":107075235},{"hugoGeneSymbol":"MTND4LP6","entrezGeneId":107131121},{"hugoGeneSymbol":"MTND4LP7","entrezGeneId":107075236},{"hugoGeneSymbol":"MTND4LP8","entrezGeneId":107131124},{"hugoGeneSymbol":"MTND4LP9","entrezGeneId":107075237},{"hugoGeneSymbol":"MTND4P1","entrezGeneId":100873211},{"hugoGeneSymbol":"MTND4P10","entrezGeneId":100873256},{"hugoGeneSymbol":"MTND4P11","entrezGeneId":100873255},{"hugoGeneSymbol":"MTND4P12","entrezGeneId":100293090},{"hugoGeneSymbol":"MTND4P13","entrezGeneId":100862853},{"hugoGeneSymbol":"MTND4P14","entrezGeneId":100653489},{"hugoGeneSymbol":"MTND4P15","entrezGeneId":100873240},{"hugoGeneSymbol":"MTND4P16","entrezGeneId":100873241},{"hugoGeneSymbol":"MTND4P17","entrezGeneId":100873242},{"hugoGeneSymbol":"MTND4P18","entrezGeneId":100873350},{"hugoGeneSymbol":"MTND4P19","entrezGeneId":100873351},{"hugoGeneSymbol":"MTND4P2","entrezGeneId":100873188},{"hugoGeneSymbol":"MTND4P20","entrezGeneId":100873352},{"hugoGeneSymbol":"MTND4P21","entrezGeneId":100873243},{"hugoGeneSymbol":"MTND4P22","entrezGeneId":100873244},{"hugoGeneSymbol":"MTND4P23","entrezGeneId":100873245},{"hugoGeneSymbol":"MTND4P24","entrezGeneId":100873254},{"hugoGeneSymbol":"MTND4P25","entrezGeneId":100873246},{"hugoGeneSymbol":"MTND4P26","entrezGeneId":100873247},{"hugoGeneSymbol":"MTND4P27","entrezGeneId":100873248},{"hugoGeneSymbol":"MTND4P28","entrezGeneId":100873249},{"hugoGeneSymbol":"MTND4P29","entrezGeneId":100873250},{"hugoGeneSymbol":"MTND4P3","entrezGeneId":100873189},{"hugoGeneSymbol":"MTND4P30","entrezGeneId":100873251},{"hugoGeneSymbol":"MTND4P31","entrezGeneId":100873252},{"hugoGeneSymbol":"MTND4P32","entrezGeneId":100873253},{"hugoGeneSymbol":"MTND4P33","entrezGeneId":107075253},{"hugoGeneSymbol":"MTND4P34","entrezGeneId":107075308},{"hugoGeneSymbol":"MTND4P35","entrezGeneId":107075117},{"hugoGeneSymbol":"MTND4P36","entrezGeneId":107403074},{"hugoGeneSymbol":"MTND4P37","entrezGeneId":112163599},{"hugoGeneSymbol":"MTND4P38","entrezGeneId":112272562},{"hugoGeneSymbol":"MTND4P39","entrezGeneId":112163524},{"hugoGeneSymbol":"MTND4P4","entrezGeneId":100873190},{"hugoGeneSymbol":"MTND4P40","entrezGeneId":112272547},{"hugoGeneSymbol":"MTND4P41","entrezGeneId":111188160},{"hugoGeneSymbol":"MTND4P5","entrezGeneId":100873191},{"hugoGeneSymbol":"MTND4P6","entrezGeneId":100873192},{"hugoGeneSymbol":"MTND4P7","entrezGeneId":100873195},{"hugoGeneSymbol":"MTND4P8","entrezGeneId":100873194},{"hugoGeneSymbol":"MTND4P9","entrezGeneId":100873193},{"hugoGeneSymbol":"MTND5P1","entrezGeneId":100873206},{"hugoGeneSymbol":"MTND5P10","entrezGeneId":643031},{"hugoGeneSymbol":"MTND5P11","entrezGeneId":100506169},{"hugoGeneSymbol":"MTND5P12","entrezGeneId":100873257},{"hugoGeneSymbol":"MTND5P13","entrezGeneId":100873272},{"hugoGeneSymbol":"MTND5P14","entrezGeneId":100873258},{"hugoGeneSymbol":"MTND5P15","entrezGeneId":100873259},{"hugoGeneSymbol":"MTND5P16","entrezGeneId":100862854},{"hugoGeneSymbol":"MTND5P17","entrezGeneId":100873353},{"hugoGeneSymbol":"MTND5P18","entrezGeneId":100873271},{"hugoGeneSymbol":"MTND5P19","entrezGeneId":100873270},{"hugoGeneSymbol":"MTND5P2","entrezGeneId":100873209},{"hugoGeneSymbol":"MTND5P20","entrezGeneId":100873269},{"hugoGeneSymbol":"MTND5P21","entrezGeneId":100873354},{"hugoGeneSymbol":"MTND5P22","entrezGeneId":100873260},{"hugoGeneSymbol":"MTND5P23","entrezGeneId":100873261},{"hugoGeneSymbol":"MTND5P24","entrezGeneId":100873262},{"hugoGeneSymbol":"MTND5P25","entrezGeneId":100873263},{"hugoGeneSymbol":"MTND5P26","entrezGeneId":100873268},{"hugoGeneSymbol":"MTND5P27","entrezGeneId":100873264},{"hugoGeneSymbol":"MTND5P28","entrezGeneId":100505755},{"hugoGeneSymbol":"MTND5P29","entrezGeneId":100873265},{"hugoGeneSymbol":"MTND5P3","entrezGeneId":100873210},{"hugoGeneSymbol":"MTND5P30","entrezGeneId":100873266},{"hugoGeneSymbol":"MTND5P31","entrezGeneId":100873267},{"hugoGeneSymbol":"MTND5P32","entrezGeneId":107075254},{"hugoGeneSymbol":"MTND5P33","entrezGeneId":107075118},{"hugoGeneSymbol":"MTND5P34","entrezGeneId":107075255},{"hugoGeneSymbol":"MTND5P35","entrezGeneId":107075119},{"hugoGeneSymbol":"MTND5P36","entrezGeneId":107133491},{"hugoGeneSymbol":"MTND5P37","entrezGeneId":107133493},{"hugoGeneSymbol":"MTND5P38","entrezGeneId":107133495},{"hugoGeneSymbol":"MTND5P39","entrezGeneId":107133496},{"hugoGeneSymbol":"MTND5P4","entrezGeneId":100873200},{"hugoGeneSymbol":"MTND5P40","entrezGeneId":107075256},{"hugoGeneSymbol":"MTND5P41","entrezGeneId":107075309},{"hugoGeneSymbol":"MTND5P42","entrezGeneId":109729157},{"hugoGeneSymbol":"MTND5P43","entrezGeneId":111188140},{"hugoGeneSymbol":"MTND5P44","entrezGeneId":112163614},{"hugoGeneSymbol":"MTND5P45","entrezGeneId":111188162},{"hugoGeneSymbol":"MTND5P5","entrezGeneId":100873201},{"hugoGeneSymbol":"MTND5P6","entrezGeneId":100873196},{"hugoGeneSymbol":"MTND5P7","entrezGeneId":100873197},{"hugoGeneSymbol":"MTND5P8","entrezGeneId":100873198},{"hugoGeneSymbol":"MTND5P9","entrezGeneId":100873199},{"hugoGeneSymbol":"MTND6P1","entrezGeneId":100499469},{"hugoGeneSymbol":"MTND6P10","entrezGeneId":106478947},{"hugoGeneSymbol":"MTND6P11","entrezGeneId":106480727},{"hugoGeneSymbol":"MTND6P12","entrezGeneId":106481743},{"hugoGeneSymbol":"MTND6P13","entrezGeneId":106480428},{"hugoGeneSymbol":"MTND6P14","entrezGeneId":106478948},{"hugoGeneSymbol":"MTND6P15","entrezGeneId":106478949},{"hugoGeneSymbol":"MTND6P16","entrezGeneId":106478950},{"hugoGeneSymbol":"MTND6P17","entrezGeneId":106480728},{"hugoGeneSymbol":"MTND6P18","entrezGeneId":106478951},{"hugoGeneSymbol":"MTND6P19","entrezGeneId":106481788},{"hugoGeneSymbol":"MTND6P2","entrezGeneId":106478941},{"hugoGeneSymbol":"MTND6P20","entrezGeneId":106478952},{"hugoGeneSymbol":"MTND6P21","entrezGeneId":100873332},{"hugoGeneSymbol":"MTND6P22","entrezGeneId":107075261},{"hugoGeneSymbol":"MTND6P23","entrezGeneId":107133498},{"hugoGeneSymbol":"MTND6P24","entrezGeneId":107063611},{"hugoGeneSymbol":"MTND6P25","entrezGeneId":107075262},{"hugoGeneSymbol":"MTND6P26","entrezGeneId":107133500},{"hugoGeneSymbol":"MTND6P27","entrezGeneId":107133501},{"hugoGeneSymbol":"MTND6P28","entrezGeneId":107133503},{"hugoGeneSymbol":"MTND6P29","entrezGeneId":107133504},{"hugoGeneSymbol":"MTND6P3","entrezGeneId":106478942},{"hugoGeneSymbol":"MTND6P30","entrezGeneId":107133505},{"hugoGeneSymbol":"MTND6P31","entrezGeneId":107133507},{"hugoGeneSymbol":"MTND6P32","entrezGeneId":107075200},{"hugoGeneSymbol":"MTND6P33","entrezGeneId":107075298},{"hugoGeneSymbol":"MTND6P34","entrezGeneId":112268489},{"hugoGeneSymbol":"MTND6P35","entrezGeneId":112163686},{"hugoGeneSymbol":"MTND6P4","entrezGeneId":106478943},{"hugoGeneSymbol":"MTND6P5","entrezGeneId":106480427},{"hugoGeneSymbol":"MTND6P6","entrezGeneId":106478944},{"hugoGeneSymbol":"MTND6P7","entrezGeneId":106478945},{"hugoGeneSymbol":"MTND6P8","entrezGeneId":106480726},{"hugoGeneSymbol":"MTND6P9","entrezGeneId":106478946},{"hugoGeneSymbol":"MTNR1A","entrezGeneId":4543},{"hugoGeneSymbol":"MTNR1B","entrezGeneId":4544},{"hugoGeneSymbol":"MTO1","entrezGeneId":25821},{"hugoGeneSymbol":"MTOR","entrezGeneId":2475},{"hugoGeneSymbol":"MTOR-AS1","entrezGeneId":100873935},{"hugoGeneSymbol":"MTPAP","entrezGeneId":55149},{"hugoGeneSymbol":"MTPN","entrezGeneId":136319},{"hugoGeneSymbol":"MTPN-LUZP6","entrezGeneId":100169881},{"hugoGeneSymbol":"MTR","entrezGeneId":4548},{"hugoGeneSymbol":"MTREX","entrezGeneId":23517},{"hugoGeneSymbol":"MTRF1","entrezGeneId":9617},{"hugoGeneSymbol":"MTRF1L","entrezGeneId":54516},{"hugoGeneSymbol":"MTRF1LP1","entrezGeneId":100132520},{"hugoGeneSymbol":"MTRF1LP2","entrezGeneId":100130376},{"hugoGeneSymbol":"MTRNR2L1","entrezGeneId":100462977},{"hugoGeneSymbol":"MTRNR2L10","entrezGeneId":100463488},{"hugoGeneSymbol":"MTRNR2L11","entrezGeneId":100463489},{"hugoGeneSymbol":"MTRNR2L12","entrezGeneId":100463498},{"hugoGeneSymbol":"MTRNR2L13","entrezGeneId":100463500},{"hugoGeneSymbol":"MTRNR2L2","entrezGeneId":100462981},{"hugoGeneSymbol":"MTRNR2L3","entrezGeneId":100462983},{"hugoGeneSymbol":"MTRNR2L4","entrezGeneId":100463285},{"hugoGeneSymbol":"MTRNR2L5","entrezGeneId":100463289},{"hugoGeneSymbol":"MTRNR2L6","entrezGeneId":100463482},{"hugoGeneSymbol":"MTRNR2L7","entrezGeneId":100288485},{"hugoGeneSymbol":"MTRNR2L8","entrezGeneId":100463486},{"hugoGeneSymbol":"MTRNR2L9","entrezGeneId":100463487},{"hugoGeneSymbol":"MTRR","entrezGeneId":4552},{"hugoGeneSymbol":"MTSS1","entrezGeneId":9788},{"hugoGeneSymbol":"MTSS1L","entrezGeneId":92154},{"hugoGeneSymbol":"MTTP","entrezGeneId":4547},{"hugoGeneSymbol":"MTURN","entrezGeneId":222166},{"hugoGeneSymbol":"MTUS1","entrezGeneId":57509},{"hugoGeneSymbol":"MTUS2","entrezGeneId":23281},{"hugoGeneSymbol":"MTUS2-AS1","entrezGeneId":100874107},{"hugoGeneSymbol":"MTUS2-AS2","entrezGeneId":100874106},{"hugoGeneSymbol":"MTVR2","entrezGeneId":246754},{"hugoGeneSymbol":"MTX1","entrezGeneId":4580},{"hugoGeneSymbol":"MTX1P1","entrezGeneId":4581},{"hugoGeneSymbol":"MTX2","entrezGeneId":10651},{"hugoGeneSymbol":"MTX3","entrezGeneId":345778},{"hugoGeneSymbol":"MUC1","entrezGeneId":4582},{"hugoGeneSymbol":"MUC12","entrezGeneId":10071},{"hugoGeneSymbol":"MUC13","entrezGeneId":56667},{"hugoGeneSymbol":"MUC15","entrezGeneId":143662},{"hugoGeneSymbol":"MUC16","entrezGeneId":94025},{"hugoGeneSymbol":"MUC17","entrezGeneId":140453},{"hugoGeneSymbol":"MUC19","entrezGeneId":283463},{"hugoGeneSymbol":"MUC2","entrezGeneId":4583},{"hugoGeneSymbol":"MUC20","entrezGeneId":200958},{"hugoGeneSymbol":"MUC20-OT1","entrezGeneId":111753249},{"hugoGeneSymbol":"MUC20P1","entrezGeneId":651714},{"hugoGeneSymbol":"MUC21","entrezGeneId":394263},{"hugoGeneSymbol":"MUC22","entrezGeneId":100507679},{"hugoGeneSymbol":"MUC3A","entrezGeneId":4584},{"hugoGeneSymbol":"MUC3B","entrezGeneId":57876},{"hugoGeneSymbol":"MUC4","entrezGeneId":4585},{"hugoGeneSymbol":"MUC5AC","entrezGeneId":4586},{"hugoGeneSymbol":"MUC5B","entrezGeneId":727897},{"hugoGeneSymbol":"MUC6","entrezGeneId":4588},{"hugoGeneSymbol":"MUC7","entrezGeneId":4589},{"hugoGeneSymbol":"MUC8","entrezGeneId":100129528},{"hugoGeneSymbol":"MUCL1","entrezGeneId":118430},{"hugoGeneSymbol":"MUCL3","entrezGeneId":135656},{"hugoGeneSymbol":"MUHH2","entrezGeneId":100302560},{"hugoGeneSymbol":"MUL1","entrezGeneId":79594},{"hugoGeneSymbol":"MUM1","entrezGeneId":84939},{"hugoGeneSymbol":"MUM1L1","entrezGeneId":139221},{"hugoGeneSymbol":"MUPP","entrezGeneId":100129193},{"hugoGeneSymbol":"MUS81","entrezGeneId":80198},{"hugoGeneSymbol":"MUSK","entrezGeneId":4593},{"hugoGeneSymbol":"MUSQTL1","entrezGeneId":100192307},{"hugoGeneSymbol":"MUSTN1","entrezGeneId":389125},{"hugoGeneSymbol":"MUSTQTL1","entrezGeneId":100192311},{"hugoGeneSymbol":"MUT","entrezGeneId":4594},{"hugoGeneSymbol":"MUTYH","entrezGeneId":4595},{"hugoGeneSymbol":"MVB12A","entrezGeneId":93343},{"hugoGeneSymbol":"MVB12B","entrezGeneId":89853},{"hugoGeneSymbol":"MVD","entrezGeneId":4597},{"hugoGeneSymbol":"MVK","entrezGeneId":4598},{"hugoGeneSymbol":"MVP","entrezGeneId":9961},{"hugoGeneSymbol":"MX1","entrezGeneId":4599},{"hugoGeneSymbol":"MX2","entrezGeneId":4600},{"hugoGeneSymbol":"MXD1","entrezGeneId":4084},{"hugoGeneSymbol":"MXD3","entrezGeneId":83463},{"hugoGeneSymbol":"MXD4","entrezGeneId":10608},{"hugoGeneSymbol":"MXI1","entrezGeneId":4601},{"hugoGeneSymbol":"MXRA5","entrezGeneId":25878},{"hugoGeneSymbol":"MXRA5Y","entrezGeneId":286544},{"hugoGeneSymbol":"MXRA7","entrezGeneId":439921},{"hugoGeneSymbol":"MXRA8","entrezGeneId":54587},{"hugoGeneSymbol":"MYADM","entrezGeneId":91663},{"hugoGeneSymbol":"MYADML","entrezGeneId":151325},{"hugoGeneSymbol":"MYADML2","entrezGeneId":255275},{"hugoGeneSymbol":"MYAS1","entrezGeneId":246750},{"hugoGeneSymbol":"MYB","entrezGeneId":4602},{"hugoGeneSymbol":"MYB-AS1","entrezGeneId":100873904},{"hugoGeneSymbol":"MYBBP1A","entrezGeneId":10514},{"hugoGeneSymbol":"MYBL1","entrezGeneId":4603},{"hugoGeneSymbol":"MYBL2","entrezGeneId":4605},{"hugoGeneSymbol":"MYBPC1","entrezGeneId":4604},{"hugoGeneSymbol":"MYBPC2","entrezGeneId":4606},{"hugoGeneSymbol":"MYBPC3","entrezGeneId":4607},{"hugoGeneSymbol":"MYBPH","entrezGeneId":4608},{"hugoGeneSymbol":"MYBPHL","entrezGeneId":343263},{"hugoGeneSymbol":"MYC","entrezGeneId":4609},{"hugoGeneSymbol":"MYCBP","entrezGeneId":26292},{"hugoGeneSymbol":"MYCBP2","entrezGeneId":23077},{"hugoGeneSymbol":"MYCBP2-AS1","entrezGeneId":100874212},{"hugoGeneSymbol":"MYCBP2-AS2","entrezGeneId":100874213},{"hugoGeneSymbol":"MYCBPAP","entrezGeneId":84073},{"hugoGeneSymbol":"MYCL","entrezGeneId":4610},{"hugoGeneSymbol":"MYCLP1","entrezGeneId":4611},{"hugoGeneSymbol":"MYCLP2","entrezGeneId":645136},{"hugoGeneSymbol":"MYCLP3","entrezGeneId":9964},{"hugoGeneSymbol":"MYCN","entrezGeneId":4613},{"hugoGeneSymbol":"MYCNOS","entrezGeneId":10408},{"hugoGeneSymbol":"MYCNUT","entrezGeneId":103752554},{"hugoGeneSymbol":"MYCT1","entrezGeneId":80177},{"hugoGeneSymbol":"MYD88","entrezGeneId":4615},{"hugoGeneSymbol":"MYDGF","entrezGeneId":56005},{"hugoGeneSymbol":"MYEF2","entrezGeneId":50804},{"hugoGeneSymbol":"MYEOV","entrezGeneId":26579},{"hugoGeneSymbol":"MYF5","entrezGeneId":4617},{"hugoGeneSymbol":"MYF6","entrezGeneId":4618},{"hugoGeneSymbol":"MYH1","entrezGeneId":4619},{"hugoGeneSymbol":"MYH10","entrezGeneId":4628},{"hugoGeneSymbol":"MYH11","entrezGeneId":4629},{"hugoGeneSymbol":"MYH13","entrezGeneId":8735},{"hugoGeneSymbol":"MYH14","entrezGeneId":79784},{"hugoGeneSymbol":"MYH15","entrezGeneId":22989},{"hugoGeneSymbol":"MYH16","entrezGeneId":84176},{"hugoGeneSymbol":"MYH2","entrezGeneId":4620},{"hugoGeneSymbol":"MYH3","entrezGeneId":4621},{"hugoGeneSymbol":"MYH4","entrezGeneId":4622},{"hugoGeneSymbol":"MYH6","entrezGeneId":4624},{"hugoGeneSymbol":"MYH7","entrezGeneId":4625},{"hugoGeneSymbol":"MYH7B","entrezGeneId":57644},{"hugoGeneSymbol":"MYH8","entrezGeneId":4626},{"hugoGeneSymbol":"MYH9","entrezGeneId":4627},{"hugoGeneSymbol":"MYHAS","entrezGeneId":100128560},{"hugoGeneSymbol":"MYL1","entrezGeneId":4632},{"hugoGeneSymbol":"MYL10","entrezGeneId":93408},{"hugoGeneSymbol":"MYL12A","entrezGeneId":10627},{"hugoGeneSymbol":"MYL12AP1","entrezGeneId":157667},{"hugoGeneSymbol":"MYL12B","entrezGeneId":103910},{"hugoGeneSymbol":"MYL12BP1","entrezGeneId":645094},{"hugoGeneSymbol":"MYL12BP2","entrezGeneId":391722},{"hugoGeneSymbol":"MYL2","entrezGeneId":4633},{"hugoGeneSymbol":"MYL3","entrezGeneId":4634},{"hugoGeneSymbol":"MYL4","entrezGeneId":4635},{"hugoGeneSymbol":"MYL5","entrezGeneId":4636},{"hugoGeneSymbol":"MYL6","entrezGeneId":4637},{"hugoGeneSymbol":"MYL6B","entrezGeneId":140465},{"hugoGeneSymbol":"MYL6BP1","entrezGeneId":100422437},{"hugoGeneSymbol":"MYL6P1","entrezGeneId":54043},{"hugoGeneSymbol":"MYL6P2","entrezGeneId":100431168},{"hugoGeneSymbol":"MYL6P3","entrezGeneId":100129561},{"hugoGeneSymbol":"MYL6P4","entrezGeneId":642627},{"hugoGeneSymbol":"MYL6P5","entrezGeneId":124685},{"hugoGeneSymbol":"MYL7","entrezGeneId":58498},{"hugoGeneSymbol":"MYL8P","entrezGeneId":442204},{"hugoGeneSymbol":"MYL9","entrezGeneId":10398},{"hugoGeneSymbol":"MYLIP","entrezGeneId":29116},{"hugoGeneSymbol":"MYLK","entrezGeneId":4638},{"hugoGeneSymbol":"MYLK-AS1","entrezGeneId":100506826},{"hugoGeneSymbol":"MYLK-AS2","entrezGeneId":100873940},{"hugoGeneSymbol":"MYLK2","entrezGeneId":85366},{"hugoGeneSymbol":"MYLK3","entrezGeneId":91807},{"hugoGeneSymbol":"MYLK4","entrezGeneId":340156},{"hugoGeneSymbol":"MYLKP1","entrezGeneId":9430},{"hugoGeneSymbol":"MYLPF","entrezGeneId":29895},{"hugoGeneSymbol":"MYMK","entrezGeneId":389827},{"hugoGeneSymbol":"MYMX","entrezGeneId":101929726},{"hugoGeneSymbol":"MYMY1","entrezGeneId":50960},{"hugoGeneSymbol":"MYMY3","entrezGeneId":493818},{"hugoGeneSymbol":"MYMY4","entrezGeneId":100653379},{"hugoGeneSymbol":"MYNN","entrezGeneId":55892},{"hugoGeneSymbol":"MYO10","entrezGeneId":4651},{"hugoGeneSymbol":"MYO15A","entrezGeneId":51168},{"hugoGeneSymbol":"MYO15B","entrezGeneId":80022},{"hugoGeneSymbol":"MYO16","entrezGeneId":23026},{"hugoGeneSymbol":"MYO16-AS1","entrezGeneId":100885782},{"hugoGeneSymbol":"MYO16-AS2","entrezGeneId":100874067},{"hugoGeneSymbol":"MYO18A","entrezGeneId":399687},{"hugoGeneSymbol":"MYO18B","entrezGeneId":84700},{"hugoGeneSymbol":"MYO19","entrezGeneId":80179},{"hugoGeneSymbol":"MYO1A","entrezGeneId":4640},{"hugoGeneSymbol":"MYO1B","entrezGeneId":4430},{"hugoGeneSymbol":"MYO1C","entrezGeneId":4641},{"hugoGeneSymbol":"MYO1D","entrezGeneId":4642},{"hugoGeneSymbol":"MYO1E","entrezGeneId":4643},{"hugoGeneSymbol":"MYO1F","entrezGeneId":4542},{"hugoGeneSymbol":"MYO1G","entrezGeneId":64005},{"hugoGeneSymbol":"MYO1H","entrezGeneId":283446},{"hugoGeneSymbol":"MYO3A","entrezGeneId":53904},{"hugoGeneSymbol":"MYO3B","entrezGeneId":140469},{"hugoGeneSymbol":"MYO5A","entrezGeneId":4644},{"hugoGeneSymbol":"MYO5B","entrezGeneId":4645},{"hugoGeneSymbol":"MYO5BP1","entrezGeneId":441420},{"hugoGeneSymbol":"MYO5BP2","entrezGeneId":392335},{"hugoGeneSymbol":"MYO5BP3","entrezGeneId":441442},{"hugoGeneSymbol":"MYO5C","entrezGeneId":55930},{"hugoGeneSymbol":"MYO6","entrezGeneId":4646},{"hugoGeneSymbol":"MYO7A","entrezGeneId":4647},{"hugoGeneSymbol":"MYO7B","entrezGeneId":4648},{"hugoGeneSymbol":"MYO9A","entrezGeneId":4649},{"hugoGeneSymbol":"MYO9B","entrezGeneId":4650},{"hugoGeneSymbol":"MYOC","entrezGeneId":4653},{"hugoGeneSymbol":"MYOCD","entrezGeneId":93649},{"hugoGeneSymbol":"MYOCOS","entrezGeneId":110806290},{"hugoGeneSymbol":"MYOD1","entrezGeneId":4654},{"hugoGeneSymbol":"MYOF","entrezGeneId":26509},{"hugoGeneSymbol":"MYOG","entrezGeneId":4656},{"hugoGeneSymbol":"MYOM1","entrezGeneId":8736},{"hugoGeneSymbol":"MYOM2","entrezGeneId":9172},{"hugoGeneSymbol":"MYOM3","entrezGeneId":127294},{"hugoGeneSymbol":"MYORG","entrezGeneId":57462},{"hugoGeneSymbol":"MYOSLID","entrezGeneId":105373853},{"hugoGeneSymbol":"MYOT","entrezGeneId":9499},{"hugoGeneSymbol":"MYOZ1","entrezGeneId":58529},{"hugoGeneSymbol":"MYOZ2","entrezGeneId":51778},{"hugoGeneSymbol":"MYOZ3","entrezGeneId":91977},{"hugoGeneSymbol":"MYP1","entrezGeneId":4657},{"hugoGeneSymbol":"MYP10","entrezGeneId":553195},{"hugoGeneSymbol":"MYP11","entrezGeneId":594832},{"hugoGeneSymbol":"MYP12","entrezGeneId":664780},{"hugoGeneSymbol":"MYP13","entrezGeneId":677764},{"hugoGeneSymbol":"MYP14","entrezGeneId":100359407},{"hugoGeneSymbol":"MYP15","entrezGeneId":100294716},{"hugoGeneSymbol":"MYP16","entrezGeneId":100270641},{"hugoGeneSymbol":"MYP17","entrezGeneId":100359401},{"hugoGeneSymbol":"MYP18","entrezGeneId":100359406},{"hugoGeneSymbol":"MYP19","entrezGeneId":100653370},{"hugoGeneSymbol":"MYP2","entrezGeneId":4658},{"hugoGeneSymbol":"MYP20","entrezGeneId":100682326},{"hugoGeneSymbol":"MYP3","entrezGeneId":8782},{"hugoGeneSymbol":"MYP4","entrezGeneId":393093},{"hugoGeneSymbol":"MYP5","entrezGeneId":404682},{"hugoGeneSymbol":"MYP7","entrezGeneId":553190},{"hugoGeneSymbol":"MYP8","entrezGeneId":553192},{"hugoGeneSymbol":"MYP9","entrezGeneId":553194},{"hugoGeneSymbol":"MYPN","entrezGeneId":84665},{"hugoGeneSymbol":"MYPOP","entrezGeneId":339344},{"hugoGeneSymbol":"MYRF","entrezGeneId":745},{"hugoGeneSymbol":"MYRFL","entrezGeneId":196446},{"hugoGeneSymbol":"MYRIP","entrezGeneId":25924},{"hugoGeneSymbol":"MYSA","entrezGeneId":4655},{"hugoGeneSymbol":"MYSM1","entrezGeneId":114803},{"hugoGeneSymbol":"MYT1","entrezGeneId":4661},{"hugoGeneSymbol":"MYT1L","entrezGeneId":23040},{"hugoGeneSymbol":"MYT1L-AS1","entrezGeneId":730811},{"hugoGeneSymbol":"MYZAP","entrezGeneId":100820829},{"hugoGeneSymbol":"MZB1","entrezGeneId":51237},{"hugoGeneSymbol":"MZF1","entrezGeneId":7593},{"hugoGeneSymbol":"MZF1-AS1","entrezGeneId":100131691},{"hugoGeneSymbol":"MZT1","entrezGeneId":440145},{"hugoGeneSymbol":"MZT1P1","entrezGeneId":106480302},{"hugoGeneSymbol":"MZT1P2","entrezGeneId":101929581},{"hugoGeneSymbol":"MZT2A","entrezGeneId":653784},{"hugoGeneSymbol":"MZT2B","entrezGeneId":80097},{"hugoGeneSymbol":"N4BP1","entrezGeneId":9683},{"hugoGeneSymbol":"N4BP2","entrezGeneId":55728},{"hugoGeneSymbol":"N4BP2L1","entrezGeneId":90634},{"hugoGeneSymbol":"N4BP2L2","entrezGeneId":10443},{"hugoGeneSymbol":"N4BP2L2-IT2","entrezGeneId":116828},{"hugoGeneSymbol":"N4BP3","entrezGeneId":23138},{"hugoGeneSymbol":"N6AMT1","entrezGeneId":29104},{"hugoGeneSymbol":"NAA10","entrezGeneId":8260},{"hugoGeneSymbol":"NAA11","entrezGeneId":84779},{"hugoGeneSymbol":"NAA15","entrezGeneId":80155},{"hugoGeneSymbol":"NAA16","entrezGeneId":79612},{"hugoGeneSymbol":"NAA20","entrezGeneId":51126},{"hugoGeneSymbol":"NAA25","entrezGeneId":80018},{"hugoGeneSymbol":"NAA30","entrezGeneId":122830},{"hugoGeneSymbol":"NAA35","entrezGeneId":60560},{"hugoGeneSymbol":"NAA38","entrezGeneId":84316},{"hugoGeneSymbol":"NAA40","entrezGeneId":79829},{"hugoGeneSymbol":"NAA50","entrezGeneId":80218},{"hugoGeneSymbol":"NAA60","entrezGeneId":79903},{"hugoGeneSymbol":"NAAA","entrezGeneId":27163},{"hugoGeneSymbol":"NAALAD2","entrezGeneId":10003},{"hugoGeneSymbol":"NAALADL1","entrezGeneId":10004},{"hugoGeneSymbol":"NAALADL2","entrezGeneId":254827},{"hugoGeneSymbol":"NAALADL2-AS1","entrezGeneId":100874245},{"hugoGeneSymbol":"NAALADL2-AS2","entrezGeneId":100874244},{"hugoGeneSymbol":"NAALADL2-AS3","entrezGeneId":100862679},{"hugoGeneSymbol":"NAB1","entrezGeneId":4664},{"hugoGeneSymbol":"NAB2","entrezGeneId":4665},{"hugoGeneSymbol":"NABP1","entrezGeneId":64859},{"hugoGeneSymbol":"NABP2","entrezGeneId":79035},{"hugoGeneSymbol":"NACA","entrezGeneId":4666},{"hugoGeneSymbol":"NACA2","entrezGeneId":342538},{"hugoGeneSymbol":"NACA3P","entrezGeneId":389240},{"hugoGeneSymbol":"NACAD","entrezGeneId":23148},{"hugoGeneSymbol":"NACAP1","entrezGeneId":83955},{"hugoGeneSymbol":"NACAP2","entrezGeneId":651144},{"hugoGeneSymbol":"NACAP3","entrezGeneId":101928685},{"hugoGeneSymbol":"NACAP4","entrezGeneId":100421926},{"hugoGeneSymbol":"NACAP5","entrezGeneId":645108},{"hugoGeneSymbol":"NACAP6","entrezGeneId":100132778},{"hugoGeneSymbol":"NACAP7","entrezGeneId":101059973},{"hugoGeneSymbol":"NACC1","entrezGeneId":112939},{"hugoGeneSymbol":"NACC2","entrezGeneId":138151},{"hugoGeneSymbol":"NADK","entrezGeneId":65220},{"hugoGeneSymbol":"NADK2","entrezGeneId":133686},{"hugoGeneSymbol":"NADK2-AS1","entrezGeneId":101056700},{"hugoGeneSymbol":"NADSYN1","entrezGeneId":55191},{"hugoGeneSymbol":"NAE1","entrezGeneId":8883},{"hugoGeneSymbol":"NAF1","entrezGeneId":92345},{"hugoGeneSymbol":"NAFLD1","entrezGeneId":100380876},{"hugoGeneSymbol":"NAFLD2","entrezGeneId":100462725},{"hugoGeneSymbol":"NAGA","entrezGeneId":4668},{"hugoGeneSymbol":"NAGK","entrezGeneId":55577},{"hugoGeneSymbol":"NAGLU","entrezGeneId":4669},{"hugoGeneSymbol":"NAGPA","entrezGeneId":51172},{"hugoGeneSymbol":"NAGPA-AS1","entrezGeneId":100507589},{"hugoGeneSymbol":"NAGS","entrezGeneId":162417},{"hugoGeneSymbol":"NAIF1","entrezGeneId":203245},{"hugoGeneSymbol":"NAIP","entrezGeneId":4671},{"hugoGeneSymbol":"NALCN","entrezGeneId":259232},{"hugoGeneSymbol":"NALCN-AS1","entrezGeneId":100885778},{"hugoGeneSymbol":"NALT1","entrezGeneId":101928483},{"hugoGeneSymbol":"NAMA","entrezGeneId":100996569},{"hugoGeneSymbol":"NAMPT","entrezGeneId":10135},{"hugoGeneSymbol":"NAMPTP1","entrezGeneId":646309},{"hugoGeneSymbol":"NAMPTP2","entrezGeneId":100132712},{"hugoGeneSymbol":"NAMPTP3","entrezGeneId":106480319},{"hugoGeneSymbol":"NANOG","entrezGeneId":79923},{"hugoGeneSymbol":"NANOGNB","entrezGeneId":360030},{"hugoGeneSymbol":"NANOGNBP1","entrezGeneId":100859926},{"hugoGeneSymbol":"NANOGNBP2","entrezGeneId":101060006},{"hugoGeneSymbol":"NANOGNBP3","entrezGeneId":100652831},{"hugoGeneSymbol":"NANOGP1","entrezGeneId":404635},{"hugoGeneSymbol":"NANOGP10","entrezGeneId":349372},{"hugoGeneSymbol":"NANOGP11","entrezGeneId":414135},{"hugoGeneSymbol":"NANOGP2","entrezGeneId":414131},{"hugoGeneSymbol":"NANOGP3","entrezGeneId":340217},{"hugoGeneSymbol":"NANOGP4","entrezGeneId":414132},{"hugoGeneSymbol":"NANOGP5","entrezGeneId":414133},{"hugoGeneSymbol":"NANOGP6","entrezGeneId":414134},{"hugoGeneSymbol":"NANOGP7","entrezGeneId":414130},{"hugoGeneSymbol":"NANOGP8","entrezGeneId":388112},{"hugoGeneSymbol":"NANOGP9","entrezGeneId":349386},{"hugoGeneSymbol":"NANOS1","entrezGeneId":340719},{"hugoGeneSymbol":"NANOS2","entrezGeneId":339345},{"hugoGeneSymbol":"NANOS3","entrezGeneId":342977},{"hugoGeneSymbol":"NANP","entrezGeneId":140838},{"hugoGeneSymbol":"NANS","entrezGeneId":54187},{"hugoGeneSymbol":"NAP1L1","entrezGeneId":4673},{"hugoGeneSymbol":"NAP1L1P1","entrezGeneId":729561},{"hugoGeneSymbol":"NAP1L1P2","entrezGeneId":100128894},{"hugoGeneSymbol":"NAP1L1P3","entrezGeneId":100130335},{"hugoGeneSymbol":"NAP1L2","entrezGeneId":4674},{"hugoGeneSymbol":"NAP1L3","entrezGeneId":4675},{"hugoGeneSymbol":"NAP1L4","entrezGeneId":4676},{"hugoGeneSymbol":"NAP1L4P1","entrezGeneId":728589},{"hugoGeneSymbol":"NAP1L4P2","entrezGeneId":100874319},{"hugoGeneSymbol":"NAP1L4P3","entrezGeneId":730174},{"hugoGeneSymbol":"NAP1L5","entrezGeneId":266812},{"hugoGeneSymbol":"NAP1L6","entrezGeneId":645996},{"hugoGeneSymbol":"NAPA","entrezGeneId":8775},{"hugoGeneSymbol":"NAPA-AS1","entrezGeneId":100505681},{"hugoGeneSymbol":"NAPB","entrezGeneId":63908},{"hugoGeneSymbol":"NAPEPLD","entrezGeneId":222236},{"hugoGeneSymbol":"NAPG","entrezGeneId":8774},{"hugoGeneSymbol":"NAPGP1","entrezGeneId":100288843},{"hugoGeneSymbol":"NAPGP2","entrezGeneId":100422429},{"hugoGeneSymbol":"NAPRT","entrezGeneId":93100},{"hugoGeneSymbol":"NAPSA","entrezGeneId":9476},{"hugoGeneSymbol":"NAPSB","entrezGeneId":256236},{"hugoGeneSymbol":"NARF","entrezGeneId":26502},{"hugoGeneSymbol":"NARF-AS1","entrezGeneId":111082991},{"hugoGeneSymbol":"NARF-IT1","entrezGeneId":100506001},{"hugoGeneSymbol":"NARFL","entrezGeneId":64428},{"hugoGeneSymbol":"NARS","entrezGeneId":4677},{"hugoGeneSymbol":"NARS2","entrezGeneId":79731},{"hugoGeneSymbol":"NARSP1","entrezGeneId":319127},{"hugoGeneSymbol":"NARSP2","entrezGeneId":100287895},{"hugoGeneSymbol":"NASP","entrezGeneId":4678},{"hugoGeneSymbol":"NASPP1","entrezGeneId":282694},{"hugoGeneSymbol":"NAT1","entrezGeneId":9},{"hugoGeneSymbol":"NAT10","entrezGeneId":55226},{"hugoGeneSymbol":"NAT14","entrezGeneId":57106},{"hugoGeneSymbol":"NAT16","entrezGeneId":375607},{"hugoGeneSymbol":"NAT2","entrezGeneId":10},{"hugoGeneSymbol":"NAT6","entrezGeneId":24142},{"hugoGeneSymbol":"NAT8","entrezGeneId":9027},{"hugoGeneSymbol":"NAT8B","entrezGeneId":51471},{"hugoGeneSymbol":"NAT8L","entrezGeneId":339983},{"hugoGeneSymbol":"NAT9","entrezGeneId":26151},{"hugoGeneSymbol":"NATD1","entrezGeneId":256302},{"hugoGeneSymbol":"NATP","entrezGeneId":11},{"hugoGeneSymbol":"NAV1","entrezGeneId":89796},{"hugoGeneSymbol":"NAV2","entrezGeneId":89797},{"hugoGeneSymbol":"NAV2-AS1","entrezGeneId":100874015},{"hugoGeneSymbol":"NAV2-AS2","entrezGeneId":100874014},{"hugoGeneSymbol":"NAV2-AS3","entrezGeneId":100874013},{"hugoGeneSymbol":"NAV2-AS4","entrezGeneId":399876},{"hugoGeneSymbol":"NAV2-AS5","entrezGeneId":100874012},{"hugoGeneSymbol":"NAV2-IT1","entrezGeneId":100874305},{"hugoGeneSymbol":"NAV3","entrezGeneId":89795},{"hugoGeneSymbol":"NAXD","entrezGeneId":55739},{"hugoGeneSymbol":"NAXE","entrezGeneId":128240},{"hugoGeneSymbol":"NBAS","entrezGeneId":51594},{"hugoGeneSymbol":"NBAT1","entrezGeneId":729177},{"hugoGeneSymbol":"NBDY","entrezGeneId":550643},{"hugoGeneSymbol":"NBEA","entrezGeneId":26960},{"hugoGeneSymbol":"NBEAL1","entrezGeneId":65065},{"hugoGeneSymbol":"NBEAL2","entrezGeneId":23218},{"hugoGeneSymbol":"NBEAP1","entrezGeneId":606},{"hugoGeneSymbol":"NBEAP2","entrezGeneId":100418881},{"hugoGeneSymbol":"NBEAP3","entrezGeneId":100418905},{"hugoGeneSymbol":"NBEAP4","entrezGeneId":100418897},{"hugoGeneSymbol":"NBEAP5","entrezGeneId":100418903},{"hugoGeneSymbol":"NBEAP6","entrezGeneId":100418904},{"hugoGeneSymbol":"NBL1","entrezGeneId":4681},{"hugoGeneSymbol":"NBLST4","entrezGeneId":100306937},{"hugoGeneSymbol":"NBLST5","entrezGeneId":100306938},{"hugoGeneSymbol":"NBLST6","entrezGeneId":100306939},{"hugoGeneSymbol":"NBLST7","entrezGeneId":107181289},{"hugoGeneSymbol":"NBN","entrezGeneId":4683},{"hugoGeneSymbol":"NBPF1","entrezGeneId":55672},{"hugoGeneSymbol":"NBPF10","entrezGeneId":100132406},{"hugoGeneSymbol":"NBPF11","entrezGeneId":200030},{"hugoGeneSymbol":"NBPF12","entrezGeneId":149013},{"hugoGeneSymbol":"NBPF13P","entrezGeneId":644861},{"hugoGeneSymbol":"NBPF14","entrezGeneId":25832},{"hugoGeneSymbol":"NBPF15","entrezGeneId":284565},{"hugoGeneSymbol":"NBPF17P","entrezGeneId":401967},{"hugoGeneSymbol":"NBPF18P","entrezGeneId":441908},{"hugoGeneSymbol":"NBPF19","entrezGeneId":101060226},{"hugoGeneSymbol":"NBPF20","entrezGeneId":100288142},{"hugoGeneSymbol":"NBPF21P","entrezGeneId":205655},{"hugoGeneSymbol":"NBPF22P","entrezGeneId":285622},{"hugoGeneSymbol":"NBPF25P","entrezGeneId":101929780},{"hugoGeneSymbol":"NBPF26","entrezGeneId":101060684},{"hugoGeneSymbol":"NBPF2P","entrezGeneId":343381},{"hugoGeneSymbol":"NBPF3","entrezGeneId":84224},{"hugoGeneSymbol":"NBPF4","entrezGeneId":148545},{"hugoGeneSymbol":"NBPF5P","entrezGeneId":100507044},{"hugoGeneSymbol":"NBPF6","entrezGeneId":653149},{"hugoGeneSymbol":"NBPF7","entrezGeneId":343505},{"hugoGeneSymbol":"NBPF8","entrezGeneId":728841},{"hugoGeneSymbol":"NBPF9","entrezGeneId":400818},{"hugoGeneSymbol":"NBR1","entrezGeneId":4077},{"hugoGeneSymbol":"NBR2","entrezGeneId":10230},{"hugoGeneSymbol":"NCALD","entrezGeneId":83988},{"hugoGeneSymbol":"NCAM1","entrezGeneId":4684},{"hugoGeneSymbol":"NCAM1-AS1","entrezGeneId":100288346},{"hugoGeneSymbol":"NCAM2","entrezGeneId":4685},{"hugoGeneSymbol":"NCAN","entrezGeneId":1463},{"hugoGeneSymbol":"NCAPD2","entrezGeneId":9918},{"hugoGeneSymbol":"NCAPD2P1","entrezGeneId":100421175},{"hugoGeneSymbol":"NCAPD3","entrezGeneId":23310},{"hugoGeneSymbol":"NCAPG","entrezGeneId":64151},{"hugoGeneSymbol":"NCAPG2","entrezGeneId":54892},{"hugoGeneSymbol":"NCAPGP1","entrezGeneId":100421096},{"hugoGeneSymbol":"NCAPGP2","entrezGeneId":100421148},{"hugoGeneSymbol":"NCAPH","entrezGeneId":23397},{"hugoGeneSymbol":"NCAPH2","entrezGeneId":29781},{"hugoGeneSymbol":"NCBP1","entrezGeneId":4686},{"hugoGeneSymbol":"NCBP2","entrezGeneId":22916},{"hugoGeneSymbol":"NCBP2-AS1","entrezGeneId":100874001},{"hugoGeneSymbol":"NCBP2-AS2","entrezGeneId":152217},{"hugoGeneSymbol":"NCBP2L","entrezGeneId":392517},{"hugoGeneSymbol":"NCBP3","entrezGeneId":55421},{"hugoGeneSymbol":"NCCRP1","entrezGeneId":342897},{"hugoGeneSymbol":"NCDN","entrezGeneId":23154},{"hugoGeneSymbol":"NCEH1","entrezGeneId":57552},{"hugoGeneSymbol":"NCF1","entrezGeneId":653361},{"hugoGeneSymbol":"NCF1B","entrezGeneId":654816},{"hugoGeneSymbol":"NCF1C","entrezGeneId":654817},{"hugoGeneSymbol":"NCF2","entrezGeneId":4688},{"hugoGeneSymbol":"NCF4","entrezGeneId":4689},{"hugoGeneSymbol":"NCF4-AS1","entrezGeneId":107985578},{"hugoGeneSymbol":"NCK1","entrezGeneId":4690},{"hugoGeneSymbol":"NCK1-DT","entrezGeneId":101927597},{"hugoGeneSymbol":"NCK2","entrezGeneId":8440},{"hugoGeneSymbol":"NCKAP1","entrezGeneId":10787},{"hugoGeneSymbol":"NCKAP1L","entrezGeneId":3071},{"hugoGeneSymbol":"NCKAP5","entrezGeneId":344148},{"hugoGeneSymbol":"NCKAP5-IT1","entrezGeneId":100874346},{"hugoGeneSymbol":"NCKAP5L","entrezGeneId":57701},{"hugoGeneSymbol":"NCKIPSD","entrezGeneId":51517},{"hugoGeneSymbol":"NCL","entrezGeneId":4691},{"hugoGeneSymbol":"NCLN","entrezGeneId":56926},{"hugoGeneSymbol":"NCLP1","entrezGeneId":100302751},{"hugoGeneSymbol":"NCLP2","entrezGeneId":100379142},{"hugoGeneSymbol":"NCMAP","entrezGeneId":400746},{"hugoGeneSymbol":"NCOA1","entrezGeneId":8648},{"hugoGeneSymbol":"NCOA2","entrezGeneId":10499},{"hugoGeneSymbol":"NCOA3","entrezGeneId":8202},{"hugoGeneSymbol":"NCOA4","entrezGeneId":8031},{"hugoGeneSymbol":"NCOA4P1","entrezGeneId":326605},{"hugoGeneSymbol":"NCOA4P2","entrezGeneId":728333},{"hugoGeneSymbol":"NCOA4P3","entrezGeneId":729497},{"hugoGeneSymbol":"NCOA4P4","entrezGeneId":642262},{"hugoGeneSymbol":"NCOA5","entrezGeneId":57727},{"hugoGeneSymbol":"NCOA6","entrezGeneId":23054},{"hugoGeneSymbol":"NCOA7","entrezGeneId":135112},{"hugoGeneSymbol":"NCOA7-AS1","entrezGeneId":104355145},{"hugoGeneSymbol":"NCOR1","entrezGeneId":9611},{"hugoGeneSymbol":"NCOR1P1","entrezGeneId":149934},{"hugoGeneSymbol":"NCOR1P2","entrezGeneId":729490},{"hugoGeneSymbol":"NCOR1P3","entrezGeneId":100874183},{"hugoGeneSymbol":"NCOR2","entrezGeneId":9612},{"hugoGeneSymbol":"NCR1","entrezGeneId":9437},{"hugoGeneSymbol":"NCR2","entrezGeneId":9436},{"hugoGeneSymbol":"NCR3","entrezGeneId":259197},{"hugoGeneSymbol":"NCR3LG1","entrezGeneId":374383},{"hugoGeneSymbol":"NCRNA00250","entrezGeneId":552853},{"hugoGeneSymbol":"NCRUPAR","entrezGeneId":100302746},{"hugoGeneSymbol":"NCS1","entrezGeneId":23413},{"hugoGeneSymbol":"NCSTN","entrezGeneId":23385},{"hugoGeneSymbol":"NCSTNP1","entrezGeneId":100873743},{"hugoGeneSymbol":"NDC1","entrezGeneId":55706},{"hugoGeneSymbol":"NDC80","entrezGeneId":10403},{"hugoGeneSymbol":"NDE1","entrezGeneId":54820},{"hugoGeneSymbol":"NDE1P1","entrezGeneId":100422372},{"hugoGeneSymbol":"NDE1P2","entrezGeneId":106480247},{"hugoGeneSymbol":"NDEL1","entrezGeneId":81565},{"hugoGeneSymbol":"NDFIP1","entrezGeneId":80762},{"hugoGeneSymbol":"NDFIP1P1","entrezGeneId":100420792},{"hugoGeneSymbol":"NDFIP2","entrezGeneId":54602},{"hugoGeneSymbol":"NDFIP2-AS1","entrezGeneId":100874208},{"hugoGeneSymbol":"NDIC","entrezGeneId":81866},{"hugoGeneSymbol":"NDN","entrezGeneId":4692},{"hugoGeneSymbol":"NDNC9","entrezGeneId":100682325},{"hugoGeneSymbol":"NDNF","entrezGeneId":79625},{"hugoGeneSymbol":"NDOR1","entrezGeneId":27158},{"hugoGeneSymbol":"NDP","entrezGeneId":4693},{"hugoGeneSymbol":"NDP-AS1","entrezGeneId":100873919},{"hugoGeneSymbol":"NDRG1","entrezGeneId":10397},{"hugoGeneSymbol":"NDRG2","entrezGeneId":57447},{"hugoGeneSymbol":"NDRG3","entrezGeneId":57446},{"hugoGeneSymbol":"NDRG4","entrezGeneId":65009},{"hugoGeneSymbol":"NDST1","entrezGeneId":3340},{"hugoGeneSymbol":"NDST1-AS1","entrezGeneId":102546298},{"hugoGeneSymbol":"NDST2","entrezGeneId":8509},{"hugoGeneSymbol":"NDST3","entrezGeneId":9348},{"hugoGeneSymbol":"NDST4","entrezGeneId":64579},{"hugoGeneSymbol":"NDUFA1","entrezGeneId":4694},{"hugoGeneSymbol":"NDUFA10","entrezGeneId":4705},{"hugoGeneSymbol":"NDUFA11","entrezGeneId":126328},{"hugoGeneSymbol":"NDUFA12","entrezGeneId":55967},{"hugoGeneSymbol":"NDUFA12P1","entrezGeneId":100527945},{"hugoGeneSymbol":"NDUFA13","entrezGeneId":51079},{"hugoGeneSymbol":"NDUFA2","entrezGeneId":4695},{"hugoGeneSymbol":"NDUFA3","entrezGeneId":4696},{"hugoGeneSymbol":"NDUFA3P1","entrezGeneId":100131388},{"hugoGeneSymbol":"NDUFA3P2","entrezGeneId":106479051},{"hugoGeneSymbol":"NDUFA3P3","entrezGeneId":644482},{"hugoGeneSymbol":"NDUFA3P4","entrezGeneId":106480806},{"hugoGeneSymbol":"NDUFA3P5","entrezGeneId":112272577},{"hugoGeneSymbol":"NDUFA3P6","entrezGeneId":106479052},{"hugoGeneSymbol":"NDUFA4","entrezGeneId":4697},{"hugoGeneSymbol":"NDUFA4L2","entrezGeneId":56901},{"hugoGeneSymbol":"NDUFA4P1","entrezGeneId":360165},{"hugoGeneSymbol":"NDUFA4P2","entrezGeneId":100287880},{"hugoGeneSymbol":"NDUFA5","entrezGeneId":4698},{"hugoGeneSymbol":"NDUFA5P1","entrezGeneId":4699},{"hugoGeneSymbol":"NDUFA5P10","entrezGeneId":102724853},{"hugoGeneSymbol":"NDUFA5P11","entrezGeneId":102724866},{"hugoGeneSymbol":"NDUFA5P12","entrezGeneId":100288013},{"hugoGeneSymbol":"NDUFA5P2","entrezGeneId":102724035},{"hugoGeneSymbol":"NDUFA5P3","entrezGeneId":100288035},{"hugoGeneSymbol":"NDUFA5P4","entrezGeneId":100128136},{"hugoGeneSymbol":"NDUFA5P5","entrezGeneId":100130327},{"hugoGeneSymbol":"NDUFA5P6","entrezGeneId":100288339},{"hugoGeneSymbol":"NDUFA5P7","entrezGeneId":106481784},{"hugoGeneSymbol":"NDUFA5P8","entrezGeneId":103091863},{"hugoGeneSymbol":"NDUFA5P9","entrezGeneId":100289579},{"hugoGeneSymbol":"NDUFA6","entrezGeneId":4700},{"hugoGeneSymbol":"NDUFA6-DT","entrezGeneId":100132273},{"hugoGeneSymbol":"NDUFA7","entrezGeneId":4701},{"hugoGeneSymbol":"NDUFA8","entrezGeneId":4702},{"hugoGeneSymbol":"NDUFA8P1","entrezGeneId":107075207},{"hugoGeneSymbol":"NDUFA9","entrezGeneId":4704},{"hugoGeneSymbol":"NDUFA9P1","entrezGeneId":266625},{"hugoGeneSymbol":"NDUFAB1","entrezGeneId":4706},{"hugoGeneSymbol":"NDUFAB1P1","entrezGeneId":107075303},{"hugoGeneSymbol":"NDUFAF1","entrezGeneId":51103},{"hugoGeneSymbol":"NDUFAF2","entrezGeneId":91942},{"hugoGeneSymbol":"NDUFAF3","entrezGeneId":25915},{"hugoGeneSymbol":"NDUFAF4","entrezGeneId":29078},{"hugoGeneSymbol":"NDUFAF4P1","entrezGeneId":100306975},{"hugoGeneSymbol":"NDUFAF4P2","entrezGeneId":402676},{"hugoGeneSymbol":"NDUFAF4P3","entrezGeneId":100422532},{"hugoGeneSymbol":"NDUFAF4P4","entrezGeneId":100128889},{"hugoGeneSymbol":"NDUFAF5","entrezGeneId":79133},{"hugoGeneSymbol":"NDUFAF6","entrezGeneId":137682},{"hugoGeneSymbol":"NDUFAF7","entrezGeneId":55471},{"hugoGeneSymbol":"NDUFAF8","entrezGeneId":284184},{"hugoGeneSymbol":"NDUFB1","entrezGeneId":4707},{"hugoGeneSymbol":"NDUFB10","entrezGeneId":4716},{"hugoGeneSymbol":"NDUFB10P1","entrezGeneId":100128711},{"hugoGeneSymbol":"NDUFB10P2","entrezGeneId":107075304},{"hugoGeneSymbol":"NDUFB11","entrezGeneId":54539},{"hugoGeneSymbol":"NDUFB11P1","entrezGeneId":390239},{"hugoGeneSymbol":"NDUFB1P1","entrezGeneId":100190952},{"hugoGeneSymbol":"NDUFB1P2","entrezGeneId":100380272},{"hugoGeneSymbol":"NDUFB2","entrezGeneId":4708},{"hugoGeneSymbol":"NDUFB2-AS1","entrezGeneId":100134713},{"hugoGeneSymbol":"NDUFB2P1","entrezGeneId":107075208},{"hugoGeneSymbol":"NDUFB3","entrezGeneId":4709},{"hugoGeneSymbol":"NDUFB3P1","entrezGeneId":93993},{"hugoGeneSymbol":"NDUFB3P2","entrezGeneId":93994},{"hugoGeneSymbol":"NDUFB3P3","entrezGeneId":93996},{"hugoGeneSymbol":"NDUFB3P4","entrezGeneId":93995},{"hugoGeneSymbol":"NDUFB3P5","entrezGeneId":93997},{"hugoGeneSymbol":"NDUFB4","entrezGeneId":4710},{"hugoGeneSymbol":"NDUFB4P1","entrezGeneId":100288654},{"hugoGeneSymbol":"NDUFB4P10","entrezGeneId":107075105},{"hugoGeneSymbol":"NDUFB4P11","entrezGeneId":107075247},{"hugoGeneSymbol":"NDUFB4P12","entrezGeneId":402175},{"hugoGeneSymbol":"NDUFB4P2","entrezGeneId":100132036},{"hugoGeneSymbol":"NDUFB4P3","entrezGeneId":100288420},{"hugoGeneSymbol":"NDUFB4P4","entrezGeneId":107075092},{"hugoGeneSymbol":"NDUFB4P5","entrezGeneId":107075096},{"hugoGeneSymbol":"NDUFB4P6","entrezGeneId":107075097},{"hugoGeneSymbol":"NDUFB4P7","entrezGeneId":107075094},{"hugoGeneSymbol":"NDUFB4P8","entrezGeneId":107075246},{"hugoGeneSymbol":"NDUFB4P9","entrezGeneId":107075211},{"hugoGeneSymbol":"NDUFB5","entrezGeneId":4711},{"hugoGeneSymbol":"NDUFB5P1","entrezGeneId":100288337},{"hugoGeneSymbol":"NDUFB5P2","entrezGeneId":100422431},{"hugoGeneSymbol":"NDUFB6","entrezGeneId":4712},{"hugoGeneSymbol":"NDUFB7","entrezGeneId":4713},{"hugoGeneSymbol":"NDUFB8","entrezGeneId":4714},{"hugoGeneSymbol":"NDUFB8P1","entrezGeneId":326606},{"hugoGeneSymbol":"NDUFB8P2","entrezGeneId":729565},{"hugoGeneSymbol":"NDUFB8P3","entrezGeneId":100132286},{"hugoGeneSymbol":"NDUFB9","entrezGeneId":4715},{"hugoGeneSymbol":"NDUFB9P1","entrezGeneId":107075233},{"hugoGeneSymbol":"NDUFB9P2","entrezGeneId":100128596},{"hugoGeneSymbol":"NDUFB9P3","entrezGeneId":100129370},{"hugoGeneSymbol":"NDUFC1","entrezGeneId":4717},{"hugoGeneSymbol":"NDUFC2","entrezGeneId":4718},{"hugoGeneSymbol":"NDUFC2-KCTD14","entrezGeneId":100532726},{"hugoGeneSymbol":"NDUFS1","entrezGeneId":4719},{"hugoGeneSymbol":"NDUFS2","entrezGeneId":4720},{"hugoGeneSymbol":"NDUFS3","entrezGeneId":4722},{"hugoGeneSymbol":"NDUFS4","entrezGeneId":4724},{"hugoGeneSymbol":"NDUFS5","entrezGeneId":4725},{"hugoGeneSymbol":"NDUFS5P1","entrezGeneId":100996944},{"hugoGeneSymbol":"NDUFS5P2","entrezGeneId":100286918},{"hugoGeneSymbol":"NDUFS5P3","entrezGeneId":100288149},{"hugoGeneSymbol":"NDUFS5P4","entrezGeneId":100287817},{"hugoGeneSymbol":"NDUFS5P5","entrezGeneId":100128177},{"hugoGeneSymbol":"NDUFS5P6","entrezGeneId":106480785},{"hugoGeneSymbol":"NDUFS5P7","entrezGeneId":100130794},{"hugoGeneSymbol":"NDUFS6","entrezGeneId":4726},{"hugoGeneSymbol":"NDUFS6P1","entrezGeneId":107075209},{"hugoGeneSymbol":"NDUFS7","entrezGeneId":374291},{"hugoGeneSymbol":"NDUFS8","entrezGeneId":4728},{"hugoGeneSymbol":"NDUFV1","entrezGeneId":4723},{"hugoGeneSymbol":"NDUFV2","entrezGeneId":4729},{"hugoGeneSymbol":"NDUFV2-AS1","entrezGeneId":101927275},{"hugoGeneSymbol":"NDUFV2P1","entrezGeneId":4730},{"hugoGeneSymbol":"NDUFV3","entrezGeneId":4731},{"hugoGeneSymbol":"NEAT1","entrezGeneId":283131},{"hugoGeneSymbol":"NEB","entrezGeneId":4703},{"hugoGeneSymbol":"NEBL","entrezGeneId":10529},{"hugoGeneSymbol":"NEBL-AS1","entrezGeneId":100128511},{"hugoGeneSymbol":"NECAB1","entrezGeneId":64168},{"hugoGeneSymbol":"NECAB2","entrezGeneId":54550},{"hugoGeneSymbol":"NECAB3","entrezGeneId":63941},{"hugoGeneSymbol":"NECAP1","entrezGeneId":25977},{"hugoGeneSymbol":"NECAP1P1","entrezGeneId":442668},{"hugoGeneSymbol":"NECAP1P2","entrezGeneId":106479026},{"hugoGeneSymbol":"NECAP2","entrezGeneId":55707},{"hugoGeneSymbol":"NECTIN1","entrezGeneId":5818},{"hugoGeneSymbol":"NECTIN2","entrezGeneId":5819},{"hugoGeneSymbol":"NECTIN3","entrezGeneId":25945},{"hugoGeneSymbol":"NECTIN3-AS1","entrezGeneId":100506555},{"hugoGeneSymbol":"NECTIN4","entrezGeneId":81607},{"hugoGeneSymbol":"NEDD1","entrezGeneId":121441},{"hugoGeneSymbol":"NEDD4","entrezGeneId":4734},{"hugoGeneSymbol":"NEDD4L","entrezGeneId":23327},{"hugoGeneSymbol":"NEDD8","entrezGeneId":4738},{"hugoGeneSymbol":"NEDD8-MDP1","entrezGeneId":100528064},{"hugoGeneSymbol":"NEDD9","entrezGeneId":4739},{"hugoGeneSymbol":"NEDE","entrezGeneId":619410},{"hugoGeneSymbol":"NEFH","entrezGeneId":4744},{"hugoGeneSymbol":"NEFHP1","entrezGeneId":339396},{"hugoGeneSymbol":"NEFL","entrezGeneId":4747},{"hugoGeneSymbol":"NEFLP1","entrezGeneId":359795},{"hugoGeneSymbol":"NEFM","entrezGeneId":4741},{"hugoGeneSymbol":"NEFMP1","entrezGeneId":100420737},{"hugoGeneSymbol":"NEGR1","entrezGeneId":257194},{"hugoGeneSymbol":"NEGR1-IT1","entrezGeneId":100852409},{"hugoGeneSymbol":"NEIL1","entrezGeneId":79661},{"hugoGeneSymbol":"NEIL2","entrezGeneId":252969},{"hugoGeneSymbol":"NEIL3","entrezGeneId":55247},{"hugoGeneSymbol":"NEK1","entrezGeneId":4750},{"hugoGeneSymbol":"NEK10","entrezGeneId":152110},{"hugoGeneSymbol":"NEK11","entrezGeneId":79858},{"hugoGeneSymbol":"NEK2","entrezGeneId":4751},{"hugoGeneSymbol":"NEK2P1","entrezGeneId":326302},{"hugoGeneSymbol":"NEK2P2","entrezGeneId":100379667},{"hugoGeneSymbol":"NEK2P3","entrezGeneId":100158258},{"hugoGeneSymbol":"NEK2P4","entrezGeneId":100381202},{"hugoGeneSymbol":"NEK3","entrezGeneId":4752},{"hugoGeneSymbol":"NEK4","entrezGeneId":6787},{"hugoGeneSymbol":"NEK4P1","entrezGeneId":100421718},{"hugoGeneSymbol":"NEK4P2","entrezGeneId":100421734},{"hugoGeneSymbol":"NEK4P3","entrezGeneId":100421728},{"hugoGeneSymbol":"NEK5","entrezGeneId":341676},{"hugoGeneSymbol":"NEK6","entrezGeneId":10783},{"hugoGeneSymbol":"NEK7","entrezGeneId":140609},{"hugoGeneSymbol":"NEK8","entrezGeneId":284086},{"hugoGeneSymbol":"NEK9","entrezGeneId":91754},{"hugoGeneSymbol":"NELFA","entrezGeneId":7469},{"hugoGeneSymbol":"NELFB","entrezGeneId":25920},{"hugoGeneSymbol":"NELFCD","entrezGeneId":51497},{"hugoGeneSymbol":"NELFE","entrezGeneId":7936},{"hugoGeneSymbol":"NELL1","entrezGeneId":4745},{"hugoGeneSymbol":"NELL2","entrezGeneId":4753},{"hugoGeneSymbol":"NEMF","entrezGeneId":9147},{"hugoGeneSymbol":"NEMP1","entrezGeneId":23306},{"hugoGeneSymbol":"NEMP2","entrezGeneId":100131211},{"hugoGeneSymbol":"NENF","entrezGeneId":29937},{"hugoGeneSymbol":"NENFP1","entrezGeneId":106480294},{"hugoGeneSymbol":"NENFP2","entrezGeneId":100129880},{"hugoGeneSymbol":"NENFP3","entrezGeneId":106481703},{"hugoGeneSymbol":"NEO1","entrezGeneId":4756},{"hugoGeneSymbol":"NEPNP","entrezGeneId":442253},{"hugoGeneSymbol":"NEPRO","entrezGeneId":25871},{"hugoGeneSymbol":"NES","entrezGeneId":10763},{"hugoGeneSymbol":"NET1","entrezGeneId":10276},{"hugoGeneSymbol":"NETO1","entrezGeneId":81832},{"hugoGeneSymbol":"NETO2","entrezGeneId":81831},{"hugoGeneSymbol":"NEU1","entrezGeneId":4758},{"hugoGeneSymbol":"NEU2","entrezGeneId":4759},{"hugoGeneSymbol":"NEU3","entrezGeneId":10825},{"hugoGeneSymbol":"NEU4","entrezGeneId":129807},{"hugoGeneSymbol":"NEURL1","entrezGeneId":9148},{"hugoGeneSymbol":"NEURL1-AS1","entrezGeneId":102724341},{"hugoGeneSymbol":"NEURL1B","entrezGeneId":54492},{"hugoGeneSymbol":"NEURL2","entrezGeneId":140825},{"hugoGeneSymbol":"NEURL3","entrezGeneId":93082},{"hugoGeneSymbol":"NEURL4","entrezGeneId":84461},{"hugoGeneSymbol":"NEUROD1","entrezGeneId":4760},{"hugoGeneSymbol":"NEUROD2","entrezGeneId":4761},{"hugoGeneSymbol":"NEUROD4","entrezGeneId":58158},{"hugoGeneSymbol":"NEUROD6","entrezGeneId":63974},{"hugoGeneSymbol":"NEUROG1","entrezGeneId":4762},{"hugoGeneSymbol":"NEUROG2","entrezGeneId":63973},{"hugoGeneSymbol":"NEUROG3","entrezGeneId":50674},{"hugoGeneSymbol":"NEWENTRY","entrezGeneId":192343},{"hugoGeneSymbol":"NEXMIF","entrezGeneId":340533},{"hugoGeneSymbol":"NEXN","entrezGeneId":91624},{"hugoGeneSymbol":"NEXN-AS1","entrezGeneId":374987},{"hugoGeneSymbol":"NF1","entrezGeneId":4763},{"hugoGeneSymbol":"NF1P1","entrezGeneId":100419006},{"hugoGeneSymbol":"NF1P10","entrezGeneId":106480348},{"hugoGeneSymbol":"NF1P11","entrezGeneId":106481736},{"hugoGeneSymbol":"NF1P12","entrezGeneId":100418983},{"hugoGeneSymbol":"NF1P2","entrezGeneId":440225},{"hugoGeneSymbol":"NF1P3","entrezGeneId":4764},{"hugoGeneSymbol":"NF1P4","entrezGeneId":100419029},{"hugoGeneSymbol":"NF1P5","entrezGeneId":4768},{"hugoGeneSymbol":"NF1P6","entrezGeneId":644637},{"hugoGeneSymbol":"NF1P7","entrezGeneId":100158257},{"hugoGeneSymbol":"NF1P8","entrezGeneId":401007},{"hugoGeneSymbol":"NF1P9","entrezGeneId":101930150},{"hugoGeneSymbol":"NF2","entrezGeneId":4771},{"hugoGeneSymbol":"NFAM1","entrezGeneId":150372},{"hugoGeneSymbol":"NFASC","entrezGeneId":23114},{"hugoGeneSymbol":"NFAT5","entrezGeneId":10725},{"hugoGeneSymbol":"NFATC1","entrezGeneId":4772},{"hugoGeneSymbol":"NFATC2","entrezGeneId":4773},{"hugoGeneSymbol":"NFATC2IP","entrezGeneId":84901},{"hugoGeneSymbol":"NFATC3","entrezGeneId":4775},{"hugoGeneSymbol":"NFATC4","entrezGeneId":4776},{"hugoGeneSymbol":"NFE2","entrezGeneId":4778},{"hugoGeneSymbol":"NFE2L1","entrezGeneId":4779},{"hugoGeneSymbol":"NFE2L2","entrezGeneId":4780},{"hugoGeneSymbol":"NFE2L3","entrezGeneId":9603},{"hugoGeneSymbol":"NFE2L3P1","entrezGeneId":642996},{"hugoGeneSymbol":"NFE2L3P2","entrezGeneId":100272146},{"hugoGeneSymbol":"NFE4","entrezGeneId":58160},{"hugoGeneSymbol":"NFIA","entrezGeneId":4774},{"hugoGeneSymbol":"NFIA-AS1","entrezGeneId":645030},{"hugoGeneSymbol":"NFIA-AS2","entrezGeneId":100996570},{"hugoGeneSymbol":"NFIB","entrezGeneId":4781},{"hugoGeneSymbol":"NFIC","entrezGeneId":4782},{"hugoGeneSymbol":"NFIL3","entrezGeneId":4783},{"hugoGeneSymbol":"NFIX","entrezGeneId":4784},{"hugoGeneSymbol":"NFKB1","entrezGeneId":4790},{"hugoGeneSymbol":"NFKB2","entrezGeneId":4791},{"hugoGeneSymbol":"NFKBIA","entrezGeneId":4792},{"hugoGeneSymbol":"NFKBIB","entrezGeneId":4793},{"hugoGeneSymbol":"NFKBID","entrezGeneId":84807},{"hugoGeneSymbol":"NFKBIE","entrezGeneId":4794},{"hugoGeneSymbol":"NFKBIL1","entrezGeneId":4795},{"hugoGeneSymbol":"NFKBIZ","entrezGeneId":64332},{"hugoGeneSymbol":"NFRKB","entrezGeneId":4798},{"hugoGeneSymbol":"NFS1","entrezGeneId":9054},{"hugoGeneSymbol":"NFU1","entrezGeneId":27247},{"hugoGeneSymbol":"NFU1P1","entrezGeneId":100132681},{"hugoGeneSymbol":"NFU1P2","entrezGeneId":100132699},{"hugoGeneSymbol":"NFX1","entrezGeneId":4799},{"hugoGeneSymbol":"NFXL1","entrezGeneId":152518},{"hugoGeneSymbol":"NFYA","entrezGeneId":4800},{"hugoGeneSymbol":"NFYAP1","entrezGeneId":100130677},{"hugoGeneSymbol":"NFYB","entrezGeneId":4801},{"hugoGeneSymbol":"NFYC","entrezGeneId":4802},{"hugoGeneSymbol":"NFYC-AS1","entrezGeneId":100130557},{"hugoGeneSymbol":"NGB","entrezGeneId":58157},{"hugoGeneSymbol":"NGDN","entrezGeneId":25983},{"hugoGeneSymbol":"NGEF","entrezGeneId":25791},{"hugoGeneSymbol":"NGF","entrezGeneId":4803},{"hugoGeneSymbol":"NGFG","entrezGeneId":8188},{"hugoGeneSymbol":"NGFR","entrezGeneId":4804},{"hugoGeneSymbol":"NGLY1","entrezGeneId":55768},{"hugoGeneSymbol":"NGRN","entrezGeneId":51335},{"hugoGeneSymbol":"NHCP1","entrezGeneId":4805},{"hugoGeneSymbol":"NHEG1","entrezGeneId":100294720},{"hugoGeneSymbol":"NHEJ1","entrezGeneId":79840},{"hugoGeneSymbol":"NHLH1","entrezGeneId":4807},{"hugoGeneSymbol":"NHLH2","entrezGeneId":4808},{"hugoGeneSymbol":"NHLRC1","entrezGeneId":378884},{"hugoGeneSymbol":"NHLRC2","entrezGeneId":374354},{"hugoGeneSymbol":"NHLRC3","entrezGeneId":387921},{"hugoGeneSymbol":"NHLRC4","entrezGeneId":283948},{"hugoGeneSymbol":"NHP2","entrezGeneId":55651},{"hugoGeneSymbol":"NHP2P1","entrezGeneId":414200},{"hugoGeneSymbol":"NHP2P2","entrezGeneId":442290},{"hugoGeneSymbol":"NHS","entrezGeneId":4810},{"hugoGeneSymbol":"NHS-AS1","entrezGeneId":100873920},{"hugoGeneSymbol":"NHSL1","entrezGeneId":57224},{"hugoGeneSymbol":"NHSL2","entrezGeneId":340527},{"hugoGeneSymbol":"NICN1","entrezGeneId":84276},{"hugoGeneSymbol":"NICN2P","entrezGeneId":171176},{"hugoGeneSymbol":"NID1","entrezGeneId":4811},{"hugoGeneSymbol":"NID2","entrezGeneId":22795},{"hugoGeneSymbol":"NIDDM1","entrezGeneId":4812},{"hugoGeneSymbol":"NIDDM2","entrezGeneId":4813},{"hugoGeneSymbol":"NIDDM3","entrezGeneId":50982},{"hugoGeneSymbol":"NIDDM4","entrezGeneId":100188782},{"hugoGeneSymbol":"NIF3L1","entrezGeneId":60491},{"hugoGeneSymbol":"NIFK","entrezGeneId":84365},{"hugoGeneSymbol":"NIFK-AS1","entrezGeneId":254128},{"hugoGeneSymbol":"NIFKP1","entrezGeneId":401825},{"hugoGeneSymbol":"NIFKP2","entrezGeneId":645398},{"hugoGeneSymbol":"NIFKP3","entrezGeneId":100270648},{"hugoGeneSymbol":"NIFKP4","entrezGeneId":100128707},{"hugoGeneSymbol":"NIFKP5","entrezGeneId":100128397},{"hugoGeneSymbol":"NIFKP6","entrezGeneId":100132796},{"hugoGeneSymbol":"NIFKP7","entrezGeneId":106479049},{"hugoGeneSymbol":"NIFKP8","entrezGeneId":642907},{"hugoGeneSymbol":"NIFKP9","entrezGeneId":106480805},{"hugoGeneSymbol":"NIM1K","entrezGeneId":167359},{"hugoGeneSymbol":"NIN","entrezGeneId":51199},{"hugoGeneSymbol":"NINJ1","entrezGeneId":4814},{"hugoGeneSymbol":"NINJ2","entrezGeneId":4815},{"hugoGeneSymbol":"NINL","entrezGeneId":22981},{"hugoGeneSymbol":"NIP7","entrezGeneId":51388},{"hugoGeneSymbol":"NIP7P1","entrezGeneId":389997},{"hugoGeneSymbol":"NIP7P2","entrezGeneId":646392},{"hugoGeneSymbol":"NIP7P3","entrezGeneId":100421245},{"hugoGeneSymbol":"NIPA1","entrezGeneId":123606},{"hugoGeneSymbol":"NIPA2","entrezGeneId":81614},{"hugoGeneSymbol":"NIPA2P1","entrezGeneId":100132321},{"hugoGeneSymbol":"NIPA2P2","entrezGeneId":100130204},{"hugoGeneSymbol":"NIPA2P3","entrezGeneId":100128057},{"hugoGeneSymbol":"NIPA2P4","entrezGeneId":100421776},{"hugoGeneSymbol":"NIPA2P5","entrezGeneId":100874488},{"hugoGeneSymbol":"NIPAL1","entrezGeneId":152519},{"hugoGeneSymbol":"NIPAL2","entrezGeneId":79815},{"hugoGeneSymbol":"NIPAL3","entrezGeneId":57185},{"hugoGeneSymbol":"NIPAL4","entrezGeneId":348938},{"hugoGeneSymbol":"NIPBL","entrezGeneId":25836},{"hugoGeneSymbol":"NIPBL-DT","entrezGeneId":646719},{"hugoGeneSymbol":"NIPSNAP1","entrezGeneId":8508},{"hugoGeneSymbol":"NIPSNAP2","entrezGeneId":2631},{"hugoGeneSymbol":"NIPSNAP3A","entrezGeneId":25934},{"hugoGeneSymbol":"NIPSNAP3B","entrezGeneId":55335},{"hugoGeneSymbol":"NISCH","entrezGeneId":11188},{"hugoGeneSymbol":"NIT1","entrezGeneId":4817},{"hugoGeneSymbol":"NIT2","entrezGeneId":56954},{"hugoGeneSymbol":"NKAIN1","entrezGeneId":79570},{"hugoGeneSymbol":"NKAIN1P1","entrezGeneId":100462647},{"hugoGeneSymbol":"NKAIN2","entrezGeneId":154215},{"hugoGeneSymbol":"NKAIN3","entrezGeneId":286183},{"hugoGeneSymbol":"NKAIN4","entrezGeneId":128414},{"hugoGeneSymbol":"NKAP","entrezGeneId":79576},{"hugoGeneSymbol":"NKAPD1","entrezGeneId":55216},{"hugoGeneSymbol":"NKAPL","entrezGeneId":222698},{"hugoGeneSymbol":"NKAPP1","entrezGeneId":158801},{"hugoGeneSymbol":"NKCD","entrezGeneId":780917},{"hugoGeneSymbol":"NKD1","entrezGeneId":85407},{"hugoGeneSymbol":"NKD2","entrezGeneId":85409},{"hugoGeneSymbol":"NKG7","entrezGeneId":4818},{"hugoGeneSymbol":"NKILA","entrezGeneId":105416157},{"hugoGeneSymbol":"NKIRAS1","entrezGeneId":28512},{"hugoGeneSymbol":"NKIRAS2","entrezGeneId":28511},{"hugoGeneSymbol":"NKPD1","entrezGeneId":284353},{"hugoGeneSymbol":"NKRF","entrezGeneId":55922},{"hugoGeneSymbol":"NKS1","entrezGeneId":4819},{"hugoGeneSymbol":"NKTR","entrezGeneId":4820},{"hugoGeneSymbol":"NKX1-1","entrezGeneId":54729},{"hugoGeneSymbol":"NKX1-2","entrezGeneId":390010},{"hugoGeneSymbol":"NKX2-1","entrezGeneId":7080},{"hugoGeneSymbol":"NKX2-1-AS1","entrezGeneId":100506237},{"hugoGeneSymbol":"NKX2-2","entrezGeneId":4821},{"hugoGeneSymbol":"NKX2-2-AS1","entrezGeneId":100874189},{"hugoGeneSymbol":"NKX2-3","entrezGeneId":159296},{"hugoGeneSymbol":"NKX2-4","entrezGeneId":644524},{"hugoGeneSymbol":"NKX2-5","entrezGeneId":1482},{"hugoGeneSymbol":"NKX2-6","entrezGeneId":137814},{"hugoGeneSymbol":"NKX2-8","entrezGeneId":26257},{"hugoGeneSymbol":"NKX3-1","entrezGeneId":4824},{"hugoGeneSymbol":"NKX3-2","entrezGeneId":579},{"hugoGeneSymbol":"NKX6-1","entrezGeneId":4825},{"hugoGeneSymbol":"NKX6-2","entrezGeneId":84504},{"hugoGeneSymbol":"NKX6-3","entrezGeneId":157848},{"hugoGeneSymbol":"NLE1","entrezGeneId":54475},{"hugoGeneSymbol":"NLGN1","entrezGeneId":22871},{"hugoGeneSymbol":"NLGN1-AS1","entrezGeneId":100874010},{"hugoGeneSymbol":"NLGN2","entrezGeneId":57555},{"hugoGeneSymbol":"NLGN3","entrezGeneId":54413},{"hugoGeneSymbol":"NLGN4X","entrezGeneId":57502},{"hugoGeneSymbol":"NLGN4Y","entrezGeneId":22829},{"hugoGeneSymbol":"NLGN4Y-AS1","entrezGeneId":100874056},{"hugoGeneSymbol":"NLK","entrezGeneId":51701},{"hugoGeneSymbol":"NLN","entrezGeneId":57486},{"hugoGeneSymbol":"NLRC3","entrezGeneId":197358},{"hugoGeneSymbol":"NLRC4","entrezGeneId":58484},{"hugoGeneSymbol":"NLRC5","entrezGeneId":84166},{"hugoGeneSymbol":"NLRP1","entrezGeneId":22861},{"hugoGeneSymbol":"NLRP10","entrezGeneId":338322},{"hugoGeneSymbol":"NLRP11","entrezGeneId":204801},{"hugoGeneSymbol":"NLRP12","entrezGeneId":91662},{"hugoGeneSymbol":"NLRP13","entrezGeneId":126204},{"hugoGeneSymbol":"NLRP14","entrezGeneId":338323},{"hugoGeneSymbol":"NLRP2","entrezGeneId":55655},{"hugoGeneSymbol":"NLRP2B","entrezGeneId":286430},{"hugoGeneSymbol":"NLRP3","entrezGeneId":114548},{"hugoGeneSymbol":"NLRP3P1","entrezGeneId":347402},{"hugoGeneSymbol":"NLRP4","entrezGeneId":147945},{"hugoGeneSymbol":"NLRP5","entrezGeneId":126206},{"hugoGeneSymbol":"NLRP6","entrezGeneId":171389},{"hugoGeneSymbol":"NLRP7","entrezGeneId":199713},{"hugoGeneSymbol":"NLRP8","entrezGeneId":126205},{"hugoGeneSymbol":"NLRP9","entrezGeneId":338321},{"hugoGeneSymbol":"NLRP9P1","entrezGeneId":347933},{"hugoGeneSymbol":"NLRX1","entrezGeneId":79671},{"hugoGeneSymbol":"NM","entrezGeneId":4827},{"hugoGeneSymbol":"NMB","entrezGeneId":4828},{"hugoGeneSymbol":"NMBR","entrezGeneId":4829},{"hugoGeneSymbol":"NMBR-AS1","entrezGeneId":111216274},{"hugoGeneSymbol":"NMD3","entrezGeneId":51068},{"hugoGeneSymbol":"NMD3P1","entrezGeneId":441238},{"hugoGeneSymbol":"NMD3P2","entrezGeneId":100286929},{"hugoGeneSymbol":"NME1","entrezGeneId":4830},{"hugoGeneSymbol":"NME1-NME2","entrezGeneId":654364},{"hugoGeneSymbol":"NME1P1","entrezGeneId":100874501},{"hugoGeneSymbol":"NME2","entrezGeneId":4831},{"hugoGeneSymbol":"NME2P1","entrezGeneId":283458},{"hugoGeneSymbol":"NME3","entrezGeneId":4832},{"hugoGeneSymbol":"NME4","entrezGeneId":4833},{"hugoGeneSymbol":"NME5","entrezGeneId":8382},{"hugoGeneSymbol":"NME6","entrezGeneId":10201},{"hugoGeneSymbol":"NME7","entrezGeneId":29922},{"hugoGeneSymbol":"NME8","entrezGeneId":51314},{"hugoGeneSymbol":"NME9","entrezGeneId":347736},{"hugoGeneSymbol":"NMI","entrezGeneId":9111},{"hugoGeneSymbol":"NMLFS","entrezGeneId":100885786},{"hugoGeneSymbol":"NMNAT1","entrezGeneId":64802},{"hugoGeneSymbol":"NMNAT1P1","entrezGeneId":326607},{"hugoGeneSymbol":"NMNAT1P2","entrezGeneId":100129160},{"hugoGeneSymbol":"NMNAT1P3","entrezGeneId":391603},{"hugoGeneSymbol":"NMNAT1P4","entrezGeneId":100132841},{"hugoGeneSymbol":"NMNAT1P5","entrezGeneId":100129256},{"hugoGeneSymbol":"NMNAT2","entrezGeneId":23057},{"hugoGeneSymbol":"NMNAT3","entrezGeneId":349565},{"hugoGeneSymbol":"NMRAL1","entrezGeneId":57407},{"hugoGeneSymbol":"NMRAL2P","entrezGeneId":344887},{"hugoGeneSymbol":"NMRK1","entrezGeneId":54981},{"hugoGeneSymbol":"NMRK2","entrezGeneId":27231},{"hugoGeneSymbol":"NMS","entrezGeneId":129521},{"hugoGeneSymbol":"NMSR","entrezGeneId":59333},{"hugoGeneSymbol":"NMT1","entrezGeneId":4836},{"hugoGeneSymbol":"NMT2","entrezGeneId":9397},{"hugoGeneSymbol":"NMTC1","entrezGeneId":114568},{"hugoGeneSymbol":"NMTRL-TAA1-1","entrezGeneId":100189325},{"hugoGeneSymbol":"NMTRL-TAA2-1","entrezGeneId":100189522},{"hugoGeneSymbol":"NMTRL-TAA3-1","entrezGeneId":100189520},{"hugoGeneSymbol":"NMTRL-TAA4-1","entrezGeneId":100189377},{"hugoGeneSymbol":"NMTRL-TAA5-1","entrezGeneId":100189466},{"hugoGeneSymbol":"NMTRL-TAA6-1","entrezGeneId":100189456},{"hugoGeneSymbol":"NMTRP-TGG1-1","entrezGeneId":100189463},{"hugoGeneSymbol":"NMTRQ-CTG1-1","entrezGeneId":100189461},{"hugoGeneSymbol":"NMTRQ-TTG1-1","entrezGeneId":100189475},{"hugoGeneSymbol":"NMTRQ-TTG10-1","entrezGeneId":100189524},{"hugoGeneSymbol":"NMTRQ-TTG11-1","entrezGeneId":100189501},{"hugoGeneSymbol":"NMTRQ-TTG12-1","entrezGeneId":100189478},{"hugoGeneSymbol":"NMTRQ-TTG13-1","entrezGeneId":100189535},{"hugoGeneSymbol":"NMTRQ-TTG14-1","entrezGeneId":100189058},{"hugoGeneSymbol":"NMTRQ-TTG15-1","entrezGeneId":100189540},{"hugoGeneSymbol":"NMTRQ-TTG2-1","entrezGeneId":100189516},{"hugoGeneSymbol":"NMTRQ-TTG3-1","entrezGeneId":100189215},{"hugoGeneSymbol":"NMTRQ-TTG4-1","entrezGeneId":100189489},{"hugoGeneSymbol":"NMTRQ-TTG5-1","entrezGeneId":100189397},{"hugoGeneSymbol":"NMTRQ-TTG6-1","entrezGeneId":100189510},{"hugoGeneSymbol":"NMTRQ-TTG7-1","entrezGeneId":100189445},{"hugoGeneSymbol":"NMTRQ-TTG8-1","entrezGeneId":100189448},{"hugoGeneSymbol":"NMTRQ-TTG9-1","entrezGeneId":100189451},{"hugoGeneSymbol":"NMTRS-TGA1-1","entrezGeneId":100189055},{"hugoGeneSymbol":"NMTRS-TGA2-1","entrezGeneId":100189525},{"hugoGeneSymbol":"NMTRS-TGA3-1","entrezGeneId":100189512},{"hugoGeneSymbol":"NMTRV-TAC1-1","entrezGeneId":100189513},{"hugoGeneSymbol":"NMU","entrezGeneId":10874},{"hugoGeneSymbol":"NMUR1","entrezGeneId":10316},{"hugoGeneSymbol":"NMUR2","entrezGeneId":56923},{"hugoGeneSymbol":"NNAT","entrezGeneId":4826},{"hugoGeneSymbol":"NNMT","entrezGeneId":4837},{"hugoGeneSymbol":"NNO1","entrezGeneId":23691},{"hugoGeneSymbol":"NNO3","entrezGeneId":100187717},{"hugoGeneSymbol":"NNT","entrezGeneId":23530},{"hugoGeneSymbol":"NNT-AS1","entrezGeneId":100652772},{"hugoGeneSymbol":"NOA1","entrezGeneId":84273},{"hugoGeneSymbol":"NOA3","entrezGeneId":107228317},{"hugoGeneSymbol":"NOB1","entrezGeneId":28987},{"hugoGeneSymbol":"NOBOX","entrezGeneId":135935},{"hugoGeneSymbol":"NOC2L","entrezGeneId":26155},{"hugoGeneSymbol":"NOC2LP1","entrezGeneId":643276},{"hugoGeneSymbol":"NOC2LP2","entrezGeneId":401010},{"hugoGeneSymbol":"NOC3L","entrezGeneId":64318},{"hugoGeneSymbol":"NOC4L","entrezGeneId":79050},{"hugoGeneSymbol":"NOCT","entrezGeneId":25819},{"hugoGeneSymbol":"NOD1","entrezGeneId":10392},{"hugoGeneSymbol":"NOD2","entrezGeneId":64127},{"hugoGeneSymbol":"NODAL","entrezGeneId":4838},{"hugoGeneSymbol":"NOG","entrezGeneId":9241},{"hugoGeneSymbol":"NOL10","entrezGeneId":79954},{"hugoGeneSymbol":"NOL11","entrezGeneId":25926},{"hugoGeneSymbol":"NOL12","entrezGeneId":79159},{"hugoGeneSymbol":"NOL3","entrezGeneId":8996},{"hugoGeneSymbol":"NOL4","entrezGeneId":8715},{"hugoGeneSymbol":"NOL4L","entrezGeneId":140688},{"hugoGeneSymbol":"NOL4L-DT","entrezGeneId":149950},{"hugoGeneSymbol":"NOL6","entrezGeneId":65083},{"hugoGeneSymbol":"NOL7","entrezGeneId":51406},{"hugoGeneSymbol":"NOL8","entrezGeneId":55035},{"hugoGeneSymbol":"NOL8P1","entrezGeneId":402191},{"hugoGeneSymbol":"NOL9","entrezGeneId":79707},{"hugoGeneSymbol":"NOLC1","entrezGeneId":9221},{"hugoGeneSymbol":"NOM1","entrezGeneId":64434},{"hugoGeneSymbol":"NOMO1","entrezGeneId":23420},{"hugoGeneSymbol":"NOMO2","entrezGeneId":283820},{"hugoGeneSymbol":"NOMO3","entrezGeneId":408050},{"hugoGeneSymbol":"NONO","entrezGeneId":4841},{"hugoGeneSymbol":"NONOP1","entrezGeneId":644035},{"hugoGeneSymbol":"NONOP2","entrezGeneId":100271700},{"hugoGeneSymbol":"NOP10","entrezGeneId":55505},{"hugoGeneSymbol":"NOP14","entrezGeneId":8602},{"hugoGeneSymbol":"NOP14-AS1","entrezGeneId":317648},{"hugoGeneSymbol":"NOP16","entrezGeneId":51491},{"hugoGeneSymbol":"NOP2","entrezGeneId":4839},{"hugoGeneSymbol":"NOP53","entrezGeneId":29997},{"hugoGeneSymbol":"NOP53-AS1","entrezGeneId":106144593},{"hugoGeneSymbol":"NOP56","entrezGeneId":10528},{"hugoGeneSymbol":"NOP56P1","entrezGeneId":646192},{"hugoGeneSymbol":"NOP56P2","entrezGeneId":402360},{"hugoGeneSymbol":"NOP56P3","entrezGeneId":106481967},{"hugoGeneSymbol":"NOP58","entrezGeneId":51602},{"hugoGeneSymbol":"NOP9","entrezGeneId":161424},{"hugoGeneSymbol":"NORAD","entrezGeneId":647979},{"hugoGeneSymbol":"NOS1","entrezGeneId":4842},{"hugoGeneSymbol":"NOS1AP","entrezGeneId":9722},{"hugoGeneSymbol":"NOS2","entrezGeneId":4843},{"hugoGeneSymbol":"NOS2P1","entrezGeneId":645740},{"hugoGeneSymbol":"NOS2P2","entrezGeneId":201288},{"hugoGeneSymbol":"NOS2P3","entrezGeneId":339256},{"hugoGeneSymbol":"NOS2P4","entrezGeneId":266619},{"hugoGeneSymbol":"NOS3","entrezGeneId":4846},{"hugoGeneSymbol":"NOSIP","entrezGeneId":51070},{"hugoGeneSymbol":"NOSTRIN","entrezGeneId":115677},{"hugoGeneSymbol":"NOTCH1","entrezGeneId":4851},{"hugoGeneSymbol":"NOTCH2","entrezGeneId":4853},{"hugoGeneSymbol":"NOTCH2NL","entrezGeneId":388677},{"hugoGeneSymbol":"NOTCH2P1","entrezGeneId":100420260},{"hugoGeneSymbol":"NOTCH3","entrezGeneId":4854},{"hugoGeneSymbol":"NOTCH4","entrezGeneId":4855},{"hugoGeneSymbol":"NOTO","entrezGeneId":344022},{"hugoGeneSymbol":"NOTUM","entrezGeneId":147111},{"hugoGeneSymbol":"NOV","entrezGeneId":4856},{"hugoGeneSymbol":"NOVA1","entrezGeneId":4857},{"hugoGeneSymbol":"NOVA2","entrezGeneId":4858},{"hugoGeneSymbol":"NOX1","entrezGeneId":27035},{"hugoGeneSymbol":"NOX3","entrezGeneId":50508},{"hugoGeneSymbol":"NOX4","entrezGeneId":50507},{"hugoGeneSymbol":"NOX5","entrezGeneId":79400},{"hugoGeneSymbol":"NOXA1","entrezGeneId":10811},{"hugoGeneSymbol":"NOXO1","entrezGeneId":124056},{"hugoGeneSymbol":"NOXRED1","entrezGeneId":122945},{"hugoGeneSymbol":"NPAP1","entrezGeneId":23742},{"hugoGeneSymbol":"NPAP1P1","entrezGeneId":100420827},{"hugoGeneSymbol":"NPAP1P2","entrezGeneId":100420829},{"hugoGeneSymbol":"NPAP1P3","entrezGeneId":100420830},{"hugoGeneSymbol":"NPAP1P4","entrezGeneId":100533674},{"hugoGeneSymbol":"NPAP1P5","entrezGeneId":100420671},{"hugoGeneSymbol":"NPAP1P6","entrezGeneId":100533675},{"hugoGeneSymbol":"NPAP1P7","entrezGeneId":107161163},{"hugoGeneSymbol":"NPAP1P8","entrezGeneId":100420670},{"hugoGeneSymbol":"NPAS1","entrezGeneId":4861},{"hugoGeneSymbol":"NPAS2","entrezGeneId":4862},{"hugoGeneSymbol":"NPAS3","entrezGeneId":64067},{"hugoGeneSymbol":"NPAS4","entrezGeneId":266743},{"hugoGeneSymbol":"NPAT","entrezGeneId":4863},{"hugoGeneSymbol":"NPB","entrezGeneId":256933},{"hugoGeneSymbol":"NPBWR1","entrezGeneId":2831},{"hugoGeneSymbol":"NPBWR2","entrezGeneId":2832},{"hugoGeneSymbol":"NPC1","entrezGeneId":4864},{"hugoGeneSymbol":"NPC1L1","entrezGeneId":29881},{"hugoGeneSymbol":"NPC2","entrezGeneId":10577},{"hugoGeneSymbol":"NPCA1","entrezGeneId":257641},{"hugoGeneSymbol":"NPCA2","entrezGeneId":100312951},{"hugoGeneSymbol":"NPCDR1","entrezGeneId":246734},{"hugoGeneSymbol":"NPDC1","entrezGeneId":56654},{"hugoGeneSymbol":"NPEPL1","entrezGeneId":79716},{"hugoGeneSymbol":"NPEPPS","entrezGeneId":9520},{"hugoGeneSymbol":"NPFF","entrezGeneId":8620},{"hugoGeneSymbol":"NPFFR1","entrezGeneId":64106},{"hugoGeneSymbol":"NPFFR2","entrezGeneId":10886},{"hugoGeneSymbol":"NPHP1","entrezGeneId":4867},{"hugoGeneSymbol":"NPHP3","entrezGeneId":27031},{"hugoGeneSymbol":"NPHP3-ACAD11","entrezGeneId":100532724},{"hugoGeneSymbol":"NPHP3-AS1","entrezGeneId":348808},{"hugoGeneSymbol":"NPHP4","entrezGeneId":261734},{"hugoGeneSymbol":"NPHS1","entrezGeneId":4868},{"hugoGeneSymbol":"NPHS2","entrezGeneId":7827},{"hugoGeneSymbol":"NPIPA1","entrezGeneId":9284},{"hugoGeneSymbol":"NPIPA2","entrezGeneId":642799},{"hugoGeneSymbol":"NPIPA3","entrezGeneId":642778},{"hugoGeneSymbol":"NPIPA5","entrezGeneId":100288332},{"hugoGeneSymbol":"NPIPA7","entrezGeneId":101059938},{"hugoGeneSymbol":"NPIPA8","entrezGeneId":101059953},{"hugoGeneSymbol":"NPIPB10P","entrezGeneId":730153},{"hugoGeneSymbol":"NPIPB11","entrezGeneId":728888},{"hugoGeneSymbol":"NPIPB12","entrezGeneId":440353},{"hugoGeneSymbol":"NPIPB13","entrezGeneId":613037},{"hugoGeneSymbol":"NPIPB14P","entrezGeneId":109729168},{"hugoGeneSymbol":"NPIPB15","entrezGeneId":440348},{"hugoGeneSymbol":"NPIPB1P","entrezGeneId":729602},{"hugoGeneSymbol":"NPIPB2","entrezGeneId":729978},{"hugoGeneSymbol":"NPIPB3","entrezGeneId":23117},{"hugoGeneSymbol":"NPIPB4","entrezGeneId":440345},{"hugoGeneSymbol":"NPIPB5","entrezGeneId":100132247},{"hugoGeneSymbol":"NPIPB6","entrezGeneId":728741},{"hugoGeneSymbol":"NPIPB7","entrezGeneId":440350},{"hugoGeneSymbol":"NPIPB8","entrezGeneId":728734},{"hugoGeneSymbol":"NPIPB9","entrezGeneId":100507607},{"hugoGeneSymbol":"NPIPP1","entrezGeneId":100874381},{"hugoGeneSymbol":"NPL","entrezGeneId":80896},{"hugoGeneSymbol":"NPLOC4","entrezGeneId":55666},{"hugoGeneSymbol":"NPM1","entrezGeneId":4869},{"hugoGeneSymbol":"NPM1P1","entrezGeneId":4870},{"hugoGeneSymbol":"NPM1P10","entrezGeneId":10837},{"hugoGeneSymbol":"NPM1P11","entrezGeneId":10836},{"hugoGeneSymbol":"NPM1P12","entrezGeneId":10835},{"hugoGeneSymbol":"NPM1P13","entrezGeneId":10834},{"hugoGeneSymbol":"NPM1P14","entrezGeneId":10833},{"hugoGeneSymbol":"NPM1P17","entrezGeneId":10830},{"hugoGeneSymbol":"NPM1P18","entrezGeneId":10829},{"hugoGeneSymbol":"NPM1P19","entrezGeneId":10828},{"hugoGeneSymbol":"NPM1P2","entrezGeneId":4871},{"hugoGeneSymbol":"NPM1P20","entrezGeneId":326608},{"hugoGeneSymbol":"NPM1P21","entrezGeneId":100129237},{"hugoGeneSymbol":"NPM1P22","entrezGeneId":390411},{"hugoGeneSymbol":"NPM1P23","entrezGeneId":100422256},{"hugoGeneSymbol":"NPM1P24","entrezGeneId":100422312},{"hugoGeneSymbol":"NPM1P25","entrezGeneId":399804},{"hugoGeneSymbol":"NPM1P26","entrezGeneId":100422313},{"hugoGeneSymbol":"NPM1P27","entrezGeneId":100422243},{"hugoGeneSymbol":"NPM1P28","entrezGeneId":646849},{"hugoGeneSymbol":"NPM1P29","entrezGeneId":100422259},{"hugoGeneSymbol":"NPM1P3","entrezGeneId":4872},{"hugoGeneSymbol":"NPM1P30","entrezGeneId":101928904},{"hugoGeneSymbol":"NPM1P31","entrezGeneId":100287472},{"hugoGeneSymbol":"NPM1P32","entrezGeneId":440902},{"hugoGeneSymbol":"NPM1P33","entrezGeneId":100131478},{"hugoGeneSymbol":"NPM1P34","entrezGeneId":100128410},{"hugoGeneSymbol":"NPM1P35","entrezGeneId":100129067},{"hugoGeneSymbol":"NPM1P36","entrezGeneId":652423},{"hugoGeneSymbol":"NPM1P37","entrezGeneId":100422261},{"hugoGeneSymbol":"NPM1P38","entrezGeneId":100128985},{"hugoGeneSymbol":"NPM1P39","entrezGeneId":440577},{"hugoGeneSymbol":"NPM1P4","entrezGeneId":100128903},{"hugoGeneSymbol":"NPM1P40","entrezGeneId":100289584},{"hugoGeneSymbol":"NPM1P41","entrezGeneId":100422249},{"hugoGeneSymbol":"NPM1P42","entrezGeneId":729686},{"hugoGeneSymbol":"NPM1P43","entrezGeneId":100422309},{"hugoGeneSymbol":"NPM1P44","entrezGeneId":100422270},{"hugoGeneSymbol":"NPM1P45","entrezGeneId":100422316},{"hugoGeneSymbol":"NPM1P46","entrezGeneId":729342},{"hugoGeneSymbol":"NPM1P47","entrezGeneId":100129972},{"hugoGeneSymbol":"NPM1P48","entrezGeneId":442006},{"hugoGeneSymbol":"NPM1P49","entrezGeneId":100422284},{"hugoGeneSymbol":"NPM1P5","entrezGeneId":4874},{"hugoGeneSymbol":"NPM1P50","entrezGeneId":100129795},{"hugoGeneSymbol":"NPM1P51","entrezGeneId":100130606},{"hugoGeneSymbol":"NPM1P52","entrezGeneId":100422272},{"hugoGeneSymbol":"NPM1P6","entrezGeneId":4875},{"hugoGeneSymbol":"NPM1P7","entrezGeneId":10831},{"hugoGeneSymbol":"NPM1P8","entrezGeneId":100130233},{"hugoGeneSymbol":"NPM1P9","entrezGeneId":392428},{"hugoGeneSymbol":"NPM2","entrezGeneId":10361},{"hugoGeneSymbol":"NPM3","entrezGeneId":10360},{"hugoGeneSymbol":"NPNT","entrezGeneId":255743},{"hugoGeneSymbol":"NPPA","entrezGeneId":4878},{"hugoGeneSymbol":"NPPA-AS1","entrezGeneId":100379251},{"hugoGeneSymbol":"NPPB","entrezGeneId":4879},{"hugoGeneSymbol":"NPPC","entrezGeneId":4880},{"hugoGeneSymbol":"NPR1","entrezGeneId":4881},{"hugoGeneSymbol":"NPR2","entrezGeneId":4882},{"hugoGeneSymbol":"NPR3","entrezGeneId":4883},{"hugoGeneSymbol":"NPRL2","entrezGeneId":10641},{"hugoGeneSymbol":"NPRL3","entrezGeneId":8131},{"hugoGeneSymbol":"NPS","entrezGeneId":594857},{"hugoGeneSymbol":"NPSA","entrezGeneId":266811},{"hugoGeneSymbol":"NPSR1","entrezGeneId":387129},{"hugoGeneSymbol":"NPSR1-AS1","entrezGeneId":404744},{"hugoGeneSymbol":"NPTN","entrezGeneId":27020},{"hugoGeneSymbol":"NPTN-IT1","entrezGeneId":101241892},{"hugoGeneSymbol":"NPTX1","entrezGeneId":4884},{"hugoGeneSymbol":"NPTX2","entrezGeneId":4885},{"hugoGeneSymbol":"NPTXR","entrezGeneId":23467},{"hugoGeneSymbol":"NPVF","entrezGeneId":64111},{"hugoGeneSymbol":"NPW","entrezGeneId":283869},{"hugoGeneSymbol":"NPY","entrezGeneId":4852},{"hugoGeneSymbol":"NPY1R","entrezGeneId":4886},{"hugoGeneSymbol":"NPY2R","entrezGeneId":4887},{"hugoGeneSymbol":"NPY4R","entrezGeneId":5540},{"hugoGeneSymbol":"NPY4R2","entrezGeneId":100996758},{"hugoGeneSymbol":"NPY5R","entrezGeneId":4889},{"hugoGeneSymbol":"NPY6R","entrezGeneId":4888},{"hugoGeneSymbol":"NQO1","entrezGeneId":1728},{"hugoGeneSymbol":"NQO2","entrezGeneId":4835},{"hugoGeneSymbol":"NR0B1","entrezGeneId":190},{"hugoGeneSymbol":"NR0B2","entrezGeneId":8431},{"hugoGeneSymbol":"NR1D1","entrezGeneId":9572},{"hugoGeneSymbol":"NR1D2","entrezGeneId":9975},{"hugoGeneSymbol":"NR1H2","entrezGeneId":7376},{"hugoGeneSymbol":"NR1H3","entrezGeneId":10062},{"hugoGeneSymbol":"NR1H4","entrezGeneId":9971},{"hugoGeneSymbol":"NR1H5P","entrezGeneId":643609},{"hugoGeneSymbol":"NR1I2","entrezGeneId":8856},{"hugoGeneSymbol":"NR1I3","entrezGeneId":9970},{"hugoGeneSymbol":"NR1I4","entrezGeneId":22817},{"hugoGeneSymbol":"NR2C1","entrezGeneId":7181},{"hugoGeneSymbol":"NR2C2","entrezGeneId":7182},{"hugoGeneSymbol":"NR2C2AP","entrezGeneId":126382},{"hugoGeneSymbol":"NR2E1","entrezGeneId":7101},{"hugoGeneSymbol":"NR2E3","entrezGeneId":10002},{"hugoGeneSymbol":"NR2F1","entrezGeneId":7025},{"hugoGeneSymbol":"NR2F1-AS1","entrezGeneId":441094},{"hugoGeneSymbol":"NR2F2","entrezGeneId":7026},{"hugoGeneSymbol":"NR2F2-AS1","entrezGeneId":644192},{"hugoGeneSymbol":"NR2F6","entrezGeneId":2063},{"hugoGeneSymbol":"NR3C1","entrezGeneId":2908},{"hugoGeneSymbol":"NR3C1P1","entrezGeneId":2910},{"hugoGeneSymbol":"NR3C2","entrezGeneId":4306},{"hugoGeneSymbol":"NR4A1","entrezGeneId":3164},{"hugoGeneSymbol":"NR4A2","entrezGeneId":4929},{"hugoGeneSymbol":"NR4A3","entrezGeneId":8013},{"hugoGeneSymbol":"NR5A1","entrezGeneId":2516},{"hugoGeneSymbol":"NR5A2","entrezGeneId":2494},{"hugoGeneSymbol":"NR6A1","entrezGeneId":2649},{"hugoGeneSymbol":"NRADDP","entrezGeneId":100129354},{"hugoGeneSymbol":"NRAP","entrezGeneId":4892},{"hugoGeneSymbol":"NRARP","entrezGeneId":441478},{"hugoGeneSymbol":"NRAS","entrezGeneId":4893},{"hugoGeneSymbol":"NRAV","entrezGeneId":100506668},{"hugoGeneSymbol":"NRBF2","entrezGeneId":29982},{"hugoGeneSymbol":"NRBF2P1","entrezGeneId":648532},{"hugoGeneSymbol":"NRBF2P2","entrezGeneId":100114903},{"hugoGeneSymbol":"NRBF2P3","entrezGeneId":643232},{"hugoGeneSymbol":"NRBF2P4","entrezGeneId":728381},{"hugoGeneSymbol":"NRBF2P5","entrezGeneId":100118954},{"hugoGeneSymbol":"NRBP1","entrezGeneId":29959},{"hugoGeneSymbol":"NRBP2","entrezGeneId":340371},{"hugoGeneSymbol":"NRCAM","entrezGeneId":4897},{"hugoGeneSymbol":"NRCLP2","entrezGeneId":100918},{"hugoGeneSymbol":"NRCLP3","entrezGeneId":494446},{"hugoGeneSymbol":"NRCLP4","entrezGeneId":100216484},{"hugoGeneSymbol":"NRCLP5","entrezGeneId":100302514},{"hugoGeneSymbol":"NRCLP6","entrezGeneId":100689216},{"hugoGeneSymbol":"NRDC","entrezGeneId":4898},{"hugoGeneSymbol":"NRDE2","entrezGeneId":55051},{"hugoGeneSymbol":"NREP","entrezGeneId":9315},{"hugoGeneSymbol":"NREP-AS1","entrezGeneId":100873948},{"hugoGeneSymbol":"NRF1","entrezGeneId":4899},{"hugoGeneSymbol":"NRG1","entrezGeneId":3084},{"hugoGeneSymbol":"NRG1-IT1","entrezGeneId":100856811},{"hugoGeneSymbol":"NRG1-IT3","entrezGeneId":100874286},{"hugoGeneSymbol":"NRG2","entrezGeneId":9542},{"hugoGeneSymbol":"NRG3","entrezGeneId":10718},{"hugoGeneSymbol":"NRG3-AS1","entrezGeneId":101929590},{"hugoGeneSymbol":"NRG4","entrezGeneId":145957},{"hugoGeneSymbol":"NRGN","entrezGeneId":4900},{"hugoGeneSymbol":"NRIP1","entrezGeneId":8204},{"hugoGeneSymbol":"NRIP2","entrezGeneId":83714},{"hugoGeneSymbol":"NRIP3","entrezGeneId":56675},{"hugoGeneSymbol":"NRIR","entrezGeneId":104326052},{"hugoGeneSymbol":"NRK","entrezGeneId":203447},{"hugoGeneSymbol":"NRL","entrezGeneId":4901},{"hugoGeneSymbol":"NRM","entrezGeneId":11270},{"hugoGeneSymbol":"NRN1","entrezGeneId":51299},{"hugoGeneSymbol":"NRN1L","entrezGeneId":123904},{"hugoGeneSymbol":"NRON","entrezGeneId":641373},{"hugoGeneSymbol":"NRP1","entrezGeneId":8829},{"hugoGeneSymbol":"NRP2","entrezGeneId":8828},{"hugoGeneSymbol":"NRROS","entrezGeneId":375387},{"hugoGeneSymbol":"NRSN1","entrezGeneId":140767},{"hugoGeneSymbol":"NRSN2","entrezGeneId":80023},{"hugoGeneSymbol":"NRSN2-AS1","entrezGeneId":100507459},{"hugoGeneSymbol":"NRTN","entrezGeneId":4902},{"hugoGeneSymbol":"NRXN1","entrezGeneId":9378},{"hugoGeneSymbol":"NRXN2","entrezGeneId":9379},{"hugoGeneSymbol":"NRXN3","entrezGeneId":9369},{"hugoGeneSymbol":"NS2","entrezGeneId":57762},{"hugoGeneSymbol":"NSA2","entrezGeneId":10412},{"hugoGeneSymbol":"NSD1","entrezGeneId":64324},{"hugoGeneSymbol":"NSD2","entrezGeneId":7468},{"hugoGeneSymbol":"NSD3","entrezGeneId":54904},{"hugoGeneSymbol":"NSDHL","entrezGeneId":50814},{"hugoGeneSymbol":"NSF","entrezGeneId":4905},{"hugoGeneSymbol":"NSFL1C","entrezGeneId":55968},{"hugoGeneSymbol":"NSFP1","entrezGeneId":728806},{"hugoGeneSymbol":"NSG1","entrezGeneId":27065},{"hugoGeneSymbol":"NSG2","entrezGeneId":51617},{"hugoGeneSymbol":"NSL1","entrezGeneId":25936},{"hugoGeneSymbol":"NSMAF","entrezGeneId":8439},{"hugoGeneSymbol":"NSMCE1","entrezGeneId":197370},{"hugoGeneSymbol":"NSMCE2","entrezGeneId":286053},{"hugoGeneSymbol":"NSMCE3","entrezGeneId":56160},{"hugoGeneSymbol":"NSMCE4A","entrezGeneId":54780},{"hugoGeneSymbol":"NSMF","entrezGeneId":26012},{"hugoGeneSymbol":"NSRP1","entrezGeneId":84081},{"hugoGeneSymbol":"NSRP1P1","entrezGeneId":100420557},{"hugoGeneSymbol":"NSUN2","entrezGeneId":54888},{"hugoGeneSymbol":"NSUN3","entrezGeneId":63899},{"hugoGeneSymbol":"NSUN4","entrezGeneId":387338},{"hugoGeneSymbol":"NSUN5","entrezGeneId":55695},{"hugoGeneSymbol":"NSUN5P1","entrezGeneId":155400},{"hugoGeneSymbol":"NSUN5P2","entrezGeneId":260294},{"hugoGeneSymbol":"NSUN6","entrezGeneId":221078},{"hugoGeneSymbol":"NSUN7","entrezGeneId":79730},{"hugoGeneSymbol":"NT3","entrezGeneId":4877},{"hugoGeneSymbol":"NT5C","entrezGeneId":30833},{"hugoGeneSymbol":"NT5C1A","entrezGeneId":84618},{"hugoGeneSymbol":"NT5C1B","entrezGeneId":93034},{"hugoGeneSymbol":"NT5C1B-RDH14","entrezGeneId":100526794},{"hugoGeneSymbol":"NT5C2","entrezGeneId":22978},{"hugoGeneSymbol":"NT5C3A","entrezGeneId":51251},{"hugoGeneSymbol":"NT5C3AP1","entrezGeneId":90859},{"hugoGeneSymbol":"NT5C3B","entrezGeneId":115024},{"hugoGeneSymbol":"NT5CP1","entrezGeneId":326609},{"hugoGeneSymbol":"NT5CP2","entrezGeneId":326611},{"hugoGeneSymbol":"NT5CP3","entrezGeneId":100420457},{"hugoGeneSymbol":"NT5DC1","entrezGeneId":221294},{"hugoGeneSymbol":"NT5DC2","entrezGeneId":64943},{"hugoGeneSymbol":"NT5DC3","entrezGeneId":51559},{"hugoGeneSymbol":"NT5DC4","entrezGeneId":284958},{"hugoGeneSymbol":"NT5E","entrezGeneId":4907},{"hugoGeneSymbol":"NT5M","entrezGeneId":56953},{"hugoGeneSymbol":"NTAN1","entrezGeneId":123803},{"hugoGeneSymbol":"NTAN1P1","entrezGeneId":100420389},{"hugoGeneSymbol":"NTAN1P2","entrezGeneId":100420307},{"hugoGeneSymbol":"NTAN1P3","entrezGeneId":100420356},{"hugoGeneSymbol":"NTF3","entrezGeneId":4908},{"hugoGeneSymbol":"NTF4","entrezGeneId":4909},{"hugoGeneSymbol":"NTF6A","entrezGeneId":4910},{"hugoGeneSymbol":"NTF6B","entrezGeneId":4911},{"hugoGeneSymbol":"NTF6G","entrezGeneId":4912},{"hugoGeneSymbol":"NTHL1","entrezGeneId":4913},{"hugoGeneSymbol":"NTM","entrezGeneId":50863},{"hugoGeneSymbol":"NTM-AS1","entrezGeneId":101929637},{"hugoGeneSymbol":"NTM-IT","entrezGeneId":100874281},{"hugoGeneSymbol":"NTMT1","entrezGeneId":28989},{"hugoGeneSymbol":"NTN1","entrezGeneId":9423},{"hugoGeneSymbol":"NTN3","entrezGeneId":4917},{"hugoGeneSymbol":"NTN4","entrezGeneId":59277},{"hugoGeneSymbol":"NTN5","entrezGeneId":126147},{"hugoGeneSymbol":"NTNG1","entrezGeneId":22854},{"hugoGeneSymbol":"NTNG2","entrezGeneId":84628},{"hugoGeneSymbol":"NTPCR","entrezGeneId":84284},{"hugoGeneSymbol":"NTRK1","entrezGeneId":4914},{"hugoGeneSymbol":"NTRK2","entrezGeneId":4915},{"hugoGeneSymbol":"NTRK3","entrezGeneId":4916},{"hugoGeneSymbol":"NTRK3-AS1","entrezGeneId":283738},{"hugoGeneSymbol":"NTS","entrezGeneId":4922},{"hugoGeneSymbol":"NTSR1","entrezGeneId":4923},{"hugoGeneSymbol":"NTSR2","entrezGeneId":23620},{"hugoGeneSymbol":"NTT","entrezGeneId":7956},{"hugoGeneSymbol":"NUAK1","entrezGeneId":9891},{"hugoGeneSymbol":"NUAK2","entrezGeneId":81788},{"hugoGeneSymbol":"NUB1","entrezGeneId":51667},{"hugoGeneSymbol":"NUBP1","entrezGeneId":4682},{"hugoGeneSymbol":"NUBP2","entrezGeneId":10101},{"hugoGeneSymbol":"NUBPL","entrezGeneId":80224},{"hugoGeneSymbol":"NUCB1","entrezGeneId":4924},{"hugoGeneSymbol":"NUCB1-AS1","entrezGeneId":100874085},{"hugoGeneSymbol":"NUCB2","entrezGeneId":4925},{"hugoGeneSymbol":"NUCKS1","entrezGeneId":64710},{"hugoGeneSymbol":"NUCKS1P1","entrezGeneId":100130466},{"hugoGeneSymbol":"NUDC","entrezGeneId":10726},{"hugoGeneSymbol":"NUDCD1","entrezGeneId":84955},{"hugoGeneSymbol":"NUDCD2","entrezGeneId":134492},{"hugoGeneSymbol":"NUDCD3","entrezGeneId":23386},{"hugoGeneSymbol":"NUDCP1","entrezGeneId":10790},{"hugoGeneSymbol":"NUDCP2","entrezGeneId":10789},{"hugoGeneSymbol":"NUDT1","entrezGeneId":4521},{"hugoGeneSymbol":"NUDT10","entrezGeneId":170685},{"hugoGeneSymbol":"NUDT11","entrezGeneId":55190},{"hugoGeneSymbol":"NUDT12","entrezGeneId":83594},{"hugoGeneSymbol":"NUDT13","entrezGeneId":25961},{"hugoGeneSymbol":"NUDT14","entrezGeneId":256281},{"hugoGeneSymbol":"NUDT15","entrezGeneId":55270},{"hugoGeneSymbol":"NUDT15P1","entrezGeneId":574532},{"hugoGeneSymbol":"NUDT15P2","entrezGeneId":574533},{"hugoGeneSymbol":"NUDT16","entrezGeneId":131870},{"hugoGeneSymbol":"NUDT16L1","entrezGeneId":84309},{"hugoGeneSymbol":"NUDT16P1","entrezGeneId":152195},{"hugoGeneSymbol":"NUDT17","entrezGeneId":200035},{"hugoGeneSymbol":"NUDT18","entrezGeneId":79873},{"hugoGeneSymbol":"NUDT19","entrezGeneId":390916},{"hugoGeneSymbol":"NUDT19P1","entrezGeneId":100126008},{"hugoGeneSymbol":"NUDT19P2","entrezGeneId":100422458},{"hugoGeneSymbol":"NUDT19P3","entrezGeneId":100422450},{"hugoGeneSymbol":"NUDT19P4","entrezGeneId":100422452},{"hugoGeneSymbol":"NUDT19P5","entrezGeneId":100422445},{"hugoGeneSymbol":"NUDT2","entrezGeneId":318},{"hugoGeneSymbol":"NUDT21","entrezGeneId":11051},{"hugoGeneSymbol":"NUDT21P1","entrezGeneId":100422467},{"hugoGeneSymbol":"NUDT22","entrezGeneId":84304},{"hugoGeneSymbol":"NUDT3","entrezGeneId":11165},{"hugoGeneSymbol":"NUDT4","entrezGeneId":11163},{"hugoGeneSymbol":"NUDT4B","entrezGeneId":440672},{"hugoGeneSymbol":"NUDT4P2","entrezGeneId":170688},{"hugoGeneSymbol":"NUDT5","entrezGeneId":11164},{"hugoGeneSymbol":"NUDT6","entrezGeneId":11162},{"hugoGeneSymbol":"NUDT7","entrezGeneId":283927},{"hugoGeneSymbol":"NUDT8","entrezGeneId":254552},{"hugoGeneSymbol":"NUDT9","entrezGeneId":53343},{"hugoGeneSymbol":"NUDT9P1","entrezGeneId":119369},{"hugoGeneSymbol":"NUF2","entrezGeneId":83540},{"hugoGeneSymbol":"NUFIP1","entrezGeneId":26747},{"hugoGeneSymbol":"NUFIP1P","entrezGeneId":89761},{"hugoGeneSymbol":"NUFIP2","entrezGeneId":57532},{"hugoGeneSymbol":"NUGGC","entrezGeneId":389643},{"hugoGeneSymbol":"NUMA1","entrezGeneId":4926},{"hugoGeneSymbol":"NUMB","entrezGeneId":8650},{"hugoGeneSymbol":"NUMBL","entrezGeneId":9253},{"hugoGeneSymbol":"NUP107","entrezGeneId":57122},{"hugoGeneSymbol":"NUP133","entrezGeneId":55746},{"hugoGeneSymbol":"NUP153","entrezGeneId":9972},{"hugoGeneSymbol":"NUP155","entrezGeneId":9631},{"hugoGeneSymbol":"NUP160","entrezGeneId":23279},{"hugoGeneSymbol":"NUP188","entrezGeneId":23511},{"hugoGeneSymbol":"NUP205","entrezGeneId":23165},{"hugoGeneSymbol":"NUP210","entrezGeneId":23225},{"hugoGeneSymbol":"NUP210L","entrezGeneId":91181},{"hugoGeneSymbol":"NUP210P1","entrezGeneId":255330},{"hugoGeneSymbol":"NUP210P2","entrezGeneId":100129929},{"hugoGeneSymbol":"NUP210P3","entrezGeneId":100419070},{"hugoGeneSymbol":"NUP214","entrezGeneId":8021},{"hugoGeneSymbol":"NUP35","entrezGeneId":129401},{"hugoGeneSymbol":"NUP35P1","entrezGeneId":100419066},{"hugoGeneSymbol":"NUP35P2","entrezGeneId":101059916},{"hugoGeneSymbol":"NUP37","entrezGeneId":79023},{"hugoGeneSymbol":"NUP43","entrezGeneId":348995},{"hugoGeneSymbol":"NUP50","entrezGeneId":10762},{"hugoGeneSymbol":"NUP50-DT","entrezGeneId":100506714},{"hugoGeneSymbol":"NUP50P1","entrezGeneId":145375},{"hugoGeneSymbol":"NUP50P2","entrezGeneId":266785},{"hugoGeneSymbol":"NUP50P3","entrezGeneId":266786},{"hugoGeneSymbol":"NUP54","entrezGeneId":53371},{"hugoGeneSymbol":"NUP58","entrezGeneId":9818},{"hugoGeneSymbol":"NUP58P1","entrezGeneId":100289295},{"hugoGeneSymbol":"NUP62","entrezGeneId":23636},{"hugoGeneSymbol":"NUP62CL","entrezGeneId":54830},{"hugoGeneSymbol":"NUP85","entrezGeneId":79902},{"hugoGeneSymbol":"NUP88","entrezGeneId":4927},{"hugoGeneSymbol":"NUP93","entrezGeneId":9688},{"hugoGeneSymbol":"NUP98","entrezGeneId":4928},{"hugoGeneSymbol":"NUPL2","entrezGeneId":11097},{"hugoGeneSymbol":"NUPR1","entrezGeneId":26471},{"hugoGeneSymbol":"NUPR2","entrezGeneId":389493},{"hugoGeneSymbol":"NUS1","entrezGeneId":116150},{"hugoGeneSymbol":"NUS1P1","entrezGeneId":729148},{"hugoGeneSymbol":"NUS1P2","entrezGeneId":646208},{"hugoGeneSymbol":"NUS1P3","entrezGeneId":11049},{"hugoGeneSymbol":"NUS1P4","entrezGeneId":100130167},{"hugoGeneSymbol":"NUSAP1","entrezGeneId":51203},{"hugoGeneSymbol":"NUTF2","entrezGeneId":10204},{"hugoGeneSymbol":"NUTF2P2","entrezGeneId":326613},{"hugoGeneSymbol":"NUTF2P3","entrezGeneId":106480298},{"hugoGeneSymbol":"NUTF2P4","entrezGeneId":128322},{"hugoGeneSymbol":"NUTF2P5","entrezGeneId":106481706},{"hugoGeneSymbol":"NUTF2P6","entrezGeneId":100131623},{"hugoGeneSymbol":"NUTF2P7","entrezGeneId":100287868},{"hugoGeneSymbol":"NUTF2P8","entrezGeneId":100287183},{"hugoGeneSymbol":"NUTM1","entrezGeneId":256646},{"hugoGeneSymbol":"NUTM2A","entrezGeneId":728118},{"hugoGeneSymbol":"NUTM2A-AS1","entrezGeneId":728190},{"hugoGeneSymbol":"NUTM2B","entrezGeneId":729262},{"hugoGeneSymbol":"NUTM2B-AS1","entrezGeneId":101060691},{"hugoGeneSymbol":"NUTM2D","entrezGeneId":728130},{"hugoGeneSymbol":"NUTM2E","entrezGeneId":283008},{"hugoGeneSymbol":"NUTM2F","entrezGeneId":54754},{"hugoGeneSymbol":"NUTM2G","entrezGeneId":441457},{"hugoGeneSymbol":"NUTM2HP","entrezGeneId":729023},{"hugoGeneSymbol":"NVL","entrezGeneId":4931},{"hugoGeneSymbol":"NWD1","entrezGeneId":284434},{"hugoGeneSymbol":"NWD2","entrezGeneId":57495},{"hugoGeneSymbol":"NXF1","entrezGeneId":10482},{"hugoGeneSymbol":"NXF2","entrezGeneId":56001},{"hugoGeneSymbol":"NXF2B","entrezGeneId":728343},{"hugoGeneSymbol":"NXF3","entrezGeneId":56000},{"hugoGeneSymbol":"NXF4","entrezGeneId":55999},{"hugoGeneSymbol":"NXF5","entrezGeneId":55998},{"hugoGeneSymbol":"NXN","entrezGeneId":64359},{"hugoGeneSymbol":"NXNL1","entrezGeneId":115861},{"hugoGeneSymbol":"NXNL2","entrezGeneId":158046},{"hugoGeneSymbol":"NXNP1","entrezGeneId":100130251},{"hugoGeneSymbol":"NXPE1","entrezGeneId":120400},{"hugoGeneSymbol":"NXPE2","entrezGeneId":120406},{"hugoGeneSymbol":"NXPE2P1","entrezGeneId":101926945},{"hugoGeneSymbol":"NXPE3","entrezGeneId":91775},{"hugoGeneSymbol":"NXPE4","entrezGeneId":54827},{"hugoGeneSymbol":"NXPH1","entrezGeneId":30010},{"hugoGeneSymbol":"NXPH2","entrezGeneId":11249},{"hugoGeneSymbol":"NXPH3","entrezGeneId":11248},{"hugoGeneSymbol":"NXPH4","entrezGeneId":11247},{"hugoGeneSymbol":"NXT1","entrezGeneId":29107},{"hugoGeneSymbol":"NXT1P1","entrezGeneId":100652801},{"hugoGeneSymbol":"NXT2","entrezGeneId":55916},{"hugoGeneSymbol":"NYAP1","entrezGeneId":222950},{"hugoGeneSymbol":"NYAP2","entrezGeneId":57624},{"hugoGeneSymbol":"NYNRIN","entrezGeneId":57523},{"hugoGeneSymbol":"NYS2","entrezGeneId":4933},{"hugoGeneSymbol":"NYS3","entrezGeneId":4934},{"hugoGeneSymbol":"NYS4","entrezGeneId":317685},{"hugoGeneSymbol":"NYS5","entrezGeneId":780901},{"hugoGeneSymbol":"NYS7","entrezGeneId":101055624},{"hugoGeneSymbol":"NYX","entrezGeneId":60506},{"hugoGeneSymbol":"OA1","entrezGeneId":474285},{"hugoGeneSymbol":"OA10","entrezGeneId":544327},{"hugoGeneSymbol":"OA11","entrezGeneId":544328},{"hugoGeneSymbol":"OA12","entrezGeneId":544333},{"hugoGeneSymbol":"OA13","entrezGeneId":544321},{"hugoGeneSymbol":"OA14","entrezGeneId":544331},{"hugoGeneSymbol":"OA15","entrezGeneId":544335},{"hugoGeneSymbol":"OA16","entrezGeneId":474195},{"hugoGeneSymbol":"OA17","entrezGeneId":544329},{"hugoGeneSymbol":"OA18","entrezGeneId":544320},{"hugoGeneSymbol":"OA19","entrezGeneId":544318},{"hugoGeneSymbol":"OA2","entrezGeneId":474286},{"hugoGeneSymbol":"OA20","entrezGeneId":544323},{"hugoGeneSymbol":"OA21","entrezGeneId":544325},{"hugoGeneSymbol":"OA22","entrezGeneId":544332},{"hugoGeneSymbol":"OA23","entrezGeneId":544324},{"hugoGeneSymbol":"OA24","entrezGeneId":474188},{"hugoGeneSymbol":"OA25","entrezGeneId":474196},{"hugoGeneSymbol":"OA26","entrezGeneId":474310},{"hugoGeneSymbol":"OA27","entrezGeneId":544334},{"hugoGeneSymbol":"OA28","entrezGeneId":544322},{"hugoGeneSymbol":"OA29","entrezGeneId":474185},{"hugoGeneSymbol":"OA3","entrezGeneId":4936},{"hugoGeneSymbol":"OA30","entrezGeneId":474186},{"hugoGeneSymbol":"OA4","entrezGeneId":474288},{"hugoGeneSymbol":"OA5","entrezGeneId":474289},{"hugoGeneSymbol":"OA6","entrezGeneId":474290},{"hugoGeneSymbol":"OA7","entrezGeneId":474291},{"hugoGeneSymbol":"OA8","entrezGeneId":474292},{"hugoGeneSymbol":"OA9","entrezGeneId":474293},{"hugoGeneSymbol":"OACYLP","entrezGeneId":390858},{"hugoGeneSymbol":"OAF","entrezGeneId":220323},{"hugoGeneSymbol":"OAP","entrezGeneId":4937},{"hugoGeneSymbol":"OARD1","entrezGeneId":221443},{"hugoGeneSymbol":"OAS1","entrezGeneId":4938},{"hugoGeneSymbol":"OAS2","entrezGeneId":4939},{"hugoGeneSymbol":"OAS3","entrezGeneId":4940},{"hugoGeneSymbol":"OASD","entrezGeneId":4941},{"hugoGeneSymbol":"OASL","entrezGeneId":8638},{"hugoGeneSymbol":"OASL2P","entrezGeneId":111216278},{"hugoGeneSymbol":"OAT","entrezGeneId":4942},{"hugoGeneSymbol":"OATP1","entrezGeneId":4945},{"hugoGeneSymbol":"OAZ1","entrezGeneId":4946},{"hugoGeneSymbol":"OAZ2","entrezGeneId":4947},{"hugoGeneSymbol":"OAZ3","entrezGeneId":51686},{"hugoGeneSymbol":"OBP2A","entrezGeneId":29991},{"hugoGeneSymbol":"OBP2B","entrezGeneId":29989},{"hugoGeneSymbol":"OBSCN","entrezGeneId":84033},{"hugoGeneSymbol":"OBSCN-AS1","entrezGeneId":574407},{"hugoGeneSymbol":"OBSL1","entrezGeneId":23363},{"hugoGeneSymbol":"OC90","entrezGeneId":729330},{"hugoGeneSymbol":"OCA2","entrezGeneId":4948},{"hugoGeneSymbol":"OCA5","entrezGeneId":101926885},{"hugoGeneSymbol":"OCEL1","entrezGeneId":79629},{"hugoGeneSymbol":"OCIAD1","entrezGeneId":54940},{"hugoGeneSymbol":"OCIAD1-AS1","entrezGeneId":100861517},{"hugoGeneSymbol":"OCIAD2","entrezGeneId":132299},{"hugoGeneSymbol":"OCIAD2P1","entrezGeneId":100287085},{"hugoGeneSymbol":"OCLM","entrezGeneId":10896},{"hugoGeneSymbol":"OCLN","entrezGeneId":100506658},{"hugoGeneSymbol":"OCM","entrezGeneId":654231},{"hugoGeneSymbol":"OCM2","entrezGeneId":4951},{"hugoGeneSymbol":"OCRL","entrezGeneId":4952},{"hugoGeneSymbol":"OCSTAMP","entrezGeneId":128506},{"hugoGeneSymbol":"OCTN3","entrezGeneId":100049579},{"hugoGeneSymbol":"ODAM","entrezGeneId":54959},{"hugoGeneSymbol":"ODAPH","entrezGeneId":152816},{"hugoGeneSymbol":"ODC1","entrezGeneId":4953},{"hugoGeneSymbol":"ODCP","entrezGeneId":4954},{"hugoGeneSymbol":"ODF1","entrezGeneId":4956},{"hugoGeneSymbol":"ODF2","entrezGeneId":4957},{"hugoGeneSymbol":"ODF2-AS1","entrezGeneId":107080620},{"hugoGeneSymbol":"ODF2L","entrezGeneId":57489},{"hugoGeneSymbol":"ODF3","entrezGeneId":113746},{"hugoGeneSymbol":"ODF3B","entrezGeneId":440836},{"hugoGeneSymbol":"ODF3L1","entrezGeneId":161753},{"hugoGeneSymbol":"ODF3L2","entrezGeneId":284451},{"hugoGeneSymbol":"ODF4","entrezGeneId":146852},{"hugoGeneSymbol":"ODPF","entrezGeneId":54114},{"hugoGeneSymbol":"ODR4","entrezGeneId":54953},{"hugoGeneSymbol":"ODS1","entrezGeneId":100188802},{"hugoGeneSymbol":"OED","entrezGeneId":4961},{"hugoGeneSymbol":"OFC1","entrezGeneId":4963},{"hugoGeneSymbol":"OFC12","entrezGeneId":100302515},{"hugoGeneSymbol":"OFC13","entrezGeneId":100653367},{"hugoGeneSymbol":"OFC14","entrezGeneId":103581096},{"hugoGeneSymbol":"OFC2","entrezGeneId":4964},{"hugoGeneSymbol":"OFC3","entrezGeneId":4965},{"hugoGeneSymbol":"OFC4","entrezGeneId":474387},{"hugoGeneSymbol":"OFC9","entrezGeneId":100462724},{"hugoGeneSymbol":"OFCC1","entrezGeneId":266553},{"hugoGeneSymbol":"OFD1","entrezGeneId":8481},{"hugoGeneSymbol":"OFD1P10Y","entrezGeneId":386694},{"hugoGeneSymbol":"OFD1P11Y","entrezGeneId":386695},{"hugoGeneSymbol":"OFD1P12Y","entrezGeneId":386696},{"hugoGeneSymbol":"OFD1P13Y","entrezGeneId":386697},{"hugoGeneSymbol":"OFD1P14Y","entrezGeneId":386698},{"hugoGeneSymbol":"OFD1P15Y","entrezGeneId":386699},{"hugoGeneSymbol":"OFD1P16Y","entrezGeneId":442485},{"hugoGeneSymbol":"OFD1P17","entrezGeneId":23738},{"hugoGeneSymbol":"OFD1P18Y","entrezGeneId":10751},{"hugoGeneSymbol":"OFD1P1Y","entrezGeneId":378009},{"hugoGeneSymbol":"OFD1P2Y","entrezGeneId":378010},{"hugoGeneSymbol":"OFD1P3Y","entrezGeneId":386687},{"hugoGeneSymbol":"OFD1P4Y","entrezGeneId":386688},{"hugoGeneSymbol":"OFD1P5Y","entrezGeneId":386689},{"hugoGeneSymbol":"OFD1P6Y","entrezGeneId":386690},{"hugoGeneSymbol":"OFD1P7Y","entrezGeneId":386691},{"hugoGeneSymbol":"OFD1P8Y","entrezGeneId":386692},{"hugoGeneSymbol":"OFD1P9Y","entrezGeneId":386693},{"hugoGeneSymbol":"OGDH","entrezGeneId":4967},{"hugoGeneSymbol":"OGDHL","entrezGeneId":55753},{"hugoGeneSymbol":"OGFOD1","entrezGeneId":55239},{"hugoGeneSymbol":"OGFOD1P1","entrezGeneId":387924},{"hugoGeneSymbol":"OGFOD2","entrezGeneId":79676},{"hugoGeneSymbol":"OGFOD3","entrezGeneId":79701},{"hugoGeneSymbol":"OGFR","entrezGeneId":11054},{"hugoGeneSymbol":"OGFR-AS1","entrezGeneId":101409261},{"hugoGeneSymbol":"OGFRL1","entrezGeneId":79627},{"hugoGeneSymbol":"OGFRP1","entrezGeneId":388906},{"hugoGeneSymbol":"OGG1","entrezGeneId":4968},{"hugoGeneSymbol":"OGN","entrezGeneId":4969},{"hugoGeneSymbol":"OGS2","entrezGeneId":8221},{"hugoGeneSymbol":"OGT","entrezGeneId":8473},{"hugoGeneSymbol":"OHDS","entrezGeneId":50948},{"hugoGeneSymbol":"OI16","entrezGeneId":105317032},{"hugoGeneSymbol":"OIP5","entrezGeneId":11339},{"hugoGeneSymbol":"OIP5-AS1","entrezGeneId":729082},{"hugoGeneSymbol":"OIT3","entrezGeneId":170392},{"hugoGeneSymbol":"OLA1","entrezGeneId":29789},{"hugoGeneSymbol":"OLA1P1","entrezGeneId":246785},{"hugoGeneSymbol":"OLA1P2","entrezGeneId":106479059},{"hugoGeneSymbol":"OLA1P3","entrezGeneId":101060020},{"hugoGeneSymbol":"OLAH","entrezGeneId":55301},{"hugoGeneSymbol":"OLFM1","entrezGeneId":10439},{"hugoGeneSymbol":"OLFM2","entrezGeneId":93145},{"hugoGeneSymbol":"OLFM3","entrezGeneId":118427},{"hugoGeneSymbol":"OLFM4","entrezGeneId":10562},{"hugoGeneSymbol":"OLFM5P","entrezGeneId":101927763},{"hugoGeneSymbol":"OLFML1","entrezGeneId":283298},{"hugoGeneSymbol":"OLFML2A","entrezGeneId":169611},{"hugoGeneSymbol":"OLFML2B","entrezGeneId":25903},{"hugoGeneSymbol":"OLFML3","entrezGeneId":56944},{"hugoGeneSymbol":"OLIG1","entrezGeneId":116448},{"hugoGeneSymbol":"OLIG2","entrezGeneId":10215},{"hugoGeneSymbol":"OLIG3","entrezGeneId":167826},{"hugoGeneSymbol":"OLMALINC","entrezGeneId":90271},{"hugoGeneSymbol":"OLR1","entrezGeneId":4973},{"hugoGeneSymbol":"OMA1","entrezGeneId":115209},{"hugoGeneSymbol":"OMD","entrezGeneId":4958},{"hugoGeneSymbol":"OMG","entrezGeneId":4974},{"hugoGeneSymbol":"OMP","entrezGeneId":4975},{"hugoGeneSymbol":"OMS","entrezGeneId":619538},{"hugoGeneSymbol":"ONECUT1","entrezGeneId":3175},{"hugoGeneSymbol":"ONECUT2","entrezGeneId":9480},{"hugoGeneSymbol":"ONECUT3","entrezGeneId":390874},{"hugoGeneSymbol":"OOEP","entrezGeneId":441161},{"hugoGeneSymbol":"OOEP-AS1","entrezGeneId":106478938},{"hugoGeneSymbol":"OOSP1","entrezGeneId":255649},{"hugoGeneSymbol":"OOSP1P1","entrezGeneId":106480251},{"hugoGeneSymbol":"OOSP1P2","entrezGeneId":106480252},{"hugoGeneSymbol":"OOSP2","entrezGeneId":219990},{"hugoGeneSymbol":"OPA1","entrezGeneId":4976},{"hugoGeneSymbol":"OPA1-AS1","entrezGeneId":100873941},{"hugoGeneSymbol":"OPA2","entrezGeneId":4977},{"hugoGeneSymbol":"OPA3","entrezGeneId":80207},{"hugoGeneSymbol":"OPA4","entrezGeneId":58156},{"hugoGeneSymbol":"OPA5","entrezGeneId":692222},{"hugoGeneSymbol":"OPA6","entrezGeneId":777778},{"hugoGeneSymbol":"OPA8","entrezGeneId":106783499},{"hugoGeneSymbol":"OPALIN","entrezGeneId":93377},{"hugoGeneSymbol":"OPCML","entrezGeneId":4978},{"hugoGeneSymbol":"OPCML-IT1","entrezGeneId":100874333},{"hugoGeneSymbol":"OPCML-IT2","entrezGeneId":100874332},{"hugoGeneSymbol":"OPEM","entrezGeneId":4981},{"hugoGeneSymbol":"OPHLC","entrezGeneId":101290499},{"hugoGeneSymbol":"OPHN1","entrezGeneId":4983},{"hugoGeneSymbol":"OPLAH","entrezGeneId":26873},{"hugoGeneSymbol":"OPLL","entrezGeneId":7933},{"hugoGeneSymbol":"OPN1LW","entrezGeneId":5956},{"hugoGeneSymbol":"OPN1MW","entrezGeneId":2652},{"hugoGeneSymbol":"OPN1MW2","entrezGeneId":728458},{"hugoGeneSymbol":"OPN1MW3","entrezGeneId":101060233},{"hugoGeneSymbol":"OPN1SW","entrezGeneId":611},{"hugoGeneSymbol":"OPN3","entrezGeneId":23596},{"hugoGeneSymbol":"OPN4","entrezGeneId":94233},{"hugoGeneSymbol":"OPN5","entrezGeneId":221391},{"hugoGeneSymbol":"OPRD1","entrezGeneId":4985},{"hugoGeneSymbol":"OPRK1","entrezGeneId":4986},{"hugoGeneSymbol":"OPRL1","entrezGeneId":4987},{"hugoGeneSymbol":"OPRM1","entrezGeneId":4988},{"hugoGeneSymbol":"OPRPN","entrezGeneId":58503},{"hugoGeneSymbol":"OPSIN-LCR","entrezGeneId":107604627},{"hugoGeneSymbol":"OPTC","entrezGeneId":26254},{"hugoGeneSymbol":"OPTN","entrezGeneId":10133},{"hugoGeneSymbol":"OR10A2","entrezGeneId":341276},{"hugoGeneSymbol":"OR10A3","entrezGeneId":26496},{"hugoGeneSymbol":"OR10A4","entrezGeneId":283297},{"hugoGeneSymbol":"OR10A5","entrezGeneId":144124},{"hugoGeneSymbol":"OR10A6","entrezGeneId":390093},{"hugoGeneSymbol":"OR10A7","entrezGeneId":121364},{"hugoGeneSymbol":"OR10AA1P","entrezGeneId":81487},{"hugoGeneSymbol":"OR10AB1P","entrezGeneId":390091},{"hugoGeneSymbol":"OR10AC1","entrezGeneId":392133},{"hugoGeneSymbol":"OR10AD1","entrezGeneId":121275},{"hugoGeneSymbol":"OR10AE1P","entrezGeneId":81486},{"hugoGeneSymbol":"OR10AE3P","entrezGeneId":403223},{"hugoGeneSymbol":"OR10AF1P","entrezGeneId":282769},{"hugoGeneSymbol":"OR10AG1","entrezGeneId":282770},{"hugoGeneSymbol":"OR10AH1P","entrezGeneId":402246},{"hugoGeneSymbol":"OR10AK1P","entrezGeneId":403224},{"hugoGeneSymbol":"OR10B1P","entrezGeneId":401903},{"hugoGeneSymbol":"OR10C1","entrezGeneId":442194},{"hugoGeneSymbol":"OR10D1P","entrezGeneId":26541},{"hugoGeneSymbol":"OR10D3","entrezGeneId":26497},{"hugoGeneSymbol":"OR10D4P","entrezGeneId":390266},{"hugoGeneSymbol":"OR10D5P","entrezGeneId":79488},{"hugoGeneSymbol":"OR10G1P","entrezGeneId":26540},{"hugoGeneSymbol":"OR10G2","entrezGeneId":26534},{"hugoGeneSymbol":"OR10G3","entrezGeneId":26533},{"hugoGeneSymbol":"OR10G4","entrezGeneId":390264},{"hugoGeneSymbol":"OR10G5P","entrezGeneId":79515},{"hugoGeneSymbol":"OR10G6","entrezGeneId":79490},{"hugoGeneSymbol":"OR10G7","entrezGeneId":390265},{"hugoGeneSymbol":"OR10G8","entrezGeneId":219869},{"hugoGeneSymbol":"OR10G9","entrezGeneId":219870},{"hugoGeneSymbol":"OR10H1","entrezGeneId":26539},{"hugoGeneSymbol":"OR10H2","entrezGeneId":26538},{"hugoGeneSymbol":"OR10H3","entrezGeneId":26532},{"hugoGeneSymbol":"OR10H4","entrezGeneId":126541},{"hugoGeneSymbol":"OR10H5","entrezGeneId":284433},{"hugoGeneSymbol":"OR10J1","entrezGeneId":26476},{"hugoGeneSymbol":"OR10J2P","entrezGeneId":391117},{"hugoGeneSymbol":"OR10J3","entrezGeneId":441911},{"hugoGeneSymbol":"OR10J4","entrezGeneId":391121},{"hugoGeneSymbol":"OR10J5","entrezGeneId":127385},{"hugoGeneSymbol":"OR10J6P","entrezGeneId":401973},{"hugoGeneSymbol":"OR10J7P","entrezGeneId":391119},{"hugoGeneSymbol":"OR10J8P","entrezGeneId":343409},{"hugoGeneSymbol":"OR10J9P","entrezGeneId":391120},{"hugoGeneSymbol":"OR10K1","entrezGeneId":391109},{"hugoGeneSymbol":"OR10K2","entrezGeneId":391107},{"hugoGeneSymbol":"OR10N1P","entrezGeneId":390267},{"hugoGeneSymbol":"OR10P1","entrezGeneId":121130},{"hugoGeneSymbol":"OR10Q1","entrezGeneId":219960},{"hugoGeneSymbol":"OR10Q2P","entrezGeneId":81345},{"hugoGeneSymbol":"OR10R1P","entrezGeneId":79513},{"hugoGeneSymbol":"OR10R2","entrezGeneId":343406},{"hugoGeneSymbol":"OR10R3P","entrezGeneId":391110},{"hugoGeneSymbol":"OR10S1","entrezGeneId":219873},{"hugoGeneSymbol":"OR10T1P","entrezGeneId":79514},{"hugoGeneSymbol":"OR10T2","entrezGeneId":128360},{"hugoGeneSymbol":"OR10U1P","entrezGeneId":390318},{"hugoGeneSymbol":"OR10V1","entrezGeneId":390201},{"hugoGeneSymbol":"OR10V2P","entrezGeneId":81343},{"hugoGeneSymbol":"OR10V3P","entrezGeneId":81342},{"hugoGeneSymbol":"OR10V7P","entrezGeneId":403225},{"hugoGeneSymbol":"OR10W1","entrezGeneId":81341},{"hugoGeneSymbol":"OR10X1","entrezGeneId":128367},{"hugoGeneSymbol":"OR10Y1P","entrezGeneId":81340},{"hugoGeneSymbol":"OR10Z1","entrezGeneId":128368},{"hugoGeneSymbol":"OR11A1","entrezGeneId":26531},{"hugoGeneSymbol":"OR11G1P","entrezGeneId":390438},{"hugoGeneSymbol":"OR11G2","entrezGeneId":390439},{"hugoGeneSymbol":"OR11H1","entrezGeneId":81061},{"hugoGeneSymbol":"OR11H12","entrezGeneId":440153},{"hugoGeneSymbol":"OR11H13P","entrezGeneId":440159},{"hugoGeneSymbol":"OR11H2","entrezGeneId":79334},{"hugoGeneSymbol":"OR11H3P","entrezGeneId":81113},{"hugoGeneSymbol":"OR11H4","entrezGeneId":390442},{"hugoGeneSymbol":"OR11H5P","entrezGeneId":390440},{"hugoGeneSymbol":"OR11H6","entrezGeneId":122748},{"hugoGeneSymbol":"OR11H7","entrezGeneId":390441},{"hugoGeneSymbol":"OR11I1P","entrezGeneId":81479},{"hugoGeneSymbol":"OR11J1P","entrezGeneId":81111},{"hugoGeneSymbol":"OR11J2P","entrezGeneId":81110},{"hugoGeneSymbol":"OR11J5P","entrezGeneId":403226},{"hugoGeneSymbol":"OR11J6P","entrezGeneId":100288148},{"hugoGeneSymbol":"OR11J7P","entrezGeneId":100288112},{"hugoGeneSymbol":"OR11K1P","entrezGeneId":81109},{"hugoGeneSymbol":"OR11K2P","entrezGeneId":401742},{"hugoGeneSymbol":"OR11L1","entrezGeneId":391189},{"hugoGeneSymbol":"OR11M1P","entrezGeneId":121270},{"hugoGeneSymbol":"OR11N1P","entrezGeneId":392540},{"hugoGeneSymbol":"OR11P1P","entrezGeneId":282795},{"hugoGeneSymbol":"OR11Q1P","entrezGeneId":403227},{"hugoGeneSymbol":"OR12D1","entrezGeneId":26530},{"hugoGeneSymbol":"OR12D2","entrezGeneId":26529},{"hugoGeneSymbol":"OR12D3","entrezGeneId":81797},{"hugoGeneSymbol":"OR13A1","entrezGeneId":79290},{"hugoGeneSymbol":"OR13C1P","entrezGeneId":392377},{"hugoGeneSymbol":"OR13C2","entrezGeneId":392376},{"hugoGeneSymbol":"OR13C3","entrezGeneId":138803},{"hugoGeneSymbol":"OR13C4","entrezGeneId":138804},{"hugoGeneSymbol":"OR13C5","entrezGeneId":138799},{"hugoGeneSymbol":"OR13C6P","entrezGeneId":392311},{"hugoGeneSymbol":"OR13C7","entrezGeneId":81377},{"hugoGeneSymbol":"OR13C8","entrezGeneId":138802},{"hugoGeneSymbol":"OR13C9","entrezGeneId":286362},{"hugoGeneSymbol":"OR13D1","entrezGeneId":286365},{"hugoGeneSymbol":"OR13D2P","entrezGeneId":392375},{"hugoGeneSymbol":"OR13D3P","entrezGeneId":402374},{"hugoGeneSymbol":"OR13E1P","entrezGeneId":392308},{"hugoGeneSymbol":"OR13F1","entrezGeneId":138805},{"hugoGeneSymbol":"OR13G1","entrezGeneId":441933},{"hugoGeneSymbol":"OR13H1","entrezGeneId":347468},{"hugoGeneSymbol":"OR13I1P","entrezGeneId":79538},{"hugoGeneSymbol":"OR13J1","entrezGeneId":392309},{"hugoGeneSymbol":"OR13K1P","entrezGeneId":402424},{"hugoGeneSymbol":"OR13Z1P","entrezGeneId":403228},{"hugoGeneSymbol":"OR13Z2P","entrezGeneId":403229},{"hugoGeneSymbol":"OR13Z3P","entrezGeneId":403230},{"hugoGeneSymbol":"OR14A16","entrezGeneId":284532},{"hugoGeneSymbol":"OR14A2","entrezGeneId":388761},{"hugoGeneSymbol":"OR14C36","entrezGeneId":127066},{"hugoGeneSymbol":"OR14I1","entrezGeneId":401994},{"hugoGeneSymbol":"OR14J1","entrezGeneId":442191},{"hugoGeneSymbol":"OR14K1","entrezGeneId":343170},{"hugoGeneSymbol":"OR14L1P","entrezGeneId":127617},{"hugoGeneSymbol":"OR1A1","entrezGeneId":8383},{"hugoGeneSymbol":"OR1A2","entrezGeneId":26189},{"hugoGeneSymbol":"OR1AA1P","entrezGeneId":79312},{"hugoGeneSymbol":"OR1AB1P","entrezGeneId":81090},{"hugoGeneSymbol":"OR1AC1P","entrezGeneId":403231},{"hugoGeneSymbol":"OR1B1","entrezGeneId":347169},{"hugoGeneSymbol":"OR1C1","entrezGeneId":26188},{"hugoGeneSymbol":"OR1D2","entrezGeneId":4991},{"hugoGeneSymbol":"OR1D3P","entrezGeneId":8384},{"hugoGeneSymbol":"OR1D4","entrezGeneId":653166},{"hugoGeneSymbol":"OR1D5","entrezGeneId":8386},{"hugoGeneSymbol":"OR1E1","entrezGeneId":8387},{"hugoGeneSymbol":"OR1E2","entrezGeneId":8388},{"hugoGeneSymbol":"OR1E3","entrezGeneId":8389},{"hugoGeneSymbol":"OR1F1","entrezGeneId":4992},{"hugoGeneSymbol":"OR1F12","entrezGeneId":442179},{"hugoGeneSymbol":"OR1F2P","entrezGeneId":26184},{"hugoGeneSymbol":"OR1G1","entrezGeneId":8390},{"hugoGeneSymbol":"OR1H1P","entrezGeneId":26742},{"hugoGeneSymbol":"OR1I1","entrezGeneId":126370},{"hugoGeneSymbol":"OR1J1","entrezGeneId":347168},{"hugoGeneSymbol":"OR1J2","entrezGeneId":26740},{"hugoGeneSymbol":"OR1J4","entrezGeneId":26219},{"hugoGeneSymbol":"OR1K1","entrezGeneId":392392},{"hugoGeneSymbol":"OR1L1","entrezGeneId":26737},{"hugoGeneSymbol":"OR1L3","entrezGeneId":26735},{"hugoGeneSymbol":"OR1L4","entrezGeneId":254973},{"hugoGeneSymbol":"OR1L6","entrezGeneId":392390},{"hugoGeneSymbol":"OR1L8","entrezGeneId":138881},{"hugoGeneSymbol":"OR1M1","entrezGeneId":125963},{"hugoGeneSymbol":"OR1M4P","entrezGeneId":403232},{"hugoGeneSymbol":"OR1N1","entrezGeneId":138883},{"hugoGeneSymbol":"OR1N2","entrezGeneId":138882},{"hugoGeneSymbol":"OR1P1","entrezGeneId":8391},{"hugoGeneSymbol":"OR1Q1","entrezGeneId":158131},{"hugoGeneSymbol":"OR1R1P","entrezGeneId":9596},{"hugoGeneSymbol":"OR1S1","entrezGeneId":219959},{"hugoGeneSymbol":"OR1S2","entrezGeneId":219958},{"hugoGeneSymbol":"OR1X1P","entrezGeneId":402236},{"hugoGeneSymbol":"OR1X5P","entrezGeneId":402240},{"hugoGeneSymbol":"OR2A1","entrezGeneId":346528},{"hugoGeneSymbol":"OR2A1-AS1","entrezGeneId":101928492},{"hugoGeneSymbol":"OR2A12","entrezGeneId":346525},{"hugoGeneSymbol":"OR2A13P","entrezGeneId":392140},{"hugoGeneSymbol":"OR2A14","entrezGeneId":135941},{"hugoGeneSymbol":"OR2A15P","entrezGeneId":135942},{"hugoGeneSymbol":"OR2A2","entrezGeneId":442361},{"hugoGeneSymbol":"OR2A20P","entrezGeneId":401428},{"hugoGeneSymbol":"OR2A25","entrezGeneId":392138},{"hugoGeneSymbol":"OR2A3P","entrezGeneId":202861},{"hugoGeneSymbol":"OR2A4","entrezGeneId":79541},{"hugoGeneSymbol":"OR2A41P","entrezGeneId":403234},{"hugoGeneSymbol":"OR2A42","entrezGeneId":402317},{"hugoGeneSymbol":"OR2A5","entrezGeneId":393046},{"hugoGeneSymbol":"OR2A7","entrezGeneId":401427},{"hugoGeneSymbol":"OR2A9P","entrezGeneId":441295},{"hugoGeneSymbol":"OR2AD1P","entrezGeneId":79313},{"hugoGeneSymbol":"OR2AE1","entrezGeneId":81392},{"hugoGeneSymbol":"OR2AF1P","entrezGeneId":79331},{"hugoGeneSymbol":"OR2AG1","entrezGeneId":144125},{"hugoGeneSymbol":"OR2AG2","entrezGeneId":338755},{"hugoGeneSymbol":"OR2AH1P","entrezGeneId":81336},{"hugoGeneSymbol":"OR2AI1P","entrezGeneId":134082},{"hugoGeneSymbol":"OR2AJ1","entrezGeneId":127608},{"hugoGeneSymbol":"OR2AK2","entrezGeneId":391191},{"hugoGeneSymbol":"OR2AL1P","entrezGeneId":79547},{"hugoGeneSymbol":"OR2AM1P","entrezGeneId":81366},{"hugoGeneSymbol":"OR2AO1P","entrezGeneId":403235},{"hugoGeneSymbol":"OR2AP1","entrezGeneId":121129},{"hugoGeneSymbol":"OR2AQ1P","entrezGeneId":81474},{"hugoGeneSymbol":"OR2AS1P","entrezGeneId":81473},{"hugoGeneSymbol":"OR2AS2P","entrezGeneId":403236},{"hugoGeneSymbol":"OR2AT1P","entrezGeneId":390225},{"hugoGeneSymbol":"OR2AT2P","entrezGeneId":390224},{"hugoGeneSymbol":"OR2AT4","entrezGeneId":341152},{"hugoGeneSymbol":"OR2B11","entrezGeneId":127623},{"hugoGeneSymbol":"OR2B2","entrezGeneId":81697},{"hugoGeneSymbol":"OR2B3","entrezGeneId":442184},{"hugoGeneSymbol":"OR2B4P","entrezGeneId":442190},{"hugoGeneSymbol":"OR2B6","entrezGeneId":26212},{"hugoGeneSymbol":"OR2B7P","entrezGeneId":81695},{"hugoGeneSymbol":"OR2B8P","entrezGeneId":65944},{"hugoGeneSymbol":"OR2BH1P","entrezGeneId":403238},{"hugoGeneSymbol":"OR2C1","entrezGeneId":4993},{"hugoGeneSymbol":"OR2C3","entrezGeneId":81472},{"hugoGeneSymbol":"OR2D2","entrezGeneId":120776},{"hugoGeneSymbol":"OR2D3","entrezGeneId":120775},{"hugoGeneSymbol":"OR2E1P","entrezGeneId":26719},{"hugoGeneSymbol":"OR2F1","entrezGeneId":26211},{"hugoGeneSymbol":"OR2F2","entrezGeneId":135948},{"hugoGeneSymbol":"OR2G1P","entrezGeneId":26717},{"hugoGeneSymbol":"OR2G2","entrezGeneId":81470},{"hugoGeneSymbol":"OR2G3","entrezGeneId":81469},{"hugoGeneSymbol":"OR2G6","entrezGeneId":391211},{"hugoGeneSymbol":"OR2H1","entrezGeneId":26716},{"hugoGeneSymbol":"OR2H2","entrezGeneId":7932},{"hugoGeneSymbol":"OR2H4P","entrezGeneId":442189},{"hugoGeneSymbol":"OR2H5P","entrezGeneId":26713},{"hugoGeneSymbol":"OR2I1P","entrezGeneId":442197},{"hugoGeneSymbol":"OR2J1","entrezGeneId":442185},{"hugoGeneSymbol":"OR2J2","entrezGeneId":26707},{"hugoGeneSymbol":"OR2J3","entrezGeneId":442186},{"hugoGeneSymbol":"OR2J4P","entrezGeneId":442188},{"hugoGeneSymbol":"OR2K2","entrezGeneId":26248},{"hugoGeneSymbol":"OR2L13","entrezGeneId":284521},{"hugoGeneSymbol":"OR2L1P","entrezGeneId":26247},{"hugoGeneSymbol":"OR2L2","entrezGeneId":26246},{"hugoGeneSymbol":"OR2L3","entrezGeneId":391192},{"hugoGeneSymbol":"OR2L5","entrezGeneId":81466},{"hugoGeneSymbol":"OR2L6P","entrezGeneId":81465},{"hugoGeneSymbol":"OR2L8","entrezGeneId":391190},{"hugoGeneSymbol":"OR2L9P","entrezGeneId":81462},{"hugoGeneSymbol":"OR2M1P","entrezGeneId":388762},{"hugoGeneSymbol":"OR2M2","entrezGeneId":391194},{"hugoGeneSymbol":"OR2M3","entrezGeneId":127062},{"hugoGeneSymbol":"OR2M4","entrezGeneId":26245},{"hugoGeneSymbol":"OR2M5","entrezGeneId":127059},{"hugoGeneSymbol":"OR2M7","entrezGeneId":391196},{"hugoGeneSymbol":"OR2N1P","entrezGeneId":26701},{"hugoGeneSymbol":"OR2P1P","entrezGeneId":442183},{"hugoGeneSymbol":"OR2Q1P","entrezGeneId":346524},{"hugoGeneSymbol":"OR2R1P","entrezGeneId":392132},{"hugoGeneSymbol":"OR2S1P","entrezGeneId":392313},{"hugoGeneSymbol":"OR2S2","entrezGeneId":56656},{"hugoGeneSymbol":"OR2T1","entrezGeneId":26696},{"hugoGeneSymbol":"OR2T10","entrezGeneId":127069},{"hugoGeneSymbol":"OR2T11","entrezGeneId":127077},{"hugoGeneSymbol":"OR2T12","entrezGeneId":127064},{"hugoGeneSymbol":"OR2T2","entrezGeneId":401992},{"hugoGeneSymbol":"OR2T27","entrezGeneId":403239},{"hugoGeneSymbol":"OR2T29","entrezGeneId":343563},{"hugoGeneSymbol":"OR2T3","entrezGeneId":343173},{"hugoGeneSymbol":"OR2T32P","entrezGeneId":403241},{"hugoGeneSymbol":"OR2T33","entrezGeneId":391195},{"hugoGeneSymbol":"OR2T34","entrezGeneId":127068},{"hugoGeneSymbol":"OR2T35","entrezGeneId":403244},{"hugoGeneSymbol":"OR2T4","entrezGeneId":127074},{"hugoGeneSymbol":"OR2T5","entrezGeneId":401993},{"hugoGeneSymbol":"OR2T6","entrezGeneId":254879},{"hugoGeneSymbol":"OR2T7","entrezGeneId":81458},{"hugoGeneSymbol":"OR2T8","entrezGeneId":343172},{"hugoGeneSymbol":"OR2U1P","entrezGeneId":26695},{"hugoGeneSymbol":"OR2U2P","entrezGeneId":26694},{"hugoGeneSymbol":"OR2V1","entrezGeneId":26693},{"hugoGeneSymbol":"OR2V2","entrezGeneId":285659},{"hugoGeneSymbol":"OR2W1","entrezGeneId":26692},{"hugoGeneSymbol":"OR2W2P","entrezGeneId":81694},{"hugoGeneSymbol":"OR2W3","entrezGeneId":343171},{"hugoGeneSymbol":"OR2W4P","entrezGeneId":81407},{"hugoGeneSymbol":"OR2W5","entrezGeneId":441932},{"hugoGeneSymbol":"OR2W6P","entrezGeneId":81406},{"hugoGeneSymbol":"OR2X1P","entrezGeneId":403245},{"hugoGeneSymbol":"OR2Y1","entrezGeneId":134083},{"hugoGeneSymbol":"OR2Z1","entrezGeneId":284383},{"hugoGeneSymbol":"OR3A1","entrezGeneId":4994},{"hugoGeneSymbol":"OR3A2","entrezGeneId":4995},{"hugoGeneSymbol":"OR3A3","entrezGeneId":8392},{"hugoGeneSymbol":"OR3A4P","entrezGeneId":390756},{"hugoGeneSymbol":"OR3A5P","entrezGeneId":100856809},{"hugoGeneSymbol":"OR3B1P","entrezGeneId":392561},{"hugoGeneSymbol":"OR3D1P","entrezGeneId":504175},{"hugoGeneSymbol":"OR4A10P","entrezGeneId":390138},{"hugoGeneSymbol":"OR4A11P","entrezGeneId":390136},{"hugoGeneSymbol":"OR4A12P","entrezGeneId":81331},{"hugoGeneSymbol":"OR4A13P","entrezGeneId":81330},{"hugoGeneSymbol":"OR4A14P","entrezGeneId":81329},{"hugoGeneSymbol":"OR4A15","entrezGeneId":81328},{"hugoGeneSymbol":"OR4A16","entrezGeneId":81327},{"hugoGeneSymbol":"OR4A17P","entrezGeneId":390139},{"hugoGeneSymbol":"OR4A18P","entrezGeneId":81325},{"hugoGeneSymbol":"OR4A19P","entrezGeneId":81324},{"hugoGeneSymbol":"OR4A1P","entrezGeneId":8596},{"hugoGeneSymbol":"OR4A21P","entrezGeneId":81322},{"hugoGeneSymbol":"OR4A2P","entrezGeneId":390133},{"hugoGeneSymbol":"OR4A3P","entrezGeneId":81320},{"hugoGeneSymbol":"OR4A40P","entrezGeneId":390116},{"hugoGeneSymbol":"OR4A41P","entrezGeneId":403247},{"hugoGeneSymbol":"OR4A42P","entrezGeneId":403248},{"hugoGeneSymbol":"OR4A43P","entrezGeneId":390117},{"hugoGeneSymbol":"OR4A44P","entrezGeneId":403250},{"hugoGeneSymbol":"OR4A45P","entrezGeneId":403251},{"hugoGeneSymbol":"OR4A46P","entrezGeneId":403252},{"hugoGeneSymbol":"OR4A47","entrezGeneId":403253},{"hugoGeneSymbol":"OR4A48P","entrezGeneId":403254},{"hugoGeneSymbol":"OR4A49P","entrezGeneId":403255},{"hugoGeneSymbol":"OR4A4P","entrezGeneId":390134},{"hugoGeneSymbol":"OR4A5","entrezGeneId":81318},{"hugoGeneSymbol":"OR4A50P","entrezGeneId":403256},{"hugoGeneSymbol":"OR4A6P","entrezGeneId":390131},{"hugoGeneSymbol":"OR4A7P","entrezGeneId":81316},{"hugoGeneSymbol":"OR4A8","entrezGeneId":81315},{"hugoGeneSymbol":"OR4A9P","entrezGeneId":390137},{"hugoGeneSymbol":"OR4B1","entrezGeneId":119765},{"hugoGeneSymbol":"OR4B2P","entrezGeneId":26690},{"hugoGeneSymbol":"OR4C10P","entrezGeneId":79526},{"hugoGeneSymbol":"OR4C11","entrezGeneId":219429},{"hugoGeneSymbol":"OR4C12","entrezGeneId":283093},{"hugoGeneSymbol":"OR4C13","entrezGeneId":283092},{"hugoGeneSymbol":"OR4C14P","entrezGeneId":81310},{"hugoGeneSymbol":"OR4C15","entrezGeneId":81309},{"hugoGeneSymbol":"OR4C16","entrezGeneId":219428},{"hugoGeneSymbol":"OR4C1P","entrezGeneId":26242},{"hugoGeneSymbol":"OR4C2P","entrezGeneId":119750},{"hugoGeneSymbol":"OR4C3","entrezGeneId":256144},{"hugoGeneSymbol":"OR4C45","entrezGeneId":403257},{"hugoGeneSymbol":"OR4C46","entrezGeneId":119749},{"hugoGeneSymbol":"OR4C48P","entrezGeneId":403259},{"hugoGeneSymbol":"OR4C49P","entrezGeneId":403260},{"hugoGeneSymbol":"OR4C4P","entrezGeneId":79550},{"hugoGeneSymbol":"OR4C5","entrezGeneId":79346},{"hugoGeneSymbol":"OR4C50P","entrezGeneId":256190},{"hugoGeneSymbol":"OR4C6","entrezGeneId":219432},{"hugoGeneSymbol":"OR4C7P","entrezGeneId":79294},{"hugoGeneSymbol":"OR4C9P","entrezGeneId":79530},{"hugoGeneSymbol":"OR4D1","entrezGeneId":26689},{"hugoGeneSymbol":"OR4D10","entrezGeneId":390197},{"hugoGeneSymbol":"OR4D11","entrezGeneId":219986},{"hugoGeneSymbol":"OR4D12P","entrezGeneId":282754},{"hugoGeneSymbol":"OR4D2","entrezGeneId":124538},{"hugoGeneSymbol":"OR4D5","entrezGeneId":219875},{"hugoGeneSymbol":"OR4D6","entrezGeneId":219983},{"hugoGeneSymbol":"OR4D7P","entrezGeneId":81304},{"hugoGeneSymbol":"OR4D8P","entrezGeneId":401696},{"hugoGeneSymbol":"OR4D9","entrezGeneId":390199},{"hugoGeneSymbol":"OR4E1","entrezGeneId":26687},{"hugoGeneSymbol":"OR4E2","entrezGeneId":26686},{"hugoGeneSymbol":"OR4F13P","entrezGeneId":390651},{"hugoGeneSymbol":"OR4F14P","entrezGeneId":390650},{"hugoGeneSymbol":"OR4F15","entrezGeneId":390649},{"hugoGeneSymbol":"OR4F16","entrezGeneId":81399},{"hugoGeneSymbol":"OR4F17","entrezGeneId":81099},{"hugoGeneSymbol":"OR4F1P","entrezGeneId":26685},{"hugoGeneSymbol":"OR4F21","entrezGeneId":441308},{"hugoGeneSymbol":"OR4F28P","entrezGeneId":390652},{"hugoGeneSymbol":"OR4F29","entrezGeneId":729759},{"hugoGeneSymbol":"OR4F2P","entrezGeneId":390028},{"hugoGeneSymbol":"OR4F3","entrezGeneId":26683},{"hugoGeneSymbol":"OR4F4","entrezGeneId":26682},{"hugoGeneSymbol":"OR4F5","entrezGeneId":79501},{"hugoGeneSymbol":"OR4F6","entrezGeneId":390648},{"hugoGeneSymbol":"OR4F7P","entrezGeneId":81390},{"hugoGeneSymbol":"OR4F8P","entrezGeneId":390872},{"hugoGeneSymbol":"OR4G11P","entrezGeneId":403263},{"hugoGeneSymbol":"OR4G1P","entrezGeneId":26681},{"hugoGeneSymbol":"OR4G2P","entrezGeneId":26680},{"hugoGeneSymbol":"OR4G3P","entrezGeneId":26679},{"hugoGeneSymbol":"OR4G4P","entrezGeneId":79504},{"hugoGeneSymbol":"OR4G6P","entrezGeneId":81438},{"hugoGeneSymbol":"OR4H12P","entrezGeneId":161271},{"hugoGeneSymbol":"OR4H6P","entrezGeneId":26322},{"hugoGeneSymbol":"OR4K1","entrezGeneId":79544},{"hugoGeneSymbol":"OR4K11P","entrezGeneId":81079},{"hugoGeneSymbol":"OR4K12P","entrezGeneId":81078},{"hugoGeneSymbol":"OR4K13","entrezGeneId":390433},{"hugoGeneSymbol":"OR4K14","entrezGeneId":122740},{"hugoGeneSymbol":"OR4K15","entrezGeneId":81127},{"hugoGeneSymbol":"OR4K16P","entrezGeneId":81126},{"hugoGeneSymbol":"OR4K17","entrezGeneId":390436},{"hugoGeneSymbol":"OR4K2","entrezGeneId":390431},{"hugoGeneSymbol":"OR4K3","entrezGeneId":283617},{"hugoGeneSymbol":"OR4K4P","entrezGeneId":79318},{"hugoGeneSymbol":"OR4K5","entrezGeneId":79317},{"hugoGeneSymbol":"OR4K6P","entrezGeneId":79314},{"hugoGeneSymbol":"OR4K7P","entrezGeneId":79306},{"hugoGeneSymbol":"OR4K8P","entrezGeneId":390836},{"hugoGeneSymbol":"OR4L1","entrezGeneId":122742},{"hugoGeneSymbol":"OR4M1","entrezGeneId":441670},{"hugoGeneSymbol":"OR4M2","entrezGeneId":390538},{"hugoGeneSymbol":"OR4N1P","entrezGeneId":79322},{"hugoGeneSymbol":"OR4N2","entrezGeneId":390429},{"hugoGeneSymbol":"OR4N3P","entrezGeneId":390539},{"hugoGeneSymbol":"OR4N4","entrezGeneId":283694},{"hugoGeneSymbol":"OR4N5","entrezGeneId":390437},{"hugoGeneSymbol":"OR4P1P","entrezGeneId":79308},{"hugoGeneSymbol":"OR4P4","entrezGeneId":81300},{"hugoGeneSymbol":"OR4Q1P","entrezGeneId":81104},{"hugoGeneSymbol":"OR4Q2","entrezGeneId":390432},{"hugoGeneSymbol":"OR4Q3","entrezGeneId":441669},{"hugoGeneSymbol":"OR4R1P","entrezGeneId":79528},{"hugoGeneSymbol":"OR4R2P","entrezGeneId":81299},{"hugoGeneSymbol":"OR4R3P","entrezGeneId":81298},{"hugoGeneSymbol":"OR4S1","entrezGeneId":256148},{"hugoGeneSymbol":"OR4S2","entrezGeneId":219431},{"hugoGeneSymbol":"OR4T1P","entrezGeneId":390435},{"hugoGeneSymbol":"OR4U1P","entrezGeneId":390434},{"hugoGeneSymbol":"OR4V1P","entrezGeneId":79534},{"hugoGeneSymbol":"OR4W1P","entrezGeneId":81077},{"hugoGeneSymbol":"OR4X1","entrezGeneId":390113},{"hugoGeneSymbol":"OR4X2","entrezGeneId":119764},{"hugoGeneSymbol":"OR4X7P","entrezGeneId":403264},{"hugoGeneSymbol":"OR51A10P","entrezGeneId":81295},{"hugoGeneSymbol":"OR51A1P","entrezGeneId":26537},{"hugoGeneSymbol":"OR51A2","entrezGeneId":401667},{"hugoGeneSymbol":"OR51A3P","entrezGeneId":79532},{"hugoGeneSymbol":"OR51A4","entrezGeneId":401666},{"hugoGeneSymbol":"OR51A5P","entrezGeneId":79525},{"hugoGeneSymbol":"OR51A6P","entrezGeneId":390046},{"hugoGeneSymbol":"OR51A7","entrezGeneId":119687},{"hugoGeneSymbol":"OR51A8P","entrezGeneId":401662},{"hugoGeneSymbol":"OR51A9P","entrezGeneId":390039},{"hugoGeneSymbol":"OR51AB1P","entrezGeneId":403265},{"hugoGeneSymbol":"OR51B2","entrezGeneId":79345},{"hugoGeneSymbol":"OR51B3P","entrezGeneId":79342},{"hugoGeneSymbol":"OR51B4","entrezGeneId":79339},{"hugoGeneSymbol":"OR51B5","entrezGeneId":282763},{"hugoGeneSymbol":"OR51B6","entrezGeneId":390058},{"hugoGeneSymbol":"OR51B8P","entrezGeneId":403266},{"hugoGeneSymbol":"OR51C1P","entrezGeneId":401661},{"hugoGeneSymbol":"OR51C4P","entrezGeneId":390041},{"hugoGeneSymbol":"OR51D1","entrezGeneId":390038},{"hugoGeneSymbol":"OR51E1","entrezGeneId":143503},{"hugoGeneSymbol":"OR51E2","entrezGeneId":81285},{"hugoGeneSymbol":"OR51F1","entrezGeneId":256892},{"hugoGeneSymbol":"OR51F2","entrezGeneId":119694},{"hugoGeneSymbol":"OR51F3P","entrezGeneId":390043},{"hugoGeneSymbol":"OR51F4P","entrezGeneId":390044},{"hugoGeneSymbol":"OR51F5P","entrezGeneId":390040},{"hugoGeneSymbol":"OR51G1","entrezGeneId":79324},{"hugoGeneSymbol":"OR51G2","entrezGeneId":81282},{"hugoGeneSymbol":"OR51H1","entrezGeneId":401663},{"hugoGeneSymbol":"OR51H2P","entrezGeneId":401664},{"hugoGeneSymbol":"OR51I1","entrezGeneId":390063},{"hugoGeneSymbol":"OR51I2","entrezGeneId":390064},{"hugoGeneSymbol":"OR51J1","entrezGeneId":79470},{"hugoGeneSymbol":"OR51K1P","entrezGeneId":81278},{"hugoGeneSymbol":"OR51L1","entrezGeneId":119682},{"hugoGeneSymbol":"OR51M1","entrezGeneId":390059},{"hugoGeneSymbol":"OR51N1P","entrezGeneId":119696},{"hugoGeneSymbol":"OR51P1P","entrezGeneId":79300},{"hugoGeneSymbol":"OR51Q1","entrezGeneId":390061},{"hugoGeneSymbol":"OR51R1P","entrezGeneId":390034},{"hugoGeneSymbol":"OR51S1","entrezGeneId":119692},{"hugoGeneSymbol":"OR51T1","entrezGeneId":401665},{"hugoGeneSymbol":"OR51V1","entrezGeneId":283111},{"hugoGeneSymbol":"OR52A1","entrezGeneId":23538},{"hugoGeneSymbol":"OR52A4P","entrezGeneId":390053},{"hugoGeneSymbol":"OR52A5","entrezGeneId":390054},{"hugoGeneSymbol":"OR52B1P","entrezGeneId":81274},{"hugoGeneSymbol":"OR52B2","entrezGeneId":255725},{"hugoGeneSymbol":"OR52B3P","entrezGeneId":387747},{"hugoGeneSymbol":"OR52B4","entrezGeneId":143496},{"hugoGeneSymbol":"OR52B5P","entrezGeneId":81270},{"hugoGeneSymbol":"OR52B6","entrezGeneId":340980},{"hugoGeneSymbol":"OR52D1","entrezGeneId":390066},{"hugoGeneSymbol":"OR52E1","entrezGeneId":79296},{"hugoGeneSymbol":"OR52E2","entrezGeneId":119678},{"hugoGeneSymbol":"OR52E3P","entrezGeneId":79533},{"hugoGeneSymbol":"OR52E4","entrezGeneId":390081},{"hugoGeneSymbol":"OR52E5","entrezGeneId":390082},{"hugoGeneSymbol":"OR52E6","entrezGeneId":390078},{"hugoGeneSymbol":"OR52E7P","entrezGeneId":81264},{"hugoGeneSymbol":"OR52E8","entrezGeneId":390079},{"hugoGeneSymbol":"OR52H1","entrezGeneId":390067},{"hugoGeneSymbol":"OR52H2P","entrezGeneId":81261},{"hugoGeneSymbol":"OR52I1","entrezGeneId":390037},{"hugoGeneSymbol":"OR52I2","entrezGeneId":143502},{"hugoGeneSymbol":"OR52J1P","entrezGeneId":79302},{"hugoGeneSymbol":"OR52J2P","entrezGeneId":79529},{"hugoGeneSymbol":"OR52J3","entrezGeneId":119679},{"hugoGeneSymbol":"OR52K1","entrezGeneId":390036},{"hugoGeneSymbol":"OR52K2","entrezGeneId":119774},{"hugoGeneSymbol":"OR52K3P","entrezGeneId":390035},{"hugoGeneSymbol":"OR52L1","entrezGeneId":338751},{"hugoGeneSymbol":"OR52L2P","entrezGeneId":79274},{"hugoGeneSymbol":"OR52M1","entrezGeneId":119772},{"hugoGeneSymbol":"OR52M2P","entrezGeneId":338637},{"hugoGeneSymbol":"OR52N1","entrezGeneId":79473},{"hugoGeneSymbol":"OR52N2","entrezGeneId":390077},{"hugoGeneSymbol":"OR52N3P","entrezGeneId":81251},{"hugoGeneSymbol":"OR52N4","entrezGeneId":390072},{"hugoGeneSymbol":"OR52N5","entrezGeneId":390075},{"hugoGeneSymbol":"OR52P1P","entrezGeneId":81248},{"hugoGeneSymbol":"OR52P2P","entrezGeneId":119775},{"hugoGeneSymbol":"OR52Q1P","entrezGeneId":81246},{"hugoGeneSymbol":"OR52R1","entrezGeneId":119695},{"hugoGeneSymbol":"OR52S1P","entrezGeneId":79521},{"hugoGeneSymbol":"OR52T1P","entrezGeneId":81244},{"hugoGeneSymbol":"OR52U1P","entrezGeneId":81243},{"hugoGeneSymbol":"OR52V1P","entrezGeneId":81242},{"hugoGeneSymbol":"OR52W1","entrezGeneId":120787},{"hugoGeneSymbol":"OR52X1P","entrezGeneId":79272},{"hugoGeneSymbol":"OR52Y1P","entrezGeneId":81240},{"hugoGeneSymbol":"OR52Z1","entrezGeneId":283110},{"hugoGeneSymbol":"OR55B1P","entrezGeneId":390030},{"hugoGeneSymbol":"OR56A1","entrezGeneId":120796},{"hugoGeneSymbol":"OR56A3","entrezGeneId":390083},{"hugoGeneSymbol":"OR56A4","entrezGeneId":120793},{"hugoGeneSymbol":"OR56A5","entrezGeneId":390084},{"hugoGeneSymbol":"OR56A7P","entrezGeneId":81236},{"hugoGeneSymbol":"OR56B1","entrezGeneId":387748},{"hugoGeneSymbol":"OR56B2P","entrezGeneId":390073},{"hugoGeneSymbol":"OR56B3P","entrezGeneId":401675},{"hugoGeneSymbol":"OR56B4","entrezGeneId":196335},{"hugoGeneSymbol":"OR5A1","entrezGeneId":219982},{"hugoGeneSymbol":"OR5A2","entrezGeneId":219981},{"hugoGeneSymbol":"OR5AC1","entrezGeneId":81431},{"hugoGeneSymbol":"OR5AC2","entrezGeneId":81050},{"hugoGeneSymbol":"OR5AC4P","entrezGeneId":403271},{"hugoGeneSymbol":"OR5AH1P","entrezGeneId":79336},{"hugoGeneSymbol":"OR5AK1P","entrezGeneId":81230},{"hugoGeneSymbol":"OR5AK2","entrezGeneId":390181},{"hugoGeneSymbol":"OR5AK3P","entrezGeneId":81228},{"hugoGeneSymbol":"OR5AK4P","entrezGeneId":219525},{"hugoGeneSymbol":"OR5AL1","entrezGeneId":79482},{"hugoGeneSymbol":"OR5AL2P","entrezGeneId":79476},{"hugoGeneSymbol":"OR5AM1P","entrezGeneId":81226},{"hugoGeneSymbol":"OR5AN1","entrezGeneId":390195},{"hugoGeneSymbol":"OR5AN2P","entrezGeneId":81224},{"hugoGeneSymbol":"OR5AO1P","entrezGeneId":403272},{"hugoGeneSymbol":"OR5AP1P","entrezGeneId":81223},{"hugoGeneSymbol":"OR5AP2","entrezGeneId":338675},{"hugoGeneSymbol":"OR5AQ1P","entrezGeneId":81221},{"hugoGeneSymbol":"OR5AR1","entrezGeneId":219493},{"hugoGeneSymbol":"OR5AS1","entrezGeneId":219447},{"hugoGeneSymbol":"OR5AU1","entrezGeneId":390445},{"hugoGeneSymbol":"OR5AW1P","entrezGeneId":81076},{"hugoGeneSymbol":"OR5AZ1P","entrezGeneId":283193},{"hugoGeneSymbol":"OR5B10P","entrezGeneId":390186},{"hugoGeneSymbol":"OR5B12","entrezGeneId":390191},{"hugoGeneSymbol":"OR5B15P","entrezGeneId":81215},{"hugoGeneSymbol":"OR5B17","entrezGeneId":219965},{"hugoGeneSymbol":"OR5B19P","entrezGeneId":81211},{"hugoGeneSymbol":"OR5B1P","entrezGeneId":401692},{"hugoGeneSymbol":"OR5B2","entrezGeneId":390190},{"hugoGeneSymbol":"OR5B21","entrezGeneId":219968},{"hugoGeneSymbol":"OR5B3","entrezGeneId":441608},{"hugoGeneSymbol":"OR5BA1P","entrezGeneId":81210},{"hugoGeneSymbol":"OR5BB1P","entrezGeneId":81209},{"hugoGeneSymbol":"OR5BC1P","entrezGeneId":81208},{"hugoGeneSymbol":"OR5BD1P","entrezGeneId":79483},{"hugoGeneSymbol":"OR5BE1P","entrezGeneId":81207},{"hugoGeneSymbol":"OR5BH1P","entrezGeneId":81075},{"hugoGeneSymbol":"OR5BJ1P","entrezGeneId":81047},{"hugoGeneSymbol":"OR5BK1P","entrezGeneId":401718},{"hugoGeneSymbol":"OR5BL1P","entrezGeneId":81205},{"hugoGeneSymbol":"OR5BM1P","entrezGeneId":79491},{"hugoGeneSymbol":"OR5BN1P","entrezGeneId":81204},{"hugoGeneSymbol":"OR5BN2P","entrezGeneId":504181},{"hugoGeneSymbol":"OR5BP1P","entrezGeneId":81203},{"hugoGeneSymbol":"OR5BQ1P","entrezGeneId":81202},{"hugoGeneSymbol":"OR5BR1P","entrezGeneId":81201},{"hugoGeneSymbol":"OR5BS1P","entrezGeneId":390313},{"hugoGeneSymbol":"OR5BT1P","entrezGeneId":282790},{"hugoGeneSymbol":"OR5C1","entrezGeneId":392391},{"hugoGeneSymbol":"OR5D13","entrezGeneId":390142},{"hugoGeneSymbol":"OR5D14","entrezGeneId":219436},{"hugoGeneSymbol":"OR5D15P","entrezGeneId":81198},{"hugoGeneSymbol":"OR5D16","entrezGeneId":390144},{"hugoGeneSymbol":"OR5D17P","entrezGeneId":81196},{"hugoGeneSymbol":"OR5D18","entrezGeneId":219438},{"hugoGeneSymbol":"OR5D2P","entrezGeneId":8595},{"hugoGeneSymbol":"OR5D3P","entrezGeneId":8594},{"hugoGeneSymbol":"OR5E1P","entrezGeneId":26343},{"hugoGeneSymbol":"OR5F1","entrezGeneId":338674},{"hugoGeneSymbol":"OR5F2P","entrezGeneId":81194},{"hugoGeneSymbol":"OR5G1P","entrezGeneId":8591},{"hugoGeneSymbol":"OR5G3","entrezGeneId":81193},{"hugoGeneSymbol":"OR5G4P","entrezGeneId":81192},{"hugoGeneSymbol":"OR5G5P","entrezGeneId":81191},{"hugoGeneSymbol":"OR5H1","entrezGeneId":26341},{"hugoGeneSymbol":"OR5H14","entrezGeneId":403273},{"hugoGeneSymbol":"OR5H15","entrezGeneId":403274},{"hugoGeneSymbol":"OR5H2","entrezGeneId":79310},{"hugoGeneSymbol":"OR5H3P","entrezGeneId":79309},{"hugoGeneSymbol":"OR5H4P","entrezGeneId":79299},{"hugoGeneSymbol":"OR5H5P","entrezGeneId":79297},{"hugoGeneSymbol":"OR5H6","entrezGeneId":79295},{"hugoGeneSymbol":"OR5H7P","entrezGeneId":79291},{"hugoGeneSymbol":"OR5H8","entrezGeneId":79289},{"hugoGeneSymbol":"OR5I1","entrezGeneId":10798},{"hugoGeneSymbol":"OR5J1P","entrezGeneId":401687},{"hugoGeneSymbol":"OR5J2","entrezGeneId":282775},{"hugoGeneSymbol":"OR5J7P","entrezGeneId":403276},{"hugoGeneSymbol":"OR5K1","entrezGeneId":26339},{"hugoGeneSymbol":"OR5K2","entrezGeneId":402135},{"hugoGeneSymbol":"OR5K3","entrezGeneId":403277},{"hugoGeneSymbol":"OR5K4","entrezGeneId":403278},{"hugoGeneSymbol":"OR5L1","entrezGeneId":219437},{"hugoGeneSymbol":"OR5L2","entrezGeneId":26338},{"hugoGeneSymbol":"OR5M1","entrezGeneId":390168},{"hugoGeneSymbol":"OR5M10","entrezGeneId":390167},{"hugoGeneSymbol":"OR5M11","entrezGeneId":219487},{"hugoGeneSymbol":"OR5M12P","entrezGeneId":81188},{"hugoGeneSymbol":"OR5M13P","entrezGeneId":81187},{"hugoGeneSymbol":"OR5M14P","entrezGeneId":81421},{"hugoGeneSymbol":"OR5M2P","entrezGeneId":79523},{"hugoGeneSymbol":"OR5M3","entrezGeneId":219482},{"hugoGeneSymbol":"OR5M4P","entrezGeneId":79518},{"hugoGeneSymbol":"OR5M5P","entrezGeneId":390166},{"hugoGeneSymbol":"OR5M6P","entrezGeneId":79512},{"hugoGeneSymbol":"OR5M7P","entrezGeneId":79508},{"hugoGeneSymbol":"OR5M8","entrezGeneId":219484},{"hugoGeneSymbol":"OR5M9","entrezGeneId":390162},{"hugoGeneSymbol":"OR5P1P","entrezGeneId":79283},{"hugoGeneSymbol":"OR5P2","entrezGeneId":120065},{"hugoGeneSymbol":"OR5P3","entrezGeneId":120066},{"hugoGeneSymbol":"OR5P4P","entrezGeneId":81185},{"hugoGeneSymbol":"OR5R1","entrezGeneId":219479},{"hugoGeneSymbol":"OR5S1P","entrezGeneId":391496},{"hugoGeneSymbol":"OR5T1","entrezGeneId":390155},{"hugoGeneSymbol":"OR5T2","entrezGeneId":219464},{"hugoGeneSymbol":"OR5T3","entrezGeneId":390154},{"hugoGeneSymbol":"OR5V1","entrezGeneId":81696},{"hugoGeneSymbol":"OR5W1P","entrezGeneId":81182},{"hugoGeneSymbol":"OR5W2","entrezGeneId":390148},{"hugoGeneSymbol":"OR6A2","entrezGeneId":8590},{"hugoGeneSymbol":"OR6B1","entrezGeneId":135946},{"hugoGeneSymbol":"OR6B2","entrezGeneId":389090},{"hugoGeneSymbol":"OR6B3","entrezGeneId":150681},{"hugoGeneSymbol":"OR6C1","entrezGeneId":390321},{"hugoGeneSymbol":"OR6C2","entrezGeneId":341416},{"hugoGeneSymbol":"OR6C3","entrezGeneId":254786},{"hugoGeneSymbol":"OR6C4","entrezGeneId":341418},{"hugoGeneSymbol":"OR6C5P","entrezGeneId":390320},{"hugoGeneSymbol":"OR6C6","entrezGeneId":283365},{"hugoGeneSymbol":"OR6C64P","entrezGeneId":403281},{"hugoGeneSymbol":"OR6C65","entrezGeneId":403282},{"hugoGeneSymbol":"OR6C66P","entrezGeneId":403283},{"hugoGeneSymbol":"OR6C68","entrezGeneId":403284},{"hugoGeneSymbol":"OR6C69P","entrezGeneId":403285},{"hugoGeneSymbol":"OR6C70","entrezGeneId":390327},{"hugoGeneSymbol":"OR6C71P","entrezGeneId":390324},{"hugoGeneSymbol":"OR6C72P","entrezGeneId":403288},{"hugoGeneSymbol":"OR6C73P","entrezGeneId":403289},{"hugoGeneSymbol":"OR6C74","entrezGeneId":254783},{"hugoGeneSymbol":"OR6C75","entrezGeneId":390323},{"hugoGeneSymbol":"OR6C76","entrezGeneId":390326},{"hugoGeneSymbol":"OR6C7P","entrezGeneId":390322},{"hugoGeneSymbol":"OR6D1P","entrezGeneId":220974},{"hugoGeneSymbol":"OR6E1P","entrezGeneId":79323},{"hugoGeneSymbol":"OR6F1","entrezGeneId":343169},{"hugoGeneSymbol":"OR6J1","entrezGeneId":79549},{"hugoGeneSymbol":"OR6K1P","entrezGeneId":81449},{"hugoGeneSymbol":"OR6K2","entrezGeneId":81448},{"hugoGeneSymbol":"OR6K3","entrezGeneId":391114},{"hugoGeneSymbol":"OR6K4P","entrezGeneId":128370},{"hugoGeneSymbol":"OR6K5P","entrezGeneId":391115},{"hugoGeneSymbol":"OR6K6","entrezGeneId":128371},{"hugoGeneSymbol":"OR6L1P","entrezGeneId":390012},{"hugoGeneSymbol":"OR6L2P","entrezGeneId":81356},{"hugoGeneSymbol":"OR6M1","entrezGeneId":390261},{"hugoGeneSymbol":"OR6M2P","entrezGeneId":79546},{"hugoGeneSymbol":"OR6M3P","entrezGeneId":79321},{"hugoGeneSymbol":"OR6N1","entrezGeneId":128372},{"hugoGeneSymbol":"OR6N2","entrezGeneId":81442},{"hugoGeneSymbol":"OR6P1","entrezGeneId":128366},{"hugoGeneSymbol":"OR6Q1","entrezGeneId":219952},{"hugoGeneSymbol":"OR6R1P","entrezGeneId":81440},{"hugoGeneSymbol":"OR6R2P","entrezGeneId":403294},{"hugoGeneSymbol":"OR6S1","entrezGeneId":341799},{"hugoGeneSymbol":"OR6T1","entrezGeneId":219874},{"hugoGeneSymbol":"OR6U2P","entrezGeneId":390329},{"hugoGeneSymbol":"OR6V1","entrezGeneId":346517},{"hugoGeneSymbol":"OR6W1P","entrezGeneId":89883},{"hugoGeneSymbol":"OR6X1","entrezGeneId":390260},{"hugoGeneSymbol":"OR6Y1","entrezGeneId":391112},{"hugoGeneSymbol":"OR7A10","entrezGeneId":390892},{"hugoGeneSymbol":"OR7A11P","entrezGeneId":26669},{"hugoGeneSymbol":"OR7A15P","entrezGeneId":26335},{"hugoGeneSymbol":"OR7A17","entrezGeneId":26333},{"hugoGeneSymbol":"OR7A18P","entrezGeneId":81081},{"hugoGeneSymbol":"OR7A19P","entrezGeneId":387853},{"hugoGeneSymbol":"OR7A1P","entrezGeneId":390895},{"hugoGeneSymbol":"OR7A2P","entrezGeneId":390894},{"hugoGeneSymbol":"OR7A3P","entrezGeneId":26668},{"hugoGeneSymbol":"OR7A5","entrezGeneId":26659},{"hugoGeneSymbol":"OR7A8P","entrezGeneId":26661},{"hugoGeneSymbol":"OR7C1","entrezGeneId":26664},{"hugoGeneSymbol":"OR7C2","entrezGeneId":26658},{"hugoGeneSymbol":"OR7D11P","entrezGeneId":403295},{"hugoGeneSymbol":"OR7D1P","entrezGeneId":26656},{"hugoGeneSymbol":"OR7D2","entrezGeneId":162998},{"hugoGeneSymbol":"OR7D4","entrezGeneId":125958},{"hugoGeneSymbol":"OR7E100P","entrezGeneId":81430},{"hugoGeneSymbol":"OR7E101P","entrezGeneId":81138},{"hugoGeneSymbol":"OR7E102P","entrezGeneId":400984},{"hugoGeneSymbol":"OR7E104P","entrezGeneId":81137},{"hugoGeneSymbol":"OR7E105P","entrezGeneId":81116},{"hugoGeneSymbol":"OR7E106P","entrezGeneId":81115},{"hugoGeneSymbol":"OR7E108P","entrezGeneId":81363},{"hugoGeneSymbol":"OR7E109P","entrezGeneId":401540},{"hugoGeneSymbol":"OR7E10P","entrezGeneId":10823},{"hugoGeneSymbol":"OR7E110P","entrezGeneId":81354},{"hugoGeneSymbol":"OR7E111P","entrezGeneId":81136},{"hugoGeneSymbol":"OR7E115P","entrezGeneId":81353},{"hugoGeneSymbol":"OR7E116P","entrezGeneId":81358},{"hugoGeneSymbol":"OR7E117P","entrezGeneId":399857},{"hugoGeneSymbol":"OR7E11P","entrezGeneId":10822},{"hugoGeneSymbol":"OR7E121P","entrezGeneId":402133},{"hugoGeneSymbol":"OR7E122P","entrezGeneId":81428},{"hugoGeneSymbol":"OR7E125P","entrezGeneId":389616},{"hugoGeneSymbol":"OR7E126P","entrezGeneId":81176},{"hugoGeneSymbol":"OR7E128P","entrezGeneId":81175},{"hugoGeneSymbol":"OR7E129P","entrezGeneId":391576},{"hugoGeneSymbol":"OR7E12P","entrezGeneId":10821},{"hugoGeneSymbol":"OR7E130P","entrezGeneId":389144},{"hugoGeneSymbol":"OR7E136P","entrezGeneId":155340},{"hugoGeneSymbol":"OR7E13P","entrezGeneId":10820},{"hugoGeneSymbol":"OR7E140P","entrezGeneId":344729},{"hugoGeneSymbol":"OR7E145P","entrezGeneId":390215},{"hugoGeneSymbol":"OR7E148P","entrezGeneId":282801},{"hugoGeneSymbol":"OR7E149P","entrezGeneId":282756},{"hugoGeneSymbol":"OR7E14P","entrezGeneId":10819},{"hugoGeneSymbol":"OR7E154P","entrezGeneId":403296},{"hugoGeneSymbol":"OR7E155P","entrezGeneId":403297},{"hugoGeneSymbol":"OR7E156P","entrezGeneId":283491},{"hugoGeneSymbol":"OR7E157P","entrezGeneId":403219},{"hugoGeneSymbol":"OR7E158P","entrezGeneId":392194},{"hugoGeneSymbol":"OR7E159P","entrezGeneId":403299},{"hugoGeneSymbol":"OR7E15P","entrezGeneId":8588},{"hugoGeneSymbol":"OR7E160P","entrezGeneId":402333},{"hugoGeneSymbol":"OR7E161P","entrezGeneId":389626},{"hugoGeneSymbol":"OR7E162P","entrezGeneId":442101},{"hugoGeneSymbol":"OR7E163P","entrezGeneId":100131415},{"hugoGeneSymbol":"OR7E16P","entrezGeneId":26473},{"hugoGeneSymbol":"OR7E18P","entrezGeneId":390885},{"hugoGeneSymbol":"OR7E19P","entrezGeneId":26651},{"hugoGeneSymbol":"OR7E1P","entrezGeneId":341128},{"hugoGeneSymbol":"OR7E21P","entrezGeneId":9432},{"hugoGeneSymbol":"OR7E22P","entrezGeneId":9431},{"hugoGeneSymbol":"OR7E23P","entrezGeneId":391279},{"hugoGeneSymbol":"OR7E24","entrezGeneId":26648},{"hugoGeneSymbol":"OR7E25P","entrezGeneId":26647},{"hugoGeneSymbol":"OR7E26P","entrezGeneId":401637},{"hugoGeneSymbol":"OR7E28P","entrezGeneId":26645},{"hugoGeneSymbol":"OR7E29P","entrezGeneId":26644},{"hugoGeneSymbol":"OR7E2P","entrezGeneId":8587},{"hugoGeneSymbol":"OR7E31P","entrezGeneId":375601},{"hugoGeneSymbol":"OR7E33P","entrezGeneId":26640},{"hugoGeneSymbol":"OR7E35P","entrezGeneId":391632},{"hugoGeneSymbol":"OR7E36P","entrezGeneId":26637},{"hugoGeneSymbol":"OR7E37P","entrezGeneId":100506759},{"hugoGeneSymbol":"OR7E38P","entrezGeneId":389537},{"hugoGeneSymbol":"OR7E39P","entrezGeneId":253933},{"hugoGeneSymbol":"OR7E41P","entrezGeneId":8583},{"hugoGeneSymbol":"OR7E43P","entrezGeneId":26475},{"hugoGeneSymbol":"OR7E46P","entrezGeneId":402077},{"hugoGeneSymbol":"OR7E47P","entrezGeneId":26628},{"hugoGeneSymbol":"OR7E4P","entrezGeneId":8585},{"hugoGeneSymbol":"OR7E53P","entrezGeneId":26478},{"hugoGeneSymbol":"OR7E55P","entrezGeneId":391548},{"hugoGeneSymbol":"OR7E59P","entrezGeneId":402249},{"hugoGeneSymbol":"OR7E5P","entrezGeneId":219445},{"hugoGeneSymbol":"OR7E62P","entrezGeneId":26479},{"hugoGeneSymbol":"OR7E66P","entrezGeneId":26614},{"hugoGeneSymbol":"OR7E7P","entrezGeneId":392752},{"hugoGeneSymbol":"OR7E83P","entrezGeneId":391630},{"hugoGeneSymbol":"OR7E84P","entrezGeneId":390288},{"hugoGeneSymbol":"OR7E85P","entrezGeneId":442105},{"hugoGeneSymbol":"OR7E86P","entrezGeneId":442104},{"hugoGeneSymbol":"OR7E87P","entrezGeneId":8586},{"hugoGeneSymbol":"OR7E89P","entrezGeneId":79540},{"hugoGeneSymbol":"OR7E8P","entrezGeneId":346708},{"hugoGeneSymbol":"OR7E90P","entrezGeneId":79537},{"hugoGeneSymbol":"OR7E91P","entrezGeneId":79315},{"hugoGeneSymbol":"OR7E93P","entrezGeneId":79282},{"hugoGeneSymbol":"OR7E94P","entrezGeneId":79273},{"hugoGeneSymbol":"OR7E96P","entrezGeneId":401450},{"hugoGeneSymbol":"OR7E97P","entrezGeneId":79492},{"hugoGeneSymbol":"OR7E99P","entrezGeneId":81419},{"hugoGeneSymbol":"OR7G1","entrezGeneId":125962},{"hugoGeneSymbol":"OR7G15P","entrezGeneId":403300},{"hugoGeneSymbol":"OR7G2","entrezGeneId":390882},{"hugoGeneSymbol":"OR7G3","entrezGeneId":390883},{"hugoGeneSymbol":"OR7H1P","entrezGeneId":390886},{"hugoGeneSymbol":"OR7H2P","entrezGeneId":403301},{"hugoGeneSymbol":"OR7K1P","entrezGeneId":81114},{"hugoGeneSymbol":"OR7L1P","entrezGeneId":79499},{"hugoGeneSymbol":"OR7M1P","entrezGeneId":81352},{"hugoGeneSymbol":"OR8A1","entrezGeneId":390275},{"hugoGeneSymbol":"OR8A2P","entrezGeneId":390273},{"hugoGeneSymbol":"OR8A3P","entrezGeneId":403302},{"hugoGeneSymbol":"OR8B10P","entrezGeneId":390274},{"hugoGeneSymbol":"OR8B12","entrezGeneId":219858},{"hugoGeneSymbol":"OR8B1P","entrezGeneId":8582},{"hugoGeneSymbol":"OR8B2","entrezGeneId":26595},{"hugoGeneSymbol":"OR8B3","entrezGeneId":390271},{"hugoGeneSymbol":"OR8B4","entrezGeneId":283162},{"hugoGeneSymbol":"OR8B5P","entrezGeneId":26592},{"hugoGeneSymbol":"OR8B6P","entrezGeneId":26591},{"hugoGeneSymbol":"OR8B7P","entrezGeneId":26590},{"hugoGeneSymbol":"OR8B8","entrezGeneId":26493},{"hugoGeneSymbol":"OR8B9P","entrezGeneId":79316},{"hugoGeneSymbol":"OR8C1P","entrezGeneId":8580},{"hugoGeneSymbol":"OR8D1","entrezGeneId":283159},{"hugoGeneSymbol":"OR8D2","entrezGeneId":283160},{"hugoGeneSymbol":"OR8D4","entrezGeneId":338662},{"hugoGeneSymbol":"OR8F1P","entrezGeneId":390269},{"hugoGeneSymbol":"OR8G1","entrezGeneId":26494},{"hugoGeneSymbol":"OR8G2P","entrezGeneId":26492},{"hugoGeneSymbol":"OR8G3P","entrezGeneId":387815},{"hugoGeneSymbol":"OR8G5","entrezGeneId":219865},{"hugoGeneSymbol":"OR8G7P","entrezGeneId":282786},{"hugoGeneSymbol":"OR8H1","entrezGeneId":219469},{"hugoGeneSymbol":"OR8H2","entrezGeneId":390151},{"hugoGeneSymbol":"OR8H3","entrezGeneId":390152},{"hugoGeneSymbol":"OR8I1P","entrezGeneId":79498},{"hugoGeneSymbol":"OR8I2","entrezGeneId":120586},{"hugoGeneSymbol":"OR8I4P","entrezGeneId":403303},{"hugoGeneSymbol":"OR8J1","entrezGeneId":219477},{"hugoGeneSymbol":"OR8J2","entrezGeneId":81169},{"hugoGeneSymbol":"OR8J3","entrezGeneId":81168},{"hugoGeneSymbol":"OR8K1","entrezGeneId":390157},{"hugoGeneSymbol":"OR8K2P","entrezGeneId":79494},{"hugoGeneSymbol":"OR8K3","entrezGeneId":219473},{"hugoGeneSymbol":"OR8K4P","entrezGeneId":81166},{"hugoGeneSymbol":"OR8K5","entrezGeneId":219453},{"hugoGeneSymbol":"OR8L1P","entrezGeneId":81164},{"hugoGeneSymbol":"OR8Q1P","entrezGeneId":81163},{"hugoGeneSymbol":"OR8R1P","entrezGeneId":81162},{"hugoGeneSymbol":"OR8S1","entrezGeneId":341568},{"hugoGeneSymbol":"OR8S21P","entrezGeneId":403304},{"hugoGeneSymbol":"OR8T1P","entrezGeneId":282791},{"hugoGeneSymbol":"OR8U1","entrezGeneId":219417},{"hugoGeneSymbol":"OR8U8","entrezGeneId":504189},{"hugoGeneSymbol":"OR8U9","entrezGeneId":504190},{"hugoGeneSymbol":"OR8V1P","entrezGeneId":282776},{"hugoGeneSymbol":"OR8X1P","entrezGeneId":403305},{"hugoGeneSymbol":"OR9A1P","entrezGeneId":26495},{"hugoGeneSymbol":"OR9A2","entrezGeneId":135924},{"hugoGeneSymbol":"OR9A3P","entrezGeneId":392106},{"hugoGeneSymbol":"OR9A4","entrezGeneId":130075},{"hugoGeneSymbol":"OR9G1","entrezGeneId":390174},{"hugoGeneSymbol":"OR9G2P","entrezGeneId":81160},{"hugoGeneSymbol":"OR9G3P","entrezGeneId":81159},{"hugoGeneSymbol":"OR9G4","entrezGeneId":283189},{"hugoGeneSymbol":"OR9G9","entrezGeneId":504191},{"hugoGeneSymbol":"OR9H1P","entrezGeneId":81439},{"hugoGeneSymbol":"OR9I1","entrezGeneId":219954},{"hugoGeneSymbol":"OR9I2P","entrezGeneId":81156},{"hugoGeneSymbol":"OR9I3P","entrezGeneId":81155},{"hugoGeneSymbol":"OR9K1P","entrezGeneId":121360},{"hugoGeneSymbol":"OR9K2","entrezGeneId":441639},{"hugoGeneSymbol":"OR9L1P","entrezGeneId":79301},{"hugoGeneSymbol":"OR9M1P","entrezGeneId":81153},{"hugoGeneSymbol":"OR9N1P","entrezGeneId":81383},{"hugoGeneSymbol":"OR9P1P","entrezGeneId":81382},{"hugoGeneSymbol":"OR9Q1","entrezGeneId":219956},{"hugoGeneSymbol":"OR9Q2","entrezGeneId":219957},{"hugoGeneSymbol":"OR9R1P","entrezGeneId":81140},{"hugoGeneSymbol":"OR9S24P","entrezGeneId":403275},{"hugoGeneSymbol":"ORAI1","entrezGeneId":84876},{"hugoGeneSymbol":"ORAI2","entrezGeneId":80228},{"hugoGeneSymbol":"ORAI3","entrezGeneId":93129},{"hugoGeneSymbol":"ORAOV1","entrezGeneId":220064},{"hugoGeneSymbol":"ORAOV1P1","entrezGeneId":100873907},{"hugoGeneSymbol":"ORC1","entrezGeneId":4998},{"hugoGeneSymbol":"ORC2","entrezGeneId":4999},{"hugoGeneSymbol":"ORC3","entrezGeneId":23595},{"hugoGeneSymbol":"ORC4","entrezGeneId":5000},{"hugoGeneSymbol":"ORC5","entrezGeneId":5001},{"hugoGeneSymbol":"ORC6","entrezGeneId":23594},{"hugoGeneSymbol":"ORI343","entrezGeneId":107228316},{"hugoGeneSymbol":"ORI6","entrezGeneId":107197953},{"hugoGeneSymbol":"ORM1","entrezGeneId":5004},{"hugoGeneSymbol":"ORM2","entrezGeneId":5005},{"hugoGeneSymbol":"ORMDL1","entrezGeneId":94101},{"hugoGeneSymbol":"ORMDL2","entrezGeneId":29095},{"hugoGeneSymbol":"ORMDL3","entrezGeneId":94103},{"hugoGeneSymbol":"ORS8","entrezGeneId":107063542},{"hugoGeneSymbol":"OS4","entrezGeneId":100188821},{"hugoGeneSymbol":"OS6","entrezGeneId":100286836},{"hugoGeneSymbol":"OS9","entrezGeneId":10956},{"hugoGeneSymbol":"OSBP","entrezGeneId":5007},{"hugoGeneSymbol":"OSBP2","entrezGeneId":23762},{"hugoGeneSymbol":"OSBPL10","entrezGeneId":114884},{"hugoGeneSymbol":"OSBPL10-AS1","entrezGeneId":100874206},{"hugoGeneSymbol":"OSBPL11","entrezGeneId":114885},{"hugoGeneSymbol":"OSBPL1A","entrezGeneId":114876},{"hugoGeneSymbol":"OSBPL2","entrezGeneId":9885},{"hugoGeneSymbol":"OSBPL3","entrezGeneId":26031},{"hugoGeneSymbol":"OSBPL5","entrezGeneId":114879},{"hugoGeneSymbol":"OSBPL6","entrezGeneId":114880},{"hugoGeneSymbol":"OSBPL7","entrezGeneId":114881},{"hugoGeneSymbol":"OSBPL8","entrezGeneId":114882},{"hugoGeneSymbol":"OSBPL9","entrezGeneId":114883},{"hugoGeneSymbol":"OSBPL9P1","entrezGeneId":100130821},{"hugoGeneSymbol":"OSBPL9P2","entrezGeneId":100130038},{"hugoGeneSymbol":"OSBPL9P3","entrezGeneId":100420591},{"hugoGeneSymbol":"OSBPL9P4","entrezGeneId":100498661},{"hugoGeneSymbol":"OSBPL9P5","entrezGeneId":106480232},{"hugoGeneSymbol":"OSBPL9P6","entrezGeneId":100533673},{"hugoGeneSymbol":"OSCAR","entrezGeneId":126014},{"hugoGeneSymbol":"OSCP1","entrezGeneId":127700},{"hugoGeneSymbol":"OSER1","entrezGeneId":51526},{"hugoGeneSymbol":"OSER1-DT","entrezGeneId":100505783},{"hugoGeneSymbol":"OSGEP","entrezGeneId":55644},{"hugoGeneSymbol":"OSGEPL1","entrezGeneId":64172},{"hugoGeneSymbol":"OSGEPL1-AS1","entrezGeneId":101409258},{"hugoGeneSymbol":"OSGIN1","entrezGeneId":29948},{"hugoGeneSymbol":"OSGIN2","entrezGeneId":734},{"hugoGeneSymbol":"OSM","entrezGeneId":5008},{"hugoGeneSymbol":"OSMR","entrezGeneId":9180},{"hugoGeneSymbol":"OSMR-AS1","entrezGeneId":101929768},{"hugoGeneSymbol":"OSR1","entrezGeneId":130497},{"hugoGeneSymbol":"OSR2","entrezGeneId":116039},{"hugoGeneSymbol":"OST4","entrezGeneId":100128731},{"hugoGeneSymbol":"OSTC","entrezGeneId":58505},{"hugoGeneSymbol":"OSTCP1","entrezGeneId":202459},{"hugoGeneSymbol":"OSTCP2","entrezGeneId":646567},{"hugoGeneSymbol":"OSTCP3","entrezGeneId":646557},{"hugoGeneSymbol":"OSTCP4","entrezGeneId":645264},{"hugoGeneSymbol":"OSTCP5","entrezGeneId":100874386},{"hugoGeneSymbol":"OSTCP6","entrezGeneId":100874387},{"hugoGeneSymbol":"OSTCP7","entrezGeneId":100874391},{"hugoGeneSymbol":"OSTCP8","entrezGeneId":100874388},{"hugoGeneSymbol":"OSTEAR3_H","entrezGeneId":474287},{"hugoGeneSymbol":"OSTF1","entrezGeneId":26578},{"hugoGeneSymbol":"OSTF1P1","entrezGeneId":386654},{"hugoGeneSymbol":"OSTM1","entrezGeneId":28962},{"hugoGeneSymbol":"OSTM1-AS1","entrezGeneId":100287366},{"hugoGeneSymbol":"OSTN","entrezGeneId":344901},{"hugoGeneSymbol":"OSTN-AS1","entrezGeneId":106480738},{"hugoGeneSymbol":"OTC","entrezGeneId":5009},{"hugoGeneSymbol":"OTDD","entrezGeneId":100885788},{"hugoGeneSymbol":"OTOA","entrezGeneId":146183},{"hugoGeneSymbol":"OTOF","entrezGeneId":9381},{"hugoGeneSymbol":"OTOG","entrezGeneId":340990},{"hugoGeneSymbol":"OTOGL","entrezGeneId":283310},{"hugoGeneSymbol":"OTOL1","entrezGeneId":131149},{"hugoGeneSymbol":"OTOP1","entrezGeneId":133060},{"hugoGeneSymbol":"OTOP2","entrezGeneId":92736},{"hugoGeneSymbol":"OTOP3","entrezGeneId":347741},{"hugoGeneSymbol":"OTOR","entrezGeneId":56914},{"hugoGeneSymbol":"OTOS","entrezGeneId":150677},{"hugoGeneSymbol":"OTP","entrezGeneId":23440},{"hugoGeneSymbol":"OTSC1","entrezGeneId":5012},{"hugoGeneSymbol":"OTSC10","entrezGeneId":102723100},{"hugoGeneSymbol":"OTSC2","entrezGeneId":93999},{"hugoGeneSymbol":"OTSC3","entrezGeneId":170532},{"hugoGeneSymbol":"OTSC4","entrezGeneId":286751},{"hugoGeneSymbol":"OTSC5","entrezGeneId":317682},{"hugoGeneSymbol":"OTSC6","entrezGeneId":319090},{"hugoGeneSymbol":"OTSC7","entrezGeneId":399516},{"hugoGeneSymbol":"OTSC8","entrezGeneId":100151644},{"hugoGeneSymbol":"OTSC9","entrezGeneId":109729089},{"hugoGeneSymbol":"OTUB1","entrezGeneId":55611},{"hugoGeneSymbol":"OTUB2","entrezGeneId":78990},{"hugoGeneSymbol":"OTUD1","entrezGeneId":220213},{"hugoGeneSymbol":"OTUD3","entrezGeneId":23252},{"hugoGeneSymbol":"OTUD4","entrezGeneId":54726},{"hugoGeneSymbol":"OTUD4P1","entrezGeneId":360227},{"hugoGeneSymbol":"OTUD5","entrezGeneId":55593},{"hugoGeneSymbol":"OTUD6A","entrezGeneId":139562},{"hugoGeneSymbol":"OTUD6B","entrezGeneId":51633},{"hugoGeneSymbol":"OTUD6B-AS1","entrezGeneId":100506365},{"hugoGeneSymbol":"OTUD7A","entrezGeneId":161725},{"hugoGeneSymbol":"OTUD7B","entrezGeneId":56957},{"hugoGeneSymbol":"OTULIN","entrezGeneId":90268},{"hugoGeneSymbol":"OTULINL","entrezGeneId":54491},{"hugoGeneSymbol":"OTX1","entrezGeneId":5013},{"hugoGeneSymbol":"OTX2","entrezGeneId":5015},{"hugoGeneSymbol":"OTX2-AS1","entrezGeneId":100309464},{"hugoGeneSymbol":"OTX2P1","entrezGeneId":100033409},{"hugoGeneSymbol":"OVAAL","entrezGeneId":148756},{"hugoGeneSymbol":"OVCA2","entrezGeneId":124641},{"hugoGeneSymbol":"OVCAS1","entrezGeneId":574048},{"hugoGeneSymbol":"OVCH1","entrezGeneId":341350},{"hugoGeneSymbol":"OVCH1-AS1","entrezGeneId":101055625},{"hugoGeneSymbol":"OVCH2","entrezGeneId":341277},{"hugoGeneSymbol":"OVGP1","entrezGeneId":5016},{"hugoGeneSymbol":"OVOL1","entrezGeneId":5017},{"hugoGeneSymbol":"OVOL1-AS1","entrezGeneId":101927828},{"hugoGeneSymbol":"OVOL2","entrezGeneId":58495},{"hugoGeneSymbol":"OVOL3","entrezGeneId":728361},{"hugoGeneSymbol":"OVOS","entrezGeneId":408186},{"hugoGeneSymbol":"OVOS2","entrezGeneId":144203},{"hugoGeneSymbol":"OXA1L","entrezGeneId":5018},{"hugoGeneSymbol":"OXCT1","entrezGeneId":5019},{"hugoGeneSymbol":"OXCT1-AS1","entrezGeneId":100874002},{"hugoGeneSymbol":"OXCT2","entrezGeneId":64064},{"hugoGeneSymbol":"OXCT2P1","entrezGeneId":192217},{"hugoGeneSymbol":"OXER1","entrezGeneId":165140},{"hugoGeneSymbol":"OXGR1","entrezGeneId":27199},{"hugoGeneSymbol":"OXLD1","entrezGeneId":339229},{"hugoGeneSymbol":"OXNAD1","entrezGeneId":92106},{"hugoGeneSymbol":"OXR1","entrezGeneId":55074},{"hugoGeneSymbol":"OXSM","entrezGeneId":54995},{"hugoGeneSymbol":"OXSR1","entrezGeneId":9943},{"hugoGeneSymbol":"OXT","entrezGeneId":5020},{"hugoGeneSymbol":"OXTR","entrezGeneId":5021},{"hugoGeneSymbol":"P2RX1","entrezGeneId":5023},{"hugoGeneSymbol":"P2RX2","entrezGeneId":22953},{"hugoGeneSymbol":"P2RX3","entrezGeneId":5024},{"hugoGeneSymbol":"P2RX4","entrezGeneId":5025},{"hugoGeneSymbol":"P2RX5","entrezGeneId":5026},{"hugoGeneSymbol":"P2RX5-TAX1BP3","entrezGeneId":100533970},{"hugoGeneSymbol":"P2RX6","entrezGeneId":9127},{"hugoGeneSymbol":"P2RX6P","entrezGeneId":440799},{"hugoGeneSymbol":"P2RX7","entrezGeneId":5027},{"hugoGeneSymbol":"P2RY1","entrezGeneId":5028},{"hugoGeneSymbol":"P2RY10","entrezGeneId":27334},{"hugoGeneSymbol":"P2RY10BP","entrezGeneId":449518},{"hugoGeneSymbol":"P2RY10P1","entrezGeneId":654813},{"hugoGeneSymbol":"P2RY11","entrezGeneId":5032},{"hugoGeneSymbol":"P2RY12","entrezGeneId":64805},{"hugoGeneSymbol":"P2RY13","entrezGeneId":53829},{"hugoGeneSymbol":"P2RY14","entrezGeneId":9934},{"hugoGeneSymbol":"P2RY2","entrezGeneId":5029},{"hugoGeneSymbol":"P2RY4","entrezGeneId":5030},{"hugoGeneSymbol":"P2RY6","entrezGeneId":5031},{"hugoGeneSymbol":"P2RY8","entrezGeneId":286530},{"hugoGeneSymbol":"P3H1","entrezGeneId":64175},{"hugoGeneSymbol":"P3H2","entrezGeneId":55214},{"hugoGeneSymbol":"P3H2-AS1","entrezGeneId":101929152},{"hugoGeneSymbol":"P3H3","entrezGeneId":10536},{"hugoGeneSymbol":"P3H4","entrezGeneId":10609},{"hugoGeneSymbol":"P4HA1","entrezGeneId":5033},{"hugoGeneSymbol":"P4HA2","entrezGeneId":8974},{"hugoGeneSymbol":"P4HA2-AS1","entrezGeneId":100861518},{"hugoGeneSymbol":"P4HA3","entrezGeneId":283208},{"hugoGeneSymbol":"P4HA3-AS1","entrezGeneId":101928580},{"hugoGeneSymbol":"P4HB","entrezGeneId":5034},{"hugoGeneSymbol":"P4HTM","entrezGeneId":54681},{"hugoGeneSymbol":"PA2G4","entrezGeneId":5036},{"hugoGeneSymbol":"PA2G4P1","entrezGeneId":389884},{"hugoGeneSymbol":"PA2G4P2","entrezGeneId":170533},{"hugoGeneSymbol":"PA2G4P3","entrezGeneId":619212},{"hugoGeneSymbol":"PA2G4P4","entrezGeneId":647033},{"hugoGeneSymbol":"PA2G4P5","entrezGeneId":389424},{"hugoGeneSymbol":"PA2G4P6","entrezGeneId":646083},{"hugoGeneSymbol":"PAAF1","entrezGeneId":80227},{"hugoGeneSymbol":"PABPC1","entrezGeneId":26986},{"hugoGeneSymbol":"PABPC1L","entrezGeneId":80336},{"hugoGeneSymbol":"PABPC1L2A","entrezGeneId":340529},{"hugoGeneSymbol":"PABPC1L2B","entrezGeneId":645974},{"hugoGeneSymbol":"PABPC1L2B-AS1","entrezGeneId":101928345},{"hugoGeneSymbol":"PABPC1P1","entrezGeneId":26980},{"hugoGeneSymbol":"PABPC1P10","entrezGeneId":285314},{"hugoGeneSymbol":"PABPC1P11","entrezGeneId":100421058},{"hugoGeneSymbol":"PABPC1P12","entrezGeneId":100129604},{"hugoGeneSymbol":"PABPC1P13","entrezGeneId":644758},{"hugoGeneSymbol":"PABPC1P2","entrezGeneId":728773},{"hugoGeneSymbol":"PABPC1P3","entrezGeneId":26978},{"hugoGeneSymbol":"PABPC1P4","entrezGeneId":341315},{"hugoGeneSymbol":"PABPC1P5","entrezGeneId":100131374},{"hugoGeneSymbol":"PABPC1P6","entrezGeneId":100128696},{"hugoGeneSymbol":"PABPC1P7","entrezGeneId":100128183},{"hugoGeneSymbol":"PABPC1P8","entrezGeneId":100132766},{"hugoGeneSymbol":"PABPC1P9","entrezGeneId":100130338},{"hugoGeneSymbol":"PABPC3","entrezGeneId":5042},{"hugoGeneSymbol":"PABPC4","entrezGeneId":8761},{"hugoGeneSymbol":"PABPC4L","entrezGeneId":132430},{"hugoGeneSymbol":"PABPC5","entrezGeneId":140886},{"hugoGeneSymbol":"PABPC5-AS1","entrezGeneId":102724167},{"hugoGeneSymbol":"PABPN1","entrezGeneId":8106},{"hugoGeneSymbol":"PABPN1L","entrezGeneId":390748},{"hugoGeneSymbol":"PABX","entrezGeneId":5043},{"hugoGeneSymbol":"PABY","entrezGeneId":5044},{"hugoGeneSymbol":"PACD","entrezGeneId":110366357},{"hugoGeneSymbol":"PACERR","entrezGeneId":103752588},{"hugoGeneSymbol":"PACRG","entrezGeneId":135138},{"hugoGeneSymbol":"PACRG-AS1","entrezGeneId":285796},{"hugoGeneSymbol":"PACRG-AS2","entrezGeneId":101929239},{"hugoGeneSymbol":"PACRG-AS3","entrezGeneId":729658},{"hugoGeneSymbol":"PACRGL","entrezGeneId":133015},{"hugoGeneSymbol":"PACS1","entrezGeneId":55690},{"hugoGeneSymbol":"PACS2","entrezGeneId":23241},{"hugoGeneSymbol":"PACSIN1","entrezGeneId":29993},{"hugoGeneSymbol":"PACSIN2","entrezGeneId":11252},{"hugoGeneSymbol":"PACSIN3","entrezGeneId":29763},{"hugoGeneSymbol":"PADI1","entrezGeneId":29943},{"hugoGeneSymbol":"PADI2","entrezGeneId":11240},{"hugoGeneSymbol":"PADI3","entrezGeneId":51702},{"hugoGeneSymbol":"PADI4","entrezGeneId":23569},{"hugoGeneSymbol":"PADI6","entrezGeneId":353238},{"hugoGeneSymbol":"PAEP","entrezGeneId":5047},{"hugoGeneSymbol":"PAEPP1","entrezGeneId":138159},{"hugoGeneSymbol":"PAF1","entrezGeneId":54623},{"hugoGeneSymbol":"PAFAH1B1","entrezGeneId":5048},{"hugoGeneSymbol":"PAFAH1B1P1","entrezGeneId":7845},{"hugoGeneSymbol":"PAFAH1B1P2","entrezGeneId":27002},{"hugoGeneSymbol":"PAFAH1B2","entrezGeneId":5049},{"hugoGeneSymbol":"PAFAH1B3","entrezGeneId":5050},{"hugoGeneSymbol":"PAFAH2","entrezGeneId":5051},{"hugoGeneSymbol":"PAFC","entrezGeneId":404715},{"hugoGeneSymbol":"PAG1","entrezGeneId":55824},{"hugoGeneSymbol":"PAGE1","entrezGeneId":8712},{"hugoGeneSymbol":"PAGE2","entrezGeneId":203569},{"hugoGeneSymbol":"PAGE2B","entrezGeneId":389860},{"hugoGeneSymbol":"PAGE3","entrezGeneId":139793},{"hugoGeneSymbol":"PAGE4","entrezGeneId":9506},{"hugoGeneSymbol":"PAGE5","entrezGeneId":90737},{"hugoGeneSymbol":"PAGR1","entrezGeneId":79447},{"hugoGeneSymbol":"PAH","entrezGeneId":5053},{"hugoGeneSymbol":"PAICS","entrezGeneId":10606},{"hugoGeneSymbol":"PAICSP1","entrezGeneId":780814},{"hugoGeneSymbol":"PAICSP2","entrezGeneId":780815},{"hugoGeneSymbol":"PAICSP3","entrezGeneId":780810},{"hugoGeneSymbol":"PAICSP4","entrezGeneId":780813},{"hugoGeneSymbol":"PAICSP5","entrezGeneId":780811},{"hugoGeneSymbol":"PAICSP6","entrezGeneId":780812},{"hugoGeneSymbol":"PAICSP7","entrezGeneId":780816},{"hugoGeneSymbol":"PAIP1","entrezGeneId":10605},{"hugoGeneSymbol":"PAIP1P1","entrezGeneId":100421582},{"hugoGeneSymbol":"PAIP2","entrezGeneId":51247},{"hugoGeneSymbol":"PAIP2B","entrezGeneId":400961},{"hugoGeneSymbol":"PAK1","entrezGeneId":5058},{"hugoGeneSymbol":"PAK1IP1","entrezGeneId":55003},{"hugoGeneSymbol":"PAK2","entrezGeneId":5062},{"hugoGeneSymbol":"PAK3","entrezGeneId":5063},{"hugoGeneSymbol":"PAK4","entrezGeneId":10298},{"hugoGeneSymbol":"PAK5","entrezGeneId":57144},{"hugoGeneSymbol":"PAK6","entrezGeneId":56924},{"hugoGeneSymbol":"PALB2","entrezGeneId":79728},{"hugoGeneSymbol":"PALD1","entrezGeneId":27143},{"hugoGeneSymbol":"PALLD","entrezGeneId":23022},{"hugoGeneSymbol":"PALM","entrezGeneId":5064},{"hugoGeneSymbol":"PALM2","entrezGeneId":114299},{"hugoGeneSymbol":"PALM2-AKAP2","entrezGeneId":445815},{"hugoGeneSymbol":"PALM3","entrezGeneId":342979},{"hugoGeneSymbol":"PALMD","entrezGeneId":54873},{"hugoGeneSymbol":"PAM","entrezGeneId":5066},{"hugoGeneSymbol":"PAM16","entrezGeneId":51025},{"hugoGeneSymbol":"PAMR1","entrezGeneId":25891},{"hugoGeneSymbol":"PAN2","entrezGeneId":9924},{"hugoGeneSymbol":"PAN3","entrezGeneId":255967},{"hugoGeneSymbol":"PAN3-AS1","entrezGeneId":100288730},{"hugoGeneSymbol":"PANCR","entrezGeneId":110231149},{"hugoGeneSymbol":"PAND1","entrezGeneId":387572},{"hugoGeneSymbol":"PAND2","entrezGeneId":619493},{"hugoGeneSymbol":"PAND3","entrezGeneId":677663},{"hugoGeneSymbol":"PANDAR","entrezGeneId":101154753},{"hugoGeneSymbol":"PANK1","entrezGeneId":53354},{"hugoGeneSymbol":"PANK2","entrezGeneId":80025},{"hugoGeneSymbol":"PANK3","entrezGeneId":79646},{"hugoGeneSymbol":"PANK4","entrezGeneId":55229},{"hugoGeneSymbol":"PANO1","entrezGeneId":101927423},{"hugoGeneSymbol":"PANX1","entrezGeneId":24145},{"hugoGeneSymbol":"PANX2","entrezGeneId":56666},{"hugoGeneSymbol":"PANX3","entrezGeneId":116337},{"hugoGeneSymbol":"PAOD1","entrezGeneId":171513},{"hugoGeneSymbol":"PAOX","entrezGeneId":196743},{"hugoGeneSymbol":"PAPA2","entrezGeneId":8103},{"hugoGeneSymbol":"PAPA3","entrezGeneId":338333},{"hugoGeneSymbol":"PAPA4","entrezGeneId":450096},{"hugoGeneSymbol":"PAPA5","entrezGeneId":101241897},{"hugoGeneSymbol":"PAPD4","entrezGeneId":167153},{"hugoGeneSymbol":"PAPD5","entrezGeneId":64282},{"hugoGeneSymbol":"PAPD7","entrezGeneId":11044},{"hugoGeneSymbol":"PAPLN","entrezGeneId":89932},{"hugoGeneSymbol":"PAPOLA","entrezGeneId":10914},{"hugoGeneSymbol":"PAPOLB","entrezGeneId":56903},{"hugoGeneSymbol":"PAPOLG","entrezGeneId":64895},{"hugoGeneSymbol":"PAPPA","entrezGeneId":5069},{"hugoGeneSymbol":"PAPPA-AS1","entrezGeneId":493913},{"hugoGeneSymbol":"PAPPA-AS2","entrezGeneId":103611155},{"hugoGeneSymbol":"PAPPA2","entrezGeneId":60676},{"hugoGeneSymbol":"PAPSS1","entrezGeneId":9061},{"hugoGeneSymbol":"PAPSS2","entrezGeneId":9060},{"hugoGeneSymbol":"PAQR3","entrezGeneId":152559},{"hugoGeneSymbol":"PAQR4","entrezGeneId":124222},{"hugoGeneSymbol":"PAQR5","entrezGeneId":54852},{"hugoGeneSymbol":"PAQR6","entrezGeneId":79957},{"hugoGeneSymbol":"PAQR7","entrezGeneId":164091},{"hugoGeneSymbol":"PAQR8","entrezGeneId":85315},{"hugoGeneSymbol":"PAQR9","entrezGeneId":344838},{"hugoGeneSymbol":"PAQR9-AS1","entrezGeneId":101927832},{"hugoGeneSymbol":"PARAL1","entrezGeneId":101929371},{"hugoGeneSymbol":"PARD3","entrezGeneId":56288},{"hugoGeneSymbol":"PARD3-AS1","entrezGeneId":100505601},{"hugoGeneSymbol":"PARD3B","entrezGeneId":117583},{"hugoGeneSymbol":"PARD6A","entrezGeneId":50855},{"hugoGeneSymbol":"PARD6B","entrezGeneId":84612},{"hugoGeneSymbol":"PARD6G","entrezGeneId":84552},{"hugoGeneSymbol":"PARD6G-AS1","entrezGeneId":100130522},{"hugoGeneSymbol":"PARG","entrezGeneId":8505},{"hugoGeneSymbol":"PARGP1","entrezGeneId":728407},{"hugoGeneSymbol":"PARK10","entrezGeneId":170534},{"hugoGeneSymbol":"PARK12","entrezGeneId":677662},{"hugoGeneSymbol":"PARK16","entrezGeneId":100359403},{"hugoGeneSymbol":"PARK21","entrezGeneId":108353827},{"hugoGeneSymbol":"PARK3","entrezGeneId":5072},{"hugoGeneSymbol":"PARK7","entrezGeneId":11315},{"hugoGeneSymbol":"PARL","entrezGeneId":55486},{"hugoGeneSymbol":"PARM1","entrezGeneId":25849},{"hugoGeneSymbol":"PARN","entrezGeneId":5073},{"hugoGeneSymbol":"PARP1","entrezGeneId":142},{"hugoGeneSymbol":"PARP10","entrezGeneId":84875},{"hugoGeneSymbol":"PARP11","entrezGeneId":57097},{"hugoGeneSymbol":"PARP12","entrezGeneId":64761},{"hugoGeneSymbol":"PARP14","entrezGeneId":54625},{"hugoGeneSymbol":"PARP15","entrezGeneId":165631},{"hugoGeneSymbol":"PARP16","entrezGeneId":54956},{"hugoGeneSymbol":"PARP1P1","entrezGeneId":144},{"hugoGeneSymbol":"PARP1P2","entrezGeneId":145},{"hugoGeneSymbol":"PARP2","entrezGeneId":10038},{"hugoGeneSymbol":"PARP3","entrezGeneId":10039},{"hugoGeneSymbol":"PARP4","entrezGeneId":143},{"hugoGeneSymbol":"PARP4P1","entrezGeneId":347613},{"hugoGeneSymbol":"PARP4P2","entrezGeneId":645771},{"hugoGeneSymbol":"PARP4P3","entrezGeneId":107133524},{"hugoGeneSymbol":"PARP6","entrezGeneId":56965},{"hugoGeneSymbol":"PARP8","entrezGeneId":79668},{"hugoGeneSymbol":"PARP9","entrezGeneId":83666},{"hugoGeneSymbol":"PARPBP","entrezGeneId":55010},{"hugoGeneSymbol":"PARS2","entrezGeneId":25973},{"hugoGeneSymbol":"PART1","entrezGeneId":25859},{"hugoGeneSymbol":"PARTICL","entrezGeneId":100630918},{"hugoGeneSymbol":"PARVA","entrezGeneId":55742},{"hugoGeneSymbol":"PARVB","entrezGeneId":29780},{"hugoGeneSymbol":"PARVG","entrezGeneId":64098},{"hugoGeneSymbol":"PASD1","entrezGeneId":139135},{"hugoGeneSymbol":"PASK","entrezGeneId":23178},{"hugoGeneSymbol":"PATE1","entrezGeneId":160065},{"hugoGeneSymbol":"PATE2","entrezGeneId":399967},{"hugoGeneSymbol":"PATE3","entrezGeneId":100169851},{"hugoGeneSymbol":"PATE4","entrezGeneId":399968},{"hugoGeneSymbol":"PATJ","entrezGeneId":10207},{"hugoGeneSymbol":"PATL1","entrezGeneId":219988},{"hugoGeneSymbol":"PATL2","entrezGeneId":197135},{"hugoGeneSymbol":"PATZ1","entrezGeneId":23598},{"hugoGeneSymbol":"PAUPAR","entrezGeneId":103157000},{"hugoGeneSymbol":"PAURT1","entrezGeneId":101669760},{"hugoGeneSymbol":"PAWR","entrezGeneId":5074},{"hugoGeneSymbol":"PAWRP1","entrezGeneId":100420526},{"hugoGeneSymbol":"PAWRP2","entrezGeneId":100420535},{"hugoGeneSymbol":"PAX1","entrezGeneId":5075},{"hugoGeneSymbol":"PAX2","entrezGeneId":5076},{"hugoGeneSymbol":"PAX3","entrezGeneId":5077},{"hugoGeneSymbol":"PAX4","entrezGeneId":5078},{"hugoGeneSymbol":"PAX5","entrezGeneId":5079},{"hugoGeneSymbol":"PAX6","entrezGeneId":5080},{"hugoGeneSymbol":"PAX6-AS1","entrezGeneId":440034},{"hugoGeneSymbol":"PAX6DRR","entrezGeneId":105941491},{"hugoGeneSymbol":"PAX6_HS2","entrezGeneId":106029238},{"hugoGeneSymbol":"PAX6_HS3","entrezGeneId":106029239},{"hugoGeneSymbol":"PAX6_HS8","entrezGeneId":106010957},{"hugoGeneSymbol":"PAX7","entrezGeneId":5081},{"hugoGeneSymbol":"PAX8","entrezGeneId":7849},{"hugoGeneSymbol":"PAX8-AS1","entrezGeneId":654433},{"hugoGeneSymbol":"PAX9","entrezGeneId":5083},{"hugoGeneSymbol":"PAXBP1","entrezGeneId":94104},{"hugoGeneSymbol":"PAXBP1-AS1","entrezGeneId":100506215},{"hugoGeneSymbol":"PAXBP1P1","entrezGeneId":106481704},{"hugoGeneSymbol":"PAXIP1","entrezGeneId":22976},{"hugoGeneSymbol":"PAXIP1-AS1","entrezGeneId":202781},{"hugoGeneSymbol":"PAXIP1-AS2","entrezGeneId":100132707},{"hugoGeneSymbol":"PAXX","entrezGeneId":286257},{"hugoGeneSymbol":"PBC2","entrezGeneId":100303716},{"hugoGeneSymbol":"PBC3","entrezGeneId":100303717},{"hugoGeneSymbol":"PBC4","entrezGeneId":100689215},{"hugoGeneSymbol":"PBC5","entrezGeneId":100689212},{"hugoGeneSymbol":"PBCA","entrezGeneId":7962},{"hugoGeneSymbol":"PBCRA1","entrezGeneId":7948},{"hugoGeneSymbol":"PBDC1","entrezGeneId":51260},{"hugoGeneSymbol":"PBG1","entrezGeneId":5084},{"hugoGeneSymbol":"PBK","entrezGeneId":55872},{"hugoGeneSymbol":"PBLD","entrezGeneId":64081},{"hugoGeneSymbol":"PBOV1","entrezGeneId":59351},{"hugoGeneSymbol":"PBRM1","entrezGeneId":55193},{"hugoGeneSymbol":"PBX1","entrezGeneId":5087},{"hugoGeneSymbol":"PBX2","entrezGeneId":5089},{"hugoGeneSymbol":"PBX2P1","entrezGeneId":5088},{"hugoGeneSymbol":"PBX3","entrezGeneId":5090},{"hugoGeneSymbol":"PBX4","entrezGeneId":80714},{"hugoGeneSymbol":"PBXIP1","entrezGeneId":57326},{"hugoGeneSymbol":"PC","entrezGeneId":5091},{"hugoGeneSymbol":"PCA3","entrezGeneId":50652},{"hugoGeneSymbol":"PCAP","entrezGeneId":7834},{"hugoGeneSymbol":"PCAT1","entrezGeneId":100750225},{"hugoGeneSymbol":"PCAT14","entrezGeneId":101978785},{"hugoGeneSymbol":"PCAT18","entrezGeneId":728606},{"hugoGeneSymbol":"PCAT19","entrezGeneId":100505495},{"hugoGeneSymbol":"PCAT2","entrezGeneId":103164619},{"hugoGeneSymbol":"PCAT29","entrezGeneId":104472713},{"hugoGeneSymbol":"PCAT4","entrezGeneId":118425},{"hugoGeneSymbol":"PCAT5","entrezGeneId":102578074},{"hugoGeneSymbol":"PCAT6","entrezGeneId":100506696},{"hugoGeneSymbol":"PCAT7","entrezGeneId":101928099},{"hugoGeneSymbol":"PCBD1","entrezGeneId":5092},{"hugoGeneSymbol":"PCBD2","entrezGeneId":84105},{"hugoGeneSymbol":"PCBP1","entrezGeneId":5093},{"hugoGeneSymbol":"PCBP1-AS1","entrezGeneId":400960},{"hugoGeneSymbol":"PCBP2","entrezGeneId":5094},{"hugoGeneSymbol":"PCBP2-OT1","entrezGeneId":102157401},{"hugoGeneSymbol":"PCBP2P1","entrezGeneId":101060045},{"hugoGeneSymbol":"PCBP2P2","entrezGeneId":286157},{"hugoGeneSymbol":"PCBP2P3","entrezGeneId":100131236},{"hugoGeneSymbol":"PCBP3","entrezGeneId":54039},{"hugoGeneSymbol":"PCBP4","entrezGeneId":57060},{"hugoGeneSymbol":"PCCA","entrezGeneId":5095},{"hugoGeneSymbol":"PCCA-AS1","entrezGeneId":100885777},{"hugoGeneSymbol":"PCCB","entrezGeneId":5096},{"hugoGeneSymbol":"PCDH1","entrezGeneId":5097},{"hugoGeneSymbol":"PCDH10","entrezGeneId":57575},{"hugoGeneSymbol":"PCDH11X","entrezGeneId":27328},{"hugoGeneSymbol":"PCDH11Y","entrezGeneId":83259},{"hugoGeneSymbol":"PCDH12","entrezGeneId":51294},{"hugoGeneSymbol":"PCDH15","entrezGeneId":65217},{"hugoGeneSymbol":"PCDH17","entrezGeneId":27253},{"hugoGeneSymbol":"PCDH18","entrezGeneId":54510},{"hugoGeneSymbol":"PCDH19","entrezGeneId":57526},{"hugoGeneSymbol":"PCDH20","entrezGeneId":64881},{"hugoGeneSymbol":"PCDH7","entrezGeneId":5099},{"hugoGeneSymbol":"PCDH8","entrezGeneId":5100},{"hugoGeneSymbol":"PCDH8P1","entrezGeneId":100133285},{"hugoGeneSymbol":"PCDH9","entrezGeneId":5101},{"hugoGeneSymbol":"PCDH9-AS1","entrezGeneId":100874065},{"hugoGeneSymbol":"PCDH9-AS2","entrezGeneId":100874064},{"hugoGeneSymbol":"PCDH9-AS3","entrezGeneId":100874086},{"hugoGeneSymbol":"PCDH9-AS4","entrezGeneId":100874087},{"hugoGeneSymbol":"PCDHA1","entrezGeneId":56147},{"hugoGeneSymbol":"PCDHA10","entrezGeneId":56139},{"hugoGeneSymbol":"PCDHA11","entrezGeneId":56138},{"hugoGeneSymbol":"PCDHA12","entrezGeneId":56137},{"hugoGeneSymbol":"PCDHA13","entrezGeneId":56136},{"hugoGeneSymbol":"PCDHA14","entrezGeneId":26307},{"hugoGeneSymbol":"PCDHA2","entrezGeneId":56146},{"hugoGeneSymbol":"PCDHA3","entrezGeneId":56145},{"hugoGeneSymbol":"PCDHA4","entrezGeneId":56144},{"hugoGeneSymbol":"PCDHA5","entrezGeneId":56143},{"hugoGeneSymbol":"PCDHA6","entrezGeneId":56142},{"hugoGeneSymbol":"PCDHA7","entrezGeneId":56141},{"hugoGeneSymbol":"PCDHA8","entrezGeneId":56140},{"hugoGeneSymbol":"PCDHA9","entrezGeneId":9752},{"hugoGeneSymbol":"PCDHA@","entrezGeneId":56117},{"hugoGeneSymbol":"PCDHAC1","entrezGeneId":56135},{"hugoGeneSymbol":"PCDHAC2","entrezGeneId":56134},{"hugoGeneSymbol":"PCDHACT","entrezGeneId":56119},{"hugoGeneSymbol":"PCDHB1","entrezGeneId":29930},{"hugoGeneSymbol":"PCDHB10","entrezGeneId":56126},{"hugoGeneSymbol":"PCDHB11","entrezGeneId":56125},{"hugoGeneSymbol":"PCDHB12","entrezGeneId":56124},{"hugoGeneSymbol":"PCDHB13","entrezGeneId":56123},{"hugoGeneSymbol":"PCDHB14","entrezGeneId":56122},{"hugoGeneSymbol":"PCDHB15","entrezGeneId":56121},{"hugoGeneSymbol":"PCDHB16","entrezGeneId":57717},{"hugoGeneSymbol":"PCDHB17P","entrezGeneId":54661},{"hugoGeneSymbol":"PCDHB18P","entrezGeneId":54660},{"hugoGeneSymbol":"PCDHB19P","entrezGeneId":84054},{"hugoGeneSymbol":"PCDHB2","entrezGeneId":56133},{"hugoGeneSymbol":"PCDHB3","entrezGeneId":56132},{"hugoGeneSymbol":"PCDHB4","entrezGeneId":56131},{"hugoGeneSymbol":"PCDHB5","entrezGeneId":26167},{"hugoGeneSymbol":"PCDHB6","entrezGeneId":56130},{"hugoGeneSymbol":"PCDHB7","entrezGeneId":56129},{"hugoGeneSymbol":"PCDHB8","entrezGeneId":56128},{"hugoGeneSymbol":"PCDHB9","entrezGeneId":56127},{"hugoGeneSymbol":"PCDHB@","entrezGeneId":56116},{"hugoGeneSymbol":"PCDHG@","entrezGeneId":56115},{"hugoGeneSymbol":"PCDHGA1","entrezGeneId":56114},{"hugoGeneSymbol":"PCDHGA10","entrezGeneId":56106},{"hugoGeneSymbol":"PCDHGA11","entrezGeneId":56105},{"hugoGeneSymbol":"PCDHGA12","entrezGeneId":26025},{"hugoGeneSymbol":"PCDHGA2","entrezGeneId":56113},{"hugoGeneSymbol":"PCDHGA3","entrezGeneId":56112},{"hugoGeneSymbol":"PCDHGA4","entrezGeneId":56111},{"hugoGeneSymbol":"PCDHGA5","entrezGeneId":56110},{"hugoGeneSymbol":"PCDHGA6","entrezGeneId":56109},{"hugoGeneSymbol":"PCDHGA7","entrezGeneId":56108},{"hugoGeneSymbol":"PCDHGA8","entrezGeneId":9708},{"hugoGeneSymbol":"PCDHGA9","entrezGeneId":56107},{"hugoGeneSymbol":"PCDHGB1","entrezGeneId":56104},{"hugoGeneSymbol":"PCDHGB2","entrezGeneId":56103},{"hugoGeneSymbol":"PCDHGB3","entrezGeneId":56102},{"hugoGeneSymbol":"PCDHGB4","entrezGeneId":8641},{"hugoGeneSymbol":"PCDHGB5","entrezGeneId":56101},{"hugoGeneSymbol":"PCDHGB6","entrezGeneId":56100},{"hugoGeneSymbol":"PCDHGB7","entrezGeneId":56099},{"hugoGeneSymbol":"PCDHGB8P","entrezGeneId":56120},{"hugoGeneSymbol":"PCDHGB9P","entrezGeneId":84055},{"hugoGeneSymbol":"PCDHGC3","entrezGeneId":5098},{"hugoGeneSymbol":"PCDHGC4","entrezGeneId":56098},{"hugoGeneSymbol":"PCDHGC5","entrezGeneId":56097},{"hugoGeneSymbol":"PCDHGCT","entrezGeneId":56118},{"hugoGeneSymbol":"PCED1A","entrezGeneId":64773},{"hugoGeneSymbol":"PCED1B","entrezGeneId":91523},{"hugoGeneSymbol":"PCED1B-AS1","entrezGeneId":100233209},{"hugoGeneSymbol":"PCED1CP","entrezGeneId":646249},{"hugoGeneSymbol":"PCF11","entrezGeneId":51585},{"hugoGeneSymbol":"PCF11-AS1","entrezGeneId":106736475},{"hugoGeneSymbol":"PCGEM1","entrezGeneId":64002},{"hugoGeneSymbol":"PCGF1","entrezGeneId":84759},{"hugoGeneSymbol":"PCGF2","entrezGeneId":7703},{"hugoGeneSymbol":"PCGF3","entrezGeneId":10336},{"hugoGeneSymbol":"PCGF5","entrezGeneId":84333},{"hugoGeneSymbol":"PCGF6","entrezGeneId":84108},{"hugoGeneSymbol":"PCGF7P","entrezGeneId":253272},{"hugoGeneSymbol":"PCID2","entrezGeneId":55795},{"hugoGeneSymbol":"PCIF1","entrezGeneId":63935},{"hugoGeneSymbol":"PCK1","entrezGeneId":5105},{"hugoGeneSymbol":"PCK2","entrezGeneId":5106},{"hugoGeneSymbol":"PCLAF","entrezGeneId":9768},{"hugoGeneSymbol":"PCLO","entrezGeneId":27445},{"hugoGeneSymbol":"PCM1","entrezGeneId":5108},{"hugoGeneSymbol":"PCMT1","entrezGeneId":5110},{"hugoGeneSymbol":"PCMTD1","entrezGeneId":115294},{"hugoGeneSymbol":"PCMTD1P1","entrezGeneId":100874520},{"hugoGeneSymbol":"PCMTD1P2","entrezGeneId":100287647},{"hugoGeneSymbol":"PCMTD1P3","entrezGeneId":100422595},{"hugoGeneSymbol":"PCMTD1P4","entrezGeneId":107105258},{"hugoGeneSymbol":"PCMTD1P5","entrezGeneId":107105260},{"hugoGeneSymbol":"PCMTD1P6","entrezGeneId":107105255},{"hugoGeneSymbol":"PCMTD1P7","entrezGeneId":107080553},{"hugoGeneSymbol":"PCMTD1P8","entrezGeneId":107105257},{"hugoGeneSymbol":"PCMTD2","entrezGeneId":55251},{"hugoGeneSymbol":"PCNA","entrezGeneId":5111},{"hugoGeneSymbol":"PCNA-AS1","entrezGeneId":100302739},{"hugoGeneSymbol":"PCNAP1","entrezGeneId":359806},{"hugoGeneSymbol":"PCNAP2","entrezGeneId":359805},{"hugoGeneSymbol":"PCNAP3","entrezGeneId":392454},{"hugoGeneSymbol":"PCNAP4","entrezGeneId":390102},{"hugoGeneSymbol":"PCNP","entrezGeneId":57092},{"hugoGeneSymbol":"PCNPP1","entrezGeneId":654427},{"hugoGeneSymbol":"PCNPP2","entrezGeneId":100128911},{"hugoGeneSymbol":"PCNPP3","entrezGeneId":729298},{"hugoGeneSymbol":"PCNPP4","entrezGeneId":100874220},{"hugoGeneSymbol":"PCNPP5","entrezGeneId":100507361},{"hugoGeneSymbol":"PCNT","entrezGeneId":5116},{"hugoGeneSymbol":"PCNX1","entrezGeneId":22990},{"hugoGeneSymbol":"PCNX2","entrezGeneId":80003},{"hugoGeneSymbol":"PCNX3","entrezGeneId":399909},{"hugoGeneSymbol":"PCNX4","entrezGeneId":64430},{"hugoGeneSymbol":"PCOLCE","entrezGeneId":5118},{"hugoGeneSymbol":"PCOLCE-AS1","entrezGeneId":100129845},{"hugoGeneSymbol":"PCOLCE2","entrezGeneId":26577},{"hugoGeneSymbol":"PCOS1","entrezGeneId":5120},{"hugoGeneSymbol":"PCOTH","entrezGeneId":542767},{"hugoGeneSymbol":"PCOTHP1","entrezGeneId":100287275},{"hugoGeneSymbol":"PCP2","entrezGeneId":126006},{"hugoGeneSymbol":"PCP4","entrezGeneId":5121},{"hugoGeneSymbol":"PCP4L1","entrezGeneId":654790},{"hugoGeneSymbol":"PCSK1","entrezGeneId":5122},{"hugoGeneSymbol":"PCSK1N","entrezGeneId":27344},{"hugoGeneSymbol":"PCSK2","entrezGeneId":5126},{"hugoGeneSymbol":"PCSK4","entrezGeneId":54760},{"hugoGeneSymbol":"PCSK5","entrezGeneId":5125},{"hugoGeneSymbol":"PCSK6","entrezGeneId":5046},{"hugoGeneSymbol":"PCSK6-AS1","entrezGeneId":105371027},{"hugoGeneSymbol":"PCSK7","entrezGeneId":9159},{"hugoGeneSymbol":"PCSK9","entrezGeneId":255738},{"hugoGeneSymbol":"PCTP","entrezGeneId":58488},{"hugoGeneSymbol":"PCYOX1","entrezGeneId":51449},{"hugoGeneSymbol":"PCYOX1L","entrezGeneId":78991},{"hugoGeneSymbol":"PCYT1A","entrezGeneId":5130},{"hugoGeneSymbol":"PCYT1B","entrezGeneId":9468},{"hugoGeneSymbol":"PCYT1B-AS1","entrezGeneId":100874088},{"hugoGeneSymbol":"PCYT2","entrezGeneId":5833},{"hugoGeneSymbol":"PDA1","entrezGeneId":100996949},{"hugoGeneSymbol":"PDAP1","entrezGeneId":11333},{"hugoGeneSymbol":"PDB1","entrezGeneId":5131},{"hugoGeneSymbol":"PDB4","entrezGeneId":94003},{"hugoGeneSymbol":"PDB5","entrezGeneId":140777},{"hugoGeneSymbol":"PDB6","entrezGeneId":140778},{"hugoGeneSymbol":"PDC","entrezGeneId":5132},{"hugoGeneSymbol":"PDCD1","entrezGeneId":5133},{"hugoGeneSymbol":"PDCD10","entrezGeneId":11235},{"hugoGeneSymbol":"PDCD11","entrezGeneId":22984},{"hugoGeneSymbol":"PDCD1LG2","entrezGeneId":80380},{"hugoGeneSymbol":"PDCD2","entrezGeneId":5134},{"hugoGeneSymbol":"PDCD2L","entrezGeneId":84306},{"hugoGeneSymbol":"PDCD4","entrezGeneId":27250},{"hugoGeneSymbol":"PDCD4-AS1","entrezGeneId":282997},{"hugoGeneSymbol":"PDCD5","entrezGeneId":9141},{"hugoGeneSymbol":"PDCD5P1","entrezGeneId":100527946},{"hugoGeneSymbol":"PDCD5P2","entrezGeneId":100527947},{"hugoGeneSymbol":"PDCD6","entrezGeneId":10016},{"hugoGeneSymbol":"PDCD6IP","entrezGeneId":10015},{"hugoGeneSymbol":"PDCD6IPP1","entrezGeneId":100861430},{"hugoGeneSymbol":"PDCD6IPP2","entrezGeneId":646278},{"hugoGeneSymbol":"PDCD7","entrezGeneId":10081},{"hugoGeneSymbol":"PDCL","entrezGeneId":5082},{"hugoGeneSymbol":"PDCL2","entrezGeneId":132954},{"hugoGeneSymbol":"PDCL2P1","entrezGeneId":653707},{"hugoGeneSymbol":"PDCL2P2","entrezGeneId":106480295},{"hugoGeneSymbol":"PDCL3","entrezGeneId":79031},{"hugoGeneSymbol":"PDCL3P1","entrezGeneId":392225},{"hugoGeneSymbol":"PDCL3P2","entrezGeneId":643831},{"hugoGeneSymbol":"PDCL3P3","entrezGeneId":100132683},{"hugoGeneSymbol":"PDCL3P4","entrezGeneId":285359},{"hugoGeneSymbol":"PDCL3P5","entrezGeneId":644850},{"hugoGeneSymbol":"PDCL3P6","entrezGeneId":100419023},{"hugoGeneSymbol":"PDCL3P7","entrezGeneId":390340},{"hugoGeneSymbol":"PDCOS","entrezGeneId":100885774},{"hugoGeneSymbol":"PDE10A","entrezGeneId":10846},{"hugoGeneSymbol":"PDE11A","entrezGeneId":50940},{"hugoGeneSymbol":"PDE12","entrezGeneId":201626},{"hugoGeneSymbol":"PDE1A","entrezGeneId":5136},{"hugoGeneSymbol":"PDE1B","entrezGeneId":5153},{"hugoGeneSymbol":"PDE1C","entrezGeneId":5137},{"hugoGeneSymbol":"PDE2A","entrezGeneId":5138},{"hugoGeneSymbol":"PDE3A","entrezGeneId":5139},{"hugoGeneSymbol":"PDE3B","entrezGeneId":5140},{"hugoGeneSymbol":"PDE4A","entrezGeneId":5141},{"hugoGeneSymbol":"PDE4B","entrezGeneId":5142},{"hugoGeneSymbol":"PDE4C","entrezGeneId":5143},{"hugoGeneSymbol":"PDE4D","entrezGeneId":5144},{"hugoGeneSymbol":"PDE4DIP","entrezGeneId":9659},{"hugoGeneSymbol":"PDE4DIPP1","entrezGeneId":728920},{"hugoGeneSymbol":"PDE5A","entrezGeneId":8654},{"hugoGeneSymbol":"PDE6A","entrezGeneId":5145},{"hugoGeneSymbol":"PDE6B","entrezGeneId":5158},{"hugoGeneSymbol":"PDE6C","entrezGeneId":5146},{"hugoGeneSymbol":"PDE6D","entrezGeneId":5147},{"hugoGeneSymbol":"PDE6G","entrezGeneId":5148},{"hugoGeneSymbol":"PDE6H","entrezGeneId":5149},{"hugoGeneSymbol":"PDE7A","entrezGeneId":5150},{"hugoGeneSymbol":"PDE7B","entrezGeneId":27115},{"hugoGeneSymbol":"PDE8A","entrezGeneId":5151},{"hugoGeneSymbol":"PDE8B","entrezGeneId":8622},{"hugoGeneSymbol":"PDE9A","entrezGeneId":5152},{"hugoGeneSymbol":"PDF","entrezGeneId":64146},{"hugoGeneSymbol":"PDGFA","entrezGeneId":5154},{"hugoGeneSymbol":"PDGFB","entrezGeneId":5155},{"hugoGeneSymbol":"PDGFC","entrezGeneId":56034},{"hugoGeneSymbol":"PDGFD","entrezGeneId":80310},{"hugoGeneSymbol":"PDGFRA","entrezGeneId":5156},{"hugoGeneSymbol":"PDGFRB","entrezGeneId":5159},{"hugoGeneSymbol":"PDGFRL","entrezGeneId":5157},{"hugoGeneSymbol":"PDHA1","entrezGeneId":5160},{"hugoGeneSymbol":"PDHA1P1","entrezGeneId":100132534},{"hugoGeneSymbol":"PDHA2","entrezGeneId":5161},{"hugoGeneSymbol":"PDHB","entrezGeneId":5162},{"hugoGeneSymbol":"PDHX","entrezGeneId":8050},{"hugoGeneSymbol":"PDIA2","entrezGeneId":64714},{"hugoGeneSymbol":"PDIA3","entrezGeneId":2923},{"hugoGeneSymbol":"PDIA3P1","entrezGeneId":171423},{"hugoGeneSymbol":"PDIA3P2","entrezGeneId":106481687},{"hugoGeneSymbol":"PDIA4","entrezGeneId":9601},{"hugoGeneSymbol":"PDIA5","entrezGeneId":10954},{"hugoGeneSymbol":"PDIA6","entrezGeneId":10130},{"hugoGeneSymbol":"PDIK1L","entrezGeneId":149420},{"hugoGeneSymbol":"PDILT","entrezGeneId":204474},{"hugoGeneSymbol":"PDK1","entrezGeneId":5163},{"hugoGeneSymbol":"PDK1P1","entrezGeneId":100421194},{"hugoGeneSymbol":"PDK2","entrezGeneId":5164},{"hugoGeneSymbol":"PDK3","entrezGeneId":5165},{"hugoGeneSymbol":"PDK4","entrezGeneId":5166},{"hugoGeneSymbol":"PDLIM1","entrezGeneId":9124},{"hugoGeneSymbol":"PDLIM1P1","entrezGeneId":326616},{"hugoGeneSymbol":"PDLIM1P2","entrezGeneId":100419426},{"hugoGeneSymbol":"PDLIM1P3","entrezGeneId":100419427},{"hugoGeneSymbol":"PDLIM1P4","entrezGeneId":100419185},{"hugoGeneSymbol":"PDLIM2","entrezGeneId":64236},{"hugoGeneSymbol":"PDLIM3","entrezGeneId":27295},{"hugoGeneSymbol":"PDLIM4","entrezGeneId":8572},{"hugoGeneSymbol":"PDLIM5","entrezGeneId":10611},{"hugoGeneSymbol":"PDLIM7","entrezGeneId":9260},{"hugoGeneSymbol":"PDON2","entrezGeneId":406237},{"hugoGeneSymbol":"PDP1","entrezGeneId":54704},{"hugoGeneSymbol":"PDP2","entrezGeneId":57546},{"hugoGeneSymbol":"PDPK1","entrezGeneId":5170},{"hugoGeneSymbol":"PDPK2P","entrezGeneId":653650},{"hugoGeneSymbol":"PDPN","entrezGeneId":10630},{"hugoGeneSymbol":"PDPR","entrezGeneId":55066},{"hugoGeneSymbol":"PDR","entrezGeneId":5171},{"hugoGeneSymbol":"PDRG1","entrezGeneId":81572},{"hugoGeneSymbol":"PDS5A","entrezGeneId":23244},{"hugoGeneSymbol":"PDS5B","entrezGeneId":23047},{"hugoGeneSymbol":"PDSS1","entrezGeneId":23590},{"hugoGeneSymbol":"PDSS1P1","entrezGeneId":100129248},{"hugoGeneSymbol":"PDSS1P2","entrezGeneId":100996500},{"hugoGeneSymbol":"PDSS2","entrezGeneId":57107},{"hugoGeneSymbol":"PDX1","entrezGeneId":3651},{"hugoGeneSymbol":"PDXDC1","entrezGeneId":23042},{"hugoGeneSymbol":"PDXDC2P","entrezGeneId":109731405},{"hugoGeneSymbol":"PDXDC2P-NPIPB14P","entrezGeneId":283970},{"hugoGeneSymbol":"PDXK","entrezGeneId":8566},{"hugoGeneSymbol":"PDXP","entrezGeneId":57026},{"hugoGeneSymbol":"PDYN","entrezGeneId":5173},{"hugoGeneSymbol":"PDYN-AS1","entrezGeneId":727993},{"hugoGeneSymbol":"PDZD11","entrezGeneId":51248},{"hugoGeneSymbol":"PDZD2","entrezGeneId":23037},{"hugoGeneSymbol":"PDZD3","entrezGeneId":79849},{"hugoGeneSymbol":"PDZD4","entrezGeneId":57595},{"hugoGeneSymbol":"PDZD7","entrezGeneId":79955},{"hugoGeneSymbol":"PDZD8","entrezGeneId":118987},{"hugoGeneSymbol":"PDZD9","entrezGeneId":255762},{"hugoGeneSymbol":"PDZK1","entrezGeneId":5174},{"hugoGeneSymbol":"PDZK1IP1","entrezGeneId":10158},{"hugoGeneSymbol":"PDZK1P1","entrezGeneId":100034743},{"hugoGeneSymbol":"PDZPH1P","entrezGeneId":105379197},{"hugoGeneSymbol":"PDZRN3","entrezGeneId":23024},{"hugoGeneSymbol":"PDZRN3-AS1","entrezGeneId":101927249},{"hugoGeneSymbol":"PDZRN4","entrezGeneId":29951},{"hugoGeneSymbol":"PEA15","entrezGeneId":8682},{"hugoGeneSymbol":"PEAK1","entrezGeneId":79834},{"hugoGeneSymbol":"PEAK3","entrezGeneId":374872},{"hugoGeneSymbol":"PEAR1","entrezGeneId":375033},{"hugoGeneSymbol":"PEBP1","entrezGeneId":5037},{"hugoGeneSymbol":"PEBP1P1","entrezGeneId":326614},{"hugoGeneSymbol":"PEBP1P2","entrezGeneId":647307},{"hugoGeneSymbol":"PEBP1P3","entrezGeneId":100129570},{"hugoGeneSymbol":"PEBP4","entrezGeneId":157310},{"hugoGeneSymbol":"PECAM1","entrezGeneId":5175},{"hugoGeneSymbol":"PECR","entrezGeneId":55825},{"hugoGeneSymbol":"PEE1","entrezGeneId":5177},{"hugoGeneSymbol":"PEE2","entrezGeneId":780908},{"hugoGeneSymbol":"PEE3","entrezGeneId":780909},{"hugoGeneSymbol":"PEF1","entrezGeneId":553115},{"hugoGeneSymbol":"PEG10","entrezGeneId":23089},{"hugoGeneSymbol":"PEG13","entrezGeneId":359809},{"hugoGeneSymbol":"PEG3","entrezGeneId":5178},{"hugoGeneSymbol":"PEG3-AS1","entrezGeneId":100169890},{"hugoGeneSymbol":"PELI1","entrezGeneId":57162},{"hugoGeneSymbol":"PELI2","entrezGeneId":57161},{"hugoGeneSymbol":"PELI3","entrezGeneId":246330},{"hugoGeneSymbol":"PELO","entrezGeneId":53918},{"hugoGeneSymbol":"PELP1","entrezGeneId":27043},{"hugoGeneSymbol":"PEMT","entrezGeneId":10400},{"hugoGeneSymbol":"PENK","entrezGeneId":5179},{"hugoGeneSymbol":"PEPB","entrezGeneId":5182},{"hugoGeneSymbol":"PEPC","entrezGeneId":5183},{"hugoGeneSymbol":"PEPD","entrezGeneId":5184},{"hugoGeneSymbol":"PEPE","entrezGeneId":5185},{"hugoGeneSymbol":"PER1","entrezGeneId":5187},{"hugoGeneSymbol":"PER2","entrezGeneId":8864},{"hugoGeneSymbol":"PER3","entrezGeneId":8863},{"hugoGeneSymbol":"PER4","entrezGeneId":168741},{"hugoGeneSymbol":"PERM1","entrezGeneId":84808},{"hugoGeneSymbol":"PERP","entrezGeneId":64065},{"hugoGeneSymbol":"PES1","entrezGeneId":23481},{"hugoGeneSymbol":"PES1P1","entrezGeneId":345016},{"hugoGeneSymbol":"PES1P2","entrezGeneId":347193},{"hugoGeneSymbol":"PET100","entrezGeneId":100131801},{"hugoGeneSymbol":"PET117","entrezGeneId":100303755},{"hugoGeneSymbol":"PEX1","entrezGeneId":5189},{"hugoGeneSymbol":"PEX10","entrezGeneId":5192},{"hugoGeneSymbol":"PEX11A","entrezGeneId":8800},{"hugoGeneSymbol":"PEX11B","entrezGeneId":8799},{"hugoGeneSymbol":"PEX11G","entrezGeneId":92960},{"hugoGeneSymbol":"PEX12","entrezGeneId":5193},{"hugoGeneSymbol":"PEX12P1","entrezGeneId":121727},{"hugoGeneSymbol":"PEX13","entrezGeneId":5194},{"hugoGeneSymbol":"PEX14","entrezGeneId":5195},{"hugoGeneSymbol":"PEX16","entrezGeneId":9409},{"hugoGeneSymbol":"PEX19","entrezGeneId":5824},{"hugoGeneSymbol":"PEX2","entrezGeneId":5828},{"hugoGeneSymbol":"PEX26","entrezGeneId":55670},{"hugoGeneSymbol":"PEX3","entrezGeneId":8504},{"hugoGeneSymbol":"PEX5","entrezGeneId":5830},{"hugoGeneSymbol":"PEX5L","entrezGeneId":51555},{"hugoGeneSymbol":"PEX5L-AS1","entrezGeneId":100874040},{"hugoGeneSymbol":"PEX5L-AS2","entrezGeneId":101928790},{"hugoGeneSymbol":"PEX6","entrezGeneId":5190},{"hugoGeneSymbol":"PEX7","entrezGeneId":5191},{"hugoGeneSymbol":"PF4","entrezGeneId":5196},{"hugoGeneSymbol":"PF4V1","entrezGeneId":5197},{"hugoGeneSymbol":"PFAS","entrezGeneId":5198},{"hugoGeneSymbol":"PFBI","entrezGeneId":7910},{"hugoGeneSymbol":"PFDN1","entrezGeneId":5201},{"hugoGeneSymbol":"PFDN2","entrezGeneId":5202},{"hugoGeneSymbol":"PFDN4","entrezGeneId":5203},{"hugoGeneSymbol":"PFDN5","entrezGeneId":5204},{"hugoGeneSymbol":"PFDN6","entrezGeneId":10471},{"hugoGeneSymbol":"PFFE1","entrezGeneId":101910199},{"hugoGeneSymbol":"PFHB2","entrezGeneId":105463127},{"hugoGeneSymbol":"PFKFB1","entrezGeneId":5207},{"hugoGeneSymbol":"PFKFB2","entrezGeneId":5208},{"hugoGeneSymbol":"PFKFB3","entrezGeneId":5209},{"hugoGeneSymbol":"PFKFB4","entrezGeneId":5210},{"hugoGeneSymbol":"PFKL","entrezGeneId":5211},{"hugoGeneSymbol":"PFKM","entrezGeneId":5213},{"hugoGeneSymbol":"PFKP","entrezGeneId":5214},{"hugoGeneSymbol":"PFM3","entrezGeneId":619475},{"hugoGeneSymbol":"PFN1","entrezGeneId":5216},{"hugoGeneSymbol":"PFN1P1","entrezGeneId":730138},{"hugoGeneSymbol":"PFN1P10","entrezGeneId":767853},{"hugoGeneSymbol":"PFN1P11","entrezGeneId":100873784},{"hugoGeneSymbol":"PFN1P12","entrezGeneId":647569},{"hugoGeneSymbol":"PFN1P2","entrezGeneId":767846},{"hugoGeneSymbol":"PFN1P3","entrezGeneId":200025},{"hugoGeneSymbol":"PFN1P4","entrezGeneId":767851},{"hugoGeneSymbol":"PFN1P6","entrezGeneId":645126},{"hugoGeneSymbol":"PFN1P8","entrezGeneId":100873744},{"hugoGeneSymbol":"PFN1P9","entrezGeneId":767850},{"hugoGeneSymbol":"PFN2","entrezGeneId":5217},{"hugoGeneSymbol":"PFN3","entrezGeneId":345456},{"hugoGeneSymbol":"PFN4","entrezGeneId":375189},{"hugoGeneSymbol":"PGA3","entrezGeneId":643834},{"hugoGeneSymbol":"PGA4","entrezGeneId":643847},{"hugoGeneSymbol":"PGA5","entrezGeneId":5222},{"hugoGeneSymbol":"PGAM1","entrezGeneId":5223},{"hugoGeneSymbol":"PGAM1P1","entrezGeneId":100130514},{"hugoGeneSymbol":"PGAM1P10","entrezGeneId":100420633},{"hugoGeneSymbol":"PGAM1P11","entrezGeneId":100420660},{"hugoGeneSymbol":"PGAM1P12","entrezGeneId":390643},{"hugoGeneSymbol":"PGAM1P13","entrezGeneId":100129815},{"hugoGeneSymbol":"PGAM1P2","entrezGeneId":392310},{"hugoGeneSymbol":"PGAM1P3","entrezGeneId":100873887},{"hugoGeneSymbol":"PGAM1P4","entrezGeneId":391508},{"hugoGeneSymbol":"PGAM1P5","entrezGeneId":100132594},{"hugoGeneSymbol":"PGAM1P6","entrezGeneId":100420567},{"hugoGeneSymbol":"PGAM1P7","entrezGeneId":100420650},{"hugoGeneSymbol":"PGAM1P8","entrezGeneId":440043},{"hugoGeneSymbol":"PGAM1P9","entrezGeneId":100420681},{"hugoGeneSymbol":"PGAM2","entrezGeneId":5224},{"hugoGeneSymbol":"PGAM3P","entrezGeneId":170535},{"hugoGeneSymbol":"PGAM4","entrezGeneId":441531},{"hugoGeneSymbol":"PGAM4P1","entrezGeneId":100421178},{"hugoGeneSymbol":"PGAM4P2","entrezGeneId":100131611},{"hugoGeneSymbol":"PGAM5","entrezGeneId":192111},{"hugoGeneSymbol":"PGAM5P1","entrezGeneId":100421133},{"hugoGeneSymbol":"PGAP1","entrezGeneId":80055},{"hugoGeneSymbol":"PGAP2","entrezGeneId":27315},{"hugoGeneSymbol":"PGAP3","entrezGeneId":93210},{"hugoGeneSymbol":"PGBD1","entrezGeneId":84547},{"hugoGeneSymbol":"PGBD2","entrezGeneId":267002},{"hugoGeneSymbol":"PGBD3","entrezGeneId":267004},{"hugoGeneSymbol":"PGBD3P1","entrezGeneId":267005},{"hugoGeneSymbol":"PGBD3P2","entrezGeneId":267006},{"hugoGeneSymbol":"PGBD3P3","entrezGeneId":267007},{"hugoGeneSymbol":"PGBD3P4","entrezGeneId":267008},{"hugoGeneSymbol":"PGBD4","entrezGeneId":161779},{"hugoGeneSymbol":"PGBD4P1","entrezGeneId":107161154},{"hugoGeneSymbol":"PGBD4P2","entrezGeneId":100421228},{"hugoGeneSymbol":"PGBD4P3","entrezGeneId":100421136},{"hugoGeneSymbol":"PGBD4P4","entrezGeneId":100421146},{"hugoGeneSymbol":"PGBD4P5","entrezGeneId":100421123},{"hugoGeneSymbol":"PGBD4P6","entrezGeneId":100421180},{"hugoGeneSymbol":"PGBD4P7","entrezGeneId":100421182},{"hugoGeneSymbol":"PGBD4P8","entrezGeneId":100421185},{"hugoGeneSymbol":"PGBD5","entrezGeneId":79605},{"hugoGeneSymbol":"PGC","entrezGeneId":5225},{"hugoGeneSymbol":"PGCP1","entrezGeneId":441897},{"hugoGeneSymbol":"PGD","entrezGeneId":5226},{"hugoGeneSymbol":"PGDP1","entrezGeneId":342705},{"hugoGeneSymbol":"PGDP2","entrezGeneId":100129649},{"hugoGeneSymbol":"PGF","entrezGeneId":5228},{"hugoGeneSymbol":"PGGHG","entrezGeneId":80162},{"hugoGeneSymbol":"PGGT1B","entrezGeneId":5229},{"hugoGeneSymbol":"PGGT1BP1","entrezGeneId":653895},{"hugoGeneSymbol":"PGGT1BP2","entrezGeneId":100132402},{"hugoGeneSymbol":"PGK1","entrezGeneId":5230},{"hugoGeneSymbol":"PGK1P1","entrezGeneId":5231},{"hugoGeneSymbol":"PGK1P2","entrezGeneId":5233},{"hugoGeneSymbol":"PGK2","entrezGeneId":5232},{"hugoGeneSymbol":"PGLS","entrezGeneId":25796},{"hugoGeneSymbol":"PGLYRP1","entrezGeneId":8993},{"hugoGeneSymbol":"PGLYRP2","entrezGeneId":114770},{"hugoGeneSymbol":"PGLYRP3","entrezGeneId":114771},{"hugoGeneSymbol":"PGLYRP4","entrezGeneId":57115},{"hugoGeneSymbol":"PGM1","entrezGeneId":5236},{"hugoGeneSymbol":"PGM2","entrezGeneId":55276},{"hugoGeneSymbol":"PGM2L1","entrezGeneId":283209},{"hugoGeneSymbol":"PGM3","entrezGeneId":5238},{"hugoGeneSymbol":"PGM5","entrezGeneId":5239},{"hugoGeneSymbol":"PGM5-AS1","entrezGeneId":572558},{"hugoGeneSymbol":"PGM5P2","entrezGeneId":595135},{"hugoGeneSymbol":"PGM5P3","entrezGeneId":101929157},{"hugoGeneSymbol":"PGM5P3-AS1","entrezGeneId":101929127},{"hugoGeneSymbol":"PGM5P4","entrezGeneId":729468},{"hugoGeneSymbol":"PGM5P4-AS1","entrezGeneId":103344932},{"hugoGeneSymbol":"PGP","entrezGeneId":283871},{"hugoGeneSymbol":"PGPEP1","entrezGeneId":54858},{"hugoGeneSymbol":"PGPEP1L","entrezGeneId":145814},{"hugoGeneSymbol":"PGR","entrezGeneId":5241},{"hugoGeneSymbol":"PGR-AS1","entrezGeneId":101054525},{"hugoGeneSymbol":"PGRMC1","entrezGeneId":10857},{"hugoGeneSymbol":"PGRMC2","entrezGeneId":10424},{"hugoGeneSymbol":"PGS1","entrezGeneId":9489},{"hugoGeneSymbol":"PHA2A","entrezGeneId":7830},{"hugoGeneSymbol":"PHACTR1","entrezGeneId":221692},{"hugoGeneSymbol":"PHACTR2","entrezGeneId":9749},{"hugoGeneSymbol":"PHACTR2-AS1","entrezGeneId":285740},{"hugoGeneSymbol":"PHACTR2P1","entrezGeneId":100533676},{"hugoGeneSymbol":"PHACTR3","entrezGeneId":116154},{"hugoGeneSymbol":"PHACTR4","entrezGeneId":65979},{"hugoGeneSymbol":"PHAX","entrezGeneId":51808},{"hugoGeneSymbol":"PHB","entrezGeneId":5245},{"hugoGeneSymbol":"PHB2","entrezGeneId":11331},{"hugoGeneSymbol":"PHB2P1","entrezGeneId":645318},{"hugoGeneSymbol":"PHBP1","entrezGeneId":5246},{"hugoGeneSymbol":"PHBP10","entrezGeneId":100418815},{"hugoGeneSymbol":"PHBP11","entrezGeneId":644214},{"hugoGeneSymbol":"PHBP12","entrezGeneId":100418820},{"hugoGeneSymbol":"PHBP13","entrezGeneId":100418843},{"hugoGeneSymbol":"PHBP14","entrezGeneId":100873751},{"hugoGeneSymbol":"PHBP15","entrezGeneId":100873752},{"hugoGeneSymbol":"PHBP16","entrezGeneId":100128102},{"hugoGeneSymbol":"PHBP17","entrezGeneId":106480420},{"hugoGeneSymbol":"PHBP18","entrezGeneId":390311},{"hugoGeneSymbol":"PHBP19","entrezGeneId":494150},{"hugoGeneSymbol":"PHBP2","entrezGeneId":100418837},{"hugoGeneSymbol":"PHBP20","entrezGeneId":100130579},{"hugoGeneSymbol":"PHBP21","entrezGeneId":390730},{"hugoGeneSymbol":"PHBP3","entrezGeneId":391044},{"hugoGeneSymbol":"PHBP4","entrezGeneId":100418774},{"hugoGeneSymbol":"PHBP5","entrezGeneId":106478939},{"hugoGeneSymbol":"PHBP6","entrezGeneId":106478940},{"hugoGeneSymbol":"PHBP7","entrezGeneId":548599},{"hugoGeneSymbol":"PHBP8","entrezGeneId":100418804},{"hugoGeneSymbol":"PHBP9","entrezGeneId":100289414},{"hugoGeneSymbol":"PHC1","entrezGeneId":1911},{"hugoGeneSymbol":"PHC1P1","entrezGeneId":653441},{"hugoGeneSymbol":"PHC2","entrezGeneId":1912},{"hugoGeneSymbol":"PHC3","entrezGeneId":80012},{"hugoGeneSymbol":"PHETA1","entrezGeneId":144717},{"hugoGeneSymbol":"PHETA2","entrezGeneId":150368},{"hugoGeneSymbol":"PHEX","entrezGeneId":5251},{"hugoGeneSymbol":"PHEX-AS1","entrezGeneId":100873942},{"hugoGeneSymbol":"PHF1","entrezGeneId":5252},{"hugoGeneSymbol":"PHF10","entrezGeneId":55274},{"hugoGeneSymbol":"PHF10P1","entrezGeneId":158905},{"hugoGeneSymbol":"PHF11","entrezGeneId":51131},{"hugoGeneSymbol":"PHF12","entrezGeneId":57649},{"hugoGeneSymbol":"PHF13","entrezGeneId":148479},{"hugoGeneSymbol":"PHF14","entrezGeneId":9678},{"hugoGeneSymbol":"PHF19","entrezGeneId":26147},{"hugoGeneSymbol":"PHF2","entrezGeneId":5253},{"hugoGeneSymbol":"PHF20","entrezGeneId":51230},{"hugoGeneSymbol":"PHF20L1","entrezGeneId":51105},{"hugoGeneSymbol":"PHF21A","entrezGeneId":51317},{"hugoGeneSymbol":"PHF21B","entrezGeneId":112885},{"hugoGeneSymbol":"PHF23","entrezGeneId":79142},{"hugoGeneSymbol":"PHF24","entrezGeneId":23349},{"hugoGeneSymbol":"PHF2P1","entrezGeneId":266695},{"hugoGeneSymbol":"PHF2P2","entrezGeneId":100873793},{"hugoGeneSymbol":"PHF3","entrezGeneId":23469},{"hugoGeneSymbol":"PHF5A","entrezGeneId":84844},{"hugoGeneSymbol":"PHF5CP","entrezGeneId":450232},{"hugoGeneSymbol":"PHF5DP","entrezGeneId":450238},{"hugoGeneSymbol":"PHF5EP","entrezGeneId":450239},{"hugoGeneSymbol":"PHF5FP","entrezGeneId":450246},{"hugoGeneSymbol":"PHF5GP","entrezGeneId":450234},{"hugoGeneSymbol":"PHF5HP","entrezGeneId":450250},{"hugoGeneSymbol":"PHF6","entrezGeneId":84295},{"hugoGeneSymbol":"PHF7","entrezGeneId":51533},{"hugoGeneSymbol":"PHF8","entrezGeneId":23133},{"hugoGeneSymbol":"PHGDH","entrezGeneId":26227},{"hugoGeneSymbol":"PHGR1","entrezGeneId":644844},{"hugoGeneSymbol":"PHIP","entrezGeneId":55023},{"hugoGeneSymbol":"PHKA1","entrezGeneId":5255},{"hugoGeneSymbol":"PHKA1-AS1","entrezGeneId":101928259},{"hugoGeneSymbol":"PHKA1P1","entrezGeneId":646780},{"hugoGeneSymbol":"PHKA2","entrezGeneId":5256},{"hugoGeneSymbol":"PHKA2-AS1","entrezGeneId":100132163},{"hugoGeneSymbol":"PHKB","entrezGeneId":5257},{"hugoGeneSymbol":"PHKBP1","entrezGeneId":5258},{"hugoGeneSymbol":"PHKBP2","entrezGeneId":5259},{"hugoGeneSymbol":"PHKG1","entrezGeneId":5260},{"hugoGeneSymbol":"PHKG1P1","entrezGeneId":643941},{"hugoGeneSymbol":"PHKG1P2","entrezGeneId":644032},{"hugoGeneSymbol":"PHKG1P3","entrezGeneId":5262},{"hugoGeneSymbol":"PHKG1P4","entrezGeneId":100151641},{"hugoGeneSymbol":"PHKG2","entrezGeneId":5261},{"hugoGeneSymbol":"PHLDA1","entrezGeneId":22822},{"hugoGeneSymbol":"PHLDA2","entrezGeneId":7262},{"hugoGeneSymbol":"PHLDA3","entrezGeneId":23612},{"hugoGeneSymbol":"PHLDB1","entrezGeneId":23187},{"hugoGeneSymbol":"PHLDB2","entrezGeneId":90102},{"hugoGeneSymbol":"PHLDB3","entrezGeneId":653583},{"hugoGeneSymbol":"PHLPP1","entrezGeneId":23239},{"hugoGeneSymbol":"PHLPP2","entrezGeneId":23035},{"hugoGeneSymbol":"PHOBS","entrezGeneId":404684},{"hugoGeneSymbol":"PHOSPHO1","entrezGeneId":162466},{"hugoGeneSymbol":"PHOSPHO2","entrezGeneId":493911},{"hugoGeneSymbol":"PHOSPHO2-KLHL23","entrezGeneId":100526832},{"hugoGeneSymbol":"PHOX2A","entrezGeneId":401},{"hugoGeneSymbol":"PHOX2B","entrezGeneId":8929},{"hugoGeneSymbol":"PHPT1","entrezGeneId":29085},{"hugoGeneSymbol":"PHRF1","entrezGeneId":57661},{"hugoGeneSymbol":"PHTF1","entrezGeneId":10745},{"hugoGeneSymbol":"PHTF2","entrezGeneId":57157},{"hugoGeneSymbol":"PHYH","entrezGeneId":5264},{"hugoGeneSymbol":"PHYHD1","entrezGeneId":254295},{"hugoGeneSymbol":"PHYHIP","entrezGeneId":9796},{"hugoGeneSymbol":"PHYHIPL","entrezGeneId":84457},{"hugoGeneSymbol":"PHYKPL","entrezGeneId":85007},{"hugoGeneSymbol":"PI15","entrezGeneId":51050},{"hugoGeneSymbol":"PI16","entrezGeneId":221476},{"hugoGeneSymbol":"PI3","entrezGeneId":5266},{"hugoGeneSymbol":"PI4K2A","entrezGeneId":55361},{"hugoGeneSymbol":"PI4K2B","entrezGeneId":55300},{"hugoGeneSymbol":"PI4KA","entrezGeneId":5297},{"hugoGeneSymbol":"PI4KAP1","entrezGeneId":728233},{"hugoGeneSymbol":"PI4KAP2","entrezGeneId":375133},{"hugoGeneSymbol":"PI4KB","entrezGeneId":5298},{"hugoGeneSymbol":"PIANP","entrezGeneId":196500},{"hugoGeneSymbol":"PIAS1","entrezGeneId":8554},{"hugoGeneSymbol":"PIAS2","entrezGeneId":9063},{"hugoGeneSymbol":"PIAS3","entrezGeneId":10401},{"hugoGeneSymbol":"PIAS4","entrezGeneId":51588},{"hugoGeneSymbol":"PIBF1","entrezGeneId":10464},{"hugoGeneSymbol":"PICALM","entrezGeneId":8301},{"hugoGeneSymbol":"PICART1","entrezGeneId":284080},{"hugoGeneSymbol":"PICK1","entrezGeneId":9463},{"hugoGeneSymbol":"PICSAR","entrezGeneId":378825},{"hugoGeneSymbol":"PID1","entrezGeneId":55022},{"hugoGeneSymbol":"PIDD1","entrezGeneId":55367},{"hugoGeneSymbol":"PIEZO1","entrezGeneId":9780},{"hugoGeneSymbol":"PIEZO1P1","entrezGeneId":128615},{"hugoGeneSymbol":"PIEZO1P2","entrezGeneId":100874493},{"hugoGeneSymbol":"PIEZO2","entrezGeneId":63895},{"hugoGeneSymbol":"PIF1","entrezGeneId":80119},{"hugoGeneSymbol":"PIFO","entrezGeneId":128344},{"hugoGeneSymbol":"PIGA","entrezGeneId":5277},{"hugoGeneSymbol":"PIGAP1","entrezGeneId":5278},{"hugoGeneSymbol":"PIGB","entrezGeneId":9488},{"hugoGeneSymbol":"PIGBOS1","entrezGeneId":101928527},{"hugoGeneSymbol":"PIGC","entrezGeneId":5279},{"hugoGeneSymbol":"PIGCP1","entrezGeneId":5280},{"hugoGeneSymbol":"PIGCP2","entrezGeneId":100128307},{"hugoGeneSymbol":"PIGF","entrezGeneId":5281},{"hugoGeneSymbol":"PIGFP1","entrezGeneId":5282},{"hugoGeneSymbol":"PIGFP2","entrezGeneId":100422349},{"hugoGeneSymbol":"PIGFP3","entrezGeneId":100129049},{"hugoGeneSymbol":"PIGG","entrezGeneId":54872},{"hugoGeneSymbol":"PIGH","entrezGeneId":5283},{"hugoGeneSymbol":"PIGHP1","entrezGeneId":644761},{"hugoGeneSymbol":"PIGK","entrezGeneId":10026},{"hugoGeneSymbol":"PIGL","entrezGeneId":9487},{"hugoGeneSymbol":"PIGM","entrezGeneId":93183},{"hugoGeneSymbol":"PIGN","entrezGeneId":23556},{"hugoGeneSymbol":"PIGO","entrezGeneId":84720},{"hugoGeneSymbol":"PIGP","entrezGeneId":51227},{"hugoGeneSymbol":"PIGPP1","entrezGeneId":112214169},{"hugoGeneSymbol":"PIGPP2","entrezGeneId":106479056},{"hugoGeneSymbol":"PIGPP3","entrezGeneId":100128033},{"hugoGeneSymbol":"PIGPP4","entrezGeneId":106480811},{"hugoGeneSymbol":"PIGQ","entrezGeneId":9091},{"hugoGeneSymbol":"PIGQP1","entrezGeneId":106480812},{"hugoGeneSymbol":"PIGR","entrezGeneId":5284},{"hugoGeneSymbol":"PIGS","entrezGeneId":94005},{"hugoGeneSymbol":"PIGT","entrezGeneId":51604},{"hugoGeneSymbol":"PIGU","entrezGeneId":128869},{"hugoGeneSymbol":"PIGUP1","entrezGeneId":100422342},{"hugoGeneSymbol":"PIGV","entrezGeneId":55650},{"hugoGeneSymbol":"PIGW","entrezGeneId":284098},{"hugoGeneSymbol":"PIGX","entrezGeneId":54965},{"hugoGeneSymbol":"PIGY","entrezGeneId":84992},{"hugoGeneSymbol":"PIGZ","entrezGeneId":80235},{"hugoGeneSymbol":"PIH1D1","entrezGeneId":55011},{"hugoGeneSymbol":"PIH1D2","entrezGeneId":120379},{"hugoGeneSymbol":"PIH1D3","entrezGeneId":139212},{"hugoGeneSymbol":"PIK3AP1","entrezGeneId":118788},{"hugoGeneSymbol":"PIK3C2A","entrezGeneId":5286},{"hugoGeneSymbol":"PIK3C2B","entrezGeneId":5287},{"hugoGeneSymbol":"PIK3C2G","entrezGeneId":5288},{"hugoGeneSymbol":"PIK3C3","entrezGeneId":5289},{"hugoGeneSymbol":"PIK3CA","entrezGeneId":5290},{"hugoGeneSymbol":"PIK3CB","entrezGeneId":5291},{"hugoGeneSymbol":"PIK3CD","entrezGeneId":5293},{"hugoGeneSymbol":"PIK3CD-AS1","entrezGeneId":644997},{"hugoGeneSymbol":"PIK3CD-AS2","entrezGeneId":101929074},{"hugoGeneSymbol":"PIK3CDP1","entrezGeneId":391349},{"hugoGeneSymbol":"PIK3CG","entrezGeneId":5294},{"hugoGeneSymbol":"PIK3IP1","entrezGeneId":113791},{"hugoGeneSymbol":"PIK3IP1-AS1","entrezGeneId":101929760},{"hugoGeneSymbol":"PIK3R1","entrezGeneId":5295},{"hugoGeneSymbol":"PIK3R2","entrezGeneId":5296},{"hugoGeneSymbol":"PIK3R3","entrezGeneId":8503},{"hugoGeneSymbol":"PIK3R4","entrezGeneId":30849},{"hugoGeneSymbol":"PIK3R5","entrezGeneId":23533},{"hugoGeneSymbol":"PIK3R6","entrezGeneId":146850},{"hugoGeneSymbol":"PIKFYVE","entrezGeneId":200576},{"hugoGeneSymbol":"PILRA","entrezGeneId":29992},{"hugoGeneSymbol":"PILRB","entrezGeneId":29990},{"hugoGeneSymbol":"PIM1","entrezGeneId":5292},{"hugoGeneSymbol":"PIM2","entrezGeneId":11040},{"hugoGeneSymbol":"PIM3","entrezGeneId":415116},{"hugoGeneSymbol":"PIMREG","entrezGeneId":54478},{"hugoGeneSymbol":"PIN1","entrezGeneId":5300},{"hugoGeneSymbol":"PIN1P1","entrezGeneId":5301},{"hugoGeneSymbol":"PIN4","entrezGeneId":5303},{"hugoGeneSymbol":"PIN4P1","entrezGeneId":728758},{"hugoGeneSymbol":"PINCR","entrezGeneId":101927501},{"hugoGeneSymbol":"PINK1","entrezGeneId":65018},{"hugoGeneSymbol":"PINK1-AS","entrezGeneId":100861548},{"hugoGeneSymbol":"PINLYP","entrezGeneId":390940},{"hugoGeneSymbol":"PINX1","entrezGeneId":54984},{"hugoGeneSymbol":"PIP","entrezGeneId":5304},{"hugoGeneSymbol":"PIP4K2A","entrezGeneId":5305},{"hugoGeneSymbol":"PIP4K2B","entrezGeneId":8396},{"hugoGeneSymbol":"PIP4K2C","entrezGeneId":79837},{"hugoGeneSymbol":"PIP4P1","entrezGeneId":90809},{"hugoGeneSymbol":"PIP4P2","entrezGeneId":55529},{"hugoGeneSymbol":"PIP5K1A","entrezGeneId":8394},{"hugoGeneSymbol":"PIP5K1B","entrezGeneId":8395},{"hugoGeneSymbol":"PIP5K1C","entrezGeneId":23396},{"hugoGeneSymbol":"PIP5K1P1","entrezGeneId":206426},{"hugoGeneSymbol":"PIP5K1P2","entrezGeneId":100129824},{"hugoGeneSymbol":"PIP5KL1","entrezGeneId":138429},{"hugoGeneSymbol":"PIPOX","entrezGeneId":51268},{"hugoGeneSymbol":"PIPSL","entrezGeneId":266971},{"hugoGeneSymbol":"PIR","entrezGeneId":8544},{"hugoGeneSymbol":"PIR-FIGF","entrezGeneId":100532742},{"hugoGeneSymbol":"PIRC1","entrezGeneId":100313844},{"hugoGeneSymbol":"PIRC10","entrezGeneId":100313783},{"hugoGeneSymbol":"PIRC100","entrezGeneId":100313912},{"hugoGeneSymbol":"PIRC101","entrezGeneId":100313888},{"hugoGeneSymbol":"PIRC102","entrezGeneId":100313876},{"hugoGeneSymbol":"PIRC103","entrezGeneId":100313901},{"hugoGeneSymbol":"PIRC104","entrezGeneId":100313801},{"hugoGeneSymbol":"PIRC105","entrezGeneId":100313936},{"hugoGeneSymbol":"PIRC106","entrezGeneId":100313877},{"hugoGeneSymbol":"PIRC107","entrezGeneId":100313802},{"hugoGeneSymbol":"PIRC108","entrezGeneId":100313878},{"hugoGeneSymbol":"PIRC109","entrezGeneId":100313913},{"hugoGeneSymbol":"PIRC11","entrezGeneId":100313897},{"hugoGeneSymbol":"PIRC110","entrezGeneId":100313879},{"hugoGeneSymbol":"PIRC111","entrezGeneId":100313937},{"hugoGeneSymbol":"PIRC112","entrezGeneId":100313803},{"hugoGeneSymbol":"PIRC113","entrezGeneId":100313880},{"hugoGeneSymbol":"PIRC114","entrezGeneId":100313881},{"hugoGeneSymbol":"PIRC12","entrezGeneId":100313808},{"hugoGeneSymbol":"PIRC13","entrezGeneId":100313925},{"hugoGeneSymbol":"PIRC14","entrezGeneId":100313784},{"hugoGeneSymbol":"PIRC15","entrezGeneId":100313848},{"hugoGeneSymbol":"PIRC16","entrezGeneId":100313849},{"hugoGeneSymbol":"PIRC17","entrezGeneId":100313809},{"hugoGeneSymbol":"PIRC18","entrezGeneId":100313906},{"hugoGeneSymbol":"PIRC19","entrezGeneId":100313926},{"hugoGeneSymbol":"PIRC2","entrezGeneId":100313924},{"hugoGeneSymbol":"PIRC20","entrezGeneId":100313785},{"hugoGeneSymbol":"PIRC21","entrezGeneId":100313916},{"hugoGeneSymbol":"PIRC22","entrezGeneId":100313850},{"hugoGeneSymbol":"PIRC23","entrezGeneId":100313786},{"hugoGeneSymbol":"PIRC24","entrezGeneId":100313810},{"hugoGeneSymbol":"PIRC25","entrezGeneId":100313851},{"hugoGeneSymbol":"PIRC26","entrezGeneId":100313852},{"hugoGeneSymbol":"PIRC27","entrezGeneId":100313907},{"hugoGeneSymbol":"PIRC28","entrezGeneId":100313893},{"hugoGeneSymbol":"PIRC29","entrezGeneId":100313927},{"hugoGeneSymbol":"PIRC3","entrezGeneId":100313905},{"hugoGeneSymbol":"PIRC30","entrezGeneId":100313853},{"hugoGeneSymbol":"PIRC31","entrezGeneId":100313787},{"hugoGeneSymbol":"PIRC32","entrezGeneId":100313811},{"hugoGeneSymbol":"PIRC33","entrezGeneId":100313854},{"hugoGeneSymbol":"PIRC34","entrezGeneId":100313890},{"hugoGeneSymbol":"PIRC35","entrezGeneId":100313855},{"hugoGeneSymbol":"PIRC36","entrezGeneId":100313928},{"hugoGeneSymbol":"PIRC37","entrezGeneId":100313812},{"hugoGeneSymbol":"PIRC38","entrezGeneId":100313788},{"hugoGeneSymbol":"PIRC39","entrezGeneId":100313856},{"hugoGeneSymbol":"PIRC4","entrezGeneId":100313807},{"hugoGeneSymbol":"PIRC40","entrezGeneId":100313898},{"hugoGeneSymbol":"PIRC41","entrezGeneId":100313917},{"hugoGeneSymbol":"PIRC42","entrezGeneId":100313789},{"hugoGeneSymbol":"PIRC43","entrezGeneId":100313857},{"hugoGeneSymbol":"PIRC44","entrezGeneId":100313908},{"hugoGeneSymbol":"PIRC45","entrezGeneId":100313813},{"hugoGeneSymbol":"PIRC46","entrezGeneId":100313858},{"hugoGeneSymbol":"PIRC47","entrezGeneId":100313859},{"hugoGeneSymbol":"PIRC48","entrezGeneId":100313790},{"hugoGeneSymbol":"PIRC49","entrezGeneId":100313929},{"hugoGeneSymbol":"PIRC5","entrezGeneId":100313845},{"hugoGeneSymbol":"PIRC50","entrezGeneId":100313814},{"hugoGeneSymbol":"PIRC51","entrezGeneId":100313860},{"hugoGeneSymbol":"PIRC52","entrezGeneId":100313791},{"hugoGeneSymbol":"PIRC53","entrezGeneId":100313861},{"hugoGeneSymbol":"PIRC54","entrezGeneId":100313815},{"hugoGeneSymbol":"PIRC55","entrezGeneId":100313792},{"hugoGeneSymbol":"PIRC56","entrezGeneId":100313862},{"hugoGeneSymbol":"PIRC57","entrezGeneId":100313930},{"hugoGeneSymbol":"PIRC58","entrezGeneId":100313918},{"hugoGeneSymbol":"PIRC59","entrezGeneId":100313909},{"hugoGeneSymbol":"PIRC6","entrezGeneId":100313846},{"hugoGeneSymbol":"PIRC60","entrezGeneId":100313863},{"hugoGeneSymbol":"PIRC61","entrezGeneId":100313899},{"hugoGeneSymbol":"PIRC62","entrezGeneId":100313816},{"hugoGeneSymbol":"PIRC63","entrezGeneId":100313793},{"hugoGeneSymbol":"PIRC64","entrezGeneId":100313864},{"hugoGeneSymbol":"PIRC65","entrezGeneId":100313794},{"hugoGeneSymbol":"PIRC66","entrezGeneId":100313865},{"hugoGeneSymbol":"PIRC67","entrezGeneId":100313817},{"hugoGeneSymbol":"PIRC68","entrezGeneId":100313931},{"hugoGeneSymbol":"PIRC69","entrezGeneId":100313910},{"hugoGeneSymbol":"PIRC7","entrezGeneId":100313782},{"hugoGeneSymbol":"PIRC70","entrezGeneId":100313866},{"hugoGeneSymbol":"PIRC71","entrezGeneId":100313818},{"hugoGeneSymbol":"PIRC72","entrezGeneId":100313867},{"hugoGeneSymbol":"PIRC73","entrezGeneId":100313795},{"hugoGeneSymbol":"PIRC74","entrezGeneId":100313932},{"hugoGeneSymbol":"PIRC75","entrezGeneId":100313919},{"hugoGeneSymbol":"PIRC76","entrezGeneId":100313796},{"hugoGeneSymbol":"PIRC77","entrezGeneId":100313868},{"hugoGeneSymbol":"PIRC78","entrezGeneId":100313869},{"hugoGeneSymbol":"PIRC79","entrezGeneId":100313797},{"hugoGeneSymbol":"PIRC8","entrezGeneId":100313915},{"hugoGeneSymbol":"PIRC80","entrezGeneId":100313819},{"hugoGeneSymbol":"PIRC81","entrezGeneId":100313870},{"hugoGeneSymbol":"PIRC82","entrezGeneId":100313933},{"hugoGeneSymbol":"PIRC83","entrezGeneId":100313891},{"hugoGeneSymbol":"PIRC84","entrezGeneId":100313820},{"hugoGeneSymbol":"PIRC85","entrezGeneId":100313871},{"hugoGeneSymbol":"PIRC86","entrezGeneId":100313911},{"hugoGeneSymbol":"PIRC87","entrezGeneId":100313872},{"hugoGeneSymbol":"PIRC88","entrezGeneId":100313894},{"hugoGeneSymbol":"PIRC89","entrezGeneId":100313873},{"hugoGeneSymbol":"PIRC9","entrezGeneId":100313847},{"hugoGeneSymbol":"PIRC90","entrezGeneId":100313798},{"hugoGeneSymbol":"PIRC91","entrezGeneId":100313900},{"hugoGeneSymbol":"PIRC92","entrezGeneId":100313920},{"hugoGeneSymbol":"PIRC93","entrezGeneId":100313934},{"hugoGeneSymbol":"PIRC94","entrezGeneId":100313799},{"hugoGeneSymbol":"PIRC95","entrezGeneId":100313935},{"hugoGeneSymbol":"PIRC96","entrezGeneId":100313800},{"hugoGeneSymbol":"PIRC97","entrezGeneId":100313821},{"hugoGeneSymbol":"PIRC98","entrezGeneId":100313874},{"hugoGeneSymbol":"PIRC99","entrezGeneId":100313875},{"hugoGeneSymbol":"PIRT","entrezGeneId":644139},{"hugoGeneSymbol":"PISD","entrezGeneId":23761},{"hugoGeneSymbol":"PISRT1","entrezGeneId":140464},{"hugoGeneSymbol":"PITHD1","entrezGeneId":57095},{"hugoGeneSymbol":"PITPNA","entrezGeneId":5306},{"hugoGeneSymbol":"PITPNA-AS1","entrezGeneId":100306951},{"hugoGeneSymbol":"PITPNB","entrezGeneId":23760},{"hugoGeneSymbol":"PITPNC1","entrezGeneId":26207},{"hugoGeneSymbol":"PITPNM1","entrezGeneId":9600},{"hugoGeneSymbol":"PITPNM2","entrezGeneId":57605},{"hugoGeneSymbol":"PITPNM2-AS1","entrezGeneId":100507091},{"hugoGeneSymbol":"PITPNM3","entrezGeneId":83394},{"hugoGeneSymbol":"PITRM1","entrezGeneId":10531},{"hugoGeneSymbol":"PITRM1-AS1","entrezGeneId":100507034},{"hugoGeneSymbol":"PITX1","entrezGeneId":5307},{"hugoGeneSymbol":"PITX2","entrezGeneId":5308},{"hugoGeneSymbol":"PITX3","entrezGeneId":5309},{"hugoGeneSymbol":"PIWIL1","entrezGeneId":9271},{"hugoGeneSymbol":"PIWIL2","entrezGeneId":55124},{"hugoGeneSymbol":"PIWIL3","entrezGeneId":440822},{"hugoGeneSymbol":"PIWIL4","entrezGeneId":143689},{"hugoGeneSymbol":"PJA1","entrezGeneId":64219},{"hugoGeneSymbol":"PJA2","entrezGeneId":9867},{"hugoGeneSymbol":"PJVK","entrezGeneId":494513},{"hugoGeneSymbol":"PKD1","entrezGeneId":5310},{"hugoGeneSymbol":"PKD1L1","entrezGeneId":168507},{"hugoGeneSymbol":"PKD1L2","entrezGeneId":114780},{"hugoGeneSymbol":"PKD1L3","entrezGeneId":342372},{"hugoGeneSymbol":"PKD1P1","entrezGeneId":339044},{"hugoGeneSymbol":"PKD1P2","entrezGeneId":283955},{"hugoGeneSymbol":"PKD1P3","entrezGeneId":339039},{"hugoGeneSymbol":"PKD1P3-NPIPA1","entrezGeneId":109951030},{"hugoGeneSymbol":"PKD1P4","entrezGeneId":353512},{"hugoGeneSymbol":"PKD1P4-NPIPA8","entrezGeneId":110006323},{"hugoGeneSymbol":"PKD1P5","entrezGeneId":348156},{"hugoGeneSymbol":"PKD1P5-LOC105376752","entrezGeneId":110006322},{"hugoGeneSymbol":"PKD1P6","entrezGeneId":353511},{"hugoGeneSymbol":"PKD1P6-NPIPP1","entrezGeneId":105369154},{"hugoGeneSymbol":"PKD2","entrezGeneId":5311},{"hugoGeneSymbol":"PKD2L1","entrezGeneId":9033},{"hugoGeneSymbol":"PKD2L2","entrezGeneId":27039},{"hugoGeneSymbol":"PKD3","entrezGeneId":5312},{"hugoGeneSymbol":"PKDCC","entrezGeneId":91461},{"hugoGeneSymbol":"PKDREJ","entrezGeneId":10343},{"hugoGeneSymbol":"PKDTS","entrezGeneId":8132},{"hugoGeneSymbol":"PKHD1","entrezGeneId":5314},{"hugoGeneSymbol":"PKHD1L1","entrezGeneId":93035},{"hugoGeneSymbol":"PKIA","entrezGeneId":5569},{"hugoGeneSymbol":"PKIA-AS1","entrezGeneId":101927003},{"hugoGeneSymbol":"PKIB","entrezGeneId":5570},{"hugoGeneSymbol":"PKIG","entrezGeneId":11142},{"hugoGeneSymbol":"PKLR","entrezGeneId":5313},{"hugoGeneSymbol":"PKM","entrezGeneId":5315},{"hugoGeneSymbol":"PKMP1","entrezGeneId":643586},{"hugoGeneSymbol":"PKMP2","entrezGeneId":402408},{"hugoGeneSymbol":"PKMP3","entrezGeneId":100419758},{"hugoGeneSymbol":"PKMP4","entrezGeneId":106480443},{"hugoGeneSymbol":"PKMP5","entrezGeneId":442156},{"hugoGeneSymbol":"PKMYT1","entrezGeneId":9088},{"hugoGeneSymbol":"PKN1","entrezGeneId":5585},{"hugoGeneSymbol":"PKN2","entrezGeneId":5586},{"hugoGeneSymbol":"PKN2-AS1","entrezGeneId":101927891},{"hugoGeneSymbol":"PKN3","entrezGeneId":29941},{"hugoGeneSymbol":"PKNOX1","entrezGeneId":5316},{"hugoGeneSymbol":"PKNOX2","entrezGeneId":63876},{"hugoGeneSymbol":"PKNOX2-AS1","entrezGeneId":103695364},{"hugoGeneSymbol":"PKP1","entrezGeneId":5317},{"hugoGeneSymbol":"PKP2","entrezGeneId":5318},{"hugoGeneSymbol":"PKP2P1","entrezGeneId":82500},{"hugoGeneSymbol":"PKP3","entrezGeneId":11187},{"hugoGeneSymbol":"PKP4","entrezGeneId":8502},{"hugoGeneSymbol":"PKP4-AS1","entrezGeneId":100129029},{"hugoGeneSymbol":"PKP4P1","entrezGeneId":402116},{"hugoGeneSymbol":"PLA1A","entrezGeneId":51365},{"hugoGeneSymbol":"PLA2G10","entrezGeneId":8399},{"hugoGeneSymbol":"PLA2G12A","entrezGeneId":81579},{"hugoGeneSymbol":"PLA2G12AP1","entrezGeneId":100420258},{"hugoGeneSymbol":"PLA2G12AP2","entrezGeneId":100420281},{"hugoGeneSymbol":"PLA2G12B","entrezGeneId":84647},{"hugoGeneSymbol":"PLA2G15","entrezGeneId":23659},{"hugoGeneSymbol":"PLA2G16","entrezGeneId":11145},{"hugoGeneSymbol":"PLA2G1B","entrezGeneId":5319},{"hugoGeneSymbol":"PLA2G2A","entrezGeneId":5320},{"hugoGeneSymbol":"PLA2G2C","entrezGeneId":391013},{"hugoGeneSymbol":"PLA2G2D","entrezGeneId":26279},{"hugoGeneSymbol":"PLA2G2E","entrezGeneId":30814},{"hugoGeneSymbol":"PLA2G2F","entrezGeneId":64600},{"hugoGeneSymbol":"PLA2G3","entrezGeneId":50487},{"hugoGeneSymbol":"PLA2G4A","entrezGeneId":5321},{"hugoGeneSymbol":"PLA2G4B","entrezGeneId":100137049},{"hugoGeneSymbol":"PLA2G4C","entrezGeneId":8605},{"hugoGeneSymbol":"PLA2G4C-AS1","entrezGeneId":106144526},{"hugoGeneSymbol":"PLA2G4D","entrezGeneId":283748},{"hugoGeneSymbol":"PLA2G4E","entrezGeneId":123745},{"hugoGeneSymbol":"PLA2G4E-AS1","entrezGeneId":101928388},{"hugoGeneSymbol":"PLA2G4F","entrezGeneId":255189},{"hugoGeneSymbol":"PLA2G5","entrezGeneId":5322},{"hugoGeneSymbol":"PLA2G6","entrezGeneId":8398},{"hugoGeneSymbol":"PLA2G7","entrezGeneId":7941},{"hugoGeneSymbol":"PLA2R1","entrezGeneId":22925},{"hugoGeneSymbol":"PLAA","entrezGeneId":9373},{"hugoGeneSymbol":"PLAC1","entrezGeneId":10761},{"hugoGeneSymbol":"PLAC4","entrezGeneId":191585},{"hugoGeneSymbol":"PLAC8","entrezGeneId":51316},{"hugoGeneSymbol":"PLAC8L1","entrezGeneId":153770},{"hugoGeneSymbol":"PLAC9","entrezGeneId":219348},{"hugoGeneSymbol":"PLAC9P1","entrezGeneId":389033},{"hugoGeneSymbol":"PLAG1","entrezGeneId":5324},{"hugoGeneSymbol":"PLAGL1","entrezGeneId":5325},{"hugoGeneSymbol":"PLAGL2","entrezGeneId":5326},{"hugoGeneSymbol":"PLAT","entrezGeneId":5327},{"hugoGeneSymbol":"PLAU","entrezGeneId":5328},{"hugoGeneSymbol":"PLAUR","entrezGeneId":5329},{"hugoGeneSymbol":"PLB1","entrezGeneId":151056},{"hugoGeneSymbol":"PLBD1","entrezGeneId":79887},{"hugoGeneSymbol":"PLBD1-AS1","entrezGeneId":101928290},{"hugoGeneSymbol":"PLBD2","entrezGeneId":196463},{"hugoGeneSymbol":"PLCB1","entrezGeneId":23236},{"hugoGeneSymbol":"PLCB1-IT1","entrezGeneId":100874337},{"hugoGeneSymbol":"PLCB2","entrezGeneId":5330},{"hugoGeneSymbol":"PLCB2-AS1","entrezGeneId":100874186},{"hugoGeneSymbol":"PLCB3","entrezGeneId":5331},{"hugoGeneSymbol":"PLCB4","entrezGeneId":5332},{"hugoGeneSymbol":"PLCD1","entrezGeneId":5333},{"hugoGeneSymbol":"PLCD3","entrezGeneId":113026},{"hugoGeneSymbol":"PLCD4","entrezGeneId":84812},{"hugoGeneSymbol":"PLCE1","entrezGeneId":51196},{"hugoGeneSymbol":"PLCE1-AS1","entrezGeneId":100128054},{"hugoGeneSymbol":"PLCE1-AS2","entrezGeneId":101927049},{"hugoGeneSymbol":"PLCE1P1","entrezGeneId":100420075},{"hugoGeneSymbol":"PLCG1","entrezGeneId":5335},{"hugoGeneSymbol":"PLCG1-AS1","entrezGeneId":101927117},{"hugoGeneSymbol":"PLCG2","entrezGeneId":5336},{"hugoGeneSymbol":"PLCH1","entrezGeneId":23007},{"hugoGeneSymbol":"PLCH1-AS1","entrezGeneId":100874035},{"hugoGeneSymbol":"PLCH1-AS2","entrezGeneId":100874036},{"hugoGeneSymbol":"PLCH2","entrezGeneId":9651},{"hugoGeneSymbol":"PLCL1","entrezGeneId":5334},{"hugoGeneSymbol":"PLCL2","entrezGeneId":23228},{"hugoGeneSymbol":"PLCL2-AS1","entrezGeneId":100874003},{"hugoGeneSymbol":"PLCXD1","entrezGeneId":55344},{"hugoGeneSymbol":"PLCXD2","entrezGeneId":257068},{"hugoGeneSymbol":"PLCXD2-AS1","entrezGeneId":100874115},{"hugoGeneSymbol":"PLCXD3","entrezGeneId":345557},{"hugoGeneSymbol":"PLCZ1","entrezGeneId":89869},{"hugoGeneSymbol":"PLD1","entrezGeneId":5337},{"hugoGeneSymbol":"PLD2","entrezGeneId":5338},{"hugoGeneSymbol":"PLD3","entrezGeneId":23646},{"hugoGeneSymbol":"PLD4","entrezGeneId":122618},{"hugoGeneSymbol":"PLD5","entrezGeneId":200150},{"hugoGeneSymbol":"PLD6","entrezGeneId":201164},{"hugoGeneSymbol":"PLEC","entrezGeneId":5339},{"hugoGeneSymbol":"PLEK","entrezGeneId":5341},{"hugoGeneSymbol":"PLEK2","entrezGeneId":26499},{"hugoGeneSymbol":"PLEKHA1","entrezGeneId":59338},{"hugoGeneSymbol":"PLEKHA2","entrezGeneId":59339},{"hugoGeneSymbol":"PLEKHA3","entrezGeneId":65977},{"hugoGeneSymbol":"PLEKHA3P1","entrezGeneId":91405},{"hugoGeneSymbol":"PLEKHA4","entrezGeneId":57664},{"hugoGeneSymbol":"PLEKHA5","entrezGeneId":54477},{"hugoGeneSymbol":"PLEKHA6","entrezGeneId":22874},{"hugoGeneSymbol":"PLEKHA7","entrezGeneId":144100},{"hugoGeneSymbol":"PLEKHA8","entrezGeneId":84725},{"hugoGeneSymbol":"PLEKHA8P1","entrezGeneId":51054},{"hugoGeneSymbol":"PLEKHB1","entrezGeneId":58473},{"hugoGeneSymbol":"PLEKHB2","entrezGeneId":55041},{"hugoGeneSymbol":"PLEKHD1","entrezGeneId":400224},{"hugoGeneSymbol":"PLEKHF1","entrezGeneId":79156},{"hugoGeneSymbol":"PLEKHF2","entrezGeneId":79666},{"hugoGeneSymbol":"PLEKHG1","entrezGeneId":57480},{"hugoGeneSymbol":"PLEKHG2","entrezGeneId":64857},{"hugoGeneSymbol":"PLEKHG3","entrezGeneId":26030},{"hugoGeneSymbol":"PLEKHG4","entrezGeneId":25894},{"hugoGeneSymbol":"PLEKHG4B","entrezGeneId":153478},{"hugoGeneSymbol":"PLEKHG5","entrezGeneId":57449},{"hugoGeneSymbol":"PLEKHG6","entrezGeneId":55200},{"hugoGeneSymbol":"PLEKHG7","entrezGeneId":440107},{"hugoGeneSymbol":"PLEKHH1","entrezGeneId":57475},{"hugoGeneSymbol":"PLEKHH2","entrezGeneId":130271},{"hugoGeneSymbol":"PLEKHH3","entrezGeneId":79990},{"hugoGeneSymbol":"PLEKHJ1","entrezGeneId":55111},{"hugoGeneSymbol":"PLEKHM1","entrezGeneId":9842},{"hugoGeneSymbol":"PLEKHM1P1","entrezGeneId":440456},{"hugoGeneSymbol":"PLEKHM2","entrezGeneId":23207},{"hugoGeneSymbol":"PLEKHM3","entrezGeneId":389072},{"hugoGeneSymbol":"PLEKHN1","entrezGeneId":84069},{"hugoGeneSymbol":"PLEKHO1","entrezGeneId":51177},{"hugoGeneSymbol":"PLEKHO2","entrezGeneId":80301},{"hugoGeneSymbol":"PLEKHS1","entrezGeneId":79949},{"hugoGeneSymbol":"PLET1","entrezGeneId":349633},{"hugoGeneSymbol":"PLF","entrezGeneId":450095},{"hugoGeneSymbol":"PLG","entrezGeneId":5340},{"hugoGeneSymbol":"PLGLA","entrezGeneId":285189},{"hugoGeneSymbol":"PLGLB1","entrezGeneId":5343},{"hugoGeneSymbol":"PLGLB2","entrezGeneId":5342},{"hugoGeneSymbol":"PLGRKT","entrezGeneId":55848},{"hugoGeneSymbol":"PLIN1","entrezGeneId":5346},{"hugoGeneSymbol":"PLIN2","entrezGeneId":123},{"hugoGeneSymbol":"PLIN3","entrezGeneId":10226},{"hugoGeneSymbol":"PLIN4","entrezGeneId":729359},{"hugoGeneSymbol":"PLIN5","entrezGeneId":440503},{"hugoGeneSymbol":"PLK1","entrezGeneId":5347},{"hugoGeneSymbol":"PLK2","entrezGeneId":10769},{"hugoGeneSymbol":"PLK3","entrezGeneId":1263},{"hugoGeneSymbol":"PLK4","entrezGeneId":10733},{"hugoGeneSymbol":"PLK5","entrezGeneId":126520},{"hugoGeneSymbol":"PLLP","entrezGeneId":51090},{"hugoGeneSymbol":"PLN","entrezGeneId":5350},{"hugoGeneSymbol":"PLOD1","entrezGeneId":5351},{"hugoGeneSymbol":"PLOD2","entrezGeneId":5352},{"hugoGeneSymbol":"PLOD3","entrezGeneId":8985},{"hugoGeneSymbol":"PLP1","entrezGeneId":5354},{"hugoGeneSymbol":"PLP2","entrezGeneId":5355},{"hugoGeneSymbol":"PLPBP","entrezGeneId":11212},{"hugoGeneSymbol":"PLPP1","entrezGeneId":8611},{"hugoGeneSymbol":"PLPP2","entrezGeneId":8612},{"hugoGeneSymbol":"PLPP3","entrezGeneId":8613},{"hugoGeneSymbol":"PLPP4","entrezGeneId":196051},{"hugoGeneSymbol":"PLPP5","entrezGeneId":84513},{"hugoGeneSymbol":"PLPP6","entrezGeneId":403313},{"hugoGeneSymbol":"PLPP7","entrezGeneId":84814},{"hugoGeneSymbol":"PLPPR1","entrezGeneId":54886},{"hugoGeneSymbol":"PLPPR2","entrezGeneId":64748},{"hugoGeneSymbol":"PLPPR3","entrezGeneId":79948},{"hugoGeneSymbol":"PLPPR4","entrezGeneId":9890},{"hugoGeneSymbol":"PLPPR5","entrezGeneId":163404},{"hugoGeneSymbol":"PLRG1","entrezGeneId":5356},{"hugoGeneSymbol":"PLS1","entrezGeneId":5357},{"hugoGeneSymbol":"PLS1-AS1","entrezGeneId":100873943},{"hugoGeneSymbol":"PLS3","entrezGeneId":5358},{"hugoGeneSymbol":"PLS3-AS1","entrezGeneId":101927352},{"hugoGeneSymbol":"PLSA1","entrezGeneId":100240702},{"hugoGeneSymbol":"PLSCR1","entrezGeneId":5359},{"hugoGeneSymbol":"PLSCR2","entrezGeneId":57047},{"hugoGeneSymbol":"PLSCR3","entrezGeneId":57048},{"hugoGeneSymbol":"PLSCR4","entrezGeneId":57088},{"hugoGeneSymbol":"PLSCR5","entrezGeneId":389158},{"hugoGeneSymbol":"PLSCR5-AS1","entrezGeneId":100874104},{"hugoGeneSymbol":"PLTP","entrezGeneId":5360},{"hugoGeneSymbol":"PLUT","entrezGeneId":100861550},{"hugoGeneSymbol":"PLVAP","entrezGeneId":83483},{"hugoGeneSymbol":"PLXDC1","entrezGeneId":57125},{"hugoGeneSymbol":"PLXDC2","entrezGeneId":84898},{"hugoGeneSymbol":"PLXNA1","entrezGeneId":5361},{"hugoGeneSymbol":"PLXNA2","entrezGeneId":5362},{"hugoGeneSymbol":"PLXNA3","entrezGeneId":55558},{"hugoGeneSymbol":"PLXNA4","entrezGeneId":91584},{"hugoGeneSymbol":"PLXNB1","entrezGeneId":5364},{"hugoGeneSymbol":"PLXNB2","entrezGeneId":23654},{"hugoGeneSymbol":"PLXNB3","entrezGeneId":5365},{"hugoGeneSymbol":"PLXNC1","entrezGeneId":10154},{"hugoGeneSymbol":"PLXND1","entrezGeneId":23129},{"hugoGeneSymbol":"PM20D1","entrezGeneId":148811},{"hugoGeneSymbol":"PM20D2","entrezGeneId":135293},{"hugoGeneSymbol":"PMAIP1","entrezGeneId":5366},{"hugoGeneSymbol":"PMCH","entrezGeneId":5367},{"hugoGeneSymbol":"PMCHL1","entrezGeneId":5369},{"hugoGeneSymbol":"PMCHL2","entrezGeneId":5370},{"hugoGeneSymbol":"PMEL","entrezGeneId":6490},{"hugoGeneSymbol":"PMEPA1","entrezGeneId":56937},{"hugoGeneSymbol":"PMF1","entrezGeneId":11243},{"hugoGeneSymbol":"PMF1-BGLAP","entrezGeneId":100527963},{"hugoGeneSymbol":"PMFBP1","entrezGeneId":83449},{"hugoGeneSymbol":"PMIS2","entrezGeneId":111216276},{"hugoGeneSymbol":"PML","entrezGeneId":5371},{"hugoGeneSymbol":"PMM1","entrezGeneId":5372},{"hugoGeneSymbol":"PMM2","entrezGeneId":5373},{"hugoGeneSymbol":"PMM2P1","entrezGeneId":390831},{"hugoGeneSymbol":"PMM2P2","entrezGeneId":646065},{"hugoGeneSymbol":"PMP2","entrezGeneId":5375},{"hugoGeneSymbol":"PMP22","entrezGeneId":5376},{"hugoGeneSymbol":"PMPCA","entrezGeneId":23203},{"hugoGeneSymbol":"PMPCAP1","entrezGeneId":133083},{"hugoGeneSymbol":"PMPCB","entrezGeneId":9512},{"hugoGeneSymbol":"PMS1","entrezGeneId":5378},{"hugoGeneSymbol":"PMS2","entrezGeneId":5395},{"hugoGeneSymbol":"PMS2CL","entrezGeneId":441194},{"hugoGeneSymbol":"PMS2P1","entrezGeneId":5379},{"hugoGeneSymbol":"PMS2P10","entrezGeneId":100288713},{"hugoGeneSymbol":"PMS2P11","entrezGeneId":107161145},{"hugoGeneSymbol":"PMS2P12","entrezGeneId":392713},{"hugoGeneSymbol":"PMS2P2","entrezGeneId":5380},{"hugoGeneSymbol":"PMS2P3","entrezGeneId":5387},{"hugoGeneSymbol":"PMS2P4","entrezGeneId":5382},{"hugoGeneSymbol":"PMS2P5","entrezGeneId":5383},{"hugoGeneSymbol":"PMS2P6","entrezGeneId":729453},{"hugoGeneSymbol":"PMS2P7","entrezGeneId":100101440},{"hugoGeneSymbol":"PMS2P8","entrezGeneId":729299},{"hugoGeneSymbol":"PMS2P9","entrezGeneId":100132832},{"hugoGeneSymbol":"PMVK","entrezGeneId":10654},{"hugoGeneSymbol":"PNCK","entrezGeneId":139728},{"hugoGeneSymbol":"PNISR","entrezGeneId":25957},{"hugoGeneSymbol":"PNKD","entrezGeneId":25953},{"hugoGeneSymbol":"PNKD2","entrezGeneId":100188328},{"hugoGeneSymbol":"PNKDP1","entrezGeneId":100506715},{"hugoGeneSymbol":"PNKP","entrezGeneId":11284},{"hugoGeneSymbol":"PNKY","entrezGeneId":105447646},{"hugoGeneSymbol":"PNLDC1","entrezGeneId":154197},{"hugoGeneSymbol":"PNLIP","entrezGeneId":5406},{"hugoGeneSymbol":"PNLIPP1","entrezGeneId":100419068},{"hugoGeneSymbol":"PNLIPRP1","entrezGeneId":5407},{"hugoGeneSymbol":"PNLIPRP2","entrezGeneId":5408},{"hugoGeneSymbol":"PNLIPRP3","entrezGeneId":119548},{"hugoGeneSymbol":"PNMA1","entrezGeneId":9240},{"hugoGeneSymbol":"PNMA2","entrezGeneId":10687},{"hugoGeneSymbol":"PNMA3","entrezGeneId":29944},{"hugoGeneSymbol":"PNMA5","entrezGeneId":114824},{"hugoGeneSymbol":"PNMA6A","entrezGeneId":84968},{"hugoGeneSymbol":"PNMA6B","entrezGeneId":728513},{"hugoGeneSymbol":"PNMA6E","entrezGeneId":649238},{"hugoGeneSymbol":"PNMA6F","entrezGeneId":105373377},{"hugoGeneSymbol":"PNMA8A","entrezGeneId":55228},{"hugoGeneSymbol":"PNMA8B","entrezGeneId":57469},{"hugoGeneSymbol":"PNMA8C","entrezGeneId":110806277},{"hugoGeneSymbol":"PNMT","entrezGeneId":5409},{"hugoGeneSymbol":"PNN","entrezGeneId":5411},{"hugoGeneSymbol":"PNO1","entrezGeneId":56902},{"hugoGeneSymbol":"PNOC","entrezGeneId":5368},{"hugoGeneSymbol":"PNP","entrezGeneId":4860},{"hugoGeneSymbol":"PNPLA1","entrezGeneId":285848},{"hugoGeneSymbol":"PNPLA10P","entrezGeneId":643773},{"hugoGeneSymbol":"PNPLA2","entrezGeneId":57104},{"hugoGeneSymbol":"PNPLA3","entrezGeneId":80339},{"hugoGeneSymbol":"PNPLA4","entrezGeneId":8228},{"hugoGeneSymbol":"PNPLA4P1","entrezGeneId":100462832},{"hugoGeneSymbol":"PNPLA5","entrezGeneId":150379},{"hugoGeneSymbol":"PNPLA6","entrezGeneId":10908},{"hugoGeneSymbol":"PNPLA7","entrezGeneId":375775},{"hugoGeneSymbol":"PNPLA8","entrezGeneId":50640},{"hugoGeneSymbol":"PNPO","entrezGeneId":55163},{"hugoGeneSymbol":"PNPT1","entrezGeneId":87178},{"hugoGeneSymbol":"PNPT1P1","entrezGeneId":100288506},{"hugoGeneSymbol":"PNPT1P2","entrezGeneId":100533721},{"hugoGeneSymbol":"PNRC1","entrezGeneId":10957},{"hugoGeneSymbol":"PNRC2","entrezGeneId":55629},{"hugoGeneSymbol":"PNRC2P1","entrezGeneId":100131261},{"hugoGeneSymbol":"POC1A","entrezGeneId":25886},{"hugoGeneSymbol":"POC1B","entrezGeneId":282809},{"hugoGeneSymbol":"POC1B-AS1","entrezGeneId":109729146},{"hugoGeneSymbol":"POC1B-GALNT4","entrezGeneId":100528030},{"hugoGeneSymbol":"POC5","entrezGeneId":134359},{"hugoGeneSymbol":"PODN","entrezGeneId":127435},{"hugoGeneSymbol":"PODNL1","entrezGeneId":79883},{"hugoGeneSymbol":"PODXL","entrezGeneId":5420},{"hugoGeneSymbol":"PODXL2","entrezGeneId":50512},{"hugoGeneSymbol":"POF1B","entrezGeneId":79983},{"hugoGeneSymbol":"POFUT1","entrezGeneId":23509},{"hugoGeneSymbol":"POFUT2","entrezGeneId":23275},{"hugoGeneSymbol":"POGK","entrezGeneId":57645},{"hugoGeneSymbol":"POGLUT1","entrezGeneId":56983},{"hugoGeneSymbol":"POGZ","entrezGeneId":23126},{"hugoGeneSymbol":"POLA1","entrezGeneId":5422},{"hugoGeneSymbol":"POLA2","entrezGeneId":23649},{"hugoGeneSymbol":"POLB","entrezGeneId":5423},{"hugoGeneSymbol":"POLD1","entrezGeneId":5424},{"hugoGeneSymbol":"POLD2","entrezGeneId":5425},{"hugoGeneSymbol":"POLD2P1","entrezGeneId":391811},{"hugoGeneSymbol":"POLD3","entrezGeneId":10714},{"hugoGeneSymbol":"POLD4","entrezGeneId":57804},{"hugoGeneSymbol":"POLDIP2","entrezGeneId":26073},{"hugoGeneSymbol":"POLDIP3","entrezGeneId":84271},{"hugoGeneSymbol":"POLE","entrezGeneId":5426},{"hugoGeneSymbol":"POLE2","entrezGeneId":5427},{"hugoGeneSymbol":"POLE3","entrezGeneId":54107},{"hugoGeneSymbol":"POLE4","entrezGeneId":56655},{"hugoGeneSymbol":"POLG","entrezGeneId":5428},{"hugoGeneSymbol":"POLG2","entrezGeneId":11232},{"hugoGeneSymbol":"POLH","entrezGeneId":5429},{"hugoGeneSymbol":"POLH-AS1","entrezGeneId":111216283},{"hugoGeneSymbol":"POLHP1","entrezGeneId":106480782},{"hugoGeneSymbol":"POLI","entrezGeneId":11201},{"hugoGeneSymbol":"POLK","entrezGeneId":51426},{"hugoGeneSymbol":"POLL","entrezGeneId":27343},{"hugoGeneSymbol":"POLM","entrezGeneId":27434},{"hugoGeneSymbol":"POLN","entrezGeneId":353497},{"hugoGeneSymbol":"POLQ","entrezGeneId":10721},{"hugoGeneSymbol":"POLR1A","entrezGeneId":25885},{"hugoGeneSymbol":"POLR1B","entrezGeneId":84172},{"hugoGeneSymbol":"POLR1C","entrezGeneId":9533},{"hugoGeneSymbol":"POLR1D","entrezGeneId":51082},{"hugoGeneSymbol":"POLR1E","entrezGeneId":64425},{"hugoGeneSymbol":"POLR2A","entrezGeneId":5430},{"hugoGeneSymbol":"POLR2B","entrezGeneId":5431},{"hugoGeneSymbol":"POLR2C","entrezGeneId":5432},{"hugoGeneSymbol":"POLR2CP1","entrezGeneId":54038},{"hugoGeneSymbol":"POLR2D","entrezGeneId":5433},{"hugoGeneSymbol":"POLR2E","entrezGeneId":5434},{"hugoGeneSymbol":"POLR2F","entrezGeneId":5435},{"hugoGeneSymbol":"POLR2G","entrezGeneId":5436},{"hugoGeneSymbol":"POLR2H","entrezGeneId":5437},{"hugoGeneSymbol":"POLR2I","entrezGeneId":5438},{"hugoGeneSymbol":"POLR2J","entrezGeneId":5439},{"hugoGeneSymbol":"POLR2J2","entrezGeneId":246721},{"hugoGeneSymbol":"POLR2J3","entrezGeneId":548644},{"hugoGeneSymbol":"POLR2J4","entrezGeneId":84820},{"hugoGeneSymbol":"POLR2K","entrezGeneId":5440},{"hugoGeneSymbol":"POLR2KP1","entrezGeneId":100874515},{"hugoGeneSymbol":"POLR2KP2","entrezGeneId":100129174},{"hugoGeneSymbol":"POLR2L","entrezGeneId":5441},{"hugoGeneSymbol":"POLR2LP1","entrezGeneId":493825},{"hugoGeneSymbol":"POLR2M","entrezGeneId":81488},{"hugoGeneSymbol":"POLR3A","entrezGeneId":11128},{"hugoGeneSymbol":"POLR3B","entrezGeneId":55703},{"hugoGeneSymbol":"POLR3C","entrezGeneId":10623},{"hugoGeneSymbol":"POLR3D","entrezGeneId":661},{"hugoGeneSymbol":"POLR3DP1","entrezGeneId":100422384},{"hugoGeneSymbol":"POLR3E","entrezGeneId":55718},{"hugoGeneSymbol":"POLR3F","entrezGeneId":10621},{"hugoGeneSymbol":"POLR3G","entrezGeneId":10622},{"hugoGeneSymbol":"POLR3GL","entrezGeneId":84265},{"hugoGeneSymbol":"POLR3GP1","entrezGeneId":100422395},{"hugoGeneSymbol":"POLR3GP2","entrezGeneId":100422391},{"hugoGeneSymbol":"POLR3H","entrezGeneId":171568},{"hugoGeneSymbol":"POLR3K","entrezGeneId":51728},{"hugoGeneSymbol":"POLR3KP1","entrezGeneId":100289667},{"hugoGeneSymbol":"POLR3KP2","entrezGeneId":390811},{"hugoGeneSymbol":"POLRMT","entrezGeneId":5442},{"hugoGeneSymbol":"POLRMTP1","entrezGeneId":284167},{"hugoGeneSymbol":"POM121","entrezGeneId":9883},{"hugoGeneSymbol":"POM121B","entrezGeneId":100288540},{"hugoGeneSymbol":"POM121C","entrezGeneId":100101267},{"hugoGeneSymbol":"POM121L10P","entrezGeneId":646074},{"hugoGeneSymbol":"POM121L11P","entrezGeneId":100129643},{"hugoGeneSymbol":"POM121L12","entrezGeneId":285877},{"hugoGeneSymbol":"POM121L13P","entrezGeneId":100874379},{"hugoGeneSymbol":"POM121L14P","entrezGeneId":727805},{"hugoGeneSymbol":"POM121L1P","entrezGeneId":25812},{"hugoGeneSymbol":"POM121L2","entrezGeneId":94026},{"hugoGeneSymbol":"POM121L3P","entrezGeneId":651452},{"hugoGeneSymbol":"POM121L4P","entrezGeneId":266697},{"hugoGeneSymbol":"POM121L6P","entrezGeneId":729392},{"hugoGeneSymbol":"POM121L7P","entrezGeneId":728418},{"hugoGeneSymbol":"POM121L8P","entrezGeneId":29797},{"hugoGeneSymbol":"POM121L9P","entrezGeneId":29774},{"hugoGeneSymbol":"POMC","entrezGeneId":5443},{"hugoGeneSymbol":"POMGNT1","entrezGeneId":55624},{"hugoGeneSymbol":"POMGNT2","entrezGeneId":84892},{"hugoGeneSymbol":"POMK","entrezGeneId":84197},{"hugoGeneSymbol":"POMP","entrezGeneId":51371},{"hugoGeneSymbol":"POMT1","entrezGeneId":10585},{"hugoGeneSymbol":"POMT2","entrezGeneId":29954},{"hugoGeneSymbol":"POMZP3","entrezGeneId":22932},{"hugoGeneSymbol":"PON1","entrezGeneId":5444},{"hugoGeneSymbol":"PON2","entrezGeneId":5445},{"hugoGeneSymbol":"PON3","entrezGeneId":5446},{"hugoGeneSymbol":"POP1","entrezGeneId":10940},{"hugoGeneSymbol":"POP4","entrezGeneId":10775},{"hugoGeneSymbol":"POP5","entrezGeneId":51367},{"hugoGeneSymbol":"POP7","entrezGeneId":10248},{"hugoGeneSymbol":"POPDC2","entrezGeneId":64091},{"hugoGeneSymbol":"POPDC3","entrezGeneId":64208},{"hugoGeneSymbol":"POR","entrezGeneId":5447},{"hugoGeneSymbol":"PORCN","entrezGeneId":64840},{"hugoGeneSymbol":"POROK2","entrezGeneId":100196910},{"hugoGeneSymbol":"POROK4","entrezGeneId":353147},{"hugoGeneSymbol":"POROK5","entrezGeneId":100190982},{"hugoGeneSymbol":"POROK6","entrezGeneId":100196911},{"hugoGeneSymbol":"POROK7","entrezGeneId":101101698},{"hugoGeneSymbol":"POSTN","entrezGeneId":10631},{"hugoGeneSymbol":"POT1","entrezGeneId":25913},{"hugoGeneSymbol":"POT1-AS1","entrezGeneId":401398},{"hugoGeneSymbol":"POTEA","entrezGeneId":340441},{"hugoGeneSymbol":"POTEB","entrezGeneId":100996331},{"hugoGeneSymbol":"POTEB2","entrezGeneId":100287399},{"hugoGeneSymbol":"POTEB3","entrezGeneId":102724631},{"hugoGeneSymbol":"POTEC","entrezGeneId":388468},{"hugoGeneSymbol":"POTED","entrezGeneId":317754},{"hugoGeneSymbol":"POTEE","entrezGeneId":445582},{"hugoGeneSymbol":"POTEF","entrezGeneId":728378},{"hugoGeneSymbol":"POTEG","entrezGeneId":404785},{"hugoGeneSymbol":"POTEH","entrezGeneId":23784},{"hugoGeneSymbol":"POTEH-AS1","entrezGeneId":100852406},{"hugoGeneSymbol":"POTEI","entrezGeneId":653269},{"hugoGeneSymbol":"POTEJ","entrezGeneId":653781},{"hugoGeneSymbol":"POTEKP","entrezGeneId":440915},{"hugoGeneSymbol":"POTEM","entrezGeneId":641455},{"hugoGeneSymbol":"POU1F1","entrezGeneId":5449},{"hugoGeneSymbol":"POU2AF1","entrezGeneId":5450},{"hugoGeneSymbol":"POU2F1","entrezGeneId":5451},{"hugoGeneSymbol":"POU2F2","entrezGeneId":5452},{"hugoGeneSymbol":"POU2F3","entrezGeneId":25833},{"hugoGeneSymbol":"POU3F1","entrezGeneId":5453},{"hugoGeneSymbol":"POU3F2","entrezGeneId":5454},{"hugoGeneSymbol":"POU3F3","entrezGeneId":5455},{"hugoGeneSymbol":"POU3F4","entrezGeneId":5456},{"hugoGeneSymbol":"POU4F1","entrezGeneId":5457},{"hugoGeneSymbol":"POU4F2","entrezGeneId":5458},{"hugoGeneSymbol":"POU4F3","entrezGeneId":5459},{"hugoGeneSymbol":"POU5F1","entrezGeneId":5460},{"hugoGeneSymbol":"POU5F1B","entrezGeneId":5462},{"hugoGeneSymbol":"POU5F1P2","entrezGeneId":100129512},{"hugoGeneSymbol":"POU5F1P3","entrezGeneId":642559},{"hugoGeneSymbol":"POU5F1P4","entrezGeneId":645682},{"hugoGeneSymbol":"POU5F1P5","entrezGeneId":100009667},{"hugoGeneSymbol":"POU5F1P6","entrezGeneId":100009668},{"hugoGeneSymbol":"POU5F1P7","entrezGeneId":100009669},{"hugoGeneSymbol":"POU5F2","entrezGeneId":134187},{"hugoGeneSymbol":"POU6F1","entrezGeneId":5463},{"hugoGeneSymbol":"POU6F2","entrezGeneId":11281},{"hugoGeneSymbol":"POU6F2-AS1","entrezGeneId":100861520},{"hugoGeneSymbol":"POU6F2-AS2","entrezGeneId":100689074},{"hugoGeneSymbol":"PP12613","entrezGeneId":100192379},{"hugoGeneSymbol":"PP1P","entrezGeneId":151842},{"hugoGeneSymbol":"PP2672","entrezGeneId":100130249},{"hugoGeneSymbol":"PP2D1","entrezGeneId":151649},{"hugoGeneSymbol":"PP7080","entrezGeneId":25845},{"hugoGeneSymbol":"PPA1","entrezGeneId":5464},{"hugoGeneSymbol":"PPA2","entrezGeneId":27068},{"hugoGeneSymbol":"PPAN","entrezGeneId":56342},{"hugoGeneSymbol":"PPAN-P2RY11","entrezGeneId":692312},{"hugoGeneSymbol":"PPARA","entrezGeneId":5465},{"hugoGeneSymbol":"PPARD","entrezGeneId":5467},{"hugoGeneSymbol":"PPARG","entrezGeneId":5468},{"hugoGeneSymbol":"PPARGC1A","entrezGeneId":10891},{"hugoGeneSymbol":"PPARGC1B","entrezGeneId":133522},{"hugoGeneSymbol":"PPAT","entrezGeneId":5471},{"hugoGeneSymbol":"PPATP1","entrezGeneId":100289640},{"hugoGeneSymbol":"PPATP2","entrezGeneId":100421601},{"hugoGeneSymbol":"PPBP","entrezGeneId":5473},{"hugoGeneSymbol":"PPBPP1","entrezGeneId":728045},{"hugoGeneSymbol":"PPBPP2","entrezGeneId":10895},{"hugoGeneSymbol":"PPCDC","entrezGeneId":60490},{"hugoGeneSymbol":"PPCS","entrezGeneId":79717},{"hugoGeneSymbol":"PPDPF","entrezGeneId":79144},{"hugoGeneSymbol":"PPDPFL","entrezGeneId":492307},{"hugoGeneSymbol":"PPEF1","entrezGeneId":5475},{"hugoGeneSymbol":"PPEF1-AS1","entrezGeneId":100874004},{"hugoGeneSymbol":"PPEF2","entrezGeneId":5470},{"hugoGeneSymbol":"PPFIA1","entrezGeneId":8500},{"hugoGeneSymbol":"PPFIA2","entrezGeneId":8499},{"hugoGeneSymbol":"PPFIA2-AS1","entrezGeneId":102724663},{"hugoGeneSymbol":"PPFIA3","entrezGeneId":8541},{"hugoGeneSymbol":"PPFIA4","entrezGeneId":8497},{"hugoGeneSymbol":"PPFIBP1","entrezGeneId":8496},{"hugoGeneSymbol":"PPFIBP2","entrezGeneId":8495},{"hugoGeneSymbol":"PPH2","entrezGeneId":89873},{"hugoGeneSymbol":"PPHLN1","entrezGeneId":51535},{"hugoGeneSymbol":"PPIA","entrezGeneId":5478},{"hugoGeneSymbol":"PPIAL4A","entrezGeneId":653505},{"hugoGeneSymbol":"PPIAL4C","entrezGeneId":653598},{"hugoGeneSymbol":"PPIAL4D","entrezGeneId":645142},{"hugoGeneSymbol":"PPIAL4E","entrezGeneId":730262},{"hugoGeneSymbol":"PPIAL4F","entrezGeneId":728945},{"hugoGeneSymbol":"PPIAL4G","entrezGeneId":644591},{"hugoGeneSymbol":"PPIAP1","entrezGeneId":100288185},{"hugoGeneSymbol":"PPIAP10","entrezGeneId":140913},{"hugoGeneSymbol":"PPIAP11","entrezGeneId":5483},{"hugoGeneSymbol":"PPIAP13","entrezGeneId":5485},{"hugoGeneSymbol":"PPIAP14","entrezGeneId":5486},{"hugoGeneSymbol":"PPIAP15","entrezGeneId":5487},{"hugoGeneSymbol":"PPIAP16","entrezGeneId":5488},{"hugoGeneSymbol":"PPIAP17","entrezGeneId":170540},{"hugoGeneSymbol":"PPIAP18","entrezGeneId":729673},{"hugoGeneSymbol":"PPIAP19","entrezGeneId":390006},{"hugoGeneSymbol":"PPIAP2","entrezGeneId":170537},{"hugoGeneSymbol":"PPIAP20","entrezGeneId":100500737},{"hugoGeneSymbol":"PPIAP21","entrezGeneId":170536},{"hugoGeneSymbol":"PPIAP22","entrezGeneId":653214},{"hugoGeneSymbol":"PPIAP23","entrezGeneId":390419},{"hugoGeneSymbol":"PPIAP24","entrezGeneId":122335},{"hugoGeneSymbol":"PPIAP25","entrezGeneId":647085},{"hugoGeneSymbol":"PPIAP26","entrezGeneId":121981},{"hugoGeneSymbol":"PPIAP27","entrezGeneId":100874405},{"hugoGeneSymbol":"PPIAP28","entrezGeneId":390378},{"hugoGeneSymbol":"PPIAP29","entrezGeneId":134997},{"hugoGeneSymbol":"PPIAP3","entrezGeneId":170539},{"hugoGeneSymbol":"PPIAP30","entrezGeneId":100192204},{"hugoGeneSymbol":"PPIAP31","entrezGeneId":439953},{"hugoGeneSymbol":"PPIAP32","entrezGeneId":101927399},{"hugoGeneSymbol":"PPIAP33","entrezGeneId":392285},{"hugoGeneSymbol":"PPIAP34","entrezGeneId":101060363},{"hugoGeneSymbol":"PPIAP35","entrezGeneId":128192},{"hugoGeneSymbol":"PPIAP36","entrezGeneId":111082961},{"hugoGeneSymbol":"PPIAP37","entrezGeneId":111082976},{"hugoGeneSymbol":"PPIAP38","entrezGeneId":111082962},{"hugoGeneSymbol":"PPIAP39","entrezGeneId":111082963},{"hugoGeneSymbol":"PPIAP4","entrezGeneId":122552},{"hugoGeneSymbol":"PPIAP40","entrezGeneId":107984349},{"hugoGeneSymbol":"PPIAP41","entrezGeneId":111082977},{"hugoGeneSymbol":"PPIAP42","entrezGeneId":100507231},{"hugoGeneSymbol":"PPIAP43","entrezGeneId":440063},{"hugoGeneSymbol":"PPIAP44","entrezGeneId":111082964},{"hugoGeneSymbol":"PPIAP45","entrezGeneId":100506099},{"hugoGeneSymbol":"PPIAP46","entrezGeneId":729739},{"hugoGeneSymbol":"PPIAP47","entrezGeneId":391532},{"hugoGeneSymbol":"PPIAP48","entrezGeneId":111082978},{"hugoGeneSymbol":"PPIAP49","entrezGeneId":111082973},{"hugoGeneSymbol":"PPIAP5","entrezGeneId":122842},{"hugoGeneSymbol":"PPIAP50","entrezGeneId":111082974},{"hugoGeneSymbol":"PPIAP51","entrezGeneId":729313},{"hugoGeneSymbol":"PPIAP52","entrezGeneId":111082965},{"hugoGeneSymbol":"PPIAP53","entrezGeneId":649873},{"hugoGeneSymbol":"PPIAP54","entrezGeneId":390791},{"hugoGeneSymbol":"PPIAP55","entrezGeneId":342541},{"hugoGeneSymbol":"PPIAP56","entrezGeneId":101927689},{"hugoGeneSymbol":"PPIAP57","entrezGeneId":111082979},{"hugoGeneSymbol":"PPIAP58","entrezGeneId":126170},{"hugoGeneSymbol":"PPIAP59","entrezGeneId":390956},{"hugoGeneSymbol":"PPIAP6","entrezGeneId":319128},{"hugoGeneSymbol":"PPIAP60","entrezGeneId":107985791},{"hugoGeneSymbol":"PPIAP61","entrezGeneId":107985764},{"hugoGeneSymbol":"PPIAP62","entrezGeneId":101928610},{"hugoGeneSymbol":"PPIAP63","entrezGeneId":111082966},{"hugoGeneSymbol":"PPIAP64","entrezGeneId":100287361},{"hugoGeneSymbol":"PPIAP65","entrezGeneId":111082980},{"hugoGeneSymbol":"PPIAP66","entrezGeneId":643997},{"hugoGeneSymbol":"PPIAP67","entrezGeneId":111082981},{"hugoGeneSymbol":"PPIAP68","entrezGeneId":111082967},{"hugoGeneSymbol":"PPIAP69","entrezGeneId":111082982},{"hugoGeneSymbol":"PPIAP7","entrezGeneId":5489},{"hugoGeneSymbol":"PPIAP70","entrezGeneId":100506946},{"hugoGeneSymbol":"PPIAP71","entrezGeneId":107986014},{"hugoGeneSymbol":"PPIAP72","entrezGeneId":256374},{"hugoGeneSymbol":"PPIAP73","entrezGeneId":391587},{"hugoGeneSymbol":"PPIAP74","entrezGeneId":131055},{"hugoGeneSymbol":"PPIAP75","entrezGeneId":111082968},{"hugoGeneSymbol":"PPIAP76","entrezGeneId":111082983},{"hugoGeneSymbol":"PPIAP77","entrezGeneId":402213},{"hugoGeneSymbol":"PPIAP78","entrezGeneId":202227},{"hugoGeneSymbol":"PPIAP79","entrezGeneId":100289244},{"hugoGeneSymbol":"PPIAP8","entrezGeneId":341457},{"hugoGeneSymbol":"PPIAP80","entrezGeneId":402644},{"hugoGeneSymbol":"PPIAP81","entrezGeneId":107986732},{"hugoGeneSymbol":"PPIAP82","entrezGeneId":442713},{"hugoGeneSymbol":"PPIAP83","entrezGeneId":111082969},{"hugoGeneSymbol":"PPIAP84","entrezGeneId":111082984},{"hugoGeneSymbol":"PPIAP85","entrezGeneId":111082975},{"hugoGeneSymbol":"PPIAP86","entrezGeneId":111082970},{"hugoGeneSymbol":"PPIAP87","entrezGeneId":392352},{"hugoGeneSymbol":"PPIAP88","entrezGeneId":111082971},{"hugoGeneSymbol":"PPIAP89","entrezGeneId":442460},{"hugoGeneSymbol":"PPIAP9","entrezGeneId":5491},{"hugoGeneSymbol":"PPIAP90","entrezGeneId":111082985},{"hugoGeneSymbol":"PPIAP91","entrezGeneId":111082972},{"hugoGeneSymbol":"PPIB","entrezGeneId":5479},{"hugoGeneSymbol":"PPIC","entrezGeneId":5480},{"hugoGeneSymbol":"PPID","entrezGeneId":5481},{"hugoGeneSymbol":"PPIE","entrezGeneId":10450},{"hugoGeneSymbol":"PPIEL","entrezGeneId":728448},{"hugoGeneSymbol":"PPIF","entrezGeneId":10105},{"hugoGeneSymbol":"PPIG","entrezGeneId":9360},{"hugoGeneSymbol":"PPIGP1","entrezGeneId":100131033},{"hugoGeneSymbol":"PPIH","entrezGeneId":10465},{"hugoGeneSymbol":"PPIHP1","entrezGeneId":246731},{"hugoGeneSymbol":"PPIHP2","entrezGeneId":404199},{"hugoGeneSymbol":"PPIL1","entrezGeneId":51645},{"hugoGeneSymbol":"PPIL1P1","entrezGeneId":150947},{"hugoGeneSymbol":"PPIL2","entrezGeneId":23759},{"hugoGeneSymbol":"PPIL3","entrezGeneId":53938},{"hugoGeneSymbol":"PPIL4","entrezGeneId":85313},{"hugoGeneSymbol":"PPIL6","entrezGeneId":285755},{"hugoGeneSymbol":"PPIP5K1","entrezGeneId":9677},{"hugoGeneSymbol":"PPIP5K1P1","entrezGeneId":554224},{"hugoGeneSymbol":"PPIP5K1P1-CATSPER2","entrezGeneId":110006325},{"hugoGeneSymbol":"PPIP5K2","entrezGeneId":23262},{"hugoGeneSymbol":"PPKP1B","entrezGeneId":101154752},{"hugoGeneSymbol":"PPL","entrezGeneId":5493},{"hugoGeneSymbol":"PPM1A","entrezGeneId":5494},{"hugoGeneSymbol":"PPM1AP1","entrezGeneId":137012},{"hugoGeneSymbol":"PPM1B","entrezGeneId":5495},{"hugoGeneSymbol":"PPM1D","entrezGeneId":8493},{"hugoGeneSymbol":"PPM1E","entrezGeneId":22843},{"hugoGeneSymbol":"PPM1F","entrezGeneId":9647},{"hugoGeneSymbol":"PPM1G","entrezGeneId":5496},{"hugoGeneSymbol":"PPM1H","entrezGeneId":57460},{"hugoGeneSymbol":"PPM1J","entrezGeneId":333926},{"hugoGeneSymbol":"PPM1K","entrezGeneId":152926},{"hugoGeneSymbol":"PPM1L","entrezGeneId":151742},{"hugoGeneSymbol":"PPM1M","entrezGeneId":132160},{"hugoGeneSymbol":"PPM1N","entrezGeneId":147699},{"hugoGeneSymbol":"PPME1","entrezGeneId":51400},{"hugoGeneSymbol":"PPOX","entrezGeneId":5498},{"hugoGeneSymbol":"PPP1CA","entrezGeneId":5499},{"hugoGeneSymbol":"PPP1CB","entrezGeneId":5500},{"hugoGeneSymbol":"PPP1CC","entrezGeneId":5501},{"hugoGeneSymbol":"PPP1R10","entrezGeneId":5514},{"hugoGeneSymbol":"PPP1R10P1","entrezGeneId":100422381},{"hugoGeneSymbol":"PPP1R11","entrezGeneId":6992},{"hugoGeneSymbol":"PPP1R11P1","entrezGeneId":94297},{"hugoGeneSymbol":"PPP1R11P2","entrezGeneId":94298},{"hugoGeneSymbol":"PPP1R12A","entrezGeneId":4659},{"hugoGeneSymbol":"PPP1R12A-AS1","entrezGeneId":105369865},{"hugoGeneSymbol":"PPP1R12B","entrezGeneId":4660},{"hugoGeneSymbol":"PPP1R12BP1","entrezGeneId":360021},{"hugoGeneSymbol":"PPP1R12BP2","entrezGeneId":360020},{"hugoGeneSymbol":"PPP1R12C","entrezGeneId":54776},{"hugoGeneSymbol":"PPP1R13B","entrezGeneId":23368},{"hugoGeneSymbol":"PPP1R13L","entrezGeneId":10848},{"hugoGeneSymbol":"PPP1R14A","entrezGeneId":94274},{"hugoGeneSymbol":"PPP1R14B","entrezGeneId":26472},{"hugoGeneSymbol":"PPP1R14BP1","entrezGeneId":50516},{"hugoGeneSymbol":"PPP1R14BP2","entrezGeneId":729406},{"hugoGeneSymbol":"PPP1R14BP3","entrezGeneId":100507617},{"hugoGeneSymbol":"PPP1R14BP4","entrezGeneId":94302},{"hugoGeneSymbol":"PPP1R14BP5","entrezGeneId":442256},{"hugoGeneSymbol":"PPP1R14C","entrezGeneId":81706},{"hugoGeneSymbol":"PPP1R14D","entrezGeneId":54866},{"hugoGeneSymbol":"PPP1R15A","entrezGeneId":23645},{"hugoGeneSymbol":"PPP1R15B","entrezGeneId":84919},{"hugoGeneSymbol":"PPP1R16A","entrezGeneId":84988},{"hugoGeneSymbol":"PPP1R16B","entrezGeneId":26051},{"hugoGeneSymbol":"PPP1R17","entrezGeneId":10842},{"hugoGeneSymbol":"PPP1R18","entrezGeneId":170954},{"hugoGeneSymbol":"PPP1R1A","entrezGeneId":5502},{"hugoGeneSymbol":"PPP1R1AP1","entrezGeneId":94304},{"hugoGeneSymbol":"PPP1R1AP2","entrezGeneId":100129627},{"hugoGeneSymbol":"PPP1R1B","entrezGeneId":84152},{"hugoGeneSymbol":"PPP1R1C","entrezGeneId":151242},{"hugoGeneSymbol":"PPP1R2","entrezGeneId":5504},{"hugoGeneSymbol":"PPP1R21","entrezGeneId":129285},{"hugoGeneSymbol":"PPP1R26","entrezGeneId":9858},{"hugoGeneSymbol":"PPP1R26-AS1","entrezGeneId":100506599},{"hugoGeneSymbol":"PPP1R26P1","entrezGeneId":100418740},{"hugoGeneSymbol":"PPP1R26P2","entrezGeneId":100133064},{"hugoGeneSymbol":"PPP1R26P3","entrezGeneId":100132173},{"hugoGeneSymbol":"PPP1R26P4","entrezGeneId":100132295},{"hugoGeneSymbol":"PPP1R26P5","entrezGeneId":100133040},{"hugoGeneSymbol":"PPP1R27","entrezGeneId":116729},{"hugoGeneSymbol":"PPP1R2B","entrezGeneId":153743},{"hugoGeneSymbol":"PPP1R2C","entrezGeneId":80316},{"hugoGeneSymbol":"PPP1R2P1","entrezGeneId":100507444},{"hugoGeneSymbol":"PPP1R2P10","entrezGeneId":100128626},{"hugoGeneSymbol":"PPP1R2P2","entrezGeneId":54036},{"hugoGeneSymbol":"PPP1R2P4","entrezGeneId":728970},{"hugoGeneSymbol":"PPP1R2P5","entrezGeneId":649489},{"hugoGeneSymbol":"PPP1R2P6","entrezGeneId":100130972},{"hugoGeneSymbol":"PPP1R2P8","entrezGeneId":94310},{"hugoGeneSymbol":"PPP1R32","entrezGeneId":220004},{"hugoGeneSymbol":"PPP1R35","entrezGeneId":221908},{"hugoGeneSymbol":"PPP1R36","entrezGeneId":145376},{"hugoGeneSymbol":"PPP1R37","entrezGeneId":284352},{"hugoGeneSymbol":"PPP1R3A","entrezGeneId":5506},{"hugoGeneSymbol":"PPP1R3B","entrezGeneId":79660},{"hugoGeneSymbol":"PPP1R3C","entrezGeneId":5507},{"hugoGeneSymbol":"PPP1R3D","entrezGeneId":5509},{"hugoGeneSymbol":"PPP1R3E","entrezGeneId":90673},{"hugoGeneSymbol":"PPP1R3F","entrezGeneId":89801},{"hugoGeneSymbol":"PPP1R3G","entrezGeneId":648791},{"hugoGeneSymbol":"PPP1R42","entrezGeneId":286187},{"hugoGeneSymbol":"PPP1R7","entrezGeneId":5510},{"hugoGeneSymbol":"PPP1R8","entrezGeneId":5511},{"hugoGeneSymbol":"PPP1R8P1","entrezGeneId":5512},{"hugoGeneSymbol":"PPP1R9A","entrezGeneId":55607},{"hugoGeneSymbol":"PPP1R9B","entrezGeneId":84687},{"hugoGeneSymbol":"PPP2CA","entrezGeneId":5515},{"hugoGeneSymbol":"PPP2CB","entrezGeneId":5516},{"hugoGeneSymbol":"PPP2CBP1","entrezGeneId":5517},{"hugoGeneSymbol":"PPP2R1A","entrezGeneId":5518},{"hugoGeneSymbol":"PPP2R1B","entrezGeneId":5519},{"hugoGeneSymbol":"PPP2R2A","entrezGeneId":5520},{"hugoGeneSymbol":"PPP2R2B","entrezGeneId":5521},{"hugoGeneSymbol":"PPP2R2B-IT1","entrezGeneId":100874361},{"hugoGeneSymbol":"PPP2R2C","entrezGeneId":5522},{"hugoGeneSymbol":"PPP2R2D","entrezGeneId":55844},{"hugoGeneSymbol":"PPP2R2DP1","entrezGeneId":100327036},{"hugoGeneSymbol":"PPP2R3A","entrezGeneId":5523},{"hugoGeneSymbol":"PPP2R3B","entrezGeneId":28227},{"hugoGeneSymbol":"PPP2R3C","entrezGeneId":55012},{"hugoGeneSymbol":"PPP2R5A","entrezGeneId":5525},{"hugoGeneSymbol":"PPP2R5B","entrezGeneId":5526},{"hugoGeneSymbol":"PPP2R5C","entrezGeneId":5527},{"hugoGeneSymbol":"PPP2R5CP","entrezGeneId":140921},{"hugoGeneSymbol":"PPP2R5D","entrezGeneId":5528},{"hugoGeneSymbol":"PPP2R5E","entrezGeneId":5529},{"hugoGeneSymbol":"PPP3CA","entrezGeneId":5530},{"hugoGeneSymbol":"PPP3CB","entrezGeneId":5532},{"hugoGeneSymbol":"PPP3CB-AS1","entrezGeneId":101929145},{"hugoGeneSymbol":"PPP3CC","entrezGeneId":5533},{"hugoGeneSymbol":"PPP3R1","entrezGeneId":5534},{"hugoGeneSymbol":"PPP3R2","entrezGeneId":5535},{"hugoGeneSymbol":"PPP4C","entrezGeneId":5531},{"hugoGeneSymbol":"PPP4R1","entrezGeneId":9989},{"hugoGeneSymbol":"PPP4R1-AS1","entrezGeneId":101927323},{"hugoGeneSymbol":"PPP4R1L","entrezGeneId":55370},{"hugoGeneSymbol":"PPP4R2","entrezGeneId":151987},{"hugoGeneSymbol":"PPP4R3A","entrezGeneId":55671},{"hugoGeneSymbol":"PPP4R3B","entrezGeneId":57223},{"hugoGeneSymbol":"PPP4R3C","entrezGeneId":139420},{"hugoGeneSymbol":"PPP4R4","entrezGeneId":57718},{"hugoGeneSymbol":"PPP5C","entrezGeneId":5536},{"hugoGeneSymbol":"PPP5D1","entrezGeneId":100506012},{"hugoGeneSymbol":"PPP6C","entrezGeneId":5537},{"hugoGeneSymbol":"PPP6CP","entrezGeneId":100144631},{"hugoGeneSymbol":"PPP6R1","entrezGeneId":22870},{"hugoGeneSymbol":"PPP6R2","entrezGeneId":9701},{"hugoGeneSymbol":"PPP6R2P1","entrezGeneId":100631381},{"hugoGeneSymbol":"PPP6R3","entrezGeneId":55291},{"hugoGeneSymbol":"PPR1","entrezGeneId":100528023},{"hugoGeneSymbol":"PPR2","entrezGeneId":780910},{"hugoGeneSymbol":"PPR3","entrezGeneId":619471},{"hugoGeneSymbol":"PPRC1","entrezGeneId":23082},{"hugoGeneSymbol":"PPT1","entrezGeneId":5538},{"hugoGeneSymbol":"PPT2","entrezGeneId":9374},{"hugoGeneSymbol":"PPT2-EGFL8","entrezGeneId":100532746},{"hugoGeneSymbol":"PPTC7","entrezGeneId":160760},{"hugoGeneSymbol":"PPWD1","entrezGeneId":23398},{"hugoGeneSymbol":"PPY","entrezGeneId":5539},{"hugoGeneSymbol":"PPY2P","entrezGeneId":23614},{"hugoGeneSymbol":"PQBP1","entrezGeneId":10084},{"hugoGeneSymbol":"PQBP4","entrezGeneId":23685},{"hugoGeneSymbol":"PQLC1","entrezGeneId":80148},{"hugoGeneSymbol":"PQLC1P1","entrezGeneId":106479032},{"hugoGeneSymbol":"PQLC1P2","entrezGeneId":100127906},{"hugoGeneSymbol":"PQLC2","entrezGeneId":54896},{"hugoGeneSymbol":"PQLC2L","entrezGeneId":152078},{"hugoGeneSymbol":"PQLC3","entrezGeneId":130814},{"hugoGeneSymbol":"PR@","entrezGeneId":5541},{"hugoGeneSymbol":"PRAC1","entrezGeneId":84366},{"hugoGeneSymbol":"PRAC2","entrezGeneId":360205},{"hugoGeneSymbol":"PRADC1","entrezGeneId":84279},{"hugoGeneSymbol":"PRADC1P1","entrezGeneId":645571},{"hugoGeneSymbol":"PRAF2","entrezGeneId":11230},{"hugoGeneSymbol":"PRAG1","entrezGeneId":157285},{"hugoGeneSymbol":"PRAL","entrezGeneId":109245082},{"hugoGeneSymbol":"PRAM1","entrezGeneId":84106},{"hugoGeneSymbol":"PRAME","entrezGeneId":23532},{"hugoGeneSymbol":"PRAMEF1","entrezGeneId":65121},{"hugoGeneSymbol":"PRAMEF10","entrezGeneId":343071},{"hugoGeneSymbol":"PRAMEF11","entrezGeneId":440560},{"hugoGeneSymbol":"PRAMEF12","entrezGeneId":390999},{"hugoGeneSymbol":"PRAMEF13","entrezGeneId":400736},{"hugoGeneSymbol":"PRAMEF14","entrezGeneId":729528},{"hugoGeneSymbol":"PRAMEF15","entrezGeneId":653619},{"hugoGeneSymbol":"PRAMEF17","entrezGeneId":391004},{"hugoGeneSymbol":"PRAMEF18","entrezGeneId":391003},{"hugoGeneSymbol":"PRAMEF19","entrezGeneId":645414},{"hugoGeneSymbol":"PRAMEF2","entrezGeneId":65122},{"hugoGeneSymbol":"PRAMEF20","entrezGeneId":645425},{"hugoGeneSymbol":"PRAMEF22","entrezGeneId":653606},{"hugoGeneSymbol":"PRAMEF25","entrezGeneId":441873},{"hugoGeneSymbol":"PRAMEF26","entrezGeneId":645359},{"hugoGeneSymbol":"PRAMEF27","entrezGeneId":101929983},{"hugoGeneSymbol":"PRAMEF28P","entrezGeneId":102724742},{"hugoGeneSymbol":"PRAMEF29P","entrezGeneId":729356},{"hugoGeneSymbol":"PRAMEF30P","entrezGeneId":441870},{"hugoGeneSymbol":"PRAMEF31P","entrezGeneId":100129611},{"hugoGeneSymbol":"PRAMEF32P","entrezGeneId":650236},{"hugoGeneSymbol":"PRAMEF33","entrezGeneId":645382},{"hugoGeneSymbol":"PRAMEF34P","entrezGeneId":649324},{"hugoGeneSymbol":"PRAMEF35P","entrezGeneId":100419649},{"hugoGeneSymbol":"PRAMEF36P","entrezGeneId":645354},{"hugoGeneSymbol":"PRAMEF4","entrezGeneId":400735},{"hugoGeneSymbol":"PRAMEF5","entrezGeneId":343068},{"hugoGeneSymbol":"PRAMEF6","entrezGeneId":440561},{"hugoGeneSymbol":"PRAMEF7","entrezGeneId":441871},{"hugoGeneSymbol":"PRAMEF8","entrezGeneId":391002},{"hugoGeneSymbol":"PRAMEF9","entrezGeneId":343070},{"hugoGeneSymbol":"PRAMENP","entrezGeneId":649179},{"hugoGeneSymbol":"PRAP1","entrezGeneId":118471},{"hugoGeneSymbol":"PRB1","entrezGeneId":5542},{"hugoGeneSymbol":"PRB2","entrezGeneId":653247},{"hugoGeneSymbol":"PRB3","entrezGeneId":5544},{"hugoGeneSymbol":"PRB4","entrezGeneId":5545},{"hugoGeneSymbol":"PRBNS","entrezGeneId":100301572},{"hugoGeneSymbol":"PRC1","entrezGeneId":9055},{"hugoGeneSymbol":"PRC1-AS1","entrezGeneId":100507118},{"hugoGeneSymbol":"PRCC","entrezGeneId":5546},{"hugoGeneSymbol":"PRCD","entrezGeneId":768206},{"hugoGeneSymbol":"PRCP","entrezGeneId":5547},{"hugoGeneSymbol":"PRD","entrezGeneId":5548},{"hugoGeneSymbol":"PRDM1","entrezGeneId":639},{"hugoGeneSymbol":"PRDM10","entrezGeneId":56980},{"hugoGeneSymbol":"PRDM11","entrezGeneId":56981},{"hugoGeneSymbol":"PRDM12","entrezGeneId":59335},{"hugoGeneSymbol":"PRDM13","entrezGeneId":59336},{"hugoGeneSymbol":"PRDM14","entrezGeneId":63978},{"hugoGeneSymbol":"PRDM15","entrezGeneId":63977},{"hugoGeneSymbol":"PRDM16","entrezGeneId":63976},{"hugoGeneSymbol":"PRDM2","entrezGeneId":7799},{"hugoGeneSymbol":"PRDM4","entrezGeneId":11108},{"hugoGeneSymbol":"PRDM5","entrezGeneId":11107},{"hugoGeneSymbol":"PRDM6","entrezGeneId":93166},{"hugoGeneSymbol":"PRDM7","entrezGeneId":11105},{"hugoGeneSymbol":"PRDM8","entrezGeneId":56978},{"hugoGeneSymbol":"PRDM9","entrezGeneId":56979},{"hugoGeneSymbol":"PRDX1","entrezGeneId":5052},{"hugoGeneSymbol":"PRDX1P1","entrezGeneId":7002},{"hugoGeneSymbol":"PRDX2","entrezGeneId":7001},{"hugoGeneSymbol":"PRDX2P1","entrezGeneId":359844},{"hugoGeneSymbol":"PRDX2P2","entrezGeneId":646218},{"hugoGeneSymbol":"PRDX2P3","entrezGeneId":100418943},{"hugoGeneSymbol":"PRDX2P4","entrezGeneId":442239},{"hugoGeneSymbol":"PRDX3","entrezGeneId":10935},{"hugoGeneSymbol":"PRDX3P1","entrezGeneId":100419031},{"hugoGeneSymbol":"PRDX3P2","entrezGeneId":100128092},{"hugoGeneSymbol":"PRDX3P3","entrezGeneId":100128902},{"hugoGeneSymbol":"PRDX3P4","entrezGeneId":100418955},{"hugoGeneSymbol":"PRDX4","entrezGeneId":10549},{"hugoGeneSymbol":"PRDX4P1","entrezGeneId":100418949},{"hugoGeneSymbol":"PRDX4P2","entrezGeneId":100418942},{"hugoGeneSymbol":"PRDX5","entrezGeneId":25824},{"hugoGeneSymbol":"PRDX6","entrezGeneId":9588},{"hugoGeneSymbol":"PREB","entrezGeneId":10113},{"hugoGeneSymbol":"PRELID1","entrezGeneId":27166},{"hugoGeneSymbol":"PRELID1P1","entrezGeneId":728666},{"hugoGeneSymbol":"PRELID1P2","entrezGeneId":100419971},{"hugoGeneSymbol":"PRELID1P3","entrezGeneId":100420046},{"hugoGeneSymbol":"PRELID1P4","entrezGeneId":390572},{"hugoGeneSymbol":"PRELID2","entrezGeneId":153768},{"hugoGeneSymbol":"PRELID2P1","entrezGeneId":102606462},{"hugoGeneSymbol":"PRELID3A","entrezGeneId":10650},{"hugoGeneSymbol":"PRELID3B","entrezGeneId":51012},{"hugoGeneSymbol":"PRELID3BP1","entrezGeneId":100129664},{"hugoGeneSymbol":"PRELID3BP10","entrezGeneId":646873},{"hugoGeneSymbol":"PRELID3BP11","entrezGeneId":102723314},{"hugoGeneSymbol":"PRELID3BP2","entrezGeneId":106481667},{"hugoGeneSymbol":"PRELID3BP3","entrezGeneId":100128712},{"hugoGeneSymbol":"PRELID3BP4","entrezGeneId":100420275},{"hugoGeneSymbol":"PRELID3BP5","entrezGeneId":106480242},{"hugoGeneSymbol":"PRELID3BP6","entrezGeneId":100132940},{"hugoGeneSymbol":"PRELID3BP7","entrezGeneId":730974},{"hugoGeneSymbol":"PRELID3BP8","entrezGeneId":106480243},{"hugoGeneSymbol":"PRELID3BP9","entrezGeneId":100420277},{"hugoGeneSymbol":"PRELP","entrezGeneId":5549},{"hugoGeneSymbol":"PREP","entrezGeneId":5550},{"hugoGeneSymbol":"PREPL","entrezGeneId":9581},{"hugoGeneSymbol":"PREX1","entrezGeneId":57580},{"hugoGeneSymbol":"PREX2","entrezGeneId":80243},{"hugoGeneSymbol":"PRF1","entrezGeneId":5551},{"hugoGeneSymbol":"PRG1","entrezGeneId":23574},{"hugoGeneSymbol":"PRG2","entrezGeneId":5553},{"hugoGeneSymbol":"PRG3","entrezGeneId":10394},{"hugoGeneSymbol":"PRG4","entrezGeneId":10216},{"hugoGeneSymbol":"PRH1","entrezGeneId":5554},{"hugoGeneSymbol":"PRH1-PRR4","entrezGeneId":100533464},{"hugoGeneSymbol":"PRH1-TAS2R14","entrezGeneId":106707243},{"hugoGeneSymbol":"PRH2","entrezGeneId":5555},{"hugoGeneSymbol":"PRICKLE1","entrezGeneId":144165},{"hugoGeneSymbol":"PRICKLE2","entrezGeneId":166336},{"hugoGeneSymbol":"PRICKLE2-AS1","entrezGeneId":100652759},{"hugoGeneSymbol":"PRICKLE2-AS2","entrezGeneId":100874242},{"hugoGeneSymbol":"PRICKLE2-AS3","entrezGeneId":100874243},{"hugoGeneSymbol":"PRICKLE3","entrezGeneId":4007},{"hugoGeneSymbol":"PRICKLE4","entrezGeneId":29964},{"hugoGeneSymbol":"PRIM1","entrezGeneId":5557},{"hugoGeneSymbol":"PRIM2","entrezGeneId":5558},{"hugoGeneSymbol":"PRIM2B","entrezGeneId":100996481},{"hugoGeneSymbol":"PRIMA1","entrezGeneId":145270},{"hugoGeneSymbol":"PRIMPOL","entrezGeneId":201973},{"hugoGeneSymbol":"PRINS","entrezGeneId":100169750},{"hugoGeneSymbol":"PRKAA1","entrezGeneId":5562},{"hugoGeneSymbol":"PRKAA2","entrezGeneId":5563},{"hugoGeneSymbol":"PRKAB1","entrezGeneId":5564},{"hugoGeneSymbol":"PRKAB2","entrezGeneId":5565},{"hugoGeneSymbol":"PRKACA","entrezGeneId":5566},{"hugoGeneSymbol":"PRKACB","entrezGeneId":5567},{"hugoGeneSymbol":"PRKACG","entrezGeneId":5568},{"hugoGeneSymbol":"PRKAG1","entrezGeneId":5571},{"hugoGeneSymbol":"PRKAG2","entrezGeneId":51422},{"hugoGeneSymbol":"PRKAG2-AS1","entrezGeneId":100505483},{"hugoGeneSymbol":"PRKAG3","entrezGeneId":53632},{"hugoGeneSymbol":"PRKAR1A","entrezGeneId":5573},{"hugoGeneSymbol":"PRKAR1AP1","entrezGeneId":5574},{"hugoGeneSymbol":"PRKAR1B","entrezGeneId":5575},{"hugoGeneSymbol":"PRKAR2A","entrezGeneId":5576},{"hugoGeneSymbol":"PRKAR2A-AS1","entrezGeneId":100506637},{"hugoGeneSymbol":"PRKAR2B","entrezGeneId":5577},{"hugoGeneSymbol":"PRKCA","entrezGeneId":5578},{"hugoGeneSymbol":"PRKCA-AS1","entrezGeneId":101928001},{"hugoGeneSymbol":"PRKCB","entrezGeneId":5579},{"hugoGeneSymbol":"PRKCD","entrezGeneId":5580},{"hugoGeneSymbol":"PRKCE","entrezGeneId":5581},{"hugoGeneSymbol":"PRKCG","entrezGeneId":5582},{"hugoGeneSymbol":"PRKCH","entrezGeneId":5583},{"hugoGeneSymbol":"PRKCI","entrezGeneId":5584},{"hugoGeneSymbol":"PRKCQ","entrezGeneId":5588},{"hugoGeneSymbol":"PRKCQ-AS1","entrezGeneId":439949},{"hugoGeneSymbol":"PRKCSH","entrezGeneId":5589},{"hugoGeneSymbol":"PRKCZ","entrezGeneId":5590},{"hugoGeneSymbol":"PRKCZ-AS1","entrezGeneId":100506504},{"hugoGeneSymbol":"PRKD1","entrezGeneId":5587},{"hugoGeneSymbol":"PRKD2","entrezGeneId":25865},{"hugoGeneSymbol":"PRKD3","entrezGeneId":23683},{"hugoGeneSymbol":"PRKDC","entrezGeneId":5591},{"hugoGeneSymbol":"PRKG1","entrezGeneId":5592},{"hugoGeneSymbol":"PRKG1-AS1","entrezGeneId":100506939},{"hugoGeneSymbol":"PRKG2","entrezGeneId":5593},{"hugoGeneSymbol":"PRKN","entrezGeneId":5071},{"hugoGeneSymbol":"PRKRA","entrezGeneId":8575},{"hugoGeneSymbol":"PRKRAP1","entrezGeneId":731716},{"hugoGeneSymbol":"PRKRIP1","entrezGeneId":79706},{"hugoGeneSymbol":"PRKX","entrezGeneId":5613},{"hugoGeneSymbol":"PRKX-AS1","entrezGeneId":100873944},{"hugoGeneSymbol":"PRKXP1","entrezGeneId":441733},{"hugoGeneSymbol":"PRKXP2","entrezGeneId":5615},{"hugoGeneSymbol":"PRKY","entrezGeneId":5616},{"hugoGeneSymbol":"PRL","entrezGeneId":5617},{"hugoGeneSymbol":"PRLH","entrezGeneId":51052},{"hugoGeneSymbol":"PRLHR","entrezGeneId":2834},{"hugoGeneSymbol":"PRLR","entrezGeneId":5618},{"hugoGeneSymbol":"PRM1","entrezGeneId":5619},{"hugoGeneSymbol":"PRM2","entrezGeneId":5620},{"hugoGeneSymbol":"PRM3","entrezGeneId":58531},{"hugoGeneSymbol":"PRMT1","entrezGeneId":3276},{"hugoGeneSymbol":"PRMT1P1","entrezGeneId":100420910},{"hugoGeneSymbol":"PRMT2","entrezGeneId":3275},{"hugoGeneSymbol":"PRMT3","entrezGeneId":10196},{"hugoGeneSymbol":"PRMT5","entrezGeneId":10419},{"hugoGeneSymbol":"PRMT5-AS1","entrezGeneId":100505758},{"hugoGeneSymbol":"PRMT5P1","entrezGeneId":100420927},{"hugoGeneSymbol":"PRMT6","entrezGeneId":55170},{"hugoGeneSymbol":"PRMT7","entrezGeneId":54496},{"hugoGeneSymbol":"PRMT8","entrezGeneId":56341},{"hugoGeneSymbol":"PRMT9","entrezGeneId":90826},{"hugoGeneSymbol":"PRNCR1","entrezGeneId":101867536},{"hugoGeneSymbol":"PRND","entrezGeneId":23627},{"hugoGeneSymbol":"PRNP","entrezGeneId":5621},{"hugoGeneSymbol":"PRNT","entrezGeneId":149830},{"hugoGeneSymbol":"PRO1804","entrezGeneId":100133319},{"hugoGeneSymbol":"PRO2268","entrezGeneId":55390},{"hugoGeneSymbol":"PROA","entrezGeneId":8039},{"hugoGeneSymbol":"PROB1","entrezGeneId":389333},{"hugoGeneSymbol":"PROC","entrezGeneId":5624},{"hugoGeneSymbol":"PROCA1","entrezGeneId":147011},{"hugoGeneSymbol":"PROCR","entrezGeneId":10544},{"hugoGeneSymbol":"PRODH","entrezGeneId":5625},{"hugoGeneSymbol":"PRODH2","entrezGeneId":58510},{"hugoGeneSymbol":"PROK1","entrezGeneId":84432},{"hugoGeneSymbol":"PROK2","entrezGeneId":60675},{"hugoGeneSymbol":"PROKR1","entrezGeneId":10887},{"hugoGeneSymbol":"PROKR2","entrezGeneId":128674},{"hugoGeneSymbol":"PROM1","entrezGeneId":8842},{"hugoGeneSymbol":"PROM2","entrezGeneId":150696},{"hugoGeneSymbol":"PROP1","entrezGeneId":5626},{"hugoGeneSymbol":"PRORSD1P","entrezGeneId":344405},{"hugoGeneSymbol":"PRORY","entrezGeneId":100533178},{"hugoGeneSymbol":"PROS1","entrezGeneId":5627},{"hugoGeneSymbol":"PROS2P","entrezGeneId":5628},{"hugoGeneSymbol":"PROSER1","entrezGeneId":80209},{"hugoGeneSymbol":"PROSER2","entrezGeneId":254427},{"hugoGeneSymbol":"PROSER2-AS1","entrezGeneId":219731},{"hugoGeneSymbol":"PROSER3","entrezGeneId":148137},{"hugoGeneSymbol":"PROX1","entrezGeneId":5629},{"hugoGeneSymbol":"PROX1-AS1","entrezGeneId":100505832},{"hugoGeneSymbol":"PROX2","entrezGeneId":283571},{"hugoGeneSymbol":"PROZ","entrezGeneId":8858},{"hugoGeneSymbol":"PRPF18","entrezGeneId":8559},{"hugoGeneSymbol":"PRPF19","entrezGeneId":27339},{"hugoGeneSymbol":"PRPF19P1","entrezGeneId":100422496},{"hugoGeneSymbol":"PRPF3","entrezGeneId":9129},{"hugoGeneSymbol":"PRPF31","entrezGeneId":26121},{"hugoGeneSymbol":"PRPF38A","entrezGeneId":84950},{"hugoGeneSymbol":"PRPF38AP1","entrezGeneId":389935},{"hugoGeneSymbol":"PRPF38AP2","entrezGeneId":100131947},{"hugoGeneSymbol":"PRPF38B","entrezGeneId":55119},{"hugoGeneSymbol":"PRPF39","entrezGeneId":55015},{"hugoGeneSymbol":"PRPF4","entrezGeneId":9128},{"hugoGeneSymbol":"PRPF40A","entrezGeneId":55660},{"hugoGeneSymbol":"PRPF40B","entrezGeneId":25766},{"hugoGeneSymbol":"PRPF4B","entrezGeneId":8899},{"hugoGeneSymbol":"PRPF6","entrezGeneId":24148},{"hugoGeneSymbol":"PRPF8","entrezGeneId":10594},{"hugoGeneSymbol":"PRPH","entrezGeneId":5630},{"hugoGeneSymbol":"PRPH2","entrezGeneId":5961},{"hugoGeneSymbol":"PRPS1","entrezGeneId":5631},{"hugoGeneSymbol":"PRPS1L1","entrezGeneId":221823},{"hugoGeneSymbol":"PRPS1P1","entrezGeneId":100861436},{"hugoGeneSymbol":"PRPS1P2","entrezGeneId":100421295},{"hugoGeneSymbol":"PRPS2","entrezGeneId":5634},{"hugoGeneSymbol":"PRPSAP1","entrezGeneId":5635},{"hugoGeneSymbol":"PRPSAP2","entrezGeneId":5636},{"hugoGeneSymbol":"PRR11","entrezGeneId":55771},{"hugoGeneSymbol":"PRR12","entrezGeneId":57479},{"hugoGeneSymbol":"PRR13","entrezGeneId":54458},{"hugoGeneSymbol":"PRR13P1","entrezGeneId":647195},{"hugoGeneSymbol":"PRR13P2","entrezGeneId":106480303},{"hugoGeneSymbol":"PRR13P3","entrezGeneId":100129201},{"hugoGeneSymbol":"PRR13P4","entrezGeneId":100288008},{"hugoGeneSymbol":"PRR13P5","entrezGeneId":440525},{"hugoGeneSymbol":"PRR13P6","entrezGeneId":112272601},{"hugoGeneSymbol":"PRR13P7","entrezGeneId":100289644},{"hugoGeneSymbol":"PRR14","entrezGeneId":78994},{"hugoGeneSymbol":"PRR14L","entrezGeneId":253143},{"hugoGeneSymbol":"PRR15","entrezGeneId":222171},{"hugoGeneSymbol":"PRR15L","entrezGeneId":79170},{"hugoGeneSymbol":"PRR16","entrezGeneId":51334},{"hugoGeneSymbol":"PRR18","entrezGeneId":285800},{"hugoGeneSymbol":"PRR19","entrezGeneId":284338},{"hugoGeneSymbol":"PRR20A","entrezGeneId":122183},{"hugoGeneSymbol":"PRR20B","entrezGeneId":729233},{"hugoGeneSymbol":"PRR20C","entrezGeneId":729240},{"hugoGeneSymbol":"PRR20D","entrezGeneId":729246},{"hugoGeneSymbol":"PRR20E","entrezGeneId":729250},{"hugoGeneSymbol":"PRR20FP","entrezGeneId":106480416},{"hugoGeneSymbol":"PRR21","entrezGeneId":643905},{"hugoGeneSymbol":"PRR22","entrezGeneId":163154},{"hugoGeneSymbol":"PRR23A","entrezGeneId":729627},{"hugoGeneSymbol":"PRR23B","entrezGeneId":389151},{"hugoGeneSymbol":"PRR23C","entrezGeneId":389152},{"hugoGeneSymbol":"PRR23D1","entrezGeneId":100131608},{"hugoGeneSymbol":"PRR23D2","entrezGeneId":100133251},{"hugoGeneSymbol":"PRR25","entrezGeneId":388199},{"hugoGeneSymbol":"PRR26","entrezGeneId":414235},{"hugoGeneSymbol":"PRR27","entrezGeneId":401137},{"hugoGeneSymbol":"PRR29","entrezGeneId":92340},{"hugoGeneSymbol":"PRR29-AS1","entrezGeneId":400612},{"hugoGeneSymbol":"PRR3","entrezGeneId":80742},{"hugoGeneSymbol":"PRR30","entrezGeneId":339779},{"hugoGeneSymbol":"PRR31","entrezGeneId":101928638},{"hugoGeneSymbol":"PRR32","entrezGeneId":100130613},{"hugoGeneSymbol":"PRR33","entrezGeneId":102724536},{"hugoGeneSymbol":"PRR34","entrezGeneId":55267},{"hugoGeneSymbol":"PRR34-AS1","entrezGeneId":150381},{"hugoGeneSymbol":"PRR35","entrezGeneId":146325},{"hugoGeneSymbol":"PRR36","entrezGeneId":80164},{"hugoGeneSymbol":"PRR4","entrezGeneId":11272},{"hugoGeneSymbol":"PRR5","entrezGeneId":55615},{"hugoGeneSymbol":"PRR5-ARHGAP8","entrezGeneId":553158},{"hugoGeneSymbol":"PRR5L","entrezGeneId":79899},{"hugoGeneSymbol":"PRR7","entrezGeneId":80758},{"hugoGeneSymbol":"PRR7-AS1","entrezGeneId":340037},{"hugoGeneSymbol":"PRR9","entrezGeneId":574414},{"hugoGeneSymbol":"PRRC1","entrezGeneId":133619},{"hugoGeneSymbol":"PRRC2A","entrezGeneId":7916},{"hugoGeneSymbol":"PRRC2B","entrezGeneId":84726},{"hugoGeneSymbol":"PRRC2C","entrezGeneId":23215},{"hugoGeneSymbol":"PRRC2CP1","entrezGeneId":360018},{"hugoGeneSymbol":"PRRG1","entrezGeneId":5638},{"hugoGeneSymbol":"PRRG2","entrezGeneId":5639},{"hugoGeneSymbol":"PRRG3","entrezGeneId":79057},{"hugoGeneSymbol":"PRRG4","entrezGeneId":79056},{"hugoGeneSymbol":"PRRT1","entrezGeneId":80863},{"hugoGeneSymbol":"PRRT1B","entrezGeneId":642515},{"hugoGeneSymbol":"PRRT2","entrezGeneId":112476},{"hugoGeneSymbol":"PRRT3","entrezGeneId":285368},{"hugoGeneSymbol":"PRRT3-AS1","entrezGeneId":100874032},{"hugoGeneSymbol":"PRRT4","entrezGeneId":401399},{"hugoGeneSymbol":"PRRX1","entrezGeneId":5396},{"hugoGeneSymbol":"PRRX2","entrezGeneId":51450},{"hugoGeneSymbol":"PRRX2-AS1","entrezGeneId":101929437},{"hugoGeneSymbol":"PRS","entrezGeneId":5640},{"hugoGeneSymbol":"PRSM2","entrezGeneId":5643},{"hugoGeneSymbol":"PRSS1","entrezGeneId":5644},{"hugoGeneSymbol":"PRSS12","entrezGeneId":8492},{"hugoGeneSymbol":"PRSS16","entrezGeneId":10279},{"hugoGeneSymbol":"PRSS2","entrezGeneId":5645},{"hugoGeneSymbol":"PRSS21","entrezGeneId":10942},{"hugoGeneSymbol":"PRSS22","entrezGeneId":64063},{"hugoGeneSymbol":"PRSS23","entrezGeneId":11098},{"hugoGeneSymbol":"PRSS27","entrezGeneId":83886},{"hugoGeneSymbol":"PRSS29P","entrezGeneId":123787},{"hugoGeneSymbol":"PRSS3","entrezGeneId":5646},{"hugoGeneSymbol":"PRSS30P","entrezGeneId":124221},{"hugoGeneSymbol":"PRSS33","entrezGeneId":260429},{"hugoGeneSymbol":"PRSS35","entrezGeneId":167681},{"hugoGeneSymbol":"PRSS36","entrezGeneId":146547},{"hugoGeneSymbol":"PRSS37","entrezGeneId":136242},{"hugoGeneSymbol":"PRSS38","entrezGeneId":339501},{"hugoGeneSymbol":"PRSS3P1","entrezGeneId":168330},{"hugoGeneSymbol":"PRSS3P2","entrezGeneId":154754},{"hugoGeneSymbol":"PRSS3P3","entrezGeneId":136540},{"hugoGeneSymbol":"PRSS3P4","entrezGeneId":106480774},{"hugoGeneSymbol":"PRSS40A","entrezGeneId":150527},{"hugoGeneSymbol":"PRSS40B","entrezGeneId":646743},{"hugoGeneSymbol":"PRSS41","entrezGeneId":360226},{"hugoGeneSymbol":"PRSS42","entrezGeneId":339906},{"hugoGeneSymbol":"PRSS43","entrezGeneId":100288960},{"hugoGeneSymbol":"PRSS44","entrezGeneId":729756},{"hugoGeneSymbol":"PRSS45","entrezGeneId":377047},{"hugoGeneSymbol":"PRSS46P","entrezGeneId":100287362},{"hugoGeneSymbol":"PRSS47","entrezGeneId":138652},{"hugoGeneSymbol":"PRSS48","entrezGeneId":345062},{"hugoGeneSymbol":"PRSS50","entrezGeneId":29122},{"hugoGeneSymbol":"PRSS51","entrezGeneId":346702},{"hugoGeneSymbol":"PRSS52P","entrezGeneId":100419209},{"hugoGeneSymbol":"PRSS53","entrezGeneId":339105},{"hugoGeneSymbol":"PRSS54","entrezGeneId":221191},{"hugoGeneSymbol":"PRSS55","entrezGeneId":203074},{"hugoGeneSymbol":"PRSS56","entrezGeneId":646960},{"hugoGeneSymbol":"PRSS57","entrezGeneId":400668},{"hugoGeneSymbol":"PRSS58","entrezGeneId":136541},{"hugoGeneSymbol":"PRSS8","entrezGeneId":5652},{"hugoGeneSymbol":"PRTFDC1","entrezGeneId":56952},{"hugoGeneSymbol":"PRTG","entrezGeneId":283659},{"hugoGeneSymbol":"PRTN3","entrezGeneId":5657},{"hugoGeneSymbol":"PRUNE1","entrezGeneId":58497},{"hugoGeneSymbol":"PRUNE2","entrezGeneId":158471},{"hugoGeneSymbol":"PRUNEP1","entrezGeneId":100129595},{"hugoGeneSymbol":"PRX","entrezGeneId":57716},{"hugoGeneSymbol":"PRY","entrezGeneId":9081},{"hugoGeneSymbol":"PRY2","entrezGeneId":442862},{"hugoGeneSymbol":"PRYP1","entrezGeneId":442863},{"hugoGeneSymbol":"PRYP2","entrezGeneId":442864},{"hugoGeneSymbol":"PRYP3","entrezGeneId":442865},{"hugoGeneSymbol":"PRYP4","entrezGeneId":442866},{"hugoGeneSymbol":"PRYP5","entrezGeneId":106478933},{"hugoGeneSymbol":"PRYP6","entrezGeneId":106480721},{"hugoGeneSymbol":"PSAP","entrezGeneId":5660},{"hugoGeneSymbol":"PSAPL1","entrezGeneId":768239},{"hugoGeneSymbol":"PSAT1","entrezGeneId":29968},{"hugoGeneSymbol":"PSAT1P1","entrezGeneId":137133},{"hugoGeneSymbol":"PSAT1P2","entrezGeneId":107133519},{"hugoGeneSymbol":"PSAT1P3","entrezGeneId":729779},{"hugoGeneSymbol":"PSAT1P4","entrezGeneId":100287630},{"hugoGeneSymbol":"PSBP1","entrezGeneId":5661},{"hugoGeneSymbol":"PSC","entrezGeneId":100653366},{"hugoGeneSymbol":"PSCA","entrezGeneId":8000},{"hugoGeneSymbol":"PSD","entrezGeneId":5662},{"hugoGeneSymbol":"PSD2","entrezGeneId":84249},{"hugoGeneSymbol":"PSD2-AS1","entrezGeneId":101929696},{"hugoGeneSymbol":"PSD3","entrezGeneId":23362},{"hugoGeneSymbol":"PSD4","entrezGeneId":23550},{"hugoGeneSymbol":"PSEN1","entrezGeneId":5663},{"hugoGeneSymbol":"PSEN2","entrezGeneId":5664},{"hugoGeneSymbol":"PSENEN","entrezGeneId":55851},{"hugoGeneSymbol":"PSG1","entrezGeneId":5669},{"hugoGeneSymbol":"PSG10P","entrezGeneId":653492},{"hugoGeneSymbol":"PSG11","entrezGeneId":5680},{"hugoGeneSymbol":"PSG2","entrezGeneId":5670},{"hugoGeneSymbol":"PSG3","entrezGeneId":5671},{"hugoGeneSymbol":"PSG4","entrezGeneId":5672},{"hugoGeneSymbol":"PSG5","entrezGeneId":5673},{"hugoGeneSymbol":"PSG6","entrezGeneId":5675},{"hugoGeneSymbol":"PSG7","entrezGeneId":5676},{"hugoGeneSymbol":"PSG8","entrezGeneId":440533},{"hugoGeneSymbol":"PSG8-AS1","entrezGeneId":100289650},{"hugoGeneSymbol":"PSG9","entrezGeneId":5678},{"hugoGeneSymbol":"PSHK2","entrezGeneId":541461},{"hugoGeneSymbol":"PSIP1","entrezGeneId":11168},{"hugoGeneSymbol":"PSIP1P1","entrezGeneId":353329},{"hugoGeneSymbol":"PSIP1P2","entrezGeneId":360022},{"hugoGeneSymbol":"PSKH1","entrezGeneId":5681},{"hugoGeneSymbol":"PSKH2","entrezGeneId":85481},{"hugoGeneSymbol":"PSMA1","entrezGeneId":5682},{"hugoGeneSymbol":"PSMA2","entrezGeneId":5683},{"hugoGeneSymbol":"PSMA2P1","entrezGeneId":100130923},{"hugoGeneSymbol":"PSMA2P2","entrezGeneId":100131775},{"hugoGeneSymbol":"PSMA2P3","entrezGeneId":79055},{"hugoGeneSymbol":"PSMA3","entrezGeneId":5684},{"hugoGeneSymbol":"PSMA3-AS1","entrezGeneId":379025},{"hugoGeneSymbol":"PSMA3P","entrezGeneId":326617},{"hugoGeneSymbol":"PSMA4","entrezGeneId":5685},{"hugoGeneSymbol":"PSMA5","entrezGeneId":5686},{"hugoGeneSymbol":"PSMA6","entrezGeneId":5687},{"hugoGeneSymbol":"PSMA6P1","entrezGeneId":64596},{"hugoGeneSymbol":"PSMA6P2","entrezGeneId":729412},{"hugoGeneSymbol":"PSMA6P3","entrezGeneId":100874510},{"hugoGeneSymbol":"PSMA6P4","entrezGeneId":121906},{"hugoGeneSymbol":"PSMA7","entrezGeneId":5688},{"hugoGeneSymbol":"PSMA7P","entrezGeneId":158441},{"hugoGeneSymbol":"PSMA8","entrezGeneId":143471},{"hugoGeneSymbol":"PSMAGEA","entrezGeneId":139041},{"hugoGeneSymbol":"PSMB1","entrezGeneId":5689},{"hugoGeneSymbol":"PSMB10","entrezGeneId":5699},{"hugoGeneSymbol":"PSMB11","entrezGeneId":122706},{"hugoGeneSymbol":"PSMB2","entrezGeneId":5690},{"hugoGeneSymbol":"PSMB3","entrezGeneId":5691},{"hugoGeneSymbol":"PSMB3P1","entrezGeneId":121131},{"hugoGeneSymbol":"PSMB3P2","entrezGeneId":130700},{"hugoGeneSymbol":"PSMB4","entrezGeneId":5692},{"hugoGeneSymbol":"PSMB5","entrezGeneId":5693},{"hugoGeneSymbol":"PSMB6","entrezGeneId":5694},{"hugoGeneSymbol":"PSMB7","entrezGeneId":5695},{"hugoGeneSymbol":"PSMB7P1","entrezGeneId":100422289},{"hugoGeneSymbol":"PSMB8","entrezGeneId":5696},{"hugoGeneSymbol":"PSMB8-AS1","entrezGeneId":100507463},{"hugoGeneSymbol":"PSMB9","entrezGeneId":5698},{"hugoGeneSymbol":"PSMC1","entrezGeneId":5700},{"hugoGeneSymbol":"PSMC1P1","entrezGeneId":151645},{"hugoGeneSymbol":"PSMC1P10","entrezGeneId":388925},{"hugoGeneSymbol":"PSMC1P11","entrezGeneId":442153},{"hugoGeneSymbol":"PSMC1P12","entrezGeneId":644094},{"hugoGeneSymbol":"PSMC1P13","entrezGeneId":100422305},{"hugoGeneSymbol":"PSMC1P2","entrezGeneId":442291},{"hugoGeneSymbol":"PSMC1P3","entrezGeneId":392100},{"hugoGeneSymbol":"PSMC1P4","entrezGeneId":345645},{"hugoGeneSymbol":"PSMC1P5","entrezGeneId":106480732},{"hugoGeneSymbol":"PSMC1P6","entrezGeneId":643766},{"hugoGeneSymbol":"PSMC1P7","entrezGeneId":646085},{"hugoGeneSymbol":"PSMC1P8","entrezGeneId":390297},{"hugoGeneSymbol":"PSMC1P9","entrezGeneId":643668},{"hugoGeneSymbol":"PSMC2","entrezGeneId":5701},{"hugoGeneSymbol":"PSMC3","entrezGeneId":5702},{"hugoGeneSymbol":"PSMC3IP","entrezGeneId":29893},{"hugoGeneSymbol":"PSMC3P1","entrezGeneId":5703},{"hugoGeneSymbol":"PSMC4","entrezGeneId":5704},{"hugoGeneSymbol":"PSMC5","entrezGeneId":5705},{"hugoGeneSymbol":"PSMC6","entrezGeneId":5706},{"hugoGeneSymbol":"PSMC6P1","entrezGeneId":266723},{"hugoGeneSymbol":"PSMC6P2","entrezGeneId":160410},{"hugoGeneSymbol":"PSMC6P3","entrezGeneId":100128218},{"hugoGeneSymbol":"PSMD1","entrezGeneId":5707},{"hugoGeneSymbol":"PSMD10","entrezGeneId":5716},{"hugoGeneSymbol":"PSMD10P1","entrezGeneId":170541},{"hugoGeneSymbol":"PSMD10P2","entrezGeneId":280644},{"hugoGeneSymbol":"PSMD10P3","entrezGeneId":338091},{"hugoGeneSymbol":"PSMD11","entrezGeneId":5717},{"hugoGeneSymbol":"PSMD12","entrezGeneId":5718},{"hugoGeneSymbol":"PSMD12P","entrezGeneId":317753},{"hugoGeneSymbol":"PSMD13","entrezGeneId":5719},{"hugoGeneSymbol":"PSMD14","entrezGeneId":10213},{"hugoGeneSymbol":"PSMD2","entrezGeneId":5708},{"hugoGeneSymbol":"PSMD2P1","entrezGeneId":266783},{"hugoGeneSymbol":"PSMD3","entrezGeneId":5709},{"hugoGeneSymbol":"PSMD4","entrezGeneId":5710},{"hugoGeneSymbol":"PSMD4P1","entrezGeneId":54035},{"hugoGeneSymbol":"PSMD5","entrezGeneId":5711},{"hugoGeneSymbol":"PSMD6","entrezGeneId":9861},{"hugoGeneSymbol":"PSMD6-AS1","entrezGeneId":109729140},{"hugoGeneSymbol":"PSMD6-AS2","entrezGeneId":100507062},{"hugoGeneSymbol":"PSMD7","entrezGeneId":5713},{"hugoGeneSymbol":"PSMD7P1","entrezGeneId":280637},{"hugoGeneSymbol":"PSMD8","entrezGeneId":5714},{"hugoGeneSymbol":"PSMD8P1","entrezGeneId":100422411},{"hugoGeneSymbol":"PSMD9","entrezGeneId":5715},{"hugoGeneSymbol":"PSME1","entrezGeneId":5720},{"hugoGeneSymbol":"PSME2","entrezGeneId":5721},{"hugoGeneSymbol":"PSME2P1","entrezGeneId":257093},{"hugoGeneSymbol":"PSME2P2","entrezGeneId":338099},{"hugoGeneSymbol":"PSME2P3","entrezGeneId":338095},{"hugoGeneSymbol":"PSME2P4","entrezGeneId":338096},{"hugoGeneSymbol":"PSME2P5","entrezGeneId":338097},{"hugoGeneSymbol":"PSME2P6","entrezGeneId":338098},{"hugoGeneSymbol":"PSME3","entrezGeneId":10197},{"hugoGeneSymbol":"PSME4","entrezGeneId":23198},{"hugoGeneSymbol":"PSMF1","entrezGeneId":9491},{"hugoGeneSymbol":"PSMG1","entrezGeneId":8624},{"hugoGeneSymbol":"PSMG2","entrezGeneId":56984},{"hugoGeneSymbol":"PSMG3","entrezGeneId":84262},{"hugoGeneSymbol":"PSMG3-AS1","entrezGeneId":114796},{"hugoGeneSymbol":"PSMG4","entrezGeneId":389362},{"hugoGeneSymbol":"PSMNSW","entrezGeneId":100653383},{"hugoGeneSymbol":"PSNP2","entrezGeneId":619408},{"hugoGeneSymbol":"PSNP3","entrezGeneId":100038248},{"hugoGeneSymbol":"PSORS10","entrezGeneId":503613},{"hugoGeneSymbol":"PSORS11","entrezGeneId":100271719},{"hugoGeneSymbol":"PSORS1C1","entrezGeneId":170679},{"hugoGeneSymbol":"PSORS1C2","entrezGeneId":170680},{"hugoGeneSymbol":"PSORS1C3","entrezGeneId":100130889},{"hugoGeneSymbol":"PSORS3","entrezGeneId":7889},{"hugoGeneSymbol":"PSORS4","entrezGeneId":10547},{"hugoGeneSymbol":"PSORS5","entrezGeneId":63870},{"hugoGeneSymbol":"PSORS6","entrezGeneId":63869},{"hugoGeneSymbol":"PSORS7","entrezGeneId":65245},{"hugoGeneSymbol":"PSORS8","entrezGeneId":140454},{"hugoGeneSymbol":"PSORS9","entrezGeneId":359825},{"hugoGeneSymbol":"PSPC1","entrezGeneId":55269},{"hugoGeneSymbol":"PSPC1-AS2","entrezGeneId":109729130},{"hugoGeneSymbol":"PSPC1P1","entrezGeneId":642395},{"hugoGeneSymbol":"PSPC1P2","entrezGeneId":100873875},{"hugoGeneSymbol":"PSPH","entrezGeneId":5723},{"hugoGeneSymbol":"PSPHP1","entrezGeneId":8781},{"hugoGeneSymbol":"PSPN","entrezGeneId":5623},{"hugoGeneSymbol":"PSRC1","entrezGeneId":84722},{"hugoGeneSymbol":"PSS","entrezGeneId":780904},{"hugoGeneSymbol":"PSTK","entrezGeneId":118672},{"hugoGeneSymbol":"PSTPIP1","entrezGeneId":9051},{"hugoGeneSymbol":"PSTPIP2","entrezGeneId":9050},{"hugoGeneSymbol":"PTAFR","entrezGeneId":5724},{"hugoGeneSymbol":"PTAR1","entrezGeneId":375743},{"hugoGeneSymbol":"PTBP1","entrezGeneId":5725},{"hugoGeneSymbol":"PTBP1P","entrezGeneId":122888},{"hugoGeneSymbol":"PTBP2","entrezGeneId":58155},{"hugoGeneSymbol":"PTBP3","entrezGeneId":9991},{"hugoGeneSymbol":"PTCD1","entrezGeneId":26024},{"hugoGeneSymbol":"PTCD2","entrezGeneId":79810},{"hugoGeneSymbol":"PTCD2P1","entrezGeneId":100131302},{"hugoGeneSymbol":"PTCD2P2","entrezGeneId":100132487},{"hugoGeneSymbol":"PTCD3","entrezGeneId":55037},{"hugoGeneSymbol":"PTCH1","entrezGeneId":5727},{"hugoGeneSymbol":"PTCH2","entrezGeneId":8643},{"hugoGeneSymbol":"PTCHD1","entrezGeneId":139411},{"hugoGeneSymbol":"PTCHD1-AS","entrezGeneId":100873065},{"hugoGeneSymbol":"PTCHD3","entrezGeneId":374308},{"hugoGeneSymbol":"PTCHD3P1","entrezGeneId":387647},{"hugoGeneSymbol":"PTCHD3P2","entrezGeneId":100533664},{"hugoGeneSymbol":"PTCHD3P3","entrezGeneId":100533665},{"hugoGeneSymbol":"PTCHD4","entrezGeneId":442213},{"hugoGeneSymbol":"PTCPRN","entrezGeneId":79052},{"hugoGeneSymbol":"PTCRA","entrezGeneId":171558},{"hugoGeneSymbol":"PTCSC1","entrezGeneId":100302522},{"hugoGeneSymbol":"PTCSC2","entrezGeneId":101928337},{"hugoGeneSymbol":"PTCSC3","entrezGeneId":100886964},{"hugoGeneSymbol":"PTDSS1","entrezGeneId":9791},{"hugoGeneSymbol":"PTDSS2","entrezGeneId":81490},{"hugoGeneSymbol":"PTEN","entrezGeneId":5728},{"hugoGeneSymbol":"PTENP1","entrezGeneId":11191},{"hugoGeneSymbol":"PTENP1-AS","entrezGeneId":101243555},{"hugoGeneSymbol":"PTER","entrezGeneId":9317},{"hugoGeneSymbol":"PTF1A","entrezGeneId":256297},{"hugoGeneSymbol":"PTGDR","entrezGeneId":5729},{"hugoGeneSymbol":"PTGDR2","entrezGeneId":11251},{"hugoGeneSymbol":"PTGDS","entrezGeneId":5730},{"hugoGeneSymbol":"PTGER1","entrezGeneId":5731},{"hugoGeneSymbol":"PTGER2","entrezGeneId":5732},{"hugoGeneSymbol":"PTGER3","entrezGeneId":5733},{"hugoGeneSymbol":"PTGER4","entrezGeneId":5734},{"hugoGeneSymbol":"PTGER4P1","entrezGeneId":5735},{"hugoGeneSymbol":"PTGER4P2","entrezGeneId":5736},{"hugoGeneSymbol":"PTGER4P2-CDK2AP2P2","entrezGeneId":442421},{"hugoGeneSymbol":"PTGER4P3","entrezGeneId":100874378},{"hugoGeneSymbol":"PTGES","entrezGeneId":9536},{"hugoGeneSymbol":"PTGES2","entrezGeneId":80142},{"hugoGeneSymbol":"PTGES2-AS1","entrezGeneId":389791},{"hugoGeneSymbol":"PTGES3","entrezGeneId":10728},{"hugoGeneSymbol":"PTGES3L","entrezGeneId":100885848},{"hugoGeneSymbol":"PTGES3L-AARSD1","entrezGeneId":100885850},{"hugoGeneSymbol":"PTGES3P1","entrezGeneId":284672},{"hugoGeneSymbol":"PTGES3P2","entrezGeneId":101929293},{"hugoGeneSymbol":"PTGES3P3","entrezGeneId":441050},{"hugoGeneSymbol":"PTGES3P4","entrezGeneId":106480775},{"hugoGeneSymbol":"PTGES3P5","entrezGeneId":106480359},{"hugoGeneSymbol":"PTGFR","entrezGeneId":5737},{"hugoGeneSymbol":"PTGFRN","entrezGeneId":5738},{"hugoGeneSymbol":"PTGIR","entrezGeneId":5739},{"hugoGeneSymbol":"PTGIS","entrezGeneId":5740},{"hugoGeneSymbol":"PTGR1","entrezGeneId":22949},{"hugoGeneSymbol":"PTGR2","entrezGeneId":145482},{"hugoGeneSymbol":"PTGS1","entrezGeneId":5742},{"hugoGeneSymbol":"PTGS2","entrezGeneId":5743},{"hugoGeneSymbol":"PTH","entrezGeneId":5741},{"hugoGeneSymbol":"PTH1R","entrezGeneId":5745},{"hugoGeneSymbol":"PTH2","entrezGeneId":113091},{"hugoGeneSymbol":"PTH2R","entrezGeneId":5746},{"hugoGeneSymbol":"PTHLH","entrezGeneId":5744},{"hugoGeneSymbol":"PTK2","entrezGeneId":5747},{"hugoGeneSymbol":"PTK2B","entrezGeneId":2185},{"hugoGeneSymbol":"PTK6","entrezGeneId":5753},{"hugoGeneSymbol":"PTK7","entrezGeneId":5754},{"hugoGeneSymbol":"PTLAH","entrezGeneId":8830},{"hugoGeneSymbol":"PTLS","entrezGeneId":100038247},{"hugoGeneSymbol":"PTMA","entrezGeneId":5757},{"hugoGeneSymbol":"PTMAP1","entrezGeneId":5758},{"hugoGeneSymbol":"PTMAP2","entrezGeneId":5759},{"hugoGeneSymbol":"PTMAP3","entrezGeneId":5760},{"hugoGeneSymbol":"PTMAP4","entrezGeneId":5761},{"hugoGeneSymbol":"PTMAP5","entrezGeneId":150928},{"hugoGeneSymbol":"PTMAP6","entrezGeneId":170542},{"hugoGeneSymbol":"PTMAP7","entrezGeneId":326626},{"hugoGeneSymbol":"PTMAP8","entrezGeneId":728873},{"hugoGeneSymbol":"PTMS","entrezGeneId":5763},{"hugoGeneSymbol":"PTN","entrezGeneId":5764},{"hugoGeneSymbol":"PTOS1","entrezGeneId":5765},{"hugoGeneSymbol":"PTOS2","entrezGeneId":54115},{"hugoGeneSymbol":"PTOV1","entrezGeneId":53635},{"hugoGeneSymbol":"PTOV1-AS1","entrezGeneId":100506033},{"hugoGeneSymbol":"PTOV1-AS2","entrezGeneId":101928378},{"hugoGeneSymbol":"PTP4A1","entrezGeneId":7803},{"hugoGeneSymbol":"PTP4A1P1","entrezGeneId":100421652},{"hugoGeneSymbol":"PTP4A1P2","entrezGeneId":100499563},{"hugoGeneSymbol":"PTP4A1P3","entrezGeneId":100861469},{"hugoGeneSymbol":"PTP4A1P4","entrezGeneId":100129564},{"hugoGeneSymbol":"PTP4A1P5","entrezGeneId":100289380},{"hugoGeneSymbol":"PTP4A1P6","entrezGeneId":100129472},{"hugoGeneSymbol":"PTP4A1P7","entrezGeneId":100421681},{"hugoGeneSymbol":"PTP4A2","entrezGeneId":8073},{"hugoGeneSymbol":"PTP4A2P1","entrezGeneId":5767},{"hugoGeneSymbol":"PTP4A2P2","entrezGeneId":5769},{"hugoGeneSymbol":"PTP4A3","entrezGeneId":11156},{"hugoGeneSymbol":"PTPA","entrezGeneId":5524},{"hugoGeneSymbol":"PTPDC1","entrezGeneId":138639},{"hugoGeneSymbol":"PTPMT1","entrezGeneId":114971},{"hugoGeneSymbol":"PTPN1","entrezGeneId":5770},{"hugoGeneSymbol":"PTPN11","entrezGeneId":5781},{"hugoGeneSymbol":"PTPN12","entrezGeneId":5782},{"hugoGeneSymbol":"PTPN13","entrezGeneId":5783},{"hugoGeneSymbol":"PTPN14","entrezGeneId":5784},{"hugoGeneSymbol":"PTPN18","entrezGeneId":26469},{"hugoGeneSymbol":"PTPN2","entrezGeneId":5771},{"hugoGeneSymbol":"PTPN20","entrezGeneId":26095},{"hugoGeneSymbol":"PTPN20CP","entrezGeneId":653045},{"hugoGeneSymbol":"PTPN21","entrezGeneId":11099},{"hugoGeneSymbol":"PTPN22","entrezGeneId":26191},{"hugoGeneSymbol":"PTPN23","entrezGeneId":25930},{"hugoGeneSymbol":"PTPN2P1","entrezGeneId":646981},{"hugoGeneSymbol":"PTPN2P2","entrezGeneId":646758},{"hugoGeneSymbol":"PTPN3","entrezGeneId":5774},{"hugoGeneSymbol":"PTPN4","entrezGeneId":5775},{"hugoGeneSymbol":"PTPN5","entrezGeneId":84867},{"hugoGeneSymbol":"PTPN6","entrezGeneId":5777},{"hugoGeneSymbol":"PTPN7","entrezGeneId":5778},{"hugoGeneSymbol":"PTPN9","entrezGeneId":5780},{"hugoGeneSymbol":"PTPRA","entrezGeneId":5786},{"hugoGeneSymbol":"PTPRB","entrezGeneId":5787},{"hugoGeneSymbol":"PTPRC","entrezGeneId":5788},{"hugoGeneSymbol":"PTPRCAP","entrezGeneId":5790},{"hugoGeneSymbol":"PTPRD","entrezGeneId":5789},{"hugoGeneSymbol":"PTPRD-AS1","entrezGeneId":101929407},{"hugoGeneSymbol":"PTPRD-AS2","entrezGeneId":101929428},{"hugoGeneSymbol":"PTPRE","entrezGeneId":5791},{"hugoGeneSymbol":"PTPRF","entrezGeneId":5792},{"hugoGeneSymbol":"PTPRG","entrezGeneId":5793},{"hugoGeneSymbol":"PTPRG-AS1","entrezGeneId":100506994},{"hugoGeneSymbol":"PTPRH","entrezGeneId":5794},{"hugoGeneSymbol":"PTPRJ","entrezGeneId":5795},{"hugoGeneSymbol":"PTPRJ-AS1","entrezGeneId":104326192},{"hugoGeneSymbol":"PTPRK","entrezGeneId":5796},{"hugoGeneSymbol":"PTPRM","entrezGeneId":5797},{"hugoGeneSymbol":"PTPRN","entrezGeneId":5798},{"hugoGeneSymbol":"PTPRN2","entrezGeneId":5799},{"hugoGeneSymbol":"PTPRO","entrezGeneId":5800},{"hugoGeneSymbol":"PTPRQ","entrezGeneId":374462},{"hugoGeneSymbol":"PTPRR","entrezGeneId":5801},{"hugoGeneSymbol":"PTPRS","entrezGeneId":5802},{"hugoGeneSymbol":"PTPRT","entrezGeneId":11122},{"hugoGeneSymbol":"PTPRU","entrezGeneId":10076},{"hugoGeneSymbol":"PTPRVP","entrezGeneId":148713},{"hugoGeneSymbol":"PTPRZ1","entrezGeneId":5803},{"hugoGeneSymbol":"PTPRZ2","entrezGeneId":5804},{"hugoGeneSymbol":"PTRH1","entrezGeneId":138428},{"hugoGeneSymbol":"PTRH2","entrezGeneId":51651},{"hugoGeneSymbol":"PTRHD1","entrezGeneId":391356},{"hugoGeneSymbol":"PTS","entrezGeneId":5805},{"hugoGeneSymbol":"PTS-P1","entrezGeneId":57009},{"hugoGeneSymbol":"PTTG1","entrezGeneId":9232},{"hugoGeneSymbol":"PTTG1IP","entrezGeneId":754},{"hugoGeneSymbol":"PTTG2","entrezGeneId":10744},{"hugoGeneSymbol":"PTTG3P","entrezGeneId":26255},{"hugoGeneSymbol":"PTTG4P","entrezGeneId":326315},{"hugoGeneSymbol":"PTX3","entrezGeneId":5806},{"hugoGeneSymbol":"PTX4","entrezGeneId":390667},{"hugoGeneSymbol":"PUDP","entrezGeneId":8226},{"hugoGeneSymbol":"PUDPP1","entrezGeneId":327658},{"hugoGeneSymbol":"PUDPP2","entrezGeneId":327659},{"hugoGeneSymbol":"PUDPP3","entrezGeneId":391242},{"hugoGeneSymbol":"PUF60","entrezGeneId":22827},{"hugoGeneSymbol":"PUJO","entrezGeneId":7945},{"hugoGeneSymbol":"PUM1","entrezGeneId":9698},{"hugoGeneSymbol":"PUM2","entrezGeneId":23369},{"hugoGeneSymbol":"PUM3","entrezGeneId":9933},{"hugoGeneSymbol":"PURA","entrezGeneId":5813},{"hugoGeneSymbol":"PURAQTL1","entrezGeneId":100302559},{"hugoGeneSymbol":"PURB","entrezGeneId":5814},{"hugoGeneSymbol":"PURG","entrezGeneId":29942},{"hugoGeneSymbol":"PURPL","entrezGeneId":643401},{"hugoGeneSymbol":"PUS1","entrezGeneId":80324},{"hugoGeneSymbol":"PUS10","entrezGeneId":150962},{"hugoGeneSymbol":"PUS3","entrezGeneId":83480},{"hugoGeneSymbol":"PUS7","entrezGeneId":54517},{"hugoGeneSymbol":"PUS7L","entrezGeneId":83448},{"hugoGeneSymbol":"PUS7P1","entrezGeneId":100421790},{"hugoGeneSymbol":"PUSL1","entrezGeneId":126789},{"hugoGeneSymbol":"PVALB","entrezGeneId":5816},{"hugoGeneSymbol":"PVALEF","entrezGeneId":388428},{"hugoGeneSymbol":"PVNH3","entrezGeneId":100302681},{"hugoGeneSymbol":"PVNH5","entrezGeneId":100302682},{"hugoGeneSymbol":"PVOP1","entrezGeneId":100312952},{"hugoGeneSymbol":"PVOP2","entrezGeneId":100312955},{"hugoGeneSymbol":"PVR","entrezGeneId":5817},{"hugoGeneSymbol":"PVRIG","entrezGeneId":79037},{"hugoGeneSymbol":"PVRIG2P","entrezGeneId":101752334},{"hugoGeneSymbol":"PVT1","entrezGeneId":5820},{"hugoGeneSymbol":"PWAR1","entrezGeneId":145624},{"hugoGeneSymbol":"PWAR4","entrezGeneId":347745},{"hugoGeneSymbol":"PWAR5","entrezGeneId":8123},{"hugoGeneSymbol":"PWAR6","entrezGeneId":100506965},{"hugoGeneSymbol":"PWARSN","entrezGeneId":347746},{"hugoGeneSymbol":"PWP1","entrezGeneId":11137},{"hugoGeneSymbol":"PWP2","entrezGeneId":5822},{"hugoGeneSymbol":"PWRN1","entrezGeneId":791114},{"hugoGeneSymbol":"PWRN2","entrezGeneId":791115},{"hugoGeneSymbol":"PWRN3","entrezGeneId":101928840},{"hugoGeneSymbol":"PWRN4","entrezGeneId":105370731},{"hugoGeneSymbol":"PWWP2A","entrezGeneId":114825},{"hugoGeneSymbol":"PWWP2AP1","entrezGeneId":100129459},{"hugoGeneSymbol":"PWWP2B","entrezGeneId":170394},{"hugoGeneSymbol":"PXDC1","entrezGeneId":221749},{"hugoGeneSymbol":"PXDN","entrezGeneId":7837},{"hugoGeneSymbol":"PXDNL","entrezGeneId":137902},{"hugoGeneSymbol":"PXK","entrezGeneId":54899},{"hugoGeneSymbol":"PXMP2","entrezGeneId":5827},{"hugoGeneSymbol":"PXMP4","entrezGeneId":11264},{"hugoGeneSymbol":"PXN","entrezGeneId":5829},{"hugoGeneSymbol":"PXN-AS1","entrezGeneId":100506649},{"hugoGeneSymbol":"PXT1","entrezGeneId":222659},{"hugoGeneSymbol":"PXYLP1","entrezGeneId":92370},{"hugoGeneSymbol":"PYCARD","entrezGeneId":29108},{"hugoGeneSymbol":"PYCARD-AS1","entrezGeneId":100652740},{"hugoGeneSymbol":"PYCR1","entrezGeneId":5831},{"hugoGeneSymbol":"PYCR2","entrezGeneId":29920},{"hugoGeneSymbol":"PYCR3","entrezGeneId":65263},{"hugoGeneSymbol":"PYDC1","entrezGeneId":260434},{"hugoGeneSymbol":"PYDC2","entrezGeneId":152138},{"hugoGeneSymbol":"PYDC5","entrezGeneId":107181291},{"hugoGeneSymbol":"PYGB","entrezGeneId":5834},{"hugoGeneSymbol":"PYGL","entrezGeneId":5836},{"hugoGeneSymbol":"PYGM","entrezGeneId":5837},{"hugoGeneSymbol":"PYGO1","entrezGeneId":26108},{"hugoGeneSymbol":"PYGO2","entrezGeneId":90780},{"hugoGeneSymbol":"PYHIN1","entrezGeneId":149628},{"hugoGeneSymbol":"PYHIN5P","entrezGeneId":646377},{"hugoGeneSymbol":"PYM1","entrezGeneId":84305},{"hugoGeneSymbol":"PYROXD1","entrezGeneId":79912},{"hugoGeneSymbol":"PYROXD2","entrezGeneId":84795},{"hugoGeneSymbol":"PYURF","entrezGeneId":100996939},{"hugoGeneSymbol":"PYY","entrezGeneId":5697},{"hugoGeneSymbol":"PYY2","entrezGeneId":23615},{"hugoGeneSymbol":"PYY3","entrezGeneId":644059},{"hugoGeneSymbol":"PZP","entrezGeneId":5858},{"hugoGeneSymbol":"QARS","entrezGeneId":5859},{"hugoGeneSymbol":"QDPR","entrezGeneId":5860},{"hugoGeneSymbol":"QKI","entrezGeneId":9444},{"hugoGeneSymbol":"QPCT","entrezGeneId":25797},{"hugoGeneSymbol":"QPCTL","entrezGeneId":54814},{"hugoGeneSymbol":"QPRT","entrezGeneId":23475},{"hugoGeneSymbol":"QRFP","entrezGeneId":347148},{"hugoGeneSymbol":"QRFPR","entrezGeneId":84109},{"hugoGeneSymbol":"QRICH1","entrezGeneId":54870},{"hugoGeneSymbol":"QRICH2","entrezGeneId":84074},{"hugoGeneSymbol":"QRSL1","entrezGeneId":55278},{"hugoGeneSymbol":"QRSL1P1","entrezGeneId":730016},{"hugoGeneSymbol":"QRSL1P2","entrezGeneId":100422330},{"hugoGeneSymbol":"QRSL1P3","entrezGeneId":100422374},{"hugoGeneSymbol":"QSER1","entrezGeneId":79832},{"hugoGeneSymbol":"QSOX1","entrezGeneId":5768},{"hugoGeneSymbol":"QSOX2","entrezGeneId":169714},{"hugoGeneSymbol":"QTRT1","entrezGeneId":81890},{"hugoGeneSymbol":"QTRT1P1","entrezGeneId":100420656},{"hugoGeneSymbol":"QTRT2","entrezGeneId":79691},{"hugoGeneSymbol":"QTV","entrezGeneId":100379215},{"hugoGeneSymbol":"R3HCC1","entrezGeneId":203069},{"hugoGeneSymbol":"R3HCC1L","entrezGeneId":27291},{"hugoGeneSymbol":"R3HDM1","entrezGeneId":23518},{"hugoGeneSymbol":"R3HDM2","entrezGeneId":22864},{"hugoGeneSymbol":"R3HDM2P1","entrezGeneId":100419742},{"hugoGeneSymbol":"R3HDM2P2","entrezGeneId":100129694},{"hugoGeneSymbol":"R3HDM4","entrezGeneId":91300},{"hugoGeneSymbol":"R3HDML","entrezGeneId":140902},{"hugoGeneSymbol":"RA1","entrezGeneId":474221},{"hugoGeneSymbol":"RA10","entrezGeneId":474230},{"hugoGeneSymbol":"RA11","entrezGeneId":474231},{"hugoGeneSymbol":"RA12","entrezGeneId":474232},{"hugoGeneSymbol":"RA13","entrezGeneId":474233},{"hugoGeneSymbol":"RA14","entrezGeneId":474234},{"hugoGeneSymbol":"RA15","entrezGeneId":474235},{"hugoGeneSymbol":"RA16","entrezGeneId":474236},{"hugoGeneSymbol":"RA17","entrezGeneId":474237},{"hugoGeneSymbol":"RA18","entrezGeneId":474239},{"hugoGeneSymbol":"RA19","entrezGeneId":474240},{"hugoGeneSymbol":"RA2","entrezGeneId":474222},{"hugoGeneSymbol":"RA20","entrezGeneId":474241},{"hugoGeneSymbol":"RA21","entrezGeneId":474242},{"hugoGeneSymbol":"RA22","entrezGeneId":474243},{"hugoGeneSymbol":"RA23","entrezGeneId":474244},{"hugoGeneSymbol":"RA24","entrezGeneId":474245},{"hugoGeneSymbol":"RA25","entrezGeneId":474246},{"hugoGeneSymbol":"RA26","entrezGeneId":474247},{"hugoGeneSymbol":"RA27","entrezGeneId":474248},{"hugoGeneSymbol":"RA28","entrezGeneId":474249},{"hugoGeneSymbol":"RA29","entrezGeneId":474250},{"hugoGeneSymbol":"RA3","entrezGeneId":474223},{"hugoGeneSymbol":"RA30","entrezGeneId":474251},{"hugoGeneSymbol":"RA31","entrezGeneId":474238},{"hugoGeneSymbol":"RA4","entrezGeneId":474224},{"hugoGeneSymbol":"RA5","entrezGeneId":474225},{"hugoGeneSymbol":"RA6","entrezGeneId":474226},{"hugoGeneSymbol":"RA7","entrezGeneId":474227},{"hugoGeneSymbol":"RA8","entrezGeneId":474228},{"hugoGeneSymbol":"RA9","entrezGeneId":474229},{"hugoGeneSymbol":"RAB10","entrezGeneId":10890},{"hugoGeneSymbol":"RAB11A","entrezGeneId":8766},{"hugoGeneSymbol":"RAB11AP1","entrezGeneId":100129731},{"hugoGeneSymbol":"RAB11AP2","entrezGeneId":106480447},{"hugoGeneSymbol":"RAB11B","entrezGeneId":9230},{"hugoGeneSymbol":"RAB11B-AS1","entrezGeneId":100507567},{"hugoGeneSymbol":"RAB11FIP1","entrezGeneId":80223},{"hugoGeneSymbol":"RAB11FIP1P1","entrezGeneId":646080},{"hugoGeneSymbol":"RAB11FIP2","entrezGeneId":22841},{"hugoGeneSymbol":"RAB11FIP3","entrezGeneId":9727},{"hugoGeneSymbol":"RAB11FIP4","entrezGeneId":84440},{"hugoGeneSymbol":"RAB11FIP5","entrezGeneId":26056},{"hugoGeneSymbol":"RAB12","entrezGeneId":201475},{"hugoGeneSymbol":"RAB13","entrezGeneId":5872},{"hugoGeneSymbol":"RAB14","entrezGeneId":51552},{"hugoGeneSymbol":"RAB15","entrezGeneId":376267},{"hugoGeneSymbol":"RAB17","entrezGeneId":64284},{"hugoGeneSymbol":"RAB18","entrezGeneId":22931},{"hugoGeneSymbol":"RAB19","entrezGeneId":401409},{"hugoGeneSymbol":"RAB1A","entrezGeneId":5861},{"hugoGeneSymbol":"RAB1B","entrezGeneId":81876},{"hugoGeneSymbol":"RAB1C","entrezGeneId":441400},{"hugoGeneSymbol":"RAB20","entrezGeneId":55647},{"hugoGeneSymbol":"RAB21","entrezGeneId":23011},{"hugoGeneSymbol":"RAB22A","entrezGeneId":57403},{"hugoGeneSymbol":"RAB23","entrezGeneId":51715},{"hugoGeneSymbol":"RAB24","entrezGeneId":53917},{"hugoGeneSymbol":"RAB25","entrezGeneId":57111},{"hugoGeneSymbol":"RAB26","entrezGeneId":25837},{"hugoGeneSymbol":"RAB27A","entrezGeneId":5873},{"hugoGeneSymbol":"RAB27B","entrezGeneId":5874},{"hugoGeneSymbol":"RAB28","entrezGeneId":9364},{"hugoGeneSymbol":"RAB28P1","entrezGeneId":100133203},{"hugoGeneSymbol":"RAB28P2","entrezGeneId":100129331},{"hugoGeneSymbol":"RAB28P3","entrezGeneId":100132772},{"hugoGeneSymbol":"RAB28P4","entrezGeneId":100132871},{"hugoGeneSymbol":"RAB28P5","entrezGeneId":100128416},{"hugoGeneSymbol":"RAB29","entrezGeneId":8934},{"hugoGeneSymbol":"RAB2A","entrezGeneId":5862},{"hugoGeneSymbol":"RAB2B","entrezGeneId":84932},{"hugoGeneSymbol":"RAB30","entrezGeneId":27314},{"hugoGeneSymbol":"RAB30-AS1","entrezGeneId":100506233},{"hugoGeneSymbol":"RAB31","entrezGeneId":11031},{"hugoGeneSymbol":"RAB32","entrezGeneId":10981},{"hugoGeneSymbol":"RAB33A","entrezGeneId":9363},{"hugoGeneSymbol":"RAB33B","entrezGeneId":83452},{"hugoGeneSymbol":"RAB34","entrezGeneId":83871},{"hugoGeneSymbol":"RAB35","entrezGeneId":11021},{"hugoGeneSymbol":"RAB36","entrezGeneId":9609},{"hugoGeneSymbol":"RAB37","entrezGeneId":326624},{"hugoGeneSymbol":"RAB38","entrezGeneId":23682},{"hugoGeneSymbol":"RAB39A","entrezGeneId":54734},{"hugoGeneSymbol":"RAB39B","entrezGeneId":116442},{"hugoGeneSymbol":"RAB3A","entrezGeneId":5864},{"hugoGeneSymbol":"RAB3B","entrezGeneId":5865},{"hugoGeneSymbol":"RAB3C","entrezGeneId":115827},{"hugoGeneSymbol":"RAB3D","entrezGeneId":9545},{"hugoGeneSymbol":"RAB3GAP1","entrezGeneId":22930},{"hugoGeneSymbol":"RAB3GAP2","entrezGeneId":25782},{"hugoGeneSymbol":"RAB3IL1","entrezGeneId":5866},{"hugoGeneSymbol":"RAB3IP","entrezGeneId":117177},{"hugoGeneSymbol":"RAB40A","entrezGeneId":142684},{"hugoGeneSymbol":"RAB40AL","entrezGeneId":282808},{"hugoGeneSymbol":"RAB40B","entrezGeneId":10966},{"hugoGeneSymbol":"RAB40C","entrezGeneId":57799},{"hugoGeneSymbol":"RAB41","entrezGeneId":347517},{"hugoGeneSymbol":"RAB42","entrezGeneId":115273},{"hugoGeneSymbol":"RAB42P1","entrezGeneId":646996},{"hugoGeneSymbol":"RAB43","entrezGeneId":339122},{"hugoGeneSymbol":"RAB43P1","entrezGeneId":440375},{"hugoGeneSymbol":"RAB44","entrezGeneId":401258},{"hugoGeneSymbol":"RAB4A","entrezGeneId":5867},{"hugoGeneSymbol":"RAB4B","entrezGeneId":53916},{"hugoGeneSymbol":"RAB4B-EGLN2","entrezGeneId":100529264},{"hugoGeneSymbol":"RAB5A","entrezGeneId":5868},{"hugoGeneSymbol":"RAB5B","entrezGeneId":5869},{"hugoGeneSymbol":"RAB5C","entrezGeneId":5878},{"hugoGeneSymbol":"RAB5CP1","entrezGeneId":100420734},{"hugoGeneSymbol":"RAB5CP2","entrezGeneId":133789},{"hugoGeneSymbol":"RAB5IF","entrezGeneId":55969},{"hugoGeneSymbol":"RAB6A","entrezGeneId":5870},{"hugoGeneSymbol":"RAB6B","entrezGeneId":51560},{"hugoGeneSymbol":"RAB6C","entrezGeneId":84084},{"hugoGeneSymbol":"RAB6C-AS1","entrezGeneId":100131320},{"hugoGeneSymbol":"RAB6D","entrezGeneId":150786},{"hugoGeneSymbol":"RAB7A","entrezGeneId":7879},{"hugoGeneSymbol":"RAB7B","entrezGeneId":338382},{"hugoGeneSymbol":"RAB8A","entrezGeneId":4218},{"hugoGeneSymbol":"RAB8B","entrezGeneId":51762},{"hugoGeneSymbol":"RAB9A","entrezGeneId":9367},{"hugoGeneSymbol":"RAB9AP1","entrezGeneId":100287200},{"hugoGeneSymbol":"RAB9AP2","entrezGeneId":100287542},{"hugoGeneSymbol":"RAB9AP3","entrezGeneId":100287577},{"hugoGeneSymbol":"RAB9AP4","entrezGeneId":100288397},{"hugoGeneSymbol":"RAB9AP5","entrezGeneId":100287234},{"hugoGeneSymbol":"RAB9B","entrezGeneId":51209},{"hugoGeneSymbol":"RAB9BP1","entrezGeneId":9366},{"hugoGeneSymbol":"RABAC1","entrezGeneId":10567},{"hugoGeneSymbol":"RABEP1","entrezGeneId":9135},{"hugoGeneSymbol":"RABEP2","entrezGeneId":79874},{"hugoGeneSymbol":"RABEPK","entrezGeneId":10244},{"hugoGeneSymbol":"RABEPKP1","entrezGeneId":100421226},{"hugoGeneSymbol":"RABGAP1","entrezGeneId":23637},{"hugoGeneSymbol":"RABGAP1L","entrezGeneId":9910},{"hugoGeneSymbol":"RABGAP1L-IT1","entrezGeneId":106480742},{"hugoGeneSymbol":"RABGEF1","entrezGeneId":27342},{"hugoGeneSymbol":"RABGGTA","entrezGeneId":5875},{"hugoGeneSymbol":"RABGGTB","entrezGeneId":5876},{"hugoGeneSymbol":"RABIF","entrezGeneId":5877},{"hugoGeneSymbol":"RABL2A","entrezGeneId":11159},{"hugoGeneSymbol":"RABL2B","entrezGeneId":11158},{"hugoGeneSymbol":"RABL3","entrezGeneId":285282},{"hugoGeneSymbol":"RABL6","entrezGeneId":55684},{"hugoGeneSymbol":"RAC1","entrezGeneId":5879},{"hugoGeneSymbol":"RAC1P1","entrezGeneId":387612},{"hugoGeneSymbol":"RAC1P2","entrezGeneId":442775},{"hugoGeneSymbol":"RAC1P3","entrezGeneId":492295},{"hugoGeneSymbol":"RAC1P4","entrezGeneId":286472},{"hugoGeneSymbol":"RAC1P5","entrezGeneId":402183},{"hugoGeneSymbol":"RAC1P6","entrezGeneId":100422657},{"hugoGeneSymbol":"RAC1P7","entrezGeneId":100874390},{"hugoGeneSymbol":"RAC1P8","entrezGeneId":100874398},{"hugoGeneSymbol":"RAC1P9","entrezGeneId":100422658},{"hugoGeneSymbol":"RAC2","entrezGeneId":5880},{"hugoGeneSymbol":"RAC3","entrezGeneId":5881},{"hugoGeneSymbol":"RACGAP1","entrezGeneId":29127},{"hugoGeneSymbol":"RACGAP1P","entrezGeneId":83956},{"hugoGeneSymbol":"RACK1","entrezGeneId":10399},{"hugoGeneSymbol":"RAD1","entrezGeneId":5810},{"hugoGeneSymbol":"RAD17","entrezGeneId":5884},{"hugoGeneSymbol":"RAD17P1","entrezGeneId":9207},{"hugoGeneSymbol":"RAD17P2","entrezGeneId":9206},{"hugoGeneSymbol":"RAD18","entrezGeneId":56852},{"hugoGeneSymbol":"RAD1P1","entrezGeneId":100128880},{"hugoGeneSymbol":"RAD1P2","entrezGeneId":100129690},{"hugoGeneSymbol":"RAD21","entrezGeneId":5885},{"hugoGeneSymbol":"RAD21-AS1","entrezGeneId":644660},{"hugoGeneSymbol":"RAD21L1","entrezGeneId":642636},{"hugoGeneSymbol":"RAD23A","entrezGeneId":5886},{"hugoGeneSymbol":"RAD23B","entrezGeneId":5887},{"hugoGeneSymbol":"RAD23BP1","entrezGeneId":131185},{"hugoGeneSymbol":"RAD23BP2","entrezGeneId":100130572},{"hugoGeneSymbol":"RAD23BP3","entrezGeneId":54034},{"hugoGeneSymbol":"RAD50","entrezGeneId":10111},{"hugoGeneSymbol":"RAD51","entrezGeneId":5888},{"hugoGeneSymbol":"RAD51-AS1","entrezGeneId":100505648},{"hugoGeneSymbol":"RAD51AP1","entrezGeneId":10635},{"hugoGeneSymbol":"RAD51AP1P1","entrezGeneId":100420047},{"hugoGeneSymbol":"RAD51AP2","entrezGeneId":729475},{"hugoGeneSymbol":"RAD51B","entrezGeneId":5890},{"hugoGeneSymbol":"RAD51C","entrezGeneId":5889},{"hugoGeneSymbol":"RAD51D","entrezGeneId":5892},{"hugoGeneSymbol":"RAD51L3-RFFL","entrezGeneId":100529207},{"hugoGeneSymbol":"RAD52","entrezGeneId":5893},{"hugoGeneSymbol":"RAD54B","entrezGeneId":25788},{"hugoGeneSymbol":"RAD54L","entrezGeneId":8438},{"hugoGeneSymbol":"RAD54L2","entrezGeneId":23132},{"hugoGeneSymbol":"RAD9A","entrezGeneId":5883},{"hugoGeneSymbol":"RAD9B","entrezGeneId":144715},{"hugoGeneSymbol":"RADIL","entrezGeneId":55698},{"hugoGeneSymbol":"RAE1","entrezGeneId":8480},{"hugoGeneSymbol":"RAET1E","entrezGeneId":135250},{"hugoGeneSymbol":"RAET1E-AS1","entrezGeneId":100652739},{"hugoGeneSymbol":"RAET1F","entrezGeneId":353089},{"hugoGeneSymbol":"RAET1G","entrezGeneId":353091},{"hugoGeneSymbol":"RAET1K","entrezGeneId":646024},{"hugoGeneSymbol":"RAET1L","entrezGeneId":154064},{"hugoGeneSymbol":"RAET1M","entrezGeneId":353094},{"hugoGeneSymbol":"RAF1","entrezGeneId":5894},{"hugoGeneSymbol":"RAF1P1","entrezGeneId":348910},{"hugoGeneSymbol":"RAG1","entrezGeneId":5896},{"hugoGeneSymbol":"RAG2","entrezGeneId":5897},{"hugoGeneSymbol":"RAI1","entrezGeneId":10743},{"hugoGeneSymbol":"RAI1-AS1","entrezGeneId":100861516},{"hugoGeneSymbol":"RAI14","entrezGeneId":26064},{"hugoGeneSymbol":"RAI2","entrezGeneId":10742},{"hugoGeneSymbol":"RALA","entrezGeneId":5898},{"hugoGeneSymbol":"RALB","entrezGeneId":5899},{"hugoGeneSymbol":"RALBP1","entrezGeneId":10928},{"hugoGeneSymbol":"RALGAPA1","entrezGeneId":253959},{"hugoGeneSymbol":"RALGAPA1P1","entrezGeneId":26134},{"hugoGeneSymbol":"RALGAPA2","entrezGeneId":57186},{"hugoGeneSymbol":"RALGAPB","entrezGeneId":57148},{"hugoGeneSymbol":"RALGDS","entrezGeneId":5900},{"hugoGeneSymbol":"RALGPS1","entrezGeneId":9649},{"hugoGeneSymbol":"RALGPS2","entrezGeneId":55103},{"hugoGeneSymbol":"RALY","entrezGeneId":22913},{"hugoGeneSymbol":"RALY-AS1","entrezGeneId":101926888},{"hugoGeneSymbol":"RALYL","entrezGeneId":138046},{"hugoGeneSymbol":"RAMMET","entrezGeneId":83640},{"hugoGeneSymbol":"RAMMETL","entrezGeneId":353267},{"hugoGeneSymbol":"RAMP1","entrezGeneId":10267},{"hugoGeneSymbol":"RAMP2","entrezGeneId":10266},{"hugoGeneSymbol":"RAMP2-AS1","entrezGeneId":100190938},{"hugoGeneSymbol":"RAMP3","entrezGeneId":10268},{"hugoGeneSymbol":"RAN","entrezGeneId":5901},{"hugoGeneSymbol":"RANBP1","entrezGeneId":5902},{"hugoGeneSymbol":"RANBP10","entrezGeneId":57610},{"hugoGeneSymbol":"RANBP17","entrezGeneId":64901},{"hugoGeneSymbol":"RANBP2","entrezGeneId":5903},{"hugoGeneSymbol":"RANBP20P","entrezGeneId":326627},{"hugoGeneSymbol":"RANBP3","entrezGeneId":8498},{"hugoGeneSymbol":"RANBP3L","entrezGeneId":202151},{"hugoGeneSymbol":"RANBP6","entrezGeneId":26953},{"hugoGeneSymbol":"RANBP9","entrezGeneId":10048},{"hugoGeneSymbol":"RANGAP1","entrezGeneId":5905},{"hugoGeneSymbol":"RANGRF","entrezGeneId":29098},{"hugoGeneSymbol":"RANP1","entrezGeneId":221547},{"hugoGeneSymbol":"RANP2","entrezGeneId":100874191},{"hugoGeneSymbol":"RANP3","entrezGeneId":100874227},{"hugoGeneSymbol":"RANP4","entrezGeneId":100130621},{"hugoGeneSymbol":"RANP5","entrezGeneId":100129428},{"hugoGeneSymbol":"RANP6","entrezGeneId":100128266},{"hugoGeneSymbol":"RANP7","entrezGeneId":100874192},{"hugoGeneSymbol":"RANP8","entrezGeneId":100420519},{"hugoGeneSymbol":"RANP9","entrezGeneId":100874193},{"hugoGeneSymbol":"RAP1A","entrezGeneId":5906},{"hugoGeneSymbol":"RAP1AP","entrezGeneId":5907},{"hugoGeneSymbol":"RAP1B","entrezGeneId":5908},{"hugoGeneSymbol":"RAP1BL","entrezGeneId":643752},{"hugoGeneSymbol":"RAP1BP1","entrezGeneId":100506390},{"hugoGeneSymbol":"RAP1BP2","entrezGeneId":100128179},{"hugoGeneSymbol":"RAP1BP3","entrezGeneId":100132917},{"hugoGeneSymbol":"RAP1GAP","entrezGeneId":5909},{"hugoGeneSymbol":"RAP1GAP2","entrezGeneId":23108},{"hugoGeneSymbol":"RAP1GDS1","entrezGeneId":5910},{"hugoGeneSymbol":"RAP2A","entrezGeneId":5911},{"hugoGeneSymbol":"RAP2B","entrezGeneId":5912},{"hugoGeneSymbol":"RAP2C","entrezGeneId":57826},{"hugoGeneSymbol":"RAP2C-AS1","entrezGeneId":101928578},{"hugoGeneSymbol":"RAP2CP1","entrezGeneId":106480249},{"hugoGeneSymbol":"RAPGEF1","entrezGeneId":2889},{"hugoGeneSymbol":"RAPGEF2","entrezGeneId":9693},{"hugoGeneSymbol":"RAPGEF3","entrezGeneId":10411},{"hugoGeneSymbol":"RAPGEF4","entrezGeneId":11069},{"hugoGeneSymbol":"RAPGEF4-AS1","entrezGeneId":91149},{"hugoGeneSymbol":"RAPGEF5","entrezGeneId":9771},{"hugoGeneSymbol":"RAPGEF6","entrezGeneId":51735},{"hugoGeneSymbol":"RAPGEFL1","entrezGeneId":51195},{"hugoGeneSymbol":"RAPH1","entrezGeneId":65059},{"hugoGeneSymbol":"RAPSN","entrezGeneId":5913},{"hugoGeneSymbol":"RARA","entrezGeneId":5914},{"hugoGeneSymbol":"RARA-AS1","entrezGeneId":101929693},{"hugoGeneSymbol":"RARB","entrezGeneId":5915},{"hugoGeneSymbol":"RARG","entrezGeneId":5916},{"hugoGeneSymbol":"RARRES1","entrezGeneId":5918},{"hugoGeneSymbol":"RARRES2","entrezGeneId":5919},{"hugoGeneSymbol":"RARRES2P1","entrezGeneId":643255},{"hugoGeneSymbol":"RARRES2P10","entrezGeneId":106481972},{"hugoGeneSymbol":"RARRES2P11","entrezGeneId":107075248},{"hugoGeneSymbol":"RARRES2P2","entrezGeneId":644425},{"hugoGeneSymbol":"RARRES2P3","entrezGeneId":106481659},{"hugoGeneSymbol":"RARRES2P4","entrezGeneId":644881},{"hugoGeneSymbol":"RARRES2P5","entrezGeneId":106480231},{"hugoGeneSymbol":"RARRES2P6","entrezGeneId":105377820},{"hugoGeneSymbol":"RARRES2P7","entrezGeneId":106481660},{"hugoGeneSymbol":"RARRES2P8","entrezGeneId":642652},{"hugoGeneSymbol":"RARRES2P9","entrezGeneId":106660620},{"hugoGeneSymbol":"RARRES3","entrezGeneId":5920},{"hugoGeneSymbol":"RARS","entrezGeneId":5917},{"hugoGeneSymbol":"RARS2","entrezGeneId":57038},{"hugoGeneSymbol":"RARSP1","entrezGeneId":100419829},{"hugoGeneSymbol":"RASA1","entrezGeneId":5921},{"hugoGeneSymbol":"RASA2","entrezGeneId":5922},{"hugoGeneSymbol":"RASA2-IT1","entrezGeneId":100874298},{"hugoGeneSymbol":"RASA3","entrezGeneId":22821},{"hugoGeneSymbol":"RASA3-IT1","entrezGeneId":100874321},{"hugoGeneSymbol":"RASA4","entrezGeneId":10156},{"hugoGeneSymbol":"RASA4B","entrezGeneId":100271927},{"hugoGeneSymbol":"RASA4CP","entrezGeneId":401331},{"hugoGeneSymbol":"RASA4DP","entrezGeneId":100133005},{"hugoGeneSymbol":"RASAL1","entrezGeneId":8437},{"hugoGeneSymbol":"RASAL2","entrezGeneId":9462},{"hugoGeneSymbol":"RASAL2-AS1","entrezGeneId":100302401},{"hugoGeneSymbol":"RASAL3","entrezGeneId":64926},{"hugoGeneSymbol":"RASD1","entrezGeneId":51655},{"hugoGeneSymbol":"RASD2","entrezGeneId":23551},{"hugoGeneSymbol":"RASEF","entrezGeneId":158158},{"hugoGeneSymbol":"RASGEF1A","entrezGeneId":221002},{"hugoGeneSymbol":"RASGEF1B","entrezGeneId":153020},{"hugoGeneSymbol":"RASGEF1C","entrezGeneId":255426},{"hugoGeneSymbol":"RASGRF1","entrezGeneId":5923},{"hugoGeneSymbol":"RASGRF2","entrezGeneId":5924},{"hugoGeneSymbol":"RASGRF2-AS1","entrezGeneId":102524628},{"hugoGeneSymbol":"RASGRP1","entrezGeneId":10125},{"hugoGeneSymbol":"RASGRP2","entrezGeneId":10235},{"hugoGeneSymbol":"RASGRP3","entrezGeneId":25780},{"hugoGeneSymbol":"RASGRP4","entrezGeneId":115727},{"hugoGeneSymbol":"RASIP1","entrezGeneId":54922},{"hugoGeneSymbol":"RASL10A","entrezGeneId":10633},{"hugoGeneSymbol":"RASL10B","entrezGeneId":91608},{"hugoGeneSymbol":"RASL11A","entrezGeneId":387496},{"hugoGeneSymbol":"RASL11B","entrezGeneId":65997},{"hugoGeneSymbol":"RASL12","entrezGeneId":51285},{"hugoGeneSymbol":"RASSF1","entrezGeneId":11186},{"hugoGeneSymbol":"RASSF1-AS1","entrezGeneId":102060282},{"hugoGeneSymbol":"RASSF10","entrezGeneId":644943},{"hugoGeneSymbol":"RASSF2","entrezGeneId":9770},{"hugoGeneSymbol":"RASSF3","entrezGeneId":283349},{"hugoGeneSymbol":"RASSF4","entrezGeneId":83937},{"hugoGeneSymbol":"RASSF5","entrezGeneId":83593},{"hugoGeneSymbol":"RASSF6","entrezGeneId":166824},{"hugoGeneSymbol":"RASSF7","entrezGeneId":8045},{"hugoGeneSymbol":"RASSF8","entrezGeneId":11228},{"hugoGeneSymbol":"RASSF8-AS1","entrezGeneId":100506451},{"hugoGeneSymbol":"RASSF9","entrezGeneId":9182},{"hugoGeneSymbol":"RAVER1","entrezGeneId":125950},{"hugoGeneSymbol":"RAVER2","entrezGeneId":55225},{"hugoGeneSymbol":"RAX","entrezGeneId":30062},{"hugoGeneSymbol":"RAX2","entrezGeneId":84839},{"hugoGeneSymbol":"RB1","entrezGeneId":5925},{"hugoGeneSymbol":"RB1-DT","entrezGeneId":100862704},{"hugoGeneSymbol":"RB1CC1","entrezGeneId":9821},{"hugoGeneSymbol":"RBAK","entrezGeneId":57786},{"hugoGeneSymbol":"RBAK-RBAKDN","entrezGeneId":100533952},{"hugoGeneSymbol":"RBAKDN","entrezGeneId":389458},{"hugoGeneSymbol":"RBBP4","entrezGeneId":5928},{"hugoGeneSymbol":"RBBP4P1","entrezGeneId":642954},{"hugoGeneSymbol":"RBBP4P2","entrezGeneId":100420527},{"hugoGeneSymbol":"RBBP4P3","entrezGeneId":730180},{"hugoGeneSymbol":"RBBP4P4","entrezGeneId":727842},{"hugoGeneSymbol":"RBBP4P5","entrezGeneId":100288451},{"hugoGeneSymbol":"RBBP4P6","entrezGeneId":100820741},{"hugoGeneSymbol":"RBBP5","entrezGeneId":5929},{"hugoGeneSymbol":"RBBP6","entrezGeneId":5930},{"hugoGeneSymbol":"RBBP6P1","entrezGeneId":100129156},{"hugoGeneSymbol":"RBBP7","entrezGeneId":5931},{"hugoGeneSymbol":"RBBP8","entrezGeneId":5932},{"hugoGeneSymbol":"RBBP8NL","entrezGeneId":140893},{"hugoGeneSymbol":"RBBP8P1","entrezGeneId":100420552},{"hugoGeneSymbol":"RBBP8P2","entrezGeneId":100420607},{"hugoGeneSymbol":"RBBP9","entrezGeneId":10741},{"hugoGeneSymbol":"RBCK1","entrezGeneId":10616},{"hugoGeneSymbol":"RBFA","entrezGeneId":79863},{"hugoGeneSymbol":"RBFADN","entrezGeneId":100506070},{"hugoGeneSymbol":"RBFOX1","entrezGeneId":54715},{"hugoGeneSymbol":"RBFOX2","entrezGeneId":23543},{"hugoGeneSymbol":"RBFOX3","entrezGeneId":146713},{"hugoGeneSymbol":"RBKS","entrezGeneId":64080},{"hugoGeneSymbol":"RBL1","entrezGeneId":5933},{"hugoGeneSymbol":"RBL2","entrezGeneId":5934},{"hugoGeneSymbol":"RBM10","entrezGeneId":8241},{"hugoGeneSymbol":"RBM11","entrezGeneId":54033},{"hugoGeneSymbol":"RBM11P1","entrezGeneId":100420213},{"hugoGeneSymbol":"RBM12","entrezGeneId":10137},{"hugoGeneSymbol":"RBM12B","entrezGeneId":389677},{"hugoGeneSymbol":"RBM12B-AS1","entrezGeneId":55472},{"hugoGeneSymbol":"RBM14","entrezGeneId":10432},{"hugoGeneSymbol":"RBM14-RBM4","entrezGeneId":100526737},{"hugoGeneSymbol":"RBM15","entrezGeneId":64783},{"hugoGeneSymbol":"RBM15-AS1","entrezGeneId":440600},{"hugoGeneSymbol":"RBM15B","entrezGeneId":29890},{"hugoGeneSymbol":"RBM17","entrezGeneId":84991},{"hugoGeneSymbol":"RBM17P1","entrezGeneId":100133330},{"hugoGeneSymbol":"RBM17P2","entrezGeneId":642389},{"hugoGeneSymbol":"RBM17P3","entrezGeneId":100132949},{"hugoGeneSymbol":"RBM17P4","entrezGeneId":100128974},{"hugoGeneSymbol":"RBM18","entrezGeneId":92400},{"hugoGeneSymbol":"RBM19","entrezGeneId":9904},{"hugoGeneSymbol":"RBM20","entrezGeneId":282996},{"hugoGeneSymbol":"RBM22","entrezGeneId":55696},{"hugoGeneSymbol":"RBM22P1","entrezGeneId":400645},{"hugoGeneSymbol":"RBM22P11","entrezGeneId":100132115},{"hugoGeneSymbol":"RBM22P12","entrezGeneId":100131641},{"hugoGeneSymbol":"RBM22P13","entrezGeneId":100130603},{"hugoGeneSymbol":"RBM22P2","entrezGeneId":100271871},{"hugoGeneSymbol":"RBM22P3","entrezGeneId":100128867},{"hugoGeneSymbol":"RBM22P4","entrezGeneId":100271870},{"hugoGeneSymbol":"RBM22P5","entrezGeneId":100133206},{"hugoGeneSymbol":"RBM22P6","entrezGeneId":644509},{"hugoGeneSymbol":"RBM22P7","entrezGeneId":106478953},{"hugoGeneSymbol":"RBM23","entrezGeneId":55147},{"hugoGeneSymbol":"RBM24","entrezGeneId":221662},{"hugoGeneSymbol":"RBM25","entrezGeneId":58517},{"hugoGeneSymbol":"RBM26","entrezGeneId":64062},{"hugoGeneSymbol":"RBM26-AS1","entrezGeneId":100505538},{"hugoGeneSymbol":"RBM27","entrezGeneId":54439},{"hugoGeneSymbol":"RBM28","entrezGeneId":55131},{"hugoGeneSymbol":"RBM3","entrezGeneId":5935},{"hugoGeneSymbol":"RBM33","entrezGeneId":155435},{"hugoGeneSymbol":"RBM34","entrezGeneId":23029},{"hugoGeneSymbol":"RBM38","entrezGeneId":55544},{"hugoGeneSymbol":"RBM39","entrezGeneId":9584},{"hugoGeneSymbol":"RBM4","entrezGeneId":5936},{"hugoGeneSymbol":"RBM41","entrezGeneId":55285},{"hugoGeneSymbol":"RBM42","entrezGeneId":79171},{"hugoGeneSymbol":"RBM43","entrezGeneId":375287},{"hugoGeneSymbol":"RBM43P1","entrezGeneId":100131568},{"hugoGeneSymbol":"RBM44","entrezGeneId":375316},{"hugoGeneSymbol":"RBM45","entrezGeneId":129831},{"hugoGeneSymbol":"RBM46","entrezGeneId":166863},{"hugoGeneSymbol":"RBM47","entrezGeneId":54502},{"hugoGeneSymbol":"RBM48","entrezGeneId":84060},{"hugoGeneSymbol":"RBM48P1","entrezGeneId":132817},{"hugoGeneSymbol":"RBM4B","entrezGeneId":83759},{"hugoGeneSymbol":"RBM5","entrezGeneId":10181},{"hugoGeneSymbol":"RBM5-AS1","entrezGeneId":100775107},{"hugoGeneSymbol":"RBM6","entrezGeneId":10180},{"hugoGeneSymbol":"RBM7","entrezGeneId":10179},{"hugoGeneSymbol":"RBM8A","entrezGeneId":9939},{"hugoGeneSymbol":"RBM8B","entrezGeneId":112846},{"hugoGeneSymbol":"RBMS1","entrezGeneId":5937},{"hugoGeneSymbol":"RBMS1P1","entrezGeneId":5938},{"hugoGeneSymbol":"RBMS2","entrezGeneId":5939},{"hugoGeneSymbol":"RBMS2P1","entrezGeneId":643427},{"hugoGeneSymbol":"RBMS3","entrezGeneId":27303},{"hugoGeneSymbol":"RBMS3-AS1","entrezGeneId":100873977},{"hugoGeneSymbol":"RBMS3-AS2","entrezGeneId":100873978},{"hugoGeneSymbol":"RBMS3-AS3","entrezGeneId":100873979},{"hugoGeneSymbol":"RBMX","entrezGeneId":27316},{"hugoGeneSymbol":"RBMX2","entrezGeneId":51634},{"hugoGeneSymbol":"RBMX2P1","entrezGeneId":100128341},{"hugoGeneSymbol":"RBMX2P2","entrezGeneId":100132808},{"hugoGeneSymbol":"RBMX2P3","entrezGeneId":100421047},{"hugoGeneSymbol":"RBMX2P4","entrezGeneId":100862677},{"hugoGeneSymbol":"RBMX2P5","entrezGeneId":391804},{"hugoGeneSymbol":"RBMXL1","entrezGeneId":494115},{"hugoGeneSymbol":"RBMXL2","entrezGeneId":27288},{"hugoGeneSymbol":"RBMXL3","entrezGeneId":139804},{"hugoGeneSymbol":"RBMXP1","entrezGeneId":3186},{"hugoGeneSymbol":"RBMXP2","entrezGeneId":441391},{"hugoGeneSymbol":"RBMXP3","entrezGeneId":143543},{"hugoGeneSymbol":"RBMXP4","entrezGeneId":100132580},{"hugoGeneSymbol":"RBMY1A1","entrezGeneId":5940},{"hugoGeneSymbol":"RBMY1A3P","entrezGeneId":286557},{"hugoGeneSymbol":"RBMY1B","entrezGeneId":378948},{"hugoGeneSymbol":"RBMY1C","entrezGeneId":5942},{"hugoGeneSymbol":"RBMY1D","entrezGeneId":378949},{"hugoGeneSymbol":"RBMY1E","entrezGeneId":378950},{"hugoGeneSymbol":"RBMY1F","entrezGeneId":159163},{"hugoGeneSymbol":"RBMY1GP","entrezGeneId":100287769},{"hugoGeneSymbol":"RBMY1HP","entrezGeneId":5944},{"hugoGeneSymbol":"RBMY1J","entrezGeneId":378951},{"hugoGeneSymbol":"RBMY1KP","entrezGeneId":100874497},{"hugoGeneSymbol":"RBMY2AP","entrezGeneId":5945},{"hugoGeneSymbol":"RBMY2BP","entrezGeneId":375850},{"hugoGeneSymbol":"RBMY2CP","entrezGeneId":140123},{"hugoGeneSymbol":"RBMY2DP","entrezGeneId":347598},{"hugoGeneSymbol":"RBMY2EP","entrezGeneId":159125},{"hugoGeneSymbol":"RBMY2FP","entrezGeneId":159162},{"hugoGeneSymbol":"RBMY2GP","entrezGeneId":378952},{"hugoGeneSymbol":"RBMY2HP","entrezGeneId":378953},{"hugoGeneSymbol":"RBMY2JP","entrezGeneId":378955},{"hugoGeneSymbol":"RBMY2KP","entrezGeneId":140100},{"hugoGeneSymbol":"RBMY2MP","entrezGeneId":140101},{"hugoGeneSymbol":"RBMY2NP","entrezGeneId":378956},{"hugoGeneSymbol":"RBMY2OP","entrezGeneId":379005},{"hugoGeneSymbol":"RBMY2QP","entrezGeneId":379006},{"hugoGeneSymbol":"RBMY2SP","entrezGeneId":379007},{"hugoGeneSymbol":"RBMY2TP","entrezGeneId":379008},{"hugoGeneSymbol":"RBMY2UP","entrezGeneId":379009},{"hugoGeneSymbol":"RBMY2VP","entrezGeneId":379010},{"hugoGeneSymbol":"RBMY2WP","entrezGeneId":379011},{"hugoGeneSymbol":"RBMY2XP","entrezGeneId":379012},{"hugoGeneSymbol":"RBMY2YP","entrezGeneId":379024},{"hugoGeneSymbol":"RBMY3AP","entrezGeneId":64593},{"hugoGeneSymbol":"RBP1","entrezGeneId":5947},{"hugoGeneSymbol":"RBP2","entrezGeneId":5948},{"hugoGeneSymbol":"RBP3","entrezGeneId":5949},{"hugoGeneSymbol":"RBP4","entrezGeneId":5950},{"hugoGeneSymbol":"RBP5","entrezGeneId":83758},{"hugoGeneSymbol":"RBP7","entrezGeneId":116362},{"hugoGeneSymbol":"RBPJ","entrezGeneId":3516},{"hugoGeneSymbol":"RBPJL","entrezGeneId":11317},{"hugoGeneSymbol":"RBPJP1","entrezGeneId":100310842},{"hugoGeneSymbol":"RBPJP2","entrezGeneId":3517},{"hugoGeneSymbol":"RBPJP3","entrezGeneId":58164},{"hugoGeneSymbol":"RBPJP4","entrezGeneId":58163},{"hugoGeneSymbol":"RBPJP5","entrezGeneId":100288841},{"hugoGeneSymbol":"RBPJP6","entrezGeneId":643198},{"hugoGeneSymbol":"RBPJP7","entrezGeneId":100133122},{"hugoGeneSymbol":"RBPMS","entrezGeneId":11030},{"hugoGeneSymbol":"RBPMS-AS1","entrezGeneId":100128750},{"hugoGeneSymbol":"RBPMS2","entrezGeneId":348093},{"hugoGeneSymbol":"RBPMS2P1","entrezGeneId":100421512},{"hugoGeneSymbol":"RBPMSLP","entrezGeneId":54032},{"hugoGeneSymbol":"RBSN","entrezGeneId":64145},{"hugoGeneSymbol":"RBX1","entrezGeneId":9978},{"hugoGeneSymbol":"RC14S","entrezGeneId":106699576},{"hugoGeneSymbol":"RC3H1","entrezGeneId":149041},{"hugoGeneSymbol":"RC3H1-IT1","entrezGeneId":106481790},{"hugoGeneSymbol":"RC3H2","entrezGeneId":54542},{"hugoGeneSymbol":"RCAN1","entrezGeneId":1827},{"hugoGeneSymbol":"RCAN2","entrezGeneId":10231},{"hugoGeneSymbol":"RCAN3","entrezGeneId":11123},{"hugoGeneSymbol":"RCAN3AS","entrezGeneId":100750325},{"hugoGeneSymbol":"RCBTB1","entrezGeneId":55213},{"hugoGeneSymbol":"RCBTB2","entrezGeneId":1102},{"hugoGeneSymbol":"RCBTB2P1","entrezGeneId":100130253},{"hugoGeneSymbol":"RCC1","entrezGeneId":1104},{"hugoGeneSymbol":"RCC1L","entrezGeneId":81554},{"hugoGeneSymbol":"RCC2","entrezGeneId":55920},{"hugoGeneSymbol":"RCC2P1","entrezGeneId":650983},{"hugoGeneSymbol":"RCC2P2","entrezGeneId":100421075},{"hugoGeneSymbol":"RCC2P3","entrezGeneId":100131932},{"hugoGeneSymbol":"RCC2P4","entrezGeneId":100421090},{"hugoGeneSymbol":"RCC2P5","entrezGeneId":100131442},{"hugoGeneSymbol":"RCC2P6","entrezGeneId":100421131},{"hugoGeneSymbol":"RCC2P7","entrezGeneId":442221},{"hugoGeneSymbol":"RCC2P8","entrezGeneId":100129714},{"hugoGeneSymbol":"RCCD1","entrezGeneId":91433},{"hugoGeneSymbol":"RCD1","entrezGeneId":5953},{"hugoGeneSymbol":"RCE1","entrezGeneId":9986},{"hugoGeneSymbol":"RCHTS","entrezGeneId":100462676},{"hugoGeneSymbol":"RCHY1","entrezGeneId":25898},{"hugoGeneSymbol":"RCL1","entrezGeneId":10171},{"hugoGeneSymbol":"RCM2","entrezGeneId":619468},{"hugoGeneSymbol":"RCN1","entrezGeneId":5954},{"hugoGeneSymbol":"RCN1P1","entrezGeneId":442234},{"hugoGeneSymbol":"RCN1P2","entrezGeneId":728913},{"hugoGeneSymbol":"RCN2","entrezGeneId":5955},{"hugoGeneSymbol":"RCN3","entrezGeneId":57333},{"hugoGeneSymbol":"RCOR1","entrezGeneId":23186},{"hugoGeneSymbol":"RCOR2","entrezGeneId":283248},{"hugoGeneSymbol":"RCOR3","entrezGeneId":55758},{"hugoGeneSymbol":"RCSD1","entrezGeneId":92241},{"hugoGeneSymbol":"RCVRN","entrezGeneId":5957},{"hugoGeneSymbol":"RD3","entrezGeneId":343035},{"hugoGeneSymbol":"RD3L","entrezGeneId":647286},{"hugoGeneSymbol":"RDH10","entrezGeneId":157506},{"hugoGeneSymbol":"RDH10-AS1","entrezGeneId":101926926},{"hugoGeneSymbol":"RDH11","entrezGeneId":51109},{"hugoGeneSymbol":"RDH12","entrezGeneId":145226},{"hugoGeneSymbol":"RDH13","entrezGeneId":112724},{"hugoGeneSymbol":"RDH14","entrezGeneId":57665},{"hugoGeneSymbol":"RDH16","entrezGeneId":8608},{"hugoGeneSymbol":"RDH5","entrezGeneId":5959},{"hugoGeneSymbol":"RDH8","entrezGeneId":50700},{"hugoGeneSymbol":"RDM1","entrezGeneId":201299},{"hugoGeneSymbol":"RDPA","entrezGeneId":8024},{"hugoGeneSymbol":"RDX","entrezGeneId":5962},{"hugoGeneSymbol":"RDXP1","entrezGeneId":643244},{"hugoGeneSymbol":"RDXP2","entrezGeneId":5964},{"hugoGeneSymbol":"REC114","entrezGeneId":283677},{"hugoGeneSymbol":"REC8","entrezGeneId":9985},{"hugoGeneSymbol":"RECK","entrezGeneId":8434},{"hugoGeneSymbol":"RECQL","entrezGeneId":5965},{"hugoGeneSymbol":"RECQL4","entrezGeneId":9401},{"hugoGeneSymbol":"RECQL5","entrezGeneId":9400},{"hugoGeneSymbol":"REELD1","entrezGeneId":345051},{"hugoGeneSymbol":"REEP1","entrezGeneId":65055},{"hugoGeneSymbol":"REEP2","entrezGeneId":51308},{"hugoGeneSymbol":"REEP3","entrezGeneId":221035},{"hugoGeneSymbol":"REEP4","entrezGeneId":80346},{"hugoGeneSymbol":"REEP5","entrezGeneId":7905},{"hugoGeneSymbol":"REEP6","entrezGeneId":92840},{"hugoGeneSymbol":"REG1A","entrezGeneId":5967},{"hugoGeneSymbol":"REG1B","entrezGeneId":5968},{"hugoGeneSymbol":"REG1CP","entrezGeneId":5969},{"hugoGeneSymbol":"REG3A","entrezGeneId":5068},{"hugoGeneSymbol":"REG3G","entrezGeneId":130120},{"hugoGeneSymbol":"REG4","entrezGeneId":83998},{"hugoGeneSymbol":"REL","entrezGeneId":5966},{"hugoGeneSymbol":"RELA","entrezGeneId":5970},{"hugoGeneSymbol":"RELB","entrezGeneId":5971},{"hugoGeneSymbol":"RELL1","entrezGeneId":768211},{"hugoGeneSymbol":"RELL2","entrezGeneId":285613},{"hugoGeneSymbol":"RELN","entrezGeneId":5649},{"hugoGeneSymbol":"RELT","entrezGeneId":84957},{"hugoGeneSymbol":"REM1","entrezGeneId":28954},{"hugoGeneSymbol":"REM2","entrezGeneId":161253},{"hugoGeneSymbol":"REN","entrezGeneId":5972},{"hugoGeneSymbol":"RENBP","entrezGeneId":5973},{"hugoGeneSymbol":"RENS2","entrezGeneId":5975},{"hugoGeneSymbol":"REP15","entrezGeneId":387849},{"hugoGeneSymbol":"REPIN1","entrezGeneId":29803},{"hugoGeneSymbol":"REPS1","entrezGeneId":85021},{"hugoGeneSymbol":"REPS2","entrezGeneId":9185},{"hugoGeneSymbol":"RER","entrezGeneId":107966124},{"hugoGeneSymbol":"RER1","entrezGeneId":11079},{"hugoGeneSymbol":"RERE","entrezGeneId":473},{"hugoGeneSymbol":"REREP1Y","entrezGeneId":105377240},{"hugoGeneSymbol":"REREP2Y","entrezGeneId":105377243},{"hugoGeneSymbol":"REREP3","entrezGeneId":646396},{"hugoGeneSymbol":"RERG","entrezGeneId":85004},{"hugoGeneSymbol":"RERG-AS1","entrezGeneId":100873980},{"hugoGeneSymbol":"RERG-IT1","entrezGeneId":100874290},{"hugoGeneSymbol":"RERGL","entrezGeneId":79785},{"hugoGeneSymbol":"RESP18","entrezGeneId":389075},{"hugoGeneSymbol":"REST","entrezGeneId":5978},{"hugoGeneSymbol":"RET","entrezGeneId":5979},{"hugoGeneSymbol":"RETN","entrezGeneId":56729},{"hugoGeneSymbol":"RETNLB","entrezGeneId":84666},{"hugoGeneSymbol":"RETREG1","entrezGeneId":54463},{"hugoGeneSymbol":"RETREG2","entrezGeneId":79137},{"hugoGeneSymbol":"RETREG3","entrezGeneId":162427},{"hugoGeneSymbol":"RETSAT","entrezGeneId":54884},{"hugoGeneSymbol":"REV1","entrezGeneId":51455},{"hugoGeneSymbol":"REV3L","entrezGeneId":5980},{"hugoGeneSymbol":"REV3L-IT1","entrezGeneId":106478974},{"hugoGeneSymbol":"REX1BD","entrezGeneId":55049},{"hugoGeneSymbol":"REXO1","entrezGeneId":57455},{"hugoGeneSymbol":"REXO1L10P","entrezGeneId":100288500},{"hugoGeneSymbol":"REXO1L11P","entrezGeneId":100288470},{"hugoGeneSymbol":"REXO1L12P","entrezGeneId":100289448},{"hugoGeneSymbol":"REXO1L1P","entrezGeneId":254958},{"hugoGeneSymbol":"REXO1L2P","entrezGeneId":100288527},{"hugoGeneSymbol":"REXO1L3P","entrezGeneId":441359},{"hugoGeneSymbol":"REXO1L4P","entrezGeneId":653042},{"hugoGeneSymbol":"REXO1L5P","entrezGeneId":107986879},{"hugoGeneSymbol":"REXO1L6P","entrezGeneId":441362},{"hugoGeneSymbol":"REXO1L8P","entrezGeneId":392242},{"hugoGeneSymbol":"REXO1L9P","entrezGeneId":100506246},{"hugoGeneSymbol":"REXO2","entrezGeneId":25996},{"hugoGeneSymbol":"REXO4","entrezGeneId":57109},{"hugoGeneSymbol":"REXO5","entrezGeneId":81691},{"hugoGeneSymbol":"RFC1","entrezGeneId":5981},{"hugoGeneSymbol":"RFC2","entrezGeneId":5982},{"hugoGeneSymbol":"RFC3","entrezGeneId":5983},{"hugoGeneSymbol":"RFC3P1","entrezGeneId":100131711},{"hugoGeneSymbol":"RFC4","entrezGeneId":5984},{"hugoGeneSymbol":"RFC5","entrezGeneId":5985},{"hugoGeneSymbol":"RFC5P1","entrezGeneId":100421549},{"hugoGeneSymbol":"RFESD","entrezGeneId":317671},{"hugoGeneSymbol":"RFESDP1","entrezGeneId":100129167},{"hugoGeneSymbol":"RFFL","entrezGeneId":117584},{"hugoGeneSymbol":"RFH1","entrezGeneId":59331},{"hugoGeneSymbol":"RFK","entrezGeneId":55312},{"hugoGeneSymbol":"RFKP1","entrezGeneId":100313962},{"hugoGeneSymbol":"RFKP2","entrezGeneId":100132753},{"hugoGeneSymbol":"RFLNA","entrezGeneId":144347},{"hugoGeneSymbol":"RFLNB","entrezGeneId":359845},{"hugoGeneSymbol":"RFMN","entrezGeneId":57788},{"hugoGeneSymbol":"RFNG","entrezGeneId":5986},{"hugoGeneSymbol":"RFPL1","entrezGeneId":5988},{"hugoGeneSymbol":"RFPL1S","entrezGeneId":10740},{"hugoGeneSymbol":"RFPL2","entrezGeneId":10739},{"hugoGeneSymbol":"RFPL3","entrezGeneId":10738},{"hugoGeneSymbol":"RFPL3S","entrezGeneId":10737},{"hugoGeneSymbol":"RFPL4A","entrezGeneId":342931},{"hugoGeneSymbol":"RFPL4AL1","entrezGeneId":729974},{"hugoGeneSymbol":"RFPL4AP1","entrezGeneId":646663},{"hugoGeneSymbol":"RFPL4AP2","entrezGeneId":100420059},{"hugoGeneSymbol":"RFPL4AP3","entrezGeneId":106480810},{"hugoGeneSymbol":"RFPL4AP4","entrezGeneId":100420036},{"hugoGeneSymbol":"RFPL4AP5","entrezGeneId":100420058},{"hugoGeneSymbol":"RFPL4AP6","entrezGeneId":100130079},{"hugoGeneSymbol":"RFPL4AP7","entrezGeneId":100420055},{"hugoGeneSymbol":"RFPL4B","entrezGeneId":442247},{"hugoGeneSymbol":"RFT1","entrezGeneId":91869},{"hugoGeneSymbol":"RFTN1","entrezGeneId":23180},{"hugoGeneSymbol":"RFTN1P1","entrezGeneId":360015},{"hugoGeneSymbol":"RFTN2","entrezGeneId":130132},{"hugoGeneSymbol":"RFWD2P1","entrezGeneId":729391},{"hugoGeneSymbol":"RFWD3","entrezGeneId":55159},{"hugoGeneSymbol":"RFX1","entrezGeneId":5989},{"hugoGeneSymbol":"RFX2","entrezGeneId":5990},{"hugoGeneSymbol":"RFX3","entrezGeneId":5991},{"hugoGeneSymbol":"RFX3-AS1","entrezGeneId":101929302},{"hugoGeneSymbol":"RFX4","entrezGeneId":5992},{"hugoGeneSymbol":"RFX5","entrezGeneId":5993},{"hugoGeneSymbol":"RFX6","entrezGeneId":222546},{"hugoGeneSymbol":"RFX7","entrezGeneId":64864},{"hugoGeneSymbol":"RFX8","entrezGeneId":731220},{"hugoGeneSymbol":"RFXANK","entrezGeneId":8625},{"hugoGeneSymbol":"RFXAP","entrezGeneId":5994},{"hugoGeneSymbol":"RGCC","entrezGeneId":28984},{"hugoGeneSymbol":"RGL1","entrezGeneId":23179},{"hugoGeneSymbol":"RGL2","entrezGeneId":5863},{"hugoGeneSymbol":"RGL3","entrezGeneId":57139},{"hugoGeneSymbol":"RGL4","entrezGeneId":266747},{"hugoGeneSymbol":"RGMA","entrezGeneId":56963},{"hugoGeneSymbol":"RGMB","entrezGeneId":285704},{"hugoGeneSymbol":"RGMB-AS1","entrezGeneId":503569},{"hugoGeneSymbol":"RGN","entrezGeneId":9104},{"hugoGeneSymbol":"RGP1","entrezGeneId":9827},{"hugoGeneSymbol":"RGPD1","entrezGeneId":400966},{"hugoGeneSymbol":"RGPD2","entrezGeneId":729857},{"hugoGeneSymbol":"RGPD3","entrezGeneId":653489},{"hugoGeneSymbol":"RGPD4","entrezGeneId":285190},{"hugoGeneSymbol":"RGPD4-AS1","entrezGeneId":729121},{"hugoGeneSymbol":"RGPD5","entrezGeneId":84220},{"hugoGeneSymbol":"RGPD6","entrezGeneId":729540},{"hugoGeneSymbol":"RGPD8","entrezGeneId":727851},{"hugoGeneSymbol":"RGR","entrezGeneId":5995},{"hugoGeneSymbol":"RGS1","entrezGeneId":5996},{"hugoGeneSymbol":"RGS10","entrezGeneId":6001},{"hugoGeneSymbol":"RGS11","entrezGeneId":8786},{"hugoGeneSymbol":"RGS12","entrezGeneId":6002},{"hugoGeneSymbol":"RGS13","entrezGeneId":6003},{"hugoGeneSymbol":"RGS14","entrezGeneId":10636},{"hugoGeneSymbol":"RGS16","entrezGeneId":6004},{"hugoGeneSymbol":"RGS17","entrezGeneId":26575},{"hugoGeneSymbol":"RGS17P1","entrezGeneId":100128628},{"hugoGeneSymbol":"RGS18","entrezGeneId":64407},{"hugoGeneSymbol":"RGS19","entrezGeneId":10287},{"hugoGeneSymbol":"RGS2","entrezGeneId":5997},{"hugoGeneSymbol":"RGS20","entrezGeneId":8601},{"hugoGeneSymbol":"RGS21","entrezGeneId":431704},{"hugoGeneSymbol":"RGS22","entrezGeneId":26166},{"hugoGeneSymbol":"RGS3","entrezGeneId":5998},{"hugoGeneSymbol":"RGS4","entrezGeneId":5999},{"hugoGeneSymbol":"RGS5","entrezGeneId":8490},{"hugoGeneSymbol":"RGS6","entrezGeneId":9628},{"hugoGeneSymbol":"RGS7","entrezGeneId":6000},{"hugoGeneSymbol":"RGS7BP","entrezGeneId":401190},{"hugoGeneSymbol":"RGS8","entrezGeneId":85397},{"hugoGeneSymbol":"RGS9","entrezGeneId":8787},{"hugoGeneSymbol":"RGS9BP","entrezGeneId":388531},{"hugoGeneSymbol":"RGSL1","entrezGeneId":353299},{"hugoGeneSymbol":"RHAG","entrezGeneId":6005},{"hugoGeneSymbol":"RHBDD1","entrezGeneId":84236},{"hugoGeneSymbol":"RHBDD2","entrezGeneId":57414},{"hugoGeneSymbol":"RHBDD3","entrezGeneId":25807},{"hugoGeneSymbol":"RHBDF1","entrezGeneId":64285},{"hugoGeneSymbol":"RHBDF1P1","entrezGeneId":131973},{"hugoGeneSymbol":"RHBDF2","entrezGeneId":79651},{"hugoGeneSymbol":"RHBDL1","entrezGeneId":9028},{"hugoGeneSymbol":"RHBDL2","entrezGeneId":54933},{"hugoGeneSymbol":"RHBDL3","entrezGeneId":162494},{"hugoGeneSymbol":"RHBG","entrezGeneId":57127},{"hugoGeneSymbol":"RHCE","entrezGeneId":6006},{"hugoGeneSymbol":"RHCG","entrezGeneId":51458},{"hugoGeneSymbol":"RHD","entrezGeneId":6007},{"hugoGeneSymbol":"RHDNS1","entrezGeneId":100034704},{"hugoGeneSymbol":"RHEB","entrezGeneId":6009},{"hugoGeneSymbol":"RHEBL1","entrezGeneId":121268},{"hugoGeneSymbol":"RHEBP1","entrezGeneId":6008},{"hugoGeneSymbol":"RHEBP2","entrezGeneId":101060032},{"hugoGeneSymbol":"RHEBP3","entrezGeneId":692231},{"hugoGeneSymbol":"RHEX","entrezGeneId":440712},{"hugoGeneSymbol":"RHNO1","entrezGeneId":83695},{"hugoGeneSymbol":"RHO","entrezGeneId":6010},{"hugoGeneSymbol":"RHOA","entrezGeneId":387},{"hugoGeneSymbol":"RHOA-IT1","entrezGeneId":106480739},{"hugoGeneSymbol":"RHOB","entrezGeneId":388},{"hugoGeneSymbol":"RHOBTB1","entrezGeneId":9886},{"hugoGeneSymbol":"RHOBTB2","entrezGeneId":23221},{"hugoGeneSymbol":"RHOBTB3","entrezGeneId":22836},{"hugoGeneSymbol":"RHOC","entrezGeneId":389},{"hugoGeneSymbol":"RHOD","entrezGeneId":29984},{"hugoGeneSymbol":"RHOF","entrezGeneId":54509},{"hugoGeneSymbol":"RHOG","entrezGeneId":391},{"hugoGeneSymbol":"RHOH","entrezGeneId":399},{"hugoGeneSymbol":"RHOJ","entrezGeneId":57381},{"hugoGeneSymbol":"RHOQ","entrezGeneId":23433},{"hugoGeneSymbol":"RHOQP1","entrezGeneId":319093},{"hugoGeneSymbol":"RHOQP2","entrezGeneId":730041},{"hugoGeneSymbol":"RHOQP3","entrezGeneId":284988},{"hugoGeneSymbol":"RHOT1","entrezGeneId":55288},{"hugoGeneSymbol":"RHOT1P1","entrezGeneId":100462813},{"hugoGeneSymbol":"RHOT1P2","entrezGeneId":100462811},{"hugoGeneSymbol":"RHOT1P3","entrezGeneId":100462810},{"hugoGeneSymbol":"RHOT2","entrezGeneId":89941},{"hugoGeneSymbol":"RHOU","entrezGeneId":58480},{"hugoGeneSymbol":"RHOV","entrezGeneId":171177},{"hugoGeneSymbol":"RHOXF1","entrezGeneId":158800},{"hugoGeneSymbol":"RHOXF1-AS1","entrezGeneId":101928969},{"hugoGeneSymbol":"RHOXF1P1","entrezGeneId":101928941},{"hugoGeneSymbol":"RHOXF1P2","entrezGeneId":107075106},{"hugoGeneSymbol":"RHOXF1P3","entrezGeneId":107075307},{"hugoGeneSymbol":"RHOXF2","entrezGeneId":84528},{"hugoGeneSymbol":"RHOXF2B","entrezGeneId":727940},{"hugoGeneSymbol":"RHPN1","entrezGeneId":114822},{"hugoGeneSymbol":"RHPN1-AS1","entrezGeneId":78998},{"hugoGeneSymbol":"RHPN2","entrezGeneId":85415},{"hugoGeneSymbol":"RHPN2P1","entrezGeneId":646090},{"hugoGeneSymbol":"RIBC1","entrezGeneId":158787},{"hugoGeneSymbol":"RIBC2","entrezGeneId":26150},{"hugoGeneSymbol":"RIBIN","entrezGeneId":125168},{"hugoGeneSymbol":"RIC1","entrezGeneId":57589},{"hugoGeneSymbol":"RIC3","entrezGeneId":79608},{"hugoGeneSymbol":"RIC8A","entrezGeneId":60626},{"hugoGeneSymbol":"RIC8B","entrezGeneId":55188},{"hugoGeneSymbol":"RICTOR","entrezGeneId":253260},{"hugoGeneSymbol":"RIDA","entrezGeneId":10247},{"hugoGeneSymbol":"RIEG2","entrezGeneId":6012},{"hugoGeneSymbol":"RIF1","entrezGeneId":55183},{"hugoGeneSymbol":"RIIAD1","entrezGeneId":284485},{"hugoGeneSymbol":"RILP","entrezGeneId":83547},{"hugoGeneSymbol":"RILPL1","entrezGeneId":353116},{"hugoGeneSymbol":"RILPL2","entrezGeneId":196383},{"hugoGeneSymbol":"RIMBP2","entrezGeneId":23504},{"hugoGeneSymbol":"RIMBP3","entrezGeneId":85376},{"hugoGeneSymbol":"RIMBP3B","entrezGeneId":440804},{"hugoGeneSymbol":"RIMBP3C","entrezGeneId":150221},{"hugoGeneSymbol":"RIMKLA","entrezGeneId":284716},{"hugoGeneSymbol":"RIMKLB","entrezGeneId":57494},{"hugoGeneSymbol":"RIMKLBP1","entrezGeneId":54031},{"hugoGeneSymbol":"RIMKLBP2","entrezGeneId":100422371},{"hugoGeneSymbol":"RIMS1","entrezGeneId":22999},{"hugoGeneSymbol":"RIMS2","entrezGeneId":9699},{"hugoGeneSymbol":"RIMS3","entrezGeneId":9783},{"hugoGeneSymbol":"RIMS4","entrezGeneId":140730},{"hugoGeneSymbol":"RIN1","entrezGeneId":9610},{"hugoGeneSymbol":"RIN2","entrezGeneId":54453},{"hugoGeneSymbol":"RIN3","entrezGeneId":79890},{"hugoGeneSymbol":"RING1","entrezGeneId":6015},{"hugoGeneSymbol":"RINL","entrezGeneId":126432},{"hugoGeneSymbol":"RINT1","entrezGeneId":60561},{"hugoGeneSymbol":"RIOK1","entrezGeneId":83732},{"hugoGeneSymbol":"RIOK2","entrezGeneId":55781},{"hugoGeneSymbol":"RIOK3","entrezGeneId":8780},{"hugoGeneSymbol":"RIOK3P1","entrezGeneId":122145},{"hugoGeneSymbol":"RIOX1","entrezGeneId":79697},{"hugoGeneSymbol":"RIOX2","entrezGeneId":84864},{"hugoGeneSymbol":"RIPK1","entrezGeneId":8737},{"hugoGeneSymbol":"RIPK2","entrezGeneId":8767},{"hugoGeneSymbol":"RIPK3","entrezGeneId":11035},{"hugoGeneSymbol":"RIPK4","entrezGeneId":54101},{"hugoGeneSymbol":"RIPOR1","entrezGeneId":79567},{"hugoGeneSymbol":"RIPOR2","entrezGeneId":9750},{"hugoGeneSymbol":"RIPOR3","entrezGeneId":140876},{"hugoGeneSymbol":"RIPPLY1","entrezGeneId":92129},{"hugoGeneSymbol":"RIPPLY2","entrezGeneId":134701},{"hugoGeneSymbol":"RIPPLY3","entrezGeneId":53820},{"hugoGeneSymbol":"RIPPLY3P1","entrezGeneId":100421053},{"hugoGeneSymbol":"RIT1","entrezGeneId":6016},{"hugoGeneSymbol":"RIT2","entrezGeneId":6014},{"hugoGeneSymbol":"RITA1","entrezGeneId":84934},{"hugoGeneSymbol":"RJBS","entrezGeneId":100528027},{"hugoGeneSymbol":"RLBP1","entrezGeneId":6017},{"hugoGeneSymbol":"RLF","entrezGeneId":6018},{"hugoGeneSymbol":"RLFP1","entrezGeneId":57008},{"hugoGeneSymbol":"RLIM","entrezGeneId":51132},{"hugoGeneSymbol":"RLIMP1","entrezGeneId":100533695},{"hugoGeneSymbol":"RLIMP2","entrezGeneId":100533731},{"hugoGeneSymbol":"RLIMP3","entrezGeneId":645453},{"hugoGeneSymbol":"RLN1","entrezGeneId":6013},{"hugoGeneSymbol":"RLN2","entrezGeneId":6019},{"hugoGeneSymbol":"RLN3","entrezGeneId":117579},{"hugoGeneSymbol":"RLS1","entrezGeneId":192142},{"hugoGeneSymbol":"RLS2","entrezGeneId":450097},{"hugoGeneSymbol":"RLS3","entrezGeneId":100188812},{"hugoGeneSymbol":"RLS4","entrezGeneId":100188813},{"hugoGeneSymbol":"RLS5","entrezGeneId":100188839},{"hugoGeneSymbol":"RLS6","entrezGeneId":100302512},{"hugoGeneSymbol":"RLS7","entrezGeneId":100302561},{"hugoGeneSymbol":"RLS8","entrezGeneId":101448072},{"hugoGeneSymbol":"RMC1","entrezGeneId":29919},{"hugoGeneSymbol":"RMD1","entrezGeneId":6022},{"hugoGeneSymbol":"RMDN1","entrezGeneId":51115},{"hugoGeneSymbol":"RMDN2","entrezGeneId":151393},{"hugoGeneSymbol":"RMDN2-AS1","entrezGeneId":101410544},{"hugoGeneSymbol":"RMDN3","entrezGeneId":55177},{"hugoGeneSymbol":"RMI1","entrezGeneId":80010},{"hugoGeneSymbol":"RMI2","entrezGeneId":116028},{"hugoGeneSymbol":"RMND1","entrezGeneId":55005},{"hugoGeneSymbol":"RMND5A","entrezGeneId":64795},{"hugoGeneSymbol":"RMND5B","entrezGeneId":64777},{"hugoGeneSymbol":"RMRP","entrezGeneId":6023},{"hugoGeneSymbol":"RMRPP5","entrezGeneId":106481874},{"hugoGeneSymbol":"RMST","entrezGeneId":196475},{"hugoGeneSymbol":"RN5S1@","entrezGeneId":6025},{"hugoGeneSymbol":"RN7SK","entrezGeneId":125050},{"hugoGeneSymbol":"RN7SKP1","entrezGeneId":100873845},{"hugoGeneSymbol":"RN7SKP10","entrezGeneId":100873873},{"hugoGeneSymbol":"RN7SKP100","entrezGeneId":106479139},{"hugoGeneSymbol":"RN7SKP101","entrezGeneId":106480864},{"hugoGeneSymbol":"RN7SKP102","entrezGeneId":106481810},{"hugoGeneSymbol":"RN7SKP103","entrezGeneId":106479140},{"hugoGeneSymbol":"RN7SKP104","entrezGeneId":106480865},{"hugoGeneSymbol":"RN7SKP105","entrezGeneId":106479141},{"hugoGeneSymbol":"RN7SKP106","entrezGeneId":106479142},{"hugoGeneSymbol":"RN7SKP107","entrezGeneId":106480464},{"hugoGeneSymbol":"RN7SKP108","entrezGeneId":106480866},{"hugoGeneSymbol":"RN7SKP109","entrezGeneId":106479143},{"hugoGeneSymbol":"RN7SKP11","entrezGeneId":106479099},{"hugoGeneSymbol":"RN7SKP110","entrezGeneId":106480867},{"hugoGeneSymbol":"RN7SKP111","entrezGeneId":106479144},{"hugoGeneSymbol":"RN7SKP112","entrezGeneId":106479145},{"hugoGeneSymbol":"RN7SKP113","entrezGeneId":106480465},{"hugoGeneSymbol":"RN7SKP114","entrezGeneId":106480868},{"hugoGeneSymbol":"RN7SKP115","entrezGeneId":106479146},{"hugoGeneSymbol":"RN7SKP116","entrezGeneId":106480869},{"hugoGeneSymbol":"RN7SKP117","entrezGeneId":106479147},{"hugoGeneSymbol":"RN7SKP118","entrezGeneId":106633802},{"hugoGeneSymbol":"RN7SKP119","entrezGeneId":106481749},{"hugoGeneSymbol":"RN7SKP12","entrezGeneId":106480836},{"hugoGeneSymbol":"RN7SKP120","entrezGeneId":106480870},{"hugoGeneSymbol":"RN7SKP121","entrezGeneId":106481811},{"hugoGeneSymbol":"RN7SKP122","entrezGeneId":106479148},{"hugoGeneSymbol":"RN7SKP123","entrezGeneId":106479149},{"hugoGeneSymbol":"RN7SKP124","entrezGeneId":106480871},{"hugoGeneSymbol":"RN7SKP125","entrezGeneId":106479150},{"hugoGeneSymbol":"RN7SKP126","entrezGeneId":106480872},{"hugoGeneSymbol":"RN7SKP127","entrezGeneId":106480466},{"hugoGeneSymbol":"RN7SKP128","entrezGeneId":106479151},{"hugoGeneSymbol":"RN7SKP129","entrezGeneId":106479152},{"hugoGeneSymbol":"RN7SKP13","entrezGeneId":106479100},{"hugoGeneSymbol":"RN7SKP130","entrezGeneId":106480873},{"hugoGeneSymbol":"RN7SKP131","entrezGeneId":106479153},{"hugoGeneSymbol":"RN7SKP132","entrezGeneId":106480874},{"hugoGeneSymbol":"RN7SKP133","entrezGeneId":106481812},{"hugoGeneSymbol":"RN7SKP134","entrezGeneId":106479154},{"hugoGeneSymbol":"RN7SKP135","entrezGeneId":106480875},{"hugoGeneSymbol":"RN7SKP136","entrezGeneId":106479155},{"hugoGeneSymbol":"RN7SKP137","entrezGeneId":106479156},{"hugoGeneSymbol":"RN7SKP139","entrezGeneId":106480876},{"hugoGeneSymbol":"RN7SKP14","entrezGeneId":106479101},{"hugoGeneSymbol":"RN7SKP140","entrezGeneId":106480366},{"hugoGeneSymbol":"RN7SKP141","entrezGeneId":106479157},{"hugoGeneSymbol":"RN7SKP142","entrezGeneId":106480877},{"hugoGeneSymbol":"RN7SKP143","entrezGeneId":106479158},{"hugoGeneSymbol":"RN7SKP144","entrezGeneId":106479159},{"hugoGeneSymbol":"RN7SKP145","entrezGeneId":106480878},{"hugoGeneSymbol":"RN7SKP146","entrezGeneId":106479160},{"hugoGeneSymbol":"RN7SKP147","entrezGeneId":106480879},{"hugoGeneSymbol":"RN7SKP148","entrezGeneId":106480467},{"hugoGeneSymbol":"RN7SKP149","entrezGeneId":106479161},{"hugoGeneSymbol":"RN7SKP15","entrezGeneId":106480456},{"hugoGeneSymbol":"RN7SKP150","entrezGeneId":106480880},{"hugoGeneSymbol":"RN7SKP151","entrezGeneId":106479162},{"hugoGeneSymbol":"RN7SKP152","entrezGeneId":106479163},{"hugoGeneSymbol":"RN7SKP153","entrezGeneId":106481813},{"hugoGeneSymbol":"RN7SKP154","entrezGeneId":106480881},{"hugoGeneSymbol":"RN7SKP155","entrezGeneId":106479164},{"hugoGeneSymbol":"RN7SKP156","entrezGeneId":106480882},{"hugoGeneSymbol":"RN7SKP157","entrezGeneId":106479165},{"hugoGeneSymbol":"RN7SKP158","entrezGeneId":106480883},{"hugoGeneSymbol":"RN7SKP159","entrezGeneId":106480468},{"hugoGeneSymbol":"RN7SKP16","entrezGeneId":106480837},{"hugoGeneSymbol":"RN7SKP160","entrezGeneId":106479166},{"hugoGeneSymbol":"RN7SKP161","entrezGeneId":106479167},{"hugoGeneSymbol":"RN7SKP162","entrezGeneId":106480884},{"hugoGeneSymbol":"RN7SKP163","entrezGeneId":106479168},{"hugoGeneSymbol":"RN7SKP164","entrezGeneId":106480885},{"hugoGeneSymbol":"RN7SKP165","entrezGeneId":106480367},{"hugoGeneSymbol":"RN7SKP166","entrezGeneId":106481814},{"hugoGeneSymbol":"RN7SKP167","entrezGeneId":106479169},{"hugoGeneSymbol":"RN7SKP168","entrezGeneId":106479170},{"hugoGeneSymbol":"RN7SKP169","entrezGeneId":106480886},{"hugoGeneSymbol":"RN7SKP17","entrezGeneId":106479102},{"hugoGeneSymbol":"RN7SKP170","entrezGeneId":106479171},{"hugoGeneSymbol":"RN7SKP171","entrezGeneId":106480887},{"hugoGeneSymbol":"RN7SKP172","entrezGeneId":106480469},{"hugoGeneSymbol":"RN7SKP173","entrezGeneId":106635535},{"hugoGeneSymbol":"RN7SKP174","entrezGeneId":106479172},{"hugoGeneSymbol":"RN7SKP175","entrezGeneId":106479173},{"hugoGeneSymbol":"RN7SKP176","entrezGeneId":106635536},{"hugoGeneSymbol":"RN7SKP177","entrezGeneId":106479174},{"hugoGeneSymbol":"RN7SKP178","entrezGeneId":106479175},{"hugoGeneSymbol":"RN7SKP179","entrezGeneId":106481815},{"hugoGeneSymbol":"RN7SKP18","entrezGeneId":106480838},{"hugoGeneSymbol":"RN7SKP180","entrezGeneId":106480888},{"hugoGeneSymbol":"RN7SKP181","entrezGeneId":106479176},{"hugoGeneSymbol":"RN7SKP182","entrezGeneId":106479177},{"hugoGeneSymbol":"RN7SKP183","entrezGeneId":106480889},{"hugoGeneSymbol":"RN7SKP184","entrezGeneId":106480470},{"hugoGeneSymbol":"RN7SKP185","entrezGeneId":106479178},{"hugoGeneSymbol":"RN7SKP186","entrezGeneId":106480692},{"hugoGeneSymbol":"RN7SKP187","entrezGeneId":106480890},{"hugoGeneSymbol":"RN7SKP188","entrezGeneId":106479179},{"hugoGeneSymbol":"RN7SKP189","entrezGeneId":106479180},{"hugoGeneSymbol":"RN7SKP19","entrezGeneId":106479103},{"hugoGeneSymbol":"RN7SKP190","entrezGeneId":106480891},{"hugoGeneSymbol":"RN7SKP191","entrezGeneId":106480471},{"hugoGeneSymbol":"RN7SKP192","entrezGeneId":106480892},{"hugoGeneSymbol":"RN7SKP193","entrezGeneId":106479181},{"hugoGeneSymbol":"RN7SKP194","entrezGeneId":106480893},{"hugoGeneSymbol":"RN7SKP195","entrezGeneId":106481816},{"hugoGeneSymbol":"RN7SKP196","entrezGeneId":106479182},{"hugoGeneSymbol":"RN7SKP197","entrezGeneId":106480894},{"hugoGeneSymbol":"RN7SKP198","entrezGeneId":106479183},{"hugoGeneSymbol":"RN7SKP199","entrezGeneId":106479184},{"hugoGeneSymbol":"RN7SKP2","entrezGeneId":100873846},{"hugoGeneSymbol":"RN7SKP20","entrezGeneId":106479104},{"hugoGeneSymbol":"RN7SKP200","entrezGeneId":106480895},{"hugoGeneSymbol":"RN7SKP202","entrezGeneId":106480472},{"hugoGeneSymbol":"RN7SKP203","entrezGeneId":106479185},{"hugoGeneSymbol":"RN7SKP204","entrezGeneId":106480896},{"hugoGeneSymbol":"RN7SKP205","entrezGeneId":106479186},{"hugoGeneSymbol":"RN7SKP206","entrezGeneId":106479187},{"hugoGeneSymbol":"RN7SKP207","entrezGeneId":106480897},{"hugoGeneSymbol":"RN7SKP208","entrezGeneId":106481817},{"hugoGeneSymbol":"RN7SKP209","entrezGeneId":106479188},{"hugoGeneSymbol":"RN7SKP21","entrezGeneId":106480839},{"hugoGeneSymbol":"RN7SKP210","entrezGeneId":106480898},{"hugoGeneSymbol":"RN7SKP211","entrezGeneId":106479189},{"hugoGeneSymbol":"RN7SKP212","entrezGeneId":106481750},{"hugoGeneSymbol":"RN7SKP213","entrezGeneId":106480899},{"hugoGeneSymbol":"RN7SKP214","entrezGeneId":106480473},{"hugoGeneSymbol":"RN7SKP216","entrezGeneId":106479190},{"hugoGeneSymbol":"RN7SKP217","entrezGeneId":106479191},{"hugoGeneSymbol":"RN7SKP218","entrezGeneId":106480900},{"hugoGeneSymbol":"RN7SKP219","entrezGeneId":106479192},{"hugoGeneSymbol":"RN7SKP22","entrezGeneId":106481805},{"hugoGeneSymbol":"RN7SKP220","entrezGeneId":106480901},{"hugoGeneSymbol":"RN7SKP221","entrezGeneId":106480474},{"hugoGeneSymbol":"RN7SKP222","entrezGeneId":106479193},{"hugoGeneSymbol":"RN7SKP223","entrezGeneId":106479194},{"hugoGeneSymbol":"RN7SKP224","entrezGeneId":106480902},{"hugoGeneSymbol":"RN7SKP225","entrezGeneId":106479195},{"hugoGeneSymbol":"RN7SKP226","entrezGeneId":106480903},{"hugoGeneSymbol":"RN7SKP227","entrezGeneId":106481818},{"hugoGeneSymbol":"RN7SKP228","entrezGeneId":106479196},{"hugoGeneSymbol":"RN7SKP229","entrezGeneId":106480904},{"hugoGeneSymbol":"RN7SKP23","entrezGeneId":106479105},{"hugoGeneSymbol":"RN7SKP230","entrezGeneId":106479197},{"hugoGeneSymbol":"RN7SKP231","entrezGeneId":106479198},{"hugoGeneSymbol":"RN7SKP232","entrezGeneId":106480905},{"hugoGeneSymbol":"RN7SKP233","entrezGeneId":106480475},{"hugoGeneSymbol":"RN7SKP234","entrezGeneId":106480368},{"hugoGeneSymbol":"RN7SKP235","entrezGeneId":106479199},{"hugoGeneSymbol":"RN7SKP236","entrezGeneId":106480906},{"hugoGeneSymbol":"RN7SKP237","entrezGeneId":106479200},{"hugoGeneSymbol":"RN7SKP238","entrezGeneId":106479201},{"hugoGeneSymbol":"RN7SKP239","entrezGeneId":106480907},{"hugoGeneSymbol":"RN7SKP24","entrezGeneId":106480840},{"hugoGeneSymbol":"RN7SKP240","entrezGeneId":106479202},{"hugoGeneSymbol":"RN7SKP241","entrezGeneId":107063536},{"hugoGeneSymbol":"RN7SKP242","entrezGeneId":106480908},{"hugoGeneSymbol":"RN7SKP243","entrezGeneId":106481819},{"hugoGeneSymbol":"RN7SKP244","entrezGeneId":106479203},{"hugoGeneSymbol":"RN7SKP245","entrezGeneId":106480909},{"hugoGeneSymbol":"RN7SKP246","entrezGeneId":106479204},{"hugoGeneSymbol":"RN7SKP247","entrezGeneId":106479205},{"hugoGeneSymbol":"RN7SKP248","entrezGeneId":106480476},{"hugoGeneSymbol":"RN7SKP249","entrezGeneId":106480910},{"hugoGeneSymbol":"RN7SKP25","entrezGeneId":106480364},{"hugoGeneSymbol":"RN7SKP250","entrezGeneId":106479206},{"hugoGeneSymbol":"RN7SKP251","entrezGeneId":106633807},{"hugoGeneSymbol":"RN7SKP252","entrezGeneId":106479207},{"hugoGeneSymbol":"RN7SKP253","entrezGeneId":106479208},{"hugoGeneSymbol":"RN7SKP254","entrezGeneId":106481820},{"hugoGeneSymbol":"RN7SKP255","entrezGeneId":106479209},{"hugoGeneSymbol":"RN7SKP256","entrezGeneId":106480911},{"hugoGeneSymbol":"RN7SKP257","entrezGeneId":106479210},{"hugoGeneSymbol":"RN7SKP258","entrezGeneId":106480912},{"hugoGeneSymbol":"RN7SKP259","entrezGeneId":106481751},{"hugoGeneSymbol":"RN7SKP26","entrezGeneId":106479106},{"hugoGeneSymbol":"RN7SKP260","entrezGeneId":106479211},{"hugoGeneSymbol":"RN7SKP261","entrezGeneId":106480477},{"hugoGeneSymbol":"RN7SKP262","entrezGeneId":106479212},{"hugoGeneSymbol":"RN7SKP263","entrezGeneId":106480913},{"hugoGeneSymbol":"RN7SKP264","entrezGeneId":106479213},{"hugoGeneSymbol":"RN7SKP265","entrezGeneId":106480914},{"hugoGeneSymbol":"RN7SKP266","entrezGeneId":106479214},{"hugoGeneSymbol":"RN7SKP267","entrezGeneId":106480478},{"hugoGeneSymbol":"RN7SKP268","entrezGeneId":106479215},{"hugoGeneSymbol":"RN7SKP269","entrezGeneId":106480915},{"hugoGeneSymbol":"RN7SKP27","entrezGeneId":106480841},{"hugoGeneSymbol":"RN7SKP270","entrezGeneId":106479216},{"hugoGeneSymbol":"RN7SKP271","entrezGeneId":106480916},{"hugoGeneSymbol":"RN7SKP272","entrezGeneId":106479217},{"hugoGeneSymbol":"RN7SKP273","entrezGeneId":106481821},{"hugoGeneSymbol":"RN7SKP275","entrezGeneId":106480917},{"hugoGeneSymbol":"RN7SKP276","entrezGeneId":106479218},{"hugoGeneSymbol":"RN7SKP277","entrezGeneId":106479219},{"hugoGeneSymbol":"RN7SKP278","entrezGeneId":106480918},{"hugoGeneSymbol":"RN7SKP279","entrezGeneId":106480479},{"hugoGeneSymbol":"RN7SKP28","entrezGeneId":106479107},{"hugoGeneSymbol":"RN7SKP280","entrezGeneId":106479220},{"hugoGeneSymbol":"RN7SKP281","entrezGeneId":106480369},{"hugoGeneSymbol":"RN7SKP282","entrezGeneId":106480919},{"hugoGeneSymbol":"RN7SKP283","entrezGeneId":106479221},{"hugoGeneSymbol":"RN7SKP284","entrezGeneId":106479222},{"hugoGeneSymbol":"RN7SKP285","entrezGeneId":106480920},{"hugoGeneSymbol":"RN7SKP286","entrezGeneId":106481822},{"hugoGeneSymbol":"RN7SKP287","entrezGeneId":106480921},{"hugoGeneSymbol":"RN7SKP288","entrezGeneId":106479223},{"hugoGeneSymbol":"RN7SKP289","entrezGeneId":106479224},{"hugoGeneSymbol":"RN7SKP29","entrezGeneId":106480457},{"hugoGeneSymbol":"RN7SKP290","entrezGeneId":106480480},{"hugoGeneSymbol":"RN7SKP291","entrezGeneId":106480922},{"hugoGeneSymbol":"RN7SKP292","entrezGeneId":106479225},{"hugoGeneSymbol":"RN7SKP293","entrezGeneId":106480923},{"hugoGeneSymbol":"RN7SKP294","entrezGeneId":106479226},{"hugoGeneSymbol":"RN7SKP295","entrezGeneId":106480924},{"hugoGeneSymbol":"RN7SKP296","entrezGeneId":106481823},{"hugoGeneSymbol":"RN7SKP297","entrezGeneId":106479227},{"hugoGeneSymbol":"RN7SKP298","entrezGeneId":106479228},{"hugoGeneSymbol":"RN7SKP299","entrezGeneId":106480925},{"hugoGeneSymbol":"RN7SKP3","entrezGeneId":100873847},{"hugoGeneSymbol":"RN7SKP30","entrezGeneId":106479108},{"hugoGeneSymbol":"RN7SKP31","entrezGeneId":106480842},{"hugoGeneSymbol":"RN7SKP32","entrezGeneId":106479109},{"hugoGeneSymbol":"RN7SKP33","entrezGeneId":106480843},{"hugoGeneSymbol":"RN7SKP34","entrezGeneId":106479110},{"hugoGeneSymbol":"RN7SKP35","entrezGeneId":106479111},{"hugoGeneSymbol":"RN7SKP36","entrezGeneId":106480458},{"hugoGeneSymbol":"RN7SKP37","entrezGeneId":106480844},{"hugoGeneSymbol":"RN7SKP38","entrezGeneId":106479112},{"hugoGeneSymbol":"RN7SKP39","entrezGeneId":106480845},{"hugoGeneSymbol":"RN7SKP4","entrezGeneId":100873848},{"hugoGeneSymbol":"RN7SKP40","entrezGeneId":106479113},{"hugoGeneSymbol":"RN7SKP42","entrezGeneId":106480846},{"hugoGeneSymbol":"RN7SKP43","entrezGeneId":106481806},{"hugoGeneSymbol":"RN7SKP44","entrezGeneId":106479114},{"hugoGeneSymbol":"RN7SKP45","entrezGeneId":106479115},{"hugoGeneSymbol":"RN7SKP46","entrezGeneId":106480847},{"hugoGeneSymbol":"RN7SKP47","entrezGeneId":106481974},{"hugoGeneSymbol":"RN7SKP48","entrezGeneId":106479116},{"hugoGeneSymbol":"RN7SKP49","entrezGeneId":106480848},{"hugoGeneSymbol":"RN7SKP5","entrezGeneId":100873849},{"hugoGeneSymbol":"RN7SKP50","entrezGeneId":106480459},{"hugoGeneSymbol":"RN7SKP51","entrezGeneId":106479117},{"hugoGeneSymbol":"RN7SKP52","entrezGeneId":106479118},{"hugoGeneSymbol":"RN7SKP53","entrezGeneId":106480849},{"hugoGeneSymbol":"RN7SKP54","entrezGeneId":107080626},{"hugoGeneSymbol":"RN7SKP55","entrezGeneId":106479119},{"hugoGeneSymbol":"RN7SKP56","entrezGeneId":106481807},{"hugoGeneSymbol":"RN7SKP57","entrezGeneId":106479120},{"hugoGeneSymbol":"RN7SKP58","entrezGeneId":106480850},{"hugoGeneSymbol":"RN7SKP59","entrezGeneId":106479121},{"hugoGeneSymbol":"RN7SKP6","entrezGeneId":100873850},{"hugoGeneSymbol":"RN7SKP60","entrezGeneId":106480851},{"hugoGeneSymbol":"RN7SKP61","entrezGeneId":106479122},{"hugoGeneSymbol":"RN7SKP62","entrezGeneId":106480460},{"hugoGeneSymbol":"RN7SKP63","entrezGeneId":106479123},{"hugoGeneSymbol":"RN7SKP64","entrezGeneId":106480852},{"hugoGeneSymbol":"RN7SKP65","entrezGeneId":106479124},{"hugoGeneSymbol":"RN7SKP66","entrezGeneId":106480853},{"hugoGeneSymbol":"RN7SKP67","entrezGeneId":106479125},{"hugoGeneSymbol":"RN7SKP68","entrezGeneId":106480854},{"hugoGeneSymbol":"RN7SKP69","entrezGeneId":106480461},{"hugoGeneSymbol":"RN7SKP7","entrezGeneId":100873851},{"hugoGeneSymbol":"RN7SKP70","entrezGeneId":107057644},{"hugoGeneSymbol":"RN7SKP71","entrezGeneId":106479126},{"hugoGeneSymbol":"RN7SKP72","entrezGeneId":106481748},{"hugoGeneSymbol":"RN7SKP73","entrezGeneId":106480855},{"hugoGeneSymbol":"RN7SKP74","entrezGeneId":106479127},{"hugoGeneSymbol":"RN7SKP75","entrezGeneId":106480856},{"hugoGeneSymbol":"RN7SKP76","entrezGeneId":106481808},{"hugoGeneSymbol":"RN7SKP77","entrezGeneId":106479128},{"hugoGeneSymbol":"RN7SKP78","entrezGeneId":106479129},{"hugoGeneSymbol":"RN7SKP79","entrezGeneId":106480857},{"hugoGeneSymbol":"RN7SKP8","entrezGeneId":100873852},{"hugoGeneSymbol":"RN7SKP80","entrezGeneId":106479130},{"hugoGeneSymbol":"RN7SKP81","entrezGeneId":106480858},{"hugoGeneSymbol":"RN7SKP82","entrezGeneId":106480462},{"hugoGeneSymbol":"RN7SKP83","entrezGeneId":106479131},{"hugoGeneSymbol":"RN7SKP85","entrezGeneId":106479132},{"hugoGeneSymbol":"RN7SKP86","entrezGeneId":106480859},{"hugoGeneSymbol":"RN7SKP87","entrezGeneId":106479133},{"hugoGeneSymbol":"RN7SKP88","entrezGeneId":106480860},{"hugoGeneSymbol":"RN7SKP89","entrezGeneId":106479134},{"hugoGeneSymbol":"RN7SKP9","entrezGeneId":100873853},{"hugoGeneSymbol":"RN7SKP90","entrezGeneId":106481809},{"hugoGeneSymbol":"RN7SKP91","entrezGeneId":106480861},{"hugoGeneSymbol":"RN7SKP92","entrezGeneId":106479135},{"hugoGeneSymbol":"RN7SKP93","entrezGeneId":106479136},{"hugoGeneSymbol":"RN7SKP94","entrezGeneId":106480365},{"hugoGeneSymbol":"RN7SKP95","entrezGeneId":106480862},{"hugoGeneSymbol":"RN7SKP96","entrezGeneId":106479137},{"hugoGeneSymbol":"RN7SKP97","entrezGeneId":106480463},{"hugoGeneSymbol":"RN7SKP98","entrezGeneId":106480863},{"hugoGeneSymbol":"RN7SKP99","entrezGeneId":106479138},{"hugoGeneSymbol":"RN7SL1","entrezGeneId":6029},{"hugoGeneSymbol":"RN7SL100P","entrezGeneId":106480948},{"hugoGeneSymbol":"RN7SL101P","entrezGeneId":106479260},{"hugoGeneSymbol":"RN7SL104P","entrezGeneId":106480949},{"hugoGeneSymbol":"RN7SL105P","entrezGeneId":106480487},{"hugoGeneSymbol":"RN7SL106P","entrezGeneId":106479261},{"hugoGeneSymbol":"RN7SL107P","entrezGeneId":106479262},{"hugoGeneSymbol":"RN7SL108P","entrezGeneId":106480950},{"hugoGeneSymbol":"RN7SL110P","entrezGeneId":106480371},{"hugoGeneSymbol":"RN7SL111P","entrezGeneId":106479263},{"hugoGeneSymbol":"RN7SL113P","entrezGeneId":106480951},{"hugoGeneSymbol":"RN7SL116P","entrezGeneId":106480488},{"hugoGeneSymbol":"RN7SL117P","entrezGeneId":106479264},{"hugoGeneSymbol":"RN7SL118P","entrezGeneId":106480952},{"hugoGeneSymbol":"RN7SL11P","entrezGeneId":106479229},{"hugoGeneSymbol":"RN7SL120P","entrezGeneId":106480953},{"hugoGeneSymbol":"RN7SL121P","entrezGeneId":106479265},{"hugoGeneSymbol":"RN7SL122P","entrezGeneId":106480954},{"hugoGeneSymbol":"RN7SL123P","entrezGeneId":106479266},{"hugoGeneSymbol":"RN7SL124P","entrezGeneId":106480955},{"hugoGeneSymbol":"RN7SL125P","entrezGeneId":106479267},{"hugoGeneSymbol":"RN7SL126P","entrezGeneId":106479268},{"hugoGeneSymbol":"RN7SL127P","entrezGeneId":106480956},{"hugoGeneSymbol":"RN7SL128P","entrezGeneId":106481826},{"hugoGeneSymbol":"RN7SL12P","entrezGeneId":106480926},{"hugoGeneSymbol":"RN7SL130P","entrezGeneId":106479269},{"hugoGeneSymbol":"RN7SL131P","entrezGeneId":106480957},{"hugoGeneSymbol":"RN7SL132P","entrezGeneId":106479270},{"hugoGeneSymbol":"RN7SL134P","entrezGeneId":106479271},{"hugoGeneSymbol":"RN7SL135P","entrezGeneId":106480958},{"hugoGeneSymbol":"RN7SL138P","entrezGeneId":106480489},{"hugoGeneSymbol":"RN7SL140P","entrezGeneId":106479272},{"hugoGeneSymbol":"RN7SL141P","entrezGeneId":106480959},{"hugoGeneSymbol":"RN7SL143P","entrezGeneId":106479273},{"hugoGeneSymbol":"RN7SL144P","entrezGeneId":106480960},{"hugoGeneSymbol":"RN7SL145P","entrezGeneId":106481753},{"hugoGeneSymbol":"RN7SL146P","entrezGeneId":106481827},{"hugoGeneSymbol":"RN7SL147P","entrezGeneId":106479274},{"hugoGeneSymbol":"RN7SL148P","entrezGeneId":106479275},{"hugoGeneSymbol":"RN7SL149P","entrezGeneId":106480961},{"hugoGeneSymbol":"RN7SL14P","entrezGeneId":106480481},{"hugoGeneSymbol":"RN7SL150P","entrezGeneId":106479276},{"hugoGeneSymbol":"RN7SL151P","entrezGeneId":107075319},{"hugoGeneSymbol":"RN7SL152P","entrezGeneId":106480962},{"hugoGeneSymbol":"RN7SL153P","entrezGeneId":106480490},{"hugoGeneSymbol":"RN7SL154P","entrezGeneId":106479277},{"hugoGeneSymbol":"RN7SL155P","entrezGeneId":106479278},{"hugoGeneSymbol":"RN7SL156P","entrezGeneId":106480963},{"hugoGeneSymbol":"RN7SL159P","entrezGeneId":106479279},{"hugoGeneSymbol":"RN7SL15P","entrezGeneId":106479230},{"hugoGeneSymbol":"RN7SL160P","entrezGeneId":106480964},{"hugoGeneSymbol":"RN7SL162P","entrezGeneId":106481828},{"hugoGeneSymbol":"RN7SL163P","entrezGeneId":106479280},{"hugoGeneSymbol":"RN7SL164P","entrezGeneId":106480965},{"hugoGeneSymbol":"RN7SL165P","entrezGeneId":106479281},{"hugoGeneSymbol":"RN7SL166P","entrezGeneId":106479282},{"hugoGeneSymbol":"RN7SL167P","entrezGeneId":106480966},{"hugoGeneSymbol":"RN7SL168P","entrezGeneId":106480491},{"hugoGeneSymbol":"RN7SL169P","entrezGeneId":106480372},{"hugoGeneSymbol":"RN7SL16P","entrezGeneId":106479231},{"hugoGeneSymbol":"RN7SL170P","entrezGeneId":106479283},{"hugoGeneSymbol":"RN7SL172P","entrezGeneId":106480967},{"hugoGeneSymbol":"RN7SL173P","entrezGeneId":106479284},{"hugoGeneSymbol":"RN7SL174P","entrezGeneId":106479285},{"hugoGeneSymbol":"RN7SL176P","entrezGeneId":106480968},{"hugoGeneSymbol":"RN7SL177P","entrezGeneId":106480969},{"hugoGeneSymbol":"RN7SL178P","entrezGeneId":106479286},{"hugoGeneSymbol":"RN7SL180P","entrezGeneId":106480970},{"hugoGeneSymbol":"RN7SL181P","entrezGeneId":106480492},{"hugoGeneSymbol":"RN7SL182P","entrezGeneId":106479287},{"hugoGeneSymbol":"RN7SL183P","entrezGeneId":106480971},{"hugoGeneSymbol":"RN7SL184P","entrezGeneId":106479288},{"hugoGeneSymbol":"RN7SL185P","entrezGeneId":106479289},{"hugoGeneSymbol":"RN7SL186P","entrezGeneId":106480972},{"hugoGeneSymbol":"RN7SL187P","entrezGeneId":106481829},{"hugoGeneSymbol":"RN7SL188P","entrezGeneId":106479290},{"hugoGeneSymbol":"RN7SL189P","entrezGeneId":106480973},{"hugoGeneSymbol":"RN7SL18P","entrezGeneId":106480927},{"hugoGeneSymbol":"RN7SL190P","entrezGeneId":106479291},{"hugoGeneSymbol":"RN7SL191P","entrezGeneId":106479292},{"hugoGeneSymbol":"RN7SL192P","entrezGeneId":106480974},{"hugoGeneSymbol":"RN7SL193P","entrezGeneId":106480493},{"hugoGeneSymbol":"RN7SL196P","entrezGeneId":106479293},{"hugoGeneSymbol":"RN7SL197P","entrezGeneId":106480975},{"hugoGeneSymbol":"RN7SL198P","entrezGeneId":106479294},{"hugoGeneSymbol":"RN7SL199P","entrezGeneId":106480693},{"hugoGeneSymbol":"RN7SL19P","entrezGeneId":106480370},{"hugoGeneSymbol":"RN7SL2","entrezGeneId":378706},{"hugoGeneSymbol":"RN7SL200P","entrezGeneId":106480976},{"hugoGeneSymbol":"RN7SL201P","entrezGeneId":106481830},{"hugoGeneSymbol":"RN7SL202P","entrezGeneId":106479295},{"hugoGeneSymbol":"RN7SL203P","entrezGeneId":106479296},{"hugoGeneSymbol":"RN7SL204P","entrezGeneId":106480977},{"hugoGeneSymbol":"RN7SL205P","entrezGeneId":106479297},{"hugoGeneSymbol":"RN7SL208P","entrezGeneId":106480978},{"hugoGeneSymbol":"RN7SL209P","entrezGeneId":106480494},{"hugoGeneSymbol":"RN7SL20P","entrezGeneId":106479232},{"hugoGeneSymbol":"RN7SL210P","entrezGeneId":106479298},{"hugoGeneSymbol":"RN7SL211P","entrezGeneId":106479299},{"hugoGeneSymbol":"RN7SL213P","entrezGeneId":106480979},{"hugoGeneSymbol":"RN7SL214P","entrezGeneId":106479300},{"hugoGeneSymbol":"RN7SL215P","entrezGeneId":106480980},{"hugoGeneSymbol":"RN7SL216P","entrezGeneId":106480495},{"hugoGeneSymbol":"RN7SL217P","entrezGeneId":106479301},{"hugoGeneSymbol":"RN7SL218P","entrezGeneId":106480981},{"hugoGeneSymbol":"RN7SL219P","entrezGeneId":106479302},{"hugoGeneSymbol":"RN7SL220P","entrezGeneId":106479303},{"hugoGeneSymbol":"RN7SL221P","entrezGeneId":106480982},{"hugoGeneSymbol":"RN7SL222P","entrezGeneId":106481831},{"hugoGeneSymbol":"RN7SL223P","entrezGeneId":106481754},{"hugoGeneSymbol":"RN7SL225P","entrezGeneId":106479304},{"hugoGeneSymbol":"RN7SL228P","entrezGeneId":106480983},{"hugoGeneSymbol":"RN7SL229P","entrezGeneId":106479305},{"hugoGeneSymbol":"RN7SL22P","entrezGeneId":106480928},{"hugoGeneSymbol":"RN7SL230P","entrezGeneId":106479306},{"hugoGeneSymbol":"RN7SL231P","entrezGeneId":106480984},{"hugoGeneSymbol":"RN7SL233P","entrezGeneId":106480985},{"hugoGeneSymbol":"RN7SL234P","entrezGeneId":106479307},{"hugoGeneSymbol":"RN7SL236P","entrezGeneId":106480986},{"hugoGeneSymbol":"RN7SL237P","entrezGeneId":106479308},{"hugoGeneSymbol":"RN7SL238P","entrezGeneId":106480987},{"hugoGeneSymbol":"RN7SL239P","entrezGeneId":106479309},{"hugoGeneSymbol":"RN7SL23P","entrezGeneId":106480482},{"hugoGeneSymbol":"RN7SL240P","entrezGeneId":106479310},{"hugoGeneSymbol":"RN7SL241P","entrezGeneId":106480988},{"hugoGeneSymbol":"RN7SL242P","entrezGeneId":106480496},{"hugoGeneSymbol":"RN7SL244P","entrezGeneId":106479311},{"hugoGeneSymbol":"RN7SL246P","entrezGeneId":106480989},{"hugoGeneSymbol":"RN7SL248P","entrezGeneId":106479312},{"hugoGeneSymbol":"RN7SL250P","entrezGeneId":106479313},{"hugoGeneSymbol":"RN7SL251P","entrezGeneId":106480990},{"hugoGeneSymbol":"RN7SL252P","entrezGeneId":106481832},{"hugoGeneSymbol":"RN7SL253P","entrezGeneId":106479314},{"hugoGeneSymbol":"RN7SL254P","entrezGeneId":106480991},{"hugoGeneSymbol":"RN7SL255P","entrezGeneId":106479315},{"hugoGeneSymbol":"RN7SL258P","entrezGeneId":106480373},{"hugoGeneSymbol":"RN7SL259P","entrezGeneId":106480992},{"hugoGeneSymbol":"RN7SL25P","entrezGeneId":106479233},{"hugoGeneSymbol":"RN7SL260P","entrezGeneId":106480497},{"hugoGeneSymbol":"RN7SL261P","entrezGeneId":106479316},{"hugoGeneSymbol":"RN7SL262P","entrezGeneId":106479317},{"hugoGeneSymbol":"RN7SL263P","entrezGeneId":106480993},{"hugoGeneSymbol":"RN7SL265P","entrezGeneId":106479318},{"hugoGeneSymbol":"RN7SL266P","entrezGeneId":106480994},{"hugoGeneSymbol":"RN7SL267P","entrezGeneId":106481833},{"hugoGeneSymbol":"RN7SL268P","entrezGeneId":106479319},{"hugoGeneSymbol":"RN7SL269P","entrezGeneId":106479320},{"hugoGeneSymbol":"RN7SL26P","entrezGeneId":106479234},{"hugoGeneSymbol":"RN7SL270P","entrezGeneId":106480995},{"hugoGeneSymbol":"RN7SL271P","entrezGeneId":106479321},{"hugoGeneSymbol":"RN7SL272P","entrezGeneId":106480996},{"hugoGeneSymbol":"RN7SL273P","entrezGeneId":106481834},{"hugoGeneSymbol":"RN7SL274P","entrezGeneId":106479322},{"hugoGeneSymbol":"RN7SL275P","entrezGeneId":106480997},{"hugoGeneSymbol":"RN7SL277P","entrezGeneId":106479323},{"hugoGeneSymbol":"RN7SL278P","entrezGeneId":106479324},{"hugoGeneSymbol":"RN7SL279P","entrezGeneId":106480998},{"hugoGeneSymbol":"RN7SL280P","entrezGeneId":106480498},{"hugoGeneSymbol":"RN7SL282P","entrezGeneId":106480374},{"hugoGeneSymbol":"RN7SL283P","entrezGeneId":106479325},{"hugoGeneSymbol":"RN7SL284P","entrezGeneId":106480999},{"hugoGeneSymbol":"RN7SL285P","entrezGeneId":106479326},{"hugoGeneSymbol":"RN7SL286P","entrezGeneId":106479327},{"hugoGeneSymbol":"RN7SL288P","entrezGeneId":106481000},{"hugoGeneSymbol":"RN7SL28P","entrezGeneId":106480929},{"hugoGeneSymbol":"RN7SL290P","entrezGeneId":106481001},{"hugoGeneSymbol":"RN7SL291P","entrezGeneId":106479328},{"hugoGeneSymbol":"RN7SL292P","entrezGeneId":106481002},{"hugoGeneSymbol":"RN7SL293P","entrezGeneId":106481835},{"hugoGeneSymbol":"RN7SL294P","entrezGeneId":106479329},{"hugoGeneSymbol":"RN7SL296P","entrezGeneId":106481003},{"hugoGeneSymbol":"RN7SL297P","entrezGeneId":106479330},{"hugoGeneSymbol":"RN7SL299P","entrezGeneId":106479331},{"hugoGeneSymbol":"RN7SL3","entrezGeneId":378707},{"hugoGeneSymbol":"RN7SL300P","entrezGeneId":106481004},{"hugoGeneSymbol":"RN7SL301P","entrezGeneId":106480499},{"hugoGeneSymbol":"RN7SL302P","entrezGeneId":106479332},{"hugoGeneSymbol":"RN7SL303P","entrezGeneId":106481005},{"hugoGeneSymbol":"RN7SL304P","entrezGeneId":106479333},{"hugoGeneSymbol":"RN7SL305P","entrezGeneId":106479334},{"hugoGeneSymbol":"RN7SL306P","entrezGeneId":106481006},{"hugoGeneSymbol":"RN7SL307P","entrezGeneId":106480500},{"hugoGeneSymbol":"RN7SL308P","entrezGeneId":106479335},{"hugoGeneSymbol":"RN7SL309P","entrezGeneId":106481007},{"hugoGeneSymbol":"RN7SL30P","entrezGeneId":106479235},{"hugoGeneSymbol":"RN7SL310P","entrezGeneId":106479336},{"hugoGeneSymbol":"RN7SL311P","entrezGeneId":106481755},{"hugoGeneSymbol":"RN7SL313P","entrezGeneId":106481008},{"hugoGeneSymbol":"RN7SL314P","entrezGeneId":106481836},{"hugoGeneSymbol":"RN7SL316P","entrezGeneId":106479337},{"hugoGeneSymbol":"RN7SL317P","entrezGeneId":106479338},{"hugoGeneSymbol":"RN7SL318P","entrezGeneId":106481009},{"hugoGeneSymbol":"RN7SL319P","entrezGeneId":106479339},{"hugoGeneSymbol":"RN7SL320P","entrezGeneId":106481010},{"hugoGeneSymbol":"RN7SL321P","entrezGeneId":106480501},{"hugoGeneSymbol":"RN7SL322P","entrezGeneId":106479340},{"hugoGeneSymbol":"RN7SL323P","entrezGeneId":106479341},{"hugoGeneSymbol":"RN7SL325P","entrezGeneId":106481011},{"hugoGeneSymbol":"RN7SL326P","entrezGeneId":106479342},{"hugoGeneSymbol":"RN7SL327P","entrezGeneId":106481012},{"hugoGeneSymbol":"RN7SL328P","entrezGeneId":106481837},{"hugoGeneSymbol":"RN7SL329P","entrezGeneId":106479343},{"hugoGeneSymbol":"RN7SL32P","entrezGeneId":106480930},{"hugoGeneSymbol":"RN7SL330P","entrezGeneId":106481013},{"hugoGeneSymbol":"RN7SL331P","entrezGeneId":106479344},{"hugoGeneSymbol":"RN7SL332P","entrezGeneId":106479345},{"hugoGeneSymbol":"RN7SL333P","entrezGeneId":106481014},{"hugoGeneSymbol":"RN7SL334P","entrezGeneId":106480502},{"hugoGeneSymbol":"RN7SL335P","entrezGeneId":106480375},{"hugoGeneSymbol":"RN7SL336P","entrezGeneId":106479346},{"hugoGeneSymbol":"RN7SL337P","entrezGeneId":106481015},{"hugoGeneSymbol":"RN7SL338P","entrezGeneId":106479347},{"hugoGeneSymbol":"RN7SL339P","entrezGeneId":106479348},{"hugoGeneSymbol":"RN7SL33P","entrezGeneId":106479236},{"hugoGeneSymbol":"RN7SL340P","entrezGeneId":106481016},{"hugoGeneSymbol":"RN7SL341P","entrezGeneId":106481017},{"hugoGeneSymbol":"RN7SL342P","entrezGeneId":106479349},{"hugoGeneSymbol":"RN7SL343P","entrezGeneId":106481018},{"hugoGeneSymbol":"RN7SL344P","entrezGeneId":106480503},{"hugoGeneSymbol":"RN7SL346P","entrezGeneId":106479350},{"hugoGeneSymbol":"RN7SL34P","entrezGeneId":106481824},{"hugoGeneSymbol":"RN7SL350P","entrezGeneId":106481019},{"hugoGeneSymbol":"RN7SL351P","entrezGeneId":106479351},{"hugoGeneSymbol":"RN7SL352P","entrezGeneId":106479352},{"hugoGeneSymbol":"RN7SL353P","entrezGeneId":106481020},{"hugoGeneSymbol":"RN7SL354P","entrezGeneId":106481838},{"hugoGeneSymbol":"RN7SL356P","entrezGeneId":106479353},{"hugoGeneSymbol":"RN7SL357P","entrezGeneId":106481021},{"hugoGeneSymbol":"RN7SL359P","entrezGeneId":106479354},{"hugoGeneSymbol":"RN7SL35P","entrezGeneId":106480931},{"hugoGeneSymbol":"RN7SL361P","entrezGeneId":106479355},{"hugoGeneSymbol":"RN7SL362P","entrezGeneId":106481022},{"hugoGeneSymbol":"RN7SL363P","entrezGeneId":106480504},{"hugoGeneSymbol":"RN7SL364P","entrezGeneId":106479356},{"hugoGeneSymbol":"RN7SL366P","entrezGeneId":106481023},{"hugoGeneSymbol":"RN7SL368P","entrezGeneId":106479357},{"hugoGeneSymbol":"RN7SL369P","entrezGeneId":106480694},{"hugoGeneSymbol":"RN7SL36P","entrezGeneId":106479237},{"hugoGeneSymbol":"RN7SL370P","entrezGeneId":106481024},{"hugoGeneSymbol":"RN7SL371P","entrezGeneId":106481839},{"hugoGeneSymbol":"RN7SL372P","entrezGeneId":106479358},{"hugoGeneSymbol":"RN7SL375P","entrezGeneId":106479359},{"hugoGeneSymbol":"RN7SL376P","entrezGeneId":106481025},{"hugoGeneSymbol":"RN7SL377P","entrezGeneId":106479360},{"hugoGeneSymbol":"RN7SL378P","entrezGeneId":106481026},{"hugoGeneSymbol":"RN7SL379P","entrezGeneId":106480505},{"hugoGeneSymbol":"RN7SL37P","entrezGeneId":106479238},{"hugoGeneSymbol":"RN7SL380P","entrezGeneId":106479361},{"hugoGeneSymbol":"RN7SL381P","entrezGeneId":106479362},{"hugoGeneSymbol":"RN7SL382P","entrezGeneId":106481027},{"hugoGeneSymbol":"RN7SL383P","entrezGeneId":106479363},{"hugoGeneSymbol":"RN7SL384P","entrezGeneId":106481028},{"hugoGeneSymbol":"RN7SL385P","entrezGeneId":106481840},{"hugoGeneSymbol":"RN7SL386P","entrezGeneId":106479364},{"hugoGeneSymbol":"RN7SL387P","entrezGeneId":106481029},{"hugoGeneSymbol":"RN7SL388P","entrezGeneId":106479365},{"hugoGeneSymbol":"RN7SL38P","entrezGeneId":106480932},{"hugoGeneSymbol":"RN7SL390P","entrezGeneId":106479366},{"hugoGeneSymbol":"RN7SL391P","entrezGeneId":106481030},{"hugoGeneSymbol":"RN7SL392P","entrezGeneId":106480506},{"hugoGeneSymbol":"RN7SL393P","entrezGeneId":106481756},{"hugoGeneSymbol":"RN7SL394P","entrezGeneId":106479367},{"hugoGeneSymbol":"RN7SL395P","entrezGeneId":106481031},{"hugoGeneSymbol":"RN7SL396P","entrezGeneId":106479368},{"hugoGeneSymbol":"RN7SL397P","entrezGeneId":106479369},{"hugoGeneSymbol":"RN7SL398P","entrezGeneId":106481032},{"hugoGeneSymbol":"RN7SL399P","entrezGeneId":106479370},{"hugoGeneSymbol":"RN7SL39P","entrezGeneId":106479239},{"hugoGeneSymbol":"RN7SL400P","entrezGeneId":106481033},{"hugoGeneSymbol":"RN7SL401P","entrezGeneId":106480507},{"hugoGeneSymbol":"RN7SL402P","entrezGeneId":106479371},{"hugoGeneSymbol":"RN7SL403P","entrezGeneId":106481034},{"hugoGeneSymbol":"RN7SL404P","entrezGeneId":106479372},{"hugoGeneSymbol":"RN7SL405P","entrezGeneId":106479373},{"hugoGeneSymbol":"RN7SL408P","entrezGeneId":106481841},{"hugoGeneSymbol":"RN7SL40P","entrezGeneId":106480483},{"hugoGeneSymbol":"RN7SL411P","entrezGeneId":106481035},{"hugoGeneSymbol":"RN7SL413P","entrezGeneId":106479374},{"hugoGeneSymbol":"RN7SL414P","entrezGeneId":106481036},{"hugoGeneSymbol":"RN7SL415P","entrezGeneId":106479375},{"hugoGeneSymbol":"RN7SL416P","entrezGeneId":106481037},{"hugoGeneSymbol":"RN7SL417P","entrezGeneId":107080636},{"hugoGeneSymbol":"RN7SL418P","entrezGeneId":106480508},{"hugoGeneSymbol":"RN7SL419P","entrezGeneId":106479376},{"hugoGeneSymbol":"RN7SL41P","entrezGeneId":106480933},{"hugoGeneSymbol":"RN7SL420P","entrezGeneId":106479377},{"hugoGeneSymbol":"RN7SL422P","entrezGeneId":106481038},{"hugoGeneSymbol":"RN7SL423P","entrezGeneId":106479378},{"hugoGeneSymbol":"RN7SL424P","entrezGeneId":106480376},{"hugoGeneSymbol":"RN7SL425P","entrezGeneId":106481039},{"hugoGeneSymbol":"RN7SL426P","entrezGeneId":106481842},{"hugoGeneSymbol":"RN7SL428P","entrezGeneId":106479379},{"hugoGeneSymbol":"RN7SL429P","entrezGeneId":106479380},{"hugoGeneSymbol":"RN7SL42P","entrezGeneId":106479240},{"hugoGeneSymbol":"RN7SL430P","entrezGeneId":106481040},{"hugoGeneSymbol":"RN7SL431P","entrezGeneId":106866913},{"hugoGeneSymbol":"RN7SL432P","entrezGeneId":106481041},{"hugoGeneSymbol":"RN7SL434P","entrezGeneId":106480509},{"hugoGeneSymbol":"RN7SL435P","entrezGeneId":106479381},{"hugoGeneSymbol":"RN7SL438P","entrezGeneId":106479382},{"hugoGeneSymbol":"RN7SL43P","entrezGeneId":106479241},{"hugoGeneSymbol":"RN7SL440P","entrezGeneId":106481042},{"hugoGeneSymbol":"RN7SL441P","entrezGeneId":106479383},{"hugoGeneSymbol":"RN7SL442P","entrezGeneId":106481043},{"hugoGeneSymbol":"RN7SL443P","entrezGeneId":106480510},{"hugoGeneSymbol":"RN7SL444P","entrezGeneId":106479384},{"hugoGeneSymbol":"RN7SL445P","entrezGeneId":106481044},{"hugoGeneSymbol":"RN7SL446P","entrezGeneId":106479385},{"hugoGeneSymbol":"RN7SL447P","entrezGeneId":106479386},{"hugoGeneSymbol":"RN7SL448P","entrezGeneId":106481843},{"hugoGeneSymbol":"RN7SL449P","entrezGeneId":106481045},{"hugoGeneSymbol":"RN7SL44P","entrezGeneId":106480934},{"hugoGeneSymbol":"RN7SL451P","entrezGeneId":106480377},{"hugoGeneSymbol":"RN7SL452P","entrezGeneId":106479387},{"hugoGeneSymbol":"RN7SL453P","entrezGeneId":106481046},{"hugoGeneSymbol":"RN7SL454P","entrezGeneId":106479388},{"hugoGeneSymbol":"RN7SL455P","entrezGeneId":106479389},{"hugoGeneSymbol":"RN7SL456P","entrezGeneId":106480511},{"hugoGeneSymbol":"RN7SL457P","entrezGeneId":106481047},{"hugoGeneSymbol":"RN7SL459P","entrezGeneId":106479390},{"hugoGeneSymbol":"RN7SL45P","entrezGeneId":106481975},{"hugoGeneSymbol":"RN7SL460P","entrezGeneId":106481048},{"hugoGeneSymbol":"RN7SL461P","entrezGeneId":106481844},{"hugoGeneSymbol":"RN7SL462P","entrezGeneId":106479391},{"hugoGeneSymbol":"RN7SL464P","entrezGeneId":106481049},{"hugoGeneSymbol":"RN7SL465P","entrezGeneId":106479392},{"hugoGeneSymbol":"RN7SL466P","entrezGeneId":106479393},{"hugoGeneSymbol":"RN7SL468P","entrezGeneId":106481050},{"hugoGeneSymbol":"RN7SL469P","entrezGeneId":106480512},{"hugoGeneSymbol":"RN7SL470P","entrezGeneId":106479394},{"hugoGeneSymbol":"RN7SL471P","entrezGeneId":106481051},{"hugoGeneSymbol":"RN7SL472P","entrezGeneId":106479395},{"hugoGeneSymbol":"RN7SL473P","entrezGeneId":106479396},{"hugoGeneSymbol":"RN7SL474P","entrezGeneId":106481052},{"hugoGeneSymbol":"RN7SL475P","entrezGeneId":106481845},{"hugoGeneSymbol":"RN7SL477P","entrezGeneId":106479397},{"hugoGeneSymbol":"RN7SL478P","entrezGeneId":106481053},{"hugoGeneSymbol":"RN7SL479P","entrezGeneId":106479398},{"hugoGeneSymbol":"RN7SL47P","entrezGeneId":106479242},{"hugoGeneSymbol":"RN7SL480P","entrezGeneId":106481757},{"hugoGeneSymbol":"RN7SL481P","entrezGeneId":106481054},{"hugoGeneSymbol":"RN7SL482P","entrezGeneId":106480513},{"hugoGeneSymbol":"RN7SL483P","entrezGeneId":106479399},{"hugoGeneSymbol":"RN7SL484P","entrezGeneId":106479400},{"hugoGeneSymbol":"RN7SL487P","entrezGeneId":106481055},{"hugoGeneSymbol":"RN7SL488P","entrezGeneId":106479401},{"hugoGeneSymbol":"RN7SL489P","entrezGeneId":106481056},{"hugoGeneSymbol":"RN7SL48P","entrezGeneId":106481825},{"hugoGeneSymbol":"RN7SL491P","entrezGeneId":106480514},{"hugoGeneSymbol":"RN7SL492P","entrezGeneId":106479402},{"hugoGeneSymbol":"RN7SL493P","entrezGeneId":106479403},{"hugoGeneSymbol":"RN7SL494P","entrezGeneId":106481057},{"hugoGeneSymbol":"RN7SL495P","entrezGeneId":106479404},{"hugoGeneSymbol":"RN7SL496P","entrezGeneId":106481058},{"hugoGeneSymbol":"RN7SL497P","entrezGeneId":106481846},{"hugoGeneSymbol":"RN7SL498P","entrezGeneId":106479405},{"hugoGeneSymbol":"RN7SL499P","entrezGeneId":106481059},{"hugoGeneSymbol":"RN7SL49P","entrezGeneId":106480935},{"hugoGeneSymbol":"RN7SL4P","entrezGeneId":6030},{"hugoGeneSymbol":"RN7SL500P","entrezGeneId":106479406},{"hugoGeneSymbol":"RN7SL502P","entrezGeneId":106479407},{"hugoGeneSymbol":"RN7SL503P","entrezGeneId":106481060},{"hugoGeneSymbol":"RN7SL504P","entrezGeneId":106480515},{"hugoGeneSymbol":"RN7SL505P","entrezGeneId":106481758},{"hugoGeneSymbol":"RN7SL507P","entrezGeneId":106479408},{"hugoGeneSymbol":"RN7SL508P","entrezGeneId":106481061},{"hugoGeneSymbol":"RN7SL509P","entrezGeneId":106479409},{"hugoGeneSymbol":"RN7SL50P","entrezGeneId":106479243},{"hugoGeneSymbol":"RN7SL510P","entrezGeneId":106479410},{"hugoGeneSymbol":"RN7SL513P","entrezGeneId":106481062},{"hugoGeneSymbol":"RN7SL515P","entrezGeneId":106481063},{"hugoGeneSymbol":"RN7SL516P","entrezGeneId":106479411},{"hugoGeneSymbol":"RN7SL517P","entrezGeneId":106481064},{"hugoGeneSymbol":"RN7SL518P","entrezGeneId":106481847},{"hugoGeneSymbol":"RN7SL519P","entrezGeneId":106479412},{"hugoGeneSymbol":"RN7SL51P","entrezGeneId":106480936},{"hugoGeneSymbol":"RN7SL520P","entrezGeneId":106481065},{"hugoGeneSymbol":"RN7SL521P","entrezGeneId":106479413},{"hugoGeneSymbol":"RN7SL523P","entrezGeneId":106479414},{"hugoGeneSymbol":"RN7SL524P","entrezGeneId":106481066},{"hugoGeneSymbol":"RN7SL525P","entrezGeneId":106480516},{"hugoGeneSymbol":"RN7SL526P","entrezGeneId":106479415},{"hugoGeneSymbol":"RN7SL52P","entrezGeneId":106480937},{"hugoGeneSymbol":"RN7SL530P","entrezGeneId":106481067},{"hugoGeneSymbol":"RN7SL531P","entrezGeneId":106479416},{"hugoGeneSymbol":"RN7SL535P","entrezGeneId":106479417},{"hugoGeneSymbol":"RN7SL536P","entrezGeneId":106481068},{"hugoGeneSymbol":"RN7SL538P","entrezGeneId":106480517},{"hugoGeneSymbol":"RN7SL539P","entrezGeneId":106479418},{"hugoGeneSymbol":"RN7SL541P","entrezGeneId":106481069},{"hugoGeneSymbol":"RN7SL542P","entrezGeneId":106479419},{"hugoGeneSymbol":"RN7SL543P","entrezGeneId":106480378},{"hugoGeneSymbol":"RN7SL544P","entrezGeneId":106481070},{"hugoGeneSymbol":"RN7SL545P","entrezGeneId":106481848},{"hugoGeneSymbol":"RN7SL546P","entrezGeneId":106479420},{"hugoGeneSymbol":"RN7SL547P","entrezGeneId":106479421},{"hugoGeneSymbol":"RN7SL549P","entrezGeneId":106481071},{"hugoGeneSymbol":"RN7SL551P","entrezGeneId":106479422},{"hugoGeneSymbol":"RN7SL552P","entrezGeneId":106481072},{"hugoGeneSymbol":"RN7SL553P","entrezGeneId":106480518},{"hugoGeneSymbol":"RN7SL554P","entrezGeneId":106479423},{"hugoGeneSymbol":"RN7SL555P","entrezGeneId":106479424},{"hugoGeneSymbol":"RN7SL556P","entrezGeneId":106481073},{"hugoGeneSymbol":"RN7SL557P","entrezGeneId":106479425},{"hugoGeneSymbol":"RN7SL558P","entrezGeneId":106481074},{"hugoGeneSymbol":"RN7SL559P","entrezGeneId":106481849},{"hugoGeneSymbol":"RN7SL55P","entrezGeneId":106479244},{"hugoGeneSymbol":"RN7SL560P","entrezGeneId":106479426},{"hugoGeneSymbol":"RN7SL561P","entrezGeneId":106481075},{"hugoGeneSymbol":"RN7SL563P","entrezGeneId":106479427},{"hugoGeneSymbol":"RN7SL564P","entrezGeneId":106479428},{"hugoGeneSymbol":"RN7SL565P","entrezGeneId":106481076},{"hugoGeneSymbol":"RN7SL566P","entrezGeneId":106481850},{"hugoGeneSymbol":"RN7SL567P","entrezGeneId":106481976},{"hugoGeneSymbol":"RN7SL568P","entrezGeneId":106479429},{"hugoGeneSymbol":"RN7SL569P","entrezGeneId":106481077},{"hugoGeneSymbol":"RN7SL570P","entrezGeneId":106479430},{"hugoGeneSymbol":"RN7SL571P","entrezGeneId":106479431},{"hugoGeneSymbol":"RN7SL573P","entrezGeneId":106481078},{"hugoGeneSymbol":"RN7SL574P","entrezGeneId":106481079},{"hugoGeneSymbol":"RN7SL575P","entrezGeneId":106479432},{"hugoGeneSymbol":"RN7SL577P","entrezGeneId":106481080},{"hugoGeneSymbol":"RN7SL578P","entrezGeneId":106479433},{"hugoGeneSymbol":"RN7SL57P","entrezGeneId":106480484},{"hugoGeneSymbol":"RN7SL580P","entrezGeneId":106481081},{"hugoGeneSymbol":"RN7SL581P","entrezGeneId":106479434},{"hugoGeneSymbol":"RN7SL582P","entrezGeneId":106479435},{"hugoGeneSymbol":"RN7SL583P","entrezGeneId":106481082},{"hugoGeneSymbol":"RN7SL584P","entrezGeneId":106480519},{"hugoGeneSymbol":"RN7SL585P","entrezGeneId":106479436},{"hugoGeneSymbol":"RN7SL586P","entrezGeneId":106481083},{"hugoGeneSymbol":"RN7SL587P","entrezGeneId":106479437},{"hugoGeneSymbol":"RN7SL589P","entrezGeneId":106479438},{"hugoGeneSymbol":"RN7SL58P","entrezGeneId":106479245},{"hugoGeneSymbol":"RN7SL591P","entrezGeneId":106481084},{"hugoGeneSymbol":"RN7SL592P","entrezGeneId":106481851},{"hugoGeneSymbol":"RN7SL594P","entrezGeneId":106479439},{"hugoGeneSymbol":"RN7SL596P","entrezGeneId":106481085},{"hugoGeneSymbol":"RN7SL597P","entrezGeneId":106479440},{"hugoGeneSymbol":"RN7SL598P","entrezGeneId":106481759},{"hugoGeneSymbol":"RN7SL5P","entrezGeneId":6031},{"hugoGeneSymbol":"RN7SL600P","entrezGeneId":106481086},{"hugoGeneSymbol":"RN7SL601P","entrezGeneId":106480520},{"hugoGeneSymbol":"RN7SL602P","entrezGeneId":106479441},{"hugoGeneSymbol":"RN7SL604P","entrezGeneId":106479442},{"hugoGeneSymbol":"RN7SL605P","entrezGeneId":106481087},{"hugoGeneSymbol":"RN7SL606P","entrezGeneId":106479443},{"hugoGeneSymbol":"RN7SL607P","entrezGeneId":106481088},{"hugoGeneSymbol":"RN7SL608P","entrezGeneId":106480521},{"hugoGeneSymbol":"RN7SL60P","entrezGeneId":106480938},{"hugoGeneSymbol":"RN7SL610P","entrezGeneId":106479444},{"hugoGeneSymbol":"RN7SL612P","entrezGeneId":106479445},{"hugoGeneSymbol":"RN7SL614P","entrezGeneId":106481089},{"hugoGeneSymbol":"RN7SL615P","entrezGeneId":106479446},{"hugoGeneSymbol":"RN7SL616P","entrezGeneId":106481090},{"hugoGeneSymbol":"RN7SL617P","entrezGeneId":106481852},{"hugoGeneSymbol":"RN7SL618P","entrezGeneId":106479447},{"hugoGeneSymbol":"RN7SL619P","entrezGeneId":106481091},{"hugoGeneSymbol":"RN7SL620P","entrezGeneId":106479448},{"hugoGeneSymbol":"RN7SL621P","entrezGeneId":106479449},{"hugoGeneSymbol":"RN7SL622P","entrezGeneId":106481092},{"hugoGeneSymbol":"RN7SL623P","entrezGeneId":106480522},{"hugoGeneSymbol":"RN7SL624P","entrezGeneId":106480379},{"hugoGeneSymbol":"RN7SL625P","entrezGeneId":106479450},{"hugoGeneSymbol":"RN7SL627P","entrezGeneId":106481093},{"hugoGeneSymbol":"RN7SL628P","entrezGeneId":106479451},{"hugoGeneSymbol":"RN7SL629P","entrezGeneId":106479452},{"hugoGeneSymbol":"RN7SL62P","entrezGeneId":106479246},{"hugoGeneSymbol":"RN7SL630P","entrezGeneId":106481094},{"hugoGeneSymbol":"RN7SL632P","entrezGeneId":106481095},{"hugoGeneSymbol":"RN7SL633P","entrezGeneId":106479453},{"hugoGeneSymbol":"RN7SL634P","entrezGeneId":106481096},{"hugoGeneSymbol":"RN7SL635P","entrezGeneId":106479454},{"hugoGeneSymbol":"RN7SL636P","entrezGeneId":106481097},{"hugoGeneSymbol":"RN7SL638P","entrezGeneId":106479455},{"hugoGeneSymbol":"RN7SL63P","entrezGeneId":106480939},{"hugoGeneSymbol":"RN7SL640P","entrezGeneId":106479456},{"hugoGeneSymbol":"RN7SL643P","entrezGeneId":106481098},{"hugoGeneSymbol":"RN7SL644P","entrezGeneId":106481853},{"hugoGeneSymbol":"RN7SL645P","entrezGeneId":106479457},{"hugoGeneSymbol":"RN7SL646P","entrezGeneId":106481099},{"hugoGeneSymbol":"RN7SL647P","entrezGeneId":106479458},{"hugoGeneSymbol":"RN7SL648P","entrezGeneId":106479459},{"hugoGeneSymbol":"RN7SL649P","entrezGeneId":106481100},{"hugoGeneSymbol":"RN7SL650P","entrezGeneId":106480523},{"hugoGeneSymbol":"RN7SL652P","entrezGeneId":106479460},{"hugoGeneSymbol":"RN7SL653P","entrezGeneId":106481101},{"hugoGeneSymbol":"RN7SL654P","entrezGeneId":106479461},{"hugoGeneSymbol":"RN7SL655P","entrezGeneId":106481102},{"hugoGeneSymbol":"RN7SL656P","entrezGeneId":106481760},{"hugoGeneSymbol":"RN7SL657P","entrezGeneId":107074708},{"hugoGeneSymbol":"RN7SL658P","entrezGeneId":106480524},{"hugoGeneSymbol":"RN7SL659P","entrezGeneId":106479462},{"hugoGeneSymbol":"RN7SL65P","entrezGeneId":106479247},{"hugoGeneSymbol":"RN7SL660P","entrezGeneId":106479463},{"hugoGeneSymbol":"RN7SL663P","entrezGeneId":106481103},{"hugoGeneSymbol":"RN7SL664P","entrezGeneId":106479464},{"hugoGeneSymbol":"RN7SL665P","entrezGeneId":106481104},{"hugoGeneSymbol":"RN7SL666P","entrezGeneId":106481854},{"hugoGeneSymbol":"RN7SL667P","entrezGeneId":106479465},{"hugoGeneSymbol":"RN7SL668P","entrezGeneId":106479466},{"hugoGeneSymbol":"RN7SL66P","entrezGeneId":106480485},{"hugoGeneSymbol":"RN7SL670P","entrezGeneId":106481105},{"hugoGeneSymbol":"RN7SL671P","entrezGeneId":106479467},{"hugoGeneSymbol":"RN7SL672P","entrezGeneId":106481106},{"hugoGeneSymbol":"RN7SL673P","entrezGeneId":106480525},{"hugoGeneSymbol":"RN7SL674P","entrezGeneId":106479468},{"hugoGeneSymbol":"RN7SL675P","entrezGeneId":106481107},{"hugoGeneSymbol":"RN7SL676P","entrezGeneId":106479469},{"hugoGeneSymbol":"RN7SL677P","entrezGeneId":106479470},{"hugoGeneSymbol":"RN7SL678P","entrezGeneId":106481108},{"hugoGeneSymbol":"RN7SL679P","entrezGeneId":106481855},{"hugoGeneSymbol":"RN7SL67P","entrezGeneId":106479248},{"hugoGeneSymbol":"RN7SL680P","entrezGeneId":106480380},{"hugoGeneSymbol":"RN7SL681P","entrezGeneId":106479471},{"hugoGeneSymbol":"RN7SL683P","entrezGeneId":106481109},{"hugoGeneSymbol":"RN7SL684P","entrezGeneId":106479472},{"hugoGeneSymbol":"RN7SL685P","entrezGeneId":106479473},{"hugoGeneSymbol":"RN7SL687P","entrezGeneId":106481110},{"hugoGeneSymbol":"RN7SL688P","entrezGeneId":106479474},{"hugoGeneSymbol":"RN7SL689P","entrezGeneId":106481111},{"hugoGeneSymbol":"RN7SL68P","entrezGeneId":107080632},{"hugoGeneSymbol":"RN7SL690P","entrezGeneId":106479475},{"hugoGeneSymbol":"RN7SL691P","entrezGeneId":106481112},{"hugoGeneSymbol":"RN7SL692P","entrezGeneId":106479476},{"hugoGeneSymbol":"RN7SL693P","entrezGeneId":106479477},{"hugoGeneSymbol":"RN7SL697P","entrezGeneId":106480526},{"hugoGeneSymbol":"RN7SL698P","entrezGeneId":106481113},{"hugoGeneSymbol":"RN7SL69P","entrezGeneId":106480940},{"hugoGeneSymbol":"RN7SL6P","entrezGeneId":6032},{"hugoGeneSymbol":"RN7SL700P","entrezGeneId":106479478},{"hugoGeneSymbol":"RN7SL702P","entrezGeneId":106481114},{"hugoGeneSymbol":"RN7SL703P","entrezGeneId":106479479},{"hugoGeneSymbol":"RN7SL704P","entrezGeneId":106481115},{"hugoGeneSymbol":"RN7SL705P","entrezGeneId":106481856},{"hugoGeneSymbol":"RN7SL706P","entrezGeneId":106479480},{"hugoGeneSymbol":"RN7SL708P","entrezGeneId":106479481},{"hugoGeneSymbol":"RN7SL709P","entrezGeneId":106481116},{"hugoGeneSymbol":"RN7SL70P","entrezGeneId":106479249},{"hugoGeneSymbol":"RN7SL711P","entrezGeneId":106479482},{"hugoGeneSymbol":"RN7SL712P","entrezGeneId":106481117},{"hugoGeneSymbol":"RN7SL713P","entrezGeneId":106480381},{"hugoGeneSymbol":"RN7SL714P","entrezGeneId":106480527},{"hugoGeneSymbol":"RN7SL715P","entrezGeneId":106479483},{"hugoGeneSymbol":"RN7SL716P","entrezGeneId":106479484},{"hugoGeneSymbol":"RN7SL717P","entrezGeneId":106481118},{"hugoGeneSymbol":"RN7SL718P","entrezGeneId":106479485},{"hugoGeneSymbol":"RN7SL719P","entrezGeneId":106481119},{"hugoGeneSymbol":"RN7SL720P","entrezGeneId":106480528},{"hugoGeneSymbol":"RN7SL722P","entrezGeneId":106479486},{"hugoGeneSymbol":"RN7SL724P","entrezGeneId":106479487},{"hugoGeneSymbol":"RN7SL725P","entrezGeneId":106481120},{"hugoGeneSymbol":"RN7SL726P","entrezGeneId":106479488},{"hugoGeneSymbol":"RN7SL727P","entrezGeneId":106481121},{"hugoGeneSymbol":"RN7SL728P","entrezGeneId":106481857},{"hugoGeneSymbol":"RN7SL72P","entrezGeneId":106480941},{"hugoGeneSymbol":"RN7SL731P","entrezGeneId":107048981},{"hugoGeneSymbol":"RN7SL732P","entrezGeneId":106481122},{"hugoGeneSymbol":"RN7SL733P","entrezGeneId":106479489},{"hugoGeneSymbol":"RN7SL734P","entrezGeneId":106479490},{"hugoGeneSymbol":"RN7SL735P","entrezGeneId":106480529},{"hugoGeneSymbol":"RN7SL736P","entrezGeneId":107080652},{"hugoGeneSymbol":"RN7SL737P","entrezGeneId":106481123},{"hugoGeneSymbol":"RN7SL738P","entrezGeneId":106480695},{"hugoGeneSymbol":"RN7SL73P","entrezGeneId":106479250},{"hugoGeneSymbol":"RN7SL740P","entrezGeneId":106479491},{"hugoGeneSymbol":"RN7SL741P","entrezGeneId":106481124},{"hugoGeneSymbol":"RN7SL743P","entrezGeneId":106479492},{"hugoGeneSymbol":"RN7SL744P","entrezGeneId":106479493},{"hugoGeneSymbol":"RN7SL745P","entrezGeneId":106481858},{"hugoGeneSymbol":"RN7SL748P","entrezGeneId":106481125},{"hugoGeneSymbol":"RN7SL749P","entrezGeneId":106479494},{"hugoGeneSymbol":"RN7SL74P","entrezGeneId":106480942},{"hugoGeneSymbol":"RN7SL750P","entrezGeneId":106481126},{"hugoGeneSymbol":"RN7SL751P","entrezGeneId":106479495},{"hugoGeneSymbol":"RN7SL752P","entrezGeneId":106481127},{"hugoGeneSymbol":"RN7SL753P","entrezGeneId":106479496},{"hugoGeneSymbol":"RN7SL754P","entrezGeneId":106479497},{"hugoGeneSymbol":"RN7SL756P","entrezGeneId":106481128},{"hugoGeneSymbol":"RN7SL757P","entrezGeneId":106480530},{"hugoGeneSymbol":"RN7SL759P","entrezGeneId":106479498},{"hugoGeneSymbol":"RN7SL75P","entrezGeneId":107063539},{"hugoGeneSymbol":"RN7SL760P","entrezGeneId":106481129},{"hugoGeneSymbol":"RN7SL761P","entrezGeneId":106479499},{"hugoGeneSymbol":"RN7SL762P","entrezGeneId":106479500},{"hugoGeneSymbol":"RN7SL763P","entrezGeneId":106481130},{"hugoGeneSymbol":"RN7SL764P","entrezGeneId":106480531},{"hugoGeneSymbol":"RN7SL766P","entrezGeneId":106479501},{"hugoGeneSymbol":"RN7SL767P","entrezGeneId":106481131},{"hugoGeneSymbol":"RN7SL769P","entrezGeneId":106479502},{"hugoGeneSymbol":"RN7SL76P","entrezGeneId":106479251},{"hugoGeneSymbol":"RN7SL771P","entrezGeneId":106481132},{"hugoGeneSymbol":"RN7SL774P","entrezGeneId":106481761},{"hugoGeneSymbol":"RN7SL775P","entrezGeneId":106481859},{"hugoGeneSymbol":"RN7SL776P","entrezGeneId":106479503},{"hugoGeneSymbol":"RN7SL778P","entrezGeneId":106479504},{"hugoGeneSymbol":"RN7SL77P","entrezGeneId":106479252},{"hugoGeneSymbol":"RN7SL782P","entrezGeneId":106481133},{"hugoGeneSymbol":"RN7SL783P","entrezGeneId":106479505},{"hugoGeneSymbol":"RN7SL784P","entrezGeneId":106481134},{"hugoGeneSymbol":"RN7SL785P","entrezGeneId":106480532},{"hugoGeneSymbol":"RN7SL786P","entrezGeneId":106479506},{"hugoGeneSymbol":"RN7SL787P","entrezGeneId":106479507},{"hugoGeneSymbol":"RN7SL788P","entrezGeneId":106481135},{"hugoGeneSymbol":"RN7SL789P","entrezGeneId":106479508},{"hugoGeneSymbol":"RN7SL78P","entrezGeneId":106481752},{"hugoGeneSymbol":"RN7SL790P","entrezGeneId":106481136},{"hugoGeneSymbol":"RN7SL791P","entrezGeneId":106481860},{"hugoGeneSymbol":"RN7SL792P","entrezGeneId":106479509},{"hugoGeneSymbol":"RN7SL793P","entrezGeneId":106481137},{"hugoGeneSymbol":"RN7SL794P","entrezGeneId":106479510},{"hugoGeneSymbol":"RN7SL795P","entrezGeneId":106479511},{"hugoGeneSymbol":"RN7SL796P","entrezGeneId":107080653},{"hugoGeneSymbol":"RN7SL797P","entrezGeneId":106481138},{"hugoGeneSymbol":"RN7SL798P","entrezGeneId":106480533},{"hugoGeneSymbol":"RN7SL799P","entrezGeneId":106480382},{"hugoGeneSymbol":"RN7SL79P","entrezGeneId":106480943},{"hugoGeneSymbol":"RN7SL7P","entrezGeneId":6033},{"hugoGeneSymbol":"RN7SL800P","entrezGeneId":106479512},{"hugoGeneSymbol":"RN7SL801P","entrezGeneId":106481139},{"hugoGeneSymbol":"RN7SL802P","entrezGeneId":106479513},{"hugoGeneSymbol":"RN7SL803P","entrezGeneId":106479514},{"hugoGeneSymbol":"RN7SL804P","entrezGeneId":106481140},{"hugoGeneSymbol":"RN7SL806P","entrezGeneId":106479515},{"hugoGeneSymbol":"RN7SL807P","entrezGeneId":106481141},{"hugoGeneSymbol":"RN7SL808P","entrezGeneId":106481861},{"hugoGeneSymbol":"RN7SL809P","entrezGeneId":106479516},{"hugoGeneSymbol":"RN7SL810P","entrezGeneId":106481142},{"hugoGeneSymbol":"RN7SL811P","entrezGeneId":106479517},{"hugoGeneSymbol":"RN7SL812P","entrezGeneId":106479518},{"hugoGeneSymbol":"RN7SL813P","entrezGeneId":106480534},{"hugoGeneSymbol":"RN7SL814P","entrezGeneId":106481143},{"hugoGeneSymbol":"RN7SL815P","entrezGeneId":106479519},{"hugoGeneSymbol":"RN7SL817P","entrezGeneId":106481144},{"hugoGeneSymbol":"RN7SL818P","entrezGeneId":106479520},{"hugoGeneSymbol":"RN7SL819P","entrezGeneId":106481145},{"hugoGeneSymbol":"RN7SL81P","entrezGeneId":106479253},{"hugoGeneSymbol":"RN7SL820P","entrezGeneId":106480535},{"hugoGeneSymbol":"RN7SL822P","entrezGeneId":106479521},{"hugoGeneSymbol":"RN7SL823P","entrezGeneId":106479522},{"hugoGeneSymbol":"RN7SL824P","entrezGeneId":106481146},{"hugoGeneSymbol":"RN7SL825P","entrezGeneId":107080654},{"hugoGeneSymbol":"RN7SL826P","entrezGeneId":106479523},{"hugoGeneSymbol":"RN7SL827P","entrezGeneId":106481762},{"hugoGeneSymbol":"RN7SL828P","entrezGeneId":106481147},{"hugoGeneSymbol":"RN7SL82P","entrezGeneId":106480944},{"hugoGeneSymbol":"RN7SL831P","entrezGeneId":106481862},{"hugoGeneSymbol":"RN7SL832P","entrezGeneId":106479524},{"hugoGeneSymbol":"RN7SL833P","entrezGeneId":106479525},{"hugoGeneSymbol":"RN7SL834P","entrezGeneId":106481148},{"hugoGeneSymbol":"RN7SL835P","entrezGeneId":106479526},{"hugoGeneSymbol":"RN7SL836P","entrezGeneId":106481149},{"hugoGeneSymbol":"RN7SL837P","entrezGeneId":106480536},{"hugoGeneSymbol":"RN7SL838P","entrezGeneId":106479527},{"hugoGeneSymbol":"RN7SL83P","entrezGeneId":106479254},{"hugoGeneSymbol":"RN7SL840P","entrezGeneId":106479528},{"hugoGeneSymbol":"RN7SL841P","entrezGeneId":106481150},{"hugoGeneSymbol":"RN7SL842P","entrezGeneId":106479529},{"hugoGeneSymbol":"RN7SL843P","entrezGeneId":106481151},{"hugoGeneSymbol":"RN7SL845P","entrezGeneId":106481863},{"hugoGeneSymbol":"RN7SL846P","entrezGeneId":106479530},{"hugoGeneSymbol":"RN7SL847P","entrezGeneId":106481152},{"hugoGeneSymbol":"RN7SL849P","entrezGeneId":106479531},{"hugoGeneSymbol":"RN7SL850P","entrezGeneId":106479532},{"hugoGeneSymbol":"RN7SL851P","entrezGeneId":106480537},{"hugoGeneSymbol":"RN7SL853P","entrezGeneId":106481153},{"hugoGeneSymbol":"RN7SL854P","entrezGeneId":106480383},{"hugoGeneSymbol":"RN7SL856P","entrezGeneId":106479533},{"hugoGeneSymbol":"RN7SL860P","entrezGeneId":106635537},{"hugoGeneSymbol":"RN7SL861P","entrezGeneId":106479534},{"hugoGeneSymbol":"RN7SL862P","entrezGeneId":106479535},{"hugoGeneSymbol":"RN7SL863P","entrezGeneId":106480538},{"hugoGeneSymbol":"RN7SL864P","entrezGeneId":106479536},{"hugoGeneSymbol":"RN7SL865P","entrezGeneId":106481154},{"hugoGeneSymbol":"RN7SL868P","entrezGeneId":106479537},{"hugoGeneSymbol":"RN7SL869P","entrezGeneId":106481864},{"hugoGeneSymbol":"RN7SL870P","entrezGeneId":106481155},{"hugoGeneSymbol":"RN7SL87P","entrezGeneId":106479255},{"hugoGeneSymbol":"RN7SL88P","entrezGeneId":106480945},{"hugoGeneSymbol":"RN7SL89P","entrezGeneId":106479256},{"hugoGeneSymbol":"RN7SL8P","entrezGeneId":6034},{"hugoGeneSymbol":"RN7SL91P","entrezGeneId":106480946},{"hugoGeneSymbol":"RN7SL92P","entrezGeneId":106479257},{"hugoGeneSymbol":"RN7SL93P","entrezGeneId":106480947},{"hugoGeneSymbol":"RN7SL96P","entrezGeneId":106480486},{"hugoGeneSymbol":"RN7SL97P","entrezGeneId":106479258},{"hugoGeneSymbol":"RN7SL98P","entrezGeneId":106479259},{"hugoGeneSymbol":"RNA18S1","entrezGeneId":106632259},{"hugoGeneSymbol":"RNA18S2","entrezGeneId":106632258},{"hugoGeneSymbol":"RNA18S3","entrezGeneId":106631782},{"hugoGeneSymbol":"RNA18S4","entrezGeneId":110255165},{"hugoGeneSymbol":"RNA18S5","entrezGeneId":110255169},{"hugoGeneSymbol":"RNA18SN1","entrezGeneId":106631781},{"hugoGeneSymbol":"RNA18SN2","entrezGeneId":109864280},{"hugoGeneSymbol":"RNA18SN3","entrezGeneId":109910380},{"hugoGeneSymbol":"RNA18SN4","entrezGeneId":109864273},{"hugoGeneSymbol":"RNA18SN5","entrezGeneId":100008588},{"hugoGeneSymbol":"RNA18SP2","entrezGeneId":359724},{"hugoGeneSymbol":"RNA18SP3","entrezGeneId":109864277},{"hugoGeneSymbol":"RNA18SP4","entrezGeneId":109864275},{"hugoGeneSymbol":"RNA18SP5","entrezGeneId":109910383},{"hugoGeneSymbol":"RNA28S1","entrezGeneId":106632267},{"hugoGeneSymbol":"RNA28S2","entrezGeneId":106632266},{"hugoGeneSymbol":"RNA28S3","entrezGeneId":106632265},{"hugoGeneSymbol":"RNA28S4","entrezGeneId":110255164},{"hugoGeneSymbol":"RNA28S5","entrezGeneId":110255168},{"hugoGeneSymbol":"RNA28SN1","entrezGeneId":106632264},{"hugoGeneSymbol":"RNA28SN2","entrezGeneId":109864282},{"hugoGeneSymbol":"RNA28SN3","entrezGeneId":109910382},{"hugoGeneSymbol":"RNA28SN4","entrezGeneId":109864272},{"hugoGeneSymbol":"RNA28SN5","entrezGeneId":100008589},{"hugoGeneSymbol":"RNA45S1","entrezGeneId":106631780},{"hugoGeneSymbol":"RNA45S2","entrezGeneId":106631779},{"hugoGeneSymbol":"RNA45S3","entrezGeneId":106631778},{"hugoGeneSymbol":"RNA45S4","entrezGeneId":110255163},{"hugoGeneSymbol":"RNA45S5","entrezGeneId":110255167},{"hugoGeneSymbol":"RNA45SN1","entrezGeneId":106631777},{"hugoGeneSymbol":"RNA45SN2","entrezGeneId":109864279},{"hugoGeneSymbol":"RNA45SN3","entrezGeneId":109910379},{"hugoGeneSymbol":"RNA45SN4","entrezGeneId":109864271},{"hugoGeneSymbol":"RNA45SN5","entrezGeneId":100861532},{"hugoGeneSymbol":"RNA5-8S1","entrezGeneId":106632263},{"hugoGeneSymbol":"RNA5-8S2","entrezGeneId":106632262},{"hugoGeneSymbol":"RNA5-8S3","entrezGeneId":106632261},{"hugoGeneSymbol":"RNA5-8S4","entrezGeneId":110255166},{"hugoGeneSymbol":"RNA5-8S5","entrezGeneId":110255170},{"hugoGeneSymbol":"RNA5-8SN1","entrezGeneId":106632260},{"hugoGeneSymbol":"RNA5-8SN2","entrezGeneId":109864281},{"hugoGeneSymbol":"RNA5-8SN3","entrezGeneId":109910381},{"hugoGeneSymbol":"RNA5-8SN4","entrezGeneId":109864274},{"hugoGeneSymbol":"RNA5-8SN5","entrezGeneId":100008587},{"hugoGeneSymbol":"RNA5-8SP10","entrezGeneId":109910384},{"hugoGeneSymbol":"RNA5-8SP2","entrezGeneId":100873571},{"hugoGeneSymbol":"RNA5-8SP3","entrezGeneId":100873334},{"hugoGeneSymbol":"RNA5-8SP4","entrezGeneId":100873572},{"hugoGeneSymbol":"RNA5-8SP5","entrezGeneId":100873335},{"hugoGeneSymbol":"RNA5-8SP6","entrezGeneId":100873336},{"hugoGeneSymbol":"RNA5-8SP7","entrezGeneId":100873573},{"hugoGeneSymbol":"RNA5-8SP8","entrezGeneId":109864278},{"hugoGeneSymbol":"RNA5-8SP9","entrezGeneId":109864276},{"hugoGeneSymbol":"RNA5S1","entrezGeneId":100169751},{"hugoGeneSymbol":"RNA5S10","entrezGeneId":100169761},{"hugoGeneSymbol":"RNA5S11","entrezGeneId":100169762},{"hugoGeneSymbol":"RNA5S12","entrezGeneId":100169763},{"hugoGeneSymbol":"RNA5S13","entrezGeneId":100169764},{"hugoGeneSymbol":"RNA5S14","entrezGeneId":100169765},{"hugoGeneSymbol":"RNA5S15","entrezGeneId":100169766},{"hugoGeneSymbol":"RNA5S16","entrezGeneId":100169767},{"hugoGeneSymbol":"RNA5S17","entrezGeneId":100169768},{"hugoGeneSymbol":"RNA5S2","entrezGeneId":100169753},{"hugoGeneSymbol":"RNA5S3","entrezGeneId":100169754},{"hugoGeneSymbol":"RNA5S4","entrezGeneId":100169755},{"hugoGeneSymbol":"RNA5S5","entrezGeneId":100169756},{"hugoGeneSymbol":"RNA5S6","entrezGeneId":100169757},{"hugoGeneSymbol":"RNA5S7","entrezGeneId":100169758},{"hugoGeneSymbol":"RNA5S8","entrezGeneId":100169759},{"hugoGeneSymbol":"RNA5S9","entrezGeneId":100169760},{"hugoGeneSymbol":"RNA5SP100","entrezGeneId":106480755},{"hugoGeneSymbol":"RNA5SP101","entrezGeneId":100873372},{"hugoGeneSymbol":"RNA5SP102","entrezGeneId":100873373},{"hugoGeneSymbol":"RNA5SP103","entrezGeneId":100873374},{"hugoGeneSymbol":"RNA5SP104","entrezGeneId":100873375},{"hugoGeneSymbol":"RNA5SP105","entrezGeneId":100873376},{"hugoGeneSymbol":"RNA5SP106","entrezGeneId":106478994},{"hugoGeneSymbol":"RNA5SP107","entrezGeneId":100873377},{"hugoGeneSymbol":"RNA5SP108","entrezGeneId":100873378},{"hugoGeneSymbol":"RNA5SP109","entrezGeneId":100873379},{"hugoGeneSymbol":"RNA5SP110","entrezGeneId":100873380},{"hugoGeneSymbol":"RNA5SP111","entrezGeneId":100873381},{"hugoGeneSymbol":"RNA5SP112","entrezGeneId":100873382},{"hugoGeneSymbol":"RNA5SP113","entrezGeneId":100873383},{"hugoGeneSymbol":"RNA5SP114","entrezGeneId":100873384},{"hugoGeneSymbol":"RNA5SP115","entrezGeneId":100873385},{"hugoGeneSymbol":"RNA5SP116","entrezGeneId":100873386},{"hugoGeneSymbol":"RNA5SP117","entrezGeneId":100873387},{"hugoGeneSymbol":"RNA5SP118","entrezGeneId":100873388},{"hugoGeneSymbol":"RNA5SP119","entrezGeneId":100873389},{"hugoGeneSymbol":"RNA5SP120","entrezGeneId":100873390},{"hugoGeneSymbol":"RNA5SP121","entrezGeneId":100873391},{"hugoGeneSymbol":"RNA5SP122","entrezGeneId":100873392},{"hugoGeneSymbol":"RNA5SP123","entrezGeneId":100873393},{"hugoGeneSymbol":"RNA5SP124","entrezGeneId":100873394},{"hugoGeneSymbol":"RNA5SP125","entrezGeneId":100873395},{"hugoGeneSymbol":"RNA5SP126","entrezGeneId":100873396},{"hugoGeneSymbol":"RNA5SP127","entrezGeneId":100873397},{"hugoGeneSymbol":"RNA5SP128","entrezGeneId":100873398},{"hugoGeneSymbol":"RNA5SP129","entrezGeneId":100873399},{"hugoGeneSymbol":"RNA5SP130","entrezGeneId":106478995},{"hugoGeneSymbol":"RNA5SP131","entrezGeneId":100873400},{"hugoGeneSymbol":"RNA5SP132","entrezGeneId":100873401},{"hugoGeneSymbol":"RNA5SP133","entrezGeneId":100873402},{"hugoGeneSymbol":"RNA5SP134","entrezGeneId":106480756},{"hugoGeneSymbol":"RNA5SP135","entrezGeneId":100873403},{"hugoGeneSymbol":"RNA5SP136","entrezGeneId":100873404},{"hugoGeneSymbol":"RNA5SP137","entrezGeneId":100873405},{"hugoGeneSymbol":"RNA5SP138","entrezGeneId":100873406},{"hugoGeneSymbol":"RNA5SP139","entrezGeneId":100873407},{"hugoGeneSymbol":"RNA5SP140","entrezGeneId":106478996},{"hugoGeneSymbol":"RNA5SP141","entrezGeneId":100873408},{"hugoGeneSymbol":"RNA5SP142","entrezGeneId":100873409},{"hugoGeneSymbol":"RNA5SP143","entrezGeneId":100873410},{"hugoGeneSymbol":"RNA5SP144","entrezGeneId":100873411},{"hugoGeneSymbol":"RNA5SP145","entrezGeneId":100873412},{"hugoGeneSymbol":"RNA5SP146","entrezGeneId":100873413},{"hugoGeneSymbol":"RNA5SP147","entrezGeneId":100873414},{"hugoGeneSymbol":"RNA5SP148","entrezGeneId":100873415},{"hugoGeneSymbol":"RNA5SP149","entrezGeneId":106480437},{"hugoGeneSymbol":"RNA5SP150","entrezGeneId":100873416},{"hugoGeneSymbol":"RNA5SP151","entrezGeneId":100873417},{"hugoGeneSymbol":"RNA5SP152","entrezGeneId":100873418},{"hugoGeneSymbol":"RNA5SP153","entrezGeneId":100873419},{"hugoGeneSymbol":"RNA5SP154","entrezGeneId":100873420},{"hugoGeneSymbol":"RNA5SP155","entrezGeneId":100873421},{"hugoGeneSymbol":"RNA5SP156","entrezGeneId":100873422},{"hugoGeneSymbol":"RNA5SP157","entrezGeneId":100873423},{"hugoGeneSymbol":"RNA5SP158","entrezGeneId":100873424},{"hugoGeneSymbol":"RNA5SP159","entrezGeneId":100873425},{"hugoGeneSymbol":"RNA5SP160","entrezGeneId":100873426},{"hugoGeneSymbol":"RNA5SP161","entrezGeneId":106480757},{"hugoGeneSymbol":"RNA5SP162","entrezGeneId":100873427},{"hugoGeneSymbol":"RNA5SP163","entrezGeneId":100873428},{"hugoGeneSymbol":"RNA5SP164","entrezGeneId":100873429},{"hugoGeneSymbol":"RNA5SP165","entrezGeneId":100873430},{"hugoGeneSymbol":"RNA5SP166","entrezGeneId":100873431},{"hugoGeneSymbol":"RNA5SP167","entrezGeneId":100873432},{"hugoGeneSymbol":"RNA5SP168","entrezGeneId":100873433},{"hugoGeneSymbol":"RNA5SP169","entrezGeneId":100873434},{"hugoGeneSymbol":"RNA5SP170","entrezGeneId":100873435},{"hugoGeneSymbol":"RNA5SP171","entrezGeneId":100873436},{"hugoGeneSymbol":"RNA5SP172","entrezGeneId":106478997},{"hugoGeneSymbol":"RNA5SP173","entrezGeneId":100873437},{"hugoGeneSymbol":"RNA5SP174","entrezGeneId":106478998},{"hugoGeneSymbol":"RNA5SP175","entrezGeneId":106480758},{"hugoGeneSymbol":"RNA5SP176","entrezGeneId":100873438},{"hugoGeneSymbol":"RNA5SP177","entrezGeneId":100873439},{"hugoGeneSymbol":"RNA5SP178","entrezGeneId":100873440},{"hugoGeneSymbol":"RNA5SP179","entrezGeneId":100873441},{"hugoGeneSymbol":"RNA5SP18","entrezGeneId":100873273},{"hugoGeneSymbol":"RNA5SP180","entrezGeneId":100873442},{"hugoGeneSymbol":"RNA5SP181","entrezGeneId":100873443},{"hugoGeneSymbol":"RNA5SP182","entrezGeneId":100873444},{"hugoGeneSymbol":"RNA5SP183","entrezGeneId":100873445},{"hugoGeneSymbol":"RNA5SP184","entrezGeneId":100873446},{"hugoGeneSymbol":"RNA5SP185","entrezGeneId":100873447},{"hugoGeneSymbol":"RNA5SP186","entrezGeneId":100873448},{"hugoGeneSymbol":"RNA5SP187","entrezGeneId":100873449},{"hugoGeneSymbol":"RNA5SP188","entrezGeneId":100873450},{"hugoGeneSymbol":"RNA5SP189","entrezGeneId":100873451},{"hugoGeneSymbol":"RNA5SP19","entrezGeneId":100873274},{"hugoGeneSymbol":"RNA5SP190","entrezGeneId":100873452},{"hugoGeneSymbol":"RNA5SP191","entrezGeneId":100873453},{"hugoGeneSymbol":"RNA5SP192","entrezGeneId":100873454},{"hugoGeneSymbol":"RNA5SP193","entrezGeneId":100873455},{"hugoGeneSymbol":"RNA5SP194","entrezGeneId":100873456},{"hugoGeneSymbol":"RNA5SP195","entrezGeneId":100873457},{"hugoGeneSymbol":"RNA5SP196","entrezGeneId":100873458},{"hugoGeneSymbol":"RNA5SP197","entrezGeneId":100873459},{"hugoGeneSymbol":"RNA5SP198","entrezGeneId":100873460},{"hugoGeneSymbol":"RNA5SP199","entrezGeneId":106480438},{"hugoGeneSymbol":"RNA5SP20","entrezGeneId":100873275},{"hugoGeneSymbol":"RNA5SP200","entrezGeneId":100873461},{"hugoGeneSymbol":"RNA5SP201","entrezGeneId":100873462},{"hugoGeneSymbol":"RNA5SP202","entrezGeneId":100873463},{"hugoGeneSymbol":"RNA5SP203","entrezGeneId":100873464},{"hugoGeneSymbol":"RNA5SP204","entrezGeneId":100873465},{"hugoGeneSymbol":"RNA5SP205","entrezGeneId":100873466},{"hugoGeneSymbol":"RNA5SP206","entrezGeneId":106478999},{"hugoGeneSymbol":"RNA5SP207","entrezGeneId":100873467},{"hugoGeneSymbol":"RNA5SP208","entrezGeneId":100873468},{"hugoGeneSymbol":"RNA5SP209","entrezGeneId":100873469},{"hugoGeneSymbol":"RNA5SP21","entrezGeneId":100873276},{"hugoGeneSymbol":"RNA5SP210","entrezGeneId":100873470},{"hugoGeneSymbol":"RNA5SP211","entrezGeneId":100873471},{"hugoGeneSymbol":"RNA5SP212","entrezGeneId":100873472},{"hugoGeneSymbol":"RNA5SP213","entrezGeneId":100873473},{"hugoGeneSymbol":"RNA5SP214","entrezGeneId":100873474},{"hugoGeneSymbol":"RNA5SP215","entrezGeneId":100873475},{"hugoGeneSymbol":"RNA5SP216","entrezGeneId":100873476},{"hugoGeneSymbol":"RNA5SP217","entrezGeneId":100873477},{"hugoGeneSymbol":"RNA5SP218","entrezGeneId":100873478},{"hugoGeneSymbol":"RNA5SP219","entrezGeneId":100873479},{"hugoGeneSymbol":"RNA5SP22","entrezGeneId":100873277},{"hugoGeneSymbol":"RNA5SP220","entrezGeneId":100873480},{"hugoGeneSymbol":"RNA5SP221","entrezGeneId":106480759},{"hugoGeneSymbol":"RNA5SP222","entrezGeneId":100873481},{"hugoGeneSymbol":"RNA5SP223","entrezGeneId":100873482},{"hugoGeneSymbol":"RNA5SP224","entrezGeneId":100873483},{"hugoGeneSymbol":"RNA5SP225","entrezGeneId":100873484},{"hugoGeneSymbol":"RNA5SP226","entrezGeneId":106479000},{"hugoGeneSymbol":"RNA5SP227","entrezGeneId":100873485},{"hugoGeneSymbol":"RNA5SP228","entrezGeneId":100873486},{"hugoGeneSymbol":"RNA5SP229","entrezGeneId":100873487},{"hugoGeneSymbol":"RNA5SP23","entrezGeneId":100873278},{"hugoGeneSymbol":"RNA5SP230","entrezGeneId":100873488},{"hugoGeneSymbol":"RNA5SP231","entrezGeneId":100873489},{"hugoGeneSymbol":"RNA5SP232","entrezGeneId":100873490},{"hugoGeneSymbol":"RNA5SP233","entrezGeneId":100873491},{"hugoGeneSymbol":"RNA5SP234","entrezGeneId":100873492},{"hugoGeneSymbol":"RNA5SP235","entrezGeneId":100873493},{"hugoGeneSymbol":"RNA5SP236","entrezGeneId":100873494},{"hugoGeneSymbol":"RNA5SP237","entrezGeneId":100873495},{"hugoGeneSymbol":"RNA5SP238","entrezGeneId":100873496},{"hugoGeneSymbol":"RNA5SP239","entrezGeneId":100873497},{"hugoGeneSymbol":"RNA5SP24","entrezGeneId":100873356},{"hugoGeneSymbol":"RNA5SP240","entrezGeneId":100873498},{"hugoGeneSymbol":"RNA5SP241","entrezGeneId":100873499},{"hugoGeneSymbol":"RNA5SP242","entrezGeneId":100873500},{"hugoGeneSymbol":"RNA5SP243","entrezGeneId":106479001},{"hugoGeneSymbol":"RNA5SP244","entrezGeneId":100885864},{"hugoGeneSymbol":"RNA5SP245","entrezGeneId":100873501},{"hugoGeneSymbol":"RNA5SP246","entrezGeneId":100873502},{"hugoGeneSymbol":"RNA5SP247","entrezGeneId":100873503},{"hugoGeneSymbol":"RNA5SP248","entrezGeneId":100873504},{"hugoGeneSymbol":"RNA5SP249","entrezGeneId":100873505},{"hugoGeneSymbol":"RNA5SP25","entrezGeneId":100873357},{"hugoGeneSymbol":"RNA5SP250","entrezGeneId":100873506},{"hugoGeneSymbol":"RNA5SP251","entrezGeneId":100873507},{"hugoGeneSymbol":"RNA5SP252","entrezGeneId":100873508},{"hugoGeneSymbol":"RNA5SP253","entrezGeneId":106480760},{"hugoGeneSymbol":"RNA5SP254","entrezGeneId":106481793},{"hugoGeneSymbol":"RNA5SP255","entrezGeneId":100873509},{"hugoGeneSymbol":"RNA5SP256","entrezGeneId":100873510},{"hugoGeneSymbol":"RNA5SP257","entrezGeneId":100873511},{"hugoGeneSymbol":"RNA5SP258","entrezGeneId":100873512},{"hugoGeneSymbol":"RNA5SP259","entrezGeneId":100873513},{"hugoGeneSymbol":"RNA5SP26","entrezGeneId":100873358},{"hugoGeneSymbol":"RNA5SP260","entrezGeneId":100873514},{"hugoGeneSymbol":"RNA5SP261","entrezGeneId":100873515},{"hugoGeneSymbol":"RNA5SP262","entrezGeneId":100873516},{"hugoGeneSymbol":"RNA5SP263","entrezGeneId":106479002},{"hugoGeneSymbol":"RNA5SP264","entrezGeneId":100873517},{"hugoGeneSymbol":"RNA5SP265","entrezGeneId":100873518},{"hugoGeneSymbol":"RNA5SP266","entrezGeneId":100873519},{"hugoGeneSymbol":"RNA5SP267","entrezGeneId":100873520},{"hugoGeneSymbol":"RNA5SP268","entrezGeneId":100873521},{"hugoGeneSymbol":"RNA5SP269","entrezGeneId":100873522},{"hugoGeneSymbol":"RNA5SP27","entrezGeneId":100873359},{"hugoGeneSymbol":"RNA5SP270","entrezGeneId":100873523},{"hugoGeneSymbol":"RNA5SP271","entrezGeneId":100873524},{"hugoGeneSymbol":"RNA5SP272","entrezGeneId":100873525},{"hugoGeneSymbol":"RNA5SP273","entrezGeneId":100873526},{"hugoGeneSymbol":"RNA5SP274","entrezGeneId":100873527},{"hugoGeneSymbol":"RNA5SP275","entrezGeneId":100873528},{"hugoGeneSymbol":"RNA5SP276","entrezGeneId":100873529},{"hugoGeneSymbol":"RNA5SP277","entrezGeneId":100873530},{"hugoGeneSymbol":"RNA5SP278","entrezGeneId":100873531},{"hugoGeneSymbol":"RNA5SP279","entrezGeneId":100873532},{"hugoGeneSymbol":"RNA5SP28","entrezGeneId":100873360},{"hugoGeneSymbol":"RNA5SP280","entrezGeneId":100873533},{"hugoGeneSymbol":"RNA5SP281","entrezGeneId":100873534},{"hugoGeneSymbol":"RNA5SP282","entrezGeneId":100873535},{"hugoGeneSymbol":"RNA5SP283","entrezGeneId":100873536},{"hugoGeneSymbol":"RNA5SP284","entrezGeneId":100873537},{"hugoGeneSymbol":"RNA5SP285","entrezGeneId":100873538},{"hugoGeneSymbol":"RNA5SP286","entrezGeneId":100873539},{"hugoGeneSymbol":"RNA5SP287","entrezGeneId":100873540},{"hugoGeneSymbol":"RNA5SP288","entrezGeneId":100873541},{"hugoGeneSymbol":"RNA5SP289","entrezGeneId":100873542},{"hugoGeneSymbol":"RNA5SP29","entrezGeneId":100873361},{"hugoGeneSymbol":"RNA5SP290","entrezGeneId":100873543},{"hugoGeneSymbol":"RNA5SP291","entrezGeneId":100873544},{"hugoGeneSymbol":"RNA5SP292","entrezGeneId":100873545},{"hugoGeneSymbol":"RNA5SP293","entrezGeneId":100873546},{"hugoGeneSymbol":"RNA5SP294","entrezGeneId":100873547},{"hugoGeneSymbol":"RNA5SP295","entrezGeneId":100873548},{"hugoGeneSymbol":"RNA5SP296","entrezGeneId":100873549},{"hugoGeneSymbol":"RNA5SP297","entrezGeneId":106479003},{"hugoGeneSymbol":"RNA5SP298","entrezGeneId":106480761},{"hugoGeneSymbol":"RNA5SP299","entrezGeneId":100873574},{"hugoGeneSymbol":"RNA5SP30","entrezGeneId":100873362},{"hugoGeneSymbol":"RNA5SP300","entrezGeneId":100873575},{"hugoGeneSymbol":"RNA5SP301","entrezGeneId":100873576},{"hugoGeneSymbol":"RNA5SP302","entrezGeneId":106479004},{"hugoGeneSymbol":"RNA5SP303","entrezGeneId":100873577},{"hugoGeneSymbol":"RNA5SP304","entrezGeneId":100873578},{"hugoGeneSymbol":"RNA5SP305","entrezGeneId":100873579},{"hugoGeneSymbol":"RNA5SP306","entrezGeneId":100873580},{"hugoGeneSymbol":"RNA5SP307","entrezGeneId":100873581},{"hugoGeneSymbol":"RNA5SP308","entrezGeneId":100873582},{"hugoGeneSymbol":"RNA5SP309","entrezGeneId":100873583},{"hugoGeneSymbol":"RNA5SP31","entrezGeneId":100873363},{"hugoGeneSymbol":"RNA5SP310","entrezGeneId":106480762},{"hugoGeneSymbol":"RNA5SP311","entrezGeneId":106480358},{"hugoGeneSymbol":"RNA5SP312","entrezGeneId":106480439},{"hugoGeneSymbol":"RNA5SP315","entrezGeneId":106479005},{"hugoGeneSymbol":"RNA5SP317","entrezGeneId":106479006},{"hugoGeneSymbol":"RNA5SP318","entrezGeneId":100873584},{"hugoGeneSymbol":"RNA5SP319","entrezGeneId":100873585},{"hugoGeneSymbol":"RNA5SP320","entrezGeneId":100873586},{"hugoGeneSymbol":"RNA5SP321","entrezGeneId":100873587},{"hugoGeneSymbol":"RNA5SP322","entrezGeneId":100873588},{"hugoGeneSymbol":"RNA5SP323","entrezGeneId":100873589},{"hugoGeneSymbol":"RNA5SP324","entrezGeneId":100873590},{"hugoGeneSymbol":"RNA5SP325","entrezGeneId":100873591},{"hugoGeneSymbol":"RNA5SP326","entrezGeneId":100873592},{"hugoGeneSymbol":"RNA5SP327","entrezGeneId":100873593},{"hugoGeneSymbol":"RNA5SP328","entrezGeneId":100873594},{"hugoGeneSymbol":"RNA5SP329","entrezGeneId":100873595},{"hugoGeneSymbol":"RNA5SP33","entrezGeneId":100873365},{"hugoGeneSymbol":"RNA5SP330","entrezGeneId":100873596},{"hugoGeneSymbol":"RNA5SP331","entrezGeneId":100873597},{"hugoGeneSymbol":"RNA5SP332","entrezGeneId":100873598},{"hugoGeneSymbol":"RNA5SP333","entrezGeneId":106480763},{"hugoGeneSymbol":"RNA5SP334","entrezGeneId":106865375},{"hugoGeneSymbol":"RNA5SP335","entrezGeneId":106479007},{"hugoGeneSymbol":"RNA5SP336","entrezGeneId":100873599},{"hugoGeneSymbol":"RNA5SP337","entrezGeneId":100873600},{"hugoGeneSymbol":"RNA5SP338","entrezGeneId":100873601},{"hugoGeneSymbol":"RNA5SP339","entrezGeneId":100873602},{"hugoGeneSymbol":"RNA5SP34","entrezGeneId":100873366},{"hugoGeneSymbol":"RNA5SP340","entrezGeneId":100873603},{"hugoGeneSymbol":"RNA5SP341","entrezGeneId":100873604},{"hugoGeneSymbol":"RNA5SP342","entrezGeneId":106479008},{"hugoGeneSymbol":"RNA5SP343","entrezGeneId":100873605},{"hugoGeneSymbol":"RNA5SP344","entrezGeneId":100873606},{"hugoGeneSymbol":"RNA5SP345","entrezGeneId":100873607},{"hugoGeneSymbol":"RNA5SP346","entrezGeneId":100873608},{"hugoGeneSymbol":"RNA5SP347","entrezGeneId":100873609},{"hugoGeneSymbol":"RNA5SP348","entrezGeneId":100873610},{"hugoGeneSymbol":"RNA5SP349","entrezGeneId":100873611},{"hugoGeneSymbol":"RNA5SP35","entrezGeneId":100873367},{"hugoGeneSymbol":"RNA5SP350","entrezGeneId":106481794},{"hugoGeneSymbol":"RNA5SP351","entrezGeneId":106480764},{"hugoGeneSymbol":"RNA5SP352","entrezGeneId":100873612},{"hugoGeneSymbol":"RNA5SP353","entrezGeneId":100873613},{"hugoGeneSymbol":"RNA5SP354","entrezGeneId":100873614},{"hugoGeneSymbol":"RNA5SP355","entrezGeneId":106479009},{"hugoGeneSymbol":"RNA5SP356","entrezGeneId":100873615},{"hugoGeneSymbol":"RNA5SP357","entrezGeneId":100873616},{"hugoGeneSymbol":"RNA5SP358","entrezGeneId":100873617},{"hugoGeneSymbol":"RNA5SP359","entrezGeneId":100873618},{"hugoGeneSymbol":"RNA5SP36","entrezGeneId":100873368},{"hugoGeneSymbol":"RNA5SP360","entrezGeneId":100873619},{"hugoGeneSymbol":"RNA5SP361","entrezGeneId":100873620},{"hugoGeneSymbol":"RNA5SP362","entrezGeneId":100873621},{"hugoGeneSymbol":"RNA5SP363","entrezGeneId":100873622},{"hugoGeneSymbol":"RNA5SP364","entrezGeneId":100873623},{"hugoGeneSymbol":"RNA5SP365","entrezGeneId":100873624},{"hugoGeneSymbol":"RNA5SP366","entrezGeneId":100873625},{"hugoGeneSymbol":"RNA5SP367","entrezGeneId":100873626},{"hugoGeneSymbol":"RNA5SP368","entrezGeneId":100873627},{"hugoGeneSymbol":"RNA5SP369","entrezGeneId":100873628},{"hugoGeneSymbol":"RNA5SP37","entrezGeneId":100873369},{"hugoGeneSymbol":"RNA5SP370","entrezGeneId":106480765},{"hugoGeneSymbol":"RNA5SP371","entrezGeneId":100873629},{"hugoGeneSymbol":"RNA5SP372","entrezGeneId":100873630},{"hugoGeneSymbol":"RNA5SP373","entrezGeneId":100873631},{"hugoGeneSymbol":"RNA5SP374","entrezGeneId":100873632},{"hugoGeneSymbol":"RNA5SP375","entrezGeneId":100873633},{"hugoGeneSymbol":"RNA5SP376","entrezGeneId":106479010},{"hugoGeneSymbol":"RNA5SP377","entrezGeneId":106479011},{"hugoGeneSymbol":"RNA5SP378","entrezGeneId":100873634},{"hugoGeneSymbol":"RNA5SP379","entrezGeneId":100873635},{"hugoGeneSymbol":"RNA5SP38","entrezGeneId":100873370},{"hugoGeneSymbol":"RNA5SP380","entrezGeneId":100873636},{"hugoGeneSymbol":"RNA5SP382","entrezGeneId":100873637},{"hugoGeneSymbol":"RNA5SP383","entrezGeneId":100873638},{"hugoGeneSymbol":"RNA5SP384","entrezGeneId":100873639},{"hugoGeneSymbol":"RNA5SP385","entrezGeneId":100873640},{"hugoGeneSymbol":"RNA5SP386","entrezGeneId":100873641},{"hugoGeneSymbol":"RNA5SP387","entrezGeneId":107133508},{"hugoGeneSymbol":"RNA5SP388","entrezGeneId":100873642},{"hugoGeneSymbol":"RNA5SP389","entrezGeneId":106480766},{"hugoGeneSymbol":"RNA5SP39","entrezGeneId":100873371},{"hugoGeneSymbol":"RNA5SP390","entrezGeneId":100873643},{"hugoGeneSymbol":"RNA5SP391","entrezGeneId":100873644},{"hugoGeneSymbol":"RNA5SP392","entrezGeneId":100873645},{"hugoGeneSymbol":"RNA5SP393","entrezGeneId":100873646},{"hugoGeneSymbol":"RNA5SP394","entrezGeneId":100873647},{"hugoGeneSymbol":"RNA5SP395","entrezGeneId":100873648},{"hugoGeneSymbol":"RNA5SP396","entrezGeneId":100873649},{"hugoGeneSymbol":"RNA5SP397","entrezGeneId":100873650},{"hugoGeneSymbol":"RNA5SP399","entrezGeneId":100873652},{"hugoGeneSymbol":"RNA5SP40","entrezGeneId":100873279},{"hugoGeneSymbol":"RNA5SP400","entrezGeneId":100873653},{"hugoGeneSymbol":"RNA5SP401","entrezGeneId":100873654},{"hugoGeneSymbol":"RNA5SP402","entrezGeneId":100873655},{"hugoGeneSymbol":"RNA5SP403","entrezGeneId":106479012},{"hugoGeneSymbol":"RNA5SP404","entrezGeneId":100873656},{"hugoGeneSymbol":"RNA5SP405","entrezGeneId":100873657},{"hugoGeneSymbol":"RNA5SP406","entrezGeneId":100873658},{"hugoGeneSymbol":"RNA5SP407","entrezGeneId":100873659},{"hugoGeneSymbol":"RNA5SP408","entrezGeneId":100873660},{"hugoGeneSymbol":"RNA5SP409","entrezGeneId":100873661},{"hugoGeneSymbol":"RNA5SP41","entrezGeneId":100873280},{"hugoGeneSymbol":"RNA5SP410","entrezGeneId":100873662},{"hugoGeneSymbol":"RNA5SP411","entrezGeneId":100887740},{"hugoGeneSymbol":"RNA5SP412","entrezGeneId":100873663},{"hugoGeneSymbol":"RNA5SP413","entrezGeneId":100873664},{"hugoGeneSymbol":"RNA5SP414","entrezGeneId":100873665},{"hugoGeneSymbol":"RNA5SP415","entrezGeneId":100873666},{"hugoGeneSymbol":"RNA5SP416","entrezGeneId":100873667},{"hugoGeneSymbol":"RNA5SP417","entrezGeneId":100873668},{"hugoGeneSymbol":"RNA5SP418","entrezGeneId":100873669},{"hugoGeneSymbol":"RNA5SP419","entrezGeneId":100873670},{"hugoGeneSymbol":"RNA5SP42","entrezGeneId":100873281},{"hugoGeneSymbol":"RNA5SP420","entrezGeneId":100873671},{"hugoGeneSymbol":"RNA5SP421","entrezGeneId":100873672},{"hugoGeneSymbol":"RNA5SP422","entrezGeneId":100873673},{"hugoGeneSymbol":"RNA5SP423","entrezGeneId":100873674},{"hugoGeneSymbol":"RNA5SP424","entrezGeneId":100873675},{"hugoGeneSymbol":"RNA5SP425","entrezGeneId":100873676},{"hugoGeneSymbol":"RNA5SP426","entrezGeneId":100873677},{"hugoGeneSymbol":"RNA5SP427","entrezGeneId":100873678},{"hugoGeneSymbol":"RNA5SP428","entrezGeneId":100873679},{"hugoGeneSymbol":"RNA5SP429","entrezGeneId":106480767},{"hugoGeneSymbol":"RNA5SP43","entrezGeneId":100873282},{"hugoGeneSymbol":"RNA5SP430","entrezGeneId":100873680},{"hugoGeneSymbol":"RNA5SP431","entrezGeneId":100873681},{"hugoGeneSymbol":"RNA5SP432","entrezGeneId":100873682},{"hugoGeneSymbol":"RNA5SP433","entrezGeneId":100873683},{"hugoGeneSymbol":"RNA5SP434","entrezGeneId":100873684},{"hugoGeneSymbol":"RNA5SP435","entrezGeneId":106479013},{"hugoGeneSymbol":"RNA5SP436","entrezGeneId":100873685},{"hugoGeneSymbol":"RNA5SP437","entrezGeneId":100873686},{"hugoGeneSymbol":"RNA5SP438","entrezGeneId":100873687},{"hugoGeneSymbol":"RNA5SP439","entrezGeneId":106479014},{"hugoGeneSymbol":"RNA5SP44","entrezGeneId":100873283},{"hugoGeneSymbol":"RNA5SP440","entrezGeneId":100873688},{"hugoGeneSymbol":"RNA5SP441","entrezGeneId":100873689},{"hugoGeneSymbol":"RNA5SP442","entrezGeneId":106480768},{"hugoGeneSymbol":"RNA5SP443","entrezGeneId":106481745},{"hugoGeneSymbol":"RNA5SP444","entrezGeneId":100873690},{"hugoGeneSymbol":"RNA5SP445","entrezGeneId":100873691},{"hugoGeneSymbol":"RNA5SP446","entrezGeneId":100873692},{"hugoGeneSymbol":"RNA5SP447","entrezGeneId":100873693},{"hugoGeneSymbol":"RNA5SP448","entrezGeneId":106479015},{"hugoGeneSymbol":"RNA5SP449","entrezGeneId":100873694},{"hugoGeneSymbol":"RNA5SP45","entrezGeneId":100873284},{"hugoGeneSymbol":"RNA5SP450","entrezGeneId":100873695},{"hugoGeneSymbol":"RNA5SP451","entrezGeneId":100873696},{"hugoGeneSymbol":"RNA5SP452","entrezGeneId":100873697},{"hugoGeneSymbol":"RNA5SP453","entrezGeneId":100873698},{"hugoGeneSymbol":"RNA5SP454","entrezGeneId":100873699},{"hugoGeneSymbol":"RNA5SP455","entrezGeneId":100873700},{"hugoGeneSymbol":"RNA5SP456","entrezGeneId":100873701},{"hugoGeneSymbol":"RNA5SP457","entrezGeneId":100873702},{"hugoGeneSymbol":"RNA5SP458","entrezGeneId":106479016},{"hugoGeneSymbol":"RNA5SP459","entrezGeneId":100873703},{"hugoGeneSymbol":"RNA5SP46","entrezGeneId":100873285},{"hugoGeneSymbol":"RNA5SP460","entrezGeneId":100873704},{"hugoGeneSymbol":"RNA5SP461","entrezGeneId":100873705},{"hugoGeneSymbol":"RNA5SP462","entrezGeneId":100873706},{"hugoGeneSymbol":"RNA5SP463","entrezGeneId":100873707},{"hugoGeneSymbol":"RNA5SP464","entrezGeneId":100873708},{"hugoGeneSymbol":"RNA5SP465","entrezGeneId":100873709},{"hugoGeneSymbol":"RNA5SP466","entrezGeneId":100873710},{"hugoGeneSymbol":"RNA5SP467","entrezGeneId":100873711},{"hugoGeneSymbol":"RNA5SP468","entrezGeneId":106480769},{"hugoGeneSymbol":"RNA5SP469","entrezGeneId":100873712},{"hugoGeneSymbol":"RNA5SP47","entrezGeneId":100873286},{"hugoGeneSymbol":"RNA5SP470","entrezGeneId":100873713},{"hugoGeneSymbol":"RNA5SP471","entrezGeneId":100873714},{"hugoGeneSymbol":"RNA5SP472","entrezGeneId":100873715},{"hugoGeneSymbol":"RNA5SP473","entrezGeneId":106479017},{"hugoGeneSymbol":"RNA5SP474","entrezGeneId":100873716},{"hugoGeneSymbol":"RNA5SP475","entrezGeneId":100873717},{"hugoGeneSymbol":"RNA5SP476","entrezGeneId":100873718},{"hugoGeneSymbol":"RNA5SP477","entrezGeneId":100873719},{"hugoGeneSymbol":"RNA5SP478","entrezGeneId":100873720},{"hugoGeneSymbol":"RNA5SP479","entrezGeneId":100873721},{"hugoGeneSymbol":"RNA5SP48","entrezGeneId":100873287},{"hugoGeneSymbol":"RNA5SP480","entrezGeneId":100873722},{"hugoGeneSymbol":"RNA5SP481","entrezGeneId":100873723},{"hugoGeneSymbol":"RNA5SP482","entrezGeneId":100873724},{"hugoGeneSymbol":"RNA5SP483","entrezGeneId":100873725},{"hugoGeneSymbol":"RNA5SP484","entrezGeneId":100873726},{"hugoGeneSymbol":"RNA5SP485","entrezGeneId":100873727},{"hugoGeneSymbol":"RNA5SP486","entrezGeneId":100873728},{"hugoGeneSymbol":"RNA5SP487","entrezGeneId":100873729},{"hugoGeneSymbol":"RNA5SP488","entrezGeneId":100873730},{"hugoGeneSymbol":"RNA5SP489","entrezGeneId":100873731},{"hugoGeneSymbol":"RNA5SP49","entrezGeneId":100873288},{"hugoGeneSymbol":"RNA5SP490","entrezGeneId":100873732},{"hugoGeneSymbol":"RNA5SP491","entrezGeneId":100873733},{"hugoGeneSymbol":"RNA5SP492","entrezGeneId":100873734},{"hugoGeneSymbol":"RNA5SP493","entrezGeneId":100873735},{"hugoGeneSymbol":"RNA5SP494","entrezGeneId":100873736},{"hugoGeneSymbol":"RNA5SP495","entrezGeneId":100873737},{"hugoGeneSymbol":"RNA5SP496","entrezGeneId":100873738},{"hugoGeneSymbol":"RNA5SP497","entrezGeneId":100873739},{"hugoGeneSymbol":"RNA5SP498","entrezGeneId":106480770},{"hugoGeneSymbol":"RNA5SP499","entrezGeneId":100873550},{"hugoGeneSymbol":"RNA5SP50","entrezGeneId":106478992},{"hugoGeneSymbol":"RNA5SP500","entrezGeneId":100873551},{"hugoGeneSymbol":"RNA5SP501","entrezGeneId":100873552},{"hugoGeneSymbol":"RNA5SP502","entrezGeneId":100873553},{"hugoGeneSymbol":"RNA5SP503","entrezGeneId":100873554},{"hugoGeneSymbol":"RNA5SP504","entrezGeneId":100873555},{"hugoGeneSymbol":"RNA5SP505","entrezGeneId":100873556},{"hugoGeneSymbol":"RNA5SP506","entrezGeneId":100873557},{"hugoGeneSymbol":"RNA5SP507","entrezGeneId":100873558},{"hugoGeneSymbol":"RNA5SP508","entrezGeneId":100873559},{"hugoGeneSymbol":"RNA5SP509","entrezGeneId":100873560},{"hugoGeneSymbol":"RNA5SP51","entrezGeneId":100873289},{"hugoGeneSymbol":"RNA5SP510","entrezGeneId":100873561},{"hugoGeneSymbol":"RNA5SP511","entrezGeneId":100873562},{"hugoGeneSymbol":"RNA5SP512","entrezGeneId":100873563},{"hugoGeneSymbol":"RNA5SP513","entrezGeneId":100873564},{"hugoGeneSymbol":"RNA5SP514","entrezGeneId":100873565},{"hugoGeneSymbol":"RNA5SP515","entrezGeneId":100873566},{"hugoGeneSymbol":"RNA5SP516","entrezGeneId":100873567},{"hugoGeneSymbol":"RNA5SP517","entrezGeneId":100873568},{"hugoGeneSymbol":"RNA5SP518","entrezGeneId":100873569},{"hugoGeneSymbol":"RNA5SP519","entrezGeneId":100873570},{"hugoGeneSymbol":"RNA5SP52","entrezGeneId":100873290},{"hugoGeneSymbol":"RNA5SP520","entrezGeneId":106480771},{"hugoGeneSymbol":"RNA5SP521","entrezGeneId":106479018},{"hugoGeneSymbol":"RNA5SP522","entrezGeneId":106479019},{"hugoGeneSymbol":"RNA5SP523","entrezGeneId":106480772},{"hugoGeneSymbol":"RNA5SP524","entrezGeneId":111644143},{"hugoGeneSymbol":"RNA5SP525","entrezGeneId":111644134},{"hugoGeneSymbol":"RNA5SP526","entrezGeneId":111644135},{"hugoGeneSymbol":"RNA5SP527","entrezGeneId":111644144},{"hugoGeneSymbol":"RNA5SP528","entrezGeneId":111644145},{"hugoGeneSymbol":"RNA5SP529","entrezGeneId":111644136},{"hugoGeneSymbol":"RNA5SP53","entrezGeneId":100873291},{"hugoGeneSymbol":"RNA5SP531","entrezGeneId":111644137},{"hugoGeneSymbol":"RNA5SP533","entrezGeneId":111644138},{"hugoGeneSymbol":"RNA5SP534","entrezGeneId":111644140},{"hugoGeneSymbol":"RNA5SP535","entrezGeneId":111644139},{"hugoGeneSymbol":"RNA5SP536","entrezGeneId":111644146},{"hugoGeneSymbol":"RNA5SP54","entrezGeneId":100873292},{"hugoGeneSymbol":"RNA5SP55","entrezGeneId":100873293},{"hugoGeneSymbol":"RNA5SP56","entrezGeneId":100873294},{"hugoGeneSymbol":"RNA5SP57","entrezGeneId":106480754},{"hugoGeneSymbol":"RNA5SP59","entrezGeneId":106480357},{"hugoGeneSymbol":"RNA5SP60","entrezGeneId":100873295},{"hugoGeneSymbol":"RNA5SP61","entrezGeneId":100873296},{"hugoGeneSymbol":"RNA5SP62","entrezGeneId":100873297},{"hugoGeneSymbol":"RNA5SP63","entrezGeneId":100873298},{"hugoGeneSymbol":"RNA5SP64","entrezGeneId":100873299},{"hugoGeneSymbol":"RNA5SP65","entrezGeneId":100873300},{"hugoGeneSymbol":"RNA5SP66","entrezGeneId":100873301},{"hugoGeneSymbol":"RNA5SP67","entrezGeneId":100873302},{"hugoGeneSymbol":"RNA5SP68","entrezGeneId":100873303},{"hugoGeneSymbol":"RNA5SP69","entrezGeneId":100873304},{"hugoGeneSymbol":"RNA5SP70","entrezGeneId":106480436},{"hugoGeneSymbol":"RNA5SP71","entrezGeneId":100873305},{"hugoGeneSymbol":"RNA5SP72","entrezGeneId":100873306},{"hugoGeneSymbol":"RNA5SP73","entrezGeneId":100873307},{"hugoGeneSymbol":"RNA5SP74","entrezGeneId":100873308},{"hugoGeneSymbol":"RNA5SP75","entrezGeneId":100873309},{"hugoGeneSymbol":"RNA5SP76","entrezGeneId":100873310},{"hugoGeneSymbol":"RNA5SP77","entrezGeneId":100873311},{"hugoGeneSymbol":"RNA5SP78","entrezGeneId":100873312},{"hugoGeneSymbol":"RNA5SP79","entrezGeneId":100873313},{"hugoGeneSymbol":"RNA5SP80","entrezGeneId":100873314},{"hugoGeneSymbol":"RNA5SP82","entrezGeneId":100873316},{"hugoGeneSymbol":"RNA5SP84","entrezGeneId":100873317},{"hugoGeneSymbol":"RNA5SP85","entrezGeneId":100873318},{"hugoGeneSymbol":"RNA5SP86","entrezGeneId":100873319},{"hugoGeneSymbol":"RNA5SP87","entrezGeneId":100873320},{"hugoGeneSymbol":"RNA5SP88","entrezGeneId":100873321},{"hugoGeneSymbol":"RNA5SP89","entrezGeneId":100873322},{"hugoGeneSymbol":"RNA5SP90","entrezGeneId":100873323},{"hugoGeneSymbol":"RNA5SP91","entrezGeneId":100873324},{"hugoGeneSymbol":"RNA5SP92","entrezGeneId":100873325},{"hugoGeneSymbol":"RNA5SP93","entrezGeneId":100873326},{"hugoGeneSymbol":"RNA5SP94","entrezGeneId":100873327},{"hugoGeneSymbol":"RNA5SP95","entrezGeneId":100873328},{"hugoGeneSymbol":"RNA5SP96","entrezGeneId":100873329},{"hugoGeneSymbol":"RNA5SP97","entrezGeneId":100873330},{"hugoGeneSymbol":"RNA5SP98","entrezGeneId":100873331},{"hugoGeneSymbol":"RNA5SP99","entrezGeneId":106478993},{"hugoGeneSymbol":"RNANC","entrezGeneId":54719},{"hugoGeneSymbol":"RNASE1","entrezGeneId":6035},{"hugoGeneSymbol":"RNASE10","entrezGeneId":338879},{"hugoGeneSymbol":"RNASE11","entrezGeneId":122651},{"hugoGeneSymbol":"RNASE12","entrezGeneId":493901},{"hugoGeneSymbol":"RNASE13","entrezGeneId":440163},{"hugoGeneSymbol":"RNASE2","entrezGeneId":6036},{"hugoGeneSymbol":"RNASE3","entrezGeneId":6037},{"hugoGeneSymbol":"RNASE4","entrezGeneId":6038},{"hugoGeneSymbol":"RNASE6","entrezGeneId":6039},{"hugoGeneSymbol":"RNASE7","entrezGeneId":84659},{"hugoGeneSymbol":"RNASE8","entrezGeneId":122665},{"hugoGeneSymbol":"RNASE9","entrezGeneId":390443},{"hugoGeneSymbol":"RNASEH1","entrezGeneId":246243},{"hugoGeneSymbol":"RNASEH1-AS1","entrezGeneId":100506054},{"hugoGeneSymbol":"RNASEH1P1","entrezGeneId":284203},{"hugoGeneSymbol":"RNASEH1P2","entrezGeneId":390766},{"hugoGeneSymbol":"RNASEH1P3","entrezGeneId":199827},{"hugoGeneSymbol":"RNASEH2A","entrezGeneId":10535},{"hugoGeneSymbol":"RNASEH2B","entrezGeneId":79621},{"hugoGeneSymbol":"RNASEH2B-AS1","entrezGeneId":100874255},{"hugoGeneSymbol":"RNASEH2C","entrezGeneId":84153},{"hugoGeneSymbol":"RNASEH2CP1","entrezGeneId":386608},{"hugoGeneSymbol":"RNASEK","entrezGeneId":440400},{"hugoGeneSymbol":"RNASEK-C17ORF49","entrezGeneId":100529209},{"hugoGeneSymbol":"RNASEL","entrezGeneId":6041},{"hugoGeneSymbol":"RNASET2","entrezGeneId":8635},{"hugoGeneSymbol":"RND1","entrezGeneId":27289},{"hugoGeneSymbol":"RND2","entrezGeneId":8153},{"hugoGeneSymbol":"RND3","entrezGeneId":390},{"hugoGeneSymbol":"RNF10","entrezGeneId":9921},{"hugoGeneSymbol":"RNF103","entrezGeneId":7844},{"hugoGeneSymbol":"RNF103-CHMP3","entrezGeneId":100526767},{"hugoGeneSymbol":"RNF10P1","entrezGeneId":100419599},{"hugoGeneSymbol":"RNF11","entrezGeneId":26994},{"hugoGeneSymbol":"RNF111","entrezGeneId":54778},{"hugoGeneSymbol":"RNF112","entrezGeneId":7732},{"hugoGeneSymbol":"RNF113A","entrezGeneId":7737},{"hugoGeneSymbol":"RNF113B","entrezGeneId":140432},{"hugoGeneSymbol":"RNF114","entrezGeneId":55905},{"hugoGeneSymbol":"RNF115","entrezGeneId":27246},{"hugoGeneSymbol":"RNF11P1","entrezGeneId":100131695},{"hugoGeneSymbol":"RNF11P2","entrezGeneId":170543},{"hugoGeneSymbol":"RNF121","entrezGeneId":55298},{"hugoGeneSymbol":"RNF122","entrezGeneId":79845},{"hugoGeneSymbol":"RNF123","entrezGeneId":63891},{"hugoGeneSymbol":"RNF125","entrezGeneId":54941},{"hugoGeneSymbol":"RNF126","entrezGeneId":55658},{"hugoGeneSymbol":"RNF126P1","entrezGeneId":376412},{"hugoGeneSymbol":"RNF128","entrezGeneId":79589},{"hugoGeneSymbol":"RNF13","entrezGeneId":11342},{"hugoGeneSymbol":"RNF130","entrezGeneId":55819},{"hugoGeneSymbol":"RNF133","entrezGeneId":168433},{"hugoGeneSymbol":"RNF135","entrezGeneId":84282},{"hugoGeneSymbol":"RNF138","entrezGeneId":51444},{"hugoGeneSymbol":"RNF138P1","entrezGeneId":379013},{"hugoGeneSymbol":"RNF138P2","entrezGeneId":100419777},{"hugoGeneSymbol":"RNF139","entrezGeneId":11236},{"hugoGeneSymbol":"RNF139-AS1","entrezGeneId":101927612},{"hugoGeneSymbol":"RNF14","entrezGeneId":9604},{"hugoGeneSymbol":"RNF141","entrezGeneId":50862},{"hugoGeneSymbol":"RNF144A","entrezGeneId":9781},{"hugoGeneSymbol":"RNF144A-AS1","entrezGeneId":386597},{"hugoGeneSymbol":"RNF144B","entrezGeneId":255488},{"hugoGeneSymbol":"RNF145","entrezGeneId":153830},{"hugoGeneSymbol":"RNF146","entrezGeneId":81847},{"hugoGeneSymbol":"RNF148","entrezGeneId":378925},{"hugoGeneSymbol":"RNF149","entrezGeneId":284996},{"hugoGeneSymbol":"RNF150","entrezGeneId":57484},{"hugoGeneSymbol":"RNF151","entrezGeneId":146310},{"hugoGeneSymbol":"RNF152","entrezGeneId":220441},{"hugoGeneSymbol":"RNF152P1","entrezGeneId":100419687},{"hugoGeneSymbol":"RNF157","entrezGeneId":114804},{"hugoGeneSymbol":"RNF157-AS1","entrezGeneId":100507218},{"hugoGeneSymbol":"RNF165","entrezGeneId":494470},{"hugoGeneSymbol":"RNF166","entrezGeneId":115992},{"hugoGeneSymbol":"RNF167","entrezGeneId":26001},{"hugoGeneSymbol":"RNF168","entrezGeneId":165918},{"hugoGeneSymbol":"RNF169","entrezGeneId":254225},{"hugoGeneSymbol":"RNF17","entrezGeneId":56163},{"hugoGeneSymbol":"RNF170","entrezGeneId":81790},{"hugoGeneSymbol":"RNF175","entrezGeneId":285533},{"hugoGeneSymbol":"RNF180","entrezGeneId":285671},{"hugoGeneSymbol":"RNF181","entrezGeneId":51255},{"hugoGeneSymbol":"RNF182","entrezGeneId":221687},{"hugoGeneSymbol":"RNF183","entrezGeneId":138065},{"hugoGeneSymbol":"RNF185","entrezGeneId":91445},{"hugoGeneSymbol":"RNF185-AS1","entrezGeneId":100852405},{"hugoGeneSymbol":"RNF186","entrezGeneId":54546},{"hugoGeneSymbol":"RNF187","entrezGeneId":149603},{"hugoGeneSymbol":"RNF19A","entrezGeneId":25897},{"hugoGeneSymbol":"RNF19B","entrezGeneId":127544},{"hugoGeneSymbol":"RNF19BPX","entrezGeneId":100419788},{"hugoGeneSymbol":"RNF19BPY","entrezGeneId":100419722},{"hugoGeneSymbol":"RNF2","entrezGeneId":6045},{"hugoGeneSymbol":"RNF20","entrezGeneId":56254},{"hugoGeneSymbol":"RNF207","entrezGeneId":388591},{"hugoGeneSymbol":"RNF208","entrezGeneId":727800},{"hugoGeneSymbol":"RNF212","entrezGeneId":285498},{"hugoGeneSymbol":"RNF212B","entrezGeneId":100507650},{"hugoGeneSymbol":"RNF213","entrezGeneId":57674},{"hugoGeneSymbol":"RNF214","entrezGeneId":257160},{"hugoGeneSymbol":"RNF215","entrezGeneId":200312},{"hugoGeneSymbol":"RNF216","entrezGeneId":54476},{"hugoGeneSymbol":"RNF216-IT1","entrezGeneId":100874342},{"hugoGeneSymbol":"RNF216P1","entrezGeneId":441191},{"hugoGeneSymbol":"RNF217","entrezGeneId":154214},{"hugoGeneSymbol":"RNF217-AS1","entrezGeneId":7955},{"hugoGeneSymbol":"RNF219","entrezGeneId":79596},{"hugoGeneSymbol":"RNF219-AS1","entrezGeneId":100874222},{"hugoGeneSymbol":"RNF220","entrezGeneId":55182},{"hugoGeneSymbol":"RNF222","entrezGeneId":643904},{"hugoGeneSymbol":"RNF223","entrezGeneId":401934},{"hugoGeneSymbol":"RNF224","entrezGeneId":643596},{"hugoGeneSymbol":"RNF225","entrezGeneId":646862},{"hugoGeneSymbol":"RNF227","entrezGeneId":284023},{"hugoGeneSymbol":"RNF24","entrezGeneId":11237},{"hugoGeneSymbol":"RNF25","entrezGeneId":64320},{"hugoGeneSymbol":"RNF26","entrezGeneId":79102},{"hugoGeneSymbol":"RNF2P1","entrezGeneId":100132467},{"hugoGeneSymbol":"RNF31","entrezGeneId":55072},{"hugoGeneSymbol":"RNF32","entrezGeneId":140545},{"hugoGeneSymbol":"RNF34","entrezGeneId":80196},{"hugoGeneSymbol":"RNF38","entrezGeneId":152006},{"hugoGeneSymbol":"RNF39","entrezGeneId":80352},{"hugoGeneSymbol":"RNF4","entrezGeneId":6047},{"hugoGeneSymbol":"RNF40","entrezGeneId":9810},{"hugoGeneSymbol":"RNF41","entrezGeneId":10193},{"hugoGeneSymbol":"RNF43","entrezGeneId":54894},{"hugoGeneSymbol":"RNF44","entrezGeneId":22838},{"hugoGeneSymbol":"RNF5","entrezGeneId":6048},{"hugoGeneSymbol":"RNF5P1","entrezGeneId":286140},{"hugoGeneSymbol":"RNF6","entrezGeneId":6049},{"hugoGeneSymbol":"RNF6P1","entrezGeneId":100420924},{"hugoGeneSymbol":"RNF7","entrezGeneId":9616},{"hugoGeneSymbol":"RNF7P1","entrezGeneId":100506872},{"hugoGeneSymbol":"RNF8","entrezGeneId":9025},{"hugoGeneSymbol":"RNFT1","entrezGeneId":51136},{"hugoGeneSymbol":"RNFT1-DT","entrezGeneId":101927755},{"hugoGeneSymbol":"RNFT1P1","entrezGeneId":100420886},{"hugoGeneSymbol":"RNFT1P2","entrezGeneId":100132264},{"hugoGeneSymbol":"RNFT1P3","entrezGeneId":101929203},{"hugoGeneSymbol":"RNFT2","entrezGeneId":84900},{"hugoGeneSymbol":"RNGTT","entrezGeneId":8732},{"hugoGeneSymbol":"RNGTTP1","entrezGeneId":100421428},{"hugoGeneSymbol":"RNH1","entrezGeneId":6050},{"hugoGeneSymbol":"RNLS","entrezGeneId":55328},{"hugoGeneSymbol":"RNMT","entrezGeneId":8731},{"hugoGeneSymbol":"RNMTL1P1","entrezGeneId":100420295},{"hugoGeneSymbol":"RNMTL1P2","entrezGeneId":100420223},{"hugoGeneSymbol":"RNPC3","entrezGeneId":55599},{"hugoGeneSymbol":"RNPC3P1","entrezGeneId":654340},{"hugoGeneSymbol":"RNPEP","entrezGeneId":6051},{"hugoGeneSymbol":"RNPEPL1","entrezGeneId":57140},{"hugoGeneSymbol":"RNPS1","entrezGeneId":10921},{"hugoGeneSymbol":"RNPS1P1","entrezGeneId":643446},{"hugoGeneSymbol":"RNR1","entrezGeneId":6052},{"hugoGeneSymbol":"RNR2","entrezGeneId":6053},{"hugoGeneSymbol":"RNR3","entrezGeneId":6054},{"hugoGeneSymbol":"RNR4","entrezGeneId":6055},{"hugoGeneSymbol":"RNR5","entrezGeneId":6056},{"hugoGeneSymbol":"RNU1-1","entrezGeneId":26871},{"hugoGeneSymbol":"RNU1-100P","entrezGeneId":106480183},{"hugoGeneSymbol":"RNU1-101P","entrezGeneId":106480667},{"hugoGeneSymbol":"RNU1-103P","entrezGeneId":106481623},{"hugoGeneSymbol":"RNU1-104P","entrezGeneId":106480184},{"hugoGeneSymbol":"RNU1-105P","entrezGeneId":106480185},{"hugoGeneSymbol":"RNU1-106P","entrezGeneId":106481624},{"hugoGeneSymbol":"RNU1-107P","entrezGeneId":106480186},{"hugoGeneSymbol":"RNU1-108P","entrezGeneId":106481957},{"hugoGeneSymbol":"RNU1-109P","entrezGeneId":106481625},{"hugoGeneSymbol":"RNU1-112P","entrezGeneId":106480187},{"hugoGeneSymbol":"RNU1-114P","entrezGeneId":106481626},{"hugoGeneSymbol":"RNU1-115P","entrezGeneId":106480188},{"hugoGeneSymbol":"RNU1-116P","entrezGeneId":107521946},{"hugoGeneSymbol":"RNU1-117P","entrezGeneId":106480189},{"hugoGeneSymbol":"RNU1-119P","entrezGeneId":106480668},{"hugoGeneSymbol":"RNU1-11P","entrezGeneId":26861},{"hugoGeneSymbol":"RNU1-120P","entrezGeneId":106481627},{"hugoGeneSymbol":"RNU1-122P","entrezGeneId":106480190},{"hugoGeneSymbol":"RNU1-123P","entrezGeneId":106481628},{"hugoGeneSymbol":"RNU1-124P","entrezGeneId":106481629},{"hugoGeneSymbol":"RNU1-125P","entrezGeneId":106866915},{"hugoGeneSymbol":"RNU1-128P","entrezGeneId":106480191},{"hugoGeneSymbol":"RNU1-129P","entrezGeneId":106481630},{"hugoGeneSymbol":"RNU1-130P","entrezGeneId":106480192},{"hugoGeneSymbol":"RNU1-131P","entrezGeneId":106480193},{"hugoGeneSymbol":"RNU1-132P","entrezGeneId":106481958},{"hugoGeneSymbol":"RNU1-133P","entrezGeneId":106481631},{"hugoGeneSymbol":"RNU1-134P","entrezGeneId":106480194},{"hugoGeneSymbol":"RNU1-136P","entrezGeneId":106481632},{"hugoGeneSymbol":"RNU1-138P","entrezGeneId":106480195},{"hugoGeneSymbol":"RNU1-139P","entrezGeneId":106480196},{"hugoGeneSymbol":"RNU1-13P","entrezGeneId":26860},{"hugoGeneSymbol":"RNU1-140P","entrezGeneId":106480669},{"hugoGeneSymbol":"RNU1-141P","entrezGeneId":106481633},{"hugoGeneSymbol":"RNU1-142P","entrezGeneId":106480197},{"hugoGeneSymbol":"RNU1-143P","entrezGeneId":106481634},{"hugoGeneSymbol":"RNU1-146P","entrezGeneId":106480198},{"hugoGeneSymbol":"RNU1-148P","entrezGeneId":106481635},{"hugoGeneSymbol":"RNU1-149P","entrezGeneId":107048983},{"hugoGeneSymbol":"RNU1-14P","entrezGeneId":26859},{"hugoGeneSymbol":"RNU1-150P","entrezGeneId":106480413},{"hugoGeneSymbol":"RNU1-151P","entrezGeneId":110806291},{"hugoGeneSymbol":"RNU1-152P","entrezGeneId":107521952},{"hugoGeneSymbol":"RNU1-15P","entrezGeneId":26858},{"hugoGeneSymbol":"RNU1-16P","entrezGeneId":100873860},{"hugoGeneSymbol":"RNU1-17P","entrezGeneId":100873814},{"hugoGeneSymbol":"RNU1-18P","entrezGeneId":100873815},{"hugoGeneSymbol":"RNU1-19P","entrezGeneId":100873861},{"hugoGeneSymbol":"RNU1-2","entrezGeneId":26870},{"hugoGeneSymbol":"RNU1-20P","entrezGeneId":100873816},{"hugoGeneSymbol":"RNU1-21P","entrezGeneId":100873862},{"hugoGeneSymbol":"RNU1-22P","entrezGeneId":100873863},{"hugoGeneSymbol":"RNU1-23P","entrezGeneId":106478980},{"hugoGeneSymbol":"RNU1-24P","entrezGeneId":100873865},{"hugoGeneSymbol":"RNU1-27P","entrezGeneId":26865},{"hugoGeneSymbol":"RNU1-28P","entrezGeneId":26866},{"hugoGeneSymbol":"RNU1-29P","entrezGeneId":106480154},{"hugoGeneSymbol":"RNU1-3","entrezGeneId":26869},{"hugoGeneSymbol":"RNU1-30P","entrezGeneId":106480662},{"hugoGeneSymbol":"RNU1-31P","entrezGeneId":106481606},{"hugoGeneSymbol":"RNU1-32P","entrezGeneId":106480155},{"hugoGeneSymbol":"RNU1-33P","entrezGeneId":106480156},{"hugoGeneSymbol":"RNU1-34P","entrezGeneId":106481607},{"hugoGeneSymbol":"RNU1-35P","entrezGeneId":106480157},{"hugoGeneSymbol":"RNU1-36P","entrezGeneId":106481783},{"hugoGeneSymbol":"RNU1-38P","entrezGeneId":106481608},{"hugoGeneSymbol":"RNU1-39P","entrezGeneId":106481953},{"hugoGeneSymbol":"RNU1-4","entrezGeneId":6060},{"hugoGeneSymbol":"RNU1-40P","entrezGeneId":106480158},{"hugoGeneSymbol":"RNU1-41P","entrezGeneId":107105262},{"hugoGeneSymbol":"RNU1-42P","entrezGeneId":106481609},{"hugoGeneSymbol":"RNU1-43P","entrezGeneId":106480159},{"hugoGeneSymbol":"RNU1-44P","entrezGeneId":106480160},{"hugoGeneSymbol":"RNU1-45P","entrezGeneId":106481610},{"hugoGeneSymbol":"RNU1-46P","entrezGeneId":106480663},{"hugoGeneSymbol":"RNU1-47P","entrezGeneId":106480161},{"hugoGeneSymbol":"RNU1-48P","entrezGeneId":107080628},{"hugoGeneSymbol":"RNU1-49P","entrezGeneId":106480162},{"hugoGeneSymbol":"RNU1-51P","entrezGeneId":106480163},{"hugoGeneSymbol":"RNU1-52P","entrezGeneId":106480164},{"hugoGeneSymbol":"RNU1-54P","entrezGeneId":106481611},{"hugoGeneSymbol":"RNU1-55P","entrezGeneId":106481954},{"hugoGeneSymbol":"RNU1-56P","entrezGeneId":106480165},{"hugoGeneSymbol":"RNU1-57P","entrezGeneId":106480166},{"hugoGeneSymbol":"RNU1-58P","entrezGeneId":106481612},{"hugoGeneSymbol":"RNU1-59P","entrezGeneId":106480167},{"hugoGeneSymbol":"RNU1-5P","entrezGeneId":107105261},{"hugoGeneSymbol":"RNU1-61P","entrezGeneId":106481980},{"hugoGeneSymbol":"RNU1-62P","entrezGeneId":106481613},{"hugoGeneSymbol":"RNU1-63P","entrezGeneId":106480664},{"hugoGeneSymbol":"RNU1-64P","entrezGeneId":106480168},{"hugoGeneSymbol":"RNU1-65P","entrezGeneId":106481614},{"hugoGeneSymbol":"RNU1-67P","entrezGeneId":106480169},{"hugoGeneSymbol":"RNU1-68P","entrezGeneId":106481615},{"hugoGeneSymbol":"RNU1-6P","entrezGeneId":106480152},{"hugoGeneSymbol":"RNU1-70P","entrezGeneId":107105264},{"hugoGeneSymbol":"RNU1-72P","entrezGeneId":106481955},{"hugoGeneSymbol":"RNU1-73P","entrezGeneId":106481616},{"hugoGeneSymbol":"RNU1-74P","entrezGeneId":106480171},{"hugoGeneSymbol":"RNU1-75P","entrezGeneId":106480172},{"hugoGeneSymbol":"RNU1-76P","entrezGeneId":106481617},{"hugoGeneSymbol":"RNU1-77P","entrezGeneId":106480173},{"hugoGeneSymbol":"RNU1-78P","entrezGeneId":106480665},{"hugoGeneSymbol":"RNU1-79P","entrezGeneId":107521942},{"hugoGeneSymbol":"RNU1-7P","entrezGeneId":106481952},{"hugoGeneSymbol":"RNU1-80P","entrezGeneId":106480174},{"hugoGeneSymbol":"RNU1-82P","entrezGeneId":106480175},{"hugoGeneSymbol":"RNU1-83P","entrezGeneId":106480176},{"hugoGeneSymbol":"RNU1-84P","entrezGeneId":106481618},{"hugoGeneSymbol":"RNU1-85P","entrezGeneId":106480177},{"hugoGeneSymbol":"RNU1-86P","entrezGeneId":106480666},{"hugoGeneSymbol":"RNU1-87P","entrezGeneId":106480178},{"hugoGeneSymbol":"RNU1-88P","entrezGeneId":106481619},{"hugoGeneSymbol":"RNU1-89P","entrezGeneId":106480412},{"hugoGeneSymbol":"RNU1-8P","entrezGeneId":106481604},{"hugoGeneSymbol":"RNU1-91P","entrezGeneId":106480179},{"hugoGeneSymbol":"RNU1-92P","entrezGeneId":106481620},{"hugoGeneSymbol":"RNU1-93P","entrezGeneId":106480180},{"hugoGeneSymbol":"RNU1-94P","entrezGeneId":106481956},{"hugoGeneSymbol":"RNU1-95P","entrezGeneId":106481621},{"hugoGeneSymbol":"RNU1-96P","entrezGeneId":106480181},{"hugoGeneSymbol":"RNU1-97P","entrezGeneId":106480182},{"hugoGeneSymbol":"RNU1-98P","entrezGeneId":106481622},{"hugoGeneSymbol":"RNU105B","entrezGeneId":26767},{"hugoGeneSymbol":"RNU105C","entrezGeneId":26766},{"hugoGeneSymbol":"RNU11","entrezGeneId":26824},{"hugoGeneSymbol":"RNU11-2P","entrezGeneId":106479561},{"hugoGeneSymbol":"RNU11-3P","entrezGeneId":106479562},{"hugoGeneSymbol":"RNU11-4P","entrezGeneId":106481174},{"hugoGeneSymbol":"RNU11-5P","entrezGeneId":106479563},{"hugoGeneSymbol":"RNU11-6P","entrezGeneId":106480544},{"hugoGeneSymbol":"RNU12","entrezGeneId":267010},{"hugoGeneSymbol":"RNU12-2P","entrezGeneId":26823},{"hugoGeneSymbol":"RNU2-1","entrezGeneId":6066},{"hugoGeneSymbol":"RNU2-10P","entrezGeneId":106480201},{"hugoGeneSymbol":"RNU2-11P","entrezGeneId":106481637},{"hugoGeneSymbol":"RNU2-12P","entrezGeneId":106480202},{"hugoGeneSymbol":"RNU2-13P","entrezGeneId":106480203},{"hugoGeneSymbol":"RNU2-14P","entrezGeneId":106481638},{"hugoGeneSymbol":"RNU2-15P","entrezGeneId":106866980},{"hugoGeneSymbol":"RNU2-16P","entrezGeneId":106481639},{"hugoGeneSymbol":"RNU2-17P","entrezGeneId":106480204},{"hugoGeneSymbol":"RNU2-18P","entrezGeneId":106480205},{"hugoGeneSymbol":"RNU2-19P","entrezGeneId":106481959},{"hugoGeneSymbol":"RNU2-20P","entrezGeneId":106481640},{"hugoGeneSymbol":"RNU2-21P","entrezGeneId":106480206},{"hugoGeneSymbol":"RNU2-22P","entrezGeneId":106660611},{"hugoGeneSymbol":"RNU2-23P","entrezGeneId":106481641},{"hugoGeneSymbol":"RNU2-24P","entrezGeneId":106480207},{"hugoGeneSymbol":"RNU2-25P","entrezGeneId":106480208},{"hugoGeneSymbol":"RNU2-26P","entrezGeneId":106480414},{"hugoGeneSymbol":"RNU2-27P","entrezGeneId":106481642},{"hugoGeneSymbol":"RNU2-28P","entrezGeneId":106480670},{"hugoGeneSymbol":"RNU2-29P","entrezGeneId":106480209},{"hugoGeneSymbol":"RNU2-2P","entrezGeneId":26855},{"hugoGeneSymbol":"RNU2-30P","entrezGeneId":106481643},{"hugoGeneSymbol":"RNU2-31P","entrezGeneId":106480210},{"hugoGeneSymbol":"RNU2-32P","entrezGeneId":106481644},{"hugoGeneSymbol":"RNU2-33P","entrezGeneId":106480211},{"hugoGeneSymbol":"RNU2-34P","entrezGeneId":106481960},{"hugoGeneSymbol":"RNU2-35P","entrezGeneId":106480212},{"hugoGeneSymbol":"RNU2-36P","entrezGeneId":106481645},{"hugoGeneSymbol":"RNU2-37P","entrezGeneId":106480213},{"hugoGeneSymbol":"RNU2-38P","entrezGeneId":106481646},{"hugoGeneSymbol":"RNU2-39P","entrezGeneId":106480214},{"hugoGeneSymbol":"RNU2-3P","entrezGeneId":26854},{"hugoGeneSymbol":"RNU2-40P","entrezGeneId":106480671},{"hugoGeneSymbol":"RNU2-41P","entrezGeneId":106480215},{"hugoGeneSymbol":"RNU2-42P","entrezGeneId":106481647},{"hugoGeneSymbol":"RNU2-43P","entrezGeneId":106480216},{"hugoGeneSymbol":"RNU2-44P","entrezGeneId":106481648},{"hugoGeneSymbol":"RNU2-45P","entrezGeneId":106480217},{"hugoGeneSymbol":"RNU2-46P","entrezGeneId":106480218},{"hugoGeneSymbol":"RNU2-47P","entrezGeneId":106480672},{"hugoGeneSymbol":"RNU2-48P","entrezGeneId":106481649},{"hugoGeneSymbol":"RNU2-49P","entrezGeneId":106480219},{"hugoGeneSymbol":"RNU2-4P","entrezGeneId":26853},{"hugoGeneSymbol":"RNU2-50P","entrezGeneId":106481650},{"hugoGeneSymbol":"RNU2-51P","entrezGeneId":106480415},{"hugoGeneSymbol":"RNU2-52P","entrezGeneId":107080629},{"hugoGeneSymbol":"RNU2-53P","entrezGeneId":106480220},{"hugoGeneSymbol":"RNU2-54P","entrezGeneId":106481651},{"hugoGeneSymbol":"RNU2-55P","entrezGeneId":106481961},{"hugoGeneSymbol":"RNU2-56P","entrezGeneId":106480221},{"hugoGeneSymbol":"RNU2-57P","entrezGeneId":106480222},{"hugoGeneSymbol":"RNU2-58P","entrezGeneId":106481652},{"hugoGeneSymbol":"RNU2-59P","entrezGeneId":106480223},{"hugoGeneSymbol":"RNU2-5P","entrezGeneId":26852},{"hugoGeneSymbol":"RNU2-60P","entrezGeneId":106481653},{"hugoGeneSymbol":"RNU2-61P","entrezGeneId":106480673},{"hugoGeneSymbol":"RNU2-62P","entrezGeneId":106480224},{"hugoGeneSymbol":"RNU2-63P","entrezGeneId":106480225},{"hugoGeneSymbol":"RNU2-64P","entrezGeneId":106481654},{"hugoGeneSymbol":"RNU2-65P","entrezGeneId":106480226},{"hugoGeneSymbol":"RNU2-66P","entrezGeneId":106481655},{"hugoGeneSymbol":"RNU2-68P","entrezGeneId":106481962},{"hugoGeneSymbol":"RNU2-69P","entrezGeneId":106481656},{"hugoGeneSymbol":"RNU2-6P","entrezGeneId":100873825},{"hugoGeneSymbol":"RNU2-70P","entrezGeneId":106480227},{"hugoGeneSymbol":"RNU2-71P","entrezGeneId":106480228},{"hugoGeneSymbol":"RNU2-72P","entrezGeneId":106480702},{"hugoGeneSymbol":"RNU2-7P","entrezGeneId":100873824},{"hugoGeneSymbol":"RNU2-8P","entrezGeneId":106480200},{"hugoGeneSymbol":"RNU2-9P","entrezGeneId":106481636},{"hugoGeneSymbol":"RNU4-1","entrezGeneId":26835},{"hugoGeneSymbol":"RNU4-10P","entrezGeneId":100862676},{"hugoGeneSymbol":"RNU4-11P","entrezGeneId":106481175},{"hugoGeneSymbol":"RNU4-12P","entrezGeneId":106479564},{"hugoGeneSymbol":"RNU4-13P","entrezGeneId":106481763},{"hugoGeneSymbol":"RNU4-14P","entrezGeneId":106481176},{"hugoGeneSymbol":"RNU4-15P","entrezGeneId":106479565},{"hugoGeneSymbol":"RNU4-16P","entrezGeneId":106479566},{"hugoGeneSymbol":"RNU4-17P","entrezGeneId":106481177},{"hugoGeneSymbol":"RNU4-18P","entrezGeneId":106480545},{"hugoGeneSymbol":"RNU4-2","entrezGeneId":26834},{"hugoGeneSymbol":"RNU4-20P","entrezGeneId":106479567},{"hugoGeneSymbol":"RNU4-21P","entrezGeneId":106481178},{"hugoGeneSymbol":"RNU4-22P","entrezGeneId":107057646},{"hugoGeneSymbol":"RNU4-23P","entrezGeneId":106479568},{"hugoGeneSymbol":"RNU4-24P","entrezGeneId":106481179},{"hugoGeneSymbol":"RNU4-25P","entrezGeneId":106481870},{"hugoGeneSymbol":"RNU4-26P","entrezGeneId":106479569},{"hugoGeneSymbol":"RNU4-27P","entrezGeneId":106481180},{"hugoGeneSymbol":"RNU4-28P","entrezGeneId":106479570},{"hugoGeneSymbol":"RNU4-29P","entrezGeneId":106481181},{"hugoGeneSymbol":"RNU4-30P","entrezGeneId":106479571},{"hugoGeneSymbol":"RNU4-31P","entrezGeneId":106480546},{"hugoGeneSymbol":"RNU4-32P","entrezGeneId":106479572},{"hugoGeneSymbol":"RNU4-33P","entrezGeneId":107080655},{"hugoGeneSymbol":"RNU4-34P","entrezGeneId":106480385},{"hugoGeneSymbol":"RNU4-35P","entrezGeneId":106481182},{"hugoGeneSymbol":"RNU4-36P","entrezGeneId":106479573},{"hugoGeneSymbol":"RNU4-37P","entrezGeneId":106481183},{"hugoGeneSymbol":"RNU4-38P","entrezGeneId":106479574},{"hugoGeneSymbol":"RNU4-39P","entrezGeneId":106479575},{"hugoGeneSymbol":"RNU4-3P","entrezGeneId":26841},{"hugoGeneSymbol":"RNU4-40P","entrezGeneId":106479576},{"hugoGeneSymbol":"RNU4-41P","entrezGeneId":106481184},{"hugoGeneSymbol":"RNU4-42P","entrezGeneId":106479577},{"hugoGeneSymbol":"RNU4-43P","entrezGeneId":106481185},{"hugoGeneSymbol":"RNU4-44P","entrezGeneId":106479578},{"hugoGeneSymbol":"RNU4-45P","entrezGeneId":106481186},{"hugoGeneSymbol":"RNU4-46P","entrezGeneId":107048985},{"hugoGeneSymbol":"RNU4-47P","entrezGeneId":106479579},{"hugoGeneSymbol":"RNU4-48P","entrezGeneId":106479580},{"hugoGeneSymbol":"RNU4-49P","entrezGeneId":106481187},{"hugoGeneSymbol":"RNU4-4P","entrezGeneId":26840},{"hugoGeneSymbol":"RNU4-50P","entrezGeneId":106481871},{"hugoGeneSymbol":"RNU4-51P","entrezGeneId":106479581},{"hugoGeneSymbol":"RNU4-52P","entrezGeneId":106481188},{"hugoGeneSymbol":"RNU4-53P","entrezGeneId":106479582},{"hugoGeneSymbol":"RNU4-54P","entrezGeneId":106479583},{"hugoGeneSymbol":"RNU4-55P","entrezGeneId":106481189},{"hugoGeneSymbol":"RNU4-56P","entrezGeneId":106480547},{"hugoGeneSymbol":"RNU4-57P","entrezGeneId":106479584},{"hugoGeneSymbol":"RNU4-58P","entrezGeneId":106481190},{"hugoGeneSymbol":"RNU4-59P","entrezGeneId":106481764},{"hugoGeneSymbol":"RNU4-5P","entrezGeneId":26839},{"hugoGeneSymbol":"RNU4-60P","entrezGeneId":106479585},{"hugoGeneSymbol":"RNU4-61P","entrezGeneId":106481191},{"hugoGeneSymbol":"RNU4-62P","entrezGeneId":106479586},{"hugoGeneSymbol":"RNU4-63P","entrezGeneId":106479587},{"hugoGeneSymbol":"RNU4-64P","entrezGeneId":106481872},{"hugoGeneSymbol":"RNU4-65P","entrezGeneId":106481192},{"hugoGeneSymbol":"RNU4-66P","entrezGeneId":106479588},{"hugoGeneSymbol":"RNU4-67P","entrezGeneId":106481193},{"hugoGeneSymbol":"RNU4-68P","entrezGeneId":106479589},{"hugoGeneSymbol":"RNU4-69P","entrezGeneId":106479590},{"hugoGeneSymbol":"RNU4-6P","entrezGeneId":26838},{"hugoGeneSymbol":"RNU4-70P","entrezGeneId":106480548},{"hugoGeneSymbol":"RNU4-71P","entrezGeneId":106481194},{"hugoGeneSymbol":"RNU4-72P","entrezGeneId":106479591},{"hugoGeneSymbol":"RNU4-73P","entrezGeneId":106481195},{"hugoGeneSymbol":"RNU4-74P","entrezGeneId":106479592},{"hugoGeneSymbol":"RNU4-75P","entrezGeneId":106479593},{"hugoGeneSymbol":"RNU4-76P","entrezGeneId":106480549},{"hugoGeneSymbol":"RNU4-77P","entrezGeneId":106481196},{"hugoGeneSymbol":"RNU4-78P","entrezGeneId":106479594},{"hugoGeneSymbol":"RNU4-79P","entrezGeneId":106481197},{"hugoGeneSymbol":"RNU4-7P","entrezGeneId":6069},{"hugoGeneSymbol":"RNU4-80P","entrezGeneId":106480386},{"hugoGeneSymbol":"RNU4-81P","entrezGeneId":106479595},{"hugoGeneSymbol":"RNU4-82P","entrezGeneId":106481198},{"hugoGeneSymbol":"RNU4-83P","entrezGeneId":106479596},{"hugoGeneSymbol":"RNU4-84P","entrezGeneId":106481873},{"hugoGeneSymbol":"RNU4-85P","entrezGeneId":106479597},{"hugoGeneSymbol":"RNU4-86P","entrezGeneId":106481199},{"hugoGeneSymbol":"RNU4-87P","entrezGeneId":106479598},{"hugoGeneSymbol":"RNU4-88P","entrezGeneId":106479599},{"hugoGeneSymbol":"RNU4-89P","entrezGeneId":106481200},{"hugoGeneSymbol":"RNU4-8P","entrezGeneId":6070},{"hugoGeneSymbol":"RNU4-90P","entrezGeneId":106479600},{"hugoGeneSymbol":"RNU4-91P","entrezGeneId":106481201},{"hugoGeneSymbol":"RNU4-92P","entrezGeneId":106479601},{"hugoGeneSymbol":"RNU4-9P","entrezGeneId":100862675},{"hugoGeneSymbol":"RNU4ATAC","entrezGeneId":100151683},{"hugoGeneSymbol":"RNU4ATAC10P","entrezGeneId":106479542},{"hugoGeneSymbol":"RNU4ATAC11P","entrezGeneId":106481158},{"hugoGeneSymbol":"RNU4ATAC12P","entrezGeneId":106481865},{"hugoGeneSymbol":"RNU4ATAC13P","entrezGeneId":106479543},{"hugoGeneSymbol":"RNU4ATAC14P","entrezGeneId":106481159},{"hugoGeneSymbol":"RNU4ATAC15P","entrezGeneId":106479544},{"hugoGeneSymbol":"RNU4ATAC16P","entrezGeneId":106481160},{"hugoGeneSymbol":"RNU4ATAC17P","entrezGeneId":106480696},{"hugoGeneSymbol":"RNU4ATAC18P","entrezGeneId":106481866},{"hugoGeneSymbol":"RNU4ATAC2P","entrezGeneId":100873889},{"hugoGeneSymbol":"RNU4ATAC3P","entrezGeneId":106480753},{"hugoGeneSymbol":"RNU4ATAC4P","entrezGeneId":106479539},{"hugoGeneSymbol":"RNU4ATAC5P","entrezGeneId":106481156},{"hugoGeneSymbol":"RNU4ATAC6P","entrezGeneId":106479540},{"hugoGeneSymbol":"RNU4ATAC7P","entrezGeneId":106480539},{"hugoGeneSymbol":"RNU4ATAC8P","entrezGeneId":106481157},{"hugoGeneSymbol":"RNU4ATAC9P","entrezGeneId":106479541},{"hugoGeneSymbol":"RNU5A-1","entrezGeneId":26831},{"hugoGeneSymbol":"RNU5A-2P","entrezGeneId":100873830},{"hugoGeneSymbol":"RNU5A-3P","entrezGeneId":100873831},{"hugoGeneSymbol":"RNU5A-4P","entrezGeneId":100873870},{"hugoGeneSymbol":"RNU5A-5P","entrezGeneId":100873835},{"hugoGeneSymbol":"RNU5A-6P","entrezGeneId":100873871},{"hugoGeneSymbol":"RNU5A-7P","entrezGeneId":100873872},{"hugoGeneSymbol":"RNU5A-8P","entrezGeneId":100873838},{"hugoGeneSymbol":"RNU5B-1","entrezGeneId":26832},{"hugoGeneSymbol":"RNU5B-2P","entrezGeneId":100147750},{"hugoGeneSymbol":"RNU5B-3P","entrezGeneId":100147751},{"hugoGeneSymbol":"RNU5B-4P","entrezGeneId":100147752},{"hugoGeneSymbol":"RNU5B-5P","entrezGeneId":100147753},{"hugoGeneSymbol":"RNU5B-6P","entrezGeneId":100147754},{"hugoGeneSymbol":"RNU5D-1","entrezGeneId":26830},{"hugoGeneSymbol":"RNU5D-2P","entrezGeneId":100873841},{"hugoGeneSymbol":"RNU5E-1","entrezGeneId":26829},{"hugoGeneSymbol":"RNU5E-10P","entrezGeneId":100873888},{"hugoGeneSymbol":"RNU5E-2P","entrezGeneId":100873827},{"hugoGeneSymbol":"RNU5E-3P","entrezGeneId":100873828},{"hugoGeneSymbol":"RNU5E-4P","entrezGeneId":100873829},{"hugoGeneSymbol":"RNU5E-5P","entrezGeneId":100873869},{"hugoGeneSymbol":"RNU5E-6P","entrezGeneId":100873832},{"hugoGeneSymbol":"RNU5E-7P","entrezGeneId":100873836},{"hugoGeneSymbol":"RNU5E-8P","entrezGeneId":100873837},{"hugoGeneSymbol":"RNU5E-9P","entrezGeneId":100873840},{"hugoGeneSymbol":"RNU5F-1","entrezGeneId":26828},{"hugoGeneSymbol":"RNU5F-2P","entrezGeneId":100873826},{"hugoGeneSymbol":"RNU5F-3P","entrezGeneId":100873866},{"hugoGeneSymbol":"RNU5F-4P","entrezGeneId":100873867},{"hugoGeneSymbol":"RNU5F-5P","entrezGeneId":100873868},{"hugoGeneSymbol":"RNU5F-6P","entrezGeneId":100873833},{"hugoGeneSymbol":"RNU5F-7P","entrezGeneId":100873834},{"hugoGeneSymbol":"RNU5F-8P","entrezGeneId":100873839},{"hugoGeneSymbol":"RNU6-1","entrezGeneId":26827},{"hugoGeneSymbol":"RNU6-1000P","entrezGeneId":106481496},{"hugoGeneSymbol":"RNU6-1001P","entrezGeneId":106480628},{"hugoGeneSymbol":"RNU6-1003P","entrezGeneId":106481778},{"hugoGeneSymbol":"RNU6-1004P","entrezGeneId":106480009},{"hugoGeneSymbol":"RNU6-1005P","entrezGeneId":106481497},{"hugoGeneSymbol":"RNU6-1006P","entrezGeneId":106480010},{"hugoGeneSymbol":"RNU6-1007P","entrezGeneId":106480629},{"hugoGeneSymbol":"RNU6-1008P","entrezGeneId":106481498},{"hugoGeneSymbol":"RNU6-1009P","entrezGeneId":106481499},{"hugoGeneSymbol":"RNU6-100P","entrezGeneId":106481208},{"hugoGeneSymbol":"RNU6-1010P","entrezGeneId":106481929},{"hugoGeneSymbol":"RNU6-1011P","entrezGeneId":106480011},{"hugoGeneSymbol":"RNU6-1012P","entrezGeneId":106481500},{"hugoGeneSymbol":"RNU6-1013P","entrezGeneId":106480012},{"hugoGeneSymbol":"RNU6-1014P","entrezGeneId":106480013},{"hugoGeneSymbol":"RNU6-1015P","entrezGeneId":106481501},{"hugoGeneSymbol":"RNU6-1016P","entrezGeneId":106480630},{"hugoGeneSymbol":"RNU6-1017P","entrezGeneId":106480014},{"hugoGeneSymbol":"RNU6-1018P","entrezGeneId":106481502},{"hugoGeneSymbol":"RNU6-1019P","entrezGeneId":106480015},{"hugoGeneSymbol":"RNU6-101P","entrezGeneId":106479611},{"hugoGeneSymbol":"RNU6-1020P","entrezGeneId":106481503},{"hugoGeneSymbol":"RNU6-1021P","entrezGeneId":106481930},{"hugoGeneSymbol":"RNU6-1022P","entrezGeneId":106480016},{"hugoGeneSymbol":"RNU6-1023P","entrezGeneId":106480017},{"hugoGeneSymbol":"RNU6-1024P","entrezGeneId":106481504},{"hugoGeneSymbol":"RNU6-1025P","entrezGeneId":106480018},{"hugoGeneSymbol":"RNU6-1026P","entrezGeneId":106480631},{"hugoGeneSymbol":"RNU6-1027P","entrezGeneId":106481505},{"hugoGeneSymbol":"RNU6-1028P","entrezGeneId":106480405},{"hugoGeneSymbol":"RNU6-1029P","entrezGeneId":106480019},{"hugoGeneSymbol":"RNU6-102P","entrezGeneId":106481209},{"hugoGeneSymbol":"RNU6-1031P","entrezGeneId":106480020},{"hugoGeneSymbol":"RNU6-1032P","entrezGeneId":106481506},{"hugoGeneSymbol":"RNU6-1034P","entrezGeneId":106480632},{"hugoGeneSymbol":"RNU6-1035P","entrezGeneId":106481507},{"hugoGeneSymbol":"RNU6-1036P","entrezGeneId":106480021},{"hugoGeneSymbol":"RNU6-1037P","entrezGeneId":106481508},{"hugoGeneSymbol":"RNU6-1038P","entrezGeneId":106480022},{"hugoGeneSymbol":"RNU6-1039P","entrezGeneId":106481931},{"hugoGeneSymbol":"RNU6-103P","entrezGeneId":106480552},{"hugoGeneSymbol":"RNU6-1040P","entrezGeneId":106480023},{"hugoGeneSymbol":"RNU6-1041P","entrezGeneId":106481509},{"hugoGeneSymbol":"RNU6-1042P","entrezGeneId":106480024},{"hugoGeneSymbol":"RNU6-1043P","entrezGeneId":106481510},{"hugoGeneSymbol":"RNU6-1044P","entrezGeneId":106480633},{"hugoGeneSymbol":"RNU6-1045P","entrezGeneId":106480025},{"hugoGeneSymbol":"RNU6-1046P","entrezGeneId":106480026},{"hugoGeneSymbol":"RNU6-1047P","entrezGeneId":106481511},{"hugoGeneSymbol":"RNU6-1048P","entrezGeneId":106480027},{"hugoGeneSymbol":"RNU6-1049P","entrezGeneId":106481779},{"hugoGeneSymbol":"RNU6-104P","entrezGeneId":106479612},{"hugoGeneSymbol":"RNU6-1050P","entrezGeneId":106481512},{"hugoGeneSymbol":"RNU6-1051P","entrezGeneId":106481932},{"hugoGeneSymbol":"RNU6-1052P","entrezGeneId":106480028},{"hugoGeneSymbol":"RNU6-1053P","entrezGeneId":106481513},{"hugoGeneSymbol":"RNU6-1054P","entrezGeneId":106480029},{"hugoGeneSymbol":"RNU6-1055P","entrezGeneId":107105256},{"hugoGeneSymbol":"RNU6-1056P","entrezGeneId":106481514},{"hugoGeneSymbol":"RNU6-1057P","entrezGeneId":106480030},{"hugoGeneSymbol":"RNU6-1059P","entrezGeneId":106480031},{"hugoGeneSymbol":"RNU6-105P","entrezGeneId":106481210},{"hugoGeneSymbol":"RNU6-1060P","entrezGeneId":106480032},{"hugoGeneSymbol":"RNU6-1061P","entrezGeneId":106480033},{"hugoGeneSymbol":"RNU6-1062P","entrezGeneId":106480634},{"hugoGeneSymbol":"RNU6-1064P","entrezGeneId":106481515},{"hugoGeneSymbol":"RNU6-1065P","entrezGeneId":106480034},{"hugoGeneSymbol":"RNU6-1066P","entrezGeneId":106480035},{"hugoGeneSymbol":"RNU6-1067P","entrezGeneId":106481516},{"hugoGeneSymbol":"RNU6-1068P","entrezGeneId":106481933},{"hugoGeneSymbol":"RNU6-1069P","entrezGeneId":106480036},{"hugoGeneSymbol":"RNU6-106P","entrezGeneId":106479613},{"hugoGeneSymbol":"RNU6-1071P","entrezGeneId":106481517},{"hugoGeneSymbol":"RNU6-1072P","entrezGeneId":106480037},{"hugoGeneSymbol":"RNU6-1073P","entrezGeneId":106481518},{"hugoGeneSymbol":"RNU6-1074P","entrezGeneId":106480635},{"hugoGeneSymbol":"RNU6-1075P","entrezGeneId":106480406},{"hugoGeneSymbol":"RNU6-1076P","entrezGeneId":106480038},{"hugoGeneSymbol":"RNU6-1077P","entrezGeneId":106480039},{"hugoGeneSymbol":"RNU6-1078P","entrezGeneId":106481519},{"hugoGeneSymbol":"RNU6-1079P","entrezGeneId":106480040},{"hugoGeneSymbol":"RNU6-107P","entrezGeneId":106479614},{"hugoGeneSymbol":"RNU6-1080P","entrezGeneId":106481520},{"hugoGeneSymbol":"RNU6-1081P","entrezGeneId":106480636},{"hugoGeneSymbol":"RNU6-1082P","entrezGeneId":106480041},{"hugoGeneSymbol":"RNU6-1083P","entrezGeneId":106481521},{"hugoGeneSymbol":"RNU6-1084P","entrezGeneId":106480042},{"hugoGeneSymbol":"RNU6-1085P","entrezGeneId":106480043},{"hugoGeneSymbol":"RNU6-1086P","entrezGeneId":106481934},{"hugoGeneSymbol":"RNU6-1087P","entrezGeneId":106481522},{"hugoGeneSymbol":"RNU6-1088P","entrezGeneId":106480044},{"hugoGeneSymbol":"RNU6-1089P","entrezGeneId":106481523},{"hugoGeneSymbol":"RNU6-108P","entrezGeneId":106481875},{"hugoGeneSymbol":"RNU6-1090P","entrezGeneId":106480045},{"hugoGeneSymbol":"RNU6-1091P","entrezGeneId":106480637},{"hugoGeneSymbol":"RNU6-1092P","entrezGeneId":106480046},{"hugoGeneSymbol":"RNU6-1093P","entrezGeneId":106481524},{"hugoGeneSymbol":"RNU6-1094P","entrezGeneId":106480047},{"hugoGeneSymbol":"RNU6-1095P","entrezGeneId":106481525},{"hugoGeneSymbol":"RNU6-1096P","entrezGeneId":106480700},{"hugoGeneSymbol":"RNU6-1097P","entrezGeneId":106480048},{"hugoGeneSymbol":"RNU6-1098P","entrezGeneId":106481935},{"hugoGeneSymbol":"RNU6-1099P","entrezGeneId":106481526},{"hugoGeneSymbol":"RNU6-109P","entrezGeneId":106481211},{"hugoGeneSymbol":"RNU6-10P","entrezGeneId":100873745},{"hugoGeneSymbol":"RNU6-1100P","entrezGeneId":106480049},{"hugoGeneSymbol":"RNU6-1101P","entrezGeneId":106480050},{"hugoGeneSymbol":"RNU6-1102P","entrezGeneId":106481527},{"hugoGeneSymbol":"RNU6-1103P","entrezGeneId":106480051},{"hugoGeneSymbol":"RNU6-1104P","entrezGeneId":106481528},{"hugoGeneSymbol":"RNU6-1105P","entrezGeneId":106480052},{"hugoGeneSymbol":"RNU6-1106P","entrezGeneId":106480053},{"hugoGeneSymbol":"RNU6-1107P","entrezGeneId":106481529},{"hugoGeneSymbol":"RNU6-1108P","entrezGeneId":107105259},{"hugoGeneSymbol":"RNU6-1109P","entrezGeneId":106480054},{"hugoGeneSymbol":"RNU6-110P","entrezGeneId":106479615},{"hugoGeneSymbol":"RNU6-1110P","entrezGeneId":106480638},{"hugoGeneSymbol":"RNU6-1111P","entrezGeneId":106481530},{"hugoGeneSymbol":"RNU6-1112P","entrezGeneId":106480055},{"hugoGeneSymbol":"RNU6-1113P","entrezGeneId":106480056},{"hugoGeneSymbol":"RNU6-1114P","entrezGeneId":106481531},{"hugoGeneSymbol":"RNU6-1115P","entrezGeneId":106480639},{"hugoGeneSymbol":"RNU6-1116P","entrezGeneId":106480057},{"hugoGeneSymbol":"RNU6-1117P","entrezGeneId":106481532},{"hugoGeneSymbol":"RNU6-1118P","entrezGeneId":106480058},{"hugoGeneSymbol":"RNU6-1119P","entrezGeneId":106481533},{"hugoGeneSymbol":"RNU6-111P","entrezGeneId":106481212},{"hugoGeneSymbol":"RNU6-1120P","entrezGeneId":106480059},{"hugoGeneSymbol":"RNU6-1121P","entrezGeneId":106481780},{"hugoGeneSymbol":"RNU6-1122P","entrezGeneId":106481936},{"hugoGeneSymbol":"RNU6-1123P","entrezGeneId":106480060},{"hugoGeneSymbol":"RNU6-1124P","entrezGeneId":106481534},{"hugoGeneSymbol":"RNU6-1125P","entrezGeneId":106480061},{"hugoGeneSymbol":"RNU6-1126P","entrezGeneId":106481535},{"hugoGeneSymbol":"RNU6-1127P","entrezGeneId":106480640},{"hugoGeneSymbol":"RNU6-1128P","entrezGeneId":106480062},{"hugoGeneSymbol":"RNU6-1129P","entrezGeneId":106481536},{"hugoGeneSymbol":"RNU6-112P","entrezGeneId":107057647},{"hugoGeneSymbol":"RNU6-1130P","entrezGeneId":106480063},{"hugoGeneSymbol":"RNU6-1131P","entrezGeneId":106480064},{"hugoGeneSymbol":"RNU6-1132P","entrezGeneId":106481937},{"hugoGeneSymbol":"RNU6-1133P","entrezGeneId":106481537},{"hugoGeneSymbol":"RNU6-1134P","entrezGeneId":106480065},{"hugoGeneSymbol":"RNU6-1135P","entrezGeneId":106481538},{"hugoGeneSymbol":"RNU6-1136P","entrezGeneId":106480066},{"hugoGeneSymbol":"RNU6-1137P","entrezGeneId":106480067},{"hugoGeneSymbol":"RNU6-1138P","entrezGeneId":106480641},{"hugoGeneSymbol":"RNU6-1139P","entrezGeneId":106481539},{"hugoGeneSymbol":"RNU6-113P","entrezGeneId":106479616},{"hugoGeneSymbol":"RNU6-1140P","entrezGeneId":106480068},{"hugoGeneSymbol":"RNU6-1141P","entrezGeneId":106481540},{"hugoGeneSymbol":"RNU6-1143P","entrezGeneId":106480069},{"hugoGeneSymbol":"RNU6-1144P","entrezGeneId":106481938},{"hugoGeneSymbol":"RNU6-1145P","entrezGeneId":106481541},{"hugoGeneSymbol":"RNU6-1146P","entrezGeneId":106480070},{"hugoGeneSymbol":"RNU6-1147P","entrezGeneId":106480071},{"hugoGeneSymbol":"RNU6-1148P","entrezGeneId":106480642},{"hugoGeneSymbol":"RNU6-1149P","entrezGeneId":106481542},{"hugoGeneSymbol":"RNU6-114P","entrezGeneId":106481765},{"hugoGeneSymbol":"RNU6-1150P","entrezGeneId":106480072},{"hugoGeneSymbol":"RNU6-1151P","entrezGeneId":106481543},{"hugoGeneSymbol":"RNU6-1152P","entrezGeneId":106480073},{"hugoGeneSymbol":"RNU6-1153P","entrezGeneId":106480643},{"hugoGeneSymbol":"RNU6-1154P","entrezGeneId":106480074},{"hugoGeneSymbol":"RNU6-1155P","entrezGeneId":106481544},{"hugoGeneSymbol":"RNU6-1156P","entrezGeneId":106480075},{"hugoGeneSymbol":"RNU6-1157P","entrezGeneId":106481545},{"hugoGeneSymbol":"RNU6-1158P","entrezGeneId":106480076},{"hugoGeneSymbol":"RNU6-1159P","entrezGeneId":106481939},{"hugoGeneSymbol":"RNU6-115P","entrezGeneId":106479617},{"hugoGeneSymbol":"RNU6-1160P","entrezGeneId":106481546},{"hugoGeneSymbol":"RNU6-1161P","entrezGeneId":106480077},{"hugoGeneSymbol":"RNU6-1162P","entrezGeneId":106480078},{"hugoGeneSymbol":"RNU6-1163P","entrezGeneId":106481547},{"hugoGeneSymbol":"RNU6-1164P","entrezGeneId":106480644},{"hugoGeneSymbol":"RNU6-1165P","entrezGeneId":106480079},{"hugoGeneSymbol":"RNU6-1167P","entrezGeneId":106480407},{"hugoGeneSymbol":"RNU6-1168P","entrezGeneId":106481548},{"hugoGeneSymbol":"RNU6-1169P","entrezGeneId":106480080},{"hugoGeneSymbol":"RNU6-116P","entrezGeneId":106480553},{"hugoGeneSymbol":"RNU6-1170P","entrezGeneId":106480081},{"hugoGeneSymbol":"RNU6-1171P","entrezGeneId":106481940},{"hugoGeneSymbol":"RNU6-1172P","entrezGeneId":106481549},{"hugoGeneSymbol":"RNU6-1174P","entrezGeneId":106481550},{"hugoGeneSymbol":"RNU6-1175P","entrezGeneId":106480082},{"hugoGeneSymbol":"RNU6-1176P","entrezGeneId":106481551},{"hugoGeneSymbol":"RNU6-1177P","entrezGeneId":106480645},{"hugoGeneSymbol":"RNU6-1178P","entrezGeneId":106480083},{"hugoGeneSymbol":"RNU6-1179P","entrezGeneId":106480084},{"hugoGeneSymbol":"RNU6-117P","entrezGeneId":106481213},{"hugoGeneSymbol":"RNU6-1180P","entrezGeneId":106481552},{"hugoGeneSymbol":"RNU6-1181P","entrezGeneId":106480085},{"hugoGeneSymbol":"RNU6-1183P","entrezGeneId":106481941},{"hugoGeneSymbol":"RNU6-1184P","entrezGeneId":106481553},{"hugoGeneSymbol":"RNU6-1186P","entrezGeneId":106480086},{"hugoGeneSymbol":"RNU6-1187P","entrezGeneId":106481554},{"hugoGeneSymbol":"RNU6-1188P","entrezGeneId":106480408},{"hugoGeneSymbol":"RNU6-1189P","entrezGeneId":106480646},{"hugoGeneSymbol":"RNU6-118P","entrezGeneId":106479618},{"hugoGeneSymbol":"RNU6-1190P","entrezGeneId":106480087},{"hugoGeneSymbol":"RNU6-1191P","entrezGeneId":106481555},{"hugoGeneSymbol":"RNU6-1192P","entrezGeneId":106480088},{"hugoGeneSymbol":"RNU6-1193P","entrezGeneId":106481556},{"hugoGeneSymbol":"RNU6-1194P","entrezGeneId":106481557},{"hugoGeneSymbol":"RNU6-1195P","entrezGeneId":106480647},{"hugoGeneSymbol":"RNU6-1196P","entrezGeneId":106480089},{"hugoGeneSymbol":"RNU6-1197P","entrezGeneId":106481558},{"hugoGeneSymbol":"RNU6-1198P","entrezGeneId":106480090},{"hugoGeneSymbol":"RNU6-1199P","entrezGeneId":106480091},{"hugoGeneSymbol":"RNU6-119P","entrezGeneId":106481214},{"hugoGeneSymbol":"RNU6-11P","entrezGeneId":106478915},{"hugoGeneSymbol":"RNU6-1200P","entrezGeneId":106481559},{"hugoGeneSymbol":"RNU6-1201P","entrezGeneId":106481942},{"hugoGeneSymbol":"RNU6-1203P","entrezGeneId":106480092},{"hugoGeneSymbol":"RNU6-1204P","entrezGeneId":106481560},{"hugoGeneSymbol":"RNU6-1205P","entrezGeneId":106480093},{"hugoGeneSymbol":"RNU6-1206P","entrezGeneId":106481561},{"hugoGeneSymbol":"RNU6-1207P","entrezGeneId":106480648},{"hugoGeneSymbol":"RNU6-1208P","entrezGeneId":106480094},{"hugoGeneSymbol":"RNU6-1209P","entrezGeneId":106480095},{"hugoGeneSymbol":"RNU6-120P","entrezGeneId":106479619},{"hugoGeneSymbol":"RNU6-1210P","entrezGeneId":106481562},{"hugoGeneSymbol":"RNU6-1211P","entrezGeneId":106480096},{"hugoGeneSymbol":"RNU6-1212P","entrezGeneId":106481943},{"hugoGeneSymbol":"RNU6-1213P","entrezGeneId":106481563},{"hugoGeneSymbol":"RNU6-1214P","entrezGeneId":106481781},{"hugoGeneSymbol":"RNU6-1215P","entrezGeneId":106480097},{"hugoGeneSymbol":"RNU6-1216P","entrezGeneId":106480098},{"hugoGeneSymbol":"RNU6-1217P","entrezGeneId":106481564},{"hugoGeneSymbol":"RNU6-1218P","entrezGeneId":106480099},{"hugoGeneSymbol":"RNU6-1219P","entrezGeneId":106480649},{"hugoGeneSymbol":"RNU6-121P","entrezGeneId":106481215},{"hugoGeneSymbol":"RNU6-1220P","entrezGeneId":106481565},{"hugoGeneSymbol":"RNU6-1222P","entrezGeneId":106480100},{"hugoGeneSymbol":"RNU6-1223P","entrezGeneId":106481566},{"hugoGeneSymbol":"RNU6-1224P","entrezGeneId":106480101},{"hugoGeneSymbol":"RNU6-1225P","entrezGeneId":106480650},{"hugoGeneSymbol":"RNU6-1226P","entrezGeneId":106480102},{"hugoGeneSymbol":"RNU6-1227P","entrezGeneId":106481567},{"hugoGeneSymbol":"RNU6-1228P","entrezGeneId":106480103},{"hugoGeneSymbol":"RNU6-1229P","entrezGeneId":106481568},{"hugoGeneSymbol":"RNU6-122P","entrezGeneId":106481876},{"hugoGeneSymbol":"RNU6-1230P","entrezGeneId":106481944},{"hugoGeneSymbol":"RNU6-1231P","entrezGeneId":106480104},{"hugoGeneSymbol":"RNU6-1232P","entrezGeneId":106480105},{"hugoGeneSymbol":"RNU6-1233P","entrezGeneId":106481569},{"hugoGeneSymbol":"RNU6-1234P","entrezGeneId":106480106},{"hugoGeneSymbol":"RNU6-1235P","entrezGeneId":106480701},{"hugoGeneSymbol":"RNU6-1236P","entrezGeneId":106481570},{"hugoGeneSymbol":"RNU6-1237P","entrezGeneId":106480651},{"hugoGeneSymbol":"RNU6-1238P","entrezGeneId":106480107},{"hugoGeneSymbol":"RNU6-1239P","entrezGeneId":106481571},{"hugoGeneSymbol":"RNU6-123P","entrezGeneId":106479620},{"hugoGeneSymbol":"RNU6-1240P","entrezGeneId":106866914},{"hugoGeneSymbol":"RNU6-1241P","entrezGeneId":106481572},{"hugoGeneSymbol":"RNU6-1242P","entrezGeneId":106480108},{"hugoGeneSymbol":"RNU6-1243P","entrezGeneId":106481573},{"hugoGeneSymbol":"RNU6-1244P","entrezGeneId":106481945},{"hugoGeneSymbol":"RNU6-1245P","entrezGeneId":106480109},{"hugoGeneSymbol":"RNU6-1246P","entrezGeneId":106480110},{"hugoGeneSymbol":"RNU6-1247P","entrezGeneId":106481574},{"hugoGeneSymbol":"RNU6-1248P","entrezGeneId":106480111},{"hugoGeneSymbol":"RNU6-1249P","entrezGeneId":106480652},{"hugoGeneSymbol":"RNU6-1250P","entrezGeneId":106481575},{"hugoGeneSymbol":"RNU6-1251P","entrezGeneId":106480112},{"hugoGeneSymbol":"RNU6-1252P","entrezGeneId":106480113},{"hugoGeneSymbol":"RNU6-1254P","entrezGeneId":106481576},{"hugoGeneSymbol":"RNU6-1255P","entrezGeneId":106481946},{"hugoGeneSymbol":"RNU6-1256P","entrezGeneId":106480114},{"hugoGeneSymbol":"RNU6-1257P","entrezGeneId":106481577},{"hugoGeneSymbol":"RNU6-1258P","entrezGeneId":106480115},{"hugoGeneSymbol":"RNU6-125P","entrezGeneId":106479621},{"hugoGeneSymbol":"RNU6-1260P","entrezGeneId":106481578},{"hugoGeneSymbol":"RNU6-1261P","entrezGeneId":106480116},{"hugoGeneSymbol":"RNU6-1262P","entrezGeneId":106480409},{"hugoGeneSymbol":"RNU6-1263P","entrezGeneId":106480653},{"hugoGeneSymbol":"RNU6-1264P","entrezGeneId":106480117},{"hugoGeneSymbol":"RNU6-1265P","entrezGeneId":106481579},{"hugoGeneSymbol":"RNU6-1266P","entrezGeneId":106480118},{"hugoGeneSymbol":"RNU6-1267P","entrezGeneId":106481580},{"hugoGeneSymbol":"RNU6-1268P","entrezGeneId":106480654},{"hugoGeneSymbol":"RNU6-1269P","entrezGeneId":106480119},{"hugoGeneSymbol":"RNU6-126P","entrezGeneId":106479622},{"hugoGeneSymbol":"RNU6-1270P","entrezGeneId":106481581},{"hugoGeneSymbol":"RNU6-1271P","entrezGeneId":106480120},{"hugoGeneSymbol":"RNU6-1272P","entrezGeneId":106480121},{"hugoGeneSymbol":"RNU6-1273P","entrezGeneId":106481947},{"hugoGeneSymbol":"RNU6-1274P","entrezGeneId":106481582},{"hugoGeneSymbol":"RNU6-1275P","entrezGeneId":106480122},{"hugoGeneSymbol":"RNU6-1276P","entrezGeneId":106481583},{"hugoGeneSymbol":"RNU6-1277P","entrezGeneId":106480123},{"hugoGeneSymbol":"RNU6-1278P","entrezGeneId":106480124},{"hugoGeneSymbol":"RNU6-1279P","entrezGeneId":106480655},{"hugoGeneSymbol":"RNU6-127P","entrezGeneId":106480554},{"hugoGeneSymbol":"RNU6-1280P","entrezGeneId":106481584},{"hugoGeneSymbol":"RNU6-1281P","entrezGeneId":106480125},{"hugoGeneSymbol":"RNU6-1282P","entrezGeneId":106481585},{"hugoGeneSymbol":"RNU6-1283P","entrezGeneId":106481782},{"hugoGeneSymbol":"RNU6-1284P","entrezGeneId":106480126},{"hugoGeneSymbol":"RNU6-1285P","entrezGeneId":106481948},{"hugoGeneSymbol":"RNU6-1286P","entrezGeneId":106481586},{"hugoGeneSymbol":"RNU6-1287P","entrezGeneId":106480127},{"hugoGeneSymbol":"RNU6-1288P","entrezGeneId":106480128},{"hugoGeneSymbol":"RNU6-1289P","entrezGeneId":106481587},{"hugoGeneSymbol":"RNU6-128P","entrezGeneId":106481217},{"hugoGeneSymbol":"RNU6-1290P","entrezGeneId":106480129},{"hugoGeneSymbol":"RNU6-1291P","entrezGeneId":106481588},{"hugoGeneSymbol":"RNU6-1292P","entrezGeneId":106480656},{"hugoGeneSymbol":"RNU6-1293P","entrezGeneId":106480130},{"hugoGeneSymbol":"RNU6-1294P","entrezGeneId":106480131},{"hugoGeneSymbol":"RNU6-1296P","entrezGeneId":106480132},{"hugoGeneSymbol":"RNU6-1297P","entrezGeneId":106480657},{"hugoGeneSymbol":"RNU6-1298P","entrezGeneId":106481590},{"hugoGeneSymbol":"RNU6-1299P","entrezGeneId":106480133},{"hugoGeneSymbol":"RNU6-129P","entrezGeneId":106479623},{"hugoGeneSymbol":"RNU6-12P","entrezGeneId":106481973},{"hugoGeneSymbol":"RNU6-1300P","entrezGeneId":106480134},{"hugoGeneSymbol":"RNU6-1301P","entrezGeneId":106481591},{"hugoGeneSymbol":"RNU6-1303P","entrezGeneId":106481949},{"hugoGeneSymbol":"RNU6-1304P","entrezGeneId":106480135},{"hugoGeneSymbol":"RNU6-1305P","entrezGeneId":106481592},{"hugoGeneSymbol":"RNU6-1306P","entrezGeneId":106480136},{"hugoGeneSymbol":"RNU6-1307P","entrezGeneId":106481593},{"hugoGeneSymbol":"RNU6-1308P","entrezGeneId":106480137},{"hugoGeneSymbol":"RNU6-1309P","entrezGeneId":106480410},{"hugoGeneSymbol":"RNU6-130P","entrezGeneId":106481218},{"hugoGeneSymbol":"RNU6-1310P","entrezGeneId":106480658},{"hugoGeneSymbol":"RNU6-1311P","entrezGeneId":106480138},{"hugoGeneSymbol":"RNU6-1312P","entrezGeneId":106481594},{"hugoGeneSymbol":"RNU6-1313P","entrezGeneId":106480139},{"hugoGeneSymbol":"RNU6-1314P","entrezGeneId":106481595},{"hugoGeneSymbol":"RNU6-1315P","entrezGeneId":106481950},{"hugoGeneSymbol":"RNU6-1316P","entrezGeneId":106480140},{"hugoGeneSymbol":"RNU6-1317P","entrezGeneId":106481596},{"hugoGeneSymbol":"RNU6-1318P","entrezGeneId":106480141},{"hugoGeneSymbol":"RNU6-1319P","entrezGeneId":106480142},{"hugoGeneSymbol":"RNU6-131P","entrezGeneId":106479624},{"hugoGeneSymbol":"RNU6-1320P","entrezGeneId":106480659},{"hugoGeneSymbol":"RNU6-1321P","entrezGeneId":106481597},{"hugoGeneSymbol":"RNU6-1322P","entrezGeneId":106480143},{"hugoGeneSymbol":"RNU6-1323P","entrezGeneId":106481598},{"hugoGeneSymbol":"RNU6-1324P","entrezGeneId":106480144},{"hugoGeneSymbol":"RNU6-1325P","entrezGeneId":106480145},{"hugoGeneSymbol":"RNU6-1326P","entrezGeneId":106481951},{"hugoGeneSymbol":"RNU6-1327P","entrezGeneId":106481599},{"hugoGeneSymbol":"RNU6-1328P","entrezGeneId":106480146},{"hugoGeneSymbol":"RNU6-1329P","entrezGeneId":106481600},{"hugoGeneSymbol":"RNU6-132P","entrezGeneId":106481219},{"hugoGeneSymbol":"RNU6-1330P","entrezGeneId":106480411},{"hugoGeneSymbol":"RNU6-1331P","entrezGeneId":106480147},{"hugoGeneSymbol":"RNU6-1332P","entrezGeneId":106480660},{"hugoGeneSymbol":"RNU6-1333P","entrezGeneId":106481601},{"hugoGeneSymbol":"RNU6-1334P","entrezGeneId":106480148},{"hugoGeneSymbol":"RNU6-1335P","entrezGeneId":106480149},{"hugoGeneSymbol":"RNU6-1336P","entrezGeneId":106480661},{"hugoGeneSymbol":"RNU6-1337P","entrezGeneId":106481602},{"hugoGeneSymbol":"RNU6-1338P","entrezGeneId":106480150},{"hugoGeneSymbol":"RNU6-1339P","entrezGeneId":106481603},{"hugoGeneSymbol":"RNU6-133P","entrezGeneId":106481877},{"hugoGeneSymbol":"RNU6-1340P","entrezGeneId":106480151},{"hugoGeneSymbol":"RNU6-135P","entrezGeneId":106479625},{"hugoGeneSymbol":"RNU6-136P","entrezGeneId":106479626},{"hugoGeneSymbol":"RNU6-137P","entrezGeneId":106481220},{"hugoGeneSymbol":"RNU6-138P","entrezGeneId":106479627},{"hugoGeneSymbol":"RNU6-139P","entrezGeneId":106481977},{"hugoGeneSymbol":"RNU6-13P","entrezGeneId":106480423},{"hugoGeneSymbol":"RNU6-140P","entrezGeneId":106481221},{"hugoGeneSymbol":"RNU6-141P","entrezGeneId":106480555},{"hugoGeneSymbol":"RNU6-142P","entrezGeneId":106479628},{"hugoGeneSymbol":"RNU6-143P","entrezGeneId":106479629},{"hugoGeneSymbol":"RNU6-144P","entrezGeneId":106481222},{"hugoGeneSymbol":"RNU6-145P","entrezGeneId":106479630},{"hugoGeneSymbol":"RNU6-146P","entrezGeneId":106865372},{"hugoGeneSymbol":"RNU6-147P","entrezGeneId":106480556},{"hugoGeneSymbol":"RNU6-148P","entrezGeneId":106479631},{"hugoGeneSymbol":"RNU6-14P","entrezGeneId":100873746},{"hugoGeneSymbol":"RNU6-150P","entrezGeneId":106479632},{"hugoGeneSymbol":"RNU6-151P","entrezGeneId":106479633},{"hugoGeneSymbol":"RNU6-152P","entrezGeneId":106481223},{"hugoGeneSymbol":"RNU6-153P","entrezGeneId":106479634},{"hugoGeneSymbol":"RNU6-154P","entrezGeneId":106481878},{"hugoGeneSymbol":"RNU6-155P","entrezGeneId":106481224},{"hugoGeneSymbol":"RNU6-156P","entrezGeneId":106479635},{"hugoGeneSymbol":"RNU6-157P","entrezGeneId":106479636},{"hugoGeneSymbol":"RNU6-158P","entrezGeneId":106481225},{"hugoGeneSymbol":"RNU6-159P","entrezGeneId":106480557},{"hugoGeneSymbol":"RNU6-15P","entrezGeneId":100302741},{"hugoGeneSymbol":"RNU6-160P","entrezGeneId":106479637},{"hugoGeneSymbol":"RNU6-161P","entrezGeneId":106480387},{"hugoGeneSymbol":"RNU6-162P","entrezGeneId":106481226},{"hugoGeneSymbol":"RNU6-163P","entrezGeneId":106479638},{"hugoGeneSymbol":"RNU6-164P","entrezGeneId":106479639},{"hugoGeneSymbol":"RNU6-165P","entrezGeneId":106481227},{"hugoGeneSymbol":"RNU6-166P","entrezGeneId":106481879},{"hugoGeneSymbol":"RNU6-167P","entrezGeneId":106481228},{"hugoGeneSymbol":"RNU6-168P","entrezGeneId":106479640},{"hugoGeneSymbol":"RNU6-169P","entrezGeneId":106481229},{"hugoGeneSymbol":"RNU6-16P","entrezGeneId":100873753},{"hugoGeneSymbol":"RNU6-170P","entrezGeneId":106479641},{"hugoGeneSymbol":"RNU6-171P","entrezGeneId":106481230},{"hugoGeneSymbol":"RNU6-172P","entrezGeneId":106479642},{"hugoGeneSymbol":"RNU6-173P","entrezGeneId":106479643},{"hugoGeneSymbol":"RNU6-174P","entrezGeneId":106481231},{"hugoGeneSymbol":"RNU6-175P","entrezGeneId":106480558},{"hugoGeneSymbol":"RNU6-176P","entrezGeneId":106479644},{"hugoGeneSymbol":"RNU6-177P","entrezGeneId":106481232},{"hugoGeneSymbol":"RNU6-178P","entrezGeneId":106479645},{"hugoGeneSymbol":"RNU6-179P","entrezGeneId":106479646},{"hugoGeneSymbol":"RNU6-17P","entrezGeneId":106480705},{"hugoGeneSymbol":"RNU6-180P","entrezGeneId":106481233},{"hugoGeneSymbol":"RNU6-181P","entrezGeneId":106480559},{"hugoGeneSymbol":"RNU6-182P","entrezGeneId":106479647},{"hugoGeneSymbol":"RNU6-183P","entrezGeneId":106481234},{"hugoGeneSymbol":"RNU6-184P","entrezGeneId":106479648},{"hugoGeneSymbol":"RNU6-185P","entrezGeneId":106481235},{"hugoGeneSymbol":"RNU6-187P","entrezGeneId":106481880},{"hugoGeneSymbol":"RNU6-188P","entrezGeneId":106479649},{"hugoGeneSymbol":"RNU6-189P","entrezGeneId":106479650},{"hugoGeneSymbol":"RNU6-18P","entrezGeneId":106478916},{"hugoGeneSymbol":"RNU6-190P","entrezGeneId":106481236},{"hugoGeneSymbol":"RNU6-191P","entrezGeneId":106479651},{"hugoGeneSymbol":"RNU6-192P","entrezGeneId":106481237},{"hugoGeneSymbol":"RNU6-193P","entrezGeneId":106480560},{"hugoGeneSymbol":"RNU6-194P","entrezGeneId":106479652},{"hugoGeneSymbol":"RNU6-195P","entrezGeneId":106479653},{"hugoGeneSymbol":"RNU6-196P","entrezGeneId":106481238},{"hugoGeneSymbol":"RNU6-197P","entrezGeneId":106479654},{"hugoGeneSymbol":"RNU6-198P","entrezGeneId":106481239},{"hugoGeneSymbol":"RNU6-199P","entrezGeneId":106481881},{"hugoGeneSymbol":"RNU6-19P","entrezGeneId":100873754},{"hugoGeneSymbol":"RNU6-2","entrezGeneId":103625684},{"hugoGeneSymbol":"RNU6-200P","entrezGeneId":106479655},{"hugoGeneSymbol":"RNU6-201P","entrezGeneId":106481240},{"hugoGeneSymbol":"RNU6-202P","entrezGeneId":106479656},{"hugoGeneSymbol":"RNU6-203P","entrezGeneId":106479657},{"hugoGeneSymbol":"RNU6-204P","entrezGeneId":106481241},{"hugoGeneSymbol":"RNU6-205P","entrezGeneId":106633815},{"hugoGeneSymbol":"RNU6-206P","entrezGeneId":106481882},{"hugoGeneSymbol":"RNU6-207P","entrezGeneId":106481766},{"hugoGeneSymbol":"RNU6-208P","entrezGeneId":106479658},{"hugoGeneSymbol":"RNU6-209P","entrezGeneId":106481242},{"hugoGeneSymbol":"RNU6-20P","entrezGeneId":106480706},{"hugoGeneSymbol":"RNU6-210P","entrezGeneId":106479659},{"hugoGeneSymbol":"RNU6-211P","entrezGeneId":106479660},{"hugoGeneSymbol":"RNU6-212P","entrezGeneId":106481243},{"hugoGeneSymbol":"RNU6-213P","entrezGeneId":106481244},{"hugoGeneSymbol":"RNU6-214P","entrezGeneId":106479661},{"hugoGeneSymbol":"RNU6-215P","entrezGeneId":106481245},{"hugoGeneSymbol":"RNU6-216P","entrezGeneId":106479662},{"hugoGeneSymbol":"RNU6-217P","entrezGeneId":106481246},{"hugoGeneSymbol":"RNU6-218P","entrezGeneId":106479663},{"hugoGeneSymbol":"RNU6-219P","entrezGeneId":106479664},{"hugoGeneSymbol":"RNU6-21P","entrezGeneId":100302738},{"hugoGeneSymbol":"RNU6-220P","entrezGeneId":106481247},{"hugoGeneSymbol":"RNU6-221P","entrezGeneId":106480561},{"hugoGeneSymbol":"RNU6-222P","entrezGeneId":106479665},{"hugoGeneSymbol":"RNU6-223P","entrezGeneId":106481248},{"hugoGeneSymbol":"RNU6-224P","entrezGeneId":106479666},{"hugoGeneSymbol":"RNU6-225P","entrezGeneId":106479667},{"hugoGeneSymbol":"RNU6-226P","entrezGeneId":106481249},{"hugoGeneSymbol":"RNU6-227P","entrezGeneId":106481883},{"hugoGeneSymbol":"RNU6-228P","entrezGeneId":106479668},{"hugoGeneSymbol":"RNU6-229P","entrezGeneId":106481250},{"hugoGeneSymbol":"RNU6-22P","entrezGeneId":106478917},{"hugoGeneSymbol":"RNU6-230P","entrezGeneId":106479669},{"hugoGeneSymbol":"RNU6-231P","entrezGeneId":106481251},{"hugoGeneSymbol":"RNU6-232P","entrezGeneId":106480388},{"hugoGeneSymbol":"RNU6-233P","entrezGeneId":106480562},{"hugoGeneSymbol":"RNU6-234P","entrezGeneId":106479670},{"hugoGeneSymbol":"RNU6-235P","entrezGeneId":106479671},{"hugoGeneSymbol":"RNU6-236P","entrezGeneId":106481252},{"hugoGeneSymbol":"RNU6-237P","entrezGeneId":106479672},{"hugoGeneSymbol":"RNU6-238P","entrezGeneId":106481253},{"hugoGeneSymbol":"RNU6-239P","entrezGeneId":106480563},{"hugoGeneSymbol":"RNU6-23P","entrezGeneId":100873755},{"hugoGeneSymbol":"RNU6-240P","entrezGeneId":106479673},{"hugoGeneSymbol":"RNU6-241P","entrezGeneId":106479674},{"hugoGeneSymbol":"RNU6-242P","entrezGeneId":106481254},{"hugoGeneSymbol":"RNU6-243P","entrezGeneId":106479675},{"hugoGeneSymbol":"RNU6-244P","entrezGeneId":106866981},{"hugoGeneSymbol":"RNU6-245P","entrezGeneId":106481255},{"hugoGeneSymbol":"RNU6-246P","entrezGeneId":106481884},{"hugoGeneSymbol":"RNU6-247P","entrezGeneId":106479676},{"hugoGeneSymbol":"RNU6-248P","entrezGeneId":106481256},{"hugoGeneSymbol":"RNU6-249P","entrezGeneId":106479677},{"hugoGeneSymbol":"RNU6-24P","entrezGeneId":106480707},{"hugoGeneSymbol":"RNU6-250P","entrezGeneId":106479678},{"hugoGeneSymbol":"RNU6-251P","entrezGeneId":106481257},{"hugoGeneSymbol":"RNU6-252P","entrezGeneId":106480564},{"hugoGeneSymbol":"RNU6-253P","entrezGeneId":106480697},{"hugoGeneSymbol":"RNU6-254P","entrezGeneId":106479679},{"hugoGeneSymbol":"RNU6-255P","entrezGeneId":106481258},{"hugoGeneSymbol":"RNU6-256P","entrezGeneId":106479680},{"hugoGeneSymbol":"RNU6-257P","entrezGeneId":106479681},{"hugoGeneSymbol":"RNU6-258P","entrezGeneId":106481259},{"hugoGeneSymbol":"RNU6-259P","entrezGeneId":106481260},{"hugoGeneSymbol":"RNU6-25P","entrezGeneId":106480704},{"hugoGeneSymbol":"RNU6-260P","entrezGeneId":106479682},{"hugoGeneSymbol":"RNU6-261P","entrezGeneId":106481885},{"hugoGeneSymbol":"RNU6-262P","entrezGeneId":106481261},{"hugoGeneSymbol":"RNU6-263P","entrezGeneId":106479683},{"hugoGeneSymbol":"RNU6-264P","entrezGeneId":106481262},{"hugoGeneSymbol":"RNU6-266P","entrezGeneId":106479684},{"hugoGeneSymbol":"RNU6-267P","entrezGeneId":106480565},{"hugoGeneSymbol":"RNU6-268P","entrezGeneId":106479685},{"hugoGeneSymbol":"RNU6-269P","entrezGeneId":106481263},{"hugoGeneSymbol":"RNU6-26P","entrezGeneId":100873741},{"hugoGeneSymbol":"RNU6-270P","entrezGeneId":106479686},{"hugoGeneSymbol":"RNU6-271P","entrezGeneId":106481264},{"hugoGeneSymbol":"RNU6-272P","entrezGeneId":106479687},{"hugoGeneSymbol":"RNU6-273P","entrezGeneId":106480566},{"hugoGeneSymbol":"RNU6-274P","entrezGeneId":106479688},{"hugoGeneSymbol":"RNU6-275P","entrezGeneId":106481265},{"hugoGeneSymbol":"RNU6-276P","entrezGeneId":106479689},{"hugoGeneSymbol":"RNU6-277P","entrezGeneId":106481266},{"hugoGeneSymbol":"RNU6-278P","entrezGeneId":106481767},{"hugoGeneSymbol":"RNU6-279P","entrezGeneId":106479690},{"hugoGeneSymbol":"RNU6-27P","entrezGeneId":106478918},{"hugoGeneSymbol":"RNU6-280P","entrezGeneId":106481886},{"hugoGeneSymbol":"RNU6-281P","entrezGeneId":106481267},{"hugoGeneSymbol":"RNU6-282P","entrezGeneId":106479691},{"hugoGeneSymbol":"RNU6-283P","entrezGeneId":106479692},{"hugoGeneSymbol":"RNU6-284P","entrezGeneId":106481268},{"hugoGeneSymbol":"RNU6-285P","entrezGeneId":106479693},{"hugoGeneSymbol":"RNU6-286P","entrezGeneId":106480567},{"hugoGeneSymbol":"RNU6-287P","entrezGeneId":106481269},{"hugoGeneSymbol":"RNU6-288P","entrezGeneId":106479694},{"hugoGeneSymbol":"RNU6-289P","entrezGeneId":106479695},{"hugoGeneSymbol":"RNU6-28P","entrezGeneId":100873756},{"hugoGeneSymbol":"RNU6-290P","entrezGeneId":106481270},{"hugoGeneSymbol":"RNU6-291P","entrezGeneId":106479696},{"hugoGeneSymbol":"RNU6-293P","entrezGeneId":106481271},{"hugoGeneSymbol":"RNU6-294P","entrezGeneId":106479697},{"hugoGeneSymbol":"RNU6-295P","entrezGeneId":106481272},{"hugoGeneSymbol":"RNU6-296P","entrezGeneId":106479698},{"hugoGeneSymbol":"RNU6-297P","entrezGeneId":106479699},{"hugoGeneSymbol":"RNU6-298P","entrezGeneId":106481273},{"hugoGeneSymbol":"RNU6-299P","entrezGeneId":106480389},{"hugoGeneSymbol":"RNU6-29P","entrezGeneId":107131122},{"hugoGeneSymbol":"RNU6-300P","entrezGeneId":106479700},{"hugoGeneSymbol":"RNU6-301P","entrezGeneId":106481274},{"hugoGeneSymbol":"RNU6-302P","entrezGeneId":106479701},{"hugoGeneSymbol":"RNU6-303P","entrezGeneId":106479702},{"hugoGeneSymbol":"RNU6-304P","entrezGeneId":106481275},{"hugoGeneSymbol":"RNU6-306P","entrezGeneId":106479703},{"hugoGeneSymbol":"RNU6-307P","entrezGeneId":106481276},{"hugoGeneSymbol":"RNU6-308P","entrezGeneId":106480568},{"hugoGeneSymbol":"RNU6-309P","entrezGeneId":106479704},{"hugoGeneSymbol":"RNU6-30P","entrezGeneId":100873747},{"hugoGeneSymbol":"RNU6-310P","entrezGeneId":106481277},{"hugoGeneSymbol":"RNU6-311P","entrezGeneId":106479705},{"hugoGeneSymbol":"RNU6-312P","entrezGeneId":106479706},{"hugoGeneSymbol":"RNU6-313P","entrezGeneId":106480569},{"hugoGeneSymbol":"RNU6-314P","entrezGeneId":106481278},{"hugoGeneSymbol":"RNU6-315P","entrezGeneId":106479707},{"hugoGeneSymbol":"RNU6-316P","entrezGeneId":106481279},{"hugoGeneSymbol":"RNU6-317P","entrezGeneId":106479708},{"hugoGeneSymbol":"RNU6-318P","entrezGeneId":106481589},{"hugoGeneSymbol":"RNU6-319P","entrezGeneId":106481280},{"hugoGeneSymbol":"RNU6-31P","entrezGeneId":100873740},{"hugoGeneSymbol":"RNU6-320P","entrezGeneId":106480570},{"hugoGeneSymbol":"RNU6-321P","entrezGeneId":106479709},{"hugoGeneSymbol":"RNU6-322P","entrezGeneId":107105253},{"hugoGeneSymbol":"RNU6-323P","entrezGeneId":106481281},{"hugoGeneSymbol":"RNU6-324P","entrezGeneId":106479710},{"hugoGeneSymbol":"RNU6-325P","entrezGeneId":106480390},{"hugoGeneSymbol":"RNU6-326P","entrezGeneId":106481282},{"hugoGeneSymbol":"RNU6-327P","entrezGeneId":106481887},{"hugoGeneSymbol":"RNU6-328P","entrezGeneId":106479711},{"hugoGeneSymbol":"RNU6-329P","entrezGeneId":106479712},{"hugoGeneSymbol":"RNU6-32P","entrezGeneId":106480708},{"hugoGeneSymbol":"RNU6-330P","entrezGeneId":106481283},{"hugoGeneSymbol":"RNU6-331P","entrezGeneId":106479713},{"hugoGeneSymbol":"RNU6-332P","entrezGeneId":106481284},{"hugoGeneSymbol":"RNU6-333P","entrezGeneId":106480571},{"hugoGeneSymbol":"RNU6-334P","entrezGeneId":106479714},{"hugoGeneSymbol":"RNU6-335P","entrezGeneId":106479715},{"hugoGeneSymbol":"RNU6-336P","entrezGeneId":106481285},{"hugoGeneSymbol":"RNU6-337P","entrezGeneId":106479716},{"hugoGeneSymbol":"RNU6-338P","entrezGeneId":106481286},{"hugoGeneSymbol":"RNU6-339P","entrezGeneId":106481888},{"hugoGeneSymbol":"RNU6-33P","entrezGeneId":100873748},{"hugoGeneSymbol":"RNU6-340P","entrezGeneId":106479717},{"hugoGeneSymbol":"RNU6-341P","entrezGeneId":106481287},{"hugoGeneSymbol":"RNU6-342P","entrezGeneId":106479718},{"hugoGeneSymbol":"RNU6-343P","entrezGeneId":106479719},{"hugoGeneSymbol":"RNU6-344P","entrezGeneId":106480572},{"hugoGeneSymbol":"RNU6-345P","entrezGeneId":106481288},{"hugoGeneSymbol":"RNU6-346P","entrezGeneId":106481768},{"hugoGeneSymbol":"RNU6-347P","entrezGeneId":106479720},{"hugoGeneSymbol":"RNU6-348P","entrezGeneId":106481289},{"hugoGeneSymbol":"RNU6-349P","entrezGeneId":106479721},{"hugoGeneSymbol":"RNU6-34P","entrezGeneId":100873749},{"hugoGeneSymbol":"RNU6-351P","entrezGeneId":106479722},{"hugoGeneSymbol":"RNU6-352P","entrezGeneId":106480573},{"hugoGeneSymbol":"RNU6-353P","entrezGeneId":106479723},{"hugoGeneSymbol":"RNU6-354P","entrezGeneId":106481290},{"hugoGeneSymbol":"RNU6-355P","entrezGeneId":106481889},{"hugoGeneSymbol":"RNU6-356P","entrezGeneId":106479724},{"hugoGeneSymbol":"RNU6-358P","entrezGeneId":106481291},{"hugoGeneSymbol":"RNU6-359P","entrezGeneId":106479725},{"hugoGeneSymbol":"RNU6-35P","entrezGeneId":100873750},{"hugoGeneSymbol":"RNU6-360P","entrezGeneId":106479726},{"hugoGeneSymbol":"RNU6-361P","entrezGeneId":106480574},{"hugoGeneSymbol":"RNU6-362P","entrezGeneId":106481292},{"hugoGeneSymbol":"RNU6-363P","entrezGeneId":106479727},{"hugoGeneSymbol":"RNU6-364P","entrezGeneId":106481293},{"hugoGeneSymbol":"RNU6-365P","entrezGeneId":106479728},{"hugoGeneSymbol":"RNU6-366P","entrezGeneId":106481294},{"hugoGeneSymbol":"RNU6-367P","entrezGeneId":106481890},{"hugoGeneSymbol":"RNU6-368P","entrezGeneId":106479729},{"hugoGeneSymbol":"RNU6-369P","entrezGeneId":106479730},{"hugoGeneSymbol":"RNU6-36P","entrezGeneId":100873757},{"hugoGeneSymbol":"RNU6-370P","entrezGeneId":106481295},{"hugoGeneSymbol":"RNU6-371P","entrezGeneId":106479731},{"hugoGeneSymbol":"RNU6-373P","entrezGeneId":106480391},{"hugoGeneSymbol":"RNU6-374P","entrezGeneId":106481296},{"hugoGeneSymbol":"RNU6-375P","entrezGeneId":106480575},{"hugoGeneSymbol":"RNU6-376P","entrezGeneId":106479732},{"hugoGeneSymbol":"RNU6-377P","entrezGeneId":106479733},{"hugoGeneSymbol":"RNU6-378P","entrezGeneId":106481297},{"hugoGeneSymbol":"RNU6-379P","entrezGeneId":106479734},{"hugoGeneSymbol":"RNU6-37P","entrezGeneId":106478920},{"hugoGeneSymbol":"RNU6-380P","entrezGeneId":106481298},{"hugoGeneSymbol":"RNU6-381P","entrezGeneId":106480576},{"hugoGeneSymbol":"RNU6-382P","entrezGeneId":106479735},{"hugoGeneSymbol":"RNU6-383P","entrezGeneId":106479736},{"hugoGeneSymbol":"RNU6-384P","entrezGeneId":106481299},{"hugoGeneSymbol":"RNU6-386P","entrezGeneId":106481300},{"hugoGeneSymbol":"RNU6-387P","entrezGeneId":106481891},{"hugoGeneSymbol":"RNU6-388P","entrezGeneId":106479737},{"hugoGeneSymbol":"RNU6-389P","entrezGeneId":106481301},{"hugoGeneSymbol":"RNU6-38P","entrezGeneId":106480709},{"hugoGeneSymbol":"RNU6-390P","entrezGeneId":106479738},{"hugoGeneSymbol":"RNU6-391P","entrezGeneId":106479739},{"hugoGeneSymbol":"RNU6-392P","entrezGeneId":106480577},{"hugoGeneSymbol":"RNU6-393P","entrezGeneId":106481302},{"hugoGeneSymbol":"RNU6-394P","entrezGeneId":106480698},{"hugoGeneSymbol":"RNU6-395P","entrezGeneId":106479740},{"hugoGeneSymbol":"RNU6-396P","entrezGeneId":106481303},{"hugoGeneSymbol":"RNU6-397P","entrezGeneId":106479741},{"hugoGeneSymbol":"RNU6-398P","entrezGeneId":106479742},{"hugoGeneSymbol":"RNU6-399P","entrezGeneId":106481892},{"hugoGeneSymbol":"RNU6-39P","entrezGeneId":100873758},{"hugoGeneSymbol":"RNU6-3P","entrezGeneId":106478919},{"hugoGeneSymbol":"RNU6-400P","entrezGeneId":106481304},{"hugoGeneSymbol":"RNU6-401P","entrezGeneId":106479743},{"hugoGeneSymbol":"RNU6-402P","entrezGeneId":106481305},{"hugoGeneSymbol":"RNU6-403P","entrezGeneId":106480578},{"hugoGeneSymbol":"RNU6-405P","entrezGeneId":106479744},{"hugoGeneSymbol":"RNU6-406P","entrezGeneId":106481306},{"hugoGeneSymbol":"RNU6-407P","entrezGeneId":106479745},{"hugoGeneSymbol":"RNU6-408P","entrezGeneId":106479746},{"hugoGeneSymbol":"RNU6-409P","entrezGeneId":106481307},{"hugoGeneSymbol":"RNU6-40P","entrezGeneId":106480703},{"hugoGeneSymbol":"RNU6-410P","entrezGeneId":106481893},{"hugoGeneSymbol":"RNU6-411P","entrezGeneId":106479747},{"hugoGeneSymbol":"RNU6-412P","entrezGeneId":106481308},{"hugoGeneSymbol":"RNU6-413P","entrezGeneId":106479748},{"hugoGeneSymbol":"RNU6-414P","entrezGeneId":106479749},{"hugoGeneSymbol":"RNU6-415P","entrezGeneId":106481309},{"hugoGeneSymbol":"RNU6-416P","entrezGeneId":106480579},{"hugoGeneSymbol":"RNU6-417P","entrezGeneId":106479750},{"hugoGeneSymbol":"RNU6-418P","entrezGeneId":106481310},{"hugoGeneSymbol":"RNU6-419P","entrezGeneId":106479751},{"hugoGeneSymbol":"RNU6-41P","entrezGeneId":106478912},{"hugoGeneSymbol":"RNU6-420P","entrezGeneId":106481769},{"hugoGeneSymbol":"RNU6-421P","entrezGeneId":106481311},{"hugoGeneSymbol":"RNU6-422P","entrezGeneId":106480580},{"hugoGeneSymbol":"RNU6-424P","entrezGeneId":106479753},{"hugoGeneSymbol":"RNU6-425P","entrezGeneId":106481312},{"hugoGeneSymbol":"RNU6-426P","entrezGeneId":106479754},{"hugoGeneSymbol":"RNU6-428P","entrezGeneId":106481894},{"hugoGeneSymbol":"RNU6-429P","entrezGeneId":106479755},{"hugoGeneSymbol":"RNU6-42P","entrezGeneId":100302742},{"hugoGeneSymbol":"RNU6-430P","entrezGeneId":106479756},{"hugoGeneSymbol":"RNU6-431P","entrezGeneId":106481314},{"hugoGeneSymbol":"RNU6-432P","entrezGeneId":106479757},{"hugoGeneSymbol":"RNU6-433P","entrezGeneId":106481315},{"hugoGeneSymbol":"RNU6-434P","entrezGeneId":106480581},{"hugoGeneSymbol":"RNU6-435P","entrezGeneId":106479758},{"hugoGeneSymbol":"RNU6-436P","entrezGeneId":106481316},{"hugoGeneSymbol":"RNU6-437P","entrezGeneId":106479759},{"hugoGeneSymbol":"RNU6-438P","entrezGeneId":106479760},{"hugoGeneSymbol":"RNU6-439P","entrezGeneId":106481317},{"hugoGeneSymbol":"RNU6-43P","entrezGeneId":106478921},{"hugoGeneSymbol":"RNU6-440P","entrezGeneId":106481895},{"hugoGeneSymbol":"RNU6-441P","entrezGeneId":106480392},{"hugoGeneSymbol":"RNU6-442P","entrezGeneId":106479761},{"hugoGeneSymbol":"RNU6-443P","entrezGeneId":106481318},{"hugoGeneSymbol":"RNU6-444P","entrezGeneId":106479762},{"hugoGeneSymbol":"RNU6-445P","entrezGeneId":106479763},{"hugoGeneSymbol":"RNU6-446P","entrezGeneId":106481319},{"hugoGeneSymbol":"RNU6-447P","entrezGeneId":106481320},{"hugoGeneSymbol":"RNU6-448P","entrezGeneId":106479764},{"hugoGeneSymbol":"RNU6-449P","entrezGeneId":106481896},{"hugoGeneSymbol":"RNU6-44P","entrezGeneId":106478922},{"hugoGeneSymbol":"RNU6-450P","entrezGeneId":106481321},{"hugoGeneSymbol":"RNU6-451P","entrezGeneId":106479765},{"hugoGeneSymbol":"RNU6-452P","entrezGeneId":106481322},{"hugoGeneSymbol":"RNU6-453P","entrezGeneId":106479766},{"hugoGeneSymbol":"RNU6-454P","entrezGeneId":106480582},{"hugoGeneSymbol":"RNU6-455P","entrezGeneId":106479767},{"hugoGeneSymbol":"RNU6-456P","entrezGeneId":106481323},{"hugoGeneSymbol":"RNU6-457P","entrezGeneId":106479768},{"hugoGeneSymbol":"RNU6-458P","entrezGeneId":106481324},{"hugoGeneSymbol":"RNU6-45P","entrezGeneId":100873759},{"hugoGeneSymbol":"RNU6-460P","entrezGeneId":106479769},{"hugoGeneSymbol":"RNU6-461P","entrezGeneId":106481897},{"hugoGeneSymbol":"RNU6-462P","entrezGeneId":106479770},{"hugoGeneSymbol":"RNU6-463P","entrezGeneId":106481325},{"hugoGeneSymbol":"RNU6-464P","entrezGeneId":106479771},{"hugoGeneSymbol":"RNU6-465P","entrezGeneId":106481326},{"hugoGeneSymbol":"RNU6-466P","entrezGeneId":106481770},{"hugoGeneSymbol":"RNU6-467P","entrezGeneId":106479772},{"hugoGeneSymbol":"RNU6-468P","entrezGeneId":106865374},{"hugoGeneSymbol":"RNU6-469P","entrezGeneId":106481327},{"hugoGeneSymbol":"RNU6-46P","entrezGeneId":100873760},{"hugoGeneSymbol":"RNU6-470P","entrezGeneId":106479773},{"hugoGeneSymbol":"RNU6-471P","entrezGeneId":106479774},{"hugoGeneSymbol":"RNU6-472P","entrezGeneId":106481328},{"hugoGeneSymbol":"RNU6-473P","entrezGeneId":106479775},{"hugoGeneSymbol":"RNU6-474P","entrezGeneId":106481329},{"hugoGeneSymbol":"RNU6-475P","entrezGeneId":106479776},{"hugoGeneSymbol":"RNU6-476P","entrezGeneId":106479777},{"hugoGeneSymbol":"RNU6-477P","entrezGeneId":106481330},{"hugoGeneSymbol":"RNU6-478P","entrezGeneId":106479778},{"hugoGeneSymbol":"RNU6-479P","entrezGeneId":106481331},{"hugoGeneSymbol":"RNU6-47P","entrezGeneId":106480710},{"hugoGeneSymbol":"RNU6-480P","entrezGeneId":106480583},{"hugoGeneSymbol":"RNU6-481P","entrezGeneId":106479779},{"hugoGeneSymbol":"RNU6-482P","entrezGeneId":106481332},{"hugoGeneSymbol":"RNU6-483P","entrezGeneId":106479780},{"hugoGeneSymbol":"RNU6-484P","entrezGeneId":106479781},{"hugoGeneSymbol":"RNU6-485P","entrezGeneId":106481333},{"hugoGeneSymbol":"RNU6-486P","entrezGeneId":106481898},{"hugoGeneSymbol":"RNU6-487P","entrezGeneId":106480393},{"hugoGeneSymbol":"RNU6-488P","entrezGeneId":106479782},{"hugoGeneSymbol":"RNU6-489P","entrezGeneId":106481334},{"hugoGeneSymbol":"RNU6-48P","entrezGeneId":100887744},{"hugoGeneSymbol":"RNU6-490P","entrezGeneId":106479783},{"hugoGeneSymbol":"RNU6-491P","entrezGeneId":106479784},{"hugoGeneSymbol":"RNU6-492P","entrezGeneId":106481335},{"hugoGeneSymbol":"RNU6-493P","entrezGeneId":106481336},{"hugoGeneSymbol":"RNU6-494P","entrezGeneId":106479785},{"hugoGeneSymbol":"RNU6-495P","entrezGeneId":106481337},{"hugoGeneSymbol":"RNU6-496P","entrezGeneId":106480584},{"hugoGeneSymbol":"RNU6-497P","entrezGeneId":106479786},{"hugoGeneSymbol":"RNU6-498P","entrezGeneId":106481338},{"hugoGeneSymbol":"RNU6-499P","entrezGeneId":106479787},{"hugoGeneSymbol":"RNU6-49P","entrezGeneId":106478923},{"hugoGeneSymbol":"RNU6-4P","entrezGeneId":106478914},{"hugoGeneSymbol":"RNU6-500P","entrezGeneId":106479788},{"hugoGeneSymbol":"RNU6-501P","entrezGeneId":106481339},{"hugoGeneSymbol":"RNU6-502P","entrezGeneId":106481899},{"hugoGeneSymbol":"RNU6-503P","entrezGeneId":106479789},{"hugoGeneSymbol":"RNU6-504P","entrezGeneId":106481340},{"hugoGeneSymbol":"RNU6-505P","entrezGeneId":106479790},{"hugoGeneSymbol":"RNU6-506P","entrezGeneId":106479791},{"hugoGeneSymbol":"RNU6-507P","entrezGeneId":106481341},{"hugoGeneSymbol":"RNU6-508P","entrezGeneId":106480585},{"hugoGeneSymbol":"RNU6-509P","entrezGeneId":106479792},{"hugoGeneSymbol":"RNU6-50P","entrezGeneId":26825},{"hugoGeneSymbol":"RNU6-510P","entrezGeneId":106481342},{"hugoGeneSymbol":"RNU6-511P","entrezGeneId":106479793},{"hugoGeneSymbol":"RNU6-512P","entrezGeneId":106480394},{"hugoGeneSymbol":"RNU6-513P","entrezGeneId":106481343},{"hugoGeneSymbol":"RNU6-514P","entrezGeneId":106480586},{"hugoGeneSymbol":"RNU6-516P","entrezGeneId":106479794},{"hugoGeneSymbol":"RNU6-517P","entrezGeneId":106479795},{"hugoGeneSymbol":"RNU6-518P","entrezGeneId":106481344},{"hugoGeneSymbol":"RNU6-519P","entrezGeneId":106479796},{"hugoGeneSymbol":"RNU6-520P","entrezGeneId":106481345},{"hugoGeneSymbol":"RNU6-521P","entrezGeneId":106481900},{"hugoGeneSymbol":"RNU6-522P","entrezGeneId":106479797},{"hugoGeneSymbol":"RNU6-523P","entrezGeneId":106479798},{"hugoGeneSymbol":"RNU6-524P","entrezGeneId":106481346},{"hugoGeneSymbol":"RNU6-525P","entrezGeneId":106479799},{"hugoGeneSymbol":"RNU6-526P","entrezGeneId":106481347},{"hugoGeneSymbol":"RNU6-527P","entrezGeneId":106480587},{"hugoGeneSymbol":"RNU6-528P","entrezGeneId":106479800},{"hugoGeneSymbol":"RNU6-529P","entrezGeneId":106481348},{"hugoGeneSymbol":"RNU6-52P","entrezGeneId":100873761},{"hugoGeneSymbol":"RNU6-530P","entrezGeneId":106479801},{"hugoGeneSymbol":"RNU6-531P","entrezGeneId":106479802},{"hugoGeneSymbol":"RNU6-532P","entrezGeneId":106481349},{"hugoGeneSymbol":"RNU6-533P","entrezGeneId":106481901},{"hugoGeneSymbol":"RNU6-534P","entrezGeneId":106481978},{"hugoGeneSymbol":"RNU6-535P","entrezGeneId":106479803},{"hugoGeneSymbol":"RNU6-536P","entrezGeneId":106481350},{"hugoGeneSymbol":"RNU6-537P","entrezGeneId":106479804},{"hugoGeneSymbol":"RNU6-538P","entrezGeneId":106479805},{"hugoGeneSymbol":"RNU6-539P","entrezGeneId":106481351},{"hugoGeneSymbol":"RNU6-53P","entrezGeneId":100873762},{"hugoGeneSymbol":"RNU6-540P","entrezGeneId":106479806},{"hugoGeneSymbol":"RNU6-541P","entrezGeneId":106481352},{"hugoGeneSymbol":"RNU6-542P","entrezGeneId":106480588},{"hugoGeneSymbol":"RNU6-543P","entrezGeneId":106479807},{"hugoGeneSymbol":"RNU6-544P","entrezGeneId":106481353},{"hugoGeneSymbol":"RNU6-545P","entrezGeneId":106479808},{"hugoGeneSymbol":"RNU6-546P","entrezGeneId":106479809},{"hugoGeneSymbol":"RNU6-547P","entrezGeneId":106481902},{"hugoGeneSymbol":"RNU6-548P","entrezGeneId":106481354},{"hugoGeneSymbol":"RNU6-549P","entrezGeneId":106479810},{"hugoGeneSymbol":"RNU6-54P","entrezGeneId":106478986},{"hugoGeneSymbol":"RNU6-550P","entrezGeneId":106481355},{"hugoGeneSymbol":"RNU6-551P","entrezGeneId":106479811},{"hugoGeneSymbol":"RNU6-552P","entrezGeneId":106481356},{"hugoGeneSymbol":"RNU6-553P","entrezGeneId":106480589},{"hugoGeneSymbol":"RNU6-554P","entrezGeneId":106479812},{"hugoGeneSymbol":"RNU6-555P","entrezGeneId":106479813},{"hugoGeneSymbol":"RNU6-556P","entrezGeneId":106481357},{"hugoGeneSymbol":"RNU6-557P","entrezGeneId":106479814},{"hugoGeneSymbol":"RNU6-558P","entrezGeneId":106481358},{"hugoGeneSymbol":"RNU6-559P","entrezGeneId":106481771},{"hugoGeneSymbol":"RNU6-55P","entrezGeneId":100873763},{"hugoGeneSymbol":"RNU6-560P","entrezGeneId":106480590},{"hugoGeneSymbol":"RNU6-561P","entrezGeneId":106479815},{"hugoGeneSymbol":"RNU6-562P","entrezGeneId":106479816},{"hugoGeneSymbol":"RNU6-563P","entrezGeneId":106481359},{"hugoGeneSymbol":"RNU6-564P","entrezGeneId":106479817},{"hugoGeneSymbol":"RNU6-565P","entrezGeneId":106481360},{"hugoGeneSymbol":"RNU6-566P","entrezGeneId":106481903},{"hugoGeneSymbol":"RNU6-567P","entrezGeneId":106479818},{"hugoGeneSymbol":"RNU6-56P","entrezGeneId":100873764},{"hugoGeneSymbol":"RNU6-570P","entrezGeneId":106481361},{"hugoGeneSymbol":"RNU6-571P","entrezGeneId":106479819},{"hugoGeneSymbol":"RNU6-572P","entrezGeneId":106481362},{"hugoGeneSymbol":"RNU6-573P","entrezGeneId":106480591},{"hugoGeneSymbol":"RNU6-574P","entrezGeneId":106479820},{"hugoGeneSymbol":"RNU6-575P","entrezGeneId":106481363},{"hugoGeneSymbol":"RNU6-576P","entrezGeneId":106479821},{"hugoGeneSymbol":"RNU6-577P","entrezGeneId":106479822},{"hugoGeneSymbol":"RNU6-578P","entrezGeneId":106481904},{"hugoGeneSymbol":"RNU6-579P","entrezGeneId":106481364},{"hugoGeneSymbol":"RNU6-57P","entrezGeneId":100873765},{"hugoGeneSymbol":"RNU6-580P","entrezGeneId":106480395},{"hugoGeneSymbol":"RNU6-581P","entrezGeneId":106479823},{"hugoGeneSymbol":"RNU6-582P","entrezGeneId":106481365},{"hugoGeneSymbol":"RNU6-583P","entrezGeneId":106479824},{"hugoGeneSymbol":"RNU6-584P","entrezGeneId":106479825},{"hugoGeneSymbol":"RNU6-586P","entrezGeneId":106480592},{"hugoGeneSymbol":"RNU6-587P","entrezGeneId":106481366},{"hugoGeneSymbol":"RNU6-588P","entrezGeneId":106479826},{"hugoGeneSymbol":"RNU6-589P","entrezGeneId":106481367},{"hugoGeneSymbol":"RNU6-58P","entrezGeneId":100873766},{"hugoGeneSymbol":"RNU6-590P","entrezGeneId":106480593},{"hugoGeneSymbol":"RNU6-591P","entrezGeneId":106479827},{"hugoGeneSymbol":"RNU6-592P","entrezGeneId":106481368},{"hugoGeneSymbol":"RNU6-593P","entrezGeneId":106479828},{"hugoGeneSymbol":"RNU6-595P","entrezGeneId":106479829},{"hugoGeneSymbol":"RNU6-596P","entrezGeneId":106481369},{"hugoGeneSymbol":"RNU6-597P","entrezGeneId":106481905},{"hugoGeneSymbol":"RNU6-598P","entrezGeneId":106479830},{"hugoGeneSymbol":"RNU6-599P","entrezGeneId":106481370},{"hugoGeneSymbol":"RNU6-59P","entrezGeneId":100873767},{"hugoGeneSymbol":"RNU6-5P","entrezGeneId":106478913},{"hugoGeneSymbol":"RNU6-600P","entrezGeneId":106479831},{"hugoGeneSymbol":"RNU6-601P","entrezGeneId":106479832},{"hugoGeneSymbol":"RNU6-602P","entrezGeneId":106481371},{"hugoGeneSymbol":"RNU6-603P","entrezGeneId":106480594},{"hugoGeneSymbol":"RNU6-604P","entrezGeneId":106479833},{"hugoGeneSymbol":"RNU6-605P","entrezGeneId":106481372},{"hugoGeneSymbol":"RNU6-606P","entrezGeneId":106479834},{"hugoGeneSymbol":"RNU6-607P","entrezGeneId":106481772},{"hugoGeneSymbol":"RNU6-608P","entrezGeneId":106481373},{"hugoGeneSymbol":"RNU6-609P","entrezGeneId":106481906},{"hugoGeneSymbol":"RNU6-60P","entrezGeneId":106480750},{"hugoGeneSymbol":"RNU6-610P","entrezGeneId":106479835},{"hugoGeneSymbol":"RNU6-611P","entrezGeneId":106479836},{"hugoGeneSymbol":"RNU6-612P","entrezGeneId":106481374},{"hugoGeneSymbol":"RNU6-613P","entrezGeneId":106479837},{"hugoGeneSymbol":"RNU6-614P","entrezGeneId":106481375},{"hugoGeneSymbol":"RNU6-615P","entrezGeneId":106480595},{"hugoGeneSymbol":"RNU6-616P","entrezGeneId":106479838},{"hugoGeneSymbol":"RNU6-617P","entrezGeneId":106479839},{"hugoGeneSymbol":"RNU6-618P","entrezGeneId":106481376},{"hugoGeneSymbol":"RNU6-619P","entrezGeneId":106479840},{"hugoGeneSymbol":"RNU6-61P","entrezGeneId":106480435},{"hugoGeneSymbol":"RNU6-620P","entrezGeneId":106481377},{"hugoGeneSymbol":"RNU6-621P","entrezGeneId":106481907},{"hugoGeneSymbol":"RNU6-622P","entrezGeneId":106479841},{"hugoGeneSymbol":"RNU6-623P","entrezGeneId":106481378},{"hugoGeneSymbol":"RNU6-624P","entrezGeneId":106479842},{"hugoGeneSymbol":"RNU6-625P","entrezGeneId":106479843},{"hugoGeneSymbol":"RNU6-626P","entrezGeneId":106481379},{"hugoGeneSymbol":"RNU6-627P","entrezGeneId":106480596},{"hugoGeneSymbol":"RNU6-628P","entrezGeneId":106480396},{"hugoGeneSymbol":"RNU6-629P","entrezGeneId":106479844},{"hugoGeneSymbol":"RNU6-62P","entrezGeneId":106478987},{"hugoGeneSymbol":"RNU6-630P","entrezGeneId":106481380},{"hugoGeneSymbol":"RNU6-631P","entrezGeneId":106479845},{"hugoGeneSymbol":"RNU6-632P","entrezGeneId":106479846},{"hugoGeneSymbol":"RNU6-633P","entrezGeneId":106481381},{"hugoGeneSymbol":"RNU6-634P","entrezGeneId":106479847},{"hugoGeneSymbol":"RNU6-635P","entrezGeneId":106481382},{"hugoGeneSymbol":"RNU6-636P","entrezGeneId":106480597},{"hugoGeneSymbol":"RNU6-637P","entrezGeneId":106479848},{"hugoGeneSymbol":"RNU6-638P","entrezGeneId":106481383},{"hugoGeneSymbol":"RNU6-639P","entrezGeneId":106479849},{"hugoGeneSymbol":"RNU6-63P","entrezGeneId":100873768},{"hugoGeneSymbol":"RNU6-640P","entrezGeneId":106479850},{"hugoGeneSymbol":"RNU6-641P","entrezGeneId":106481908},{"hugoGeneSymbol":"RNU6-642P","entrezGeneId":106481384},{"hugoGeneSymbol":"RNU6-643P","entrezGeneId":106479851},{"hugoGeneSymbol":"RNU6-644P","entrezGeneId":106481385},{"hugoGeneSymbol":"RNU6-645P","entrezGeneId":106479852},{"hugoGeneSymbol":"RNU6-646P","entrezGeneId":106481386},{"hugoGeneSymbol":"RNU6-647P","entrezGeneId":106480598},{"hugoGeneSymbol":"RNU6-648P","entrezGeneId":106479853},{"hugoGeneSymbol":"RNU6-649P","entrezGeneId":106479854},{"hugoGeneSymbol":"RNU6-64P","entrezGeneId":100873769},{"hugoGeneSymbol":"RNU6-650P","entrezGeneId":106481387},{"hugoGeneSymbol":"RNU6-651P","entrezGeneId":106479855},{"hugoGeneSymbol":"RNU6-652P","entrezGeneId":106481388},{"hugoGeneSymbol":"RNU6-653P","entrezGeneId":106480397},{"hugoGeneSymbol":"RNU6-654P","entrezGeneId":106481909},{"hugoGeneSymbol":"RNU6-655P","entrezGeneId":106479856},{"hugoGeneSymbol":"RNU6-656P","entrezGeneId":106479857},{"hugoGeneSymbol":"RNU6-657P","entrezGeneId":106481389},{"hugoGeneSymbol":"RNU6-658P","entrezGeneId":106479858},{"hugoGeneSymbol":"RNU6-659P","entrezGeneId":106481390},{"hugoGeneSymbol":"RNU6-65P","entrezGeneId":106480751},{"hugoGeneSymbol":"RNU6-660P","entrezGeneId":106480599},{"hugoGeneSymbol":"RNU6-661P","entrezGeneId":106479859},{"hugoGeneSymbol":"RNU6-662P","entrezGeneId":106479860},{"hugoGeneSymbol":"RNU6-663P","entrezGeneId":106481391},{"hugoGeneSymbol":"RNU6-664P","entrezGeneId":106479861},{"hugoGeneSymbol":"RNU6-665P","entrezGeneId":106481392},{"hugoGeneSymbol":"RNU6-666P","entrezGeneId":106480600},{"hugoGeneSymbol":"RNU6-667P","entrezGeneId":106479862},{"hugoGeneSymbol":"RNU6-668P","entrezGeneId":106481393},{"hugoGeneSymbol":"RNU6-669P","entrezGeneId":107063537},{"hugoGeneSymbol":"RNU6-66P","entrezGeneId":100873770},{"hugoGeneSymbol":"RNU6-670P","entrezGeneId":106479863},{"hugoGeneSymbol":"RNU6-672P","entrezGeneId":106481910},{"hugoGeneSymbol":"RNU6-673P","entrezGeneId":106481394},{"hugoGeneSymbol":"RNU6-674P","entrezGeneId":106481773},{"hugoGeneSymbol":"RNU6-675P","entrezGeneId":106479864},{"hugoGeneSymbol":"RNU6-677P","entrezGeneId":106481395},{"hugoGeneSymbol":"RNU6-678P","entrezGeneId":106479865},{"hugoGeneSymbol":"RNU6-679P","entrezGeneId":106479866},{"hugoGeneSymbol":"RNU6-67P","entrezGeneId":100873771},{"hugoGeneSymbol":"RNU6-680P","entrezGeneId":106480601},{"hugoGeneSymbol":"RNU6-681P","entrezGeneId":106481911},{"hugoGeneSymbol":"RNU6-682P","entrezGeneId":106479867},{"hugoGeneSymbol":"RNU6-684P","entrezGeneId":106481396},{"hugoGeneSymbol":"RNU6-685P","entrezGeneId":106479868},{"hugoGeneSymbol":"RNU6-686P","entrezGeneId":106481397},{"hugoGeneSymbol":"RNU6-687P","entrezGeneId":106479869},{"hugoGeneSymbol":"RNU6-689P","entrezGeneId":106479870},{"hugoGeneSymbol":"RNU6-68P","entrezGeneId":100873772},{"hugoGeneSymbol":"RNU6-690P","entrezGeneId":106481398},{"hugoGeneSymbol":"RNU6-692P","entrezGeneId":106479871},{"hugoGeneSymbol":"RNU6-693P","entrezGeneId":106481399},{"hugoGeneSymbol":"RNU6-694P","entrezGeneId":106479872},{"hugoGeneSymbol":"RNU6-695P","entrezGeneId":106481400},{"hugoGeneSymbol":"RNU6-696P","entrezGeneId":106479873},{"hugoGeneSymbol":"RNU6-697P","entrezGeneId":106479874},{"hugoGeneSymbol":"RNU6-698P","entrezGeneId":106481401},{"hugoGeneSymbol":"RNU6-699P","entrezGeneId":106479875},{"hugoGeneSymbol":"RNU6-69P","entrezGeneId":100873773},{"hugoGeneSymbol":"RNU6-6P","entrezGeneId":26826},{"hugoGeneSymbol":"RNU6-7","entrezGeneId":101954275},{"hugoGeneSymbol":"RNU6-700P","entrezGeneId":106480398},{"hugoGeneSymbol":"RNU6-701P","entrezGeneId":106481402},{"hugoGeneSymbol":"RNU6-702P","entrezGeneId":106481912},{"hugoGeneSymbol":"RNU6-703P","entrezGeneId":106479876},{"hugoGeneSymbol":"RNU6-704P","entrezGeneId":106479877},{"hugoGeneSymbol":"RNU6-705P","entrezGeneId":106481403},{"hugoGeneSymbol":"RNU6-706P","entrezGeneId":106479878},{"hugoGeneSymbol":"RNU6-707P","entrezGeneId":107075318},{"hugoGeneSymbol":"RNU6-708P","entrezGeneId":106480602},{"hugoGeneSymbol":"RNU6-709P","entrezGeneId":106479879},{"hugoGeneSymbol":"RNU6-70P","entrezGeneId":106478988},{"hugoGeneSymbol":"RNU6-710P","entrezGeneId":106479880},{"hugoGeneSymbol":"RNU6-711P","entrezGeneId":106479881},{"hugoGeneSymbol":"RNU6-712P","entrezGeneId":106481404},{"hugoGeneSymbol":"RNU6-713P","entrezGeneId":106479882},{"hugoGeneSymbol":"RNU6-714P","entrezGeneId":106480603},{"hugoGeneSymbol":"RNU6-715P","entrezGeneId":106481405},{"hugoGeneSymbol":"RNU6-716P","entrezGeneId":106479883},{"hugoGeneSymbol":"RNU6-717P","entrezGeneId":106479884},{"hugoGeneSymbol":"RNU6-718P","entrezGeneId":106481406},{"hugoGeneSymbol":"RNU6-719P","entrezGeneId":106481913},{"hugoGeneSymbol":"RNU6-71P","entrezGeneId":100873774},{"hugoGeneSymbol":"RNU6-720P","entrezGeneId":106479885},{"hugoGeneSymbol":"RNU6-721P","entrezGeneId":106481774},{"hugoGeneSymbol":"RNU6-722P","entrezGeneId":106481407},{"hugoGeneSymbol":"RNU6-723P","entrezGeneId":106479886},{"hugoGeneSymbol":"RNU6-724P","entrezGeneId":106479887},{"hugoGeneSymbol":"RNU6-725P","entrezGeneId":106481408},{"hugoGeneSymbol":"RNU6-726P","entrezGeneId":106480604},{"hugoGeneSymbol":"RNU6-727P","entrezGeneId":106481409},{"hugoGeneSymbol":"RNU6-728P","entrezGeneId":106479888},{"hugoGeneSymbol":"RNU6-729P","entrezGeneId":106481410},{"hugoGeneSymbol":"RNU6-72P","entrezGeneId":100873775},{"hugoGeneSymbol":"RNU6-730P","entrezGeneId":106479889},{"hugoGeneSymbol":"RNU6-731P","entrezGeneId":106481411},{"hugoGeneSymbol":"RNU6-732P","entrezGeneId":106479890},{"hugoGeneSymbol":"RNU6-733P","entrezGeneId":106479891},{"hugoGeneSymbol":"RNU6-735P","entrezGeneId":106481412},{"hugoGeneSymbol":"RNU6-737P","entrezGeneId":106481914},{"hugoGeneSymbol":"RNU6-738P","entrezGeneId":106479892},{"hugoGeneSymbol":"RNU6-739P","entrezGeneId":106481413},{"hugoGeneSymbol":"RNU6-73P","entrezGeneId":106478989},{"hugoGeneSymbol":"RNU6-740P","entrezGeneId":106479893},{"hugoGeneSymbol":"RNU6-741P","entrezGeneId":106479894},{"hugoGeneSymbol":"RNU6-742P","entrezGeneId":106481414},{"hugoGeneSymbol":"RNU6-743P","entrezGeneId":106480605},{"hugoGeneSymbol":"RNU6-744P","entrezGeneId":106479895},{"hugoGeneSymbol":"RNU6-745P","entrezGeneId":106481415},{"hugoGeneSymbol":"RNU6-746P","entrezGeneId":106479896},{"hugoGeneSymbol":"RNU6-747P","entrezGeneId":106480399},{"hugoGeneSymbol":"RNU6-748P","entrezGeneId":106481416},{"hugoGeneSymbol":"RNU6-749P","entrezGeneId":106480606},{"hugoGeneSymbol":"RNU6-74P","entrezGeneId":106480752},{"hugoGeneSymbol":"RNU6-750P","entrezGeneId":106479897},{"hugoGeneSymbol":"RNU6-751P","entrezGeneId":106479898},{"hugoGeneSymbol":"RNU6-752P","entrezGeneId":106481417},{"hugoGeneSymbol":"RNU6-753P","entrezGeneId":106479899},{"hugoGeneSymbol":"RNU6-754P","entrezGeneId":106481418},{"hugoGeneSymbol":"RNU6-755P","entrezGeneId":106481915},{"hugoGeneSymbol":"RNU6-756P","entrezGeneId":106479900},{"hugoGeneSymbol":"RNU6-757P","entrezGeneId":106479901},{"hugoGeneSymbol":"RNU6-758P","entrezGeneId":106481419},{"hugoGeneSymbol":"RNU6-759P","entrezGeneId":106479902},{"hugoGeneSymbol":"RNU6-75P","entrezGeneId":100873776},{"hugoGeneSymbol":"RNU6-760P","entrezGeneId":106481420},{"hugoGeneSymbol":"RNU6-761P","entrezGeneId":106480607},{"hugoGeneSymbol":"RNU6-762P","entrezGeneId":106479903},{"hugoGeneSymbol":"RNU6-763P","entrezGeneId":106481421},{"hugoGeneSymbol":"RNU6-764P","entrezGeneId":106479904},{"hugoGeneSymbol":"RNU6-765P","entrezGeneId":106479905},{"hugoGeneSymbol":"RNU6-766P","entrezGeneId":106481422},{"hugoGeneSymbol":"RNU6-767P","entrezGeneId":106481916},{"hugoGeneSymbol":"RNU6-768P","entrezGeneId":106481775},{"hugoGeneSymbol":"RNU6-769P","entrezGeneId":106479906},{"hugoGeneSymbol":"RNU6-76P","entrezGeneId":100873777},{"hugoGeneSymbol":"RNU6-770P","entrezGeneId":106481423},{"hugoGeneSymbol":"RNU6-771P","entrezGeneId":106479907},{"hugoGeneSymbol":"RNU6-772P","entrezGeneId":106479908},{"hugoGeneSymbol":"RNU6-774P","entrezGeneId":106481425},{"hugoGeneSymbol":"RNU6-775P","entrezGeneId":106479909},{"hugoGeneSymbol":"RNU6-776P","entrezGeneId":106480608},{"hugoGeneSymbol":"RNU6-777P","entrezGeneId":106481426},{"hugoGeneSymbol":"RNU6-778P","entrezGeneId":106479910},{"hugoGeneSymbol":"RNU6-77P","entrezGeneId":106481792},{"hugoGeneSymbol":"RNU6-780P","entrezGeneId":106481427},{"hugoGeneSymbol":"RNU6-781P","entrezGeneId":106479911},{"hugoGeneSymbol":"RNU6-782P","entrezGeneId":106481917},{"hugoGeneSymbol":"RNU6-783P","entrezGeneId":106479912},{"hugoGeneSymbol":"RNU6-784P","entrezGeneId":106481428},{"hugoGeneSymbol":"RNU6-785P","entrezGeneId":106479913},{"hugoGeneSymbol":"RNU6-786P","entrezGeneId":106481429},{"hugoGeneSymbol":"RNU6-787P","entrezGeneId":106479914},{"hugoGeneSymbol":"RNU6-788P","entrezGeneId":106480609},{"hugoGeneSymbol":"RNU6-789P","entrezGeneId":106479915},{"hugoGeneSymbol":"RNU6-78P","entrezGeneId":100873778},{"hugoGeneSymbol":"RNU6-790P","entrezGeneId":106481430},{"hugoGeneSymbol":"RNU6-791P","entrezGeneId":106479916},{"hugoGeneSymbol":"RNU6-792P","entrezGeneId":106481431},{"hugoGeneSymbol":"RNU6-793P","entrezGeneId":106479917},{"hugoGeneSymbol":"RNU6-794P","entrezGeneId":106480400},{"hugoGeneSymbol":"RNU6-795P","entrezGeneId":106480610},{"hugoGeneSymbol":"RNU6-796P","entrezGeneId":106481432},{"hugoGeneSymbol":"RNU6-797P","entrezGeneId":106479918},{"hugoGeneSymbol":"RNU6-798P","entrezGeneId":106479919},{"hugoGeneSymbol":"RNU6-799P","entrezGeneId":107105254},{"hugoGeneSymbol":"RNU6-79P","entrezGeneId":100873779},{"hugoGeneSymbol":"RNU6-8","entrezGeneId":101954278},{"hugoGeneSymbol":"RNU6-800P","entrezGeneId":106481433},{"hugoGeneSymbol":"RNU6-801P","entrezGeneId":106479920},{"hugoGeneSymbol":"RNU6-803P","entrezGeneId":106481434},{"hugoGeneSymbol":"RNU6-804P","entrezGeneId":106479921},{"hugoGeneSymbol":"RNU6-805P","entrezGeneId":106479922},{"hugoGeneSymbol":"RNU6-806P","entrezGeneId":106481435},{"hugoGeneSymbol":"RNU6-807P","entrezGeneId":106479923},{"hugoGeneSymbol":"RNU6-808P","entrezGeneId":106481436},{"hugoGeneSymbol":"RNU6-809P","entrezGeneId":106479924},{"hugoGeneSymbol":"RNU6-80P","entrezGeneId":106478990},{"hugoGeneSymbol":"RNU6-810P","entrezGeneId":106481437},{"hugoGeneSymbol":"RNU6-811P","entrezGeneId":106479925},{"hugoGeneSymbol":"RNU6-812P","entrezGeneId":106479926},{"hugoGeneSymbol":"RNU6-813P","entrezGeneId":106481438},{"hugoGeneSymbol":"RNU6-815P","entrezGeneId":106480611},{"hugoGeneSymbol":"RNU6-816P","entrezGeneId":106480401},{"hugoGeneSymbol":"RNU6-817P","entrezGeneId":106479927},{"hugoGeneSymbol":"RNU6-818P","entrezGeneId":106481439},{"hugoGeneSymbol":"RNU6-819P","entrezGeneId":106479928},{"hugoGeneSymbol":"RNU6-81P","entrezGeneId":100873780},{"hugoGeneSymbol":"RNU6-820P","entrezGeneId":106479929},{"hugoGeneSymbol":"RNU6-821P","entrezGeneId":106481440},{"hugoGeneSymbol":"RNU6-822P","entrezGeneId":106479930},{"hugoGeneSymbol":"RNU6-823P","entrezGeneId":106481441},{"hugoGeneSymbol":"RNU6-824P","entrezGeneId":106480612},{"hugoGeneSymbol":"RNU6-826P","entrezGeneId":106479931},{"hugoGeneSymbol":"RNU6-827P","entrezGeneId":106481442},{"hugoGeneSymbol":"RNU6-828P","entrezGeneId":106479932},{"hugoGeneSymbol":"RNU6-829P","entrezGeneId":106479933},{"hugoGeneSymbol":"RNU6-82P","entrezGeneId":100873781},{"hugoGeneSymbol":"RNU6-830P","entrezGeneId":106480613},{"hugoGeneSymbol":"RNU6-831P","entrezGeneId":106481443},{"hugoGeneSymbol":"RNU6-832P","entrezGeneId":106479934},{"hugoGeneSymbol":"RNU6-833P","entrezGeneId":106481444},{"hugoGeneSymbol":"RNU6-834P","entrezGeneId":106479935},{"hugoGeneSymbol":"RNU6-835P","entrezGeneId":106481445},{"hugoGeneSymbol":"RNU6-836P","entrezGeneId":106481918},{"hugoGeneSymbol":"RNU6-837P","entrezGeneId":106479936},{"hugoGeneSymbol":"RNU6-838P","entrezGeneId":106479937},{"hugoGeneSymbol":"RNU6-839P","entrezGeneId":106481446},{"hugoGeneSymbol":"RNU6-83P","entrezGeneId":100873782},{"hugoGeneSymbol":"RNU6-840P","entrezGeneId":106479938},{"hugoGeneSymbol":"RNU6-841P","entrezGeneId":106480699},{"hugoGeneSymbol":"RNU6-842P","entrezGeneId":106481447},{"hugoGeneSymbol":"RNU6-843P","entrezGeneId":106480614},{"hugoGeneSymbol":"RNU6-844P","entrezGeneId":106479939},{"hugoGeneSymbol":"RNU6-845P","entrezGeneId":106479940},{"hugoGeneSymbol":"RNU6-847P","entrezGeneId":106481448},{"hugoGeneSymbol":"RNU6-848P","entrezGeneId":106479941},{"hugoGeneSymbol":"RNU6-849P","entrezGeneId":106481449},{"hugoGeneSymbol":"RNU6-84P","entrezGeneId":106479603},{"hugoGeneSymbol":"RNU6-850P","entrezGeneId":106481919},{"hugoGeneSymbol":"RNU6-851P","entrezGeneId":106479942},{"hugoGeneSymbol":"RNU6-853P","entrezGeneId":106479943},{"hugoGeneSymbol":"RNU6-854P","entrezGeneId":106481450},{"hugoGeneSymbol":"RNU6-855P","entrezGeneId":106479944},{"hugoGeneSymbol":"RNU6-856P","entrezGeneId":106481451},{"hugoGeneSymbol":"RNU6-857P","entrezGeneId":106480615},{"hugoGeneSymbol":"RNU6-858P","entrezGeneId":106479945},{"hugoGeneSymbol":"RNU6-859P","entrezGeneId":106481452},{"hugoGeneSymbol":"RNU6-85P","entrezGeneId":106481203},{"hugoGeneSymbol":"RNU6-860P","entrezGeneId":106479946},{"hugoGeneSymbol":"RNU6-861P","entrezGeneId":106479947},{"hugoGeneSymbol":"RNU6-862P","entrezGeneId":106481920},{"hugoGeneSymbol":"RNU6-863P","entrezGeneId":106481453},{"hugoGeneSymbol":"RNU6-864P","entrezGeneId":106481776},{"hugoGeneSymbol":"RNU6-865P","entrezGeneId":106479948},{"hugoGeneSymbol":"RNU6-866P","entrezGeneId":106481454},{"hugoGeneSymbol":"RNU6-867P","entrezGeneId":106479949},{"hugoGeneSymbol":"RNU6-869P","entrezGeneId":106480616},{"hugoGeneSymbol":"RNU6-86P","entrezGeneId":106479604},{"hugoGeneSymbol":"RNU6-871P","entrezGeneId":106479950},{"hugoGeneSymbol":"RNU6-873P","entrezGeneId":106479951},{"hugoGeneSymbol":"RNU6-874P","entrezGeneId":106479952},{"hugoGeneSymbol":"RNU6-875P","entrezGeneId":106479953},{"hugoGeneSymbol":"RNU6-876P","entrezGeneId":106481455},{"hugoGeneSymbol":"RNU6-877P","entrezGeneId":106480617},{"hugoGeneSymbol":"RNU6-878P","entrezGeneId":106479954},{"hugoGeneSymbol":"RNU6-879P","entrezGeneId":106481456},{"hugoGeneSymbol":"RNU6-87P","entrezGeneId":106481204},{"hugoGeneSymbol":"RNU6-880P","entrezGeneId":106479955},{"hugoGeneSymbol":"RNU6-881P","entrezGeneId":106479956},{"hugoGeneSymbol":"RNU6-882P","entrezGeneId":106481457},{"hugoGeneSymbol":"RNU6-883P","entrezGeneId":106481921},{"hugoGeneSymbol":"RNU6-884P","entrezGeneId":106479957},{"hugoGeneSymbol":"RNU6-885P","entrezGeneId":106481458},{"hugoGeneSymbol":"RNU6-886P","entrezGeneId":106479958},{"hugoGeneSymbol":"RNU6-887P","entrezGeneId":106481459},{"hugoGeneSymbol":"RNU6-888P","entrezGeneId":106479959},{"hugoGeneSymbol":"RNU6-889P","entrezGeneId":106480402},{"hugoGeneSymbol":"RNU6-88P","entrezGeneId":106479605},{"hugoGeneSymbol":"RNU6-890P","entrezGeneId":106480618},{"hugoGeneSymbol":"RNU6-891P","entrezGeneId":106479960},{"hugoGeneSymbol":"RNU6-892P","entrezGeneId":106481460},{"hugoGeneSymbol":"RNU6-893P","entrezGeneId":106479961},{"hugoGeneSymbol":"RNU6-894P","entrezGeneId":106481461},{"hugoGeneSymbol":"RNU6-895P","entrezGeneId":106479962},{"hugoGeneSymbol":"RNU6-896P","entrezGeneId":106481922},{"hugoGeneSymbol":"RNU6-897P","entrezGeneId":106479963},{"hugoGeneSymbol":"RNU6-898P","entrezGeneId":106481462},{"hugoGeneSymbol":"RNU6-899P","entrezGeneId":106479964},{"hugoGeneSymbol":"RNU6-89P","entrezGeneId":106480550},{"hugoGeneSymbol":"RNU6-9","entrezGeneId":101954271},{"hugoGeneSymbol":"RNU6-900P","entrezGeneId":106481463},{"hugoGeneSymbol":"RNU6-901P","entrezGeneId":106479965},{"hugoGeneSymbol":"RNU6-902P","entrezGeneId":106480619},{"hugoGeneSymbol":"RNU6-903P","entrezGeneId":106481464},{"hugoGeneSymbol":"RNU6-904P","entrezGeneId":106479966},{"hugoGeneSymbol":"RNU6-905P","entrezGeneId":106479967},{"hugoGeneSymbol":"RNU6-906P","entrezGeneId":106481465},{"hugoGeneSymbol":"RNU6-907P","entrezGeneId":106480620},{"hugoGeneSymbol":"RNU6-908P","entrezGeneId":106479968},{"hugoGeneSymbol":"RNU6-909P","entrezGeneId":106481466},{"hugoGeneSymbol":"RNU6-90P","entrezGeneId":106481205},{"hugoGeneSymbol":"RNU6-910P","entrezGeneId":106481777},{"hugoGeneSymbol":"RNU6-911P","entrezGeneId":106479969},{"hugoGeneSymbol":"RNU6-912P","entrezGeneId":106479970},{"hugoGeneSymbol":"RNU6-913P","entrezGeneId":106481467},{"hugoGeneSymbol":"RNU6-914P","entrezGeneId":107063540},{"hugoGeneSymbol":"RNU6-915P","entrezGeneId":106481923},{"hugoGeneSymbol":"RNU6-916P","entrezGeneId":106481468},{"hugoGeneSymbol":"RNU6-917P","entrezGeneId":106479971},{"hugoGeneSymbol":"RNU6-918P","entrezGeneId":106481469},{"hugoGeneSymbol":"RNU6-919P","entrezGeneId":106479972},{"hugoGeneSymbol":"RNU6-91P","entrezGeneId":106479606},{"hugoGeneSymbol":"RNU6-920P","entrezGeneId":106481470},{"hugoGeneSymbol":"RNU6-921P","entrezGeneId":106479973},{"hugoGeneSymbol":"RNU6-922P","entrezGeneId":106479974},{"hugoGeneSymbol":"RNU6-923P","entrezGeneId":106481471},{"hugoGeneSymbol":"RNU6-924P","entrezGeneId":106480621},{"hugoGeneSymbol":"RNU6-925P","entrezGeneId":106479975},{"hugoGeneSymbol":"RNU6-926P","entrezGeneId":106481472},{"hugoGeneSymbol":"RNU6-927P","entrezGeneId":106479976},{"hugoGeneSymbol":"RNU6-928P","entrezGeneId":106479977},{"hugoGeneSymbol":"RNU6-929P","entrezGeneId":106481473},{"hugoGeneSymbol":"RNU6-92P","entrezGeneId":106479607},{"hugoGeneSymbol":"RNU6-930P","entrezGeneId":106480622},{"hugoGeneSymbol":"RNU6-931P","entrezGeneId":106479978},{"hugoGeneSymbol":"RNU6-932P","entrezGeneId":106481474},{"hugoGeneSymbol":"RNU6-933P","entrezGeneId":106479979},{"hugoGeneSymbol":"RNU6-934P","entrezGeneId":106481475},{"hugoGeneSymbol":"RNU6-935P","entrezGeneId":106480403},{"hugoGeneSymbol":"RNU6-936P","entrezGeneId":106481924},{"hugoGeneSymbol":"RNU6-937P","entrezGeneId":106479980},{"hugoGeneSymbol":"RNU6-938P","entrezGeneId":106479981},{"hugoGeneSymbol":"RNU6-939P","entrezGeneId":106481476},{"hugoGeneSymbol":"RNU6-940P","entrezGeneId":106479982},{"hugoGeneSymbol":"RNU6-941P","entrezGeneId":107063612},{"hugoGeneSymbol":"RNU6-942P","entrezGeneId":106481477},{"hugoGeneSymbol":"RNU6-943P","entrezGeneId":106480623},{"hugoGeneSymbol":"RNU6-944P","entrezGeneId":106479983},{"hugoGeneSymbol":"RNU6-945P","entrezGeneId":106479984},{"hugoGeneSymbol":"RNU6-946P","entrezGeneId":106481478},{"hugoGeneSymbol":"RNU6-947P","entrezGeneId":106479985},{"hugoGeneSymbol":"RNU6-948P","entrezGeneId":106481479},{"hugoGeneSymbol":"RNU6-949P","entrezGeneId":106481925},{"hugoGeneSymbol":"RNU6-94P","entrezGeneId":106481206},{"hugoGeneSymbol":"RNU6-950P","entrezGeneId":106479986},{"hugoGeneSymbol":"RNU6-951P","entrezGeneId":106481480},{"hugoGeneSymbol":"RNU6-952P","entrezGeneId":106479987},{"hugoGeneSymbol":"RNU6-953P","entrezGeneId":106479988},{"hugoGeneSymbol":"RNU6-954P","entrezGeneId":106481481},{"hugoGeneSymbol":"RNU6-955P","entrezGeneId":106480624},{"hugoGeneSymbol":"RNU6-956P","entrezGeneId":106480404},{"hugoGeneSymbol":"RNU6-957P","entrezGeneId":106479989},{"hugoGeneSymbol":"RNU6-958P","entrezGeneId":106481482},{"hugoGeneSymbol":"RNU6-959P","entrezGeneId":106479990},{"hugoGeneSymbol":"RNU6-95P","entrezGeneId":106479608},{"hugoGeneSymbol":"RNU6-960P","entrezGeneId":106479991},{"hugoGeneSymbol":"RNU6-961P","entrezGeneId":106481483},{"hugoGeneSymbol":"RNU6-964P","entrezGeneId":106479992},{"hugoGeneSymbol":"RNU6-965P","entrezGeneId":106481484},{"hugoGeneSymbol":"RNU6-966P","entrezGeneId":106480625},{"hugoGeneSymbol":"RNU6-967P","entrezGeneId":106479993},{"hugoGeneSymbol":"RNU6-968P","entrezGeneId":106481485},{"hugoGeneSymbol":"RNU6-969P","entrezGeneId":106479994},{"hugoGeneSymbol":"RNU6-970P","entrezGeneId":106481486},{"hugoGeneSymbol":"RNU6-971P","entrezGeneId":106481926},{"hugoGeneSymbol":"RNU6-972P","entrezGeneId":106479995},{"hugoGeneSymbol":"RNU6-973P","entrezGeneId":106479996},{"hugoGeneSymbol":"RNU6-974P","entrezGeneId":106481487},{"hugoGeneSymbol":"RNU6-975P","entrezGeneId":106479997},{"hugoGeneSymbol":"RNU6-976P","entrezGeneId":106481488},{"hugoGeneSymbol":"RNU6-977P","entrezGeneId":106480626},{"hugoGeneSymbol":"RNU6-978P","entrezGeneId":106479998},{"hugoGeneSymbol":"RNU6-979P","entrezGeneId":106479999},{"hugoGeneSymbol":"RNU6-97P","entrezGeneId":106480551},{"hugoGeneSymbol":"RNU6-980P","entrezGeneId":106481489},{"hugoGeneSymbol":"RNU6-982P","entrezGeneId":106481979},{"hugoGeneSymbol":"RNU6-983P","entrezGeneId":106481490},{"hugoGeneSymbol":"RNU6-984P","entrezGeneId":106481927},{"hugoGeneSymbol":"RNU6-985P","entrezGeneId":106480001},{"hugoGeneSymbol":"RNU6-986P","entrezGeneId":106481491},{"hugoGeneSymbol":"RNU6-987P","entrezGeneId":106480002},{"hugoGeneSymbol":"RNU6-988P","entrezGeneId":106480003},{"hugoGeneSymbol":"RNU6-989P","entrezGeneId":106481492},{"hugoGeneSymbol":"RNU6-98P","entrezGeneId":106479609},{"hugoGeneSymbol":"RNU6-990P","entrezGeneId":106480627},{"hugoGeneSymbol":"RNU6-991P","entrezGeneId":106480004},{"hugoGeneSymbol":"RNU6-992P","entrezGeneId":106481493},{"hugoGeneSymbol":"RNU6-993P","entrezGeneId":106480005},{"hugoGeneSymbol":"RNU6-994P","entrezGeneId":106480006},{"hugoGeneSymbol":"RNU6-995P","entrezGeneId":106481494},{"hugoGeneSymbol":"RNU6-996P","entrezGeneId":106481928},{"hugoGeneSymbol":"RNU6-997P","entrezGeneId":106480007},{"hugoGeneSymbol":"RNU6-998P","entrezGeneId":106481495},{"hugoGeneSymbol":"RNU6-999P","entrezGeneId":106480008},{"hugoGeneSymbol":"RNU6-99P","entrezGeneId":106479610},{"hugoGeneSymbol":"RNU6ATAC","entrezGeneId":100151684},{"hugoGeneSymbol":"RNU6ATAC10P","entrezGeneId":106480540},{"hugoGeneSymbol":"RNU6ATAC11P","entrezGeneId":106481162},{"hugoGeneSymbol":"RNU6ATAC12P","entrezGeneId":106479548},{"hugoGeneSymbol":"RNU6ATAC13P","entrezGeneId":106479549},{"hugoGeneSymbol":"RNU6ATAC14P","entrezGeneId":106481163},{"hugoGeneSymbol":"RNU6ATAC15P","entrezGeneId":106481867},{"hugoGeneSymbol":"RNU6ATAC16P","entrezGeneId":106479550},{"hugoGeneSymbol":"RNU6ATAC17P","entrezGeneId":106481164},{"hugoGeneSymbol":"RNU6ATAC18P","entrezGeneId":106479551},{"hugoGeneSymbol":"RNU6ATAC19P","entrezGeneId":106481165},{"hugoGeneSymbol":"RNU6ATAC20P","entrezGeneId":106480541},{"hugoGeneSymbol":"RNU6ATAC21P","entrezGeneId":106479552},{"hugoGeneSymbol":"RNU6ATAC22P","entrezGeneId":106479553},{"hugoGeneSymbol":"RNU6ATAC23P","entrezGeneId":106481166},{"hugoGeneSymbol":"RNU6ATAC24P","entrezGeneId":106479554},{"hugoGeneSymbol":"RNU6ATAC25P","entrezGeneId":106480384},{"hugoGeneSymbol":"RNU6ATAC26P","entrezGeneId":106480542},{"hugoGeneSymbol":"RNU6ATAC27P","entrezGeneId":106481167},{"hugoGeneSymbol":"RNU6ATAC28P","entrezGeneId":106479555},{"hugoGeneSymbol":"RNU6ATAC29P","entrezGeneId":106481168},{"hugoGeneSymbol":"RNU6ATAC2P","entrezGeneId":100151685},{"hugoGeneSymbol":"RNU6ATAC30P","entrezGeneId":106481868},{"hugoGeneSymbol":"RNU6ATAC31P","entrezGeneId":106481169},{"hugoGeneSymbol":"RNU6ATAC32P","entrezGeneId":106479556},{"hugoGeneSymbol":"RNU6ATAC33P","entrezGeneId":106481170},{"hugoGeneSymbol":"RNU6ATAC34P","entrezGeneId":106479557},{"hugoGeneSymbol":"RNU6ATAC35P","entrezGeneId":106481171},{"hugoGeneSymbol":"RNU6ATAC36P","entrezGeneId":106480543},{"hugoGeneSymbol":"RNU6ATAC37P","entrezGeneId":106479558},{"hugoGeneSymbol":"RNU6ATAC38P","entrezGeneId":106479559},{"hugoGeneSymbol":"RNU6ATAC39P","entrezGeneId":106481172},{"hugoGeneSymbol":"RNU6ATAC3P","entrezGeneId":100151686},{"hugoGeneSymbol":"RNU6ATAC40P","entrezGeneId":106479560},{"hugoGeneSymbol":"RNU6ATAC41P","entrezGeneId":106481869},{"hugoGeneSymbol":"RNU6ATAC42P","entrezGeneId":106481173},{"hugoGeneSymbol":"RNU6ATAC4P","entrezGeneId":100151687},{"hugoGeneSymbol":"RNU6ATAC5P","entrezGeneId":100151688},{"hugoGeneSymbol":"RNU6ATAC6P","entrezGeneId":106479545},{"hugoGeneSymbol":"RNU6ATAC7P","entrezGeneId":106479546},{"hugoGeneSymbol":"RNU6ATAC8P","entrezGeneId":106481161},{"hugoGeneSymbol":"RNU6ATAC9P","entrezGeneId":106479547},{"hugoGeneSymbol":"RNU6V","entrezGeneId":6071},{"hugoGeneSymbol":"RNU7-1","entrezGeneId":100147744},{"hugoGeneSymbol":"RNU7-102P","entrezGeneId":106479064},{"hugoGeneSymbol":"RNU7-103P","entrezGeneId":107063544},{"hugoGeneSymbol":"RNU7-104P","entrezGeneId":106480448},{"hugoGeneSymbol":"RNU7-105P","entrezGeneId":106479065},{"hugoGeneSymbol":"RNU7-106P","entrezGeneId":106479066},{"hugoGeneSymbol":"RNU7-107P","entrezGeneId":106479067},{"hugoGeneSymbol":"RNU7-10P","entrezGeneId":100147758},{"hugoGeneSymbol":"RNU7-110P","entrezGeneId":106480815},{"hugoGeneSymbol":"RNU7-111P","entrezGeneId":106481800},{"hugoGeneSymbol":"RNU7-113P","entrezGeneId":106479068},{"hugoGeneSymbol":"RNU7-115P","entrezGeneId":106479069},{"hugoGeneSymbol":"RNU7-116P","entrezGeneId":106480816},{"hugoGeneSymbol":"RNU7-119P","entrezGeneId":106479070},{"hugoGeneSymbol":"RNU7-11P","entrezGeneId":100147759},{"hugoGeneSymbol":"RNU7-120P","entrezGeneId":106480817},{"hugoGeneSymbol":"RNU7-121P","entrezGeneId":106480449},{"hugoGeneSymbol":"RNU7-123P","entrezGeneId":106479071},{"hugoGeneSymbol":"RNU7-124P","entrezGeneId":106479072},{"hugoGeneSymbol":"RNU7-125P","entrezGeneId":106480818},{"hugoGeneSymbol":"RNU7-126P","entrezGeneId":106479073},{"hugoGeneSymbol":"RNU7-127P","entrezGeneId":106480362},{"hugoGeneSymbol":"RNU7-128P","entrezGeneId":106480819},{"hugoGeneSymbol":"RNU7-129P","entrezGeneId":106480450},{"hugoGeneSymbol":"RNU7-12P","entrezGeneId":100147760},{"hugoGeneSymbol":"RNU7-130P","entrezGeneId":106479074},{"hugoGeneSymbol":"RNU7-133P","entrezGeneId":106479075},{"hugoGeneSymbol":"RNU7-134P","entrezGeneId":106480820},{"hugoGeneSymbol":"RNU7-136P","entrezGeneId":106479076},{"hugoGeneSymbol":"RNU7-137P","entrezGeneId":106480821},{"hugoGeneSymbol":"RNU7-138P","entrezGeneId":106481801},{"hugoGeneSymbol":"RNU7-13P","entrezGeneId":100147761},{"hugoGeneSymbol":"RNU7-140P","entrezGeneId":106479077},{"hugoGeneSymbol":"RNU7-141P","entrezGeneId":106480822},{"hugoGeneSymbol":"RNU7-143P","entrezGeneId":106479078},{"hugoGeneSymbol":"RNU7-144P","entrezGeneId":106479079},{"hugoGeneSymbol":"RNU7-147P","entrezGeneId":106480451},{"hugoGeneSymbol":"RNU7-148P","entrezGeneId":106480823},{"hugoGeneSymbol":"RNU7-149P","entrezGeneId":106479080},{"hugoGeneSymbol":"RNU7-14P","entrezGeneId":100147762},{"hugoGeneSymbol":"RNU7-151P","entrezGeneId":106480824},{"hugoGeneSymbol":"RNU7-152P","entrezGeneId":106479081},{"hugoGeneSymbol":"RNU7-153P","entrezGeneId":106479082},{"hugoGeneSymbol":"RNU7-154P","entrezGeneId":106481802},{"hugoGeneSymbol":"RNU7-155P","entrezGeneId":106480825},{"hugoGeneSymbol":"RNU7-156P","entrezGeneId":106479083},{"hugoGeneSymbol":"RNU7-157P","entrezGeneId":106480826},{"hugoGeneSymbol":"RNU7-159P","entrezGeneId":106481747},{"hugoGeneSymbol":"RNU7-15P","entrezGeneId":100147763},{"hugoGeneSymbol":"RNU7-160P","entrezGeneId":106479085},{"hugoGeneSymbol":"RNU7-161P","entrezGeneId":106480452},{"hugoGeneSymbol":"RNU7-164P","entrezGeneId":106479086},{"hugoGeneSymbol":"RNU7-165P","entrezGeneId":106479087},{"hugoGeneSymbol":"RNU7-167P","entrezGeneId":106479088},{"hugoGeneSymbol":"RNU7-169P","entrezGeneId":106480827},{"hugoGeneSymbol":"RNU7-16P","entrezGeneId":100147764},{"hugoGeneSymbol":"RNU7-170P","entrezGeneId":106480453},{"hugoGeneSymbol":"RNU7-171P","entrezGeneId":106479089},{"hugoGeneSymbol":"RNU7-172P","entrezGeneId":106480828},{"hugoGeneSymbol":"RNU7-173P","entrezGeneId":106479090},{"hugoGeneSymbol":"RNU7-174P","entrezGeneId":106480829},{"hugoGeneSymbol":"RNU7-175P","entrezGeneId":106479091},{"hugoGeneSymbol":"RNU7-176P","entrezGeneId":106481803},{"hugoGeneSymbol":"RNU7-179P","entrezGeneId":106479092},{"hugoGeneSymbol":"RNU7-17P","entrezGeneId":100147765},{"hugoGeneSymbol":"RNU7-180P","entrezGeneId":106480830},{"hugoGeneSymbol":"RNU7-181P","entrezGeneId":106479093},{"hugoGeneSymbol":"RNU7-182P","entrezGeneId":106480831},{"hugoGeneSymbol":"RNU7-183P","entrezGeneId":106480454},{"hugoGeneSymbol":"RNU7-185P","entrezGeneId":106479094},{"hugoGeneSymbol":"RNU7-186P","entrezGeneId":106480363},{"hugoGeneSymbol":"RNU7-187P","entrezGeneId":106479095},{"hugoGeneSymbol":"RNU7-188P","entrezGeneId":106480832},{"hugoGeneSymbol":"RNU7-18P","entrezGeneId":100147766},{"hugoGeneSymbol":"RNU7-190P","entrezGeneId":106479096},{"hugoGeneSymbol":"RNU7-192P","entrezGeneId":106480833},{"hugoGeneSymbol":"RNU7-193P","entrezGeneId":106481804},{"hugoGeneSymbol":"RNU7-194P","entrezGeneId":106480834},{"hugoGeneSymbol":"RNU7-195P","entrezGeneId":106479097},{"hugoGeneSymbol":"RNU7-196P","entrezGeneId":106479098},{"hugoGeneSymbol":"RNU7-197P","entrezGeneId":106480455},{"hugoGeneSymbol":"RNU7-19P","entrezGeneId":100147767},{"hugoGeneSymbol":"RNU7-200P","entrezGeneId":106480835},{"hugoGeneSymbol":"RNU7-20P","entrezGeneId":100147768},{"hugoGeneSymbol":"RNU7-21P","entrezGeneId":100147769},{"hugoGeneSymbol":"RNU7-22P","entrezGeneId":100147770},{"hugoGeneSymbol":"RNU7-23P","entrezGeneId":100147771},{"hugoGeneSymbol":"RNU7-24P","entrezGeneId":6074},{"hugoGeneSymbol":"RNU7-25P","entrezGeneId":100147812},{"hugoGeneSymbol":"RNU7-26P","entrezGeneId":100147813},{"hugoGeneSymbol":"RNU7-27P","entrezGeneId":100147814},{"hugoGeneSymbol":"RNU7-28P","entrezGeneId":100147815},{"hugoGeneSymbol":"RNU7-29P","entrezGeneId":100147816},{"hugoGeneSymbol":"RNU7-2P","entrezGeneId":100147745},{"hugoGeneSymbol":"RNU7-30P","entrezGeneId":100147817},{"hugoGeneSymbol":"RNU7-31P","entrezGeneId":100147818},{"hugoGeneSymbol":"RNU7-32P","entrezGeneId":100147819},{"hugoGeneSymbol":"RNU7-33P","entrezGeneId":100147820},{"hugoGeneSymbol":"RNU7-34P","entrezGeneId":100147821},{"hugoGeneSymbol":"RNU7-35P","entrezGeneId":100147822},{"hugoGeneSymbol":"RNU7-36P","entrezGeneId":100147823},{"hugoGeneSymbol":"RNU7-37P","entrezGeneId":100147824},{"hugoGeneSymbol":"RNU7-38P","entrezGeneId":100147825},{"hugoGeneSymbol":"RNU7-39P","entrezGeneId":100147826},{"hugoGeneSymbol":"RNU7-3P","entrezGeneId":100147746},{"hugoGeneSymbol":"RNU7-40P","entrezGeneId":100147827},{"hugoGeneSymbol":"RNU7-41P","entrezGeneId":100147828},{"hugoGeneSymbol":"RNU7-42P","entrezGeneId":100147829},{"hugoGeneSymbol":"RNU7-43P","entrezGeneId":100147830},{"hugoGeneSymbol":"RNU7-44P","entrezGeneId":100147831},{"hugoGeneSymbol":"RNU7-45P","entrezGeneId":100147832},{"hugoGeneSymbol":"RNU7-46P","entrezGeneId":100147833},{"hugoGeneSymbol":"RNU7-47P","entrezGeneId":100147834},{"hugoGeneSymbol":"RNU7-48P","entrezGeneId":100147835},{"hugoGeneSymbol":"RNU7-49P","entrezGeneId":100147836},{"hugoGeneSymbol":"RNU7-4P","entrezGeneId":100147747},{"hugoGeneSymbol":"RNU7-50P","entrezGeneId":100147837},{"hugoGeneSymbol":"RNU7-51P","entrezGeneId":100151647},{"hugoGeneSymbol":"RNU7-52P","entrezGeneId":100151648},{"hugoGeneSymbol":"RNU7-53P","entrezGeneId":100151649},{"hugoGeneSymbol":"RNU7-54P","entrezGeneId":100151650},{"hugoGeneSymbol":"RNU7-55P","entrezGeneId":6075},{"hugoGeneSymbol":"RNU7-56P","entrezGeneId":100151651},{"hugoGeneSymbol":"RNU7-57P","entrezGeneId":100151652},{"hugoGeneSymbol":"RNU7-58P","entrezGeneId":100151653},{"hugoGeneSymbol":"RNU7-59P","entrezGeneId":100151654},{"hugoGeneSymbol":"RNU7-5P","entrezGeneId":100147748},{"hugoGeneSymbol":"RNU7-60P","entrezGeneId":100151655},{"hugoGeneSymbol":"RNU7-61P","entrezGeneId":100151656},{"hugoGeneSymbol":"RNU7-62P","entrezGeneId":100151657},{"hugoGeneSymbol":"RNU7-63P","entrezGeneId":100151658},{"hugoGeneSymbol":"RNU7-64P","entrezGeneId":100151662},{"hugoGeneSymbol":"RNU7-65P","entrezGeneId":100151663},{"hugoGeneSymbol":"RNU7-66P","entrezGeneId":100151664},{"hugoGeneSymbol":"RNU7-67P","entrezGeneId":100151665},{"hugoGeneSymbol":"RNU7-68P","entrezGeneId":6072},{"hugoGeneSymbol":"RNU7-69P","entrezGeneId":100151666},{"hugoGeneSymbol":"RNU7-6P","entrezGeneId":100147749},{"hugoGeneSymbol":"RNU7-70P","entrezGeneId":100151667},{"hugoGeneSymbol":"RNU7-71P","entrezGeneId":100151668},{"hugoGeneSymbol":"RNU7-72P","entrezGeneId":100151669},{"hugoGeneSymbol":"RNU7-73P","entrezGeneId":100151670},{"hugoGeneSymbol":"RNU7-74P","entrezGeneId":100151671},{"hugoGeneSymbol":"RNU7-75P","entrezGeneId":100151672},{"hugoGeneSymbol":"RNU7-76P","entrezGeneId":100151673},{"hugoGeneSymbol":"RNU7-77P","entrezGeneId":100151674},{"hugoGeneSymbol":"RNU7-78P","entrezGeneId":100151675},{"hugoGeneSymbol":"RNU7-79P","entrezGeneId":100151676},{"hugoGeneSymbol":"RNU7-7P","entrezGeneId":100147755},{"hugoGeneSymbol":"RNU7-80P","entrezGeneId":100151677},{"hugoGeneSymbol":"RNU7-81P","entrezGeneId":100151678},{"hugoGeneSymbol":"RNU7-82P","entrezGeneId":100151679},{"hugoGeneSymbol":"RNU7-83P","entrezGeneId":100151680},{"hugoGeneSymbol":"RNU7-84P","entrezGeneId":100151681},{"hugoGeneSymbol":"RNU7-85P","entrezGeneId":100151682},{"hugoGeneSymbol":"RNU7-86P","entrezGeneId":6073},{"hugoGeneSymbol":"RNU7-87P","entrezGeneId":100873842},{"hugoGeneSymbol":"RNU7-88P","entrezGeneId":100873843},{"hugoGeneSymbol":"RNU7-89P","entrezGeneId":100873844},{"hugoGeneSymbol":"RNU7-8P","entrezGeneId":100147756},{"hugoGeneSymbol":"RNU7-90P","entrezGeneId":106479060},{"hugoGeneSymbol":"RNU7-92P","entrezGeneId":106479061},{"hugoGeneSymbol":"RNU7-93P","entrezGeneId":106480813},{"hugoGeneSymbol":"RNU7-94P","entrezGeneId":106481799},{"hugoGeneSymbol":"RNU7-95P","entrezGeneId":106479062},{"hugoGeneSymbol":"RNU7-96P","entrezGeneId":106480361},{"hugoGeneSymbol":"RNU7-97P","entrezGeneId":106479063},{"hugoGeneSymbol":"RNU7-99P","entrezGeneId":106480814},{"hugoGeneSymbol":"RNU7-9P","entrezGeneId":100147757},{"hugoGeneSymbol":"RNVU1-1","entrezGeneId":101954273},{"hugoGeneSymbol":"RNVU1-11","entrezGeneId":6063},{"hugoGeneSymbol":"RNVU1-14","entrezGeneId":101954266},{"hugoGeneSymbol":"RNVU1-15","entrezGeneId":101954267},{"hugoGeneSymbol":"RNVU1-17","entrezGeneId":101954269},{"hugoGeneSymbol":"RNVU1-18","entrezGeneId":26863},{"hugoGeneSymbol":"RNVU1-19","entrezGeneId":101954277},{"hugoGeneSymbol":"RNVU1-20","entrezGeneId":101954268},{"hugoGeneSymbol":"RNVU1-3","entrezGeneId":101954272},{"hugoGeneSymbol":"RNVU1-4","entrezGeneId":101954264},{"hugoGeneSymbol":"RNVU1-6","entrezGeneId":101954276},{"hugoGeneSymbol":"RNVU1-7","entrezGeneId":26864},{"hugoGeneSymbol":"RNVU1-8","entrezGeneId":101447996},{"hugoGeneSymbol":"RNY1","entrezGeneId":6084},{"hugoGeneSymbol":"RNY1P1","entrezGeneId":100873802},{"hugoGeneSymbol":"RNY1P10","entrezGeneId":106480308},{"hugoGeneSymbol":"RNY1P11","entrezGeneId":106481710},{"hugoGeneSymbol":"RNY1P12","entrezGeneId":106480309},{"hugoGeneSymbol":"RNY1P13","entrezGeneId":106480310},{"hugoGeneSymbol":"RNY1P14","entrezGeneId":106480311},{"hugoGeneSymbol":"RNY1P15","entrezGeneId":106481711},{"hugoGeneSymbol":"RNY1P16","entrezGeneId":106480312},{"hugoGeneSymbol":"RNY1P2","entrezGeneId":100862666},{"hugoGeneSymbol":"RNY1P3","entrezGeneId":100873803},{"hugoGeneSymbol":"RNY1P4","entrezGeneId":100873804},{"hugoGeneSymbol":"RNY1P5","entrezGeneId":100862667},{"hugoGeneSymbol":"RNY1P6","entrezGeneId":100873805},{"hugoGeneSymbol":"RNY1P7","entrezGeneId":100873806},{"hugoGeneSymbol":"RNY1P8","entrezGeneId":100873807},{"hugoGeneSymbol":"RNY1P9","entrezGeneId":100874358},{"hugoGeneSymbol":"RNY3","entrezGeneId":6085},{"hugoGeneSymbol":"RNY3P1","entrezGeneId":106478984},{"hugoGeneSymbol":"RNY3P10","entrezGeneId":100873820},{"hugoGeneSymbol":"RNY3P11","entrezGeneId":106481713},{"hugoGeneSymbol":"RNY3P12","entrezGeneId":106480315},{"hugoGeneSymbol":"RNY3P13","entrezGeneId":106481714},{"hugoGeneSymbol":"RNY3P14","entrezGeneId":106480316},{"hugoGeneSymbol":"RNY3P15","entrezGeneId":107178919},{"hugoGeneSymbol":"RNY3P16","entrezGeneId":106480686},{"hugoGeneSymbol":"RNY3P2","entrezGeneId":100862668},{"hugoGeneSymbol":"RNY3P3","entrezGeneId":100862669},{"hugoGeneSymbol":"RNY3P4","entrezGeneId":100873808},{"hugoGeneSymbol":"RNY3P5","entrezGeneId":100873809},{"hugoGeneSymbol":"RNY3P6","entrezGeneId":100873810},{"hugoGeneSymbol":"RNY3P7","entrezGeneId":100862670},{"hugoGeneSymbol":"RNY3P8","entrezGeneId":106478985},{"hugoGeneSymbol":"RNY3P9","entrezGeneId":100862672},{"hugoGeneSymbol":"RNY4","entrezGeneId":6086},{"hugoGeneSymbol":"RNY4P1","entrezGeneId":6087},{"hugoGeneSymbol":"RNY4P10","entrezGeneId":100379592},{"hugoGeneSymbol":"RNY4P11","entrezGeneId":100379288},{"hugoGeneSymbol":"RNY4P13","entrezGeneId":100379296},{"hugoGeneSymbol":"RNY4P14","entrezGeneId":100379584},{"hugoGeneSymbol":"RNY4P15","entrezGeneId":100379291},{"hugoGeneSymbol":"RNY4P16","entrezGeneId":100431173},{"hugoGeneSymbol":"RNY4P17","entrezGeneId":100379564},{"hugoGeneSymbol":"RNY4P18","entrezGeneId":100379298},{"hugoGeneSymbol":"RNY4P19","entrezGeneId":100169834},{"hugoGeneSymbol":"RNY4P2","entrezGeneId":6088},{"hugoGeneSymbol":"RNY4P20","entrezGeneId":100379378},{"hugoGeneSymbol":"RNY4P21","entrezGeneId":100862663},{"hugoGeneSymbol":"RNY4P22","entrezGeneId":100873800},{"hugoGeneSymbol":"RNY4P23","entrezGeneId":100873801},{"hugoGeneSymbol":"RNY4P24","entrezGeneId":100862664},{"hugoGeneSymbol":"RNY4P25","entrezGeneId":100862665},{"hugoGeneSymbol":"RNY4P26","entrezGeneId":100873819},{"hugoGeneSymbol":"RNY4P27","entrezGeneId":100873821},{"hugoGeneSymbol":"RNY4P28","entrezGeneId":100873822},{"hugoGeneSymbol":"RNY4P29","entrezGeneId":100873823},{"hugoGeneSymbol":"RNY4P3","entrezGeneId":6089},{"hugoGeneSymbol":"RNY4P30","entrezGeneId":100862673},{"hugoGeneSymbol":"RNY4P31","entrezGeneId":100862674},{"hugoGeneSymbol":"RNY4P34","entrezGeneId":106481712},{"hugoGeneSymbol":"RNY4P36","entrezGeneId":106480313},{"hugoGeneSymbol":"RNY4P37","entrezGeneId":106480314},{"hugoGeneSymbol":"RNY4P4","entrezGeneId":100379297},{"hugoGeneSymbol":"RNY4P5","entrezGeneId":100379299},{"hugoGeneSymbol":"RNY4P6","entrezGeneId":100379287},{"hugoGeneSymbol":"RNY4P7","entrezGeneId":100169850},{"hugoGeneSymbol":"RNY4P8","entrezGeneId":100379295},{"hugoGeneSymbol":"RNY4P9","entrezGeneId":100379300},{"hugoGeneSymbol":"RNY5","entrezGeneId":6090},{"hugoGeneSymbol":"RNY5P1","entrezGeneId":100379666},{"hugoGeneSymbol":"RNY5P10","entrezGeneId":100169837},{"hugoGeneSymbol":"RNY5P2","entrezGeneId":100381208},{"hugoGeneSymbol":"RNY5P3","entrezGeneId":100379664},{"hugoGeneSymbol":"RNY5P4","entrezGeneId":100380271},{"hugoGeneSymbol":"RNY5P5","entrezGeneId":100379658},{"hugoGeneSymbol":"RNY5P6","entrezGeneId":100379663},{"hugoGeneSymbol":"RNY5P7","entrezGeneId":100169835},{"hugoGeneSymbol":"RNY5P8","entrezGeneId":100380878},{"hugoGeneSymbol":"RNY5P9","entrezGeneId":100169836},{"hugoGeneSymbol":"ROBO1","entrezGeneId":6091},{"hugoGeneSymbol":"ROBO2","entrezGeneId":6092},{"hugoGeneSymbol":"ROBO2P1","entrezGeneId":106480790},{"hugoGeneSymbol":"ROBO3","entrezGeneId":64221},{"hugoGeneSymbol":"ROBO4","entrezGeneId":54538},{"hugoGeneSymbol":"ROCK1","entrezGeneId":6093},{"hugoGeneSymbol":"ROCK1P1","entrezGeneId":727758},{"hugoGeneSymbol":"ROCK2","entrezGeneId":9475},{"hugoGeneSymbol":"ROCR","entrezGeneId":102723505},{"hugoGeneSymbol":"ROGDI","entrezGeneId":79641},{"hugoGeneSymbol":"ROM1","entrezGeneId":6094},{"hugoGeneSymbol":"ROMO1","entrezGeneId":140823},{"hugoGeneSymbol":"ROPN1","entrezGeneId":54763},{"hugoGeneSymbol":"ROPN1B","entrezGeneId":152015},{"hugoGeneSymbol":"ROPN1L","entrezGeneId":83853},{"hugoGeneSymbol":"ROPN1L-AS1","entrezGeneId":100505845},{"hugoGeneSymbol":"ROR1","entrezGeneId":4919},{"hugoGeneSymbol":"ROR1-AS1","entrezGeneId":101927034},{"hugoGeneSymbol":"ROR2","entrezGeneId":4920},{"hugoGeneSymbol":"RORA","entrezGeneId":6095},{"hugoGeneSymbol":"RORA-AS1","entrezGeneId":101928784},{"hugoGeneSymbol":"RORA-AS2","entrezGeneId":100996876},{"hugoGeneSymbol":"RORB","entrezGeneId":6096},{"hugoGeneSymbol":"RORB-AS1","entrezGeneId":103752585},{"hugoGeneSymbol":"RORC","entrezGeneId":6097},{"hugoGeneSymbol":"ROS1","entrezGeneId":6098},{"hugoGeneSymbol":"RP1","entrezGeneId":6101},{"hugoGeneSymbol":"RP1L1","entrezGeneId":94137},{"hugoGeneSymbol":"RP2","entrezGeneId":6102},{"hugoGeneSymbol":"RP22","entrezGeneId":6114},{"hugoGeneSymbol":"RP24","entrezGeneId":6116},{"hugoGeneSymbol":"RP29","entrezGeneId":54110},{"hugoGeneSymbol":"RP32","entrezGeneId":641433},{"hugoGeneSymbol":"RP34","entrezGeneId":777642},{"hugoGeneSymbol":"RP35","entrezGeneId":109729091},{"hugoGeneSymbol":"RP52","entrezGeneId":109729108},{"hugoGeneSymbol":"RP6","entrezGeneId":6104},{"hugoGeneSymbol":"RP63","entrezGeneId":100862681},{"hugoGeneSymbol":"RP9","entrezGeneId":6100},{"hugoGeneSymbol":"RP9P","entrezGeneId":441212},{"hugoGeneSymbol":"RPA1","entrezGeneId":6117},{"hugoGeneSymbol":"RPA2","entrezGeneId":6118},{"hugoGeneSymbol":"RPA2P1","entrezGeneId":326628},{"hugoGeneSymbol":"RPA2P2","entrezGeneId":389990},{"hugoGeneSymbol":"RPA2P3","entrezGeneId":100420359},{"hugoGeneSymbol":"RPA3","entrezGeneId":6119},{"hugoGeneSymbol":"RPA4","entrezGeneId":29935},{"hugoGeneSymbol":"RPAIN","entrezGeneId":84268},{"hugoGeneSymbol":"RPAP1","entrezGeneId":26015},{"hugoGeneSymbol":"RPAP2","entrezGeneId":79871},{"hugoGeneSymbol":"RPAP2P1","entrezGeneId":100272220},{"hugoGeneSymbol":"RPAP3","entrezGeneId":79657},{"hugoGeneSymbol":"RPARP-AS1","entrezGeneId":100505761},{"hugoGeneSymbol":"RPE","entrezGeneId":6120},{"hugoGeneSymbol":"RPE65","entrezGeneId":6121},{"hugoGeneSymbol":"RPEL1","entrezGeneId":729020},{"hugoGeneSymbol":"RPEP1","entrezGeneId":100420512},{"hugoGeneSymbol":"RPEP2","entrezGeneId":645065},{"hugoGeneSymbol":"RPEP3","entrezGeneId":100420555},{"hugoGeneSymbol":"RPEP4","entrezGeneId":100420665},{"hugoGeneSymbol":"RPEP5","entrezGeneId":106481798},{"hugoGeneSymbol":"RPEP6","entrezGeneId":100420590},{"hugoGeneSymbol":"RPF1","entrezGeneId":80135},{"hugoGeneSymbol":"RPF2","entrezGeneId":84154},{"hugoGeneSymbol":"RPF2P1","entrezGeneId":729608},{"hugoGeneSymbol":"RPF2P2","entrezGeneId":100128462},{"hugoGeneSymbol":"RPGR","entrezGeneId":6103},{"hugoGeneSymbol":"RPGRIP1","entrezGeneId":57096},{"hugoGeneSymbol":"RPGRIP1L","entrezGeneId":23322},{"hugoGeneSymbol":"RPH3A","entrezGeneId":22895},{"hugoGeneSymbol":"RPH3AL","entrezGeneId":9501},{"hugoGeneSymbol":"RPIA","entrezGeneId":22934},{"hugoGeneSymbol":"RPIAP1","entrezGeneId":619449},{"hugoGeneSymbol":"RPL10","entrezGeneId":6134},{"hugoGeneSymbol":"RPL10A","entrezGeneId":4736},{"hugoGeneSymbol":"RPL10AP1","entrezGeneId":319135},{"hugoGeneSymbol":"RPL10AP10","entrezGeneId":391836},{"hugoGeneSymbol":"RPL10AP11","entrezGeneId":392206},{"hugoGeneSymbol":"RPL10AP12","entrezGeneId":401863},{"hugoGeneSymbol":"RPL10AP13","entrezGeneId":100271602},{"hugoGeneSymbol":"RPL10AP2","entrezGeneId":253986},{"hugoGeneSymbol":"RPL10AP3","entrezGeneId":137107},{"hugoGeneSymbol":"RPL10AP4","entrezGeneId":343301},{"hugoGeneSymbol":"RPL10AP5","entrezGeneId":645998},{"hugoGeneSymbol":"RPL10AP6","entrezGeneId":100128936},{"hugoGeneSymbol":"RPL10AP7","entrezGeneId":100128646},{"hugoGeneSymbol":"RPL10AP8","entrezGeneId":644154},{"hugoGeneSymbol":"RPL10AP9","entrezGeneId":728979},{"hugoGeneSymbol":"RPL10L","entrezGeneId":140801},{"hugoGeneSymbol":"RPL10P1","entrezGeneId":100288252},{"hugoGeneSymbol":"RPL10P10","entrezGeneId":100129930},{"hugoGeneSymbol":"RPL10P11","entrezGeneId":100128030},{"hugoGeneSymbol":"RPL10P12","entrezGeneId":645422},{"hugoGeneSymbol":"RPL10P13","entrezGeneId":390345},{"hugoGeneSymbol":"RPL10P14","entrezGeneId":390729},{"hugoGeneSymbol":"RPL10P15","entrezGeneId":100129975},{"hugoGeneSymbol":"RPL10P16","entrezGeneId":284393},{"hugoGeneSymbol":"RPL10P17","entrezGeneId":390998},{"hugoGeneSymbol":"RPL10P18","entrezGeneId":100630920},{"hugoGeneSymbol":"RPL10P19","entrezGeneId":645960},{"hugoGeneSymbol":"RPL10P2","entrezGeneId":442171},{"hugoGeneSymbol":"RPL10P3","entrezGeneId":619445},{"hugoGeneSymbol":"RPL10P4","entrezGeneId":391151},{"hugoGeneSymbol":"RPL10P5","entrezGeneId":644911},{"hugoGeneSymbol":"RPL10P6","entrezGeneId":285176},{"hugoGeneSymbol":"RPL10P7","entrezGeneId":442086},{"hugoGeneSymbol":"RPL10P8","entrezGeneId":644937},{"hugoGeneSymbol":"RPL10P9","entrezGeneId":389342},{"hugoGeneSymbol":"RPL11","entrezGeneId":6135},{"hugoGeneSymbol":"RPL11P1","entrezGeneId":100133170},{"hugoGeneSymbol":"RPL11P2","entrezGeneId":133629},{"hugoGeneSymbol":"RPL11P3","entrezGeneId":100271271},{"hugoGeneSymbol":"RPL11P4","entrezGeneId":100271272},{"hugoGeneSymbol":"RPL11P5","entrezGeneId":643499},{"hugoGeneSymbol":"RPL12","entrezGeneId":6136},{"hugoGeneSymbol":"RPL12P1","entrezGeneId":729727},{"hugoGeneSymbol":"RPL12P10","entrezGeneId":392872},{"hugoGeneSymbol":"RPL12P11","entrezGeneId":128467},{"hugoGeneSymbol":"RPL12P12","entrezGeneId":85824},{"hugoGeneSymbol":"RPL12P13","entrezGeneId":100129926},{"hugoGeneSymbol":"RPL12P14","entrezGeneId":729500},{"hugoGeneSymbol":"RPL12P15","entrezGeneId":100270920},{"hugoGeneSymbol":"RPL12P16","entrezGeneId":100130447},{"hugoGeneSymbol":"RPL12P17","entrezGeneId":344471},{"hugoGeneSymbol":"RPL12P18","entrezGeneId":729760},{"hugoGeneSymbol":"RPL12P19","entrezGeneId":100129982},{"hugoGeneSymbol":"RPL12P2","entrezGeneId":646875},{"hugoGeneSymbol":"RPL12P20","entrezGeneId":100270923},{"hugoGeneSymbol":"RPL12P21","entrezGeneId":100270921},{"hugoGeneSymbol":"RPL12P22","entrezGeneId":100270922},{"hugoGeneSymbol":"RPL12P23","entrezGeneId":100270925},{"hugoGeneSymbol":"RPL12P24","entrezGeneId":100270924},{"hugoGeneSymbol":"RPL12P25","entrezGeneId":100270926},{"hugoGeneSymbol":"RPL12P26","entrezGeneId":100271404},{"hugoGeneSymbol":"RPL12P27","entrezGeneId":644202},{"hugoGeneSymbol":"RPL12P28","entrezGeneId":100271273},{"hugoGeneSymbol":"RPL12P29","entrezGeneId":100271274},{"hugoGeneSymbol":"RPL12P3","entrezGeneId":128862},{"hugoGeneSymbol":"RPL12P30","entrezGeneId":100271405},{"hugoGeneSymbol":"RPL12P31","entrezGeneId":100271406},{"hugoGeneSymbol":"RPL12P32","entrezGeneId":100132795},{"hugoGeneSymbol":"RPL12P33","entrezGeneId":643550},{"hugoGeneSymbol":"RPL12P34","entrezGeneId":100271407},{"hugoGeneSymbol":"RPL12P35","entrezGeneId":400389},{"hugoGeneSymbol":"RPL12P36","entrezGeneId":100271408},{"hugoGeneSymbol":"RPL12P37","entrezGeneId":100129801},{"hugoGeneSymbol":"RPL12P38","entrezGeneId":645688},{"hugoGeneSymbol":"RPL12P39","entrezGeneId":100271410},{"hugoGeneSymbol":"RPL12P4","entrezGeneId":116149},{"hugoGeneSymbol":"RPL12P40","entrezGeneId":646898},{"hugoGeneSymbol":"RPL12P41","entrezGeneId":100133139},{"hugoGeneSymbol":"RPL12P42","entrezGeneId":100129394},{"hugoGeneSymbol":"RPL12P43","entrezGeneId":100271387},{"hugoGeneSymbol":"RPL12P44","entrezGeneId":100419392},{"hugoGeneSymbol":"RPL12P45","entrezGeneId":100419477},{"hugoGeneSymbol":"RPL12P46","entrezGeneId":107075251},{"hugoGeneSymbol":"RPL12P47","entrezGeneId":107075115},{"hugoGeneSymbol":"RPL12P48","entrezGeneId":101926938},{"hugoGeneSymbol":"RPL12P49","entrezGeneId":107075252},{"hugoGeneSymbol":"RPL12P5","entrezGeneId":319142},{"hugoGeneSymbol":"RPL12P50","entrezGeneId":107075212},{"hugoGeneSymbol":"RPL12P6","entrezGeneId":440176},{"hugoGeneSymbol":"RPL12P7","entrezGeneId":326275},{"hugoGeneSymbol":"RPL12P8","entrezGeneId":645161},{"hugoGeneSymbol":"RPL12P9","entrezGeneId":654376},{"hugoGeneSymbol":"RPL13","entrezGeneId":6137},{"hugoGeneSymbol":"RPL13A","entrezGeneId":23521},{"hugoGeneSymbol":"RPL13AP","entrezGeneId":387043},{"hugoGeneSymbol":"RPL13AP10","entrezGeneId":100132906},{"hugoGeneSymbol":"RPL13AP11","entrezGeneId":100271276},{"hugoGeneSymbol":"RPL13AP12","entrezGeneId":100271277},{"hugoGeneSymbol":"RPL13AP13","entrezGeneId":402214},{"hugoGeneSymbol":"RPL13AP14","entrezGeneId":100271278},{"hugoGeneSymbol":"RPL13AP15","entrezGeneId":100271279},{"hugoGeneSymbol":"RPL13AP16","entrezGeneId":100129553},{"hugoGeneSymbol":"RPL13AP17","entrezGeneId":399670},{"hugoGeneSymbol":"RPL13AP18","entrezGeneId":402342},{"hugoGeneSymbol":"RPL13AP19","entrezGeneId":100132924},{"hugoGeneSymbol":"RPL13AP2","entrezGeneId":326278},{"hugoGeneSymbol":"RPL13AP20","entrezGeneId":387841},{"hugoGeneSymbol":"RPL13AP21","entrezGeneId":100129799},{"hugoGeneSymbol":"RPL13AP22","entrezGeneId":441632},{"hugoGeneSymbol":"RPL13AP23","entrezGeneId":441641},{"hugoGeneSymbol":"RPL13AP24","entrezGeneId":100271603},{"hugoGeneSymbol":"RPL13AP25","entrezGeneId":100287887},{"hugoGeneSymbol":"RPL13AP26","entrezGeneId":729212},{"hugoGeneSymbol":"RPL13AP3","entrezGeneId":645683},{"hugoGeneSymbol":"RPL13AP5","entrezGeneId":728658},{"hugoGeneSymbol":"RPL13AP6","entrezGeneId":644511},{"hugoGeneSymbol":"RPL13AP7","entrezGeneId":284821},{"hugoGeneSymbol":"RPL13AP8","entrezGeneId":727831},{"hugoGeneSymbol":"RPL13AP9","entrezGeneId":100271137},{"hugoGeneSymbol":"RPL13P","entrezGeneId":387044},{"hugoGeneSymbol":"RPL13P10","entrezGeneId":100133108},{"hugoGeneSymbol":"RPL13P11","entrezGeneId":100130225},{"hugoGeneSymbol":"RPL13P12","entrezGeneId":388344},{"hugoGeneSymbol":"RPL13P13","entrezGeneId":100129796},{"hugoGeneSymbol":"RPL13P14","entrezGeneId":100130374},{"hugoGeneSymbol":"RPL13P2","entrezGeneId":128500},{"hugoGeneSymbol":"RPL13P4","entrezGeneId":654383},{"hugoGeneSymbol":"RPL13P5","entrezGeneId":283345},{"hugoGeneSymbol":"RPL13P6","entrezGeneId":100129176},{"hugoGeneSymbol":"RPL13P7","entrezGeneId":391140},{"hugoGeneSymbol":"RPL13P8","entrezGeneId":100270928},{"hugoGeneSymbol":"RPL13P9","entrezGeneId":100270927},{"hugoGeneSymbol":"RPL14","entrezGeneId":9045},{"hugoGeneSymbol":"RPL14P1","entrezGeneId":144581},{"hugoGeneSymbol":"RPL14P2","entrezGeneId":100270930},{"hugoGeneSymbol":"RPL14P3","entrezGeneId":730747},{"hugoGeneSymbol":"RPL14P4","entrezGeneId":100271282},{"hugoGeneSymbol":"RPL14P5","entrezGeneId":442442},{"hugoGeneSymbol":"RPL15","entrezGeneId":6138},{"hugoGeneSymbol":"RPL15P1","entrezGeneId":128756},{"hugoGeneSymbol":"RPL15P11","entrezGeneId":402694},{"hugoGeneSymbol":"RPL15P12","entrezGeneId":100131958},{"hugoGeneSymbol":"RPL15P13","entrezGeneId":100131338},{"hugoGeneSymbol":"RPL15P14","entrezGeneId":100271283},{"hugoGeneSymbol":"RPL15P15","entrezGeneId":100128347},{"hugoGeneSymbol":"RPL15P16","entrezGeneId":100127949},{"hugoGeneSymbol":"RPL15P17","entrezGeneId":728002},{"hugoGeneSymbol":"RPL15P18","entrezGeneId":728088},{"hugoGeneSymbol":"RPL15P19","entrezGeneId":100131797},{"hugoGeneSymbol":"RPL15P2","entrezGeneId":326279},{"hugoGeneSymbol":"RPL15P20","entrezGeneId":646672},{"hugoGeneSymbol":"RPL15P21","entrezGeneId":100132722},{"hugoGeneSymbol":"RPL15P22","entrezGeneId":100130624},{"hugoGeneSymbol":"RPL15P3","entrezGeneId":653232},{"hugoGeneSymbol":"RPL15P4","entrezGeneId":100129921},{"hugoGeneSymbol":"RPL15P5","entrezGeneId":100127993},{"hugoGeneSymbol":"RPL15P6","entrezGeneId":100270933},{"hugoGeneSymbol":"RPL15P7","entrezGeneId":728576},{"hugoGeneSymbol":"RPL15P8","entrezGeneId":100270934},{"hugoGeneSymbol":"RPL15P9","entrezGeneId":100270935},{"hugoGeneSymbol":"RPL17","entrezGeneId":6139},{"hugoGeneSymbol":"RPL17-C18ORF32","entrezGeneId":100526842},{"hugoGeneSymbol":"RPL17P1","entrezGeneId":140748},{"hugoGeneSymbol":"RPL17P10","entrezGeneId":100270936},{"hugoGeneSymbol":"RPL17P11","entrezGeneId":100270937},{"hugoGeneSymbol":"RPL17P12","entrezGeneId":100270938},{"hugoGeneSymbol":"RPL17P13","entrezGeneId":100270939},{"hugoGeneSymbol":"RPL17P14","entrezGeneId":100270941},{"hugoGeneSymbol":"RPL17P15","entrezGeneId":100128117},{"hugoGeneSymbol":"RPL17P16","entrezGeneId":729349},{"hugoGeneSymbol":"RPL17P17","entrezGeneId":100270943},{"hugoGeneSymbol":"RPL17P18","entrezGeneId":100129657},{"hugoGeneSymbol":"RPL17P19","entrezGeneId":100271150},{"hugoGeneSymbol":"RPL17P2","entrezGeneId":652974},{"hugoGeneSymbol":"RPL17P20","entrezGeneId":391655},{"hugoGeneSymbol":"RPL17P21","entrezGeneId":100271151},{"hugoGeneSymbol":"RPL17P22","entrezGeneId":727984},{"hugoGeneSymbol":"RPL17P23","entrezGeneId":100271152},{"hugoGeneSymbol":"RPL17P24","entrezGeneId":100271153},{"hugoGeneSymbol":"RPL17P25","entrezGeneId":442232},{"hugoGeneSymbol":"RPL17P26","entrezGeneId":100129784},{"hugoGeneSymbol":"RPL17P27","entrezGeneId":202789},{"hugoGeneSymbol":"RPL17P28","entrezGeneId":100270940},{"hugoGeneSymbol":"RPL17P29","entrezGeneId":100271154},{"hugoGeneSymbol":"RPL17P3","entrezGeneId":326286},{"hugoGeneSymbol":"RPL17P30","entrezGeneId":100271155},{"hugoGeneSymbol":"RPL17P31","entrezGeneId":100271156},{"hugoGeneSymbol":"RPL17P32","entrezGeneId":100270942},{"hugoGeneSymbol":"RPL17P33","entrezGeneId":646909},{"hugoGeneSymbol":"RPL17P34","entrezGeneId":643863},{"hugoGeneSymbol":"RPL17P35","entrezGeneId":100271284},{"hugoGeneSymbol":"RPL17P36","entrezGeneId":729340},{"hugoGeneSymbol":"RPL17P37","entrezGeneId":100271411},{"hugoGeneSymbol":"RPL17P38","entrezGeneId":100271417},{"hugoGeneSymbol":"RPL17P39","entrezGeneId":645296},{"hugoGeneSymbol":"RPL17P4","entrezGeneId":326288},{"hugoGeneSymbol":"RPL17P40","entrezGeneId":100271413},{"hugoGeneSymbol":"RPL17P41","entrezGeneId":100132645},{"hugoGeneSymbol":"RPL17P42","entrezGeneId":100271418},{"hugoGeneSymbol":"RPL17P43","entrezGeneId":729259},{"hugoGeneSymbol":"RPL17P44","entrezGeneId":100129584},{"hugoGeneSymbol":"RPL17P45","entrezGeneId":100271414},{"hugoGeneSymbol":"RPL17P46","entrezGeneId":100271419},{"hugoGeneSymbol":"RPL17P47","entrezGeneId":100271415},{"hugoGeneSymbol":"RPL17P48","entrezGeneId":100271416},{"hugoGeneSymbol":"RPL17P49","entrezGeneId":100271388},{"hugoGeneSymbol":"RPL17P5","entrezGeneId":388132},{"hugoGeneSymbol":"RPL17P50","entrezGeneId":729046},{"hugoGeneSymbol":"RPL17P51","entrezGeneId":106480245},{"hugoGeneSymbol":"RPL17P6","entrezGeneId":645441},{"hugoGeneSymbol":"RPL17P7","entrezGeneId":100132742},{"hugoGeneSymbol":"RPL17P8","entrezGeneId":730255},{"hugoGeneSymbol":"RPL17P9","entrezGeneId":729301},{"hugoGeneSymbol":"RPL18","entrezGeneId":6141},{"hugoGeneSymbol":"RPL18A","entrezGeneId":6142},{"hugoGeneSymbol":"RPL18AP1","entrezGeneId":326289},{"hugoGeneSymbol":"RPL18AP10","entrezGeneId":100271285},{"hugoGeneSymbol":"RPL18AP11","entrezGeneId":100127999},{"hugoGeneSymbol":"RPL18AP12","entrezGeneId":100271604},{"hugoGeneSymbol":"RPL18AP13","entrezGeneId":646189},{"hugoGeneSymbol":"RPL18AP14","entrezGeneId":100271420},{"hugoGeneSymbol":"RPL18AP15","entrezGeneId":392522},{"hugoGeneSymbol":"RPL18AP16","entrezGeneId":347544},{"hugoGeneSymbol":"RPL18AP17","entrezGeneId":100873859},{"hugoGeneSymbol":"RPL18AP2","entrezGeneId":387494},{"hugoGeneSymbol":"RPL18AP3","entrezGeneId":390354},{"hugoGeneSymbol":"RPL18AP4","entrezGeneId":127545},{"hugoGeneSymbol":"RPL18AP5","entrezGeneId":729955},{"hugoGeneSymbol":"RPL18AP6","entrezGeneId":285053},{"hugoGeneSymbol":"RPL18AP7","entrezGeneId":100133038},{"hugoGeneSymbol":"RPL18AP8","entrezGeneId":644082},{"hugoGeneSymbol":"RPL18AP9","entrezGeneId":731642},{"hugoGeneSymbol":"RPL18P1","entrezGeneId":326291},{"hugoGeneSymbol":"RPL18P10","entrezGeneId":100271286},{"hugoGeneSymbol":"RPL18P11","entrezGeneId":390612},{"hugoGeneSymbol":"RPL18P12","entrezGeneId":390671},{"hugoGeneSymbol":"RPL18P13","entrezGeneId":441775},{"hugoGeneSymbol":"RPL18P2","entrezGeneId":100129421},{"hugoGeneSymbol":"RPL18P3","entrezGeneId":100129374},{"hugoGeneSymbol":"RPL18P4","entrezGeneId":392979},{"hugoGeneSymbol":"RPL18P5","entrezGeneId":100270944},{"hugoGeneSymbol":"RPL18P6","entrezGeneId":100131333},{"hugoGeneSymbol":"RPL18P7","entrezGeneId":100270945},{"hugoGeneSymbol":"RPL18P8","entrezGeneId":100129670},{"hugoGeneSymbol":"RPL18P9","entrezGeneId":100129645},{"hugoGeneSymbol":"RPL19","entrezGeneId":6143},{"hugoGeneSymbol":"RPL19P1","entrezGeneId":140759},{"hugoGeneSymbol":"RPL19P10","entrezGeneId":100270948},{"hugoGeneSymbol":"RPL19P11","entrezGeneId":100270950},{"hugoGeneSymbol":"RPL19P12","entrezGeneId":100129424},{"hugoGeneSymbol":"RPL19P13","entrezGeneId":392193},{"hugoGeneSymbol":"RPL19P14","entrezGeneId":100270951},{"hugoGeneSymbol":"RPL19P15","entrezGeneId":642306},{"hugoGeneSymbol":"RPL19P16","entrezGeneId":646255},{"hugoGeneSymbol":"RPL19P17","entrezGeneId":100271287},{"hugoGeneSymbol":"RPL19P18","entrezGeneId":100271288},{"hugoGeneSymbol":"RPL19P19","entrezGeneId":646820},{"hugoGeneSymbol":"RPL19P2","entrezGeneId":654382},{"hugoGeneSymbol":"RPL19P20","entrezGeneId":392451},{"hugoGeneSymbol":"RPL19P21","entrezGeneId":392557},{"hugoGeneSymbol":"RPL19P3","entrezGeneId":100131759},{"hugoGeneSymbol":"RPL19P4","entrezGeneId":646710},{"hugoGeneSymbol":"RPL19P5","entrezGeneId":646532},{"hugoGeneSymbol":"RPL19P6","entrezGeneId":100270946},{"hugoGeneSymbol":"RPL19P7","entrezGeneId":100131527},{"hugoGeneSymbol":"RPL19P8","entrezGeneId":391719},{"hugoGeneSymbol":"RPL19P9","entrezGeneId":653314},{"hugoGeneSymbol":"RPL21","entrezGeneId":6144},{"hugoGeneSymbol":"RPL21P1","entrezGeneId":6145},{"hugoGeneSymbol":"RPL21P10","entrezGeneId":319143},{"hugoGeneSymbol":"RPL21P100","entrezGeneId":100271430},{"hugoGeneSymbol":"RPL21P101","entrezGeneId":100271431},{"hugoGeneSymbol":"RPL21P102","entrezGeneId":100271432},{"hugoGeneSymbol":"RPL21P103","entrezGeneId":100271433},{"hugoGeneSymbol":"RPL21P104","entrezGeneId":100271435},{"hugoGeneSymbol":"RPL21P105","entrezGeneId":728693},{"hugoGeneSymbol":"RPL21P106","entrezGeneId":643264},{"hugoGeneSymbol":"RPL21P107","entrezGeneId":644627},{"hugoGeneSymbol":"RPL21P108","entrezGeneId":100271434},{"hugoGeneSymbol":"RPL21P109","entrezGeneId":100271437},{"hugoGeneSymbol":"RPL21P11","entrezGeneId":157206},{"hugoGeneSymbol":"RPL21P110","entrezGeneId":100271438},{"hugoGeneSymbol":"RPL21P111","entrezGeneId":100271439},{"hugoGeneSymbol":"RPL21P112","entrezGeneId":100270753},{"hugoGeneSymbol":"RPL21P113","entrezGeneId":100271440},{"hugoGeneSymbol":"RPL21P114","entrezGeneId":100271441},{"hugoGeneSymbol":"RPL21P115","entrezGeneId":100271443},{"hugoGeneSymbol":"RPL21P116","entrezGeneId":100271444},{"hugoGeneSymbol":"RPL21P117","entrezGeneId":729241},{"hugoGeneSymbol":"RPL21P118","entrezGeneId":100271446},{"hugoGeneSymbol":"RPL21P119","entrezGeneId":653737},{"hugoGeneSymbol":"RPL21P12","entrezGeneId":122409},{"hugoGeneSymbol":"RPL21P120","entrezGeneId":731688},{"hugoGeneSymbol":"RPL21P121","entrezGeneId":100271445},{"hugoGeneSymbol":"RPL21P122","entrezGeneId":100271447},{"hugoGeneSymbol":"RPL21P123","entrezGeneId":100271448},{"hugoGeneSymbol":"RPL21P124","entrezGeneId":100271450},{"hugoGeneSymbol":"RPL21P125","entrezGeneId":100129685},{"hugoGeneSymbol":"RPL21P126","entrezGeneId":100271449},{"hugoGeneSymbol":"RPL21P127","entrezGeneId":100271452},{"hugoGeneSymbol":"RPL21P128","entrezGeneId":440487},{"hugoGeneSymbol":"RPL21P129","entrezGeneId":100271451},{"hugoGeneSymbol":"RPL21P13","entrezGeneId":319144},{"hugoGeneSymbol":"RPL21P130","entrezGeneId":100271453},{"hugoGeneSymbol":"RPL21P131","entrezGeneId":388532},{"hugoGeneSymbol":"RPL21P132","entrezGeneId":100271390},{"hugoGeneSymbol":"RPL21P133","entrezGeneId":100271391},{"hugoGeneSymbol":"RPL21P134","entrezGeneId":728782},{"hugoGeneSymbol":"RPL21P135","entrezGeneId":100419391},{"hugoGeneSymbol":"RPL21P136","entrezGeneId":100419521},{"hugoGeneSymbol":"RPL21P14","entrezGeneId":729208},{"hugoGeneSymbol":"RPL21P15","entrezGeneId":654385},{"hugoGeneSymbol":"RPL21P16","entrezGeneId":729402},{"hugoGeneSymbol":"RPL21P17","entrezGeneId":727810},{"hugoGeneSymbol":"RPL21P18","entrezGeneId":729484},{"hugoGeneSymbol":"RPL21P19","entrezGeneId":641293},{"hugoGeneSymbol":"RPL21P2","entrezGeneId":140715},{"hugoGeneSymbol":"RPL21P20","entrezGeneId":388621},{"hugoGeneSymbol":"RPL21P21","entrezGeneId":100270877},{"hugoGeneSymbol":"RPL21P22","entrezGeneId":100270878},{"hugoGeneSymbol":"RPL21P23","entrezGeneId":100270879},{"hugoGeneSymbol":"RPL21P24","entrezGeneId":100270880},{"hugoGeneSymbol":"RPL21P25","entrezGeneId":100270881},{"hugoGeneSymbol":"RPL21P26","entrezGeneId":100270882},{"hugoGeneSymbol":"RPL21P27","entrezGeneId":100270952},{"hugoGeneSymbol":"RPL21P28","entrezGeneId":100131205},{"hugoGeneSymbol":"RPL21P29","entrezGeneId":440575},{"hugoGeneSymbol":"RPL21P3","entrezGeneId":128760},{"hugoGeneSymbol":"RPL21P30","entrezGeneId":100271157},{"hugoGeneSymbol":"RPL21P31","entrezGeneId":100271160},{"hugoGeneSymbol":"RPL21P32","entrezGeneId":100271161},{"hugoGeneSymbol":"RPL21P33","entrezGeneId":100270953},{"hugoGeneSymbol":"RPL21P34","entrezGeneId":100270954},{"hugoGeneSymbol":"RPL21P35","entrezGeneId":100270955},{"hugoGeneSymbol":"RPL21P36","entrezGeneId":100270956},{"hugoGeneSymbol":"RPL21P37","entrezGeneId":100129141},{"hugoGeneSymbol":"RPL21P38","entrezGeneId":100131481},{"hugoGeneSymbol":"RPL21P39","entrezGeneId":389156},{"hugoGeneSymbol":"RPL21P4","entrezGeneId":140660},{"hugoGeneSymbol":"RPL21P40","entrezGeneId":100271158},{"hugoGeneSymbol":"RPL21P41","entrezGeneId":100271159},{"hugoGeneSymbol":"RPL21P42","entrezGeneId":100271162},{"hugoGeneSymbol":"RPL21P43","entrezGeneId":100271163},{"hugoGeneSymbol":"RPL21P44","entrezGeneId":402176},{"hugoGeneSymbol":"RPL21P45","entrezGeneId":727821},{"hugoGeneSymbol":"RPL21P46","entrezGeneId":645174},{"hugoGeneSymbol":"RPL21P47","entrezGeneId":100271164},{"hugoGeneSymbol":"RPL21P48","entrezGeneId":100271165},{"hugoGeneSymbol":"RPL21P49","entrezGeneId":100271166},{"hugoGeneSymbol":"RPL21P5","entrezGeneId":641613},{"hugoGeneSymbol":"RPL21P50","entrezGeneId":100271167},{"hugoGeneSymbol":"RPL21P51","entrezGeneId":100271169},{"hugoGeneSymbol":"RPL21P52","entrezGeneId":100128351},{"hugoGeneSymbol":"RPL21P53","entrezGeneId":653156},{"hugoGeneSymbol":"RPL21P54","entrezGeneId":100271168},{"hugoGeneSymbol":"RPL21P55","entrezGeneId":100271170},{"hugoGeneSymbol":"RPL21P56","entrezGeneId":100271171},{"hugoGeneSymbol":"RPL21P57","entrezGeneId":100271172},{"hugoGeneSymbol":"RPL21P58","entrezGeneId":100271173},{"hugoGeneSymbol":"RPL21P59","entrezGeneId":100271174},{"hugoGeneSymbol":"RPL21P6","entrezGeneId":652975},{"hugoGeneSymbol":"RPL21P60","entrezGeneId":100271175},{"hugoGeneSymbol":"RPL21P61","entrezGeneId":645157},{"hugoGeneSymbol":"RPL21P62","entrezGeneId":442160},{"hugoGeneSymbol":"RPL21P63","entrezGeneId":100271176},{"hugoGeneSymbol":"RPL21P64","entrezGeneId":100271177},{"hugoGeneSymbol":"RPL21P65","entrezGeneId":100271178},{"hugoGeneSymbol":"RPL21P66","entrezGeneId":100271179},{"hugoGeneSymbol":"RPL21P67","entrezGeneId":100271180},{"hugoGeneSymbol":"RPL21P68","entrezGeneId":645452},{"hugoGeneSymbol":"RPL21P69","entrezGeneId":642738},{"hugoGeneSymbol":"RPL21P7","entrezGeneId":145370},{"hugoGeneSymbol":"RPL21P70","entrezGeneId":646489},{"hugoGeneSymbol":"RPL21P71","entrezGeneId":729962},{"hugoGeneSymbol":"RPL21P72","entrezGeneId":100271181},{"hugoGeneSymbol":"RPL21P73","entrezGeneId":100271182},{"hugoGeneSymbol":"RPL21P74","entrezGeneId":100271184},{"hugoGeneSymbol":"RPL21P75","entrezGeneId":728501},{"hugoGeneSymbol":"RPL21P76","entrezGeneId":645373},{"hugoGeneSymbol":"RPL21P77","entrezGeneId":100271183},{"hugoGeneSymbol":"RPL21P78","entrezGeneId":100271185},{"hugoGeneSymbol":"RPL21P79","entrezGeneId":100271188},{"hugoGeneSymbol":"RPL21P8","entrezGeneId":319145},{"hugoGeneSymbol":"RPL21P80","entrezGeneId":100133273},{"hugoGeneSymbol":"RPL21P81","entrezGeneId":100271389},{"hugoGeneSymbol":"RPL21P82","entrezGeneId":650059},{"hugoGeneSymbol":"RPL21P83","entrezGeneId":100271186},{"hugoGeneSymbol":"RPL21P84","entrezGeneId":100271187},{"hugoGeneSymbol":"RPL21P85","entrezGeneId":100271189},{"hugoGeneSymbol":"RPL21P86","entrezGeneId":100271190},{"hugoGeneSymbol":"RPL21P87","entrezGeneId":100131672},{"hugoGeneSymbol":"RPL21P88","entrezGeneId":100271421},{"hugoGeneSymbol":"RPL21P89","entrezGeneId":100271422},{"hugoGeneSymbol":"RPL21P9","entrezGeneId":283562},{"hugoGeneSymbol":"RPL21P90","entrezGeneId":100271423},{"hugoGeneSymbol":"RPL21P91","entrezGeneId":100271424},{"hugoGeneSymbol":"RPL21P92","entrezGeneId":100130400},{"hugoGeneSymbol":"RPL21P93","entrezGeneId":653665},{"hugoGeneSymbol":"RPL21P94","entrezGeneId":100271425},{"hugoGeneSymbol":"RPL21P95","entrezGeneId":100271427},{"hugoGeneSymbol":"RPL21P96","entrezGeneId":100271428},{"hugoGeneSymbol":"RPL21P97","entrezGeneId":387753},{"hugoGeneSymbol":"RPL21P98","entrezGeneId":653079},{"hugoGeneSymbol":"RPL21P99","entrezGeneId":100271429},{"hugoGeneSymbol":"RPL22","entrezGeneId":6146},{"hugoGeneSymbol":"RPL22L1","entrezGeneId":200916},{"hugoGeneSymbol":"RPL22P1","entrezGeneId":125371},{"hugoGeneSymbol":"RPL22P10","entrezGeneId":100128408},{"hugoGeneSymbol":"RPL22P11","entrezGeneId":402100},{"hugoGeneSymbol":"RPL22P12","entrezGeneId":727747},{"hugoGeneSymbol":"RPL22P13","entrezGeneId":442108},{"hugoGeneSymbol":"RPL22P14","entrezGeneId":100270960},{"hugoGeneSymbol":"RPL22P16","entrezGeneId":100270959},{"hugoGeneSymbol":"RPL22P17","entrezGeneId":100271289},{"hugoGeneSymbol":"RPL22P18","entrezGeneId":100271290},{"hugoGeneSymbol":"RPL22P19","entrezGeneId":644022},{"hugoGeneSymbol":"RPL22P2","entrezGeneId":326292},{"hugoGeneSymbol":"RPL22P20","entrezGeneId":100128664},{"hugoGeneSymbol":"RPL22P21","entrezGeneId":100271455},{"hugoGeneSymbol":"RPL22P22","entrezGeneId":100130922},{"hugoGeneSymbol":"RPL22P23","entrezGeneId":100289184},{"hugoGeneSymbol":"RPL22P24","entrezGeneId":100129295},{"hugoGeneSymbol":"RPL22P3","entrezGeneId":729662},{"hugoGeneSymbol":"RPL22P4","entrezGeneId":100129102},{"hugoGeneSymbol":"RPL22P5","entrezGeneId":100132479},{"hugoGeneSymbol":"RPL22P6","entrezGeneId":100132047},{"hugoGeneSymbol":"RPL22P7","entrezGeneId":100129819},{"hugoGeneSymbol":"RPL22P8","entrezGeneId":100270957},{"hugoGeneSymbol":"RPL23","entrezGeneId":9349},{"hugoGeneSymbol":"RPL23A","entrezGeneId":6147},{"hugoGeneSymbol":"RPL23AP1","entrezGeneId":6148},{"hugoGeneSymbol":"RPL23AP10","entrezGeneId":326293},{"hugoGeneSymbol":"RPL23AP11","entrezGeneId":326294},{"hugoGeneSymbol":"RPL23AP12","entrezGeneId":391282},{"hugoGeneSymbol":"RPL23AP14","entrezGeneId":341511},{"hugoGeneSymbol":"RPL23AP15","entrezGeneId":391175},{"hugoGeneSymbol":"RPL23AP16","entrezGeneId":647201},{"hugoGeneSymbol":"RPL23AP17","entrezGeneId":100271138},{"hugoGeneSymbol":"RPL23AP18","entrezGeneId":728134},{"hugoGeneSymbol":"RPL23AP19","entrezGeneId":100131143},{"hugoGeneSymbol":"RPL23AP2","entrezGeneId":401904},{"hugoGeneSymbol":"RPL23AP20","entrezGeneId":645962},{"hugoGeneSymbol":"RPL23AP21","entrezGeneId":728481},{"hugoGeneSymbol":"RPL23AP22","entrezGeneId":100271291},{"hugoGeneSymbol":"RPL23AP23","entrezGeneId":100271292},{"hugoGeneSymbol":"RPL23AP24","entrezGeneId":728517},{"hugoGeneSymbol":"RPL23AP25","entrezGeneId":653789},{"hugoGeneSymbol":"RPL23AP26","entrezGeneId":391490},{"hugoGeneSymbol":"RPL23AP27","entrezGeneId":100271456},{"hugoGeneSymbol":"RPL23AP28","entrezGeneId":100271457},{"hugoGeneSymbol":"RPL23AP29","entrezGeneId":100271458},{"hugoGeneSymbol":"RPL23AP3","entrezGeneId":8489},{"hugoGeneSymbol":"RPL23AP30","entrezGeneId":100271459},{"hugoGeneSymbol":"RPL23AP31","entrezGeneId":100271460},{"hugoGeneSymbol":"RPL23AP32","entrezGeneId":56969},{"hugoGeneSymbol":"RPL23AP33","entrezGeneId":100271293},{"hugoGeneSymbol":"RPL23AP34","entrezGeneId":100271294},{"hugoGeneSymbol":"RPL23AP35","entrezGeneId":100271295},{"hugoGeneSymbol":"RPL23AP36","entrezGeneId":100271296},{"hugoGeneSymbol":"RPL23AP37","entrezGeneId":130773},{"hugoGeneSymbol":"RPL23AP38","entrezGeneId":391504},{"hugoGeneSymbol":"RPL23AP39","entrezGeneId":100271461},{"hugoGeneSymbol":"RPL23AP4","entrezGeneId":54029},{"hugoGeneSymbol":"RPL23AP40","entrezGeneId":100271462},{"hugoGeneSymbol":"RPL23AP41","entrezGeneId":646685},{"hugoGeneSymbol":"RPL23AP42","entrezGeneId":647099},{"hugoGeneSymbol":"RPL23AP43","entrezGeneId":389101},{"hugoGeneSymbol":"RPL23AP44","entrezGeneId":391825},{"hugoGeneSymbol":"RPL23AP45","entrezGeneId":729764},{"hugoGeneSymbol":"RPL23AP46","entrezGeneId":442260},{"hugoGeneSymbol":"RPL23AP47","entrezGeneId":729277},{"hugoGeneSymbol":"RPL23AP48","entrezGeneId":728567},{"hugoGeneSymbol":"RPL23AP49","entrezGeneId":653236},{"hugoGeneSymbol":"RPL23AP5","entrezGeneId":729480},{"hugoGeneSymbol":"RPL23AP50","entrezGeneId":728106},{"hugoGeneSymbol":"RPL23AP51","entrezGeneId":100271464},{"hugoGeneSymbol":"RPL23AP52","entrezGeneId":100271465},{"hugoGeneSymbol":"RPL23AP53","entrezGeneId":644128},{"hugoGeneSymbol":"RPL23AP54","entrezGeneId":100271466},{"hugoGeneSymbol":"RPL23AP55","entrezGeneId":100271467},{"hugoGeneSymbol":"RPL23AP56","entrezGeneId":645809},{"hugoGeneSymbol":"RPL23AP57","entrezGeneId":648294},{"hugoGeneSymbol":"RPL23AP58","entrezGeneId":100271616},{"hugoGeneSymbol":"RPL23AP59","entrezGeneId":100271618},{"hugoGeneSymbol":"RPL23AP6","entrezGeneId":128709},{"hugoGeneSymbol":"RPL23AP60","entrezGeneId":728933},{"hugoGeneSymbol":"RPL23AP61","entrezGeneId":728484},{"hugoGeneSymbol":"RPL23AP62","entrezGeneId":100271617},{"hugoGeneSymbol":"RPL23AP63","entrezGeneId":729798},{"hugoGeneSymbol":"RPL23AP64","entrezGeneId":649946},{"hugoGeneSymbol":"RPL23AP65","entrezGeneId":440027},{"hugoGeneSymbol":"RPL23AP66","entrezGeneId":100271620},{"hugoGeneSymbol":"RPL23AP67","entrezGeneId":100271622},{"hugoGeneSymbol":"RPL23AP68","entrezGeneId":100130555},{"hugoGeneSymbol":"RPL23AP69","entrezGeneId":100271623},{"hugoGeneSymbol":"RPL23AP7","entrezGeneId":118433},{"hugoGeneSymbol":"RPL23AP70","entrezGeneId":100271619},{"hugoGeneSymbol":"RPL23AP71","entrezGeneId":644384},{"hugoGeneSymbol":"RPL23AP72","entrezGeneId":100271621},{"hugoGeneSymbol":"RPL23AP73","entrezGeneId":100271625},{"hugoGeneSymbol":"RPL23AP74","entrezGeneId":729617},{"hugoGeneSymbol":"RPL23AP75","entrezGeneId":728207},{"hugoGeneSymbol":"RPL23AP76","entrezGeneId":441781},{"hugoGeneSymbol":"RPL23AP77","entrezGeneId":728538},{"hugoGeneSymbol":"RPL23AP78","entrezGeneId":100271624},{"hugoGeneSymbol":"RPL23AP79","entrezGeneId":100271626},{"hugoGeneSymbol":"RPL23AP8","entrezGeneId":641614},{"hugoGeneSymbol":"RPL23AP80","entrezGeneId":390949},{"hugoGeneSymbol":"RPL23AP81","entrezGeneId":100271627},{"hugoGeneSymbol":"RPL23AP82","entrezGeneId":284942},{"hugoGeneSymbol":"RPL23AP83","entrezGeneId":100131846},{"hugoGeneSymbol":"RPL23AP84","entrezGeneId":102723981},{"hugoGeneSymbol":"RPL23AP85","entrezGeneId":100419650},{"hugoGeneSymbol":"RPL23AP86","entrezGeneId":100507357},{"hugoGeneSymbol":"RPL23AP87","entrezGeneId":388574},{"hugoGeneSymbol":"RPL23AP88","entrezGeneId":100289034},{"hugoGeneSymbol":"RPL23AP89","entrezGeneId":106480336},{"hugoGeneSymbol":"RPL23AP90","entrezGeneId":106480690},{"hugoGeneSymbol":"RPL23AP91","entrezGeneId":106480337},{"hugoGeneSymbol":"RPL23AP92","entrezGeneId":106481731},{"hugoGeneSymbol":"RPL23AP93","entrezGeneId":100288802},{"hugoGeneSymbol":"RPL23AP94","entrezGeneId":106481971},{"hugoGeneSymbol":"RPL23AP95","entrezGeneId":106480338},{"hugoGeneSymbol":"RPL23AP96","entrezGeneId":392181},{"hugoGeneSymbol":"RPL23AP97","entrezGeneId":102723647},{"hugoGeneSymbol":"RPL23P10","entrezGeneId":100270962},{"hugoGeneSymbol":"RPL23P11","entrezGeneId":100271297},{"hugoGeneSymbol":"RPL23P2","entrezGeneId":54028},{"hugoGeneSymbol":"RPL23P3","entrezGeneId":100130630},{"hugoGeneSymbol":"RPL23P4","entrezGeneId":100270961},{"hugoGeneSymbol":"RPL23P5","entrezGeneId":402120},{"hugoGeneSymbol":"RPL23P6","entrezGeneId":646949},{"hugoGeneSymbol":"RPL23P7","entrezGeneId":442659},{"hugoGeneSymbol":"RPL23P8","entrezGeneId":222901},{"hugoGeneSymbol":"RPL23P9","entrezGeneId":100129377},{"hugoGeneSymbol":"RPL24","entrezGeneId":6152},{"hugoGeneSymbol":"RPL24P2","entrezGeneId":140760},{"hugoGeneSymbol":"RPL24P3","entrezGeneId":145235},{"hugoGeneSymbol":"RPL24P4","entrezGeneId":377381},{"hugoGeneSymbol":"RPL24P5","entrezGeneId":100129017},{"hugoGeneSymbol":"RPL24P6","entrezGeneId":100129808},{"hugoGeneSymbol":"RPL24P7","entrezGeneId":100270963},{"hugoGeneSymbol":"RPL24P8","entrezGeneId":100270964},{"hugoGeneSymbol":"RPL24P9","entrezGeneId":100129487},{"hugoGeneSymbol":"RPL26","entrezGeneId":6154},{"hugoGeneSymbol":"RPL26L1","entrezGeneId":51121},{"hugoGeneSymbol":"RPL26P10","entrezGeneId":100270886},{"hugoGeneSymbol":"RPL26P11","entrezGeneId":730070},{"hugoGeneSymbol":"RPL26P12","entrezGeneId":391126},{"hugoGeneSymbol":"RPL26P13","entrezGeneId":130865},{"hugoGeneSymbol":"RPL26P14","entrezGeneId":100133235},{"hugoGeneSymbol":"RPL26P15","entrezGeneId":100270965},{"hugoGeneSymbol":"RPL26P16","entrezGeneId":646966},{"hugoGeneSymbol":"RPL26P17","entrezGeneId":100128318},{"hugoGeneSymbol":"RPL26P18","entrezGeneId":100270968},{"hugoGeneSymbol":"RPL26P19","entrezGeneId":441073},{"hugoGeneSymbol":"RPL26P2","entrezGeneId":326297},{"hugoGeneSymbol":"RPL26P20","entrezGeneId":100271191},{"hugoGeneSymbol":"RPL26P21","entrezGeneId":646161},{"hugoGeneSymbol":"RPL26P22","entrezGeneId":643101},{"hugoGeneSymbol":"RPL26P23","entrezGeneId":100129517},{"hugoGeneSymbol":"RPL26P24","entrezGeneId":728311},{"hugoGeneSymbol":"RPL26P25","entrezGeneId":100270966},{"hugoGeneSymbol":"RPL26P26","entrezGeneId":100270967},{"hugoGeneSymbol":"RPL26P27","entrezGeneId":100271471},{"hugoGeneSymbol":"RPL26P28","entrezGeneId":100130983},{"hugoGeneSymbol":"RPL26P29","entrezGeneId":100131788},{"hugoGeneSymbol":"RPL26P3","entrezGeneId":326298},{"hugoGeneSymbol":"RPL26P30","entrezGeneId":653147},{"hugoGeneSymbol":"RPL26P31","entrezGeneId":100271469},{"hugoGeneSymbol":"RPL26P32","entrezGeneId":400055},{"hugoGeneSymbol":"RPL26P33","entrezGeneId":100132547},{"hugoGeneSymbol":"RPL26P34","entrezGeneId":100271470},{"hugoGeneSymbol":"RPL26P35","entrezGeneId":100128115},{"hugoGeneSymbol":"RPL26P36","entrezGeneId":392501},{"hugoGeneSymbol":"RPL26P37","entrezGeneId":441533},{"hugoGeneSymbol":"RPL26P4","entrezGeneId":283603},{"hugoGeneSymbol":"RPL26P5","entrezGeneId":654386},{"hugoGeneSymbol":"RPL26P6","entrezGeneId":100131526},{"hugoGeneSymbol":"RPL26P7","entrezGeneId":100270883},{"hugoGeneSymbol":"RPL26P8","entrezGeneId":100270884},{"hugoGeneSymbol":"RPL26P9","entrezGeneId":100270885},{"hugoGeneSymbol":"RPL27","entrezGeneId":6155},{"hugoGeneSymbol":"RPL27A","entrezGeneId":6157},{"hugoGeneSymbol":"RPL27AP","entrezGeneId":128481},{"hugoGeneSymbol":"RPL27AP2","entrezGeneId":391124},{"hugoGeneSymbol":"RPL27AP3","entrezGeneId":100271298},{"hugoGeneSymbol":"RPL27AP4","entrezGeneId":100271299},{"hugoGeneSymbol":"RPL27AP5","entrezGeneId":100271300},{"hugoGeneSymbol":"RPL27AP6","entrezGeneId":389435},{"hugoGeneSymbol":"RPL27AP7","entrezGeneId":100271301},{"hugoGeneSymbol":"RPL27AP8","entrezGeneId":100271605},{"hugoGeneSymbol":"RPL27P1","entrezGeneId":326299},{"hugoGeneSymbol":"RPL27P10","entrezGeneId":202122},{"hugoGeneSymbol":"RPL27P11","entrezGeneId":442723},{"hugoGeneSymbol":"RPL27P12","entrezGeneId":100271302},{"hugoGeneSymbol":"RPL27P2","entrezGeneId":646446},{"hugoGeneSymbol":"RPL27P3","entrezGeneId":100128662},{"hugoGeneSymbol":"RPL27P4","entrezGeneId":646624},{"hugoGeneSymbol":"RPL27P5","entrezGeneId":100270969},{"hugoGeneSymbol":"RPL27P6","entrezGeneId":647112},{"hugoGeneSymbol":"RPL27P7","entrezGeneId":100129234},{"hugoGeneSymbol":"RPL27P8","entrezGeneId":729332},{"hugoGeneSymbol":"RPL27P9","entrezGeneId":100270970},{"hugoGeneSymbol":"RPL28","entrezGeneId":6158},{"hugoGeneSymbol":"RPL28P1","entrezGeneId":402149},{"hugoGeneSymbol":"RPL28P2","entrezGeneId":100270971},{"hugoGeneSymbol":"RPL28P3","entrezGeneId":391828},{"hugoGeneSymbol":"RPL28P4","entrezGeneId":441726},{"hugoGeneSymbol":"RPL28P5","entrezGeneId":729279},{"hugoGeneSymbol":"RPL29","entrezGeneId":6159},{"hugoGeneSymbol":"RPL29P1","entrezGeneId":134756},{"hugoGeneSymbol":"RPL29P11","entrezGeneId":100131713},{"hugoGeneSymbol":"RPL29P12","entrezGeneId":283412},{"hugoGeneSymbol":"RPL29P13","entrezGeneId":391738},{"hugoGeneSymbol":"RPL29P14","entrezGeneId":100270974},{"hugoGeneSymbol":"RPL29P15","entrezGeneId":728820},{"hugoGeneSymbol":"RPL29P16","entrezGeneId":100131206},{"hugoGeneSymbol":"RPL29P17","entrezGeneId":645224},{"hugoGeneSymbol":"RPL29P18","entrezGeneId":644103},{"hugoGeneSymbol":"RPL29P19","entrezGeneId":389655},{"hugoGeneSymbol":"RPL29P2","entrezGeneId":118432},{"hugoGeneSymbol":"RPL29P20","entrezGeneId":100129332},{"hugoGeneSymbol":"RPL29P21","entrezGeneId":732199},{"hugoGeneSymbol":"RPL29P22","entrezGeneId":100271472},{"hugoGeneSymbol":"RPL29P23","entrezGeneId":646077},{"hugoGeneSymbol":"RPL29P24","entrezGeneId":100129591},{"hugoGeneSymbol":"RPL29P25","entrezGeneId":642493},{"hugoGeneSymbol":"RPL29P26","entrezGeneId":643531},{"hugoGeneSymbol":"RPL29P27","entrezGeneId":100130792},{"hugoGeneSymbol":"RPL29P28","entrezGeneId":646884},{"hugoGeneSymbol":"RPL29P29","entrezGeneId":100271474},{"hugoGeneSymbol":"RPL29P3","entrezGeneId":729042},{"hugoGeneSymbol":"RPL29P30","entrezGeneId":729611},{"hugoGeneSymbol":"RPL29P31","entrezGeneId":284064},{"hugoGeneSymbol":"RPL29P32","entrezGeneId":390856},{"hugoGeneSymbol":"RPL29P33","entrezGeneId":401911},{"hugoGeneSymbol":"RPL29P4","entrezGeneId":387101},{"hugoGeneSymbol":"RPL29P5","entrezGeneId":646417},{"hugoGeneSymbol":"RPL29P6","entrezGeneId":391019},{"hugoGeneSymbol":"RPL29P7","entrezGeneId":100270972},{"hugoGeneSymbol":"RPL29P8","entrezGeneId":100131991},{"hugoGeneSymbol":"RPL29P9","entrezGeneId":647285},{"hugoGeneSymbol":"RPL3","entrezGeneId":6122},{"hugoGeneSymbol":"RPL30","entrezGeneId":6156},{"hugoGeneSymbol":"RPL30P1","entrezGeneId":100270975},{"hugoGeneSymbol":"RPL30P10","entrezGeneId":100270982},{"hugoGeneSymbol":"RPL30P11","entrezGeneId":100271303},{"hugoGeneSymbol":"RPL30P12","entrezGeneId":100271304},{"hugoGeneSymbol":"RPL30P13","entrezGeneId":100271305},{"hugoGeneSymbol":"RPL30P14","entrezGeneId":100129867},{"hugoGeneSymbol":"RPL30P15","entrezGeneId":100271192},{"hugoGeneSymbol":"RPL30P16","entrezGeneId":100289099},{"hugoGeneSymbol":"RPL30P2","entrezGeneId":100270976},{"hugoGeneSymbol":"RPL30P3","entrezGeneId":100270977},{"hugoGeneSymbol":"RPL30P4","entrezGeneId":100131230},{"hugoGeneSymbol":"RPL30P5","entrezGeneId":100270978},{"hugoGeneSymbol":"RPL30P6","entrezGeneId":100270980},{"hugoGeneSymbol":"RPL30P7","entrezGeneId":100270979},{"hugoGeneSymbol":"RPL30P8","entrezGeneId":100132053},{"hugoGeneSymbol":"RPL30P9","entrezGeneId":100270981},{"hugoGeneSymbol":"RPL31","entrezGeneId":6160},{"hugoGeneSymbol":"RPL31P1","entrezGeneId":54027},{"hugoGeneSymbol":"RPL31P10","entrezGeneId":390283},{"hugoGeneSymbol":"RPL31P11","entrezGeneId":641311},{"hugoGeneSymbol":"RPL31P12","entrezGeneId":100270887},{"hugoGeneSymbol":"RPL31P13","entrezGeneId":100270983},{"hugoGeneSymbol":"RPL31P14","entrezGeneId":100129310},{"hugoGeneSymbol":"RPL31P15","entrezGeneId":100270984},{"hugoGeneSymbol":"RPL31P16","entrezGeneId":100129418},{"hugoGeneSymbol":"RPL31P17","entrezGeneId":653773},{"hugoGeneSymbol":"RPL31P18","entrezGeneId":285260},{"hugoGeneSymbol":"RPL31P19","entrezGeneId":100270985},{"hugoGeneSymbol":"RPL31P2","entrezGeneId":140753},{"hugoGeneSymbol":"RPL31P20","entrezGeneId":100270986},{"hugoGeneSymbol":"RPL31P21","entrezGeneId":100270988},{"hugoGeneSymbol":"RPL31P22","entrezGeneId":100270989},{"hugoGeneSymbol":"RPL31P23","entrezGeneId":391581},{"hugoGeneSymbol":"RPL31P24","entrezGeneId":100271194},{"hugoGeneSymbol":"RPL31P25","entrezGeneId":100270987},{"hugoGeneSymbol":"RPL31P26","entrezGeneId":100130537},{"hugoGeneSymbol":"RPL31P27","entrezGeneId":100271198},{"hugoGeneSymbol":"RPL31P28","entrezGeneId":442217},{"hugoGeneSymbol":"RPL31P29","entrezGeneId":100270990},{"hugoGeneSymbol":"RPL31P3","entrezGeneId":140718},{"hugoGeneSymbol":"RPL31P30","entrezGeneId":729203},{"hugoGeneSymbol":"RPL31P31","entrezGeneId":727792},{"hugoGeneSymbol":"RPL31P32","entrezGeneId":643851},{"hugoGeneSymbol":"RPL31P33","entrezGeneId":442218},{"hugoGeneSymbol":"RPL31P34","entrezGeneId":100271193},{"hugoGeneSymbol":"RPL31P35","entrezGeneId":100271199},{"hugoGeneSymbol":"RPL31P36","entrezGeneId":100271200},{"hugoGeneSymbol":"RPL31P37","entrezGeneId":646787},{"hugoGeneSymbol":"RPL31P38","entrezGeneId":442326},{"hugoGeneSymbol":"RPL31P39","entrezGeneId":641790},{"hugoGeneSymbol":"RPL31P4","entrezGeneId":729646},{"hugoGeneSymbol":"RPL31P40","entrezGeneId":100271196},{"hugoGeneSymbol":"RPL31P41","entrezGeneId":100271201},{"hugoGeneSymbol":"RPL31P42","entrezGeneId":100271197},{"hugoGeneSymbol":"RPL31P43","entrezGeneId":392382},{"hugoGeneSymbol":"RPL31P44","entrezGeneId":644522},{"hugoGeneSymbol":"RPL31P45","entrezGeneId":729308},{"hugoGeneSymbol":"RPL31P46","entrezGeneId":100271479},{"hugoGeneSymbol":"RPL31P47","entrezGeneId":100271481},{"hugoGeneSymbol":"RPL31P48","entrezGeneId":645654},{"hugoGeneSymbol":"RPL31P49","entrezGeneId":100129882},{"hugoGeneSymbol":"RPL31P5","entrezGeneId":100129928},{"hugoGeneSymbol":"RPL31P50","entrezGeneId":341356},{"hugoGeneSymbol":"RPL31P51","entrezGeneId":100271475},{"hugoGeneSymbol":"RPL31P52","entrezGeneId":100271476},{"hugoGeneSymbol":"RPL31P53","entrezGeneId":100271477},{"hugoGeneSymbol":"RPL31P54","entrezGeneId":100271483},{"hugoGeneSymbol":"RPL31P55","entrezGeneId":100128250},{"hugoGeneSymbol":"RPL31P56","entrezGeneId":100271478},{"hugoGeneSymbol":"RPL31P57","entrezGeneId":645993},{"hugoGeneSymbol":"RPL31P58","entrezGeneId":100271485},{"hugoGeneSymbol":"RPL31P59","entrezGeneId":100271480},{"hugoGeneSymbol":"RPL31P6","entrezGeneId":654387},{"hugoGeneSymbol":"RPL31P60","entrezGeneId":100271486},{"hugoGeneSymbol":"RPL31P61","entrezGeneId":100271487},{"hugoGeneSymbol":"RPL31P62","entrezGeneId":100271482},{"hugoGeneSymbol":"RPL31P63","entrezGeneId":100271392},{"hugoGeneSymbol":"RPL31P7","entrezGeneId":654391},{"hugoGeneSymbol":"RPL31P8","entrezGeneId":253013},{"hugoGeneSymbol":"RPL31P9","entrezGeneId":619464},{"hugoGeneSymbol":"RPL32","entrezGeneId":6161},{"hugoGeneSymbol":"RPL32P1","entrezGeneId":6163},{"hugoGeneSymbol":"RPL32P10","entrezGeneId":391595},{"hugoGeneSymbol":"RPL32P11","entrezGeneId":728572},{"hugoGeneSymbol":"RPL32P12","entrezGeneId":731741},{"hugoGeneSymbol":"RPL32P13","entrezGeneId":100270993},{"hugoGeneSymbol":"RPL32P14","entrezGeneId":100270994},{"hugoGeneSymbol":"RPL32P15","entrezGeneId":100132265},{"hugoGeneSymbol":"RPL32P16","entrezGeneId":646104},{"hugoGeneSymbol":"RPL32P17","entrezGeneId":402716},{"hugoGeneSymbol":"RPL32P18","entrezGeneId":644907},{"hugoGeneSymbol":"RPL32P19","entrezGeneId":646433},{"hugoGeneSymbol":"RPL32P2","entrezGeneId":654388},{"hugoGeneSymbol":"RPL32P20","entrezGeneId":392271},{"hugoGeneSymbol":"RPL32P21","entrezGeneId":100128004},{"hugoGeneSymbol":"RPL32P22","entrezGeneId":644996},{"hugoGeneSymbol":"RPL32P23","entrezGeneId":644020},{"hugoGeneSymbol":"RPL32P24","entrezGeneId":100271489},{"hugoGeneSymbol":"RPL32P25","entrezGeneId":100271490},{"hugoGeneSymbol":"RPL32P26","entrezGeneId":100271491},{"hugoGeneSymbol":"RPL32P27","entrezGeneId":100271306},{"hugoGeneSymbol":"RPL32P28","entrezGeneId":100133193},{"hugoGeneSymbol":"RPL32P29","entrezGeneId":729215},{"hugoGeneSymbol":"RPL32P3","entrezGeneId":132241},{"hugoGeneSymbol":"RPL32P30","entrezGeneId":100271492},{"hugoGeneSymbol":"RPL32P31","entrezGeneId":201259},{"hugoGeneSymbol":"RPL32P32","entrezGeneId":100271488},{"hugoGeneSymbol":"RPL32P33","entrezGeneId":100271493},{"hugoGeneSymbol":"RPL32P34","entrezGeneId":100133162},{"hugoGeneSymbol":"RPL32P35","entrezGeneId":100271393},{"hugoGeneSymbol":"RPL32P36","entrezGeneId":392447},{"hugoGeneSymbol":"RPL32P4","entrezGeneId":100131339},{"hugoGeneSymbol":"RPL32P5","entrezGeneId":23754},{"hugoGeneSymbol":"RPL32P6","entrezGeneId":100270888},{"hugoGeneSymbol":"RPL32P7","entrezGeneId":391560},{"hugoGeneSymbol":"RPL32P8","entrezGeneId":100270991},{"hugoGeneSymbol":"RPL32P9","entrezGeneId":100270992},{"hugoGeneSymbol":"RPL34","entrezGeneId":6164},{"hugoGeneSymbol":"RPL34-AS1","entrezGeneId":285456},{"hugoGeneSymbol":"RPL34P1","entrezGeneId":26514},{"hugoGeneSymbol":"RPL34P10","entrezGeneId":100271004},{"hugoGeneSymbol":"RPL34P11","entrezGeneId":100130286},{"hugoGeneSymbol":"RPL34P12","entrezGeneId":100270996},{"hugoGeneSymbol":"RPL34P13","entrezGeneId":100270997},{"hugoGeneSymbol":"RPL34P14","entrezGeneId":100129934},{"hugoGeneSymbol":"RPL34P15","entrezGeneId":100271000},{"hugoGeneSymbol":"RPL34P16","entrezGeneId":100133294},{"hugoGeneSymbol":"RPL34P17","entrezGeneId":100271001},{"hugoGeneSymbol":"RPL34P18","entrezGeneId":100271003},{"hugoGeneSymbol":"RPL34P19","entrezGeneId":100271494},{"hugoGeneSymbol":"RPL34P2","entrezGeneId":26513},{"hugoGeneSymbol":"RPL34P20","entrezGeneId":100271308},{"hugoGeneSymbol":"RPL34P21","entrezGeneId":100271495},{"hugoGeneSymbol":"RPL34P22","entrezGeneId":100271498},{"hugoGeneSymbol":"RPL34P23","entrezGeneId":100271499},{"hugoGeneSymbol":"RPL34P24","entrezGeneId":100271309},{"hugoGeneSymbol":"RPL34P25","entrezGeneId":100271501},{"hugoGeneSymbol":"RPL34P26","entrezGeneId":100130718},{"hugoGeneSymbol":"RPL34P27","entrezGeneId":651249},{"hugoGeneSymbol":"RPL34P28","entrezGeneId":100271500},{"hugoGeneSymbol":"RPL34P29","entrezGeneId":100271503},{"hugoGeneSymbol":"RPL34P3","entrezGeneId":54026},{"hugoGeneSymbol":"RPL34P30","entrezGeneId":100271505},{"hugoGeneSymbol":"RPL34P31","entrezGeneId":729536},{"hugoGeneSymbol":"RPL34P32","entrezGeneId":100271502},{"hugoGeneSymbol":"RPL34P33","entrezGeneId":730061},{"hugoGeneSymbol":"RPL34P34","entrezGeneId":342994},{"hugoGeneSymbol":"RPL34P35","entrezGeneId":100271504},{"hugoGeneSymbol":"RPL34P4","entrezGeneId":100270889},{"hugoGeneSymbol":"RPL34P5","entrezGeneId":100270995},{"hugoGeneSymbol":"RPL34P6","entrezGeneId":100270998},{"hugoGeneSymbol":"RPL34P7","entrezGeneId":100127995},{"hugoGeneSymbol":"RPL34P8","entrezGeneId":100270999},{"hugoGeneSymbol":"RPL34P9","entrezGeneId":100271002},{"hugoGeneSymbol":"RPL35","entrezGeneId":11224},{"hugoGeneSymbol":"RPL35A","entrezGeneId":6165},{"hugoGeneSymbol":"RPL35AP","entrezGeneId":140716},{"hugoGeneSymbol":"RPL35AP10","entrezGeneId":100271313},{"hugoGeneSymbol":"RPL35AP11","entrezGeneId":100271314},{"hugoGeneSymbol":"RPL35AP12","entrezGeneId":100271316},{"hugoGeneSymbol":"RPL35AP13","entrezGeneId":100131945},{"hugoGeneSymbol":"RPL35AP14","entrezGeneId":100271315},{"hugoGeneSymbol":"RPL35AP15","entrezGeneId":100271317},{"hugoGeneSymbol":"RPL35AP16","entrezGeneId":100271318},{"hugoGeneSymbol":"RPL35AP17","entrezGeneId":100271319},{"hugoGeneSymbol":"RPL35AP18","entrezGeneId":100271321},{"hugoGeneSymbol":"RPL35AP19","entrezGeneId":100271322},{"hugoGeneSymbol":"RPL35AP2","entrezGeneId":652983},{"hugoGeneSymbol":"RPL35AP20","entrezGeneId":100128277},{"hugoGeneSymbol":"RPL35AP21","entrezGeneId":100271506},{"hugoGeneSymbol":"RPL35AP22","entrezGeneId":100271507},{"hugoGeneSymbol":"RPL35AP24","entrezGeneId":100271631},{"hugoGeneSymbol":"RPL35AP25","entrezGeneId":100271633},{"hugoGeneSymbol":"RPL35AP26","entrezGeneId":100271630},{"hugoGeneSymbol":"RPL35AP27","entrezGeneId":100271635},{"hugoGeneSymbol":"RPL35AP28","entrezGeneId":100271637},{"hugoGeneSymbol":"RPL35AP29","entrezGeneId":100271638},{"hugoGeneSymbol":"RPL35AP3","entrezGeneId":387074},{"hugoGeneSymbol":"RPL35AP30","entrezGeneId":100271639},{"hugoGeneSymbol":"RPL35AP31","entrezGeneId":100271640},{"hugoGeneSymbol":"RPL35AP32","entrezGeneId":100271632},{"hugoGeneSymbol":"RPL35AP33","entrezGeneId":100271634},{"hugoGeneSymbol":"RPL35AP34","entrezGeneId":100271641},{"hugoGeneSymbol":"RPL35AP35","entrezGeneId":100271636},{"hugoGeneSymbol":"RPL35AP36","entrezGeneId":100128393},{"hugoGeneSymbol":"RPL35AP37","entrezGeneId":100128807},{"hugoGeneSymbol":"RPL35AP4","entrezGeneId":100048922},{"hugoGeneSymbol":"RPL35AP5","entrezGeneId":100132122},{"hugoGeneSymbol":"RPL35AP6","entrezGeneId":100271312},{"hugoGeneSymbol":"RPL35AP7","entrezGeneId":100128984},{"hugoGeneSymbol":"RPL35AP8","entrezGeneId":100271310},{"hugoGeneSymbol":"RPL35AP9","entrezGeneId":100271311},{"hugoGeneSymbol":"RPL35P1","entrezGeneId":440737},{"hugoGeneSymbol":"RPL35P2","entrezGeneId":646766},{"hugoGeneSymbol":"RPL35P3","entrezGeneId":728010},{"hugoGeneSymbol":"RPL35P4","entrezGeneId":100271006},{"hugoGeneSymbol":"RPL35P5","entrezGeneId":441246},{"hugoGeneSymbol":"RPL35P6","entrezGeneId":100271007},{"hugoGeneSymbol":"RPL35P7","entrezGeneId":341604},{"hugoGeneSymbol":"RPL35P8","entrezGeneId":643653},{"hugoGeneSymbol":"RPL35P9","entrezGeneId":100873796},{"hugoGeneSymbol":"RPL36","entrezGeneId":25873},{"hugoGeneSymbol":"RPL36A","entrezGeneId":6173},{"hugoGeneSymbol":"RPL36A-HNRNPH2","entrezGeneId":100529097},{"hugoGeneSymbol":"RPL36AL","entrezGeneId":6166},{"hugoGeneSymbol":"RPL36AP1","entrezGeneId":100131379},{"hugoGeneSymbol":"RPL36AP10","entrezGeneId":100271140},{"hugoGeneSymbol":"RPL36AP11","entrezGeneId":100129180},{"hugoGeneSymbol":"RPL36AP12","entrezGeneId":100130034},{"hugoGeneSymbol":"RPL36AP13","entrezGeneId":100271323},{"hugoGeneSymbol":"RPL36AP14","entrezGeneId":100271324},{"hugoGeneSymbol":"RPL36AP15","entrezGeneId":100271325},{"hugoGeneSymbol":"RPL36AP16","entrezGeneId":100271327},{"hugoGeneSymbol":"RPL36AP17","entrezGeneId":100271326},{"hugoGeneSymbol":"RPL36AP18","entrezGeneId":100271328},{"hugoGeneSymbol":"RPL36AP19","entrezGeneId":100271330},{"hugoGeneSymbol":"RPL36AP2","entrezGeneId":326301},{"hugoGeneSymbol":"RPL36AP20","entrezGeneId":100271329},{"hugoGeneSymbol":"RPL36AP21","entrezGeneId":100271332},{"hugoGeneSymbol":"RPL36AP23","entrezGeneId":729075},{"hugoGeneSymbol":"RPL36AP24","entrezGeneId":100271508},{"hugoGeneSymbol":"RPL36AP25","entrezGeneId":100271331},{"hugoGeneSymbol":"RPL36AP26","entrezGeneId":729909},{"hugoGeneSymbol":"RPL36AP27","entrezGeneId":100128072},{"hugoGeneSymbol":"RPL36AP28","entrezGeneId":100271509},{"hugoGeneSymbol":"RPL36AP29","entrezGeneId":100271510},{"hugoGeneSymbol":"RPL36AP30","entrezGeneId":100271511},{"hugoGeneSymbol":"RPL36AP31","entrezGeneId":642320},{"hugoGeneSymbol":"RPL36AP32","entrezGeneId":100271512},{"hugoGeneSymbol":"RPL36AP33","entrezGeneId":100191039},{"hugoGeneSymbol":"RPL36AP34","entrezGeneId":100271513},{"hugoGeneSymbol":"RPL36AP35","entrezGeneId":100271610},{"hugoGeneSymbol":"RPL36AP36","entrezGeneId":644834},{"hugoGeneSymbol":"RPL36AP37","entrezGeneId":729362},{"hugoGeneSymbol":"RPL36AP38","entrezGeneId":100271642},{"hugoGeneSymbol":"RPL36AP39","entrezGeneId":100271643},{"hugoGeneSymbol":"RPL36AP4","entrezGeneId":326304},{"hugoGeneSymbol":"RPL36AP40","entrezGeneId":554234},{"hugoGeneSymbol":"RPL36AP41","entrezGeneId":100271644},{"hugoGeneSymbol":"RPL36AP42","entrezGeneId":100271645},{"hugoGeneSymbol":"RPL36AP43","entrezGeneId":100271646},{"hugoGeneSymbol":"RPL36AP44","entrezGeneId":100132199},{"hugoGeneSymbol":"RPL36AP45","entrezGeneId":441727},{"hugoGeneSymbol":"RPL36AP46","entrezGeneId":729621},{"hugoGeneSymbol":"RPL36AP47","entrezGeneId":100271647},{"hugoGeneSymbol":"RPL36AP48","entrezGeneId":646175},{"hugoGeneSymbol":"RPL36AP49","entrezGeneId":284230},{"hugoGeneSymbol":"RPL36AP5","entrezGeneId":387090},{"hugoGeneSymbol":"RPL36AP50","entrezGeneId":100271648},{"hugoGeneSymbol":"RPL36AP51","entrezGeneId":649299},{"hugoGeneSymbol":"RPL36AP52","entrezGeneId":207032},{"hugoGeneSymbol":"RPL36AP53","entrezGeneId":100271611},{"hugoGeneSymbol":"RPL36AP54","entrezGeneId":100271612},{"hugoGeneSymbol":"RPL36AP55","entrezGeneId":100420206},{"hugoGeneSymbol":"RPL36AP6","entrezGeneId":641556},{"hugoGeneSymbol":"RPL36AP7","entrezGeneId":728202},{"hugoGeneSymbol":"RPL36AP8","entrezGeneId":643007},{"hugoGeneSymbol":"RPL36AP9","entrezGeneId":100271139},{"hugoGeneSymbol":"RPL36P1","entrezGeneId":140697},{"hugoGeneSymbol":"RPL36P10","entrezGeneId":100271011},{"hugoGeneSymbol":"RPL36P11","entrezGeneId":642531},{"hugoGeneSymbol":"RPL36P12","entrezGeneId":100271012},{"hugoGeneSymbol":"RPL36P13","entrezGeneId":100271013},{"hugoGeneSymbol":"RPL36P14","entrezGeneId":347292},{"hugoGeneSymbol":"RPL36P15","entrezGeneId":100271334},{"hugoGeneSymbol":"RPL36P16","entrezGeneId":651600},{"hugoGeneSymbol":"RPL36P17","entrezGeneId":100271336},{"hugoGeneSymbol":"RPL36P18","entrezGeneId":100271394},{"hugoGeneSymbol":"RPL36P19","entrezGeneId":100873855},{"hugoGeneSymbol":"RPL36P2","entrezGeneId":140751},{"hugoGeneSymbol":"RPL36P20","entrezGeneId":729032},{"hugoGeneSymbol":"RPL36P3","entrezGeneId":326303},{"hugoGeneSymbol":"RPL36P4","entrezGeneId":140750},{"hugoGeneSymbol":"RPL36P5","entrezGeneId":127295},{"hugoGeneSymbol":"RPL36P6","entrezGeneId":100271008},{"hugoGeneSymbol":"RPL36P7","entrezGeneId":100271010},{"hugoGeneSymbol":"RPL36P8","entrezGeneId":643205},{"hugoGeneSymbol":"RPL36P9","entrezGeneId":100271009},{"hugoGeneSymbol":"RPL37","entrezGeneId":6167},{"hugoGeneSymbol":"RPL37A","entrezGeneId":6168},{"hugoGeneSymbol":"RPL37AP1","entrezGeneId":140717},{"hugoGeneSymbol":"RPL37AP2","entrezGeneId":100271337},{"hugoGeneSymbol":"RPL37AP3","entrezGeneId":100132988},{"hugoGeneSymbol":"RPL37AP4","entrezGeneId":100271338},{"hugoGeneSymbol":"RPL37AP5","entrezGeneId":100129856},{"hugoGeneSymbol":"RPL37AP6","entrezGeneId":100271339},{"hugoGeneSymbol":"RPL37AP7","entrezGeneId":100131730},{"hugoGeneSymbol":"RPL37AP8","entrezGeneId":644338},{"hugoGeneSymbol":"RPL37AP9","entrezGeneId":100271606},{"hugoGeneSymbol":"RPL37P1","entrezGeneId":140696},{"hugoGeneSymbol":"RPL37P10","entrezGeneId":100271015},{"hugoGeneSymbol":"RPL37P11","entrezGeneId":100271016},{"hugoGeneSymbol":"RPL37P12","entrezGeneId":100271017},{"hugoGeneSymbol":"RPL37P13","entrezGeneId":100271018},{"hugoGeneSymbol":"RPL37P14","entrezGeneId":100271019},{"hugoGeneSymbol":"RPL37P15","entrezGeneId":100271020},{"hugoGeneSymbol":"RPL37P16","entrezGeneId":100271021},{"hugoGeneSymbol":"RPL37P17","entrezGeneId":100271202},{"hugoGeneSymbol":"RPL37P18","entrezGeneId":100271342},{"hugoGeneSymbol":"RPL37P19","entrezGeneId":100271515},{"hugoGeneSymbol":"RPL37P2","entrezGeneId":116730},{"hugoGeneSymbol":"RPL37P20","entrezGeneId":100271340},{"hugoGeneSymbol":"RPL37P21","entrezGeneId":100271516},{"hugoGeneSymbol":"RPL37P22","entrezGeneId":100271341},{"hugoGeneSymbol":"RPL37P23","entrezGeneId":648217},{"hugoGeneSymbol":"RPL37P24","entrezGeneId":100271395},{"hugoGeneSymbol":"RPL37P25","entrezGeneId":106481666},{"hugoGeneSymbol":"RPL37P3","entrezGeneId":378818},{"hugoGeneSymbol":"RPL37P4","entrezGeneId":378819},{"hugoGeneSymbol":"RPL37P5","entrezGeneId":654369},{"hugoGeneSymbol":"RPL37P6","entrezGeneId":346950},{"hugoGeneSymbol":"RPL37P7","entrezGeneId":100270890},{"hugoGeneSymbol":"RPL37P8","entrezGeneId":100271014},{"hugoGeneSymbol":"RPL37P9","entrezGeneId":100270828},{"hugoGeneSymbol":"RPL38","entrezGeneId":6169},{"hugoGeneSymbol":"RPL38P1","entrezGeneId":116809},{"hugoGeneSymbol":"RPL38P2","entrezGeneId":100129991},{"hugoGeneSymbol":"RPL38P3","entrezGeneId":100132311},{"hugoGeneSymbol":"RPL38P4","entrezGeneId":100130963},{"hugoGeneSymbol":"RPL39","entrezGeneId":6170},{"hugoGeneSymbol":"RPL39L","entrezGeneId":116832},{"hugoGeneSymbol":"RPL39P","entrezGeneId":140719},{"hugoGeneSymbol":"RPL39P10","entrezGeneId":100129952},{"hugoGeneSymbol":"RPL39P11","entrezGeneId":100271022},{"hugoGeneSymbol":"RPL39P12","entrezGeneId":100270829},{"hugoGeneSymbol":"RPL39P13","entrezGeneId":100130802},{"hugoGeneSymbol":"RPL39P14","entrezGeneId":100132127},{"hugoGeneSymbol":"RPL39P15","entrezGeneId":647236},{"hugoGeneSymbol":"RPL39P16","entrezGeneId":100271023},{"hugoGeneSymbol":"RPL39P17","entrezGeneId":100271024},{"hugoGeneSymbol":"RPL39P18","entrezGeneId":100271025},{"hugoGeneSymbol":"RPL39P19","entrezGeneId":100271027},{"hugoGeneSymbol":"RPL39P2","entrezGeneId":326306},{"hugoGeneSymbol":"RPL39P20","entrezGeneId":100131160},{"hugoGeneSymbol":"RPL39P21","entrezGeneId":644499},{"hugoGeneSymbol":"RPL39P22","entrezGeneId":100271028},{"hugoGeneSymbol":"RPL39P23","entrezGeneId":100271203},{"hugoGeneSymbol":"RPL39P24","entrezGeneId":100271396},{"hugoGeneSymbol":"RPL39P25","entrezGeneId":100271517},{"hugoGeneSymbol":"RPL39P26","entrezGeneId":100271518},{"hugoGeneSymbol":"RPL39P27","entrezGeneId":100133222},{"hugoGeneSymbol":"RPL39P28","entrezGeneId":100271520},{"hugoGeneSymbol":"RPL39P29","entrezGeneId":100271522},{"hugoGeneSymbol":"RPL39P3","entrezGeneId":285785},{"hugoGeneSymbol":"RPL39P30","entrezGeneId":100271519},{"hugoGeneSymbol":"RPL39P31","entrezGeneId":100271525},{"hugoGeneSymbol":"RPL39P32","entrezGeneId":100131387},{"hugoGeneSymbol":"RPL39P33","entrezGeneId":100271521},{"hugoGeneSymbol":"RPL39P34","entrezGeneId":100271523},{"hugoGeneSymbol":"RPL39P35","entrezGeneId":100271524},{"hugoGeneSymbol":"RPL39P36","entrezGeneId":100271526},{"hugoGeneSymbol":"RPL39P37","entrezGeneId":100271528},{"hugoGeneSymbol":"RPL39P38","entrezGeneId":100271529},{"hugoGeneSymbol":"RPL39P39","entrezGeneId":100271530},{"hugoGeneSymbol":"RPL39P4","entrezGeneId":654392},{"hugoGeneSymbol":"RPL39P40","entrezGeneId":100271531},{"hugoGeneSymbol":"RPL39P41","entrezGeneId":100271532},{"hugoGeneSymbol":"RPL39P5","entrezGeneId":553117},{"hugoGeneSymbol":"RPL39P6","entrezGeneId":100270891},{"hugoGeneSymbol":"RPL39P7","entrezGeneId":100270892},{"hugoGeneSymbol":"RPL39P8","entrezGeneId":100270893},{"hugoGeneSymbol":"RPL39P9","entrezGeneId":100270894},{"hugoGeneSymbol":"RPL3L","entrezGeneId":6123},{"hugoGeneSymbol":"RPL3P1","entrezGeneId":8488},{"hugoGeneSymbol":"RPL3P10","entrezGeneId":100129004},{"hugoGeneSymbol":"RPL3P11","entrezGeneId":100131893},{"hugoGeneSymbol":"RPL3P12","entrezGeneId":100131358},{"hugoGeneSymbol":"RPL3P13","entrezGeneId":106480199},{"hugoGeneSymbol":"RPL3P2","entrezGeneId":116935},{"hugoGeneSymbol":"RPL3P3","entrezGeneId":645798},{"hugoGeneSymbol":"RPL3P4","entrezGeneId":326307},{"hugoGeneSymbol":"RPL3P5","entrezGeneId":100130450},{"hugoGeneSymbol":"RPL3P6","entrezGeneId":643220},{"hugoGeneSymbol":"RPL3P7","entrezGeneId":642741},{"hugoGeneSymbol":"RPL3P8","entrezGeneId":646620},{"hugoGeneSymbol":"RPL3P9","entrezGeneId":100128963},{"hugoGeneSymbol":"RPL4","entrezGeneId":6124},{"hugoGeneSymbol":"RPL41","entrezGeneId":6171},{"hugoGeneSymbol":"RPL41P1","entrezGeneId":22971},{"hugoGeneSymbol":"RPL41P2","entrezGeneId":22970},{"hugoGeneSymbol":"RPL41P3","entrezGeneId":22969},{"hugoGeneSymbol":"RPL41P4","entrezGeneId":326308},{"hugoGeneSymbol":"RPL41P5","entrezGeneId":6172},{"hugoGeneSymbol":"RPL41P6","entrezGeneId":286568},{"hugoGeneSymbol":"RPL41P7","entrezGeneId":286570},{"hugoGeneSymbol":"RPL4P1","entrezGeneId":650808},{"hugoGeneSymbol":"RPL4P2","entrezGeneId":646688},{"hugoGeneSymbol":"RPL4P3","entrezGeneId":391135},{"hugoGeneSymbol":"RPL4P4","entrezGeneId":647276},{"hugoGeneSymbol":"RPL4P5","entrezGeneId":158345},{"hugoGeneSymbol":"RPL4P6","entrezGeneId":100271033},{"hugoGeneSymbol":"RPL5","entrezGeneId":6125},{"hugoGeneSymbol":"RPL5P1","entrezGeneId":647436},{"hugoGeneSymbol":"RPL5P10","entrezGeneId":645807},{"hugoGeneSymbol":"RPL5P11","entrezGeneId":402193},{"hugoGeneSymbol":"RPL5P12","entrezGeneId":100270833},{"hugoGeneSymbol":"RPL5P13","entrezGeneId":100270834},{"hugoGeneSymbol":"RPL5P14","entrezGeneId":100270835},{"hugoGeneSymbol":"RPL5P15","entrezGeneId":100270836},{"hugoGeneSymbol":"RPL5P16","entrezGeneId":100270837},{"hugoGeneSymbol":"RPL5P17","entrezGeneId":100270839},{"hugoGeneSymbol":"RPL5P18","entrezGeneId":389428},{"hugoGeneSymbol":"RPL5P19","entrezGeneId":100270906},{"hugoGeneSymbol":"RPL5P2","entrezGeneId":140749},{"hugoGeneSymbol":"RPL5P20","entrezGeneId":100131913},{"hugoGeneSymbol":"RPL5P21","entrezGeneId":100270838},{"hugoGeneSymbol":"RPL5P22","entrezGeneId":389644},{"hugoGeneSymbol":"RPL5P23","entrezGeneId":100270840},{"hugoGeneSymbol":"RPL5P24","entrezGeneId":100270841},{"hugoGeneSymbol":"RPL5P25","entrezGeneId":100271204},{"hugoGeneSymbol":"RPL5P26","entrezGeneId":100271206},{"hugoGeneSymbol":"RPL5P27","entrezGeneId":100129998},{"hugoGeneSymbol":"RPL5P28","entrezGeneId":100131535},{"hugoGeneSymbol":"RPL5P29","entrezGeneId":390158},{"hugoGeneSymbol":"RPL5P3","entrezGeneId":400385},{"hugoGeneSymbol":"RPL5P30","entrezGeneId":645160},{"hugoGeneSymbol":"RPL5P31","entrezGeneId":341674},{"hugoGeneSymbol":"RPL5P32","entrezGeneId":100271207},{"hugoGeneSymbol":"RPL5P33","entrezGeneId":100130929},{"hugoGeneSymbol":"RPL5P34","entrezGeneId":388907},{"hugoGeneSymbol":"RPL5P35","entrezGeneId":100129647},{"hugoGeneSymbol":"RPL5P4","entrezGeneId":643343},{"hugoGeneSymbol":"RPL5P5","entrezGeneId":730213},{"hugoGeneSymbol":"RPL5P6","entrezGeneId":646784},{"hugoGeneSymbol":"RPL5P7","entrezGeneId":344178},{"hugoGeneSymbol":"RPL5P8","entrezGeneId":100130523},{"hugoGeneSymbol":"RPL5P9","entrezGeneId":100270832},{"hugoGeneSymbol":"RPL6","entrezGeneId":6128},{"hugoGeneSymbol":"RPL6P1","entrezGeneId":440587},{"hugoGeneSymbol":"RPL6P10","entrezGeneId":642828},{"hugoGeneSymbol":"RPL6P11","entrezGeneId":100132922},{"hugoGeneSymbol":"RPL6P12","entrezGeneId":100270907},{"hugoGeneSymbol":"RPL6P13","entrezGeneId":643974},{"hugoGeneSymbol":"RPL6P14","entrezGeneId":391679},{"hugoGeneSymbol":"RPL6P15","entrezGeneId":100270843},{"hugoGeneSymbol":"RPL6P16","entrezGeneId":728365},{"hugoGeneSymbol":"RPL6P17","entrezGeneId":100131229},{"hugoGeneSymbol":"RPL6P18","entrezGeneId":100131805},{"hugoGeneSymbol":"RPL6P19","entrezGeneId":646483},{"hugoGeneSymbol":"RPL6P2","entrezGeneId":343495},{"hugoGeneSymbol":"RPL6P20","entrezGeneId":285900},{"hugoGeneSymbol":"RPL6P21","entrezGeneId":100270846},{"hugoGeneSymbol":"RPL6P22","entrezGeneId":388460},{"hugoGeneSymbol":"RPL6P23","entrezGeneId":100130524},{"hugoGeneSymbol":"RPL6P24","entrezGeneId":100271034},{"hugoGeneSymbol":"RPL6P25","entrezGeneId":401725},{"hugoGeneSymbol":"RPL6P26","entrezGeneId":100271035},{"hugoGeneSymbol":"RPL6P27","entrezGeneId":645387},{"hugoGeneSymbol":"RPL6P28","entrezGeneId":100271208},{"hugoGeneSymbol":"RPL6P29","entrezGeneId":392505},{"hugoGeneSymbol":"RPL6P3","entrezGeneId":391181},{"hugoGeneSymbol":"RPL6P30","entrezGeneId":139452},{"hugoGeneSymbol":"RPL6P4","entrezGeneId":645054},{"hugoGeneSymbol":"RPL6P5","entrezGeneId":100270844},{"hugoGeneSymbol":"RPL6P6","entrezGeneId":100270845},{"hugoGeneSymbol":"RPL6P7","entrezGeneId":100270848},{"hugoGeneSymbol":"RPL6P8","entrezGeneId":100133100},{"hugoGeneSymbol":"RPL6P9","entrezGeneId":100270847},{"hugoGeneSymbol":"RPL7","entrezGeneId":6129},{"hugoGeneSymbol":"RPL7A","entrezGeneId":6130},{"hugoGeneSymbol":"RPL7AP10","entrezGeneId":161406},{"hugoGeneSymbol":"RPL7AP11","entrezGeneId":728992},{"hugoGeneSymbol":"RPL7AP12","entrezGeneId":128668},{"hugoGeneSymbol":"RPL7AP13","entrezGeneId":128748},{"hugoGeneSymbol":"RPL7AP14","entrezGeneId":140756},{"hugoGeneSymbol":"RPL7AP15","entrezGeneId":100270895},{"hugoGeneSymbol":"RPL7AP16","entrezGeneId":100270896},{"hugoGeneSymbol":"RPL7AP17","entrezGeneId":100270897},{"hugoGeneSymbol":"RPL7AP18","entrezGeneId":390993},{"hugoGeneSymbol":"RPL7AP19","entrezGeneId":100271036},{"hugoGeneSymbol":"RPL7AP2","entrezGeneId":652978},{"hugoGeneSymbol":"RPL7AP20","entrezGeneId":100271037},{"hugoGeneSymbol":"RPL7AP21","entrezGeneId":100271038},{"hugoGeneSymbol":"RPL7AP22","entrezGeneId":100271039},{"hugoGeneSymbol":"RPL7AP23","entrezGeneId":100271040},{"hugoGeneSymbol":"RPL7AP24","entrezGeneId":100271041},{"hugoGeneSymbol":"RPL7AP25","entrezGeneId":100271042},{"hugoGeneSymbol":"RPL7AP26","entrezGeneId":728128},{"hugoGeneSymbol":"RPL7AP27","entrezGeneId":152663},{"hugoGeneSymbol":"RPL7AP28","entrezGeneId":100271209},{"hugoGeneSymbol":"RPL7AP29","entrezGeneId":100271043},{"hugoGeneSymbol":"RPL7AP3","entrezGeneId":654370},{"hugoGeneSymbol":"RPL7AP30","entrezGeneId":441034},{"hugoGeneSymbol":"RPL7AP31","entrezGeneId":728315},{"hugoGeneSymbol":"RPL7AP32","entrezGeneId":133748},{"hugoGeneSymbol":"RPL7AP33","entrezGeneId":391850},{"hugoGeneSymbol":"RPL7AP34","entrezGeneId":441154},{"hugoGeneSymbol":"RPL7AP35","entrezGeneId":100271210},{"hugoGeneSymbol":"RPL7AP36","entrezGeneId":728179},{"hugoGeneSymbol":"RPL7AP37","entrezGeneId":645257},{"hugoGeneSymbol":"RPL7AP38","entrezGeneId":442660},{"hugoGeneSymbol":"RPL7AP39","entrezGeneId":646476},{"hugoGeneSymbol":"RPL7AP4","entrezGeneId":652985},{"hugoGeneSymbol":"RPL7AP40","entrezGeneId":442712},{"hugoGeneSymbol":"RPL7AP41","entrezGeneId":100271213},{"hugoGeneSymbol":"RPL7AP42","entrezGeneId":100271215},{"hugoGeneSymbol":"RPL7AP43","entrezGeneId":644236},{"hugoGeneSymbol":"RPL7AP44","entrezGeneId":100271398},{"hugoGeneSymbol":"RPL7AP45","entrezGeneId":100132678},{"hugoGeneSymbol":"RPL7AP46","entrezGeneId":441440},{"hugoGeneSymbol":"RPL7AP47","entrezGeneId":100271211},{"hugoGeneSymbol":"RPL7AP48","entrezGeneId":100271212},{"hugoGeneSymbol":"RPL7AP49","entrezGeneId":100271214},{"hugoGeneSymbol":"RPL7AP5","entrezGeneId":326309},{"hugoGeneSymbol":"RPL7AP50","entrezGeneId":87688},{"hugoGeneSymbol":"RPL7AP51","entrezGeneId":100271533},{"hugoGeneSymbol":"RPL7AP52","entrezGeneId":100271534},{"hugoGeneSymbol":"RPL7AP53","entrezGeneId":401640},{"hugoGeneSymbol":"RPL7AP54","entrezGeneId":390228},{"hugoGeneSymbol":"RPL7AP55","entrezGeneId":100271535},{"hugoGeneSymbol":"RPL7AP56","entrezGeneId":100271536},{"hugoGeneSymbol":"RPL7AP57","entrezGeneId":100271537},{"hugoGeneSymbol":"RPL7AP58","entrezGeneId":645846},{"hugoGeneSymbol":"RPL7AP6","entrezGeneId":326310},{"hugoGeneSymbol":"RPL7AP60","entrezGeneId":100271538},{"hugoGeneSymbol":"RPL7AP61","entrezGeneId":100271539},{"hugoGeneSymbol":"RPL7AP62","entrezGeneId":644029},{"hugoGeneSymbol":"RPL7AP63","entrezGeneId":401865},{"hugoGeneSymbol":"RPL7AP64","entrezGeneId":728486},{"hugoGeneSymbol":"RPL7AP65","entrezGeneId":100271543},{"hugoGeneSymbol":"RPL7AP66","entrezGeneId":388474},{"hugoGeneSymbol":"RPL7AP67","entrezGeneId":100271542},{"hugoGeneSymbol":"RPL7AP69","entrezGeneId":100271545},{"hugoGeneSymbol":"RPL7AP7","entrezGeneId":353013},{"hugoGeneSymbol":"RPL7AP70","entrezGeneId":728139},{"hugoGeneSymbol":"RPL7AP71","entrezGeneId":100271399},{"hugoGeneSymbol":"RPL7AP72","entrezGeneId":100270754},{"hugoGeneSymbol":"RPL7AP73","entrezGeneId":100873817},{"hugoGeneSymbol":"RPL7AP8","entrezGeneId":340749},{"hugoGeneSymbol":"RPL7AP9","entrezGeneId":441642},{"hugoGeneSymbol":"RPL7L1","entrezGeneId":285855},{"hugoGeneSymbol":"RPL7L1P1","entrezGeneId":100129260},{"hugoGeneSymbol":"RPL7L1P10","entrezGeneId":106480729},{"hugoGeneSymbol":"RPL7L1P11","entrezGeneId":347509},{"hugoGeneSymbol":"RPL7L1P12","entrezGeneId":100420200},{"hugoGeneSymbol":"RPL7L1P13","entrezGeneId":100133103},{"hugoGeneSymbol":"RPL7L1P2","entrezGeneId":100420155},{"hugoGeneSymbol":"RPL7L1P3","entrezGeneId":100131964},{"hugoGeneSymbol":"RPL7L1P4","entrezGeneId":100130968},{"hugoGeneSymbol":"RPL7L1P5","entrezGeneId":390800},{"hugoGeneSymbol":"RPL7L1P6","entrezGeneId":100420201},{"hugoGeneSymbol":"RPL7L1P7","entrezGeneId":646641},{"hugoGeneSymbol":"RPL7L1P8","entrezGeneId":402152},{"hugoGeneSymbol":"RPL7L1P9","entrezGeneId":100128899},{"hugoGeneSymbol":"RPL7P1","entrezGeneId":6174},{"hugoGeneSymbol":"RPL7P10","entrezGeneId":646538},{"hugoGeneSymbol":"RPL7P11","entrezGeneId":100270823},{"hugoGeneSymbol":"RPL7P12","entrezGeneId":100131085},{"hugoGeneSymbol":"RPL7P13","entrezGeneId":130728},{"hugoGeneSymbol":"RPL7P14","entrezGeneId":100129743},{"hugoGeneSymbol":"RPL7P15","entrezGeneId":100270850},{"hugoGeneSymbol":"RPL7P16","entrezGeneId":729677},{"hugoGeneSymbol":"RPL7P17","entrezGeneId":100270851},{"hugoGeneSymbol":"RPL7P18","entrezGeneId":100270852},{"hugoGeneSymbol":"RPL7P19","entrezGeneId":100270853},{"hugoGeneSymbol":"RPL7P2","entrezGeneId":140695},{"hugoGeneSymbol":"RPL7P20","entrezGeneId":728843},{"hugoGeneSymbol":"RPL7P21","entrezGeneId":729123},{"hugoGeneSymbol":"RPL7P22","entrezGeneId":728620},{"hugoGeneSymbol":"RPL7P23","entrezGeneId":648000},{"hugoGeneSymbol":"RPL7P24","entrezGeneId":100127893},{"hugoGeneSymbol":"RPL7P25","entrezGeneId":100129061},{"hugoGeneSymbol":"RPL7P26","entrezGeneId":728380},{"hugoGeneSymbol":"RPL7P27","entrezGeneId":643906},{"hugoGeneSymbol":"RPL7P28","entrezGeneId":442242},{"hugoGeneSymbol":"RPL7P29","entrezGeneId":643971},{"hugoGeneSymbol":"RPL7P3","entrezGeneId":140857},{"hugoGeneSymbol":"RPL7P30","entrezGeneId":100270908},{"hugoGeneSymbol":"RPL7P31","entrezGeneId":100270909},{"hugoGeneSymbol":"RPL7P32","entrezGeneId":100130892},{"hugoGeneSymbol":"RPL7P33","entrezGeneId":286348},{"hugoGeneSymbol":"RPL7P34","entrezGeneId":389992},{"hugoGeneSymbol":"RPL7P35","entrezGeneId":100271216},{"hugoGeneSymbol":"RPL7P36","entrezGeneId":100271218},{"hugoGeneSymbol":"RPL7P37","entrezGeneId":439954},{"hugoGeneSymbol":"RPL7P38","entrezGeneId":120872},{"hugoGeneSymbol":"RPL7P39","entrezGeneId":100271217},{"hugoGeneSymbol":"RPL7P4","entrezGeneId":100133037},{"hugoGeneSymbol":"RPL7P40","entrezGeneId":100271220},{"hugoGeneSymbol":"RPL7P41","entrezGeneId":100271222},{"hugoGeneSymbol":"RPL7P42","entrezGeneId":100271223},{"hugoGeneSymbol":"RPL7P43","entrezGeneId":100271224},{"hugoGeneSymbol":"RPL7P44","entrezGeneId":390413},{"hugoGeneSymbol":"RPL7P45","entrezGeneId":100271225},{"hugoGeneSymbol":"RPL7P46","entrezGeneId":642451},{"hugoGeneSymbol":"RPL7P47","entrezGeneId":146110},{"hugoGeneSymbol":"RPL7P48","entrezGeneId":388401},{"hugoGeneSymbol":"RPL7P49","entrezGeneId":100271221},{"hugoGeneSymbol":"RPL7P5","entrezGeneId":654381},{"hugoGeneSymbol":"RPL7P50","entrezGeneId":729449},{"hugoGeneSymbol":"RPL7P51","entrezGeneId":100271226},{"hugoGeneSymbol":"RPL7P52","entrezGeneId":646912},{"hugoGeneSymbol":"RPL7P53","entrezGeneId":100271145},{"hugoGeneSymbol":"RPL7P54","entrezGeneId":100271146},{"hugoGeneSymbol":"RPL7P55","entrezGeneId":100271147},{"hugoGeneSymbol":"RPL7P56","entrezGeneId":728962},{"hugoGeneSymbol":"RPL7P57","entrezGeneId":643507},{"hugoGeneSymbol":"RPL7P58","entrezGeneId":646346},{"hugoGeneSymbol":"RPL7P59","entrezGeneId":643308},{"hugoGeneSymbol":"RPL7P6","entrezGeneId":90193},{"hugoGeneSymbol":"RPL7P60","entrezGeneId":100289264},{"hugoGeneSymbol":"RPL7P61","entrezGeneId":101929589},{"hugoGeneSymbol":"RPL7P7","entrezGeneId":644896},{"hugoGeneSymbol":"RPL7P8","entrezGeneId":441896},{"hugoGeneSymbol":"RPL7P9","entrezGeneId":653702},{"hugoGeneSymbol":"RPL8","entrezGeneId":6132},{"hugoGeneSymbol":"RPL8P1","entrezGeneId":387046},{"hugoGeneSymbol":"RPL8P2","entrezGeneId":100128766},{"hugoGeneSymbol":"RPL8P3","entrezGeneId":100270854},{"hugoGeneSymbol":"RPL8P4","entrezGeneId":402150},{"hugoGeneSymbol":"RPL8P5","entrezGeneId":100271044},{"hugoGeneSymbol":"RPL9","entrezGeneId":6133},{"hugoGeneSymbol":"RPL9P10","entrezGeneId":100270855},{"hugoGeneSymbol":"RPL9P11","entrezGeneId":642740},{"hugoGeneSymbol":"RPL9P12","entrezGeneId":100270825},{"hugoGeneSymbol":"RPL9P13","entrezGeneId":100270856},{"hugoGeneSymbol":"RPL9P14","entrezGeneId":100132061},{"hugoGeneSymbol":"RPL9P15","entrezGeneId":100270857},{"hugoGeneSymbol":"RPL9P16","entrezGeneId":727835},{"hugoGeneSymbol":"RPL9P17","entrezGeneId":728523},{"hugoGeneSymbol":"RPL9P18","entrezGeneId":389404},{"hugoGeneSymbol":"RPL9P19","entrezGeneId":100129634},{"hugoGeneSymbol":"RPL9P2","entrezGeneId":729004},{"hugoGeneSymbol":"RPL9P20","entrezGeneId":100130392},{"hugoGeneSymbol":"RPL9P21","entrezGeneId":728374},{"hugoGeneSymbol":"RPL9P22","entrezGeneId":100130066},{"hugoGeneSymbol":"RPL9P23","entrezGeneId":100131020},{"hugoGeneSymbol":"RPL9P24","entrezGeneId":100271045},{"hugoGeneSymbol":"RPL9P25","entrezGeneId":654350},{"hugoGeneSymbol":"RPL9P26","entrezGeneId":100271227},{"hugoGeneSymbol":"RPL9P27","entrezGeneId":100131246},{"hugoGeneSymbol":"RPL9P28","entrezGeneId":729146},{"hugoGeneSymbol":"RPL9P29","entrezGeneId":100129357},{"hugoGeneSymbol":"RPL9P3","entrezGeneId":641616},{"hugoGeneSymbol":"RPL9P30","entrezGeneId":100128710},{"hugoGeneSymbol":"RPL9P31","entrezGeneId":100271228},{"hugoGeneSymbol":"RPL9P32","entrezGeneId":727865},{"hugoGeneSymbol":"RPL9P33","entrezGeneId":100271229},{"hugoGeneSymbol":"RPL9P4","entrezGeneId":644223},{"hugoGeneSymbol":"RPL9P5","entrezGeneId":100129179},{"hugoGeneSymbol":"RPL9P6","entrezGeneId":326311},{"hugoGeneSymbol":"RPL9P7","entrezGeneId":6126},{"hugoGeneSymbol":"RPL9P8","entrezGeneId":254948},{"hugoGeneSymbol":"RPLP0","entrezGeneId":6175},{"hugoGeneSymbol":"RPLP0P1","entrezGeneId":128745},{"hugoGeneSymbol":"RPLP0P10","entrezGeneId":390578},{"hugoGeneSymbol":"RPLP0P11","entrezGeneId":647094},{"hugoGeneSymbol":"RPLP0P2","entrezGeneId":113157},{"hugoGeneSymbol":"RPLP0P3","entrezGeneId":122589},{"hugoGeneSymbol":"RPLP0P4","entrezGeneId":391102},{"hugoGeneSymbol":"RPLP0P5","entrezGeneId":643779},{"hugoGeneSymbol":"RPLP0P6","entrezGeneId":220717},{"hugoGeneSymbol":"RPLP0P7","entrezGeneId":100271047},{"hugoGeneSymbol":"RPLP0P8","entrezGeneId":100131151},{"hugoGeneSymbol":"RPLP0P9","entrezGeneId":441114},{"hugoGeneSymbol":"RPLP1","entrezGeneId":6176},{"hugoGeneSymbol":"RPLP1P1","entrezGeneId":145499},{"hugoGeneSymbol":"RPLP1P10","entrezGeneId":100271346},{"hugoGeneSymbol":"RPLP1P11","entrezGeneId":100131087},{"hugoGeneSymbol":"RPLP1P12","entrezGeneId":646566},{"hugoGeneSymbol":"RPLP1P13","entrezGeneId":100874124},{"hugoGeneSymbol":"RPLP1P2","entrezGeneId":729138},{"hugoGeneSymbol":"RPLP1P3","entrezGeneId":127099},{"hugoGeneSymbol":"RPLP1P4","entrezGeneId":100129028},{"hugoGeneSymbol":"RPLP1P5","entrezGeneId":130678},{"hugoGeneSymbol":"RPLP1P6","entrezGeneId":729416},{"hugoGeneSymbol":"RPLP1P7","entrezGeneId":133609},{"hugoGeneSymbol":"RPLP1P8","entrezGeneId":100128745},{"hugoGeneSymbol":"RPLP1P9","entrezGeneId":100271049},{"hugoGeneSymbol":"RPLP2","entrezGeneId":6181},{"hugoGeneSymbol":"RPLP2P1","entrezGeneId":442175},{"hugoGeneSymbol":"RPLP2P2","entrezGeneId":644198},{"hugoGeneSymbol":"RPLP2P3","entrezGeneId":643949},{"hugoGeneSymbol":"RPLP2P4","entrezGeneId":100271347},{"hugoGeneSymbol":"RPLP2P5","entrezGeneId":100271348},{"hugoGeneSymbol":"RPN1","entrezGeneId":6184},{"hugoGeneSymbol":"RPN2","entrezGeneId":6185},{"hugoGeneSymbol":"RPP14","entrezGeneId":11102},{"hugoGeneSymbol":"RPP21","entrezGeneId":79897},{"hugoGeneSymbol":"RPP25","entrezGeneId":54913},{"hugoGeneSymbol":"RPP25L","entrezGeneId":138716},{"hugoGeneSymbol":"RPP30","entrezGeneId":10556},{"hugoGeneSymbol":"RPP38","entrezGeneId":10557},{"hugoGeneSymbol":"RPP40","entrezGeneId":10799},{"hugoGeneSymbol":"RPP40P1","entrezGeneId":100874225},{"hugoGeneSymbol":"RPP40P2","entrezGeneId":100420608},{"hugoGeneSymbol":"RPPH1","entrezGeneId":85495},{"hugoGeneSymbol":"RPPH1-2P","entrezGeneId":106481202},{"hugoGeneSymbol":"RPPH1-3P","entrezGeneId":106479602},{"hugoGeneSymbol":"RPRD1A","entrezGeneId":55197},{"hugoGeneSymbol":"RPRD1B","entrezGeneId":58490},{"hugoGeneSymbol":"RPRD2","entrezGeneId":23248},{"hugoGeneSymbol":"RPRM","entrezGeneId":56475},{"hugoGeneSymbol":"RPRML","entrezGeneId":388394},{"hugoGeneSymbol":"RPS10","entrezGeneId":6204},{"hugoGeneSymbol":"RPS10-NUDT3","entrezGeneId":100529239},{"hugoGeneSymbol":"RPS10P1","entrezGeneId":394255},{"hugoGeneSymbol":"RPS10P10","entrezGeneId":389127},{"hugoGeneSymbol":"RPS10P11","entrezGeneId":391833},{"hugoGeneSymbol":"RPS10P12","entrezGeneId":133569},{"hugoGeneSymbol":"RPS10P13","entrezGeneId":646785},{"hugoGeneSymbol":"RPS10P14","entrezGeneId":646942},{"hugoGeneSymbol":"RPS10P15","entrezGeneId":654029},{"hugoGeneSymbol":"RPS10P16","entrezGeneId":100271050},{"hugoGeneSymbol":"RPS10P17","entrezGeneId":645857},{"hugoGeneSymbol":"RPS10P18","entrezGeneId":100271349},{"hugoGeneSymbol":"RPS10P19","entrezGeneId":100271350},{"hugoGeneSymbol":"RPS10P2","entrezGeneId":140758},{"hugoGeneSymbol":"RPS10P20","entrezGeneId":100271547},{"hugoGeneSymbol":"RPS10P21","entrezGeneId":100271351},{"hugoGeneSymbol":"RPS10P22","entrezGeneId":401817},{"hugoGeneSymbol":"RPS10P23","entrezGeneId":645713},{"hugoGeneSymbol":"RPS10P24","entrezGeneId":645299},{"hugoGeneSymbol":"RPS10P25","entrezGeneId":100271546},{"hugoGeneSymbol":"RPS10P26","entrezGeneId":100271548},{"hugoGeneSymbol":"RPS10P27","entrezGeneId":100129556},{"hugoGeneSymbol":"RPS10P28","entrezGeneId":100132372},{"hugoGeneSymbol":"RPS10P29","entrezGeneId":388885},{"hugoGeneSymbol":"RPS10P3","entrezGeneId":158104},{"hugoGeneSymbol":"RPS10P30","entrezGeneId":343851},{"hugoGeneSymbol":"RPS10P31","entrezGeneId":100129939},{"hugoGeneSymbol":"RPS10P4","entrezGeneId":728791},{"hugoGeneSymbol":"RPS10P5","entrezGeneId":93144},{"hugoGeneSymbol":"RPS10P6","entrezGeneId":729374},{"hugoGeneSymbol":"RPS10P7","entrezGeneId":376693},{"hugoGeneSymbol":"RPS10P8","entrezGeneId":729780},{"hugoGeneSymbol":"RPS10P9","entrezGeneId":730187},{"hugoGeneSymbol":"RPS11","entrezGeneId":6205},{"hugoGeneSymbol":"RPS11P1","entrezGeneId":128718},{"hugoGeneSymbol":"RPS11P2","entrezGeneId":645916},{"hugoGeneSymbol":"RPS11P3","entrezGeneId":100270898},{"hugoGeneSymbol":"RPS11P4","entrezGeneId":100271052},{"hugoGeneSymbol":"RPS11P5","entrezGeneId":727826},{"hugoGeneSymbol":"RPS11P6","entrezGeneId":729258},{"hugoGeneSymbol":"RPS11P7","entrezGeneId":642687},{"hugoGeneSymbol":"RPS12","entrezGeneId":6206},{"hugoGeneSymbol":"RPS12P1","entrezGeneId":326312},{"hugoGeneSymbol":"RPS12P10","entrezGeneId":100271056},{"hugoGeneSymbol":"RPS12P11","entrezGeneId":442270},{"hugoGeneSymbol":"RPS12P12","entrezGeneId":100131761},{"hugoGeneSymbol":"RPS12P13","entrezGeneId":100271057},{"hugoGeneSymbol":"RPS12P14","entrezGeneId":100271058},{"hugoGeneSymbol":"RPS12P15","entrezGeneId":100271059},{"hugoGeneSymbol":"RPS12P16","entrezGeneId":100271352},{"hugoGeneSymbol":"RPS12P17","entrezGeneId":100271353},{"hugoGeneSymbol":"RPS12P18","entrezGeneId":100271354},{"hugoGeneSymbol":"RPS12P2","entrezGeneId":619448},{"hugoGeneSymbol":"RPS12P20","entrezGeneId":100271549},{"hugoGeneSymbol":"RPS12P21","entrezGeneId":100271550},{"hugoGeneSymbol":"RPS12P22","entrezGeneId":440055},{"hugoGeneSymbol":"RPS12P23","entrezGeneId":338870},{"hugoGeneSymbol":"RPS12P24","entrezGeneId":100271551},{"hugoGeneSymbol":"RPS12P25","entrezGeneId":646985},{"hugoGeneSymbol":"RPS12P26","entrezGeneId":100130495},{"hugoGeneSymbol":"RPS12P27","entrezGeneId":100271552},{"hugoGeneSymbol":"RPS12P28","entrezGeneId":100271553},{"hugoGeneSymbol":"RPS12P29","entrezGeneId":728244},{"hugoGeneSymbol":"RPS12P3","entrezGeneId":344423},{"hugoGeneSymbol":"RPS12P30","entrezGeneId":100271555},{"hugoGeneSymbol":"RPS12P31","entrezGeneId":100130192},{"hugoGeneSymbol":"RPS12P32","entrezGeneId":100271556},{"hugoGeneSymbol":"RPS12P4","entrezGeneId":391370},{"hugoGeneSymbol":"RPS12P5","entrezGeneId":100271053},{"hugoGeneSymbol":"RPS12P6","entrezGeneId":100271054},{"hugoGeneSymbol":"RPS12P7","entrezGeneId":100271055},{"hugoGeneSymbol":"RPS12P8","entrezGeneId":402184},{"hugoGeneSymbol":"RPS12P9","entrezGeneId":727997},{"hugoGeneSymbol":"RPS13","entrezGeneId":6207},{"hugoGeneSymbol":"RPS13P1","entrezGeneId":100128305},{"hugoGeneSymbol":"RPS13P2","entrezGeneId":729236},{"hugoGeneSymbol":"RPS13P3","entrezGeneId":100129718},{"hugoGeneSymbol":"RPS13P4","entrezGeneId":100271060},{"hugoGeneSymbol":"RPS13P5","entrezGeneId":100271061},{"hugoGeneSymbol":"RPS13P6","entrezGeneId":100271062},{"hugoGeneSymbol":"RPS13P7","entrezGeneId":645918},{"hugoGeneSymbol":"RPS13P8","entrezGeneId":645630},{"hugoGeneSymbol":"RPS14","entrezGeneId":6208},{"hugoGeneSymbol":"RPS14P1","entrezGeneId":100271063},{"hugoGeneSymbol":"RPS14P10","entrezGeneId":647034},{"hugoGeneSymbol":"RPS14P2","entrezGeneId":100271064},{"hugoGeneSymbol":"RPS14P3","entrezGeneId":644068},{"hugoGeneSymbol":"RPS14P4","entrezGeneId":100132382},{"hugoGeneSymbol":"RPS14P5","entrezGeneId":100133255},{"hugoGeneSymbol":"RPS14P6","entrezGeneId":646737},{"hugoGeneSymbol":"RPS14P7","entrezGeneId":100271065},{"hugoGeneSymbol":"RPS14P8","entrezGeneId":644146},{"hugoGeneSymbol":"RPS14P9","entrezGeneId":644119},{"hugoGeneSymbol":"RPS15","entrezGeneId":6209},{"hugoGeneSymbol":"RPS15A","entrezGeneId":6210},{"hugoGeneSymbol":"RPS15AP1","entrezGeneId":92682},{"hugoGeneSymbol":"RPS15AP10","entrezGeneId":728963},{"hugoGeneSymbol":"RPS15AP11","entrezGeneId":644790},{"hugoGeneSymbol":"RPS15AP12","entrezGeneId":100129243},{"hugoGeneSymbol":"RPS15AP13","entrezGeneId":100128605},{"hugoGeneSymbol":"RPS15AP14","entrezGeneId":100127924},{"hugoGeneSymbol":"RPS15AP15","entrezGeneId":100130782},{"hugoGeneSymbol":"RPS15AP16","entrezGeneId":100271358},{"hugoGeneSymbol":"RPS15AP17","entrezGeneId":391656},{"hugoGeneSymbol":"RPS15AP18","entrezGeneId":100271360},{"hugoGeneSymbol":"RPS15AP19","entrezGeneId":646819},{"hugoGeneSymbol":"RPS15AP2","entrezGeneId":326316},{"hugoGeneSymbol":"RPS15AP20","entrezGeneId":647155},{"hugoGeneSymbol":"RPS15AP21","entrezGeneId":100271357},{"hugoGeneSymbol":"RPS15AP22","entrezGeneId":100271557},{"hugoGeneSymbol":"RPS15AP23","entrezGeneId":100271558},{"hugoGeneSymbol":"RPS15AP24","entrezGeneId":648729},{"hugoGeneSymbol":"RPS15AP25","entrezGeneId":728774},{"hugoGeneSymbol":"RPS15AP26","entrezGeneId":100271359},{"hugoGeneSymbol":"RPS15AP27","entrezGeneId":100271613},{"hugoGeneSymbol":"RPS15AP28","entrezGeneId":100132400},{"hugoGeneSymbol":"RPS15AP29","entrezGeneId":100128863},{"hugoGeneSymbol":"RPS15AP3","entrezGeneId":326317},{"hugoGeneSymbol":"RPS15AP30","entrezGeneId":100271607},{"hugoGeneSymbol":"RPS15AP31","entrezGeneId":100271652},{"hugoGeneSymbol":"RPS15AP32","entrezGeneId":100271649},{"hugoGeneSymbol":"RPS15AP33","entrezGeneId":100271654},{"hugoGeneSymbol":"RPS15AP34","entrezGeneId":390735},{"hugoGeneSymbol":"RPS15AP35","entrezGeneId":390848},{"hugoGeneSymbol":"RPS15AP36","entrezGeneId":100271650},{"hugoGeneSymbol":"RPS15AP37","entrezGeneId":100271651},{"hugoGeneSymbol":"RPS15AP38","entrezGeneId":100271655},{"hugoGeneSymbol":"RPS15AP39","entrezGeneId":100129284},{"hugoGeneSymbol":"RPS15AP4","entrezGeneId":654371},{"hugoGeneSymbol":"RPS15AP40","entrezGeneId":100128083},{"hugoGeneSymbol":"RPS15AP5","entrezGeneId":414230},{"hugoGeneSymbol":"RPS15AP6","entrezGeneId":100271141},{"hugoGeneSymbol":"RPS15AP7","entrezGeneId":100271142},{"hugoGeneSymbol":"RPS15AP8","entrezGeneId":100271143},{"hugoGeneSymbol":"RPS15AP9","entrezGeneId":441898},{"hugoGeneSymbol":"RPS15P1","entrezGeneId":728428},{"hugoGeneSymbol":"RPS15P2","entrezGeneId":100271066},{"hugoGeneSymbol":"RPS15P3","entrezGeneId":391137},{"hugoGeneSymbol":"RPS15P4","entrezGeneId":401019},{"hugoGeneSymbol":"RPS15P5","entrezGeneId":729789},{"hugoGeneSymbol":"RPS15P6","entrezGeneId":391845},{"hugoGeneSymbol":"RPS15P7","entrezGeneId":100271361},{"hugoGeneSymbol":"RPS15P8","entrezGeneId":390576},{"hugoGeneSymbol":"RPS15P9","entrezGeneId":401895},{"hugoGeneSymbol":"RPS16","entrezGeneId":6217},{"hugoGeneSymbol":"RPS16P1","entrezGeneId":441876},{"hugoGeneSymbol":"RPS16P10","entrezGeneId":729903},{"hugoGeneSymbol":"RPS16P2","entrezGeneId":402069},{"hugoGeneSymbol":"RPS16P3","entrezGeneId":100271067},{"hugoGeneSymbol":"RPS16P4","entrezGeneId":100271068},{"hugoGeneSymbol":"RPS16P5","entrezGeneId":647190},{"hugoGeneSymbol":"RPS16P6","entrezGeneId":100271362},{"hugoGeneSymbol":"RPS16P7","entrezGeneId":441744},{"hugoGeneSymbol":"RPS16P8","entrezGeneId":654170},{"hugoGeneSymbol":"RPS16P9","entrezGeneId":645412},{"hugoGeneSymbol":"RPS17","entrezGeneId":6218},{"hugoGeneSymbol":"RPS17P1","entrezGeneId":442195},{"hugoGeneSymbol":"RPS17P10","entrezGeneId":100271071},{"hugoGeneSymbol":"RPS17P11","entrezGeneId":100271072},{"hugoGeneSymbol":"RPS17P12","entrezGeneId":442726},{"hugoGeneSymbol":"RPS17P13","entrezGeneId":100271073},{"hugoGeneSymbol":"RPS17P14","entrezGeneId":100271074},{"hugoGeneSymbol":"RPS17P15","entrezGeneId":100271363},{"hugoGeneSymbol":"RPS17P16","entrezGeneId":402057},{"hugoGeneSymbol":"RPS17P17","entrezGeneId":100271230},{"hugoGeneSymbol":"RPS17P2","entrezGeneId":6219},{"hugoGeneSymbol":"RPS17P3","entrezGeneId":646013},{"hugoGeneSymbol":"RPS17P5","entrezGeneId":442216},{"hugoGeneSymbol":"RPS17P6","entrezGeneId":391130},{"hugoGeneSymbol":"RPS17P7","entrezGeneId":100271069},{"hugoGeneSymbol":"RPS17P8","entrezGeneId":100271070},{"hugoGeneSymbol":"RPS17P9","entrezGeneId":100130823},{"hugoGeneSymbol":"RPS18","entrezGeneId":6222},{"hugoGeneSymbol":"RPS18P1","entrezGeneId":128676},{"hugoGeneSymbol":"RPS18P10","entrezGeneId":729293},{"hugoGeneSymbol":"RPS18P11","entrezGeneId":100271077},{"hugoGeneSymbol":"RPS18P12","entrezGeneId":388339},{"hugoGeneSymbol":"RPS18P13","entrezGeneId":100271364},{"hugoGeneSymbol":"RPS18P14","entrezGeneId":100128535},{"hugoGeneSymbol":"RPS18P2","entrezGeneId":326320},{"hugoGeneSymbol":"RPS18P3","entrezGeneId":100128258},{"hugoGeneSymbol":"RPS18P4","entrezGeneId":100271075},{"hugoGeneSymbol":"RPS18P5","entrezGeneId":100131863},{"hugoGeneSymbol":"RPS18P6","entrezGeneId":100271076},{"hugoGeneSymbol":"RPS18P7","entrezGeneId":133790},{"hugoGeneSymbol":"RPS18P8","entrezGeneId":643627},{"hugoGeneSymbol":"RPS18P9","entrezGeneId":645958},{"hugoGeneSymbol":"RPS19","entrezGeneId":6223},{"hugoGeneSymbol":"RPS19BP1","entrezGeneId":91582},{"hugoGeneSymbol":"RPS19P1","entrezGeneId":85486},{"hugoGeneSymbol":"RPS19P2","entrezGeneId":85487},{"hugoGeneSymbol":"RPS19P3","entrezGeneId":728953},{"hugoGeneSymbol":"RPS19P4","entrezGeneId":100132049},{"hugoGeneSymbol":"RPS19P5","entrezGeneId":100131286},{"hugoGeneSymbol":"RPS19P6","entrezGeneId":100271078},{"hugoGeneSymbol":"RPS19P7","entrezGeneId":728509},{"hugoGeneSymbol":"RPS2","entrezGeneId":6187},{"hugoGeneSymbol":"RPS20","entrezGeneId":6224},{"hugoGeneSymbol":"RPS20P1","entrezGeneId":54025},{"hugoGeneSymbol":"RPS20P10","entrezGeneId":100271081},{"hugoGeneSymbol":"RPS20P11","entrezGeneId":100271082},{"hugoGeneSymbol":"RPS20P12","entrezGeneId":100271083},{"hugoGeneSymbol":"RPS20P13","entrezGeneId":100271084},{"hugoGeneSymbol":"RPS20P14","entrezGeneId":440992},{"hugoGeneSymbol":"RPS20P15","entrezGeneId":100271085},{"hugoGeneSymbol":"RPS20P16","entrezGeneId":100271086},{"hugoGeneSymbol":"RPS20P17","entrezGeneId":100271088},{"hugoGeneSymbol":"RPS20P18","entrezGeneId":100271231},{"hugoGeneSymbol":"RPS20P19","entrezGeneId":644309},{"hugoGeneSymbol":"RPS20P2","entrezGeneId":64726},{"hugoGeneSymbol":"RPS20P20","entrezGeneId":100271233},{"hugoGeneSymbol":"RPS20P21","entrezGeneId":100271234},{"hugoGeneSymbol":"RPS20P22","entrezGeneId":100271087},{"hugoGeneSymbol":"RPS20P23","entrezGeneId":100271089},{"hugoGeneSymbol":"RPS20P24","entrezGeneId":100271232},{"hugoGeneSymbol":"RPS20P25","entrezGeneId":100271235},{"hugoGeneSymbol":"RPS20P26","entrezGeneId":646660},{"hugoGeneSymbol":"RPS20P27","entrezGeneId":729927},{"hugoGeneSymbol":"RPS20P28","entrezGeneId":100271560},{"hugoGeneSymbol":"RPS20P29","entrezGeneId":100271561},{"hugoGeneSymbol":"RPS20P3","entrezGeneId":6225},{"hugoGeneSymbol":"RPS20P30","entrezGeneId":100271562},{"hugoGeneSymbol":"RPS20P31","entrezGeneId":100271563},{"hugoGeneSymbol":"RPS20P32","entrezGeneId":100129306},{"hugoGeneSymbol":"RPS20P33","entrezGeneId":100271564},{"hugoGeneSymbol":"RPS20P34","entrezGeneId":100271565},{"hugoGeneSymbol":"RPS20P35","entrezGeneId":100271566},{"hugoGeneSymbol":"RPS20P4","entrezGeneId":6226},{"hugoGeneSymbol":"RPS20P5","entrezGeneId":100270899},{"hugoGeneSymbol":"RPS20P6","entrezGeneId":100270900},{"hugoGeneSymbol":"RPS20P7","entrezGeneId":100270901},{"hugoGeneSymbol":"RPS20P8","entrezGeneId":100271079},{"hugoGeneSymbol":"RPS20P9","entrezGeneId":100271080},{"hugoGeneSymbol":"RPS21","entrezGeneId":6227},{"hugoGeneSymbol":"RPS21P1","entrezGeneId":100271090},{"hugoGeneSymbol":"RPS21P2","entrezGeneId":100132961},{"hugoGeneSymbol":"RPS21P3","entrezGeneId":100132993},{"hugoGeneSymbol":"RPS21P4","entrezGeneId":100128912},{"hugoGeneSymbol":"RPS21P5","entrezGeneId":100271236},{"hugoGeneSymbol":"RPS21P6","entrezGeneId":100271365},{"hugoGeneSymbol":"RPS21P7","entrezGeneId":100271366},{"hugoGeneSymbol":"RPS21P8","entrezGeneId":100873798},{"hugoGeneSymbol":"RPS23","entrezGeneId":6228},{"hugoGeneSymbol":"RPS23P1","entrezGeneId":93948},{"hugoGeneSymbol":"RPS23P10","entrezGeneId":100419471},{"hugoGeneSymbol":"RPS23P2","entrezGeneId":391701},{"hugoGeneSymbol":"RPS23P3","entrezGeneId":100271091},{"hugoGeneSymbol":"RPS23P4","entrezGeneId":100271092},{"hugoGeneSymbol":"RPS23P5","entrezGeneId":100271093},{"hugoGeneSymbol":"RPS23P6","entrezGeneId":100271367},{"hugoGeneSymbol":"RPS23P7","entrezGeneId":100130106},{"hugoGeneSymbol":"RPS23P8","entrezGeneId":653658},{"hugoGeneSymbol":"RPS23P9","entrezGeneId":100419472},{"hugoGeneSymbol":"RPS24","entrezGeneId":6229},{"hugoGeneSymbol":"RPS24P1","entrezGeneId":23756},{"hugoGeneSymbol":"RPS24P10","entrezGeneId":100271097},{"hugoGeneSymbol":"RPS24P11","entrezGeneId":100128519},{"hugoGeneSymbol":"RPS24P12","entrezGeneId":100271098},{"hugoGeneSymbol":"RPS24P13","entrezGeneId":100216338},{"hugoGeneSymbol":"RPS24P14","entrezGeneId":100128423},{"hugoGeneSymbol":"RPS24P15","entrezGeneId":390107},{"hugoGeneSymbol":"RPS24P16","entrezGeneId":100216340},{"hugoGeneSymbol":"RPS24P17","entrezGeneId":100216341},{"hugoGeneSymbol":"RPS24P18","entrezGeneId":100271371},{"hugoGeneSymbol":"RPS24P19","entrezGeneId":100130183},{"hugoGeneSymbol":"RPS24P2","entrezGeneId":326321},{"hugoGeneSymbol":"RPS24P3","entrezGeneId":326322},{"hugoGeneSymbol":"RPS24P4","entrezGeneId":729257},{"hugoGeneSymbol":"RPS24P5","entrezGeneId":100271094},{"hugoGeneSymbol":"RPS24P6","entrezGeneId":100216339},{"hugoGeneSymbol":"RPS24P7","entrezGeneId":100216342},{"hugoGeneSymbol":"RPS24P8","entrezGeneId":100216336},{"hugoGeneSymbol":"RPS24P9","entrezGeneId":100132496},{"hugoGeneSymbol":"RPS25","entrezGeneId":6230},{"hugoGeneSymbol":"RPS25P1","entrezGeneId":283114},{"hugoGeneSymbol":"RPS25P10","entrezGeneId":100271372},{"hugoGeneSymbol":"RPS25P2","entrezGeneId":100271100},{"hugoGeneSymbol":"RPS25P3","entrezGeneId":100271101},{"hugoGeneSymbol":"RPS25P4","entrezGeneId":391539},{"hugoGeneSymbol":"RPS25P5","entrezGeneId":100271102},{"hugoGeneSymbol":"RPS25P6","entrezGeneId":401206},{"hugoGeneSymbol":"RPS25P7","entrezGeneId":100271103},{"hugoGeneSymbol":"RPS25P8","entrezGeneId":100131196},{"hugoGeneSymbol":"RPS25P9","entrezGeneId":100271373},{"hugoGeneSymbol":"RPS26","entrezGeneId":6231},{"hugoGeneSymbol":"RPS26P1","entrezGeneId":54024},{"hugoGeneSymbol":"RPS26P10","entrezGeneId":401470},{"hugoGeneSymbol":"RPS26P11","entrezGeneId":441502},{"hugoGeneSymbol":"RPS26P12","entrezGeneId":100271104},{"hugoGeneSymbol":"RPS26P13","entrezGeneId":100271106},{"hugoGeneSymbol":"RPS26P14","entrezGeneId":100270902},{"hugoGeneSymbol":"RPS26P15","entrezGeneId":644928},{"hugoGeneSymbol":"RPS26P16","entrezGeneId":730177},{"hugoGeneSymbol":"RPS26P17","entrezGeneId":391165},{"hugoGeneSymbol":"RPS26P18","entrezGeneId":100271108},{"hugoGeneSymbol":"RPS26P19","entrezGeneId":100271110},{"hugoGeneSymbol":"RPS26P2","entrezGeneId":646753},{"hugoGeneSymbol":"RPS26P20","entrezGeneId":644166},{"hugoGeneSymbol":"RPS26P21","entrezGeneId":100271105},{"hugoGeneSymbol":"RPS26P22","entrezGeneId":100271112},{"hugoGeneSymbol":"RPS26P23","entrezGeneId":100271107},{"hugoGeneSymbol":"RPS26P24","entrezGeneId":100271113},{"hugoGeneSymbol":"RPS26P25","entrezGeneId":728937},{"hugoGeneSymbol":"RPS26P26","entrezGeneId":100271109},{"hugoGeneSymbol":"RPS26P27","entrezGeneId":100271237},{"hugoGeneSymbol":"RPS26P28","entrezGeneId":643003},{"hugoGeneSymbol":"RPS26P29","entrezGeneId":442158},{"hugoGeneSymbol":"RPS26P3","entrezGeneId":441386},{"hugoGeneSymbol":"RPS26P30","entrezGeneId":100271111},{"hugoGeneSymbol":"RPS26P31","entrezGeneId":645979},{"hugoGeneSymbol":"RPS26P32","entrezGeneId":389472},{"hugoGeneSymbol":"RPS26P33","entrezGeneId":100271239},{"hugoGeneSymbol":"RPS26P34","entrezGeneId":100271114},{"hugoGeneSymbol":"RPS26P35","entrezGeneId":441377},{"hugoGeneSymbol":"RPS26P36","entrezGeneId":100271240},{"hugoGeneSymbol":"RPS26P37","entrezGeneId":100271238},{"hugoGeneSymbol":"RPS26P38","entrezGeneId":100129552},{"hugoGeneSymbol":"RPS26P39","entrezGeneId":100128168},{"hugoGeneSymbol":"RPS26P4","entrezGeneId":692146},{"hugoGeneSymbol":"RPS26P40","entrezGeneId":338611},{"hugoGeneSymbol":"RPS26P41","entrezGeneId":100271567},{"hugoGeneSymbol":"RPS26P42","entrezGeneId":100271568},{"hugoGeneSymbol":"RPS26P43","entrezGeneId":100271571},{"hugoGeneSymbol":"RPS26P44","entrezGeneId":100271569},{"hugoGeneSymbol":"RPS26P45","entrezGeneId":100271570},{"hugoGeneSymbol":"RPS26P46","entrezGeneId":100271572},{"hugoGeneSymbol":"RPS26P47","entrezGeneId":400156},{"hugoGeneSymbol":"RPS26P48","entrezGeneId":100271574},{"hugoGeneSymbol":"RPS26P49","entrezGeneId":100271575},{"hugoGeneSymbol":"RPS26P5","entrezGeneId":387495},{"hugoGeneSymbol":"RPS26P50","entrezGeneId":644934},{"hugoGeneSymbol":"RPS26P51","entrezGeneId":100271576},{"hugoGeneSymbol":"RPS26P52","entrezGeneId":100271577},{"hugoGeneSymbol":"RPS26P53","entrezGeneId":728823},{"hugoGeneSymbol":"RPS26P54","entrezGeneId":100131971},{"hugoGeneSymbol":"RPS26P55","entrezGeneId":100129650},{"hugoGeneSymbol":"RPS26P56","entrezGeneId":100271400},{"hugoGeneSymbol":"RPS26P57","entrezGeneId":100271401},{"hugoGeneSymbol":"RPS26P58","entrezGeneId":729188},{"hugoGeneSymbol":"RPS26P6","entrezGeneId":392256},{"hugoGeneSymbol":"RPS26P7","entrezGeneId":619443},{"hugoGeneSymbol":"RPS26P8","entrezGeneId":644191},{"hugoGeneSymbol":"RPS26P9","entrezGeneId":446209},{"hugoGeneSymbol":"RPS27","entrezGeneId":6232},{"hugoGeneSymbol":"RPS27A","entrezGeneId":6233},{"hugoGeneSymbol":"RPS27AP1","entrezGeneId":103911},{"hugoGeneSymbol":"RPS27AP10","entrezGeneId":100271377},{"hugoGeneSymbol":"RPS27AP11","entrezGeneId":728590},{"hugoGeneSymbol":"RPS27AP12","entrezGeneId":100130446},{"hugoGeneSymbol":"RPS27AP13","entrezGeneId":100130300},{"hugoGeneSymbol":"RPS27AP14","entrezGeneId":100271378},{"hugoGeneSymbol":"RPS27AP15","entrezGeneId":100271379},{"hugoGeneSymbol":"RPS27AP16","entrezGeneId":643358},{"hugoGeneSymbol":"RPS27AP17","entrezGeneId":392425},{"hugoGeneSymbol":"RPS27AP18","entrezGeneId":100419548},{"hugoGeneSymbol":"RPS27AP19","entrezGeneId":107985274},{"hugoGeneSymbol":"RPS27AP2","entrezGeneId":140752},{"hugoGeneSymbol":"RPS27AP3","entrezGeneId":140714},{"hugoGeneSymbol":"RPS27AP4","entrezGeneId":326323},{"hugoGeneSymbol":"RPS27AP5","entrezGeneId":100271374},{"hugoGeneSymbol":"RPS27AP6","entrezGeneId":100271144},{"hugoGeneSymbol":"RPS27AP7","entrezGeneId":728971},{"hugoGeneSymbol":"RPS27AP8","entrezGeneId":100271375},{"hugoGeneSymbol":"RPS27AP9","entrezGeneId":100271376},{"hugoGeneSymbol":"RPS27L","entrezGeneId":51065},{"hugoGeneSymbol":"RPS27P1","entrezGeneId":414228},{"hugoGeneSymbol":"RPS27P10","entrezGeneId":646233},{"hugoGeneSymbol":"RPS27P11","entrezGeneId":100271115},{"hugoGeneSymbol":"RPS27P12","entrezGeneId":100271117},{"hugoGeneSymbol":"RPS27P13","entrezGeneId":100130070},{"hugoGeneSymbol":"RPS27P14","entrezGeneId":100129279},{"hugoGeneSymbol":"RPS27P15","entrezGeneId":100271118},{"hugoGeneSymbol":"RPS27P16","entrezGeneId":100271119},{"hugoGeneSymbol":"RPS27P17","entrezGeneId":392748},{"hugoGeneSymbol":"RPS27P18","entrezGeneId":100271380},{"hugoGeneSymbol":"RPS27P19","entrezGeneId":100129905},{"hugoGeneSymbol":"RPS27P2","entrezGeneId":654390},{"hugoGeneSymbol":"RPS27P20","entrezGeneId":100271581},{"hugoGeneSymbol":"RPS27P21","entrezGeneId":100131905},{"hugoGeneSymbol":"RPS27P22","entrezGeneId":100131418},{"hugoGeneSymbol":"RPS27P23","entrezGeneId":100130775},{"hugoGeneSymbol":"RPS27P24","entrezGeneId":100133668},{"hugoGeneSymbol":"RPS27P25","entrezGeneId":100271584},{"hugoGeneSymbol":"RPS27P26","entrezGeneId":100271583},{"hugoGeneSymbol":"RPS27P27","entrezGeneId":100271585},{"hugoGeneSymbol":"RPS27P28","entrezGeneId":100271586},{"hugoGeneSymbol":"RPS27P29","entrezGeneId":100132291},{"hugoGeneSymbol":"RPS27P3","entrezGeneId":654365},{"hugoGeneSymbol":"RPS27P4","entrezGeneId":389112},{"hugoGeneSymbol":"RPS27P5","entrezGeneId":100271116},{"hugoGeneSymbol":"RPS27P6","entrezGeneId":100132488},{"hugoGeneSymbol":"RPS27P7","entrezGeneId":100131787},{"hugoGeneSymbol":"RPS27P8","entrezGeneId":653805},{"hugoGeneSymbol":"RPS27P9","entrezGeneId":100131572},{"hugoGeneSymbol":"RPS28","entrezGeneId":6234},{"hugoGeneSymbol":"RPS28P1","entrezGeneId":652980},{"hugoGeneSymbol":"RPS28P2","entrezGeneId":100271120},{"hugoGeneSymbol":"RPS28P3","entrezGeneId":644862},{"hugoGeneSymbol":"RPS28P4","entrezGeneId":645899},{"hugoGeneSymbol":"RPS28P5","entrezGeneId":100271121},{"hugoGeneSymbol":"RPS28P6","entrezGeneId":728453},{"hugoGeneSymbol":"RPS28P7","entrezGeneId":646195},{"hugoGeneSymbol":"RPS28P8","entrezGeneId":100271381},{"hugoGeneSymbol":"RPS28P9","entrezGeneId":650788},{"hugoGeneSymbol":"RPS29","entrezGeneId":6235},{"hugoGeneSymbol":"RPS29P1","entrezGeneId":122449},{"hugoGeneSymbol":"RPS29P10","entrezGeneId":100132037},{"hugoGeneSymbol":"RPS29P11","entrezGeneId":100129902},{"hugoGeneSymbol":"RPS29P12","entrezGeneId":100131173},{"hugoGeneSymbol":"RPS29P13","entrezGeneId":100271122},{"hugoGeneSymbol":"RPS29P14","entrezGeneId":100129599},{"hugoGeneSymbol":"RPS29P15","entrezGeneId":100271241},{"hugoGeneSymbol":"RPS29P16","entrezGeneId":100132499},{"hugoGeneSymbol":"RPS29P17","entrezGeneId":100129379},{"hugoGeneSymbol":"RPS29P18","entrezGeneId":643284},{"hugoGeneSymbol":"RPS29P19","entrezGeneId":100271383},{"hugoGeneSymbol":"RPS29P2","entrezGeneId":619452},{"hugoGeneSymbol":"RPS29P20","entrezGeneId":100271587},{"hugoGeneSymbol":"RPS29P21","entrezGeneId":100129542},{"hugoGeneSymbol":"RPS29P22","entrezGeneId":100271384},{"hugoGeneSymbol":"RPS29P23","entrezGeneId":100271588},{"hugoGeneSymbol":"RPS29P24","entrezGeneId":100271589},{"hugoGeneSymbol":"RPS29P25","entrezGeneId":100271590},{"hugoGeneSymbol":"RPS29P26","entrezGeneId":100271591},{"hugoGeneSymbol":"RPS29P27","entrezGeneId":100271592},{"hugoGeneSymbol":"RPS29P28","entrezGeneId":100271402},{"hugoGeneSymbol":"RPS29P29","entrezGeneId":109729145},{"hugoGeneSymbol":"RPS29P3","entrezGeneId":642892},{"hugoGeneSymbol":"RPS29P30","entrezGeneId":107987273},{"hugoGeneSymbol":"RPS29P31","entrezGeneId":109729124},{"hugoGeneSymbol":"RPS29P32","entrezGeneId":109729158},{"hugoGeneSymbol":"RPS29P33","entrezGeneId":107987018},{"hugoGeneSymbol":"RPS29P4","entrezGeneId":100271123},{"hugoGeneSymbol":"RPS29P5","entrezGeneId":100271124},{"hugoGeneSymbol":"RPS29P6","entrezGeneId":100270903},{"hugoGeneSymbol":"RPS29P7","entrezGeneId":100128377},{"hugoGeneSymbol":"RPS29P8","entrezGeneId":100132376},{"hugoGeneSymbol":"RPS29P9","entrezGeneId":648343},{"hugoGeneSymbol":"RPS2P1","entrezGeneId":140755},{"hugoGeneSymbol":"RPS2P10","entrezGeneId":401974},{"hugoGeneSymbol":"RPS2P11","entrezGeneId":343184},{"hugoGeneSymbol":"RPS2P12","entrezGeneId":650901},{"hugoGeneSymbol":"RPS2P13","entrezGeneId":100270826},{"hugoGeneSymbol":"RPS2P14","entrezGeneId":100270827},{"hugoGeneSymbol":"RPS2P15","entrezGeneId":100270858},{"hugoGeneSymbol":"RPS2P16","entrezGeneId":100270860},{"hugoGeneSymbol":"RPS2P17","entrezGeneId":400963},{"hugoGeneSymbol":"RPS2P18","entrezGeneId":643960},{"hugoGeneSymbol":"RPS2P19","entrezGeneId":100270859},{"hugoGeneSymbol":"RPS2P2","entrezGeneId":326325},{"hugoGeneSymbol":"RPS2P20","entrezGeneId":645018},{"hugoGeneSymbol":"RPS2P21","entrezGeneId":441013},{"hugoGeneSymbol":"RPS2P22","entrezGeneId":100270861},{"hugoGeneSymbol":"RPS2P23","entrezGeneId":100270910},{"hugoGeneSymbol":"RPS2P24","entrezGeneId":100270912},{"hugoGeneSymbol":"RPS2P25","entrezGeneId":100270913},{"hugoGeneSymbol":"RPS2P26","entrezGeneId":643992},{"hugoGeneSymbol":"RPS2P27","entrezGeneId":440447},{"hugoGeneSymbol":"RPS2P28","entrezGeneId":100132673},{"hugoGeneSymbol":"RPS2P29","entrezGeneId":646294},{"hugoGeneSymbol":"RPS2P3","entrezGeneId":326326},{"hugoGeneSymbol":"RPS2P30","entrezGeneId":100270911},{"hugoGeneSymbol":"RPS2P31","entrezGeneId":392781},{"hugoGeneSymbol":"RPS2P32","entrezGeneId":256355},{"hugoGeneSymbol":"RPS2P33","entrezGeneId":286150},{"hugoGeneSymbol":"RPS2P34","entrezGeneId":442426},{"hugoGeneSymbol":"RPS2P35","entrezGeneId":100130980},{"hugoGeneSymbol":"RPS2P36","entrezGeneId":100271243},{"hugoGeneSymbol":"RPS2P37","entrezGeneId":390206},{"hugoGeneSymbol":"RPS2P38","entrezGeneId":196188},{"hugoGeneSymbol":"RPS2P39","entrezGeneId":100271244},{"hugoGeneSymbol":"RPS2P4","entrezGeneId":92427},{"hugoGeneSymbol":"RPS2P40","entrezGeneId":91561},{"hugoGeneSymbol":"RPS2P41","entrezGeneId":100271245},{"hugoGeneSymbol":"RPS2P42","entrezGeneId":100271247},{"hugoGeneSymbol":"RPS2P43","entrezGeneId":100271246},{"hugoGeneSymbol":"RPS2P44","entrezGeneId":100271248},{"hugoGeneSymbol":"RPS2P45","entrezGeneId":80052},{"hugoGeneSymbol":"RPS2P46","entrezGeneId":125208},{"hugoGeneSymbol":"RPS2P47","entrezGeneId":644388},{"hugoGeneSymbol":"RPS2P48","entrezGeneId":645173},{"hugoGeneSymbol":"RPS2P49","entrezGeneId":100271251},{"hugoGeneSymbol":"RPS2P5","entrezGeneId":100130562},{"hugoGeneSymbol":"RPS2P50","entrezGeneId":729842},{"hugoGeneSymbol":"RPS2P51","entrezGeneId":729679},{"hugoGeneSymbol":"RPS2P52","entrezGeneId":100271250},{"hugoGeneSymbol":"RPS2P53","entrezGeneId":729274},{"hugoGeneSymbol":"RPS2P54","entrezGeneId":100271252},{"hugoGeneSymbol":"RPS2P55","entrezGeneId":286444},{"hugoGeneSymbol":"RPS2P6","entrezGeneId":342808},{"hugoGeneSymbol":"RPS2P7","entrezGeneId":86781},{"hugoGeneSymbol":"RPS2P8","entrezGeneId":440589},{"hugoGeneSymbol":"RPS2P9","entrezGeneId":100131866},{"hugoGeneSymbol":"RPS3","entrezGeneId":6188},{"hugoGeneSymbol":"RPS3A","entrezGeneId":6189},{"hugoGeneSymbol":"RPS3AP1","entrezGeneId":101241875},{"hugoGeneSymbol":"RPS3AP10","entrezGeneId":401975},{"hugoGeneSymbol":"RPS3AP11","entrezGeneId":100270904},{"hugoGeneSymbol":"RPS3AP12","entrezGeneId":100270905},{"hugoGeneSymbol":"RPS3AP13","entrezGeneId":100129742},{"hugoGeneSymbol":"RPS3AP14","entrezGeneId":729150},{"hugoGeneSymbol":"RPS3AP15","entrezGeneId":652670},{"hugoGeneSymbol":"RPS3AP16","entrezGeneId":727951},{"hugoGeneSymbol":"RPS3AP17","entrezGeneId":100271130},{"hugoGeneSymbol":"RPS3AP18","entrezGeneId":391706},{"hugoGeneSymbol":"RPS3AP19","entrezGeneId":728700},{"hugoGeneSymbol":"RPS3AP2","entrezGeneId":64725},{"hugoGeneSymbol":"RPS3AP20","entrezGeneId":643932},{"hugoGeneSymbol":"RPS3AP21","entrezGeneId":402287},{"hugoGeneSymbol":"RPS3AP22","entrezGeneId":100130786},{"hugoGeneSymbol":"RPS3AP23","entrezGeneId":100271131},{"hugoGeneSymbol":"RPS3AP24","entrezGeneId":100271253},{"hugoGeneSymbol":"RPS3AP25","entrezGeneId":645968},{"hugoGeneSymbol":"RPS3AP26","entrezGeneId":644972},{"hugoGeneSymbol":"RPS3AP27","entrezGeneId":100271255},{"hugoGeneSymbol":"RPS3AP28","entrezGeneId":100271257},{"hugoGeneSymbol":"RPS3AP29","entrezGeneId":730861},{"hugoGeneSymbol":"RPS3AP3","entrezGeneId":140713},{"hugoGeneSymbol":"RPS3AP30","entrezGeneId":100271254},{"hugoGeneSymbol":"RPS3AP31","entrezGeneId":100271256},{"hugoGeneSymbol":"RPS3AP32","entrezGeneId":100271258},{"hugoGeneSymbol":"RPS3AP33","entrezGeneId":100271259},{"hugoGeneSymbol":"RPS3AP34","entrezGeneId":100271260},{"hugoGeneSymbol":"RPS3AP35","entrezGeneId":100271261},{"hugoGeneSymbol":"RPS3AP36","entrezGeneId":643981},{"hugoGeneSymbol":"RPS3AP37","entrezGeneId":100271593},{"hugoGeneSymbol":"RPS3AP38","entrezGeneId":100271594},{"hugoGeneSymbol":"RPS3AP39","entrezGeneId":730993},{"hugoGeneSymbol":"RPS3AP4","entrezGeneId":100132142},{"hugoGeneSymbol":"RPS3AP40","entrezGeneId":100129199},{"hugoGeneSymbol":"RPS3AP41","entrezGeneId":100271595},{"hugoGeneSymbol":"RPS3AP42","entrezGeneId":100271597},{"hugoGeneSymbol":"RPS3AP43","entrezGeneId":727970},{"hugoGeneSymbol":"RPS3AP44","entrezGeneId":646527},{"hugoGeneSymbol":"RPS3AP46","entrezGeneId":100271596},{"hugoGeneSymbol":"RPS3AP47","entrezGeneId":146053},{"hugoGeneSymbol":"RPS3AP48","entrezGeneId":100127963},{"hugoGeneSymbol":"RPS3AP49","entrezGeneId":400652},{"hugoGeneSymbol":"RPS3AP5","entrezGeneId":439992},{"hugoGeneSymbol":"RPS3AP50","entrezGeneId":100271601},{"hugoGeneSymbol":"RPS3AP51","entrezGeneId":100271600},{"hugoGeneSymbol":"RPS3AP52","entrezGeneId":100873818},{"hugoGeneSymbol":"RPS3AP53","entrezGeneId":100287512},{"hugoGeneSymbol":"RPS3AP54","entrezGeneId":101927101},{"hugoGeneSymbol":"RPS3AP6","entrezGeneId":145767},{"hugoGeneSymbol":"RPS3AP7","entrezGeneId":391168},{"hugoGeneSymbol":"RPS3AP8","entrezGeneId":100271127},{"hugoGeneSymbol":"RPS3AP9","entrezGeneId":100271129},{"hugoGeneSymbol":"RPS3P1","entrezGeneId":140754},{"hugoGeneSymbol":"RPS3P2","entrezGeneId":140761},{"hugoGeneSymbol":"RPS3P3","entrezGeneId":440991},{"hugoGeneSymbol":"RPS3P4","entrezGeneId":100270862},{"hugoGeneSymbol":"RPS3P5","entrezGeneId":100131956},{"hugoGeneSymbol":"RPS3P6","entrezGeneId":645000},{"hugoGeneSymbol":"RPS3P7","entrezGeneId":645957},{"hugoGeneSymbol":"RPS4X","entrezGeneId":6191},{"hugoGeneSymbol":"RPS4XP1","entrezGeneId":400064},{"hugoGeneSymbol":"RPS4XP10","entrezGeneId":100271133},{"hugoGeneSymbol":"RPS4XP11","entrezGeneId":441550},{"hugoGeneSymbol":"RPS4XP12","entrezGeneId":100271385},{"hugoGeneSymbol":"RPS4XP13","entrezGeneId":390183},{"hugoGeneSymbol":"RPS4XP14","entrezGeneId":729097},{"hugoGeneSymbol":"RPS4XP15","entrezGeneId":100131055},{"hugoGeneSymbol":"RPS4XP16","entrezGeneId":220433},{"hugoGeneSymbol":"RPS4XP17","entrezGeneId":100128140},{"hugoGeneSymbol":"RPS4XP18","entrezGeneId":646583},{"hugoGeneSymbol":"RPS4XP19","entrezGeneId":645573},{"hugoGeneSymbol":"RPS4XP2","entrezGeneId":92507},{"hugoGeneSymbol":"RPS4XP20","entrezGeneId":100271386},{"hugoGeneSymbol":"RPS4XP21","entrezGeneId":126235},{"hugoGeneSymbol":"RPS4XP22","entrezGeneId":100131614},{"hugoGeneSymbol":"RPS4XP23","entrezGeneId":106480153},{"hugoGeneSymbol":"RPS4XP3","entrezGeneId":128580},{"hugoGeneSymbol":"RPS4XP4","entrezGeneId":441878},{"hugoGeneSymbol":"RPS4XP5","entrezGeneId":100271132},{"hugoGeneSymbol":"RPS4XP6","entrezGeneId":391777},{"hugoGeneSymbol":"RPS4XP7","entrezGeneId":442162},{"hugoGeneSymbol":"RPS4XP8","entrezGeneId":646269},{"hugoGeneSymbol":"RPS4XP9","entrezGeneId":442257},{"hugoGeneSymbol":"RPS4Y1","entrezGeneId":6192},{"hugoGeneSymbol":"RPS4Y1P1","entrezGeneId":441774},{"hugoGeneSymbol":"RPS4Y2","entrezGeneId":140032},{"hugoGeneSymbol":"RPS5","entrezGeneId":6193},{"hugoGeneSymbol":"RPS5P1","entrezGeneId":26516},{"hugoGeneSymbol":"RPS5P2","entrezGeneId":100130240},{"hugoGeneSymbol":"RPS5P3","entrezGeneId":54022},{"hugoGeneSymbol":"RPS5P4","entrezGeneId":100129090},{"hugoGeneSymbol":"RPS5P5","entrezGeneId":340443},{"hugoGeneSymbol":"RPS5P6","entrezGeneId":392282},{"hugoGeneSymbol":"RPS5P7","entrezGeneId":392520},{"hugoGeneSymbol":"RPS5P8","entrezGeneId":392424},{"hugoGeneSymbol":"RPS6","entrezGeneId":6194},{"hugoGeneSymbol":"RPS6KA1","entrezGeneId":6195},{"hugoGeneSymbol":"RPS6KA2","entrezGeneId":6196},{"hugoGeneSymbol":"RPS6KA2-AS1","entrezGeneId":100861523},{"hugoGeneSymbol":"RPS6KA2-IT1","entrezGeneId":100874353},{"hugoGeneSymbol":"RPS6KA3","entrezGeneId":6197},{"hugoGeneSymbol":"RPS6KA4","entrezGeneId":8986},{"hugoGeneSymbol":"RPS6KA5","entrezGeneId":9252},{"hugoGeneSymbol":"RPS6KA6","entrezGeneId":27330},{"hugoGeneSymbol":"RPS6KB1","entrezGeneId":6198},{"hugoGeneSymbol":"RPS6KB2","entrezGeneId":6199},{"hugoGeneSymbol":"RPS6KB2-AS1","entrezGeneId":111216279},{"hugoGeneSymbol":"RPS6KB3","entrezGeneId":6200},{"hugoGeneSymbol":"RPS6KC1","entrezGeneId":26750},{"hugoGeneSymbol":"RPS6KL1","entrezGeneId":83694},{"hugoGeneSymbol":"RPS6P1","entrezGeneId":440086},{"hugoGeneSymbol":"RPS6P10","entrezGeneId":100270865},{"hugoGeneSymbol":"RPS6P11","entrezGeneId":100270866},{"hugoGeneSymbol":"RPS6P12","entrezGeneId":100270867},{"hugoGeneSymbol":"RPS6P13","entrezGeneId":392358},{"hugoGeneSymbol":"RPS6P14","entrezGeneId":100131396},{"hugoGeneSymbol":"RPS6P15","entrezGeneId":100129732},{"hugoGeneSymbol":"RPS6P16","entrezGeneId":100128923},{"hugoGeneSymbol":"RPS6P17","entrezGeneId":120318},{"hugoGeneSymbol":"RPS6P18","entrezGeneId":100271135},{"hugoGeneSymbol":"RPS6P19","entrezGeneId":100271136},{"hugoGeneSymbol":"RPS6P2","entrezGeneId":100270864},{"hugoGeneSymbol":"RPS6P20","entrezGeneId":100271262},{"hugoGeneSymbol":"RPS6P21","entrezGeneId":100271263},{"hugoGeneSymbol":"RPS6P22","entrezGeneId":100129227},{"hugoGeneSymbol":"RPS6P23","entrezGeneId":100130313},{"hugoGeneSymbol":"RPS6P24","entrezGeneId":100128358},{"hugoGeneSymbol":"RPS6P25","entrezGeneId":729389},{"hugoGeneSymbol":"RPS6P26","entrezGeneId":392497},{"hugoGeneSymbol":"RPS6P3","entrezGeneId":644013},{"hugoGeneSymbol":"RPS6P4","entrezGeneId":100131548},{"hugoGeneSymbol":"RPS6P5","entrezGeneId":100130347},{"hugoGeneSymbol":"RPS6P6","entrezGeneId":728131},{"hugoGeneSymbol":"RPS6P7","entrezGeneId":100128162},{"hugoGeneSymbol":"RPS6P8","entrezGeneId":100128450},{"hugoGeneSymbol":"RPS6P9","entrezGeneId":100131467},{"hugoGeneSymbol":"RPS7","entrezGeneId":6201},{"hugoGeneSymbol":"RPS7P1","entrezGeneId":388363},{"hugoGeneSymbol":"RPS7P10","entrezGeneId":100128060},{"hugoGeneSymbol":"RPS7P11","entrezGeneId":644315},{"hugoGeneSymbol":"RPS7P12","entrezGeneId":100270914},{"hugoGeneSymbol":"RPS7P13","entrezGeneId":100130435},{"hugoGeneSymbol":"RPS7P14","entrezGeneId":646108},{"hugoGeneSymbol":"RPS7P15","entrezGeneId":728015},{"hugoGeneSymbol":"RPS7P2","entrezGeneId":100270868},{"hugoGeneSymbol":"RPS7P3","entrezGeneId":440732},{"hugoGeneSymbol":"RPS7P4","entrezGeneId":149224},{"hugoGeneSymbol":"RPS7P5","entrezGeneId":645884},{"hugoGeneSymbol":"RPS7P6","entrezGeneId":100270869},{"hugoGeneSymbol":"RPS7P7","entrezGeneId":100270870},{"hugoGeneSymbol":"RPS7P8","entrezGeneId":442237},{"hugoGeneSymbol":"RPS7P9","entrezGeneId":100128756},{"hugoGeneSymbol":"RPS8","entrezGeneId":6202},{"hugoGeneSymbol":"RPS8P1","entrezGeneId":192133},{"hugoGeneSymbol":"RPS8P10","entrezGeneId":388076},{"hugoGeneSymbol":"RPS8P3","entrezGeneId":100132995},{"hugoGeneSymbol":"RPS8P4","entrezGeneId":646119},{"hugoGeneSymbol":"RPS8P5","entrezGeneId":100131083},{"hugoGeneSymbol":"RPS8P6","entrezGeneId":100270871},{"hugoGeneSymbol":"RPS8P7","entrezGeneId":646093},{"hugoGeneSymbol":"RPS8P8","entrezGeneId":728553},{"hugoGeneSymbol":"RPS8P9","entrezGeneId":100130750},{"hugoGeneSymbol":"RPS9","entrezGeneId":6203},{"hugoGeneSymbol":"RPS9P1","entrezGeneId":8410},{"hugoGeneSymbol":"RPS9P2","entrezGeneId":267009},{"hugoGeneSymbol":"RPS9P3","entrezGeneId":100133054},{"hugoGeneSymbol":"RPS9P4","entrezGeneId":388556},{"hugoGeneSymbol":"RPSA","entrezGeneId":3921},{"hugoGeneSymbol":"RPSAP1","entrezGeneId":170529},{"hugoGeneSymbol":"RPSAP10","entrezGeneId":401638},{"hugoGeneSymbol":"RPSAP11","entrezGeneId":645326},{"hugoGeneSymbol":"RPSAP12","entrezGeneId":387867},{"hugoGeneSymbol":"RPSAP13","entrezGeneId":3923},{"hugoGeneSymbol":"RPSAP14","entrezGeneId":3924},{"hugoGeneSymbol":"RPSAP15","entrezGeneId":220885},{"hugoGeneSymbol":"RPSAP16","entrezGeneId":100270872},{"hugoGeneSymbol":"RPSAP17","entrezGeneId":100270873},{"hugoGeneSymbol":"RPSAP18","entrezGeneId":388707},{"hugoGeneSymbol":"RPSAP19","entrezGeneId":730029},{"hugoGeneSymbol":"RPSAP2","entrezGeneId":442181},{"hugoGeneSymbol":"RPSAP20","entrezGeneId":127406},{"hugoGeneSymbol":"RPSAP21","entrezGeneId":729079},{"hugoGeneSymbol":"RPSAP22","entrezGeneId":100270874},{"hugoGeneSymbol":"RPSAP23","entrezGeneId":100270875},{"hugoGeneSymbol":"RPSAP24","entrezGeneId":391462},{"hugoGeneSymbol":"RPSAP25","entrezGeneId":129841},{"hugoGeneSymbol":"RPSAP26","entrezGeneId":729209},{"hugoGeneSymbol":"RPSAP27","entrezGeneId":130429},{"hugoGeneSymbol":"RPSAP28","entrezGeneId":391387},{"hugoGeneSymbol":"RPSAP29","entrezGeneId":389141},{"hugoGeneSymbol":"RPSAP3","entrezGeneId":158674},{"hugoGeneSymbol":"RPSAP30","entrezGeneId":728126},{"hugoGeneSymbol":"RPSAP31","entrezGeneId":391598},{"hugoGeneSymbol":"RPSAP32","entrezGeneId":402123},{"hugoGeneSymbol":"RPSAP33","entrezGeneId":647158},{"hugoGeneSymbol":"RPSAP34","entrezGeneId":100270876},{"hugoGeneSymbol":"RPSAP35","entrezGeneId":100270916},{"hugoGeneSymbol":"RPSAP36","entrezGeneId":100128888},{"hugoGeneSymbol":"RPSAP37","entrezGeneId":100270915},{"hugoGeneSymbol":"RPSAP38","entrezGeneId":100130676},{"hugoGeneSymbol":"RPSAP39","entrezGeneId":100131161},{"hugoGeneSymbol":"RPSAP4","entrezGeneId":145259},{"hugoGeneSymbol":"RPSAP40","entrezGeneId":100270917},{"hugoGeneSymbol":"RPSAP41","entrezGeneId":100270918},{"hugoGeneSymbol":"RPSAP42","entrezGeneId":100270919},{"hugoGeneSymbol":"RPSAP43","entrezGeneId":643954},{"hugoGeneSymbol":"RPSAP44","entrezGeneId":652411},{"hugoGeneSymbol":"RPSAP45","entrezGeneId":728562},{"hugoGeneSymbol":"RPSAP46","entrezGeneId":652624},{"hugoGeneSymbol":"RPSAP47","entrezGeneId":389672},{"hugoGeneSymbol":"RPSAP48","entrezGeneId":392262},{"hugoGeneSymbol":"RPSAP49","entrezGeneId":401537},{"hugoGeneSymbol":"RPSAP5","entrezGeneId":319129},{"hugoGeneSymbol":"RPSAP50","entrezGeneId":644109},{"hugoGeneSymbol":"RPSAP51","entrezGeneId":100271267},{"hugoGeneSymbol":"RPSAP52","entrezGeneId":204010},{"hugoGeneSymbol":"RPSAP53","entrezGeneId":400141},{"hugoGeneSymbol":"RPSAP54","entrezGeneId":642641},{"hugoGeneSymbol":"RPSAP55","entrezGeneId":388122},{"hugoGeneSymbol":"RPSAP56","entrezGeneId":645656},{"hugoGeneSymbol":"RPSAP57","entrezGeneId":390857},{"hugoGeneSymbol":"RPSAP58","entrezGeneId":388524},{"hugoGeneSymbol":"RPSAP59","entrezGeneId":100271148},{"hugoGeneSymbol":"RPSAP6","entrezGeneId":414254},{"hugoGeneSymbol":"RPSAP60","entrezGeneId":100271149},{"hugoGeneSymbol":"RPSAP61","entrezGeneId":644464},{"hugoGeneSymbol":"RPSAP62","entrezGeneId":100131469},{"hugoGeneSymbol":"RPSAP63","entrezGeneId":100270755},{"hugoGeneSymbol":"RPSAP64","entrezGeneId":100873797},{"hugoGeneSymbol":"RPSAP65","entrezGeneId":107075109},{"hugoGeneSymbol":"RPSAP66","entrezGeneId":107075110},{"hugoGeneSymbol":"RPSAP67","entrezGeneId":107075111},{"hugoGeneSymbol":"RPSAP68","entrezGeneId":100996520},{"hugoGeneSymbol":"RPSAP69","entrezGeneId":101927158},{"hugoGeneSymbol":"RPSAP7","entrezGeneId":654506},{"hugoGeneSymbol":"RPSAP70","entrezGeneId":105377595},{"hugoGeneSymbol":"RPSAP71","entrezGeneId":107075249},{"hugoGeneSymbol":"RPSAP72","entrezGeneId":107075112},{"hugoGeneSymbol":"RPSAP73","entrezGeneId":107075250},{"hugoGeneSymbol":"RPSAP74","entrezGeneId":107075113},{"hugoGeneSymbol":"RPSAP75","entrezGeneId":107075114},{"hugoGeneSymbol":"RPSAP76","entrezGeneId":101927006},{"hugoGeneSymbol":"RPSAP8","entrezGeneId":643617},{"hugoGeneSymbol":"RPSAP9","entrezGeneId":653162},{"hugoGeneSymbol":"RPTN","entrezGeneId":126638},{"hugoGeneSymbol":"RPTOR","entrezGeneId":57521},{"hugoGeneSymbol":"RPUSD1","entrezGeneId":113000},{"hugoGeneSymbol":"RPUSD2","entrezGeneId":27079},{"hugoGeneSymbol":"RPUSD3","entrezGeneId":285367},{"hugoGeneSymbol":"RPUSD4","entrezGeneId":84881},{"hugoGeneSymbol":"RPY","entrezGeneId":79051},{"hugoGeneSymbol":"RRAD","entrezGeneId":6236},{"hugoGeneSymbol":"RRAGA","entrezGeneId":10670},{"hugoGeneSymbol":"RRAGAP1","entrezGeneId":100462776},{"hugoGeneSymbol":"RRAGB","entrezGeneId":10325},{"hugoGeneSymbol":"RRAGC","entrezGeneId":64121},{"hugoGeneSymbol":"RRAGD","entrezGeneId":58528},{"hugoGeneSymbol":"RRAS","entrezGeneId":6237},{"hugoGeneSymbol":"RRAS2","entrezGeneId":22800},{"hugoGeneSymbol":"RRBP1","entrezGeneId":6238},{"hugoGeneSymbol":"RRDX","entrezGeneId":266719},{"hugoGeneSymbol":"RREB1","entrezGeneId":6239},{"hugoGeneSymbol":"RRH","entrezGeneId":10692},{"hugoGeneSymbol":"RRIS","entrezGeneId":497662},{"hugoGeneSymbol":"RRM1","entrezGeneId":6240},{"hugoGeneSymbol":"RRM1-AS1","entrezGeneId":106478966},{"hugoGeneSymbol":"RRM2","entrezGeneId":6241},{"hugoGeneSymbol":"RRM2B","entrezGeneId":50484},{"hugoGeneSymbol":"RRM2P2","entrezGeneId":6244},{"hugoGeneSymbol":"RRM2P3","entrezGeneId":100420159},{"hugoGeneSymbol":"RRM2P4","entrezGeneId":6246},{"hugoGeneSymbol":"RRN3","entrezGeneId":54700},{"hugoGeneSymbol":"RRN3P1","entrezGeneId":730092},{"hugoGeneSymbol":"RRN3P2","entrezGeneId":653390},{"hugoGeneSymbol":"RRN3P3","entrezGeneId":100131998},{"hugoGeneSymbol":"RRNAD1","entrezGeneId":51093},{"hugoGeneSymbol":"RRP1","entrezGeneId":8568},{"hugoGeneSymbol":"RRP12","entrezGeneId":23223},{"hugoGeneSymbol":"RRP15","entrezGeneId":51018},{"hugoGeneSymbol":"RRP1B","entrezGeneId":23076},{"hugoGeneSymbol":"RRP36","entrezGeneId":88745},{"hugoGeneSymbol":"RRP7A","entrezGeneId":27341},{"hugoGeneSymbol":"RRP7BP","entrezGeneId":91695},{"hugoGeneSymbol":"RRP8","entrezGeneId":23378},{"hugoGeneSymbol":"RRP9","entrezGeneId":9136},{"hugoGeneSymbol":"RRS1","entrezGeneId":23212},{"hugoGeneSymbol":"RRS1-AS1","entrezGeneId":100505676},{"hugoGeneSymbol":"RS1","entrezGeneId":6247},{"hugoGeneSymbol":"RSAD1","entrezGeneId":55316},{"hugoGeneSymbol":"RSAD2","entrezGeneId":91543},{"hugoGeneSymbol":"RSBN1","entrezGeneId":54665},{"hugoGeneSymbol":"RSBN1L","entrezGeneId":222194},{"hugoGeneSymbol":"RSC1A1","entrezGeneId":6248},{"hugoGeneSymbol":"RSCIS","entrezGeneId":64239},{"hugoGeneSymbol":"RSF1","entrezGeneId":51773},{"hugoGeneSymbol":"RSF1-IT1","entrezGeneId":100874308},{"hugoGeneSymbol":"RSF1-IT2","entrezGeneId":100874307},{"hugoGeneSymbol":"RSL1D1","entrezGeneId":26156},{"hugoGeneSymbol":"RSL24D1","entrezGeneId":51187},{"hugoGeneSymbol":"RSL24D1P1","entrezGeneId":100129755},{"hugoGeneSymbol":"RSL24D1P10","entrezGeneId":100130699},{"hugoGeneSymbol":"RSL24D1P11","entrezGeneId":284288},{"hugoGeneSymbol":"RSL24D1P2","entrezGeneId":100129162},{"hugoGeneSymbol":"RSL24D1P3","entrezGeneId":100130721},{"hugoGeneSymbol":"RSL24D1P4","entrezGeneId":391183},{"hugoGeneSymbol":"RSL24D1P5","entrezGeneId":100129941},{"hugoGeneSymbol":"RSL24D1P6","entrezGeneId":140757},{"hugoGeneSymbol":"RSL24D1P7","entrezGeneId":100129861},{"hugoGeneSymbol":"RSL24D1P8","entrezGeneId":100462809},{"hugoGeneSymbol":"RSL24D1P9","entrezGeneId":100128991},{"hugoGeneSymbol":"RSPH1","entrezGeneId":89765},{"hugoGeneSymbol":"RSPH10B","entrezGeneId":222967},{"hugoGeneSymbol":"RSPH10B2","entrezGeneId":728194},{"hugoGeneSymbol":"RSPH14","entrezGeneId":27156},{"hugoGeneSymbol":"RSPH3","entrezGeneId":83861},{"hugoGeneSymbol":"RSPH4A","entrezGeneId":345895},{"hugoGeneSymbol":"RSPH6A","entrezGeneId":81492},{"hugoGeneSymbol":"RSPH9","entrezGeneId":221421},{"hugoGeneSymbol":"RSPO1","entrezGeneId":284654},{"hugoGeneSymbol":"RSPO2","entrezGeneId":340419},{"hugoGeneSymbol":"RSPO3","entrezGeneId":84870},{"hugoGeneSymbol":"RSPO4","entrezGeneId":343637},{"hugoGeneSymbol":"RSPRY1","entrezGeneId":89970},{"hugoGeneSymbol":"RSRC1","entrezGeneId":51319},{"hugoGeneSymbol":"RSRC2","entrezGeneId":65117},{"hugoGeneSymbol":"RSRP1","entrezGeneId":57035},{"hugoGeneSymbol":"RSS","entrezGeneId":140821},{"hugoGeneSymbol":"RSU1","entrezGeneId":6251},{"hugoGeneSymbol":"RSU1P1","entrezGeneId":100129622},{"hugoGeneSymbol":"RSU1P2","entrezGeneId":100133308},{"hugoGeneSymbol":"RSU1P3","entrezGeneId":100419964},{"hugoGeneSymbol":"RTBDN","entrezGeneId":83546},{"hugoGeneSymbol":"RTCA","entrezGeneId":8634},{"hugoGeneSymbol":"RTCA-AS1","entrezGeneId":100506007},{"hugoGeneSymbol":"RTCB","entrezGeneId":51493},{"hugoGeneSymbol":"RTE1","entrezGeneId":404685},{"hugoGeneSymbol":"RTEL1","entrezGeneId":51750},{"hugoGeneSymbol":"RTEL1-TNFRSF6B","entrezGeneId":100533107},{"hugoGeneSymbol":"RTEL1P1","entrezGeneId":100421429},{"hugoGeneSymbol":"RTF1","entrezGeneId":23168},{"hugoGeneSymbol":"RTF2","entrezGeneId":51507},{"hugoGeneSymbol":"RTKN","entrezGeneId":6242},{"hugoGeneSymbol":"RTKN2","entrezGeneId":219790},{"hugoGeneSymbol":"RTL1","entrezGeneId":388015},{"hugoGeneSymbol":"RTL10","entrezGeneId":79680},{"hugoGeneSymbol":"RTL3","entrezGeneId":203430},{"hugoGeneSymbol":"RTL4","entrezGeneId":340595},{"hugoGeneSymbol":"RTL5","entrezGeneId":340526},{"hugoGeneSymbol":"RTL6","entrezGeneId":84247},{"hugoGeneSymbol":"RTL8A","entrezGeneId":26071},{"hugoGeneSymbol":"RTL8B","entrezGeneId":441518},{"hugoGeneSymbol":"RTL8C","entrezGeneId":8933},{"hugoGeneSymbol":"RTL9","entrezGeneId":57529},{"hugoGeneSymbol":"RTN1","entrezGeneId":6252},{"hugoGeneSymbol":"RTN2","entrezGeneId":6253},{"hugoGeneSymbol":"RTN3","entrezGeneId":10313},{"hugoGeneSymbol":"RTN3P1","entrezGeneId":152905},{"hugoGeneSymbol":"RTN4","entrezGeneId":57142},{"hugoGeneSymbol":"RTN4IP1","entrezGeneId":84816},{"hugoGeneSymbol":"RTN4R","entrezGeneId":65078},{"hugoGeneSymbol":"RTN4RL1","entrezGeneId":146760},{"hugoGeneSymbol":"RTN4RL2","entrezGeneId":349667},{"hugoGeneSymbol":"RTP1","entrezGeneId":132112},{"hugoGeneSymbol":"RTP2","entrezGeneId":344892},{"hugoGeneSymbol":"RTP3","entrezGeneId":83597},{"hugoGeneSymbol":"RTP4","entrezGeneId":64108},{"hugoGeneSymbol":"RTP5","entrezGeneId":285093},{"hugoGeneSymbol":"RTRAF","entrezGeneId":51637},{"hugoGeneSymbol":"RTTN","entrezGeneId":25914},{"hugoGeneSymbol":"RUBCN","entrezGeneId":9711},{"hugoGeneSymbol":"RUBCNL","entrezGeneId":80183},{"hugoGeneSymbol":"RUFY1","entrezGeneId":80230},{"hugoGeneSymbol":"RUFY2","entrezGeneId":55680},{"hugoGeneSymbol":"RUFY3","entrezGeneId":22902},{"hugoGeneSymbol":"RUFY4","entrezGeneId":285180},{"hugoGeneSymbol":"RUNDC1","entrezGeneId":146923},{"hugoGeneSymbol":"RUNDC3A","entrezGeneId":10900},{"hugoGeneSymbol":"RUNDC3A-AS1","entrezGeneId":101926996},{"hugoGeneSymbol":"RUNDC3B","entrezGeneId":154661},{"hugoGeneSymbol":"RUNX1","entrezGeneId":861},{"hugoGeneSymbol":"RUNX1-IT1","entrezGeneId":80215},{"hugoGeneSymbol":"RUNX1T1","entrezGeneId":862},{"hugoGeneSymbol":"RUNX2","entrezGeneId":860},{"hugoGeneSymbol":"RUNX2-AS1","entrezGeneId":105375077},{"hugoGeneSymbol":"RUNX3","entrezGeneId":864},{"hugoGeneSymbol":"RUSC1","entrezGeneId":23623},{"hugoGeneSymbol":"RUSC1-AS1","entrezGeneId":284618},{"hugoGeneSymbol":"RUSC2","entrezGeneId":9853},{"hugoGeneSymbol":"RUVBL1","entrezGeneId":8607},{"hugoGeneSymbol":"RUVBL1-AS1","entrezGeneId":100874089},{"hugoGeneSymbol":"RUVBL2","entrezGeneId":10856},{"hugoGeneSymbol":"RWDD1","entrezGeneId":51389},{"hugoGeneSymbol":"RWDD1P1","entrezGeneId":404551},{"hugoGeneSymbol":"RWDD1P3","entrezGeneId":727789},{"hugoGeneSymbol":"RWDD2A","entrezGeneId":112611},{"hugoGeneSymbol":"RWDD2B","entrezGeneId":10069},{"hugoGeneSymbol":"RWDD3","entrezGeneId":25950},{"hugoGeneSymbol":"RWDD4","entrezGeneId":201965},{"hugoGeneSymbol":"RWDD4P1","entrezGeneId":100419903},{"hugoGeneSymbol":"RWDD4P2","entrezGeneId":647009},{"hugoGeneSymbol":"RWS","entrezGeneId":7937},{"hugoGeneSymbol":"RXFP1","entrezGeneId":59350},{"hugoGeneSymbol":"RXFP2","entrezGeneId":122042},{"hugoGeneSymbol":"RXFP3","entrezGeneId":51289},{"hugoGeneSymbol":"RXFP4","entrezGeneId":339403},{"hugoGeneSymbol":"RXRA","entrezGeneId":6256},{"hugoGeneSymbol":"RXRB","entrezGeneId":6257},{"hugoGeneSymbol":"RXRG","entrezGeneId":6258},{"hugoGeneSymbol":"RXYLT1","entrezGeneId":10329},{"hugoGeneSymbol":"RXYLT1-AS1","entrezGeneId":104169670},{"hugoGeneSymbol":"RYBP","entrezGeneId":23429},{"hugoGeneSymbol":"RYK","entrezGeneId":6259},{"hugoGeneSymbol":"RYKP1","entrezGeneId":6260},{"hugoGeneSymbol":"RYR1","entrezGeneId":6261},{"hugoGeneSymbol":"RYR2","entrezGeneId":6262},{"hugoGeneSymbol":"RYR3","entrezGeneId":6263},{"hugoGeneSymbol":"S100A1","entrezGeneId":6271},{"hugoGeneSymbol":"S100A10","entrezGeneId":6281},{"hugoGeneSymbol":"S100A11","entrezGeneId":6282},{"hugoGeneSymbol":"S100A11P1","entrezGeneId":729659},{"hugoGeneSymbol":"S100A11P2","entrezGeneId":347701},{"hugoGeneSymbol":"S100A11P3","entrezGeneId":645474},{"hugoGeneSymbol":"S100A11P4","entrezGeneId":100506938},{"hugoGeneSymbol":"S100A12","entrezGeneId":6283},{"hugoGeneSymbol":"S100A13","entrezGeneId":6284},{"hugoGeneSymbol":"S100A14","entrezGeneId":57402},{"hugoGeneSymbol":"S100A16","entrezGeneId":140576},{"hugoGeneSymbol":"S100A2","entrezGeneId":6273},{"hugoGeneSymbol":"S100A3","entrezGeneId":6274},{"hugoGeneSymbol":"S100A4","entrezGeneId":6275},{"hugoGeneSymbol":"S100A5","entrezGeneId":6276},{"hugoGeneSymbol":"S100A6","entrezGeneId":6277},{"hugoGeneSymbol":"S100A7","entrezGeneId":6278},{"hugoGeneSymbol":"S100A7A","entrezGeneId":338324},{"hugoGeneSymbol":"S100A7L2","entrezGeneId":645922},{"hugoGeneSymbol":"S100A7P1","entrezGeneId":127481},{"hugoGeneSymbol":"S100A7P2","entrezGeneId":375027},{"hugoGeneSymbol":"S100A8","entrezGeneId":6279},{"hugoGeneSymbol":"S100A9","entrezGeneId":6280},{"hugoGeneSymbol":"S100B","entrezGeneId":6285},{"hugoGeneSymbol":"S100G","entrezGeneId":795},{"hugoGeneSymbol":"S100P","entrezGeneId":6286},{"hugoGeneSymbol":"S100PBP","entrezGeneId":64766},{"hugoGeneSymbol":"S100Z","entrezGeneId":170591},{"hugoGeneSymbol":"S11","entrezGeneId":6267},{"hugoGeneSymbol":"S12","entrezGeneId":6268},{"hugoGeneSymbol":"S1PR1","entrezGeneId":1901},{"hugoGeneSymbol":"S1PR2","entrezGeneId":9294},{"hugoGeneSymbol":"S1PR3","entrezGeneId":1903},{"hugoGeneSymbol":"S1PR4","entrezGeneId":8698},{"hugoGeneSymbol":"S1PR5","entrezGeneId":53637},{"hugoGeneSymbol":"S7","entrezGeneId":6264},{"hugoGeneSymbol":"SAA1","entrezGeneId":6288},{"hugoGeneSymbol":"SAA2","entrezGeneId":6289},{"hugoGeneSymbol":"SAA2-SAA4","entrezGeneId":100528017},{"hugoGeneSymbol":"SAA3P","entrezGeneId":6290},{"hugoGeneSymbol":"SAA4","entrezGeneId":6291},{"hugoGeneSymbol":"SAA@","entrezGeneId":6287},{"hugoGeneSymbol":"SAAL1","entrezGeneId":113174},{"hugoGeneSymbol":"SAC3D1","entrezGeneId":29901},{"hugoGeneSymbol":"SACM1L","entrezGeneId":22908},{"hugoGeneSymbol":"SACS","entrezGeneId":26278},{"hugoGeneSymbol":"SACS-AS1","entrezGeneId":100506680},{"hugoGeneSymbol":"SAE1","entrezGeneId":10055},{"hugoGeneSymbol":"SAFB","entrezGeneId":6294},{"hugoGeneSymbol":"SAFB2","entrezGeneId":9667},{"hugoGeneSymbol":"SAG","entrezGeneId":6295},{"hugoGeneSymbol":"SAGE1","entrezGeneId":55511},{"hugoGeneSymbol":"SAGE2P","entrezGeneId":644717},{"hugoGeneSymbol":"SAGE3P","entrezGeneId":100419054},{"hugoGeneSymbol":"SAGE4P","entrezGeneId":442465},{"hugoGeneSymbol":"SAI1","entrezGeneId":6298},{"hugoGeneSymbol":"SALL1","entrezGeneId":6299},{"hugoGeneSymbol":"SALL1P1","entrezGeneId":139163},{"hugoGeneSymbol":"SALL2","entrezGeneId":6297},{"hugoGeneSymbol":"SALL3","entrezGeneId":27164},{"hugoGeneSymbol":"SALL4","entrezGeneId":57167},{"hugoGeneSymbol":"SALL4P1","entrezGeneId":100419717},{"hugoGeneSymbol":"SALL4P2","entrezGeneId":100130259},{"hugoGeneSymbol":"SALL4P3","entrezGeneId":100131046},{"hugoGeneSymbol":"SALL4P4","entrezGeneId":100419855},{"hugoGeneSymbol":"SALL4P5","entrezGeneId":100130785},{"hugoGeneSymbol":"SALL4P6","entrezGeneId":391530},{"hugoGeneSymbol":"SALL4P7","entrezGeneId":390483},{"hugoGeneSymbol":"SALRNA1","entrezGeneId":104548971},{"hugoGeneSymbol":"SALRNA2","entrezGeneId":104548973},{"hugoGeneSymbol":"SALRNA3","entrezGeneId":104548972},{"hugoGeneSymbol":"SAMD1","entrezGeneId":90378},{"hugoGeneSymbol":"SAMD10","entrezGeneId":140700},{"hugoGeneSymbol":"SAMD11","entrezGeneId":148398},{"hugoGeneSymbol":"SAMD11P1","entrezGeneId":100421331},{"hugoGeneSymbol":"SAMD12","entrezGeneId":401474},{"hugoGeneSymbol":"SAMD12-AS1","entrezGeneId":552860},{"hugoGeneSymbol":"SAMD13","entrezGeneId":148418},{"hugoGeneSymbol":"SAMD14","entrezGeneId":201191},{"hugoGeneSymbol":"SAMD15","entrezGeneId":161394},{"hugoGeneSymbol":"SAMD3","entrezGeneId":154075},{"hugoGeneSymbol":"SAMD4A","entrezGeneId":23034},{"hugoGeneSymbol":"SAMD4B","entrezGeneId":55095},{"hugoGeneSymbol":"SAMD5","entrezGeneId":389432},{"hugoGeneSymbol":"SAMD7","entrezGeneId":344658},{"hugoGeneSymbol":"SAMD8","entrezGeneId":142891},{"hugoGeneSymbol":"SAMD9","entrezGeneId":54809},{"hugoGeneSymbol":"SAMD9L","entrezGeneId":219285},{"hugoGeneSymbol":"SAMHD1","entrezGeneId":25939},{"hugoGeneSymbol":"SAMM50","entrezGeneId":25813},{"hugoGeneSymbol":"SAMM50P1","entrezGeneId":100271893},{"hugoGeneSymbol":"SAMMSON","entrezGeneId":101927152},{"hugoGeneSymbol":"SAMSN1","entrezGeneId":64092},{"hugoGeneSymbol":"SAMSN1-AS1","entrezGeneId":100874190},{"hugoGeneSymbol":"SAP130","entrezGeneId":79595},{"hugoGeneSymbol":"SAP18","entrezGeneId":10284},{"hugoGeneSymbol":"SAP18P1","entrezGeneId":106480689},{"hugoGeneSymbol":"SAP18P2","entrezGeneId":442060},{"hugoGeneSymbol":"SAP18P3","entrezGeneId":106660616},{"hugoGeneSymbol":"SAP25","entrezGeneId":100316904},{"hugoGeneSymbol":"SAP30","entrezGeneId":8819},{"hugoGeneSymbol":"SAP30BP","entrezGeneId":29115},{"hugoGeneSymbol":"SAP30L","entrezGeneId":79685},{"hugoGeneSymbol":"SAP30L-AS1","entrezGeneId":386627},{"hugoGeneSymbol":"SAPCD1","entrezGeneId":401251},{"hugoGeneSymbol":"SAPCD1-AS1","entrezGeneId":104413891},{"hugoGeneSymbol":"SAPCD2","entrezGeneId":89958},{"hugoGeneSymbol":"SAPCD2P1","entrezGeneId":442320},{"hugoGeneSymbol":"SAPCD2P2","entrezGeneId":442317},{"hugoGeneSymbol":"SAPCD2P3","entrezGeneId":643353},{"hugoGeneSymbol":"SAPCD2P4","entrezGeneId":442318},{"hugoGeneSymbol":"SAR1A","entrezGeneId":56681},{"hugoGeneSymbol":"SAR1AP1","entrezGeneId":646260},{"hugoGeneSymbol":"SAR1AP2","entrezGeneId":641312},{"hugoGeneSymbol":"SAR1AP3","entrezGeneId":344988},{"hugoGeneSymbol":"SAR1AP4","entrezGeneId":100132322},{"hugoGeneSymbol":"SAR1B","entrezGeneId":51128},{"hugoGeneSymbol":"SARAF","entrezGeneId":51669},{"hugoGeneSymbol":"SARDH","entrezGeneId":1757},{"hugoGeneSymbol":"SARM1","entrezGeneId":23098},{"hugoGeneSymbol":"SARNP","entrezGeneId":84324},{"hugoGeneSymbol":"SARS","entrezGeneId":6301},{"hugoGeneSymbol":"SARS2","entrezGeneId":54938},{"hugoGeneSymbol":"SART1","entrezGeneId":9092},{"hugoGeneSymbol":"SART3","entrezGeneId":9733},{"hugoGeneSymbol":"SASH1","entrezGeneId":23328},{"hugoGeneSymbol":"SASH3","entrezGeneId":54440},{"hugoGeneSymbol":"SASS6","entrezGeneId":163786},{"hugoGeneSymbol":"SAT1","entrezGeneId":6303},{"hugoGeneSymbol":"SAT2","entrezGeneId":112483},{"hugoGeneSymbol":"SATB1","entrezGeneId":6304},{"hugoGeneSymbol":"SATB1-AS1","entrezGeneId":101927777},{"hugoGeneSymbol":"SATB2","entrezGeneId":23314},{"hugoGeneSymbol":"SATB2-AS1","entrezGeneId":150538},{"hugoGeneSymbol":"SATL1","entrezGeneId":340562},{"hugoGeneSymbol":"SAV1","entrezGeneId":60485},{"hugoGeneSymbol":"SAX1","entrezGeneId":114610},{"hugoGeneSymbol":"SAXO1","entrezGeneId":158297},{"hugoGeneSymbol":"SAXO2","entrezGeneId":283726},{"hugoGeneSymbol":"SAYSD1","entrezGeneId":55776},{"hugoGeneSymbol":"SBDS","entrezGeneId":51119},{"hugoGeneSymbol":"SBDSP1","entrezGeneId":155370},{"hugoGeneSymbol":"SBE2","entrezGeneId":106049960},{"hugoGeneSymbol":"SBF1","entrezGeneId":6305},{"hugoGeneSymbol":"SBF1P1","entrezGeneId":100133234},{"hugoGeneSymbol":"SBF2","entrezGeneId":81846},{"hugoGeneSymbol":"SBF2-AS1","entrezGeneId":283104},{"hugoGeneSymbol":"SBK1","entrezGeneId":388228},{"hugoGeneSymbol":"SBK2","entrezGeneId":646643},{"hugoGeneSymbol":"SBK3","entrezGeneId":100130827},{"hugoGeneSymbol":"SBNO1","entrezGeneId":55206},{"hugoGeneSymbol":"SBNO2","entrezGeneId":22904},{"hugoGeneSymbol":"SBSN","entrezGeneId":374897},{"hugoGeneSymbol":"SBSPON","entrezGeneId":157869},{"hugoGeneSymbol":"SC4MOP","entrezGeneId":6308},{"hugoGeneSymbol":"SC5D","entrezGeneId":6309},{"hugoGeneSymbol":"SCA18","entrezGeneId":94008},{"hugoGeneSymbol":"SCA20","entrezGeneId":407973},{"hugoGeneSymbol":"SCA25","entrezGeneId":338435},{"hugoGeneSymbol":"SCA26","entrezGeneId":408221},{"hugoGeneSymbol":"SCA30","entrezGeneId":100359393},{"hugoGeneSymbol":"SCA32","entrezGeneId":100653368},{"hugoGeneSymbol":"SCA37","entrezGeneId":103753527},{"hugoGeneSymbol":"SCA9","entrezGeneId":140451},{"hugoGeneSymbol":"SCAANT1","entrezGeneId":100861563},{"hugoGeneSymbol":"SCAF1","entrezGeneId":58506},{"hugoGeneSymbol":"SCAF11","entrezGeneId":9169},{"hugoGeneSymbol":"SCAF4","entrezGeneId":57466},{"hugoGeneSymbol":"SCAF8","entrezGeneId":22828},{"hugoGeneSymbol":"SCAI","entrezGeneId":286205},{"hugoGeneSymbol":"SCAMP1","entrezGeneId":9522},{"hugoGeneSymbol":"SCAMP1-AS1","entrezGeneId":728769},{"hugoGeneSymbol":"SCAMP2","entrezGeneId":10066},{"hugoGeneSymbol":"SCAMP3","entrezGeneId":10067},{"hugoGeneSymbol":"SCAMP4","entrezGeneId":113178},{"hugoGeneSymbol":"SCAMP5","entrezGeneId":192683},{"hugoGeneSymbol":"SCAND1","entrezGeneId":51282},{"hugoGeneSymbol":"SCAND2P","entrezGeneId":54581},{"hugoGeneSymbol":"SCAND3P1","entrezGeneId":100873886},{"hugoGeneSymbol":"SCAP","entrezGeneId":22937},{"hugoGeneSymbol":"SCAPER","entrezGeneId":49855},{"hugoGeneSymbol":"SCAR3","entrezGeneId":85502},{"hugoGeneSymbol":"SCAR6","entrezGeneId":109729103},{"hugoGeneSymbol":"SCARA3","entrezGeneId":51435},{"hugoGeneSymbol":"SCARA5","entrezGeneId":286133},{"hugoGeneSymbol":"SCARB1","entrezGeneId":949},{"hugoGeneSymbol":"SCARB2","entrezGeneId":950},{"hugoGeneSymbol":"SCARF1","entrezGeneId":8578},{"hugoGeneSymbol":"SCARF2","entrezGeneId":91179},{"hugoGeneSymbol":"SCARNA1","entrezGeneId":677774},{"hugoGeneSymbol":"SCARNA10","entrezGeneId":692148},{"hugoGeneSymbol":"SCARNA11","entrezGeneId":677780},{"hugoGeneSymbol":"SCARNA12","entrezGeneId":677777},{"hugoGeneSymbol":"SCARNA13","entrezGeneId":677768},{"hugoGeneSymbol":"SCARNA14","entrezGeneId":692149},{"hugoGeneSymbol":"SCARNA15","entrezGeneId":677778},{"hugoGeneSymbol":"SCARNA16","entrezGeneId":677781},{"hugoGeneSymbol":"SCARNA17","entrezGeneId":677769},{"hugoGeneSymbol":"SCARNA18","entrezGeneId":677765},{"hugoGeneSymbol":"SCARNA18B","entrezGeneId":107397392},{"hugoGeneSymbol":"SCARNA2","entrezGeneId":677766},{"hugoGeneSymbol":"SCARNA20","entrezGeneId":677681},{"hugoGeneSymbol":"SCARNA21","entrezGeneId":677763},{"hugoGeneSymbol":"SCARNA21B","entrezGeneId":107397391},{"hugoGeneSymbol":"SCARNA22","entrezGeneId":677770},{"hugoGeneSymbol":"SCARNA23","entrezGeneId":677773},{"hugoGeneSymbol":"SCARNA26A","entrezGeneId":106633810},{"hugoGeneSymbol":"SCARNA26B","entrezGeneId":106633816},{"hugoGeneSymbol":"SCARNA27","entrezGeneId":100124533},{"hugoGeneSymbol":"SCARNA28","entrezGeneId":106633801},{"hugoGeneSymbol":"SCARNA3","entrezGeneId":677679},{"hugoGeneSymbol":"SCARNA4","entrezGeneId":677771},{"hugoGeneSymbol":"SCARNA5","entrezGeneId":677775},{"hugoGeneSymbol":"SCARNA6","entrezGeneId":677772},{"hugoGeneSymbol":"SCARNA7","entrezGeneId":677767},{"hugoGeneSymbol":"SCARNA8","entrezGeneId":677776},{"hugoGeneSymbol":"SCARNA9","entrezGeneId":619383},{"hugoGeneSymbol":"SCARNA9L","entrezGeneId":100158262},{"hugoGeneSymbol":"SCART1","entrezGeneId":619207},{"hugoGeneSymbol":"SCASI","entrezGeneId":260415},{"hugoGeneSymbol":"SCAX2","entrezGeneId":727714},{"hugoGeneSymbol":"SCAX3","entrezGeneId":727715},{"hugoGeneSymbol":"SCAX4","entrezGeneId":727716},{"hugoGeneSymbol":"SCAX5","entrezGeneId":100188768},{"hugoGeneSymbol":"SCCPDH","entrezGeneId":51097},{"hugoGeneSymbol":"SCD","entrezGeneId":6319},{"hugoGeneSymbol":"SCD5","entrezGeneId":79966},{"hugoGeneSymbol":"SCDP1","entrezGeneId":645313},{"hugoGeneSymbol":"SCEL","entrezGeneId":8796},{"hugoGeneSymbol":"SCEL-AS1","entrezGeneId":104355296},{"hugoGeneSymbol":"SCFD1","entrezGeneId":23256},{"hugoGeneSymbol":"SCFD2","entrezGeneId":152579},{"hugoGeneSymbol":"SCFV","entrezGeneId":652070},{"hugoGeneSymbol":"SCG2","entrezGeneId":7857},{"hugoGeneSymbol":"SCG3","entrezGeneId":29106},{"hugoGeneSymbol":"SCG5","entrezGeneId":6447},{"hugoGeneSymbol":"SCGB1A1","entrezGeneId":7356},{"hugoGeneSymbol":"SCGB1B2P","entrezGeneId":643719},{"hugoGeneSymbol":"SCGB1B3P","entrezGeneId":112163673},{"hugoGeneSymbol":"SCGB1C1","entrezGeneId":147199},{"hugoGeneSymbol":"SCGB1C2","entrezGeneId":653486},{"hugoGeneSymbol":"SCGB1D1","entrezGeneId":10648},{"hugoGeneSymbol":"SCGB1D2","entrezGeneId":10647},{"hugoGeneSymbol":"SCGB1D4","entrezGeneId":404552},{"hugoGeneSymbol":"SCGB1D5P","entrezGeneId":100874258},{"hugoGeneSymbol":"SCGB2A1","entrezGeneId":4246},{"hugoGeneSymbol":"SCGB2A2","entrezGeneId":4250},{"hugoGeneSymbol":"SCGB2B2","entrezGeneId":284402},{"hugoGeneSymbol":"SCGB2B3P","entrezGeneId":100130342},{"hugoGeneSymbol":"SCGB3A1","entrezGeneId":92304},{"hugoGeneSymbol":"SCGB3A2","entrezGeneId":117156},{"hugoGeneSymbol":"SCGN","entrezGeneId":10590},{"hugoGeneSymbol":"SCHIP1","entrezGeneId":29970},{"hugoGeneSymbol":"SCHLAP1","entrezGeneId":101669767},{"hugoGeneSymbol":"SCIMP","entrezGeneId":388325},{"hugoGeneSymbol":"SCIN","entrezGeneId":85477},{"hugoGeneSymbol":"SCKL3","entrezGeneId":386616},{"hugoGeneSymbol":"SCLC1","entrezGeneId":7864},{"hugoGeneSymbol":"SCLL","entrezGeneId":100529119},{"hugoGeneSymbol":"SCLT1","entrezGeneId":132320},{"hugoGeneSymbol":"SCLY","entrezGeneId":51540},{"hugoGeneSymbol":"SCMH1","entrezGeneId":22955},{"hugoGeneSymbol":"SCML1","entrezGeneId":6322},{"hugoGeneSymbol":"SCML2","entrezGeneId":10389},{"hugoGeneSymbol":"SCML2P1","entrezGeneId":100421167},{"hugoGeneSymbol":"SCML2P2","entrezGeneId":100421172},{"hugoGeneSymbol":"SCML4","entrezGeneId":256380},{"hugoGeneSymbol":"SCN10A","entrezGeneId":6336},{"hugoGeneSymbol":"SCN11A","entrezGeneId":11280},{"hugoGeneSymbol":"SCN1A","entrezGeneId":6323},{"hugoGeneSymbol":"SCN1B","entrezGeneId":6324},{"hugoGeneSymbol":"SCN2A","entrezGeneId":6326},{"hugoGeneSymbol":"SCN2B","entrezGeneId":6327},{"hugoGeneSymbol":"SCN3A","entrezGeneId":6328},{"hugoGeneSymbol":"SCN3B","entrezGeneId":55800},{"hugoGeneSymbol":"SCN4A","entrezGeneId":6329},{"hugoGeneSymbol":"SCN4B","entrezGeneId":6330},{"hugoGeneSymbol":"SCN5A","entrezGeneId":6331},{"hugoGeneSymbol":"SCN7A","entrezGeneId":6332},{"hugoGeneSymbol":"SCN8A","entrezGeneId":6334},{"hugoGeneSymbol":"SCN9A","entrezGeneId":6335},{"hugoGeneSymbol":"SCNM1","entrezGeneId":79005},{"hugoGeneSymbol":"SCNN1A","entrezGeneId":6337},{"hugoGeneSymbol":"SCNN1B","entrezGeneId":6338},{"hugoGeneSymbol":"SCNN1D","entrezGeneId":6339},{"hugoGeneSymbol":"SCNN1G","entrezGeneId":6340},{"hugoGeneSymbol":"SCO1","entrezGeneId":6341},{"hugoGeneSymbol":"SCO2","entrezGeneId":9997},{"hugoGeneSymbol":"SCOC","entrezGeneId":60592},{"hugoGeneSymbol":"SCOC-AS1","entrezGeneId":100129858},{"hugoGeneSymbol":"SCOCP1","entrezGeneId":317767},{"hugoGeneSymbol":"SCP2","entrezGeneId":6342},{"hugoGeneSymbol":"SCP2D1","entrezGeneId":140856},{"hugoGeneSymbol":"SCPEP1","entrezGeneId":59342},{"hugoGeneSymbol":"SCRG1","entrezGeneId":11341},{"hugoGeneSymbol":"SCRIB","entrezGeneId":23513},{"hugoGeneSymbol":"SCRN1","entrezGeneId":9805},{"hugoGeneSymbol":"SCRN2","entrezGeneId":90507},{"hugoGeneSymbol":"SCRN3","entrezGeneId":79634},{"hugoGeneSymbol":"SCRT1","entrezGeneId":83482},{"hugoGeneSymbol":"SCRT2","entrezGeneId":85508},{"hugoGeneSymbol":"SCT","entrezGeneId":6343},{"hugoGeneSymbol":"SCTR","entrezGeneId":6344},{"hugoGeneSymbol":"SCUBE1","entrezGeneId":80274},{"hugoGeneSymbol":"SCUBE2","entrezGeneId":57758},{"hugoGeneSymbol":"SCUBE3","entrezGeneId":222663},{"hugoGeneSymbol":"SCX","entrezGeneId":642658},{"hugoGeneSymbol":"SCYL1","entrezGeneId":57410},{"hugoGeneSymbol":"SCYL2","entrezGeneId":55681},{"hugoGeneSymbol":"SCYL3","entrezGeneId":57147},{"hugoGeneSymbol":"SCZD1","entrezGeneId":6377},{"hugoGeneSymbol":"SCZD10","entrezGeneId":63944},{"hugoGeneSymbol":"SCZD11","entrezGeneId":404686},{"hugoGeneSymbol":"SCZD12","entrezGeneId":619488},{"hugoGeneSymbol":"SCZD13","entrezGeneId":100329170},{"hugoGeneSymbol":"SCZD14","entrezGeneId":100196913},{"hugoGeneSymbol":"SCZD2","entrezGeneId":6378},{"hugoGeneSymbol":"SCZD3","entrezGeneId":6365},{"hugoGeneSymbol":"SCZD6","entrezGeneId":8400},{"hugoGeneSymbol":"SCZD7","entrezGeneId":8401},{"hugoGeneSymbol":"SCZD8","entrezGeneId":8806},{"hugoGeneSymbol":"SDAD1","entrezGeneId":55153},{"hugoGeneSymbol":"SDAD1P1","entrezGeneId":157489},{"hugoGeneSymbol":"SDAD1P2","entrezGeneId":400836},{"hugoGeneSymbol":"SDAD1P3","entrezGeneId":100873858},{"hugoGeneSymbol":"SDAD1P4","entrezGeneId":100419955},{"hugoGeneSymbol":"SDC1","entrezGeneId":6382},{"hugoGeneSymbol":"SDC2","entrezGeneId":6383},{"hugoGeneSymbol":"SDC3","entrezGeneId":9672},{"hugoGeneSymbol":"SDC4","entrezGeneId":6385},{"hugoGeneSymbol":"SDC4P","entrezGeneId":376844},{"hugoGeneSymbol":"SDCBP","entrezGeneId":6386},{"hugoGeneSymbol":"SDCBP2","entrezGeneId":27111},{"hugoGeneSymbol":"SDCBP2-AS1","entrezGeneId":100507495},{"hugoGeneSymbol":"SDCBP2P1","entrezGeneId":106480801},{"hugoGeneSymbol":"SDCBPP1","entrezGeneId":100128930},{"hugoGeneSymbol":"SDCBPP2","entrezGeneId":100129960},{"hugoGeneSymbol":"SDCBPP3","entrezGeneId":100131656},{"hugoGeneSymbol":"SDCCAG3","entrezGeneId":10807},{"hugoGeneSymbol":"SDCCAG3P1","entrezGeneId":388478},{"hugoGeneSymbol":"SDCCAG3P2","entrezGeneId":646891},{"hugoGeneSymbol":"SDCCAG8","entrezGeneId":10806},{"hugoGeneSymbol":"SDE2","entrezGeneId":163859},{"hugoGeneSymbol":"SDF2","entrezGeneId":6388},{"hugoGeneSymbol":"SDF2L1","entrezGeneId":23753},{"hugoGeneSymbol":"SDF4","entrezGeneId":51150},{"hugoGeneSymbol":"SDHA","entrezGeneId":6389},{"hugoGeneSymbol":"SDHAF1","entrezGeneId":644096},{"hugoGeneSymbol":"SDHAF2","entrezGeneId":54949},{"hugoGeneSymbol":"SDHAF3","entrezGeneId":57001},{"hugoGeneSymbol":"SDHAF4","entrezGeneId":135154},{"hugoGeneSymbol":"SDHAP1","entrezGeneId":255812},{"hugoGeneSymbol":"SDHAP2","entrezGeneId":727956},{"hugoGeneSymbol":"SDHAP3","entrezGeneId":728609},{"hugoGeneSymbol":"SDHB","entrezGeneId":6390},{"hugoGeneSymbol":"SDHC","entrezGeneId":6391},{"hugoGeneSymbol":"SDHCP1","entrezGeneId":100422600},{"hugoGeneSymbol":"SDHCP2","entrezGeneId":100128302},{"hugoGeneSymbol":"SDHCP3","entrezGeneId":100422591},{"hugoGeneSymbol":"SDHCP4","entrezGeneId":100422598},{"hugoGeneSymbol":"SDHD","entrezGeneId":6392},{"hugoGeneSymbol":"SDHDP1","entrezGeneId":100289186},{"hugoGeneSymbol":"SDHDP2","entrezGeneId":647081},{"hugoGeneSymbol":"SDHDP3","entrezGeneId":29771},{"hugoGeneSymbol":"SDHDP4","entrezGeneId":29770},{"hugoGeneSymbol":"SDHDP5","entrezGeneId":29769},{"hugoGeneSymbol":"SDHDP6","entrezGeneId":29768},{"hugoGeneSymbol":"SDHDP7","entrezGeneId":388606},{"hugoGeneSymbol":"SDIM1","entrezGeneId":100505705},{"hugoGeneSymbol":"SDK1","entrezGeneId":221935},{"hugoGeneSymbol":"SDK2","entrezGeneId":54549},{"hugoGeneSymbol":"SDR16C5","entrezGeneId":195814},{"hugoGeneSymbol":"SDR16C6P","entrezGeneId":442388},{"hugoGeneSymbol":"SDR39U1","entrezGeneId":56948},{"hugoGeneSymbol":"SDR42E1","entrezGeneId":93517},{"hugoGeneSymbol":"SDR42E1P1","entrezGeneId":100422340},{"hugoGeneSymbol":"SDR42E1P2","entrezGeneId":100422346},{"hugoGeneSymbol":"SDR42E1P3","entrezGeneId":100422347},{"hugoGeneSymbol":"SDR42E1P4","entrezGeneId":100422348},{"hugoGeneSymbol":"SDR42E1P5","entrezGeneId":100422339},{"hugoGeneSymbol":"SDR42E2","entrezGeneId":100288072},{"hugoGeneSymbol":"SDR9C7","entrezGeneId":121214},{"hugoGeneSymbol":"SDS","entrezGeneId":10993},{"hugoGeneSymbol":"SDSL","entrezGeneId":113675},{"hugoGeneSymbol":"SEA","entrezGeneId":6395},{"hugoGeneSymbol":"SEBOX","entrezGeneId":645832},{"hugoGeneSymbol":"SEC11A","entrezGeneId":23478},{"hugoGeneSymbol":"SEC11B","entrezGeneId":157708},{"hugoGeneSymbol":"SEC11C","entrezGeneId":90701},{"hugoGeneSymbol":"SEC13","entrezGeneId":6396},{"hugoGeneSymbol":"SEC13P1","entrezGeneId":100131671},{"hugoGeneSymbol":"SEC14L1","entrezGeneId":6397},{"hugoGeneSymbol":"SEC14L1P1","entrezGeneId":729799},{"hugoGeneSymbol":"SEC14L2","entrezGeneId":23541},{"hugoGeneSymbol":"SEC14L3","entrezGeneId":266629},{"hugoGeneSymbol":"SEC14L4","entrezGeneId":284904},{"hugoGeneSymbol":"SEC14L5","entrezGeneId":9717},{"hugoGeneSymbol":"SEC14L6","entrezGeneId":730005},{"hugoGeneSymbol":"SEC16A","entrezGeneId":9919},{"hugoGeneSymbol":"SEC16B","entrezGeneId":89866},{"hugoGeneSymbol":"SEC1P","entrezGeneId":653677},{"hugoGeneSymbol":"SEC22A","entrezGeneId":26984},{"hugoGeneSymbol":"SEC22B","entrezGeneId":9554},{"hugoGeneSymbol":"SEC22C","entrezGeneId":9117},{"hugoGeneSymbol":"SEC23A","entrezGeneId":10484},{"hugoGeneSymbol":"SEC23A-AS1","entrezGeneId":105370458},{"hugoGeneSymbol":"SEC23B","entrezGeneId":10483},{"hugoGeneSymbol":"SEC23IP","entrezGeneId":11196},{"hugoGeneSymbol":"SEC24A","entrezGeneId":10802},{"hugoGeneSymbol":"SEC24AP1","entrezGeneId":100421166},{"hugoGeneSymbol":"SEC24B","entrezGeneId":10427},{"hugoGeneSymbol":"SEC24B-AS1","entrezGeneId":100533182},{"hugoGeneSymbol":"SEC24C","entrezGeneId":9632},{"hugoGeneSymbol":"SEC24D","entrezGeneId":9871},{"hugoGeneSymbol":"SEC31A","entrezGeneId":22872},{"hugoGeneSymbol":"SEC31B","entrezGeneId":25956},{"hugoGeneSymbol":"SEC61A1","entrezGeneId":29927},{"hugoGeneSymbol":"SEC61A2","entrezGeneId":55176},{"hugoGeneSymbol":"SEC61B","entrezGeneId":10952},{"hugoGeneSymbol":"SEC61G","entrezGeneId":23480},{"hugoGeneSymbol":"SEC62","entrezGeneId":7095},{"hugoGeneSymbol":"SEC62-AS1","entrezGeneId":106478967},{"hugoGeneSymbol":"SEC63","entrezGeneId":11231},{"hugoGeneSymbol":"SEC63P1","entrezGeneId":100420341},{"hugoGeneSymbol":"SEC63P2","entrezGeneId":100420287},{"hugoGeneSymbol":"SECISBP2","entrezGeneId":79048},{"hugoGeneSymbol":"SECISBP2L","entrezGeneId":9728},{"hugoGeneSymbol":"SECTM1","entrezGeneId":6398},{"hugoGeneSymbol":"SEH1L","entrezGeneId":81929},{"hugoGeneSymbol":"SEL1L","entrezGeneId":6400},{"hugoGeneSymbol":"SEL1L2","entrezGeneId":80343},{"hugoGeneSymbol":"SEL1L3","entrezGeneId":23231},{"hugoGeneSymbol":"SELE","entrezGeneId":6401},{"hugoGeneSymbol":"SELENBP1","entrezGeneId":8991},{"hugoGeneSymbol":"SELENOF","entrezGeneId":9403},{"hugoGeneSymbol":"SELENOH","entrezGeneId":280636},{"hugoGeneSymbol":"SELENOI","entrezGeneId":85465},{"hugoGeneSymbol":"SELENOK","entrezGeneId":58515},{"hugoGeneSymbol":"SELENOKP1","entrezGeneId":100129085},{"hugoGeneSymbol":"SELENOKP2","entrezGeneId":100127908},{"hugoGeneSymbol":"SELENOKP3","entrezGeneId":100287632},{"hugoGeneSymbol":"SELENOM","entrezGeneId":140606},{"hugoGeneSymbol":"SELENON","entrezGeneId":57190},{"hugoGeneSymbol":"SELENOO","entrezGeneId":83642},{"hugoGeneSymbol":"SELENOOLP","entrezGeneId":105376462},{"hugoGeneSymbol":"SELENOP","entrezGeneId":6414},{"hugoGeneSymbol":"SELENOS","entrezGeneId":55829},{"hugoGeneSymbol":"SELENOT","entrezGeneId":51714},{"hugoGeneSymbol":"SELENOTP1","entrezGeneId":645969},{"hugoGeneSymbol":"SELENOTP2","entrezGeneId":100130316},{"hugoGeneSymbol":"SELENOV","entrezGeneId":348303},{"hugoGeneSymbol":"SELENOW","entrezGeneId":6415},{"hugoGeneSymbol":"SELENOWP1","entrezGeneId":23679},{"hugoGeneSymbol":"SELL","entrezGeneId":6402},{"hugoGeneSymbol":"SELP","entrezGeneId":6403},{"hugoGeneSymbol":"SELPLG","entrezGeneId":6404},{"hugoGeneSymbol":"SEM1","entrezGeneId":7979},{"hugoGeneSymbol":"SEM1P1","entrezGeneId":153842},{"hugoGeneSymbol":"SEMA3A","entrezGeneId":10371},{"hugoGeneSymbol":"SEMA3B","entrezGeneId":7869},{"hugoGeneSymbol":"SEMA3B-AS1","entrezGeneId":101928931},{"hugoGeneSymbol":"SEMA3C","entrezGeneId":10512},{"hugoGeneSymbol":"SEMA3D","entrezGeneId":223117},{"hugoGeneSymbol":"SEMA3E","entrezGeneId":9723},{"hugoGeneSymbol":"SEMA3F","entrezGeneId":6405},{"hugoGeneSymbol":"SEMA3F-AS1","entrezGeneId":100129060},{"hugoGeneSymbol":"SEMA3G","entrezGeneId":56920},{"hugoGeneSymbol":"SEMA4A","entrezGeneId":64218},{"hugoGeneSymbol":"SEMA4B","entrezGeneId":10509},{"hugoGeneSymbol":"SEMA4C","entrezGeneId":54910},{"hugoGeneSymbol":"SEMA4D","entrezGeneId":10507},{"hugoGeneSymbol":"SEMA4F","entrezGeneId":10505},{"hugoGeneSymbol":"SEMA4G","entrezGeneId":57715},{"hugoGeneSymbol":"SEMA5A","entrezGeneId":9037},{"hugoGeneSymbol":"SEMA5A-AS1","entrezGeneId":101929338},{"hugoGeneSymbol":"SEMA5B","entrezGeneId":54437},{"hugoGeneSymbol":"SEMA6A","entrezGeneId":57556},{"hugoGeneSymbol":"SEMA6A-AS1","entrezGeneId":101927233},{"hugoGeneSymbol":"SEMA6A-AS2","entrezGeneId":105379132},{"hugoGeneSymbol":"SEMA6B","entrezGeneId":10501},{"hugoGeneSymbol":"SEMA6C","entrezGeneId":10500},{"hugoGeneSymbol":"SEMA6D","entrezGeneId":80031},{"hugoGeneSymbol":"SEMA7A","entrezGeneId":8482},{"hugoGeneSymbol":"SEMG1","entrezGeneId":6406},{"hugoGeneSymbol":"SEMG2","entrezGeneId":6407},{"hugoGeneSymbol":"SEN2","entrezGeneId":6409},{"hugoGeneSymbol":"SEN3","entrezGeneId":6410},{"hugoGeneSymbol":"SEN6","entrezGeneId":6411},{"hugoGeneSymbol":"SEN6A","entrezGeneId":6412},{"hugoGeneSymbol":"SEN6B","entrezGeneId":6413},{"hugoGeneSymbol":"SENCR","entrezGeneId":100507392},{"hugoGeneSymbol":"SENP1","entrezGeneId":29843},{"hugoGeneSymbol":"SENP2","entrezGeneId":59343},{"hugoGeneSymbol":"SENP3","entrezGeneId":26168},{"hugoGeneSymbol":"SENP3-EIF4A1","entrezGeneId":100533955},{"hugoGeneSymbol":"SENP5","entrezGeneId":205564},{"hugoGeneSymbol":"SENP6","entrezGeneId":26054},{"hugoGeneSymbol":"SENP7","entrezGeneId":57337},{"hugoGeneSymbol":"SENP8","entrezGeneId":123228},{"hugoGeneSymbol":"SEPHS1","entrezGeneId":22929},{"hugoGeneSymbol":"SEPHS1P1","entrezGeneId":168474},{"hugoGeneSymbol":"SEPHS1P2","entrezGeneId":100420292},{"hugoGeneSymbol":"SEPHS1P3","entrezGeneId":100420189},{"hugoGeneSymbol":"SEPHS1P4","entrezGeneId":389873},{"hugoGeneSymbol":"SEPHS1P6","entrezGeneId":729399},{"hugoGeneSymbol":"SEPHS1P7","entrezGeneId":391428},{"hugoGeneSymbol":"SEPHS2","entrezGeneId":22928},{"hugoGeneSymbol":"SEPHS2P1","entrezGeneId":100420190},{"hugoGeneSymbol":"SEPSECS","entrezGeneId":51091},{"hugoGeneSymbol":"SEPSECS-AS1","entrezGeneId":285540},{"hugoGeneSymbol":"SEPT1","entrezGeneId":1731},{"hugoGeneSymbol":"SEPT10","entrezGeneId":151011},{"hugoGeneSymbol":"SEPT10P1","entrezGeneId":389662},{"hugoGeneSymbol":"SEPT11","entrezGeneId":55752},{"hugoGeneSymbol":"SEPT12","entrezGeneId":124404},{"hugoGeneSymbol":"SEPT14","entrezGeneId":346288},{"hugoGeneSymbol":"SEPT14P1","entrezGeneId":106480340},{"hugoGeneSymbol":"SEPT14P10","entrezGeneId":107105352},{"hugoGeneSymbol":"SEPT14P11","entrezGeneId":107105353},{"hugoGeneSymbol":"SEPT14P12","entrezGeneId":106480343},{"hugoGeneSymbol":"SEPT14P13","entrezGeneId":106481733},{"hugoGeneSymbol":"SEPT14P14","entrezGeneId":107105354},{"hugoGeneSymbol":"SEPT14P15","entrezGeneId":107126282},{"hugoGeneSymbol":"SEPT14P16","entrezGeneId":107126283},{"hugoGeneSymbol":"SEPT14P17","entrezGeneId":106480344},{"hugoGeneSymbol":"SEPT14P18","entrezGeneId":107126284},{"hugoGeneSymbol":"SEPT14P19","entrezGeneId":107105271},{"hugoGeneSymbol":"SEPT14P2","entrezGeneId":107105263},{"hugoGeneSymbol":"SEPT14P20","entrezGeneId":107126285},{"hugoGeneSymbol":"SEPT14P21","entrezGeneId":107075107},{"hugoGeneSymbol":"SEPT14P22","entrezGeneId":107126286},{"hugoGeneSymbol":"SEPT14P23","entrezGeneId":107126290},{"hugoGeneSymbol":"SEPT14P24","entrezGeneId":106480345},{"hugoGeneSymbol":"SEPT14P3","entrezGeneId":107105265},{"hugoGeneSymbol":"SEPT14P4","entrezGeneId":107105266},{"hugoGeneSymbol":"SEPT14P5","entrezGeneId":107105276},{"hugoGeneSymbol":"SEPT14P6","entrezGeneId":107105278},{"hugoGeneSymbol":"SEPT14P7","entrezGeneId":107105280},{"hugoGeneSymbol":"SEPT14P8","entrezGeneId":106480341},{"hugoGeneSymbol":"SEPT2","entrezGeneId":4735},{"hugoGeneSymbol":"SEPT2P1","entrezGeneId":100873333},{"hugoGeneSymbol":"SEPT3","entrezGeneId":55964},{"hugoGeneSymbol":"SEPT4","entrezGeneId":5414},{"hugoGeneSymbol":"SEPT4-AS1","entrezGeneId":101927688},{"hugoGeneSymbol":"SEPT5","entrezGeneId":5413},{"hugoGeneSymbol":"SEPT5-GP1BB","entrezGeneId":100526833},{"hugoGeneSymbol":"SEPT6","entrezGeneId":23157},{"hugoGeneSymbol":"SEPT7","entrezGeneId":989},{"hugoGeneSymbol":"SEPT7-AS1","entrezGeneId":101928545},{"hugoGeneSymbol":"SEPT7P1","entrezGeneId":317774},{"hugoGeneSymbol":"SEPT7P2","entrezGeneId":641977},{"hugoGeneSymbol":"SEPT7P3","entrezGeneId":646913},{"hugoGeneSymbol":"SEPT7P4","entrezGeneId":100418715},{"hugoGeneSymbol":"SEPT7P5","entrezGeneId":100418718},{"hugoGeneSymbol":"SEPT7P6","entrezGeneId":100418720},{"hugoGeneSymbol":"SEPT7P7","entrezGeneId":100130564},{"hugoGeneSymbol":"SEPT7P8","entrezGeneId":100418735},{"hugoGeneSymbol":"SEPT7P9","entrezGeneId":285961},{"hugoGeneSymbol":"SEPT8","entrezGeneId":23176},{"hugoGeneSymbol":"SEPT9","entrezGeneId":10801},{"hugoGeneSymbol":"SERAC1","entrezGeneId":84947},{"hugoGeneSymbol":"SERBP1","entrezGeneId":26135},{"hugoGeneSymbol":"SERBP1P1","entrezGeneId":389866},{"hugoGeneSymbol":"SERBP1P2","entrezGeneId":359996},{"hugoGeneSymbol":"SERBP1P3","entrezGeneId":553148},{"hugoGeneSymbol":"SERBP1P4","entrezGeneId":100132591},{"hugoGeneSymbol":"SERBP1P5","entrezGeneId":442112},{"hugoGeneSymbol":"SERBP1P6","entrezGeneId":100420450},{"hugoGeneSymbol":"SERF1A","entrezGeneId":8293},{"hugoGeneSymbol":"SERF1AP1","entrezGeneId":100131921},{"hugoGeneSymbol":"SERF1B","entrezGeneId":728492},{"hugoGeneSymbol":"SERF2","entrezGeneId":10169},{"hugoGeneSymbol":"SERF2-C15ORF63","entrezGeneId":100529067},{"hugoGeneSymbol":"SERGEF","entrezGeneId":26297},{"hugoGeneSymbol":"SERHL","entrezGeneId":94009},{"hugoGeneSymbol":"SERHL2","entrezGeneId":253190},{"hugoGeneSymbol":"SERINC1","entrezGeneId":57515},{"hugoGeneSymbol":"SERINC2","entrezGeneId":347735},{"hugoGeneSymbol":"SERINC3","entrezGeneId":10955},{"hugoGeneSymbol":"SERINC4","entrezGeneId":619189},{"hugoGeneSymbol":"SERINC5","entrezGeneId":256987},{"hugoGeneSymbol":"SERP1","entrezGeneId":27230},{"hugoGeneSymbol":"SERP2","entrezGeneId":387923},{"hugoGeneSymbol":"SERPINA1","entrezGeneId":5265},{"hugoGeneSymbol":"SERPINA10","entrezGeneId":51156},{"hugoGeneSymbol":"SERPINA11","entrezGeneId":256394},{"hugoGeneSymbol":"SERPINA12","entrezGeneId":145264},{"hugoGeneSymbol":"SERPINA13P","entrezGeneId":388007},{"hugoGeneSymbol":"SERPINA15P","entrezGeneId":101930744},{"hugoGeneSymbol":"SERPINA2","entrezGeneId":390502},{"hugoGeneSymbol":"SERPINA3","entrezGeneId":12},{"hugoGeneSymbol":"SERPINA4","entrezGeneId":5267},{"hugoGeneSymbol":"SERPINA5","entrezGeneId":5104},{"hugoGeneSymbol":"SERPINA6","entrezGeneId":866},{"hugoGeneSymbol":"SERPINA7","entrezGeneId":6906},{"hugoGeneSymbol":"SERPINA7P1","entrezGeneId":100422644},{"hugoGeneSymbol":"SERPINA9","entrezGeneId":327657},{"hugoGeneSymbol":"SERPINB1","entrezGeneId":1992},{"hugoGeneSymbol":"SERPINB10","entrezGeneId":5273},{"hugoGeneSymbol":"SERPINB11","entrezGeneId":89778},{"hugoGeneSymbol":"SERPINB12","entrezGeneId":89777},{"hugoGeneSymbol":"SERPINB13","entrezGeneId":5275},{"hugoGeneSymbol":"SERPINB2","entrezGeneId":5055},{"hugoGeneSymbol":"SERPINB3","entrezGeneId":6317},{"hugoGeneSymbol":"SERPINB4","entrezGeneId":6318},{"hugoGeneSymbol":"SERPINB5","entrezGeneId":5268},{"hugoGeneSymbol":"SERPINB6","entrezGeneId":5269},{"hugoGeneSymbol":"SERPINB7","entrezGeneId":8710},{"hugoGeneSymbol":"SERPINB8","entrezGeneId":5271},{"hugoGeneSymbol":"SERPINB8P1","entrezGeneId":11029},{"hugoGeneSymbol":"SERPINB9","entrezGeneId":5272},{"hugoGeneSymbol":"SERPINB9P1","entrezGeneId":221756},{"hugoGeneSymbol":"SERPINC1","entrezGeneId":462},{"hugoGeneSymbol":"SERPIND1","entrezGeneId":3053},{"hugoGeneSymbol":"SERPINE1","entrezGeneId":5054},{"hugoGeneSymbol":"SERPINE2","entrezGeneId":5270},{"hugoGeneSymbol":"SERPINE3","entrezGeneId":647174},{"hugoGeneSymbol":"SERPINE4P","entrezGeneId":101930745},{"hugoGeneSymbol":"SERPINF1","entrezGeneId":5176},{"hugoGeneSymbol":"SERPINF2","entrezGeneId":5345},{"hugoGeneSymbol":"SERPING1","entrezGeneId":710},{"hugoGeneSymbol":"SERPINH1","entrezGeneId":871},{"hugoGeneSymbol":"SERPINH1P1","entrezGeneId":158172},{"hugoGeneSymbol":"SERPINI1","entrezGeneId":5274},{"hugoGeneSymbol":"SERPINI2","entrezGeneId":5276},{"hugoGeneSymbol":"SERTAD1","entrezGeneId":29950},{"hugoGeneSymbol":"SERTAD2","entrezGeneId":9792},{"hugoGeneSymbol":"SERTAD3","entrezGeneId":29946},{"hugoGeneSymbol":"SERTAD4","entrezGeneId":56256},{"hugoGeneSymbol":"SERTAD4-AS1","entrezGeneId":574036},{"hugoGeneSymbol":"SERTM1","entrezGeneId":400120},{"hugoGeneSymbol":"SERTM2","entrezGeneId":401613},{"hugoGeneSymbol":"SESN1","entrezGeneId":27244},{"hugoGeneSymbol":"SESN2","entrezGeneId":83667},{"hugoGeneSymbol":"SESN3","entrezGeneId":143686},{"hugoGeneSymbol":"SESTD1","entrezGeneId":91404},{"hugoGeneSymbol":"SET","entrezGeneId":6418},{"hugoGeneSymbol":"SETBP1","entrezGeneId":26040},{"hugoGeneSymbol":"SETD1A","entrezGeneId":9739},{"hugoGeneSymbol":"SETD1B","entrezGeneId":23067},{"hugoGeneSymbol":"SETD2","entrezGeneId":29072},{"hugoGeneSymbol":"SETD3","entrezGeneId":84193},{"hugoGeneSymbol":"SETD4","entrezGeneId":54093},{"hugoGeneSymbol":"SETD5","entrezGeneId":55209},{"hugoGeneSymbol":"SETD6","entrezGeneId":79918},{"hugoGeneSymbol":"SETD6P1","entrezGeneId":106481727},{"hugoGeneSymbol":"SETD7","entrezGeneId":80854},{"hugoGeneSymbol":"SETD8P1","entrezGeneId":57108},{"hugoGeneSymbol":"SETD9","entrezGeneId":133383},{"hugoGeneSymbol":"SETDB1","entrezGeneId":9869},{"hugoGeneSymbol":"SETDB2","entrezGeneId":83852},{"hugoGeneSymbol":"SETDB2-PHF11","entrezGeneId":107303344},{"hugoGeneSymbol":"SETMAR","entrezGeneId":6419},{"hugoGeneSymbol":"SETP1","entrezGeneId":100133314},{"hugoGeneSymbol":"SETP10","entrezGeneId":100287822},{"hugoGeneSymbol":"SETP11","entrezGeneId":100419187},{"hugoGeneSymbol":"SETP12","entrezGeneId":100419158},{"hugoGeneSymbol":"SETP14","entrezGeneId":389168},{"hugoGeneSymbol":"SETP15","entrezGeneId":100856877},{"hugoGeneSymbol":"SETP16","entrezGeneId":649925},{"hugoGeneSymbol":"SETP17","entrezGeneId":100130043},{"hugoGeneSymbol":"SETP2","entrezGeneId":326277},{"hugoGeneSymbol":"SETP20","entrezGeneId":389217},{"hugoGeneSymbol":"SETP21","entrezGeneId":100856878},{"hugoGeneSymbol":"SETP22","entrezGeneId":642737},{"hugoGeneSymbol":"SETP3","entrezGeneId":619349},{"hugoGeneSymbol":"SETP4","entrezGeneId":642869},{"hugoGeneSymbol":"SETP5","entrezGeneId":100130014},{"hugoGeneSymbol":"SETP6","entrezGeneId":100419178},{"hugoGeneSymbol":"SETP7","entrezGeneId":100873166},{"hugoGeneSymbol":"SETP8","entrezGeneId":100128536},{"hugoGeneSymbol":"SETP9","entrezGeneId":100129738},{"hugoGeneSymbol":"SETSIP","entrezGeneId":646817},{"hugoGeneSymbol":"SETX","entrezGeneId":23064},{"hugoGeneSymbol":"SEZ6","entrezGeneId":124925},{"hugoGeneSymbol":"SEZ6L","entrezGeneId":23544},{"hugoGeneSymbol":"SEZ6L2","entrezGeneId":26470},{"hugoGeneSymbol":"SF","entrezGeneId":6420},{"hugoGeneSymbol":"SF1","entrezGeneId":7536},{"hugoGeneSymbol":"SF3A1","entrezGeneId":10291},{"hugoGeneSymbol":"SF3A2","entrezGeneId":8175},{"hugoGeneSymbol":"SF3A3","entrezGeneId":10946},{"hugoGeneSymbol":"SF3A3P1","entrezGeneId":170548},{"hugoGeneSymbol":"SF3A3P2","entrezGeneId":449645},{"hugoGeneSymbol":"SF3B1","entrezGeneId":23451},{"hugoGeneSymbol":"SF3B2","entrezGeneId":10992},{"hugoGeneSymbol":"SF3B3","entrezGeneId":23450},{"hugoGeneSymbol":"SF3B4","entrezGeneId":10262},{"hugoGeneSymbol":"SF3B4P1","entrezGeneId":326276},{"hugoGeneSymbol":"SF3B5","entrezGeneId":83443},{"hugoGeneSymbol":"SF3B6","entrezGeneId":51639},{"hugoGeneSymbol":"SFI1","entrezGeneId":9814},{"hugoGeneSymbol":"SFMBT1","entrezGeneId":51460},{"hugoGeneSymbol":"SFMBT2","entrezGeneId":57713},{"hugoGeneSymbol":"SFN","entrezGeneId":2810},{"hugoGeneSymbol":"SFPQ","entrezGeneId":6421},{"hugoGeneSymbol":"SFPQP1","entrezGeneId":23758},{"hugoGeneSymbol":"SFR1","entrezGeneId":119392},{"hugoGeneSymbol":"SFR1P1","entrezGeneId":100130090},{"hugoGeneSymbol":"SFR1P2","entrezGeneId":730792},{"hugoGeneSymbol":"SFRP1","entrezGeneId":6422},{"hugoGeneSymbol":"SFRP2","entrezGeneId":6423},{"hugoGeneSymbol":"SFRP4","entrezGeneId":6424},{"hugoGeneSymbol":"SFRP5","entrezGeneId":6425},{"hugoGeneSymbol":"SFSWAP","entrezGeneId":6433},{"hugoGeneSymbol":"SFT2D1","entrezGeneId":113402},{"hugoGeneSymbol":"SFT2D2","entrezGeneId":375035},{"hugoGeneSymbol":"SFT2D3","entrezGeneId":84826},{"hugoGeneSymbol":"SFTA1P","entrezGeneId":207107},{"hugoGeneSymbol":"SFTA2","entrezGeneId":389376},{"hugoGeneSymbol":"SFTA3","entrezGeneId":253970},{"hugoGeneSymbol":"SFTPA1","entrezGeneId":653509},{"hugoGeneSymbol":"SFTPA2","entrezGeneId":729238},{"hugoGeneSymbol":"SFTPA3P","entrezGeneId":100288405},{"hugoGeneSymbol":"SFTPB","entrezGeneId":6439},{"hugoGeneSymbol":"SFTPC","entrezGeneId":6440},{"hugoGeneSymbol":"SFTPD","entrezGeneId":6441},{"hugoGeneSymbol":"SFTPD-AS1","entrezGeneId":105419997},{"hugoGeneSymbol":"SFXN1","entrezGeneId":94081},{"hugoGeneSymbol":"SFXN2","entrezGeneId":118980},{"hugoGeneSymbol":"SFXN3","entrezGeneId":81855},{"hugoGeneSymbol":"SFXN4","entrezGeneId":119559},{"hugoGeneSymbol":"SFXN5","entrezGeneId":94097},{"hugoGeneSymbol":"SGCA","entrezGeneId":6442},{"hugoGeneSymbol":"SGCB","entrezGeneId":6443},{"hugoGeneSymbol":"SGCD","entrezGeneId":6444},{"hugoGeneSymbol":"SGCE","entrezGeneId":8910},{"hugoGeneSymbol":"SGCEP","entrezGeneId":474174},{"hugoGeneSymbol":"SGCG","entrezGeneId":6445},{"hugoGeneSymbol":"SGCZ","entrezGeneId":137868},{"hugoGeneSymbol":"SGF29","entrezGeneId":112869},{"hugoGeneSymbol":"SGIP1","entrezGeneId":84251},{"hugoGeneSymbol":"SGK1","entrezGeneId":6446},{"hugoGeneSymbol":"SGK2","entrezGeneId":10110},{"hugoGeneSymbol":"SGK3","entrezGeneId":23678},{"hugoGeneSymbol":"SGK494","entrezGeneId":124923},{"hugoGeneSymbol":"SGMS1","entrezGeneId":259230},{"hugoGeneSymbol":"SGMS1-AS1","entrezGeneId":104355295},{"hugoGeneSymbol":"SGMS2","entrezGeneId":166929},{"hugoGeneSymbol":"SGO1","entrezGeneId":151648},{"hugoGeneSymbol":"SGO1-AS1","entrezGeneId":100874028},{"hugoGeneSymbol":"SGO1P1","entrezGeneId":100533666},{"hugoGeneSymbol":"SGO1P2","entrezGeneId":100533661},{"hugoGeneSymbol":"SGO2","entrezGeneId":151246},{"hugoGeneSymbol":"SGPL1","entrezGeneId":8879},{"hugoGeneSymbol":"SGPP1","entrezGeneId":81537},{"hugoGeneSymbol":"SGPP2","entrezGeneId":130367},{"hugoGeneSymbol":"SGSH","entrezGeneId":6448},{"hugoGeneSymbol":"SGSM1","entrezGeneId":129049},{"hugoGeneSymbol":"SGSM2","entrezGeneId":9905},{"hugoGeneSymbol":"SGSM3","entrezGeneId":27352},{"hugoGeneSymbol":"SGTA","entrezGeneId":6449},{"hugoGeneSymbol":"SGTB","entrezGeneId":54557},{"hugoGeneSymbol":"SH2B1","entrezGeneId":25970},{"hugoGeneSymbol":"SH2B2","entrezGeneId":10603},{"hugoGeneSymbol":"SH2B3","entrezGeneId":10019},{"hugoGeneSymbol":"SH2D1A","entrezGeneId":4068},{"hugoGeneSymbol":"SH2D1B","entrezGeneId":117157},{"hugoGeneSymbol":"SH2D2A","entrezGeneId":9047},{"hugoGeneSymbol":"SH2D3A","entrezGeneId":10045},{"hugoGeneSymbol":"SH2D3C","entrezGeneId":10044},{"hugoGeneSymbol":"SH2D4A","entrezGeneId":63898},{"hugoGeneSymbol":"SH2D4B","entrezGeneId":387694},{"hugoGeneSymbol":"SH2D5","entrezGeneId":400745},{"hugoGeneSymbol":"SH2D6","entrezGeneId":284948},{"hugoGeneSymbol":"SH2D7","entrezGeneId":646892},{"hugoGeneSymbol":"SH3BGR","entrezGeneId":6450},{"hugoGeneSymbol":"SH3BGRL","entrezGeneId":6451},{"hugoGeneSymbol":"SH3BGRL2","entrezGeneId":83699},{"hugoGeneSymbol":"SH3BGRL3","entrezGeneId":83442},{"hugoGeneSymbol":"SH3BP1","entrezGeneId":23616},{"hugoGeneSymbol":"SH3BP2","entrezGeneId":6452},{"hugoGeneSymbol":"SH3BP4","entrezGeneId":23677},{"hugoGeneSymbol":"SH3BP5","entrezGeneId":9467},{"hugoGeneSymbol":"SH3BP5-AS1","entrezGeneId":100505696},{"hugoGeneSymbol":"SH3BP5L","entrezGeneId":80851},{"hugoGeneSymbol":"SH3D19","entrezGeneId":152503},{"hugoGeneSymbol":"SH3D21","entrezGeneId":79729},{"hugoGeneSymbol":"SH3GL1","entrezGeneId":6455},{"hugoGeneSymbol":"SH3GL1P1","entrezGeneId":6458},{"hugoGeneSymbol":"SH3GL1P2","entrezGeneId":6459},{"hugoGeneSymbol":"SH3GL1P3","entrezGeneId":727736},{"hugoGeneSymbol":"SH3GL2","entrezGeneId":6456},{"hugoGeneSymbol":"SH3GL3","entrezGeneId":6457},{"hugoGeneSymbol":"SH3GLB1","entrezGeneId":51100},{"hugoGeneSymbol":"SH3GLB2","entrezGeneId":56904},{"hugoGeneSymbol":"SH3KBP1","entrezGeneId":30011},{"hugoGeneSymbol":"SH3PXD2A","entrezGeneId":9644},{"hugoGeneSymbol":"SH3PXD2A-AS1","entrezGeneId":100505839},{"hugoGeneSymbol":"SH3PXD2B","entrezGeneId":285590},{"hugoGeneSymbol":"SH3RF1","entrezGeneId":57630},{"hugoGeneSymbol":"SH3RF2","entrezGeneId":153769},{"hugoGeneSymbol":"SH3RF3","entrezGeneId":344558},{"hugoGeneSymbol":"SH3RF3-AS1","entrezGeneId":100287216},{"hugoGeneSymbol":"SH3TC1","entrezGeneId":54436},{"hugoGeneSymbol":"SH3TC2","entrezGeneId":79628},{"hugoGeneSymbol":"SH3TC2-DT","entrezGeneId":255187},{"hugoGeneSymbol":"SH3YL1","entrezGeneId":26751},{"hugoGeneSymbol":"SHANK1","entrezGeneId":50944},{"hugoGeneSymbol":"SHANK2","entrezGeneId":22941},{"hugoGeneSymbol":"SHANK2-AS1","entrezGeneId":100874198},{"hugoGeneSymbol":"SHANK2-AS2","entrezGeneId":100874199},{"hugoGeneSymbol":"SHANK2-AS3","entrezGeneId":220070},{"hugoGeneSymbol":"SHANK3","entrezGeneId":85358},{"hugoGeneSymbol":"SHARPIN","entrezGeneId":81858},{"hugoGeneSymbol":"SHB","entrezGeneId":6461},{"hugoGeneSymbol":"SHBG","entrezGeneId":6462},{"hugoGeneSymbol":"SHC1","entrezGeneId":6464},{"hugoGeneSymbol":"SHC1P1","entrezGeneId":6465},{"hugoGeneSymbol":"SHC1P2","entrezGeneId":6466},{"hugoGeneSymbol":"SHC2","entrezGeneId":25759},{"hugoGeneSymbol":"SHC3","entrezGeneId":53358},{"hugoGeneSymbol":"SHC4","entrezGeneId":399694},{"hugoGeneSymbol":"SHCBP1","entrezGeneId":79801},{"hugoGeneSymbol":"SHCBP1L","entrezGeneId":81626},{"hugoGeneSymbol":"SHD","entrezGeneId":56961},{"hugoGeneSymbol":"SHE","entrezGeneId":126669},{"hugoGeneSymbol":"SHEP8","entrezGeneId":100188852},{"hugoGeneSymbol":"SHF","entrezGeneId":90525},{"hugoGeneSymbol":"SHFL1","entrezGeneId":791121},{"hugoGeneSymbol":"SHFLD2","entrezGeneId":791123},{"hugoGeneSymbol":"SHFLD3","entrezGeneId":100270800},{"hugoGeneSymbol":"SHFM2","entrezGeneId":6463},{"hugoGeneSymbol":"SHFM3","entrezGeneId":100049542},{"hugoGeneSymbol":"SHFM5","entrezGeneId":171157},{"hugoGeneSymbol":"SHH","entrezGeneId":6469},{"hugoGeneSymbol":"SHISA2","entrezGeneId":387914},{"hugoGeneSymbol":"SHISA3","entrezGeneId":152573},{"hugoGeneSymbol":"SHISA4","entrezGeneId":149345},{"hugoGeneSymbol":"SHISA5","entrezGeneId":51246},{"hugoGeneSymbol":"SHISA6","entrezGeneId":388336},{"hugoGeneSymbol":"SHISA7","entrezGeneId":729956},{"hugoGeneSymbol":"SHISA8","entrezGeneId":440829},{"hugoGeneSymbol":"SHISA9","entrezGeneId":729993},{"hugoGeneSymbol":"SHISAL1","entrezGeneId":85352},{"hugoGeneSymbol":"SHISAL2A","entrezGeneId":348378},{"hugoGeneSymbol":"SHISAL2B","entrezGeneId":100132916},{"hugoGeneSymbol":"SHKBP1","entrezGeneId":92799},{"hugoGeneSymbol":"SHMT1","entrezGeneId":6470},{"hugoGeneSymbol":"SHMT1P1","entrezGeneId":6471},{"hugoGeneSymbol":"SHMT2","entrezGeneId":6472},{"hugoGeneSymbol":"SHOC2","entrezGeneId":8036},{"hugoGeneSymbol":"SHOX","entrezGeneId":6473},{"hugoGeneSymbol":"SHOX2","entrezGeneId":6474},{"hugoGeneSymbol":"SHPK","entrezGeneId":23729},{"hugoGeneSymbol":"SHPRH","entrezGeneId":257218},{"hugoGeneSymbol":"SHQ1","entrezGeneId":55164},{"hugoGeneSymbol":"SHQ1P1","entrezGeneId":644451},{"hugoGeneSymbol":"SHROOM1","entrezGeneId":134549},{"hugoGeneSymbol":"SHROOM2","entrezGeneId":357},{"hugoGeneSymbol":"SHROOM2P1","entrezGeneId":10031},{"hugoGeneSymbol":"SHROOM3","entrezGeneId":57619},{"hugoGeneSymbol":"SHROOM4","entrezGeneId":57477},{"hugoGeneSymbol":"SHTN1","entrezGeneId":57698},{"hugoGeneSymbol":"SI","entrezGeneId":6476},{"hugoGeneSymbol":"SIAE","entrezGeneId":54414},{"hugoGeneSymbol":"SIAH1","entrezGeneId":6477},{"hugoGeneSymbol":"SIAH1P1","entrezGeneId":340571},{"hugoGeneSymbol":"SIAH2","entrezGeneId":6478},{"hugoGeneSymbol":"SIAH2-AS1","entrezGeneId":100874005},{"hugoGeneSymbol":"SIAH3","entrezGeneId":283514},{"hugoGeneSymbol":"SIDT1","entrezGeneId":54847},{"hugoGeneSymbol":"SIDT1-AS1","entrezGeneId":100874030},{"hugoGeneSymbol":"SIDT2","entrezGeneId":51092},{"hugoGeneSymbol":"SIGIRR","entrezGeneId":59307},{"hugoGeneSymbol":"SIGLEC1","entrezGeneId":6614},{"hugoGeneSymbol":"SIGLEC10","entrezGeneId":89790},{"hugoGeneSymbol":"SIGLEC11","entrezGeneId":114132},{"hugoGeneSymbol":"SIGLEC12","entrezGeneId":89858},{"hugoGeneSymbol":"SIGLEC14","entrezGeneId":100049587},{"hugoGeneSymbol":"SIGLEC15","entrezGeneId":284266},{"hugoGeneSymbol":"SIGLEC16","entrezGeneId":400709},{"hugoGeneSymbol":"SIGLEC17P","entrezGeneId":284367},{"hugoGeneSymbol":"SIGLEC18P","entrezGeneId":114184},{"hugoGeneSymbol":"SIGLEC20P","entrezGeneId":114192},{"hugoGeneSymbol":"SIGLEC21P","entrezGeneId":114194},{"hugoGeneSymbol":"SIGLEC22P","entrezGeneId":114195},{"hugoGeneSymbol":"SIGLEC24P","entrezGeneId":114196},{"hugoGeneSymbol":"SIGLEC25P","entrezGeneId":114198},{"hugoGeneSymbol":"SIGLEC26P","entrezGeneId":114185},{"hugoGeneSymbol":"SIGLEC27P","entrezGeneId":114186},{"hugoGeneSymbol":"SIGLEC28P","entrezGeneId":114187},{"hugoGeneSymbol":"SIGLEC29P","entrezGeneId":114188},{"hugoGeneSymbol":"SIGLEC30P","entrezGeneId":114190},{"hugoGeneSymbol":"SIGLEC31P","entrezGeneId":114189},{"hugoGeneSymbol":"SIGLEC5","entrezGeneId":8778},{"hugoGeneSymbol":"SIGLEC6","entrezGeneId":946},{"hugoGeneSymbol":"SIGLEC7","entrezGeneId":27036},{"hugoGeneSymbol":"SIGLEC8","entrezGeneId":27181},{"hugoGeneSymbol":"SIGLEC9","entrezGeneId":27180},{"hugoGeneSymbol":"SIGLECL1","entrezGeneId":284369},{"hugoGeneSymbol":"SIGMAR1","entrezGeneId":10280},{"hugoGeneSymbol":"SIK1","entrezGeneId":150094},{"hugoGeneSymbol":"SIK1B","entrezGeneId":102724428},{"hugoGeneSymbol":"SIK2","entrezGeneId":23235},{"hugoGeneSymbol":"SIK3","entrezGeneId":23387},{"hugoGeneSymbol":"SIK3-IT1","entrezGeneId":100874315},{"hugoGeneSymbol":"SIKE1","entrezGeneId":80143},{"hugoGeneSymbol":"SIL1","entrezGeneId":64374},{"hugoGeneSymbol":"SIM1","entrezGeneId":6492},{"hugoGeneSymbol":"SIM2","entrezGeneId":6493},{"hugoGeneSymbol":"SIMC1","entrezGeneId":375484},{"hugoGeneSymbol":"SIN3A","entrezGeneId":25942},{"hugoGeneSymbol":"SIN3B","entrezGeneId":23309},{"hugoGeneSymbol":"SINHCAF","entrezGeneId":58516},{"hugoGeneSymbol":"SINHCAFP1","entrezGeneId":100421588},{"hugoGeneSymbol":"SINHCAFP2","entrezGeneId":728115},{"hugoGeneSymbol":"SINHCAFP3","entrezGeneId":646721},{"hugoGeneSymbol":"SIPA1","entrezGeneId":6494},{"hugoGeneSymbol":"SIPA1L1","entrezGeneId":26037},{"hugoGeneSymbol":"SIPA1L2","entrezGeneId":57568},{"hugoGeneSymbol":"SIPA1L3","entrezGeneId":23094},{"hugoGeneSymbol":"SIRPA","entrezGeneId":140885},{"hugoGeneSymbol":"SIRPAP1","entrezGeneId":23755},{"hugoGeneSymbol":"SIRPB1","entrezGeneId":10326},{"hugoGeneSymbol":"SIRPB2","entrezGeneId":284759},{"hugoGeneSymbol":"SIRPB3P","entrezGeneId":100652885},{"hugoGeneSymbol":"SIRPD","entrezGeneId":128646},{"hugoGeneSymbol":"SIRPG","entrezGeneId":55423},{"hugoGeneSymbol":"SIRPG-AS1","entrezGeneId":101929010},{"hugoGeneSymbol":"SIRT1","entrezGeneId":23411},{"hugoGeneSymbol":"SIRT1-AS","entrezGeneId":106633813},{"hugoGeneSymbol":"SIRT2","entrezGeneId":22933},{"hugoGeneSymbol":"SIRT3","entrezGeneId":23410},{"hugoGeneSymbol":"SIRT4","entrezGeneId":23409},{"hugoGeneSymbol":"SIRT5","entrezGeneId":23408},{"hugoGeneSymbol":"SIRT6","entrezGeneId":51548},{"hugoGeneSymbol":"SIRT7","entrezGeneId":51547},{"hugoGeneSymbol":"SIT1","entrezGeneId":27240},{"hugoGeneSymbol":"SIVA1","entrezGeneId":10572},{"hugoGeneSymbol":"SIX1","entrezGeneId":6495},{"hugoGeneSymbol":"SIX2","entrezGeneId":10736},{"hugoGeneSymbol":"SIX3","entrezGeneId":6496},{"hugoGeneSymbol":"SIX3-AS1","entrezGeneId":100506108},{"hugoGeneSymbol":"SIX4","entrezGeneId":51804},{"hugoGeneSymbol":"SIX5","entrezGeneId":147912},{"hugoGeneSymbol":"SIX6","entrezGeneId":4990},{"hugoGeneSymbol":"SKA1","entrezGeneId":220134},{"hugoGeneSymbol":"SKA2","entrezGeneId":348235},{"hugoGeneSymbol":"SKA2P1","entrezGeneId":729012},{"hugoGeneSymbol":"SKA3","entrezGeneId":221150},{"hugoGeneSymbol":"SKAP1","entrezGeneId":8631},{"hugoGeneSymbol":"SKAP1-AS1","entrezGeneId":110806289},{"hugoGeneSymbol":"SKAP2","entrezGeneId":8935},{"hugoGeneSymbol":"SKI","entrezGeneId":6497},{"hugoGeneSymbol":"SKIDA1","entrezGeneId":387640},{"hugoGeneSymbol":"SKIL","entrezGeneId":6498},{"hugoGeneSymbol":"SKINT1L","entrezGeneId":391037},{"hugoGeneSymbol":"SKIV2L","entrezGeneId":6499},{"hugoGeneSymbol":"SKOR1","entrezGeneId":390598},{"hugoGeneSymbol":"SKOR2","entrezGeneId":652991},{"hugoGeneSymbol":"SKP1","entrezGeneId":6500},{"hugoGeneSymbol":"SKP1P1","entrezGeneId":6922},{"hugoGeneSymbol":"SKP1P2","entrezGeneId":728622},{"hugoGeneSymbol":"SKP1P3","entrezGeneId":100101119},{"hugoGeneSymbol":"SKP2","entrezGeneId":6502},{"hugoGeneSymbol":"SLA","entrezGeneId":6503},{"hugoGeneSymbol":"SLA2","entrezGeneId":84174},{"hugoGeneSymbol":"SLAIN1","entrezGeneId":122060},{"hugoGeneSymbol":"SLAIN2","entrezGeneId":57606},{"hugoGeneSymbol":"SLAMF1","entrezGeneId":6504},{"hugoGeneSymbol":"SLAMF6","entrezGeneId":114836},{"hugoGeneSymbol":"SLAMF6P1","entrezGeneId":100862852},{"hugoGeneSymbol":"SLAMF7","entrezGeneId":57823},{"hugoGeneSymbol":"SLAMF8","entrezGeneId":56833},{"hugoGeneSymbol":"SLAMF9","entrezGeneId":89886},{"hugoGeneSymbol":"SLBP","entrezGeneId":7884},{"hugoGeneSymbol":"SLC10A1","entrezGeneId":6554},{"hugoGeneSymbol":"SLC10A2","entrezGeneId":6555},{"hugoGeneSymbol":"SLC10A3","entrezGeneId":8273},{"hugoGeneSymbol":"SLC10A4","entrezGeneId":201780},{"hugoGeneSymbol":"SLC10A5","entrezGeneId":347051},{"hugoGeneSymbol":"SLC10A5P1","entrezGeneId":100631269},{"hugoGeneSymbol":"SLC10A6","entrezGeneId":345274},{"hugoGeneSymbol":"SLC10A7","entrezGeneId":84068},{"hugoGeneSymbol":"SLC11A1","entrezGeneId":6556},{"hugoGeneSymbol":"SLC11A2","entrezGeneId":4891},{"hugoGeneSymbol":"SLC12A1","entrezGeneId":6557},{"hugoGeneSymbol":"SLC12A2","entrezGeneId":6558},{"hugoGeneSymbol":"SLC12A3","entrezGeneId":6559},{"hugoGeneSymbol":"SLC12A4","entrezGeneId":6560},{"hugoGeneSymbol":"SLC12A5","entrezGeneId":57468},{"hugoGeneSymbol":"SLC12A5-AS1","entrezGeneId":109729184},{"hugoGeneSymbol":"SLC12A6","entrezGeneId":9990},{"hugoGeneSymbol":"SLC12A7","entrezGeneId":10723},{"hugoGeneSymbol":"SLC12A8","entrezGeneId":84561},{"hugoGeneSymbol":"SLC12A9","entrezGeneId":56996},{"hugoGeneSymbol":"SLC12A9-AS1","entrezGeneId":105375430},{"hugoGeneSymbol":"SLC13A1","entrezGeneId":6561},{"hugoGeneSymbol":"SLC13A2","entrezGeneId":9058},{"hugoGeneSymbol":"SLC13A3","entrezGeneId":64849},{"hugoGeneSymbol":"SLC13A4","entrezGeneId":26266},{"hugoGeneSymbol":"SLC13A5","entrezGeneId":284111},{"hugoGeneSymbol":"SLC14A1","entrezGeneId":6563},{"hugoGeneSymbol":"SLC14A2","entrezGeneId":8170},{"hugoGeneSymbol":"SLC14A2-AS1","entrezGeneId":101927980},{"hugoGeneSymbol":"SLC15A1","entrezGeneId":6564},{"hugoGeneSymbol":"SLC15A2","entrezGeneId":6565},{"hugoGeneSymbol":"SLC15A3","entrezGeneId":51296},{"hugoGeneSymbol":"SLC15A4","entrezGeneId":121260},{"hugoGeneSymbol":"SLC15A5","entrezGeneId":729025},{"hugoGeneSymbol":"SLC16A1","entrezGeneId":6566},{"hugoGeneSymbol":"SLC16A1-AS1","entrezGeneId":100506392},{"hugoGeneSymbol":"SLC16A10","entrezGeneId":117247},{"hugoGeneSymbol":"SLC16A11","entrezGeneId":162515},{"hugoGeneSymbol":"SLC16A12","entrezGeneId":387700},{"hugoGeneSymbol":"SLC16A12-AS1","entrezGeneId":101926906},{"hugoGeneSymbol":"SLC16A13","entrezGeneId":201232},{"hugoGeneSymbol":"SLC16A14","entrezGeneId":151473},{"hugoGeneSymbol":"SLC16A14P1","entrezGeneId":100128685},{"hugoGeneSymbol":"SLC16A1P1","entrezGeneId":100422547},{"hugoGeneSymbol":"SLC16A2","entrezGeneId":6567},{"hugoGeneSymbol":"SLC16A3","entrezGeneId":9123},{"hugoGeneSymbol":"SLC16A4","entrezGeneId":9122},{"hugoGeneSymbol":"SLC16A5","entrezGeneId":9121},{"hugoGeneSymbol":"SLC16A6","entrezGeneId":9120},{"hugoGeneSymbol":"SLC16A6P1","entrezGeneId":440459},{"hugoGeneSymbol":"SLC16A7","entrezGeneId":9194},{"hugoGeneSymbol":"SLC16A8","entrezGeneId":23539},{"hugoGeneSymbol":"SLC16A9","entrezGeneId":220963},{"hugoGeneSymbol":"SLC17A1","entrezGeneId":6568},{"hugoGeneSymbol":"SLC17A2","entrezGeneId":10246},{"hugoGeneSymbol":"SLC17A3","entrezGeneId":10786},{"hugoGeneSymbol":"SLC17A4","entrezGeneId":10050},{"hugoGeneSymbol":"SLC17A5","entrezGeneId":26503},{"hugoGeneSymbol":"SLC17A6","entrezGeneId":57084},{"hugoGeneSymbol":"SLC17A7","entrezGeneId":57030},{"hugoGeneSymbol":"SLC17A8","entrezGeneId":246213},{"hugoGeneSymbol":"SLC17A9","entrezGeneId":63910},{"hugoGeneSymbol":"SLC18A1","entrezGeneId":6570},{"hugoGeneSymbol":"SLC18A2","entrezGeneId":6571},{"hugoGeneSymbol":"SLC18A3","entrezGeneId":6572},{"hugoGeneSymbol":"SLC18B1","entrezGeneId":116843},{"hugoGeneSymbol":"SLC19A1","entrezGeneId":6573},{"hugoGeneSymbol":"SLC19A2","entrezGeneId":10560},{"hugoGeneSymbol":"SLC19A3","entrezGeneId":80704},{"hugoGeneSymbol":"SLC1A1","entrezGeneId":6505},{"hugoGeneSymbol":"SLC1A2","entrezGeneId":6506},{"hugoGeneSymbol":"SLC1A3","entrezGeneId":6507},{"hugoGeneSymbol":"SLC1A4","entrezGeneId":6509},{"hugoGeneSymbol":"SLC1A5","entrezGeneId":6510},{"hugoGeneSymbol":"SLC1A6","entrezGeneId":6511},{"hugoGeneSymbol":"SLC1A7","entrezGeneId":6512},{"hugoGeneSymbol":"SLC20A1","entrezGeneId":6574},{"hugoGeneSymbol":"SLC20A1P1","entrezGeneId":192127},{"hugoGeneSymbol":"SLC20A1P2","entrezGeneId":192128},{"hugoGeneSymbol":"SLC20A1P3","entrezGeneId":646052},{"hugoGeneSymbol":"SLC20A2","entrezGeneId":6575},{"hugoGeneSymbol":"SLC22A1","entrezGeneId":6580},{"hugoGeneSymbol":"SLC22A10","entrezGeneId":387775},{"hugoGeneSymbol":"SLC22A11","entrezGeneId":55867},{"hugoGeneSymbol":"SLC22A12","entrezGeneId":116085},{"hugoGeneSymbol":"SLC22A13","entrezGeneId":9390},{"hugoGeneSymbol":"SLC22A14","entrezGeneId":9389},{"hugoGeneSymbol":"SLC22A15","entrezGeneId":55356},{"hugoGeneSymbol":"SLC22A16","entrezGeneId":85413},{"hugoGeneSymbol":"SLC22A17","entrezGeneId":51310},{"hugoGeneSymbol":"SLC22A18","entrezGeneId":5002},{"hugoGeneSymbol":"SLC22A18AS","entrezGeneId":5003},{"hugoGeneSymbol":"SLC22A2","entrezGeneId":6582},{"hugoGeneSymbol":"SLC22A20P","entrezGeneId":440044},{"hugoGeneSymbol":"SLC22A23","entrezGeneId":63027},{"hugoGeneSymbol":"SLC22A24","entrezGeneId":283238},{"hugoGeneSymbol":"SLC22A25","entrezGeneId":387601},{"hugoGeneSymbol":"SLC22A3","entrezGeneId":6581},{"hugoGeneSymbol":"SLC22A31","entrezGeneId":146429},{"hugoGeneSymbol":"SLC22A4","entrezGeneId":6583},{"hugoGeneSymbol":"SLC22A5","entrezGeneId":6584},{"hugoGeneSymbol":"SLC22A6","entrezGeneId":9356},{"hugoGeneSymbol":"SLC22A7","entrezGeneId":10864},{"hugoGeneSymbol":"SLC22A8","entrezGeneId":9376},{"hugoGeneSymbol":"SLC22A9","entrezGeneId":114571},{"hugoGeneSymbol":"SLC23A1","entrezGeneId":9963},{"hugoGeneSymbol":"SLC23A2","entrezGeneId":9962},{"hugoGeneSymbol":"SLC23A3","entrezGeneId":151295},{"hugoGeneSymbol":"SLC23A4P","entrezGeneId":641842},{"hugoGeneSymbol":"SLC24A1","entrezGeneId":9187},{"hugoGeneSymbol":"SLC24A2","entrezGeneId":25769},{"hugoGeneSymbol":"SLC24A3","entrezGeneId":57419},{"hugoGeneSymbol":"SLC24A4","entrezGeneId":123041},{"hugoGeneSymbol":"SLC24A5","entrezGeneId":283652},{"hugoGeneSymbol":"SLC25A1","entrezGeneId":6576},{"hugoGeneSymbol":"SLC25A10","entrezGeneId":1468},{"hugoGeneSymbol":"SLC25A11","entrezGeneId":8402},{"hugoGeneSymbol":"SLC25A12","entrezGeneId":8604},{"hugoGeneSymbol":"SLC25A13","entrezGeneId":10165},{"hugoGeneSymbol":"SLC25A14","entrezGeneId":9016},{"hugoGeneSymbol":"SLC25A14P1","entrezGeneId":100288343},{"hugoGeneSymbol":"SLC25A15","entrezGeneId":10166},{"hugoGeneSymbol":"SLC25A15P1","entrezGeneId":100422624},{"hugoGeneSymbol":"SLC25A15P2","entrezGeneId":100874522},{"hugoGeneSymbol":"SLC25A15P3","entrezGeneId":100422635},{"hugoGeneSymbol":"SLC25A15P4","entrezGeneId":100422636},{"hugoGeneSymbol":"SLC25A15P5","entrezGeneId":100422642},{"hugoGeneSymbol":"SLC25A16","entrezGeneId":8034},{"hugoGeneSymbol":"SLC25A17","entrezGeneId":10478},{"hugoGeneSymbol":"SLC25A18","entrezGeneId":83733},{"hugoGeneSymbol":"SLC25A18P1","entrezGeneId":106480776},{"hugoGeneSymbol":"SLC25A19","entrezGeneId":60386},{"hugoGeneSymbol":"SLC25A1P1","entrezGeneId":100131457},{"hugoGeneSymbol":"SLC25A1P2","entrezGeneId":100133079},{"hugoGeneSymbol":"SLC25A1P3","entrezGeneId":644159},{"hugoGeneSymbol":"SLC25A1P4","entrezGeneId":100132355},{"hugoGeneSymbol":"SLC25A1P5","entrezGeneId":642290},{"hugoGeneSymbol":"SLC25A2","entrezGeneId":83884},{"hugoGeneSymbol":"SLC25A20","entrezGeneId":788},{"hugoGeneSymbol":"SLC25A20P1","entrezGeneId":789},{"hugoGeneSymbol":"SLC25A21","entrezGeneId":89874},{"hugoGeneSymbol":"SLC25A21-AS1","entrezGeneId":100129794},{"hugoGeneSymbol":"SLC25A22","entrezGeneId":79751},{"hugoGeneSymbol":"SLC25A23","entrezGeneId":79085},{"hugoGeneSymbol":"SLC25A24","entrezGeneId":29957},{"hugoGeneSymbol":"SLC25A24P1","entrezGeneId":727941},{"hugoGeneSymbol":"SLC25A24P2","entrezGeneId":100422608},{"hugoGeneSymbol":"SLC25A25","entrezGeneId":114789},{"hugoGeneSymbol":"SLC25A25-AS1","entrezGeneId":100289019},{"hugoGeneSymbol":"SLC25A26","entrezGeneId":115286},{"hugoGeneSymbol":"SLC25A27","entrezGeneId":9481},{"hugoGeneSymbol":"SLC25A28","entrezGeneId":81894},{"hugoGeneSymbol":"SLC25A29","entrezGeneId":123096},{"hugoGeneSymbol":"SLC25A3","entrezGeneId":5250},{"hugoGeneSymbol":"SLC25A30","entrezGeneId":253512},{"hugoGeneSymbol":"SLC25A30-AS1","entrezGeneId":100874259},{"hugoGeneSymbol":"SLC25A31","entrezGeneId":83447},{"hugoGeneSymbol":"SLC25A32","entrezGeneId":81034},{"hugoGeneSymbol":"SLC25A33","entrezGeneId":84275},{"hugoGeneSymbol":"SLC25A34","entrezGeneId":284723},{"hugoGeneSymbol":"SLC25A34-AS1","entrezGeneId":110806303},{"hugoGeneSymbol":"SLC25A35","entrezGeneId":399512},{"hugoGeneSymbol":"SLC25A36","entrezGeneId":55186},{"hugoGeneSymbol":"SLC25A36P1","entrezGeneId":106480240},{"hugoGeneSymbol":"SLC25A37","entrezGeneId":51312},{"hugoGeneSymbol":"SLC25A38","entrezGeneId":54977},{"hugoGeneSymbol":"SLC25A38P1","entrezGeneId":441915},{"hugoGeneSymbol":"SLC25A39","entrezGeneId":51629},{"hugoGeneSymbol":"SLC25A39P1","entrezGeneId":100420877},{"hugoGeneSymbol":"SLC25A39P2","entrezGeneId":107126289},{"hugoGeneSymbol":"SLC25A3P1","entrezGeneId":163742},{"hugoGeneSymbol":"SLC25A3P2","entrezGeneId":100128618},{"hugoGeneSymbol":"SLC25A3P3","entrezGeneId":100422606},{"hugoGeneSymbol":"SLC25A4","entrezGeneId":291},{"hugoGeneSymbol":"SLC25A40","entrezGeneId":55972},{"hugoGeneSymbol":"SLC25A41","entrezGeneId":284427},{"hugoGeneSymbol":"SLC25A42","entrezGeneId":284439},{"hugoGeneSymbol":"SLC25A43","entrezGeneId":203427},{"hugoGeneSymbol":"SLC25A44","entrezGeneId":9673},{"hugoGeneSymbol":"SLC25A45","entrezGeneId":283130},{"hugoGeneSymbol":"SLC25A46","entrezGeneId":91137},{"hugoGeneSymbol":"SLC25A47","entrezGeneId":283600},{"hugoGeneSymbol":"SLC25A47P1","entrezGeneId":105369316},{"hugoGeneSymbol":"SLC25A48","entrezGeneId":153328},{"hugoGeneSymbol":"SLC25A5","entrezGeneId":292},{"hugoGeneSymbol":"SLC25A5-AS1","entrezGeneId":100303728},{"hugoGeneSymbol":"SLC25A51","entrezGeneId":92014},{"hugoGeneSymbol":"SLC25A51P1","entrezGeneId":442229},{"hugoGeneSymbol":"SLC25A51P2","entrezGeneId":645423},{"hugoGeneSymbol":"SLC25A51P3","entrezGeneId":100128119},{"hugoGeneSymbol":"SLC25A52","entrezGeneId":147407},{"hugoGeneSymbol":"SLC25A53","entrezGeneId":401612},{"hugoGeneSymbol":"SLC25A5P1","entrezGeneId":266623},{"hugoGeneSymbol":"SLC25A5P2","entrezGeneId":344371},{"hugoGeneSymbol":"SLC25A5P3","entrezGeneId":222005},{"hugoGeneSymbol":"SLC25A5P4","entrezGeneId":100131027},{"hugoGeneSymbol":"SLC25A5P5","entrezGeneId":442525},{"hugoGeneSymbol":"SLC25A5P6","entrezGeneId":644042},{"hugoGeneSymbol":"SLC25A5P7","entrezGeneId":442255},{"hugoGeneSymbol":"SLC25A5P8","entrezGeneId":392301},{"hugoGeneSymbol":"SLC25A5P9","entrezGeneId":100133074},{"hugoGeneSymbol":"SLC25A6","entrezGeneId":293},{"hugoGeneSymbol":"SLC25A6P1","entrezGeneId":128790},{"hugoGeneSymbol":"SLC25A6P2","entrezGeneId":138412},{"hugoGeneSymbol":"SLC25A6P3","entrezGeneId":100422686},{"hugoGeneSymbol":"SLC25A6P4","entrezGeneId":100422690},{"hugoGeneSymbol":"SLC25A6P5","entrezGeneId":100129319},{"hugoGeneSymbol":"SLC25A6P6","entrezGeneId":100128312},{"hugoGeneSymbol":"SLC26A1","entrezGeneId":10861},{"hugoGeneSymbol":"SLC26A10","entrezGeneId":65012},{"hugoGeneSymbol":"SLC26A11","entrezGeneId":284129},{"hugoGeneSymbol":"SLC26A2","entrezGeneId":1836},{"hugoGeneSymbol":"SLC26A3","entrezGeneId":1811},{"hugoGeneSymbol":"SLC26A4","entrezGeneId":5172},{"hugoGeneSymbol":"SLC26A4-AS1","entrezGeneId":286002},{"hugoGeneSymbol":"SLC26A5","entrezGeneId":375611},{"hugoGeneSymbol":"SLC26A6","entrezGeneId":65010},{"hugoGeneSymbol":"SLC26A7","entrezGeneId":115111},{"hugoGeneSymbol":"SLC26A8","entrezGeneId":116369},{"hugoGeneSymbol":"SLC26A9","entrezGeneId":115019},{"hugoGeneSymbol":"SLC27A1","entrezGeneId":376497},{"hugoGeneSymbol":"SLC27A2","entrezGeneId":11001},{"hugoGeneSymbol":"SLC27A3","entrezGeneId":11000},{"hugoGeneSymbol":"SLC27A4","entrezGeneId":10999},{"hugoGeneSymbol":"SLC27A5","entrezGeneId":10998},{"hugoGeneSymbol":"SLC27A6","entrezGeneId":28965},{"hugoGeneSymbol":"SLC28A1","entrezGeneId":9154},{"hugoGeneSymbol":"SLC28A2","entrezGeneId":9153},{"hugoGeneSymbol":"SLC28A3","entrezGeneId":64078},{"hugoGeneSymbol":"SLC29A1","entrezGeneId":2030},{"hugoGeneSymbol":"SLC29A2","entrezGeneId":3177},{"hugoGeneSymbol":"SLC29A3","entrezGeneId":55315},{"hugoGeneSymbol":"SLC29A4","entrezGeneId":222962},{"hugoGeneSymbol":"SLC29A4P1","entrezGeneId":402509},{"hugoGeneSymbol":"SLC29A4P2","entrezGeneId":100132308},{"hugoGeneSymbol":"SLC2A1","entrezGeneId":6513},{"hugoGeneSymbol":"SLC2A1-AS1","entrezGeneId":440584},{"hugoGeneSymbol":"SLC2A10","entrezGeneId":81031},{"hugoGeneSymbol":"SLC2A11","entrezGeneId":66035},{"hugoGeneSymbol":"SLC2A12","entrezGeneId":154091},{"hugoGeneSymbol":"SLC2A13","entrezGeneId":114134},{"hugoGeneSymbol":"SLC2A13P1","entrezGeneId":106480239},{"hugoGeneSymbol":"SLC2A14","entrezGeneId":144195},{"hugoGeneSymbol":"SLC2A2","entrezGeneId":6514},{"hugoGeneSymbol":"SLC2A3","entrezGeneId":6515},{"hugoGeneSymbol":"SLC2A3P1","entrezGeneId":100128062},{"hugoGeneSymbol":"SLC2A3P2","entrezGeneId":391045},{"hugoGeneSymbol":"SLC2A3P4","entrezGeneId":399495},{"hugoGeneSymbol":"SLC2A4","entrezGeneId":6517},{"hugoGeneSymbol":"SLC2A4RG","entrezGeneId":56731},{"hugoGeneSymbol":"SLC2A5","entrezGeneId":6518},{"hugoGeneSymbol":"SLC2A6","entrezGeneId":11182},{"hugoGeneSymbol":"SLC2A7","entrezGeneId":155184},{"hugoGeneSymbol":"SLC2A8","entrezGeneId":29988},{"hugoGeneSymbol":"SLC2A9","entrezGeneId":56606},{"hugoGeneSymbol":"SLC2AXP1","entrezGeneId":399496},{"hugoGeneSymbol":"SLC30A1","entrezGeneId":7779},{"hugoGeneSymbol":"SLC30A10","entrezGeneId":55532},{"hugoGeneSymbol":"SLC30A2","entrezGeneId":7780},{"hugoGeneSymbol":"SLC30A3","entrezGeneId":7781},{"hugoGeneSymbol":"SLC30A4","entrezGeneId":7782},{"hugoGeneSymbol":"SLC30A5","entrezGeneId":64924},{"hugoGeneSymbol":"SLC30A6","entrezGeneId":55676},{"hugoGeneSymbol":"SLC30A7","entrezGeneId":148867},{"hugoGeneSymbol":"SLC30A8","entrezGeneId":169026},{"hugoGeneSymbol":"SLC30A9","entrezGeneId":10463},{"hugoGeneSymbol":"SLC31A1","entrezGeneId":1317},{"hugoGeneSymbol":"SLC31A1P1","entrezGeneId":117151},{"hugoGeneSymbol":"SLC31A2","entrezGeneId":1318},{"hugoGeneSymbol":"SLC32A1","entrezGeneId":140679},{"hugoGeneSymbol":"SLC33A1","entrezGeneId":9197},{"hugoGeneSymbol":"SLC34A1","entrezGeneId":6569},{"hugoGeneSymbol":"SLC34A2","entrezGeneId":10568},{"hugoGeneSymbol":"SLC34A3","entrezGeneId":142680},{"hugoGeneSymbol":"SLC35A1","entrezGeneId":10559},{"hugoGeneSymbol":"SLC35A2","entrezGeneId":7355},{"hugoGeneSymbol":"SLC35A3","entrezGeneId":23443},{"hugoGeneSymbol":"SLC35A4","entrezGeneId":113829},{"hugoGeneSymbol":"SLC35A5","entrezGeneId":55032},{"hugoGeneSymbol":"SLC35B1","entrezGeneId":10237},{"hugoGeneSymbol":"SLC35B2","entrezGeneId":347734},{"hugoGeneSymbol":"SLC35B3","entrezGeneId":51000},{"hugoGeneSymbol":"SLC35B4","entrezGeneId":84912},{"hugoGeneSymbol":"SLC35C1","entrezGeneId":55343},{"hugoGeneSymbol":"SLC35C2","entrezGeneId":51006},{"hugoGeneSymbol":"SLC35D1","entrezGeneId":23169},{"hugoGeneSymbol":"SLC35D2","entrezGeneId":11046},{"hugoGeneSymbol":"SLC35D3","entrezGeneId":340146},{"hugoGeneSymbol":"SLC35E1","entrezGeneId":79939},{"hugoGeneSymbol":"SLC35E1P1","entrezGeneId":727991},{"hugoGeneSymbol":"SLC35E2A","entrezGeneId":9906},{"hugoGeneSymbol":"SLC35E2B","entrezGeneId":728661},{"hugoGeneSymbol":"SLC35E3","entrezGeneId":55508},{"hugoGeneSymbol":"SLC35E4","entrezGeneId":339665},{"hugoGeneSymbol":"SLC35F1","entrezGeneId":222553},{"hugoGeneSymbol":"SLC35F2","entrezGeneId":54733},{"hugoGeneSymbol":"SLC35F3","entrezGeneId":148641},{"hugoGeneSymbol":"SLC35F4","entrezGeneId":341880},{"hugoGeneSymbol":"SLC35F5","entrezGeneId":80255},{"hugoGeneSymbol":"SLC35F6","entrezGeneId":54978},{"hugoGeneSymbol":"SLC35G1","entrezGeneId":159371},{"hugoGeneSymbol":"SLC35G2","entrezGeneId":80723},{"hugoGeneSymbol":"SLC35G3","entrezGeneId":146861},{"hugoGeneSymbol":"SLC35G4","entrezGeneId":646000},{"hugoGeneSymbol":"SLC35G5","entrezGeneId":83650},{"hugoGeneSymbol":"SLC35G6","entrezGeneId":643664},{"hugoGeneSymbol":"SLC36A1","entrezGeneId":206358},{"hugoGeneSymbol":"SLC36A2","entrezGeneId":153201},{"hugoGeneSymbol":"SLC36A3","entrezGeneId":285641},{"hugoGeneSymbol":"SLC36A4","entrezGeneId":120103},{"hugoGeneSymbol":"SLC37A1","entrezGeneId":54020},{"hugoGeneSymbol":"SLC37A2","entrezGeneId":219855},{"hugoGeneSymbol":"SLC37A3","entrezGeneId":84255},{"hugoGeneSymbol":"SLC37A4","entrezGeneId":2542},{"hugoGeneSymbol":"SLC38A1","entrezGeneId":81539},{"hugoGeneSymbol":"SLC38A10","entrezGeneId":124565},{"hugoGeneSymbol":"SLC38A11","entrezGeneId":151258},{"hugoGeneSymbol":"SLC38A2","entrezGeneId":54407},{"hugoGeneSymbol":"SLC38A3","entrezGeneId":10991},{"hugoGeneSymbol":"SLC38A4","entrezGeneId":55089},{"hugoGeneSymbol":"SLC38A5","entrezGeneId":92745},{"hugoGeneSymbol":"SLC38A6","entrezGeneId":145389},{"hugoGeneSymbol":"SLC38A7","entrezGeneId":55238},{"hugoGeneSymbol":"SLC38A8","entrezGeneId":146167},{"hugoGeneSymbol":"SLC38A9","entrezGeneId":153129},{"hugoGeneSymbol":"SLC39A1","entrezGeneId":27173},{"hugoGeneSymbol":"SLC39A10","entrezGeneId":57181},{"hugoGeneSymbol":"SLC39A11","entrezGeneId":201266},{"hugoGeneSymbol":"SLC39A12","entrezGeneId":221074},{"hugoGeneSymbol":"SLC39A12-AS1","entrezGeneId":100129213},{"hugoGeneSymbol":"SLC39A13","entrezGeneId":91252},{"hugoGeneSymbol":"SLC39A14","entrezGeneId":23516},{"hugoGeneSymbol":"SLC39A2","entrezGeneId":29986},{"hugoGeneSymbol":"SLC39A3","entrezGeneId":29985},{"hugoGeneSymbol":"SLC39A4","entrezGeneId":55630},{"hugoGeneSymbol":"SLC39A5","entrezGeneId":283375},{"hugoGeneSymbol":"SLC39A6","entrezGeneId":25800},{"hugoGeneSymbol":"SLC39A7","entrezGeneId":7922},{"hugoGeneSymbol":"SLC39A8","entrezGeneId":64116},{"hugoGeneSymbol":"SLC39A9","entrezGeneId":55334},{"hugoGeneSymbol":"SLC3A1","entrezGeneId":6519},{"hugoGeneSymbol":"SLC3A2","entrezGeneId":6520},{"hugoGeneSymbol":"SLC40A1","entrezGeneId":30061},{"hugoGeneSymbol":"SLC41A1","entrezGeneId":254428},{"hugoGeneSymbol":"SLC41A2","entrezGeneId":84102},{"hugoGeneSymbol":"SLC41A3","entrezGeneId":54946},{"hugoGeneSymbol":"SLC43A1","entrezGeneId":8501},{"hugoGeneSymbol":"SLC43A2","entrezGeneId":124935},{"hugoGeneSymbol":"SLC43A3","entrezGeneId":29015},{"hugoGeneSymbol":"SLC44A1","entrezGeneId":23446},{"hugoGeneSymbol":"SLC44A2","entrezGeneId":57153},{"hugoGeneSymbol":"SLC44A3","entrezGeneId":126969},{"hugoGeneSymbol":"SLC44A3-AS1","entrezGeneId":101928079},{"hugoGeneSymbol":"SLC44A4","entrezGeneId":80736},{"hugoGeneSymbol":"SLC44A5","entrezGeneId":204962},{"hugoGeneSymbol":"SLC45A1","entrezGeneId":50651},{"hugoGeneSymbol":"SLC45A2","entrezGeneId":51151},{"hugoGeneSymbol":"SLC45A3","entrezGeneId":85414},{"hugoGeneSymbol":"SLC45A4","entrezGeneId":57210},{"hugoGeneSymbol":"SLC46A1","entrezGeneId":113235},{"hugoGeneSymbol":"SLC46A2","entrezGeneId":57864},{"hugoGeneSymbol":"SLC46A3","entrezGeneId":283537},{"hugoGeneSymbol":"SLC47A1","entrezGeneId":55244},{"hugoGeneSymbol":"SLC47A1P1","entrezGeneId":107075108},{"hugoGeneSymbol":"SLC47A2","entrezGeneId":146802},{"hugoGeneSymbol":"SLC48A1","entrezGeneId":55652},{"hugoGeneSymbol":"SLC49A3","entrezGeneId":84179},{"hugoGeneSymbol":"SLC4A1","entrezGeneId":6521},{"hugoGeneSymbol":"SLC4A10","entrezGeneId":57282},{"hugoGeneSymbol":"SLC4A11","entrezGeneId":83959},{"hugoGeneSymbol":"SLC4A1AP","entrezGeneId":22950},{"hugoGeneSymbol":"SLC4A1APP1","entrezGeneId":100288436},{"hugoGeneSymbol":"SLC4A1APP2","entrezGeneId":100422527},{"hugoGeneSymbol":"SLC4A2","entrezGeneId":6522},{"hugoGeneSymbol":"SLC4A3","entrezGeneId":6508},{"hugoGeneSymbol":"SLC4A4","entrezGeneId":8671},{"hugoGeneSymbol":"SLC4A5","entrezGeneId":57835},{"hugoGeneSymbol":"SLC4A7","entrezGeneId":9497},{"hugoGeneSymbol":"SLC4A8","entrezGeneId":9498},{"hugoGeneSymbol":"SLC4A9","entrezGeneId":83697},{"hugoGeneSymbol":"SLC50A1","entrezGeneId":55974},{"hugoGeneSymbol":"SLC51A","entrezGeneId":200931},{"hugoGeneSymbol":"SLC51B","entrezGeneId":123264},{"hugoGeneSymbol":"SLC52A1","entrezGeneId":55065},{"hugoGeneSymbol":"SLC52A2","entrezGeneId":79581},{"hugoGeneSymbol":"SLC52A3","entrezGeneId":113278},{"hugoGeneSymbol":"SLC5A1","entrezGeneId":6523},{"hugoGeneSymbol":"SLC5A10","entrezGeneId":125206},{"hugoGeneSymbol":"SLC5A11","entrezGeneId":115584},{"hugoGeneSymbol":"SLC5A12","entrezGeneId":159963},{"hugoGeneSymbol":"SLC5A2","entrezGeneId":6524},{"hugoGeneSymbol":"SLC5A3","entrezGeneId":6526},{"hugoGeneSymbol":"SLC5A4","entrezGeneId":6527},{"hugoGeneSymbol":"SLC5A4-AS1","entrezGeneId":110806273},{"hugoGeneSymbol":"SLC5A4P1","entrezGeneId":100422550},{"hugoGeneSymbol":"SLC5A5","entrezGeneId":6528},{"hugoGeneSymbol":"SLC5A6","entrezGeneId":8884},{"hugoGeneSymbol":"SLC5A7","entrezGeneId":60482},{"hugoGeneSymbol":"SLC5A8","entrezGeneId":160728},{"hugoGeneSymbol":"SLC5A9","entrezGeneId":200010},{"hugoGeneSymbol":"SLC6A1","entrezGeneId":6529},{"hugoGeneSymbol":"SLC6A1-AS1","entrezGeneId":100874090},{"hugoGeneSymbol":"SLC6A10P","entrezGeneId":386757},{"hugoGeneSymbol":"SLC6A10PB","entrezGeneId":653562},{"hugoGeneSymbol":"SLC6A11","entrezGeneId":6538},{"hugoGeneSymbol":"SLC6A12","entrezGeneId":6539},{"hugoGeneSymbol":"SLC6A13","entrezGeneId":6540},{"hugoGeneSymbol":"SLC6A14","entrezGeneId":11254},{"hugoGeneSymbol":"SLC6A15","entrezGeneId":55117},{"hugoGeneSymbol":"SLC6A16","entrezGeneId":28968},{"hugoGeneSymbol":"SLC6A17","entrezGeneId":388662},{"hugoGeneSymbol":"SLC6A18","entrezGeneId":348932},{"hugoGeneSymbol":"SLC6A19","entrezGeneId":340024},{"hugoGeneSymbol":"SLC6A2","entrezGeneId":6530},{"hugoGeneSymbol":"SLC6A20","entrezGeneId":54716},{"hugoGeneSymbol":"SLC6A21P","entrezGeneId":652969},{"hugoGeneSymbol":"SLC6A3","entrezGeneId":6531},{"hugoGeneSymbol":"SLC6A4","entrezGeneId":6532},{"hugoGeneSymbol":"SLC6A5","entrezGeneId":9152},{"hugoGeneSymbol":"SLC6A6","entrezGeneId":6533},{"hugoGeneSymbol":"SLC6A6P1","entrezGeneId":54019},{"hugoGeneSymbol":"SLC6A7","entrezGeneId":6534},{"hugoGeneSymbol":"SLC6A8","entrezGeneId":6535},{"hugoGeneSymbol":"SLC6A9","entrezGeneId":6536},{"hugoGeneSymbol":"SLC7A1","entrezGeneId":6541},{"hugoGeneSymbol":"SLC7A10","entrezGeneId":56301},{"hugoGeneSymbol":"SLC7A11","entrezGeneId":23657},{"hugoGeneSymbol":"SLC7A11-AS1","entrezGeneId":641364},{"hugoGeneSymbol":"SLC7A13","entrezGeneId":157724},{"hugoGeneSymbol":"SLC7A14","entrezGeneId":57709},{"hugoGeneSymbol":"SLC7A15P","entrezGeneId":100289450},{"hugoGeneSymbol":"SLC7A2","entrezGeneId":6542},{"hugoGeneSymbol":"SLC7A3","entrezGeneId":84889},{"hugoGeneSymbol":"SLC7A4","entrezGeneId":6545},{"hugoGeneSymbol":"SLC7A5","entrezGeneId":8140},{"hugoGeneSymbol":"SLC7A5P1","entrezGeneId":81893},{"hugoGeneSymbol":"SLC7A5P2","entrezGeneId":387254},{"hugoGeneSymbol":"SLC7A6","entrezGeneId":9057},{"hugoGeneSymbol":"SLC7A6OS","entrezGeneId":84138},{"hugoGeneSymbol":"SLC7A7","entrezGeneId":9056},{"hugoGeneSymbol":"SLC7A8","entrezGeneId":23428},{"hugoGeneSymbol":"SLC7A9","entrezGeneId":11136},{"hugoGeneSymbol":"SLC8A1","entrezGeneId":6546},{"hugoGeneSymbol":"SLC8A1-AS1","entrezGeneId":100128590},{"hugoGeneSymbol":"SLC8A2","entrezGeneId":6543},{"hugoGeneSymbol":"SLC8A3","entrezGeneId":6547},{"hugoGeneSymbol":"SLC8B1","entrezGeneId":80024},{"hugoGeneSymbol":"SLC9A1","entrezGeneId":6548},{"hugoGeneSymbol":"SLC9A2","entrezGeneId":6549},{"hugoGeneSymbol":"SLC9A3","entrezGeneId":6550},{"hugoGeneSymbol":"SLC9A3-AS1","entrezGeneId":100288152},{"hugoGeneSymbol":"SLC9A3P1","entrezGeneId":6551},{"hugoGeneSymbol":"SLC9A3P2","entrezGeneId":128997},{"hugoGeneSymbol":"SLC9A3P3","entrezGeneId":728990},{"hugoGeneSymbol":"SLC9A3R1","entrezGeneId":9368},{"hugoGeneSymbol":"SLC9A3R2","entrezGeneId":9351},{"hugoGeneSymbol":"SLC9A4","entrezGeneId":389015},{"hugoGeneSymbol":"SLC9A5","entrezGeneId":6553},{"hugoGeneSymbol":"SLC9A6","entrezGeneId":10479},{"hugoGeneSymbol":"SLC9A7","entrezGeneId":84679},{"hugoGeneSymbol":"SLC9A7P1","entrezGeneId":121456},{"hugoGeneSymbol":"SLC9A8","entrezGeneId":23315},{"hugoGeneSymbol":"SLC9A9","entrezGeneId":285195},{"hugoGeneSymbol":"SLC9A9-AS1","entrezGeneId":100885796},{"hugoGeneSymbol":"SLC9A9-AS2","entrezGeneId":106480356},{"hugoGeneSymbol":"SLC9B1","entrezGeneId":150159},{"hugoGeneSymbol":"SLC9B1P1","entrezGeneId":100128190},{"hugoGeneSymbol":"SLC9B1P2","entrezGeneId":389000},{"hugoGeneSymbol":"SLC9B1P3","entrezGeneId":100421008},{"hugoGeneSymbol":"SLC9B1P4","entrezGeneId":644768},{"hugoGeneSymbol":"SLC9B1P5","entrezGeneId":100533705},{"hugoGeneSymbol":"SLC9B2","entrezGeneId":133308},{"hugoGeneSymbol":"SLC9C1","entrezGeneId":285335},{"hugoGeneSymbol":"SLC9C2","entrezGeneId":284525},{"hugoGeneSymbol":"SLCO1A2","entrezGeneId":6579},{"hugoGeneSymbol":"SLCO1B1","entrezGeneId":10599},{"hugoGeneSymbol":"SLCO1B3","entrezGeneId":28234},{"hugoGeneSymbol":"SLCO1B7","entrezGeneId":338821},{"hugoGeneSymbol":"SLCO1C1","entrezGeneId":53919},{"hugoGeneSymbol":"SLCO2A1","entrezGeneId":6578},{"hugoGeneSymbol":"SLCO2B1","entrezGeneId":11309},{"hugoGeneSymbol":"SLCO3A1","entrezGeneId":28232},{"hugoGeneSymbol":"SLCO4A1","entrezGeneId":28231},{"hugoGeneSymbol":"SLCO4A1-AS1","entrezGeneId":100127888},{"hugoGeneSymbol":"SLCO4C1","entrezGeneId":353189},{"hugoGeneSymbol":"SLCO5A1","entrezGeneId":81796},{"hugoGeneSymbol":"SLCO6A1","entrezGeneId":133482},{"hugoGeneSymbol":"SLEB12","entrezGeneId":100190928},{"hugoGeneSymbol":"SLEB13","entrezGeneId":100196918},{"hugoGeneSymbol":"SLEB14","entrezGeneId":100322878},{"hugoGeneSymbol":"SLEB15","entrezGeneId":100379200},{"hugoGeneSymbol":"SLEB3","entrezGeneId":64695},{"hugoGeneSymbol":"SLEB4","entrezGeneId":404714},{"hugoGeneSymbol":"SLEB5","entrezGeneId":100188798},{"hugoGeneSymbol":"SLEB7","entrezGeneId":100188803},{"hugoGeneSymbol":"SLEB8","entrezGeneId":100188804},{"hugoGeneSymbol":"SLED1","entrezGeneId":643036},{"hugoGeneSymbol":"SLEH1","entrezGeneId":170682},{"hugoGeneSymbol":"SLEN1","entrezGeneId":192677},{"hugoGeneSymbol":"SLEN2","entrezGeneId":192679},{"hugoGeneSymbol":"SLEN3","entrezGeneId":282849},{"hugoGeneSymbol":"SLEP1","entrezGeneId":544650},{"hugoGeneSymbol":"SLEP2","entrezGeneId":544631},{"hugoGeneSymbol":"SLEP3","entrezGeneId":553140},{"hugoGeneSymbol":"SLF1","entrezGeneId":84250},{"hugoGeneSymbol":"SLF2","entrezGeneId":55719},{"hugoGeneSymbol":"SLFN11","entrezGeneId":91607},{"hugoGeneSymbol":"SLFN12","entrezGeneId":55106},{"hugoGeneSymbol":"SLFN12L","entrezGeneId":100506736},{"hugoGeneSymbol":"SLFN13","entrezGeneId":146857},{"hugoGeneSymbol":"SLFN14","entrezGeneId":342618},{"hugoGeneSymbol":"SLFN5","entrezGeneId":162394},{"hugoGeneSymbol":"SLFNL1","entrezGeneId":200172},{"hugoGeneSymbol":"SLFNL1-AS1","entrezGeneId":100507178},{"hugoGeneSymbol":"SLI1","entrezGeneId":171013},{"hugoGeneSymbol":"SLI2","entrezGeneId":171014},{"hugoGeneSymbol":"SLI3","entrezGeneId":780906},{"hugoGeneSymbol":"SLI4","entrezGeneId":100233227},{"hugoGeneSymbol":"SLIRP","entrezGeneId":81892},{"hugoGeneSymbol":"SLIT1","entrezGeneId":6585},{"hugoGeneSymbol":"SLIT1-AS1","entrezGeneId":100505540},{"hugoGeneSymbol":"SLIT2","entrezGeneId":9353},{"hugoGeneSymbol":"SLIT2-IT1","entrezGeneId":100505893},{"hugoGeneSymbol":"SLIT3","entrezGeneId":6586},{"hugoGeneSymbol":"SLITRK1","entrezGeneId":114798},{"hugoGeneSymbol":"SLITRK2","entrezGeneId":84631},{"hugoGeneSymbol":"SLITRK3","entrezGeneId":22865},{"hugoGeneSymbol":"SLITRK4","entrezGeneId":139065},{"hugoGeneSymbol":"SLITRK5","entrezGeneId":26050},{"hugoGeneSymbol":"SLITRK6","entrezGeneId":84189},{"hugoGeneSymbol":"SLK","entrezGeneId":9748},{"hugoGeneSymbol":"SLMAP","entrezGeneId":7871},{"hugoGeneSymbol":"SLMO2-ATP5E","entrezGeneId":100533975},{"hugoGeneSymbol":"SLN","entrezGeneId":6588},{"hugoGeneSymbol":"SLPI","entrezGeneId":6590},{"hugoGeneSymbol":"SLSN3","entrezGeneId":260432},{"hugoGeneSymbol":"SLTM","entrezGeneId":79811},{"hugoGeneSymbol":"SLU7","entrezGeneId":10569},{"hugoGeneSymbol":"SLURP1","entrezGeneId":57152},{"hugoGeneSymbol":"SLURP2","entrezGeneId":432355},{"hugoGeneSymbol":"SLX1A","entrezGeneId":548593},{"hugoGeneSymbol":"SLX1A-SULT1A3","entrezGeneId":100526830},{"hugoGeneSymbol":"SLX1B","entrezGeneId":79008},{"hugoGeneSymbol":"SLX1B-SULT1A4","entrezGeneId":100526831},{"hugoGeneSymbol":"SLX4","entrezGeneId":84464},{"hugoGeneSymbol":"SLX4IP","entrezGeneId":128710},{"hugoGeneSymbol":"SM1","entrezGeneId":7911},{"hugoGeneSymbol":"SM2","entrezGeneId":53366},{"hugoGeneSymbol":"SMA4","entrezGeneId":11039},{"hugoGeneSymbol":"SMA5","entrezGeneId":11042},{"hugoGeneSymbol":"SMAD1","entrezGeneId":4086},{"hugoGeneSymbol":"SMAD1-AS1","entrezGeneId":104326058},{"hugoGeneSymbol":"SMAD1-AS2","entrezGeneId":101927659},{"hugoGeneSymbol":"SMAD2","entrezGeneId":4087},{"hugoGeneSymbol":"SMAD3","entrezGeneId":4088},{"hugoGeneSymbol":"SMAD4","entrezGeneId":4089},{"hugoGeneSymbol":"SMAD5","entrezGeneId":4090},{"hugoGeneSymbol":"SMAD5-AS1","entrezGeneId":9597},{"hugoGeneSymbol":"SMAD6","entrezGeneId":4091},{"hugoGeneSymbol":"SMAD7","entrezGeneId":4092},{"hugoGeneSymbol":"SMAD9","entrezGeneId":4093},{"hugoGeneSymbol":"SMAD9-IT1","entrezGeneId":100874072},{"hugoGeneSymbol":"SMAGP","entrezGeneId":57228},{"hugoGeneSymbol":"SMAJ","entrezGeneId":101241900},{"hugoGeneSymbol":"SMAL","entrezGeneId":8094},{"hugoGeneSymbol":"SMAN1","entrezGeneId":574013},{"hugoGeneSymbol":"SMAP1","entrezGeneId":60682},{"hugoGeneSymbol":"SMAP2","entrezGeneId":64744},{"hugoGeneSymbol":"SMAR","entrezGeneId":246751},{"hugoGeneSymbol":"SMARCA1","entrezGeneId":6594},{"hugoGeneSymbol":"SMARCA2","entrezGeneId":6595},{"hugoGeneSymbol":"SMARCA4","entrezGeneId":6597},{"hugoGeneSymbol":"SMARCA5","entrezGeneId":8467},{"hugoGeneSymbol":"SMARCA5-AS1","entrezGeneId":100128055},{"hugoGeneSymbol":"SMARCAD1","entrezGeneId":56916},{"hugoGeneSymbol":"SMARCAL1","entrezGeneId":50485},{"hugoGeneSymbol":"SMARCB1","entrezGeneId":6598},{"hugoGeneSymbol":"SMARCC1","entrezGeneId":6599},{"hugoGeneSymbol":"SMARCC2","entrezGeneId":6601},{"hugoGeneSymbol":"SMARCD1","entrezGeneId":6602},{"hugoGeneSymbol":"SMARCD2","entrezGeneId":6603},{"hugoGeneSymbol":"SMARCD3","entrezGeneId":6604},{"hugoGeneSymbol":"SMARCE1","entrezGeneId":6605},{"hugoGeneSymbol":"SMARCE1P1","entrezGeneId":100271884},{"hugoGeneSymbol":"SMARCE1P2","entrezGeneId":442233},{"hugoGeneSymbol":"SMARCE1P3","entrezGeneId":401744},{"hugoGeneSymbol":"SMARCE1P4","entrezGeneId":642879},{"hugoGeneSymbol":"SMARCE1P5","entrezGeneId":400129},{"hugoGeneSymbol":"SMARCE1P6","entrezGeneId":646196},{"hugoGeneSymbol":"SMARCE1P7","entrezGeneId":106481716},{"hugoGeneSymbol":"SMBD1P","entrezGeneId":111674481},{"hugoGeneSymbol":"SMC1A","entrezGeneId":8243},{"hugoGeneSymbol":"SMC1B","entrezGeneId":27127},{"hugoGeneSymbol":"SMC2","entrezGeneId":10592},{"hugoGeneSymbol":"SMC2-AS1","entrezGeneId":101928550},{"hugoGeneSymbol":"SMC3","entrezGeneId":9126},{"hugoGeneSymbol":"SMC4","entrezGeneId":10051},{"hugoGeneSymbol":"SMC4P1","entrezGeneId":100421125},{"hugoGeneSymbol":"SMC5","entrezGeneId":23137},{"hugoGeneSymbol":"SMC5-AS1","entrezGeneId":100507299},{"hugoGeneSymbol":"SMC6","entrezGeneId":79677},{"hugoGeneSymbol":"SMCHD1","entrezGeneId":23347},{"hugoGeneSymbol":"SMCO1","entrezGeneId":255798},{"hugoGeneSymbol":"SMCO2","entrezGeneId":341346},{"hugoGeneSymbol":"SMCO3","entrezGeneId":440087},{"hugoGeneSymbol":"SMCO4","entrezGeneId":56935},{"hugoGeneSymbol":"SMCO4P1","entrezGeneId":728675},{"hugoGeneSymbol":"SMCP","entrezGeneId":4184},{"hugoGeneSymbol":"SMCR2","entrezGeneId":105371564},{"hugoGeneSymbol":"SMCR5","entrezGeneId":140771},{"hugoGeneSymbol":"SMCR6","entrezGeneId":140772},{"hugoGeneSymbol":"SMCR8","entrezGeneId":140775},{"hugoGeneSymbol":"SMDT1","entrezGeneId":91689},{"hugoGeneSymbol":"SMG1","entrezGeneId":23049},{"hugoGeneSymbol":"SMG1P1","entrezGeneId":641298},{"hugoGeneSymbol":"SMG1P2","entrezGeneId":440354},{"hugoGeneSymbol":"SMG1P3","entrezGeneId":100271836},{"hugoGeneSymbol":"SMG1P4","entrezGeneId":100507526},{"hugoGeneSymbol":"SMG1P5","entrezGeneId":595101},{"hugoGeneSymbol":"SMG1P6","entrezGeneId":100422558},{"hugoGeneSymbol":"SMG1P7","entrezGeneId":100506060},{"hugoGeneSymbol":"SMG5","entrezGeneId":23381},{"hugoGeneSymbol":"SMG6","entrezGeneId":23293},{"hugoGeneSymbol":"SMG6-IT1","entrezGeneId":53400},{"hugoGeneSymbol":"SMG7","entrezGeneId":9887},{"hugoGeneSymbol":"SMG7-AS1","entrezGeneId":284649},{"hugoGeneSymbol":"SMG8","entrezGeneId":55181},{"hugoGeneSymbol":"SMG9","entrezGeneId":56006},{"hugoGeneSymbol":"SMILR","entrezGeneId":105375734},{"hugoGeneSymbol":"SMIM1","entrezGeneId":388588},{"hugoGeneSymbol":"SMIM10","entrezGeneId":644538},{"hugoGeneSymbol":"SMIM10L1","entrezGeneId":100129361},{"hugoGeneSymbol":"SMIM10L2A","entrezGeneId":399668},{"hugoGeneSymbol":"SMIM10L2B","entrezGeneId":644596},{"hugoGeneSymbol":"SMIM10L2B-AS1","entrezGeneId":100287728},{"hugoGeneSymbol":"SMIM11A","entrezGeneId":54065},{"hugoGeneSymbol":"SMIM11B","entrezGeneId":102723553},{"hugoGeneSymbol":"SMIM11P1","entrezGeneId":100127905},{"hugoGeneSymbol":"SMIM12","entrezGeneId":113444},{"hugoGeneSymbol":"SMIM12P1","entrezGeneId":100288503},{"hugoGeneSymbol":"SMIM13","entrezGeneId":221710},{"hugoGeneSymbol":"SMIM14","entrezGeneId":201895},{"hugoGeneSymbol":"SMIM15","entrezGeneId":643155},{"hugoGeneSymbol":"SMIM15-AS1","entrezGeneId":101928630},{"hugoGeneSymbol":"SMIM17","entrezGeneId":147670},{"hugoGeneSymbol":"SMIM18","entrezGeneId":100507341},{"hugoGeneSymbol":"SMIM19","entrezGeneId":114926},{"hugoGeneSymbol":"SMIM2","entrezGeneId":79024},{"hugoGeneSymbol":"SMIM2-AS1","entrezGeneId":101929212},{"hugoGeneSymbol":"SMIM2-IT1","entrezGeneId":100874377},{"hugoGeneSymbol":"SMIM20","entrezGeneId":389203},{"hugoGeneSymbol":"SMIM21","entrezGeneId":284274},{"hugoGeneSymbol":"SMIM22","entrezGeneId":440335},{"hugoGeneSymbol":"SMIM23","entrezGeneId":644994},{"hugoGeneSymbol":"SMIM24","entrezGeneId":284422},{"hugoGeneSymbol":"SMIM25","entrezGeneId":100506115},{"hugoGeneSymbol":"SMIM26","entrezGeneId":388789},{"hugoGeneSymbol":"SMIM27","entrezGeneId":100129250},{"hugoGeneSymbol":"SMIM28","entrezGeneId":110806279},{"hugoGeneSymbol":"SMIM29","entrezGeneId":221491},{"hugoGeneSymbol":"SMIM3","entrezGeneId":85027},{"hugoGeneSymbol":"SMIM30","entrezGeneId":401397},{"hugoGeneSymbol":"SMIM31","entrezGeneId":100505989},{"hugoGeneSymbol":"SMIM32","entrezGeneId":389332},{"hugoGeneSymbol":"SMIM33","entrezGeneId":111064649},{"hugoGeneSymbol":"SMIM34A","entrezGeneId":388820},{"hugoGeneSymbol":"SMIM34B","entrezGeneId":107983987},{"hugoGeneSymbol":"SMIM35","entrezGeneId":100526771},{"hugoGeneSymbol":"SMIM36","entrezGeneId":111064648},{"hugoGeneSymbol":"SMIM37","entrezGeneId":205251},{"hugoGeneSymbol":"SMIM4","entrezGeneId":440957},{"hugoGeneSymbol":"SMIM5","entrezGeneId":643008},{"hugoGeneSymbol":"SMIM6","entrezGeneId":100130933},{"hugoGeneSymbol":"SMIM7","entrezGeneId":79086},{"hugoGeneSymbol":"SMIM8","entrezGeneId":57150},{"hugoGeneSymbol":"SMIM9","entrezGeneId":100132963},{"hugoGeneSymbol":"SMKR1","entrezGeneId":100287482},{"hugoGeneSymbol":"SMLR1","entrezGeneId":100507203},{"hugoGeneSymbol":"SMN1","entrezGeneId":6606},{"hugoGeneSymbol":"SMN2","entrezGeneId":6607},{"hugoGeneSymbol":"SMNDC1","entrezGeneId":10285},{"hugoGeneSymbol":"SMNP","entrezGeneId":64939},{"hugoGeneSymbol":"SMO","entrezGeneId":6608},{"hugoGeneSymbol":"SMOC1","entrezGeneId":64093},{"hugoGeneSymbol":"SMOC2","entrezGeneId":64094},{"hugoGeneSymbol":"SMOX","entrezGeneId":54498},{"hugoGeneSymbol":"SMPD1","entrezGeneId":6609},{"hugoGeneSymbol":"SMPD2","entrezGeneId":6610},{"hugoGeneSymbol":"SMPD3","entrezGeneId":55512},{"hugoGeneSymbol":"SMPD4","entrezGeneId":55627},{"hugoGeneSymbol":"SMPD4P1","entrezGeneId":645280},{"hugoGeneSymbol":"SMPD4P2","entrezGeneId":441654},{"hugoGeneSymbol":"SMPD5","entrezGeneId":392275},{"hugoGeneSymbol":"SMPDL3A","entrezGeneId":10924},{"hugoGeneSymbol":"SMPDL3B","entrezGeneId":27293},{"hugoGeneSymbol":"SMPX","entrezGeneId":23676},{"hugoGeneSymbol":"SMR3A","entrezGeneId":26952},{"hugoGeneSymbol":"SMR3B","entrezGeneId":10879},{"hugoGeneSymbol":"SMS","entrezGeneId":6611},{"hugoGeneSymbol":"SMTN","entrezGeneId":6525},{"hugoGeneSymbol":"SMTNL1","entrezGeneId":219537},{"hugoGeneSymbol":"SMTNL2","entrezGeneId":342527},{"hugoGeneSymbol":"SMU1","entrezGeneId":55234},{"hugoGeneSymbol":"SMUG1","entrezGeneId":23583},{"hugoGeneSymbol":"SMUG1-AS1","entrezGeneId":105369776},{"hugoGeneSymbol":"SMUG1P1","entrezGeneId":100129143},{"hugoGeneSymbol":"SMURF1","entrezGeneId":57154},{"hugoGeneSymbol":"SMURF2","entrezGeneId":64750},{"hugoGeneSymbol":"SMURF2P1","entrezGeneId":107133516},{"hugoGeneSymbol":"SMURF2P1-LRRC37BP1","entrezGeneId":107133515},{"hugoGeneSymbol":"SMYD1","entrezGeneId":150572},{"hugoGeneSymbol":"SMYD2","entrezGeneId":56950},{"hugoGeneSymbol":"SMYD3","entrezGeneId":64754},{"hugoGeneSymbol":"SMYD3-IT1","entrezGeneId":106478975},{"hugoGeneSymbol":"SMYD4","entrezGeneId":114826},{"hugoGeneSymbol":"SMYD5","entrezGeneId":10322},{"hugoGeneSymbol":"SNAI1","entrezGeneId":6615},{"hugoGeneSymbol":"SNAI1P1","entrezGeneId":10415},{"hugoGeneSymbol":"SNAI2","entrezGeneId":6591},{"hugoGeneSymbol":"SNAI3","entrezGeneId":333929},{"hugoGeneSymbol":"SNAI3-AS1","entrezGeneId":197187},{"hugoGeneSymbol":"SNAP23","entrezGeneId":8773},{"hugoGeneSymbol":"SNAP23P1","entrezGeneId":101290500},{"hugoGeneSymbol":"SNAP25","entrezGeneId":6616},{"hugoGeneSymbol":"SNAP25-AS1","entrezGeneId":100131208},{"hugoGeneSymbol":"SNAP29","entrezGeneId":9342},{"hugoGeneSymbol":"SNAP47","entrezGeneId":116841},{"hugoGeneSymbol":"SNAP47-AS1","entrezGeneId":100885800},{"hugoGeneSymbol":"SNAP91","entrezGeneId":9892},{"hugoGeneSymbol":"SNAPC1","entrezGeneId":6617},{"hugoGeneSymbol":"SNAPC2","entrezGeneId":6618},{"hugoGeneSymbol":"SNAPC3","entrezGeneId":6619},{"hugoGeneSymbol":"SNAPC4","entrezGeneId":6621},{"hugoGeneSymbol":"SNAPC5","entrezGeneId":10302},{"hugoGeneSymbol":"SNAPC5P1","entrezGeneId":100750245},{"hugoGeneSymbol":"SNAPIN","entrezGeneId":23557},{"hugoGeneSymbol":"SNAR-A1","entrezGeneId":100126798},{"hugoGeneSymbol":"SNAR-A10","entrezGeneId":100170216},{"hugoGeneSymbol":"SNAR-A11","entrezGeneId":100169954},{"hugoGeneSymbol":"SNAR-A12","entrezGeneId":100126800},{"hugoGeneSymbol":"SNAR-A13","entrezGeneId":100169959},{"hugoGeneSymbol":"SNAR-A14","entrezGeneId":100191063},{"hugoGeneSymbol":"SNAR-A2","entrezGeneId":100126799},{"hugoGeneSymbol":"SNAR-A3","entrezGeneId":100169951},{"hugoGeneSymbol":"SNAR-A4","entrezGeneId":100169956},{"hugoGeneSymbol":"SNAR-A5","entrezGeneId":100169952},{"hugoGeneSymbol":"SNAR-A6","entrezGeneId":100169957},{"hugoGeneSymbol":"SNAR-A7","entrezGeneId":100169953},{"hugoGeneSymbol":"SNAR-A8","entrezGeneId":100169958},{"hugoGeneSymbol":"SNAR-A9","entrezGeneId":100169955},{"hugoGeneSymbol":"SNAR-B1","entrezGeneId":100170224},{"hugoGeneSymbol":"SNAR-B2","entrezGeneId":100170217},{"hugoGeneSymbol":"SNAR-C1","entrezGeneId":100170225},{"hugoGeneSymbol":"SNAR-C2","entrezGeneId":100170218},{"hugoGeneSymbol":"SNAR-C3","entrezGeneId":100170226},{"hugoGeneSymbol":"SNAR-C4","entrezGeneId":100170219},{"hugoGeneSymbol":"SNAR-C5","entrezGeneId":100170223},{"hugoGeneSymbol":"SNAR-D","entrezGeneId":100170227},{"hugoGeneSymbol":"SNAR-E","entrezGeneId":100170220},{"hugoGeneSymbol":"SNAR-F","entrezGeneId":100126781},{"hugoGeneSymbol":"SNAR-G1","entrezGeneId":100126780},{"hugoGeneSymbol":"SNAR-G2","entrezGeneId":100170228},{"hugoGeneSymbol":"SNAR-H","entrezGeneId":100170221},{"hugoGeneSymbol":"SNAR-I","entrezGeneId":100170222},{"hugoGeneSymbol":"SNCA","entrezGeneId":6622},{"hugoGeneSymbol":"SNCA-AS1","entrezGeneId":644248},{"hugoGeneSymbol":"SNCAIP","entrezGeneId":9627},{"hugoGeneSymbol":"SNCB","entrezGeneId":6620},{"hugoGeneSymbol":"SNCG","entrezGeneId":6623},{"hugoGeneSymbol":"SND1","entrezGeneId":27044},{"hugoGeneSymbol":"SND1-IT1","entrezGeneId":27099},{"hugoGeneSymbol":"SNED1","entrezGeneId":25992},{"hugoGeneSymbol":"SNF8","entrezGeneId":11267},{"hugoGeneSymbol":"SNHG1","entrezGeneId":23642},{"hugoGeneSymbol":"SNHG10","entrezGeneId":283596},{"hugoGeneSymbol":"SNHG11","entrezGeneId":128439},{"hugoGeneSymbol":"SNHG12","entrezGeneId":85028},{"hugoGeneSymbol":"SNHG14","entrezGeneId":104472715},{"hugoGeneSymbol":"SNHG15","entrezGeneId":285958},{"hugoGeneSymbol":"SNHG16","entrezGeneId":100507246},{"hugoGeneSymbol":"SNHG17","entrezGeneId":388796},{"hugoGeneSymbol":"SNHG18","entrezGeneId":100505806},{"hugoGeneSymbol":"SNHG19","entrezGeneId":100507303},{"hugoGeneSymbol":"SNHG20","entrezGeneId":654434},{"hugoGeneSymbol":"SNHG21","entrezGeneId":100505616},{"hugoGeneSymbol":"SNHG22","entrezGeneId":103091864},{"hugoGeneSymbol":"SNHG25","entrezGeneId":105376843},{"hugoGeneSymbol":"SNHG26","entrezGeneId":109729180},{"hugoGeneSymbol":"SNHG27","entrezGeneId":101927305},{"hugoGeneSymbol":"SNHG28","entrezGeneId":284677},{"hugoGeneSymbol":"SNHG3","entrezGeneId":8420},{"hugoGeneSymbol":"SNHG4","entrezGeneId":724102},{"hugoGeneSymbol":"SNHG5","entrezGeneId":387066},{"hugoGeneSymbol":"SNHG6","entrezGeneId":641638},{"hugoGeneSymbol":"SNHG7","entrezGeneId":84973},{"hugoGeneSymbol":"SNHG8","entrezGeneId":100093630},{"hugoGeneSymbol":"SNHG9","entrezGeneId":735301},{"hugoGeneSymbol":"SNIP1","entrezGeneId":79753},{"hugoGeneSymbol":"SNN","entrezGeneId":8303},{"hugoGeneSymbol":"SNORA1","entrezGeneId":677792},{"hugoGeneSymbol":"SNORA10","entrezGeneId":574042},{"hugoGeneSymbol":"SNORA100","entrezGeneId":106635532},{"hugoGeneSymbol":"SNORA101A","entrezGeneId":107399301},{"hugoGeneSymbol":"SNORA101B","entrezGeneId":107399303},{"hugoGeneSymbol":"SNORA103","entrezGeneId":106635533},{"hugoGeneSymbol":"SNORA104","entrezGeneId":106635534},{"hugoGeneSymbol":"SNORA105A","entrezGeneId":106635539},{"hugoGeneSymbol":"SNORA105B","entrezGeneId":106635540},{"hugoGeneSymbol":"SNORA105C","entrezGeneId":106635541},{"hugoGeneSymbol":"SNORA107","entrezGeneId":106635542},{"hugoGeneSymbol":"SNORA108","entrezGeneId":106635543},{"hugoGeneSymbol":"SNORA109","entrezGeneId":106635544},{"hugoGeneSymbol":"SNORA10B","entrezGeneId":109616960},{"hugoGeneSymbol":"SNORA11","entrezGeneId":677799},{"hugoGeneSymbol":"SNORA110","entrezGeneId":106635545},{"hugoGeneSymbol":"SNORA111","entrezGeneId":106635546},{"hugoGeneSymbol":"SNORA112","entrezGeneId":109623481},{"hugoGeneSymbol":"SNORA113","entrezGeneId":109623461},{"hugoGeneSymbol":"SNORA114","entrezGeneId":109623488},{"hugoGeneSymbol":"SNORA115","entrezGeneId":109623482},{"hugoGeneSymbol":"SNORA116","entrezGeneId":109623462},{"hugoGeneSymbol":"SNORA117","entrezGeneId":109623463},{"hugoGeneSymbol":"SNORA118","entrezGeneId":109623483},{"hugoGeneSymbol":"SNORA119","entrezGeneId":109623464},{"hugoGeneSymbol":"SNORA11B","entrezGeneId":100124539},{"hugoGeneSymbol":"SNORA11C","entrezGeneId":100124540},{"hugoGeneSymbol":"SNORA11D","entrezGeneId":100124541},{"hugoGeneSymbol":"SNORA11E","entrezGeneId":101340250},{"hugoGeneSymbol":"SNORA11F","entrezGeneId":109617000},{"hugoGeneSymbol":"SNORA11G","entrezGeneId":109616961},{"hugoGeneSymbol":"SNORA12","entrezGeneId":677800},{"hugoGeneSymbol":"SNORA120","entrezGeneId":109729112},{"hugoGeneSymbol":"SNORA13","entrezGeneId":654322},{"hugoGeneSymbol":"SNORA14A","entrezGeneId":677801},{"hugoGeneSymbol":"SNORA14B","entrezGeneId":677802},{"hugoGeneSymbol":"SNORA15","entrezGeneId":677803},{"hugoGeneSymbol":"SNORA15B-1","entrezGeneId":109616962},{"hugoGeneSymbol":"SNORA15B-2","entrezGeneId":109617022},{"hugoGeneSymbol":"SNORA16A","entrezGeneId":692073},{"hugoGeneSymbol":"SNORA16B","entrezGeneId":692157},{"hugoGeneSymbol":"SNORA17A","entrezGeneId":677804},{"hugoGeneSymbol":"SNORA17B","entrezGeneId":677824},{"hugoGeneSymbol":"SNORA18","entrezGeneId":677805},{"hugoGeneSymbol":"SNORA19","entrezGeneId":641451},{"hugoGeneSymbol":"SNORA1B","entrezGeneId":109617001},{"hugoGeneSymbol":"SNORA20","entrezGeneId":677806},{"hugoGeneSymbol":"SNORA20B","entrezGeneId":109616963},{"hugoGeneSymbol":"SNORA21","entrezGeneId":619505},{"hugoGeneSymbol":"SNORA21B","entrezGeneId":109617002},{"hugoGeneSymbol":"SNORA22","entrezGeneId":677807},{"hugoGeneSymbol":"SNORA22B","entrezGeneId":109616964},{"hugoGeneSymbol":"SNORA22C","entrezGeneId":109616965},{"hugoGeneSymbol":"SNORA23","entrezGeneId":677808},{"hugoGeneSymbol":"SNORA24","entrezGeneId":677809},{"hugoGeneSymbol":"SNORA24B","entrezGeneId":109617003},{"hugoGeneSymbol":"SNORA25","entrezGeneId":684959},{"hugoGeneSymbol":"SNORA25B","entrezGeneId":109623459},{"hugoGeneSymbol":"SNORA26","entrezGeneId":677810},{"hugoGeneSymbol":"SNORA27","entrezGeneId":619499},{"hugoGeneSymbol":"SNORA28","entrezGeneId":677811},{"hugoGeneSymbol":"SNORA29","entrezGeneId":677812},{"hugoGeneSymbol":"SNORA2A","entrezGeneId":677793},{"hugoGeneSymbol":"SNORA2B","entrezGeneId":677794},{"hugoGeneSymbol":"SNORA2C","entrezGeneId":677815},{"hugoGeneSymbol":"SNORA30","entrezGeneId":677813},{"hugoGeneSymbol":"SNORA30B","entrezGeneId":109616992},{"hugoGeneSymbol":"SNORA31","entrezGeneId":677814},{"hugoGeneSymbol":"SNORA31B","entrezGeneId":109616966},{"hugoGeneSymbol":"SNORA32","entrezGeneId":692063},{"hugoGeneSymbol":"SNORA33","entrezGeneId":594839},{"hugoGeneSymbol":"SNORA35","entrezGeneId":677816},{"hugoGeneSymbol":"SNORA35B","entrezGeneId":109617004},{"hugoGeneSymbol":"SNORA36A","entrezGeneId":677817},{"hugoGeneSymbol":"SNORA36B","entrezGeneId":677818},{"hugoGeneSymbol":"SNORA36C","entrezGeneId":100124535},{"hugoGeneSymbol":"SNORA37","entrezGeneId":677819},{"hugoGeneSymbol":"SNORA38","entrezGeneId":677820},{"hugoGeneSymbol":"SNORA38B","entrezGeneId":100124536},{"hugoGeneSymbol":"SNORA3A","entrezGeneId":619562},{"hugoGeneSymbol":"SNORA3B","entrezGeneId":677826},{"hugoGeneSymbol":"SNORA3C","entrezGeneId":109616997},{"hugoGeneSymbol":"SNORA4","entrezGeneId":619568},{"hugoGeneSymbol":"SNORA40","entrezGeneId":677822},{"hugoGeneSymbol":"SNORA40B","entrezGeneId":109616967},{"hugoGeneSymbol":"SNORA40C","entrezGeneId":109616968},{"hugoGeneSymbol":"SNORA41","entrezGeneId":619569},{"hugoGeneSymbol":"SNORA41B","entrezGeneId":109617005},{"hugoGeneSymbol":"SNORA44","entrezGeneId":677825},{"hugoGeneSymbol":"SNORA46","entrezGeneId":677827},{"hugoGeneSymbol":"SNORA47","entrezGeneId":677828},{"hugoGeneSymbol":"SNORA48","entrezGeneId":652965},{"hugoGeneSymbol":"SNORA48B","entrezGeneId":109616969},{"hugoGeneSymbol":"SNORA49","entrezGeneId":677829},{"hugoGeneSymbol":"SNORA50A","entrezGeneId":677830},{"hugoGeneSymbol":"SNORA50B","entrezGeneId":109616998},{"hugoGeneSymbol":"SNORA50C","entrezGeneId":677842},{"hugoGeneSymbol":"SNORA50D","entrezGeneId":109616958},{"hugoGeneSymbol":"SNORA51","entrezGeneId":677831},{"hugoGeneSymbol":"SNORA52","entrezGeneId":619565},{"hugoGeneSymbol":"SNORA53","entrezGeneId":677832},{"hugoGeneSymbol":"SNORA54","entrezGeneId":677833},{"hugoGeneSymbol":"SNORA55","entrezGeneId":677834},{"hugoGeneSymbol":"SNORA56","entrezGeneId":677835},{"hugoGeneSymbol":"SNORA57","entrezGeneId":692158},{"hugoGeneSymbol":"SNORA58","entrezGeneId":677836},{"hugoGeneSymbol":"SNORA58B","entrezGeneId":109617023},{"hugoGeneSymbol":"SNORA59A","entrezGeneId":677885},{"hugoGeneSymbol":"SNORA59B","entrezGeneId":677882},{"hugoGeneSymbol":"SNORA5A","entrezGeneId":654319},{"hugoGeneSymbol":"SNORA5B","entrezGeneId":677795},{"hugoGeneSymbol":"SNORA5C","entrezGeneId":677796},{"hugoGeneSymbol":"SNORA6","entrezGeneId":574040},{"hugoGeneSymbol":"SNORA60","entrezGeneId":677837},{"hugoGeneSymbol":"SNORA61","entrezGeneId":677838},{"hugoGeneSymbol":"SNORA62","entrezGeneId":6044},{"hugoGeneSymbol":"SNORA63","entrezGeneId":6043},{"hugoGeneSymbol":"SNORA63B","entrezGeneId":109617006},{"hugoGeneSymbol":"SNORA63C","entrezGeneId":109616970},{"hugoGeneSymbol":"SNORA63D","entrezGeneId":109616971},{"hugoGeneSymbol":"SNORA63E","entrezGeneId":109617007},{"hugoGeneSymbol":"SNORA64","entrezGeneId":26784},{"hugoGeneSymbol":"SNORA65","entrezGeneId":26783},{"hugoGeneSymbol":"SNORA66","entrezGeneId":26782},{"hugoGeneSymbol":"SNORA67","entrezGeneId":26781},{"hugoGeneSymbol":"SNORA68","entrezGeneId":26780},{"hugoGeneSymbol":"SNORA68B","entrezGeneId":109616972},{"hugoGeneSymbol":"SNORA69","entrezGeneId":26779},{"hugoGeneSymbol":"SNORA70","entrezGeneId":26778},{"hugoGeneSymbol":"SNORA70B","entrezGeneId":100124537},{"hugoGeneSymbol":"SNORA70C","entrezGeneId":100124538},{"hugoGeneSymbol":"SNORA70D","entrezGeneId":100379141},{"hugoGeneSymbol":"SNORA70E","entrezGeneId":100379250},{"hugoGeneSymbol":"SNORA70F","entrezGeneId":100337591},{"hugoGeneSymbol":"SNORA70G","entrezGeneId":100379132},{"hugoGeneSymbol":"SNORA70H","entrezGeneId":109616993},{"hugoGeneSymbol":"SNORA70I","entrezGeneId":109617008},{"hugoGeneSymbol":"SNORA70J","entrezGeneId":109616973},{"hugoGeneSymbol":"SNORA71A","entrezGeneId":26777},{"hugoGeneSymbol":"SNORA71B","entrezGeneId":26776},{"hugoGeneSymbol":"SNORA71C","entrezGeneId":677839},{"hugoGeneSymbol":"SNORA71D","entrezGeneId":677840},{"hugoGeneSymbol":"SNORA71E","entrezGeneId":677821},{"hugoGeneSymbol":"SNORA72","entrezGeneId":26775},{"hugoGeneSymbol":"SNORA73A","entrezGeneId":6080},{"hugoGeneSymbol":"SNORA73B","entrezGeneId":26768},{"hugoGeneSymbol":"SNORA74A","entrezGeneId":26821},{"hugoGeneSymbol":"SNORA74B","entrezGeneId":677841},{"hugoGeneSymbol":"SNORA74C-1","entrezGeneId":109616974},{"hugoGeneSymbol":"SNORA74C-2","entrezGeneId":109617009},{"hugoGeneSymbol":"SNORA74D","entrezGeneId":109616975},{"hugoGeneSymbol":"SNORA75","entrezGeneId":654321},{"hugoGeneSymbol":"SNORA75B","entrezGeneId":109616994},{"hugoGeneSymbol":"SNORA77","entrezGeneId":677843},{"hugoGeneSymbol":"SNORA77B","entrezGeneId":109617010},{"hugoGeneSymbol":"SNORA78","entrezGeneId":677844},{"hugoGeneSymbol":"SNORA79","entrezGeneId":677845},{"hugoGeneSymbol":"SNORA79B","entrezGeneId":109616976},{"hugoGeneSymbol":"SNORA7A","entrezGeneId":619563},{"hugoGeneSymbol":"SNORA7B","entrezGeneId":677797},{"hugoGeneSymbol":"SNORA8","entrezGeneId":654320},{"hugoGeneSymbol":"SNORA80A","entrezGeneId":677846},{"hugoGeneSymbol":"SNORA80B","entrezGeneId":100302743},{"hugoGeneSymbol":"SNORA80C","entrezGeneId":109616959},{"hugoGeneSymbol":"SNORA80D","entrezGeneId":109616999},{"hugoGeneSymbol":"SNORA80E","entrezGeneId":677823},{"hugoGeneSymbol":"SNORA81","entrezGeneId":677847},{"hugoGeneSymbol":"SNORA84","entrezGeneId":100124534},{"hugoGeneSymbol":"SNORA86","entrezGeneId":106633814},{"hugoGeneSymbol":"SNORA87","entrezGeneId":106635520},{"hugoGeneSymbol":"SNORA88","entrezGeneId":106635521},{"hugoGeneSymbol":"SNORA89","entrezGeneId":106635522},{"hugoGeneSymbol":"SNORA9","entrezGeneId":677798},{"hugoGeneSymbol":"SNORA90","entrezGeneId":106635523},{"hugoGeneSymbol":"SNORA91","entrezGeneId":106635524},{"hugoGeneSymbol":"SNORA92","entrezGeneId":106635525},{"hugoGeneSymbol":"SNORA93","entrezGeneId":106635526},{"hugoGeneSymbol":"SNORA94","entrezGeneId":106635528},{"hugoGeneSymbol":"SNORA95","entrezGeneId":106635529},{"hugoGeneSymbol":"SNORA98","entrezGeneId":106635530},{"hugoGeneSymbol":"SNORA99","entrezGeneId":106635531},{"hugoGeneSymbol":"SNORA9B","entrezGeneId":109616977},{"hugoGeneSymbol":"SNORC","entrezGeneId":389084},{"hugoGeneSymbol":"SNORD10","entrezGeneId":652966},{"hugoGeneSymbol":"SNORD100","entrezGeneId":594838},{"hugoGeneSymbol":"SNORD101","entrezGeneId":594837},{"hugoGeneSymbol":"SNORD102","entrezGeneId":26771},{"hugoGeneSymbol":"SNORD103A","entrezGeneId":692234},{"hugoGeneSymbol":"SNORD103B","entrezGeneId":692235},{"hugoGeneSymbol":"SNORD103C","entrezGeneId":692200},{"hugoGeneSymbol":"SNORD104","entrezGeneId":692227},{"hugoGeneSymbol":"SNORD105","entrezGeneId":692229},{"hugoGeneSymbol":"SNORD105B","entrezGeneId":100113382},{"hugoGeneSymbol":"SNORD107","entrezGeneId":91380},{"hugoGeneSymbol":"SNORD108","entrezGeneId":338427},{"hugoGeneSymbol":"SNORD109A","entrezGeneId":338428},{"hugoGeneSymbol":"SNORD109B","entrezGeneId":338429},{"hugoGeneSymbol":"SNORD11","entrezGeneId":692058},{"hugoGeneSymbol":"SNORD110","entrezGeneId":692213},{"hugoGeneSymbol":"SNORD111","entrezGeneId":692214},{"hugoGeneSymbol":"SNORD111B","entrezGeneId":100113402},{"hugoGeneSymbol":"SNORD112","entrezGeneId":692215},{"hugoGeneSymbol":"SNORD113-1","entrezGeneId":767561},{"hugoGeneSymbol":"SNORD113-2","entrezGeneId":767562},{"hugoGeneSymbol":"SNORD113-3","entrezGeneId":767563},{"hugoGeneSymbol":"SNORD113-4","entrezGeneId":767564},{"hugoGeneSymbol":"SNORD113-5","entrezGeneId":767565},{"hugoGeneSymbol":"SNORD113-6","entrezGeneId":767566},{"hugoGeneSymbol":"SNORD113-7","entrezGeneId":767567},{"hugoGeneSymbol":"SNORD113-8","entrezGeneId":767568},{"hugoGeneSymbol":"SNORD113-9","entrezGeneId":767569},{"hugoGeneSymbol":"SNORD114-1","entrezGeneId":767577},{"hugoGeneSymbol":"SNORD114-10","entrezGeneId":767588},{"hugoGeneSymbol":"SNORD114-11","entrezGeneId":767589},{"hugoGeneSymbol":"SNORD114-12","entrezGeneId":767590},{"hugoGeneSymbol":"SNORD114-13","entrezGeneId":767591},{"hugoGeneSymbol":"SNORD114-14","entrezGeneId":767592},{"hugoGeneSymbol":"SNORD114-15","entrezGeneId":767593},{"hugoGeneSymbol":"SNORD114-16","entrezGeneId":767594},{"hugoGeneSymbol":"SNORD114-17","entrezGeneId":767595},{"hugoGeneSymbol":"SNORD114-18","entrezGeneId":767596},{"hugoGeneSymbol":"SNORD114-19","entrezGeneId":767597},{"hugoGeneSymbol":"SNORD114-2","entrezGeneId":767578},{"hugoGeneSymbol":"SNORD114-20","entrezGeneId":767598},{"hugoGeneSymbol":"SNORD114-21","entrezGeneId":767599},{"hugoGeneSymbol":"SNORD114-22","entrezGeneId":767600},{"hugoGeneSymbol":"SNORD114-23","entrezGeneId":767603},{"hugoGeneSymbol":"SNORD114-24","entrezGeneId":767604},{"hugoGeneSymbol":"SNORD114-25","entrezGeneId":767605},{"hugoGeneSymbol":"SNORD114-26","entrezGeneId":767606},{"hugoGeneSymbol":"SNORD114-27","entrezGeneId":767608},{"hugoGeneSymbol":"SNORD114-28","entrezGeneId":767609},{"hugoGeneSymbol":"SNORD114-29","entrezGeneId":767610},{"hugoGeneSymbol":"SNORD114-3","entrezGeneId":767579},{"hugoGeneSymbol":"SNORD114-30","entrezGeneId":767611},{"hugoGeneSymbol":"SNORD114-31","entrezGeneId":767612},{"hugoGeneSymbol":"SNORD114-4","entrezGeneId":767580},{"hugoGeneSymbol":"SNORD114-5","entrezGeneId":767581},{"hugoGeneSymbol":"SNORD114-6","entrezGeneId":767582},{"hugoGeneSymbol":"SNORD114-7","entrezGeneId":767583},{"hugoGeneSymbol":"SNORD114-8","entrezGeneId":767584},{"hugoGeneSymbol":"SNORD114-9","entrezGeneId":767585},{"hugoGeneSymbol":"SNORD114@","entrezGeneId":692217},{"hugoGeneSymbol":"SNORD115-1","entrezGeneId":338433},{"hugoGeneSymbol":"SNORD115-10","entrezGeneId":100033447},{"hugoGeneSymbol":"SNORD115-11","entrezGeneId":100033448},{"hugoGeneSymbol":"SNORD115-12","entrezGeneId":100033449},{"hugoGeneSymbol":"SNORD115-13","entrezGeneId":100033450},{"hugoGeneSymbol":"SNORD115-14","entrezGeneId":100033451},{"hugoGeneSymbol":"SNORD115-15","entrezGeneId":100033453},{"hugoGeneSymbol":"SNORD115-16","entrezGeneId":100033454},{"hugoGeneSymbol":"SNORD115-17","entrezGeneId":100033455},{"hugoGeneSymbol":"SNORD115-18","entrezGeneId":100033456},{"hugoGeneSymbol":"SNORD115-19","entrezGeneId":100033458},{"hugoGeneSymbol":"SNORD115-2","entrezGeneId":100033437},{"hugoGeneSymbol":"SNORD115-20","entrezGeneId":100033460},{"hugoGeneSymbol":"SNORD115-21","entrezGeneId":100033603},{"hugoGeneSymbol":"SNORD115-22","entrezGeneId":100033799},{"hugoGeneSymbol":"SNORD115-23","entrezGeneId":100033800},{"hugoGeneSymbol":"SNORD115-24","entrezGeneId":100036563},{"hugoGeneSymbol":"SNORD115-25","entrezGeneId":100033801},{"hugoGeneSymbol":"SNORD115-26","entrezGeneId":100033802},{"hugoGeneSymbol":"SNORD115-27","entrezGeneId":100036564},{"hugoGeneSymbol":"SNORD115-28","entrezGeneId":100036565},{"hugoGeneSymbol":"SNORD115-29","entrezGeneId":100033803},{"hugoGeneSymbol":"SNORD115-3","entrezGeneId":100033440},{"hugoGeneSymbol":"SNORD115-30","entrezGeneId":100033804},{"hugoGeneSymbol":"SNORD115-31","entrezGeneId":100033805},{"hugoGeneSymbol":"SNORD115-32","entrezGeneId":100033806},{"hugoGeneSymbol":"SNORD115-33","entrezGeneId":100033807},{"hugoGeneSymbol":"SNORD115-34","entrezGeneId":100033808},{"hugoGeneSymbol":"SNORD115-35","entrezGeneId":100033809},{"hugoGeneSymbol":"SNORD115-36","entrezGeneId":100033810},{"hugoGeneSymbol":"SNORD115-37","entrezGeneId":100033811},{"hugoGeneSymbol":"SNORD115-38","entrezGeneId":100033812},{"hugoGeneSymbol":"SNORD115-39","entrezGeneId":100033813},{"hugoGeneSymbol":"SNORD115-4","entrezGeneId":100033441},{"hugoGeneSymbol":"SNORD115-40","entrezGeneId":100033814},{"hugoGeneSymbol":"SNORD115-41","entrezGeneId":100033815},{"hugoGeneSymbol":"SNORD115-42","entrezGeneId":100033816},{"hugoGeneSymbol":"SNORD115-43","entrezGeneId":100033817},{"hugoGeneSymbol":"SNORD115-44","entrezGeneId":100033818},{"hugoGeneSymbol":"SNORD115-45","entrezGeneId":100036566},{"hugoGeneSymbol":"SNORD115-46","entrezGeneId":100873857},{"hugoGeneSymbol":"SNORD115-47","entrezGeneId":100036567},{"hugoGeneSymbol":"SNORD115-48","entrezGeneId":100033822},{"hugoGeneSymbol":"SNORD115-5","entrezGeneId":100033442},{"hugoGeneSymbol":"SNORD115-6","entrezGeneId":100033443},{"hugoGeneSymbol":"SNORD115-7","entrezGeneId":100033444},{"hugoGeneSymbol":"SNORD115-8","entrezGeneId":100033445},{"hugoGeneSymbol":"SNORD115-9","entrezGeneId":100033446},{"hugoGeneSymbol":"SNORD115@","entrezGeneId":692218},{"hugoGeneSymbol":"SNORD116-1","entrezGeneId":100033413},{"hugoGeneSymbol":"SNORD116-10","entrezGeneId":100033422},{"hugoGeneSymbol":"SNORD116-11","entrezGeneId":100033423},{"hugoGeneSymbol":"SNORD116-12","entrezGeneId":100033424},{"hugoGeneSymbol":"SNORD116-13","entrezGeneId":100033425},{"hugoGeneSymbol":"SNORD116-14","entrezGeneId":100033426},{"hugoGeneSymbol":"SNORD116-15","entrezGeneId":100033427},{"hugoGeneSymbol":"SNORD116-16","entrezGeneId":100033428},{"hugoGeneSymbol":"SNORD116-17","entrezGeneId":100033429},{"hugoGeneSymbol":"SNORD116-18","entrezGeneId":100033430},{"hugoGeneSymbol":"SNORD116-19","entrezGeneId":727708},{"hugoGeneSymbol":"SNORD116-2","entrezGeneId":100033414},{"hugoGeneSymbol":"SNORD116-20","entrezGeneId":100033431},{"hugoGeneSymbol":"SNORD116-21","entrezGeneId":100033432},{"hugoGeneSymbol":"SNORD116-22","entrezGeneId":100033433},{"hugoGeneSymbol":"SNORD116-23","entrezGeneId":100033434},{"hugoGeneSymbol":"SNORD116-24","entrezGeneId":100033435},{"hugoGeneSymbol":"SNORD116-25","entrezGeneId":100033436},{"hugoGeneSymbol":"SNORD116-26","entrezGeneId":100033438},{"hugoGeneSymbol":"SNORD116-27","entrezGeneId":100033439},{"hugoGeneSymbol":"SNORD116-28","entrezGeneId":100033820},{"hugoGeneSymbol":"SNORD116-29","entrezGeneId":100033821},{"hugoGeneSymbol":"SNORD116-3","entrezGeneId":100033415},{"hugoGeneSymbol":"SNORD116-30","entrezGeneId":100873856},{"hugoGeneSymbol":"SNORD116-4","entrezGeneId":100033416},{"hugoGeneSymbol":"SNORD116-5","entrezGeneId":100033417},{"hugoGeneSymbol":"SNORD116-6","entrezGeneId":100033418},{"hugoGeneSymbol":"SNORD116-7","entrezGeneId":100033419},{"hugoGeneSymbol":"SNORD116-8","entrezGeneId":100033420},{"hugoGeneSymbol":"SNORD116-9","entrezGeneId":100033421},{"hugoGeneSymbol":"SNORD116@","entrezGeneId":692236},{"hugoGeneSymbol":"SNORD117","entrezGeneId":692233},{"hugoGeneSymbol":"SNORD118","entrezGeneId":727676},{"hugoGeneSymbol":"SNORD119","entrezGeneId":100113378},{"hugoGeneSymbol":"SNORD11B","entrezGeneId":100113392},{"hugoGeneSymbol":"SNORD12","entrezGeneId":692057},{"hugoGeneSymbol":"SNORD121A","entrezGeneId":100113379},{"hugoGeneSymbol":"SNORD121B","entrezGeneId":101340252},{"hugoGeneSymbol":"SNORD123","entrezGeneId":100113384},{"hugoGeneSymbol":"SNORD124","entrezGeneId":101340251},{"hugoGeneSymbol":"SNORD125","entrezGeneId":100113380},{"hugoGeneSymbol":"SNORD126","entrezGeneId":100113391},{"hugoGeneSymbol":"SNORD127","entrezGeneId":100113389},{"hugoGeneSymbol":"SNORD128","entrezGeneId":106632271},{"hugoGeneSymbol":"SNORD129","entrezGeneId":106635547},{"hugoGeneSymbol":"SNORD12B","entrezGeneId":100113393},{"hugoGeneSymbol":"SNORD12C","entrezGeneId":26765},{"hugoGeneSymbol":"SNORD13","entrezGeneId":692084},{"hugoGeneSymbol":"SNORD130","entrezGeneId":106635548},{"hugoGeneSymbol":"SNORD131","entrezGeneId":106635549},{"hugoGeneSymbol":"SNORD132","entrezGeneId":106635550},{"hugoGeneSymbol":"SNORD133","entrezGeneId":106633800},{"hugoGeneSymbol":"SNORD134","entrezGeneId":106633803},{"hugoGeneSymbol":"SNORD135","entrezGeneId":106633804},{"hugoGeneSymbol":"SNORD136","entrezGeneId":106633805},{"hugoGeneSymbol":"SNORD137","entrezGeneId":106635615},{"hugoGeneSymbol":"SNORD138","entrezGeneId":109623460},{"hugoGeneSymbol":"SNORD139","entrezGeneId":116936},{"hugoGeneSymbol":"SNORD13B-1","entrezGeneId":109617019},{"hugoGeneSymbol":"SNORD13B-2","entrezGeneId":109617021},{"hugoGeneSymbol":"SNORD13C","entrezGeneId":109616989},{"hugoGeneSymbol":"SNORD13D","entrezGeneId":109616990},{"hugoGeneSymbol":"SNORD13E","entrezGeneId":109617020},{"hugoGeneSymbol":"SNORD13F","entrezGeneId":109616986},{"hugoGeneSymbol":"SNORD13G","entrezGeneId":109616987},{"hugoGeneSymbol":"SNORD13H","entrezGeneId":109617018},{"hugoGeneSymbol":"SNORD13I","entrezGeneId":109616988},{"hugoGeneSymbol":"SNORD13J","entrezGeneId":109617025},{"hugoGeneSymbol":"SNORD13P1","entrezGeneId":6076},{"hugoGeneSymbol":"SNORD13P2","entrezGeneId":6077},{"hugoGeneSymbol":"SNORD13P3","entrezGeneId":6078},{"hugoGeneSymbol":"SNORD140","entrezGeneId":106635682},{"hugoGeneSymbol":"SNORD141A","entrezGeneId":106635683},{"hugoGeneSymbol":"SNORD141B","entrezGeneId":106635684},{"hugoGeneSymbol":"SNORD142","entrezGeneId":106633806},{"hugoGeneSymbol":"SNORD143","entrezGeneId":106633808},{"hugoGeneSymbol":"SNORD144","entrezGeneId":106633809},{"hugoGeneSymbol":"SNORD145","entrezGeneId":109623472},{"hugoGeneSymbol":"SNORD146","entrezGeneId":109623484},{"hugoGeneSymbol":"SNORD147","entrezGeneId":109623465},{"hugoGeneSymbol":"SNORD148","entrezGeneId":109623466},{"hugoGeneSymbol":"SNORD149","entrezGeneId":109623485},{"hugoGeneSymbol":"SNORD14A","entrezGeneId":26822},{"hugoGeneSymbol":"SNORD14B","entrezGeneId":85388},{"hugoGeneSymbol":"SNORD14C","entrezGeneId":85389},{"hugoGeneSymbol":"SNORD14D","entrezGeneId":85390},{"hugoGeneSymbol":"SNORD14E","entrezGeneId":85391},{"hugoGeneSymbol":"SNORD150","entrezGeneId":109623467},{"hugoGeneSymbol":"SNORD151","entrezGeneId":109623468},{"hugoGeneSymbol":"SNORD152","entrezGeneId":109623473},{"hugoGeneSymbol":"SNORD153","entrezGeneId":109623486},{"hugoGeneSymbol":"SNORD154","entrezGeneId":109623474},{"hugoGeneSymbol":"SNORD155","entrezGeneId":109623450},{"hugoGeneSymbol":"SNORD156","entrezGeneId":109623475},{"hugoGeneSymbol":"SNORD157","entrezGeneId":109623451},{"hugoGeneSymbol":"SNORD158","entrezGeneId":109623470},{"hugoGeneSymbol":"SNORD159","entrezGeneId":109623452},{"hugoGeneSymbol":"SNORD15A","entrezGeneId":6079},{"hugoGeneSymbol":"SNORD15B","entrezGeneId":114599},{"hugoGeneSymbol":"SNORD16","entrezGeneId":595097},{"hugoGeneSymbol":"SNORD160","entrezGeneId":109623476},{"hugoGeneSymbol":"SNORD161","entrezGeneId":109623453},{"hugoGeneSymbol":"SNORD162","entrezGeneId":109623454},{"hugoGeneSymbol":"SNORD163","entrezGeneId":109623477},{"hugoGeneSymbol":"SNORD164","entrezGeneId":109623487},{"hugoGeneSymbol":"SNORD165","entrezGeneId":109623455},{"hugoGeneSymbol":"SNORD166","entrezGeneId":109623478},{"hugoGeneSymbol":"SNORD167","entrezGeneId":109623456},{"hugoGeneSymbol":"SNORD168","entrezGeneId":109623457},{"hugoGeneSymbol":"SNORD169","entrezGeneId":109623479},{"hugoGeneSymbol":"SNORD17","entrezGeneId":692086},{"hugoGeneSymbol":"SNORD170","entrezGeneId":109623458},{"hugoGeneSymbol":"SNORD172","entrezGeneId":109623471},{"hugoGeneSymbol":"SNORD173","entrezGeneId":109623480},{"hugoGeneSymbol":"SNORD175","entrezGeneId":109623469},{"hugoGeneSymbol":"SNORD18A","entrezGeneId":595098},{"hugoGeneSymbol":"SNORD18B","entrezGeneId":595099},{"hugoGeneSymbol":"SNORD18C","entrezGeneId":595100},{"hugoGeneSymbol":"SNORD19","entrezGeneId":692089},{"hugoGeneSymbol":"SNORD19B","entrezGeneId":100113381},{"hugoGeneSymbol":"SNORD19C","entrezGeneId":109616991},{"hugoGeneSymbol":"SNORD1A","entrezGeneId":677848},{"hugoGeneSymbol":"SNORD1B","entrezGeneId":677849},{"hugoGeneSymbol":"SNORD1C","entrezGeneId":677850},{"hugoGeneSymbol":"SNORD2","entrezGeneId":619567},{"hugoGeneSymbol":"SNORD20","entrezGeneId":6082},{"hugoGeneSymbol":"SNORD21","entrezGeneId":6083},{"hugoGeneSymbol":"SNORD22","entrezGeneId":9304},{"hugoGeneSymbol":"SNORD23","entrezGeneId":692091},{"hugoGeneSymbol":"SNORD24","entrezGeneId":26820},{"hugoGeneSymbol":"SNORD25","entrezGeneId":9303},{"hugoGeneSymbol":"SNORD26","entrezGeneId":9302},{"hugoGeneSymbol":"SNORD27","entrezGeneId":9301},{"hugoGeneSymbol":"SNORD28","entrezGeneId":9300},{"hugoGeneSymbol":"SNORD28B","entrezGeneId":109617011},{"hugoGeneSymbol":"SNORD29","entrezGeneId":9297},{"hugoGeneSymbol":"SNORD30","entrezGeneId":9299},{"hugoGeneSymbol":"SNORD31","entrezGeneId":9298},{"hugoGeneSymbol":"SNORD31B","entrezGeneId":109616978},{"hugoGeneSymbol":"SNORD32A","entrezGeneId":26819},{"hugoGeneSymbol":"SNORD32B","entrezGeneId":692092},{"hugoGeneSymbol":"SNORD33","entrezGeneId":26818},{"hugoGeneSymbol":"SNORD34","entrezGeneId":26817},{"hugoGeneSymbol":"SNORD35A","entrezGeneId":26816},{"hugoGeneSymbol":"SNORD35B","entrezGeneId":84546},{"hugoGeneSymbol":"SNORD36A","entrezGeneId":26815},{"hugoGeneSymbol":"SNORD36B","entrezGeneId":26814},{"hugoGeneSymbol":"SNORD36C","entrezGeneId":26813},{"hugoGeneSymbol":"SNORD37","entrezGeneId":26812},{"hugoGeneSymbol":"SNORD38A","entrezGeneId":94162},{"hugoGeneSymbol":"SNORD38B","entrezGeneId":94163},{"hugoGeneSymbol":"SNORD38C","entrezGeneId":109617024},{"hugoGeneSymbol":"SNORD38D","entrezGeneId":109616979},{"hugoGeneSymbol":"SNORD3@","entrezGeneId":692232},{"hugoGeneSymbol":"SNORD3A","entrezGeneId":780851},{"hugoGeneSymbol":"SNORD3B-1","entrezGeneId":26851},{"hugoGeneSymbol":"SNORD3B-2","entrezGeneId":780852},{"hugoGeneSymbol":"SNORD3C","entrezGeneId":780853},{"hugoGeneSymbol":"SNORD3D","entrezGeneId":780854},{"hugoGeneSymbol":"SNORD3E","entrezGeneId":109617015},{"hugoGeneSymbol":"SNORD3F","entrezGeneId":109616983},{"hugoGeneSymbol":"SNORD3G","entrezGeneId":109616984},{"hugoGeneSymbol":"SNORD3H","entrezGeneId":109617016},{"hugoGeneSymbol":"SNORD3I","entrezGeneId":109616996},{"hugoGeneSymbol":"SNORD3J","entrezGeneId":109616985},{"hugoGeneSymbol":"SNORD3K","entrezGeneId":109617017},{"hugoGeneSymbol":"SNORD3P1","entrezGeneId":6068},{"hugoGeneSymbol":"SNORD3P2","entrezGeneId":26844},{"hugoGeneSymbol":"SNORD3P3","entrezGeneId":26843},{"hugoGeneSymbol":"SNORD3P4","entrezGeneId":26842},{"hugoGeneSymbol":"SNORD41","entrezGeneId":26810},{"hugoGeneSymbol":"SNORD42A","entrezGeneId":26809},{"hugoGeneSymbol":"SNORD42B","entrezGeneId":26808},{"hugoGeneSymbol":"SNORD43","entrezGeneId":26807},{"hugoGeneSymbol":"SNORD44","entrezGeneId":26806},{"hugoGeneSymbol":"SNORD45A","entrezGeneId":26805},{"hugoGeneSymbol":"SNORD45B","entrezGeneId":26804},{"hugoGeneSymbol":"SNORD45C","entrezGeneId":692085},{"hugoGeneSymbol":"SNORD46","entrezGeneId":94161},{"hugoGeneSymbol":"SNORD47","entrezGeneId":26802},{"hugoGeneSymbol":"SNORD48","entrezGeneId":26801},{"hugoGeneSymbol":"SNORD49A","entrezGeneId":26800},{"hugoGeneSymbol":"SNORD49B","entrezGeneId":692087},{"hugoGeneSymbol":"SNORD4A","entrezGeneId":26773},{"hugoGeneSymbol":"SNORD4B","entrezGeneId":26772},{"hugoGeneSymbol":"SNORD5","entrezGeneId":692072},{"hugoGeneSymbol":"SNORD50A","entrezGeneId":26799},{"hugoGeneSymbol":"SNORD50B","entrezGeneId":692088},{"hugoGeneSymbol":"SNORD51","entrezGeneId":26798},{"hugoGeneSymbol":"SNORD52","entrezGeneId":26797},{"hugoGeneSymbol":"SNORD53","entrezGeneId":26796},{"hugoGeneSymbol":"SNORD53B","entrezGeneId":109617012},{"hugoGeneSymbol":"SNORD54","entrezGeneId":26795},{"hugoGeneSymbol":"SNORD55","entrezGeneId":26811},{"hugoGeneSymbol":"SNORD56","entrezGeneId":26793},{"hugoGeneSymbol":"SNORD56B","entrezGeneId":319139},{"hugoGeneSymbol":"SNORD57","entrezGeneId":26792},{"hugoGeneSymbol":"SNORD58A","entrezGeneId":26791},{"hugoGeneSymbol":"SNORD58B","entrezGeneId":26790},{"hugoGeneSymbol":"SNORD58C","entrezGeneId":100124516},{"hugoGeneSymbol":"SNORD59A","entrezGeneId":26789},{"hugoGeneSymbol":"SNORD59B","entrezGeneId":692090},{"hugoGeneSymbol":"SNORD6","entrezGeneId":692075},{"hugoGeneSymbol":"SNORD60","entrezGeneId":26788},{"hugoGeneSymbol":"SNORD61","entrezGeneId":26787},{"hugoGeneSymbol":"SNORD62A","entrezGeneId":26786},{"hugoGeneSymbol":"SNORD62B","entrezGeneId":692093},{"hugoGeneSymbol":"SNORD63","entrezGeneId":26785},{"hugoGeneSymbol":"SNORD63B","entrezGeneId":109617013},{"hugoGeneSymbol":"SNORD64","entrezGeneId":347686},{"hugoGeneSymbol":"SNORD65","entrezGeneId":692106},{"hugoGeneSymbol":"SNORD65B","entrezGeneId":109616980},{"hugoGeneSymbol":"SNORD65C","entrezGeneId":109616981},{"hugoGeneSymbol":"SNORD66","entrezGeneId":692107},{"hugoGeneSymbol":"SNORD67","entrezGeneId":692108},{"hugoGeneSymbol":"SNORD68","entrezGeneId":606500},{"hugoGeneSymbol":"SNORD69","entrezGeneId":692109},{"hugoGeneSymbol":"SNORD7","entrezGeneId":692076},{"hugoGeneSymbol":"SNORD70","entrezGeneId":692110},{"hugoGeneSymbol":"SNORD70B","entrezGeneId":109616995},{"hugoGeneSymbol":"SNORD71","entrezGeneId":692111},{"hugoGeneSymbol":"SNORD72","entrezGeneId":619564},{"hugoGeneSymbol":"SNORD73A","entrezGeneId":8944},{"hugoGeneSymbol":"SNORD73B","entrezGeneId":114655},{"hugoGeneSymbol":"SNORD74","entrezGeneId":619498},{"hugoGeneSymbol":"SNORD74B","entrezGeneId":109617014},{"hugoGeneSymbol":"SNORD75","entrezGeneId":692195},{"hugoGeneSymbol":"SNORD76","entrezGeneId":692196},{"hugoGeneSymbol":"SNORD77","entrezGeneId":692197},{"hugoGeneSymbol":"SNORD77B","entrezGeneId":109616982},{"hugoGeneSymbol":"SNORD78","entrezGeneId":692198},{"hugoGeneSymbol":"SNORD79","entrezGeneId":26770},{"hugoGeneSymbol":"SNORD8","entrezGeneId":319103},{"hugoGeneSymbol":"SNORD80","entrezGeneId":26774},{"hugoGeneSymbol":"SNORD81","entrezGeneId":26769},{"hugoGeneSymbol":"SNORD82","entrezGeneId":25826},{"hugoGeneSymbol":"SNORD83A","entrezGeneId":116937},{"hugoGeneSymbol":"SNORD83B","entrezGeneId":116938},{"hugoGeneSymbol":"SNORD84","entrezGeneId":692199},{"hugoGeneSymbol":"SNORD86","entrezGeneId":692201},{"hugoGeneSymbol":"SNORD87","entrezGeneId":641648},{"hugoGeneSymbol":"SNORD88A","entrezGeneId":692202},{"hugoGeneSymbol":"SNORD88B","entrezGeneId":692203},{"hugoGeneSymbol":"SNORD88C","entrezGeneId":692204},{"hugoGeneSymbol":"SNORD89","entrezGeneId":692205},{"hugoGeneSymbol":"SNORD9","entrezGeneId":692053},{"hugoGeneSymbol":"SNORD90","entrezGeneId":692206},{"hugoGeneSymbol":"SNORD91A","entrezGeneId":692207},{"hugoGeneSymbol":"SNORD91B","entrezGeneId":692208},{"hugoGeneSymbol":"SNORD92","entrezGeneId":692209},{"hugoGeneSymbol":"SNORD93","entrezGeneId":692210},{"hugoGeneSymbol":"SNORD94","entrezGeneId":692225},{"hugoGeneSymbol":"SNORD95","entrezGeneId":619570},{"hugoGeneSymbol":"SNORD96A","entrezGeneId":619571},{"hugoGeneSymbol":"SNORD96B","entrezGeneId":692226},{"hugoGeneSymbol":"SNORD97","entrezGeneId":692223},{"hugoGeneSymbol":"SNORD98","entrezGeneId":692211},{"hugoGeneSymbol":"SNORD99","entrezGeneId":692212},{"hugoGeneSymbol":"SNPH","entrezGeneId":9751},{"hugoGeneSymbol":"SNRK","entrezGeneId":54861},{"hugoGeneSymbol":"SNRK-AS1","entrezGeneId":100873954},{"hugoGeneSymbol":"SNRNP200","entrezGeneId":23020},{"hugoGeneSymbol":"SNRNP25","entrezGeneId":79622},{"hugoGeneSymbol":"SNRNP27","entrezGeneId":11017},{"hugoGeneSymbol":"SNRNP35","entrezGeneId":11066},{"hugoGeneSymbol":"SNRNP40","entrezGeneId":9410},{"hugoGeneSymbol":"SNRNP48","entrezGeneId":154007},{"hugoGeneSymbol":"SNRNP70","entrezGeneId":6625},{"hugoGeneSymbol":"SNRPA","entrezGeneId":6626},{"hugoGeneSymbol":"SNRPA1","entrezGeneId":6627},{"hugoGeneSymbol":"SNRPB","entrezGeneId":6628},{"hugoGeneSymbol":"SNRPB2","entrezGeneId":6629},{"hugoGeneSymbol":"SNRPBP1","entrezGeneId":100499258},{"hugoGeneSymbol":"SNRPC","entrezGeneId":6631},{"hugoGeneSymbol":"SNRPCP1","entrezGeneId":100288596},{"hugoGeneSymbol":"SNRPCP10","entrezGeneId":106481701},{"hugoGeneSymbol":"SNRPCP11","entrezGeneId":100310850},{"hugoGeneSymbol":"SNRPCP12","entrezGeneId":100310854},{"hugoGeneSymbol":"SNRPCP13","entrezGeneId":106481786},{"hugoGeneSymbol":"SNRPCP14","entrezGeneId":100310855},{"hugoGeneSymbol":"SNRPCP15","entrezGeneId":100310857},{"hugoGeneSymbol":"SNRPCP16","entrezGeneId":106480291},{"hugoGeneSymbol":"SNRPCP17","entrezGeneId":106481702},{"hugoGeneSymbol":"SNRPCP18","entrezGeneId":100289564},{"hugoGeneSymbol":"SNRPCP19","entrezGeneId":100310849},{"hugoGeneSymbol":"SNRPCP2","entrezGeneId":100129566},{"hugoGeneSymbol":"SNRPCP20","entrezGeneId":106480292},{"hugoGeneSymbol":"SNRPCP3","entrezGeneId":100128469},{"hugoGeneSymbol":"SNRPCP4","entrezGeneId":100310848},{"hugoGeneSymbol":"SNRPCP5","entrezGeneId":106480290},{"hugoGeneSymbol":"SNRPCP6","entrezGeneId":100310856},{"hugoGeneSymbol":"SNRPCP7","entrezGeneId":100310852},{"hugoGeneSymbol":"SNRPCP8","entrezGeneId":100310851},{"hugoGeneSymbol":"SNRPCP9","entrezGeneId":100310853},{"hugoGeneSymbol":"SNRPD1","entrezGeneId":6632},{"hugoGeneSymbol":"SNRPD2","entrezGeneId":6633},{"hugoGeneSymbol":"SNRPD2P1","entrezGeneId":119358},{"hugoGeneSymbol":"SNRPD2P2","entrezGeneId":645339},{"hugoGeneSymbol":"SNRPD3","entrezGeneId":6634},{"hugoGeneSymbol":"SNRPE","entrezGeneId":6635},{"hugoGeneSymbol":"SNRPEP1","entrezGeneId":100129454},{"hugoGeneSymbol":"SNRPEP10","entrezGeneId":100874424},{"hugoGeneSymbol":"SNRPEP2","entrezGeneId":414153},{"hugoGeneSymbol":"SNRPEP3","entrezGeneId":100129329},{"hugoGeneSymbol":"SNRPEP4","entrezGeneId":100130109},{"hugoGeneSymbol":"SNRPEP5","entrezGeneId":100874413},{"hugoGeneSymbol":"SNRPEP6","entrezGeneId":100874414},{"hugoGeneSymbol":"SNRPEP7","entrezGeneId":100874415},{"hugoGeneSymbol":"SNRPEP8","entrezGeneId":100874423},{"hugoGeneSymbol":"SNRPEP9","entrezGeneId":100874416},{"hugoGeneSymbol":"SNRPF","entrezGeneId":6636},{"hugoGeneSymbol":"SNRPFP1","entrezGeneId":170550},{"hugoGeneSymbol":"SNRPFP2","entrezGeneId":100874411},{"hugoGeneSymbol":"SNRPFP3","entrezGeneId":100874422},{"hugoGeneSymbol":"SNRPFP4","entrezGeneId":100874412},{"hugoGeneSymbol":"SNRPG","entrezGeneId":6637},{"hugoGeneSymbol":"SNRPGP1","entrezGeneId":326272},{"hugoGeneSymbol":"SNRPGP10","entrezGeneId":100130289},{"hugoGeneSymbol":"SNRPGP11","entrezGeneId":100874426},{"hugoGeneSymbol":"SNRPGP12","entrezGeneId":100874427},{"hugoGeneSymbol":"SNRPGP13","entrezGeneId":100874428},{"hugoGeneSymbol":"SNRPGP14","entrezGeneId":100874434},{"hugoGeneSymbol":"SNRPGP15","entrezGeneId":100130932},{"hugoGeneSymbol":"SNRPGP16","entrezGeneId":106480270},{"hugoGeneSymbol":"SNRPGP17","entrezGeneId":106481685},{"hugoGeneSymbol":"SNRPGP18","entrezGeneId":106480680},{"hugoGeneSymbol":"SNRPGP19","entrezGeneId":106481686},{"hugoGeneSymbol":"SNRPGP2","entrezGeneId":100130003},{"hugoGeneSymbol":"SNRPGP20","entrezGeneId":106480271},{"hugoGeneSymbol":"SNRPGP3","entrezGeneId":100874407},{"hugoGeneSymbol":"SNRPGP4","entrezGeneId":100130368},{"hugoGeneSymbol":"SNRPGP5","entrezGeneId":100874418},{"hugoGeneSymbol":"SNRPGP6","entrezGeneId":100861574},{"hugoGeneSymbol":"SNRPGP7","entrezGeneId":100874408},{"hugoGeneSymbol":"SNRPGP8","entrezGeneId":100874409},{"hugoGeneSymbol":"SNRPGP9","entrezGeneId":100506574},{"hugoGeneSymbol":"SNRPN","entrezGeneId":6638},{"hugoGeneSymbol":"SNTA1","entrezGeneId":6640},{"hugoGeneSymbol":"SNTB1","entrezGeneId":6641},{"hugoGeneSymbol":"SNTB2","entrezGeneId":6645},{"hugoGeneSymbol":"SNTG1","entrezGeneId":54212},{"hugoGeneSymbol":"SNTG2","entrezGeneId":54221},{"hugoGeneSymbol":"SNTN","entrezGeneId":132203},{"hugoGeneSymbol":"SNU13","entrezGeneId":4809},{"hugoGeneSymbol":"SNUPN","entrezGeneId":10073},{"hugoGeneSymbol":"SNURF","entrezGeneId":8926},{"hugoGeneSymbol":"SNURFL","entrezGeneId":727686},{"hugoGeneSymbol":"SNW1","entrezGeneId":22938},{"hugoGeneSymbol":"SNX1","entrezGeneId":6642},{"hugoGeneSymbol":"SNX10","entrezGeneId":29887},{"hugoGeneSymbol":"SNX11","entrezGeneId":29916},{"hugoGeneSymbol":"SNX12","entrezGeneId":29934},{"hugoGeneSymbol":"SNX13","entrezGeneId":23161},{"hugoGeneSymbol":"SNX14","entrezGeneId":57231},{"hugoGeneSymbol":"SNX15","entrezGeneId":29907},{"hugoGeneSymbol":"SNX16","entrezGeneId":64089},{"hugoGeneSymbol":"SNX17","entrezGeneId":9784},{"hugoGeneSymbol":"SNX18","entrezGeneId":112574},{"hugoGeneSymbol":"SNX18P10","entrezGeneId":100419040},{"hugoGeneSymbol":"SNX18P11","entrezGeneId":100419043},{"hugoGeneSymbol":"SNX18P12","entrezGeneId":100419041},{"hugoGeneSymbol":"SNX18P13","entrezGeneId":100419042},{"hugoGeneSymbol":"SNX18P14","entrezGeneId":100418972},{"hugoGeneSymbol":"SNX18P15","entrezGeneId":100419019},{"hugoGeneSymbol":"SNX18P16","entrezGeneId":100419020},{"hugoGeneSymbol":"SNX18P17","entrezGeneId":100419024},{"hugoGeneSymbol":"SNX18P18","entrezGeneId":100419021},{"hugoGeneSymbol":"SNX18P19","entrezGeneId":100419022},{"hugoGeneSymbol":"SNX18P1Y","entrezGeneId":100418999},{"hugoGeneSymbol":"SNX18P2","entrezGeneId":642952},{"hugoGeneSymbol":"SNX18P20","entrezGeneId":100419026},{"hugoGeneSymbol":"SNX18P21","entrezGeneId":100419025},{"hugoGeneSymbol":"SNX18P22","entrezGeneId":100419027},{"hugoGeneSymbol":"SNX18P23","entrezGeneId":100132617},{"hugoGeneSymbol":"SNX18P24","entrezGeneId":100419004},{"hugoGeneSymbol":"SNX18P25","entrezGeneId":100419005},{"hugoGeneSymbol":"SNX18P26","entrezGeneId":100419038},{"hugoGeneSymbol":"SNX18P27","entrezGeneId":100873788},{"hugoGeneSymbol":"SNX18P3","entrezGeneId":100418975},{"hugoGeneSymbol":"SNX18P4","entrezGeneId":100418976},{"hugoGeneSymbol":"SNX18P5","entrezGeneId":100418977},{"hugoGeneSymbol":"SNX18P7","entrezGeneId":100418980},{"hugoGeneSymbol":"SNX18P8","entrezGeneId":100418981},{"hugoGeneSymbol":"SNX18P9","entrezGeneId":644576},{"hugoGeneSymbol":"SNX19","entrezGeneId":399979},{"hugoGeneSymbol":"SNX19P1","entrezGeneId":378810},{"hugoGeneSymbol":"SNX19P2","entrezGeneId":400094},{"hugoGeneSymbol":"SNX19P3","entrezGeneId":646442},{"hugoGeneSymbol":"SNX19P4","entrezGeneId":100419047},{"hugoGeneSymbol":"SNX2","entrezGeneId":6643},{"hugoGeneSymbol":"SNX20","entrezGeneId":124460},{"hugoGeneSymbol":"SNX21","entrezGeneId":90203},{"hugoGeneSymbol":"SNX22","entrezGeneId":79856},{"hugoGeneSymbol":"SNX24","entrezGeneId":28966},{"hugoGeneSymbol":"SNX25","entrezGeneId":83891},{"hugoGeneSymbol":"SNX25P1","entrezGeneId":100419028},{"hugoGeneSymbol":"SNX27","entrezGeneId":81609},{"hugoGeneSymbol":"SNX29","entrezGeneId":92017},{"hugoGeneSymbol":"SNX29P1","entrezGeneId":100652781},{"hugoGeneSymbol":"SNX29P2","entrezGeneId":440352},{"hugoGeneSymbol":"SNX2P1","entrezGeneId":100418968},{"hugoGeneSymbol":"SNX2P2","entrezGeneId":100873785},{"hugoGeneSymbol":"SNX3","entrezGeneId":8724},{"hugoGeneSymbol":"SNX30","entrezGeneId":401548},{"hugoGeneSymbol":"SNX31","entrezGeneId":169166},{"hugoGeneSymbol":"SNX32","entrezGeneId":254122},{"hugoGeneSymbol":"SNX33","entrezGeneId":257364},{"hugoGeneSymbol":"SNX33P1","entrezGeneId":100533624},{"hugoGeneSymbol":"SNX3P1X","entrezGeneId":100873884},{"hugoGeneSymbol":"SNX3P1Y","entrezGeneId":100873885},{"hugoGeneSymbol":"SNX4","entrezGeneId":8723},{"hugoGeneSymbol":"SNX5","entrezGeneId":27131},{"hugoGeneSymbol":"SNX5P1","entrezGeneId":100131940},{"hugoGeneSymbol":"SNX5P2","entrezGeneId":728467},{"hugoGeneSymbol":"SNX6","entrezGeneId":58533},{"hugoGeneSymbol":"SNX6P1","entrezGeneId":126506},{"hugoGeneSymbol":"SNX7","entrezGeneId":51375},{"hugoGeneSymbol":"SNX8","entrezGeneId":29886},{"hugoGeneSymbol":"SNX9","entrezGeneId":51429},{"hugoGeneSymbol":"SOAT1","entrezGeneId":6646},{"hugoGeneSymbol":"SOAT2","entrezGeneId":8435},{"hugoGeneSymbol":"SOBP","entrezGeneId":55084},{"hugoGeneSymbol":"SOCS1","entrezGeneId":8651},{"hugoGeneSymbol":"SOCS2","entrezGeneId":8835},{"hugoGeneSymbol":"SOCS2-AS1","entrezGeneId":144481},{"hugoGeneSymbol":"SOCS2P1","entrezGeneId":276719},{"hugoGeneSymbol":"SOCS2P2","entrezGeneId":266701},{"hugoGeneSymbol":"SOCS3","entrezGeneId":9021},{"hugoGeneSymbol":"SOCS4","entrezGeneId":122809},{"hugoGeneSymbol":"SOCS5","entrezGeneId":9655},{"hugoGeneSymbol":"SOCS5P1","entrezGeneId":100420754},{"hugoGeneSymbol":"SOCS5P2","entrezGeneId":100128299},{"hugoGeneSymbol":"SOCS5P3","entrezGeneId":100127945},{"hugoGeneSymbol":"SOCS5P4","entrezGeneId":100132415},{"hugoGeneSymbol":"SOCS5P5","entrezGeneId":643884},{"hugoGeneSymbol":"SOCS6","entrezGeneId":9306},{"hugoGeneSymbol":"SOCS7","entrezGeneId":30837},{"hugoGeneSymbol":"SOD1","entrezGeneId":6647},{"hugoGeneSymbol":"SOD1P1","entrezGeneId":106479055},{"hugoGeneSymbol":"SOD1P2","entrezGeneId":100652974},{"hugoGeneSymbol":"SOD1P3","entrezGeneId":101060005},{"hugoGeneSymbol":"SOD2","entrezGeneId":6648},{"hugoGeneSymbol":"SOD2-OT1","entrezGeneId":100129518},{"hugoGeneSymbol":"SOD2P1","entrezGeneId":100421046},{"hugoGeneSymbol":"SOD3","entrezGeneId":6649},{"hugoGeneSymbol":"SOGA1","entrezGeneId":140710},{"hugoGeneSymbol":"SOGA3","entrezGeneId":387104},{"hugoGeneSymbol":"SOHLH1","entrezGeneId":402381},{"hugoGeneSymbol":"SOHLH2","entrezGeneId":54937},{"hugoGeneSymbol":"SON","entrezGeneId":6651},{"hugoGeneSymbol":"SONP1","entrezGeneId":148300},{"hugoGeneSymbol":"SORBS1","entrezGeneId":10580},{"hugoGeneSymbol":"SORBS2","entrezGeneId":8470},{"hugoGeneSymbol":"SORBS3","entrezGeneId":10174},{"hugoGeneSymbol":"SORCS1","entrezGeneId":114815},{"hugoGeneSymbol":"SORCS2","entrezGeneId":57537},{"hugoGeneSymbol":"SORCS3","entrezGeneId":22986},{"hugoGeneSymbol":"SORCS3-AS1","entrezGeneId":100505890},{"hugoGeneSymbol":"SORD","entrezGeneId":6652},{"hugoGeneSymbol":"SORD2P","entrezGeneId":653381},{"hugoGeneSymbol":"SORL1","entrezGeneId":6653},{"hugoGeneSymbol":"SORT1","entrezGeneId":6272},{"hugoGeneSymbol":"SOS1","entrezGeneId":6654},{"hugoGeneSymbol":"SOS1-IT1","entrezGeneId":100505911},{"hugoGeneSymbol":"SOS2","entrezGeneId":6655},{"hugoGeneSymbol":"SOST","entrezGeneId":50964},{"hugoGeneSymbol":"SOSTDC1","entrezGeneId":25928},{"hugoGeneSymbol":"SOWAHA","entrezGeneId":134548},{"hugoGeneSymbol":"SOWAHB","entrezGeneId":345079},{"hugoGeneSymbol":"SOWAHC","entrezGeneId":65124},{"hugoGeneSymbol":"SOWAHD","entrezGeneId":347454},{"hugoGeneSymbol":"SOX1","entrezGeneId":6656},{"hugoGeneSymbol":"SOX1-OT","entrezGeneId":100505996},{"hugoGeneSymbol":"SOX10","entrezGeneId":6663},{"hugoGeneSymbol":"SOX11","entrezGeneId":6664},{"hugoGeneSymbol":"SOX12","entrezGeneId":6666},{"hugoGeneSymbol":"SOX13","entrezGeneId":9580},{"hugoGeneSymbol":"SOX14","entrezGeneId":8403},{"hugoGeneSymbol":"SOX15","entrezGeneId":6665},{"hugoGeneSymbol":"SOX17","entrezGeneId":64321},{"hugoGeneSymbol":"SOX18","entrezGeneId":54345},{"hugoGeneSymbol":"SOX2","entrezGeneId":6657},{"hugoGeneSymbol":"SOX2-OT","entrezGeneId":347689},{"hugoGeneSymbol":"SOX2-SRR2","entrezGeneId":108281178},{"hugoGeneSymbol":"SOX21","entrezGeneId":11166},{"hugoGeneSymbol":"SOX21-AS1","entrezGeneId":100507533},{"hugoGeneSymbol":"SOX3","entrezGeneId":6658},{"hugoGeneSymbol":"SOX30","entrezGeneId":11063},{"hugoGeneSymbol":"SOX30P1","entrezGeneId":442142},{"hugoGeneSymbol":"SOX4","entrezGeneId":6659},{"hugoGeneSymbol":"SOX5","entrezGeneId":6660},{"hugoGeneSymbol":"SOX5-AS1","entrezGeneId":101928471},{"hugoGeneSymbol":"SOX5P1","entrezGeneId":6661},{"hugoGeneSymbol":"SOX6","entrezGeneId":55553},{"hugoGeneSymbol":"SOX7","entrezGeneId":83595},{"hugoGeneSymbol":"SOX8","entrezGeneId":30812},{"hugoGeneSymbol":"SOX9","entrezGeneId":6662},{"hugoGeneSymbol":"SOX9-AS1","entrezGeneId":400618},{"hugoGeneSymbol":"SOX9CRE1","entrezGeneId":108021841},{"hugoGeneSymbol":"SP1","entrezGeneId":6667},{"hugoGeneSymbol":"SP100","entrezGeneId":6672},{"hugoGeneSymbol":"SP110","entrezGeneId":3431},{"hugoGeneSymbol":"SP140","entrezGeneId":11262},{"hugoGeneSymbol":"SP140L","entrezGeneId":93349},{"hugoGeneSymbol":"SP2","entrezGeneId":6668},{"hugoGeneSymbol":"SP2-AS1","entrezGeneId":100506325},{"hugoGeneSymbol":"SP3","entrezGeneId":6670},{"hugoGeneSymbol":"SP3P","entrezGeneId":160824},{"hugoGeneSymbol":"SP4","entrezGeneId":6671},{"hugoGeneSymbol":"SP5","entrezGeneId":389058},{"hugoGeneSymbol":"SP6","entrezGeneId":80320},{"hugoGeneSymbol":"SP7","entrezGeneId":121340},{"hugoGeneSymbol":"SP8","entrezGeneId":221833},{"hugoGeneSymbol":"SP9","entrezGeneId":100131390},{"hugoGeneSymbol":"SPA17","entrezGeneId":53340},{"hugoGeneSymbol":"SPA17P1","entrezGeneId":171424},{"hugoGeneSymbol":"SPAAR","entrezGeneId":158376},{"hugoGeneSymbol":"SPACA1","entrezGeneId":81833},{"hugoGeneSymbol":"SPACA3","entrezGeneId":124912},{"hugoGeneSymbol":"SPACA4","entrezGeneId":171169},{"hugoGeneSymbol":"SPACA5","entrezGeneId":389852},{"hugoGeneSymbol":"SPACA5B","entrezGeneId":729201},{"hugoGeneSymbol":"SPACA6","entrezGeneId":147650},{"hugoGeneSymbol":"SPACA6P-AS","entrezGeneId":102238594},{"hugoGeneSymbol":"SPACA7","entrezGeneId":122258},{"hugoGeneSymbol":"SPACA9","entrezGeneId":11092},{"hugoGeneSymbol":"SPAG1","entrezGeneId":6674},{"hugoGeneSymbol":"SPAG11A","entrezGeneId":653423},{"hugoGeneSymbol":"SPAG11B","entrezGeneId":10407},{"hugoGeneSymbol":"SPAG16","entrezGeneId":79582},{"hugoGeneSymbol":"SPAG17","entrezGeneId":200162},{"hugoGeneSymbol":"SPAG4","entrezGeneId":6676},{"hugoGeneSymbol":"SPAG5","entrezGeneId":10615},{"hugoGeneSymbol":"SPAG5-AS1","entrezGeneId":100506436},{"hugoGeneSymbol":"SPAG6","entrezGeneId":9576},{"hugoGeneSymbol":"SPAG7","entrezGeneId":9552},{"hugoGeneSymbol":"SPAG8","entrezGeneId":26206},{"hugoGeneSymbol":"SPAG9","entrezGeneId":9043},{"hugoGeneSymbol":"SPAM1","entrezGeneId":6677},{"hugoGeneSymbol":"SPANXA1","entrezGeneId":30014},{"hugoGeneSymbol":"SPANXA2","entrezGeneId":728712},{"hugoGeneSymbol":"SPANXA2-OT1","entrezGeneId":619455},{"hugoGeneSymbol":"SPANXB1","entrezGeneId":728695},{"hugoGeneSymbol":"SPANXC","entrezGeneId":64663},{"hugoGeneSymbol":"SPANXD","entrezGeneId":64648},{"hugoGeneSymbol":"SPANXN1","entrezGeneId":494118},{"hugoGeneSymbol":"SPANXN2","entrezGeneId":494119},{"hugoGeneSymbol":"SPANXN3","entrezGeneId":139067},{"hugoGeneSymbol":"SPANXN4","entrezGeneId":441525},{"hugoGeneSymbol":"SPANXN5","entrezGeneId":494197},{"hugoGeneSymbol":"SPARC","entrezGeneId":6678},{"hugoGeneSymbol":"SPARCL1","entrezGeneId":8404},{"hugoGeneSymbol":"SPART","entrezGeneId":23111},{"hugoGeneSymbol":"SPART-AS1","entrezGeneId":100507135},{"hugoGeneSymbol":"SPAST","entrezGeneId":6683},{"hugoGeneSymbol":"SPATA1","entrezGeneId":100505741},{"hugoGeneSymbol":"SPATA12","entrezGeneId":353324},{"hugoGeneSymbol":"SPATA13","entrezGeneId":221178},{"hugoGeneSymbol":"SPATA13-AS1","entrezGeneId":100874231},{"hugoGeneSymbol":"SPATA16","entrezGeneId":83893},{"hugoGeneSymbol":"SPATA17","entrezGeneId":128153},{"hugoGeneSymbol":"SPATA17-AS1","entrezGeneId":103752555},{"hugoGeneSymbol":"SPATA18","entrezGeneId":132671},{"hugoGeneSymbol":"SPATA19","entrezGeneId":219938},{"hugoGeneSymbol":"SPATA2","entrezGeneId":9825},{"hugoGeneSymbol":"SPATA20","entrezGeneId":64847},{"hugoGeneSymbol":"SPATA20P1","entrezGeneId":100874060},{"hugoGeneSymbol":"SPATA21","entrezGeneId":374955},{"hugoGeneSymbol":"SPATA22","entrezGeneId":84690},{"hugoGeneSymbol":"SPATA24","entrezGeneId":202051},{"hugoGeneSymbol":"SPATA25","entrezGeneId":128497},{"hugoGeneSymbol":"SPATA2L","entrezGeneId":124044},{"hugoGeneSymbol":"SPATA2P1","entrezGeneId":100873966},{"hugoGeneSymbol":"SPATA3","entrezGeneId":130560},{"hugoGeneSymbol":"SPATA3-AS1","entrezGeneId":348761},{"hugoGeneSymbol":"SPATA31A1","entrezGeneId":647060},{"hugoGeneSymbol":"SPATA31A3","entrezGeneId":727830},{"hugoGeneSymbol":"SPATA31A5","entrezGeneId":727905},{"hugoGeneSymbol":"SPATA31A6","entrezGeneId":389730},{"hugoGeneSymbol":"SPATA31A7","entrezGeneId":26165},{"hugoGeneSymbol":"SPATA31B1P","entrezGeneId":404770},{"hugoGeneSymbol":"SPATA31C1","entrezGeneId":441452},{"hugoGeneSymbol":"SPATA31C2","entrezGeneId":645961},{"hugoGeneSymbol":"SPATA31D1","entrezGeneId":389763},{"hugoGeneSymbol":"SPATA31D2P","entrezGeneId":100130636},{"hugoGeneSymbol":"SPATA31D3","entrezGeneId":389762},{"hugoGeneSymbol":"SPATA31D4","entrezGeneId":389761},{"hugoGeneSymbol":"SPATA31D5P","entrezGeneId":347127},{"hugoGeneSymbol":"SPATA31E1","entrezGeneId":286234},{"hugoGeneSymbol":"SPATA31E2P","entrezGeneId":646177},{"hugoGeneSymbol":"SPATA31E3P","entrezGeneId":646507},{"hugoGeneSymbol":"SPATA32","entrezGeneId":124783},{"hugoGeneSymbol":"SPATA33","entrezGeneId":124045},{"hugoGeneSymbol":"SPATA4","entrezGeneId":132851},{"hugoGeneSymbol":"SPATA41","entrezGeneId":388182},{"hugoGeneSymbol":"SPATA42","entrezGeneId":642864},{"hugoGeneSymbol":"SPATA45","entrezGeneId":149643},{"hugoGeneSymbol":"SPATA46","entrezGeneId":284680},{"hugoGeneSymbol":"SPATA48","entrezGeneId":100130988},{"hugoGeneSymbol":"SPATA5","entrezGeneId":166378},{"hugoGeneSymbol":"SPATA5L1","entrezGeneId":79029},{"hugoGeneSymbol":"SPATA6","entrezGeneId":54558},{"hugoGeneSymbol":"SPATA6L","entrezGeneId":55064},{"hugoGeneSymbol":"SPATA7","entrezGeneId":55812},{"hugoGeneSymbol":"SPATA8","entrezGeneId":145946},{"hugoGeneSymbol":"SPATA8-AS1","entrezGeneId":100652749},{"hugoGeneSymbol":"SPATA9","entrezGeneId":83890},{"hugoGeneSymbol":"SPATC1","entrezGeneId":375686},{"hugoGeneSymbol":"SPATC1L","entrezGeneId":84221},{"hugoGeneSymbol":"SPATS1","entrezGeneId":221409},{"hugoGeneSymbol":"SPATS2","entrezGeneId":65244},{"hugoGeneSymbol":"SPATS2L","entrezGeneId":26010},{"hugoGeneSymbol":"SPAX3","entrezGeneId":100379201},{"hugoGeneSymbol":"SPC24","entrezGeneId":147841},{"hugoGeneSymbol":"SPC25","entrezGeneId":57405},{"hugoGeneSymbol":"SPCS1","entrezGeneId":28972},{"hugoGeneSymbol":"SPCS2","entrezGeneId":9789},{"hugoGeneSymbol":"SPCS2P1","entrezGeneId":100131250},{"hugoGeneSymbol":"SPCS2P2","entrezGeneId":644573},{"hugoGeneSymbol":"SPCS2P3","entrezGeneId":100288739},{"hugoGeneSymbol":"SPCS2P4","entrezGeneId":653566},{"hugoGeneSymbol":"SPCS3","entrezGeneId":60559},{"hugoGeneSymbol":"SPD3","entrezGeneId":780922},{"hugoGeneSymbol":"SPDA2","entrezGeneId":791255},{"hugoGeneSymbol":"SPDA3","entrezGeneId":100379218},{"hugoGeneSymbol":"SPDEF","entrezGeneId":25803},{"hugoGeneSymbol":"SPDL1","entrezGeneId":54908},{"hugoGeneSymbol":"SPDT","entrezGeneId":103875461},{"hugoGeneSymbol":"SPDYA","entrezGeneId":245711},{"hugoGeneSymbol":"SPDYC","entrezGeneId":387778},{"hugoGeneSymbol":"SPDYE1","entrezGeneId":285955},{"hugoGeneSymbol":"SPDYE10P","entrezGeneId":643862},{"hugoGeneSymbol":"SPDYE11","entrezGeneId":100996746},{"hugoGeneSymbol":"SPDYE12P","entrezGeneId":100101268},{"hugoGeneSymbol":"SPDYE13P","entrezGeneId":105180390},{"hugoGeneSymbol":"SPDYE14P","entrezGeneId":641776},{"hugoGeneSymbol":"SPDYE15P","entrezGeneId":105180391},{"hugoGeneSymbol":"SPDYE16","entrezGeneId":102723555},{"hugoGeneSymbol":"SPDYE17","entrezGeneId":102723849},{"hugoGeneSymbol":"SPDYE18","entrezGeneId":100505767},{"hugoGeneSymbol":"SPDYE19P","entrezGeneId":100130307},{"hugoGeneSymbol":"SPDYE2","entrezGeneId":441273},{"hugoGeneSymbol":"SPDYE20P","entrezGeneId":101060280},{"hugoGeneSymbol":"SPDYE21P","entrezGeneId":442572},{"hugoGeneSymbol":"SPDYE22P","entrezGeneId":100420854},{"hugoGeneSymbol":"SPDYE2B","entrezGeneId":100310812},{"hugoGeneSymbol":"SPDYE3","entrezGeneId":441272},{"hugoGeneSymbol":"SPDYE4","entrezGeneId":388333},{"hugoGeneSymbol":"SPDYE5","entrezGeneId":442590},{"hugoGeneSymbol":"SPDYE6","entrezGeneId":729597},{"hugoGeneSymbol":"SPDYE7P","entrezGeneId":441251},{"hugoGeneSymbol":"SPDYE8P","entrezGeneId":728524},{"hugoGeneSymbol":"SPDYE9P","entrezGeneId":643909},{"hugoGeneSymbol":"SPECC1","entrezGeneId":92521},{"hugoGeneSymbol":"SPECC1L","entrezGeneId":23384},{"hugoGeneSymbol":"SPECC1L-ADORA2A","entrezGeneId":101730217},{"hugoGeneSymbol":"SPEF1","entrezGeneId":25876},{"hugoGeneSymbol":"SPEF2","entrezGeneId":79925},{"hugoGeneSymbol":"SPEG","entrezGeneId":10290},{"hugoGeneSymbol":"SPEM1","entrezGeneId":374768},{"hugoGeneSymbol":"SPEM2","entrezGeneId":201243},{"hugoGeneSymbol":"SPEM3","entrezGeneId":107983988},{"hugoGeneSymbol":"SPEN","entrezGeneId":23013},{"hugoGeneSymbol":"SPERT","entrezGeneId":220082},{"hugoGeneSymbol":"SPESP1","entrezGeneId":246777},{"hugoGeneSymbol":"SPG11","entrezGeneId":80208},{"hugoGeneSymbol":"SPG14","entrezGeneId":57309},{"hugoGeneSymbol":"SPG16","entrezGeneId":57760},{"hugoGeneSymbol":"SPG19","entrezGeneId":140907},{"hugoGeneSymbol":"SPG21","entrezGeneId":51324},{"hugoGeneSymbol":"SPG23","entrezGeneId":353293},{"hugoGeneSymbol":"SPG24","entrezGeneId":338090},{"hugoGeneSymbol":"SPG25","entrezGeneId":387583},{"hugoGeneSymbol":"SPG27","entrezGeneId":414886},{"hugoGeneSymbol":"SPG29","entrezGeneId":619379},{"hugoGeneSymbol":"SPG32","entrezGeneId":724107},{"hugoGeneSymbol":"SPG34","entrezGeneId":724110},{"hugoGeneSymbol":"SPG36","entrezGeneId":791228},{"hugoGeneSymbol":"SPG37","entrezGeneId":100049159},{"hugoGeneSymbol":"SPG38","entrezGeneId":100049707},{"hugoGeneSymbol":"SPG3B","entrezGeneId":6682},{"hugoGeneSymbol":"SPG41","entrezGeneId":100359402},{"hugoGeneSymbol":"SPG45","entrezGeneId":100322879},{"hugoGeneSymbol":"SPG56","entrezGeneId":109729098},{"hugoGeneSymbol":"SPG5B","entrezGeneId":6685},{"hugoGeneSymbol":"SPG7","entrezGeneId":6687},{"hugoGeneSymbol":"SPGF2","entrezGeneId":100653377},{"hugoGeneSymbol":"SPGFX2","entrezGeneId":100820759},{"hugoGeneSymbol":"SPHAR","entrezGeneId":10638},{"hugoGeneSymbol":"SPHK1","entrezGeneId":8877},{"hugoGeneSymbol":"SPHK2","entrezGeneId":56848},{"hugoGeneSymbol":"SPHKAP","entrezGeneId":80309},{"hugoGeneSymbol":"SPI1","entrezGeneId":6688},{"hugoGeneSymbol":"SPIB","entrezGeneId":6689},{"hugoGeneSymbol":"SPIC","entrezGeneId":121599},{"hugoGeneSymbol":"SPICE1","entrezGeneId":152185},{"hugoGeneSymbol":"SPIDR","entrezGeneId":23514},{"hugoGeneSymbol":"SPIN1","entrezGeneId":10927},{"hugoGeneSymbol":"SPIN2A","entrezGeneId":54466},{"hugoGeneSymbol":"SPIN2B","entrezGeneId":474343},{"hugoGeneSymbol":"SPIN3","entrezGeneId":169981},{"hugoGeneSymbol":"SPIN4","entrezGeneId":139886},{"hugoGeneSymbol":"SPIN4-AS1","entrezGeneId":100874033},{"hugoGeneSymbol":"SPINDOC","entrezGeneId":144097},{"hugoGeneSymbol":"SPINK1","entrezGeneId":6690},{"hugoGeneSymbol":"SPINK13","entrezGeneId":153218},{"hugoGeneSymbol":"SPINK14","entrezGeneId":408187},{"hugoGeneSymbol":"SPINK2","entrezGeneId":6691},{"hugoGeneSymbol":"SPINK4","entrezGeneId":27290},{"hugoGeneSymbol":"SPINK5","entrezGeneId":11005},{"hugoGeneSymbol":"SPINK6","entrezGeneId":404203},{"hugoGeneSymbol":"SPINK7","entrezGeneId":84651},{"hugoGeneSymbol":"SPINK8","entrezGeneId":646424},{"hugoGeneSymbol":"SPINK9","entrezGeneId":643394},{"hugoGeneSymbol":"SPINT1","entrezGeneId":6692},{"hugoGeneSymbol":"SPINT1-AS1","entrezGeneId":102724362},{"hugoGeneSymbol":"SPINT2","entrezGeneId":10653},{"hugoGeneSymbol":"SPINT3","entrezGeneId":10816},{"hugoGeneSymbol":"SPINT4","entrezGeneId":391253},{"hugoGeneSymbol":"SPINT5P","entrezGeneId":140863},{"hugoGeneSymbol":"SPIRE1","entrezGeneId":56907},{"hugoGeneSymbol":"SPIRE2","entrezGeneId":84501},{"hugoGeneSymbol":"SPN","entrezGeneId":6693},{"hugoGeneSymbol":"SPNS1","entrezGeneId":83985},{"hugoGeneSymbol":"SPNS2","entrezGeneId":124976},{"hugoGeneSymbol":"SPNS3","entrezGeneId":201305},{"hugoGeneSymbol":"SPO11","entrezGeneId":23626},{"hugoGeneSymbol":"SPOAN","entrezGeneId":619394},{"hugoGeneSymbol":"SPOCD1","entrezGeneId":90853},{"hugoGeneSymbol":"SPOCK1","entrezGeneId":6695},{"hugoGeneSymbol":"SPOCK2","entrezGeneId":9806},{"hugoGeneSymbol":"SPOCK3","entrezGeneId":50859},{"hugoGeneSymbol":"SPON1","entrezGeneId":10418},{"hugoGeneSymbol":"SPON1-AS1","entrezGeneId":109729138},{"hugoGeneSymbol":"SPON2","entrezGeneId":10417},{"hugoGeneSymbol":"SPOP","entrezGeneId":8405},{"hugoGeneSymbol":"SPOPL","entrezGeneId":339745},{"hugoGeneSymbol":"SPOUT1","entrezGeneId":51490},{"hugoGeneSymbol":"SPP1","entrezGeneId":6696},{"hugoGeneSymbol":"SPP2","entrezGeneId":6694},{"hugoGeneSymbol":"SPPL2A","entrezGeneId":84888},{"hugoGeneSymbol":"SPPL2B","entrezGeneId":56928},{"hugoGeneSymbol":"SPPL2C","entrezGeneId":162540},{"hugoGeneSymbol":"SPPL3","entrezGeneId":121665},{"hugoGeneSymbol":"SPPM","entrezGeneId":8090},{"hugoGeneSymbol":"SPR","entrezGeneId":6697},{"hugoGeneSymbol":"SPRED1","entrezGeneId":161742},{"hugoGeneSymbol":"SPRED2","entrezGeneId":200734},{"hugoGeneSymbol":"SPRED3","entrezGeneId":399473},{"hugoGeneSymbol":"SPRN","entrezGeneId":503542},{"hugoGeneSymbol":"SPRNP1","entrezGeneId":399833},{"hugoGeneSymbol":"SPRR1A","entrezGeneId":6698},{"hugoGeneSymbol":"SPRR1B","entrezGeneId":6699},{"hugoGeneSymbol":"SPRR2A","entrezGeneId":6700},{"hugoGeneSymbol":"SPRR2B","entrezGeneId":6701},{"hugoGeneSymbol":"SPRR2C","entrezGeneId":6702},{"hugoGeneSymbol":"SPRR2D","entrezGeneId":6703},{"hugoGeneSymbol":"SPRR2E","entrezGeneId":6704},{"hugoGeneSymbol":"SPRR2F","entrezGeneId":6705},{"hugoGeneSymbol":"SPRR2G","entrezGeneId":6706},{"hugoGeneSymbol":"SPRR3","entrezGeneId":6707},{"hugoGeneSymbol":"SPRR4","entrezGeneId":163778},{"hugoGeneSymbol":"SPRR5","entrezGeneId":110806278},{"hugoGeneSymbol":"SPRTN","entrezGeneId":83932},{"hugoGeneSymbol":"SPRY1","entrezGeneId":10252},{"hugoGeneSymbol":"SPRY2","entrezGeneId":10253},{"hugoGeneSymbol":"SPRY3","entrezGeneId":10251},{"hugoGeneSymbol":"SPRY4","entrezGeneId":81848},{"hugoGeneSymbol":"SPRY4-AS1","entrezGeneId":101926941},{"hugoGeneSymbol":"SPRY4-IT1","entrezGeneId":100642175},{"hugoGeneSymbol":"SPRYD3","entrezGeneId":84926},{"hugoGeneSymbol":"SPRYD4","entrezGeneId":283377},{"hugoGeneSymbol":"SPRYD7","entrezGeneId":57213},{"hugoGeneSymbol":"SPRYD7P1","entrezGeneId":100130843},{"hugoGeneSymbol":"SPSB1","entrezGeneId":80176},{"hugoGeneSymbol":"SPSB2","entrezGeneId":84727},{"hugoGeneSymbol":"SPSB3","entrezGeneId":90864},{"hugoGeneSymbol":"SPSB4","entrezGeneId":92369},{"hugoGeneSymbol":"SPTA1","entrezGeneId":6708},{"hugoGeneSymbol":"SPTAN1","entrezGeneId":6709},{"hugoGeneSymbol":"SPTB","entrezGeneId":6710},{"hugoGeneSymbol":"SPTBN1","entrezGeneId":6711},{"hugoGeneSymbol":"SPTBN2","entrezGeneId":6712},{"hugoGeneSymbol":"SPTBN4","entrezGeneId":57731},{"hugoGeneSymbol":"SPTBN5","entrezGeneId":51332},{"hugoGeneSymbol":"SPTLC1","entrezGeneId":10558},{"hugoGeneSymbol":"SPTLC1P1","entrezGeneId":100874511},{"hugoGeneSymbol":"SPTLC1P2","entrezGeneId":100874498},{"hugoGeneSymbol":"SPTLC1P3","entrezGeneId":100874499},{"hugoGeneSymbol":"SPTLC1P4","entrezGeneId":100874500},{"hugoGeneSymbol":"SPTLC1P5","entrezGeneId":100874512},{"hugoGeneSymbol":"SPTLC2","entrezGeneId":9517},{"hugoGeneSymbol":"SPTLC3","entrezGeneId":55304},{"hugoGeneSymbol":"SPTSSA","entrezGeneId":171546},{"hugoGeneSymbol":"SPTSSB","entrezGeneId":165679},{"hugoGeneSymbol":"SPTY2D1","entrezGeneId":144108},{"hugoGeneSymbol":"SPTY2D1OS","entrezGeneId":100506540},{"hugoGeneSymbol":"SPX","entrezGeneId":80763},{"hugoGeneSymbol":"SPZ1","entrezGeneId":84654},{"hugoGeneSymbol":"SQLE","entrezGeneId":6713},{"hugoGeneSymbol":"SQOR","entrezGeneId":58472},{"hugoGeneSymbol":"SQSTM1","entrezGeneId":8878},{"hugoGeneSymbol":"SQSTM1P1","entrezGeneId":106480677},{"hugoGeneSymbol":"SQTL1","entrezGeneId":100188827},{"hugoGeneSymbol":"SQTL2","entrezGeneId":100188828},{"hugoGeneSymbol":"SRA1","entrezGeneId":10011},{"hugoGeneSymbol":"SRARP","entrezGeneId":149563},{"hugoGeneSymbol":"SRBD1","entrezGeneId":55133},{"hugoGeneSymbol":"SRC","entrezGeneId":6714},{"hugoGeneSymbol":"SRCAP","entrezGeneId":10847},{"hugoGeneSymbol":"SRCIN1","entrezGeneId":80725},{"hugoGeneSymbol":"SRD5A1","entrezGeneId":6715},{"hugoGeneSymbol":"SRD5A1P1","entrezGeneId":6719},{"hugoGeneSymbol":"SRD5A2","entrezGeneId":6716},{"hugoGeneSymbol":"SRD5A3","entrezGeneId":79644},{"hugoGeneSymbol":"SRD5A3-AS1","entrezGeneId":100506462},{"hugoGeneSymbol":"SRD5A3P1","entrezGeneId":390203},{"hugoGeneSymbol":"SREBF1","entrezGeneId":6720},{"hugoGeneSymbol":"SREBF2","entrezGeneId":6721},{"hugoGeneSymbol":"SREK1","entrezGeneId":140890},{"hugoGeneSymbol":"SREK1IP1","entrezGeneId":285672},{"hugoGeneSymbol":"SRF","entrezGeneId":6722},{"hugoGeneSymbol":"SRFBP1","entrezGeneId":153443},{"hugoGeneSymbol":"SRGAP1","entrezGeneId":57522},{"hugoGeneSymbol":"SRGAP2","entrezGeneId":23380},{"hugoGeneSymbol":"SRGAP2-AS1","entrezGeneId":100873165},{"hugoGeneSymbol":"SRGAP2B","entrezGeneId":647135},{"hugoGeneSymbol":"SRGAP2C","entrezGeneId":653464},{"hugoGeneSymbol":"SRGAP2D","entrezGeneId":100996712},{"hugoGeneSymbol":"SRGAP3","entrezGeneId":9901},{"hugoGeneSymbol":"SRGAP3-AS1","entrezGeneId":100874103},{"hugoGeneSymbol":"SRGAP3-AS2","entrezGeneId":101927416},{"hugoGeneSymbol":"SRGAP3-AS3","entrezGeneId":100288831},{"hugoGeneSymbol":"SRGAP3-AS4","entrezGeneId":101927440},{"hugoGeneSymbol":"SRGN","entrezGeneId":5552},{"hugoGeneSymbol":"SRGNP1","entrezGeneId":106480246},{"hugoGeneSymbol":"SRI","entrezGeneId":6717},{"hugoGeneSymbol":"SRIP1","entrezGeneId":6644},{"hugoGeneSymbol":"SRIP2","entrezGeneId":100499485},{"hugoGeneSymbol":"SRIP3","entrezGeneId":100861435},{"hugoGeneSymbol":"SRL","entrezGeneId":6345},{"hugoGeneSymbol":"SRM","entrezGeneId":6723},{"hugoGeneSymbol":"SRMP1","entrezGeneId":170552},{"hugoGeneSymbol":"SRMP2","entrezGeneId":326269},{"hugoGeneSymbol":"SRMS","entrezGeneId":6725},{"hugoGeneSymbol":"SRP14","entrezGeneId":6727},{"hugoGeneSymbol":"SRP14-AS1","entrezGeneId":100131089},{"hugoGeneSymbol":"SRP14P1","entrezGeneId":390284},{"hugoGeneSymbol":"SRP14P2","entrezGeneId":111644132},{"hugoGeneSymbol":"SRP14P3","entrezGeneId":111644142},{"hugoGeneSymbol":"SRP14P4","entrezGeneId":111644147},{"hugoGeneSymbol":"SRP19","entrezGeneId":6728},{"hugoGeneSymbol":"SRP54","entrezGeneId":6729},{"hugoGeneSymbol":"SRP54-AS1","entrezGeneId":100506157},{"hugoGeneSymbol":"SRP68","entrezGeneId":6730},{"hugoGeneSymbol":"SRP68P1","entrezGeneId":252841},{"hugoGeneSymbol":"SRP68P2","entrezGeneId":252840},{"hugoGeneSymbol":"SRP68P3","entrezGeneId":347717},{"hugoGeneSymbol":"SRP72","entrezGeneId":6731},{"hugoGeneSymbol":"SRP72P1","entrezGeneId":100420752},{"hugoGeneSymbol":"SRP72P2","entrezGeneId":153932},{"hugoGeneSymbol":"SRP9","entrezGeneId":6726},{"hugoGeneSymbol":"SRP9P1","entrezGeneId":653226},{"hugoGeneSymbol":"SRPK1","entrezGeneId":6732},{"hugoGeneSymbol":"SRPK2","entrezGeneId":6733},{"hugoGeneSymbol":"SRPK2P","entrezGeneId":100419416},{"hugoGeneSymbol":"SRPK3","entrezGeneId":26576},{"hugoGeneSymbol":"SRPRA","entrezGeneId":6734},{"hugoGeneSymbol":"SRPRB","entrezGeneId":58477},{"hugoGeneSymbol":"SRPX","entrezGeneId":8406},{"hugoGeneSymbol":"SRPX2","entrezGeneId":27286},{"hugoGeneSymbol":"SRR","entrezGeneId":63826},{"hugoGeneSymbol":"SRRD","entrezGeneId":402055},{"hugoGeneSymbol":"SRRM1","entrezGeneId":10250},{"hugoGeneSymbol":"SRRM1P1","entrezGeneId":401475},{"hugoGeneSymbol":"SRRM1P2","entrezGeneId":100420834},{"hugoGeneSymbol":"SRRM1P3","entrezGeneId":100130190},{"hugoGeneSymbol":"SRRM2","entrezGeneId":23524},{"hugoGeneSymbol":"SRRM2-AS1","entrezGeneId":100128788},{"hugoGeneSymbol":"SRRM3","entrezGeneId":222183},{"hugoGeneSymbol":"SRRM4","entrezGeneId":84530},{"hugoGeneSymbol":"SRRM5","entrezGeneId":100170229},{"hugoGeneSymbol":"SRRT","entrezGeneId":51593},{"hugoGeneSymbol":"SRSF1","entrezGeneId":6426},{"hugoGeneSymbol":"SRSF10","entrezGeneId":10772},{"hugoGeneSymbol":"SRSF10P1","entrezGeneId":100130799},{"hugoGeneSymbol":"SRSF10P2","entrezGeneId":171472},{"hugoGeneSymbol":"SRSF11","entrezGeneId":9295},{"hugoGeneSymbol":"SRSF11P1","entrezGeneId":100421296},{"hugoGeneSymbol":"SRSF12","entrezGeneId":135295},{"hugoGeneSymbol":"SRSF1P1","entrezGeneId":100128625},{"hugoGeneSymbol":"SRSF2","entrezGeneId":6427},{"hugoGeneSymbol":"SRSF3","entrezGeneId":6428},{"hugoGeneSymbol":"SRSF4","entrezGeneId":6429},{"hugoGeneSymbol":"SRSF5","entrezGeneId":6430},{"hugoGeneSymbol":"SRSF6","entrezGeneId":6431},{"hugoGeneSymbol":"SRSF7","entrezGeneId":6432},{"hugoGeneSymbol":"SRSF8","entrezGeneId":10929},{"hugoGeneSymbol":"SRSF9","entrezGeneId":8683},{"hugoGeneSymbol":"SRSF9P1","entrezGeneId":54021},{"hugoGeneSymbol":"SRXN1","entrezGeneId":140809},{"hugoGeneSymbol":"SRXX2","entrezGeneId":100653378},{"hugoGeneSymbol":"SRXX3","entrezGeneId":100653372},{"hugoGeneSymbol":"SRXY10","entrezGeneId":106003269},{"hugoGeneSymbol":"SRY","entrezGeneId":6736},{"hugoGeneSymbol":"SS18","entrezGeneId":6760},{"hugoGeneSymbol":"SS18L1","entrezGeneId":26039},{"hugoGeneSymbol":"SS18L2","entrezGeneId":51188},{"hugoGeneSymbol":"SS18L2P1","entrezGeneId":646213},{"hugoGeneSymbol":"SS18L2P2","entrezGeneId":724101},{"hugoGeneSymbol":"SS3","entrezGeneId":100196919},{"hugoGeneSymbol":"SSAV1","entrezGeneId":6739},{"hugoGeneSymbol":"SSB","entrezGeneId":6741},{"hugoGeneSymbol":"SSBP1","entrezGeneId":6742},{"hugoGeneSymbol":"SSBP2","entrezGeneId":23635},{"hugoGeneSymbol":"SSBP3","entrezGeneId":23648},{"hugoGeneSymbol":"SSBP3-AS1","entrezGeneId":619518},{"hugoGeneSymbol":"SSBP4","entrezGeneId":170463},{"hugoGeneSymbol":"SSC4D","entrezGeneId":136853},{"hugoGeneSymbol":"SSC5D","entrezGeneId":284297},{"hugoGeneSymbol":"SSD","entrezGeneId":404713},{"hugoGeneSymbol":"SSFA2","entrezGeneId":6744},{"hugoGeneSymbol":"SSH1","entrezGeneId":54434},{"hugoGeneSymbol":"SSH2","entrezGeneId":85464},{"hugoGeneSymbol":"SSH3","entrezGeneId":54961},{"hugoGeneSymbol":"SSMEM1","entrezGeneId":136263},{"hugoGeneSymbol":"SSNA1","entrezGeneId":8636},{"hugoGeneSymbol":"SSPN","entrezGeneId":8082},{"hugoGeneSymbol":"SSPO","entrezGeneId":23145},{"hugoGeneSymbol":"SSR1","entrezGeneId":6745},{"hugoGeneSymbol":"SSR1P1","entrezGeneId":100420476},{"hugoGeneSymbol":"SSR1P2","entrezGeneId":100131189},{"hugoGeneSymbol":"SSR2","entrezGeneId":6746},{"hugoGeneSymbol":"SSR3","entrezGeneId":6747},{"hugoGeneSymbol":"SSR4","entrezGeneId":6748},{"hugoGeneSymbol":"SSR4P1","entrezGeneId":728039},{"hugoGeneSymbol":"SSRP1","entrezGeneId":6749},{"hugoGeneSymbol":"SSSCA1","entrezGeneId":10534},{"hugoGeneSymbol":"SSSCA1-AS1","entrezGeneId":254100},{"hugoGeneSymbol":"SST","entrezGeneId":6750},{"hugoGeneSymbol":"SSTR1","entrezGeneId":6751},{"hugoGeneSymbol":"SSTR2","entrezGeneId":6752},{"hugoGeneSymbol":"SSTR3","entrezGeneId":6753},{"hugoGeneSymbol":"SSTR4","entrezGeneId":6754},{"hugoGeneSymbol":"SSTR5","entrezGeneId":6755},{"hugoGeneSymbol":"SSTR5-AS1","entrezGeneId":146336},{"hugoGeneSymbol":"SSU72","entrezGeneId":29101},{"hugoGeneSymbol":"SSU72P1","entrezGeneId":286528},{"hugoGeneSymbol":"SSU72P2","entrezGeneId":390031},{"hugoGeneSymbol":"SSU72P3","entrezGeneId":143506},{"hugoGeneSymbol":"SSU72P4","entrezGeneId":441584},{"hugoGeneSymbol":"SSU72P5","entrezGeneId":196120},{"hugoGeneSymbol":"SSU72P6","entrezGeneId":643263},{"hugoGeneSymbol":"SSU72P7","entrezGeneId":390033},{"hugoGeneSymbol":"SSU72P8","entrezGeneId":136157},{"hugoGeneSymbol":"SSUH2","entrezGeneId":51066},{"hugoGeneSymbol":"SSX1","entrezGeneId":6756},{"hugoGeneSymbol":"SSX2","entrezGeneId":6757},{"hugoGeneSymbol":"SSX2B","entrezGeneId":727837},{"hugoGeneSymbol":"SSX2IP","entrezGeneId":117178},{"hugoGeneSymbol":"SSX3","entrezGeneId":10214},{"hugoGeneSymbol":"SSX4","entrezGeneId":6759},{"hugoGeneSymbol":"SSX4B","entrezGeneId":548313},{"hugoGeneSymbol":"SSX5","entrezGeneId":6758},{"hugoGeneSymbol":"SSX6","entrezGeneId":280657},{"hugoGeneSymbol":"SSX7","entrezGeneId":280658},{"hugoGeneSymbol":"SSX8","entrezGeneId":280659},{"hugoGeneSymbol":"SSX9","entrezGeneId":280660},{"hugoGeneSymbol":"SSXP1","entrezGeneId":100996564},{"hugoGeneSymbol":"SSXP10","entrezGeneId":100287603},{"hugoGeneSymbol":"SSXP3","entrezGeneId":326341},{"hugoGeneSymbol":"SSXP4","entrezGeneId":326337},{"hugoGeneSymbol":"SSXP5","entrezGeneId":326339},{"hugoGeneSymbol":"SSXP6","entrezGeneId":326587},{"hugoGeneSymbol":"SSXP7","entrezGeneId":326590},{"hugoGeneSymbol":"SSXP8","entrezGeneId":326585},{"hugoGeneSymbol":"SSXP9","entrezGeneId":326586},{"hugoGeneSymbol":"ST11","entrezGeneId":8466},{"hugoGeneSymbol":"ST13","entrezGeneId":6767},{"hugoGeneSymbol":"ST13P1","entrezGeneId":729992},{"hugoGeneSymbol":"ST13P10","entrezGeneId":399950},{"hugoGeneSymbol":"ST13P11","entrezGeneId":728162},{"hugoGeneSymbol":"ST13P12","entrezGeneId":100127911},{"hugoGeneSymbol":"ST13P13","entrezGeneId":401648},{"hugoGeneSymbol":"ST13P14","entrezGeneId":100422602},{"hugoGeneSymbol":"ST13P15","entrezGeneId":100422603},{"hugoGeneSymbol":"ST13P16","entrezGeneId":100422605},{"hugoGeneSymbol":"ST13P17","entrezGeneId":442730},{"hugoGeneSymbol":"ST13P18","entrezGeneId":643310},{"hugoGeneSymbol":"ST13P19","entrezGeneId":100131961},{"hugoGeneSymbol":"ST13P2","entrezGeneId":344328},{"hugoGeneSymbol":"ST13P20","entrezGeneId":729828},{"hugoGeneSymbol":"ST13P21","entrezGeneId":642818},{"hugoGeneSymbol":"ST13P22","entrezGeneId":100874521},{"hugoGeneSymbol":"ST13P3","entrezGeneId":144638},{"hugoGeneSymbol":"ST13P4","entrezGeneId":145165},{"hugoGeneSymbol":"ST13P5","entrezGeneId":144106},{"hugoGeneSymbol":"ST13P6","entrezGeneId":157530},{"hugoGeneSymbol":"ST13P7","entrezGeneId":155019},{"hugoGeneSymbol":"ST13P8","entrezGeneId":338805},{"hugoGeneSymbol":"ST13P9","entrezGeneId":390301},{"hugoGeneSymbol":"ST14","entrezGeneId":6768},{"hugoGeneSymbol":"ST18","entrezGeneId":9705},{"hugoGeneSymbol":"ST2","entrezGeneId":6761},{"hugoGeneSymbol":"ST20","entrezGeneId":400410},{"hugoGeneSymbol":"ST20-AS1","entrezGeneId":283687},{"hugoGeneSymbol":"ST20-MTHFS","entrezGeneId":100528021},{"hugoGeneSymbol":"ST3","entrezGeneId":6762},{"hugoGeneSymbol":"ST3GAL1","entrezGeneId":6482},{"hugoGeneSymbol":"ST3GAL1P1","entrezGeneId":100421804},{"hugoGeneSymbol":"ST3GAL2","entrezGeneId":6483},{"hugoGeneSymbol":"ST3GAL3","entrezGeneId":6487},{"hugoGeneSymbol":"ST3GAL4","entrezGeneId":6484},{"hugoGeneSymbol":"ST3GAL5","entrezGeneId":8869},{"hugoGeneSymbol":"ST3GAL5-AS1","entrezGeneId":101928113},{"hugoGeneSymbol":"ST3GAL5P1","entrezGeneId":100421795},{"hugoGeneSymbol":"ST3GAL6","entrezGeneId":10402},{"hugoGeneSymbol":"ST3GAL6-AS1","entrezGeneId":100874207},{"hugoGeneSymbol":"ST5","entrezGeneId":6764},{"hugoGeneSymbol":"ST6GAL1","entrezGeneId":6480},{"hugoGeneSymbol":"ST6GAL2","entrezGeneId":84620},{"hugoGeneSymbol":"ST6GAL2-IT1","entrezGeneId":100874354},{"hugoGeneSymbol":"ST6GALNAC1","entrezGeneId":55808},{"hugoGeneSymbol":"ST6GALNAC2","entrezGeneId":10610},{"hugoGeneSymbol":"ST6GALNAC2P1","entrezGeneId":100422716},{"hugoGeneSymbol":"ST6GALNAC3","entrezGeneId":256435},{"hugoGeneSymbol":"ST6GALNAC4","entrezGeneId":27090},{"hugoGeneSymbol":"ST6GALNAC4P1","entrezGeneId":100874524},{"hugoGeneSymbol":"ST6GALNAC5","entrezGeneId":81849},{"hugoGeneSymbol":"ST6GALNAC6","entrezGeneId":30815},{"hugoGeneSymbol":"ST7","entrezGeneId":7982},{"hugoGeneSymbol":"ST7-AS1","entrezGeneId":93653},{"hugoGeneSymbol":"ST7-AS2","entrezGeneId":93654},{"hugoGeneSymbol":"ST7-OT3","entrezGeneId":93655},{"hugoGeneSymbol":"ST7-OT4","entrezGeneId":338069},{"hugoGeneSymbol":"ST7L","entrezGeneId":54879},{"hugoGeneSymbol":"ST8","entrezGeneId":6765},{"hugoGeneSymbol":"ST8SIA1","entrezGeneId":6489},{"hugoGeneSymbol":"ST8SIA2","entrezGeneId":8128},{"hugoGeneSymbol":"ST8SIA3","entrezGeneId":51046},{"hugoGeneSymbol":"ST8SIA4","entrezGeneId":7903},{"hugoGeneSymbol":"ST8SIA5","entrezGeneId":29906},{"hugoGeneSymbol":"ST8SIA6","entrezGeneId":338596},{"hugoGeneSymbol":"ST8SIA6-AS1","entrezGeneId":100128098},{"hugoGeneSymbol":"STAB1","entrezGeneId":23166},{"hugoGeneSymbol":"STAB2","entrezGeneId":55576},{"hugoGeneSymbol":"STAC","entrezGeneId":6769},{"hugoGeneSymbol":"STAC2","entrezGeneId":342667},{"hugoGeneSymbol":"STAC3","entrezGeneId":246329},{"hugoGeneSymbol":"STAG1","entrezGeneId":10274},{"hugoGeneSymbol":"STAG2","entrezGeneId":10735},{"hugoGeneSymbol":"STAG3","entrezGeneId":10734},{"hugoGeneSymbol":"STAG3L1","entrezGeneId":54441},{"hugoGeneSymbol":"STAG3L2","entrezGeneId":442582},{"hugoGeneSymbol":"STAG3L3","entrezGeneId":442578},{"hugoGeneSymbol":"STAG3L4","entrezGeneId":64940},{"hugoGeneSymbol":"STAG3L5P","entrezGeneId":101735302},{"hugoGeneSymbol":"STAG3L5P-PVRIG2P-PILRB","entrezGeneId":101752399},{"hugoGeneSymbol":"STAM","entrezGeneId":8027},{"hugoGeneSymbol":"STAM-AS1","entrezGeneId":102723166},{"hugoGeneSymbol":"STAM2","entrezGeneId":10254},{"hugoGeneSymbol":"STAMBP","entrezGeneId":10617},{"hugoGeneSymbol":"STAMBPL1","entrezGeneId":57559},{"hugoGeneSymbol":"STAP1","entrezGeneId":26228},{"hugoGeneSymbol":"STAP2","entrezGeneId":55620},{"hugoGeneSymbol":"STAR","entrezGeneId":6770},{"hugoGeneSymbol":"STARD10","entrezGeneId":10809},{"hugoGeneSymbol":"STARD13","entrezGeneId":90627},{"hugoGeneSymbol":"STARD13-AS","entrezGeneId":100874241},{"hugoGeneSymbol":"STARD13-IT1","entrezGeneId":100874373},{"hugoGeneSymbol":"STARD3","entrezGeneId":10948},{"hugoGeneSymbol":"STARD3NL","entrezGeneId":83930},{"hugoGeneSymbol":"STARD4","entrezGeneId":134429},{"hugoGeneSymbol":"STARD4-AS1","entrezGeneId":100505678},{"hugoGeneSymbol":"STARD5","entrezGeneId":80765},{"hugoGeneSymbol":"STARD6","entrezGeneId":147323},{"hugoGeneSymbol":"STARD7","entrezGeneId":56910},{"hugoGeneSymbol":"STARD7-AS1","entrezGeneId":285033},{"hugoGeneSymbol":"STARD8","entrezGeneId":9754},{"hugoGeneSymbol":"STARD9","entrezGeneId":57519},{"hugoGeneSymbol":"STARP1","entrezGeneId":6771},{"hugoGeneSymbol":"STAT1","entrezGeneId":6772},{"hugoGeneSymbol":"STAT2","entrezGeneId":6773},{"hugoGeneSymbol":"STAT3","entrezGeneId":6774},{"hugoGeneSymbol":"STAT4","entrezGeneId":6775},{"hugoGeneSymbol":"STAT5A","entrezGeneId":6776},{"hugoGeneSymbol":"STAT5B","entrezGeneId":6777},{"hugoGeneSymbol":"STAT6","entrezGeneId":6778},{"hugoGeneSymbol":"STATH","entrezGeneId":6779},{"hugoGeneSymbol":"STAU1","entrezGeneId":6780},{"hugoGeneSymbol":"STAU2","entrezGeneId":27067},{"hugoGeneSymbol":"STAU2-AS1","entrezGeneId":100128126},{"hugoGeneSymbol":"STBD1","entrezGeneId":8987},{"hugoGeneSymbol":"STBMS1","entrezGeneId":100188805},{"hugoGeneSymbol":"STC1","entrezGeneId":6781},{"hugoGeneSymbol":"STC2","entrezGeneId":8614},{"hugoGeneSymbol":"STEAP1","entrezGeneId":26872},{"hugoGeneSymbol":"STEAP1B","entrezGeneId":256227},{"hugoGeneSymbol":"STEAP2","entrezGeneId":261729},{"hugoGeneSymbol":"STEAP2-AS1","entrezGeneId":100874100},{"hugoGeneSymbol":"STEAP3","entrezGeneId":55240},{"hugoGeneSymbol":"STEAP3-AS1","entrezGeneId":100874111},{"hugoGeneSymbol":"STEAP4","entrezGeneId":79689},{"hugoGeneSymbol":"STH","entrezGeneId":246744},{"hugoGeneSymbol":"STHAG5","entrezGeneId":100188748},{"hugoGeneSymbol":"STIL","entrezGeneId":6491},{"hugoGeneSymbol":"STIM1","entrezGeneId":6786},{"hugoGeneSymbol":"STIM2","entrezGeneId":57620},{"hugoGeneSymbol":"STIMATE","entrezGeneId":375346},{"hugoGeneSymbol":"STIN2-VNTR","entrezGeneId":110806307},{"hugoGeneSymbol":"STIP1","entrezGeneId":10963},{"hugoGeneSymbol":"STIP1P1","entrezGeneId":100420434},{"hugoGeneSymbol":"STIP1P2","entrezGeneId":100420436},{"hugoGeneSymbol":"STIP1P3","entrezGeneId":441505},{"hugoGeneSymbol":"STK10","entrezGeneId":6793},{"hugoGeneSymbol":"STK11","entrezGeneId":6794},{"hugoGeneSymbol":"STK11IP","entrezGeneId":114790},{"hugoGeneSymbol":"STK16","entrezGeneId":8576},{"hugoGeneSymbol":"STK16P1","entrezGeneId":326107},{"hugoGeneSymbol":"STK17A","entrezGeneId":9263},{"hugoGeneSymbol":"STK17B","entrezGeneId":9262},{"hugoGeneSymbol":"STK19","entrezGeneId":8859},{"hugoGeneSymbol":"STK19B","entrezGeneId":373159},{"hugoGeneSymbol":"STK24","entrezGeneId":8428},{"hugoGeneSymbol":"STK24-AS1","entrezGeneId":100874069},{"hugoGeneSymbol":"STK24P1","entrezGeneId":100421784},{"hugoGeneSymbol":"STK25","entrezGeneId":10494},{"hugoGeneSymbol":"STK25P1","entrezGeneId":100533662},{"hugoGeneSymbol":"STK26","entrezGeneId":51765},{"hugoGeneSymbol":"STK3","entrezGeneId":6788},{"hugoGeneSymbol":"STK31","entrezGeneId":56164},{"hugoGeneSymbol":"STK32A","entrezGeneId":202374},{"hugoGeneSymbol":"STK32A-AS1","entrezGeneId":105378217},{"hugoGeneSymbol":"STK32B","entrezGeneId":55351},{"hugoGeneSymbol":"STK32C","entrezGeneId":282974},{"hugoGeneSymbol":"STK33","entrezGeneId":65975},{"hugoGeneSymbol":"STK33P1","entrezGeneId":553118},{"hugoGeneSymbol":"STK35","entrezGeneId":140901},{"hugoGeneSymbol":"STK36","entrezGeneId":27148},{"hugoGeneSymbol":"STK38","entrezGeneId":11329},{"hugoGeneSymbol":"STK38L","entrezGeneId":23012},{"hugoGeneSymbol":"STK39","entrezGeneId":27347},{"hugoGeneSymbol":"STK4","entrezGeneId":6789},{"hugoGeneSymbol":"STK4-AS1","entrezGeneId":100505826},{"hugoGeneSymbol":"STK40","entrezGeneId":83931},{"hugoGeneSymbol":"STKLD1","entrezGeneId":169436},{"hugoGeneSymbol":"STMN1","entrezGeneId":3925},{"hugoGeneSymbol":"STMN1P1","entrezGeneId":100506685},{"hugoGeneSymbol":"STMN1P2","entrezGeneId":100289663},{"hugoGeneSymbol":"STMN2","entrezGeneId":11075},{"hugoGeneSymbol":"STMN3","entrezGeneId":50861},{"hugoGeneSymbol":"STMN4","entrezGeneId":81551},{"hugoGeneSymbol":"STMND1","entrezGeneId":401236},{"hugoGeneSymbol":"STMP1","entrezGeneId":647087},{"hugoGeneSymbol":"STN1","entrezGeneId":79991},{"hugoGeneSymbol":"STOM","entrezGeneId":2040},{"hugoGeneSymbol":"STOML1","entrezGeneId":9399},{"hugoGeneSymbol":"STOML2","entrezGeneId":30968},{"hugoGeneSymbol":"STOML3","entrezGeneId":161003},{"hugoGeneSymbol":"STON1","entrezGeneId":11037},{"hugoGeneSymbol":"STON1-GTF2A1L","entrezGeneId":286749},{"hugoGeneSymbol":"STON2","entrezGeneId":85439},{"hugoGeneSymbol":"STOX1","entrezGeneId":219736},{"hugoGeneSymbol":"STOX2","entrezGeneId":56977},{"hugoGeneSymbol":"STPG1","entrezGeneId":90529},{"hugoGeneSymbol":"STPG2","entrezGeneId":285555},{"hugoGeneSymbol":"STPG2-AS1","entrezGeneId":101410545},{"hugoGeneSymbol":"STPG3","entrezGeneId":441476},{"hugoGeneSymbol":"STPG3-AS1","entrezGeneId":100129722},{"hugoGeneSymbol":"STPG4","entrezGeneId":285051},{"hugoGeneSymbol":"STQTL10","entrezGeneId":100270794},{"hugoGeneSymbol":"STQTL11","entrezGeneId":100270795},{"hugoGeneSymbol":"STQTL12","entrezGeneId":100301523},{"hugoGeneSymbol":"STQTL13","entrezGeneId":100270796},{"hugoGeneSymbol":"STQTL14","entrezGeneId":100270797},{"hugoGeneSymbol":"STQTL15","entrezGeneId":100270801},{"hugoGeneSymbol":"STQTL16","entrezGeneId":100270802},{"hugoGeneSymbol":"STQTL17","entrezGeneId":100301526},{"hugoGeneSymbol":"STQTL18","entrezGeneId":100302683},{"hugoGeneSymbol":"STQTL19","entrezGeneId":100302684},{"hugoGeneSymbol":"STQTL2","entrezGeneId":192143},{"hugoGeneSymbol":"STQTL20","entrezGeneId":100302685},{"hugoGeneSymbol":"STQTL21","entrezGeneId":100502568},{"hugoGeneSymbol":"STQTL22","entrezGeneId":100529227},{"hugoGeneSymbol":"STQTL23","entrezGeneId":100529222},{"hugoGeneSymbol":"STQTL24","entrezGeneId":100529223},{"hugoGeneSymbol":"STQTL3","entrezGeneId":282549},{"hugoGeneSymbol":"STQTL4","entrezGeneId":282550},{"hugoGeneSymbol":"STQTL5","entrezGeneId":619479},{"hugoGeneSymbol":"STQTL6","entrezGeneId":100037264},{"hugoGeneSymbol":"STQTL7","entrezGeneId":100037265},{"hugoGeneSymbol":"STQTL8","entrezGeneId":100037266},{"hugoGeneSymbol":"STRA6","entrezGeneId":64220},{"hugoGeneSymbol":"STRA6LP","entrezGeneId":112272565},{"hugoGeneSymbol":"STRA8","entrezGeneId":346673},{"hugoGeneSymbol":"STRADA","entrezGeneId":92335},{"hugoGeneSymbol":"STRADB","entrezGeneId":55437},{"hugoGeneSymbol":"STRADBP1","entrezGeneId":389599},{"hugoGeneSymbol":"STRAP","entrezGeneId":11171},{"hugoGeneSymbol":"STRBP","entrezGeneId":55342},{"hugoGeneSymbol":"STRC","entrezGeneId":161497},{"hugoGeneSymbol":"STRCP1","entrezGeneId":554225},{"hugoGeneSymbol":"STRIP1","entrezGeneId":85369},{"hugoGeneSymbol":"STRIP2","entrezGeneId":57464},{"hugoGeneSymbol":"STRN","entrezGeneId":6801},{"hugoGeneSymbol":"STRN3","entrezGeneId":29966},{"hugoGeneSymbol":"STRN4","entrezGeneId":29888},{"hugoGeneSymbol":"STS","entrezGeneId":412},{"hugoGeneSymbol":"STSP1","entrezGeneId":6803},{"hugoGeneSymbol":"STT3A","entrezGeneId":3703},{"hugoGeneSymbol":"STT3A-AS1","entrezGeneId":105369550},{"hugoGeneSymbol":"STT3B","entrezGeneId":201595},{"hugoGeneSymbol":"STUB1","entrezGeneId":10273},{"hugoGeneSymbol":"STUM","entrezGeneId":375057},{"hugoGeneSymbol":"STUT1","entrezGeneId":100049541},{"hugoGeneSymbol":"STUT2","entrezGeneId":100049543},{"hugoGeneSymbol":"STUT3","entrezGeneId":100909386},{"hugoGeneSymbol":"STUT4","entrezGeneId":100909385},{"hugoGeneSymbol":"STX10","entrezGeneId":8677},{"hugoGeneSymbol":"STX11","entrezGeneId":8676},{"hugoGeneSymbol":"STX12","entrezGeneId":23673},{"hugoGeneSymbol":"STX16","entrezGeneId":8675},{"hugoGeneSymbol":"STX16-NPEPL1","entrezGeneId":100534593},{"hugoGeneSymbol":"STX17","entrezGeneId":55014},{"hugoGeneSymbol":"STX17-AS1","entrezGeneId":441461},{"hugoGeneSymbol":"STX18","entrezGeneId":53407},{"hugoGeneSymbol":"STX18-AS1","entrezGeneId":100507266},{"hugoGeneSymbol":"STX18-IT1","entrezGeneId":104472519},{"hugoGeneSymbol":"STX18P1","entrezGeneId":100418889},{"hugoGeneSymbol":"STX19","entrezGeneId":415117},{"hugoGeneSymbol":"STX1A","entrezGeneId":6804},{"hugoGeneSymbol":"STX1B","entrezGeneId":112755},{"hugoGeneSymbol":"STX2","entrezGeneId":2054},{"hugoGeneSymbol":"STX3","entrezGeneId":6809},{"hugoGeneSymbol":"STX4","entrezGeneId":6810},{"hugoGeneSymbol":"STX5","entrezGeneId":6811},{"hugoGeneSymbol":"STX6","entrezGeneId":10228},{"hugoGeneSymbol":"STX7","entrezGeneId":8417},{"hugoGeneSymbol":"STX8","entrezGeneId":9482},{"hugoGeneSymbol":"STX8P1","entrezGeneId":100423046},{"hugoGeneSymbol":"STXBP1","entrezGeneId":6812},{"hugoGeneSymbol":"STXBP2","entrezGeneId":6813},{"hugoGeneSymbol":"STXBP3","entrezGeneId":6814},{"hugoGeneSymbol":"STXBP4","entrezGeneId":252983},{"hugoGeneSymbol":"STXBP5","entrezGeneId":134957},{"hugoGeneSymbol":"STXBP5-AS1","entrezGeneId":729178},{"hugoGeneSymbol":"STXBP5L","entrezGeneId":9515},{"hugoGeneSymbol":"STXBP6","entrezGeneId":29091},{"hugoGeneSymbol":"STYK1","entrezGeneId":55359},{"hugoGeneSymbol":"STYX","entrezGeneId":6815},{"hugoGeneSymbol":"STYXL1","entrezGeneId":51657},{"hugoGeneSymbol":"SUB1","entrezGeneId":10923},{"hugoGeneSymbol":"SUB1P1","entrezGeneId":728938},{"hugoGeneSymbol":"SUB1P2","entrezGeneId":100287680},{"hugoGeneSymbol":"SUB1P3","entrezGeneId":106480442},{"hugoGeneSymbol":"SUB1P4","entrezGeneId":100288661},{"hugoGeneSymbol":"SUCLA2","entrezGeneId":8803},{"hugoGeneSymbol":"SUCLA2-AS1","entrezGeneId":101929410},{"hugoGeneSymbol":"SUCLA2P1","entrezGeneId":646520},{"hugoGeneSymbol":"SUCLA2P2","entrezGeneId":100129863},{"hugoGeneSymbol":"SUCLA2P3","entrezGeneId":100421648},{"hugoGeneSymbol":"SUCLG1","entrezGeneId":8802},{"hugoGeneSymbol":"SUCLG2","entrezGeneId":8801},{"hugoGeneSymbol":"SUCLG2-AS1","entrezGeneId":101927111},{"hugoGeneSymbol":"SUCLG2P1","entrezGeneId":100421671},{"hugoGeneSymbol":"SUCLG2P2","entrezGeneId":283398},{"hugoGeneSymbol":"SUCLG2P3","entrezGeneId":100421712},{"hugoGeneSymbol":"SUCLG2P4","entrezGeneId":100130528},{"hugoGeneSymbol":"SUCNR1","entrezGeneId":56670},{"hugoGeneSymbol":"SUCO","entrezGeneId":51430},{"hugoGeneSymbol":"SUDS3","entrezGeneId":64426},{"hugoGeneSymbol":"SUDS3P1","entrezGeneId":285647},{"hugoGeneSymbol":"SUFU","entrezGeneId":51684},{"hugoGeneSymbol":"SUGCT","entrezGeneId":79783},{"hugoGeneSymbol":"SUGP1","entrezGeneId":57794},{"hugoGeneSymbol":"SUGP2","entrezGeneId":10147},{"hugoGeneSymbol":"SUGT1","entrezGeneId":10910},{"hugoGeneSymbol":"SUGT1P1","entrezGeneId":441394},{"hugoGeneSymbol":"SUGT1P2","entrezGeneId":728706},{"hugoGeneSymbol":"SUGT1P3","entrezGeneId":283507},{"hugoGeneSymbol":"SUGT1P4","entrezGeneId":112272564},{"hugoGeneSymbol":"SUGT1P4-STRA6LP","entrezGeneId":100499484},{"hugoGeneSymbol":"SUGT1P4-STRA6LP-CCDC180","entrezGeneId":57653},{"hugoGeneSymbol":"SULF1","entrezGeneId":23213},{"hugoGeneSymbol":"SULF2","entrezGeneId":55959},{"hugoGeneSymbol":"SULT1A1","entrezGeneId":6817},{"hugoGeneSymbol":"SULT1A2","entrezGeneId":6799},{"hugoGeneSymbol":"SULT1A3","entrezGeneId":6818},{"hugoGeneSymbol":"SULT1A4","entrezGeneId":445329},{"hugoGeneSymbol":"SULT1B1","entrezGeneId":27284},{"hugoGeneSymbol":"SULT1C2","entrezGeneId":6819},{"hugoGeneSymbol":"SULT1C2P1","entrezGeneId":151234},{"hugoGeneSymbol":"SULT1C2P2","entrezGeneId":106480333},{"hugoGeneSymbol":"SULT1C3","entrezGeneId":442038},{"hugoGeneSymbol":"SULT1C4","entrezGeneId":27233},{"hugoGeneSymbol":"SULT1D1P","entrezGeneId":133150},{"hugoGeneSymbol":"SULT1E1","entrezGeneId":6783},{"hugoGeneSymbol":"SULT2A1","entrezGeneId":6822},{"hugoGeneSymbol":"SULT2B1","entrezGeneId":6820},{"hugoGeneSymbol":"SULT4A1","entrezGeneId":25830},{"hugoGeneSymbol":"SULT6B1","entrezGeneId":391365},{"hugoGeneSymbol":"SULT6B2P","entrezGeneId":107984497},{"hugoGeneSymbol":"SUMF1","entrezGeneId":285362},{"hugoGeneSymbol":"SUMF2","entrezGeneId":25870},{"hugoGeneSymbol":"SUMO1","entrezGeneId":7341},{"hugoGeneSymbol":"SUMO1P1","entrezGeneId":391257},{"hugoGeneSymbol":"SUMO1P2","entrezGeneId":474337},{"hugoGeneSymbol":"SUMO1P3","entrezGeneId":474338},{"hugoGeneSymbol":"SUMO1P4","entrezGeneId":101290502},{"hugoGeneSymbol":"SUMO1P5","entrezGeneId":474341},{"hugoGeneSymbol":"SUMO2","entrezGeneId":6613},{"hugoGeneSymbol":"SUMO2P1","entrezGeneId":285829},{"hugoGeneSymbol":"SUMO2P10","entrezGeneId":106481678},{"hugoGeneSymbol":"SUMO2P11","entrezGeneId":100422250},{"hugoGeneSymbol":"SUMO2P12","entrezGeneId":106480262},{"hugoGeneSymbol":"SUMO2P13","entrezGeneId":106480263},{"hugoGeneSymbol":"SUMO2P14","entrezGeneId":106480264},{"hugoGeneSymbol":"SUMO2P15","entrezGeneId":106480417},{"hugoGeneSymbol":"SUMO2P16","entrezGeneId":106480679},{"hugoGeneSymbol":"SUMO2P17","entrezGeneId":100128010},{"hugoGeneSymbol":"SUMO2P18","entrezGeneId":106481679},{"hugoGeneSymbol":"SUMO2P19","entrezGeneId":100422265},{"hugoGeneSymbol":"SUMO2P2","entrezGeneId":100859924},{"hugoGeneSymbol":"SUMO2P20","entrezGeneId":101927327},{"hugoGeneSymbol":"SUMO2P3","entrezGeneId":652489},{"hugoGeneSymbol":"SUMO2P4","entrezGeneId":100288757},{"hugoGeneSymbol":"SUMO2P5","entrezGeneId":100526738},{"hugoGeneSymbol":"SUMO2P6","entrezGeneId":100127922},{"hugoGeneSymbol":"SUMO2P7","entrezGeneId":100131823},{"hugoGeneSymbol":"SUMO2P8","entrezGeneId":100506244},{"hugoGeneSymbol":"SUMO3","entrezGeneId":6612},{"hugoGeneSymbol":"SUMO4","entrezGeneId":387082},{"hugoGeneSymbol":"SUN1","entrezGeneId":23353},{"hugoGeneSymbol":"SUN2","entrezGeneId":25777},{"hugoGeneSymbol":"SUN3","entrezGeneId":256979},{"hugoGeneSymbol":"SUN5","entrezGeneId":140732},{"hugoGeneSymbol":"SUOX","entrezGeneId":6821},{"hugoGeneSymbol":"SUPT16H","entrezGeneId":11198},{"hugoGeneSymbol":"SUPT16HP1","entrezGeneId":400011},{"hugoGeneSymbol":"SUPT20H","entrezGeneId":55578},{"hugoGeneSymbol":"SUPT20HL1","entrezGeneId":100130302},{"hugoGeneSymbol":"SUPT20HL2","entrezGeneId":170067},{"hugoGeneSymbol":"SUPT3H","entrezGeneId":8464},{"hugoGeneSymbol":"SUPT4H1","entrezGeneId":6827},{"hugoGeneSymbol":"SUPT4H1P1","entrezGeneId":100190947},{"hugoGeneSymbol":"SUPT4H1P2","entrezGeneId":100287625},{"hugoGeneSymbol":"SUPT5H","entrezGeneId":6829},{"hugoGeneSymbol":"SUPT6H","entrezGeneId":6830},{"hugoGeneSymbol":"SUPT7L","entrezGeneId":9913},{"hugoGeneSymbol":"SUPV3L1","entrezGeneId":6832},{"hugoGeneSymbol":"SURF1","entrezGeneId":6834},{"hugoGeneSymbol":"SURF2","entrezGeneId":6835},{"hugoGeneSymbol":"SURF4","entrezGeneId":6836},{"hugoGeneSymbol":"SURF6","entrezGeneId":6838},{"hugoGeneSymbol":"SURF6P1","entrezGeneId":643470},{"hugoGeneSymbol":"SUSD1","entrezGeneId":64420},{"hugoGeneSymbol":"SUSD2","entrezGeneId":56241},{"hugoGeneSymbol":"SUSD2P1","entrezGeneId":729568},{"hugoGeneSymbol":"SUSD2P2","entrezGeneId":729450},{"hugoGeneSymbol":"SUSD3","entrezGeneId":203328},{"hugoGeneSymbol":"SUSD4","entrezGeneId":55061},{"hugoGeneSymbol":"SUSD5","entrezGeneId":26032},{"hugoGeneSymbol":"SUSD6","entrezGeneId":9766},{"hugoGeneSymbol":"SUV39H1","entrezGeneId":6839},{"hugoGeneSymbol":"SUV39H2","entrezGeneId":79723},{"hugoGeneSymbol":"SUZ12","entrezGeneId":23512},{"hugoGeneSymbol":"SUZ12P1","entrezGeneId":440423},{"hugoGeneSymbol":"SUZ12P2","entrezGeneId":100421539},{"hugoGeneSymbol":"SV2A","entrezGeneId":9900},{"hugoGeneSymbol":"SV2B","entrezGeneId":9899},{"hugoGeneSymbol":"SV2C","entrezGeneId":22987},{"hugoGeneSymbol":"SVBP","entrezGeneId":374969},{"hugoGeneSymbol":"SVEP1","entrezGeneId":79987},{"hugoGeneSymbol":"SVIL","entrezGeneId":6840},{"hugoGeneSymbol":"SVIL-AS1","entrezGeneId":102724316},{"hugoGeneSymbol":"SVILP1","entrezGeneId":645954},{"hugoGeneSymbol":"SVIP","entrezGeneId":258010},{"hugoGeneSymbol":"SVOP","entrezGeneId":55530},{"hugoGeneSymbol":"SVOPL","entrezGeneId":136306},{"hugoGeneSymbol":"SWAP70","entrezGeneId":23075},{"hugoGeneSymbol":"SWI5","entrezGeneId":375757},{"hugoGeneSymbol":"SWSAP1","entrezGeneId":126074},{"hugoGeneSymbol":"SWT1","entrezGeneId":54823},{"hugoGeneSymbol":"SXGQTL1","entrezGeneId":100528025},{"hugoGeneSymbol":"SXI2","entrezGeneId":117237},{"hugoGeneSymbol":"SYAP1","entrezGeneId":94056},{"hugoGeneSymbol":"SYBU","entrezGeneId":55638},{"hugoGeneSymbol":"SYCE1","entrezGeneId":93426},{"hugoGeneSymbol":"SYCE1L","entrezGeneId":100130958},{"hugoGeneSymbol":"SYCE2","entrezGeneId":256126},{"hugoGeneSymbol":"SYCE3","entrezGeneId":644186},{"hugoGeneSymbol":"SYCN","entrezGeneId":342898},{"hugoGeneSymbol":"SYCP1","entrezGeneId":6847},{"hugoGeneSymbol":"SYCP2","entrezGeneId":10388},{"hugoGeneSymbol":"SYCP2L","entrezGeneId":221711},{"hugoGeneSymbol":"SYCP3","entrezGeneId":50511},{"hugoGeneSymbol":"SYDE1","entrezGeneId":85360},{"hugoGeneSymbol":"SYDE2","entrezGeneId":84144},{"hugoGeneSymbol":"SYF2","entrezGeneId":25949},{"hugoGeneSymbol":"SYF2P1","entrezGeneId":317778},{"hugoGeneSymbol":"SYF2P2","entrezGeneId":100128275},{"hugoGeneSymbol":"SYK","entrezGeneId":6850},{"hugoGeneSymbol":"SYM2","entrezGeneId":6852},{"hugoGeneSymbol":"SYMPK","entrezGeneId":8189},{"hugoGeneSymbol":"SYN1","entrezGeneId":6853},{"hugoGeneSymbol":"SYN2","entrezGeneId":6854},{"hugoGeneSymbol":"SYN3","entrezGeneId":8224},{"hugoGeneSymbol":"SYNC","entrezGeneId":81493},{"hugoGeneSymbol":"SYNCRIP","entrezGeneId":10492},{"hugoGeneSymbol":"SYNDIG1","entrezGeneId":79953},{"hugoGeneSymbol":"SYNDIG1L","entrezGeneId":646658},{"hugoGeneSymbol":"SYNE1","entrezGeneId":23345},{"hugoGeneSymbol":"SYNE1-AS1","entrezGeneId":100505475},{"hugoGeneSymbol":"SYNE2","entrezGeneId":23224},{"hugoGeneSymbol":"SYNE3","entrezGeneId":161176},{"hugoGeneSymbol":"SYNE4","entrezGeneId":163183},{"hugoGeneSymbol":"SYNGAP1","entrezGeneId":8831},{"hugoGeneSymbol":"SYNGR1","entrezGeneId":9145},{"hugoGeneSymbol":"SYNGR2","entrezGeneId":9144},{"hugoGeneSymbol":"SYNGR2P1","entrezGeneId":283698},{"hugoGeneSymbol":"SYNGR2P2","entrezGeneId":138916},{"hugoGeneSymbol":"SYNGR3","entrezGeneId":9143},{"hugoGeneSymbol":"SYNGR4","entrezGeneId":23546},{"hugoGeneSymbol":"SYNJ1","entrezGeneId":8867},{"hugoGeneSymbol":"SYNJ2","entrezGeneId":8871},{"hugoGeneSymbol":"SYNJ2-IT1","entrezGeneId":100874300},{"hugoGeneSymbol":"SYNJ2BP","entrezGeneId":55333},{"hugoGeneSymbol":"SYNJ2BP-COX16","entrezGeneId":100529257},{"hugoGeneSymbol":"SYNM","entrezGeneId":23336},{"hugoGeneSymbol":"SYNPO","entrezGeneId":11346},{"hugoGeneSymbol":"SYNPO2","entrezGeneId":171024},{"hugoGeneSymbol":"SYNPO2L","entrezGeneId":79933},{"hugoGeneSymbol":"SYNPR","entrezGeneId":132204},{"hugoGeneSymbol":"SYNPR-AS1","entrezGeneId":100874016},{"hugoGeneSymbol":"SYNRG","entrezGeneId":11276},{"hugoGeneSymbol":"SYNSTH","entrezGeneId":100301527},{"hugoGeneSymbol":"SYP","entrezGeneId":6855},{"hugoGeneSymbol":"SYP-AS1","entrezGeneId":100873921},{"hugoGeneSymbol":"SYPL1","entrezGeneId":6856},{"hugoGeneSymbol":"SYPL1P1","entrezGeneId":100130011},{"hugoGeneSymbol":"SYPL1P2","entrezGeneId":100132972},{"hugoGeneSymbol":"SYPL2","entrezGeneId":284612},{"hugoGeneSymbol":"SYS1","entrezGeneId":90196},{"hugoGeneSymbol":"SYS1-DBNDD2","entrezGeneId":767557},{"hugoGeneSymbol":"SYT1","entrezGeneId":6857},{"hugoGeneSymbol":"SYT10","entrezGeneId":341359},{"hugoGeneSymbol":"SYT11","entrezGeneId":23208},{"hugoGeneSymbol":"SYT12","entrezGeneId":91683},{"hugoGeneSymbol":"SYT13","entrezGeneId":57586},{"hugoGeneSymbol":"SYT14","entrezGeneId":255928},{"hugoGeneSymbol":"SYT14P1","entrezGeneId":401135},{"hugoGeneSymbol":"SYT15","entrezGeneId":83849},{"hugoGeneSymbol":"SYT16","entrezGeneId":83851},{"hugoGeneSymbol":"SYT17","entrezGeneId":51760},{"hugoGeneSymbol":"SYT2","entrezGeneId":127833},{"hugoGeneSymbol":"SYT3","entrezGeneId":84258},{"hugoGeneSymbol":"SYT4","entrezGeneId":6860},{"hugoGeneSymbol":"SYT5","entrezGeneId":6861},{"hugoGeneSymbol":"SYT6","entrezGeneId":148281},{"hugoGeneSymbol":"SYT7","entrezGeneId":9066},{"hugoGeneSymbol":"SYT8","entrezGeneId":90019},{"hugoGeneSymbol":"SYT9","entrezGeneId":143425},{"hugoGeneSymbol":"SYTL1","entrezGeneId":84958},{"hugoGeneSymbol":"SYTL2","entrezGeneId":54843},{"hugoGeneSymbol":"SYTL3","entrezGeneId":94120},{"hugoGeneSymbol":"SYTL4","entrezGeneId":94121},{"hugoGeneSymbol":"SYTL5","entrezGeneId":94122},{"hugoGeneSymbol":"SYVN1","entrezGeneId":84447},{"hugoGeneSymbol":"SZRD1","entrezGeneId":26099},{"hugoGeneSymbol":"SZT2","entrezGeneId":23334},{"hugoGeneSymbol":"SZT2-AS1","entrezGeneId":100873952},{"hugoGeneSymbol":"TAAR1","entrezGeneId":134864},{"hugoGeneSymbol":"TAAR2","entrezGeneId":9287},{"hugoGeneSymbol":"TAAR3P","entrezGeneId":9288},{"hugoGeneSymbol":"TAAR4P","entrezGeneId":503612},{"hugoGeneSymbol":"TAAR5","entrezGeneId":9038},{"hugoGeneSymbol":"TAAR6","entrezGeneId":319100},{"hugoGeneSymbol":"TAAR7P","entrezGeneId":503611},{"hugoGeneSymbol":"TAAR8","entrezGeneId":83551},{"hugoGeneSymbol":"TAAR9","entrezGeneId":134860},{"hugoGeneSymbol":"TAB1","entrezGeneId":10454},{"hugoGeneSymbol":"TAB2","entrezGeneId":23118},{"hugoGeneSymbol":"TAB2-AS1","entrezGeneId":105378049},{"hugoGeneSymbol":"TAB3","entrezGeneId":257397},{"hugoGeneSymbol":"TAB3-AS1","entrezGeneId":727682},{"hugoGeneSymbol":"TAB3-AS2","entrezGeneId":100873926},{"hugoGeneSymbol":"TAB3P1","entrezGeneId":643199},{"hugoGeneSymbol":"TAC1","entrezGeneId":6863},{"hugoGeneSymbol":"TAC3","entrezGeneId":6866},{"hugoGeneSymbol":"TAC4","entrezGeneId":255061},{"hugoGeneSymbol":"TACC1","entrezGeneId":6867},{"hugoGeneSymbol":"TACC1P1","entrezGeneId":219752},{"hugoGeneSymbol":"TACC2","entrezGeneId":10579},{"hugoGeneSymbol":"TACC3","entrezGeneId":10460},{"hugoGeneSymbol":"TACO1","entrezGeneId":51204},{"hugoGeneSymbol":"TACR1","entrezGeneId":6869},{"hugoGeneSymbol":"TACR2","entrezGeneId":6865},{"hugoGeneSymbol":"TACR3","entrezGeneId":6870},{"hugoGeneSymbol":"TACSTD2","entrezGeneId":4070},{"hugoGeneSymbol":"TADA1","entrezGeneId":117143},{"hugoGeneSymbol":"TADA2A","entrezGeneId":6871},{"hugoGeneSymbol":"TADA2B","entrezGeneId":93624},{"hugoGeneSymbol":"TADA3","entrezGeneId":10474},{"hugoGeneSymbol":"TAF1","entrezGeneId":6872},{"hugoGeneSymbol":"TAF10","entrezGeneId":6881},{"hugoGeneSymbol":"TAF11","entrezGeneId":6882},{"hugoGeneSymbol":"TAF12","entrezGeneId":6883},{"hugoGeneSymbol":"TAF13","entrezGeneId":6884},{"hugoGeneSymbol":"TAF13P1","entrezGeneId":246112},{"hugoGeneSymbol":"TAF13P2","entrezGeneId":100462886},{"hugoGeneSymbol":"TAF15","entrezGeneId":8148},{"hugoGeneSymbol":"TAF1A","entrezGeneId":9015},{"hugoGeneSymbol":"TAF1A-AS1","entrezGeneId":100506161},{"hugoGeneSymbol":"TAF1B","entrezGeneId":9014},{"hugoGeneSymbol":"TAF1C","entrezGeneId":9013},{"hugoGeneSymbol":"TAF1D","entrezGeneId":79101},{"hugoGeneSymbol":"TAF1L","entrezGeneId":138474},{"hugoGeneSymbol":"TAF2","entrezGeneId":6873},{"hugoGeneSymbol":"TAF3","entrezGeneId":83860},{"hugoGeneSymbol":"TAF4","entrezGeneId":6874},{"hugoGeneSymbol":"TAF4B","entrezGeneId":6875},{"hugoGeneSymbol":"TAF5","entrezGeneId":6877},{"hugoGeneSymbol":"TAF5L","entrezGeneId":27097},{"hugoGeneSymbol":"TAF5LP1","entrezGeneId":645744},{"hugoGeneSymbol":"TAF6","entrezGeneId":6878},{"hugoGeneSymbol":"TAF6L","entrezGeneId":10629},{"hugoGeneSymbol":"TAF7","entrezGeneId":6879},{"hugoGeneSymbol":"TAF7L","entrezGeneId":54457},{"hugoGeneSymbol":"TAF8","entrezGeneId":129685},{"hugoGeneSymbol":"TAF9","entrezGeneId":6880},{"hugoGeneSymbol":"TAF9B","entrezGeneId":51616},{"hugoGeneSymbol":"TAF9BP1","entrezGeneId":246135},{"hugoGeneSymbol":"TAF9BP2","entrezGeneId":100130319},{"hugoGeneSymbol":"TAF9P1","entrezGeneId":360002},{"hugoGeneSymbol":"TAF9P2","entrezGeneId":360003},{"hugoGeneSymbol":"TAF9P3","entrezGeneId":163088},{"hugoGeneSymbol":"TAGAP","entrezGeneId":117289},{"hugoGeneSymbol":"TAGLN","entrezGeneId":6876},{"hugoGeneSymbol":"TAGLN2","entrezGeneId":8407},{"hugoGeneSymbol":"TAGLN2P1","entrezGeneId":100418887},{"hugoGeneSymbol":"TAGLN2P2","entrezGeneId":642319},{"hugoGeneSymbol":"TAGLN3","entrezGeneId":29114},{"hugoGeneSymbol":"TAL1","entrezGeneId":6886},{"hugoGeneSymbol":"TAL2","entrezGeneId":6887},{"hugoGeneSymbol":"TALAM1","entrezGeneId":109136579},{"hugoGeneSymbol":"TALDO1","entrezGeneId":6888},{"hugoGeneSymbol":"TALDO1P1","entrezGeneId":6889},{"hugoGeneSymbol":"TAM","entrezGeneId":8205},{"hugoGeneSymbol":"TAMM41","entrezGeneId":132001},{"hugoGeneSymbol":"TANC1","entrezGeneId":85461},{"hugoGeneSymbol":"TANC2","entrezGeneId":26115},{"hugoGeneSymbol":"TANGO2","entrezGeneId":128989},{"hugoGeneSymbol":"TANGO6","entrezGeneId":79613},{"hugoGeneSymbol":"TANK","entrezGeneId":10010},{"hugoGeneSymbol":"TAOK1","entrezGeneId":57551},{"hugoGeneSymbol":"TAOK2","entrezGeneId":9344},{"hugoGeneSymbol":"TAOK3","entrezGeneId":51347},{"hugoGeneSymbol":"TAP1","entrezGeneId":6890},{"hugoGeneSymbol":"TAP2","entrezGeneId":6891},{"hugoGeneSymbol":"TAPBP","entrezGeneId":6892},{"hugoGeneSymbol":"TAPBPL","entrezGeneId":55080},{"hugoGeneSymbol":"TAPT1","entrezGeneId":202018},{"hugoGeneSymbol":"TAPT1-AS1","entrezGeneId":202020},{"hugoGeneSymbol":"TAPVR1","entrezGeneId":6893},{"hugoGeneSymbol":"TARBP1","entrezGeneId":6894},{"hugoGeneSymbol":"TARBP2","entrezGeneId":6895},{"hugoGeneSymbol":"TARBP2P1","entrezGeneId":6896},{"hugoGeneSymbol":"TARDBP","entrezGeneId":23435},{"hugoGeneSymbol":"TARDBPP1","entrezGeneId":643503},{"hugoGeneSymbol":"TARDBPP2","entrezGeneId":440142},{"hugoGeneSymbol":"TARID","entrezGeneId":100507308},{"hugoGeneSymbol":"TARM1","entrezGeneId":441864},{"hugoGeneSymbol":"TARP","entrezGeneId":445347},{"hugoGeneSymbol":"TARS","entrezGeneId":6897},{"hugoGeneSymbol":"TARS2","entrezGeneId":80222},{"hugoGeneSymbol":"TARS2P1","entrezGeneId":100533844},{"hugoGeneSymbol":"TARSL2","entrezGeneId":123283},{"hugoGeneSymbol":"TAS1R1","entrezGeneId":80835},{"hugoGeneSymbol":"TAS1R2","entrezGeneId":80834},{"hugoGeneSymbol":"TAS1R3","entrezGeneId":83756},{"hugoGeneSymbol":"TAS2R1","entrezGeneId":50834},{"hugoGeneSymbol":"TAS2R10","entrezGeneId":50839},{"hugoGeneSymbol":"TAS2R12P","entrezGeneId":266656},{"hugoGeneSymbol":"TAS2R13","entrezGeneId":50838},{"hugoGeneSymbol":"TAS2R14","entrezGeneId":50840},{"hugoGeneSymbol":"TAS2R15P","entrezGeneId":266657},{"hugoGeneSymbol":"TAS2R16","entrezGeneId":50833},{"hugoGeneSymbol":"TAS2R18P","entrezGeneId":338414},{"hugoGeneSymbol":"TAS2R19","entrezGeneId":259294},{"hugoGeneSymbol":"TAS2R20","entrezGeneId":259295},{"hugoGeneSymbol":"TAS2R22","entrezGeneId":266661},{"hugoGeneSymbol":"TAS2R2P","entrezGeneId":338396},{"hugoGeneSymbol":"TAS2R3","entrezGeneId":50831},{"hugoGeneSymbol":"TAS2R30","entrezGeneId":259293},{"hugoGeneSymbol":"TAS2R31","entrezGeneId":259290},{"hugoGeneSymbol":"TAS2R33","entrezGeneId":266665},{"hugoGeneSymbol":"TAS2R36","entrezGeneId":266666},{"hugoGeneSymbol":"TAS2R37","entrezGeneId":266667},{"hugoGeneSymbol":"TAS2R38","entrezGeneId":5726},{"hugoGeneSymbol":"TAS2R39","entrezGeneId":259285},{"hugoGeneSymbol":"TAS2R4","entrezGeneId":50832},{"hugoGeneSymbol":"TAS2R40","entrezGeneId":259286},{"hugoGeneSymbol":"TAS2R41","entrezGeneId":259287},{"hugoGeneSymbol":"TAS2R42","entrezGeneId":353164},{"hugoGeneSymbol":"TAS2R43","entrezGeneId":259289},{"hugoGeneSymbol":"TAS2R45","entrezGeneId":259291},{"hugoGeneSymbol":"TAS2R46","entrezGeneId":259292},{"hugoGeneSymbol":"TAS2R5","entrezGeneId":54429},{"hugoGeneSymbol":"TAS2R50","entrezGeneId":259296},{"hugoGeneSymbol":"TAS2R60","entrezGeneId":338398},{"hugoGeneSymbol":"TAS2R62P","entrezGeneId":338399},{"hugoGeneSymbol":"TAS2R63P","entrezGeneId":338413},{"hugoGeneSymbol":"TAS2R64P","entrezGeneId":338412},{"hugoGeneSymbol":"TAS2R67P","entrezGeneId":448991},{"hugoGeneSymbol":"TAS2R68P","entrezGeneId":100653053},{"hugoGeneSymbol":"TAS2R6P","entrezGeneId":448990},{"hugoGeneSymbol":"TAS2R7","entrezGeneId":50837},{"hugoGeneSymbol":"TAS2R8","entrezGeneId":50836},{"hugoGeneSymbol":"TAS2R9","entrezGeneId":50835},{"hugoGeneSymbol":"TASP1","entrezGeneId":55617},{"hugoGeneSymbol":"TAT","entrezGeneId":6898},{"hugoGeneSymbol":"TAT-AS1","entrezGeneId":100132529},{"hugoGeneSymbol":"TATDN1","entrezGeneId":83940},{"hugoGeneSymbol":"TATDN1P1","entrezGeneId":728737},{"hugoGeneSymbol":"TATDN2","entrezGeneId":9797},{"hugoGeneSymbol":"TATDN2P1","entrezGeneId":100131103},{"hugoGeneSymbol":"TATDN2P2","entrezGeneId":100272205},{"hugoGeneSymbol":"TATDN2P3","entrezGeneId":100420458},{"hugoGeneSymbol":"TATDN3","entrezGeneId":128387},{"hugoGeneSymbol":"TAX1BP1","entrezGeneId":8887},{"hugoGeneSymbol":"TAX1BP3","entrezGeneId":30851},{"hugoGeneSymbol":"TAZ","entrezGeneId":6901},{"hugoGeneSymbol":"TBATA","entrezGeneId":219793},{"hugoGeneSymbol":"TBC1D1","entrezGeneId":23216},{"hugoGeneSymbol":"TBC1D10A","entrezGeneId":83874},{"hugoGeneSymbol":"TBC1D10B","entrezGeneId":26000},{"hugoGeneSymbol":"TBC1D10C","entrezGeneId":374403},{"hugoGeneSymbol":"TBC1D12","entrezGeneId":23232},{"hugoGeneSymbol":"TBC1D13","entrezGeneId":54662},{"hugoGeneSymbol":"TBC1D14","entrezGeneId":57533},{"hugoGeneSymbol":"TBC1D15","entrezGeneId":64786},{"hugoGeneSymbol":"TBC1D16","entrezGeneId":125058},{"hugoGeneSymbol":"TBC1D17","entrezGeneId":79735},{"hugoGeneSymbol":"TBC1D19","entrezGeneId":55296},{"hugoGeneSymbol":"TBC1D2","entrezGeneId":55357},{"hugoGeneSymbol":"TBC1D20","entrezGeneId":128637},{"hugoGeneSymbol":"TBC1D21","entrezGeneId":161514},{"hugoGeneSymbol":"TBC1D22A","entrezGeneId":25771},{"hugoGeneSymbol":"TBC1D22A-AS1","entrezGeneId":642757},{"hugoGeneSymbol":"TBC1D22B","entrezGeneId":55633},{"hugoGeneSymbol":"TBC1D23","entrezGeneId":55773},{"hugoGeneSymbol":"TBC1D24","entrezGeneId":57465},{"hugoGeneSymbol":"TBC1D25","entrezGeneId":4943},{"hugoGeneSymbol":"TBC1D26","entrezGeneId":353149},{"hugoGeneSymbol":"TBC1D27P","entrezGeneId":96597},{"hugoGeneSymbol":"TBC1D28","entrezGeneId":254272},{"hugoGeneSymbol":"TBC1D29","entrezGeneId":26083},{"hugoGeneSymbol":"TBC1D2B","entrezGeneId":23102},{"hugoGeneSymbol":"TBC1D3","entrezGeneId":729873},{"hugoGeneSymbol":"TBC1D30","entrezGeneId":23329},{"hugoGeneSymbol":"TBC1D31","entrezGeneId":93594},{"hugoGeneSymbol":"TBC1D32","entrezGeneId":221322},{"hugoGeneSymbol":"TBC1D3B","entrezGeneId":414059},{"hugoGeneSymbol":"TBC1D3C","entrezGeneId":414060},{"hugoGeneSymbol":"TBC1D3D","entrezGeneId":101060389},{"hugoGeneSymbol":"TBC1D3E","entrezGeneId":102723859},{"hugoGeneSymbol":"TBC1D3F","entrezGeneId":84218},{"hugoGeneSymbol":"TBC1D3G","entrezGeneId":101060321},{"hugoGeneSymbol":"TBC1D3H","entrezGeneId":729877},{"hugoGeneSymbol":"TBC1D3I","entrezGeneId":102724862},{"hugoGeneSymbol":"TBC1D3J","entrezGeneId":100510707},{"hugoGeneSymbol":"TBC1D3K","entrezGeneId":101060351},{"hugoGeneSymbol":"TBC1D3L","entrezGeneId":101060376},{"hugoGeneSymbol":"TBC1D3P1","entrezGeneId":400609},{"hugoGeneSymbol":"TBC1D3P1-DHX40P1","entrezGeneId":653645},{"hugoGeneSymbol":"TBC1D3P2","entrezGeneId":440452},{"hugoGeneSymbol":"TBC1D3P3","entrezGeneId":653017},{"hugoGeneSymbol":"TBC1D3P4","entrezGeneId":100631253},{"hugoGeneSymbol":"TBC1D3P5","entrezGeneId":440419},{"hugoGeneSymbol":"TBC1D3P6","entrezGeneId":101928566},{"hugoGeneSymbol":"TBC1D3P7","entrezGeneId":106480773},{"hugoGeneSymbol":"TBC1D4","entrezGeneId":9882},{"hugoGeneSymbol":"TBC1D5","entrezGeneId":9779},{"hugoGeneSymbol":"TBC1D7","entrezGeneId":51256},{"hugoGeneSymbol":"TBC1D7-LOC100130357","entrezGeneId":107080638},{"hugoGeneSymbol":"TBC1D8","entrezGeneId":11138},{"hugoGeneSymbol":"TBC1D8-AS1","entrezGeneId":100506286},{"hugoGeneSymbol":"TBC1D8B","entrezGeneId":54885},{"hugoGeneSymbol":"TBC1D9","entrezGeneId":23158},{"hugoGeneSymbol":"TBC1D9B","entrezGeneId":23061},{"hugoGeneSymbol":"TBCA","entrezGeneId":6902},{"hugoGeneSymbol":"TBCAP1","entrezGeneId":494540},{"hugoGeneSymbol":"TBCAP2","entrezGeneId":494541},{"hugoGeneSymbol":"TBCAP3","entrezGeneId":101290501},{"hugoGeneSymbol":"TBCB","entrezGeneId":1155},{"hugoGeneSymbol":"TBCC","entrezGeneId":6903},{"hugoGeneSymbol":"TBCCD1","entrezGeneId":55171},{"hugoGeneSymbol":"TBCD","entrezGeneId":6904},{"hugoGeneSymbol":"TBCE","entrezGeneId":6905},{"hugoGeneSymbol":"TBCEL","entrezGeneId":219899},{"hugoGeneSymbol":"TBCK","entrezGeneId":93627},{"hugoGeneSymbol":"TBK1","entrezGeneId":29110},{"hugoGeneSymbol":"TBKBP1","entrezGeneId":9755},{"hugoGeneSymbol":"TBL1X","entrezGeneId":6907},{"hugoGeneSymbol":"TBL1XR1","entrezGeneId":79718},{"hugoGeneSymbol":"TBL1XR1-AS1","entrezGeneId":100874217},{"hugoGeneSymbol":"TBL1Y","entrezGeneId":90665},{"hugoGeneSymbol":"TBL1YP1","entrezGeneId":286555},{"hugoGeneSymbol":"TBL2","entrezGeneId":26608},{"hugoGeneSymbol":"TBL3","entrezGeneId":10607},{"hugoGeneSymbol":"TBP","entrezGeneId":6908},{"hugoGeneSymbol":"TBPL1","entrezGeneId":9519},{"hugoGeneSymbol":"TBPL2","entrezGeneId":387332},{"hugoGeneSymbol":"TBR1","entrezGeneId":10716},{"hugoGeneSymbol":"TBRG1","entrezGeneId":84897},{"hugoGeneSymbol":"TBRG4","entrezGeneId":9238},{"hugoGeneSymbol":"TBX1","entrezGeneId":6899},{"hugoGeneSymbol":"TBX10","entrezGeneId":347853},{"hugoGeneSymbol":"TBX15","entrezGeneId":6913},{"hugoGeneSymbol":"TBX18","entrezGeneId":9096},{"hugoGeneSymbol":"TBX18-AS1","entrezGeneId":102724201},{"hugoGeneSymbol":"TBX19","entrezGeneId":9095},{"hugoGeneSymbol":"TBX2","entrezGeneId":6909},{"hugoGeneSymbol":"TBX2-AS1","entrezGeneId":103689912},{"hugoGeneSymbol":"TBX20","entrezGeneId":57057},{"hugoGeneSymbol":"TBX21","entrezGeneId":30009},{"hugoGeneSymbol":"TBX22","entrezGeneId":50945},{"hugoGeneSymbol":"TBX23P","entrezGeneId":57160},{"hugoGeneSymbol":"TBX3","entrezGeneId":6926},{"hugoGeneSymbol":"TBX4","entrezGeneId":9496},{"hugoGeneSymbol":"TBX5","entrezGeneId":6910},{"hugoGeneSymbol":"TBX5-AS1","entrezGeneId":255480},{"hugoGeneSymbol":"TBX6","entrezGeneId":6911},{"hugoGeneSymbol":"TBXA1R","entrezGeneId":6914},{"hugoGeneSymbol":"TBXA2R","entrezGeneId":6915},{"hugoGeneSymbol":"TBXAS1","entrezGeneId":6916},{"hugoGeneSymbol":"TBXT","entrezGeneId":6862},{"hugoGeneSymbol":"TC2N","entrezGeneId":123036},{"hugoGeneSymbol":"TCAF1","entrezGeneId":9747},{"hugoGeneSymbol":"TCAF1P1","entrezGeneId":653199},{"hugoGeneSymbol":"TCAF2","entrezGeneId":285966},{"hugoGeneSymbol":"TCAF2C","entrezGeneId":100533814},{"hugoGeneSymbol":"TCAF2P1","entrezGeneId":653691},{"hugoGeneSymbol":"TCAIM","entrezGeneId":285343},{"hugoGeneSymbol":"TCAM1P","entrezGeneId":146771},{"hugoGeneSymbol":"TCAP","entrezGeneId":8557},{"hugoGeneSymbol":"TCEA1","entrezGeneId":6917},{"hugoGeneSymbol":"TCEA1P1","entrezGeneId":6918},{"hugoGeneSymbol":"TCEA1P2","entrezGeneId":399511},{"hugoGeneSymbol":"TCEA1P3","entrezGeneId":340501},{"hugoGeneSymbol":"TCEA1P4","entrezGeneId":100421350},{"hugoGeneSymbol":"TCEA2","entrezGeneId":6919},{"hugoGeneSymbol":"TCEA3","entrezGeneId":6920},{"hugoGeneSymbol":"TCEAL1","entrezGeneId":9338},{"hugoGeneSymbol":"TCEAL2","entrezGeneId":140597},{"hugoGeneSymbol":"TCEAL3","entrezGeneId":85012},{"hugoGeneSymbol":"TCEAL3-AS1","entrezGeneId":100874119},{"hugoGeneSymbol":"TCEAL4","entrezGeneId":79921},{"hugoGeneSymbol":"TCEAL4P1","entrezGeneId":100874432},{"hugoGeneSymbol":"TCEAL5","entrezGeneId":340543},{"hugoGeneSymbol":"TCEAL6","entrezGeneId":158931},{"hugoGeneSymbol":"TCEAL7","entrezGeneId":56849},{"hugoGeneSymbol":"TCEAL8","entrezGeneId":90843},{"hugoGeneSymbol":"TCEAL8P1","entrezGeneId":101059982},{"hugoGeneSymbol":"TCEAL9","entrezGeneId":51186},{"hugoGeneSymbol":"TCEANC","entrezGeneId":170082},{"hugoGeneSymbol":"TCEANC2","entrezGeneId":127428},{"hugoGeneSymbol":"TCERG1","entrezGeneId":10915},{"hugoGeneSymbol":"TCERG1L","entrezGeneId":256536},{"hugoGeneSymbol":"TCERG1L-AS1","entrezGeneId":101927489},{"hugoGeneSymbol":"TCF12","entrezGeneId":6938},{"hugoGeneSymbol":"TCF15","entrezGeneId":6939},{"hugoGeneSymbol":"TCF19","entrezGeneId":6941},{"hugoGeneSymbol":"TCF20","entrezGeneId":6942},{"hugoGeneSymbol":"TCF21","entrezGeneId":6943},{"hugoGeneSymbol":"TCF23","entrezGeneId":150921},{"hugoGeneSymbol":"TCF24","entrezGeneId":100129654},{"hugoGeneSymbol":"TCF25","entrezGeneId":22980},{"hugoGeneSymbol":"TCF3","entrezGeneId":6929},{"hugoGeneSymbol":"TCF3P1","entrezGeneId":100129107},{"hugoGeneSymbol":"TCF4","entrezGeneId":6925},{"hugoGeneSymbol":"TCF4-AS1","entrezGeneId":105372127},{"hugoGeneSymbol":"TCF4-AS2","entrezGeneId":106480339},{"hugoGeneSymbol":"TCF7","entrezGeneId":6932},{"hugoGeneSymbol":"TCF7L1","entrezGeneId":83439},{"hugoGeneSymbol":"TCF7L1-IT1","entrezGeneId":100874334},{"hugoGeneSymbol":"TCF7L2","entrezGeneId":6934},{"hugoGeneSymbol":"TCFL5","entrezGeneId":10732},{"hugoGeneSymbol":"TCHH","entrezGeneId":7062},{"hugoGeneSymbol":"TCHHL1","entrezGeneId":126637},{"hugoGeneSymbol":"TCHP","entrezGeneId":84260},{"hugoGeneSymbol":"TCIM","entrezGeneId":56892},{"hugoGeneSymbol":"TCIRG1","entrezGeneId":10312},{"hugoGeneSymbol":"TCL1A","entrezGeneId":8115},{"hugoGeneSymbol":"TCL1B","entrezGeneId":9623},{"hugoGeneSymbol":"TCL4","entrezGeneId":6946},{"hugoGeneSymbol":"TCL6","entrezGeneId":27004},{"hugoGeneSymbol":"TCN1","entrezGeneId":6947},{"hugoGeneSymbol":"TCN2","entrezGeneId":6948},{"hugoGeneSymbol":"TCO","entrezGeneId":50975},{"hugoGeneSymbol":"TCOF1","entrezGeneId":6949},{"hugoGeneSymbol":"TCONS_00068220","entrezGeneId":105375819},{"hugoGeneSymbol":"TCP1","entrezGeneId":6950},{"hugoGeneSymbol":"TCP10","entrezGeneId":6953},{"hugoGeneSymbol":"TCP10L","entrezGeneId":140290},{"hugoGeneSymbol":"TCP10L2","entrezGeneId":401285},{"hugoGeneSymbol":"TCP11","entrezGeneId":6954},{"hugoGeneSymbol":"TCP11L1","entrezGeneId":55346},{"hugoGeneSymbol":"TCP11L2","entrezGeneId":255394},{"hugoGeneSymbol":"TCP11X1","entrezGeneId":100996631},{"hugoGeneSymbol":"TCP11X2","entrezGeneId":100996648},{"hugoGeneSymbol":"TCP11X3P","entrezGeneId":106481605},{"hugoGeneSymbol":"TCP1P1","entrezGeneId":647047},{"hugoGeneSymbol":"TCP1P2","entrezGeneId":6952},{"hugoGeneSymbol":"TCP1P3","entrezGeneId":400013},{"hugoGeneSymbol":"TCPT","entrezGeneId":140892},{"hugoGeneSymbol":"TCTA","entrezGeneId":6988},{"hugoGeneSymbol":"TCTE1","entrezGeneId":202500},{"hugoGeneSymbol":"TCTE3","entrezGeneId":6991},{"hugoGeneSymbol":"TCTEX1D1","entrezGeneId":200132},{"hugoGeneSymbol":"TCTEX1D2","entrezGeneId":255758},{"hugoGeneSymbol":"TCTEX1D4","entrezGeneId":343521},{"hugoGeneSymbol":"TCTN1","entrezGeneId":79600},{"hugoGeneSymbol":"TCTN2","entrezGeneId":79867},{"hugoGeneSymbol":"TCTN3","entrezGeneId":26123},{"hugoGeneSymbol":"TDG","entrezGeneId":6996},{"hugoGeneSymbol":"TDGF1","entrezGeneId":6997},{"hugoGeneSymbol":"TDGF1P1","entrezGeneId":100421177},{"hugoGeneSymbol":"TDGF1P2","entrezGeneId":22816},{"hugoGeneSymbol":"TDGF1P3","entrezGeneId":6998},{"hugoGeneSymbol":"TDGF1P4","entrezGeneId":22815},{"hugoGeneSymbol":"TDGF1P5","entrezGeneId":22814},{"hugoGeneSymbol":"TDGF1P6","entrezGeneId":22813},{"hugoGeneSymbol":"TDGF1P7","entrezGeneId":100129080},{"hugoGeneSymbol":"TDGP1","entrezGeneId":645233},{"hugoGeneSymbol":"TDH","entrezGeneId":157739},{"hugoGeneSymbol":"TDO2","entrezGeneId":6999},{"hugoGeneSymbol":"TDP1","entrezGeneId":55775},{"hugoGeneSymbol":"TDP2","entrezGeneId":51567},{"hugoGeneSymbol":"TDRD1","entrezGeneId":56165},{"hugoGeneSymbol":"TDRD10","entrezGeneId":126668},{"hugoGeneSymbol":"TDRD12","entrezGeneId":91646},{"hugoGeneSymbol":"TDRD15","entrezGeneId":100129278},{"hugoGeneSymbol":"TDRD3","entrezGeneId":81550},{"hugoGeneSymbol":"TDRD5","entrezGeneId":163589},{"hugoGeneSymbol":"TDRD6","entrezGeneId":221400},{"hugoGeneSymbol":"TDRD7","entrezGeneId":23424},{"hugoGeneSymbol":"TDRD9","entrezGeneId":122402},{"hugoGeneSymbol":"TDRG1","entrezGeneId":732253},{"hugoGeneSymbol":"TDRKH","entrezGeneId":11022},{"hugoGeneSymbol":"TDRKH-AS1","entrezGeneId":109729141},{"hugoGeneSymbol":"TDRP","entrezGeneId":157695},{"hugoGeneSymbol":"TEAD1","entrezGeneId":7003},{"hugoGeneSymbol":"TEAD2","entrezGeneId":8463},{"hugoGeneSymbol":"TEAD3","entrezGeneId":7005},{"hugoGeneSymbol":"TEAD4","entrezGeneId":7004},{"hugoGeneSymbol":"TEC","entrezGeneId":7006},{"hugoGeneSymbol":"TECPR1","entrezGeneId":25851},{"hugoGeneSymbol":"TECPR2","entrezGeneId":9895},{"hugoGeneSymbol":"TECR","entrezGeneId":9524},{"hugoGeneSymbol":"TECRL","entrezGeneId":253017},{"hugoGeneSymbol":"TECRP1","entrezGeneId":442777},{"hugoGeneSymbol":"TECRP2","entrezGeneId":391696},{"hugoGeneSymbol":"TECTA","entrezGeneId":7007},{"hugoGeneSymbol":"TECTB","entrezGeneId":6975},{"hugoGeneSymbol":"TEDC1","entrezGeneId":283643},{"hugoGeneSymbol":"TEDC2","entrezGeneId":80178},{"hugoGeneSymbol":"TEDDM1","entrezGeneId":127670},{"hugoGeneSymbol":"TEDDM2P","entrezGeneId":127671},{"hugoGeneSymbol":"TEF","entrezGeneId":7008},{"hugoGeneSymbol":"TEFM","entrezGeneId":79736},{"hugoGeneSymbol":"TEK","entrezGeneId":7010},{"hugoGeneSymbol":"TEKT1","entrezGeneId":83659},{"hugoGeneSymbol":"TEKT2","entrezGeneId":27285},{"hugoGeneSymbol":"TEKT3","entrezGeneId":64518},{"hugoGeneSymbol":"TEKT4","entrezGeneId":150483},{"hugoGeneSymbol":"TEKT4P1","entrezGeneId":727768},{"hugoGeneSymbol":"TEKT4P2","entrezGeneId":100132288},{"hugoGeneSymbol":"TEKT4P3","entrezGeneId":100873355},{"hugoGeneSymbol":"TEKT5","entrezGeneId":146279},{"hugoGeneSymbol":"TELAB1","entrezGeneId":338411},{"hugoGeneSymbol":"TELM","entrezGeneId":550641},{"hugoGeneSymbol":"TELO2","entrezGeneId":9894},{"hugoGeneSymbol":"TEMN3-AS1","entrezGeneId":105377573},{"hugoGeneSymbol":"TEMPS","entrezGeneId":105274375},{"hugoGeneSymbol":"TEN1","entrezGeneId":100134934},{"hugoGeneSymbol":"TEN1-CDK3","entrezGeneId":100529145},{"hugoGeneSymbol":"TENM1","entrezGeneId":10178},{"hugoGeneSymbol":"TENM2","entrezGeneId":57451},{"hugoGeneSymbol":"TENM3","entrezGeneId":55714},{"hugoGeneSymbol":"TENM4","entrezGeneId":26011},{"hugoGeneSymbol":"TEP1","entrezGeneId":7011},{"hugoGeneSymbol":"TEPP","entrezGeneId":374739},{"hugoGeneSymbol":"TEPSIN","entrezGeneId":146705},{"hugoGeneSymbol":"TERB1","entrezGeneId":283847},{"hugoGeneSymbol":"TERB2","entrezGeneId":145645},{"hugoGeneSymbol":"TERC","entrezGeneId":7012},{"hugoGeneSymbol":"TERF1","entrezGeneId":7013},{"hugoGeneSymbol":"TERF1P1","entrezGeneId":348567},{"hugoGeneSymbol":"TERF1P2","entrezGeneId":646359},{"hugoGeneSymbol":"TERF1P3","entrezGeneId":646316},{"hugoGeneSymbol":"TERF1P4","entrezGeneId":648283},{"hugoGeneSymbol":"TERF1P5","entrezGeneId":283523},{"hugoGeneSymbol":"TERF2","entrezGeneId":7014},{"hugoGeneSymbol":"TERF2IP","entrezGeneId":54386},{"hugoGeneSymbol":"TERF2IPP1","entrezGeneId":644899},{"hugoGeneSymbol":"TERT","entrezGeneId":7015},{"hugoGeneSymbol":"TES","entrezGeneId":26136},{"hugoGeneSymbol":"TESC","entrezGeneId":54997},{"hugoGeneSymbol":"TESC-AS1","entrezGeneId":101928244},{"hugoGeneSymbol":"TESK1","entrezGeneId":7016},{"hugoGeneSymbol":"TESK2","entrezGeneId":10420},{"hugoGeneSymbol":"TESMIN","entrezGeneId":9633},{"hugoGeneSymbol":"TESPA1","entrezGeneId":9840},{"hugoGeneSymbol":"TET1","entrezGeneId":80312},{"hugoGeneSymbol":"TET18P","entrezGeneId":100750329},{"hugoGeneSymbol":"TET1P1","entrezGeneId":441662},{"hugoGeneSymbol":"TET2","entrezGeneId":54790},{"hugoGeneSymbol":"TET2-AS1","entrezGeneId":104384744},{"hugoGeneSymbol":"TET3","entrezGeneId":200424},{"hugoGeneSymbol":"TEX10","entrezGeneId":54881},{"hugoGeneSymbol":"TEX101","entrezGeneId":83639},{"hugoGeneSymbol":"TEX11","entrezGeneId":56159},{"hugoGeneSymbol":"TEX12","entrezGeneId":56158},{"hugoGeneSymbol":"TEX13A","entrezGeneId":56157},{"hugoGeneSymbol":"TEX13B","entrezGeneId":56156},{"hugoGeneSymbol":"TEX13C","entrezGeneId":100129520},{"hugoGeneSymbol":"TEX13D","entrezGeneId":100132015},{"hugoGeneSymbol":"TEX14","entrezGeneId":56155},{"hugoGeneSymbol":"TEX15","entrezGeneId":56154},{"hugoGeneSymbol":"TEX16P","entrezGeneId":100499435},{"hugoGeneSymbol":"TEX19","entrezGeneId":400629},{"hugoGeneSymbol":"TEX2","entrezGeneId":55852},{"hugoGeneSymbol":"TEX21P","entrezGeneId":441687},{"hugoGeneSymbol":"TEX22","entrezGeneId":647310},{"hugoGeneSymbol":"TEX26","entrezGeneId":122046},{"hugoGeneSymbol":"TEX26-AS1","entrezGeneId":100507064},{"hugoGeneSymbol":"TEX261","entrezGeneId":113419},{"hugoGeneSymbol":"TEX264","entrezGeneId":51368},{"hugoGeneSymbol":"TEX28","entrezGeneId":1527},{"hugoGeneSymbol":"TEX28P1","entrezGeneId":728447},{"hugoGeneSymbol":"TEX28P2","entrezGeneId":653363},{"hugoGeneSymbol":"TEX29","entrezGeneId":121793},{"hugoGeneSymbol":"TEX30","entrezGeneId":93081},{"hugoGeneSymbol":"TEX33","entrezGeneId":339669},{"hugoGeneSymbol":"TEX35","entrezGeneId":84066},{"hugoGeneSymbol":"TEX36","entrezGeneId":387718},{"hugoGeneSymbol":"TEX36-AS1","entrezGeneId":100169752},{"hugoGeneSymbol":"TEX37","entrezGeneId":200523},{"hugoGeneSymbol":"TEX38","entrezGeneId":374973},{"hugoGeneSymbol":"TEX41","entrezGeneId":401014},{"hugoGeneSymbol":"TEX43","entrezGeneId":389320},{"hugoGeneSymbol":"TEX44","entrezGeneId":165100},{"hugoGeneSymbol":"TEX45","entrezGeneId":374877},{"hugoGeneSymbol":"TEX46","entrezGeneId":729059},{"hugoGeneSymbol":"TEX47","entrezGeneId":219557},{"hugoGeneSymbol":"TEX48","entrezGeneId":100505478},{"hugoGeneSymbol":"TEX49","entrezGeneId":255411},{"hugoGeneSymbol":"TEX50","entrezGeneId":730159},{"hugoGeneSymbol":"TEX51","entrezGeneId":101929926},{"hugoGeneSymbol":"TEX52","entrezGeneId":101929469},{"hugoGeneSymbol":"TEX53","entrezGeneId":105376230},{"hugoGeneSymbol":"TEX54","entrezGeneId":111216277},{"hugoGeneSymbol":"TEX9","entrezGeneId":374618},{"hugoGeneSymbol":"TF","entrezGeneId":7018},{"hugoGeneSymbol":"TFAM","entrezGeneId":7019},{"hugoGeneSymbol":"TFAMP1","entrezGeneId":260341},{"hugoGeneSymbol":"TFAMP2","entrezGeneId":260340},{"hugoGeneSymbol":"TFAP2A","entrezGeneId":7020},{"hugoGeneSymbol":"TFAP2A-AS1","entrezGeneId":100130275},{"hugoGeneSymbol":"TFAP2A-AS2","entrezGeneId":109729173},{"hugoGeneSymbol":"TFAP2B","entrezGeneId":7021},{"hugoGeneSymbol":"TFAP2C","entrezGeneId":7022},{"hugoGeneSymbol":"TFAP2D","entrezGeneId":83741},{"hugoGeneSymbol":"TFAP2E","entrezGeneId":339488},{"hugoGeneSymbol":"TFAP4","entrezGeneId":7023},{"hugoGeneSymbol":"TFB1M","entrezGeneId":51106},{"hugoGeneSymbol":"TFB2M","entrezGeneId":64216},{"hugoGeneSymbol":"TFCP2","entrezGeneId":7024},{"hugoGeneSymbol":"TFCP2L1","entrezGeneId":29842},{"hugoGeneSymbol":"TFDP1","entrezGeneId":7027},{"hugoGeneSymbol":"TFDP1P","entrezGeneId":391158},{"hugoGeneSymbol":"TFDP2","entrezGeneId":7029},{"hugoGeneSymbol":"TFDP3","entrezGeneId":51270},{"hugoGeneSymbol":"TFE3","entrezGeneId":7030},{"hugoGeneSymbol":"TFEB","entrezGeneId":7942},{"hugoGeneSymbol":"TFEC","entrezGeneId":22797},{"hugoGeneSymbol":"TFF1","entrezGeneId":7031},{"hugoGeneSymbol":"TFF2","entrezGeneId":7032},{"hugoGeneSymbol":"TFF3","entrezGeneId":7033},{"hugoGeneSymbol":"TFG","entrezGeneId":10342},{"hugoGeneSymbol":"TFIP11","entrezGeneId":24144},{"hugoGeneSymbol":"TFP1","entrezGeneId":100129696},{"hugoGeneSymbol":"TFPI","entrezGeneId":7035},{"hugoGeneSymbol":"TFPI2","entrezGeneId":7980},{"hugoGeneSymbol":"TFPT","entrezGeneId":29844},{"hugoGeneSymbol":"TFR2","entrezGeneId":7036},{"hugoGeneSymbol":"TFRC","entrezGeneId":7037},{"hugoGeneSymbol":"TG","entrezGeneId":7038},{"hugoGeneSymbol":"TGCT1","entrezGeneId":50830},{"hugoGeneSymbol":"TGDS","entrezGeneId":23483},{"hugoGeneSymbol":"TGFA","entrezGeneId":7039},{"hugoGeneSymbol":"TGFA-IT1","entrezGeneId":100874273},{"hugoGeneSymbol":"TGFB1","entrezGeneId":7040},{"hugoGeneSymbol":"TGFB1I1","entrezGeneId":7041},{"hugoGeneSymbol":"TGFB2","entrezGeneId":7042},{"hugoGeneSymbol":"TGFB2-AS1","entrezGeneId":728463},{"hugoGeneSymbol":"TGFB2-OT1","entrezGeneId":103611157},{"hugoGeneSymbol":"TGFB3","entrezGeneId":7043},{"hugoGeneSymbol":"TGFB3-AS1","entrezGeneId":109729179},{"hugoGeneSymbol":"TGFBI","entrezGeneId":7045},{"hugoGeneSymbol":"TGFBR1","entrezGeneId":7046},{"hugoGeneSymbol":"TGFBR2","entrezGeneId":7048},{"hugoGeneSymbol":"TGFBR3","entrezGeneId":7049},{"hugoGeneSymbol":"TGFBR3L","entrezGeneId":100507588},{"hugoGeneSymbol":"TGFBRAP1","entrezGeneId":9392},{"hugoGeneSymbol":"TGIF1","entrezGeneId":7050},{"hugoGeneSymbol":"TGIF1P1","entrezGeneId":126052},{"hugoGeneSymbol":"TGIF2","entrezGeneId":60436},{"hugoGeneSymbol":"TGIF2-RAB5IF","entrezGeneId":100527943},{"hugoGeneSymbol":"TGIF2LX","entrezGeneId":90316},{"hugoGeneSymbol":"TGIF2LY","entrezGeneId":90655},{"hugoGeneSymbol":"TGIF2P1","entrezGeneId":126826},{"hugoGeneSymbol":"TGM1","entrezGeneId":7051},{"hugoGeneSymbol":"TGM2","entrezGeneId":7052},{"hugoGeneSymbol":"TGM3","entrezGeneId":7053},{"hugoGeneSymbol":"TGM4","entrezGeneId":7047},{"hugoGeneSymbol":"TGM5","entrezGeneId":9333},{"hugoGeneSymbol":"TGM6","entrezGeneId":343641},{"hugoGeneSymbol":"TGM7","entrezGeneId":116179},{"hugoGeneSymbol":"TGOLN2","entrezGeneId":10618},{"hugoGeneSymbol":"TGS1","entrezGeneId":96764},{"hugoGeneSymbol":"TH","entrezGeneId":7054},{"hugoGeneSymbol":"TH2-LCR","entrezGeneId":106128901},{"hugoGeneSymbol":"TH2LCRR","entrezGeneId":101927761},{"hugoGeneSymbol":"THA1P","entrezGeneId":390816},{"hugoGeneSymbol":"THADA","entrezGeneId":63892},{"hugoGeneSymbol":"THAP1","entrezGeneId":55145},{"hugoGeneSymbol":"THAP10","entrezGeneId":56906},{"hugoGeneSymbol":"THAP11","entrezGeneId":57215},{"hugoGeneSymbol":"THAP12","entrezGeneId":5612},{"hugoGeneSymbol":"THAP12P1","entrezGeneId":728748},{"hugoGeneSymbol":"THAP12P10","entrezGeneId":100422715},{"hugoGeneSymbol":"THAP12P2","entrezGeneId":100422711},{"hugoGeneSymbol":"THAP12P3","entrezGeneId":399774},{"hugoGeneSymbol":"THAP12P4","entrezGeneId":100129382},{"hugoGeneSymbol":"THAP12P5","entrezGeneId":100129074},{"hugoGeneSymbol":"THAP12P6","entrezGeneId":100128764},{"hugoGeneSymbol":"THAP12P7","entrezGeneId":100422712},{"hugoGeneSymbol":"THAP12P8","entrezGeneId":645939},{"hugoGeneSymbol":"THAP12P9","entrezGeneId":100131309},{"hugoGeneSymbol":"THAP2","entrezGeneId":83591},{"hugoGeneSymbol":"THAP3","entrezGeneId":90326},{"hugoGeneSymbol":"THAP4","entrezGeneId":51078},{"hugoGeneSymbol":"THAP5","entrezGeneId":168451},{"hugoGeneSymbol":"THAP5P1","entrezGeneId":285872},{"hugoGeneSymbol":"THAP5P2","entrezGeneId":100129618},{"hugoGeneSymbol":"THAP6","entrezGeneId":152815},{"hugoGeneSymbol":"THAP7","entrezGeneId":80764},{"hugoGeneSymbol":"THAP7-AS1","entrezGeneId":439931},{"hugoGeneSymbol":"THAP8","entrezGeneId":199745},{"hugoGeneSymbol":"THAP9","entrezGeneId":79725},{"hugoGeneSymbol":"THAP9-AS1","entrezGeneId":100499177},{"hugoGeneSymbol":"THAS","entrezGeneId":7055},{"hugoGeneSymbol":"THBD","entrezGeneId":7056},{"hugoGeneSymbol":"THBS1","entrezGeneId":7057},{"hugoGeneSymbol":"THBS2","entrezGeneId":7058},{"hugoGeneSymbol":"THBS3","entrezGeneId":7059},{"hugoGeneSymbol":"THBS4","entrezGeneId":7060},{"hugoGeneSymbol":"THCAT155","entrezGeneId":100129223},{"hugoGeneSymbol":"THCAT158","entrezGeneId":102724508},{"hugoGeneSymbol":"THCYTX","entrezGeneId":84434},{"hugoGeneSymbol":"THEG","entrezGeneId":51298},{"hugoGeneSymbol":"THEG5","entrezGeneId":100507527},{"hugoGeneSymbol":"THEGL","entrezGeneId":100506564},{"hugoGeneSymbol":"THEM4","entrezGeneId":117145},{"hugoGeneSymbol":"THEM4P1","entrezGeneId":677880},{"hugoGeneSymbol":"THEM5","entrezGeneId":284486},{"hugoGeneSymbol":"THEM6","entrezGeneId":51337},{"hugoGeneSymbol":"THEM7P","entrezGeneId":106480297},{"hugoGeneSymbol":"THEMIS","entrezGeneId":387357},{"hugoGeneSymbol":"THEMIS2","entrezGeneId":9473},{"hugoGeneSymbol":"THEMIS3P","entrezGeneId":100420484},{"hugoGeneSymbol":"THG1L","entrezGeneId":54974},{"hugoGeneSymbol":"THM","entrezGeneId":7063},{"hugoGeneSymbol":"THMA","entrezGeneId":117193},{"hugoGeneSymbol":"THNSL1","entrezGeneId":79896},{"hugoGeneSymbol":"THNSL2","entrezGeneId":55258},{"hugoGeneSymbol":"THOC1","entrezGeneId":9984},{"hugoGeneSymbol":"THOC2","entrezGeneId":57187},{"hugoGeneSymbol":"THOC3","entrezGeneId":84321},{"hugoGeneSymbol":"THOC5","entrezGeneId":8563},{"hugoGeneSymbol":"THOC6","entrezGeneId":79228},{"hugoGeneSymbol":"THOC7","entrezGeneId":80145},{"hugoGeneSymbol":"THOC7-AS1","entrezGeneId":100874039},{"hugoGeneSymbol":"THOP1","entrezGeneId":7064},{"hugoGeneSymbol":"THPO","entrezGeneId":7066},{"hugoGeneSymbol":"THRA","entrezGeneId":7067},{"hugoGeneSymbol":"THRA1/BTR","entrezGeneId":105371807},{"hugoGeneSymbol":"THRAP3","entrezGeneId":9967},{"hugoGeneSymbol":"THRAP3P1","entrezGeneId":391524},{"hugoGeneSymbol":"THRB","entrezGeneId":7068},{"hugoGeneSymbol":"THRB-AS1","entrezGeneId":644990},{"hugoGeneSymbol":"THRB-IT1","entrezGeneId":100874274},{"hugoGeneSymbol":"THRIL","entrezGeneId":102659353},{"hugoGeneSymbol":"THRSP","entrezGeneId":7069},{"hugoGeneSymbol":"THSD1","entrezGeneId":55901},{"hugoGeneSymbol":"THSD1P1","entrezGeneId":374500},{"hugoGeneSymbol":"THSD4","entrezGeneId":79875},{"hugoGeneSymbol":"THSD4-AS1","entrezGeneId":101929196},{"hugoGeneSymbol":"THSD4-AS2","entrezGeneId":101929173},{"hugoGeneSymbol":"THSD7A","entrezGeneId":221981},{"hugoGeneSymbol":"THSD7B","entrezGeneId":80731},{"hugoGeneSymbol":"THSD8","entrezGeneId":111644133},{"hugoGeneSymbol":"THTPA","entrezGeneId":79178},{"hugoGeneSymbol":"THUMPD1","entrezGeneId":55623},{"hugoGeneSymbol":"THUMPD1P1","entrezGeneId":391276},{"hugoGeneSymbol":"THUMPD2","entrezGeneId":80745},{"hugoGeneSymbol":"THUMPD3","entrezGeneId":25917},{"hugoGeneSymbol":"THUMPD3-AS1","entrezGeneId":440944},{"hugoGeneSymbol":"THUMPD3P1","entrezGeneId":100419989},{"hugoGeneSymbol":"THY1","entrezGeneId":7070},{"hugoGeneSymbol":"THYN1","entrezGeneId":29087},{"hugoGeneSymbol":"TIA1","entrezGeneId":7072},{"hugoGeneSymbol":"TIAF1","entrezGeneId":9220},{"hugoGeneSymbol":"TIAL1","entrezGeneId":7073},{"hugoGeneSymbol":"TIAM1","entrezGeneId":7074},{"hugoGeneSymbol":"TIAM2","entrezGeneId":26230},{"hugoGeneSymbol":"TICAM1","entrezGeneId":148022},{"hugoGeneSymbol":"TICAM2","entrezGeneId":353376},{"hugoGeneSymbol":"TICRR","entrezGeneId":90381},{"hugoGeneSymbol":"TIE1","entrezGeneId":7075},{"hugoGeneSymbol":"TIFA","entrezGeneId":92610},{"hugoGeneSymbol":"TIFAB","entrezGeneId":497189},{"hugoGeneSymbol":"TIGAR","entrezGeneId":57103},{"hugoGeneSymbol":"TIGD1","entrezGeneId":200765},{"hugoGeneSymbol":"TIGD2","entrezGeneId":166815},{"hugoGeneSymbol":"TIGD3","entrezGeneId":220359},{"hugoGeneSymbol":"TIGD4","entrezGeneId":201798},{"hugoGeneSymbol":"TIGD5","entrezGeneId":84948},{"hugoGeneSymbol":"TIGD6","entrezGeneId":81789},{"hugoGeneSymbol":"TIGD7","entrezGeneId":91151},{"hugoGeneSymbol":"TIGIT","entrezGeneId":201633},{"hugoGeneSymbol":"TIMD4","entrezGeneId":91937},{"hugoGeneSymbol":"TIMELESS","entrezGeneId":8914},{"hugoGeneSymbol":"TIMM10","entrezGeneId":26519},{"hugoGeneSymbol":"TIMM10B","entrezGeneId":26515},{"hugoGeneSymbol":"TIMM13","entrezGeneId":26517},{"hugoGeneSymbol":"TIMM17A","entrezGeneId":10440},{"hugoGeneSymbol":"TIMM17B","entrezGeneId":10245},{"hugoGeneSymbol":"TIMM17BP1","entrezGeneId":390298},{"hugoGeneSymbol":"TIMM21","entrezGeneId":29090},{"hugoGeneSymbol":"TIMM22","entrezGeneId":29928},{"hugoGeneSymbol":"TIMM23","entrezGeneId":100287932},{"hugoGeneSymbol":"TIMM23B","entrezGeneId":100652748},{"hugoGeneSymbol":"TIMM29","entrezGeneId":90580},{"hugoGeneSymbol":"TIMM44","entrezGeneId":10469},{"hugoGeneSymbol":"TIMM50","entrezGeneId":92609},{"hugoGeneSymbol":"TIMM8A","entrezGeneId":1678},{"hugoGeneSymbol":"TIMM8AP1","entrezGeneId":399520},{"hugoGeneSymbol":"TIMM8B","entrezGeneId":26521},{"hugoGeneSymbol":"TIMM8BP1","entrezGeneId":100874425},{"hugoGeneSymbol":"TIMM8BP2","entrezGeneId":100874417},{"hugoGeneSymbol":"TIMM9","entrezGeneId":26520},{"hugoGeneSymbol":"TIMM9P1","entrezGeneId":100862726},{"hugoGeneSymbol":"TIMM9P2","entrezGeneId":100862727},{"hugoGeneSymbol":"TIMM9P3","entrezGeneId":100862725},{"hugoGeneSymbol":"TIMMDC1","entrezGeneId":51300},{"hugoGeneSymbol":"TIMP1","entrezGeneId":7076},{"hugoGeneSymbol":"TIMP2","entrezGeneId":7077},{"hugoGeneSymbol":"TIMP3","entrezGeneId":7078},{"hugoGeneSymbol":"TIMP4","entrezGeneId":7079},{"hugoGeneSymbol":"TINAG","entrezGeneId":27283},{"hugoGeneSymbol":"TINAGL1","entrezGeneId":64129},{"hugoGeneSymbol":"TINCR","entrezGeneId":257000},{"hugoGeneSymbol":"TINF2","entrezGeneId":26277},{"hugoGeneSymbol":"TIPARP","entrezGeneId":25976},{"hugoGeneSymbol":"TIPARP-AS1","entrezGeneId":100287227},{"hugoGeneSymbol":"TIPIN","entrezGeneId":54962},{"hugoGeneSymbol":"TIPRL","entrezGeneId":261726},{"hugoGeneSymbol":"TIRAP","entrezGeneId":114609},{"hugoGeneSymbol":"TJAP1","entrezGeneId":93643},{"hugoGeneSymbol":"TJP1","entrezGeneId":7082},{"hugoGeneSymbol":"TJP1P1","entrezGeneId":64730},{"hugoGeneSymbol":"TJP2","entrezGeneId":9414},{"hugoGeneSymbol":"TJP3","entrezGeneId":27134},{"hugoGeneSymbol":"TK1","entrezGeneId":7083},{"hugoGeneSymbol":"TK2","entrezGeneId":7084},{"hugoGeneSymbol":"TKCR","entrezGeneId":7085},{"hugoGeneSymbol":"TKFC","entrezGeneId":26007},{"hugoGeneSymbol":"TKT","entrezGeneId":7086},{"hugoGeneSymbol":"TKTL1","entrezGeneId":8277},{"hugoGeneSymbol":"TKTL2","entrezGeneId":84076},{"hugoGeneSymbol":"TLCD1","entrezGeneId":116238},{"hugoGeneSymbol":"TLCD2","entrezGeneId":727910},{"hugoGeneSymbol":"TLDC1","entrezGeneId":57707},{"hugoGeneSymbol":"TLDC2","entrezGeneId":140711},{"hugoGeneSymbol":"TLE1","entrezGeneId":7088},{"hugoGeneSymbol":"TLE1P1","entrezGeneId":645381},{"hugoGeneSymbol":"TLE2","entrezGeneId":7089},{"hugoGeneSymbol":"TLE3","entrezGeneId":7090},{"hugoGeneSymbol":"TLE4","entrezGeneId":7091},{"hugoGeneSymbol":"TLE6","entrezGeneId":79816},{"hugoGeneSymbol":"TLE7","entrezGeneId":102723796},{"hugoGeneSymbol":"TLK1","entrezGeneId":9874},{"hugoGeneSymbol":"TLK1P1","entrezGeneId":100129793},{"hugoGeneSymbol":"TLK2","entrezGeneId":11011},{"hugoGeneSymbol":"TLK2P1","entrezGeneId":646202},{"hugoGeneSymbol":"TLK2P2","entrezGeneId":553121},{"hugoGeneSymbol":"TLL1","entrezGeneId":7092},{"hugoGeneSymbol":"TLL2","entrezGeneId":7093},{"hugoGeneSymbol":"TLN1","entrezGeneId":7094},{"hugoGeneSymbol":"TLN2","entrezGeneId":83660},{"hugoGeneSymbol":"TLNRD1","entrezGeneId":59274},{"hugoGeneSymbol":"TLR1","entrezGeneId":7096},{"hugoGeneSymbol":"TLR10","entrezGeneId":81793},{"hugoGeneSymbol":"TLR12P","entrezGeneId":100131451},{"hugoGeneSymbol":"TLR2","entrezGeneId":7097},{"hugoGeneSymbol":"TLR3","entrezGeneId":7098},{"hugoGeneSymbol":"TLR4","entrezGeneId":7099},{"hugoGeneSymbol":"TLR5","entrezGeneId":7100},{"hugoGeneSymbol":"TLR6","entrezGeneId":10333},{"hugoGeneSymbol":"TLR7","entrezGeneId":51284},{"hugoGeneSymbol":"TLR8","entrezGeneId":51311},{"hugoGeneSymbol":"TLR8-AS1","entrezGeneId":349408},{"hugoGeneSymbol":"TLR9","entrezGeneId":54106},{"hugoGeneSymbol":"TLX1","entrezGeneId":3195},{"hugoGeneSymbol":"TLX1NB","entrezGeneId":100038246},{"hugoGeneSymbol":"TLX2","entrezGeneId":3196},{"hugoGeneSymbol":"TLX3","entrezGeneId":30012},{"hugoGeneSymbol":"TM2D1","entrezGeneId":83941},{"hugoGeneSymbol":"TM2D2","entrezGeneId":83877},{"hugoGeneSymbol":"TM2D3","entrezGeneId":80213},{"hugoGeneSymbol":"TM4SF1","entrezGeneId":4071},{"hugoGeneSymbol":"TM4SF1-AS1","entrezGeneId":100874091},{"hugoGeneSymbol":"TM4SF18","entrezGeneId":116441},{"hugoGeneSymbol":"TM4SF19","entrezGeneId":116211},{"hugoGeneSymbol":"TM4SF19-AS1","entrezGeneId":100874214},{"hugoGeneSymbol":"TM4SF19-TCTEX1D2","entrezGeneId":100534611},{"hugoGeneSymbol":"TM4SF20","entrezGeneId":79853},{"hugoGeneSymbol":"TM4SF4","entrezGeneId":7104},{"hugoGeneSymbol":"TM4SF5","entrezGeneId":9032},{"hugoGeneSymbol":"TM6SF1","entrezGeneId":53346},{"hugoGeneSymbol":"TM6SF2","entrezGeneId":53345},{"hugoGeneSymbol":"TM7SF2","entrezGeneId":7108},{"hugoGeneSymbol":"TM7SF3","entrezGeneId":51768},{"hugoGeneSymbol":"TM9SF1","entrezGeneId":10548},{"hugoGeneSymbol":"TM9SF2","entrezGeneId":9375},{"hugoGeneSymbol":"TM9SF3","entrezGeneId":56889},{"hugoGeneSymbol":"TM9SF4","entrezGeneId":9777},{"hugoGeneSymbol":"TMA16","entrezGeneId":55319},{"hugoGeneSymbol":"TMA16P1","entrezGeneId":100101405},{"hugoGeneSymbol":"TMA16P2","entrezGeneId":100101407},{"hugoGeneSymbol":"TMA7","entrezGeneId":51372},{"hugoGeneSymbol":"TMBIM1","entrezGeneId":64114},{"hugoGeneSymbol":"TMBIM4","entrezGeneId":51643},{"hugoGeneSymbol":"TMBIM6","entrezGeneId":7009},{"hugoGeneSymbol":"TMBIM7P","entrezGeneId":105375396},{"hugoGeneSymbol":"TMC1","entrezGeneId":117531},{"hugoGeneSymbol":"TMC2","entrezGeneId":117532},{"hugoGeneSymbol":"TMC3","entrezGeneId":342125},{"hugoGeneSymbol":"TMC3-AS1","entrezGeneId":101929655},{"hugoGeneSymbol":"TMC4","entrezGeneId":147798},{"hugoGeneSymbol":"TMC5","entrezGeneId":79838},{"hugoGeneSymbol":"TMC6","entrezGeneId":11322},{"hugoGeneSymbol":"TMC7","entrezGeneId":79905},{"hugoGeneSymbol":"TMC8","entrezGeneId":147138},{"hugoGeneSymbol":"TMCC1","entrezGeneId":23023},{"hugoGeneSymbol":"TMCC1-AS1","entrezGeneId":100507032},{"hugoGeneSymbol":"TMCC1P1","entrezGeneId":100128132},{"hugoGeneSymbol":"TMCC2","entrezGeneId":9911},{"hugoGeneSymbol":"TMCC3","entrezGeneId":57458},{"hugoGeneSymbol":"TMCO1","entrezGeneId":54499},{"hugoGeneSymbol":"TMCO2","entrezGeneId":127391},{"hugoGeneSymbol":"TMCO3","entrezGeneId":55002},{"hugoGeneSymbol":"TMCO4","entrezGeneId":255104},{"hugoGeneSymbol":"TMCO5A","entrezGeneId":145942},{"hugoGeneSymbol":"TMCO5B","entrezGeneId":100652857},{"hugoGeneSymbol":"TMCO6","entrezGeneId":55374},{"hugoGeneSymbol":"TMED1","entrezGeneId":11018},{"hugoGeneSymbol":"TMED10","entrezGeneId":10972},{"hugoGeneSymbol":"TMED10P1","entrezGeneId":286102},{"hugoGeneSymbol":"TMED10P2","entrezGeneId":100129727},{"hugoGeneSymbol":"TMED11P","entrezGeneId":100379220},{"hugoGeneSymbol":"TMED2","entrezGeneId":10959},{"hugoGeneSymbol":"TMED3","entrezGeneId":23423},{"hugoGeneSymbol":"TMED4","entrezGeneId":222068},{"hugoGeneSymbol":"TMED5","entrezGeneId":50999},{"hugoGeneSymbol":"TMED6","entrezGeneId":146456},{"hugoGeneSymbol":"TMED7","entrezGeneId":51014},{"hugoGeneSymbol":"TMED7-TICAM2","entrezGeneId":100302736},{"hugoGeneSymbol":"TMED8","entrezGeneId":283578},{"hugoGeneSymbol":"TMED9","entrezGeneId":54732},{"hugoGeneSymbol":"TMEFF1","entrezGeneId":8577},{"hugoGeneSymbol":"TMEFF2","entrezGeneId":23671},{"hugoGeneSymbol":"TMEM100","entrezGeneId":55273},{"hugoGeneSymbol":"TMEM101","entrezGeneId":84336},{"hugoGeneSymbol":"TMEM102","entrezGeneId":284114},{"hugoGeneSymbol":"TMEM104","entrezGeneId":54868},{"hugoGeneSymbol":"TMEM105","entrezGeneId":284186},{"hugoGeneSymbol":"TMEM106A","entrezGeneId":113277},{"hugoGeneSymbol":"TMEM106B","entrezGeneId":54664},{"hugoGeneSymbol":"TMEM106C","entrezGeneId":79022},{"hugoGeneSymbol":"TMEM107","entrezGeneId":84314},{"hugoGeneSymbol":"TMEM108","entrezGeneId":66000},{"hugoGeneSymbol":"TMEM108-AS1","entrezGeneId":101927455},{"hugoGeneSymbol":"TMEM109","entrezGeneId":79073},{"hugoGeneSymbol":"TMEM11","entrezGeneId":8834},{"hugoGeneSymbol":"TMEM110-MUSTN1","entrezGeneId":100526772},{"hugoGeneSymbol":"TMEM114","entrezGeneId":283953},{"hugoGeneSymbol":"TMEM115","entrezGeneId":11070},{"hugoGeneSymbol":"TMEM116","entrezGeneId":89894},{"hugoGeneSymbol":"TMEM117","entrezGeneId":84216},{"hugoGeneSymbol":"TMEM119","entrezGeneId":338773},{"hugoGeneSymbol":"TMEM120A","entrezGeneId":83862},{"hugoGeneSymbol":"TMEM120B","entrezGeneId":144404},{"hugoGeneSymbol":"TMEM121","entrezGeneId":80757},{"hugoGeneSymbol":"TMEM121B","entrezGeneId":27439},{"hugoGeneSymbol":"TMEM123","entrezGeneId":114908},{"hugoGeneSymbol":"TMEM125","entrezGeneId":128218},{"hugoGeneSymbol":"TMEM126A","entrezGeneId":84233},{"hugoGeneSymbol":"TMEM126B","entrezGeneId":55863},{"hugoGeneSymbol":"TMEM127","entrezGeneId":55654},{"hugoGeneSymbol":"TMEM128","entrezGeneId":85013},{"hugoGeneSymbol":"TMEM129","entrezGeneId":92305},{"hugoGeneSymbol":"TMEM130","entrezGeneId":222865},{"hugoGeneSymbol":"TMEM131","entrezGeneId":23505},{"hugoGeneSymbol":"TMEM131L","entrezGeneId":23240},{"hugoGeneSymbol":"TMEM132A","entrezGeneId":54972},{"hugoGeneSymbol":"TMEM132B","entrezGeneId":114795},{"hugoGeneSymbol":"TMEM132C","entrezGeneId":92293},{"hugoGeneSymbol":"TMEM132D","entrezGeneId":121256},{"hugoGeneSymbol":"TMEM132D-AS1","entrezGeneId":283352},{"hugoGeneSymbol":"TMEM132D-AS2","entrezGeneId":101927735},{"hugoGeneSymbol":"TMEM132E","entrezGeneId":124842},{"hugoGeneSymbol":"TMEM134","entrezGeneId":80194},{"hugoGeneSymbol":"TMEM135","entrezGeneId":65084},{"hugoGeneSymbol":"TMEM136","entrezGeneId":219902},{"hugoGeneSymbol":"TMEM138","entrezGeneId":51524},{"hugoGeneSymbol":"TMEM139","entrezGeneId":135932},{"hugoGeneSymbol":"TMEM140","entrezGeneId":55281},{"hugoGeneSymbol":"TMEM141","entrezGeneId":85014},{"hugoGeneSymbol":"TMEM143","entrezGeneId":55260},{"hugoGeneSymbol":"TMEM144","entrezGeneId":55314},{"hugoGeneSymbol":"TMEM145","entrezGeneId":284339},{"hugoGeneSymbol":"TMEM147","entrezGeneId":10430},{"hugoGeneSymbol":"TMEM147-AS1","entrezGeneId":100506469},{"hugoGeneSymbol":"TMEM14A","entrezGeneId":28978},{"hugoGeneSymbol":"TMEM14B","entrezGeneId":81853},{"hugoGeneSymbol":"TMEM14C","entrezGeneId":51522},{"hugoGeneSymbol":"TMEM14DP","entrezGeneId":645203},{"hugoGeneSymbol":"TMEM14EP","entrezGeneId":645843},{"hugoGeneSymbol":"TMEM150A","entrezGeneId":129303},{"hugoGeneSymbol":"TMEM150B","entrezGeneId":284417},{"hugoGeneSymbol":"TMEM150C","entrezGeneId":441027},{"hugoGeneSymbol":"TMEM151A","entrezGeneId":256472},{"hugoGeneSymbol":"TMEM151B","entrezGeneId":441151},{"hugoGeneSymbol":"TMEM154","entrezGeneId":201799},{"hugoGeneSymbol":"TMEM155","entrezGeneId":132332},{"hugoGeneSymbol":"TMEM156","entrezGeneId":80008},{"hugoGeneSymbol":"TMEM158","entrezGeneId":25907},{"hugoGeneSymbol":"TMEM159","entrezGeneId":57146},{"hugoGeneSymbol":"TMEM160","entrezGeneId":54958},{"hugoGeneSymbol":"TMEM161A","entrezGeneId":54929},{"hugoGeneSymbol":"TMEM161B","entrezGeneId":153396},{"hugoGeneSymbol":"TMEM161B-AS1","entrezGeneId":100505894},{"hugoGeneSymbol":"TMEM161BP1","entrezGeneId":646360},{"hugoGeneSymbol":"TMEM163","entrezGeneId":81615},{"hugoGeneSymbol":"TMEM164","entrezGeneId":84187},{"hugoGeneSymbol":"TMEM165","entrezGeneId":55858},{"hugoGeneSymbol":"TMEM167A","entrezGeneId":153339},{"hugoGeneSymbol":"TMEM167AP1","entrezGeneId":360028},{"hugoGeneSymbol":"TMEM167B","entrezGeneId":56900},{"hugoGeneSymbol":"TMEM168","entrezGeneId":64418},{"hugoGeneSymbol":"TMEM169","entrezGeneId":92691},{"hugoGeneSymbol":"TMEM17","entrezGeneId":200728},{"hugoGeneSymbol":"TMEM170A","entrezGeneId":124491},{"hugoGeneSymbol":"TMEM170B","entrezGeneId":100113407},{"hugoGeneSymbol":"TMEM171","entrezGeneId":134285},{"hugoGeneSymbol":"TMEM173","entrezGeneId":340061},{"hugoGeneSymbol":"TMEM174","entrezGeneId":134288},{"hugoGeneSymbol":"TMEM175","entrezGeneId":84286},{"hugoGeneSymbol":"TMEM176A","entrezGeneId":55365},{"hugoGeneSymbol":"TMEM176B","entrezGeneId":28959},{"hugoGeneSymbol":"TMEM177","entrezGeneId":80775},{"hugoGeneSymbol":"TMEM178A","entrezGeneId":130733},{"hugoGeneSymbol":"TMEM178B","entrezGeneId":100507421},{"hugoGeneSymbol":"TMEM179","entrezGeneId":388021},{"hugoGeneSymbol":"TMEM179B","entrezGeneId":374395},{"hugoGeneSymbol":"TMEM18","entrezGeneId":129787},{"hugoGeneSymbol":"TMEM181","entrezGeneId":57583},{"hugoGeneSymbol":"TMEM182","entrezGeneId":130827},{"hugoGeneSymbol":"TMEM183A","entrezGeneId":92703},{"hugoGeneSymbol":"TMEM183AP1","entrezGeneId":100048909},{"hugoGeneSymbol":"TMEM183B","entrezGeneId":653659},{"hugoGeneSymbol":"TMEM184A","entrezGeneId":202915},{"hugoGeneSymbol":"TMEM184B","entrezGeneId":25829},{"hugoGeneSymbol":"TMEM184C","entrezGeneId":55751},{"hugoGeneSymbol":"TMEM185A","entrezGeneId":84548},{"hugoGeneSymbol":"TMEM185AP1","entrezGeneId":100506205},{"hugoGeneSymbol":"TMEM185B","entrezGeneId":79134},{"hugoGeneSymbol":"TMEM186","entrezGeneId":25880},{"hugoGeneSymbol":"TMEM187","entrezGeneId":8269},{"hugoGeneSymbol":"TMEM189","entrezGeneId":387521},{"hugoGeneSymbol":"TMEM189-UBE2V1","entrezGeneId":387522},{"hugoGeneSymbol":"TMEM19","entrezGeneId":55266},{"hugoGeneSymbol":"TMEM190","entrezGeneId":147744},{"hugoGeneSymbol":"TMEM191A","entrezGeneId":84222},{"hugoGeneSymbol":"TMEM191B","entrezGeneId":728229},{"hugoGeneSymbol":"TMEM191C","entrezGeneId":645426},{"hugoGeneSymbol":"TMEM192","entrezGeneId":201931},{"hugoGeneSymbol":"TMEM196","entrezGeneId":256130},{"hugoGeneSymbol":"TMEM198","entrezGeneId":130612},{"hugoGeneSymbol":"TMEM198B","entrezGeneId":440104},{"hugoGeneSymbol":"TMEM199","entrezGeneId":147007},{"hugoGeneSymbol":"TMEM200A","entrezGeneId":114801},{"hugoGeneSymbol":"TMEM200B","entrezGeneId":399474},{"hugoGeneSymbol":"TMEM200C","entrezGeneId":645369},{"hugoGeneSymbol":"TMEM201","entrezGeneId":199953},{"hugoGeneSymbol":"TMEM202","entrezGeneId":338949},{"hugoGeneSymbol":"TMEM202-AS1","entrezGeneId":105370888},{"hugoGeneSymbol":"TMEM203","entrezGeneId":94107},{"hugoGeneSymbol":"TMEM204","entrezGeneId":79652},{"hugoGeneSymbol":"TMEM205","entrezGeneId":374882},{"hugoGeneSymbol":"TMEM206","entrezGeneId":55248},{"hugoGeneSymbol":"TMEM207","entrezGeneId":131920},{"hugoGeneSymbol":"TMEM208","entrezGeneId":29100},{"hugoGeneSymbol":"TMEM209","entrezGeneId":84928},{"hugoGeneSymbol":"TMEM210","entrezGeneId":100505993},{"hugoGeneSymbol":"TMEM211","entrezGeneId":255349},{"hugoGeneSymbol":"TMEM212","entrezGeneId":389177},{"hugoGeneSymbol":"TMEM212-AS1","entrezGeneId":100874219},{"hugoGeneSymbol":"TMEM212-IT1","entrezGeneId":100874359},{"hugoGeneSymbol":"TMEM213","entrezGeneId":155006},{"hugoGeneSymbol":"TMEM214","entrezGeneId":54867},{"hugoGeneSymbol":"TMEM215","entrezGeneId":401498},{"hugoGeneSymbol":"TMEM216","entrezGeneId":51259},{"hugoGeneSymbol":"TMEM217","entrezGeneId":221468},{"hugoGeneSymbol":"TMEM218","entrezGeneId":219854},{"hugoGeneSymbol":"TMEM219","entrezGeneId":124446},{"hugoGeneSymbol":"TMEM220","entrezGeneId":388335},{"hugoGeneSymbol":"TMEM220-AS1","entrezGeneId":101101775},{"hugoGeneSymbol":"TMEM221","entrezGeneId":100130519},{"hugoGeneSymbol":"TMEM222","entrezGeneId":84065},{"hugoGeneSymbol":"TMEM223","entrezGeneId":79064},{"hugoGeneSymbol":"TMEM225","entrezGeneId":338661},{"hugoGeneSymbol":"TMEM225B","entrezGeneId":100289187},{"hugoGeneSymbol":"TMEM229A","entrezGeneId":730130},{"hugoGeneSymbol":"TMEM229B","entrezGeneId":161145},{"hugoGeneSymbol":"TMEM230","entrezGeneId":29058},{"hugoGeneSymbol":"TMEM231","entrezGeneId":79583},{"hugoGeneSymbol":"TMEM232","entrezGeneId":642987},{"hugoGeneSymbol":"TMEM233","entrezGeneId":387890},{"hugoGeneSymbol":"TMEM234","entrezGeneId":56063},{"hugoGeneSymbol":"TMEM235","entrezGeneId":283999},{"hugoGeneSymbol":"TMEM236","entrezGeneId":653567},{"hugoGeneSymbol":"TMEM237","entrezGeneId":65062},{"hugoGeneSymbol":"TMEM238","entrezGeneId":388564},{"hugoGeneSymbol":"TMEM238L","entrezGeneId":100289255},{"hugoGeneSymbol":"TMEM239","entrezGeneId":100288797},{"hugoGeneSymbol":"TMEM240","entrezGeneId":339453},{"hugoGeneSymbol":"TMEM241","entrezGeneId":85019},{"hugoGeneSymbol":"TMEM242","entrezGeneId":729515},{"hugoGeneSymbol":"TMEM243","entrezGeneId":79161},{"hugoGeneSymbol":"TMEM244","entrezGeneId":253582},{"hugoGeneSymbol":"TMEM245","entrezGeneId":23731},{"hugoGeneSymbol":"TMEM246","entrezGeneId":84302},{"hugoGeneSymbol":"TMEM246-AS1","entrezGeneId":101928470},{"hugoGeneSymbol":"TMEM247","entrezGeneId":388946},{"hugoGeneSymbol":"TMEM248","entrezGeneId":55069},{"hugoGeneSymbol":"TMEM248P1","entrezGeneId":645841},{"hugoGeneSymbol":"TMEM249","entrezGeneId":340393},{"hugoGeneSymbol":"TMEM25","entrezGeneId":84866},{"hugoGeneSymbol":"TMEM250","entrezGeneId":90120},{"hugoGeneSymbol":"TMEM251","entrezGeneId":26175},{"hugoGeneSymbol":"TMEM251P1","entrezGeneId":100420909},{"hugoGeneSymbol":"TMEM252","entrezGeneId":169693},{"hugoGeneSymbol":"TMEM253","entrezGeneId":643382},{"hugoGeneSymbol":"TMEM254","entrezGeneId":80195},{"hugoGeneSymbol":"TMEM254-AS1","entrezGeneId":219347},{"hugoGeneSymbol":"TMEM255A","entrezGeneId":55026},{"hugoGeneSymbol":"TMEM255B","entrezGeneId":348013},{"hugoGeneSymbol":"TMEM256","entrezGeneId":254863},{"hugoGeneSymbol":"TMEM256-PLSCR3","entrezGeneId":100529211},{"hugoGeneSymbol":"TMEM256P1","entrezGeneId":645269},{"hugoGeneSymbol":"TMEM256P2","entrezGeneId":106479054},{"hugoGeneSymbol":"TMEM258","entrezGeneId":746},{"hugoGeneSymbol":"TMEM259","entrezGeneId":91304},{"hugoGeneSymbol":"TMEM26","entrezGeneId":219623},{"hugoGeneSymbol":"TMEM26-AS1","entrezGeneId":101928781},{"hugoGeneSymbol":"TMEM260","entrezGeneId":54916},{"hugoGeneSymbol":"TMEM261P1","entrezGeneId":100289059},{"hugoGeneSymbol":"TMEM262","entrezGeneId":100130348},{"hugoGeneSymbol":"TMEM263","entrezGeneId":90488},{"hugoGeneSymbol":"TMEM265","entrezGeneId":100862671},{"hugoGeneSymbol":"TMEM266","entrezGeneId":123591},{"hugoGeneSymbol":"TMEM267","entrezGeneId":64417},{"hugoGeneSymbol":"TMEM268","entrezGeneId":203197},{"hugoGeneSymbol":"TMEM269","entrezGeneId":100129924},{"hugoGeneSymbol":"TMEM270","entrezGeneId":135886},{"hugoGeneSymbol":"TMEM272","entrezGeneId":283521},{"hugoGeneSymbol":"TMEM273","entrezGeneId":170371},{"hugoGeneSymbol":"TMEM30A","entrezGeneId":55754},{"hugoGeneSymbol":"TMEM30B","entrezGeneId":161291},{"hugoGeneSymbol":"TMEM30CP","entrezGeneId":644444},{"hugoGeneSymbol":"TMEM31","entrezGeneId":203562},{"hugoGeneSymbol":"TMEM33","entrezGeneId":55161},{"hugoGeneSymbol":"TMEM35A","entrezGeneId":59353},{"hugoGeneSymbol":"TMEM35B","entrezGeneId":100506144},{"hugoGeneSymbol":"TMEM37","entrezGeneId":140738},{"hugoGeneSymbol":"TMEM38A","entrezGeneId":79041},{"hugoGeneSymbol":"TMEM38B","entrezGeneId":55151},{"hugoGeneSymbol":"TMEM39A","entrezGeneId":55254},{"hugoGeneSymbol":"TMEM39B","entrezGeneId":55116},{"hugoGeneSymbol":"TMEM40","entrezGeneId":55287},{"hugoGeneSymbol":"TMEM41A","entrezGeneId":90407},{"hugoGeneSymbol":"TMEM41B","entrezGeneId":440026},{"hugoGeneSymbol":"TMEM42","entrezGeneId":131616},{"hugoGeneSymbol":"TMEM43","entrezGeneId":79188},{"hugoGeneSymbol":"TMEM44","entrezGeneId":93109},{"hugoGeneSymbol":"TMEM44-AS1","entrezGeneId":100507297},{"hugoGeneSymbol":"TMEM45A","entrezGeneId":55076},{"hugoGeneSymbol":"TMEM45B","entrezGeneId":120224},{"hugoGeneSymbol":"TMEM47","entrezGeneId":83604},{"hugoGeneSymbol":"TMEM50A","entrezGeneId":23585},{"hugoGeneSymbol":"TMEM50B","entrezGeneId":757},{"hugoGeneSymbol":"TMEM51","entrezGeneId":55092},{"hugoGeneSymbol":"TMEM51-AS1","entrezGeneId":200197},{"hugoGeneSymbol":"TMEM52","entrezGeneId":339456},{"hugoGeneSymbol":"TMEM52B","entrezGeneId":120939},{"hugoGeneSymbol":"TMEM53","entrezGeneId":79639},{"hugoGeneSymbol":"TMEM54","entrezGeneId":113452},{"hugoGeneSymbol":"TMEM56","entrezGeneId":148534},{"hugoGeneSymbol":"TMEM56-RWDD3","entrezGeneId":100527978},{"hugoGeneSymbol":"TMEM59","entrezGeneId":9528},{"hugoGeneSymbol":"TMEM59L","entrezGeneId":25789},{"hugoGeneSymbol":"TMEM60","entrezGeneId":85025},{"hugoGeneSymbol":"TMEM61","entrezGeneId":199964},{"hugoGeneSymbol":"TMEM62","entrezGeneId":80021},{"hugoGeneSymbol":"TMEM63A","entrezGeneId":9725},{"hugoGeneSymbol":"TMEM63B","entrezGeneId":55362},{"hugoGeneSymbol":"TMEM63C","entrezGeneId":57156},{"hugoGeneSymbol":"TMEM64","entrezGeneId":169200},{"hugoGeneSymbol":"TMEM65","entrezGeneId":157378},{"hugoGeneSymbol":"TMEM67","entrezGeneId":91147},{"hugoGeneSymbol":"TMEM68","entrezGeneId":137695},{"hugoGeneSymbol":"TMEM69","entrezGeneId":51249},{"hugoGeneSymbol":"TMEM70","entrezGeneId":54968},{"hugoGeneSymbol":"TMEM71","entrezGeneId":137835},{"hugoGeneSymbol":"TMEM72","entrezGeneId":643236},{"hugoGeneSymbol":"TMEM72-AS1","entrezGeneId":220980},{"hugoGeneSymbol":"TMEM74","entrezGeneId":157753},{"hugoGeneSymbol":"TMEM74B","entrezGeneId":55321},{"hugoGeneSymbol":"TMEM75","entrezGeneId":641384},{"hugoGeneSymbol":"TMEM78","entrezGeneId":677790},{"hugoGeneSymbol":"TMEM79","entrezGeneId":84283},{"hugoGeneSymbol":"TMEM80","entrezGeneId":283232},{"hugoGeneSymbol":"TMEM81","entrezGeneId":388730},{"hugoGeneSymbol":"TMEM82","entrezGeneId":388595},{"hugoGeneSymbol":"TMEM86A","entrezGeneId":144110},{"hugoGeneSymbol":"TMEM86B","entrezGeneId":255043},{"hugoGeneSymbol":"TMEM87A","entrezGeneId":25963},{"hugoGeneSymbol":"TMEM87B","entrezGeneId":84910},{"hugoGeneSymbol":"TMEM88","entrezGeneId":92162},{"hugoGeneSymbol":"TMEM88B","entrezGeneId":643965},{"hugoGeneSymbol":"TMEM89","entrezGeneId":440955},{"hugoGeneSymbol":"TMEM8A","entrezGeneId":58986},{"hugoGeneSymbol":"TMEM8B","entrezGeneId":51754},{"hugoGeneSymbol":"TMEM9","entrezGeneId":252839},{"hugoGeneSymbol":"TMEM91","entrezGeneId":641649},{"hugoGeneSymbol":"TMEM92","entrezGeneId":162461},{"hugoGeneSymbol":"TMEM92-AS1","entrezGeneId":103752589},{"hugoGeneSymbol":"TMEM94","entrezGeneId":9772},{"hugoGeneSymbol":"TMEM95","entrezGeneId":339168},{"hugoGeneSymbol":"TMEM97","entrezGeneId":27346},{"hugoGeneSymbol":"TMEM97P1","entrezGeneId":100873880},{"hugoGeneSymbol":"TMEM97P2","entrezGeneId":724059},{"hugoGeneSymbol":"TMEM98","entrezGeneId":26022},{"hugoGeneSymbol":"TMEM99","entrezGeneId":147184},{"hugoGeneSymbol":"TMEM9B","entrezGeneId":56674},{"hugoGeneSymbol":"TMEM9B-AS1","entrezGeneId":493900},{"hugoGeneSymbol":"TMF1","entrezGeneId":7110},{"hugoGeneSymbol":"TMF1P1","entrezGeneId":106480320},{"hugoGeneSymbol":"TMIE","entrezGeneId":259236},{"hugoGeneSymbol":"TMIGD1","entrezGeneId":388364},{"hugoGeneSymbol":"TMIGD2","entrezGeneId":126259},{"hugoGeneSymbol":"TMIGD3","entrezGeneId":57413},{"hugoGeneSymbol":"TMLHE","entrezGeneId":55217},{"hugoGeneSymbol":"TMLHE-AS1","entrezGeneId":100507404},{"hugoGeneSymbol":"TMOD1","entrezGeneId":7111},{"hugoGeneSymbol":"TMOD2","entrezGeneId":29767},{"hugoGeneSymbol":"TMOD3","entrezGeneId":29766},{"hugoGeneSymbol":"TMOD4","entrezGeneId":29765},{"hugoGeneSymbol":"TMPO","entrezGeneId":7112},{"hugoGeneSymbol":"TMPO-AS1","entrezGeneId":100128191},{"hugoGeneSymbol":"TMPOP1","entrezGeneId":100129772},{"hugoGeneSymbol":"TMPOP2","entrezGeneId":100533619},{"hugoGeneSymbol":"TMPPE","entrezGeneId":643853},{"hugoGeneSymbol":"TMPRSS11A","entrezGeneId":339967},{"hugoGeneSymbol":"TMPRSS11B","entrezGeneId":132724},{"hugoGeneSymbol":"TMPRSS11BNL","entrezGeneId":401136},{"hugoGeneSymbol":"TMPRSS11CP","entrezGeneId":100381178},{"hugoGeneSymbol":"TMPRSS11D","entrezGeneId":9407},{"hugoGeneSymbol":"TMPRSS11E","entrezGeneId":28983},{"hugoGeneSymbol":"TMPRSS11F","entrezGeneId":389208},{"hugoGeneSymbol":"TMPRSS11GP","entrezGeneId":644759},{"hugoGeneSymbol":"TMPRSS12","entrezGeneId":283471},{"hugoGeneSymbol":"TMPRSS13","entrezGeneId":84000},{"hugoGeneSymbol":"TMPRSS15","entrezGeneId":5651},{"hugoGeneSymbol":"TMPRSS2","entrezGeneId":7113},{"hugoGeneSymbol":"TMPRSS3","entrezGeneId":64699},{"hugoGeneSymbol":"TMPRSS4","entrezGeneId":56649},{"hugoGeneSymbol":"TMPRSS5","entrezGeneId":80975},{"hugoGeneSymbol":"TMPRSS6","entrezGeneId":164656},{"hugoGeneSymbol":"TMPRSS7","entrezGeneId":344805},{"hugoGeneSymbol":"TMPRSS9","entrezGeneId":360200},{"hugoGeneSymbol":"TMSB10","entrezGeneId":9168},{"hugoGeneSymbol":"TMSB10P1","entrezGeneId":100506723},{"hugoGeneSymbol":"TMSB10P2","entrezGeneId":100873786},{"hugoGeneSymbol":"TMSB15A","entrezGeneId":11013},{"hugoGeneSymbol":"TMSB15B","entrezGeneId":286527},{"hugoGeneSymbol":"TMSB4X","entrezGeneId":7114},{"hugoGeneSymbol":"TMSB4XP1","entrezGeneId":7115},{"hugoGeneSymbol":"TMSB4XP2","entrezGeneId":7116},{"hugoGeneSymbol":"TMSB4XP3","entrezGeneId":100873877},{"hugoGeneSymbol":"TMSB4XP4","entrezGeneId":7118},{"hugoGeneSymbol":"TMSB4XP5","entrezGeneId":7119},{"hugoGeneSymbol":"TMSB4XP6","entrezGeneId":7120},{"hugoGeneSymbol":"TMSB4XP7","entrezGeneId":7121},{"hugoGeneSymbol":"TMSB4XP8","entrezGeneId":7117},{"hugoGeneSymbol":"TMSB4Y","entrezGeneId":9087},{"hugoGeneSymbol":"TMTC1","entrezGeneId":83857},{"hugoGeneSymbol":"TMTC2","entrezGeneId":160335},{"hugoGeneSymbol":"TMTC3","entrezGeneId":160418},{"hugoGeneSymbol":"TMTC4","entrezGeneId":84899},{"hugoGeneSymbol":"TMUB1","entrezGeneId":83590},{"hugoGeneSymbol":"TMUB2","entrezGeneId":79089},{"hugoGeneSymbol":"TMX1","entrezGeneId":81542},{"hugoGeneSymbol":"TMX2","entrezGeneId":51075},{"hugoGeneSymbol":"TMX2-CTNND1","entrezGeneId":100528016},{"hugoGeneSymbol":"TMX2P1","entrezGeneId":100233198},{"hugoGeneSymbol":"TMX3","entrezGeneId":54495},{"hugoGeneSymbol":"TMX4","entrezGeneId":56255},{"hugoGeneSymbol":"TNC","entrezGeneId":3371},{"hugoGeneSymbol":"TNDM","entrezGeneId":7952},{"hugoGeneSymbol":"TNF","entrezGeneId":7124},{"hugoGeneSymbol":"TNFAIP1","entrezGeneId":7126},{"hugoGeneSymbol":"TNFAIP2","entrezGeneId":7127},{"hugoGeneSymbol":"TNFAIP3","entrezGeneId":7128},{"hugoGeneSymbol":"TNFAIP6","entrezGeneId":7130},{"hugoGeneSymbol":"TNFAIP8","entrezGeneId":25816},{"hugoGeneSymbol":"TNFAIP8L1","entrezGeneId":126282},{"hugoGeneSymbol":"TNFAIP8L2","entrezGeneId":79626},{"hugoGeneSymbol":"TNFAIP8L2-SCNM1","entrezGeneId":100534012},{"hugoGeneSymbol":"TNFAIP8L3","entrezGeneId":388121},{"hugoGeneSymbol":"TNFRSF10A","entrezGeneId":8797},{"hugoGeneSymbol":"TNFRSF10A-AS1","entrezGeneId":110806274},{"hugoGeneSymbol":"TNFRSF10B","entrezGeneId":8795},{"hugoGeneSymbol":"TNFRSF10C","entrezGeneId":8794},{"hugoGeneSymbol":"TNFRSF10D","entrezGeneId":8793},{"hugoGeneSymbol":"TNFRSF11A","entrezGeneId":8792},{"hugoGeneSymbol":"TNFRSF11B","entrezGeneId":4982},{"hugoGeneSymbol":"TNFRSF12A","entrezGeneId":51330},{"hugoGeneSymbol":"TNFRSF13B","entrezGeneId":23495},{"hugoGeneSymbol":"TNFRSF13C","entrezGeneId":115650},{"hugoGeneSymbol":"TNFRSF14","entrezGeneId":8764},{"hugoGeneSymbol":"TNFRSF14-AS1","entrezGeneId":115110},{"hugoGeneSymbol":"TNFRSF17","entrezGeneId":608},{"hugoGeneSymbol":"TNFRSF18","entrezGeneId":8784},{"hugoGeneSymbol":"TNFRSF19","entrezGeneId":55504},{"hugoGeneSymbol":"TNFRSF1A","entrezGeneId":7132},{"hugoGeneSymbol":"TNFRSF1B","entrezGeneId":7133},{"hugoGeneSymbol":"TNFRSF21","entrezGeneId":27242},{"hugoGeneSymbol":"TNFRSF25","entrezGeneId":8718},{"hugoGeneSymbol":"TNFRSF4","entrezGeneId":7293},{"hugoGeneSymbol":"TNFRSF6B","entrezGeneId":8771},{"hugoGeneSymbol":"TNFRSF8","entrezGeneId":943},{"hugoGeneSymbol":"TNFRSF9","entrezGeneId":3604},{"hugoGeneSymbol":"TNFSF10","entrezGeneId":8743},{"hugoGeneSymbol":"TNFSF11","entrezGeneId":8600},{"hugoGeneSymbol":"TNFSF12","entrezGeneId":8742},{"hugoGeneSymbol":"TNFSF12-TNFSF13","entrezGeneId":407977},{"hugoGeneSymbol":"TNFSF13","entrezGeneId":8741},{"hugoGeneSymbol":"TNFSF13B","entrezGeneId":10673},{"hugoGeneSymbol":"TNFSF14","entrezGeneId":8740},{"hugoGeneSymbol":"TNFSF15","entrezGeneId":9966},{"hugoGeneSymbol":"TNFSF18","entrezGeneId":8995},{"hugoGeneSymbol":"TNFSF4","entrezGeneId":7292},{"hugoGeneSymbol":"TNFSF8","entrezGeneId":944},{"hugoGeneSymbol":"TNFSF9","entrezGeneId":8744},{"hugoGeneSymbol":"TNIK","entrezGeneId":23043},{"hugoGeneSymbol":"TNIP1","entrezGeneId":10318},{"hugoGeneSymbol":"TNIP2","entrezGeneId":79155},{"hugoGeneSymbol":"TNIP3","entrezGeneId":79931},{"hugoGeneSymbol":"TNK1","entrezGeneId":8711},{"hugoGeneSymbol":"TNK2","entrezGeneId":10188},{"hugoGeneSymbol":"TNK2-AS1","entrezGeneId":100128262},{"hugoGeneSymbol":"TNKS","entrezGeneId":8658},{"hugoGeneSymbol":"TNKS1BP1","entrezGeneId":85456},{"hugoGeneSymbol":"TNKS2","entrezGeneId":80351},{"hugoGeneSymbol":"TNKS2-AS1","entrezGeneId":100507633},{"hugoGeneSymbol":"TNMD","entrezGeneId":64102},{"hugoGeneSymbol":"TNN","entrezGeneId":63923},{"hugoGeneSymbol":"TNNC1","entrezGeneId":7134},{"hugoGeneSymbol":"TNNC2","entrezGeneId":7125},{"hugoGeneSymbol":"TNNI1","entrezGeneId":7135},{"hugoGeneSymbol":"TNNI2","entrezGeneId":7136},{"hugoGeneSymbol":"TNNI3","entrezGeneId":7137},{"hugoGeneSymbol":"TNNI3K","entrezGeneId":51086},{"hugoGeneSymbol":"TNNT1","entrezGeneId":7138},{"hugoGeneSymbol":"TNNT2","entrezGeneId":7139},{"hugoGeneSymbol":"TNNT3","entrezGeneId":7140},{"hugoGeneSymbol":"TNP1","entrezGeneId":7141},{"hugoGeneSymbol":"TNP2","entrezGeneId":7142},{"hugoGeneSymbol":"TNPO1","entrezGeneId":3842},{"hugoGeneSymbol":"TNPO1P1","entrezGeneId":100418919},{"hugoGeneSymbol":"TNPO1P2","entrezGeneId":252968},{"hugoGeneSymbol":"TNPO1P3","entrezGeneId":339257},{"hugoGeneSymbol":"TNPO2","entrezGeneId":30000},{"hugoGeneSymbol":"TNPO3","entrezGeneId":23534},{"hugoGeneSymbol":"TNR","entrezGeneId":7143},{"hugoGeneSymbol":"TNR-IT1","entrezGeneId":100874256},{"hugoGeneSymbol":"TNRC17","entrezGeneId":27321},{"hugoGeneSymbol":"TNRC18","entrezGeneId":84629},{"hugoGeneSymbol":"TNRC18P1","entrezGeneId":644962},{"hugoGeneSymbol":"TNRC18P2","entrezGeneId":27320},{"hugoGeneSymbol":"TNRC18P3","entrezGeneId":340221},{"hugoGeneSymbol":"TNRC6A","entrezGeneId":27327},{"hugoGeneSymbol":"TNRC6B","entrezGeneId":23112},{"hugoGeneSymbol":"TNRC6C","entrezGeneId":57690},{"hugoGeneSymbol":"TNRC6C-AS1","entrezGeneId":100131096},{"hugoGeneSymbol":"TNS1","entrezGeneId":7145},{"hugoGeneSymbol":"TNS2","entrezGeneId":23371},{"hugoGeneSymbol":"TNS3","entrezGeneId":64759},{"hugoGeneSymbol":"TNS4","entrezGeneId":84951},{"hugoGeneSymbol":"TNXA","entrezGeneId":7146},{"hugoGeneSymbol":"TNXB","entrezGeneId":7148},{"hugoGeneSymbol":"TOB1","entrezGeneId":10140},{"hugoGeneSymbol":"TOB1-AS1","entrezGeneId":400604},{"hugoGeneSymbol":"TOB2","entrezGeneId":10766},{"hugoGeneSymbol":"TOB2P1","entrezGeneId":222699},{"hugoGeneSymbol":"TOE1","entrezGeneId":114034},{"hugoGeneSymbol":"TOGARAM1","entrezGeneId":23116},{"hugoGeneSymbol":"TOGARAM2","entrezGeneId":165186},{"hugoGeneSymbol":"TOLLIP","entrezGeneId":54472},{"hugoGeneSymbol":"TOLLIP-AS1","entrezGeneId":255512},{"hugoGeneSymbol":"TOM1","entrezGeneId":10043},{"hugoGeneSymbol":"TOM1L1","entrezGeneId":10040},{"hugoGeneSymbol":"TOM1L2","entrezGeneId":146691},{"hugoGeneSymbol":"TOMM20","entrezGeneId":9804},{"hugoGeneSymbol":"TOMM20L","entrezGeneId":387990},{"hugoGeneSymbol":"TOMM20P1","entrezGeneId":105369446},{"hugoGeneSymbol":"TOMM20P2","entrezGeneId":101927540},{"hugoGeneSymbol":"TOMM20P3","entrezGeneId":106480301},{"hugoGeneSymbol":"TOMM20P4","entrezGeneId":100129272},{"hugoGeneSymbol":"TOMM22","entrezGeneId":56993},{"hugoGeneSymbol":"TOMM22P1","entrezGeneId":100499416},{"hugoGeneSymbol":"TOMM22P2","entrezGeneId":100499417},{"hugoGeneSymbol":"TOMM22P3","entrezGeneId":122038},{"hugoGeneSymbol":"TOMM22P4","entrezGeneId":100874517},{"hugoGeneSymbol":"TOMM22P5","entrezGeneId":390007},{"hugoGeneSymbol":"TOMM22P6","entrezGeneId":100287573},{"hugoGeneSymbol":"TOMM34","entrezGeneId":10953},{"hugoGeneSymbol":"TOMM40","entrezGeneId":10452},{"hugoGeneSymbol":"TOMM40L","entrezGeneId":84134},{"hugoGeneSymbol":"TOMM5","entrezGeneId":401505},{"hugoGeneSymbol":"TOMM6","entrezGeneId":100188893},{"hugoGeneSymbol":"TOMM7","entrezGeneId":54543},{"hugoGeneSymbol":"TOMM70","entrezGeneId":9868},{"hugoGeneSymbol":"TONSL","entrezGeneId":4796},{"hugoGeneSymbol":"TONSL-AS1","entrezGeneId":100287098},{"hugoGeneSymbol":"TOP1","entrezGeneId":7150},{"hugoGeneSymbol":"TOP1MT","entrezGeneId":116447},{"hugoGeneSymbol":"TOP1P1","entrezGeneId":7151},{"hugoGeneSymbol":"TOP1P2","entrezGeneId":7152},{"hugoGeneSymbol":"TOP2A","entrezGeneId":7153},{"hugoGeneSymbol":"TOP2B","entrezGeneId":7155},{"hugoGeneSymbol":"TOP3A","entrezGeneId":7156},{"hugoGeneSymbol":"TOP3B","entrezGeneId":8940},{"hugoGeneSymbol":"TOP3BP1","entrezGeneId":23751},{"hugoGeneSymbol":"TOPAZ1","entrezGeneId":375337},{"hugoGeneSymbol":"TOPBP1","entrezGeneId":11073},{"hugoGeneSymbol":"TOPORS","entrezGeneId":10210},{"hugoGeneSymbol":"TOPORSLP","entrezGeneId":347281},{"hugoGeneSymbol":"TOR1A","entrezGeneId":1861},{"hugoGeneSymbol":"TOR1AIP1","entrezGeneId":26092},{"hugoGeneSymbol":"TOR1AIP2","entrezGeneId":163590},{"hugoGeneSymbol":"TOR1B","entrezGeneId":27348},{"hugoGeneSymbol":"TOR2A","entrezGeneId":27433},{"hugoGeneSymbol":"TOR3A","entrezGeneId":64222},{"hugoGeneSymbol":"TOR4A","entrezGeneId":54863},{"hugoGeneSymbol":"TOX","entrezGeneId":9760},{"hugoGeneSymbol":"TOX2","entrezGeneId":84969},{"hugoGeneSymbol":"TOX3","entrezGeneId":27324},{"hugoGeneSymbol":"TOX4","entrezGeneId":9878},{"hugoGeneSymbol":"TOX4P1","entrezGeneId":285412},{"hugoGeneSymbol":"TP53","entrezGeneId":7157},{"hugoGeneSymbol":"TP53AIP1","entrezGeneId":63970},{"hugoGeneSymbol":"TP53BP1","entrezGeneId":7158},{"hugoGeneSymbol":"TP53BP2","entrezGeneId":7159},{"hugoGeneSymbol":"TP53BP2P1","entrezGeneId":94299},{"hugoGeneSymbol":"TP53COR1","entrezGeneId":102800311},{"hugoGeneSymbol":"TP53I11","entrezGeneId":9537},{"hugoGeneSymbol":"TP53I13","entrezGeneId":90313},{"hugoGeneSymbol":"TP53I3","entrezGeneId":9540},{"hugoGeneSymbol":"TP53INP1","entrezGeneId":94241},{"hugoGeneSymbol":"TP53INP2","entrezGeneId":58476},{"hugoGeneSymbol":"TP53RK","entrezGeneId":112858},{"hugoGeneSymbol":"TP53TG1","entrezGeneId":11257},{"hugoGeneSymbol":"TP53TG3","entrezGeneId":24150},{"hugoGeneSymbol":"TP53TG3B","entrezGeneId":729355},{"hugoGeneSymbol":"TP53TG3C","entrezGeneId":653550},{"hugoGeneSymbol":"TP53TG3D","entrezGeneId":729264},{"hugoGeneSymbol":"TP53TG3E","entrezGeneId":102724101},{"hugoGeneSymbol":"TP53TG3F","entrezGeneId":102724127},{"hugoGeneSymbol":"TP53TG3GP","entrezGeneId":106660619},{"hugoGeneSymbol":"TP53TG3HP","entrezGeneId":100130700},{"hugoGeneSymbol":"TP53TG5","entrezGeneId":27296},{"hugoGeneSymbol":"TP63","entrezGeneId":8626},{"hugoGeneSymbol":"TP73","entrezGeneId":7161},{"hugoGeneSymbol":"TP73-AS1","entrezGeneId":57212},{"hugoGeneSymbol":"TPBG","entrezGeneId":7162},{"hugoGeneSymbol":"TPBGL","entrezGeneId":100507050},{"hugoGeneSymbol":"TPCN1","entrezGeneId":53373},{"hugoGeneSymbol":"TPCN2","entrezGeneId":219931},{"hugoGeneSymbol":"TPD52","entrezGeneId":7163},{"hugoGeneSymbol":"TPD52L1","entrezGeneId":7164},{"hugoGeneSymbol":"TPD52L2","entrezGeneId":7165},{"hugoGeneSymbol":"TPD52L3","entrezGeneId":89882},{"hugoGeneSymbol":"TPGS1","entrezGeneId":91978},{"hugoGeneSymbol":"TPGS2","entrezGeneId":25941},{"hugoGeneSymbol":"TPH1","entrezGeneId":7166},{"hugoGeneSymbol":"TPH2","entrezGeneId":121278},{"hugoGeneSymbol":"TPI1","entrezGeneId":7167},{"hugoGeneSymbol":"TPI1P1","entrezGeneId":729708},{"hugoGeneSymbol":"TPI1P2","entrezGeneId":286016},{"hugoGeneSymbol":"TPI1P3","entrezGeneId":728402},{"hugoGeneSymbol":"TPI1P4","entrezGeneId":728629},{"hugoGeneSymbol":"TPK1","entrezGeneId":27010},{"hugoGeneSymbol":"TPM1","entrezGeneId":7168},{"hugoGeneSymbol":"TPM1-AS","entrezGeneId":111064646},{"hugoGeneSymbol":"TPM2","entrezGeneId":7169},{"hugoGeneSymbol":"TPM3","entrezGeneId":7170},{"hugoGeneSymbol":"TPM3P1","entrezGeneId":252956},{"hugoGeneSymbol":"TPM3P2","entrezGeneId":170555},{"hugoGeneSymbol":"TPM3P3","entrezGeneId":106478937},{"hugoGeneSymbol":"TPM3P4","entrezGeneId":402643},{"hugoGeneSymbol":"TPM3P5","entrezGeneId":644330},{"hugoGeneSymbol":"TPM3P6","entrezGeneId":653758},{"hugoGeneSymbol":"TPM3P7","entrezGeneId":751599},{"hugoGeneSymbol":"TPM3P8","entrezGeneId":646839},{"hugoGeneSymbol":"TPM3P9","entrezGeneId":147804},{"hugoGeneSymbol":"TPM4","entrezGeneId":7171},{"hugoGeneSymbol":"TPM4P1","entrezGeneId":644566},{"hugoGeneSymbol":"TPMT","entrezGeneId":7172},{"hugoGeneSymbol":"TPMTP1","entrezGeneId":400650},{"hugoGeneSymbol":"TPMTP2","entrezGeneId":100420393},{"hugoGeneSymbol":"TPMTP3","entrezGeneId":100129277},{"hugoGeneSymbol":"TPMTP4","entrezGeneId":100129298},{"hugoGeneSymbol":"TPO","entrezGeneId":7173},{"hugoGeneSymbol":"TPP1","entrezGeneId":1200},{"hugoGeneSymbol":"TPP2","entrezGeneId":7174},{"hugoGeneSymbol":"TPPP","entrezGeneId":11076},{"hugoGeneSymbol":"TPPP2","entrezGeneId":122664},{"hugoGeneSymbol":"TPPP3","entrezGeneId":51673},{"hugoGeneSymbol":"TPR","entrezGeneId":7175},{"hugoGeneSymbol":"TPRA1","entrezGeneId":131601},{"hugoGeneSymbol":"TPRG1","entrezGeneId":285386},{"hugoGeneSymbol":"TPRG1-AS1","entrezGeneId":100874043},{"hugoGeneSymbol":"TPRG1-AS2","entrezGeneId":100874027},{"hugoGeneSymbol":"TPRG1L","entrezGeneId":127262},{"hugoGeneSymbol":"TPRG1LP1","entrezGeneId":100130490},{"hugoGeneSymbol":"TPRKB","entrezGeneId":51002},{"hugoGeneSymbol":"TPRKBP1","entrezGeneId":101060176},{"hugoGeneSymbol":"TPRKBP2","entrezGeneId":106480804},{"hugoGeneSymbol":"TPRN","entrezGeneId":286262},{"hugoGeneSymbol":"TPRX1","entrezGeneId":284355},{"hugoGeneSymbol":"TPRX1P1","entrezGeneId":503628},{"hugoGeneSymbol":"TPRX2P","entrezGeneId":503627},{"hugoGeneSymbol":"TPRXL","entrezGeneId":348825},{"hugoGeneSymbol":"TPSAB1","entrezGeneId":7177},{"hugoGeneSymbol":"TPSB2","entrezGeneId":64499},{"hugoGeneSymbol":"TPSD1","entrezGeneId":23430},{"hugoGeneSymbol":"TPSG1","entrezGeneId":25823},{"hugoGeneSymbol":"TPSP1","entrezGeneId":100129339},{"hugoGeneSymbol":"TPSP2","entrezGeneId":650474},{"hugoGeneSymbol":"TPST1","entrezGeneId":8460},{"hugoGeneSymbol":"TPST2","entrezGeneId":8459},{"hugoGeneSymbol":"TPST2P1","entrezGeneId":100420710},{"hugoGeneSymbol":"TPT1","entrezGeneId":7178},{"hugoGeneSymbol":"TPT1-AS1","entrezGeneId":100190939},{"hugoGeneSymbol":"TPT1P1","entrezGeneId":100131268},{"hugoGeneSymbol":"TPT1P10","entrezGeneId":101928715},{"hugoGeneSymbol":"TPT1P11","entrezGeneId":102724868},{"hugoGeneSymbol":"TPT1P12","entrezGeneId":100421480},{"hugoGeneSymbol":"TPT1P13","entrezGeneId":643421},{"hugoGeneSymbol":"TPT1P14","entrezGeneId":100128521},{"hugoGeneSymbol":"TPT1P2","entrezGeneId":100128483},{"hugoGeneSymbol":"TPT1P3","entrezGeneId":100421439},{"hugoGeneSymbol":"TPT1P4","entrezGeneId":285741},{"hugoGeneSymbol":"TPT1P5","entrezGeneId":100421420},{"hugoGeneSymbol":"TPT1P6","entrezGeneId":643870},{"hugoGeneSymbol":"TPT1P7","entrezGeneId":102723852},{"hugoGeneSymbol":"TPT1P8","entrezGeneId":59347},{"hugoGeneSymbol":"TPT1P9","entrezGeneId":389787},{"hugoGeneSymbol":"TPTE","entrezGeneId":7179},{"hugoGeneSymbol":"TPTE2","entrezGeneId":93492},{"hugoGeneSymbol":"TPTE2P1","entrezGeneId":646405},{"hugoGeneSymbol":"TPTE2P2","entrezGeneId":644623},{"hugoGeneSymbol":"TPTE2P3","entrezGeneId":220115},{"hugoGeneSymbol":"TPTE2P4","entrezGeneId":286573},{"hugoGeneSymbol":"TPTE2P5","entrezGeneId":100616668},{"hugoGeneSymbol":"TPTE2P6","entrezGeneId":374491},{"hugoGeneSymbol":"TPTEP1","entrezGeneId":387590},{"hugoGeneSymbol":"TPTEP2","entrezGeneId":400927},{"hugoGeneSymbol":"TPTEP2-CSNK1E","entrezGeneId":102800317},{"hugoGeneSymbol":"TPX2","entrezGeneId":22974},{"hugoGeneSymbol":"TRA","entrezGeneId":6955},{"hugoGeneSymbol":"TRA-AGC1-1","entrezGeneId":100189346},{"hugoGeneSymbol":"TRA-AGC10-1","entrezGeneId":100189128},{"hugoGeneSymbol":"TRA-AGC11-1","entrezGeneId":100009603},{"hugoGeneSymbol":"TRA-AGC12-1","entrezGeneId":100189369},{"hugoGeneSymbol":"TRA-AGC12-2","entrezGeneId":100189327},{"hugoGeneSymbol":"TRA-AGC12-3","entrezGeneId":100189106},{"hugoGeneSymbol":"TRA-AGC13-1","entrezGeneId":100189411},{"hugoGeneSymbol":"TRA-AGC13-2","entrezGeneId":100189060},{"hugoGeneSymbol":"TRA-AGC14-1","entrezGeneId":100189358},{"hugoGeneSymbol":"TRA-AGC15-1","entrezGeneId":100189117},{"hugoGeneSymbol":"TRA-AGC16-1","entrezGeneId":100189312},{"hugoGeneSymbol":"TRA-AGC17-1","entrezGeneId":100189353},{"hugoGeneSymbol":"TRA-AGC18-1","entrezGeneId":100189341},{"hugoGeneSymbol":"TRA-AGC18-2","entrezGeneId":100189212},{"hugoGeneSymbol":"TRA-AGC19-1","entrezGeneId":100189246},{"hugoGeneSymbol":"TRA-AGC2-1","entrezGeneId":100189093},{"hugoGeneSymbol":"TRA-AGC2-2","entrezGeneId":100189295},{"hugoGeneSymbol":"TRA-AGC20-1","entrezGeneId":100189116},{"hugoGeneSymbol":"TRA-AGC21-1","entrezGeneId":100189192},{"hugoGeneSymbol":"TRA-AGC22-1","entrezGeneId":100189434},{"hugoGeneSymbol":"TRA-AGC23-1","entrezGeneId":100189468},{"hugoGeneSymbol":"TRA-AGC3-1","entrezGeneId":100189299},{"hugoGeneSymbol":"TRA-AGC4-1","entrezGeneId":100189046},{"hugoGeneSymbol":"TRA-AGC5-1","entrezGeneId":100189047},{"hugoGeneSymbol":"TRA-AGC6-1","entrezGeneId":100189042},{"hugoGeneSymbol":"TRA-AGC7-1","entrezGeneId":100189092},{"hugoGeneSymbol":"TRA-AGC8-1","entrezGeneId":100009604},{"hugoGeneSymbol":"TRA-AGC8-2","entrezGeneId":100189398},{"hugoGeneSymbol":"TRA-AGC9-1","entrezGeneId":100189156},{"hugoGeneSymbol":"TRA-AGC9-2","entrezGeneId":100189423},{"hugoGeneSymbol":"TRA-CGC1-1","entrezGeneId":100189308},{"hugoGeneSymbol":"TRA-CGC2-1","entrezGeneId":100189400},{"hugoGeneSymbol":"TRA-CGC3-1","entrezGeneId":100189021},{"hugoGeneSymbol":"TRA-CGC4-1","entrezGeneId":100189033},{"hugoGeneSymbol":"TRA-CGC5-1","entrezGeneId":100189395},{"hugoGeneSymbol":"TRA-TGC1-1","entrezGeneId":100189149},{"hugoGeneSymbol":"TRA-TGC10-1","entrezGeneId":100189469},{"hugoGeneSymbol":"TRA-TGC2-1","entrezGeneId":100189114},{"hugoGeneSymbol":"TRA-TGC3-1","entrezGeneId":100189280},{"hugoGeneSymbol":"TRA-TGC3-2","entrezGeneId":100189232},{"hugoGeneSymbol":"TRA-TGC4-1","entrezGeneId":100189339},{"hugoGeneSymbol":"TRA-TGC5-1","entrezGeneId":100189066},{"hugoGeneSymbol":"TRA-TGC6-1","entrezGeneId":100189082},{"hugoGeneSymbol":"TRA-TGC7-1","entrezGeneId":7154},{"hugoGeneSymbol":"TRA-TGC8-1","entrezGeneId":100189256},{"hugoGeneSymbol":"TRA-TGC9-1","entrezGeneId":100189529},{"hugoGeneSymbol":"TRA2A","entrezGeneId":29896},{"hugoGeneSymbol":"TRA2B","entrezGeneId":6434},{"hugoGeneSymbol":"TRABD","entrezGeneId":80305},{"hugoGeneSymbol":"TRABD2A","entrezGeneId":129293},{"hugoGeneSymbol":"TRABD2B","entrezGeneId":388630},{"hugoGeneSymbol":"TRAC","entrezGeneId":28755},{"hugoGeneSymbol":"TRADD","entrezGeneId":8717},{"hugoGeneSymbol":"TRAF1","entrezGeneId":7185},{"hugoGeneSymbol":"TRAF2","entrezGeneId":7186},{"hugoGeneSymbol":"TRAF3","entrezGeneId":7187},{"hugoGeneSymbol":"TRAF3IP1","entrezGeneId":26146},{"hugoGeneSymbol":"TRAF3IP2","entrezGeneId":10758},{"hugoGeneSymbol":"TRAF3IP2-AS1","entrezGeneId":643749},{"hugoGeneSymbol":"TRAF3IP3","entrezGeneId":80342},{"hugoGeneSymbol":"TRAF4","entrezGeneId":9618},{"hugoGeneSymbol":"TRAF5","entrezGeneId":7188},{"hugoGeneSymbol":"TRAF6","entrezGeneId":7189},{"hugoGeneSymbol":"TRAF6P1","entrezGeneId":644871},{"hugoGeneSymbol":"TRAF7","entrezGeneId":84231},{"hugoGeneSymbol":"TRAFD1","entrezGeneId":10906},{"hugoGeneSymbol":"TRAIP","entrezGeneId":10293},{"hugoGeneSymbol":"TRAJ1","entrezGeneId":28754},{"hugoGeneSymbol":"TRAJ10","entrezGeneId":28745},{"hugoGeneSymbol":"TRAJ11","entrezGeneId":28744},{"hugoGeneSymbol":"TRAJ12","entrezGeneId":28743},{"hugoGeneSymbol":"TRAJ13","entrezGeneId":28742},{"hugoGeneSymbol":"TRAJ14","entrezGeneId":28741},{"hugoGeneSymbol":"TRAJ15","entrezGeneId":28740},{"hugoGeneSymbol":"TRAJ16","entrezGeneId":28739},{"hugoGeneSymbol":"TRAJ17","entrezGeneId":28738},{"hugoGeneSymbol":"TRAJ18","entrezGeneId":28737},{"hugoGeneSymbol":"TRAJ19","entrezGeneId":28736},{"hugoGeneSymbol":"TRAJ2","entrezGeneId":28753},{"hugoGeneSymbol":"TRAJ20","entrezGeneId":28735},{"hugoGeneSymbol":"TRAJ21","entrezGeneId":28734},{"hugoGeneSymbol":"TRAJ22","entrezGeneId":28733},{"hugoGeneSymbol":"TRAJ23","entrezGeneId":28732},{"hugoGeneSymbol":"TRAJ24","entrezGeneId":28731},{"hugoGeneSymbol":"TRAJ25","entrezGeneId":28730},{"hugoGeneSymbol":"TRAJ26","entrezGeneId":28729},{"hugoGeneSymbol":"TRAJ27","entrezGeneId":28728},{"hugoGeneSymbol":"TRAJ28","entrezGeneId":28727},{"hugoGeneSymbol":"TRAJ29","entrezGeneId":28726},{"hugoGeneSymbol":"TRAJ3","entrezGeneId":28752},{"hugoGeneSymbol":"TRAJ30","entrezGeneId":28725},{"hugoGeneSymbol":"TRAJ31","entrezGeneId":28724},{"hugoGeneSymbol":"TRAJ32","entrezGeneId":28723},{"hugoGeneSymbol":"TRAJ33","entrezGeneId":28722},{"hugoGeneSymbol":"TRAJ34","entrezGeneId":28721},{"hugoGeneSymbol":"TRAJ35","entrezGeneId":28720},{"hugoGeneSymbol":"TRAJ36","entrezGeneId":28719},{"hugoGeneSymbol":"TRAJ37","entrezGeneId":28718},{"hugoGeneSymbol":"TRAJ38","entrezGeneId":28717},{"hugoGeneSymbol":"TRAJ39","entrezGeneId":28716},{"hugoGeneSymbol":"TRAJ4","entrezGeneId":28751},{"hugoGeneSymbol":"TRAJ40","entrezGeneId":28715},{"hugoGeneSymbol":"TRAJ41","entrezGeneId":28714},{"hugoGeneSymbol":"TRAJ42","entrezGeneId":28713},{"hugoGeneSymbol":"TRAJ43","entrezGeneId":28712},{"hugoGeneSymbol":"TRAJ44","entrezGeneId":28711},{"hugoGeneSymbol":"TRAJ45","entrezGeneId":28710},{"hugoGeneSymbol":"TRAJ46","entrezGeneId":28709},{"hugoGeneSymbol":"TRAJ47","entrezGeneId":28708},{"hugoGeneSymbol":"TRAJ48","entrezGeneId":28707},{"hugoGeneSymbol":"TRAJ49","entrezGeneId":28706},{"hugoGeneSymbol":"TRAJ5","entrezGeneId":28750},{"hugoGeneSymbol":"TRAJ50","entrezGeneId":28705},{"hugoGeneSymbol":"TRAJ51","entrezGeneId":28704},{"hugoGeneSymbol":"TRAJ52","entrezGeneId":28703},{"hugoGeneSymbol":"TRAJ53","entrezGeneId":28702},{"hugoGeneSymbol":"TRAJ54","entrezGeneId":28701},{"hugoGeneSymbol":"TRAJ55","entrezGeneId":28700},{"hugoGeneSymbol":"TRAJ56","entrezGeneId":28699},{"hugoGeneSymbol":"TRAJ57","entrezGeneId":28698},{"hugoGeneSymbol":"TRAJ58","entrezGeneId":28697},{"hugoGeneSymbol":"TRAJ59","entrezGeneId":28696},{"hugoGeneSymbol":"TRAJ6","entrezGeneId":28749},{"hugoGeneSymbol":"TRAJ60","entrezGeneId":28695},{"hugoGeneSymbol":"TRAJ61","entrezGeneId":28694},{"hugoGeneSymbol":"TRAJ7","entrezGeneId":28748},{"hugoGeneSymbol":"TRAJ8","entrezGeneId":28747},{"hugoGeneSymbol":"TRAJ9","entrezGeneId":28746},{"hugoGeneSymbol":"TRAK1","entrezGeneId":22906},{"hugoGeneSymbol":"TRAK2","entrezGeneId":66008},{"hugoGeneSymbol":"TRAM1","entrezGeneId":23471},{"hugoGeneSymbol":"TRAM1L1","entrezGeneId":133022},{"hugoGeneSymbol":"TRAM2","entrezGeneId":9697},{"hugoGeneSymbol":"TRAM2-AS1","entrezGeneId":401264},{"hugoGeneSymbol":"TRANK1","entrezGeneId":9881},{"hugoGeneSymbol":"TRAP","entrezGeneId":100187907},{"hugoGeneSymbol":"TRAP1","entrezGeneId":10131},{"hugoGeneSymbol":"TRAPPC1","entrezGeneId":58485},{"hugoGeneSymbol":"TRAPPC10","entrezGeneId":7109},{"hugoGeneSymbol":"TRAPPC11","entrezGeneId":60684},{"hugoGeneSymbol":"TRAPPC12","entrezGeneId":51112},{"hugoGeneSymbol":"TRAPPC12-AS1","entrezGeneId":100861515},{"hugoGeneSymbol":"TRAPPC13","entrezGeneId":80006},{"hugoGeneSymbol":"TRAPPC13P1","entrezGeneId":646193},{"hugoGeneSymbol":"TRAPPC2","entrezGeneId":6399},{"hugoGeneSymbol":"TRAPPC2B","entrezGeneId":10597},{"hugoGeneSymbol":"TRAPPC2L","entrezGeneId":51693},{"hugoGeneSymbol":"TRAPPC2P10","entrezGeneId":414752},{"hugoGeneSymbol":"TRAPPC2P2","entrezGeneId":27196},{"hugoGeneSymbol":"TRAPPC2P3","entrezGeneId":27195},{"hugoGeneSymbol":"TRAPPC2P4","entrezGeneId":27194},{"hugoGeneSymbol":"TRAPPC2P5","entrezGeneId":27193},{"hugoGeneSymbol":"TRAPPC2P6","entrezGeneId":27192},{"hugoGeneSymbol":"TRAPPC2P7","entrezGeneId":392597},{"hugoGeneSymbol":"TRAPPC2P8","entrezGeneId":414751},{"hugoGeneSymbol":"TRAPPC2P9","entrezGeneId":414753},{"hugoGeneSymbol":"TRAPPC3","entrezGeneId":27095},{"hugoGeneSymbol":"TRAPPC3L","entrezGeneId":100128327},{"hugoGeneSymbol":"TRAPPC4","entrezGeneId":51399},{"hugoGeneSymbol":"TRAPPC5","entrezGeneId":126003},{"hugoGeneSymbol":"TRAPPC6A","entrezGeneId":79090},{"hugoGeneSymbol":"TRAPPC6B","entrezGeneId":122553},{"hugoGeneSymbol":"TRAPPC8","entrezGeneId":22878},{"hugoGeneSymbol":"TRAPPC9","entrezGeneId":83696},{"hugoGeneSymbol":"TRARG1","entrezGeneId":286753},{"hugoGeneSymbol":"TRAT1","entrezGeneId":50852},{"hugoGeneSymbol":"TRAV1-1","entrezGeneId":28693},{"hugoGeneSymbol":"TRAV1-2","entrezGeneId":28692},{"hugoGeneSymbol":"TRAV10","entrezGeneId":28676},{"hugoGeneSymbol":"TRAV11","entrezGeneId":28675},{"hugoGeneSymbol":"TRAV12-1","entrezGeneId":28674},{"hugoGeneSymbol":"TRAV12-2","entrezGeneId":28673},{"hugoGeneSymbol":"TRAV12-3","entrezGeneId":28672},{"hugoGeneSymbol":"TRAV13-1","entrezGeneId":28671},{"hugoGeneSymbol":"TRAV13-2","entrezGeneId":28670},{"hugoGeneSymbol":"TRAV14DV4","entrezGeneId":28669},{"hugoGeneSymbol":"TRAV15","entrezGeneId":28668},{"hugoGeneSymbol":"TRAV16","entrezGeneId":28667},{"hugoGeneSymbol":"TRAV17","entrezGeneId":28666},{"hugoGeneSymbol":"TRAV18","entrezGeneId":28665},{"hugoGeneSymbol":"TRAV19","entrezGeneId":28664},{"hugoGeneSymbol":"TRAV2","entrezGeneId":28691},{"hugoGeneSymbol":"TRAV20","entrezGeneId":28663},{"hugoGeneSymbol":"TRAV21","entrezGeneId":28662},{"hugoGeneSymbol":"TRAV22","entrezGeneId":28661},{"hugoGeneSymbol":"TRAV23DV6","entrezGeneId":28660},{"hugoGeneSymbol":"TRAV24","entrezGeneId":28659},{"hugoGeneSymbol":"TRAV25","entrezGeneId":28658},{"hugoGeneSymbol":"TRAV26-1","entrezGeneId":28657},{"hugoGeneSymbol":"TRAV26-2","entrezGeneId":28656},{"hugoGeneSymbol":"TRAV27","entrezGeneId":28655},{"hugoGeneSymbol":"TRAV28","entrezGeneId":28654},{"hugoGeneSymbol":"TRAV29DV5","entrezGeneId":28653},{"hugoGeneSymbol":"TRAV3","entrezGeneId":28690},{"hugoGeneSymbol":"TRAV30","entrezGeneId":28652},{"hugoGeneSymbol":"TRAV31","entrezGeneId":28651},{"hugoGeneSymbol":"TRAV32","entrezGeneId":28650},{"hugoGeneSymbol":"TRAV33","entrezGeneId":28649},{"hugoGeneSymbol":"TRAV34","entrezGeneId":28648},{"hugoGeneSymbol":"TRAV35","entrezGeneId":28647},{"hugoGeneSymbol":"TRAV36DV7","entrezGeneId":28646},{"hugoGeneSymbol":"TRAV37","entrezGeneId":28645},{"hugoGeneSymbol":"TRAV38-1","entrezGeneId":28644},{"hugoGeneSymbol":"TRAV38-2DV8","entrezGeneId":28643},{"hugoGeneSymbol":"TRAV39","entrezGeneId":28642},{"hugoGeneSymbol":"TRAV4","entrezGeneId":28689},{"hugoGeneSymbol":"TRAV40","entrezGeneId":28641},{"hugoGeneSymbol":"TRAV41","entrezGeneId":28640},{"hugoGeneSymbol":"TRAV5","entrezGeneId":28688},{"hugoGeneSymbol":"TRAV6","entrezGeneId":6956},{"hugoGeneSymbol":"TRAV7","entrezGeneId":28686},{"hugoGeneSymbol":"TRAV8-1","entrezGeneId":28685},{"hugoGeneSymbol":"TRAV8-2","entrezGeneId":28684},{"hugoGeneSymbol":"TRAV8-3","entrezGeneId":28683},{"hugoGeneSymbol":"TRAV8-4","entrezGeneId":28682},{"hugoGeneSymbol":"TRAV8-5","entrezGeneId":28681},{"hugoGeneSymbol":"TRAV8-6","entrezGeneId":28680},{"hugoGeneSymbol":"TRAV8-7","entrezGeneId":28679},{"hugoGeneSymbol":"TRAV9-1","entrezGeneId":28678},{"hugoGeneSymbol":"TRAV9-2","entrezGeneId":28677},{"hugoGeneSymbol":"TRB","entrezGeneId":6957},{"hugoGeneSymbol":"TRBC1","entrezGeneId":28639},{"hugoGeneSymbol":"TRBC2","entrezGeneId":28638},{"hugoGeneSymbol":"TRBD1","entrezGeneId":28637},{"hugoGeneSymbol":"TRBD2","entrezGeneId":28636},{"hugoGeneSymbol":"TRBJ1-1","entrezGeneId":28635},{"hugoGeneSymbol":"TRBJ1-2","entrezGeneId":28634},{"hugoGeneSymbol":"TRBJ1-3","entrezGeneId":28633},{"hugoGeneSymbol":"TRBJ1-4","entrezGeneId":28632},{"hugoGeneSymbol":"TRBJ1-5","entrezGeneId":28631},{"hugoGeneSymbol":"TRBJ1-6","entrezGeneId":28630},{"hugoGeneSymbol":"TRBJ2-1","entrezGeneId":28629},{"hugoGeneSymbol":"TRBJ2-2","entrezGeneId":28628},{"hugoGeneSymbol":"TRBJ2-2P","entrezGeneId":28627},{"hugoGeneSymbol":"TRBJ2-3","entrezGeneId":28626},{"hugoGeneSymbol":"TRBJ2-4","entrezGeneId":28625},{"hugoGeneSymbol":"TRBJ2-5","entrezGeneId":28624},{"hugoGeneSymbol":"TRBJ2-6","entrezGeneId":28623},{"hugoGeneSymbol":"TRBJ2-7","entrezGeneId":28622},{"hugoGeneSymbol":"TRBV1","entrezGeneId":28621},{"hugoGeneSymbol":"TRBV10-1","entrezGeneId":28585},{"hugoGeneSymbol":"TRBV10-2","entrezGeneId":28584},{"hugoGeneSymbol":"TRBV10-3","entrezGeneId":28583},{"hugoGeneSymbol":"TRBV11-1","entrezGeneId":28582},{"hugoGeneSymbol":"TRBV11-2","entrezGeneId":28581},{"hugoGeneSymbol":"TRBV11-3","entrezGeneId":28580},{"hugoGeneSymbol":"TRBV12-1","entrezGeneId":28579},{"hugoGeneSymbol":"TRBV12-2","entrezGeneId":28578},{"hugoGeneSymbol":"TRBV12-3","entrezGeneId":28577},{"hugoGeneSymbol":"TRBV12-4","entrezGeneId":28576},{"hugoGeneSymbol":"TRBV12-5","entrezGeneId":28575},{"hugoGeneSymbol":"TRBV13","entrezGeneId":28574},{"hugoGeneSymbol":"TRBV14","entrezGeneId":28573},{"hugoGeneSymbol":"TRBV15","entrezGeneId":28572},{"hugoGeneSymbol":"TRBV16","entrezGeneId":28571},{"hugoGeneSymbol":"TRBV17","entrezGeneId":28570},{"hugoGeneSymbol":"TRBV18","entrezGeneId":28569},{"hugoGeneSymbol":"TRBV19","entrezGeneId":28568},{"hugoGeneSymbol":"TRBV2","entrezGeneId":28620},{"hugoGeneSymbol":"TRBV20-1","entrezGeneId":28567},{"hugoGeneSymbol":"TRBV20OR9-2","entrezGeneId":6962},{"hugoGeneSymbol":"TRBV21-1","entrezGeneId":28566},{"hugoGeneSymbol":"TRBV21OR9-2","entrezGeneId":6959},{"hugoGeneSymbol":"TRBV22-1","entrezGeneId":28565},{"hugoGeneSymbol":"TRBV22OR9-2","entrezGeneId":246283},{"hugoGeneSymbol":"TRBV23-1","entrezGeneId":28564},{"hugoGeneSymbol":"TRBV23OR9-2","entrezGeneId":28552},{"hugoGeneSymbol":"TRBV24-1","entrezGeneId":28563},{"hugoGeneSymbol":"TRBV24OR9-2","entrezGeneId":6961},{"hugoGeneSymbol":"TRBV25-1","entrezGeneId":28562},{"hugoGeneSymbol":"TRBV25OR9-2","entrezGeneId":6960},{"hugoGeneSymbol":"TRBV26","entrezGeneId":28561},{"hugoGeneSymbol":"TRBV26OR9-2","entrezGeneId":246285},{"hugoGeneSymbol":"TRBV27","entrezGeneId":28560},{"hugoGeneSymbol":"TRBV28","entrezGeneId":28559},{"hugoGeneSymbol":"TRBV29-1","entrezGeneId":28558},{"hugoGeneSymbol":"TRBV29OR9-2","entrezGeneId":6958},{"hugoGeneSymbol":"TRBV3-1","entrezGeneId":28619},{"hugoGeneSymbol":"TRBV3-2","entrezGeneId":28618},{"hugoGeneSymbol":"TRBV30","entrezGeneId":28557},{"hugoGeneSymbol":"TRBV4-1","entrezGeneId":28617},{"hugoGeneSymbol":"TRBV4-2","entrezGeneId":28616},{"hugoGeneSymbol":"TRBV4-3","entrezGeneId":28615},{"hugoGeneSymbol":"TRBV5-1","entrezGeneId":28614},{"hugoGeneSymbol":"TRBV5-2","entrezGeneId":28613},{"hugoGeneSymbol":"TRBV5-3","entrezGeneId":28612},{"hugoGeneSymbol":"TRBV5-4","entrezGeneId":28611},{"hugoGeneSymbol":"TRBV5-5","entrezGeneId":28610},{"hugoGeneSymbol":"TRBV5-6","entrezGeneId":28609},{"hugoGeneSymbol":"TRBV5-7","entrezGeneId":28608},{"hugoGeneSymbol":"TRBV5-8","entrezGeneId":28607},{"hugoGeneSymbol":"TRBV6-1","entrezGeneId":28606},{"hugoGeneSymbol":"TRBV6-2","entrezGeneId":28605},{"hugoGeneSymbol":"TRBV6-3","entrezGeneId":28604},{"hugoGeneSymbol":"TRBV6-4","entrezGeneId":28603},{"hugoGeneSymbol":"TRBV6-5","entrezGeneId":28602},{"hugoGeneSymbol":"TRBV6-6","entrezGeneId":28601},{"hugoGeneSymbol":"TRBV6-7","entrezGeneId":28600},{"hugoGeneSymbol":"TRBV6-8","entrezGeneId":28599},{"hugoGeneSymbol":"TRBV6-9","entrezGeneId":28598},{"hugoGeneSymbol":"TRBV7-1","entrezGeneId":28597},{"hugoGeneSymbol":"TRBV7-2","entrezGeneId":28596},{"hugoGeneSymbol":"TRBV7-3","entrezGeneId":28595},{"hugoGeneSymbol":"TRBV7-4","entrezGeneId":28594},{"hugoGeneSymbol":"TRBV7-5","entrezGeneId":28593},{"hugoGeneSymbol":"TRBV7-6","entrezGeneId":28592},{"hugoGeneSymbol":"TRBV7-7","entrezGeneId":28591},{"hugoGeneSymbol":"TRBV7-8","entrezGeneId":28590},{"hugoGeneSymbol":"TRBV7-9","entrezGeneId":28589},{"hugoGeneSymbol":"TRBV8-1","entrezGeneId":28588},{"hugoGeneSymbol":"TRBV8-2","entrezGeneId":28587},{"hugoGeneSymbol":"TRBV9","entrezGeneId":28586},{"hugoGeneSymbol":"TRBVA","entrezGeneId":28556},{"hugoGeneSymbol":"TRBVAOR9-2","entrezGeneId":246286},{"hugoGeneSymbol":"TRBVB","entrezGeneId":28555},{"hugoGeneSymbol":"TRBVC","entrezGeneId":103106900},{"hugoGeneSymbol":"TRC-ACA1-1","entrezGeneId":100189508},{"hugoGeneSymbol":"TRC-GCA1-1","entrezGeneId":100189144},{"hugoGeneSymbol":"TRC-GCA10-1","entrezGeneId":100189305},{"hugoGeneSymbol":"TRC-GCA11-1","entrezGeneId":100189008},{"hugoGeneSymbol":"TRC-GCA12-1","entrezGeneId":100189075},{"hugoGeneSymbol":"TRC-GCA13-1","entrezGeneId":100189357},{"hugoGeneSymbol":"TRC-GCA14-1","entrezGeneId":100189435},{"hugoGeneSymbol":"TRC-GCA15-1","entrezGeneId":100189267},{"hugoGeneSymbol":"TRC-GCA16-1","entrezGeneId":100189146},{"hugoGeneSymbol":"TRC-GCA17-1","entrezGeneId":100189289},{"hugoGeneSymbol":"TRC-GCA18-1","entrezGeneId":100189049},{"hugoGeneSymbol":"TRC-GCA19-1","entrezGeneId":100189177},{"hugoGeneSymbol":"TRC-GCA2-1","entrezGeneId":100189197},{"hugoGeneSymbol":"TRC-GCA2-2","entrezGeneId":100189052},{"hugoGeneSymbol":"TRC-GCA2-3","entrezGeneId":100189105},{"hugoGeneSymbol":"TRC-GCA2-4","entrezGeneId":100189414},{"hugoGeneSymbol":"TRC-GCA20-1","entrezGeneId":100189355},{"hugoGeneSymbol":"TRC-GCA21-1","entrezGeneId":100189375},{"hugoGeneSymbol":"TRC-GCA22-1","entrezGeneId":100189029},{"hugoGeneSymbol":"TRC-GCA23-1","entrezGeneId":100189194},{"hugoGeneSymbol":"TRC-GCA24-1","entrezGeneId":7183},{"hugoGeneSymbol":"TRC-GCA25-1","entrezGeneId":100189447},{"hugoGeneSymbol":"TRC-GCA3-1","entrezGeneId":100189097},{"hugoGeneSymbol":"TRC-GCA4-1","entrezGeneId":100189090},{"hugoGeneSymbol":"TRC-GCA5-1","entrezGeneId":100189155},{"hugoGeneSymbol":"TRC-GCA6-1","entrezGeneId":100189179},{"hugoGeneSymbol":"TRC-GCA7-1","entrezGeneId":103456508},{"hugoGeneSymbol":"TRC-GCA8-1","entrezGeneId":100189359},{"hugoGeneSymbol":"TRC-GCA9-1","entrezGeneId":100189250},{"hugoGeneSymbol":"TRC-GCA9-2","entrezGeneId":100189413},{"hugoGeneSymbol":"TRC-GCA9-3","entrezGeneId":100189376},{"hugoGeneSymbol":"TRC-GCA9-4","entrezGeneId":100189379},{"hugoGeneSymbol":"TRD","entrezGeneId":6964},{"hugoGeneSymbol":"TRD-GTC1-1","entrezGeneId":100189207},{"hugoGeneSymbol":"TRD-GTC10-1","entrezGeneId":100189495},{"hugoGeneSymbol":"TRD-GTC2-1","entrezGeneId":100189412},{"hugoGeneSymbol":"TRD-GTC2-10","entrezGeneId":100189347},{"hugoGeneSymbol":"TRD-GTC2-11","entrezGeneId":100189383},{"hugoGeneSymbol":"TRD-GTC2-2","entrezGeneId":100189235},{"hugoGeneSymbol":"TRD-GTC2-3","entrezGeneId":100189290},{"hugoGeneSymbol":"TRD-GTC2-4","entrezGeneId":100189134},{"hugoGeneSymbol":"TRD-GTC2-5","entrezGeneId":100189120},{"hugoGeneSymbol":"TRD-GTC2-6","entrezGeneId":100189158},{"hugoGeneSymbol":"TRD-GTC2-7","entrezGeneId":100189292},{"hugoGeneSymbol":"TRD-GTC2-8","entrezGeneId":100189239},{"hugoGeneSymbol":"TRD-GTC2-9","entrezGeneId":100189343},{"hugoGeneSymbol":"TRD-GTC3-1","entrezGeneId":100189200},{"hugoGeneSymbol":"TRD-GTC4-1","entrezGeneId":100188994},{"hugoGeneSymbol":"TRD-GTC5-1","entrezGeneId":100189061},{"hugoGeneSymbol":"TRD-GTC6-1","entrezGeneId":100189150},{"hugoGeneSymbol":"TRD-GTC7-1","entrezGeneId":100189087},{"hugoGeneSymbol":"TRD-GTC8-1","entrezGeneId":100189431},{"hugoGeneSymbol":"TRD-GTC9-1","entrezGeneId":7192},{"hugoGeneSymbol":"TRDC","entrezGeneId":28526},{"hugoGeneSymbol":"TRDD1","entrezGeneId":28525},{"hugoGeneSymbol":"TRDD2","entrezGeneId":28524},{"hugoGeneSymbol":"TRDD3","entrezGeneId":28523},{"hugoGeneSymbol":"TRDJ1","entrezGeneId":28522},{"hugoGeneSymbol":"TRDJ2","entrezGeneId":28521},{"hugoGeneSymbol":"TRDJ3","entrezGeneId":28520},{"hugoGeneSymbol":"TRDJ4","entrezGeneId":28519},{"hugoGeneSymbol":"TRDMT1","entrezGeneId":1787},{"hugoGeneSymbol":"TRDN","entrezGeneId":10345},{"hugoGeneSymbol":"TRDN-AS1","entrezGeneId":101927990},{"hugoGeneSymbol":"TRDV1","entrezGeneId":28518},{"hugoGeneSymbol":"TRDV2","entrezGeneId":28517},{"hugoGeneSymbol":"TRDV3","entrezGeneId":28516},{"hugoGeneSymbol":"TRE-CTC1-1","entrezGeneId":100189384},{"hugoGeneSymbol":"TRE-CTC1-2","entrezGeneId":100189091},{"hugoGeneSymbol":"TRE-CTC1-3","entrezGeneId":100189385},{"hugoGeneSymbol":"TRE-CTC1-4","entrezGeneId":100189259},{"hugoGeneSymbol":"TRE-CTC1-5","entrezGeneId":100189017},{"hugoGeneSymbol":"TRE-CTC1-6","entrezGeneId":100189024},{"hugoGeneSymbol":"TRE-CTC1-7","entrezGeneId":100189269},{"hugoGeneSymbol":"TRE-CTC10-1","entrezGeneId":100189532},{"hugoGeneSymbol":"TRE-CTC11-1","entrezGeneId":100189488},{"hugoGeneSymbol":"TRE-CTC12-1","entrezGeneId":100189440},{"hugoGeneSymbol":"TRE-CTC13-1","entrezGeneId":100189459},{"hugoGeneSymbol":"TRE-CTC14-1","entrezGeneId":100189450},{"hugoGeneSymbol":"TRE-CTC15-1","entrezGeneId":100189527},{"hugoGeneSymbol":"TRE-CTC16-1","entrezGeneId":100189528},{"hugoGeneSymbol":"TRE-CTC17-1","entrezGeneId":100189113},{"hugoGeneSymbol":"TRE-CTC18-1","entrezGeneId":100189492},{"hugoGeneSymbol":"TRE-CTC2-1","entrezGeneId":100189409},{"hugoGeneSymbol":"TRE-CTC3-1","entrezGeneId":100189007},{"hugoGeneSymbol":"TRE-CTC4-1","entrezGeneId":100189506},{"hugoGeneSymbol":"TRE-CTC5-1","entrezGeneId":100189236},{"hugoGeneSymbol":"TRE-CTC6-1","entrezGeneId":100189417},{"hugoGeneSymbol":"TRE-CTC7-1","entrezGeneId":100189491},{"hugoGeneSymbol":"TRE-CTC8-1","entrezGeneId":100189044},{"hugoGeneSymbol":"TRE-CTC9-1","entrezGeneId":100189494},{"hugoGeneSymbol":"TRE-TTC1-1","entrezGeneId":100189418},{"hugoGeneSymbol":"TRE-TTC1-2","entrezGeneId":100189333},{"hugoGeneSymbol":"TRE-TTC10-1","entrezGeneId":100189454},{"hugoGeneSymbol":"TRE-TTC11-1","entrezGeneId":100189129},{"hugoGeneSymbol":"TRE-TTC12-1","entrezGeneId":100189000},{"hugoGeneSymbol":"TRE-TTC13-1","entrezGeneId":100189054},{"hugoGeneSymbol":"TRE-TTC14-1","entrezGeneId":100189485},{"hugoGeneSymbol":"TRE-TTC15-1","entrezGeneId":100189484},{"hugoGeneSymbol":"TRE-TTC16-1","entrezGeneId":100189210},{"hugoGeneSymbol":"TRE-TTC2-1","entrezGeneId":100189030},{"hugoGeneSymbol":"TRE-TTC2-2","entrezGeneId":100189063},{"hugoGeneSymbol":"TRE-TTC3-1","entrezGeneId":7193},{"hugoGeneSymbol":"TRE-TTC4-1","entrezGeneId":103456506},{"hugoGeneSymbol":"TRE-TTC4-2","entrezGeneId":100189407},{"hugoGeneSymbol":"TRE-TTC5-1","entrezGeneId":100189031},{"hugoGeneSymbol":"TRE-TTC6-1","entrezGeneId":100189465},{"hugoGeneSymbol":"TRE-TTC7-1","entrezGeneId":100189457},{"hugoGeneSymbol":"TRE-TTC8-1","entrezGeneId":100189068},{"hugoGeneSymbol":"TRE-TTC9-1","entrezGeneId":100189518},{"hugoGeneSymbol":"TREH","entrezGeneId":11181},{"hugoGeneSymbol":"TREHP1","entrezGeneId":768086},{"hugoGeneSymbol":"TREM1","entrezGeneId":54210},{"hugoGeneSymbol":"TREM2","entrezGeneId":54209},{"hugoGeneSymbol":"TREML1","entrezGeneId":340205},{"hugoGeneSymbol":"TREML2","entrezGeneId":79865},{"hugoGeneSymbol":"TREML3P","entrezGeneId":340206},{"hugoGeneSymbol":"TREML4","entrezGeneId":285852},{"hugoGeneSymbol":"TREML5P","entrezGeneId":221438},{"hugoGeneSymbol":"TRERF1","entrezGeneId":55809},{"hugoGeneSymbol":"TRERNA1","entrezGeneId":100887755},{"hugoGeneSymbol":"TREX1","entrezGeneId":11277},{"hugoGeneSymbol":"TREX2","entrezGeneId":11219},{"hugoGeneSymbol":"TRF-GAA1-1","entrezGeneId":100189137},{"hugoGeneSymbol":"TRF-GAA1-2","entrezGeneId":100189254},{"hugoGeneSymbol":"TRF-GAA1-3","entrezGeneId":100189415},{"hugoGeneSymbol":"TRF-GAA1-4","entrezGeneId":100009606},{"hugoGeneSymbol":"TRF-GAA1-5","entrezGeneId":100189251},{"hugoGeneSymbol":"TRF-GAA1-6","entrezGeneId":100189306},{"hugoGeneSymbol":"TRF-GAA10-1","entrezGeneId":100189497},{"hugoGeneSymbol":"TRF-GAA11-1","entrezGeneId":100189472},{"hugoGeneSymbol":"TRF-GAA12-1","entrezGeneId":100189471},{"hugoGeneSymbol":"TRF-GAA2-1","entrezGeneId":100009605},{"hugoGeneSymbol":"TRF-GAA3-1","entrezGeneId":100189170},{"hugoGeneSymbol":"TRF-GAA4-1","entrezGeneId":100189293},{"hugoGeneSymbol":"TRF-GAA5-1","entrezGeneId":100189145},{"hugoGeneSymbol":"TRF-GAA6-1","entrezGeneId":100189262},{"hugoGeneSymbol":"TRF-GAA7-1","entrezGeneId":100189421},{"hugoGeneSymbol":"TRF-GAA8-1","entrezGeneId":100189446},{"hugoGeneSymbol":"TRF-GAA9-1","entrezGeneId":100189533},{"hugoGeneSymbol":"TRG","entrezGeneId":6965},{"hugoGeneSymbol":"TRG-AS1","entrezGeneId":100506776},{"hugoGeneSymbol":"TRG-CCC1-1","entrezGeneId":103456505},{"hugoGeneSymbol":"TRG-CCC1-2","entrezGeneId":100189298},{"hugoGeneSymbol":"TRG-CCC2-1","entrezGeneId":100189231},{"hugoGeneSymbol":"TRG-CCC2-2","entrezGeneId":64717},{"hugoGeneSymbol":"TRG-CCC3-1","entrezGeneId":100189277},{"hugoGeneSymbol":"TRG-CCC4-1","entrezGeneId":100189486},{"hugoGeneSymbol":"TRG-CCC5-1","entrezGeneId":100189045},{"hugoGeneSymbol":"TRG-CCC6-1","entrezGeneId":100189498},{"hugoGeneSymbol":"TRG-CCC7-1","entrezGeneId":100189458},{"hugoGeneSymbol":"TRG-CCC8-1","entrezGeneId":103539958},{"hugoGeneSymbol":"TRG-GCC1-1","entrezGeneId":100189366},{"hugoGeneSymbol":"TRG-GCC1-2","entrezGeneId":100189252},{"hugoGeneSymbol":"TRG-GCC1-3","entrezGeneId":100189230},{"hugoGeneSymbol":"TRG-GCC1-4","entrezGeneId":100189160},{"hugoGeneSymbol":"TRG-GCC1-5","entrezGeneId":100189284},{"hugoGeneSymbol":"TRG-GCC2-1","entrezGeneId":100189380},{"hugoGeneSymbol":"TRG-GCC2-2","entrezGeneId":100189208},{"hugoGeneSymbol":"TRG-GCC2-3","entrezGeneId":100189314},{"hugoGeneSymbol":"TRG-GCC2-4","entrezGeneId":100188985},{"hugoGeneSymbol":"TRG-GCC2-5","entrezGeneId":100189163},{"hugoGeneSymbol":"TRG-GCC2-6","entrezGeneId":7196},{"hugoGeneSymbol":"TRG-GCC3-1","entrezGeneId":7198},{"hugoGeneSymbol":"TRG-GCC4-1","entrezGeneId":100189274},{"hugoGeneSymbol":"TRG-GCC5-1","entrezGeneId":100189220},{"hugoGeneSymbol":"TRG-GCC6-1","entrezGeneId":100189081},{"hugoGeneSymbol":"TRG-TCC1-1","entrezGeneId":7197},{"hugoGeneSymbol":"TRG-TCC2-1","entrezGeneId":100189064},{"hugoGeneSymbol":"TRG-TCC2-2","entrezGeneId":100189260},{"hugoGeneSymbol":"TRG-TCC2-3","entrezGeneId":100189141},{"hugoGeneSymbol":"TRG-TCC2-4","entrezGeneId":100189188},{"hugoGeneSymbol":"TRG-TCC2-5","entrezGeneId":100189039},{"hugoGeneSymbol":"TRG-TCC2-6","entrezGeneId":100189011},{"hugoGeneSymbol":"TRG-TCC3-1","entrezGeneId":100189206},{"hugoGeneSymbol":"TRG-TCC4-1","entrezGeneId":100188997},{"hugoGeneSymbol":"TRG-TCC5-1","entrezGeneId":100189460},{"hugoGeneSymbol":"TRG-TCC6-1","entrezGeneId":100189511},{"hugoGeneSymbol":"TRGC1","entrezGeneId":6966},{"hugoGeneSymbol":"TRGC2","entrezGeneId":6967},{"hugoGeneSymbol":"TRGJ1","entrezGeneId":6968},{"hugoGeneSymbol":"TRGJ2","entrezGeneId":6969},{"hugoGeneSymbol":"TRGJP","entrezGeneId":6970},{"hugoGeneSymbol":"TRGJP1","entrezGeneId":6971},{"hugoGeneSymbol":"TRGJP2","entrezGeneId":6972},{"hugoGeneSymbol":"TRGV1","entrezGeneId":6973},{"hugoGeneSymbol":"TRGV10","entrezGeneId":6984},{"hugoGeneSymbol":"TRGV11","entrezGeneId":6985},{"hugoGeneSymbol":"TRGV2","entrezGeneId":6974},{"hugoGeneSymbol":"TRGV3","entrezGeneId":6976},{"hugoGeneSymbol":"TRGV4","entrezGeneId":6977},{"hugoGeneSymbol":"TRGV5","entrezGeneId":6978},{"hugoGeneSymbol":"TRGV5P","entrezGeneId":6979},{"hugoGeneSymbol":"TRGV6","entrezGeneId":6980},{"hugoGeneSymbol":"TRGV7","entrezGeneId":6981},{"hugoGeneSymbol":"TRGV8","entrezGeneId":6982},{"hugoGeneSymbol":"TRGV9","entrezGeneId":6983},{"hugoGeneSymbol":"TRGVA","entrezGeneId":6986},{"hugoGeneSymbol":"TRGVB","entrezGeneId":6987},{"hugoGeneSymbol":"TRH","entrezGeneId":7200},{"hugoGeneSymbol":"TRH-GTG1-1","entrezGeneId":100188991},{"hugoGeneSymbol":"TRH-GTG1-2","entrezGeneId":100189334},{"hugoGeneSymbol":"TRH-GTG1-3","entrezGeneId":100189307},{"hugoGeneSymbol":"TRH-GTG1-4","entrezGeneId":100189174},{"hugoGeneSymbol":"TRH-GTG1-5","entrezGeneId":100188987},{"hugoGeneSymbol":"TRH-GTG1-6","entrezGeneId":100009607},{"hugoGeneSymbol":"TRH-GTG1-7","entrezGeneId":100188986},{"hugoGeneSymbol":"TRH-GTG1-8","entrezGeneId":100188988},{"hugoGeneSymbol":"TRH-GTG1-9","entrezGeneId":100189065},{"hugoGeneSymbol":"TRH-GTG2-1","entrezGeneId":100189350},{"hugoGeneSymbol":"TRH-GTG3-1","entrezGeneId":100189242},{"hugoGeneSymbol":"TRHDE","entrezGeneId":29953},{"hugoGeneSymbol":"TRHDE-AS1","entrezGeneId":283392},{"hugoGeneSymbol":"TRHR","entrezGeneId":7201},{"hugoGeneSymbol":"TRI-AAT1-1","entrezGeneId":100189249},{"hugoGeneSymbol":"TRI-AAT10-1","entrezGeneId":100189462},{"hugoGeneSymbol":"TRI-AAT11-1","entrezGeneId":100189474},{"hugoGeneSymbol":"TRI-AAT12-1","entrezGeneId":100189481},{"hugoGeneSymbol":"TRI-AAT2-1","entrezGeneId":100189071},{"hugoGeneSymbol":"TRI-AAT3-1","entrezGeneId":100189213},{"hugoGeneSymbol":"TRI-AAT4-1","entrezGeneId":100189393},{"hugoGeneSymbol":"TRI-AAT5-1","entrezGeneId":100189153},{"hugoGeneSymbol":"TRI-AAT5-2","entrezGeneId":100189336},{"hugoGeneSymbol":"TRI-AAT5-3","entrezGeneId":100189310},{"hugoGeneSymbol":"TRI-AAT5-4","entrezGeneId":100189275},{"hugoGeneSymbol":"TRI-AAT5-5","entrezGeneId":100189387},{"hugoGeneSymbol":"TRI-AAT6-1","entrezGeneId":100189372},{"hugoGeneSymbol":"TRI-AAT7-1","entrezGeneId":100189148},{"hugoGeneSymbol":"TRI-AAT7-2","entrezGeneId":100189401},{"hugoGeneSymbol":"TRI-AAT8-1","entrezGeneId":100189095},{"hugoGeneSymbol":"TRI-AAT9-1","entrezGeneId":7202},{"hugoGeneSymbol":"TRI-GAT1-1","entrezGeneId":100189132},{"hugoGeneSymbol":"TRI-GAT1-2","entrezGeneId":100189050},{"hugoGeneSymbol":"TRI-GAT1-3","entrezGeneId":100189427},{"hugoGeneSymbol":"TRI-TAT1-1","entrezGeneId":100189324},{"hugoGeneSymbol":"TRI-TAT2-1","entrezGeneId":100189265},{"hugoGeneSymbol":"TRI-TAT2-2","entrezGeneId":100189028},{"hugoGeneSymbol":"TRI-TAT2-3","entrezGeneId":100189131},{"hugoGeneSymbol":"TRI-TAT3-1","entrezGeneId":100189348},{"hugoGeneSymbol":"TRIAP1","entrezGeneId":51499},{"hugoGeneSymbol":"TRIAP1P1","entrezGeneId":100289619},{"hugoGeneSymbol":"TRIB1","entrezGeneId":10221},{"hugoGeneSymbol":"TRIB2","entrezGeneId":28951},{"hugoGeneSymbol":"TRIB3","entrezGeneId":57761},{"hugoGeneSymbol":"TRICY1","entrezGeneId":94014},{"hugoGeneSymbol":"TRIL","entrezGeneId":9865},{"hugoGeneSymbol":"TRIM10","entrezGeneId":10107},{"hugoGeneSymbol":"TRIM11","entrezGeneId":81559},{"hugoGeneSymbol":"TRIM13","entrezGeneId":10206},{"hugoGeneSymbol":"TRIM14","entrezGeneId":9830},{"hugoGeneSymbol":"TRIM15","entrezGeneId":89870},{"hugoGeneSymbol":"TRIM16","entrezGeneId":10626},{"hugoGeneSymbol":"TRIM16L","entrezGeneId":147166},{"hugoGeneSymbol":"TRIM17","entrezGeneId":51127},{"hugoGeneSymbol":"TRIM2","entrezGeneId":23321},{"hugoGeneSymbol":"TRIM21","entrezGeneId":6737},{"hugoGeneSymbol":"TRIM22","entrezGeneId":10346},{"hugoGeneSymbol":"TRIM23","entrezGeneId":373},{"hugoGeneSymbol":"TRIM24","entrezGeneId":8805},{"hugoGeneSymbol":"TRIM25","entrezGeneId":7706},{"hugoGeneSymbol":"TRIM26","entrezGeneId":7726},{"hugoGeneSymbol":"TRIM26BP","entrezGeneId":404024},{"hugoGeneSymbol":"TRIM27","entrezGeneId":5987},{"hugoGeneSymbol":"TRIM28","entrezGeneId":10155},{"hugoGeneSymbol":"TRIM29","entrezGeneId":23650},{"hugoGeneSymbol":"TRIM3","entrezGeneId":10612},{"hugoGeneSymbol":"TRIM31","entrezGeneId":11074},{"hugoGeneSymbol":"TRIM31-AS1","entrezGeneId":104533120},{"hugoGeneSymbol":"TRIM32","entrezGeneId":22954},{"hugoGeneSymbol":"TRIM33","entrezGeneId":51592},{"hugoGeneSymbol":"TRIM34","entrezGeneId":53840},{"hugoGeneSymbol":"TRIM35","entrezGeneId":23087},{"hugoGeneSymbol":"TRIM36","entrezGeneId":55521},{"hugoGeneSymbol":"TRIM36-IT1","entrezGeneId":100874338},{"hugoGeneSymbol":"TRIM37","entrezGeneId":4591},{"hugoGeneSymbol":"TRIM38","entrezGeneId":10475},{"hugoGeneSymbol":"TRIM39","entrezGeneId":56658},{"hugoGeneSymbol":"TRIM39-RPP21","entrezGeneId":202658},{"hugoGeneSymbol":"TRIM4","entrezGeneId":89122},{"hugoGeneSymbol":"TRIM40","entrezGeneId":135644},{"hugoGeneSymbol":"TRIM41","entrezGeneId":90933},{"hugoGeneSymbol":"TRIM42","entrezGeneId":287015},{"hugoGeneSymbol":"TRIM43","entrezGeneId":129868},{"hugoGeneSymbol":"TRIM43B","entrezGeneId":653192},{"hugoGeneSymbol":"TRIM43CP","entrezGeneId":643445},{"hugoGeneSymbol":"TRIM44","entrezGeneId":54765},{"hugoGeneSymbol":"TRIM45","entrezGeneId":80263},{"hugoGeneSymbol":"TRIM46","entrezGeneId":80128},{"hugoGeneSymbol":"TRIM47","entrezGeneId":91107},{"hugoGeneSymbol":"TRIM48","entrezGeneId":79097},{"hugoGeneSymbol":"TRIM49","entrezGeneId":57093},{"hugoGeneSymbol":"TRIM49B","entrezGeneId":283116},{"hugoGeneSymbol":"TRIM49C","entrezGeneId":642612},{"hugoGeneSymbol":"TRIM49D1","entrezGeneId":399939},{"hugoGeneSymbol":"TRIM49D2","entrezGeneId":729384},{"hugoGeneSymbol":"TRIM5","entrezGeneId":85363},{"hugoGeneSymbol":"TRIM50","entrezGeneId":135892},{"hugoGeneSymbol":"TRIM51","entrezGeneId":84767},{"hugoGeneSymbol":"TRIM51BP","entrezGeneId":399937},{"hugoGeneSymbol":"TRIM51CP","entrezGeneId":100130105},{"hugoGeneSymbol":"TRIM51DP","entrezGeneId":100419945},{"hugoGeneSymbol":"TRIM51EP","entrezGeneId":399940},{"hugoGeneSymbol":"TRIM51FP","entrezGeneId":283257},{"hugoGeneSymbol":"TRIM51GP","entrezGeneId":120824},{"hugoGeneSymbol":"TRIM51HP","entrezGeneId":440041},{"hugoGeneSymbol":"TRIM51JP","entrezGeneId":643126},{"hugoGeneSymbol":"TRIM52","entrezGeneId":84851},{"hugoGeneSymbol":"TRIM52-AS1","entrezGeneId":100507602},{"hugoGeneSymbol":"TRIM53AP","entrezGeneId":642569},{"hugoGeneSymbol":"TRIM53BP","entrezGeneId":642425},{"hugoGeneSymbol":"TRIM53CP","entrezGeneId":340970},{"hugoGeneSymbol":"TRIM54","entrezGeneId":57159},{"hugoGeneSymbol":"TRIM55","entrezGeneId":84675},{"hugoGeneSymbol":"TRIM56","entrezGeneId":81844},{"hugoGeneSymbol":"TRIM58","entrezGeneId":25893},{"hugoGeneSymbol":"TRIM59","entrezGeneId":286827},{"hugoGeneSymbol":"TRIM59-IFT80","entrezGeneId":100174949},{"hugoGeneSymbol":"TRIM6","entrezGeneId":117854},{"hugoGeneSymbol":"TRIM6-TRIM34","entrezGeneId":445372},{"hugoGeneSymbol":"TRIM60","entrezGeneId":166655},{"hugoGeneSymbol":"TRIM60P10Y","entrezGeneId":100420376},{"hugoGeneSymbol":"TRIM60P11Y","entrezGeneId":100420377},{"hugoGeneSymbol":"TRIM60P12Y","entrezGeneId":100420378},{"hugoGeneSymbol":"TRIM60P13","entrezGeneId":100132195},{"hugoGeneSymbol":"TRIM60P14","entrezGeneId":653794},{"hugoGeneSymbol":"TRIM60P15","entrezGeneId":100420405},{"hugoGeneSymbol":"TRIM60P16","entrezGeneId":100420412},{"hugoGeneSymbol":"TRIM60P17","entrezGeneId":100420414},{"hugoGeneSymbol":"TRIM60P18","entrezGeneId":100420415},{"hugoGeneSymbol":"TRIM60P19","entrezGeneId":100533672},{"hugoGeneSymbol":"TRIM60P1Y","entrezGeneId":100420362},{"hugoGeneSymbol":"TRIM60P2Y","entrezGeneId":100420363},{"hugoGeneSymbol":"TRIM60P3Y","entrezGeneId":100420364},{"hugoGeneSymbol":"TRIM60P4Y","entrezGeneId":100420367},{"hugoGeneSymbol":"TRIM60P5Y","entrezGeneId":100420368},{"hugoGeneSymbol":"TRIM60P6Y","entrezGeneId":100420369},{"hugoGeneSymbol":"TRIM60P7Y","entrezGeneId":100420370},{"hugoGeneSymbol":"TRIM60P8Y","entrezGeneId":100420373},{"hugoGeneSymbol":"TRIM60P9Y","entrezGeneId":100420374},{"hugoGeneSymbol":"TRIM61","entrezGeneId":391712},{"hugoGeneSymbol":"TRIM62","entrezGeneId":55223},{"hugoGeneSymbol":"TRIM63","entrezGeneId":84676},{"hugoGeneSymbol":"TRIM64","entrezGeneId":120146},{"hugoGeneSymbol":"TRIM64B","entrezGeneId":642446},{"hugoGeneSymbol":"TRIM64C","entrezGeneId":646754},{"hugoGeneSymbol":"TRIM64DP","entrezGeneId":727828},{"hugoGeneSymbol":"TRIM64EP","entrezGeneId":440061},{"hugoGeneSymbol":"TRIM64FP","entrezGeneId":390233},{"hugoGeneSymbol":"TRIM65","entrezGeneId":201292},{"hugoGeneSymbol":"TRIM66","entrezGeneId":9866},{"hugoGeneSymbol":"TRIM67","entrezGeneId":440730},{"hugoGeneSymbol":"TRIM68","entrezGeneId":55128},{"hugoGeneSymbol":"TRIM69","entrezGeneId":140691},{"hugoGeneSymbol":"TRIM7","entrezGeneId":81786},{"hugoGeneSymbol":"TRIM71","entrezGeneId":131405},{"hugoGeneSymbol":"TRIM72","entrezGeneId":493829},{"hugoGeneSymbol":"TRIM73","entrezGeneId":375593},{"hugoGeneSymbol":"TRIM74","entrezGeneId":378108},{"hugoGeneSymbol":"TRIM75P","entrezGeneId":391714},{"hugoGeneSymbol":"TRIM77","entrezGeneId":390231},{"hugoGeneSymbol":"TRIM77BP","entrezGeneId":646770},{"hugoGeneSymbol":"TRIM8","entrezGeneId":81603},{"hugoGeneSymbol":"TRIM80P","entrezGeneId":106480328},{"hugoGeneSymbol":"TRIM9","entrezGeneId":114088},{"hugoGeneSymbol":"TRIML1","entrezGeneId":339976},{"hugoGeneSymbol":"TRIML2","entrezGeneId":205860},{"hugoGeneSymbol":"TRIO","entrezGeneId":7204},{"hugoGeneSymbol":"TRIOBP","entrezGeneId":11078},{"hugoGeneSymbol":"TRIP10","entrezGeneId":9322},{"hugoGeneSymbol":"TRIP11","entrezGeneId":9321},{"hugoGeneSymbol":"TRIP12","entrezGeneId":9320},{"hugoGeneSymbol":"TRIP13","entrezGeneId":9319},{"hugoGeneSymbol":"TRIP4","entrezGeneId":9325},{"hugoGeneSymbol":"TRIP4Q32.1Q32.2","entrezGeneId":100529228},{"hugoGeneSymbol":"TRIP6","entrezGeneId":7205},{"hugoGeneSymbol":"TRIQK","entrezGeneId":286144},{"hugoGeneSymbol":"TRIR","entrezGeneId":79002},{"hugoGeneSymbol":"TRIT1","entrezGeneId":54802},{"hugoGeneSymbol":"TRK-CTT1-1","entrezGeneId":100189107},{"hugoGeneSymbol":"TRK-CTT1-2","entrezGeneId":100189013},{"hugoGeneSymbol":"TRK-CTT10-1","entrezGeneId":100189367},{"hugoGeneSymbol":"TRK-CTT11-1","entrezGeneId":100189311},{"hugoGeneSymbol":"TRK-CTT12-1","entrezGeneId":100189464},{"hugoGeneSymbol":"TRK-CTT13-1","entrezGeneId":100189439},{"hugoGeneSymbol":"TRK-CTT14-1","entrezGeneId":100189467},{"hugoGeneSymbol":"TRK-CTT15-1","entrezGeneId":100188999},{"hugoGeneSymbol":"TRK-CTT16-1","entrezGeneId":100189536},{"hugoGeneSymbol":"TRK-CTT2-1","entrezGeneId":100189198},{"hugoGeneSymbol":"TRK-CTT2-2","entrezGeneId":100189399},{"hugoGeneSymbol":"TRK-CTT2-3","entrezGeneId":790966},{"hugoGeneSymbol":"TRK-CTT2-4","entrezGeneId":100189110},{"hugoGeneSymbol":"TRK-CTT2-5","entrezGeneId":100189282},{"hugoGeneSymbol":"TRK-CTT3-1","entrezGeneId":100189119},{"hugoGeneSymbol":"TRK-CTT4-1","entrezGeneId":100189062},{"hugoGeneSymbol":"TRK-CTT5-1","entrezGeneId":100189209},{"hugoGeneSymbol":"TRK-CTT6-1","entrezGeneId":100188995},{"hugoGeneSymbol":"TRK-CTT7-1","entrezGeneId":101056699},{"hugoGeneSymbol":"TRK-CTT8-1","entrezGeneId":100189244},{"hugoGeneSymbol":"TRK-CTT9-1","entrezGeneId":100189180},{"hugoGeneSymbol":"TRK-TTT1-1","entrezGeneId":100189125},{"hugoGeneSymbol":"TRK-TTT10-1","entrezGeneId":100189480},{"hugoGeneSymbol":"TRK-TTT11-1","entrezGeneId":100189104},{"hugoGeneSymbol":"TRK-TTT12-1","entrezGeneId":100189051},{"hugoGeneSymbol":"TRK-TTT13-1","entrezGeneId":100189539},{"hugoGeneSymbol":"TRK-TTT14-1","entrezGeneId":100189514},{"hugoGeneSymbol":"TRK-TTT15-1","entrezGeneId":100189504},{"hugoGeneSymbol":"TRK-TTT16-1","entrezGeneId":100189392},{"hugoGeneSymbol":"TRK-TTT17-1","entrezGeneId":100189519},{"hugoGeneSymbol":"TRK-TTT2-1","entrezGeneId":100189294},{"hugoGeneSymbol":"TRK-TTT3-1","entrezGeneId":100189122},{"hugoGeneSymbol":"TRK-TTT3-2","entrezGeneId":100189425},{"hugoGeneSymbol":"TRK-TTT3-3","entrezGeneId":100189234},{"hugoGeneSymbol":"TRK-TTT3-4","entrezGeneId":100049613},{"hugoGeneSymbol":"TRK-TTT3-5","entrezGeneId":7206},{"hugoGeneSymbol":"TRK-TTT4-1","entrezGeneId":100189053},{"hugoGeneSymbol":"TRK-TTT5-1","entrezGeneId":100189238},{"hugoGeneSymbol":"TRK-TTT6-1","entrezGeneId":100189182},{"hugoGeneSymbol":"TRK-TTT7-1","entrezGeneId":100189332},{"hugoGeneSymbol":"TRK-TTT8-1","entrezGeneId":100189098},{"hugoGeneSymbol":"TRK-TTT9-1","entrezGeneId":100189390},{"hugoGeneSymbol":"TRL-AAG1-1","entrezGeneId":100189362},{"hugoGeneSymbol":"TRL-AAG1-2","entrezGeneId":100189273},{"hugoGeneSymbol":"TRL-AAG1-3","entrezGeneId":100189004},{"hugoGeneSymbol":"TRL-AAG2-1","entrezGeneId":100189328},{"hugoGeneSymbol":"TRL-AAG2-2","entrezGeneId":100189202},{"hugoGeneSymbol":"TRL-AAG2-3","entrezGeneId":7207},{"hugoGeneSymbol":"TRL-AAG2-4","entrezGeneId":100189291},{"hugoGeneSymbol":"TRL-AAG3-1","entrezGeneId":100189169},{"hugoGeneSymbol":"TRL-AAG4-1","entrezGeneId":100189118},{"hugoGeneSymbol":"TRL-AAG5-1","entrezGeneId":100189043},{"hugoGeneSymbol":"TRL-AAG6-1","entrezGeneId":100189429},{"hugoGeneSymbol":"TRL-AAG7-1","entrezGeneId":100189493},{"hugoGeneSymbol":"TRL-AAG8-1","entrezGeneId":100189349},{"hugoGeneSymbol":"TRL-CAA1-1","entrezGeneId":103456511},{"hugoGeneSymbol":"TRL-CAA1-2","entrezGeneId":100189237},{"hugoGeneSymbol":"TRL-CAA2-1","entrezGeneId":100189301},{"hugoGeneSymbol":"TRL-CAA3-1","entrezGeneId":100189038},{"hugoGeneSymbol":"TRL-CAA4-1","entrezGeneId":100189199},{"hugoGeneSymbol":"TRL-CAA5-1","entrezGeneId":100189370},{"hugoGeneSymbol":"TRL-CAA6-1","entrezGeneId":100189003},{"hugoGeneSymbol":"TRL-CAA7-1","entrezGeneId":100189499},{"hugoGeneSymbol":"TRL-CAG1-1","entrezGeneId":100189394},{"hugoGeneSymbol":"TRL-CAG1-2","entrezGeneId":100189009},{"hugoGeneSymbol":"TRL-CAG1-3","entrezGeneId":100189316},{"hugoGeneSymbol":"TRL-CAG1-4","entrezGeneId":100189364},{"hugoGeneSymbol":"TRL-CAG1-5","entrezGeneId":100189139},{"hugoGeneSymbol":"TRL-CAG1-6","entrezGeneId":100189018},{"hugoGeneSymbol":"TRL-CAG1-7","entrezGeneId":100189288},{"hugoGeneSymbol":"TRL-CAG2-1","entrezGeneId":100189130},{"hugoGeneSymbol":"TRL-CAG2-2","entrezGeneId":100189089},{"hugoGeneSymbol":"TRL-CAG3-1","entrezGeneId":100189204},{"hugoGeneSymbol":"TRL-TAA1-1","entrezGeneId":100189313},{"hugoGeneSymbol":"TRL-TAA2-1","entrezGeneId":100189164},{"hugoGeneSymbol":"TRL-TAA3-1","entrezGeneId":100189240},{"hugoGeneSymbol":"TRL-TAA4-1","entrezGeneId":100189067},{"hugoGeneSymbol":"TRL-TAA5-1","entrezGeneId":100189175},{"hugoGeneSymbol":"TRL-TAG1-1","entrezGeneId":7208},{"hugoGeneSymbol":"TRL-TAG2-1","entrezGeneId":100189151},{"hugoGeneSymbol":"TRL-TAG3-1","entrezGeneId":100189032},{"hugoGeneSymbol":"TRL-TAG4-1","entrezGeneId":100189441},{"hugoGeneSymbol":"TRM-CAT1-1","entrezGeneId":100189201},{"hugoGeneSymbol":"TRM-CAT2-1","entrezGeneId":100189135},{"hugoGeneSymbol":"TRM-CAT3-1","entrezGeneId":100189216},{"hugoGeneSymbol":"TRM-CAT3-2","entrezGeneId":100189111},{"hugoGeneSymbol":"TRM-CAT4-1","entrezGeneId":100189100},{"hugoGeneSymbol":"TRM-CAT4-2","entrezGeneId":100189354},{"hugoGeneSymbol":"TRM-CAT4-3","entrezGeneId":100189391},{"hugoGeneSymbol":"TRM-CAT5-1","entrezGeneId":100189303},{"hugoGeneSymbol":"TRM-CAT6-1","entrezGeneId":100189226},{"hugoGeneSymbol":"TRM-CAT7-1","entrezGeneId":100189085},{"hugoGeneSymbol":"TRMEP1","entrezGeneId":7211},{"hugoGeneSymbol":"TRMO","entrezGeneId":51531},{"hugoGeneSymbol":"TRMT1","entrezGeneId":55621},{"hugoGeneSymbol":"TRMT10A","entrezGeneId":93587},{"hugoGeneSymbol":"TRMT10B","entrezGeneId":158234},{"hugoGeneSymbol":"TRMT10C","entrezGeneId":54931},{"hugoGeneSymbol":"TRMT11","entrezGeneId":60487},{"hugoGeneSymbol":"TRMT112","entrezGeneId":51504},{"hugoGeneSymbol":"TRMT112P1","entrezGeneId":100288861},{"hugoGeneSymbol":"TRMT112P2","entrezGeneId":106479033},{"hugoGeneSymbol":"TRMT112P3","entrezGeneId":729667},{"hugoGeneSymbol":"TRMT112P4","entrezGeneId":100288173},{"hugoGeneSymbol":"TRMT112P5","entrezGeneId":106480784},{"hugoGeneSymbol":"TRMT112P6","entrezGeneId":391358},{"hugoGeneSymbol":"TRMT112P7","entrezGeneId":100287567},{"hugoGeneSymbol":"TRMT12","entrezGeneId":55039},{"hugoGeneSymbol":"TRMT13","entrezGeneId":54482},{"hugoGeneSymbol":"TRMT1L","entrezGeneId":81627},{"hugoGeneSymbol":"TRMT2A","entrezGeneId":27037},{"hugoGeneSymbol":"TRMT2B","entrezGeneId":79979},{"hugoGeneSymbol":"TRMT2B-AS1","entrezGeneId":106481789},{"hugoGeneSymbol":"TRMT44","entrezGeneId":152992},{"hugoGeneSymbol":"TRMT5","entrezGeneId":57570},{"hugoGeneSymbol":"TRMT6","entrezGeneId":51605},{"hugoGeneSymbol":"TRMT61A","entrezGeneId":115708},{"hugoGeneSymbol":"TRMT61B","entrezGeneId":55006},{"hugoGeneSymbol":"TRMT9B","entrezGeneId":57604},{"hugoGeneSymbol":"TRMU","entrezGeneId":55687},{"hugoGeneSymbol":"TRN-ATT1-1","entrezGeneId":100189320},{"hugoGeneSymbol":"TRN-ATT1-2","entrezGeneId":103581030},{"hugoGeneSymbol":"TRN-GTT1-1","entrezGeneId":100189126},{"hugoGeneSymbol":"TRN-GTT10-1","entrezGeneId":100189517},{"hugoGeneSymbol":"TRN-GTT11-1","entrezGeneId":100189108},{"hugoGeneSymbol":"TRN-GTT11-2","entrezGeneId":100189257},{"hugoGeneSymbol":"TRN-GTT12-1","entrezGeneId":100189356},{"hugoGeneSymbol":"TRN-GTT13-1","entrezGeneId":100189183},{"hugoGeneSymbol":"TRN-GTT14-1","entrezGeneId":100188996},{"hugoGeneSymbol":"TRN-GTT15-1","entrezGeneId":100189233},{"hugoGeneSymbol":"TRN-GTT16-1","entrezGeneId":100189069},{"hugoGeneSymbol":"TRN-GTT16-2","entrezGeneId":100189271},{"hugoGeneSymbol":"TRN-GTT16-3","entrezGeneId":100189079},{"hugoGeneSymbol":"TRN-GTT16-4","entrezGeneId":100189165},{"hugoGeneSymbol":"TRN-GTT16-5","entrezGeneId":100189338},{"hugoGeneSymbol":"TRN-GTT17-1","entrezGeneId":100189096},{"hugoGeneSymbol":"TRN-GTT18-1","entrezGeneId":103456509},{"hugoGeneSymbol":"TRN-GTT19-1","entrezGeneId":100189381},{"hugoGeneSymbol":"TRN-GTT2-1","entrezGeneId":7214},{"hugoGeneSymbol":"TRN-GTT2-2","entrezGeneId":100189402},{"hugoGeneSymbol":"TRN-GTT2-3","entrezGeneId":100189083},{"hugoGeneSymbol":"TRN-GTT2-4","entrezGeneId":100189036},{"hugoGeneSymbol":"TRN-GTT2-5","entrezGeneId":100189176},{"hugoGeneSymbol":"TRN-GTT2-6","entrezGeneId":100189195},{"hugoGeneSymbol":"TRN-GTT20-1","entrezGeneId":100189266},{"hugoGeneSymbol":"TRN-GTT21-1","entrezGeneId":100873961},{"hugoGeneSymbol":"TRN-GTT22-1","entrezGeneId":100189534},{"hugoGeneSymbol":"TRN-GTT23-1","entrezGeneId":100189490},{"hugoGeneSymbol":"TRN-GTT3-1","entrezGeneId":100189323},{"hugoGeneSymbol":"TRN-GTT3-2","entrezGeneId":100189127},{"hugoGeneSymbol":"TRN-GTT4-1","entrezGeneId":791226},{"hugoGeneSymbol":"TRN-GTT5-1","entrezGeneId":101822346},{"hugoGeneSymbol":"TRN-GTT6-1","entrezGeneId":791227},{"hugoGeneSymbol":"TRN-GTT7-1","entrezGeneId":100189005},{"hugoGeneSymbol":"TRN-GTT8-1","entrezGeneId":100189059},{"hugoGeneSymbol":"TRN-GTT9-1","entrezGeneId":100189304},{"hugoGeneSymbol":"TRN-GTT9-2","entrezGeneId":100189193},{"hugoGeneSymbol":"TRNAD-GUC","entrezGeneId":107987504},{"hugoGeneSymbol":"TRNAF-GAA","entrezGeneId":107987522},{"hugoGeneSymbol":"TRNAG1","entrezGeneId":7195},{"hugoGeneSymbol":"TRNAK-UUU","entrezGeneId":107985351},{"hugoGeneSymbol":"TRNAL-AAG","entrezGeneId":107984907},{"hugoGeneSymbol":"TRNAL47P","entrezGeneId":7209},{"hugoGeneSymbol":"TRNAU1AP","entrezGeneId":54952},{"hugoGeneSymbol":"TRNP1","entrezGeneId":388610},{"hugoGeneSymbol":"TRNT1","entrezGeneId":51095},{"hugoGeneSymbol":"TRO","entrezGeneId":7216},{"hugoGeneSymbol":"TROAP","entrezGeneId":10024},{"hugoGeneSymbol":"TROVE2","entrezGeneId":6738},{"hugoGeneSymbol":"TRP-AGG1-1","entrezGeneId":100189020},{"hugoGeneSymbol":"TRP-AGG2-1","entrezGeneId":100189019},{"hugoGeneSymbol":"TRP-AGG2-2","entrezGeneId":100189223},{"hugoGeneSymbol":"TRP-AGG2-3","entrezGeneId":100189276},{"hugoGeneSymbol":"TRP-AGG2-4","entrezGeneId":100189072},{"hugoGeneSymbol":"TRP-AGG2-5","entrezGeneId":7217},{"hugoGeneSymbol":"TRP-AGG2-6","entrezGeneId":7218},{"hugoGeneSymbol":"TRP-AGG2-7","entrezGeneId":100189136},{"hugoGeneSymbol":"TRP-AGG2-8","entrezGeneId":100189296},{"hugoGeneSymbol":"TRP-AGG3-1","entrezGeneId":100189361},{"hugoGeneSymbol":"TRP-AGG4-1","entrezGeneId":100189530},{"hugoGeneSymbol":"TRP-AGG5-1","entrezGeneId":100189482},{"hugoGeneSymbol":"TRP-AGG6-1","entrezGeneId":100189476},{"hugoGeneSymbol":"TRP-CGG1-1","entrezGeneId":100189211},{"hugoGeneSymbol":"TRP-CGG1-2","entrezGeneId":100189221},{"hugoGeneSymbol":"TRP-CGG1-3","entrezGeneId":100189124},{"hugoGeneSymbol":"TRP-CGG2-1","entrezGeneId":100189172},{"hugoGeneSymbol":"TRP-GGG1-1","entrezGeneId":100189455},{"hugoGeneSymbol":"TRP-TGG1-1","entrezGeneId":100189286},{"hugoGeneSymbol":"TRP-TGG2-1","entrezGeneId":100189224},{"hugoGeneSymbol":"TRP-TGG3-1","entrezGeneId":7219},{"hugoGeneSymbol":"TRP-TGG3-2","entrezGeneId":100189088},{"hugoGeneSymbol":"TRP-TGG3-3","entrezGeneId":100189335},{"hugoGeneSymbol":"TRP-TGG3-4","entrezGeneId":100189388},{"hugoGeneSymbol":"TRP-TGG3-5","entrezGeneId":100189281},{"hugoGeneSymbol":"TRP-TGG4-1","entrezGeneId":100189483},{"hugoGeneSymbol":"TRP-TGG5-1","entrezGeneId":100189515},{"hugoGeneSymbol":"TRPA1","entrezGeneId":8989},{"hugoGeneSymbol":"TRPC1","entrezGeneId":7220},{"hugoGeneSymbol":"TRPC2","entrezGeneId":7221},{"hugoGeneSymbol":"TRPC3","entrezGeneId":7222},{"hugoGeneSymbol":"TRPC4","entrezGeneId":7223},{"hugoGeneSymbol":"TRPC4AP","entrezGeneId":26133},{"hugoGeneSymbol":"TRPC5","entrezGeneId":7224},{"hugoGeneSymbol":"TRPC5OS","entrezGeneId":100329135},{"hugoGeneSymbol":"TRPC6","entrezGeneId":7225},{"hugoGeneSymbol":"TRPC6P","entrezGeneId":644218},{"hugoGeneSymbol":"TRPC7","entrezGeneId":57113},{"hugoGeneSymbol":"TRPC7-AS1","entrezGeneId":100874024},{"hugoGeneSymbol":"TRPC7-AS2","entrezGeneId":106478968},{"hugoGeneSymbol":"TRPM1","entrezGeneId":4308},{"hugoGeneSymbol":"TRPM2","entrezGeneId":7226},{"hugoGeneSymbol":"TRPM2-AS","entrezGeneId":101928607},{"hugoGeneSymbol":"TRPM3","entrezGeneId":80036},{"hugoGeneSymbol":"TRPM4","entrezGeneId":54795},{"hugoGeneSymbol":"TRPM5","entrezGeneId":29850},{"hugoGeneSymbol":"TRPM6","entrezGeneId":140803},{"hugoGeneSymbol":"TRPM7","entrezGeneId":54822},{"hugoGeneSymbol":"TRPM8","entrezGeneId":79054},{"hugoGeneSymbol":"TRPS1","entrezGeneId":7227},{"hugoGeneSymbol":"TRPT1","entrezGeneId":83707},{"hugoGeneSymbol":"TRPV1","entrezGeneId":7442},{"hugoGeneSymbol":"TRPV2","entrezGeneId":51393},{"hugoGeneSymbol":"TRPV3","entrezGeneId":162514},{"hugoGeneSymbol":"TRPV4","entrezGeneId":59341},{"hugoGeneSymbol":"TRPV5","entrezGeneId":56302},{"hugoGeneSymbol":"TRPV6","entrezGeneId":55503},{"hugoGeneSymbol":"TRQ-CTG1-1","entrezGeneId":100189287},{"hugoGeneSymbol":"TRQ-CTG1-2","entrezGeneId":100189189},{"hugoGeneSymbol":"TRQ-CTG1-3","entrezGeneId":100189121},{"hugoGeneSymbol":"TRQ-CTG1-4","entrezGeneId":100189317},{"hugoGeneSymbol":"TRQ-CTG1-5","entrezGeneId":7228},{"hugoGeneSymbol":"TRQ-CTG10-1","entrezGeneId":100189322},{"hugoGeneSymbol":"TRQ-CTG11-1","entrezGeneId":100189452},{"hugoGeneSymbol":"TRQ-CTG12-1","entrezGeneId":100189389},{"hugoGeneSymbol":"TRQ-CTG13-1","entrezGeneId":100189538},{"hugoGeneSymbol":"TRQ-CTG14-1","entrezGeneId":100189523},{"hugoGeneSymbol":"TRQ-CTG15-1","entrezGeneId":100189016},{"hugoGeneSymbol":"TRQ-CTG16-1","entrezGeneId":100189503},{"hugoGeneSymbol":"TRQ-CTG17-1","entrezGeneId":100189302},{"hugoGeneSymbol":"TRQ-CTG18-1","entrezGeneId":100189351},{"hugoGeneSymbol":"TRQ-CTG2-1","entrezGeneId":100189268},{"hugoGeneSymbol":"TRQ-CTG3-1","entrezGeneId":100189386},{"hugoGeneSymbol":"TRQ-CTG3-2","entrezGeneId":100189140},{"hugoGeneSymbol":"TRQ-CTG4-1","entrezGeneId":100189056},{"hugoGeneSymbol":"TRQ-CTG4-2","entrezGeneId":100189261},{"hugoGeneSymbol":"TRQ-CTG5-1","entrezGeneId":100189329},{"hugoGeneSymbol":"TRQ-CTG6-1","entrezGeneId":100189214},{"hugoGeneSymbol":"TRQ-CTG7-1","entrezGeneId":100188998},{"hugoGeneSymbol":"TRQ-CTG8-1","entrezGeneId":100189217},{"hugoGeneSymbol":"TRQ-CTG8-2","entrezGeneId":100189154},{"hugoGeneSymbol":"TRQ-CTG9-1","entrezGeneId":100189531},{"hugoGeneSymbol":"TRQ-TTG1-1","entrezGeneId":7229},{"hugoGeneSymbol":"TRQ-TTG10-1","entrezGeneId":100189010},{"hugoGeneSymbol":"TRQ-TTG2-1","entrezGeneId":100189138},{"hugoGeneSymbol":"TRQ-TTG3-1","entrezGeneId":100189321},{"hugoGeneSymbol":"TRQ-TTG3-2","entrezGeneId":100189185},{"hugoGeneSymbol":"TRQ-TTG3-3","entrezGeneId":100189074},{"hugoGeneSymbol":"TRQ-TTG4-1","entrezGeneId":100189422},{"hugoGeneSymbol":"TRQ-TTG5-1","entrezGeneId":100189473},{"hugoGeneSymbol":"TRQ-TTG6-1","entrezGeneId":100189026},{"hugoGeneSymbol":"TRQ-TTG7-1","entrezGeneId":100189444},{"hugoGeneSymbol":"TRQ-TTG8-1","entrezGeneId":100189505},{"hugoGeneSymbol":"TRQ-TTG9-1","entrezGeneId":100189509},{"hugoGeneSymbol":"TRR","entrezGeneId":7870},{"hugoGeneSymbol":"TRR-ACG1-1","entrezGeneId":100189396},{"hugoGeneSymbol":"TRR-ACG1-2","entrezGeneId":7231},{"hugoGeneSymbol":"TRR-ACG1-3","entrezGeneId":100189243},{"hugoGeneSymbol":"TRR-ACG2-1","entrezGeneId":100189103},{"hugoGeneSymbol":"TRR-ACG2-2","entrezGeneId":100189167},{"hugoGeneSymbol":"TRR-ACG2-3","entrezGeneId":100189099},{"hugoGeneSymbol":"TRR-ACG2-4","entrezGeneId":100189428},{"hugoGeneSymbol":"TRR-CCG1-1","entrezGeneId":100189365},{"hugoGeneSymbol":"TRR-CCG1-2","entrezGeneId":100189084},{"hugoGeneSymbol":"TRR-CCG1-3","entrezGeneId":100189173},{"hugoGeneSymbol":"TRR-CCG2-1","entrezGeneId":7233},{"hugoGeneSymbol":"TRR-CCT1-1","entrezGeneId":100189078},{"hugoGeneSymbol":"TRR-CCT2-1","entrezGeneId":100189181},{"hugoGeneSymbol":"TRR-CCT3-1","entrezGeneId":100189168},{"hugoGeneSymbol":"TRR-CCT4-1","entrezGeneId":100189406},{"hugoGeneSymbol":"TRR-CCT5-1","entrezGeneId":100189270},{"hugoGeneSymbol":"TRR-CCT6-2","entrezGeneId":100189449},{"hugoGeneSymbol":"TRR-CCT7-1","entrezGeneId":100189443},{"hugoGeneSymbol":"TRR-CCT8-1","entrezGeneId":100189502},{"hugoGeneSymbol":"TRR-CCT9-1","entrezGeneId":100189537},{"hugoGeneSymbol":"TRR-TCG1-1","entrezGeneId":100189264},{"hugoGeneSymbol":"TRR-TCG2-1","entrezGeneId":100189410},{"hugoGeneSymbol":"TRR-TCG3-1","entrezGeneId":100189371},{"hugoGeneSymbol":"TRR-TCG4-1","entrezGeneId":7232},{"hugoGeneSymbol":"TRR-TCG5-1","entrezGeneId":100189034},{"hugoGeneSymbol":"TRR-TCG6-1","entrezGeneId":100189025},{"hugoGeneSymbol":"TRR-TCT1-1","entrezGeneId":100189133},{"hugoGeneSymbol":"TRR-TCT2-1","entrezGeneId":7230},{"hugoGeneSymbol":"TRR-TCT3-1","entrezGeneId":100189109},{"hugoGeneSymbol":"TRR-TCT3-2","entrezGeneId":100189115},{"hugoGeneSymbol":"TRR-TCT4-1","entrezGeneId":100189166},{"hugoGeneSymbol":"TRR-TCT5-1","entrezGeneId":100189012},{"hugoGeneSymbol":"TRRAP","entrezGeneId":8295},{"hugoGeneSymbol":"TRS-ACT1-1","entrezGeneId":100189526},{"hugoGeneSymbol":"TRS-AGA1-1","entrezGeneId":100189352},{"hugoGeneSymbol":"TRS-AGA2-1","entrezGeneId":100189382},{"hugoGeneSymbol":"TRS-AGA2-2","entrezGeneId":100189077},{"hugoGeneSymbol":"TRS-AGA2-3","entrezGeneId":23437},{"hugoGeneSymbol":"TRS-AGA2-4","entrezGeneId":100189247},{"hugoGeneSymbol":"TRS-AGA2-5","entrezGeneId":100189248},{"hugoGeneSymbol":"TRS-AGA2-6","entrezGeneId":100189184},{"hugoGeneSymbol":"TRS-AGA3-1","entrezGeneId":790951},{"hugoGeneSymbol":"TRS-AGA4-1","entrezGeneId":100189070},{"hugoGeneSymbol":"TRS-AGA5-1","entrezGeneId":100189432},{"hugoGeneSymbol":"TRS-AGA6-1","entrezGeneId":100189420},{"hugoGeneSymbol":"TRS-AGA7-1","entrezGeneId":100189487},{"hugoGeneSymbol":"TRS-CGA1-1","entrezGeneId":100189037},{"hugoGeneSymbol":"TRS-CGA2-1","entrezGeneId":100189041},{"hugoGeneSymbol":"TRS-CGA3-1","entrezGeneId":100189205},{"hugoGeneSymbol":"TRS-CGA4-1","entrezGeneId":100189152},{"hugoGeneSymbol":"TRS-GCT1-1","entrezGeneId":100189157},{"hugoGeneSymbol":"TRS-GCT2-1","entrezGeneId":100189002},{"hugoGeneSymbol":"TRS-GCT3-1","entrezGeneId":100189285},{"hugoGeneSymbol":"TRS-GCT4-1","entrezGeneId":100189225},{"hugoGeneSymbol":"TRS-GCT4-2","entrezGeneId":100189229},{"hugoGeneSymbol":"TRS-GCT4-3","entrezGeneId":100189331},{"hugoGeneSymbol":"TRS-GCT5-1","entrezGeneId":100189159},{"hugoGeneSymbol":"TRS-GCT6-1","entrezGeneId":100189218},{"hugoGeneSymbol":"TRS-TGA1-1","entrezGeneId":100189279},{"hugoGeneSymbol":"TRS-TGA2-1","entrezGeneId":94017},{"hugoGeneSymbol":"TRS-TGA3-1","entrezGeneId":100189430},{"hugoGeneSymbol":"TRS-TGA4-1","entrezGeneId":23540},{"hugoGeneSymbol":"TRSUP-CTA1-1","entrezGeneId":100189426},{"hugoGeneSymbol":"TRSUP-CTA2-1","entrezGeneId":100189442},{"hugoGeneSymbol":"TRSUP-CTA3-1","entrezGeneId":100189470},{"hugoGeneSymbol":"TRSUP-TTA1-1","entrezGeneId":100189080},{"hugoGeneSymbol":"TRSUP-TTA2-1","entrezGeneId":100189330},{"hugoGeneSymbol":"TRSUP-TTA3-1","entrezGeneId":100189453},{"hugoGeneSymbol":"TRT-AGT1-1","entrezGeneId":100189187},{"hugoGeneSymbol":"TRT-AGT1-2","entrezGeneId":100189222},{"hugoGeneSymbol":"TRT-AGT1-3","entrezGeneId":100189006},{"hugoGeneSymbol":"TRT-AGT2-1","entrezGeneId":100189319},{"hugoGeneSymbol":"TRT-AGT2-2","entrezGeneId":100189340},{"hugoGeneSymbol":"TRT-AGT3-1","entrezGeneId":100189433},{"hugoGeneSymbol":"TRT-AGT4-1","entrezGeneId":100189374},{"hugoGeneSymbol":"TRT-AGT5-1","entrezGeneId":100189438},{"hugoGeneSymbol":"TRT-AGT6-1","entrezGeneId":100189143},{"hugoGeneSymbol":"TRT-AGT7-1","entrezGeneId":7238},{"hugoGeneSymbol":"TRT-CGT1-1","entrezGeneId":100189035},{"hugoGeneSymbol":"TRT-CGT2-1","entrezGeneId":100189086},{"hugoGeneSymbol":"TRT-CGT3-1","entrezGeneId":100189360},{"hugoGeneSymbol":"TRT-CGT4-1","entrezGeneId":100189245},{"hugoGeneSymbol":"TRT-CGT5-1","entrezGeneId":100189300},{"hugoGeneSymbol":"TRT-CGT6-1","entrezGeneId":100189258},{"hugoGeneSymbol":"TRT-TGT1-1","entrezGeneId":100189344},{"hugoGeneSymbol":"TRT-TGT2-1","entrezGeneId":100189378},{"hugoGeneSymbol":"TRT-TGT3-1","entrezGeneId":7237},{"hugoGeneSymbol":"TRT-TGT4-1","entrezGeneId":100189419},{"hugoGeneSymbol":"TRT-TGT5-1","entrezGeneId":100189263},{"hugoGeneSymbol":"TRT-TGT6-1","entrezGeneId":7236},{"hugoGeneSymbol":"TRU-TCA1-1","entrezGeneId":7234},{"hugoGeneSymbol":"TRU-TCA2-1","entrezGeneId":7235},{"hugoGeneSymbol":"TRU-TCA3-1","entrezGeneId":100188989},{"hugoGeneSymbol":"TRUB1","entrezGeneId":142940},{"hugoGeneSymbol":"TRUB2","entrezGeneId":26995},{"hugoGeneSymbol":"TRUND-NNN1-1","entrezGeneId":103482529},{"hugoGeneSymbol":"TRUND-NNN10-1","entrezGeneId":103482532},{"hugoGeneSymbol":"TRUND-NNN2-1","entrezGeneId":103482523},{"hugoGeneSymbol":"TRUND-NNN3-1","entrezGeneId":103482527},{"hugoGeneSymbol":"TRUND-NNN4-1","entrezGeneId":103482530},{"hugoGeneSymbol":"TRUND-NNN5-1","entrezGeneId":103482524},{"hugoGeneSymbol":"TRUND-NNN6-1","entrezGeneId":103482525},{"hugoGeneSymbol":"TRUND-NNN7-1","entrezGeneId":103482531},{"hugoGeneSymbol":"TRUND-NNN8-1","entrezGeneId":103482528},{"hugoGeneSymbol":"TRUND-NNN9-1","entrezGeneId":103482526},{"hugoGeneSymbol":"TRV-AAC1-1","entrezGeneId":100189318},{"hugoGeneSymbol":"TRV-AAC1-2","entrezGeneId":100188990},{"hugoGeneSymbol":"TRV-AAC1-3","entrezGeneId":7241},{"hugoGeneSymbol":"TRV-AAC1-4","entrezGeneId":7239},{"hugoGeneSymbol":"TRV-AAC1-5","entrezGeneId":791230},{"hugoGeneSymbol":"TRV-AAC2-1","entrezGeneId":100188992},{"hugoGeneSymbol":"TRV-AAC3-1","entrezGeneId":791231},{"hugoGeneSymbol":"TRV-AAC4-1","entrezGeneId":100189161},{"hugoGeneSymbol":"TRV-AAC5-1","entrezGeneId":100189014},{"hugoGeneSymbol":"TRV-AAC6-1","entrezGeneId":100189178},{"hugoGeneSymbol":"TRV-AAC7-1","entrezGeneId":100189404},{"hugoGeneSymbol":"TRV-CAC1-1","entrezGeneId":100189373},{"hugoGeneSymbol":"TRV-CAC1-2","entrezGeneId":7240},{"hugoGeneSymbol":"TRV-CAC1-3","entrezGeneId":791232},{"hugoGeneSymbol":"TRV-CAC1-4","entrezGeneId":100189541},{"hugoGeneSymbol":"TRV-CAC1-5","entrezGeneId":100049614},{"hugoGeneSymbol":"TRV-CAC1-6","entrezGeneId":100189227},{"hugoGeneSymbol":"TRV-CAC10-1","entrezGeneId":100873876},{"hugoGeneSymbol":"TRV-CAC11-1","entrezGeneId":103456510},{"hugoGeneSymbol":"TRV-CAC11-2","entrezGeneId":100189479},{"hugoGeneSymbol":"TRV-CAC12-1","entrezGeneId":100189073},{"hugoGeneSymbol":"TRV-CAC13-1","entrezGeneId":100189500},{"hugoGeneSymbol":"TRV-CAC14-1","entrezGeneId":100189477},{"hugoGeneSymbol":"TRV-CAC2-1","entrezGeneId":100189363},{"hugoGeneSymbol":"TRV-CAC3-1","entrezGeneId":100189416},{"hugoGeneSymbol":"TRV-CAC4-1","entrezGeneId":100189326},{"hugoGeneSymbol":"TRV-CAC5-1","entrezGeneId":100189228},{"hugoGeneSymbol":"TRV-CAC6-1","entrezGeneId":100189368},{"hugoGeneSymbol":"TRV-CAC7-1","entrezGeneId":100189101},{"hugoGeneSymbol":"TRV-CAC8-1","entrezGeneId":100189142},{"hugoGeneSymbol":"TRV-CAC9-1","entrezGeneId":100189196},{"hugoGeneSymbol":"TRV-TAC1-1","entrezGeneId":100188993},{"hugoGeneSymbol":"TRV-TAC1-2","entrezGeneId":100189191},{"hugoGeneSymbol":"TRV-TAC2-1","entrezGeneId":100189283},{"hugoGeneSymbol":"TRV-TAC3-1","entrezGeneId":100189342},{"hugoGeneSymbol":"TRV-TAC4-1","entrezGeneId":100189408},{"hugoGeneSymbol":"TRW-CCA1-1","entrezGeneId":100189123},{"hugoGeneSymbol":"TRW-CCA2-1","entrezGeneId":100189203},{"hugoGeneSymbol":"TRW-CCA3-1","entrezGeneId":100189436},{"hugoGeneSymbol":"TRW-CCA3-2","entrezGeneId":100189048},{"hugoGeneSymbol":"TRW-CCA3-3","entrezGeneId":100189112},{"hugoGeneSymbol":"TRW-CCA4-1","entrezGeneId":100189171},{"hugoGeneSymbol":"TRW-CCA5-1","entrezGeneId":100189190},{"hugoGeneSymbol":"TRW-CCA6-1","entrezGeneId":100189309},{"hugoGeneSymbol":"TRW-CCA7-1","entrezGeneId":7246},{"hugoGeneSymbol":"TRX-CAT1-1","entrezGeneId":100189015},{"hugoGeneSymbol":"TRX-CAT1-2","entrezGeneId":7210},{"hugoGeneSymbol":"TRX-CAT1-3","entrezGeneId":100189094},{"hugoGeneSymbol":"TRX-CAT1-4","entrezGeneId":100189040},{"hugoGeneSymbol":"TRX-CAT1-5","entrezGeneId":100189345},{"hugoGeneSymbol":"TRX-CAT1-6","entrezGeneId":100189297},{"hugoGeneSymbol":"TRX-CAT1-7","entrezGeneId":100189315},{"hugoGeneSymbol":"TRX-CAT1-8","entrezGeneId":100189255},{"hugoGeneSymbol":"TRX-CAT2-1","entrezGeneId":7212},{"hugoGeneSymbol":"TRX-CAT3-1","entrezGeneId":100189186},{"hugoGeneSymbol":"TRY-ATA1-1","entrezGeneId":100189253},{"hugoGeneSymbol":"TRY-GTA1-1","entrezGeneId":100189272},{"hugoGeneSymbol":"TRY-GTA10-1","entrezGeneId":100189278},{"hugoGeneSymbol":"TRY-GTA11-1","entrezGeneId":100189507},{"hugoGeneSymbol":"TRY-GTA12-1","entrezGeneId":100189496},{"hugoGeneSymbol":"TRY-GTA2-1","entrezGeneId":100189022},{"hugoGeneSymbol":"TRY-GTA3-1","entrezGeneId":100189162},{"hugoGeneSymbol":"TRY-GTA4-1","entrezGeneId":100189405},{"hugoGeneSymbol":"TRY-GTA5-1","entrezGeneId":100189437},{"hugoGeneSymbol":"TRY-GTA5-2","entrezGeneId":100189102},{"hugoGeneSymbol":"TRY-GTA5-3","entrezGeneId":100189424},{"hugoGeneSymbol":"TRY-GTA5-4","entrezGeneId":100009602},{"hugoGeneSymbol":"TRY-GTA5-5","entrezGeneId":100189001},{"hugoGeneSymbol":"TRY-GTA6-1","entrezGeneId":100189219},{"hugoGeneSymbol":"TRY-GTA7-1","entrezGeneId":100009601},{"hugoGeneSymbol":"TRY-GTA8-1","entrezGeneId":100189337},{"hugoGeneSymbol":"TRY-GTA9-1","entrezGeneId":100189057},{"hugoGeneSymbol":"TRY2P","entrezGeneId":207147},{"hugoGeneSymbol":"TRY7","entrezGeneId":207148},{"hugoGeneSymbol":"TS13","entrezGeneId":7896},{"hugoGeneSymbol":"TS546","entrezGeneId":7963},{"hugoGeneSymbol":"TSACC","entrezGeneId":128229},{"hugoGeneSymbol":"TSC1","entrezGeneId":7248},{"hugoGeneSymbol":"TSC2","entrezGeneId":7249},{"hugoGeneSymbol":"TSC22D1","entrezGeneId":8848},{"hugoGeneSymbol":"TSC22D1-AS1","entrezGeneId":641467},{"hugoGeneSymbol":"TSC22D2","entrezGeneId":9819},{"hugoGeneSymbol":"TSC22D3","entrezGeneId":1831},{"hugoGeneSymbol":"TSC22D4","entrezGeneId":81628},{"hugoGeneSymbol":"TSE2","entrezGeneId":57324},{"hugoGeneSymbol":"TSEN15","entrezGeneId":116461},{"hugoGeneSymbol":"TSEN15P1","entrezGeneId":100288179},{"hugoGeneSymbol":"TSEN15P2","entrezGeneId":106480781},{"hugoGeneSymbol":"TSEN15P3","entrezGeneId":105375192},{"hugoGeneSymbol":"TSEN2","entrezGeneId":80746},{"hugoGeneSymbol":"TSEN2P1","entrezGeneId":391718},{"hugoGeneSymbol":"TSEN34","entrezGeneId":79042},{"hugoGeneSymbol":"TSEN54","entrezGeneId":283989},{"hugoGeneSymbol":"TSFM","entrezGeneId":10102},{"hugoGeneSymbol":"TSG1","entrezGeneId":643432},{"hugoGeneSymbol":"TSG101","entrezGeneId":7251},{"hugoGeneSymbol":"TSG11","entrezGeneId":50970},{"hugoGeneSymbol":"TSGA10","entrezGeneId":80705},{"hugoGeneSymbol":"TSGA10IP","entrezGeneId":254187},{"hugoGeneSymbol":"TSGA13","entrezGeneId":114960},{"hugoGeneSymbol":"TSHB","entrezGeneId":7252},{"hugoGeneSymbol":"TSHQTL1","entrezGeneId":100190789},{"hugoGeneSymbol":"TSHR","entrezGeneId":7253},{"hugoGeneSymbol":"TSHRL1","entrezGeneId":7254},{"hugoGeneSymbol":"TSHRL2","entrezGeneId":7255},{"hugoGeneSymbol":"TSHRL3","entrezGeneId":7256},{"hugoGeneSymbol":"TSHZ1","entrezGeneId":10194},{"hugoGeneSymbol":"TSHZ2","entrezGeneId":128553},{"hugoGeneSymbol":"TSHZ3","entrezGeneId":57616},{"hugoGeneSymbol":"TSIX","entrezGeneId":9383},{"hugoGeneSymbol":"TSKS","entrezGeneId":60385},{"hugoGeneSymbol":"TSKU","entrezGeneId":25987},{"hugoGeneSymbol":"TSL","entrezGeneId":790953},{"hugoGeneSymbol":"TSLP","entrezGeneId":85480},{"hugoGeneSymbol":"TSN","entrezGeneId":7247},{"hugoGeneSymbol":"TSNARE1","entrezGeneId":203062},{"hugoGeneSymbol":"TSNAX","entrezGeneId":7257},{"hugoGeneSymbol":"TSNAX-DISC1","entrezGeneId":100303453},{"hugoGeneSymbol":"TSNAXIP1","entrezGeneId":55815},{"hugoGeneSymbol":"TSPAN1","entrezGeneId":10103},{"hugoGeneSymbol":"TSPAN10","entrezGeneId":83882},{"hugoGeneSymbol":"TSPAN11","entrezGeneId":441631},{"hugoGeneSymbol":"TSPAN12","entrezGeneId":23554},{"hugoGeneSymbol":"TSPAN13","entrezGeneId":27075},{"hugoGeneSymbol":"TSPAN14","entrezGeneId":81619},{"hugoGeneSymbol":"TSPAN15","entrezGeneId":23555},{"hugoGeneSymbol":"TSPAN16","entrezGeneId":26526},{"hugoGeneSymbol":"TSPAN17","entrezGeneId":26262},{"hugoGeneSymbol":"TSPAN18","entrezGeneId":90139},{"hugoGeneSymbol":"TSPAN19","entrezGeneId":144448},{"hugoGeneSymbol":"TSPAN2","entrezGeneId":10100},{"hugoGeneSymbol":"TSPAN3","entrezGeneId":10099},{"hugoGeneSymbol":"TSPAN31","entrezGeneId":6302},{"hugoGeneSymbol":"TSPAN32","entrezGeneId":10077},{"hugoGeneSymbol":"TSPAN33","entrezGeneId":340348},{"hugoGeneSymbol":"TSPAN4","entrezGeneId":7106},{"hugoGeneSymbol":"TSPAN5","entrezGeneId":10098},{"hugoGeneSymbol":"TSPAN6","entrezGeneId":7105},{"hugoGeneSymbol":"TSPAN7","entrezGeneId":7102},{"hugoGeneSymbol":"TSPAN8","entrezGeneId":7103},{"hugoGeneSymbol":"TSPAN9","entrezGeneId":10867},{"hugoGeneSymbol":"TSPAN9-IT1","entrezGeneId":100874356},{"hugoGeneSymbol":"TSPEAR","entrezGeneId":54084},{"hugoGeneSymbol":"TSPEAR-AS1","entrezGeneId":54082},{"hugoGeneSymbol":"TSPEAR-AS2","entrezGeneId":114043},{"hugoGeneSymbol":"TSPO","entrezGeneId":706},{"hugoGeneSymbol":"TSPO2","entrezGeneId":222642},{"hugoGeneSymbol":"TSPOAP1","entrezGeneId":9256},{"hugoGeneSymbol":"TSPOAP1-AS1","entrezGeneId":100506779},{"hugoGeneSymbol":"TSPY1","entrezGeneId":7258},{"hugoGeneSymbol":"TSPY10","entrezGeneId":100289087},{"hugoGeneSymbol":"TSPY11P","entrezGeneId":347584},{"hugoGeneSymbol":"TSPY12P","entrezGeneId":377997},{"hugoGeneSymbol":"TSPY13P","entrezGeneId":378001},{"hugoGeneSymbol":"TSPY14P","entrezGeneId":378013},{"hugoGeneSymbol":"TSPY15P","entrezGeneId":642631},{"hugoGeneSymbol":"TSPY16P","entrezGeneId":727969},{"hugoGeneSymbol":"TSPY17P","entrezGeneId":100132124},{"hugoGeneSymbol":"TSPY18P","entrezGeneId":642796},{"hugoGeneSymbol":"TSPY19P","entrezGeneId":100132504},{"hugoGeneSymbol":"TSPY2","entrezGeneId":64591},{"hugoGeneSymbol":"TSPY20P","entrezGeneId":100130848},{"hugoGeneSymbol":"TSPY21P","entrezGeneId":100287055},{"hugoGeneSymbol":"TSPY22P","entrezGeneId":100286996},{"hugoGeneSymbol":"TSPY23P","entrezGeneId":100286964},{"hugoGeneSymbol":"TSPY24P","entrezGeneId":100874287},{"hugoGeneSymbol":"TSPY25P","entrezGeneId":100874288},{"hugoGeneSymbol":"TSPY26P","entrezGeneId":128854},{"hugoGeneSymbol":"TSPY3","entrezGeneId":728137},{"hugoGeneSymbol":"TSPY4","entrezGeneId":728395},{"hugoGeneSymbol":"TSPY5P","entrezGeneId":379027},{"hugoGeneSymbol":"TSPY6P","entrezGeneId":653174},{"hugoGeneSymbol":"TSPY7P","entrezGeneId":653288},{"hugoGeneSymbol":"TSPY8","entrezGeneId":728403},{"hugoGeneSymbol":"TSPY9P","entrezGeneId":728132},{"hugoGeneSymbol":"TSPYL1","entrezGeneId":7259},{"hugoGeneSymbol":"TSPYL2","entrezGeneId":64061},{"hugoGeneSymbol":"TSPYL4","entrezGeneId":23270},{"hugoGeneSymbol":"TSPYL5","entrezGeneId":85453},{"hugoGeneSymbol":"TSPYL6","entrezGeneId":388951},{"hugoGeneSymbol":"TSR1","entrezGeneId":55720},{"hugoGeneSymbol":"TSR2","entrezGeneId":90121},{"hugoGeneSymbol":"TSR3","entrezGeneId":115939},{"hugoGeneSymbol":"TSSC2","entrezGeneId":650368},{"hugoGeneSymbol":"TSSC4","entrezGeneId":10078},{"hugoGeneSymbol":"TSSK1A","entrezGeneId":23752},{"hugoGeneSymbol":"TSSK1B","entrezGeneId":83942},{"hugoGeneSymbol":"TSSK2","entrezGeneId":23617},{"hugoGeneSymbol":"TSSK3","entrezGeneId":81629},{"hugoGeneSymbol":"TSSK4","entrezGeneId":283629},{"hugoGeneSymbol":"TSSK5P","entrezGeneId":648630},{"hugoGeneSymbol":"TSSK6","entrezGeneId":83983},{"hugoGeneSymbol":"TST","entrezGeneId":7263},{"hugoGeneSymbol":"TST1","entrezGeneId":100526790},{"hugoGeneSymbol":"TST2","entrezGeneId":100526823},{"hugoGeneSymbol":"TSTA3","entrezGeneId":7264},{"hugoGeneSymbol":"TSTD1","entrezGeneId":100131187},{"hugoGeneSymbol":"TSTD2","entrezGeneId":158427},{"hugoGeneSymbol":"TSTD3","entrezGeneId":100130890},{"hugoGeneSymbol":"TTBK1","entrezGeneId":84630},{"hugoGeneSymbol":"TTBK2","entrezGeneId":146057},{"hugoGeneSymbol":"TTC1","entrezGeneId":7265},{"hugoGeneSymbol":"TTC12","entrezGeneId":54970},{"hugoGeneSymbol":"TTC13","entrezGeneId":79573},{"hugoGeneSymbol":"TTC14","entrezGeneId":151613},{"hugoGeneSymbol":"TTC16","entrezGeneId":158248},{"hugoGeneSymbol":"TTC17","entrezGeneId":55761},{"hugoGeneSymbol":"TTC19","entrezGeneId":54902},{"hugoGeneSymbol":"TTC21A","entrezGeneId":199223},{"hugoGeneSymbol":"TTC21B","entrezGeneId":79809},{"hugoGeneSymbol":"TTC21B-AS1","entrezGeneId":100506134},{"hugoGeneSymbol":"TTC22","entrezGeneId":55001},{"hugoGeneSymbol":"TTC23","entrezGeneId":64927},{"hugoGeneSymbol":"TTC23L","entrezGeneId":153657},{"hugoGeneSymbol":"TTC24","entrezGeneId":164118},{"hugoGeneSymbol":"TTC25","entrezGeneId":83538},{"hugoGeneSymbol":"TTC26","entrezGeneId":79989},{"hugoGeneSymbol":"TTC27","entrezGeneId":55622},{"hugoGeneSymbol":"TTC28","entrezGeneId":23331},{"hugoGeneSymbol":"TTC28-AS1","entrezGeneId":284900},{"hugoGeneSymbol":"TTC29","entrezGeneId":83894},{"hugoGeneSymbol":"TTC3","entrezGeneId":7267},{"hugoGeneSymbol":"TTC3-AS1","entrezGeneId":100874006},{"hugoGeneSymbol":"TTC30A","entrezGeneId":92104},{"hugoGeneSymbol":"TTC30B","entrezGeneId":150737},{"hugoGeneSymbol":"TTC31","entrezGeneId":64427},{"hugoGeneSymbol":"TTC32","entrezGeneId":130502},{"hugoGeneSymbol":"TTC33","entrezGeneId":23548},{"hugoGeneSymbol":"TTC34","entrezGeneId":100287898},{"hugoGeneSymbol":"TTC36","entrezGeneId":143941},{"hugoGeneSymbol":"TTC37","entrezGeneId":9652},{"hugoGeneSymbol":"TTC38","entrezGeneId":55020},{"hugoGeneSymbol":"TTC39A","entrezGeneId":22996},{"hugoGeneSymbol":"TTC39A-AS1","entrezGeneId":102724097},{"hugoGeneSymbol":"TTC39B","entrezGeneId":158219},{"hugoGeneSymbol":"TTC39C","entrezGeneId":125488},{"hugoGeneSymbol":"TTC39C-AS1","entrezGeneId":102724246},{"hugoGeneSymbol":"TTC39CP1","entrezGeneId":100288825},{"hugoGeneSymbol":"TTC39DP","entrezGeneId":646640},{"hugoGeneSymbol":"TTC3P1","entrezGeneId":286495},{"hugoGeneSymbol":"TTC4","entrezGeneId":7268},{"hugoGeneSymbol":"TTC41P","entrezGeneId":253724},{"hugoGeneSymbol":"TTC4P1","entrezGeneId":222052},{"hugoGeneSymbol":"TTC5","entrezGeneId":91875},{"hugoGeneSymbol":"TTC6","entrezGeneId":319089},{"hugoGeneSymbol":"TTC7A","entrezGeneId":57217},{"hugoGeneSymbol":"TTC7B","entrezGeneId":145567},{"hugoGeneSymbol":"TTC8","entrezGeneId":123016},{"hugoGeneSymbol":"TTC9","entrezGeneId":23508},{"hugoGeneSymbol":"TTC9B","entrezGeneId":148014},{"hugoGeneSymbol":"TTC9C","entrezGeneId":283237},{"hugoGeneSymbol":"TTF1","entrezGeneId":7270},{"hugoGeneSymbol":"TTF2","entrezGeneId":8458},{"hugoGeneSymbol":"TTI1","entrezGeneId":9675},{"hugoGeneSymbol":"TTI2","entrezGeneId":80185},{"hugoGeneSymbol":"TTK","entrezGeneId":7272},{"hugoGeneSymbol":"TTL","entrezGeneId":150465},{"hugoGeneSymbol":"TTLL1","entrezGeneId":25809},{"hugoGeneSymbol":"TTLL10","entrezGeneId":254173},{"hugoGeneSymbol":"TTLL10-AS1","entrezGeneId":100506376},{"hugoGeneSymbol":"TTLL11","entrezGeneId":158135},{"hugoGeneSymbol":"TTLL11-IT1","entrezGeneId":105376261},{"hugoGeneSymbol":"TTLL12","entrezGeneId":23170},{"hugoGeneSymbol":"TTLL13P","entrezGeneId":440307},{"hugoGeneSymbol":"TTLL2","entrezGeneId":83887},{"hugoGeneSymbol":"TTLL3","entrezGeneId":26140},{"hugoGeneSymbol":"TTLL4","entrezGeneId":9654},{"hugoGeneSymbol":"TTLL5","entrezGeneId":23093},{"hugoGeneSymbol":"TTLL6","entrezGeneId":284076},{"hugoGeneSymbol":"TTLL7","entrezGeneId":79739},{"hugoGeneSymbol":"TTLL7-IT1","entrezGeneId":100874314},{"hugoGeneSymbol":"TTLL8","entrezGeneId":164714},{"hugoGeneSymbol":"TTLL9","entrezGeneId":164395},{"hugoGeneSymbol":"TTN","entrezGeneId":7273},{"hugoGeneSymbol":"TTN-AS1","entrezGeneId":100506866},{"hugoGeneSymbol":"TTPA","entrezGeneId":7274},{"hugoGeneSymbol":"TTPAL","entrezGeneId":79183},{"hugoGeneSymbol":"TTPP3","entrezGeneId":112272595},{"hugoGeneSymbol":"TTR","entrezGeneId":7276},{"hugoGeneSymbol":"TTTY1","entrezGeneId":50858},{"hugoGeneSymbol":"TTTY10","entrezGeneId":246119},{"hugoGeneSymbol":"TTTY11","entrezGeneId":83866},{"hugoGeneSymbol":"TTTY12","entrezGeneId":83867},{"hugoGeneSymbol":"TTTY13","entrezGeneId":83868},{"hugoGeneSymbol":"TTTY13B","entrezGeneId":100287735},{"hugoGeneSymbol":"TTTY13C","entrezGeneId":100287979},{"hugoGeneSymbol":"TTTY14","entrezGeneId":83869},{"hugoGeneSymbol":"TTTY15","entrezGeneId":64595},{"hugoGeneSymbol":"TTTY16","entrezGeneId":252948},{"hugoGeneSymbol":"TTTY17A","entrezGeneId":252949},{"hugoGeneSymbol":"TTTY17B","entrezGeneId":474151},{"hugoGeneSymbol":"TTTY17C","entrezGeneId":474152},{"hugoGeneSymbol":"TTTY18","entrezGeneId":252950},{"hugoGeneSymbol":"TTTY19","entrezGeneId":252952},{"hugoGeneSymbol":"TTTY1B","entrezGeneId":100101116},{"hugoGeneSymbol":"TTTY2","entrezGeneId":60439},{"hugoGeneSymbol":"TTTY20","entrezGeneId":252951},{"hugoGeneSymbol":"TTTY21","entrezGeneId":252953},{"hugoGeneSymbol":"TTTY21B","entrezGeneId":100101115},{"hugoGeneSymbol":"TTTY22","entrezGeneId":252954},{"hugoGeneSymbol":"TTTY23","entrezGeneId":252955},{"hugoGeneSymbol":"TTTY23B","entrezGeneId":100101121},{"hugoGeneSymbol":"TTTY24P","entrezGeneId":100287941},{"hugoGeneSymbol":"TTTY25P","entrezGeneId":100287026},{"hugoGeneSymbol":"TTTY26P","entrezGeneId":100287818},{"hugoGeneSymbol":"TTTY27P","entrezGeneId":100287874},{"hugoGeneSymbol":"TTTY28P","entrezGeneId":100287606},{"hugoGeneSymbol":"TTTY29P","entrezGeneId":100287167},{"hugoGeneSymbol":"TTTY2B","entrezGeneId":100101117},{"hugoGeneSymbol":"TTTY3","entrezGeneId":114760},{"hugoGeneSymbol":"TTTY30P","entrezGeneId":100287844},{"hugoGeneSymbol":"TTTY31P","entrezGeneId":100287905},{"hugoGeneSymbol":"TTTY3B","entrezGeneId":474148},{"hugoGeneSymbol":"TTTY4","entrezGeneId":114761},{"hugoGeneSymbol":"TTTY4B","entrezGeneId":474149},{"hugoGeneSymbol":"TTTY4C","entrezGeneId":474150},{"hugoGeneSymbol":"TTTY5","entrezGeneId":83863},{"hugoGeneSymbol":"TTTY6","entrezGeneId":84672},{"hugoGeneSymbol":"TTTY6B","entrezGeneId":441543},{"hugoGeneSymbol":"TTTY7","entrezGeneId":246122},{"hugoGeneSymbol":"TTTY7B","entrezGeneId":100101120},{"hugoGeneSymbol":"TTTY8","entrezGeneId":84673},{"hugoGeneSymbol":"TTTY8B","entrezGeneId":100101118},{"hugoGeneSymbol":"TTTY9A","entrezGeneId":83864},{"hugoGeneSymbol":"TTTY9B","entrezGeneId":425057},{"hugoGeneSymbol":"TTYH1","entrezGeneId":57348},{"hugoGeneSymbol":"TTYH2","entrezGeneId":94015},{"hugoGeneSymbol":"TTYH3","entrezGeneId":80727},{"hugoGeneSymbol":"TUB","entrezGeneId":7275},{"hugoGeneSymbol":"TUB-AS1","entrezGeneId":101927917},{"hugoGeneSymbol":"TUBA1A","entrezGeneId":7846},{"hugoGeneSymbol":"TUBA1B","entrezGeneId":10376},{"hugoGeneSymbol":"TUBA1C","entrezGeneId":84790},{"hugoGeneSymbol":"TUBA3C","entrezGeneId":7278},{"hugoGeneSymbol":"TUBA3D","entrezGeneId":113457},{"hugoGeneSymbol":"TUBA3E","entrezGeneId":112714},{"hugoGeneSymbol":"TUBA3FP","entrezGeneId":113691},{"hugoGeneSymbol":"TUBA3GP","entrezGeneId":645348},{"hugoGeneSymbol":"TUBA4A","entrezGeneId":7277},{"hugoGeneSymbol":"TUBA4B","entrezGeneId":80086},{"hugoGeneSymbol":"TUBA8","entrezGeneId":51807},{"hugoGeneSymbol":"TUBAL3","entrezGeneId":79861},{"hugoGeneSymbol":"TUBAP","entrezGeneId":54016},{"hugoGeneSymbol":"TUBAP2","entrezGeneId":399942},{"hugoGeneSymbol":"TUBAP3","entrezGeneId":100419007},{"hugoGeneSymbol":"TUBAP4","entrezGeneId":106479041},{"hugoGeneSymbol":"TUBB","entrezGeneId":203068},{"hugoGeneSymbol":"TUBB1","entrezGeneId":81027},{"hugoGeneSymbol":"TUBB1P1","entrezGeneId":349448},{"hugoGeneSymbol":"TUBB1P2","entrezGeneId":140004},{"hugoGeneSymbol":"TUBB2A","entrezGeneId":7280},{"hugoGeneSymbol":"TUBB2B","entrezGeneId":347733},{"hugoGeneSymbol":"TUBB2BP1","entrezGeneId":100132153},{"hugoGeneSymbol":"TUBB3","entrezGeneId":10381},{"hugoGeneSymbol":"TUBB3P1","entrezGeneId":100288513},{"hugoGeneSymbol":"TUBB3P2","entrezGeneId":100130187},{"hugoGeneSymbol":"TUBB4A","entrezGeneId":10382},{"hugoGeneSymbol":"TUBB4AP1","entrezGeneId":402422},{"hugoGeneSymbol":"TUBB4B","entrezGeneId":10383},{"hugoGeneSymbol":"TUBB4BP1","entrezGeneId":106478981},{"hugoGeneSymbol":"TUBB4BP2","entrezGeneId":100418974},{"hugoGeneSymbol":"TUBB4BP3","entrezGeneId":106480746},{"hugoGeneSymbol":"TUBB4BP4","entrezGeneId":106480434},{"hugoGeneSymbol":"TUBB4BP5","entrezGeneId":106480747},{"hugoGeneSymbol":"TUBB4BP6","entrezGeneId":100996306},{"hugoGeneSymbol":"TUBB4BP7","entrezGeneId":442271},{"hugoGeneSymbol":"TUBB6","entrezGeneId":84617},{"hugoGeneSymbol":"TUBB6P1","entrezGeneId":100418964},{"hugoGeneSymbol":"TUBB7P","entrezGeneId":56604},{"hugoGeneSymbol":"TUBB8","entrezGeneId":347688},{"hugoGeneSymbol":"TUBB8P1","entrezGeneId":100418937},{"hugoGeneSymbol":"TUBB8P10","entrezGeneId":391171},{"hugoGeneSymbol":"TUBB8P11","entrezGeneId":388579},{"hugoGeneSymbol":"TUBB8P12","entrezGeneId":260334},{"hugoGeneSymbol":"TUBB8P2","entrezGeneId":106478982},{"hugoGeneSymbol":"TUBB8P3","entrezGeneId":132719},{"hugoGeneSymbol":"TUBB8P4","entrezGeneId":260338},{"hugoGeneSymbol":"TUBB8P5","entrezGeneId":121014},{"hugoGeneSymbol":"TUBB8P6","entrezGeneId":200149},{"hugoGeneSymbol":"TUBB8P7","entrezGeneId":197331},{"hugoGeneSymbol":"TUBB8P8","entrezGeneId":102723626},{"hugoGeneSymbol":"TUBB8P9","entrezGeneId":255208},{"hugoGeneSymbol":"TUBBP1","entrezGeneId":92755},{"hugoGeneSymbol":"TUBBP10","entrezGeneId":100418902},{"hugoGeneSymbol":"TUBBP11","entrezGeneId":106480745},{"hugoGeneSymbol":"TUBBP2","entrezGeneId":647000},{"hugoGeneSymbol":"TUBBP3","entrezGeneId":326106},{"hugoGeneSymbol":"TUBBP4","entrezGeneId":493816},{"hugoGeneSymbol":"TUBBP5","entrezGeneId":643224},{"hugoGeneSymbol":"TUBBP6","entrezGeneId":442308},{"hugoGeneSymbol":"TUBBP7","entrezGeneId":100533620},{"hugoGeneSymbol":"TUBBP8","entrezGeneId":101927519},{"hugoGeneSymbol":"TUBBP9","entrezGeneId":442210},{"hugoGeneSymbol":"TUBD1","entrezGeneId":51174},{"hugoGeneSymbol":"TUBE1","entrezGeneId":51175},{"hugoGeneSymbol":"TUBG1","entrezGeneId":7283},{"hugoGeneSymbol":"TUBG1P","entrezGeneId":442673},{"hugoGeneSymbol":"TUBG2","entrezGeneId":27175},{"hugoGeneSymbol":"TUBGCP2","entrezGeneId":10844},{"hugoGeneSymbol":"TUBGCP3","entrezGeneId":10426},{"hugoGeneSymbol":"TUBGCP4","entrezGeneId":27229},{"hugoGeneSymbol":"TUBGCP5","entrezGeneId":114791},{"hugoGeneSymbol":"TUBGCP6","entrezGeneId":85378},{"hugoGeneSymbol":"TUFM","entrezGeneId":7284},{"hugoGeneSymbol":"TUFMP1","entrezGeneId":645668},{"hugoGeneSymbol":"TUFT1","entrezGeneId":7286},{"hugoGeneSymbol":"TUG1","entrezGeneId":55000},{"hugoGeneSymbol":"TUKLS","entrezGeneId":574049},{"hugoGeneSymbol":"TULP1","entrezGeneId":7287},{"hugoGeneSymbol":"TULP2","entrezGeneId":7288},{"hugoGeneSymbol":"TULP3","entrezGeneId":7289},{"hugoGeneSymbol":"TULP3P1","entrezGeneId":100128017},{"hugoGeneSymbol":"TULP4","entrezGeneId":56995},{"hugoGeneSymbol":"TUNAR","entrezGeneId":100507043},{"hugoGeneSymbol":"TUSC1","entrezGeneId":286319},{"hugoGeneSymbol":"TUSC2","entrezGeneId":11334},{"hugoGeneSymbol":"TUSC2P1","entrezGeneId":359794},{"hugoGeneSymbol":"TUSC3","entrezGeneId":7991},{"hugoGeneSymbol":"TUSC7","entrezGeneId":285194},{"hugoGeneSymbol":"TUSC8","entrezGeneId":400128},{"hugoGeneSymbol":"TUT1","entrezGeneId":64852},{"hugoGeneSymbol":"TVP23A","entrezGeneId":780776},{"hugoGeneSymbol":"TVP23B","entrezGeneId":51030},{"hugoGeneSymbol":"TVP23BP1","entrezGeneId":100129124},{"hugoGeneSymbol":"TVP23BP2","entrezGeneId":100421473},{"hugoGeneSymbol":"TVP23C","entrezGeneId":201158},{"hugoGeneSymbol":"TVP23C-CDRT4","entrezGeneId":100533496},{"hugoGeneSymbol":"TVP23CP1","entrezGeneId":100421599},{"hugoGeneSymbol":"TVP23CP2","entrezGeneId":261735},{"hugoGeneSymbol":"TW","entrezGeneId":8168},{"hugoGeneSymbol":"TWF1","entrezGeneId":5756},{"hugoGeneSymbol":"TWF1P1","entrezGeneId":619519},{"hugoGeneSymbol":"TWF1P2","entrezGeneId":494555},{"hugoGeneSymbol":"TWF2","entrezGeneId":11344},{"hugoGeneSymbol":"TWIST1","entrezGeneId":7291},{"hugoGeneSymbol":"TWIST2","entrezGeneId":117581},{"hugoGeneSymbol":"TWISTNB","entrezGeneId":221830},{"hugoGeneSymbol":"TWNK","entrezGeneId":56652},{"hugoGeneSymbol":"TWSG1","entrezGeneId":57045},{"hugoGeneSymbol":"TXK","entrezGeneId":7294},{"hugoGeneSymbol":"TXLNA","entrezGeneId":200081},{"hugoGeneSymbol":"TXLNB","entrezGeneId":167838},{"hugoGeneSymbol":"TXLNG","entrezGeneId":55787},{"hugoGeneSymbol":"TXLNGY","entrezGeneId":246126},{"hugoGeneSymbol":"TXN","entrezGeneId":7295},{"hugoGeneSymbol":"TXN2","entrezGeneId":25828},{"hugoGeneSymbol":"TXNDC11","entrezGeneId":51061},{"hugoGeneSymbol":"TXNDC12","entrezGeneId":51060},{"hugoGeneSymbol":"TXNDC12-AS1","entrezGeneId":104355143},{"hugoGeneSymbol":"TXNDC15","entrezGeneId":79770},{"hugoGeneSymbol":"TXNDC16","entrezGeneId":57544},{"hugoGeneSymbol":"TXNDC17","entrezGeneId":84817},{"hugoGeneSymbol":"TXNDC2","entrezGeneId":84203},{"hugoGeneSymbol":"TXNDC5","entrezGeneId":81567},{"hugoGeneSymbol":"TXNDC8","entrezGeneId":255220},{"hugoGeneSymbol":"TXNDC9","entrezGeneId":10190},{"hugoGeneSymbol":"TXNIP","entrezGeneId":10628},{"hugoGeneSymbol":"TXNL1","entrezGeneId":9352},{"hugoGeneSymbol":"TXNL1P1","entrezGeneId":100419095},{"hugoGeneSymbol":"TXNL4A","entrezGeneId":10907},{"hugoGeneSymbol":"TXNL4B","entrezGeneId":54957},{"hugoGeneSymbol":"TXNP1","entrezGeneId":93202},{"hugoGeneSymbol":"TXNP2","entrezGeneId":171416},{"hugoGeneSymbol":"TXNP3","entrezGeneId":171419},{"hugoGeneSymbol":"TXNP4","entrezGeneId":124974},{"hugoGeneSymbol":"TXNP5","entrezGeneId":151276},{"hugoGeneSymbol":"TXNP6","entrezGeneId":171560},{"hugoGeneSymbol":"TXNP7","entrezGeneId":106480275},{"hugoGeneSymbol":"TXNRD1","entrezGeneId":7296},{"hugoGeneSymbol":"TXNRD2","entrezGeneId":10587},{"hugoGeneSymbol":"TXNRD3","entrezGeneId":114112},{"hugoGeneSymbol":"TXNRD3NB","entrezGeneId":645840},{"hugoGeneSymbol":"TYK2","entrezGeneId":7297},{"hugoGeneSymbol":"TYMP","entrezGeneId":1890},{"hugoGeneSymbol":"TYMS","entrezGeneId":7298},{"hugoGeneSymbol":"TYMSOS","entrezGeneId":494514},{"hugoGeneSymbol":"TYMSP1","entrezGeneId":100419610},{"hugoGeneSymbol":"TYMSP2","entrezGeneId":109729122},{"hugoGeneSymbol":"TYR","entrezGeneId":7299},{"hugoGeneSymbol":"TYRL","entrezGeneId":7300},{"hugoGeneSymbol":"TYRO3","entrezGeneId":7301},{"hugoGeneSymbol":"TYRO3P","entrezGeneId":7302},{"hugoGeneSymbol":"TYROBP","entrezGeneId":7305},{"hugoGeneSymbol":"TYRP1","entrezGeneId":7306},{"hugoGeneSymbol":"TYS","entrezGeneId":7303},{"hugoGeneSymbol":"TYSND1","entrezGeneId":219743},{"hugoGeneSymbol":"TYW1","entrezGeneId":55253},{"hugoGeneSymbol":"TYW1B","entrezGeneId":441250},{"hugoGeneSymbol":"TYW1P1","entrezGeneId":100533847},{"hugoGeneSymbol":"TYW3","entrezGeneId":127253},{"hugoGeneSymbol":"TYW5","entrezGeneId":129450},{"hugoGeneSymbol":"U2AF1","entrezGeneId":7307},{"hugoGeneSymbol":"U2AF1L4","entrezGeneId":199746},{"hugoGeneSymbol":"U2AF1L5","entrezGeneId":102724594},{"hugoGeneSymbol":"U2AF2","entrezGeneId":11338},{"hugoGeneSymbol":"U2SURP","entrezGeneId":23350},{"hugoGeneSymbol":"UACA","entrezGeneId":55075},{"hugoGeneSymbol":"UAE1","entrezGeneId":474308},{"hugoGeneSymbol":"UAE2","entrezGeneId":474309},{"hugoGeneSymbol":"UAP1","entrezGeneId":6675},{"hugoGeneSymbol":"UAP1L1","entrezGeneId":91373},{"hugoGeneSymbol":"UAQTL3","entrezGeneId":100272224},{"hugoGeneSymbol":"UAQTL4","entrezGeneId":100272225},{"hugoGeneSymbol":"UAQTL5","entrezGeneId":100996934},{"hugoGeneSymbol":"UAQTL6","entrezGeneId":100996935},{"hugoGeneSymbol":"UBA1","entrezGeneId":7317},{"hugoGeneSymbol":"UBA2","entrezGeneId":10054},{"hugoGeneSymbol":"UBA3","entrezGeneId":9039},{"hugoGeneSymbol":"UBA5","entrezGeneId":79876},{"hugoGeneSymbol":"UBA52","entrezGeneId":7311},{"hugoGeneSymbol":"UBA52P1","entrezGeneId":7312},{"hugoGeneSymbol":"UBA52P2","entrezGeneId":7313},{"hugoGeneSymbol":"UBA52P3","entrezGeneId":122837},{"hugoGeneSymbol":"UBA52P4","entrezGeneId":100271030},{"hugoGeneSymbol":"UBA52P5","entrezGeneId":100271031},{"hugoGeneSymbol":"UBA52P6","entrezGeneId":100130239},{"hugoGeneSymbol":"UBA52P7","entrezGeneId":100128617},{"hugoGeneSymbol":"UBA52P8","entrezGeneId":100271343},{"hugoGeneSymbol":"UBA52P9","entrezGeneId":100271344},{"hugoGeneSymbol":"UBA6","entrezGeneId":55236},{"hugoGeneSymbol":"UBA6-AS1","entrezGeneId":550112},{"hugoGeneSymbol":"UBA7","entrezGeneId":7318},{"hugoGeneSymbol":"UBAC1","entrezGeneId":10422},{"hugoGeneSymbol":"UBAC2","entrezGeneId":337867},{"hugoGeneSymbol":"UBAC2-AS1","entrezGeneId":100289373},{"hugoGeneSymbol":"UBALD1","entrezGeneId":124402},{"hugoGeneSymbol":"UBALD2","entrezGeneId":283991},{"hugoGeneSymbol":"UBAP1","entrezGeneId":51271},{"hugoGeneSymbol":"UBAP1L","entrezGeneId":390595},{"hugoGeneSymbol":"UBAP2","entrezGeneId":55833},{"hugoGeneSymbol":"UBAP2L","entrezGeneId":9898},{"hugoGeneSymbol":"UBASH3A","entrezGeneId":53347},{"hugoGeneSymbol":"UBASH3B","entrezGeneId":84959},{"hugoGeneSymbol":"UBB","entrezGeneId":7314},{"hugoGeneSymbol":"UBBP1","entrezGeneId":7315},{"hugoGeneSymbol":"UBBP2","entrezGeneId":23668},{"hugoGeneSymbol":"UBBP3","entrezGeneId":23667},{"hugoGeneSymbol":"UBBP4","entrezGeneId":23666},{"hugoGeneSymbol":"UBBP5","entrezGeneId":100873783},{"hugoGeneSymbol":"UBC","entrezGeneId":7316},{"hugoGeneSymbol":"UBD","entrezGeneId":10537},{"hugoGeneSymbol":"UBDP1","entrezGeneId":100286971},{"hugoGeneSymbol":"UBE2A","entrezGeneId":7319},{"hugoGeneSymbol":"UBE2B","entrezGeneId":7320},{"hugoGeneSymbol":"UBE2C","entrezGeneId":11065},{"hugoGeneSymbol":"UBE2CP1","entrezGeneId":326105},{"hugoGeneSymbol":"UBE2CP2","entrezGeneId":646595},{"hugoGeneSymbol":"UBE2CP3","entrezGeneId":100129983},{"hugoGeneSymbol":"UBE2CP4","entrezGeneId":283711},{"hugoGeneSymbol":"UBE2CP5","entrezGeneId":100874260},{"hugoGeneSymbol":"UBE2D1","entrezGeneId":7321},{"hugoGeneSymbol":"UBE2D2","entrezGeneId":7322},{"hugoGeneSymbol":"UBE2D3","entrezGeneId":7323},{"hugoGeneSymbol":"UBE2D3P1","entrezGeneId":100037280},{"hugoGeneSymbol":"UBE2D3P2","entrezGeneId":100130139},{"hugoGeneSymbol":"UBE2D3P3","entrezGeneId":100874262},{"hugoGeneSymbol":"UBE2D3P4","entrezGeneId":100131800},{"hugoGeneSymbol":"UBE2D4","entrezGeneId":51619},{"hugoGeneSymbol":"UBE2DNL","entrezGeneId":100131816},{"hugoGeneSymbol":"UBE2E1","entrezGeneId":7324},{"hugoGeneSymbol":"UBE2E1-AS1","entrezGeneId":100874092},{"hugoGeneSymbol":"UBE2E2","entrezGeneId":7325},{"hugoGeneSymbol":"UBE2E2-AS1","entrezGeneId":100505877},{"hugoGeneSymbol":"UBE2E3","entrezGeneId":10477},{"hugoGeneSymbol":"UBE2E4P","entrezGeneId":286480},{"hugoGeneSymbol":"UBE2F","entrezGeneId":140739},{"hugoGeneSymbol":"UBE2F-SCLY","entrezGeneId":100533179},{"hugoGeneSymbol":"UBE2FP1","entrezGeneId":100421436},{"hugoGeneSymbol":"UBE2FP2","entrezGeneId":101060189},{"hugoGeneSymbol":"UBE2FP3","entrezGeneId":106480360},{"hugoGeneSymbol":"UBE2G1","entrezGeneId":7326},{"hugoGeneSymbol":"UBE2G2","entrezGeneId":7327},{"hugoGeneSymbol":"UBE2H","entrezGeneId":7328},{"hugoGeneSymbol":"UBE2HP1","entrezGeneId":646463},{"hugoGeneSymbol":"UBE2I","entrezGeneId":7329},{"hugoGeneSymbol":"UBE2J1","entrezGeneId":51465},{"hugoGeneSymbol":"UBE2J2","entrezGeneId":118424},{"hugoGeneSymbol":"UBE2K","entrezGeneId":3093},{"hugoGeneSymbol":"UBE2L1","entrezGeneId":283556},{"hugoGeneSymbol":"UBE2L2","entrezGeneId":100506424},{"hugoGeneSymbol":"UBE2L3","entrezGeneId":7332},{"hugoGeneSymbol":"UBE2L4","entrezGeneId":7333},{"hugoGeneSymbol":"UBE2L5","entrezGeneId":171222},{"hugoGeneSymbol":"UBE2L6","entrezGeneId":9246},{"hugoGeneSymbol":"UBE2M","entrezGeneId":9040},{"hugoGeneSymbol":"UBE2MP1","entrezGeneId":606551},{"hugoGeneSymbol":"UBE2N","entrezGeneId":7334},{"hugoGeneSymbol":"UBE2NL","entrezGeneId":389898},{"hugoGeneSymbol":"UBE2NP1","entrezGeneId":100288613},{"hugoGeneSymbol":"UBE2O","entrezGeneId":63893},{"hugoGeneSymbol":"UBE2Q1","entrezGeneId":55585},{"hugoGeneSymbol":"UBE2Q1-AS1","entrezGeneId":100874097},{"hugoGeneSymbol":"UBE2Q2","entrezGeneId":92912},{"hugoGeneSymbol":"UBE2Q2L","entrezGeneId":100505679},{"hugoGeneSymbol":"UBE2Q2P1","entrezGeneId":388165},{"hugoGeneSymbol":"UBE2Q2P10","entrezGeneId":101928256},{"hugoGeneSymbol":"UBE2Q2P11","entrezGeneId":100421767},{"hugoGeneSymbol":"UBE2Q2P12","entrezGeneId":100421768},{"hugoGeneSymbol":"UBE2Q2P2","entrezGeneId":100134869},{"hugoGeneSymbol":"UBE2Q2P4Y","entrezGeneId":100421716},{"hugoGeneSymbol":"UBE2Q2P5Y","entrezGeneId":100421717},{"hugoGeneSymbol":"UBE2Q2P6","entrezGeneId":100421769},{"hugoGeneSymbol":"UBE2Q2P7","entrezGeneId":100421766},{"hugoGeneSymbol":"UBE2Q2P8","entrezGeneId":100421771},{"hugoGeneSymbol":"UBE2Q2P9","entrezGeneId":106480276},{"hugoGeneSymbol":"UBE2QL1","entrezGeneId":134111},{"hugoGeneSymbol":"UBE2R2","entrezGeneId":54926},{"hugoGeneSymbol":"UBE2R2-AS1","entrezGeneId":101929665},{"hugoGeneSymbol":"UBE2S","entrezGeneId":27338},{"hugoGeneSymbol":"UBE2SP1","entrezGeneId":246719},{"hugoGeneSymbol":"UBE2SP2","entrezGeneId":440406},{"hugoGeneSymbol":"UBE2T","entrezGeneId":29089},{"hugoGeneSymbol":"UBE2U","entrezGeneId":148581},{"hugoGeneSymbol":"UBE2V1","entrezGeneId":7335},{"hugoGeneSymbol":"UBE2V1P1","entrezGeneId":170556},{"hugoGeneSymbol":"UBE2V1P10","entrezGeneId":102724605},{"hugoGeneSymbol":"UBE2V1P11","entrezGeneId":102723977},{"hugoGeneSymbol":"UBE2V1P12","entrezGeneId":106479048},{"hugoGeneSymbol":"UBE2V1P13","entrezGeneId":100505982},{"hugoGeneSymbol":"UBE2V1P14","entrezGeneId":100289623},{"hugoGeneSymbol":"UBE2V1P15","entrezGeneId":100288170},{"hugoGeneSymbol":"UBE2V1P2","entrezGeneId":730052},{"hugoGeneSymbol":"UBE2V1P3","entrezGeneId":359798},{"hugoGeneSymbol":"UBE2V1P4","entrezGeneId":102724816},{"hugoGeneSymbol":"UBE2V1P5","entrezGeneId":100287173},{"hugoGeneSymbol":"UBE2V1P6","entrezGeneId":100287279},{"hugoGeneSymbol":"UBE2V1P7","entrezGeneId":106481746},{"hugoGeneSymbol":"UBE2V1P8","entrezGeneId":102724706},{"hugoGeneSymbol":"UBE2V1P9","entrezGeneId":100131981},{"hugoGeneSymbol":"UBE2V2","entrezGeneId":7336},{"hugoGeneSymbol":"UBE2V2P1","entrezGeneId":100128493},{"hugoGeneSymbol":"UBE2V2P2","entrezGeneId":104548970},{"hugoGeneSymbol":"UBE2V2P3","entrezGeneId":100421341},{"hugoGeneSymbol":"UBE2V2P4","entrezGeneId":106480802},{"hugoGeneSymbol":"UBE2W","entrezGeneId":55284},{"hugoGeneSymbol":"UBE2WP1","entrezGeneId":619457},{"hugoGeneSymbol":"UBE2Z","entrezGeneId":65264},{"hugoGeneSymbol":"UBE3A","entrezGeneId":7337},{"hugoGeneSymbol":"UBE3AP1","entrezGeneId":7338},{"hugoGeneSymbol":"UBE3AP2","entrezGeneId":7339},{"hugoGeneSymbol":"UBE3B","entrezGeneId":89910},{"hugoGeneSymbol":"UBE3C","entrezGeneId":9690},{"hugoGeneSymbol":"UBE3D","entrezGeneId":90025},{"hugoGeneSymbol":"UBE4A","entrezGeneId":9354},{"hugoGeneSymbol":"UBE4B","entrezGeneId":10277},{"hugoGeneSymbol":"UBFD1","entrezGeneId":56061},{"hugoGeneSymbol":"UBFD1P1","entrezGeneId":100130484},{"hugoGeneSymbol":"UBIAD1","entrezGeneId":29914},{"hugoGeneSymbol":"UBL3","entrezGeneId":5412},{"hugoGeneSymbol":"UBL4A","entrezGeneId":8266},{"hugoGeneSymbol":"UBL4B","entrezGeneId":164153},{"hugoGeneSymbol":"UBL5","entrezGeneId":59286},{"hugoGeneSymbol":"UBL5P1","entrezGeneId":100130803},{"hugoGeneSymbol":"UBL5P2","entrezGeneId":100287215},{"hugoGeneSymbol":"UBL5P3","entrezGeneId":100129031},{"hugoGeneSymbol":"UBL5P4","entrezGeneId":106480800},{"hugoGeneSymbol":"UBL7","entrezGeneId":84993},{"hugoGeneSymbol":"UBL7-AS1","entrezGeneId":440288},{"hugoGeneSymbol":"UBLCP1","entrezGeneId":134510},{"hugoGeneSymbol":"UBN1","entrezGeneId":29855},{"hugoGeneSymbol":"UBN2","entrezGeneId":254048},{"hugoGeneSymbol":"UBOX5","entrezGeneId":22888},{"hugoGeneSymbol":"UBOX5-AS1","entrezGeneId":100134015},{"hugoGeneSymbol":"UBP1","entrezGeneId":7342},{"hugoGeneSymbol":"UBQLN1","entrezGeneId":29979},{"hugoGeneSymbol":"UBQLN1P1","entrezGeneId":387117},{"hugoGeneSymbol":"UBQLN2","entrezGeneId":29978},{"hugoGeneSymbol":"UBQLN3","entrezGeneId":50613},{"hugoGeneSymbol":"UBQLN4","entrezGeneId":56893},{"hugoGeneSymbol":"UBQLN4P1","entrezGeneId":285329},{"hugoGeneSymbol":"UBQLN4P2","entrezGeneId":100131393},{"hugoGeneSymbol":"UBQLNL","entrezGeneId":143630},{"hugoGeneSymbol":"UBR1","entrezGeneId":197131},{"hugoGeneSymbol":"UBR2","entrezGeneId":23304},{"hugoGeneSymbol":"UBR3","entrezGeneId":130507},{"hugoGeneSymbol":"UBR4","entrezGeneId":23352},{"hugoGeneSymbol":"UBR5","entrezGeneId":51366},{"hugoGeneSymbol":"UBR5-AS1","entrezGeneId":101927221},{"hugoGeneSymbol":"UBR7","entrezGeneId":55148},{"hugoGeneSymbol":"UBTD1","entrezGeneId":80019},{"hugoGeneSymbol":"UBTD2","entrezGeneId":92181},{"hugoGeneSymbol":"UBTF","entrezGeneId":7343},{"hugoGeneSymbol":"UBTFL1","entrezGeneId":642623},{"hugoGeneSymbol":"UBTFL10","entrezGeneId":106480293},{"hugoGeneSymbol":"UBTFL11","entrezGeneId":442446},{"hugoGeneSymbol":"UBTFL2","entrezGeneId":120126},{"hugoGeneSymbol":"UBTFL3","entrezGeneId":129870},{"hugoGeneSymbol":"UBTFL5","entrezGeneId":728231},{"hugoGeneSymbol":"UBTFL6","entrezGeneId":643615},{"hugoGeneSymbol":"UBTFL7","entrezGeneId":646759},{"hugoGeneSymbol":"UBTFL8","entrezGeneId":643182},{"hugoGeneSymbol":"UBTFL9","entrezGeneId":100128427},{"hugoGeneSymbol":"UBXN1","entrezGeneId":51035},{"hugoGeneSymbol":"UBXN10","entrezGeneId":127733},{"hugoGeneSymbol":"UBXN10-AS1","entrezGeneId":101928017},{"hugoGeneSymbol":"UBXN11","entrezGeneId":91544},{"hugoGeneSymbol":"UBXN2A","entrezGeneId":165324},{"hugoGeneSymbol":"UBXN2B","entrezGeneId":137886},{"hugoGeneSymbol":"UBXN4","entrezGeneId":23190},{"hugoGeneSymbol":"UBXN6","entrezGeneId":80700},{"hugoGeneSymbol":"UBXN7","entrezGeneId":26043},{"hugoGeneSymbol":"UBXN7-AS1","entrezGeneId":100874034},{"hugoGeneSymbol":"UBXN8","entrezGeneId":7993},{"hugoGeneSymbol":"UC.134","entrezGeneId":110599565},{"hugoGeneSymbol":"UCA1","entrezGeneId":652995},{"hugoGeneSymbol":"UCH1LAS","entrezGeneId":101180899},{"hugoGeneSymbol":"UCHL1","entrezGeneId":7345},{"hugoGeneSymbol":"UCHL1-AS1","entrezGeneId":101410542},{"hugoGeneSymbol":"UCHL3","entrezGeneId":7347},{"hugoGeneSymbol":"UCHL5","entrezGeneId":51377},{"hugoGeneSymbol":"UCK1","entrezGeneId":83549},{"hugoGeneSymbol":"UCK2","entrezGeneId":7371},{"hugoGeneSymbol":"UCKL1","entrezGeneId":54963},{"hugoGeneSymbol":"UCKL1-AS1","entrezGeneId":100113386},{"hugoGeneSymbol":"UCMA","entrezGeneId":221044},{"hugoGeneSymbol":"UCN","entrezGeneId":7349},{"hugoGeneSymbol":"UCN2","entrezGeneId":90226},{"hugoGeneSymbol":"UCN3","entrezGeneId":114131},{"hugoGeneSymbol":"UCP1","entrezGeneId":7350},{"hugoGeneSymbol":"UCP2","entrezGeneId":7351},{"hugoGeneSymbol":"UCP3","entrezGeneId":7352},{"hugoGeneSymbol":"UEVLD","entrezGeneId":55293},{"hugoGeneSymbol":"UFC1","entrezGeneId":51506},{"hugoGeneSymbol":"UFD1","entrezGeneId":7353},{"hugoGeneSymbol":"UFL1","entrezGeneId":23376},{"hugoGeneSymbol":"UFL1-AS1","entrezGeneId":100861530},{"hugoGeneSymbol":"UFM1","entrezGeneId":51569},{"hugoGeneSymbol":"UFSP1","entrezGeneId":402682},{"hugoGeneSymbol":"UFSP2","entrezGeneId":55325},{"hugoGeneSymbol":"UG0898H09","entrezGeneId":643763},{"hugoGeneSymbol":"UGCG","entrezGeneId":7357},{"hugoGeneSymbol":"UGDH","entrezGeneId":7358},{"hugoGeneSymbol":"UGDH-AS1","entrezGeneId":100885776},{"hugoGeneSymbol":"UGGT1","entrezGeneId":56886},{"hugoGeneSymbol":"UGGT2","entrezGeneId":55757},{"hugoGeneSymbol":"UGP2","entrezGeneId":7360},{"hugoGeneSymbol":"UGT1A","entrezGeneId":7361},{"hugoGeneSymbol":"UGT1A1","entrezGeneId":54658},{"hugoGeneSymbol":"UGT1A10","entrezGeneId":54575},{"hugoGeneSymbol":"UGT1A11P","entrezGeneId":54574},{"hugoGeneSymbol":"UGT1A12P","entrezGeneId":54573},{"hugoGeneSymbol":"UGT1A13P","entrezGeneId":404204},{"hugoGeneSymbol":"UGT1A2P","entrezGeneId":54580},{"hugoGeneSymbol":"UGT1A3","entrezGeneId":54659},{"hugoGeneSymbol":"UGT1A4","entrezGeneId":54657},{"hugoGeneSymbol":"UGT1A5","entrezGeneId":54579},{"hugoGeneSymbol":"UGT1A6","entrezGeneId":54578},{"hugoGeneSymbol":"UGT1A7","entrezGeneId":54577},{"hugoGeneSymbol":"UGT1A8","entrezGeneId":54576},{"hugoGeneSymbol":"UGT1A9","entrezGeneId":54600},{"hugoGeneSymbol":"UGT2A1","entrezGeneId":10941},{"hugoGeneSymbol":"UGT2A2","entrezGeneId":574537},{"hugoGeneSymbol":"UGT2A3","entrezGeneId":79799},{"hugoGeneSymbol":"UGT2A3P7","entrezGeneId":100422023},{"hugoGeneSymbol":"UGT2B10","entrezGeneId":7365},{"hugoGeneSymbol":"UGT2B11","entrezGeneId":10720},{"hugoGeneSymbol":"UGT2B15","entrezGeneId":7366},{"hugoGeneSymbol":"UGT2B17","entrezGeneId":7367},{"hugoGeneSymbol":"UGT2B24P","entrezGeneId":54572},{"hugoGeneSymbol":"UGT2B25P","entrezGeneId":54571},{"hugoGeneSymbol":"UGT2B26P","entrezGeneId":54570},{"hugoGeneSymbol":"UGT2B27P","entrezGeneId":54569},{"hugoGeneSymbol":"UGT2B28","entrezGeneId":54490},{"hugoGeneSymbol":"UGT2B29P","entrezGeneId":54568},{"hugoGeneSymbol":"UGT2B4","entrezGeneId":7363},{"hugoGeneSymbol":"UGT2B7","entrezGeneId":7364},{"hugoGeneSymbol":"UGT3A1","entrezGeneId":133688},{"hugoGeneSymbol":"UGT3A2","entrezGeneId":167127},{"hugoGeneSymbol":"UGT8","entrezGeneId":7368},{"hugoGeneSymbol":"UHMK1","entrezGeneId":127933},{"hugoGeneSymbol":"UHRF1","entrezGeneId":29128},{"hugoGeneSymbol":"UHRF1BP1","entrezGeneId":54887},{"hugoGeneSymbol":"UHRF1BP1L","entrezGeneId":23074},{"hugoGeneSymbol":"UHRF2","entrezGeneId":115426},{"hugoGeneSymbol":"UHRF2P1","entrezGeneId":260337},{"hugoGeneSymbol":"UIMC1","entrezGeneId":51720},{"hugoGeneSymbol":"ULBP1","entrezGeneId":80329},{"hugoGeneSymbol":"ULBP2","entrezGeneId":80328},{"hugoGeneSymbol":"ULBP3","entrezGeneId":79465},{"hugoGeneSymbol":"ULK1","entrezGeneId":8408},{"hugoGeneSymbol":"ULK2","entrezGeneId":9706},{"hugoGeneSymbol":"ULK3","entrezGeneId":25989},{"hugoGeneSymbol":"ULK4","entrezGeneId":54986},{"hugoGeneSymbol":"ULK4P1","entrezGeneId":89838},{"hugoGeneSymbol":"ULK4P2","entrezGeneId":100288380},{"hugoGeneSymbol":"ULK4P3","entrezGeneId":89837},{"hugoGeneSymbol":"UMAD1","entrezGeneId":729852},{"hugoGeneSymbol":"UMOD","entrezGeneId":7369},{"hugoGeneSymbol":"UMODL1","entrezGeneId":89766},{"hugoGeneSymbol":"UMODL1-AS1","entrezGeneId":150147},{"hugoGeneSymbol":"UMPS","entrezGeneId":7372},{"hugoGeneSymbol":"UNC119","entrezGeneId":9094},{"hugoGeneSymbol":"UNC119B","entrezGeneId":84747},{"hugoGeneSymbol":"UNC13A","entrezGeneId":23025},{"hugoGeneSymbol":"UNC13B","entrezGeneId":10497},{"hugoGeneSymbol":"UNC13C","entrezGeneId":440279},{"hugoGeneSymbol":"UNC13D","entrezGeneId":201294},{"hugoGeneSymbol":"UNC45A","entrezGeneId":55898},{"hugoGeneSymbol":"UNC45B","entrezGeneId":146862},{"hugoGeneSymbol":"UNC50","entrezGeneId":25972},{"hugoGeneSymbol":"UNC5A","entrezGeneId":90249},{"hugoGeneSymbol":"UNC5B","entrezGeneId":219699},{"hugoGeneSymbol":"UNC5B-AS1","entrezGeneId":728978},{"hugoGeneSymbol":"UNC5C","entrezGeneId":8633},{"hugoGeneSymbol":"UNC5CL","entrezGeneId":222643},{"hugoGeneSymbol":"UNC5D","entrezGeneId":137970},{"hugoGeneSymbol":"UNC79","entrezGeneId":57578},{"hugoGeneSymbol":"UNC80","entrezGeneId":285175},{"hugoGeneSymbol":"UNC93A","entrezGeneId":54346},{"hugoGeneSymbol":"UNC93B1","entrezGeneId":81622},{"hugoGeneSymbol":"UNC93B2","entrezGeneId":641922},{"hugoGeneSymbol":"UNC93B3","entrezGeneId":285296},{"hugoGeneSymbol":"UNC93B4","entrezGeneId":643384},{"hugoGeneSymbol":"UNC93B5","entrezGeneId":729196},{"hugoGeneSymbol":"UNC93B6","entrezGeneId":255620},{"hugoGeneSymbol":"UNC93B7","entrezGeneId":100887746},{"hugoGeneSymbol":"UNC93B8","entrezGeneId":100887748},{"hugoGeneSymbol":"UNCX","entrezGeneId":340260},{"hugoGeneSymbol":"UNG","entrezGeneId":7374},{"hugoGeneSymbol":"UNGP1","entrezGeneId":57004},{"hugoGeneSymbol":"UNGP2","entrezGeneId":57005},{"hugoGeneSymbol":"UNGP3","entrezGeneId":319122},{"hugoGeneSymbol":"UNK","entrezGeneId":85451},{"hugoGeneSymbol":"UNKL","entrezGeneId":64718},{"hugoGeneSymbol":"UNQ6494","entrezGeneId":100129066},{"hugoGeneSymbol":"UOX","entrezGeneId":391051},{"hugoGeneSymbol":"UPB1","entrezGeneId":51733},{"hugoGeneSymbol":"UPF1","entrezGeneId":5976},{"hugoGeneSymbol":"UPF2","entrezGeneId":26019},{"hugoGeneSymbol":"UPF3A","entrezGeneId":65110},{"hugoGeneSymbol":"UPF3AP1","entrezGeneId":147226},{"hugoGeneSymbol":"UPF3AP2","entrezGeneId":147150},{"hugoGeneSymbol":"UPF3AP3","entrezGeneId":100422343},{"hugoGeneSymbol":"UPF3B","entrezGeneId":65109},{"hugoGeneSymbol":"UPK1A","entrezGeneId":11045},{"hugoGeneSymbol":"UPK1A-AS1","entrezGeneId":100862728},{"hugoGeneSymbol":"UPK1B","entrezGeneId":7348},{"hugoGeneSymbol":"UPK2","entrezGeneId":7379},{"hugoGeneSymbol":"UPK3A","entrezGeneId":7380},{"hugoGeneSymbol":"UPK3B","entrezGeneId":105375355},{"hugoGeneSymbol":"UPK3BL1","entrezGeneId":100134938},{"hugoGeneSymbol":"UPK3BL2","entrezGeneId":107983993},{"hugoGeneSymbol":"UPK3BP1","entrezGeneId":107080637},{"hugoGeneSymbol":"UPP1","entrezGeneId":7378},{"hugoGeneSymbol":"UPP2","entrezGeneId":151531},{"hugoGeneSymbol":"UPP2-IT1","entrezGeneId":100874283},{"hugoGeneSymbol":"UPRT","entrezGeneId":139596},{"hugoGeneSymbol":"UQCC1","entrezGeneId":55245},{"hugoGeneSymbol":"UQCC2","entrezGeneId":84300},{"hugoGeneSymbol":"UQCC3","entrezGeneId":790955},{"hugoGeneSymbol":"UQCR10","entrezGeneId":29796},{"hugoGeneSymbol":"UQCR11","entrezGeneId":10975},{"hugoGeneSymbol":"UQCRB","entrezGeneId":7381},{"hugoGeneSymbol":"UQCRBP1","entrezGeneId":442454},{"hugoGeneSymbol":"UQCRBP2","entrezGeneId":100130719},{"hugoGeneSymbol":"UQCRBP3","entrezGeneId":100288785},{"hugoGeneSymbol":"UQCRC1","entrezGeneId":7384},{"hugoGeneSymbol":"UQCRC2","entrezGeneId":7385},{"hugoGeneSymbol":"UQCRC2P1","entrezGeneId":100131327},{"hugoGeneSymbol":"UQCRFS1","entrezGeneId":7386},{"hugoGeneSymbol":"UQCRFS1P1","entrezGeneId":100128525},{"hugoGeneSymbol":"UQCRFS1P2","entrezGeneId":647123},{"hugoGeneSymbol":"UQCRFS1P3","entrezGeneId":100130994},{"hugoGeneSymbol":"UQCRH","entrezGeneId":7388},{"hugoGeneSymbol":"UQCRHL","entrezGeneId":440567},{"hugoGeneSymbol":"UQCRHP1","entrezGeneId":100130756},{"hugoGeneSymbol":"UQCRHP2","entrezGeneId":729769},{"hugoGeneSymbol":"UQCRHP3","entrezGeneId":100131995},{"hugoGeneSymbol":"UQCRHP4","entrezGeneId":100128448},{"hugoGeneSymbol":"UQCRQ","entrezGeneId":27089},{"hugoGeneSymbol":"URAD","entrezGeneId":646625},{"hugoGeneSymbol":"URAHP","entrezGeneId":100130015},{"hugoGeneSymbol":"URB1","entrezGeneId":9875},{"hugoGeneSymbol":"URB1-AS1","entrezGeneId":84996},{"hugoGeneSymbol":"URB2","entrezGeneId":9816},{"hugoGeneSymbol":"URGCP","entrezGeneId":55665},{"hugoGeneSymbol":"URGCP-MRPS24","entrezGeneId":100534592},{"hugoGeneSymbol":"URI1","entrezGeneId":8725},{"hugoGeneSymbol":"URM1","entrezGeneId":81605},{"hugoGeneSymbol":"UROC1","entrezGeneId":131669},{"hugoGeneSymbol":"UROD","entrezGeneId":7389},{"hugoGeneSymbol":"UROS","entrezGeneId":7390},{"hugoGeneSymbol":"USB1","entrezGeneId":79650},{"hugoGeneSymbol":"USE1","entrezGeneId":55850},{"hugoGeneSymbol":"USF1","entrezGeneId":7391},{"hugoGeneSymbol":"USF1P1","entrezGeneId":100151645},{"hugoGeneSymbol":"USF2","entrezGeneId":7392},{"hugoGeneSymbol":"USF3","entrezGeneId":205717},{"hugoGeneSymbol":"USH1C","entrezGeneId":10083},{"hugoGeneSymbol":"USH1E","entrezGeneId":7396},{"hugoGeneSymbol":"USH1G","entrezGeneId":124590},{"hugoGeneSymbol":"USH1H","entrezGeneId":100271837},{"hugoGeneSymbol":"USH1K","entrezGeneId":101180907},{"hugoGeneSymbol":"USH2A","entrezGeneId":7399},{"hugoGeneSymbol":"USHBP1","entrezGeneId":83878},{"hugoGeneSymbol":"USO1","entrezGeneId":8615},{"hugoGeneSymbol":"USP1","entrezGeneId":7398},{"hugoGeneSymbol":"USP10","entrezGeneId":9100},{"hugoGeneSymbol":"USP10P1","entrezGeneId":780779},{"hugoGeneSymbol":"USP10P2","entrezGeneId":780778},{"hugoGeneSymbol":"USP11","entrezGeneId":8237},{"hugoGeneSymbol":"USP12","entrezGeneId":219333},{"hugoGeneSymbol":"USP12-AS1","entrezGeneId":100874070},{"hugoGeneSymbol":"USP12-AS2","entrezGeneId":100874071},{"hugoGeneSymbol":"USP12P1","entrezGeneId":9959},{"hugoGeneSymbol":"USP12PX","entrezGeneId":254700},{"hugoGeneSymbol":"USP12PY","entrezGeneId":359799},{"hugoGeneSymbol":"USP13","entrezGeneId":8975},{"hugoGeneSymbol":"USP14","entrezGeneId":9097},{"hugoGeneSymbol":"USP15","entrezGeneId":9958},{"hugoGeneSymbol":"USP16","entrezGeneId":10600},{"hugoGeneSymbol":"USP17L1","entrezGeneId":401447},{"hugoGeneSymbol":"USP17L10","entrezGeneId":100287144},{"hugoGeneSymbol":"USP17L11","entrezGeneId":100287178},{"hugoGeneSymbol":"USP17L12","entrezGeneId":100287205},{"hugoGeneSymbol":"USP17L13","entrezGeneId":100287238},{"hugoGeneSymbol":"USP17L14P","entrezGeneId":100287270},{"hugoGeneSymbol":"USP17L15","entrezGeneId":100288520},{"hugoGeneSymbol":"USP17L16P","entrezGeneId":100287302},{"hugoGeneSymbol":"USP17L17","entrezGeneId":100287327},{"hugoGeneSymbol":"USP17L18","entrezGeneId":100287364},{"hugoGeneSymbol":"USP17L19","entrezGeneId":100287404},{"hugoGeneSymbol":"USP17L2","entrezGeneId":377630},{"hugoGeneSymbol":"USP17L20","entrezGeneId":100287441},{"hugoGeneSymbol":"USP17L21","entrezGeneId":100287478},{"hugoGeneSymbol":"USP17L22","entrezGeneId":100287513},{"hugoGeneSymbol":"USP17L23","entrezGeneId":101241878},{"hugoGeneSymbol":"USP17L24","entrezGeneId":728369},{"hugoGeneSymbol":"USP17L25","entrezGeneId":728373},{"hugoGeneSymbol":"USP17L26","entrezGeneId":728379},{"hugoGeneSymbol":"USP17L27","entrezGeneId":728393},{"hugoGeneSymbol":"USP17L28","entrezGeneId":728400},{"hugoGeneSymbol":"USP17L29","entrezGeneId":728405},{"hugoGeneSymbol":"USP17L3","entrezGeneId":645836},{"hugoGeneSymbol":"USP17L30","entrezGeneId":728419},{"hugoGeneSymbol":"USP17L4","entrezGeneId":645402},{"hugoGeneSymbol":"USP17L5","entrezGeneId":728386},{"hugoGeneSymbol":"USP17L6P","entrezGeneId":391622},{"hugoGeneSymbol":"USP17L7","entrezGeneId":392197},{"hugoGeneSymbol":"USP17L8","entrezGeneId":392188},{"hugoGeneSymbol":"USP17L9P","entrezGeneId":391627},{"hugoGeneSymbol":"USP18","entrezGeneId":11274},{"hugoGeneSymbol":"USP19","entrezGeneId":10869},{"hugoGeneSymbol":"USP2","entrezGeneId":9099},{"hugoGeneSymbol":"USP2-AS1","entrezGeneId":100499227},{"hugoGeneSymbol":"USP20","entrezGeneId":10868},{"hugoGeneSymbol":"USP21","entrezGeneId":27005},{"hugoGeneSymbol":"USP22","entrezGeneId":23326},{"hugoGeneSymbol":"USP24","entrezGeneId":23358},{"hugoGeneSymbol":"USP24P1","entrezGeneId":100874248},{"hugoGeneSymbol":"USP25","entrezGeneId":29761},{"hugoGeneSymbol":"USP26","entrezGeneId":83844},{"hugoGeneSymbol":"USP27X","entrezGeneId":389856},{"hugoGeneSymbol":"USP27X-AS1","entrezGeneId":158572},{"hugoGeneSymbol":"USP28","entrezGeneId":57646},{"hugoGeneSymbol":"USP29","entrezGeneId":57663},{"hugoGeneSymbol":"USP3","entrezGeneId":9960},{"hugoGeneSymbol":"USP3-AS1","entrezGeneId":100130855},{"hugoGeneSymbol":"USP30","entrezGeneId":84749},{"hugoGeneSymbol":"USP30-AS1","entrezGeneId":100131733},{"hugoGeneSymbol":"USP31","entrezGeneId":57478},{"hugoGeneSymbol":"USP32","entrezGeneId":84669},{"hugoGeneSymbol":"USP32P1","entrezGeneId":162632},{"hugoGeneSymbol":"USP32P2","entrezGeneId":220594},{"hugoGeneSymbol":"USP32P3","entrezGeneId":347716},{"hugoGeneSymbol":"USP32P4","entrezGeneId":100874252},{"hugoGeneSymbol":"USP33","entrezGeneId":23032},{"hugoGeneSymbol":"USP34","entrezGeneId":9736},{"hugoGeneSymbol":"USP35","entrezGeneId":57558},{"hugoGeneSymbol":"USP36","entrezGeneId":57602},{"hugoGeneSymbol":"USP37","entrezGeneId":57695},{"hugoGeneSymbol":"USP38","entrezGeneId":84640},{"hugoGeneSymbol":"USP39","entrezGeneId":10713},{"hugoGeneSymbol":"USP4","entrezGeneId":7375},{"hugoGeneSymbol":"USP40","entrezGeneId":55230},{"hugoGeneSymbol":"USP41","entrezGeneId":373856},{"hugoGeneSymbol":"USP42","entrezGeneId":84132},{"hugoGeneSymbol":"USP43","entrezGeneId":124739},{"hugoGeneSymbol":"USP44","entrezGeneId":84101},{"hugoGeneSymbol":"USP45","entrezGeneId":85015},{"hugoGeneSymbol":"USP46","entrezGeneId":64854},{"hugoGeneSymbol":"USP46-AS1","entrezGeneId":643783},{"hugoGeneSymbol":"USP47","entrezGeneId":55031},{"hugoGeneSymbol":"USP48","entrezGeneId":84196},{"hugoGeneSymbol":"USP49","entrezGeneId":25862},{"hugoGeneSymbol":"USP5","entrezGeneId":8078},{"hugoGeneSymbol":"USP50","entrezGeneId":373509},{"hugoGeneSymbol":"USP51","entrezGeneId":158880},{"hugoGeneSymbol":"USP53","entrezGeneId":54532},{"hugoGeneSymbol":"USP54","entrezGeneId":159195},{"hugoGeneSymbol":"USP6","entrezGeneId":9098},{"hugoGeneSymbol":"USP6NL","entrezGeneId":9712},{"hugoGeneSymbol":"USP7","entrezGeneId":7874},{"hugoGeneSymbol":"USP8","entrezGeneId":9101},{"hugoGeneSymbol":"USP8P1","entrezGeneId":100287272},{"hugoGeneSymbol":"USP9X","entrezGeneId":8239},{"hugoGeneSymbol":"USP9Y","entrezGeneId":8287},{"hugoGeneSymbol":"USP9YP1","entrezGeneId":387362},{"hugoGeneSymbol":"USP9YP10","entrezGeneId":100421222},{"hugoGeneSymbol":"USP9YP11","entrezGeneId":100421224},{"hugoGeneSymbol":"USP9YP12","entrezGeneId":100874382},{"hugoGeneSymbol":"USP9YP13","entrezGeneId":100861434},{"hugoGeneSymbol":"USP9YP14","entrezGeneId":107133502},{"hugoGeneSymbol":"USP9YP15","entrezGeneId":106480713},{"hugoGeneSymbol":"USP9YP16","entrezGeneId":106478927},{"hugoGeneSymbol":"USP9YP17","entrezGeneId":106480714},{"hugoGeneSymbol":"USP9YP18","entrezGeneId":106480424},{"hugoGeneSymbol":"USP9YP19","entrezGeneId":100500797},{"hugoGeneSymbol":"USP9YP2","entrezGeneId":387363},{"hugoGeneSymbol":"USP9YP20","entrezGeneId":106480717},{"hugoGeneSymbol":"USP9YP21","entrezGeneId":106480355},{"hugoGeneSymbol":"USP9YP22","entrezGeneId":100874383},{"hugoGeneSymbol":"USP9YP23","entrezGeneId":100500798},{"hugoGeneSymbol":"USP9YP24","entrezGeneId":106478928},{"hugoGeneSymbol":"USP9YP25","entrezGeneId":106480715},{"hugoGeneSymbol":"USP9YP26","entrezGeneId":106478929},{"hugoGeneSymbol":"USP9YP27","entrezGeneId":106480716},{"hugoGeneSymbol":"USP9YP28","entrezGeneId":107080622},{"hugoGeneSymbol":"USP9YP29","entrezGeneId":106480425},{"hugoGeneSymbol":"USP9YP3","entrezGeneId":387364},{"hugoGeneSymbol":"USP9YP30","entrezGeneId":100874384},{"hugoGeneSymbol":"USP9YP31","entrezGeneId":106478930},{"hugoGeneSymbol":"USP9YP32","entrezGeneId":106480718},{"hugoGeneSymbol":"USP9YP33","entrezGeneId":106478931},{"hugoGeneSymbol":"USP9YP34","entrezGeneId":387361},{"hugoGeneSymbol":"USP9YP35","entrezGeneId":106480719},{"hugoGeneSymbol":"USP9YP36","entrezGeneId":106478932},{"hugoGeneSymbol":"USP9YP4","entrezGeneId":387359},{"hugoGeneSymbol":"USP9YP5","entrezGeneId":100421217},{"hugoGeneSymbol":"USP9YP6","entrezGeneId":100462820},{"hugoGeneSymbol":"USP9YP7","entrezGeneId":100462821},{"hugoGeneSymbol":"USP9YP8","entrezGeneId":100421219},{"hugoGeneSymbol":"USP9YP9","entrezGeneId":100421220},{"hugoGeneSymbol":"USPL1","entrezGeneId":10208},{"hugoGeneSymbol":"UST","entrezGeneId":10090},{"hugoGeneSymbol":"UST-AS1","entrezGeneId":100128176},{"hugoGeneSymbol":"UTAT33","entrezGeneId":101927492},{"hugoGeneSymbol":"UTF1","entrezGeneId":8433},{"hugoGeneSymbol":"UTP11","entrezGeneId":51118},{"hugoGeneSymbol":"UTP14A","entrezGeneId":10813},{"hugoGeneSymbol":"UTP14C","entrezGeneId":9724},{"hugoGeneSymbol":"UTP15","entrezGeneId":84135},{"hugoGeneSymbol":"UTP18","entrezGeneId":51096},{"hugoGeneSymbol":"UTP20","entrezGeneId":27340},{"hugoGeneSymbol":"UTP23","entrezGeneId":84294},{"hugoGeneSymbol":"UTP3","entrezGeneId":57050},{"hugoGeneSymbol":"UTP4","entrezGeneId":84916},{"hugoGeneSymbol":"UTP6","entrezGeneId":55813},{"hugoGeneSymbol":"UTRN","entrezGeneId":7402},{"hugoGeneSymbol":"UTS2","entrezGeneId":10911},{"hugoGeneSymbol":"UTS2B","entrezGeneId":257313},{"hugoGeneSymbol":"UTS2R","entrezGeneId":2837},{"hugoGeneSymbol":"UTY","entrezGeneId":7404},{"hugoGeneSymbol":"UVM1","entrezGeneId":170592},{"hugoGeneSymbol":"UVM2","entrezGeneId":170593},{"hugoGeneSymbol":"UVRAG","entrezGeneId":7405},{"hugoGeneSymbol":"UVSSA","entrezGeneId":57654},{"hugoGeneSymbol":"UXS1","entrezGeneId":80146},{"hugoGeneSymbol":"UXT","entrezGeneId":8409},{"hugoGeneSymbol":"UXT-AS1","entrezGeneId":100133957},{"hugoGeneSymbol":"VAC14","entrezGeneId":55697},{"hugoGeneSymbol":"VAC14-AS1","entrezGeneId":100130894},{"hugoGeneSymbol":"VAMAS6","entrezGeneId":246319},{"hugoGeneSymbol":"VAMP1","entrezGeneId":6843},{"hugoGeneSymbol":"VAMP2","entrezGeneId":6844},{"hugoGeneSymbol":"VAMP3","entrezGeneId":9341},{"hugoGeneSymbol":"VAMP4","entrezGeneId":8674},{"hugoGeneSymbol":"VAMP5","entrezGeneId":10791},{"hugoGeneSymbol":"VAMP7","entrezGeneId":6845},{"hugoGeneSymbol":"VAMP8","entrezGeneId":8673},{"hugoGeneSymbol":"VANGL1","entrezGeneId":81839},{"hugoGeneSymbol":"VANGL2","entrezGeneId":57216},{"hugoGeneSymbol":"VAPA","entrezGeneId":9218},{"hugoGeneSymbol":"VAPB","entrezGeneId":9217},{"hugoGeneSymbol":"VARS","entrezGeneId":7407},{"hugoGeneSymbol":"VARS2","entrezGeneId":57176},{"hugoGeneSymbol":"VASH1","entrezGeneId":22846},{"hugoGeneSymbol":"VASH1-AS1","entrezGeneId":100506603},{"hugoGeneSymbol":"VASH2","entrezGeneId":79805},{"hugoGeneSymbol":"VASN","entrezGeneId":114990},{"hugoGeneSymbol":"VASP","entrezGeneId":7408},{"hugoGeneSymbol":"VAT1","entrezGeneId":10493},{"hugoGeneSymbol":"VAT1L","entrezGeneId":57687},{"hugoGeneSymbol":"VAV1","entrezGeneId":7409},{"hugoGeneSymbol":"VAV2","entrezGeneId":7410},{"hugoGeneSymbol":"VAV3","entrezGeneId":10451},{"hugoGeneSymbol":"VAV3-AS1","entrezGeneId":100873946},{"hugoGeneSymbol":"VAX1","entrezGeneId":11023},{"hugoGeneSymbol":"VAX2","entrezGeneId":25806},{"hugoGeneSymbol":"VBP1","entrezGeneId":7411},{"hugoGeneSymbol":"VCAM1","entrezGeneId":7412},{"hugoGeneSymbol":"VCAN","entrezGeneId":1462},{"hugoGeneSymbol":"VCAN-AS1","entrezGeneId":105379054},{"hugoGeneSymbol":"VCL","entrezGeneId":7414},{"hugoGeneSymbol":"VCP","entrezGeneId":7415},{"hugoGeneSymbol":"VCPIP1","entrezGeneId":80124},{"hugoGeneSymbol":"VCPKMT","entrezGeneId":79609},{"hugoGeneSymbol":"VCX","entrezGeneId":26609},{"hugoGeneSymbol":"VCX2","entrezGeneId":51480},{"hugoGeneSymbol":"VCX3A","entrezGeneId":51481},{"hugoGeneSymbol":"VCX3B","entrezGeneId":425054},{"hugoGeneSymbol":"VCY","entrezGeneId":9084},{"hugoGeneSymbol":"VCY1B","entrezGeneId":353513},{"hugoGeneSymbol":"VDAC1","entrezGeneId":7416},{"hugoGeneSymbol":"VDAC1P1","entrezGeneId":642585},{"hugoGeneSymbol":"VDAC1P10","entrezGeneId":643536},{"hugoGeneSymbol":"VDAC1P11","entrezGeneId":100310841},{"hugoGeneSymbol":"VDAC1P12","entrezGeneId":100874289},{"hugoGeneSymbol":"VDAC1P13","entrezGeneId":100420568},{"hugoGeneSymbol":"VDAC1P2","entrezGeneId":10064},{"hugoGeneSymbol":"VDAC1P3","entrezGeneId":100310838},{"hugoGeneSymbol":"VDAC1P4","entrezGeneId":7418},{"hugoGeneSymbol":"VDAC1P5","entrezGeneId":10187},{"hugoGeneSymbol":"VDAC1P6","entrezGeneId":359800},{"hugoGeneSymbol":"VDAC1P7","entrezGeneId":100310839},{"hugoGeneSymbol":"VDAC1P8","entrezGeneId":100310840},{"hugoGeneSymbol":"VDAC1P9","entrezGeneId":391106},{"hugoGeneSymbol":"VDAC2","entrezGeneId":7417},{"hugoGeneSymbol":"VDAC2P1","entrezGeneId":54015},{"hugoGeneSymbol":"VDAC2P2","entrezGeneId":643996},{"hugoGeneSymbol":"VDAC2P3","entrezGeneId":401959},{"hugoGeneSymbol":"VDAC2P4","entrezGeneId":100420574},{"hugoGeneSymbol":"VDAC3","entrezGeneId":7419},{"hugoGeneSymbol":"VDAC3P1","entrezGeneId":341965},{"hugoGeneSymbol":"VDI","entrezGeneId":7420},{"hugoGeneSymbol":"VDR","entrezGeneId":7421},{"hugoGeneSymbol":"VEGFA","entrezGeneId":7422},{"hugoGeneSymbol":"VEGFB","entrezGeneId":7423},{"hugoGeneSymbol":"VEGFC","entrezGeneId":7424},{"hugoGeneSymbol":"VEGFD","entrezGeneId":2277},{"hugoGeneSymbol":"VENTX","entrezGeneId":27287},{"hugoGeneSymbol":"VENTXP1","entrezGeneId":139538},{"hugoGeneSymbol":"VENTXP2","entrezGeneId":100287345},{"hugoGeneSymbol":"VENTXP3","entrezGeneId":349814},{"hugoGeneSymbol":"VENTXP4","entrezGeneId":152101},{"hugoGeneSymbol":"VENTXP5","entrezGeneId":442384},{"hugoGeneSymbol":"VENTXP6","entrezGeneId":552879},{"hugoGeneSymbol":"VENTXP7","entrezGeneId":391518},{"hugoGeneSymbol":"VEPH1","entrezGeneId":79674},{"hugoGeneSymbol":"VEZF1","entrezGeneId":7716},{"hugoGeneSymbol":"VEZF1P1","entrezGeneId":647319},{"hugoGeneSymbol":"VEZT","entrezGeneId":55591},{"hugoGeneSymbol":"VGF","entrezGeneId":7425},{"hugoGeneSymbol":"VGLL1","entrezGeneId":51442},{"hugoGeneSymbol":"VGLL2","entrezGeneId":245806},{"hugoGeneSymbol":"VGLL3","entrezGeneId":389136},{"hugoGeneSymbol":"VGLL4","entrezGeneId":9686},{"hugoGeneSymbol":"VHL","entrezGeneId":7428},{"hugoGeneSymbol":"VHLL","entrezGeneId":391104},{"hugoGeneSymbol":"VIL1","entrezGeneId":7429},{"hugoGeneSymbol":"VILL","entrezGeneId":50853},{"hugoGeneSymbol":"VIM","entrezGeneId":7431},{"hugoGeneSymbol":"VIM-AS1","entrezGeneId":100507347},{"hugoGeneSymbol":"VIM2P","entrezGeneId":100130535},{"hugoGeneSymbol":"VIP","entrezGeneId":7432},{"hugoGeneSymbol":"VIPAS39","entrezGeneId":63894},{"hugoGeneSymbol":"VIPR1","entrezGeneId":7433},{"hugoGeneSymbol":"VIPR1-AS1","entrezGeneId":100874007},{"hugoGeneSymbol":"VIPR2","entrezGeneId":7434},{"hugoGeneSymbol":"VIRMA","entrezGeneId":25962},{"hugoGeneSymbol":"VIS1","entrezGeneId":7435},{"hugoGeneSymbol":"VIT","entrezGeneId":5212},{"hugoGeneSymbol":"VKORC1","entrezGeneId":79001},{"hugoGeneSymbol":"VKORC1L1","entrezGeneId":154807},{"hugoGeneSymbol":"VKORC1P1","entrezGeneId":414355},{"hugoGeneSymbol":"VKORC1P2","entrezGeneId":414357},{"hugoGeneSymbol":"VLDLR","entrezGeneId":7436},{"hugoGeneSymbol":"VLDLR-AS1","entrezGeneId":401491},{"hugoGeneSymbol":"VMA21","entrezGeneId":203547},{"hugoGeneSymbol":"VMAC","entrezGeneId":400673},{"hugoGeneSymbol":"VMD1","entrezGeneId":7438},{"hugoGeneSymbol":"VMO1","entrezGeneId":284013},{"hugoGeneSymbol":"VMP1","entrezGeneId":81671},{"hugoGeneSymbol":"VN1R1","entrezGeneId":57191},{"hugoGeneSymbol":"VN1R100P","entrezGeneId":100312846},{"hugoGeneSymbol":"VN1R101P","entrezGeneId":729885},{"hugoGeneSymbol":"VN1R102P","entrezGeneId":100312847},{"hugoGeneSymbol":"VN1R103P","entrezGeneId":730066},{"hugoGeneSymbol":"VN1R104P","entrezGeneId":100288195},{"hugoGeneSymbol":"VN1R105P","entrezGeneId":100288264},{"hugoGeneSymbol":"VN1R106P","entrezGeneId":100312848},{"hugoGeneSymbol":"VN1R107P","entrezGeneId":100312849},{"hugoGeneSymbol":"VN1R108P","entrezGeneId":100312850},{"hugoGeneSymbol":"VN1R109P","entrezGeneId":100312851},{"hugoGeneSymbol":"VN1R10P","entrezGeneId":387316},{"hugoGeneSymbol":"VN1R110P","entrezGeneId":100312803},{"hugoGeneSymbol":"VN1R111P","entrezGeneId":100312852},{"hugoGeneSymbol":"VN1R112P","entrezGeneId":100312854},{"hugoGeneSymbol":"VN1R11P","entrezGeneId":387317},{"hugoGeneSymbol":"VN1R12P","entrezGeneId":387321},{"hugoGeneSymbol":"VN1R13P","entrezGeneId":387322},{"hugoGeneSymbol":"VN1R14P","entrezGeneId":387320},{"hugoGeneSymbol":"VN1R15P","entrezGeneId":100312804},{"hugoGeneSymbol":"VN1R16P","entrezGeneId":100312805},{"hugoGeneSymbol":"VN1R17P","entrezGeneId":441931},{"hugoGeneSymbol":"VN1R18P","entrezGeneId":100133087},{"hugoGeneSymbol":"VN1R19P","entrezGeneId":100312843},{"hugoGeneSymbol":"VN1R2","entrezGeneId":317701},{"hugoGeneSymbol":"VN1R20P","entrezGeneId":100312775},{"hugoGeneSymbol":"VN1R21P","entrezGeneId":100128368},{"hugoGeneSymbol":"VN1R22P","entrezGeneId":100312844},{"hugoGeneSymbol":"VN1R23P","entrezGeneId":100312845},{"hugoGeneSymbol":"VN1R24P","entrezGeneId":100312781},{"hugoGeneSymbol":"VN1R25P","entrezGeneId":100312782},{"hugoGeneSymbol":"VN1R26P","entrezGeneId":100312783},{"hugoGeneSymbol":"VN1R27P","entrezGeneId":100312784},{"hugoGeneSymbol":"VN1R28P","entrezGeneId":100312785},{"hugoGeneSymbol":"VN1R29P","entrezGeneId":100312786},{"hugoGeneSymbol":"VN1R3","entrezGeneId":317702},{"hugoGeneSymbol":"VN1R30P","entrezGeneId":100287919},{"hugoGeneSymbol":"VN1R31P","entrezGeneId":100312787},{"hugoGeneSymbol":"VN1R32P","entrezGeneId":100312788},{"hugoGeneSymbol":"VN1R33P","entrezGeneId":100288022},{"hugoGeneSymbol":"VN1R34P","entrezGeneId":100129587},{"hugoGeneSymbol":"VN1R35P","entrezGeneId":100312789},{"hugoGeneSymbol":"VN1R36P","entrezGeneId":100312790},{"hugoGeneSymbol":"VN1R37P","entrezGeneId":402273},{"hugoGeneSymbol":"VN1R38P","entrezGeneId":100131065},{"hugoGeneSymbol":"VN1R39P","entrezGeneId":100312791},{"hugoGeneSymbol":"VN1R4","entrezGeneId":317703},{"hugoGeneSymbol":"VN1R40P","entrezGeneId":100312792},{"hugoGeneSymbol":"VN1R41P","entrezGeneId":100312793},{"hugoGeneSymbol":"VN1R42P","entrezGeneId":100312794},{"hugoGeneSymbol":"VN1R43P","entrezGeneId":100312795},{"hugoGeneSymbol":"VN1R44P","entrezGeneId":100312855},{"hugoGeneSymbol":"VN1R45P","entrezGeneId":100312796},{"hugoGeneSymbol":"VN1R46P","entrezGeneId":100131789},{"hugoGeneSymbol":"VN1R47P","entrezGeneId":100312797},{"hugoGeneSymbol":"VN1R48P","entrezGeneId":100312798},{"hugoGeneSymbol":"VN1R49P","entrezGeneId":100312799},{"hugoGeneSymbol":"VN1R5","entrezGeneId":317705},{"hugoGeneSymbol":"VN1R51P","entrezGeneId":100312801},{"hugoGeneSymbol":"VN1R52P","entrezGeneId":100312802},{"hugoGeneSymbol":"VN1R53P","entrezGeneId":100312806},{"hugoGeneSymbol":"VN1R54P","entrezGeneId":100312807},{"hugoGeneSymbol":"VN1R55P","entrezGeneId":100312808},{"hugoGeneSymbol":"VN1R56P","entrezGeneId":100312774},{"hugoGeneSymbol":"VN1R57P","entrezGeneId":100312809},{"hugoGeneSymbol":"VN1R58P","entrezGeneId":100312810},{"hugoGeneSymbol":"VN1R59P","entrezGeneId":100312811},{"hugoGeneSymbol":"VN1R60P","entrezGeneId":100312812},{"hugoGeneSymbol":"VN1R61P","entrezGeneId":100312813},{"hugoGeneSymbol":"VN1R62P","entrezGeneId":100312814},{"hugoGeneSymbol":"VN1R63P","entrezGeneId":100312815},{"hugoGeneSymbol":"VN1R64P","entrezGeneId":730196},{"hugoGeneSymbol":"VN1R65P","entrezGeneId":100128384},{"hugoGeneSymbol":"VN1R66P","entrezGeneId":100129315},{"hugoGeneSymbol":"VN1R67P","entrezGeneId":100131118},{"hugoGeneSymbol":"VN1R68P","entrezGeneId":100131688},{"hugoGeneSymbol":"VN1R69P","entrezGeneId":100312816},{"hugoGeneSymbol":"VN1R6P","entrezGeneId":653753},{"hugoGeneSymbol":"VN1R70P","entrezGeneId":100130059},{"hugoGeneSymbol":"VN1R71P","entrezGeneId":100312817},{"hugoGeneSymbol":"VN1R72P","entrezGeneId":100312853},{"hugoGeneSymbol":"VN1R73P","entrezGeneId":100312818},{"hugoGeneSymbol":"VN1R74P","entrezGeneId":100312819},{"hugoGeneSymbol":"VN1R75P","entrezGeneId":100312820},{"hugoGeneSymbol":"VN1R76P","entrezGeneId":100312821},{"hugoGeneSymbol":"VN1R77P","entrezGeneId":100312822},{"hugoGeneSymbol":"VN1R78P","entrezGeneId":100312823},{"hugoGeneSymbol":"VN1R79P","entrezGeneId":100312824},{"hugoGeneSymbol":"VN1R7P","entrezGeneId":100132759},{"hugoGeneSymbol":"VN1R80P","entrezGeneId":100312825},{"hugoGeneSymbol":"VN1R81P","entrezGeneId":100312826},{"hugoGeneSymbol":"VN1R82P","entrezGeneId":100312827},{"hugoGeneSymbol":"VN1R83P","entrezGeneId":100312828},{"hugoGeneSymbol":"VN1R84P","entrezGeneId":100312829},{"hugoGeneSymbol":"VN1R85P","entrezGeneId":100312830},{"hugoGeneSymbol":"VN1R86P","entrezGeneId":100312831},{"hugoGeneSymbol":"VN1R87P","entrezGeneId":100312832},{"hugoGeneSymbol":"VN1R88P","entrezGeneId":100312833},{"hugoGeneSymbol":"VN1R89P","entrezGeneId":100312834},{"hugoGeneSymbol":"VN1R8P","entrezGeneId":54041},{"hugoGeneSymbol":"VN1R90P","entrezGeneId":100312835},{"hugoGeneSymbol":"VN1R91P","entrezGeneId":100312836},{"hugoGeneSymbol":"VN1R92P","entrezGeneId":100312837},{"hugoGeneSymbol":"VN1R93P","entrezGeneId":100312838},{"hugoGeneSymbol":"VN1R94P","entrezGeneId":100312839},{"hugoGeneSymbol":"VN1R95P","entrezGeneId":100131141},{"hugoGeneSymbol":"VN1R96P","entrezGeneId":100127969},{"hugoGeneSymbol":"VN1R97P","entrezGeneId":100312840},{"hugoGeneSymbol":"VN1R98P","entrezGeneId":100312841},{"hugoGeneSymbol":"VN1R99P","entrezGeneId":100312842},{"hugoGeneSymbol":"VN1R9P","entrezGeneId":317691},{"hugoGeneSymbol":"VN2R10P","entrezGeneId":100033398},{"hugoGeneSymbol":"VN2R11P","entrezGeneId":100033399},{"hugoGeneSymbol":"VN2R12P","entrezGeneId":100033400},{"hugoGeneSymbol":"VN2R13P","entrezGeneId":100033401},{"hugoGeneSymbol":"VN2R14P","entrezGeneId":100033402},{"hugoGeneSymbol":"VN2R15P","entrezGeneId":100033403},{"hugoGeneSymbol":"VN2R16P","entrezGeneId":100033404},{"hugoGeneSymbol":"VN2R17P","entrezGeneId":649186},{"hugoGeneSymbol":"VN2R18P","entrezGeneId":100033406},{"hugoGeneSymbol":"VN2R19P","entrezGeneId":100033407},{"hugoGeneSymbol":"VN2R1P","entrezGeneId":344760},{"hugoGeneSymbol":"VN2R20P","entrezGeneId":100033408},{"hugoGeneSymbol":"VN2R21P","entrezGeneId":100127050},{"hugoGeneSymbol":"VN2R2P","entrezGeneId":100033391},{"hugoGeneSymbol":"VN2R3P","entrezGeneId":100033392},{"hugoGeneSymbol":"VN2R6P","entrezGeneId":100033395},{"hugoGeneSymbol":"VN2R7P","entrezGeneId":100033396},{"hugoGeneSymbol":"VN2R9P","entrezGeneId":648315},{"hugoGeneSymbol":"VNN1","entrezGeneId":8876},{"hugoGeneSymbol":"VNN2","entrezGeneId":8875},{"hugoGeneSymbol":"VNN3","entrezGeneId":55350},{"hugoGeneSymbol":"VOPP1","entrezGeneId":81552},{"hugoGeneSymbol":"VPREB1","entrezGeneId":7441},{"hugoGeneSymbol":"VPREB3","entrezGeneId":29802},{"hugoGeneSymbol":"VPS11","entrezGeneId":55823},{"hugoGeneSymbol":"VPS13A","entrezGeneId":23230},{"hugoGeneSymbol":"VPS13A-AS1","entrezGeneId":100286938},{"hugoGeneSymbol":"VPS13B","entrezGeneId":157680},{"hugoGeneSymbol":"VPS13C","entrezGeneId":54832},{"hugoGeneSymbol":"VPS13D","entrezGeneId":55187},{"hugoGeneSymbol":"VPS16","entrezGeneId":64601},{"hugoGeneSymbol":"VPS18","entrezGeneId":57617},{"hugoGeneSymbol":"VPS25","entrezGeneId":84313},{"hugoGeneSymbol":"VPS25P1","entrezGeneId":441899},{"hugoGeneSymbol":"VPS26A","entrezGeneId":9559},{"hugoGeneSymbol":"VPS26AP1","entrezGeneId":100421731},{"hugoGeneSymbol":"VPS26B","entrezGeneId":112936},{"hugoGeneSymbol":"VPS26BP1","entrezGeneId":100421729},{"hugoGeneSymbol":"VPS26C","entrezGeneId":10311},{"hugoGeneSymbol":"VPS28","entrezGeneId":51160},{"hugoGeneSymbol":"VPS29","entrezGeneId":51699},{"hugoGeneSymbol":"VPS33A","entrezGeneId":65082},{"hugoGeneSymbol":"VPS33B","entrezGeneId":26276},{"hugoGeneSymbol":"VPS33B-DT","entrezGeneId":101926911},{"hugoGeneSymbol":"VPS35","entrezGeneId":55737},{"hugoGeneSymbol":"VPS35L","entrezGeneId":57020},{"hugoGeneSymbol":"VPS35P1","entrezGeneId":100422055},{"hugoGeneSymbol":"VPS36","entrezGeneId":51028},{"hugoGeneSymbol":"VPS37A","entrezGeneId":137492},{"hugoGeneSymbol":"VPS37B","entrezGeneId":79720},{"hugoGeneSymbol":"VPS37C","entrezGeneId":55048},{"hugoGeneSymbol":"VPS37D","entrezGeneId":155382},{"hugoGeneSymbol":"VPS39","entrezGeneId":23339},{"hugoGeneSymbol":"VPS41","entrezGeneId":27072},{"hugoGeneSymbol":"VPS45","entrezGeneId":11311},{"hugoGeneSymbol":"VPS4A","entrezGeneId":27183},{"hugoGeneSymbol":"VPS4B","entrezGeneId":9525},{"hugoGeneSymbol":"VPS50","entrezGeneId":55610},{"hugoGeneSymbol":"VPS51","entrezGeneId":738},{"hugoGeneSymbol":"VPS52","entrezGeneId":6293},{"hugoGeneSymbol":"VPS53","entrezGeneId":55275},{"hugoGeneSymbol":"VPS54","entrezGeneId":51542},{"hugoGeneSymbol":"VPS72","entrezGeneId":6944},{"hugoGeneSymbol":"VPS8","entrezGeneId":23355},{"hugoGeneSymbol":"VPS9D1","entrezGeneId":9605},{"hugoGeneSymbol":"VPS9D1-AS1","entrezGeneId":100128881},{"hugoGeneSymbol":"VRK1","entrezGeneId":7443},{"hugoGeneSymbol":"VRK2","entrezGeneId":7444},{"hugoGeneSymbol":"VRK3","entrezGeneId":51231},{"hugoGeneSymbol":"VRTN","entrezGeneId":55237},{"hugoGeneSymbol":"VSIG1","entrezGeneId":340547},{"hugoGeneSymbol":"VSIG10","entrezGeneId":54621},{"hugoGeneSymbol":"VSIG10L","entrezGeneId":147645},{"hugoGeneSymbol":"VSIG10L2","entrezGeneId":338667},{"hugoGeneSymbol":"VSIG2","entrezGeneId":23584},{"hugoGeneSymbol":"VSIG4","entrezGeneId":11326},{"hugoGeneSymbol":"VSIG8","entrezGeneId":391123},{"hugoGeneSymbol":"VSIR","entrezGeneId":64115},{"hugoGeneSymbol":"VSNL1","entrezGeneId":7447},{"hugoGeneSymbol":"VSPA","entrezGeneId":59332},{"hugoGeneSymbol":"VSTM1","entrezGeneId":284415},{"hugoGeneSymbol":"VSTM2A","entrezGeneId":222008},{"hugoGeneSymbol":"VSTM2A-OT1","entrezGeneId":285878},{"hugoGeneSymbol":"VSTM2B","entrezGeneId":342865},{"hugoGeneSymbol":"VSTM2L","entrezGeneId":128434},{"hugoGeneSymbol":"VSTM4","entrezGeneId":196740},{"hugoGeneSymbol":"VSTM5","entrezGeneId":387804},{"hugoGeneSymbol":"VSX1","entrezGeneId":30813},{"hugoGeneSymbol":"VSX2","entrezGeneId":338917},{"hugoGeneSymbol":"VTA1","entrezGeneId":51534},{"hugoGeneSymbol":"VTA1P1","entrezGeneId":106481708},{"hugoGeneSymbol":"VTA1P2","entrezGeneId":100128412},{"hugoGeneSymbol":"VTCN1","entrezGeneId":79679},{"hugoGeneSymbol":"VTI1A","entrezGeneId":143187},{"hugoGeneSymbol":"VTI1B","entrezGeneId":10490},{"hugoGeneSymbol":"VTI1BP1","entrezGeneId":391559},{"hugoGeneSymbol":"VTI1BP2","entrezGeneId":389246},{"hugoGeneSymbol":"VTI1BP3","entrezGeneId":100127976},{"hugoGeneSymbol":"VTI1BP4","entrezGeneId":100422540},{"hugoGeneSymbol":"VTN","entrezGeneId":7448},{"hugoGeneSymbol":"VTRNA1-1","entrezGeneId":56664},{"hugoGeneSymbol":"VTRNA1-2","entrezGeneId":56663},{"hugoGeneSymbol":"VTRNA1-3","entrezGeneId":56662},{"hugoGeneSymbol":"VTRNA2-1","entrezGeneId":100126299},{"hugoGeneSymbol":"VTRNA2-2P","entrezGeneId":106479538},{"hugoGeneSymbol":"VTRNA3-1P","entrezGeneId":100144435},{"hugoGeneSymbol":"VUR","entrezGeneId":54113},{"hugoGeneSymbol":"VUR4","entrezGeneId":100820757},{"hugoGeneSymbol":"VUR5","entrezGeneId":100820760},{"hugoGeneSymbol":"VUR6","entrezGeneId":100820763},{"hugoGeneSymbol":"VUR7","entrezGeneId":102095631},{"hugoGeneSymbol":"VV","entrezGeneId":619537},{"hugoGeneSymbol":"VVS","entrezGeneId":105031671},{"hugoGeneSymbol":"VWA1","entrezGeneId":64856},{"hugoGeneSymbol":"VWA2","entrezGeneId":340706},{"hugoGeneSymbol":"VWA3A","entrezGeneId":146177},{"hugoGeneSymbol":"VWA3B","entrezGeneId":200403},{"hugoGeneSymbol":"VWA5A","entrezGeneId":4013},{"hugoGeneSymbol":"VWA5B1","entrezGeneId":127731},{"hugoGeneSymbol":"VWA5B2","entrezGeneId":90113},{"hugoGeneSymbol":"VWA7","entrezGeneId":80737},{"hugoGeneSymbol":"VWA8","entrezGeneId":23078},{"hugoGeneSymbol":"VWA8-AS1","entrezGeneId":100507240},{"hugoGeneSymbol":"VWA8P1","entrezGeneId":106480787},{"hugoGeneSymbol":"VWC2","entrezGeneId":375567},{"hugoGeneSymbol":"VWC2L","entrezGeneId":402117},{"hugoGeneSymbol":"VWC2L-IT1","entrezGeneId":100885780},{"hugoGeneSymbol":"VWCE","entrezGeneId":220001},{"hugoGeneSymbol":"VWDE","entrezGeneId":221806},{"hugoGeneSymbol":"VWF","entrezGeneId":7450},{"hugoGeneSymbol":"VWFP1","entrezGeneId":7451},{"hugoGeneSymbol":"VWSM","entrezGeneId":100917},{"hugoGeneSymbol":"WAC","entrezGeneId":51322},{"hugoGeneSymbol":"WAC-AS1","entrezGeneId":220906},{"hugoGeneSymbol":"WAGRO","entrezGeneId":100233159},{"hugoGeneSymbol":"WAPL","entrezGeneId":23063},{"hugoGeneSymbol":"WARS","entrezGeneId":7453},{"hugoGeneSymbol":"WARS2","entrezGeneId":10352},{"hugoGeneSymbol":"WARS2-IT1","entrezGeneId":104472716},{"hugoGeneSymbol":"WARS2P1","entrezGeneId":100421633},{"hugoGeneSymbol":"WARSP1","entrezGeneId":341112},{"hugoGeneSymbol":"WAS","entrezGeneId":7454},{"hugoGeneSymbol":"WASF1","entrezGeneId":8936},{"hugoGeneSymbol":"WASF1P1","entrezGeneId":100131624},{"hugoGeneSymbol":"WASF2","entrezGeneId":10163},{"hugoGeneSymbol":"WASF3","entrezGeneId":10810},{"hugoGeneSymbol":"WASF3-AS1","entrezGeneId":100874061},{"hugoGeneSymbol":"WASF4P","entrezGeneId":644739},{"hugoGeneSymbol":"WASF5P","entrezGeneId":387122},{"hugoGeneSymbol":"WASH2P","entrezGeneId":375260},{"hugoGeneSymbol":"WASH3P","entrezGeneId":374666},{"hugoGeneSymbol":"WASH4P","entrezGeneId":374677},{"hugoGeneSymbol":"WASH5P","entrezGeneId":375690},{"hugoGeneSymbol":"WASH6P","entrezGeneId":653440},{"hugoGeneSymbol":"WASH7P","entrezGeneId":653635},{"hugoGeneSymbol":"WASHC1","entrezGeneId":100287171},{"hugoGeneSymbol":"WASHC2A","entrezGeneId":387680},{"hugoGeneSymbol":"WASHC2C","entrezGeneId":253725},{"hugoGeneSymbol":"WASHC3","entrezGeneId":51019},{"hugoGeneSymbol":"WASHC4","entrezGeneId":23325},{"hugoGeneSymbol":"WASHC5","entrezGeneId":9897},{"hugoGeneSymbol":"WASHC5-AS1","entrezGeneId":106479020},{"hugoGeneSymbol":"WASIR1","entrezGeneId":100128260},{"hugoGeneSymbol":"WASIR2","entrezGeneId":100132169},{"hugoGeneSymbol":"WASL","entrezGeneId":8976},{"hugoGeneSymbol":"WBP1","entrezGeneId":23559},{"hugoGeneSymbol":"WBP11","entrezGeneId":51729},{"hugoGeneSymbol":"WBP11P1","entrezGeneId":441818},{"hugoGeneSymbol":"WBP1L","entrezGeneId":54838},{"hugoGeneSymbol":"WBP1LP1","entrezGeneId":106479029},{"hugoGeneSymbol":"WBP1LP10","entrezGeneId":106480326},{"hugoGeneSymbol":"WBP1LP11","entrezGeneId":106481969},{"hugoGeneSymbol":"WBP1LP12","entrezGeneId":106480327},{"hugoGeneSymbol":"WBP1LP2","entrezGeneId":100506330},{"hugoGeneSymbol":"WBP1LP3","entrezGeneId":106479031},{"hugoGeneSymbol":"WBP1LP4","entrezGeneId":106480779},{"hugoGeneSymbol":"WBP1LP5","entrezGeneId":106480780},{"hugoGeneSymbol":"WBP1LP6","entrezGeneId":106481797},{"hugoGeneSymbol":"WBP1LP7","entrezGeneId":106479030},{"hugoGeneSymbol":"WBP1LP8","entrezGeneId":106480325},{"hugoGeneSymbol":"WBP1LP9","entrezGeneId":107403079},{"hugoGeneSymbol":"WBP2","entrezGeneId":23558},{"hugoGeneSymbol":"WBP2NL","entrezGeneId":164684},{"hugoGeneSymbol":"WBP2P1","entrezGeneId":147468},{"hugoGeneSymbol":"WBP4","entrezGeneId":11193},{"hugoGeneSymbol":"WBS2","entrezGeneId":7457},{"hugoGeneSymbol":"WBSCR2","entrezGeneId":7459},{"hugoGeneSymbol":"WDCP","entrezGeneId":80304},{"hugoGeneSymbol":"WDFY1","entrezGeneId":57590},{"hugoGeneSymbol":"WDFY2","entrezGeneId":115825},{"hugoGeneSymbol":"WDFY3","entrezGeneId":23001},{"hugoGeneSymbol":"WDFY3-AS1","entrezGeneId":100874023},{"hugoGeneSymbol":"WDFY3-AS2","entrezGeneId":404201},{"hugoGeneSymbol":"WDFY4","entrezGeneId":57705},{"hugoGeneSymbol":"WDHD1","entrezGeneId":11169},{"hugoGeneSymbol":"WDPCP","entrezGeneId":51057},{"hugoGeneSymbol":"WDR1","entrezGeneId":9948},{"hugoGeneSymbol":"WDR11","entrezGeneId":55717},{"hugoGeneSymbol":"WDR11-AS1","entrezGeneId":283089},{"hugoGeneSymbol":"WDR12","entrezGeneId":55759},{"hugoGeneSymbol":"WDR13","entrezGeneId":64743},{"hugoGeneSymbol":"WDR17","entrezGeneId":116966},{"hugoGeneSymbol":"WDR18","entrezGeneId":57418},{"hugoGeneSymbol":"WDR19","entrezGeneId":57728},{"hugoGeneSymbol":"WDR20","entrezGeneId":91833},{"hugoGeneSymbol":"WDR24","entrezGeneId":84219},{"hugoGeneSymbol":"WDR25","entrezGeneId":79446},{"hugoGeneSymbol":"WDR26","entrezGeneId":80232},{"hugoGeneSymbol":"WDR27","entrezGeneId":253769},{"hugoGeneSymbol":"WDR3","entrezGeneId":10885},{"hugoGeneSymbol":"WDR31","entrezGeneId":114987},{"hugoGeneSymbol":"WDR33","entrezGeneId":55339},{"hugoGeneSymbol":"WDR34","entrezGeneId":89891},{"hugoGeneSymbol":"WDR35","entrezGeneId":57539},{"hugoGeneSymbol":"WDR36","entrezGeneId":134430},{"hugoGeneSymbol":"WDR37","entrezGeneId":22884},{"hugoGeneSymbol":"WDR38","entrezGeneId":401551},{"hugoGeneSymbol":"WDR4","entrezGeneId":10785},{"hugoGeneSymbol":"WDR41","entrezGeneId":55255},{"hugoGeneSymbol":"WDR43","entrezGeneId":23160},{"hugoGeneSymbol":"WDR44","entrezGeneId":54521},{"hugoGeneSymbol":"WDR45","entrezGeneId":11152},{"hugoGeneSymbol":"WDR45B","entrezGeneId":56270},{"hugoGeneSymbol":"WDR45BP1","entrezGeneId":646086},{"hugoGeneSymbol":"WDR45P1","entrezGeneId":594841},{"hugoGeneSymbol":"WDR46","entrezGeneId":9277},{"hugoGeneSymbol":"WDR47","entrezGeneId":22911},{"hugoGeneSymbol":"WDR48","entrezGeneId":57599},{"hugoGeneSymbol":"WDR49","entrezGeneId":151790},{"hugoGeneSymbol":"WDR5","entrezGeneId":11091},{"hugoGeneSymbol":"WDR53","entrezGeneId":348793},{"hugoGeneSymbol":"WDR54","entrezGeneId":84058},{"hugoGeneSymbol":"WDR55","entrezGeneId":54853},{"hugoGeneSymbol":"WDR59","entrezGeneId":79726},{"hugoGeneSymbol":"WDR5B","entrezGeneId":54554},{"hugoGeneSymbol":"WDR6","entrezGeneId":11180},{"hugoGeneSymbol":"WDR60","entrezGeneId":55112},{"hugoGeneSymbol":"WDR61","entrezGeneId":80349},{"hugoGeneSymbol":"WDR62","entrezGeneId":284403},{"hugoGeneSymbol":"WDR63","entrezGeneId":126820},{"hugoGeneSymbol":"WDR64","entrezGeneId":128025},{"hugoGeneSymbol":"WDR66","entrezGeneId":144406},{"hugoGeneSymbol":"WDR7","entrezGeneId":23335},{"hugoGeneSymbol":"WDR7-OT1","entrezGeneId":107985140},{"hugoGeneSymbol":"WDR70","entrezGeneId":55100},{"hugoGeneSymbol":"WDR72","entrezGeneId":256764},{"hugoGeneSymbol":"WDR73","entrezGeneId":84942},{"hugoGeneSymbol":"WDR74","entrezGeneId":54663},{"hugoGeneSymbol":"WDR75","entrezGeneId":84128},{"hugoGeneSymbol":"WDR76","entrezGeneId":79968},{"hugoGeneSymbol":"WDR77","entrezGeneId":79084},{"hugoGeneSymbol":"WDR78","entrezGeneId":79819},{"hugoGeneSymbol":"WDR81","entrezGeneId":124997},{"hugoGeneSymbol":"WDR82","entrezGeneId":80335},{"hugoGeneSymbol":"WDR82P1","entrezGeneId":728505},{"hugoGeneSymbol":"WDR82P2","entrezGeneId":441891},{"hugoGeneSymbol":"WDR83","entrezGeneId":84292},{"hugoGeneSymbol":"WDR83OS","entrezGeneId":51398},{"hugoGeneSymbol":"WDR86","entrezGeneId":349136},{"hugoGeneSymbol":"WDR86-AS1","entrezGeneId":100131176},{"hugoGeneSymbol":"WDR87","entrezGeneId":83889},{"hugoGeneSymbol":"WDR88","entrezGeneId":126248},{"hugoGeneSymbol":"WDR89","entrezGeneId":112840},{"hugoGeneSymbol":"WDR90","entrezGeneId":197335},{"hugoGeneSymbol":"WDR91","entrezGeneId":29062},{"hugoGeneSymbol":"WDR92","entrezGeneId":116143},{"hugoGeneSymbol":"WDR93","entrezGeneId":56964},{"hugoGeneSymbol":"WDR95P","entrezGeneId":100873795},{"hugoGeneSymbol":"WDR97","entrezGeneId":340390},{"hugoGeneSymbol":"WDSUB1","entrezGeneId":151525},{"hugoGeneSymbol":"WDTC1","entrezGeneId":23038},{"hugoGeneSymbol":"WDYHV1","entrezGeneId":55093},{"hugoGeneSymbol":"WEE1","entrezGeneId":7465},{"hugoGeneSymbol":"WEE2","entrezGeneId":494551},{"hugoGeneSymbol":"WEE2-AS1","entrezGeneId":285962},{"hugoGeneSymbol":"WFDC1","entrezGeneId":58189},{"hugoGeneSymbol":"WFDC10A","entrezGeneId":140832},{"hugoGeneSymbol":"WFDC10B","entrezGeneId":280664},{"hugoGeneSymbol":"WFDC11","entrezGeneId":259239},{"hugoGeneSymbol":"WFDC12","entrezGeneId":128488},{"hugoGeneSymbol":"WFDC13","entrezGeneId":164237},{"hugoGeneSymbol":"WFDC2","entrezGeneId":10406},{"hugoGeneSymbol":"WFDC21P","entrezGeneId":645638},{"hugoGeneSymbol":"WFDC3","entrezGeneId":140686},{"hugoGeneSymbol":"WFDC5","entrezGeneId":149708},{"hugoGeneSymbol":"WFDC6","entrezGeneId":140870},{"hugoGeneSymbol":"WFDC8","entrezGeneId":90199},{"hugoGeneSymbol":"WFDC9","entrezGeneId":259240},{"hugoGeneSymbol":"WFIKKN1","entrezGeneId":117166},{"hugoGeneSymbol":"WFIKKN2","entrezGeneId":124857},{"hugoGeneSymbol":"WFS1","entrezGeneId":7466},{"hugoGeneSymbol":"WG","entrezGeneId":474168},{"hugoGeneSymbol":"WHAMM","entrezGeneId":123720},{"hugoGeneSymbol":"WHAMMP1","entrezGeneId":100288615},{"hugoGeneSymbol":"WHAMMP2","entrezGeneId":440253},{"hugoGeneSymbol":"WHAMMP3","entrezGeneId":339005},{"hugoGeneSymbol":"WHCR","entrezGeneId":7467},{"hugoGeneSymbol":"WHRN","entrezGeneId":25861},{"hugoGeneSymbol":"WHSC1L2P","entrezGeneId":100128016},{"hugoGeneSymbol":"WI2-2373I1.2","entrezGeneId":100288524},{"hugoGeneSymbol":"WI2-87327B8.2","entrezGeneId":105372712},{"hugoGeneSymbol":"WIF1","entrezGeneId":11197},{"hugoGeneSymbol":"WIPF1","entrezGeneId":7456},{"hugoGeneSymbol":"WIPF2","entrezGeneId":147179},{"hugoGeneSymbol":"WIPF3","entrezGeneId":644150},{"hugoGeneSymbol":"WIPI1","entrezGeneId":55062},{"hugoGeneSymbol":"WIPI2","entrezGeneId":26100},{"hugoGeneSymbol":"WISP1","entrezGeneId":8840},{"hugoGeneSymbol":"WISP2","entrezGeneId":8839},{"hugoGeneSymbol":"WISP3","entrezGeneId":8838},{"hugoGeneSymbol":"WIZ","entrezGeneId":58525},{"hugoGeneSymbol":"WIZP1","entrezGeneId":645598},{"hugoGeneSymbol":"WLS","entrezGeneId":79971},{"hugoGeneSymbol":"WM1","entrezGeneId":100188787},{"hugoGeneSymbol":"WM2","entrezGeneId":100188811},{"hugoGeneSymbol":"WNK1","entrezGeneId":65125},{"hugoGeneSymbol":"WNK2","entrezGeneId":65268},{"hugoGeneSymbol":"WNK3","entrezGeneId":65267},{"hugoGeneSymbol":"WNK4","entrezGeneId":65266},{"hugoGeneSymbol":"WNT1","entrezGeneId":7471},{"hugoGeneSymbol":"WNT10A","entrezGeneId":80326},{"hugoGeneSymbol":"WNT10B","entrezGeneId":7480},{"hugoGeneSymbol":"WNT11","entrezGeneId":7481},{"hugoGeneSymbol":"WNT16","entrezGeneId":51384},{"hugoGeneSymbol":"WNT2","entrezGeneId":7472},{"hugoGeneSymbol":"WNT2B","entrezGeneId":7482},{"hugoGeneSymbol":"WNT3","entrezGeneId":7473},{"hugoGeneSymbol":"WNT3A","entrezGeneId":89780},{"hugoGeneSymbol":"WNT4","entrezGeneId":54361},{"hugoGeneSymbol":"WNT5A","entrezGeneId":7474},{"hugoGeneSymbol":"WNT5A-AS1","entrezGeneId":100874008},{"hugoGeneSymbol":"WNT5B","entrezGeneId":81029},{"hugoGeneSymbol":"WNT6","entrezGeneId":7475},{"hugoGeneSymbol":"WNT7A","entrezGeneId":7476},{"hugoGeneSymbol":"WNT7B","entrezGeneId":7477},{"hugoGeneSymbol":"WNT8A","entrezGeneId":7478},{"hugoGeneSymbol":"WNT8B","entrezGeneId":7479},{"hugoGeneSymbol":"WNT9A","entrezGeneId":7483},{"hugoGeneSymbol":"WNT9B","entrezGeneId":7484},{"hugoGeneSymbol":"WRAP53","entrezGeneId":55135},{"hugoGeneSymbol":"WRAP73","entrezGeneId":49856},{"hugoGeneSymbol":"WRB","entrezGeneId":7485},{"hugoGeneSymbol":"WRB-SH3BGR","entrezGeneId":106865373},{"hugoGeneSymbol":"WRBP1","entrezGeneId":256085},{"hugoGeneSymbol":"WRN","entrezGeneId":7486},{"hugoGeneSymbol":"WRNIP1","entrezGeneId":56897},{"hugoGeneSymbol":"WS2B","entrezGeneId":7488},{"hugoGeneSymbol":"WS2C","entrezGeneId":170594},{"hugoGeneSymbol":"WSB1","entrezGeneId":26118},{"hugoGeneSymbol":"WSB2","entrezGeneId":55884},{"hugoGeneSymbol":"WSCD1","entrezGeneId":23302},{"hugoGeneSymbol":"WSCD2","entrezGeneId":9671},{"hugoGeneSymbol":"WSPAR","entrezGeneId":105664404},{"hugoGeneSymbol":"WT1","entrezGeneId":7490},{"hugoGeneSymbol":"WT1-AS","entrezGeneId":51352},{"hugoGeneSymbol":"WT2","entrezGeneId":7491},{"hugoGeneSymbol":"WT3","entrezGeneId":8136},{"hugoGeneSymbol":"WT4","entrezGeneId":8151},{"hugoGeneSymbol":"WTAP","entrezGeneId":9589},{"hugoGeneSymbol":"WTAPP1","entrezGeneId":100288077},{"hugoGeneSymbol":"WTIP","entrezGeneId":126374},{"hugoGeneSymbol":"WTRS","entrezGeneId":619509},{"hugoGeneSymbol":"WWC1","entrezGeneId":23286},{"hugoGeneSymbol":"WWC2","entrezGeneId":80014},{"hugoGeneSymbol":"WWC2-AS1","entrezGeneId":101928734},{"hugoGeneSymbol":"WWC2-AS2","entrezGeneId":152641},{"hugoGeneSymbol":"WWC3","entrezGeneId":55841},{"hugoGeneSymbol":"WWC3-AS1","entrezGeneId":100873953},{"hugoGeneSymbol":"WWOX","entrezGeneId":51741},{"hugoGeneSymbol":"WWOX-AS1","entrezGeneId":102724047},{"hugoGeneSymbol":"WWP1","entrezGeneId":11059},{"hugoGeneSymbol":"WWP1P1","entrezGeneId":339843},{"hugoGeneSymbol":"WWP2","entrezGeneId":11060},{"hugoGeneSymbol":"WWTR1","entrezGeneId":25937},{"hugoGeneSymbol":"WWTR1-AS1","entrezGeneId":100128025},{"hugoGeneSymbol":"WWTR1-IT1","entrezGeneId":106478977},{"hugoGeneSymbol":"XAB2","entrezGeneId":56949},{"hugoGeneSymbol":"XACT","entrezGeneId":105463123},{"hugoGeneSymbol":"XAF1","entrezGeneId":54739},{"hugoGeneSymbol":"XAGE-4","entrezGeneId":139629},{"hugoGeneSymbol":"XAGE1A","entrezGeneId":653220},{"hugoGeneSymbol":"XAGE1B","entrezGeneId":653067},{"hugoGeneSymbol":"XAGE2","entrezGeneId":9502},{"hugoGeneSymbol":"XAGE3","entrezGeneId":170626},{"hugoGeneSymbol":"XAGE5","entrezGeneId":170627},{"hugoGeneSymbol":"XBP1","entrezGeneId":7494},{"hugoGeneSymbol":"XBP1P1","entrezGeneId":7495},{"hugoGeneSymbol":"XCE","entrezGeneId":7497},{"hugoGeneSymbol":"XCL1","entrezGeneId":6375},{"hugoGeneSymbol":"XCL2","entrezGeneId":6846},{"hugoGeneSymbol":"XCR1","entrezGeneId":2829},{"hugoGeneSymbol":"XDH","entrezGeneId":7498},{"hugoGeneSymbol":"XECD","entrezGeneId":100302510},{"hugoGeneSymbol":"XG","entrezGeneId":7499},{"hugoGeneSymbol":"XGR","entrezGeneId":7501},{"hugoGeneSymbol":"XGY1","entrezGeneId":7500},{"hugoGeneSymbol":"XGY2","entrezGeneId":100132596},{"hugoGeneSymbol":"XIAP","entrezGeneId":331},{"hugoGeneSymbol":"XIAP-AS1","entrezGeneId":106480735},{"hugoGeneSymbol":"XIAPP1","entrezGeneId":100996851},{"hugoGeneSymbol":"XIAPP2","entrezGeneId":100420509},{"hugoGeneSymbol":"XIAPP3","entrezGeneId":100128413},{"hugoGeneSymbol":"XIC","entrezGeneId":7502},{"hugoGeneSymbol":"XIRP1","entrezGeneId":165904},{"hugoGeneSymbol":"XIRP2","entrezGeneId":129446},{"hugoGeneSymbol":"XIRP2-AS1","entrezGeneId":100874011},{"hugoGeneSymbol":"XIST","entrezGeneId":7503},{"hugoGeneSymbol":"XK","entrezGeneId":7504},{"hugoGeneSymbol":"XKR3","entrezGeneId":150165},{"hugoGeneSymbol":"XKR4","entrezGeneId":114786},{"hugoGeneSymbol":"XKR5","entrezGeneId":389610},{"hugoGeneSymbol":"XKR6","entrezGeneId":286046},{"hugoGeneSymbol":"XKR7","entrezGeneId":343702},{"hugoGeneSymbol":"XKR8","entrezGeneId":55113},{"hugoGeneSymbol":"XKR9","entrezGeneId":389668},{"hugoGeneSymbol":"XKRX","entrezGeneId":402415},{"hugoGeneSymbol":"XKRY","entrezGeneId":9082},{"hugoGeneSymbol":"XKRY2","entrezGeneId":353515},{"hugoGeneSymbol":"XKRYP1","entrezGeneId":379028},{"hugoGeneSymbol":"XKRYP2","entrezGeneId":379029},{"hugoGeneSymbol":"XKRYP3","entrezGeneId":379030},{"hugoGeneSymbol":"XKRYP4","entrezGeneId":379031},{"hugoGeneSymbol":"XKRYP5","entrezGeneId":379032},{"hugoGeneSymbol":"XKRYP6","entrezGeneId":379033},{"hugoGeneSymbol":"XLOC_007697","entrezGeneId":105500239},{"hugoGeneSymbol":"XLOC_008559","entrezGeneId":105378427},{"hugoGeneSymbol":"XLOC_009911","entrezGeneId":105500240},{"hugoGeneSymbol":"XM","entrezGeneId":7506},{"hugoGeneSymbol":"XPA","entrezGeneId":7507},{"hugoGeneSymbol":"XPC","entrezGeneId":7508},{"hugoGeneSymbol":"XPNPEP1","entrezGeneId":7511},{"hugoGeneSymbol":"XPNPEP2","entrezGeneId":7512},{"hugoGeneSymbol":"XPNPEP3","entrezGeneId":63929},{"hugoGeneSymbol":"XPO1","entrezGeneId":7514},{"hugoGeneSymbol":"XPO4","entrezGeneId":64328},{"hugoGeneSymbol":"XPO5","entrezGeneId":57510},{"hugoGeneSymbol":"XPO6","entrezGeneId":23214},{"hugoGeneSymbol":"XPO7","entrezGeneId":23039},{"hugoGeneSymbol":"XPOT","entrezGeneId":11260},{"hugoGeneSymbol":"XPOTP1","entrezGeneId":170559},{"hugoGeneSymbol":"XPR1","entrezGeneId":9213},{"hugoGeneSymbol":"XRCC1","entrezGeneId":7515},{"hugoGeneSymbol":"XRCC2","entrezGeneId":7516},{"hugoGeneSymbol":"XRCC3","entrezGeneId":7517},{"hugoGeneSymbol":"XRCC4","entrezGeneId":7518},{"hugoGeneSymbol":"XRCC5","entrezGeneId":7520},{"hugoGeneSymbol":"XRCC6","entrezGeneId":2547},{"hugoGeneSymbol":"XRCC6P1","entrezGeneId":387703},{"hugoGeneSymbol":"XRCC6P2","entrezGeneId":389901},{"hugoGeneSymbol":"XRCC6P3","entrezGeneId":127086},{"hugoGeneSymbol":"XRCC6P4","entrezGeneId":100422546},{"hugoGeneSymbol":"XRCC6P5","entrezGeneId":442459},{"hugoGeneSymbol":"XRCC8","entrezGeneId":7521},{"hugoGeneSymbol":"XRN1","entrezGeneId":54464},{"hugoGeneSymbol":"XRN2","entrezGeneId":22803},{"hugoGeneSymbol":"XRRA1","entrezGeneId":143570},{"hugoGeneSymbol":"XRS","entrezGeneId":8102},{"hugoGeneSymbol":"XS","entrezGeneId":7523},{"hugoGeneSymbol":"XWNPEP","entrezGeneId":7524},{"hugoGeneSymbol":"XXYLT1","entrezGeneId":152002},{"hugoGeneSymbol":"XXYLT1-AS1","entrezGeneId":100874528},{"hugoGeneSymbol":"XXYLT1-AS2","entrezGeneId":101410543},{"hugoGeneSymbol":"XYLB","entrezGeneId":9942},{"hugoGeneSymbol":"XYLT1","entrezGeneId":64131},{"hugoGeneSymbol":"XYLT2","entrezGeneId":64132},{"hugoGeneSymbol":"YAE1D1","entrezGeneId":57002},{"hugoGeneSymbol":"YAF2","entrezGeneId":10138},{"hugoGeneSymbol":"YAM1","entrezGeneId":107161157},{"hugoGeneSymbol":"YAP1","entrezGeneId":10413},{"hugoGeneSymbol":"YAP1P1","entrezGeneId":442266},{"hugoGeneSymbol":"YAP1P2","entrezGeneId":100419909},{"hugoGeneSymbol":"YAP1P3","entrezGeneId":100419883},{"hugoGeneSymbol":"YARS","entrezGeneId":8565},{"hugoGeneSymbol":"YARS2","entrezGeneId":51067},{"hugoGeneSymbol":"YBEY","entrezGeneId":54059},{"hugoGeneSymbol":"YBX1","entrezGeneId":4904},{"hugoGeneSymbol":"YBX1P1","entrezGeneId":50631},{"hugoGeneSymbol":"YBX1P10","entrezGeneId":158373},{"hugoGeneSymbol":"YBX1P2","entrezGeneId":646531},{"hugoGeneSymbol":"YBX1P3","entrezGeneId":100861556},{"hugoGeneSymbol":"YBX1P4","entrezGeneId":100131012},{"hugoGeneSymbol":"YBX1P5","entrezGeneId":100861569},{"hugoGeneSymbol":"YBX1P6","entrezGeneId":402375},{"hugoGeneSymbol":"YBX1P7","entrezGeneId":100861431},{"hugoGeneSymbol":"YBX1P8","entrezGeneId":100861476},{"hugoGeneSymbol":"YBX1P9","entrezGeneId":100861470},{"hugoGeneSymbol":"YBX2","entrezGeneId":51087},{"hugoGeneSymbol":"YBX2P1","entrezGeneId":100124332},{"hugoGeneSymbol":"YBX3","entrezGeneId":8531},{"hugoGeneSymbol":"YBX3P1","entrezGeneId":440359},{"hugoGeneSymbol":"YDJC","entrezGeneId":150223},{"hugoGeneSymbol":"YEATS2","entrezGeneId":55689},{"hugoGeneSymbol":"YEATS2-AS1","entrezGeneId":100874113},{"hugoGeneSymbol":"YEATS4","entrezGeneId":8089},{"hugoGeneSymbol":"YES1","entrezGeneId":7525},{"hugoGeneSymbol":"YES1P1","entrezGeneId":7526},{"hugoGeneSymbol":"YIF1A","entrezGeneId":10897},{"hugoGeneSymbol":"YIF1B","entrezGeneId":90522},{"hugoGeneSymbol":"YIPF1","entrezGeneId":54432},{"hugoGeneSymbol":"YIPF2","entrezGeneId":78992},{"hugoGeneSymbol":"YIPF3","entrezGeneId":25844},{"hugoGeneSymbol":"YIPF4","entrezGeneId":84272},{"hugoGeneSymbol":"YIPF5","entrezGeneId":81555},{"hugoGeneSymbol":"YIPF6","entrezGeneId":286451},{"hugoGeneSymbol":"YIPF7","entrezGeneId":285525},{"hugoGeneSymbol":"YJEFN3","entrezGeneId":374887},{"hugoGeneSymbol":"YJU2","entrezGeneId":55702},{"hugoGeneSymbol":"YKT6","entrezGeneId":10652},{"hugoGeneSymbol":"YLPM1","entrezGeneId":56252},{"hugoGeneSymbol":"YME1L1","entrezGeneId":10730},{"hugoGeneSymbol":"YME1L1P1","entrezGeneId":23749},{"hugoGeneSymbol":"YOD1","entrezGeneId":55432},{"hugoGeneSymbol":"YPEL1","entrezGeneId":29799},{"hugoGeneSymbol":"YPEL2","entrezGeneId":388403},{"hugoGeneSymbol":"YPEL3","entrezGeneId":83719},{"hugoGeneSymbol":"YPEL4","entrezGeneId":219539},{"hugoGeneSymbol":"YPEL5","entrezGeneId":51646},{"hugoGeneSymbol":"YPEL5P1","entrezGeneId":100130996},{"hugoGeneSymbol":"YPEL5P2","entrezGeneId":100132562},{"hugoGeneSymbol":"YPEL5P3","entrezGeneId":100653396},{"hugoGeneSymbol":"YRDC","entrezGeneId":79693},{"hugoGeneSymbol":"YRDCP1","entrezGeneId":100420501},{"hugoGeneSymbol":"YRDCP2","entrezGeneId":100128237},{"hugoGeneSymbol":"YRDCP3","entrezGeneId":100861429},{"hugoGeneSymbol":"YTHDC1","entrezGeneId":91746},{"hugoGeneSymbol":"YTHDC2","entrezGeneId":64848},{"hugoGeneSymbol":"YTHDF1","entrezGeneId":54915},{"hugoGeneSymbol":"YTHDF1P1","entrezGeneId":402220},{"hugoGeneSymbol":"YTHDF2","entrezGeneId":51441},{"hugoGeneSymbol":"YTHDF2P1","entrezGeneId":400209},{"hugoGeneSymbol":"YTHDF3","entrezGeneId":253943},{"hugoGeneSymbol":"YTHDF3-AS1","entrezGeneId":101410533},{"hugoGeneSymbol":"YUHAL","entrezGeneId":106799914},{"hugoGeneSymbol":"YWHAB","entrezGeneId":7529},{"hugoGeneSymbol":"YWHABP1","entrezGeneId":647051},{"hugoGeneSymbol":"YWHABP2","entrezGeneId":100422666},{"hugoGeneSymbol":"YWHAE","entrezGeneId":7531},{"hugoGeneSymbol":"YWHAEP1","entrezGeneId":649395},{"hugoGeneSymbol":"YWHAEP2","entrezGeneId":106481688},{"hugoGeneSymbol":"YWHAEP3","entrezGeneId":106480273},{"hugoGeneSymbol":"YWHAEP4","entrezGeneId":106481785},{"hugoGeneSymbol":"YWHAEP5","entrezGeneId":440917},{"hugoGeneSymbol":"YWHAEP7","entrezGeneId":284100},{"hugoGeneSymbol":"YWHAG","entrezGeneId":7532},{"hugoGeneSymbol":"YWHAH","entrezGeneId":7533},{"hugoGeneSymbol":"YWHAQ","entrezGeneId":10971},{"hugoGeneSymbol":"YWHAQP1","entrezGeneId":319121},{"hugoGeneSymbol":"YWHAQP2","entrezGeneId":246716},{"hugoGeneSymbol":"YWHAQP3","entrezGeneId":100128944},{"hugoGeneSymbol":"YWHAQP4","entrezGeneId":646954},{"hugoGeneSymbol":"YWHAQP5","entrezGeneId":100130391},{"hugoGeneSymbol":"YWHAQP6","entrezGeneId":101290504},{"hugoGeneSymbol":"YWHAQP7","entrezGeneId":100422674},{"hugoGeneSymbol":"YWHAQP8","entrezGeneId":392510},{"hugoGeneSymbol":"YWHAQP9","entrezGeneId":101290508},{"hugoGeneSymbol":"YWHAZ","entrezGeneId":7534},{"hugoGeneSymbol":"YWHAZP1","entrezGeneId":319120},{"hugoGeneSymbol":"YWHAZP2","entrezGeneId":150554},{"hugoGeneSymbol":"YWHAZP3","entrezGeneId":143371},{"hugoGeneSymbol":"YWHAZP4","entrezGeneId":246737},{"hugoGeneSymbol":"YWHAZP5","entrezGeneId":86123},{"hugoGeneSymbol":"YWHAZP6","entrezGeneId":158383},{"hugoGeneSymbol":"YWHAZP7","entrezGeneId":100130640},{"hugoGeneSymbol":"YWHAZP8","entrezGeneId":646016},{"hugoGeneSymbol":"YWHAZP9","entrezGeneId":441609},{"hugoGeneSymbol":"YY1","entrezGeneId":7528},{"hugoGeneSymbol":"YY1AP1","entrezGeneId":55249},{"hugoGeneSymbol":"YY1P1","entrezGeneId":100419963},{"hugoGeneSymbol":"YY1P2","entrezGeneId":647012},{"hugoGeneSymbol":"YY2","entrezGeneId":404281},{"hugoGeneSymbol":"ZACN","entrezGeneId":353174},{"hugoGeneSymbol":"ZACNP1","entrezGeneId":101929026},{"hugoGeneSymbol":"ZADH2","entrezGeneId":284273},{"hugoGeneSymbol":"ZAN","entrezGeneId":7455},{"hugoGeneSymbol":"ZAP70","entrezGeneId":7535},{"hugoGeneSymbol":"ZAR1","entrezGeneId":326340},{"hugoGeneSymbol":"ZAR1L","entrezGeneId":646799},{"hugoGeneSymbol":"ZASP","entrezGeneId":101927655},{"hugoGeneSymbol":"ZBBX","entrezGeneId":79740},{"hugoGeneSymbol":"ZBED1","entrezGeneId":9189},{"hugoGeneSymbol":"ZBED1P1","entrezGeneId":645145},{"hugoGeneSymbol":"ZBED2","entrezGeneId":79413},{"hugoGeneSymbol":"ZBED3","entrezGeneId":84327},{"hugoGeneSymbol":"ZBED3-AS1","entrezGeneId":728723},{"hugoGeneSymbol":"ZBED4","entrezGeneId":9889},{"hugoGeneSymbol":"ZBED5","entrezGeneId":58486},{"hugoGeneSymbol":"ZBED5-AS1","entrezGeneId":729013},{"hugoGeneSymbol":"ZBED6","entrezGeneId":100381270},{"hugoGeneSymbol":"ZBED6CL","entrezGeneId":113763},{"hugoGeneSymbol":"ZBED8","entrezGeneId":63920},{"hugoGeneSymbol":"ZBED9","entrezGeneId":114821},{"hugoGeneSymbol":"ZBP1","entrezGeneId":81030},{"hugoGeneSymbol":"ZBTB1","entrezGeneId":22890},{"hugoGeneSymbol":"ZBTB10","entrezGeneId":65986},{"hugoGeneSymbol":"ZBTB11","entrezGeneId":27107},{"hugoGeneSymbol":"ZBTB11-AS1","entrezGeneId":100009676},{"hugoGeneSymbol":"ZBTB12","entrezGeneId":221527},{"hugoGeneSymbol":"ZBTB12BP","entrezGeneId":100499252},{"hugoGeneSymbol":"ZBTB14","entrezGeneId":7541},{"hugoGeneSymbol":"ZBTB16","entrezGeneId":7704},{"hugoGeneSymbol":"ZBTB17","entrezGeneId":7709},{"hugoGeneSymbol":"ZBTB18","entrezGeneId":10472},{"hugoGeneSymbol":"ZBTB2","entrezGeneId":57621},{"hugoGeneSymbol":"ZBTB20","entrezGeneId":26137},{"hugoGeneSymbol":"ZBTB20-AS1","entrezGeneId":100131117},{"hugoGeneSymbol":"ZBTB20-AS2","entrezGeneId":100506673},{"hugoGeneSymbol":"ZBTB20-AS3","entrezGeneId":104413890},{"hugoGeneSymbol":"ZBTB20-AS4","entrezGeneId":100874131},{"hugoGeneSymbol":"ZBTB20-AS5","entrezGeneId":101929754},{"hugoGeneSymbol":"ZBTB21","entrezGeneId":49854},{"hugoGeneSymbol":"ZBTB22","entrezGeneId":9278},{"hugoGeneSymbol":"ZBTB24","entrezGeneId":9841},{"hugoGeneSymbol":"ZBTB25","entrezGeneId":7597},{"hugoGeneSymbol":"ZBTB26","entrezGeneId":57684},{"hugoGeneSymbol":"ZBTB3","entrezGeneId":79842},{"hugoGeneSymbol":"ZBTB32","entrezGeneId":27033},{"hugoGeneSymbol":"ZBTB33","entrezGeneId":10009},{"hugoGeneSymbol":"ZBTB34","entrezGeneId":403341},{"hugoGeneSymbol":"ZBTB37","entrezGeneId":84614},{"hugoGeneSymbol":"ZBTB38","entrezGeneId":253461},{"hugoGeneSymbol":"ZBTB39","entrezGeneId":9880},{"hugoGeneSymbol":"ZBTB4","entrezGeneId":57659},{"hugoGeneSymbol":"ZBTB40","entrezGeneId":9923},{"hugoGeneSymbol":"ZBTB40-IT1","entrezGeneId":100874345},{"hugoGeneSymbol":"ZBTB41","entrezGeneId":360023},{"hugoGeneSymbol":"ZBTB42","entrezGeneId":100128927},{"hugoGeneSymbol":"ZBTB43","entrezGeneId":23099},{"hugoGeneSymbol":"ZBTB44","entrezGeneId":29068},{"hugoGeneSymbol":"ZBTB45","entrezGeneId":84878},{"hugoGeneSymbol":"ZBTB45P1","entrezGeneId":645129},{"hugoGeneSymbol":"ZBTB45P2","entrezGeneId":729248},{"hugoGeneSymbol":"ZBTB46","entrezGeneId":140685},{"hugoGeneSymbol":"ZBTB46-AS1","entrezGeneId":101928604},{"hugoGeneSymbol":"ZBTB47","entrezGeneId":92999},{"hugoGeneSymbol":"ZBTB48","entrezGeneId":3104},{"hugoGeneSymbol":"ZBTB49","entrezGeneId":166793},{"hugoGeneSymbol":"ZBTB5","entrezGeneId":9925},{"hugoGeneSymbol":"ZBTB6","entrezGeneId":10773},{"hugoGeneSymbol":"ZBTB7A","entrezGeneId":51341},{"hugoGeneSymbol":"ZBTB7B","entrezGeneId":51043},{"hugoGeneSymbol":"ZBTB7C","entrezGeneId":201501},{"hugoGeneSymbol":"ZBTB8A","entrezGeneId":653121},{"hugoGeneSymbol":"ZBTB8B","entrezGeneId":728116},{"hugoGeneSymbol":"ZBTB8OS","entrezGeneId":339487},{"hugoGeneSymbol":"ZBTB8OSP1","entrezGeneId":729566},{"hugoGeneSymbol":"ZBTB8OSP2","entrezGeneId":729898},{"hugoGeneSymbol":"ZBTB9","entrezGeneId":221504},{"hugoGeneSymbol":"ZC2HC1A","entrezGeneId":51101},{"hugoGeneSymbol":"ZC2HC1B","entrezGeneId":153918},{"hugoGeneSymbol":"ZC2HC1C","entrezGeneId":79696},{"hugoGeneSymbol":"ZC3H10","entrezGeneId":84872},{"hugoGeneSymbol":"ZC3H11A","entrezGeneId":9877},{"hugoGeneSymbol":"ZC3H11B","entrezGeneId":643136},{"hugoGeneSymbol":"ZC3H12A","entrezGeneId":80149},{"hugoGeneSymbol":"ZC3H12B","entrezGeneId":340554},{"hugoGeneSymbol":"ZC3H12C","entrezGeneId":85463},{"hugoGeneSymbol":"ZC3H12D","entrezGeneId":340152},{"hugoGeneSymbol":"ZC3H13","entrezGeneId":23091},{"hugoGeneSymbol":"ZC3H14","entrezGeneId":79882},{"hugoGeneSymbol":"ZC3H15","entrezGeneId":55854},{"hugoGeneSymbol":"ZC3H18","entrezGeneId":124245},{"hugoGeneSymbol":"ZC3H18-AS1","entrezGeneId":400555},{"hugoGeneSymbol":"ZC3H3","entrezGeneId":23144},{"hugoGeneSymbol":"ZC3H4","entrezGeneId":23211},{"hugoGeneSymbol":"ZC3H6","entrezGeneId":376940},{"hugoGeneSymbol":"ZC3H7A","entrezGeneId":29066},{"hugoGeneSymbol":"ZC3H7B","entrezGeneId":23264},{"hugoGeneSymbol":"ZC3H8","entrezGeneId":84524},{"hugoGeneSymbol":"ZC3HAV1","entrezGeneId":56829},{"hugoGeneSymbol":"ZC3HAV1L","entrezGeneId":92092},{"hugoGeneSymbol":"ZC3HC1","entrezGeneId":51530},{"hugoGeneSymbol":"ZC4H2","entrezGeneId":55906},{"hugoGeneSymbol":"ZCCHC10","entrezGeneId":54819},{"hugoGeneSymbol":"ZCCHC11","entrezGeneId":23318},{"hugoGeneSymbol":"ZCCHC12","entrezGeneId":170261},{"hugoGeneSymbol":"ZCCHC13","entrezGeneId":389874},{"hugoGeneSymbol":"ZCCHC14","entrezGeneId":23174},{"hugoGeneSymbol":"ZCCHC17","entrezGeneId":51538},{"hugoGeneSymbol":"ZCCHC18","entrezGeneId":644353},{"hugoGeneSymbol":"ZCCHC2","entrezGeneId":54877},{"hugoGeneSymbol":"ZCCHC23","entrezGeneId":645078},{"hugoGeneSymbol":"ZCCHC24","entrezGeneId":219654},{"hugoGeneSymbol":"ZCCHC3","entrezGeneId":85364},{"hugoGeneSymbol":"ZCCHC4","entrezGeneId":29063},{"hugoGeneSymbol":"ZCCHC6","entrezGeneId":79670},{"hugoGeneSymbol":"ZCCHC7","entrezGeneId":84186},{"hugoGeneSymbol":"ZCCHC8","entrezGeneId":55596},{"hugoGeneSymbol":"ZCCHC9","entrezGeneId":84240},{"hugoGeneSymbol":"ZCRB1","entrezGeneId":85437},{"hugoGeneSymbol":"ZCWPW1","entrezGeneId":55063},{"hugoGeneSymbol":"ZCWPW2","entrezGeneId":152098},{"hugoGeneSymbol":"ZD1","entrezGeneId":780914},{"hugoGeneSymbol":"ZDBF2","entrezGeneId":57683},{"hugoGeneSymbol":"ZDHHC1","entrezGeneId":29800},{"hugoGeneSymbol":"ZDHHC11","entrezGeneId":79844},{"hugoGeneSymbol":"ZDHHC11B","entrezGeneId":653082},{"hugoGeneSymbol":"ZDHHC12","entrezGeneId":84885},{"hugoGeneSymbol":"ZDHHC13","entrezGeneId":54503},{"hugoGeneSymbol":"ZDHHC14","entrezGeneId":79683},{"hugoGeneSymbol":"ZDHHC15","entrezGeneId":158866},{"hugoGeneSymbol":"ZDHHC16","entrezGeneId":84287},{"hugoGeneSymbol":"ZDHHC17","entrezGeneId":23390},{"hugoGeneSymbol":"ZDHHC18","entrezGeneId":84243},{"hugoGeneSymbol":"ZDHHC19","entrezGeneId":131540},{"hugoGeneSymbol":"ZDHHC2","entrezGeneId":51201},{"hugoGeneSymbol":"ZDHHC20","entrezGeneId":253832},{"hugoGeneSymbol":"ZDHHC20-IT1","entrezGeneId":100874367},{"hugoGeneSymbol":"ZDHHC20P1","entrezGeneId":100048907},{"hugoGeneSymbol":"ZDHHC20P2","entrezGeneId":100048908},{"hugoGeneSymbol":"ZDHHC20P3","entrezGeneId":100874348},{"hugoGeneSymbol":"ZDHHC20P4","entrezGeneId":730239},{"hugoGeneSymbol":"ZDHHC21","entrezGeneId":340481},{"hugoGeneSymbol":"ZDHHC22","entrezGeneId":283576},{"hugoGeneSymbol":"ZDHHC23","entrezGeneId":254887},{"hugoGeneSymbol":"ZDHHC24","entrezGeneId":254359},{"hugoGeneSymbol":"ZDHHC3","entrezGeneId":51304},{"hugoGeneSymbol":"ZDHHC4","entrezGeneId":55146},{"hugoGeneSymbol":"ZDHHC4P1","entrezGeneId":100420920},{"hugoGeneSymbol":"ZDHHC5","entrezGeneId":25921},{"hugoGeneSymbol":"ZDHHC6","entrezGeneId":64429},{"hugoGeneSymbol":"ZDHHC7","entrezGeneId":55625},{"hugoGeneSymbol":"ZDHHC8","entrezGeneId":29801},{"hugoGeneSymbol":"ZDHHC8P1","entrezGeneId":150244},{"hugoGeneSymbol":"ZDHHC9","entrezGeneId":51114},{"hugoGeneSymbol":"ZEB1","entrezGeneId":6935},{"hugoGeneSymbol":"ZEB1-AS1","entrezGeneId":220930},{"hugoGeneSymbol":"ZEB2","entrezGeneId":9839},{"hugoGeneSymbol":"ZEB2-AS1","entrezGeneId":100303491},{"hugoGeneSymbol":"ZEB2P1","entrezGeneId":100420926},{"hugoGeneSymbol":"ZER1","entrezGeneId":10444},{"hugoGeneSymbol":"ZFAND1","entrezGeneId":79752},{"hugoGeneSymbol":"ZFAND2A","entrezGeneId":90637},{"hugoGeneSymbol":"ZFAND2B","entrezGeneId":130617},{"hugoGeneSymbol":"ZFAND3","entrezGeneId":60685},{"hugoGeneSymbol":"ZFAND4","entrezGeneId":93550},{"hugoGeneSymbol":"ZFAND5","entrezGeneId":7763},{"hugoGeneSymbol":"ZFAND6","entrezGeneId":54469},{"hugoGeneSymbol":"ZFAND6P1","entrezGeneId":100631382},{"hugoGeneSymbol":"ZFAS1","entrezGeneId":441951},{"hugoGeneSymbol":"ZFAT","entrezGeneId":57623},{"hugoGeneSymbol":"ZFAT-AS1","entrezGeneId":594840},{"hugoGeneSymbol":"ZFC3H1","entrezGeneId":196441},{"hugoGeneSymbol":"ZFHX2","entrezGeneId":85446},{"hugoGeneSymbol":"ZFHX2-AS1","entrezGeneId":109729160},{"hugoGeneSymbol":"ZFHX3","entrezGeneId":463},{"hugoGeneSymbol":"ZFHX4","entrezGeneId":79776},{"hugoGeneSymbol":"ZFHX4-AS1","entrezGeneId":100192378},{"hugoGeneSymbol":"ZFP1","entrezGeneId":162239},{"hugoGeneSymbol":"ZFP14","entrezGeneId":57677},{"hugoGeneSymbol":"ZFP2","entrezGeneId":80108},{"hugoGeneSymbol":"ZFP28","entrezGeneId":140612},{"hugoGeneSymbol":"ZFP3","entrezGeneId":124961},{"hugoGeneSymbol":"ZFP30","entrezGeneId":22835},{"hugoGeneSymbol":"ZFP36","entrezGeneId":7538},{"hugoGeneSymbol":"ZFP36L1","entrezGeneId":677},{"hugoGeneSymbol":"ZFP36L2","entrezGeneId":678},{"hugoGeneSymbol":"ZFP37","entrezGeneId":7539},{"hugoGeneSymbol":"ZFP41","entrezGeneId":286128},{"hugoGeneSymbol":"ZFP42","entrezGeneId":132625},{"hugoGeneSymbol":"ZFP57","entrezGeneId":346171},{"hugoGeneSymbol":"ZFP62","entrezGeneId":643836},{"hugoGeneSymbol":"ZFP64","entrezGeneId":55734},{"hugoGeneSymbol":"ZFP64P1","entrezGeneId":319123},{"hugoGeneSymbol":"ZFP69","entrezGeneId":339559},{"hugoGeneSymbol":"ZFP69B","entrezGeneId":65243},{"hugoGeneSymbol":"ZFP82","entrezGeneId":284406},{"hugoGeneSymbol":"ZFP90","entrezGeneId":146198},{"hugoGeneSymbol":"ZFP91","entrezGeneId":80829},{"hugoGeneSymbol":"ZFP91-CNTF","entrezGeneId":386607},{"hugoGeneSymbol":"ZFP92","entrezGeneId":139735},{"hugoGeneSymbol":"ZFPL1","entrezGeneId":7542},{"hugoGeneSymbol":"ZFPM1","entrezGeneId":161882},{"hugoGeneSymbol":"ZFPM2","entrezGeneId":23414},{"hugoGeneSymbol":"ZFPM2-AS1","entrezGeneId":102723356},{"hugoGeneSymbol":"ZFR","entrezGeneId":51663},{"hugoGeneSymbol":"ZFR2","entrezGeneId":23217},{"hugoGeneSymbol":"ZFRP1","entrezGeneId":100129438},{"hugoGeneSymbol":"ZFX","entrezGeneId":7543},{"hugoGeneSymbol":"ZFX-AS1","entrezGeneId":100873922},{"hugoGeneSymbol":"ZFY","entrezGeneId":7544},{"hugoGeneSymbol":"ZFY-AS1","entrezGeneId":107987337},{"hugoGeneSymbol":"ZFYVE1","entrezGeneId":53349},{"hugoGeneSymbol":"ZFYVE16","entrezGeneId":9765},{"hugoGeneSymbol":"ZFYVE19","entrezGeneId":84936},{"hugoGeneSymbol":"ZFYVE21","entrezGeneId":79038},{"hugoGeneSymbol":"ZFYVE26","entrezGeneId":23503},{"hugoGeneSymbol":"ZFYVE27","entrezGeneId":118813},{"hugoGeneSymbol":"ZFYVE28","entrezGeneId":57732},{"hugoGeneSymbol":"ZFYVE9","entrezGeneId":9372},{"hugoGeneSymbol":"ZFYVE9P1","entrezGeneId":100289259},{"hugoGeneSymbol":"ZFYVE9P2","entrezGeneId":100420972},{"hugoGeneSymbol":"ZG16","entrezGeneId":653808},{"hugoGeneSymbol":"ZG16B","entrezGeneId":124220},{"hugoGeneSymbol":"ZGLP1","entrezGeneId":100125288},{"hugoGeneSymbol":"ZGPAT","entrezGeneId":84619},{"hugoGeneSymbol":"ZGRF1","entrezGeneId":55345},{"hugoGeneSymbol":"ZHX1","entrezGeneId":11244},{"hugoGeneSymbol":"ZHX1-C8ORF76","entrezGeneId":100533106},{"hugoGeneSymbol":"ZHX2","entrezGeneId":22882},{"hugoGeneSymbol":"ZHX3","entrezGeneId":23051},{"hugoGeneSymbol":"ZIC1","entrezGeneId":7545},{"hugoGeneSymbol":"ZIC2","entrezGeneId":7546},{"hugoGeneSymbol":"ZIC3","entrezGeneId":7547},{"hugoGeneSymbol":"ZIC4","entrezGeneId":84107},{"hugoGeneSymbol":"ZIC4-AS1","entrezGeneId":100873950},{"hugoGeneSymbol":"ZIC5","entrezGeneId":85416},{"hugoGeneSymbol":"ZIK1","entrezGeneId":284307},{"hugoGeneSymbol":"ZIK1P1","entrezGeneId":100131493},{"hugoGeneSymbol":"ZIM2","entrezGeneId":23619},{"hugoGeneSymbol":"ZIM2-AS1","entrezGeneId":101929059},{"hugoGeneSymbol":"ZIM3","entrezGeneId":114026},{"hugoGeneSymbol":"ZKSCAN1","entrezGeneId":7586},{"hugoGeneSymbol":"ZKSCAN2","entrezGeneId":342357},{"hugoGeneSymbol":"ZKSCAN3","entrezGeneId":80317},{"hugoGeneSymbol":"ZKSCAN4","entrezGeneId":387032},{"hugoGeneSymbol":"ZKSCAN5","entrezGeneId":23660},{"hugoGeneSymbol":"ZKSCAN7","entrezGeneId":55888},{"hugoGeneSymbol":"ZKSCAN7P1","entrezGeneId":100419827},{"hugoGeneSymbol":"ZKSCAN8","entrezGeneId":7745},{"hugoGeneSymbol":"ZLS","entrezGeneId":353173},{"hugoGeneSymbol":"ZMAT1","entrezGeneId":84460},{"hugoGeneSymbol":"ZMAT2","entrezGeneId":153527},{"hugoGeneSymbol":"ZMAT3","entrezGeneId":64393},{"hugoGeneSymbol":"ZMAT4","entrezGeneId":79698},{"hugoGeneSymbol":"ZMAT5","entrezGeneId":55954},{"hugoGeneSymbol":"ZMIZ1","entrezGeneId":57178},{"hugoGeneSymbol":"ZMIZ1-AS1","entrezGeneId":283050},{"hugoGeneSymbol":"ZMIZ2","entrezGeneId":83637},{"hugoGeneSymbol":"ZMPSTE24","entrezGeneId":10269},{"hugoGeneSymbol":"ZMYM1","entrezGeneId":79830},{"hugoGeneSymbol":"ZMYM2","entrezGeneId":7750},{"hugoGeneSymbol":"ZMYM3","entrezGeneId":9203},{"hugoGeneSymbol":"ZMYM4","entrezGeneId":9202},{"hugoGeneSymbol":"ZMYM4-AS1","entrezGeneId":100861513},{"hugoGeneSymbol":"ZMYM5","entrezGeneId":9205},{"hugoGeneSymbol":"ZMYM6","entrezGeneId":9204},{"hugoGeneSymbol":"ZMYND10","entrezGeneId":51364},{"hugoGeneSymbol":"ZMYND10-AS1","entrezGeneId":100874210},{"hugoGeneSymbol":"ZMYND11","entrezGeneId":10771},{"hugoGeneSymbol":"ZMYND12","entrezGeneId":84217},{"hugoGeneSymbol":"ZMYND15","entrezGeneId":84225},{"hugoGeneSymbol":"ZMYND19","entrezGeneId":116225},{"hugoGeneSymbol":"ZMYND19P1","entrezGeneId":100421055},{"hugoGeneSymbol":"ZMYND8","entrezGeneId":23613},{"hugoGeneSymbol":"ZNF10","entrezGeneId":7556},{"hugoGeneSymbol":"ZNF100","entrezGeneId":163227},{"hugoGeneSymbol":"ZNF101","entrezGeneId":94039},{"hugoGeneSymbol":"ZNF101P1","entrezGeneId":100419867},{"hugoGeneSymbol":"ZNF101P2","entrezGeneId":730190},{"hugoGeneSymbol":"ZNF106","entrezGeneId":64397},{"hugoGeneSymbol":"ZNF107","entrezGeneId":51427},{"hugoGeneSymbol":"ZNF112","entrezGeneId":7771},{"hugoGeneSymbol":"ZNF114","entrezGeneId":163071},{"hugoGeneSymbol":"ZNF114P1","entrezGeneId":100132509},{"hugoGeneSymbol":"ZNF117","entrezGeneId":51351},{"hugoGeneSymbol":"ZNF12","entrezGeneId":7559},{"hugoGeneSymbol":"ZNF121","entrezGeneId":7675},{"hugoGeneSymbol":"ZNF123P","entrezGeneId":100188891},{"hugoGeneSymbol":"ZNF124","entrezGeneId":7678},{"hugoGeneSymbol":"ZNF131","entrezGeneId":7690},{"hugoGeneSymbol":"ZNF132","entrezGeneId":7691},{"hugoGeneSymbol":"ZNF133","entrezGeneId":7692},{"hugoGeneSymbol":"ZNF134","entrezGeneId":7693},{"hugoGeneSymbol":"ZNF135","entrezGeneId":7694},{"hugoGeneSymbol":"ZNF136","entrezGeneId":7695},{"hugoGeneSymbol":"ZNF137P","entrezGeneId":7696},{"hugoGeneSymbol":"ZNF138","entrezGeneId":7697},{"hugoGeneSymbol":"ZNF14","entrezGeneId":7561},{"hugoGeneSymbol":"ZNF140","entrezGeneId":7699},{"hugoGeneSymbol":"ZNF141","entrezGeneId":7700},{"hugoGeneSymbol":"ZNF142","entrezGeneId":7701},{"hugoGeneSymbol":"ZNF143","entrezGeneId":7702},{"hugoGeneSymbol":"ZNF146","entrezGeneId":7705},{"hugoGeneSymbol":"ZNF148","entrezGeneId":7707},{"hugoGeneSymbol":"ZNF154","entrezGeneId":7710},{"hugoGeneSymbol":"ZNF155","entrezGeneId":7711},{"hugoGeneSymbol":"ZNF157","entrezGeneId":7712},{"hugoGeneSymbol":"ZNF16","entrezGeneId":7564},{"hugoGeneSymbol":"ZNF160","entrezGeneId":90338},{"hugoGeneSymbol":"ZNF165","entrezGeneId":7718},{"hugoGeneSymbol":"ZNF169","entrezGeneId":169841},{"hugoGeneSymbol":"ZNF17","entrezGeneId":7565},{"hugoGeneSymbol":"ZNF174","entrezGeneId":7727},{"hugoGeneSymbol":"ZNF175","entrezGeneId":7728},{"hugoGeneSymbol":"ZNF177","entrezGeneId":7730},{"hugoGeneSymbol":"ZNF18","entrezGeneId":7566},{"hugoGeneSymbol":"ZNF180","entrezGeneId":7733},{"hugoGeneSymbol":"ZNF181","entrezGeneId":339318},{"hugoGeneSymbol":"ZNF182","entrezGeneId":7569},{"hugoGeneSymbol":"ZNF184","entrezGeneId":7738},{"hugoGeneSymbol":"ZNF185","entrezGeneId":7739},{"hugoGeneSymbol":"ZNF189","entrezGeneId":7743},{"hugoGeneSymbol":"ZNF19","entrezGeneId":7567},{"hugoGeneSymbol":"ZNF192P1","entrezGeneId":651302},{"hugoGeneSymbol":"ZNF192P2","entrezGeneId":222701},{"hugoGeneSymbol":"ZNF195","entrezGeneId":7748},{"hugoGeneSymbol":"ZNF197","entrezGeneId":10168},{"hugoGeneSymbol":"ZNF197-AS1","entrezGeneId":100874094},{"hugoGeneSymbol":"ZNF2","entrezGeneId":7549},{"hugoGeneSymbol":"ZNF20","entrezGeneId":7568},{"hugoGeneSymbol":"ZNF200","entrezGeneId":7752},{"hugoGeneSymbol":"ZNF202","entrezGeneId":7753},{"hugoGeneSymbol":"ZNF204P","entrezGeneId":7754},{"hugoGeneSymbol":"ZNF205","entrezGeneId":7755},{"hugoGeneSymbol":"ZNF205-AS1","entrezGeneId":81854},{"hugoGeneSymbol":"ZNF207","entrezGeneId":7756},{"hugoGeneSymbol":"ZNF208","entrezGeneId":7757},{"hugoGeneSymbol":"ZNF209P","entrezGeneId":441843},{"hugoGeneSymbol":"ZNF211","entrezGeneId":10520},{"hugoGeneSymbol":"ZNF212","entrezGeneId":7988},{"hugoGeneSymbol":"ZNF213","entrezGeneId":7760},{"hugoGeneSymbol":"ZNF213-AS1","entrezGeneId":100507458},{"hugoGeneSymbol":"ZNF214","entrezGeneId":7761},{"hugoGeneSymbol":"ZNF215","entrezGeneId":7762},{"hugoGeneSymbol":"ZNF217","entrezGeneId":7764},{"hugoGeneSymbol":"ZNF219","entrezGeneId":51222},{"hugoGeneSymbol":"ZNF22","entrezGeneId":7570},{"hugoGeneSymbol":"ZNF221","entrezGeneId":7638},{"hugoGeneSymbol":"ZNF222","entrezGeneId":7673},{"hugoGeneSymbol":"ZNF223","entrezGeneId":7766},{"hugoGeneSymbol":"ZNF224","entrezGeneId":7767},{"hugoGeneSymbol":"ZNF225","entrezGeneId":7768},{"hugoGeneSymbol":"ZNF226","entrezGeneId":7769},{"hugoGeneSymbol":"ZNF227","entrezGeneId":7770},{"hugoGeneSymbol":"ZNF229","entrezGeneId":7772},{"hugoGeneSymbol":"ZNF23","entrezGeneId":7571},{"hugoGeneSymbol":"ZNF230","entrezGeneId":7773},{"hugoGeneSymbol":"ZNF232","entrezGeneId":7775},{"hugoGeneSymbol":"ZNF233","entrezGeneId":353355},{"hugoGeneSymbol":"ZNF234","entrezGeneId":10780},{"hugoGeneSymbol":"ZNF235","entrezGeneId":9310},{"hugoGeneSymbol":"ZNF236","entrezGeneId":7776},{"hugoGeneSymbol":"ZNF236-DT","entrezGeneId":100131655},{"hugoGeneSymbol":"ZNF239","entrezGeneId":8187},{"hugoGeneSymbol":"ZNF24","entrezGeneId":7572},{"hugoGeneSymbol":"ZNF248","entrezGeneId":57209},{"hugoGeneSymbol":"ZNF25","entrezGeneId":219749},{"hugoGeneSymbol":"ZNF250","entrezGeneId":58500},{"hugoGeneSymbol":"ZNF251","entrezGeneId":90987},{"hugoGeneSymbol":"ZNF252P","entrezGeneId":286101},{"hugoGeneSymbol":"ZNF252P-AS1","entrezGeneId":286103},{"hugoGeneSymbol":"ZNF253","entrezGeneId":56242},{"hugoGeneSymbol":"ZNF254","entrezGeneId":9534},{"hugoGeneSymbol":"ZNF256","entrezGeneId":10172},{"hugoGeneSymbol":"ZNF257","entrezGeneId":113835},{"hugoGeneSymbol":"ZNF259P1","entrezGeneId":442240},{"hugoGeneSymbol":"ZNF26","entrezGeneId":7574},{"hugoGeneSymbol":"ZNF260","entrezGeneId":339324},{"hugoGeneSymbol":"ZNF263","entrezGeneId":10127},{"hugoGeneSymbol":"ZNF264","entrezGeneId":9422},{"hugoGeneSymbol":"ZNF266","entrezGeneId":10781},{"hugoGeneSymbol":"ZNF267","entrezGeneId":10308},{"hugoGeneSymbol":"ZNF268","entrezGeneId":10795},{"hugoGeneSymbol":"ZNF271P","entrezGeneId":10778},{"hugoGeneSymbol":"ZNF273","entrezGeneId":10793},{"hugoGeneSymbol":"ZNF274","entrezGeneId":10782},{"hugoGeneSymbol":"ZNF275","entrezGeneId":10838},{"hugoGeneSymbol":"ZNF276","entrezGeneId":92822},{"hugoGeneSymbol":"ZNF277","entrezGeneId":11179},{"hugoGeneSymbol":"ZNF28","entrezGeneId":7576},{"hugoGeneSymbol":"ZNF280A","entrezGeneId":129025},{"hugoGeneSymbol":"ZNF280B","entrezGeneId":140883},{"hugoGeneSymbol":"ZNF280C","entrezGeneId":55609},{"hugoGeneSymbol":"ZNF280D","entrezGeneId":54816},{"hugoGeneSymbol":"ZNF281","entrezGeneId":23528},{"hugoGeneSymbol":"ZNF282","entrezGeneId":8427},{"hugoGeneSymbol":"ZNF283","entrezGeneId":284349},{"hugoGeneSymbol":"ZNF284","entrezGeneId":342909},{"hugoGeneSymbol":"ZNF285","entrezGeneId":26974},{"hugoGeneSymbol":"ZNF285B","entrezGeneId":147711},{"hugoGeneSymbol":"ZNF286A","entrezGeneId":57335},{"hugoGeneSymbol":"ZNF286B","entrezGeneId":729288},{"hugoGeneSymbol":"ZNF287","entrezGeneId":57336},{"hugoGeneSymbol":"ZNF292","entrezGeneId":23036},{"hugoGeneSymbol":"ZNF295-AS1","entrezGeneId":150142},{"hugoGeneSymbol":"ZNF296","entrezGeneId":162979},{"hugoGeneSymbol":"ZNF299P","entrezGeneId":54012},{"hugoGeneSymbol":"ZNF29P","entrezGeneId":7577},{"hugoGeneSymbol":"ZNF3","entrezGeneId":7551},{"hugoGeneSymbol":"ZNF30","entrezGeneId":90075},{"hugoGeneSymbol":"ZNF30-AS1","entrezGeneId":102723513},{"hugoGeneSymbol":"ZNF300","entrezGeneId":91975},{"hugoGeneSymbol":"ZNF300P1","entrezGeneId":134466},{"hugoGeneSymbol":"ZNF302","entrezGeneId":55900},{"hugoGeneSymbol":"ZNF304","entrezGeneId":57343},{"hugoGeneSymbol":"ZNF311","entrezGeneId":282890},{"hugoGeneSymbol":"ZNF316","entrezGeneId":100131017},{"hugoGeneSymbol":"ZNF317","entrezGeneId":57693},{"hugoGeneSymbol":"ZNF317P1","entrezGeneId":100288659},{"hugoGeneSymbol":"ZNF318","entrezGeneId":24149},{"hugoGeneSymbol":"ZNF319","entrezGeneId":57567},{"hugoGeneSymbol":"ZNF32","entrezGeneId":7580},{"hugoGeneSymbol":"ZNF32-AS1","entrezGeneId":414197},{"hugoGeneSymbol":"ZNF32-AS2","entrezGeneId":414208},{"hugoGeneSymbol":"ZNF32-AS3","entrezGeneId":414201},{"hugoGeneSymbol":"ZNF320","entrezGeneId":162967},{"hugoGeneSymbol":"ZNF321P","entrezGeneId":399669},{"hugoGeneSymbol":"ZNF322","entrezGeneId":79692},{"hugoGeneSymbol":"ZNF322P1","entrezGeneId":387328},{"hugoGeneSymbol":"ZNF324","entrezGeneId":25799},{"hugoGeneSymbol":"ZNF324B","entrezGeneId":388569},{"hugoGeneSymbol":"ZNF326","entrezGeneId":284695},{"hugoGeneSymbol":"ZNF329","entrezGeneId":79673},{"hugoGeneSymbol":"ZNF330","entrezGeneId":27309},{"hugoGeneSymbol":"ZNF331","entrezGeneId":55422},{"hugoGeneSymbol":"ZNF333","entrezGeneId":84449},{"hugoGeneSymbol":"ZNF334","entrezGeneId":55713},{"hugoGeneSymbol":"ZNF335","entrezGeneId":63925},{"hugoGeneSymbol":"ZNF337","entrezGeneId":26152},{"hugoGeneSymbol":"ZNF337-AS1","entrezGeneId":102724826},{"hugoGeneSymbol":"ZNF33A","entrezGeneId":7581},{"hugoGeneSymbol":"ZNF33B","entrezGeneId":7582},{"hugoGeneSymbol":"ZNF33BP1","entrezGeneId":100419868},{"hugoGeneSymbol":"ZNF33CP","entrezGeneId":79231},{"hugoGeneSymbol":"ZNF34","entrezGeneId":80778},{"hugoGeneSymbol":"ZNF341","entrezGeneId":84905},{"hugoGeneSymbol":"ZNF341-AS1","entrezGeneId":101929746},{"hugoGeneSymbol":"ZNF343","entrezGeneId":79175},{"hugoGeneSymbol":"ZNF345","entrezGeneId":25850},{"hugoGeneSymbol":"ZNF346","entrezGeneId":23567},{"hugoGeneSymbol":"ZNF346-IT1","entrezGeneId":106480741},{"hugoGeneSymbol":"ZNF347","entrezGeneId":84671},{"hugoGeneSymbol":"ZNF35","entrezGeneId":7584},{"hugoGeneSymbol":"ZNF350","entrezGeneId":59348},{"hugoGeneSymbol":"ZNF350-AS1","entrezGeneId":101669766},{"hugoGeneSymbol":"ZNF354A","entrezGeneId":6940},{"hugoGeneSymbol":"ZNF354B","entrezGeneId":117608},{"hugoGeneSymbol":"ZNF354C","entrezGeneId":30832},{"hugoGeneSymbol":"ZNF355P","entrezGeneId":100505852},{"hugoGeneSymbol":"ZNF358","entrezGeneId":140467},{"hugoGeneSymbol":"ZNF362","entrezGeneId":149076},{"hugoGeneSymbol":"ZNF365","entrezGeneId":22891},{"hugoGeneSymbol":"ZNF366","entrezGeneId":167465},{"hugoGeneSymbol":"ZNF367","entrezGeneId":195828},{"hugoGeneSymbol":"ZNF37A","entrezGeneId":7587},{"hugoGeneSymbol":"ZNF37BP","entrezGeneId":100129482},{"hugoGeneSymbol":"ZNF37CP","entrezGeneId":79232},{"hugoGeneSymbol":"ZNF382","entrezGeneId":84911},{"hugoGeneSymbol":"ZNF383","entrezGeneId":163087},{"hugoGeneSymbol":"ZNF384","entrezGeneId":171017},{"hugoGeneSymbol":"ZNF385A","entrezGeneId":25946},{"hugoGeneSymbol":"ZNF385B","entrezGeneId":151126},{"hugoGeneSymbol":"ZNF385C","entrezGeneId":201181},{"hugoGeneSymbol":"ZNF385D","entrezGeneId":79750},{"hugoGeneSymbol":"ZNF385D-AS1","entrezGeneId":100874216},{"hugoGeneSymbol":"ZNF385D-AS2","entrezGeneId":100874221},{"hugoGeneSymbol":"ZNF391","entrezGeneId":346157},{"hugoGeneSymbol":"ZNF394","entrezGeneId":84124},{"hugoGeneSymbol":"ZNF395","entrezGeneId":55893},{"hugoGeneSymbol":"ZNF396","entrezGeneId":252884},{"hugoGeneSymbol":"ZNF397","entrezGeneId":84307},{"hugoGeneSymbol":"ZNF398","entrezGeneId":57541},{"hugoGeneSymbol":"ZNF402P","entrezGeneId":266673},{"hugoGeneSymbol":"ZNF404","entrezGeneId":342908},{"hugoGeneSymbol":"ZNF407","entrezGeneId":55628},{"hugoGeneSymbol":"ZNF408","entrezGeneId":79797},{"hugoGeneSymbol":"ZNF41","entrezGeneId":7592},{"hugoGeneSymbol":"ZNF410","entrezGeneId":57862},{"hugoGeneSymbol":"ZNF414","entrezGeneId":84330},{"hugoGeneSymbol":"ZNF415","entrezGeneId":55786},{"hugoGeneSymbol":"ZNF415P1","entrezGeneId":100419893},{"hugoGeneSymbol":"ZNF416","entrezGeneId":55659},{"hugoGeneSymbol":"ZNF417","entrezGeneId":147687},{"hugoGeneSymbol":"ZNF418","entrezGeneId":147686},{"hugoGeneSymbol":"ZNF419","entrezGeneId":79744},{"hugoGeneSymbol":"ZNF420","entrezGeneId":147923},{"hugoGeneSymbol":"ZNF423","entrezGeneId":23090},{"hugoGeneSymbol":"ZNF425","entrezGeneId":155054},{"hugoGeneSymbol":"ZNF426","entrezGeneId":79088},{"hugoGeneSymbol":"ZNF426-DT","entrezGeneId":101928238},{"hugoGeneSymbol":"ZNF428","entrezGeneId":126299},{"hugoGeneSymbol":"ZNF429","entrezGeneId":353088},{"hugoGeneSymbol":"ZNF43","entrezGeneId":7594},{"hugoGeneSymbol":"ZNF430","entrezGeneId":80264},{"hugoGeneSymbol":"ZNF431","entrezGeneId":170959},{"hugoGeneSymbol":"ZNF432","entrezGeneId":9668},{"hugoGeneSymbol":"ZNF433","entrezGeneId":163059},{"hugoGeneSymbol":"ZNF433-AS1","entrezGeneId":101928464},{"hugoGeneSymbol":"ZNF436","entrezGeneId":80818},{"hugoGeneSymbol":"ZNF436-AS1","entrezGeneId":148898},{"hugoGeneSymbol":"ZNF438","entrezGeneId":220929},{"hugoGeneSymbol":"ZNF439","entrezGeneId":90594},{"hugoGeneSymbol":"ZNF44","entrezGeneId":51710},{"hugoGeneSymbol":"ZNF440","entrezGeneId":126070},{"hugoGeneSymbol":"ZNF441","entrezGeneId":126068},{"hugoGeneSymbol":"ZNF442","entrezGeneId":79973},{"hugoGeneSymbol":"ZNF443","entrezGeneId":10224},{"hugoGeneSymbol":"ZNF444","entrezGeneId":55311},{"hugoGeneSymbol":"ZNF444P1","entrezGeneId":100419866},{"hugoGeneSymbol":"ZNF445","entrezGeneId":353274},{"hugoGeneSymbol":"ZNF446","entrezGeneId":55663},{"hugoGeneSymbol":"ZNF449","entrezGeneId":203523},{"hugoGeneSymbol":"ZNF45","entrezGeneId":7596},{"hugoGeneSymbol":"ZNF451","entrezGeneId":26036},{"hugoGeneSymbol":"ZNF454","entrezGeneId":285676},{"hugoGeneSymbol":"ZNF460","entrezGeneId":10794},{"hugoGeneSymbol":"ZNF460-AS1","entrezGeneId":105372476},{"hugoGeneSymbol":"ZNF461","entrezGeneId":92283},{"hugoGeneSymbol":"ZNF462","entrezGeneId":58499},{"hugoGeneSymbol":"ZNF467","entrezGeneId":168544},{"hugoGeneSymbol":"ZNF468","entrezGeneId":90333},{"hugoGeneSymbol":"ZNF469","entrezGeneId":84627},{"hugoGeneSymbol":"ZNF470","entrezGeneId":388566},{"hugoGeneSymbol":"ZNF471","entrezGeneId":57573},{"hugoGeneSymbol":"ZNF473","entrezGeneId":25888},{"hugoGeneSymbol":"ZNF474","entrezGeneId":133923},{"hugoGeneSymbol":"ZNF479","entrezGeneId":90827},{"hugoGeneSymbol":"ZNF48","entrezGeneId":197407},{"hugoGeneSymbol":"ZNF480","entrezGeneId":147657},{"hugoGeneSymbol":"ZNF483","entrezGeneId":158399},{"hugoGeneSymbol":"ZNF484","entrezGeneId":83744},{"hugoGeneSymbol":"ZNF485","entrezGeneId":220992},{"hugoGeneSymbol":"ZNF486","entrezGeneId":90649},{"hugoGeneSymbol":"ZNF487","entrezGeneId":642819},{"hugoGeneSymbol":"ZNF488","entrezGeneId":118738},{"hugoGeneSymbol":"ZNF490","entrezGeneId":57474},{"hugoGeneSymbol":"ZNF491","entrezGeneId":126069},{"hugoGeneSymbol":"ZNF492","entrezGeneId":57615},{"hugoGeneSymbol":"ZNF493","entrezGeneId":284443},{"hugoGeneSymbol":"ZNF496","entrezGeneId":84838},{"hugoGeneSymbol":"ZNF497","entrezGeneId":162968},{"hugoGeneSymbol":"ZNF500","entrezGeneId":26048},{"hugoGeneSymbol":"ZNF501","entrezGeneId":115560},{"hugoGeneSymbol":"ZNF502","entrezGeneId":91392},{"hugoGeneSymbol":"ZNF503","entrezGeneId":84858},{"hugoGeneSymbol":"ZNF503-AS1","entrezGeneId":253264},{"hugoGeneSymbol":"ZNF503-AS2","entrezGeneId":100131213},{"hugoGeneSymbol":"ZNF506","entrezGeneId":440515},{"hugoGeneSymbol":"ZNF507","entrezGeneId":22847},{"hugoGeneSymbol":"ZNF510","entrezGeneId":22869},{"hugoGeneSymbol":"ZNF511","entrezGeneId":118472},{"hugoGeneSymbol":"ZNF511-PRAP1","entrezGeneId":104326056},{"hugoGeneSymbol":"ZNF512","entrezGeneId":84450},{"hugoGeneSymbol":"ZNF512B","entrezGeneId":57473},{"hugoGeneSymbol":"ZNF513","entrezGeneId":130557},{"hugoGeneSymbol":"ZNF514","entrezGeneId":84874},{"hugoGeneSymbol":"ZNF516","entrezGeneId":9658},{"hugoGeneSymbol":"ZNF517","entrezGeneId":340385},{"hugoGeneSymbol":"ZNF518A","entrezGeneId":9849},{"hugoGeneSymbol":"ZNF518B","entrezGeneId":85460},{"hugoGeneSymbol":"ZNF519","entrezGeneId":162655},{"hugoGeneSymbol":"ZNF519P1","entrezGeneId":100419873},{"hugoGeneSymbol":"ZNF519P2","entrezGeneId":100287908},{"hugoGeneSymbol":"ZNF519P3","entrezGeneId":100288042},{"hugoGeneSymbol":"ZNF519P4","entrezGeneId":106481981},{"hugoGeneSymbol":"ZNF521","entrezGeneId":25925},{"hugoGeneSymbol":"ZNF524","entrezGeneId":147807},{"hugoGeneSymbol":"ZNF525","entrezGeneId":170958},{"hugoGeneSymbol":"ZNF526","entrezGeneId":116115},{"hugoGeneSymbol":"ZNF527","entrezGeneId":84503},{"hugoGeneSymbol":"ZNF528","entrezGeneId":84436},{"hugoGeneSymbol":"ZNF528-AS1","entrezGeneId":102724105},{"hugoGeneSymbol":"ZNF529","entrezGeneId":57711},{"hugoGeneSymbol":"ZNF529-AS1","entrezGeneId":101927599},{"hugoGeneSymbol":"ZNF530","entrezGeneId":348327},{"hugoGeneSymbol":"ZNF532","entrezGeneId":55205},{"hugoGeneSymbol":"ZNF534","entrezGeneId":147658},{"hugoGeneSymbol":"ZNF536","entrezGeneId":9745},{"hugoGeneSymbol":"ZNF540","entrezGeneId":163255},{"hugoGeneSymbol":"ZNF541","entrezGeneId":84215},{"hugoGeneSymbol":"ZNF542P","entrezGeneId":147947},{"hugoGeneSymbol":"ZNF543","entrezGeneId":125919},{"hugoGeneSymbol":"ZNF544","entrezGeneId":27300},{"hugoGeneSymbol":"ZNF546","entrezGeneId":339327},{"hugoGeneSymbol":"ZNF547","entrezGeneId":284306},{"hugoGeneSymbol":"ZNF548","entrezGeneId":147694},{"hugoGeneSymbol":"ZNF549","entrezGeneId":256051},{"hugoGeneSymbol":"ZNF550","entrezGeneId":162972},{"hugoGeneSymbol":"ZNF551","entrezGeneId":90233},{"hugoGeneSymbol":"ZNF552","entrezGeneId":79818},{"hugoGeneSymbol":"ZNF554","entrezGeneId":115196},{"hugoGeneSymbol":"ZNF555","entrezGeneId":148254},{"hugoGeneSymbol":"ZNF556","entrezGeneId":80032},{"hugoGeneSymbol":"ZNF557","entrezGeneId":79230},{"hugoGeneSymbol":"ZNF558","entrezGeneId":148156},{"hugoGeneSymbol":"ZNF559","entrezGeneId":84527},{"hugoGeneSymbol":"ZNF559-ZNF177","entrezGeneId":100529215},{"hugoGeneSymbol":"ZNF56","entrezGeneId":7608},{"hugoGeneSymbol":"ZNF560","entrezGeneId":147741},{"hugoGeneSymbol":"ZNF561","entrezGeneId":93134},{"hugoGeneSymbol":"ZNF561-AS1","entrezGeneId":284385},{"hugoGeneSymbol":"ZNF562","entrezGeneId":54811},{"hugoGeneSymbol":"ZNF563","entrezGeneId":147837},{"hugoGeneSymbol":"ZNF564","entrezGeneId":163050},{"hugoGeneSymbol":"ZNF565","entrezGeneId":147929},{"hugoGeneSymbol":"ZNF566","entrezGeneId":84924},{"hugoGeneSymbol":"ZNF567","entrezGeneId":163081},{"hugoGeneSymbol":"ZNF568","entrezGeneId":374900},{"hugoGeneSymbol":"ZNF569","entrezGeneId":148266},{"hugoGeneSymbol":"ZNF57","entrezGeneId":126295},{"hugoGeneSymbol":"ZNF570","entrezGeneId":148268},{"hugoGeneSymbol":"ZNF571","entrezGeneId":51276},{"hugoGeneSymbol":"ZNF571-AS1","entrezGeneId":100507433},{"hugoGeneSymbol":"ZNF572","entrezGeneId":137209},{"hugoGeneSymbol":"ZNF573","entrezGeneId":126231},{"hugoGeneSymbol":"ZNF574","entrezGeneId":64763},{"hugoGeneSymbol":"ZNF575","entrezGeneId":284346},{"hugoGeneSymbol":"ZNF576","entrezGeneId":79177},{"hugoGeneSymbol":"ZNF577","entrezGeneId":84765},{"hugoGeneSymbol":"ZNF578","entrezGeneId":147660},{"hugoGeneSymbol":"ZNF579","entrezGeneId":163033},{"hugoGeneSymbol":"ZNF580","entrezGeneId":51157},{"hugoGeneSymbol":"ZNF581","entrezGeneId":51545},{"hugoGeneSymbol":"ZNF582","entrezGeneId":147948},{"hugoGeneSymbol":"ZNF582-AS1","entrezGeneId":386758},{"hugoGeneSymbol":"ZNF583","entrezGeneId":147949},{"hugoGeneSymbol":"ZNF584","entrezGeneId":201514},{"hugoGeneSymbol":"ZNF585A","entrezGeneId":199704},{"hugoGeneSymbol":"ZNF585B","entrezGeneId":92285},{"hugoGeneSymbol":"ZNF586","entrezGeneId":54807},{"hugoGeneSymbol":"ZNF587","entrezGeneId":84914},{"hugoGeneSymbol":"ZNF587B","entrezGeneId":100293516},{"hugoGeneSymbol":"ZNF587P1","entrezGeneId":100419751},{"hugoGeneSymbol":"ZNF589","entrezGeneId":51385},{"hugoGeneSymbol":"ZNF592","entrezGeneId":9640},{"hugoGeneSymbol":"ZNF593","entrezGeneId":51042},{"hugoGeneSymbol":"ZNF594","entrezGeneId":84622},{"hugoGeneSymbol":"ZNF595","entrezGeneId":152687},{"hugoGeneSymbol":"ZNF596","entrezGeneId":169270},{"hugoGeneSymbol":"ZNF597","entrezGeneId":146434},{"hugoGeneSymbol":"ZNF598","entrezGeneId":90850},{"hugoGeneSymbol":"ZNF599","entrezGeneId":148103},{"hugoGeneSymbol":"ZNF600","entrezGeneId":162966},{"hugoGeneSymbol":"ZNF601P","entrezGeneId":493824},{"hugoGeneSymbol":"ZNF602P","entrezGeneId":100419608},{"hugoGeneSymbol":"ZNF603P","entrezGeneId":493821},{"hugoGeneSymbol":"ZNF605","entrezGeneId":100289635},{"hugoGeneSymbol":"ZNF606","entrezGeneId":80095},{"hugoGeneSymbol":"ZNF607","entrezGeneId":84775},{"hugoGeneSymbol":"ZNF608","entrezGeneId":57507},{"hugoGeneSymbol":"ZNF609","entrezGeneId":23060},{"hugoGeneSymbol":"ZNF610","entrezGeneId":162963},{"hugoGeneSymbol":"ZNF611","entrezGeneId":81856},{"hugoGeneSymbol":"ZNF613","entrezGeneId":79898},{"hugoGeneSymbol":"ZNF614","entrezGeneId":80110},{"hugoGeneSymbol":"ZNF615","entrezGeneId":284370},{"hugoGeneSymbol":"ZNF616","entrezGeneId":90317},{"hugoGeneSymbol":"ZNF618","entrezGeneId":114991},{"hugoGeneSymbol":"ZNF619","entrezGeneId":285267},{"hugoGeneSymbol":"ZNF619P1","entrezGeneId":100419776},{"hugoGeneSymbol":"ZNF620","entrezGeneId":253639},{"hugoGeneSymbol":"ZNF621","entrezGeneId":285268},{"hugoGeneSymbol":"ZNF622","entrezGeneId":90441},{"hugoGeneSymbol":"ZNF623","entrezGeneId":9831},{"hugoGeneSymbol":"ZNF624","entrezGeneId":57547},{"hugoGeneSymbol":"ZNF625","entrezGeneId":90589},{"hugoGeneSymbol":"ZNF625-ZNF20","entrezGeneId":100529855},{"hugoGeneSymbol":"ZNF626","entrezGeneId":199777},{"hugoGeneSymbol":"ZNF627","entrezGeneId":199692},{"hugoGeneSymbol":"ZNF628","entrezGeneId":89887},{"hugoGeneSymbol":"ZNF629","entrezGeneId":23361},{"hugoGeneSymbol":"ZNF630","entrezGeneId":57232},{"hugoGeneSymbol":"ZNF630-AS1","entrezGeneId":100874120},{"hugoGeneSymbol":"ZNF638","entrezGeneId":27332},{"hugoGeneSymbol":"ZNF639","entrezGeneId":51193},{"hugoGeneSymbol":"ZNF641","entrezGeneId":121274},{"hugoGeneSymbol":"ZNF644","entrezGeneId":84146},{"hugoGeneSymbol":"ZNF646","entrezGeneId":9726},{"hugoGeneSymbol":"ZNF646P1","entrezGeneId":100419854},{"hugoGeneSymbol":"ZNF648","entrezGeneId":127665},{"hugoGeneSymbol":"ZNF649","entrezGeneId":65251},{"hugoGeneSymbol":"ZNF649-AS1","entrezGeneId":101928571},{"hugoGeneSymbol":"ZNF652","entrezGeneId":22834},{"hugoGeneSymbol":"ZNF652P1","entrezGeneId":646592},{"hugoGeneSymbol":"ZNF653","entrezGeneId":115950},{"hugoGeneSymbol":"ZNF654","entrezGeneId":55279},{"hugoGeneSymbol":"ZNF655","entrezGeneId":79027},{"hugoGeneSymbol":"ZNF658","entrezGeneId":26149},{"hugoGeneSymbol":"ZNF658B","entrezGeneId":401509},{"hugoGeneSymbol":"ZNF66","entrezGeneId":7617},{"hugoGeneSymbol":"ZNF660","entrezGeneId":285349},{"hugoGeneSymbol":"ZNF660-ZNF197","entrezGeneId":110354863},{"hugoGeneSymbol":"ZNF662","entrezGeneId":389114},{"hugoGeneSymbol":"ZNF663P","entrezGeneId":100130934},{"hugoGeneSymbol":"ZNF664","entrezGeneId":144348},{"hugoGeneSymbol":"ZNF664-RFLNA","entrezGeneId":100533183},{"hugoGeneSymbol":"ZNF665","entrezGeneId":79788},{"hugoGeneSymbol":"ZNF667","entrezGeneId":63934},{"hugoGeneSymbol":"ZNF667-AS1","entrezGeneId":100128252},{"hugoGeneSymbol":"ZNF668","entrezGeneId":79759},{"hugoGeneSymbol":"ZNF669","entrezGeneId":79862},{"hugoGeneSymbol":"ZNF670","entrezGeneId":93474},{"hugoGeneSymbol":"ZNF670-ZNF695","entrezGeneId":100533111},{"hugoGeneSymbol":"ZNF671","entrezGeneId":79891},{"hugoGeneSymbol":"ZNF672","entrezGeneId":79894},{"hugoGeneSymbol":"ZNF674","entrezGeneId":641339},{"hugoGeneSymbol":"ZNF674-AS1","entrezGeneId":401588},{"hugoGeneSymbol":"ZNF675","entrezGeneId":171392},{"hugoGeneSymbol":"ZNF676","entrezGeneId":163223},{"hugoGeneSymbol":"ZNF677","entrezGeneId":342926},{"hugoGeneSymbol":"ZNF678","entrezGeneId":339500},{"hugoGeneSymbol":"ZNF679","entrezGeneId":168417},{"hugoGeneSymbol":"ZNF680","entrezGeneId":340252},{"hugoGeneSymbol":"ZNF680P1","entrezGeneId":728947},{"hugoGeneSymbol":"ZNF681","entrezGeneId":148213},{"hugoGeneSymbol":"ZNF682","entrezGeneId":91120},{"hugoGeneSymbol":"ZNF683","entrezGeneId":257101},{"hugoGeneSymbol":"ZNF684","entrezGeneId":127396},{"hugoGeneSymbol":"ZNF687","entrezGeneId":57592},{"hugoGeneSymbol":"ZNF688","entrezGeneId":146542},{"hugoGeneSymbol":"ZNF689","entrezGeneId":115509},{"hugoGeneSymbol":"ZNF69","entrezGeneId":7620},{"hugoGeneSymbol":"ZNF691","entrezGeneId":51058},{"hugoGeneSymbol":"ZNF692","entrezGeneId":55657},{"hugoGeneSymbol":"ZNF695","entrezGeneId":57116},{"hugoGeneSymbol":"ZNF696","entrezGeneId":79943},{"hugoGeneSymbol":"ZNF697","entrezGeneId":90874},{"hugoGeneSymbol":"ZNF699","entrezGeneId":374879},{"hugoGeneSymbol":"ZNF7","entrezGeneId":7553},{"hugoGeneSymbol":"ZNF70","entrezGeneId":7621},{"hugoGeneSymbol":"ZNF700","entrezGeneId":90592},{"hugoGeneSymbol":"ZNF701","entrezGeneId":55762},{"hugoGeneSymbol":"ZNF702P","entrezGeneId":79986},{"hugoGeneSymbol":"ZNF703","entrezGeneId":80139},{"hugoGeneSymbol":"ZNF704","entrezGeneId":619279},{"hugoGeneSymbol":"ZNF705A","entrezGeneId":440077},{"hugoGeneSymbol":"ZNF705B","entrezGeneId":100132396},{"hugoGeneSymbol":"ZNF705CP","entrezGeneId":389631},{"hugoGeneSymbol":"ZNF705D","entrezGeneId":728957},{"hugoGeneSymbol":"ZNF705E","entrezGeneId":100131539},{"hugoGeneSymbol":"ZNF705F","entrezGeneId":790969},{"hugoGeneSymbol":"ZNF705G","entrezGeneId":100131980},{"hugoGeneSymbol":"ZNF706","entrezGeneId":51123},{"hugoGeneSymbol":"ZNF707","entrezGeneId":286075},{"hugoGeneSymbol":"ZNF708","entrezGeneId":7562},{"hugoGeneSymbol":"ZNF709","entrezGeneId":163051},{"hugoGeneSymbol":"ZNF70P1","entrezGeneId":100419609},{"hugoGeneSymbol":"ZNF71","entrezGeneId":58491},{"hugoGeneSymbol":"ZNF710","entrezGeneId":374655},{"hugoGeneSymbol":"ZNF710-AS1","entrezGeneId":109729181},{"hugoGeneSymbol":"ZNF711","entrezGeneId":7552},{"hugoGeneSymbol":"ZNF713","entrezGeneId":349075},{"hugoGeneSymbol":"ZNF714","entrezGeneId":148206},{"hugoGeneSymbol":"ZNF716","entrezGeneId":441234},{"hugoGeneSymbol":"ZNF717","entrezGeneId":100131827},{"hugoGeneSymbol":"ZNF718","entrezGeneId":255403},{"hugoGeneSymbol":"ZNF720","entrezGeneId":124411},{"hugoGeneSymbol":"ZNF720P1","entrezGeneId":342426},{"hugoGeneSymbol":"ZNF721","entrezGeneId":170960},{"hugoGeneSymbol":"ZNF722P","entrezGeneId":100419780},{"hugoGeneSymbol":"ZNF723","entrezGeneId":646864},{"hugoGeneSymbol":"ZNF724","entrezGeneId":440519},{"hugoGeneSymbol":"ZNF725P","entrezGeneId":100128853},{"hugoGeneSymbol":"ZNF726","entrezGeneId":730087},{"hugoGeneSymbol":"ZNF726P1","entrezGeneId":7618},{"hugoGeneSymbol":"ZNF727","entrezGeneId":442319},{"hugoGeneSymbol":"ZNF728","entrezGeneId":388523},{"hugoGeneSymbol":"ZNF729","entrezGeneId":100287226},{"hugoGeneSymbol":"ZNF72P","entrezGeneId":100287084},{"hugoGeneSymbol":"ZNF73","entrezGeneId":105379427},{"hugoGeneSymbol":"ZNF730","entrezGeneId":100129543},{"hugoGeneSymbol":"ZNF731P","entrezGeneId":729806},{"hugoGeneSymbol":"ZNF732","entrezGeneId":654254},{"hugoGeneSymbol":"ZNF733P","entrezGeneId":643955},{"hugoGeneSymbol":"ZNF734P","entrezGeneId":644017},{"hugoGeneSymbol":"ZNF735","entrezGeneId":730291},{"hugoGeneSymbol":"ZNF736","entrezGeneId":728927},{"hugoGeneSymbol":"ZNF736P10Y","entrezGeneId":100419727},{"hugoGeneSymbol":"ZNF736P11Y","entrezGeneId":100419730},{"hugoGeneSymbol":"ZNF736P12Y","entrezGeneId":100419731},{"hugoGeneSymbol":"ZNF736P1Y","entrezGeneId":442486},{"hugoGeneSymbol":"ZNF736P2Y","entrezGeneId":392603},{"hugoGeneSymbol":"ZNF736P3Y","entrezGeneId":246123},{"hugoGeneSymbol":"ZNF736P4Y","entrezGeneId":100419735},{"hugoGeneSymbol":"ZNF736P5Y","entrezGeneId":106480711},{"hugoGeneSymbol":"ZNF736P6Y","entrezGeneId":100419732},{"hugoGeneSymbol":"ZNF736P7Y","entrezGeneId":100419725},{"hugoGeneSymbol":"ZNF736P8Y","entrezGeneId":100419724},{"hugoGeneSymbol":"ZNF736P9Y","entrezGeneId":100419726},{"hugoGeneSymbol":"ZNF737","entrezGeneId":100129842},{"hugoGeneSymbol":"ZNF738","entrezGeneId":148203},{"hugoGeneSymbol":"ZNF74","entrezGeneId":7625},{"hugoGeneSymbol":"ZNF740","entrezGeneId":283337},{"hugoGeneSymbol":"ZNF746","entrezGeneId":155061},{"hugoGeneSymbol":"ZNF747","entrezGeneId":65988},{"hugoGeneSymbol":"ZNF749","entrezGeneId":388567},{"hugoGeneSymbol":"ZNF750","entrezGeneId":79755},{"hugoGeneSymbol":"ZNF75A","entrezGeneId":7627},{"hugoGeneSymbol":"ZNF75BP","entrezGeneId":7628},{"hugoGeneSymbol":"ZNF75CP","entrezGeneId":729944},{"hugoGeneSymbol":"ZNF75D","entrezGeneId":7626},{"hugoGeneSymbol":"ZNF76","entrezGeneId":7629},{"hugoGeneSymbol":"ZNF761","entrezGeneId":388561},{"hugoGeneSymbol":"ZNF763","entrezGeneId":284390},{"hugoGeneSymbol":"ZNF764","entrezGeneId":92595},{"hugoGeneSymbol":"ZNF765","entrezGeneId":91661},{"hugoGeneSymbol":"ZNF765-ZNF761","entrezGeneId":110116772},{"hugoGeneSymbol":"ZNF766","entrezGeneId":90321},{"hugoGeneSymbol":"ZNF767P","entrezGeneId":79970},{"hugoGeneSymbol":"ZNF768","entrezGeneId":79724},{"hugoGeneSymbol":"ZNF77","entrezGeneId":58492},{"hugoGeneSymbol":"ZNF770","entrezGeneId":54989},{"hugoGeneSymbol":"ZNF771","entrezGeneId":51333},{"hugoGeneSymbol":"ZNF772","entrezGeneId":400720},{"hugoGeneSymbol":"ZNF773","entrezGeneId":374928},{"hugoGeneSymbol":"ZNF774","entrezGeneId":342132},{"hugoGeneSymbol":"ZNF775","entrezGeneId":285971},{"hugoGeneSymbol":"ZNF776","entrezGeneId":284309},{"hugoGeneSymbol":"ZNF777","entrezGeneId":27153},{"hugoGeneSymbol":"ZNF778","entrezGeneId":197320},{"hugoGeneSymbol":"ZNF780A","entrezGeneId":284323},{"hugoGeneSymbol":"ZNF780B","entrezGeneId":163131},{"hugoGeneSymbol":"ZNF781","entrezGeneId":163115},{"hugoGeneSymbol":"ZNF782","entrezGeneId":158431},{"hugoGeneSymbol":"ZNF783","entrezGeneId":100289678},{"hugoGeneSymbol":"ZNF784","entrezGeneId":147808},{"hugoGeneSymbol":"ZNF785","entrezGeneId":146540},{"hugoGeneSymbol":"ZNF786","entrezGeneId":136051},{"hugoGeneSymbol":"ZNF787","entrezGeneId":126208},{"hugoGeneSymbol":"ZNF788P","entrezGeneId":388507},{"hugoGeneSymbol":"ZNF789","entrezGeneId":285989},{"hugoGeneSymbol":"ZNF79","entrezGeneId":7633},{"hugoGeneSymbol":"ZNF790","entrezGeneId":388536},{"hugoGeneSymbol":"ZNF790-AS1","entrezGeneId":284408},{"hugoGeneSymbol":"ZNF791","entrezGeneId":163049},{"hugoGeneSymbol":"ZNF792","entrezGeneId":126375},{"hugoGeneSymbol":"ZNF793","entrezGeneId":390927},{"hugoGeneSymbol":"ZNF793-AS1","entrezGeneId":101927720},{"hugoGeneSymbol":"ZNF799","entrezGeneId":90576},{"hugoGeneSymbol":"ZNF8","entrezGeneId":7554},{"hugoGeneSymbol":"ZNF8-ERVK3-1","entrezGeneId":108903150},{"hugoGeneSymbol":"ZNF80","entrezGeneId":7634},{"hugoGeneSymbol":"ZNF800","entrezGeneId":168850},{"hugoGeneSymbol":"ZNF804A","entrezGeneId":91752},{"hugoGeneSymbol":"ZNF804B","entrezGeneId":219578},{"hugoGeneSymbol":"ZNF805","entrezGeneId":390980},{"hugoGeneSymbol":"ZNF806","entrezGeneId":646915},{"hugoGeneSymbol":"ZNF807","entrezGeneId":100129800},{"hugoGeneSymbol":"ZNF808","entrezGeneId":388558},{"hugoGeneSymbol":"ZNF81","entrezGeneId":347344},{"hugoGeneSymbol":"ZNF812P","entrezGeneId":729648},{"hugoGeneSymbol":"ZNF813","entrezGeneId":126017},{"hugoGeneSymbol":"ZNF814","entrezGeneId":730051},{"hugoGeneSymbol":"ZNF815P","entrezGeneId":401303},{"hugoGeneSymbol":"ZNF816","entrezGeneId":125893},{"hugoGeneSymbol":"ZNF816-ZNF321P","entrezGeneId":100529240},{"hugoGeneSymbol":"ZNF818P","entrezGeneId":390963},{"hugoGeneSymbol":"ZNF821","entrezGeneId":55565},{"hugoGeneSymbol":"ZNF823","entrezGeneId":55552},{"hugoGeneSymbol":"ZNF826P","entrezGeneId":664701},{"hugoGeneSymbol":"ZNF827","entrezGeneId":152485},{"hugoGeneSymbol":"ZNF829","entrezGeneId":374899},{"hugoGeneSymbol":"ZNF83","entrezGeneId":55769},{"hugoGeneSymbol":"ZNF830","entrezGeneId":91603},{"hugoGeneSymbol":"ZNF831","entrezGeneId":128611},{"hugoGeneSymbol":"ZNF833P","entrezGeneId":401898},{"hugoGeneSymbol":"ZNF835","entrezGeneId":90485},{"hugoGeneSymbol":"ZNF836","entrezGeneId":162962},{"hugoGeneSymbol":"ZNF837","entrezGeneId":116412},{"hugoGeneSymbol":"ZNF839","entrezGeneId":55778},{"hugoGeneSymbol":"ZNF839P1","entrezGeneId":100419733},{"hugoGeneSymbol":"ZNF84","entrezGeneId":7637},{"hugoGeneSymbol":"ZNF840P","entrezGeneId":100533646},{"hugoGeneSymbol":"ZNF841","entrezGeneId":284371},{"hugoGeneSymbol":"ZNF843","entrezGeneId":283933},{"hugoGeneSymbol":"ZNF844","entrezGeneId":284391},{"hugoGeneSymbol":"ZNF845","entrezGeneId":91664},{"hugoGeneSymbol":"ZNF846","entrezGeneId":162993},{"hugoGeneSymbol":"ZNF847P","entrezGeneId":401983},{"hugoGeneSymbol":"ZNF848P","entrezGeneId":100380945},{"hugoGeneSymbol":"ZNF849P","entrezGeneId":100130108},{"hugoGeneSymbol":"ZNF85","entrezGeneId":7639},{"hugoGeneSymbol":"ZNF850","entrezGeneId":342892},{"hugoGeneSymbol":"ZNF852","entrezGeneId":285346},{"hugoGeneSymbol":"ZNF853","entrezGeneId":54753},{"hugoGeneSymbol":"ZNF859P","entrezGeneId":100507490},{"hugoGeneSymbol":"ZNF860","entrezGeneId":344787},{"hugoGeneSymbol":"ZNF861P","entrezGeneId":100302737},{"hugoGeneSymbol":"ZNF862","entrezGeneId":643641},{"hugoGeneSymbol":"ZNF863P","entrezGeneId":100419682},{"hugoGeneSymbol":"ZNF865","entrezGeneId":100507290},{"hugoGeneSymbol":"ZNF876P","entrezGeneId":642280},{"hugoGeneSymbol":"ZNF877P","entrezGeneId":100873811},{"hugoGeneSymbol":"ZNF878","entrezGeneId":729747},{"hugoGeneSymbol":"ZNF879","entrezGeneId":345462},{"hugoGeneSymbol":"ZNF880","entrezGeneId":400713},{"hugoGeneSymbol":"ZNF883","entrezGeneId":169834},{"hugoGeneSymbol":"ZNF884P","entrezGeneId":100419729},{"hugoGeneSymbol":"ZNF885P","entrezGeneId":100419734},{"hugoGeneSymbol":"ZNF886P","entrezGeneId":100419728},{"hugoGeneSymbol":"ZNF887P","entrezGeneId":100419709},{"hugoGeneSymbol":"ZNF888","entrezGeneId":388559},{"hugoGeneSymbol":"ZNF890P","entrezGeneId":645700},{"hugoGeneSymbol":"ZNF891","entrezGeneId":101060200},{"hugoGeneSymbol":"ZNF90","entrezGeneId":7643},{"hugoGeneSymbol":"ZNF90P1","entrezGeneId":7661},{"hugoGeneSymbol":"ZNF90P2","entrezGeneId":100419606},{"hugoGeneSymbol":"ZNF90P3","entrezGeneId":100873799},{"hugoGeneSymbol":"ZNF91","entrezGeneId":7644},{"hugoGeneSymbol":"ZNF92","entrezGeneId":168374},{"hugoGeneSymbol":"ZNF92P1Y","entrezGeneId":100419554},{"hugoGeneSymbol":"ZNF92P2","entrezGeneId":100419705},{"hugoGeneSymbol":"ZNF92P3","entrezGeneId":100419711},{"hugoGeneSymbol":"ZNF93","entrezGeneId":81931},{"hugoGeneSymbol":"ZNF962P","entrezGeneId":729501},{"hugoGeneSymbol":"ZNF965P","entrezGeneId":100132598},{"hugoGeneSymbol":"ZNF968P","entrezGeneId":100419756},{"hugoGeneSymbol":"ZNF969P","entrezGeneId":100130995},{"hugoGeneSymbol":"ZNF970P","entrezGeneId":105369729},{"hugoGeneSymbol":"ZNF971P","entrezGeneId":100419895},{"hugoGeneSymbol":"ZNF98","entrezGeneId":148198},{"hugoGeneSymbol":"ZNF99","entrezGeneId":7652},{"hugoGeneSymbol":"ZNFX1","entrezGeneId":57169},{"hugoGeneSymbol":"ZNHIT1","entrezGeneId":10467},{"hugoGeneSymbol":"ZNHIT1P1","entrezGeneId":100288248},{"hugoGeneSymbol":"ZNHIT2","entrezGeneId":741},{"hugoGeneSymbol":"ZNHIT3","entrezGeneId":9326},{"hugoGeneSymbol":"ZNHIT6","entrezGeneId":54680},{"hugoGeneSymbol":"ZNRD1","entrezGeneId":30834},{"hugoGeneSymbol":"ZNRD1ASP","entrezGeneId":80862},{"hugoGeneSymbol":"ZNRF1","entrezGeneId":84937},{"hugoGeneSymbol":"ZNRF2","entrezGeneId":223082},{"hugoGeneSymbol":"ZNRF2P1","entrezGeneId":441208},{"hugoGeneSymbol":"ZNRF2P2","entrezGeneId":100271874},{"hugoGeneSymbol":"ZNRF2P3","entrezGeneId":100130879},{"hugoGeneSymbol":"ZNRF3","entrezGeneId":84133},{"hugoGeneSymbol":"ZNRF3-AS1","entrezGeneId":100874123},{"hugoGeneSymbol":"ZNRF3-IT1","entrezGeneId":100874339},{"hugoGeneSymbol":"ZNRF4","entrezGeneId":148066},{"hugoGeneSymbol":"ZP1","entrezGeneId":22917},{"hugoGeneSymbol":"ZP2","entrezGeneId":7783},{"hugoGeneSymbol":"ZP3","entrezGeneId":7784},{"hugoGeneSymbol":"ZP4","entrezGeneId":57829},{"hugoGeneSymbol":"ZPAXP","entrezGeneId":105373450},{"hugoGeneSymbol":"ZPBP","entrezGeneId":11055},{"hugoGeneSymbol":"ZPBP2","entrezGeneId":124626},{"hugoGeneSymbol":"ZPLD1","entrezGeneId":131368},{"hugoGeneSymbol":"ZPR1","entrezGeneId":8882},{"hugoGeneSymbol":"ZRANB1","entrezGeneId":54764},{"hugoGeneSymbol":"ZRANB2","entrezGeneId":9406},{"hugoGeneSymbol":"ZRANB2-AS1","entrezGeneId":100132618},{"hugoGeneSymbol":"ZRANB2-AS2","entrezGeneId":100852410},{"hugoGeneSymbol":"ZRANB3","entrezGeneId":84083},{"hugoGeneSymbol":"ZRF1PS","entrezGeneId":678656},{"hugoGeneSymbol":"ZRS","entrezGeneId":105804841},{"hugoGeneSymbol":"ZRSR2","entrezGeneId":8233},{"hugoGeneSymbol":"ZRSR2P1","entrezGeneId":7310},{"hugoGeneSymbol":"ZSCAN1","entrezGeneId":284312},{"hugoGeneSymbol":"ZSCAN10","entrezGeneId":84891},{"hugoGeneSymbol":"ZSCAN12","entrezGeneId":9753},{"hugoGeneSymbol":"ZSCAN12P1","entrezGeneId":221584},{"hugoGeneSymbol":"ZSCAN16","entrezGeneId":80345},{"hugoGeneSymbol":"ZSCAN16-AS1","entrezGeneId":100129195},{"hugoGeneSymbol":"ZSCAN18","entrezGeneId":65982},{"hugoGeneSymbol":"ZSCAN2","entrezGeneId":54993},{"hugoGeneSymbol":"ZSCAN20","entrezGeneId":7579},{"hugoGeneSymbol":"ZSCAN21","entrezGeneId":7589},{"hugoGeneSymbol":"ZSCAN22","entrezGeneId":342945},{"hugoGeneSymbol":"ZSCAN23","entrezGeneId":222696},{"hugoGeneSymbol":"ZSCAN25","entrezGeneId":221785},{"hugoGeneSymbol":"ZSCAN26","entrezGeneId":7741},{"hugoGeneSymbol":"ZSCAN29","entrezGeneId":146050},{"hugoGeneSymbol":"ZSCAN30","entrezGeneId":100101467},{"hugoGeneSymbol":"ZSCAN31","entrezGeneId":64288},{"hugoGeneSymbol":"ZSCAN32","entrezGeneId":54925},{"hugoGeneSymbol":"ZSCAN4","entrezGeneId":201516},{"hugoGeneSymbol":"ZSCAN5A","entrezGeneId":79149},{"hugoGeneSymbol":"ZSCAN5B","entrezGeneId":342933},{"hugoGeneSymbol":"ZSCAN5C","entrezGeneId":649137},{"hugoGeneSymbol":"ZSCAN5DP","entrezGeneId":646698},{"hugoGeneSymbol":"ZSCAN9","entrezGeneId":7746},{"hugoGeneSymbol":"ZSWIM1","entrezGeneId":90204},{"hugoGeneSymbol":"ZSWIM2","entrezGeneId":151112},{"hugoGeneSymbol":"ZSWIM3","entrezGeneId":140831},{"hugoGeneSymbol":"ZSWIM4","entrezGeneId":65249},{"hugoGeneSymbol":"ZSWIM5","entrezGeneId":57643},{"hugoGeneSymbol":"ZSWIM5P1","entrezGeneId":100130110},{"hugoGeneSymbol":"ZSWIM5P2","entrezGeneId":100132201},{"hugoGeneSymbol":"ZSWIM5P3","entrezGeneId":391697},{"hugoGeneSymbol":"ZSWIM6","entrezGeneId":57688},{"hugoGeneSymbol":"ZSWIM7","entrezGeneId":125150},{"hugoGeneSymbol":"ZSWIM8","entrezGeneId":23053},{"hugoGeneSymbol":"ZSWIM8-AS1","entrezGeneId":100507331},{"hugoGeneSymbol":"ZSWIM9","entrezGeneId":374920},{"hugoGeneSymbol":"ZUP1","entrezGeneId":221302},{"hugoGeneSymbol":"ZW10","entrezGeneId":9183},{"hugoGeneSymbol":"ZWILCH","entrezGeneId":55055},{"hugoGeneSymbol":"ZWINT","entrezGeneId":11130},{"hugoGeneSymbol":"ZXDA","entrezGeneId":7789},{"hugoGeneSymbol":"ZXDB","entrezGeneId":158586},{"hugoGeneSymbol":"ZXDC","entrezGeneId":79364},{"hugoGeneSymbol":"ZYG11A","entrezGeneId":440590},{"hugoGeneSymbol":"ZYG11AP1","entrezGeneId":100131879},{"hugoGeneSymbol":"ZYG11B","entrezGeneId":79699},{"hugoGeneSymbol":"ZYX","entrezGeneId":7791},{"hugoGeneSymbol":"ZYXP1","entrezGeneId":106480342},{"hugoGeneSymbol":"ZZEF1","entrezGeneId":23140},{"hugoGeneSymbol":"ZZZ3","entrezGeneId":26009}] diff --git a/core/src/test/scripts/test_data/api_json_unit_tests/genesaliases.json b/core/src/test/scripts/test_data/api_json_unit_tests/genesaliases.json deleted file mode 100644 index 3350f010480..00000000000 --- a/core/src/test/scripts/test_data/api_json_unit_tests/genesaliases.json +++ /dev/null @@ -1 +0,0 @@ -[{"alias":"A1B","entrezGeneId":"1"},{"alias":"ABG","entrezGeneId":"1"},{"alias":"GAB","entrezGeneId":"1"},{"alias":"HYST2477","entrezGeneId":"1"},{"alias":"A2MD","entrezGeneId":"2"},{"alias":"CPAMD5","entrezGeneId":"2"},{"alias":"FWP007","entrezGeneId":"2"},{"alias":"S863-7","entrezGeneId":"2"},{"alias":"A2MP","entrezGeneId":"3"},{"alias":"AAC1","entrezGeneId":"9"},{"alias":"MNAT","entrezGeneId":"9"},{"alias":"NAT-1","entrezGeneId":"9"},{"alias":"NATI","entrezGeneId":"9"},{"alias":"AAC2","entrezGeneId":"10"},{"alias":"NAT-2","entrezGeneId":"10"},{"alias":"PNAT","entrezGeneId":"10"},{"alias":"AACP","entrezGeneId":"11"},{"alias":"NATP1","entrezGeneId":"11"},{"alias":"AACT","entrezGeneId":"12"},{"alias":"ACT","entrezGeneId":"12"},{"alias":"GIG24","entrezGeneId":"12"},{"alias":"GIG25","entrezGeneId":"12"},{"alias":"CES5A1","entrezGeneId":"13"},{"alias":"DAC","entrezGeneId":"13"},{"alias":"DSPS","entrezGeneId":"15"},{"alias":"SNAT","entrezGeneId":"15"},{"alias":"CMT2N","entrezGeneId":"16"},{"alias":"EIEE29","entrezGeneId":"16"},{"alias":"AAV","entrezGeneId":"17"},{"alias":"GABA-AT","entrezGeneId":"18"},{"alias":"GABAT","entrezGeneId":"18"},{"alias":"NPD009","entrezGeneId":"18"},{"alias":"ABC-1","entrezGeneId":"19"},{"alias":"ABC1","entrezGeneId":"19"},{"alias":"CERP","entrezGeneId":"19"},{"alias":"HDLDT1","entrezGeneId":"19"},{"alias":"TGD","entrezGeneId":"19"},{"alias":"ABC2","entrezGeneId":"20"},{"alias":"ABC-C","entrezGeneId":"21"},{"alias":"ABC3","entrezGeneId":"21"},{"alias":"EST111653","entrezGeneId":"21"},{"alias":"LBM180","entrezGeneId":"21"},{"alias":"SMDP3","entrezGeneId":"21"},{"alias":"ABC7","entrezGeneId":"22"},{"alias":"ASAT","entrezGeneId":"22"},{"alias":"Atm1p","entrezGeneId":"22"},{"alias":"EST140535","entrezGeneId":"22"},{"alias":"ABC27","entrezGeneId":"23"},{"alias":"ABC50","entrezGeneId":"23"},{"alias":"ABC10","entrezGeneId":"24"},{"alias":"ABCR","entrezGeneId":"24"},{"alias":"ARMD2","entrezGeneId":"24"},{"alias":"CORD3","entrezGeneId":"24"},{"alias":"FFM","entrezGeneId":"24"},{"alias":"RMP","entrezGeneId":"24"},{"alias":"RP19","entrezGeneId":"24"},{"alias":"STGD","entrezGeneId":"24"},{"alias":"STGD1","entrezGeneId":"24"},{"alias":"ABL","entrezGeneId":"25"},{"alias":"bcr/abl","entrezGeneId":"25"},{"alias":"c-ABL","entrezGeneId":"25"},{"alias":"c-ABL1","entrezGeneId":"25"},{"alias":"CHDSKM","entrezGeneId":"25"},{"alias":"JTK7","entrezGeneId":"25"},{"alias":"p150","entrezGeneId":"25"},{"alias":"v-abl","entrezGeneId":"25"},{"alias":"ABP","entrezGeneId":"26"},{"alias":"ABP1","entrezGeneId":"26"},{"alias":"DAO","entrezGeneId":"26"},{"alias":"DAO1","entrezGeneId":"26"},{"alias":"KAO","entrezGeneId":"26"},{"alias":"ABLL","entrezGeneId":"27"},{"alias":"ARG","entrezGeneId":"27"},{"alias":"A3GALNT","entrezGeneId":"28"},{"alias":"A3GALT1","entrezGeneId":"28"},{"alias":"GTB","entrezGeneId":"28"},{"alias":"NAGAT","entrezGeneId":"28"},{"alias":"MDB","entrezGeneId":"29"},{"alias":"ACAA","entrezGeneId":"30"},{"alias":"PTHIO","entrezGeneId":"30"},{"alias":"THIO","entrezGeneId":"30"},{"alias":"ACAC","entrezGeneId":"31"},{"alias":"ACACAD","entrezGeneId":"31"},{"alias":"ACC","entrezGeneId":"31"},{"alias":"ACC1","entrezGeneId":"31"},{"alias":"ACCA","entrezGeneId":"31"},{"alias":"ACC2","entrezGeneId":"32"},{"alias":"ACCB","entrezGeneId":"32"},{"alias":"HACC275","entrezGeneId":"32"},{"alias":"ACAD4","entrezGeneId":"33"},{"alias":"LCAD","entrezGeneId":"33"},{"alias":"ACAD1","entrezGeneId":"34"},{"alias":"MCAD","entrezGeneId":"34"},{"alias":"MCADH","entrezGeneId":"34"},{"alias":"ACAD3","entrezGeneId":"35"},{"alias":"SCAD","entrezGeneId":"35"},{"alias":"2-MEBCAD","entrezGeneId":"36"},{"alias":"ACAD7","entrezGeneId":"36"},{"alias":"SBCAD","entrezGeneId":"36"},{"alias":"ACAD6","entrezGeneId":"37"},{"alias":"LCACD","entrezGeneId":"37"},{"alias":"VLCAD","entrezGeneId":"37"},{"alias":"ACAT","entrezGeneId":"38"},{"alias":"MAT","entrezGeneId":"38"},{"alias":"T2","entrezGeneId":"38"},{"alias":"THIL","entrezGeneId":"38"},{"alias":"ACCN","entrezGeneId":"40"},{"alias":"ACCN1","entrezGeneId":"40"},{"alias":"ASIC2a","entrezGeneId":"40"},{"alias":"BNaC1","entrezGeneId":"40"},{"alias":"BNC1","entrezGeneId":"40"},{"alias":"hBNaC1","entrezGeneId":"40"},{"alias":"MDEG","entrezGeneId":"40"},{"alias":"ACCN2","entrezGeneId":"41"},{"alias":"ASIC","entrezGeneId":"41"},{"alias":"BNaC2","entrezGeneId":"41"},{"alias":"ACEE","entrezGeneId":"43"},{"alias":"ARACHE","entrezGeneId":"43"},{"alias":"N-ACHE","entrezGeneId":"43"},{"alias":"YT","entrezGeneId":"43"},{"alias":"ACL","entrezGeneId":"47"},{"alias":"ATPCL","entrezGeneId":"47"},{"alias":"CLATP","entrezGeneId":"47"},{"alias":"ACONS","entrezGeneId":"48"},{"alias":"HEL60","entrezGeneId":"48"},{"alias":"IREB1","entrezGeneId":"48"},{"alias":"IREBP","entrezGeneId":"48"},{"alias":"IREBP1","entrezGeneId":"48"},{"alias":"IRP1","entrezGeneId":"48"},{"alias":"ACONM","entrezGeneId":"50"},{"alias":"HEL-S-284","entrezGeneId":"50"},{"alias":"ICRD","entrezGeneId":"50"},{"alias":"OCA8","entrezGeneId":"50"},{"alias":"OPA9","entrezGeneId":"50"},{"alias":"ACOX","entrezGeneId":"51"},{"alias":"PALMCOX","entrezGeneId":"51"},{"alias":"SCOX","entrezGeneId":"51"},{"alias":"HAAP","entrezGeneId":"52"},{"alias":"LMW-PTP","entrezGeneId":"52"},{"alias":"LMWPTP","entrezGeneId":"52"},{"alias":"LAP","entrezGeneId":"53"},{"alias":"HPAP","entrezGeneId":"54"},{"alias":"TRACP5a","entrezGeneId":"54"},{"alias":"TRACP5b","entrezGeneId":"54"},{"alias":"TRAP","entrezGeneId":"54"},{"alias":"TrATPase","entrezGeneId":"54"},{"alias":"5'-NT","entrezGeneId":"55"},{"alias":"ACP-3","entrezGeneId":"55"},{"alias":"ACP3","entrezGeneId":"55"},{"alias":"D11S4365","entrezGeneId":"56"},{"alias":"SP-10","entrezGeneId":"56"},{"alias":"SPACA2","entrezGeneId":"56"},{"alias":"ACTA","entrezGeneId":"58"},{"alias":"ASMA","entrezGeneId":"58"},{"alias":"CFTD","entrezGeneId":"58"},{"alias":"CFTD1","entrezGeneId":"58"},{"alias":"CFTDM","entrezGeneId":"58"},{"alias":"MPFD","entrezGeneId":"58"},{"alias":"NEM1","entrezGeneId":"58"},{"alias":"NEM2","entrezGeneId":"58"},{"alias":"NEM3","entrezGeneId":"58"},{"alias":"SHPM","entrezGeneId":"58"},{"alias":"ACTSA","entrezGeneId":"59"},{"alias":"BRWS1","entrezGeneId":"60"},{"alias":"PS1TP5BP1","entrezGeneId":"60"},{"alias":"H8-PSI-BETA-AC3","entrezGeneId":"66"},{"alias":"ACTBP2","entrezGeneId":"68"},{"alias":"ACTC","entrezGeneId":"70"},{"alias":"ASD5","entrezGeneId":"70"},{"alias":"CMD1R","entrezGeneId":"70"},{"alias":"CMH11","entrezGeneId":"70"},{"alias":"LVNC4","entrezGeneId":"70"},{"alias":"ACT","entrezGeneId":"71"},{"alias":"ACTG","entrezGeneId":"71"},{"alias":"DFNA20","entrezGeneId":"71"},{"alias":"DFNA26","entrezGeneId":"71"},{"alias":"HEL-176","entrezGeneId":"71"},{"alias":"ACT","entrezGeneId":"72"},{"alias":"ACTA3","entrezGeneId":"72"},{"alias":"ACTE","entrezGeneId":"72"},{"alias":"ACTL3","entrezGeneId":"72"},{"alias":"ACTSG","entrezGeneId":"72"},{"alias":"VSCM","entrezGeneId":"72"},{"alias":"ACT1GP1","entrezGeneId":"73"},{"alias":"ACTGP1","entrezGeneId":"73"},{"alias":"HY-psi-gamma-AC6","entrezGeneId":"73"},{"alias":"ACTGP2","entrezGeneId":"74"},{"alias":"ACTL2","entrezGeneId":"74"},{"alias":"ACTGP3","entrezGeneId":"75"},{"alias":"dJ545L17.4","entrezGeneId":"75"},{"alias":"ACTGP6","entrezGeneId":"78"},{"alias":"ACTGP7","entrezGeneId":"79"},{"alias":"ACTGP8","entrezGeneId":"80"},{"alias":"ACTININ-4","entrezGeneId":"81"},{"alias":"FSGS","entrezGeneId":"81"},{"alias":"FSGS1","entrezGeneId":"81"},{"alias":"ACTGP9","entrezGeneId":"82"},{"alias":"ACTGP10","entrezGeneId":"83"},{"alias":"ACTL1","entrezGeneId":"83"},{"alias":"ACTP1","entrezGeneId":"83"},{"alias":"ACTL6","entrezGeneId":"86"},{"alias":"Arp4","entrezGeneId":"86"},{"alias":"ARPN-BETA","entrezGeneId":"86"},{"alias":"BAF53A","entrezGeneId":"86"},{"alias":"INO80K","entrezGeneId":"86"},{"alias":"BDPLT15","entrezGeneId":"87"},{"alias":"CMD1AA","entrezGeneId":"88"},{"alias":"CMH23","entrezGeneId":"88"},{"alias":"ACTN3D","entrezGeneId":"89"},{"alias":"ACTRI","entrezGeneId":"90"},{"alias":"ACVR1A","entrezGeneId":"90"},{"alias":"ACVRLK2","entrezGeneId":"90"},{"alias":"ALK2","entrezGeneId":"90"},{"alias":"FOP","entrezGeneId":"90"},{"alias":"SKR1","entrezGeneId":"90"},{"alias":"TSRI","entrezGeneId":"90"},{"alias":"ACTRIB","entrezGeneId":"91"},{"alias":"ACVRLK4","entrezGeneId":"91"},{"alias":"ALK4","entrezGeneId":"91"},{"alias":"SKR2","entrezGeneId":"91"},{"alias":"ACTRII","entrezGeneId":"92"},{"alias":"ACVR2","entrezGeneId":"92"},{"alias":"ActR-IIB","entrezGeneId":"93"},{"alias":"ACTRIIB","entrezGeneId":"93"},{"alias":"HTX4","entrezGeneId":"93"},{"alias":"ACVRLK1","entrezGeneId":"94"},{"alias":"ALK-1","entrezGeneId":"94"},{"alias":"ALK1","entrezGeneId":"94"},{"alias":"HHT","entrezGeneId":"94"},{"alias":"HHT2","entrezGeneId":"94"},{"alias":"ORW2","entrezGeneId":"94"},{"alias":"SKR3","entrezGeneId":"94"},{"alias":"TSR-I","entrezGeneId":"94"},{"alias":"ACY-1","entrezGeneId":"95"},{"alias":"ACY1D","entrezGeneId":"95"},{"alias":"HEL-S-5","entrezGeneId":"95"},{"alias":"ACYPE","entrezGeneId":"97"},{"alias":"ACYM","entrezGeneId":"98"},{"alias":"ACYP","entrezGeneId":"98"},{"alias":"CD156","entrezGeneId":"101"},{"alias":"CD156a","entrezGeneId":"101"},{"alias":"MS2","entrezGeneId":"101"},{"alias":"AD10","entrezGeneId":"102"},{"alias":"AD18","entrezGeneId":"102"},{"alias":"CD156c","entrezGeneId":"102"},{"alias":"CDw156","entrezGeneId":"102"},{"alias":"HsT18717","entrezGeneId":"102"},{"alias":"kuz","entrezGeneId":"102"},{"alias":"MADM","entrezGeneId":"102"},{"alias":"RAK","entrezGeneId":"102"},{"alias":"ADAR1","entrezGeneId":"103"},{"alias":"AGS6","entrezGeneId":"103"},{"alias":"DRADA","entrezGeneId":"103"},{"alias":"DSH","entrezGeneId":"103"},{"alias":"DSRAD","entrezGeneId":"103"},{"alias":"G1P1","entrezGeneId":"103"},{"alias":"IFI-4","entrezGeneId":"103"},{"alias":"IFI4","entrezGeneId":"103"},{"alias":"K88DSRBP","entrezGeneId":"103"},{"alias":"P136","entrezGeneId":"103"},{"alias":"ADAR2","entrezGeneId":"104"},{"alias":"DRABA2","entrezGeneId":"104"},{"alias":"DRADA2","entrezGeneId":"104"},{"alias":"RED1","entrezGeneId":"104"},{"alias":"ADAR3","entrezGeneId":"105"},{"alias":"RED2","entrezGeneId":"105"},{"alias":"AC1","entrezGeneId":"107"},{"alias":"DFNB44","entrezGeneId":"107"},{"alias":"AC2","entrezGeneId":"108"},{"alias":"HBAC2","entrezGeneId":"108"},{"alias":"AC-III","entrezGeneId":"109"},{"alias":"AC3","entrezGeneId":"109"},{"alias":"BMIQ19","entrezGeneId":"109"},{"alias":"AC5","entrezGeneId":"111"},{"alias":"FDFM","entrezGeneId":"111"},{"alias":"AC6","entrezGeneId":"112"},{"alias":"LCCS8","entrezGeneId":"112"},{"alias":"AC7","entrezGeneId":"113"},{"alias":"AC8","entrezGeneId":"114"},{"alias":"ADCY3","entrezGeneId":"114"},{"alias":"HBAC1","entrezGeneId":"114"},{"alias":"AC9","entrezGeneId":"115"},{"alias":"ACIX","entrezGeneId":"115"},{"alias":"PACAP","entrezGeneId":"116"},{"alias":"PAC1","entrezGeneId":"117"},{"alias":"PAC1R","entrezGeneId":"117"},{"alias":"PACAPR","entrezGeneId":"117"},{"alias":"PACAPRI","entrezGeneId":"117"},{"alias":"ADDA","entrezGeneId":"118"},{"alias":"ADDB","entrezGeneId":"119"},{"alias":"ADDL","entrezGeneId":"120"},{"alias":"CPSQ3","entrezGeneId":"120"},{"alias":"ALDS","entrezGeneId":"122"},{"alias":"ADFP","entrezGeneId":"123"},{"alias":"ADRP","entrezGeneId":"123"},{"alias":"ADH1","entrezGeneId":"124"},{"alias":"ADH2","entrezGeneId":"125"},{"alias":"HEL-S-117","entrezGeneId":"125"},{"alias":"ADH3","entrezGeneId":"126"},{"alias":"ADH-2","entrezGeneId":"127"},{"alias":"HEL-S-4","entrezGeneId":"127"},{"alias":"ADH-3","entrezGeneId":"128"},{"alias":"ADHX","entrezGeneId":"128"},{"alias":"FALDH","entrezGeneId":"128"},{"alias":"FDH","entrezGeneId":"128"},{"alias":"GSH-FDH","entrezGeneId":"128"},{"alias":"GSNOR","entrezGeneId":"128"},{"alias":"HEL-S-60p","entrezGeneId":"128"},{"alias":"ADH-5","entrezGeneId":"130"},{"alias":"ADH4","entrezGeneId":"131"},{"alias":"AK","entrezGeneId":"132"},{"alias":"AM","entrezGeneId":"133"},{"alias":"PAMP","entrezGeneId":"133"},{"alias":"RDC7","entrezGeneId":"134"},{"alias":"A2aR","entrezGeneId":"135"},{"alias":"ADORA2","entrezGeneId":"135"},{"alias":"RDC8","entrezGeneId":"135"},{"alias":"ADORA2","entrezGeneId":"136"},{"alias":"ADORA2BP","entrezGeneId":"137"},{"alias":"A3AR","entrezGeneId":"140"},{"alias":"ARH1","entrezGeneId":"141"},{"alias":"ADPRT","entrezGeneId":"142"},{"alias":"ADPRT 1","entrezGeneId":"142"},{"alias":"ADPRT1","entrezGeneId":"142"},{"alias":"ARTD1","entrezGeneId":"142"},{"alias":"pADPRT-1","entrezGeneId":"142"},{"alias":"PARP","entrezGeneId":"142"},{"alias":"PARP-1","entrezGeneId":"142"},{"alias":"PPOL","entrezGeneId":"142"},{"alias":"ADPRTL1","entrezGeneId":"143"},{"alias":"ARTD4","entrezGeneId":"143"},{"alias":"p193","entrezGeneId":"143"},{"alias":"PARP-4","entrezGeneId":"143"},{"alias":"PARPL","entrezGeneId":"143"},{"alias":"PH5P","entrezGeneId":"143"},{"alias":"VAULT3","entrezGeneId":"143"},{"alias":"VPARP","entrezGeneId":"143"},{"alias":"VWA5C","entrezGeneId":"143"},{"alias":"ADPRTP1","entrezGeneId":"144"},{"alias":"PPOLP1","entrezGeneId":"144"},{"alias":"ADPRTP2","entrezGeneId":"145"},{"alias":"PPOLP2","entrezGeneId":"145"},{"alias":"ADRA1","entrezGeneId":"146"},{"alias":"ADRA1A","entrezGeneId":"146"},{"alias":"ADRA1R","entrezGeneId":"146"},{"alias":"ALPHA1","entrezGeneId":"146"},{"alias":"DAR","entrezGeneId":"146"},{"alias":"dJ779E11.2","entrezGeneId":"146"},{"alias":"ADRA1","entrezGeneId":"147"},{"alias":"ALPHA1BAR","entrezGeneId":"147"},{"alias":"ADRA1C","entrezGeneId":"148"},{"alias":"ADRA1L1","entrezGeneId":"148"},{"alias":"ALPHA1AAR","entrezGeneId":"148"},{"alias":"ADRA2","entrezGeneId":"150"},{"alias":"ADRA2R","entrezGeneId":"150"},{"alias":"ADRAR","entrezGeneId":"150"},{"alias":"ALPHA2AAR","entrezGeneId":"150"},{"alias":"ZNF32","entrezGeneId":"150"},{"alias":"ADRA2L1","entrezGeneId":"151"},{"alias":"ADRA2RL1","entrezGeneId":"151"},{"alias":"ADRARL1","entrezGeneId":"151"},{"alias":"alpha-2BAR","entrezGeneId":"151"},{"alias":"ALPHA2BAR","entrezGeneId":"151"},{"alias":"FAME2","entrezGeneId":"151"},{"alias":"ADRA2L2","entrezGeneId":"152"},{"alias":"ADRA2RL2","entrezGeneId":"152"},{"alias":"ADRARL2","entrezGeneId":"152"},{"alias":"ALPHA2CAR","entrezGeneId":"152"},{"alias":"ADRB1R","entrezGeneId":"153"},{"alias":"B1AR","entrezGeneId":"153"},{"alias":"BETA1AR","entrezGeneId":"153"},{"alias":"RHR","entrezGeneId":"153"},{"alias":"ADRB2R","entrezGeneId":"154"},{"alias":"ADRBR","entrezGeneId":"154"},{"alias":"B2AR","entrezGeneId":"154"},{"alias":"BAR","entrezGeneId":"154"},{"alias":"BETA2AR","entrezGeneId":"154"},{"alias":"BETA3AR","entrezGeneId":"155"},{"alias":"ADRBK1","entrezGeneId":"156"},{"alias":"BARK1","entrezGeneId":"156"},{"alias":"BETA-ARK1","entrezGeneId":"156"},{"alias":"ADRBK2","entrezGeneId":"157"},{"alias":"BARK2","entrezGeneId":"157"},{"alias":"AMPS","entrezGeneId":"158"},{"alias":"ASASE","entrezGeneId":"158"},{"alias":"ASL","entrezGeneId":"158"},{"alias":"ADEH","entrezGeneId":"159"},{"alias":"ADSS 2","entrezGeneId":"159"},{"alias":"ADTAA","entrezGeneId":"160"},{"alias":"AP2-ALPHA","entrezGeneId":"160"},{"alias":"CLAPA1","entrezGeneId":"160"},{"alias":"ADTAB","entrezGeneId":"161"},{"alias":"CLAPA2","entrezGeneId":"161"},{"alias":"HIP-9","entrezGeneId":"161"},{"alias":"HIP9","entrezGeneId":"161"},{"alias":"HYPJ","entrezGeneId":"161"},{"alias":"ADTB1","entrezGeneId":"162"},{"alias":"AP105A","entrezGeneId":"162"},{"alias":"BAM22","entrezGeneId":"162"},{"alias":"CLAPB2","entrezGeneId":"162"},{"alias":"ADTB2","entrezGeneId":"163"},{"alias":"AP105B","entrezGeneId":"163"},{"alias":"AP2-BETA","entrezGeneId":"163"},{"alias":"CLAPB1","entrezGeneId":"163"},{"alias":"ADTG","entrezGeneId":"164"},{"alias":"CLAPG1","entrezGeneId":"164"},{"alias":"ACLP","entrezGeneId":"165"},{"alias":"AES-1","entrezGeneId":"166"},{"alias":"AES-2","entrezGeneId":"166"},{"alias":"ESP1","entrezGeneId":"166"},{"alias":"GRG","entrezGeneId":"166"},{"alias":"Grg-5","entrezGeneId":"166"},{"alias":"GRG5","entrezGeneId":"166"},{"alias":"TLE5","entrezGeneId":"166"},{"alias":"AEGL1","entrezGeneId":"167"},{"alias":"ARP","entrezGeneId":"167"},{"alias":"CRISP-1","entrezGeneId":"167"},{"alias":"HEL-S-57","entrezGeneId":"167"},{"alias":"HSCRISP1D","entrezGeneId":"167"},{"alias":"HSCRISP1G","entrezGeneId":"167"},{"alias":"HUMARP","entrezGeneId":"167"},{"alias":"AFDN","entrezGeneId":"171"},{"alias":"AFG3","entrezGeneId":"172"},{"alias":"AFG3L1","entrezGeneId":"172"},{"alias":"ALB2","entrezGeneId":"173"},{"alias":"ALBA","entrezGeneId":"173"},{"alias":"ALF","entrezGeneId":"173"},{"alias":"AFPD","entrezGeneId":"174"},{"alias":"FETA","entrezGeneId":"174"},{"alias":"HPAFP","entrezGeneId":"174"},{"alias":"AGU","entrezGeneId":"175"},{"alias":"ASRG","entrezGeneId":"175"},{"alias":"GA","entrezGeneId":"175"},{"alias":"AGC1","entrezGeneId":"176"},{"alias":"AGCAN","entrezGeneId":"176"},{"alias":"CSPG1","entrezGeneId":"176"},{"alias":"CSPGCP","entrezGeneId":"176"},{"alias":"MSK16","entrezGeneId":"176"},{"alias":"SEDK","entrezGeneId":"176"},{"alias":"SSOAOD","entrezGeneId":"176"},{"alias":"RAGE","entrezGeneId":"177"},{"alias":"SCARJ1","entrezGeneId":"177"},{"alias":"GDE","entrezGeneId":"178"},{"alias":"IMD6","entrezGeneId":"179"},{"alias":"XLA2","entrezGeneId":"179"},{"alias":"AGRT","entrezGeneId":"181"},{"alias":"ART","entrezGeneId":"181"},{"alias":"ASIP2","entrezGeneId":"181"},{"alias":"AGS","entrezGeneId":"182"},{"alias":"AGS1","entrezGeneId":"182"},{"alias":"AHD","entrezGeneId":"182"},{"alias":"AWS","entrezGeneId":"182"},{"alias":"CD339","entrezGeneId":"182"},{"alias":"HJ1","entrezGeneId":"182"},{"alias":"JAGL1","entrezGeneId":"182"},{"alias":"ANHU","entrezGeneId":"183"},{"alias":"hFLT1","entrezGeneId":"183"},{"alias":"SERPINA8","entrezGeneId":"183"},{"alias":"AG2S","entrezGeneId":"185"},{"alias":"AGTR1B","entrezGeneId":"185"},{"alias":"AT1","entrezGeneId":"185"},{"alias":"AT1AR","entrezGeneId":"185"},{"alias":"AT1B","entrezGeneId":"185"},{"alias":"AT1BR","entrezGeneId":"185"},{"alias":"AT1R","entrezGeneId":"185"},{"alias":"AT2R1","entrezGeneId":"185"},{"alias":"HAT1R","entrezGeneId":"185"},{"alias":"AT2","entrezGeneId":"186"},{"alias":"ATGR2","entrezGeneId":"186"},{"alias":"MRX88","entrezGeneId":"186"},{"alias":"AGTRL1","entrezGeneId":"187"},{"alias":"APJ","entrezGeneId":"187"},{"alias":"APJR","entrezGeneId":"187"},{"alias":"HG11","entrezGeneId":"187"},{"alias":"AGT","entrezGeneId":"189"},{"alias":"AGT1","entrezGeneId":"189"},{"alias":"AGXT1","entrezGeneId":"189"},{"alias":"PH1","entrezGeneId":"189"},{"alias":"SPAT","entrezGeneId":"189"},{"alias":"SPT","entrezGeneId":"189"},{"alias":"TLH6","entrezGeneId":"189"},{"alias":"AHC","entrezGeneId":"190"},{"alias":"AHCH","entrezGeneId":"190"},{"alias":"AHX","entrezGeneId":"190"},{"alias":"DAX-1","entrezGeneId":"190"},{"alias":"DAX1","entrezGeneId":"190"},{"alias":"DSS","entrezGeneId":"190"},{"alias":"GTD","entrezGeneId":"190"},{"alias":"HHG","entrezGeneId":"190"},{"alias":"NROB1","entrezGeneId":"190"},{"alias":"SRXY2","entrezGeneId":"190"},{"alias":"adoHcyase","entrezGeneId":"191"},{"alias":"SAHH","entrezGeneId":"191"},{"alias":"bHLHe76","entrezGeneId":"196"},{"alias":"A2HS","entrezGeneId":"197"},{"alias":"AHS","entrezGeneId":"197"},{"alias":"APMR1","entrezGeneId":"197"},{"alias":"FETUA","entrezGeneId":"197"},{"alias":"HSGA","entrezGeneId":"197"},{"alias":"AIF-1","entrezGeneId":"199"},{"alias":"IBA1","entrezGeneId":"199"},{"alias":"IRT-1","entrezGeneId":"199"},{"alias":"IRT1","entrezGeneId":"199"},{"alias":"AIM1","entrezGeneId":"202"},{"alias":"ST4","entrezGeneId":"202"},{"alias":"HTL-S-58j","entrezGeneId":"203"},{"alias":"ADK2","entrezGeneId":"204"},{"alias":"AK 4","entrezGeneId":"205"},{"alias":"AK3","entrezGeneId":"205"},{"alias":"AK3L1","entrezGeneId":"205"},{"alias":"AK3L2","entrezGeneId":"205"},{"alias":"AK3P1","entrezGeneId":"206"},{"alias":"AKT","entrezGeneId":"207"},{"alias":"CWS6","entrezGeneId":"207"},{"alias":"PKB","entrezGeneId":"207"},{"alias":"PKB-ALPHA","entrezGeneId":"207"},{"alias":"PRKBA","entrezGeneId":"207"},{"alias":"RAC","entrezGeneId":"207"},{"alias":"RAC-ALPHA","entrezGeneId":"207"},{"alias":"HIHGHH","entrezGeneId":"208"},{"alias":"PKBB","entrezGeneId":"208"},{"alias":"PKBBETA","entrezGeneId":"208"},{"alias":"PRKBB","entrezGeneId":"208"},{"alias":"RAC-BETA","entrezGeneId":"208"},{"alias":"ALADH","entrezGeneId":"210"},{"alias":"PBGS","entrezGeneId":"210"},{"alias":"ALAS","entrezGeneId":"211"},{"alias":"ALAS-H","entrezGeneId":"211"},{"alias":"ALAS3","entrezGeneId":"211"},{"alias":"ALASH","entrezGeneId":"211"},{"alias":"MIG4","entrezGeneId":"211"},{"alias":"ALAS-E","entrezGeneId":"212"},{"alias":"ALASE","entrezGeneId":"212"},{"alias":"ANH1","entrezGeneId":"212"},{"alias":"ASB","entrezGeneId":"212"},{"alias":"SIDBA1","entrezGeneId":"212"},{"alias":"XLDPP","entrezGeneId":"212"},{"alias":"XLEPP","entrezGeneId":"212"},{"alias":"XLSA","entrezGeneId":"212"},{"alias":"HSA","entrezGeneId":"213"},{"alias":"PRO0883","entrezGeneId":"213"},{"alias":"PRO0903","entrezGeneId":"213"},{"alias":"PRO1341","entrezGeneId":"213"},{"alias":"CD166","entrezGeneId":"214"},{"alias":"MEMD","entrezGeneId":"214"},{"alias":"ABC42","entrezGeneId":"215"},{"alias":"ALD","entrezGeneId":"215"},{"alias":"ALDP","entrezGeneId":"215"},{"alias":"AMN","entrezGeneId":"215"},{"alias":"ALDC","entrezGeneId":"216"},{"alias":"ALDH-E1","entrezGeneId":"216"},{"alias":"ALDH1","entrezGeneId":"216"},{"alias":"ALDH11","entrezGeneId":"216"},{"alias":"HEL-9","entrezGeneId":"216"},{"alias":"HEL-S-53e","entrezGeneId":"216"},{"alias":"HEL12","entrezGeneId":"216"},{"alias":"PUMB1","entrezGeneId":"216"},{"alias":"RALDH1","entrezGeneId":"216"},{"alias":"ALDH-E2","entrezGeneId":"217"},{"alias":"ALDHI","entrezGeneId":"217"},{"alias":"ALDM","entrezGeneId":"217"},{"alias":"ALDH3","entrezGeneId":"218"},{"alias":"ALDHIII","entrezGeneId":"218"},{"alias":"ALDH5","entrezGeneId":"219"},{"alias":"ALDHX","entrezGeneId":"219"},{"alias":"ALDH1A6","entrezGeneId":"220"},{"alias":"ALDH6","entrezGeneId":"220"},{"alias":"MCOP8","entrezGeneId":"220"},{"alias":"RALDH3","entrezGeneId":"220"},{"alias":"ALDH4","entrezGeneId":"221"},{"alias":"ALDH7","entrezGeneId":"221"},{"alias":"ALDH8","entrezGeneId":"222"},{"alias":"ALDH4","entrezGeneId":"223"},{"alias":"ALDH7","entrezGeneId":"223"},{"alias":"ALDH9","entrezGeneId":"223"},{"alias":"E3","entrezGeneId":"223"},{"alias":"TMABADH","entrezGeneId":"223"},{"alias":"ALDH10","entrezGeneId":"224"},{"alias":"FALDH","entrezGeneId":"224"},{"alias":"SLS","entrezGeneId":"224"},{"alias":"ABC39","entrezGeneId":"225"},{"alias":"ALDL1","entrezGeneId":"225"},{"alias":"ALDR","entrezGeneId":"225"},{"alias":"ALDRP","entrezGeneId":"225"},{"alias":"hALDR","entrezGeneId":"225"},{"alias":"ALDA","entrezGeneId":"226"},{"alias":"GSD12","entrezGeneId":"226"},{"alias":"HEL-S-87p","entrezGeneId":"226"},{"alias":"ALDB","entrezGeneId":"229"},{"alias":"ALDO2","entrezGeneId":"229"},{"alias":"ALDC","entrezGeneId":"230"},{"alias":"ADR","entrezGeneId":"231"},{"alias":"ALDR1","entrezGeneId":"231"},{"alias":"ALR2","entrezGeneId":"231"},{"alias":"AR","entrezGeneId":"231"},{"alias":"ALDRP","entrezGeneId":"236"},{"alias":"CD246","entrezGeneId":"238"},{"alias":"NBLST3","entrezGeneId":"238"},{"alias":"12-LOX","entrezGeneId":"239"},{"alias":"12S-LOX","entrezGeneId":"239"},{"alias":"LOG12","entrezGeneId":"239"},{"alias":"5-LO","entrezGeneId":"240"},{"alias":"5-LOX","entrezGeneId":"240"},{"alias":"5LPG","entrezGeneId":"240"},{"alias":"LOG5","entrezGeneId":"240"},{"alias":"FLAP","entrezGeneId":"241"},{"alias":"12R-LOX","entrezGeneId":"242"},{"alias":"ARCI2","entrezGeneId":"242"},{"alias":"ALOX12P","entrezGeneId":"243"},{"alias":"ALOX12E","entrezGeneId":"245"},{"alias":"12-LOX","entrezGeneId":"246"},{"alias":"15-LOX","entrezGeneId":"246"},{"alias":"15-LOX-1","entrezGeneId":"246"},{"alias":"LOG15","entrezGeneId":"246"},{"alias":"15-LOX-2","entrezGeneId":"247"},{"alias":"IAP","entrezGeneId":"248"},{"alias":"AP-TNAP","entrezGeneId":"249"},{"alias":"APTNAP","entrezGeneId":"249"},{"alias":"HOPS","entrezGeneId":"249"},{"alias":"TNALP","entrezGeneId":"249"},{"alias":"TNAP","entrezGeneId":"249"},{"alias":"TNSALP","entrezGeneId":"249"},{"alias":"ALP","entrezGeneId":"250"},{"alias":"PALP","entrezGeneId":"250"},{"alias":"PLAP","entrezGeneId":"250"},{"alias":"PLAP-1","entrezGeneId":"250"},{"alias":"ALPG","entrezGeneId":"251"},{"alias":"ALPPL","entrezGeneId":"251"},{"alias":"GCAP","entrezGeneId":"251"},{"alias":"ALS6","entrezGeneId":"253"},{"alias":"FND","entrezGeneId":"257"},{"alias":"FND1","entrezGeneId":"257"},{"alias":"AI1F","entrezGeneId":"258"},{"alias":"A1M","entrezGeneId":"259"},{"alias":"EDC1","entrezGeneId":"259"},{"alias":"HCP","entrezGeneId":"259"},{"alias":"HI30","entrezGeneId":"259"},{"alias":"IATIL","entrezGeneId":"259"},{"alias":"ITI","entrezGeneId":"259"},{"alias":"ITIL","entrezGeneId":"259"},{"alias":"ITILC","entrezGeneId":"259"},{"alias":"UTI","entrezGeneId":"259"},{"alias":"AMC","entrezGeneId":"261"},{"alias":"AMC1","entrezGeneId":"261"},{"alias":"AMCN1","entrezGeneId":"261"},{"alias":"ADOMETDC","entrezGeneId":"262"},{"alias":"AMD","entrezGeneId":"262"},{"alias":"SAMDC","entrezGeneId":"262"},{"alias":"AMD","entrezGeneId":"263"},{"alias":"AMD2","entrezGeneId":"263"},{"alias":"AMDP1","entrezGeneId":"263"},{"alias":"AMDPX","entrezGeneId":"263"},{"alias":"AMDPY","entrezGeneId":"263"},{"alias":"AI1E","entrezGeneId":"265"},{"alias":"AIH1","entrezGeneId":"265"},{"alias":"ALGN","entrezGeneId":"265"},{"alias":"AMG","entrezGeneId":"265"},{"alias":"AMGL","entrezGeneId":"265"},{"alias":"AMGX","entrezGeneId":"265"},{"alias":"AMGL","entrezGeneId":"266"},{"alias":"AMGY","entrezGeneId":"266"},{"alias":"GP78","entrezGeneId":"267"},{"alias":"RNF45","entrezGeneId":"267"},{"alias":"MIF","entrezGeneId":"268"},{"alias":"MIS","entrezGeneId":"268"},{"alias":"AMHR","entrezGeneId":"269"},{"alias":"MISR2","entrezGeneId":"269"},{"alias":"MISRII","entrezGeneId":"269"},{"alias":"MRII","entrezGeneId":"269"},{"alias":"MAD","entrezGeneId":"270"},{"alias":"MADA","entrezGeneId":"270"},{"alias":"MMDD","entrezGeneId":"270"},{"alias":"PCH9","entrezGeneId":"271"},{"alias":"SPG63","entrezGeneId":"271"},{"alias":"AMPH1","entrezGeneId":"273"},{"alias":"AMPH2","entrezGeneId":"274"},{"alias":"AMPHL","entrezGeneId":"274"},{"alias":"CNM2","entrezGeneId":"274"},{"alias":"SH3P9","entrezGeneId":"274"},{"alias":"GCE","entrezGeneId":"275"},{"alias":"GCST","entrezGeneId":"275"},{"alias":"GCVT","entrezGeneId":"275"},{"alias":"NKH","entrezGeneId":"275"},{"alias":"AMY1","entrezGeneId":"276"},{"alias":"AMY1","entrezGeneId":"277"},{"alias":"AMY1","entrezGeneId":"278"},{"alias":"AMY2","entrezGeneId":"279"},{"alias":"PA","entrezGeneId":"279"},{"alias":"AMY2","entrezGeneId":"280"},{"alias":"AMY3","entrezGeneId":"280"},{"alias":"HXA","entrezGeneId":"280"},{"alias":"AMY2P","entrezGeneId":"281"},{"alias":"ALS9","entrezGeneId":"283"},{"alias":"HEL168","entrezGeneId":"283"},{"alias":"RAA1","entrezGeneId":"283"},{"alias":"RNASE4","entrezGeneId":"283"},{"alias":"RNASE5","entrezGeneId":"283"},{"alias":"AGP1","entrezGeneId":"284"},{"alias":"AGPT","entrezGeneId":"284"},{"alias":"ANG1","entrezGeneId":"284"},{"alias":"AGPT2","entrezGeneId":"285"},{"alias":"ANG2","entrezGeneId":"285"},{"alias":"ANK","entrezGeneId":"286"},{"alias":"SPH1","entrezGeneId":"286"},{"alias":"SPH2","entrezGeneId":"286"},{"alias":"ANK-2","entrezGeneId":"287"},{"alias":"brank-2","entrezGeneId":"287"},{"alias":"LQT4","entrezGeneId":"287"},{"alias":"ANKYRIN-G","entrezGeneId":"288"},{"alias":"MRT37","entrezGeneId":"288"},{"alias":"MCOPS4","entrezGeneId":"289"},{"alias":"APN","entrezGeneId":"290"},{"alias":"CD13","entrezGeneId":"290"},{"alias":"GP150","entrezGeneId":"290"},{"alias":"LAP1","entrezGeneId":"290"},{"alias":"P150","entrezGeneId":"290"},{"alias":"PEPN","entrezGeneId":"290"},{"alias":"AAC1","entrezGeneId":"291"},{"alias":"ANT","entrezGeneId":"291"},{"alias":"ANT 1","entrezGeneId":"291"},{"alias":"ANT1","entrezGeneId":"291"},{"alias":"MTDPS12","entrezGeneId":"291"},{"alias":"MTDPS12A","entrezGeneId":"291"},{"alias":"PEO2","entrezGeneId":"291"},{"alias":"PEO3","entrezGeneId":"291"},{"alias":"PEOA2","entrezGeneId":"291"},{"alias":"T1","entrezGeneId":"291"},{"alias":"2F1","entrezGeneId":"292"},{"alias":"AAC2","entrezGeneId":"292"},{"alias":"ANT2","entrezGeneId":"292"},{"alias":"T2","entrezGeneId":"292"},{"alias":"T3","entrezGeneId":"292"},{"alias":"AAC3","entrezGeneId":"293"},{"alias":"ANT","entrezGeneId":"293"},{"alias":"ANT 2","entrezGeneId":"293"},{"alias":"ANT 3","entrezGeneId":"293"},{"alias":"ANT3","entrezGeneId":"293"},{"alias":"ANT3Y","entrezGeneId":"293"},{"alias":"ANX1","entrezGeneId":"301"},{"alias":"LPC1","entrezGeneId":"301"},{"alias":"ANX2","entrezGeneId":"302"},{"alias":"ANX2L4","entrezGeneId":"302"},{"alias":"CAL1H","entrezGeneId":"302"},{"alias":"HEL-S-270","entrezGeneId":"302"},{"alias":"LIP2","entrezGeneId":"302"},{"alias":"LPC2","entrezGeneId":"302"},{"alias":"LPC2D","entrezGeneId":"302"},{"alias":"P36","entrezGeneId":"302"},{"alias":"PAP-IV","entrezGeneId":"302"},{"alias":"ANX2L1","entrezGeneId":"303"},{"alias":"ANX2P1","entrezGeneId":"303"},{"alias":"LPC2A","entrezGeneId":"303"},{"alias":"ANX2L2","entrezGeneId":"304"},{"alias":"ANX2P2","entrezGeneId":"304"},{"alias":"LPC2B","entrezGeneId":"304"},{"alias":"ANX2L3","entrezGeneId":"305"},{"alias":"ANX2P3","entrezGeneId":"305"},{"alias":"LIP2","entrezGeneId":"305"},{"alias":"LPC2C","entrezGeneId":"305"},{"alias":"ANX3","entrezGeneId":"306"},{"alias":"ANX4","entrezGeneId":"307"},{"alias":"HEL-S-274","entrezGeneId":"307"},{"alias":"P32.5","entrezGeneId":"307"},{"alias":"PAP-II","entrezGeneId":"307"},{"alias":"PIG28","entrezGeneId":"307"},{"alias":"PP4-X","entrezGeneId":"307"},{"alias":"ZAP36","entrezGeneId":"307"},{"alias":"ANX5","entrezGeneId":"308"},{"alias":"ENX2","entrezGeneId":"308"},{"alias":"HEL-S-7","entrezGeneId":"308"},{"alias":"PP4","entrezGeneId":"308"},{"alias":"RPRGL3","entrezGeneId":"308"},{"alias":"ANX6","entrezGeneId":"309"},{"alias":"CBP68","entrezGeneId":"309"},{"alias":"ANX7","entrezGeneId":"310"},{"alias":"SNX","entrezGeneId":"310"},{"alias":"SYNEXIN","entrezGeneId":"310"},{"alias":"ALS23","entrezGeneId":"311"},{"alias":"ANX11","entrezGeneId":"311"},{"alias":"CAP-50","entrezGeneId":"311"},{"alias":"CAP50","entrezGeneId":"311"},{"alias":"ANX13","entrezGeneId":"312"},{"alias":"ISA","entrezGeneId":"312"},{"alias":"DAO2","entrezGeneId":"314"},{"alias":"RAO","entrezGeneId":"314"},{"alias":"SSAO","entrezGeneId":"314"},{"alias":"AO","entrezGeneId":"316"},{"alias":"AOH1","entrezGeneId":"316"},{"alias":"APAF-1","entrezGeneId":"317"},{"alias":"CED4","entrezGeneId":"317"},{"alias":"APAH1","entrezGeneId":"318"},{"alias":"Apo-F","entrezGeneId":"319"},{"alias":"LTIP","entrezGeneId":"319"},{"alias":"D9S411E","entrezGeneId":"320"},{"alias":"LIN10","entrezGeneId":"320"},{"alias":"MINT1","entrezGeneId":"320"},{"alias":"X11","entrezGeneId":"320"},{"alias":"X11A","entrezGeneId":"320"},{"alias":"X11ALPHA","entrezGeneId":"320"},{"alias":"D15S1518E","entrezGeneId":"321"},{"alias":"HsT16821","entrezGeneId":"321"},{"alias":"LIN-10","entrezGeneId":"321"},{"alias":"MGC:14091","entrezGeneId":"321"},{"alias":"MINT2","entrezGeneId":"321"},{"alias":"X11-BETA","entrezGeneId":"321"},{"alias":"X11L","entrezGeneId":"321"},{"alias":"FE65","entrezGeneId":"322"},{"alias":"MGC:9072","entrezGeneId":"322"},{"alias":"RIR","entrezGeneId":"322"},{"alias":"FE65L","entrezGeneId":"323"},{"alias":"FE65L1","entrezGeneId":"323"},{"alias":"BTPS2","entrezGeneId":"324"},{"alias":"DP2","entrezGeneId":"324"},{"alias":"DP2.5","entrezGeneId":"324"},{"alias":"DP3","entrezGeneId":"324"},{"alias":"GS","entrezGeneId":"324"},{"alias":"PPP1R46","entrezGeneId":"324"},{"alias":"HEL-S-92n","entrezGeneId":"325"},{"alias":"PTX2","entrezGeneId":"325"},{"alias":"SAP","entrezGeneId":"325"},{"alias":"AIRE1","entrezGeneId":"326"},{"alias":"APECED","entrezGeneId":"326"},{"alias":"APS1","entrezGeneId":"326"},{"alias":"APSI","entrezGeneId":"326"},{"alias":"PGA1","entrezGeneId":"326"},{"alias":"AARE","entrezGeneId":"327"},{"alias":"ACPH","entrezGeneId":"327"},{"alias":"APH","entrezGeneId":"327"},{"alias":"D3F15S2","entrezGeneId":"327"},{"alias":"D3S48E","entrezGeneId":"327"},{"alias":"DNF15S2","entrezGeneId":"327"},{"alias":"OPH","entrezGeneId":"327"},{"alias":"APE","entrezGeneId":"328"},{"alias":"APE1","entrezGeneId":"328"},{"alias":"APEN","entrezGeneId":"328"},{"alias":"APEX","entrezGeneId":"328"},{"alias":"APX","entrezGeneId":"328"},{"alias":"HAP1","entrezGeneId":"328"},{"alias":"REF1","entrezGeneId":"328"},{"alias":"API1","entrezGeneId":"329"},{"alias":"c-IAP1","entrezGeneId":"329"},{"alias":"cIAP1","entrezGeneId":"329"},{"alias":"Hiap-2","entrezGeneId":"329"},{"alias":"HIAP2","entrezGeneId":"329"},{"alias":"MIHB","entrezGeneId":"329"},{"alias":"RNF48","entrezGeneId":"329"},{"alias":"AIP1","entrezGeneId":"330"},{"alias":"API2","entrezGeneId":"330"},{"alias":"c-IAP2","entrezGeneId":"330"},{"alias":"CIAP2","entrezGeneId":"330"},{"alias":"HAIP1","entrezGeneId":"330"},{"alias":"HIAP1","entrezGeneId":"330"},{"alias":"MALT2","entrezGeneId":"330"},{"alias":"MIHC","entrezGeneId":"330"},{"alias":"RNF49","entrezGeneId":"330"},{"alias":"API3","entrezGeneId":"331"},{"alias":"BIRC4","entrezGeneId":"331"},{"alias":"hIAP-3","entrezGeneId":"331"},{"alias":"hIAP3","entrezGeneId":"331"},{"alias":"IAP-3","entrezGeneId":"331"},{"alias":"ILP1","entrezGeneId":"331"},{"alias":"MIHA","entrezGeneId":"331"},{"alias":"XLP2","entrezGeneId":"331"},{"alias":"API4","entrezGeneId":"332"},{"alias":"EPR-1","entrezGeneId":"332"},{"alias":"APLP","entrezGeneId":"333"},{"alias":"APLP-2","entrezGeneId":"334"},{"alias":"APPH","entrezGeneId":"334"},{"alias":"APPL2","entrezGeneId":"334"},{"alias":"CDEBP","entrezGeneId":"334"},{"alias":"apo(a)","entrezGeneId":"335"},{"alias":"Apo-AII","entrezGeneId":"336"},{"alias":"ApoA-II","entrezGeneId":"336"},{"alias":"apoAII","entrezGeneId":"336"},{"alias":"apoB-100","entrezGeneId":"338"},{"alias":"apoB-48","entrezGeneId":"338"},{"alias":"FLDB","entrezGeneId":"338"},{"alias":"LDLCQ4","entrezGeneId":"338"},{"alias":"APOBEC-1","entrezGeneId":"339"},{"alias":"BEDP","entrezGeneId":"339"},{"alias":"CDAR1","entrezGeneId":"339"},{"alias":"HEPR","entrezGeneId":"339"},{"alias":"Apo-CI","entrezGeneId":"341"},{"alias":"apo-CIB","entrezGeneId":"341"},{"alias":"ApoC-I","entrezGeneId":"341"},{"alias":"apoC-IB","entrezGeneId":"341"},{"alias":"AQP-8","entrezGeneId":"343"},{"alias":"APO-CII","entrezGeneId":"344"},{"alias":"APOC-II","entrezGeneId":"344"},{"alias":"APOCIII","entrezGeneId":"345"},{"alias":"APO-CIV","entrezGeneId":"346"},{"alias":"APOC-IV","entrezGeneId":"346"},{"alias":"AD2","entrezGeneId":"348"},{"alias":"APO-E","entrezGeneId":"348"},{"alias":"ApoE4","entrezGeneId":"348"},{"alias":"LDLCQ5","entrezGeneId":"348"},{"alias":"LPG","entrezGeneId":"348"},{"alias":"B2G1","entrezGeneId":"350"},{"alias":"B2GP1","entrezGeneId":"350"},{"alias":"BG","entrezGeneId":"350"},{"alias":"AAA","entrezGeneId":"351"},{"alias":"ABETA","entrezGeneId":"351"},{"alias":"ABPP","entrezGeneId":"351"},{"alias":"AD1","entrezGeneId":"351"},{"alias":"APPI","entrezGeneId":"351"},{"alias":"CTFgamma","entrezGeneId":"351"},{"alias":"CVAP","entrezGeneId":"351"},{"alias":"PN-II","entrezGeneId":"351"},{"alias":"PN2","entrezGeneId":"351"},{"alias":"preA4","entrezGeneId":"351"},{"alias":"AMP","entrezGeneId":"353"},{"alias":"APRTD","entrezGeneId":"353"},{"alias":"APS","entrezGeneId":"354"},{"alias":"hK3","entrezGeneId":"354"},{"alias":"KLK2A1","entrezGeneId":"354"},{"alias":"PSA","entrezGeneId":"354"},{"alias":"ALPS1A","entrezGeneId":"355"},{"alias":"APO-1","entrezGeneId":"355"},{"alias":"APT1","entrezGeneId":"355"},{"alias":"CD95","entrezGeneId":"355"},{"alias":"FAS1","entrezGeneId":"355"},{"alias":"FASTM","entrezGeneId":"355"},{"alias":"TNFRSF6","entrezGeneId":"355"},{"alias":"ALPS1B","entrezGeneId":"356"},{"alias":"APT1LG1","entrezGeneId":"356"},{"alias":"APTL","entrezGeneId":"356"},{"alias":"CD178","entrezGeneId":"356"},{"alias":"CD95-L","entrezGeneId":"356"},{"alias":"CD95L","entrezGeneId":"356"},{"alias":"FASL","entrezGeneId":"356"},{"alias":"TNFSF6","entrezGeneId":"356"},{"alias":"TNLG1A","entrezGeneId":"356"},{"alias":"APXL","entrezGeneId":"357"},{"alias":"HSAPXL","entrezGeneId":"357"},{"alias":"AQP-CHIP","entrezGeneId":"358"},{"alias":"CHIP28","entrezGeneId":"358"},{"alias":"CO","entrezGeneId":"358"},{"alias":"AQP-CD","entrezGeneId":"359"},{"alias":"WCH-CD","entrezGeneId":"359"},{"alias":"AQP-3","entrezGeneId":"360"},{"alias":"GIL","entrezGeneId":"360"},{"alias":"MIWC","entrezGeneId":"361"},{"alias":"WCH4","entrezGeneId":"361"},{"alias":"AQP-5","entrezGeneId":"362"},{"alias":"PPKB","entrezGeneId":"362"},{"alias":"AQP2L","entrezGeneId":"363"},{"alias":"KID","entrezGeneId":"363"},{"alias":"AQP7L","entrezGeneId":"364"},{"alias":"AQPap","entrezGeneId":"364"},{"alias":"GLYCQTL","entrezGeneId":"364"},{"alias":"AQP-9","entrezGeneId":"366"},{"alias":"HsT17287","entrezGeneId":"366"},{"alias":"SSC1","entrezGeneId":"366"},{"alias":"T17287","entrezGeneId":"366"},{"alias":"AIS","entrezGeneId":"367"},{"alias":"AR8","entrezGeneId":"367"},{"alias":"DHTR","entrezGeneId":"367"},{"alias":"HUMARA","entrezGeneId":"367"},{"alias":"HYSP1","entrezGeneId":"367"},{"alias":"KD","entrezGeneId":"367"},{"alias":"NR3C4","entrezGeneId":"367"},{"alias":"SBMA","entrezGeneId":"367"},{"alias":"SMAX1","entrezGeneId":"367"},{"alias":"TFM","entrezGeneId":"367"},{"alias":"ABC34","entrezGeneId":"368"},{"alias":"ARA","entrezGeneId":"368"},{"alias":"EST349056","entrezGeneId":"368"},{"alias":"GACI2","entrezGeneId":"368"},{"alias":"MLP1","entrezGeneId":"368"},{"alias":"MOAT-E","entrezGeneId":"368"},{"alias":"MOATE","entrezGeneId":"368"},{"alias":"MRP6","entrezGeneId":"368"},{"alias":"PXE","entrezGeneId":"368"},{"alias":"PXE1","entrezGeneId":"368"},{"alias":"URG7","entrezGeneId":"368"},{"alias":"A-RAF","entrezGeneId":"369"},{"alias":"ARAF1","entrezGeneId":"369"},{"alias":"PKS2","entrezGeneId":"369"},{"alias":"RAFA1","entrezGeneId":"369"},{"alias":"COPD","entrezGeneId":"372"},{"alias":"SRMMD","entrezGeneId":"372"},{"alias":"ARD1","entrezGeneId":"373"},{"alias":"ARFD1","entrezGeneId":"373"},{"alias":"RNF46","entrezGeneId":"373"},{"alias":"AR","entrezGeneId":"374"},{"alias":"AREGB","entrezGeneId":"374"},{"alias":"CRDGF","entrezGeneId":"374"},{"alias":"SDGF","entrezGeneId":"374"},{"alias":"ARF2","entrezGeneId":"378"},{"alias":"ARF4L","entrezGeneId":"379"},{"alias":"ARL6","entrezGeneId":"379"},{"alias":"ARF4P","entrezGeneId":"380"},{"alias":"ARH12","entrezGeneId":"387"},{"alias":"ARHA","entrezGeneId":"387"},{"alias":"RHO12","entrezGeneId":"387"},{"alias":"RHOH12","entrezGeneId":"387"},{"alias":"ARH6","entrezGeneId":"388"},{"alias":"ARHB","entrezGeneId":"388"},{"alias":"MST081","entrezGeneId":"388"},{"alias":"MSTP081","entrezGeneId":"388"},{"alias":"RHOH6","entrezGeneId":"388"},{"alias":"ARH9","entrezGeneId":"389"},{"alias":"ARHC","entrezGeneId":"389"},{"alias":"H9","entrezGeneId":"389"},{"alias":"RHOH9","entrezGeneId":"389"},{"alias":"ARHE","entrezGeneId":"390"},{"alias":"memB","entrezGeneId":"390"},{"alias":"Rho8","entrezGeneId":"390"},{"alias":"RhoE","entrezGeneId":"390"},{"alias":"ARHG","entrezGeneId":"391"},{"alias":"CDC42GAP","entrezGeneId":"392"},{"alias":"p50rhoGAP","entrezGeneId":"392"},{"alias":"RHOGAP","entrezGeneId":"392"},{"alias":"RHOGAP1","entrezGeneId":"392"},{"alias":"C1","entrezGeneId":"393"},{"alias":"p115","entrezGeneId":"393"},{"alias":"RGC1","entrezGeneId":"393"},{"alias":"RhoGAP4","entrezGeneId":"393"},{"alias":"SrGAP4","entrezGeneId":"393"},{"alias":"GFI2","entrezGeneId":"394"},{"alias":"p190-B","entrezGeneId":"394"},{"alias":"p190BRhoGAP","entrezGeneId":"394"},{"alias":"RhoGAP5","entrezGeneId":"394"},{"alias":"RHOGAP6","entrezGeneId":"395"},{"alias":"RHOGAPX-1","entrezGeneId":"395"},{"alias":"GDIA1","entrezGeneId":"396"},{"alias":"HEL-S-47e","entrezGeneId":"396"},{"alias":"NPHS8","entrezGeneId":"396"},{"alias":"RHOGDI","entrezGeneId":"396"},{"alias":"RHOGDI-1","entrezGeneId":"396"},{"alias":"D4","entrezGeneId":"397"},{"alias":"GDIA2","entrezGeneId":"397"},{"alias":"GDID4","entrezGeneId":"397"},{"alias":"Ly-GDI","entrezGeneId":"397"},{"alias":"LYGDI","entrezGeneId":"397"},{"alias":"RAP1GN1","entrezGeneId":"397"},{"alias":"RhoGDI2","entrezGeneId":"397"},{"alias":"RHOGDI-3","entrezGeneId":"398"},{"alias":"ARHH","entrezGeneId":"399"},{"alias":"TTF","entrezGeneId":"399"},{"alias":"ARFL1","entrezGeneId":"400"},{"alias":"ARIX","entrezGeneId":"401"},{"alias":"CFEOM2","entrezGeneId":"401"},{"alias":"FEOM2","entrezGeneId":"401"},{"alias":"NCAM2","entrezGeneId":"401"},{"alias":"PMX2A","entrezGeneId":"401"},{"alias":"ARFL2","entrezGeneId":"402"},{"alias":"ARFL3","entrezGeneId":"403"},{"alias":"bHLHe2","entrezGeneId":"405"},{"alias":"HIF-1-beta","entrezGeneId":"405"},{"alias":"HIF-1beta","entrezGeneId":"405"},{"alias":"HIF1-beta","entrezGeneId":"405"},{"alias":"HIF1B","entrezGeneId":"405"},{"alias":"HIF1BETA","entrezGeneId":"405"},{"alias":"TANGO","entrezGeneId":"405"},{"alias":"bHLHe5","entrezGeneId":"406"},{"alias":"BMAL1","entrezGeneId":"406"},{"alias":"BMAL1c","entrezGeneId":"406"},{"alias":"JAP3","entrezGeneId":"406"},{"alias":"MOP3","entrezGeneId":"406"},{"alias":"PASD3","entrezGeneId":"406"},{"alias":"TIC","entrezGeneId":"406"},{"alias":"ARRX","entrezGeneId":"407"},{"alias":"cArr","entrezGeneId":"407"},{"alias":"MYP26","entrezGeneId":"407"},{"alias":"ARB1","entrezGeneId":"408"},{"alias":"ARR1","entrezGeneId":"408"},{"alias":"ARB2","entrezGeneId":"409"},{"alias":"ARR2","entrezGeneId":"409"},{"alias":"BARR2","entrezGeneId":"409"},{"alias":"MLD","entrezGeneId":"410"},{"alias":"ASB","entrezGeneId":"411"},{"alias":"G4S","entrezGeneId":"411"},{"alias":"MPS6","entrezGeneId":"411"},{"alias":"ARSC","entrezGeneId":"412"},{"alias":"ARSC1","entrezGeneId":"412"},{"alias":"ASC","entrezGeneId":"412"},{"alias":"ES","entrezGeneId":"412"},{"alias":"SSDD","entrezGeneId":"412"},{"alias":"XLI","entrezGeneId":"412"},{"alias":"ARSC","entrezGeneId":"413"},{"alias":"ASD","entrezGeneId":"414"},{"alias":"ASE","entrezGeneId":"415"},{"alias":"CDPX","entrezGeneId":"415"},{"alias":"CDPX1","entrezGeneId":"415"},{"alias":"CDPXR","entrezGeneId":"415"},{"alias":"ASF","entrezGeneId":"416"},{"alias":"ART2","entrezGeneId":"417"},{"alias":"ARTC1","entrezGeneId":"417"},{"alias":"CD296","entrezGeneId":"417"},{"alias":"RT6","entrezGeneId":"417"},{"alias":"ART1P","entrezGeneId":"418"},{"alias":"RT6","entrezGeneId":"418"},{"alias":"ARTC3","entrezGeneId":"419"},{"alias":"ARTC4","entrezGeneId":"420"},{"alias":"CD297","entrezGeneId":"420"},{"alias":"DO","entrezGeneId":"420"},{"alias":"DOK1","entrezGeneId":"420"},{"alias":"ARVD2","entrezGeneId":"424"},{"alias":"AC","entrezGeneId":"427"},{"alias":"ACDase","entrezGeneId":"427"},{"alias":"ASAH","entrezGeneId":"427"},{"alias":"PHP","entrezGeneId":"427"},{"alias":"PHP32","entrezGeneId":"427"},{"alias":"SMAPME","entrezGeneId":"427"},{"alias":"ASH1","entrezGeneId":"429"},{"alias":"bHLHa46","entrezGeneId":"429"},{"alias":"HASH1","entrezGeneId":"429"},{"alias":"MASH1","entrezGeneId":"429"},{"alias":"ASH2","entrezGeneId":"430"},{"alias":"bHLHa45","entrezGeneId":"430"},{"alias":"HASH2","entrezGeneId":"430"},{"alias":"MASH2","entrezGeneId":"430"},{"alias":"ASGPR","entrezGeneId":"432"},{"alias":"ASGPR1","entrezGeneId":"432"},{"alias":"CLEC4H1","entrezGeneId":"432"},{"alias":"HL-1","entrezGeneId":"432"},{"alias":"ASGP-R2","entrezGeneId":"433"},{"alias":"ASGPR2","entrezGeneId":"433"},{"alias":"CLEC4H2","entrezGeneId":"433"},{"alias":"HBXBP","entrezGeneId":"433"},{"alias":"HL-2","entrezGeneId":"433"},{"alias":"AGSW","entrezGeneId":"434"},{"alias":"AGTI","entrezGeneId":"434"},{"alias":"AGTIL","entrezGeneId":"434"},{"alias":"ASP","entrezGeneId":"434"},{"alias":"SHEP9","entrezGeneId":"434"},{"alias":"ASAL","entrezGeneId":"435"},{"alias":"ASLL","entrezGeneId":"436"},{"alias":"ASMTY","entrezGeneId":"438"},{"alias":"HIOMT","entrezGeneId":"438"},{"alias":"HIOMTY","entrezGeneId":"438"},{"alias":"ARSA-I","entrezGeneId":"439"},{"alias":"ARSA1","entrezGeneId":"439"},{"alias":"ASNA-I","entrezGeneId":"439"},{"alias":"GET3","entrezGeneId":"439"},{"alias":"TRC40","entrezGeneId":"439"},{"alias":"ASNSD","entrezGeneId":"440"},{"alias":"TS11","entrezGeneId":"440"},{"alias":"ASNSL2","entrezGeneId":"442"},{"alias":"ACY2","entrezGeneId":"443"},{"alias":"ASP","entrezGeneId":"443"},{"alias":"AAH","entrezGeneId":"444"},{"alias":"BAH","entrezGeneId":"444"},{"alias":"CASQ2BP1","entrezGeneId":"444"},{"alias":"FDLAB","entrezGeneId":"444"},{"alias":"HAAH","entrezGeneId":"444"},{"alias":"JCTN","entrezGeneId":"444"},{"alias":"junctin","entrezGeneId":"444"},{"alias":"ASS","entrezGeneId":"445"},{"alias":"CTLN1","entrezGeneId":"445"},{"alias":"ASSP2","entrezGeneId":"447"},{"alias":"ASSP4","entrezGeneId":"449"},{"alias":"ASSP5","entrezGeneId":"450"},{"alias":"ASSP6","entrezGeneId":"451"},{"alias":"ASSP8","entrezGeneId":"453"},{"alias":"ASSP9","entrezGeneId":"454"},{"alias":"ASSP10","entrezGeneId":"455"},{"alias":"ASSP14","entrezGeneId":"459"},{"alias":"ASTN","entrezGeneId":"460"},{"alias":"AT3","entrezGeneId":"462"},{"alias":"AT3D","entrezGeneId":"462"},{"alias":"ATIII","entrezGeneId":"462"},{"alias":"THPH7","entrezGeneId":"462"},{"alias":"ATBF1","entrezGeneId":"463"},{"alias":"ATBT","entrezGeneId":"463"},{"alias":"ZNF927","entrezGeneId":"463"},{"alias":"ATD1","entrezGeneId":"465"},{"alias":"EWS-ATF1","entrezGeneId":"466"},{"alias":"FUS/ATF-1","entrezGeneId":"466"},{"alias":"TREB36","entrezGeneId":"466"},{"alias":"CREB-2","entrezGeneId":"468"},{"alias":"CREB2","entrezGeneId":"468"},{"alias":"TAXREB67","entrezGeneId":"468"},{"alias":"TXREB","entrezGeneId":"468"},{"alias":"ATF4P","entrezGeneId":"469"},{"alias":"TAXREB67P","entrezGeneId":"469"},{"alias":"TXREBP","entrezGeneId":"469"},{"alias":"ALP","entrezGeneId":"470"},{"alias":"AICAR","entrezGeneId":"471"},{"alias":"AICARFT","entrezGeneId":"471"},{"alias":"HEL-S-70p","entrezGeneId":"471"},{"alias":"IMPCHASE","entrezGeneId":"471"},{"alias":"PURH","entrezGeneId":"471"},{"alias":"AT1","entrezGeneId":"472"},{"alias":"ATA","entrezGeneId":"472"},{"alias":"ATC","entrezGeneId":"472"},{"alias":"ATD","entrezGeneId":"472"},{"alias":"ATDC","entrezGeneId":"472"},{"alias":"ATE","entrezGeneId":"472"},{"alias":"TEL1","entrezGeneId":"472"},{"alias":"TELO1","entrezGeneId":"472"},{"alias":"ARG","entrezGeneId":"473"},{"alias":"ARP","entrezGeneId":"473"},{"alias":"ATN1L","entrezGeneId":"473"},{"alias":"DNB1","entrezGeneId":"473"},{"alias":"NEDBEH","entrezGeneId":"473"},{"alias":"ATH1","entrezGeneId":"474"},{"alias":"bHLHa14","entrezGeneId":"474"},{"alias":"HATH1","entrezGeneId":"474"},{"alias":"MATH-1","entrezGeneId":"474"},{"alias":"ATX1","entrezGeneId":"475"},{"alias":"HAH1","entrezGeneId":"475"},{"alias":"FHM2","entrezGeneId":"477"},{"alias":"MHP2","entrezGeneId":"477"},{"alias":"AHC2","entrezGeneId":"478"},{"alias":"ATP1A1","entrezGeneId":"478"},{"alias":"CAPOS","entrezGeneId":"478"},{"alias":"DYT12","entrezGeneId":"478"},{"alias":"RDP","entrezGeneId":"478"},{"alias":"ATP1AL1","entrezGeneId":"479"},{"alias":"HK","entrezGeneId":"479"},{"alias":"ATP1A1","entrezGeneId":"480"},{"alias":"ATP1AL2","entrezGeneId":"480"},{"alias":"ATP1B","entrezGeneId":"481"},{"alias":"AMOG","entrezGeneId":"482"},{"alias":"ATPB-3","entrezGeneId":"483"},{"alias":"CD298","entrezGeneId":"483"},{"alias":"ATP1BL1","entrezGeneId":"485"},{"alias":"ATP1G1","entrezGeneId":"486"},{"alias":"HOMG2","entrezGeneId":"486"},{"alias":"ATP2A","entrezGeneId":"487"},{"alias":"SERCA1","entrezGeneId":"487"},{"alias":"ATP2B","entrezGeneId":"488"},{"alias":"DAR","entrezGeneId":"488"},{"alias":"DD","entrezGeneId":"488"},{"alias":"SERCA2","entrezGeneId":"488"},{"alias":"SERCA3","entrezGeneId":"489"},{"alias":"PMCA1","entrezGeneId":"490"},{"alias":"PMCA1kb","entrezGeneId":"490"},{"alias":"PMCA2","entrezGeneId":"491"},{"alias":"PMCA2a","entrezGeneId":"491"},{"alias":"PMCA2i","entrezGeneId":"491"},{"alias":"CFAP39","entrezGeneId":"492"},{"alias":"CLA2","entrezGeneId":"492"},{"alias":"OPCA","entrezGeneId":"492"},{"alias":"PMCA3","entrezGeneId":"492"},{"alias":"PMCA3a","entrezGeneId":"492"},{"alias":"SCAX1","entrezGeneId":"492"},{"alias":"ATP2B2","entrezGeneId":"493"},{"alias":"MXRA1","entrezGeneId":"493"},{"alias":"PMCA4","entrezGeneId":"493"},{"alias":"PMCA4b","entrezGeneId":"493"},{"alias":"PMCA4x","entrezGeneId":"493"},{"alias":"ATP6A","entrezGeneId":"495"},{"alias":"ATP6B","entrezGeneId":"496"},{"alias":"ATP5A","entrezGeneId":"498"},{"alias":"ATP5A1","entrezGeneId":"498"},{"alias":"ATP5AL2","entrezGeneId":"498"},{"alias":"ATPM","entrezGeneId":"498"},{"alias":"COXPD22","entrezGeneId":"498"},{"alias":"hATP1","entrezGeneId":"498"},{"alias":"HEL-S-123m","entrezGeneId":"498"},{"alias":"MC5DN4","entrezGeneId":"498"},{"alias":"MOM2","entrezGeneId":"498"},{"alias":"OMR","entrezGeneId":"498"},{"alias":"ORM","entrezGeneId":"498"},{"alias":"ATQ1","entrezGeneId":"501"},{"alias":"EPD","entrezGeneId":"501"},{"alias":"PDE","entrezGeneId":"501"},{"alias":"ATP5A1P2","entrezGeneId":"504"},{"alias":"ATP5AP2","entrezGeneId":"504"},{"alias":"ATP5B","entrezGeneId":"506"},{"alias":"ATPMB","entrezGeneId":"506"},{"alias":"ATPSB","entrezGeneId":"506"},{"alias":"HEL-S-271","entrezGeneId":"506"},{"alias":"ATP5BL1","entrezGeneId":"507"},{"alias":"ATP5BP1","entrezGeneId":"507"},{"alias":"ATPMBL1","entrezGeneId":"507"},{"alias":"ATPSBL1","entrezGeneId":"507"},{"alias":"ATP5C","entrezGeneId":"509"},{"alias":"ATP5C1","entrezGeneId":"509"},{"alias":"ATP5CL1","entrezGeneId":"509"},{"alias":"ATP5D","entrezGeneId":"513"},{"alias":"ATP5E","entrezGeneId":"514"},{"alias":"ATPE","entrezGeneId":"514"},{"alias":"MC5DN3","entrezGeneId":"514"},{"alias":"ATP5F1","entrezGeneId":"515"},{"alias":"PIG47","entrezGeneId":"515"},{"alias":"ATP5A","entrezGeneId":"516"},{"alias":"ATP5G","entrezGeneId":"516"},{"alias":"ATP5G1","entrezGeneId":"516"},{"alias":"ATP5A","entrezGeneId":"517"},{"alias":"ATP5G2","entrezGeneId":"517"},{"alias":"ATP5G3","entrezGeneId":"518"},{"alias":"P3","entrezGeneId":"518"},{"alias":"ATP5G2P1","entrezGeneId":"520"},{"alias":"ATP5GP1","entrezGeneId":"520"},{"alias":"ATP5I","entrezGeneId":"521"},{"alias":"ATP5K","entrezGeneId":"521"},{"alias":"ATP5","entrezGeneId":"522"},{"alias":"ATP5A","entrezGeneId":"522"},{"alias":"ATP5J","entrezGeneId":"522"},{"alias":"ATPM","entrezGeneId":"522"},{"alias":"CF6","entrezGeneId":"522"},{"alias":"F6","entrezGeneId":"522"},{"alias":"ARCL2D","entrezGeneId":"523"},{"alias":"ATP6A1","entrezGeneId":"523"},{"alias":"ATP6V1A1","entrezGeneId":"523"},{"alias":"HO68","entrezGeneId":"523"},{"alias":"VA68","entrezGeneId":"523"},{"alias":"Vma1","entrezGeneId":"523"},{"alias":"VPP2","entrezGeneId":"523"},{"alias":"ATP6B1","entrezGeneId":"525"},{"alias":"RTA1B","entrezGeneId":"525"},{"alias":"VATB","entrezGeneId":"525"},{"alias":"VMA2","entrezGeneId":"525"},{"alias":"VPP3","entrezGeneId":"525"},{"alias":"ATP6B1B2","entrezGeneId":"526"},{"alias":"ATP6B2","entrezGeneId":"526"},{"alias":"DOOD","entrezGeneId":"526"},{"alias":"HO57","entrezGeneId":"526"},{"alias":"VATB","entrezGeneId":"526"},{"alias":"Vma2","entrezGeneId":"526"},{"alias":"VPP3","entrezGeneId":"526"},{"alias":"ZLS2","entrezGeneId":"526"},{"alias":"ATP6C","entrezGeneId":"527"},{"alias":"ATP6L","entrezGeneId":"527"},{"alias":"ATPL","entrezGeneId":"527"},{"alias":"VATL","entrezGeneId":"527"},{"alias":"Vma3","entrezGeneId":"527"},{"alias":"VPPC","entrezGeneId":"527"},{"alias":"ATP6C","entrezGeneId":"528"},{"alias":"ATP6D","entrezGeneId":"528"},{"alias":"VATC","entrezGeneId":"528"},{"alias":"Vma5","entrezGeneId":"528"},{"alias":"ARCL2C","entrezGeneId":"529"},{"alias":"ATP6E","entrezGeneId":"529"},{"alias":"ATP6E2","entrezGeneId":"529"},{"alias":"ATP6V1E","entrezGeneId":"529"},{"alias":"P31","entrezGeneId":"529"},{"alias":"Vma4","entrezGeneId":"529"},{"alias":"ATP6F","entrezGeneId":"533"},{"alias":"HATPL","entrezGeneId":"533"},{"alias":"VMA16","entrezGeneId":"533"},{"alias":"ATP6G","entrezGeneId":"534"},{"alias":"ATP6G2","entrezGeneId":"534"},{"alias":"NG38","entrezGeneId":"534"},{"alias":"VMA10","entrezGeneId":"534"},{"alias":"a1","entrezGeneId":"535"},{"alias":"ATP6N1","entrezGeneId":"535"},{"alias":"ATP6N1A","entrezGeneId":"535"},{"alias":"Stv1","entrezGeneId":"535"},{"alias":"Vph1","entrezGeneId":"535"},{"alias":"VPP1","entrezGeneId":"535"},{"alias":"16A","entrezGeneId":"537"},{"alias":"Ac45","entrezGeneId":"537"},{"alias":"ATP6IP1","entrezGeneId":"537"},{"alias":"ATP6S1","entrezGeneId":"537"},{"alias":"CF2","entrezGeneId":"537"},{"alias":"VATPS1","entrezGeneId":"537"},{"alias":"XAP-3","entrezGeneId":"537"},{"alias":"XAP3","entrezGeneId":"537"},{"alias":"DSMAX","entrezGeneId":"538"},{"alias":"MK","entrezGeneId":"538"},{"alias":"MNK","entrezGeneId":"538"},{"alias":"SMAX3","entrezGeneId":"538"},{"alias":"ATP5O","entrezGeneId":"539"},{"alias":"ATPO","entrezGeneId":"539"},{"alias":"HMC08D05","entrezGeneId":"539"},{"alias":"OSCP","entrezGeneId":"539"},{"alias":"PWD","entrezGeneId":"540"},{"alias":"WC1","entrezGeneId":"540"},{"alias":"WD","entrezGeneId":"540"},{"alias":"WND","entrezGeneId":"540"},{"alias":"ATQL1","entrezGeneId":"541"},{"alias":"ATQL2","entrezGeneId":"542"},{"alias":"ATQL3","entrezGeneId":"543"},{"alias":"ATQL4","entrezGeneId":"544"},{"alias":"FCTCS","entrezGeneId":"545"},{"alias":"FRP1","entrezGeneId":"545"},{"alias":"MEC1","entrezGeneId":"545"},{"alias":"SCKL","entrezGeneId":"545"},{"alias":"SCKL1","entrezGeneId":"545"},{"alias":"JMS","entrezGeneId":"546"},{"alias":"MRX52","entrezGeneId":"546"},{"alias":"RAD54","entrezGeneId":"546"},{"alias":"RAD54L","entrezGeneId":"546"},{"alias":"XH2","entrezGeneId":"546"},{"alias":"XNP","entrezGeneId":"546"},{"alias":"ZNF-HX","entrezGeneId":"546"},{"alias":"ATSV","entrezGeneId":"547"},{"alias":"C2orf20","entrezGeneId":"547"},{"alias":"HSN2C","entrezGeneId":"547"},{"alias":"MRD9","entrezGeneId":"547"},{"alias":"SPG30","entrezGeneId":"547"},{"alias":"UNC104","entrezGeneId":"547"},{"alias":"ADH","entrezGeneId":"551"},{"alias":"ARVP","entrezGeneId":"551"},{"alias":"AVP-NPII","entrezGeneId":"551"},{"alias":"AVRP","entrezGeneId":"551"},{"alias":"VP","entrezGeneId":"551"},{"alias":"AVPR V1a","entrezGeneId":"552"},{"alias":"AVPR1","entrezGeneId":"552"},{"alias":"V1aR","entrezGeneId":"552"},{"alias":"AVPR3","entrezGeneId":"553"},{"alias":"V1bR","entrezGeneId":"553"},{"alias":"ADHR","entrezGeneId":"554"},{"alias":"DI1","entrezGeneId":"554"},{"alias":"DIR","entrezGeneId":"554"},{"alias":"DIR3","entrezGeneId":"554"},{"alias":"NDI","entrezGeneId":"554"},{"alias":"V2R","entrezGeneId":"554"},{"alias":"ARK","entrezGeneId":"558"},{"alias":"JTK11","entrezGeneId":"558"},{"alias":"Tyro7","entrezGeneId":"558"},{"alias":"UFO","entrezGeneId":"558"},{"alias":"AZF","entrezGeneId":"560"},{"alias":"AZFA","entrezGeneId":"560"},{"alias":"SP3","entrezGeneId":"560"},{"alias":"ZA2G","entrezGeneId":"563"},{"alias":"ZAG","entrezGeneId":"563"},{"alias":"AZAMP","entrezGeneId":"566"},{"alias":"AZU","entrezGeneId":"566"},{"alias":"CAP37","entrezGeneId":"566"},{"alias":"HBP","entrezGeneId":"566"},{"alias":"hHBP","entrezGeneId":"566"},{"alias":"HUMAZUR","entrezGeneId":"566"},{"alias":"NAZC","entrezGeneId":"566"},{"alias":"IMD43","entrezGeneId":"567"},{"alias":"BACAT","entrezGeneId":"570"},{"alias":"BAT","entrezGeneId":"570"},{"alias":"BACH-1","entrezGeneId":"571"},{"alias":"BTBD24","entrezGeneId":"571"},{"alias":"BBC2","entrezGeneId":"572"},{"alias":"BCL2L8","entrezGeneId":"572"},{"alias":"BAG-1","entrezGeneId":"573"},{"alias":"HAP","entrezGeneId":"573"},{"alias":"RAP46","entrezGeneId":"573"},{"alias":"BAGE1","entrezGeneId":"574"},{"alias":"CT2.1","entrezGeneId":"574"},{"alias":"BAI1","entrezGeneId":"575"},{"alias":"GDAIF","entrezGeneId":"575"},{"alias":"BAI2","entrezGeneId":"576"},{"alias":"BAI3","entrezGeneId":"577"},{"alias":"BAK","entrezGeneId":"578"},{"alias":"BAK-LIKE","entrezGeneId":"578"},{"alias":"BCL2L7","entrezGeneId":"578"},{"alias":"CDN1","entrezGeneId":"578"},{"alias":"BAPX1","entrezGeneId":"579"},{"alias":"NKX3.2","entrezGeneId":"579"},{"alias":"NKX3B","entrezGeneId":"579"},{"alias":"SMMD","entrezGeneId":"579"},{"alias":"BCL2L4","entrezGeneId":"581"},{"alias":"BBS2L2","entrezGeneId":"582"},{"alias":"BBS","entrezGeneId":"583"},{"alias":"RP74","entrezGeneId":"583"},{"alias":"BCATC","entrezGeneId":"586"},{"alias":"BCT1","entrezGeneId":"586"},{"alias":"ECA39","entrezGeneId":"586"},{"alias":"MECA39","entrezGeneId":"586"},{"alias":"PNAS121","entrezGeneId":"586"},{"alias":"PP18","entrezGeneId":"586"},{"alias":"BCAM","entrezGeneId":"587"},{"alias":"BCATM","entrezGeneId":"587"},{"alias":"BCT2","entrezGeneId":"587"},{"alias":"PP18","entrezGeneId":"587"},{"alias":"CHE1","entrezGeneId":"590"},{"alias":"CHE2","entrezGeneId":"590"},{"alias":"E1","entrezGeneId":"590"},{"alias":"BCKDE1A","entrezGeneId":"593"},{"alias":"MSU","entrezGeneId":"593"},{"alias":"MSUD1","entrezGeneId":"593"},{"alias":"OVD1A","entrezGeneId":"593"},{"alias":"BCKDE1B","entrezGeneId":"594"},{"alias":"BCKDH E1-beta","entrezGeneId":"594"},{"alias":"E1B","entrezGeneId":"594"},{"alias":"BCL1","entrezGeneId":"595"},{"alias":"D11S287E","entrezGeneId":"595"},{"alias":"PRAD1","entrezGeneId":"595"},{"alias":"U21B31","entrezGeneId":"595"},{"alias":"Bcl-2","entrezGeneId":"596"},{"alias":"PPP1R50","entrezGeneId":"596"},{"alias":"ACC-1","entrezGeneId":"597"},{"alias":"ACC-2","entrezGeneId":"597"},{"alias":"ACC1","entrezGeneId":"597"},{"alias":"ACC2","entrezGeneId":"597"},{"alias":"BCL2L5","entrezGeneId":"597"},{"alias":"BFL1","entrezGeneId":"597"},{"alias":"GRS","entrezGeneId":"597"},{"alias":"HBPA1","entrezGeneId":"597"},{"alias":"Bcl-X","entrezGeneId":"598"},{"alias":"BCL-XL/S","entrezGeneId":"598"},{"alias":"BCL2L","entrezGeneId":"598"},{"alias":"BCLX","entrezGeneId":"598"},{"alias":"PPP1R52","entrezGeneId":"598"},{"alias":"BCL-W","entrezGeneId":"599"},{"alias":"BCL2-L-2","entrezGeneId":"599"},{"alias":"BCLW","entrezGeneId":"599"},{"alias":"PPP1R51","entrezGeneId":"599"},{"alias":"Bak-2","entrezGeneId":"600"},{"alias":"BAK2","entrezGeneId":"600"},{"alias":"BCL2L7P1","entrezGeneId":"600"},{"alias":"BAK3","entrezGeneId":"601"},{"alias":"BAK3P","entrezGeneId":"601"},{"alias":"BCL2L7P2","entrezGeneId":"601"},{"alias":"BCL4","entrezGeneId":"602"},{"alias":"D19S37","entrezGeneId":"602"},{"alias":"BCL5","entrezGeneId":"604"},{"alias":"BCL6A","entrezGeneId":"604"},{"alias":"LAZ3","entrezGeneId":"604"},{"alias":"ZBTB27","entrezGeneId":"604"},{"alias":"ZNF51","entrezGeneId":"604"},{"alias":"BCL7","entrezGeneId":"605"},{"alias":"BCL8","entrezGeneId":"606"},{"alias":"BCL8A","entrezGeneId":"606"},{"alias":"LGS","entrezGeneId":"607"},{"alias":"BCM","entrezGeneId":"608"},{"alias":"BCMA","entrezGeneId":"608"},{"alias":"CD269","entrezGeneId":"608"},{"alias":"TNFRSF13A","entrezGeneId":"608"},{"alias":"BCNG-2","entrezGeneId":"610"},{"alias":"BCNG2","entrezGeneId":"610"},{"alias":"HAC-1","entrezGeneId":"610"},{"alias":"BCP","entrezGeneId":"611"},{"alias":"BOP","entrezGeneId":"611"},{"alias":"CBT","entrezGeneId":"611"},{"alias":"ALL","entrezGeneId":"613"},{"alias":"BCR1","entrezGeneId":"613"},{"alias":"CML","entrezGeneId":"613"},{"alias":"D22S11","entrezGeneId":"613"},{"alias":"D22S662","entrezGeneId":"613"},{"alias":"PHL","entrezGeneId":"613"},{"alias":"BCR-4","entrezGeneId":"616"},{"alias":"BCR4","entrezGeneId":"616"},{"alias":"BCRL4","entrezGeneId":"616"},{"alias":"BCS","entrezGeneId":"617"},{"alias":"BCS1","entrezGeneId":"617"},{"alias":"BJS","entrezGeneId":"617"},{"alias":"FLNMS","entrezGeneId":"617"},{"alias":"GRACILE","entrezGeneId":"617"},{"alias":"h-BCS","entrezGeneId":"617"},{"alias":"h-BCS1","entrezGeneId":"617"},{"alias":"Hs.6719","entrezGeneId":"617"},{"alias":"MC3DN1","entrezGeneId":"617"},{"alias":"PTD","entrezGeneId":"617"},{"alias":"BC200","entrezGeneId":"618"},{"alias":"BC200a","entrezGeneId":"618"},{"alias":"LINC00004","entrezGeneId":"618"},{"alias":"NCRNA00004","entrezGeneId":"618"},{"alias":"BC200b","entrezGeneId":"619"},{"alias":"BC200g","entrezGeneId":"620"},{"alias":"BDH","entrezGeneId":"622"},{"alias":"SDR9C1","entrezGeneId":"622"},{"alias":"B1BKR","entrezGeneId":"623"},{"alias":"B1R","entrezGeneId":"623"},{"alias":"BDKRB2","entrezGeneId":"623"},{"alias":"BKB1R","entrezGeneId":"623"},{"alias":"BKR1","entrezGeneId":"623"},{"alias":"BRADYB1","entrezGeneId":"623"},{"alias":"B2R","entrezGeneId":"624"},{"alias":"BK-2","entrezGeneId":"624"},{"alias":"BK2","entrezGeneId":"624"},{"alias":"BKR2","entrezGeneId":"624"},{"alias":"BRB2","entrezGeneId":"624"},{"alias":"ANON2","entrezGeneId":"627"},{"alias":"BULN2","entrezGeneId":"627"},{"alias":"AHUS4","entrezGeneId":"629"},{"alias":"ARMD14","entrezGeneId":"629"},{"alias":"BF","entrezGeneId":"629"},{"alias":"BFD","entrezGeneId":"629"},{"alias":"CFAB","entrezGeneId":"629"},{"alias":"CFBD","entrezGeneId":"629"},{"alias":"FB","entrezGeneId":"629"},{"alias":"FBI12","entrezGeneId":"629"},{"alias":"GBG","entrezGeneId":"629"},{"alias":"H2-Bf","entrezGeneId":"629"},{"alias":"PBF2","entrezGeneId":"629"},{"alias":"CP115","entrezGeneId":"631"},{"alias":"CP94","entrezGeneId":"631"},{"alias":"CTRCT33","entrezGeneId":"631"},{"alias":"LIFL-H","entrezGeneId":"631"},{"alias":"BGP","entrezGeneId":"632"},{"alias":"OC","entrezGeneId":"632"},{"alias":"OCN","entrezGeneId":"632"},{"alias":"DSPG1","entrezGeneId":"633"},{"alias":"MRLS","entrezGeneId":"633"},{"alias":"PG-S1","entrezGeneId":"633"},{"alias":"PGI","entrezGeneId":"633"},{"alias":"SEMDX","entrezGeneId":"633"},{"alias":"SLRR1A","entrezGeneId":"633"},{"alias":"BGP","entrezGeneId":"634"},{"alias":"BGP1","entrezGeneId":"634"},{"alias":"BGPI","entrezGeneId":"634"},{"alias":"BHMT1","entrezGeneId":"635"},{"alias":"HEL-S-61p","entrezGeneId":"635"},{"alias":"BICD","entrezGeneId":"636"},{"alias":"FP497","entrezGeneId":"637"},{"alias":"BIP1","entrezGeneId":"638"},{"alias":"BP4","entrezGeneId":"638"},{"alias":"NBK","entrezGeneId":"638"},{"alias":"BLIMP1","entrezGeneId":"639"},{"alias":"PRDI-BF1","entrezGeneId":"639"},{"alias":"MODY11","entrezGeneId":"640"},{"alias":"BS","entrezGeneId":"641"},{"alias":"RECQ2","entrezGeneId":"641"},{"alias":"RECQL2","entrezGeneId":"641"},{"alias":"RECQL3","entrezGeneId":"641"},{"alias":"BH","entrezGeneId":"642"},{"alias":"BMH","entrezGeneId":"642"},{"alias":"BLR1","entrezGeneId":"643"},{"alias":"CD185","entrezGeneId":"643"},{"alias":"MDR15","entrezGeneId":"643"},{"alias":"BLVR","entrezGeneId":"644"},{"alias":"BVR","entrezGeneId":"644"},{"alias":"BVRA","entrezGeneId":"644"},{"alias":"BVRB","entrezGeneId":"645"},{"alias":"FLR","entrezGeneId":"645"},{"alias":"HEL-S-10","entrezGeneId":"645"},{"alias":"SDR43U1","entrezGeneId":"645"},{"alias":"BNC","entrezGeneId":"646"},{"alias":"BSN1","entrezGeneId":"646"},{"alias":"HsT19447","entrezGeneId":"646"},{"alias":"flvi-2/bmi-1","entrezGeneId":"648"},{"alias":"FLVI2/BMI1","entrezGeneId":"648"},{"alias":"PCGF4","entrezGeneId":"648"},{"alias":"RNF51","entrezGeneId":"648"},{"alias":"OI13","entrezGeneId":"649"},{"alias":"PCOLC","entrezGeneId":"649"},{"alias":"PCP","entrezGeneId":"649"},{"alias":"PCP2","entrezGeneId":"649"},{"alias":"TLD","entrezGeneId":"649"},{"alias":"BDA2","entrezGeneId":"650"},{"alias":"BMP2A","entrezGeneId":"650"},{"alias":"SSFSC","entrezGeneId":"650"},{"alias":"BMP-3A","entrezGeneId":"651"},{"alias":"BMP2B","entrezGeneId":"652"},{"alias":"BMP2B1","entrezGeneId":"652"},{"alias":"MCOPS6","entrezGeneId":"652"},{"alias":"OFC11","entrezGeneId":"652"},{"alias":"ZYME","entrezGeneId":"652"},{"alias":"VGR","entrezGeneId":"654"},{"alias":"VGR1","entrezGeneId":"654"},{"alias":"OP-1","entrezGeneId":"655"},{"alias":"BMP8","entrezGeneId":"656"},{"alias":"OP2","entrezGeneId":"656"},{"alias":"10q23del","entrezGeneId":"657"},{"alias":"ACVRLK3","entrezGeneId":"657"},{"alias":"ALK3","entrezGeneId":"657"},{"alias":"CD292","entrezGeneId":"657"},{"alias":"SKR5","entrezGeneId":"657"},{"alias":"ALK-6","entrezGeneId":"658"},{"alias":"ALK6","entrezGeneId":"658"},{"alias":"AMDD","entrezGeneId":"658"},{"alias":"BDA1D","entrezGeneId":"658"},{"alias":"BDA2","entrezGeneId":"658"},{"alias":"CDw293","entrezGeneId":"658"},{"alias":"BMPR-II","entrezGeneId":"659"},{"alias":"BMPR3","entrezGeneId":"659"},{"alias":"BMR2","entrezGeneId":"659"},{"alias":"BRK-3","entrezGeneId":"659"},{"alias":"POVD1","entrezGeneId":"659"},{"alias":"PPH1","entrezGeneId":"659"},{"alias":"T-ALK","entrezGeneId":"659"},{"alias":"ETK","entrezGeneId":"660"},{"alias":"PSCTK2","entrezGeneId":"660"},{"alias":"PSCTK3","entrezGeneId":"660"},{"alias":"BN51T","entrezGeneId":"661"},{"alias":"RPC4","entrezGeneId":"661"},{"alias":"RPC53","entrezGeneId":"661"},{"alias":"TSBN51","entrezGeneId":"661"},{"alias":"NIP1","entrezGeneId":"662"},{"alias":"SEC20","entrezGeneId":"662"},{"alias":"TRG-8","entrezGeneId":"662"},{"alias":"BNIP-2","entrezGeneId":"663"},{"alias":"NIP2","entrezGeneId":"663"},{"alias":"NIP3","entrezGeneId":"664"},{"alias":"BNIP3a","entrezGeneId":"665"},{"alias":"NIX","entrezGeneId":"665"},{"alias":"BCL2L9","entrezGeneId":"666"},{"alias":"BOKL","entrezGeneId":"666"},{"alias":"BP240","entrezGeneId":"667"},{"alias":"BPA","entrezGeneId":"667"},{"alias":"BPAG1","entrezGeneId":"667"},{"alias":"CATX-15","entrezGeneId":"667"},{"alias":"CATX15","entrezGeneId":"667"},{"alias":"D6S1101","entrezGeneId":"667"},{"alias":"DMH","entrezGeneId":"667"},{"alias":"DT","entrezGeneId":"667"},{"alias":"EBSB2","entrezGeneId":"667"},{"alias":"HSAN6","entrezGeneId":"667"},{"alias":"MACF2","entrezGeneId":"667"},{"alias":"BPES","entrezGeneId":"668"},{"alias":"BPES1","entrezGeneId":"668"},{"alias":"PFRK","entrezGeneId":"668"},{"alias":"PINTO","entrezGeneId":"668"},{"alias":"POF3","entrezGeneId":"668"},{"alias":"DPGM","entrezGeneId":"669"},{"alias":"BPH-RP","entrezGeneId":"670"},{"alias":"MCNAA","entrezGeneId":"670"},{"alias":"VACVASE","entrezGeneId":"670"},{"alias":"BPIFD1","entrezGeneId":"671"},{"alias":"rBPI","entrezGeneId":"671"},{"alias":"BRCAI","entrezGeneId":"672"},{"alias":"BRCC1","entrezGeneId":"672"},{"alias":"BROVCA1","entrezGeneId":"672"},{"alias":"FANCS","entrezGeneId":"672"},{"alias":"IRIS","entrezGeneId":"672"},{"alias":"PNCA4","entrezGeneId":"672"},{"alias":"PPP1R53","entrezGeneId":"672"},{"alias":"PSCP","entrezGeneId":"672"},{"alias":"RNF53","entrezGeneId":"672"},{"alias":"B-raf","entrezGeneId":"673"},{"alias":"B-RAF1","entrezGeneId":"673"},{"alias":"BRAF1","entrezGeneId":"673"},{"alias":"NS7","entrezGeneId":"673"},{"alias":"RAFB1","entrezGeneId":"673"},{"alias":"BRCC2","entrezGeneId":"675"},{"alias":"BROVCA2","entrezGeneId":"675"},{"alias":"FACD","entrezGeneId":"675"},{"alias":"FAD","entrezGeneId":"675"},{"alias":"FAD1","entrezGeneId":"675"},{"alias":"FANCD","entrezGeneId":"675"},{"alias":"FANCD1","entrezGeneId":"675"},{"alias":"GLM3","entrezGeneId":"675"},{"alias":"PNCA2","entrezGeneId":"675"},{"alias":"XRCC11","entrezGeneId":"675"},{"alias":"BRD6","entrezGeneId":"676"},{"alias":"CT9","entrezGeneId":"676"},{"alias":"SPGF21","entrezGeneId":"676"},{"alias":"Berg36","entrezGeneId":"677"},{"alias":"BRF1","entrezGeneId":"677"},{"alias":"cMG1","entrezGeneId":"677"},{"alias":"ERF-1","entrezGeneId":"677"},{"alias":"ERF1","entrezGeneId":"677"},{"alias":"RNF162B","entrezGeneId":"677"},{"alias":"TIS11B","entrezGeneId":"677"},{"alias":"BRF2","entrezGeneId":"678"},{"alias":"ERF-2","entrezGeneId":"678"},{"alias":"ERF2","entrezGeneId":"678"},{"alias":"RNF162C","entrezGeneId":"678"},{"alias":"TIS11D","entrezGeneId":"678"},{"alias":"BB3","entrezGeneId":"680"},{"alias":"BB3R","entrezGeneId":"680"},{"alias":"5F7","entrezGeneId":"682"},{"alias":"CD147","entrezGeneId":"682"},{"alias":"EMMPRIN","entrezGeneId":"682"},{"alias":"EMPRIN","entrezGeneId":"682"},{"alias":"OK","entrezGeneId":"682"},{"alias":"TCSF","entrezGeneId":"682"},{"alias":"CD157","entrezGeneId":"683"},{"alias":"CD317","entrezGeneId":"684"},{"alias":"TETHERIN","entrezGeneId":"684"},{"alias":"BTEB","entrezGeneId":"687"},{"alias":"BTEB1","entrezGeneId":"687"},{"alias":"BTEB2","entrezGeneId":"688"},{"alias":"CKLF","entrezGeneId":"688"},{"alias":"IKLF","entrezGeneId":"688"},{"alias":"BETA-NAC","entrezGeneId":"689"},{"alias":"BTF3a","entrezGeneId":"689"},{"alias":"BTF3b","entrezGeneId":"689"},{"alias":"NACB","entrezGeneId":"689"},{"alias":"BTF3L1","entrezGeneId":"690"},{"alias":"HUMBTFB","entrezGeneId":"690"},{"alias":"OCIF","entrezGeneId":"690"},{"alias":"OPG","entrezGeneId":"690"},{"alias":"TNFRSF11B","entrezGeneId":"690"},{"alias":"HUMBTFA","entrezGeneId":"693"},{"alias":"APRO2","entrezGeneId":"694"},{"alias":"AGMX1","entrezGeneId":"695"},{"alias":"AT","entrezGeneId":"695"},{"alias":"ATK","entrezGeneId":"695"},{"alias":"BPK","entrezGeneId":"695"},{"alias":"IMD1","entrezGeneId":"695"},{"alias":"PSCTK1","entrezGeneId":"695"},{"alias":"XLA","entrezGeneId":"695"},{"alias":"BT","entrezGeneId":"696"},{"alias":"BTN","entrezGeneId":"696"},{"alias":"BTN1","entrezGeneId":"696"},{"alias":"BUB1A","entrezGeneId":"699"},{"alias":"BUB1L","entrezGeneId":"699"},{"alias":"hBUB1","entrezGeneId":"699"},{"alias":"Bub1A","entrezGeneId":"701"},{"alias":"BUB1beta","entrezGeneId":"701"},{"alias":"BUBR1","entrezGeneId":"701"},{"alias":"hBUBR1","entrezGeneId":"701"},{"alias":"MAD3L","entrezGeneId":"701"},{"alias":"MVA1","entrezGeneId":"701"},{"alias":"SSK1","entrezGeneId":"701"},{"alias":"BYSTIN","entrezGeneId":"705"},{"alias":"Enp1","entrezGeneId":"705"},{"alias":"BPBS","entrezGeneId":"706"},{"alias":"BZRP","entrezGeneId":"706"},{"alias":"DBI","entrezGeneId":"706"},{"alias":"IBP","entrezGeneId":"706"},{"alias":"MBR","entrezGeneId":"706"},{"alias":"mDRC","entrezGeneId":"706"},{"alias":"PBR","entrezGeneId":"706"},{"alias":"PBS","entrezGeneId":"706"},{"alias":"pk18","entrezGeneId":"706"},{"alias":"PKBS","entrezGeneId":"706"},{"alias":"PTBR","entrezGeneId":"706"},{"alias":"COXPD33","entrezGeneId":"708"},{"alias":"gC1Q-R","entrezGeneId":"708"},{"alias":"GC1QBP","entrezGeneId":"708"},{"alias":"gC1qR","entrezGeneId":"708"},{"alias":"HABP1","entrezGeneId":"708"},{"alias":"p32","entrezGeneId":"708"},{"alias":"SF2p32","entrezGeneId":"708"},{"alias":"C1IN","entrezGeneId":"710"},{"alias":"C1INH","entrezGeneId":"710"},{"alias":"C1NH","entrezGeneId":"710"},{"alias":"HAE1","entrezGeneId":"710"},{"alias":"HAE2","entrezGeneId":"710"},{"alias":"C1orf1","entrezGeneId":"711"},{"alias":"C3orf51","entrezGeneId":"711"},{"alias":"Po42","entrezGeneId":"711"},{"alias":"C1Q-C","entrezGeneId":"714"},{"alias":"C1QG","entrezGeneId":"714"},{"alias":"EDSPD1","entrezGeneId":"715"},{"alias":"EDSPD2","entrezGeneId":"716"},{"alias":"ARMD14","entrezGeneId":"717"},{"alias":"CO2","entrezGeneId":"717"},{"alias":"AHUS5","entrezGeneId":"718"},{"alias":"ARMD9","entrezGeneId":"718"},{"alias":"ASP","entrezGeneId":"718"},{"alias":"C3a","entrezGeneId":"718"},{"alias":"C3b","entrezGeneId":"718"},{"alias":"CPAMD1","entrezGeneId":"718"},{"alias":"HEL-S-62p","entrezGeneId":"718"},{"alias":"AZ3B","entrezGeneId":"719"},{"alias":"C3AR","entrezGeneId":"719"},{"alias":"HNFAG09","entrezGeneId":"719"},{"alias":"C4","entrezGeneId":"720"},{"alias":"C4A2","entrezGeneId":"720"},{"alias":"C4A3","entrezGeneId":"720"},{"alias":"C4A4","entrezGeneId":"720"},{"alias":"C4A6","entrezGeneId":"720"},{"alias":"C4AD","entrezGeneId":"720"},{"alias":"C4S","entrezGeneId":"720"},{"alias":"CO4","entrezGeneId":"720"},{"alias":"CPAMD2","entrezGeneId":"720"},{"alias":"RG","entrezGeneId":"720"},{"alias":"C4B1","entrezGeneId":"721"},{"alias":"C4B12","entrezGeneId":"721"},{"alias":"C4B2","entrezGeneId":"721"},{"alias":"C4B3","entrezGeneId":"721"},{"alias":"C4B5","entrezGeneId":"721"},{"alias":"C4BD","entrezGeneId":"721"},{"alias":"C4B_2","entrezGeneId":"721"},{"alias":"C4F","entrezGeneId":"721"},{"alias":"CH","entrezGeneId":"721"},{"alias":"CO4","entrezGeneId":"721"},{"alias":"CPAMD3","entrezGeneId":"721"},{"alias":"C4BP","entrezGeneId":"722"},{"alias":"PRP","entrezGeneId":"722"},{"alias":"C4BPAL2","entrezGeneId":"724"},{"alias":"C4BP","entrezGeneId":"725"},{"alias":"ADNIV","entrezGeneId":"726"},{"alias":"HTRA3","entrezGeneId":"726"},{"alias":"nCL-3","entrezGeneId":"726"},{"alias":"VRNI","entrezGeneId":"726"},{"alias":"C5a","entrezGeneId":"727"},{"alias":"C5b","entrezGeneId":"727"},{"alias":"C5D","entrezGeneId":"727"},{"alias":"CPAMD4","entrezGeneId":"727"},{"alias":"ECLZB","entrezGeneId":"727"},{"alias":"C5A","entrezGeneId":"728"},{"alias":"C5AR","entrezGeneId":"728"},{"alias":"C5R1","entrezGeneId":"728"},{"alias":"CD88","entrezGeneId":"728"},{"alias":"C82","entrezGeneId":"732"},{"alias":"C8C","entrezGeneId":"733"},{"alias":"C8orf1","entrezGeneId":"734"},{"alias":"hT41","entrezGeneId":"734"},{"alias":"ARMD15","entrezGeneId":"735"},{"alias":"C9D","entrezGeneId":"735"},{"alias":"ANG2","entrezGeneId":"738"},{"alias":"ANG3","entrezGeneId":"738"},{"alias":"C11orf2","entrezGeneId":"738"},{"alias":"C11orf3","entrezGeneId":"738"},{"alias":"FFR","entrezGeneId":"738"},{"alias":"C11orf4","entrezGeneId":"740"},{"alias":"L49mt","entrezGeneId":"740"},{"alias":"MRP-L49","entrezGeneId":"740"},{"alias":"NOF","entrezGeneId":"740"},{"alias":"NOF1","entrezGeneId":"740"},{"alias":"C11orf5","entrezGeneId":"741"},{"alias":"FON","entrezGeneId":"741"},{"alias":"239FB","entrezGeneId":"744"},{"alias":"C11orf8","entrezGeneId":"744"},{"alias":"C11orf9","entrezGeneId":"745"},{"alias":"MRF","entrezGeneId":"745"},{"alias":"Ndt80","entrezGeneId":"745"},{"alias":"pqn-47","entrezGeneId":"745"},{"alias":"C11orf10","entrezGeneId":"746"},{"alias":"C11orf11","entrezGeneId":"747"},{"alias":"DAGL(ALPHA)","entrezGeneId":"747"},{"alias":"DAGLALPHA","entrezGeneId":"747"},{"alias":"NSDDR","entrezGeneId":"747"},{"alias":"C16orf3","entrezGeneId":"750"},{"alias":"C17orf1","entrezGeneId":"752"},{"alias":"C17orf1B","entrezGeneId":"752"},{"alias":"FHOD4","entrezGeneId":"752"},{"alias":"FMNL","entrezGeneId":"752"},{"alias":"KW-13","entrezGeneId":"752"},{"alias":"C18orf1","entrezGeneId":"753"},{"alias":"C21orf1","entrezGeneId":"754"},{"alias":"C21orf3","entrezGeneId":"754"},{"alias":"PBF","entrezGeneId":"754"},{"alias":"LRRC76","entrezGeneId":"755"},{"alias":"RDMS","entrezGeneId":"755"},{"alias":"SMDAX","entrezGeneId":"755"},{"alias":"YF5/A2","entrezGeneId":"755"},{"alias":"C21orf4","entrezGeneId":"757"},{"alias":"HCVP7TP3","entrezGeneId":"757"},{"alias":"239AB","entrezGeneId":"758"},{"alias":"C22orf1","entrezGeneId":"758"},{"alias":"FAM1A","entrezGeneId":"758"},{"alias":"CA-I","entrezGeneId":"759"},{"alias":"CAB","entrezGeneId":"759"},{"alias":"Car1","entrezGeneId":"759"},{"alias":"HEL-S-11","entrezGeneId":"759"},{"alias":"CA-II","entrezGeneId":"760"},{"alias":"CAC","entrezGeneId":"760"},{"alias":"CAII","entrezGeneId":"760"},{"alias":"Car2","entrezGeneId":"760"},{"alias":"HEL-76","entrezGeneId":"760"},{"alias":"HEL-S-282","entrezGeneId":"760"},{"alias":"CAIII","entrezGeneId":"761"},{"alias":"Car3","entrezGeneId":"761"},{"alias":"CAIV","entrezGeneId":"762"},{"alias":"Car4","entrezGeneId":"762"},{"alias":"RP17","entrezGeneId":"762"},{"alias":"CA5","entrezGeneId":"763"},{"alias":"CA5AD","entrezGeneId":"763"},{"alias":"CAV","entrezGeneId":"763"},{"alias":"CAVA","entrezGeneId":"763"},{"alias":"GS1-21A4.1","entrezGeneId":"763"},{"alias":"CA5P","entrezGeneId":"764"},{"alias":"CA-VI","entrezGeneId":"765"},{"alias":"GUSTIN","entrezGeneId":"765"},{"alias":"CAVII","entrezGeneId":"766"},{"alias":"CA-RP","entrezGeneId":"767"},{"alias":"CA-VIII","entrezGeneId":"767"},{"alias":"CALS","entrezGeneId":"767"},{"alias":"CAMRQ3","entrezGeneId":"767"},{"alias":"CARP","entrezGeneId":"767"},{"alias":"CAIX","entrezGeneId":"768"},{"alias":"MN","entrezGeneId":"768"},{"alias":"CA-RP","entrezGeneId":"770"},{"alias":"CA-RP II","entrezGeneId":"770"},{"alias":"CA-XI","entrezGeneId":"770"},{"alias":"CARP-2","entrezGeneId":"770"},{"alias":"CARPX1","entrezGeneId":"770"},{"alias":"CA-XII","entrezGeneId":"771"},{"alias":"CAXII","entrezGeneId":"771"},{"alias":"HsT18816","entrezGeneId":"771"},{"alias":"T18816","entrezGeneId":"771"},{"alias":"APCA","entrezGeneId":"773"},{"alias":"BI","entrezGeneId":"773"},{"alias":"CACNL1A4","entrezGeneId":"773"},{"alias":"CAV2.1","entrezGeneId":"773"},{"alias":"EA2","entrezGeneId":"773"},{"alias":"EIEE42","entrezGeneId":"773"},{"alias":"FHM","entrezGeneId":"773"},{"alias":"HPCA","entrezGeneId":"773"},{"alias":"MHP","entrezGeneId":"773"},{"alias":"MHP1","entrezGeneId":"773"},{"alias":"SCA6","entrezGeneId":"773"},{"alias":"BIII","entrezGeneId":"774"},{"alias":"CACNL1A5","entrezGeneId":"774"},{"alias":"CACNN","entrezGeneId":"774"},{"alias":"Cav2.2","entrezGeneId":"774"},{"alias":"DYT23","entrezGeneId":"774"},{"alias":"CACH2","entrezGeneId":"775"},{"alias":"CACN2","entrezGeneId":"775"},{"alias":"CACNL1A1","entrezGeneId":"775"},{"alias":"CaV1.2","entrezGeneId":"775"},{"alias":"CCHL1A1","entrezGeneId":"775"},{"alias":"LQT8","entrezGeneId":"775"},{"alias":"TS","entrezGeneId":"775"},{"alias":"CACH3","entrezGeneId":"776"},{"alias":"CACN4","entrezGeneId":"776"},{"alias":"CACNL1A2","entrezGeneId":"776"},{"alias":"Cav1.3","entrezGeneId":"776"},{"alias":"CCHL1A2","entrezGeneId":"776"},{"alias":"PASNA","entrezGeneId":"776"},{"alias":"SANDD","entrezGeneId":"776"},{"alias":"BII","entrezGeneId":"777"},{"alias":"CACH6","entrezGeneId":"777"},{"alias":"CACNL1A6","entrezGeneId":"777"},{"alias":"Cav2.3","entrezGeneId":"777"},{"alias":"gm139","entrezGeneId":"777"},{"alias":"AIED","entrezGeneId":"778"},{"alias":"Cav1.4","entrezGeneId":"778"},{"alias":"Cav1.4alpha1","entrezGeneId":"778"},{"alias":"COD3","entrezGeneId":"778"},{"alias":"COD4","entrezGeneId":"778"},{"alias":"CORDX","entrezGeneId":"778"},{"alias":"CORDX3","entrezGeneId":"778"},{"alias":"CSNB2","entrezGeneId":"778"},{"alias":"CSNB2A","entrezGeneId":"778"},{"alias":"CSNBX2","entrezGeneId":"778"},{"alias":"JM8","entrezGeneId":"778"},{"alias":"JMC8","entrezGeneId":"778"},{"alias":"OA2","entrezGeneId":"778"},{"alias":"CACNL1A3","entrezGeneId":"779"},{"alias":"Cav1.1","entrezGeneId":"779"},{"alias":"CCHL1A3","entrezGeneId":"779"},{"alias":"HOKPP","entrezGeneId":"779"},{"alias":"HOKPP1","entrezGeneId":"779"},{"alias":"hypoPP","entrezGeneId":"779"},{"alias":"MHS5","entrezGeneId":"779"},{"alias":"TTPP1","entrezGeneId":"779"},{"alias":"CAK","entrezGeneId":"780"},{"alias":"CD167","entrezGeneId":"780"},{"alias":"DDR","entrezGeneId":"780"},{"alias":"EDDR1","entrezGeneId":"780"},{"alias":"HGK2","entrezGeneId":"780"},{"alias":"MCK10","entrezGeneId":"780"},{"alias":"NEP","entrezGeneId":"780"},{"alias":"NTRK4","entrezGeneId":"780"},{"alias":"PTK3","entrezGeneId":"780"},{"alias":"PTK3A","entrezGeneId":"780"},{"alias":"RTK6","entrezGeneId":"780"},{"alias":"TRKE","entrezGeneId":"780"},{"alias":"CACNA2","entrezGeneId":"781"},{"alias":"CACNL2A","entrezGeneId":"781"},{"alias":"CCHL2A","entrezGeneId":"781"},{"alias":"LINC01112","entrezGeneId":"781"},{"alias":"lncRNA-N3","entrezGeneId":"781"},{"alias":"CAB1","entrezGeneId":"782"},{"alias":"CACNLB1","entrezGeneId":"782"},{"alias":"CCHLB1","entrezGeneId":"782"},{"alias":"CACNLB2","entrezGeneId":"783"},{"alias":"CAVB2","entrezGeneId":"783"},{"alias":"MYSB","entrezGeneId":"783"},{"alias":"CAB3","entrezGeneId":"784"},{"alias":"CACNLB3","entrezGeneId":"784"},{"alias":"CAB4","entrezGeneId":"785"},{"alias":"CACNLB4","entrezGeneId":"785"},{"alias":"EA5","entrezGeneId":"785"},{"alias":"EIG9","entrezGeneId":"785"},{"alias":"EJM","entrezGeneId":"785"},{"alias":"EJM4","entrezGeneId":"785"},{"alias":"EJM6","entrezGeneId":"785"},{"alias":"CACNLG","entrezGeneId":"786"},{"alias":"CAC","entrezGeneId":"788"},{"alias":"CACT","entrezGeneId":"788"},{"alias":"CACTP","entrezGeneId":"789"},{"alias":"SLC25A20P","entrezGeneId":"789"},{"alias":"CDG1Z","entrezGeneId":"790"},{"alias":"EIEE50","entrezGeneId":"790"},{"alias":"GATD4","entrezGeneId":"790"},{"alias":"CALB","entrezGeneId":"793"},{"alias":"D-28K","entrezGeneId":"793"},{"alias":"CAB29","entrezGeneId":"794"},{"alias":"CAL2","entrezGeneId":"794"},{"alias":"CR","entrezGeneId":"794"},{"alias":"CABP","entrezGeneId":"795"},{"alias":"CABP1","entrezGeneId":"795"},{"alias":"CABP9K","entrezGeneId":"795"},{"alias":"CALB3","entrezGeneId":"795"},{"alias":"CALC1","entrezGeneId":"796"},{"alias":"CGRP","entrezGeneId":"796"},{"alias":"CGRP-I","entrezGeneId":"796"},{"alias":"CGRP1","entrezGeneId":"796"},{"alias":"CT","entrezGeneId":"796"},{"alias":"KC","entrezGeneId":"796"},{"alias":"PCT","entrezGeneId":"796"},{"alias":"CALC2","entrezGeneId":"797"},{"alias":"CGRP-II","entrezGeneId":"797"},{"alias":"CGRP2","entrezGeneId":"797"},{"alias":"CALC3","entrezGeneId":"798"},{"alias":"CRT","entrezGeneId":"799"},{"alias":"CT-R","entrezGeneId":"799"},{"alias":"CTR","entrezGeneId":"799"},{"alias":"CTR1","entrezGeneId":"799"},{"alias":"CDM","entrezGeneId":"800"},{"alias":"H-CAD","entrezGeneId":"800"},{"alias":"HCAD","entrezGeneId":"800"},{"alias":"L-CAD","entrezGeneId":"800"},{"alias":"LCAD","entrezGeneId":"800"},{"alias":"NAG22","entrezGeneId":"800"},{"alias":"CALML2","entrezGeneId":"801"},{"alias":"caM","entrezGeneId":"801"},{"alias":"CAMI","entrezGeneId":"801"},{"alias":"CPVT4","entrezGeneId":"801"},{"alias":"DD132","entrezGeneId":"801"},{"alias":"LQT14","entrezGeneId":"801"},{"alias":"PHKD","entrezGeneId":"801"},{"alias":"CALML1","entrezGeneId":"802"},{"alias":"caM","entrezGeneId":"805"},{"alias":"CAMII","entrezGeneId":"805"},{"alias":"LQT15","entrezGeneId":"805"},{"alias":"PHKD","entrezGeneId":"805"},{"alias":"PHKD2","entrezGeneId":"805"},{"alias":"CaM","entrezGeneId":"808"},{"alias":"CaMIII","entrezGeneId":"808"},{"alias":"HEL-S-72","entrezGeneId":"808"},{"alias":"PHKD","entrezGeneId":"808"},{"alias":"PHKD3","entrezGeneId":"808"},{"alias":"CLP","entrezGeneId":"810"},{"alias":"cC1qR","entrezGeneId":"811"},{"alias":"CRT","entrezGeneId":"811"},{"alias":"HEL-S-99n","entrezGeneId":"811"},{"alias":"RO","entrezGeneId":"811"},{"alias":"SSA","entrezGeneId":"811"},{"alias":"caMK","entrezGeneId":"814"},{"alias":"CaMK IV","entrezGeneId":"814"},{"alias":"CaMK-GR","entrezGeneId":"814"},{"alias":"CAMKA","entrezGeneId":"815"},{"alias":"MRD53","entrezGeneId":"815"},{"alias":"CAM2","entrezGeneId":"816"},{"alias":"CAMK2","entrezGeneId":"816"},{"alias":"CAMKB","entrezGeneId":"816"},{"alias":"MRD54","entrezGeneId":"816"},{"alias":"CAMKD","entrezGeneId":"817"},{"alias":"CAMK","entrezGeneId":"818"},{"alias":"CAMK-II","entrezGeneId":"818"},{"alias":"CAMKG","entrezGeneId":"818"},{"alias":"CAML","entrezGeneId":"819"},{"alias":"GET2","entrezGeneId":"819"},{"alias":"CAP-18","entrezGeneId":"820"},{"alias":"CAP18","entrezGeneId":"820"},{"alias":"CRAMP","entrezGeneId":"820"},{"alias":"FALL-39","entrezGeneId":"820"},{"alias":"FALL39","entrezGeneId":"820"},{"alias":"HSD26","entrezGeneId":"820"},{"alias":"LL37","entrezGeneId":"820"},{"alias":"CNX","entrezGeneId":"821"},{"alias":"IP90","entrezGeneId":"821"},{"alias":"P90","entrezGeneId":"821"},{"alias":"AFCP","entrezGeneId":"822"},{"alias":"HEL-S-66","entrezGeneId":"822"},{"alias":"MCP","entrezGeneId":"822"},{"alias":"CANP","entrezGeneId":"823"},{"alias":"CANP1","entrezGeneId":"823"},{"alias":"CANPL1","entrezGeneId":"823"},{"alias":"muCANP","entrezGeneId":"823"},{"alias":"muCL","entrezGeneId":"823"},{"alias":"SPG76","entrezGeneId":"823"},{"alias":"CANP2","entrezGeneId":"824"},{"alias":"CANPL2","entrezGeneId":"824"},{"alias":"CANPml","entrezGeneId":"824"},{"alias":"mCANP","entrezGeneId":"824"},{"alias":"CANP3","entrezGeneId":"825"},{"alias":"CANPL3","entrezGeneId":"825"},{"alias":"LGMD2","entrezGeneId":"825"},{"alias":"LGMD2A","entrezGeneId":"825"},{"alias":"nCL-1","entrezGeneId":"825"},{"alias":"p94","entrezGeneId":"825"},{"alias":"CALPAIN4","entrezGeneId":"826"},{"alias":"CANP","entrezGeneId":"826"},{"alias":"CANPS","entrezGeneId":"826"},{"alias":"CAPN4","entrezGeneId":"826"},{"alias":"CDPS","entrezGeneId":"826"},{"alias":"CSS1","entrezGeneId":"826"},{"alias":"CalpM","entrezGeneId":"827"},{"alias":"CANPX","entrezGeneId":"827"},{"alias":"CAPNX","entrezGeneId":"827"},{"alias":"DJ914P14.1","entrezGeneId":"827"},{"alias":"CAPS1","entrezGeneId":"828"},{"alias":"CAPPA1","entrezGeneId":"829"},{"alias":"CAPZ","entrezGeneId":"829"},{"alias":"CAZ1","entrezGeneId":"829"},{"alias":"CAPPA2","entrezGeneId":"830"},{"alias":"CAPZ","entrezGeneId":"830"},{"alias":"BS-17","entrezGeneId":"831"},{"alias":"PLACK","entrezGeneId":"831"},{"alias":"CAPB","entrezGeneId":"832"},{"alias":"CAPPB","entrezGeneId":"832"},{"alias":"CAPZ","entrezGeneId":"832"},{"alias":"CARS1","entrezGeneId":"833"},{"alias":"CYSRS","entrezGeneId":"833"},{"alias":"MGC:11246","entrezGeneId":"833"},{"alias":"ICE","entrezGeneId":"834"},{"alias":"IL1BC","entrezGeneId":"834"},{"alias":"P45","entrezGeneId":"834"},{"alias":"CASP-2","entrezGeneId":"835"},{"alias":"ICH1","entrezGeneId":"835"},{"alias":"NEDD-2","entrezGeneId":"835"},{"alias":"NEDD2","entrezGeneId":"835"},{"alias":"PPP1R57","entrezGeneId":"835"},{"alias":"CPP32","entrezGeneId":"836"},{"alias":"CPP32B","entrezGeneId":"836"},{"alias":"SCA-1","entrezGeneId":"836"},{"alias":"ICE(rel)II","entrezGeneId":"837"},{"alias":"ICEREL-II","entrezGeneId":"837"},{"alias":"ICH-2","entrezGeneId":"837"},{"alias":"Mih1","entrezGeneId":"837"},{"alias":"Mih1/TX","entrezGeneId":"837"},{"alias":"TX","entrezGeneId":"837"},{"alias":"ICE(rel)III","entrezGeneId":"838"},{"alias":"ICEREL-III","entrezGeneId":"838"},{"alias":"ICH-3","entrezGeneId":"838"},{"alias":"MCH2","entrezGeneId":"839"},{"alias":"CASP-7","entrezGeneId":"840"},{"alias":"CMH-1","entrezGeneId":"840"},{"alias":"ICE-LAP3","entrezGeneId":"840"},{"alias":"LICE2","entrezGeneId":"840"},{"alias":"MCH3","entrezGeneId":"840"},{"alias":"ALPS2B","entrezGeneId":"841"},{"alias":"CAP4","entrezGeneId":"841"},{"alias":"Casp-8","entrezGeneId":"841"},{"alias":"FLICE","entrezGeneId":"841"},{"alias":"MACH","entrezGeneId":"841"},{"alias":"MCH5","entrezGeneId":"841"},{"alias":"APAF-3","entrezGeneId":"842"},{"alias":"APAF3","entrezGeneId":"842"},{"alias":"ICE-LAP6","entrezGeneId":"842"},{"alias":"MCH6","entrezGeneId":"842"},{"alias":"PPP1R56","entrezGeneId":"842"},{"alias":"ALPS2","entrezGeneId":"843"},{"alias":"FLICE2","entrezGeneId":"843"},{"alias":"MCH4","entrezGeneId":"843"},{"alias":"CASQ","entrezGeneId":"844"},{"alias":"PDIB1","entrezGeneId":"844"},{"alias":"VMCQA","entrezGeneId":"844"},{"alias":"PDIB2","entrezGeneId":"845"},{"alias":"CAR","entrezGeneId":"846"},{"alias":"EIG8","entrezGeneId":"846"},{"alias":"FHH","entrezGeneId":"846"},{"alias":"FIH","entrezGeneId":"846"},{"alias":"GPRC2A","entrezGeneId":"846"},{"alias":"hCasR","entrezGeneId":"846"},{"alias":"HHC","entrezGeneId":"846"},{"alias":"HHC1","entrezGeneId":"846"},{"alias":"HYPOC1","entrezGeneId":"846"},{"alias":"NSHPT","entrezGeneId":"846"},{"alias":"PCAR1","entrezGeneId":"846"},{"alias":"BSCL3","entrezGeneId":"857"},{"alias":"CGL3","entrezGeneId":"857"},{"alias":"LCCNS","entrezGeneId":"857"},{"alias":"MSTP085","entrezGeneId":"857"},{"alias":"PPH3","entrezGeneId":"857"},{"alias":"VIP21","entrezGeneId":"857"},{"alias":"CAV","entrezGeneId":"858"},{"alias":"LGMD1C","entrezGeneId":"859"},{"alias":"LQT9","entrezGeneId":"859"},{"alias":"VIP-21","entrezGeneId":"859"},{"alias":"VIP21","entrezGeneId":"859"},{"alias":"AML3","entrezGeneId":"860"},{"alias":"CBF-alpha-1","entrezGeneId":"860"},{"alias":"CBFA1","entrezGeneId":"860"},{"alias":"CCD","entrezGeneId":"860"},{"alias":"CCD1","entrezGeneId":"860"},{"alias":"CLCD","entrezGeneId":"860"},{"alias":"OSF-2","entrezGeneId":"860"},{"alias":"OSF2","entrezGeneId":"860"},{"alias":"PEA2aA","entrezGeneId":"860"},{"alias":"PEBP2aA","entrezGeneId":"860"},{"alias":"AML1","entrezGeneId":"861"},{"alias":"AML1-EVI-1","entrezGeneId":"861"},{"alias":"AMLCR1","entrezGeneId":"861"},{"alias":"CBF2alpha","entrezGeneId":"861"},{"alias":"CBFA2","entrezGeneId":"861"},{"alias":"EVI-1","entrezGeneId":"861"},{"alias":"PEBP2aB","entrezGeneId":"861"},{"alias":"PEBP2alpha","entrezGeneId":"861"},{"alias":"AML1-MTG8","entrezGeneId":"862"},{"alias":"AML1T1","entrezGeneId":"862"},{"alias":"CBFA2T1","entrezGeneId":"862"},{"alias":"CDR","entrezGeneId":"862"},{"alias":"ETO","entrezGeneId":"862"},{"alias":"MTG8","entrezGeneId":"862"},{"alias":"ZMYND2","entrezGeneId":"862"},{"alias":"ETO2","entrezGeneId":"863"},{"alias":"MTG16","entrezGeneId":"863"},{"alias":"MTGR2","entrezGeneId":"863"},{"alias":"RUNX1T3","entrezGeneId":"863"},{"alias":"ZMYND4","entrezGeneId":"863"},{"alias":"AML2","entrezGeneId":"864"},{"alias":"CBFA3","entrezGeneId":"864"},{"alias":"PEBP2aC","entrezGeneId":"864"},{"alias":"PEBP2B","entrezGeneId":"865"},{"alias":"CBG","entrezGeneId":"866"},{"alias":"C-CBL","entrezGeneId":"867"},{"alias":"CBL2","entrezGeneId":"867"},{"alias":"FRA11B","entrezGeneId":"867"},{"alias":"NSLL","entrezGeneId":"867"},{"alias":"RNF55","entrezGeneId":"867"},{"alias":"Cbl-b","entrezGeneId":"868"},{"alias":"Nbla00127","entrezGeneId":"868"},{"alias":"RNF56","entrezGeneId":"868"},{"alias":"AsTP3","entrezGeneId":"871"},{"alias":"CBP1","entrezGeneId":"871"},{"alias":"CBP2","entrezGeneId":"871"},{"alias":"gp46","entrezGeneId":"871"},{"alias":"HSP47","entrezGeneId":"871"},{"alias":"OI10","entrezGeneId":"871"},{"alias":"PIG14","entrezGeneId":"871"},{"alias":"PPROM","entrezGeneId":"871"},{"alias":"RA-A47","entrezGeneId":"871"},{"alias":"SERPINH2","entrezGeneId":"871"},{"alias":"CBR","entrezGeneId":"873"},{"alias":"hCBR1","entrezGeneId":"873"},{"alias":"SDR21C1","entrezGeneId":"873"},{"alias":"hCBR3","entrezGeneId":"874"},{"alias":"HEL-S-25","entrezGeneId":"874"},{"alias":"SDR21C2","entrezGeneId":"874"},{"alias":"HIP4","entrezGeneId":"875"},{"alias":"CTRCT7","entrezGeneId":"878"},{"alias":"BTBD20","entrezGeneId":"881"},{"alias":"KBTBD14","entrezGeneId":"881"},{"alias":"CPDD","entrezGeneId":"882"},{"alias":"CCBL1","entrezGeneId":"883"},{"alias":"GTK","entrezGeneId":"883"},{"alias":"KAT1","entrezGeneId":"883"},{"alias":"KATI","entrezGeneId":"883"},{"alias":"CCK-A","entrezGeneId":"886"},{"alias":"CCK1-R","entrezGeneId":"886"},{"alias":"CCK1R","entrezGeneId":"886"},{"alias":"CCKRA","entrezGeneId":"886"},{"alias":"CCK-B","entrezGeneId":"887"},{"alias":"CCK2R","entrezGeneId":"887"},{"alias":"GASR","entrezGeneId":"887"},{"alias":"CAM","entrezGeneId":"889"},{"alias":"CCM1","entrezGeneId":"889"},{"alias":"CCN1","entrezGeneId":"890"},{"alias":"CCNA","entrezGeneId":"890"},{"alias":"CCNB","entrezGeneId":"891"},{"alias":"CycC","entrezGeneId":"892"},{"alias":"hSRB11","entrezGeneId":"892"},{"alias":"SRB11","entrezGeneId":"892"},{"alias":"KIAK0002","entrezGeneId":"894"},{"alias":"MPPH3","entrezGeneId":"894"},{"alias":"CCND2P","entrezGeneId":"895"},{"alias":"CCND3P","entrezGeneId":"897"},{"alias":"CCNE","entrezGeneId":"898"},{"alias":"pCCNE1","entrezGeneId":"898"},{"alias":"FBX1","entrezGeneId":"899"},{"alias":"FBXO1","entrezGeneId":"899"},{"alias":"CCNG","entrezGeneId":"900"},{"alias":"CAK","entrezGeneId":"902"},{"alias":"CycH","entrezGeneId":"902"},{"alias":"p34","entrezGeneId":"902"},{"alias":"p37","entrezGeneId":"902"},{"alias":"CCNT","entrezGeneId":"904"},{"alias":"CYCT1","entrezGeneId":"904"},{"alias":"HIVE1","entrezGeneId":"904"},{"alias":"CYCT2","entrezGeneId":"905"},{"alias":"CCT-zeta","entrezGeneId":"908"},{"alias":"CCT-zeta-1","entrezGeneId":"908"},{"alias":"CCT6","entrezGeneId":"908"},{"alias":"Cctz","entrezGeneId":"908"},{"alias":"HTR3","entrezGeneId":"908"},{"alias":"MoDP-2","entrezGeneId":"908"},{"alias":"TCP-1-zeta","entrezGeneId":"908"},{"alias":"TCP20","entrezGeneId":"908"},{"alias":"TCPZ","entrezGeneId":"908"},{"alias":"TTCP20","entrezGeneId":"908"},{"alias":"CD1","entrezGeneId":"909"},{"alias":"FCB6","entrezGeneId":"909"},{"alias":"HTA1","entrezGeneId":"909"},{"alias":"R4","entrezGeneId":"909"},{"alias":"T6","entrezGeneId":"909"},{"alias":"CD1","entrezGeneId":"910"},{"alias":"CD1A","entrezGeneId":"910"},{"alias":"R1","entrezGeneId":"910"},{"alias":"BDCA1","entrezGeneId":"911"},{"alias":"CD1","entrezGeneId":"911"},{"alias":"CD1A","entrezGeneId":"911"},{"alias":"R7","entrezGeneId":"911"},{"alias":"CD1A","entrezGeneId":"912"},{"alias":"R3","entrezGeneId":"912"},{"alias":"R3G1","entrezGeneId":"912"},{"alias":"CD1A","entrezGeneId":"913"},{"alias":"R2","entrezGeneId":"913"},{"alias":"LFA-2","entrezGeneId":"914"},{"alias":"SRBC","entrezGeneId":"914"},{"alias":"T11","entrezGeneId":"914"},{"alias":"CD3-DELTA","entrezGeneId":"915"},{"alias":"IMD19","entrezGeneId":"915"},{"alias":"T3D","entrezGeneId":"915"},{"alias":"IMD18","entrezGeneId":"916"},{"alias":"T3E","entrezGeneId":"916"},{"alias":"TCRE","entrezGeneId":"916"},{"alias":"CD3-GAMMA","entrezGeneId":"917"},{"alias":"IMD17","entrezGeneId":"917"},{"alias":"T3G","entrezGeneId":"917"},{"alias":"CD3-ZETA","entrezGeneId":"919"},{"alias":"CD3H","entrezGeneId":"919"},{"alias":"CD3Q","entrezGeneId":"919"},{"alias":"CD3Z","entrezGeneId":"919"},{"alias":"IMD25","entrezGeneId":"919"},{"alias":"T3Z","entrezGeneId":"919"},{"alias":"TCRZ","entrezGeneId":"919"},{"alias":"CD4mut","entrezGeneId":"920"},{"alias":"LEU1","entrezGeneId":"921"},{"alias":"T1","entrezGeneId":"921"},{"alias":"AIM","entrezGeneId":"922"},{"alias":"API6","entrezGeneId":"922"},{"alias":"CT-2","entrezGeneId":"922"},{"alias":"hAIM","entrezGeneId":"922"},{"alias":"PRO229","entrezGeneId":"922"},{"alias":"SP-ALPHA","entrezGeneId":"922"},{"alias":"Spalpha","entrezGeneId":"922"},{"alias":"TP120","entrezGeneId":"923"},{"alias":"GP40","entrezGeneId":"924"},{"alias":"LEU-9","entrezGeneId":"924"},{"alias":"Tp40","entrezGeneId":"924"},{"alias":"TP41","entrezGeneId":"924"},{"alias":"CD8","entrezGeneId":"925"},{"alias":"Leu2","entrezGeneId":"925"},{"alias":"MAL","entrezGeneId":"925"},{"alias":"p32","entrezGeneId":"925"},{"alias":"CD8B1","entrezGeneId":"926"},{"alias":"LEU2","entrezGeneId":"926"},{"alias":"LY3","entrezGeneId":"926"},{"alias":"LYT3","entrezGeneId":"926"},{"alias":"P37","entrezGeneId":"926"},{"alias":"CD8BP","entrezGeneId":"927"},{"alias":"BTCC-1","entrezGeneId":"928"},{"alias":"DRAP-27","entrezGeneId":"928"},{"alias":"MIC3","entrezGeneId":"928"},{"alias":"MRP-1","entrezGeneId":"928"},{"alias":"TSPAN-29","entrezGeneId":"928"},{"alias":"TSPAN29","entrezGeneId":"928"},{"alias":"B4","entrezGeneId":"930"},{"alias":"CVID3","entrezGeneId":"930"},{"alias":"B1","entrezGeneId":"931"},{"alias":"Bp35","entrezGeneId":"931"},{"alias":"CD20","entrezGeneId":"931"},{"alias":"CVID5","entrezGeneId":"931"},{"alias":"LEU-16","entrezGeneId":"931"},{"alias":"MS4A2","entrezGeneId":"931"},{"alias":"S7","entrezGeneId":"931"},{"alias":"CD20L","entrezGeneId":"932"},{"alias":"HTM4","entrezGeneId":"932"},{"alias":"SIGLEC-2","entrezGeneId":"933"},{"alias":"SIGLEC2","entrezGeneId":"933"},{"alias":"CD24L1","entrezGeneId":"935"},{"alias":"CD24L2","entrezGeneId":"936"},{"alias":"CD24L3","entrezGeneId":"937"},{"alias":"CD24L4","entrezGeneId":"938"},{"alias":"S152","entrezGeneId":"939"},{"alias":"S152. LPFS2","entrezGeneId":"939"},{"alias":"T14","entrezGeneId":"939"},{"alias":"TNFRSF7","entrezGeneId":"939"},{"alias":"Tp55","entrezGeneId":"939"},{"alias":"Tp44","entrezGeneId":"940"},{"alias":"B7","entrezGeneId":"941"},{"alias":"B7-1","entrezGeneId":"941"},{"alias":"B7.1","entrezGeneId":"941"},{"alias":"BB1","entrezGeneId":"941"},{"alias":"CD28LG","entrezGeneId":"941"},{"alias":"CD28LG1","entrezGeneId":"941"},{"alias":"LAB7","entrezGeneId":"941"},{"alias":"B7-2","entrezGeneId":"942"},{"alias":"B7.2","entrezGeneId":"942"},{"alias":"B70","entrezGeneId":"942"},{"alias":"CD28LG2","entrezGeneId":"942"},{"alias":"LAB72","entrezGeneId":"942"},{"alias":"CD30","entrezGeneId":"943"},{"alias":"D1S166E","entrezGeneId":"943"},{"alias":"Ki-1","entrezGeneId":"943"},{"alias":"CD153","entrezGeneId":"944"},{"alias":"CD30L","entrezGeneId":"944"},{"alias":"CD30LG","entrezGeneId":"944"},{"alias":"TNLG3A","entrezGeneId":"944"},{"alias":"p67","entrezGeneId":"945"},{"alias":"SIGLEC-3","entrezGeneId":"945"},{"alias":"SIGLEC3","entrezGeneId":"945"},{"alias":"CD327","entrezGeneId":"946"},{"alias":"CD33L","entrezGeneId":"946"},{"alias":"CD33L1","entrezGeneId":"946"},{"alias":"CD33L2","entrezGeneId":"946"},{"alias":"CDW327","entrezGeneId":"946"},{"alias":"OBBP1","entrezGeneId":"946"},{"alias":"BDPLT10","entrezGeneId":"948"},{"alias":"CHDS7","entrezGeneId":"948"},{"alias":"FAT","entrezGeneId":"948"},{"alias":"GP3B","entrezGeneId":"948"},{"alias":"GP4","entrezGeneId":"948"},{"alias":"GPIV","entrezGeneId":"948"},{"alias":"PASIV","entrezGeneId":"948"},{"alias":"SCARB3","entrezGeneId":"948"},{"alias":"CD36L1","entrezGeneId":"949"},{"alias":"CLA-1","entrezGeneId":"949"},{"alias":"CLA1","entrezGeneId":"949"},{"alias":"HDLQTL6","entrezGeneId":"949"},{"alias":"SR-BI","entrezGeneId":"949"},{"alias":"SRB1","entrezGeneId":"949"},{"alias":"AMRF","entrezGeneId":"950"},{"alias":"CD36L2","entrezGeneId":"950"},{"alias":"EPM4","entrezGeneId":"950"},{"alias":"HLGP85","entrezGeneId":"950"},{"alias":"LGP85","entrezGeneId":"950"},{"alias":"LIMP-2","entrezGeneId":"950"},{"alias":"LIMPII","entrezGeneId":"950"},{"alias":"SR-BII","entrezGeneId":"950"},{"alias":"GP52-40","entrezGeneId":"951"},{"alias":"TSPAN26","entrezGeneId":"951"},{"alias":"ADPRC 1","entrezGeneId":"952"},{"alias":"ADPRC1","entrezGeneId":"952"},{"alias":"ATPDase","entrezGeneId":"953"},{"alias":"CD39","entrezGeneId":"953"},{"alias":"NTPDase-1","entrezGeneId":"953"},{"alias":"SPG64","entrezGeneId":"953"},{"alias":"CD39L1","entrezGeneId":"954"},{"alias":"NTPDase-2","entrezGeneId":"954"},{"alias":"CD39L2","entrezGeneId":"955"},{"alias":"dJ738P15.3","entrezGeneId":"955"},{"alias":"IL-6SAG","entrezGeneId":"955"},{"alias":"IL6ST2","entrezGeneId":"955"},{"alias":"NTPDase-6","entrezGeneId":"955"},{"alias":"CD39L3","entrezGeneId":"956"},{"alias":"HB6","entrezGeneId":"956"},{"alias":"NTPDase-3","entrezGeneId":"956"},{"alias":"CD39L4","entrezGeneId":"957"},{"alias":"NTPDase-5","entrezGeneId":"957"},{"alias":"PCPH","entrezGeneId":"957"},{"alias":"Bp50","entrezGeneId":"958"},{"alias":"CDW40","entrezGeneId":"958"},{"alias":"p50","entrezGeneId":"958"},{"alias":"TNFRSF5","entrezGeneId":"958"},{"alias":"CD154","entrezGeneId":"959"},{"alias":"CD40L","entrezGeneId":"959"},{"alias":"gp39","entrezGeneId":"959"},{"alias":"hCD40L","entrezGeneId":"959"},{"alias":"HIGM1","entrezGeneId":"959"},{"alias":"IGM","entrezGeneId":"959"},{"alias":"IMD3","entrezGeneId":"959"},{"alias":"T-BAM","entrezGeneId":"959"},{"alias":"TNFSF5","entrezGeneId":"959"},{"alias":"TRAP","entrezGeneId":"959"},{"alias":"CDW44","entrezGeneId":"960"},{"alias":"CSPG8","entrezGeneId":"960"},{"alias":"ECMR-III","entrezGeneId":"960"},{"alias":"HCELL","entrezGeneId":"960"},{"alias":"HUTCH-I","entrezGeneId":"960"},{"alias":"IN","entrezGeneId":"960"},{"alias":"LHR","entrezGeneId":"960"},{"alias":"MC56","entrezGeneId":"960"},{"alias":"MDU2","entrezGeneId":"960"},{"alias":"MDU3","entrezGeneId":"960"},{"alias":"MIC4","entrezGeneId":"960"},{"alias":"Pgp1","entrezGeneId":"960"},{"alias":"IAP","entrezGeneId":"961"},{"alias":"MER6","entrezGeneId":"961"},{"alias":"OA3","entrezGeneId":"961"},{"alias":"BCM1","entrezGeneId":"962"},{"alias":"BLAST","entrezGeneId":"962"},{"alias":"BLAST1","entrezGeneId":"962"},{"alias":"hCD48","entrezGeneId":"962"},{"alias":"mCD48","entrezGeneId":"962"},{"alias":"MEM-102","entrezGeneId":"962"},{"alias":"SLAMF2","entrezGeneId":"962"},{"alias":"MOX44","entrezGeneId":"963"},{"alias":"TSPAN25","entrezGeneId":"963"},{"alias":"ag3","entrezGeneId":"965"},{"alias":"LFA-3","entrezGeneId":"965"},{"alias":"LFA3","entrezGeneId":"965"},{"alias":"16.3A5","entrezGeneId":"966"},{"alias":"1F5","entrezGeneId":"966"},{"alias":"EJ16","entrezGeneId":"966"},{"alias":"EJ30","entrezGeneId":"966"},{"alias":"EL32","entrezGeneId":"966"},{"alias":"G344","entrezGeneId":"966"},{"alias":"HRF-20","entrezGeneId":"966"},{"alias":"HRF20","entrezGeneId":"966"},{"alias":"MAC-IP","entrezGeneId":"966"},{"alias":"MACIF","entrezGeneId":"966"},{"alias":"MEM43","entrezGeneId":"966"},{"alias":"MIC11","entrezGeneId":"966"},{"alias":"MIN1","entrezGeneId":"966"},{"alias":"MIN2","entrezGeneId":"966"},{"alias":"MIN3","entrezGeneId":"966"},{"alias":"MIRL","entrezGeneId":"966"},{"alias":"MSK21","entrezGeneId":"966"},{"alias":"p18-20","entrezGeneId":"966"},{"alias":"LAMP-3","entrezGeneId":"967"},{"alias":"ME491","entrezGeneId":"967"},{"alias":"MLA1","entrezGeneId":"967"},{"alias":"OMA81H","entrezGeneId":"967"},{"alias":"TSPAN30","entrezGeneId":"967"},{"alias":"GP110","entrezGeneId":"968"},{"alias":"LAMP4","entrezGeneId":"968"},{"alias":"SCARD1","entrezGeneId":"968"},{"alias":"AIM","entrezGeneId":"969"},{"alias":"BL-AC/P26","entrezGeneId":"969"},{"alias":"CLEC2C","entrezGeneId":"969"},{"alias":"EA1","entrezGeneId":"969"},{"alias":"GP32/28","entrezGeneId":"969"},{"alias":"MLR-3","entrezGeneId":"969"},{"alias":"CD27-L","entrezGeneId":"970"},{"alias":"CD27L","entrezGeneId":"970"},{"alias":"CD27LG","entrezGeneId":"970"},{"alias":"TNFSF7","entrezGeneId":"970"},{"alias":"TNLG8A","entrezGeneId":"970"},{"alias":"CD72b","entrezGeneId":"971"},{"alias":"LYB2","entrezGeneId":"971"},{"alias":"DHLAG","entrezGeneId":"972"},{"alias":"HLADG","entrezGeneId":"972"},{"alias":"Ia-GAMMA","entrezGeneId":"972"},{"alias":"II","entrezGeneId":"972"},{"alias":"IGA","entrezGeneId":"973"},{"alias":"MB-1","entrezGeneId":"973"},{"alias":"AGM6","entrezGeneId":"974"},{"alias":"B29","entrezGeneId":"974"},{"alias":"IGB","entrezGeneId":"974"},{"alias":"CVID6","entrezGeneId":"975"},{"alias":"S5.7","entrezGeneId":"975"},{"alias":"TAPA1","entrezGeneId":"975"},{"alias":"TSPAN28","entrezGeneId":"975"},{"alias":"CD97","entrezGeneId":"976"},{"alias":"TM7LN1","entrezGeneId":"976"},{"alias":"GP27","entrezGeneId":"977"},{"alias":"MER2","entrezGeneId":"977"},{"alias":"PETA-3","entrezGeneId":"977"},{"alias":"RAPH","entrezGeneId":"977"},{"alias":"SFA1","entrezGeneId":"977"},{"alias":"TSPAN24","entrezGeneId":"977"},{"alias":"CDD","entrezGeneId":"978"},{"alias":"CDA3","entrezGeneId":"981"},{"alias":"CDAIII","entrezGeneId":"981"},{"alias":"CDBII","entrezGeneId":"982"},{"alias":"CDTB","entrezGeneId":"982"},{"alias":"CDC2","entrezGeneId":"983"},{"alias":"CDC28A","entrezGeneId":"983"},{"alias":"P34CDC2","entrezGeneId":"983"},{"alias":"CDC2L1","entrezGeneId":"984"},{"alias":"CDK11","entrezGeneId":"984"},{"alias":"CDK11-p110","entrezGeneId":"984"},{"alias":"CDK11-p46","entrezGeneId":"984"},{"alias":"CDK11-p58","entrezGeneId":"984"},{"alias":"CLK-1","entrezGeneId":"984"},{"alias":"p58","entrezGeneId":"984"},{"alias":"p58CDC2L1","entrezGeneId":"984"},{"alias":"p58CLK-1","entrezGeneId":"984"},{"alias":"PITSLREA","entrezGeneId":"984"},{"alias":"PK58","entrezGeneId":"984"},{"alias":"BGL","entrezGeneId":"987"},{"alias":"CDC4L","entrezGeneId":"987"},{"alias":"CVID8","entrezGeneId":"987"},{"alias":"LAB300","entrezGeneId":"987"},{"alias":"LBA","entrezGeneId":"987"},{"alias":"CDC5","entrezGeneId":"988"},{"alias":"CDC5-LIKE","entrezGeneId":"988"},{"alias":"CEF1","entrezGeneId":"988"},{"alias":"dJ319D22.1","entrezGeneId":"988"},{"alias":"PCDC5RP","entrezGeneId":"988"},{"alias":"CDC10","entrezGeneId":"989"},{"alias":"CDC3","entrezGeneId":"989"},{"alias":"NBLA02942","entrezGeneId":"989"},{"alias":"SEPT7A","entrezGeneId":"989"},{"alias":"CDC18L","entrezGeneId":"990"},{"alias":"HsCDC18","entrezGeneId":"990"},{"alias":"HsCDC6","entrezGeneId":"990"},{"alias":"MGORS5","entrezGeneId":"990"},{"alias":"bA276H19.3","entrezGeneId":"991"},{"alias":"CDC20A","entrezGeneId":"991"},{"alias":"p55CDC","entrezGeneId":"991"},{"alias":"CDC25A2","entrezGeneId":"993"},{"alias":"CDC25","entrezGeneId":"995"},{"alias":"PPP1R60","entrezGeneId":"995"},{"alias":"ANAPC3","entrezGeneId":"996"},{"alias":"APC3","entrezGeneId":"996"},{"alias":"CDC27Hs","entrezGeneId":"996"},{"alias":"D0S1430E","entrezGeneId":"996"},{"alias":"D17S978E","entrezGeneId":"996"},{"alias":"H-NUC","entrezGeneId":"996"},{"alias":"HNUC","entrezGeneId":"996"},{"alias":"NUC2","entrezGeneId":"996"},{"alias":"E2-CDC34","entrezGeneId":"997"},{"alias":"UBC3","entrezGeneId":"997"},{"alias":"UBCH3","entrezGeneId":"997"},{"alias":"UBE2R1","entrezGeneId":"997"},{"alias":"CDC42Hs","entrezGeneId":"998"},{"alias":"G25K","entrezGeneId":"998"},{"alias":"TKS","entrezGeneId":"998"},{"alias":"Arc-1","entrezGeneId":"999"},{"alias":"BCDS1","entrezGeneId":"999"},{"alias":"CD324","entrezGeneId":"999"},{"alias":"CDHE","entrezGeneId":"999"},{"alias":"ECAD","entrezGeneId":"999"},{"alias":"LCAM","entrezGeneId":"999"},{"alias":"UVO","entrezGeneId":"999"},{"alias":"CD325","entrezGeneId":"1000"},{"alias":"CDHN","entrezGeneId":"1000"},{"alias":"CDw325","entrezGeneId":"1000"},{"alias":"NCAD","entrezGeneId":"1000"},{"alias":"CDHP","entrezGeneId":"1001"},{"alias":"HJMD","entrezGeneId":"1001"},{"alias":"PCAD","entrezGeneId":"1001"},{"alias":"CAD4","entrezGeneId":"1002"},{"alias":"R-CAD","entrezGeneId":"1002"},{"alias":"RCAD","entrezGeneId":"1002"},{"alias":"7B4","entrezGeneId":"1003"},{"alias":"CD144","entrezGeneId":"1003"},{"alias":"CAD6","entrezGeneId":"1004"},{"alias":"KCAD","entrezGeneId":"1004"},{"alias":"CDH7L1","entrezGeneId":"1005"},{"alias":"Nbla04261","entrezGeneId":"1006"},{"alias":"CAD11","entrezGeneId":"1009"},{"alias":"CDHOB","entrezGeneId":"1009"},{"alias":"OB","entrezGeneId":"1009"},{"alias":"OSF-4","entrezGeneId":"1009"},{"alias":"CDHB","entrezGeneId":"1010"},{"alias":"C41-CAD","entrezGeneId":"1011"},{"alias":"CDH12P","entrezGeneId":"1011"},{"alias":"CDHH","entrezGeneId":"1012"},{"alias":"P105","entrezGeneId":"1012"},{"alias":"CDH14","entrezGeneId":"1013"},{"alias":"CDH3","entrezGeneId":"1013"},{"alias":"CDHM","entrezGeneId":"1013"},{"alias":"MCAD","entrezGeneId":"1013"},{"alias":"MRD3","entrezGeneId":"1013"},{"alias":"CDH16","entrezGeneId":"1015"},{"alias":"HPT-1","entrezGeneId":"1015"},{"alias":"HPT1","entrezGeneId":"1015"},{"alias":"CDH14","entrezGeneId":"1016"},{"alias":"CDH14L","entrezGeneId":"1016"},{"alias":"CDH24","entrezGeneId":"1016"},{"alias":"CDKN2","entrezGeneId":"1017"},{"alias":"p33(CDK2)","entrezGeneId":"1017"},{"alias":"CMM3","entrezGeneId":"1019"},{"alias":"PSK-J3","entrezGeneId":"1019"},{"alias":"LIS7","entrezGeneId":"1020"},{"alias":"PSSALRE","entrezGeneId":"1020"},{"alias":"MCPH12","entrezGeneId":"1021"},{"alias":"PLSTIRE","entrezGeneId":"1021"},{"alias":"CAK","entrezGeneId":"1022"},{"alias":"CAK1","entrezGeneId":"1022"},{"alias":"CDKN7","entrezGeneId":"1022"},{"alias":"HCAK","entrezGeneId":"1022"},{"alias":"MO15","entrezGeneId":"1022"},{"alias":"p39MO15","entrezGeneId":"1022"},{"alias":"STK1","entrezGeneId":"1022"},{"alias":"K35","entrezGeneId":"1024"},{"alias":"C-2k","entrezGeneId":"1025"},{"alias":"CDC2L4","entrezGeneId":"1025"},{"alias":"CTK1","entrezGeneId":"1025"},{"alias":"PITALRE","entrezGeneId":"1025"},{"alias":"TAK","entrezGeneId":"1025"},{"alias":"CAP20","entrezGeneId":"1026"},{"alias":"CDKN1","entrezGeneId":"1026"},{"alias":"CIP1","entrezGeneId":"1026"},{"alias":"MDA-6","entrezGeneId":"1026"},{"alias":"P21","entrezGeneId":"1026"},{"alias":"p21CIP1","entrezGeneId":"1026"},{"alias":"SDI1","entrezGeneId":"1026"},{"alias":"WAF1","entrezGeneId":"1026"},{"alias":"CDKN4","entrezGeneId":"1027"},{"alias":"KIP1","entrezGeneId":"1027"},{"alias":"MEN1B","entrezGeneId":"1027"},{"alias":"MEN4","entrezGeneId":"1027"},{"alias":"P27KIP1","entrezGeneId":"1027"},{"alias":"BWCR","entrezGeneId":"1028"},{"alias":"BWS","entrezGeneId":"1028"},{"alias":"KIP2","entrezGeneId":"1028"},{"alias":"p57","entrezGeneId":"1028"},{"alias":"p57Kip2","entrezGeneId":"1028"},{"alias":"WBS","entrezGeneId":"1028"},{"alias":"ARF","entrezGeneId":"1029"},{"alias":"CDK4I","entrezGeneId":"1029"},{"alias":"CDKN2","entrezGeneId":"1029"},{"alias":"CMM2","entrezGeneId":"1029"},{"alias":"INK4","entrezGeneId":"1029"},{"alias":"INK4A","entrezGeneId":"1029"},{"alias":"MLM","entrezGeneId":"1029"},{"alias":"MTS-1","entrezGeneId":"1029"},{"alias":"MTS1","entrezGeneId":"1029"},{"alias":"P14","entrezGeneId":"1029"},{"alias":"P14ARF","entrezGeneId":"1029"},{"alias":"P16","entrezGeneId":"1029"},{"alias":"P16-INK4A","entrezGeneId":"1029"},{"alias":"P16INK4","entrezGeneId":"1029"},{"alias":"P16INK4A","entrezGeneId":"1029"},{"alias":"P19","entrezGeneId":"1029"},{"alias":"P19ARF","entrezGeneId":"1029"},{"alias":"TP16","entrezGeneId":"1029"},{"alias":"CDK4I","entrezGeneId":"1030"},{"alias":"INK4B","entrezGeneId":"1030"},{"alias":"MTS2","entrezGeneId":"1030"},{"alias":"P15","entrezGeneId":"1030"},{"alias":"p15INK4b","entrezGeneId":"1030"},{"alias":"TP15","entrezGeneId":"1030"},{"alias":"INK4C","entrezGeneId":"1031"},{"alias":"p18","entrezGeneId":"1031"},{"alias":"p18-INK4C","entrezGeneId":"1031"},{"alias":"INK4D","entrezGeneId":"1032"},{"alias":"p19","entrezGeneId":"1032"},{"alias":"p19-INK4D","entrezGeneId":"1032"},{"alias":"CDI1","entrezGeneId":"1033"},{"alias":"CIP2","entrezGeneId":"1033"},{"alias":"KAP","entrezGeneId":"1033"},{"alias":"KAP1","entrezGeneId":"1033"},{"alias":"CDO-I","entrezGeneId":"1036"},{"alias":"CDR","entrezGeneId":"1038"},{"alias":"CDR34","entrezGeneId":"1038"},{"alias":"CDR62A","entrezGeneId":"1038"},{"alias":"CDR62","entrezGeneId":"1039"},{"alias":"Yo","entrezGeneId":"1039"},{"alias":"CDS","entrezGeneId":"1040"},{"alias":"HTSS","entrezGeneId":"1041"},{"alias":"HTSS1","entrezGeneId":"1041"},{"alias":"HYPT2","entrezGeneId":"1041"},{"alias":"PSS","entrezGeneId":"1041"},{"alias":"PSS1","entrezGeneId":"1041"},{"alias":"S","entrezGeneId":"1041"},{"alias":"CDW52","entrezGeneId":"1043"},{"alias":"EDDM5","entrezGeneId":"1043"},{"alias":"CDX-3","entrezGeneId":"1045"},{"alias":"CDX2/AS","entrezGeneId":"1045"},{"alias":"CDX3","entrezGeneId":"1045"},{"alias":"CD66e","entrezGeneId":"1048"},{"alias":"CEA","entrezGeneId":"1048"},{"alias":"C/EBP-alpha","entrezGeneId":"1050"},{"alias":"CEBP","entrezGeneId":"1050"},{"alias":"C/EBP-beta","entrezGeneId":"1051"},{"alias":"IL6DBP","entrezGeneId":"1051"},{"alias":"NF-IL6","entrezGeneId":"1051"},{"alias":"TCF5","entrezGeneId":"1051"},{"alias":"C/EBP-delta","entrezGeneId":"1052"},{"alias":"CELF","entrezGeneId":"1052"},{"alias":"CRP3","entrezGeneId":"1052"},{"alias":"NF-IL6-beta","entrezGeneId":"1052"},{"alias":"C/EBP-epsilon","entrezGeneId":"1053"},{"alias":"CRP1","entrezGeneId":"1053"},{"alias":"GPE1BP","entrezGeneId":"1054"},{"alias":"IG/EBP-1","entrezGeneId":"1054"},{"alias":"CES","entrezGeneId":"1055"},{"alias":"BAL","entrezGeneId":"1056"},{"alias":"BSDL","entrezGeneId":"1056"},{"alias":"BSSL","entrezGeneId":"1056"},{"alias":"CEase","entrezGeneId":"1056"},{"alias":"CELL","entrezGeneId":"1056"},{"alias":"FAP","entrezGeneId":"1056"},{"alias":"FAPP","entrezGeneId":"1056"},{"alias":"LIPA","entrezGeneId":"1056"},{"alias":"MODY8","entrezGeneId":"1056"},{"alias":"CELL","entrezGeneId":"1057"},{"alias":"cell1","entrezGeneId":"1057"},{"alias":"cell2","entrezGeneId":"1057"},{"alias":"cell3","entrezGeneId":"1057"},{"alias":"CenH3","entrezGeneId":"1058"},{"alias":"CENP-A","entrezGeneId":"1058"},{"alias":"CENP-C","entrezGeneId":"1060"},{"alias":"CENPC1","entrezGeneId":"1060"},{"alias":"hcp-4","entrezGeneId":"1060"},{"alias":"MIF2","entrezGeneId":"1060"},{"alias":"CENPC","entrezGeneId":"1061"},{"alias":"CENPC1P1","entrezGeneId":"1061"},{"alias":"CENPC2","entrezGeneId":"1061"},{"alias":"CENP-E","entrezGeneId":"1062"},{"alias":"KIF10","entrezGeneId":"1062"},{"alias":"MCPH13","entrezGeneId":"1062"},{"alias":"PPP1R61","entrezGeneId":"1062"},{"alias":"CENF","entrezGeneId":"1063"},{"alias":"CILD31","entrezGeneId":"1063"},{"alias":"hcp-1","entrezGeneId":"1063"},{"alias":"PRO1779","entrezGeneId":"1063"},{"alias":"STROMS","entrezGeneId":"1063"},{"alias":"ACAT","entrezGeneId":"1066"},{"alias":"CE-1","entrezGeneId":"1066"},{"alias":"CEH","entrezGeneId":"1066"},{"alias":"CES2","entrezGeneId":"1066"},{"alias":"hCE-1","entrezGeneId":"1066"},{"alias":"HMSE","entrezGeneId":"1066"},{"alias":"HMSE1","entrezGeneId":"1066"},{"alias":"PCE-1","entrezGeneId":"1066"},{"alias":"REH","entrezGeneId":"1066"},{"alias":"SES1","entrezGeneId":"1066"},{"alias":"TGH","entrezGeneId":"1066"},{"alias":"CEN1","entrezGeneId":"1068"},{"alias":"CETN","entrezGeneId":"1068"},{"alias":"CALT","entrezGeneId":"1069"},{"alias":"CEN2","entrezGeneId":"1069"},{"alias":"CDC31","entrezGeneId":"1070"},{"alias":"CEN3","entrezGeneId":"1070"},{"alias":"BPIFF","entrezGeneId":"1071"},{"alias":"HDLCQ10","entrezGeneId":"1071"},{"alias":"CFL","entrezGeneId":"1072"},{"alias":"cofilin","entrezGeneId":"1072"},{"alias":"HEL-S-15","entrezGeneId":"1072"},{"alias":"NEM7","entrezGeneId":"1073"},{"alias":"CFLL1","entrezGeneId":"1074"},{"alias":"CFLP5","entrezGeneId":"1074"},{"alias":"CPPI","entrezGeneId":"1075"},{"alias":"DPP-I","entrezGeneId":"1075"},{"alias":"DPP1","entrezGeneId":"1075"},{"alias":"DPPI","entrezGeneId":"1075"},{"alias":"HMS","entrezGeneId":"1075"},{"alias":"JP","entrezGeneId":"1075"},{"alias":"JPD","entrezGeneId":"1075"},{"alias":"PALS","entrezGeneId":"1075"},{"alias":"PDON1","entrezGeneId":"1075"},{"alias":"PLS","entrezGeneId":"1075"},{"alias":"ABC35","entrezGeneId":"1080"},{"alias":"ABCC7","entrezGeneId":"1080"},{"alias":"CF","entrezGeneId":"1080"},{"alias":"CFTR/MRP","entrezGeneId":"1080"},{"alias":"dJ760C5.1","entrezGeneId":"1080"},{"alias":"MRP7","entrezGeneId":"1080"},{"alias":"TNR-CFTR","entrezGeneId":"1080"},{"alias":"CG-ALPHA","entrezGeneId":"1081"},{"alias":"FSHA","entrezGeneId":"1081"},{"alias":"GPHa","entrezGeneId":"1081"},{"alias":"GPHA1","entrezGeneId":"1081"},{"alias":"HCG","entrezGeneId":"1081"},{"alias":"LHA","entrezGeneId":"1081"},{"alias":"TSHA","entrezGeneId":"1081"},{"alias":"CGB","entrezGeneId":"1082"},{"alias":"CGB5","entrezGeneId":"1082"},{"alias":"CGB7","entrezGeneId":"1082"},{"alias":"CGB8","entrezGeneId":"1082"},{"alias":"hCGB","entrezGeneId":"1082"},{"alias":"CD66D","entrezGeneId":"1084"},{"alias":"CEA","entrezGeneId":"1084"},{"alias":"CGM1","entrezGeneId":"1084"},{"alias":"W264","entrezGeneId":"1084"},{"alias":"W282","entrezGeneId":"1084"},{"alias":"CEACAM26P","entrezGeneId":"1085"},{"alias":"CGM12","entrezGeneId":"1085"},{"alias":"CEACAM32P","entrezGeneId":"1086"},{"alias":"CGM18","entrezGeneId":"1086"},{"alias":"CGM2","entrezGeneId":"1087"},{"alias":"CD66b","entrezGeneId":"1088"},{"alias":"CD67","entrezGeneId":"1088"},{"alias":"CGM6","entrezGeneId":"1088"},{"alias":"NCA-95","entrezGeneId":"1088"},{"alias":"CGM7","entrezGeneId":"1089"},{"alias":"CGM7_HUMAN","entrezGeneId":"1089"},{"alias":"NCA","entrezGeneId":"1089"},{"alias":"CEACAM22P","entrezGeneId":"1090"},{"alias":"CGM8","entrezGeneId":"1090"},{"alias":"CEACAM23P","entrezGeneId":"1091"},{"alias":"CGM9","entrezGeneId":"1091"},{"alias":"CEACAM24P","entrezGeneId":"1092"},{"alias":"CGM10","entrezGeneId":"1092"},{"alias":"CEACAM25P","entrezGeneId":"1093"},{"alias":"CGM11","entrezGeneId":"1093"},{"alias":"CEACAM27P","entrezGeneId":"1094"},{"alias":"CGM13","entrezGeneId":"1094"},{"alias":"CEACAM28P","entrezGeneId":"1095"},{"alias":"CGM14","entrezGeneId":"1095"},{"alias":"CEACAM29P","entrezGeneId":"1096"},{"alias":"CGM15","entrezGeneId":"1096"},{"alias":"CEACAM30P","entrezGeneId":"1097"},{"alias":"CGM16","entrezGeneId":"1097"},{"alias":"CEACAM31P","entrezGeneId":"1098"},{"alias":"CGM17","entrezGeneId":"1098"},{"alias":"SLRR4A","entrezGeneId":"1101"},{"alias":"CHC1L","entrezGeneId":"1102"},{"alias":"RLG","entrezGeneId":"1102"},{"alias":"CHOACTASE","entrezGeneId":"1103"},{"alias":"CMS1A","entrezGeneId":"1103"},{"alias":"CMS1A2","entrezGeneId":"1103"},{"alias":"CMS6","entrezGeneId":"1103"},{"alias":"CHC1","entrezGeneId":"1104"},{"alias":"RCC1-I","entrezGeneId":"1104"},{"alias":"SNHG3-RCC1","entrezGeneId":"1104"},{"alias":"PILBOS","entrezGeneId":"1105"},{"alias":"EEOC","entrezGeneId":"1106"},{"alias":"Mi-2a","entrezGeneId":"1107"},{"alias":"Mi2-ALPHA","entrezGeneId":"1107"},{"alias":"ZFH","entrezGeneId":"1107"},{"alias":"CHD-4","entrezGeneId":"1108"},{"alias":"Mi-2b","entrezGeneId":"1108"},{"alias":"Mi2-BETA","entrezGeneId":"1108"},{"alias":"SIHIWES","entrezGeneId":"1108"},{"alias":"3-alpha-HSD","entrezGeneId":"1109"},{"alias":"C11","entrezGeneId":"1109"},{"alias":"CDR","entrezGeneId":"1109"},{"alias":"CHDR","entrezGeneId":"1109"},{"alias":"DD-4","entrezGeneId":"1109"},{"alias":"DD4","entrezGeneId":"1109"},{"alias":"HAKRA","entrezGeneId":"1109"},{"alias":"CHK1","entrezGeneId":"1111"},{"alias":"C14orf116","entrezGeneId":"1112"},{"alias":"CHES1","entrezGeneId":"1112"},{"alias":"PRO1635","entrezGeneId":"1112"},{"alias":"CGA","entrezGeneId":"1113"},{"alias":"SCG1","entrezGeneId":"1114"},{"alias":"ASRT7","entrezGeneId":"1116"},{"alias":"CGP-39","entrezGeneId":"1116"},{"alias":"GP-39","entrezGeneId":"1116"},{"alias":"GP39","entrezGeneId":"1116"},{"alias":"HC-gp39","entrezGeneId":"1116"},{"alias":"hCGP-39","entrezGeneId":"1116"},{"alias":"HCGP-3P","entrezGeneId":"1116"},{"alias":"YKL-40","entrezGeneId":"1116"},{"alias":"YKL40","entrezGeneId":"1116"},{"alias":"YYL-40","entrezGeneId":"1116"},{"alias":"CHIL2","entrezGeneId":"1117"},{"alias":"YKL-39","entrezGeneId":"1117"},{"alias":"YKL39","entrezGeneId":"1117"},{"alias":"CHI3","entrezGeneId":"1118"},{"alias":"CHIT","entrezGeneId":"1118"},{"alias":"CHITD","entrezGeneId":"1118"},{"alias":"CHK","entrezGeneId":"1119"},{"alias":"CK","entrezGeneId":"1119"},{"alias":"CKI","entrezGeneId":"1119"},{"alias":"EK","entrezGeneId":"1119"},{"alias":"CHETK","entrezGeneId":"1120"},{"alias":"CHKL","entrezGeneId":"1120"},{"alias":"CK","entrezGeneId":"1120"},{"alias":"CKB","entrezGeneId":"1120"},{"alias":"CKEKB","entrezGeneId":"1120"},{"alias":"EK","entrezGeneId":"1120"},{"alias":"EKB","entrezGeneId":"1120"},{"alias":"MDCMC","entrezGeneId":"1120"},{"alias":"DXS540","entrezGeneId":"1121"},{"alias":"GGTA","entrezGeneId":"1121"},{"alias":"HSD-32","entrezGeneId":"1121"},{"alias":"REP-1","entrezGeneId":"1121"},{"alias":"TCD","entrezGeneId":"1121"},{"alias":"REP2","entrezGeneId":"1122"},{"alias":"ARHGAP2","entrezGeneId":"1123"},{"alias":"CHN","entrezGeneId":"1123"},{"alias":"DURS2","entrezGeneId":"1123"},{"alias":"NC","entrezGeneId":"1123"},{"alias":"RHOGAP2","entrezGeneId":"1123"},{"alias":"ARHGAP3","entrezGeneId":"1124"},{"alias":"BCH","entrezGeneId":"1124"},{"alias":"CHN2-3","entrezGeneId":"1124"},{"alias":"RHOGAP3","entrezGeneId":"1124"},{"alias":"HM1","entrezGeneId":"1128"},{"alias":"M1","entrezGeneId":"1128"},{"alias":"M1R","entrezGeneId":"1128"},{"alias":"HM2","entrezGeneId":"1129"},{"alias":"CHS","entrezGeneId":"1130"},{"alias":"CHS1","entrezGeneId":"1130"},{"alias":"EGBRS","entrezGeneId":"1131"},{"alias":"HM3","entrezGeneId":"1131"},{"alias":"PBS","entrezGeneId":"1131"},{"alias":"HM4","entrezGeneId":"1132"},{"alias":"M4R","entrezGeneId":"1132"},{"alias":"HM5","entrezGeneId":"1133"},{"alias":"ACHRA","entrezGeneId":"1134"},{"alias":"ACHRD","entrezGeneId":"1134"},{"alias":"CHRNA","entrezGeneId":"1134"},{"alias":"CMS1A","entrezGeneId":"1134"},{"alias":"CMS1B","entrezGeneId":"1134"},{"alias":"CMS2A","entrezGeneId":"1134"},{"alias":"FCCMS","entrezGeneId":"1134"},{"alias":"SCCMS","entrezGeneId":"1134"},{"alias":"LNCR2","entrezGeneId":"1136"},{"alias":"NACHRA3","entrezGeneId":"1136"},{"alias":"PAOD2","entrezGeneId":"1136"},{"alias":"BFNC","entrezGeneId":"1137"},{"alias":"EBN","entrezGeneId":"1137"},{"alias":"EBN1","entrezGeneId":"1137"},{"alias":"NACHR","entrezGeneId":"1137"},{"alias":"NACHRA4","entrezGeneId":"1137"},{"alias":"NACRA4","entrezGeneId":"1137"},{"alias":"LNCR2","entrezGeneId":"1138"},{"alias":"CHRNA7-2","entrezGeneId":"1139"},{"alias":"NACHRA7","entrezGeneId":"1139"},{"alias":"ACHRB","entrezGeneId":"1140"},{"alias":"CHRNB","entrezGeneId":"1140"},{"alias":"CMS1D","entrezGeneId":"1140"},{"alias":"CMS2A","entrezGeneId":"1140"},{"alias":"CMS2C","entrezGeneId":"1140"},{"alias":"SCCMS","entrezGeneId":"1140"},{"alias":"EFNL3","entrezGeneId":"1141"},{"alias":"nAChRB2","entrezGeneId":"1141"},{"alias":"ACHRD","entrezGeneId":"1144"},{"alias":"CMS2A","entrezGeneId":"1144"},{"alias":"CMS3A","entrezGeneId":"1144"},{"alias":"CMS3B","entrezGeneId":"1144"},{"alias":"CMS3C","entrezGeneId":"1144"},{"alias":"FCCMS","entrezGeneId":"1144"},{"alias":"SCCMS","entrezGeneId":"1144"},{"alias":"ACHRE","entrezGeneId":"1145"},{"alias":"CMS1D","entrezGeneId":"1145"},{"alias":"CMS1E","entrezGeneId":"1145"},{"alias":"CMS2A","entrezGeneId":"1145"},{"alias":"CMS4A","entrezGeneId":"1145"},{"alias":"CMS4B","entrezGeneId":"1145"},{"alias":"CMS4C","entrezGeneId":"1145"},{"alias":"FCCMS","entrezGeneId":"1145"},{"alias":"SCCMS","entrezGeneId":"1145"},{"alias":"ACHRG","entrezGeneId":"1146"},{"alias":"IKBKA","entrezGeneId":"1147"},{"alias":"IKK-alpha","entrezGeneId":"1147"},{"alias":"IKK1","entrezGeneId":"1147"},{"alias":"IKKA","entrezGeneId":"1147"},{"alias":"NFKBIKA","entrezGeneId":"1147"},{"alias":"TCF16","entrezGeneId":"1147"},{"alias":"CIDE-A","entrezGeneId":"1149"},{"alias":"B-CK","entrezGeneId":"1152"},{"alias":"BCK","entrezGeneId":"1152"},{"alias":"CKBB","entrezGeneId":"1152"},{"alias":"CPK-B","entrezGeneId":"1152"},{"alias":"HEL-211","entrezGeneId":"1152"},{"alias":"HEL-S-29","entrezGeneId":"1152"},{"alias":"CIRP","entrezGeneId":"1153"},{"alias":"BACTS2","entrezGeneId":"1154"},{"alias":"CIS","entrezGeneId":"1154"},{"alias":"CIS-1","entrezGeneId":"1154"},{"alias":"G18","entrezGeneId":"1154"},{"alias":"SOCS","entrezGeneId":"1154"},{"alias":"CG22","entrezGeneId":"1155"},{"alias":"CKAP1","entrezGeneId":"1155"},{"alias":"CKAPI","entrezGeneId":"1155"},{"alias":"CKMM","entrezGeneId":"1158"},{"alias":"CPK-M","entrezGeneId":"1158"},{"alias":"M-CK","entrezGeneId":"1158"},{"alias":"CKMT","entrezGeneId":"1159"},{"alias":"CKMT1","entrezGeneId":"1159"},{"alias":"UMTCK","entrezGeneId":"1159"},{"alias":"SMTCK","entrezGeneId":"1160"},{"alias":"CKN1","entrezGeneId":"1161"},{"alias":"CSA","entrezGeneId":"1161"},{"alias":"UVSS2","entrezGeneId":"1161"},{"alias":"CKS1","entrezGeneId":"1163"},{"alias":"ckshs1","entrezGeneId":"1163"},{"alias":"PNAS-16","entrezGeneId":"1163"},{"alias":"PNAS-18","entrezGeneId":"1163"},{"alias":"CKSHS2","entrezGeneId":"1164"},{"alias":"CPD1","entrezGeneId":"1167"},{"alias":"SCAR6","entrezGeneId":"1167"},{"alias":"AP50","entrezGeneId":"1173"},{"alias":"CLAPM1","entrezGeneId":"1173"},{"alias":"mu2","entrezGeneId":"1173"},{"alias":"AP19","entrezGeneId":"1174"},{"alias":"CLAPS1","entrezGeneId":"1174"},{"alias":"EKV3","entrezGeneId":"1174"},{"alias":"MEDNIK","entrezGeneId":"1174"},{"alias":"SIGMA1A","entrezGeneId":"1174"},{"alias":"AP17","entrezGeneId":"1175"},{"alias":"CLAPS2","entrezGeneId":"1175"},{"alias":"FBH3","entrezGeneId":"1175"},{"alias":"FBHOk","entrezGeneId":"1175"},{"alias":"HHC3","entrezGeneId":"1175"},{"alias":"CLAPS3","entrezGeneId":"1176"},{"alias":"Sigma3A","entrezGeneId":"1176"},{"alias":"Gal-10","entrezGeneId":"1178"},{"alias":"GAL10","entrezGeneId":"1178"},{"alias":"LGALS10","entrezGeneId":"1178"},{"alias":"LGALS10A","entrezGeneId":"1178"},{"alias":"LPPL_HUMAN","entrezGeneId":"1178"},{"alias":"CACC","entrezGeneId":"1179"},{"alias":"CaCC-1","entrezGeneId":"1179"},{"alias":"CACC1","entrezGeneId":"1179"},{"alias":"CLCRG1","entrezGeneId":"1179"},{"alias":"GOB5","entrezGeneId":"1179"},{"alias":"hCaCC-1","entrezGeneId":"1179"},{"alias":"hCLCA1","entrezGeneId":"1179"},{"alias":"CLC1","entrezGeneId":"1180"},{"alias":"CIC-2","entrezGeneId":"1181"},{"alias":"clC-2","entrezGeneId":"1181"},{"alias":"CLC2","entrezGeneId":"1181"},{"alias":"ECA2","entrezGeneId":"1181"},{"alias":"ECA3","entrezGeneId":"1181"},{"alias":"EGI11","entrezGeneId":"1181"},{"alias":"EGI3","entrezGeneId":"1181"},{"alias":"EGMA","entrezGeneId":"1181"},{"alias":"EJM6","entrezGeneId":"1181"},{"alias":"EJM8","entrezGeneId":"1181"},{"alias":"LKPAT","entrezGeneId":"1181"},{"alias":"ClC-3","entrezGeneId":"1182"},{"alias":"CLC3","entrezGeneId":"1182"},{"alias":"ClC-4","entrezGeneId":"1183"},{"alias":"ClC-4A","entrezGeneId":"1183"},{"alias":"CLC4","entrezGeneId":"1183"},{"alias":"MRX15","entrezGeneId":"1183"},{"alias":"MRX49","entrezGeneId":"1183"},{"alias":"ClC-5","entrezGeneId":"1184"},{"alias":"CLC5","entrezGeneId":"1184"},{"alias":"CLCK2","entrezGeneId":"1184"},{"alias":"DENTS","entrezGeneId":"1184"},{"alias":"hCIC-K2","entrezGeneId":"1184"},{"alias":"NPHL1","entrezGeneId":"1184"},{"alias":"NPHL2","entrezGeneId":"1184"},{"alias":"XLRH","entrezGeneId":"1184"},{"alias":"XRN","entrezGeneId":"1184"},{"alias":"CLC-6","entrezGeneId":"1185"},{"alias":"CLC-7","entrezGeneId":"1186"},{"alias":"CLC7","entrezGeneId":"1186"},{"alias":"OPTA2","entrezGeneId":"1186"},{"alias":"OPTB4","entrezGeneId":"1186"},{"alias":"PPP1R63","entrezGeneId":"1186"},{"alias":"ClC-K1","entrezGeneId":"1187"},{"alias":"CLCK1","entrezGeneId":"1187"},{"alias":"hClC-Ka","entrezGeneId":"1187"},{"alias":"ClC-K2","entrezGeneId":"1188"},{"alias":"ClC-Kb","entrezGeneId":"1188"},{"alias":"CLCKB","entrezGeneId":"1188"},{"alias":"AAG4","entrezGeneId":"1191"},{"alias":"APO-J","entrezGeneId":"1191"},{"alias":"APOJ","entrezGeneId":"1191"},{"alias":"CLI","entrezGeneId":"1191"},{"alias":"CLU1","entrezGeneId":"1191"},{"alias":"CLU2","entrezGeneId":"1191"},{"alias":"KUB1","entrezGeneId":"1191"},{"alias":"NA1/NA2","entrezGeneId":"1191"},{"alias":"SGP-2","entrezGeneId":"1191"},{"alias":"SGP2","entrezGeneId":"1191"},{"alias":"SP-40","entrezGeneId":"1191"},{"alias":"TRPM-2","entrezGeneId":"1191"},{"alias":"TRPM2","entrezGeneId":"1191"},{"alias":"CL1C1","entrezGeneId":"1192"},{"alias":"G6","entrezGeneId":"1192"},{"alias":"NCC27","entrezGeneId":"1192"},{"alias":"CLIC2b","entrezGeneId":"1193"},{"alias":"MRXS32","entrezGeneId":"1193"},{"alias":"XAP121","entrezGeneId":"1193"},{"alias":"CLK","entrezGeneId":"1195"},{"alias":"CLK/STY","entrezGeneId":"1195"},{"alias":"STY","entrezGeneId":"1195"},{"alias":"CLK2P","entrezGeneId":"1197"},{"alias":"PHCLK3","entrezGeneId":"1198"},{"alias":"PHCLK3/152","entrezGeneId":"1198"},{"alias":"CLN2","entrezGeneId":"1200"},{"alias":"GIG1","entrezGeneId":"1200"},{"alias":"LPIC","entrezGeneId":"1200"},{"alias":"SCAR7","entrezGeneId":"1200"},{"alias":"TPP-1","entrezGeneId":"1200"},{"alias":"BTN1","entrezGeneId":"1201"},{"alias":"BTS","entrezGeneId":"1201"},{"alias":"JNCL","entrezGeneId":"1201"},{"alias":"NCL","entrezGeneId":"1203"},{"alias":"CLNS1B","entrezGeneId":"1204"},{"alias":"ICln","entrezGeneId":"1204"},{"alias":"CLCI","entrezGeneId":"1207"},{"alias":"CLNS1B","entrezGeneId":"1207"},{"alias":"ICln","entrezGeneId":"1207"},{"alias":"LCA","entrezGeneId":"1211"},{"alias":"LCB","entrezGeneId":"1212"},{"alias":"CHC","entrezGeneId":"1213"},{"alias":"CHC17","entrezGeneId":"1213"},{"alias":"CLH-17","entrezGeneId":"1213"},{"alias":"CLTCL2","entrezGeneId":"1213"},{"alias":"Hc","entrezGeneId":"1213"},{"alias":"MRD56","entrezGeneId":"1213"},{"alias":"chymase","entrezGeneId":"1215"},{"alias":"CYH","entrezGeneId":"1215"},{"alias":"MCT1","entrezGeneId":"1215"},{"alias":"CMPD1","entrezGeneId":"1218"},{"alias":"FDC","entrezGeneId":"1218"},{"alias":"CD191","entrezGeneId":"1230"},{"alias":"CKR-1","entrezGeneId":"1230"},{"alias":"CKR1","entrezGeneId":"1230"},{"alias":"CMKBR1","entrezGeneId":"1230"},{"alias":"HM145","entrezGeneId":"1230"},{"alias":"MIP1aR","entrezGeneId":"1230"},{"alias":"SCYAR1","entrezGeneId":"1230"},{"alias":"CC-CKR-3","entrezGeneId":"1232"},{"alias":"CD193","entrezGeneId":"1232"},{"alias":"CKR3","entrezGeneId":"1232"},{"alias":"CMKBR3","entrezGeneId":"1232"},{"alias":"CC-CKR-4","entrezGeneId":"1233"},{"alias":"CD194","entrezGeneId":"1233"},{"alias":"ChemR13","entrezGeneId":"1233"},{"alias":"CKR4","entrezGeneId":"1233"},{"alias":"CMKBR4","entrezGeneId":"1233"},{"alias":"HGCN:14099","entrezGeneId":"1233"},{"alias":"K5-5","entrezGeneId":"1233"},{"alias":"CC-CKR-5","entrezGeneId":"1234"},{"alias":"CCCKR5","entrezGeneId":"1234"},{"alias":"CCR-5","entrezGeneId":"1234"},{"alias":"CD195","entrezGeneId":"1234"},{"alias":"CKR-5","entrezGeneId":"1234"},{"alias":"CKR5","entrezGeneId":"1234"},{"alias":"CMKBR5","entrezGeneId":"1234"},{"alias":"IDDM22","entrezGeneId":"1234"},{"alias":"BN-1","entrezGeneId":"1235"},{"alias":"C-C CKR-6","entrezGeneId":"1235"},{"alias":"CC-CKR-6","entrezGeneId":"1235"},{"alias":"CCR-6","entrezGeneId":"1235"},{"alias":"CD196","entrezGeneId":"1235"},{"alias":"CKR-L3","entrezGeneId":"1235"},{"alias":"CKRL3","entrezGeneId":"1235"},{"alias":"CMKBR6","entrezGeneId":"1235"},{"alias":"DCR2","entrezGeneId":"1235"},{"alias":"DRY6","entrezGeneId":"1235"},{"alias":"GPR29","entrezGeneId":"1235"},{"alias":"GPRCY4","entrezGeneId":"1235"},{"alias":"STRL22","entrezGeneId":"1235"},{"alias":"BLR2","entrezGeneId":"1236"},{"alias":"CC-CKR-7","entrezGeneId":"1236"},{"alias":"CCR-7","entrezGeneId":"1236"},{"alias":"CD197","entrezGeneId":"1236"},{"alias":"CDw197","entrezGeneId":"1236"},{"alias":"CMKBR7","entrezGeneId":"1236"},{"alias":"EBI1","entrezGeneId":"1236"},{"alias":"CC-CKR-8","entrezGeneId":"1237"},{"alias":"CCR-8","entrezGeneId":"1237"},{"alias":"CDw198","entrezGeneId":"1237"},{"alias":"CKRL1","entrezGeneId":"1237"},{"alias":"CMKBR8","entrezGeneId":"1237"},{"alias":"CMKBRL2","entrezGeneId":"1237"},{"alias":"CY6","entrezGeneId":"1237"},{"alias":"GPRCY6","entrezGeneId":"1237"},{"alias":"TER1","entrezGeneId":"1237"},{"alias":"CCBP2","entrezGeneId":"1238"},{"alias":"CCR10","entrezGeneId":"1238"},{"alias":"CCR9","entrezGeneId":"1238"},{"alias":"CMKBR9","entrezGeneId":"1238"},{"alias":"D6","entrezGeneId":"1238"},{"alias":"hD6","entrezGeneId":"1238"},{"alias":"CHEMERINR","entrezGeneId":"1240"},{"alias":"ChemR23","entrezGeneId":"1240"},{"alias":"DEZ","entrezGeneId":"1240"},{"alias":"RVER1","entrezGeneId":"1240"},{"alias":"BLT1","entrezGeneId":"1241"},{"alias":"BLTR","entrezGeneId":"1241"},{"alias":"CMKRL1","entrezGeneId":"1241"},{"alias":"GPR16","entrezGeneId":"1241"},{"alias":"LTB4R1","entrezGeneId":"1241"},{"alias":"LTBR1","entrezGeneId":"1241"},{"alias":"P2RY7","entrezGeneId":"1241"},{"alias":"P2Y7","entrezGeneId":"1241"},{"alias":"CMM1","entrezGeneId":"1243"},{"alias":"DNS","entrezGeneId":"1243"},{"alias":"FAMMM","entrezGeneId":"1243"},{"alias":"MLM","entrezGeneId":"1243"},{"alias":"ABC30","entrezGeneId":"1244"},{"alias":"CMOAT","entrezGeneId":"1244"},{"alias":"cMRP","entrezGeneId":"1244"},{"alias":"DJS","entrezGeneId":"1244"},{"alias":"MRP2","entrezGeneId":"1244"},{"alias":"CNC","entrezGeneId":"1257"},{"alias":"CNCG2","entrezGeneId":"1258"},{"alias":"CNCG3L","entrezGeneId":"1258"},{"alias":"CNCG4","entrezGeneId":"1258"},{"alias":"CNG4","entrezGeneId":"1258"},{"alias":"CNGB1B","entrezGeneId":"1258"},{"alias":"GAR1","entrezGeneId":"1258"},{"alias":"GARP","entrezGeneId":"1258"},{"alias":"GARP2","entrezGeneId":"1258"},{"alias":"RCNC2","entrezGeneId":"1258"},{"alias":"RCNCb","entrezGeneId":"1258"},{"alias":"RCNCbeta","entrezGeneId":"1258"},{"alias":"RP45","entrezGeneId":"1258"},{"alias":"CNCG","entrezGeneId":"1259"},{"alias":"CNCG1","entrezGeneId":"1259"},{"alias":"CNG-1","entrezGeneId":"1259"},{"alias":"CNG1","entrezGeneId":"1259"},{"alias":"RCNC1","entrezGeneId":"1259"},{"alias":"RCNCa","entrezGeneId":"1259"},{"alias":"RCNCalpha","entrezGeneId":"1259"},{"alias":"RP49","entrezGeneId":"1259"},{"alias":"CNCA","entrezGeneId":"1260"},{"alias":"CNCA1","entrezGeneId":"1260"},{"alias":"CNG2","entrezGeneId":"1260"},{"alias":"OCNC1","entrezGeneId":"1260"},{"alias":"OCNCa","entrezGeneId":"1260"},{"alias":"OCNCALPHA","entrezGeneId":"1260"},{"alias":"ACHM2","entrezGeneId":"1261"},{"alias":"CCNC1","entrezGeneId":"1261"},{"alias":"CCNCa","entrezGeneId":"1261"},{"alias":"CCNCalpha","entrezGeneId":"1261"},{"alias":"CNCG3","entrezGeneId":"1261"},{"alias":"CNG3","entrezGeneId":"1261"},{"alias":"CNCA2","entrezGeneId":"1262"},{"alias":"CNG-4","entrezGeneId":"1262"},{"alias":"CNG4","entrezGeneId":"1262"},{"alias":"CNG5","entrezGeneId":"1262"},{"alias":"CNGB2","entrezGeneId":"1262"},{"alias":"OCNC2","entrezGeneId":"1262"},{"alias":"OCNCb","entrezGeneId":"1262"},{"alias":"OCNCBETA","entrezGeneId":"1262"},{"alias":"CNK","entrezGeneId":"1263"},{"alias":"FNK","entrezGeneId":"1263"},{"alias":"PLK-3","entrezGeneId":"1263"},{"alias":"PRK","entrezGeneId":"1263"},{"alias":"HEL-S-14","entrezGeneId":"1264"},{"alias":"Sm-Calp","entrezGeneId":"1264"},{"alias":"SMCC","entrezGeneId":"1264"},{"alias":"CNP1","entrezGeneId":"1267"},{"alias":"CANN6","entrezGeneId":"1268"},{"alias":"CB-R","entrezGeneId":"1268"},{"alias":"CB1","entrezGeneId":"1268"},{"alias":"CB1A","entrezGeneId":"1268"},{"alias":"CB1K5","entrezGeneId":"1268"},{"alias":"CB1R","entrezGeneId":"1268"},{"alias":"CNR","entrezGeneId":"1268"},{"alias":"CB-2","entrezGeneId":"1269"},{"alias":"CB2","entrezGeneId":"1269"},{"alias":"CX5","entrezGeneId":"1269"},{"alias":"HCNTF","entrezGeneId":"1270"},{"alias":"F3","entrezGeneId":"1272"},{"alias":"GP135","entrezGeneId":"1272"},{"alias":"MYPCN","entrezGeneId":"1272"},{"alias":"CORDX2","entrezGeneId":"1275"},{"alias":"EDSARTH1","entrezGeneId":"1277"},{"alias":"EDSC","entrezGeneId":"1277"},{"alias":"OI1","entrezGeneId":"1277"},{"alias":"OI2","entrezGeneId":"1277"},{"alias":"OI3","entrezGeneId":"1277"},{"alias":"OI4","entrezGeneId":"1277"},{"alias":"EDSARTH2","entrezGeneId":"1278"},{"alias":"EDSCV","entrezGeneId":"1278"},{"alias":"OI4","entrezGeneId":"1278"},{"alias":"COLR","entrezGeneId":"1279"},{"alias":"ANFH","entrezGeneId":"1280"},{"alias":"AOM","entrezGeneId":"1280"},{"alias":"COL11A3","entrezGeneId":"1280"},{"alias":"SEDC","entrezGeneId":"1280"},{"alias":"STL1","entrezGeneId":"1280"},{"alias":"EDS4A","entrezGeneId":"1281"},{"alias":"EDSVASC","entrezGeneId":"1281"},{"alias":"BSVD","entrezGeneId":"1282"},{"alias":"RATOR","entrezGeneId":"1282"},{"alias":"ICH","entrezGeneId":"1284"},{"alias":"POREN2","entrezGeneId":"1284"},{"alias":"CA44","entrezGeneId":"1286"},{"alias":"ASLN","entrezGeneId":"1287"},{"alias":"ATS","entrezGeneId":"1287"},{"alias":"CA54","entrezGeneId":"1287"},{"alias":"CXDELq22.3","entrezGeneId":"1288"},{"alias":"DELXq22.3","entrezGeneId":"1288"},{"alias":"DFNX6","entrezGeneId":"1288"},{"alias":"EDSC","entrezGeneId":"1289"},{"alias":"EDSCL1","entrezGeneId":"1289"},{"alias":"EDSC","entrezGeneId":"1290"},{"alias":"EDSCL2","entrezGeneId":"1290"},{"alias":"BTHLM1","entrezGeneId":"1291"},{"alias":"OPLL","entrezGeneId":"1291"},{"alias":"UCHMD1","entrezGeneId":"1291"},{"alias":"BTHLM1","entrezGeneId":"1292"},{"alias":"PP3610","entrezGeneId":"1292"},{"alias":"UCMD1","entrezGeneId":"1292"},{"alias":"BTHLM1","entrezGeneId":"1293"},{"alias":"DYT27","entrezGeneId":"1293"},{"alias":"UCMD1","entrezGeneId":"1293"},{"alias":"EBD1","entrezGeneId":"1294"},{"alias":"EBDCT","entrezGeneId":"1294"},{"alias":"EBR1","entrezGeneId":"1294"},{"alias":"NDNC8","entrezGeneId":"1294"},{"alias":"C3orf7","entrezGeneId":"1295"},{"alias":"FECD","entrezGeneId":"1296"},{"alias":"FECD1","entrezGeneId":"1296"},{"alias":"PPCD","entrezGeneId":"1296"},{"alias":"PPCD2","entrezGeneId":"1296"},{"alias":"DJ149L1.1.2","entrezGeneId":"1297"},{"alias":"EDM6","entrezGeneId":"1297"},{"alias":"MED","entrezGeneId":"1297"},{"alias":"STL4","entrezGeneId":"1297"},{"alias":"DJ39G22.4","entrezGeneId":"1298"},{"alias":"EDM2","entrezGeneId":"1298"},{"alias":"MED","entrezGeneId":"1298"},{"alias":"STL5","entrezGeneId":"1298"},{"alias":"DJ885L7.4.1","entrezGeneId":"1299"},{"alias":"EDM3","entrezGeneId":"1299"},{"alias":"IDD","entrezGeneId":"1299"},{"alias":"MED","entrezGeneId":"1299"},{"alias":"CO11A1","entrezGeneId":"1301"},{"alias":"COLL6","entrezGeneId":"1301"},{"alias":"STL2","entrezGeneId":"1301"},{"alias":"DFNA13","entrezGeneId":"1302"},{"alias":"DFNB53","entrezGeneId":"1302"},{"alias":"FBCG2","entrezGeneId":"1302"},{"alias":"HKE5","entrezGeneId":"1302"},{"alias":"OSMEDA","entrezGeneId":"1302"},{"alias":"OSMEDB","entrezGeneId":"1302"},{"alias":"PARP","entrezGeneId":"1302"},{"alias":"STL3","entrezGeneId":"1302"},{"alias":"BA209D8.1","entrezGeneId":"1303"},{"alias":"BTHLM2","entrezGeneId":"1303"},{"alias":"COL12A1L","entrezGeneId":"1303"},{"alias":"DJ234P15.1","entrezGeneId":"1303"},{"alias":"UCMD2","entrezGeneId":"1303"},{"alias":"CMS19","entrezGeneId":"1305"},{"alias":"COLXIIIA1","entrezGeneId":"1305"},{"alias":"447AA","entrezGeneId":"1307"},{"alias":"FP1572","entrezGeneId":"1307"},{"alias":"BA16H23.2","entrezGeneId":"1308"},{"alias":"BP180","entrezGeneId":"1308"},{"alias":"BPA-2","entrezGeneId":"1308"},{"alias":"BPAG2","entrezGeneId":"1308"},{"alias":"ERED","entrezGeneId":"1308"},{"alias":"LAD-1","entrezGeneId":"1308"},{"alias":"COL9A1L","entrezGeneId":"1310"},{"alias":"D6S228E","entrezGeneId":"1310"},{"alias":"EDM1","entrezGeneId":"1311"},{"alias":"EPD1","entrezGeneId":"1311"},{"alias":"MED","entrezGeneId":"1311"},{"alias":"PSACH","entrezGeneId":"1311"},{"alias":"THBS5","entrezGeneId":"1311"},{"alias":"TSP5","entrezGeneId":"1311"},{"alias":"HEL-S-98n","entrezGeneId":"1312"},{"alias":"AILJK","entrezGeneId":"1314"},{"alias":"HEP-COP","entrezGeneId":"1314"},{"alias":"COPB","entrezGeneId":"1315"},{"alias":"BCD1","entrezGeneId":"1316"},{"alias":"CBA1","entrezGeneId":"1316"},{"alias":"COPEB","entrezGeneId":"1316"},{"alias":"CPBP","entrezGeneId":"1316"},{"alias":"GBF","entrezGeneId":"1316"},{"alias":"PAC1","entrezGeneId":"1316"},{"alias":"ST12","entrezGeneId":"1316"},{"alias":"ZF9","entrezGeneId":"1316"},{"alias":"COPT1","entrezGeneId":"1317"},{"alias":"CTR1","entrezGeneId":"1317"},{"alias":"COPT2","entrezGeneId":"1318"},{"alias":"CTR2","entrezGeneId":"1318"},{"alias":"hCTR2","entrezGeneId":"1318"},{"alias":"CORD","entrezGeneId":"1319"},{"alias":"CRD1","entrezGeneId":"1319"},{"alias":"CST-14","entrezGeneId":"1325"},{"alias":"CST-17","entrezGeneId":"1325"},{"alias":"CST-29","entrezGeneId":"1325"},{"alias":"AURA2","entrezGeneId":"1326"},{"alias":"c-COT","entrezGeneId":"1326"},{"alias":"COT","entrezGeneId":"1326"},{"alias":"EST","entrezGeneId":"1326"},{"alias":"ESTF","entrezGeneId":"1326"},{"alias":"MEKK8","entrezGeneId":"1326"},{"alias":"Tpl-2","entrezGeneId":"1326"},{"alias":"TPL2","entrezGeneId":"1326"},{"alias":"COX IV-1","entrezGeneId":"1327"},{"alias":"COX4","entrezGeneId":"1327"},{"alias":"COX4-1","entrezGeneId":"1327"},{"alias":"COXIV","entrezGeneId":"1327"},{"alias":"COXIV-1","entrezGeneId":"1327"},{"alias":"COXVB","entrezGeneId":"1329"},{"alias":"COX5BL1","entrezGeneId":"1330"},{"alias":"COX5BL2","entrezGeneId":"1331"},{"alias":"COX5BL3","entrezGeneId":"1332"},{"alias":"COX5BL4","entrezGeneId":"1333"},{"alias":"COX5BL7","entrezGeneId":"1336"},{"alias":"CMTRID","entrezGeneId":"1337"},{"alias":"COX6A","entrezGeneId":"1337"},{"alias":"COX6AL","entrezGeneId":"1337"},{"alias":"COX6A1P","entrezGeneId":"1338"},{"alias":"COX6AH","entrezGeneId":"1339"},{"alias":"COXVIAH","entrezGeneId":"1339"},{"alias":"COX6B","entrezGeneId":"1340"},{"alias":"COXG","entrezGeneId":"1340"},{"alias":"COXVIb1","entrezGeneId":"1340"},{"alias":"COX6BP-2","entrezGeneId":"1342"},{"alias":"COX6BP2","entrezGeneId":"1342"},{"alias":"COX6BP-3","entrezGeneId":"1343"},{"alias":"COX6BP3","entrezGeneId":"1343"},{"alias":"COX7A","entrezGeneId":"1346"},{"alias":"COX7AH","entrezGeneId":"1346"},{"alias":"COX7AM","entrezGeneId":"1346"},{"alias":"COX7AL","entrezGeneId":"1347"},{"alias":"COX7AL1","entrezGeneId":"1347"},{"alias":"COXVIIa-L","entrezGeneId":"1347"},{"alias":"COXVIIAL","entrezGeneId":"1347"},{"alias":"VIIAL","entrezGeneId":"1347"},{"alias":"COX7A3","entrezGeneId":"1348"},{"alias":"COX7AL","entrezGeneId":"1348"},{"alias":"COX7AL2","entrezGeneId":"1348"},{"alias":"COX7AP2","entrezGeneId":"1348"},{"alias":"APLCC","entrezGeneId":"1349"},{"alias":"LSDMCA2","entrezGeneId":"1349"},{"alias":"COX","entrezGeneId":"1351"},{"alias":"COX8","entrezGeneId":"1351"},{"alias":"COX8-2","entrezGeneId":"1351"},{"alias":"COX8L","entrezGeneId":"1351"},{"alias":"VIII","entrezGeneId":"1351"},{"alias":"VIII-L","entrezGeneId":"1351"},{"alias":"COX11P","entrezGeneId":"1353"},{"alias":"CEMCOX2","entrezGeneId":"1355"},{"alias":"CP-2","entrezGeneId":"1356"},{"alias":"CPA","entrezGeneId":"1357"},{"alias":"MC-CPA","entrezGeneId":"1359"},{"alias":"CPB","entrezGeneId":"1360"},{"alias":"PASP","entrezGeneId":"1360"},{"alias":"PCPB","entrezGeneId":"1360"},{"alias":"CPU","entrezGeneId":"1361"},{"alias":"PCPB","entrezGeneId":"1361"},{"alias":"TAFI","entrezGeneId":"1361"},{"alias":"GP180","entrezGeneId":"1362"},{"alias":"CPH","entrezGeneId":"1363"},{"alias":"CPE-R","entrezGeneId":"1364"},{"alias":"CPER","entrezGeneId":"1364"},{"alias":"CPETR","entrezGeneId":"1364"},{"alias":"CPETR1","entrezGeneId":"1364"},{"alias":"hCPE-R","entrezGeneId":"1364"},{"alias":"WBSCR8","entrezGeneId":"1364"},{"alias":"C7orf1","entrezGeneId":"1365"},{"alias":"CPE-R2","entrezGeneId":"1365"},{"alias":"CPETR2","entrezGeneId":"1365"},{"alias":"HRVP1","entrezGeneId":"1365"},{"alias":"RVP1","entrezGeneId":"1365"},{"alias":"CEPTRL2","entrezGeneId":"1366"},{"alias":"claudin-1","entrezGeneId":"1366"},{"alias":"CLDN-7","entrezGeneId":"1366"},{"alias":"CPETRL2","entrezGeneId":"1366"},{"alias":"Hs.84359","entrezGeneId":"1366"},{"alias":"CPN","entrezGeneId":"1369"},{"alias":"SCPN","entrezGeneId":"1369"},{"alias":"ACBP","entrezGeneId":"1370"},{"alias":"CPO","entrezGeneId":"1371"},{"alias":"CPX","entrezGeneId":"1371"},{"alias":"HCP","entrezGeneId":"1371"},{"alias":"CPSASE1","entrezGeneId":"1373"},{"alias":"PHN","entrezGeneId":"1373"},{"alias":"CPT1","entrezGeneId":"1374"},{"alias":"CPT1-L","entrezGeneId":"1374"},{"alias":"L-CPT1","entrezGeneId":"1374"},{"alias":"CPT1-M","entrezGeneId":"1375"},{"alias":"CPT1M","entrezGeneId":"1375"},{"alias":"CPTI","entrezGeneId":"1375"},{"alias":"CPTI-M","entrezGeneId":"1375"},{"alias":"M-CPT1","entrezGeneId":"1375"},{"alias":"MCCPT1","entrezGeneId":"1375"},{"alias":"MCPT1","entrezGeneId":"1375"},{"alias":"CPT1","entrezGeneId":"1376"},{"alias":"CPTASE","entrezGeneId":"1376"},{"alias":"IIAE4","entrezGeneId":"1376"},{"alias":"C3BR","entrezGeneId":"1378"},{"alias":"C4BR","entrezGeneId":"1378"},{"alias":"CD35","entrezGeneId":"1378"},{"alias":"KN","entrezGeneId":"1378"},{"alias":"C3DR","entrezGeneId":"1380"},{"alias":"CD21","entrezGeneId":"1380"},{"alias":"CR","entrezGeneId":"1380"},{"alias":"CVID7","entrezGeneId":"1380"},{"alias":"SLEB9","entrezGeneId":"1380"},{"alias":"CRABP","entrezGeneId":"1381"},{"alias":"CRABP-I","entrezGeneId":"1381"},{"alias":"CRABPI","entrezGeneId":"1381"},{"alias":"RBP5","entrezGeneId":"1381"},{"alias":"CRABP-II","entrezGeneId":"1382"},{"alias":"RBP6","entrezGeneId":"1382"},{"alias":"CAT","entrezGeneId":"1384"},{"alias":"CAT1","entrezGeneId":"1384"},{"alias":"NBIA8","entrezGeneId":"1384"},{"alias":"CREB","entrezGeneId":"1385"},{"alias":"CREB-1","entrezGeneId":"1385"},{"alias":"CRE-BP1","entrezGeneId":"1386"},{"alias":"CREB-2","entrezGeneId":"1386"},{"alias":"CREB2","entrezGeneId":"1386"},{"alias":"HB16","entrezGeneId":"1386"},{"alias":"TREB7","entrezGeneId":"1386"},{"alias":"CBP","entrezGeneId":"1387"},{"alias":"KAT3A","entrezGeneId":"1387"},{"alias":"RSTS","entrezGeneId":"1387"},{"alias":"RSTS1","entrezGeneId":"1387"},{"alias":"CREB-RP","entrezGeneId":"1388"},{"alias":"CREBL1","entrezGeneId":"1388"},{"alias":"G13","entrezGeneId":"1388"},{"alias":"CREM-2","entrezGeneId":"1390"},{"alias":"hCREM-2","entrezGeneId":"1390"},{"alias":"ICER","entrezGeneId":"1390"},{"alias":"CRF","entrezGeneId":"1392"},{"alias":"CRH1","entrezGeneId":"1392"},{"alias":"CRF-BP","entrezGeneId":"1393"},{"alias":"CRFBP","entrezGeneId":"1393"},{"alias":"CRF-R","entrezGeneId":"1394"},{"alias":"CRF-R-1","entrezGeneId":"1394"},{"alias":"CRF-R1","entrezGeneId":"1394"},{"alias":"CRF1","entrezGeneId":"1394"},{"alias":"CRFR-1","entrezGeneId":"1394"},{"alias":"CRFR1","entrezGeneId":"1394"},{"alias":"CRH-R-1","entrezGeneId":"1394"},{"alias":"CRH-R1","entrezGeneId":"1394"},{"alias":"CRHR","entrezGeneId":"1394"},{"alias":"CRHR1L","entrezGeneId":"1394"},{"alias":"CRF-RB","entrezGeneId":"1395"},{"alias":"CRF2","entrezGeneId":"1395"},{"alias":"CRFR2","entrezGeneId":"1395"},{"alias":"HM-CRF","entrezGeneId":"1395"},{"alias":"CRHP","entrezGeneId":"1396"},{"alias":"CRIP","entrezGeneId":"1396"},{"alias":"CRP-1","entrezGeneId":"1396"},{"alias":"CRP1","entrezGeneId":"1396"},{"alias":"CRIP","entrezGeneId":"1397"},{"alias":"CRP2","entrezGeneId":"1397"},{"alias":"ESP1","entrezGeneId":"1397"},{"alias":"CRKII","entrezGeneId":"1398"},{"alias":"p38","entrezGeneId":"1398"},{"alias":"CRMP-1","entrezGeneId":"1400"},{"alias":"DPYSL1","entrezGeneId":"1400"},{"alias":"DRP-1","entrezGeneId":"1400"},{"alias":"DRP1","entrezGeneId":"1400"},{"alias":"ULIP-3","entrezGeneId":"1400"},{"alias":"PTX1","entrezGeneId":"1401"},{"alias":"CRT1","entrezGeneId":"1404"},{"alias":"CRTL1","entrezGeneId":"1404"},{"alias":"CORD2","entrezGeneId":"1406"},{"alias":"CRD","entrezGeneId":"1406"},{"alias":"LCA7","entrezGeneId":"1406"},{"alias":"OTX3","entrezGeneId":"1406"},{"alias":"DSPD","entrezGeneId":"1407"},{"alias":"PHLL1","entrezGeneId":"1407"},{"alias":"HCRY2","entrezGeneId":"1408"},{"alias":"PHLL2","entrezGeneId":"1408"},{"alias":"CRYA1","entrezGeneId":"1409"},{"alias":"CTRCT9","entrezGeneId":"1409"},{"alias":"HSPB4","entrezGeneId":"1409"},{"alias":"CMD1II","entrezGeneId":"1410"},{"alias":"CRYA2","entrezGeneId":"1410"},{"alias":"CTPP2","entrezGeneId":"1410"},{"alias":"CTRCT16","entrezGeneId":"1410"},{"alias":"HEL-S-101","entrezGeneId":"1410"},{"alias":"HSPB5","entrezGeneId":"1410"},{"alias":"MFM2","entrezGeneId":"1410"},{"alias":"CRYB1","entrezGeneId":"1411"},{"alias":"CTRCT10","entrezGeneId":"1411"},{"alias":"CTRCT42","entrezGeneId":"1412"},{"alias":"CTRCT23","entrezGeneId":"1413"},{"alias":"CYRBA4","entrezGeneId":"1413"},{"alias":"MCOPCT4","entrezGeneId":"1413"},{"alias":"CATCN3","entrezGeneId":"1414"},{"alias":"CTRCT17","entrezGeneId":"1414"},{"alias":"CCA2","entrezGeneId":"1415"},{"alias":"CRYB2","entrezGeneId":"1415"},{"alias":"CRYB2A","entrezGeneId":"1415"},{"alias":"CTRCT3","entrezGeneId":"1415"},{"alias":"D22S665","entrezGeneId":"1415"},{"alias":"CRYB2B","entrezGeneId":"1416"},{"alias":"CATCN2","entrezGeneId":"1417"},{"alias":"CRYB3","entrezGeneId":"1417"},{"alias":"CTRCT22","entrezGeneId":"1417"},{"alias":"CRY-g-A","entrezGeneId":"1418"},{"alias":"CRYG1","entrezGeneId":"1418"},{"alias":"CRYG5","entrezGeneId":"1418"},{"alias":"CRYG2","entrezGeneId":"1419"},{"alias":"CTRCT39","entrezGeneId":"1419"},{"alias":"CCL","entrezGeneId":"1420"},{"alias":"CRYG3","entrezGeneId":"1420"},{"alias":"CTRCT2","entrezGeneId":"1420"},{"alias":"CACA","entrezGeneId":"1421"},{"alias":"CCA3","entrezGeneId":"1421"},{"alias":"CCP","entrezGeneId":"1421"},{"alias":"cry-g-D","entrezGeneId":"1421"},{"alias":"CRYG4","entrezGeneId":"1421"},{"alias":"CTRCT4","entrezGeneId":"1421"},{"alias":"PCC","entrezGeneId":"1421"},{"alias":"CRYG6","entrezGeneId":"1423"},{"alias":"CRYGFP1","entrezGeneId":"1423"},{"alias":"p1","entrezGeneId":"1423"},{"alias":"CRYGGP1","entrezGeneId":"1424"},{"alias":"CRYG8","entrezGeneId":"1427"},{"alias":"CTRCT20","entrezGeneId":"1427"},{"alias":"DFNA40","entrezGeneId":"1428"},{"alias":"THBP","entrezGeneId":"1428"},{"alias":"CSBP","entrezGeneId":"1432"},{"alias":"CSBP1","entrezGeneId":"1432"},{"alias":"CSBP2","entrezGeneId":"1432"},{"alias":"CSPB1","entrezGeneId":"1432"},{"alias":"EXIP","entrezGeneId":"1432"},{"alias":"Mxi2","entrezGeneId":"1432"},{"alias":"p38","entrezGeneId":"1432"},{"alias":"p38ALPHA","entrezGeneId":"1432"},{"alias":"PRKM14","entrezGeneId":"1432"},{"alias":"PRKM15","entrezGeneId":"1432"},{"alias":"RK","entrezGeneId":"1432"},{"alias":"SAPK2A","entrezGeneId":"1432"},{"alias":"CAS","entrezGeneId":"1434"},{"alias":"CSE1","entrezGeneId":"1434"},{"alias":"XPO2","entrezGeneId":"1434"},{"alias":"CSF-1","entrezGeneId":"1435"},{"alias":"MCSF","entrezGeneId":"1435"},{"alias":"C-FMS","entrezGeneId":"1436"},{"alias":"CD115","entrezGeneId":"1436"},{"alias":"CSF-1R","entrezGeneId":"1436"},{"alias":"CSFR","entrezGeneId":"1436"},{"alias":"FIM2","entrezGeneId":"1436"},{"alias":"FMS","entrezGeneId":"1436"},{"alias":"HDLS","entrezGeneId":"1436"},{"alias":"M-CSF-R","entrezGeneId":"1436"},{"alias":"CSF","entrezGeneId":"1437"},{"alias":"GMCSF","entrezGeneId":"1437"},{"alias":"alphaGMR","entrezGeneId":"1438"},{"alias":"CD116","entrezGeneId":"1438"},{"alias":"CDw116","entrezGeneId":"1438"},{"alias":"CSF2R","entrezGeneId":"1438"},{"alias":"CSF2RAX","entrezGeneId":"1438"},{"alias":"CSF2RAY","entrezGeneId":"1438"},{"alias":"CSF2RX","entrezGeneId":"1438"},{"alias":"CSF2RY","entrezGeneId":"1438"},{"alias":"GM-CSF-R-alpha","entrezGeneId":"1438"},{"alias":"GMCSFR","entrezGeneId":"1438"},{"alias":"GMR","entrezGeneId":"1438"},{"alias":"SMDP4","entrezGeneId":"1438"},{"alias":"betaGMR","entrezGeneId":"1439"},{"alias":"CD131","entrezGeneId":"1439"},{"alias":"CDw131","entrezGeneId":"1439"},{"alias":"IL3RB","entrezGeneId":"1439"},{"alias":"IL5RB","entrezGeneId":"1439"},{"alias":"SMDP5","entrezGeneId":"1439"},{"alias":"C17orf33","entrezGeneId":"1440"},{"alias":"CSF3OS","entrezGeneId":"1440"},{"alias":"GCSF","entrezGeneId":"1440"},{"alias":"CD114","entrezGeneId":"1441"},{"alias":"GCSFR","entrezGeneId":"1441"},{"alias":"SCN7","entrezGeneId":"1441"},{"alias":"CS-1","entrezGeneId":"1442"},{"alias":"CSA","entrezGeneId":"1442"},{"alias":"CSMT","entrezGeneId":"1442"},{"alias":"GHB3","entrezGeneId":"1442"},{"alias":"hCS-1","entrezGeneId":"1442"},{"alias":"hCS-A","entrezGeneId":"1442"},{"alias":"PL","entrezGeneId":"1442"},{"alias":"CS-2","entrezGeneId":"1443"},{"alias":"CSB","entrezGeneId":"1443"},{"alias":"GHB1","entrezGeneId":"1443"},{"alias":"hCS-B","entrezGeneId":"1443"},{"alias":"PL","entrezGeneId":"1443"},{"alias":"CS-5","entrezGeneId":"1444"},{"alias":"CSHP1","entrezGeneId":"1444"},{"alias":"CSL","entrezGeneId":"1444"},{"alias":"GHB4","entrezGeneId":"1444"},{"alias":"hCS-L","entrezGeneId":"1444"},{"alias":"CASA","entrezGeneId":"1446"},{"alias":"CSN1","entrezGeneId":"1446"},{"alias":"CASB","entrezGeneId":"1447"},{"alias":"CNS10","entrezGeneId":"1448"},{"alias":"CSN10","entrezGeneId":"1448"},{"alias":"CSNK","entrezGeneId":"1448"},{"alias":"KCA","entrezGeneId":"1448"},{"alias":"CK1","entrezGeneId":"1452"},{"alias":"CK1a","entrezGeneId":"1452"},{"alias":"CKIa","entrezGeneId":"1452"},{"alias":"HEL-S-77p","entrezGeneId":"1452"},{"alias":"HLCDGP1","entrezGeneId":"1452"},{"alias":"PRO2975","entrezGeneId":"1452"},{"alias":"ASPS","entrezGeneId":"1453"},{"alias":"CKIdelta","entrezGeneId":"1453"},{"alias":"FASPS2","entrezGeneId":"1453"},{"alias":"HCKID","entrezGeneId":"1453"},{"alias":"CKIepsilon","entrezGeneId":"1454"},{"alias":"HCKIE","entrezGeneId":"1454"},{"alias":"CK1g2","entrezGeneId":"1455"},{"alias":"CKI-gamma 3","entrezGeneId":"1456"},{"alias":"CSNK1G3L","entrezGeneId":"1456"},{"alias":"CK2A1","entrezGeneId":"1457"},{"alias":"Cka1","entrezGeneId":"1457"},{"alias":"Cka2","entrezGeneId":"1457"},{"alias":"CKII","entrezGeneId":"1457"},{"alias":"CSNK2A3","entrezGeneId":"1457"},{"alias":"OCNDS","entrezGeneId":"1457"},{"alias":"CK2A2","entrezGeneId":"1459"},{"alias":"CK2alpha'","entrezGeneId":"1459"},{"alias":"CSNK2A1","entrezGeneId":"1459"},{"alias":"CK2B","entrezGeneId":"1460"},{"alias":"CK2N","entrezGeneId":"1460"},{"alias":"Ckb1","entrezGeneId":"1460"},{"alias":"Ckb2","entrezGeneId":"1460"},{"alias":"CSK2B","entrezGeneId":"1460"},{"alias":"G5A","entrezGeneId":"1460"},{"alias":"CSPG2","entrezGeneId":"1462"},{"alias":"ERVR","entrezGeneId":"1462"},{"alias":"GHAP","entrezGeneId":"1462"},{"alias":"PG-M","entrezGeneId":"1462"},{"alias":"WGN","entrezGeneId":"1462"},{"alias":"WGN1","entrezGeneId":"1462"},{"alias":"CSPG3","entrezGeneId":"1463"},{"alias":"HMW-MAA","entrezGeneId":"1464"},{"alias":"MCSP","entrezGeneId":"1464"},{"alias":"MCSPG","entrezGeneId":"1464"},{"alias":"MEL-CSPG","entrezGeneId":"1464"},{"alias":"MSK16","entrezGeneId":"1464"},{"alias":"NG2","entrezGeneId":"1464"},{"alias":"CRP","entrezGeneId":"1465"},{"alias":"CRP1","entrezGeneId":"1465"},{"alias":"CSRP","entrezGeneId":"1465"},{"alias":"CYRP","entrezGeneId":"1465"},{"alias":"D1S181E","entrezGeneId":"1465"},{"alias":"HEL-141","entrezGeneId":"1465"},{"alias":"HEL-S-286","entrezGeneId":"1465"},{"alias":"CRP2","entrezGeneId":"1466"},{"alias":"LMO5","entrezGeneId":"1466"},{"alias":"SmLIM","entrezGeneId":"1466"},{"alias":"CSRP2P","entrezGeneId":"1467"},{"alias":"DIC","entrezGeneId":"1468"},{"alias":"ARMD11","entrezGeneId":"1471"},{"alias":"HEL-S-2","entrezGeneId":"1471"},{"alias":"AREI","entrezGeneId":"1475"},{"alias":"PSS4","entrezGeneId":"1475"},{"alias":"STF1","entrezGeneId":"1475"},{"alias":"STFA","entrezGeneId":"1475"},{"alias":"CPI-B","entrezGeneId":"1476"},{"alias":"CST6","entrezGeneId":"1476"},{"alias":"EPM1","entrezGeneId":"1476"},{"alias":"EPM1A","entrezGeneId":"1476"},{"alias":"PME","entrezGeneId":"1476"},{"alias":"STFB","entrezGeneId":"1476"},{"alias":"ULD","entrezGeneId":"1476"},{"alias":"CstF-50","entrezGeneId":"1477"},{"alias":"CstFp50","entrezGeneId":"1477"},{"alias":"CstF-64","entrezGeneId":"1478"},{"alias":"CSTF-77","entrezGeneId":"1479"},{"alias":"dJ850N15.1","entrezGeneId":"1480"},{"alias":"CHNG5","entrezGeneId":"1482"},{"alias":"CSX","entrezGeneId":"1482"},{"alias":"CSX1","entrezGeneId":"1482"},{"alias":"HLHS2","entrezGeneId":"1482"},{"alias":"NKX2.5","entrezGeneId":"1482"},{"alias":"NKX2E","entrezGeneId":"1482"},{"alias":"NKX4-1","entrezGeneId":"1482"},{"alias":"VSD3","entrezGeneId":"1482"},{"alias":"CAP","entrezGeneId":"1483"},{"alias":"CTPP5","entrezGeneId":"1483"},{"alias":"CT6.1","entrezGeneId":"1485"},{"alias":"CTAG","entrezGeneId":"1485"},{"alias":"CTAG1","entrezGeneId":"1485"},{"alias":"ESO1","entrezGeneId":"1485"},{"alias":"LAGE-2","entrezGeneId":"1485"},{"alias":"LAGE2B","entrezGeneId":"1485"},{"alias":"NY-ESO-1","entrezGeneId":"1485"},{"alias":"CTB","entrezGeneId":"1486"},{"alias":"BARS","entrezGeneId":"1487"},{"alias":"HADDTS","entrezGeneId":"1487"},{"alias":"CT-1","entrezGeneId":"1489"},{"alias":"CT1","entrezGeneId":"1489"},{"alias":"CCN2","entrezGeneId":"1490"},{"alias":"HCS24","entrezGeneId":"1490"},{"alias":"IGFBP8","entrezGeneId":"1490"},{"alias":"NOV2","entrezGeneId":"1490"},{"alias":"ALPS5","entrezGeneId":"1493"},{"alias":"CD","entrezGeneId":"1493"},{"alias":"CD152","entrezGeneId":"1493"},{"alias":"CELIAC3","entrezGeneId":"1493"},{"alias":"CTLA-4","entrezGeneId":"1493"},{"alias":"GRD4","entrezGeneId":"1493"},{"alias":"GSE","entrezGeneId":"1493"},{"alias":"IDDM12","entrezGeneId":"1493"},{"alias":"CAP102","entrezGeneId":"1495"},{"alias":"MDPT2","entrezGeneId":"1495"},{"alias":"CAP-R","entrezGeneId":"1496"},{"alias":"CAPR","entrezGeneId":"1496"},{"alias":"CT114","entrezGeneId":"1496"},{"alias":"CTNR","entrezGeneId":"1496"},{"alias":"CTNS-LSB","entrezGeneId":"1497"},{"alias":"PQLC4","entrezGeneId":"1497"},{"alias":"CTNNAP1","entrezGeneId":"1498"},{"alias":"armadillo","entrezGeneId":"1499"},{"alias":"CTNNB","entrezGeneId":"1499"},{"alias":"EVR7","entrezGeneId":"1499"},{"alias":"MRD19","entrezGeneId":"1499"},{"alias":"BCDS2","entrezGeneId":"1500"},{"alias":"CAS","entrezGeneId":"1500"},{"alias":"CTNND","entrezGeneId":"1500"},{"alias":"p120","entrezGeneId":"1500"},{"alias":"p120(CAS)","entrezGeneId":"1500"},{"alias":"p120(CTN)","entrezGeneId":"1500"},{"alias":"P120CAS","entrezGeneId":"1500"},{"alias":"P120CTN","entrezGeneId":"1500"},{"alias":"GT24","entrezGeneId":"1501"},{"alias":"NPRAP","entrezGeneId":"1501"},{"alias":"CTPS","entrezGeneId":"1503"},{"alias":"GATD5","entrezGeneId":"1503"},{"alias":"IMD24","entrezGeneId":"1503"},{"alias":"CTRB","entrezGeneId":"1504"},{"alias":"CTRL1","entrezGeneId":"1506"},{"alias":"APPS","entrezGeneId":"1508"},{"alias":"CPSB","entrezGeneId":"1508"},{"alias":"CLN10","entrezGeneId":"1509"},{"alias":"CPSD","entrezGeneId":"1509"},{"alias":"HEL-S-130P","entrezGeneId":"1509"},{"alias":"CATE","entrezGeneId":"1510"},{"alias":"CATG","entrezGeneId":"1511"},{"alias":"CG","entrezGeneId":"1511"},{"alias":"ACC-4","entrezGeneId":"1512"},{"alias":"ACC-5","entrezGeneId":"1512"},{"alias":"ACC4","entrezGeneId":"1512"},{"alias":"ACC5","entrezGeneId":"1512"},{"alias":"CPSB","entrezGeneId":"1512"},{"alias":"CTS02","entrezGeneId":"1513"},{"alias":"CTSO","entrezGeneId":"1513"},{"alias":"CTSO1","entrezGeneId":"1513"},{"alias":"CTSO2","entrezGeneId":"1513"},{"alias":"PKND","entrezGeneId":"1513"},{"alias":"PYCD","entrezGeneId":"1513"},{"alias":"CATL","entrezGeneId":"1514"},{"alias":"CTSL1","entrezGeneId":"1514"},{"alias":"MEP","entrezGeneId":"1514"},{"alias":"CATL2","entrezGeneId":"1515"},{"alias":"CTSL2","entrezGeneId":"1515"},{"alias":"CTSU","entrezGeneId":"1515"},{"alias":"bA144G6.6","entrezGeneId":"1517"},{"alias":"bA342C24.4","entrezGeneId":"1517"},{"alias":"CTSL1P2","entrezGeneId":"1517"},{"alias":"CTSL1P5","entrezGeneId":"1517"},{"alias":"CTSL1P7","entrezGeneId":"1517"},{"alias":"CTSLL2","entrezGeneId":"1517"},{"alias":"CTSLL5","entrezGeneId":"1517"},{"alias":"CTSLL7","entrezGeneId":"1517"},{"alias":"CTSLP5","entrezGeneId":"1517"},{"alias":"CTSLP7","entrezGeneId":"1517"},{"alias":"CTSL1P8","entrezGeneId":"1518"},{"alias":"CTSO1","entrezGeneId":"1519"},{"alias":"LYPN","entrezGeneId":"1521"},{"alias":"CTSX","entrezGeneId":"1522"},{"alias":"CASP","entrezGeneId":"1523"},{"alias":"CDP","entrezGeneId":"1523"},{"alias":"CDP/Cut","entrezGeneId":"1523"},{"alias":"CDP1","entrezGeneId":"1523"},{"alias":"Clox","entrezGeneId":"1523"},{"alias":"COY1","entrezGeneId":"1523"},{"alias":"CUTL1","entrezGeneId":"1523"},{"alias":"CUX","entrezGeneId":"1523"},{"alias":"Cux/CDP","entrezGeneId":"1523"},{"alias":"GOLIM6","entrezGeneId":"1523"},{"alias":"Nbla10317","entrezGeneId":"1523"},{"alias":"p100","entrezGeneId":"1523"},{"alias":"p110","entrezGeneId":"1523"},{"alias":"p200","entrezGeneId":"1523"},{"alias":"p75","entrezGeneId":"1523"},{"alias":"CCRL1","entrezGeneId":"1524"},{"alias":"CMKBRL1","entrezGeneId":"1524"},{"alias":"CMKDR1","entrezGeneId":"1524"},{"alias":"GPR13","entrezGeneId":"1524"},{"alias":"GPRV28","entrezGeneId":"1524"},{"alias":"V28","entrezGeneId":"1524"},{"alias":"CAR","entrezGeneId":"1525"},{"alias":"CAR4/6","entrezGeneId":"1525"},{"alias":"HCAR","entrezGeneId":"1525"},{"alias":"CB3S","entrezGeneId":"1526"},{"alias":"CXorf2","entrezGeneId":"1527"},{"alias":"fTEX","entrezGeneId":"1527"},{"alias":"MRX99","entrezGeneId":"1527"},{"alias":"TEX28P1","entrezGeneId":"1527"},{"alias":"TEX28P2","entrezGeneId":"1527"},{"alias":"CYB5","entrezGeneId":"1528"},{"alias":"MCB5","entrezGeneId":"1528"},{"alias":"CYB5P3","entrezGeneId":"1531"},{"alias":"Psgb-5-1","entrezGeneId":"1531"},{"alias":"bA189G24.1","entrezGeneId":"1532"},{"alias":"CYB5P4","entrezGeneId":"1532"},{"alias":"Psgb-5-2","entrezGeneId":"1532"},{"alias":"CYB561A1","entrezGeneId":"1534"},{"alias":"FRRS2","entrezGeneId":"1534"},{"alias":"p22-PHOX","entrezGeneId":"1535"},{"alias":"AMCBX2","entrezGeneId":"1536"},{"alias":"CGD","entrezGeneId":"1536"},{"alias":"GP91-1","entrezGeneId":"1536"},{"alias":"GP91-PHOX","entrezGeneId":"1536"},{"alias":"GP91PHOX","entrezGeneId":"1536"},{"alias":"IMD34","entrezGeneId":"1536"},{"alias":"NOX2","entrezGeneId":"1536"},{"alias":"p91-PHOX","entrezGeneId":"1536"},{"alias":"MC3DN6","entrezGeneId":"1537"},{"alias":"UQCR4","entrezGeneId":"1537"},{"alias":"CYCL1","entrezGeneId":"1538"},{"alias":"BRSS","entrezGeneId":"1540"},{"alias":"CDMT","entrezGeneId":"1540"},{"alias":"CYLD1","entrezGeneId":"1540"},{"alias":"CYLDI","entrezGeneId":"1540"},{"alias":"EAC","entrezGeneId":"1540"},{"alias":"MFT","entrezGeneId":"1540"},{"alias":"MFT1","entrezGeneId":"1540"},{"alias":"SBS","entrezGeneId":"1540"},{"alias":"TEM","entrezGeneId":"1540"},{"alias":"USPL2","entrezGeneId":"1540"},{"alias":"DCMD","entrezGeneId":"1541"},{"alias":"MDDC","entrezGeneId":"1541"},{"alias":"AHH","entrezGeneId":"1543"},{"alias":"AHRR","entrezGeneId":"1543"},{"alias":"CP11","entrezGeneId":"1543"},{"alias":"CYP1","entrezGeneId":"1543"},{"alias":"CYPIA1","entrezGeneId":"1543"},{"alias":"P1-450","entrezGeneId":"1543"},{"alias":"P450-C","entrezGeneId":"1543"},{"alias":"P450DX","entrezGeneId":"1543"},{"alias":"CP12","entrezGeneId":"1544"},{"alias":"CYPIA2","entrezGeneId":"1544"},{"alias":"P3-450","entrezGeneId":"1544"},{"alias":"P450(PA)","entrezGeneId":"1544"},{"alias":"ASGD6","entrezGeneId":"1545"},{"alias":"CP1B","entrezGeneId":"1545"},{"alias":"CYPIB1","entrezGeneId":"1545"},{"alias":"GLC3A","entrezGeneId":"1545"},{"alias":"P4501B1","entrezGeneId":"1545"},{"alias":"CPA6","entrezGeneId":"1548"},{"alias":"CYP2A","entrezGeneId":"1548"},{"alias":"CYP2A3","entrezGeneId":"1548"},{"alias":"CYPIIA6","entrezGeneId":"1548"},{"alias":"P450C2A","entrezGeneId":"1548"},{"alias":"P450PB","entrezGeneId":"1548"},{"alias":"CPA7","entrezGeneId":"1549"},{"alias":"CPAD","entrezGeneId":"1549"},{"alias":"CYP2A","entrezGeneId":"1549"},{"alias":"CYPIIA7","entrezGeneId":"1549"},{"alias":"P450-IIA4","entrezGeneId":"1549"},{"alias":"CYP2A18PC","entrezGeneId":"1550"},{"alias":"CYP2A18PN","entrezGeneId":"1550"},{"alias":"CYP2A7P2","entrezGeneId":"1550"},{"alias":"CYP2A7PT","entrezGeneId":"1550"},{"alias":"CP37","entrezGeneId":"1551"},{"alias":"CYPIIIA7","entrezGeneId":"1551"},{"alias":"P-450(HFL33)","entrezGeneId":"1551"},{"alias":"P-450111A7","entrezGeneId":"1551"},{"alias":"P450-HFLA","entrezGeneId":"1551"},{"alias":"CPAD","entrezGeneId":"1553"},{"alias":"CYP2A","entrezGeneId":"1553"},{"alias":"CYPIIA13","entrezGeneId":"1553"},{"alias":"CPB6","entrezGeneId":"1555"},{"alias":"CYP2B","entrezGeneId":"1555"},{"alias":"CYP2B7","entrezGeneId":"1555"},{"alias":"CYP2B7P","entrezGeneId":"1555"},{"alias":"CYPIIB6","entrezGeneId":"1555"},{"alias":"EFVM","entrezGeneId":"1555"},{"alias":"IIB1","entrezGeneId":"1555"},{"alias":"P450","entrezGeneId":"1555"},{"alias":"CYP2B","entrezGeneId":"1556"},{"alias":"CYP2B7","entrezGeneId":"1556"},{"alias":"CYP2B7P1","entrezGeneId":"1556"},{"alias":"CPCJ","entrezGeneId":"1557"},{"alias":"CYP2C","entrezGeneId":"1557"},{"alias":"CYPIIC17","entrezGeneId":"1557"},{"alias":"CYPIIC19","entrezGeneId":"1557"},{"alias":"P450C2C","entrezGeneId":"1557"},{"alias":"P450IIC19","entrezGeneId":"1557"},{"alias":"CPC8","entrezGeneId":"1558"},{"alias":"CYPIIC8","entrezGeneId":"1558"},{"alias":"MP-12/MP-20","entrezGeneId":"1558"},{"alias":"CPC9","entrezGeneId":"1559"},{"alias":"CYP2C","entrezGeneId":"1559"},{"alias":"CYP2C10","entrezGeneId":"1559"},{"alias":"CYPIIC9","entrezGeneId":"1559"},{"alias":"P450IIC9","entrezGeneId":"1559"},{"alias":"CPCI","entrezGeneId":"1562"},{"alias":"CYP2C","entrezGeneId":"1562"},{"alias":"CYP2C17","entrezGeneId":"1562"},{"alias":"P450-6B/29C","entrezGeneId":"1562"},{"alias":"P450IIC17","entrezGeneId":"1562"},{"alias":"CYP2D","entrezGeneId":"1564"},{"alias":"CYP2D6","entrezGeneId":"1564"},{"alias":"CYP2D7AP","entrezGeneId":"1564"},{"alias":"CYP2D7P","entrezGeneId":"1564"},{"alias":"CYP2D7P1","entrezGeneId":"1564"},{"alias":"CYP2D@","entrezGeneId":"1564"},{"alias":"P450C2D","entrezGeneId":"1564"},{"alias":"P450DB1","entrezGeneId":"1564"},{"alias":"RNA40057","entrezGeneId":"1564"},{"alias":"CPD6","entrezGeneId":"1565"},{"alias":"CYP2D","entrezGeneId":"1565"},{"alias":"CYP2D7AP","entrezGeneId":"1565"},{"alias":"CYP2D7BP","entrezGeneId":"1565"},{"alias":"CYP2D7P2","entrezGeneId":"1565"},{"alias":"CYP2D8P2","entrezGeneId":"1565"},{"alias":"CYP2DL1","entrezGeneId":"1565"},{"alias":"CYPIID6","entrezGeneId":"1565"},{"alias":"P450-DB1","entrezGeneId":"1565"},{"alias":"P450C2D","entrezGeneId":"1565"},{"alias":"P450DB1","entrezGeneId":"1565"},{"alias":"CYP2D8P1","entrezGeneId":"1568"},{"alias":"CYP2DP1","entrezGeneId":"1568"},{"alias":"CPE1","entrezGeneId":"1571"},{"alias":"CYP2E","entrezGeneId":"1571"},{"alias":"P450-J","entrezGeneId":"1571"},{"alias":"P450C2E","entrezGeneId":"1571"},{"alias":"C2F1","entrezGeneId":"1572"},{"alias":"CYP2F","entrezGeneId":"1572"},{"alias":"CYPIIF1","entrezGeneId":"1572"},{"alias":"CPJ2","entrezGeneId":"1573"},{"alias":"CYPIIJ2","entrezGeneId":"1573"},{"alias":"CP33","entrezGeneId":"1576"},{"alias":"CP34","entrezGeneId":"1576"},{"alias":"CYP3A","entrezGeneId":"1576"},{"alias":"CYP3A3","entrezGeneId":"1576"},{"alias":"CYPIIIA3","entrezGeneId":"1576"},{"alias":"CYPIIIA4","entrezGeneId":"1576"},{"alias":"HLP","entrezGeneId":"1576"},{"alias":"NF-25","entrezGeneId":"1576"},{"alias":"P450C3","entrezGeneId":"1576"},{"alias":"P450PCN1","entrezGeneId":"1576"},{"alias":"CP35","entrezGeneId":"1577"},{"alias":"CYPIIIA5","entrezGeneId":"1577"},{"alias":"P450PCN3","entrezGeneId":"1577"},{"alias":"PCN3","entrezGeneId":"1577"},{"alias":"CYP3A5-de13c","entrezGeneId":"1578"},{"alias":"CYP3A5-de1b2b","entrezGeneId":"1578"},{"alias":"CYP3A5P1","entrezGeneId":"1578"},{"alias":"CYP3AP1","entrezGeneId":"1578"},{"alias":"CP4Y","entrezGeneId":"1579"},{"alias":"CYP4A2","entrezGeneId":"1579"},{"alias":"CYP4AII","entrezGeneId":"1579"},{"alias":"CYPIVB1","entrezGeneId":"1580"},{"alias":"P-450HP","entrezGeneId":"1580"},{"alias":"CP7A","entrezGeneId":"1581"},{"alias":"CYP7","entrezGeneId":"1581"},{"alias":"CYPVII","entrezGeneId":"1581"},{"alias":"CP8B","entrezGeneId":"1582"},{"alias":"CYP12","entrezGeneId":"1582"},{"alias":"CYP11A","entrezGeneId":"1583"},{"alias":"CYPXIA1","entrezGeneId":"1583"},{"alias":"P450SCC","entrezGeneId":"1583"},{"alias":"CPN1","entrezGeneId":"1584"},{"alias":"CYP11B","entrezGeneId":"1584"},{"alias":"FHI","entrezGeneId":"1584"},{"alias":"P450C11","entrezGeneId":"1584"},{"alias":"ALDOS","entrezGeneId":"1585"},{"alias":"CPN2","entrezGeneId":"1585"},{"alias":"CYP11B","entrezGeneId":"1585"},{"alias":"CYP11BL","entrezGeneId":"1585"},{"alias":"CYPXIB2","entrezGeneId":"1585"},{"alias":"P-450C18","entrezGeneId":"1585"},{"alias":"P450aldo","entrezGeneId":"1585"},{"alias":"P450C18","entrezGeneId":"1585"},{"alias":"CPT7","entrezGeneId":"1586"},{"alias":"CYP17","entrezGeneId":"1586"},{"alias":"P450C17","entrezGeneId":"1586"},{"alias":"S17AH","entrezGeneId":"1586"},{"alias":"ADAM3","entrezGeneId":"1587"},{"alias":"CYRN1","entrezGeneId":"1587"},{"alias":"tMDCI","entrezGeneId":"1587"},{"alias":"ARO","entrezGeneId":"1588"},{"alias":"ARO1","entrezGeneId":"1588"},{"alias":"CPV1","entrezGeneId":"1588"},{"alias":"CYAR","entrezGeneId":"1588"},{"alias":"CYP19","entrezGeneId":"1588"},{"alias":"CYPXIX","entrezGeneId":"1588"},{"alias":"P-450AROM","entrezGeneId":"1588"},{"alias":"CA21H","entrezGeneId":"1589"},{"alias":"CAH1","entrezGeneId":"1589"},{"alias":"CPS1","entrezGeneId":"1589"},{"alias":"CYP21","entrezGeneId":"1589"},{"alias":"CYP21B","entrezGeneId":"1589"},{"alias":"P450c21B","entrezGeneId":"1589"},{"alias":"CYP21A","entrezGeneId":"1590"},{"alias":"CYP21P","entrezGeneId":"1590"},{"alias":"P450c21A","entrezGeneId":"1590"},{"alias":"CP24","entrezGeneId":"1591"},{"alias":"CYP24","entrezGeneId":"1591"},{"alias":"HCAI","entrezGeneId":"1591"},{"alias":"HCINF1","entrezGeneId":"1591"},{"alias":"P450-CC24","entrezGeneId":"1591"},{"alias":"CP26","entrezGeneId":"1592"},{"alias":"CYP26","entrezGeneId":"1592"},{"alias":"P450RAI","entrezGeneId":"1592"},{"alias":"P450RAI1","entrezGeneId":"1592"},{"alias":"CP27","entrezGeneId":"1593"},{"alias":"CTX","entrezGeneId":"1593"},{"alias":"CYP27","entrezGeneId":"1593"},{"alias":"CP2B","entrezGeneId":"1594"},{"alias":"CYP1","entrezGeneId":"1594"},{"alias":"CYP1alpha","entrezGeneId":"1594"},{"alias":"CYP27B","entrezGeneId":"1594"},{"alias":"P450c1","entrezGeneId":"1594"},{"alias":"PDDR","entrezGeneId":"1594"},{"alias":"VDD1","entrezGeneId":"1594"},{"alias":"VDDR","entrezGeneId":"1594"},{"alias":"VDDRI","entrezGeneId":"1594"},{"alias":"VDR","entrezGeneId":"1594"},{"alias":"CP51","entrezGeneId":"1595"},{"alias":"CYP51","entrezGeneId":"1595"},{"alias":"CYPL1","entrezGeneId":"1595"},{"alias":"LDM","entrezGeneId":"1595"},{"alias":"P450-14DM","entrezGeneId":"1595"},{"alias":"P450L1","entrezGeneId":"1595"},{"alias":"CYRN2","entrezGeneId":"1596"},{"alias":"SCA37","entrezGeneId":"1600"},{"alias":"DOC-2","entrezGeneId":"1601"},{"alias":"DOC2","entrezGeneId":"1601"},{"alias":"DACH","entrezGeneId":"1602"},{"alias":"OST2","entrezGeneId":"1603"},{"alias":"CHAPLE","entrezGeneId":"1604"},{"alias":"CR","entrezGeneId":"1604"},{"alias":"CROM","entrezGeneId":"1604"},{"alias":"DAF","entrezGeneId":"1604"},{"alias":"TC","entrezGeneId":"1604"},{"alias":"156DAG","entrezGeneId":"1605"},{"alias":"A3a","entrezGeneId":"1605"},{"alias":"AGRNR","entrezGeneId":"1605"},{"alias":"DAG","entrezGeneId":"1605"},{"alias":"MDDGA9","entrezGeneId":"1605"},{"alias":"MDDGC7","entrezGeneId":"1605"},{"alias":"MDDGC9","entrezGeneId":"1605"},{"alias":"DAGK","entrezGeneId":"1606"},{"alias":"DAGK1","entrezGeneId":"1606"},{"alias":"DGK-alpha","entrezGeneId":"1606"},{"alias":"DAGK2","entrezGeneId":"1607"},{"alias":"DGK","entrezGeneId":"1607"},{"alias":"DGK-BETA","entrezGeneId":"1607"},{"alias":"DAGK3","entrezGeneId":"1608"},{"alias":"DGK-GAMMA","entrezGeneId":"1608"},{"alias":"DAGK","entrezGeneId":"1609"},{"alias":"DAGK4","entrezGeneId":"1609"},{"alias":"DAGK7","entrezGeneId":"1609"},{"alias":"DAAO","entrezGeneId":"1610"},{"alias":"DAMOX","entrezGeneId":"1610"},{"alias":"OXDA","entrezGeneId":"1610"},{"alias":"DAPK","entrezGeneId":"1612"},{"alias":"ROCO3","entrezGeneId":"1612"},{"alias":"DLK","entrezGeneId":"1613"},{"alias":"ZIP","entrezGeneId":"1613"},{"alias":"ZIPK","entrezGeneId":"1613"},{"alias":"aspRS","entrezGeneId":"1615"},{"alias":"HBSL","entrezGeneId":"1615"},{"alias":"BING2","entrezGeneId":"1616"},{"alias":"DAP6","entrezGeneId":"1616"},{"alias":"EAP1","entrezGeneId":"1616"},{"alias":"DAZ","entrezGeneId":"1617"},{"alias":"SPGY","entrezGeneId":"1617"},{"alias":"DAZH","entrezGeneId":"1618"},{"alias":"DAZL1","entrezGeneId":"1618"},{"alias":"DAZLA","entrezGeneId":"1618"},{"alias":"SPGYLA","entrezGeneId":"1618"},{"alias":"DBC1","entrezGeneId":"1620"},{"alias":"DBCCR1","entrezGeneId":"1620"},{"alias":"FAM5A","entrezGeneId":"1620"},{"alias":"DBM","entrezGeneId":"1621"},{"alias":"ACBD1","entrezGeneId":"1622"},{"alias":"ACBP","entrezGeneId":"1622"},{"alias":"CCK-RP","entrezGeneId":"1622"},{"alias":"EP","entrezGeneId":"1622"},{"alias":"DBIL1","entrezGeneId":"1623"},{"alias":"DBIL2","entrezGeneId":"1624"},{"alias":"D0S117E","entrezGeneId":"1627"},{"alias":"DABP","entrezGeneId":"1628"},{"alias":"taxREB302","entrezGeneId":"1628"},{"alias":"BCATE2","entrezGeneId":"1629"},{"alias":"BCKAD-E2","entrezGeneId":"1629"},{"alias":"BCKADE2","entrezGeneId":"1629"},{"alias":"BCOADC-E2","entrezGeneId":"1629"},{"alias":"E2","entrezGeneId":"1629"},{"alias":"E2B","entrezGeneId":"1629"},{"alias":"CRC18","entrezGeneId":"1630"},{"alias":"CRCR1","entrezGeneId":"1630"},{"alias":"HGPPS2","entrezGeneId":"1630"},{"alias":"IGDCC1","entrezGeneId":"1630"},{"alias":"MRMV1","entrezGeneId":"1630"},{"alias":"NTN1R1","entrezGeneId":"1630"},{"alias":"DCI","entrezGeneId":"1632"},{"alias":"CSCD","entrezGeneId":"1634"},{"alias":"DSPG2","entrezGeneId":"1634"},{"alias":"PG40","entrezGeneId":"1634"},{"alias":"PGII","entrezGeneId":"1634"},{"alias":"PGS2","entrezGeneId":"1634"},{"alias":"SLRR1B","entrezGeneId":"1634"},{"alias":"ACE1","entrezGeneId":"1636"},{"alias":"CD143","entrezGeneId":"1636"},{"alias":"DCP","entrezGeneId":"1636"},{"alias":"DCP1","entrezGeneId":"1636"},{"alias":"DSCR","entrezGeneId":"1637"},{"alias":"TRP-2","entrezGeneId":"1638"},{"alias":"TYRP2","entrezGeneId":"1638"},{"alias":"DAP-150","entrezGeneId":"1639"},{"alias":"DP-150","entrezGeneId":"1639"},{"alias":"P135","entrezGeneId":"1639"},{"alias":"DBCN","entrezGeneId":"1641"},{"alias":"DC","entrezGeneId":"1641"},{"alias":"LISX","entrezGeneId":"1641"},{"alias":"SCLH","entrezGeneId":"1641"},{"alias":"XLIS","entrezGeneId":"1641"},{"alias":"DDBA","entrezGeneId":"1642"},{"alias":"UV-DDB1","entrezGeneId":"1642"},{"alias":"XAP1","entrezGeneId":"1642"},{"alias":"XPCE","entrezGeneId":"1642"},{"alias":"XPE","entrezGeneId":"1642"},{"alias":"XPE-BF","entrezGeneId":"1642"},{"alias":"DDBB","entrezGeneId":"1643"},{"alias":"UV-DDB2","entrezGeneId":"1643"},{"alias":"XPE","entrezGeneId":"1643"},{"alias":"AADC","entrezGeneId":"1644"},{"alias":"2-ALPHA-HSD","entrezGeneId":"1645"},{"alias":"20-ALPHA-HSD","entrezGeneId":"1645"},{"alias":"C9","entrezGeneId":"1645"},{"alias":"DD1","entrezGeneId":"1645"},{"alias":"DD1/DD2","entrezGeneId":"1645"},{"alias":"DDH","entrezGeneId":"1645"},{"alias":"DDH1","entrezGeneId":"1645"},{"alias":"H-37","entrezGeneId":"1645"},{"alias":"HAKRC","entrezGeneId":"1645"},{"alias":"HBAB","entrezGeneId":"1645"},{"alias":"MBAB","entrezGeneId":"1645"},{"alias":"AKR1C-pseudo","entrezGeneId":"1646"},{"alias":"BABP","entrezGeneId":"1646"},{"alias":"DD","entrezGeneId":"1646"},{"alias":"DD-2","entrezGeneId":"1646"},{"alias":"DD/BABP","entrezGeneId":"1646"},{"alias":"DD2","entrezGeneId":"1646"},{"alias":"DDH2","entrezGeneId":"1646"},{"alias":"HAKRD","entrezGeneId":"1646"},{"alias":"HBAB","entrezGeneId":"1646"},{"alias":"MCDR2","entrezGeneId":"1646"},{"alias":"SRXY8","entrezGeneId":"1646"},{"alias":"TDD","entrezGeneId":"1646"},{"alias":"DDIT1","entrezGeneId":"1647"},{"alias":"GADD45","entrezGeneId":"1647"},{"alias":"DDIT1L","entrezGeneId":"1648"},{"alias":"GADD45AL","entrezGeneId":"1648"},{"alias":"C/EBPzeta","entrezGeneId":"1649"},{"alias":"CEBPZ","entrezGeneId":"1649"},{"alias":"CHOP","entrezGeneId":"1649"},{"alias":"CHOP-10","entrezGeneId":"1649"},{"alias":"CHOP10","entrezGeneId":"1649"},{"alias":"GADD153","entrezGeneId":"1649"},{"alias":"AGER1","entrezGeneId":"1650"},{"alias":"CDG1R","entrezGeneId":"1650"},{"alias":"GATD6","entrezGeneId":"1650"},{"alias":"OKSWcl45","entrezGeneId":"1650"},{"alias":"OST","entrezGeneId":"1650"},{"alias":"OST48","entrezGeneId":"1650"},{"alias":"WBP1","entrezGeneId":"1650"},{"alias":"D-DT","entrezGeneId":"1652"},{"alias":"DDCT","entrezGeneId":"1652"},{"alias":"MIF-2","entrezGeneId":"1652"},{"alias":"MIF2","entrezGeneId":"1652"},{"alias":"DBP-RB","entrezGeneId":"1653"},{"alias":"UKVH5d","entrezGeneId":"1653"},{"alias":"CAP-Rf","entrezGeneId":"1654"},{"alias":"DBX","entrezGeneId":"1654"},{"alias":"DDX14","entrezGeneId":"1654"},{"alias":"DDX3","entrezGeneId":"1654"},{"alias":"HLP2","entrezGeneId":"1654"},{"alias":"MRX102","entrezGeneId":"1654"},{"alias":"G17P1","entrezGeneId":"1655"},{"alias":"HLR1","entrezGeneId":"1655"},{"alias":"HUMP68","entrezGeneId":"1655"},{"alias":"p68","entrezGeneId":"1655"},{"alias":"HLR2","entrezGeneId":"1656"},{"alias":"P54","entrezGeneId":"1656"},{"alias":"RCK","entrezGeneId":"1656"},{"alias":"DDX8","entrezGeneId":"1659"},{"alias":"Dhr2","entrezGeneId":"1659"},{"alias":"HRH1","entrezGeneId":"1659"},{"alias":"PRP22","entrezGeneId":"1659"},{"alias":"PRPF22","entrezGeneId":"1659"},{"alias":"DDX9","entrezGeneId":"1660"},{"alias":"LKP","entrezGeneId":"1660"},{"alias":"NDH2","entrezGeneId":"1660"},{"alias":"NDHII","entrezGeneId":"1660"},{"alias":"RHA","entrezGeneId":"1660"},{"alias":"DDX9P","entrezGeneId":"1661"},{"alias":"DHX9P","entrezGeneId":"1661"},{"alias":"Dbp4","entrezGeneId":"1662"},{"alias":"HRH-J8","entrezGeneId":"1662"},{"alias":"CHL1","entrezGeneId":"1663"},{"alias":"CHLR1","entrezGeneId":"1663"},{"alias":"KRG2","entrezGeneId":"1663"},{"alias":"WABS","entrezGeneId":"1663"},{"alias":"DBP1","entrezGeneId":"1665"},{"alias":"DDX15","entrezGeneId":"1665"},{"alias":"HRH2","entrezGeneId":"1665"},{"alias":"PRP43","entrezGeneId":"1665"},{"alias":"PRPF43","entrezGeneId":"1665"},{"alias":"PrPp43p","entrezGeneId":"1665"},{"alias":"DECR","entrezGeneId":"1666"},{"alias":"NADPH","entrezGeneId":"1666"},{"alias":"SDR18C1","entrezGeneId":"1666"},{"alias":"DEF1","entrezGeneId":"1667"},{"alias":"DEFA2","entrezGeneId":"1667"},{"alias":"HNP-1","entrezGeneId":"1667"},{"alias":"HP-1","entrezGeneId":"1667"},{"alias":"HP1","entrezGeneId":"1667"},{"alias":"MRS","entrezGeneId":"1667"},{"alias":"DEF3","entrezGeneId":"1668"},{"alias":"HNP-3","entrezGeneId":"1668"},{"alias":"HNP3","entrezGeneId":"1668"},{"alias":"HP-3","entrezGeneId":"1668"},{"alias":"HP3","entrezGeneId":"1668"},{"alias":"DEF4","entrezGeneId":"1669"},{"alias":"HNP-4","entrezGeneId":"1669"},{"alias":"HP-4","entrezGeneId":"1669"},{"alias":"HP4","entrezGeneId":"1669"},{"alias":"DEF5","entrezGeneId":"1670"},{"alias":"HD-5","entrezGeneId":"1670"},{"alias":"DEF6","entrezGeneId":"1671"},{"alias":"HD-6","entrezGeneId":"1671"},{"alias":"BD1","entrezGeneId":"1672"},{"alias":"DEFB-1","entrezGeneId":"1672"},{"alias":"DEFB101","entrezGeneId":"1672"},{"alias":"HBD1","entrezGeneId":"1672"},{"alias":"BD-2","entrezGeneId":"1673"},{"alias":"DEFB-2","entrezGeneId":"1673"},{"alias":"DEFB102","entrezGeneId":"1673"},{"alias":"DEFB2","entrezGeneId":"1673"},{"alias":"DEFB4","entrezGeneId":"1673"},{"alias":"HBD-2","entrezGeneId":"1673"},{"alias":"SAP1","entrezGeneId":"1673"},{"alias":"CDCD3","entrezGeneId":"1674"},{"alias":"CMD1F","entrezGeneId":"1674"},{"alias":"CSM1","entrezGeneId":"1674"},{"alias":"CSM2","entrezGeneId":"1674"},{"alias":"LGMD1D","entrezGeneId":"1674"},{"alias":"LGMD1E","entrezGeneId":"1674"},{"alias":"LGMD2R","entrezGeneId":"1674"},{"alias":"ADIPSIN","entrezGeneId":"1675"},{"alias":"ADN","entrezGeneId":"1675"},{"alias":"DF","entrezGeneId":"1675"},{"alias":"PFD","entrezGeneId":"1675"},{"alias":"DFF-45","entrezGeneId":"1676"},{"alias":"DFF1","entrezGeneId":"1676"},{"alias":"ICAD","entrezGeneId":"1676"},{"alias":"CAD","entrezGeneId":"1677"},{"alias":"CPAN","entrezGeneId":"1677"},{"alias":"DFF-40","entrezGeneId":"1677"},{"alias":"DFF2","entrezGeneId":"1677"},{"alias":"DFF40","entrezGeneId":"1677"},{"alias":"DDP","entrezGeneId":"1678"},{"alias":"DDP1","entrezGeneId":"1678"},{"alias":"DFN1","entrezGeneId":"1678"},{"alias":"MTS","entrezGeneId":"1678"},{"alias":"TIM8","entrezGeneId":"1678"},{"alias":"DFN4","entrezGeneId":"1680"},{"alias":"DFNA5","entrezGeneId":"1687"},{"alias":"ICERE-1","entrezGeneId":"1687"},{"alias":"COCH-5B2","entrezGeneId":"1690"},{"alias":"COCH5B2","entrezGeneId":"1690"},{"alias":"DFNA9","entrezGeneId":"1690"},{"alias":"CATCH22","entrezGeneId":"1714"},{"alias":"DGS","entrezGeneId":"1714"},{"alias":"VCF","entrezGeneId":"1714"},{"alias":"dGK","entrezGeneId":"1716"},{"alias":"MTDPS3","entrezGeneId":"1716"},{"alias":"NCPH","entrezGeneId":"1716"},{"alias":"PEOB4","entrezGeneId":"1716"},{"alias":"SLOS","entrezGeneId":"1717"},{"alias":"DCE","entrezGeneId":"1718"},{"alias":"Nbla03646","entrezGeneId":"1718"},{"alias":"seladin-1","entrezGeneId":"1718"},{"alias":"SELADIN1","entrezGeneId":"1718"},{"alias":"DHFRP1","entrezGeneId":"1719"},{"alias":"DYR","entrezGeneId":"1719"},{"alias":"DHOdehase","entrezGeneId":"1723"},{"alias":"POADS","entrezGeneId":"1723"},{"alias":"URA1","entrezGeneId":"1723"},{"alias":"DHS","entrezGeneId":"1725"},{"alias":"DS","entrezGeneId":"1725"},{"alias":"MIG13","entrezGeneId":"1725"},{"alias":"B5R","entrezGeneId":"1727"},{"alias":"DIA1","entrezGeneId":"1727"},{"alias":"DHQU","entrezGeneId":"1728"},{"alias":"DIA4","entrezGeneId":"1728"},{"alias":"DTD","entrezGeneId":"1728"},{"alias":"NMOR1","entrezGeneId":"1728"},{"alias":"NMORI","entrezGeneId":"1728"},{"alias":"QR1","entrezGeneId":"1728"},{"alias":"DFNA1","entrezGeneId":"1729"},{"alias":"DIA1","entrezGeneId":"1729"},{"alias":"DRF1","entrezGeneId":"1729"},{"alias":"hDIA1","entrezGeneId":"1729"},{"alias":"LFHL1","entrezGeneId":"1729"},{"alias":"SCBMS","entrezGeneId":"1729"},{"alias":"DIA","entrezGeneId":"1730"},{"alias":"DIA2","entrezGeneId":"1730"},{"alias":"DRF2","entrezGeneId":"1730"},{"alias":"POF","entrezGeneId":"1730"},{"alias":"POF2","entrezGeneId":"1730"},{"alias":"POF2A","entrezGeneId":"1730"},{"alias":"DIFF6","entrezGeneId":"1731"},{"alias":"LARP","entrezGeneId":"1731"},{"alias":"PNUTL3","entrezGeneId":"1731"},{"alias":"SEP1","entrezGeneId":"1731"},{"alias":"HCD","entrezGeneId":"1732"},{"alias":"5DI","entrezGeneId":"1733"},{"alias":"TXDI1","entrezGeneId":"1733"},{"alias":"5DII","entrezGeneId":"1734"},{"alias":"D2","entrezGeneId":"1734"},{"alias":"DIOII","entrezGeneId":"1734"},{"alias":"SelY","entrezGeneId":"1734"},{"alias":"TXDI2","entrezGeneId":"1734"},{"alias":"5DIII","entrezGeneId":"1735"},{"alias":"D3","entrezGeneId":"1735"},{"alias":"DIOIII","entrezGeneId":"1735"},{"alias":"TXDI3","entrezGeneId":"1735"},{"alias":"CBF5","entrezGeneId":"1736"},{"alias":"DKC","entrezGeneId":"1736"},{"alias":"DKCX","entrezGeneId":"1736"},{"alias":"NAP57","entrezGeneId":"1736"},{"alias":"NOLA4","entrezGeneId":"1736"},{"alias":"XAP101","entrezGeneId":"1736"},{"alias":"DLTA","entrezGeneId":"1737"},{"alias":"PDC-E2","entrezGeneId":"1737"},{"alias":"PDCE2","entrezGeneId":"1737"},{"alias":"DLDD","entrezGeneId":"1738"},{"alias":"DLDH","entrezGeneId":"1738"},{"alias":"E3","entrezGeneId":"1738"},{"alias":"GCSL","entrezGeneId":"1738"},{"alias":"LAD","entrezGeneId":"1738"},{"alias":"PHE3","entrezGeneId":"1738"},{"alias":"dJ1061C18.1.1","entrezGeneId":"1739"},{"alias":"DLGH1","entrezGeneId":"1739"},{"alias":"hdlg","entrezGeneId":"1739"},{"alias":"SAP-97","entrezGeneId":"1739"},{"alias":"SAP97","entrezGeneId":"1739"},{"alias":"chapsyn-110","entrezGeneId":"1740"},{"alias":"PPP1R58","entrezGeneId":"1740"},{"alias":"PSD-93","entrezGeneId":"1740"},{"alias":"PSD93","entrezGeneId":"1740"},{"alias":"MRX","entrezGeneId":"1741"},{"alias":"MRX90","entrezGeneId":"1741"},{"alias":"NEDLG","entrezGeneId":"1741"},{"alias":"PPP1R82","entrezGeneId":"1741"},{"alias":"SAP102","entrezGeneId":"1741"},{"alias":"XLMR","entrezGeneId":"1741"},{"alias":"PSD95","entrezGeneId":"1742"},{"alias":"SAP-90","entrezGeneId":"1742"},{"alias":"SAP90","entrezGeneId":"1742"},{"alias":"DLTS","entrezGeneId":"1743"},{"alias":"DLSTP","entrezGeneId":"1744"},{"alias":"TES-1","entrezGeneId":"1746"},{"alias":"TES1","entrezGeneId":"1746"},{"alias":"AI4","entrezGeneId":"1747"},{"alias":"TDO","entrezGeneId":"1747"},{"alias":"BP1","entrezGeneId":"1748"},{"alias":"DLX7","entrezGeneId":"1748"},{"alias":"DLX8","entrezGeneId":"1748"},{"alias":"DLX9","entrezGeneId":"1748"},{"alias":"OFC15","entrezGeneId":"1748"},{"alias":"SHFM1D","entrezGeneId":"1749"},{"alias":"GP340","entrezGeneId":"1755"},{"alias":"muclin","entrezGeneId":"1755"},{"alias":"SAG","entrezGeneId":"1755"},{"alias":"SALSA","entrezGeneId":"1755"},{"alias":"BMD","entrezGeneId":"1756"},{"alias":"CMD3B","entrezGeneId":"1756"},{"alias":"DXS142","entrezGeneId":"1756"},{"alias":"DXS164","entrezGeneId":"1756"},{"alias":"DXS206","entrezGeneId":"1756"},{"alias":"DXS230","entrezGeneId":"1756"},{"alias":"DXS239","entrezGeneId":"1756"},{"alias":"DXS268","entrezGeneId":"1756"},{"alias":"DXS269","entrezGeneId":"1756"},{"alias":"DXS270","entrezGeneId":"1756"},{"alias":"DXS272","entrezGeneId":"1756"},{"alias":"MRX85","entrezGeneId":"1756"},{"alias":"BPR-2","entrezGeneId":"1757"},{"alias":"DMGDHL1","entrezGeneId":"1757"},{"alias":"SAR","entrezGeneId":"1757"},{"alias":"SARD","entrezGeneId":"1757"},{"alias":"SDH","entrezGeneId":"1757"},{"alias":"ARHP","entrezGeneId":"1758"},{"alias":"ARHR","entrezGeneId":"1758"},{"alias":"DMP-1","entrezGeneId":"1758"},{"alias":"DNM","entrezGeneId":"1759"},{"alias":"EIEE31","entrezGeneId":"1759"},{"alias":"DM","entrezGeneId":"1760"},{"alias":"DM1","entrezGeneId":"1760"},{"alias":"DM1PK","entrezGeneId":"1760"},{"alias":"DMK","entrezGeneId":"1760"},{"alias":"MDPK","entrezGeneId":"1760"},{"alias":"MT-PK","entrezGeneId":"1760"},{"alias":"CT154","entrezGeneId":"1761"},{"alias":"DMT1","entrezGeneId":"1761"},{"alias":"D19S593E","entrezGeneId":"1762"},{"alias":"DMR-N9","entrezGeneId":"1762"},{"alias":"DMRN9","entrezGeneId":"1762"},{"alias":"gene59","entrezGeneId":"1762"},{"alias":"DNA2L","entrezGeneId":"1763"},{"alias":"hDNA2","entrezGeneId":"1763"},{"alias":"CILD3","entrezGeneId":"1767"},{"alias":"DNAHC5","entrezGeneId":"1767"},{"alias":"HL1","entrezGeneId":"1767"},{"alias":"KTGNR","entrezGeneId":"1767"},{"alias":"PCD","entrezGeneId":"1767"},{"alias":"Dnahc6","entrezGeneId":"1768"},{"alias":"DNHL1","entrezGeneId":"1768"},{"alias":"HL-2","entrezGeneId":"1768"},{"alias":"HL2","entrezGeneId":"1768"},{"alias":"ATPase","entrezGeneId":"1769"},{"alias":"hdhc9","entrezGeneId":"1769"},{"alias":"DNAH17L","entrezGeneId":"1770"},{"alias":"Dnahc9","entrezGeneId":"1770"},{"alias":"DNEL1","entrezGeneId":"1770"},{"alias":"DYH9","entrezGeneId":"1770"},{"alias":"HL-20","entrezGeneId":"1770"},{"alias":"HL20","entrezGeneId":"1770"},{"alias":"DNL1","entrezGeneId":"1773"},{"alias":"DRNI","entrezGeneId":"1773"},{"alias":"DNAS1L1","entrezGeneId":"1774"},{"alias":"DNASEX","entrezGeneId":"1774"},{"alias":"DNL1L","entrezGeneId":"1774"},{"alias":"G4.8","entrezGeneId":"1774"},{"alias":"XIB","entrezGeneId":"1774"},{"alias":"DNAS1L2","entrezGeneId":"1775"},{"alias":"DHP2","entrezGeneId":"1776"},{"alias":"DNAS1L3","entrezGeneId":"1776"},{"alias":"LSD","entrezGeneId":"1776"},{"alias":"SLEB16","entrezGeneId":"1776"},{"alias":"DNASE2A","entrezGeneId":"1777"},{"alias":"DNL","entrezGeneId":"1777"},{"alias":"DNL2","entrezGeneId":"1777"},{"alias":"CMT2O","entrezGeneId":"1778"},{"alias":"DHC1","entrezGeneId":"1778"},{"alias":"DHC1a","entrezGeneId":"1778"},{"alias":"DNCH1","entrezGeneId":"1778"},{"alias":"Dnchc1","entrezGeneId":"1778"},{"alias":"DNCL","entrezGeneId":"1778"},{"alias":"DNECL","entrezGeneId":"1778"},{"alias":"DYHC","entrezGeneId":"1778"},{"alias":"HL-3","entrezGeneId":"1778"},{"alias":"p22","entrezGeneId":"1778"},{"alias":"SMALED1","entrezGeneId":"1778"},{"alias":"DNCI1","entrezGeneId":"1780"},{"alias":"DNCIC1","entrezGeneId":"1780"},{"alias":"DIC74","entrezGeneId":"1781"},{"alias":"DNCI2","entrezGeneId":"1781"},{"alias":"IC2","entrezGeneId":"1781"},{"alias":"DNCLI2","entrezGeneId":"1783"},{"alias":"LIC2","entrezGeneId":"1783"},{"alias":"cmDNA","entrezGeneId":"1784"},{"alias":"CMT2M","entrezGeneId":"1785"},{"alias":"CMTDI1","entrezGeneId":"1785"},{"alias":"CMTDIB","entrezGeneId":"1785"},{"alias":"DI-CMTB","entrezGeneId":"1785"},{"alias":"DYN2","entrezGeneId":"1785"},{"alias":"DYNII","entrezGeneId":"1785"},{"alias":"LCCS5","entrezGeneId":"1785"},{"alias":"ADCADN","entrezGeneId":"1786"},{"alias":"AIM","entrezGeneId":"1786"},{"alias":"CXXC9","entrezGeneId":"1786"},{"alias":"DNMT","entrezGeneId":"1786"},{"alias":"HSN1E","entrezGeneId":"1786"},{"alias":"m.HsaI","entrezGeneId":"1786"},{"alias":"MCMT","entrezGeneId":"1786"},{"alias":"DMNT2","entrezGeneId":"1787"},{"alias":"DNMT2","entrezGeneId":"1787"},{"alias":"MHSAIIP","entrezGeneId":"1787"},{"alias":"PUMET","entrezGeneId":"1787"},{"alias":"RNMT1","entrezGeneId":"1787"},{"alias":"DNMT3A2","entrezGeneId":"1788"},{"alias":"M.HsaIIIA","entrezGeneId":"1788"},{"alias":"TBRS","entrezGeneId":"1788"},{"alias":"ICF","entrezGeneId":"1789"},{"alias":"ICF1","entrezGeneId":"1789"},{"alias":"M.HsaIIIB","entrezGeneId":"1789"},{"alias":"TDT","entrezGeneId":"1791"},{"alias":"ced5","entrezGeneId":"1793"},{"alias":"DOCK180","entrezGeneId":"1793"},{"alias":"IMD40","entrezGeneId":"1794"},{"alias":"MOCA","entrezGeneId":"1795"},{"alias":"PBP","entrezGeneId":"1795"},{"alias":"P62DOK","entrezGeneId":"1796"},{"alias":"pp62","entrezGeneId":"1796"},{"alias":"DOM3L","entrezGeneId":"1797"},{"alias":"DOM3Z","entrezGeneId":"1797"},{"alias":"NG6","entrezGeneId":"1797"},{"alias":"RAI1","entrezGeneId":"1797"},{"alias":"ALG7","entrezGeneId":"1798"},{"alias":"CDG-Ij","entrezGeneId":"1798"},{"alias":"CDG1J","entrezGeneId":"1798"},{"alias":"CMS13","entrezGeneId":"1798"},{"alias":"CMSTA2","entrezGeneId":"1798"},{"alias":"D11S366","entrezGeneId":"1798"},{"alias":"DGPT","entrezGeneId":"1798"},{"alias":"DPAGT","entrezGeneId":"1798"},{"alias":"DPAGT2","entrezGeneId":"1798"},{"alias":"G1PT","entrezGeneId":"1798"},{"alias":"GPT","entrezGeneId":"1798"},{"alias":"UAGT","entrezGeneId":"1798"},{"alias":"UGAT","entrezGeneId":"1798"},{"alias":"MBD1","entrezGeneId":"1800"},{"alias":"MDP","entrezGeneId":"1800"},{"alias":"RDP","entrezGeneId":"1800"},{"alias":"DEDSSH","entrezGeneId":"1801"},{"alias":"DPH2L","entrezGeneId":"1801"},{"alias":"DPH2L1","entrezGeneId":"1801"},{"alias":"OVCA1","entrezGeneId":"1801"},{"alias":"DPH2L2","entrezGeneId":"1802"},{"alias":"ADABP","entrezGeneId":"1803"},{"alias":"ADCP2","entrezGeneId":"1803"},{"alias":"CD26","entrezGeneId":"1803"},{"alias":"DPPIV","entrezGeneId":"1803"},{"alias":"TP103","entrezGeneId":"1803"},{"alias":"DPL1","entrezGeneId":"1804"},{"alias":"DPPX","entrezGeneId":"1804"},{"alias":"MRD33","entrezGeneId":"1804"},{"alias":"VF2","entrezGeneId":"1804"},{"alias":"TRAMP","entrezGeneId":"1805"},{"alias":"DHP","entrezGeneId":"1806"},{"alias":"DHPDHASE","entrezGeneId":"1806"},{"alias":"DPD","entrezGeneId":"1806"},{"alias":"DHP","entrezGeneId":"1807"},{"alias":"DHPase","entrezGeneId":"1807"},{"alias":"CRMP-2","entrezGeneId":"1808"},{"alias":"CRMP2","entrezGeneId":"1808"},{"alias":"DHPRP2","entrezGeneId":"1808"},{"alias":"DRP-2","entrezGeneId":"1808"},{"alias":"DRP2","entrezGeneId":"1808"},{"alias":"N2A3","entrezGeneId":"1808"},{"alias":"ULIP-2","entrezGeneId":"1808"},{"alias":"ULIP2","entrezGeneId":"1808"},{"alias":"CRMP-4","entrezGeneId":"1809"},{"alias":"CRMP4","entrezGeneId":"1809"},{"alias":"DRP-3","entrezGeneId":"1809"},{"alias":"DRP3","entrezGeneId":"1809"},{"alias":"LCRMP","entrezGeneId":"1809"},{"alias":"ULIP","entrezGeneId":"1809"},{"alias":"ULIP-1","entrezGeneId":"1809"},{"alias":"NC2","entrezGeneId":"1810"},{"alias":"NC2-BETA","entrezGeneId":"1810"},{"alias":"NC2B","entrezGeneId":"1810"},{"alias":"NCB2","entrezGeneId":"1810"},{"alias":"CLD","entrezGeneId":"1811"},{"alias":"DRA","entrezGeneId":"1811"},{"alias":"DADR","entrezGeneId":"1812"},{"alias":"DRD1A","entrezGeneId":"1812"},{"alias":"D2DR","entrezGeneId":"1813"},{"alias":"D2R","entrezGeneId":"1813"},{"alias":"D3DR","entrezGeneId":"1814"},{"alias":"ETM1","entrezGeneId":"1814"},{"alias":"FET1","entrezGeneId":"1814"},{"alias":"D4DR","entrezGeneId":"1815"},{"alias":"DBDR","entrezGeneId":"1816"},{"alias":"DRD1B","entrezGeneId":"1816"},{"alias":"DRD1L2","entrezGeneId":"1816"},{"alias":"BRIGHT","entrezGeneId":"1820"},{"alias":"DRIL1","entrezGeneId":"1820"},{"alias":"DRIL3","entrezGeneId":"1820"},{"alias":"E2FBP1","entrezGeneId":"1820"},{"alias":"DRP-2","entrezGeneId":"1821"},{"alias":"B37","entrezGeneId":"1822"},{"alias":"D12S755E","entrezGeneId":"1822"},{"alias":"DRPLA","entrezGeneId":"1822"},{"alias":"HRS","entrezGeneId":"1822"},{"alias":"NOD","entrezGeneId":"1822"},{"alias":"CDHF1","entrezGeneId":"1823"},{"alias":"DG2/DG3","entrezGeneId":"1823"},{"alias":"ARVD11","entrezGeneId":"1824"},{"alias":"CDHF2","entrezGeneId":"1824"},{"alias":"DG2","entrezGeneId":"1824"},{"alias":"DGII/III","entrezGeneId":"1824"},{"alias":"DSC3","entrezGeneId":"1824"},{"alias":"CDHF3","entrezGeneId":"1825"},{"alias":"DSC","entrezGeneId":"1825"},{"alias":"DSC1","entrezGeneId":"1825"},{"alias":"DSC2","entrezGeneId":"1825"},{"alias":"DSC4","entrezGeneId":"1825"},{"alias":"HT-CP","entrezGeneId":"1825"},{"alias":"CHD2","entrezGeneId":"1826"},{"alias":"CHD2-42","entrezGeneId":"1826"},{"alias":"CHD2-52","entrezGeneId":"1826"},{"alias":"ADAPT78","entrezGeneId":"1827"},{"alias":"CSP1","entrezGeneId":"1827"},{"alias":"DSC1","entrezGeneId":"1827"},{"alias":"DSCR1","entrezGeneId":"1827"},{"alias":"MCIP1","entrezGeneId":"1827"},{"alias":"RCN1","entrezGeneId":"1827"},{"alias":"CDHF4","entrezGeneId":"1828"},{"alias":"DG1","entrezGeneId":"1828"},{"alias":"DSG","entrezGeneId":"1828"},{"alias":"EPKHE","entrezGeneId":"1828"},{"alias":"EPKHIA","entrezGeneId":"1828"},{"alias":"PPKS1","entrezGeneId":"1828"},{"alias":"SPPK1","entrezGeneId":"1828"},{"alias":"CDHF5","entrezGeneId":"1829"},{"alias":"HDGC","entrezGeneId":"1829"},{"alias":"CDHF6","entrezGeneId":"1830"},{"alias":"PVA","entrezGeneId":"1830"},{"alias":"DIP","entrezGeneId":"1831"},{"alias":"DSIPI","entrezGeneId":"1831"},{"alias":"GILZ","entrezGeneId":"1831"},{"alias":"TSC-22R","entrezGeneId":"1831"},{"alias":"DCWHKTA","entrezGeneId":"1832"},{"alias":"DP","entrezGeneId":"1832"},{"alias":"DSPG3","entrezGeneId":"1833"},{"alias":"Pg-Lb","entrezGeneId":"1833"},{"alias":"PGLB","entrezGeneId":"1833"},{"alias":"SLRR3B","entrezGeneId":"1833"},{"alias":"DFNA39","entrezGeneId":"1834"},{"alias":"DGI1","entrezGeneId":"1834"},{"alias":"DMP3","entrezGeneId":"1834"},{"alias":"DPP","entrezGeneId":"1834"},{"alias":"DSP","entrezGeneId":"1834"},{"alias":"D5S1708","entrezGeneId":"1836"},{"alias":"DTD","entrezGeneId":"1836"},{"alias":"DTDST","entrezGeneId":"1836"},{"alias":"EDM4","entrezGeneId":"1836"},{"alias":"MST153","entrezGeneId":"1836"},{"alias":"MSTP157","entrezGeneId":"1836"},{"alias":"D18S892E","entrezGeneId":"1837"},{"alias":"DRP3","entrezGeneId":"1837"},{"alias":"DTN","entrezGeneId":"1837"},{"alias":"DTN-A","entrezGeneId":"1837"},{"alias":"LVNC1","entrezGeneId":"1837"},{"alias":"DTR","entrezGeneId":"1839"},{"alias":"DTS","entrezGeneId":"1839"},{"alias":"DTSF","entrezGeneId":"1839"},{"alias":"HEGFL","entrezGeneId":"1839"},{"alias":"hDx-1","entrezGeneId":"1840"},{"alias":"RNF140","entrezGeneId":"1840"},{"alias":"CDC8","entrezGeneId":"1841"},{"alias":"PP3731","entrezGeneId":"1841"},{"alias":"TMPK","entrezGeneId":"1841"},{"alias":"TYMK","entrezGeneId":"1841"},{"alias":"CL100","entrezGeneId":"1843"},{"alias":"HVH1","entrezGeneId":"1843"},{"alias":"MKP-1","entrezGeneId":"1843"},{"alias":"MKP1","entrezGeneId":"1843"},{"alias":"PTPN10","entrezGeneId":"1843"},{"alias":"PAC-1","entrezGeneId":"1844"},{"alias":"PAC1","entrezGeneId":"1844"},{"alias":"VHR","entrezGeneId":"1845"},{"alias":"HVH2","entrezGeneId":"1846"},{"alias":"MKP-2","entrezGeneId":"1846"},{"alias":"MKP2","entrezGeneId":"1846"},{"alias":"TYP","entrezGeneId":"1846"},{"alias":"DUSP","entrezGeneId":"1847"},{"alias":"HVH3","entrezGeneId":"1847"},{"alias":"HH19","entrezGeneId":"1848"},{"alias":"MKP3","entrezGeneId":"1848"},{"alias":"PYST1","entrezGeneId":"1848"},{"alias":"MKPX","entrezGeneId":"1849"},{"alias":"PYST2","entrezGeneId":"1849"},{"alias":"C11orf81","entrezGeneId":"1850"},{"alias":"HB5","entrezGeneId":"1850"},{"alias":"HVH-5","entrezGeneId":"1850"},{"alias":"HVH8","entrezGeneId":"1850"},{"alias":"MKP-4","entrezGeneId":"1852"},{"alias":"MKP4","entrezGeneId":"1852"},{"alias":"dUTPase","entrezGeneId":"1854"},{"alias":"DRS2","entrezGeneId":"1855"},{"alias":"DVL","entrezGeneId":"1855"},{"alias":"DVL1L1","entrezGeneId":"1855"},{"alias":"DVL1P1","entrezGeneId":"1855"},{"alias":"DRS3","entrezGeneId":"1857"},{"alias":"C3DELq22q24","entrezGeneId":"1858"},{"alias":"DEL3q22q24","entrezGeneId":"1858"},{"alias":"DYRK","entrezGeneId":"1859"},{"alias":"DYRK1","entrezGeneId":"1859"},{"alias":"HP86","entrezGeneId":"1859"},{"alias":"MNB","entrezGeneId":"1859"},{"alias":"MNBH","entrezGeneId":"1859"},{"alias":"MRD7","entrezGeneId":"1859"},{"alias":"DQ2","entrezGeneId":"1861"},{"alias":"DYT1","entrezGeneId":"1861"},{"alias":"RD","entrezGeneId":"1867"},{"alias":"E2F-1","entrezGeneId":"1869"},{"alias":"RBAP1","entrezGeneId":"1869"},{"alias":"RBBP3","entrezGeneId":"1869"},{"alias":"RBP3","entrezGeneId":"1869"},{"alias":"E2F-2","entrezGeneId":"1870"},{"alias":"E2F-3","entrezGeneId":"1871"},{"alias":"E2F-4","entrezGeneId":"1874"},{"alias":"E2F-5","entrezGeneId":"1875"},{"alias":"E2F-6","entrezGeneId":"1876"},{"alias":"E4F","entrezGeneId":"1877"},{"alias":"COE1","entrezGeneId":"1879"},{"alias":"EBF","entrezGeneId":"1879"},{"alias":"O/E-1","entrezGeneId":"1879"},{"alias":"OLF1","entrezGeneId":"1879"},{"alias":"EBI2","entrezGeneId":"1880"},{"alias":"hEBI2","entrezGeneId":"1880"},{"alias":"ULG4","entrezGeneId":"1884"},{"alias":"ECE","entrezGeneId":"1889"},{"alias":"ECGF","entrezGeneId":"1890"},{"alias":"ECGF1","entrezGeneId":"1890"},{"alias":"hPD-ECGF","entrezGeneId":"1890"},{"alias":"MEDPS1","entrezGeneId":"1890"},{"alias":"MNGIE","entrezGeneId":"1890"},{"alias":"MTDPS1","entrezGeneId":"1890"},{"alias":"PDECGF","entrezGeneId":"1890"},{"alias":"TP","entrezGeneId":"1890"},{"alias":"HPXEL","entrezGeneId":"1891"},{"alias":"ECHS1D","entrezGeneId":"1892"},{"alias":"SCEH","entrezGeneId":"1892"},{"alias":"URBWD","entrezGeneId":"1893"},{"alias":"ARHGEF31","entrezGeneId":"1894"},{"alias":"ECTD1","entrezGeneId":"1896"},{"alias":"ED1","entrezGeneId":"1896"},{"alias":"ED1-A1","entrezGeneId":"1896"},{"alias":"ED1-A2","entrezGeneId":"1896"},{"alias":"EDA-A1","entrezGeneId":"1896"},{"alias":"EDA-A2","entrezGeneId":"1896"},{"alias":"EDA1","entrezGeneId":"1896"},{"alias":"EDA2","entrezGeneId":"1896"},{"alias":"HED","entrezGeneId":"1896"},{"alias":"HED1","entrezGeneId":"1896"},{"alias":"ODT1","entrezGeneId":"1896"},{"alias":"STHAGX1","entrezGeneId":"1896"},{"alias":"TNLG7C","entrezGeneId":"1896"},{"alias":"XHED","entrezGeneId":"1896"},{"alias":"XLHED","entrezGeneId":"1896"},{"alias":"CD363","entrezGeneId":"1901"},{"alias":"CHEDG1","entrezGeneId":"1901"},{"alias":"D1S3362","entrezGeneId":"1901"},{"alias":"ECGF1","entrezGeneId":"1901"},{"alias":"EDG-1","entrezGeneId":"1901"},{"alias":"EDG1","entrezGeneId":"1901"},{"alias":"S1P1","entrezGeneId":"1901"},{"alias":"edg-2","entrezGeneId":"1902"},{"alias":"EDG2","entrezGeneId":"1902"},{"alias":"Gpcr26","entrezGeneId":"1902"},{"alias":"GPR26","entrezGeneId":"1902"},{"alias":"LPA1","entrezGeneId":"1902"},{"alias":"Mrec1.3","entrezGeneId":"1902"},{"alias":"rec.1.3","entrezGeneId":"1902"},{"alias":"vzg-1","entrezGeneId":"1902"},{"alias":"VZG1","entrezGeneId":"1902"},{"alias":"EDG-3","entrezGeneId":"1903"},{"alias":"EDG3","entrezGeneId":"1903"},{"alias":"LPB3","entrezGeneId":"1903"},{"alias":"S1P3","entrezGeneId":"1903"},{"alias":"ARCND3","entrezGeneId":"1906"},{"alias":"ET1","entrezGeneId":"1906"},{"alias":"HDLCQ7","entrezGeneId":"1906"},{"alias":"PPET1","entrezGeneId":"1906"},{"alias":"QME","entrezGeneId":"1906"},{"alias":"ET-2","entrezGeneId":"1907"},{"alias":"ET2","entrezGeneId":"1907"},{"alias":"PPET2","entrezGeneId":"1907"},{"alias":"ET-3","entrezGeneId":"1908"},{"alias":"ET3","entrezGeneId":"1908"},{"alias":"HSCR4","entrezGeneId":"1908"},{"alias":"PPET3","entrezGeneId":"1908"},{"alias":"WS4B","entrezGeneId":"1908"},{"alias":"ET-A","entrezGeneId":"1909"},{"alias":"ETA","entrezGeneId":"1909"},{"alias":"ETA-R","entrezGeneId":"1909"},{"alias":"ETAR","entrezGeneId":"1909"},{"alias":"ETRA","entrezGeneId":"1909"},{"alias":"hET-AR","entrezGeneId":"1909"},{"alias":"MFDA","entrezGeneId":"1909"},{"alias":"ABCDS","entrezGeneId":"1910"},{"alias":"ET-B","entrezGeneId":"1910"},{"alias":"ET-BR","entrezGeneId":"1910"},{"alias":"ETB","entrezGeneId":"1910"},{"alias":"ETB1","entrezGeneId":"1910"},{"alias":"ETBR","entrezGeneId":"1910"},{"alias":"ETRB","entrezGeneId":"1910"},{"alias":"HSCR","entrezGeneId":"1910"},{"alias":"HSCR2","entrezGeneId":"1910"},{"alias":"WS4A","entrezGeneId":"1910"},{"alias":"EDR1","entrezGeneId":"1911"},{"alias":"HPH1","entrezGeneId":"1911"},{"alias":"MCPH11","entrezGeneId":"1911"},{"alias":"RAE28","entrezGeneId":"1911"},{"alias":"EDR2","entrezGeneId":"1912"},{"alias":"HPH2","entrezGeneId":"1912"},{"alias":"PH2","entrezGeneId":"1912"},{"alias":"EEC","entrezGeneId":"1913"},{"alias":"CCS-3","entrezGeneId":"1915"},{"alias":"CCS3","entrezGeneId":"1915"},{"alias":"EE1A1","entrezGeneId":"1915"},{"alias":"EEF-1","entrezGeneId":"1915"},{"alias":"EEF1A","entrezGeneId":"1915"},{"alias":"eEF1A-1","entrezGeneId":"1915"},{"alias":"EF-Tu","entrezGeneId":"1915"},{"alias":"EF1A","entrezGeneId":"1915"},{"alias":"GRAF-1EF","entrezGeneId":"1915"},{"alias":"HNGC:16303","entrezGeneId":"1915"},{"alias":"LENG7","entrezGeneId":"1915"},{"alias":"PTI1","entrezGeneId":"1915"},{"alias":"EEF1AL","entrezGeneId":"1917"},{"alias":"EF-1-alpha-2","entrezGeneId":"1917"},{"alias":"EF1A","entrezGeneId":"1917"},{"alias":"EIEE33","entrezGeneId":"1917"},{"alias":"HS1","entrezGeneId":"1917"},{"alias":"MRD38","entrezGeneId":"1917"},{"alias":"STN","entrezGeneId":"1917"},{"alias":"STNL","entrezGeneId":"1917"},{"alias":"EEF1A3","entrezGeneId":"1918"},{"alias":"EEF1B1","entrezGeneId":"1932"},{"alias":"EF1B","entrezGeneId":"1932"},{"alias":"EEF1B","entrezGeneId":"1933"},{"alias":"EEF1B1","entrezGeneId":"1933"},{"alias":"EF1B","entrezGeneId":"1933"},{"alias":"BETA-3","entrezGeneId":"1934"},{"alias":"EEF-1","entrezGeneId":"1934"},{"alias":"EEF-1BETA5A","entrezGeneId":"1934"},{"alias":"EEF1B","entrezGeneId":"1934"},{"alias":"EEF1B3","entrezGeneId":"1934"},{"alias":"EF-1D","entrezGeneId":"1936"},{"alias":"EF1D","entrezGeneId":"1936"},{"alias":"FP1047","entrezGeneId":"1936"},{"alias":"EF1G","entrezGeneId":"1937"},{"alias":"GIG35","entrezGeneId":"1937"},{"alias":"EEF-2","entrezGeneId":"1938"},{"alias":"EF-2","entrezGeneId":"1938"},{"alias":"EF2","entrezGeneId":"1938"},{"alias":"SCA26","entrezGeneId":"1938"},{"alias":"HCA56","entrezGeneId":"1939"},{"alias":"LGTN","entrezGeneId":"1939"},{"alias":"EEGL","entrezGeneId":"1940"},{"alias":"B61","entrezGeneId":"1942"},{"alias":"ECKLG","entrezGeneId":"1942"},{"alias":"EFL1","entrezGeneId":"1942"},{"alias":"EPLG1","entrezGeneId":"1942"},{"alias":"LERK-1","entrezGeneId":"1942"},{"alias":"LERK1","entrezGeneId":"1942"},{"alias":"TNFAIP4","entrezGeneId":"1942"},{"alias":"ELF-1","entrezGeneId":"1943"},{"alias":"EPLG6","entrezGeneId":"1943"},{"alias":"HEK7-L","entrezGeneId":"1943"},{"alias":"LERK-6","entrezGeneId":"1943"},{"alias":"LERK6","entrezGeneId":"1943"},{"alias":"EFL2","entrezGeneId":"1944"},{"alias":"Ehk1-L","entrezGeneId":"1944"},{"alias":"EPLG3","entrezGeneId":"1944"},{"alias":"LERK3","entrezGeneId":"1944"},{"alias":"EFL4","entrezGeneId":"1945"},{"alias":"EPLG4","entrezGeneId":"1945"},{"alias":"LERK4","entrezGeneId":"1945"},{"alias":"AF1","entrezGeneId":"1946"},{"alias":"EFL5","entrezGeneId":"1946"},{"alias":"EPLG7","entrezGeneId":"1946"},{"alias":"GLC1M","entrezGeneId":"1946"},{"alias":"LERK7","entrezGeneId":"1946"},{"alias":"RAGS","entrezGeneId":"1946"},{"alias":"CFND","entrezGeneId":"1947"},{"alias":"CFNS","entrezGeneId":"1947"},{"alias":"EFB1","entrezGeneId":"1947"},{"alias":"EFL3","entrezGeneId":"1947"},{"alias":"Elk-L","entrezGeneId":"1947"},{"alias":"EPLG2","entrezGeneId":"1947"},{"alias":"LERK2","entrezGeneId":"1947"},{"alias":"EPLG5","entrezGeneId":"1948"},{"alias":"Htk-L","entrezGeneId":"1948"},{"alias":"HTKL","entrezGeneId":"1948"},{"alias":"LERK5","entrezGeneId":"1948"},{"alias":"EFL6","entrezGeneId":"1949"},{"alias":"EPLG8","entrezGeneId":"1949"},{"alias":"LERK8","entrezGeneId":"1949"},{"alias":"HOMG4","entrezGeneId":"1950"},{"alias":"URG","entrezGeneId":"1950"},{"alias":"ADGRC3","entrezGeneId":"1951"},{"alias":"CDHF11","entrezGeneId":"1951"},{"alias":"EGFL1","entrezGeneId":"1951"},{"alias":"FMI1","entrezGeneId":"1951"},{"alias":"HFMI1","entrezGeneId":"1951"},{"alias":"MEGF2","entrezGeneId":"1951"},{"alias":"RESDA1","entrezGeneId":"1951"},{"alias":"ADGRC2","entrezGeneId":"1952"},{"alias":"CDHF10","entrezGeneId":"1952"},{"alias":"EGFL2","entrezGeneId":"1952"},{"alias":"Flamingo1","entrezGeneId":"1952"},{"alias":"MEGF3","entrezGeneId":"1952"},{"alias":"EGFL3","entrezGeneId":"1953"},{"alias":"C19orf49","entrezGeneId":"1954"},{"alias":"CRPT2","entrezGeneId":"1954"},{"alias":"EGFL4","entrezGeneId":"1954"},{"alias":"SBP1","entrezGeneId":"1954"},{"alias":"EGFL5","entrezGeneId":"1955"},{"alias":"ERBB","entrezGeneId":"1956"},{"alias":"ERBB1","entrezGeneId":"1956"},{"alias":"HER1","entrezGeneId":"1956"},{"alias":"mENA","entrezGeneId":"1956"},{"alias":"NISBD2","entrezGeneId":"1956"},{"alias":"PIG61","entrezGeneId":"1956"},{"alias":"EIG","entrezGeneId":"1957"},{"alias":"EIG1","entrezGeneId":"1957"},{"alias":"AT225","entrezGeneId":"1958"},{"alias":"G0S30","entrezGeneId":"1958"},{"alias":"KROX-24","entrezGeneId":"1958"},{"alias":"NGFI-A","entrezGeneId":"1958"},{"alias":"TIS8","entrezGeneId":"1958"},{"alias":"ZIF-268","entrezGeneId":"1958"},{"alias":"ZNF225","entrezGeneId":"1958"},{"alias":"AT591","entrezGeneId":"1959"},{"alias":"CMT1D","entrezGeneId":"1959"},{"alias":"CMT4E","entrezGeneId":"1959"},{"alias":"KROX20","entrezGeneId":"1959"},{"alias":"EGR-3","entrezGeneId":"1960"},{"alias":"PILOT","entrezGeneId":"1960"},{"alias":"AT133","entrezGeneId":"1961"},{"alias":"NGFI-C","entrezGeneId":"1961"},{"alias":"NGFIC","entrezGeneId":"1961"},{"alias":"PAT133","entrezGeneId":"1961"},{"alias":"ECHD","entrezGeneId":"1962"},{"alias":"FRTS3","entrezGeneId":"1962"},{"alias":"L-PBE","entrezGeneId":"1962"},{"alias":"LBFP","entrezGeneId":"1962"},{"alias":"LBP","entrezGeneId":"1962"},{"alias":"PBFE","entrezGeneId":"1962"},{"alias":"eIF-1A","entrezGeneId":"1964"},{"alias":"eIF-4C","entrezGeneId":"1964"},{"alias":"EIF1A","entrezGeneId":"1964"},{"alias":"EIF1AP1","entrezGeneId":"1964"},{"alias":"EIF4C","entrezGeneId":"1964"},{"alias":"EIF-2","entrezGeneId":"1965"},{"alias":"EIF-2A","entrezGeneId":"1965"},{"alias":"EIF-2alpha","entrezGeneId":"1965"},{"alias":"EIF2","entrezGeneId":"1965"},{"alias":"EIF2A","entrezGeneId":"1965"},{"alias":"EIF2B","entrezGeneId":"1967"},{"alias":"EIF2BA","entrezGeneId":"1967"},{"alias":"eIF-2gA","entrezGeneId":"1968"},{"alias":"EIF2","entrezGeneId":"1968"},{"alias":"EIF2G","entrezGeneId":"1968"},{"alias":"EIF2gamma","entrezGeneId":"1968"},{"alias":"MEHMO","entrezGeneId":"1968"},{"alias":"MRXSBRK","entrezGeneId":"1968"},{"alias":"ARCC2","entrezGeneId":"1969"},{"alias":"CTPA","entrezGeneId":"1969"},{"alias":"CTPP1","entrezGeneId":"1969"},{"alias":"CTRCT6","entrezGeneId":"1969"},{"alias":"ECK","entrezGeneId":"1969"},{"alias":"DDX2A","entrezGeneId":"1973"},{"alias":"EIF-4A","entrezGeneId":"1973"},{"alias":"eIF-4A-I","entrezGeneId":"1973"},{"alias":"EIF4A","entrezGeneId":"1973"},{"alias":"eIF4A-I","entrezGeneId":"1973"},{"alias":"BM-010","entrezGeneId":"1974"},{"alias":"DDX2B","entrezGeneId":"1974"},{"alias":"eIF-4A-II","entrezGeneId":"1974"},{"alias":"EIF4A","entrezGeneId":"1974"},{"alias":"eIF4A-II","entrezGeneId":"1974"},{"alias":"EIF4F","entrezGeneId":"1974"},{"alias":"EIF-4B","entrezGeneId":"1975"},{"alias":"PRO1843","entrezGeneId":"1975"},{"alias":"AUTS19","entrezGeneId":"1977"},{"alias":"CBP","entrezGeneId":"1977"},{"alias":"eIF-4E","entrezGeneId":"1977"},{"alias":"EIF4E1","entrezGeneId":"1977"},{"alias":"EIF4EL1","entrezGeneId":"1977"},{"alias":"EIF4F","entrezGeneId":"1977"},{"alias":"4E-BP1","entrezGeneId":"1978"},{"alias":"4EBP1","entrezGeneId":"1978"},{"alias":"BP-1","entrezGeneId":"1978"},{"alias":"PHAS-I","entrezGeneId":"1978"},{"alias":"4EBP2","entrezGeneId":"1979"},{"alias":"PHASII","entrezGeneId":"1979"},{"alias":"dJ1022P6.3","entrezGeneId":"1980"},{"alias":"EIF4EL2","entrezGeneId":"1980"},{"alias":"EIF-4G1","entrezGeneId":"1981"},{"alias":"EIF4F","entrezGeneId":"1981"},{"alias":"EIF4G","entrezGeneId":"1981"},{"alias":"EIF4GI","entrezGeneId":"1981"},{"alias":"P220","entrezGeneId":"1981"},{"alias":"PARK18","entrezGeneId":"1981"},{"alias":"AAG1","entrezGeneId":"1982"},{"alias":"DAP5","entrezGeneId":"1982"},{"alias":"NAT1","entrezGeneId":"1982"},{"alias":"P97","entrezGeneId":"1982"},{"alias":"EIF-5","entrezGeneId":"1983"},{"alias":"EIF-5A","entrezGeneId":"1983"},{"alias":"EIF-5A","entrezGeneId":"1984"},{"alias":"EIF5A1","entrezGeneId":"1984"},{"alias":"eIF5AI","entrezGeneId":"1984"},{"alias":"ELA1","entrezGeneId":"1990"},{"alias":"ELA2","entrezGeneId":"1991"},{"alias":"GE","entrezGeneId":"1991"},{"alias":"HLE","entrezGeneId":"1991"},{"alias":"HNE","entrezGeneId":"1991"},{"alias":"NE","entrezGeneId":"1991"},{"alias":"PMN-E","entrezGeneId":"1991"},{"alias":"SCN1","entrezGeneId":"1991"},{"alias":"EI","entrezGeneId":"1992"},{"alias":"ELANH2","entrezGeneId":"1992"},{"alias":"HEL-S-27","entrezGeneId":"1992"},{"alias":"HEL57","entrezGeneId":"1992"},{"alias":"LEI","entrezGeneId":"1992"},{"alias":"M/NEI","entrezGeneId":"1992"},{"alias":"MNEI","entrezGeneId":"1992"},{"alias":"PI-2","entrezGeneId":"1992"},{"alias":"PI2","entrezGeneId":"1992"},{"alias":"HEL-N1","entrezGeneId":"1993"},{"alias":"HELN1","entrezGeneId":"1993"},{"alias":"HUB","entrezGeneId":"1993"},{"alias":"ELAV1","entrezGeneId":"1994"},{"alias":"Hua","entrezGeneId":"1994"},{"alias":"HUR","entrezGeneId":"1994"},{"alias":"MelG","entrezGeneId":"1994"},{"alias":"HUC","entrezGeneId":"1995"},{"alias":"HUCL","entrezGeneId":"1995"},{"alias":"PLE21","entrezGeneId":"1995"},{"alias":"HUD","entrezGeneId":"1996"},{"alias":"PNEM","entrezGeneId":"1996"},{"alias":"EFTUD1","entrezGeneId":"1997"},{"alias":"RIA1","entrezGeneId":"1997"},{"alias":"EU32","entrezGeneId":"1998"},{"alias":"NERF","entrezGeneId":"1998"},{"alias":"NERF-1A","entrezGeneId":"1998"},{"alias":"NERF-1a,b","entrezGeneId":"1998"},{"alias":"NERF-1B","entrezGeneId":"1998"},{"alias":"NERF-2","entrezGeneId":"1998"},{"alias":"EPR-1","entrezGeneId":"1999"},{"alias":"ERT","entrezGeneId":"1999"},{"alias":"ESE-1","entrezGeneId":"1999"},{"alias":"ESX","entrezGeneId":"1999"},{"alias":"ELFR","entrezGeneId":"2000"},{"alias":"MEF","entrezGeneId":"2000"},{"alias":"ESE2","entrezGeneId":"2001"},{"alias":"ELK2","entrezGeneId":"2003"},{"alias":"ELK2.1","entrezGeneId":"2003"},{"alias":"ELK2P1","entrezGeneId":"2003"},{"alias":"ERP","entrezGeneId":"2004"},{"alias":"NET","entrezGeneId":"2004"},{"alias":"SAP-2","entrezGeneId":"2004"},{"alias":"SAP2","entrezGeneId":"2004"},{"alias":"SAP1","entrezGeneId":"2005"},{"alias":"ADCL1","entrezGeneId":"2006"},{"alias":"SVAS","entrezGeneId":"2006"},{"alias":"WBS","entrezGeneId":"2006"},{"alias":"WS","entrezGeneId":"2006"},{"alias":"BH","entrezGeneId":"2009"},{"alias":"ELP79","entrezGeneId":"2009"},{"alias":"EMAP","entrezGeneId":"2009"},{"alias":"EMAPL","entrezGeneId":"2009"},{"alias":"HuEMAP","entrezGeneId":"2009"},{"alias":"EDMD","entrezGeneId":"2010"},{"alias":"LEMD5","entrezGeneId":"2010"},{"alias":"STA","entrezGeneId":"2010"},{"alias":"EMK-1","entrezGeneId":"2011"},{"alias":"EMK1","entrezGeneId":"2011"},{"alias":"PAR-1","entrezGeneId":"2011"},{"alias":"Par-1b","entrezGeneId":"2011"},{"alias":"Par1b","entrezGeneId":"2011"},{"alias":"CL-20","entrezGeneId":"2012"},{"alias":"EMP-1","entrezGeneId":"2012"},{"alias":"TMP","entrezGeneId":"2012"},{"alias":"XMP","entrezGeneId":"2013"},{"alias":"YMP","entrezGeneId":"2014"},{"alias":"EMR1","entrezGeneId":"2015"},{"alias":"TM7LN3","entrezGeneId":"2015"},{"alias":"EMS1","entrezGeneId":"2017"},{"alias":"END","entrezGeneId":"2022"},{"alias":"HHT1","entrezGeneId":"2022"},{"alias":"ORW1","entrezGeneId":"2022"},{"alias":"ENO1L1","entrezGeneId":"2023"},{"alias":"HEL-S-17","entrezGeneId":"2023"},{"alias":"MPB1","entrezGeneId":"2023"},{"alias":"NNE","entrezGeneId":"2023"},{"alias":"PPH","entrezGeneId":"2023"},{"alias":"ENO1P","entrezGeneId":"2025"},{"alias":"HEL-S-279","entrezGeneId":"2026"},{"alias":"NSE","entrezGeneId":"2026"},{"alias":"GSD13","entrezGeneId":"2027"},{"alias":"MSE","entrezGeneId":"2027"},{"alias":"APA","entrezGeneId":"2028"},{"alias":"CD249","entrezGeneId":"2028"},{"alias":"gp160","entrezGeneId":"2028"},{"alias":"ARPP-19e","entrezGeneId":"2029"},{"alias":"ENT1","entrezGeneId":"2030"},{"alias":"KAT3B","entrezGeneId":"2033"},{"alias":"p300","entrezGeneId":"2033"},{"alias":"RSTS2","entrezGeneId":"2033"},{"alias":"bHLHe73","entrezGeneId":"2034"},{"alias":"ECYT4","entrezGeneId":"2034"},{"alias":"HIF2A","entrezGeneId":"2034"},{"alias":"HLF","entrezGeneId":"2034"},{"alias":"MOP2","entrezGeneId":"2034"},{"alias":"PASD2","entrezGeneId":"2034"},{"alias":"4.1R","entrezGeneId":"2035"},{"alias":"EL1","entrezGeneId":"2035"},{"alias":"HE","entrezGeneId":"2035"},{"alias":"4.1N","entrezGeneId":"2036"},{"alias":"MRD11","entrezGeneId":"2036"},{"alias":"4.1-G","entrezGeneId":"2037"},{"alias":"4.1G","entrezGeneId":"2037"},{"alias":"PA","entrezGeneId":"2038"},{"alias":"SPH5","entrezGeneId":"2038"},{"alias":"DMT","entrezGeneId":"2039"},{"alias":"EPB49","entrezGeneId":"2039"},{"alias":"BND7","entrezGeneId":"2040"},{"alias":"EPB7","entrezGeneId":"2040"},{"alias":"EPB72","entrezGeneId":"2040"},{"alias":"EPH","entrezGeneId":"2041"},{"alias":"EPHT","entrezGeneId":"2041"},{"alias":"EPHT1","entrezGeneId":"2041"},{"alias":"EK4","entrezGeneId":"2042"},{"alias":"ETK","entrezGeneId":"2042"},{"alias":"ETK1","entrezGeneId":"2042"},{"alias":"HEK","entrezGeneId":"2042"},{"alias":"HEK4","entrezGeneId":"2042"},{"alias":"TYRO4","entrezGeneId":"2042"},{"alias":"HEK8","entrezGeneId":"2043"},{"alias":"SEK","entrezGeneId":"2043"},{"alias":"TYRO1","entrezGeneId":"2043"},{"alias":"CEK7","entrezGeneId":"2044"},{"alias":"EHK-1","entrezGeneId":"2044"},{"alias":"EHK1","entrezGeneId":"2044"},{"alias":"EK7","entrezGeneId":"2044"},{"alias":"HEK7","entrezGeneId":"2044"},{"alias":"TYRO4","entrezGeneId":"2044"},{"alias":"EHK-3","entrezGeneId":"2045"},{"alias":"EHK3","entrezGeneId":"2045"},{"alias":"EK11","entrezGeneId":"2045"},{"alias":"HEK11","entrezGeneId":"2045"},{"alias":"EEK","entrezGeneId":"2046"},{"alias":"EK3","entrezGeneId":"2046"},{"alias":"HEK3","entrezGeneId":"2046"},{"alias":"ELK","entrezGeneId":"2047"},{"alias":"EPHT2","entrezGeneId":"2047"},{"alias":"Hek6","entrezGeneId":"2047"},{"alias":"NET","entrezGeneId":"2047"},{"alias":"CAPB","entrezGeneId":"2048"},{"alias":"DRT","entrezGeneId":"2048"},{"alias":"EK5","entrezGeneId":"2048"},{"alias":"EPHT3","entrezGeneId":"2048"},{"alias":"ERK","entrezGeneId":"2048"},{"alias":"Hek5","entrezGeneId":"2048"},{"alias":"PCBC","entrezGeneId":"2048"},{"alias":"Tyro5","entrezGeneId":"2048"},{"alias":"EK2","entrezGeneId":"2049"},{"alias":"ETK2","entrezGeneId":"2049"},{"alias":"HEK2","entrezGeneId":"2049"},{"alias":"TYRO6","entrezGeneId":"2049"},{"alias":"HFASD","entrezGeneId":"2050"},{"alias":"HTK","entrezGeneId":"2050"},{"alias":"MYK1","entrezGeneId":"2050"},{"alias":"TYRO11","entrezGeneId":"2050"},{"alias":"HEP","entrezGeneId":"2051"},{"alias":"EPHX","entrezGeneId":"2052"},{"alias":"EPOX","entrezGeneId":"2052"},{"alias":"HYL1","entrezGeneId":"2052"},{"alias":"MEH","entrezGeneId":"2052"},{"alias":"CEH","entrezGeneId":"2053"},{"alias":"SEH","entrezGeneId":"2053"},{"alias":"EPIM","entrezGeneId":"2054"},{"alias":"EPM","entrezGeneId":"2054"},{"alias":"STX2A","entrezGeneId":"2054"},{"alias":"STX2B","entrezGeneId":"2054"},{"alias":"STX2C","entrezGeneId":"2054"},{"alias":"C8orf61","entrezGeneId":"2055"},{"alias":"EPMR","entrezGeneId":"2055"},{"alias":"ECYT5","entrezGeneId":"2056"},{"alias":"EP","entrezGeneId":"2056"},{"alias":"MVCD2","entrezGeneId":"2056"},{"alias":"EPO-R","entrezGeneId":"2057"},{"alias":"EARS","entrezGeneId":"2058"},{"alias":"GLUPRORS","entrezGeneId":"2058"},{"alias":"PARS","entrezGeneId":"2058"},{"alias":"PIG32","entrezGeneId":"2058"},{"alias":"QARS","entrezGeneId":"2058"},{"alias":"QPRS","entrezGeneId":"2058"},{"alias":"DFNB102","entrezGeneId":"2059"},{"alias":"AF-1P","entrezGeneId":"2060"},{"alias":"AF1P","entrezGeneId":"2060"},{"alias":"MLLT5","entrezGeneId":"2060"},{"alias":"EAR-2","entrezGeneId":"2063"},{"alias":"EAR2","entrezGeneId":"2063"},{"alias":"ERBAL2","entrezGeneId":"2063"},{"alias":"CD340","entrezGeneId":"2064"},{"alias":"HER-2","entrezGeneId":"2064"},{"alias":"HER-2/neu","entrezGeneId":"2064"},{"alias":"HER2","entrezGeneId":"2064"},{"alias":"MLN 19","entrezGeneId":"2064"},{"alias":"NEU","entrezGeneId":"2064"},{"alias":"NGL","entrezGeneId":"2064"},{"alias":"TKR1","entrezGeneId":"2064"},{"alias":"c-erbB-3","entrezGeneId":"2065"},{"alias":"c-erbB3","entrezGeneId":"2065"},{"alias":"ErbB-3","entrezGeneId":"2065"},{"alias":"erbB3-S","entrezGeneId":"2065"},{"alias":"HER3","entrezGeneId":"2065"},{"alias":"LCCS2","entrezGeneId":"2065"},{"alias":"MDA-BF-1","entrezGeneId":"2065"},{"alias":"p180-ErbB3","entrezGeneId":"2065"},{"alias":"p45-sErbB3","entrezGeneId":"2065"},{"alias":"p85-sErbB3","entrezGeneId":"2065"},{"alias":"ALS19","entrezGeneId":"2066"},{"alias":"HER4","entrezGeneId":"2066"},{"alias":"p180erbB4","entrezGeneId":"2066"},{"alias":"COFS4","entrezGeneId":"2067"},{"alias":"RAD10","entrezGeneId":"2067"},{"alias":"UV20","entrezGeneId":"2067"},{"alias":"COFS2","entrezGeneId":"2068"},{"alias":"EM9","entrezGeneId":"2068"},{"alias":"TFIIH","entrezGeneId":"2068"},{"alias":"TTD","entrezGeneId":"2068"},{"alias":"TTD1","entrezGeneId":"2068"},{"alias":"XPD","entrezGeneId":"2068"},{"alias":"Ep","entrezGeneId":"2069"},{"alias":"EPR","entrezGeneId":"2069"},{"alias":"ER","entrezGeneId":"2069"},{"alias":"CMD1J","entrezGeneId":"2070"},{"alias":"DFNA10","entrezGeneId":"2070"},{"alias":"BTF2","entrezGeneId":"2071"},{"alias":"GTF2H","entrezGeneId":"2071"},{"alias":"RAD25","entrezGeneId":"2071"},{"alias":"TFIIH","entrezGeneId":"2071"},{"alias":"TTD2","entrezGeneId":"2071"},{"alias":"XPB","entrezGeneId":"2071"},{"alias":"ERCC11","entrezGeneId":"2072"},{"alias":"FANCQ","entrezGeneId":"2072"},{"alias":"RAD1","entrezGeneId":"2072"},{"alias":"XFEPS","entrezGeneId":"2072"},{"alias":"XPF","entrezGeneId":"2072"},{"alias":"COFS3","entrezGeneId":"2073"},{"alias":"ERCC5-201","entrezGeneId":"2073"},{"alias":"ERCM2","entrezGeneId":"2073"},{"alias":"UVDR","entrezGeneId":"2073"},{"alias":"XPG","entrezGeneId":"2073"},{"alias":"XPGC","entrezGeneId":"2073"},{"alias":"ARMD5","entrezGeneId":"2074"},{"alias":"CKN2","entrezGeneId":"2074"},{"alias":"COFS","entrezGeneId":"2074"},{"alias":"COFS1","entrezGeneId":"2074"},{"alias":"CSB","entrezGeneId":"2074"},{"alias":"CSB-PGBD3","entrezGeneId":"2074"},{"alias":"POF11","entrezGeneId":"2074"},{"alias":"RAD26","entrezGeneId":"2074"},{"alias":"UVSS1","entrezGeneId":"2074"},{"alias":"CHYTS","entrezGeneId":"2077"},{"alias":"CRS4","entrezGeneId":"2077"},{"alias":"PE-2","entrezGeneId":"2077"},{"alias":"PE2","entrezGeneId":"2077"},{"alias":"erg-3","entrezGeneId":"2078"},{"alias":"p55","entrezGeneId":"2078"},{"alias":"DROER","entrezGeneId":"2079"},{"alias":"hIRE1p","entrezGeneId":"2081"},{"alias":"IRE1","entrezGeneId":"2081"},{"alias":"IRE1a","entrezGeneId":"2081"},{"alias":"IRE1P","entrezGeneId":"2081"},{"alias":"envR","entrezGeneId":"2086"},{"alias":"ERV-R","entrezGeneId":"2086"},{"alias":"ERV3","entrezGeneId":"2086"},{"alias":"ERVR","entrezGeneId":"2086"},{"alias":"HERV-R","entrezGeneId":"2086"},{"alias":"HERVR","entrezGeneId":"2086"},{"alias":"FIB","entrezGeneId":"2091"},{"alias":"FLRN","entrezGeneId":"2091"},{"alias":"Nop1","entrezGeneId":"2091"},{"alias":"RNU3IP1","entrezGeneId":"2091"},{"alias":"FGH","entrezGeneId":"2098"},{"alias":"ER","entrezGeneId":"2099"},{"alias":"Era","entrezGeneId":"2099"},{"alias":"ESR","entrezGeneId":"2099"},{"alias":"ESRA","entrezGeneId":"2099"},{"alias":"ESTRR","entrezGeneId":"2099"},{"alias":"NR3A1","entrezGeneId":"2099"},{"alias":"ER-BETA","entrezGeneId":"2100"},{"alias":"Erb","entrezGeneId":"2100"},{"alias":"ESR-BETA","entrezGeneId":"2100"},{"alias":"ESRB","entrezGeneId":"2100"},{"alias":"ESTRB","entrezGeneId":"2100"},{"alias":"NR3A2","entrezGeneId":"2100"},{"alias":"ERR1","entrezGeneId":"2101"},{"alias":"ERRa","entrezGeneId":"2101"},{"alias":"ERRalpha","entrezGeneId":"2101"},{"alias":"ESRL1","entrezGeneId":"2101"},{"alias":"NR3B1","entrezGeneId":"2101"},{"alias":"DFNB35","entrezGeneId":"2103"},{"alias":"ERR2","entrezGeneId":"2103"},{"alias":"ERRb","entrezGeneId":"2103"},{"alias":"ESRL2","entrezGeneId":"2103"},{"alias":"NR3B2","entrezGeneId":"2103"},{"alias":"ERR-gamma","entrezGeneId":"2104"},{"alias":"ERR3","entrezGeneId":"2104"},{"alias":"ERRg","entrezGeneId":"2104"},{"alias":"ERRgamma","entrezGeneId":"2104"},{"alias":"NR3B3","entrezGeneId":"2104"},{"alias":"D5S1995","entrezGeneId":"2107"},{"alias":"ERF","entrezGeneId":"2107"},{"alias":"ERF1","entrezGeneId":"2107"},{"alias":"RF1","entrezGeneId":"2107"},{"alias":"SUP45L1","entrezGeneId":"2107"},{"alias":"TB3-1","entrezGeneId":"2107"},{"alias":"EMA","entrezGeneId":"2108"},{"alias":"GA2","entrezGeneId":"2108"},{"alias":"MADD","entrezGeneId":"2108"},{"alias":"FP585","entrezGeneId":"2109"},{"alias":"MADD","entrezGeneId":"2109"},{"alias":"ETFQO","entrezGeneId":"2110"},{"alias":"MADD","entrezGeneId":"2110"},{"alias":"ETM","entrezGeneId":"2112"},{"alias":"c-ets-1","entrezGeneId":"2113"},{"alias":"ETS-1","entrezGeneId":"2113"},{"alias":"EWSR2","entrezGeneId":"2113"},{"alias":"p54","entrezGeneId":"2113"},{"alias":"ETS2IT1","entrezGeneId":"2114"},{"alias":"ER81","entrezGeneId":"2115"},{"alias":"ER71","entrezGeneId":"2116"},{"alias":"ETSRP71","entrezGeneId":"2116"},{"alias":"METS","entrezGeneId":"2117"},{"alias":"PE-1","entrezGeneId":"2117"},{"alias":"PE1","entrezGeneId":"2117"},{"alias":"E1A-F","entrezGeneId":"2118"},{"alias":"E1AF","entrezGeneId":"2118"},{"alias":"PEA3","entrezGeneId":"2118"},{"alias":"PEAS3","entrezGeneId":"2118"},{"alias":"ERM","entrezGeneId":"2119"},{"alias":"TEL","entrezGeneId":"2120"},{"alias":"TEL/ABL","entrezGeneId":"2120"},{"alias":"THC5","entrezGeneId":"2120"},{"alias":"DWF-1","entrezGeneId":"2121"},{"alias":"EVC1","entrezGeneId":"2121"},{"alias":"EVCL","entrezGeneId":"2121"},{"alias":"AML1-EVI-1","entrezGeneId":"2122"},{"alias":"EVI1","entrezGeneId":"2122"},{"alias":"KMT8E","entrezGeneId":"2122"},{"alias":"MDS1","entrezGeneId":"2122"},{"alias":"MDS1-EVI1","entrezGeneId":"2122"},{"alias":"PRDM3","entrezGeneId":"2122"},{"alias":"RUSAT2","entrezGeneId":"2122"},{"alias":"EVDA","entrezGeneId":"2123"},{"alias":"EVI-2A","entrezGeneId":"2123"},{"alias":"EVI2","entrezGeneId":"2123"},{"alias":"CD361","entrezGeneId":"2124"},{"alias":"D17S376","entrezGeneId":"2124"},{"alias":"EVDB","entrezGeneId":"2124"},{"alias":"EVPK","entrezGeneId":"2125"},{"alias":"EVX-1","entrezGeneId":"2128"},{"alias":"bK984G1.4","entrezGeneId":"2130"},{"alias":"EWS","entrezGeneId":"2130"},{"alias":"EWS-FLI1","entrezGeneId":"2130"},{"alias":"EXT","entrezGeneId":"2131"},{"alias":"LGCR","entrezGeneId":"2131"},{"alias":"LGS","entrezGeneId":"2131"},{"alias":"TRPS2","entrezGeneId":"2131"},{"alias":"TTV","entrezGeneId":"2131"},{"alias":"SOTV","entrezGeneId":"2132"},{"alias":"SSMS","entrezGeneId":"2132"},{"alias":"EXT2","entrezGeneId":"2133"},{"alias":"EXTL","entrezGeneId":"2134"},{"alias":"EXTR2","entrezGeneId":"2135"},{"alias":"BOTV","entrezGeneId":"2137"},{"alias":"EXTL1L","entrezGeneId":"2137"},{"alias":"EXTR1","entrezGeneId":"2137"},{"alias":"ISDNA","entrezGeneId":"2137"},{"alias":"REGR","entrezGeneId":"2137"},{"alias":"RPR","entrezGeneId":"2137"},{"alias":"BOP","entrezGeneId":"2138"},{"alias":"BOR","entrezGeneId":"2138"},{"alias":"BOS1","entrezGeneId":"2138"},{"alias":"OFC1","entrezGeneId":"2138"},{"alias":"EAB1","entrezGeneId":"2139"},{"alias":"GEY","entrezGeneId":"2141"},{"alias":"KMT6B","entrezGeneId":"2145"},{"alias":"ENX-1","entrezGeneId":"2146"},{"alias":"ENX1","entrezGeneId":"2146"},{"alias":"EZH2b","entrezGeneId":"2146"},{"alias":"KMT6","entrezGeneId":"2146"},{"alias":"KMT6A","entrezGeneId":"2146"},{"alias":"WVS","entrezGeneId":"2146"},{"alias":"WVS2","entrezGeneId":"2146"},{"alias":"PT","entrezGeneId":"2147"},{"alias":"RPRGL2","entrezGeneId":"2147"},{"alias":"THPH1","entrezGeneId":"2147"},{"alias":"CF2R","entrezGeneId":"2149"},{"alias":"HTR","entrezGeneId":"2149"},{"alias":"PAR-1","entrezGeneId":"2149"},{"alias":"PAR1","entrezGeneId":"2149"},{"alias":"TR","entrezGeneId":"2149"},{"alias":"GPR11","entrezGeneId":"2150"},{"alias":"PAR2","entrezGeneId":"2150"},{"alias":"PAR-3","entrezGeneId":"2151"},{"alias":"PAR3","entrezGeneId":"2151"},{"alias":"CD142","entrezGeneId":"2152"},{"alias":"TF","entrezGeneId":"2152"},{"alias":"TFA","entrezGeneId":"2152"},{"alias":"FVL","entrezGeneId":"2153"},{"alias":"PCCF","entrezGeneId":"2153"},{"alias":"RPRGL1","entrezGeneId":"2153"},{"alias":"THPH2","entrezGeneId":"2153"},{"alias":"SPCA","entrezGeneId":"2155"},{"alias":"F7E","entrezGeneId":"2156"},{"alias":"AHF","entrezGeneId":"2157"},{"alias":"DXS1253E","entrezGeneId":"2157"},{"alias":"F8B","entrezGeneId":"2157"},{"alias":"F8C","entrezGeneId":"2157"},{"alias":"FVIII","entrezGeneId":"2157"},{"alias":"HEMA","entrezGeneId":"2157"},{"alias":"F9 p22","entrezGeneId":"2158"},{"alias":"FIX","entrezGeneId":"2158"},{"alias":"HEMB","entrezGeneId":"2158"},{"alias":"P19","entrezGeneId":"2158"},{"alias":"PTC","entrezGeneId":"2158"},{"alias":"THPH8","entrezGeneId":"2158"},{"alias":"FX","entrezGeneId":"2159"},{"alias":"FXA","entrezGeneId":"2159"},{"alias":"FXI","entrezGeneId":"2160"},{"alias":"PTA","entrezGeneId":"2160"},{"alias":"HAE3","entrezGeneId":"2161"},{"alias":"HAEX","entrezGeneId":"2161"},{"alias":"HAF","entrezGeneId":"2161"},{"alias":"F13A","entrezGeneId":"2162"},{"alias":"FXIIIB","entrezGeneId":"2165"},{"alias":"FAAH-1","entrezGeneId":"2166"},{"alias":"PSAB","entrezGeneId":"2166"},{"alias":"A-FABP","entrezGeneId":"2167"},{"alias":"AFABP","entrezGeneId":"2167"},{"alias":"ALBP","entrezGeneId":"2167"},{"alias":"aP2","entrezGeneId":"2167"},{"alias":"HEL-S-104","entrezGeneId":"2167"},{"alias":"FABPL","entrezGeneId":"2168"},{"alias":"L-FABP","entrezGeneId":"2168"},{"alias":"FABPI","entrezGeneId":"2169"},{"alias":"I-FABP","entrezGeneId":"2169"},{"alias":"FABP11","entrezGeneId":"2170"},{"alias":"H-FABP","entrezGeneId":"2170"},{"alias":"M-FABP","entrezGeneId":"2170"},{"alias":"MDGI","entrezGeneId":"2170"},{"alias":"O-FABP","entrezGeneId":"2170"},{"alias":"E-FABP","entrezGeneId":"2171"},{"alias":"EFABP","entrezGeneId":"2171"},{"alias":"KFABP","entrezGeneId":"2171"},{"alias":"PA-FABP","entrezGeneId":"2171"},{"alias":"PAFABP","entrezGeneId":"2171"},{"alias":"I-15P","entrezGeneId":"2172"},{"alias":"I-BABP","entrezGeneId":"2172"},{"alias":"I-BALB","entrezGeneId":"2172"},{"alias":"I-BAP","entrezGeneId":"2172"},{"alias":"ILBP","entrezGeneId":"2172"},{"alias":"ILBP3","entrezGeneId":"2172"},{"alias":"ILLBP","entrezGeneId":"2172"},{"alias":"B-FABP","entrezGeneId":"2173"},{"alias":"BLBP","entrezGeneId":"2173"},{"alias":"FABPB","entrezGeneId":"2173"},{"alias":"MRG","entrezGeneId":"2173"},{"alias":"FA","entrezGeneId":"2175"},{"alias":"FA-H","entrezGeneId":"2175"},{"alias":"FA1","entrezGeneId":"2175"},{"alias":"FAA","entrezGeneId":"2175"},{"alias":"FACA","entrezGeneId":"2175"},{"alias":"FAH","entrezGeneId":"2175"},{"alias":"FANCH","entrezGeneId":"2175"},{"alias":"FA3","entrezGeneId":"2176"},{"alias":"FAC","entrezGeneId":"2176"},{"alias":"FACC","entrezGeneId":"2176"},{"alias":"FA-D2","entrezGeneId":"2177"},{"alias":"FA4","entrezGeneId":"2177"},{"alias":"FACD","entrezGeneId":"2177"},{"alias":"FAD","entrezGeneId":"2177"},{"alias":"FAD2","entrezGeneId":"2177"},{"alias":"FANCD","entrezGeneId":"2177"},{"alias":"FACE","entrezGeneId":"2178"},{"alias":"FAE","entrezGeneId":"2178"},{"alias":"ACS1","entrezGeneId":"2180"},{"alias":"FACL1","entrezGeneId":"2180"},{"alias":"FACL2","entrezGeneId":"2180"},{"alias":"LACS","entrezGeneId":"2180"},{"alias":"LACS1","entrezGeneId":"2180"},{"alias":"LACS2","entrezGeneId":"2180"},{"alias":"ACS3","entrezGeneId":"2181"},{"alias":"FACL3","entrezGeneId":"2181"},{"alias":"LACS 3","entrezGeneId":"2181"},{"alias":"LACS3","entrezGeneId":"2181"},{"alias":"PRO2194","entrezGeneId":"2181"},{"alias":"ACS4","entrezGeneId":"2182"},{"alias":"FACL4","entrezGeneId":"2182"},{"alias":"LACS4","entrezGeneId":"2182"},{"alias":"MRX63","entrezGeneId":"2182"},{"alias":"MRX68","entrezGeneId":"2182"},{"alias":"CADTK","entrezGeneId":"2185"},{"alias":"CAKB","entrezGeneId":"2185"},{"alias":"FADK2","entrezGeneId":"2185"},{"alias":"FAK2","entrezGeneId":"2185"},{"alias":"PKB","entrezGeneId":"2185"},{"alias":"PTK","entrezGeneId":"2185"},{"alias":"PYK2","entrezGeneId":"2185"},{"alias":"RAFTK","entrezGeneId":"2185"},{"alias":"FAC1","entrezGeneId":"2186"},{"alias":"FALZ","entrezGeneId":"2186"},{"alias":"NEDDFL","entrezGeneId":"2186"},{"alias":"NURF301","entrezGeneId":"2186"},{"alias":"FA2","entrezGeneId":"2187"},{"alias":"FAAP90","entrezGeneId":"2187"},{"alias":"FAAP95","entrezGeneId":"2187"},{"alias":"FAB","entrezGeneId":"2187"},{"alias":"FACB","entrezGeneId":"2187"},{"alias":"FAF","entrezGeneId":"2188"},{"alias":"FAG","entrezGeneId":"2189"},{"alias":"XRCC9","entrezGeneId":"2189"},{"alias":"DPPIV","entrezGeneId":"2191"},{"alias":"FAPA","entrezGeneId":"2191"},{"alias":"FAPalpha","entrezGeneId":"2191"},{"alias":"SIMP","entrezGeneId":"2191"},{"alias":"FBLN","entrezGeneId":"2192"},{"alias":"FIBL1","entrezGeneId":"2192"},{"alias":"CML33","entrezGeneId":"2193"},{"alias":"FARSL","entrezGeneId":"2193"},{"alias":"FARSLA","entrezGeneId":"2193"},{"alias":"FRSA","entrezGeneId":"2193"},{"alias":"PheHA","entrezGeneId":"2193"},{"alias":"FAS","entrezGeneId":"2194"},{"alias":"OA-519","entrezGeneId":"2194"},{"alias":"SDR27X1","entrezGeneId":"2194"},{"alias":"CDHF7","entrezGeneId":"2195"},{"alias":"CDHR8","entrezGeneId":"2195"},{"alias":"FAT","entrezGeneId":"2195"},{"alias":"hFat1","entrezGeneId":"2195"},{"alias":"ME5","entrezGeneId":"2195"},{"alias":"CDHF8","entrezGeneId":"2196"},{"alias":"CDHR9","entrezGeneId":"2196"},{"alias":"HFAT2","entrezGeneId":"2196"},{"alias":"MEGF1","entrezGeneId":"2196"},{"alias":"SCA45","entrezGeneId":"2196"},{"alias":"asr1","entrezGeneId":"2197"},{"alias":"FAU1","entrezGeneId":"2197"},{"alias":"Fub1","entrezGeneId":"2197"},{"alias":"Fubi","entrezGeneId":"2197"},{"alias":"MNSFbeta","entrezGeneId":"2197"},{"alias":"RPS30","entrezGeneId":"2197"},{"alias":"S30","entrezGeneId":"2197"},{"alias":"ACMICD","entrezGeneId":"2200"},{"alias":"ECTOL1","entrezGeneId":"2200"},{"alias":"FBN","entrezGeneId":"2200"},{"alias":"GPHYSD2","entrezGeneId":"2200"},{"alias":"MASS","entrezGeneId":"2200"},{"alias":"MFLS","entrezGeneId":"2200"},{"alias":"MFS1","entrezGeneId":"2200"},{"alias":"OCTD","entrezGeneId":"2200"},{"alias":"SGS","entrezGeneId":"2200"},{"alias":"SSKS","entrezGeneId":"2200"},{"alias":"WMS","entrezGeneId":"2200"},{"alias":"WMS2","entrezGeneId":"2200"},{"alias":"CCA","entrezGeneId":"2201"},{"alias":"DA9","entrezGeneId":"2201"},{"alias":"EOMD","entrezGeneId":"2201"},{"alias":"DHRD","entrezGeneId":"2202"},{"alias":"DRAD","entrezGeneId":"2202"},{"alias":"FBLN3","entrezGeneId":"2202"},{"alias":"FBNL","entrezGeneId":"2202"},{"alias":"FIBL-3","entrezGeneId":"2202"},{"alias":"MLVT","entrezGeneId":"2202"},{"alias":"MTLV","entrezGeneId":"2202"},{"alias":"S1-5","entrezGeneId":"2202"},{"alias":"FBP","entrezGeneId":"2203"},{"alias":"CD89","entrezGeneId":"2204"},{"alias":"CTB-61M7.2","entrezGeneId":"2204"},{"alias":"FcalphaRI","entrezGeneId":"2204"},{"alias":"FCE1A","entrezGeneId":"2205"},{"alias":"FcERI","entrezGeneId":"2205"},{"alias":"APY","entrezGeneId":"2206"},{"alias":"ATOPY","entrezGeneId":"2206"},{"alias":"FCER1B","entrezGeneId":"2206"},{"alias":"FCERI","entrezGeneId":"2206"},{"alias":"IGEL","entrezGeneId":"2206"},{"alias":"IGER","entrezGeneId":"2206"},{"alias":"IGHER","entrezGeneId":"2206"},{"alias":"MS4A1","entrezGeneId":"2206"},{"alias":"FCRG","entrezGeneId":"2207"},{"alias":"BLAST-2","entrezGeneId":"2208"},{"alias":"CD23","entrezGeneId":"2208"},{"alias":"CD23A","entrezGeneId":"2208"},{"alias":"CLEC4J","entrezGeneId":"2208"},{"alias":"FCE2","entrezGeneId":"2208"},{"alias":"IGEBF","entrezGeneId":"2208"},{"alias":"CD64","entrezGeneId":"2209"},{"alias":"CD64A","entrezGeneId":"2209"},{"alias":"FCRI","entrezGeneId":"2209"},{"alias":"IGFR1","entrezGeneId":"2209"},{"alias":"CD64b","entrezGeneId":"2210"},{"alias":"IGFRB","entrezGeneId":"2210"},{"alias":"CD32","entrezGeneId":"2212"},{"alias":"CD32A","entrezGeneId":"2212"},{"alias":"CDw32","entrezGeneId":"2212"},{"alias":"FCG2","entrezGeneId":"2212"},{"alias":"FcGR","entrezGeneId":"2212"},{"alias":"FCGR2","entrezGeneId":"2212"},{"alias":"FCGR2A1","entrezGeneId":"2212"},{"alias":"IGFR2","entrezGeneId":"2212"},{"alias":"CD32","entrezGeneId":"2213"},{"alias":"CD32B","entrezGeneId":"2213"},{"alias":"FCG2","entrezGeneId":"2213"},{"alias":"FCGR2","entrezGeneId":"2213"},{"alias":"IGFR2","entrezGeneId":"2213"},{"alias":"CD16","entrezGeneId":"2214"},{"alias":"CD16A","entrezGeneId":"2214"},{"alias":"FCG3","entrezGeneId":"2214"},{"alias":"FCGR3","entrezGeneId":"2214"},{"alias":"FCGRIII","entrezGeneId":"2214"},{"alias":"FCR-10","entrezGeneId":"2214"},{"alias":"FCRIII","entrezGeneId":"2214"},{"alias":"FCRIIIA","entrezGeneId":"2214"},{"alias":"IGFR3","entrezGeneId":"2214"},{"alias":"IMD20","entrezGeneId":"2214"},{"alias":"CD16","entrezGeneId":"2215"},{"alias":"CD16A","entrezGeneId":"2215"},{"alias":"CD16b","entrezGeneId":"2215"},{"alias":"FCG3","entrezGeneId":"2215"},{"alias":"FCGR3","entrezGeneId":"2215"},{"alias":"FCGR3A","entrezGeneId":"2215"},{"alias":"FCR-10","entrezGeneId":"2215"},{"alias":"FCRIII","entrezGeneId":"2215"},{"alias":"FCRIIIb","entrezGeneId":"2215"},{"alias":"FDXP2","entrezGeneId":"2216"},{"alias":"alpha-chain","entrezGeneId":"2217"},{"alias":"FCRN","entrezGeneId":"2217"},{"alias":"CMD1X","entrezGeneId":"2218"},{"alias":"FCMD","entrezGeneId":"2218"},{"alias":"LGMD2M","entrezGeneId":"2218"},{"alias":"MDDGA4","entrezGeneId":"2218"},{"alias":"MDDGB4","entrezGeneId":"2218"},{"alias":"MDDGC4","entrezGeneId":"2218"},{"alias":"FCNM","entrezGeneId":"2219"},{"alias":"EBP-37","entrezGeneId":"2220"},{"alias":"FCNL","entrezGeneId":"2220"},{"alias":"ficolin-2","entrezGeneId":"2220"},{"alias":"P35","entrezGeneId":"2220"},{"alias":"FCP","entrezGeneId":"2221"},{"alias":"FCPX","entrezGeneId":"2221"},{"alias":"HBFQTL3","entrezGeneId":"2221"},{"alias":"DGPT","entrezGeneId":"2222"},{"alias":"ERG9","entrezGeneId":"2222"},{"alias":"SQS","entrezGeneId":"2222"},{"alias":"SS","entrezGeneId":"2222"},{"alias":"FPPS","entrezGeneId":"2224"},{"alias":"FPS","entrezGeneId":"2224"},{"alias":"POROK9","entrezGeneId":"2224"},{"alias":"FDPSL3","entrezGeneId":"2227"},{"alias":"FPSL3","entrezGeneId":"2227"},{"alias":"CHR39B","entrezGeneId":"2228"},{"alias":"FDPSL4","entrezGeneId":"2228"},{"alias":"FPSL4","entrezGeneId":"2228"},{"alias":"CHR39C","entrezGeneId":"2229"},{"alias":"FDPSL5","entrezGeneId":"2229"},{"alias":"FPSL5","entrezGeneId":"2229"},{"alias":"ADX","entrezGeneId":"2230"},{"alias":"FDX","entrezGeneId":"2230"},{"alias":"LOH11CR1D","entrezGeneId":"2230"},{"alias":"ADXP1","entrezGeneId":"2231"},{"alias":"FDXP1","entrezGeneId":"2231"},{"alias":"ADXR","entrezGeneId":"2232"},{"alias":"ANOA","entrezGeneId":"2232"},{"alias":"EPP","entrezGeneId":"2235"},{"alias":"FCE","entrezGeneId":"2235"},{"alias":"FECHP","entrezGeneId":"2236"},{"alias":"FEN-1","entrezGeneId":"2237"},{"alias":"MF1","entrezGeneId":"2237"},{"alias":"RAD2","entrezGeneId":"2237"},{"alias":"K-glypican","entrezGeneId":"2239"},{"alias":"p94-Fer","entrezGeneId":"2241"},{"alias":"PPP1R74","entrezGeneId":"2241"},{"alias":"TYK3","entrezGeneId":"2241"},{"alias":"FPS","entrezGeneId":"2242"},{"alias":"Fib2","entrezGeneId":"2243"},{"alias":"HEL-S-78p","entrezGeneId":"2244"},{"alias":"AAS","entrezGeneId":"2245"},{"alias":"FGDY","entrezGeneId":"2245"},{"alias":"MRXS16","entrezGeneId":"2245"},{"alias":"ZFYVE3","entrezGeneId":"2245"},{"alias":"AFGF","entrezGeneId":"2246"},{"alias":"ECGF","entrezGeneId":"2246"},{"alias":"ECGF-beta","entrezGeneId":"2246"},{"alias":"ECGFA","entrezGeneId":"2246"},{"alias":"ECGFB","entrezGeneId":"2246"},{"alias":"FGF-1","entrezGeneId":"2246"},{"alias":"FGF-alpha","entrezGeneId":"2246"},{"alias":"FGFA","entrezGeneId":"2246"},{"alias":"GLIO703","entrezGeneId":"2246"},{"alias":"HBGF-1","entrezGeneId":"2246"},{"alias":"HBGF1","entrezGeneId":"2246"},{"alias":"BFGF","entrezGeneId":"2247"},{"alias":"FGF-2","entrezGeneId":"2247"},{"alias":"FGFB","entrezGeneId":"2247"},{"alias":"HBGF-2","entrezGeneId":"2247"},{"alias":"HBGF-3","entrezGeneId":"2248"},{"alias":"INT2","entrezGeneId":"2248"},{"alias":"FGF-4","entrezGeneId":"2249"},{"alias":"HBGF-4","entrezGeneId":"2249"},{"alias":"HST","entrezGeneId":"2249"},{"alias":"HST-1","entrezGeneId":"2249"},{"alias":"HSTF-1","entrezGeneId":"2249"},{"alias":"HSTF1","entrezGeneId":"2249"},{"alias":"K-FGF","entrezGeneId":"2249"},{"alias":"KFGF","entrezGeneId":"2249"},{"alias":"HBGF-5","entrezGeneId":"2250"},{"alias":"Smag-82","entrezGeneId":"2250"},{"alias":"TCMGLY","entrezGeneId":"2250"},{"alias":"HBGF-6","entrezGeneId":"2251"},{"alias":"HST2","entrezGeneId":"2251"},{"alias":"HBGF-7","entrezGeneId":"2252"},{"alias":"KGF","entrezGeneId":"2252"},{"alias":"AIGF","entrezGeneId":"2253"},{"alias":"FGF-8","entrezGeneId":"2253"},{"alias":"HBGF-8","entrezGeneId":"2253"},{"alias":"HH6","entrezGeneId":"2253"},{"alias":"KAL6","entrezGeneId":"2253"},{"alias":"FGF-9","entrezGeneId":"2254"},{"alias":"GAF","entrezGeneId":"2254"},{"alias":"HBFG-9","entrezGeneId":"2254"},{"alias":"HBGF-9","entrezGeneId":"2254"},{"alias":"SYNS3","entrezGeneId":"2254"},{"alias":"FGF-11","entrezGeneId":"2256"},{"alias":"FHF-3","entrezGeneId":"2256"},{"alias":"FHF3","entrezGeneId":"2256"},{"alias":"EIEE47","entrezGeneId":"2257"},{"alias":"FGF12B","entrezGeneId":"2257"},{"alias":"FHF1","entrezGeneId":"2257"},{"alias":"FGF-13","entrezGeneId":"2258"},{"alias":"FGF2","entrezGeneId":"2258"},{"alias":"FHF-2","entrezGeneId":"2258"},{"alias":"FHF2","entrezGeneId":"2258"},{"alias":"FGF-14","entrezGeneId":"2259"},{"alias":"FHF-4","entrezGeneId":"2259"},{"alias":"FHF4","entrezGeneId":"2259"},{"alias":"SCA27","entrezGeneId":"2259"},{"alias":"bFGF-R-1","entrezGeneId":"2260"},{"alias":"BFGFR","entrezGeneId":"2260"},{"alias":"CD331","entrezGeneId":"2260"},{"alias":"CEK","entrezGeneId":"2260"},{"alias":"ECCL","entrezGeneId":"2260"},{"alias":"FGFBR","entrezGeneId":"2260"},{"alias":"FGFR-1","entrezGeneId":"2260"},{"alias":"FLG","entrezGeneId":"2260"},{"alias":"FLT-2","entrezGeneId":"2260"},{"alias":"FLT2","entrezGeneId":"2260"},{"alias":"HBGFR","entrezGeneId":"2260"},{"alias":"HH2","entrezGeneId":"2260"},{"alias":"HRTFDS","entrezGeneId":"2260"},{"alias":"KAL2","entrezGeneId":"2260"},{"alias":"N-SAM","entrezGeneId":"2260"},{"alias":"OGD","entrezGeneId":"2260"},{"alias":"ACH","entrezGeneId":"2261"},{"alias":"CD333","entrezGeneId":"2261"},{"alias":"CEK2","entrezGeneId":"2261"},{"alias":"HSFGFR3EX","entrezGeneId":"2261"},{"alias":"JTK4","entrezGeneId":"2261"},{"alias":"BBDS","entrezGeneId":"2263"},{"alias":"BEK","entrezGeneId":"2263"},{"alias":"BFR-1","entrezGeneId":"2263"},{"alias":"CD332","entrezGeneId":"2263"},{"alias":"CEK3","entrezGeneId":"2263"},{"alias":"CFD1","entrezGeneId":"2263"},{"alias":"ECT1","entrezGeneId":"2263"},{"alias":"JWS","entrezGeneId":"2263"},{"alias":"K-SAM","entrezGeneId":"2263"},{"alias":"KGFR","entrezGeneId":"2263"},{"alias":"TK14","entrezGeneId":"2263"},{"alias":"TK25","entrezGeneId":"2263"},{"alias":"CD334","entrezGeneId":"2264"},{"alias":"JTK2","entrezGeneId":"2264"},{"alias":"TKF","entrezGeneId":"2264"},{"alias":"HFREP1","entrezGeneId":"2267"},{"alias":"HP-041","entrezGeneId":"2267"},{"alias":"LFIRE-1","entrezGeneId":"2267"},{"alias":"LFIRE1","entrezGeneId":"2267"},{"alias":"c-fgr","entrezGeneId":"2268"},{"alias":"c-src2","entrezGeneId":"2268"},{"alias":"p55-Fgr","entrezGeneId":"2268"},{"alias":"p55c-fgr","entrezGeneId":"2268"},{"alias":"p58-Fgr","entrezGeneId":"2268"},{"alias":"p58c-fgr","entrezGeneId":"2268"},{"alias":"SRC2","entrezGeneId":"2268"},{"alias":"FMRD","entrezGeneId":"2271"},{"alias":"HLRCC","entrezGeneId":"2271"},{"alias":"LRCC","entrezGeneId":"2271"},{"alias":"MCL","entrezGeneId":"2271"},{"alias":"MCUL1","entrezGeneId":"2271"},{"alias":"AP3Aase","entrezGeneId":"2272"},{"alias":"FRA3B","entrezGeneId":"2272"},{"alias":"FCMSU","entrezGeneId":"2273"},{"alias":"FHL-1","entrezGeneId":"2273"},{"alias":"FHL1A","entrezGeneId":"2273"},{"alias":"FHL1B","entrezGeneId":"2273"},{"alias":"FLH1A","entrezGeneId":"2273"},{"alias":"KYOT","entrezGeneId":"2273"},{"alias":"RBMX1A","entrezGeneId":"2273"},{"alias":"RBMX1B","entrezGeneId":"2273"},{"alias":"SLIM","entrezGeneId":"2273"},{"alias":"SLIM-1","entrezGeneId":"2273"},{"alias":"SLIM1","entrezGeneId":"2273"},{"alias":"SLIMMER","entrezGeneId":"2273"},{"alias":"XMPMA","entrezGeneId":"2273"},{"alias":"AAG11","entrezGeneId":"2274"},{"alias":"DRAL","entrezGeneId":"2274"},{"alias":"FHL-2","entrezGeneId":"2274"},{"alias":"SLIM-3","entrezGeneId":"2274"},{"alias":"SLIM3","entrezGeneId":"2274"},{"alias":"SLIM2","entrezGeneId":"2275"},{"alias":"FIGF","entrezGeneId":"2277"},{"alias":"VEGF-D","entrezGeneId":"2277"},{"alias":"FKBP-12","entrezGeneId":"2280"},{"alias":"FKBP-1A","entrezGeneId":"2280"},{"alias":"FKBP1","entrezGeneId":"2280"},{"alias":"FKBP12","entrezGeneId":"2280"},{"alias":"PKC12","entrezGeneId":"2280"},{"alias":"PKCI2","entrezGeneId":"2280"},{"alias":"PPIASE","entrezGeneId":"2280"},{"alias":"FKBP12.6","entrezGeneId":"2281"},{"alias":"FKBP1L","entrezGeneId":"2281"},{"alias":"OTK4","entrezGeneId":"2281"},{"alias":"PKBP1L","entrezGeneId":"2281"},{"alias":"PPIase","entrezGeneId":"2281"},{"alias":"FKBP12","entrezGeneId":"2282"},{"alias":"FKBP1P1","entrezGeneId":"2282"},{"alias":"FKBP12","entrezGeneId":"2283"},{"alias":"FKBP1P2","entrezGeneId":"2283"},{"alias":"FKBP12","entrezGeneId":"2284"},{"alias":"FKBP1P3","entrezGeneId":"2284"},{"alias":"FKBP12","entrezGeneId":"2285"},{"alias":"FKBP1P4","entrezGeneId":"2285"},{"alias":"FKBP-13","entrezGeneId":"2286"},{"alias":"PPIase","entrezGeneId":"2286"},{"alias":"FKBP-25","entrezGeneId":"2287"},{"alias":"FKBP-3","entrezGeneId":"2287"},{"alias":"FKBP25","entrezGeneId":"2287"},{"alias":"PPIase","entrezGeneId":"2287"},{"alias":"FKBP51","entrezGeneId":"2288"},{"alias":"FKBP52","entrezGeneId":"2288"},{"alias":"FKBP59","entrezGeneId":"2288"},{"alias":"HBI","entrezGeneId":"2288"},{"alias":"Hsp56","entrezGeneId":"2288"},{"alias":"p52","entrezGeneId":"2288"},{"alias":"PPIase","entrezGeneId":"2288"},{"alias":"AIG6","entrezGeneId":"2289"},{"alias":"FKBP51","entrezGeneId":"2289"},{"alias":"FKBP54","entrezGeneId":"2289"},{"alias":"P54","entrezGeneId":"2289"},{"alias":"PPIase","entrezGeneId":"2289"},{"alias":"Ptg-10","entrezGeneId":"2289"},{"alias":"BF1","entrezGeneId":"2290"},{"alias":"BF2","entrezGeneId":"2290"},{"alias":"FHKL3","entrezGeneId":"2290"},{"alias":"FKH2","entrezGeneId":"2290"},{"alias":"FKHL1","entrezGeneId":"2290"},{"alias":"FKHL2","entrezGeneId":"2290"},{"alias":"FKHL3","entrezGeneId":"2290"},{"alias":"FKHL4","entrezGeneId":"2290"},{"alias":"FOXG1A","entrezGeneId":"2290"},{"alias":"FOXG1B","entrezGeneId":"2290"},{"alias":"FOXG1C","entrezGeneId":"2290"},{"alias":"HBF-1","entrezGeneId":"2290"},{"alias":"HBF-2","entrezGeneId":"2290"},{"alias":"HBF-3","entrezGeneId":"2290"},{"alias":"HBF-G2","entrezGeneId":"2290"},{"alias":"HBF2","entrezGeneId":"2290"},{"alias":"HFK1","entrezGeneId":"2290"},{"alias":"HFK2","entrezGeneId":"2290"},{"alias":"HFK3","entrezGeneId":"2290"},{"alias":"KHL2","entrezGeneId":"2290"},{"alias":"QIN","entrezGeneId":"2290"},{"alias":"ACDMPV","entrezGeneId":"2294"},{"alias":"FKHL5","entrezGeneId":"2294"},{"alias":"FREAC1","entrezGeneId":"2294"},{"alias":"FKHL6","entrezGeneId":"2295"},{"alias":"FREAC-2","entrezGeneId":"2295"},{"alias":"FREAC2","entrezGeneId":"2295"},{"alias":"ARA","entrezGeneId":"2296"},{"alias":"ASGD3","entrezGeneId":"2296"},{"alias":"FKHL7","entrezGeneId":"2296"},{"alias":"FREAC-3","entrezGeneId":"2296"},{"alias":"FREAC3","entrezGeneId":"2296"},{"alias":"IGDA","entrezGeneId":"2296"},{"alias":"IHG1","entrezGeneId":"2296"},{"alias":"IRID1","entrezGeneId":"2296"},{"alias":"RIEG3","entrezGeneId":"2296"},{"alias":"FKHL8","entrezGeneId":"2297"},{"alias":"FREAC-4","entrezGeneId":"2297"},{"alias":"FREAC4","entrezGeneId":"2297"},{"alias":"FKHL9","entrezGeneId":"2298"},{"alias":"FOXD4A","entrezGeneId":"2298"},{"alias":"FREAC-5","entrezGeneId":"2298"},{"alias":"FREAC5","entrezGeneId":"2298"},{"alias":"FKH10","entrezGeneId":"2299"},{"alias":"FKHL10","entrezGeneId":"2299"},{"alias":"FREAC-6","entrezGeneId":"2299"},{"alias":"FREAC6","entrezGeneId":"2299"},{"alias":"HFH-3","entrezGeneId":"2299"},{"alias":"HFH3","entrezGeneId":"2299"},{"alias":"FKH6","entrezGeneId":"2300"},{"alias":"FKHL11","entrezGeneId":"2300"},{"alias":"FREAC7","entrezGeneId":"2300"},{"alias":"AAT11","entrezGeneId":"2301"},{"alias":"ASGD2","entrezGeneId":"2301"},{"alias":"CTRCT34","entrezGeneId":"2301"},{"alias":"FKHL12","entrezGeneId":"2301"},{"alias":"FREAC8","entrezGeneId":"2301"},{"alias":"FKHL13","entrezGeneId":"2302"},{"alias":"HFH-4","entrezGeneId":"2302"},{"alias":"HFH4","entrezGeneId":"2302"},{"alias":"FKHL14","entrezGeneId":"2303"},{"alias":"LD","entrezGeneId":"2303"},{"alias":"MFH-1","entrezGeneId":"2303"},{"alias":"MFH1","entrezGeneId":"2303"},{"alias":"FKHL15","entrezGeneId":"2304"},{"alias":"FOXE2","entrezGeneId":"2304"},{"alias":"HFKH4","entrezGeneId":"2304"},{"alias":"HFKL5","entrezGeneId":"2304"},{"alias":"NMTC4","entrezGeneId":"2304"},{"alias":"TITF2","entrezGeneId":"2304"},{"alias":"TTF-2","entrezGeneId":"2304"},{"alias":"TTF2","entrezGeneId":"2304"},{"alias":"FKHL16","entrezGeneId":"2305"},{"alias":"FOXM1A","entrezGeneId":"2305"},{"alias":"FOXM1B","entrezGeneId":"2305"},{"alias":"FOXM1C","entrezGeneId":"2305"},{"alias":"HFH-11","entrezGeneId":"2305"},{"alias":"HFH11","entrezGeneId":"2305"},{"alias":"HNF-3","entrezGeneId":"2305"},{"alias":"INS-1","entrezGeneId":"2305"},{"alias":"MPHOSPH2","entrezGeneId":"2305"},{"alias":"MPP-2","entrezGeneId":"2305"},{"alias":"MPP2","entrezGeneId":"2305"},{"alias":"PIG29","entrezGeneId":"2305"},{"alias":"TRIDENT","entrezGeneId":"2305"},{"alias":"FKHL17","entrezGeneId":"2306"},{"alias":"FREAC-9","entrezGeneId":"2306"},{"alias":"FREAC9","entrezGeneId":"2306"},{"alias":"FKHL18","entrezGeneId":"2307"},{"alias":"FREAC10","entrezGeneId":"2307"},{"alias":"FKH1","entrezGeneId":"2308"},{"alias":"FKHR","entrezGeneId":"2308"},{"alias":"FOXO1A","entrezGeneId":"2308"},{"alias":"AF6q21","entrezGeneId":"2309"},{"alias":"FKHRL1","entrezGeneId":"2309"},{"alias":"FKHRL1P2","entrezGeneId":"2309"},{"alias":"FOXO2","entrezGeneId":"2309"},{"alias":"FOXO3A","entrezGeneId":"2309"},{"alias":"FKHRL1P1","entrezGeneId":"2310"},{"alias":"ZNF286C","entrezGeneId":"2310"},{"alias":"FKHRP1","entrezGeneId":"2311"},{"alias":"ATOD2","entrezGeneId":"2312"},{"alias":"BDPLT21","entrezGeneId":"2313"},{"alias":"EWSR2","entrezGeneId":"2313"},{"alias":"SIC-1","entrezGeneId":"2313"},{"alias":"FLI","entrezGeneId":"2314"},{"alias":"Fli1","entrezGeneId":"2314"},{"alias":"FLIL","entrezGeneId":"2314"},{"alias":"MART-1","entrezGeneId":"2315"},{"alias":"MART1","entrezGeneId":"2315"},{"alias":"ABP-280","entrezGeneId":"2316"},{"alias":"ABPX","entrezGeneId":"2316"},{"alias":"CSBS","entrezGeneId":"2316"},{"alias":"CVD1","entrezGeneId":"2316"},{"alias":"FLN","entrezGeneId":"2316"},{"alias":"FLN-A","entrezGeneId":"2316"},{"alias":"FLN1","entrezGeneId":"2316"},{"alias":"FMD","entrezGeneId":"2316"},{"alias":"MNS","entrezGeneId":"2316"},{"alias":"NHBP","entrezGeneId":"2316"},{"alias":"OPD","entrezGeneId":"2316"},{"alias":"OPD1","entrezGeneId":"2316"},{"alias":"OPD2","entrezGeneId":"2316"},{"alias":"XLVD","entrezGeneId":"2316"},{"alias":"XMVD","entrezGeneId":"2316"},{"alias":"ABP-278","entrezGeneId":"2317"},{"alias":"ABP-280","entrezGeneId":"2317"},{"alias":"AOI","entrezGeneId":"2317"},{"alias":"FH1","entrezGeneId":"2317"},{"alias":"FLN-B","entrezGeneId":"2317"},{"alias":"FLN1L","entrezGeneId":"2317"},{"alias":"LRS1","entrezGeneId":"2317"},{"alias":"SCT","entrezGeneId":"2317"},{"alias":"TABP","entrezGeneId":"2317"},{"alias":"TAP","entrezGeneId":"2317"},{"alias":"ABP-280","entrezGeneId":"2318"},{"alias":"ABP280A","entrezGeneId":"2318"},{"alias":"ABPA","entrezGeneId":"2318"},{"alias":"ABPL","entrezGeneId":"2318"},{"alias":"CMH26","entrezGeneId":"2318"},{"alias":"FLN2","entrezGeneId":"2318"},{"alias":"MFM5","entrezGeneId":"2318"},{"alias":"MPD4","entrezGeneId":"2318"},{"alias":"RCM5","entrezGeneId":"2318"},{"alias":"ECS-1","entrezGeneId":"2319"},{"alias":"ECS1","entrezGeneId":"2319"},{"alias":"ESA","entrezGeneId":"2319"},{"alias":"ESA1","entrezGeneId":"2319"},{"alias":"M17S1","entrezGeneId":"2319"},{"alias":"FLT","entrezGeneId":"2321"},{"alias":"FLT-1","entrezGeneId":"2321"},{"alias":"VEGFR-1","entrezGeneId":"2321"},{"alias":"VEGFR1","entrezGeneId":"2321"},{"alias":"CD135","entrezGeneId":"2322"},{"alias":"FLK-2","entrezGeneId":"2322"},{"alias":"FLK2","entrezGeneId":"2322"},{"alias":"STK1","entrezGeneId":"2322"},{"alias":"FL","entrezGeneId":"2323"},{"alias":"FLG3L","entrezGeneId":"2323"},{"alias":"FLT3L","entrezGeneId":"2323"},{"alias":"FLT-4","entrezGeneId":"2324"},{"alias":"FLT41","entrezGeneId":"2324"},{"alias":"LMPH1A","entrezGeneId":"2324"},{"alias":"PCL","entrezGeneId":"2324"},{"alias":"VEGFR-3","entrezGeneId":"2324"},{"alias":"VEGFR3","entrezGeneId":"2324"},{"alias":"FMO1B1","entrezGeneId":"2327"},{"alias":"dJ127D3.1","entrezGeneId":"2328"},{"alias":"FMOII","entrezGeneId":"2328"},{"alias":"TMAU","entrezGeneId":"2328"},{"alias":"FMO2","entrezGeneId":"2329"},{"alias":"FM","entrezGeneId":"2331"},{"alias":"SLRR2E","entrezGeneId":"2331"},{"alias":"FMRP","entrezGeneId":"2332"},{"alias":"FRAXA","entrezGeneId":"2332"},{"alias":"POF","entrezGeneId":"2332"},{"alias":"POF1","entrezGeneId":"2332"},{"alias":"FMR2","entrezGeneId":"2334"},{"alias":"FMR2P","entrezGeneId":"2334"},{"alias":"FRAXE","entrezGeneId":"2334"},{"alias":"MRX2","entrezGeneId":"2334"},{"alias":"OX19","entrezGeneId":"2334"},{"alias":"CIG","entrezGeneId":"2335"},{"alias":"ED-B","entrezGeneId":"2335"},{"alias":"FINC","entrezGeneId":"2335"},{"alias":"FN","entrezGeneId":"2335"},{"alias":"FNZ","entrezGeneId":"2335"},{"alias":"GFND","entrezGeneId":"2335"},{"alias":"GFND2","entrezGeneId":"2335"},{"alias":"LETS","entrezGeneId":"2335"},{"alias":"MSF","entrezGeneId":"2335"},{"alias":"SMDCF","entrezGeneId":"2335"},{"alias":"FPTA","entrezGeneId":"2339"},{"alias":"PGGT1A","entrezGeneId":"2339"},{"alias":"PTAR2","entrezGeneId":"2339"},{"alias":"FNTAL2","entrezGeneId":"2341"},{"alias":"FPTB","entrezGeneId":"2342"},{"alias":"FGCP","entrezGeneId":"2346"},{"alias":"FOLH","entrezGeneId":"2346"},{"alias":"GCP2","entrezGeneId":"2346"},{"alias":"GCPII","entrezGeneId":"2346"},{"alias":"mGCP","entrezGeneId":"2346"},{"alias":"NAALAD1","entrezGeneId":"2346"},{"alias":"NAALAdase","entrezGeneId":"2346"},{"alias":"PSM","entrezGeneId":"2346"},{"alias":"PSMA","entrezGeneId":"2346"},{"alias":"FBP","entrezGeneId":"2348"},{"alias":"FOLR","entrezGeneId":"2348"},{"alias":"BETA-HFR","entrezGeneId":"2350"},{"alias":"FBP","entrezGeneId":"2350"},{"alias":"FBP/PL-1","entrezGeneId":"2350"},{"alias":"FR-BETA","entrezGeneId":"2350"},{"alias":"FR-P3","entrezGeneId":"2350"},{"alias":"FR-G","entrezGeneId":"2352"},{"alias":"FR-gamma","entrezGeneId":"2352"},{"alias":"gamma-hFR","entrezGeneId":"2352"},{"alias":"AP-1","entrezGeneId":"2353"},{"alias":"C-FOS","entrezGeneId":"2353"},{"alias":"p55","entrezGeneId":"2353"},{"alias":"AP-1","entrezGeneId":"2354"},{"alias":"G0S3","entrezGeneId":"2354"},{"alias":"GOS3","entrezGeneId":"2354"},{"alias":"GOSB","entrezGeneId":"2354"},{"alias":"FRA2","entrezGeneId":"2355"},{"alias":"FMLP","entrezGeneId":"2357"},{"alias":"FPR","entrezGeneId":"2357"},{"alias":"ALXR","entrezGeneId":"2358"},{"alias":"FMLP-R-II","entrezGeneId":"2358"},{"alias":"FMLPX","entrezGeneId":"2358"},{"alias":"FPR2A","entrezGeneId":"2358"},{"alias":"FPRH1","entrezGeneId":"2358"},{"alias":"FPRH2","entrezGeneId":"2358"},{"alias":"FPRL1","entrezGeneId":"2358"},{"alias":"HM63","entrezGeneId":"2358"},{"alias":"LXA4R","entrezGeneId":"2358"},{"alias":"FML2_HUMAN","entrezGeneId":"2359"},{"alias":"FMLP-R-II","entrezGeneId":"2359"},{"alias":"FMLPY","entrezGeneId":"2359"},{"alias":"FPRH1","entrezGeneId":"2359"},{"alias":"FPRH2","entrezGeneId":"2359"},{"alias":"FPRL2","entrezGeneId":"2359"},{"alias":"RMLP-R-I","entrezGeneId":"2359"},{"alias":"CyaY","entrezGeneId":"2395"},{"alias":"FA","entrezGeneId":"2395"},{"alias":"FARR","entrezGeneId":"2395"},{"alias":"FRDA","entrezGeneId":"2395"},{"alias":"X25","entrezGeneId":"2395"},{"alias":"D7S486","entrezGeneId":"2414"},{"alias":"GTK","entrezGeneId":"2444"},{"alias":"PTK5","entrezGeneId":"2444"},{"alias":"RAK","entrezGeneId":"2444"},{"alias":"C16DELp12.1","entrezGeneId":"2464"},{"alias":"FRAP","entrezGeneId":"2475"},{"alias":"FRAP1","entrezGeneId":"2475"},{"alias":"FRAP2","entrezGeneId":"2475"},{"alias":"RAFT1","entrezGeneId":"2475"},{"alias":"RAPT1","entrezGeneId":"2475"},{"alias":"SKS","entrezGeneId":"2475"},{"alias":"FMR1","entrezGeneId":"2477"},{"alias":"FMR2","entrezGeneId":"2481"},{"alias":"FRG1A","entrezGeneId":"2483"},{"alias":"FSG1","entrezGeneId":"2483"},{"alias":"FRE","entrezGeneId":"2487"},{"alias":"FRITZ","entrezGeneId":"2487"},{"alias":"FRP-3","entrezGeneId":"2487"},{"alias":"FRZB-1","entrezGeneId":"2487"},{"alias":"FRZB-PEN","entrezGeneId":"2487"},{"alias":"FRZB1","entrezGeneId":"2487"},{"alias":"FZRB","entrezGeneId":"2487"},{"alias":"hFIZ","entrezGeneId":"2487"},{"alias":"OS1","entrezGeneId":"2487"},{"alias":"SFRP3","entrezGeneId":"2487"},{"alias":"SRFP3","entrezGeneId":"2487"},{"alias":"HH24","entrezGeneId":"2488"},{"alias":"FMD","entrezGeneId":"2489"},{"alias":"FSHD","entrezGeneId":"2489"},{"alias":"FSHD1A","entrezGeneId":"2489"},{"alias":"FSHMD","entrezGeneId":"2489"},{"alias":"FSHD1B","entrezGeneId":"2490"},{"alias":"CENP-I","entrezGeneId":"2491"},{"alias":"FSHPRH1","entrezGeneId":"2491"},{"alias":"LRPR1","entrezGeneId":"2491"},{"alias":"FSHR1","entrezGeneId":"2492"},{"alias":"FSHRO","entrezGeneId":"2492"},{"alias":"LGR1","entrezGeneId":"2492"},{"alias":"ODG1","entrezGeneId":"2492"},{"alias":"B1F","entrezGeneId":"2494"},{"alias":"B1F2","entrezGeneId":"2494"},{"alias":"CPF","entrezGeneId":"2494"},{"alias":"FTF","entrezGeneId":"2494"},{"alias":"FTZ-F1","entrezGeneId":"2494"},{"alias":"FTZ-F1beta","entrezGeneId":"2494"},{"alias":"hB1F-2","entrezGeneId":"2494"},{"alias":"LRH-1","entrezGeneId":"2494"},{"alias":"LRH1","entrezGeneId":"2494"},{"alias":"FHC","entrezGeneId":"2495"},{"alias":"FTH","entrezGeneId":"2495"},{"alias":"FTHL6","entrezGeneId":"2495"},{"alias":"HFE5","entrezGeneId":"2495"},{"alias":"PIG15","entrezGeneId":"2495"},{"alias":"PLIF","entrezGeneId":"2495"},{"alias":"FTHL1","entrezGeneId":"2496"},{"alias":"FTHL2","entrezGeneId":"2497"},{"alias":"FTHL3","entrezGeneId":"2498"},{"alias":"FTHL3P","entrezGeneId":"2498"},{"alias":"FTHL4","entrezGeneId":"2499"},{"alias":"FTHL7","entrezGeneId":"2500"},{"alias":"FTHL8","entrezGeneId":"2501"},{"alias":"FTHL10","entrezGeneId":"2502"},{"alias":"FTHL11","entrezGeneId":"2503"},{"alias":"FTHL12","entrezGeneId":"2504"},{"alias":"FTHL15","entrezGeneId":"2507"},{"alias":"FTH2","entrezGeneId":"2508"},{"alias":"FTHL16","entrezGeneId":"2508"},{"alias":"FTHL5","entrezGeneId":"2509"},{"alias":"FTHP1","entrezGeneId":"2509"},{"alias":"FTHL21","entrezGeneId":"2510"},{"alias":"FTHP2","entrezGeneId":"2510"},{"alias":"LFTD","entrezGeneId":"2512"},{"alias":"NBIA3","entrezGeneId":"2512"},{"alias":"CRYN1","entrezGeneId":"2515"},{"alias":"CRYN2","entrezGeneId":"2515"},{"alias":"CT15","entrezGeneId":"2515"},{"alias":"FTNB","entrezGeneId":"2515"},{"alias":"PH-30b","entrezGeneId":"2515"},{"alias":"PH30","entrezGeneId":"2515"},{"alias":"PH30-beta","entrezGeneId":"2515"},{"alias":"AD4BP","entrezGeneId":"2516"},{"alias":"ELP","entrezGeneId":"2516"},{"alias":"FTZ1","entrezGeneId":"2516"},{"alias":"FTZF1","entrezGeneId":"2516"},{"alias":"hSF-1","entrezGeneId":"2516"},{"alias":"POF7","entrezGeneId":"2516"},{"alias":"SF-1","entrezGeneId":"2516"},{"alias":"SF1","entrezGeneId":"2516"},{"alias":"SPGF8","entrezGeneId":"2516"},{"alias":"SRXX4","entrezGeneId":"2516"},{"alias":"SRXY3","entrezGeneId":"2516"},{"alias":"FUCA","entrezGeneId":"2517"},{"alias":"FUCA1P","entrezGeneId":"2518"},{"alias":"dJ20N2.5","entrezGeneId":"2519"},{"alias":"GAS","entrezGeneId":"2520"},{"alias":"ALS6","entrezGeneId":"2521"},{"alias":"ETM4","entrezGeneId":"2521"},{"alias":"FUS1","entrezGeneId":"2521"},{"alias":"HNRNPP2","entrezGeneId":"2521"},{"alias":"POMP75","entrezGeneId":"2521"},{"alias":"TLS","entrezGeneId":"2521"},{"alias":"H","entrezGeneId":"2523"},{"alias":"HH","entrezGeneId":"2523"},{"alias":"HSC","entrezGeneId":"2523"},{"alias":"B12QTL1","entrezGeneId":"2524"},{"alias":"SE","entrezGeneId":"2524"},{"alias":"Se2","entrezGeneId":"2524"},{"alias":"SEC2","entrezGeneId":"2524"},{"alias":"sej","entrezGeneId":"2524"},{"alias":"CD174","entrezGeneId":"2525"},{"alias":"FT3B","entrezGeneId":"2525"},{"alias":"FucT-III","entrezGeneId":"2525"},{"alias":"LE","entrezGeneId":"2525"},{"alias":"Les","entrezGeneId":"2525"},{"alias":"CD15","entrezGeneId":"2526"},{"alias":"ELFT","entrezGeneId":"2526"},{"alias":"FCT3A","entrezGeneId":"2526"},{"alias":"FUC-TIV","entrezGeneId":"2526"},{"alias":"FUTIV","entrezGeneId":"2526"},{"alias":"LeX","entrezGeneId":"2526"},{"alias":"SSEA-1","entrezGeneId":"2526"},{"alias":"FUC-TV","entrezGeneId":"2527"},{"alias":"FCT3A","entrezGeneId":"2528"},{"alias":"FT1A","entrezGeneId":"2528"},{"alias":"Fuc-TVI","entrezGeneId":"2528"},{"alias":"FucT-VI","entrezGeneId":"2528"},{"alias":"FucT-VII","entrezGeneId":"2529"},{"alias":"DHSR","entrezGeneId":"2531"},{"alias":"EKVP4","entrezGeneId":"2531"},{"alias":"FVT1","entrezGeneId":"2531"},{"alias":"SDR35C1","entrezGeneId":"2531"},{"alias":"CCBP1","entrezGeneId":"2532"},{"alias":"CD234","entrezGeneId":"2532"},{"alias":"DARC","entrezGeneId":"2532"},{"alias":"DARC/ACKR1","entrezGeneId":"2532"},{"alias":"Dfy","entrezGeneId":"2532"},{"alias":"FY","entrezGeneId":"2532"},{"alias":"GPD","entrezGeneId":"2532"},{"alias":"GpFy","entrezGeneId":"2532"},{"alias":"WBCQ1","entrezGeneId":"2532"},{"alias":"ADAP","entrezGeneId":"2533"},{"alias":"FYB","entrezGeneId":"2533"},{"alias":"PRO0823","entrezGeneId":"2533"},{"alias":"SLAP-130","entrezGeneId":"2533"},{"alias":"SLAP130","entrezGeneId":"2533"},{"alias":"THC3","entrezGeneId":"2533"},{"alias":"p59-FYN","entrezGeneId":"2534"},{"alias":"SLK","entrezGeneId":"2534"},{"alias":"SYN","entrezGeneId":"2534"},{"alias":"fz-2","entrezGeneId":"2535"},{"alias":"Fz2","entrezGeneId":"2535"},{"alias":"fzE2","entrezGeneId":"2535"},{"alias":"hFz2","entrezGeneId":"2535"},{"alias":"6-16","entrezGeneId":"2537"},{"alias":"FAM14C","entrezGeneId":"2537"},{"alias":"G1P3","entrezGeneId":"2537"},{"alias":"IFI-6-16","entrezGeneId":"2537"},{"alias":"IFI616","entrezGeneId":"2537"},{"alias":"G6Pase","entrezGeneId":"2538"},{"alias":"G6PC1","entrezGeneId":"2538"},{"alias":"G6PT","entrezGeneId":"2538"},{"alias":"GSD1","entrezGeneId":"2538"},{"alias":"GSD1a","entrezGeneId":"2538"},{"alias":"G6PD1","entrezGeneId":"2539"},{"alias":"GSD1aSP","entrezGeneId":"2541"},{"alias":"G6PT1","entrezGeneId":"2542"},{"alias":"G6PT2","entrezGeneId":"2542"},{"alias":"G6PT3","entrezGeneId":"2542"},{"alias":"GSD1b","entrezGeneId":"2542"},{"alias":"GSD1c","entrezGeneId":"2542"},{"alias":"GSD1d","entrezGeneId":"2542"},{"alias":"PRO0685","entrezGeneId":"2542"},{"alias":"TRG-19","entrezGeneId":"2542"},{"alias":"TRG19","entrezGeneId":"2542"},{"alias":"CT4.1","entrezGeneId":"2543"},{"alias":"GAGE-1","entrezGeneId":"2543"},{"alias":"CTC75","entrezGeneId":"2547"},{"alias":"CTCBF","entrezGeneId":"2547"},{"alias":"G22P1","entrezGeneId":"2547"},{"alias":"KU70","entrezGeneId":"2547"},{"alias":"ML8","entrezGeneId":"2547"},{"alias":"TLAA","entrezGeneId":"2547"},{"alias":"LYAG","entrezGeneId":"2548"},{"alias":"GABABR1","entrezGeneId":"2550"},{"alias":"GABBR1-3","entrezGeneId":"2550"},{"alias":"GB1","entrezGeneId":"2550"},{"alias":"GPRC3A","entrezGeneId":"2550"},{"alias":"E4TF1-60","entrezGeneId":"2551"},{"alias":"E4TF1A","entrezGeneId":"2551"},{"alias":"NFT2","entrezGeneId":"2551"},{"alias":"NRF2","entrezGeneId":"2551"},{"alias":"NRF2A","entrezGeneId":"2551"},{"alias":"RCH04A07","entrezGeneId":"2551"},{"alias":"BABPB2","entrezGeneId":"2553"},{"alias":"E4TF1","entrezGeneId":"2553"},{"alias":"E4TF1-47","entrezGeneId":"2553"},{"alias":"E4TF1-53","entrezGeneId":"2553"},{"alias":"E4TF1B","entrezGeneId":"2553"},{"alias":"GABPB","entrezGeneId":"2553"},{"alias":"GABPB-1","entrezGeneId":"2553"},{"alias":"GABPB2","entrezGeneId":"2553"},{"alias":"NRF2B1","entrezGeneId":"2553"},{"alias":"NRF2B2","entrezGeneId":"2553"},{"alias":"ECA4","entrezGeneId":"2554"},{"alias":"EIEE19","entrezGeneId":"2554"},{"alias":"EJM","entrezGeneId":"2554"},{"alias":"EJM5","entrezGeneId":"2554"},{"alias":"EIEE45","entrezGeneId":"2560"},{"alias":"ICEE2","entrezGeneId":"2561"},{"alias":"ECA5","entrezGeneId":"2562"},{"alias":"EIEE43","entrezGeneId":"2562"},{"alias":"EIG10","entrezGeneId":"2563"},{"alias":"EJM7","entrezGeneId":"2563"},{"alias":"GEFSP5","entrezGeneId":"2563"},{"alias":"CAE2","entrezGeneId":"2566"},{"alias":"ECA2","entrezGeneId":"2566"},{"alias":"GEFSP3","entrezGeneId":"2566"},{"alias":"CPSQ1","entrezGeneId":"2571"},{"alias":"GAD","entrezGeneId":"2571"},{"alias":"SCP","entrezGeneId":"2571"},{"alias":"GAD65","entrezGeneId":"2572"},{"alias":"CT4.2","entrezGeneId":"2574"},{"alias":"GAGE-2","entrezGeneId":"2574"},{"alias":"GAGE-2C","entrezGeneId":"2574"},{"alias":"GAGE2","entrezGeneId":"2574"},{"alias":"CT4.4","entrezGeneId":"2576"},{"alias":"CT4.5","entrezGeneId":"2577"},{"alias":"CT4.6","entrezGeneId":"2578"},{"alias":"AL4","entrezGeneId":"2579"},{"alias":"CT4.7","entrezGeneId":"2579"},{"alias":"GAGE-7","entrezGeneId":"2579"},{"alias":"DNAJ26","entrezGeneId":"2580"},{"alias":"DNAJC26","entrezGeneId":"2580"},{"alias":"SDR1E1","entrezGeneId":"2582"},{"alias":"GALGT","entrezGeneId":"2583"},{"alias":"GalNAc-T","entrezGeneId":"2583"},{"alias":"GALNACT","entrezGeneId":"2583"},{"alias":"SPG26","entrezGeneId":"2583"},{"alias":"GALK","entrezGeneId":"2584"},{"alias":"GK1","entrezGeneId":"2584"},{"alias":"HEL-S-19","entrezGeneId":"2584"},{"alias":"GK2","entrezGeneId":"2585"},{"alias":"GALNR","entrezGeneId":"2587"},{"alias":"GALNR1","entrezGeneId":"2587"},{"alias":"GalN6S","entrezGeneId":"2588"},{"alias":"GALNAC6S","entrezGeneId":"2588"},{"alias":"GAS","entrezGeneId":"2588"},{"alias":"MPS4A","entrezGeneId":"2588"},{"alias":"GALNAC-T1","entrezGeneId":"2589"},{"alias":"GalNAc-T2","entrezGeneId":"2590"},{"alias":"GalNAc-T3","entrezGeneId":"2591"},{"alias":"HFTC","entrezGeneId":"2591"},{"alias":"HHS","entrezGeneId":"2591"},{"alias":"CCDS2","entrezGeneId":"2593"},{"alias":"HEL-S-20","entrezGeneId":"2593"},{"alias":"PIG2","entrezGeneId":"2593"},{"alias":"TP53I2","entrezGeneId":"2593"},{"alias":"B-50","entrezGeneId":"2596"},{"alias":"PP46","entrezGeneId":"2596"},{"alias":"G3PD","entrezGeneId":"2597"},{"alias":"GAPD","entrezGeneId":"2597"},{"alias":"HEL-S-162eP","entrezGeneId":"2597"},{"alias":"GAPDHL4","entrezGeneId":"2601"},{"alias":"GAPDL4","entrezGeneId":"2601"},{"alias":"GAPDHL12","entrezGeneId":"2609"},{"alias":"GAPDL12","entrezGeneId":"2609"},{"alias":"GAPDHL14","entrezGeneId":"2611"},{"alias":"GAPDL14","entrezGeneId":"2611"},{"alias":"GAPDHL16","entrezGeneId":"2613"},{"alias":"GAPDL16","entrezGeneId":"2613"},{"alias":"D11S833E","entrezGeneId":"2615"},{"alias":"GARP","entrezGeneId":"2615"},{"alias":"GAPDHL2","entrezGeneId":"2616"},{"alias":"GAPDL2","entrezGeneId":"2616"},{"alias":"GAPDP1","entrezGeneId":"2616"},{"alias":"CMT2D","entrezGeneId":"2617"},{"alias":"DSMAV","entrezGeneId":"2617"},{"alias":"GlyRS","entrezGeneId":"2617"},{"alias":"HMN5","entrezGeneId":"2617"},{"alias":"SMAD1","entrezGeneId":"2617"},{"alias":"AIRS","entrezGeneId":"2618"},{"alias":"GARS","entrezGeneId":"2618"},{"alias":"GARTF","entrezGeneId":"2618"},{"alias":"PAIS","entrezGeneId":"2618"},{"alias":"PGFT","entrezGeneId":"2618"},{"alias":"PRGS","entrezGeneId":"2618"},{"alias":"GAS-2","entrezGeneId":"2620"},{"alias":"AXLLG","entrezGeneId":"2621"},{"alias":"AXSF","entrezGeneId":"2621"},{"alias":"CILD33","entrezGeneId":"2622"},{"alias":"DRC4","entrezGeneId":"2622"},{"alias":"GAS11","entrezGeneId":"2622"},{"alias":"ERYF1","entrezGeneId":"2623"},{"alias":"GATA-1","entrezGeneId":"2623"},{"alias":"GF-1","entrezGeneId":"2623"},{"alias":"GF1","entrezGeneId":"2623"},{"alias":"NF-E1","entrezGeneId":"2623"},{"alias":"NFE1","entrezGeneId":"2623"},{"alias":"XLANP","entrezGeneId":"2623"},{"alias":"XLTDA","entrezGeneId":"2623"},{"alias":"XLTT","entrezGeneId":"2623"},{"alias":"DCML","entrezGeneId":"2624"},{"alias":"IMD21","entrezGeneId":"2624"},{"alias":"MONOMAC","entrezGeneId":"2624"},{"alias":"NFE1B","entrezGeneId":"2624"},{"alias":"HDR","entrezGeneId":"2625"},{"alias":"HDRS","entrezGeneId":"2625"},{"alias":"ASD2","entrezGeneId":"2626"},{"alias":"TACHD","entrezGeneId":"2626"},{"alias":"TOF","entrezGeneId":"2626"},{"alias":"VSD1","entrezGeneId":"2626"},{"alias":"AGAT","entrezGeneId":"2628"},{"alias":"AT","entrezGeneId":"2628"},{"alias":"CCDS3","entrezGeneId":"2628"},{"alias":"GBA1","entrezGeneId":"2629"},{"alias":"GCB","entrezGeneId":"2629"},{"alias":"GLUC","entrezGeneId":"2629"},{"alias":"GBAP","entrezGeneId":"2630"},{"alias":"GBAS","entrezGeneId":"2631"},{"alias":"APBD","entrezGeneId":"2632"},{"alias":"GBE","entrezGeneId":"2632"},{"alias":"GSD4","entrezGeneId":"2632"},{"alias":"Huh-17","entrezGeneId":"2636"},{"alias":"DBP","entrezGeneId":"2638"},{"alias":"DBP-maf","entrezGeneId":"2638"},{"alias":"DBP/GC","entrezGeneId":"2638"},{"alias":"Gc-MAF","entrezGeneId":"2638"},{"alias":"GcMAF","entrezGeneId":"2638"},{"alias":"GRD3","entrezGeneId":"2638"},{"alias":"HEL-S-51","entrezGeneId":"2638"},{"alias":"VDB","entrezGeneId":"2638"},{"alias":"VDBG","entrezGeneId":"2638"},{"alias":"VDBP","entrezGeneId":"2638"},{"alias":"ACAD5","entrezGeneId":"2639"},{"alias":"GCD","entrezGeneId":"2639"},{"alias":"GLP-1","entrezGeneId":"2641"},{"alias":"GLP1","entrezGeneId":"2641"},{"alias":"GLP2","entrezGeneId":"2641"},{"alias":"GRPP","entrezGeneId":"2641"},{"alias":"GGR","entrezGeneId":"2642"},{"alias":"GL-R","entrezGeneId":"2642"},{"alias":"DYT14","entrezGeneId":"2643"},{"alias":"DYT5","entrezGeneId":"2643"},{"alias":"DYT5a","entrezGeneId":"2643"},{"alias":"GCH","entrezGeneId":"2643"},{"alias":"GTP-CH-1","entrezGeneId":"2643"},{"alias":"GTPCH1","entrezGeneId":"2643"},{"alias":"HPABH4B","entrezGeneId":"2643"},{"alias":"GFRP","entrezGeneId":"2644"},{"alias":"HsT16933","entrezGeneId":"2644"},{"alias":"P35","entrezGeneId":"2644"},{"alias":"FGQTL3","entrezGeneId":"2645"},{"alias":"GK","entrezGeneId":"2645"},{"alias":"GLK","entrezGeneId":"2645"},{"alias":"HHF3","entrezGeneId":"2645"},{"alias":"HK4","entrezGeneId":"2645"},{"alias":"HKIV","entrezGeneId":"2645"},{"alias":"HXKP","entrezGeneId":"2645"},{"alias":"LGLK","entrezGeneId":"2645"},{"alias":"MODY2","entrezGeneId":"2645"},{"alias":"FGQTL5","entrezGeneId":"2646"},{"alias":"GKRP","entrezGeneId":"2646"},{"alias":"BLOS1","entrezGeneId":"2647"},{"alias":"BORCS1","entrezGeneId":"2647"},{"alias":"GCN5L1","entrezGeneId":"2647"},{"alias":"MICoA","entrezGeneId":"2647"},{"alias":"RT14","entrezGeneId":"2647"},{"alias":"GCN5","entrezGeneId":"2648"},{"alias":"GCN5L2","entrezGeneId":"2648"},{"alias":"hGCN5","entrezGeneId":"2648"},{"alias":"PCAF-b","entrezGeneId":"2648"},{"alias":"CT150","entrezGeneId":"2649"},{"alias":"GCNF","entrezGeneId":"2649"},{"alias":"GCNF1","entrezGeneId":"2649"},{"alias":"hGCNF","entrezGeneId":"2649"},{"alias":"hRTR","entrezGeneId":"2649"},{"alias":"NR61","entrezGeneId":"2649"},{"alias":"RTR","entrezGeneId":"2649"},{"alias":"C2GNT","entrezGeneId":"2650"},{"alias":"C2GNT-L","entrezGeneId":"2650"},{"alias":"C2GNT1","entrezGeneId":"2650"},{"alias":"G6NT","entrezGeneId":"2650"},{"alias":"NACGT2","entrezGeneId":"2650"},{"alias":"NAGCT2","entrezGeneId":"2650"},{"alias":"bA360O19.2","entrezGeneId":"2651"},{"alias":"bA421M1.1","entrezGeneId":"2651"},{"alias":"CCAT","entrezGeneId":"2651"},{"alias":"CTRCT13","entrezGeneId":"2651"},{"alias":"GCNT2C","entrezGeneId":"2651"},{"alias":"GCNT5","entrezGeneId":"2651"},{"alias":"IGNT","entrezGeneId":"2651"},{"alias":"II","entrezGeneId":"2651"},{"alias":"NACGT1","entrezGeneId":"2651"},{"alias":"NAGCT1","entrezGeneId":"2651"},{"alias":"ULG3","entrezGeneId":"2651"},{"alias":"CBBM","entrezGeneId":"2652"},{"alias":"CBD","entrezGeneId":"2652"},{"alias":"COD5","entrezGeneId":"2652"},{"alias":"GCP","entrezGeneId":"2652"},{"alias":"GOP","entrezGeneId":"2652"},{"alias":"OPN1MW1","entrezGeneId":"2652"},{"alias":"GCE","entrezGeneId":"2653"},{"alias":"NKH","entrezGeneId":"2653"},{"alias":"STA","entrezGeneId":"2656"},{"alias":"TS","entrezGeneId":"2656"},{"alias":"TSY","entrezGeneId":"2656"},{"alias":"DORV","entrezGeneId":"2657"},{"alias":"DTGA3","entrezGeneId":"2657"},{"alias":"RAI","entrezGeneId":"2657"},{"alias":"BMP-9","entrezGeneId":"2658"},{"alias":"BMP9","entrezGeneId":"2658"},{"alias":"HHT5","entrezGeneId":"2658"},{"alias":"GDF8","entrezGeneId":"2660"},{"alias":"MSLHP","entrezGeneId":"2660"},{"alias":"BIP","entrezGeneId":"2662"},{"alias":"BMP-3b","entrezGeneId":"2662"},{"alias":"BMP3B","entrezGeneId":"2662"},{"alias":"1A","entrezGeneId":"2664"},{"alias":"GDIL","entrezGeneId":"2664"},{"alias":"MRX41","entrezGeneId":"2664"},{"alias":"MRX48","entrezGeneId":"2664"},{"alias":"OPHN2","entrezGeneId":"2664"},{"alias":"RABGD1A","entrezGeneId":"2664"},{"alias":"RABGDIA","entrezGeneId":"2664"},{"alias":"XAP-4","entrezGeneId":"2664"},{"alias":"HEL-S-46e","entrezGeneId":"2665"},{"alias":"RABGDIB","entrezGeneId":"2665"},{"alias":"GDI2P","entrezGeneId":"2667"},{"alias":"ATF","entrezGeneId":"2668"},{"alias":"ATF1","entrezGeneId":"2668"},{"alias":"ATF2","entrezGeneId":"2668"},{"alias":"HFB1-GDNF","entrezGeneId":"2668"},{"alias":"HSCR3","entrezGeneId":"2668"},{"alias":"KIR","entrezGeneId":"2669"},{"alias":"ALXDRD","entrezGeneId":"2670"},{"alias":"ALR","entrezGeneId":"2671"},{"alias":"ERV1","entrezGeneId":"2671"},{"alias":"HERV1","entrezGeneId":"2671"},{"alias":"HPO","entrezGeneId":"2671"},{"alias":"HPO1","entrezGeneId":"2671"},{"alias":"HPO2","entrezGeneId":"2671"},{"alias":"HSS","entrezGeneId":"2671"},{"alias":"GFI-1","entrezGeneId":"2672"},{"alias":"GFI1A","entrezGeneId":"2672"},{"alias":"SCN2","entrezGeneId":"2672"},{"alias":"ZNF163","entrezGeneId":"2672"},{"alias":"CMS12","entrezGeneId":"2673"},{"alias":"CMSTA1","entrezGeneId":"2673"},{"alias":"GFA","entrezGeneId":"2673"},{"alias":"GFAT","entrezGeneId":"2673"},{"alias":"GFAT 1","entrezGeneId":"2673"},{"alias":"GFAT1","entrezGeneId":"2673"},{"alias":"GFAT1m","entrezGeneId":"2673"},{"alias":"GFPT","entrezGeneId":"2673"},{"alias":"GFPT1L","entrezGeneId":"2673"},{"alias":"MSLG","entrezGeneId":"2673"},{"alias":"GDNFR","entrezGeneId":"2674"},{"alias":"GDNFRA","entrezGeneId":"2674"},{"alias":"GFR-ALPHA-1","entrezGeneId":"2674"},{"alias":"RET1L","entrezGeneId":"2674"},{"alias":"RETL1","entrezGeneId":"2674"},{"alias":"TRNR1","entrezGeneId":"2674"},{"alias":"GDNFRB","entrezGeneId":"2675"},{"alias":"NRTNR-ALPHA","entrezGeneId":"2675"},{"alias":"NTNRA","entrezGeneId":"2675"},{"alias":"RETL2","entrezGeneId":"2675"},{"alias":"TRNR2","entrezGeneId":"2675"},{"alias":"GDNFR3","entrezGeneId":"2676"},{"alias":"VKCFD1","entrezGeneId":"2677"},{"alias":"CD224","entrezGeneId":"2678"},{"alias":"D22S672","entrezGeneId":"2678"},{"alias":"D22S732","entrezGeneId":"2678"},{"alias":"GGT","entrezGeneId":"2678"},{"alias":"GGT 1","entrezGeneId":"2678"},{"alias":"GTG","entrezGeneId":"2678"},{"alias":"GGT3","entrezGeneId":"2679"},{"alias":"a1/3GTP","entrezGeneId":"2681"},{"alias":"GGTA","entrezGeneId":"2681"},{"alias":"GGTA1","entrezGeneId":"2681"},{"alias":"GLYT2","entrezGeneId":"2681"},{"alias":"B4GAL-T1","entrezGeneId":"2683"},{"alias":"beta4Gal-T1","entrezGeneId":"2683"},{"alias":"CDG2D","entrezGeneId":"2683"},{"alias":"GGTB2","entrezGeneId":"2683"},{"alias":"GT1","entrezGeneId":"2683"},{"alias":"GTB","entrezGeneId":"2683"},{"alias":"D20S101","entrezGeneId":"2686"},{"alias":"GGT4","entrezGeneId":"2686"},{"alias":"GGTL3","entrezGeneId":"2686"},{"alias":"GGTL5","entrezGeneId":"2686"},{"alias":"GGL","entrezGeneId":"2687"},{"alias":"GGT 5","entrezGeneId":"2687"},{"alias":"GGT-REL","entrezGeneId":"2687"},{"alias":"GGTLA1","entrezGeneId":"2687"},{"alias":"GH","entrezGeneId":"2688"},{"alias":"GH-N","entrezGeneId":"2688"},{"alias":"GHB5","entrezGeneId":"2688"},{"alias":"GHN","entrezGeneId":"2688"},{"alias":"hGH-N","entrezGeneId":"2688"},{"alias":"IGHD1B","entrezGeneId":"2688"},{"alias":"GH-V","entrezGeneId":"2689"},{"alias":"GHB2","entrezGeneId":"2689"},{"alias":"GHL","entrezGeneId":"2689"},{"alias":"GHV","entrezGeneId":"2689"},{"alias":"hGH-V","entrezGeneId":"2689"},{"alias":"GHBP","entrezGeneId":"2690"},{"alias":"GHIP","entrezGeneId":"2690"},{"alias":"GHRF","entrezGeneId":"2691"},{"alias":"GRF","entrezGeneId":"2691"},{"alias":"INN","entrezGeneId":"2691"},{"alias":"GHRFR","entrezGeneId":"2692"},{"alias":"GRFR","entrezGeneId":"2692"},{"alias":"IGHD1B","entrezGeneId":"2692"},{"alias":"GHDP","entrezGeneId":"2693"},{"alias":"IF","entrezGeneId":"2694"},{"alias":"IFMH","entrezGeneId":"2694"},{"alias":"INF","entrezGeneId":"2694"},{"alias":"TCN3","entrezGeneId":"2694"},{"alias":"PGQTL2","entrezGeneId":"2696"},{"alias":"AVSD3","entrezGeneId":"2697"},{"alias":"CMDR","entrezGeneId":"2697"},{"alias":"CX43","entrezGeneId":"2697"},{"alias":"EKVP","entrezGeneId":"2697"},{"alias":"EKVP3","entrezGeneId":"2697"},{"alias":"GJAL","entrezGeneId":"2697"},{"alias":"HLHS1","entrezGeneId":"2697"},{"alias":"HSS","entrezGeneId":"2697"},{"alias":"ODDD","entrezGeneId":"2697"},{"alias":"PPKCA","entrezGeneId":"2697"},{"alias":"CTRCT14","entrezGeneId":"2700"},{"alias":"CX46","entrezGeneId":"2700"},{"alias":"CZP3","entrezGeneId":"2700"},{"alias":"CX37","entrezGeneId":"2701"},{"alias":"ATFB11","entrezGeneId":"2702"},{"alias":"CX40","entrezGeneId":"2702"},{"alias":"CAE","entrezGeneId":"2703"},{"alias":"CAE1","entrezGeneId":"2703"},{"alias":"CTRCT1","entrezGeneId":"2703"},{"alias":"CX50","entrezGeneId":"2703"},{"alias":"CZP1","entrezGeneId":"2703"},{"alias":"MP70","entrezGeneId":"2703"},{"alias":"CMTX","entrezGeneId":"2705"},{"alias":"CMTX1","entrezGeneId":"2705"},{"alias":"CX32","entrezGeneId":"2705"},{"alias":"CX26","entrezGeneId":"2706"},{"alias":"DFNA3","entrezGeneId":"2706"},{"alias":"DFNA3A","entrezGeneId":"2706"},{"alias":"DFNB1","entrezGeneId":"2706"},{"alias":"DFNB1A","entrezGeneId":"2706"},{"alias":"HID","entrezGeneId":"2706"},{"alias":"KID","entrezGeneId":"2706"},{"alias":"NSRD1","entrezGeneId":"2706"},{"alias":"PPK","entrezGeneId":"2706"},{"alias":"CX31","entrezGeneId":"2707"},{"alias":"DFNA2","entrezGeneId":"2707"},{"alias":"DFNA2B","entrezGeneId":"2707"},{"alias":"EKV","entrezGeneId":"2707"},{"alias":"EKVP1","entrezGeneId":"2707"},{"alias":"CX31.1","entrezGeneId":"2709"},{"alias":"GK1","entrezGeneId":"2710"},{"alias":"GKD","entrezGeneId":"2710"},{"alias":"GKP2","entrezGeneId":"2712"},{"alias":"GKTA","entrezGeneId":"2712"},{"alias":"GKP3","entrezGeneId":"2713"},{"alias":"GKTB","entrezGeneId":"2713"},{"alias":"GKP6","entrezGeneId":"2716"},{"alias":"GALA","entrezGeneId":"2717"},{"alias":"DGSX","entrezGeneId":"2719"},{"alias":"GTR2-2","entrezGeneId":"2719"},{"alias":"MXR7","entrezGeneId":"2719"},{"alias":"OCI-5","entrezGeneId":"2719"},{"alias":"SDYS","entrezGeneId":"2719"},{"alias":"SGB","entrezGeneId":"2719"},{"alias":"SGBS","entrezGeneId":"2719"},{"alias":"SGBS1","entrezGeneId":"2719"},{"alias":"EBP","entrezGeneId":"2720"},{"alias":"ELNR1","entrezGeneId":"2720"},{"alias":"MPS4B","entrezGeneId":"2720"},{"alias":"GCL","entrezGeneId":"2729"},{"alias":"GCS","entrezGeneId":"2729"},{"alias":"GLCL","entrezGeneId":"2729"},{"alias":"GLCLC","entrezGeneId":"2729"},{"alias":"GLCLR","entrezGeneId":"2730"},{"alias":"GCE","entrezGeneId":"2731"},{"alias":"GCSP","entrezGeneId":"2731"},{"alias":"HYGN1","entrezGeneId":"2731"},{"alias":"GLDCP","entrezGeneId":"2732"},{"alias":"GLE1L","entrezGeneId":"2733"},{"alias":"hGLE1","entrezGeneId":"2733"},{"alias":"LCCS","entrezGeneId":"2733"},{"alias":"LCCS1","entrezGeneId":"2733"},{"alias":"CFR-1","entrezGeneId":"2734"},{"alias":"ESL-1","entrezGeneId":"2734"},{"alias":"MG-160","entrezGeneId":"2734"},{"alias":"MG160","entrezGeneId":"2734"},{"alias":"GLI","entrezGeneId":"2735"},{"alias":"CJS","entrezGeneId":"2736"},{"alias":"HPE9","entrezGeneId":"2736"},{"alias":"PHS2","entrezGeneId":"2736"},{"alias":"THP1","entrezGeneId":"2736"},{"alias":"THP2","entrezGeneId":"2736"},{"alias":"ACLS","entrezGeneId":"2737"},{"alias":"GCPS","entrezGeneId":"2737"},{"alias":"GLI3-190","entrezGeneId":"2737"},{"alias":"GLI3FL","entrezGeneId":"2737"},{"alias":"PAP-A","entrezGeneId":"2737"},{"alias":"PAPA","entrezGeneId":"2737"},{"alias":"PAPA1","entrezGeneId":"2737"},{"alias":"PAPB","entrezGeneId":"2737"},{"alias":"PHS","entrezGeneId":"2737"},{"alias":"PPDIV","entrezGeneId":"2737"},{"alias":"HKR4","entrezGeneId":"2738"},{"alias":"ZNF928","entrezGeneId":"2738"},{"alias":"GLOD1","entrezGeneId":"2739"},{"alias":"GLYI","entrezGeneId":"2739"},{"alias":"HEL-S-74","entrezGeneId":"2739"},{"alias":"GLP-1","entrezGeneId":"2740"},{"alias":"GLP-1-R","entrezGeneId":"2740"},{"alias":"GLP-1R","entrezGeneId":"2740"},{"alias":"HKPX1","entrezGeneId":"2741"},{"alias":"STHE","entrezGeneId":"2741"},{"alias":"GLR","entrezGeneId":"2742"},{"alias":"HKPX2","entrezGeneId":"2743"},{"alias":"AAD20","entrezGeneId":"2744"},{"alias":"GAC","entrezGeneId":"2744"},{"alias":"GAM","entrezGeneId":"2744"},{"alias":"GLS1","entrezGeneId":"2744"},{"alias":"KGA","entrezGeneId":"2744"},{"alias":"GRX","entrezGeneId":"2745"},{"alias":"GRX1","entrezGeneId":"2745"},{"alias":"GDH","entrezGeneId":"2746"},{"alias":"GDH1","entrezGeneId":"2746"},{"alias":"GLUD","entrezGeneId":"2746"},{"alias":"GDH2","entrezGeneId":"2747"},{"alias":"GLUDP1","entrezGeneId":"2747"},{"alias":"C10orf102","entrezGeneId":"2749"},{"alias":"GLUDP3","entrezGeneId":"2749"},{"alias":"GLUDP4","entrezGeneId":"2750"},{"alias":"GLUDP5","entrezGeneId":"2751"},{"alias":"GLNS","entrezGeneId":"2752"},{"alias":"GS","entrezGeneId":"2752"},{"alias":"PIG43","entrezGeneId":"2752"},{"alias":"PIG59","entrezGeneId":"2752"},{"alias":"GLULL1","entrezGeneId":"2753"},{"alias":"GLULL2","entrezGeneId":"2754"},{"alias":"GM2-AP","entrezGeneId":"2760"},{"alias":"SAP-3","entrezGeneId":"2760"},{"alias":"GM2AP","entrezGeneId":"2761"},{"alias":"GMD","entrezGeneId":"2762"},{"alias":"SDR3E1","entrezGeneId":"2762"},{"alias":"GMF","entrezGeneId":"2764"},{"alias":"LY6DL","entrezGeneId":"2765"},{"alias":"GMPR 1","entrezGeneId":"2766"},{"alias":"GMPR1","entrezGeneId":"2766"},{"alias":"FBH","entrezGeneId":"2767"},{"alias":"FBH2","entrezGeneId":"2767"},{"alias":"FHH2","entrezGeneId":"2767"},{"alias":"GNA-11","entrezGeneId":"2767"},{"alias":"HHC2","entrezGeneId":"2767"},{"alias":"HYPOC2","entrezGeneId":"2767"},{"alias":"gep","entrezGeneId":"2768"},{"alias":"NNX3","entrezGeneId":"2768"},{"alias":"RMP","entrezGeneId":"2768"},{"alias":"GNA16","entrezGeneId":"2769"},{"alias":"Gi","entrezGeneId":"2770"},{"alias":"GIP","entrezGeneId":"2771"},{"alias":"GNAI2B","entrezGeneId":"2771"},{"alias":"H_LUCA15.1","entrezGeneId":"2771"},{"alias":"H_LUCA16.1","entrezGeneId":"2771"},{"alias":"GNAI2A","entrezGeneId":"2772"},{"alias":"GNAI2L","entrezGeneId":"2772"},{"alias":"87U6","entrezGeneId":"2773"},{"alias":"ARCND1","entrezGeneId":"2773"},{"alias":"DYT25","entrezGeneId":"2774"},{"alias":"EIEE17","entrezGeneId":"2775"},{"alias":"G-ALPHA-o","entrezGeneId":"2775"},{"alias":"GNAO","entrezGeneId":"2775"},{"alias":"HLA-DQB1","entrezGeneId":"2775"},{"alias":"NEDIM","entrezGeneId":"2775"},{"alias":"CMC1","entrezGeneId":"2776"},{"alias":"G-ALPHA-q","entrezGeneId":"2776"},{"alias":"GAQ","entrezGeneId":"2776"},{"alias":"SWS","entrezGeneId":"2776"},{"alias":"GNAQP","entrezGeneId":"2777"},{"alias":"AHO","entrezGeneId":"2778"},{"alias":"C20orf45","entrezGeneId":"2778"},{"alias":"GNAS1","entrezGeneId":"2778"},{"alias":"GPSA","entrezGeneId":"2778"},{"alias":"GSA","entrezGeneId":"2778"},{"alias":"GSP","entrezGeneId":"2778"},{"alias":"NESP","entrezGeneId":"2778"},{"alias":"PITA3","entrezGeneId":"2778"},{"alias":"POH","entrezGeneId":"2778"},{"alias":"SCG6","entrezGeneId":"2778"},{"alias":"SgVI","entrezGeneId":"2778"},{"alias":"CSNB1G","entrezGeneId":"2779"},{"alias":"CSNBAD3","entrezGeneId":"2779"},{"alias":"GBT1","entrezGeneId":"2779"},{"alias":"GNATR","entrezGeneId":"2779"},{"alias":"ACHM4","entrezGeneId":"2780"},{"alias":"GNATC","entrezGeneId":"2780"},{"alias":"gz-alpha","entrezGeneId":"2781"},{"alias":"MRD42","entrezGeneId":"2782"},{"alias":"CSNB1H","entrezGeneId":"2784"},{"alias":"GNG5P","entrezGeneId":"2789"},{"alias":"GNGT11","entrezGeneId":"2791"},{"alias":"GNG1","entrezGeneId":"2792"},{"alias":"G-GAMMA-8","entrezGeneId":"2793"},{"alias":"G-GAMMA-C","entrezGeneId":"2793"},{"alias":"GNG8","entrezGeneId":"2793"},{"alias":"GNG9","entrezGeneId":"2793"},{"alias":"GNGT8","entrezGeneId":"2793"},{"alias":"HSR1","entrezGeneId":"2794"},{"alias":"GNRH","entrezGeneId":"2796"},{"alias":"GRH","entrezGeneId":"2796"},{"alias":"LHRH","entrezGeneId":"2796"},{"alias":"LNRH","entrezGeneId":"2796"},{"alias":"GnRH-II","entrezGeneId":"2797"},{"alias":"LH-RHII","entrezGeneId":"2797"},{"alias":"GNRHR1","entrezGeneId":"2798"},{"alias":"GRHR","entrezGeneId":"2798"},{"alias":"HH7","entrezGeneId":"2798"},{"alias":"LHRHR","entrezGeneId":"2798"},{"alias":"LRHR","entrezGeneId":"2798"},{"alias":"G6S","entrezGeneId":"2799"},{"alias":"golgin-97","entrezGeneId":"2800"},{"alias":"GM130","entrezGeneId":"2801"},{"alias":"GCP170","entrezGeneId":"2802"},{"alias":"MEA-2","entrezGeneId":"2802"},{"alias":"CRPF46","entrezGeneId":"2803"},{"alias":"GCP2","entrezGeneId":"2803"},{"alias":"GOLG","entrezGeneId":"2803"},{"alias":"MU-RMS-40.18","entrezGeneId":"2803"},{"alias":"p230","entrezGeneId":"2803"},{"alias":"GCP","entrezGeneId":"2804"},{"alias":"GCP372","entrezGeneId":"2804"},{"alias":"GOLIM1","entrezGeneId":"2804"},{"alias":"AST1","entrezGeneId":"2805"},{"alias":"ASTQTL1","entrezGeneId":"2805"},{"alias":"cAspAT","entrezGeneId":"2805"},{"alias":"cCAT","entrezGeneId":"2805"},{"alias":"GIG18","entrezGeneId":"2805"},{"alias":"KAT4","entrezGeneId":"2806"},{"alias":"KATIV","entrezGeneId":"2806"},{"alias":"KYAT4","entrezGeneId":"2806"},{"alias":"mitAAT","entrezGeneId":"2806"},{"alias":"YWHAS","entrezGeneId":"2810"},{"alias":"BDPLT1","entrezGeneId":"2811"},{"alias":"BDPLT3","entrezGeneId":"2811"},{"alias":"BSS","entrezGeneId":"2811"},{"alias":"CD42B","entrezGeneId":"2811"},{"alias":"CD42b-alpha","entrezGeneId":"2811"},{"alias":"DBPLT3","entrezGeneId":"2811"},{"alias":"GP1B","entrezGeneId":"2811"},{"alias":"GPIbA","entrezGeneId":"2811"},{"alias":"GPIbalpha","entrezGeneId":"2811"},{"alias":"VWDP","entrezGeneId":"2811"},{"alias":"BDPLT1","entrezGeneId":"2812"},{"alias":"BS","entrezGeneId":"2812"},{"alias":"CD42C","entrezGeneId":"2812"},{"alias":"GPIBB","entrezGeneId":"2812"},{"alias":"GPIbbeta","entrezGeneId":"2812"},{"alias":"ZAP75","entrezGeneId":"2813"},{"alias":"CD42d","entrezGeneId":"2814"},{"alias":"GPV","entrezGeneId":"2814"},{"alias":"CD42a","entrezGeneId":"2815"},{"alias":"GPIX","entrezGeneId":"2815"},{"alias":"glypican","entrezGeneId":"2817"},{"alias":"GPD-C","entrezGeneId":"2819"},{"alias":"GPDH-C","entrezGeneId":"2819"},{"alias":"HTGTI","entrezGeneId":"2819"},{"alias":"GDH2","entrezGeneId":"2820"},{"alias":"GPDM","entrezGeneId":"2820"},{"alias":"mGPDH","entrezGeneId":"2820"},{"alias":"AMF","entrezGeneId":"2821"},{"alias":"GNPI","entrezGeneId":"2821"},{"alias":"NLK","entrezGeneId":"2821"},{"alias":"PGI","entrezGeneId":"2821"},{"alias":"PHI","entrezGeneId":"2821"},{"alias":"SA-36","entrezGeneId":"2821"},{"alias":"SA36","entrezGeneId":"2821"},{"alias":"GPIPLD","entrezGeneId":"2822"},{"alias":"GPIPLDM","entrezGeneId":"2822"},{"alias":"PIGPLD","entrezGeneId":"2822"},{"alias":"PIGPLD1","entrezGeneId":"2822"},{"alias":"PLD","entrezGeneId":"2822"},{"alias":"GPM6","entrezGeneId":"2823"},{"alias":"M6A","entrezGeneId":"2823"},{"alias":"M6B","entrezGeneId":"2824"},{"alias":"GPR2","entrezGeneId":"2826"},{"alias":"ACCA","entrezGeneId":"2827"},{"alias":"CCXCR1","entrezGeneId":"2829"},{"alias":"GPR5","entrezGeneId":"2829"},{"alias":"GPR7","entrezGeneId":"2831"},{"alias":"GPR8","entrezGeneId":"2832"},{"alias":"CD182","entrezGeneId":"2833"},{"alias":"CD183","entrezGeneId":"2833"},{"alias":"CKR-L2","entrezGeneId":"2833"},{"alias":"CMKAR3","entrezGeneId":"2833"},{"alias":"GPR9","entrezGeneId":"2833"},{"alias":"IP10-R","entrezGeneId":"2833"},{"alias":"Mig-R","entrezGeneId":"2833"},{"alias":"MigR","entrezGeneId":"2833"},{"alias":"GPR10","entrezGeneId":"2834"},{"alias":"GR3","entrezGeneId":"2834"},{"alias":"PrRPR","entrezGeneId":"2834"},{"alias":"GPCR12","entrezGeneId":"2835"},{"alias":"GPCR21","entrezGeneId":"2835"},{"alias":"PPP1R84","entrezGeneId":"2835"},{"alias":"GPR14","entrezGeneId":"2837"},{"alias":"UR-2-R","entrezGeneId":"2837"},{"alias":"UTR","entrezGeneId":"2837"},{"alias":"UTR2","entrezGeneId":"2837"},{"alias":"BOB","entrezGeneId":"2838"},{"alias":"GPR23","entrezGeneId":"2846"},{"alias":"LPA4","entrezGeneId":"2846"},{"alias":"P2RY9","entrezGeneId":"2846"},{"alias":"P2Y5-LIKE","entrezGeneId":"2846"},{"alias":"P2Y9","entrezGeneId":"2846"},{"alias":"GPR24","entrezGeneId":"2847"},{"alias":"MCH-1R","entrezGeneId":"2847"},{"alias":"MCH1R","entrezGeneId":"2847"},{"alias":"SLC-1","entrezGeneId":"2847"},{"alias":"SLC1","entrezGeneId":"2847"},{"alias":"SREB1","entrezGeneId":"2850"},{"alias":"CEPR","entrezGeneId":"2852"},{"alias":"CMKRL2","entrezGeneId":"2852"},{"alias":"DRY12","entrezGeneId":"2852"},{"alias":"FEG-1","entrezGeneId":"2852"},{"alias":"GPCR-Br","entrezGeneId":"2852"},{"alias":"GPER","entrezGeneId":"2852"},{"alias":"GPR30","entrezGeneId":"2852"},{"alias":"LERGU","entrezGeneId":"2852"},{"alias":"LERGU2","entrezGeneId":"2852"},{"alias":"LyGPR","entrezGeneId":"2852"},{"alias":"mER","entrezGeneId":"2852"},{"alias":"12-HETER","entrezGeneId":"2853"},{"alias":"HETER","entrezGeneId":"2853"},{"alias":"HETER1","entrezGeneId":"2853"},{"alias":"RVDR1","entrezGeneId":"2854"},{"alias":"GPR32P","entrezGeneId":"2855"},{"alias":"hGPCR39","entrezGeneId":"2855"},{"alias":"LYPSR1","entrezGeneId":"2857"},{"alias":"EDNRBL","entrezGeneId":"2861"},{"alias":"hET(B)R-LP","entrezGeneId":"2861"},{"alias":"PAELR","entrezGeneId":"2861"},{"alias":"GPR38","entrezGeneId":"2862"},{"alias":"MTLR1","entrezGeneId":"2862"},{"alias":"FFA1R","entrezGeneId":"2864"},{"alias":"GPCR40","entrezGeneId":"2864"},{"alias":"GPR40","entrezGeneId":"2864"},{"alias":"FFA3R","entrezGeneId":"2865"},{"alias":"GPR41","entrezGeneId":"2865"},{"alias":"GPR42","entrezGeneId":"2865"},{"alias":"FFAR1L","entrezGeneId":"2866"},{"alias":"FFAR3L","entrezGeneId":"2866"},{"alias":"GPR41L","entrezGeneId":"2866"},{"alias":"GPR42P","entrezGeneId":"2866"},{"alias":"FFA2R","entrezGeneId":"2867"},{"alias":"GPR43","entrezGeneId":"2867"},{"alias":"GPRK2L","entrezGeneId":"2868"},{"alias":"GPRK4","entrezGeneId":"2868"},{"alias":"GRK4a","entrezGeneId":"2868"},{"alias":"IT11","entrezGeneId":"2868"},{"alias":"GPRK5","entrezGeneId":"2869"},{"alias":"GPRK6","entrezGeneId":"2870"},{"alias":"GPRK6L","entrezGeneId":"2871"},{"alias":"GPRK6P","entrezGeneId":"2871"},{"alias":"GRK6PS","entrezGeneId":"2871"},{"alias":"GPRK7","entrezGeneId":"2872"},{"alias":"MNK2","entrezGeneId":"2872"},{"alias":"COPS1","entrezGeneId":"2873"},{"alias":"CSN1","entrezGeneId":"2873"},{"alias":"SGN1","entrezGeneId":"2873"},{"alias":"AMF-1","entrezGeneId":"2874"},{"alias":"AAT1","entrezGeneId":"2875"},{"alias":"ALT1","entrezGeneId":"2875"},{"alias":"GPT1","entrezGeneId":"2875"},{"alias":"GPXD","entrezGeneId":"2876"},{"alias":"GSHPX1","entrezGeneId":"2876"},{"alias":"GI-GPx","entrezGeneId":"2877"},{"alias":"GPRP","entrezGeneId":"2877"},{"alias":"GPRP-2","entrezGeneId":"2877"},{"alias":"GPx-2","entrezGeneId":"2877"},{"alias":"GPx-GI","entrezGeneId":"2877"},{"alias":"GSHPx-2","entrezGeneId":"2877"},{"alias":"GSHPX-GI","entrezGeneId":"2877"},{"alias":"GPx-P","entrezGeneId":"2878"},{"alias":"GSHPx-3","entrezGeneId":"2878"},{"alias":"GSHPx-P","entrezGeneId":"2878"},{"alias":"GPx-4","entrezGeneId":"2879"},{"alias":"GSHPx-4","entrezGeneId":"2879"},{"alias":"MCSP","entrezGeneId":"2879"},{"alias":"PHGPx","entrezGeneId":"2879"},{"alias":"SMDS","entrezGeneId":"2879"},{"alias":"snGPx","entrezGeneId":"2879"},{"alias":"snPHGPx","entrezGeneId":"2879"},{"alias":"HEL-S-75p","entrezGeneId":"2880"},{"alias":"CL683","entrezGeneId":"2882"},{"alias":"GPx-7","entrezGeneId":"2882"},{"alias":"GPX6","entrezGeneId":"2882"},{"alias":"GSHPx-7","entrezGeneId":"2882"},{"alias":"NPGPx","entrezGeneId":"2882"},{"alias":"GPXL1","entrezGeneId":"2884"},{"alias":"GPXL2","entrezGeneId":"2884"},{"alias":"GPXP2","entrezGeneId":"2884"},{"alias":"GPXP2P","entrezGeneId":"2884"},{"alias":"ASH","entrezGeneId":"2885"},{"alias":"EGFRBP-GRB2","entrezGeneId":"2885"},{"alias":"Grb3-3","entrezGeneId":"2885"},{"alias":"MST084","entrezGeneId":"2885"},{"alias":"MSTP084","entrezGeneId":"2885"},{"alias":"NCKAP2","entrezGeneId":"2885"},{"alias":"Grb-10","entrezGeneId":"2887"},{"alias":"GRB-IR","entrezGeneId":"2887"},{"alias":"IRBP","entrezGeneId":"2887"},{"alias":"MEG1","entrezGeneId":"2887"},{"alias":"RSS","entrezGeneId":"2887"},{"alias":"C3G","entrezGeneId":"2889"},{"alias":"GRF2","entrezGeneId":"2889"},{"alias":"GluA1","entrezGeneId":"2890"},{"alias":"GLUH1","entrezGeneId":"2890"},{"alias":"GLUR1","entrezGeneId":"2890"},{"alias":"GLURA","entrezGeneId":"2890"},{"alias":"HBGR1","entrezGeneId":"2890"},{"alias":"GluA2","entrezGeneId":"2891"},{"alias":"GluR-K2","entrezGeneId":"2891"},{"alias":"GLUR2","entrezGeneId":"2891"},{"alias":"GLURB","entrezGeneId":"2891"},{"alias":"HBGR2","entrezGeneId":"2891"},{"alias":"GluA3","entrezGeneId":"2892"},{"alias":"GLUR-C","entrezGeneId":"2892"},{"alias":"GLUR-K3","entrezGeneId":"2892"},{"alias":"GLUR3","entrezGeneId":"2892"},{"alias":"GLURC","entrezGeneId":"2892"},{"alias":"MRX94","entrezGeneId":"2892"},{"alias":"GluA4","entrezGeneId":"2893"},{"alias":"GLUR4","entrezGeneId":"2893"},{"alias":"GLUR4C","entrezGeneId":"2893"},{"alias":"GLURD","entrezGeneId":"2893"},{"alias":"NEDSGA","entrezGeneId":"2893"},{"alias":"GluD1","entrezGeneId":"2894"},{"alias":"GluD2","entrezGeneId":"2895"},{"alias":"SCAR18","entrezGeneId":"2895"},{"alias":"CLN11","entrezGeneId":"2896"},{"alias":"GEP","entrezGeneId":"2896"},{"alias":"GP88","entrezGeneId":"2896"},{"alias":"PCDGF","entrezGeneId":"2896"},{"alias":"PEPI","entrezGeneId":"2896"},{"alias":"PGRN","entrezGeneId":"2896"},{"alias":"EAA3","entrezGeneId":"2897"},{"alias":"EEA3","entrezGeneId":"2897"},{"alias":"GLR5","entrezGeneId":"2897"},{"alias":"GluK1","entrezGeneId":"2897"},{"alias":"gluR-5","entrezGeneId":"2897"},{"alias":"GLUR5","entrezGeneId":"2897"},{"alias":"EAA4","entrezGeneId":"2898"},{"alias":"GLR6","entrezGeneId":"2898"},{"alias":"GluK2","entrezGeneId":"2898"},{"alias":"GLUK6","entrezGeneId":"2898"},{"alias":"GLUR6","entrezGeneId":"2898"},{"alias":"MRT6","entrezGeneId":"2898"},{"alias":"EAA5","entrezGeneId":"2899"},{"alias":"GLR7","entrezGeneId":"2899"},{"alias":"GluK3","entrezGeneId":"2899"},{"alias":"GLUR7","entrezGeneId":"2899"},{"alias":"GluR7a","entrezGeneId":"2899"},{"alias":"EAA1","entrezGeneId":"2900"},{"alias":"GluK4","entrezGeneId":"2900"},{"alias":"GRIK","entrezGeneId":"2900"},{"alias":"KA1","entrezGeneId":"2900"},{"alias":"EAA2","entrezGeneId":"2901"},{"alias":"GluK5","entrezGeneId":"2901"},{"alias":"GRIK2","entrezGeneId":"2901"},{"alias":"KA2","entrezGeneId":"2901"},{"alias":"GluN1","entrezGeneId":"2902"},{"alias":"MRD8","entrezGeneId":"2902"},{"alias":"NDHMSD","entrezGeneId":"2902"},{"alias":"NDHMSR","entrezGeneId":"2902"},{"alias":"NMD-R1","entrezGeneId":"2902"},{"alias":"NMDA1","entrezGeneId":"2902"},{"alias":"NMDAR1","entrezGeneId":"2902"},{"alias":"NR1","entrezGeneId":"2902"},{"alias":"EPND","entrezGeneId":"2903"},{"alias":"FESD","entrezGeneId":"2903"},{"alias":"GluN2A","entrezGeneId":"2903"},{"alias":"LKS","entrezGeneId":"2903"},{"alias":"NMDAR2A","entrezGeneId":"2903"},{"alias":"NR2A","entrezGeneId":"2903"},{"alias":"EIEE27","entrezGeneId":"2904"},{"alias":"GluN2B","entrezGeneId":"2904"},{"alias":"hNR3","entrezGeneId":"2904"},{"alias":"MRD6","entrezGeneId":"2904"},{"alias":"NMDAR2B","entrezGeneId":"2904"},{"alias":"NR2B","entrezGeneId":"2904"},{"alias":"NR3","entrezGeneId":"2904"},{"alias":"GluN2C","entrezGeneId":"2905"},{"alias":"NMDAR2C","entrezGeneId":"2905"},{"alias":"NR2C","entrezGeneId":"2905"},{"alias":"EB11","entrezGeneId":"2906"},{"alias":"EIEE46","entrezGeneId":"2906"},{"alias":"GluN2D","entrezGeneId":"2906"},{"alias":"NMDAR2D","entrezGeneId":"2906"},{"alias":"NR2D","entrezGeneId":"2906"},{"alias":"HNRGW","entrezGeneId":"2907"},{"alias":"LFG1","entrezGeneId":"2907"},{"alias":"NMDARA1","entrezGeneId":"2907"},{"alias":"TMBIM3","entrezGeneId":"2907"},{"alias":"GCCR","entrezGeneId":"2908"},{"alias":"GCR","entrezGeneId":"2908"},{"alias":"GCRST","entrezGeneId":"2908"},{"alias":"GR","entrezGeneId":"2908"},{"alias":"GRL","entrezGeneId":"2908"},{"alias":"GRF-1","entrezGeneId":"2909"},{"alias":"GRLF1","entrezGeneId":"2909"},{"alias":"P190-A","entrezGeneId":"2909"},{"alias":"P190A","entrezGeneId":"2909"},{"alias":"p190ARhoGAP","entrezGeneId":"2909"},{"alias":"p190RhoGAP","entrezGeneId":"2909"},{"alias":"GCR2","entrezGeneId":"2910"},{"alias":"GCRL","entrezGeneId":"2910"},{"alias":"GRLL1","entrezGeneId":"2910"},{"alias":"NR3C1P","entrezGeneId":"2910"},{"alias":"GPRC1A","entrezGeneId":"2911"},{"alias":"MGLU1","entrezGeneId":"2911"},{"alias":"MGLUR1","entrezGeneId":"2911"},{"alias":"PPP1R85","entrezGeneId":"2911"},{"alias":"SCA44","entrezGeneId":"2911"},{"alias":"SCAR13","entrezGeneId":"2911"},{"alias":"GLUR2","entrezGeneId":"2912"},{"alias":"GPRC1B","entrezGeneId":"2912"},{"alias":"mGlu2","entrezGeneId":"2912"},{"alias":"MGLUR2","entrezGeneId":"2912"},{"alias":"GLUR3","entrezGeneId":"2913"},{"alias":"GPRC1C","entrezGeneId":"2913"},{"alias":"mGlu3","entrezGeneId":"2913"},{"alias":"MGLUR3","entrezGeneId":"2913"},{"alias":"GPRC1D","entrezGeneId":"2914"},{"alias":"mGlu4","entrezGeneId":"2914"},{"alias":"MGLUR4","entrezGeneId":"2914"},{"alias":"GPRC1E","entrezGeneId":"2915"},{"alias":"mGlu5","entrezGeneId":"2915"},{"alias":"MGLUR5","entrezGeneId":"2915"},{"alias":"PPP1R86","entrezGeneId":"2915"},{"alias":"CSNB1B","entrezGeneId":"2916"},{"alias":"GPRC1F","entrezGeneId":"2916"},{"alias":"mGlu6","entrezGeneId":"2916"},{"alias":"MGLUR6","entrezGeneId":"2916"},{"alias":"GLUR7","entrezGeneId":"2917"},{"alias":"GPRC1G","entrezGeneId":"2917"},{"alias":"MGLU7","entrezGeneId":"2917"},{"alias":"MGLUR7","entrezGeneId":"2917"},{"alias":"PPP1R87","entrezGeneId":"2917"},{"alias":"GLUR8","entrezGeneId":"2918"},{"alias":"GPRC1H","entrezGeneId":"2918"},{"alias":"mGlu8","entrezGeneId":"2918"},{"alias":"MGLUR8","entrezGeneId":"2918"},{"alias":"FSP","entrezGeneId":"2919"},{"alias":"GRO1","entrezGeneId":"2919"},{"alias":"GROa","entrezGeneId":"2919"},{"alias":"MGSA","entrezGeneId":"2919"},{"alias":"MGSA-a","entrezGeneId":"2919"},{"alias":"NAP-3","entrezGeneId":"2919"},{"alias":"SCYB1","entrezGeneId":"2919"},{"alias":"CINC-2a","entrezGeneId":"2920"},{"alias":"GRO2","entrezGeneId":"2920"},{"alias":"GROb","entrezGeneId":"2920"},{"alias":"MGSA-b","entrezGeneId":"2920"},{"alias":"MIP-2a","entrezGeneId":"2920"},{"alias":"MIP2","entrezGeneId":"2920"},{"alias":"MIP2A","entrezGeneId":"2920"},{"alias":"SCYB2","entrezGeneId":"2920"},{"alias":"CINC-2b","entrezGeneId":"2921"},{"alias":"GRO3","entrezGeneId":"2921"},{"alias":"GROg","entrezGeneId":"2921"},{"alias":"MIP-2b","entrezGeneId":"2921"},{"alias":"MIP2B","entrezGeneId":"2921"},{"alias":"SCYB3","entrezGeneId":"2921"},{"alias":"BN","entrezGeneId":"2922"},{"alias":"GRP-10","entrezGeneId":"2922"},{"alias":"preproGRP","entrezGeneId":"2922"},{"alias":"proGRP","entrezGeneId":"2922"},{"alias":"ER60","entrezGeneId":"2923"},{"alias":"ERp57","entrezGeneId":"2923"},{"alias":"ERp60","entrezGeneId":"2923"},{"alias":"ERp61","entrezGeneId":"2923"},{"alias":"GRP57","entrezGeneId":"2923"},{"alias":"GRP58","entrezGeneId":"2923"},{"alias":"HEL-S-269","entrezGeneId":"2923"},{"alias":"HEL-S-93n","entrezGeneId":"2923"},{"alias":"HsT17083","entrezGeneId":"2923"},{"alias":"P58","entrezGeneId":"2923"},{"alias":"PI-PLC","entrezGeneId":"2923"},{"alias":"BB2","entrezGeneId":"2925"},{"alias":"BB2R","entrezGeneId":"2925"},{"alias":"GSCL","entrezGeneId":"2928"},{"alias":"GSP","entrezGeneId":"2933"},{"alias":"ADF","entrezGeneId":"2934"},{"alias":"AGEL","entrezGeneId":"2934"},{"alias":"551G9.2","entrezGeneId":"2935"},{"alias":"eRF3a","entrezGeneId":"2935"},{"alias":"ETF3A","entrezGeneId":"2935"},{"alias":"GST1","entrezGeneId":"2935"},{"alias":"GR","entrezGeneId":"2936"},{"alias":"HEL-75","entrezGeneId":"2936"},{"alias":"HEL-S-122m","entrezGeneId":"2936"},{"alias":"GSHS","entrezGeneId":"2937"},{"alias":"HEL-S-64p","entrezGeneId":"2937"},{"alias":"HEL-S-88n","entrezGeneId":"2937"},{"alias":"GST-epsilon","entrezGeneId":"2938"},{"alias":"GST2","entrezGeneId":"2938"},{"alias":"GSTA1-1","entrezGeneId":"2938"},{"alias":"GTH1","entrezGeneId":"2938"},{"alias":"GST2","entrezGeneId":"2939"},{"alias":"GSTA2-2","entrezGeneId":"2939"},{"alias":"GTA2","entrezGeneId":"2939"},{"alias":"GTH2","entrezGeneId":"2939"},{"alias":"GSTA3-3","entrezGeneId":"2940"},{"alias":"GTA3","entrezGeneId":"2940"},{"alias":"GSTA4-4","entrezGeneId":"2941"},{"alias":"GTA4","entrezGeneId":"2941"},{"alias":"GSTAP1","entrezGeneId":"2942"},{"alias":"GST1","entrezGeneId":"2944"},{"alias":"GSTM1-1","entrezGeneId":"2944"},{"alias":"GSTM1a-1a","entrezGeneId":"2944"},{"alias":"GSTM1b-1b","entrezGeneId":"2944"},{"alias":"GTH4","entrezGeneId":"2944"},{"alias":"GTM1","entrezGeneId":"2944"},{"alias":"H-B","entrezGeneId":"2944"},{"alias":"MU","entrezGeneId":"2944"},{"alias":"MU-1","entrezGeneId":"2944"},{"alias":"GST4","entrezGeneId":"2946"},{"alias":"GSTM","entrezGeneId":"2946"},{"alias":"GSTM2-2","entrezGeneId":"2946"},{"alias":"GTHMUS","entrezGeneId":"2946"},{"alias":"GST5","entrezGeneId":"2947"},{"alias":"GSTB","entrezGeneId":"2947"},{"alias":"GSTM3-3","entrezGeneId":"2947"},{"alias":"GTM3","entrezGeneId":"2947"},{"alias":"GSTM4-4","entrezGeneId":"2948"},{"alias":"GTM4","entrezGeneId":"2948"},{"alias":"GSTM5-5","entrezGeneId":"2949"},{"alias":"GTM5","entrezGeneId":"2949"},{"alias":"DFN7","entrezGeneId":"2950"},{"alias":"FAEES3","entrezGeneId":"2950"},{"alias":"GST3","entrezGeneId":"2950"},{"alias":"GSTP","entrezGeneId":"2950"},{"alias":"HEL-S-22","entrezGeneId":"2950"},{"alias":"PI","entrezGeneId":"2950"},{"alias":"GST3L","entrezGeneId":"2951"},{"alias":"GSTP1P","entrezGeneId":"2951"},{"alias":"GSTPL","entrezGeneId":"2951"},{"alias":"GSTPP","entrezGeneId":"2951"},{"alias":"GSTZ1-1","entrezGeneId":"2954"},{"alias":"MAAI","entrezGeneId":"2954"},{"alias":"MAAID","entrezGeneId":"2954"},{"alias":"MAI","entrezGeneId":"2954"},{"alias":"GTBP","entrezGeneId":"2956"},{"alias":"GTMBP","entrezGeneId":"2956"},{"alias":"HNPCC5","entrezGeneId":"2956"},{"alias":"HSAP","entrezGeneId":"2956"},{"alias":"p160","entrezGeneId":"2956"},{"alias":"TF2A1","entrezGeneId":"2957"},{"alias":"TFIIA","entrezGeneId":"2957"},{"alias":"TFIIA-42","entrezGeneId":"2957"},{"alias":"TFIIAL","entrezGeneId":"2957"},{"alias":"HsT18745","entrezGeneId":"2958"},{"alias":"T18745","entrezGeneId":"2958"},{"alias":"TF2A2","entrezGeneId":"2958"},{"alias":"TFIIA","entrezGeneId":"2958"},{"alias":"TFIIA-12","entrezGeneId":"2958"},{"alias":"TFIIA-gamma","entrezGeneId":"2958"},{"alias":"TFIIAS","entrezGeneId":"2958"},{"alias":"TF2B","entrezGeneId":"2959"},{"alias":"TFIIB","entrezGeneId":"2959"},{"alias":"FE","entrezGeneId":"2960"},{"alias":"TF2E1","entrezGeneId":"2960"},{"alias":"TFIIE-A","entrezGeneId":"2960"},{"alias":"FE","entrezGeneId":"2961"},{"alias":"TF2E2","entrezGeneId":"2961"},{"alias":"TFIIE-B","entrezGeneId":"2961"},{"alias":"TTD6","entrezGeneId":"2961"},{"alias":"BTF4","entrezGeneId":"2962"},{"alias":"RAP74","entrezGeneId":"2962"},{"alias":"TF2F1","entrezGeneId":"2962"},{"alias":"TFIIF","entrezGeneId":"2962"},{"alias":"BTF4","entrezGeneId":"2963"},{"alias":"RAP30","entrezGeneId":"2963"},{"alias":"TF2F2","entrezGeneId":"2963"},{"alias":"TFIIF","entrezGeneId":"2963"},{"alias":"GTF2F2L","entrezGeneId":"2964"},{"alias":"TFIIF","entrezGeneId":"2964"},{"alias":"BTF2","entrezGeneId":"2965"},{"alias":"P62","entrezGeneId":"2965"},{"alias":"TFB1","entrezGeneId":"2965"},{"alias":"TFIIH","entrezGeneId":"2965"},{"alias":"BTF2","entrezGeneId":"2966"},{"alias":"BTF2P44","entrezGeneId":"2966"},{"alias":"p44","entrezGeneId":"2966"},{"alias":"T-BTF2P44","entrezGeneId":"2966"},{"alias":"TFIIH","entrezGeneId":"2966"},{"alias":"BTF2","entrezGeneId":"2967"},{"alias":"P34","entrezGeneId":"2967"},{"alias":"TFB4","entrezGeneId":"2967"},{"alias":"TFIIH","entrezGeneId":"2967"},{"alias":"P52","entrezGeneId":"2968"},{"alias":"TFB2","entrezGeneId":"2968"},{"alias":"TFIIH","entrezGeneId":"2968"},{"alias":"BAP135","entrezGeneId":"2969"},{"alias":"BTKAP1","entrezGeneId":"2969"},{"alias":"DIWS","entrezGeneId":"2969"},{"alias":"GTFII-I","entrezGeneId":"2969"},{"alias":"IB291","entrezGeneId":"2969"},{"alias":"SPIN","entrezGeneId":"2969"},{"alias":"TFII-I","entrezGeneId":"2969"},{"alias":"WBS","entrezGeneId":"2969"},{"alias":"WBSCR6","entrezGeneId":"2969"},{"alias":"WBSCR7","entrezGeneId":"2970"},{"alias":"AP2","entrezGeneId":"2971"},{"alias":"TFIIIA","entrezGeneId":"2971"},{"alias":"BRF","entrezGeneId":"2972"},{"alias":"BRF-1","entrezGeneId":"2972"},{"alias":"CFDS","entrezGeneId":"2972"},{"alias":"GTF3B","entrezGeneId":"2972"},{"alias":"hBRF","entrezGeneId":"2972"},{"alias":"HEL-S-76p","entrezGeneId":"2972"},{"alias":"TAF3B2","entrezGeneId":"2972"},{"alias":"TAF3C","entrezGeneId":"2972"},{"alias":"TAFIII90","entrezGeneId":"2972"},{"alias":"TF3B90","entrezGeneId":"2972"},{"alias":"TFIIIB90","entrezGeneId":"2972"},{"alias":"GC-SB2","entrezGeneId":"2974"},{"alias":"TFIIIC","entrezGeneId":"2975"},{"alias":"TFIIIC220","entrezGeneId":"2975"},{"alias":"TFIIICalpha","entrezGeneId":"2975"},{"alias":"TFIIIC-BETA","entrezGeneId":"2976"},{"alias":"TFIIIC110","entrezGeneId":"2976"},{"alias":"GC-SA2","entrezGeneId":"2977"},{"alias":"GUC1A2","entrezGeneId":"2977"},{"alias":"C6orf131","entrezGeneId":"2978"},{"alias":"COD3","entrezGeneId":"2978"},{"alias":"CORD14","entrezGeneId":"2978"},{"alias":"GCAP","entrezGeneId":"2978"},{"alias":"GCAP1","entrezGeneId":"2978"},{"alias":"GUCA","entrezGeneId":"2978"},{"alias":"GUCA1","entrezGeneId":"2978"},{"alias":"GCAP2","entrezGeneId":"2979"},{"alias":"GUCA2","entrezGeneId":"2979"},{"alias":"RP48","entrezGeneId":"2979"},{"alias":"GCAP-I","entrezGeneId":"2980"},{"alias":"GUCA2","entrezGeneId":"2980"},{"alias":"STARA","entrezGeneId":"2980"},{"alias":"GCAP-II","entrezGeneId":"2981"},{"alias":"UGN","entrezGeneId":"2981"},{"alias":"GC-SA3","entrezGeneId":"2982"},{"alias":"GUC1A3","entrezGeneId":"2982"},{"alias":"GUCA3","entrezGeneId":"2982"},{"alias":"GUCSA3","entrezGeneId":"2982"},{"alias":"GUCY1A3","entrezGeneId":"2982"},{"alias":"MYMY6","entrezGeneId":"2982"},{"alias":"GC-S-beta-1","entrezGeneId":"2983"},{"alias":"GC-SB3","entrezGeneId":"2983"},{"alias":"GUC1B3","entrezGeneId":"2983"},{"alias":"GUCB3","entrezGeneId":"2983"},{"alias":"GUCSB3","entrezGeneId":"2983"},{"alias":"GUCY1B3","entrezGeneId":"2983"},{"alias":"DIAR6","entrezGeneId":"2984"},{"alias":"GC-C","entrezGeneId":"2984"},{"alias":"GUC2C","entrezGeneId":"2984"},{"alias":"MECIL","entrezGeneId":"2984"},{"alias":"MUCIL","entrezGeneId":"2984"},{"alias":"STAR","entrezGeneId":"2984"},{"alias":"CYGF","entrezGeneId":"2986"},{"alias":"GC-F","entrezGeneId":"2986"},{"alias":"GUC2DL","entrezGeneId":"2986"},{"alias":"GUC2F","entrezGeneId":"2986"},{"alias":"RETGC-2","entrezGeneId":"2986"},{"alias":"ROS-GC2","entrezGeneId":"2986"},{"alias":"GMK","entrezGeneId":"2987"},{"alias":"GULO","entrezGeneId":"2989"},{"alias":"SCURVY","entrezGeneId":"2989"},{"alias":"BG","entrezGeneId":"2990"},{"alias":"MPS7","entrezGeneId":"2990"},{"alias":"GSD15","entrezGeneId":"2992"},{"alias":"GYG","entrezGeneId":"2992"},{"alias":"CD235a","entrezGeneId":"2993"},{"alias":"GPA","entrezGeneId":"2993"},{"alias":"GPErik","entrezGeneId":"2993"},{"alias":"GPSAT","entrezGeneId":"2993"},{"alias":"HGpMiV","entrezGeneId":"2993"},{"alias":"HGpMiXI","entrezGeneId":"2993"},{"alias":"HGpSta(C)","entrezGeneId":"2993"},{"alias":"MN","entrezGeneId":"2993"},{"alias":"MNS","entrezGeneId":"2993"},{"alias":"PAS-2","entrezGeneId":"2993"},{"alias":"CD235b","entrezGeneId":"2994"},{"alias":"GPB","entrezGeneId":"2994"},{"alias":"GYP","entrezGeneId":"2994"},{"alias":"MNS","entrezGeneId":"2994"},{"alias":"PAS-3","entrezGeneId":"2994"},{"alias":"SS","entrezGeneId":"2994"},{"alias":"CD236","entrezGeneId":"2995"},{"alias":"CD236R","entrezGeneId":"2995"},{"alias":"GE","entrezGeneId":"2995"},{"alias":"GE:GPC:GPD:GYPD","entrezGeneId":"2995"},{"alias":"GPC","entrezGeneId":"2995"},{"alias":"GPD","entrezGeneId":"2995"},{"alias":"GYPD","entrezGeneId":"2995"},{"alias":"PAS-2","entrezGeneId":"2995"},{"alias":"PAS-2'","entrezGeneId":"2995"},{"alias":"GPE","entrezGeneId":"2996"},{"alias":"MiIX","entrezGeneId":"2996"},{"alias":"MNS","entrezGeneId":"2996"},{"alias":"GSY","entrezGeneId":"2997"},{"alias":"GYS","entrezGeneId":"2997"},{"alias":"CCP-X","entrezGeneId":"2999"},{"alias":"CGL-2","entrezGeneId":"2999"},{"alias":"CSP-C","entrezGeneId":"2999"},{"alias":"CTLA1","entrezGeneId":"2999"},{"alias":"CTSGL2","entrezGeneId":"2999"},{"alias":"CACD1","entrezGeneId":"3000"},{"alias":"CORD5","entrezGeneId":"3000"},{"alias":"CORD6","entrezGeneId":"3000"},{"alias":"CYGD","entrezGeneId":"3000"},{"alias":"GUC1A4","entrezGeneId":"3000"},{"alias":"GUC2D","entrezGeneId":"3000"},{"alias":"LCA","entrezGeneId":"3000"},{"alias":"LCA1","entrezGeneId":"3000"},{"alias":"RCD2","entrezGeneId":"3000"},{"alias":"retGC","entrezGeneId":"3000"},{"alias":"RETGC-1","entrezGeneId":"3000"},{"alias":"ROS-GC1","entrezGeneId":"3000"},{"alias":"ROSGC","entrezGeneId":"3000"},{"alias":"CTLA3","entrezGeneId":"3001"},{"alias":"HFSP","entrezGeneId":"3001"},{"alias":"C11","entrezGeneId":"3002"},{"alias":"CCPI","entrezGeneId":"3002"},{"alias":"CGL-1","entrezGeneId":"3002"},{"alias":"CGL1","entrezGeneId":"3002"},{"alias":"CSP-B","entrezGeneId":"3002"},{"alias":"CSPB","entrezGeneId":"3002"},{"alias":"CTLA1","entrezGeneId":"3002"},{"alias":"CTSGL1","entrezGeneId":"3002"},{"alias":"HLP","entrezGeneId":"3002"},{"alias":"SECT","entrezGeneId":"3002"},{"alias":"TRYP2","entrezGeneId":"3003"},{"alias":"LMET1","entrezGeneId":"3004"},{"alias":"MET1","entrezGeneId":"3004"},{"alias":"H10","entrezGeneId":"3005"},{"alias":"H1FV","entrezGeneId":"3005"},{"alias":"H1.2","entrezGeneId":"3006"},{"alias":"H1C","entrezGeneId":"3006"},{"alias":"H1F2","entrezGeneId":"3006"},{"alias":"H1s-1","entrezGeneId":"3006"},{"alias":"H1.3","entrezGeneId":"3007"},{"alias":"H1D","entrezGeneId":"3007"},{"alias":"H1F3","entrezGeneId":"3007"},{"alias":"H1s-2","entrezGeneId":"3007"},{"alias":"dJ221C16.5","entrezGeneId":"3008"},{"alias":"H1.4","entrezGeneId":"3008"},{"alias":"H1E","entrezGeneId":"3008"},{"alias":"H1F4","entrezGeneId":"3008"},{"alias":"H1s-4","entrezGeneId":"3008"},{"alias":"RMNS","entrezGeneId":"3008"},{"alias":"H1","entrezGeneId":"3009"},{"alias":"H1.5","entrezGeneId":"3009"},{"alias":"H1B","entrezGeneId":"3009"},{"alias":"H1F5","entrezGeneId":"3009"},{"alias":"H1s-3","entrezGeneId":"3009"},{"alias":"dJ221C16.2","entrezGeneId":"3010"},{"alias":"H1.6","entrezGeneId":"3010"},{"alias":"H1FT","entrezGeneId":"3010"},{"alias":"H1t","entrezGeneId":"3010"},{"alias":"H2A.1","entrezGeneId":"3012"},{"alias":"H2A.2","entrezGeneId":"3012"},{"alias":"H2A/a","entrezGeneId":"3012"},{"alias":"H2AFA","entrezGeneId":"3012"},{"alias":"H2A.3","entrezGeneId":"3013"},{"alias":"H2A/g","entrezGeneId":"3013"},{"alias":"H2AFG","entrezGeneId":"3013"},{"alias":"H2A.X","entrezGeneId":"3014"},{"alias":"H2A/X","entrezGeneId":"3014"},{"alias":"H2AX","entrezGeneId":"3014"},{"alias":"H2A.z","entrezGeneId":"3015"},{"alias":"H2A.Z-1","entrezGeneId":"3015"},{"alias":"H2A/z","entrezGeneId":"3015"},{"alias":"H2AZ","entrezGeneId":"3015"},{"alias":"dJ221C16.6","entrezGeneId":"3017"},{"alias":"H2B.1B","entrezGeneId":"3017"},{"alias":"H2B/b","entrezGeneId":"3017"},{"alias":"H2BFB","entrezGeneId":"3017"},{"alias":"HIRIP2","entrezGeneId":"3017"},{"alias":"H2B.1","entrezGeneId":"3018"},{"alias":"H2B/f","entrezGeneId":"3018"},{"alias":"H2BFF","entrezGeneId":"3018"},{"alias":"H3.3A","entrezGeneId":"3020"},{"alias":"H3F3","entrezGeneId":"3020"},{"alias":"H3.3B","entrezGeneId":"3021"},{"alias":"H1.1","entrezGeneId":"3024"},{"alias":"H1A","entrezGeneId":"3024"},{"alias":"H1F1","entrezGeneId":"3024"},{"alias":"HIST1","entrezGeneId":"3024"},{"alias":"FSAP","entrezGeneId":"3026"},{"alias":"HABP","entrezGeneId":"3026"},{"alias":"HGFAL","entrezGeneId":"3026"},{"alias":"NMTC5","entrezGeneId":"3026"},{"alias":"PHBP","entrezGeneId":"3026"},{"alias":"17b-HSD10","entrezGeneId":"3028"},{"alias":"ABAD","entrezGeneId":"3028"},{"alias":"CAMR","entrezGeneId":"3028"},{"alias":"DUPXp11.22","entrezGeneId":"3028"},{"alias":"ERAB","entrezGeneId":"3028"},{"alias":"HADH2","entrezGeneId":"3028"},{"alias":"HCD2","entrezGeneId":"3028"},{"alias":"HSD10MD","entrezGeneId":"3028"},{"alias":"MHBD","entrezGeneId":"3028"},{"alias":"MRPP2","entrezGeneId":"3028"},{"alias":"MRX17","entrezGeneId":"3028"},{"alias":"MRX31","entrezGeneId":"3028"},{"alias":"MRXS10","entrezGeneId":"3028"},{"alias":"SCHAD","entrezGeneId":"3028"},{"alias":"SDR5C1","entrezGeneId":"3028"},{"alias":"GLO2","entrezGeneId":"3029"},{"alias":"GLX2","entrezGeneId":"3029"},{"alias":"GLXII","entrezGeneId":"3029"},{"alias":"HAGH1","entrezGeneId":"3029"},{"alias":"ECHA","entrezGeneId":"3030"},{"alias":"GBP","entrezGeneId":"3030"},{"alias":"HADH","entrezGeneId":"3030"},{"alias":"LCEH","entrezGeneId":"3030"},{"alias":"LCHAD","entrezGeneId":"3030"},{"alias":"MTPA","entrezGeneId":"3030"},{"alias":"TP-ALPHA","entrezGeneId":"3030"},{"alias":"HADHAP","entrezGeneId":"3031"},{"alias":"ECHB","entrezGeneId":"3032"},{"alias":"MSTP029","entrezGeneId":"3032"},{"alias":"MTPB","entrezGeneId":"3032"},{"alias":"TP-BETA","entrezGeneId":"3032"},{"alias":"HAD","entrezGeneId":"3033"},{"alias":"HADH1","entrezGeneId":"3033"},{"alias":"HADHSC","entrezGeneId":"3033"},{"alias":"HCDH","entrezGeneId":"3033"},{"alias":"HHF4","entrezGeneId":"3033"},{"alias":"MSCHAD","entrezGeneId":"3033"},{"alias":"SCHAD","entrezGeneId":"3033"},{"alias":"HIS","entrezGeneId":"3034"},{"alias":"HSTD","entrezGeneId":"3034"},{"alias":"CMT2W","entrezGeneId":"3035"},{"alias":"HRS","entrezGeneId":"3035"},{"alias":"USH3B","entrezGeneId":"3035"},{"alias":"HAS","entrezGeneId":"3036"},{"alias":"HBA-T3","entrezGeneId":"3039"},{"alias":"HBH","entrezGeneId":"3039"},{"alias":"HBA-T2","entrezGeneId":"3040"},{"alias":"HBH","entrezGeneId":"3040"},{"alias":"HBA-T1","entrezGeneId":"3041"},{"alias":"HBA3","entrezGeneId":"3041"},{"alias":"HBA3P","entrezGeneId":"3041"},{"alias":"HBAP2","entrezGeneId":"3042"},{"alias":"HBK","entrezGeneId":"3042"},{"alias":"beta-globin","entrezGeneId":"3043"},{"alias":"CD113t-C","entrezGeneId":"3043"},{"alias":"HBH1","entrezGeneId":"3044"},{"alias":"HBHP","entrezGeneId":"3044"},{"alias":"HBE","entrezGeneId":"3046"},{"alias":"HBG-T2","entrezGeneId":"3047"},{"alias":"HBGA","entrezGeneId":"3047"},{"alias":"HBGR","entrezGeneId":"3047"},{"alias":"HSGGL1","entrezGeneId":"3047"},{"alias":"PRO2979","entrezGeneId":"3047"},{"alias":"HBG-T1","entrezGeneId":"3048"},{"alias":"TNCY","entrezGeneId":"3048"},{"alias":"HBQ","entrezGeneId":"3049"},{"alias":"HBZ-T1","entrezGeneId":"3050"},{"alias":"HBZ1","entrezGeneId":"3050"},{"alias":"HBZ-T2","entrezGeneId":"3051"},{"alias":"HBZ2","entrezGeneId":"3051"},{"alias":"HBZ2P","entrezGeneId":"3051"},{"alias":"HBZP","entrezGeneId":"3051"},{"alias":"CCHL","entrezGeneId":"3052"},{"alias":"LSDMCA1","entrezGeneId":"3052"},{"alias":"MCOPS7","entrezGeneId":"3052"},{"alias":"MLS","entrezGeneId":"3052"},{"alias":"D22S673","entrezGeneId":"3053"},{"alias":"HC2","entrezGeneId":"3053"},{"alias":"HCF2","entrezGeneId":"3053"},{"alias":"HCII","entrezGeneId":"3053"},{"alias":"HLS2","entrezGeneId":"3053"},{"alias":"LS2","entrezGeneId":"3053"},{"alias":"THPH10","entrezGeneId":"3053"},{"alias":"CFF","entrezGeneId":"3054"},{"alias":"HCF","entrezGeneId":"3054"},{"alias":"HCF-1","entrezGeneId":"3054"},{"alias":"HCF1","entrezGeneId":"3054"},{"alias":"HFC1","entrezGeneId":"3054"},{"alias":"MRX3","entrezGeneId":"3054"},{"alias":"PPP1R89","entrezGeneId":"3054"},{"alias":"VCAF","entrezGeneId":"3054"},{"alias":"JTK9","entrezGeneId":"3055"},{"alias":"p59Hck","entrezGeneId":"3055"},{"alias":"p61Hck","entrezGeneId":"3055"},{"alias":"BRHC","entrezGeneId":"3056"},{"alias":"RHA","entrezGeneId":"3057"},{"alias":"RHC","entrezGeneId":"3057"},{"alias":"CTTNL","entrezGeneId":"3059"},{"alias":"HS1","entrezGeneId":"3059"},{"alias":"lckBP1","entrezGeneId":"3059"},{"alias":"p75","entrezGeneId":"3059"},{"alias":"NRCLP1","entrezGeneId":"3060"},{"alias":"OX","entrezGeneId":"3060"},{"alias":"PPOX","entrezGeneId":"3060"},{"alias":"OX1R","entrezGeneId":"3061"},{"alias":"OX2R","entrezGeneId":"3062"},{"alias":"HD","entrezGeneId":"3064"},{"alias":"IT15","entrezGeneId":"3064"},{"alias":"LOMARS","entrezGeneId":"3064"},{"alias":"GON-10","entrezGeneId":"3065"},{"alias":"HD1","entrezGeneId":"3065"},{"alias":"RPD3","entrezGeneId":"3065"},{"alias":"RPD3L1","entrezGeneId":"3065"},{"alias":"HD2","entrezGeneId":"3066"},{"alias":"RPD3","entrezGeneId":"3066"},{"alias":"YAF1","entrezGeneId":"3066"},{"alias":"HMG1L2","entrezGeneId":"3068"},{"alias":"HBP","entrezGeneId":"3069"},{"alias":"PRO2900","entrezGeneId":"3069"},{"alias":"VGL","entrezGeneId":"3069"},{"alias":"ICF4","entrezGeneId":"3070"},{"alias":"LSH","entrezGeneId":"3070"},{"alias":"Nbla10143","entrezGeneId":"3070"},{"alias":"PASG","entrezGeneId":"3070"},{"alias":"SMARCA6","entrezGeneId":"3070"},{"alias":"HEM1","entrezGeneId":"3071"},{"alias":"TSD","entrezGeneId":"3073"},{"alias":"ENC-1AS","entrezGeneId":"3074"},{"alias":"HEL-248","entrezGeneId":"3074"},{"alias":"HEL-S-111","entrezGeneId":"3074"},{"alias":"AHUS1","entrezGeneId":"3075"},{"alias":"AMBP1","entrezGeneId":"3075"},{"alias":"ARMD4","entrezGeneId":"3075"},{"alias":"ARMS1","entrezGeneId":"3075"},{"alias":"CFHL3","entrezGeneId":"3075"},{"alias":"FH","entrezGeneId":"3075"},{"alias":"FHL1","entrezGeneId":"3075"},{"alias":"HF","entrezGeneId":"3075"},{"alias":"HF1","entrezGeneId":"3075"},{"alias":"HF2","entrezGeneId":"3075"},{"alias":"HUS","entrezGeneId":"3075"},{"alias":"HFE1","entrezGeneId":"3077"},{"alias":"HH","entrezGeneId":"3077"},{"alias":"HLA-H","entrezGeneId":"3077"},{"alias":"MVCD7","entrezGeneId":"3077"},{"alias":"TFQTL2","entrezGeneId":"3077"},{"alias":"CFHL","entrezGeneId":"3078"},{"alias":"CFHL1","entrezGeneId":"3078"},{"alias":"CFHL1P","entrezGeneId":"3078"},{"alias":"CFHR1P","entrezGeneId":"3078"},{"alias":"FHR1","entrezGeneId":"3078"},{"alias":"H36-1","entrezGeneId":"3078"},{"alias":"H36-2","entrezGeneId":"3078"},{"alias":"HFL1","entrezGeneId":"3078"},{"alias":"HFL2","entrezGeneId":"3078"},{"alias":"CFHL2","entrezGeneId":"3080"},{"alias":"FHR2","entrezGeneId":"3080"},{"alias":"HFL3","entrezGeneId":"3080"},{"alias":"AKU","entrezGeneId":"3081"},{"alias":"HGO","entrezGeneId":"3081"},{"alias":"DFNB39","entrezGeneId":"3082"},{"alias":"F-TCF","entrezGeneId":"3082"},{"alias":"HGFB","entrezGeneId":"3082"},{"alias":"HPTA","entrezGeneId":"3082"},{"alias":"SF","entrezGeneId":"3082"},{"alias":"HGFA","entrezGeneId":"3083"},{"alias":"ARIA","entrezGeneId":"3084"},{"alias":"GGF","entrezGeneId":"3084"},{"alias":"GGF2","entrezGeneId":"3084"},{"alias":"HGL","entrezGeneId":"3084"},{"alias":"HRG","entrezGeneId":"3084"},{"alias":"HRG1","entrezGeneId":"3084"},{"alias":"HRGA","entrezGeneId":"3084"},{"alias":"MST131","entrezGeneId":"3084"},{"alias":"MSTP131","entrezGeneId":"3084"},{"alias":"NDF","entrezGeneId":"3084"},{"alias":"NRG1-IT2","entrezGeneId":"3084"},{"alias":"SMDF","entrezGeneId":"3084"},{"alias":"HEX","entrezGeneId":"3087"},{"alias":"HMPH","entrezGeneId":"3087"},{"alias":"HOX11L-PEN","entrezGeneId":"3087"},{"alias":"PRH","entrezGeneId":"3087"},{"alias":"PRHX","entrezGeneId":"3087"},{"alias":"hic-1","entrezGeneId":"3090"},{"alias":"ZBTB29","entrezGeneId":"3090"},{"alias":"ZNF901","entrezGeneId":"3090"},{"alias":"bHLHe78","entrezGeneId":"3091"},{"alias":"HIF-1-alpha","entrezGeneId":"3091"},{"alias":"HIF-1A","entrezGeneId":"3091"},{"alias":"HIF-1alpha","entrezGeneId":"3091"},{"alias":"HIF1","entrezGeneId":"3091"},{"alias":"HIF1-ALPHA","entrezGeneId":"3091"},{"alias":"MOP1","entrezGeneId":"3091"},{"alias":"PASD8","entrezGeneId":"3091"},{"alias":"HIP-I","entrezGeneId":"3092"},{"alias":"ILWEQ","entrezGeneId":"3092"},{"alias":"SHON","entrezGeneId":"3092"},{"alias":"SHONbeta","entrezGeneId":"3092"},{"alias":"SHONgamma","entrezGeneId":"3092"},{"alias":"E2-25K","entrezGeneId":"3093"},{"alias":"HIP2","entrezGeneId":"3093"},{"alias":"HYPG","entrezGeneId":"3093"},{"alias":"LIG","entrezGeneId":"3093"},{"alias":"UBC1","entrezGeneId":"3093"},{"alias":"HINT","entrezGeneId":"3094"},{"alias":"NMAN","entrezGeneId":"3094"},{"alias":"PKCI-1","entrezGeneId":"3094"},{"alias":"PRKCNH1","entrezGeneId":"3094"},{"alias":"CIRIP","entrezGeneId":"3096"},{"alias":"CRYBP1","entrezGeneId":"3096"},{"alias":"GAAP","entrezGeneId":"3096"},{"alias":"MBP-1","entrezGeneId":"3096"},{"alias":"PRDII-BF1","entrezGeneId":"3096"},{"alias":"Schnurri-1","entrezGeneId":"3096"},{"alias":"ZAS1","entrezGeneId":"3096"},{"alias":"ZNF40","entrezGeneId":"3096"},{"alias":"ZNF40A","entrezGeneId":"3096"},{"alias":"HIV-EP2","entrezGeneId":"3097"},{"alias":"MBP-2","entrezGeneId":"3097"},{"alias":"MIBP1","entrezGeneId":"3097"},{"alias":"MRD43","entrezGeneId":"3097"},{"alias":"SHN2","entrezGeneId":"3097"},{"alias":"ZAS2","entrezGeneId":"3097"},{"alias":"ZNF40B","entrezGeneId":"3097"},{"alias":"hexokinase","entrezGeneId":"3098"},{"alias":"HK","entrezGeneId":"3098"},{"alias":"HK1-ta","entrezGeneId":"3098"},{"alias":"HK1-tb","entrezGeneId":"3098"},{"alias":"HK1-tc","entrezGeneId":"3098"},{"alias":"HKD","entrezGeneId":"3098"},{"alias":"HKI","entrezGeneId":"3098"},{"alias":"HMSNR","entrezGeneId":"3098"},{"alias":"HXK1","entrezGeneId":"3098"},{"alias":"RP79","entrezGeneId":"3098"},{"alias":"HKII","entrezGeneId":"3099"},{"alias":"HXK2","entrezGeneId":"3099"},{"alias":"HKIII","entrezGeneId":"3101"},{"alias":"HXK3","entrezGeneId":"3101"},{"alias":"HKR3","entrezGeneId":"3104"},{"alias":"pp9964","entrezGeneId":"3104"},{"alias":"TZAP","entrezGeneId":"3104"},{"alias":"ZNF855","entrezGeneId":"3104"},{"alias":"HLAA","entrezGeneId":"3105"},{"alias":"AS","entrezGeneId":"3106"},{"alias":"B-4901","entrezGeneId":"3106"},{"alias":"HLAB","entrezGeneId":"3106"},{"alias":"D6S204","entrezGeneId":"3107"},{"alias":"HLA-JY3","entrezGeneId":"3107"},{"alias":"HLAC","entrezGeneId":"3107"},{"alias":"HLC-C","entrezGeneId":"3107"},{"alias":"MHC","entrezGeneId":"3107"},{"alias":"PSORS1","entrezGeneId":"3107"},{"alias":"D6S222E","entrezGeneId":"3108"},{"alias":"DMA","entrezGeneId":"3108"},{"alias":"HLADM","entrezGeneId":"3108"},{"alias":"RING6","entrezGeneId":"3108"},{"alias":"D6S221E","entrezGeneId":"3109"},{"alias":"RING7","entrezGeneId":"3109"},{"alias":"HB9","entrezGeneId":"3110"},{"alias":"HLXB9","entrezGeneId":"3110"},{"alias":"HOXHB9","entrezGeneId":"3110"},{"alias":"SCRA1","entrezGeneId":"3110"},{"alias":"HLA-DNA","entrezGeneId":"3111"},{"alias":"HLA-DZA","entrezGeneId":"3111"},{"alias":"HLADZ","entrezGeneId":"3111"},{"alias":"DOB","entrezGeneId":"3112"},{"alias":"HLA_DOB","entrezGeneId":"3112"},{"alias":"DP(W3)","entrezGeneId":"3113"},{"alias":"DP(W4)","entrezGeneId":"3113"},{"alias":"HLA-DP1A","entrezGeneId":"3113"},{"alias":"HLADP","entrezGeneId":"3113"},{"alias":"HLASB","entrezGeneId":"3113"},{"alias":"PLT1","entrezGeneId":"3113"},{"alias":"DPB1","entrezGeneId":"3115"},{"alias":"HLA-DP","entrezGeneId":"3115"},{"alias":"HLA-DP1B","entrezGeneId":"3115"},{"alias":"HLA-DPB","entrezGeneId":"3115"},{"alias":"DP2B","entrezGeneId":"3116"},{"alias":"DPB2","entrezGeneId":"3116"},{"alias":"DPbeta2","entrezGeneId":"3116"},{"alias":"HLA-DP2B","entrezGeneId":"3116"},{"alias":"CELIAC1","entrezGeneId":"3117"},{"alias":"DQ-A1","entrezGeneId":"3117"},{"alias":"HLA-DQA","entrezGeneId":"3117"},{"alias":"DX-ALPHA","entrezGeneId":"3118"},{"alias":"HLA-DXA","entrezGeneId":"3118"},{"alias":"HLADQA2","entrezGeneId":"3118"},{"alias":"CELIAC1","entrezGeneId":"3119"},{"alias":"HLA-DQB","entrezGeneId":"3119"},{"alias":"IDDM1","entrezGeneId":"3119"},{"alias":"HLA-DQB1","entrezGeneId":"3120"},{"alias":"HLA-DXB","entrezGeneId":"3120"},{"alias":"D6S205","entrezGeneId":"3121"},{"alias":"D6S205E","entrezGeneId":"3121"},{"alias":"DQB3","entrezGeneId":"3121"},{"alias":"DVB","entrezGeneId":"3121"},{"alias":"DVbeta","entrezGeneId":"3121"},{"alias":"HLA-DVB","entrezGeneId":"3121"},{"alias":"HLA-DRA1","entrezGeneId":"3122"},{"alias":"DRB1","entrezGeneId":"3123"},{"alias":"HLA-DR1B","entrezGeneId":"3123"},{"alias":"HLA-DRB","entrezGeneId":"3123"},{"alias":"SS1","entrezGeneId":"3123"},{"alias":"HLA-DR2B","entrezGeneId":"3124"},{"alias":"HLA-DPB1","entrezGeneId":"3125"},{"alias":"HLA-DR1B","entrezGeneId":"3125"},{"alias":"HLA-DR3B","entrezGeneId":"3125"},{"alias":"DR4","entrezGeneId":"3126"},{"alias":"DRB4","entrezGeneId":"3126"},{"alias":"HLA-DR4B","entrezGeneId":"3126"},{"alias":"D6S206","entrezGeneId":"3132"},{"alias":"D6S206E","entrezGeneId":"3132"},{"alias":"HLA-DR1BL","entrezGeneId":"3132"},{"alias":"HLA-DRB1L","entrezGeneId":"3132"},{"alias":"HLA-6.2","entrezGeneId":"3133"},{"alias":"QA1","entrezGeneId":"3133"},{"alias":"CDA12","entrezGeneId":"3134"},{"alias":"HLA-5.4","entrezGeneId":"3134"},{"alias":"HLA-CDA12","entrezGeneId":"3134"},{"alias":"HLAF","entrezGeneId":"3134"},{"alias":"MHC-G","entrezGeneId":"3135"},{"alias":"HLAHP","entrezGeneId":"3136"},{"alias":"CDA12","entrezGeneId":"3137"},{"alias":"D6S203","entrezGeneId":"3137"},{"alias":"HLA-59","entrezGeneId":"3137"},{"alias":"HLA-CDA12","entrezGeneId":"3137"},{"alias":"HLA-70","entrezGeneId":"3138"},{"alias":"HLA70","entrezGeneId":"3138"},{"alias":"HLAK","entrezGeneId":"3138"},{"alias":"HLA-92","entrezGeneId":"3139"},{"alias":"HLA92","entrezGeneId":"3139"},{"alias":"HLAL","entrezGeneId":"3139"},{"alias":"HLALS","entrezGeneId":"3140"},{"alias":"HCS","entrezGeneId":"3141"},{"alias":"HB24","entrezGeneId":"3142"},{"alias":"HLX1","entrezGeneId":"3142"},{"alias":"PBG-D","entrezGeneId":"3145"},{"alias":"PBGD","entrezGeneId":"3145"},{"alias":"PORC","entrezGeneId":"3145"},{"alias":"UPS","entrezGeneId":"3145"},{"alias":"HMG-1","entrezGeneId":"3146"},{"alias":"HMG1","entrezGeneId":"3146"},{"alias":"HMG3","entrezGeneId":"3146"},{"alias":"SBP-1","entrezGeneId":"3146"},{"alias":"HMG2","entrezGeneId":"3148"},{"alias":"HMG-2a","entrezGeneId":"3149"},{"alias":"HMG-4","entrezGeneId":"3149"},{"alias":"HMG2A","entrezGeneId":"3149"},{"alias":"HMG4","entrezGeneId":"3149"},{"alias":"HMG14","entrezGeneId":"3150"},{"alias":"HMG17","entrezGeneId":"3151"},{"alias":"28H","entrezGeneId":"3152"},{"alias":"HMG17P1","entrezGeneId":"3152"},{"alias":"HMGN2L11","entrezGeneId":"3152"},{"alias":"60H","entrezGeneId":"3153"},{"alias":"HMG17P2","entrezGeneId":"3153"},{"alias":"HMGN2L12","entrezGeneId":"3153"},{"alias":"HL","entrezGeneId":"3155"},{"alias":"LDLCQ3","entrezGeneId":"3156"},{"alias":"HMGCS","entrezGeneId":"3157"},{"alias":"HMG-R","entrezGeneId":"3159"},{"alias":"HMGA1A","entrezGeneId":"3159"},{"alias":"HMGIY","entrezGeneId":"3159"},{"alias":"CD168","entrezGeneId":"3161"},{"alias":"IHABP","entrezGeneId":"3161"},{"alias":"RHAMM","entrezGeneId":"3161"},{"alias":"bK286B10","entrezGeneId":"3162"},{"alias":"HMOX1D","entrezGeneId":"3162"},{"alias":"HO-1","entrezGeneId":"3162"},{"alias":"HSP32","entrezGeneId":"3162"},{"alias":"HO-2","entrezGeneId":"3163"},{"alias":"GFRP1","entrezGeneId":"3164"},{"alias":"HMR","entrezGeneId":"3164"},{"alias":"N10","entrezGeneId":"3164"},{"alias":"NAK-1","entrezGeneId":"3164"},{"alias":"NGFIB","entrezGeneId":"3164"},{"alias":"NP10","entrezGeneId":"3164"},{"alias":"NUR77","entrezGeneId":"3164"},{"alias":"TR3","entrezGeneId":"3164"},{"alias":"H6","entrezGeneId":"3166"},{"alias":"NKX5-3","entrezGeneId":"3166"},{"alias":"H6L","entrezGeneId":"3167"},{"alias":"Nkx5-2","entrezGeneId":"3167"},{"alias":"HNF3A","entrezGeneId":"3169"},{"alias":"TCF3A","entrezGeneId":"3169"},{"alias":"HNF3B","entrezGeneId":"3170"},{"alias":"TCF3B","entrezGeneId":"3170"},{"alias":"FKHH3","entrezGeneId":"3171"},{"alias":"HNF3G","entrezGeneId":"3171"},{"alias":"TCF3G","entrezGeneId":"3171"},{"alias":"FRTS4","entrezGeneId":"3172"},{"alias":"HNF4","entrezGeneId":"3172"},{"alias":"HNF4a7","entrezGeneId":"3172"},{"alias":"HNF4a8","entrezGeneId":"3172"},{"alias":"HNF4a9","entrezGeneId":"3172"},{"alias":"HNF4alpha","entrezGeneId":"3172"},{"alias":"MODY","entrezGeneId":"3172"},{"alias":"MODY1","entrezGeneId":"3172"},{"alias":"NR2A1","entrezGeneId":"3172"},{"alias":"NR2A21","entrezGeneId":"3172"},{"alias":"TCF","entrezGeneId":"3172"},{"alias":"TCF14","entrezGeneId":"3172"},{"alias":"NR2A2","entrezGeneId":"3174"},{"alias":"NR2A3","entrezGeneId":"3174"},{"alias":"HNF-6","entrezGeneId":"3175"},{"alias":"HNF6","entrezGeneId":"3175"},{"alias":"HNF6A","entrezGeneId":"3175"},{"alias":"HMT","entrezGeneId":"3176"},{"alias":"HNMT-S1","entrezGeneId":"3176"},{"alias":"HNMT-S2","entrezGeneId":"3176"},{"alias":"MRT51","entrezGeneId":"3176"},{"alias":"DER12","entrezGeneId":"3177"},{"alias":"ENT2","entrezGeneId":"3177"},{"alias":"HNP36","entrezGeneId":"3177"},{"alias":"ALS19","entrezGeneId":"3178"},{"alias":"ALS20","entrezGeneId":"3178"},{"alias":"hnRNP A1","entrezGeneId":"3178"},{"alias":"hnRNP-A1","entrezGeneId":"3178"},{"alias":"HNRPA1","entrezGeneId":"3178"},{"alias":"HNRPA1L3","entrezGeneId":"3178"},{"alias":"IBMPFD3","entrezGeneId":"3178"},{"alias":"UP 1","entrezGeneId":"3178"},{"alias":"HNRNPA2","entrezGeneId":"3181"},{"alias":"HNRNPB1","entrezGeneId":"3181"},{"alias":"HNRPA2","entrezGeneId":"3181"},{"alias":"HNRPA2B1","entrezGeneId":"3181"},{"alias":"HNRPB1","entrezGeneId":"3181"},{"alias":"IBMPFD2","entrezGeneId":"3181"},{"alias":"RNPA2","entrezGeneId":"3181"},{"alias":"SNRPB1","entrezGeneId":"3181"},{"alias":"ABBP1","entrezGeneId":"3182"},{"alias":"HNRPAB","entrezGeneId":"3182"},{"alias":"C1","entrezGeneId":"3183"},{"alias":"C2","entrezGeneId":"3183"},{"alias":"HNRNP","entrezGeneId":"3183"},{"alias":"HNRPC","entrezGeneId":"3183"},{"alias":"SNRPC","entrezGeneId":"3183"},{"alias":"AUF1","entrezGeneId":"3184"},{"alias":"AUF1A","entrezGeneId":"3184"},{"alias":"hnRNPD0","entrezGeneId":"3184"},{"alias":"HNRPD","entrezGeneId":"3184"},{"alias":"P37","entrezGeneId":"3184"},{"alias":"HNRPF","entrezGeneId":"3185"},{"alias":"mcs94-1","entrezGeneId":"3185"},{"alias":"OK/SW-cl.23","entrezGeneId":"3185"},{"alias":"HNRNP-G","entrezGeneId":"3186"},{"alias":"HNRPG","entrezGeneId":"3186"},{"alias":"hnRNPH","entrezGeneId":"3187"},{"alias":"HNRPH","entrezGeneId":"3187"},{"alias":"HNRPH1","entrezGeneId":"3187"},{"alias":"FTP3","entrezGeneId":"3188"},{"alias":"hnRNPH'","entrezGeneId":"3188"},{"alias":"HNRPH'","entrezGeneId":"3188"},{"alias":"HNRPH2","entrezGeneId":"3188"},{"alias":"MRXSB","entrezGeneId":"3188"},{"alias":"NRPH2","entrezGeneId":"3188"},{"alias":"2H9","entrezGeneId":"3189"},{"alias":"HNRPH3","entrezGeneId":"3189"},{"alias":"AUKS","entrezGeneId":"3190"},{"alias":"CSBP","entrezGeneId":"3190"},{"alias":"HNRPK","entrezGeneId":"3190"},{"alias":"TUNP","entrezGeneId":"3190"},{"alias":"hnRNP-L","entrezGeneId":"3191"},{"alias":"HNRPL","entrezGeneId":"3191"},{"alias":"P/OKcl.14","entrezGeneId":"3191"},{"alias":"EIEE54","entrezGeneId":"3192"},{"alias":"GRIP120","entrezGeneId":"3192"},{"alias":"hnRNP U","entrezGeneId":"3192"},{"alias":"HNRNPU-AS1","entrezGeneId":"3192"},{"alias":"HNRPU","entrezGeneId":"3192"},{"alias":"pp120","entrezGeneId":"3192"},{"alias":"SAF-A","entrezGeneId":"3192"},{"alias":"SAFA","entrezGeneId":"3192"},{"alias":"U21.1","entrezGeneId":"3192"},{"alias":"ULG4","entrezGeneId":"3193"},{"alias":"HOX11","entrezGeneId":"3195"},{"alias":"TCL3","entrezGeneId":"3195"},{"alias":"HOX11L1","entrezGeneId":"3196"},{"alias":"NCX","entrezGeneId":"3196"},{"alias":"HOX1@","entrezGeneId":"3197"},{"alias":"BSAS","entrezGeneId":"3198"},{"alias":"HOX1","entrezGeneId":"3198"},{"alias":"HOX1F","entrezGeneId":"3198"},{"alias":"HOX1K","entrezGeneId":"3199"},{"alias":"MCOHI","entrezGeneId":"3199"},{"alias":"HOX1","entrezGeneId":"3200"},{"alias":"HOX1E","entrezGeneId":"3200"},{"alias":"HOX1","entrezGeneId":"3201"},{"alias":"HOX1D","entrezGeneId":"3201"},{"alias":"HOX1","entrezGeneId":"3202"},{"alias":"HOX1.3","entrezGeneId":"3202"},{"alias":"HOX1C","entrezGeneId":"3202"},{"alias":"HOX1","entrezGeneId":"3203"},{"alias":"HOX1.2","entrezGeneId":"3203"},{"alias":"HOX1B","entrezGeneId":"3203"},{"alias":"ANTP","entrezGeneId":"3204"},{"alias":"HOX1","entrezGeneId":"3204"},{"alias":"HOX1.1","entrezGeneId":"3204"},{"alias":"HOX1A","entrezGeneId":"3204"},{"alias":"ABD-B","entrezGeneId":"3205"},{"alias":"HOX1","entrezGeneId":"3205"},{"alias":"HOX1.7","entrezGeneId":"3205"},{"alias":"HOX1G","entrezGeneId":"3205"},{"alias":"HOX1","entrezGeneId":"3206"},{"alias":"HOX1.8","entrezGeneId":"3206"},{"alias":"HOX1H","entrezGeneId":"3206"},{"alias":"PL","entrezGeneId":"3206"},{"alias":"HOX1","entrezGeneId":"3207"},{"alias":"HOX1I","entrezGeneId":"3207"},{"alias":"RUSAT1","entrezGeneId":"3207"},{"alias":"BDR2","entrezGeneId":"3208"},{"alias":"DYT2","entrezGeneId":"3208"},{"alias":"HOX1","entrezGeneId":"3209"},{"alias":"HOX1J","entrezGeneId":"3209"},{"alias":"HOX2@","entrezGeneId":"3210"},{"alias":"HCFP3","entrezGeneId":"3211"},{"alias":"Hox-2.9","entrezGeneId":"3211"},{"alias":"HOX2","entrezGeneId":"3211"},{"alias":"HOX2I","entrezGeneId":"3211"},{"alias":"Hox-2.8","entrezGeneId":"3212"},{"alias":"HOX2","entrezGeneId":"3212"},{"alias":"HOX2H","entrezGeneId":"3212"},{"alias":"K8","entrezGeneId":"3212"},{"alias":"Hox-2.7","entrezGeneId":"3213"},{"alias":"HOX2","entrezGeneId":"3213"},{"alias":"HOX2G","entrezGeneId":"3213"},{"alias":"HOX-2.6","entrezGeneId":"3214"},{"alias":"HOX2","entrezGeneId":"3214"},{"alias":"HOX2F","entrezGeneId":"3214"},{"alias":"HHO.C10","entrezGeneId":"3215"},{"alias":"HOX2","entrezGeneId":"3215"},{"alias":"Hox2.1","entrezGeneId":"3215"},{"alias":"HOX2A","entrezGeneId":"3215"},{"alias":"HU-1","entrezGeneId":"3215"},{"alias":"Hox-2.2","entrezGeneId":"3216"},{"alias":"HOX2","entrezGeneId":"3216"},{"alias":"HOX2B","entrezGeneId":"3216"},{"alias":"HU-2","entrezGeneId":"3216"},{"alias":"HHO.C1","entrezGeneId":"3217"},{"alias":"Hox-2.3","entrezGeneId":"3217"},{"alias":"HOX2","entrezGeneId":"3217"},{"alias":"HOX2C","entrezGeneId":"3217"},{"alias":"Hox-2.4","entrezGeneId":"3218"},{"alias":"HOX2","entrezGeneId":"3218"},{"alias":"HOX2D","entrezGeneId":"3218"},{"alias":"HOX-2.5","entrezGeneId":"3219"},{"alias":"HOX2","entrezGeneId":"3219"},{"alias":"HOX2E","entrezGeneId":"3219"},{"alias":"HOX3@","entrezGeneId":"3220"},{"alias":"cp19","entrezGeneId":"3221"},{"alias":"HOX3","entrezGeneId":"3221"},{"alias":"HOX3E","entrezGeneId":"3221"},{"alias":"CP11","entrezGeneId":"3222"},{"alias":"HOX3","entrezGeneId":"3222"},{"alias":"HOX3D","entrezGeneId":"3222"},{"alias":"CP25","entrezGeneId":"3223"},{"alias":"HHO.C8","entrezGeneId":"3223"},{"alias":"HOX3","entrezGeneId":"3223"},{"alias":"HOX3C","entrezGeneId":"3223"},{"alias":"HOX3","entrezGeneId":"3224"},{"alias":"HOX3A","entrezGeneId":"3224"},{"alias":"HOX3","entrezGeneId":"3225"},{"alias":"HOX3B","entrezGeneId":"3225"},{"alias":"HOX3I","entrezGeneId":"3226"},{"alias":"HOX3H","entrezGeneId":"3227"},{"alias":"HOC3F","entrezGeneId":"3228"},{"alias":"HOX3","entrezGeneId":"3228"},{"alias":"HOX3F","entrezGeneId":"3228"},{"alias":"ECTD9","entrezGeneId":"3229"},{"alias":"HOX3","entrezGeneId":"3229"},{"alias":"HOX3G","entrezGeneId":"3229"},{"alias":"HOX4@","entrezGeneId":"3230"},{"alias":"Hox-4.7","entrezGeneId":"3231"},{"alias":"HOX4","entrezGeneId":"3231"},{"alias":"HOX4G","entrezGeneId":"3231"},{"alias":"Hox-4.1","entrezGeneId":"3232"},{"alias":"HOX1D","entrezGeneId":"3232"},{"alias":"HOX4","entrezGeneId":"3232"},{"alias":"HOX4A","entrezGeneId":"3232"},{"alias":"HHO.C13","entrezGeneId":"3233"},{"alias":"Hox-4.2","entrezGeneId":"3233"},{"alias":"HOX-5.1","entrezGeneId":"3233"},{"alias":"HOX4","entrezGeneId":"3233"},{"alias":"HOX4B","entrezGeneId":"3233"},{"alias":"HOX4","entrezGeneId":"3234"},{"alias":"HOX4E","entrezGeneId":"3234"},{"alias":"HOX5.4","entrezGeneId":"3234"},{"alias":"Hox-4.3","entrezGeneId":"3235"},{"alias":"Hox-5.2","entrezGeneId":"3235"},{"alias":"HOX4","entrezGeneId":"3235"},{"alias":"HOX4C","entrezGeneId":"3235"},{"alias":"Hox-4.4","entrezGeneId":"3236"},{"alias":"HOX4","entrezGeneId":"3236"},{"alias":"HOX4D","entrezGeneId":"3236"},{"alias":"HOX4E","entrezGeneId":"3236"},{"alias":"HOX4","entrezGeneId":"3237"},{"alias":"HOX4F","entrezGeneId":"3237"},{"alias":"HOX4H","entrezGeneId":"3238"},{"alias":"BDE","entrezGeneId":"3239"},{"alias":"BDSD","entrezGeneId":"3239"},{"alias":"HOX4I","entrezGeneId":"3239"},{"alias":"SPD","entrezGeneId":"3239"},{"alias":"SPD1","entrezGeneId":"3239"},{"alias":"BP","entrezGeneId":"3240"},{"alias":"HP2ALPHA2","entrezGeneId":"3240"},{"alias":"HPA1S","entrezGeneId":"3240"},{"alias":"BDR1","entrezGeneId":"3241"},{"alias":"HLP2","entrezGeneId":"3241"},{"alias":"VILIP-3","entrezGeneId":"3241"},{"alias":"4-HPPD","entrezGeneId":"3242"},{"alias":"4HPPD","entrezGeneId":"3242"},{"alias":"GLOD3","entrezGeneId":"3242"},{"alias":"HPPDASE","entrezGeneId":"3242"},{"alias":"PPD","entrezGeneId":"3242"},{"alias":"HPEC","entrezGeneId":"3244"},{"alias":"15-PGDH","entrezGeneId":"3248"},{"alias":"PGDH","entrezGeneId":"3248"},{"alias":"PGDH1","entrezGeneId":"3248"},{"alias":"PHOAR1","entrezGeneId":"3248"},{"alias":"SDR36C1","entrezGeneId":"3248"},{"alias":"TMPRSS1","entrezGeneId":"3249"},{"alias":"A-259H10.2","entrezGeneId":"3250"},{"alias":"HP","entrezGeneId":"3250"},{"alias":"HGPRT","entrezGeneId":"3251"},{"alias":"HPRT","entrezGeneId":"3251"},{"alias":"HPRTP2","entrezGeneId":"3254"},{"alias":"HPRTP3","entrezGeneId":"3255"},{"alias":"HPRTP4","entrezGeneId":"3255"},{"alias":"BLOC3S1","entrezGeneId":"3257"},{"alias":"HPS","entrezGeneId":"3257"},{"alias":"HPTX","entrezGeneId":"3258"},{"alias":"HYPX","entrezGeneId":"3258"},{"alias":"D8S37","entrezGeneId":"3260"},{"alias":"HPV18I","entrezGeneId":"3260"},{"alias":"PAL2","entrezGeneId":"3261"},{"alias":"pal2A","entrezGeneId":"3261"},{"alias":"pal2B","entrezGeneId":"3261"},{"alias":"HPV18E5L","entrezGeneId":"3262"},{"alias":"PE5L","entrezGeneId":"3262"},{"alias":"HX","entrezGeneId":"3263"},{"alias":"C-BAS/HAS","entrezGeneId":"3265"},{"alias":"C-H-RAS","entrezGeneId":"3265"},{"alias":"C-HA-RAS1","entrezGeneId":"3265"},{"alias":"CTLO","entrezGeneId":"3265"},{"alias":"H-RASIDX","entrezGeneId":"3265"},{"alias":"HAMSV","entrezGeneId":"3265"},{"alias":"HRAS1","entrezGeneId":"3265"},{"alias":"p21ras","entrezGeneId":"3265"},{"alias":"RASH1","entrezGeneId":"3265"},{"alias":"HRAS2","entrezGeneId":"3266"},{"alias":"HRASP","entrezGeneId":"3266"},{"alias":"HRB","entrezGeneId":"3267"},{"alias":"RAB","entrezGeneId":"3267"},{"alias":"RIP","entrezGeneId":"3267"},{"alias":"HRBL","entrezGeneId":"3268"},{"alias":"RABR","entrezGeneId":"3268"},{"alias":"H1-R","entrezGeneId":"3269"},{"alias":"H1R","entrezGeneId":"3269"},{"alias":"HH1R","entrezGeneId":"3269"},{"alias":"hisH1","entrezGeneId":"3269"},{"alias":"HRES-1","entrezGeneId":"3272"},{"alias":"HRES-1/p28","entrezGeneId":"3272"},{"alias":"HPRG","entrezGeneId":"3273"},{"alias":"HRGP","entrezGeneId":"3273"},{"alias":"THPH11","entrezGeneId":"3273"},{"alias":"H2R","entrezGeneId":"3274"},{"alias":"HRMT1L1","entrezGeneId":"3275"},{"alias":"ANM1","entrezGeneId":"3276"},{"alias":"HCP1","entrezGeneId":"3276"},{"alias":"HRMT1L2","entrezGeneId":"3276"},{"alias":"IR1B4","entrezGeneId":"3276"},{"alias":"bHLHb39","entrezGeneId":"3280"},{"alias":"HES-1","entrezGeneId":"3280"},{"alias":"HHL","entrezGeneId":"3280"},{"alias":"HRY","entrezGeneId":"3280"},{"alias":"NPC-A-13","entrezGeneId":"3281"},{"alias":"3BETAHSD","entrezGeneId":"3283"},{"alias":"HSD3B","entrezGeneId":"3283"},{"alias":"HSDB3","entrezGeneId":"3283"},{"alias":"HSDB3A","entrezGeneId":"3283"},{"alias":"I","entrezGeneId":"3283"},{"alias":"SDR11E1","entrezGeneId":"3283"},{"alias":"HSD3B","entrezGeneId":"3284"},{"alias":"HSDB","entrezGeneId":"3284"},{"alias":"SDR11E2","entrezGeneId":"3284"},{"alias":"11-beta-HSD1","entrezGeneId":"3290"},{"alias":"11-DH","entrezGeneId":"3290"},{"alias":"CORTRD2","entrezGeneId":"3290"},{"alias":"HDL","entrezGeneId":"3290"},{"alias":"HSD11","entrezGeneId":"3290"},{"alias":"HSD11B","entrezGeneId":"3290"},{"alias":"HSD11L","entrezGeneId":"3290"},{"alias":"SDR26C1","entrezGeneId":"3290"},{"alias":"AME","entrezGeneId":"3291"},{"alias":"AME1","entrezGeneId":"3291"},{"alias":"HSD11K","entrezGeneId":"3291"},{"alias":"HSD2","entrezGeneId":"3291"},{"alias":"SDR9C3","entrezGeneId":"3291"},{"alias":"17-beta-HSD","entrezGeneId":"3292"},{"alias":"20-alpha-HSD","entrezGeneId":"3292"},{"alias":"E2DH","entrezGeneId":"3292"},{"alias":"EDH17B2","entrezGeneId":"3292"},{"alias":"EDHB17","entrezGeneId":"3292"},{"alias":"HSD17","entrezGeneId":"3292"},{"alias":"SDR28C1","entrezGeneId":"3292"},{"alias":"EDH17B3","entrezGeneId":"3293"},{"alias":"SDR12C2","entrezGeneId":"3293"},{"alias":"EDH17B2","entrezGeneId":"3294"},{"alias":"HSD17","entrezGeneId":"3294"},{"alias":"SDR9C2","entrezGeneId":"3294"},{"alias":"DBP","entrezGeneId":"3295"},{"alias":"MFE-2","entrezGeneId":"3295"},{"alias":"MPF-2","entrezGeneId":"3295"},{"alias":"PRLTS1","entrezGeneId":"3295"},{"alias":"SDR8C1","entrezGeneId":"3295"},{"alias":"HSTF1","entrezGeneId":"3297"},{"alias":"HSF 2","entrezGeneId":"3298"},{"alias":"HSTF 2","entrezGeneId":"3298"},{"alias":"CTM","entrezGeneId":"3299"},{"alias":"CTRCT5","entrezGeneId":"3299"},{"alias":"CMT2T","entrezGeneId":"3300"},{"alias":"DSMA5","entrezGeneId":"3300"},{"alias":"HSJ-1","entrezGeneId":"3300"},{"alias":"HSJ1","entrezGeneId":"3300"},{"alias":"HSPF3","entrezGeneId":"3300"},{"alias":"DJ-2","entrezGeneId":"3301"},{"alias":"DjA1","entrezGeneId":"3301"},{"alias":"hDJ-2","entrezGeneId":"3301"},{"alias":"HDJ2","entrezGeneId":"3301"},{"alias":"HSDJ","entrezGeneId":"3301"},{"alias":"HSJ-2","entrezGeneId":"3301"},{"alias":"HSJ2","entrezGeneId":"3301"},{"alias":"HSPF4","entrezGeneId":"3301"},{"alias":"NEDD7","entrezGeneId":"3301"},{"alias":"HEL-S-103","entrezGeneId":"3303"},{"alias":"HSP70-1","entrezGeneId":"3303"},{"alias":"HSP70-1A","entrezGeneId":"3303"},{"alias":"HSP70.1","entrezGeneId":"3303"},{"alias":"HSP70I","entrezGeneId":"3303"},{"alias":"HSP72","entrezGeneId":"3303"},{"alias":"HSPA1","entrezGeneId":"3303"},{"alias":"HSP70-1B","entrezGeneId":"3304"},{"alias":"HSP70-2","entrezGeneId":"3304"},{"alias":"HSP70.2","entrezGeneId":"3304"},{"alias":"HSP70-1L","entrezGeneId":"3305"},{"alias":"HSP70-HOM","entrezGeneId":"3305"},{"alias":"HSP70T","entrezGeneId":"3305"},{"alias":"hum70t","entrezGeneId":"3305"},{"alias":"HSP70-2","entrezGeneId":"3306"},{"alias":"HSP70-3","entrezGeneId":"3306"},{"alias":"APG-2","entrezGeneId":"3308"},{"alias":"HEL-S-5a","entrezGeneId":"3308"},{"alias":"HS24/P52","entrezGeneId":"3308"},{"alias":"hsp70","entrezGeneId":"3308"},{"alias":"hsp70RY","entrezGeneId":"3308"},{"alias":"HSPH2","entrezGeneId":"3308"},{"alias":"RY","entrezGeneId":"3308"},{"alias":"BIP","entrezGeneId":"3309"},{"alias":"GRP78","entrezGeneId":"3309"},{"alias":"HEL-S-89n","entrezGeneId":"3309"},{"alias":"MIF2","entrezGeneId":"3309"},{"alias":"HSP70B'","entrezGeneId":"3310"},{"alias":"HSP70B","entrezGeneId":"3311"},{"alias":"HEL-33","entrezGeneId":"3312"},{"alias":"HEL-S-72p","entrezGeneId":"3312"},{"alias":"HSC54","entrezGeneId":"3312"},{"alias":"HSC70","entrezGeneId":"3312"},{"alias":"HSC71","entrezGeneId":"3312"},{"alias":"HSP71","entrezGeneId":"3312"},{"alias":"HSP73","entrezGeneId":"3312"},{"alias":"HSPA10","entrezGeneId":"3312"},{"alias":"LAP-1","entrezGeneId":"3312"},{"alias":"LAP1","entrezGeneId":"3312"},{"alias":"NIP71","entrezGeneId":"3312"},{"alias":"CRP40","entrezGeneId":"3313"},{"alias":"CSA","entrezGeneId":"3313"},{"alias":"EVPLS","entrezGeneId":"3313"},{"alias":"GRP-75","entrezGeneId":"3313"},{"alias":"GRP75","entrezGeneId":"3313"},{"alias":"HEL-S-124m","entrezGeneId":"3313"},{"alias":"HSPA9B","entrezGeneId":"3313"},{"alias":"MOT","entrezGeneId":"3313"},{"alias":"MOT2","entrezGeneId":"3313"},{"alias":"MTHSP75","entrezGeneId":"3313"},{"alias":"PBP74","entrezGeneId":"3313"},{"alias":"SAAN","entrezGeneId":"3313"},{"alias":"SIDBA4","entrezGeneId":"3313"},{"alias":"HSPAP1","entrezGeneId":"3314"},{"alias":"CMT2F","entrezGeneId":"3315"},{"alias":"HEL-S-102","entrezGeneId":"3315"},{"alias":"HMN2B","entrezGeneId":"3315"},{"alias":"HS.76067","entrezGeneId":"3315"},{"alias":"Hsp25","entrezGeneId":"3315"},{"alias":"HSP27","entrezGeneId":"3315"},{"alias":"HSP28","entrezGeneId":"3315"},{"alias":"SRP27","entrezGeneId":"3315"},{"alias":"Hs.78846","entrezGeneId":"3316"},{"alias":"HSP27","entrezGeneId":"3316"},{"alias":"LOH11CR1K","entrezGeneId":"3316"},{"alias":"MKBP","entrezGeneId":"3316"},{"alias":"EL52","entrezGeneId":"3320"},{"alias":"HEL-S-65p","entrezGeneId":"3320"},{"alias":"Hsp103","entrezGeneId":"3320"},{"alias":"HSP86","entrezGeneId":"3320"},{"alias":"Hsp89","entrezGeneId":"3320"},{"alias":"HSP89A","entrezGeneId":"3320"},{"alias":"Hsp90","entrezGeneId":"3320"},{"alias":"HSP90A","entrezGeneId":"3320"},{"alias":"HSP90N","entrezGeneId":"3320"},{"alias":"HSPC1","entrezGeneId":"3320"},{"alias":"HSPCA","entrezGeneId":"3320"},{"alias":"HSPCAL1","entrezGeneId":"3320"},{"alias":"HSPCAL4","entrezGeneId":"3320"},{"alias":"HSPN","entrezGeneId":"3320"},{"alias":"LAP-2","entrezGeneId":"3320"},{"alias":"LAP2","entrezGeneId":"3320"},{"alias":"EWI-3","entrezGeneId":"3321"},{"alias":"LCDD","entrezGeneId":"3321"},{"alias":"V8","entrezGeneId":"3321"},{"alias":"HSPCAL1","entrezGeneId":"3322"},{"alias":"HSP90Ad","entrezGeneId":"3323"},{"alias":"HSPCAL2","entrezGeneId":"3323"},{"alias":"HSP90AA2","entrezGeneId":"3324"},{"alias":"HSP90ALPHA","entrezGeneId":"3324"},{"alias":"HSPCA","entrezGeneId":"3324"},{"alias":"HSPCAL3","entrezGeneId":"3324"},{"alias":"D6S182","entrezGeneId":"3326"},{"alias":"HSP84","entrezGeneId":"3326"},{"alias":"HSP90B","entrezGeneId":"3326"},{"alias":"HSPC2","entrezGeneId":"3326"},{"alias":"HSPCB","entrezGeneId":"3326"},{"alias":"HSP90BC","entrezGeneId":"3327"},{"alias":"HSPCP1","entrezGeneId":"3327"},{"alias":"CPN60","entrezGeneId":"3329"},{"alias":"GROEL","entrezGeneId":"3329"},{"alias":"HLD4","entrezGeneId":"3329"},{"alias":"HSP-60","entrezGeneId":"3329"},{"alias":"HSP60","entrezGeneId":"3329"},{"alias":"HSP65","entrezGeneId":"3329"},{"alias":"HuCHA60","entrezGeneId":"3329"},{"alias":"SPG13","entrezGeneId":"3329"},{"alias":"HSP60P1","entrezGeneId":"3332"},{"alias":"HSP60P3","entrezGeneId":"3332"},{"alias":"HSP60P4","entrezGeneId":"3332"},{"alias":"HSPD1-7P","entrezGeneId":"3332"},{"alias":"HSPDP1","entrezGeneId":"3332"},{"alias":"HSPDP3","entrezGeneId":"3332"},{"alias":"HSPDP4","entrezGeneId":"3332"},{"alias":"CPN10","entrezGeneId":"3336"},{"alias":"EPF","entrezGeneId":"3336"},{"alias":"GROES","entrezGeneId":"3336"},{"alias":"HSP10","entrezGeneId":"3336"},{"alias":"Hdj1","entrezGeneId":"3337"},{"alias":"Hsp40","entrezGeneId":"3337"},{"alias":"HSPF1","entrezGeneId":"3337"},{"alias":"RSPH16B","entrezGeneId":"3337"},{"alias":"Sis1","entrezGeneId":"3337"},{"alias":"DANJC4","entrezGeneId":"3338"},{"alias":"HSPF2","entrezGeneId":"3338"},{"alias":"MCG18","entrezGeneId":"3338"},{"alias":"HSPG","entrezGeneId":"3339"},{"alias":"PLC","entrezGeneId":"3339"},{"alias":"PRCAN","entrezGeneId":"3339"},{"alias":"SJA","entrezGeneId":"3339"},{"alias":"SJS","entrezGeneId":"3339"},{"alias":"SJS1","entrezGeneId":"3339"},{"alias":"HSST","entrezGeneId":"3340"},{"alias":"MRT46","entrezGeneId":"3340"},{"alias":"NST1","entrezGeneId":"3340"},{"alias":"CGH","entrezGeneId":"3342"},{"alias":"CXINSq27.1","entrezGeneId":"3342"},{"alias":"HCG","entrezGeneId":"3342"},{"alias":"HLT","entrezGeneId":"3343"},{"alias":"LEUT","entrezGeneId":"3343"},{"alias":"HTLF","entrezGeneId":"3344"},{"alias":"HIS1","entrezGeneId":"3346"},{"alias":"HIS2","entrezGeneId":"3347"},{"alias":"HTN2","entrezGeneId":"3347"},{"alias":"HTN5","entrezGeneId":"3347"},{"alias":"5-HT-1A","entrezGeneId":"3350"},{"alias":"5-HT1A","entrezGeneId":"3350"},{"alias":"5HT1a","entrezGeneId":"3350"},{"alias":"ADRB2RL1","entrezGeneId":"3350"},{"alias":"ADRBRL1","entrezGeneId":"3350"},{"alias":"G-21","entrezGeneId":"3350"},{"alias":"PFMCD","entrezGeneId":"3350"},{"alias":"5-HT-1B","entrezGeneId":"3351"},{"alias":"5-HT-1D-beta","entrezGeneId":"3351"},{"alias":"5-HT1B","entrezGeneId":"3351"},{"alias":"5-HT1DB","entrezGeneId":"3351"},{"alias":"HTR1D2","entrezGeneId":"3351"},{"alias":"HTR1DB","entrezGeneId":"3351"},{"alias":"S12","entrezGeneId":"3351"},{"alias":"5-HT1D","entrezGeneId":"3352"},{"alias":"HT1DA","entrezGeneId":"3352"},{"alias":"HTR1DA","entrezGeneId":"3352"},{"alias":"HTRL","entrezGeneId":"3352"},{"alias":"RDC4","entrezGeneId":"3352"},{"alias":"5-HT1E","entrezGeneId":"3354"},{"alias":"5-HT-1F","entrezGeneId":"3355"},{"alias":"5-HT1F","entrezGeneId":"3355"},{"alias":"5HT6","entrezGeneId":"3355"},{"alias":"HTR1EL","entrezGeneId":"3355"},{"alias":"MR77","entrezGeneId":"3355"},{"alias":"5-HT2A","entrezGeneId":"3356"},{"alias":"HTR2","entrezGeneId":"3356"},{"alias":"5-HT(2B)","entrezGeneId":"3357"},{"alias":"5-HT-2B","entrezGeneId":"3357"},{"alias":"5-HT2B","entrezGeneId":"3357"},{"alias":"5-HT1C","entrezGeneId":"3358"},{"alias":"5-HT2C","entrezGeneId":"3358"},{"alias":"5-HTR2C","entrezGeneId":"3358"},{"alias":"5HTR2C","entrezGeneId":"3358"},{"alias":"HTR1C","entrezGeneId":"3358"},{"alias":"5-HT-3","entrezGeneId":"3359"},{"alias":"5-HT3A","entrezGeneId":"3359"},{"alias":"5-HT3R","entrezGeneId":"3359"},{"alias":"5HT3R","entrezGeneId":"3359"},{"alias":"HTR3","entrezGeneId":"3359"},{"alias":"5-HT4","entrezGeneId":"3360"},{"alias":"5-HT4R","entrezGeneId":"3360"},{"alias":"5-HT5A","entrezGeneId":"3361"},{"alias":"5-HT6","entrezGeneId":"3362"},{"alias":"5-HT6R","entrezGeneId":"3362"},{"alias":"5-HT7","entrezGeneId":"3363"},{"alias":"hHUS1","entrezGeneId":"3364"},{"alias":"150-225","entrezGeneId":"3371"},{"alias":"DFNA56","entrezGeneId":"3371"},{"alias":"GMEM","entrezGeneId":"3371"},{"alias":"GP","entrezGeneId":"3371"},{"alias":"HXB","entrezGeneId":"3371"},{"alias":"JI","entrezGeneId":"3371"},{"alias":"TN","entrezGeneId":"3371"},{"alias":"TN-C","entrezGeneId":"3371"},{"alias":"HYAL-1","entrezGeneId":"3373"},{"alias":"LUCA1","entrezGeneId":"3373"},{"alias":"MPS9","entrezGeneId":"3373"},{"alias":"NAT6","entrezGeneId":"3373"},{"alias":"DAP","entrezGeneId":"3375"},{"alias":"IAP","entrezGeneId":"3375"},{"alias":"GRIDHH","entrezGeneId":"3376"},{"alias":"IARS1","entrezGeneId":"3376"},{"alias":"ILERS","entrezGeneId":"3376"},{"alias":"ILRS","entrezGeneId":"3376"},{"alias":"IRS","entrezGeneId":"3376"},{"alias":"PRO0785","entrezGeneId":"3376"},{"alias":"BNSP","entrezGeneId":"3381"},{"alias":"BSP","entrezGeneId":"3381"},{"alias":"BSP-II","entrezGeneId":"3381"},{"alias":"SP-II","entrezGeneId":"3381"},{"alias":"ICA69","entrezGeneId":"3382"},{"alias":"ICAp69","entrezGeneId":"3382"},{"alias":"BB2","entrezGeneId":"3383"},{"alias":"CD54","entrezGeneId":"3383"},{"alias":"P3.58","entrezGeneId":"3383"},{"alias":"CD102","entrezGeneId":"3384"},{"alias":"CD50","entrezGeneId":"3385"},{"alias":"CDW50","entrezGeneId":"3385"},{"alias":"ICAM-R","entrezGeneId":"3385"},{"alias":"CD242","entrezGeneId":"3386"},{"alias":"LW","entrezGeneId":"3386"},{"alias":"H-ICSBP","entrezGeneId":"3394"},{"alias":"ICSBP","entrezGeneId":"3394"},{"alias":"ICSBP1","entrezGeneId":"3394"},{"alias":"IMD32A","entrezGeneId":"3394"},{"alias":"IMD32B","entrezGeneId":"3394"},{"alias":"IRF-8","entrezGeneId":"3394"},{"alias":"DS-1","entrezGeneId":"3396"},{"alias":"DS1","entrezGeneId":"3396"},{"alias":"ICT1","entrezGeneId":"3396"},{"alias":"MRP-L58","entrezGeneId":"3396"},{"alias":"bHLHb24","entrezGeneId":"3397"},{"alias":"ID","entrezGeneId":"3397"},{"alias":"bHLHb26","entrezGeneId":"3398"},{"alias":"GIG8","entrezGeneId":"3398"},{"alias":"ID2A","entrezGeneId":"3398"},{"alias":"ID2H","entrezGeneId":"3398"},{"alias":"bHLHb25","entrezGeneId":"3399"},{"alias":"HEIR-1","entrezGeneId":"3399"},{"alias":"bHLHb27","entrezGeneId":"3400"},{"alias":"IDB4","entrezGeneId":"3400"},{"alias":"INSULYSIN","entrezGeneId":"3416"},{"alias":"HEL-216","entrezGeneId":"3417"},{"alias":"HEL-S-26","entrezGeneId":"3417"},{"alias":"IDCD","entrezGeneId":"3417"},{"alias":"IDH","entrezGeneId":"3417"},{"alias":"IDP","entrezGeneId":"3417"},{"alias":"IDPC","entrezGeneId":"3417"},{"alias":"PICD","entrezGeneId":"3417"},{"alias":"D2HGA2","entrezGeneId":"3418"},{"alias":"ICD-M","entrezGeneId":"3418"},{"alias":"IDH","entrezGeneId":"3418"},{"alias":"IDHM","entrezGeneId":"3418"},{"alias":"IDP","entrezGeneId":"3418"},{"alias":"IDPM","entrezGeneId":"3418"},{"alias":"mNADP-IDH","entrezGeneId":"3418"},{"alias":"RP46","entrezGeneId":"3420"},{"alias":"H-IDHG","entrezGeneId":"3421"},{"alias":"IPP1","entrezGeneId":"3422"},{"alias":"IPPI1","entrezGeneId":"3422"},{"alias":"MPS2","entrezGeneId":"3423"},{"alias":"SIDS","entrezGeneId":"3423"},{"alias":"IDS2","entrezGeneId":"3424"},{"alias":"IDA","entrezGeneId":"3425"},{"alias":"MPS1","entrezGeneId":"3425"},{"alias":"AHUS3","entrezGeneId":"3426"},{"alias":"ARMD13","entrezGeneId":"3426"},{"alias":"C3b-INA","entrezGeneId":"3426"},{"alias":"C3BINA","entrezGeneId":"3426"},{"alias":"FI","entrezGeneId":"3426"},{"alias":"IF","entrezGeneId":"3426"},{"alias":"KAF","entrezGeneId":"3426"},{"alias":"IFNGIP1","entrezGeneId":"3428"},{"alias":"PYHIN2","entrezGeneId":"3428"},{"alias":"FAM14D","entrezGeneId":"3429"},{"alias":"ISG12","entrezGeneId":"3429"},{"alias":"ISG12A","entrezGeneId":"3429"},{"alias":"P27","entrezGeneId":"3429"},{"alias":"IFP35","entrezGeneId":"3430"},{"alias":"IFI41","entrezGeneId":"3431"},{"alias":"IFI75","entrezGeneId":"3431"},{"alias":"IPR1","entrezGeneId":"3431"},{"alias":"VODI","entrezGeneId":"3431"},{"alias":"cig42","entrezGeneId":"3433"},{"alias":"G10P2","entrezGeneId":"3433"},{"alias":"GARG-39","entrezGeneId":"3433"},{"alias":"IFI-54","entrezGeneId":"3433"},{"alias":"IFI-54K","entrezGeneId":"3433"},{"alias":"IFI54","entrezGeneId":"3433"},{"alias":"IFIT-2","entrezGeneId":"3433"},{"alias":"ISG-54 K","entrezGeneId":"3433"},{"alias":"ISG-54K","entrezGeneId":"3433"},{"alias":"ISG54","entrezGeneId":"3433"},{"alias":"P54","entrezGeneId":"3433"},{"alias":"C56","entrezGeneId":"3434"},{"alias":"G10P1","entrezGeneId":"3434"},{"alias":"IFI-56","entrezGeneId":"3434"},{"alias":"IFI-56K","entrezGeneId":"3434"},{"alias":"IFI56","entrezGeneId":"3434"},{"alias":"IFIT-1","entrezGeneId":"3434"},{"alias":"IFNAI1","entrezGeneId":"3434"},{"alias":"ISG56","entrezGeneId":"3434"},{"alias":"P56","entrezGeneId":"3434"},{"alias":"RNM561","entrezGeneId":"3434"},{"alias":"CIG-49","entrezGeneId":"3437"},{"alias":"cig41","entrezGeneId":"3437"},{"alias":"GARG-49","entrezGeneId":"3437"},{"alias":"IFI60","entrezGeneId":"3437"},{"alias":"IFIT4","entrezGeneId":"3437"},{"alias":"IRG2","entrezGeneId":"3437"},{"alias":"ISG60","entrezGeneId":"3437"},{"alias":"P60","entrezGeneId":"3437"},{"alias":"RIG-G","entrezGeneId":"3437"},{"alias":"IFNA","entrezGeneId":"3438"},{"alias":"IFL","entrezGeneId":"3439"},{"alias":"IFN","entrezGeneId":"3439"},{"alias":"IFN-ALPHA","entrezGeneId":"3439"},{"alias":"IFN-alphaD","entrezGeneId":"3439"},{"alias":"IFNA13","entrezGeneId":"3439"},{"alias":"IFNA@","entrezGeneId":"3439"},{"alias":"IFN-alphaA","entrezGeneId":"3440"},{"alias":"IFNA","entrezGeneId":"3440"},{"alias":"IFNA2B","entrezGeneId":"3440"},{"alias":"INFA2","entrezGeneId":"3440"},{"alias":"IFN-alpha4a","entrezGeneId":"3441"},{"alias":"INFA4","entrezGeneId":"3441"},{"alias":"IFN-alpha-5","entrezGeneId":"3442"},{"alias":"IFN-alphaG","entrezGeneId":"3442"},{"alias":"INA5","entrezGeneId":"3442"},{"alias":"INFA5","entrezGeneId":"3442"},{"alias":"leIF G","entrezGeneId":"3442"},{"alias":"IFN-alphaK","entrezGeneId":"3443"},{"alias":"IFN-alphaJ","entrezGeneId":"3444"},{"alias":"IFNA-J","entrezGeneId":"3444"},{"alias":"IFN-alphaB","entrezGeneId":"3445"},{"alias":"IFN-alphaC","entrezGeneId":"3446"},{"alias":"IFN-alphaH","entrezGeneId":"3448"},{"alias":"LEIF2H","entrezGeneId":"3448"},{"alias":"IFN-alpha-16","entrezGeneId":"3449"},{"alias":"IFN-alphaO","entrezGeneId":"3449"},{"alias":"IFN-alphaI","entrezGeneId":"3451"},{"alias":"IFNA","entrezGeneId":"3451"},{"alias":"INFA","entrezGeneId":"3451"},{"alias":"LEIF2C1","entrezGeneId":"3451"},{"alias":"IFN-alphaI","entrezGeneId":"3452"},{"alias":"LeIF F","entrezGeneId":"3452"},{"alias":"leIF-F","entrezGeneId":"3452"},{"alias":"IFNAP22","entrezGeneId":"3453"},{"alias":"AVP","entrezGeneId":"3454"},{"alias":"IFN-alpha-REC","entrezGeneId":"3454"},{"alias":"IFNAR","entrezGeneId":"3454"},{"alias":"IFNBR","entrezGeneId":"3454"},{"alias":"IFRC","entrezGeneId":"3454"},{"alias":"IFN-alpha-REC","entrezGeneId":"3455"},{"alias":"IFN-R","entrezGeneId":"3455"},{"alias":"IFNABR","entrezGeneId":"3455"},{"alias":"IFNARB","entrezGeneId":"3455"},{"alias":"IMD45","entrezGeneId":"3455"},{"alias":"IFB","entrezGeneId":"3456"},{"alias":"IFF","entrezGeneId":"3456"},{"alias":"IFN-beta","entrezGeneId":"3456"},{"alias":"IFNB","entrezGeneId":"3456"},{"alias":"IFG","entrezGeneId":"3458"},{"alias":"IFI","entrezGeneId":"3458"},{"alias":"CD119","entrezGeneId":"3459"},{"alias":"IFNGR","entrezGeneId":"3459"},{"alias":"IMD27A","entrezGeneId":"3459"},{"alias":"IMD27B","entrezGeneId":"3459"},{"alias":"AF-1","entrezGeneId":"3460"},{"alias":"IFGR2","entrezGeneId":"3460"},{"alias":"IFNGT1","entrezGeneId":"3460"},{"alias":"IMD28","entrezGeneId":"3460"},{"alias":"IFNP11","entrezGeneId":"3461"},{"alias":"IFNP20","entrezGeneId":"3463"},{"alias":"IFNGM","entrezGeneId":"3466"},{"alias":"IFNGM2","entrezGeneId":"3466"},{"alias":"PC4","entrezGeneId":"3475"},{"alias":"TIS7","entrezGeneId":"3475"},{"alias":"ALPHA-4","entrezGeneId":"3476"},{"alias":"IBP1","entrezGeneId":"3476"},{"alias":"IGF-I","entrezGeneId":"3479"},{"alias":"IGFI","entrezGeneId":"3479"},{"alias":"MGF","entrezGeneId":"3479"},{"alias":"CD221","entrezGeneId":"3480"},{"alias":"IGFIR","entrezGeneId":"3480"},{"alias":"IGFR","entrezGeneId":"3480"},{"alias":"JTK13","entrezGeneId":"3480"},{"alias":"C11orf43","entrezGeneId":"3481"},{"alias":"GRDF","entrezGeneId":"3481"},{"alias":"IGF-II","entrezGeneId":"3481"},{"alias":"PP9974","entrezGeneId":"3481"},{"alias":"CD222","entrezGeneId":"3482"},{"alias":"CI-M6PR","entrezGeneId":"3482"},{"alias":"CIMPR","entrezGeneId":"3482"},{"alias":"M6P-R","entrezGeneId":"3482"},{"alias":"M6P/IGF2R","entrezGeneId":"3482"},{"alias":"MPR 300","entrezGeneId":"3482"},{"alias":"MPR1","entrezGeneId":"3482"},{"alias":"MPR300","entrezGeneId":"3482"},{"alias":"MPRI","entrezGeneId":"3482"},{"alias":"ACLSD","entrezGeneId":"3483"},{"alias":"ALS","entrezGeneId":"3483"},{"alias":"AFBP","entrezGeneId":"3484"},{"alias":"hIGFBP-1","entrezGeneId":"3484"},{"alias":"IBP1","entrezGeneId":"3484"},{"alias":"IGF-BP25","entrezGeneId":"3484"},{"alias":"PP12","entrezGeneId":"3484"},{"alias":"IBP2","entrezGeneId":"3485"},{"alias":"IGF-BP53","entrezGeneId":"3485"},{"alias":"BP-53","entrezGeneId":"3486"},{"alias":"IBP3","entrezGeneId":"3486"},{"alias":"BP-4","entrezGeneId":"3487"},{"alias":"HT29-IGFBP","entrezGeneId":"3487"},{"alias":"IBP4","entrezGeneId":"3487"},{"alias":"IGFBP-4","entrezGeneId":"3487"},{"alias":"IBP5","entrezGeneId":"3488"},{"alias":"IBP6","entrezGeneId":"3489"},{"alias":"AGM","entrezGeneId":"3490"},{"alias":"FSTL2","entrezGeneId":"3490"},{"alias":"IBP-7","entrezGeneId":"3490"},{"alias":"IGFBP-7","entrezGeneId":"3490"},{"alias":"IGFBP-7v","entrezGeneId":"3490"},{"alias":"IGFBPRP1","entrezGeneId":"3490"},{"alias":"MAC25","entrezGeneId":"3490"},{"alias":"PSF","entrezGeneId":"3490"},{"alias":"RAMSVPS","entrezGeneId":"3490"},{"alias":"TAF","entrezGeneId":"3490"},{"alias":"CCN1","entrezGeneId":"3491"},{"alias":"GIG1","entrezGeneId":"3491"},{"alias":"IGFBP10","entrezGeneId":"3491"},{"alias":"IGD1","entrezGeneId":"3492"},{"alias":"IGH.1@","entrezGeneId":"3492"},{"alias":"IGH@","entrezGeneId":"3492"},{"alias":"IGHD@","entrezGeneId":"3492"},{"alias":"IGHDY1","entrezGeneId":"3492"},{"alias":"IGHJ","entrezGeneId":"3492"},{"alias":"IGHJ@","entrezGeneId":"3492"},{"alias":"IGHV","entrezGeneId":"3492"},{"alias":"IGHV@","entrezGeneId":"3492"},{"alias":"IgA1","entrezGeneId":"3493"},{"alias":"IGD2","entrezGeneId":"3496"},{"alias":"IGHD/OR15","entrezGeneId":"3496"},{"alias":"IGHDY2","entrezGeneId":"3496"},{"alias":"IgE","entrezGeneId":"3497"},{"alias":"IgG3","entrezGeneId":"3502"},{"alias":"IGHGP1","entrezGeneId":"3505"},{"alias":"AGM1","entrezGeneId":"3507"},{"alias":"MU","entrezGeneId":"3507"},{"alias":"VH","entrezGeneId":"3507"},{"alias":"CATF1","entrezGeneId":"3508"},{"alias":"CMT2S","entrezGeneId":"3508"},{"alias":"HCSA","entrezGeneId":"3508"},{"alias":"HMN6","entrezGeneId":"3508"},{"alias":"SMARD1","entrezGeneId":"3508"},{"alias":"SMUBP2","entrezGeneId":"3508"},{"alias":"ZFAND7","entrezGeneId":"3508"},{"alias":"IGCJ","entrezGeneId":"3512"},{"alias":"IGJ","entrezGeneId":"3512"},{"alias":"JCH","entrezGeneId":"3512"},{"alias":"HCAK1","entrezGeneId":"3514"},{"alias":"IGKCD","entrezGeneId":"3514"},{"alias":"Km","entrezGeneId":"3514"},{"alias":"IGKDE","entrezGeneId":"3515"},{"alias":"AOS3","entrezGeneId":"3516"},{"alias":"CBF1","entrezGeneId":"3516"},{"alias":"csl","entrezGeneId":"3516"},{"alias":"IGKJRB","entrezGeneId":"3516"},{"alias":"IGKJRB1","entrezGeneId":"3516"},{"alias":"KBF2","entrezGeneId":"3516"},{"alias":"RBP-J","entrezGeneId":"3516"},{"alias":"RBPJK","entrezGeneId":"3516"},{"alias":"RBPSUH","entrezGeneId":"3516"},{"alias":"SUH","entrezGeneId":"3516"},{"alias":"IGKJRBP2","entrezGeneId":"3517"},{"alias":"RBPSUHP2","entrezGeneId":"3517"},{"alias":"IGKV","entrezGeneId":"3519"},{"alias":"IGKV1","entrezGeneId":"3519"},{"alias":"IGKV1@","entrezGeneId":"3519"},{"alias":"IGKV2","entrezGeneId":"3519"},{"alias":"IGKV2@","entrezGeneId":"3519"},{"alias":"IGKV3","entrezGeneId":"3519"},{"alias":"IGKV3@","entrezGeneId":"3519"},{"alias":"IGKV268","entrezGeneId":"3523"},{"alias":"IGKV3OR2-268A","entrezGeneId":"3523"},{"alias":"IGKV3OR2268","entrezGeneId":"3523"},{"alias":"IGKV3OR2268A","entrezGeneId":"3523"},{"alias":"IGKV1/OR1-1","entrezGeneId":"3525"},{"alias":"IGKV1OR11","entrezGeneId":"3525"},{"alias":"IGKVP1","entrezGeneId":"3525"},{"alias":"IGKV3OR222","entrezGeneId":"3527"},{"alias":"IGKVP3","entrezGeneId":"3527"},{"alias":"IGKV2OR223","entrezGeneId":"3529"},{"alias":"IGKVP4","entrezGeneId":"3529"},{"alias":"IGKV1OR221","entrezGeneId":"3530"},{"alias":"IGKVP5","entrezGeneId":"3530"},{"alias":"IGKV1/OR-1","entrezGeneId":"3531"},{"alias":"IGKV1/OR2-1","entrezGeneId":"3531"},{"alias":"IGKV1OR-1","entrezGeneId":"3531"},{"alias":"IGKV1OR1","entrezGeneId":"3531"},{"alias":"IGKVPZ1","entrezGeneId":"3531"},{"alias":"IGKV1/OR-2","entrezGeneId":"3532"},{"alias":"IGKV1OR2","entrezGeneId":"3532"},{"alias":"IGKVPZ2","entrezGeneId":"3532"},{"alias":"IGKV1/OR-4","entrezGeneId":"3534"},{"alias":"IGKV1OR4","entrezGeneId":"3534"},{"alias":"IGKVPZ4","entrezGeneId":"3534"},{"alias":"IGL@","entrezGeneId":"3535"},{"alias":"IGLC6","entrezGeneId":"3535"},{"alias":"IGLC","entrezGeneId":"3537"},{"alias":"IGLC","entrezGeneId":"3538"},{"alias":"IGLC","entrezGeneId":"3539"},{"alias":"IGLC","entrezGeneId":"3540"},{"alias":"IGLC","entrezGeneId":"3541"},{"alias":"IGLC","entrezGeneId":"3542"},{"alias":"14.1","entrezGeneId":"3543"},{"alias":"AGM2","entrezGeneId":"3543"},{"alias":"CD179b","entrezGeneId":"3543"},{"alias":"IGL1","entrezGeneId":"3543"},{"alias":"IGL5","entrezGeneId":"3543"},{"alias":"IGLJ14.1","entrezGeneId":"3543"},{"alias":"IGLL","entrezGeneId":"3543"},{"alias":"IGO","entrezGeneId":"3543"},{"alias":"IGVPB","entrezGeneId":"3543"},{"alias":"VPREB2","entrezGeneId":"3543"},{"alias":"16.2","entrezGeneId":"3544"},{"alias":"FLAMBDA1","entrezGeneId":"3544"},{"alias":"IGLL1P","entrezGeneId":"3544"},{"alias":"IGLL2","entrezGeneId":"3544"},{"alias":"IGLV","entrezGeneId":"3546"},{"alias":"CHTE","entrezGeneId":"3547"},{"alias":"IGCD1","entrezGeneId":"3547"},{"alias":"IGDC1","entrezGeneId":"3547"},{"alias":"INHBP","entrezGeneId":"3547"},{"alias":"p120","entrezGeneId":"3547"},{"alias":"PGSF2","entrezGeneId":"3547"},{"alias":"IHG","entrezGeneId":"3548"},{"alias":"BDA1","entrezGeneId":"3549"},{"alias":"HHG2","entrezGeneId":"3549"},{"alias":"CSA2","entrezGeneId":"3550"},{"alias":"RED","entrezGeneId":"3550"},{"alias":"RER","entrezGeneId":"3550"},{"alias":"IKK-beta","entrezGeneId":"3551"},{"alias":"IKK2","entrezGeneId":"3551"},{"alias":"IKKB","entrezGeneId":"3551"},{"alias":"IMD15","entrezGeneId":"3551"},{"alias":"NFKBIKB","entrezGeneId":"3551"},{"alias":"IL-1A","entrezGeneId":"3552"},{"alias":"IL1","entrezGeneId":"3552"},{"alias":"IL1-ALPHA","entrezGeneId":"3552"},{"alias":"IL1F1","entrezGeneId":"3552"},{"alias":"IL-1","entrezGeneId":"3553"},{"alias":"IL1-BETA","entrezGeneId":"3553"},{"alias":"IL1F2","entrezGeneId":"3553"},{"alias":"CD121A","entrezGeneId":"3554"},{"alias":"D2S1473","entrezGeneId":"3554"},{"alias":"IL-1R-alpha","entrezGeneId":"3554"},{"alias":"IL1R","entrezGeneId":"3554"},{"alias":"IL1RA","entrezGeneId":"3554"},{"alias":"P80","entrezGeneId":"3554"},{"alias":"C3orf13","entrezGeneId":"3556"},{"alias":"IL-1RAcP","entrezGeneId":"3556"},{"alias":"IL1R3","entrezGeneId":"3556"},{"alias":"DIRA","entrezGeneId":"3557"},{"alias":"ICIL-1RA","entrezGeneId":"3557"},{"alias":"IL-1ra","entrezGeneId":"3557"},{"alias":"IL-1ra3","entrezGeneId":"3557"},{"alias":"IL-1RN","entrezGeneId":"3557"},{"alias":"IL1F3","entrezGeneId":"3557"},{"alias":"IL1RA","entrezGeneId":"3557"},{"alias":"IRAP","entrezGeneId":"3557"},{"alias":"MVCD4","entrezGeneId":"3557"},{"alias":"IL-2","entrezGeneId":"3558"},{"alias":"lymphokine","entrezGeneId":"3558"},{"alias":"TCGF","entrezGeneId":"3558"},{"alias":"CD25","entrezGeneId":"3559"},{"alias":"IDDM10","entrezGeneId":"3559"},{"alias":"IL2R","entrezGeneId":"3559"},{"alias":"IMD41","entrezGeneId":"3559"},{"alias":"p55","entrezGeneId":"3559"},{"alias":"TCGFR","entrezGeneId":"3559"},{"alias":"CD122","entrezGeneId":"3560"},{"alias":"IL15RB","entrezGeneId":"3560"},{"alias":"P70-75","entrezGeneId":"3560"},{"alias":"CD132","entrezGeneId":"3561"},{"alias":"CIDX","entrezGeneId":"3561"},{"alias":"IL-2RG","entrezGeneId":"3561"},{"alias":"IMD4","entrezGeneId":"3561"},{"alias":"P64","entrezGeneId":"3561"},{"alias":"SCIDX","entrezGeneId":"3561"},{"alias":"SCIDX1","entrezGeneId":"3561"},{"alias":"IL-3","entrezGeneId":"3562"},{"alias":"MCGF","entrezGeneId":"3562"},{"alias":"MULTI-CSF","entrezGeneId":"3562"},{"alias":"CD123","entrezGeneId":"3563"},{"alias":"hIL-3Ra","entrezGeneId":"3563"},{"alias":"IL3R","entrezGeneId":"3563"},{"alias":"IL3RAY","entrezGeneId":"3563"},{"alias":"IL3RX","entrezGeneId":"3563"},{"alias":"IL3RY","entrezGeneId":"3563"},{"alias":"BCGF-1","entrezGeneId":"3565"},{"alias":"BCGF1","entrezGeneId":"3565"},{"alias":"BSF-1","entrezGeneId":"3565"},{"alias":"BSF1","entrezGeneId":"3565"},{"alias":"IL-4","entrezGeneId":"3565"},{"alias":"CD124","entrezGeneId":"3566"},{"alias":"IL-4RA","entrezGeneId":"3566"},{"alias":"IL4RA","entrezGeneId":"3566"},{"alias":"EDF","entrezGeneId":"3567"},{"alias":"IL-5","entrezGeneId":"3567"},{"alias":"TRF","entrezGeneId":"3567"},{"alias":"CD125","entrezGeneId":"3568"},{"alias":"CDw125","entrezGeneId":"3568"},{"alias":"HSIL5R3","entrezGeneId":"3568"},{"alias":"IL5R","entrezGeneId":"3568"},{"alias":"BSF-2","entrezGeneId":"3569"},{"alias":"BSF2","entrezGeneId":"3569"},{"alias":"CDF","entrezGeneId":"3569"},{"alias":"HGF","entrezGeneId":"3569"},{"alias":"HSF","entrezGeneId":"3569"},{"alias":"IFN-beta-2","entrezGeneId":"3569"},{"alias":"IFNB2","entrezGeneId":"3569"},{"alias":"IL-6","entrezGeneId":"3569"},{"alias":"CD126","entrezGeneId":"3570"},{"alias":"gp80","entrezGeneId":"3570"},{"alias":"IL-6R-1","entrezGeneId":"3570"},{"alias":"IL-6RA","entrezGeneId":"3570"},{"alias":"IL6Q","entrezGeneId":"3570"},{"alias":"IL6RA","entrezGeneId":"3570"},{"alias":"IL6RQ","entrezGeneId":"3570"},{"alias":"CD130","entrezGeneId":"3572"},{"alias":"CDW130","entrezGeneId":"3572"},{"alias":"GP130","entrezGeneId":"3572"},{"alias":"IL-6RB","entrezGeneId":"3572"},{"alias":"IL6STP","entrezGeneId":"3573"},{"alias":"IL-7","entrezGeneId":"3574"},{"alias":"CD127","entrezGeneId":"3575"},{"alias":"CDW127","entrezGeneId":"3575"},{"alias":"IL-7R-alpha","entrezGeneId":"3575"},{"alias":"IL7RA","entrezGeneId":"3575"},{"alias":"ILRA","entrezGeneId":"3575"},{"alias":"GCP-1","entrezGeneId":"3576"},{"alias":"GCP1","entrezGeneId":"3576"},{"alias":"IL8","entrezGeneId":"3576"},{"alias":"LECT","entrezGeneId":"3576"},{"alias":"LUCT","entrezGeneId":"3576"},{"alias":"LYNAP","entrezGeneId":"3576"},{"alias":"MDNCF","entrezGeneId":"3576"},{"alias":"MONAP","entrezGeneId":"3576"},{"alias":"NAF","entrezGeneId":"3576"},{"alias":"NAP-1","entrezGeneId":"3576"},{"alias":"NAP1","entrezGeneId":"3576"},{"alias":"C-C","entrezGeneId":"3577"},{"alias":"C-C-CKR-1","entrezGeneId":"3577"},{"alias":"CD128","entrezGeneId":"3577"},{"alias":"CD181","entrezGeneId":"3577"},{"alias":"CDw128a","entrezGeneId":"3577"},{"alias":"CKR-1","entrezGeneId":"3577"},{"alias":"CMKAR1","entrezGeneId":"3577"},{"alias":"IL8R1","entrezGeneId":"3577"},{"alias":"IL8RA","entrezGeneId":"3577"},{"alias":"IL8RBA","entrezGeneId":"3577"},{"alias":"HP40","entrezGeneId":"3578"},{"alias":"IL-9","entrezGeneId":"3578"},{"alias":"P40","entrezGeneId":"3578"},{"alias":"CD182","entrezGeneId":"3579"},{"alias":"CDw128b","entrezGeneId":"3579"},{"alias":"CMKAR2","entrezGeneId":"3579"},{"alias":"IL8R2","entrezGeneId":"3579"},{"alias":"IL8RA","entrezGeneId":"3579"},{"alias":"IL8RB","entrezGeneId":"3579"},{"alias":"CXCR2P","entrezGeneId":"3580"},{"alias":"IL8RBP","entrezGeneId":"3580"},{"alias":"CD129","entrezGeneId":"3581"},{"alias":"IL-9R","entrezGeneId":"3581"},{"alias":"CSIF","entrezGeneId":"3586"},{"alias":"GVHDS","entrezGeneId":"3586"},{"alias":"IL-10","entrezGeneId":"3586"},{"alias":"IL10A","entrezGeneId":"3586"},{"alias":"TGIF","entrezGeneId":"3586"},{"alias":"CD210","entrezGeneId":"3587"},{"alias":"CD210a","entrezGeneId":"3587"},{"alias":"CDW210A","entrezGeneId":"3587"},{"alias":"HIL-10R","entrezGeneId":"3587"},{"alias":"IL-10R1","entrezGeneId":"3587"},{"alias":"IL10R","entrezGeneId":"3587"},{"alias":"CDW210B","entrezGeneId":"3588"},{"alias":"CRF2-4","entrezGeneId":"3588"},{"alias":"CRFB4","entrezGeneId":"3588"},{"alias":"D21S58","entrezGeneId":"3588"},{"alias":"D21S66","entrezGeneId":"3588"},{"alias":"IL-10R2","entrezGeneId":"3588"},{"alias":"AGIF","entrezGeneId":"3589"},{"alias":"IL-11","entrezGeneId":"3589"},{"alias":"CRSDA","entrezGeneId":"3590"},{"alias":"CLMF","entrezGeneId":"3592"},{"alias":"IL-12A","entrezGeneId":"3592"},{"alias":"NFSK","entrezGeneId":"3592"},{"alias":"NKSF1","entrezGeneId":"3592"},{"alias":"P35","entrezGeneId":"3592"},{"alias":"CLMF","entrezGeneId":"3593"},{"alias":"CLMF2","entrezGeneId":"3593"},{"alias":"IL-12B","entrezGeneId":"3593"},{"alias":"IMD28","entrezGeneId":"3593"},{"alias":"IMD29","entrezGeneId":"3593"},{"alias":"NKSF","entrezGeneId":"3593"},{"alias":"NKSF2","entrezGeneId":"3593"},{"alias":"CD212","entrezGeneId":"3594"},{"alias":"IL-12R-BETA1","entrezGeneId":"3594"},{"alias":"IL12RB","entrezGeneId":"3594"},{"alias":"IMD30","entrezGeneId":"3594"},{"alias":"IL-13","entrezGeneId":"3596"},{"alias":"P600","entrezGeneId":"3596"},{"alias":"CD213A1","entrezGeneId":"3597"},{"alias":"CT19","entrezGeneId":"3597"},{"alias":"IL-13Ra","entrezGeneId":"3597"},{"alias":"NR4","entrezGeneId":"3597"},{"alias":"CD213A2","entrezGeneId":"3598"},{"alias":"CT19","entrezGeneId":"3598"},{"alias":"IL-13R","entrezGeneId":"3598"},{"alias":"IL13BP","entrezGeneId":"3598"},{"alias":"IL-15","entrezGeneId":"3600"},{"alias":"CD215","entrezGeneId":"3601"},{"alias":"LCF","entrezGeneId":"3603"},{"alias":"NIL16","entrezGeneId":"3603"},{"alias":"prIL-16","entrezGeneId":"3603"},{"alias":"PRIL16","entrezGeneId":"3603"},{"alias":"4-1BB","entrezGeneId":"3604"},{"alias":"CD137","entrezGeneId":"3604"},{"alias":"CDw137","entrezGeneId":"3604"},{"alias":"ILA","entrezGeneId":"3604"},{"alias":"CTLA-8","entrezGeneId":"3605"},{"alias":"CTLA8","entrezGeneId":"3605"},{"alias":"IL-17","entrezGeneId":"3605"},{"alias":"IL-17A","entrezGeneId":"3605"},{"alias":"IL17","entrezGeneId":"3605"},{"alias":"IGIF","entrezGeneId":"3606"},{"alias":"IL-18","entrezGeneId":"3606"},{"alias":"IL-1g","entrezGeneId":"3606"},{"alias":"IL1F4","entrezGeneId":"3606"},{"alias":"ILF","entrezGeneId":"3607"},{"alias":"ILF-1","entrezGeneId":"3607"},{"alias":"ILF1","entrezGeneId":"3607"},{"alias":"NF45","entrezGeneId":"3608"},{"alias":"PRO3063","entrezGeneId":"3608"},{"alias":"CBTF","entrezGeneId":"3609"},{"alias":"DRBF","entrezGeneId":"3609"},{"alias":"DRBP76","entrezGeneId":"3609"},{"alias":"MMP4","entrezGeneId":"3609"},{"alias":"MPHOSPH4","entrezGeneId":"3609"},{"alias":"MPP4","entrezGeneId":"3609"},{"alias":"NF-AT-90","entrezGeneId":"3609"},{"alias":"NF110","entrezGeneId":"3609"},{"alias":"NF110b","entrezGeneId":"3609"},{"alias":"NF90","entrezGeneId":"3609"},{"alias":"NF90a","entrezGeneId":"3609"},{"alias":"NF90b","entrezGeneId":"3609"},{"alias":"NFAR","entrezGeneId":"3609"},{"alias":"NFAR-1","entrezGeneId":"3609"},{"alias":"NFAR2","entrezGeneId":"3609"},{"alias":"TCP110","entrezGeneId":"3609"},{"alias":"TCP80","entrezGeneId":"3609"},{"alias":"HEL-S-28","entrezGeneId":"3611"},{"alias":"ILK-1","entrezGeneId":"3611"},{"alias":"ILK-2","entrezGeneId":"3611"},{"alias":"P59","entrezGeneId":"3611"},{"alias":"p59ILK","entrezGeneId":"3611"},{"alias":"IMP","entrezGeneId":"3612"},{"alias":"IMPA","entrezGeneId":"3612"},{"alias":"MRT59","entrezGeneId":"3612"},{"alias":"IMPD","entrezGeneId":"3614"},{"alias":"IMPD1","entrezGeneId":"3614"},{"alias":"IMPDH-I","entrezGeneId":"3614"},{"alias":"LCA11","entrezGeneId":"3614"},{"alias":"RP10","entrezGeneId":"3614"},{"alias":"sWSS2608","entrezGeneId":"3614"},{"alias":"IMPD2","entrezGeneId":"3615"},{"alias":"IMPDH-II","entrezGeneId":"3615"},{"alias":"GP147","entrezGeneId":"3617"},{"alias":"IPM150","entrezGeneId":"3617"},{"alias":"SPACR","entrezGeneId":"3617"},{"alias":"VMD4","entrezGeneId":"3617"},{"alias":"IDO","entrezGeneId":"3620"},{"alias":"IDO-1","entrezGeneId":"3620"},{"alias":"INDO","entrezGeneId":"3620"},{"alias":"p24ING1c","entrezGeneId":"3621"},{"alias":"p33","entrezGeneId":"3621"},{"alias":"p33ING1","entrezGeneId":"3621"},{"alias":"p33ING1b","entrezGeneId":"3621"},{"alias":"p47","entrezGeneId":"3621"},{"alias":"p47ING1a","entrezGeneId":"3621"},{"alias":"ING1L","entrezGeneId":"3622"},{"alias":"p33ING2","entrezGeneId":"3622"},{"alias":"EDF","entrezGeneId":"3624"},{"alias":"FRP","entrezGeneId":"3624"},{"alias":"IHBC","entrezGeneId":"3626"},{"alias":"C7","entrezGeneId":"3627"},{"alias":"crg-2","entrezGeneId":"3627"},{"alias":"gIP-10","entrezGeneId":"3627"},{"alias":"IFI10","entrezGeneId":"3627"},{"alias":"INP10","entrezGeneId":"3627"},{"alias":"IP-10","entrezGeneId":"3627"},{"alias":"mob-1","entrezGeneId":"3627"},{"alias":"SCYB10","entrezGeneId":"3627"},{"alias":"IDDM","entrezGeneId":"3630"},{"alias":"IDDM1","entrezGeneId":"3630"},{"alias":"IDDM2","entrezGeneId":"3630"},{"alias":"ILPR","entrezGeneId":"3630"},{"alias":"IRDN","entrezGeneId":"3630"},{"alias":"MODY10","entrezGeneId":"3630"},{"alias":"INPP4","entrezGeneId":"3631"},{"alias":"TVAS1","entrezGeneId":"3631"},{"alias":"5PTASE","entrezGeneId":"3632"},{"alias":"5PTase","entrezGeneId":"3633"},{"alias":"hp51CN","entrezGeneId":"3635"},{"alias":"p150Ship","entrezGeneId":"3635"},{"alias":"SHIP","entrezGeneId":"3635"},{"alias":"SHIP-1","entrezGeneId":"3635"},{"alias":"SHIP1","entrezGeneId":"3635"},{"alias":"SIP-145","entrezGeneId":"3635"},{"alias":"OPSMD","entrezGeneId":"3636"},{"alias":"SHIP2","entrezGeneId":"3636"},{"alias":"CL6","entrezGeneId":"3638"},{"alias":"ley-I-L","entrezGeneId":"3640"},{"alias":"RLF","entrezGeneId":"3640"},{"alias":"RLNL","entrezGeneId":"3640"},{"alias":"EPIL","entrezGeneId":"3641"},{"alias":"PLACENTIN","entrezGeneId":"3641"},{"alias":"IA-1","entrezGeneId":"3642"},{"alias":"IA1","entrezGeneId":"3642"},{"alias":"CD220","entrezGeneId":"3643"},{"alias":"HHF5","entrezGeneId":"3643"},{"alias":"IRR","entrezGeneId":"3645"},{"alias":"eIF3-p46","entrezGeneId":"3646"},{"alias":"EIF3-P48","entrezGeneId":"3646"},{"alias":"EIF3S6","entrezGeneId":"3646"},{"alias":"INT6","entrezGeneId":"3646"},{"alias":"EIF3EP","entrezGeneId":"3647"},{"alias":"EIF3S6P1","entrezGeneId":"3647"},{"alias":"INT6P1","entrezGeneId":"3647"},{"alias":"GSF","entrezGeneId":"3651"},{"alias":"IDX-1","entrezGeneId":"3651"},{"alias":"IPF1","entrezGeneId":"3651"},{"alias":"IUF1","entrezGeneId":"3651"},{"alias":"MODY4","entrezGeneId":"3651"},{"alias":"PAGEN1","entrezGeneId":"3651"},{"alias":"PDX-1","entrezGeneId":"3651"},{"alias":"STF-1","entrezGeneId":"3651"},{"alias":"KLHL27","entrezGeneId":"3652"},{"alias":"NCRNA00002","entrezGeneId":"3653"},{"alias":"IRAK","entrezGeneId":"3654"},{"alias":"pelle","entrezGeneId":"3654"},{"alias":"CD49f","entrezGeneId":"3655"},{"alias":"ITGA6B","entrezGeneId":"3655"},{"alias":"VLA-6","entrezGeneId":"3655"},{"alias":"IRAK-2","entrezGeneId":"3656"},{"alias":"ACO3","entrezGeneId":"3658"},{"alias":"IRE-BP 2","entrezGeneId":"3658"},{"alias":"IRE-BP2","entrezGeneId":"3658"},{"alias":"IRP2","entrezGeneId":"3658"},{"alias":"IRP2AD","entrezGeneId":"3658"},{"alias":"IRF-1","entrezGeneId":"3659"},{"alias":"MAR","entrezGeneId":"3659"},{"alias":"IRF-2","entrezGeneId":"3660"},{"alias":"IIAE7","entrezGeneId":"3661"},{"alias":"LSIRF","entrezGeneId":"3662"},{"alias":"MUM1","entrezGeneId":"3662"},{"alias":"NF-EM5","entrezGeneId":"3662"},{"alias":"SHEP8","entrezGeneId":"3662"},{"alias":"SLEB10","entrezGeneId":"3663"},{"alias":"LPS","entrezGeneId":"3664"},{"alias":"OFC6","entrezGeneId":"3664"},{"alias":"PIT","entrezGeneId":"3664"},{"alias":"PPS","entrezGeneId":"3664"},{"alias":"PPS1","entrezGeneId":"3664"},{"alias":"VWS","entrezGeneId":"3664"},{"alias":"VWS1","entrezGeneId":"3664"},{"alias":"IMD39","entrezGeneId":"3665"},{"alias":"IRF-7H","entrezGeneId":"3665"},{"alias":"IRF7A","entrezGeneId":"3665"},{"alias":"IRF7B","entrezGeneId":"3665"},{"alias":"IRF7C","entrezGeneId":"3665"},{"alias":"IRF7H","entrezGeneId":"3665"},{"alias":"HIRS-1","entrezGeneId":"3667"},{"alias":"CD25","entrezGeneId":"3669"},{"alias":"HEM45","entrezGeneId":"3669"},{"alias":"Isl-1","entrezGeneId":"3670"},{"alias":"ISLET1","entrezGeneId":"3670"},{"alias":"HsT17563","entrezGeneId":"3671"},{"alias":"Meflin","entrezGeneId":"3671"},{"alias":"CD49a","entrezGeneId":"3672"},{"alias":"VLA1","entrezGeneId":"3672"},{"alias":"BR","entrezGeneId":"3673"},{"alias":"CD49B","entrezGeneId":"3673"},{"alias":"GPIa","entrezGeneId":"3673"},{"alias":"HPA-5","entrezGeneId":"3673"},{"alias":"VLA-2","entrezGeneId":"3673"},{"alias":"VLAA2","entrezGeneId":"3673"},{"alias":"BDPLT16","entrezGeneId":"3674"},{"alias":"BDPLT2","entrezGeneId":"3674"},{"alias":"CD41","entrezGeneId":"3674"},{"alias":"CD41B","entrezGeneId":"3674"},{"alias":"GP2B","entrezGeneId":"3674"},{"alias":"GPIIb","entrezGeneId":"3674"},{"alias":"GT","entrezGeneId":"3674"},{"alias":"GTA","entrezGeneId":"3674"},{"alias":"HPA3","entrezGeneId":"3674"},{"alias":"PPP1R93","entrezGeneId":"3674"},{"alias":"CD49C","entrezGeneId":"3675"},{"alias":"FRP-2","entrezGeneId":"3675"},{"alias":"GAP-B3","entrezGeneId":"3675"},{"alias":"GAPB3","entrezGeneId":"3675"},{"alias":"ILNEB","entrezGeneId":"3675"},{"alias":"MSK18","entrezGeneId":"3675"},{"alias":"VCA-2","entrezGeneId":"3675"},{"alias":"VL3A","entrezGeneId":"3675"},{"alias":"VLA3a","entrezGeneId":"3675"},{"alias":"CD49D","entrezGeneId":"3676"},{"alias":"IA4","entrezGeneId":"3676"},{"alias":"CD49e","entrezGeneId":"3678"},{"alias":"FNRA","entrezGeneId":"3678"},{"alias":"VLA-5","entrezGeneId":"3678"},{"alias":"VLA5A","entrezGeneId":"3678"},{"alias":"ALPHA-RLC","entrezGeneId":"3680"},{"alias":"ITGA4L","entrezGeneId":"3680"},{"alias":"RLC","entrezGeneId":"3680"},{"alias":"ADB2","entrezGeneId":"3681"},{"alias":"CD11D","entrezGeneId":"3681"},{"alias":"CD103","entrezGeneId":"3682"},{"alias":"HUMINAE","entrezGeneId":"3682"},{"alias":"CD11A","entrezGeneId":"3683"},{"alias":"LFA-1","entrezGeneId":"3683"},{"alias":"LFA1A","entrezGeneId":"3683"},{"alias":"CD11B","entrezGeneId":"3684"},{"alias":"CR3A","entrezGeneId":"3684"},{"alias":"MAC-1","entrezGeneId":"3684"},{"alias":"MAC1A","entrezGeneId":"3684"},{"alias":"MO1A","entrezGeneId":"3684"},{"alias":"SLEB6","entrezGeneId":"3684"},{"alias":"CD51","entrezGeneId":"3685"},{"alias":"MSK8","entrezGeneId":"3685"},{"alias":"VNRA","entrezGeneId":"3685"},{"alias":"VTNR","entrezGeneId":"3685"},{"alias":"CD11C","entrezGeneId":"3687"},{"alias":"SLEB6","entrezGeneId":"3687"},{"alias":"CD29","entrezGeneId":"3688"},{"alias":"FNRB","entrezGeneId":"3688"},{"alias":"GPIIA","entrezGeneId":"3688"},{"alias":"MDF2","entrezGeneId":"3688"},{"alias":"MSK12","entrezGeneId":"3688"},{"alias":"VLA-BETA","entrezGeneId":"3688"},{"alias":"VLAB","entrezGeneId":"3688"},{"alias":"CD18","entrezGeneId":"3689"},{"alias":"LAD","entrezGeneId":"3689"},{"alias":"LCAMB","entrezGeneId":"3689"},{"alias":"LFA-1","entrezGeneId":"3689"},{"alias":"MAC-1","entrezGeneId":"3689"},{"alias":"MF17","entrezGeneId":"3689"},{"alias":"MFI7","entrezGeneId":"3689"},{"alias":"BDPLT16","entrezGeneId":"3690"},{"alias":"BDPLT2","entrezGeneId":"3690"},{"alias":"CD61","entrezGeneId":"3690"},{"alias":"GP3A","entrezGeneId":"3690"},{"alias":"GPIIIa","entrezGeneId":"3690"},{"alias":"GT","entrezGeneId":"3690"},{"alias":"CD104","entrezGeneId":"3691"},{"alias":"GP150","entrezGeneId":"3691"},{"alias":"b(2)gcn","entrezGeneId":"3692"},{"alias":"CAB","entrezGeneId":"3692"},{"alias":"eIF-6","entrezGeneId":"3692"},{"alias":"EIF3A","entrezGeneId":"3692"},{"alias":"ITGB4BP","entrezGeneId":"3692"},{"alias":"p27(BBP)","entrezGeneId":"3692"},{"alias":"p27BBP","entrezGeneId":"3692"},{"alias":"AI1H","entrezGeneId":"3694"},{"alias":"H1P","entrezGeneId":"3697"},{"alias":"IATIH","entrezGeneId":"3697"},{"alias":"IGHEP1","entrezGeneId":"3697"},{"alias":"ITI-HC1","entrezGeneId":"3697"},{"alias":"ITIH","entrezGeneId":"3697"},{"alias":"SHAP","entrezGeneId":"3697"},{"alias":"H2P","entrezGeneId":"3698"},{"alias":"SHAP","entrezGeneId":"3698"},{"alias":"H3P","entrezGeneId":"3699"},{"alias":"ITI-HC3","entrezGeneId":"3699"},{"alias":"SHAP","entrezGeneId":"3699"},{"alias":"GP120","entrezGeneId":"3700"},{"alias":"H4P","entrezGeneId":"3700"},{"alias":"IHRP","entrezGeneId":"3700"},{"alias":"ITI-HC4","entrezGeneId":"3700"},{"alias":"ITIHL1","entrezGeneId":"3700"},{"alias":"PK-120","entrezGeneId":"3700"},{"alias":"PK120","entrezGeneId":"3700"},{"alias":"EMT","entrezGeneId":"3702"},{"alias":"LPFS1","entrezGeneId":"3702"},{"alias":"LYK","entrezGeneId":"3702"},{"alias":"PSCTK2","entrezGeneId":"3702"},{"alias":"ITM1","entrezGeneId":"3703"},{"alias":"STT3-A","entrezGeneId":"3703"},{"alias":"TMC","entrezGeneId":"3703"},{"alias":"C20orf37","entrezGeneId":"3704"},{"alias":"dJ794I6.3","entrezGeneId":"3704"},{"alias":"HLC14-06-P","entrezGeneId":"3704"},{"alias":"ITPase","entrezGeneId":"3704"},{"alias":"My049","entrezGeneId":"3704"},{"alias":"NTPase","entrezGeneId":"3704"},{"alias":"ITRPK1","entrezGeneId":"3705"},{"alias":"IP3-3KA","entrezGeneId":"3706"},{"alias":"IP3KA","entrezGeneId":"3706"},{"alias":"IP3-3KB","entrezGeneId":"3707"},{"alias":"IP3K","entrezGeneId":"3707"},{"alias":"IP3K-B","entrezGeneId":"3707"},{"alias":"IP3KB","entrezGeneId":"3707"},{"alias":"PIG37","entrezGeneId":"3707"},{"alias":"ACV","entrezGeneId":"3708"},{"alias":"CLA4","entrezGeneId":"3708"},{"alias":"INSP3R1","entrezGeneId":"3708"},{"alias":"IP3R","entrezGeneId":"3708"},{"alias":"IP3R1","entrezGeneId":"3708"},{"alias":"PPP1R94","entrezGeneId":"3708"},{"alias":"SCA15","entrezGeneId":"3708"},{"alias":"SCA16","entrezGeneId":"3708"},{"alias":"SCA29","entrezGeneId":"3708"},{"alias":"ANHD","entrezGeneId":"3709"},{"alias":"CFAP48","entrezGeneId":"3709"},{"alias":"INSP3R2","entrezGeneId":"3709"},{"alias":"IP3R2","entrezGeneId":"3709"},{"alias":"IP3R","entrezGeneId":"3710"},{"alias":"IP3R3","entrezGeneId":"3710"},{"alias":"ACAD2","entrezGeneId":"3712"},{"alias":"HJ2","entrezGeneId":"3714"},{"alias":"SER2","entrezGeneId":"3714"},{"alias":"JAK1A","entrezGeneId":"3716"},{"alias":"JAK1B","entrezGeneId":"3716"},{"alias":"JTK3","entrezGeneId":"3716"},{"alias":"JTK10","entrezGeneId":"3717"},{"alias":"THCYT3","entrezGeneId":"3717"},{"alias":"JAK-3","entrezGeneId":"3718"},{"alias":"JAK3_HUMAN","entrezGeneId":"3718"},{"alias":"JAKL","entrezGeneId":"3718"},{"alias":"L-JAK","entrezGeneId":"3718"},{"alias":"LJAK","entrezGeneId":"3718"},{"alias":"JMJ","entrezGeneId":"3720"},{"alias":"AP-1","entrezGeneId":"3725"},{"alias":"AP1","entrezGeneId":"3725"},{"alias":"c-Jun","entrezGeneId":"3725"},{"alias":"p39","entrezGeneId":"3725"},{"alias":"AP-1","entrezGeneId":"3726"},{"alias":"AP-1","entrezGeneId":"3727"},{"alias":"CTNNG","entrezGeneId":"3728"},{"alias":"DP3","entrezGeneId":"3728"},{"alias":"DPIII","entrezGeneId":"3728"},{"alias":"PDGB","entrezGeneId":"3728"},{"alias":"PKGB","entrezGeneId":"3728"},{"alias":"ADMLX","entrezGeneId":"3730"},{"alias":"HH1","entrezGeneId":"3730"},{"alias":"HHA","entrezGeneId":"3730"},{"alias":"KAL","entrezGeneId":"3730"},{"alias":"KAL1","entrezGeneId":"3730"},{"alias":"KALIG-1","entrezGeneId":"3730"},{"alias":"KMS","entrezGeneId":"3730"},{"alias":"WFDC19","entrezGeneId":"3730"},{"alias":"4F9","entrezGeneId":"3732"},{"alias":"C33","entrezGeneId":"3732"},{"alias":"GR15","entrezGeneId":"3732"},{"alias":"IA4","entrezGeneId":"3732"},{"alias":"KAI1","entrezGeneId":"3732"},{"alias":"R2","entrezGeneId":"3732"},{"alias":"SAR2","entrezGeneId":"3732"},{"alias":"ST6","entrezGeneId":"3732"},{"alias":"TSPAN27","entrezGeneId":"3732"},{"alias":"ADMLY","entrezGeneId":"3734"},{"alias":"KAL-Y","entrezGeneId":"3734"},{"alias":"KALP","entrezGeneId":"3734"},{"alias":"CMTRIB","entrezGeneId":"3735"},{"alias":"DFNB89","entrezGeneId":"3735"},{"alias":"KARS1","entrezGeneId":"3735"},{"alias":"KARS2","entrezGeneId":"3735"},{"alias":"KRS","entrezGeneId":"3735"},{"alias":"AEMK","entrezGeneId":"3736"},{"alias":"EA1","entrezGeneId":"3736"},{"alias":"HBK1","entrezGeneId":"3736"},{"alias":"HUK1","entrezGeneId":"3736"},{"alias":"KV1.1","entrezGeneId":"3736"},{"alias":"MBK1","entrezGeneId":"3736"},{"alias":"MK1","entrezGeneId":"3736"},{"alias":"RBK1","entrezGeneId":"3736"},{"alias":"EIEE32","entrezGeneId":"3737"},{"alias":"HBK5","entrezGeneId":"3737"},{"alias":"HK4","entrezGeneId":"3737"},{"alias":"HUKIV","entrezGeneId":"3737"},{"alias":"KV1.2","entrezGeneId":"3737"},{"alias":"MK2","entrezGeneId":"3737"},{"alias":"NGK1","entrezGeneId":"3737"},{"alias":"RBK2","entrezGeneId":"3737"},{"alias":"HGK5","entrezGeneId":"3738"},{"alias":"HLK3","entrezGeneId":"3738"},{"alias":"HPCN3","entrezGeneId":"3738"},{"alias":"HUKIII","entrezGeneId":"3738"},{"alias":"KV1.3","entrezGeneId":"3738"},{"alias":"MK3","entrezGeneId":"3738"},{"alias":"PCN3","entrezGeneId":"3738"},{"alias":"HBK4","entrezGeneId":"3739"},{"alias":"HK1","entrezGeneId":"3739"},{"alias":"HPCN2","entrezGeneId":"3739"},{"alias":"HUKII","entrezGeneId":"3739"},{"alias":"KCNA4L","entrezGeneId":"3739"},{"alias":"KCNA8","entrezGeneId":"3739"},{"alias":"KV1.4","entrezGeneId":"3739"},{"alias":"PCN2","entrezGeneId":"3739"},{"alias":"ATFB7","entrezGeneId":"3741"},{"alias":"HCK1","entrezGeneId":"3741"},{"alias":"HK2","entrezGeneId":"3741"},{"alias":"HPCN1","entrezGeneId":"3741"},{"alias":"KV1.5","entrezGeneId":"3741"},{"alias":"PCN1","entrezGeneId":"3741"},{"alias":"HBK2","entrezGeneId":"3742"},{"alias":"KV1.6","entrezGeneId":"3742"},{"alias":"PPP1R96","entrezGeneId":"3742"},{"alias":"HAK6","entrezGeneId":"3743"},{"alias":"KV1.7","entrezGeneId":"3743"},{"alias":"Kcn1","entrezGeneId":"3744"},{"alias":"Kv1.8","entrezGeneId":"3744"},{"alias":"DRK1","entrezGeneId":"3745"},{"alias":"Kv2.1","entrezGeneId":"3745"},{"alias":"EPM7","entrezGeneId":"3746"},{"alias":"KV3.1","entrezGeneId":"3746"},{"alias":"KV4","entrezGeneId":"3746"},{"alias":"NGK2","entrezGeneId":"3746"},{"alias":"KV3.2","entrezGeneId":"3747"},{"alias":"KSHIIID","entrezGeneId":"3748"},{"alias":"KV3.3","entrezGeneId":"3748"},{"alias":"SCA13","entrezGeneId":"3748"},{"alias":"C1orf30","entrezGeneId":"3749"},{"alias":"HKSHIIIC","entrezGeneId":"3749"},{"alias":"KSHIIIC","entrezGeneId":"3749"},{"alias":"KV3.4","entrezGeneId":"3749"},{"alias":"KV4.1","entrezGeneId":"3750"},{"alias":"KV4.2","entrezGeneId":"3751"},{"alias":"RK5","entrezGeneId":"3751"},{"alias":"BRGDA9","entrezGeneId":"3752"},{"alias":"KCND3L","entrezGeneId":"3752"},{"alias":"KCND3S","entrezGeneId":"3752"},{"alias":"KSHIVB","entrezGeneId":"3752"},{"alias":"KV4.3","entrezGeneId":"3752"},{"alias":"SCA19","entrezGeneId":"3752"},{"alias":"SCA22","entrezGeneId":"3752"},{"alias":"ISK","entrezGeneId":"3753"},{"alias":"JLNS","entrezGeneId":"3753"},{"alias":"JLNS2","entrezGeneId":"3753"},{"alias":"LQT2/5","entrezGeneId":"3753"},{"alias":"LQT5","entrezGeneId":"3753"},{"alias":"MinK","entrezGeneId":"3753"},{"alias":"IK8","entrezGeneId":"3754"},{"alias":"KCNF","entrezGeneId":"3754"},{"alias":"kH1","entrezGeneId":"3754"},{"alias":"KV5.1","entrezGeneId":"3754"},{"alias":"K13","entrezGeneId":"3755"},{"alias":"KCNG","entrezGeneId":"3755"},{"alias":"kH2","entrezGeneId":"3755"},{"alias":"KV6.1","entrezGeneId":"3755"},{"alias":"EAG","entrezGeneId":"3756"},{"alias":"EAG1","entrezGeneId":"3756"},{"alias":"h-eag","entrezGeneId":"3756"},{"alias":"hEAG1","entrezGeneId":"3756"},{"alias":"Kv10.1","entrezGeneId":"3756"},{"alias":"TMBTS","entrezGeneId":"3756"},{"alias":"ZLS1","entrezGeneId":"3756"},{"alias":"ERG-1","entrezGeneId":"3757"},{"alias":"ERG1","entrezGeneId":"3757"},{"alias":"H-ERG","entrezGeneId":"3757"},{"alias":"HERG","entrezGeneId":"3757"},{"alias":"HERG1","entrezGeneId":"3757"},{"alias":"Kv11.1","entrezGeneId":"3757"},{"alias":"LQT2","entrezGeneId":"3757"},{"alias":"SQT1","entrezGeneId":"3757"},{"alias":"KIR1.1","entrezGeneId":"3758"},{"alias":"ROMK","entrezGeneId":"3758"},{"alias":"ROMK1","entrezGeneId":"3758"},{"alias":"ATFB9","entrezGeneId":"3759"},{"alias":"HHBIRK1","entrezGeneId":"3759"},{"alias":"HHIRK1","entrezGeneId":"3759"},{"alias":"IRK1","entrezGeneId":"3759"},{"alias":"KIR2.1","entrezGeneId":"3759"},{"alias":"LQT7","entrezGeneId":"3759"},{"alias":"SQT3","entrezGeneId":"3759"},{"alias":"GIRK1","entrezGeneId":"3760"},{"alias":"KGA","entrezGeneId":"3760"},{"alias":"KIR3.1","entrezGeneId":"3760"},{"alias":"HIR","entrezGeneId":"3761"},{"alias":"HIRK2","entrezGeneId":"3761"},{"alias":"HRK1","entrezGeneId":"3761"},{"alias":"IRK-3","entrezGeneId":"3761"},{"alias":"IRK3","entrezGeneId":"3761"},{"alias":"Kir2.3","entrezGeneId":"3761"},{"alias":"CIR","entrezGeneId":"3762"},{"alias":"GIRK4","entrezGeneId":"3762"},{"alias":"KATP1","entrezGeneId":"3762"},{"alias":"KIR3.4","entrezGeneId":"3762"},{"alias":"LQT13","entrezGeneId":"3762"},{"alias":"BIR1","entrezGeneId":"3763"},{"alias":"GIRK-2","entrezGeneId":"3763"},{"alias":"GIRK2","entrezGeneId":"3763"},{"alias":"hiGIRK2","entrezGeneId":"3763"},{"alias":"KATP-2","entrezGeneId":"3763"},{"alias":"KATP2","entrezGeneId":"3763"},{"alias":"KCNJ7","entrezGeneId":"3763"},{"alias":"KIR3.2","entrezGeneId":"3763"},{"alias":"KPLBS","entrezGeneId":"3763"},{"alias":"KIR6.1","entrezGeneId":"3764"},{"alias":"uKATP-1","entrezGeneId":"3764"},{"alias":"GIRK3","entrezGeneId":"3765"},{"alias":"KIR3.3","entrezGeneId":"3765"},{"alias":"BIRK-10","entrezGeneId":"3766"},{"alias":"KCNJ13-PEN","entrezGeneId":"3766"},{"alias":"KIR1.2","entrezGeneId":"3766"},{"alias":"KIR4.1","entrezGeneId":"3766"},{"alias":"SESAME","entrezGeneId":"3766"},{"alias":"BIR","entrezGeneId":"3767"},{"alias":"HHF2","entrezGeneId":"3767"},{"alias":"IKATP","entrezGeneId":"3767"},{"alias":"KIR6.2","entrezGeneId":"3767"},{"alias":"MODY13","entrezGeneId":"3767"},{"alias":"PHHI","entrezGeneId":"3767"},{"alias":"TNDM3","entrezGeneId":"3767"},{"alias":"hIRK","entrezGeneId":"3768"},{"alias":"hIRK1","entrezGeneId":"3768"},{"alias":"hkir2.2x","entrezGeneId":"3768"},{"alias":"IRK-2","entrezGeneId":"3768"},{"alias":"IRK2","entrezGeneId":"3768"},{"alias":"kcnj12x","entrezGeneId":"3768"},{"alias":"KCNJN1","entrezGeneId":"3768"},{"alias":"Kir2.2","entrezGeneId":"3768"},{"alias":"Kir2.2v","entrezGeneId":"3768"},{"alias":"KIR1.4","entrezGeneId":"3769"},{"alias":"KIR7.1","entrezGeneId":"3769"},{"alias":"LCA16","entrezGeneId":"3769"},{"alias":"SVD","entrezGeneId":"3769"},{"alias":"IRK4","entrezGeneId":"3770"},{"alias":"KIR2.4","entrezGeneId":"3770"},{"alias":"IRKK","entrezGeneId":"3772"},{"alias":"KIR1.3","entrezGeneId":"3772"},{"alias":"KIR4.2","entrezGeneId":"3772"},{"alias":"BIR9","entrezGeneId":"3773"},{"alias":"KIR5.1","entrezGeneId":"3773"},{"alias":"DPK","entrezGeneId":"3775"},{"alias":"HOHO","entrezGeneId":"3775"},{"alias":"K2P1","entrezGeneId":"3775"},{"alias":"K2p1.1","entrezGeneId":"3775"},{"alias":"KCNO1","entrezGeneId":"3775"},{"alias":"TWIK-1","entrezGeneId":"3775"},{"alias":"TWIK1","entrezGeneId":"3775"},{"alias":"hTREK-1c","entrezGeneId":"3776"},{"alias":"hTREK-1e","entrezGeneId":"3776"},{"alias":"K2p2.1","entrezGeneId":"3776"},{"alias":"TPKC1","entrezGeneId":"3776"},{"alias":"TREK","entrezGeneId":"3776"},{"alias":"TREK-1","entrezGeneId":"3776"},{"alias":"TREK1","entrezGeneId":"3776"},{"alias":"K2p3.1","entrezGeneId":"3777"},{"alias":"OAT1","entrezGeneId":"3777"},{"alias":"PPH4","entrezGeneId":"3777"},{"alias":"TASK","entrezGeneId":"3777"},{"alias":"TASK-1","entrezGeneId":"3777"},{"alias":"TBAK1","entrezGeneId":"3777"},{"alias":"bA205K10.1","entrezGeneId":"3778"},{"alias":"BKTM","entrezGeneId":"3778"},{"alias":"CADEDS","entrezGeneId":"3778"},{"alias":"hSlo","entrezGeneId":"3778"},{"alias":"KCa1.1","entrezGeneId":"3778"},{"alias":"MaxiK","entrezGeneId":"3778"},{"alias":"mSLO1","entrezGeneId":"3778"},{"alias":"PNKD3","entrezGeneId":"3778"},{"alias":"SAKCA","entrezGeneId":"3778"},{"alias":"SLO","entrezGeneId":"3778"},{"alias":"SLO-ALPHA","entrezGeneId":"3778"},{"alias":"SLO1","entrezGeneId":"3778"},{"alias":"BKbeta1","entrezGeneId":"3779"},{"alias":"hbeta1","entrezGeneId":"3779"},{"alias":"hslo-beta","entrezGeneId":"3779"},{"alias":"K(VCA)beta","entrezGeneId":"3779"},{"alias":"k(VCA)beta-1","entrezGeneId":"3779"},{"alias":"SLO-BETA","entrezGeneId":"3779"},{"alias":"slo-beta-1","entrezGeneId":"3779"},{"alias":"hSK1","entrezGeneId":"3780"},{"alias":"KCa2.1","entrezGeneId":"3780"},{"alias":"SK1","entrezGeneId":"3780"},{"alias":"SKCA1","entrezGeneId":"3780"},{"alias":"hSK2","entrezGeneId":"3781"},{"alias":"KCa2.2","entrezGeneId":"3781"},{"alias":"SK2","entrezGeneId":"3781"},{"alias":"SKCa 2","entrezGeneId":"3781"},{"alias":"SKCA2","entrezGeneId":"3781"},{"alias":"hSK3","entrezGeneId":"3782"},{"alias":"KCa2.3","entrezGeneId":"3782"},{"alias":"SK3","entrezGeneId":"3782"},{"alias":"SKCA3","entrezGeneId":"3782"},{"alias":"DHS2","entrezGeneId":"3783"},{"alias":"hIKCa1","entrezGeneId":"3783"},{"alias":"hKCa4","entrezGeneId":"3783"},{"alias":"hSK4","entrezGeneId":"3783"},{"alias":"IK","entrezGeneId":"3783"},{"alias":"IK1","entrezGeneId":"3783"},{"alias":"IKCA1","entrezGeneId":"3783"},{"alias":"KCa3.1","entrezGeneId":"3783"},{"alias":"KCA4","entrezGeneId":"3783"},{"alias":"SK4","entrezGeneId":"3783"},{"alias":"ATFB1","entrezGeneId":"3784"},{"alias":"ATFB3","entrezGeneId":"3784"},{"alias":"JLNS1","entrezGeneId":"3784"},{"alias":"KCNA8","entrezGeneId":"3784"},{"alias":"KCNA9","entrezGeneId":"3784"},{"alias":"Kv1.9","entrezGeneId":"3784"},{"alias":"Kv7.1","entrezGeneId":"3784"},{"alias":"KVLQT1","entrezGeneId":"3784"},{"alias":"LQT","entrezGeneId":"3784"},{"alias":"LQT1","entrezGeneId":"3784"},{"alias":"RWS","entrezGeneId":"3784"},{"alias":"SQT2","entrezGeneId":"3784"},{"alias":"WRS","entrezGeneId":"3784"},{"alias":"BFNC","entrezGeneId":"3785"},{"alias":"EBN","entrezGeneId":"3785"},{"alias":"EBN1","entrezGeneId":"3785"},{"alias":"ENB1","entrezGeneId":"3785"},{"alias":"HNSPC","entrezGeneId":"3785"},{"alias":"KCNA11","entrezGeneId":"3785"},{"alias":"KV7.2","entrezGeneId":"3785"},{"alias":"BFNC2","entrezGeneId":"3786"},{"alias":"EBN2","entrezGeneId":"3786"},{"alias":"KV7.3","entrezGeneId":"3786"},{"alias":"Kv9.1","entrezGeneId":"3787"},{"alias":"KV9.2","entrezGeneId":"3788"},{"alias":"KV9.3","entrezGeneId":"3790"},{"alias":"CD309","entrezGeneId":"3791"},{"alias":"FLK1","entrezGeneId":"3791"},{"alias":"VEGFR","entrezGeneId":"3791"},{"alias":"VEGFR2","entrezGeneId":"3791"},{"alias":"CD238","entrezGeneId":"3792"},{"alias":"ECE3","entrezGeneId":"3792"},{"alias":"CDCBM3","entrezGeneId":"3796"},{"alias":"HK2","entrezGeneId":"3796"},{"alias":"KIF2","entrezGeneId":"3796"},{"alias":"ALS25","entrezGeneId":"3798"},{"alias":"D12S1889","entrezGeneId":"3798"},{"alias":"MY050","entrezGeneId":"3798"},{"alias":"NEIMY","entrezGeneId":"3798"},{"alias":"NKHC","entrezGeneId":"3798"},{"alias":"SPG10","entrezGeneId":"3798"},{"alias":"HEL-S-61","entrezGeneId":"3799"},{"alias":"KINH","entrezGeneId":"3799"},{"alias":"KNS","entrezGeneId":"3799"},{"alias":"KNS1","entrezGeneId":"3799"},{"alias":"UKHC","entrezGeneId":"3799"},{"alias":"CDCBM2","entrezGeneId":"3800"},{"alias":"KINN","entrezGeneId":"3800"},{"alias":"NKHC","entrezGeneId":"3800"},{"alias":"NKHC-2","entrezGeneId":"3800"},{"alias":"NKHC2","entrezGeneId":"3800"},{"alias":"CD158A","entrezGeneId":"3802"},{"alias":"KIR-K64","entrezGeneId":"3802"},{"alias":"KIR221","entrezGeneId":"3802"},{"alias":"KIR2DL3","entrezGeneId":"3802"},{"alias":"NKAT","entrezGeneId":"3802"},{"alias":"NKAT-1","entrezGeneId":"3802"},{"alias":"NKAT1","entrezGeneId":"3802"},{"alias":"p58.1","entrezGeneId":"3802"},{"alias":"CD158b","entrezGeneId":"3803"},{"alias":"CD158B1","entrezGeneId":"3803"},{"alias":"NKAT-6","entrezGeneId":"3803"},{"alias":"NKAT6","entrezGeneId":"3803"},{"alias":"p58.2","entrezGeneId":"3803"},{"alias":"CD158b","entrezGeneId":"3804"},{"alias":"CD158B2","entrezGeneId":"3804"},{"alias":"GL183","entrezGeneId":"3804"},{"alias":"KIR-023GB","entrezGeneId":"3804"},{"alias":"KIR-K7b","entrezGeneId":"3804"},{"alias":"KIR-K7c","entrezGeneId":"3804"},{"alias":"KIR2DL","entrezGeneId":"3804"},{"alias":"KIR2DS5","entrezGeneId":"3804"},{"alias":"KIRCL23","entrezGeneId":"3804"},{"alias":"NKAT","entrezGeneId":"3804"},{"alias":"NKAT2","entrezGeneId":"3804"},{"alias":"NKAT2A","entrezGeneId":"3804"},{"alias":"NKAT2B","entrezGeneId":"3804"},{"alias":"p58","entrezGeneId":"3804"},{"alias":"CD158D","entrezGeneId":"3805"},{"alias":"G9P","entrezGeneId":"3805"},{"alias":"KIR-103AS","entrezGeneId":"3805"},{"alias":"KIR-2DL4","entrezGeneId":"3805"},{"alias":"KIR103","entrezGeneId":"3805"},{"alias":"KIR103AS","entrezGeneId":"3805"},{"alias":"CD158a","entrezGeneId":"3806"},{"alias":"CD158H","entrezGeneId":"3806"},{"alias":"p50.1","entrezGeneId":"3806"},{"alias":"NKAT7","entrezGeneId":"3808"},{"alias":"CD158I","entrezGeneId":"3809"},{"alias":"KIR-2DS4","entrezGeneId":"3809"},{"alias":"KIR1D","entrezGeneId":"3809"},{"alias":"KIR412","entrezGeneId":"3809"},{"alias":"KKA3","entrezGeneId":"3809"},{"alias":"NKAT-8","entrezGeneId":"3809"},{"alias":"NKAT8","entrezGeneId":"3809"},{"alias":"CD158G","entrezGeneId":"3810"},{"alias":"NKAT9","entrezGeneId":"3810"},{"alias":"CD158E1","entrezGeneId":"3811"},{"alias":"KIR","entrezGeneId":"3811"},{"alias":"KIR3DL1/S1","entrezGeneId":"3811"},{"alias":"NKAT-3","entrezGeneId":"3811"},{"alias":"NKAT3","entrezGeneId":"3811"},{"alias":"NKB1","entrezGeneId":"3811"},{"alias":"NKB1B","entrezGeneId":"3811"},{"alias":"3DL2","entrezGeneId":"3812"},{"alias":"CD158K","entrezGeneId":"3812"},{"alias":"KIR-3DL2","entrezGeneId":"3812"},{"alias":"NKAT-4","entrezGeneId":"3812"},{"alias":"NKAT4","entrezGeneId":"3812"},{"alias":"NKAT4B","entrezGeneId":"3812"},{"alias":"p140","entrezGeneId":"3812"},{"alias":"CD158E2","entrezGeneId":"3813"},{"alias":"KIR-123FM","entrezGeneId":"3813"},{"alias":"KIR-G1","entrezGeneId":"3813"},{"alias":"NKAT-10","entrezGeneId":"3813"},{"alias":"NKAT10","entrezGeneId":"3813"},{"alias":"HH13","entrezGeneId":"3814"},{"alias":"KiSS-1","entrezGeneId":"3814"},{"alias":"C-Kit","entrezGeneId":"3815"},{"alias":"CD117","entrezGeneId":"3815"},{"alias":"PBT","entrezGeneId":"3815"},{"alias":"SCFR","entrezGeneId":"3815"},{"alias":"hK1","entrezGeneId":"3816"},{"alias":"Klk6","entrezGeneId":"3816"},{"alias":"KLKR","entrezGeneId":"3816"},{"alias":"hGK-1","entrezGeneId":"3817"},{"alias":"hK2","entrezGeneId":"3817"},{"alias":"KLK2A2","entrezGeneId":"3817"},{"alias":"KLK3","entrezGeneId":"3818"},{"alias":"PKK","entrezGeneId":"3818"},{"alias":"PKKD","entrezGeneId":"3818"},{"alias":"PPK","entrezGeneId":"3818"},{"alias":"CD161","entrezGeneId":"3820"},{"alias":"CLEC5B","entrezGeneId":"3820"},{"alias":"hNKR-P1A","entrezGeneId":"3820"},{"alias":"NKR","entrezGeneId":"3820"},{"alias":"NKR-P1","entrezGeneId":"3820"},{"alias":"NKR-P1A","entrezGeneId":"3820"},{"alias":"NKRP1A","entrezGeneId":"3820"},{"alias":"CD159A","entrezGeneId":"3821"},{"alias":"NKG2","entrezGeneId":"3821"},{"alias":"NKG2A","entrezGeneId":"3821"},{"alias":"CD159c","entrezGeneId":"3822"},{"alias":"NKG2-C","entrezGeneId":"3822"},{"alias":"NKG2C","entrezGeneId":"3822"},{"alias":"NKG2-E","entrezGeneId":"3823"},{"alias":"NKG2E","entrezGeneId":"3823"},{"alias":"CD94","entrezGeneId":"3824"},{"alias":"BDK","entrezGeneId":"3827"},{"alias":"BK","entrezGeneId":"3827"},{"alias":"KNG","entrezGeneId":"3827"},{"alias":"KLC","entrezGeneId":"3831"},{"alias":"KNS2","entrezGeneId":"3831"},{"alias":"KNS2A","entrezGeneId":"3831"},{"alias":"EG5","entrezGeneId":"3832"},{"alias":"HKSP","entrezGeneId":"3832"},{"alias":"KNSL1","entrezGeneId":"3832"},{"alias":"MCLMR","entrezGeneId":"3832"},{"alias":"TRIP5","entrezGeneId":"3832"},{"alias":"HSET","entrezGeneId":"3833"},{"alias":"KNSL2","entrezGeneId":"3833"},{"alias":"KNSL3","entrezGeneId":"3834"},{"alias":"A-328A3.2","entrezGeneId":"3835"},{"alias":"KID","entrezGeneId":"3835"},{"alias":"KNSL4","entrezGeneId":"3835"},{"alias":"OBP","entrezGeneId":"3835"},{"alias":"OBP-1","entrezGeneId":"3835"},{"alias":"OBP-2","entrezGeneId":"3835"},{"alias":"SEMDJL2","entrezGeneId":"3835"},{"alias":"IPOA5","entrezGeneId":"3836"},{"alias":"NPI-1","entrezGeneId":"3836"},{"alias":"RCH2","entrezGeneId":"3836"},{"alias":"SRP1","entrezGeneId":"3836"},{"alias":"IMB1","entrezGeneId":"3837"},{"alias":"Impnb","entrezGeneId":"3837"},{"alias":"IPO1","entrezGeneId":"3837"},{"alias":"IPOB","entrezGeneId":"3837"},{"alias":"NTF97","entrezGeneId":"3837"},{"alias":"IPOA1","entrezGeneId":"3838"},{"alias":"QIP2","entrezGeneId":"3838"},{"alias":"RCH1","entrezGeneId":"3838"},{"alias":"SRP1-alpha","entrezGeneId":"3838"},{"alias":"SRP1alpha","entrezGeneId":"3838"},{"alias":"hSRP1","entrezGeneId":"3839"},{"alias":"IPOA4","entrezGeneId":"3839"},{"alias":"SRP1","entrezGeneId":"3839"},{"alias":"SRP1gamma","entrezGeneId":"3839"},{"alias":"SRP4","entrezGeneId":"3839"},{"alias":"IPOA3","entrezGeneId":"3840"},{"alias":"QIP1","entrezGeneId":"3840"},{"alias":"SRP3","entrezGeneId":"3840"},{"alias":"IPOA6","entrezGeneId":"3841"},{"alias":"SRP6","entrezGeneId":"3841"},{"alias":"IPO2","entrezGeneId":"3842"},{"alias":"KPNB2","entrezGeneId":"3842"},{"alias":"MIP","entrezGeneId":"3842"},{"alias":"MIP1","entrezGeneId":"3842"},{"alias":"TRN","entrezGeneId":"3842"},{"alias":"IMB3","entrezGeneId":"3843"},{"alias":"imp5","entrezGeneId":"3843"},{"alias":"KPNB3","entrezGeneId":"3843"},{"alias":"Pse1","entrezGeneId":"3843"},{"alias":"RANBP5","entrezGeneId":"3843"},{"alias":"c-Kras1","entrezGeneId":"3844"},{"alias":"KRAS1P","entrezGeneId":"3844"},{"alias":"C-K-RAS","entrezGeneId":"3845"},{"alias":"c-Ki-ras2","entrezGeneId":"3845"},{"alias":"CFC2","entrezGeneId":"3845"},{"alias":"K-Ras","entrezGeneId":"3845"},{"alias":"K-RAS2A","entrezGeneId":"3845"},{"alias":"K-RAS2B","entrezGeneId":"3845"},{"alias":"K-RAS4A","entrezGeneId":"3845"},{"alias":"K-RAS4B","entrezGeneId":"3845"},{"alias":"KI-RAS","entrezGeneId":"3845"},{"alias":"KRAS1","entrezGeneId":"3845"},{"alias":"KRAS2","entrezGeneId":"3845"},{"alias":"NS","entrezGeneId":"3845"},{"alias":"NS3","entrezGeneId":"3845"},{"alias":"RALD","entrezGeneId":"3845"},{"alias":"RASK2","entrezGeneId":"3845"},{"alias":"KRN1","entrezGeneId":"3846"},{"alias":"KRTAP5-1","entrezGeneId":"3846"},{"alias":"KRTAP5.9","entrezGeneId":"3846"},{"alias":"CK1","entrezGeneId":"3848"},{"alias":"EHK","entrezGeneId":"3848"},{"alias":"EHK1","entrezGeneId":"3848"},{"alias":"EPPK","entrezGeneId":"3848"},{"alias":"K1","entrezGeneId":"3848"},{"alias":"KRT1A","entrezGeneId":"3848"},{"alias":"NEPPK","entrezGeneId":"3848"},{"alias":"CK-2e","entrezGeneId":"3849"},{"alias":"K2e","entrezGeneId":"3849"},{"alias":"KRT2A","entrezGeneId":"3849"},{"alias":"KRT2E","entrezGeneId":"3849"},{"alias":"KRTE","entrezGeneId":"3849"},{"alias":"CK3","entrezGeneId":"3850"},{"alias":"K3","entrezGeneId":"3850"},{"alias":"CK-4","entrezGeneId":"3851"},{"alias":"CK4","entrezGeneId":"3851"},{"alias":"CYK4","entrezGeneId":"3851"},{"alias":"K4","entrezGeneId":"3851"},{"alias":"WSN1","entrezGeneId":"3851"},{"alias":"CK5","entrezGeneId":"3852"},{"alias":"DDD","entrezGeneId":"3852"},{"alias":"DDD1","entrezGeneId":"3852"},{"alias":"EBS2","entrezGeneId":"3852"},{"alias":"K5","entrezGeneId":"3852"},{"alias":"KRT5A","entrezGeneId":"3852"},{"alias":"CK-6C","entrezGeneId":"3853"},{"alias":"CK-6E","entrezGeneId":"3853"},{"alias":"CK6A","entrezGeneId":"3853"},{"alias":"CK6C","entrezGeneId":"3853"},{"alias":"CK6D","entrezGeneId":"3853"},{"alias":"K6A","entrezGeneId":"3853"},{"alias":"K6C","entrezGeneId":"3853"},{"alias":"K6D","entrezGeneId":"3853"},{"alias":"KRT6C","entrezGeneId":"3853"},{"alias":"KRT6D","entrezGeneId":"3853"},{"alias":"PC3","entrezGeneId":"3853"},{"alias":"CK-6B","entrezGeneId":"3854"},{"alias":"CK6B","entrezGeneId":"3854"},{"alias":"K6B","entrezGeneId":"3854"},{"alias":"KRTL1","entrezGeneId":"3854"},{"alias":"PC2","entrezGeneId":"3854"},{"alias":"PC4","entrezGeneId":"3854"},{"alias":"CK7","entrezGeneId":"3855"},{"alias":"K2C7","entrezGeneId":"3855"},{"alias":"K7","entrezGeneId":"3855"},{"alias":"SCL","entrezGeneId":"3855"},{"alias":"CARD2","entrezGeneId":"3856"},{"alias":"CK-8","entrezGeneId":"3856"},{"alias":"CK8","entrezGeneId":"3856"},{"alias":"CYK8","entrezGeneId":"3856"},{"alias":"K2C8","entrezGeneId":"3856"},{"alias":"K8","entrezGeneId":"3856"},{"alias":"KO","entrezGeneId":"3856"},{"alias":"CK-9","entrezGeneId":"3857"},{"alias":"EPPK","entrezGeneId":"3857"},{"alias":"K9","entrezGeneId":"3857"},{"alias":"BCIE","entrezGeneId":"3858"},{"alias":"BIE","entrezGeneId":"3858"},{"alias":"CK10","entrezGeneId":"3858"},{"alias":"EHK","entrezGeneId":"3858"},{"alias":"K10","entrezGeneId":"3858"},{"alias":"KPP","entrezGeneId":"3858"},{"alias":"K12","entrezGeneId":"3859"},{"alias":"CK13","entrezGeneId":"3860"},{"alias":"K13","entrezGeneId":"3860"},{"alias":"WSN2","entrezGeneId":"3860"},{"alias":"CK14","entrezGeneId":"3861"},{"alias":"EBS3","entrezGeneId":"3861"},{"alias":"EBS4","entrezGeneId":"3861"},{"alias":"K14","entrezGeneId":"3861"},{"alias":"NFJ","entrezGeneId":"3861"},{"alias":"CK15","entrezGeneId":"3866"},{"alias":"K15","entrezGeneId":"3866"},{"alias":"K1CO","entrezGeneId":"3866"},{"alias":"CK16","entrezGeneId":"3868"},{"alias":"FNEPPK","entrezGeneId":"3868"},{"alias":"K16","entrezGeneId":"3868"},{"alias":"K1CP","entrezGeneId":"3868"},{"alias":"KRT16A","entrezGeneId":"3868"},{"alias":"NEPPK","entrezGeneId":"3868"},{"alias":"PC1","entrezGeneId":"3868"},{"alias":"39.1","entrezGeneId":"3872"},{"alias":"CK-17","entrezGeneId":"3872"},{"alias":"K17","entrezGeneId":"3872"},{"alias":"PC","entrezGeneId":"3872"},{"alias":"PC2","entrezGeneId":"3872"},{"alias":"PCHC1","entrezGeneId":"3872"},{"alias":"CK-18","entrezGeneId":"3875"},{"alias":"CYK18","entrezGeneId":"3875"},{"alias":"K18","entrezGeneId":"3875"},{"alias":"KRT18L1","entrezGeneId":"3876"},{"alias":"dJ25J6.3","entrezGeneId":"3879"},{"alias":"CK19","entrezGeneId":"3880"},{"alias":"K19","entrezGeneId":"3880"},{"alias":"K1CS","entrezGeneId":"3880"},{"alias":"Ha-1","entrezGeneId":"3881"},{"alias":"HA1","entrezGeneId":"3881"},{"alias":"hHa1","entrezGeneId":"3881"},{"alias":"KRTHA1","entrezGeneId":"3881"},{"alias":"HA2","entrezGeneId":"3882"},{"alias":"hHa2","entrezGeneId":"3882"},{"alias":"HKA2","entrezGeneId":"3882"},{"alias":"KRTHA2","entrezGeneId":"3882"},{"alias":"Ha-3I","entrezGeneId":"3883"},{"alias":"HA3I","entrezGeneId":"3883"},{"alias":"hHa3-I","entrezGeneId":"3883"},{"alias":"K33A","entrezGeneId":"3883"},{"alias":"Krt1-3","entrezGeneId":"3883"},{"alias":"KRTHA3A","entrezGeneId":"3883"},{"alias":"Ha-3II","entrezGeneId":"3884"},{"alias":"HA3II","entrezGeneId":"3884"},{"alias":"hHa3-II","entrezGeneId":"3884"},{"alias":"K33B","entrezGeneId":"3884"},{"alias":"KRTHA3A","entrezGeneId":"3884"},{"alias":"KRTHA3B","entrezGeneId":"3884"},{"alias":"Ha-4","entrezGeneId":"3885"},{"alias":"HA4","entrezGeneId":"3885"},{"alias":"hHa4","entrezGeneId":"3885"},{"alias":"KRTHA4","entrezGeneId":"3885"},{"alias":"Ha-5","entrezGeneId":"3886"},{"alias":"HA5","entrezGeneId":"3886"},{"alias":"hHa5","entrezGeneId":"3886"},{"alias":"KRTHA5","entrezGeneId":"3886"},{"alias":"ghHkb1","entrezGeneId":"3887"},{"alias":"Hb-1","entrezGeneId":"3887"},{"alias":"HB1","entrezGeneId":"3887"},{"alias":"hHAKB2-1","entrezGeneId":"3887"},{"alias":"KRTHB1","entrezGeneId":"3887"},{"alias":"MLN137","entrezGeneId":"3887"},{"alias":"Hb-2","entrezGeneId":"3888"},{"alias":"HB2","entrezGeneId":"3888"},{"alias":"KRTHB2","entrezGeneId":"3888"},{"alias":"EKVP5","entrezGeneId":"3889"},{"alias":"Hb-3","entrezGeneId":"3889"},{"alias":"HB3","entrezGeneId":"3889"},{"alias":"KRTHB3","entrezGeneId":"3889"},{"alias":"MNLIX","entrezGeneId":"3889"},{"alias":"HB4","entrezGeneId":"3890"},{"alias":"KRTHB4","entrezGeneId":"3890"},{"alias":"ECTD4","entrezGeneId":"3891"},{"alias":"Hb-5","entrezGeneId":"3891"},{"alias":"HB5","entrezGeneId":"3891"},{"alias":"hHb5","entrezGeneId":"3891"},{"alias":"K85","entrezGeneId":"3891"},{"alias":"KRTHB5","entrezGeneId":"3891"},{"alias":"Hb1","entrezGeneId":"3892"},{"alias":"HB6","entrezGeneId":"3892"},{"alias":"K86","entrezGeneId":"3892"},{"alias":"KRTHB1","entrezGeneId":"3892"},{"alias":"KRTHB6","entrezGeneId":"3892"},{"alias":"MNX","entrezGeneId":"3892"},{"alias":"CG1","entrezGeneId":"3895"},{"alias":"KNT","entrezGeneId":"3895"},{"alias":"MU-RMS-40.19","entrezGeneId":"3895"},{"alias":"CAML1","entrezGeneId":"3897"},{"alias":"CD171","entrezGeneId":"3897"},{"alias":"HSAS","entrezGeneId":"3897"},{"alias":"HSAS1","entrezGeneId":"3897"},{"alias":"MASA","entrezGeneId":"3897"},{"alias":"MIC5","entrezGeneId":"3897"},{"alias":"N-CAM-L1","entrezGeneId":"3897"},{"alias":"N-CAML1","entrezGeneId":"3897"},{"alias":"NCAM-L1","entrezGeneId":"3897"},{"alias":"S10","entrezGeneId":"3897"},{"alias":"SPG1","entrezGeneId":"3897"},{"alias":"LadA","entrezGeneId":"3898"},{"alias":"LAF4","entrezGeneId":"3899"},{"alias":"MLLT2-like","entrezGeneId":"3899"},{"alias":"CD223","entrezGeneId":"3902"},{"alias":"CD305","entrezGeneId":"3903"},{"alias":"LAIR-1","entrezGeneId":"3903"},{"alias":"CD306","entrezGeneId":"3904"},{"alias":"LAKL","entrezGeneId":"3905"},{"alias":"LYZG","entrezGeneId":"3906"},{"alias":"LAMM","entrezGeneId":"3908"},{"alias":"BM600","entrezGeneId":"3909"},{"alias":"E170","entrezGeneId":"3909"},{"alias":"LAMNA","entrezGeneId":"3909"},{"alias":"LOCS","entrezGeneId":"3909"},{"alias":"CMD1JJ","entrezGeneId":"3910"},{"alias":"LAMA3","entrezGeneId":"3910"},{"alias":"LAMA4*-1","entrezGeneId":"3910"},{"alias":"CLM","entrezGeneId":"3912"},{"alias":"LIS5","entrezGeneId":"3912"},{"alias":"LAMS","entrezGeneId":"3913"},{"alias":"NPHS5","entrezGeneId":"3913"},{"alias":"AI1A","entrezGeneId":"3914"},{"alias":"BM600-125KDA","entrezGeneId":"3914"},{"alias":"LAM5","entrezGeneId":"3914"},{"alias":"LAMNB1","entrezGeneId":"3914"},{"alias":"LAMB2","entrezGeneId":"3915"},{"alias":"CD107a","entrezGeneId":"3916"},{"alias":"LAMPA","entrezGeneId":"3916"},{"alias":"LGP120","entrezGeneId":"3916"},{"alias":"B2T","entrezGeneId":"3918"},{"alias":"BM600","entrezGeneId":"3918"},{"alias":"CSF","entrezGeneId":"3918"},{"alias":"EBR2","entrezGeneId":"3918"},{"alias":"EBR2A","entrezGeneId":"3918"},{"alias":"LAMB2T","entrezGeneId":"3918"},{"alias":"LAMNB2","entrezGeneId":"3918"},{"alias":"CD107b","entrezGeneId":"3920"},{"alias":"LAMP-2","entrezGeneId":"3920"},{"alias":"LAMPB","entrezGeneId":"3920"},{"alias":"LGP-96","entrezGeneId":"3920"},{"alias":"LGP110","entrezGeneId":"3920"},{"alias":"37LRP","entrezGeneId":"3921"},{"alias":"67LR","entrezGeneId":"3921"},{"alias":"ICAS","entrezGeneId":"3921"},{"alias":"LAMBR","entrezGeneId":"3921"},{"alias":"lamR","entrezGeneId":"3921"},{"alias":"LAMR1","entrezGeneId":"3921"},{"alias":"LBP","entrezGeneId":"3921"},{"alias":"LBP/p40","entrezGeneId":"3921"},{"alias":"LRP","entrezGeneId":"3921"},{"alias":"LRP/LR","entrezGeneId":"3921"},{"alias":"NEM/1CHD4","entrezGeneId":"3921"},{"alias":"p40","entrezGeneId":"3921"},{"alias":"SA","entrezGeneId":"3921"},{"alias":"LAMR1P13","entrezGeneId":"3923"},{"alias":"LAMRL3","entrezGeneId":"3923"},{"alias":"LAMRP3","entrezGeneId":"3923"},{"alias":"RPSA_20_1366","entrezGeneId":"3923"},{"alias":"LAMR1P14","entrezGeneId":"3924"},{"alias":"LAMRL4","entrezGeneId":"3924"},{"alias":"LAMRP4","entrezGeneId":"3924"},{"alias":"C1orf215","entrezGeneId":"3925"},{"alias":"Lag","entrezGeneId":"3925"},{"alias":"LAP18","entrezGeneId":"3925"},{"alias":"OP18","entrezGeneId":"3925"},{"alias":"PP17","entrezGeneId":"3925"},{"alias":"PP19","entrezGeneId":"3925"},{"alias":"PR22","entrezGeneId":"3925"},{"alias":"SMN","entrezGeneId":"3925"},{"alias":"Lasp-1","entrezGeneId":"3927"},{"alias":"MLN50","entrezGeneId":"3927"},{"alias":"BPIFD2","entrezGeneId":"3929"},{"alias":"DHCR14B","entrezGeneId":"3930"},{"alias":"LMN2R","entrezGeneId":"3930"},{"alias":"PHA","entrezGeneId":"3930"},{"alias":"TDRD18","entrezGeneId":"3930"},{"alias":"IMD22","entrezGeneId":"3932"},{"alias":"LSK","entrezGeneId":"3932"},{"alias":"p56lck","entrezGeneId":"3932"},{"alias":"pp58lck","entrezGeneId":"3932"},{"alias":"YT16","entrezGeneId":"3932"},{"alias":"PMFA","entrezGeneId":"3933"},{"alias":"TLC","entrezGeneId":"3933"},{"alias":"TP","entrezGeneId":"3933"},{"alias":"VEGP","entrezGeneId":"3933"},{"alias":"24p3","entrezGeneId":"3934"},{"alias":"MSFI","entrezGeneId":"3934"},{"alias":"NGAL","entrezGeneId":"3934"},{"alias":"p25","entrezGeneId":"3934"},{"alias":"CP64","entrezGeneId":"3936"},{"alias":"HEL-S-37","entrezGeneId":"3936"},{"alias":"L-PLASTIN","entrezGeneId":"3936"},{"alias":"LC64P","entrezGeneId":"3936"},{"alias":"LPL","entrezGeneId":"3936"},{"alias":"PLS2","entrezGeneId":"3936"},{"alias":"SLP-76","entrezGeneId":"3937"},{"alias":"SLP76","entrezGeneId":"3937"},{"alias":"LAC","entrezGeneId":"3938"},{"alias":"LPH","entrezGeneId":"3938"},{"alias":"LPH1","entrezGeneId":"3938"},{"alias":"GSD11","entrezGeneId":"3939"},{"alias":"HEL-S-133P","entrezGeneId":"3939"},{"alias":"LDHM","entrezGeneId":"3939"},{"alias":"PIG19","entrezGeneId":"3939"},{"alias":"LDHAL1","entrezGeneId":"3940"},{"alias":"HEL-S-281","entrezGeneId":"3945"},{"alias":"LDH-B","entrezGeneId":"3945"},{"alias":"LDH-H","entrezGeneId":"3945"},{"alias":"LDHBD","entrezGeneId":"3945"},{"alias":"TRG-5","entrezGeneId":"3945"},{"alias":"LDHBL2","entrezGeneId":"3947"},{"alias":"LDHBP","entrezGeneId":"3947"},{"alias":"CT32","entrezGeneId":"3948"},{"alias":"LDH3","entrezGeneId":"3948"},{"alias":"LDHX","entrezGeneId":"3948"},{"alias":"FH","entrezGeneId":"3949"},{"alias":"FHC","entrezGeneId":"3949"},{"alias":"LDLCQ2","entrezGeneId":"3949"},{"alias":"chm-II","entrezGeneId":"3950"},{"alias":"chm2","entrezGeneId":"3950"},{"alias":"LEPD","entrezGeneId":"3952"},{"alias":"OB","entrezGeneId":"3952"},{"alias":"OBS","entrezGeneId":"3952"},{"alias":"CD295","entrezGeneId":"3953"},{"alias":"LEP-R","entrezGeneId":"3953"},{"alias":"LEPRD","entrezGeneId":"3953"},{"alias":"OB-R","entrezGeneId":"3953"},{"alias":"OBR","entrezGeneId":"3953"},{"alias":"SLC55A1","entrezGeneId":"3954"},{"alias":"SCDO3","entrezGeneId":"3955"},{"alias":"GAL1","entrezGeneId":"3956"},{"alias":"GBP","entrezGeneId":"3956"},{"alias":"HL14","entrezGeneId":"3957"},{"alias":"CBP35","entrezGeneId":"3958"},{"alias":"GAL3","entrezGeneId":"3958"},{"alias":"GALBP","entrezGeneId":"3958"},{"alias":"GALIG","entrezGeneId":"3958"},{"alias":"L31","entrezGeneId":"3958"},{"alias":"LGALS2","entrezGeneId":"3958"},{"alias":"MAC2","entrezGeneId":"3958"},{"alias":"90K","entrezGeneId":"3959"},{"alias":"BTBD17B","entrezGeneId":"3959"},{"alias":"CyCAP","entrezGeneId":"3959"},{"alias":"gp90","entrezGeneId":"3959"},{"alias":"M2BP","entrezGeneId":"3959"},{"alias":"MAC-2-BP","entrezGeneId":"3959"},{"alias":"TANGO10B","entrezGeneId":"3959"},{"alias":"GAL4","entrezGeneId":"3960"},{"alias":"L36LBP","entrezGeneId":"3960"},{"alias":"GAL7","entrezGeneId":"3963"},{"alias":"LGALS7A","entrezGeneId":"3963"},{"alias":"Gal-8","entrezGeneId":"3964"},{"alias":"PCTA-1","entrezGeneId":"3964"},{"alias":"PCTA1","entrezGeneId":"3964"},{"alias":"Po66-CBP","entrezGeneId":"3964"},{"alias":"HUAT","entrezGeneId":"3965"},{"alias":"LGALS9A","entrezGeneId":"3965"},{"alias":"CGB4","entrezGeneId":"3972"},{"alias":"HH23","entrezGeneId":"3972"},{"alias":"LSH-B","entrezGeneId":"3972"},{"alias":"LSH-beta","entrezGeneId":"3972"},{"alias":"HHG","entrezGeneId":"3973"},{"alias":"LCGR","entrezGeneId":"3973"},{"alias":"LGR2","entrezGeneId":"3973"},{"alias":"LH/CG-R","entrezGeneId":"3973"},{"alias":"LH/CGR","entrezGeneId":"3973"},{"alias":"LHR","entrezGeneId":"3973"},{"alias":"LHRHR","entrezGeneId":"3973"},{"alias":"LSH-R","entrezGeneId":"3973"},{"alias":"ULG5","entrezGeneId":"3973"},{"alias":"LIM-1","entrezGeneId":"3975"},{"alias":"LIM1","entrezGeneId":"3975"},{"alias":"CDF","entrezGeneId":"3976"},{"alias":"DIA","entrezGeneId":"3976"},{"alias":"HILDA","entrezGeneId":"3976"},{"alias":"MLPLI","entrezGeneId":"3976"},{"alias":"CD118","entrezGeneId":"3977"},{"alias":"LIF-R","entrezGeneId":"3977"},{"alias":"SJS2","entrezGeneId":"3977"},{"alias":"STWS","entrezGeneId":"3977"},{"alias":"SWS","entrezGeneId":"3977"},{"alias":"LIG2","entrezGeneId":"3980"},{"alias":"LIG4S","entrezGeneId":"3981"},{"alias":"CTRCT19","entrezGeneId":"3982"},{"alias":"MP17","entrezGeneId":"3982"},{"alias":"MP19","entrezGeneId":"3982"},{"alias":"ABLIM","entrezGeneId":"3983"},{"alias":"abLIM-1","entrezGeneId":"3983"},{"alias":"LIMAB1","entrezGeneId":"3983"},{"alias":"LIMATIN","entrezGeneId":"3983"},{"alias":"LIMK","entrezGeneId":"3984"},{"alias":"LIMK-1","entrezGeneId":"3984"},{"alias":"PINCH","entrezGeneId":"3987"},{"alias":"PINCH-1","entrezGeneId":"3987"},{"alias":"PINCH1","entrezGeneId":"3987"},{"alias":"CESD","entrezGeneId":"3988"},{"alias":"LAL","entrezGeneId":"3988"},{"alias":"HDLCQ12","entrezGeneId":"3990"},{"alias":"HL","entrezGeneId":"3990"},{"alias":"HTGL","entrezGeneId":"3990"},{"alias":"LIPH","entrezGeneId":"3990"},{"alias":"AOMS4","entrezGeneId":"3991"},{"alias":"FPLD6","entrezGeneId":"3991"},{"alias":"HSL","entrezGeneId":"3991"},{"alias":"LHS","entrezGeneId":"3991"},{"alias":"D5D","entrezGeneId":"3992"},{"alias":"FADS6","entrezGeneId":"3992"},{"alias":"FADSD5","entrezGeneId":"3992"},{"alias":"LLCDL1","entrezGeneId":"3992"},{"alias":"TU12","entrezGeneId":"3992"},{"alias":"HGL","entrezGeneId":"3993"},{"alias":"Hugl-2","entrezGeneId":"3993"},{"alias":"LGL2","entrezGeneId":"3993"},{"alias":"CYB5RP","entrezGeneId":"3995"},{"alias":"LLCDL3","entrezGeneId":"3995"},{"alias":"DLG4","entrezGeneId":"3996"},{"alias":"HUGL","entrezGeneId":"3996"},{"alias":"HUGL-1","entrezGeneId":"3996"},{"alias":"HUGL1","entrezGeneId":"3996"},{"alias":"Lgl1","entrezGeneId":"3996"},{"alias":"LLGL","entrezGeneId":"3996"},{"alias":"Mgl1","entrezGeneId":"3996"},{"alias":"ERGIC-53","entrezGeneId":"3998"},{"alias":"ERGIC53","entrezGeneId":"3998"},{"alias":"F5F8D","entrezGeneId":"3998"},{"alias":"FMFD1","entrezGeneId":"3998"},{"alias":"gp58","entrezGeneId":"3998"},{"alias":"MCFD1","entrezGeneId":"3998"},{"alias":"MR60","entrezGeneId":"3998"},{"alias":"CDCD1","entrezGeneId":"4000"},{"alias":"CDDC","entrezGeneId":"4000"},{"alias":"CMD1A","entrezGeneId":"4000"},{"alias":"CMT2B1","entrezGeneId":"4000"},{"alias":"EMD2","entrezGeneId":"4000"},{"alias":"FPL","entrezGeneId":"4000"},{"alias":"FPLD","entrezGeneId":"4000"},{"alias":"FPLD2","entrezGeneId":"4000"},{"alias":"HGPS","entrezGeneId":"4000"},{"alias":"IDC","entrezGeneId":"4000"},{"alias":"LDP1","entrezGeneId":"4000"},{"alias":"LFP","entrezGeneId":"4000"},{"alias":"LGMD1B","entrezGeneId":"4000"},{"alias":"LMN1","entrezGeneId":"4000"},{"alias":"LMNC","entrezGeneId":"4000"},{"alias":"LMNL1","entrezGeneId":"4000"},{"alias":"MADA","entrezGeneId":"4000"},{"alias":"PRO1","entrezGeneId":"4000"},{"alias":"ADLD","entrezGeneId":"4001"},{"alias":"LMN","entrezGeneId":"4001"},{"alias":"LMN2","entrezGeneId":"4001"},{"alias":"LMNB","entrezGeneId":"4001"},{"alias":"RBTN1","entrezGeneId":"4004"},{"alias":"RHOM1","entrezGeneId":"4004"},{"alias":"TTG1","entrezGeneId":"4004"},{"alias":"LMO-2","entrezGeneId":"4005"},{"alias":"RBTN2","entrezGeneId":"4005"},{"alias":"RBTNL1","entrezGeneId":"4005"},{"alias":"RHOM2","entrezGeneId":"4005"},{"alias":"TTG2","entrezGeneId":"4005"},{"alias":"LMO6","entrezGeneId":"4007"},{"alias":"Pk3","entrezGeneId":"4007"},{"alias":"FBX20","entrezGeneId":"4008"},{"alias":"FBXO20","entrezGeneId":"4008"},{"alias":"LMO7b","entrezGeneId":"4008"},{"alias":"LOMP","entrezGeneId":"4008"},{"alias":"LMX1","entrezGeneId":"4009"},{"alias":"LMX1.1","entrezGeneId":"4009"},{"alias":"LMX1.2","entrezGeneId":"4010"},{"alias":"NPS1","entrezGeneId":"4010"},{"alias":"CAP","entrezGeneId":"4012"},{"alias":"IRAP","entrezGeneId":"4012"},{"alias":"P-LAP","entrezGeneId":"4012"},{"alias":"PLAP","entrezGeneId":"4012"},{"alias":"BCSC-1","entrezGeneId":"4013"},{"alias":"BCSC1","entrezGeneId":"4013"},{"alias":"LOH11CR2A","entrezGeneId":"4013"},{"alias":"AAT10","entrezGeneId":"4015"},{"alias":"LOL","entrezGeneId":"4016"},{"alias":"LOXL","entrezGeneId":"4016"},{"alias":"LOR","entrezGeneId":"4017"},{"alias":"LOR2","entrezGeneId":"4017"},{"alias":"WS9-14","entrezGeneId":"4017"},{"alias":"AK38","entrezGeneId":"4018"},{"alias":"APOA","entrezGeneId":"4018"},{"alias":"LP","entrezGeneId":"4018"},{"alias":"HDLCQ11","entrezGeneId":"4023"},{"alias":"LIPD","entrezGeneId":"4023"},{"alias":"SPO","entrezGeneId":"4025"},{"alias":"JAW1","entrezGeneId":"4033"},{"alias":"LRN","entrezGeneId":"4034"},{"alias":"LRRN1","entrezGeneId":"4034"},{"alias":"LRRN4","entrezGeneId":"4034"},{"alias":"PP14183","entrezGeneId":"4034"},{"alias":"A2MR","entrezGeneId":"4035"},{"alias":"APOER","entrezGeneId":"4035"},{"alias":"APR","entrezGeneId":"4035"},{"alias":"CD91","entrezGeneId":"4035"},{"alias":"IGFBP-3R","entrezGeneId":"4035"},{"alias":"IGFBP3R","entrezGeneId":"4035"},{"alias":"IGFBP3R1","entrezGeneId":"4035"},{"alias":"KPA","entrezGeneId":"4035"},{"alias":"LRP","entrezGeneId":"4035"},{"alias":"LRP1A","entrezGeneId":"4035"},{"alias":"TGFBR5","entrezGeneId":"4035"},{"alias":"DBS","entrezGeneId":"4036"},{"alias":"GP330","entrezGeneId":"4036"},{"alias":"CLSS","entrezGeneId":"4038"},{"alias":"CMS17","entrezGeneId":"4038"},{"alias":"LRP-4","entrezGeneId":"4038"},{"alias":"LRP10","entrezGeneId":"4038"},{"alias":"MEGF7","entrezGeneId":"4038"},{"alias":"SOST2","entrezGeneId":"4038"},{"alias":"ADCAD2","entrezGeneId":"4040"},{"alias":"STHAG7","entrezGeneId":"4040"},{"alias":"BMND1","entrezGeneId":"4041"},{"alias":"EVR1","entrezGeneId":"4041"},{"alias":"EVR4","entrezGeneId":"4041"},{"alias":"HBM","entrezGeneId":"4041"},{"alias":"LR3","entrezGeneId":"4041"},{"alias":"LRP-5","entrezGeneId":"4041"},{"alias":"LRP7","entrezGeneId":"4041"},{"alias":"OPPG","entrezGeneId":"4041"},{"alias":"OPS","entrezGeneId":"4041"},{"alias":"OPTA1","entrezGeneId":"4041"},{"alias":"PCLD4","entrezGeneId":"4041"},{"alias":"VBCH2","entrezGeneId":"4041"},{"alias":"A2MRAP","entrezGeneId":"4043"},{"alias":"A2RAP","entrezGeneId":"4043"},{"alias":"alpha-2-MRAP","entrezGeneId":"4043"},{"alias":"HBP44","entrezGeneId":"4043"},{"alias":"MRAP","entrezGeneId":"4043"},{"alias":"MYP23","entrezGeneId":"4043"},{"alias":"RAP","entrezGeneId":"4043"},{"alias":"IGLON3","entrezGeneId":"4045"},{"alias":"LAMP","entrezGeneId":"4045"},{"alias":"pp52","entrezGeneId":"4046"},{"alias":"WP34","entrezGeneId":"4046"},{"alias":"CTRCT44","entrezGeneId":"4047"},{"alias":"OSC","entrezGeneId":"4047"},{"alias":"LT","entrezGeneId":"4049"},{"alias":"TNFB","entrezGeneId":"4049"},{"alias":"TNFSF1","entrezGeneId":"4049"},{"alias":"TNLG1E","entrezGeneId":"4049"},{"alias":"p33","entrezGeneId":"4050"},{"alias":"TNFC","entrezGeneId":"4050"},{"alias":"TNFSF3","entrezGeneId":"4050"},{"alias":"TNLG1C","entrezGeneId":"4050"},{"alias":"CPF3","entrezGeneId":"4051"},{"alias":"CYP4F","entrezGeneId":"4051"},{"alias":"LTB4H","entrezGeneId":"4051"},{"alias":"C14orf141","entrezGeneId":"4053"},{"alias":"GLC3D","entrezGeneId":"4053"},{"alias":"LTBP3","entrezGeneId":"4053"},{"alias":"MSPKA","entrezGeneId":"4053"},{"alias":"MSTP031","entrezGeneId":"4053"},{"alias":"WMS3","entrezGeneId":"4053"},{"alias":"DASS","entrezGeneId":"4054"},{"alias":"GPHYSD3","entrezGeneId":"4054"},{"alias":"LTBP-3","entrezGeneId":"4054"},{"alias":"LTBP2","entrezGeneId":"4054"},{"alias":"pp6425","entrezGeneId":"4054"},{"alias":"STHAG6","entrezGeneId":"4054"},{"alias":"CD18","entrezGeneId":"4055"},{"alias":"D12S370","entrezGeneId":"4055"},{"alias":"LT-BETA-R","entrezGeneId":"4055"},{"alias":"TNF-R-III","entrezGeneId":"4055"},{"alias":"TNFCR","entrezGeneId":"4055"},{"alias":"TNFR-RP","entrezGeneId":"4055"},{"alias":"TNFR2-RP","entrezGeneId":"4055"},{"alias":"TNFR3","entrezGeneId":"4055"},{"alias":"TNFRSF3","entrezGeneId":"4055"},{"alias":"GIG12","entrezGeneId":"4057"},{"alias":"HEL110","entrezGeneId":"4057"},{"alias":"HLF2","entrezGeneId":"4057"},{"alias":"LF","entrezGeneId":"4057"},{"alias":"TYK1","entrezGeneId":"4058"},{"alias":"AU","entrezGeneId":"4059"},{"alias":"CD239","entrezGeneId":"4059"},{"alias":"LU","entrezGeneId":"4059"},{"alias":"MSK19","entrezGeneId":"4059"},{"alias":"LDC","entrezGeneId":"4060"},{"alias":"SLRR2D","entrezGeneId":"4060"},{"alias":"RIG-E","entrezGeneId":"4061"},{"alias":"RIGE","entrezGeneId":"4061"},{"alias":"SCA-2","entrezGeneId":"4061"},{"alias":"SCA2","entrezGeneId":"4061"},{"alias":"TSA-1","entrezGeneId":"4061"},{"alias":"NMLY6","entrezGeneId":"4062"},{"alias":"CD229","entrezGeneId":"4063"},{"alias":"hly9","entrezGeneId":"4063"},{"alias":"mLY9","entrezGeneId":"4063"},{"alias":"SLAMF3","entrezGeneId":"4063"},{"alias":"LY64","entrezGeneId":"4064"},{"alias":"Ly78","entrezGeneId":"4064"},{"alias":"RP105","entrezGeneId":"4064"},{"alias":"CD205","entrezGeneId":"4065"},{"alias":"CLEC13B","entrezGeneId":"4065"},{"alias":"DEC-205","entrezGeneId":"4065"},{"alias":"GP200-MR6","entrezGeneId":"4065"},{"alias":"LY-75","entrezGeneId":"4065"},{"alias":"bHLHa18","entrezGeneId":"4066"},{"alias":"JTK8","entrezGeneId":"4067"},{"alias":"p53Lyn","entrezGeneId":"4067"},{"alias":"p56Lyn","entrezGeneId":"4067"},{"alias":"DSHP","entrezGeneId":"4068"},{"alias":"EBVS","entrezGeneId":"4068"},{"alias":"IMD5","entrezGeneId":"4068"},{"alias":"LYP","entrezGeneId":"4068"},{"alias":"MTCP1","entrezGeneId":"4068"},{"alias":"SAP","entrezGeneId":"4068"},{"alias":"SAP/SH2D1A","entrezGeneId":"4068"},{"alias":"XLP","entrezGeneId":"4068"},{"alias":"XLPD","entrezGeneId":"4068"},{"alias":"XLPD1","entrezGeneId":"4068"},{"alias":"LYZF1","entrezGeneId":"4069"},{"alias":"LZM","entrezGeneId":"4069"},{"alias":"EGP-1","entrezGeneId":"4070"},{"alias":"EGP1","entrezGeneId":"4070"},{"alias":"GA733-1","entrezGeneId":"4070"},{"alias":"GA7331","entrezGeneId":"4070"},{"alias":"GP50","entrezGeneId":"4070"},{"alias":"M1S1","entrezGeneId":"4070"},{"alias":"TROP2","entrezGeneId":"4070"},{"alias":"H-L6","entrezGeneId":"4071"},{"alias":"L6","entrezGeneId":"4071"},{"alias":"M3S1","entrezGeneId":"4071"},{"alias":"TAAL6","entrezGeneId":"4071"},{"alias":"DIAR5","entrezGeneId":"4072"},{"alias":"EGP-2","entrezGeneId":"4072"},{"alias":"EGP314","entrezGeneId":"4072"},{"alias":"EGP40","entrezGeneId":"4072"},{"alias":"ESA","entrezGeneId":"4072"},{"alias":"HNPCC8","entrezGeneId":"4072"},{"alias":"KS1/4","entrezGeneId":"4072"},{"alias":"KSA","entrezGeneId":"4072"},{"alias":"M4S1","entrezGeneId":"4072"},{"alias":"MIC18","entrezGeneId":"4072"},{"alias":"MK-1","entrezGeneId":"4072"},{"alias":"TACSTD1","entrezGeneId":"4072"},{"alias":"TROP1","entrezGeneId":"4072"},{"alias":"CD-M6PR","entrezGeneId":"4074"},{"alias":"CD-MPR","entrezGeneId":"4074"},{"alias":"MPR 46","entrezGeneId":"4074"},{"alias":"MPR-46","entrezGeneId":"4074"},{"alias":"MPR46","entrezGeneId":"4074"},{"alias":"SMPR","entrezGeneId":"4074"},{"alias":"GPIAP1","entrezGeneId":"4076"},{"alias":"GPIP137","entrezGeneId":"4076"},{"alias":"GRIP137","entrezGeneId":"4076"},{"alias":"M11S1","entrezGeneId":"4076"},{"alias":"p137GPI","entrezGeneId":"4076"},{"alias":"RNG105","entrezGeneId":"4076"},{"alias":"1A1-3B","entrezGeneId":"4077"},{"alias":"IAI3B","entrezGeneId":"4077"},{"alias":"M17S2","entrezGeneId":"4077"},{"alias":"MIG19","entrezGeneId":"4077"},{"alias":"LZMS","entrezGeneId":"4080"},{"alias":"MCOPS1","entrezGeneId":"4080"},{"alias":"CAGR1","entrezGeneId":"4081"},{"alias":"Nbla00126","entrezGeneId":"4081"},{"alias":"80K-L","entrezGeneId":"4082"},{"alias":"MACS","entrezGeneId":"4082"},{"alias":"PKCSL","entrezGeneId":"4082"},{"alias":"PRKCSL","entrezGeneId":"4082"},{"alias":"MACSL1","entrezGeneId":"4083"},{"alias":"BHLHC58","entrezGeneId":"4084"},{"alias":"MAD","entrezGeneId":"4084"},{"alias":"MAD1","entrezGeneId":"4084"},{"alias":"HSMAD2","entrezGeneId":"4085"},{"alias":"MAD2","entrezGeneId":"4085"},{"alias":"BSP-1","entrezGeneId":"4086"},{"alias":"BSP1","entrezGeneId":"4086"},{"alias":"JV4-1","entrezGeneId":"4086"},{"alias":"JV41","entrezGeneId":"4086"},{"alias":"MADH1","entrezGeneId":"4086"},{"alias":"MADR1","entrezGeneId":"4086"},{"alias":"hMAD-2","entrezGeneId":"4087"},{"alias":"hSMAD2","entrezGeneId":"4087"},{"alias":"JV18","entrezGeneId":"4087"},{"alias":"JV18-1","entrezGeneId":"4087"},{"alias":"MADH2","entrezGeneId":"4087"},{"alias":"MADR2","entrezGeneId":"4087"},{"alias":"HSPC193","entrezGeneId":"4088"},{"alias":"HsT17436","entrezGeneId":"4088"},{"alias":"JV15-2","entrezGeneId":"4088"},{"alias":"LDS1C","entrezGeneId":"4088"},{"alias":"LDS3","entrezGeneId":"4088"},{"alias":"MADH3","entrezGeneId":"4088"},{"alias":"DPC4","entrezGeneId":"4089"},{"alias":"JIP","entrezGeneId":"4089"},{"alias":"MADH4","entrezGeneId":"4089"},{"alias":"MYHRS","entrezGeneId":"4089"},{"alias":"DWFC","entrezGeneId":"4090"},{"alias":"JV5-1","entrezGeneId":"4090"},{"alias":"MADH5","entrezGeneId":"4090"},{"alias":"AOVD2","entrezGeneId":"4091"},{"alias":"HsT17432","entrezGeneId":"4091"},{"alias":"MADH6","entrezGeneId":"4091"},{"alias":"MADH7","entrezGeneId":"4091"},{"alias":"CRCS3","entrezGeneId":"4092"},{"alias":"MADH7","entrezGeneId":"4092"},{"alias":"MADH8","entrezGeneId":"4092"},{"alias":"MADH6","entrezGeneId":"4093"},{"alias":"MADH9","entrezGeneId":"4093"},{"alias":"PPH2","entrezGeneId":"4093"},{"alias":"SMAD8","entrezGeneId":"4093"},{"alias":"SMAD8/9","entrezGeneId":"4093"},{"alias":"SMAD8A","entrezGeneId":"4093"},{"alias":"SMAD8B","entrezGeneId":"4093"},{"alias":"AYGRP","entrezGeneId":"4094"},{"alias":"c-MAF","entrezGeneId":"4094"},{"alias":"CCA4","entrezGeneId":"4094"},{"alias":"CTRCT21","entrezGeneId":"4094"},{"alias":"BPAD","entrezGeneId":"4095"},{"alias":"MD1","entrezGeneId":"4095"},{"alias":"BPAD","entrezGeneId":"4096"},{"alias":"MDI","entrezGeneId":"4096"},{"alias":"MDX","entrezGeneId":"4096"},{"alias":"hMAF","entrezGeneId":"4097"},{"alias":"GMA","entrezGeneId":"4099"},{"alias":"S-MAG","entrezGeneId":"4099"},{"alias":"SIGLEC-4A","entrezGeneId":"4099"},{"alias":"SIGLEC4A","entrezGeneId":"4099"},{"alias":"SPG75","entrezGeneId":"4099"},{"alias":"CT1.1","entrezGeneId":"4100"},{"alias":"MAGE1","entrezGeneId":"4100"},{"alias":"CT1.2","entrezGeneId":"4101"},{"alias":"MAGE2","entrezGeneId":"4101"},{"alias":"MAGEA2A","entrezGeneId":"4101"},{"alias":"CT1.3","entrezGeneId":"4102"},{"alias":"HIP8","entrezGeneId":"4102"},{"alias":"HYPD","entrezGeneId":"4102"},{"alias":"MAGE3","entrezGeneId":"4102"},{"alias":"MAGEA6","entrezGeneId":"4102"},{"alias":"CT1.4","entrezGeneId":"4103"},{"alias":"MAGE-41","entrezGeneId":"4103"},{"alias":"MAGE-X2","entrezGeneId":"4103"},{"alias":"MAGE4","entrezGeneId":"4103"},{"alias":"MAGE4A","entrezGeneId":"4103"},{"alias":"MAGE4B","entrezGeneId":"4103"},{"alias":"CT1.5","entrezGeneId":"4104"},{"alias":"MAGE5","entrezGeneId":"4104"},{"alias":"MAGEA4","entrezGeneId":"4104"},{"alias":"CT1.6","entrezGeneId":"4105"},{"alias":"MAGE-3b","entrezGeneId":"4105"},{"alias":"MAGE3B","entrezGeneId":"4105"},{"alias":"MAGE6","entrezGeneId":"4105"},{"alias":"MAGE7","entrezGeneId":"4106"},{"alias":"MAGEA7","entrezGeneId":"4106"},{"alias":"CT1.8","entrezGeneId":"4107"},{"alias":"MAGE8","entrezGeneId":"4107"},{"alias":"CT1.9","entrezGeneId":"4108"},{"alias":"MAGE9","entrezGeneId":"4108"},{"alias":"CT1.10","entrezGeneId":"4109"},{"alias":"MAGE10","entrezGeneId":"4109"},{"alias":"CT1.11","entrezGeneId":"4110"},{"alias":"MAGE-11","entrezGeneId":"4110"},{"alias":"MAGE11","entrezGeneId":"4110"},{"alias":"MAGEA-11","entrezGeneId":"4110"},{"alias":"CT1.12","entrezGeneId":"4111"},{"alias":"MAGE12","entrezGeneId":"4111"},{"alias":"CT3.1","entrezGeneId":"4112"},{"alias":"DAM10","entrezGeneId":"4112"},{"alias":"MAGE-Xp","entrezGeneId":"4112"},{"alias":"MAGEL1","entrezGeneId":"4112"},{"alias":"CT3.2","entrezGeneId":"4113"},{"alias":"DAM6","entrezGeneId":"4113"},{"alias":"MAGE-XP-2","entrezGeneId":"4113"},{"alias":"CT3.5","entrezGeneId":"4114"},{"alias":"CT3.6","entrezGeneId":"4115"},{"alias":"MAGOH1","entrezGeneId":"4116"},{"alias":"MAGOHA","entrezGeneId":"4116"},{"alias":"RP62","entrezGeneId":"4117"},{"alias":"HUMM3","entrezGeneId":"4121"},{"alias":"HUMM9","entrezGeneId":"4121"},{"alias":"MAN9","entrezGeneId":"4121"},{"alias":"MANA2X","entrezGeneId":"4122"},{"alias":"MAN6A8","entrezGeneId":"4123"},{"alias":"MANA","entrezGeneId":"4123"},{"alias":"MANA1","entrezGeneId":"4123"},{"alias":"AMan II","entrezGeneId":"4124"},{"alias":"GOLIM7","entrezGeneId":"4124"},{"alias":"MANA2","entrezGeneId":"4124"},{"alias":"MANII","entrezGeneId":"4124"},{"alias":"LAMAN","entrezGeneId":"4125"},{"alias":"MANB","entrezGeneId":"4125"},{"alias":"MANB1","entrezGeneId":"4126"},{"alias":"BRNRS","entrezGeneId":"4128"},{"alias":"MAO-A","entrezGeneId":"4128"},{"alias":"MAP1L","entrezGeneId":"4130"},{"alias":"MTAP1A","entrezGeneId":"4130"},{"alias":"FUTSCH","entrezGeneId":"4131"},{"alias":"MAP5","entrezGeneId":"4131"},{"alias":"PPP1R102","entrezGeneId":"4131"},{"alias":"MAP2A","entrezGeneId":"4133"},{"alias":"MAP2B","entrezGeneId":"4133"},{"alias":"MAP2C","entrezGeneId":"4133"},{"alias":"MAP6-N","entrezGeneId":"4135"},{"alias":"MTAP6","entrezGeneId":"4135"},{"alias":"N-STOP","entrezGeneId":"4135"},{"alias":"STOP","entrezGeneId":"4135"},{"alias":"DDPAC","entrezGeneId":"4137"},{"alias":"FTDP-17","entrezGeneId":"4137"},{"alias":"MAPTL","entrezGeneId":"4137"},{"alias":"MSTD","entrezGeneId":"4137"},{"alias":"MTBT1","entrezGeneId":"4137"},{"alias":"MTBT2","entrezGeneId":"4137"},{"alias":"PPND","entrezGeneId":"4137"},{"alias":"PPP1R103","entrezGeneId":"4137"},{"alias":"TAU","entrezGeneId":"4137"},{"alias":"MARK","entrezGeneId":"4139"},{"alias":"Par-1c","entrezGeneId":"4139"},{"alias":"Par1c","entrezGeneId":"4139"},{"alias":"CTAK1","entrezGeneId":"4140"},{"alias":"KP78","entrezGeneId":"4140"},{"alias":"Par-1a","entrezGeneId":"4140"},{"alias":"PAR1A","entrezGeneId":"4140"},{"alias":"CMT2U","entrezGeneId":"4141"},{"alias":"ILFS2","entrezGeneId":"4141"},{"alias":"ILLD","entrezGeneId":"4141"},{"alias":"METRS","entrezGeneId":"4141"},{"alias":"MRS","entrezGeneId":"4141"},{"alias":"MTRNS","entrezGeneId":"4141"},{"alias":"SPG70","entrezGeneId":"4141"},{"alias":"MAS","entrezGeneId":"4142"},{"alias":"MGRA","entrezGeneId":"4142"},{"alias":"MAT","entrezGeneId":"4143"},{"alias":"MATA1","entrezGeneId":"4143"},{"alias":"SAMS","entrezGeneId":"4143"},{"alias":"SAMS1","entrezGeneId":"4143"},{"alias":"MATA2","entrezGeneId":"4144"},{"alias":"MATII","entrezGeneId":"4144"},{"alias":"SAMS2","entrezGeneId":"4144"},{"alias":"CHK","entrezGeneId":"4145"},{"alias":"CTK","entrezGeneId":"4145"},{"alias":"HHYLTK","entrezGeneId":"4145"},{"alias":"HYL","entrezGeneId":"4145"},{"alias":"HYLTK","entrezGeneId":"4145"},{"alias":"Lsk","entrezGeneId":"4145"},{"alias":"CMP","entrezGeneId":"4146"},{"alias":"CRTM","entrezGeneId":"4146"},{"alias":"DIPOA","entrezGeneId":"4148"},{"alias":"EDM5","entrezGeneId":"4148"},{"alias":"HOA","entrezGeneId":"4148"},{"alias":"OADIP","entrezGeneId":"4148"},{"alias":"OS2","entrezGeneId":"4148"},{"alias":"bHLHd4","entrezGeneId":"4149"},{"alias":"Pur-1","entrezGeneId":"4150"},{"alias":"PUR1","entrezGeneId":"4150"},{"alias":"SAF-1","entrezGeneId":"4150"},{"alias":"SAF-2","entrezGeneId":"4150"},{"alias":"SAF-3","entrezGeneId":"4150"},{"alias":"ZF87","entrezGeneId":"4150"},{"alias":"Zif87","entrezGeneId":"4150"},{"alias":"ZNF801","entrezGeneId":"4150"},{"alias":"myoglobgin","entrezGeneId":"4151"},{"alias":"PVALB","entrezGeneId":"4151"},{"alias":"CXXC3","entrezGeneId":"4152"},{"alias":"PCM1","entrezGeneId":"4152"},{"alias":"RFT","entrezGeneId":"4152"},{"alias":"COLEC1","entrezGeneId":"4153"},{"alias":"HSMBPC","entrezGeneId":"4153"},{"alias":"MBL","entrezGeneId":"4153"},{"alias":"MBL2D","entrezGeneId":"4153"},{"alias":"MBP","entrezGeneId":"4153"},{"alias":"MBP-C","entrezGeneId":"4153"},{"alias":"MBP1","entrezGeneId":"4153"},{"alias":"MBPD","entrezGeneId":"4153"},{"alias":"EXP","entrezGeneId":"4154"},{"alias":"MBNL","entrezGeneId":"4154"},{"alias":"MBS","entrezGeneId":"4156"},{"alias":"CMM5","entrezGeneId":"4157"},{"alias":"MSH-R","entrezGeneId":"4157"},{"alias":"SHEP2","entrezGeneId":"4157"},{"alias":"ACTHR","entrezGeneId":"4158"},{"alias":"BMIQ9","entrezGeneId":"4159"},{"alias":"MC3","entrezGeneId":"4159"},{"alias":"MC3-R","entrezGeneId":"4159"},{"alias":"OB20","entrezGeneId":"4159"},{"alias":"OQTL","entrezGeneId":"4159"},{"alias":"MC2","entrezGeneId":"4161"},{"alias":"CD146","entrezGeneId":"4162"},{"alias":"MUC18","entrezGeneId":"4162"},{"alias":"MCC1","entrezGeneId":"4163"},{"alias":"MCDC1","entrezGeneId":"4166"},{"alias":"CAPED","entrezGeneId":"4167"},{"alias":"NCMD","entrezGeneId":"4167"},{"alias":"ARHGEF21","entrezGeneId":"4168"},{"alias":"DBL","entrezGeneId":"4168"},{"alias":"bcl2-L-3","entrezGeneId":"4170"},{"alias":"BCL2L3","entrezGeneId":"4170"},{"alias":"EAT","entrezGeneId":"4170"},{"alias":"Mcl-1","entrezGeneId":"4170"},{"alias":"MCL1-ES","entrezGeneId":"4170"},{"alias":"mcl1/EAT","entrezGeneId":"4170"},{"alias":"MCL1L","entrezGeneId":"4170"},{"alias":"MCL1S","entrezGeneId":"4170"},{"alias":"TM","entrezGeneId":"4170"},{"alias":"BM28","entrezGeneId":"4171"},{"alias":"CCNL1","entrezGeneId":"4171"},{"alias":"cdc19","entrezGeneId":"4171"},{"alias":"CDCL1","entrezGeneId":"4171"},{"alias":"D3S3194","entrezGeneId":"4171"},{"alias":"DFNA70","entrezGeneId":"4171"},{"alias":"MITOTIN","entrezGeneId":"4171"},{"alias":"HCC5","entrezGeneId":"4172"},{"alias":"P1-MCM3","entrezGeneId":"4172"},{"alias":"P1.h","entrezGeneId":"4172"},{"alias":"RLFB","entrezGeneId":"4172"},{"alias":"CDC21","entrezGeneId":"4173"},{"alias":"CDC54","entrezGeneId":"4173"},{"alias":"hCdc21","entrezGeneId":"4173"},{"alias":"IMD54","entrezGeneId":"4173"},{"alias":"NKCD","entrezGeneId":"4173"},{"alias":"NKGCD","entrezGeneId":"4173"},{"alias":"P1-CDC21","entrezGeneId":"4173"},{"alias":"CDC46","entrezGeneId":"4174"},{"alias":"MGORS8","entrezGeneId":"4174"},{"alias":"P1-CDC46","entrezGeneId":"4174"},{"alias":"MCG40308","entrezGeneId":"4175"},{"alias":"Mis5","entrezGeneId":"4175"},{"alias":"P105MCM","entrezGeneId":"4175"},{"alias":"CDC47","entrezGeneId":"4176"},{"alias":"MCM2","entrezGeneId":"4176"},{"alias":"P1.1-MCM3","entrezGeneId":"4176"},{"alias":"P1CDC47","entrezGeneId":"4176"},{"alias":"P85MCM","entrezGeneId":"4176"},{"alias":"PNAS146","entrezGeneId":"4176"},{"alias":"PPP1R104","entrezGeneId":"4176"},{"alias":"AHUS2","entrezGeneId":"4179"},{"alias":"MCP","entrezGeneId":"4179"},{"alias":"MIC10","entrezGeneId":"4179"},{"alias":"TLX","entrezGeneId":"4179"},{"alias":"TRA2.10","entrezGeneId":"4179"},{"alias":"CD46P","entrezGeneId":"4182"},{"alias":"MCPL","entrezGeneId":"4182"},{"alias":"MCPL1","entrezGeneId":"4182"},{"alias":"MRXS4","entrezGeneId":"4183"},{"alias":"HSMCSGEN1","entrezGeneId":"4184"},{"alias":"MCS","entrezGeneId":"4184"},{"alias":"MCSP","entrezGeneId":"4184"},{"alias":"MDC","entrezGeneId":"4185"},{"alias":"I-MF","entrezGeneId":"4188"},{"alias":"I-mfa","entrezGeneId":"4188"},{"alias":"ERdj4","entrezGeneId":"4189"},{"alias":"MDG-1","entrezGeneId":"4189"},{"alias":"MDG1","entrezGeneId":"4189"},{"alias":"MST049","entrezGeneId":"4189"},{"alias":"MSTP049","entrezGeneId":"4189"},{"alias":"HEL-S-32","entrezGeneId":"4190"},{"alias":"MDH-s","entrezGeneId":"4190"},{"alias":"MDHA","entrezGeneId":"4190"},{"alias":"MGC:1375","entrezGeneId":"4190"},{"alias":"MOR2","entrezGeneId":"4190"},{"alias":"EIEE51","entrezGeneId":"4191"},{"alias":"M-MDH","entrezGeneId":"4191"},{"alias":"MDH","entrezGeneId":"4191"},{"alias":"MGC:3559","entrezGeneId":"4191"},{"alias":"MOR1","entrezGeneId":"4191"},{"alias":"ARAP","entrezGeneId":"4192"},{"alias":"MK","entrezGeneId":"4192"},{"alias":"NEGF2","entrezGeneId":"4192"},{"alias":"ACTFS","entrezGeneId":"4193"},{"alias":"hdm2","entrezGeneId":"4193"},{"alias":"HDMX","entrezGeneId":"4193"},{"alias":"HDMX","entrezGeneId":"4194"},{"alias":"MDMX","entrezGeneId":"4194"},{"alias":"MRP1","entrezGeneId":"4194"},{"alias":"NIPA2","entrezGeneId":"4195"},{"alias":"HUMNDME","entrezGeneId":"4199"},{"alias":"MES","entrezGeneId":"4199"},{"alias":"ODS1","entrezGeneId":"4200"},{"alias":"HYS","entrezGeneId":"4201"},{"alias":"MEA","entrezGeneId":"4201"},{"alias":"AUTSX3","entrezGeneId":"4204"},{"alias":"MRX16","entrezGeneId":"4204"},{"alias":"MRX79","entrezGeneId":"4204"},{"alias":"MRXS13","entrezGeneId":"4204"},{"alias":"MRXSL","entrezGeneId":"4204"},{"alias":"PPMX","entrezGeneId":"4204"},{"alias":"RS","entrezGeneId":"4204"},{"alias":"RTS","entrezGeneId":"4204"},{"alias":"RTT","entrezGeneId":"4204"},{"alias":"ADCAD1","entrezGeneId":"4205"},{"alias":"mef2","entrezGeneId":"4205"},{"alias":"RSRFC4","entrezGeneId":"4205"},{"alias":"RSRFC9","entrezGeneId":"4205"},{"alias":"MEF2AP","entrezGeneId":"4206"},{"alias":"LOC729991-MEF2B","entrezGeneId":"4207"},{"alias":"MEF2B","entrezGeneId":"4207"},{"alias":"MEF2BNB-MEF2B","entrezGeneId":"4207"},{"alias":"C5DELq14.3","entrezGeneId":"4208"},{"alias":"DEL5q14.3","entrezGeneId":"4208"},{"alias":"FMF","entrezGeneId":"4210"},{"alias":"MEF","entrezGeneId":"4210"},{"alias":"TRIM20","entrezGeneId":"4210"},{"alias":"CPCMR","entrezGeneId":"4212"},{"alias":"HsT18361","entrezGeneId":"4212"},{"alias":"MRG1","entrezGeneId":"4212"},{"alias":"MEIS3","entrezGeneId":"4213"},{"alias":"MEIS4","entrezGeneId":"4213"},{"alias":"MRG2","entrezGeneId":"4213"},{"alias":"MAPKKK1","entrezGeneId":"4214"},{"alias":"MEKK","entrezGeneId":"4214"},{"alias":"MEKK 1","entrezGeneId":"4214"},{"alias":"MEKK1","entrezGeneId":"4214"},{"alias":"SRXY6","entrezGeneId":"4214"},{"alias":"MAPKKK3","entrezGeneId":"4215"},{"alias":"MEKK3","entrezGeneId":"4215"},{"alias":"MAPKKK4","entrezGeneId":"4216"},{"alias":"MEKK 4","entrezGeneId":"4216"},{"alias":"MEKK4","entrezGeneId":"4216"},{"alias":"MTK1","entrezGeneId":"4216"},{"alias":"PRO0412","entrezGeneId":"4216"},{"alias":"ASK1","entrezGeneId":"4217"},{"alias":"MAPKKK5","entrezGeneId":"4217"},{"alias":"MEKK5","entrezGeneId":"4217"},{"alias":"MEL","entrezGeneId":"4218"},{"alias":"RAB8","entrezGeneId":"4218"},{"alias":"MEAI","entrezGeneId":"4221"},{"alias":"SCG2","entrezGeneId":"4221"},{"alias":"KFS2","entrezGeneId":"4222"},{"alias":"MOX1","entrezGeneId":"4222"},{"alias":"GAX","entrezGeneId":"4223"},{"alias":"MOX2","entrezGeneId":"4223"},{"alias":"PPHA","entrezGeneId":"4224"},{"alias":"PEG1","entrezGeneId":"4232"},{"alias":"AUTS9","entrezGeneId":"4233"},{"alias":"c-Met","entrezGeneId":"4233"},{"alias":"DFNB97","entrezGeneId":"4233"},{"alias":"HGFR","entrezGeneId":"4233"},{"alias":"RCCP2","entrezGeneId":"4233"},{"alias":"C12orf1","entrezGeneId":"4234"},{"alias":"TRM8","entrezGeneId":"4234"},{"alias":"TRMT8","entrezGeneId":"4234"},{"alias":"YDL201w","entrezGeneId":"4234"},{"alias":"AMP","entrezGeneId":"4236"},{"alias":"MAGP","entrezGeneId":"4237"},{"alias":"MAGP-1","entrezGeneId":"4237"},{"alias":"MAGP1","entrezGeneId":"4237"},{"alias":"BA46","entrezGeneId":"4240"},{"alias":"EDIL1","entrezGeneId":"4240"},{"alias":"HMFG","entrezGeneId":"4240"},{"alias":"hP47","entrezGeneId":"4240"},{"alias":"HsT19888","entrezGeneId":"4240"},{"alias":"MFG-E8","entrezGeneId":"4240"},{"alias":"MFGM","entrezGeneId":"4240"},{"alias":"OAcGD3S","entrezGeneId":"4240"},{"alias":"SED1","entrezGeneId":"4240"},{"alias":"SPAG10","entrezGeneId":"4240"},{"alias":"CD228","entrezGeneId":"4241"},{"alias":"MAP97","entrezGeneId":"4241"},{"alias":"MFI2","entrezGeneId":"4241"},{"alias":"MTf","entrezGeneId":"4241"},{"alias":"MTF1","entrezGeneId":"4241"},{"alias":"GLCNAC-TI","entrezGeneId":"4245"},{"alias":"GLCT1","entrezGeneId":"4245"},{"alias":"GLYT1","entrezGeneId":"4245"},{"alias":"GNT-1","entrezGeneId":"4245"},{"alias":"GNT-I","entrezGeneId":"4245"},{"alias":"GnTI","entrezGeneId":"4245"},{"alias":"MGAT","entrezGeneId":"4245"},{"alias":"LPHC","entrezGeneId":"4246"},{"alias":"LPNC","entrezGeneId":"4246"},{"alias":"MGB2","entrezGeneId":"4246"},{"alias":"UGB3","entrezGeneId":"4246"},{"alias":"CDG2A","entrezGeneId":"4247"},{"alias":"CDGS2","entrezGeneId":"4247"},{"alias":"GLCNACTII","entrezGeneId":"4247"},{"alias":"GNT-II","entrezGeneId":"4247"},{"alias":"GNT2","entrezGeneId":"4247"},{"alias":"GNT-III","entrezGeneId":"4248"},{"alias":"GNT3","entrezGeneId":"4248"},{"alias":"GNT-V","entrezGeneId":"4249"},{"alias":"GNT-VA","entrezGeneId":"4249"},{"alias":"MGB1","entrezGeneId":"4250"},{"alias":"UGB2","entrezGeneId":"4250"},{"alias":"CTAGE5","entrezGeneId":"4253"},{"alias":"MEA6","entrezGeneId":"4253"},{"alias":"MGEA","entrezGeneId":"4253"},{"alias":"MGEA11","entrezGeneId":"4253"},{"alias":"MGEA6","entrezGeneId":"4253"},{"alias":"DCUA","entrezGeneId":"4254"},{"alias":"DFNA69","entrezGeneId":"4254"},{"alias":"FPH2","entrezGeneId":"4254"},{"alias":"FPHH","entrezGeneId":"4254"},{"alias":"Kitl","entrezGeneId":"4254"},{"alias":"KL-1","entrezGeneId":"4254"},{"alias":"MGF","entrezGeneId":"4254"},{"alias":"SCF","entrezGeneId":"4254"},{"alias":"SF","entrezGeneId":"4254"},{"alias":"SHEP7","entrezGeneId":"4254"},{"alias":"SLF","entrezGeneId":"4254"},{"alias":"GIG36","entrezGeneId":"4256"},{"alias":"MGLAP","entrezGeneId":"4256"},{"alias":"NTI","entrezGeneId":"4256"},{"alias":"GST12","entrezGeneId":"4257"},{"alias":"MGST","entrezGeneId":"4257"},{"alias":"MGST-I","entrezGeneId":"4257"},{"alias":"GST2","entrezGeneId":"4258"},{"alias":"MGST-II","entrezGeneId":"4258"},{"alias":"GST-III","entrezGeneId":"4259"},{"alias":"C2TA","entrezGeneId":"4261"},{"alias":"CIITAIV","entrezGeneId":"4261"},{"alias":"MHC2TA","entrezGeneId":"4261"},{"alias":"NLRA","entrezGeneId":"4261"},{"alias":"HBA71","entrezGeneId":"4267"},{"alias":"MIC2","entrezGeneId":"4267"},{"alias":"MIC2X","entrezGeneId":"4267"},{"alias":"MIC2Y","entrezGeneId":"4267"},{"alias":"MSK5X","entrezGeneId":"4267"},{"alias":"PERB11.2","entrezGeneId":"4277"},{"alias":"PERB11.4","entrezGeneId":"4279"},{"alias":"dJ377H14.7","entrezGeneId":"4280"},{"alias":"PERB11.5","entrezGeneId":"4280"},{"alias":"BBBG1","entrezGeneId":"4281"},{"alias":"FXY","entrezGeneId":"4281"},{"alias":"GBBB1","entrezGeneId":"4281"},{"alias":"MIDIN","entrezGeneId":"4281"},{"alias":"OGS1","entrezGeneId":"4281"},{"alias":"OS","entrezGeneId":"4281"},{"alias":"OSX","entrezGeneId":"4281"},{"alias":"RNF59","entrezGeneId":"4281"},{"alias":"TRIM18","entrezGeneId":"4281"},{"alias":"XPRF","entrezGeneId":"4281"},{"alias":"ZNFXY","entrezGeneId":"4281"},{"alias":"GIF","entrezGeneId":"4282"},{"alias":"GLIF","entrezGeneId":"4282"},{"alias":"MMIF","entrezGeneId":"4282"},{"alias":"CMK","entrezGeneId":"4283"},{"alias":"crg-10","entrezGeneId":"4283"},{"alias":"Humig","entrezGeneId":"4283"},{"alias":"MIG","entrezGeneId":"4283"},{"alias":"SCYB9","entrezGeneId":"4283"},{"alias":"AQP0","entrezGeneId":"4284"},{"alias":"CTRCT15","entrezGeneId":"4284"},{"alias":"LIM1","entrezGeneId":"4284"},{"alias":"MIP26","entrezGeneId":"4284"},{"alias":"MP26","entrezGeneId":"4284"},{"alias":"COXPD31","entrezGeneId":"4285"},{"alias":"HMIP","entrezGeneId":"4285"},{"alias":"MIP","entrezGeneId":"4285"},{"alias":"bHLHe32","entrezGeneId":"4286"},{"alias":"CMM8","entrezGeneId":"4286"},{"alias":"COMMAD","entrezGeneId":"4286"},{"alias":"MI","entrezGeneId":"4286"},{"alias":"WS2","entrezGeneId":"4286"},{"alias":"WS2A","entrezGeneId":"4286"},{"alias":"AT3","entrezGeneId":"4287"},{"alias":"ATX3","entrezGeneId":"4287"},{"alias":"JOS","entrezGeneId":"4287"},{"alias":"MJD","entrezGeneId":"4287"},{"alias":"MJD1","entrezGeneId":"4287"},{"alias":"SCA3","entrezGeneId":"4287"},{"alias":"KIA","entrezGeneId":"4288"},{"alias":"MIB-","entrezGeneId":"4288"},{"alias":"MIB-1","entrezGeneId":"4288"},{"alias":"PPP1R105","entrezGeneId":"4288"},{"alias":"TWA2","entrezGeneId":"4289"},{"alias":"COCA2","entrezGeneId":"4292"},{"alias":"FCC2","entrezGeneId":"4292"},{"alias":"hMLH1","entrezGeneId":"4292"},{"alias":"HNPCC","entrezGeneId":"4292"},{"alias":"HNPCC2","entrezGeneId":"4292"},{"alias":"MEKK9","entrezGeneId":"4293"},{"alias":"MLK1","entrezGeneId":"4293"},{"alias":"PRKE1","entrezGeneId":"4293"},{"alias":"MEKK10","entrezGeneId":"4294"},{"alias":"MLK2","entrezGeneId":"4294"},{"alias":"MST","entrezGeneId":"4294"},{"alias":"MEKK11","entrezGeneId":"4296"},{"alias":"MLK-3","entrezGeneId":"4296"},{"alias":"MLK3","entrezGeneId":"4296"},{"alias":"PTK1","entrezGeneId":"4296"},{"alias":"SPRK","entrezGeneId":"4296"},{"alias":"ALL-1","entrezGeneId":"4297"},{"alias":"CXXC7","entrezGeneId":"4297"},{"alias":"HRX","entrezGeneId":"4297"},{"alias":"HTRX1","entrezGeneId":"4297"},{"alias":"MLL","entrezGeneId":"4297"},{"alias":"MLL1","entrezGeneId":"4297"},{"alias":"MLL1A","entrezGeneId":"4297"},{"alias":"TRX1","entrezGeneId":"4297"},{"alias":"WDSTS","entrezGeneId":"4297"},{"alias":"ENL","entrezGeneId":"4298"},{"alias":"LTG19","entrezGeneId":"4298"},{"alias":"YEATS1","entrezGeneId":"4298"},{"alias":"AF4","entrezGeneId":"4299"},{"alias":"MLLT2","entrezGeneId":"4299"},{"alias":"PBM1","entrezGeneId":"4299"},{"alias":"AF9","entrezGeneId":"4300"},{"alias":"YEATS3","entrezGeneId":"4300"},{"alias":"AF6","entrezGeneId":"4301"},{"alias":"l-afadin","entrezGeneId":"4301"},{"alias":"MLL-AF6","entrezGeneId":"4301"},{"alias":"MLLT4","entrezGeneId":"4301"},{"alias":"AF17","entrezGeneId":"4302"},{"alias":"AFX","entrezGeneId":"4303"},{"alias":"AFX1","entrezGeneId":"4303"},{"alias":"MLLT7","entrezGeneId":"4303"},{"alias":"MCR","entrezGeneId":"4306"},{"alias":"MLR","entrezGeneId":"4306"},{"alias":"MR","entrezGeneId":"4306"},{"alias":"NR3C2VIT","entrezGeneId":"4306"},{"alias":"CSNB1C","entrezGeneId":"4308"},{"alias":"LTRPC1","entrezGeneId":"4308"},{"alias":"MLSN1","entrezGeneId":"4308"},{"alias":"CALLA","entrezGeneId":"4311"},{"alias":"CD10","entrezGeneId":"4311"},{"alias":"CMT2T","entrezGeneId":"4311"},{"alias":"NEP","entrezGeneId":"4311"},{"alias":"SCA43","entrezGeneId":"4311"},{"alias":"SFE","entrezGeneId":"4311"},{"alias":"CLG","entrezGeneId":"4312"},{"alias":"CLGN","entrezGeneId":"4312"},{"alias":"CLG4","entrezGeneId":"4313"},{"alias":"CLG4A","entrezGeneId":"4313"},{"alias":"MMP-2","entrezGeneId":"4313"},{"alias":"MMP-II","entrezGeneId":"4313"},{"alias":"MONA","entrezGeneId":"4313"},{"alias":"TBE-1","entrezGeneId":"4313"},{"alias":"CHDS6","entrezGeneId":"4314"},{"alias":"MMP-3","entrezGeneId":"4314"},{"alias":"SL-1","entrezGeneId":"4314"},{"alias":"STMY","entrezGeneId":"4314"},{"alias":"STMY1","entrezGeneId":"4314"},{"alias":"STR1","entrezGeneId":"4314"},{"alias":"MMP-7","entrezGeneId":"4316"},{"alias":"MPSL1","entrezGeneId":"4316"},{"alias":"PUMP-1","entrezGeneId":"4316"},{"alias":"CLG1","entrezGeneId":"4317"},{"alias":"HNC","entrezGeneId":"4317"},{"alias":"MMP-8","entrezGeneId":"4317"},{"alias":"PMNL-CL","entrezGeneId":"4317"},{"alias":"CLG4B","entrezGeneId":"4318"},{"alias":"GELB","entrezGeneId":"4318"},{"alias":"MANDP2","entrezGeneId":"4318"},{"alias":"MMP-9","entrezGeneId":"4318"},{"alias":"SL-2","entrezGeneId":"4319"},{"alias":"STMY2","entrezGeneId":"4319"},{"alias":"SL-3","entrezGeneId":"4320"},{"alias":"ST3","entrezGeneId":"4320"},{"alias":"STMY3","entrezGeneId":"4320"},{"alias":"HME","entrezGeneId":"4321"},{"alias":"ME","entrezGeneId":"4321"},{"alias":"MME","entrezGeneId":"4321"},{"alias":"MMP-12","entrezGeneId":"4321"},{"alias":"CLG3","entrezGeneId":"4322"},{"alias":"MANDP1","entrezGeneId":"4322"},{"alias":"MDST","entrezGeneId":"4322"},{"alias":"MMP-13","entrezGeneId":"4322"},{"alias":"MMP-14","entrezGeneId":"4323"},{"alias":"MMP-X1","entrezGeneId":"4323"},{"alias":"MT-MMP","entrezGeneId":"4323"},{"alias":"MT-MMP 1","entrezGeneId":"4323"},{"alias":"MT1-MMP","entrezGeneId":"4323"},{"alias":"MT1MMP","entrezGeneId":"4323"},{"alias":"MTMMP1","entrezGeneId":"4323"},{"alias":"WNCHRS","entrezGeneId":"4323"},{"alias":"MMP-15","entrezGeneId":"4324"},{"alias":"MT2-MMP","entrezGeneId":"4324"},{"alias":"MT2MMP","entrezGeneId":"4324"},{"alias":"MTMMP2","entrezGeneId":"4324"},{"alias":"SMCP-2","entrezGeneId":"4324"},{"alias":"C8orf57","entrezGeneId":"4325"},{"alias":"MMP-X2","entrezGeneId":"4325"},{"alias":"MT-MMP2","entrezGeneId":"4325"},{"alias":"MT-MMP3","entrezGeneId":"4325"},{"alias":"MT3-MMP","entrezGeneId":"4325"},{"alias":"MMP-17","entrezGeneId":"4326"},{"alias":"MT4-MMP","entrezGeneId":"4326"},{"alias":"MT4MMP","entrezGeneId":"4326"},{"alias":"MTMMP4","entrezGeneId":"4326"},{"alias":"CODA","entrezGeneId":"4327"},{"alias":"MMP18","entrezGeneId":"4327"},{"alias":"RASI-1","entrezGeneId":"4327"},{"alias":"MMSADHA","entrezGeneId":"4329"},{"alias":"MMSDH","entrezGeneId":"4329"},{"alias":"dJ353E16.2","entrezGeneId":"4330"},{"alias":"MGCR","entrezGeneId":"4330"},{"alias":"MGCR1","entrezGeneId":"4330"},{"alias":"MGCR1-PEN","entrezGeneId":"4330"},{"alias":"CAP35","entrezGeneId":"4331"},{"alias":"MAT1","entrezGeneId":"4331"},{"alias":"RNF66","entrezGeneId":"4331"},{"alias":"TFB3","entrezGeneId":"4331"},{"alias":"PYHIN3","entrezGeneId":"4332"},{"alias":"bHLHd3","entrezGeneId":"4335"},{"alias":"MAD6","entrezGeneId":"4335"},{"alias":"MXD6","entrezGeneId":"4335"},{"alias":"ROX","entrezGeneId":"4335"},{"alias":"MIG11","entrezGeneId":"4337"},{"alias":"MOCOD","entrezGeneId":"4337"},{"alias":"MOCS1A","entrezGeneId":"4337"},{"alias":"MOCS1B","entrezGeneId":"4337"},{"alias":"MCBPE","entrezGeneId":"4338"},{"alias":"MOCO1","entrezGeneId":"4338"},{"alias":"MOCODB","entrezGeneId":"4338"},{"alias":"MPTS","entrezGeneId":"4338"},{"alias":"BTN6","entrezGeneId":"4340"},{"alias":"BTNL11","entrezGeneId":"4340"},{"alias":"MOGIG2","entrezGeneId":"4340"},{"alias":"NRCLP7","entrezGeneId":"4340"},{"alias":"MSV","entrezGeneId":"4342"},{"alias":"fSAP113","entrezGeneId":"4343"},{"alias":"gb110","entrezGeneId":"4343"},{"alias":"MOX1","entrezGeneId":"4345"},{"alias":"MOX2","entrezGeneId":"4345"},{"alias":"MRC","entrezGeneId":"4345"},{"alias":"OX-2","entrezGeneId":"4345"},{"alias":"AAG","entrezGeneId":"4350"},{"alias":"ADPG","entrezGeneId":"4350"},{"alias":"anpg","entrezGeneId":"4350"},{"alias":"APNG","entrezGeneId":"4350"},{"alias":"CRA36.1","entrezGeneId":"4350"},{"alias":"MDG","entrezGeneId":"4350"},{"alias":"Mid1","entrezGeneId":"4350"},{"alias":"PIG11","entrezGeneId":"4350"},{"alias":"PIG16","entrezGeneId":"4350"},{"alias":"CDG1B","entrezGeneId":"4351"},{"alias":"PMI","entrezGeneId":"4351"},{"alias":"PMI1","entrezGeneId":"4351"},{"alias":"C-MPL","entrezGeneId":"4352"},{"alias":"CD110","entrezGeneId":"4352"},{"alias":"MPLV","entrezGeneId":"4352"},{"alias":"THCYT2","entrezGeneId":"4352"},{"alias":"TPOR","entrezGeneId":"4352"},{"alias":"AAG12","entrezGeneId":"4354"},{"alias":"DXS552E","entrezGeneId":"4354"},{"alias":"EMP55","entrezGeneId":"4354"},{"alias":"MRG1","entrezGeneId":"4354"},{"alias":"PEMP","entrezGeneId":"4354"},{"alias":"DLG2","entrezGeneId":"4355"},{"alias":"DLG3","entrezGeneId":"4356"},{"alias":"MST","entrezGeneId":"4357"},{"alias":"TST2","entrezGeneId":"4357"},{"alias":"TUM1","entrezGeneId":"4357"},{"alias":"MTDPS6","entrezGeneId":"4358"},{"alias":"SYM1","entrezGeneId":"4358"},{"alias":"CHM","entrezGeneId":"4359"},{"alias":"CMT1","entrezGeneId":"4359"},{"alias":"CMT1B","entrezGeneId":"4359"},{"alias":"CMT2I","entrezGeneId":"4359"},{"alias":"CMT2J","entrezGeneId":"4359"},{"alias":"CMT4E","entrezGeneId":"4359"},{"alias":"CMTDI3","entrezGeneId":"4359"},{"alias":"CMTDID","entrezGeneId":"4359"},{"alias":"DSS","entrezGeneId":"4359"},{"alias":"HMSNIB","entrezGeneId":"4359"},{"alias":"MPP","entrezGeneId":"4359"},{"alias":"P0","entrezGeneId":"4359"},{"alias":"bA541I19.1","entrezGeneId":"4360"},{"alias":"CD206","entrezGeneId":"4360"},{"alias":"CLEC13D","entrezGeneId":"4360"},{"alias":"CLEC13DL","entrezGeneId":"4360"},{"alias":"hMR","entrezGeneId":"4360"},{"alias":"MMR","entrezGeneId":"4360"},{"alias":"MRC1L1","entrezGeneId":"4360"},{"alias":"ATLD","entrezGeneId":"4361"},{"alias":"HNGS1","entrezGeneId":"4361"},{"alias":"MRE11A","entrezGeneId":"4361"},{"alias":"MRE11B","entrezGeneId":"4361"},{"alias":"hMRE11B","entrezGeneId":"4362"},{"alias":"MRE11B","entrezGeneId":"4362"},{"alias":"ABC29","entrezGeneId":"4363"},{"alias":"ABCC","entrezGeneId":"4363"},{"alias":"GS-X","entrezGeneId":"4363"},{"alias":"MRP","entrezGeneId":"4363"},{"alias":"MRP1","entrezGeneId":"4363"},{"alias":"CHRS","entrezGeneId":"4364"},{"alias":"MS1","entrezGeneId":"4397"},{"alias":"MMI-alpha","entrezGeneId":"4430"},{"alias":"MMIa","entrezGeneId":"4430"},{"alias":"MYH-1c","entrezGeneId":"4430"},{"alias":"myr1","entrezGeneId":"4430"},{"alias":"MSG1","entrezGeneId":"4435"},{"alias":"COCA1","entrezGeneId":"4436"},{"alias":"FCC1","entrezGeneId":"4436"},{"alias":"HNPCC","entrezGeneId":"4436"},{"alias":"HNPCC1","entrezGeneId":"4436"},{"alias":"LCFS2","entrezGeneId":"4436"},{"alias":"DUP","entrezGeneId":"4437"},{"alias":"FAP4","entrezGeneId":"4437"},{"alias":"MRP1","entrezGeneId":"4437"},{"alias":"G7","entrezGeneId":"4439"},{"alias":"MUTSH5","entrezGeneId":"4439"},{"alias":"NG23","entrezGeneId":"4439"},{"alias":"POF13","entrezGeneId":"4439"},{"alias":"HPC13","entrezGeneId":"4477"},{"alias":"IGBF","entrezGeneId":"4477"},{"alias":"MSP","entrezGeneId":"4477"},{"alias":"MSPB","entrezGeneId":"4477"},{"alias":"PN44","entrezGeneId":"4477"},{"alias":"PRPS","entrezGeneId":"4477"},{"alias":"PSP","entrezGeneId":"4477"},{"alias":"PSP-94","entrezGeneId":"4477"},{"alias":"PSP57","entrezGeneId":"4477"},{"alias":"PSP94","entrezGeneId":"4477"},{"alias":"HEL70","entrezGeneId":"4478"},{"alias":"IMD50","entrezGeneId":"4478"},{"alias":"MSNL1","entrezGeneId":"4479"},{"alias":"CD204","entrezGeneId":"4481"},{"alias":"phSR1","entrezGeneId":"4481"},{"alias":"phSR2","entrezGeneId":"4481"},{"alias":"SCARA1","entrezGeneId":"4481"},{"alias":"SR-A","entrezGeneId":"4481"},{"alias":"SR-AI","entrezGeneId":"4481"},{"alias":"SR-AII","entrezGeneId":"4481"},{"alias":"SR-AIII","entrezGeneId":"4481"},{"alias":"SRA","entrezGeneId":"4481"},{"alias":"PMSR","entrezGeneId":"4482"},{"alias":"D3F15S2","entrezGeneId":"4485"},{"alias":"DNF15S2","entrezGeneId":"4485"},{"alias":"HGFL","entrezGeneId":"4485"},{"alias":"MSP","entrezGeneId":"4485"},{"alias":"NF15S2","entrezGeneId":"4485"},{"alias":"CD136","entrezGeneId":"4486"},{"alias":"CDw136","entrezGeneId":"4486"},{"alias":"NPCA3","entrezGeneId":"4486"},{"alias":"PTK8","entrezGeneId":"4486"},{"alias":"RON","entrezGeneId":"4486"},{"alias":"ECTD3","entrezGeneId":"4487"},{"alias":"HOX7","entrezGeneId":"4487"},{"alias":"HYD1","entrezGeneId":"4487"},{"alias":"STHAG1","entrezGeneId":"4487"},{"alias":"CRS2","entrezGeneId":"4488"},{"alias":"FPP","entrezGeneId":"4488"},{"alias":"HOX8","entrezGeneId":"4488"},{"alias":"MSH","entrezGeneId":"4488"},{"alias":"PFM","entrezGeneId":"4488"},{"alias":"PFM1","entrezGeneId":"4488"},{"alias":"MT-1A","entrezGeneId":"4489"},{"alias":"MT-IA","entrezGeneId":"4489"},{"alias":"MT1","entrezGeneId":"4489"},{"alias":"MT1S","entrezGeneId":"4489"},{"alias":"MTC","entrezGeneId":"4489"},{"alias":"MT-1B","entrezGeneId":"4490"},{"alias":"MT-IB","entrezGeneId":"4490"},{"alias":"MT1","entrezGeneId":"4490"},{"alias":"MT1Q","entrezGeneId":"4490"},{"alias":"MTP","entrezGeneId":"4490"},{"alias":"MT-1E","entrezGeneId":"4493"},{"alias":"MT-IE","entrezGeneId":"4493"},{"alias":"MT1","entrezGeneId":"4493"},{"alias":"MTD","entrezGeneId":"4493"},{"alias":"MT1","entrezGeneId":"4494"},{"alias":"MT1","entrezGeneId":"4495"},{"alias":"MT1K","entrezGeneId":"4495"},{"alias":"MT-0","entrezGeneId":"4496"},{"alias":"MT-1H","entrezGeneId":"4496"},{"alias":"MT-IH","entrezGeneId":"4496"},{"alias":"MT1","entrezGeneId":"4496"},{"alias":"MT1","entrezGeneId":"4498"},{"alias":"MT1J","entrezGeneId":"4498"},{"alias":"MT1NP","entrezGeneId":"4498"},{"alias":"MTB","entrezGeneId":"4498"},{"alias":"MT-1M","entrezGeneId":"4499"},{"alias":"MT-IM","entrezGeneId":"4499"},{"alias":"MT1","entrezGeneId":"4499"},{"alias":"MT1K","entrezGeneId":"4499"},{"alias":"MT1","entrezGeneId":"4500"},{"alias":"MT1R","entrezGeneId":"4500"},{"alias":"MTF","entrezGeneId":"4500"},{"alias":"MT-1l","entrezGeneId":"4501"},{"alias":"MT1","entrezGeneId":"4501"},{"alias":"MT-2","entrezGeneId":"4502"},{"alias":"MT-II","entrezGeneId":"4502"},{"alias":"MT2","entrezGeneId":"4502"},{"alias":"GIF","entrezGeneId":"4504"},{"alias":"GIFB","entrezGeneId":"4504"},{"alias":"GRIF","entrezGeneId":"4504"},{"alias":"ZnMT3","entrezGeneId":"4504"},{"alias":"BDMF","entrezGeneId":"4507"},{"alias":"c86fus","entrezGeneId":"4507"},{"alias":"DMSFH","entrezGeneId":"4507"},{"alias":"DMSMFH","entrezGeneId":"4507"},{"alias":"HEL-249","entrezGeneId":"4507"},{"alias":"LGMBF","entrezGeneId":"4507"},{"alias":"MSAP","entrezGeneId":"4507"},{"alias":"ATPase6","entrezGeneId":"4508"},{"alias":"MTATP6","entrezGeneId":"4508"},{"alias":"ATPase8","entrezGeneId":"4509"},{"alias":"MTATP8","entrezGeneId":"4509"},{"alias":"MTTC","entrezGeneId":"4511"},{"alias":"COI","entrezGeneId":"4512"},{"alias":"MTCO1","entrezGeneId":"4512"},{"alias":"COII","entrezGeneId":"4513"},{"alias":"MTCO2","entrezGeneId":"4513"},{"alias":"COIII","entrezGeneId":"4514"},{"alias":"MTCO3","entrezGeneId":"4514"},{"alias":"P13MTCP1","entrezGeneId":"4515"},{"alias":"p8MTCP1","entrezGeneId":"4515"},{"alias":"MTCYB","entrezGeneId":"4519"},{"alias":"MTF-1","entrezGeneId":"4520"},{"alias":"ZRF","entrezGeneId":"4520"},{"alias":"MTH1","entrezGeneId":"4521"},{"alias":"CIMAH","entrezGeneId":"4522"},{"alias":"MTHFC","entrezGeneId":"4522"},{"alias":"MTHFD","entrezGeneId":"4522"},{"alias":"MTHFDL1","entrezGeneId":"4523"},{"alias":"MTHFDP1","entrezGeneId":"4523"},{"alias":"MTL3","entrezGeneId":"4531"},{"alias":"CNM","entrezGeneId":"4534"},{"alias":"MTMX","entrezGeneId":"4534"},{"alias":"XLMTM","entrezGeneId":"4534"},{"alias":"MTND1","entrezGeneId":"4535"},{"alias":"MTND2","entrezGeneId":"4536"},{"alias":"MTND3","entrezGeneId":"4537"},{"alias":"MTND4","entrezGeneId":"4538"},{"alias":"MTND4L","entrezGeneId":"4539"},{"alias":"MTND5","entrezGeneId":"4540"},{"alias":"MTND6","entrezGeneId":"4541"},{"alias":"MEL-1A-R","entrezGeneId":"4543"},{"alias":"MT1","entrezGeneId":"4543"},{"alias":"FGQTL2","entrezGeneId":"4544"},{"alias":"MEL-1B-R","entrezGeneId":"4544"},{"alias":"MT2","entrezGeneId":"4544"},{"alias":"ABL","entrezGeneId":"4547"},{"alias":"MTP","entrezGeneId":"4547"},{"alias":"cblG","entrezGeneId":"4548"},{"alias":"HMAG","entrezGeneId":"4548"},{"alias":"MS","entrezGeneId":"4548"},{"alias":"MTRNR1","entrezGeneId":"4549"},{"alias":"MTRNR2","entrezGeneId":"4550"},{"alias":"cblE","entrezGeneId":"4552"},{"alias":"MSR","entrezGeneId":"4552"},{"alias":"MTTA","entrezGeneId":"4553"},{"alias":"MTTD","entrezGeneId":"4555"},{"alias":"MTTE","entrezGeneId":"4556"},{"alias":"MTTG","entrezGeneId":"4563"},{"alias":"MTTH","entrezGeneId":"4564"},{"alias":"MTTI","entrezGeneId":"4565"},{"alias":"MTTK","entrezGeneId":"4566"},{"alias":"MTTL1","entrezGeneId":"4567"},{"alias":"MTTL2","entrezGeneId":"4568"},{"alias":"MTTM","entrezGeneId":"4569"},{"alias":"MTTN","entrezGeneId":"4570"},{"alias":"MTTP","entrezGeneId":"4571"},{"alias":"MTTQ","entrezGeneId":"4572"},{"alias":"MTTR","entrezGeneId":"4573"},{"alias":"MTTS1","entrezGeneId":"4574"},{"alias":"MTTS2","entrezGeneId":"4575"},{"alias":"MTTT","entrezGeneId":"4576"},{"alias":"MTTV","entrezGeneId":"4577"},{"alias":"MTTW","entrezGeneId":"4578"},{"alias":"MTTY","entrezGeneId":"4579"},{"alias":"MTX","entrezGeneId":"4580"},{"alias":"MTXN","entrezGeneId":"4580"},{"alias":"MTX1P","entrezGeneId":"4581"},{"alias":"MTXP","entrezGeneId":"4581"},{"alias":"psMTX","entrezGeneId":"4581"},{"alias":"ADMCKD","entrezGeneId":"4582"},{"alias":"ADMCKD1","entrezGeneId":"4582"},{"alias":"CA 15-3","entrezGeneId":"4582"},{"alias":"CD227","entrezGeneId":"4582"},{"alias":"EMA","entrezGeneId":"4582"},{"alias":"H23AG","entrezGeneId":"4582"},{"alias":"KL-6","entrezGeneId":"4582"},{"alias":"MAM6","entrezGeneId":"4582"},{"alias":"MCD","entrezGeneId":"4582"},{"alias":"MCKD","entrezGeneId":"4582"},{"alias":"MCKD1","entrezGeneId":"4582"},{"alias":"MUC-1","entrezGeneId":"4582"},{"alias":"MUC-1/SEC","entrezGeneId":"4582"},{"alias":"MUC-1/X","entrezGeneId":"4582"},{"alias":"MUC1/ZD","entrezGeneId":"4582"},{"alias":"PEM","entrezGeneId":"4582"},{"alias":"PEMT","entrezGeneId":"4582"},{"alias":"PUM","entrezGeneId":"4582"},{"alias":"MLP","entrezGeneId":"4583"},{"alias":"MUC-2","entrezGeneId":"4583"},{"alias":"SMUC","entrezGeneId":"4583"},{"alias":"MUC-3A","entrezGeneId":"4584"},{"alias":"MUC3","entrezGeneId":"4584"},{"alias":"ASGP","entrezGeneId":"4585"},{"alias":"HSA276359","entrezGeneId":"4585"},{"alias":"MUC-4","entrezGeneId":"4585"},{"alias":"leB","entrezGeneId":"4586"},{"alias":"MUC5","entrezGeneId":"4586"},{"alias":"mucin","entrezGeneId":"4586"},{"alias":"TBM","entrezGeneId":"4586"},{"alias":"MUC-6","entrezGeneId":"4588"},{"alias":"MG2","entrezGeneId":"4589"},{"alias":"MUL","entrezGeneId":"4591"},{"alias":"POB1","entrezGeneId":"4591"},{"alias":"TEF3","entrezGeneId":"4591"},{"alias":"CMS9","entrezGeneId":"4593"},{"alias":"FADS","entrezGeneId":"4593"},{"alias":"MCM","entrezGeneId":"4594"},{"alias":"MYH","entrezGeneId":"4595"},{"alias":"FP17780","entrezGeneId":"4597"},{"alias":"MDDase","entrezGeneId":"4597"},{"alias":"MPD","entrezGeneId":"4597"},{"alias":"POROK7","entrezGeneId":"4597"},{"alias":"LRBP","entrezGeneId":"4598"},{"alias":"MK","entrezGeneId":"4598"},{"alias":"MVLK","entrezGeneId":"4598"},{"alias":"POROK3","entrezGeneId":"4598"},{"alias":"IFI-78K","entrezGeneId":"4599"},{"alias":"IFI78","entrezGeneId":"4599"},{"alias":"MX","entrezGeneId":"4599"},{"alias":"MxA","entrezGeneId":"4599"},{"alias":"MXB","entrezGeneId":"4600"},{"alias":"bHLHc11","entrezGeneId":"4601"},{"alias":"MAD2","entrezGeneId":"4601"},{"alias":"MXD2","entrezGeneId":"4601"},{"alias":"MXI","entrezGeneId":"4601"},{"alias":"c-myb","entrezGeneId":"4602"},{"alias":"c-myb_CDS","entrezGeneId":"4602"},{"alias":"Cmyb","entrezGeneId":"4602"},{"alias":"efg","entrezGeneId":"4602"},{"alias":"A-MYB","entrezGeneId":"4603"},{"alias":"AMYB","entrezGeneId":"4603"},{"alias":"LCCS4","entrezGeneId":"4604"},{"alias":"MYBPCC","entrezGeneId":"4604"},{"alias":"MYBPCS","entrezGeneId":"4604"},{"alias":"B-MYB","entrezGeneId":"4605"},{"alias":"BMYB","entrezGeneId":"4605"},{"alias":"MYBPC","entrezGeneId":"4606"},{"alias":"MYBPCF","entrezGeneId":"4606"},{"alias":"CMD1MM","entrezGeneId":"4607"},{"alias":"CMH4","entrezGeneId":"4607"},{"alias":"FHC","entrezGeneId":"4607"},{"alias":"LVNC10","entrezGeneId":"4607"},{"alias":"MYBP-C","entrezGeneId":"4607"},{"alias":"bHLHe39","entrezGeneId":"4609"},{"alias":"c-Myc","entrezGeneId":"4609"},{"alias":"MRTL","entrezGeneId":"4609"},{"alias":"MYCC","entrezGeneId":"4609"},{"alias":"bHLHe38","entrezGeneId":"4610"},{"alias":"L-Myc","entrezGeneId":"4610"},{"alias":"LMYC","entrezGeneId":"4610"},{"alias":"MYCL1","entrezGeneId":"4610"},{"alias":"bHLHe38","entrezGeneId":"4611"},{"alias":"L-MYC2","entrezGeneId":"4611"},{"alias":"MYCL1P1","entrezGeneId":"4611"},{"alias":"MYCL2","entrezGeneId":"4611"},{"alias":"bHLHe37","entrezGeneId":"4613"},{"alias":"MODED","entrezGeneId":"4613"},{"alias":"N-myc","entrezGeneId":"4613"},{"alias":"NMYC","entrezGeneId":"4613"},{"alias":"ODED","entrezGeneId":"4613"},{"alias":"MYD88D","entrezGeneId":"4615"},{"alias":"GADD45BETA","entrezGeneId":"4616"},{"alias":"MYD118","entrezGeneId":"4616"},{"alias":"bHLHc2","entrezGeneId":"4617"},{"alias":"bHLHc4","entrezGeneId":"4618"},{"alias":"CNM3","entrezGeneId":"4618"},{"alias":"MRF4","entrezGeneId":"4618"},{"alias":"myf-6","entrezGeneId":"4618"},{"alias":"HEL71","entrezGeneId":"4619"},{"alias":"MYHa","entrezGeneId":"4619"},{"alias":"MyHC-2x","entrezGeneId":"4619"},{"alias":"MyHC-2X/D","entrezGeneId":"4619"},{"alias":"MYHSA1","entrezGeneId":"4619"},{"alias":"IBM3","entrezGeneId":"4620"},{"alias":"MYH2A","entrezGeneId":"4620"},{"alias":"MYHas8","entrezGeneId":"4620"},{"alias":"MyHC-2A","entrezGeneId":"4620"},{"alias":"MyHC-IIa","entrezGeneId":"4620"},{"alias":"MYHSA2","entrezGeneId":"4620"},{"alias":"MYPOP","entrezGeneId":"4620"},{"alias":"DA2A","entrezGeneId":"4621"},{"alias":"DA2B","entrezGeneId":"4621"},{"alias":"DA8","entrezGeneId":"4621"},{"alias":"HEMHC","entrezGeneId":"4621"},{"alias":"MYHC-EMB","entrezGeneId":"4621"},{"alias":"MYHSE1","entrezGeneId":"4621"},{"alias":"SMHCE","entrezGeneId":"4621"},{"alias":"MYH2B","entrezGeneId":"4622"},{"alias":"MyHC-2B","entrezGeneId":"4622"},{"alias":"MyHC-IIb","entrezGeneId":"4622"},{"alias":"alpha-MHC","entrezGeneId":"4624"},{"alias":"ASD3","entrezGeneId":"4624"},{"alias":"CMD1EE","entrezGeneId":"4624"},{"alias":"CMH14","entrezGeneId":"4624"},{"alias":"MYHC","entrezGeneId":"4624"},{"alias":"MYHCA","entrezGeneId":"4624"},{"alias":"SSS3","entrezGeneId":"4624"},{"alias":"CMD1S","entrezGeneId":"4625"},{"alias":"CMH1","entrezGeneId":"4625"},{"alias":"MPD1","entrezGeneId":"4625"},{"alias":"MYHCB","entrezGeneId":"4625"},{"alias":"SPMD","entrezGeneId":"4625"},{"alias":"SPMM","entrezGeneId":"4625"},{"alias":"DA7","entrezGeneId":"4626"},{"alias":"gtMHC-F","entrezGeneId":"4626"},{"alias":"MyHC-peri","entrezGeneId":"4626"},{"alias":"MyHC-pn","entrezGeneId":"4626"},{"alias":"BDPLT6","entrezGeneId":"4627"},{"alias":"DFNA17","entrezGeneId":"4627"},{"alias":"EPSTS","entrezGeneId":"4627"},{"alias":"FTNS","entrezGeneId":"4627"},{"alias":"MHA","entrezGeneId":"4627"},{"alias":"NMHC-II-A","entrezGeneId":"4627"},{"alias":"NMMHC-IIA","entrezGeneId":"4627"},{"alias":"NMMHCA","entrezGeneId":"4627"},{"alias":"NMMHC-IIB","entrezGeneId":"4628"},{"alias":"NMMHCB","entrezGeneId":"4628"},{"alias":"AAT4","entrezGeneId":"4629"},{"alias":"FAA4","entrezGeneId":"4629"},{"alias":"SMHC","entrezGeneId":"4629"},{"alias":"SMMHC","entrezGeneId":"4629"},{"alias":"MLC1F","entrezGeneId":"4632"},{"alias":"MLC3F","entrezGeneId":"4632"},{"alias":"CMH10","entrezGeneId":"4633"},{"alias":"MLC-2s/v","entrezGeneId":"4633"},{"alias":"MLC2","entrezGeneId":"4633"},{"alias":"CMH8","entrezGeneId":"4634"},{"alias":"MLC-lV/sb","entrezGeneId":"4634"},{"alias":"MLC1SB","entrezGeneId":"4634"},{"alias":"MLC1V","entrezGeneId":"4634"},{"alias":"VLC1","entrezGeneId":"4634"},{"alias":"VLCl","entrezGeneId":"4634"},{"alias":"ALC1","entrezGeneId":"4635"},{"alias":"AMLC","entrezGeneId":"4635"},{"alias":"GT1","entrezGeneId":"4635"},{"alias":"PRO1957","entrezGeneId":"4635"},{"alias":"MYLC2","entrezGeneId":"4636"},{"alias":"ESMLC","entrezGeneId":"4637"},{"alias":"LC17","entrezGeneId":"4637"},{"alias":"LC17-GI","entrezGeneId":"4637"},{"alias":"LC17-NM","entrezGeneId":"4637"},{"alias":"LC17A","entrezGeneId":"4637"},{"alias":"LC17B","entrezGeneId":"4637"},{"alias":"MLC-3","entrezGeneId":"4637"},{"alias":"MLC1SM","entrezGeneId":"4637"},{"alias":"MLC3NM","entrezGeneId":"4637"},{"alias":"MLC3SM","entrezGeneId":"4637"},{"alias":"AAT7","entrezGeneId":"4638"},{"alias":"KRP","entrezGeneId":"4638"},{"alias":"MLCK","entrezGeneId":"4638"},{"alias":"MLCK1","entrezGeneId":"4638"},{"alias":"MLCK108","entrezGeneId":"4638"},{"alias":"MLCK210","entrezGeneId":"4638"},{"alias":"MSTP083","entrezGeneId":"4638"},{"alias":"MYLK1","entrezGeneId":"4638"},{"alias":"smMLCK","entrezGeneId":"4638"},{"alias":"BBMI","entrezGeneId":"4640"},{"alias":"DFNA48","entrezGeneId":"4640"},{"alias":"MIHC","entrezGeneId":"4640"},{"alias":"MYHL","entrezGeneId":"4640"},{"alias":"MMI-beta","entrezGeneId":"4641"},{"alias":"MMIb","entrezGeneId":"4641"},{"alias":"myr2","entrezGeneId":"4641"},{"alias":"NMI","entrezGeneId":"4641"},{"alias":"myr4","entrezGeneId":"4642"},{"alias":"PPP1R108","entrezGeneId":"4642"},{"alias":"FSGS6","entrezGeneId":"4643"},{"alias":"HuncM-IC","entrezGeneId":"4643"},{"alias":"MYO1C","entrezGeneId":"4643"},{"alias":"GS1","entrezGeneId":"4644"},{"alias":"MYH12","entrezGeneId":"4644"},{"alias":"MYO5","entrezGeneId":"4644"},{"alias":"MYR12","entrezGeneId":"4644"},{"alias":"DFNA22","entrezGeneId":"4646"},{"alias":"DFNB37","entrezGeneId":"4646"},{"alias":"Myo6-007","entrezGeneId":"4646"},{"alias":"Myo6-008","entrezGeneId":"4646"},{"alias":"DFNA11","entrezGeneId":"4647"},{"alias":"DFNB2","entrezGeneId":"4647"},{"alias":"MYOVIIA","entrezGeneId":"4647"},{"alias":"MYU7A","entrezGeneId":"4647"},{"alias":"NSRD2","entrezGeneId":"4647"},{"alias":"USH1B","entrezGeneId":"4647"},{"alias":"CELIAC4","entrezGeneId":"4650"},{"alias":"MYR5","entrezGeneId":"4650"},{"alias":"GLC1A","entrezGeneId":"4653"},{"alias":"GPOA","entrezGeneId":"4653"},{"alias":"JOAG","entrezGeneId":"4653"},{"alias":"JOAG1","entrezGeneId":"4653"},{"alias":"TIGR","entrezGeneId":"4653"},{"alias":"bHLHc1","entrezGeneId":"4654"},{"alias":"MYF3","entrezGeneId":"4654"},{"alias":"MYOD","entrezGeneId":"4654"},{"alias":"PUM","entrezGeneId":"4654"},{"alias":"bHLHc3","entrezGeneId":"4656"},{"alias":"myf-4","entrezGeneId":"4656"},{"alias":"MYF4","entrezGeneId":"4656"},{"alias":"BED","entrezGeneId":"4657"},{"alias":"M130","entrezGeneId":"4659"},{"alias":"MBS","entrezGeneId":"4659"},{"alias":"MYPT1","entrezGeneId":"4659"},{"alias":"MYPT2","entrezGeneId":"4660"},{"alias":"PP1bp55","entrezGeneId":"4660"},{"alias":"C20orf36","entrezGeneId":"4661"},{"alias":"MTF1","entrezGeneId":"4661"},{"alias":"MYTI","entrezGeneId":"4661"},{"alias":"NZF2","entrezGeneId":"4661"},{"alias":"PLPB1","entrezGeneId":"4661"},{"alias":"ZC2H2C1","entrezGeneId":"4661"},{"alias":"ZC2HC4A","entrezGeneId":"4661"},{"alias":"MADER","entrezGeneId":"4665"},{"alias":"HSD48","entrezGeneId":"4666"},{"alias":"NAC-alpha","entrezGeneId":"4666"},{"alias":"NACA1","entrezGeneId":"4666"},{"alias":"skNAC","entrezGeneId":"4666"},{"alias":"D22S674","entrezGeneId":"4668"},{"alias":"GALB","entrezGeneId":"4668"},{"alias":"CMT2V","entrezGeneId":"4669"},{"alias":"MPS-IIIB","entrezGeneId":"4669"},{"alias":"MPS3B","entrezGeneId":"4669"},{"alias":"NAG","entrezGeneId":"4669"},{"alias":"UFHSD","entrezGeneId":"4669"},{"alias":"CEAR","entrezGeneId":"4670"},{"alias":"hnRNP M","entrezGeneId":"4670"},{"alias":"HNRNPM4","entrezGeneId":"4670"},{"alias":"HNRPM","entrezGeneId":"4670"},{"alias":"HNRPM4","entrezGeneId":"4670"},{"alias":"HTGR1","entrezGeneId":"4670"},{"alias":"NAGR1","entrezGeneId":"4670"},{"alias":"BIRC1","entrezGeneId":"4671"},{"alias":"NLRB1","entrezGeneId":"4671"},{"alias":"psiNAIP","entrezGeneId":"4671"},{"alias":"NAP1","entrezGeneId":"4673"},{"alias":"NAP1L","entrezGeneId":"4673"},{"alias":"NRP","entrezGeneId":"4673"},{"alias":"BPX","entrezGeneId":"4674"},{"alias":"MB20","entrezGeneId":"4675"},{"alias":"NPL3","entrezGeneId":"4675"},{"alias":"hNAP2","entrezGeneId":"4676"},{"alias":"NAP1L4b","entrezGeneId":"4676"},{"alias":"NAP2","entrezGeneId":"4676"},{"alias":"NAP2L","entrezGeneId":"4676"},{"alias":"ASNRS","entrezGeneId":"4677"},{"alias":"NARS1","entrezGeneId":"4677"},{"alias":"FLB7527","entrezGeneId":"4678"},{"alias":"HMDRA1","entrezGeneId":"4678"},{"alias":"PRO1999","entrezGeneId":"4678"},{"alias":"CD66c","entrezGeneId":"4680"},{"alias":"CEAL","entrezGeneId":"4680"},{"alias":"NCA","entrezGeneId":"4680"},{"alias":"D1S1733E","entrezGeneId":"4681"},{"alias":"DAN","entrezGeneId":"4681"},{"alias":"DAND1","entrezGeneId":"4681"},{"alias":"NB","entrezGeneId":"4681"},{"alias":"NO3","entrezGeneId":"4681"},{"alias":"NBP","entrezGeneId":"4682"},{"alias":"NBP1","entrezGeneId":"4682"},{"alias":"NBP35","entrezGeneId":"4682"},{"alias":"AT-V1","entrezGeneId":"4683"},{"alias":"AT-V2","entrezGeneId":"4683"},{"alias":"ATV","entrezGeneId":"4683"},{"alias":"NBS","entrezGeneId":"4683"},{"alias":"NBS1","entrezGeneId":"4683"},{"alias":"P95","entrezGeneId":"4683"},{"alias":"CD56","entrezGeneId":"4684"},{"alias":"MSK39","entrezGeneId":"4684"},{"alias":"NCAM","entrezGeneId":"4684"},{"alias":"NCAM21","entrezGeneId":"4685"},{"alias":"CBP80","entrezGeneId":"4686"},{"alias":"NCBP","entrezGeneId":"4686"},{"alias":"Sto1","entrezGeneId":"4686"},{"alias":"NCF-2","entrezGeneId":"4688"},{"alias":"NOXA2","entrezGeneId":"4688"},{"alias":"P67-PHOX","entrezGeneId":"4688"},{"alias":"P67PHOX","entrezGeneId":"4688"},{"alias":"CGD3","entrezGeneId":"4689"},{"alias":"NCF","entrezGeneId":"4689"},{"alias":"P40PHOX","entrezGeneId":"4689"},{"alias":"SH3PXD4","entrezGeneId":"4689"},{"alias":"NCK","entrezGeneId":"4690"},{"alias":"nck-1","entrezGeneId":"4690"},{"alias":"NCKalpha","entrezGeneId":"4690"},{"alias":"C23","entrezGeneId":"4691"},{"alias":"Nsr1","entrezGeneId":"4691"},{"alias":"HsT16328","entrezGeneId":"4692"},{"alias":"PWCR","entrezGeneId":"4692"},{"alias":"EVR2","entrezGeneId":"4693"},{"alias":"FEVR","entrezGeneId":"4693"},{"alias":"ND","entrezGeneId":"4693"},{"alias":"CI-MWFE","entrezGeneId":"4694"},{"alias":"MWFE","entrezGeneId":"4694"},{"alias":"ZNF183","entrezGeneId":"4694"},{"alias":"B8","entrezGeneId":"4695"},{"alias":"CD14","entrezGeneId":"4695"},{"alias":"CIB8","entrezGeneId":"4695"},{"alias":"B9","entrezGeneId":"4696"},{"alias":"CI-B9","entrezGeneId":"4696"},{"alias":"CI-9k","entrezGeneId":"4697"},{"alias":"CI-MLRQ","entrezGeneId":"4697"},{"alias":"MLRQ","entrezGeneId":"4697"},{"alias":"B13","entrezGeneId":"4698"},{"alias":"CI-13kB","entrezGeneId":"4698"},{"alias":"CI-13KD-B","entrezGeneId":"4698"},{"alias":"NUFM","entrezGeneId":"4698"},{"alias":"UQOR13","entrezGeneId":"4698"},{"alias":"B14","entrezGeneId":"4700"},{"alias":"CI-B14","entrezGeneId":"4700"},{"alias":"LYRM6","entrezGeneId":"4700"},{"alias":"NADHB14","entrezGeneId":"4700"},{"alias":"B14.5a","entrezGeneId":"4701"},{"alias":"CI-B14.5a","entrezGeneId":"4701"},{"alias":"CI-19KD","entrezGeneId":"4702"},{"alias":"CI-PGIV","entrezGeneId":"4702"},{"alias":"PGIV","entrezGeneId":"4702"},{"alias":"NEB177D","entrezGeneId":"4703"},{"alias":"NEM2","entrezGeneId":"4703"},{"alias":"CC6","entrezGeneId":"4704"},{"alias":"CI-39k","entrezGeneId":"4704"},{"alias":"CI39k","entrezGeneId":"4704"},{"alias":"NDUFS2L","entrezGeneId":"4704"},{"alias":"SDR22E1","entrezGeneId":"4704"},{"alias":"CI-42k","entrezGeneId":"4705"},{"alias":"CI-42KD","entrezGeneId":"4705"},{"alias":"ACP","entrezGeneId":"4706"},{"alias":"ACP1","entrezGeneId":"4706"},{"alias":"FASN2A","entrezGeneId":"4706"},{"alias":"SDAP","entrezGeneId":"4706"},{"alias":"CI-MNLL","entrezGeneId":"4707"},{"alias":"CI-SGDH","entrezGeneId":"4707"},{"alias":"MNLL","entrezGeneId":"4707"},{"alias":"AGGG","entrezGeneId":"4708"},{"alias":"CI-AGGG","entrezGeneId":"4708"},{"alias":"B12","entrezGeneId":"4709"},{"alias":"CI-B12","entrezGeneId":"4709"},{"alias":"B15","entrezGeneId":"4710"},{"alias":"CI-B15","entrezGeneId":"4710"},{"alias":"CISGDH","entrezGeneId":"4711"},{"alias":"SGDH","entrezGeneId":"4711"},{"alias":"B17","entrezGeneId":"4712"},{"alias":"CI","entrezGeneId":"4712"},{"alias":"B18","entrezGeneId":"4713"},{"alias":"CI-B18","entrezGeneId":"4713"},{"alias":"ASHI","entrezGeneId":"4714"},{"alias":"CI-ASHI","entrezGeneId":"4714"},{"alias":"B22","entrezGeneId":"4715"},{"alias":"CI-B22","entrezGeneId":"4715"},{"alias":"LYRM3","entrezGeneId":"4715"},{"alias":"UQOR22","entrezGeneId":"4715"},{"alias":"PDSW","entrezGeneId":"4716"},{"alias":"KFYI","entrezGeneId":"4717"},{"alias":"B14.5b","entrezGeneId":"4718"},{"alias":"CI-B14.5b","entrezGeneId":"4718"},{"alias":"HLC-1","entrezGeneId":"4718"},{"alias":"NADHDH2","entrezGeneId":"4718"},{"alias":"CI-75k","entrezGeneId":"4719"},{"alias":"CI-75Kd","entrezGeneId":"4719"},{"alias":"PRO1304","entrezGeneId":"4719"},{"alias":"CI-49","entrezGeneId":"4720"},{"alias":"CI-30","entrezGeneId":"4722"},{"alias":"CI-51K","entrezGeneId":"4723"},{"alias":"CI51KD","entrezGeneId":"4723"},{"alias":"UQOR1","entrezGeneId":"4723"},{"alias":"AQDQ","entrezGeneId":"4724"},{"alias":"CI-18","entrezGeneId":"4724"},{"alias":"CI-18 kDa","entrezGeneId":"4724"},{"alias":"CI-AQDQ","entrezGeneId":"4724"},{"alias":"CI-15k","entrezGeneId":"4725"},{"alias":"CI15K","entrezGeneId":"4725"},{"alias":"CI-13kA","entrezGeneId":"4726"},{"alias":"CI-13kD-A","entrezGeneId":"4726"},{"alias":"CI13KDA","entrezGeneId":"4726"},{"alias":"CI-23k","entrezGeneId":"4728"},{"alias":"CI23KD","entrezGeneId":"4728"},{"alias":"TYKY","entrezGeneId":"4728"},{"alias":"CI-24k","entrezGeneId":"4729"},{"alias":"CI-10k","entrezGeneId":"4731"},{"alias":"CI-9KD","entrezGeneId":"4731"},{"alias":"NEDD3","entrezGeneId":"4733"},{"alias":"NEDD4-1","entrezGeneId":"4734"},{"alias":"RPF1","entrezGeneId":"4734"},{"alias":"DIFF6","entrezGeneId":"4735"},{"alias":"hNedd5","entrezGeneId":"4735"},{"alias":"NEDD-5","entrezGeneId":"4735"},{"alias":"NEDD5","entrezGeneId":"4735"},{"alias":"Pnutl3","entrezGeneId":"4735"},{"alias":"Csa-19","entrezGeneId":"4736"},{"alias":"CSA19","entrezGeneId":"4736"},{"alias":"L10A","entrezGeneId":"4736"},{"alias":"NEDD6","entrezGeneId":"4736"},{"alias":"NEDD-8","entrezGeneId":"4738"},{"alias":"CAS-L","entrezGeneId":"4739"},{"alias":"CAS2","entrezGeneId":"4739"},{"alias":"CASL","entrezGeneId":"4739"},{"alias":"CASS2","entrezGeneId":"4739"},{"alias":"HEF1","entrezGeneId":"4739"},{"alias":"NEF3","entrezGeneId":"4741"},{"alias":"NF-M","entrezGeneId":"4741"},{"alias":"NFM","entrezGeneId":"4741"},{"alias":"CMT2CC","entrezGeneId":"4744"},{"alias":"NFH","entrezGeneId":"4744"},{"alias":"IDH3GL","entrezGeneId":"4745"},{"alias":"NRP1","entrezGeneId":"4745"},{"alias":"CMT1F","entrezGeneId":"4747"},{"alias":"CMT2E","entrezGeneId":"4747"},{"alias":"CMTDIG","entrezGeneId":"4747"},{"alias":"NF-L","entrezGeneId":"4747"},{"alias":"NF68","entrezGeneId":"4747"},{"alias":"NFL","entrezGeneId":"4747"},{"alias":"PPP1R110","entrezGeneId":"4747"},{"alias":"ALS24","entrezGeneId":"4750"},{"alias":"NY-REN-55","entrezGeneId":"4750"},{"alias":"SRPS2","entrezGeneId":"4750"},{"alias":"SRPS2A","entrezGeneId":"4750"},{"alias":"SRTD6","entrezGeneId":"4750"},{"alias":"HsPK21","entrezGeneId":"4751"},{"alias":"NEK2A","entrezGeneId":"4751"},{"alias":"NLK1","entrezGeneId":"4751"},{"alias":"PPP1R111","entrezGeneId":"4751"},{"alias":"RP67","entrezGeneId":"4751"},{"alias":"HSPK36","entrezGeneId":"4752"},{"alias":"NRP2","entrezGeneId":"4753"},{"alias":"IGDCC2","entrezGeneId":"4756"},{"alias":"NGN","entrezGeneId":"4756"},{"alias":"NTN1R2","entrezGeneId":"4756"},{"alias":"NANH","entrezGeneId":"4758"},{"alias":"NEU","entrezGeneId":"4758"},{"alias":"SIAL1","entrezGeneId":"4758"},{"alias":"SIAL2","entrezGeneId":"4759"},{"alias":"BETA2","entrezGeneId":"4760"},{"alias":"BHF-1","entrezGeneId":"4760"},{"alias":"bHLHa3","entrezGeneId":"4760"},{"alias":"MODY6","entrezGeneId":"4760"},{"alias":"NEUROD","entrezGeneId":"4760"},{"alias":"bHLHa1","entrezGeneId":"4761"},{"alias":"NDRF","entrezGeneId":"4761"},{"alias":"AKA","entrezGeneId":"4762"},{"alias":"bHLHa6","entrezGeneId":"4762"},{"alias":"Math4C","entrezGeneId":"4762"},{"alias":"NEUROD3","entrezGeneId":"4762"},{"alias":"ngn1","entrezGeneId":"4762"},{"alias":"NFNS","entrezGeneId":"4763"},{"alias":"VRNF","entrezGeneId":"4763"},{"alias":"WSS","entrezGeneId":"4763"},{"alias":"NF1L1","entrezGeneId":"4764"},{"alias":"NF1L5","entrezGeneId":"4768"},{"alias":"ACN","entrezGeneId":"4771"},{"alias":"BANF","entrezGeneId":"4771"},{"alias":"SCH","entrezGeneId":"4771"},{"alias":"NF-ATC","entrezGeneId":"4772"},{"alias":"NF-ATc1.2","entrezGeneId":"4772"},{"alias":"NFAT2","entrezGeneId":"4772"},{"alias":"NFATc","entrezGeneId":"4772"},{"alias":"NFAT1","entrezGeneId":"4773"},{"alias":"NFATP","entrezGeneId":"4773"},{"alias":"BRMUTD","entrezGeneId":"4774"},{"alias":"CTF","entrezGeneId":"4774"},{"alias":"NF-I/A","entrezGeneId":"4774"},{"alias":"NF1-A","entrezGeneId":"4774"},{"alias":"NFI-A","entrezGeneId":"4774"},{"alias":"NFI-L","entrezGeneId":"4774"},{"alias":"NFAT4","entrezGeneId":"4775"},{"alias":"NFATX","entrezGeneId":"4775"},{"alias":"NF-AT3","entrezGeneId":"4776"},{"alias":"NF-ATC4","entrezGeneId":"4776"},{"alias":"NFAT3","entrezGeneId":"4776"},{"alias":"NF-E2","entrezGeneId":"4778"},{"alias":"p45","entrezGeneId":"4778"},{"alias":"LCR-F1","entrezGeneId":"4779"},{"alias":"NRF1","entrezGeneId":"4779"},{"alias":"TCF11","entrezGeneId":"4779"},{"alias":"HEBP1","entrezGeneId":"4780"},{"alias":"IMDDHH","entrezGeneId":"4780"},{"alias":"NRF2","entrezGeneId":"4780"},{"alias":"CTF","entrezGeneId":"4781"},{"alias":"HMGIC/NFIB","entrezGeneId":"4781"},{"alias":"NF-I/B","entrezGeneId":"4781"},{"alias":"NF1-B","entrezGeneId":"4781"},{"alias":"NFI-B","entrezGeneId":"4781"},{"alias":"NFI-RED","entrezGeneId":"4781"},{"alias":"NFIB2","entrezGeneId":"4781"},{"alias":"NFIB3","entrezGeneId":"4781"},{"alias":"CTF","entrezGeneId":"4782"},{"alias":"CTF5","entrezGeneId":"4782"},{"alias":"NF-I","entrezGeneId":"4782"},{"alias":"NFI","entrezGeneId":"4782"},{"alias":"E4BP4","entrezGeneId":"4783"},{"alias":"IL3BP1","entrezGeneId":"4783"},{"alias":"NF-IL3A","entrezGeneId":"4783"},{"alias":"NFIL3A","entrezGeneId":"4783"},{"alias":"CTF","entrezGeneId":"4784"},{"alias":"MRSHSS","entrezGeneId":"4784"},{"alias":"NF-I/X","entrezGeneId":"4784"},{"alias":"NF1-X","entrezGeneId":"4784"},{"alias":"NF1A","entrezGeneId":"4784"},{"alias":"SOTOS2","entrezGeneId":"4784"},{"alias":"CVID12","entrezGeneId":"4790"},{"alias":"EBP-1","entrezGeneId":"4790"},{"alias":"KBF1","entrezGeneId":"4790"},{"alias":"NF-kappa-B","entrezGeneId":"4790"},{"alias":"NF-kappaB","entrezGeneId":"4790"},{"alias":"NF-kB1","entrezGeneId":"4790"},{"alias":"NFkappaB","entrezGeneId":"4790"},{"alias":"NFKB-p105","entrezGeneId":"4790"},{"alias":"NFKB-p50","entrezGeneId":"4790"},{"alias":"p105","entrezGeneId":"4790"},{"alias":"p50","entrezGeneId":"4790"},{"alias":"CVID10","entrezGeneId":"4791"},{"alias":"H2TF1","entrezGeneId":"4791"},{"alias":"LYT-10","entrezGeneId":"4791"},{"alias":"LYT10","entrezGeneId":"4791"},{"alias":"NF-kB2","entrezGeneId":"4791"},{"alias":"p100","entrezGeneId":"4791"},{"alias":"p49/p100","entrezGeneId":"4791"},{"alias":"p52","entrezGeneId":"4791"},{"alias":"IKBA","entrezGeneId":"4792"},{"alias":"MAD-3","entrezGeneId":"4792"},{"alias":"NFKBI","entrezGeneId":"4792"},{"alias":"IKBB","entrezGeneId":"4793"},{"alias":"TRIP9","entrezGeneId":"4793"},{"alias":"IKBE","entrezGeneId":"4794"},{"alias":"IKBL","entrezGeneId":"4795"},{"alias":"LST1","entrezGeneId":"4795"},{"alias":"NFKBIL","entrezGeneId":"4795"},{"alias":"IKBR","entrezGeneId":"4796"},{"alias":"NFKBIL2","entrezGeneId":"4796"},{"alias":"INO80G","entrezGeneId":"4798"},{"alias":"NFX2","entrezGeneId":"4799"},{"alias":"TEG-42","entrezGeneId":"4799"},{"alias":"Tex42","entrezGeneId":"4799"},{"alias":"CBF-A","entrezGeneId":"4800"},{"alias":"CBF-B","entrezGeneId":"4800"},{"alias":"HAP2","entrezGeneId":"4800"},{"alias":"NF-YA","entrezGeneId":"4800"},{"alias":"CBF-A","entrezGeneId":"4801"},{"alias":"CBF-B","entrezGeneId":"4801"},{"alias":"HAP3","entrezGeneId":"4801"},{"alias":"NF-YB","entrezGeneId":"4801"},{"alias":"CBF-C","entrezGeneId":"4802"},{"alias":"CBFC","entrezGeneId":"4802"},{"alias":"H1TF2A","entrezGeneId":"4802"},{"alias":"HAP5","entrezGeneId":"4802"},{"alias":"HSM","entrezGeneId":"4802"},{"alias":"NF-YC","entrezGeneId":"4802"},{"alias":"Beta-NGF","entrezGeneId":"4803"},{"alias":"HSAN5","entrezGeneId":"4803"},{"alias":"NGFB","entrezGeneId":"4803"},{"alias":"CD271","entrezGeneId":"4804"},{"alias":"Gp80-LNGFR","entrezGeneId":"4804"},{"alias":"p75(NTR)","entrezGeneId":"4804"},{"alias":"p75NTR","entrezGeneId":"4804"},{"alias":"TNFRSF16","entrezGeneId":"4804"},{"alias":"bHLHa35","entrezGeneId":"4807"},{"alias":"HEN1","entrezGeneId":"4807"},{"alias":"NSCL","entrezGeneId":"4807"},{"alias":"NSCL1","entrezGeneId":"4807"},{"alias":"bHLHa34","entrezGeneId":"4808"},{"alias":"HEN2","entrezGeneId":"4808"},{"alias":"NSCL2","entrezGeneId":"4808"},{"alias":"15.5K","entrezGeneId":"4809"},{"alias":"FA-1","entrezGeneId":"4809"},{"alias":"FA1","entrezGeneId":"4809"},{"alias":"NHP2L1","entrezGeneId":"4809"},{"alias":"NHPX","entrezGeneId":"4809"},{"alias":"OTK27","entrezGeneId":"4809"},{"alias":"SNRNP15-5","entrezGeneId":"4809"},{"alias":"SPAG12","entrezGeneId":"4809"},{"alias":"SSFA1","entrezGeneId":"4809"},{"alias":"CTRCT40","entrezGeneId":"4810"},{"alias":"CXN","entrezGeneId":"4810"},{"alias":"SCML1","entrezGeneId":"4810"},{"alias":"NID","entrezGeneId":"4811"},{"alias":"NIN1","entrezGeneId":"4814"},{"alias":"NINJURIN","entrezGeneId":"4814"},{"alias":"GIG1","entrezGeneId":"4818"},{"alias":"GMP-17","entrezGeneId":"4818"},{"alias":"p15-TIA-1","entrezGeneId":"4818"},{"alias":"EC-1","entrezGeneId":"4819"},{"alias":"EC1","entrezGeneId":"4819"},{"alias":"p104","entrezGeneId":"4820"},{"alias":"NKX2.2","entrezGeneId":"4821"},{"alias":"NKX2B","entrezGeneId":"4821"},{"alias":"BAPX2","entrezGeneId":"4824"},{"alias":"NKX3","entrezGeneId":"4824"},{"alias":"NKX3.1","entrezGeneId":"4824"},{"alias":"NKX3A","entrezGeneId":"4824"},{"alias":"NKX6.1","entrezGeneId":"4825"},{"alias":"NKX6A","entrezGeneId":"4825"},{"alias":"Peg5","entrezGeneId":"4826"},{"alias":"GP130","entrezGeneId":"4827"},{"alias":"NCR","entrezGeneId":"4827"},{"alias":"BB1","entrezGeneId":"4829"},{"alias":"BB1R","entrezGeneId":"4829"},{"alias":"NMB-R","entrezGeneId":"4829"},{"alias":"AWD","entrezGeneId":"4830"},{"alias":"GAAD","entrezGeneId":"4830"},{"alias":"NB","entrezGeneId":"4830"},{"alias":"NBS","entrezGeneId":"4830"},{"alias":"NDKA","entrezGeneId":"4830"},{"alias":"NDPK-A","entrezGeneId":"4830"},{"alias":"NDPKA","entrezGeneId":"4830"},{"alias":"NM23","entrezGeneId":"4830"},{"alias":"NM23-H1","entrezGeneId":"4830"},{"alias":"NDKB","entrezGeneId":"4831"},{"alias":"NDPK-B","entrezGeneId":"4831"},{"alias":"NDPKB","entrezGeneId":"4831"},{"alias":"NM23-H2","entrezGeneId":"4831"},{"alias":"NM23B","entrezGeneId":"4831"},{"alias":"PUF","entrezGeneId":"4831"},{"alias":"c371H6.2","entrezGeneId":"4832"},{"alias":"DR-nm23","entrezGeneId":"4832"},{"alias":"NDPK-C","entrezGeneId":"4832"},{"alias":"NDPKC","entrezGeneId":"4832"},{"alias":"NM23-H3","entrezGeneId":"4832"},{"alias":"NM23H3","entrezGeneId":"4832"},{"alias":"NDPK-D","entrezGeneId":"4833"},{"alias":"nm23-H4","entrezGeneId":"4833"},{"alias":"NM23H4","entrezGeneId":"4833"},{"alias":"DHQV","entrezGeneId":"4835"},{"alias":"DIA6","entrezGeneId":"4835"},{"alias":"NMOR2","entrezGeneId":"4835"},{"alias":"QR2","entrezGeneId":"4835"},{"alias":"NMT","entrezGeneId":"4836"},{"alias":"HTX5","entrezGeneId":"4838"},{"alias":"NOL1","entrezGeneId":"4839"},{"alias":"NOP120","entrezGeneId":"4839"},{"alias":"NSUN1","entrezGeneId":"4839"},{"alias":"p120","entrezGeneId":"4839"},{"alias":"MRXS34","entrezGeneId":"4841"},{"alias":"NMT55","entrezGeneId":"4841"},{"alias":"NRB54","entrezGeneId":"4841"},{"alias":"P54","entrezGeneId":"4841"},{"alias":"P54NRB","entrezGeneId":"4841"},{"alias":"PPP1R114","entrezGeneId":"4841"},{"alias":"bNOS","entrezGeneId":"4842"},{"alias":"IHPS1","entrezGeneId":"4842"},{"alias":"N-NOS","entrezGeneId":"4842"},{"alias":"NC-NOS","entrezGeneId":"4842"},{"alias":"nNOS","entrezGeneId":"4842"},{"alias":"NOS","entrezGeneId":"4842"},{"alias":"HEP-NOS","entrezGeneId":"4843"},{"alias":"INOS","entrezGeneId":"4843"},{"alias":"NOS","entrezGeneId":"4843"},{"alias":"NOS2A","entrezGeneId":"4843"},{"alias":"ECNOS","entrezGeneId":"4846"},{"alias":"eNOS","entrezGeneId":"4846"},{"alias":"CDC36","entrezGeneId":"4848"},{"alias":"HSPC131","entrezGeneId":"4848"},{"alias":"NOT2","entrezGeneId":"4848"},{"alias":"NOT2H","entrezGeneId":"4848"},{"alias":"LENG2","entrezGeneId":"4849"},{"alias":"NOT3","entrezGeneId":"4849"},{"alias":"NOT3H","entrezGeneId":"4849"},{"alias":"CLONE243","entrezGeneId":"4850"},{"alias":"NOT4","entrezGeneId":"4850"},{"alias":"NOT4H","entrezGeneId":"4850"},{"alias":"AOS5","entrezGeneId":"4851"},{"alias":"AOVD1","entrezGeneId":"4851"},{"alias":"hN1","entrezGeneId":"4851"},{"alias":"TAN1","entrezGeneId":"4851"},{"alias":"PYY4","entrezGeneId":"4852"},{"alias":"AGS2","entrezGeneId":"4853"},{"alias":"HJCYS","entrezGeneId":"4853"},{"alias":"hN2","entrezGeneId":"4853"},{"alias":"CADASIL","entrezGeneId":"4854"},{"alias":"CADASIL1","entrezGeneId":"4854"},{"alias":"CASIL","entrezGeneId":"4854"},{"alias":"IMF2","entrezGeneId":"4854"},{"alias":"LMNS","entrezGeneId":"4854"},{"alias":"INT3","entrezGeneId":"4855"},{"alias":"CCN3","entrezGeneId":"4856"},{"alias":"IBP-9","entrezGeneId":"4856"},{"alias":"IGFBP-9","entrezGeneId":"4856"},{"alias":"IGFBP9","entrezGeneId":"4856"},{"alias":"NOVh","entrezGeneId":"4856"},{"alias":"Nova-1","entrezGeneId":"4857"},{"alias":"ANOVA","entrezGeneId":"4858"},{"alias":"NOVA3","entrezGeneId":"4858"},{"alias":"NP","entrezGeneId":"4860"},{"alias":"PRO1837","entrezGeneId":"4860"},{"alias":"PUNP","entrezGeneId":"4860"},{"alias":"bHLHe11","entrezGeneId":"4861"},{"alias":"MOP5","entrezGeneId":"4861"},{"alias":"PASD5","entrezGeneId":"4861"},{"alias":"bHLHe9","entrezGeneId":"4862"},{"alias":"MOP4","entrezGeneId":"4862"},{"alias":"PASD4","entrezGeneId":"4862"},{"alias":"E14","entrezGeneId":"4863"},{"alias":"E14/NPAT","entrezGeneId":"4863"},{"alias":"p220","entrezGeneId":"4863"},{"alias":"NPC","entrezGeneId":"4864"},{"alias":"SLC65A1","entrezGeneId":"4864"},{"alias":"JBTS4","entrezGeneId":"4867"},{"alias":"NPH1","entrezGeneId":"4867"},{"alias":"SLSN1","entrezGeneId":"4867"},{"alias":"CNF","entrezGeneId":"4868"},{"alias":"nephrin","entrezGeneId":"4868"},{"alias":"NPHN","entrezGeneId":"4868"},{"alias":"B23","entrezGeneId":"4869"},{"alias":"NPM","entrezGeneId":"4869"},{"alias":"NG1-1.6","entrezGeneId":"4870"},{"alias":"NPMP1","entrezGeneId":"4870"},{"alias":"NG2-6","entrezGeneId":"4871"},{"alias":"NPMP2","entrezGeneId":"4871"},{"alias":"NG2-6","entrezGeneId":"4872"},{"alias":"NG3-3","entrezGeneId":"4872"},{"alias":"NPM1P15","entrezGeneId":"4872"},{"alias":"NPMP3","entrezGeneId":"4872"},{"alias":"NG5-4","entrezGeneId":"4874"},{"alias":"NPMP5","entrezGeneId":"4874"},{"alias":"NG6-4","entrezGeneId":"4875"},{"alias":"NPMP6","entrezGeneId":"4875"},{"alias":"ANF","entrezGeneId":"4878"},{"alias":"ANP","entrezGeneId":"4878"},{"alias":"ATFB6","entrezGeneId":"4878"},{"alias":"ATRST2","entrezGeneId":"4878"},{"alias":"CDD","entrezGeneId":"4878"},{"alias":"CDD-ANF","entrezGeneId":"4878"},{"alias":"CDP","entrezGeneId":"4878"},{"alias":"PND","entrezGeneId":"4878"},{"alias":"BNP","entrezGeneId":"4879"},{"alias":"CNP","entrezGeneId":"4880"},{"alias":"CNP2","entrezGeneId":"4880"},{"alias":"ANPa","entrezGeneId":"4881"},{"alias":"ANPRA","entrezGeneId":"4881"},{"alias":"GUC2A","entrezGeneId":"4881"},{"alias":"GUCY2A","entrezGeneId":"4881"},{"alias":"NPRA","entrezGeneId":"4881"},{"alias":"AMDM","entrezGeneId":"4882"},{"alias":"ANPb","entrezGeneId":"4882"},{"alias":"ANPRB","entrezGeneId":"4882"},{"alias":"ECDM","entrezGeneId":"4882"},{"alias":"GUC2B","entrezGeneId":"4882"},{"alias":"GUCY2B","entrezGeneId":"4882"},{"alias":"NPRB","entrezGeneId":"4882"},{"alias":"NPRBi","entrezGeneId":"4882"},{"alias":"SNSK","entrezGeneId":"4882"},{"alias":"ANP-C","entrezGeneId":"4883"},{"alias":"ANPR-C","entrezGeneId":"4883"},{"alias":"ANPRC","entrezGeneId":"4883"},{"alias":"C5orf23","entrezGeneId":"4883"},{"alias":"GUCY2B","entrezGeneId":"4883"},{"alias":"NPR-C","entrezGeneId":"4883"},{"alias":"NPRC","entrezGeneId":"4883"},{"alias":"NP1","entrezGeneId":"4884"},{"alias":"NARP","entrezGeneId":"4885"},{"alias":"NP-II","entrezGeneId":"4885"},{"alias":"NP2","entrezGeneId":"4885"},{"alias":"NPY1-R","entrezGeneId":"4886"},{"alias":"NPYR","entrezGeneId":"4886"},{"alias":"NPY2-R","entrezGeneId":"4887"},{"alias":"NPY1RL","entrezGeneId":"4888"},{"alias":"NPY6RP","entrezGeneId":"4888"},{"alias":"PP2","entrezGeneId":"4888"},{"alias":"Y2B","entrezGeneId":"4888"},{"alias":"NPY5-R","entrezGeneId":"4889"},{"alias":"NPYR5","entrezGeneId":"4889"},{"alias":"NPYY5-R","entrezGeneId":"4889"},{"alias":"AHMIO1","entrezGeneId":"4891"},{"alias":"DCT1","entrezGeneId":"4891"},{"alias":"DMT1","entrezGeneId":"4891"},{"alias":"NRAMP2","entrezGeneId":"4891"},{"alias":"N-RAP","entrezGeneId":"4892"},{"alias":"ALPS4","entrezGeneId":"4893"},{"alias":"CMNS","entrezGeneId":"4893"},{"alias":"N-ras","entrezGeneId":"4893"},{"alias":"NCMS","entrezGeneId":"4893"},{"alias":"NRAS1","entrezGeneId":"4893"},{"alias":"NS6","entrezGeneId":"4893"},{"alias":"hNRD1","entrezGeneId":"4898"},{"alias":"hNRD2","entrezGeneId":"4898"},{"alias":"NRD1","entrezGeneId":"4898"},{"alias":"ALPHA-PAL","entrezGeneId":"4899"},{"alias":"hng","entrezGeneId":"4900"},{"alias":"RC3","entrezGeneId":"4900"},{"alias":"D14S46E","entrezGeneId":"4901"},{"alias":"NRL-MAF","entrezGeneId":"4901"},{"alias":"RP27","entrezGeneId":"4901"},{"alias":"NTN","entrezGeneId":"4902"},{"alias":"BP-8","entrezGeneId":"4904"},{"alias":"CBF-A","entrezGeneId":"4904"},{"alias":"CSDA2","entrezGeneId":"4904"},{"alias":"CSDB","entrezGeneId":"4904"},{"alias":"DBPB","entrezGeneId":"4904"},{"alias":"EFI-A","entrezGeneId":"4904"},{"alias":"MDR-NF1","entrezGeneId":"4904"},{"alias":"NSEP-1","entrezGeneId":"4904"},{"alias":"NSEP1","entrezGeneId":"4904"},{"alias":"YB-1","entrezGeneId":"4904"},{"alias":"YB1","entrezGeneId":"4904"},{"alias":"SEC18","entrezGeneId":"4905"},{"alias":"SKD2","entrezGeneId":"4905"},{"alias":"CALJA","entrezGeneId":"4907"},{"alias":"CD73","entrezGeneId":"4907"},{"alias":"E5NT","entrezGeneId":"4907"},{"alias":"eN","entrezGeneId":"4907"},{"alias":"eNT","entrezGeneId":"4907"},{"alias":"NT","entrezGeneId":"4907"},{"alias":"NT5","entrezGeneId":"4907"},{"alias":"NTE","entrezGeneId":"4907"},{"alias":"HDNF","entrezGeneId":"4908"},{"alias":"NGF-2","entrezGeneId":"4908"},{"alias":"NGF2","entrezGeneId":"4908"},{"alias":"NT-3","entrezGeneId":"4908"},{"alias":"NT3","entrezGeneId":"4908"},{"alias":"GLC10","entrezGeneId":"4909"},{"alias":"GLC1O","entrezGeneId":"4909"},{"alias":"NT-4","entrezGeneId":"4909"},{"alias":"NT-4/5","entrezGeneId":"4909"},{"alias":"NT-5","entrezGeneId":"4909"},{"alias":"NT4","entrezGeneId":"4909"},{"alias":"NT5","entrezGeneId":"4909"},{"alias":"NTF5","entrezGeneId":"4909"},{"alias":"NTF5P","entrezGeneId":"4910"},{"alias":"NTF6","entrezGeneId":"4910"},{"alias":"PSI-NT4","entrezGeneId":"4910"},{"alias":"FAP3","entrezGeneId":"4913"},{"alias":"hNTH1","entrezGeneId":"4913"},{"alias":"NTH1","entrezGeneId":"4913"},{"alias":"OCTS3","entrezGeneId":"4913"},{"alias":"MTC","entrezGeneId":"4914"},{"alias":"p140-TrkA","entrezGeneId":"4914"},{"alias":"TRK","entrezGeneId":"4914"},{"alias":"Trk-A","entrezGeneId":"4914"},{"alias":"TRK1","entrezGeneId":"4914"},{"alias":"TRKA","entrezGeneId":"4914"},{"alias":"EIEE58","entrezGeneId":"4915"},{"alias":"GP145-TrkB","entrezGeneId":"4915"},{"alias":"OBHD","entrezGeneId":"4915"},{"alias":"trk-B","entrezGeneId":"4915"},{"alias":"TRKB","entrezGeneId":"4915"},{"alias":"gp145(trkC)","entrezGeneId":"4916"},{"alias":"GP145-TrkC","entrezGeneId":"4916"},{"alias":"TRKC","entrezGeneId":"4916"},{"alias":"NTN2L","entrezGeneId":"4917"},{"alias":"dJ537F10.1","entrezGeneId":"4919"},{"alias":"NTRKR1","entrezGeneId":"4919"},{"alias":"BDB","entrezGeneId":"4920"},{"alias":"BDB1","entrezGeneId":"4920"},{"alias":"NTRKR2","entrezGeneId":"4920"},{"alias":"MIG20a","entrezGeneId":"4921"},{"alias":"NTRKR3","entrezGeneId":"4921"},{"alias":"TKT","entrezGeneId":"4921"},{"alias":"TYRO10","entrezGeneId":"4921"},{"alias":"NMN-125","entrezGeneId":"4922"},{"alias":"NN","entrezGeneId":"4922"},{"alias":"NT","entrezGeneId":"4922"},{"alias":"NT/N","entrezGeneId":"4922"},{"alias":"NTS1","entrezGeneId":"4922"},{"alias":"NTR","entrezGeneId":"4923"},{"alias":"CALNUC","entrezGeneId":"4924"},{"alias":"NUC","entrezGeneId":"4924"},{"alias":"HEL-S-109","entrezGeneId":"4925"},{"alias":"NEFA","entrezGeneId":"4925"},{"alias":"NMP-22","entrezGeneId":"4926"},{"alias":"NUMA","entrezGeneId":"4926"},{"alias":"ADIR2","entrezGeneId":"4928"},{"alias":"NUP196","entrezGeneId":"4928"},{"alias":"NUP96","entrezGeneId":"4928"},{"alias":"HZF-3","entrezGeneId":"4929"},{"alias":"NOT","entrezGeneId":"4929"},{"alias":"NURR1","entrezGeneId":"4929"},{"alias":"RNR1","entrezGeneId":"4929"},{"alias":"TINUR","entrezGeneId":"4929"},{"alias":"NVL2","entrezGeneId":"4931"},{"alias":"NYSA","entrezGeneId":"4933"},{"alias":"CN","entrezGeneId":"4934"},{"alias":"NYS6","entrezGeneId":"4935"},{"alias":"OA1","entrezGeneId":"4935"},{"alias":"OAR","entrezGeneId":"4936"},{"alias":"OA","entrezGeneId":"4937"},{"alias":"OASF","entrezGeneId":"4937"},{"alias":"E18/E16","entrezGeneId":"4938"},{"alias":"IFI-4","entrezGeneId":"4938"},{"alias":"OIAS","entrezGeneId":"4938"},{"alias":"OIASI","entrezGeneId":"4938"},{"alias":"p100","entrezGeneId":"4940"},{"alias":"p100OAS","entrezGeneId":"4940"},{"alias":"GACR","entrezGeneId":"4942"},{"alias":"HOGA","entrezGeneId":"4942"},{"alias":"OATASE","entrezGeneId":"4942"},{"alias":"OKT","entrezGeneId":"4942"},{"alias":"MG81","entrezGeneId":"4943"},{"alias":"OATL1","entrezGeneId":"4943"},{"alias":"OATL3","entrezGeneId":"4945"},{"alias":"AZ1","entrezGeneId":"4946"},{"alias":"AZI","entrezGeneId":"4946"},{"alias":"OAZ","entrezGeneId":"4946"},{"alias":"AZ2","entrezGeneId":"4947"},{"alias":"BEY","entrezGeneId":"4948"},{"alias":"BEY1","entrezGeneId":"4948"},{"alias":"BEY2","entrezGeneId":"4948"},{"alias":"BOCA","entrezGeneId":"4948"},{"alias":"D15S12","entrezGeneId":"4948"},{"alias":"EYCL","entrezGeneId":"4948"},{"alias":"EYCL2","entrezGeneId":"4948"},{"alias":"EYCL3","entrezGeneId":"4948"},{"alias":"HCL3","entrezGeneId":"4948"},{"alias":"P","entrezGeneId":"4948"},{"alias":"PED","entrezGeneId":"4948"},{"alias":"SHEP1","entrezGeneId":"4948"},{"alias":"OCM","entrezGeneId":"4951"},{"alias":"OM","entrezGeneId":"4951"},{"alias":"INPP5F","entrezGeneId":"4952"},{"alias":"LOCR","entrezGeneId":"4952"},{"alias":"NPHL2","entrezGeneId":"4952"},{"alias":"OCRL-1","entrezGeneId":"4952"},{"alias":"OCRL1","entrezGeneId":"4952"},{"alias":"ODC","entrezGeneId":"4953"},{"alias":"ODC2","entrezGeneId":"4954"},{"alias":"CT133","entrezGeneId":"4956"},{"alias":"HSPB10","entrezGeneId":"4956"},{"alias":"ODF","entrezGeneId":"4956"},{"alias":"ODF2","entrezGeneId":"4956"},{"alias":"ODF27","entrezGeneId":"4956"},{"alias":"ODFP","entrezGeneId":"4956"},{"alias":"ODFPG","entrezGeneId":"4956"},{"alias":"ODFPGA","entrezGeneId":"4956"},{"alias":"ODFPGB","entrezGeneId":"4956"},{"alias":"RT7","entrezGeneId":"4956"},{"alias":"SODF","entrezGeneId":"4956"},{"alias":"CT134","entrezGeneId":"4957"},{"alias":"ODF2/1","entrezGeneId":"4957"},{"alias":"ODF2/2","entrezGeneId":"4957"},{"alias":"ODF84","entrezGeneId":"4957"},{"alias":"OSAD","entrezGeneId":"4958"},{"alias":"SLRR2C","entrezGeneId":"4958"},{"alias":"CL","entrezGeneId":"4963"},{"alias":"OFC","entrezGeneId":"4963"},{"alias":"AKGDH","entrezGeneId":"4967"},{"alias":"E1k","entrezGeneId":"4967"},{"alias":"OGDC","entrezGeneId":"4967"},{"alias":"HMMH","entrezGeneId":"4968"},{"alias":"HOGG1","entrezGeneId":"4968"},{"alias":"MUTM","entrezGeneId":"4968"},{"alias":"OGH1","entrezGeneId":"4968"},{"alias":"OG","entrezGeneId":"4969"},{"alias":"OIF","entrezGeneId":"4969"},{"alias":"SLRR3A","entrezGeneId":"4969"},{"alias":"CLEC8A","entrezGeneId":"4973"},{"alias":"LOX1","entrezGeneId":"4973"},{"alias":"LOXIN","entrezGeneId":"4973"},{"alias":"SCARE1","entrezGeneId":"4973"},{"alias":"SLOX1","entrezGeneId":"4973"},{"alias":"OMGP","entrezGeneId":"4974"},{"alias":"BERHS","entrezGeneId":"4976"},{"alias":"largeG","entrezGeneId":"4976"},{"alias":"MGM1","entrezGeneId":"4976"},{"alias":"MTDPS14","entrezGeneId":"4976"},{"alias":"NPG","entrezGeneId":"4976"},{"alias":"NTG","entrezGeneId":"4976"},{"alias":"IGLON1","entrezGeneId":"4978"},{"alias":"OBCAM","entrezGeneId":"4978"},{"alias":"OPCM","entrezGeneId":"4978"},{"alias":"OCIF","entrezGeneId":"4982"},{"alias":"OPG","entrezGeneId":"4982"},{"alias":"PDB5","entrezGeneId":"4982"},{"alias":"TR1","entrezGeneId":"4982"},{"alias":"ARHGAP41","entrezGeneId":"4983"},{"alias":"MRX60","entrezGeneId":"4983"},{"alias":"OPN1","entrezGeneId":"4983"},{"alias":"OPRD","entrezGeneId":"4985"},{"alias":"K-OR-1","entrezGeneId":"4986"},{"alias":"KOR","entrezGeneId":"4986"},{"alias":"KOR-1","entrezGeneId":"4986"},{"alias":"OPRK","entrezGeneId":"4986"},{"alias":"KOR-3","entrezGeneId":"4987"},{"alias":"NOCIR","entrezGeneId":"4987"},{"alias":"NOP","entrezGeneId":"4987"},{"alias":"NOPr","entrezGeneId":"4987"},{"alias":"OOR","entrezGeneId":"4987"},{"alias":"ORL1","entrezGeneId":"4987"},{"alias":"LMOR","entrezGeneId":"4988"},{"alias":"M-OR-1","entrezGeneId":"4988"},{"alias":"MOP","entrezGeneId":"4988"},{"alias":"MOR","entrezGeneId":"4988"},{"alias":"MOR1","entrezGeneId":"4988"},{"alias":"OPRM","entrezGeneId":"4988"},{"alias":"MCOPCT2","entrezGeneId":"4990"},{"alias":"ODRMD","entrezGeneId":"4990"},{"alias":"OPTX2","entrezGeneId":"4990"},{"alias":"Six9","entrezGeneId":"4990"},{"alias":"OLFR1","entrezGeneId":"4991"},{"alias":"OR17-4","entrezGeneId":"4991"},{"alias":"OLFMF","entrezGeneId":"4992"},{"alias":"OR16-36","entrezGeneId":"4992"},{"alias":"OR16-37","entrezGeneId":"4992"},{"alias":"OR16-88","entrezGeneId":"4992"},{"alias":"OR16-89","entrezGeneId":"4992"},{"alias":"OR16-90","entrezGeneId":"4992"},{"alias":"OR1F10","entrezGeneId":"4992"},{"alias":"OR1F13P","entrezGeneId":"4992"},{"alias":"OR1F4","entrezGeneId":"4992"},{"alias":"OR1F5","entrezGeneId":"4992"},{"alias":"OR1F6","entrezGeneId":"4992"},{"alias":"OR1F7","entrezGeneId":"4992"},{"alias":"OR1F8","entrezGeneId":"4992"},{"alias":"OR1F9","entrezGeneId":"4992"},{"alias":"OR3-145","entrezGeneId":"4992"},{"alias":"ORL1023","entrezGeneId":"4992"},{"alias":"OLFmf3","entrezGeneId":"4993"},{"alias":"OR2C2P","entrezGeneId":"4993"},{"alias":"OLFRA03","entrezGeneId":"4994"},{"alias":"OR17-40","entrezGeneId":"4994"},{"alias":"OR17-82","entrezGeneId":"4994"},{"alias":"OR40","entrezGeneId":"4994"},{"alias":"OLFRA04","entrezGeneId":"4995"},{"alias":"OR17-14","entrezGeneId":"4995"},{"alias":"OR17-228","entrezGeneId":"4995"},{"alias":"OR228","entrezGeneId":"4995"},{"alias":"HSORC1","entrezGeneId":"4998"},{"alias":"ORC1L","entrezGeneId":"4998"},{"alias":"PARC1","entrezGeneId":"4998"},{"alias":"ORC2L","entrezGeneId":"4999"},{"alias":"ORC4L","entrezGeneId":"5000"},{"alias":"ORC4P","entrezGeneId":"5000"},{"alias":"ORC5L","entrezGeneId":"5001"},{"alias":"ORC5P","entrezGeneId":"5001"},{"alias":"ORC5T","entrezGeneId":"5001"},{"alias":"PPP1R117","entrezGeneId":"5001"},{"alias":"BWR1A","entrezGeneId":"5002"},{"alias":"BWSCR1A","entrezGeneId":"5002"},{"alias":"HET","entrezGeneId":"5002"},{"alias":"IMPT1","entrezGeneId":"5002"},{"alias":"ITM","entrezGeneId":"5002"},{"alias":"ORCTL2","entrezGeneId":"5002"},{"alias":"p45-BWR1A","entrezGeneId":"5002"},{"alias":"SLC22A1L","entrezGeneId":"5002"},{"alias":"TSSC5","entrezGeneId":"5002"},{"alias":"BWR1B","entrezGeneId":"5003"},{"alias":"BWSCR1B","entrezGeneId":"5003"},{"alias":"ORCTL2S","entrezGeneId":"5003"},{"alias":"p27-BWR1B","entrezGeneId":"5003"},{"alias":"SLC22A1LS","entrezGeneId":"5003"},{"alias":"AGP-A","entrezGeneId":"5004"},{"alias":"AGP1","entrezGeneId":"5004"},{"alias":"HEL-S-153w","entrezGeneId":"5004"},{"alias":"ORM","entrezGeneId":"5004"},{"alias":"AGP-B","entrezGeneId":"5005"},{"alias":"AGP-B'","entrezGeneId":"5005"},{"alias":"AGP2","entrezGeneId":"5005"},{"alias":"OSBP1","entrezGeneId":"5007"},{"alias":"OCTD","entrezGeneId":"5009"},{"alias":"OSP","entrezGeneId":"5010"},{"alias":"OTM","entrezGeneId":"5010"},{"alias":"OTS","entrezGeneId":"5012"},{"alias":"CPHD6","entrezGeneId":"5015"},{"alias":"MCOPS5","entrezGeneId":"5015"},{"alias":"CHIT5","entrezGeneId":"5016"},{"alias":"EGP","entrezGeneId":"5016"},{"alias":"MUC9","entrezGeneId":"5016"},{"alias":"OGP","entrezGeneId":"5016"},{"alias":"HOVO1","entrezGeneId":"5017"},{"alias":"OXA1","entrezGeneId":"5018"},{"alias":"OXCT","entrezGeneId":"5019"},{"alias":"SCOT","entrezGeneId":"5019"},{"alias":"OT","entrezGeneId":"5020"},{"alias":"OT-NPI","entrezGeneId":"5020"},{"alias":"OXT-NPI","entrezGeneId":"5020"},{"alias":"OT-R","entrezGeneId":"5021"},{"alias":"P2X1","entrezGeneId":"5023"},{"alias":"P2X3","entrezGeneId":"5024"},{"alias":"P2X4","entrezGeneId":"5025"},{"alias":"P2X4R","entrezGeneId":"5025"},{"alias":"LRH-1","entrezGeneId":"5026"},{"alias":"P2X5","entrezGeneId":"5026"},{"alias":"P2X5R","entrezGeneId":"5026"},{"alias":"P2X7","entrezGeneId":"5027"},{"alias":"P2Y1","entrezGeneId":"5028"},{"alias":"SARCC","entrezGeneId":"5028"},{"alias":"HP2U","entrezGeneId":"5029"},{"alias":"P2RU1","entrezGeneId":"5029"},{"alias":"P2U","entrezGeneId":"5029"},{"alias":"P2U1","entrezGeneId":"5029"},{"alias":"P2UR","entrezGeneId":"5029"},{"alias":"P2Y2","entrezGeneId":"5029"},{"alias":"P2Y2R","entrezGeneId":"5029"},{"alias":"NRU","entrezGeneId":"5030"},{"alias":"P2P","entrezGeneId":"5030"},{"alias":"P2Y4","entrezGeneId":"5030"},{"alias":"UNR","entrezGeneId":"5030"},{"alias":"P2Y6","entrezGeneId":"5031"},{"alias":"P2Y11","entrezGeneId":"5032"},{"alias":"P4HA","entrezGeneId":"5033"},{"alias":"CLCRP1","entrezGeneId":"5034"},{"alias":"DSI","entrezGeneId":"5034"},{"alias":"ERBA2L","entrezGeneId":"5034"},{"alias":"GIT","entrezGeneId":"5034"},{"alias":"P4Hbeta","entrezGeneId":"5034"},{"alias":"PDI","entrezGeneId":"5034"},{"alias":"PDIA1","entrezGeneId":"5034"},{"alias":"PHDB","entrezGeneId":"5034"},{"alias":"PO4DB","entrezGeneId":"5034"},{"alias":"PO4HB","entrezGeneId":"5034"},{"alias":"PROHB","entrezGeneId":"5034"},{"alias":"EBP1","entrezGeneId":"5036"},{"alias":"HG4-1","entrezGeneId":"5036"},{"alias":"p38-2G4","entrezGeneId":"5036"},{"alias":"HCNP","entrezGeneId":"5037"},{"alias":"HCNPpp","entrezGeneId":"5037"},{"alias":"HEL-210","entrezGeneId":"5037"},{"alias":"HEL-S-34","entrezGeneId":"5037"},{"alias":"HEL-S-96","entrezGeneId":"5037"},{"alias":"PBP","entrezGeneId":"5037"},{"alias":"PEBP","entrezGeneId":"5037"},{"alias":"PEBP-1","entrezGeneId":"5037"},{"alias":"RKIP","entrezGeneId":"5037"},{"alias":"PABP3","entrezGeneId":"5042"},{"alias":"PABPL3","entrezGeneId":"5042"},{"alias":"tPABP","entrezGeneId":"5042"},{"alias":"FUR","entrezGeneId":"5045"},{"alias":"PACE","entrezGeneId":"5045"},{"alias":"PCSK3","entrezGeneId":"5045"},{"alias":"SPC1","entrezGeneId":"5045"},{"alias":"PACE4","entrezGeneId":"5046"},{"alias":"SPC4","entrezGeneId":"5046"},{"alias":"GD","entrezGeneId":"5047"},{"alias":"GdA","entrezGeneId":"5047"},{"alias":"GdF","entrezGeneId":"5047"},{"alias":"GdS","entrezGeneId":"5047"},{"alias":"PAEG","entrezGeneId":"5047"},{"alias":"PEP","entrezGeneId":"5047"},{"alias":"PP14","entrezGeneId":"5047"},{"alias":"ZIF-1","entrezGeneId":"5047"},{"alias":"LIS1","entrezGeneId":"5048"},{"alias":"LIS2","entrezGeneId":"5048"},{"alias":"MDCR","entrezGeneId":"5048"},{"alias":"MDS","entrezGeneId":"5048"},{"alias":"NudF","entrezGeneId":"5048"},{"alias":"PAFAH","entrezGeneId":"5048"},{"alias":"HEL-S-303","entrezGeneId":"5049"},{"alias":"PAFAHG","entrezGeneId":"5050"},{"alias":"HSD-PLA2","entrezGeneId":"5051"},{"alias":"MSP23","entrezGeneId":"5052"},{"alias":"NKEF-A","entrezGeneId":"5052"},{"alias":"NKEFA","entrezGeneId":"5052"},{"alias":"PAG","entrezGeneId":"5052"},{"alias":"PAGA","entrezGeneId":"5052"},{"alias":"PAGB","entrezGeneId":"5052"},{"alias":"PRX1","entrezGeneId":"5052"},{"alias":"PRXI","entrezGeneId":"5052"},{"alias":"TDPX2","entrezGeneId":"5052"},{"alias":"PH","entrezGeneId":"5053"},{"alias":"PKU","entrezGeneId":"5053"},{"alias":"PKU1","entrezGeneId":"5053"},{"alias":"PAI","entrezGeneId":"5054"},{"alias":"PAI-1","entrezGeneId":"5054"},{"alias":"PAI1","entrezGeneId":"5054"},{"alias":"PLANH1","entrezGeneId":"5054"},{"alias":"HsT1201","entrezGeneId":"5055"},{"alias":"PAI","entrezGeneId":"5055"},{"alias":"PAI-2","entrezGeneId":"5055"},{"alias":"PAI2","entrezGeneId":"5055"},{"alias":"PLANH2","entrezGeneId":"5055"},{"alias":"PAKalpha","entrezGeneId":"5058"},{"alias":"PAK65","entrezGeneId":"5062"},{"alias":"PAKgamma","entrezGeneId":"5062"},{"alias":"ARA","entrezGeneId":"5063"},{"alias":"beta-PAK","entrezGeneId":"5063"},{"alias":"bPAK","entrezGeneId":"5063"},{"alias":"MRX30","entrezGeneId":"5063"},{"alias":"MRX47","entrezGeneId":"5063"},{"alias":"OPHN3","entrezGeneId":"5063"},{"alias":"PAK-3","entrezGeneId":"5063"},{"alias":"PAK3beta","entrezGeneId":"5063"},{"alias":"PAL","entrezGeneId":"5066"},{"alias":"PHM","entrezGeneId":"5066"},{"alias":"BIG-1","entrezGeneId":"5067"},{"alias":"PANG","entrezGeneId":"5067"},{"alias":"PCS","entrezGeneId":"5067"},{"alias":"HIP","entrezGeneId":"5068"},{"alias":"HIP/PAP","entrezGeneId":"5068"},{"alias":"INGAP","entrezGeneId":"5068"},{"alias":"PAP","entrezGeneId":"5068"},{"alias":"PAP-H","entrezGeneId":"5068"},{"alias":"PAP1","entrezGeneId":"5068"},{"alias":"PBCGF","entrezGeneId":"5068"},{"alias":"REG-III","entrezGeneId":"5068"},{"alias":"REG3","entrezGeneId":"5068"},{"alias":"ASBABP2","entrezGeneId":"5069"},{"alias":"DIPLA1","entrezGeneId":"5069"},{"alias":"IGFBP-4ase","entrezGeneId":"5069"},{"alias":"PAPA","entrezGeneId":"5069"},{"alias":"PAPP-A","entrezGeneId":"5069"},{"alias":"PAPPA1","entrezGeneId":"5069"},{"alias":"AR-JP","entrezGeneId":"5071"},{"alias":"LPRS2","entrezGeneId":"5071"},{"alias":"PARK2","entrezGeneId":"5071"},{"alias":"PDJ","entrezGeneId":"5071"},{"alias":"DAN","entrezGeneId":"5073"},{"alias":"DKCB6","entrezGeneId":"5073"},{"alias":"PFBMFT4","entrezGeneId":"5073"},{"alias":"Par-4","entrezGeneId":"5074"},{"alias":"PAR4","entrezGeneId":"5074"},{"alias":"HUP48","entrezGeneId":"5075"},{"alias":"OFC2","entrezGeneId":"5075"},{"alias":"FSGS7","entrezGeneId":"5076"},{"alias":"PAPRS","entrezGeneId":"5076"},{"alias":"CDHS","entrezGeneId":"5077"},{"alias":"HUP2","entrezGeneId":"5077"},{"alias":"WS1","entrezGeneId":"5077"},{"alias":"WS3","entrezGeneId":"5077"},{"alias":"KPD","entrezGeneId":"5078"},{"alias":"MODY9","entrezGeneId":"5078"},{"alias":"ALL3","entrezGeneId":"5079"},{"alias":"BSAP","entrezGeneId":"5079"},{"alias":"AN","entrezGeneId":"5080"},{"alias":"AN2","entrezGeneId":"5080"},{"alias":"ASGD5","entrezGeneId":"5080"},{"alias":"D11S812E","entrezGeneId":"5080"},{"alias":"FVH1","entrezGeneId":"5080"},{"alias":"MGDA","entrezGeneId":"5080"},{"alias":"WAGR","entrezGeneId":"5080"},{"alias":"HUP1","entrezGeneId":"5081"},{"alias":"PAX7B","entrezGeneId":"5081"},{"alias":"RMS2","entrezGeneId":"5081"},{"alias":"PhLP","entrezGeneId":"5082"},{"alias":"STHAG3","entrezGeneId":"5083"},{"alias":"CAKUHED","entrezGeneId":"5087"},{"alias":"PBX2","entrezGeneId":"5088"},{"alias":"PBXP1","entrezGeneId":"5088"},{"alias":"G17","entrezGeneId":"5089"},{"alias":"HOX12","entrezGeneId":"5089"},{"alias":"PBX2MHC","entrezGeneId":"5089"},{"alias":"PCB","entrezGeneId":"5091"},{"alias":"DCOH","entrezGeneId":"5092"},{"alias":"PCBD","entrezGeneId":"5092"},{"alias":"PCD","entrezGeneId":"5092"},{"alias":"PHS","entrezGeneId":"5092"},{"alias":"HEL-S-85","entrezGeneId":"5093"},{"alias":"hnRNP-E1","entrezGeneId":"5093"},{"alias":"hnRNP-X","entrezGeneId":"5093"},{"alias":"HNRPE1","entrezGeneId":"5093"},{"alias":"HNRPX","entrezGeneId":"5093"},{"alias":"hnRNP-E2","entrezGeneId":"5094"},{"alias":"HNRNPE2","entrezGeneId":"5094"},{"alias":"HNRPE2","entrezGeneId":"5094"},{"alias":"PC42","entrezGeneId":"5097"},{"alias":"PCDH42","entrezGeneId":"5097"},{"alias":"PC43","entrezGeneId":"5098"},{"alias":"PCDH-GAMMA-C3","entrezGeneId":"5098"},{"alias":"PCDH2","entrezGeneId":"5098"},{"alias":"BH-Pcdh","entrezGeneId":"5099"},{"alias":"BHPCDH","entrezGeneId":"5099"},{"alias":"PPP1R120","entrezGeneId":"5099"},{"alias":"ARCADLIN","entrezGeneId":"5100"},{"alias":"PAPC","entrezGeneId":"5100"},{"alias":"PAI-3","entrezGeneId":"5104"},{"alias":"PAI3","entrezGeneId":"5104"},{"alias":"PCI","entrezGeneId":"5104"},{"alias":"PCI-B","entrezGeneId":"5104"},{"alias":"PLANH3","entrezGeneId":"5104"},{"alias":"PROCI","entrezGeneId":"5104"},{"alias":"PCKDC","entrezGeneId":"5105"},{"alias":"PEPCK-C","entrezGeneId":"5105"},{"alias":"PEPCK1","entrezGeneId":"5105"},{"alias":"PEPCKC","entrezGeneId":"5105"},{"alias":"PEPCK","entrezGeneId":"5106"},{"alias":"PEPCK-M","entrezGeneId":"5106"},{"alias":"PEPCK2","entrezGeneId":"5106"},{"alias":"PTC4","entrezGeneId":"5108"},{"alias":"RET/PCM-1","entrezGeneId":"5108"},{"alias":"PIMT","entrezGeneId":"5110"},{"alias":"ATLD2","entrezGeneId":"5111"},{"alias":"KEN","entrezGeneId":"5116"},{"alias":"MOPD2","entrezGeneId":"5116"},{"alias":"PCN","entrezGeneId":"5116"},{"alias":"PCNT2","entrezGeneId":"5116"},{"alias":"PCNTB","entrezGeneId":"5116"},{"alias":"PCTN2","entrezGeneId":"5116"},{"alias":"SCKL4","entrezGeneId":"5116"},{"alias":"PCPE","entrezGeneId":"5118"},{"alias":"PCPE-1","entrezGeneId":"5118"},{"alias":"PCPE1","entrezGeneId":"5118"},{"alias":"CHMP1","entrezGeneId":"5119"},{"alias":"PCH8","entrezGeneId":"5119"},{"alias":"PCOLN3","entrezGeneId":"5119"},{"alias":"PRSM1","entrezGeneId":"5119"},{"alias":"VPS46-1","entrezGeneId":"5119"},{"alias":"VPS46A","entrezGeneId":"5119"},{"alias":"PCO","entrezGeneId":"5120"},{"alias":"PCO1","entrezGeneId":"5120"},{"alias":"PEP-19","entrezGeneId":"5121"},{"alias":"BMIQ12","entrezGeneId":"5122"},{"alias":"NEC1","entrezGeneId":"5122"},{"alias":"PC1","entrezGeneId":"5122"},{"alias":"PC3","entrezGeneId":"5122"},{"alias":"SPC3","entrezGeneId":"5122"},{"alias":"PC5","entrezGeneId":"5125"},{"alias":"PC6","entrezGeneId":"5125"},{"alias":"PC6A","entrezGeneId":"5125"},{"alias":"SPC6","entrezGeneId":"5125"},{"alias":"NEC 2","entrezGeneId":"5126"},{"alias":"NEC-2","entrezGeneId":"5126"},{"alias":"NEC2","entrezGeneId":"5126"},{"alias":"PC2","entrezGeneId":"5126"},{"alias":"SPC2","entrezGeneId":"5126"},{"alias":"PCTAIRE","entrezGeneId":"5127"},{"alias":"PCTAIRE1","entrezGeneId":"5127"},{"alias":"PCTGAIRE","entrezGeneId":"5127"},{"alias":"PCTK1","entrezGeneId":"5127"},{"alias":"PCTAIRE2","entrezGeneId":"5128"},{"alias":"PCTK2","entrezGeneId":"5128"},{"alias":"PCTAIRE","entrezGeneId":"5129"},{"alias":"PCTAIRE3","entrezGeneId":"5129"},{"alias":"PCTK3","entrezGeneId":"5129"},{"alias":"CCTA","entrezGeneId":"5130"},{"alias":"CT","entrezGeneId":"5130"},{"alias":"CTA","entrezGeneId":"5130"},{"alias":"CTPCT","entrezGeneId":"5130"},{"alias":"PCYT1","entrezGeneId":"5130"},{"alias":"SMDCRD","entrezGeneId":"5130"},{"alias":"PDB","entrezGeneId":"5131"},{"alias":"MEKA","entrezGeneId":"5132"},{"alias":"PHD","entrezGeneId":"5132"},{"alias":"PhLOP","entrezGeneId":"5132"},{"alias":"PhLP","entrezGeneId":"5132"},{"alias":"CD279","entrezGeneId":"5133"},{"alias":"hPD-1","entrezGeneId":"5133"},{"alias":"hPD-l","entrezGeneId":"5133"},{"alias":"hSLE1","entrezGeneId":"5133"},{"alias":"PD-1","entrezGeneId":"5133"},{"alias":"PD1","entrezGeneId":"5133"},{"alias":"SLEB2","entrezGeneId":"5133"},{"alias":"RP8","entrezGeneId":"5134"},{"alias":"ZMYND7","entrezGeneId":"5134"},{"alias":"CAM-PDE-1A","entrezGeneId":"5136"},{"alias":"HCAM-1","entrezGeneId":"5136"},{"alias":"HCAM1","entrezGeneId":"5136"},{"alias":"HSPDE1A","entrezGeneId":"5136"},{"alias":"cam-PDE 1C","entrezGeneId":"5137"},{"alias":"hCam-3","entrezGeneId":"5137"},{"alias":"Hcam3","entrezGeneId":"5137"},{"alias":"CGS-PDE","entrezGeneId":"5138"},{"alias":"cGSPDE","entrezGeneId":"5138"},{"alias":"PDE2A1","entrezGeneId":"5138"},{"alias":"PED2A4","entrezGeneId":"5138"},{"alias":"CGI-PDE","entrezGeneId":"5139"},{"alias":"CGI-PDE A","entrezGeneId":"5139"},{"alias":"CGI-PDE-A","entrezGeneId":"5139"},{"alias":"HTNB","entrezGeneId":"5139"},{"alias":"cGIPDE1","entrezGeneId":"5140"},{"alias":"HcGIP1","entrezGeneId":"5140"},{"alias":"DPDE2","entrezGeneId":"5141"},{"alias":"PDE4","entrezGeneId":"5141"},{"alias":"PDE46","entrezGeneId":"5141"},{"alias":"DPDE4","entrezGeneId":"5142"},{"alias":"PDEIVB","entrezGeneId":"5142"},{"alias":"DPDE1","entrezGeneId":"5143"},{"alias":"PDE21","entrezGeneId":"5143"},{"alias":"ACRDYS2","entrezGeneId":"5144"},{"alias":"DPDE3","entrezGeneId":"5144"},{"alias":"HSPDE4D","entrezGeneId":"5144"},{"alias":"PDE43","entrezGeneId":"5144"},{"alias":"PDE4DN2","entrezGeneId":"5144"},{"alias":"STRK1","entrezGeneId":"5144"},{"alias":"CGPR-A","entrezGeneId":"5145"},{"alias":"PDEA","entrezGeneId":"5145"},{"alias":"RP43","entrezGeneId":"5145"},{"alias":"ACHM5","entrezGeneId":"5146"},{"alias":"COD4","entrezGeneId":"5146"},{"alias":"PDEA2","entrezGeneId":"5146"},{"alias":"JBTS22","entrezGeneId":"5147"},{"alias":"PDED","entrezGeneId":"5147"},{"alias":"PDEG","entrezGeneId":"5148"},{"alias":"RP57","entrezGeneId":"5148"},{"alias":"ACHM6","entrezGeneId":"5149"},{"alias":"RCD3","entrezGeneId":"5149"},{"alias":"HCP1","entrezGeneId":"5150"},{"alias":"PDE7","entrezGeneId":"5150"},{"alias":"HsT19550","entrezGeneId":"5151"},{"alias":"HSPDE9A2","entrezGeneId":"5152"},{"alias":"HEL-S-79p","entrezGeneId":"5153"},{"alias":"PDE1B1","entrezGeneId":"5153"},{"alias":"PDES1B","entrezGeneId":"5153"},{"alias":"PDGF-A","entrezGeneId":"5154"},{"alias":"PDGF1","entrezGeneId":"5154"},{"alias":"c-sis","entrezGeneId":"5155"},{"alias":"IBGC5","entrezGeneId":"5155"},{"alias":"PDGF-2","entrezGeneId":"5155"},{"alias":"PDGF2","entrezGeneId":"5155"},{"alias":"SIS","entrezGeneId":"5155"},{"alias":"SSV","entrezGeneId":"5155"},{"alias":"CD140A","entrezGeneId":"5156"},{"alias":"PDGFR-2","entrezGeneId":"5156"},{"alias":"PDGFR2","entrezGeneId":"5156"},{"alias":"PDGRL","entrezGeneId":"5157"},{"alias":"PRLTS","entrezGeneId":"5157"},{"alias":"CSNB3","entrezGeneId":"5158"},{"alias":"CSNBAD2","entrezGeneId":"5158"},{"alias":"GMP-PDEbeta","entrezGeneId":"5158"},{"alias":"PDEB","entrezGeneId":"5158"},{"alias":"rd1","entrezGeneId":"5158"},{"alias":"RP40","entrezGeneId":"5158"},{"alias":"CD140B","entrezGeneId":"5159"},{"alias":"IBGC4","entrezGeneId":"5159"},{"alias":"IMF1","entrezGeneId":"5159"},{"alias":"JTK12","entrezGeneId":"5159"},{"alias":"KOGS","entrezGeneId":"5159"},{"alias":"PDGFR","entrezGeneId":"5159"},{"alias":"PDGFR-1","entrezGeneId":"5159"},{"alias":"PDGFR1","entrezGeneId":"5159"},{"alias":"PENTT","entrezGeneId":"5159"},{"alias":"PDHA","entrezGeneId":"5160"},{"alias":"PDHAD","entrezGeneId":"5160"},{"alias":"PDHCE1A","entrezGeneId":"5160"},{"alias":"PHE1A","entrezGeneId":"5160"},{"alias":"PDHAL","entrezGeneId":"5161"},{"alias":"PDHBD","entrezGeneId":"5162"},{"alias":"PDHE1-B","entrezGeneId":"5162"},{"alias":"PDHE1B","entrezGeneId":"5162"},{"alias":"PHE1B","entrezGeneId":"5162"},{"alias":"PDHK2","entrezGeneId":"5164"},{"alias":"PDKII","entrezGeneId":"5164"},{"alias":"CMTX6","entrezGeneId":"5165"},{"alias":"GS1-358P8.4","entrezGeneId":"5165"},{"alias":"ARHR2","entrezGeneId":"5167"},{"alias":"COLED","entrezGeneId":"5167"},{"alias":"M6S1","entrezGeneId":"5167"},{"alias":"NPP1","entrezGeneId":"5167"},{"alias":"NPPS","entrezGeneId":"5167"},{"alias":"PC-1","entrezGeneId":"5167"},{"alias":"PCA1","entrezGeneId":"5167"},{"alias":"PDNP1","entrezGeneId":"5167"},{"alias":"ATX","entrezGeneId":"5168"},{"alias":"ATX-X","entrezGeneId":"5168"},{"alias":"AUTOTAXIN","entrezGeneId":"5168"},{"alias":"LysoPLD","entrezGeneId":"5168"},{"alias":"NPP2","entrezGeneId":"5168"},{"alias":"PD-IALPHA","entrezGeneId":"5168"},{"alias":"PDNP2","entrezGeneId":"5168"},{"alias":"B10","entrezGeneId":"5169"},{"alias":"CD203c","entrezGeneId":"5169"},{"alias":"NPP3","entrezGeneId":"5169"},{"alias":"PD-IBETA","entrezGeneId":"5169"},{"alias":"PDNP3","entrezGeneId":"5169"},{"alias":"PDK1","entrezGeneId":"5170"},{"alias":"PDPK2","entrezGeneId":"5170"},{"alias":"PDPK2P","entrezGeneId":"5170"},{"alias":"PRO0461","entrezGeneId":"5170"},{"alias":"DFNB4","entrezGeneId":"5172"},{"alias":"EVA","entrezGeneId":"5172"},{"alias":"PDS","entrezGeneId":"5172"},{"alias":"TDH2B","entrezGeneId":"5172"},{"alias":"ADCA","entrezGeneId":"5173"},{"alias":"PENKB","entrezGeneId":"5173"},{"alias":"SCA23","entrezGeneId":"5173"},{"alias":"CAP70","entrezGeneId":"5174"},{"alias":"CLAMP","entrezGeneId":"5174"},{"alias":"NHERF-3","entrezGeneId":"5174"},{"alias":"NHERF3","entrezGeneId":"5174"},{"alias":"PDZD1","entrezGeneId":"5174"},{"alias":"CD31","entrezGeneId":"5175"},{"alias":"CD31/EndoCAM","entrezGeneId":"5175"},{"alias":"endoCAM","entrezGeneId":"5175"},{"alias":"GPIIA'","entrezGeneId":"5175"},{"alias":"PECA1","entrezGeneId":"5175"},{"alias":"PECAM-1","entrezGeneId":"5175"},{"alias":"EPC-1","entrezGeneId":"5176"},{"alias":"OI12","entrezGeneId":"5176"},{"alias":"OI6","entrezGeneId":"5176"},{"alias":"PEDF","entrezGeneId":"5176"},{"alias":"PIG35","entrezGeneId":"5176"},{"alias":"PEE","entrezGeneId":"5177"},{"alias":"PIH","entrezGeneId":"5177"},{"alias":"PREG1","entrezGeneId":"5177"},{"alias":"PW1","entrezGeneId":"5178"},{"alias":"ZKSCAN22","entrezGeneId":"5178"},{"alias":"ZNF904","entrezGeneId":"5178"},{"alias":"ZSCAN24","entrezGeneId":"5178"},{"alias":"PE","entrezGeneId":"5179"},{"alias":"PENK-A","entrezGeneId":"5179"},{"alias":"PROLIDASE","entrezGeneId":"5184"},{"alias":"hPER","entrezGeneId":"5187"},{"alias":"PER","entrezGeneId":"5187"},{"alias":"RIGUI","entrezGeneId":"5187"},{"alias":"HSPC199","entrezGeneId":"5188"},{"alias":"PET112","entrezGeneId":"5188"},{"alias":"PET112L","entrezGeneId":"5188"},{"alias":"HMLR1","entrezGeneId":"5189"},{"alias":"PBD1A","entrezGeneId":"5189"},{"alias":"PBD1B","entrezGeneId":"5189"},{"alias":"ZWS","entrezGeneId":"5189"},{"alias":"ZWS1","entrezGeneId":"5189"},{"alias":"HMLR2","entrezGeneId":"5190"},{"alias":"PAF-2","entrezGeneId":"5190"},{"alias":"PAF2","entrezGeneId":"5190"},{"alias":"PBD4A","entrezGeneId":"5190"},{"alias":"PDB4B","entrezGeneId":"5190"},{"alias":"PXAAA1","entrezGeneId":"5190"},{"alias":"PBD9B","entrezGeneId":"5191"},{"alias":"PTS2R","entrezGeneId":"5191"},{"alias":"RCDP1","entrezGeneId":"5191"},{"alias":"RD","entrezGeneId":"5191"},{"alias":"NALD","entrezGeneId":"5192"},{"alias":"PBD6A","entrezGeneId":"5192"},{"alias":"PBD6B","entrezGeneId":"5192"},{"alias":"RNF69","entrezGeneId":"5192"},{"alias":"PAF-3","entrezGeneId":"5193"},{"alias":"PBD3A","entrezGeneId":"5193"},{"alias":"NALD","entrezGeneId":"5194"},{"alias":"PBD11A","entrezGeneId":"5194"},{"alias":"PBD11B","entrezGeneId":"5194"},{"alias":"ZWS","entrezGeneId":"5194"},{"alias":"dJ734G22.2","entrezGeneId":"5195"},{"alias":"NAPP2","entrezGeneId":"5195"},{"alias":"PBD13A","entrezGeneId":"5195"},{"alias":"Pex14p","entrezGeneId":"5195"},{"alias":"CXCL4","entrezGeneId":"5196"},{"alias":"PF-4","entrezGeneId":"5196"},{"alias":"SCYB4","entrezGeneId":"5196"},{"alias":"CXCL4L1","entrezGeneId":"5197"},{"alias":"CXCL4V1","entrezGeneId":"5197"},{"alias":"PF4-ALT","entrezGeneId":"5197"},{"alias":"PF4A","entrezGeneId":"5197"},{"alias":"SCYB4V1","entrezGeneId":"5197"},{"alias":"FGAMS","entrezGeneId":"5198"},{"alias":"FGAR-AT","entrezGeneId":"5198"},{"alias":"FGARAT","entrezGeneId":"5198"},{"alias":"GATD8","entrezGeneId":"5198"},{"alias":"PURL","entrezGeneId":"5198"},{"alias":"BFD","entrezGeneId":"5199"},{"alias":"PFC","entrezGeneId":"5199"},{"alias":"PFD","entrezGeneId":"5199"},{"alias":"PROPERDIN","entrezGeneId":"5199"},{"alias":"PDF","entrezGeneId":"5201"},{"alias":"PFD1","entrezGeneId":"5201"},{"alias":"PFD2","entrezGeneId":"5202"},{"alias":"C1","entrezGeneId":"5203"},{"alias":"PFD4","entrezGeneId":"5203"},{"alias":"MM-1","entrezGeneId":"5204"},{"alias":"MM1","entrezGeneId":"5204"},{"alias":"PFD5","entrezGeneId":"5204"},{"alias":"ATPIC","entrezGeneId":"5205"},{"alias":"BRIC","entrezGeneId":"5205"},{"alias":"FIC1","entrezGeneId":"5205"},{"alias":"ICP1","entrezGeneId":"5205"},{"alias":"PFIC","entrezGeneId":"5205"},{"alias":"PFIC1","entrezGeneId":"5205"},{"alias":"F6PK","entrezGeneId":"5207"},{"alias":"HL2K","entrezGeneId":"5207"},{"alias":"PFRX","entrezGeneId":"5207"},{"alias":"PFK-2/FBPase-2","entrezGeneId":"5208"},{"alias":"iPFK-2","entrezGeneId":"5209"},{"alias":"IPFK2","entrezGeneId":"5209"},{"alias":"PFK2","entrezGeneId":"5209"},{"alias":"ATP-PFK","entrezGeneId":"5211"},{"alias":"PFK-B","entrezGeneId":"5211"},{"alias":"PFK-L","entrezGeneId":"5211"},{"alias":"VIT1","entrezGeneId":"5212"},{"alias":"ATP-PFK","entrezGeneId":"5213"},{"alias":"GSD7","entrezGeneId":"5213"},{"alias":"PFK-1","entrezGeneId":"5213"},{"alias":"PFK-A","entrezGeneId":"5213"},{"alias":"PFK1","entrezGeneId":"5213"},{"alias":"PFKA","entrezGeneId":"5213"},{"alias":"PFKX","entrezGeneId":"5213"},{"alias":"PPP1R122","entrezGeneId":"5213"},{"alias":"ATP-PFK","entrezGeneId":"5214"},{"alias":"PFK-C","entrezGeneId":"5214"},{"alias":"PFK-P","entrezGeneId":"5214"},{"alias":"PFKF","entrezGeneId":"5214"},{"alias":"ALS18","entrezGeneId":"5216"},{"alias":"D3S1319E","entrezGeneId":"5217"},{"alias":"PFL","entrezGeneId":"5217"},{"alias":"PFTAIRE1","entrezGeneId":"5218"},{"alias":"PFTK1","entrezGeneId":"5218"},{"alias":"Pg5","entrezGeneId":"5222"},{"alias":"HEL-S-35","entrezGeneId":"5223"},{"alias":"PGAM-B","entrezGeneId":"5223"},{"alias":"PGAMA","entrezGeneId":"5223"},{"alias":"GSD10","entrezGeneId":"5224"},{"alias":"PGAM-M","entrezGeneId":"5224"},{"alias":"PGAMM","entrezGeneId":"5224"},{"alias":"PEPC","entrezGeneId":"5225"},{"alias":"PGII","entrezGeneId":"5225"},{"alias":"6PGD","entrezGeneId":"5226"},{"alias":"D12S1900","entrezGeneId":"5228"},{"alias":"PGFL","entrezGeneId":"5228"},{"alias":"PIGF","entrezGeneId":"5228"},{"alias":"PLGF","entrezGeneId":"5228"},{"alias":"PlGF-2","entrezGeneId":"5228"},{"alias":"SHGC-10760","entrezGeneId":"5228"},{"alias":"BGGI","entrezGeneId":"5229"},{"alias":"GGTI","entrezGeneId":"5229"},{"alias":"HEL-S-68p","entrezGeneId":"5230"},{"alias":"MIG10","entrezGeneId":"5230"},{"alias":"PGKA","entrezGeneId":"5230"},{"alias":"dJ417L20.2","entrezGeneId":"5232"},{"alias":"HEL-S-272","entrezGeneId":"5232"},{"alias":"PGKB","entrezGeneId":"5232"},{"alias":"PGKPS","entrezGeneId":"5232"},{"alias":"PGK2","entrezGeneId":"5233"},{"alias":"CDG1T","entrezGeneId":"5236"},{"alias":"GSD14","entrezGeneId":"5236"},{"alias":"AGM1","entrezGeneId":"5238"},{"alias":"IMD23","entrezGeneId":"5238"},{"alias":"PAGM","entrezGeneId":"5238"},{"alias":"PGM 3","entrezGeneId":"5238"},{"alias":"PGMRP","entrezGeneId":"5239"},{"alias":"NR3C3","entrezGeneId":"5241"},{"alias":"PR","entrezGeneId":"5241"},{"alias":"ABC20","entrezGeneId":"5243"},{"alias":"CD243","entrezGeneId":"5243"},{"alias":"CLCS","entrezGeneId":"5243"},{"alias":"GP170","entrezGeneId":"5243"},{"alias":"MDR1","entrezGeneId":"5243"},{"alias":"P-GP","entrezGeneId":"5243"},{"alias":"PGY1","entrezGeneId":"5243"},{"alias":"ABC21","entrezGeneId":"5244"},{"alias":"GBD1","entrezGeneId":"5244"},{"alias":"ICP3","entrezGeneId":"5244"},{"alias":"MDR2","entrezGeneId":"5244"},{"alias":"MDR2/3","entrezGeneId":"5244"},{"alias":"MDR3","entrezGeneId":"5244"},{"alias":"PFIC-3","entrezGeneId":"5244"},{"alias":"PGY3","entrezGeneId":"5244"},{"alias":"HEL-215","entrezGeneId":"5245"},{"alias":"HEL-S-54e","entrezGeneId":"5245"},{"alias":"PHB1","entrezGeneId":"5245"},{"alias":"OK/SW-cl.48","entrezGeneId":"5250"},{"alias":"PHC","entrezGeneId":"5250"},{"alias":"PTP","entrezGeneId":"5250"},{"alias":"HPDR","entrezGeneId":"5251"},{"alias":"HPDR1","entrezGeneId":"5251"},{"alias":"HYP","entrezGeneId":"5251"},{"alias":"HYP1","entrezGeneId":"5251"},{"alias":"LXHR","entrezGeneId":"5251"},{"alias":"PEX","entrezGeneId":"5251"},{"alias":"XLH","entrezGeneId":"5251"},{"alias":"hPHF1","entrezGeneId":"5252"},{"alias":"MTF2L2","entrezGeneId":"5252"},{"alias":"PCL1","entrezGeneId":"5252"},{"alias":"PHF2","entrezGeneId":"5252"},{"alias":"TDRD19C","entrezGeneId":"5252"},{"alias":"CENP-35","entrezGeneId":"5253"},{"alias":"GRC5","entrezGeneId":"5253"},{"alias":"JHDM1E","entrezGeneId":"5253"},{"alias":"KDM7C","entrezGeneId":"5253"},{"alias":"PHKA","entrezGeneId":"5255"},{"alias":"GSD9A","entrezGeneId":"5256"},{"alias":"PHK","entrezGeneId":"5256"},{"alias":"PYK","entrezGeneId":"5256"},{"alias":"PYKL","entrezGeneId":"5256"},{"alias":"XLG","entrezGeneId":"5256"},{"alias":"XLG2","entrezGeneId":"5256"},{"alias":"PHKG","entrezGeneId":"5260"},{"alias":"GSD9C","entrezGeneId":"5261"},{"alias":"PHKg1ps2","entrezGeneId":"5262"},{"alias":"PHKGL","entrezGeneId":"5262"},{"alias":"LN1","entrezGeneId":"5264"},{"alias":"LNAP1","entrezGeneId":"5264"},{"alias":"PAHX","entrezGeneId":"5264"},{"alias":"PHYH1","entrezGeneId":"5264"},{"alias":"RD","entrezGeneId":"5264"},{"alias":"A1A","entrezGeneId":"5265"},{"alias":"A1AT","entrezGeneId":"5265"},{"alias":"AAT","entrezGeneId":"5265"},{"alias":"alpha1AT","entrezGeneId":"5265"},{"alias":"nNIF","entrezGeneId":"5265"},{"alias":"PI","entrezGeneId":"5265"},{"alias":"PI1","entrezGeneId":"5265"},{"alias":"PRO2275","entrezGeneId":"5265"},{"alias":"cementoin","entrezGeneId":"5266"},{"alias":"ESI","entrezGeneId":"5266"},{"alias":"SKALP","entrezGeneId":"5266"},{"alias":"WAP3","entrezGeneId":"5266"},{"alias":"WFDC14","entrezGeneId":"5266"},{"alias":"KAL","entrezGeneId":"5267"},{"alias":"kallistatin","entrezGeneId":"5267"},{"alias":"KLST","entrezGeneId":"5267"},{"alias":"KST","entrezGeneId":"5267"},{"alias":"PI-4","entrezGeneId":"5267"},{"alias":"PI4","entrezGeneId":"5267"},{"alias":"maspin","entrezGeneId":"5268"},{"alias":"PI5","entrezGeneId":"5268"},{"alias":"CAP","entrezGeneId":"5269"},{"alias":"DFNB91","entrezGeneId":"5269"},{"alias":"MSTP057","entrezGeneId":"5269"},{"alias":"PI-6","entrezGeneId":"5269"},{"alias":"PI6","entrezGeneId":"5269"},{"alias":"PTI","entrezGeneId":"5269"},{"alias":"SPI3","entrezGeneId":"5269"},{"alias":"GDN","entrezGeneId":"5270"},{"alias":"GDNPF","entrezGeneId":"5270"},{"alias":"PI-7","entrezGeneId":"5270"},{"alias":"PI7","entrezGeneId":"5270"},{"alias":"PN-1","entrezGeneId":"5270"},{"alias":"PN1","entrezGeneId":"5270"},{"alias":"PNI","entrezGeneId":"5270"},{"alias":"C18orf53","entrezGeneId":"5271"},{"alias":"CAP2","entrezGeneId":"5271"},{"alias":"HMSD","entrezGeneId":"5271"},{"alias":"HSMD-v","entrezGeneId":"5271"},{"alias":"PI-8","entrezGeneId":"5271"},{"alias":"PI8","entrezGeneId":"5271"},{"alias":"PSS5","entrezGeneId":"5271"},{"alias":"CAP-3","entrezGeneId":"5272"},{"alias":"CAP3","entrezGeneId":"5272"},{"alias":"PI-9","entrezGeneId":"5272"},{"alias":"PI9","entrezGeneId":"5272"},{"alias":"PI-10","entrezGeneId":"5273"},{"alias":"PI10","entrezGeneId":"5273"},{"alias":"neuroserpin","entrezGeneId":"5274"},{"alias":"PI12","entrezGeneId":"5274"},{"alias":"headpin","entrezGeneId":"5275"},{"alias":"HSHUR7SEQ","entrezGeneId":"5275"},{"alias":"HUR7","entrezGeneId":"5275"},{"alias":"PI13","entrezGeneId":"5275"},{"alias":"MEPI","entrezGeneId":"5276"},{"alias":"PANCPIN","entrezGeneId":"5276"},{"alias":"PI14","entrezGeneId":"5276"},{"alias":"TSA2004","entrezGeneId":"5276"},{"alias":"GPI3","entrezGeneId":"5277"},{"alias":"MCAHS2","entrezGeneId":"5277"},{"alias":"PIG-A","entrezGeneId":"5277"},{"alias":"PNH1","entrezGeneId":"5277"},{"alias":"PIG-A-II","entrezGeneId":"5278"},{"alias":"GPI2","entrezGeneId":"5279"},{"alias":"GPIBD16","entrezGeneId":"5279"},{"alias":"MRT62","entrezGeneId":"5279"},{"alias":"GPI-H","entrezGeneId":"5283"},{"alias":"CPK","entrezGeneId":"5286"},{"alias":"PI3-K-C2(ALPHA)","entrezGeneId":"5286"},{"alias":"PI3-K-C2A","entrezGeneId":"5286"},{"alias":"PI3K-C2-alpha","entrezGeneId":"5286"},{"alias":"PI3K-C2alpha","entrezGeneId":"5286"},{"alias":"C2-PI3K","entrezGeneId":"5287"},{"alias":"PI3K-C2-gamma","entrezGeneId":"5288"},{"alias":"PI3K-C2GAMMA","entrezGeneId":"5288"},{"alias":"hVps34","entrezGeneId":"5289"},{"alias":"VPS34","entrezGeneId":"5289"},{"alias":"CLOVE","entrezGeneId":"5290"},{"alias":"CWS5","entrezGeneId":"5290"},{"alias":"MCAP","entrezGeneId":"5290"},{"alias":"MCM","entrezGeneId":"5290"},{"alias":"MCMTC","entrezGeneId":"5290"},{"alias":"p110-alpha","entrezGeneId":"5290"},{"alias":"PI3K","entrezGeneId":"5290"},{"alias":"PI3K-alpha","entrezGeneId":"5290"},{"alias":"P110BETA","entrezGeneId":"5291"},{"alias":"PI3K","entrezGeneId":"5291"},{"alias":"PI3KBETA","entrezGeneId":"5291"},{"alias":"PIK3C1","entrezGeneId":"5291"},{"alias":"PIM","entrezGeneId":"5292"},{"alias":"APDS","entrezGeneId":"5293"},{"alias":"IMD14","entrezGeneId":"5293"},{"alias":"p110D","entrezGeneId":"5293"},{"alias":"P110DELTA","entrezGeneId":"5293"},{"alias":"PI3K","entrezGeneId":"5293"},{"alias":"p110gamma","entrezGeneId":"5294"},{"alias":"p120-PI3K","entrezGeneId":"5294"},{"alias":"PI3CG","entrezGeneId":"5294"},{"alias":"PI3K","entrezGeneId":"5294"},{"alias":"PI3Kgamma","entrezGeneId":"5294"},{"alias":"PIK3","entrezGeneId":"5294"},{"alias":"AGM7","entrezGeneId":"5295"},{"alias":"GRB1","entrezGeneId":"5295"},{"alias":"IMD36","entrezGeneId":"5295"},{"alias":"p85","entrezGeneId":"5295"},{"alias":"p85-ALPHA","entrezGeneId":"5295"},{"alias":"MPPH","entrezGeneId":"5296"},{"alias":"MPPH1","entrezGeneId":"5296"},{"alias":"p85","entrezGeneId":"5296"},{"alias":"p85-BETA","entrezGeneId":"5296"},{"alias":"P85B","entrezGeneId":"5296"},{"alias":"PI4K-ALPHA","entrezGeneId":"5297"},{"alias":"pi4K230","entrezGeneId":"5297"},{"alias":"PIK4CA","entrezGeneId":"5297"},{"alias":"PMGYCHA","entrezGeneId":"5297"},{"alias":"NPIK","entrezGeneId":"5298"},{"alias":"PI4K-BETA","entrezGeneId":"5298"},{"alias":"PI4K92","entrezGeneId":"5298"},{"alias":"PI4KBETA","entrezGeneId":"5298"},{"alias":"PI4KIIIBETA","entrezGeneId":"5298"},{"alias":"PIK4CB","entrezGeneId":"5298"},{"alias":"DOD","entrezGeneId":"5300"},{"alias":"UBL5","entrezGeneId":"5300"},{"alias":"PIN1L","entrezGeneId":"5301"},{"alias":"EPVH","entrezGeneId":"5303"},{"alias":"PAR14","entrezGeneId":"5303"},{"alias":"PAR17","entrezGeneId":"5303"},{"alias":"GCDFP-15","entrezGeneId":"5304"},{"alias":"GCDFP15","entrezGeneId":"5304"},{"alias":"GPIP4","entrezGeneId":"5304"},{"alias":"PI5P4KA","entrezGeneId":"5305"},{"alias":"PIP5K2A","entrezGeneId":"5305"},{"alias":"PIP5KII-alpha","entrezGeneId":"5305"},{"alias":"PIP5KIIA","entrezGeneId":"5305"},{"alias":"PIPK","entrezGeneId":"5305"},{"alias":"HEL-S-36","entrezGeneId":"5306"},{"alias":"PI-TPalpha","entrezGeneId":"5306"},{"alias":"PITPN","entrezGeneId":"5306"},{"alias":"VIB1A","entrezGeneId":"5306"},{"alias":"BFT","entrezGeneId":"5307"},{"alias":"CCF","entrezGeneId":"5307"},{"alias":"LBNBG","entrezGeneId":"5307"},{"alias":"POTX","entrezGeneId":"5307"},{"alias":"PTX1","entrezGeneId":"5307"},{"alias":"ARP1","entrezGeneId":"5308"},{"alias":"ASGD4","entrezGeneId":"5308"},{"alias":"Brx1","entrezGeneId":"5308"},{"alias":"IDG2","entrezGeneId":"5308"},{"alias":"IGDS","entrezGeneId":"5308"},{"alias":"IGDS2","entrezGeneId":"5308"},{"alias":"IHG2","entrezGeneId":"5308"},{"alias":"IRID2","entrezGeneId":"5308"},{"alias":"Otlx2","entrezGeneId":"5308"},{"alias":"PTX2","entrezGeneId":"5308"},{"alias":"RGS","entrezGeneId":"5308"},{"alias":"RIEG","entrezGeneId":"5308"},{"alias":"RIEG1","entrezGeneId":"5308"},{"alias":"RS","entrezGeneId":"5308"},{"alias":"ASGD1","entrezGeneId":"5309"},{"alias":"ASMD","entrezGeneId":"5309"},{"alias":"ASOD","entrezGeneId":"5309"},{"alias":"CTPP4","entrezGeneId":"5309"},{"alias":"CTRCT11","entrezGeneId":"5309"},{"alias":"PTX3","entrezGeneId":"5309"},{"alias":"PBP","entrezGeneId":"5310"},{"alias":"Pc-1","entrezGeneId":"5310"},{"alias":"PC1","entrezGeneId":"5310"},{"alias":"TRPP1","entrezGeneId":"5310"},{"alias":"APKD2","entrezGeneId":"5311"},{"alias":"Pc-2","entrezGeneId":"5311"},{"alias":"PC2","entrezGeneId":"5311"},{"alias":"PKD4","entrezGeneId":"5311"},{"alias":"TRPP2","entrezGeneId":"5311"},{"alias":"PK1","entrezGeneId":"5313"},{"alias":"PKL","entrezGeneId":"5313"},{"alias":"PKR","entrezGeneId":"5313"},{"alias":"PKRL","entrezGeneId":"5313"},{"alias":"RPK","entrezGeneId":"5313"},{"alias":"ARPKD","entrezGeneId":"5314"},{"alias":"FCYT","entrezGeneId":"5314"},{"alias":"FPC","entrezGeneId":"5314"},{"alias":"PKD4","entrezGeneId":"5314"},{"alias":"TIGM1","entrezGeneId":"5314"},{"alias":"CTHBP","entrezGeneId":"5315"},{"alias":"HEL-S-30","entrezGeneId":"5315"},{"alias":"OIP3","entrezGeneId":"5315"},{"alias":"PK3","entrezGeneId":"5315"},{"alias":"PKM2","entrezGeneId":"5315"},{"alias":"TCB","entrezGeneId":"5315"},{"alias":"THBP1","entrezGeneId":"5315"},{"alias":"pkonx1c","entrezGeneId":"5316"},{"alias":"PREP1","entrezGeneId":"5316"},{"alias":"B6P","entrezGeneId":"5317"},{"alias":"ARVD9","entrezGeneId":"5318"},{"alias":"PLA2","entrezGeneId":"5319"},{"alias":"PLA2A","entrezGeneId":"5319"},{"alias":"PPLA2","entrezGeneId":"5319"},{"alias":"MOM1","entrezGeneId":"5320"},{"alias":"PLA2","entrezGeneId":"5320"},{"alias":"PLA2B","entrezGeneId":"5320"},{"alias":"PLA2L","entrezGeneId":"5320"},{"alias":"PLA2S","entrezGeneId":"5320"},{"alias":"PLAS1","entrezGeneId":"5320"},{"alias":"sPLA2","entrezGeneId":"5320"},{"alias":"cPLA2","entrezGeneId":"5321"},{"alias":"cPLA2-alpha","entrezGeneId":"5321"},{"alias":"PLA2G4","entrezGeneId":"5321"},{"alias":"FRFB","entrezGeneId":"5322"},{"alias":"GV-PLA2","entrezGeneId":"5322"},{"alias":"hVPLA(2)","entrezGeneId":"5322"},{"alias":"PLA2-10","entrezGeneId":"5322"},{"alias":"PSA","entrezGeneId":"5324"},{"alias":"SGPA","entrezGeneId":"5324"},{"alias":"ZNF912","entrezGeneId":"5324"},{"alias":"LOT1","entrezGeneId":"5325"},{"alias":"ZAC","entrezGeneId":"5325"},{"alias":"ZAC1","entrezGeneId":"5325"},{"alias":"ZNF900","entrezGeneId":"5326"},{"alias":"T-PA","entrezGeneId":"5327"},{"alias":"TPA","entrezGeneId":"5327"},{"alias":"ATF","entrezGeneId":"5328"},{"alias":"BDPLT5","entrezGeneId":"5328"},{"alias":"QPD","entrezGeneId":"5328"},{"alias":"u-PA","entrezGeneId":"5328"},{"alias":"UPA","entrezGeneId":"5328"},{"alias":"URK","entrezGeneId":"5328"},{"alias":"CD87","entrezGeneId":"5329"},{"alias":"U-PAR","entrezGeneId":"5329"},{"alias":"UPAR","entrezGeneId":"5329"},{"alias":"URKR","entrezGeneId":"5329"},{"alias":"PLC-beta-2","entrezGeneId":"5330"},{"alias":"ARCND2","entrezGeneId":"5332"},{"alias":"PI-PLC","entrezGeneId":"5332"},{"alias":"NDNC3","entrezGeneId":"5333"},{"alias":"PLC-III","entrezGeneId":"5333"},{"alias":"PLCE","entrezGeneId":"5334"},{"alias":"PLCL","entrezGeneId":"5334"},{"alias":"PLDL1","entrezGeneId":"5334"},{"alias":"PPP1R127","entrezGeneId":"5334"},{"alias":"PRIP","entrezGeneId":"5334"},{"alias":"NCKAP3","entrezGeneId":"5335"},{"alias":"PLC-II","entrezGeneId":"5335"},{"alias":"PLC1","entrezGeneId":"5335"},{"alias":"PLC148","entrezGeneId":"5335"},{"alias":"PLCgamma1","entrezGeneId":"5335"},{"alias":"APLAID","entrezGeneId":"5336"},{"alias":"FCAS3","entrezGeneId":"5336"},{"alias":"PLC-gamma-2","entrezGeneId":"5336"},{"alias":"PLC-IV","entrezGeneId":"5336"},{"alias":"CVDD","entrezGeneId":"5337"},{"alias":"PLD1C","entrezGeneId":"5338"},{"alias":"EBS1","entrezGeneId":"5339"},{"alias":"EBSMD","entrezGeneId":"5339"},{"alias":"EBSND","entrezGeneId":"5339"},{"alias":"EBSO","entrezGeneId":"5339"},{"alias":"EBSOG","entrezGeneId":"5339"},{"alias":"EBSPA","entrezGeneId":"5339"},{"alias":"HD1","entrezGeneId":"5339"},{"alias":"LGMD2Q","entrezGeneId":"5339"},{"alias":"PCN","entrezGeneId":"5339"},{"alias":"PLEC1","entrezGeneId":"5339"},{"alias":"PLEC1b","entrezGeneId":"5339"},{"alias":"PLTN","entrezGeneId":"5339"},{"alias":"P47","entrezGeneId":"5341"},{"alias":"PLGLA","entrezGeneId":"5342"},{"alias":"PLGLA1","entrezGeneId":"5342"},{"alias":"PLGP1","entrezGeneId":"5342"},{"alias":"PLGP2","entrezGeneId":"5342"},{"alias":"PRGA","entrezGeneId":"5342"},{"alias":"PLGL","entrezGeneId":"5343"},{"alias":"PLGP1","entrezGeneId":"5343"},{"alias":"PRGB","entrezGeneId":"5343"},{"alias":"PRP-B","entrezGeneId":"5343"},{"alias":"A2AP","entrezGeneId":"5345"},{"alias":"AAP","entrezGeneId":"5345"},{"alias":"ALPHA-2-PI","entrezGeneId":"5345"},{"alias":"API","entrezGeneId":"5345"},{"alias":"PLI","entrezGeneId":"5345"},{"alias":"FPLD4","entrezGeneId":"5346"},{"alias":"PERI","entrezGeneId":"5346"},{"alias":"PLIN","entrezGeneId":"5346"},{"alias":"PLK","entrezGeneId":"5347"},{"alias":"STPK13","entrezGeneId":"5347"},{"alias":"PLM","entrezGeneId":"5348"},{"alias":"MAT8","entrezGeneId":"5349"},{"alias":"PLML","entrezGeneId":"5349"},{"alias":"CMD1P","entrezGeneId":"5350"},{"alias":"CMH18","entrezGeneId":"5350"},{"alias":"PLB","entrezGeneId":"5350"},{"alias":"EDS6","entrezGeneId":"5351"},{"alias":"EDSKCL1","entrezGeneId":"5351"},{"alias":"LH","entrezGeneId":"5351"},{"alias":"LH1","entrezGeneId":"5351"},{"alias":"LLH","entrezGeneId":"5351"},{"alias":"PLOD","entrezGeneId":"5351"},{"alias":"BRKS2","entrezGeneId":"5352"},{"alias":"LH2","entrezGeneId":"5352"},{"alias":"TLH","entrezGeneId":"5352"},{"alias":"GPM6C","entrezGeneId":"5354"},{"alias":"HLD1","entrezGeneId":"5354"},{"alias":"MMPL","entrezGeneId":"5354"},{"alias":"PLP","entrezGeneId":"5354"},{"alias":"PLP/DM20","entrezGeneId":"5354"},{"alias":"PMD","entrezGeneId":"5354"},{"alias":"SPG2","entrezGeneId":"5354"},{"alias":"A4","entrezGeneId":"5355"},{"alias":"A4LSB","entrezGeneId":"5355"},{"alias":"Cwc1","entrezGeneId":"5356"},{"alias":"PRL1","entrezGeneId":"5356"},{"alias":"PRP46","entrezGeneId":"5356"},{"alias":"PRPF46","entrezGeneId":"5356"},{"alias":"TANGO4","entrezGeneId":"5356"},{"alias":"BMND18","entrezGeneId":"5358"},{"alias":"T-plastin","entrezGeneId":"5358"},{"alias":"MMTRA1B","entrezGeneId":"5359"},{"alias":"BPIFE","entrezGeneId":"5360"},{"alias":"HDLCQ9","entrezGeneId":"5360"},{"alias":"NOV","entrezGeneId":"5361"},{"alias":"NOVP","entrezGeneId":"5361"},{"alias":"PLEXIN-A1","entrezGeneId":"5361"},{"alias":"PLXN1","entrezGeneId":"5361"},{"alias":"OCT","entrezGeneId":"5362"},{"alias":"PLXN2","entrezGeneId":"5362"},{"alias":"PLEXIN-B1","entrezGeneId":"5364"},{"alias":"PLXN5","entrezGeneId":"5364"},{"alias":"SEP","entrezGeneId":"5364"},{"alias":"PLEXB3","entrezGeneId":"5365"},{"alias":"PLEXR","entrezGeneId":"5365"},{"alias":"PLXN6","entrezGeneId":"5365"},{"alias":"APR","entrezGeneId":"5366"},{"alias":"NOXA","entrezGeneId":"5366"},{"alias":"MCH","entrezGeneId":"5367"},{"alias":"ppMCH","entrezGeneId":"5367"},{"alias":"N/OFQ","entrezGeneId":"5368"},{"alias":"NOP","entrezGeneId":"5368"},{"alias":"OFQ","entrezGeneId":"5368"},{"alias":"ppN/OFQ","entrezGeneId":"5368"},{"alias":"PPNOC","entrezGeneId":"5368"},{"alias":"MYL","entrezGeneId":"5371"},{"alias":"PP8675","entrezGeneId":"5371"},{"alias":"RNF71","entrezGeneId":"5371"},{"alias":"TRIM19","entrezGeneId":"5371"},{"alias":"Sec53","entrezGeneId":"5372"},{"alias":"CDG1","entrezGeneId":"5373"},{"alias":"CDG1a","entrezGeneId":"5373"},{"alias":"CDGS","entrezGeneId":"5373"},{"alias":"PMI","entrezGeneId":"5373"},{"alias":"PMI1","entrezGeneId":"5373"},{"alias":"PMM 2","entrezGeneId":"5373"},{"alias":"FABP8","entrezGeneId":"5375"},{"alias":"M-FABP","entrezGeneId":"5375"},{"alias":"MP2","entrezGeneId":"5375"},{"alias":"P2","entrezGeneId":"5375"},{"alias":"CIDP","entrezGeneId":"5376"},{"alias":"CMT1A","entrezGeneId":"5376"},{"alias":"CMT1E","entrezGeneId":"5376"},{"alias":"DSS","entrezGeneId":"5376"},{"alias":"GAS-3","entrezGeneId":"5376"},{"alias":"GAS3","entrezGeneId":"5376"},{"alias":"HMSNIA","entrezGeneId":"5376"},{"alias":"HNPP","entrezGeneId":"5376"},{"alias":"Sp110","entrezGeneId":"5376"},{"alias":"HNPCC3","entrezGeneId":"5378"},{"alias":"hPMS1","entrezGeneId":"5378"},{"alias":"MLH2","entrezGeneId":"5378"},{"alias":"PMSL1","entrezGeneId":"5378"},{"alias":"PMS2L1","entrezGeneId":"5379"},{"alias":"PMS2L13","entrezGeneId":"5379"},{"alias":"PMS2L6","entrezGeneId":"5379"},{"alias":"PMS2L7","entrezGeneId":"5379"},{"alias":"PMS2L8","entrezGeneId":"5379"},{"alias":"PMS3","entrezGeneId":"5379"},{"alias":"PMS8","entrezGeneId":"5379"},{"alias":"PMSR1","entrezGeneId":"5379"},{"alias":"PMSR2","entrezGeneId":"5379"},{"alias":"PMS2L2","entrezGeneId":"5380"},{"alias":"PMS4","entrezGeneId":"5380"},{"alias":"PMS2L4","entrezGeneId":"5382"},{"alias":"PMS6","entrezGeneId":"5382"},{"alias":"PMS2L5","entrezGeneId":"5383"},{"alias":"PMS7","entrezGeneId":"5383"},{"alias":"PMS2L3","entrezGeneId":"5387"},{"alias":"PMS2L9","entrezGeneId":"5387"},{"alias":"PMS5","entrezGeneId":"5387"},{"alias":"PMSR3","entrezGeneId":"5387"},{"alias":"p5","entrezGeneId":"5393"},{"alias":"p6","entrezGeneId":"5393"},{"alias":"PM/Scl-75","entrezGeneId":"5393"},{"alias":"PMSCL1","entrezGeneId":"5393"},{"alias":"RRP45","entrezGeneId":"5393"},{"alias":"Rrp45p","entrezGeneId":"5393"},{"alias":"p2","entrezGeneId":"5394"},{"alias":"p3","entrezGeneId":"5394"},{"alias":"p4","entrezGeneId":"5394"},{"alias":"PM-Scl","entrezGeneId":"5394"},{"alias":"PM/Scl-100","entrezGeneId":"5394"},{"alias":"PMSCL","entrezGeneId":"5394"},{"alias":"PMSCL2","entrezGeneId":"5394"},{"alias":"RRP6","entrezGeneId":"5394"},{"alias":"Rrp6p","entrezGeneId":"5394"},{"alias":"HNPCC4","entrezGeneId":"5395"},{"alias":"MLH4","entrezGeneId":"5395"},{"alias":"PMS2CL","entrezGeneId":"5395"},{"alias":"PMSL2","entrezGeneId":"5395"},{"alias":"AGOTC","entrezGeneId":"5396"},{"alias":"PHOX1","entrezGeneId":"5396"},{"alias":"PMX1","entrezGeneId":"5396"},{"alias":"PRX-1","entrezGeneId":"5396"},{"alias":"PRX1","entrezGeneId":"5396"},{"alias":"PL","entrezGeneId":"5406"},{"alias":"PNLIPD","entrezGeneId":"5406"},{"alias":"PTL","entrezGeneId":"5406"},{"alias":"PLRP1","entrezGeneId":"5407"},{"alias":"PLRP2","entrezGeneId":"5408"},{"alias":"PENT","entrezGeneId":"5409"},{"alias":"PNMTase","entrezGeneId":"5409"},{"alias":"DRS","entrezGeneId":"5411"},{"alias":"DRSP","entrezGeneId":"5411"},{"alias":"memA","entrezGeneId":"5411"},{"alias":"SDK3","entrezGeneId":"5411"},{"alias":"HCG-1","entrezGeneId":"5412"},{"alias":"PNSC1","entrezGeneId":"5412"},{"alias":"CDCREL","entrezGeneId":"5413"},{"alias":"CDCREL-1","entrezGeneId":"5413"},{"alias":"CDCREL1","entrezGeneId":"5413"},{"alias":"H5","entrezGeneId":"5413"},{"alias":"HCDCREL-1","entrezGeneId":"5413"},{"alias":"PNUTL1","entrezGeneId":"5413"},{"alias":"ARTS","entrezGeneId":"5414"},{"alias":"BRADEION","entrezGeneId":"5414"},{"alias":"CE5B3","entrezGeneId":"5414"},{"alias":"H5","entrezGeneId":"5414"},{"alias":"hCDCREL-2","entrezGeneId":"5414"},{"alias":"hucep-7","entrezGeneId":"5414"},{"alias":"MART","entrezGeneId":"5414"},{"alias":"PNUTL2","entrezGeneId":"5414"},{"alias":"SEP4","entrezGeneId":"5414"},{"alias":"Gp200","entrezGeneId":"5420"},{"alias":"PC","entrezGeneId":"5420"},{"alias":"PCLP","entrezGeneId":"5420"},{"alias":"PCLP-1","entrezGeneId":"5420"},{"alias":"NSX","entrezGeneId":"5422"},{"alias":"p180","entrezGeneId":"5422"},{"alias":"POLA","entrezGeneId":"5422"},{"alias":"CDC2","entrezGeneId":"5424"},{"alias":"CRCS10","entrezGeneId":"5424"},{"alias":"MDPL","entrezGeneId":"5424"},{"alias":"POLD","entrezGeneId":"5424"},{"alias":"CRCS12","entrezGeneId":"5426"},{"alias":"FILS","entrezGeneId":"5426"},{"alias":"POLE1","entrezGeneId":"5426"},{"alias":"DPE2","entrezGeneId":"5427"},{"alias":"MDP1","entrezGeneId":"5428"},{"alias":"MIRAS","entrezGeneId":"5428"},{"alias":"MTDPS4A","entrezGeneId":"5428"},{"alias":"MTDPS4B","entrezGeneId":"5428"},{"alias":"PEO","entrezGeneId":"5428"},{"alias":"POLG1","entrezGeneId":"5428"},{"alias":"POLGA","entrezGeneId":"5428"},{"alias":"SANDO","entrezGeneId":"5428"},{"alias":"SCAE","entrezGeneId":"5428"},{"alias":"RAD30","entrezGeneId":"5429"},{"alias":"RAD30A","entrezGeneId":"5429"},{"alias":"XP-V","entrezGeneId":"5429"},{"alias":"XPV","entrezGeneId":"5429"},{"alias":"hRPB220","entrezGeneId":"5430"},{"alias":"hsRPB1","entrezGeneId":"5430"},{"alias":"POLR2","entrezGeneId":"5430"},{"alias":"POLRA","entrezGeneId":"5430"},{"alias":"RPB1","entrezGeneId":"5430"},{"alias":"RPBh1","entrezGeneId":"5430"},{"alias":"RpIILS","entrezGeneId":"5430"},{"alias":"RPO2","entrezGeneId":"5430"},{"alias":"RPOL2","entrezGeneId":"5430"},{"alias":"hRPB140","entrezGeneId":"5431"},{"alias":"POL2RB","entrezGeneId":"5431"},{"alias":"RPB2","entrezGeneId":"5431"},{"alias":"hRPB33","entrezGeneId":"5432"},{"alias":"hsRPB3","entrezGeneId":"5432"},{"alias":"RPB3","entrezGeneId":"5432"},{"alias":"RPB31","entrezGeneId":"5432"},{"alias":"HSRBP4","entrezGeneId":"5433"},{"alias":"HSRPB4","entrezGeneId":"5433"},{"alias":"RBP4","entrezGeneId":"5433"},{"alias":"RPB16","entrezGeneId":"5433"},{"alias":"hRPB25","entrezGeneId":"5434"},{"alias":"hsRPB5","entrezGeneId":"5434"},{"alias":"RPABC1","entrezGeneId":"5434"},{"alias":"RPB5","entrezGeneId":"5434"},{"alias":"XAP4","entrezGeneId":"5434"},{"alias":"HRBP14.4","entrezGeneId":"5435"},{"alias":"POLRF","entrezGeneId":"5435"},{"alias":"RPABC14.4","entrezGeneId":"5435"},{"alias":"RPABC2","entrezGeneId":"5435"},{"alias":"RPB14.4","entrezGeneId":"5435"},{"alias":"RPB6","entrezGeneId":"5435"},{"alias":"RPC15","entrezGeneId":"5435"},{"alias":"hRPB19","entrezGeneId":"5436"},{"alias":"hsRPB7","entrezGeneId":"5436"},{"alias":"RPB19","entrezGeneId":"5436"},{"alias":"RPB7","entrezGeneId":"5436"},{"alias":"RPABC3","entrezGeneId":"5437"},{"alias":"RPB17","entrezGeneId":"5437"},{"alias":"RPB8","entrezGeneId":"5437"},{"alias":"hRPB14.5","entrezGeneId":"5438"},{"alias":"RPB9","entrezGeneId":"5438"},{"alias":"hRPB14","entrezGeneId":"5439"},{"alias":"POLR2J1","entrezGeneId":"5439"},{"alias":"RPB11","entrezGeneId":"5439"},{"alias":"RPB11A","entrezGeneId":"5439"},{"alias":"RPB11m","entrezGeneId":"5439"},{"alias":"ABC10-alpha","entrezGeneId":"5440"},{"alias":"hRPB7.0","entrezGeneId":"5440"},{"alias":"hsRPB10a","entrezGeneId":"5440"},{"alias":"RPABC4","entrezGeneId":"5440"},{"alias":"RPB10alpha","entrezGeneId":"5440"},{"alias":"RPB12","entrezGeneId":"5440"},{"alias":"RPB7.0","entrezGeneId":"5440"},{"alias":"hRPB7.6","entrezGeneId":"5441"},{"alias":"RBP10","entrezGeneId":"5441"},{"alias":"RPABC5","entrezGeneId":"5441"},{"alias":"RPB10","entrezGeneId":"5441"},{"alias":"RPB10beta","entrezGeneId":"5441"},{"alias":"RPB7.6","entrezGeneId":"5441"},{"alias":"APOLMT","entrezGeneId":"5442"},{"alias":"h-mtRPOL","entrezGeneId":"5442"},{"alias":"MTRNAP","entrezGeneId":"5442"},{"alias":"MTRPOL","entrezGeneId":"5442"},{"alias":"ACTH","entrezGeneId":"5443"},{"alias":"CLIP","entrezGeneId":"5443"},{"alias":"LPH","entrezGeneId":"5443"},{"alias":"MSH","entrezGeneId":"5443"},{"alias":"NPP","entrezGeneId":"5443"},{"alias":"POC","entrezGeneId":"5443"},{"alias":"ESA","entrezGeneId":"5444"},{"alias":"MVCD5","entrezGeneId":"5444"},{"alias":"PON","entrezGeneId":"5444"},{"alias":"CPR","entrezGeneId":"5447"},{"alias":"CYPOR","entrezGeneId":"5447"},{"alias":"P450R","entrezGeneId":"5447"},{"alias":"CPHD1","entrezGeneId":"5449"},{"alias":"GHF-1","entrezGeneId":"5449"},{"alias":"Pit-1","entrezGeneId":"5449"},{"alias":"PIT1","entrezGeneId":"5449"},{"alias":"POU1F1a","entrezGeneId":"5449"},{"alias":"BOB1","entrezGeneId":"5450"},{"alias":"OBF-1","entrezGeneId":"5450"},{"alias":"OBF1","entrezGeneId":"5450"},{"alias":"OCAB","entrezGeneId":"5450"},{"alias":"oct-1B","entrezGeneId":"5451"},{"alias":"OCT1","entrezGeneId":"5451"},{"alias":"OTF1","entrezGeneId":"5451"},{"alias":"Oct-2","entrezGeneId":"5452"},{"alias":"OCT2","entrezGeneId":"5452"},{"alias":"OTF2","entrezGeneId":"5452"},{"alias":"OCT6","entrezGeneId":"5453"},{"alias":"OTF6","entrezGeneId":"5453"},{"alias":"SCIP","entrezGeneId":"5453"},{"alias":"brn-2","entrezGeneId":"5454"},{"alias":"BRN2","entrezGeneId":"5454"},{"alias":"N-Oct3","entrezGeneId":"5454"},{"alias":"oct-7","entrezGeneId":"5454"},{"alias":"OCT7","entrezGeneId":"5454"},{"alias":"OTF-7","entrezGeneId":"5454"},{"alias":"OTF7","entrezGeneId":"5454"},{"alias":"POUF3","entrezGeneId":"5454"},{"alias":"brain-1","entrezGeneId":"5455"},{"alias":"BRN1","entrezGeneId":"5455"},{"alias":"oct-8","entrezGeneId":"5455"},{"alias":"OTF8","entrezGeneId":"5455"},{"alias":"BRAIN-4","entrezGeneId":"5456"},{"alias":"BRN-4","entrezGeneId":"5456"},{"alias":"BRN4","entrezGeneId":"5456"},{"alias":"DFN3","entrezGeneId":"5456"},{"alias":"DFNX2","entrezGeneId":"5456"},{"alias":"OCT-9","entrezGeneId":"5456"},{"alias":"OTF-9","entrezGeneId":"5456"},{"alias":"OTF9","entrezGeneId":"5456"},{"alias":"brn-3A","entrezGeneId":"5457"},{"alias":"BRN3A","entrezGeneId":"5457"},{"alias":"Oct-T1","entrezGeneId":"5457"},{"alias":"RDC-1","entrezGeneId":"5457"},{"alias":"Brn-3b","entrezGeneId":"5458"},{"alias":"BRN3.2","entrezGeneId":"5458"},{"alias":"BRN3B","entrezGeneId":"5458"},{"alias":"BRN3C","entrezGeneId":"5459"},{"alias":"DFNA15","entrezGeneId":"5459"},{"alias":"DFNA42","entrezGeneId":"5459"},{"alias":"DFNA52","entrezGeneId":"5459"},{"alias":"Oct-3","entrezGeneId":"5460"},{"alias":"Oct-4","entrezGeneId":"5460"},{"alias":"OCT3","entrezGeneId":"5460"},{"alias":"OCT4","entrezGeneId":"5460"},{"alias":"OTF-3","entrezGeneId":"5460"},{"alias":"OTF3","entrezGeneId":"5460"},{"alias":"OTF4","entrezGeneId":"5460"},{"alias":"OCT4-PG1","entrezGeneId":"5462"},{"alias":"OCT4PG1","entrezGeneId":"5462"},{"alias":"OTF3C","entrezGeneId":"5462"},{"alias":"OTF3P1","entrezGeneId":"5462"},{"alias":"POU5F1P1","entrezGeneId":"5462"},{"alias":"POU5F1P4","entrezGeneId":"5462"},{"alias":"POU5FLC20","entrezGeneId":"5462"},{"alias":"POU5FLC8","entrezGeneId":"5462"},{"alias":"BRN5","entrezGeneId":"5463"},{"alias":"MPOU","entrezGeneId":"5463"},{"alias":"TCFB1","entrezGeneId":"5463"},{"alias":"HEL-S-66p","entrezGeneId":"5464"},{"alias":"IOPPP","entrezGeneId":"5464"},{"alias":"PP","entrezGeneId":"5464"},{"alias":"PP1","entrezGeneId":"5464"},{"alias":"SID6-8061","entrezGeneId":"5464"},{"alias":"hPPAR","entrezGeneId":"5465"},{"alias":"NR1C1","entrezGeneId":"5465"},{"alias":"PPAR","entrezGeneId":"5465"},{"alias":"PPARalpha","entrezGeneId":"5465"},{"alias":"FAAR","entrezGeneId":"5467"},{"alias":"NR1C2","entrezGeneId":"5467"},{"alias":"NUC1","entrezGeneId":"5467"},{"alias":"NUCI","entrezGeneId":"5467"},{"alias":"NUCII","entrezGeneId":"5467"},{"alias":"PPARB","entrezGeneId":"5467"},{"alias":"CIMT1","entrezGeneId":"5468"},{"alias":"GLM1","entrezGeneId":"5468"},{"alias":"NR1C3","entrezGeneId":"5468"},{"alias":"PPARG1","entrezGeneId":"5468"},{"alias":"PPARG2","entrezGeneId":"5468"},{"alias":"PPARgamma","entrezGeneId":"5468"},{"alias":"CRSP1","entrezGeneId":"5469"},{"alias":"CRSP200","entrezGeneId":"5469"},{"alias":"DRIP205","entrezGeneId":"5469"},{"alias":"DRIP230","entrezGeneId":"5469"},{"alias":"PBP","entrezGeneId":"5469"},{"alias":"PPARBP","entrezGeneId":"5469"},{"alias":"PPARGBP","entrezGeneId":"5469"},{"alias":"RB18A","entrezGeneId":"5469"},{"alias":"TRAP220","entrezGeneId":"5469"},{"alias":"TRIP2","entrezGeneId":"5469"},{"alias":"PPP7CB","entrezGeneId":"5470"},{"alias":"ATASE","entrezGeneId":"5471"},{"alias":"GPAT","entrezGeneId":"5471"},{"alias":"PRAT","entrezGeneId":"5471"},{"alias":"B-TG1","entrezGeneId":"5473"},{"alias":"Beta-TG","entrezGeneId":"5473"},{"alias":"CTAP-III","entrezGeneId":"5473"},{"alias":"CTAP3","entrezGeneId":"5473"},{"alias":"CTAPIII","entrezGeneId":"5473"},{"alias":"CXCL7","entrezGeneId":"5473"},{"alias":"LA-PF4","entrezGeneId":"5473"},{"alias":"LDGF","entrezGeneId":"5473"},{"alias":"MDGF","entrezGeneId":"5473"},{"alias":"NAP-2","entrezGeneId":"5473"},{"alias":"PBP","entrezGeneId":"5473"},{"alias":"SCYB7","entrezGeneId":"5473"},{"alias":"TC1","entrezGeneId":"5473"},{"alias":"TC2","entrezGeneId":"5473"},{"alias":"TGB","entrezGeneId":"5473"},{"alias":"TGB1","entrezGeneId":"5473"},{"alias":"THBGB","entrezGeneId":"5473"},{"alias":"THBGB1","entrezGeneId":"5473"},{"alias":"PP7","entrezGeneId":"5475"},{"alias":"PPEF","entrezGeneId":"5475"},{"alias":"PPP7C","entrezGeneId":"5475"},{"alias":"PPP7CA","entrezGeneId":"5475"},{"alias":"GLB2","entrezGeneId":"5476"},{"alias":"GSL","entrezGeneId":"5476"},{"alias":"NGBE","entrezGeneId":"5476"},{"alias":"PPCA","entrezGeneId":"5476"},{"alias":"PPGB","entrezGeneId":"5476"},{"alias":"CYPA","entrezGeneId":"5478"},{"alias":"CYPH","entrezGeneId":"5478"},{"alias":"HEL-S-69p","entrezGeneId":"5478"},{"alias":"B","entrezGeneId":"5479"},{"alias":"CYP-S1","entrezGeneId":"5479"},{"alias":"CYPB","entrezGeneId":"5479"},{"alias":"HEL-S-39","entrezGeneId":"5479"},{"alias":"OI9","entrezGeneId":"5479"},{"alias":"SCYLP","entrezGeneId":"5479"},{"alias":"CYPC","entrezGeneId":"5480"},{"alias":"CYP-40","entrezGeneId":"5481"},{"alias":"CYPD","entrezGeneId":"5481"},{"alias":"PPIP1","entrezGeneId":"5483"},{"alias":"PPIP3","entrezGeneId":"5485"},{"alias":"PPIP4","entrezGeneId":"5486"},{"alias":"PPIP5","entrezGeneId":"5487"},{"alias":"PPIP6","entrezGeneId":"5488"},{"alias":"PPIP7","entrezGeneId":"5489"},{"alias":"PPIP9","entrezGeneId":"5491"},{"alias":"PP2C-ALPHA","entrezGeneId":"5494"},{"alias":"PP2CA","entrezGeneId":"5494"},{"alias":"PP2Calpha","entrezGeneId":"5494"},{"alias":"PP2C-beta","entrezGeneId":"5495"},{"alias":"PP2C-beta-X","entrezGeneId":"5495"},{"alias":"PP2CB","entrezGeneId":"5495"},{"alias":"PP2CBETA","entrezGeneId":"5495"},{"alias":"PPC2BETAX","entrezGeneId":"5495"},{"alias":"PP2CG","entrezGeneId":"5496"},{"alias":"PP2CGAMMA","entrezGeneId":"5496"},{"alias":"PPP2CG","entrezGeneId":"5496"},{"alias":"PPO","entrezGeneId":"5498"},{"alias":"V290M","entrezGeneId":"5498"},{"alias":"VP","entrezGeneId":"5498"},{"alias":"PP-1A","entrezGeneId":"5499"},{"alias":"PP1A","entrezGeneId":"5499"},{"alias":"PP1alpha","entrezGeneId":"5499"},{"alias":"PPP1A","entrezGeneId":"5499"},{"alias":"HEL-S-80p","entrezGeneId":"5500"},{"alias":"NSLH2","entrezGeneId":"5500"},{"alias":"PP-1B","entrezGeneId":"5500"},{"alias":"PP1B","entrezGeneId":"5500"},{"alias":"PP1beta","entrezGeneId":"5500"},{"alias":"PPP1CD","entrezGeneId":"5500"},{"alias":"PP-1G","entrezGeneId":"5501"},{"alias":"PP1C","entrezGeneId":"5501"},{"alias":"PPP1G","entrezGeneId":"5501"},{"alias":"I1","entrezGeneId":"5502"},{"alias":"IPP1","entrezGeneId":"5502"},{"alias":"IPP-2","entrezGeneId":"5504"},{"alias":"IPP2","entrezGeneId":"5504"},{"alias":"PPP1R2A","entrezGeneId":"5504"},{"alias":"GM","entrezGeneId":"5506"},{"alias":"PP1G","entrezGeneId":"5506"},{"alias":"PPP1R3","entrezGeneId":"5506"},{"alias":"PPP1R5","entrezGeneId":"5507"},{"alias":"PTG","entrezGeneId":"5507"},{"alias":"PPP1R6","entrezGeneId":"5509"},{"alias":"SDS22","entrezGeneId":"5510"},{"alias":"ARD-1","entrezGeneId":"5511"},{"alias":"ARD1","entrezGeneId":"5511"},{"alias":"NIPP-1","entrezGeneId":"5511"},{"alias":"NIPP1","entrezGeneId":"5511"},{"alias":"PRO2047","entrezGeneId":"5511"},{"alias":"PPP1R8P","entrezGeneId":"5512"},{"alias":"CAT53","entrezGeneId":"5514"},{"alias":"FB19","entrezGeneId":"5514"},{"alias":"p99","entrezGeneId":"5514"},{"alias":"PNUTS","entrezGeneId":"5514"},{"alias":"PP1R10","entrezGeneId":"5514"},{"alias":"R111","entrezGeneId":"5514"},{"alias":"PP2Ac","entrezGeneId":"5515"},{"alias":"PP2CA","entrezGeneId":"5515"},{"alias":"PP2Calpha","entrezGeneId":"5515"},{"alias":"RP-C","entrezGeneId":"5515"},{"alias":"PP2Abeta","entrezGeneId":"5516"},{"alias":"PP2CB","entrezGeneId":"5516"},{"alias":"PPP2CBP","entrezGeneId":"5517"},{"alias":"MRD36","entrezGeneId":"5518"},{"alias":"PP2A-Aalpha","entrezGeneId":"5518"},{"alias":"PP2AA","entrezGeneId":"5518"},{"alias":"PP2AAALPHA","entrezGeneId":"5518"},{"alias":"PR65A","entrezGeneId":"5518"},{"alias":"PP2A-Abeta","entrezGeneId":"5519"},{"alias":"PR65B","entrezGeneId":"5519"},{"alias":"B55A","entrezGeneId":"5520"},{"alias":"B55ALPHA","entrezGeneId":"5520"},{"alias":"PR52A","entrezGeneId":"5520"},{"alias":"PR55A","entrezGeneId":"5520"},{"alias":"PR55alpha","entrezGeneId":"5520"},{"alias":"B55BETA","entrezGeneId":"5521"},{"alias":"PP2AB55BETA","entrezGeneId":"5521"},{"alias":"PP2ABBETA","entrezGeneId":"5521"},{"alias":"PP2APR55B","entrezGeneId":"5521"},{"alias":"PP2APR55BETA","entrezGeneId":"5521"},{"alias":"PR2AB55BETA","entrezGeneId":"5521"},{"alias":"PR2ABBETA","entrezGeneId":"5521"},{"alias":"PR2APR55BETA","entrezGeneId":"5521"},{"alias":"PR52B","entrezGeneId":"5521"},{"alias":"PR55-BETA","entrezGeneId":"5521"},{"alias":"PR55BETA","entrezGeneId":"5521"},{"alias":"SCA12","entrezGeneId":"5521"},{"alias":"B55-GAMMA","entrezGeneId":"5522"},{"alias":"B55gamma","entrezGeneId":"5522"},{"alias":"IMYPNO","entrezGeneId":"5522"},{"alias":"IMYPNO1","entrezGeneId":"5522"},{"alias":"PR52","entrezGeneId":"5522"},{"alias":"PR55G","entrezGeneId":"5522"},{"alias":"PPP2R3","entrezGeneId":"5523"},{"alias":"PR130","entrezGeneId":"5523"},{"alias":"PR72","entrezGeneId":"5523"},{"alias":"PP2A","entrezGeneId":"5524"},{"alias":"PPP2R4","entrezGeneId":"5524"},{"alias":"PR53","entrezGeneId":"5524"},{"alias":"B56A","entrezGeneId":"5525"},{"alias":"B56alpha","entrezGeneId":"5525"},{"alias":"PR61A","entrezGeneId":"5525"},{"alias":"B56B","entrezGeneId":"5526"},{"alias":"B56beta","entrezGeneId":"5526"},{"alias":"PR61B","entrezGeneId":"5526"},{"alias":"B56G","entrezGeneId":"5527"},{"alias":"B56gamma","entrezGeneId":"5527"},{"alias":"PR61G","entrezGeneId":"5527"},{"alias":"B56D","entrezGeneId":"5528"},{"alias":"B56delta","entrezGeneId":"5528"},{"alias":"MRD35","entrezGeneId":"5528"},{"alias":"B56E","entrezGeneId":"5529"},{"alias":"B56epsilon","entrezGeneId":"5529"},{"alias":"CALN","entrezGeneId":"5530"},{"alias":"CALNA","entrezGeneId":"5530"},{"alias":"CALNA1","entrezGeneId":"5530"},{"alias":"CCN1","entrezGeneId":"5530"},{"alias":"CNA1","entrezGeneId":"5530"},{"alias":"IECEE","entrezGeneId":"5530"},{"alias":"IECEE1","entrezGeneId":"5530"},{"alias":"PPP2B","entrezGeneId":"5530"},{"alias":"PP-X","entrezGeneId":"5531"},{"alias":"PP4","entrezGeneId":"5531"},{"alias":"PP4C","entrezGeneId":"5531"},{"alias":"PPH3","entrezGeneId":"5531"},{"alias":"PPP4","entrezGeneId":"5531"},{"alias":"PPX","entrezGeneId":"5531"},{"alias":"CALNA2","entrezGeneId":"5532"},{"alias":"CALNB","entrezGeneId":"5532"},{"alias":"CNA2","entrezGeneId":"5532"},{"alias":"PP2Bbeta","entrezGeneId":"5532"},{"alias":"CALNA3","entrezGeneId":"5533"},{"alias":"CNA3","entrezGeneId":"5533"},{"alias":"PP2Bgamma","entrezGeneId":"5533"},{"alias":"CALNB1","entrezGeneId":"5534"},{"alias":"CNB","entrezGeneId":"5534"},{"alias":"CNB1","entrezGeneId":"5534"},{"alias":"PPP3RL","entrezGeneId":"5535"},{"alias":"PP5","entrezGeneId":"5536"},{"alias":"PPP5","entrezGeneId":"5536"},{"alias":"PPT","entrezGeneId":"5536"},{"alias":"PP6","entrezGeneId":"5537"},{"alias":"PP6C","entrezGeneId":"5537"},{"alias":"CLN1","entrezGeneId":"5538"},{"alias":"INCL","entrezGeneId":"5538"},{"alias":"PPT","entrezGeneId":"5538"},{"alias":"PNP","entrezGeneId":"5539"},{"alias":"PP","entrezGeneId":"5539"},{"alias":"NPY4-R","entrezGeneId":"5540"},{"alias":"PP1","entrezGeneId":"5540"},{"alias":"PPYR1","entrezGeneId":"5540"},{"alias":"Y4","entrezGeneId":"5540"},{"alias":"SPC","entrezGeneId":"5541"},{"alias":"PM","entrezGeneId":"5542"},{"alias":"PMF","entrezGeneId":"5542"},{"alias":"PMS","entrezGeneId":"5542"},{"alias":"PRB1L","entrezGeneId":"5542"},{"alias":"PRB1M","entrezGeneId":"5542"},{"alias":"G1","entrezGeneId":"5544"},{"alias":"PRG","entrezGeneId":"5544"},{"alias":"Po","entrezGeneId":"5545"},{"alias":"RCCP1","entrezGeneId":"5546"},{"alias":"TPRC","entrezGeneId":"5546"},{"alias":"HUMPCP","entrezGeneId":"5547"},{"alias":"PCP","entrezGeneId":"5547"},{"alias":"MST161","entrezGeneId":"5549"},{"alias":"MSTP161","entrezGeneId":"5549"},{"alias":"SLRR2A","entrezGeneId":"5549"},{"alias":"PE","entrezGeneId":"5550"},{"alias":"PEP","entrezGeneId":"5550"},{"alias":"HPLH2","entrezGeneId":"5551"},{"alias":"P1","entrezGeneId":"5551"},{"alias":"PFP","entrezGeneId":"5551"},{"alias":"PPG","entrezGeneId":"5552"},{"alias":"PRG","entrezGeneId":"5552"},{"alias":"PRG1","entrezGeneId":"5552"},{"alias":"BMPG","entrezGeneId":"5553"},{"alias":"MBP","entrezGeneId":"5553"},{"alias":"MBP1","entrezGeneId":"5553"},{"alias":"proMBP","entrezGeneId":"5553"},{"alias":"Db-s","entrezGeneId":"5554"},{"alias":"PA","entrezGeneId":"5554"},{"alias":"PIF-S","entrezGeneId":"5554"},{"alias":"Pr1/Pr2","entrezGeneId":"5554"},{"alias":"PRH2","entrezGeneId":"5554"},{"alias":"Pr","entrezGeneId":"5555"},{"alias":"pr1/Pr2","entrezGeneId":"5555"},{"alias":"PRP-1/PRP-2","entrezGeneId":"5555"},{"alias":"p49","entrezGeneId":"5557"},{"alias":"p58","entrezGeneId":"5558"},{"alias":"PRIM2A","entrezGeneId":"5558"},{"alias":"AMPK","entrezGeneId":"5562"},{"alias":"AMPKa1","entrezGeneId":"5562"},{"alias":"AMPK","entrezGeneId":"5563"},{"alias":"AMPK2","entrezGeneId":"5563"},{"alias":"AMPKa2","entrezGeneId":"5563"},{"alias":"PRKAA","entrezGeneId":"5563"},{"alias":"AMPK","entrezGeneId":"5564"},{"alias":"HAMPKb","entrezGeneId":"5564"},{"alias":"PKACA","entrezGeneId":"5566"},{"alias":"PPNAD4","entrezGeneId":"5566"},{"alias":"PKA C-beta","entrezGeneId":"5567"},{"alias":"PKACB","entrezGeneId":"5567"},{"alias":"BDPLT19","entrezGeneId":"5568"},{"alias":"KAPG","entrezGeneId":"5568"},{"alias":"PKACg","entrezGeneId":"5568"},{"alias":"PRKACN1","entrezGeneId":"5569"},{"alias":"PRKACN2","entrezGeneId":"5570"},{"alias":"AMPKG","entrezGeneId":"5571"},{"alias":"ACRDYS1","entrezGeneId":"5573"},{"alias":"ADOHR","entrezGeneId":"5573"},{"alias":"CAR","entrezGeneId":"5573"},{"alias":"CNC","entrezGeneId":"5573"},{"alias":"CNC1","entrezGeneId":"5573"},{"alias":"PKR1","entrezGeneId":"5573"},{"alias":"PPNAD1","entrezGeneId":"5573"},{"alias":"PRKAR1","entrezGeneId":"5573"},{"alias":"TSE1","entrezGeneId":"5573"},{"alias":"PRKAR1AP","entrezGeneId":"5574"},{"alias":"PRKAR1","entrezGeneId":"5575"},{"alias":"PKR2","entrezGeneId":"5576"},{"alias":"PRKAR2","entrezGeneId":"5576"},{"alias":"PRKAR2","entrezGeneId":"5577"},{"alias":"RII-BETA","entrezGeneId":"5577"},{"alias":"AAG6","entrezGeneId":"5578"},{"alias":"PKC-alpha","entrezGeneId":"5578"},{"alias":"PKCA","entrezGeneId":"5578"},{"alias":"PRKACA","entrezGeneId":"5578"},{"alias":"PKC-beta","entrezGeneId":"5579"},{"alias":"PKCB","entrezGeneId":"5579"},{"alias":"PRKCB1","entrezGeneId":"5579"},{"alias":"PRKCB2","entrezGeneId":"5579"},{"alias":"ALPS3","entrezGeneId":"5580"},{"alias":"CVID9","entrezGeneId":"5580"},{"alias":"MAY1","entrezGeneId":"5580"},{"alias":"nPKC-delta","entrezGeneId":"5580"},{"alias":"PKCD","entrezGeneId":"5580"},{"alias":"nPKC-epsilon","entrezGeneId":"5581"},{"alias":"PKCE","entrezGeneId":"5581"},{"alias":"PKC-gamma","entrezGeneId":"5582"},{"alias":"PKCC","entrezGeneId":"5582"},{"alias":"PKCG","entrezGeneId":"5582"},{"alias":"SCA14","entrezGeneId":"5582"},{"alias":"nPKC-eta","entrezGeneId":"5583"},{"alias":"PKC-L","entrezGeneId":"5583"},{"alias":"PKCL","entrezGeneId":"5583"},{"alias":"PRKCL","entrezGeneId":"5583"},{"alias":"DXS1179E","entrezGeneId":"5584"},{"alias":"nPKC-iota","entrezGeneId":"5584"},{"alias":"PKCI","entrezGeneId":"5584"},{"alias":"DBK","entrezGeneId":"5585"},{"alias":"PAK-1","entrezGeneId":"5585"},{"alias":"PAK1","entrezGeneId":"5585"},{"alias":"PKN","entrezGeneId":"5585"},{"alias":"PKN-ALPHA","entrezGeneId":"5585"},{"alias":"PRK1","entrezGeneId":"5585"},{"alias":"PRKCL1","entrezGeneId":"5585"},{"alias":"Pak-2","entrezGeneId":"5586"},{"alias":"PAK2","entrezGeneId":"5586"},{"alias":"PRK2","entrezGeneId":"5586"},{"alias":"PRKCL2","entrezGeneId":"5586"},{"alias":"PRO2042","entrezGeneId":"5586"},{"alias":"STK7","entrezGeneId":"5586"},{"alias":"CHDED","entrezGeneId":"5587"},{"alias":"PKC-MU","entrezGeneId":"5587"},{"alias":"PKCM","entrezGeneId":"5587"},{"alias":"PKD","entrezGeneId":"5587"},{"alias":"PRKCM","entrezGeneId":"5587"},{"alias":"nPKC-theta","entrezGeneId":"5588"},{"alias":"PRKCT","entrezGeneId":"5588"},{"alias":"AGE-R2","entrezGeneId":"5589"},{"alias":"G19P1","entrezGeneId":"5589"},{"alias":"GIIB","entrezGeneId":"5589"},{"alias":"PCLD","entrezGeneId":"5589"},{"alias":"PCLD1","entrezGeneId":"5589"},{"alias":"PKCSH","entrezGeneId":"5589"},{"alias":"PLD1","entrezGeneId":"5589"},{"alias":"VASAP-60","entrezGeneId":"5589"},{"alias":"PKC-ZETA","entrezGeneId":"5590"},{"alias":"PKC2","entrezGeneId":"5590"},{"alias":"DNA-PKcs","entrezGeneId":"5591"},{"alias":"DNAPK","entrezGeneId":"5591"},{"alias":"DNPK1","entrezGeneId":"5591"},{"alias":"HYRC","entrezGeneId":"5591"},{"alias":"HYRC1","entrezGeneId":"5591"},{"alias":"IMD26","entrezGeneId":"5591"},{"alias":"p350","entrezGeneId":"5591"},{"alias":"XRCC7","entrezGeneId":"5591"},{"alias":"AAT8","entrezGeneId":"5592"},{"alias":"cGK","entrezGeneId":"5592"},{"alias":"cGK 1","entrezGeneId":"5592"},{"alias":"cGK1","entrezGeneId":"5592"},{"alias":"cGKI","entrezGeneId":"5592"},{"alias":"cGKI-alpha","entrezGeneId":"5592"},{"alias":"cGKI-BETA","entrezGeneId":"5592"},{"alias":"PKG","entrezGeneId":"5592"},{"alias":"PRKG1B","entrezGeneId":"5592"},{"alias":"PRKGR1B","entrezGeneId":"5592"},{"alias":"cGK2","entrezGeneId":"5593"},{"alias":"cGKII","entrezGeneId":"5593"},{"alias":"PRKGR2","entrezGeneId":"5593"},{"alias":"ERK","entrezGeneId":"5594"},{"alias":"ERK-2","entrezGeneId":"5594"},{"alias":"ERK2","entrezGeneId":"5594"},{"alias":"ERT1","entrezGeneId":"5594"},{"alias":"MAPK2","entrezGeneId":"5594"},{"alias":"p38","entrezGeneId":"5594"},{"alias":"p40","entrezGeneId":"5594"},{"alias":"p41","entrezGeneId":"5594"},{"alias":"p41mapk","entrezGeneId":"5594"},{"alias":"p42-MAPK","entrezGeneId":"5594"},{"alias":"P42MAPK","entrezGeneId":"5594"},{"alias":"PRKM1","entrezGeneId":"5594"},{"alias":"PRKM2","entrezGeneId":"5594"},{"alias":"ERK-1","entrezGeneId":"5595"},{"alias":"ERK1","entrezGeneId":"5595"},{"alias":"ERT2","entrezGeneId":"5595"},{"alias":"HS44KDAP","entrezGeneId":"5595"},{"alias":"HUMKER1A","entrezGeneId":"5595"},{"alias":"p44-ERK1","entrezGeneId":"5595"},{"alias":"p44-MAPK","entrezGeneId":"5595"},{"alias":"P44ERK1","entrezGeneId":"5595"},{"alias":"P44MAPK","entrezGeneId":"5595"},{"alias":"PRKM3","entrezGeneId":"5595"},{"alias":"ERK-4","entrezGeneId":"5596"},{"alias":"ERK4","entrezGeneId":"5596"},{"alias":"p63-MAPK","entrezGeneId":"5596"},{"alias":"p63MAPK","entrezGeneId":"5596"},{"alias":"PRKM4","entrezGeneId":"5596"},{"alias":"ERK3","entrezGeneId":"5597"},{"alias":"HsT17250","entrezGeneId":"5597"},{"alias":"p97MAPK","entrezGeneId":"5597"},{"alias":"PRKM6","entrezGeneId":"5597"},{"alias":"BMK1","entrezGeneId":"5598"},{"alias":"ERK4","entrezGeneId":"5598"},{"alias":"ERK5","entrezGeneId":"5598"},{"alias":"PRKM7","entrezGeneId":"5598"},{"alias":"JNK","entrezGeneId":"5599"},{"alias":"JNK-46","entrezGeneId":"5599"},{"alias":"JNK1","entrezGeneId":"5599"},{"alias":"JNK1A2","entrezGeneId":"5599"},{"alias":"JNK21B1/2","entrezGeneId":"5599"},{"alias":"PRKM8","entrezGeneId":"5599"},{"alias":"SAPK1","entrezGeneId":"5599"},{"alias":"SAPK1c","entrezGeneId":"5599"},{"alias":"p38-2","entrezGeneId":"5600"},{"alias":"P38B","entrezGeneId":"5600"},{"alias":"p38Beta","entrezGeneId":"5600"},{"alias":"P38BETA2","entrezGeneId":"5600"},{"alias":"PRKM11","entrezGeneId":"5600"},{"alias":"SAPK2","entrezGeneId":"5600"},{"alias":"SAPK2B","entrezGeneId":"5600"},{"alias":"JNK-55","entrezGeneId":"5601"},{"alias":"JNK2","entrezGeneId":"5601"},{"alias":"JNK2A","entrezGeneId":"5601"},{"alias":"JNK2ALPHA","entrezGeneId":"5601"},{"alias":"JNK2B","entrezGeneId":"5601"},{"alias":"JNK2BETA","entrezGeneId":"5601"},{"alias":"p54a","entrezGeneId":"5601"},{"alias":"p54aSAPK","entrezGeneId":"5601"},{"alias":"PRKM9","entrezGeneId":"5601"},{"alias":"SAPK","entrezGeneId":"5601"},{"alias":"SAPK1a","entrezGeneId":"5601"},{"alias":"JNK3","entrezGeneId":"5602"},{"alias":"JNK3A","entrezGeneId":"5602"},{"alias":"p493F12","entrezGeneId":"5602"},{"alias":"p54bSAPK","entrezGeneId":"5602"},{"alias":"PRKM10","entrezGeneId":"5602"},{"alias":"SAPK1b","entrezGeneId":"5602"},{"alias":"MAPK 13","entrezGeneId":"5603"},{"alias":"MAPK-13","entrezGeneId":"5603"},{"alias":"p38delta","entrezGeneId":"5603"},{"alias":"PRKM13","entrezGeneId":"5603"},{"alias":"SAPK4","entrezGeneId":"5603"},{"alias":"CFC3","entrezGeneId":"5604"},{"alias":"MAPKK1","entrezGeneId":"5604"},{"alias":"MEK1","entrezGeneId":"5604"},{"alias":"MKK1","entrezGeneId":"5604"},{"alias":"PRKMK1","entrezGeneId":"5604"},{"alias":"CFC4","entrezGeneId":"5605"},{"alias":"MAPKK2","entrezGeneId":"5605"},{"alias":"MEK2","entrezGeneId":"5605"},{"alias":"MKK2","entrezGeneId":"5605"},{"alias":"PRKMK2","entrezGeneId":"5605"},{"alias":"MAPKK3","entrezGeneId":"5606"},{"alias":"MEK3","entrezGeneId":"5606"},{"alias":"MKK3","entrezGeneId":"5606"},{"alias":"PRKMK3","entrezGeneId":"5606"},{"alias":"SAPKK-2","entrezGeneId":"5606"},{"alias":"SAPKK2","entrezGeneId":"5606"},{"alias":"HsT17454","entrezGeneId":"5607"},{"alias":"MAPKK5","entrezGeneId":"5607"},{"alias":"MEK5","entrezGeneId":"5607"},{"alias":"PRKMK5","entrezGeneId":"5607"},{"alias":"MAPKK6","entrezGeneId":"5608"},{"alias":"MEK6","entrezGeneId":"5608"},{"alias":"MKK6","entrezGeneId":"5608"},{"alias":"PRKMK6","entrezGeneId":"5608"},{"alias":"SAPKK-3","entrezGeneId":"5608"},{"alias":"SAPKK3","entrezGeneId":"5608"},{"alias":"JNKK2","entrezGeneId":"5609"},{"alias":"MAPKK7","entrezGeneId":"5609"},{"alias":"MEK","entrezGeneId":"5609"},{"alias":"MEK 7","entrezGeneId":"5609"},{"alias":"MKK7","entrezGeneId":"5609"},{"alias":"PRKMK7","entrezGeneId":"5609"},{"alias":"SAPKK-4","entrezGeneId":"5609"},{"alias":"SAPKK4","entrezGeneId":"5609"},{"alias":"EIF2AK1","entrezGeneId":"5610"},{"alias":"PKR","entrezGeneId":"5610"},{"alias":"PPP1R83","entrezGeneId":"5610"},{"alias":"PRKR","entrezGeneId":"5610"},{"alias":"ACPHD","entrezGeneId":"5611"},{"alias":"ERdj6","entrezGeneId":"5611"},{"alias":"HP58","entrezGeneId":"5611"},{"alias":"P58","entrezGeneId":"5611"},{"alias":"P58IPK","entrezGeneId":"5611"},{"alias":"PRKRI","entrezGeneId":"5611"},{"alias":"DAP4","entrezGeneId":"5612"},{"alias":"P52rIPK","entrezGeneId":"5612"},{"alias":"PRKRIR","entrezGeneId":"5612"},{"alias":"THAP0","entrezGeneId":"5612"},{"alias":"PKX1","entrezGeneId":"5613"},{"alias":"PRKXP3","entrezGeneId":"5616"},{"alias":"PRKYP","entrezGeneId":"5616"},{"alias":"GHA1","entrezGeneId":"5617"},{"alias":"HPRL","entrezGeneId":"5618"},{"alias":"hPRLrI","entrezGeneId":"5618"},{"alias":"MFAB","entrezGeneId":"5618"},{"alias":"RI-PRLR","entrezGeneId":"5618"},{"alias":"CT94.1","entrezGeneId":"5619"},{"alias":"P1","entrezGeneId":"5619"},{"alias":"CT94.2","entrezGeneId":"5620"},{"alias":"AltPrP","entrezGeneId":"5621"},{"alias":"ASCR","entrezGeneId":"5621"},{"alias":"CD230","entrezGeneId":"5621"},{"alias":"CJD","entrezGeneId":"5621"},{"alias":"GSS","entrezGeneId":"5621"},{"alias":"KURU","entrezGeneId":"5621"},{"alias":"p27-30","entrezGeneId":"5621"},{"alias":"PRIP","entrezGeneId":"5621"},{"alias":"PrP","entrezGeneId":"5621"},{"alias":"PrP27-30","entrezGeneId":"5621"},{"alias":"PrP33-35C","entrezGeneId":"5621"},{"alias":"PrPc","entrezGeneId":"5621"},{"alias":"PSP","entrezGeneId":"5623"},{"alias":"APC","entrezGeneId":"5624"},{"alias":"PC","entrezGeneId":"5624"},{"alias":"PROC1","entrezGeneId":"5624"},{"alias":"THPH3","entrezGeneId":"5624"},{"alias":"THPH4","entrezGeneId":"5624"},{"alias":"HSPOX2","entrezGeneId":"5625"},{"alias":"PIG6","entrezGeneId":"5625"},{"alias":"POX","entrezGeneId":"5625"},{"alias":"PRODH1","entrezGeneId":"5625"},{"alias":"PRODH2","entrezGeneId":"5625"},{"alias":"TP53I6","entrezGeneId":"5625"},{"alias":"CPHD2","entrezGeneId":"5626"},{"alias":"PROP-1","entrezGeneId":"5626"},{"alias":"PROS","entrezGeneId":"5627"},{"alias":"PS21","entrezGeneId":"5627"},{"alias":"PS22","entrezGeneId":"5627"},{"alias":"PS23","entrezGeneId":"5627"},{"alias":"PS24","entrezGeneId":"5627"},{"alias":"PS25","entrezGeneId":"5627"},{"alias":"PSA","entrezGeneId":"5627"},{"alias":"THPH5","entrezGeneId":"5627"},{"alias":"THPH6","entrezGeneId":"5627"},{"alias":"PROS2","entrezGeneId":"5628"},{"alias":"PROSP","entrezGeneId":"5628"},{"alias":"NEF4","entrezGeneId":"5630"},{"alias":"PRPH1","entrezGeneId":"5630"},{"alias":"ARTS","entrezGeneId":"5631"},{"alias":"CMTX5","entrezGeneId":"5631"},{"alias":"DFN2","entrezGeneId":"5631"},{"alias":"DFNX1","entrezGeneId":"5631"},{"alias":"PPRibP","entrezGeneId":"5631"},{"alias":"PRS-I","entrezGeneId":"5631"},{"alias":"PRSI","entrezGeneId":"5631"},{"alias":"PRSII","entrezGeneId":"5634"},{"alias":"PAP39","entrezGeneId":"5635"},{"alias":"PAP41","entrezGeneId":"5636"},{"alias":"PRGP1","entrezGeneId":"5638"},{"alias":"PRGP2","entrezGeneId":"5639"},{"alias":"MRXS2","entrezGeneId":"5640"},{"alias":"AEP","entrezGeneId":"5641"},{"alias":"LGMN1","entrezGeneId":"5641"},{"alias":"PRSC1","entrezGeneId":"5641"},{"alias":"TRP1","entrezGeneId":"5644"},{"alias":"TRY1","entrezGeneId":"5644"},{"alias":"TRY4","entrezGeneId":"5644"},{"alias":"TRYP1","entrezGeneId":"5644"},{"alias":"TRY2","entrezGeneId":"5645"},{"alias":"TRY8","entrezGeneId":"5645"},{"alias":"TRYP2","entrezGeneId":"5645"},{"alias":"MTG","entrezGeneId":"5646"},{"alias":"PRSS4","entrezGeneId":"5646"},{"alias":"T9","entrezGeneId":"5646"},{"alias":"TRY3","entrezGeneId":"5646"},{"alias":"TRY4","entrezGeneId":"5646"},{"alias":"3MC1","entrezGeneId":"5648"},{"alias":"CRARF","entrezGeneId":"5648"},{"alias":"CRARF1","entrezGeneId":"5648"},{"alias":"MAP1","entrezGeneId":"5648"},{"alias":"MAp44","entrezGeneId":"5648"},{"alias":"MASP","entrezGeneId":"5648"},{"alias":"MASP3","entrezGeneId":"5648"},{"alias":"PRSS5","entrezGeneId":"5648"},{"alias":"RaRF","entrezGeneId":"5648"},{"alias":"ETL7","entrezGeneId":"5649"},{"alias":"LIS2","entrezGeneId":"5649"},{"alias":"PRO1598","entrezGeneId":"5649"},{"alias":"RL","entrezGeneId":"5649"},{"alias":"hK7","entrezGeneId":"5650"},{"alias":"PRSS6","entrezGeneId":"5650"},{"alias":"SCCE","entrezGeneId":"5650"},{"alias":"ENTK","entrezGeneId":"5651"},{"alias":"PRSS7","entrezGeneId":"5651"},{"alias":"CAP1","entrezGeneId":"5652"},{"alias":"PROSTASIN","entrezGeneId":"5652"},{"alias":"Bssp","entrezGeneId":"5653"},{"alias":"hK6","entrezGeneId":"5653"},{"alias":"Klk7","entrezGeneId":"5653"},{"alias":"PRSS18","entrezGeneId":"5653"},{"alias":"PRSS9","entrezGeneId":"5653"},{"alias":"SP59","entrezGeneId":"5653"},{"alias":"ARMD7","entrezGeneId":"5654"},{"alias":"CADASIL2","entrezGeneId":"5654"},{"alias":"CARASIL","entrezGeneId":"5654"},{"alias":"HtrA","entrezGeneId":"5654"},{"alias":"L56","entrezGeneId":"5654"},{"alias":"ORF480","entrezGeneId":"5654"},{"alias":"PRSS11","entrezGeneId":"5654"},{"alias":"NES1","entrezGeneId":"5655"},{"alias":"PRSSL1","entrezGeneId":"5655"},{"alias":"ACPA","entrezGeneId":"5657"},{"alias":"AGP7","entrezGeneId":"5657"},{"alias":"C-ANCA","entrezGeneId":"5657"},{"alias":"CANCA","entrezGeneId":"5657"},{"alias":"MBN","entrezGeneId":"5657"},{"alias":"MBT","entrezGeneId":"5657"},{"alias":"NP-4","entrezGeneId":"5657"},{"alias":"NP4","entrezGeneId":"5657"},{"alias":"P29","entrezGeneId":"5657"},{"alias":"PR-3","entrezGeneId":"5657"},{"alias":"PR3","entrezGeneId":"5657"},{"alias":"GLBA","entrezGeneId":"5660"},{"alias":"SAP1","entrezGeneId":"5660"},{"alias":"EFA6","entrezGeneId":"5662"},{"alias":"EFA6A","entrezGeneId":"5662"},{"alias":"PSD1","entrezGeneId":"5662"},{"alias":"TYL","entrezGeneId":"5662"},{"alias":"ACNINV3","entrezGeneId":"5663"},{"alias":"AD3","entrezGeneId":"5663"},{"alias":"FAD","entrezGeneId":"5663"},{"alias":"PS-1","entrezGeneId":"5663"},{"alias":"PS1","entrezGeneId":"5663"},{"alias":"S182","entrezGeneId":"5663"},{"alias":"AD3L","entrezGeneId":"5664"},{"alias":"AD4","entrezGeneId":"5664"},{"alias":"CMD1V","entrezGeneId":"5664"},{"alias":"PS2","entrezGeneId":"5664"},{"alias":"STM2","entrezGeneId":"5664"},{"alias":"B1G1","entrezGeneId":"5669"},{"alias":"CD66f","entrezGeneId":"5669"},{"alias":"DHFRP2","entrezGeneId":"5669"},{"alias":"FL-NCA-1/2","entrezGeneId":"5669"},{"alias":"PBG1","entrezGeneId":"5669"},{"alias":"PS-beta-C/D","entrezGeneId":"5669"},{"alias":"PS-beta-G-1","entrezGeneId":"5669"},{"alias":"PSBG-1","entrezGeneId":"5669"},{"alias":"PSBG1","entrezGeneId":"5669"},{"alias":"PSG95","entrezGeneId":"5669"},{"alias":"PSGGA","entrezGeneId":"5669"},{"alias":"PSGIIA","entrezGeneId":"5669"},{"alias":"SP1","entrezGeneId":"5669"},{"alias":"CEA","entrezGeneId":"5670"},{"alias":"PSBG2","entrezGeneId":"5670"},{"alias":"PSG1","entrezGeneId":"5670"},{"alias":"PSBG-4","entrezGeneId":"5672"},{"alias":"PSBG-9","entrezGeneId":"5672"},{"alias":"PSG9","entrezGeneId":"5672"},{"alias":"FL-NCA-3","entrezGeneId":"5673"},{"alias":"PSG","entrezGeneId":"5673"},{"alias":"PSBG-10","entrezGeneId":"5675"},{"alias":"PSBG-12","entrezGeneId":"5675"},{"alias":"PSBG-6","entrezGeneId":"5675"},{"alias":"PSG10","entrezGeneId":"5675"},{"alias":"PSGGB","entrezGeneId":"5675"},{"alias":"PSBG-7","entrezGeneId":"5676"},{"alias":"PSG1","entrezGeneId":"5676"},{"alias":"PSGGA","entrezGeneId":"5676"},{"alias":"PS34","entrezGeneId":"5678"},{"alias":"PSBG-11","entrezGeneId":"5678"},{"alias":"PSBG-9","entrezGeneId":"5678"},{"alias":"PSG11","entrezGeneId":"5678"},{"alias":"PSGII","entrezGeneId":"5678"},{"alias":"PSBG-11","entrezGeneId":"5680"},{"alias":"PSBG-13","entrezGeneId":"5680"},{"alias":"PSG13","entrezGeneId":"5680"},{"alias":"PSG14","entrezGeneId":"5680"},{"alias":"HC2","entrezGeneId":"5682"},{"alias":"HEL-S-275","entrezGeneId":"5682"},{"alias":"NU","entrezGeneId":"5682"},{"alias":"PROS30","entrezGeneId":"5682"},{"alias":"HC3","entrezGeneId":"5683"},{"alias":"MU","entrezGeneId":"5683"},{"alias":"PMSA2","entrezGeneId":"5683"},{"alias":"PSC2","entrezGeneId":"5683"},{"alias":"HC8","entrezGeneId":"5684"},{"alias":"PSC3","entrezGeneId":"5684"},{"alias":"HC9","entrezGeneId":"5685"},{"alias":"HsT17706","entrezGeneId":"5685"},{"alias":"PSC9","entrezGeneId":"5685"},{"alias":"PSC5","entrezGeneId":"5686"},{"alias":"ZETA","entrezGeneId":"5686"},{"alias":"IOTA","entrezGeneId":"5687"},{"alias":"p27K","entrezGeneId":"5687"},{"alias":"PROS27","entrezGeneId":"5687"},{"alias":"C6","entrezGeneId":"5688"},{"alias":"HEL-S-276","entrezGeneId":"5688"},{"alias":"HSPC","entrezGeneId":"5688"},{"alias":"RC6-1","entrezGeneId":"5688"},{"alias":"XAPC7","entrezGeneId":"5688"},{"alias":"HC5","entrezGeneId":"5689"},{"alias":"PMSB1","entrezGeneId":"5689"},{"alias":"PSC5","entrezGeneId":"5689"},{"alias":"HC7-I","entrezGeneId":"5690"},{"alias":"HC10-II","entrezGeneId":"5691"},{"alias":"HN3","entrezGeneId":"5692"},{"alias":"HsN3","entrezGeneId":"5692"},{"alias":"PROS-26","entrezGeneId":"5692"},{"alias":"PROS26","entrezGeneId":"5692"},{"alias":"LMPX","entrezGeneId":"5693"},{"alias":"MB1","entrezGeneId":"5693"},{"alias":"X","entrezGeneId":"5693"},{"alias":"DELTA","entrezGeneId":"5694"},{"alias":"LMPY","entrezGeneId":"5694"},{"alias":"Y","entrezGeneId":"5694"},{"alias":"Z","entrezGeneId":"5695"},{"alias":"ALDD","entrezGeneId":"5696"},{"alias":"D6S216","entrezGeneId":"5696"},{"alias":"D6S216E","entrezGeneId":"5696"},{"alias":"JMP","entrezGeneId":"5696"},{"alias":"LMP7","entrezGeneId":"5696"},{"alias":"NKJO","entrezGeneId":"5696"},{"alias":"PSMB5i","entrezGeneId":"5696"},{"alias":"RING10","entrezGeneId":"5696"},{"alias":"PYY-I","entrezGeneId":"5697"},{"alias":"PYY1","entrezGeneId":"5697"},{"alias":"beta1i","entrezGeneId":"5698"},{"alias":"LMP2","entrezGeneId":"5698"},{"alias":"PSMB6i","entrezGeneId":"5698"},{"alias":"RING12","entrezGeneId":"5698"},{"alias":"beta2i","entrezGeneId":"5699"},{"alias":"LMP10","entrezGeneId":"5699"},{"alias":"MECL1","entrezGeneId":"5699"},{"alias":"P26S4","entrezGeneId":"5700"},{"alias":"p56","entrezGeneId":"5700"},{"alias":"S4","entrezGeneId":"5700"},{"alias":"MSS1","entrezGeneId":"5701"},{"alias":"Nbla10058","entrezGeneId":"5701"},{"alias":"S7","entrezGeneId":"5701"},{"alias":"TBP1","entrezGeneId":"5702"},{"alias":"PSMC3P","entrezGeneId":"5703"},{"alias":"MIP224","entrezGeneId":"5704"},{"alias":"RPT3","entrezGeneId":"5704"},{"alias":"S6","entrezGeneId":"5704"},{"alias":"TBP-7","entrezGeneId":"5704"},{"alias":"TBP7","entrezGeneId":"5704"},{"alias":"p45","entrezGeneId":"5705"},{"alias":"p45/SUG","entrezGeneId":"5705"},{"alias":"S8","entrezGeneId":"5705"},{"alias":"SUG-1","entrezGeneId":"5705"},{"alias":"SUG1","entrezGeneId":"5705"},{"alias":"TBP10","entrezGeneId":"5705"},{"alias":"TRIP1","entrezGeneId":"5705"},{"alias":"CADP44","entrezGeneId":"5706"},{"alias":"HEL-S-73","entrezGeneId":"5706"},{"alias":"p42","entrezGeneId":"5706"},{"alias":"P44","entrezGeneId":"5706"},{"alias":"SUG2","entrezGeneId":"5706"},{"alias":"P112","entrezGeneId":"5707"},{"alias":"Rpn2","entrezGeneId":"5707"},{"alias":"S1","entrezGeneId":"5707"},{"alias":"P97","entrezGeneId":"5708"},{"alias":"RPN1","entrezGeneId":"5708"},{"alias":"S2","entrezGeneId":"5708"},{"alias":"TRAP2","entrezGeneId":"5708"},{"alias":"P58","entrezGeneId":"5709"},{"alias":"RPN3","entrezGeneId":"5709"},{"alias":"S3","entrezGeneId":"5709"},{"alias":"TSTA2","entrezGeneId":"5709"},{"alias":"AF","entrezGeneId":"5710"},{"alias":"AF-1","entrezGeneId":"5710"},{"alias":"ASF","entrezGeneId":"5710"},{"alias":"MCB1","entrezGeneId":"5710"},{"alias":"pUB-R5","entrezGeneId":"5710"},{"alias":"Rpn10","entrezGeneId":"5710"},{"alias":"S5A","entrezGeneId":"5710"},{"alias":"S5B","entrezGeneId":"5711"},{"alias":"MOV34","entrezGeneId":"5713"},{"alias":"P40","entrezGeneId":"5713"},{"alias":"Rpn8","entrezGeneId":"5713"},{"alias":"S12","entrezGeneId":"5713"},{"alias":"HEL-S-91n","entrezGeneId":"5714"},{"alias":"HIP6","entrezGeneId":"5714"},{"alias":"HYPF","entrezGeneId":"5714"},{"alias":"Nin1p","entrezGeneId":"5714"},{"alias":"p31","entrezGeneId":"5714"},{"alias":"Rpn12","entrezGeneId":"5714"},{"alias":"S14","entrezGeneId":"5714"},{"alias":"p27","entrezGeneId":"5715"},{"alias":"Rpn4","entrezGeneId":"5715"},{"alias":"dJ889N15.2","entrezGeneId":"5716"},{"alias":"p28","entrezGeneId":"5716"},{"alias":"p28(GANK)","entrezGeneId":"5716"},{"alias":"p44.5","entrezGeneId":"5717"},{"alias":"Rpn6","entrezGeneId":"5717"},{"alias":"S9","entrezGeneId":"5717"},{"alias":"p55","entrezGeneId":"5718"},{"alias":"Rpn5","entrezGeneId":"5718"},{"alias":"STISS","entrezGeneId":"5718"},{"alias":"HSPC027","entrezGeneId":"5719"},{"alias":"p40.5","entrezGeneId":"5719"},{"alias":"Rpn9","entrezGeneId":"5719"},{"alias":"S11","entrezGeneId":"5719"},{"alias":"HEL-S-129m","entrezGeneId":"5720"},{"alias":"IFI5111","entrezGeneId":"5720"},{"alias":"PA28A","entrezGeneId":"5720"},{"alias":"PA28alpha","entrezGeneId":"5720"},{"alias":"REGalpha","entrezGeneId":"5720"},{"alias":"PA28B","entrezGeneId":"5721"},{"alias":"PA28beta","entrezGeneId":"5721"},{"alias":"REGbeta","entrezGeneId":"5721"},{"alias":"PSP","entrezGeneId":"5723"},{"alias":"PSPHD","entrezGeneId":"5723"},{"alias":"PAFR","entrezGeneId":"5724"},{"alias":"HNRNP-I","entrezGeneId":"5725"},{"alias":"HNRNPI","entrezGeneId":"5725"},{"alias":"HNRPI","entrezGeneId":"5725"},{"alias":"pPTB","entrezGeneId":"5725"},{"alias":"PTB","entrezGeneId":"5725"},{"alias":"PTB-1","entrezGeneId":"5725"},{"alias":"PTB-T","entrezGeneId":"5725"},{"alias":"PTB2","entrezGeneId":"5725"},{"alias":"PTB3","entrezGeneId":"5725"},{"alias":"PTB4","entrezGeneId":"5725"},{"alias":"PTC","entrezGeneId":"5726"},{"alias":"T2R38","entrezGeneId":"5726"},{"alias":"T2R61","entrezGeneId":"5726"},{"alias":"BCNS","entrezGeneId":"5727"},{"alias":"NBCCS","entrezGeneId":"5727"},{"alias":"PTC","entrezGeneId":"5727"},{"alias":"PTC1","entrezGeneId":"5727"},{"alias":"PTCH","entrezGeneId":"5727"},{"alias":"10q23del","entrezGeneId":"5728"},{"alias":"BZS","entrezGeneId":"5728"},{"alias":"CWS1","entrezGeneId":"5728"},{"alias":"DEC","entrezGeneId":"5728"},{"alias":"GLM2","entrezGeneId":"5728"},{"alias":"MHAM","entrezGeneId":"5728"},{"alias":"MMAC1","entrezGeneId":"5728"},{"alias":"PTEN1","entrezGeneId":"5728"},{"alias":"PTENbeta","entrezGeneId":"5728"},{"alias":"TEP1","entrezGeneId":"5728"},{"alias":"AS1","entrezGeneId":"5729"},{"alias":"ASRT1","entrezGeneId":"5729"},{"alias":"DP","entrezGeneId":"5729"},{"alias":"DP1","entrezGeneId":"5729"},{"alias":"PTGDR1","entrezGeneId":"5729"},{"alias":"L-PGDS","entrezGeneId":"5730"},{"alias":"LPGDS","entrezGeneId":"5730"},{"alias":"PDS","entrezGeneId":"5730"},{"alias":"PGD2","entrezGeneId":"5730"},{"alias":"PGDS","entrezGeneId":"5730"},{"alias":"PGDS2","entrezGeneId":"5730"},{"alias":"EP1","entrezGeneId":"5731"},{"alias":"EP2","entrezGeneId":"5732"},{"alias":"EP3","entrezGeneId":"5733"},{"alias":"EP3-I","entrezGeneId":"5733"},{"alias":"EP3-II","entrezGeneId":"5733"},{"alias":"EP3-III","entrezGeneId":"5733"},{"alias":"EP3-IV","entrezGeneId":"5733"},{"alias":"EP3-VI","entrezGeneId":"5733"},{"alias":"EP3e","entrezGeneId":"5733"},{"alias":"PGE2-R","entrezGeneId":"5733"},{"alias":"EP4","entrezGeneId":"5734"},{"alias":"EP4R","entrezGeneId":"5734"},{"alias":"FP","entrezGeneId":"5737"},{"alias":"CD315","entrezGeneId":"5738"},{"alias":"CD9P-1","entrezGeneId":"5738"},{"alias":"EWI-F","entrezGeneId":"5738"},{"alias":"FPRP","entrezGeneId":"5738"},{"alias":"SMAP-6","entrezGeneId":"5738"},{"alias":"IP","entrezGeneId":"5739"},{"alias":"PRIPR","entrezGeneId":"5739"},{"alias":"CYP8","entrezGeneId":"5740"},{"alias":"CYP8A1","entrezGeneId":"5740"},{"alias":"PGIS","entrezGeneId":"5740"},{"alias":"PTGI","entrezGeneId":"5740"},{"alias":"PTH1","entrezGeneId":"5741"},{"alias":"COX1","entrezGeneId":"5742"},{"alias":"COX3","entrezGeneId":"5742"},{"alias":"PCOX1","entrezGeneId":"5742"},{"alias":"PES-1","entrezGeneId":"5742"},{"alias":"PGG/HS","entrezGeneId":"5742"},{"alias":"PGHS-1","entrezGeneId":"5742"},{"alias":"PGHS1","entrezGeneId":"5742"},{"alias":"PHS1","entrezGeneId":"5742"},{"alias":"PTGHS","entrezGeneId":"5742"},{"alias":"COX-2","entrezGeneId":"5743"},{"alias":"COX2","entrezGeneId":"5743"},{"alias":"GRIPGHS","entrezGeneId":"5743"},{"alias":"hCox-2","entrezGeneId":"5743"},{"alias":"PGG/HS","entrezGeneId":"5743"},{"alias":"PGHS-2","entrezGeneId":"5743"},{"alias":"PHS-2","entrezGeneId":"5743"},{"alias":"BDE2","entrezGeneId":"5744"},{"alias":"HHM","entrezGeneId":"5744"},{"alias":"PLP","entrezGeneId":"5744"},{"alias":"PTHR","entrezGeneId":"5744"},{"alias":"PTHRP","entrezGeneId":"5744"},{"alias":"PFE","entrezGeneId":"5745"},{"alias":"PTHR","entrezGeneId":"5745"},{"alias":"PTHR1","entrezGeneId":"5745"},{"alias":"PTHR2","entrezGeneId":"5746"},{"alias":"FADK","entrezGeneId":"5747"},{"alias":"FAK","entrezGeneId":"5747"},{"alias":"FAK1","entrezGeneId":"5747"},{"alias":"FRNK","entrezGeneId":"5747"},{"alias":"p125FAK","entrezGeneId":"5747"},{"alias":"pp125FAK","entrezGeneId":"5747"},{"alias":"PPP1R71","entrezGeneId":"5747"},{"alias":"BRK","entrezGeneId":"5753"},{"alias":"CCK-4","entrezGeneId":"5754"},{"alias":"CCK4","entrezGeneId":"5754"},{"alias":"A6","entrezGeneId":"5756"},{"alias":"PTK9","entrezGeneId":"5756"},{"alias":"TMSA","entrezGeneId":"5757"},{"alias":"PTMA","entrezGeneId":"5761"},{"alias":"ParaT","entrezGeneId":"5763"},{"alias":"HARP","entrezGeneId":"5764"},{"alias":"HB-GAM","entrezGeneId":"5764"},{"alias":"HBBM","entrezGeneId":"5764"},{"alias":"HBGF-8","entrezGeneId":"5764"},{"alias":"HBGF8","entrezGeneId":"5764"},{"alias":"HBNF","entrezGeneId":"5764"},{"alias":"HBNF-1","entrezGeneId":"5764"},{"alias":"NEGF1","entrezGeneId":"5764"},{"alias":"OSF-1","entrezGeneId":"5764"},{"alias":"h-PRL-1","entrezGeneId":"5767"},{"alias":"PTP4AP1","entrezGeneId":"5767"},{"alias":"Q6","entrezGeneId":"5768"},{"alias":"QSCN6","entrezGeneId":"5768"},{"alias":"PTP4AP2","entrezGeneId":"5769"},{"alias":"PTP1B","entrezGeneId":"5770"},{"alias":"PTN2","entrezGeneId":"5771"},{"alias":"PTPT","entrezGeneId":"5771"},{"alias":"TC-PTP","entrezGeneId":"5771"},{"alias":"TCELLPTP","entrezGeneId":"5771"},{"alias":"TCPTP","entrezGeneId":"5771"},{"alias":"PTP-H1","entrezGeneId":"5774"},{"alias":"PTPH1","entrezGeneId":"5774"},{"alias":"MEG","entrezGeneId":"5775"},{"alias":"PTPMEG","entrezGeneId":"5775"},{"alias":"PTPMEG1","entrezGeneId":"5775"},{"alias":"HCP","entrezGeneId":"5777"},{"alias":"HCPH","entrezGeneId":"5777"},{"alias":"HPTP1C","entrezGeneId":"5777"},{"alias":"PTP-1C","entrezGeneId":"5777"},{"alias":"SH-PTP1","entrezGeneId":"5777"},{"alias":"SHP-1","entrezGeneId":"5777"},{"alias":"SHP-1L","entrezGeneId":"5777"},{"alias":"SHP1","entrezGeneId":"5777"},{"alias":"BPTP-4","entrezGeneId":"5778"},{"alias":"HEPTP","entrezGeneId":"5778"},{"alias":"LC-PTP","entrezGeneId":"5778"},{"alias":"LPTP","entrezGeneId":"5778"},{"alias":"PTPNI","entrezGeneId":"5778"},{"alias":"MEG2","entrezGeneId":"5780"},{"alias":"PTPMEG2","entrezGeneId":"5780"},{"alias":"BPTP3","entrezGeneId":"5781"},{"alias":"CFC","entrezGeneId":"5781"},{"alias":"JMML","entrezGeneId":"5781"},{"alias":"METCDS","entrezGeneId":"5781"},{"alias":"NS1","entrezGeneId":"5781"},{"alias":"PTP-1D","entrezGeneId":"5781"},{"alias":"PTP2C","entrezGeneId":"5781"},{"alias":"SH-PTP2","entrezGeneId":"5781"},{"alias":"SH-PTP3","entrezGeneId":"5781"},{"alias":"SHP2","entrezGeneId":"5781"},{"alias":"PTP-PEST","entrezGeneId":"5782"},{"alias":"PTPG1","entrezGeneId":"5782"},{"alias":"FAP-1","entrezGeneId":"5783"},{"alias":"hPTP1E","entrezGeneId":"5783"},{"alias":"PNP1","entrezGeneId":"5783"},{"alias":"PTP-BAS","entrezGeneId":"5783"},{"alias":"PTP-BL","entrezGeneId":"5783"},{"alias":"PTP1E","entrezGeneId":"5783"},{"alias":"PTPL1","entrezGeneId":"5783"},{"alias":"PTPLE","entrezGeneId":"5783"},{"alias":"CATLPH","entrezGeneId":"5784"},{"alias":"PEZ","entrezGeneId":"5784"},{"alias":"PTP36","entrezGeneId":"5784"},{"alias":"HEPTP","entrezGeneId":"5786"},{"alias":"HLPR","entrezGeneId":"5786"},{"alias":"HPTPA","entrezGeneId":"5786"},{"alias":"HPTPalpha","entrezGeneId":"5786"},{"alias":"LRP","entrezGeneId":"5786"},{"alias":"PTPA","entrezGeneId":"5786"},{"alias":"PTPRL2","entrezGeneId":"5786"},{"alias":"R-PTP-alpha","entrezGeneId":"5786"},{"alias":"RPTPA","entrezGeneId":"5786"},{"alias":"HPTP-BETA","entrezGeneId":"5787"},{"alias":"HPTPB","entrezGeneId":"5787"},{"alias":"PTPB","entrezGeneId":"5787"},{"alias":"R-PTP-BETA","entrezGeneId":"5787"},{"alias":"VEPTP","entrezGeneId":"5787"},{"alias":"B220","entrezGeneId":"5788"},{"alias":"CD45","entrezGeneId":"5788"},{"alias":"CD45R","entrezGeneId":"5788"},{"alias":"GP180","entrezGeneId":"5788"},{"alias":"L-CA","entrezGeneId":"5788"},{"alias":"LCA","entrezGeneId":"5788"},{"alias":"LY5","entrezGeneId":"5788"},{"alias":"T200","entrezGeneId":"5788"},{"alias":"HPTP","entrezGeneId":"5789"},{"alias":"HPTPD","entrezGeneId":"5789"},{"alias":"HPTPDELTA","entrezGeneId":"5789"},{"alias":"PTPD","entrezGeneId":"5789"},{"alias":"RPTPDELTA","entrezGeneId":"5789"},{"alias":"CD45-AP","entrezGeneId":"5790"},{"alias":"LPAP","entrezGeneId":"5790"},{"alias":"HPTPE","entrezGeneId":"5791"},{"alias":"PTPE","entrezGeneId":"5791"},{"alias":"R-PTP-EPSILON","entrezGeneId":"5791"},{"alias":"BNAH2","entrezGeneId":"5792"},{"alias":"LAR","entrezGeneId":"5792"},{"alias":"HPTPG","entrezGeneId":"5793"},{"alias":"PTPG","entrezGeneId":"5793"},{"alias":"R-PTP-GAMMA","entrezGeneId":"5793"},{"alias":"RPTPG","entrezGeneId":"5793"},{"alias":"R-PTP-H","entrezGeneId":"5794"},{"alias":"SAP1","entrezGeneId":"5794"},{"alias":"CD148","entrezGeneId":"5795"},{"alias":"DEP1","entrezGeneId":"5795"},{"alias":"HPTPeta","entrezGeneId":"5795"},{"alias":"R-PTP-ETA","entrezGeneId":"5795"},{"alias":"SCC1","entrezGeneId":"5795"},{"alias":"R-PTP-kappa","entrezGeneId":"5796"},{"alias":"hR-PTPu","entrezGeneId":"5797"},{"alias":"PTPRL1","entrezGeneId":"5797"},{"alias":"R-PTP-MU","entrezGeneId":"5797"},{"alias":"RPTPM","entrezGeneId":"5797"},{"alias":"RPTPU","entrezGeneId":"5797"},{"alias":"IA-2","entrezGeneId":"5798"},{"alias":"IA-2/PTP","entrezGeneId":"5798"},{"alias":"IA2","entrezGeneId":"5798"},{"alias":"ICA512","entrezGeneId":"5798"},{"alias":"R-PTP-N","entrezGeneId":"5798"},{"alias":"IA-2beta","entrezGeneId":"5799"},{"alias":"IAR","entrezGeneId":"5799"},{"alias":"ICAAR","entrezGeneId":"5799"},{"alias":"PTPRP","entrezGeneId":"5799"},{"alias":"R-PTP-N2","entrezGeneId":"5799"},{"alias":"GLEPP1","entrezGeneId":"5800"},{"alias":"NPHS6","entrezGeneId":"5800"},{"alias":"PTP-OC","entrezGeneId":"5800"},{"alias":"PTP-U2","entrezGeneId":"5800"},{"alias":"PTPROT","entrezGeneId":"5800"},{"alias":"PTPU2","entrezGeneId":"5800"},{"alias":"R-PTP-O","entrezGeneId":"5800"},{"alias":"EC-PTP","entrezGeneId":"5801"},{"alias":"PCPTP1","entrezGeneId":"5801"},{"alias":"PTP-SL","entrezGeneId":"5801"},{"alias":"PTPBR7","entrezGeneId":"5801"},{"alias":"PTPRQ","entrezGeneId":"5801"},{"alias":"PTPSIGMA","entrezGeneId":"5802"},{"alias":"R-PTP-S","entrezGeneId":"5802"},{"alias":"R-PTP-sigma","entrezGeneId":"5802"},{"alias":"HPTPZ","entrezGeneId":"5803"},{"alias":"HPTPzeta","entrezGeneId":"5803"},{"alias":"phosphacan","entrezGeneId":"5803"},{"alias":"PTP-ZETA","entrezGeneId":"5803"},{"alias":"PTP18","entrezGeneId":"5803"},{"alias":"PTPRZ","entrezGeneId":"5803"},{"alias":"PTPZ","entrezGeneId":"5803"},{"alias":"R-PTP-zeta-2","entrezGeneId":"5803"},{"alias":"RPTPB","entrezGeneId":"5803"},{"alias":"RPTPbeta","entrezGeneId":"5803"},{"alias":"HTPZP2","entrezGeneId":"5804"},{"alias":"PTPRZ","entrezGeneId":"5804"},{"alias":"PTPS","entrezGeneId":"5805"},{"alias":"TNFAIP5","entrezGeneId":"5806"},{"alias":"TSG-14","entrezGeneId":"5806"},{"alias":"HRAD1","entrezGeneId":"5810"},{"alias":"REC1","entrezGeneId":"5810"},{"alias":"MRD31","entrezGeneId":"5813"},{"alias":"PUR-ALPHA","entrezGeneId":"5813"},{"alias":"PUR1","entrezGeneId":"5813"},{"alias":"PURALPHA","entrezGeneId":"5813"},{"alias":"PURBETA","entrezGeneId":"5814"},{"alias":"D22S749","entrezGeneId":"5816"},{"alias":"CD155","entrezGeneId":"5817"},{"alias":"HVED","entrezGeneId":"5817"},{"alias":"Necl-5","entrezGeneId":"5817"},{"alias":"NECL5","entrezGeneId":"5817"},{"alias":"PVS","entrezGeneId":"5817"},{"alias":"TAGE4","entrezGeneId":"5817"},{"alias":"CD111","entrezGeneId":"5818"},{"alias":"CLPED1","entrezGeneId":"5818"},{"alias":"ED4","entrezGeneId":"5818"},{"alias":"HIgR","entrezGeneId":"5818"},{"alias":"HV1S","entrezGeneId":"5818"},{"alias":"HVEC","entrezGeneId":"5818"},{"alias":"nectin-1","entrezGeneId":"5818"},{"alias":"OFC7","entrezGeneId":"5818"},{"alias":"PRR","entrezGeneId":"5818"},{"alias":"PRR1","entrezGeneId":"5818"},{"alias":"PVRL1","entrezGeneId":"5818"},{"alias":"PVRR","entrezGeneId":"5818"},{"alias":"PVRR1","entrezGeneId":"5818"},{"alias":"SK-12","entrezGeneId":"5818"},{"alias":"CD112","entrezGeneId":"5819"},{"alias":"HVEB","entrezGeneId":"5819"},{"alias":"PRR2","entrezGeneId":"5819"},{"alias":"PVRL2","entrezGeneId":"5819"},{"alias":"PVRR2","entrezGeneId":"5819"},{"alias":"LINC00079","entrezGeneId":"5820"},{"alias":"MIR1204HG","entrezGeneId":"5820"},{"alias":"MYC","entrezGeneId":"5820"},{"alias":"NCRNA00079","entrezGeneId":"5820"},{"alias":"onco-lncRNA-100","entrezGeneId":"5820"},{"alias":"EHOC-17","entrezGeneId":"5822"},{"alias":"PWP2H","entrezGeneId":"5822"},{"alias":"UTP1","entrezGeneId":"5822"},{"alias":"D1S2223E","entrezGeneId":"5824"},{"alias":"HK33","entrezGeneId":"5824"},{"alias":"PBD12A","entrezGeneId":"5824"},{"alias":"PMP1","entrezGeneId":"5824"},{"alias":"PMPI","entrezGeneId":"5824"},{"alias":"PXF","entrezGeneId":"5824"},{"alias":"PXMP1","entrezGeneId":"5824"},{"alias":"ABC43","entrezGeneId":"5825"},{"alias":"CBAS5","entrezGeneId":"5825"},{"alias":"PMP70","entrezGeneId":"5825"},{"alias":"PXMP1","entrezGeneId":"5825"},{"alias":"ZWS2","entrezGeneId":"5825"},{"alias":"ABC41","entrezGeneId":"5826"},{"alias":"EST352188","entrezGeneId":"5826"},{"alias":"MAHCJ","entrezGeneId":"5826"},{"alias":"P70R","entrezGeneId":"5826"},{"alias":"P79R","entrezGeneId":"5826"},{"alias":"PMP69","entrezGeneId":"5826"},{"alias":"PXMP1L","entrezGeneId":"5826"},{"alias":"PMP22","entrezGeneId":"5827"},{"alias":"PAF1","entrezGeneId":"5828"},{"alias":"PBD5A","entrezGeneId":"5828"},{"alias":"PBD5B","entrezGeneId":"5828"},{"alias":"PMP3","entrezGeneId":"5828"},{"alias":"PMP35","entrezGeneId":"5828"},{"alias":"PXMP3","entrezGeneId":"5828"},{"alias":"RNF72","entrezGeneId":"5828"},{"alias":"ZWS3","entrezGeneId":"5828"},{"alias":"PBD2A","entrezGeneId":"5830"},{"alias":"PBD2B","entrezGeneId":"5830"},{"alias":"PTS1-BP","entrezGeneId":"5830"},{"alias":"PTS1R","entrezGeneId":"5830"},{"alias":"PXR1","entrezGeneId":"5830"},{"alias":"RCDP5","entrezGeneId":"5830"},{"alias":"ARCL2B","entrezGeneId":"5831"},{"alias":"ARCL3B","entrezGeneId":"5831"},{"alias":"P5C","entrezGeneId":"5831"},{"alias":"P5CR","entrezGeneId":"5831"},{"alias":"PIG45","entrezGeneId":"5831"},{"alias":"PP222","entrezGeneId":"5831"},{"alias":"PRO3","entrezGeneId":"5831"},{"alias":"PYCR","entrezGeneId":"5831"},{"alias":"ADCL3","entrezGeneId":"5832"},{"alias":"ARCL3A","entrezGeneId":"5832"},{"alias":"GSAS","entrezGeneId":"5832"},{"alias":"P5CS","entrezGeneId":"5832"},{"alias":"PYCS","entrezGeneId":"5832"},{"alias":"SPG9","entrezGeneId":"5832"},{"alias":"SPG9A","entrezGeneId":"5832"},{"alias":"SPG9B","entrezGeneId":"5832"},{"alias":"ET","entrezGeneId":"5833"},{"alias":"GPBB","entrezGeneId":"5834"},{"alias":"GSD6","entrezGeneId":"5836"},{"alias":"CPAMD6","entrezGeneId":"5858"},{"alias":"GLNRS","entrezGeneId":"5859"},{"alias":"MSCCA","entrezGeneId":"5859"},{"alias":"PRO2195","entrezGeneId":"5859"},{"alias":"DHPR","entrezGeneId":"5860"},{"alias":"PKU2","entrezGeneId":"5860"},{"alias":"SDR33C1","entrezGeneId":"5860"},{"alias":"RAB1","entrezGeneId":"5861"},{"alias":"YPT1","entrezGeneId":"5861"},{"alias":"LHX","entrezGeneId":"5862"},{"alias":"RAB2","entrezGeneId":"5862"},{"alias":"HKE1.5","entrezGeneId":"5863"},{"alias":"KE1.5","entrezGeneId":"5863"},{"alias":"RAB2L","entrezGeneId":"5863"},{"alias":"GRAB","entrezGeneId":"5866"},{"alias":"HRES-1","entrezGeneId":"5867"},{"alias":"HRES-1/RAB4","entrezGeneId":"5867"},{"alias":"HRES1","entrezGeneId":"5867"},{"alias":"RAB4","entrezGeneId":"5867"},{"alias":"RAB5","entrezGeneId":"5868"},{"alias":"RAB6","entrezGeneId":"5870"},{"alias":"BL44","entrezGeneId":"5871"},{"alias":"GCK","entrezGeneId":"5871"},{"alias":"RAB8IP","entrezGeneId":"5871"},{"alias":"GIG4","entrezGeneId":"5872"},{"alias":"GS2","entrezGeneId":"5873"},{"alias":"HsT18676","entrezGeneId":"5873"},{"alias":"RAB27","entrezGeneId":"5873"},{"alias":"RAM","entrezGeneId":"5873"},{"alias":"C25KG","entrezGeneId":"5874"},{"alias":"PTAR3","entrezGeneId":"5875"},{"alias":"GGTB","entrezGeneId":"5876"},{"alias":"MSS4","entrezGeneId":"5877"},{"alias":"RASGFR3","entrezGeneId":"5877"},{"alias":"RASGRF3","entrezGeneId":"5877"},{"alias":"L1880","entrezGeneId":"5878"},{"alias":"RAB5CL","entrezGeneId":"5878"},{"alias":"RAB5L","entrezGeneId":"5878"},{"alias":"RABL","entrezGeneId":"5878"},{"alias":"MIG5","entrezGeneId":"5879"},{"alias":"MRD48","entrezGeneId":"5879"},{"alias":"p21-Rac1","entrezGeneId":"5879"},{"alias":"Rac-1","entrezGeneId":"5879"},{"alias":"TC-25","entrezGeneId":"5879"},{"alias":"EN-7","entrezGeneId":"5880"},{"alias":"Gx","entrezGeneId":"5880"},{"alias":"HSPC022","entrezGeneId":"5880"},{"alias":"p21-Rac2","entrezGeneId":"5880"},{"alias":"RAD9","entrezGeneId":"5883"},{"alias":"CCYC","entrezGeneId":"5884"},{"alias":"HRAD17","entrezGeneId":"5884"},{"alias":"R24L","entrezGeneId":"5884"},{"alias":"RAD17SP","entrezGeneId":"5884"},{"alias":"RAD24","entrezGeneId":"5884"},{"alias":"CDLS4","entrezGeneId":"5885"},{"alias":"hHR21","entrezGeneId":"5885"},{"alias":"HR21","entrezGeneId":"5885"},{"alias":"HRAD21","entrezGeneId":"5885"},{"alias":"MCD1","entrezGeneId":"5885"},{"alias":"NXP1","entrezGeneId":"5885"},{"alias":"SCC1","entrezGeneId":"5885"},{"alias":"HHR23A","entrezGeneId":"5886"},{"alias":"HR23A","entrezGeneId":"5886"},{"alias":"HHR23B","entrezGeneId":"5887"},{"alias":"HR23B","entrezGeneId":"5887"},{"alias":"P58","entrezGeneId":"5887"},{"alias":"BRCC5","entrezGeneId":"5888"},{"alias":"FANCR","entrezGeneId":"5888"},{"alias":"HRAD51","entrezGeneId":"5888"},{"alias":"HsRad51","entrezGeneId":"5888"},{"alias":"HsT16930","entrezGeneId":"5888"},{"alias":"MRMV2","entrezGeneId":"5888"},{"alias":"RAD51A","entrezGeneId":"5888"},{"alias":"RECA","entrezGeneId":"5888"},{"alias":"BROVCA3","entrezGeneId":"5889"},{"alias":"FANCO","entrezGeneId":"5889"},{"alias":"R51H3","entrezGeneId":"5889"},{"alias":"RAD51L2","entrezGeneId":"5889"},{"alias":"R51H2","entrezGeneId":"5890"},{"alias":"RAD51L1","entrezGeneId":"5890"},{"alias":"REC2","entrezGeneId":"5890"},{"alias":"RAGE","entrezGeneId":"5891"},{"alias":"RAGE-1","entrezGeneId":"5891"},{"alias":"RAGE1","entrezGeneId":"5891"},{"alias":"STK30","entrezGeneId":"5891"},{"alias":"BROVCA4","entrezGeneId":"5892"},{"alias":"R51H3","entrezGeneId":"5892"},{"alias":"RAD51L3","entrezGeneId":"5892"},{"alias":"TRAD","entrezGeneId":"5892"},{"alias":"c-Raf","entrezGeneId":"5894"},{"alias":"CMD1NN","entrezGeneId":"5894"},{"alias":"CRAF","entrezGeneId":"5894"},{"alias":"NS5","entrezGeneId":"5894"},{"alias":"Raf-1","entrezGeneId":"5894"},{"alias":"RAG-1","entrezGeneId":"5896"},{"alias":"RNF74","entrezGeneId":"5896"},{"alias":"RAG-2","entrezGeneId":"5897"},{"alias":"RAL","entrezGeneId":"5898"},{"alias":"RalGEF","entrezGeneId":"5900"},{"alias":"RGDS","entrezGeneId":"5900"},{"alias":"RGF","entrezGeneId":"5900"},{"alias":"ARA24","entrezGeneId":"5901"},{"alias":"Gsp1","entrezGeneId":"5901"},{"alias":"TC4","entrezGeneId":"5901"},{"alias":"HTF9A","entrezGeneId":"5902"},{"alias":"ADANE","entrezGeneId":"5903"},{"alias":"ANE1","entrezGeneId":"5903"},{"alias":"IIAE3","entrezGeneId":"5903"},{"alias":"NUP358","entrezGeneId":"5903"},{"alias":"TRP1","entrezGeneId":"5903"},{"alias":"TRP2","entrezGeneId":"5903"},{"alias":"Fug1","entrezGeneId":"5905"},{"alias":"RANGAP","entrezGeneId":"5905"},{"alias":"SD","entrezGeneId":"5905"},{"alias":"C21KG","entrezGeneId":"5906"},{"alias":"G-22K","entrezGeneId":"5906"},{"alias":"KREV-1","entrezGeneId":"5906"},{"alias":"KREV1","entrezGeneId":"5906"},{"alias":"RAP1","entrezGeneId":"5906"},{"alias":"SMGP21","entrezGeneId":"5906"},{"alias":"KREV1P","entrezGeneId":"5907"},{"alias":"SMGP21A","entrezGeneId":"5907"},{"alias":"K-REV","entrezGeneId":"5908"},{"alias":"RAL1B","entrezGeneId":"5908"},{"alias":"RAP1GA1","entrezGeneId":"5909"},{"alias":"RAP1GAP1","entrezGeneId":"5909"},{"alias":"RAP1GAPII","entrezGeneId":"5909"},{"alias":"RAPGAP","entrezGeneId":"5909"},{"alias":"GDS1","entrezGeneId":"5910"},{"alias":"SmgGDS","entrezGeneId":"5910"},{"alias":"K-REV","entrezGeneId":"5911"},{"alias":"KREV","entrezGeneId":"5911"},{"alias":"RAP2","entrezGeneId":"5911"},{"alias":"RbBP-30","entrezGeneId":"5911"},{"alias":"CMS11","entrezGeneId":"5913"},{"alias":"CMS4C","entrezGeneId":"5913"},{"alias":"FADS","entrezGeneId":"5913"},{"alias":"RAPSYN","entrezGeneId":"5913"},{"alias":"RNF205","entrezGeneId":"5913"},{"alias":"NR1B1","entrezGeneId":"5914"},{"alias":"RAR","entrezGeneId":"5914"},{"alias":"HAP","entrezGeneId":"5915"},{"alias":"MCOPS12","entrezGeneId":"5915"},{"alias":"NR1B2","entrezGeneId":"5915"},{"alias":"RARbeta1","entrezGeneId":"5915"},{"alias":"RRB2","entrezGeneId":"5915"},{"alias":"NR1B3","entrezGeneId":"5916"},{"alias":"RARC","entrezGeneId":"5916"},{"alias":"ArgRS","entrezGeneId":"5917"},{"alias":"DALRD1","entrezGeneId":"5917"},{"alias":"HLD9","entrezGeneId":"5917"},{"alias":"LXNL","entrezGeneId":"5918"},{"alias":"PERG-1","entrezGeneId":"5918"},{"alias":"TIG1","entrezGeneId":"5918"},{"alias":"HP10433","entrezGeneId":"5919"},{"alias":"TIG2","entrezGeneId":"5919"},{"alias":"HRASLS4","entrezGeneId":"5920"},{"alias":"HRSL4","entrezGeneId":"5920"},{"alias":"PLA1/2-3","entrezGeneId":"5920"},{"alias":"RIG1","entrezGeneId":"5920"},{"alias":"TIG3","entrezGeneId":"5920"},{"alias":"CM-AVM","entrezGeneId":"5921"},{"alias":"CMAVM","entrezGeneId":"5921"},{"alias":"GAP","entrezGeneId":"5921"},{"alias":"p120","entrezGeneId":"5921"},{"alias":"p120GAP","entrezGeneId":"5921"},{"alias":"p120RASGAP","entrezGeneId":"5921"},{"alias":"PKWS","entrezGeneId":"5921"},{"alias":"RASA","entrezGeneId":"5921"},{"alias":"RASGAP","entrezGeneId":"5921"},{"alias":"GAP1M","entrezGeneId":"5922"},{"alias":"CDC25","entrezGeneId":"5923"},{"alias":"CDC25L","entrezGeneId":"5923"},{"alias":"GNRP","entrezGeneId":"5923"},{"alias":"GRF1","entrezGeneId":"5923"},{"alias":"GRF55","entrezGeneId":"5923"},{"alias":"H-GRF55","entrezGeneId":"5923"},{"alias":"PP13187","entrezGeneId":"5923"},{"alias":"ras-GRF1","entrezGeneId":"5923"},{"alias":"GRF2","entrezGeneId":"5924"},{"alias":"RAS-GRF2","entrezGeneId":"5924"},{"alias":"OSRC","entrezGeneId":"5925"},{"alias":"p105-Rb","entrezGeneId":"5925"},{"alias":"pp110","entrezGeneId":"5925"},{"alias":"PPP1R130","entrezGeneId":"5925"},{"alias":"pRb","entrezGeneId":"5925"},{"alias":"RB","entrezGeneId":"5925"},{"alias":"RBBP-1","entrezGeneId":"5926"},{"alias":"RBBP1","entrezGeneId":"5926"},{"alias":"RBP-1","entrezGeneId":"5926"},{"alias":"RBP1","entrezGeneId":"5926"},{"alias":"RBBP-2","entrezGeneId":"5927"},{"alias":"RBBP2","entrezGeneId":"5927"},{"alias":"RBP2","entrezGeneId":"5927"},{"alias":"lin-53","entrezGeneId":"5928"},{"alias":"NURF55","entrezGeneId":"5928"},{"alias":"RBAP48","entrezGeneId":"5928"},{"alias":"RBQ3","entrezGeneId":"5929"},{"alias":"SWD1","entrezGeneId":"5929"},{"alias":"MY038","entrezGeneId":"5930"},{"alias":"P2P-R","entrezGeneId":"5930"},{"alias":"PACT","entrezGeneId":"5930"},{"alias":"RBQ-1","entrezGeneId":"5930"},{"alias":"SNAMA","entrezGeneId":"5930"},{"alias":"RbAp46","entrezGeneId":"5931"},{"alias":"COM1","entrezGeneId":"5932"},{"alias":"CTIP","entrezGeneId":"5932"},{"alias":"JWDS","entrezGeneId":"5932"},{"alias":"RIM","entrezGeneId":"5932"},{"alias":"SAE2","entrezGeneId":"5932"},{"alias":"SCKL2","entrezGeneId":"5932"},{"alias":"CP107","entrezGeneId":"5933"},{"alias":"p107","entrezGeneId":"5933"},{"alias":"PRB1","entrezGeneId":"5933"},{"alias":"P130","entrezGeneId":"5934"},{"alias":"Rb2","entrezGeneId":"5934"},{"alias":"IS1-RNPL","entrezGeneId":"5935"},{"alias":"RNPL","entrezGeneId":"5935"},{"alias":"LARK","entrezGeneId":"5936"},{"alias":"RBM4A","entrezGeneId":"5936"},{"alias":"ZCCHC21","entrezGeneId":"5936"},{"alias":"ZCRB3A","entrezGeneId":"5936"},{"alias":"C2orf12","entrezGeneId":"5937"},{"alias":"HCC-4","entrezGeneId":"5937"},{"alias":"MSSP","entrezGeneId":"5937"},{"alias":"MSSP-1","entrezGeneId":"5937"},{"alias":"MSSP-2","entrezGeneId":"5937"},{"alias":"MSSP-3","entrezGeneId":"5937"},{"alias":"SCR2","entrezGeneId":"5937"},{"alias":"YC1","entrezGeneId":"5937"},{"alias":"MSSP1","entrezGeneId":"5938"},{"alias":"RBMS1P","entrezGeneId":"5938"},{"alias":"SCR3","entrezGeneId":"5939"},{"alias":"RBM","entrezGeneId":"5940"},{"alias":"RBM1","entrezGeneId":"5940"},{"alias":"RBM2","entrezGeneId":"5940"},{"alias":"RBMY","entrezGeneId":"5940"},{"alias":"RBMY1C","entrezGeneId":"5940"},{"alias":"YRRM1","entrezGeneId":"5940"},{"alias":"YRRM2","entrezGeneId":"5940"},{"alias":"RBMY1H","entrezGeneId":"5944"},{"alias":"YRRM","entrezGeneId":"5944"},{"alias":"RBMY2A","entrezGeneId":"5945"},{"alias":"CRABP-I","entrezGeneId":"5947"},{"alias":"CRBP","entrezGeneId":"5947"},{"alias":"CRBP1","entrezGeneId":"5947"},{"alias":"CRBPI","entrezGeneId":"5947"},{"alias":"RBPC","entrezGeneId":"5947"},{"alias":"CRABP-II","entrezGeneId":"5948"},{"alias":"CRBP2","entrezGeneId":"5948"},{"alias":"CRBPII","entrezGeneId":"5948"},{"alias":"RBPC2","entrezGeneId":"5948"},{"alias":"D10S64","entrezGeneId":"5949"},{"alias":"D10S65","entrezGeneId":"5949"},{"alias":"D10S66","entrezGeneId":"5949"},{"alias":"IRBP","entrezGeneId":"5949"},{"alias":"RBPI","entrezGeneId":"5949"},{"alias":"RP66","entrezGeneId":"5949"},{"alias":"MCOPCB10","entrezGeneId":"5950"},{"alias":"RDCCAS","entrezGeneId":"5950"},{"alias":"HEL-S-84","entrezGeneId":"5954"},{"alias":"PIG20","entrezGeneId":"5954"},{"alias":"RCAL","entrezGeneId":"5954"},{"alias":"RCN","entrezGeneId":"5954"},{"alias":"E6BP","entrezGeneId":"5955"},{"alias":"ERC-55","entrezGeneId":"5955"},{"alias":"ERC55","entrezGeneId":"5955"},{"alias":"TCBP49","entrezGeneId":"5955"},{"alias":"CBBM","entrezGeneId":"5956"},{"alias":"CBP","entrezGeneId":"5956"},{"alias":"COD5","entrezGeneId":"5956"},{"alias":"RCP","entrezGeneId":"5956"},{"alias":"ROP","entrezGeneId":"5956"},{"alias":"RCV1","entrezGeneId":"5957"},{"alias":"9cRDH","entrezGeneId":"5959"},{"alias":"HSD17B9","entrezGeneId":"5959"},{"alias":"RDH1","entrezGeneId":"5959"},{"alias":"SDR9C5","entrezGeneId":"5959"},{"alias":"AOFMD","entrezGeneId":"5961"},{"alias":"AVMD","entrezGeneId":"5961"},{"alias":"CACD2","entrezGeneId":"5961"},{"alias":"DS","entrezGeneId":"5961"},{"alias":"MDBS1","entrezGeneId":"5961"},{"alias":"PRPH","entrezGeneId":"5961"},{"alias":"rd2","entrezGeneId":"5961"},{"alias":"RDS","entrezGeneId":"5961"},{"alias":"RP7","entrezGeneId":"5961"},{"alias":"TSPAN22","entrezGeneId":"5961"},{"alias":"DFNB24","entrezGeneId":"5962"},{"alias":"RecQ1","entrezGeneId":"5965"},{"alias":"RECQL1","entrezGeneId":"5965"},{"alias":"C-Rel","entrezGeneId":"5966"},{"alias":"ICRF","entrezGeneId":"5967"},{"alias":"P19","entrezGeneId":"5967"},{"alias":"PSP","entrezGeneId":"5967"},{"alias":"PSPS","entrezGeneId":"5967"},{"alias":"PSPS1","entrezGeneId":"5967"},{"alias":"PTP","entrezGeneId":"5967"},{"alias":"REG","entrezGeneId":"5967"},{"alias":"PSPS2","entrezGeneId":"5968"},{"alias":"REGH","entrezGeneId":"5968"},{"alias":"REGI-BETA","entrezGeneId":"5968"},{"alias":"REGL","entrezGeneId":"5968"},{"alias":"REG1P","entrezGeneId":"5969"},{"alias":"REGL","entrezGeneId":"5969"},{"alias":"RS","entrezGeneId":"5969"},{"alias":"NFKB3","entrezGeneId":"5970"},{"alias":"p65","entrezGeneId":"5970"},{"alias":"I-REL","entrezGeneId":"5971"},{"alias":"IMD53","entrezGeneId":"5971"},{"alias":"IREL","entrezGeneId":"5971"},{"alias":"REL-B","entrezGeneId":"5971"},{"alias":"HNFJ2","entrezGeneId":"5972"},{"alias":"RBP","entrezGeneId":"5973"},{"alias":"RNBP","entrezGeneId":"5973"},{"alias":"MRXS9","entrezGeneId":"5975"},{"alias":"HUPF1","entrezGeneId":"5976"},{"alias":"NORF1","entrezGeneId":"5976"},{"alias":"pNORF1","entrezGeneId":"5976"},{"alias":"RENT1","entrezGeneId":"5976"},{"alias":"smg-2","entrezGeneId":"5976"},{"alias":"REQ","entrezGeneId":"5977"},{"alias":"ubi-d4","entrezGeneId":"5977"},{"alias":"UBID4","entrezGeneId":"5977"},{"alias":"GINGF5","entrezGeneId":"5978"},{"alias":"HGF5","entrezGeneId":"5978"},{"alias":"NRSF","entrezGeneId":"5978"},{"alias":"WT6","entrezGeneId":"5978"},{"alias":"XBR","entrezGeneId":"5978"},{"alias":"CDHF12","entrezGeneId":"5979"},{"alias":"CDHR16","entrezGeneId":"5979"},{"alias":"HSCR1","entrezGeneId":"5979"},{"alias":"MEN2A","entrezGeneId":"5979"},{"alias":"MEN2B","entrezGeneId":"5979"},{"alias":"MTC1","entrezGeneId":"5979"},{"alias":"PTC","entrezGeneId":"5979"},{"alias":"RET-ELE1","entrezGeneId":"5979"},{"alias":"POLZ","entrezGeneId":"5980"},{"alias":"REV3","entrezGeneId":"5980"},{"alias":"A1","entrezGeneId":"5981"},{"alias":"MHCBFB","entrezGeneId":"5981"},{"alias":"PO-GA","entrezGeneId":"5981"},{"alias":"RECC1","entrezGeneId":"5981"},{"alias":"RFC","entrezGeneId":"5981"},{"alias":"RFC140","entrezGeneId":"5981"},{"alias":"RFC40","entrezGeneId":"5982"},{"alias":"RFC38","entrezGeneId":"5983"},{"alias":"A1","entrezGeneId":"5984"},{"alias":"RFC37","entrezGeneId":"5984"},{"alias":"RFC36","entrezGeneId":"5985"},{"alias":"RFP","entrezGeneId":"5987"},{"alias":"RNF76","entrezGeneId":"5987"},{"alias":"RNF78","entrezGeneId":"5988"},{"alias":"EFC","entrezGeneId":"5989"},{"alias":"RFX","entrezGeneId":"5989"},{"alias":"NYD-SP10","entrezGeneId":"5992"},{"alias":"RP44","entrezGeneId":"5995"},{"alias":"1R20","entrezGeneId":"5996"},{"alias":"BL34","entrezGeneId":"5996"},{"alias":"HEL-S-87","entrezGeneId":"5996"},{"alias":"IER1","entrezGeneId":"5996"},{"alias":"IR20","entrezGeneId":"5996"},{"alias":"G0S8","entrezGeneId":"5997"},{"alias":"C2PA","entrezGeneId":"5998"},{"alias":"RGP3","entrezGeneId":"5998"},{"alias":"RGP4","entrezGeneId":"5999"},{"alias":"SCZD9","entrezGeneId":"5999"},{"alias":"A28-RGS14","entrezGeneId":"6004"},{"alias":"A28-RGS14P","entrezGeneId":"6004"},{"alias":"RGS-R","entrezGeneId":"6004"},{"alias":"CD241","entrezGeneId":"6005"},{"alias":"OHS","entrezGeneId":"6005"},{"alias":"OHST","entrezGeneId":"6005"},{"alias":"RH2","entrezGeneId":"6005"},{"alias":"Rh50","entrezGeneId":"6005"},{"alias":"RH50A","entrezGeneId":"6005"},{"alias":"Rh50GP","entrezGeneId":"6005"},{"alias":"SLC42A1","entrezGeneId":"6005"},{"alias":"CD240CE","entrezGeneId":"6006"},{"alias":"RH","entrezGeneId":"6006"},{"alias":"RH30A","entrezGeneId":"6006"},{"alias":"Rh4","entrezGeneId":"6006"},{"alias":"RHC","entrezGeneId":"6006"},{"alias":"RHCe(152N)","entrezGeneId":"6006"},{"alias":"RHE","entrezGeneId":"6006"},{"alias":"RhIVb(J)","entrezGeneId":"6006"},{"alias":"RHIXB","entrezGeneId":"6006"},{"alias":"RHPI","entrezGeneId":"6006"},{"alias":"RhVI","entrezGeneId":"6006"},{"alias":"RhVIII","entrezGeneId":"6006"},{"alias":"CD240D","entrezGeneId":"6007"},{"alias":"DIIIc","entrezGeneId":"6007"},{"alias":"RH","entrezGeneId":"6007"},{"alias":"RH30","entrezGeneId":"6007"},{"alias":"Rh4","entrezGeneId":"6007"},{"alias":"RHCED","entrezGeneId":"6007"},{"alias":"RhDCw","entrezGeneId":"6007"},{"alias":"RHDel","entrezGeneId":"6007"},{"alias":"RHDVA(TT)","entrezGeneId":"6007"},{"alias":"RhII","entrezGeneId":"6007"},{"alias":"RhK562-II","entrezGeneId":"6007"},{"alias":"RhPI","entrezGeneId":"6007"},{"alias":"RHPII","entrezGeneId":"6007"},{"alias":"RHXIII","entrezGeneId":"6007"},{"alias":"RHEB","entrezGeneId":"6008"},{"alias":"RHEB1","entrezGeneId":"6008"},{"alias":"RHEB2","entrezGeneId":"6009"},{"alias":"CSNBAD1","entrezGeneId":"6010"},{"alias":"OPN2","entrezGeneId":"6010"},{"alias":"RP4","entrezGeneId":"6010"},{"alias":"GPRK1","entrezGeneId":"6011"},{"alias":"RHOK","entrezGeneId":"6011"},{"alias":"RK","entrezGeneId":"6011"},{"alias":"ARS","entrezGeneId":"6012"},{"alias":"RGS2","entrezGeneId":"6012"},{"alias":"bA12D24.3.1","entrezGeneId":"6013"},{"alias":"bA12D24.3.2","entrezGeneId":"6013"},{"alias":"H1","entrezGeneId":"6013"},{"alias":"H1RLX","entrezGeneId":"6013"},{"alias":"RLXH1","entrezGeneId":"6013"},{"alias":"RIBA","entrezGeneId":"6014"},{"alias":"RIN","entrezGeneId":"6014"},{"alias":"ROC2","entrezGeneId":"6014"},{"alias":"RING1A","entrezGeneId":"6015"},{"alias":"RNF1","entrezGeneId":"6015"},{"alias":"NS8","entrezGeneId":"6016"},{"alias":"RIBB","entrezGeneId":"6016"},{"alias":"RIT","entrezGeneId":"6016"},{"alias":"ROC1","entrezGeneId":"6016"},{"alias":"CRALBP","entrezGeneId":"6017"},{"alias":"ZN-15L","entrezGeneId":"6018"},{"alias":"ZNF292L","entrezGeneId":"6018"},{"alias":"bA12D24.1.1","entrezGeneId":"6019"},{"alias":"bA12D24.1.2","entrezGeneId":"6019"},{"alias":"H2","entrezGeneId":"6019"},{"alias":"H2-RLX","entrezGeneId":"6019"},{"alias":"RLXH2","entrezGeneId":"6019"},{"alias":"CHH","entrezGeneId":"6023"},{"alias":"NME1","entrezGeneId":"6023"},{"alias":"RMRPR","entrezGeneId":"6023"},{"alias":"RRP2","entrezGeneId":"6023"},{"alias":"RN5S","entrezGeneId":"6025"},{"alias":"7L1a","entrezGeneId":"6029"},{"alias":"7SL","entrezGeneId":"6029"},{"alias":"RN7SL","entrezGeneId":"6029"},{"alias":"RNSRP1","entrezGeneId":"6029"},{"alias":"7L28","entrezGeneId":"6030"},{"alias":"RN7SL427P","entrezGeneId":"6030"},{"alias":"RN7SLP1","entrezGeneId":"6030"},{"alias":"7LEM1","entrezGeneId":"6031"},{"alias":"RN7SL249P","entrezGeneId":"6031"},{"alias":"RN7SLP2","entrezGeneId":"6031"},{"alias":"7L7","entrezGeneId":"6032"},{"alias":"RN7SL848P","entrezGeneId":"6032"},{"alias":"RN7SLP3","entrezGeneId":"6032"},{"alias":"7L23","entrezGeneId":"6033"},{"alias":"RN7SL27P","entrezGeneId":"6033"},{"alias":"RN7SLP4","entrezGeneId":"6033"},{"alias":"7L63","entrezGeneId":"6034"},{"alias":"RN7SL433P","entrezGeneId":"6034"},{"alias":"RN7SLP5","entrezGeneId":"6034"},{"alias":"RAC1","entrezGeneId":"6035"},{"alias":"RIB1","entrezGeneId":"6035"},{"alias":"RNS1","entrezGeneId":"6035"},{"alias":"EDN","entrezGeneId":"6036"},{"alias":"RAF3","entrezGeneId":"6036"},{"alias":"RNS2","entrezGeneId":"6036"},{"alias":"ECP","entrezGeneId":"6037"},{"alias":"RAF1","entrezGeneId":"6037"},{"alias":"RNS3","entrezGeneId":"6037"},{"alias":"RAB1","entrezGeneId":"6038"},{"alias":"RNS4","entrezGeneId":"6038"},{"alias":"RAD1","entrezGeneId":"6039"},{"alias":"RNasek6","entrezGeneId":"6039"},{"alias":"RNS6","entrezGeneId":"6039"},{"alias":"PRCA1","entrezGeneId":"6041"},{"alias":"RNS4","entrezGeneId":"6041"},{"alias":"E3","entrezGeneId":"6043"},{"alias":"E3-2","entrezGeneId":"6043"},{"alias":"elF-4AII","entrezGeneId":"6043"},{"alias":"RNE3","entrezGeneId":"6043"},{"alias":"RNU107","entrezGeneId":"6043"},{"alias":"SNORA63A","entrezGeneId":"6043"},{"alias":"E2","entrezGeneId":"6044"},{"alias":"E2-1","entrezGeneId":"6044"},{"alias":"RNE2","entrezGeneId":"6044"},{"alias":"RNU108","entrezGeneId":"6044"},{"alias":"BAP-1","entrezGeneId":"6045"},{"alias":"BAP1","entrezGeneId":"6045"},{"alias":"DING","entrezGeneId":"6045"},{"alias":"HIPI3","entrezGeneId":"6045"},{"alias":"RING1B","entrezGeneId":"6045"},{"alias":"RING2","entrezGeneId":"6045"},{"alias":"BRD2-IT1","entrezGeneId":"6046"},{"alias":"D6S113E","entrezGeneId":"6046"},{"alias":"FSH","entrezGeneId":"6046"},{"alias":"FSRG1","entrezGeneId":"6046"},{"alias":"NAT","entrezGeneId":"6046"},{"alias":"O27.1.1","entrezGeneId":"6046"},{"alias":"RING3","entrezGeneId":"6046"},{"alias":"RNF3","entrezGeneId":"6046"},{"alias":"RES4-26","entrezGeneId":"6047"},{"alias":"SLX5","entrezGeneId":"6047"},{"alias":"SNURF","entrezGeneId":"6047"},{"alias":"RING5","entrezGeneId":"6048"},{"alias":"RMA1","entrezGeneId":"6048"},{"alias":"RAI","entrezGeneId":"6050"},{"alias":"RNH","entrezGeneId":"6050"},{"alias":"AP-B","entrezGeneId":"6051"},{"alias":"APB","entrezGeneId":"6051"},{"alias":"ABC38","entrezGeneId":"6059"},{"alias":"OABP","entrezGeneId":"6059"},{"alias":"RLI","entrezGeneId":"6059"},{"alias":"RLI1","entrezGeneId":"6059"},{"alias":"RNASEL1","entrezGeneId":"6059"},{"alias":"RNASELI","entrezGeneId":"6059"},{"alias":"RNS4I","entrezGeneId":"6059"},{"alias":"HSD2","entrezGeneId":"6060"},{"alias":"HSD5","entrezGeneId":"6060"},{"alias":"HSD6","entrezGeneId":"6060"},{"alias":"HSD7","entrezGeneId":"6060"},{"alias":"RNU1","entrezGeneId":"6060"},{"alias":"RNU1D2","entrezGeneId":"6060"},{"alias":"RNU1E2","entrezGeneId":"6060"},{"alias":"RNU1F1","entrezGeneId":"6060"},{"alias":"RNU1G1","entrezGeneId":"6060"},{"alias":"RNU1G2","entrezGeneId":"6060"},{"alias":"U1B2","entrezGeneId":"6060"},{"alias":"U1D2","entrezGeneId":"6060"},{"alias":"U1E2","entrezGeneId":"6060"},{"alias":"U1F","entrezGeneId":"6060"},{"alias":"RNU1-12P","entrezGeneId":"6063"},{"alias":"RNU1P2","entrezGeneId":"6063"},{"alias":"U1P2A","entrezGeneId":"6063"},{"alias":"vU1.11","entrezGeneId":"6063"},{"alias":"RNU2","entrezGeneId":"6066"},{"alias":"U2","entrezGeneId":"6066"},{"alias":"RNU3P1","entrezGeneId":"6068"},{"alias":"U3","entrezGeneId":"6068"},{"alias":"RNU4P1","entrezGeneId":"6069"},{"alias":"U4","entrezGeneId":"6069"},{"alias":"U4/7","entrezGeneId":"6069"},{"alias":"RNU4P2","entrezGeneId":"6070"},{"alias":"U4","entrezGeneId":"6070"},{"alias":"U4/14","entrezGeneId":"6070"},{"alias":"87U6","entrezGeneId":"6071"},{"alias":"LH87","entrezGeneId":"6071"},{"alias":"HSU7.732A","entrezGeneId":"6072"},{"alias":"RNU7P1","entrezGeneId":"6072"},{"alias":"U7","entrezGeneId":"6072"},{"alias":"U7.68","entrezGeneId":"6072"},{"alias":"HSU7.7/32B","entrezGeneId":"6073"},{"alias":"RNU7P2","entrezGeneId":"6073"},{"alias":"U7","entrezGeneId":"6073"},{"alias":"HSU7.24","entrezGeneId":"6074"},{"alias":"HSU7.25","entrezGeneId":"6074"},{"alias":"RNU7P3","entrezGeneId":"6074"},{"alias":"U7","entrezGeneId":"6074"},{"alias":"U7.24","entrezGeneId":"6074"},{"alias":"HSU7.36","entrezGeneId":"6075"},{"alias":"HSU7.55","entrezGeneId":"6075"},{"alias":"RNU7P4","entrezGeneId":"6075"},{"alias":"U7","entrezGeneId":"6075"},{"alias":"U7.55","entrezGeneId":"6075"},{"alias":"RNU13P1","entrezGeneId":"6076"},{"alias":"U13","entrezGeneId":"6076"},{"alias":"U13.32A","entrezGeneId":"6076"},{"alias":"RNU13P2","entrezGeneId":"6077"},{"alias":"U13","entrezGeneId":"6077"},{"alias":"U13.12A","entrezGeneId":"6077"},{"alias":"RNU13P3","entrezGeneId":"6078"},{"alias":"U13","entrezGeneId":"6078"},{"alias":"U13.4B","entrezGeneId":"6078"},{"alias":"RNU15A","entrezGeneId":"6079"},{"alias":"SNORNA","entrezGeneId":"6079"},{"alias":"U15A","entrezGeneId":"6079"},{"alias":"E1","entrezGeneId":"6080"},{"alias":"E1-7","entrezGeneId":"6080"},{"alias":"E1b","entrezGeneId":"6080"},{"alias":"RNE1","entrezGeneId":"6080"},{"alias":"RNU17A","entrezGeneId":"6080"},{"alias":"U17A","entrezGeneId":"6080"},{"alias":"RNU20","entrezGeneId":"6082"},{"alias":"U20","entrezGeneId":"6082"},{"alias":"RNU21","entrezGeneId":"6083"},{"alias":"U21","entrezGeneId":"6083"},{"alias":"HY1","entrezGeneId":"6084"},{"alias":"Y1","entrezGeneId":"6084"},{"alias":"HY3","entrezGeneId":"6085"},{"alias":"Y3","entrezGeneId":"6085"},{"alias":"HY4","entrezGeneId":"6086"},{"alias":"Y4","entrezGeneId":"6086"},{"alias":"hY4.B8","entrezGeneId":"6087"},{"alias":"hY4.B7","entrezGeneId":"6088"},{"alias":"hY4.F2","entrezGeneId":"6089"},{"alias":"Y5","entrezGeneId":"6090"},{"alias":"DUTT1","entrezGeneId":"6091"},{"alias":"SAX3","entrezGeneId":"6091"},{"alias":"SAX3","entrezGeneId":"6092"},{"alias":"P160ROCK","entrezGeneId":"6093"},{"alias":"ROCK-I","entrezGeneId":"6093"},{"alias":"ROM","entrezGeneId":"6094"},{"alias":"ROSP1","entrezGeneId":"6094"},{"alias":"RP7","entrezGeneId":"6094"},{"alias":"TSPAN23","entrezGeneId":"6094"},{"alias":"NR1F1","entrezGeneId":"6095"},{"alias":"ROR1","entrezGeneId":"6095"},{"alias":"ROR2","entrezGeneId":"6095"},{"alias":"ROR3","entrezGeneId":"6095"},{"alias":"RZR-ALPHA","entrezGeneId":"6095"},{"alias":"RZRA","entrezGeneId":"6095"},{"alias":"bA133M9.1","entrezGeneId":"6096"},{"alias":"NR1F2","entrezGeneId":"6096"},{"alias":"ROR-BETA","entrezGeneId":"6096"},{"alias":"RZR-BETA","entrezGeneId":"6096"},{"alias":"RZRB","entrezGeneId":"6096"},{"alias":"IMD42","entrezGeneId":"6097"},{"alias":"NR1F3","entrezGeneId":"6097"},{"alias":"RORG","entrezGeneId":"6097"},{"alias":"RZR-GAMMA","entrezGeneId":"6097"},{"alias":"RZRG","entrezGeneId":"6097"},{"alias":"TOR","entrezGeneId":"6097"},{"alias":"c-ros-1","entrezGeneId":"6098"},{"alias":"MCF3","entrezGeneId":"6098"},{"alias":"ROS","entrezGeneId":"6098"},{"alias":"PAP-1","entrezGeneId":"6100"},{"alias":"PAP1","entrezGeneId":"6100"},{"alias":"DCDC4A","entrezGeneId":"6101"},{"alias":"ORP1","entrezGeneId":"6101"},{"alias":"DELXp11.3","entrezGeneId":"6102"},{"alias":"NM23-H10","entrezGeneId":"6102"},{"alias":"NME10","entrezGeneId":"6102"},{"alias":"TBCCD2","entrezGeneId":"6102"},{"alias":"XRP2","entrezGeneId":"6102"},{"alias":"COD1","entrezGeneId":"6103"},{"alias":"CORDX1","entrezGeneId":"6103"},{"alias":"CRD","entrezGeneId":"6103"},{"alias":"orf15","entrezGeneId":"6103"},{"alias":"PCDX","entrezGeneId":"6103"},{"alias":"RP15","entrezGeneId":"6103"},{"alias":"RP3","entrezGeneId":"6103"},{"alias":"XLRP3","entrezGeneId":"6103"},{"alias":"HSSB","entrezGeneId":"6117"},{"alias":"MST075","entrezGeneId":"6117"},{"alias":"REPA1","entrezGeneId":"6117"},{"alias":"RF-A","entrezGeneId":"6117"},{"alias":"RP-A","entrezGeneId":"6117"},{"alias":"RPA70","entrezGeneId":"6117"},{"alias":"REPA2","entrezGeneId":"6118"},{"alias":"RP-A p32","entrezGeneId":"6118"},{"alias":"RP-A p34","entrezGeneId":"6118"},{"alias":"RPA32","entrezGeneId":"6118"},{"alias":"REPA3","entrezGeneId":"6119"},{"alias":"RP-A p14","entrezGeneId":"6119"},{"alias":"RPE2-1","entrezGeneId":"6120"},{"alias":"BCO3","entrezGeneId":"6121"},{"alias":"LCA2","entrezGeneId":"6121"},{"alias":"mRPE65","entrezGeneId":"6121"},{"alias":"p63","entrezGeneId":"6121"},{"alias":"rd12","entrezGeneId":"6121"},{"alias":"RP20","entrezGeneId":"6121"},{"alias":"sRPE65","entrezGeneId":"6121"},{"alias":"ASC-1","entrezGeneId":"6122"},{"alias":"L3","entrezGeneId":"6122"},{"alias":"TARBP-B","entrezGeneId":"6122"},{"alias":"L4","entrezGeneId":"6124"},{"alias":"L5","entrezGeneId":"6125"},{"alias":"MSTP030","entrezGeneId":"6125"},{"alias":"PPP1R135","entrezGeneId":"6125"},{"alias":"uL18","entrezGeneId":"6125"},{"alias":"RPL9L1","entrezGeneId":"6126"},{"alias":"RPL9P1","entrezGeneId":"6126"},{"alias":"RPL9_19_1768","entrezGeneId":"6126"},{"alias":"L6","entrezGeneId":"6128"},{"alias":"SHUJUN-2","entrezGeneId":"6128"},{"alias":"TAXREB107","entrezGeneId":"6128"},{"alias":"TXREB1","entrezGeneId":"6128"},{"alias":"humL7-1","entrezGeneId":"6129"},{"alias":"L7","entrezGeneId":"6129"},{"alias":"L7A","entrezGeneId":"6130"},{"alias":"SURF3","entrezGeneId":"6130"},{"alias":"TRUP","entrezGeneId":"6130"},{"alias":"L8","entrezGeneId":"6132"},{"alias":"L9","entrezGeneId":"6133"},{"alias":"NPC-A-16","entrezGeneId":"6133"},{"alias":"AUTSX5","entrezGeneId":"6134"},{"alias":"DXS648","entrezGeneId":"6134"},{"alias":"DXS648E","entrezGeneId":"6134"},{"alias":"L10","entrezGeneId":"6134"},{"alias":"MRXS35","entrezGeneId":"6134"},{"alias":"NOV","entrezGeneId":"6134"},{"alias":"QM","entrezGeneId":"6134"},{"alias":"DBA7","entrezGeneId":"6135"},{"alias":"GIG34","entrezGeneId":"6135"},{"alias":"L11","entrezGeneId":"6135"},{"alias":"uL5","entrezGeneId":"6135"},{"alias":"L12","entrezGeneId":"6136"},{"alias":"BBC1","entrezGeneId":"6137"},{"alias":"D16S444E","entrezGeneId":"6137"},{"alias":"D16S44E","entrezGeneId":"6137"},{"alias":"L13","entrezGeneId":"6137"},{"alias":"DBA12","entrezGeneId":"6138"},{"alias":"EC45","entrezGeneId":"6138"},{"alias":"L15","entrezGeneId":"6138"},{"alias":"RPL10","entrezGeneId":"6138"},{"alias":"RPLY10","entrezGeneId":"6138"},{"alias":"RPYL10","entrezGeneId":"6138"},{"alias":"L17","entrezGeneId":"6139"},{"alias":"PD-1","entrezGeneId":"6139"},{"alias":"RPL23","entrezGeneId":"6139"},{"alias":"L18","entrezGeneId":"6141"},{"alias":"L18A","entrezGeneId":"6142"},{"alias":"L19","entrezGeneId":"6143"},{"alias":"HYPT12","entrezGeneId":"6144"},{"alias":"L21","entrezGeneId":"6144"},{"alias":"RPL21P","entrezGeneId":"6145"},{"alias":"EAP","entrezGeneId":"6146"},{"alias":"HBP15","entrezGeneId":"6146"},{"alias":"HBP15/L22","entrezGeneId":"6146"},{"alias":"L22","entrezGeneId":"6146"},{"alias":"L23A","entrezGeneId":"6147"},{"alias":"MDA20","entrezGeneId":"6147"},{"alias":"dJ377H14.8","entrezGeneId":"6148"},{"alias":"RPL23A_15_676","entrezGeneId":"6148"},{"alias":"L23MRP","entrezGeneId":"6150"},{"alias":"RPL23","entrezGeneId":"6150"},{"alias":"RPL23L","entrezGeneId":"6150"},{"alias":"HEL-S-310","entrezGeneId":"6152"},{"alias":"L24","entrezGeneId":"6152"},{"alias":"DBA11","entrezGeneId":"6154"},{"alias":"L26","entrezGeneId":"6154"},{"alias":"DBA16","entrezGeneId":"6155"},{"alias":"L27","entrezGeneId":"6155"},{"alias":"L30","entrezGeneId":"6156"},{"alias":"L27A","entrezGeneId":"6157"},{"alias":"L28","entrezGeneId":"6158"},{"alias":"HIP","entrezGeneId":"6159"},{"alias":"HUMRPL29","entrezGeneId":"6159"},{"alias":"L29","entrezGeneId":"6159"},{"alias":"RPL29P10","entrezGeneId":"6159"},{"alias":"RPL29_3_370","entrezGeneId":"6159"},{"alias":"L31","entrezGeneId":"6160"},{"alias":"L32","entrezGeneId":"6161"},{"alias":"PP9932","entrezGeneId":"6161"},{"alias":"RPL32-L","entrezGeneId":"6163"},{"alias":"RPL32P","entrezGeneId":"6163"},{"alias":"RPL32_6_681","entrezGeneId":"6163"},{"alias":"L34","entrezGeneId":"6164"},{"alias":"DBA5","entrezGeneId":"6165"},{"alias":"eL33","entrezGeneId":"6165"},{"alias":"L35A","entrezGeneId":"6165"},{"alias":"RPL36A","entrezGeneId":"6166"},{"alias":"L37","entrezGeneId":"6167"},{"alias":"L37A","entrezGeneId":"6168"},{"alias":"L38","entrezGeneId":"6169"},{"alias":"L39","entrezGeneId":"6170"},{"alias":"RPL39P42","entrezGeneId":"6170"},{"alias":"RPL39_23_1806","entrezGeneId":"6170"},{"alias":"L41","entrezGeneId":"6171"},{"alias":"RPL41L","entrezGeneId":"6172"},{"alias":"L36A","entrezGeneId":"6173"},{"alias":"L44L","entrezGeneId":"6173"},{"alias":"MIG6","entrezGeneId":"6173"},{"alias":"RPL44","entrezGeneId":"6173"},{"alias":"RPL17P","entrezGeneId":"6174"},{"alias":"RPL7P","entrezGeneId":"6174"},{"alias":"RPL7_11_628","entrezGeneId":"6174"},{"alias":"L10E","entrezGeneId":"6175"},{"alias":"LP0","entrezGeneId":"6175"},{"alias":"P0","entrezGeneId":"6175"},{"alias":"PRLP0","entrezGeneId":"6175"},{"alias":"RPP0","entrezGeneId":"6175"},{"alias":"LP1","entrezGeneId":"6176"},{"alias":"P1","entrezGeneId":"6176"},{"alias":"RPP1","entrezGeneId":"6176"},{"alias":"D11S2243E","entrezGeneId":"6181"},{"alias":"LP2","entrezGeneId":"6181"},{"alias":"P2","entrezGeneId":"6181"},{"alias":"RPP2","entrezGeneId":"6181"},{"alias":"5c5-2","entrezGeneId":"6182"},{"alias":"L12mt","entrezGeneId":"6182"},{"alias":"MRP-L31/34","entrezGeneId":"6182"},{"alias":"MRPL7","entrezGeneId":"6182"},{"alias":"MRPL7/L12","entrezGeneId":"6182"},{"alias":"RPML12","entrezGeneId":"6182"},{"alias":"MPR-S12","entrezGeneId":"6183"},{"alias":"MT-RPS12","entrezGeneId":"6183"},{"alias":"RPMS12","entrezGeneId":"6183"},{"alias":"RPS12","entrezGeneId":"6183"},{"alias":"RPSM12","entrezGeneId":"6183"},{"alias":"OST1","entrezGeneId":"6184"},{"alias":"RBPH1","entrezGeneId":"6184"},{"alias":"RIBIIR","entrezGeneId":"6185"},{"alias":"RPN-II","entrezGeneId":"6185"},{"alias":"RPNII","entrezGeneId":"6185"},{"alias":"SWP1","entrezGeneId":"6185"},{"alias":"LLREP3","entrezGeneId":"6187"},{"alias":"S2","entrezGeneId":"6187"},{"alias":"S3","entrezGeneId":"6188"},{"alias":"FTE1","entrezGeneId":"6189"},{"alias":"MFTL","entrezGeneId":"6189"},{"alias":"S3A","entrezGeneId":"6189"},{"alias":"CCG2","entrezGeneId":"6191"},{"alias":"DXS306","entrezGeneId":"6191"},{"alias":"RPS4","entrezGeneId":"6191"},{"alias":"S4","entrezGeneId":"6191"},{"alias":"SCAR","entrezGeneId":"6191"},{"alias":"SCR10","entrezGeneId":"6191"},{"alias":"RPS4Y","entrezGeneId":"6192"},{"alias":"S4","entrezGeneId":"6192"},{"alias":"S5","entrezGeneId":"6193"},{"alias":"S6","entrezGeneId":"6194"},{"alias":"HU-1","entrezGeneId":"6195"},{"alias":"MAPKAPK1A","entrezGeneId":"6195"},{"alias":"p90Rsk","entrezGeneId":"6195"},{"alias":"RSK","entrezGeneId":"6195"},{"alias":"RSK1","entrezGeneId":"6195"},{"alias":"HU-2","entrezGeneId":"6196"},{"alias":"MAPKAPK1C","entrezGeneId":"6196"},{"alias":"p90-RSK3","entrezGeneId":"6196"},{"alias":"p90RSK2","entrezGeneId":"6196"},{"alias":"pp90RSK3","entrezGeneId":"6196"},{"alias":"RSK","entrezGeneId":"6196"},{"alias":"RSK3","entrezGeneId":"6196"},{"alias":"S6K-alpha","entrezGeneId":"6196"},{"alias":"S6K-alpha2","entrezGeneId":"6196"},{"alias":"CLS","entrezGeneId":"6197"},{"alias":"HU-3","entrezGeneId":"6197"},{"alias":"ISPK-1","entrezGeneId":"6197"},{"alias":"MAPKAPK1B","entrezGeneId":"6197"},{"alias":"MRX19","entrezGeneId":"6197"},{"alias":"p90-RSK2","entrezGeneId":"6197"},{"alias":"pp90RSK2","entrezGeneId":"6197"},{"alias":"RSK","entrezGeneId":"6197"},{"alias":"RSK2","entrezGeneId":"6197"},{"alias":"S6K-alpha3","entrezGeneId":"6197"},{"alias":"p70 S6KA","entrezGeneId":"6198"},{"alias":"p70(S6K)-alpha","entrezGeneId":"6198"},{"alias":"p70-alpha","entrezGeneId":"6198"},{"alias":"p70-S6K","entrezGeneId":"6198"},{"alias":"PS6K","entrezGeneId":"6198"},{"alias":"S6K","entrezGeneId":"6198"},{"alias":"S6K-beta-1","entrezGeneId":"6198"},{"alias":"S6K1","entrezGeneId":"6198"},{"alias":"STK14A","entrezGeneId":"6198"},{"alias":"KLS","entrezGeneId":"6199"},{"alias":"p70(S6K)-beta","entrezGeneId":"6199"},{"alias":"P70-beta","entrezGeneId":"6199"},{"alias":"P70-beta-1","entrezGeneId":"6199"},{"alias":"P70-beta-2","entrezGeneId":"6199"},{"alias":"p70S6Kb","entrezGeneId":"6199"},{"alias":"S6K-beta2","entrezGeneId":"6199"},{"alias":"S6K2","entrezGeneId":"6199"},{"alias":"SRK","entrezGeneId":"6199"},{"alias":"STK14B","entrezGeneId":"6199"},{"alias":"70kD","entrezGeneId":"6200"},{"alias":"DBA8","entrezGeneId":"6201"},{"alias":"eS7","entrezGeneId":"6201"},{"alias":"S7","entrezGeneId":"6201"},{"alias":"S8","entrezGeneId":"6202"},{"alias":"S9","entrezGeneId":"6203"},{"alias":"DBA9","entrezGeneId":"6204"},{"alias":"S10","entrezGeneId":"6204"},{"alias":"S11","entrezGeneId":"6205"},{"alias":"S12","entrezGeneId":"6206"},{"alias":"S13","entrezGeneId":"6207"},{"alias":"EMTB","entrezGeneId":"6208"},{"alias":"S14","entrezGeneId":"6208"},{"alias":"RIG","entrezGeneId":"6209"},{"alias":"S15","entrezGeneId":"6209"},{"alias":"S15a","entrezGeneId":"6210"},{"alias":"S16","entrezGeneId":"6217"},{"alias":"DBA4","entrezGeneId":"6218"},{"alias":"RPS17L","entrezGeneId":"6218"},{"alias":"RPS17L1","entrezGeneId":"6218"},{"alias":"RPS17L2","entrezGeneId":"6218"},{"alias":"S17","entrezGeneId":"6218"},{"alias":"RPS17A","entrezGeneId":"6219"},{"alias":"RPS17L1","entrezGeneId":"6219"},{"alias":"RPS17_5_604","entrezGeneId":"6219"},{"alias":"D6S218E","entrezGeneId":"6222"},{"alias":"HKE3","entrezGeneId":"6222"},{"alias":"KE-3","entrezGeneId":"6222"},{"alias":"KE3","entrezGeneId":"6222"},{"alias":"S18","entrezGeneId":"6222"},{"alias":"DBA","entrezGeneId":"6223"},{"alias":"DBA1","entrezGeneId":"6223"},{"alias":"eS19","entrezGeneId":"6223"},{"alias":"S19","entrezGeneId":"6223"},{"alias":"S20","entrezGeneId":"6224"},{"alias":"uS10","entrezGeneId":"6224"},{"alias":"RPS20A","entrezGeneId":"6225"},{"alias":"RPS20_8_599","entrezGeneId":"6225"},{"alias":"RPS20B","entrezGeneId":"6226"},{"alias":"RPS20_6_627","entrezGeneId":"6226"},{"alias":"HLDF","entrezGeneId":"6227"},{"alias":"S21","entrezGeneId":"6227"},{"alias":"BTDD","entrezGeneId":"6228"},{"alias":"MABAS","entrezGeneId":"6228"},{"alias":"MCINS","entrezGeneId":"6228"},{"alias":"PAMAS","entrezGeneId":"6228"},{"alias":"S23","entrezGeneId":"6228"},{"alias":"uS12","entrezGeneId":"6228"},{"alias":"DBA3","entrezGeneId":"6229"},{"alias":"eS24","entrezGeneId":"6229"},{"alias":"S24","entrezGeneId":"6229"},{"alias":"S25","entrezGeneId":"6230"},{"alias":"DBA10","entrezGeneId":"6231"},{"alias":"eS26","entrezGeneId":"6231"},{"alias":"S26","entrezGeneId":"6231"},{"alias":"DBA17","entrezGeneId":"6232"},{"alias":"MPS-1","entrezGeneId":"6232"},{"alias":"MPS1","entrezGeneId":"6232"},{"alias":"S27","entrezGeneId":"6232"},{"alias":"CEP80","entrezGeneId":"6233"},{"alias":"HEL112","entrezGeneId":"6233"},{"alias":"S27A","entrezGeneId":"6233"},{"alias":"UBA80","entrezGeneId":"6233"},{"alias":"UBC","entrezGeneId":"6233"},{"alias":"UBCEP1","entrezGeneId":"6233"},{"alias":"UBCEP80","entrezGeneId":"6233"},{"alias":"DBA15","entrezGeneId":"6234"},{"alias":"eS28","entrezGeneId":"6234"},{"alias":"S28","entrezGeneId":"6234"},{"alias":"DBA13","entrezGeneId":"6235"},{"alias":"S29","entrezGeneId":"6235"},{"alias":"uS14","entrezGeneId":"6235"},{"alias":"RAD","entrezGeneId":"6236"},{"alias":"RAD1","entrezGeneId":"6236"},{"alias":"REM3","entrezGeneId":"6236"},{"alias":"R-Ras","entrezGeneId":"6237"},{"alias":"ES/130","entrezGeneId":"6238"},{"alias":"ES130","entrezGeneId":"6238"},{"alias":"hES","entrezGeneId":"6238"},{"alias":"RRp","entrezGeneId":"6238"},{"alias":"FINB","entrezGeneId":"6239"},{"alias":"HNT","entrezGeneId":"6239"},{"alias":"LZ321","entrezGeneId":"6239"},{"alias":"RREB-1","entrezGeneId":"6239"},{"alias":"Zep-1","entrezGeneId":"6239"},{"alias":"R1","entrezGeneId":"6240"},{"alias":"RIR1","entrezGeneId":"6240"},{"alias":"RR1","entrezGeneId":"6240"},{"alias":"R2","entrezGeneId":"6241"},{"alias":"RR2","entrezGeneId":"6241"},{"alias":"RR2M","entrezGeneId":"6241"},{"alias":"RS","entrezGeneId":"6247"},{"alias":"XLRS1","entrezGeneId":"6247"},{"alias":"RS1","entrezGeneId":"6248"},{"alias":"CLIP","entrezGeneId":"6249"},{"alias":"CLIP-170","entrezGeneId":"6249"},{"alias":"CLIP170","entrezGeneId":"6249"},{"alias":"CYLN1","entrezGeneId":"6249"},{"alias":"RSN","entrezGeneId":"6249"},{"alias":"RSP-1","entrezGeneId":"6251"},{"alias":"NSP","entrezGeneId":"6252"},{"alias":"NSP2","entrezGeneId":"6253"},{"alias":"NSPL1","entrezGeneId":"6253"},{"alias":"NSPLI","entrezGeneId":"6253"},{"alias":"SPG12","entrezGeneId":"6253"},{"alias":"NR2B1","entrezGeneId":"6256"},{"alias":"DAUDI6","entrezGeneId":"6257"},{"alias":"H-2RIIBP","entrezGeneId":"6257"},{"alias":"NR2B2","entrezGeneId":"6257"},{"alias":"RCoR-1","entrezGeneId":"6257"},{"alias":"NR2B3","entrezGeneId":"6258"},{"alias":"RXRC","entrezGeneId":"6258"},{"alias":"D3S3195","entrezGeneId":"6259"},{"alias":"JTK5","entrezGeneId":"6259"},{"alias":"JTK5A","entrezGeneId":"6259"},{"alias":"RYK1","entrezGeneId":"6259"},{"alias":"JTK5","entrezGeneId":"6260"},{"alias":"JTK5B","entrezGeneId":"6260"},{"alias":"RYKL1","entrezGeneId":"6260"},{"alias":"RYKP","entrezGeneId":"6260"},{"alias":"CCO","entrezGeneId":"6261"},{"alias":"MHS","entrezGeneId":"6261"},{"alias":"MHS1","entrezGeneId":"6261"},{"alias":"PPP1R137","entrezGeneId":"6261"},{"alias":"RYDR","entrezGeneId":"6261"},{"alias":"RYR","entrezGeneId":"6261"},{"alias":"RYR-1","entrezGeneId":"6261"},{"alias":"SKRR","entrezGeneId":"6261"},{"alias":"ARVC2","entrezGeneId":"6262"},{"alias":"ARVD2","entrezGeneId":"6262"},{"alias":"RyR","entrezGeneId":"6262"},{"alias":"RYR-2","entrezGeneId":"6262"},{"alias":"VTSIP","entrezGeneId":"6262"},{"alias":"RYR-3","entrezGeneId":"6263"},{"alias":"SA7-2","entrezGeneId":"6264"},{"alias":"S100","entrezGeneId":"6271"},{"alias":"S100-alpha","entrezGeneId":"6271"},{"alias":"S100A","entrezGeneId":"6271"},{"alias":"Gp95","entrezGeneId":"6272"},{"alias":"LDLCQ6","entrezGeneId":"6272"},{"alias":"NT3","entrezGeneId":"6272"},{"alias":"NTR3","entrezGeneId":"6272"},{"alias":"CAN19","entrezGeneId":"6273"},{"alias":"S100L","entrezGeneId":"6273"},{"alias":"S100E","entrezGeneId":"6274"},{"alias":"18A2","entrezGeneId":"6275"},{"alias":"42A","entrezGeneId":"6275"},{"alias":"CAPL","entrezGeneId":"6275"},{"alias":"FSP1","entrezGeneId":"6275"},{"alias":"MTS1","entrezGeneId":"6275"},{"alias":"P9KA","entrezGeneId":"6275"},{"alias":"PEL98","entrezGeneId":"6275"},{"alias":"S100D","entrezGeneId":"6276"},{"alias":"2A9","entrezGeneId":"6277"},{"alias":"5B10","entrezGeneId":"6277"},{"alias":"CABP","entrezGeneId":"6277"},{"alias":"CACY","entrezGeneId":"6277"},{"alias":"PRA","entrezGeneId":"6277"},{"alias":"S10A6","entrezGeneId":"6277"},{"alias":"PSOR1","entrezGeneId":"6278"},{"alias":"S100A7c","entrezGeneId":"6278"},{"alias":"60B8AG","entrezGeneId":"6279"},{"alias":"CAGA","entrezGeneId":"6279"},{"alias":"CFAG","entrezGeneId":"6279"},{"alias":"CGLA","entrezGeneId":"6279"},{"alias":"CP-10","entrezGeneId":"6279"},{"alias":"L1Ag","entrezGeneId":"6279"},{"alias":"MA387","entrezGeneId":"6279"},{"alias":"MIF","entrezGeneId":"6279"},{"alias":"MRP8","entrezGeneId":"6279"},{"alias":"NIF","entrezGeneId":"6279"},{"alias":"P8","entrezGeneId":"6279"},{"alias":"60B8AG","entrezGeneId":"6280"},{"alias":"CAGB","entrezGeneId":"6280"},{"alias":"CFAG","entrezGeneId":"6280"},{"alias":"CGLB","entrezGeneId":"6280"},{"alias":"L1AG","entrezGeneId":"6280"},{"alias":"LIAG","entrezGeneId":"6280"},{"alias":"MAC387","entrezGeneId":"6280"},{"alias":"MIF","entrezGeneId":"6280"},{"alias":"MRP14","entrezGeneId":"6280"},{"alias":"NIF","entrezGeneId":"6280"},{"alias":"P14","entrezGeneId":"6280"},{"alias":"42C","entrezGeneId":"6281"},{"alias":"ANX2L","entrezGeneId":"6281"},{"alias":"ANX2LG","entrezGeneId":"6281"},{"alias":"CAL1L","entrezGeneId":"6281"},{"alias":"Ca[1]","entrezGeneId":"6281"},{"alias":"CLP11","entrezGeneId":"6281"},{"alias":"GP11","entrezGeneId":"6281"},{"alias":"p10","entrezGeneId":"6281"},{"alias":"P11","entrezGeneId":"6281"},{"alias":"HEL-S-43","entrezGeneId":"6282"},{"alias":"MLN70","entrezGeneId":"6282"},{"alias":"S100C","entrezGeneId":"6282"},{"alias":"CAAF1","entrezGeneId":"6283"},{"alias":"CAGC","entrezGeneId":"6283"},{"alias":"CGRP","entrezGeneId":"6283"},{"alias":"ENRAGE","entrezGeneId":"6283"},{"alias":"MRP-6","entrezGeneId":"6283"},{"alias":"MRP6","entrezGeneId":"6283"},{"alias":"p6","entrezGeneId":"6283"},{"alias":"NEF","entrezGeneId":"6285"},{"alias":"S100","entrezGeneId":"6285"},{"alias":"S100-B","entrezGeneId":"6285"},{"alias":"S100beta","entrezGeneId":"6285"},{"alias":"MIG9","entrezGeneId":"6286"},{"alias":"SAA","entrezGeneId":"6287"},{"alias":"SAA4","entrezGeneId":"6287"},{"alias":"PIG4","entrezGeneId":"6288"},{"alias":"SAA","entrezGeneId":"6288"},{"alias":"SAA2","entrezGeneId":"6288"},{"alias":"TP53I4","entrezGeneId":"6288"},{"alias":"SAA3","entrezGeneId":"6290"},{"alias":"C-SAA","entrezGeneId":"6291"},{"alias":"CSAA","entrezGeneId":"6291"},{"alias":"ARE1","entrezGeneId":"6293"},{"alias":"dJ1033B10.5","entrezGeneId":"6293"},{"alias":"SAC2","entrezGeneId":"6293"},{"alias":"SACM2L","entrezGeneId":"6293"},{"alias":"HAP","entrezGeneId":"6294"},{"alias":"HET","entrezGeneId":"6294"},{"alias":"SAB-B1","entrezGeneId":"6294"},{"alias":"SAF-B","entrezGeneId":"6294"},{"alias":"SAF-B1","entrezGeneId":"6294"},{"alias":"SAFB1","entrezGeneId":"6294"},{"alias":"RP47","entrezGeneId":"6295"},{"alias":"S-AG","entrezGeneId":"6295"},{"alias":"SA","entrezGeneId":"6296"},{"alias":"SAH","entrezGeneId":"6296"},{"alias":"COLB","entrezGeneId":"6297"},{"alias":"HSAL2","entrezGeneId":"6297"},{"alias":"p150(Sal2)","entrezGeneId":"6297"},{"alias":"Sal-2","entrezGeneId":"6297"},{"alias":"ZNF795","entrezGeneId":"6297"},{"alias":"MTS1","entrezGeneId":"6298"},{"alias":"TFS1","entrezGeneId":"6298"},{"alias":"HEL-S-89","entrezGeneId":"6299"},{"alias":"HSAL1","entrezGeneId":"6299"},{"alias":"Sal-1","entrezGeneId":"6299"},{"alias":"TBS","entrezGeneId":"6299"},{"alias":"ZNF794","entrezGeneId":"6299"},{"alias":"ERK-6","entrezGeneId":"6300"},{"alias":"ERK3","entrezGeneId":"6300"},{"alias":"ERK6","entrezGeneId":"6300"},{"alias":"MAPK 12","entrezGeneId":"6300"},{"alias":"P38GAMMA","entrezGeneId":"6300"},{"alias":"PRKM12","entrezGeneId":"6300"},{"alias":"SAPK-3","entrezGeneId":"6300"},{"alias":"SAPK3","entrezGeneId":"6300"},{"alias":"NEDMAS","entrezGeneId":"6301"},{"alias":"SERRS","entrezGeneId":"6301"},{"alias":"SERS","entrezGeneId":"6301"},{"alias":"SAS","entrezGeneId":"6302"},{"alias":"DC21","entrezGeneId":"6303"},{"alias":"KFSD","entrezGeneId":"6303"},{"alias":"KFSDX","entrezGeneId":"6303"},{"alias":"SAT","entrezGeneId":"6303"},{"alias":"SSAT","entrezGeneId":"6303"},{"alias":"SSAT-1","entrezGeneId":"6303"},{"alias":"CMT4B3","entrezGeneId":"6305"},{"alias":"DENND7A","entrezGeneId":"6305"},{"alias":"MTMR5","entrezGeneId":"6305"},{"alias":"DESP4","entrezGeneId":"6307"},{"alias":"ERG25","entrezGeneId":"6307"},{"alias":"MCCPD","entrezGeneId":"6307"},{"alias":"SC4MOL","entrezGeneId":"6307"},{"alias":"DESP4P1","entrezGeneId":"6308"},{"alias":"ERG3","entrezGeneId":"6309"},{"alias":"S5DES","entrezGeneId":"6309"},{"alias":"SC5DL","entrezGeneId":"6309"},{"alias":"ATX1","entrezGeneId":"6310"},{"alias":"D6S504E","entrezGeneId":"6310"},{"alias":"SCA1","entrezGeneId":"6310"},{"alias":"ATX2","entrezGeneId":"6311"},{"alias":"SCA2","entrezGeneId":"6311"},{"alias":"TNRC13","entrezGeneId":"6311"},{"alias":"ADCAII","entrezGeneId":"6314"},{"alias":"OPCA3","entrezGeneId":"6314"},{"alias":"SCA7","entrezGeneId":"6314"},{"alias":"KLHL1AS","entrezGeneId":"6315"},{"alias":"NCRNA00003","entrezGeneId":"6315"},{"alias":"SCA8","entrezGeneId":"6315"},{"alias":"HsT1196","entrezGeneId":"6317"},{"alias":"SCC","entrezGeneId":"6317"},{"alias":"SCCA-1","entrezGeneId":"6317"},{"alias":"SCCA-PD","entrezGeneId":"6317"},{"alias":"SCCA1","entrezGeneId":"6317"},{"alias":"SSCA1","entrezGeneId":"6317"},{"alias":"T4-A","entrezGeneId":"6317"},{"alias":"LEUPIN","entrezGeneId":"6318"},{"alias":"PI11","entrezGeneId":"6318"},{"alias":"SCCA-2","entrezGeneId":"6318"},{"alias":"SCCA1","entrezGeneId":"6318"},{"alias":"SCCA2","entrezGeneId":"6318"},{"alias":"FADS5","entrezGeneId":"6319"},{"alias":"hSCD1","entrezGeneId":"6319"},{"alias":"MSTP008","entrezGeneId":"6319"},{"alias":"SCD1","entrezGeneId":"6319"},{"alias":"SCDOS","entrezGeneId":"6319"},{"alias":"CLECSF3","entrezGeneId":"6320"},{"alias":"LSLCL","entrezGeneId":"6320"},{"alias":"P47","entrezGeneId":"6320"},{"alias":"SCGF","entrezGeneId":"6320"},{"alias":"EIEE6","entrezGeneId":"6323"},{"alias":"FEB3","entrezGeneId":"6323"},{"alias":"FEB3A","entrezGeneId":"6323"},{"alias":"FHM3","entrezGeneId":"6323"},{"alias":"GEFSP2","entrezGeneId":"6323"},{"alias":"HBSCI","entrezGeneId":"6323"},{"alias":"NAC1","entrezGeneId":"6323"},{"alias":"Nav1.1","entrezGeneId":"6323"},{"alias":"SCN1","entrezGeneId":"6323"},{"alias":"SMEI","entrezGeneId":"6323"},{"alias":"ATFB13","entrezGeneId":"6324"},{"alias":"BRGDA5","entrezGeneId":"6324"},{"alias":"EIEE52","entrezGeneId":"6324"},{"alias":"GEFSP1","entrezGeneId":"6324"},{"alias":"BFIC3","entrezGeneId":"6326"},{"alias":"BFIS3","entrezGeneId":"6326"},{"alias":"BFNIS","entrezGeneId":"6326"},{"alias":"EIEE11","entrezGeneId":"6326"},{"alias":"HBA","entrezGeneId":"6326"},{"alias":"HBSCI","entrezGeneId":"6326"},{"alias":"HBSCII","entrezGeneId":"6326"},{"alias":"Na(v)1.2","entrezGeneId":"6326"},{"alias":"NAC2","entrezGeneId":"6326"},{"alias":"Nav1.2","entrezGeneId":"6326"},{"alias":"SCN2A1","entrezGeneId":"6326"},{"alias":"SCN2A2","entrezGeneId":"6326"},{"alias":"ATFB14","entrezGeneId":"6327"},{"alias":"NAC3","entrezGeneId":"6328"},{"alias":"Nav1.3","entrezGeneId":"6328"},{"alias":"CMS16","entrezGeneId":"6329"},{"alias":"HOKPP2","entrezGeneId":"6329"},{"alias":"HYKPP","entrezGeneId":"6329"},{"alias":"HYPP","entrezGeneId":"6329"},{"alias":"Na(V)1.4","entrezGeneId":"6329"},{"alias":"NAC1A","entrezGeneId":"6329"},{"alias":"Nav1.4","entrezGeneId":"6329"},{"alias":"SkM1","entrezGeneId":"6329"},{"alias":"ATFB17","entrezGeneId":"6330"},{"alias":"LQT10","entrezGeneId":"6330"},{"alias":"Navbeta4","entrezGeneId":"6330"},{"alias":"CDCD2","entrezGeneId":"6331"},{"alias":"CMD1E","entrezGeneId":"6331"},{"alias":"CMPD2","entrezGeneId":"6331"},{"alias":"HB1","entrezGeneId":"6331"},{"alias":"HB2","entrezGeneId":"6331"},{"alias":"HBBD","entrezGeneId":"6331"},{"alias":"HH1","entrezGeneId":"6331"},{"alias":"ICCD","entrezGeneId":"6331"},{"alias":"IVF","entrezGeneId":"6331"},{"alias":"LQT3","entrezGeneId":"6331"},{"alias":"Nav1.5","entrezGeneId":"6331"},{"alias":"PFHB1","entrezGeneId":"6331"},{"alias":"SSS1","entrezGeneId":"6331"},{"alias":"VF1","entrezGeneId":"6331"},{"alias":"NaG","entrezGeneId":"6332"},{"alias":"Nav2.1","entrezGeneId":"6332"},{"alias":"Nav2.2","entrezGeneId":"6332"},{"alias":"SCN6A","entrezGeneId":"6332"},{"alias":"BFIS5","entrezGeneId":"6334"},{"alias":"CERIII","entrezGeneId":"6334"},{"alias":"CIAT","entrezGeneId":"6334"},{"alias":"EIEE13","entrezGeneId":"6334"},{"alias":"MED","entrezGeneId":"6334"},{"alias":"NaCh6","entrezGeneId":"6334"},{"alias":"Nav1.6","entrezGeneId":"6334"},{"alias":"PN4","entrezGeneId":"6334"},{"alias":"ETHA","entrezGeneId":"6335"},{"alias":"FEB3B","entrezGeneId":"6335"},{"alias":"GEFSP7","entrezGeneId":"6335"},{"alias":"HSAN2D","entrezGeneId":"6335"},{"alias":"Nav1.7","entrezGeneId":"6335"},{"alias":"NE-NA","entrezGeneId":"6335"},{"alias":"NENA","entrezGeneId":"6335"},{"alias":"PN1","entrezGeneId":"6335"},{"alias":"SFNP","entrezGeneId":"6335"},{"alias":"FEPS2","entrezGeneId":"6336"},{"alias":"hPN3","entrezGeneId":"6336"},{"alias":"Nav1.8","entrezGeneId":"6336"},{"alias":"PN3","entrezGeneId":"6336"},{"alias":"SNS","entrezGeneId":"6336"},{"alias":"BESC2","entrezGeneId":"6337"},{"alias":"ENaCa","entrezGeneId":"6337"},{"alias":"ENaCalpha","entrezGeneId":"6337"},{"alias":"SCNEA","entrezGeneId":"6337"},{"alias":"SCNN1","entrezGeneId":"6337"},{"alias":"BESC1","entrezGeneId":"6338"},{"alias":"ENaCb","entrezGeneId":"6338"},{"alias":"ENaCbeta","entrezGeneId":"6338"},{"alias":"SCNEB","entrezGeneId":"6338"},{"alias":"dNaCh","entrezGeneId":"6339"},{"alias":"ENaCd","entrezGeneId":"6339"},{"alias":"ENaCdelta","entrezGeneId":"6339"},{"alias":"SCNED","entrezGeneId":"6339"},{"alias":"BESC3","entrezGeneId":"6340"},{"alias":"ENaCg","entrezGeneId":"6340"},{"alias":"ENaCgamma","entrezGeneId":"6340"},{"alias":"PHA1","entrezGeneId":"6340"},{"alias":"SCNEG","entrezGeneId":"6340"},{"alias":"SCOD1","entrezGeneId":"6341"},{"alias":"NLTP","entrezGeneId":"6342"},{"alias":"NSL-TP","entrezGeneId":"6342"},{"alias":"SCP-2","entrezGeneId":"6342"},{"alias":"SCP-CHI","entrezGeneId":"6342"},{"alias":"SCP-X","entrezGeneId":"6342"},{"alias":"SCPX","entrezGeneId":"6342"},{"alias":"SR","entrezGeneId":"6344"},{"alias":"SAR","entrezGeneId":"6345"},{"alias":"I-309","entrezGeneId":"6346"},{"alias":"P500","entrezGeneId":"6346"},{"alias":"SCYA1","entrezGeneId":"6346"},{"alias":"SISe","entrezGeneId":"6346"},{"alias":"TCA3","entrezGeneId":"6346"},{"alias":"GDCF-2","entrezGeneId":"6347"},{"alias":"HC11","entrezGeneId":"6347"},{"alias":"HSMCR30","entrezGeneId":"6347"},{"alias":"MCAF","entrezGeneId":"6347"},{"alias":"MCP-1","entrezGeneId":"6347"},{"alias":"MCP1","entrezGeneId":"6347"},{"alias":"SCYA2","entrezGeneId":"6347"},{"alias":"SMC-CF","entrezGeneId":"6347"},{"alias":"G0S19-1","entrezGeneId":"6348"},{"alias":"LD78ALPHA","entrezGeneId":"6348"},{"alias":"MIP-1-alpha","entrezGeneId":"6348"},{"alias":"MIP1A","entrezGeneId":"6348"},{"alias":"SCYA3","entrezGeneId":"6348"},{"alias":"464.2","entrezGeneId":"6349"},{"alias":"D17S1718","entrezGeneId":"6349"},{"alias":"G0S19-2","entrezGeneId":"6349"},{"alias":"LD78","entrezGeneId":"6349"},{"alias":"LD78-beta(1-70)","entrezGeneId":"6349"},{"alias":"LD78BETA","entrezGeneId":"6349"},{"alias":"MIP1AP","entrezGeneId":"6349"},{"alias":"SCYA3L","entrezGeneId":"6349"},{"alias":"SCYA3L1","entrezGeneId":"6349"},{"alias":"ACT2","entrezGeneId":"6351"},{"alias":"AT744.1","entrezGeneId":"6351"},{"alias":"G-26","entrezGeneId":"6351"},{"alias":"HC21","entrezGeneId":"6351"},{"alias":"LAG-1","entrezGeneId":"6351"},{"alias":"LAG1","entrezGeneId":"6351"},{"alias":"MIP-1-beta","entrezGeneId":"6351"},{"alias":"MIP1B","entrezGeneId":"6351"},{"alias":"MIP1B1","entrezGeneId":"6351"},{"alias":"SCYA2","entrezGeneId":"6351"},{"alias":"SCYA4","entrezGeneId":"6351"},{"alias":"D17S136E","entrezGeneId":"6352"},{"alias":"eoCP","entrezGeneId":"6352"},{"alias":"RANTES","entrezGeneId":"6352"},{"alias":"SCYA5","entrezGeneId":"6352"},{"alias":"SIS-delta","entrezGeneId":"6352"},{"alias":"SISd","entrezGeneId":"6352"},{"alias":"TCP228","entrezGeneId":"6352"},{"alias":"FIC","entrezGeneId":"6354"},{"alias":"MARC","entrezGeneId":"6354"},{"alias":"MCP-3","entrezGeneId":"6354"},{"alias":"MCP3","entrezGeneId":"6354"},{"alias":"NC28","entrezGeneId":"6354"},{"alias":"SCYA6","entrezGeneId":"6354"},{"alias":"SCYA7","entrezGeneId":"6354"},{"alias":"HC14","entrezGeneId":"6355"},{"alias":"MCP-2","entrezGeneId":"6355"},{"alias":"MCP2","entrezGeneId":"6355"},{"alias":"SCYA10","entrezGeneId":"6355"},{"alias":"SCYA8","entrezGeneId":"6355"},{"alias":"SCYA11","entrezGeneId":"6356"},{"alias":"CKb10","entrezGeneId":"6357"},{"alias":"MCP-4","entrezGeneId":"6357"},{"alias":"NCC-1","entrezGeneId":"6357"},{"alias":"NCC1","entrezGeneId":"6357"},{"alias":"SCYA13","entrezGeneId":"6357"},{"alias":"SCYL1","entrezGeneId":"6357"},{"alias":"CC-1","entrezGeneId":"6358"},{"alias":"CC-3","entrezGeneId":"6358"},{"alias":"CKB1","entrezGeneId":"6358"},{"alias":"HCC-1","entrezGeneId":"6358"},{"alias":"HCC-1(1-74)","entrezGeneId":"6358"},{"alias":"HCC-1/HCC-3","entrezGeneId":"6358"},{"alias":"HCC-3","entrezGeneId":"6358"},{"alias":"MCIF","entrezGeneId":"6358"},{"alias":"NCC-2","entrezGeneId":"6358"},{"alias":"NCC2","entrezGeneId":"6358"},{"alias":"SCYA14","entrezGeneId":"6358"},{"alias":"SCYL2","entrezGeneId":"6358"},{"alias":"SY14","entrezGeneId":"6358"},{"alias":"HCC-2","entrezGeneId":"6359"},{"alias":"HMRP-2B","entrezGeneId":"6359"},{"alias":"LKN-1","entrezGeneId":"6359"},{"alias":"LKN1","entrezGeneId":"6359"},{"alias":"MIP-1 delta","entrezGeneId":"6359"},{"alias":"MIP-1D","entrezGeneId":"6359"},{"alias":"MIP-5","entrezGeneId":"6359"},{"alias":"MRP-2B","entrezGeneId":"6359"},{"alias":"NCC-3","entrezGeneId":"6359"},{"alias":"NCC3","entrezGeneId":"6359"},{"alias":"SCYA15","entrezGeneId":"6359"},{"alias":"SCYL3","entrezGeneId":"6359"},{"alias":"SY15","entrezGeneId":"6359"},{"alias":"CKb12","entrezGeneId":"6360"},{"alias":"HCC-4","entrezGeneId":"6360"},{"alias":"ILINCK","entrezGeneId":"6360"},{"alias":"LCC-1","entrezGeneId":"6360"},{"alias":"LEC","entrezGeneId":"6360"},{"alias":"LMC","entrezGeneId":"6360"},{"alias":"Mtn-1","entrezGeneId":"6360"},{"alias":"NCC-4","entrezGeneId":"6360"},{"alias":"NCC4","entrezGeneId":"6360"},{"alias":"SCYA16","entrezGeneId":"6360"},{"alias":"SCYL4","entrezGeneId":"6360"},{"alias":"A-152E5.3","entrezGeneId":"6361"},{"alias":"ABCD-2","entrezGeneId":"6361"},{"alias":"SCYA17","entrezGeneId":"6361"},{"alias":"TARC","entrezGeneId":"6361"},{"alias":"AMAC-1","entrezGeneId":"6362"},{"alias":"AMAC1","entrezGeneId":"6362"},{"alias":"CKb7","entrezGeneId":"6362"},{"alias":"DC-CK1","entrezGeneId":"6362"},{"alias":"DCCK1","entrezGeneId":"6362"},{"alias":"MIP-4","entrezGeneId":"6362"},{"alias":"PARC","entrezGeneId":"6362"},{"alias":"SCYA18","entrezGeneId":"6362"},{"alias":"CKb11","entrezGeneId":"6363"},{"alias":"ELC","entrezGeneId":"6363"},{"alias":"MIP-3b","entrezGeneId":"6363"},{"alias":"MIP3B","entrezGeneId":"6363"},{"alias":"SCYA19","entrezGeneId":"6363"},{"alias":"CKb4","entrezGeneId":"6364"},{"alias":"Exodus","entrezGeneId":"6364"},{"alias":"LARC","entrezGeneId":"6364"},{"alias":"MIP-3-alpha","entrezGeneId":"6364"},{"alias":"MIP-3a","entrezGeneId":"6364"},{"alias":"MIP3A","entrezGeneId":"6364"},{"alias":"SCYA20","entrezGeneId":"6364"},{"alias":"ST38","entrezGeneId":"6364"},{"alias":"6Ckine","entrezGeneId":"6366"},{"alias":"CKb9","entrezGeneId":"6366"},{"alias":"ECL","entrezGeneId":"6366"},{"alias":"SCYA21","entrezGeneId":"6366"},{"alias":"SLC","entrezGeneId":"6366"},{"alias":"TCA4","entrezGeneId":"6366"},{"alias":"A-152E5.1","entrezGeneId":"6367"},{"alias":"ABCD-1","entrezGeneId":"6367"},{"alias":"DC/B-CK","entrezGeneId":"6367"},{"alias":"MDC","entrezGeneId":"6367"},{"alias":"SCYA22","entrezGeneId":"6367"},{"alias":"STCP-1","entrezGeneId":"6367"},{"alias":"CK-BETA-8","entrezGeneId":"6368"},{"alias":"Ckb-8","entrezGeneId":"6368"},{"alias":"Ckb-8-1","entrezGeneId":"6368"},{"alias":"CKb8","entrezGeneId":"6368"},{"alias":"hmrp-2a","entrezGeneId":"6368"},{"alias":"MIP-3","entrezGeneId":"6368"},{"alias":"MIP3","entrezGeneId":"6368"},{"alias":"MPIF-1","entrezGeneId":"6368"},{"alias":"SCYA23","entrezGeneId":"6368"},{"alias":"Ckb-6","entrezGeneId":"6369"},{"alias":"MPIF-2","entrezGeneId":"6369"},{"alias":"MPIF2","entrezGeneId":"6369"},{"alias":"SCYA24","entrezGeneId":"6369"},{"alias":"Ckb15","entrezGeneId":"6370"},{"alias":"SCYA25","entrezGeneId":"6370"},{"alias":"TECK","entrezGeneId":"6370"},{"alias":"CKA-3","entrezGeneId":"6372"},{"alias":"GCP-2","entrezGeneId":"6372"},{"alias":"GCP2","entrezGeneId":"6372"},{"alias":"SCYB6","entrezGeneId":"6372"},{"alias":"b-R1","entrezGeneId":"6373"},{"alias":"H174","entrezGeneId":"6373"},{"alias":"I-TAC","entrezGeneId":"6373"},{"alias":"IP-9","entrezGeneId":"6373"},{"alias":"IP9","entrezGeneId":"6373"},{"alias":"SCYB11","entrezGeneId":"6373"},{"alias":"SCYB9B","entrezGeneId":"6373"},{"alias":"ENA-78","entrezGeneId":"6374"},{"alias":"SCYB5","entrezGeneId":"6374"},{"alias":"ATAC","entrezGeneId":"6375"},{"alias":"LPTN","entrezGeneId":"6375"},{"alias":"LTN","entrezGeneId":"6375"},{"alias":"SCM-1","entrezGeneId":"6375"},{"alias":"SCM-1a","entrezGeneId":"6375"},{"alias":"SCM1","entrezGeneId":"6375"},{"alias":"SCM1A","entrezGeneId":"6375"},{"alias":"SCYC1","entrezGeneId":"6375"},{"alias":"ABCD-3","entrezGeneId":"6376"},{"alias":"C3Xkine","entrezGeneId":"6376"},{"alias":"CXC3","entrezGeneId":"6376"},{"alias":"CXC3C","entrezGeneId":"6376"},{"alias":"fractalkine","entrezGeneId":"6376"},{"alias":"neurotactin","entrezGeneId":"6376"},{"alias":"NTN","entrezGeneId":"6376"},{"alias":"NTT","entrezGeneId":"6376"},{"alias":"SCYD1","entrezGeneId":"6376"},{"alias":"CD138","entrezGeneId":"6382"},{"alias":"SDC","entrezGeneId":"6382"},{"alias":"SYND1","entrezGeneId":"6382"},{"alias":"syndecan","entrezGeneId":"6382"},{"alias":"CD362","entrezGeneId":"6383"},{"alias":"HSPG","entrezGeneId":"6383"},{"alias":"HSPG1","entrezGeneId":"6383"},{"alias":"SYND2","entrezGeneId":"6383"},{"alias":"SYND4","entrezGeneId":"6385"},{"alias":"MDA-9","entrezGeneId":"6386"},{"alias":"MDA9","entrezGeneId":"6386"},{"alias":"ST1","entrezGeneId":"6386"},{"alias":"SYCL","entrezGeneId":"6386"},{"alias":"TACIP18","entrezGeneId":"6386"},{"alias":"IRH","entrezGeneId":"6387"},{"alias":"PBSF","entrezGeneId":"6387"},{"alias":"SCYB12","entrezGeneId":"6387"},{"alias":"SDF1","entrezGeneId":"6387"},{"alias":"TLSF","entrezGeneId":"6387"},{"alias":"TPAR1","entrezGeneId":"6387"},{"alias":"CMD1GG","entrezGeneId":"6389"},{"alias":"FP","entrezGeneId":"6389"},{"alias":"PGL5","entrezGeneId":"6389"},{"alias":"SDH1","entrezGeneId":"6389"},{"alias":"SDH2","entrezGeneId":"6389"},{"alias":"SDHF","entrezGeneId":"6389"},{"alias":"CWS2","entrezGeneId":"6390"},{"alias":"IP","entrezGeneId":"6390"},{"alias":"PGL4","entrezGeneId":"6390"},{"alias":"SDH","entrezGeneId":"6390"},{"alias":"SDH1","entrezGeneId":"6390"},{"alias":"SDH2","entrezGeneId":"6390"},{"alias":"SDHIP","entrezGeneId":"6390"},{"alias":"CYB560","entrezGeneId":"6391"},{"alias":"CYBL","entrezGeneId":"6391"},{"alias":"PGL3","entrezGeneId":"6391"},{"alias":"QPS1","entrezGeneId":"6391"},{"alias":"SDH3","entrezGeneId":"6391"},{"alias":"CBT1","entrezGeneId":"6392"},{"alias":"CII-4","entrezGeneId":"6392"},{"alias":"CWS3","entrezGeneId":"6392"},{"alias":"cybS","entrezGeneId":"6392"},{"alias":"PGL","entrezGeneId":"6392"},{"alias":"PGL1","entrezGeneId":"6392"},{"alias":"QPs3","entrezGeneId":"6392"},{"alias":"SDH4","entrezGeneId":"6392"},{"alias":"D3S1231E","entrezGeneId":"6396"},{"alias":"npp-20","entrezGeneId":"6396"},{"alias":"SEC13L1","entrezGeneId":"6396"},{"alias":"SEC13R","entrezGeneId":"6396"},{"alias":"PRELID4A","entrezGeneId":"6397"},{"alias":"SEC14L","entrezGeneId":"6397"},{"alias":"K12","entrezGeneId":"6398"},{"alias":"hYP38334","entrezGeneId":"6399"},{"alias":"MIP2A","entrezGeneId":"6399"},{"alias":"SEDL","entrezGeneId":"6399"},{"alias":"SEDT","entrezGeneId":"6399"},{"alias":"TRAPPC2P1","entrezGeneId":"6399"},{"alias":"TRS20","entrezGeneId":"6399"},{"alias":"ZNF547L","entrezGeneId":"6399"},{"alias":"PRO1063","entrezGeneId":"6400"},{"alias":"SEL1-LIKE","entrezGeneId":"6400"},{"alias":"SEL1L1","entrezGeneId":"6400"},{"alias":"CD62E","entrezGeneId":"6401"},{"alias":"ELAM","entrezGeneId":"6401"},{"alias":"ELAM1","entrezGeneId":"6401"},{"alias":"ESEL","entrezGeneId":"6401"},{"alias":"LECAM2","entrezGeneId":"6401"},{"alias":"CD62L","entrezGeneId":"6402"},{"alias":"LAM1","entrezGeneId":"6402"},{"alias":"LECAM1","entrezGeneId":"6402"},{"alias":"LEU8","entrezGeneId":"6402"},{"alias":"LNHR","entrezGeneId":"6402"},{"alias":"LSEL","entrezGeneId":"6402"},{"alias":"LYAM1","entrezGeneId":"6402"},{"alias":"PLNHR","entrezGeneId":"6402"},{"alias":"TQ1","entrezGeneId":"6402"},{"alias":"CD62","entrezGeneId":"6403"},{"alias":"CD62P","entrezGeneId":"6403"},{"alias":"GMP140","entrezGeneId":"6403"},{"alias":"GRMP","entrezGeneId":"6403"},{"alias":"LECAM3","entrezGeneId":"6403"},{"alias":"PADGEM","entrezGeneId":"6403"},{"alias":"PSEL","entrezGeneId":"6403"},{"alias":"CD162","entrezGeneId":"6404"},{"alias":"CLA","entrezGeneId":"6404"},{"alias":"PSGL-1","entrezGeneId":"6404"},{"alias":"PSGL1","entrezGeneId":"6404"},{"alias":"SEMA-IV","entrezGeneId":"6405"},{"alias":"SEMA4","entrezGeneId":"6405"},{"alias":"SEMAK","entrezGeneId":"6405"},{"alias":"CT103","entrezGeneId":"6406"},{"alias":"dJ172H20.2","entrezGeneId":"6406"},{"alias":"SEMG","entrezGeneId":"6406"},{"alias":"SGI","entrezGeneId":"6406"},{"alias":"SGII","entrezGeneId":"6407"},{"alias":"SELP","entrezGeneId":"6414"},{"alias":"SeP","entrezGeneId":"6414"},{"alias":"SEPP","entrezGeneId":"6414"},{"alias":"SEPP1","entrezGeneId":"6414"},{"alias":"selW","entrezGeneId":"6415"},{"alias":"SEPW1","entrezGeneId":"6415"},{"alias":"JNKK","entrezGeneId":"6416"},{"alias":"JNKK1","entrezGeneId":"6416"},{"alias":"MAPKK4","entrezGeneId":"6416"},{"alias":"MEK4","entrezGeneId":"6416"},{"alias":"MKK4","entrezGeneId":"6416"},{"alias":"PRKMK4","entrezGeneId":"6416"},{"alias":"SAPKK-1","entrezGeneId":"6416"},{"alias":"SAPKK1","entrezGeneId":"6416"},{"alias":"SEK1","entrezGeneId":"6416"},{"alias":"SERK1","entrezGeneId":"6416"},{"alias":"SKK1","entrezGeneId":"6416"},{"alias":"2PP2A","entrezGeneId":"6418"},{"alias":"I2PP2A","entrezGeneId":"6418"},{"alias":"IGAAD","entrezGeneId":"6418"},{"alias":"IPP2A2","entrezGeneId":"6418"},{"alias":"PHAPII","entrezGeneId":"6418"},{"alias":"TAF-I","entrezGeneId":"6418"},{"alias":"TAF-IBETA","entrezGeneId":"6418"},{"alias":"Mar1","entrezGeneId":"6419"},{"alias":"METNASE","entrezGeneId":"6419"},{"alias":"POMP100","entrezGeneId":"6421"},{"alias":"PPP1R140","entrezGeneId":"6421"},{"alias":"PSF","entrezGeneId":"6421"},{"alias":"FRP","entrezGeneId":"6422"},{"alias":"FRP-1","entrezGeneId":"6422"},{"alias":"FRP1","entrezGeneId":"6422"},{"alias":"FrzA","entrezGeneId":"6422"},{"alias":"SARP2","entrezGeneId":"6422"},{"alias":"FRP-2","entrezGeneId":"6423"},{"alias":"SARP1","entrezGeneId":"6423"},{"alias":"SDF-5","entrezGeneId":"6423"},{"alias":"FRP-4","entrezGeneId":"6424"},{"alias":"FRPHE","entrezGeneId":"6424"},{"alias":"FRZB-2","entrezGeneId":"6424"},{"alias":"PYL","entrezGeneId":"6424"},{"alias":"sFRP-4","entrezGeneId":"6424"},{"alias":"SARP3","entrezGeneId":"6425"},{"alias":"ASF","entrezGeneId":"6426"},{"alias":"SF2","entrezGeneId":"6426"},{"alias":"SF2p33","entrezGeneId":"6426"},{"alias":"SFRS1","entrezGeneId":"6426"},{"alias":"SRp30a","entrezGeneId":"6426"},{"alias":"PR264","entrezGeneId":"6427"},{"alias":"SC-35","entrezGeneId":"6427"},{"alias":"SC35","entrezGeneId":"6427"},{"alias":"SFRS2","entrezGeneId":"6427"},{"alias":"SFRS2A","entrezGeneId":"6427"},{"alias":"SRp30b","entrezGeneId":"6427"},{"alias":"SFRS3","entrezGeneId":"6428"},{"alias":"SRp20","entrezGeneId":"6428"},{"alias":"SFRS4","entrezGeneId":"6429"},{"alias":"SRP75","entrezGeneId":"6429"},{"alias":"HRS","entrezGeneId":"6430"},{"alias":"SFRS5","entrezGeneId":"6430"},{"alias":"SRP40","entrezGeneId":"6430"},{"alias":"B52","entrezGeneId":"6431"},{"alias":"HEL-S-91","entrezGeneId":"6431"},{"alias":"SFRS6","entrezGeneId":"6431"},{"alias":"SRP55","entrezGeneId":"6431"},{"alias":"9G8","entrezGeneId":"6432"},{"alias":"AAG3","entrezGeneId":"6432"},{"alias":"SFRS7","entrezGeneId":"6432"},{"alias":"SFRS8","entrezGeneId":"6433"},{"alias":"SWAP","entrezGeneId":"6433"},{"alias":"Htra2-beta","entrezGeneId":"6434"},{"alias":"PPP1R156","entrezGeneId":"6434"},{"alias":"SFRS10","entrezGeneId":"6434"},{"alias":"SRFS10","entrezGeneId":"6434"},{"alias":"TRA2-BETA","entrezGeneId":"6434"},{"alias":"TRAN2B","entrezGeneId":"6434"},{"alias":"PSP-B","entrezGeneId":"6439"},{"alias":"SFTB3","entrezGeneId":"6439"},{"alias":"SFTP3","entrezGeneId":"6439"},{"alias":"SMDP1","entrezGeneId":"6439"},{"alias":"SP-B","entrezGeneId":"6439"},{"alias":"BRICD6","entrezGeneId":"6440"},{"alias":"PSP-C","entrezGeneId":"6440"},{"alias":"SFTP2","entrezGeneId":"6440"},{"alias":"SMDP2","entrezGeneId":"6440"},{"alias":"SP-C","entrezGeneId":"6440"},{"alias":"COLEC7","entrezGeneId":"6441"},{"alias":"PSP-D","entrezGeneId":"6441"},{"alias":"SFTP4","entrezGeneId":"6441"},{"alias":"SP-D","entrezGeneId":"6441"},{"alias":"50DAG","entrezGeneId":"6442"},{"alias":"adhalin","entrezGeneId":"6442"},{"alias":"ADL","entrezGeneId":"6442"},{"alias":"DAG2","entrezGeneId":"6442"},{"alias":"DMDA2","entrezGeneId":"6442"},{"alias":"LGMD2D","entrezGeneId":"6442"},{"alias":"SCARMD1","entrezGeneId":"6442"},{"alias":"A3b","entrezGeneId":"6443"},{"alias":"LGMD2E","entrezGeneId":"6443"},{"alias":"SGC","entrezGeneId":"6443"},{"alias":"35DAG","entrezGeneId":"6444"},{"alias":"CMD1L","entrezGeneId":"6444"},{"alias":"DAGD","entrezGeneId":"6444"},{"alias":"SG-delta","entrezGeneId":"6444"},{"alias":"SGCDP","entrezGeneId":"6444"},{"alias":"SGD","entrezGeneId":"6444"},{"alias":"35DAG","entrezGeneId":"6445"},{"alias":"A4","entrezGeneId":"6445"},{"alias":"DAGA4","entrezGeneId":"6445"},{"alias":"DMDA","entrezGeneId":"6445"},{"alias":"DMDA1","entrezGeneId":"6445"},{"alias":"gamma-SG","entrezGeneId":"6445"},{"alias":"LGMD2C","entrezGeneId":"6445"},{"alias":"MAM","entrezGeneId":"6445"},{"alias":"SCARMD2","entrezGeneId":"6445"},{"alias":"SCG3","entrezGeneId":"6445"},{"alias":"SGK","entrezGeneId":"6446"},{"alias":"7B2","entrezGeneId":"6447"},{"alias":"P7B2","entrezGeneId":"6447"},{"alias":"SGNE1","entrezGeneId":"6447"},{"alias":"SgV","entrezGeneId":"6447"},{"alias":"HSS","entrezGeneId":"6448"},{"alias":"MPS3A","entrezGeneId":"6448"},{"alias":"SFMD","entrezGeneId":"6448"},{"alias":"alphaSGT","entrezGeneId":"6449"},{"alias":"hSGT","entrezGeneId":"6449"},{"alias":"SGT","entrezGeneId":"6449"},{"alias":"21-GARP","entrezGeneId":"6450"},{"alias":"HEL-S-115","entrezGeneId":"6451"},{"alias":"SH3BGR","entrezGeneId":"6451"},{"alias":"3BP-2","entrezGeneId":"6452"},{"alias":"3BP2","entrezGeneId":"6452"},{"alias":"CRBM","entrezGeneId":"6452"},{"alias":"CRPM","entrezGeneId":"6452"},{"alias":"RES4-23","entrezGeneId":"6452"},{"alias":"ITSN","entrezGeneId":"6453"},{"alias":"SH3D1A","entrezGeneId":"6453"},{"alias":"SH3P17","entrezGeneId":"6453"},{"alias":"CNSA1","entrezGeneId":"6455"},{"alias":"EEN","entrezGeneId":"6455"},{"alias":"SH3D2B","entrezGeneId":"6455"},{"alias":"SH3P8","entrezGeneId":"6455"},{"alias":"CNSA2","entrezGeneId":"6456"},{"alias":"EEN-B1","entrezGeneId":"6456"},{"alias":"SH3D2A","entrezGeneId":"6456"},{"alias":"SH3P4","entrezGeneId":"6456"},{"alias":"CNSA3","entrezGeneId":"6457"},{"alias":"EEN-B2","entrezGeneId":"6457"},{"alias":"HsT19371","entrezGeneId":"6457"},{"alias":"SH3D2C","entrezGeneId":"6457"},{"alias":"SH3P13","entrezGeneId":"6457"},{"alias":"CNSA-P1","entrezGeneId":"6458"},{"alias":"SH3GLP1","entrezGeneId":"6458"},{"alias":"CNSA-P2","entrezGeneId":"6459"},{"alias":"SH3GLP2","entrezGeneId":"6459"},{"alias":"bA3J10.2","entrezGeneId":"6461"},{"alias":"ABP","entrezGeneId":"6462"},{"alias":"SBP","entrezGeneId":"6462"},{"alias":"TEBG","entrezGeneId":"6462"},{"alias":"SHFD2","entrezGeneId":"6463"},{"alias":"SHSF2","entrezGeneId":"6463"},{"alias":"SHC","entrezGeneId":"6464"},{"alias":"SHCA","entrezGeneId":"6464"},{"alias":"SHCL1","entrezGeneId":"6466"},{"alias":"DAC","entrezGeneId":"6468"},{"alias":"FBW4","entrezGeneId":"6468"},{"alias":"FBWD4","entrezGeneId":"6468"},{"alias":"SHFM3","entrezGeneId":"6468"},{"alias":"SHSF3","entrezGeneId":"6468"},{"alias":"HHG1","entrezGeneId":"6469"},{"alias":"HLP3","entrezGeneId":"6469"},{"alias":"HPE3","entrezGeneId":"6469"},{"alias":"MCOPCB5","entrezGeneId":"6469"},{"alias":"ShhNC","entrezGeneId":"6469"},{"alias":"SMMCI","entrezGeneId":"6469"},{"alias":"TPT","entrezGeneId":"6469"},{"alias":"TPTPS","entrezGeneId":"6469"},{"alias":"CSHMT","entrezGeneId":"6470"},{"alias":"SHMT","entrezGeneId":"6470"},{"alias":"SHMT1P","entrezGeneId":"6471"},{"alias":"GLYA","entrezGeneId":"6472"},{"alias":"HEL-S-51e","entrezGeneId":"6472"},{"alias":"SHMT","entrezGeneId":"6472"},{"alias":"GCFX","entrezGeneId":"6473"},{"alias":"PHOG","entrezGeneId":"6473"},{"alias":"SHOXY","entrezGeneId":"6473"},{"alias":"SS","entrezGeneId":"6473"},{"alias":"OG12","entrezGeneId":"6474"},{"alias":"OG12X","entrezGeneId":"6474"},{"alias":"SHOT","entrezGeneId":"6474"},{"alias":"SIAH1A","entrezGeneId":"6477"},{"alias":"hSiah2","entrezGeneId":"6478"},{"alias":"SIAT1","entrezGeneId":"6480"},{"alias":"ST6GalI","entrezGeneId":"6480"},{"alias":"ST6N","entrezGeneId":"6480"},{"alias":"Gal-NAc6S","entrezGeneId":"6482"},{"alias":"SIAT4A","entrezGeneId":"6482"},{"alias":"SIATFL","entrezGeneId":"6482"},{"alias":"ST3GalA","entrezGeneId":"6482"},{"alias":"ST3GalA.1","entrezGeneId":"6482"},{"alias":"ST3GalIA","entrezGeneId":"6482"},{"alias":"ST3GalIA,1","entrezGeneId":"6482"},{"alias":"ST3O","entrezGeneId":"6482"},{"alias":"Gal-NAc6S","entrezGeneId":"6483"},{"alias":"SIAT4B","entrezGeneId":"6483"},{"alias":"ST3GalA.2","entrezGeneId":"6483"},{"alias":"ST3GALII","entrezGeneId":"6483"},{"alias":"CGS23","entrezGeneId":"6484"},{"alias":"gal-NAc6S","entrezGeneId":"6484"},{"alias":"NANTA3","entrezGeneId":"6484"},{"alias":"SAT3","entrezGeneId":"6484"},{"alias":"SIAT4","entrezGeneId":"6484"},{"alias":"SIAT4C","entrezGeneId":"6484"},{"alias":"ST-4","entrezGeneId":"6484"},{"alias":"ST3GalA.2","entrezGeneId":"6484"},{"alias":"ST3GalIV","entrezGeneId":"6484"},{"alias":"STZ","entrezGeneId":"6484"},{"alias":"EIEE15","entrezGeneId":"6487"},{"alias":"MRT12","entrezGeneId":"6487"},{"alias":"SIAT6","entrezGeneId":"6487"},{"alias":"ST3Gal III","entrezGeneId":"6487"},{"alias":"ST3GALII","entrezGeneId":"6487"},{"alias":"ST3GalIII","entrezGeneId":"6487"},{"alias":"ST3N","entrezGeneId":"6487"},{"alias":"GD3S","entrezGeneId":"6489"},{"alias":"SIAT8","entrezGeneId":"6489"},{"alias":"SIAT8-A","entrezGeneId":"6489"},{"alias":"SIAT8A","entrezGeneId":"6489"},{"alias":"ST8SiaI","entrezGeneId":"6489"},{"alias":"D12S53E","entrezGeneId":"6490"},{"alias":"gp100","entrezGeneId":"6490"},{"alias":"ME20","entrezGeneId":"6490"},{"alias":"ME20-M","entrezGeneId":"6490"},{"alias":"ME20M","entrezGeneId":"6490"},{"alias":"P1","entrezGeneId":"6490"},{"alias":"P100","entrezGeneId":"6490"},{"alias":"PMEL17","entrezGeneId":"6490"},{"alias":"SI","entrezGeneId":"6490"},{"alias":"SIL","entrezGeneId":"6490"},{"alias":"SILV","entrezGeneId":"6490"},{"alias":"MCPH7","entrezGeneId":"6491"},{"alias":"SIL","entrezGeneId":"6491"},{"alias":"bHLHe14","entrezGeneId":"6492"},{"alias":"bHLHe15","entrezGeneId":"6493"},{"alias":"HMC13F06","entrezGeneId":"6493"},{"alias":"HMC29C01","entrezGeneId":"6493"},{"alias":"SIM","entrezGeneId":"6493"},{"alias":"SPA1","entrezGeneId":"6494"},{"alias":"BOS3","entrezGeneId":"6495"},{"alias":"DFNA23","entrezGeneId":"6495"},{"alias":"TIP39","entrezGeneId":"6495"},{"alias":"HPE2","entrezGeneId":"6496"},{"alias":"SGS","entrezGeneId":"6497"},{"alias":"SKV","entrezGeneId":"6497"},{"alias":"SNO","entrezGeneId":"6498"},{"alias":"SnoA","entrezGeneId":"6498"},{"alias":"SnoI","entrezGeneId":"6498"},{"alias":"SnoN","entrezGeneId":"6498"},{"alias":"170A","entrezGeneId":"6499"},{"alias":"DDX13","entrezGeneId":"6499"},{"alias":"HLP","entrezGeneId":"6499"},{"alias":"SKI2","entrezGeneId":"6499"},{"alias":"SKI2W","entrezGeneId":"6499"},{"alias":"SKIV2","entrezGeneId":"6499"},{"alias":"SKIV2L1","entrezGeneId":"6499"},{"alias":"THES2","entrezGeneId":"6499"},{"alias":"EMC19","entrezGeneId":"6500"},{"alias":"OCP-II","entrezGeneId":"6500"},{"alias":"OCP2","entrezGeneId":"6500"},{"alias":"p19A","entrezGeneId":"6500"},{"alias":"SKP1A","entrezGeneId":"6500"},{"alias":"TCEB1L","entrezGeneId":"6500"},{"alias":"FBL1","entrezGeneId":"6502"},{"alias":"FBXL1","entrezGeneId":"6502"},{"alias":"FLB1","entrezGeneId":"6502"},{"alias":"p45","entrezGeneId":"6502"},{"alias":"SLA1","entrezGeneId":"6503"},{"alias":"SLAP","entrezGeneId":"6503"},{"alias":"CD150","entrezGeneId":"6504"},{"alias":"CDw150","entrezGeneId":"6504"},{"alias":"SLAM","entrezGeneId":"6504"},{"alias":"DCBXA","entrezGeneId":"6505"},{"alias":"EAAC1","entrezGeneId":"6505"},{"alias":"EAAT3","entrezGeneId":"6505"},{"alias":"SCZD18","entrezGeneId":"6505"},{"alias":"EAAT2","entrezGeneId":"6506"},{"alias":"EIEE41","entrezGeneId":"6506"},{"alias":"GLT-1","entrezGeneId":"6506"},{"alias":"HBGT","entrezGeneId":"6506"},{"alias":"EA6","entrezGeneId":"6507"},{"alias":"EAAT1","entrezGeneId":"6507"},{"alias":"GLAST","entrezGeneId":"6507"},{"alias":"GLAST1","entrezGeneId":"6507"},{"alias":"AE3","entrezGeneId":"6508"},{"alias":"CAE3/BAE3","entrezGeneId":"6508"},{"alias":"SLC2C","entrezGeneId":"6508"},{"alias":"ASCT1","entrezGeneId":"6509"},{"alias":"SATT","entrezGeneId":"6509"},{"alias":"SPATCCM","entrezGeneId":"6509"},{"alias":"AAAT","entrezGeneId":"6510"},{"alias":"ASCT2","entrezGeneId":"6510"},{"alias":"ATBO","entrezGeneId":"6510"},{"alias":"M7V1","entrezGeneId":"6510"},{"alias":"M7VS1","entrezGeneId":"6510"},{"alias":"R16","entrezGeneId":"6510"},{"alias":"RDRC","entrezGeneId":"6510"},{"alias":"EAAT4","entrezGeneId":"6511"},{"alias":"AAAT","entrezGeneId":"6512"},{"alias":"EAAT5","entrezGeneId":"6512"},{"alias":"CSE","entrezGeneId":"6513"},{"alias":"DYT17","entrezGeneId":"6513"},{"alias":"DYT18","entrezGeneId":"6513"},{"alias":"DYT9","entrezGeneId":"6513"},{"alias":"EIG12","entrezGeneId":"6513"},{"alias":"GLUT","entrezGeneId":"6513"},{"alias":"GLUT-1","entrezGeneId":"6513"},{"alias":"GLUT1","entrezGeneId":"6513"},{"alias":"GLUT1DS","entrezGeneId":"6513"},{"alias":"HTLVR","entrezGeneId":"6513"},{"alias":"PED","entrezGeneId":"6513"},{"alias":"SDCHCN","entrezGeneId":"6513"},{"alias":"GLUT2","entrezGeneId":"6514"},{"alias":"GLUT3","entrezGeneId":"6515"},{"alias":"GLUT4","entrezGeneId":"6517"},{"alias":"GLUT-5","entrezGeneId":"6518"},{"alias":"GLUT5","entrezGeneId":"6518"},{"alias":"ATR1","entrezGeneId":"6519"},{"alias":"CSNU1","entrezGeneId":"6519"},{"alias":"D2H","entrezGeneId":"6519"},{"alias":"NBAT","entrezGeneId":"6519"},{"alias":"RBAT","entrezGeneId":"6519"},{"alias":"4F2","entrezGeneId":"6520"},{"alias":"4F2HC","entrezGeneId":"6520"},{"alias":"4T2HC","entrezGeneId":"6520"},{"alias":"CD98","entrezGeneId":"6520"},{"alias":"CD98HC","entrezGeneId":"6520"},{"alias":"MDU1","entrezGeneId":"6520"},{"alias":"NACAE","entrezGeneId":"6520"},{"alias":"AE1","entrezGeneId":"6521"},{"alias":"BND3","entrezGeneId":"6521"},{"alias":"CD233","entrezGeneId":"6521"},{"alias":"CHC","entrezGeneId":"6521"},{"alias":"DI","entrezGeneId":"6521"},{"alias":"EMPB3","entrezGeneId":"6521"},{"alias":"EPB3","entrezGeneId":"6521"},{"alias":"FR","entrezGeneId":"6521"},{"alias":"RTA1A","entrezGeneId":"6521"},{"alias":"SAO","entrezGeneId":"6521"},{"alias":"SPH4","entrezGeneId":"6521"},{"alias":"SW","entrezGeneId":"6521"},{"alias":"WD","entrezGeneId":"6521"},{"alias":"WD1","entrezGeneId":"6521"},{"alias":"WR","entrezGeneId":"6521"},{"alias":"AE2","entrezGeneId":"6522"},{"alias":"BND3L","entrezGeneId":"6522"},{"alias":"EPB3L1","entrezGeneId":"6522"},{"alias":"HKB3","entrezGeneId":"6522"},{"alias":"NBND3","entrezGeneId":"6522"},{"alias":"D22S675","entrezGeneId":"6523"},{"alias":"NAGT","entrezGeneId":"6523"},{"alias":"SGLT1","entrezGeneId":"6523"},{"alias":"SGLT2","entrezGeneId":"6524"},{"alias":"BCW2","entrezGeneId":"6526"},{"alias":"SMIT","entrezGeneId":"6526"},{"alias":"SMIT1","entrezGeneId":"6526"},{"alias":"SMIT2","entrezGeneId":"6526"},{"alias":"DJ90G24.4","entrezGeneId":"6527"},{"alias":"SAAT1","entrezGeneId":"6527"},{"alias":"SGLT3","entrezGeneId":"6527"},{"alias":"NIS","entrezGeneId":"6528"},{"alias":"TDH1","entrezGeneId":"6528"},{"alias":"GABATHG","entrezGeneId":"6529"},{"alias":"GABATR","entrezGeneId":"6529"},{"alias":"GAT1","entrezGeneId":"6529"},{"alias":"MAE","entrezGeneId":"6529"},{"alias":"NAT1","entrezGeneId":"6530"},{"alias":"NET","entrezGeneId":"6530"},{"alias":"NET1","entrezGeneId":"6530"},{"alias":"SLC6A5","entrezGeneId":"6530"},{"alias":"DAT","entrezGeneId":"6531"},{"alias":"DAT1","entrezGeneId":"6531"},{"alias":"PKDYS","entrezGeneId":"6531"},{"alias":"5-HTT","entrezGeneId":"6532"},{"alias":"5-HTTLPR","entrezGeneId":"6532"},{"alias":"5HTT","entrezGeneId":"6532"},{"alias":"hSERT","entrezGeneId":"6532"},{"alias":"HTT","entrezGeneId":"6532"},{"alias":"OCD1","entrezGeneId":"6532"},{"alias":"SERT","entrezGeneId":"6532"},{"alias":"SERT1","entrezGeneId":"6532"},{"alias":"TAUT","entrezGeneId":"6533"},{"alias":"PROT","entrezGeneId":"6534"},{"alias":"CCDS1","entrezGeneId":"6535"},{"alias":"CRT","entrezGeneId":"6535"},{"alias":"CRTR","entrezGeneId":"6535"},{"alias":"CT1","entrezGeneId":"6535"},{"alias":"CTR5","entrezGeneId":"6535"},{"alias":"GCENSG","entrezGeneId":"6536"},{"alias":"GLYT1","entrezGeneId":"6536"},{"alias":"GAT-3","entrezGeneId":"6538"},{"alias":"GAT3","entrezGeneId":"6538"},{"alias":"GAT4","entrezGeneId":"6538"},{"alias":"BGT-1","entrezGeneId":"6539"},{"alias":"BGT1","entrezGeneId":"6539"},{"alias":"GAT2","entrezGeneId":"6539"},{"alias":"GAT-2","entrezGeneId":"6540"},{"alias":"GAT2","entrezGeneId":"6540"},{"alias":"GAT3","entrezGeneId":"6540"},{"alias":"ATRC1","entrezGeneId":"6541"},{"alias":"CAT-1","entrezGeneId":"6541"},{"alias":"ERR","entrezGeneId":"6541"},{"alias":"HCAT1","entrezGeneId":"6541"},{"alias":"REC1L","entrezGeneId":"6541"},{"alias":"ATRC2","entrezGeneId":"6542"},{"alias":"CAT2","entrezGeneId":"6542"},{"alias":"HCAT2","entrezGeneId":"6542"},{"alias":"NCX2","entrezGeneId":"6543"},{"alias":"CAT-4","entrezGeneId":"6545"},{"alias":"CAT4","entrezGeneId":"6545"},{"alias":"HCAT3","entrezGeneId":"6545"},{"alias":"VH","entrezGeneId":"6545"},{"alias":"NCX1","entrezGeneId":"6546"},{"alias":"NCX3","entrezGeneId":"6547"},{"alias":"APNH","entrezGeneId":"6548"},{"alias":"LIKNS","entrezGeneId":"6548"},{"alias":"NHE-1","entrezGeneId":"6548"},{"alias":"NHE1","entrezGeneId":"6548"},{"alias":"PPP1R143","entrezGeneId":"6548"},{"alias":"NHE2","entrezGeneId":"6549"},{"alias":"DIAR8","entrezGeneId":"6550"},{"alias":"NHE-3","entrezGeneId":"6550"},{"alias":"NHE3","entrezGeneId":"6550"},{"alias":"NHE3P","entrezGeneId":"6551"},{"alias":"SLC9A3P","entrezGeneId":"6551"},{"alias":"SLC9A3P4","entrezGeneId":"6551"},{"alias":"NHE5","entrezGeneId":"6553"},{"alias":"NTCP","entrezGeneId":"6554"},{"alias":"ASBT","entrezGeneId":"6555"},{"alias":"IBAT","entrezGeneId":"6555"},{"alias":"ISBT","entrezGeneId":"6555"},{"alias":"NTCP2","entrezGeneId":"6555"},{"alias":"PBAM","entrezGeneId":"6555"},{"alias":"LSH","entrezGeneId":"6556"},{"alias":"NRAMP","entrezGeneId":"6556"},{"alias":"NRAMP1","entrezGeneId":"6556"},{"alias":"BSC1","entrezGeneId":"6557"},{"alias":"NKCC2","entrezGeneId":"6557"},{"alias":"BSC","entrezGeneId":"6558"},{"alias":"BSC2","entrezGeneId":"6558"},{"alias":"NKCC1","entrezGeneId":"6558"},{"alias":"PPP1R141","entrezGeneId":"6558"},{"alias":"NCC","entrezGeneId":"6559"},{"alias":"NCCT","entrezGeneId":"6559"},{"alias":"TSC","entrezGeneId":"6559"},{"alias":"CTC-479C5.17","entrezGeneId":"6560"},{"alias":"hKCC1","entrezGeneId":"6560"},{"alias":"KCC1","entrezGeneId":"6560"},{"alias":"NAS1","entrezGeneId":"6561"},{"alias":"NaSi-1","entrezGeneId":"6561"},{"alias":"HsT1341","entrezGeneId":"6563"},{"alias":"HUT11","entrezGeneId":"6563"},{"alias":"JK","entrezGeneId":"6563"},{"alias":"RACH1","entrezGeneId":"6563"},{"alias":"RACH2","entrezGeneId":"6563"},{"alias":"UT-B1","entrezGeneId":"6563"},{"alias":"UT1","entrezGeneId":"6563"},{"alias":"UTE","entrezGeneId":"6563"},{"alias":"HPECT1","entrezGeneId":"6564"},{"alias":"HPEPT1","entrezGeneId":"6564"},{"alias":"PEPT1","entrezGeneId":"6564"},{"alias":"PEPT2","entrezGeneId":"6565"},{"alias":"HHF7","entrezGeneId":"6566"},{"alias":"MCT","entrezGeneId":"6566"},{"alias":"MCT1","entrezGeneId":"6566"},{"alias":"MCT1D","entrezGeneId":"6566"},{"alias":"AHDS","entrezGeneId":"6567"},{"alias":"DXS128","entrezGeneId":"6567"},{"alias":"DXS128E","entrezGeneId":"6567"},{"alias":"MCT 7","entrezGeneId":"6567"},{"alias":"MCT 8","entrezGeneId":"6567"},{"alias":"MCT7","entrezGeneId":"6567"},{"alias":"MCT8","entrezGeneId":"6567"},{"alias":"MRX22","entrezGeneId":"6567"},{"alias":"XPCT","entrezGeneId":"6567"},{"alias":"NAPI-1","entrezGeneId":"6568"},{"alias":"NPT-1","entrezGeneId":"6568"},{"alias":"NPT1","entrezGeneId":"6568"},{"alias":"FRTS2","entrezGeneId":"6569"},{"alias":"HCINF2","entrezGeneId":"6569"},{"alias":"NAPI-3","entrezGeneId":"6569"},{"alias":"NPHLOP1","entrezGeneId":"6569"},{"alias":"NPT2","entrezGeneId":"6569"},{"alias":"NPTIIa","entrezGeneId":"6569"},{"alias":"SLC11","entrezGeneId":"6569"},{"alias":"SLC17A2","entrezGeneId":"6569"},{"alias":"CGAT","entrezGeneId":"6570"},{"alias":"VAT1","entrezGeneId":"6570"},{"alias":"VMAT1","entrezGeneId":"6570"},{"alias":"SVAT","entrezGeneId":"6571"},{"alias":"SVMT","entrezGeneId":"6571"},{"alias":"VAT2","entrezGeneId":"6571"},{"alias":"VMAT2","entrezGeneId":"6571"},{"alias":"CMS21","entrezGeneId":"6572"},{"alias":"VACHT","entrezGeneId":"6572"},{"alias":"CHMD","entrezGeneId":"6573"},{"alias":"FOLT","entrezGeneId":"6573"},{"alias":"IFC1","entrezGeneId":"6573"},{"alias":"REFC","entrezGeneId":"6573"},{"alias":"RFC1","entrezGeneId":"6573"},{"alias":"Glvr-1","entrezGeneId":"6574"},{"alias":"GLVR1","entrezGeneId":"6574"},{"alias":"PiT-1","entrezGeneId":"6574"},{"alias":"PIT1","entrezGeneId":"6574"},{"alias":"GLVR-2","entrezGeneId":"6575"},{"alias":"GLVR2","entrezGeneId":"6575"},{"alias":"IBGC1","entrezGeneId":"6575"},{"alias":"IBGC3","entrezGeneId":"6575"},{"alias":"MLVAR","entrezGeneId":"6575"},{"alias":"PIT-2","entrezGeneId":"6575"},{"alias":"PIT2","entrezGeneId":"6575"},{"alias":"Ram-1","entrezGeneId":"6575"},{"alias":"RAM1","entrezGeneId":"6575"},{"alias":"CTP","entrezGeneId":"6576"},{"alias":"D2L2AD","entrezGeneId":"6576"},{"alias":"SEA","entrezGeneId":"6576"},{"alias":"SLC20A3","entrezGeneId":"6576"},{"alias":"MATR1","entrezGeneId":"6578"},{"alias":"OATP2A1","entrezGeneId":"6578"},{"alias":"PGT","entrezGeneId":"6578"},{"alias":"PHOAR2","entrezGeneId":"6578"},{"alias":"SLC21A2","entrezGeneId":"6578"},{"alias":"OATP","entrezGeneId":"6579"},{"alias":"OATP-A","entrezGeneId":"6579"},{"alias":"OATP1A2","entrezGeneId":"6579"},{"alias":"SLC21A3","entrezGeneId":"6579"},{"alias":"HOCT1","entrezGeneId":"6580"},{"alias":"OCT1","entrezGeneId":"6580"},{"alias":"oct1_cds","entrezGeneId":"6580"},{"alias":"EMT","entrezGeneId":"6581"},{"alias":"EMTH","entrezGeneId":"6581"},{"alias":"OCT3","entrezGeneId":"6581"},{"alias":"OCT2","entrezGeneId":"6582"},{"alias":"DFNB60","entrezGeneId":"6583"},{"alias":"OCTN1","entrezGeneId":"6583"},{"alias":"CDSP","entrezGeneId":"6584"},{"alias":"OCTN2","entrezGeneId":"6584"},{"alias":"MEGF4","entrezGeneId":"6585"},{"alias":"SLIL1","entrezGeneId":"6585"},{"alias":"SLIT-1","entrezGeneId":"6585"},{"alias":"SLIT3","entrezGeneId":"6585"},{"alias":"MEGF5","entrezGeneId":"6586"},{"alias":"SLIL2","entrezGeneId":"6586"},{"alias":"Slit-3","entrezGeneId":"6586"},{"alias":"SLIT1","entrezGeneId":"6586"},{"alias":"slit2","entrezGeneId":"6586"},{"alias":"ALK1","entrezGeneId":"6590"},{"alias":"ALP","entrezGeneId":"6590"},{"alias":"BLPI","entrezGeneId":"6590"},{"alias":"HUSI","entrezGeneId":"6590"},{"alias":"HUSI-I","entrezGeneId":"6590"},{"alias":"MPI","entrezGeneId":"6590"},{"alias":"WAP4","entrezGeneId":"6590"},{"alias":"WFDC4","entrezGeneId":"6590"},{"alias":"SLUG","entrezGeneId":"6591"},{"alias":"SLUGH","entrezGeneId":"6591"},{"alias":"SLUGH1","entrezGeneId":"6591"},{"alias":"SNAIL2","entrezGeneId":"6591"},{"alias":"WS2D","entrezGeneId":"6591"},{"alias":"hSNF2L","entrezGeneId":"6594"},{"alias":"ISWI","entrezGeneId":"6594"},{"alias":"NURF140","entrezGeneId":"6594"},{"alias":"SNF2L","entrezGeneId":"6594"},{"alias":"SNF2L1","entrezGeneId":"6594"},{"alias":"SNF2LB","entrezGeneId":"6594"},{"alias":"SNF2LT","entrezGeneId":"6594"},{"alias":"SWI","entrezGeneId":"6594"},{"alias":"SWI2","entrezGeneId":"6594"},{"alias":"BAF190","entrezGeneId":"6595"},{"alias":"BRM","entrezGeneId":"6595"},{"alias":"hBRM","entrezGeneId":"6595"},{"alias":"hSNF2a","entrezGeneId":"6595"},{"alias":"NCBRS","entrezGeneId":"6595"},{"alias":"SNF2","entrezGeneId":"6595"},{"alias":"SNF2L2","entrezGeneId":"6595"},{"alias":"SNF2LA","entrezGeneId":"6595"},{"alias":"Sth1p","entrezGeneId":"6595"},{"alias":"SWI2","entrezGeneId":"6595"},{"alias":"HIP116","entrezGeneId":"6596"},{"alias":"HIP116A","entrezGeneId":"6596"},{"alias":"HLTF1","entrezGeneId":"6596"},{"alias":"RNF80","entrezGeneId":"6596"},{"alias":"SMARCA3","entrezGeneId":"6596"},{"alias":"SNF2L3","entrezGeneId":"6596"},{"alias":"ZBU1","entrezGeneId":"6596"},{"alias":"BAF190","entrezGeneId":"6597"},{"alias":"BAF190A","entrezGeneId":"6597"},{"alias":"BRG1","entrezGeneId":"6597"},{"alias":"CSS4","entrezGeneId":"6597"},{"alias":"hSNF2b","entrezGeneId":"6597"},{"alias":"MRD16","entrezGeneId":"6597"},{"alias":"RTPS2","entrezGeneId":"6597"},{"alias":"SNF2","entrezGeneId":"6597"},{"alias":"SNF2L4","entrezGeneId":"6597"},{"alias":"SNF2LB","entrezGeneId":"6597"},{"alias":"SWI2","entrezGeneId":"6597"},{"alias":"BAF47","entrezGeneId":"6598"},{"alias":"CSS3","entrezGeneId":"6598"},{"alias":"hSNFS","entrezGeneId":"6598"},{"alias":"INI1","entrezGeneId":"6598"},{"alias":"MRD15","entrezGeneId":"6598"},{"alias":"PPP1R144","entrezGeneId":"6598"},{"alias":"RDT","entrezGeneId":"6598"},{"alias":"RTPS1","entrezGeneId":"6598"},{"alias":"Sfh1p","entrezGeneId":"6598"},{"alias":"SNF5","entrezGeneId":"6598"},{"alias":"SNF5L1","entrezGeneId":"6598"},{"alias":"Snr1","entrezGeneId":"6598"},{"alias":"SWNTS1","entrezGeneId":"6598"},{"alias":"BAF155","entrezGeneId":"6599"},{"alias":"CRACC1","entrezGeneId":"6599"},{"alias":"Rsc8","entrezGeneId":"6599"},{"alias":"SRG3","entrezGeneId":"6599"},{"alias":"SWI3","entrezGeneId":"6599"},{"alias":"BAF170","entrezGeneId":"6601"},{"alias":"CRACC2","entrezGeneId":"6601"},{"alias":"Rsc8","entrezGeneId":"6601"},{"alias":"BAF60A","entrezGeneId":"6602"},{"alias":"CRACD1","entrezGeneId":"6602"},{"alias":"Rsc6p","entrezGeneId":"6602"},{"alias":"BAF60B","entrezGeneId":"6603"},{"alias":"CRACD2","entrezGeneId":"6603"},{"alias":"PRO2451","entrezGeneId":"6603"},{"alias":"Rsc6p","entrezGeneId":"6603"},{"alias":"SGD2","entrezGeneId":"6603"},{"alias":"BAF60C","entrezGeneId":"6604"},{"alias":"CRACD3","entrezGeneId":"6604"},{"alias":"Rsc6p","entrezGeneId":"6604"},{"alias":"BAF57","entrezGeneId":"6605"},{"alias":"CSS5","entrezGeneId":"6605"},{"alias":"BCD541","entrezGeneId":"6606"},{"alias":"GEMIN1","entrezGeneId":"6606"},{"alias":"SMA","entrezGeneId":"6606"},{"alias":"SMA1","entrezGeneId":"6606"},{"alias":"SMA2","entrezGeneId":"6606"},{"alias":"SMA3","entrezGeneId":"6606"},{"alias":"SMA4","entrezGeneId":"6606"},{"alias":"SMA@","entrezGeneId":"6606"},{"alias":"SMN","entrezGeneId":"6606"},{"alias":"SMNT","entrezGeneId":"6606"},{"alias":"T-BCD541","entrezGeneId":"6606"},{"alias":"TDRD16A","entrezGeneId":"6606"},{"alias":"BCD541","entrezGeneId":"6607"},{"alias":"C-BCD541","entrezGeneId":"6607"},{"alias":"GEMIN1","entrezGeneId":"6607"},{"alias":"SMNC","entrezGeneId":"6607"},{"alias":"TDRD16B","entrezGeneId":"6607"},{"alias":"CRJS","entrezGeneId":"6608"},{"alias":"FZD11","entrezGeneId":"6608"},{"alias":"Gx","entrezGeneId":"6608"},{"alias":"SMOH","entrezGeneId":"6608"},{"alias":"ASM","entrezGeneId":"6609"},{"alias":"ASMASE","entrezGeneId":"6609"},{"alias":"NPD","entrezGeneId":"6609"},{"alias":"ISC1","entrezGeneId":"6610"},{"alias":"NSMASE","entrezGeneId":"6610"},{"alias":"NSMASE1","entrezGeneId":"6610"},{"alias":"MRSR","entrezGeneId":"6611"},{"alias":"SPMSY","entrezGeneId":"6611"},{"alias":"SpS","entrezGeneId":"6611"},{"alias":"SRS","entrezGeneId":"6611"},{"alias":"SMT3A","entrezGeneId":"6612"},{"alias":"Smt3B","entrezGeneId":"6612"},{"alias":"SMT3H1","entrezGeneId":"6612"},{"alias":"SUMO-3","entrezGeneId":"6612"},{"alias":"HSMT3","entrezGeneId":"6613"},{"alias":"Smt3A","entrezGeneId":"6613"},{"alias":"SMT3B","entrezGeneId":"6613"},{"alias":"SMT3H2","entrezGeneId":"6613"},{"alias":"SUMO3","entrezGeneId":"6613"},{"alias":"CD169","entrezGeneId":"6614"},{"alias":"dJ1009E24.1","entrezGeneId":"6614"},{"alias":"SIGLEC-1","entrezGeneId":"6614"},{"alias":"SN","entrezGeneId":"6614"},{"alias":"dJ710H13.1","entrezGeneId":"6615"},{"alias":"SLUGH2","entrezGeneId":"6615"},{"alias":"SNA","entrezGeneId":"6615"},{"alias":"SNAH","entrezGeneId":"6615"},{"alias":"SNAIL","entrezGeneId":"6615"},{"alias":"SNAIL1","entrezGeneId":"6615"},{"alias":"bA416N4.2","entrezGeneId":"6616"},{"alias":"CMS18","entrezGeneId":"6616"},{"alias":"dJ1068F16.2","entrezGeneId":"6616"},{"alias":"RIC-4","entrezGeneId":"6616"},{"alias":"RIC4","entrezGeneId":"6616"},{"alias":"SEC9","entrezGeneId":"6616"},{"alias":"SNAP","entrezGeneId":"6616"},{"alias":"SNAP-25","entrezGeneId":"6616"},{"alias":"SUP","entrezGeneId":"6616"},{"alias":"PTFgamma","entrezGeneId":"6617"},{"alias":"SNAP43","entrezGeneId":"6617"},{"alias":"PTFDELTA","entrezGeneId":"6618"},{"alias":"SNAP45","entrezGeneId":"6618"},{"alias":"PTFbeta","entrezGeneId":"6619"},{"alias":"SNAP50","entrezGeneId":"6619"},{"alias":"PTFalpha","entrezGeneId":"6621"},{"alias":"SNAP190","entrezGeneId":"6621"},{"alias":"NACP","entrezGeneId":"6622"},{"alias":"PARK1","entrezGeneId":"6622"},{"alias":"PARK4","entrezGeneId":"6622"},{"alias":"PD1","entrezGeneId":"6622"},{"alias":"BCSG1","entrezGeneId":"6623"},{"alias":"SR","entrezGeneId":"6623"},{"alias":"FAN1","entrezGeneId":"6624"},{"alias":"HSN","entrezGeneId":"6624"},{"alias":"p55","entrezGeneId":"6624"},{"alias":"SNL","entrezGeneId":"6624"},{"alias":"RNPU1Z","entrezGeneId":"6625"},{"alias":"RPU1","entrezGeneId":"6625"},{"alias":"Snp1","entrezGeneId":"6625"},{"alias":"SNRP70","entrezGeneId":"6625"},{"alias":"U1-70K","entrezGeneId":"6625"},{"alias":"U170K","entrezGeneId":"6625"},{"alias":"U1AP","entrezGeneId":"6625"},{"alias":"U1RNP","entrezGeneId":"6625"},{"alias":"Mud1","entrezGeneId":"6626"},{"alias":"U1-A","entrezGeneId":"6626"},{"alias":"U1A","entrezGeneId":"6626"},{"alias":"Lea1","entrezGeneId":"6627"},{"alias":"U2A'","entrezGeneId":"6627"},{"alias":"CCMS","entrezGeneId":"6628"},{"alias":"COD","entrezGeneId":"6628"},{"alias":"Sm-B/B'","entrezGeneId":"6628"},{"alias":"SmB/B'","entrezGeneId":"6628"},{"alias":"SmB/SmB'","entrezGeneId":"6628"},{"alias":"snRNP-B","entrezGeneId":"6628"},{"alias":"SNRPB1","entrezGeneId":"6628"},{"alias":"Msl1","entrezGeneId":"6629"},{"alias":"U2B''","entrezGeneId":"6629"},{"alias":"U1C","entrezGeneId":"6631"},{"alias":"Yhc1","entrezGeneId":"6631"},{"alias":"HsT2456","entrezGeneId":"6632"},{"alias":"Sm-D1","entrezGeneId":"6632"},{"alias":"SMD1","entrezGeneId":"6632"},{"alias":"SNRPD","entrezGeneId":"6632"},{"alias":"Sm-D2","entrezGeneId":"6633"},{"alias":"SMD2","entrezGeneId":"6633"},{"alias":"SNRPD1","entrezGeneId":"6633"},{"alias":"Sm-D3","entrezGeneId":"6634"},{"alias":"SMD3","entrezGeneId":"6634"},{"alias":"HYPT11","entrezGeneId":"6635"},{"alias":"Sm-E","entrezGeneId":"6635"},{"alias":"SME","entrezGeneId":"6635"},{"alias":"snRNP-E","entrezGeneId":"6635"},{"alias":"Sm-F","entrezGeneId":"6636"},{"alias":"SMF","entrezGeneId":"6636"},{"alias":"snRNP-F","entrezGeneId":"6636"},{"alias":"Sm-G","entrezGeneId":"6637"},{"alias":"SMG","entrezGeneId":"6637"},{"alias":"HCERN3","entrezGeneId":"6638"},{"alias":"PWCR","entrezGeneId":"6638"},{"alias":"RT-LI","entrezGeneId":"6638"},{"alias":"SM-D","entrezGeneId":"6638"},{"alias":"sm-N","entrezGeneId":"6638"},{"alias":"SMN","entrezGeneId":"6638"},{"alias":"SNRNP-N","entrezGeneId":"6638"},{"alias":"SNURF-SNRPN","entrezGeneId":"6638"},{"alias":"dJ1187J4.5","entrezGeneId":"6640"},{"alias":"LQT12","entrezGeneId":"6640"},{"alias":"SNT1","entrezGeneId":"6640"},{"alias":"TACIP1","entrezGeneId":"6640"},{"alias":"59-DAP","entrezGeneId":"6641"},{"alias":"A1B","entrezGeneId":"6641"},{"alias":"BSYN2","entrezGeneId":"6641"},{"alias":"DAPA1B","entrezGeneId":"6641"},{"alias":"SNT2","entrezGeneId":"6641"},{"alias":"SNT2B1","entrezGeneId":"6641"},{"alias":"TIP-43","entrezGeneId":"6641"},{"alias":"HsT17379","entrezGeneId":"6642"},{"alias":"VPS5","entrezGeneId":"6642"},{"alias":"TRG-9","entrezGeneId":"6643"},{"alias":"SRIL","entrezGeneId":"6644"},{"alias":"D16S2531E","entrezGeneId":"6645"},{"alias":"EST25263","entrezGeneId":"6645"},{"alias":"SNT2B2","entrezGeneId":"6645"},{"alias":"SNT3","entrezGeneId":"6645"},{"alias":"SNTL","entrezGeneId":"6645"},{"alias":"ACACT","entrezGeneId":"6646"},{"alias":"ACAT","entrezGeneId":"6646"},{"alias":"ACAT-1","entrezGeneId":"6646"},{"alias":"ACAT1","entrezGeneId":"6646"},{"alias":"SOAT","entrezGeneId":"6646"},{"alias":"STAT","entrezGeneId":"6646"},{"alias":"ALS","entrezGeneId":"6647"},{"alias":"ALS1","entrezGeneId":"6647"},{"alias":"HEL-S-44","entrezGeneId":"6647"},{"alias":"homodimer","entrezGeneId":"6647"},{"alias":"hSod1","entrezGeneId":"6647"},{"alias":"IPOA","entrezGeneId":"6647"},{"alias":"SOD","entrezGeneId":"6647"},{"alias":"IPO-B","entrezGeneId":"6648"},{"alias":"IPOB","entrezGeneId":"6648"},{"alias":"Mn-SOD","entrezGeneId":"6648"},{"alias":"MNSOD","entrezGeneId":"6648"},{"alias":"MVCD6","entrezGeneId":"6648"},{"alias":"EC-SOD","entrezGeneId":"6649"},{"alias":"SOLH","entrezGeneId":"6650"},{"alias":"BASS1","entrezGeneId":"6651"},{"alias":"C21orf50","entrezGeneId":"6651"},{"alias":"DBP-5","entrezGeneId":"6651"},{"alias":"NREBP","entrezGeneId":"6651"},{"alias":"SON3","entrezGeneId":"6651"},{"alias":"TOKIMS","entrezGeneId":"6651"},{"alias":"HEL-S-95n","entrezGeneId":"6652"},{"alias":"SORD1","entrezGeneId":"6652"},{"alias":"C11orf32","entrezGeneId":"6653"},{"alias":"gp250","entrezGeneId":"6653"},{"alias":"LR11","entrezGeneId":"6653"},{"alias":"LRP9","entrezGeneId":"6653"},{"alias":"SORLA","entrezGeneId":"6653"},{"alias":"SorLA-1","entrezGeneId":"6653"},{"alias":"GF1","entrezGeneId":"6654"},{"alias":"GGF1","entrezGeneId":"6654"},{"alias":"GINGF","entrezGeneId":"6654"},{"alias":"HGF","entrezGeneId":"6654"},{"alias":"NS4","entrezGeneId":"6654"},{"alias":"SOS-1","entrezGeneId":"6654"},{"alias":"NS9","entrezGeneId":"6655"},{"alias":"SOS-2","entrezGeneId":"6655"},{"alias":"ANOP3","entrezGeneId":"6657"},{"alias":"MCOPS3","entrezGeneId":"6657"},{"alias":"GHDX","entrezGeneId":"6658"},{"alias":"MRGH","entrezGeneId":"6658"},{"alias":"PHP","entrezGeneId":"6658"},{"alias":"PHPX","entrezGeneId":"6658"},{"alias":"SOXB","entrezGeneId":"6658"},{"alias":"EVI16","entrezGeneId":"6659"},{"alias":"L-SOX5","entrezGeneId":"6660"},{"alias":"L-SOX5B","entrezGeneId":"6660"},{"alias":"L-SOX5F","entrezGeneId":"6660"},{"alias":"LAMSHF","entrezGeneId":"6660"},{"alias":"SOX29","entrezGeneId":"6661"},{"alias":"SOX5P","entrezGeneId":"6661"},{"alias":"CMD1","entrezGeneId":"6662"},{"alias":"CMPD1","entrezGeneId":"6662"},{"alias":"SRA1","entrezGeneId":"6662"},{"alias":"SRXX2","entrezGeneId":"6662"},{"alias":"SRXY10","entrezGeneId":"6662"},{"alias":"DOM","entrezGeneId":"6663"},{"alias":"PCWH","entrezGeneId":"6663"},{"alias":"WS2E","entrezGeneId":"6663"},{"alias":"WS4","entrezGeneId":"6663"},{"alias":"WS4C","entrezGeneId":"6663"},{"alias":"MRD27","entrezGeneId":"6664"},{"alias":"SOX20","entrezGeneId":"6665"},{"alias":"SOX26","entrezGeneId":"6665"},{"alias":"SOX27","entrezGeneId":"6665"},{"alias":"SOX22","entrezGeneId":"6666"},{"alias":"SPR2","entrezGeneId":"6670"},{"alias":"HF1B","entrezGeneId":"6671"},{"alias":"SPR-1","entrezGeneId":"6671"},{"alias":"lysp100b","entrezGeneId":"6672"},{"alias":"CILD28","entrezGeneId":"6674"},{"alias":"CT140","entrezGeneId":"6674"},{"alias":"HEL-S-268","entrezGeneId":"6674"},{"alias":"HSD-3.8","entrezGeneId":"6674"},{"alias":"SP75","entrezGeneId":"6674"},{"alias":"TPIS","entrezGeneId":"6674"},{"alias":"AGX","entrezGeneId":"6675"},{"alias":"AGX1","entrezGeneId":"6675"},{"alias":"AGX2","entrezGeneId":"6675"},{"alias":"SPAG2","entrezGeneId":"6675"},{"alias":"CT127","entrezGeneId":"6676"},{"alias":"SUN4","entrezGeneId":"6676"},{"alias":"HEL-S-96n","entrezGeneId":"6677"},{"alias":"HYA1","entrezGeneId":"6677"},{"alias":"HYAL1","entrezGeneId":"6677"},{"alias":"HYAL3","entrezGeneId":"6677"},{"alias":"HYAL5","entrezGeneId":"6677"},{"alias":"PH-20","entrezGeneId":"6677"},{"alias":"PH20","entrezGeneId":"6677"},{"alias":"SPAG15","entrezGeneId":"6677"},{"alias":"BM-40","entrezGeneId":"6678"},{"alias":"OI17","entrezGeneId":"6678"},{"alias":"ON","entrezGeneId":"6678"},{"alias":"ADPSP","entrezGeneId":"6683"},{"alias":"FSP2","entrezGeneId":"6683"},{"alias":"SPG4","entrezGeneId":"6683"},{"alias":"CAR","entrezGeneId":"6687"},{"alias":"CMAR","entrezGeneId":"6687"},{"alias":"PGN","entrezGeneId":"6687"},{"alias":"SPG5C","entrezGeneId":"6687"},{"alias":"OF","entrezGeneId":"6688"},{"alias":"PU.1","entrezGeneId":"6688"},{"alias":"SFPI1","entrezGeneId":"6688"},{"alias":"SPI-1","entrezGeneId":"6688"},{"alias":"SPI-A","entrezGeneId":"6688"},{"alias":"SPI-B","entrezGeneId":"6689"},{"alias":"PCTT","entrezGeneId":"6690"},{"alias":"PSTI","entrezGeneId":"6690"},{"alias":"Spink3","entrezGeneId":"6690"},{"alias":"TATI","entrezGeneId":"6690"},{"alias":"TCP","entrezGeneId":"6690"},{"alias":"HUSI-II","entrezGeneId":"6691"},{"alias":"HAI","entrezGeneId":"6692"},{"alias":"HAI1","entrezGeneId":"6692"},{"alias":"MANSC2","entrezGeneId":"6692"},{"alias":"CD43","entrezGeneId":"6693"},{"alias":"GALGP","entrezGeneId":"6693"},{"alias":"GPL115","entrezGeneId":"6693"},{"alias":"LSN","entrezGeneId":"6693"},{"alias":"SPP-24","entrezGeneId":"6694"},{"alias":"SPP24","entrezGeneId":"6694"},{"alias":"SPOCK","entrezGeneId":"6695"},{"alias":"TESTICAN","entrezGeneId":"6695"},{"alias":"TIC1","entrezGeneId":"6695"},{"alias":"BNSP","entrezGeneId":"6696"},{"alias":"BSPI","entrezGeneId":"6696"},{"alias":"ETA-1","entrezGeneId":"6696"},{"alias":"OPN","entrezGeneId":"6696"},{"alias":"SDR38C1","entrezGeneId":"6697"},{"alias":"SPRK","entrezGeneId":"6698"},{"alias":"CORNIFIN","entrezGeneId":"6699"},{"alias":"GADD33","entrezGeneId":"6699"},{"alias":"SPR-IB","entrezGeneId":"6699"},{"alias":"SPRR1","entrezGeneId":"6699"},{"alias":"EL2","entrezGeneId":"6708"},{"alias":"HPP","entrezGeneId":"6708"},{"alias":"HS3","entrezGeneId":"6708"},{"alias":"SPH3","entrezGeneId":"6708"},{"alias":"SPTA","entrezGeneId":"6708"},{"alias":"EIEE5","entrezGeneId":"6709"},{"alias":"NEAS","entrezGeneId":"6709"},{"alias":"SPTA2","entrezGeneId":"6709"},{"alias":"EL3","entrezGeneId":"6710"},{"alias":"HS2","entrezGeneId":"6710"},{"alias":"HSPTB1","entrezGeneId":"6710"},{"alias":"SPH2","entrezGeneId":"6710"},{"alias":"betaSpII","entrezGeneId":"6711"},{"alias":"ELF","entrezGeneId":"6711"},{"alias":"HEL102","entrezGeneId":"6711"},{"alias":"SPTB2","entrezGeneId":"6711"},{"alias":"GTRAP41","entrezGeneId":"6712"},{"alias":"SCA5","entrezGeneId":"6712"},{"alias":"SCAR14","entrezGeneId":"6712"},{"alias":"ASV","entrezGeneId":"6714"},{"alias":"c-SRC","entrezGeneId":"6714"},{"alias":"p60-Src","entrezGeneId":"6714"},{"alias":"SRC1","entrezGeneId":"6714"},{"alias":"THC6","entrezGeneId":"6714"},{"alias":"S5AR 1","entrezGeneId":"6715"},{"alias":"CP-22","entrezGeneId":"6717"},{"alias":"CP22","entrezGeneId":"6717"},{"alias":"SCN","entrezGeneId":"6717"},{"alias":"V19","entrezGeneId":"6717"},{"alias":"3o5bred","entrezGeneId":"6718"},{"alias":"CBAS2","entrezGeneId":"6718"},{"alias":"SRD5B1","entrezGeneId":"6718"},{"alias":"SRD5AP1","entrezGeneId":"6719"},{"alias":"bHLHd1","entrezGeneId":"6720"},{"alias":"SREBP1","entrezGeneId":"6720"},{"alias":"bHLHd2","entrezGeneId":"6721"},{"alias":"SREBP-2","entrezGeneId":"6721"},{"alias":"SREBP2","entrezGeneId":"6721"},{"alias":"MCM1","entrezGeneId":"6722"},{"alias":"PAPT","entrezGeneId":"6723"},{"alias":"SPDSY","entrezGeneId":"6723"},{"alias":"SPS1","entrezGeneId":"6723"},{"alias":"SRML1","entrezGeneId":"6723"},{"alias":"C20orf148","entrezGeneId":"6725"},{"alias":"dJ697K14.1","entrezGeneId":"6725"},{"alias":"PTK70","entrezGeneId":"6725"},{"alias":"SRM","entrezGeneId":"6725"},{"alias":"ALURBP","entrezGeneId":"6726"},{"alias":"ALURBP","entrezGeneId":"6727"},{"alias":"BMFF","entrezGeneId":"6731"},{"alias":"BMFS1","entrezGeneId":"6731"},{"alias":"HEL103","entrezGeneId":"6731"},{"alias":"SFRSK1","entrezGeneId":"6732"},{"alias":"SFRSK2","entrezGeneId":"6733"},{"alias":"DP","entrezGeneId":"6734"},{"alias":"Sralpha","entrezGeneId":"6734"},{"alias":"SRPR","entrezGeneId":"6734"},{"alias":"SRXX1","entrezGeneId":"6736"},{"alias":"SRXY1","entrezGeneId":"6736"},{"alias":"TDF","entrezGeneId":"6736"},{"alias":"TDY","entrezGeneId":"6736"},{"alias":"RNF81","entrezGeneId":"6737"},{"alias":"Ro/SSA","entrezGeneId":"6737"},{"alias":"RO52","entrezGeneId":"6737"},{"alias":"SSA","entrezGeneId":"6737"},{"alias":"SSA1","entrezGeneId":"6737"},{"alias":"RO60","entrezGeneId":"6738"},{"alias":"RORNP","entrezGeneId":"6738"},{"alias":"SSA2","entrezGeneId":"6738"},{"alias":"GLV","entrezGeneId":"6739"},{"alias":"La","entrezGeneId":"6741"},{"alias":"La/SSB","entrezGeneId":"6741"},{"alias":"LARP3","entrezGeneId":"6741"},{"alias":"Mt-SSB","entrezGeneId":"6742"},{"alias":"mtSSB","entrezGeneId":"6742"},{"alias":"SOSS-B1","entrezGeneId":"6742"},{"alias":"SSBP","entrezGeneId":"6742"},{"alias":"CS-1","entrezGeneId":"6744"},{"alias":"CS1","entrezGeneId":"6744"},{"alias":"KRAP","entrezGeneId":"6744"},{"alias":"SPAG13","entrezGeneId":"6744"},{"alias":"TRAPA","entrezGeneId":"6745"},{"alias":"HSD25","entrezGeneId":"6746"},{"alias":"TLAP","entrezGeneId":"6746"},{"alias":"TRAP-BETA","entrezGeneId":"6746"},{"alias":"TRAPB","entrezGeneId":"6746"},{"alias":"TRAPG","entrezGeneId":"6747"},{"alias":"CDG1Y","entrezGeneId":"6748"},{"alias":"TRAPD","entrezGeneId":"6748"},{"alias":"FACT","entrezGeneId":"6749"},{"alias":"FACT80","entrezGeneId":"6749"},{"alias":"T160","entrezGeneId":"6749"},{"alias":"SMST","entrezGeneId":"6750"},{"alias":"SRIF-2","entrezGeneId":"6751"},{"alias":"SS-1-R","entrezGeneId":"6751"},{"alias":"SS1-R","entrezGeneId":"6751"},{"alias":"SS1R","entrezGeneId":"6751"},{"alias":"SS-3-R","entrezGeneId":"6753"},{"alias":"SS3-R","entrezGeneId":"6753"},{"alias":"SS3R","entrezGeneId":"6753"},{"alias":"SSR-28","entrezGeneId":"6753"},{"alias":"SS-4-R","entrezGeneId":"6754"},{"alias":"SS4-R","entrezGeneId":"6754"},{"alias":"SS4R","entrezGeneId":"6754"},{"alias":"SS-5-R","entrezGeneId":"6755"},{"alias":"CT5.1","entrezGeneId":"6756"},{"alias":"SSRC","entrezGeneId":"6756"},{"alias":"CT5.2","entrezGeneId":"6757"},{"alias":"CT5.2A","entrezGeneId":"6757"},{"alias":"HD21","entrezGeneId":"6757"},{"alias":"HOM-MEL-40","entrezGeneId":"6757"},{"alias":"SSX","entrezGeneId":"6757"},{"alias":"CT5.4","entrezGeneId":"6759"},{"alias":"SSXT","entrezGeneId":"6760"},{"alias":"SYT","entrezGeneId":"6760"},{"alias":"CCTS","entrezGeneId":"6762"},{"alias":"TSHL","entrezGeneId":"6762"},{"alias":"DENND2B","entrezGeneId":"6764"},{"alias":"HTS1","entrezGeneId":"6764"},{"alias":"p126","entrezGeneId":"6764"},{"alias":"OVC","entrezGeneId":"6765"},{"alias":"OVCS","entrezGeneId":"6765"},{"alias":"AAG2","entrezGeneId":"6767"},{"alias":"FAM10A1","entrezGeneId":"6767"},{"alias":"FAM10A4","entrezGeneId":"6767"},{"alias":"HIP","entrezGeneId":"6767"},{"alias":"HOP","entrezGeneId":"6767"},{"alias":"HSPABP","entrezGeneId":"6767"},{"alias":"HSPABP1","entrezGeneId":"6767"},{"alias":"P48","entrezGeneId":"6767"},{"alias":"PRO0786","entrezGeneId":"6767"},{"alias":"SNC6","entrezGeneId":"6767"},{"alias":"ARCI11","entrezGeneId":"6768"},{"alias":"HAI","entrezGeneId":"6768"},{"alias":"MT-SP1","entrezGeneId":"6768"},{"alias":"MTSP1","entrezGeneId":"6768"},{"alias":"PRSS14","entrezGeneId":"6768"},{"alias":"SNC19","entrezGeneId":"6768"},{"alias":"TADG15","entrezGeneId":"6768"},{"alias":"TMPRSS14","entrezGeneId":"6768"},{"alias":"STAC1","entrezGeneId":"6769"},{"alias":"STARD1","entrezGeneId":"6770"},{"alias":"STARD1P1","entrezGeneId":"6771"},{"alias":"CANDF7","entrezGeneId":"6772"},{"alias":"IMD31A","entrezGeneId":"6772"},{"alias":"IMD31B","entrezGeneId":"6772"},{"alias":"IMD31C","entrezGeneId":"6772"},{"alias":"ISGF-3","entrezGeneId":"6772"},{"alias":"STAT91","entrezGeneId":"6772"},{"alias":"IMD44","entrezGeneId":"6773"},{"alias":"ISGF-3","entrezGeneId":"6773"},{"alias":"P113","entrezGeneId":"6773"},{"alias":"STAT113","entrezGeneId":"6773"},{"alias":"ADMIO","entrezGeneId":"6774"},{"alias":"ADMIO1","entrezGeneId":"6774"},{"alias":"APRF","entrezGeneId":"6774"},{"alias":"HIES","entrezGeneId":"6774"},{"alias":"SLEB11","entrezGeneId":"6775"},{"alias":"MGF","entrezGeneId":"6776"},{"alias":"STAT5","entrezGeneId":"6776"},{"alias":"STAT5","entrezGeneId":"6777"},{"alias":"D12S1644","entrezGeneId":"6778"},{"alias":"IL-4-STAT","entrezGeneId":"6778"},{"alias":"STAT6B","entrezGeneId":"6778"},{"alias":"STAT6C","entrezGeneId":"6778"},{"alias":"STR","entrezGeneId":"6779"},{"alias":"PPP1R150","entrezGeneId":"6780"},{"alias":"STAU","entrezGeneId":"6780"},{"alias":"STC","entrezGeneId":"6781"},{"alias":"STCH","entrezGeneId":"6782"},{"alias":"EST","entrezGeneId":"6783"},{"alias":"EST-1","entrezGeneId":"6783"},{"alias":"ST1E1","entrezGeneId":"6783"},{"alias":"STE","entrezGeneId":"6783"},{"alias":"ADMD","entrezGeneId":"6785"},{"alias":"CT118","entrezGeneId":"6785"},{"alias":"ISQMR","entrezGeneId":"6785"},{"alias":"SCA34","entrezGeneId":"6785"},{"alias":"STGD2","entrezGeneId":"6785"},{"alias":"STGD3","entrezGeneId":"6785"},{"alias":"D11S4896E","entrezGeneId":"6786"},{"alias":"GOK","entrezGeneId":"6786"},{"alias":"IMD10","entrezGeneId":"6786"},{"alias":"STRMK","entrezGeneId":"6786"},{"alias":"TAM","entrezGeneId":"6786"},{"alias":"TAM1","entrezGeneId":"6786"},{"alias":"NRK2","entrezGeneId":"6787"},{"alias":"pp12301","entrezGeneId":"6787"},{"alias":"STK2","entrezGeneId":"6787"},{"alias":"KRS1","entrezGeneId":"6788"},{"alias":"MST2","entrezGeneId":"6788"},{"alias":"KRS2","entrezGeneId":"6789"},{"alias":"MST1","entrezGeneId":"6789"},{"alias":"YSK3","entrezGeneId":"6789"},{"alias":"AIK","entrezGeneId":"6790"},{"alias":"ARK1","entrezGeneId":"6790"},{"alias":"AURA","entrezGeneId":"6790"},{"alias":"BTAK","entrezGeneId":"6790"},{"alias":"PPP1R47","entrezGeneId":"6790"},{"alias":"STK15","entrezGeneId":"6790"},{"alias":"STK6","entrezGeneId":"6790"},{"alias":"STK7","entrezGeneId":"6790"},{"alias":"AurAps1","entrezGeneId":"6791"},{"alias":"STK6P","entrezGeneId":"6791"},{"alias":"CFAP247","entrezGeneId":"6792"},{"alias":"EIEE2","entrezGeneId":"6792"},{"alias":"ISSX","entrezGeneId":"6792"},{"alias":"STK9","entrezGeneId":"6792"},{"alias":"LOK","entrezGeneId":"6793"},{"alias":"PRO2729","entrezGeneId":"6793"},{"alias":"hLKB1","entrezGeneId":"6794"},{"alias":"LKB1","entrezGeneId":"6794"},{"alias":"PJS","entrezGeneId":"6794"},{"alias":"AIE2","entrezGeneId":"6795"},{"alias":"AIK3","entrezGeneId":"6795"},{"alias":"ARK3","entrezGeneId":"6795"},{"alias":"AurC","entrezGeneId":"6795"},{"alias":"aurora-C","entrezGeneId":"6795"},{"alias":"HEL-S-90","entrezGeneId":"6795"},{"alias":"SPGF5","entrezGeneId":"6795"},{"alias":"STK13","entrezGeneId":"6795"},{"alias":"HAST4","entrezGeneId":"6799"},{"alias":"P-PST","entrezGeneId":"6799"},{"alias":"ST1A2","entrezGeneId":"6799"},{"alias":"STP2","entrezGeneId":"6799"},{"alias":"TSPST2","entrezGeneId":"6799"},{"alias":"PPP2R6A","entrezGeneId":"6801"},{"alias":"SG2NA","entrezGeneId":"6801"},{"alias":"STRN1","entrezGeneId":"6801"},{"alias":"STS-Y","entrezGeneId":"6803"},{"alias":"STSP","entrezGeneId":"6803"},{"alias":"HPC-1","entrezGeneId":"6804"},{"alias":"P35-1","entrezGeneId":"6804"},{"alias":"STX1","entrezGeneId":"6804"},{"alias":"SYN1A","entrezGeneId":"6804"},{"alias":"STX3A","entrezGeneId":"6809"},{"alias":"p35-2","entrezGeneId":"6810"},{"alias":"STX4A","entrezGeneId":"6810"},{"alias":"SED5","entrezGeneId":"6811"},{"alias":"STX5A","entrezGeneId":"6811"},{"alias":"MUNC18-1","entrezGeneId":"6812"},{"alias":"NSEC1","entrezGeneId":"6812"},{"alias":"P67","entrezGeneId":"6812"},{"alias":"RBSEC1","entrezGeneId":"6812"},{"alias":"UNC18","entrezGeneId":"6812"},{"alias":"FHL5","entrezGeneId":"6813"},{"alias":"Hunc18b","entrezGeneId":"6813"},{"alias":"MUNC18-2","entrezGeneId":"6813"},{"alias":"pp10122","entrezGeneId":"6813"},{"alias":"UNC18-2","entrezGeneId":"6813"},{"alias":"UNC18B","entrezGeneId":"6813"},{"alias":"MUNC18-3","entrezGeneId":"6814"},{"alias":"MUNC18C","entrezGeneId":"6814"},{"alias":"PSP","entrezGeneId":"6814"},{"alias":"UNC-18C","entrezGeneId":"6814"},{"alias":"HAST1/HAST2","entrezGeneId":"6817"},{"alias":"P-PST","entrezGeneId":"6817"},{"alias":"PST","entrezGeneId":"6817"},{"alias":"ST1A1","entrezGeneId":"6817"},{"alias":"ST1A3","entrezGeneId":"6817"},{"alias":"STP","entrezGeneId":"6817"},{"alias":"STP1","entrezGeneId":"6817"},{"alias":"TSPST1","entrezGeneId":"6817"},{"alias":"HAST","entrezGeneId":"6818"},{"alias":"HAST3","entrezGeneId":"6818"},{"alias":"M-PST","entrezGeneId":"6818"},{"alias":"ST1A3","entrezGeneId":"6818"},{"alias":"ST1A3/ST1A4","entrezGeneId":"6818"},{"alias":"ST1A5","entrezGeneId":"6818"},{"alias":"STM","entrezGeneId":"6818"},{"alias":"TL-PST","entrezGeneId":"6818"},{"alias":"humSULTC2","entrezGeneId":"6819"},{"alias":"ST1C1","entrezGeneId":"6819"},{"alias":"ST1C2","entrezGeneId":"6819"},{"alias":"SULT1C1","entrezGeneId":"6819"},{"alias":"ARCI14","entrezGeneId":"6820"},{"alias":"HSST2","entrezGeneId":"6820"},{"alias":"DHEA-ST","entrezGeneId":"6822"},{"alias":"DHEAS","entrezGeneId":"6822"},{"alias":"HST","entrezGeneId":"6822"},{"alias":"hSTa","entrezGeneId":"6822"},{"alias":"ST2","entrezGeneId":"6822"},{"alias":"ST2A1","entrezGeneId":"6822"},{"alias":"ST2A3","entrezGeneId":"6822"},{"alias":"STD","entrezGeneId":"6822"},{"alias":"HCGVII","entrezGeneId":"6824"},{"alias":"SUP45L2","entrezGeneId":"6824"},{"alias":"SUP45L3","entrezGeneId":"6825"},{"alias":"SPT4","entrezGeneId":"6827"},{"alias":"SPT4H","entrezGeneId":"6827"},{"alias":"Supt4a","entrezGeneId":"6827"},{"alias":"SUPT4H","entrezGeneId":"6827"},{"alias":"SPT5","entrezGeneId":"6829"},{"alias":"SPT5H","entrezGeneId":"6829"},{"alias":"Tat-CT1","entrezGeneId":"6829"},{"alias":"emb-5","entrezGeneId":"6830"},{"alias":"SPT6","entrezGeneId":"6830"},{"alias":"SPT6H","entrezGeneId":"6830"},{"alias":"SUV3","entrezGeneId":"6832"},{"alias":"ABC36","entrezGeneId":"6833"},{"alias":"HHF1","entrezGeneId":"6833"},{"alias":"HI","entrezGeneId":"6833"},{"alias":"HRINS","entrezGeneId":"6833"},{"alias":"MRP8","entrezGeneId":"6833"},{"alias":"PHHI","entrezGeneId":"6833"},{"alias":"SUR","entrezGeneId":"6833"},{"alias":"SUR1","entrezGeneId":"6833"},{"alias":"SUR1delta2","entrezGeneId":"6833"},{"alias":"TNDM2","entrezGeneId":"6833"},{"alias":"CMT4K","entrezGeneId":"6834"},{"alias":"SURF-2","entrezGeneId":"6835"},{"alias":"ERV29","entrezGeneId":"6836"},{"alias":"MED24","entrezGeneId":"6837"},{"alias":"SRB6","entrezGeneId":"6837"},{"alias":"surf-5","entrezGeneId":"6837"},{"alias":"SURF5","entrezGeneId":"6837"},{"alias":"RRP14","entrezGeneId":"6838"},{"alias":"H3-K9-HMTase 1","entrezGeneId":"6839"},{"alias":"KMT1A","entrezGeneId":"6839"},{"alias":"MG44","entrezGeneId":"6839"},{"alias":"SUV39H","entrezGeneId":"6839"},{"alias":"SPAX1","entrezGeneId":"6843"},{"alias":"SYB1","entrezGeneId":"6843"},{"alias":"VAMP-1","entrezGeneId":"6843"},{"alias":"SYB2","entrezGeneId":"6844"},{"alias":"VAMP-2","entrezGeneId":"6844"},{"alias":"SYBL1","entrezGeneId":"6845"},{"alias":"TI-VAMP","entrezGeneId":"6845"},{"alias":"TIVAMP","entrezGeneId":"6845"},{"alias":"VAMP-7","entrezGeneId":"6845"},{"alias":"SCM-1b","entrezGeneId":"6846"},{"alias":"SCM1B","entrezGeneId":"6846"},{"alias":"SCYC2","entrezGeneId":"6846"},{"alias":"CT8","entrezGeneId":"6847"},{"alias":"HOM-TES-14","entrezGeneId":"6847"},{"alias":"SCP-1","entrezGeneId":"6847"},{"alias":"SCP1","entrezGeneId":"6847"},{"alias":"p72-Syk","entrezGeneId":"6850"},{"alias":"SYN1a","entrezGeneId":"6853"},{"alias":"SYN1b","entrezGeneId":"6853"},{"alias":"SYNI","entrezGeneId":"6853"},{"alias":"SYNII","entrezGeneId":"6854"},{"alias":"MRX96","entrezGeneId":"6855"},{"alias":"MRXSYP","entrezGeneId":"6855"},{"alias":"H-SP1","entrezGeneId":"6856"},{"alias":"SYPL","entrezGeneId":"6856"},{"alias":"P65","entrezGeneId":"6857"},{"alias":"SVP65","entrezGeneId":"6857"},{"alias":"SYT","entrezGeneId":"6857"},{"alias":"HsT1192","entrezGeneId":"6860"},{"alias":"SAVA","entrezGeneId":"6862"},{"alias":"T","entrezGeneId":"6862"},{"alias":"TFT","entrezGeneId":"6862"},{"alias":"Hs.2563","entrezGeneId":"6863"},{"alias":"NK2","entrezGeneId":"6863"},{"alias":"NKNA","entrezGeneId":"6863"},{"alias":"NPK","entrezGeneId":"6863"},{"alias":"TAC2","entrezGeneId":"6863"},{"alias":"NK2R","entrezGeneId":"6865"},{"alias":"NKNAR","entrezGeneId":"6865"},{"alias":"SKR","entrezGeneId":"6865"},{"alias":"TAC2R","entrezGeneId":"6865"},{"alias":"HH10","entrezGeneId":"6866"},{"alias":"NKB","entrezGeneId":"6866"},{"alias":"NKNB","entrezGeneId":"6866"},{"alias":"PRO1155","entrezGeneId":"6866"},{"alias":"ZNEUROK1","entrezGeneId":"6866"},{"alias":"Ga55","entrezGeneId":"6867"},{"alias":"ADAM18","entrezGeneId":"6868"},{"alias":"CD156B","entrezGeneId":"6868"},{"alias":"CSVP","entrezGeneId":"6868"},{"alias":"NISBD","entrezGeneId":"6868"},{"alias":"NISBD1","entrezGeneId":"6868"},{"alias":"TACE","entrezGeneId":"6868"},{"alias":"NK1R","entrezGeneId":"6869"},{"alias":"NKIR","entrezGeneId":"6869"},{"alias":"SPR","entrezGeneId":"6869"},{"alias":"TAC1R","entrezGeneId":"6869"},{"alias":"HH11","entrezGeneId":"6870"},{"alias":"NK-3R","entrezGeneId":"6870"},{"alias":"NK3","entrezGeneId":"6870"},{"alias":"NK3R","entrezGeneId":"6870"},{"alias":"NKR","entrezGeneId":"6870"},{"alias":"TAC3R","entrezGeneId":"6870"},{"alias":"TAC3RL","entrezGeneId":"6870"},{"alias":"ADA2","entrezGeneId":"6871"},{"alias":"ADA2A","entrezGeneId":"6871"},{"alias":"hADA2","entrezGeneId":"6871"},{"alias":"KL04P","entrezGeneId":"6871"},{"alias":"TADA2L","entrezGeneId":"6871"},{"alias":"BA2R","entrezGeneId":"6872"},{"alias":"CCG1","entrezGeneId":"6872"},{"alias":"CCGS","entrezGeneId":"6872"},{"alias":"DYT3","entrezGeneId":"6872"},{"alias":"DYT3/TAF1","entrezGeneId":"6872"},{"alias":"KAT4","entrezGeneId":"6872"},{"alias":"MRXS33","entrezGeneId":"6872"},{"alias":"N-TAF1","entrezGeneId":"6872"},{"alias":"NSCL2","entrezGeneId":"6872"},{"alias":"OF","entrezGeneId":"6872"},{"alias":"P250","entrezGeneId":"6872"},{"alias":"TAF(II)250","entrezGeneId":"6872"},{"alias":"TAF2A","entrezGeneId":"6872"},{"alias":"TAFII-250","entrezGeneId":"6872"},{"alias":"TAFII250","entrezGeneId":"6872"},{"alias":"XDP","entrezGeneId":"6872"},{"alias":"CIF150","entrezGeneId":"6873"},{"alias":"MRT40","entrezGeneId":"6873"},{"alias":"TAF2B","entrezGeneId":"6873"},{"alias":"TAFII150","entrezGeneId":"6873"},{"alias":"TAF2C","entrezGeneId":"6874"},{"alias":"TAF2C1","entrezGeneId":"6874"},{"alias":"TAF4A","entrezGeneId":"6874"},{"alias":"TAFII130","entrezGeneId":"6874"},{"alias":"TAFII135","entrezGeneId":"6874"},{"alias":"SPGF13","entrezGeneId":"6875"},{"alias":"TAF2C2","entrezGeneId":"6875"},{"alias":"TAFII105","entrezGeneId":"6875"},{"alias":"SM22","entrezGeneId":"6876"},{"alias":"SM22-alpha","entrezGeneId":"6876"},{"alias":"SMCC","entrezGeneId":"6876"},{"alias":"TAGLN1","entrezGeneId":"6876"},{"alias":"WS3-10","entrezGeneId":"6876"},{"alias":"TAF(II)100","entrezGeneId":"6877"},{"alias":"TAF2D","entrezGeneId":"6877"},{"alias":"TAFII-100","entrezGeneId":"6877"},{"alias":"TAFII100","entrezGeneId":"6877"},{"alias":"ALYUS","entrezGeneId":"6878"},{"alias":"MGC:8964","entrezGeneId":"6878"},{"alias":"TAF(II)70","entrezGeneId":"6878"},{"alias":"TAF(II)80","entrezGeneId":"6878"},{"alias":"TAF2E","entrezGeneId":"6878"},{"alias":"TAFII-70","entrezGeneId":"6878"},{"alias":"TAFII-80","entrezGeneId":"6878"},{"alias":"TAFII70","entrezGeneId":"6878"},{"alias":"TAFII80","entrezGeneId":"6878"},{"alias":"TAFII85","entrezGeneId":"6878"},{"alias":"TAF2F","entrezGeneId":"6879"},{"alias":"TAFII55","entrezGeneId":"6879"},{"alias":"MGC:5067","entrezGeneId":"6880"},{"alias":"STAF31/32","entrezGeneId":"6880"},{"alias":"TAF2G","entrezGeneId":"6880"},{"alias":"TAFII-31","entrezGeneId":"6880"},{"alias":"TAFII-32","entrezGeneId":"6880"},{"alias":"TAFII31","entrezGeneId":"6880"},{"alias":"TAFII32","entrezGeneId":"6880"},{"alias":"TAFIID32","entrezGeneId":"6880"},{"alias":"TAF2A","entrezGeneId":"6881"},{"alias":"TAF2H","entrezGeneId":"6881"},{"alias":"TAFII30","entrezGeneId":"6881"},{"alias":"MGC:15243","entrezGeneId":"6882"},{"alias":"PRO2134","entrezGeneId":"6882"},{"alias":"TAF2I","entrezGeneId":"6882"},{"alias":"TAFII28","entrezGeneId":"6882"},{"alias":"TAF2J","entrezGeneId":"6883"},{"alias":"TAFII20","entrezGeneId":"6883"},{"alias":"MRT60","entrezGeneId":"6884"},{"alias":"TAF(II)18","entrezGeneId":"6884"},{"alias":"TAF2K","entrezGeneId":"6884"},{"alias":"TAFII-18","entrezGeneId":"6884"},{"alias":"TAFII18","entrezGeneId":"6884"},{"alias":"CSCF","entrezGeneId":"6885"},{"alias":"FMD2","entrezGeneId":"6885"},{"alias":"MEKK7","entrezGeneId":"6885"},{"alias":"TAK1","entrezGeneId":"6885"},{"alias":"TGF1a","entrezGeneId":"6885"},{"alias":"bHLHa17","entrezGeneId":"6886"},{"alias":"SCL","entrezGeneId":"6886"},{"alias":"tal-1","entrezGeneId":"6886"},{"alias":"TCL5","entrezGeneId":"6886"},{"alias":"TAL","entrezGeneId":"6888"},{"alias":"TAL-H","entrezGeneId":"6888"},{"alias":"TALDOR","entrezGeneId":"6888"},{"alias":"TALH","entrezGeneId":"6888"},{"alias":"TAL-H","entrezGeneId":"6889"},{"alias":"TALDO","entrezGeneId":"6889"},{"alias":"TALDOP1","entrezGeneId":"6889"},{"alias":"ABC17","entrezGeneId":"6890"},{"alias":"ABCB2","entrezGeneId":"6890"},{"alias":"APT1","entrezGeneId":"6890"},{"alias":"D6S114E","entrezGeneId":"6890"},{"alias":"PSF-1","entrezGeneId":"6890"},{"alias":"PSF1","entrezGeneId":"6890"},{"alias":"RING4","entrezGeneId":"6890"},{"alias":"TAP1*0102N","entrezGeneId":"6890"},{"alias":"TAP1N","entrezGeneId":"6890"},{"alias":"ABC18","entrezGeneId":"6891"},{"alias":"ABCB3","entrezGeneId":"6891"},{"alias":"APT2","entrezGeneId":"6891"},{"alias":"D6S217E","entrezGeneId":"6891"},{"alias":"PSF-2","entrezGeneId":"6891"},{"alias":"PSF2","entrezGeneId":"6891"},{"alias":"RING11","entrezGeneId":"6891"},{"alias":"NGS17","entrezGeneId":"6892"},{"alias":"TAPA","entrezGeneId":"6892"},{"alias":"TPN","entrezGeneId":"6892"},{"alias":"TPSN","entrezGeneId":"6892"},{"alias":"APVR","entrezGeneId":"6893"},{"alias":"TAPVR","entrezGeneId":"6893"},{"alias":"TRM3","entrezGeneId":"6894"},{"alias":"TRMT3","entrezGeneId":"6894"},{"alias":"TRP-185","entrezGeneId":"6894"},{"alias":"TRP185","entrezGeneId":"6894"},{"alias":"LOQS","entrezGeneId":"6895"},{"alias":"TRBP","entrezGeneId":"6895"},{"alias":"TRBP1","entrezGeneId":"6895"},{"alias":"TRBP2","entrezGeneId":"6895"},{"alias":"TARBP2P","entrezGeneId":"6896"},{"alias":"TRBP","entrezGeneId":"6896"},{"alias":"ThrRS","entrezGeneId":"6897"},{"alias":"CAFS","entrezGeneId":"6899"},{"alias":"CATCH22","entrezGeneId":"6899"},{"alias":"CTHM","entrezGeneId":"6899"},{"alias":"DGCR","entrezGeneId":"6899"},{"alias":"DGS","entrezGeneId":"6899"},{"alias":"DORV","entrezGeneId":"6899"},{"alias":"TBX1C","entrezGeneId":"6899"},{"alias":"TGA","entrezGeneId":"6899"},{"alias":"VCF","entrezGeneId":"6899"},{"alias":"VCFS","entrezGeneId":"6899"},{"alias":"AXT","entrezGeneId":"6900"},{"alias":"FAME5","entrezGeneId":"6900"},{"alias":"TAG-1","entrezGeneId":"6900"},{"alias":"TAX","entrezGeneId":"6900"},{"alias":"TAX1","entrezGeneId":"6900"},{"alias":"BTHS","entrezGeneId":"6901"},{"alias":"CMD3A","entrezGeneId":"6901"},{"alias":"EFE","entrezGeneId":"6901"},{"alias":"EFE2","entrezGeneId":"6901"},{"alias":"G4.5","entrezGeneId":"6901"},{"alias":"LVNCX","entrezGeneId":"6901"},{"alias":"Taz1","entrezGeneId":"6901"},{"alias":"CFC","entrezGeneId":"6903"},{"alias":"PEBAT","entrezGeneId":"6904"},{"alias":"SSD-1","entrezGeneId":"6904"},{"alias":"tfcD","entrezGeneId":"6904"},{"alias":"HRD","entrezGeneId":"6905"},{"alias":"KCS","entrezGeneId":"6905"},{"alias":"KCS1","entrezGeneId":"6905"},{"alias":"pac2","entrezGeneId":"6905"},{"alias":"PEAMO","entrezGeneId":"6905"},{"alias":"TBG","entrezGeneId":"6906"},{"alias":"TBGQTL","entrezGeneId":"6906"},{"alias":"EBI","entrezGeneId":"6907"},{"alias":"SMAP55","entrezGeneId":"6907"},{"alias":"TBL1","entrezGeneId":"6907"},{"alias":"GTF2D","entrezGeneId":"6908"},{"alias":"GTF2D1","entrezGeneId":"6908"},{"alias":"HDL4","entrezGeneId":"6908"},{"alias":"SCA17","entrezGeneId":"6908"},{"alias":"TFIID","entrezGeneId":"6908"},{"alias":"HOS","entrezGeneId":"6910"},{"alias":"SCDO5","entrezGeneId":"6911"},{"alias":"TBX14","entrezGeneId":"6913"},{"alias":"BDPLT13","entrezGeneId":"6915"},{"alias":"TXA2-R","entrezGeneId":"6915"},{"alias":"BDPLT14","entrezGeneId":"6916"},{"alias":"CYP5","entrezGeneId":"6916"},{"alias":"CYP5A1","entrezGeneId":"6916"},{"alias":"GHOSAL","entrezGeneId":"6916"},{"alias":"THAS","entrezGeneId":"6916"},{"alias":"TS","entrezGeneId":"6916"},{"alias":"TXAS","entrezGeneId":"6916"},{"alias":"TXS","entrezGeneId":"6916"},{"alias":"GTF2S","entrezGeneId":"6917"},{"alias":"SII","entrezGeneId":"6917"},{"alias":"TCEA","entrezGeneId":"6917"},{"alias":"TF2S","entrezGeneId":"6917"},{"alias":"TFIIS","entrezGeneId":"6917"},{"alias":"GTF2SP","entrezGeneId":"6918"},{"alias":"TCEA1P","entrezGeneId":"6918"},{"alias":"TFIIS","entrezGeneId":"6919"},{"alias":"TFIIS","entrezGeneId":"6920"},{"alias":"TFIIS.H","entrezGeneId":"6920"},{"alias":"SIII","entrezGeneId":"6921"},{"alias":"TCEB1","entrezGeneId":"6921"},{"alias":"EMC19","entrezGeneId":"6922"},{"alias":"OCP2","entrezGeneId":"6922"},{"alias":"TCEB1L","entrezGeneId":"6922"},{"alias":"TCEB1P","entrezGeneId":"6922"},{"alias":"TCEB1P1","entrezGeneId":"6922"},{"alias":"SIII","entrezGeneId":"6923"},{"alias":"TCEB2","entrezGeneId":"6923"},{"alias":"SIII","entrezGeneId":"6924"},{"alias":"SIII p110","entrezGeneId":"6924"},{"alias":"TCEB3","entrezGeneId":"6924"},{"alias":"TCEB3A","entrezGeneId":"6924"},{"alias":"bHLHb19","entrezGeneId":"6925"},{"alias":"E2-2","entrezGeneId":"6925"},{"alias":"FECD3","entrezGeneId":"6925"},{"alias":"ITF-2","entrezGeneId":"6925"},{"alias":"ITF2","entrezGeneId":"6925"},{"alias":"PTHS","entrezGeneId":"6925"},{"alias":"SEF-2","entrezGeneId":"6925"},{"alias":"SEF2","entrezGeneId":"6925"},{"alias":"SEF2-1","entrezGeneId":"6925"},{"alias":"SEF2-1A","entrezGeneId":"6925"},{"alias":"SEF2-1B","entrezGeneId":"6925"},{"alias":"SEF2-1D","entrezGeneId":"6925"},{"alias":"TCF-4","entrezGeneId":"6925"},{"alias":"TBX3-ISO","entrezGeneId":"6926"},{"alias":"UMS","entrezGeneId":"6926"},{"alias":"XHL","entrezGeneId":"6926"},{"alias":"HNF-1A","entrezGeneId":"6927"},{"alias":"HNF1","entrezGeneId":"6927"},{"alias":"IDDM20","entrezGeneId":"6927"},{"alias":"LFB1","entrezGeneId":"6927"},{"alias":"MODY3","entrezGeneId":"6927"},{"alias":"TCF-1","entrezGeneId":"6927"},{"alias":"TCF1","entrezGeneId":"6927"},{"alias":"FJHN","entrezGeneId":"6928"},{"alias":"HNF-1-beta","entrezGeneId":"6928"},{"alias":"HNF-1B","entrezGeneId":"6928"},{"alias":"HNF1beta","entrezGeneId":"6928"},{"alias":"HNF2","entrezGeneId":"6928"},{"alias":"HPC11","entrezGeneId":"6928"},{"alias":"LF-B3","entrezGeneId":"6928"},{"alias":"LFB3","entrezGeneId":"6928"},{"alias":"MODY5","entrezGeneId":"6928"},{"alias":"TCF-2","entrezGeneId":"6928"},{"alias":"TCF2","entrezGeneId":"6928"},{"alias":"VHNF1","entrezGeneId":"6928"},{"alias":"AGM8","entrezGeneId":"6929"},{"alias":"bHLHb21","entrezGeneId":"6929"},{"alias":"E2A","entrezGeneId":"6929"},{"alias":"E47","entrezGeneId":"6929"},{"alias":"ITF1","entrezGeneId":"6929"},{"alias":"p75","entrezGeneId":"6929"},{"alias":"TCF-3","entrezGeneId":"6929"},{"alias":"VDIR","entrezGeneId":"6929"},{"alias":"TCF-1","entrezGeneId":"6932"},{"alias":"TCF-4","entrezGeneId":"6934"},{"alias":"TCF4","entrezGeneId":"6934"},{"alias":"AREB6","entrezGeneId":"6935"},{"alias":"BZP","entrezGeneId":"6935"},{"alias":"DELTAEF1","entrezGeneId":"6935"},{"alias":"FECD6","entrezGeneId":"6935"},{"alias":"NIL2A","entrezGeneId":"6935"},{"alias":"PPCD3","entrezGeneId":"6935"},{"alias":"TCF8","entrezGeneId":"6935"},{"alias":"ZFHEP","entrezGeneId":"6935"},{"alias":"ZFHX1A","entrezGeneId":"6935"},{"alias":"C2orf3","entrezGeneId":"6936"},{"alias":"DNABF","entrezGeneId":"6936"},{"alias":"GCF","entrezGeneId":"6936"},{"alias":"TCF9","entrezGeneId":"6936"},{"alias":"bHLHb20","entrezGeneId":"6938"},{"alias":"CRS3","entrezGeneId":"6938"},{"alias":"HEB","entrezGeneId":"6938"},{"alias":"HsT17266","entrezGeneId":"6938"},{"alias":"HTF4","entrezGeneId":"6938"},{"alias":"p64","entrezGeneId":"6938"},{"alias":"TCF-12","entrezGeneId":"6938"},{"alias":"bHLHa40","entrezGeneId":"6939"},{"alias":"EC2","entrezGeneId":"6939"},{"alias":"PARAXIS","entrezGeneId":"6939"},{"alias":"EZNF","entrezGeneId":"6940"},{"alias":"HEL104","entrezGeneId":"6940"},{"alias":"HKL1","entrezGeneId":"6940"},{"alias":"KID-1","entrezGeneId":"6940"},{"alias":"KID1","entrezGeneId":"6940"},{"alias":"TCF17","entrezGeneId":"6940"},{"alias":"SC1","entrezGeneId":"6941"},{"alias":"TCF-19","entrezGeneId":"6941"},{"alias":"AR1","entrezGeneId":"6942"},{"alias":"SPBP","entrezGeneId":"6942"},{"alias":"TCF-20","entrezGeneId":"6942"},{"alias":"bHLHa23","entrezGeneId":"6943"},{"alias":"POD1","entrezGeneId":"6943"},{"alias":"CFL1","entrezGeneId":"6944"},{"alias":"Swc2","entrezGeneId":"6944"},{"alias":"TCFL1","entrezGeneId":"6944"},{"alias":"YL-1","entrezGeneId":"6944"},{"alias":"YL1","entrezGeneId":"6944"},{"alias":"bHLHd13","entrezGeneId":"6945"},{"alias":"MAD7","entrezGeneId":"6945"},{"alias":"MXD7","entrezGeneId":"6945"},{"alias":"TCFL4","entrezGeneId":"6945"},{"alias":"TF4","entrezGeneId":"6945"},{"alias":"HC","entrezGeneId":"6947"},{"alias":"TC-1","entrezGeneId":"6947"},{"alias":"TC1","entrezGeneId":"6947"},{"alias":"TCI","entrezGeneId":"6947"},{"alias":"D22S676","entrezGeneId":"6948"},{"alias":"D22S750","entrezGeneId":"6948"},{"alias":"II","entrezGeneId":"6948"},{"alias":"TC","entrezGeneId":"6948"},{"alias":"TC II","entrezGeneId":"6948"},{"alias":"TC-2","entrezGeneId":"6948"},{"alias":"TC2","entrezGeneId":"6948"},{"alias":"TCII","entrezGeneId":"6948"},{"alias":"MFD1","entrezGeneId":"6949"},{"alias":"TCS","entrezGeneId":"6949"},{"alias":"TCS1","entrezGeneId":"6949"},{"alias":"treacle","entrezGeneId":"6949"},{"alias":"CCT-alpha","entrezGeneId":"6950"},{"alias":"CCT1","entrezGeneId":"6950"},{"alias":"CCTa","entrezGeneId":"6950"},{"alias":"D6S230E","entrezGeneId":"6950"},{"alias":"TCP-1-alpha","entrezGeneId":"6950"},{"alias":"CCT1-2P","entrezGeneId":"6952"},{"alias":"TCP1L2","entrezGeneId":"6952"},{"alias":"TCP10A","entrezGeneId":"6953"},{"alias":"D6S230E","entrezGeneId":"6954"},{"alias":"FPPR","entrezGeneId":"6954"},{"alias":"IMD7","entrezGeneId":"6955"},{"alias":"TCRA","entrezGeneId":"6955"},{"alias":"TCRD","entrezGeneId":"6955"},{"alias":"TRA@","entrezGeneId":"6955"},{"alias":"TRAC","entrezGeneId":"6955"},{"alias":"TCRAV5S1","entrezGeneId":"6956"},{"alias":"TCRAV6S1","entrezGeneId":"6956"},{"alias":"TCRB","entrezGeneId":"6957"},{"alias":"TRB@","entrezGeneId":"6957"},{"alias":"TCRBV29S2","entrezGeneId":"6958"},{"alias":"TCRBV4O","entrezGeneId":"6958"},{"alias":"TCRBV4S2O","entrezGeneId":"6958"},{"alias":"TRBV29/OR9-2","entrezGeneId":"6958"},{"alias":"TCRBV10O","entrezGeneId":"6959"},{"alias":"TCRBV10S2O","entrezGeneId":"6959"},{"alias":"TCRBV21S2","entrezGeneId":"6959"},{"alias":"TCRBV11O","entrezGeneId":"6960"},{"alias":"TCRBV11S2O","entrezGeneId":"6960"},{"alias":"TCRBV25S2","entrezGeneId":"6960"},{"alias":"TCRBV15O","entrezGeneId":"6961"},{"alias":"TCRBV15S2O","entrezGeneId":"6961"},{"alias":"TCRBV24S2","entrezGeneId":"6961"},{"alias":"CDR3","entrezGeneId":"6962"},{"alias":"TCR","entrezGeneId":"6962"},{"alias":"TCRB","entrezGeneId":"6962"},{"alias":"TCRBV20S2","entrezGeneId":"6962"},{"alias":"TCRBV2O","entrezGeneId":"6962"},{"alias":"TCRBV2S2O","entrezGeneId":"6962"},{"alias":"TRB","entrezGeneId":"6962"},{"alias":"TCRD","entrezGeneId":"6964"},{"alias":"TCRDV1","entrezGeneId":"6964"},{"alias":"TRD@","entrezGeneId":"6964"},{"alias":"TCRG","entrezGeneId":"6965"},{"alias":"TRG@","entrezGeneId":"6965"},{"alias":"C1","entrezGeneId":"6966"},{"alias":"TCRG","entrezGeneId":"6966"},{"alias":"TCRGC1","entrezGeneId":"6966"},{"alias":"TCRGC2","entrezGeneId":"6967"},{"alias":"TRGC2(2X)","entrezGeneId":"6967"},{"alias":"TRGC2(3X)","entrezGeneId":"6967"},{"alias":"J1","entrezGeneId":"6968"},{"alias":"TCRGJ1","entrezGeneId":"6968"},{"alias":"J2","entrezGeneId":"6969"},{"alias":"TCRGJ2","entrezGeneId":"6969"},{"alias":"JP","entrezGeneId":"6970"},{"alias":"TCRGJP","entrezGeneId":"6970"},{"alias":"JP1","entrezGeneId":"6971"},{"alias":"TCRGJP1","entrezGeneId":"6971"},{"alias":"JP2","entrezGeneId":"6972"},{"alias":"TCRGJP2","entrezGeneId":"6972"},{"alias":"TCRGV1","entrezGeneId":"6973"},{"alias":"V1S1P","entrezGeneId":"6973"},{"alias":"TCRGV2","entrezGeneId":"6974"},{"alias":"VIS2","entrezGeneId":"6974"},{"alias":"TCRGV3","entrezGeneId":"6976"},{"alias":"V1S3","entrezGeneId":"6976"},{"alias":"TCRGV4","entrezGeneId":"6977"},{"alias":"V1S4","entrezGeneId":"6977"},{"alias":"TCRGV5","entrezGeneId":"6978"},{"alias":"V1S5","entrezGeneId":"6978"},{"alias":"TCRGV5P","entrezGeneId":"6979"},{"alias":"V1S5P","entrezGeneId":"6979"},{"alias":"TCRGV5P","entrezGeneId":"6980"},{"alias":"TCRGV6","entrezGeneId":"6980"},{"alias":"V1S5P","entrezGeneId":"6980"},{"alias":"V1S6P","entrezGeneId":"6980"},{"alias":"TCRGV7","entrezGeneId":"6981"},{"alias":"V1S7P","entrezGeneId":"6981"},{"alias":"TCRGV8","entrezGeneId":"6982"},{"alias":"V1S8","entrezGeneId":"6982"},{"alias":"TCRGV9","entrezGeneId":"6983"},{"alias":"TRGC1","entrezGeneId":"6983"},{"alias":"V2","entrezGeneId":"6983"},{"alias":"TCRGV10","entrezGeneId":"6984"},{"alias":"V3P","entrezGeneId":"6984"},{"alias":"TCRGV11","entrezGeneId":"6985"},{"alias":"V4P","entrezGeneId":"6985"},{"alias":"TCRGVA","entrezGeneId":"6986"},{"alias":"V5P","entrezGeneId":"6986"},{"alias":"TCRGVB","entrezGeneId":"6987"},{"alias":"V6P","entrezGeneId":"6987"},{"alias":"RP3","entrezGeneId":"6990"},{"alias":"TCTE1L","entrezGeneId":"6990"},{"alias":"TCTEX1L","entrezGeneId":"6990"},{"alias":"TCTEX1D3","entrezGeneId":"6991"},{"alias":"CFAP255","entrezGeneId":"6992"},{"alias":"HCG-V","entrezGeneId":"6992"},{"alias":"HCGV","entrezGeneId":"6992"},{"alias":"IPP3","entrezGeneId":"6992"},{"alias":"TCTE5","entrezGeneId":"6992"},{"alias":"TCTEX5","entrezGeneId":"6992"},{"alias":"CW-1","entrezGeneId":"6993"},{"alias":"TCTEL1","entrezGeneId":"6993"},{"alias":"tctex-1","entrezGeneId":"6993"},{"alias":"hTDG","entrezGeneId":"6996"},{"alias":"CR","entrezGeneId":"6997"},{"alias":"CRGF","entrezGeneId":"6997"},{"alias":"CRIPTO","entrezGeneId":"6997"},{"alias":"CR-3","entrezGeneId":"6998"},{"alias":"CRIPTO","entrezGeneId":"6998"},{"alias":"CRIPTO-3","entrezGeneId":"6998"},{"alias":"CRIPTO3","entrezGeneId":"6998"},{"alias":"TDGF1","entrezGeneId":"6998"},{"alias":"TDGF2","entrezGeneId":"6998"},{"alias":"TDGF3","entrezGeneId":"6998"},{"alias":"HYPTRP","entrezGeneId":"6999"},{"alias":"TDO","entrezGeneId":"6999"},{"alias":"TO","entrezGeneId":"6999"},{"alias":"TPH2","entrezGeneId":"6999"},{"alias":"TRPO","entrezGeneId":"6999"},{"alias":"HEL-S-2a","entrezGeneId":"7001"},{"alias":"NKEF-B","entrezGeneId":"7001"},{"alias":"NKEFB","entrezGeneId":"7001"},{"alias":"PRP","entrezGeneId":"7001"},{"alias":"PRX2","entrezGeneId":"7001"},{"alias":"PRXII","entrezGeneId":"7001"},{"alias":"PTX1","entrezGeneId":"7001"},{"alias":"TDPX1","entrezGeneId":"7001"},{"alias":"TPX1","entrezGeneId":"7001"},{"alias":"TSA","entrezGeneId":"7001"},{"alias":"PAGB","entrezGeneId":"7002"},{"alias":"TDPX2","entrezGeneId":"7002"},{"alias":"AA","entrezGeneId":"7003"},{"alias":"NTEF-1","entrezGeneId":"7003"},{"alias":"REF1","entrezGeneId":"7003"},{"alias":"TCF-13","entrezGeneId":"7003"},{"alias":"TCF13","entrezGeneId":"7003"},{"alias":"TEAD-1","entrezGeneId":"7003"},{"alias":"TEF-1","entrezGeneId":"7003"},{"alias":"EFTR-2","entrezGeneId":"7004"},{"alias":"hRTEF-1B","entrezGeneId":"7004"},{"alias":"RTEF1","entrezGeneId":"7004"},{"alias":"TCF13L1","entrezGeneId":"7004"},{"alias":"TEF-3","entrezGeneId":"7004"},{"alias":"TEF3","entrezGeneId":"7004"},{"alias":"TEFR-1","entrezGeneId":"7004"},{"alias":"DTEF-1","entrezGeneId":"7005"},{"alias":"ETFR-1","entrezGeneId":"7005"},{"alias":"TEAD-3","entrezGeneId":"7005"},{"alias":"TEAD5","entrezGeneId":"7005"},{"alias":"TEF-5","entrezGeneId":"7005"},{"alias":"TEF5","entrezGeneId":"7005"},{"alias":"PSCTK4","entrezGeneId":"7006"},{"alias":"DFNA12","entrezGeneId":"7007"},{"alias":"DFNA8","entrezGeneId":"7007"},{"alias":"DFNB21","entrezGeneId":"7007"},{"alias":"BAXI1","entrezGeneId":"7009"},{"alias":"BI-1","entrezGeneId":"7009"},{"alias":"TEGT","entrezGeneId":"7009"},{"alias":"CD202B","entrezGeneId":"7010"},{"alias":"GLC3E","entrezGeneId":"7010"},{"alias":"TIE-2","entrezGeneId":"7010"},{"alias":"TIE2","entrezGeneId":"7010"},{"alias":"VMCM","entrezGeneId":"7010"},{"alias":"VMCM1","entrezGeneId":"7010"},{"alias":"p240","entrezGeneId":"7011"},{"alias":"TLP1","entrezGeneId":"7011"},{"alias":"TP1","entrezGeneId":"7011"},{"alias":"TROVE1","entrezGeneId":"7011"},{"alias":"VAULT2","entrezGeneId":"7011"},{"alias":"DKCA1","entrezGeneId":"7012"},{"alias":"hTR","entrezGeneId":"7012"},{"alias":"PFBMFT2","entrezGeneId":"7012"},{"alias":"SCARNA19","entrezGeneId":"7012"},{"alias":"TR","entrezGeneId":"7012"},{"alias":"TRC3","entrezGeneId":"7012"},{"alias":"hTRF1-AS","entrezGeneId":"7013"},{"alias":"PIN2","entrezGeneId":"7013"},{"alias":"t-TRF1","entrezGeneId":"7013"},{"alias":"TRBF1","entrezGeneId":"7013"},{"alias":"TRF","entrezGeneId":"7013"},{"alias":"TRF1","entrezGeneId":"7013"},{"alias":"TRBF2","entrezGeneId":"7014"},{"alias":"TRF2","entrezGeneId":"7014"},{"alias":"CMM9","entrezGeneId":"7015"},{"alias":"DKCA2","entrezGeneId":"7015"},{"alias":"DKCB4","entrezGeneId":"7015"},{"alias":"EST2","entrezGeneId":"7015"},{"alias":"hEST2","entrezGeneId":"7015"},{"alias":"hTRT","entrezGeneId":"7015"},{"alias":"PFBMFT1","entrezGeneId":"7015"},{"alias":"TCS1","entrezGeneId":"7015"},{"alias":"TP2","entrezGeneId":"7015"},{"alias":"TRT","entrezGeneId":"7015"},{"alias":"HEL-S-71p","entrezGeneId":"7018"},{"alias":"PRO1557","entrezGeneId":"7018"},{"alias":"PRO2086","entrezGeneId":"7018"},{"alias":"TFQTL1","entrezGeneId":"7018"},{"alias":"MTDPS15","entrezGeneId":"7019"},{"alias":"MTTF1","entrezGeneId":"7019"},{"alias":"MTTFA","entrezGeneId":"7019"},{"alias":"TCF6","entrezGeneId":"7019"},{"alias":"TCF6L1","entrezGeneId":"7019"},{"alias":"TCF6L2","entrezGeneId":"7019"},{"alias":"TCF6L3","entrezGeneId":"7019"},{"alias":"AP-2","entrezGeneId":"7020"},{"alias":"AP-2alpha","entrezGeneId":"7020"},{"alias":"AP2TF","entrezGeneId":"7020"},{"alias":"BOFS","entrezGeneId":"7020"},{"alias":"TFAP2","entrezGeneId":"7020"},{"alias":"AP-2B","entrezGeneId":"7021"},{"alias":"AP2-B","entrezGeneId":"7021"},{"alias":"PDA2","entrezGeneId":"7021"},{"alias":"AP2-GAMMA","entrezGeneId":"7022"},{"alias":"ERF1","entrezGeneId":"7022"},{"alias":"hAP-2g","entrezGeneId":"7022"},{"alias":"TFAP2G","entrezGeneId":"7022"},{"alias":"AP-4","entrezGeneId":"7023"},{"alias":"bHLHc41","entrezGeneId":"7023"},{"alias":"LBP1C","entrezGeneId":"7024"},{"alias":"LSF","entrezGeneId":"7024"},{"alias":"LSF1D","entrezGeneId":"7024"},{"alias":"SEF","entrezGeneId":"7024"},{"alias":"TFCP2C","entrezGeneId":"7024"},{"alias":"BBOAS","entrezGeneId":"7025"},{"alias":"BBSOAS","entrezGeneId":"7025"},{"alias":"COUP-TFI","entrezGeneId":"7025"},{"alias":"COUPTF1","entrezGeneId":"7025"},{"alias":"EAR-3","entrezGeneId":"7025"},{"alias":"EAR3","entrezGeneId":"7025"},{"alias":"ERBAL3","entrezGeneId":"7025"},{"alias":"NR2F2","entrezGeneId":"7025"},{"alias":"SVP44","entrezGeneId":"7025"},{"alias":"TCFCOUP1","entrezGeneId":"7025"},{"alias":"TFCOUP1","entrezGeneId":"7025"},{"alias":"ARP1","entrezGeneId":"7026"},{"alias":"CHTD4","entrezGeneId":"7026"},{"alias":"COUPTF2","entrezGeneId":"7026"},{"alias":"COUPTFB","entrezGeneId":"7026"},{"alias":"COUPTFII","entrezGeneId":"7026"},{"alias":"NF-E3","entrezGeneId":"7026"},{"alias":"NR2F1","entrezGeneId":"7026"},{"alias":"SVP40","entrezGeneId":"7026"},{"alias":"TFCOUP2","entrezGeneId":"7026"},{"alias":"DILC","entrezGeneId":"7027"},{"alias":"Dp-1","entrezGeneId":"7027"},{"alias":"DP1","entrezGeneId":"7027"},{"alias":"DRTF1","entrezGeneId":"7027"},{"alias":"DP2","entrezGeneId":"7029"},{"alias":"bHLHe33","entrezGeneId":"7030"},{"alias":"RCCP2","entrezGeneId":"7030"},{"alias":"RCCX1","entrezGeneId":"7030"},{"alias":"TFEA","entrezGeneId":"7030"},{"alias":"BCEI","entrezGeneId":"7031"},{"alias":"D21S21","entrezGeneId":"7031"},{"alias":"HP1.A","entrezGeneId":"7031"},{"alias":"HPS2","entrezGeneId":"7031"},{"alias":"pNR-2","entrezGeneId":"7031"},{"alias":"pS2","entrezGeneId":"7031"},{"alias":"SML1","entrezGeneId":"7032"},{"alias":"SP","entrezGeneId":"7032"},{"alias":"ITF","entrezGeneId":"7033"},{"alias":"P1B","entrezGeneId":"7033"},{"alias":"TFI","entrezGeneId":"7033"},{"alias":"EPI","entrezGeneId":"7035"},{"alias":"LACI","entrezGeneId":"7035"},{"alias":"TFI","entrezGeneId":"7035"},{"alias":"TFPI1","entrezGeneId":"7035"},{"alias":"HFE3","entrezGeneId":"7036"},{"alias":"TFRC2","entrezGeneId":"7036"},{"alias":"CD71","entrezGeneId":"7037"},{"alias":"IMD46","entrezGeneId":"7037"},{"alias":"p90","entrezGeneId":"7037"},{"alias":"T9","entrezGeneId":"7037"},{"alias":"TFR","entrezGeneId":"7037"},{"alias":"TFR1","entrezGeneId":"7037"},{"alias":"TR","entrezGeneId":"7037"},{"alias":"TRFR","entrezGeneId":"7037"},{"alias":"AITD3","entrezGeneId":"7038"},{"alias":"TGN","entrezGeneId":"7038"},{"alias":"TFGA","entrezGeneId":"7039"},{"alias":"CED","entrezGeneId":"7040"},{"alias":"DPD1","entrezGeneId":"7040"},{"alias":"LAP","entrezGeneId":"7040"},{"alias":"TGFB","entrezGeneId":"7040"},{"alias":"TGFbeta","entrezGeneId":"7040"},{"alias":"ARA55","entrezGeneId":"7041"},{"alias":"HIC-5","entrezGeneId":"7041"},{"alias":"HIC5","entrezGeneId":"7041"},{"alias":"TSC-5","entrezGeneId":"7041"},{"alias":"G-TSF","entrezGeneId":"7042"},{"alias":"LDS4","entrezGeneId":"7042"},{"alias":"TGF-beta2","entrezGeneId":"7042"},{"alias":"ARVD","entrezGeneId":"7043"},{"alias":"ARVD1","entrezGeneId":"7043"},{"alias":"LDS5","entrezGeneId":"7043"},{"alias":"RNHF","entrezGeneId":"7043"},{"alias":"TGF-beta3","entrezGeneId":"7043"},{"alias":"EBAF","entrezGeneId":"7044"},{"alias":"LEFTA","entrezGeneId":"7044"},{"alias":"LEFTYA","entrezGeneId":"7044"},{"alias":"TGFB4","entrezGeneId":"7044"},{"alias":"BIGH3","entrezGeneId":"7045"},{"alias":"CDB1","entrezGeneId":"7045"},{"alias":"CDG2","entrezGeneId":"7045"},{"alias":"CDGG1","entrezGeneId":"7045"},{"alias":"CSD","entrezGeneId":"7045"},{"alias":"CSD1","entrezGeneId":"7045"},{"alias":"CSD2","entrezGeneId":"7045"},{"alias":"CSD3","entrezGeneId":"7045"},{"alias":"EBMD","entrezGeneId":"7045"},{"alias":"LCD1","entrezGeneId":"7045"},{"alias":"AAT5","entrezGeneId":"7046"},{"alias":"ACVRLK4","entrezGeneId":"7046"},{"alias":"ALK-5","entrezGeneId":"7046"},{"alias":"ALK5","entrezGeneId":"7046"},{"alias":"ESS1","entrezGeneId":"7046"},{"alias":"LDS1","entrezGeneId":"7046"},{"alias":"LDS1A","entrezGeneId":"7046"},{"alias":"LDS2A","entrezGeneId":"7046"},{"alias":"MSSE","entrezGeneId":"7046"},{"alias":"SKR4","entrezGeneId":"7046"},{"alias":"tbetaR-I","entrezGeneId":"7046"},{"alias":"TBR-i","entrezGeneId":"7046"},{"alias":"TBRI","entrezGeneId":"7046"},{"alias":"TGFR-1","entrezGeneId":"7046"},{"alias":"hTGP","entrezGeneId":"7047"},{"alias":"TGP","entrezGeneId":"7047"},{"alias":"AAT3","entrezGeneId":"7048"},{"alias":"FAA3","entrezGeneId":"7048"},{"alias":"LDS1B","entrezGeneId":"7048"},{"alias":"LDS2","entrezGeneId":"7048"},{"alias":"LDS2B","entrezGeneId":"7048"},{"alias":"MFS2","entrezGeneId":"7048"},{"alias":"RIIC","entrezGeneId":"7048"},{"alias":"TAAD2","entrezGeneId":"7048"},{"alias":"TBR-ii","entrezGeneId":"7048"},{"alias":"TBRII","entrezGeneId":"7048"},{"alias":"TGFbeta-RII","entrezGeneId":"7048"},{"alias":"TGFR-2","entrezGeneId":"7048"},{"alias":"betaglycan","entrezGeneId":"7049"},{"alias":"BGCAN","entrezGeneId":"7049"},{"alias":"HPE4","entrezGeneId":"7050"},{"alias":"TGIF","entrezGeneId":"7050"},{"alias":"ARCI1","entrezGeneId":"7051"},{"alias":"ICR2","entrezGeneId":"7051"},{"alias":"KTG","entrezGeneId":"7051"},{"alias":"LI","entrezGeneId":"7051"},{"alias":"LI1","entrezGeneId":"7051"},{"alias":"TGASE","entrezGeneId":"7051"},{"alias":"TGK","entrezGeneId":"7051"},{"alias":"TG(C)","entrezGeneId":"7052"},{"alias":"TGC","entrezGeneId":"7052"},{"alias":"TGE","entrezGeneId":"7053"},{"alias":"UHS2","entrezGeneId":"7053"},{"alias":"DYT14","entrezGeneId":"7054"},{"alias":"DYT5b","entrezGeneId":"7054"},{"alias":"TYH","entrezGeneId":"7054"},{"alias":"TAS","entrezGeneId":"7055"},{"alias":"AHUS6","entrezGeneId":"7056"},{"alias":"BDCA3","entrezGeneId":"7056"},{"alias":"CD141","entrezGeneId":"7056"},{"alias":"THPH12","entrezGeneId":"7056"},{"alias":"THRM","entrezGeneId":"7056"},{"alias":"TM","entrezGeneId":"7056"},{"alias":"THBS","entrezGeneId":"7057"},{"alias":"THBS-1","entrezGeneId":"7057"},{"alias":"TSP","entrezGeneId":"7057"},{"alias":"TSP-1","entrezGeneId":"7057"},{"alias":"TSP1","entrezGeneId":"7057"},{"alias":"TSP2","entrezGeneId":"7058"},{"alias":"TSP3","entrezGeneId":"7059"},{"alias":"TSP-4","entrezGeneId":"7060"},{"alias":"TSP4","entrezGeneId":"7060"},{"alias":"THH","entrezGeneId":"7062"},{"alias":"THL","entrezGeneId":"7062"},{"alias":"TRHY","entrezGeneId":"7062"},{"alias":"UHS3","entrezGeneId":"7062"},{"alias":"EP24.15","entrezGeneId":"7064"},{"alias":"MEPD_HUMAN","entrezGeneId":"7064"},{"alias":"MP78","entrezGeneId":"7064"},{"alias":"TOP","entrezGeneId":"7064"},{"alias":"MGDF","entrezGeneId":"7066"},{"alias":"MKCSF","entrezGeneId":"7066"},{"alias":"ML","entrezGeneId":"7066"},{"alias":"MPLLG","entrezGeneId":"7066"},{"alias":"THCYT1","entrezGeneId":"7066"},{"alias":"TPO","entrezGeneId":"7066"},{"alias":"AR7","entrezGeneId":"7067"},{"alias":"c-ERBA-1","entrezGeneId":"7067"},{"alias":"CHNG6","entrezGeneId":"7067"},{"alias":"EAR7","entrezGeneId":"7067"},{"alias":"ERB-T-1","entrezGeneId":"7067"},{"alias":"ERBA","entrezGeneId":"7067"},{"alias":"ERBA1","entrezGeneId":"7067"},{"alias":"NR1A1","entrezGeneId":"7067"},{"alias":"THRA1","entrezGeneId":"7067"},{"alias":"THRA2","entrezGeneId":"7067"},{"alias":"C-ERBA-2","entrezGeneId":"7068"},{"alias":"C-ERBA-BETA","entrezGeneId":"7068"},{"alias":"ERBA2","entrezGeneId":"7068"},{"alias":"GRTH","entrezGeneId":"7068"},{"alias":"NR1A2","entrezGeneId":"7068"},{"alias":"PRTH","entrezGeneId":"7068"},{"alias":"THR1","entrezGeneId":"7068"},{"alias":"THRB1","entrezGeneId":"7068"},{"alias":"THRB2","entrezGeneId":"7068"},{"alias":"Lpgp","entrezGeneId":"7069"},{"alias":"LPGP1","entrezGeneId":"7069"},{"alias":"S14","entrezGeneId":"7069"},{"alias":"SPOT14","entrezGeneId":"7069"},{"alias":"THRP","entrezGeneId":"7069"},{"alias":"CD90","entrezGeneId":"7070"},{"alias":"CDw90","entrezGeneId":"7070"},{"alias":"EGR-alpha","entrezGeneId":"7071"},{"alias":"EGRA","entrezGeneId":"7071"},{"alias":"TIEG","entrezGeneId":"7071"},{"alias":"TIEG1","entrezGeneId":"7071"},{"alias":"TIA-1","entrezGeneId":"7072"},{"alias":"WDM","entrezGeneId":"7072"},{"alias":"TCBP","entrezGeneId":"7073"},{"alias":"TIAR","entrezGeneId":"7073"},{"alias":"TIAM-1","entrezGeneId":"7074"},{"alias":"JTK14","entrezGeneId":"7075"},{"alias":"TIE","entrezGeneId":"7075"},{"alias":"CLGI","entrezGeneId":"7076"},{"alias":"EPA","entrezGeneId":"7076"},{"alias":"EPO","entrezGeneId":"7076"},{"alias":"HCI","entrezGeneId":"7076"},{"alias":"TIMP","entrezGeneId":"7076"},{"alias":"TIMP-1","entrezGeneId":"7076"},{"alias":"CSC-21K","entrezGeneId":"7077"},{"alias":"DDC8","entrezGeneId":"7077"},{"alias":"HSMRK222","entrezGeneId":"7078"},{"alias":"K222","entrezGeneId":"7078"},{"alias":"K222TA2","entrezGeneId":"7078"},{"alias":"SFD","entrezGeneId":"7078"},{"alias":"TIMP-4","entrezGeneId":"7079"},{"alias":"BCH","entrezGeneId":"7080"},{"alias":"BHC","entrezGeneId":"7080"},{"alias":"NK-2","entrezGeneId":"7080"},{"alias":"NKX2.1","entrezGeneId":"7080"},{"alias":"NKX2A","entrezGeneId":"7080"},{"alias":"NMTC1","entrezGeneId":"7080"},{"alias":"T/EBP","entrezGeneId":"7080"},{"alias":"TEBP","entrezGeneId":"7080"},{"alias":"TITF1","entrezGeneId":"7080"},{"alias":"TTF-1","entrezGeneId":"7080"},{"alias":"TTF1","entrezGeneId":"7080"},{"alias":"ZO-1","entrezGeneId":"7082"},{"alias":"TK2","entrezGeneId":"7083"},{"alias":"MTDPS2","entrezGeneId":"7084"},{"alias":"MTTK","entrezGeneId":"7084"},{"alias":"PEOB3","entrezGeneId":"7084"},{"alias":"SCA31","entrezGeneId":"7084"},{"alias":"TKC","entrezGeneId":"7085"},{"alias":"HEL-S-48","entrezGeneId":"7086"},{"alias":"HEL107","entrezGeneId":"7086"},{"alias":"SDDHD","entrezGeneId":"7086"},{"alias":"TK","entrezGeneId":"7086"},{"alias":"TKT1","entrezGeneId":"7086"},{"alias":"TLCN","entrezGeneId":"7087"},{"alias":"TLN","entrezGeneId":"7087"},{"alias":"ESG","entrezGeneId":"7088"},{"alias":"ESG1","entrezGeneId":"7088"},{"alias":"GRG1","entrezGeneId":"7088"},{"alias":"ESG","entrezGeneId":"7089"},{"alias":"ESG2","entrezGeneId":"7089"},{"alias":"GRG2","entrezGeneId":"7089"},{"alias":"ESG","entrezGeneId":"7090"},{"alias":"ESG3","entrezGeneId":"7090"},{"alias":"GRG3","entrezGeneId":"7090"},{"alias":"HsT18976","entrezGeneId":"7090"},{"alias":"BCE-1","entrezGeneId":"7091"},{"alias":"BCE1","entrezGeneId":"7091"},{"alias":"E(spI)","entrezGeneId":"7091"},{"alias":"ESG","entrezGeneId":"7091"},{"alias":"ESG4","entrezGeneId":"7091"},{"alias":"Grg-4","entrezGeneId":"7091"},{"alias":"GRG4","entrezGeneId":"7091"},{"alias":"ASD6","entrezGeneId":"7092"},{"alias":"TLL","entrezGeneId":"7092"},{"alias":"ILWEQ","entrezGeneId":"7094"},{"alias":"talin-1","entrezGeneId":"7094"},{"alias":"TLN","entrezGeneId":"7094"},{"alias":"Dtrp1","entrezGeneId":"7095"},{"alias":"HTP1","entrezGeneId":"7095"},{"alias":"TLOC1","entrezGeneId":"7095"},{"alias":"TP-1","entrezGeneId":"7095"},{"alias":"CD281","entrezGeneId":"7096"},{"alias":"rsc786","entrezGeneId":"7096"},{"alias":"TIL","entrezGeneId":"7096"},{"alias":"TIL. LPRS5","entrezGeneId":"7096"},{"alias":"CD282","entrezGeneId":"7097"},{"alias":"TIL4","entrezGeneId":"7097"},{"alias":"CD283","entrezGeneId":"7098"},{"alias":"IIAE2","entrezGeneId":"7098"},{"alias":"ARMD10","entrezGeneId":"7099"},{"alias":"CD284","entrezGeneId":"7099"},{"alias":"TLR-4","entrezGeneId":"7099"},{"alias":"TOLL","entrezGeneId":"7099"},{"alias":"MELIOS","entrezGeneId":"7100"},{"alias":"SLE1","entrezGeneId":"7100"},{"alias":"SLEB1","entrezGeneId":"7100"},{"alias":"TIL3","entrezGeneId":"7100"},{"alias":"TLL","entrezGeneId":"7101"},{"alias":"TLX","entrezGeneId":"7101"},{"alias":"XTLL","entrezGeneId":"7101"},{"alias":"A15","entrezGeneId":"7102"},{"alias":"CCG-B7","entrezGeneId":"7102"},{"alias":"CD231","entrezGeneId":"7102"},{"alias":"DXS1692E","entrezGeneId":"7102"},{"alias":"MRX58","entrezGeneId":"7102"},{"alias":"MXS1","entrezGeneId":"7102"},{"alias":"TALLA-1","entrezGeneId":"7102"},{"alias":"TM4SF2","entrezGeneId":"7102"},{"alias":"TM4SF2b","entrezGeneId":"7102"},{"alias":"CO-029","entrezGeneId":"7103"},{"alias":"TM4SF3","entrezGeneId":"7103"},{"alias":"il-TMP","entrezGeneId":"7104"},{"alias":"ILTMP","entrezGeneId":"7104"},{"alias":"T245","entrezGeneId":"7105"},{"alias":"TM4SF6","entrezGeneId":"7105"},{"alias":"TSPAN-6","entrezGeneId":"7105"},{"alias":"NAG-2","entrezGeneId":"7106"},{"alias":"NAG2","entrezGeneId":"7106"},{"alias":"TETRASPAN","entrezGeneId":"7106"},{"alias":"TM4SF7","entrezGeneId":"7106"},{"alias":"TSPAN-4","entrezGeneId":"7106"},{"alias":"TM7SF1","entrezGeneId":"7107"},{"alias":"ANG1","entrezGeneId":"7108"},{"alias":"DHCR14A","entrezGeneId":"7108"},{"alias":"NET47","entrezGeneId":"7108"},{"alias":"EHOC-1","entrezGeneId":"7109"},{"alias":"EHOC1","entrezGeneId":"7109"},{"alias":"GT334","entrezGeneId":"7109"},{"alias":"TMEM1","entrezGeneId":"7109"},{"alias":"TRS130","entrezGeneId":"7109"},{"alias":"TRS30","entrezGeneId":"7109"},{"alias":"ARA160","entrezGeneId":"7110"},{"alias":"TMF","entrezGeneId":"7110"},{"alias":"D9S57E","entrezGeneId":"7111"},{"alias":"ETMOD","entrezGeneId":"7111"},{"alias":"TMOD","entrezGeneId":"7111"},{"alias":"CMD1T","entrezGeneId":"7112"},{"alias":"LAP2","entrezGeneId":"7112"},{"alias":"LEMD4","entrezGeneId":"7112"},{"alias":"PRO0868","entrezGeneId":"7112"},{"alias":"TP","entrezGeneId":"7112"},{"alias":"PP9284","entrezGeneId":"7113"},{"alias":"PRSS10","entrezGeneId":"7113"},{"alias":"FX","entrezGeneId":"7114"},{"alias":"PTMB4","entrezGeneId":"7114"},{"alias":"TB4X","entrezGeneId":"7114"},{"alias":"TMSB4","entrezGeneId":"7114"},{"alias":"TMSL1","entrezGeneId":"7115"},{"alias":"TMSL2","entrezGeneId":"7116"},{"alias":"TMSL3","entrezGeneId":"7117"},{"alias":"TMSL4","entrezGeneId":"7118"},{"alias":"TMSL5","entrezGeneId":"7119"},{"alias":"TMSB4L","entrezGeneId":"7120"},{"alias":"TMSL6","entrezGeneId":"7120"},{"alias":"TMSL7","entrezGeneId":"7121"},{"alias":"AWAL","entrezGeneId":"7122"},{"alias":"BEC1","entrezGeneId":"7122"},{"alias":"CPETRL1","entrezGeneId":"7122"},{"alias":"TMVCF","entrezGeneId":"7122"},{"alias":"TN","entrezGeneId":"7123"},{"alias":"TNA","entrezGeneId":"7123"},{"alias":"DIF","entrezGeneId":"7124"},{"alias":"TNF-alpha","entrezGeneId":"7124"},{"alias":"TNFA","entrezGeneId":"7124"},{"alias":"TNFSF2","entrezGeneId":"7124"},{"alias":"TNLG1F","entrezGeneId":"7124"},{"alias":"B12","entrezGeneId":"7126"},{"alias":"B61","entrezGeneId":"7126"},{"alias":"BTBD34","entrezGeneId":"7126"},{"alias":"EDP1","entrezGeneId":"7126"},{"alias":"hBACURD2","entrezGeneId":"7126"},{"alias":"B94","entrezGeneId":"7127"},{"alias":"EXOC3L3","entrezGeneId":"7127"},{"alias":"A20","entrezGeneId":"7128"},{"alias":"AISBL","entrezGeneId":"7128"},{"alias":"OTUD7C","entrezGeneId":"7128"},{"alias":"TNFA1P2","entrezGeneId":"7128"},{"alias":"TSG-6","entrezGeneId":"7130"},{"alias":"TSG6","entrezGeneId":"7130"},{"alias":"CD120a","entrezGeneId":"7132"},{"alias":"FPF","entrezGeneId":"7132"},{"alias":"p55","entrezGeneId":"7132"},{"alias":"p55-R","entrezGeneId":"7132"},{"alias":"p60","entrezGeneId":"7132"},{"alias":"TBP1","entrezGeneId":"7132"},{"alias":"TNF-R","entrezGeneId":"7132"},{"alias":"TNF-R-I","entrezGeneId":"7132"},{"alias":"TNF-R55","entrezGeneId":"7132"},{"alias":"TNFAR","entrezGeneId":"7132"},{"alias":"TNFR1","entrezGeneId":"7132"},{"alias":"TNFR55","entrezGeneId":"7132"},{"alias":"TNFR60","entrezGeneId":"7132"},{"alias":"CD120b","entrezGeneId":"7133"},{"alias":"p75","entrezGeneId":"7133"},{"alias":"p75TNFR","entrezGeneId":"7133"},{"alias":"TBPII","entrezGeneId":"7133"},{"alias":"TNF-R-II","entrezGeneId":"7133"},{"alias":"TNF-R75","entrezGeneId":"7133"},{"alias":"TNFBR","entrezGeneId":"7133"},{"alias":"TNFR1B","entrezGeneId":"7133"},{"alias":"TNFR2","entrezGeneId":"7133"},{"alias":"TNFR80","entrezGeneId":"7133"},{"alias":"CMD1Z","entrezGeneId":"7134"},{"alias":"CMH13","entrezGeneId":"7134"},{"alias":"TN-C","entrezGeneId":"7134"},{"alias":"TNC","entrezGeneId":"7134"},{"alias":"TNNC","entrezGeneId":"7134"},{"alias":"SSTNI","entrezGeneId":"7135"},{"alias":"TNN1","entrezGeneId":"7135"},{"alias":"AMCD2B","entrezGeneId":"7136"},{"alias":"DA2B","entrezGeneId":"7136"},{"alias":"FSSV","entrezGeneId":"7136"},{"alias":"fsTnI","entrezGeneId":"7136"},{"alias":"CMD1FF","entrezGeneId":"7137"},{"alias":"CMD2A","entrezGeneId":"7137"},{"alias":"CMH7","entrezGeneId":"7137"},{"alias":"cTnI","entrezGeneId":"7137"},{"alias":"RCM1","entrezGeneId":"7137"},{"alias":"TNNC1","entrezGeneId":"7137"},{"alias":"ANM","entrezGeneId":"7138"},{"alias":"NEM5","entrezGeneId":"7138"},{"alias":"STNT","entrezGeneId":"7138"},{"alias":"TNT","entrezGeneId":"7138"},{"alias":"TNTS","entrezGeneId":"7138"},{"alias":"CMD1D","entrezGeneId":"7139"},{"alias":"CMH2","entrezGeneId":"7139"},{"alias":"CMPD2","entrezGeneId":"7139"},{"alias":"cTnT","entrezGeneId":"7139"},{"alias":"LVNC6","entrezGeneId":"7139"},{"alias":"RCM3","entrezGeneId":"7139"},{"alias":"TnTC","entrezGeneId":"7139"},{"alias":"TNTF","entrezGeneId":"7140"},{"alias":"TP1","entrezGeneId":"7141"},{"alias":"TP2","entrezGeneId":"7142"},{"alias":"TN-R","entrezGeneId":"7143"},{"alias":"MST091","entrezGeneId":"7145"},{"alias":"MST122","entrezGeneId":"7145"},{"alias":"MST127","entrezGeneId":"7145"},{"alias":"MSTP091","entrezGeneId":"7145"},{"alias":"MSTP122","entrezGeneId":"7145"},{"alias":"MSTP127","entrezGeneId":"7145"},{"alias":"MXRA6","entrezGeneId":"7145"},{"alias":"PPP1R155","entrezGeneId":"7145"},{"alias":"TNS","entrezGeneId":"7145"},{"alias":"D6S103E","entrezGeneId":"7146"},{"alias":"HXBL","entrezGeneId":"7146"},{"alias":"TNX","entrezGeneId":"7146"},{"alias":"XA","entrezGeneId":"7146"},{"alias":"EDS3","entrezGeneId":"7148"},{"alias":"EDSCLL","entrezGeneId":"7148"},{"alias":"HXBL","entrezGeneId":"7148"},{"alias":"TENX","entrezGeneId":"7148"},{"alias":"TN-X","entrezGeneId":"7148"},{"alias":"TNX","entrezGeneId":"7148"},{"alias":"TNXB1","entrezGeneId":"7148"},{"alias":"TNXB2","entrezGeneId":"7148"},{"alias":"TNXBS","entrezGeneId":"7148"},{"alias":"VUR8","entrezGeneId":"7148"},{"alias":"XB","entrezGeneId":"7148"},{"alias":"XBS","entrezGeneId":"7148"},{"alias":"TOPI","entrezGeneId":"7150"},{"alias":"TOP2","entrezGeneId":"7153"},{"alias":"TP2A","entrezGeneId":"7153"},{"alias":"TRAN","entrezGeneId":"7154"},{"alias":"TRNAA1","entrezGeneId":"7154"},{"alias":"top2beta","entrezGeneId":"7155"},{"alias":"TOPIIB","entrezGeneId":"7155"},{"alias":"TOP3","entrezGeneId":"7156"},{"alias":"ZGRF7","entrezGeneId":"7156"},{"alias":"BCC7","entrezGeneId":"7157"},{"alias":"LFS1","entrezGeneId":"7157"},{"alias":"P53","entrezGeneId":"7157"},{"alias":"TRP53","entrezGeneId":"7157"},{"alias":"53BP1","entrezGeneId":"7158"},{"alias":"p202","entrezGeneId":"7158"},{"alias":"p53BP1","entrezGeneId":"7158"},{"alias":"TDRD30","entrezGeneId":"7158"},{"alias":"TP53","entrezGeneId":"7158"},{"alias":"53BP2","entrezGeneId":"7159"},{"alias":"ASPP2","entrezGeneId":"7159"},{"alias":"BBP","entrezGeneId":"7159"},{"alias":"P53BP2","entrezGeneId":"7159"},{"alias":"PPP1R13A","entrezGeneId":"7159"},{"alias":"P73","entrezGeneId":"7161"},{"alias":"5T4","entrezGeneId":"7162"},{"alias":"5T4AG","entrezGeneId":"7162"},{"alias":"M6P1","entrezGeneId":"7162"},{"alias":"WAIF1","entrezGeneId":"7162"},{"alias":"D52","entrezGeneId":"7163"},{"alias":"hD52","entrezGeneId":"7163"},{"alias":"N8L","entrezGeneId":"7163"},{"alias":"PC-1","entrezGeneId":"7163"},{"alias":"PrLZ","entrezGeneId":"7163"},{"alias":"D53","entrezGeneId":"7164"},{"alias":"D54","entrezGeneId":"7165"},{"alias":"TPD54","entrezGeneId":"7165"},{"alias":"TPRH","entrezGeneId":"7166"},{"alias":"TRPH","entrezGeneId":"7166"},{"alias":"HEL-S-49","entrezGeneId":"7167"},{"alias":"TIM","entrezGeneId":"7167"},{"alias":"TPI","entrezGeneId":"7167"},{"alias":"TPID","entrezGeneId":"7167"},{"alias":"C15orf13","entrezGeneId":"7168"},{"alias":"CMD1Y","entrezGeneId":"7168"},{"alias":"CMH3","entrezGeneId":"7168"},{"alias":"HEL-S-265","entrezGeneId":"7168"},{"alias":"HTM-alpha","entrezGeneId":"7168"},{"alias":"LVNC9","entrezGeneId":"7168"},{"alias":"TMSA","entrezGeneId":"7168"},{"alias":"AMCD1","entrezGeneId":"7169"},{"alias":"DA1","entrezGeneId":"7169"},{"alias":"DA2B","entrezGeneId":"7169"},{"alias":"HEL-S-273","entrezGeneId":"7169"},{"alias":"NEM4","entrezGeneId":"7169"},{"alias":"TMSB","entrezGeneId":"7169"},{"alias":"CAPM1","entrezGeneId":"7170"},{"alias":"CFTD","entrezGeneId":"7170"},{"alias":"HEL-189","entrezGeneId":"7170"},{"alias":"HEL-S-82p","entrezGeneId":"7170"},{"alias":"hscp30","entrezGeneId":"7170"},{"alias":"NEM1","entrezGeneId":"7170"},{"alias":"OK/SW-cl.5","entrezGeneId":"7170"},{"alias":"TM-5","entrezGeneId":"7170"},{"alias":"TM3","entrezGeneId":"7170"},{"alias":"TM30","entrezGeneId":"7170"},{"alias":"TM30nm","entrezGeneId":"7170"},{"alias":"TM5","entrezGeneId":"7170"},{"alias":"TPMsk3","entrezGeneId":"7170"},{"alias":"TRK","entrezGeneId":"7170"},{"alias":"HEL-S-108","entrezGeneId":"7171"},{"alias":"TPMTD","entrezGeneId":"7172"},{"alias":"MSA","entrezGeneId":"7173"},{"alias":"TDH2A","entrezGeneId":"7173"},{"alias":"TPX","entrezGeneId":"7173"},{"alias":"TPP-2","entrezGeneId":"7174"},{"alias":"TPP-II","entrezGeneId":"7174"},{"alias":"TPPII","entrezGeneId":"7174"},{"alias":"TPS1","entrezGeneId":"7177"},{"alias":"TPS2","entrezGeneId":"7177"},{"alias":"TPSB1","entrezGeneId":"7177"},{"alias":"HRF","entrezGeneId":"7178"},{"alias":"p02","entrezGeneId":"7178"},{"alias":"p23","entrezGeneId":"7178"},{"alias":"TCTP","entrezGeneId":"7178"},{"alias":"CT44","entrezGeneId":"7179"},{"alias":"PTEN2","entrezGeneId":"7179"},{"alias":"CRISP-2","entrezGeneId":"7180"},{"alias":"CT36","entrezGeneId":"7180"},{"alias":"GAPDL5","entrezGeneId":"7180"},{"alias":"TPX1","entrezGeneId":"7180"},{"alias":"TSP1","entrezGeneId":"7180"},{"alias":"TR2","entrezGeneId":"7181"},{"alias":"TAK1","entrezGeneId":"7182"},{"alias":"TR4","entrezGeneId":"7182"},{"alias":"TRC","entrezGeneId":"7183"},{"alias":"TRNAC1","entrezGeneId":"7183"},{"alias":"ECGP","entrezGeneId":"7184"},{"alias":"GP96","entrezGeneId":"7184"},{"alias":"GRP94","entrezGeneId":"7184"},{"alias":"HEL-S-125m","entrezGeneId":"7184"},{"alias":"HEL35","entrezGeneId":"7184"},{"alias":"TRA1","entrezGeneId":"7184"},{"alias":"EBI6","entrezGeneId":"7185"},{"alias":"MGC:10353","entrezGeneId":"7185"},{"alias":"MGC:45012","entrezGeneId":"7186"},{"alias":"RNF117","entrezGeneId":"7186"},{"alias":"TRAP","entrezGeneId":"7186"},{"alias":"TRAP3","entrezGeneId":"7186"},{"alias":"CAP-1","entrezGeneId":"7187"},{"alias":"CAP1","entrezGeneId":"7187"},{"alias":"CD40bp","entrezGeneId":"7187"},{"alias":"CRAF1","entrezGeneId":"7187"},{"alias":"IIAE5","entrezGeneId":"7187"},{"alias":"LAP1","entrezGeneId":"7187"},{"alias":"RNF118","entrezGeneId":"7187"},{"alias":"MGC:39780","entrezGeneId":"7188"},{"alias":"RNF84","entrezGeneId":"7188"},{"alias":"MGC:3310","entrezGeneId":"7189"},{"alias":"RNF85","entrezGeneId":"7189"},{"alias":"GRP94b","entrezGeneId":"7190"},{"alias":"GRP94P1","entrezGeneId":"7190"},{"alias":"HSP","entrezGeneId":"7190"},{"alias":"HSPCP2","entrezGeneId":"7190"},{"alias":"TRA1P1","entrezGeneId":"7190"},{"alias":"TRAP1","entrezGeneId":"7190"},{"alias":"TRD","entrezGeneId":"7192"},{"alias":"TRNAD1","entrezGeneId":"7192"},{"alias":"TRE","entrezGeneId":"7193"},{"alias":"TRNAE1","entrezGeneId":"7193"},{"alias":"TRNE","entrezGeneId":"7193"},{"alias":"TRG1","entrezGeneId":"7195"},{"alias":"TRG-GCC2-4","entrezGeneId":"7196"},{"alias":"TRG2","entrezGeneId":"7196"},{"alias":"TRNAG2","entrezGeneId":"7196"},{"alias":"TRG3","entrezGeneId":"7197"},{"alias":"TRNAG3","entrezGeneId":"7197"},{"alias":"TRG5","entrezGeneId":"7198"},{"alias":"TRGL1","entrezGeneId":"7198"},{"alias":"TRNAG5","entrezGeneId":"7198"},{"alias":"Pro-TRH","entrezGeneId":"7200"},{"alias":"TRF","entrezGeneId":"7200"},{"alias":"TRH-R","entrezGeneId":"7201"},{"alias":"TRI","entrezGeneId":"7202"},{"alias":"TRNAI1","entrezGeneId":"7202"},{"alias":"CCT-gamma","entrezGeneId":"7203"},{"alias":"CCTG","entrezGeneId":"7203"},{"alias":"PIG48","entrezGeneId":"7203"},{"alias":"TCP-1-gamma","entrezGeneId":"7203"},{"alias":"TRIC5","entrezGeneId":"7203"},{"alias":"ARHGEF23","entrezGeneId":"7204"},{"alias":"MEBAS","entrezGeneId":"7204"},{"alias":"MRD44","entrezGeneId":"7204"},{"alias":"tgat","entrezGeneId":"7204"},{"alias":"OIP-1","entrezGeneId":"7205"},{"alias":"OIP1","entrezGeneId":"7205"},{"alias":"TRIP-6","entrezGeneId":"7205"},{"alias":"TRIP6i2","entrezGeneId":"7205"},{"alias":"ZRP-1","entrezGeneId":"7205"},{"alias":"TRK-TTT3-4","entrezGeneId":"7206"},{"alias":"TRK1","entrezGeneId":"7206"},{"alias":"TRNAK1","entrezGeneId":"7206"},{"alias":"TRL-AAG2-1","entrezGeneId":"7207"},{"alias":"TRL1","entrezGeneId":"7207"},{"alias":"TRNAL1","entrezGeneId":"7207"},{"alias":"TRNP1","entrezGeneId":"7207"},{"alias":"TRL2","entrezGeneId":"7208"},{"alias":"TRNAL2","entrezGeneId":"7208"},{"alias":"TRLP1","entrezGeneId":"7209"},{"alias":"RNTMI1","entrezGeneId":"7210"},{"alias":"RNTMI2","entrezGeneId":"7210"},{"alias":"RNTMT1","entrezGeneId":"7210"},{"alias":"TRM1","entrezGeneId":"7210"},{"alias":"TRM2","entrezGeneId":"7210"},{"alias":"TRMI2","entrezGeneId":"7210"},{"alias":"TRNAM1","entrezGeneId":"7210"},{"alias":"TRNAMI2","entrezGeneId":"7210"},{"alias":"TRX-CAT1-3","entrezGeneId":"7210"},{"alias":"RNTMI","entrezGeneId":"7212"},{"alias":"RNTMI2","entrezGeneId":"7212"},{"alias":"TRM1","entrezGeneId":"7212"},{"alias":"TRMI1","entrezGeneId":"7212"},{"alias":"TRNAM2","entrezGeneId":"7212"},{"alias":"TRNAMI1","entrezGeneId":"7212"},{"alias":"TRNAMI2","entrezGeneId":"7212"},{"alias":"RNN","entrezGeneId":"7214"},{"alias":"TRN","entrezGeneId":"7214"},{"alias":"TRN1","entrezGeneId":"7214"},{"alias":"TRNAN1","entrezGeneId":"7214"},{"alias":"MAGE-d3","entrezGeneId":"7216"},{"alias":"MAGED3","entrezGeneId":"7216"},{"alias":"TRNAP1","entrezGeneId":"7217"},{"alias":"TRNP1","entrezGeneId":"7217"},{"alias":"TRP-AGG2-3","entrezGeneId":"7217"},{"alias":"TRP1","entrezGeneId":"7217"},{"alias":"TRNAP2","entrezGeneId":"7218"},{"alias":"TRNP1","entrezGeneId":"7218"},{"alias":"TRP-AGG2-4","entrezGeneId":"7218"},{"alias":"TRP2","entrezGeneId":"7218"},{"alias":"TRNAP3","entrezGeneId":"7219"},{"alias":"TRP-TGG3-5","entrezGeneId":"7219"},{"alias":"TRP3","entrezGeneId":"7219"},{"alias":"HTRP-1","entrezGeneId":"7220"},{"alias":"TRP1","entrezGeneId":"7220"},{"alias":"SCA41","entrezGeneId":"7222"},{"alias":"TRP3","entrezGeneId":"7222"},{"alias":"HTRP-4","entrezGeneId":"7223"},{"alias":"HTRP4","entrezGeneId":"7223"},{"alias":"TRP4","entrezGeneId":"7223"},{"alias":"PPP1R159","entrezGeneId":"7224"},{"alias":"TRP5","entrezGeneId":"7224"},{"alias":"FSGS2","entrezGeneId":"7225"},{"alias":"TRP6","entrezGeneId":"7225"},{"alias":"EREG1","entrezGeneId":"7226"},{"alias":"KNP3","entrezGeneId":"7226"},{"alias":"LTrpC-2","entrezGeneId":"7226"},{"alias":"LTRPC2","entrezGeneId":"7226"},{"alias":"NUDT9H","entrezGeneId":"7226"},{"alias":"NUDT9L1","entrezGeneId":"7226"},{"alias":"TRPC7","entrezGeneId":"7226"},{"alias":"GC79","entrezGeneId":"7227"},{"alias":"LGCR","entrezGeneId":"7227"},{"alias":"TRNAQ1","entrezGeneId":"7228"},{"alias":"TRQ-CTG1-2","entrezGeneId":"7228"},{"alias":"TRQ1","entrezGeneId":"7228"},{"alias":"TRNAQ2","entrezGeneId":"7229"},{"alias":"TRQ2","entrezGeneId":"7229"},{"alias":"TRNAR1","entrezGeneId":"7230"},{"alias":"TRR1","entrezGeneId":"7230"},{"alias":"TRNAR2","entrezGeneId":"7231"},{"alias":"TRR-ACG1-3","entrezGeneId":"7231"},{"alias":"TRR2","entrezGeneId":"7231"},{"alias":"TRNAR3","entrezGeneId":"7232"},{"alias":"TRR3","entrezGeneId":"7232"},{"alias":"TRNAR4","entrezGeneId":"7233"},{"alias":"TRR4","entrezGeneId":"7233"},{"alias":"tRNA(Sec)","entrezGeneId":"7234"},{"alias":"TRNAU1","entrezGeneId":"7234"},{"alias":"TRSP","entrezGeneId":"7234"},{"alias":"TRNAU2","entrezGeneId":"7235"},{"alias":"TRSP2","entrezGeneId":"7235"},{"alias":"TRSPP1","entrezGeneId":"7235"},{"alias":"TRNAT1","entrezGeneId":"7236"},{"alias":"TRT1","entrezGeneId":"7236"},{"alias":"TRNAT2","entrezGeneId":"7237"},{"alias":"TRT2","entrezGeneId":"7237"},{"alias":"TRNAT3","entrezGeneId":"7238"},{"alias":"TRT3","entrezGeneId":"7238"},{"alias":"TRNAV1","entrezGeneId":"7239"},{"alias":"TRV","entrezGeneId":"7239"},{"alias":"TRV1","entrezGeneId":"7239"},{"alias":"TRNAV2","entrezGeneId":"7240"},{"alias":"TRV2","entrezGeneId":"7240"},{"alias":"TRNAV3","entrezGeneId":"7241"},{"alias":"TRV3","entrezGeneId":"7241"},{"alias":"TRNAW1","entrezGeneId":"7246"},{"alias":"TRW","entrezGeneId":"7246"},{"alias":"BCLF-1","entrezGeneId":"7247"},{"alias":"C3PO","entrezGeneId":"7247"},{"alias":"RCHF1","entrezGeneId":"7247"},{"alias":"REHF-1","entrezGeneId":"7247"},{"alias":"TBRBP","entrezGeneId":"7247"},{"alias":"TRSLN","entrezGeneId":"7247"},{"alias":"LAM","entrezGeneId":"7248"},{"alias":"TSC","entrezGeneId":"7248"},{"alias":"LAM","entrezGeneId":"7249"},{"alias":"PPP1R160","entrezGeneId":"7249"},{"alias":"TSC4","entrezGeneId":"7249"},{"alias":"TSG10","entrezGeneId":"7251"},{"alias":"VPS23","entrezGeneId":"7251"},{"alias":"TSH-B","entrezGeneId":"7252"},{"alias":"TSH-BETA","entrezGeneId":"7252"},{"alias":"CHNG1","entrezGeneId":"7253"},{"alias":"hTSHR-I","entrezGeneId":"7253"},{"alias":"LGR3","entrezGeneId":"7253"},{"alias":"TRAX","entrezGeneId":"7257"},{"alias":"CT78","entrezGeneId":"7258"},{"alias":"DYS14","entrezGeneId":"7258"},{"alias":"pJA923","entrezGeneId":"7258"},{"alias":"TSPY","entrezGeneId":"7258"},{"alias":"TSPYL","entrezGeneId":"7259"},{"alias":"EIPR-1","entrezGeneId":"7260"},{"alias":"TSSC1","entrezGeneId":"7260"},{"alias":"BRW1C","entrezGeneId":"7262"},{"alias":"BWR1C","entrezGeneId":"7262"},{"alias":"HLDA2","entrezGeneId":"7262"},{"alias":"IPL","entrezGeneId":"7262"},{"alias":"TSSC3","entrezGeneId":"7262"},{"alias":"RDS","entrezGeneId":"7263"},{"alias":"FX","entrezGeneId":"7264"},{"alias":"P35B","entrezGeneId":"7264"},{"alias":"SDR4E1","entrezGeneId":"7264"},{"alias":"TPR1","entrezGeneId":"7265"},{"alias":"DJ11","entrezGeneId":"7266"},{"alias":"DJC7","entrezGeneId":"7266"},{"alias":"TPR2","entrezGeneId":"7266"},{"alias":"TTC2","entrezGeneId":"7266"},{"alias":"DCRR1","entrezGeneId":"7267"},{"alias":"RNF105","entrezGeneId":"7267"},{"alias":"TPRDIII","entrezGeneId":"7267"},{"alias":"CNS1","entrezGeneId":"7268"},{"alias":"TTF-1","entrezGeneId":"7270"},{"alias":"TTF-I","entrezGeneId":"7270"},{"alias":"CT96","entrezGeneId":"7272"},{"alias":"ESK","entrezGeneId":"7272"},{"alias":"MPH1","entrezGeneId":"7272"},{"alias":"MPS1","entrezGeneId":"7272"},{"alias":"MPS1L1","entrezGeneId":"7272"},{"alias":"PYT","entrezGeneId":"7272"},{"alias":"CMD1G","entrezGeneId":"7273"},{"alias":"CMH9","entrezGeneId":"7273"},{"alias":"CMPD4","entrezGeneId":"7273"},{"alias":"EOMFC","entrezGeneId":"7273"},{"alias":"HMERF","entrezGeneId":"7273"},{"alias":"LGMD2J","entrezGeneId":"7273"},{"alias":"MYLK5","entrezGeneId":"7273"},{"alias":"SALMY","entrezGeneId":"7273"},{"alias":"TMD","entrezGeneId":"7273"},{"alias":"alphaTTP","entrezGeneId":"7274"},{"alias":"ATTP","entrezGeneId":"7274"},{"alias":"AVED","entrezGeneId":"7274"},{"alias":"TTP1","entrezGeneId":"7274"},{"alias":"rd5","entrezGeneId":"7275"},{"alias":"RDOB","entrezGeneId":"7275"},{"alias":"ATTR","entrezGeneId":"7276"},{"alias":"CTS","entrezGeneId":"7276"},{"alias":"CTS1","entrezGeneId":"7276"},{"alias":"HEL111","entrezGeneId":"7276"},{"alias":"HsT2651","entrezGeneId":"7276"},{"alias":"PALB","entrezGeneId":"7276"},{"alias":"TBPA","entrezGeneId":"7276"},{"alias":"ALS22","entrezGeneId":"7277"},{"alias":"H2-ALPHA","entrezGeneId":"7277"},{"alias":"TUBA1","entrezGeneId":"7277"},{"alias":"bA408E5.3","entrezGeneId":"7278"},{"alias":"TUBA2","entrezGeneId":"7278"},{"alias":"CDCBM5","entrezGeneId":"7280"},{"alias":"TUBB","entrezGeneId":"7280"},{"alias":"TUBB2","entrezGeneId":"7280"},{"alias":"CDCBM4","entrezGeneId":"7283"},{"alias":"GCP-1","entrezGeneId":"7283"},{"alias":"TUBG","entrezGeneId":"7283"},{"alias":"TUBGCP1","entrezGeneId":"7283"},{"alias":"COXPD4","entrezGeneId":"7284"},{"alias":"EF-TuMT","entrezGeneId":"7284"},{"alias":"EFTU","entrezGeneId":"7284"},{"alias":"P43","entrezGeneId":"7284"},{"alias":"LCA15","entrezGeneId":"7287"},{"alias":"RP14","entrezGeneId":"7287"},{"alias":"TUBL1","entrezGeneId":"7287"},{"alias":"CT65","entrezGeneId":"7288"},{"alias":"TUBL2","entrezGeneId":"7288"},{"alias":"TUBL3","entrezGeneId":"7289"},{"alias":"DGCR1","entrezGeneId":"7290"},{"alias":"TUP1","entrezGeneId":"7290"},{"alias":"TUPLE1","entrezGeneId":"7290"},{"alias":"ACS3","entrezGeneId":"7291"},{"alias":"bHLHa38","entrezGeneId":"7291"},{"alias":"BPES2","entrezGeneId":"7291"},{"alias":"BPES3","entrezGeneId":"7291"},{"alias":"CRS","entrezGeneId":"7291"},{"alias":"CRS1","entrezGeneId":"7291"},{"alias":"CSO","entrezGeneId":"7291"},{"alias":"SCS","entrezGeneId":"7291"},{"alias":"SWCOS","entrezGeneId":"7291"},{"alias":"TWIST","entrezGeneId":"7291"},{"alias":"CD134L","entrezGeneId":"7292"},{"alias":"CD252","entrezGeneId":"7292"},{"alias":"GP34","entrezGeneId":"7292"},{"alias":"OX-40L","entrezGeneId":"7292"},{"alias":"OX4OL","entrezGeneId":"7292"},{"alias":"TNLG2B","entrezGeneId":"7292"},{"alias":"TXGP1","entrezGeneId":"7292"},{"alias":"ACT35","entrezGeneId":"7293"},{"alias":"CD134","entrezGeneId":"7293"},{"alias":"IMD16","entrezGeneId":"7293"},{"alias":"OX40","entrezGeneId":"7293"},{"alias":"TXGP1L","entrezGeneId":"7293"},{"alias":"BTKL","entrezGeneId":"7294"},{"alias":"PSCTK5","entrezGeneId":"7294"},{"alias":"PTK4","entrezGeneId":"7294"},{"alias":"RLK","entrezGeneId":"7294"},{"alias":"TKL","entrezGeneId":"7294"},{"alias":"TRDX","entrezGeneId":"7295"},{"alias":"TRX","entrezGeneId":"7295"},{"alias":"TRX1","entrezGeneId":"7295"},{"alias":"GRIM-12","entrezGeneId":"7296"},{"alias":"TR","entrezGeneId":"7296"},{"alias":"TR1","entrezGeneId":"7296"},{"alias":"TRXR1","entrezGeneId":"7296"},{"alias":"TXNR","entrezGeneId":"7296"},{"alias":"IMD35","entrezGeneId":"7297"},{"alias":"JTK1","entrezGeneId":"7297"},{"alias":"HST422","entrezGeneId":"7298"},{"alias":"TMS","entrezGeneId":"7298"},{"alias":"TS","entrezGeneId":"7298"},{"alias":"ATN","entrezGeneId":"7299"},{"alias":"CMM8","entrezGeneId":"7299"},{"alias":"OCA1","entrezGeneId":"7299"},{"alias":"OCA1A","entrezGeneId":"7299"},{"alias":"OCAIA","entrezGeneId":"7299"},{"alias":"SHEP3","entrezGeneId":"7299"},{"alias":"BYK","entrezGeneId":"7301"},{"alias":"Dtk","entrezGeneId":"7301"},{"alias":"Etk-2","entrezGeneId":"7301"},{"alias":"Rek","entrezGeneId":"7301"},{"alias":"RSE","entrezGeneId":"7301"},{"alias":"Sky","entrezGeneId":"7301"},{"alias":"Tif","entrezGeneId":"7301"},{"alias":"HRZ","entrezGeneId":"7303"},{"alias":"DAP12","entrezGeneId":"7305"},{"alias":"KARAP","entrezGeneId":"7305"},{"alias":"PLOSL","entrezGeneId":"7305"},{"alias":"b-PROTEIN","entrezGeneId":"7306"},{"alias":"CAS2","entrezGeneId":"7306"},{"alias":"CATB","entrezGeneId":"7306"},{"alias":"GP75","entrezGeneId":"7306"},{"alias":"OCA3","entrezGeneId":"7306"},{"alias":"TRP","entrezGeneId":"7306"},{"alias":"TRP1","entrezGeneId":"7306"},{"alias":"TYRP","entrezGeneId":"7306"},{"alias":"FP793","entrezGeneId":"7307"},{"alias":"RN","entrezGeneId":"7307"},{"alias":"RNU2AF1","entrezGeneId":"7307"},{"alias":"U2AF35","entrezGeneId":"7307"},{"alias":"U2AFBP","entrezGeneId":"7307"},{"alias":"U2AF1-RS1","entrezGeneId":"7310"},{"alias":"U2AF1L1","entrezGeneId":"7310"},{"alias":"U2AF1P","entrezGeneId":"7310"},{"alias":"U2AF1RS1","entrezGeneId":"7310"},{"alias":"U2AFBPL","entrezGeneId":"7310"},{"alias":"ZC3H21","entrezGeneId":"7310"},{"alias":"ZRSR1","entrezGeneId":"7310"},{"alias":"CEP52","entrezGeneId":"7311"},{"alias":"HUBCEP52","entrezGeneId":"7311"},{"alias":"L40","entrezGeneId":"7311"},{"alias":"RPL40","entrezGeneId":"7311"},{"alias":"RPL40_1_796","entrezGeneId":"7312"},{"alias":"RPL40_4_1339","entrezGeneId":"7313"},{"alias":"HEL-S-50","entrezGeneId":"7314"},{"alias":"HMG20","entrezGeneId":"7316"},{"alias":"A1S9","entrezGeneId":"7317"},{"alias":"A1S9T","entrezGeneId":"7317"},{"alias":"A1ST","entrezGeneId":"7317"},{"alias":"AMCX1","entrezGeneId":"7317"},{"alias":"CFAP124","entrezGeneId":"7317"},{"alias":"GXP1","entrezGeneId":"7317"},{"alias":"POC20","entrezGeneId":"7317"},{"alias":"SMAX2","entrezGeneId":"7317"},{"alias":"UBA1A","entrezGeneId":"7317"},{"alias":"UBE1","entrezGeneId":"7317"},{"alias":"UBE1X","entrezGeneId":"7317"},{"alias":"D8","entrezGeneId":"7318"},{"alias":"UBA1B","entrezGeneId":"7318"},{"alias":"UBE1L","entrezGeneId":"7318"},{"alias":"UBE2","entrezGeneId":"7318"},{"alias":"HHR6A","entrezGeneId":"7319"},{"alias":"MRXS30","entrezGeneId":"7319"},{"alias":"MRXSN","entrezGeneId":"7319"},{"alias":"RAD6A","entrezGeneId":"7319"},{"alias":"UBC2","entrezGeneId":"7319"},{"alias":"E2-17kDa","entrezGeneId":"7320"},{"alias":"HHR6B","entrezGeneId":"7320"},{"alias":"HR6B","entrezGeneId":"7320"},{"alias":"RAD6B","entrezGeneId":"7320"},{"alias":"UBC2","entrezGeneId":"7320"},{"alias":"E2(17)KB1","entrezGeneId":"7321"},{"alias":"SFT","entrezGeneId":"7321"},{"alias":"UBC4/5","entrezGeneId":"7321"},{"alias":"UBCH5","entrezGeneId":"7321"},{"alias":"UBCH5A","entrezGeneId":"7321"},{"alias":"E2(17)KB2","entrezGeneId":"7322"},{"alias":"PUBC1","entrezGeneId":"7322"},{"alias":"UBC4","entrezGeneId":"7322"},{"alias":"UBC4/5","entrezGeneId":"7322"},{"alias":"UBCH4","entrezGeneId":"7322"},{"alias":"UBCH5B","entrezGeneId":"7322"},{"alias":"E2(17)KB3","entrezGeneId":"7323"},{"alias":"UBC4/5","entrezGeneId":"7323"},{"alias":"UBCH5C","entrezGeneId":"7323"},{"alias":"UBCH6","entrezGeneId":"7324"},{"alias":"UBCH8","entrezGeneId":"7325"},{"alias":"E217K","entrezGeneId":"7326"},{"alias":"UBC7","entrezGeneId":"7326"},{"alias":"UBE2G","entrezGeneId":"7326"},{"alias":"UBC7","entrezGeneId":"7327"},{"alias":"E2-20K","entrezGeneId":"7328"},{"alias":"GID3","entrezGeneId":"7328"},{"alias":"UBC8","entrezGeneId":"7328"},{"alias":"UBCH","entrezGeneId":"7328"},{"alias":"UBCH2","entrezGeneId":"7328"},{"alias":"C358B7.1","entrezGeneId":"7329"},{"alias":"P18","entrezGeneId":"7329"},{"alias":"UBC9","entrezGeneId":"7329"},{"alias":"E2-F1","entrezGeneId":"7332"},{"alias":"L-UBC","entrezGeneId":"7332"},{"alias":"UBCH7","entrezGeneId":"7332"},{"alias":"UbcM4","entrezGeneId":"7332"},{"alias":"HEL-S-71","entrezGeneId":"7334"},{"alias":"UBC13","entrezGeneId":"7334"},{"alias":"UbcH-ben","entrezGeneId":"7334"},{"alias":"UbcH13","entrezGeneId":"7334"},{"alias":"UBCHBEN; UBC13","entrezGeneId":"7334"},{"alias":"CIR1","entrezGeneId":"7335"},{"alias":"CROC-1","entrezGeneId":"7335"},{"alias":"CROC1","entrezGeneId":"7335"},{"alias":"UBE2V","entrezGeneId":"7335"},{"alias":"UEV-1","entrezGeneId":"7335"},{"alias":"UEV1","entrezGeneId":"7335"},{"alias":"UEV1A","entrezGeneId":"7335"},{"alias":"DDVit-1","entrezGeneId":"7336"},{"alias":"DDVIT1","entrezGeneId":"7336"},{"alias":"EDAF-1","entrezGeneId":"7336"},{"alias":"EDPF-1","entrezGeneId":"7336"},{"alias":"EDPF1","entrezGeneId":"7336"},{"alias":"MMS2","entrezGeneId":"7336"},{"alias":"UEV-2","entrezGeneId":"7336"},{"alias":"UEV2","entrezGeneId":"7336"},{"alias":"ANCR","entrezGeneId":"7337"},{"alias":"AS","entrezGeneId":"7337"},{"alias":"E6-AP","entrezGeneId":"7337"},{"alias":"EPVE6AP","entrezGeneId":"7337"},{"alias":"HPVE6A","entrezGeneId":"7337"},{"alias":"DAP1","entrezGeneId":"7341"},{"alias":"GMP1","entrezGeneId":"7341"},{"alias":"OFC10","entrezGeneId":"7341"},{"alias":"PIC1","entrezGeneId":"7341"},{"alias":"SENP2","entrezGeneId":"7341"},{"alias":"SMT3","entrezGeneId":"7341"},{"alias":"SMT3C","entrezGeneId":"7341"},{"alias":"SMT3H3","entrezGeneId":"7341"},{"alias":"UBL1","entrezGeneId":"7341"},{"alias":"LBP-1a","entrezGeneId":"7342"},{"alias":"LBP-1B","entrezGeneId":"7342"},{"alias":"LBP1A","entrezGeneId":"7342"},{"alias":"LBP1B","entrezGeneId":"7342"},{"alias":"CONDBA","entrezGeneId":"7343"},{"alias":"NOR-90","entrezGeneId":"7343"},{"alias":"UBF","entrezGeneId":"7343"},{"alias":"UBF-1","entrezGeneId":"7343"},{"alias":"UBF1","entrezGeneId":"7343"},{"alias":"UBF2","entrezGeneId":"7343"},{"alias":"HEL-117","entrezGeneId":"7345"},{"alias":"HEL-S-53","entrezGeneId":"7345"},{"alias":"NDGOA","entrezGeneId":"7345"},{"alias":"PARK5","entrezGeneId":"7345"},{"alias":"PGP 9.5","entrezGeneId":"7345"},{"alias":"PGP9.5","entrezGeneId":"7345"},{"alias":"PGP95","entrezGeneId":"7345"},{"alias":"SPG79","entrezGeneId":"7345"},{"alias":"Uch-L1","entrezGeneId":"7345"},{"alias":"UCH-L3","entrezGeneId":"7347"},{"alias":"TSPAN20","entrezGeneId":"7348"},{"alias":"UPIB","entrezGeneId":"7348"},{"alias":"UPK1","entrezGeneId":"7348"},{"alias":"UI","entrezGeneId":"7349"},{"alias":"UROC","entrezGeneId":"7349"},{"alias":"SLC25A7","entrezGeneId":"7350"},{"alias":"UCP","entrezGeneId":"7350"},{"alias":"BMIQ4","entrezGeneId":"7351"},{"alias":"SLC25A8","entrezGeneId":"7351"},{"alias":"UCPH","entrezGeneId":"7351"},{"alias":"SLC25A9","entrezGeneId":"7352"},{"alias":"UFD1L","entrezGeneId":"7353"},{"alias":"CDG2M","entrezGeneId":"7355"},{"alias":"CDGX","entrezGeneId":"7355"},{"alias":"UDP-Gal-Tr","entrezGeneId":"7355"},{"alias":"UGALT","entrezGeneId":"7355"},{"alias":"UGAT","entrezGeneId":"7355"},{"alias":"UGT","entrezGeneId":"7355"},{"alias":"UGT1","entrezGeneId":"7355"},{"alias":"UGT2","entrezGeneId":"7355"},{"alias":"UGTL","entrezGeneId":"7355"},{"alias":"CC10","entrezGeneId":"7356"},{"alias":"CC16","entrezGeneId":"7356"},{"alias":"CCPBP","entrezGeneId":"7356"},{"alias":"CCSP","entrezGeneId":"7356"},{"alias":"UGB","entrezGeneId":"7356"},{"alias":"UP-1","entrezGeneId":"7356"},{"alias":"UP1","entrezGeneId":"7356"},{"alias":"GCS","entrezGeneId":"7357"},{"alias":"GLCT1","entrezGeneId":"7357"},{"alias":"GDH","entrezGeneId":"7358"},{"alias":"UDP-GlcDH","entrezGeneId":"7358"},{"alias":"UDPGDH","entrezGeneId":"7358"},{"alias":"UGD","entrezGeneId":"7358"},{"alias":"pHC379","entrezGeneId":"7360"},{"alias":"UDPG","entrezGeneId":"7360"},{"alias":"UDPGP","entrezGeneId":"7360"},{"alias":"UDPGP2","entrezGeneId":"7360"},{"alias":"UGP1","entrezGeneId":"7360"},{"alias":"UGPP1","entrezGeneId":"7360"},{"alias":"UGPP2","entrezGeneId":"7360"},{"alias":"GNT1","entrezGeneId":"7361"},{"alias":"UGT","entrezGeneId":"7361"},{"alias":"UGT1","entrezGeneId":"7361"},{"alias":"UGT1A@","entrezGeneId":"7361"},{"alias":"HLUG25","entrezGeneId":"7363"},{"alias":"UDPGT2B4","entrezGeneId":"7363"},{"alias":"UDPGTh-1","entrezGeneId":"7363"},{"alias":"UDPGTH1","entrezGeneId":"7363"},{"alias":"UGT2B11","entrezGeneId":"7363"},{"alias":"UDPGT 2B7","entrezGeneId":"7364"},{"alias":"UDPGT 2B9","entrezGeneId":"7364"},{"alias":"UDPGT2B7","entrezGeneId":"7364"},{"alias":"UDPGTh-2","entrezGeneId":"7364"},{"alias":"UDPGTH2","entrezGeneId":"7364"},{"alias":"UGT2B9","entrezGeneId":"7364"},{"alias":"UDPGT2B10","entrezGeneId":"7365"},{"alias":"HLUG4","entrezGeneId":"7366"},{"alias":"UDPGT 2B8","entrezGeneId":"7366"},{"alias":"UDPGT2B15","entrezGeneId":"7366"},{"alias":"UDPGTH3","entrezGeneId":"7366"},{"alias":"UGT2B8","entrezGeneId":"7366"},{"alias":"BMND12","entrezGeneId":"7367"},{"alias":"UDPGT2B17","entrezGeneId":"7367"},{"alias":"CGT","entrezGeneId":"7368"},{"alias":"UGT4","entrezGeneId":"7368"},{"alias":"ADMCKD2","entrezGeneId":"7369"},{"alias":"FJHN","entrezGeneId":"7369"},{"alias":"HNFJ","entrezGeneId":"7369"},{"alias":"HNFJ1","entrezGeneId":"7369"},{"alias":"MCKD2","entrezGeneId":"7369"},{"alias":"THGP","entrezGeneId":"7369"},{"alias":"THP","entrezGeneId":"7369"},{"alias":"TSA903","entrezGeneId":"7371"},{"alias":"UK","entrezGeneId":"7371"},{"alias":"UMPK","entrezGeneId":"7371"},{"alias":"OPRT","entrezGeneId":"7372"},{"alias":"UND","entrezGeneId":"7373"},{"alias":"DGU","entrezGeneId":"7374"},{"alias":"HIGM4","entrezGeneId":"7374"},{"alias":"HIGM5","entrezGeneId":"7374"},{"alias":"UDG","entrezGeneId":"7374"},{"alias":"UNG1","entrezGeneId":"7374"},{"alias":"UNG15","entrezGeneId":"7374"},{"alias":"UNG2","entrezGeneId":"7374"},{"alias":"UNP","entrezGeneId":"7375"},{"alias":"Unph","entrezGeneId":"7375"},{"alias":"LXR-b","entrezGeneId":"7376"},{"alias":"LXRB","entrezGeneId":"7376"},{"alias":"NER","entrezGeneId":"7376"},{"alias":"NER-I","entrezGeneId":"7376"},{"alias":"RIP15","entrezGeneId":"7376"},{"alias":"UNR","entrezGeneId":"7376"},{"alias":"UDRPASE","entrezGeneId":"7378"},{"alias":"UP","entrezGeneId":"7378"},{"alias":"UPASE","entrezGeneId":"7378"},{"alias":"UPP","entrezGeneId":"7378"},{"alias":"UP2","entrezGeneId":"7379"},{"alias":"UPII","entrezGeneId":"7379"},{"alias":"UP3A","entrezGeneId":"7380"},{"alias":"UPIII","entrezGeneId":"7380"},{"alias":"UPIIIA","entrezGeneId":"7380"},{"alias":"UPK3","entrezGeneId":"7380"},{"alias":"MC3DN3","entrezGeneId":"7381"},{"alias":"QCR7","entrezGeneId":"7381"},{"alias":"QP-C","entrezGeneId":"7381"},{"alias":"QPC","entrezGeneId":"7381"},{"alias":"UQBC","entrezGeneId":"7381"},{"alias":"UQBP","entrezGeneId":"7381"},{"alias":"UQCR6","entrezGeneId":"7381"},{"alias":"UQPC","entrezGeneId":"7381"},{"alias":"D3S3191","entrezGeneId":"7384"},{"alias":"QCR1","entrezGeneId":"7384"},{"alias":"UQCR1","entrezGeneId":"7384"},{"alias":"MC3DN5","entrezGeneId":"7385"},{"alias":"QCR2","entrezGeneId":"7385"},{"alias":"UQCR2","entrezGeneId":"7385"},{"alias":"RIP1","entrezGeneId":"7386"},{"alias":"RIS1","entrezGeneId":"7386"},{"alias":"RISP","entrezGeneId":"7386"},{"alias":"UQCR5","entrezGeneId":"7386"},{"alias":"QCR6","entrezGeneId":"7388"},{"alias":"UQCR8","entrezGeneId":"7388"},{"alias":"PCT","entrezGeneId":"7389"},{"alias":"UPD","entrezGeneId":"7389"},{"alias":"UROIIIS","entrezGeneId":"7390"},{"alias":"bHLHb11","entrezGeneId":"7391"},{"alias":"FCHL","entrezGeneId":"7391"},{"alias":"FCHL1","entrezGeneId":"7391"},{"alias":"HYPLIP1","entrezGeneId":"7391"},{"alias":"MLTF","entrezGeneId":"7391"},{"alias":"MLTFI","entrezGeneId":"7391"},{"alias":"UEF","entrezGeneId":"7391"},{"alias":"bHLHb12","entrezGeneId":"7392"},{"alias":"FIP","entrezGeneId":"7392"},{"alias":"UBP","entrezGeneId":"7398"},{"alias":"dJ1111A8.1","entrezGeneId":"7399"},{"alias":"RP39","entrezGeneId":"7399"},{"alias":"US2","entrezGeneId":"7399"},{"alias":"USH2","entrezGeneId":"7399"},{"alias":"RP61","entrezGeneId":"7401"},{"alias":"USH3","entrezGeneId":"7401"},{"alias":"USH3A","entrezGeneId":"7401"},{"alias":"DMDL","entrezGeneId":"7402"},{"alias":"DRP","entrezGeneId":"7402"},{"alias":"DRP1","entrezGeneId":"7402"},{"alias":"bA386N14.2","entrezGeneId":"7403"},{"alias":"KABUK2","entrezGeneId":"7403"},{"alias":"UTX","entrezGeneId":"7403"},{"alias":"KDM6AL","entrezGeneId":"7404"},{"alias":"KDM6C","entrezGeneId":"7404"},{"alias":"UTY1","entrezGeneId":"7404"},{"alias":"DHTX","entrezGeneId":"7405"},{"alias":"p63","entrezGeneId":"7405"},{"alias":"VPS38","entrezGeneId":"7405"},{"alias":"G7A","entrezGeneId":"7407"},{"alias":"NDMSCA","entrezGeneId":"7407"},{"alias":"VARS1","entrezGeneId":"7407"},{"alias":"VARS2","entrezGeneId":"7407"},{"alias":"VAV","entrezGeneId":"7409"},{"alias":"VAV-2","entrezGeneId":"7410"},{"alias":"HIBBJ46","entrezGeneId":"7411"},{"alias":"PFD3","entrezGeneId":"7411"},{"alias":"PFDN3","entrezGeneId":"7411"},{"alias":"VBP-1","entrezGeneId":"7411"},{"alias":"CD106","entrezGeneId":"7412"},{"alias":"INCAM-100","entrezGeneId":"7412"},{"alias":"CMD1W","entrezGeneId":"7414"},{"alias":"CMH15","entrezGeneId":"7414"},{"alias":"HEL114","entrezGeneId":"7414"},{"alias":"MV","entrezGeneId":"7414"},{"alias":"MVCL","entrezGeneId":"7414"},{"alias":"CDC48","entrezGeneId":"7415"},{"alias":"p97","entrezGeneId":"7415"},{"alias":"TERA","entrezGeneId":"7415"},{"alias":"PORIN","entrezGeneId":"7416"},{"alias":"VDAC-1","entrezGeneId":"7416"},{"alias":"POR","entrezGeneId":"7417"},{"alias":"VDAC4","entrezGeneId":"7418"},{"alias":"VDAC4P","entrezGeneId":"7418"},{"alias":"HD-VDAC3","entrezGeneId":"7419"},{"alias":"VDAC-3","entrezGeneId":"7419"},{"alias":"DIPI","entrezGeneId":"7420"},{"alias":"NR1I1","entrezGeneId":"7421"},{"alias":"PPP1R163","entrezGeneId":"7421"},{"alias":"MVCD1","entrezGeneId":"7422"},{"alias":"VEGF","entrezGeneId":"7422"},{"alias":"VPF","entrezGeneId":"7422"},{"alias":"VEGFL","entrezGeneId":"7423"},{"alias":"VRF","entrezGeneId":"7423"},{"alias":"Flt4-L","entrezGeneId":"7424"},{"alias":"LMPH1D","entrezGeneId":"7424"},{"alias":"VRP","entrezGeneId":"7424"},{"alias":"SCG7","entrezGeneId":"7425"},{"alias":"SgVII","entrezGeneId":"7425"},{"alias":"HRCA1","entrezGeneId":"7428"},{"alias":"pVHL","entrezGeneId":"7428"},{"alias":"RCA1","entrezGeneId":"7428"},{"alias":"VHL1","entrezGeneId":"7428"},{"alias":"D2S1471","entrezGeneId":"7429"},{"alias":"VIL","entrezGeneId":"7429"},{"alias":"CVIL","entrezGeneId":"7430"},{"alias":"CVL","entrezGeneId":"7430"},{"alias":"HEL-S-105","entrezGeneId":"7430"},{"alias":"VIL2","entrezGeneId":"7430"},{"alias":"PHM27","entrezGeneId":"7432"},{"alias":"HVR1","entrezGeneId":"7433"},{"alias":"II","entrezGeneId":"7433"},{"alias":"PACAP-R-2","entrezGeneId":"7433"},{"alias":"PACAP-R2","entrezGeneId":"7433"},{"alias":"RDC1","entrezGeneId":"7433"},{"alias":"V1RG","entrezGeneId":"7433"},{"alias":"VAPC1","entrezGeneId":"7433"},{"alias":"VIP-R-1","entrezGeneId":"7433"},{"alias":"VIPR","entrezGeneId":"7433"},{"alias":"VIRG","entrezGeneId":"7433"},{"alias":"VPAC1","entrezGeneId":"7433"},{"alias":"VPAC1R","entrezGeneId":"7433"},{"alias":"VPCAP1R","entrezGeneId":"7433"},{"alias":"C16DUPq36.3","entrezGeneId":"7434"},{"alias":"DUP7q36.3","entrezGeneId":"7434"},{"alias":"PACAP-R-3","entrezGeneId":"7434"},{"alias":"PACAP-R3","entrezGeneId":"7434"},{"alias":"VIP-R-2","entrezGeneId":"7434"},{"alias":"VPAC2","entrezGeneId":"7434"},{"alias":"VPAC2R","entrezGeneId":"7434"},{"alias":"VPCAP2R","entrezGeneId":"7434"},{"alias":"HIS-1","entrezGeneId":"7435"},{"alias":"HIS1","entrezGeneId":"7435"},{"alias":"CAMRQ1","entrezGeneId":"7436"},{"alias":"CARMQ1","entrezGeneId":"7436"},{"alias":"CHRMQ1","entrezGeneId":"7436"},{"alias":"VLDL-R","entrezGeneId":"7436"},{"alias":"VLDLRCH","entrezGeneId":"7436"},{"alias":"ARB","entrezGeneId":"7439"},{"alias":"BEST","entrezGeneId":"7439"},{"alias":"BMD","entrezGeneId":"7439"},{"alias":"RP50","entrezGeneId":"7439"},{"alias":"TU15B","entrezGeneId":"7439"},{"alias":"VMD2","entrezGeneId":"7439"},{"alias":"CD179a","entrezGeneId":"7441"},{"alias":"IGI","entrezGeneId":"7441"},{"alias":"IGVPB","entrezGeneId":"7441"},{"alias":"VPREB","entrezGeneId":"7441"},{"alias":"VR1","entrezGeneId":"7442"},{"alias":"PCH1","entrezGeneId":"7443"},{"alias":"PCH1A","entrezGeneId":"7443"},{"alias":"AVCD","entrezGeneId":"7446"},{"alias":"AVCD1","entrezGeneId":"7446"},{"alias":"AVSD","entrezGeneId":"7446"},{"alias":"VSD1","entrezGeneId":"7446"},{"alias":"HLP3","entrezGeneId":"7447"},{"alias":"HPCAL3","entrezGeneId":"7447"},{"alias":"HUVISL1","entrezGeneId":"7447"},{"alias":"VILIP","entrezGeneId":"7447"},{"alias":"VILIP-1","entrezGeneId":"7447"},{"alias":"V75","entrezGeneId":"7448"},{"alias":"VN","entrezGeneId":"7448"},{"alias":"VNT","entrezGeneId":"7448"},{"alias":"F8VWF","entrezGeneId":"7450"},{"alias":"VWD","entrezGeneId":"7450"},{"alias":"F8VWFL","entrezGeneId":"7451"},{"alias":"F8VWFP","entrezGeneId":"7451"},{"alias":"VWFP","entrezGeneId":"7451"},{"alias":"GAMMA-2","entrezGeneId":"7453"},{"alias":"HMN9","entrezGeneId":"7453"},{"alias":"IFI53","entrezGeneId":"7453"},{"alias":"IFP53","entrezGeneId":"7453"},{"alias":"IMD2","entrezGeneId":"7454"},{"alias":"SCNX","entrezGeneId":"7454"},{"alias":"THC","entrezGeneId":"7454"},{"alias":"THC1","entrezGeneId":"7454"},{"alias":"WASP","entrezGeneId":"7454"},{"alias":"WASPA","entrezGeneId":"7454"},{"alias":"PRPL-2","entrezGeneId":"7456"},{"alias":"WAS2","entrezGeneId":"7456"},{"alias":"WASPIP","entrezGeneId":"7456"},{"alias":"WIP","entrezGeneId":"7456"},{"alias":"WBS","entrezGeneId":"7457"},{"alias":"WS","entrezGeneId":"7457"},{"alias":"eIF-4H","entrezGeneId":"7458"},{"alias":"WBSCR1","entrezGeneId":"7458"},{"alias":"WSCR1","entrezGeneId":"7458"},{"alias":"WSCR2","entrezGeneId":"7459"},{"alias":"CLIP","entrezGeneId":"7461"},{"alias":"CLIP-115","entrezGeneId":"7461"},{"alias":"CYLN2","entrezGeneId":"7461"},{"alias":"WBSCR3","entrezGeneId":"7461"},{"alias":"WBSCR4","entrezGeneId":"7461"},{"alias":"WSCR3","entrezGeneId":"7461"},{"alias":"WSCR4","entrezGeneId":"7461"},{"alias":"HSPC046","entrezGeneId":"7462"},{"alias":"LAB","entrezGeneId":"7462"},{"alias":"NTAL","entrezGeneId":"7462"},{"alias":"WBSCR15","entrezGeneId":"7462"},{"alias":"WBSCR5","entrezGeneId":"7462"},{"alias":"WSCR5","entrezGeneId":"7462"},{"alias":"CLIPINB","entrezGeneId":"7464"},{"alias":"IR10","entrezGeneId":"7464"},{"alias":"WDR2","entrezGeneId":"7464"},{"alias":"WEE1A","entrezGeneId":"7465"},{"alias":"WEE1hu","entrezGeneId":"7465"},{"alias":"CTRCT41","entrezGeneId":"7466"},{"alias":"WFRS","entrezGeneId":"7466"},{"alias":"WFS","entrezGeneId":"7466"},{"alias":"WFSL","entrezGeneId":"7466"},{"alias":"PRDS","entrezGeneId":"7467"},{"alias":"KMT3F","entrezGeneId":"7468"},{"alias":"KMT3G","entrezGeneId":"7468"},{"alias":"MMSET","entrezGeneId":"7468"},{"alias":"REIIBP","entrezGeneId":"7468"},{"alias":"TRX5","entrezGeneId":"7468"},{"alias":"WHS","entrezGeneId":"7468"},{"alias":"WHSC1","entrezGeneId":"7468"},{"alias":"NELF-A","entrezGeneId":"7469"},{"alias":"P/OKcl.15","entrezGeneId":"7469"},{"alias":"WHSC2","entrezGeneId":"7469"},{"alias":"BMND16","entrezGeneId":"7471"},{"alias":"INT1","entrezGeneId":"7471"},{"alias":"OI15","entrezGeneId":"7471"},{"alias":"INT1L1","entrezGeneId":"7472"},{"alias":"IRP","entrezGeneId":"7472"},{"alias":"INT4","entrezGeneId":"7473"},{"alias":"TETAMS","entrezGeneId":"7473"},{"alias":"hWNT5A","entrezGeneId":"7474"},{"alias":"WNT8D","entrezGeneId":"7478"},{"alias":"SHFM6","entrezGeneId":"7480"},{"alias":"STHAG8","entrezGeneId":"7480"},{"alias":"WNT-12","entrezGeneId":"7480"},{"alias":"HWNT11","entrezGeneId":"7481"},{"alias":"WNT13","entrezGeneId":"7482"},{"alias":"WNT14","entrezGeneId":"7483"},{"alias":"WNT14B","entrezGeneId":"7484"},{"alias":"WNT15","entrezGeneId":"7484"},{"alias":"CHD5","entrezGeneId":"7485"},{"alias":"GET1","entrezGeneId":"7485"},{"alias":"RECQ3","entrezGeneId":"7486"},{"alias":"RECQL2","entrezGeneId":"7486"},{"alias":"RECQL3","entrezGeneId":"7486"},{"alias":"AWT1","entrezGeneId":"7490"},{"alias":"GUD","entrezGeneId":"7490"},{"alias":"NPHS4","entrezGeneId":"7490"},{"alias":"WAGR","entrezGeneId":"7490"},{"alias":"WIT-2","entrezGeneId":"7490"},{"alias":"WT33","entrezGeneId":"7490"},{"alias":"ADCR","entrezGeneId":"7491"},{"alias":"MTACR1","entrezGeneId":"7491"},{"alias":"TREB-5","entrezGeneId":"7494"},{"alias":"TREB5","entrezGeneId":"7494"},{"alias":"XBP-1","entrezGeneId":"7494"},{"alias":"XBP2","entrezGeneId":"7494"},{"alias":"XBP","entrezGeneId":"7495"},{"alias":"XBP1","entrezGeneId":"7495"},{"alias":"XBPP1","entrezGeneId":"7495"},{"alias":"XCA","entrezGeneId":"7497"},{"alias":"XITE","entrezGeneId":"7497"},{"alias":"XAN1","entrezGeneId":"7498"},{"alias":"XO","entrezGeneId":"7498"},{"alias":"XOR","entrezGeneId":"7498"},{"alias":"PBDX","entrezGeneId":"7499"},{"alias":"XGPY","entrezGeneId":"7500"},{"alias":"XGPY1","entrezGeneId":"7500"},{"alias":"YG","entrezGeneId":"7501"},{"alias":"SXI1","entrezGeneId":"7502"},{"alias":"XCE","entrezGeneId":"7502"},{"alias":"XIST","entrezGeneId":"7502"},{"alias":"DXS1089","entrezGeneId":"7503"},{"alias":"DXS399E","entrezGeneId":"7503"},{"alias":"LINC00001","entrezGeneId":"7503"},{"alias":"NCRNA00001","entrezGeneId":"7503"},{"alias":"swd66","entrezGeneId":"7503"},{"alias":"SXI1","entrezGeneId":"7503"},{"alias":"KX","entrezGeneId":"7504"},{"alias":"NA","entrezGeneId":"7504"},{"alias":"NAC","entrezGeneId":"7504"},{"alias":"X1k","entrezGeneId":"7504"},{"alias":"XKR1","entrezGeneId":"7504"},{"alias":"XP1","entrezGeneId":"7507"},{"alias":"XPAC","entrezGeneId":"7507"},{"alias":"p125","entrezGeneId":"7508"},{"alias":"RAD4","entrezGeneId":"7508"},{"alias":"XP3","entrezGeneId":"7508"},{"alias":"XPCC","entrezGeneId":"7508"},{"alias":"APP1","entrezGeneId":"7511"},{"alias":"SAMP","entrezGeneId":"7511"},{"alias":"XPNPEP","entrezGeneId":"7511"},{"alias":"XPNPEPL","entrezGeneId":"7511"},{"alias":"XPNPEPL1","entrezGeneId":"7511"},{"alias":"AEACEI","entrezGeneId":"7512"},{"alias":"APP2","entrezGeneId":"7512"},{"alias":"CRM1","entrezGeneId":"7514"},{"alias":"emb","entrezGeneId":"7514"},{"alias":"exp1","entrezGeneId":"7514"},{"alias":"RCC","entrezGeneId":"7515"},{"alias":"SCAR26","entrezGeneId":"7515"},{"alias":"FANCU","entrezGeneId":"7516"},{"alias":"CMM6","entrezGeneId":"7517"},{"alias":"SSMED","entrezGeneId":"7518"},{"alias":"KARP-1","entrezGeneId":"7520"},{"alias":"KARP1","entrezGeneId":"7520"},{"alias":"KU80","entrezGeneId":"7520"},{"alias":"Ku86","entrezGeneId":"7520"},{"alias":"KUB2","entrezGeneId":"7520"},{"alias":"NFIV","entrezGeneId":"7520"},{"alias":"LUXS","entrezGeneId":"7523"},{"alias":"c-yes","entrezGeneId":"7525"},{"alias":"HsT441","entrezGeneId":"7525"},{"alias":"P61-YES","entrezGeneId":"7525"},{"alias":"Yes","entrezGeneId":"7525"},{"alias":"D22S670","entrezGeneId":"7526"},{"alias":"SYR","entrezGeneId":"7526"},{"alias":"YES2","entrezGeneId":"7526"},{"alias":"YESP","entrezGeneId":"7526"},{"alias":"DELTA","entrezGeneId":"7528"},{"alias":"GADEVS","entrezGeneId":"7528"},{"alias":"INO80S","entrezGeneId":"7528"},{"alias":"NF-E1","entrezGeneId":"7528"},{"alias":"UCRBP","entrezGeneId":"7528"},{"alias":"YIN-YANG-1","entrezGeneId":"7528"},{"alias":"GW128","entrezGeneId":"7529"},{"alias":"HEL-S-1","entrezGeneId":"7529"},{"alias":"HS1","entrezGeneId":"7529"},{"alias":"KCIP-1","entrezGeneId":"7529"},{"alias":"YWHAA","entrezGeneId":"7529"},{"alias":"14-3-3E","entrezGeneId":"7531"},{"alias":"HEL2","entrezGeneId":"7531"},{"alias":"KCIP-1","entrezGeneId":"7531"},{"alias":"MDCR","entrezGeneId":"7531"},{"alias":"MDS","entrezGeneId":"7531"},{"alias":"14-3-3GAMMA","entrezGeneId":"7532"},{"alias":"EIEE56","entrezGeneId":"7532"},{"alias":"PPP1R170","entrezGeneId":"7532"},{"alias":"YWHA1","entrezGeneId":"7533"},{"alias":"14-3-3-zeta","entrezGeneId":"7534"},{"alias":"HEL-S-3","entrezGeneId":"7534"},{"alias":"HEL-S-93","entrezGeneId":"7534"},{"alias":"HEL4","entrezGeneId":"7534"},{"alias":"KCIP-1","entrezGeneId":"7534"},{"alias":"YWHAD","entrezGeneId":"7534"},{"alias":"ADMIO2","entrezGeneId":"7535"},{"alias":"IMD48","entrezGeneId":"7535"},{"alias":"SRK","entrezGeneId":"7535"},{"alias":"STCD","entrezGeneId":"7535"},{"alias":"STD","entrezGeneId":"7535"},{"alias":"TZK","entrezGeneId":"7535"},{"alias":"ZAP-70","entrezGeneId":"7535"},{"alias":"BBP","entrezGeneId":"7536"},{"alias":"D11S636","entrezGeneId":"7536"},{"alias":"MBBP","entrezGeneId":"7536"},{"alias":"ZCCHC25","entrezGeneId":"7536"},{"alias":"ZFM1","entrezGeneId":"7536"},{"alias":"ZNF162","entrezGeneId":"7536"},{"alias":"G0S24","entrezGeneId":"7538"},{"alias":"GOS24","entrezGeneId":"7538"},{"alias":"NUP475","entrezGeneId":"7538"},{"alias":"RNF162A","entrezGeneId":"7538"},{"alias":"TIS11","entrezGeneId":"7538"},{"alias":"TTP","entrezGeneId":"7538"},{"alias":"zfp-36","entrezGeneId":"7538"},{"alias":"zfp-37","entrezGeneId":"7539"},{"alias":"ZNF906","entrezGeneId":"7539"},{"alias":"ZF5","entrezGeneId":"7541"},{"alias":"ZFP-161","entrezGeneId":"7541"},{"alias":"ZFP-5","entrezGeneId":"7541"},{"alias":"ZFP161","entrezGeneId":"7541"},{"alias":"ZNF478","entrezGeneId":"7541"},{"alias":"D11S750","entrezGeneId":"7542"},{"alias":"MCG4","entrezGeneId":"7542"},{"alias":"ZNF926","entrezGeneId":"7543"},{"alias":"ZNF911","entrezGeneId":"7544"},{"alias":"CRS6","entrezGeneId":"7545"},{"alias":"ZIC","entrezGeneId":"7545"},{"alias":"ZNF201","entrezGeneId":"7545"},{"alias":"HPE5","entrezGeneId":"7546"},{"alias":"HTX","entrezGeneId":"7547"},{"alias":"HTX1","entrezGeneId":"7547"},{"alias":"VACTERLX","entrezGeneId":"7547"},{"alias":"ZNF203","entrezGeneId":"7547"},{"alias":"A1-5","entrezGeneId":"7549"},{"alias":"Zfp661","entrezGeneId":"7549"},{"alias":"ZNF661","entrezGeneId":"7549"},{"alias":"A8-51","entrezGeneId":"7551"},{"alias":"HF.12","entrezGeneId":"7551"},{"alias":"KOX25","entrezGeneId":"7551"},{"alias":"PP838","entrezGeneId":"7551"},{"alias":"Zfp113","entrezGeneId":"7551"},{"alias":"CMPX1","entrezGeneId":"7552"},{"alias":"dJ75N13.1","entrezGeneId":"7552"},{"alias":"MRX97","entrezGeneId":"7552"},{"alias":"Zfp711","entrezGeneId":"7552"},{"alias":"ZNF4","entrezGeneId":"7552"},{"alias":"ZNF5","entrezGeneId":"7552"},{"alias":"ZNF6","entrezGeneId":"7552"},{"alias":"HF.16","entrezGeneId":"7553"},{"alias":"KOX4","entrezGeneId":"7553"},{"alias":"zf30","entrezGeneId":"7553"},{"alias":"HF.18","entrezGeneId":"7554"},{"alias":"Zfp128","entrezGeneId":"7554"},{"alias":"CNBP1","entrezGeneId":"7555"},{"alias":"DM2","entrezGeneId":"7555"},{"alias":"PROMM","entrezGeneId":"7555"},{"alias":"RNF163","entrezGeneId":"7555"},{"alias":"ZCCHC22","entrezGeneId":"7555"},{"alias":"ZNF9","entrezGeneId":"7555"},{"alias":"KOX1","entrezGeneId":"7556"},{"alias":"GIOT-3","entrezGeneId":"7559"},{"alias":"HZF11","entrezGeneId":"7559"},{"alias":"KOX3","entrezGeneId":"7559"},{"alias":"ZNF325","entrezGeneId":"7559"},{"alias":"GIOT-4","entrezGeneId":"7561"},{"alias":"KOX6","entrezGeneId":"7561"},{"alias":"KOX8","entrezGeneId":"7562"},{"alias":"ZNF15","entrezGeneId":"7562"},{"alias":"ZNF15L1","entrezGeneId":"7562"},{"alias":"HZF1","entrezGeneId":"7564"},{"alias":"KOX9","entrezGeneId":"7564"},{"alias":"HPF3","entrezGeneId":"7565"},{"alias":"KOX10","entrezGeneId":"7565"},{"alias":"HDSG1","entrezGeneId":"7566"},{"alias":"KOX11","entrezGeneId":"7566"},{"alias":"Zfp535","entrezGeneId":"7566"},{"alias":"ZKSCAN6","entrezGeneId":"7566"},{"alias":"ZNF535","entrezGeneId":"7566"},{"alias":"ZSCAN38","entrezGeneId":"7566"},{"alias":"KOX12","entrezGeneId":"7567"},{"alias":"KOX13","entrezGeneId":"7568"},{"alias":"HHZ150","entrezGeneId":"7569"},{"alias":"KOX14","entrezGeneId":"7569"},{"alias":"Zfp182","entrezGeneId":"7569"},{"alias":"ZNF21","entrezGeneId":"7569"},{"alias":"HKR-T1","entrezGeneId":"7570"},{"alias":"KOX15","entrezGeneId":"7570"},{"alias":"Zfp422","entrezGeneId":"7570"},{"alias":"ZNF422","entrezGeneId":"7570"},{"alias":"KOX16","entrezGeneId":"7571"},{"alias":"Zfp612","entrezGeneId":"7571"},{"alias":"ZNF359","entrezGeneId":"7571"},{"alias":"ZNF612","entrezGeneId":"7571"},{"alias":"KOX17","entrezGeneId":"7572"},{"alias":"RSG-A","entrezGeneId":"7572"},{"alias":"Zfp191","entrezGeneId":"7572"},{"alias":"ZNF191","entrezGeneId":"7572"},{"alias":"ZSCAN3","entrezGeneId":"7572"},{"alias":"HEL-179","entrezGeneId":"7574"},{"alias":"KOX20","entrezGeneId":"7574"},{"alias":"KOX24","entrezGeneId":"7576"},{"alias":"KOX26","entrezGeneId":"7577"},{"alias":"ZNF29","entrezGeneId":"7577"},{"alias":"KOX29","entrezGeneId":"7579"},{"alias":"ZFP-31","entrezGeneId":"7579"},{"alias":"ZNF31","entrezGeneId":"7579"},{"alias":"ZNF360","entrezGeneId":"7579"},{"alias":"KOX30","entrezGeneId":"7580"},{"alias":"KOX2","entrezGeneId":"7581"},{"alias":"KOX31","entrezGeneId":"7581"},{"alias":"KOX5","entrezGeneId":"7581"},{"alias":"NF11A","entrezGeneId":"7581"},{"alias":"ZNF11","entrezGeneId":"7581"},{"alias":"ZNF11A","entrezGeneId":"7581"},{"alias":"ZNF33","entrezGeneId":"7581"},{"alias":"ZZAPK","entrezGeneId":"7581"},{"alias":"KOX2","entrezGeneId":"7582"},{"alias":"KOX31","entrezGeneId":"7582"},{"alias":"ZNF11B","entrezGeneId":"7582"},{"alias":"HF.10","entrezGeneId":"7584"},{"alias":"HF10","entrezGeneId":"7584"},{"alias":"Zfp105","entrezGeneId":"7584"},{"alias":"KOX18","entrezGeneId":"7586"},{"alias":"PHZ-37","entrezGeneId":"7586"},{"alias":"ZNF139","entrezGeneId":"7586"},{"alias":"ZNF36","entrezGeneId":"7586"},{"alias":"ZSCAN33","entrezGeneId":"7586"},{"alias":"KOX21","entrezGeneId":"7587"},{"alias":"ZNF37","entrezGeneId":"7587"},{"alias":"NY-REN-21","entrezGeneId":"7589"},{"alias":"Zipro1","entrezGeneId":"7589"},{"alias":"ZNF38","entrezGeneId":"7589"},{"alias":"MRX89","entrezGeneId":"7592"},{"alias":"MZF-1","entrezGeneId":"7593"},{"alias":"MZF1B","entrezGeneId":"7593"},{"alias":"ZFP98","entrezGeneId":"7593"},{"alias":"ZNF42","entrezGeneId":"7593"},{"alias":"ZSCAN6","entrezGeneId":"7593"},{"alias":"HTF6","entrezGeneId":"7594"},{"alias":"KOX27","entrezGeneId":"7594"},{"alias":"ZNF39L1","entrezGeneId":"7594"},{"alias":"KOX5","entrezGeneId":"7596"},{"alias":"ZNF13","entrezGeneId":"7596"},{"alias":"C14orf51","entrezGeneId":"7597"},{"alias":"KUP","entrezGeneId":"7597"},{"alias":"ZNF46","entrezGeneId":"7597"},{"alias":"ZNF742","entrezGeneId":"7608"},{"alias":"ZNF66P","entrezGeneId":"7617"},{"alias":"ZNF67","entrezGeneId":"7618"},{"alias":"ZNF67P","entrezGeneId":"7618"},{"alias":"Cos5","entrezGeneId":"7620"},{"alias":"hZNF3","entrezGeneId":"7620"},{"alias":"Cos17","entrezGeneId":"7621"},{"alias":"COS52","entrezGeneId":"7625"},{"alias":"hZNF7","entrezGeneId":"7625"},{"alias":"ZFP520","entrezGeneId":"7625"},{"alias":"ZNF520","entrezGeneId":"7625"},{"alias":"D8C6","entrezGeneId":"7626"},{"alias":"ZKSCAN24","entrezGeneId":"7626"},{"alias":"ZNF75","entrezGeneId":"7626"},{"alias":"ZNF82","entrezGeneId":"7626"},{"alias":"ZSCAN28","entrezGeneId":"7626"},{"alias":"ZNF75B","entrezGeneId":"7628"},{"alias":"D6S229E","entrezGeneId":"7629"},{"alias":"Zfp523","entrezGeneId":"7629"},{"alias":"ZNF523","entrezGeneId":"7629"},{"alias":"pT7","entrezGeneId":"7633"},{"alias":"pT17","entrezGeneId":"7634"},{"alias":"HPF2","entrezGeneId":"7637"},{"alias":"HPF4","entrezGeneId":"7639"},{"alias":"HTF1","entrezGeneId":"7639"},{"alias":"HTF9","entrezGeneId":"7643"},{"alias":"HPF7","entrezGeneId":"7644"},{"alias":"HTF10","entrezGeneId":"7644"},{"alias":"C19orf9","entrezGeneId":"7652"},{"alias":"F8281","entrezGeneId":"7652"},{"alias":"ZNF108","entrezGeneId":"7661"},{"alias":"ZNF108P","entrezGeneId":"7661"},{"alias":"D19S204","entrezGeneId":"7675"},{"alias":"ZHC32","entrezGeneId":"7675"},{"alias":"ZNF20","entrezGeneId":"7675"},{"alias":"HZF-16","entrezGeneId":"7678"},{"alias":"HZF16","entrezGeneId":"7678"},{"alias":"ZK7","entrezGeneId":"7678"},{"alias":"CPPB2","entrezGeneId":"7681"},{"alias":"D15S9","entrezGeneId":"7681"},{"alias":"RNF63","entrezGeneId":"7681"},{"alias":"ZFP127","entrezGeneId":"7681"},{"alias":"ZNF127","entrezGeneId":"7681"},{"alias":"MKRN4","entrezGeneId":"7682"},{"alias":"MKRNP5","entrezGeneId":"7682"},{"alias":"RNF64","entrezGeneId":"7682"},{"alias":"ZNF-Xp","entrezGeneId":"7682"},{"alias":"ZNF127-Xp","entrezGeneId":"7682"},{"alias":"ZNF127L1","entrezGeneId":"7682"},{"alias":"MKRNP1","entrezGeneId":"7683"},{"alias":"ZNF-Xq","entrezGeneId":"7683"},{"alias":"ZNF127L2","entrezGeneId":"7683"},{"alias":"dJ981L23.2","entrezGeneId":"7686"},{"alias":"MKRNP3","entrezGeneId":"7686"},{"alias":"ZNF127L5","entrezGeneId":"7686"},{"alias":"pHZ-10","entrezGeneId":"7690"},{"alias":"ZBTB35","entrezGeneId":"7690"},{"alias":"pHZ-12","entrezGeneId":"7691"},{"alias":"pHZ-13","entrezGeneId":"7692"},{"alias":"pHZ-66","entrezGeneId":"7692"},{"alias":"ZNF150","entrezGeneId":"7692"},{"alias":"pHZ-15","entrezGeneId":"7693"},{"alias":"pHZ-17","entrezGeneId":"7694"},{"alias":"pT3","entrezGeneId":"7694"},{"alias":"ZNF61","entrezGeneId":"7694"},{"alias":"ZNF78L1","entrezGeneId":"7694"},{"alias":"pHZ-20","entrezGeneId":"7695"},{"alias":"pHZ-30","entrezGeneId":"7696"},{"alias":"ZNF137","entrezGeneId":"7696"},{"alias":"pHZ-32","entrezGeneId":"7697"},{"alias":"pHZ-39","entrezGeneId":"7699"},{"alias":"D4S90","entrezGeneId":"7700"},{"alias":"pHZ-44","entrezGeneId":"7700"},{"alias":"pHZ-49","entrezGeneId":"7701"},{"alias":"pHZ-1","entrezGeneId":"7702"},{"alias":"SBF","entrezGeneId":"7702"},{"alias":"STAF","entrezGeneId":"7702"},{"alias":"MEL-18","entrezGeneId":"7703"},{"alias":"RNF110","entrezGeneId":"7703"},{"alias":"ZNF144","entrezGeneId":"7703"},{"alias":"PLZF","entrezGeneId":"7704"},{"alias":"ZNF145","entrezGeneId":"7704"},{"alias":"OZF","entrezGeneId":"7705"},{"alias":"EFP","entrezGeneId":"7706"},{"alias":"RNF147","entrezGeneId":"7706"},{"alias":"Z147","entrezGeneId":"7706"},{"alias":"ZNF147","entrezGeneId":"7706"},{"alias":"BERF-1","entrezGeneId":"7707"},{"alias":"BFCOL1","entrezGeneId":"7707"},{"alias":"GDACCF","entrezGeneId":"7707"},{"alias":"HT-BETA","entrezGeneId":"7707"},{"alias":"pHZ-52","entrezGeneId":"7707"},{"alias":"ZBP-89","entrezGeneId":"7707"},{"alias":"ZFP148","entrezGeneId":"7707"},{"alias":"MIZ-1","entrezGeneId":"7709"},{"alias":"pHZ-67","entrezGeneId":"7709"},{"alias":"ZNF151","entrezGeneId":"7709"},{"alias":"ZNF60","entrezGeneId":"7709"},{"alias":"pHZ-92","entrezGeneId":"7710"},{"alias":"pHZ-96","entrezGeneId":"7711"},{"alias":"HZF22","entrezGeneId":"7712"},{"alias":"DB1","entrezGeneId":"7716"},{"alias":"ZNF161","entrezGeneId":"7716"},{"alias":"CT53","entrezGeneId":"7718"},{"alias":"LD65","entrezGeneId":"7718"},{"alias":"ZSCAN7","entrezGeneId":"7718"},{"alias":"AFP","entrezGeneId":"7726"},{"alias":"RNF95","entrezGeneId":"7726"},{"alias":"ZNF173","entrezGeneId":"7726"},{"alias":"ZSCAN8","entrezGeneId":"7727"},{"alias":"OTK18","entrezGeneId":"7728"},{"alias":"PIGX","entrezGeneId":"7730"},{"alias":"BFP","entrezGeneId":"7732"},{"alias":"ZNF179","entrezGeneId":"7732"},{"alias":"HHZ168","entrezGeneId":"7733"},{"alias":"Cwc24","entrezGeneId":"7737"},{"alias":"RNF113","entrezGeneId":"7737"},{"alias":"TTD5","entrezGeneId":"7737"},{"alias":"ZNF183","entrezGeneId":"7737"},{"alias":"kr-ZNF3","entrezGeneId":"7738"},{"alias":"SCELL","entrezGeneId":"7739"},{"alias":"SRE-ZBP","entrezGeneId":"7741"},{"alias":"SREZBP","entrezGeneId":"7741"},{"alias":"ZNF187","entrezGeneId":"7741"},{"alias":"LD5-1","entrezGeneId":"7745"},{"alias":"ZNF192","entrezGeneId":"7745"},{"alias":"ZSCAN40","entrezGeneId":"7745"},{"alias":"PRD51","entrezGeneId":"7746"},{"alias":"ZNF193","entrezGeneId":"7746"},{"alias":"HRF1","entrezGeneId":"7748"},{"alias":"ZNFP104","entrezGeneId":"7748"},{"alias":"FIM","entrezGeneId":"7750"},{"alias":"MYM","entrezGeneId":"7750"},{"alias":"RAMP","entrezGeneId":"7750"},{"alias":"SCLL","entrezGeneId":"7750"},{"alias":"ZNF198","entrezGeneId":"7750"},{"alias":"ZKSCAN10","entrezGeneId":"7753"},{"alias":"ZSCAN42","entrezGeneId":"7753"},{"alias":"b24o18.1","entrezGeneId":"7754"},{"alias":"ZNF184-Lp","entrezGeneId":"7754"},{"alias":"ZNF204","entrezGeneId":"7754"},{"alias":"ZNF315P","entrezGeneId":"7754"},{"alias":"RhitH","entrezGeneId":"7755"},{"alias":"Zfp13","entrezGeneId":"7755"},{"alias":"ZNF210","entrezGeneId":"7755"},{"alias":"BuGZ","entrezGeneId":"7756"},{"alias":"hBuGZ","entrezGeneId":"7756"},{"alias":"PMIDP","entrezGeneId":"7757"},{"alias":"ZNF95","entrezGeneId":"7757"},{"alias":"CR53","entrezGeneId":"7760"},{"alias":"ZKSCAN21","entrezGeneId":"7760"},{"alias":"ZSCAN53","entrezGeneId":"7760"},{"alias":"BAZ-1","entrezGeneId":"7761"},{"alias":"BAZ1","entrezGeneId":"7761"},{"alias":"BAZ-2","entrezGeneId":"7762"},{"alias":"BAZ2","entrezGeneId":"7762"},{"alias":"ZKSCAN11","entrezGeneId":"7762"},{"alias":"ZSCAN43","entrezGeneId":"7762"},{"alias":"ZA20D2","entrezGeneId":"7763"},{"alias":"ZFAND5A","entrezGeneId":"7763"},{"alias":"ZNF216","entrezGeneId":"7763"},{"alias":"ZABC1","entrezGeneId":"7764"},{"alias":"BMZF-2","entrezGeneId":"7767"},{"alias":"BMZF2","entrezGeneId":"7767"},{"alias":"KOX22","entrezGeneId":"7767"},{"alias":"ZNF233","entrezGeneId":"7767"},{"alias":"ZNF255","entrezGeneId":"7767"},{"alias":"ZNF27","entrezGeneId":"7767"},{"alias":"ZFP112","entrezGeneId":"7771"},{"alias":"ZNF228","entrezGeneId":"7771"},{"alias":"FDZF2","entrezGeneId":"7773"},{"alias":"ZSCAN11","entrezGeneId":"7775"},{"alias":"ZNF236A","entrezGeneId":"7776"},{"alias":"ZNF236B","entrezGeneId":"7776"},{"alias":"ZNT1","entrezGeneId":"7779"},{"alias":"ZRC1","entrezGeneId":"7779"},{"alias":"PP12488","entrezGeneId":"7780"},{"alias":"TNZD","entrezGeneId":"7780"},{"alias":"ZnT-2","entrezGeneId":"7780"},{"alias":"ZNT2","entrezGeneId":"7780"},{"alias":"ZNT3","entrezGeneId":"7781"},{"alias":"znT-4","entrezGeneId":"7782"},{"alias":"ZNT4","entrezGeneId":"7782"},{"alias":"Zp-2","entrezGeneId":"7783"},{"alias":"ZPA","entrezGeneId":"7783"},{"alias":"OOMD3","entrezGeneId":"7784"},{"alias":"Zp-3","entrezGeneId":"7784"},{"alias":"ZP3A","entrezGeneId":"7784"},{"alias":"ZP3B","entrezGeneId":"7784"},{"alias":"ZPC","entrezGeneId":"7784"},{"alias":"DLK","entrezGeneId":"7786"},{"alias":"MEKK12","entrezGeneId":"7786"},{"alias":"MUK","entrezGeneId":"7786"},{"alias":"ZPK","entrezGeneId":"7786"},{"alias":"ZPKP1","entrezGeneId":"7786"},{"alias":"ZNF896","entrezGeneId":"7789"},{"alias":"ESP-2","entrezGeneId":"7791"},{"alias":"HED-2","entrezGeneId":"7791"},{"alias":"CTRCT8","entrezGeneId":"7792"},{"alias":"LUZP","entrezGeneId":"7798"},{"alias":"HUMHOXY1","entrezGeneId":"7799"},{"alias":"KMT8","entrezGeneId":"7799"},{"alias":"KMT8A","entrezGeneId":"7799"},{"alias":"MTB-ZF","entrezGeneId":"7799"},{"alias":"RIZ","entrezGeneId":"7799"},{"alias":"RIZ1","entrezGeneId":"7799"},{"alias":"RIZ2","entrezGeneId":"7799"},{"alias":"dJ423B22.5","entrezGeneId":"7802"},{"alias":"hp28","entrezGeneId":"7802"},{"alias":"P28","entrezGeneId":"7802"},{"alias":"HH72","entrezGeneId":"7803"},{"alias":"PRL-1","entrezGeneId":"7803"},{"alias":"PRL1","entrezGeneId":"7803"},{"alias":"PTP(CAAX1)","entrezGeneId":"7803"},{"alias":"PTPCAAX1","entrezGeneId":"7803"},{"alias":"APOER2","entrezGeneId":"7804"},{"alias":"HSZ75190","entrezGeneId":"7804"},{"alias":"LRP-8","entrezGeneId":"7804"},{"alias":"MCI1","entrezGeneId":"7804"},{"alias":"CLAST6","entrezGeneId":"7805"},{"alias":"BART","entrezGeneId":"7809"},{"alias":"DFNB73","entrezGeneId":"7809"},{"alias":"D1S155E","entrezGeneId":"7812"},{"alias":"UNR","entrezGeneId":"7812"},{"alias":"EVI-5","entrezGeneId":"7813"},{"alias":"NB4S","entrezGeneId":"7813"},{"alias":"bMRP-10","entrezGeneId":"7818"},{"alias":"DAP-3","entrezGeneId":"7818"},{"alias":"MRP-S29","entrezGeneId":"7818"},{"alias":"MRPS29","entrezGeneId":"7818"},{"alias":"S29mt","entrezGeneId":"7818"},{"alias":"D1S61","entrezGeneId":"7824"},{"alias":"MS336","entrezGeneId":"7824"},{"alias":"PDCN","entrezGeneId":"7827"},{"alias":"SRN1","entrezGeneId":"7827"},{"alias":"PHA2","entrezGeneId":"7830"},{"alias":"APRO1","entrezGeneId":"7832"},{"alias":"PC3","entrezGeneId":"7832"},{"alias":"TIS21","entrezGeneId":"7832"},{"alias":"HPC2","entrezGeneId":"7834"},{"alias":"HPC8","entrezGeneId":"7834"},{"alias":"ASGD7","entrezGeneId":"7837"},{"alias":"COPOA","entrezGeneId":"7837"},{"alias":"D2S448","entrezGeneId":"7837"},{"alias":"D2S448E","entrezGeneId":"7837"},{"alias":"MG50","entrezGeneId":"7837"},{"alias":"PRG2","entrezGeneId":"7837"},{"alias":"PXN","entrezGeneId":"7837"},{"alias":"VPO","entrezGeneId":"7837"},{"alias":"LSL","entrezGeneId":"7839"},{"alias":"ALSS","entrezGeneId":"7840"},{"alias":"CDG2B","entrezGeneId":"7841"},{"alias":"CWH41","entrezGeneId":"7841"},{"alias":"DER7","entrezGeneId":"7841"},{"alias":"GCS1","entrezGeneId":"7841"},{"alias":"IGKJ@","entrezGeneId":"7842"},{"alias":"HKF-1","entrezGeneId":"7844"},{"alias":"KF-1","entrezGeneId":"7844"},{"alias":"KF1","entrezGeneId":"7844"},{"alias":"ZFP-103","entrezGeneId":"7844"},{"alias":"ZFP103","entrezGeneId":"7844"},{"alias":"LIS2","entrezGeneId":"7845"},{"alias":"PAFAH1P1","entrezGeneId":"7845"},{"alias":"B-ALPHA-1","entrezGeneId":"7846"},{"alias":"LIS3","entrezGeneId":"7846"},{"alias":"TUBA3","entrezGeneId":"7846"},{"alias":"CD121b","entrezGeneId":"7850"},{"alias":"CDw121b","entrezGeneId":"7850"},{"alias":"IL-1R-2","entrezGeneId":"7850"},{"alias":"IL-1RT-2","entrezGeneId":"7850"},{"alias":"IL-1RT2","entrezGeneId":"7850"},{"alias":"IL1R2c","entrezGeneId":"7850"},{"alias":"IL1RB","entrezGeneId":"7850"},{"alias":"BENE","entrezGeneId":"7851"},{"alias":"CD184","entrezGeneId":"7852"},{"alias":"D2S201E","entrezGeneId":"7852"},{"alias":"FB22","entrezGeneId":"7852"},{"alias":"HM89","entrezGeneId":"7852"},{"alias":"HSY3RR","entrezGeneId":"7852"},{"alias":"LAP-3","entrezGeneId":"7852"},{"alias":"LAP3","entrezGeneId":"7852"},{"alias":"LCR1","entrezGeneId":"7852"},{"alias":"LESTR","entrezGeneId":"7852"},{"alias":"NPY3R","entrezGeneId":"7852"},{"alias":"NPYR","entrezGeneId":"7852"},{"alias":"NPYRL","entrezGeneId":"7852"},{"alias":"NPYY3R","entrezGeneId":"7852"},{"alias":"WHIM","entrezGeneId":"7852"},{"alias":"WHIMS","entrezGeneId":"7852"},{"alias":"C2orf31","entrezGeneId":"7855"},{"alias":"HFZ5","entrezGeneId":"7855"},{"alias":"CHGC","entrezGeneId":"7857"},{"alias":"EM66","entrezGeneId":"7857"},{"alias":"SgII","entrezGeneId":"7857"},{"alias":"SN","entrezGeneId":"7857"},{"alias":"BR140","entrezGeneId":"7862"},{"alias":"IDDDFP","entrezGeneId":"7862"},{"alias":"SCCL","entrezGeneId":"7864"},{"alias":"SCLC","entrezGeneId":"7864"},{"alias":"IFNRP","entrezGeneId":"7866"},{"alias":"SKMc15","entrezGeneId":"7866"},{"alias":"SM15","entrezGeneId":"7866"},{"alias":"3PK","entrezGeneId":"7867"},{"alias":"MAPKAP-K3","entrezGeneId":"7867"},{"alias":"MAPKAP3","entrezGeneId":"7867"},{"alias":"MAPKAPK-3","entrezGeneId":"7867"},{"alias":"MDPT3","entrezGeneId":"7867"},{"alias":"MK-3","entrezGeneId":"7867"},{"alias":"LUCA-1","entrezGeneId":"7869"},{"alias":"SemA","entrezGeneId":"7869"},{"alias":"SEMA5","entrezGeneId":"7869"},{"alias":"SEMAA","entrezGeneId":"7869"},{"alias":"semaV","entrezGeneId":"7869"},{"alias":"SLAP","entrezGeneId":"7871"},{"alias":"ARMET","entrezGeneId":"7873"},{"alias":"ARP","entrezGeneId":"7873"},{"alias":"HAUSP","entrezGeneId":"7874"},{"alias":"TEF1","entrezGeneId":"7874"},{"alias":"PRO2706","entrezGeneId":"7879"},{"alias":"RAB7","entrezGeneId":"7879"},{"alias":"HCFP1","entrezGeneId":"7880"},{"alias":"AKR6A3","entrezGeneId":"7881"},{"alias":"hKvb3","entrezGeneId":"7881"},{"alias":"hKvBeta3","entrezGeneId":"7881"},{"alias":"KCNA1B","entrezGeneId":"7881"},{"alias":"KV-BETA-1","entrezGeneId":"7881"},{"alias":"Kvb1.3","entrezGeneId":"7881"},{"alias":"HBP","entrezGeneId":"7884"},{"alias":"CRS3","entrezGeneId":"7885"},{"alias":"PST","entrezGeneId":"7903"},{"alias":"PST1","entrezGeneId":"7903"},{"alias":"SIAT8D","entrezGeneId":"7903"},{"alias":"ST8SIA-IV","entrezGeneId":"7903"},{"alias":"C5orf18","entrezGeneId":"7905"},{"alias":"D5S346","entrezGeneId":"7905"},{"alias":"DP1","entrezGeneId":"7905"},{"alias":"TB2","entrezGeneId":"7905"},{"alias":"Yip2e","entrezGeneId":"7905"},{"alias":"YOP1","entrezGeneId":"7905"},{"alias":"HCI","entrezGeneId":"7909"},{"alias":"D6S231E","entrezGeneId":"7913"},{"alias":"SSADH","entrezGeneId":"7915"},{"alias":"SSDH","entrezGeneId":"7915"},{"alias":"BAT2","entrezGeneId":"7916"},{"alias":"D6S51","entrezGeneId":"7916"},{"alias":"D6S51E","entrezGeneId":"7916"},{"alias":"G2","entrezGeneId":"7916"},{"alias":"BAG-6","entrezGeneId":"7917"},{"alias":"BAT3","entrezGeneId":"7917"},{"alias":"D6S52E","entrezGeneId":"7917"},{"alias":"G3","entrezGeneId":"7917"},{"alias":"ANKRD59","entrezGeneId":"7918"},{"alias":"BAT4","entrezGeneId":"7918"},{"alias":"D6S54E","entrezGeneId":"7918"},{"alias":"G5","entrezGeneId":"7918"},{"alias":"GPATCH10","entrezGeneId":"7918"},{"alias":"BAT1","entrezGeneId":"7919"},{"alias":"D6S81E","entrezGeneId":"7919"},{"alias":"UAP56","entrezGeneId":"7919"},{"alias":"BAT5","entrezGeneId":"7920"},{"alias":"D6S82E","entrezGeneId":"7920"},{"alias":"NG26","entrezGeneId":"7920"},{"alias":"PP199","entrezGeneId":"7920"},{"alias":"HLA-HA2","entrezGeneId":"7921"},{"alias":"D6S115E","entrezGeneId":"7922"},{"alias":"D6S2244E","entrezGeneId":"7922"},{"alias":"H2-KE4","entrezGeneId":"7922"},{"alias":"HKE4","entrezGeneId":"7922"},{"alias":"KE4","entrezGeneId":"7922"},{"alias":"RING5","entrezGeneId":"7922"},{"alias":"ZIP7","entrezGeneId":"7922"},{"alias":"D6S2245E","entrezGeneId":"7923"},{"alias":"dJ1033B10.9","entrezGeneId":"7923"},{"alias":"FABG","entrezGeneId":"7923"},{"alias":"FABGL","entrezGeneId":"7923"},{"alias":"H2-KE6","entrezGeneId":"7923"},{"alias":"HKE6","entrezGeneId":"7923"},{"alias":"KE6","entrezGeneId":"7923"},{"alias":"RING2","entrezGeneId":"7923"},{"alias":"SDR30C1","entrezGeneId":"7923"},{"alias":"ISSCW","entrezGeneId":"7928"},{"alias":"dJ271M21.2","entrezGeneId":"7932"},{"alias":"FAT11","entrezGeneId":"7932"},{"alias":"hs6M1-12","entrezGeneId":"7932"},{"alias":"OLFR2","entrezGeneId":"7932"},{"alias":"OLFR42B","entrezGeneId":"7932"},{"alias":"OR2H3","entrezGeneId":"7932"},{"alias":"D6S45","entrezGeneId":"7936"},{"alias":"NELF-E","entrezGeneId":"7936"},{"alias":"RD","entrezGeneId":"7936"},{"alias":"RDBP","entrezGeneId":"7936"},{"alias":"RDP","entrezGeneId":"7936"},{"alias":"LCP20","entrezGeneId":"7938"},{"alias":"B144","entrezGeneId":"7940"},{"alias":"D6S49E","entrezGeneId":"7940"},{"alias":"LST-1","entrezGeneId":"7940"},{"alias":"LDL-PLA2","entrezGeneId":"7941"},{"alias":"LP-PLA2","entrezGeneId":"7941"},{"alias":"PAFAD","entrezGeneId":"7941"},{"alias":"PAFAH","entrezGeneId":"7941"},{"alias":"ALPHATFEB","entrezGeneId":"7942"},{"alias":"BHLHE35","entrezGeneId":"7942"},{"alias":"TCFEB","entrezGeneId":"7942"},{"alias":"CRAPB","entrezGeneId":"7948"},{"alias":"PBCRA","entrezGeneId":"7948"},{"alias":"DMTN","entrezGeneId":"7952"},{"alias":"TNDM1","entrezGeneId":"7952"},{"alias":"FCP","entrezGeneId":"7954"},{"alias":"HPFH","entrezGeneId":"7954"},{"alias":"STL","entrezGeneId":"7955"},{"alias":"EPM2","entrezGeneId":"7957"},{"alias":"MELF","entrezGeneId":"7957"},{"alias":"JTV-1","entrezGeneId":"7965"},{"alias":"JTV1","entrezGeneId":"7965"},{"alias":"P38","entrezGeneId":"7965"},{"alias":"NFE2U","entrezGeneId":"7975"},{"alias":"P18","entrezGeneId":"7975"},{"alias":"Fz-3","entrezGeneId":"7976"},{"alias":"MTERF","entrezGeneId":"7978"},{"alias":"C7orf76","entrezGeneId":"7979"},{"alias":"DSS1","entrezGeneId":"7979"},{"alias":"ECD","entrezGeneId":"7979"},{"alias":"SHFD1","entrezGeneId":"7979"},{"alias":"Shfdg1","entrezGeneId":"7979"},{"alias":"SHFM1","entrezGeneId":"7979"},{"alias":"SHSF1","entrezGeneId":"7979"},{"alias":"PP5","entrezGeneId":"7980"},{"alias":"REF1","entrezGeneId":"7980"},{"alias":"TFPI-2","entrezGeneId":"7980"},{"alias":"ETS7q","entrezGeneId":"7982"},{"alias":"FAM4A","entrezGeneId":"7982"},{"alias":"FAM4A1","entrezGeneId":"7982"},{"alias":"HELG","entrezGeneId":"7982"},{"alias":"RAY1","entrezGeneId":"7982"},{"alias":"SEN4","entrezGeneId":"7982"},{"alias":"TSG7","entrezGeneId":"7982"},{"alias":"GEF5","entrezGeneId":"7984"},{"alias":"P60","entrezGeneId":"7984"},{"alias":"TIM","entrezGeneId":"7984"},{"alias":"TIM1","entrezGeneId":"7984"},{"alias":"PDS1","entrezGeneId":"7986"},{"alias":"C2H2-150","entrezGeneId":"7988"},{"alias":"ZNF182","entrezGeneId":"7988"},{"alias":"ZNFC150","entrezGeneId":"7988"},{"alias":"D8S1992","entrezGeneId":"7991"},{"alias":"M33","entrezGeneId":"7991"},{"alias":"MagT2","entrezGeneId":"7991"},{"alias":"MRT22","entrezGeneId":"7991"},{"alias":"MRT7","entrezGeneId":"7991"},{"alias":"N33","entrezGeneId":"7991"},{"alias":"OST3A","entrezGeneId":"7991"},{"alias":"D8S2298E","entrezGeneId":"7993"},{"alias":"REP8","entrezGeneId":"7993"},{"alias":"UBXD6","entrezGeneId":"7993"},{"alias":"MOZ","entrezGeneId":"7994"},{"alias":"MRD32","entrezGeneId":"7994"},{"alias":"MYST-3","entrezGeneId":"7994"},{"alias":"MYST3","entrezGeneId":"7994"},{"alias":"RUNXBP2","entrezGeneId":"7994"},{"alias":"ZC2HC6A","entrezGeneId":"7994"},{"alias":"ZNF220","entrezGeneId":"7994"},{"alias":"PRO232","entrezGeneId":"8000"},{"alias":"MRS","entrezGeneId":"8011"},{"alias":"CHN","entrezGeneId":"8013"},{"alias":"CSMF","entrezGeneId":"8013"},{"alias":"MINOR","entrezGeneId":"8013"},{"alias":"NOR1","entrezGeneId":"8013"},{"alias":"TEC","entrezGeneId":"8013"},{"alias":"ORFX","entrezGeneId":"8019"},{"alias":"RING3L","entrezGeneId":"8019"},{"alias":"CAIN","entrezGeneId":"8021"},{"alias":"CAN","entrezGeneId":"8021"},{"alias":"CPHD3","entrezGeneId":"8022"},{"alias":"LIM3","entrezGeneId":"8022"},{"alias":"M2-LHX3","entrezGeneId":"8022"},{"alias":"DGCR2","entrezGeneId":"8026"},{"alias":"STAM-1","entrezGeneId":"8027"},{"alias":"STAM1","entrezGeneId":"8027"},{"alias":"AF10","entrezGeneId":"8028"},{"alias":"gp280","entrezGeneId":"8029"},{"alias":"IFCR","entrezGeneId":"8029"},{"alias":"MGA1","entrezGeneId":"8029"},{"alias":"D10S170","entrezGeneId":"8030"},{"alias":"H4","entrezGeneId":"8030"},{"alias":"PTC","entrezGeneId":"8030"},{"alias":"TPC","entrezGeneId":"8030"},{"alias":"TST1","entrezGeneId":"8030"},{"alias":"ARA70","entrezGeneId":"8031"},{"alias":"ELE1","entrezGeneId":"8031"},{"alias":"PTC3","entrezGeneId":"8031"},{"alias":"RFG","entrezGeneId":"8031"},{"alias":"D10S105E","entrezGeneId":"8034"},{"alias":"GDA","entrezGeneId":"8034"},{"alias":"GDC","entrezGeneId":"8034"},{"alias":"HGT.1","entrezGeneId":"8034"},{"alias":"hML7","entrezGeneId":"8034"},{"alias":"ML7","entrezGeneId":"8034"},{"alias":"SIAA0862","entrezGeneId":"8036"},{"alias":"SOC2","entrezGeneId":"8036"},{"alias":"SUR8","entrezGeneId":"8036"},{"alias":"ADAM12-OT1","entrezGeneId":"8038"},{"alias":"CAR10","entrezGeneId":"8038"},{"alias":"MCMP","entrezGeneId":"8038"},{"alias":"MCMPMltna","entrezGeneId":"8038"},{"alias":"MLTN","entrezGeneId":"8038"},{"alias":"MLTNA","entrezGeneId":"8038"},{"alias":"C11orf13","entrezGeneId":"8045"},{"alias":"HRAS1","entrezGeneId":"8045"},{"alias":"HRC1","entrezGeneId":"8045"},{"alias":"CLP","entrezGeneId":"8048"},{"alias":"CMD1M","entrezGeneId":"8048"},{"alias":"CMH12","entrezGeneId":"8048"},{"alias":"CRP3","entrezGeneId":"8048"},{"alias":"LMO4","entrezGeneId":"8048"},{"alias":"MLP","entrezGeneId":"8048"},{"alias":"DLDBP","entrezGeneId":"8050"},{"alias":"E3BP","entrezGeneId":"8050"},{"alias":"OPDX","entrezGeneId":"8050"},{"alias":"PDHXD","entrezGeneId":"8050"},{"alias":"PDX1","entrezGeneId":"8050"},{"alias":"proX","entrezGeneId":"8050"},{"alias":"FBP","entrezGeneId":"8056"},{"alias":"FRA","entrezGeneId":"8061"},{"alias":"fra-1","entrezGeneId":"8061"},{"alias":"FRA1","entrezGeneId":"8061"},{"alias":"CUL-5","entrezGeneId":"8065"},{"alias":"VACM-1","entrezGeneId":"8065"},{"alias":"VACM1","entrezGeneId":"8065"},{"alias":"HH13","entrezGeneId":"8073"},{"alias":"HH7-2","entrezGeneId":"8073"},{"alias":"HU-PP-1","entrezGeneId":"8073"},{"alias":"OV-1","entrezGeneId":"8073"},{"alias":"PRL-2","entrezGeneId":"8073"},{"alias":"PRL2","entrezGeneId":"8073"},{"alias":"ptp-IV1a","entrezGeneId":"8073"},{"alias":"ptp-IV1b","entrezGeneId":"8073"},{"alias":"PTP4A","entrezGeneId":"8073"},{"alias":"PTPCAAX2","entrezGeneId":"8073"},{"alias":"ADHR","entrezGeneId":"8074"},{"alias":"FGFN","entrezGeneId":"8074"},{"alias":"HPDR2","entrezGeneId":"8074"},{"alias":"HYPF","entrezGeneId":"8074"},{"alias":"PHPTC","entrezGeneId":"8074"},{"alias":"AAT9","entrezGeneId":"8076"},{"alias":"MAGP-2","entrezGeneId":"8076"},{"alias":"MAGP2","entrezGeneId":"8076"},{"alias":"MFAP-5","entrezGeneId":"8076"},{"alias":"MP25","entrezGeneId":"8076"},{"alias":"ISOT","entrezGeneId":"8078"},{"alias":"NTN4","entrezGeneId":"8079"},{"alias":"DAGA5","entrezGeneId":"8082"},{"alias":"KRAG","entrezGeneId":"8082"},{"alias":"NSPN","entrezGeneId":"8082"},{"alias":"SPN1","entrezGeneId":"8082"},{"alias":"SPN2","entrezGeneId":"8082"},{"alias":"AAD10","entrezGeneId":"8085"},{"alias":"ALR","entrezGeneId":"8085"},{"alias":"CAGL114","entrezGeneId":"8085"},{"alias":"KABUK1","entrezGeneId":"8085"},{"alias":"KMS","entrezGeneId":"8085"},{"alias":"MLL2","entrezGeneId":"8085"},{"alias":"MLL4","entrezGeneId":"8085"},{"alias":"TNRC21","entrezGeneId":"8085"},{"alias":"AAA","entrezGeneId":"8086"},{"alias":"AAASb","entrezGeneId":"8086"},{"alias":"ADRACALA","entrezGeneId":"8086"},{"alias":"ADRACALIN","entrezGeneId":"8086"},{"alias":"ALADIN","entrezGeneId":"8086"},{"alias":"GL003","entrezGeneId":"8086"},{"alias":"FXR1P","entrezGeneId":"8087"},{"alias":"4930573H17Rik","entrezGeneId":"8089"},{"alias":"B230215M10Rik","entrezGeneId":"8089"},{"alias":"GAS41","entrezGeneId":"8089"},{"alias":"NUBI-1","entrezGeneId":"8089"},{"alias":"YAF9","entrezGeneId":"8089"},{"alias":"SPMD","entrezGeneId":"8090"},{"alias":"BABL","entrezGeneId":"8091"},{"alias":"HMGI-C","entrezGeneId":"8091"},{"alias":"HMGIC","entrezGeneId":"8091"},{"alias":"LIPO","entrezGeneId":"8091"},{"alias":"STQTL9","entrezGeneId":"8091"},{"alias":"CART1","entrezGeneId":"8092"},{"alias":"FND3","entrezGeneId":"8092"},{"alias":"HEL23","entrezGeneId":"8092"},{"alias":"doc-1","entrezGeneId":"8099"},{"alias":"DOC1","entrezGeneId":"8099"},{"alias":"DORC1","entrezGeneId":"8099"},{"alias":"p12DOC-1","entrezGeneId":"8099"},{"alias":"ST19","entrezGeneId":"8099"},{"alias":"D13S1056E","entrezGeneId":"8100"},{"alias":"DAF19","entrezGeneId":"8100"},{"alias":"hTg737","entrezGeneId":"8100"},{"alias":"TG737","entrezGeneId":"8100"},{"alias":"TTC10","entrezGeneId":"8100"},{"alias":"D13S25","entrezGeneId":"8101"},{"alias":"DBM","entrezGeneId":"8101"},{"alias":"C13DELq32","entrezGeneId":"8104"},{"alias":"DEL13q32","entrezGeneId":"8104"},{"alias":"BCDS1","entrezGeneId":"8105"},{"alias":"OPMD","entrezGeneId":"8106"},{"alias":"PAB2","entrezGeneId":"8106"},{"alias":"PABII","entrezGeneId":"8106"},{"alias":"PABP-2","entrezGeneId":"8106"},{"alias":"PABP2","entrezGeneId":"8106"},{"alias":"BAF45C","entrezGeneId":"8110"},{"alias":"CERD4","entrezGeneId":"8110"},{"alias":"AI2A6","entrezGeneId":"8111"},{"alias":"GPR12A","entrezGeneId":"8111"},{"alias":"OGR1","entrezGeneId":"8111"},{"alias":"MCOP","entrezGeneId":"8113"},{"alias":"SIV","entrezGeneId":"8114"},{"alias":"TCL1","entrezGeneId":"8115"},{"alias":"EIEE48","entrezGeneId":"8120"},{"alias":"NAPTB","entrezGeneId":"8120"},{"alias":"D15S226E","entrezGeneId":"8123"},{"alias":"PAR-5","entrezGeneId":"8123"},{"alias":"PAR5","entrezGeneId":"8123"},{"alias":"C15orf1","entrezGeneId":"8125"},{"alias":"HPPCn","entrezGeneId":"8125"},{"alias":"I1PP2A","entrezGeneId":"8125"},{"alias":"LANP","entrezGeneId":"8125"},{"alias":"MAPM","entrezGeneId":"8125"},{"alias":"PHAP1","entrezGeneId":"8125"},{"alias":"PHAPI","entrezGeneId":"8125"},{"alias":"PP32","entrezGeneId":"8125"},{"alias":"HsT19690","entrezGeneId":"8128"},{"alias":"SIAT8-B","entrezGeneId":"8128"},{"alias":"SIAT8B","entrezGeneId":"8128"},{"alias":"ST8SIA-II","entrezGeneId":"8128"},{"alias":"ST8SiaII","entrezGeneId":"8128"},{"alias":"STX","entrezGeneId":"8128"},{"alias":"ATR1","entrezGeneId":"8129"},{"alias":"CATM","entrezGeneId":"8130"},{"alias":"C16orf35","entrezGeneId":"8131"},{"alias":"CGTHBA","entrezGeneId":"8131"},{"alias":"FFEVF3","entrezGeneId":"8131"},{"alias":"HS-40","entrezGeneId":"8131"},{"alias":"MARE","entrezGeneId":"8131"},{"alias":"NPR3","entrezGeneId":"8131"},{"alias":"RMD11","entrezGeneId":"8131"},{"alias":"GAN1","entrezGeneId":"8139"},{"alias":"KLHL16","entrezGeneId":"8139"},{"alias":"4F2LC","entrezGeneId":"8140"},{"alias":"CD98","entrezGeneId":"8140"},{"alias":"D16S469E","entrezGeneId":"8140"},{"alias":"E16","entrezGeneId":"8140"},{"alias":"LAT1","entrezGeneId":"8140"},{"alias":"MPE16","entrezGeneId":"8140"},{"alias":"FIM1","entrezGeneId":"8144"},{"alias":"FIMG","entrezGeneId":"8144"},{"alias":"FIMG1","entrezGeneId":"8144"},{"alias":"MGI","entrezGeneId":"8144"},{"alias":"Npl3","entrezGeneId":"8148"},{"alias":"RBP56","entrezGeneId":"8148"},{"alias":"TAF2N","entrezGeneId":"8148"},{"alias":"TAFII68","entrezGeneId":"8148"},{"alias":"FWT1","entrezGeneId":"8151"},{"alias":"ARHN","entrezGeneId":"8153"},{"alias":"RHO7","entrezGeneId":"8153"},{"alias":"RhoN","entrezGeneId":"8153"},{"alias":"CLN80","entrezGeneId":"8161"},{"alias":"p80-coilin","entrezGeneId":"8161"},{"alias":"AKAP","entrezGeneId":"8165"},{"alias":"AKAP121","entrezGeneId":"8165"},{"alias":"AKAP149","entrezGeneId":"8165"},{"alias":"AKAP84","entrezGeneId":"8165"},{"alias":"D-AKAP1","entrezGeneId":"8165"},{"alias":"PPP1R43","entrezGeneId":"8165"},{"alias":"PRKA1","entrezGeneId":"8165"},{"alias":"SAKAP84","entrezGeneId":"8165"},{"alias":"TDRD17","entrezGeneId":"8165"},{"alias":"hUT-A6","entrezGeneId":"8170"},{"alias":"HUT2","entrezGeneId":"8170"},{"alias":"UT-A2","entrezGeneId":"8170"},{"alias":"UT2","entrezGeneId":"8170"},{"alias":"UTA","entrezGeneId":"8170"},{"alias":"UTR","entrezGeneId":"8170"},{"alias":"MACAM1","entrezGeneId":"8174"},{"alias":"PRP11","entrezGeneId":"8175"},{"alias":"PRPF11","entrezGeneId":"8175"},{"alias":"SAP62","entrezGeneId":"8175"},{"alias":"SF3a66","entrezGeneId":"8175"},{"alias":"D19S381E","entrezGeneId":"8177"},{"alias":"C19orf17","entrezGeneId":"8178"},{"alias":"ELL1","entrezGeneId":"8178"},{"alias":"MEN","entrezGeneId":"8178"},{"alias":"PPP1R68","entrezGeneId":"8178"},{"alias":"BFIC","entrezGeneId":"8181"},{"alias":"BFIC1","entrezGeneId":"8181"},{"alias":"HB1","entrezGeneId":"8184"},{"alias":"PFHB1","entrezGeneId":"8184"},{"alias":"PFHB1B","entrezGeneId":"8184"},{"alias":"HOK-2","entrezGeneId":"8187"},{"alias":"MOK2","entrezGeneId":"8187"},{"alias":"SPK","entrezGeneId":"8189"},{"alias":"SYM","entrezGeneId":"8189"},{"alias":"CD-RAP","entrezGeneId":"8190"},{"alias":"DFNB81","entrezGeneId":"8192"},{"alias":"PRLTS3","entrezGeneId":"8192"},{"alias":"BAF45b","entrezGeneId":"8193"},{"alias":"NEUD4","entrezGeneId":"8193"},{"alias":"neuro-d4","entrezGeneId":"8193"},{"alias":"BBS6","entrezGeneId":"8195"},{"alias":"HMCS","entrezGeneId":"8195"},{"alias":"KMS","entrezGeneId":"8195"},{"alias":"MKS","entrezGeneId":"8195"},{"alias":"BDA1C","entrezGeneId":"8200"},{"alias":"BMP-14","entrezGeneId":"8200"},{"alias":"BMP14","entrezGeneId":"8200"},{"alias":"CDMP1","entrezGeneId":"8200"},{"alias":"LAP-4","entrezGeneId":"8200"},{"alias":"LAP4","entrezGeneId":"8200"},{"alias":"OS5","entrezGeneId":"8200"},{"alias":"SYM1B","entrezGeneId":"8200"},{"alias":"SYNS2","entrezGeneId":"8200"},{"alias":"MLRG","entrezGeneId":"8201"},{"alias":"MTS","entrezGeneId":"8201"},{"alias":"ACTR","entrezGeneId":"8202"},{"alias":"AIB-1","entrezGeneId":"8202"},{"alias":"AIB1","entrezGeneId":"8202"},{"alias":"bHLHe42","entrezGeneId":"8202"},{"alias":"CAGH16","entrezGeneId":"8202"},{"alias":"CTG26","entrezGeneId":"8202"},{"alias":"KAT13B","entrezGeneId":"8202"},{"alias":"pCIP","entrezGeneId":"8202"},{"alias":"RAC3","entrezGeneId":"8202"},{"alias":"SRC-3","entrezGeneId":"8202"},{"alias":"SRC3","entrezGeneId":"8202"},{"alias":"TNRC14","entrezGeneId":"8202"},{"alias":"TNRC16","entrezGeneId":"8202"},{"alias":"TRAM-1","entrezGeneId":"8202"},{"alias":"RIP140","entrezGeneId":"8204"},{"alias":"MST","entrezGeneId":"8205"},{"alias":"CAF-1","entrezGeneId":"8208"},{"alias":"CAF-IP60","entrezGeneId":"8208"},{"alias":"CAF1","entrezGeneId":"8208"},{"alias":"CAF1A","entrezGeneId":"8208"},{"alias":"CAF1P60","entrezGeneId":"8208"},{"alias":"MPHOSPH7","entrezGeneId":"8208"},{"alias":"MPP7","entrezGeneId":"8208"},{"alias":"C21orf33","entrezGeneId":"8209"},{"alias":"ES1","entrezGeneId":"8209"},{"alias":"GATD3","entrezGeneId":"8209"},{"alias":"GT335","entrezGeneId":"8209"},{"alias":"HES1","entrezGeneId":"8209"},{"alias":"KNPH","entrezGeneId":"8209"},{"alias":"KNPI","entrezGeneId":"8209"},{"alias":"DSH","entrezGeneId":"8215"},{"alias":"DVL","entrezGeneId":"8215"},{"alias":"DVL-22","entrezGeneId":"8215"},{"alias":"DVL1","entrezGeneId":"8215"},{"alias":"DVL1L1","entrezGeneId":"8215"},{"alias":"DVL4","entrezGeneId":"8215"},{"alias":"BTBD29","entrezGeneId":"8216"},{"alias":"LZTR-1","entrezGeneId":"8216"},{"alias":"NS10","entrezGeneId":"8216"},{"alias":"SWNTS2","entrezGeneId":"8216"},{"alias":"IGLJ@","entrezGeneId":"8217"},{"alias":"CHC22","entrezGeneId":"8218"},{"alias":"CLH22","entrezGeneId":"8218"},{"alias":"CLTCL","entrezGeneId":"8218"},{"alias":"CLTD","entrezGeneId":"8218"},{"alias":"bis1","entrezGeneId":"8220"},{"alias":"DGCR13","entrezGeneId":"8220"},{"alias":"DGCR14","entrezGeneId":"8220"},{"alias":"DGS-H","entrezGeneId":"8220"},{"alias":"DGS-I","entrezGeneId":"8220"},{"alias":"DGSH","entrezGeneId":"8220"},{"alias":"DGSI","entrezGeneId":"8220"},{"alias":"ES2","entrezGeneId":"8220"},{"alias":"Es2el","entrezGeneId":"8220"},{"alias":"ESS-2","entrezGeneId":"8220"},{"alias":"BBBG2","entrezGeneId":"8221"},{"alias":"GBBB2","entrezGeneId":"8221"},{"alias":"PGPL","entrezGeneId":"8225"},{"alias":"DXF68S1E","entrezGeneId":"8226"},{"alias":"FAM16AX","entrezGeneId":"8226"},{"alias":"GS1","entrezGeneId":"8226"},{"alias":"HDHD1","entrezGeneId":"8226"},{"alias":"HDHD1A","entrezGeneId":"8226"},{"alias":"721P","entrezGeneId":"8227"},{"alias":"AKAP-17A","entrezGeneId":"8227"},{"alias":"CCDC133","entrezGeneId":"8227"},{"alias":"CXYorf3","entrezGeneId":"8227"},{"alias":"DXYS155E","entrezGeneId":"8227"},{"alias":"PRKA17A","entrezGeneId":"8227"},{"alias":"SFRS17A","entrezGeneId":"8227"},{"alias":"XE7","entrezGeneId":"8227"},{"alias":"XE7Y","entrezGeneId":"8227"},{"alias":"DXS1283E","entrezGeneId":"8228"},{"alias":"GS2","entrezGeneId":"8228"},{"alias":"iPLA2eta","entrezGeneId":"8228"},{"alias":"U2AF1-RS2","entrezGeneId":"8233"},{"alias":"U2AF1L2","entrezGeneId":"8233"},{"alias":"U2AF1RS2","entrezGeneId":"8233"},{"alias":"URP","entrezGeneId":"8233"},{"alias":"ZC3H22","entrezGeneId":"8233"},{"alias":"UHX1","entrezGeneId":"8237"},{"alias":"DFFRX","entrezGeneId":"8239"},{"alias":"FAF","entrezGeneId":"8239"},{"alias":"FAM","entrezGeneId":"8239"},{"alias":"MRX99","entrezGeneId":"8239"},{"alias":"MRXS99F","entrezGeneId":"8239"},{"alias":"DXS8237E","entrezGeneId":"8241"},{"alias":"GPATC9","entrezGeneId":"8241"},{"alias":"GPATCH9","entrezGeneId":"8241"},{"alias":"S1-1","entrezGeneId":"8241"},{"alias":"TARPS","entrezGeneId":"8241"},{"alias":"ZRANB5","entrezGeneId":"8241"},{"alias":"DXS1272E","entrezGeneId":"8242"},{"alias":"JARID1C","entrezGeneId":"8242"},{"alias":"MRX13","entrezGeneId":"8242"},{"alias":"MRXJ","entrezGeneId":"8242"},{"alias":"MRXSCJ","entrezGeneId":"8242"},{"alias":"MRXSJ","entrezGeneId":"8242"},{"alias":"SMCX","entrezGeneId":"8242"},{"alias":"XE169","entrezGeneId":"8242"},{"alias":"CDLS2","entrezGeneId":"8243"},{"alias":"DXS423E","entrezGeneId":"8243"},{"alias":"SB1.8","entrezGeneId":"8243"},{"alias":"SMC1","entrezGeneId":"8243"},{"alias":"SMC1alpha","entrezGeneId":"8243"},{"alias":"SMC1L1","entrezGeneId":"8243"},{"alias":"SMCB","entrezGeneId":"8243"},{"alias":"A11","entrezGeneId":"8248"},{"alias":"MFTS","entrezGeneId":"8249"},{"alias":"AUF1B","entrezGeneId":"8251"},{"alias":"AUF1P","entrezGeneId":"8251"},{"alias":"HNRNPDP","entrezGeneId":"8251"},{"alias":"HNRPDP","entrezGeneId":"8251"},{"alias":"BDCS","entrezGeneId":"8255"},{"alias":"ARD1","entrezGeneId":"8260"},{"alias":"ARD1A","entrezGeneId":"8260"},{"alias":"ARD1P","entrezGeneId":"8260"},{"alias":"DXS707","entrezGeneId":"8260"},{"alias":"hARD1","entrezGeneId":"8260"},{"alias":"MCOPS1","entrezGeneId":"8260"},{"alias":"NATD","entrezGeneId":"8260"},{"alias":"OGDNS","entrezGeneId":"8260"},{"alias":"TE2","entrezGeneId":"8260"},{"alias":"DXS522E","entrezGeneId":"8263"},{"alias":"F8A","entrezGeneId":"8263"},{"alias":"HAP40","entrezGeneId":"8263"},{"alias":"DX254E","entrezGeneId":"8266"},{"alias":"DXS254E","entrezGeneId":"8266"},{"alias":"G6PD","entrezGeneId":"8266"},{"alias":"GDX","entrezGeneId":"8266"},{"alias":"GET5","entrezGeneId":"8266"},{"alias":"MDY2","entrezGeneId":"8266"},{"alias":"TMA24","entrezGeneId":"8266"},{"alias":"UBL4","entrezGeneId":"8266"},{"alias":"CIIP","entrezGeneId":"8268"},{"alias":"CIIPX","entrezGeneId":"8268"},{"alias":"CXorf12","entrezGeneId":"8269"},{"alias":"DXS9878E","entrezGeneId":"8269"},{"alias":"ITBA1","entrezGeneId":"8269"},{"alias":"CVG5","entrezGeneId":"8270"},{"alias":"DXS9879E","entrezGeneId":"8270"},{"alias":"DXS9951E","entrezGeneId":"8270"},{"alias":"ESO3","entrezGeneId":"8270"},{"alias":"GAMOS2","entrezGeneId":"8270"},{"alias":"ITBA2","entrezGeneId":"8270"},{"alias":"Pcc1","entrezGeneId":"8270"},{"alias":"DXS253E","entrezGeneId":"8273"},{"alias":"P3","entrezGeneId":"8273"},{"alias":"TKR","entrezGeneId":"8277"},{"alias":"TKT2","entrezGeneId":"8277"},{"alias":"HY","entrezGeneId":"8284"},{"alias":"HYA","entrezGeneId":"8284"},{"alias":"JARID1D","entrezGeneId":"8284"},{"alias":"SMCY","entrezGeneId":"8284"},{"alias":"DFFRY","entrezGeneId":"8287"},{"alias":"SPGFY2","entrezGeneId":"8287"},{"alias":"EPO","entrezGeneId":"8288"},{"alias":"EPP","entrezGeneId":"8288"},{"alias":"EPX-PEN","entrezGeneId":"8288"},{"alias":"EPXD","entrezGeneId":"8288"},{"alias":"B120","entrezGeneId":"8289"},{"alias":"BAF250","entrezGeneId":"8289"},{"alias":"BAF250a","entrezGeneId":"8289"},{"alias":"BM029","entrezGeneId":"8289"},{"alias":"C1orf4","entrezGeneId":"8289"},{"alias":"CSS2","entrezGeneId":"8289"},{"alias":"ELD","entrezGeneId":"8289"},{"alias":"hELD","entrezGeneId":"8289"},{"alias":"hOSA1","entrezGeneId":"8289"},{"alias":"MRD14","entrezGeneId":"8289"},{"alias":"OSA1","entrezGeneId":"8289"},{"alias":"P270","entrezGeneId":"8289"},{"alias":"SMARCF1","entrezGeneId":"8289"},{"alias":"H3.4","entrezGeneId":"8290"},{"alias":"H3/g","entrezGeneId":"8290"},{"alias":"H3FT","entrezGeneId":"8290"},{"alias":"H3t","entrezGeneId":"8290"},{"alias":"FER1L1","entrezGeneId":"8291"},{"alias":"LGMD2B","entrezGeneId":"8291"},{"alias":"MMD1","entrezGeneId":"8291"},{"alias":"CMS5","entrezGeneId":"8292"},{"alias":"EAD","entrezGeneId":"8292"},{"alias":"4F5","entrezGeneId":"8293"},{"alias":"FAM2A","entrezGeneId":"8293"},{"alias":"H4F5","entrezGeneId":"8293"},{"alias":"SERF1","entrezGeneId":"8293"},{"alias":"SMAM1","entrezGeneId":"8293"},{"alias":"H4/m","entrezGeneId":"8294"},{"alias":"H4FM","entrezGeneId":"8294"},{"alias":"H4M","entrezGeneId":"8294"},{"alias":"PAF350/400","entrezGeneId":"8295"},{"alias":"PAF400","entrezGeneId":"8295"},{"alias":"STAF40","entrezGeneId":"8295"},{"alias":"TR-AP","entrezGeneId":"8295"},{"alias":"Tra1","entrezGeneId":"8295"},{"alias":"CALM","entrezGeneId":"8301"},{"alias":"CLTH","entrezGeneId":"8301"},{"alias":"LAP","entrezGeneId":"8301"},{"alias":"NKG2-F","entrezGeneId":"8302"},{"alias":"NKG2F","entrezGeneId":"8302"},{"alias":"BCOX","entrezGeneId":"8309"},{"alias":"BRCACOX","entrezGeneId":"8309"},{"alias":"BRCOX","entrezGeneId":"8309"},{"alias":"CBAS6","entrezGeneId":"8309"},{"alias":"THCCox","entrezGeneId":"8309"},{"alias":"AXIN","entrezGeneId":"8312"},{"alias":"PPP1R49","entrezGeneId":"8312"},{"alias":"AXIL","entrezGeneId":"8313"},{"alias":"ODCRCS","entrezGeneId":"8313"},{"alias":"HUCEP-13","entrezGeneId":"8314"},{"alias":"hucep-6","entrezGeneId":"8314"},{"alias":"UCHL2","entrezGeneId":"8314"},{"alias":"BRAP2","entrezGeneId":"8315"},{"alias":"IMP","entrezGeneId":"8315"},{"alias":"RNF52","entrezGeneId":"8315"},{"alias":"CDC7L1","entrezGeneId":"8317"},{"alias":"HsCDC7","entrezGeneId":"8317"},{"alias":"Hsk1","entrezGeneId":"8317"},{"alias":"huCDC7","entrezGeneId":"8317"},{"alias":"CDC45L","entrezGeneId":"8318"},{"alias":"CDC45L2","entrezGeneId":"8318"},{"alias":"MGORS7","entrezGeneId":"8318"},{"alias":"PORC-PI-1","entrezGeneId":"8318"},{"alias":"TBR2","entrezGeneId":"8320"},{"alias":"CD344","entrezGeneId":"8322"},{"alias":"EVR1","entrezGeneId":"8322"},{"alias":"FEVR","entrezGeneId":"8322"},{"alias":"Fz-4","entrezGeneId":"8322"},{"alias":"Fz4","entrezGeneId":"8322"},{"alias":"FZD4S","entrezGeneId":"8322"},{"alias":"FzE4","entrezGeneId":"8322"},{"alias":"GPCR","entrezGeneId":"8322"},{"alias":"hFz4","entrezGeneId":"8322"},{"alias":"FZ-6","entrezGeneId":"8323"},{"alias":"FZ6","entrezGeneId":"8323"},{"alias":"HFZ6","entrezGeneId":"8323"},{"alias":"NDNC10","entrezGeneId":"8323"},{"alias":"FzE3","entrezGeneId":"8324"},{"alias":"FZ-8","entrezGeneId":"8325"},{"alias":"hFZ8","entrezGeneId":"8325"},{"alias":"CD349","entrezGeneId":"8326"},{"alias":"FZD3","entrezGeneId":"8326"},{"alias":"E4TF1","entrezGeneId":"8327"},{"alias":"E4TF1B","entrezGeneId":"8327"},{"alias":"GABPB1","entrezGeneId":"8327"},{"alias":"BDPLT17","entrezGeneId":"8328"},{"alias":"ZNF163B","entrezGeneId":"8328"},{"alias":"H2A/c","entrezGeneId":"8329"},{"alias":"H2AFC","entrezGeneId":"8329"},{"alias":"H2A/d","entrezGeneId":"8330"},{"alias":"H2AFD","entrezGeneId":"8330"},{"alias":"dJ160A22.4","entrezGeneId":"8331"},{"alias":"H2A/E","entrezGeneId":"8331"},{"alias":"H2AFE","entrezGeneId":"8331"},{"alias":"dJ193B12.9","entrezGeneId":"8332"},{"alias":"H2A.i","entrezGeneId":"8332"},{"alias":"H2A/i","entrezGeneId":"8332"},{"alias":"H2AFI","entrezGeneId":"8332"},{"alias":"dJ34B20.2","entrezGeneId":"8333"},{"alias":"H2A/k","entrezGeneId":"8333"},{"alias":"H2AFK","entrezGeneId":"8333"},{"alias":"H2AFKP","entrezGeneId":"8333"},{"alias":"pH2A/k","entrezGeneId":"8333"},{"alias":"dJ221C16.4","entrezGeneId":"8334"},{"alias":"H2A/l","entrezGeneId":"8334"},{"alias":"H2AFL","entrezGeneId":"8334"},{"alias":"H2A/m","entrezGeneId":"8335"},{"alias":"H2AFM","entrezGeneId":"8335"},{"alias":"dJ193B12.1","entrezGeneId":"8336"},{"alias":"H2A.1","entrezGeneId":"8336"},{"alias":"H2A/n","entrezGeneId":"8336"},{"alias":"H2AFN","entrezGeneId":"8336"},{"alias":"H2A","entrezGeneId":"8337"},{"alias":"H2a-615","entrezGeneId":"8337"},{"alias":"H2A.2","entrezGeneId":"8337"},{"alias":"H2A/O","entrezGeneId":"8337"},{"alias":"H2A/q","entrezGeneId":"8337"},{"alias":"H2AFO","entrezGeneId":"8337"},{"alias":"HIST2H2AA","entrezGeneId":"8337"},{"alias":"H2A","entrezGeneId":"8338"},{"alias":"H2A-GL101","entrezGeneId":"8338"},{"alias":"H2A/q","entrezGeneId":"8338"},{"alias":"H2AFQ","entrezGeneId":"8338"},{"alias":"dJ221C16.8","entrezGeneId":"8339"},{"alias":"H2B.1A","entrezGeneId":"8339"},{"alias":"H2B/a","entrezGeneId":"8339"},{"alias":"H2BFA","entrezGeneId":"8339"},{"alias":"dJ97D16.4","entrezGeneId":"8340"},{"alias":"H2B/c","entrezGeneId":"8340"},{"alias":"H2BFC","entrezGeneId":"8340"},{"alias":"H2B/d","entrezGeneId":"8341"},{"alias":"H2BFD","entrezGeneId":"8341"},{"alias":"dJ160A22.3","entrezGeneId":"8342"},{"alias":"H2B/e","entrezGeneId":"8342"},{"alias":"H2BFE","entrezGeneId":"8342"},{"alias":"H2B/g","entrezGeneId":"8343"},{"alias":"H2BFG","entrezGeneId":"8343"},{"alias":"dJ221C16.8","entrezGeneId":"8344"},{"alias":"H2B.h","entrezGeneId":"8344"},{"alias":"H2B/h","entrezGeneId":"8344"},{"alias":"H2BFH","entrezGeneId":"8344"},{"alias":"H2B/j","entrezGeneId":"8345"},{"alias":"H2BFJ","entrezGeneId":"8345"},{"alias":"H2B/k","entrezGeneId":"8346"},{"alias":"H2BFK","entrezGeneId":"8346"},{"alias":"dJ221C16.3","entrezGeneId":"8347"},{"alias":"H2B.1","entrezGeneId":"8347"},{"alias":"H2B/l","entrezGeneId":"8347"},{"alias":"H2BFL","entrezGeneId":"8347"},{"alias":"dJ193B12.2","entrezGeneId":"8348"},{"alias":"H2B.2","entrezGeneId":"8348"},{"alias":"H2B/n","entrezGeneId":"8348"},{"alias":"H2BFN","entrezGeneId":"8348"},{"alias":"GL105","entrezGeneId":"8349"},{"alias":"H2B","entrezGeneId":"8349"},{"alias":"H2B.1","entrezGeneId":"8349"},{"alias":"H2BFQ","entrezGeneId":"8349"},{"alias":"H2BGL105","entrezGeneId":"8349"},{"alias":"H2BQ","entrezGeneId":"8349"},{"alias":"H3/A","entrezGeneId":"8350"},{"alias":"H3FA","entrezGeneId":"8350"},{"alias":"H3/b","entrezGeneId":"8351"},{"alias":"H3FB","entrezGeneId":"8351"},{"alias":"H3.1","entrezGeneId":"8352"},{"alias":"H3/c","entrezGeneId":"8352"},{"alias":"H3FC","entrezGeneId":"8352"},{"alias":"H3.1","entrezGeneId":"8353"},{"alias":"H3/d","entrezGeneId":"8353"},{"alias":"H3FD","entrezGeneId":"8353"},{"alias":"H3.f","entrezGeneId":"8354"},{"alias":"H3/f","entrezGeneId":"8354"},{"alias":"H3FF","entrezGeneId":"8354"},{"alias":"H3/h","entrezGeneId":"8355"},{"alias":"H3FH","entrezGeneId":"8355"},{"alias":"H3/j","entrezGeneId":"8356"},{"alias":"H3FJ","entrezGeneId":"8356"},{"alias":"H3/k","entrezGeneId":"8357"},{"alias":"H3F1K","entrezGeneId":"8357"},{"alias":"H3FK","entrezGeneId":"8357"},{"alias":"H3/l","entrezGeneId":"8358"},{"alias":"H3FL","entrezGeneId":"8358"},{"alias":"H4FA","entrezGeneId":"8359"},{"alias":"dJ221C16.9","entrezGeneId":"8360"},{"alias":"H4/b","entrezGeneId":"8360"},{"alias":"H4FB","entrezGeneId":"8360"},{"alias":"H4","entrezGeneId":"8361"},{"alias":"H4/c","entrezGeneId":"8361"},{"alias":"H4FC","entrezGeneId":"8361"},{"alias":"dJ160A22.1","entrezGeneId":"8362"},{"alias":"H4/d","entrezGeneId":"8362"},{"alias":"H4F2iii","entrezGeneId":"8362"},{"alias":"H4FD","entrezGeneId":"8362"},{"alias":"dJ160A22.2","entrezGeneId":"8363"},{"alias":"H4/e","entrezGeneId":"8363"},{"alias":"H4F2iv","entrezGeneId":"8363"},{"alias":"H4FE","entrezGeneId":"8363"},{"alias":"dJ221C16.1","entrezGeneId":"8364"},{"alias":"H4/g","entrezGeneId":"8364"},{"alias":"H4FG","entrezGeneId":"8364"},{"alias":"H4/h","entrezGeneId":"8365"},{"alias":"H4FH","entrezGeneId":"8365"},{"alias":"H4/I","entrezGeneId":"8366"},{"alias":"H4FI","entrezGeneId":"8366"},{"alias":"H4/j","entrezGeneId":"8367"},{"alias":"H4FJ","entrezGeneId":"8367"},{"alias":"H4.k","entrezGeneId":"8368"},{"alias":"H4/k","entrezGeneId":"8368"},{"alias":"H4FK","entrezGeneId":"8368"},{"alias":"H4/l","entrezGeneId":"8369"},{"alias":"H4FL","entrezGeneId":"8369"},{"alias":"FO108","entrezGeneId":"8370"},{"alias":"H4","entrezGeneId":"8370"},{"alias":"H4/n","entrezGeneId":"8370"},{"alias":"H4F2","entrezGeneId":"8370"},{"alias":"H4FN","entrezGeneId":"8370"},{"alias":"HIST2H4","entrezGeneId":"8370"},{"alias":"HYAL-3","entrezGeneId":"8372"},{"alias":"LUCA-3","entrezGeneId":"8372"},{"alias":"LUCA3","entrezGeneId":"8372"},{"alias":"G13P1","entrezGeneId":"8373"},{"alias":"IFI56P","entrezGeneId":"8373"},{"alias":"IFIT1P","entrezGeneId":"8373"},{"alias":"II56P","entrezGeneId":"8373"},{"alias":"DBA","entrezGeneId":"8378"},{"alias":"MAD1","entrezGeneId":"8379"},{"alias":"PIG9","entrezGeneId":"8379"},{"alias":"TP53I9","entrezGeneId":"8379"},{"alias":"TXBP181","entrezGeneId":"8379"},{"alias":"NM23-H5","entrezGeneId":"8382"},{"alias":"NM23H5","entrezGeneId":"8382"},{"alias":"RSPH23","entrezGeneId":"8382"},{"alias":"OR17-7","entrezGeneId":"8383"},{"alias":"OR11-13","entrezGeneId":"8384"},{"alias":"OR11-22","entrezGeneId":"8384"},{"alias":"OR17-23","entrezGeneId":"8384"},{"alias":"OR1D6P","entrezGeneId":"8384"},{"alias":"OR1D7P","entrezGeneId":"8384"},{"alias":"C17orf2","entrezGeneId":"8386"},{"alias":"OR17-2","entrezGeneId":"8386"},{"alias":"OR17-30","entrezGeneId":"8386"},{"alias":"OR17-31","entrezGeneId":"8386"},{"alias":"OR1D4","entrezGeneId":"8386"},{"alias":"HGM071","entrezGeneId":"8387"},{"alias":"OR13-66","entrezGeneId":"8387"},{"alias":"OR17-2","entrezGeneId":"8387"},{"alias":"OR17-32","entrezGeneId":"8387"},{"alias":"OR1E5","entrezGeneId":"8387"},{"alias":"OR1E6","entrezGeneId":"8387"},{"alias":"OR1E8P","entrezGeneId":"8387"},{"alias":"OR1E9P","entrezGeneId":"8387"},{"alias":"OST547","entrezGeneId":"8387"},{"alias":"OR17-135","entrezGeneId":"8388"},{"alias":"OR17-136","entrezGeneId":"8388"},{"alias":"OR17-93","entrezGeneId":"8388"},{"alias":"OR1E4","entrezGeneId":"8388"},{"alias":"OR1E7","entrezGeneId":"8388"},{"alias":"OST529","entrezGeneId":"8388"},{"alias":"OR17-210","entrezGeneId":"8389"},{"alias":"OR1E3P","entrezGeneId":"8389"},{"alias":"OR17-130","entrezGeneId":"8390"},{"alias":"OR17-209","entrezGeneId":"8390"},{"alias":"OR1G2","entrezGeneId":"8390"},{"alias":"OR17-208","entrezGeneId":"8391"},{"alias":"OR1P1P","entrezGeneId":"8391"},{"alias":"OR17-137","entrezGeneId":"8392"},{"alias":"OR17-16","entrezGeneId":"8392"},{"alias":"OR17-201","entrezGeneId":"8392"},{"alias":"OR3A6","entrezGeneId":"8392"},{"alias":"OR3A7","entrezGeneId":"8392"},{"alias":"OR3A8P","entrezGeneId":"8392"},{"alias":"MSS4","entrezGeneId":"8395"},{"alias":"STM7","entrezGeneId":"8395"},{"alias":"PI5P4KB","entrezGeneId":"8396"},{"alias":"PIP5K2B","entrezGeneId":"8396"},{"alias":"PIP5KIIB","entrezGeneId":"8396"},{"alias":"PIP5KIIbeta","entrezGeneId":"8396"},{"alias":"PIP5P4KB","entrezGeneId":"8396"},{"alias":"CaI-PLA2","entrezGeneId":"8398"},{"alias":"GVI","entrezGeneId":"8398"},{"alias":"INAD1","entrezGeneId":"8398"},{"alias":"iPLA2","entrezGeneId":"8398"},{"alias":"IPLA2-VIA","entrezGeneId":"8398"},{"alias":"iPLA2beta","entrezGeneId":"8398"},{"alias":"NBIA2","entrezGeneId":"8398"},{"alias":"NBIA2A","entrezGeneId":"8398"},{"alias":"NBIA2B","entrezGeneId":"8398"},{"alias":"PARK14","entrezGeneId":"8398"},{"alias":"PLA2","entrezGeneId":"8398"},{"alias":"PNPLA9","entrezGeneId":"8398"},{"alias":"GXPLA2","entrezGeneId":"8399"},{"alias":"GXSPLA2","entrezGeneId":"8399"},{"alias":"SPLA2","entrezGeneId":"8399"},{"alias":"sPLA2-X","entrezGeneId":"8399"},{"alias":"OGC","entrezGeneId":"8402"},{"alias":"SLC20A4","entrezGeneId":"8402"},{"alias":"SOX28","entrezGeneId":"8403"},{"alias":"MAST 9","entrezGeneId":"8404"},{"alias":"MAST9","entrezGeneId":"8404"},{"alias":"PIG33","entrezGeneId":"8404"},{"alias":"SC1","entrezGeneId":"8404"},{"alias":"BTBD32","entrezGeneId":"8405"},{"alias":"TEF2","entrezGeneId":"8405"},{"alias":"DRS","entrezGeneId":"8406"},{"alias":"ETX1","entrezGeneId":"8406"},{"alias":"HEL-S-83p","entrezGeneId":"8406"},{"alias":"SRPX1","entrezGeneId":"8406"},{"alias":"HA1756","entrezGeneId":"8407"},{"alias":"ATG1","entrezGeneId":"8408"},{"alias":"ATG1A","entrezGeneId":"8408"},{"alias":"hATG1","entrezGeneId":"8408"},{"alias":"UNC51","entrezGeneId":"8408"},{"alias":"Unc51.1","entrezGeneId":"8408"},{"alias":"ART-27","entrezGeneId":"8409"},{"alias":"STAP1","entrezGeneId":"8409"},{"alias":"RPS9P","entrezGeneId":"8410"},{"alias":"RPS9_2_1730","entrezGeneId":"8410"},{"alias":"MST105","entrezGeneId":"8411"},{"alias":"MSTP105","entrezGeneId":"8411"},{"alias":"ZFYVE2","entrezGeneId":"8411"},{"alias":"AND-34","entrezGeneId":"8412"},{"alias":"NSP2","entrezGeneId":"8412"},{"alias":"SH2D3B","entrezGeneId":"8412"},{"alias":"ANX31","entrezGeneId":"8416"},{"alias":"CMAH","entrezGeneId":"8418"},{"alias":"CSAH","entrezGeneId":"8418"},{"alias":"CP47","entrezGeneId":"8419"},{"alias":"CP49","entrezGeneId":"8419"},{"alias":"CTRCT12","entrezGeneId":"8419"},{"alias":"LIFL-L","entrezGeneId":"8419"},{"alias":"PHAKOSIN","entrezGeneId":"8419"},{"alias":"NCRNA00014","entrezGeneId":"8420"},{"alias":"RNU17C","entrezGeneId":"8420"},{"alias":"RNU17D","entrezGeneId":"8420"},{"alias":"U17HG","entrezGeneId":"8420"},{"alias":"U17HG-A","entrezGeneId":"8420"},{"alias":"U17HG-AB","entrezGeneId":"8420"},{"alias":"BBH","entrezGeneId":"8424"},{"alias":"BBOX","entrezGeneId":"8424"},{"alias":"G-BBH","entrezGeneId":"8424"},{"alias":"gamma-BBH","entrezGeneId":"8424"},{"alias":"ARCL1C","entrezGeneId":"8425"},{"alias":"LTBP-4","entrezGeneId":"8425"},{"alias":"LTBP4L","entrezGeneId":"8425"},{"alias":"LTBP4S","entrezGeneId":"8425"},{"alias":"HUB1","entrezGeneId":"8427"},{"alias":"HEL-S-95","entrezGeneId":"8428"},{"alias":"MST3","entrezGeneId":"8428"},{"alias":"MST3B","entrezGeneId":"8428"},{"alias":"STE20","entrezGeneId":"8428"},{"alias":"STK3","entrezGeneId":"8428"},{"alias":"SHP","entrezGeneId":"8431"},{"alias":"SHP1","entrezGeneId":"8431"},{"alias":"ST15","entrezGeneId":"8434"},{"alias":"ACACT2","entrezGeneId":"8435"},{"alias":"ACAT2","entrezGeneId":"8435"},{"alias":"ARGP2","entrezGeneId":"8435"},{"alias":"cavin-2","entrezGeneId":"8436"},{"alias":"PS-p68","entrezGeneId":"8436"},{"alias":"SDPR","entrezGeneId":"8436"},{"alias":"SDR","entrezGeneId":"8436"},{"alias":"RASAL","entrezGeneId":"8437"},{"alias":"hHR54","entrezGeneId":"8438"},{"alias":"HR54","entrezGeneId":"8438"},{"alias":"hRAD54","entrezGeneId":"8438"},{"alias":"RAD54A","entrezGeneId":"8438"},{"alias":"FAN","entrezGeneId":"8439"},{"alias":"GRAMD5","entrezGeneId":"8439"},{"alias":"GRB4","entrezGeneId":"8440"},{"alias":"NCKbeta","entrezGeneId":"8440"},{"alias":"DAP-AT","entrezGeneId":"8443"},{"alias":"DAPAT","entrezGeneId":"8443"},{"alias":"DHAPAT","entrezGeneId":"8443"},{"alias":"RCDP2","entrezGeneId":"8443"},{"alias":"DYRK5","entrezGeneId":"8444"},{"alias":"hYAK3-2","entrezGeneId":"8444"},{"alias":"RED","entrezGeneId":"8444"},{"alias":"REDK","entrezGeneId":"8444"},{"alias":"PIR1","entrezGeneId":"8446"},{"alias":"DOC2BL","entrezGeneId":"8447"},{"alias":"Doc2","entrezGeneId":"8448"},{"alias":"DBP2","entrezGeneId":"8449"},{"alias":"DDX16","entrezGeneId":"8449"},{"alias":"PRO2014","entrezGeneId":"8449"},{"alias":"Prp2","entrezGeneId":"8449"},{"alias":"PRP8","entrezGeneId":"8449"},{"alias":"PRPF2","entrezGeneId":"8449"},{"alias":"CUL-4B","entrezGeneId":"8450"},{"alias":"MRXHF2","entrezGeneId":"8450"},{"alias":"MRXS15","entrezGeneId":"8450"},{"alias":"MRXSC","entrezGeneId":"8450"},{"alias":"SFM2","entrezGeneId":"8450"},{"alias":"CUL-3","entrezGeneId":"8452"},{"alias":"PHA2E","entrezGeneId":"8452"},{"alias":"DPPT-L","entrezGeneId":"8455"},{"alias":"MGCA","entrezGeneId":"8455"},{"alias":"FKHL20","entrezGeneId":"8456"},{"alias":"RONU","entrezGeneId":"8456"},{"alias":"WHN","entrezGeneId":"8456"},{"alias":"HuF2","entrezGeneId":"8458"},{"alias":"ZGRF6","entrezGeneId":"8458"},{"alias":"TANGO13B","entrezGeneId":"8459"},{"alias":"TANGO13A","entrezGeneId":"8460"},{"alias":"FKLF","entrezGeneId":"8462"},{"alias":"FKLF1","entrezGeneId":"8462"},{"alias":"MODY7","entrezGeneId":"8462"},{"alias":"TIEG2","entrezGeneId":"8462"},{"alias":"Tieg3","entrezGeneId":"8462"},{"alias":"ETF","entrezGeneId":"8463"},{"alias":"TEAD-2","entrezGeneId":"8463"},{"alias":"TEF-4","entrezGeneId":"8463"},{"alias":"TEF4","entrezGeneId":"8463"},{"alias":"SPT3","entrezGeneId":"8464"},{"alias":"SPT3L","entrezGeneId":"8464"},{"alias":"PETS1","entrezGeneId":"8466"},{"alias":"hISWI","entrezGeneId":"8467"},{"alias":"hSNF2H","entrezGeneId":"8467"},{"alias":"ISWI","entrezGeneId":"8467"},{"alias":"SNF2H","entrezGeneId":"8467"},{"alias":"WCRF135","entrezGeneId":"8467"},{"alias":"FKBP36","entrezGeneId":"8468"},{"alias":"ARGBP2","entrezGeneId":"8470"},{"alias":"PRO0618","entrezGeneId":"8470"},{"alias":"IRS-4","entrezGeneId":"8471"},{"alias":"PY160","entrezGeneId":"8471"},{"alias":"HINCUT-1","entrezGeneId":"8473"},{"alias":"HRNT1","entrezGeneId":"8473"},{"alias":"MRX106","entrezGeneId":"8473"},{"alias":"O-GLCNAC","entrezGeneId":"8473"},{"alias":"OGT1","entrezGeneId":"8473"},{"alias":"MRCK","entrezGeneId":"8476"},{"alias":"MRCKA","entrezGeneId":"8476"},{"alias":"PK428","entrezGeneId":"8476"},{"alias":"hTDAG8","entrezGeneId":"8477"},{"alias":"TDAG8","entrezGeneId":"8477"},{"alias":"dJ481F12.3","entrezGeneId":"8480"},{"alias":"dJ800J21.1","entrezGeneId":"8480"},{"alias":"MIG14","entrezGeneId":"8480"},{"alias":"Mnrp41","entrezGeneId":"8480"},{"alias":"MRNP41","entrezGeneId":"8480"},{"alias":"71-7A","entrezGeneId":"8481"},{"alias":"CXorf5","entrezGeneId":"8481"},{"alias":"JBTS10","entrezGeneId":"8481"},{"alias":"RP23","entrezGeneId":"8481"},{"alias":"SGBS2","entrezGeneId":"8481"},{"alias":"CD108","entrezGeneId":"8482"},{"alias":"CDw108","entrezGeneId":"8482"},{"alias":"H-SEMA-K1","entrezGeneId":"8482"},{"alias":"H-Sema-L","entrezGeneId":"8482"},{"alias":"JMH","entrezGeneId":"8482"},{"alias":"SEMAK1","entrezGeneId":"8482"},{"alias":"SEMAL","entrezGeneId":"8482"},{"alias":"CILP-1","entrezGeneId":"8483"},{"alias":"HsT18872","entrezGeneId":"8483"},{"alias":"SIP1","entrezGeneId":"8487"},{"alias":"SIP1-delta","entrezGeneId":"8487"},{"alias":"RPL3P","entrezGeneId":"8488"},{"alias":"RPL3_8_1731","entrezGeneId":"8488"},{"alias":"RPL23A_37_1729","entrezGeneId":"8489"},{"alias":"MST092","entrezGeneId":"8490"},{"alias":"MST106","entrezGeneId":"8490"},{"alias":"MST129","entrezGeneId":"8490"},{"alias":"MSTP032","entrezGeneId":"8490"},{"alias":"MSTP092","entrezGeneId":"8490"},{"alias":"MSTP106","entrezGeneId":"8490"},{"alias":"MSTP129","entrezGeneId":"8490"},{"alias":"GLK","entrezGeneId":"8491"},{"alias":"MAPKKKK3","entrezGeneId":"8491"},{"alias":"MEKKK 3","entrezGeneId":"8491"},{"alias":"MEKKK3","entrezGeneId":"8491"},{"alias":"RAB8IPL1","entrezGeneId":"8491"},{"alias":"BSSP-3","entrezGeneId":"8492"},{"alias":"BSSP3","entrezGeneId":"8492"},{"alias":"MRT1","entrezGeneId":"8492"},{"alias":"IDDGIP","entrezGeneId":"8493"},{"alias":"PP2C-DELTA","entrezGeneId":"8493"},{"alias":"WIP1","entrezGeneId":"8493"},{"alias":"Cclp1","entrezGeneId":"8495"},{"alias":"hSGT2","entrezGeneId":"8496"},{"alias":"hSgt2p","entrezGeneId":"8496"},{"alias":"L2","entrezGeneId":"8496"},{"alias":"SGT2","entrezGeneId":"8496"},{"alias":"LIP.1","entrezGeneId":"8500"},{"alias":"LIP1","entrezGeneId":"8500"},{"alias":"LIPRIN","entrezGeneId":"8500"},{"alias":"LAT3","entrezGeneId":"8501"},{"alias":"PB39","entrezGeneId":"8501"},{"alias":"POV1","entrezGeneId":"8501"},{"alias":"R00504","entrezGeneId":"8501"},{"alias":"p0071","entrezGeneId":"8502"},{"alias":"p55","entrezGeneId":"8503"},{"alias":"p55-GAMMA","entrezGeneId":"8503"},{"alias":"p55PIK","entrezGeneId":"8503"},{"alias":"PBD10A","entrezGeneId":"8504"},{"alias":"PBD10B","entrezGeneId":"8504"},{"alias":"TRG18","entrezGeneId":"8504"},{"alias":"PARG99","entrezGeneId":"8505"},{"alias":"CASPR","entrezGeneId":"8506"},{"alias":"CNTNAP","entrezGeneId":"8506"},{"alias":"NRXN4","entrezGeneId":"8506"},{"alias":"P190","entrezGeneId":"8506"},{"alias":"CCL28","entrezGeneId":"8507"},{"alias":"ENC-1","entrezGeneId":"8507"},{"alias":"KLHL35","entrezGeneId":"8507"},{"alias":"KLHL37","entrezGeneId":"8507"},{"alias":"NRPB","entrezGeneId":"8507"},{"alias":"PIG10","entrezGeneId":"8507"},{"alias":"TP53I10","entrezGeneId":"8507"},{"alias":"HSST2","entrezGeneId":"8509"},{"alias":"NST2","entrezGeneId":"8509"},{"alias":"MIFR","entrezGeneId":"8510"},{"alias":"MIFR-1","entrezGeneId":"8510"},{"alias":"MMP22","entrezGeneId":"8510"},{"alias":"MMP23A","entrezGeneId":"8510"},{"alias":"MIFR","entrezGeneId":"8511"},{"alias":"MIFR-1","entrezGeneId":"8511"},{"alias":"MMP21","entrezGeneId":"8511"},{"alias":"COLEC3P","entrezGeneId":"8512"},{"alias":"MBL1P1","entrezGeneId":"8512"},{"alias":"GL","entrezGeneId":"8513"},{"alias":"HGL","entrezGeneId":"8513"},{"alias":"HLAL","entrezGeneId":"8513"},{"alias":"AKR6A5","entrezGeneId":"8514"},{"alias":"HKvbeta2","entrezGeneId":"8514"},{"alias":"HKvbeta2.1","entrezGeneId":"8514"},{"alias":"HKvbeta2.2","entrezGeneId":"8514"},{"alias":"KCNA2B","entrezGeneId":"8514"},{"alias":"KV-BETA-2","entrezGeneId":"8514"},{"alias":"PRO827","entrezGeneId":"8515"},{"alias":"AMCBX1","entrezGeneId":"8517"},{"alias":"FIP-3","entrezGeneId":"8517"},{"alias":"FIP3","entrezGeneId":"8517"},{"alias":"Fip3p","entrezGeneId":"8517"},{"alias":"IKK-gamma","entrezGeneId":"8517"},{"alias":"IKKAP1","entrezGeneId":"8517"},{"alias":"IKKG","entrezGeneId":"8517"},{"alias":"IMD33","entrezGeneId":"8517"},{"alias":"IP","entrezGeneId":"8517"},{"alias":"IP1","entrezGeneId":"8517"},{"alias":"IP2","entrezGeneId":"8517"},{"alias":"IPD2","entrezGeneId":"8517"},{"alias":"NEMO","entrezGeneId":"8517"},{"alias":"ZC2HC9","entrezGeneId":"8517"},{"alias":"DYS","entrezGeneId":"8518"},{"alias":"FD","entrezGeneId":"8518"},{"alias":"IKAP","entrezGeneId":"8518"},{"alias":"IKBKAP","entrezGeneId":"8518"},{"alias":"IKI3","entrezGeneId":"8518"},{"alias":"TOT1","entrezGeneId":"8518"},{"alias":"9-27","entrezGeneId":"8519"},{"alias":"CD225","entrezGeneId":"8519"},{"alias":"DSPA2a","entrezGeneId":"8519"},{"alias":"IFI17","entrezGeneId":"8519"},{"alias":"LEU13","entrezGeneId":"8519"},{"alias":"KAT1","entrezGeneId":"8520"},{"alias":"GCMA","entrezGeneId":"8521"},{"alias":"hGCMa","entrezGeneId":"8521"},{"alias":"DAGK5","entrezGeneId":"8525"},{"alias":"DAGK6","entrezGeneId":"8525"},{"alias":"DGK-ZETA","entrezGeneId":"8525"},{"alias":"hDGKzeta","entrezGeneId":"8525"},{"alias":"AHUS7","entrezGeneId":"8526"},{"alias":"DAGK5","entrezGeneId":"8526"},{"alias":"DAGK6","entrezGeneId":"8526"},{"alias":"DGK","entrezGeneId":"8526"},{"alias":"NPHS7","entrezGeneId":"8526"},{"alias":"dgkd-2","entrezGeneId":"8527"},{"alias":"DGKdelta","entrezGeneId":"8527"},{"alias":"DASOX","entrezGeneId":"8528"},{"alias":"DDO-1","entrezGeneId":"8528"},{"alias":"DDO-2","entrezGeneId":"8528"},{"alias":"CPF2","entrezGeneId":"8529"},{"alias":"CMAP","entrezGeneId":"8530"},{"alias":"CSDA","entrezGeneId":"8531"},{"alias":"CSDA1","entrezGeneId":"8531"},{"alias":"DBPA","entrezGeneId":"8531"},{"alias":"ZONAB","entrezGeneId":"8531"},{"alias":"CSN3","entrezGeneId":"8533"},{"alias":"SGN3","entrezGeneId":"8533"},{"alias":"C6ST","entrezGeneId":"8534"},{"alias":"GST-1","entrezGeneId":"8534"},{"alias":"KS6ST","entrezGeneId":"8534"},{"alias":"KSGal6ST","entrezGeneId":"8534"},{"alias":"KSST","entrezGeneId":"8534"},{"alias":"NBP16","entrezGeneId":"8535"},{"alias":"PC2","entrezGeneId":"8535"},{"alias":"CAMKI","entrezGeneId":"8536"},{"alias":"AIBC1","entrezGeneId":"8537"},{"alias":"NABC1","entrezGeneId":"8537"},{"alias":"AAC-11","entrezGeneId":"8539"},{"alias":"AAC11","entrezGeneId":"8539"},{"alias":"ADAP-S","entrezGeneId":"8540"},{"alias":"ADAS","entrezGeneId":"8540"},{"alias":"ADHAPS","entrezGeneId":"8540"},{"alias":"ADPS","entrezGeneId":"8540"},{"alias":"ALDHPSY","entrezGeneId":"8540"},{"alias":"RCDP3","entrezGeneId":"8540"},{"alias":"LPNA3","entrezGeneId":"8541"},{"alias":"APO-L","entrezGeneId":"8542"},{"alias":"APOL","entrezGeneId":"8542"},{"alias":"APOL-I","entrezGeneId":"8542"},{"alias":"FSGS4","entrezGeneId":"8542"},{"alias":"CGGBP","entrezGeneId":"8545"},{"alias":"p20-CGGBP","entrezGeneId":"8545"},{"alias":"ADTB3","entrezGeneId":"8546"},{"alias":"ADTB3A","entrezGeneId":"8546"},{"alias":"HPS","entrezGeneId":"8546"},{"alias":"HPS2","entrezGeneId":"8546"},{"alias":"PE","entrezGeneId":"8546"},{"alias":"FCNH","entrezGeneId":"8547"},{"alias":"HAKA1","entrezGeneId":"8547"},{"alias":"GOLGIN-45","entrezGeneId":"8548"},{"alias":"JEM-1","entrezGeneId":"8548"},{"alias":"JEM-1s","entrezGeneId":"8548"},{"alias":"JEM1","entrezGeneId":"8548"},{"alias":"FEX","entrezGeneId":"8549"},{"alias":"GPR49","entrezGeneId":"8549"},{"alias":"GPR67","entrezGeneId":"8549"},{"alias":"GRP49","entrezGeneId":"8549"},{"alias":"HG38","entrezGeneId":"8549"},{"alias":"MAPKAP-K5","entrezGeneId":"8550"},{"alias":"MK-5","entrezGeneId":"8550"},{"alias":"MK5","entrezGeneId":"8550"},{"alias":"PRAK","entrezGeneId":"8550"},{"alias":"NCRNA00011","entrezGeneId":"8551"},{"alias":"NCRNA00010","entrezGeneId":"8552"},{"alias":"BHLHB2","entrezGeneId":"8553"},{"alias":"Clast5","entrezGeneId":"8553"},{"alias":"DEC1","entrezGeneId":"8553"},{"alias":"HLHB2","entrezGeneId":"8553"},{"alias":"SHARP-2","entrezGeneId":"8553"},{"alias":"SHARP2","entrezGeneId":"8553"},{"alias":"STRA13","entrezGeneId":"8553"},{"alias":"Stra14","entrezGeneId":"8553"},{"alias":"DDXBP1","entrezGeneId":"8554"},{"alias":"GBP","entrezGeneId":"8554"},{"alias":"GU/RH-II","entrezGeneId":"8554"},{"alias":"ZMIZ3","entrezGeneId":"8554"},{"alias":"Cdc14B1","entrezGeneId":"8555"},{"alias":"Cdc14B2","entrezGeneId":"8555"},{"alias":"CDC14B3","entrezGeneId":"8555"},{"alias":"hCDC14B","entrezGeneId":"8555"},{"alias":"cdc14","entrezGeneId":"8556"},{"alias":"DFNB105","entrezGeneId":"8556"},{"alias":"hCDC14","entrezGeneId":"8556"},{"alias":"CMD1N","entrezGeneId":"8557"},{"alias":"CMH25","entrezGeneId":"8557"},{"alias":"LGMD2G","entrezGeneId":"8557"},{"alias":"T-cap","entrezGeneId":"8557"},{"alias":"TELE","entrezGeneId":"8557"},{"alias":"telethonin","entrezGeneId":"8557"},{"alias":"ALSAS","entrezGeneId":"8558"},{"alias":"PISSLRE","entrezGeneId":"8558"},{"alias":"hPrp18","entrezGeneId":"8559"},{"alias":"PRP18","entrezGeneId":"8559"},{"alias":"DEGS","entrezGeneId":"8560"},{"alias":"DEGS-1","entrezGeneId":"8560"},{"alias":"Des-1","entrezGeneId":"8560"},{"alias":"DES1","entrezGeneId":"8560"},{"alias":"FADS7","entrezGeneId":"8560"},{"alias":"MIG15","entrezGeneId":"8560"},{"alias":"MLD","entrezGeneId":"8560"},{"alias":"DRP","entrezGeneId":"8562"},{"alias":"DRP1","entrezGeneId":"8562"},{"alias":"SMAP-3","entrezGeneId":"8562"},{"alias":"C22orf19","entrezGeneId":"8563"},{"alias":"Fmip","entrezGeneId":"8563"},{"alias":"fSAP79","entrezGeneId":"8563"},{"alias":"PK1.3","entrezGeneId":"8563"},{"alias":"dJ317G22.1","entrezGeneId":"8564"},{"alias":"CMTDIC","entrezGeneId":"8565"},{"alias":"TYRRS","entrezGeneId":"8565"},{"alias":"YRS","entrezGeneId":"8565"},{"alias":"YTS","entrezGeneId":"8565"},{"alias":"C21orf124","entrezGeneId":"8566"},{"alias":"C21orf97","entrezGeneId":"8566"},{"alias":"HEL-S-1a","entrezGeneId":"8566"},{"alias":"PKH","entrezGeneId":"8566"},{"alias":"PNK","entrezGeneId":"8566"},{"alias":"PRED79","entrezGeneId":"8566"},{"alias":"DENN","entrezGeneId":"8567"},{"alias":"IG20","entrezGeneId":"8567"},{"alias":"RAB3GEP","entrezGeneId":"8567"},{"alias":"D21S2056E","entrezGeneId":"8568"},{"alias":"NNP-1","entrezGeneId":"8568"},{"alias":"NOP52","entrezGeneId":"8568"},{"alias":"RRP1A","entrezGeneId":"8568"},{"alias":"MNK1","entrezGeneId":"8569"},{"alias":"FBP2","entrezGeneId":"8570"},{"alias":"FUBP2","entrezGeneId":"8570"},{"alias":"KSRP","entrezGeneId":"8570"},{"alias":"RIL","entrezGeneId":"8572"},{"alias":"CAGH39","entrezGeneId":"8573"},{"alias":"CAMGUK","entrezGeneId":"8573"},{"alias":"CMG","entrezGeneId":"8573"},{"alias":"FGS4","entrezGeneId":"8573"},{"alias":"hCASK","entrezGeneId":"8573"},{"alias":"LIN2","entrezGeneId":"8573"},{"alias":"MICPCH","entrezGeneId":"8573"},{"alias":"MRXSNA","entrezGeneId":"8573"},{"alias":"TNRC8","entrezGeneId":"8573"},{"alias":"AFAR","entrezGeneId":"8574"},{"alias":"AFAR1","entrezGeneId":"8574"},{"alias":"AFB1-AR1","entrezGeneId":"8574"},{"alias":"AKR7","entrezGeneId":"8574"},{"alias":"DYT16","entrezGeneId":"8575"},{"alias":"HSD14","entrezGeneId":"8575"},{"alias":"PACT","entrezGeneId":"8575"},{"alias":"RAX","entrezGeneId":"8575"},{"alias":"hPSK","entrezGeneId":"8576"},{"alias":"KRCT","entrezGeneId":"8576"},{"alias":"MPSK","entrezGeneId":"8576"},{"alias":"PKL12","entrezGeneId":"8576"},{"alias":"PSK","entrezGeneId":"8576"},{"alias":"TSF1","entrezGeneId":"8576"},{"alias":"C9orf2","entrezGeneId":"8577"},{"alias":"CT120.1","entrezGeneId":"8577"},{"alias":"H7365","entrezGeneId":"8577"},{"alias":"TR-1","entrezGeneId":"8577"},{"alias":"SREC","entrezGeneId":"8578"},{"alias":"SREC-I","entrezGeneId":"8578"},{"alias":"SREC1","entrezGeneId":"8578"},{"alias":"OR11-175","entrezGeneId":"8580"},{"alias":"OR8C3P","entrezGeneId":"8580"},{"alias":"OR8C4P","entrezGeneId":"8580"},{"alias":"OR912-106","entrezGeneId":"8580"},{"alias":"OR912-45","entrezGeneId":"8580"},{"alias":"E48","entrezGeneId":"8581"},{"alias":"Ly-6D","entrezGeneId":"8581"},{"alias":"OR11-561","entrezGeneId":"8582"},{"alias":"OR8B11P","entrezGeneId":"8582"},{"alias":"hg84","entrezGeneId":"8583"},{"alias":"OR11-20","entrezGeneId":"8583"},{"alias":"OR7E50P","entrezGeneId":"8583"},{"alias":"OR7E95P","entrezGeneId":"8583"},{"alias":"OR7F6P","entrezGeneId":"8583"},{"alias":"OR8-126","entrezGeneId":"8583"},{"alias":"OR11-11a","entrezGeneId":"8585"},{"alias":"OR7E9P","entrezGeneId":"8585"},{"alias":"OR7F4P","entrezGeneId":"8585"},{"alias":"OST289","entrezGeneId":"8585"},{"alias":"OR11-261","entrezGeneId":"8586"},{"alias":"OR11-9","entrezGeneId":"8586"},{"alias":"OR7E3P","entrezGeneId":"8586"},{"alias":"OR7F3P","entrezGeneId":"8586"},{"alias":"hg94","entrezGeneId":"8587"},{"alias":"OR11-6","entrezGeneId":"8587"},{"alias":"OR7E143P","entrezGeneId":"8587"},{"alias":"OR7E51P","entrezGeneId":"8587"},{"alias":"OR7E52P","entrezGeneId":"8587"},{"alias":"OR7F2P","entrezGeneId":"8587"},{"alias":"OST245","entrezGeneId":"8587"},{"alias":"OR11-392","entrezGeneId":"8588"},{"alias":"OR7E42P","entrezGeneId":"8588"},{"alias":"OR7E80P","entrezGeneId":"8588"},{"alias":"OST001","entrezGeneId":"8588"},{"alias":"I7","entrezGeneId":"8590"},{"alias":"OR11-55","entrezGeneId":"8590"},{"alias":"OR6A1","entrezGeneId":"8590"},{"alias":"OR6A2P","entrezGeneId":"8590"},{"alias":"OR11-104","entrezGeneId":"8591"},{"alias":"OR5G2P","entrezGeneId":"8591"},{"alias":"OR93","entrezGeneId":"8591"},{"alias":"OR93HUM","entrezGeneId":"8591"},{"alias":"OR11-8b","entrezGeneId":"8594"},{"alias":"OR11-8c","entrezGeneId":"8594"},{"alias":"OR5D3","entrezGeneId":"8594"},{"alias":"OR5D4","entrezGeneId":"8594"},{"alias":"OR11-7a","entrezGeneId":"8595"},{"alias":"OR18-17","entrezGeneId":"8595"},{"alias":"OR18-42","entrezGeneId":"8595"},{"alias":"OR18-43","entrezGeneId":"8595"},{"alias":"OR18-44","entrezGeneId":"8595"},{"alias":"OR18-79","entrezGeneId":"8595"},{"alias":"OR5D10P","entrezGeneId":"8595"},{"alias":"OR5D11","entrezGeneId":"8595"},{"alias":"OR5D11P","entrezGeneId":"8595"},{"alias":"OR5D12","entrezGeneId":"8595"},{"alias":"OR5D12P","entrezGeneId":"8595"},{"alias":"OR5D1P","entrezGeneId":"8595"},{"alias":"OR5D5P","entrezGeneId":"8595"},{"alias":"OR5D6P","entrezGeneId":"8595"},{"alias":"OR5D7P","entrezGeneId":"8595"},{"alias":"OR5D8P","entrezGeneId":"8595"},{"alias":"OR5D9P","entrezGeneId":"8595"},{"alias":"OR8-125","entrezGeneId":"8595"},{"alias":"OR8-127","entrezGeneId":"8595"},{"alias":"OR912-47","entrezGeneId":"8595"},{"alias":"OR912-91","entrezGeneId":"8595"},{"alias":"OR912-94","entrezGeneId":"8595"},{"alias":"R5D9P","entrezGeneId":"8595"},{"alias":"OR11-30","entrezGeneId":"8596"},{"alias":"OR4A20P","entrezGeneId":"8596"},{"alias":"CD254","entrezGeneId":"8600"},{"alias":"hRANKL2","entrezGeneId":"8600"},{"alias":"ODF","entrezGeneId":"8600"},{"alias":"OPGL","entrezGeneId":"8600"},{"alias":"OPTB2","entrezGeneId":"8600"},{"alias":"RANKL","entrezGeneId":"8600"},{"alias":"sOdf","entrezGeneId":"8600"},{"alias":"TNLG6B","entrezGeneId":"8600"},{"alias":"TRANCE","entrezGeneId":"8600"},{"alias":"g(z)GAP","entrezGeneId":"8601"},{"alias":"gz-GAP","entrezGeneId":"8601"},{"alias":"RGSZ1","entrezGeneId":"8601"},{"alias":"ZGAP1","entrezGeneId":"8601"},{"alias":"C4orf9","entrezGeneId":"8602"},{"alias":"NOL14","entrezGeneId":"8602"},{"alias":"RES4-25","entrezGeneId":"8602"},{"alias":"RES425","entrezGeneId":"8602"},{"alias":"UTP2","entrezGeneId":"8602"},{"alias":"C4orf8","entrezGeneId":"8603"},{"alias":"RES4-22","entrezGeneId":"8603"},{"alias":"AGC1","entrezGeneId":"8604"},{"alias":"ARALAR","entrezGeneId":"8604"},{"alias":"EIEE39","entrezGeneId":"8604"},{"alias":"CPLA2-gamma","entrezGeneId":"8605"},{"alias":"ECP-54","entrezGeneId":"8607"},{"alias":"ECP54","entrezGeneId":"8607"},{"alias":"INO80H","entrezGeneId":"8607"},{"alias":"NMP 238","entrezGeneId":"8607"},{"alias":"NMP238","entrezGeneId":"8607"},{"alias":"PONTIN","entrezGeneId":"8607"},{"alias":"Pontin52","entrezGeneId":"8607"},{"alias":"RVB1","entrezGeneId":"8607"},{"alias":"TIH1","entrezGeneId":"8607"},{"alias":"TIP49","entrezGeneId":"8607"},{"alias":"TIP49A","entrezGeneId":"8607"},{"alias":"RODH-4","entrezGeneId":"8608"},{"alias":"SDR9C8","entrezGeneId":"8608"},{"alias":"UKLF","entrezGeneId":"8609"},{"alias":"LLP1a","entrezGeneId":"8611"},{"alias":"LPP1","entrezGeneId":"8611"},{"alias":"PAP-2a","entrezGeneId":"8611"},{"alias":"PAP2","entrezGeneId":"8611"},{"alias":"PPAP2A","entrezGeneId":"8611"},{"alias":"LPP2","entrezGeneId":"8612"},{"alias":"PAP-2c","entrezGeneId":"8612"},{"alias":"PAP2-g","entrezGeneId":"8612"},{"alias":"PPAP2C","entrezGeneId":"8612"},{"alias":"Dri42","entrezGeneId":"8613"},{"alias":"LPP3","entrezGeneId":"8613"},{"alias":"PAP2B","entrezGeneId":"8613"},{"alias":"PPAP2B","entrezGeneId":"8613"},{"alias":"VCIP","entrezGeneId":"8613"},{"alias":"STC-2","entrezGeneId":"8614"},{"alias":"STCRP","entrezGeneId":"8614"},{"alias":"P115","entrezGeneId":"8615"},{"alias":"TAP","entrezGeneId":"8615"},{"alias":"VDP","entrezGeneId":"8615"},{"alias":"CADPS1","entrezGeneId":"8618"},{"alias":"CAPS","entrezGeneId":"8618"},{"alias":"CAPS1","entrezGeneId":"8618"},{"alias":"UNC-31","entrezGeneId":"8618"},{"alias":"FMRFAL","entrezGeneId":"8620"},{"alias":"CDC2L","entrezGeneId":"8621"},{"alias":"CDC2L5","entrezGeneId":"8621"},{"alias":"CHDFIDD","entrezGeneId":"8621"},{"alias":"CHED","entrezGeneId":"8621"},{"alias":"hCDK13","entrezGeneId":"8621"},{"alias":"ADSD","entrezGeneId":"8622"},{"alias":"PPNAD3","entrezGeneId":"8622"},{"alias":"ASMTLX","entrezGeneId":"8623"},{"alias":"ASMTLY","entrezGeneId":"8623"},{"alias":"ASTML","entrezGeneId":"8623"},{"alias":"C21LRP","entrezGeneId":"8624"},{"alias":"DSCR2","entrezGeneId":"8624"},{"alias":"LRPC21","entrezGeneId":"8624"},{"alias":"PAC-1","entrezGeneId":"8624"},{"alias":"PAC1","entrezGeneId":"8624"},{"alias":"ANKRA1","entrezGeneId":"8625"},{"alias":"BLS","entrezGeneId":"8625"},{"alias":"F14150_1","entrezGeneId":"8625"},{"alias":"RFX-B","entrezGeneId":"8625"},{"alias":"AIS","entrezGeneId":"8626"},{"alias":"B(p51A)","entrezGeneId":"8626"},{"alias":"B(p51B)","entrezGeneId":"8626"},{"alias":"EEC3","entrezGeneId":"8626"},{"alias":"KET","entrezGeneId":"8626"},{"alias":"LMS","entrezGeneId":"8626"},{"alias":"NBP","entrezGeneId":"8626"},{"alias":"OFC8","entrezGeneId":"8626"},{"alias":"p40","entrezGeneId":"8626"},{"alias":"p51","entrezGeneId":"8626"},{"alias":"p53CP","entrezGeneId":"8626"},{"alias":"p63","entrezGeneId":"8626"},{"alias":"p73H","entrezGeneId":"8626"},{"alias":"p73L","entrezGeneId":"8626"},{"alias":"RHS","entrezGeneId":"8626"},{"alias":"SHFM4","entrezGeneId":"8626"},{"alias":"TP53CP","entrezGeneId":"8626"},{"alias":"TP53L","entrezGeneId":"8626"},{"alias":"TP73L","entrezGeneId":"8626"},{"alias":"jerky","entrezGeneId":"8629"},{"alias":"JH8","entrezGeneId":"8629"},{"alias":"HSE","entrezGeneId":"8630"},{"alias":"RODH","entrezGeneId":"8630"},{"alias":"SDR9C6","entrezGeneId":"8630"},{"alias":"HEL-S-81p","entrezGeneId":"8631"},{"alias":"SCAP1","entrezGeneId":"8631"},{"alias":"SKAP55","entrezGeneId":"8631"},{"alias":"DNAHL1","entrezGeneId":"8632"},{"alias":"DNEL2","entrezGeneId":"8632"},{"alias":"UNC5H3","entrezGeneId":"8633"},{"alias":"RPC","entrezGeneId":"8634"},{"alias":"RTC1","entrezGeneId":"8634"},{"alias":"RTCD1","entrezGeneId":"8634"},{"alias":"bA514O12.3","entrezGeneId":"8635"},{"alias":"RNASE6PL","entrezGeneId":"8635"},{"alias":"N14","entrezGeneId":"8636"},{"alias":"NA-14","entrezGeneId":"8636"},{"alias":"NA14","entrezGeneId":"8636"},{"alias":"4E-BP3","entrezGeneId":"8637"},{"alias":"4EBP3","entrezGeneId":"8637"},{"alias":"OASL1","entrezGeneId":"8638"},{"alias":"OASLd","entrezGeneId":"8638"},{"alias":"p59 OASL","entrezGeneId":"8638"},{"alias":"p59-OASL","entrezGeneId":"8638"},{"alias":"p59OASL","entrezGeneId":"8638"},{"alias":"TRIP-14","entrezGeneId":"8638"},{"alias":"TRIP14","entrezGeneId":"8638"},{"alias":"HPAO","entrezGeneId":"8639"},{"alias":"SSAO","entrezGeneId":"8639"},{"alias":"VAP-1","entrezGeneId":"8639"},{"alias":"VAP1","entrezGeneId":"8639"},{"alias":"CDH20","entrezGeneId":"8641"},{"alias":"FIB2","entrezGeneId":"8641"},{"alias":"PCDH-GAMMA-B4","entrezGeneId":"8641"},{"alias":"CDH19","entrezGeneId":"8642"},{"alias":"CDH25","entrezGeneId":"8642"},{"alias":"CDHR6","entrezGeneId":"8642"},{"alias":"FIB1","entrezGeneId":"8642"},{"alias":"MVP2","entrezGeneId":"8642"},{"alias":"PCDH16","entrezGeneId":"8642"},{"alias":"VMLDS1","entrezGeneId":"8642"},{"alias":"PTC2","entrezGeneId":"8643"},{"alias":"DD3","entrezGeneId":"8644"},{"alias":"DDX","entrezGeneId":"8644"},{"alias":"HA1753","entrezGeneId":"8644"},{"alias":"HAKRB","entrezGeneId":"8644"},{"alias":"HAKRe","entrezGeneId":"8644"},{"alias":"hluPGFS","entrezGeneId":"8644"},{"alias":"HSD17B5","entrezGeneId":"8644"},{"alias":"PGFS","entrezGeneId":"8644"},{"alias":"K2p5.1","entrezGeneId":"8645"},{"alias":"KCNK5b","entrezGeneId":"8645"},{"alias":"TASK-2","entrezGeneId":"8645"},{"alias":"TASK2","entrezGeneId":"8645"},{"alias":"ABC16","entrezGeneId":"8647"},{"alias":"BRIC2","entrezGeneId":"8647"},{"alias":"BSEP","entrezGeneId":"8647"},{"alias":"PFIC-2","entrezGeneId":"8647"},{"alias":"PFIC2","entrezGeneId":"8647"},{"alias":"PGY4","entrezGeneId":"8647"},{"alias":"SPGP","entrezGeneId":"8647"},{"alias":"bHLHe42","entrezGeneId":"8648"},{"alias":"bHLHe74","entrezGeneId":"8648"},{"alias":"F-SRC-1","entrezGeneId":"8648"},{"alias":"KAT13A","entrezGeneId":"8648"},{"alias":"RIP160","entrezGeneId":"8648"},{"alias":"SRC1","entrezGeneId":"8648"},{"alias":"MAP2K1IP1","entrezGeneId":"8649"},{"alias":"MAPBP","entrezGeneId":"8649"},{"alias":"MAPKSP1","entrezGeneId":"8649"},{"alias":"MP1","entrezGeneId":"8649"},{"alias":"PRO0633","entrezGeneId":"8649"},{"alias":"Ragulator3","entrezGeneId":"8649"},{"alias":"C14orf41","entrezGeneId":"8650"},{"alias":"c14_5527","entrezGeneId":"8650"},{"alias":"S171","entrezGeneId":"8650"},{"alias":"CIS1","entrezGeneId":"8651"},{"alias":"CISH1","entrezGeneId":"8651"},{"alias":"JAB","entrezGeneId":"8651"},{"alias":"SOCS-1","entrezGeneId":"8651"},{"alias":"SSI-1","entrezGeneId":"8651"},{"alias":"SSI1","entrezGeneId":"8651"},{"alias":"TIP-3","entrezGeneId":"8651"},{"alias":"TIP3","entrezGeneId":"8651"},{"alias":"DBY","entrezGeneId":"8653"},{"alias":"CGB-PDE","entrezGeneId":"8654"},{"alias":"CN5A","entrezGeneId":"8654"},{"alias":"PDE5","entrezGeneId":"8654"},{"alias":"DLC1","entrezGeneId":"8655"},{"alias":"DLC8","entrezGeneId":"8655"},{"alias":"DNCL1","entrezGeneId":"8655"},{"alias":"DNCLC1","entrezGeneId":"8655"},{"alias":"hdlc1","entrezGeneId":"8655"},{"alias":"LC8","entrezGeneId":"8655"},{"alias":"LC8a","entrezGeneId":"8655"},{"alias":"PIN","entrezGeneId":"8655"},{"alias":"ARTD5","entrezGeneId":"8658"},{"alias":"PARP-5a","entrezGeneId":"8658"},{"alias":"PARP5A","entrezGeneId":"8658"},{"alias":"PARPL","entrezGeneId":"8658"},{"alias":"pART5","entrezGeneId":"8658"},{"alias":"TIN1","entrezGeneId":"8658"},{"alias":"TINF1","entrezGeneId":"8658"},{"alias":"TNKS1","entrezGeneId":"8658"},{"alias":"ALDH4","entrezGeneId":"8659"},{"alias":"P5CD","entrezGeneId":"8659"},{"alias":"P5CDh","entrezGeneId":"8659"},{"alias":"IRS-2","entrezGeneId":"8660"},{"alias":"EIF3","entrezGeneId":"8661"},{"alias":"eIF3-p170","entrezGeneId":"8661"},{"alias":"eIF3-theta","entrezGeneId":"8661"},{"alias":"EIF3S10","entrezGeneId":"8661"},{"alias":"P167","entrezGeneId":"8661"},{"alias":"p180","entrezGeneId":"8661"},{"alias":"p185","entrezGeneId":"8661"},{"alias":"TIF32","entrezGeneId":"8661"},{"alias":"EIF3-ETA","entrezGeneId":"8662"},{"alias":"EIF3-P110","entrezGeneId":"8662"},{"alias":"EIF3-P116","entrezGeneId":"8662"},{"alias":"EIF3S9","entrezGeneId":"8662"},{"alias":"PRT1","entrezGeneId":"8662"},{"alias":"eIF3-p110","entrezGeneId":"8663"},{"alias":"EIF3CL","entrezGeneId":"8663"},{"alias":"EIF3S8","entrezGeneId":"8663"},{"alias":"eIF3-p66","entrezGeneId":"8664"},{"alias":"eIF3-zeta","entrezGeneId":"8664"},{"alias":"EIF3S7","entrezGeneId":"8664"},{"alias":"eIF3-p47","entrezGeneId":"8665"},{"alias":"EIF3S5","entrezGeneId":"8665"},{"alias":"eIF3-delta","entrezGeneId":"8666"},{"alias":"EIF3-P42","entrezGeneId":"8666"},{"alias":"eIF3-p44","entrezGeneId":"8666"},{"alias":"EIF3S4","entrezGeneId":"8666"},{"alias":"eIF3-gamma","entrezGeneId":"8667"},{"alias":"eIF3-p40","entrezGeneId":"8667"},{"alias":"EIF3S3","entrezGeneId":"8667"},{"alias":"eIF3-beta","entrezGeneId":"8668"},{"alias":"eIF3-p36","entrezGeneId":"8668"},{"alias":"EIF3S2","entrezGeneId":"8668"},{"alias":"PRO2242","entrezGeneId":"8668"},{"alias":"TRIP-1","entrezGeneId":"8668"},{"alias":"TRIP1","entrezGeneId":"8668"},{"alias":"eIF3-alpha","entrezGeneId":"8669"},{"alias":"eIF3-p35","entrezGeneId":"8669"},{"alias":"EIF3S1","entrezGeneId":"8669"},{"alias":"hhNMC","entrezGeneId":"8671"},{"alias":"HNBC1","entrezGeneId":"8671"},{"alias":"KNBC","entrezGeneId":"8671"},{"alias":"kNBC1","entrezGeneId":"8671"},{"alias":"NBC1","entrezGeneId":"8671"},{"alias":"NBC2","entrezGeneId":"8671"},{"alias":"NBCe1-A","entrezGeneId":"8671"},{"alias":"pNBC","entrezGeneId":"8671"},{"alias":"SLC4A5","entrezGeneId":"8671"},{"alias":"eIF-4G 3","entrezGeneId":"8672"},{"alias":"eIF4G 3","entrezGeneId":"8672"},{"alias":"eIF4GII","entrezGeneId":"8672"},{"alias":"EDB","entrezGeneId":"8673"},{"alias":"VAMP-8","entrezGeneId":"8673"},{"alias":"VAMP-4","entrezGeneId":"8674"},{"alias":"VAMP24","entrezGeneId":"8674"},{"alias":"SYN16","entrezGeneId":"8675"},{"alias":"FHL4","entrezGeneId":"8676"},{"alias":"HLH4","entrezGeneId":"8676"},{"alias":"HPLH4","entrezGeneId":"8676"},{"alias":"hsyn10","entrezGeneId":"8677"},{"alias":"SYN10","entrezGeneId":"8677"},{"alias":"ATG6","entrezGeneId":"8678"},{"alias":"beclin1","entrezGeneId":"8678"},{"alias":"VPS30","entrezGeneId":"8678"},{"alias":"cPLA2-beta","entrezGeneId":"8681"},{"alias":"HsT16992","entrezGeneId":"8681"},{"alias":"HMAT1","entrezGeneId":"8682"},{"alias":"HUMMAT1H","entrezGeneId":"8682"},{"alias":"MAT1","entrezGeneId":"8682"},{"alias":"MAT1H","entrezGeneId":"8682"},{"alias":"PEA-15","entrezGeneId":"8682"},{"alias":"PED","entrezGeneId":"8682"},{"alias":"PED-PEA15","entrezGeneId":"8682"},{"alias":"PED/PEA15","entrezGeneId":"8682"},{"alias":"SFRS9","entrezGeneId":"8683"},{"alias":"SRp30c","entrezGeneId":"8683"},{"alias":"SCARA2","entrezGeneId":"8685"},{"alias":"SR-A6","entrezGeneId":"8685"},{"alias":"HHaA","entrezGeneId":"8686"},{"alias":"KRTHAP1","entrezGeneId":"8686"},{"alias":"phihHaA","entrezGeneId":"8686"},{"alias":"HA8","entrezGeneId":"8687"},{"alias":"hHa8","entrezGeneId":"8687"},{"alias":"KRTHA8","entrezGeneId":"8687"},{"alias":"HA7","entrezGeneId":"8688"},{"alias":"K37","entrezGeneId":"8688"},{"alias":"KRTHA7","entrezGeneId":"8688"},{"alias":"HA6","entrezGeneId":"8689"},{"alias":"hHa6","entrezGeneId":"8689"},{"alias":"KRTHA6","entrezGeneId":"8689"},{"alias":"HHMJG","entrezGeneId":"8690"},{"alias":"LUCA2","entrezGeneId":"8692"},{"alias":"GALNAC-T4","entrezGeneId":"8693"},{"alias":"GALNACT4","entrezGeneId":"8693"},{"alias":"ARAT","entrezGeneId":"8694"},{"alias":"ARGP1","entrezGeneId":"8694"},{"alias":"DGAT","entrezGeneId":"8694"},{"alias":"DIAR7","entrezGeneId":"8694"},{"alias":"ANAPC8","entrezGeneId":"8697"},{"alias":"APC8","entrezGeneId":"8697"},{"alias":"CUT23","entrezGeneId":"8697"},{"alias":"EDG6","entrezGeneId":"8698"},{"alias":"LPC1","entrezGeneId":"8698"},{"alias":"S1P4","entrezGeneId":"8698"},{"alias":"SLP4","entrezGeneId":"8698"},{"alias":"CILD7","entrezGeneId":"8701"},{"alias":"DNAHBL","entrezGeneId":"8701"},{"alias":"DNAHC11","entrezGeneId":"8701"},{"alias":"DNHBL","entrezGeneId":"8701"},{"alias":"DPL11","entrezGeneId":"8701"},{"alias":"B4Gal-T4","entrezGeneId":"8702"},{"alias":"beta4Gal-T4","entrezGeneId":"8702"},{"alias":"beta4Gal-T3","entrezGeneId":"8703"},{"alias":"B4Gal-T2","entrezGeneId":"8704"},{"alias":"B4Gal-T3","entrezGeneId":"8704"},{"alias":"beta4Gal-T2","entrezGeneId":"8704"},{"alias":"BETA3GALT4","entrezGeneId":"8705"},{"alias":"GALT2","entrezGeneId":"8705"},{"alias":"GALT4","entrezGeneId":"8705"},{"alias":"B3GALT3","entrezGeneId":"8706"},{"alias":"beta3Gal-T3","entrezGeneId":"8706"},{"alias":"galT3","entrezGeneId":"8706"},{"alias":"Gb4Cer","entrezGeneId":"8706"},{"alias":"GLCT3","entrezGeneId":"8706"},{"alias":"GLOB","entrezGeneId":"8706"},{"alias":"P","entrezGeneId":"8706"},{"alias":"P1","entrezGeneId":"8706"},{"alias":"beta3Gal-T2","entrezGeneId":"8707"},{"alias":"BETA3GALT2","entrezGeneId":"8707"},{"alias":"GLCT2","entrezGeneId":"8707"},{"alias":"beta3Gal-T1","entrezGeneId":"8708"},{"alias":"MEGSIN","entrezGeneId":"8710"},{"alias":"PPKN","entrezGeneId":"8710"},{"alias":"TP55","entrezGeneId":"8710"},{"alias":"AL5","entrezGeneId":"8712"},{"alias":"CT16.3","entrezGeneId":"8712"},{"alias":"GAGE-9","entrezGeneId":"8712"},{"alias":"GAGEB1","entrezGeneId":"8712"},{"alias":"PAGE-1","entrezGeneId":"8712"},{"alias":"ABC31","entrezGeneId":"8714"},{"alias":"cMOAT2","entrezGeneId":"8714"},{"alias":"EST90757","entrezGeneId":"8714"},{"alias":"MLP2","entrezGeneId":"8714"},{"alias":"MOAT-D","entrezGeneId":"8714"},{"alias":"MRP3","entrezGeneId":"8714"},{"alias":"CT125","entrezGeneId":"8715"},{"alias":"HRIHFB2255","entrezGeneId":"8715"},{"alias":"NOLP","entrezGeneId":"8715"},{"alias":"Hs.89862","entrezGeneId":"8717"},{"alias":"APO-3","entrezGeneId":"8718"},{"alias":"DDR3","entrezGeneId":"8718"},{"alias":"DR3","entrezGeneId":"8718"},{"alias":"LARD","entrezGeneId":"8718"},{"alias":"TNFRSF12","entrezGeneId":"8718"},{"alias":"TR3","entrezGeneId":"8718"},{"alias":"TRAMP","entrezGeneId":"8718"},{"alias":"WSL-1","entrezGeneId":"8718"},{"alias":"WSL-LR","entrezGeneId":"8718"},{"alias":"PCSK8","entrezGeneId":"8720"},{"alias":"S1P","entrezGeneId":"8720"},{"alias":"SKI-1","entrezGeneId":"8720"},{"alias":"CFAP280","entrezGeneId":"8721"},{"alias":"EDF-1","entrezGeneId":"8721"},{"alias":"MBF1","entrezGeneId":"8721"},{"alias":"CATSF","entrezGeneId":"8722"},{"alias":"CLN13","entrezGeneId":"8722"},{"alias":"ATG24B","entrezGeneId":"8723"},{"alias":"Grd19","entrezGeneId":"8724"},{"alias":"MCOPS8","entrezGeneId":"8724"},{"alias":"SDP3","entrezGeneId":"8724"},{"alias":"C19orf2","entrezGeneId":"8725"},{"alias":"NNX3","entrezGeneId":"8725"},{"alias":"PPP1R19","entrezGeneId":"8725"},{"alias":"RMP","entrezGeneId":"8725"},{"alias":"URI","entrezGeneId":"8725"},{"alias":"COGIS","entrezGeneId":"8726"},{"alias":"HEED","entrezGeneId":"8726"},{"alias":"WAIT1","entrezGeneId":"8726"},{"alias":"ACRP","entrezGeneId":"8727"},{"alias":"alpha-CATU","entrezGeneId":"8727"},{"alias":"CLLP","entrezGeneId":"8727"},{"alias":"FKSG34","entrezGeneId":"8728"},{"alias":"MADDAM","entrezGeneId":"8728"},{"alias":"MLTNB","entrezGeneId":"8728"},{"alias":"ARF1GEF","entrezGeneId":"8729"},{"alias":"cm1p","entrezGeneId":"8731"},{"alias":"CMT1","entrezGeneId":"8731"},{"alias":"CMT1c","entrezGeneId":"8731"},{"alias":"hCMT1","entrezGeneId":"8731"},{"alias":"hMet","entrezGeneId":"8731"},{"alias":"Met","entrezGeneId":"8731"},{"alias":"RG7MT1","entrezGeneId":"8731"},{"alias":"CAP1A","entrezGeneId":"8732"},{"alias":"hCAP","entrezGeneId":"8732"},{"alias":"HCE","entrezGeneId":"8732"},{"alias":"HCE1","entrezGeneId":"8732"},{"alias":"GAA1","entrezGeneId":"8733"},{"alias":"GPIBD15","entrezGeneId":"8733"},{"alias":"hGAA1","entrezGeneId":"8733"},{"alias":"MyHC-eo","entrezGeneId":"8735"},{"alias":"MyHC-IIL","entrezGeneId":"8735"},{"alias":"SKELEMIN","entrezGeneId":"8736"},{"alias":"RIP","entrezGeneId":"8737"},{"alias":"RIP-1","entrezGeneId":"8737"},{"alias":"RIP1","entrezGeneId":"8737"},{"alias":"MRT34","entrezGeneId":"8738"},{"alias":"RAIDD","entrezGeneId":"8738"},{"alias":"DP5","entrezGeneId":"8739"},{"alias":"HARAKIRI","entrezGeneId":"8739"},{"alias":"CD258","entrezGeneId":"8740"},{"alias":"HVEML","entrezGeneId":"8740"},{"alias":"LIGHT","entrezGeneId":"8740"},{"alias":"LTg","entrezGeneId":"8740"},{"alias":"APRIL","entrezGeneId":"8741"},{"alias":"CD256","entrezGeneId":"8741"},{"alias":"TALL-2","entrezGeneId":"8741"},{"alias":"TALL2","entrezGeneId":"8741"},{"alias":"TNLG7B","entrezGeneId":"8741"},{"alias":"TRDL-1","entrezGeneId":"8741"},{"alias":"UNQ383/PRO715","entrezGeneId":"8741"},{"alias":"ZTNF2","entrezGeneId":"8741"},{"alias":"APO3L","entrezGeneId":"8742"},{"alias":"DR3LG","entrezGeneId":"8742"},{"alias":"TNLG4A","entrezGeneId":"8742"},{"alias":"TWEAK","entrezGeneId":"8742"},{"alias":"Apo-2L","entrezGeneId":"8743"},{"alias":"APO2L","entrezGeneId":"8743"},{"alias":"CD253","entrezGeneId":"8743"},{"alias":"TL2","entrezGeneId":"8743"},{"alias":"TNLG6A","entrezGeneId":"8743"},{"alias":"TRAIL","entrezGeneId":"8743"},{"alias":"4-1BB-L","entrezGeneId":"8744"},{"alias":"CD137L","entrezGeneId":"8744"},{"alias":"TNLG5A","entrezGeneId":"8744"},{"alias":"MDC-3","entrezGeneId":"8745"},{"alias":"MDC3","entrezGeneId":"8745"},{"alias":"ADAM 21","entrezGeneId":"8747"},{"alias":"ADAM31","entrezGeneId":"8747"},{"alias":"ADAM27","entrezGeneId":"8749"},{"alias":"tMDCIII","entrezGeneId":"8749"},{"alias":"MDC15","entrezGeneId":"8751"},{"alias":"CORD9","entrezGeneId":"8754"},{"alias":"MCMP","entrezGeneId":"8754"},{"alias":"MDC9","entrezGeneId":"8754"},{"alias":"Mltng","entrezGeneId":"8754"},{"alias":"C14orf96","entrezGeneId":"8755"},{"alias":"tMDCIV","entrezGeneId":"8755"},{"alias":"ADAM 7","entrezGeneId":"8756"},{"alias":"ADAM-7","entrezGeneId":"8756"},{"alias":"EAPI","entrezGeneId":"8756"},{"alias":"GP-83","entrezGeneId":"8756"},{"alias":"GP83","entrezGeneId":"8756"},{"alias":"ADAM1","entrezGeneId":"8759"},{"alias":"ADAM1P","entrezGeneId":"8759"},{"alias":"Ftna","entrezGeneId":"8759"},{"alias":"FTNAP","entrezGeneId":"8759"},{"alias":"PH-30a","entrezGeneId":"8759"},{"alias":"APP-1","entrezGeneId":"8761"},{"alias":"APP1","entrezGeneId":"8761"},{"alias":"iPABP","entrezGeneId":"8761"},{"alias":"PABP4","entrezGeneId":"8761"},{"alias":"DFNA66","entrezGeneId":"8763"},{"alias":"endolyn","entrezGeneId":"8763"},{"alias":"MGC-24","entrezGeneId":"8763"},{"alias":"MGC-24v","entrezGeneId":"8763"},{"alias":"MUC-24","entrezGeneId":"8763"},{"alias":"ATAR","entrezGeneId":"8764"},{"alias":"CD270","entrezGeneId":"8764"},{"alias":"HVEA","entrezGeneId":"8764"},{"alias":"HVEM","entrezGeneId":"8764"},{"alias":"LIGHTR","entrezGeneId":"8764"},{"alias":"TR2","entrezGeneId":"8764"},{"alias":"YL8","entrezGeneId":"8766"},{"alias":"CARD3","entrezGeneId":"8767"},{"alias":"CARDIAK","entrezGeneId":"8767"},{"alias":"CCK","entrezGeneId":"8767"},{"alias":"GIG30","entrezGeneId":"8767"},{"alias":"RICK","entrezGeneId":"8767"},{"alias":"RIP2","entrezGeneId":"8767"},{"alias":"DCR3","entrezGeneId":"8771"},{"alias":"DJ583P15.1.1","entrezGeneId":"8771"},{"alias":"M68","entrezGeneId":"8771"},{"alias":"M68E","entrezGeneId":"8771"},{"alias":"TR6","entrezGeneId":"8771"},{"alias":"GIG3","entrezGeneId":"8772"},{"alias":"MORT1","entrezGeneId":"8772"},{"alias":"HsT17016","entrezGeneId":"8773"},{"alias":"SNAP-23","entrezGeneId":"8773"},{"alias":"SNAP23A","entrezGeneId":"8773"},{"alias":"SNAP23B","entrezGeneId":"8773"},{"alias":"GAMMASNAP","entrezGeneId":"8774"},{"alias":"SNAPA","entrezGeneId":"8775"},{"alias":"HYC2","entrezGeneId":"8777"},{"alias":"MUPP1","entrezGeneId":"8777"},{"alias":"CD170","entrezGeneId":"8778"},{"alias":"CD33L2","entrezGeneId":"8778"},{"alias":"OB-BP2","entrezGeneId":"8778"},{"alias":"OBBP2","entrezGeneId":"8778"},{"alias":"SIGLEC-5","entrezGeneId":"8778"},{"alias":"SUDD","entrezGeneId":"8780"},{"alias":"CO9","entrezGeneId":"8781"},{"alias":"PSPHL","entrezGeneId":"8781"},{"alias":"AITR","entrezGeneId":"8784"},{"alias":"CD357","entrezGeneId":"8784"},{"alias":"GITR","entrezGeneId":"8784"},{"alias":"GITR-D","entrezGeneId":"8784"},{"alias":"RS11","entrezGeneId":"8786"},{"alias":"PERRS","entrezGeneId":"8787"},{"alias":"RGS9L","entrezGeneId":"8787"},{"alias":"Delta1","entrezGeneId":"8788"},{"alias":"DLK","entrezGeneId":"8788"},{"alias":"DLK-1","entrezGeneId":"8788"},{"alias":"FA1","entrezGeneId":"8788"},{"alias":"pG2","entrezGeneId":"8788"},{"alias":"Pref-1","entrezGeneId":"8788"},{"alias":"PREF1","entrezGeneId":"8788"},{"alias":"ZOG","entrezGeneId":"8788"},{"alias":"GFPP","entrezGeneId":"8790"},{"alias":"CD265","entrezGeneId":"8792"},{"alias":"FEO","entrezGeneId":"8792"},{"alias":"LOH18CR1","entrezGeneId":"8792"},{"alias":"ODFR","entrezGeneId":"8792"},{"alias":"OFE","entrezGeneId":"8792"},{"alias":"OPTB7","entrezGeneId":"8792"},{"alias":"OSTS","entrezGeneId":"8792"},{"alias":"PDB2","entrezGeneId":"8792"},{"alias":"RANK","entrezGeneId":"8792"},{"alias":"TRANCER","entrezGeneId":"8792"},{"alias":"CD264","entrezGeneId":"8793"},{"alias":"DCR2","entrezGeneId":"8793"},{"alias":"TRAIL-R4","entrezGeneId":"8793"},{"alias":"TRAILR4","entrezGeneId":"8793"},{"alias":"TRUNDD","entrezGeneId":"8793"},{"alias":"CD263","entrezGeneId":"8794"},{"alias":"DCR1","entrezGeneId":"8794"},{"alias":"DCR1-TNFR","entrezGeneId":"8794"},{"alias":"LIT","entrezGeneId":"8794"},{"alias":"TRAIL-R3","entrezGeneId":"8794"},{"alias":"TRAILR3","entrezGeneId":"8794"},{"alias":"TRID","entrezGeneId":"8794"},{"alias":"CD262","entrezGeneId":"8795"},{"alias":"DR5","entrezGeneId":"8795"},{"alias":"KILLER","entrezGeneId":"8795"},{"alias":"KILLER/DR5","entrezGeneId":"8795"},{"alias":"TRAIL-R2","entrezGeneId":"8795"},{"alias":"TRAILR2","entrezGeneId":"8795"},{"alias":"TRICK2","entrezGeneId":"8795"},{"alias":"TRICK2A","entrezGeneId":"8795"},{"alias":"TRICK2B","entrezGeneId":"8795"},{"alias":"TRICKB","entrezGeneId":"8795"},{"alias":"ZTNFR9","entrezGeneId":"8795"},{"alias":"APO2","entrezGeneId":"8797"},{"alias":"CD261","entrezGeneId":"8797"},{"alias":"DR4","entrezGeneId":"8797"},{"alias":"TRAILR-1","entrezGeneId":"8797"},{"alias":"TRAILR1","entrezGeneId":"8797"},{"alias":"PEX11-BETA","entrezGeneId":"8799"},{"alias":"PEX14B","entrezGeneId":"8799"},{"alias":"hsPEX11p","entrezGeneId":"8800"},{"alias":"PEX11-ALPHA","entrezGeneId":"8800"},{"alias":"PMP28","entrezGeneId":"8800"},{"alias":"G-SCS","entrezGeneId":"8801"},{"alias":"GBETA","entrezGeneId":"8801"},{"alias":"GTPSCS","entrezGeneId":"8801"},{"alias":"GALPHA","entrezGeneId":"8802"},{"alias":"MTDPS9","entrezGeneId":"8802"},{"alias":"SUCLA1","entrezGeneId":"8802"},{"alias":"A-BETA","entrezGeneId":"8803"},{"alias":"A-SCS","entrezGeneId":"8803"},{"alias":"MTDPS5","entrezGeneId":"8803"},{"alias":"SCS-betaA","entrezGeneId":"8803"},{"alias":"CREG","entrezGeneId":"8804"},{"alias":"hTIF1","entrezGeneId":"8805"},{"alias":"PTC6","entrezGeneId":"8805"},{"alias":"RNF82","entrezGeneId":"8805"},{"alias":"TF1A","entrezGeneId":"8805"},{"alias":"TIF1","entrezGeneId":"8805"},{"alias":"TIF1A","entrezGeneId":"8805"},{"alias":"TIF1ALPHA","entrezGeneId":"8805"},{"alias":"ACPL","entrezGeneId":"8807"},{"alias":"CD218b","entrezGeneId":"8807"},{"alias":"CDw218b","entrezGeneId":"8807"},{"alias":"IL-18R-beta","entrezGeneId":"8807"},{"alias":"IL-18RAcP","entrezGeneId":"8807"},{"alias":"IL-18Rbeta","entrezGeneId":"8807"},{"alias":"IL-1R-7","entrezGeneId":"8807"},{"alias":"IL-1R7","entrezGeneId":"8807"},{"alias":"IL-1RAcPL","entrezGeneId":"8807"},{"alias":"IL18RB","entrezGeneId":"8807"},{"alias":"IL-1Rrp2","entrezGeneId":"8808"},{"alias":"IL-36R","entrezGeneId":"8808"},{"alias":"IL1R-rp2","entrezGeneId":"8808"},{"alias":"IL1RRP2","entrezGeneId":"8808"},{"alias":"CD218a","entrezGeneId":"8809"},{"alias":"CDw218a","entrezGeneId":"8809"},{"alias":"IL-1Rrp","entrezGeneId":"8809"},{"alias":"IL18RA","entrezGeneId":"8809"},{"alias":"IL1RRP","entrezGeneId":"8809"},{"alias":"GAL2-R","entrezGeneId":"8811"},{"alias":"GALNR2","entrezGeneId":"8811"},{"alias":"GALR-2","entrezGeneId":"8811"},{"alias":"CPR4","entrezGeneId":"8812"},{"alias":"CDGIE","entrezGeneId":"8813"},{"alias":"MPDS","entrezGeneId":"8813"},{"alias":"KKIALRE","entrezGeneId":"8814"},{"alias":"P42","entrezGeneId":"8814"},{"alias":"BAF","entrezGeneId":"8815"},{"alias":"BCRP1","entrezGeneId":"8815"},{"alias":"D14S1460","entrezGeneId":"8815"},{"alias":"NGPS","entrezGeneId":"8815"},{"alias":"BCRG2","entrezGeneId":"8816"},{"alias":"BCRP2","entrezGeneId":"8816"},{"alias":"D14S1461E","entrezGeneId":"8816"},{"alias":"WDR22","entrezGeneId":"8816"},{"alias":"FGF-18","entrezGeneId":"8817"},{"alias":"ZFGF5","entrezGeneId":"8817"},{"alias":"CDG1U","entrezGeneId":"8818"},{"alias":"ANF","entrezGeneId":"8820"},{"alias":"CPHD5","entrezGeneId":"8820"},{"alias":"RPX","entrezGeneId":"8820"},{"alias":"FGF-13","entrezGeneId":"8822"},{"alias":"FGF-17","entrezGeneId":"8822"},{"alias":"HH20","entrezGeneId":"8822"},{"alias":"FGF-16","entrezGeneId":"8823"},{"alias":"MF4","entrezGeneId":"8823"},{"alias":"CE-2","entrezGeneId":"8824"},{"alias":"CES2A1","entrezGeneId":"8824"},{"alias":"iCE","entrezGeneId":"8824"},{"alias":"PCE-2","entrezGeneId":"8824"},{"alias":"LIN-7A","entrezGeneId":"8825"},{"alias":"LIN7","entrezGeneId":"8825"},{"alias":"MALS-1","entrezGeneId":"8825"},{"alias":"MALS1","entrezGeneId":"8825"},{"alias":"TIP-33","entrezGeneId":"8825"},{"alias":"VELI1","entrezGeneId":"8825"},{"alias":"HUMORFA01","entrezGeneId":"8826"},{"alias":"p195","entrezGeneId":"8826"},{"alias":"SAR1","entrezGeneId":"8826"},{"alias":"NP2","entrezGeneId":"8828"},{"alias":"NPN2","entrezGeneId":"8828"},{"alias":"PRO2714","entrezGeneId":"8828"},{"alias":"VEGF165R2","entrezGeneId":"8828"},{"alias":"BDCA4","entrezGeneId":"8829"},{"alias":"CD304","entrezGeneId":"8829"},{"alias":"NP1","entrezGeneId":"8829"},{"alias":"NRP","entrezGeneId":"8829"},{"alias":"VEGF165R","entrezGeneId":"8829"},{"alias":"FPAH","entrezGeneId":"8830"},{"alias":"MRD5","entrezGeneId":"8831"},{"alias":"RASA1","entrezGeneId":"8831"},{"alias":"RASA5","entrezGeneId":"8831"},{"alias":"SYNGAP","entrezGeneId":"8831"},{"alias":"hCD84","entrezGeneId":"8832"},{"alias":"LY9B","entrezGeneId":"8832"},{"alias":"mCD84","entrezGeneId":"8832"},{"alias":"SLAMF5","entrezGeneId":"8832"},{"alias":"GATD7","entrezGeneId":"8833"},{"alias":"C17orf35","entrezGeneId":"8834"},{"alias":"PM1","entrezGeneId":"8834"},{"alias":"PMI","entrezGeneId":"8834"},{"alias":"CIS2","entrezGeneId":"8835"},{"alias":"Cish2","entrezGeneId":"8835"},{"alias":"SOCS-2","entrezGeneId":"8835"},{"alias":"SSI-2","entrezGeneId":"8835"},{"alias":"SSI2","entrezGeneId":"8835"},{"alias":"STATI2","entrezGeneId":"8835"},{"alias":"GH","entrezGeneId":"8836"},{"alias":"c-FLIP","entrezGeneId":"8837"},{"alias":"c-FLIPL","entrezGeneId":"8837"},{"alias":"c-FLIPR","entrezGeneId":"8837"},{"alias":"c-FLIPS","entrezGeneId":"8837"},{"alias":"CASH","entrezGeneId":"8837"},{"alias":"CASP8AP1","entrezGeneId":"8837"},{"alias":"Casper","entrezGeneId":"8837"},{"alias":"CLARP","entrezGeneId":"8837"},{"alias":"FLAME","entrezGeneId":"8837"},{"alias":"FLAME-1","entrezGeneId":"8837"},{"alias":"FLAME1","entrezGeneId":"8837"},{"alias":"FLIP","entrezGeneId":"8837"},{"alias":"I-FLICE","entrezGeneId":"8837"},{"alias":"MRIT","entrezGeneId":"8837"},{"alias":"CCN6","entrezGeneId":"8838"},{"alias":"LIBC","entrezGeneId":"8838"},{"alias":"PPAC","entrezGeneId":"8838"},{"alias":"PPD","entrezGeneId":"8838"},{"alias":"WISP-3","entrezGeneId":"8838"},{"alias":"CCN5","entrezGeneId":"8839"},{"alias":"CT58","entrezGeneId":"8839"},{"alias":"CTGF-L","entrezGeneId":"8839"},{"alias":"CCN4","entrezGeneId":"8840"},{"alias":"WISP1-OT1","entrezGeneId":"8840"},{"alias":"WISP1-UT1","entrezGeneId":"8840"},{"alias":"WISP1c","entrezGeneId":"8840"},{"alias":"WISP1i","entrezGeneId":"8840"},{"alias":"WISP1tc","entrezGeneId":"8840"},{"alias":"HD3","entrezGeneId":"8841"},{"alias":"RPD3","entrezGeneId":"8841"},{"alias":"RPD3-2","entrezGeneId":"8841"},{"alias":"AC133","entrezGeneId":"8842"},{"alias":"CD133","entrezGeneId":"8842"},{"alias":"CORD12","entrezGeneId":"8842"},{"alias":"MCDR2","entrezGeneId":"8842"},{"alias":"MSTP061","entrezGeneId":"8842"},{"alias":"PROML1","entrezGeneId":"8842"},{"alias":"RP41","entrezGeneId":"8842"},{"alias":"STGD4","entrezGeneId":"8842"},{"alias":"GPR109B","entrezGeneId":"8843"},{"alias":"HCA3","entrezGeneId":"8843"},{"alias":"HM74","entrezGeneId":"8843"},{"alias":"Puma-g","entrezGeneId":"8843"},{"alias":"PUMAG","entrezGeneId":"8843"},{"alias":"KSR","entrezGeneId":"8844"},{"alias":"RSU2","entrezGeneId":"8844"},{"alias":"ABH","entrezGeneId":"8846"},{"alias":"ABH1","entrezGeneId":"8846"},{"alias":"alkB","entrezGeneId":"8846"},{"alias":"ALKBH","entrezGeneId":"8846"},{"alias":"hABH","entrezGeneId":"8846"},{"alias":"ALT1","entrezGeneId":"8847"},{"alias":"BCMSUN","entrezGeneId":"8847"},{"alias":"DLB2","entrezGeneId":"8847"},{"alias":"LEU2","entrezGeneId":"8847"},{"alias":"LINC00022","entrezGeneId":"8847"},{"alias":"MIR15AHG","entrezGeneId":"8847"},{"alias":"NCRNA00022","entrezGeneId":"8847"},{"alias":"RFP2","entrezGeneId":"8847"},{"alias":"RFP2OS","entrezGeneId":"8847"},{"alias":"TRIM13OS","entrezGeneId":"8847"},{"alias":"Ptg-2","entrezGeneId":"8848"},{"alias":"TGFB1I4","entrezGeneId":"8848"},{"alias":"TSC22","entrezGeneId":"8848"},{"alias":"CAF","entrezGeneId":"8850"},{"alias":"P/CAF","entrezGeneId":"8850"},{"alias":"PCAF","entrezGeneId":"8850"},{"alias":"CDK5P35","entrezGeneId":"8851"},{"alias":"CDK5R","entrezGeneId":"8851"},{"alias":"NCK5A","entrezGeneId":"8851"},{"alias":"p23","entrezGeneId":"8851"},{"alias":"p25","entrezGeneId":"8851"},{"alias":"p35","entrezGeneId":"8851"},{"alias":"p35nck5a","entrezGeneId":"8851"},{"alias":"AKAP 82","entrezGeneId":"8852"},{"alias":"AKAP-4","entrezGeneId":"8852"},{"alias":"AKAP82","entrezGeneId":"8852"},{"alias":"CT99","entrezGeneId":"8852"},{"alias":"FSC1","entrezGeneId":"8852"},{"alias":"hAKAP82","entrezGeneId":"8852"},{"alias":"HI","entrezGeneId":"8852"},{"alias":"p82","entrezGeneId":"8852"},{"alias":"PRKA4","entrezGeneId":"8852"},{"alias":"AMAP2","entrezGeneId":"8853"},{"alias":"CENTB3","entrezGeneId":"8853"},{"alias":"DDEF2","entrezGeneId":"8853"},{"alias":"PAG3","entrezGeneId":"8853"},{"alias":"PAP","entrezGeneId":"8853"},{"alias":"Pap-alpha","entrezGeneId":"8853"},{"alias":"SHAG1","entrezGeneId":"8853"},{"alias":"RALDH(II)","entrezGeneId":"8854"},{"alias":"RALDH2","entrezGeneId":"8854"},{"alias":"RALDH2-T","entrezGeneId":"8854"},{"alias":"BXR","entrezGeneId":"8856"},{"alias":"ONR1","entrezGeneId":"8856"},{"alias":"PAR","entrezGeneId":"8856"},{"alias":"PAR1","entrezGeneId":"8856"},{"alias":"PAR2","entrezGeneId":"8856"},{"alias":"PARq","entrezGeneId":"8856"},{"alias":"PRR","entrezGeneId":"8856"},{"alias":"PXR","entrezGeneId":"8856"},{"alias":"SAR","entrezGeneId":"8856"},{"alias":"SXR","entrezGeneId":"8856"},{"alias":"FC(GAMMA)BP","entrezGeneId":"8857"},{"alias":"PZ","entrezGeneId":"8858"},{"alias":"D6S60","entrezGeneId":"8859"},{"alias":"D6S60E","entrezGeneId":"8859"},{"alias":"G11","entrezGeneId":"8859"},{"alias":"HLA-RP1","entrezGeneId":"8859"},{"alias":"RP1","entrezGeneId":"8859"},{"alias":"CLIM-2","entrezGeneId":"8861"},{"alias":"CLIM2","entrezGeneId":"8861"},{"alias":"LDB-1","entrezGeneId":"8861"},{"alias":"NLI","entrezGeneId":"8861"},{"alias":"APEL","entrezGeneId":"8862"},{"alias":"XNPEP2","entrezGeneId":"8862"},{"alias":"FASPS3","entrezGeneId":"8863"},{"alias":"GIG13","entrezGeneId":"8863"},{"alias":"FASPS","entrezGeneId":"8864"},{"alias":"FASPS1","entrezGeneId":"8864"},{"alias":"EIEE53","entrezGeneId":"8867"},{"alias":"INPP5G","entrezGeneId":"8867"},{"alias":"PARK20","entrezGeneId":"8867"},{"alias":"SATI","entrezGeneId":"8869"},{"alias":"SIAT9","entrezGeneId":"8869"},{"alias":"SIATGM3S","entrezGeneId":"8869"},{"alias":"SPDRS","entrezGeneId":"8869"},{"alias":"ST3Gal V","entrezGeneId":"8869"},{"alias":"ST3GalV","entrezGeneId":"8869"},{"alias":"DIF-2","entrezGeneId":"8870"},{"alias":"DIF2","entrezGeneId":"8870"},{"alias":"GLY96","entrezGeneId":"8870"},{"alias":"IEX-1","entrezGeneId":"8870"},{"alias":"IEX-1L","entrezGeneId":"8870"},{"alias":"IEX1","entrezGeneId":"8870"},{"alias":"PRG1","entrezGeneId":"8870"},{"alias":"INPP5H","entrezGeneId":"8871"},{"alias":"C10orf7","entrezGeneId":"8872"},{"alias":"D123","entrezGeneId":"8872"},{"alias":"BETA-PIX","entrezGeneId":"8874"},{"alias":"COOL-1","entrezGeneId":"8874"},{"alias":"COOL1","entrezGeneId":"8874"},{"alias":"Nbla10314","entrezGeneId":"8874"},{"alias":"P50","entrezGeneId":"8874"},{"alias":"P50BP","entrezGeneId":"8874"},{"alias":"P85","entrezGeneId":"8874"},{"alias":"P85COOL1","entrezGeneId":"8874"},{"alias":"P85SPR","entrezGeneId":"8874"},{"alias":"PAK3","entrezGeneId":"8874"},{"alias":"PIXB","entrezGeneId":"8874"},{"alias":"FOAP-4","entrezGeneId":"8875"},{"alias":"GPI-80","entrezGeneId":"8875"},{"alias":"HDLCQ8","entrezGeneId":"8876"},{"alias":"Tiff66","entrezGeneId":"8876"},{"alias":"SPHK","entrezGeneId":"8877"},{"alias":"A170","entrezGeneId":"8878"},{"alias":"DMRV","entrezGeneId":"8878"},{"alias":"FTDALS3","entrezGeneId":"8878"},{"alias":"NADGP","entrezGeneId":"8878"},{"alias":"OSIL","entrezGeneId":"8878"},{"alias":"p60","entrezGeneId":"8878"},{"alias":"p62","entrezGeneId":"8878"},{"alias":"p62B","entrezGeneId":"8878"},{"alias":"PDB3","entrezGeneId":"8878"},{"alias":"ZIP3","entrezGeneId":"8878"},{"alias":"NPHS14","entrezGeneId":"8879"},{"alias":"S1PL","entrezGeneId":"8879"},{"alias":"SPL","entrezGeneId":"8879"},{"alias":"FBP","entrezGeneId":"8880"},{"alias":"FUBP","entrezGeneId":"8880"},{"alias":"hDH V","entrezGeneId":"8880"},{"alias":"ANAPC6","entrezGeneId":"8881"},{"alias":"APC6","entrezGeneId":"8881"},{"alias":"CDC16Hs","entrezGeneId":"8881"},{"alias":"CUT9","entrezGeneId":"8881"},{"alias":"ZNF259","entrezGeneId":"8882"},{"alias":"A-116A10.1","entrezGeneId":"8883"},{"alias":"APPBP1","entrezGeneId":"8883"},{"alias":"HPP1","entrezGeneId":"8883"},{"alias":"ula-1","entrezGeneId":"8883"},{"alias":"SMVT","entrezGeneId":"8884"},{"alias":"Has1","entrezGeneId":"8886"},{"alias":"MrDb","entrezGeneId":"8886"},{"alias":"CALCOCO3","entrezGeneId":"8887"},{"alias":"T6BP","entrezGeneId":"8887"},{"alias":"TXBP151","entrezGeneId":"8887"},{"alias":"GANP","entrezGeneId":"8888"},{"alias":"MAP80","entrezGeneId":"8888"},{"alias":"SAC3","entrezGeneId":"8888"},{"alias":"EIF-2B","entrezGeneId":"8890"},{"alias":"EIF2B","entrezGeneId":"8890"},{"alias":"EIF2Bdelta","entrezGeneId":"8890"},{"alias":"EIF-2B","entrezGeneId":"8891"},{"alias":"EIF2Bgamma","entrezGeneId":"8891"},{"alias":"EIF-2Bbeta","entrezGeneId":"8892"},{"alias":"EIF2B","entrezGeneId":"8892"},{"alias":"CACH","entrezGeneId":"8893"},{"alias":"CLE","entrezGeneId":"8893"},{"alias":"EIF-2B","entrezGeneId":"8893"},{"alias":"EIF2Bepsilon","entrezGeneId":"8893"},{"alias":"LVWM","entrezGeneId":"8893"},{"alias":"eIF-2-beta","entrezGeneId":"8894"},{"alias":"EIF2","entrezGeneId":"8894"},{"alias":"EIF2B","entrezGeneId":"8894"},{"alias":"EIF2beta","entrezGeneId":"8894"},{"alias":"PPP1R67","entrezGeneId":"8894"},{"alias":"CPN3","entrezGeneId":"8895"},{"alias":"PRO1071","entrezGeneId":"8895"},{"alias":"Cwc14","entrezGeneId":"8896"},{"alias":"EDG-2","entrezGeneId":"8896"},{"alias":"EDG2","entrezGeneId":"8896"},{"alias":"fSAP17","entrezGeneId":"8896"},{"alias":"G10","entrezGeneId":"8896"},{"alias":"YCR063W","entrezGeneId":"8896"},{"alias":"FYVE-DSP1","entrezGeneId":"8897"},{"alias":"ZFYVE10","entrezGeneId":"8897"},{"alias":"CMT4B","entrezGeneId":"8898"},{"alias":"CMT4B1","entrezGeneId":"8898"},{"alias":"dJ1013A10.1","entrezGeneId":"8899"},{"alias":"PR4H","entrezGeneId":"8899"},{"alias":"PRP4","entrezGeneId":"8899"},{"alias":"PRP4H","entrezGeneId":"8899"},{"alias":"PRP4K","entrezGeneId":"8899"},{"alias":"CT146","entrezGeneId":"8900"},{"alias":"COPN1","entrezGeneId":"8904"},{"alias":"CPN1","entrezGeneId":"8904"},{"alias":"DC22","entrezGeneId":"8905"},{"alias":"MRX59","entrezGeneId":"8905"},{"alias":"MRXS21","entrezGeneId":"8905"},{"alias":"MRXS5","entrezGeneId":"8905"},{"alias":"MRXSF","entrezGeneId":"8905"},{"alias":"PGS","entrezGeneId":"8905"},{"alias":"SIGMA1B","entrezGeneId":"8905"},{"alias":"G2AD","entrezGeneId":"8906"},{"alias":"AP47","entrezGeneId":"8907"},{"alias":"CLAPM2","entrezGeneId":"8907"},{"alias":"CLTNM","entrezGeneId":"8907"},{"alias":"MU-1A","entrezGeneId":"8907"},{"alias":"GN-2","entrezGeneId":"8908"},{"alias":"GN2","entrezGeneId":"8908"},{"alias":"P11","entrezGeneId":"8909"},{"alias":"PP11","entrezGeneId":"8909"},{"alias":"PRSS26","entrezGeneId":"8909"},{"alias":"DYT11","entrezGeneId":"8910"},{"alias":"epsilon-SG","entrezGeneId":"8910"},{"alias":"ESG","entrezGeneId":"8910"},{"alias":"ca(v)3.3","entrezGeneId":"8911"},{"alias":"Cav3.3","entrezGeneId":"8911"},{"alias":"CACNA1HB","entrezGeneId":"8912"},{"alias":"Cav3.2","entrezGeneId":"8912"},{"alias":"ECA6","entrezGeneId":"8912"},{"alias":"EIG6","entrezGeneId":"8912"},{"alias":"HALD4","entrezGeneId":"8912"},{"alias":"Ca(V)T.1","entrezGeneId":"8913"},{"alias":"Cav3.1","entrezGeneId":"8913"},{"alias":"NBR13","entrezGeneId":"8913"},{"alias":"SCA42","entrezGeneId":"8913"},{"alias":"hTIM","entrezGeneId":"8914"},{"alias":"TIM","entrezGeneId":"8914"},{"alias":"TIM1","entrezGeneId":"8914"},{"alias":"c-E10","entrezGeneId":"8915"},{"alias":"CARMEN","entrezGeneId":"8915"},{"alias":"CIPER","entrezGeneId":"8915"},{"alias":"CLAP","entrezGeneId":"8915"},{"alias":"IMD37","entrezGeneId":"8915"},{"alias":"mE10","entrezGeneId":"8915"},{"alias":"D15F37S2","entrezGeneId":"8917"},{"alias":"D15F37S1","entrezGeneId":"8924"},{"alias":"jdf2","entrezGeneId":"8924"},{"alias":"MRT38","entrezGeneId":"8924"},{"alias":"p528","entrezGeneId":"8924"},{"alias":"SHEP1","entrezGeneId":"8924"},{"alias":"MDFPMR","entrezGeneId":"8925"},{"alias":"p532","entrezGeneId":"8925"},{"alias":"p619","entrezGeneId":"8925"},{"alias":"ZNF231","entrezGeneId":"8927"},{"alias":"FAST-1","entrezGeneId":"8928"},{"alias":"FAST1","entrezGeneId":"8928"},{"alias":"CCHS","entrezGeneId":"8929"},{"alias":"NBLST2","entrezGeneId":"8929"},{"alias":"NBPhox","entrezGeneId":"8929"},{"alias":"PMX2B","entrezGeneId":"8929"},{"alias":"MED1","entrezGeneId":"8930"},{"alias":"DMTase","entrezGeneId":"8932"},{"alias":"NY-CO-41","entrezGeneId":"8932"},{"alias":"CXX1","entrezGeneId":"8933"},{"alias":"FAM127A","entrezGeneId":"8933"},{"alias":"Mar8","entrezGeneId":"8933"},{"alias":"MAR8C","entrezGeneId":"8933"},{"alias":"Mart8","entrezGeneId":"8933"},{"alias":"MART8C","entrezGeneId":"8933"},{"alias":"SIRH5","entrezGeneId":"8933"},{"alias":"RAB7L","entrezGeneId":"8934"},{"alias":"RAB7L1","entrezGeneId":"8934"},{"alias":"PRAP","entrezGeneId":"8935"},{"alias":"RA70","entrezGeneId":"8935"},{"alias":"SAPS","entrezGeneId":"8935"},{"alias":"SCAP2","entrezGeneId":"8935"},{"alias":"SKAP-HOM","entrezGeneId":"8935"},{"alias":"SKAP55R","entrezGeneId":"8935"},{"alias":"SCAR1","entrezGeneId":"8936"},{"alias":"WAVE","entrezGeneId":"8936"},{"alias":"WAVE1","entrezGeneId":"8936"},{"alias":"BAP3","entrezGeneId":"8938"},{"alias":"FBP3","entrezGeneId":"8939"},{"alias":"TOP3B1","entrezGeneId":"8940"},{"alias":"NCK5AI","entrezGeneId":"8941"},{"alias":"P39","entrezGeneId":"8941"},{"alias":"p39nck5ai","entrezGeneId":"8941"},{"alias":"KYNUU","entrezGeneId":"8942"},{"alias":"VCRL2","entrezGeneId":"8942"},{"alias":"ADTD","entrezGeneId":"8943"},{"alias":"hBLVR","entrezGeneId":"8943"},{"alias":"HPS10","entrezGeneId":"8943"},{"alias":"RNU73","entrezGeneId":"8944"},{"alias":"RNU73A","entrezGeneId":"8944"},{"alias":"U73","entrezGeneId":"8944"},{"alias":"U73a","entrezGeneId":"8944"},{"alias":"BETA-TRCP","entrezGeneId":"8945"},{"alias":"betaTrCP","entrezGeneId":"8945"},{"alias":"bTrCP","entrezGeneId":"8945"},{"alias":"bTrCP1","entrezGeneId":"8945"},{"alias":"FBW1A","entrezGeneId":"8945"},{"alias":"FBXW1","entrezGeneId":"8945"},{"alias":"FBXW1A","entrezGeneId":"8945"},{"alias":"FWD1","entrezGeneId":"8945"},{"alias":"H3/i","entrezGeneId":"8968"},{"alias":"H3FI","entrezGeneId":"8968"},{"alias":"H2A.1b","entrezGeneId":"8969"},{"alias":"H2A/p","entrezGeneId":"8969"},{"alias":"H2AFP","entrezGeneId":"8969"},{"alias":"H2AG","entrezGeneId":"8969"},{"alias":"pH2A/f","entrezGeneId":"8969"},{"alias":"H2B/r","entrezGeneId":"8970"},{"alias":"H2BFR","entrezGeneId":"8970"},{"alias":"H2BJ","entrezGeneId":"8970"},{"alias":"H1.10","entrezGeneId":"8971"},{"alias":"H1X","entrezGeneId":"8971"},{"alias":"MG","entrezGeneId":"8972"},{"alias":"MGA","entrezGeneId":"8972"},{"alias":"CHNRA6","entrezGeneId":"8973"},{"alias":"MYP25","entrezGeneId":"8974"},{"alias":"IsoT-3","entrezGeneId":"8975"},{"alias":"ISOT3","entrezGeneId":"8975"},{"alias":"N-WASP","entrezGeneId":"8976"},{"alias":"NWASP","entrezGeneId":"8976"},{"alias":"WASPB","entrezGeneId":"8976"},{"alias":"LH3","entrezGeneId":"8985"},{"alias":"MSK2","entrezGeneId":"8986"},{"alias":"RSK-B","entrezGeneId":"8986"},{"alias":"S6K-alpha-4","entrezGeneId":"8986"},{"alias":"GENEX3414","entrezGeneId":"8987"},{"alias":"GENX-3414","entrezGeneId":"8987"},{"alias":"DHMN2C","entrezGeneId":"8988"},{"alias":"HMN2C","entrezGeneId":"8988"},{"alias":"HSPL27","entrezGeneId":"8988"},{"alias":"ANKTM1","entrezGeneId":"8989"},{"alias":"FEPS","entrezGeneId":"8989"},{"alias":"FEPS1","entrezGeneId":"8989"},{"alias":"HEL-S-134P","entrezGeneId":"8991"},{"alias":"hSBP","entrezGeneId":"8991"},{"alias":"LPSB","entrezGeneId":"8991"},{"alias":"MTO","entrezGeneId":"8991"},{"alias":"SBP56","entrezGeneId":"8991"},{"alias":"SP56","entrezGeneId":"8991"},{"alias":"ATP6H","entrezGeneId":"8992"},{"alias":"ATP6V0E","entrezGeneId":"8992"},{"alias":"M9.2","entrezGeneId":"8992"},{"alias":"Vma21","entrezGeneId":"8992"},{"alias":"Vma21p","entrezGeneId":"8992"},{"alias":"PGLYRP","entrezGeneId":"8993"},{"alias":"PGRP","entrezGeneId":"8993"},{"alias":"PGRP-S","entrezGeneId":"8993"},{"alias":"PGRPS","entrezGeneId":"8993"},{"alias":"TAG7","entrezGeneId":"8993"},{"alias":"TNFSF3L","entrezGeneId":"8993"},{"alias":"AITRL","entrezGeneId":"8995"},{"alias":"GITRL","entrezGeneId":"8995"},{"alias":"hGITRL","entrezGeneId":"8995"},{"alias":"TL6","entrezGeneId":"8995"},{"alias":"TNLG2A","entrezGeneId":"8995"},{"alias":"ARC","entrezGeneId":"8996"},{"alias":"FCM","entrezGeneId":"8996"},{"alias":"MYP","entrezGeneId":"8996"},{"alias":"NOP","entrezGeneId":"8996"},{"alias":"NOP30","entrezGeneId":"8996"},{"alias":"ARHGEF24","entrezGeneId":"8997"},{"alias":"CHD5","entrezGeneId":"8997"},{"alias":"CHDS5","entrezGeneId":"8997"},{"alias":"DUET","entrezGeneId":"8997"},{"alias":"DUO","entrezGeneId":"8997"},{"alias":"HAPIP","entrezGeneId":"8997"},{"alias":"TRAD","entrezGeneId":"8997"},{"alias":"KKIAMRE","entrezGeneId":"8999"},{"alias":"P56","entrezGeneId":"8999"},{"alias":"HAP2","entrezGeneId":"9001"},{"alias":"hHLP1","entrezGeneId":"9001"},{"alias":"HIP5","entrezGeneId":"9001"},{"alias":"HLP","entrezGeneId":"9001"},{"alias":"PAR4","entrezGeneId":"9002"},{"alias":"MGC:39976","entrezGeneId":"9013"},{"alias":"SL1","entrezGeneId":"9013"},{"alias":"TAFI110","entrezGeneId":"9013"},{"alias":"TAFI95","entrezGeneId":"9013"},{"alias":"MGC:9349","entrezGeneId":"9014"},{"alias":"RAF1B","entrezGeneId":"9014"},{"alias":"RAFI63","entrezGeneId":"9014"},{"alias":"SL1","entrezGeneId":"9014"},{"alias":"TAFI63","entrezGeneId":"9014"},{"alias":"MGC:17061","entrezGeneId":"9015"},{"alias":"RAFI48","entrezGeneId":"9015"},{"alias":"SL1","entrezGeneId":"9015"},{"alias":"TAFI48","entrezGeneId":"9015"},{"alias":"BMCP1","entrezGeneId":"9016"},{"alias":"UCP5","entrezGeneId":"9016"},{"alias":"MPZL1b","entrezGeneId":"9019"},{"alias":"PZR","entrezGeneId":"9019"},{"alias":"PZR1b","entrezGeneId":"9019"},{"alias":"PZRa","entrezGeneId":"9019"},{"alias":"PZRb","entrezGeneId":"9019"},{"alias":"FTDCR1B","entrezGeneId":"9020"},{"alias":"HS","entrezGeneId":"9020"},{"alias":"HSNIK","entrezGeneId":"9020"},{"alias":"NIK","entrezGeneId":"9020"},{"alias":"ATOD4","entrezGeneId":"9021"},{"alias":"CIS3","entrezGeneId":"9021"},{"alias":"Cish3","entrezGeneId":"9021"},{"alias":"SOCS-3","entrezGeneId":"9021"},{"alias":"SSI-3","entrezGeneId":"9021"},{"alias":"SSI3","entrezGeneId":"9021"},{"alias":"C25H","entrezGeneId":"9023"},{"alias":"C11orf7","entrezGeneId":"9024"},{"alias":"PEN11B","entrezGeneId":"9024"},{"alias":"SAD1","entrezGeneId":"9024"},{"alias":"SADA","entrezGeneId":"9024"},{"alias":"STK29","entrezGeneId":"9024"},{"alias":"hRNF8","entrezGeneId":"9025"},{"alias":"HIP12","entrezGeneId":"9026"},{"alias":"HIP3","entrezGeneId":"9026"},{"alias":"ILWEQ","entrezGeneId":"9026"},{"alias":"ATase2","entrezGeneId":"9027"},{"alias":"CCNAT","entrezGeneId":"9027"},{"alias":"CML1","entrezGeneId":"9027"},{"alias":"GLA","entrezGeneId":"9027"},{"alias":"Hcml1","entrezGeneId":"9027"},{"alias":"TSC501","entrezGeneId":"9027"},{"alias":"TSC510","entrezGeneId":"9027"},{"alias":"RHBDL","entrezGeneId":"9028"},{"alias":"RRP","entrezGeneId":"9028"},{"alias":"WBSCR10","entrezGeneId":"9031"},{"alias":"WBSCR9","entrezGeneId":"9031"},{"alias":"WSTF","entrezGeneId":"9031"},{"alias":"PCL","entrezGeneId":"9033"},{"alias":"PKD2L","entrezGeneId":"9033"},{"alias":"PKDL","entrezGeneId":"9033"},{"alias":"TRPP3","entrezGeneId":"9033"},{"alias":"ACKR5","entrezGeneId":"9034"},{"alias":"CKRX","entrezGeneId":"9034"},{"alias":"CRAM","entrezGeneId":"9034"},{"alias":"CRAM-A","entrezGeneId":"9034"},{"alias":"CRAM-B","entrezGeneId":"9034"},{"alias":"HCR","entrezGeneId":"9034"},{"alias":"SEMAF","entrezGeneId":"9037"},{"alias":"semF","entrezGeneId":"9037"},{"alias":"PNR","entrezGeneId":"9038"},{"alias":"hUBA3","entrezGeneId":"9039"},{"alias":"NAE2","entrezGeneId":"9039"},{"alias":"UBE1C","entrezGeneId":"9039"},{"alias":"hUbc12","entrezGeneId":"9040"},{"alias":"UBC-RS2","entrezGeneId":"9040"},{"alias":"UBC12","entrezGeneId":"9040"},{"alias":"CT89","entrezGeneId":"9043"},{"alias":"HLC-6","entrezGeneId":"9043"},{"alias":"HLC4","entrezGeneId":"9043"},{"alias":"HLC6","entrezGeneId":"9043"},{"alias":"JIP-4","entrezGeneId":"9043"},{"alias":"JIP4","entrezGeneId":"9043"},{"alias":"JLP","entrezGeneId":"9043"},{"alias":"PHET","entrezGeneId":"9043"},{"alias":"PIG6","entrezGeneId":"9043"},{"alias":"MOT1","entrezGeneId":"9044"},{"alias":"TAF(II)170","entrezGeneId":"9044"},{"alias":"TAF172","entrezGeneId":"9044"},{"alias":"TAFII170","entrezGeneId":"9044"},{"alias":"CAG-ISL-7","entrezGeneId":"9045"},{"alias":"CTG-B33","entrezGeneId":"9045"},{"alias":"hRL14","entrezGeneId":"9045"},{"alias":"L14","entrezGeneId":"9045"},{"alias":"RL14","entrezGeneId":"9045"},{"alias":"p56DOK","entrezGeneId":"9046"},{"alias":"p56dok-2","entrezGeneId":"9046"},{"alias":"F2771","entrezGeneId":"9047"},{"alias":"SCAP","entrezGeneId":"9047"},{"alias":"TSAD","entrezGeneId":"9047"},{"alias":"VRAP","entrezGeneId":"9047"},{"alias":"ART","entrezGeneId":"9048"},{"alias":"ENOVIN","entrezGeneId":"9048"},{"alias":"EVN","entrezGeneId":"9048"},{"alias":"NBN","entrezGeneId":"9048"},{"alias":"ARA9","entrezGeneId":"9049"},{"alias":"FKBP16","entrezGeneId":"9049"},{"alias":"FKBP37","entrezGeneId":"9049"},{"alias":"PITA1","entrezGeneId":"9049"},{"alias":"SMTPHN","entrezGeneId":"9049"},{"alias":"XAP-2","entrezGeneId":"9049"},{"alias":"XAP2","entrezGeneId":"9049"},{"alias":"MAYP","entrezGeneId":"9050"},{"alias":"CD2BP1","entrezGeneId":"9051"},{"alias":"CD2BP1L","entrezGeneId":"9051"},{"alias":"CD2BP1S","entrezGeneId":"9051"},{"alias":"H-PIP","entrezGeneId":"9051"},{"alias":"PAPAS","entrezGeneId":"9051"},{"alias":"PSTPIP","entrezGeneId":"9051"},{"alias":"GPCR5A","entrezGeneId":"9052"},{"alias":"PEIG-1","entrezGeneId":"9052"},{"alias":"RAI3","entrezGeneId":"9052"},{"alias":"RAIG1","entrezGeneId":"9052"},{"alias":"TIG1","entrezGeneId":"9052"},{"alias":"E-MAP-115","entrezGeneId":"9053"},{"alias":"EMAP115","entrezGeneId":"9053"},{"alias":"HUSSY-08","entrezGeneId":"9054"},{"alias":"IscS","entrezGeneId":"9054"},{"alias":"NIFS","entrezGeneId":"9054"},{"alias":"ASE1","entrezGeneId":"9055"},{"alias":"LAT3","entrezGeneId":"9056"},{"alias":"LPI","entrezGeneId":"9056"},{"alias":"MOP-2","entrezGeneId":"9056"},{"alias":"y+LAT-1","entrezGeneId":"9056"},{"alias":"Y+LAT1","entrezGeneId":"9056"},{"alias":"LAT-2","entrezGeneId":"9057"},{"alias":"LAT3","entrezGeneId":"9057"},{"alias":"y+LAT-2","entrezGeneId":"9057"},{"alias":"NaCT","entrezGeneId":"9058"},{"alias":"NaDC-1","entrezGeneId":"9058"},{"alias":"NADC1","entrezGeneId":"9058"},{"alias":"SDCT1","entrezGeneId":"9058"},{"alias":"ATPSK2","entrezGeneId":"9060"},{"alias":"BCYM4","entrezGeneId":"9060"},{"alias":"SK2","entrezGeneId":"9060"},{"alias":"ATPSK1","entrezGeneId":"9061"},{"alias":"PAPSS","entrezGeneId":"9061"},{"alias":"SK1","entrezGeneId":"9061"},{"alias":"ARIP3","entrezGeneId":"9063"},{"alias":"DIP","entrezGeneId":"9063"},{"alias":"MIZ1","entrezGeneId":"9063"},{"alias":"PIASX","entrezGeneId":"9063"},{"alias":"SIZ2","entrezGeneId":"9063"},{"alias":"ZMIZ4","entrezGeneId":"9063"},{"alias":"ASK2","entrezGeneId":"9064"},{"alias":"MAPKKK6","entrezGeneId":"9064"},{"alias":"MEKK6","entrezGeneId":"9064"},{"alias":"IPCA-7","entrezGeneId":"9066"},{"alias":"IPCA7","entrezGeneId":"9066"},{"alias":"PCANAP7","entrezGeneId":"9066"},{"alias":"SYT-VII","entrezGeneId":"9066"},{"alias":"SYTVII","entrezGeneId":"9066"},{"alias":"ANG3","entrezGeneId":"9068"},{"alias":"ANGPT3","entrezGeneId":"9068"},{"alias":"AngY","entrezGeneId":"9068"},{"alias":"ARP1","entrezGeneId":"9068"},{"alias":"dJ595C2.2","entrezGeneId":"9068"},{"alias":"UNQ162","entrezGeneId":"9068"},{"alias":"ASH2","entrezGeneId":"9070"},{"alias":"ASH2L1","entrezGeneId":"9070"},{"alias":"ASH2L2","entrezGeneId":"9070"},{"alias":"Bre2","entrezGeneId":"9070"},{"alias":"CPETRL3","entrezGeneId":"9071"},{"alias":"HELIX","entrezGeneId":"9071"},{"alias":"OSP-L","entrezGeneId":"9071"},{"alias":"OSPL","entrezGeneId":"9071"},{"alias":"HEL-S-79","entrezGeneId":"9073"},{"alias":"CLD1","entrezGeneId":"9076"},{"alias":"ILVASC","entrezGeneId":"9076"},{"alias":"SEMP1","entrezGeneId":"9076"},{"alias":"ARHI","entrezGeneId":"9077"},{"alias":"NOEY2","entrezGeneId":"9077"},{"alias":"CLIM1","entrezGeneId":"9079"},{"alias":"LDB-2","entrezGeneId":"9079"},{"alias":"LDB1","entrezGeneId":"9079"},{"alias":"PRY1","entrezGeneId":"9081"},{"alias":"PTPN13LY","entrezGeneId":"9081"},{"alias":"XKRY1","entrezGeneId":"9082"},{"alias":"BPY2A","entrezGeneId":"9083"},{"alias":"VCY2","entrezGeneId":"9083"},{"alias":"VCY2A","entrezGeneId":"9083"},{"alias":"BPY1","entrezGeneId":"9084"},{"alias":"VCY1","entrezGeneId":"9084"},{"alias":"VCY1A","entrezGeneId":"9084"},{"alias":"CDY","entrezGeneId":"9085"},{"alias":"CDY1A","entrezGeneId":"9085"},{"alias":"eIF-4C","entrezGeneId":"9086"},{"alias":"TB4Y","entrezGeneId":"9087"},{"alias":"MYT1","entrezGeneId":"9088"},{"alias":"PPP1R126","entrezGeneId":"9088"},{"alias":"c407A10.1","entrezGeneId":"9091"},{"alias":"GPI1","entrezGeneId":"9091"},{"alias":"Ara1","entrezGeneId":"9092"},{"alias":"HAF","entrezGeneId":"9092"},{"alias":"HOMS1","entrezGeneId":"9092"},{"alias":"SART1259","entrezGeneId":"9092"},{"alias":"SNRNP110","entrezGeneId":"9092"},{"alias":"Snu66","entrezGeneId":"9092"},{"alias":"HCA57","entrezGeneId":"9093"},{"alias":"hTID-1","entrezGeneId":"9093"},{"alias":"TID1","entrezGeneId":"9093"},{"alias":"HRG4","entrezGeneId":"9094"},{"alias":"IMD13","entrezGeneId":"9094"},{"alias":"POC7","entrezGeneId":"9094"},{"alias":"POC7A","entrezGeneId":"9094"},{"alias":"dJ747L4.1","entrezGeneId":"9095"},{"alias":"TBS19","entrezGeneId":"9095"},{"alias":"TPIT","entrezGeneId":"9095"},{"alias":"CAKUT2","entrezGeneId":"9096"},{"alias":"TGT","entrezGeneId":"9097"},{"alias":"HRP1","entrezGeneId":"9098"},{"alias":"Tre-2","entrezGeneId":"9098"},{"alias":"TRE17","entrezGeneId":"9098"},{"alias":"TRE2","entrezGeneId":"9098"},{"alias":"TRESMCR","entrezGeneId":"9098"},{"alias":"USP6-short","entrezGeneId":"9098"},{"alias":"UBP41","entrezGeneId":"9099"},{"alias":"USP9","entrezGeneId":"9099"},{"alias":"UBPO","entrezGeneId":"9100"},{"alias":"HumORF8","entrezGeneId":"9101"},{"alias":"PITA4","entrezGeneId":"9101"},{"alias":"SPG59","entrezGeneId":"9101"},{"alias":"UBPY","entrezGeneId":"9101"},{"alias":"CD32","entrezGeneId":"9103"},{"alias":"CD32C","entrezGeneId":"9103"},{"alias":"CDW32","entrezGeneId":"9103"},{"alias":"FCG2","entrezGeneId":"9103"},{"alias":"FCRIIC","entrezGeneId":"9103"},{"alias":"IGFR2","entrezGeneId":"9103"},{"alias":"GNL","entrezGeneId":"9104"},{"alias":"HEL-S-41","entrezGeneId":"9104"},{"alias":"RC","entrezGeneId":"9104"},{"alias":"SMP30","entrezGeneId":"9104"},{"alias":"FYVE-DSP2","entrezGeneId":"9110"},{"alias":"ZFYVE11","entrezGeneId":"9110"},{"alias":"WARTS","entrezGeneId":"9113"},{"alias":"wts","entrezGeneId":"9113"},{"alias":"ATP6D","entrezGeneId":"9114"},{"alias":"ATP6DV","entrezGeneId":"9114"},{"alias":"P39","entrezGeneId":"9114"},{"alias":"VATX","entrezGeneId":"9114"},{"alias":"VMA6","entrezGeneId":"9114"},{"alias":"VPATPD","entrezGeneId":"9114"},{"alias":"SEC22L3","entrezGeneId":"9117"},{"alias":"NEF5","entrezGeneId":"9118"},{"alias":"NF-66","entrezGeneId":"9118"},{"alias":"TXBP-1","entrezGeneId":"9118"},{"alias":"K6HF","entrezGeneId":"9119"},{"alias":"KB18","entrezGeneId":"9119"},{"alias":"PFB","entrezGeneId":"9119"},{"alias":"MCT6","entrezGeneId":"9120"},{"alias":"MCT7","entrezGeneId":"9120"},{"alias":"MCT5","entrezGeneId":"9121"},{"alias":"MCT6","entrezGeneId":"9121"},{"alias":"MCT4","entrezGeneId":"9122"},{"alias":"MCT5","entrezGeneId":"9122"},{"alias":"MCT 3","entrezGeneId":"9123"},{"alias":"MCT 4","entrezGeneId":"9123"},{"alias":"MCT-3","entrezGeneId":"9123"},{"alias":"MCT-4","entrezGeneId":"9123"},{"alias":"MCT3","entrezGeneId":"9123"},{"alias":"MCT4","entrezGeneId":"9123"},{"alias":"CLIM1","entrezGeneId":"9124"},{"alias":"CLP-36","entrezGeneId":"9124"},{"alias":"CLP36","entrezGeneId":"9124"},{"alias":"hCLIM1","entrezGeneId":"9124"},{"alias":"HEL-S-112","entrezGeneId":"9124"},{"alias":"CAF40","entrezGeneId":"9125"},{"alias":"CT129","entrezGeneId":"9125"},{"alias":"RCD-1","entrezGeneId":"9125"},{"alias":"RCD1","entrezGeneId":"9125"},{"alias":"RQCD1","entrezGeneId":"9125"},{"alias":"BAM","entrezGeneId":"9126"},{"alias":"BMH","entrezGeneId":"9126"},{"alias":"CDLS3","entrezGeneId":"9126"},{"alias":"CSPG6","entrezGeneId":"9126"},{"alias":"HCAP","entrezGeneId":"9126"},{"alias":"SMC3L1","entrezGeneId":"9126"},{"alias":"P2RXL1","entrezGeneId":"9127"},{"alias":"P2X6","entrezGeneId":"9127"},{"alias":"P2XM","entrezGeneId":"9127"},{"alias":"HPRP4","entrezGeneId":"9128"},{"alias":"HPRP4P","entrezGeneId":"9128"},{"alias":"PRP4","entrezGeneId":"9128"},{"alias":"Prp4p","entrezGeneId":"9128"},{"alias":"RP70","entrezGeneId":"9128"},{"alias":"SNRNP60","entrezGeneId":"9128"},{"alias":"HPRP3","entrezGeneId":"9129"},{"alias":"HPRP3P","entrezGeneId":"9129"},{"alias":"PRP3","entrezGeneId":"9129"},{"alias":"Prp3p","entrezGeneId":"9129"},{"alias":"RP18","entrezGeneId":"9129"},{"alias":"SNRNP90","entrezGeneId":"9129"},{"alias":"9F","entrezGeneId":"9130"},{"alias":"DXS9928E","entrezGeneId":"9130"},{"alias":"HXC-26","entrezGeneId":"9130"},{"alias":"HXC26","entrezGeneId":"9130"},{"alias":"XAP5","entrezGeneId":"9130"},{"alias":"AIF","entrezGeneId":"9131"},{"alias":"CMT2D","entrezGeneId":"9131"},{"alias":"CMTX4","entrezGeneId":"9131"},{"alias":"COWCK","entrezGeneId":"9131"},{"alias":"COXPD6","entrezGeneId":"9131"},{"alias":"DFNX5","entrezGeneId":"9131"},{"alias":"NADMR","entrezGeneId":"9131"},{"alias":"NAMSD","entrezGeneId":"9131"},{"alias":"PDCD8","entrezGeneId":"9131"},{"alias":"DFNA2","entrezGeneId":"9132"},{"alias":"DFNA2A","entrezGeneId":"9132"},{"alias":"KV7.4","entrezGeneId":"9132"},{"alias":"HsT17299","entrezGeneId":"9133"},{"alias":"CYCE2","entrezGeneId":"9134"},{"alias":"RAB5EP","entrezGeneId":"9135"},{"alias":"RABPT5","entrezGeneId":"9135"},{"alias":"RNU3IP2","entrezGeneId":"9136"},{"alias":"U3-55K","entrezGeneId":"9136"},{"alias":"GEF1","entrezGeneId":"9138"},{"alias":"LBCL2","entrezGeneId":"9138"},{"alias":"LSC","entrezGeneId":"9138"},{"alias":"P115-RHOGEF","entrezGeneId":"9138"},{"alias":"SUB1.5","entrezGeneId":"9138"},{"alias":"EHT","entrezGeneId":"9139"},{"alias":"MTGR1","entrezGeneId":"9139"},{"alias":"p85","entrezGeneId":"9139"},{"alias":"ZMYND3","entrezGeneId":"9139"},{"alias":"APG12","entrezGeneId":"9140"},{"alias":"APG12L","entrezGeneId":"9140"},{"alias":"FBR93","entrezGeneId":"9140"},{"alias":"HAPG12","entrezGeneId":"9140"},{"alias":"TFAR19","entrezGeneId":"9141"},{"alias":"HRS","entrezGeneId":"9146"},{"alias":"NY-CO-1","entrezGeneId":"9147"},{"alias":"SDCCAG1","entrezGeneId":"9147"},{"alias":"bA416N2.1","entrezGeneId":"9148"},{"alias":"neu","entrezGeneId":"9148"},{"alias":"neu-1","entrezGeneId":"9148"},{"alias":"NEUR1","entrezGeneId":"9148"},{"alias":"NEURL","entrezGeneId":"9148"},{"alias":"RNF67","entrezGeneId":"9148"},{"alias":"AOMS3","entrezGeneId":"9149"},{"alias":"MIRK","entrezGeneId":"9149"},{"alias":"CCFDN","entrezGeneId":"9150"},{"alias":"FCP1","entrezGeneId":"9150"},{"alias":"GLYT-2","entrezGeneId":"9152"},{"alias":"GLYT2","entrezGeneId":"9152"},{"alias":"HKPX3","entrezGeneId":"9152"},{"alias":"NET1","entrezGeneId":"9152"},{"alias":"CNT2","entrezGeneId":"9153"},{"alias":"HCNT2","entrezGeneId":"9153"},{"alias":"HsT17153","entrezGeneId":"9153"},{"alias":"SPNT1","entrezGeneId":"9153"},{"alias":"CNT1","entrezGeneId":"9154"},{"alias":"HCNT1","entrezGeneId":"9154"},{"alias":"HEX1","entrezGeneId":"9156"},{"alias":"hExoI","entrezGeneId":"9156"},{"alias":"FGFIBP","entrezGeneId":"9158"},{"alias":"FIBP-1","entrezGeneId":"9158"},{"alias":"TROFAS","entrezGeneId":"9158"},{"alias":"LPC","entrezGeneId":"9159"},{"alias":"PC7","entrezGeneId":"9159"},{"alias":"PC8","entrezGeneId":"9159"},{"alias":"SPC7","entrezGeneId":"9159"},{"alias":"DGK-IOTA","entrezGeneId":"9162"},{"alias":"AMLCR","entrezGeneId":"9163"},{"alias":"EB9","entrezGeneId":"9166"},{"alias":"PDAF","entrezGeneId":"9166"},{"alias":"COX7AR","entrezGeneId":"9167"},{"alias":"COX7RP","entrezGeneId":"9167"},{"alias":"EB1","entrezGeneId":"9167"},{"alias":"SIG81","entrezGeneId":"9167"},{"alias":"MIG12","entrezGeneId":"9168"},{"alias":"TB10","entrezGeneId":"9168"},{"alias":"CASP11","entrezGeneId":"9169"},{"alias":"SFRS2IP","entrezGeneId":"9169"},{"alias":"SIP1","entrezGeneId":"9169"},{"alias":"SRRP129","entrezGeneId":"9169"},{"alias":"SRSF2IP","entrezGeneId":"9169"},{"alias":"EDG-4","entrezGeneId":"9170"},{"alias":"EDG4","entrezGeneId":"9170"},{"alias":"LPA-2","entrezGeneId":"9170"},{"alias":"LPA2","entrezGeneId":"9170"},{"alias":"TTNAP","entrezGeneId":"9172"},{"alias":"DER4","entrezGeneId":"9173"},{"alias":"FIT-1","entrezGeneId":"9173"},{"alias":"IL33R","entrezGeneId":"9173"},{"alias":"ST2","entrezGeneId":"9173"},{"alias":"ST2L","entrezGeneId":"9173"},{"alias":"ST2V","entrezGeneId":"9173"},{"alias":"T1","entrezGeneId":"9173"},{"alias":"LZK","entrezGeneId":"9175"},{"alias":"MEKK13","entrezGeneId":"9175"},{"alias":"MLK","entrezGeneId":"9175"},{"alias":"5-HT3B","entrezGeneId":"9177"},{"alias":"CPSQ3","entrezGeneId":"9179"},{"alias":"MU-4","entrezGeneId":"9179"},{"alias":"MU-ARP2","entrezGeneId":"9179"},{"alias":"SPG50","entrezGeneId":"9179"},{"alias":"IL-31R-beta","entrezGeneId":"9180"},{"alias":"IL-31RB","entrezGeneId":"9180"},{"alias":"OSMRB","entrezGeneId":"9180"},{"alias":"PLCA1","entrezGeneId":"9180"},{"alias":"GEF","entrezGeneId":"9181"},{"alias":"GEF-H1","entrezGeneId":"9181"},{"alias":"GEFH1","entrezGeneId":"9181"},{"alias":"LFP40","entrezGeneId":"9181"},{"alias":"NEDMHM","entrezGeneId":"9181"},{"alias":"P40","entrezGeneId":"9181"},{"alias":"P-CIP1","entrezGeneId":"9182"},{"alias":"PAMCI","entrezGeneId":"9182"},{"alias":"PCIP1","entrezGeneId":"9182"},{"alias":"HZW10","entrezGeneId":"9183"},{"alias":"KNTC1AP","entrezGeneId":"9183"},{"alias":"BUB3L","entrezGeneId":"9184"},{"alias":"hBUB3","entrezGeneId":"9184"},{"alias":"POB1","entrezGeneId":"9185"},{"alias":"CSNB1D","entrezGeneId":"9187"},{"alias":"HsT17412","entrezGeneId":"9187"},{"alias":"NCKX","entrezGeneId":"9187"},{"alias":"NCKX1","entrezGeneId":"9187"},{"alias":"RODX","entrezGeneId":"9187"},{"alias":"GUA","entrezGeneId":"9188"},{"alias":"GURDB","entrezGeneId":"9188"},{"alias":"RH-II/GU","entrezGeneId":"9188"},{"alias":"RH-II/GuA","entrezGeneId":"9188"},{"alias":"ALTE","entrezGeneId":"9189"},{"alias":"DREF","entrezGeneId":"9189"},{"alias":"hDREF","entrezGeneId":"9189"},{"alias":"TRAMP","entrezGeneId":"9189"},{"alias":"CASP8IP1","entrezGeneId":"9191"},{"alias":"DEDD1","entrezGeneId":"9191"},{"alias":"DEFT","entrezGeneId":"9191"},{"alias":"FLDED1","entrezGeneId":"9191"},{"alias":"KE05","entrezGeneId":"9191"},{"alias":"MCT2","entrezGeneId":"9194"},{"alias":"AKR6A9","entrezGeneId":"9196"},{"alias":"KCNA3.1B","entrezGeneId":"9196"},{"alias":"KCNA3B","entrezGeneId":"9196"},{"alias":"KV-BETA-3","entrezGeneId":"9196"},{"alias":"ACATN","entrezGeneId":"9197"},{"alias":"AT-1","entrezGeneId":"9197"},{"alias":"AT1","entrezGeneId":"9197"},{"alias":"CCHLND","entrezGeneId":"9197"},{"alias":"SPG42","entrezGeneId":"9197"},{"alias":"CAP","entrezGeneId":"9200"},{"alias":"PTPLA","entrezGeneId":"9200"},{"alias":"CL1","entrezGeneId":"9201"},{"alias":"CLICK1","entrezGeneId":"9201"},{"alias":"DCAMKL1","entrezGeneId":"9201"},{"alias":"DCDC3A","entrezGeneId":"9201"},{"alias":"DCLK","entrezGeneId":"9201"},{"alias":"CDIR","entrezGeneId":"9202"},{"alias":"MYM","entrezGeneId":"9202"},{"alias":"ZNF198L3","entrezGeneId":"9202"},{"alias":"ZNF262","entrezGeneId":"9202"},{"alias":"DXS6673E","entrezGeneId":"9203"},{"alias":"MYM","entrezGeneId":"9203"},{"alias":"XFIM","entrezGeneId":"9203"},{"alias":"ZNF198L2","entrezGeneId":"9203"},{"alias":"ZNF261","entrezGeneId":"9203"},{"alias":"Buster2","entrezGeneId":"9204"},{"alias":"MYM","entrezGeneId":"9204"},{"alias":"ZBED7","entrezGeneId":"9204"},{"alias":"ZNF198L4","entrezGeneId":"9204"},{"alias":"ZNF258","entrezGeneId":"9204"},{"alias":"HSPC050","entrezGeneId":"9205"},{"alias":"MYM","entrezGeneId":"9205"},{"alias":"ZNF198L1","entrezGeneId":"9205"},{"alias":"ZNF237","entrezGeneId":"9205"},{"alias":"HRAD17P2","entrezGeneId":"9206"},{"alias":"HRAD17P1","entrezGeneId":"9207"},{"alias":"FLAP-1","entrezGeneId":"9208"},{"alias":"FLAP1","entrezGeneId":"9208"},{"alias":"FLIIAP1","entrezGeneId":"9208"},{"alias":"GCF-2","entrezGeneId":"9208"},{"alias":"GCF2","entrezGeneId":"9208"},{"alias":"HUFI-1","entrezGeneId":"9208"},{"alias":"TRIP","entrezGeneId":"9208"},{"alias":"HUFI-2","entrezGeneId":"9209"},{"alias":"GDF9B","entrezGeneId":"9210"},{"alias":"ODG2","entrezGeneId":"9210"},{"alias":"POF4","entrezGeneId":"9210"},{"alias":"ADLTE","entrezGeneId":"9211"},{"alias":"ADPAEF","entrezGeneId":"9211"},{"alias":"ADPEAF","entrezGeneId":"9211"},{"alias":"EPITEMPIN","entrezGeneId":"9211"},{"alias":"EPT","entrezGeneId":"9211"},{"alias":"ETL1","entrezGeneId":"9211"},{"alias":"IB1099","entrezGeneId":"9211"},{"alias":"AIK2","entrezGeneId":"9212"},{"alias":"AIM-1","entrezGeneId":"9212"},{"alias":"AIM1","entrezGeneId":"9212"},{"alias":"ARK-2","entrezGeneId":"9212"},{"alias":"ARK2","entrezGeneId":"9212"},{"alias":"AurB","entrezGeneId":"9212"},{"alias":"aurkb-sv1","entrezGeneId":"9212"},{"alias":"aurkb-sv2","entrezGeneId":"9212"},{"alias":"IPL1","entrezGeneId":"9212"},{"alias":"PPP1R48","entrezGeneId":"9212"},{"alias":"STK-1","entrezGeneId":"9212"},{"alias":"STK12","entrezGeneId":"9212"},{"alias":"STK5","entrezGeneId":"9212"},{"alias":"IBGC6","entrezGeneId":"9213"},{"alias":"SLC53A1","entrezGeneId":"9213"},{"alias":"SYG1","entrezGeneId":"9213"},{"alias":"X3","entrezGeneId":"9213"},{"alias":"FAIM3","entrezGeneId":"9214"},{"alias":"TOSO","entrezGeneId":"9214"},{"alias":"LARGE","entrezGeneId":"9215"},{"alias":"MDC1D","entrezGeneId":"9215"},{"alias":"MDDGA6","entrezGeneId":"9215"},{"alias":"MDDGB6","entrezGeneId":"9215"},{"alias":"ALS8","entrezGeneId":"9217"},{"alias":"VAMP-B","entrezGeneId":"9217"},{"alias":"VAP-B","entrezGeneId":"9217"},{"alias":"hVAP-33","entrezGeneId":"9218"},{"alias":"VAP-33","entrezGeneId":"9218"},{"alias":"VAP-A","entrezGeneId":"9218"},{"alias":"VAP33","entrezGeneId":"9218"},{"alias":"MTA1L1","entrezGeneId":"9219"},{"alias":"PID","entrezGeneId":"9219"},{"alias":"MAJN","entrezGeneId":"9220"},{"alias":"SPR210","entrezGeneId":"9220"},{"alias":"NOPP130","entrezGeneId":"9221"},{"alias":"NOPP140","entrezGeneId":"9221"},{"alias":"NS5ATP13","entrezGeneId":"9221"},{"alias":"P130","entrezGeneId":"9221"},{"alias":"AIP-3","entrezGeneId":"9223"},{"alias":"AIP3","entrezGeneId":"9223"},{"alias":"BAIAP1","entrezGeneId":"9223"},{"alias":"BAP-1","entrezGeneId":"9223"},{"alias":"BAP1","entrezGeneId":"9223"},{"alias":"MAGI-1","entrezGeneId":"9223"},{"alias":"Magi1d","entrezGeneId":"9223"},{"alias":"TNRC19","entrezGeneId":"9223"},{"alias":"WWP3","entrezGeneId":"9223"},{"alias":"LCA14","entrezGeneId":"9227"},{"alias":"C8orf68","entrezGeneId":"9228"},{"alias":"DAP2","entrezGeneId":"9228"},{"alias":"ERICH1-AS1","entrezGeneId":"9228"},{"alias":"SAPAP2","entrezGeneId":"9228"},{"alias":"DAP-1","entrezGeneId":"9229"},{"alias":"DAP-1-ALPHA","entrezGeneId":"9229"},{"alias":"DAP-1-BETA","entrezGeneId":"9229"},{"alias":"DAP1","entrezGeneId":"9229"},{"alias":"DLGAP1A","entrezGeneId":"9229"},{"alias":"DLGAP1B","entrezGeneId":"9229"},{"alias":"GKAP","entrezGeneId":"9229"},{"alias":"SAPAP1","entrezGeneId":"9229"},{"alias":"H-YPT3","entrezGeneId":"9230"},{"alias":"NDAGSCW","entrezGeneId":"9230"},{"alias":"LP-DLG","entrezGeneId":"9231"},{"alias":"P-DLG5","entrezGeneId":"9231"},{"alias":"PDLG","entrezGeneId":"9231"},{"alias":"EAP1","entrezGeneId":"9232"},{"alias":"HPTTG","entrezGeneId":"9232"},{"alias":"PTTG","entrezGeneId":"9232"},{"alias":"TUTR1","entrezGeneId":"9232"},{"alias":"IL-32alpha","entrezGeneId":"9235"},{"alias":"IL-32beta","entrezGeneId":"9235"},{"alias":"IL-32delta","entrezGeneId":"9235"},{"alias":"IL-32gamma","entrezGeneId":"9235"},{"alias":"NK4","entrezGeneId":"9235"},{"alias":"TAIF","entrezGeneId":"9235"},{"alias":"TAIFa","entrezGeneId":"9235"},{"alias":"TAIFb","entrezGeneId":"9235"},{"alias":"TAIFc","entrezGeneId":"9235"},{"alias":"TAIFd","entrezGeneId":"9235"},{"alias":"CPR8","entrezGeneId":"9236"},{"alias":"CPR2","entrezGeneId":"9238"},{"alias":"FASTKD4","entrezGeneId":"9238"},{"alias":"MA1","entrezGeneId":"9240"},{"alias":"SYM1","entrezGeneId":"9241"},{"alias":"SYNS1","entrezGeneId":"9241"},{"alias":"SYNS1A","entrezGeneId":"9241"},{"alias":"ABF-1","entrezGeneId":"9242"},{"alias":"ABF1","entrezGeneId":"9242"},{"alias":"bHLHa22","entrezGeneId":"9242"},{"alias":"MYOR","entrezGeneId":"9242"},{"alias":"CISS","entrezGeneId":"9244"},{"alias":"CISS1","entrezGeneId":"9244"},{"alias":"CLF","entrezGeneId":"9244"},{"alias":"CLF-1","entrezGeneId":"9244"},{"alias":"NR6","entrezGeneId":"9244"},{"alias":"zcytor5","entrezGeneId":"9244"},{"alias":"C2/4GnT","entrezGeneId":"9245"},{"alias":"C24GNT","entrezGeneId":"9245"},{"alias":"C2GNT2","entrezGeneId":"9245"},{"alias":"C2GNTM","entrezGeneId":"9245"},{"alias":"GNTM","entrezGeneId":"9245"},{"alias":"RIG-B","entrezGeneId":"9246"},{"alias":"UBCH8","entrezGeneId":"9246"},{"alias":"GCMB","entrezGeneId":"9247"},{"alias":"hGCMb","entrezGeneId":"9247"},{"alias":"HRPT4","entrezGeneId":"9247"},{"alias":"H9","entrezGeneId":"9248"},{"alias":"Mel1c","entrezGeneId":"9248"},{"alias":"DD83.1","entrezGeneId":"9249"},{"alias":"RDH17","entrezGeneId":"9249"},{"alias":"retSDR1","entrezGeneId":"9249"},{"alias":"Rsdr1","entrezGeneId":"9249"},{"alias":"SDR1","entrezGeneId":"9249"},{"alias":"SDR16C1","entrezGeneId":"9249"},{"alias":"MSK1","entrezGeneId":"9252"},{"alias":"MSPK1","entrezGeneId":"9252"},{"alias":"RLPK","entrezGeneId":"9252"},{"alias":"CAG3A","entrezGeneId":"9253"},{"alias":"CTG3a","entrezGeneId":"9253"},{"alias":"NBL","entrezGeneId":"9253"},{"alias":"NUMB-R","entrezGeneId":"9253"},{"alias":"NUMBLIKE","entrezGeneId":"9253"},{"alias":"NUMBR","entrezGeneId":"9253"},{"alias":"TNRC23","entrezGeneId":"9253"},{"alias":"CACNA2D","entrezGeneId":"9254"},{"alias":"EMAP2","entrezGeneId":"9255"},{"alias":"EMAPII","entrezGeneId":"9255"},{"alias":"HLD3","entrezGeneId":"9255"},{"alias":"p43","entrezGeneId":"9255"},{"alias":"SCYE1","entrezGeneId":"9255"},{"alias":"BZRAP1","entrezGeneId":"9256"},{"alias":"PBR-IP","entrezGeneId":"9256"},{"alias":"PRAX-1","entrezGeneId":"9256"},{"alias":"PRAX1","entrezGeneId":"9256"},{"alias":"RIM-BP1","entrezGeneId":"9256"},{"alias":"RIMBP1","entrezGeneId":"9256"},{"alias":"LRRC65","entrezGeneId":"9258"},{"alias":"MASL1","entrezGeneId":"9258"},{"alias":"ROCO4","entrezGeneId":"9258"},{"alias":"LMP1","entrezGeneId":"9260"},{"alias":"LMP3","entrezGeneId":"9260"},{"alias":"MAPKAP-K2","entrezGeneId":"9261"},{"alias":"MK-2","entrezGeneId":"9261"},{"alias":"MK2","entrezGeneId":"9261"},{"alias":"DRAK2","entrezGeneId":"9262"},{"alias":"DRAK1","entrezGeneId":"9263"},{"alias":"ARNO3","entrezGeneId":"9265"},{"alias":"cytohesin-3","entrezGeneId":"9265"},{"alias":"GRP1","entrezGeneId":"9265"},{"alias":"PSCD3","entrezGeneId":"9265"},{"alias":"ARNO","entrezGeneId":"9266"},{"alias":"CTS18","entrezGeneId":"9266"},{"alias":"CTS18.1","entrezGeneId":"9266"},{"alias":"cytohesin-2","entrezGeneId":"9266"},{"alias":"PSCD2","entrezGeneId":"9266"},{"alias":"PSCD2L","entrezGeneId":"9266"},{"alias":"SEC7L","entrezGeneId":"9266"},{"alias":"Sec7p-L","entrezGeneId":"9266"},{"alias":"Sec7p-like","entrezGeneId":"9266"},{"alias":"B2-1","entrezGeneId":"9267"},{"alias":"CYTOHESIN-1","entrezGeneId":"9267"},{"alias":"D17S811E","entrezGeneId":"9267"},{"alias":"PSCD1","entrezGeneId":"9267"},{"alias":"SEC7","entrezGeneId":"9267"},{"alias":"ICAP-1A","entrezGeneId":"9270"},{"alias":"ICAP-1alpha","entrezGeneId":"9270"},{"alias":"ICAP-1B","entrezGeneId":"9270"},{"alias":"ICAP1","entrezGeneId":"9270"},{"alias":"ICAP1A","entrezGeneId":"9270"},{"alias":"ICAP1B","entrezGeneId":"9270"},{"alias":"CT80.1","entrezGeneId":"9271"},{"alias":"HIWI","entrezGeneId":"9271"},{"alias":"MIWI","entrezGeneId":"9271"},{"alias":"PIWI","entrezGeneId":"9271"},{"alias":"beta'-COP","entrezGeneId":"9276"},{"alias":"MCPH19","entrezGeneId":"9276"},{"alias":"BING4","entrezGeneId":"9277"},{"alias":"C6orf11","entrezGeneId":"9277"},{"alias":"FP221","entrezGeneId":"9277"},{"alias":"UTP7","entrezGeneId":"9277"},{"alias":"BING1","entrezGeneId":"9278"},{"alias":"fru","entrezGeneId":"9278"},{"alias":"fruitless","entrezGeneId":"9278"},{"alias":"ZBTB22A","entrezGeneId":"9278"},{"alias":"ZNF297","entrezGeneId":"9278"},{"alias":"ZNF297A","entrezGeneId":"9278"},{"alias":"CRSP150","entrezGeneId":"9282"},{"alias":"CRSP2","entrezGeneId":"9282"},{"alias":"CSRP","entrezGeneId":"9282"},{"alias":"CXorf4","entrezGeneId":"9282"},{"alias":"DRIP150","entrezGeneId":"9282"},{"alias":"EXLM1","entrezGeneId":"9282"},{"alias":"RGR1","entrezGeneId":"9282"},{"alias":"TRAP170","entrezGeneId":"9282"},{"alias":"ET(B)R-LP-2","entrezGeneId":"9283"},{"alias":"ETBR-LP-2","entrezGeneId":"9283"},{"alias":"ETBRLP2","entrezGeneId":"9283"},{"alias":"morpheus","entrezGeneId":"9284"},{"alias":"NPIP","entrezGeneId":"9284"},{"alias":"NPIPA","entrezGeneId":"9284"},{"alias":"GPR58","entrezGeneId":"9287"},{"alias":"taR-2","entrezGeneId":"9287"},{"alias":"GPR57","entrezGeneId":"9288"},{"alias":"GPR58","entrezGeneId":"9288"},{"alias":"TAAR2","entrezGeneId":"9288"},{"alias":"TAAR3","entrezGeneId":"9288"},{"alias":"BFPP","entrezGeneId":"9289"},{"alias":"BPPR","entrezGeneId":"9289"},{"alias":"GPR56","entrezGeneId":"9289"},{"alias":"TM7LN4","entrezGeneId":"9289"},{"alias":"TM7XN1","entrezGeneId":"9289"},{"alias":"LPIR1","entrezGeneId":"9290"},{"alias":"dJ271M21.8","entrezGeneId":"9292"},{"alias":"PsiGPR53","entrezGeneId":"9292"},{"alias":"AGR16","entrezGeneId":"9294"},{"alias":"DFNB68","entrezGeneId":"9294"},{"alias":"EDG-5","entrezGeneId":"9294"},{"alias":"EDG5","entrezGeneId":"9294"},{"alias":"Gpcr13","entrezGeneId":"9294"},{"alias":"H218","entrezGeneId":"9294"},{"alias":"LPB2","entrezGeneId":"9294"},{"alias":"S1P2","entrezGeneId":"9294"},{"alias":"dJ677H15.2","entrezGeneId":"9295"},{"alias":"NET2","entrezGeneId":"9295"},{"alias":"p54","entrezGeneId":"9295"},{"alias":"SFRS11","entrezGeneId":"9295"},{"alias":"ATP6S14","entrezGeneId":"9296"},{"alias":"VATF","entrezGeneId":"9296"},{"alias":"Vma7","entrezGeneId":"9296"},{"alias":"RNU29","entrezGeneId":"9297"},{"alias":"U29","entrezGeneId":"9297"},{"alias":"RNU31","entrezGeneId":"9298"},{"alias":"SNORD31A","entrezGeneId":"9298"},{"alias":"U31","entrezGeneId":"9298"},{"alias":"RNU30","entrezGeneId":"9299"},{"alias":"U30","entrezGeneId":"9299"},{"alias":"RNU28","entrezGeneId":"9300"},{"alias":"SNORD28A","entrezGeneId":"9300"},{"alias":"U28","entrezGeneId":"9300"},{"alias":"RNU27","entrezGeneId":"9301"},{"alias":"U27","entrezGeneId":"9301"},{"alias":"RNU26","entrezGeneId":"9302"},{"alias":"U26","entrezGeneId":"9302"},{"alias":"RNU25","entrezGeneId":"9303"},{"alias":"U25","entrezGeneId":"9303"},{"alias":"RNU22","entrezGeneId":"9304"},{"alias":"U22","entrezGeneId":"9304"},{"alias":"CIS-4","entrezGeneId":"9306"},{"alias":"CIS4","entrezGeneId":"9306"},{"alias":"HSPC060","entrezGeneId":"9306"},{"alias":"SOCS-4","entrezGeneId":"9306"},{"alias":"SOCS-6","entrezGeneId":"9306"},{"alias":"SOCS4","entrezGeneId":"9306"},{"alias":"SSI4","entrezGeneId":"9306"},{"alias":"STAI4","entrezGeneId":"9306"},{"alias":"STATI4","entrezGeneId":"9306"},{"alias":"BL11","entrezGeneId":"9308"},{"alias":"HB15","entrezGeneId":"9308"},{"alias":"ANF270","entrezGeneId":"9310"},{"alias":"HZF6","entrezGeneId":"9310"},{"alias":"ZFP93","entrezGeneId":"9310"},{"alias":"ZNF270","entrezGeneId":"9310"},{"alias":"ACCN3","entrezGeneId":"9311"},{"alias":"DRASIC","entrezGeneId":"9311"},{"alias":"SLNAC1","entrezGeneId":"9311"},{"alias":"TNaC1","entrezGeneId":"9311"},{"alias":"KV2.2","entrezGeneId":"9312"},{"alias":"AI2A2","entrezGeneId":"9313"},{"alias":"MMP-20","entrezGeneId":"9313"},{"alias":"EZF","entrezGeneId":"9314"},{"alias":"GKLF","entrezGeneId":"9314"},{"alias":"C5orf13","entrezGeneId":"9315"},{"alias":"D4S114","entrezGeneId":"9315"},{"alias":"P311","entrezGeneId":"9315"},{"alias":"PRO1873","entrezGeneId":"9315"},{"alias":"PTZ17","entrezGeneId":"9315"},{"alias":"SEZ17","entrezGeneId":"9315"},{"alias":"HPHRP","entrezGeneId":"9317"},{"alias":"RPR-1","entrezGeneId":"9317"},{"alias":"ALIEN","entrezGeneId":"9318"},{"alias":"CSN2","entrezGeneId":"9318"},{"alias":"SGN2","entrezGeneId":"9318"},{"alias":"TRIP15","entrezGeneId":"9318"},{"alias":"16E1BP","entrezGeneId":"9319"},{"alias":"MVA3","entrezGeneId":"9319"},{"alias":"MRD49","entrezGeneId":"9320"},{"alias":"TRIP-12","entrezGeneId":"9320"},{"alias":"ULF","entrezGeneId":"9320"},{"alias":"ACG1A","entrezGeneId":"9321"},{"alias":"CEV14","entrezGeneId":"9321"},{"alias":"GMAP-210","entrezGeneId":"9321"},{"alias":"GMAP210","entrezGeneId":"9321"},{"alias":"TRIP-11","entrezGeneId":"9321"},{"alias":"TRIP230","entrezGeneId":"9321"},{"alias":"CIP4","entrezGeneId":"9322"},{"alias":"HSTP","entrezGeneId":"9322"},{"alias":"STOT","entrezGeneId":"9322"},{"alias":"STP","entrezGeneId":"9322"},{"alias":"TRIP-10","entrezGeneId":"9322"},{"alias":"PNAS-24","entrezGeneId":"9324"},{"alias":"PNAS-25","entrezGeneId":"9324"},{"alias":"TRIP7","entrezGeneId":"9324"},{"alias":"ASC-1","entrezGeneId":"9325"},{"alias":"ASC1","entrezGeneId":"9325"},{"alias":"HsT17391","entrezGeneId":"9325"},{"alias":"MDCDC","entrezGeneId":"9325"},{"alias":"SMABF1","entrezGeneId":"9325"},{"alias":"ZC2HC5","entrezGeneId":"9325"},{"alias":"PEHO","entrezGeneId":"9326"},{"alias":"TRIP3","entrezGeneId":"9326"},{"alias":"TFiiiC2-63","entrezGeneId":"9328"},{"alias":"TFIIIC63","entrezGeneId":"9328"},{"alias":"TFIIICepsilon","entrezGeneId":"9328"},{"alias":"KAT12","entrezGeneId":"9329"},{"alias":"TF3C-delta","entrezGeneId":"9329"},{"alias":"TFIII90","entrezGeneId":"9329"},{"alias":"TFIIIC290","entrezGeneId":"9329"},{"alias":"TFIIIC90","entrezGeneId":"9329"},{"alias":"TFIIICDELTA","entrezGeneId":"9329"},{"alias":"TFIIIC102","entrezGeneId":"9330"},{"alias":"TFiiiC2-102","entrezGeneId":"9330"},{"alias":"TFIIICgamma","entrezGeneId":"9330"},{"alias":"B4Gal-T6","entrezGeneId":"9331"},{"alias":"beta4Gal-T6","entrezGeneId":"9331"},{"alias":"M130","entrezGeneId":"9332"},{"alias":"MM130","entrezGeneId":"9332"},{"alias":"SCARI1","entrezGeneId":"9332"},{"alias":"PSS2","entrezGeneId":"9333"},{"alias":"TGASE5","entrezGeneId":"9333"},{"alias":"TGASEX","entrezGeneId":"9333"},{"alias":"TGM6","entrezGeneId":"9333"},{"alias":"TGMX","entrezGeneId":"9333"},{"alias":"TGX","entrezGeneId":"9333"},{"alias":"B4Gal-T5","entrezGeneId":"9334"},{"alias":"BETA4-GALT-IV","entrezGeneId":"9334"},{"alias":"beta4Gal-T5","entrezGeneId":"9334"},{"alias":"beta4GalT-V","entrezGeneId":"9334"},{"alias":"gt-V","entrezGeneId":"9334"},{"alias":"CAF1","entrezGeneId":"9337"},{"alias":"Caf1b","entrezGeneId":"9337"},{"alias":"CALIF","entrezGeneId":"9337"},{"alias":"hCAF1","entrezGeneId":"9337"},{"alias":"POP2","entrezGeneId":"9337"},{"alias":"p21","entrezGeneId":"9338"},{"alias":"pp21","entrezGeneId":"9338"},{"alias":"SIIR","entrezGeneId":"9338"},{"alias":"WEX9","entrezGeneId":"9338"},{"alias":"CEB","entrezGeneId":"9341"},{"alias":"CEDNIK","entrezGeneId":"9342"},{"alias":"SNAP-29","entrezGeneId":"9342"},{"alias":"MFDGA","entrezGeneId":"9343"},{"alias":"MFDM","entrezGeneId":"9343"},{"alias":"SNRNP116","entrezGeneId":"9343"},{"alias":"Snrp116","entrezGeneId":"9343"},{"alias":"Snu114","entrezGeneId":"9343"},{"alias":"U5-116KD","entrezGeneId":"9343"},{"alias":"MAP3K17","entrezGeneId":"9344"},{"alias":"PSK","entrezGeneId":"9344"},{"alias":"PSK1","entrezGeneId":"9344"},{"alias":"PSK1-BETA","entrezGeneId":"9344"},{"alias":"TAO1","entrezGeneId":"9344"},{"alias":"TAO2","entrezGeneId":"9344"},{"alias":"HSST3","entrezGeneId":"9348"},{"alias":"L23","entrezGeneId":"9349"},{"alias":"rpL17","entrezGeneId":"9349"},{"alias":"DAND4","entrezGeneId":"9350"},{"alias":"E3KARP","entrezGeneId":"9351"},{"alias":"NHE3RF2","entrezGeneId":"9351"},{"alias":"NHERF-2","entrezGeneId":"9351"},{"alias":"NHERF2","entrezGeneId":"9351"},{"alias":"OCTS2","entrezGeneId":"9351"},{"alias":"SIP-1","entrezGeneId":"9351"},{"alias":"SIP1","entrezGeneId":"9351"},{"alias":"TKA-1","entrezGeneId":"9351"},{"alias":"HEL-S-114","entrezGeneId":"9352"},{"alias":"TRP32","entrezGeneId":"9352"},{"alias":"Txl","entrezGeneId":"9352"},{"alias":"TXL-1","entrezGeneId":"9352"},{"alias":"TXNL","entrezGeneId":"9352"},{"alias":"SLIL3","entrezGeneId":"9353"},{"alias":"Slit-2","entrezGeneId":"9353"},{"alias":"E4","entrezGeneId":"9354"},{"alias":"UBOX2","entrezGeneId":"9354"},{"alias":"UFD2","entrezGeneId":"9354"},{"alias":"hLhx2","entrezGeneId":"9355"},{"alias":"LH2","entrezGeneId":"9355"},{"alias":"HOAT1","entrezGeneId":"9356"},{"alias":"OAT1","entrezGeneId":"9356"},{"alias":"PAHT","entrezGeneId":"9356"},{"alias":"ROAT1","entrezGeneId":"9356"},{"alias":"OSCP","entrezGeneId":"9358"},{"alias":"TIED","entrezGeneId":"9358"},{"alias":"CARS-Cyp","entrezGeneId":"9360"},{"alias":"CYP","entrezGeneId":"9360"},{"alias":"SCAF10","entrezGeneId":"9360"},{"alias":"SRCyp","entrezGeneId":"9360"},{"alias":"CODASS","entrezGeneId":"9361"},{"alias":"hLON","entrezGeneId":"9361"},{"alias":"LON","entrezGeneId":"9361"},{"alias":"LonHS","entrezGeneId":"9361"},{"alias":"LONP","entrezGeneId":"9361"},{"alias":"PIM1","entrezGeneId":"9361"},{"alias":"PRSS15","entrezGeneId":"9361"},{"alias":"RabS10","entrezGeneId":"9363"},{"alias":"CORD18","entrezGeneId":"9364"},{"alias":"RAB9P1","entrezGeneId":"9366"},{"alias":"RAB9","entrezGeneId":"9367"},{"alias":"EBP50","entrezGeneId":"9368"},{"alias":"NHERF","entrezGeneId":"9368"},{"alias":"NHERF-1","entrezGeneId":"9368"},{"alias":"NHERF1","entrezGeneId":"9368"},{"alias":"NPHLOP2","entrezGeneId":"9368"},{"alias":"C14orf60","entrezGeneId":"9369"},{"alias":"ACDC","entrezGeneId":"9370"},{"alias":"ACRP30","entrezGeneId":"9370"},{"alias":"ADIPQTL1","entrezGeneId":"9370"},{"alias":"ADPN","entrezGeneId":"9370"},{"alias":"APM-1","entrezGeneId":"9370"},{"alias":"APM1","entrezGeneId":"9370"},{"alias":"GBP28","entrezGeneId":"9370"},{"alias":"FLA8","entrezGeneId":"9371"},{"alias":"HH0048","entrezGeneId":"9371"},{"alias":"KLP-11","entrezGeneId":"9371"},{"alias":"MADHIP","entrezGeneId":"9372"},{"alias":"NSP","entrezGeneId":"9372"},{"alias":"PPP1R173","entrezGeneId":"9372"},{"alias":"SARA","entrezGeneId":"9372"},{"alias":"SMADIP","entrezGeneId":"9372"},{"alias":"DOA1","entrezGeneId":"9373"},{"alias":"NDMSBA","entrezGeneId":"9373"},{"alias":"PLA2P","entrezGeneId":"9373"},{"alias":"PLAP","entrezGeneId":"9373"},{"alias":"C6orf8","entrezGeneId":"9374"},{"alias":"G14","entrezGeneId":"9374"},{"alias":"PPT-2","entrezGeneId":"9374"},{"alias":"P76","entrezGeneId":"9375"},{"alias":"OAT3","entrezGeneId":"9376"},{"alias":"COX","entrezGeneId":"9377"},{"alias":"COX-VA","entrezGeneId":"9377"},{"alias":"VA","entrezGeneId":"9377"},{"alias":"Hs.22998","entrezGeneId":"9378"},{"alias":"PTHSL2","entrezGeneId":"9378"},{"alias":"SCZD17","entrezGeneId":"9378"},{"alias":"GLXR","entrezGeneId":"9380"},{"alias":"GLYD","entrezGeneId":"9380"},{"alias":"PH2","entrezGeneId":"9380"},{"alias":"AUNB1","entrezGeneId":"9381"},{"alias":"DFNB6","entrezGeneId":"9381"},{"alias":"DFNB9","entrezGeneId":"9381"},{"alias":"FER1L2","entrezGeneId":"9381"},{"alias":"NSRD9","entrezGeneId":"9381"},{"alias":"CDG2G","entrezGeneId":"9382"},{"alias":"LDLB","entrezGeneId":"9382"},{"alias":"LINC00013","entrezGeneId":"9383"},{"alias":"NCRNA00013","entrezGeneId":"9383"},{"alias":"XIST-AS","entrezGeneId":"9383"},{"alias":"XIST-AS1","entrezGeneId":"9383"},{"alias":"XISTAS","entrezGeneId":"9383"},{"alias":"EDL","entrezGeneId":"9388"},{"alias":"EL","entrezGeneId":"9388"},{"alias":"PRO719","entrezGeneId":"9388"},{"alias":"OCTL2","entrezGeneId":"9389"},{"alias":"OCTL4","entrezGeneId":"9389"},{"alias":"ORCTL4","entrezGeneId":"9389"},{"alias":"OAT10","entrezGeneId":"9390"},{"alias":"OCTL1","entrezGeneId":"9390"},{"alias":"OCTL3","entrezGeneId":"9390"},{"alias":"ORCTL-3","entrezGeneId":"9390"},{"alias":"ORCTL3","entrezGeneId":"9390"},{"alias":"CIA1","entrezGeneId":"9391"},{"alias":"WDR39","entrezGeneId":"9391"},{"alias":"TRAP-1","entrezGeneId":"9392"},{"alias":"TRAP1","entrezGeneId":"9392"},{"alias":"VPS3","entrezGeneId":"9392"},{"alias":"HH15","entrezGeneId":"9394"},{"alias":"HS6ST","entrezGeneId":"9394"},{"alias":"EWI-101","entrezGeneId":"9398"},{"alias":"IGSF2","entrezGeneId":"9398"},{"alias":"V7","entrezGeneId":"9398"},{"alias":"hUNC-24","entrezGeneId":"9399"},{"alias":"SLP-1","entrezGeneId":"9399"},{"alias":"STORP","entrezGeneId":"9399"},{"alias":"RECQ5","entrezGeneId":"9400"},{"alias":"RECQ4","entrezGeneId":"9401"},{"alias":"GADS","entrezGeneId":"9402"},{"alias":"GRAP-2","entrezGeneId":"9402"},{"alias":"GRB2L","entrezGeneId":"9402"},{"alias":"GRBLG","entrezGeneId":"9402"},{"alias":"GrbX","entrezGeneId":"9402"},{"alias":"Grf40","entrezGeneId":"9402"},{"alias":"GRID","entrezGeneId":"9402"},{"alias":"GRPL","entrezGeneId":"9402"},{"alias":"Mona","entrezGeneId":"9402"},{"alias":"P38","entrezGeneId":"9402"},{"alias":"SEP15","entrezGeneId":"9403"},{"alias":"LDPL","entrezGeneId":"9404"},{"alias":"ZIS","entrezGeneId":"9406"},{"alias":"ZIS1","entrezGeneId":"9406"},{"alias":"ZIS2","entrezGeneId":"9406"},{"alias":"ZNF265","entrezGeneId":"9406"},{"alias":"HAT","entrezGeneId":"9407"},{"alias":"PBD8A","entrezGeneId":"9409"},{"alias":"PBD8B","entrezGeneId":"9409"},{"alias":"40K","entrezGeneId":"9410"},{"alias":"HPRP8BP","entrezGeneId":"9410"},{"alias":"PRP8BP","entrezGeneId":"9410"},{"alias":"PRPF8BP","entrezGeneId":"9410"},{"alias":"SPF38","entrezGeneId":"9410"},{"alias":"WDR57","entrezGeneId":"9410"},{"alias":"PARG1","entrezGeneId":"9411"},{"alias":"hSrb7","entrezGeneId":"9412"},{"alias":"SRB7","entrezGeneId":"9412"},{"alias":"SURB7","entrezGeneId":"9412"},{"alias":"C9orf61","entrezGeneId":"9413"},{"alias":"X123","entrezGeneId":"9413"},{"alias":"C9DUPq21.11","entrezGeneId":"9414"},{"alias":"DFNA51","entrezGeneId":"9414"},{"alias":"DUP9q21.11","entrezGeneId":"9414"},{"alias":"PFIC4","entrezGeneId":"9414"},{"alias":"X104","entrezGeneId":"9414"},{"alias":"ZO2","entrezGeneId":"9414"},{"alias":"D6D","entrezGeneId":"9415"},{"alias":"DES6","entrezGeneId":"9415"},{"alias":"FADSD6","entrezGeneId":"9415"},{"alias":"LLCDL2","entrezGeneId":"9415"},{"alias":"SLL0262","entrezGeneId":"9415"},{"alias":"TU13","entrezGeneId":"9415"},{"alias":"prp28","entrezGeneId":"9416"},{"alias":"PRPF28","entrezGeneId":"9416"},{"alias":"SNRNP100","entrezGeneId":"9416"},{"alias":"U5-100K","entrezGeneId":"9416"},{"alias":"U5-100KD","entrezGeneId":"9416"},{"alias":"HSPC139","entrezGeneId":"9419"},{"alias":"SSMDF","entrezGeneId":"9419"},{"alias":"CBAS3","entrezGeneId":"9420"},{"alias":"CP7B","entrezGeneId":"9420"},{"alias":"SPG5A","entrezGeneId":"9420"},{"alias":"bHLHa27","entrezGeneId":"9421"},{"alias":"eHand","entrezGeneId":"9421"},{"alias":"Hxt","entrezGeneId":"9421"},{"alias":"Thing1","entrezGeneId":"9421"},{"alias":"NTN1L","entrezGeneId":"9423"},{"alias":"K2p6.1","entrezGeneId":"9424"},{"alias":"KCNK8","entrezGeneId":"9424"},{"alias":"TOSS","entrezGeneId":"9424"},{"alias":"TWIK-2","entrezGeneId":"9424"},{"alias":"TWIK2","entrezGeneId":"9424"},{"alias":"CDYL1","entrezGeneId":"9425"},{"alias":"CDY","entrezGeneId":"9426"},{"alias":"CDY2","entrezGeneId":"9426"},{"alias":"DA5D","entrezGeneId":"9427"},{"alias":"DINE","entrezGeneId":"9427"},{"alias":"ECEX","entrezGeneId":"9427"},{"alias":"XCE","entrezGeneId":"9427"},{"alias":"ABC15","entrezGeneId":"9429"},{"alias":"ABCP","entrezGeneId":"9429"},{"alias":"BCRP","entrezGeneId":"9429"},{"alias":"BCRP1","entrezGeneId":"9429"},{"alias":"BMDP","entrezGeneId":"9429"},{"alias":"CD338","entrezGeneId":"9429"},{"alias":"CDw338","entrezGeneId":"9429"},{"alias":"EST157481","entrezGeneId":"9429"},{"alias":"GOUT1","entrezGeneId":"9429"},{"alias":"MRX","entrezGeneId":"9429"},{"alias":"MXR","entrezGeneId":"9429"},{"alias":"MXR-1","entrezGeneId":"9429"},{"alias":"MXR1","entrezGeneId":"9429"},{"alias":"UAQTL1","entrezGeneId":"9429"},{"alias":"MYLKP","entrezGeneId":"9430"},{"alias":"OR3.6","entrezGeneId":"9431"},{"alias":"OR6DG","entrezGeneId":"9431"},{"alias":"OR4DG","entrezGeneId":"9432"},{"alias":"OR7E127P","entrezGeneId":"9432"},{"alias":"OR7E141P","entrezGeneId":"9432"},{"alias":"OR7E142P","entrezGeneId":"9432"},{"alias":"OR7E49P","entrezGeneId":"9432"},{"alias":"OST035","entrezGeneId":"9432"},{"alias":"C6ST","entrezGeneId":"9435"},{"alias":"glcNAc6ST-1","entrezGeneId":"9435"},{"alias":"Gn6ST-1","entrezGeneId":"9435"},{"alias":"GST-2","entrezGeneId":"9435"},{"alias":"GST2","entrezGeneId":"9435"},{"alias":"HEL-S-75","entrezGeneId":"9435"},{"alias":"CD336","entrezGeneId":"9436"},{"alias":"dJ149M18.1","entrezGeneId":"9436"},{"alias":"LY95","entrezGeneId":"9436"},{"alias":"NK-p44","entrezGeneId":"9436"},{"alias":"NKP44","entrezGeneId":"9436"},{"alias":"CD335","entrezGeneId":"9437"},{"alias":"LY94","entrezGeneId":"9437"},{"alias":"NK-p46","entrezGeneId":"9437"},{"alias":"NKP46","entrezGeneId":"9437"},{"alias":"ARC130","entrezGeneId":"9439"},{"alias":"CRSP130","entrezGeneId":"9439"},{"alias":"CRSP133","entrezGeneId":"9439"},{"alias":"CRSP3","entrezGeneId":"9439"},{"alias":"DRIP130","entrezGeneId":"9439"},{"alias":"MRT18","entrezGeneId":"9439"},{"alias":"SUR-2","entrezGeneId":"9439"},{"alias":"SUR2","entrezGeneId":"9439"},{"alias":"CRSP6","entrezGeneId":"9440"},{"alias":"CRSP77","entrezGeneId":"9440"},{"alias":"DRIP80","entrezGeneId":"9440"},{"alias":"SRB4","entrezGeneId":"9440"},{"alias":"TRAP80","entrezGeneId":"9440"},{"alias":"CRSP7","entrezGeneId":"9441"},{"alias":"CRSP70","entrezGeneId":"9441"},{"alias":"CRAP34","entrezGeneId":"9442"},{"alias":"CRSP34","entrezGeneId":"9442"},{"alias":"CRSP8","entrezGeneId":"9442"},{"alias":"MED3","entrezGeneId":"9442"},{"alias":"TRAP37","entrezGeneId":"9442"},{"alias":"ARC34","entrezGeneId":"9443"},{"alias":"CRSP33","entrezGeneId":"9443"},{"alias":"CRSP9","entrezGeneId":"9443"},{"alias":"Hqk","entrezGeneId":"9444"},{"alias":"hqkI","entrezGeneId":"9444"},{"alias":"QK","entrezGeneId":"9444"},{"alias":"QK1","entrezGeneId":"9444"},{"alias":"QK3","entrezGeneId":"9444"},{"alias":"ABRI","entrezGeneId":"9445"},{"alias":"BRI","entrezGeneId":"9445"},{"alias":"BRI2","entrezGeneId":"9445"},{"alias":"BRICD2B","entrezGeneId":"9445"},{"alias":"E25B","entrezGeneId":"9445"},{"alias":"E3-16","entrezGeneId":"9445"},{"alias":"FBD","entrezGeneId":"9445"},{"alias":"imBRI2","entrezGeneId":"9445"},{"alias":"RDGCA","entrezGeneId":"9445"},{"alias":"GSTO 1-1","entrezGeneId":"9446"},{"alias":"GSTTLp28","entrezGeneId":"9446"},{"alias":"HEL-S-21","entrezGeneId":"9446"},{"alias":"P28","entrezGeneId":"9446"},{"alias":"SPG-R","entrezGeneId":"9446"},{"alias":"PYHIN4","entrezGeneId":"9447"},{"alias":"FLH21957","entrezGeneId":"9448"},{"alias":"HEL-S-31","entrezGeneId":"9448"},{"alias":"HGK","entrezGeneId":"9448"},{"alias":"MEKKK4","entrezGeneId":"9448"},{"alias":"NIK","entrezGeneId":"9448"},{"alias":"dJ80N2.1","entrezGeneId":"9450"},{"alias":"MD-1","entrezGeneId":"9450"},{"alias":"MD1","entrezGeneId":"9450"},{"alias":"MMD-1","entrezGeneId":"9450"},{"alias":"PEK","entrezGeneId":"9451"},{"alias":"PERK","entrezGeneId":"9451"},{"alias":"WRS","entrezGeneId":"9451"},{"alias":"BRICD2A","entrezGeneId":"9452"},{"alias":"E25A","entrezGeneId":"9452"},{"alias":"GGPPS","entrezGeneId":"9453"},{"alias":"GGPPS1","entrezGeneId":"9453"},{"alias":"HOMER-3","entrezGeneId":"9454"},{"alias":"VESL3","entrezGeneId":"9454"},{"alias":"ACPD","entrezGeneId":"9455"},{"alias":"CPD","entrezGeneId":"9455"},{"alias":"DFNA68","entrezGeneId":"9455"},{"alias":"HOMER-2","entrezGeneId":"9455"},{"alias":"VESL-2","entrezGeneId":"9455"},{"alias":"HOMER","entrezGeneId":"9456"},{"alias":"HOMER1A","entrezGeneId":"9456"},{"alias":"HOMER1B","entrezGeneId":"9456"},{"alias":"HOMER1C","entrezGeneId":"9456"},{"alias":"SYN47","entrezGeneId":"9456"},{"alias":"Ves-1","entrezGeneId":"9456"},{"alias":"1700027G07Rik","entrezGeneId":"9457"},{"alias":"ACT","entrezGeneId":"9457"},{"alias":"dJ393D12.2","entrezGeneId":"9457"},{"alias":"FHL-5","entrezGeneId":"9457"},{"alias":"alpha-PIX","entrezGeneId":"9459"},{"alias":"alphaPIX","entrezGeneId":"9459"},{"alias":"Cool-2","entrezGeneId":"9459"},{"alias":"COOL2","entrezGeneId":"9459"},{"alias":"MRX46","entrezGeneId":"9459"},{"alias":"PIXA","entrezGeneId":"9459"},{"alias":"NGAP","entrezGeneId":"9462"},{"alias":"PICK","entrezGeneId":"9463"},{"alias":"PRKCABP","entrezGeneId":"9463"},{"alias":"bHLHa26","entrezGeneId":"9464"},{"alias":"dHand","entrezGeneId":"9464"},{"alias":"DHAND2","entrezGeneId":"9464"},{"alias":"Hed","entrezGeneId":"9464"},{"alias":"Thing2","entrezGeneId":"9464"},{"alias":"AKAP15","entrezGeneId":"9465"},{"alias":"AKAP18","entrezGeneId":"9465"},{"alias":"CRL1","entrezGeneId":"9466"},{"alias":"IL-27RA","entrezGeneId":"9466"},{"alias":"IL27R","entrezGeneId":"9466"},{"alias":"TCCR","entrezGeneId":"9466"},{"alias":"WSX1","entrezGeneId":"9466"},{"alias":"zcytor1","entrezGeneId":"9466"},{"alias":"SAB","entrezGeneId":"9467"},{"alias":"SH3BP-5","entrezGeneId":"9467"},{"alias":"CCTB","entrezGeneId":"9468"},{"alias":"CTB","entrezGeneId":"9468"},{"alias":"C6ST","entrezGeneId":"9469"},{"alias":"C6ST1","entrezGeneId":"9469"},{"alias":"HSD","entrezGeneId":"9469"},{"alias":"4E-LP","entrezGeneId":"9470"},{"alias":"4EHP","entrezGeneId":"9470"},{"alias":"EIF4EL3","entrezGeneId":"9470"},{"alias":"h4EHP","entrezGeneId":"9470"},{"alias":"IF4e","entrezGeneId":"9470"},{"alias":"ADAP100","entrezGeneId":"9472"},{"alias":"ADAP6","entrezGeneId":"9472"},{"alias":"AKAP100","entrezGeneId":"9472"},{"alias":"mAKAP","entrezGeneId":"9472"},{"alias":"PRKA6","entrezGeneId":"9472"},{"alias":"C1orf38","entrezGeneId":"9473"},{"alias":"ICB-1","entrezGeneId":"9473"},{"alias":"ICB1","entrezGeneId":"9473"},{"alias":"APG5","entrezGeneId":"9474"},{"alias":"APG5-LIKE","entrezGeneId":"9474"},{"alias":"APG5L","entrezGeneId":"9474"},{"alias":"ASP","entrezGeneId":"9474"},{"alias":"hAPG5","entrezGeneId":"9474"},{"alias":"SCAR25","entrezGeneId":"9474"},{"alias":"ROCK-II","entrezGeneId":"9475"},{"alias":"KAP","entrezGeneId":"9476"},{"alias":"Kdap","entrezGeneId":"9476"},{"alias":"NAP1","entrezGeneId":"9476"},{"alias":"NAPA","entrezGeneId":"9476"},{"alias":"SNAPA","entrezGeneId":"9476"},{"alias":"PRO0213","entrezGeneId":"9477"},{"alias":"SRB2","entrezGeneId":"9477"},{"alias":"TRFP","entrezGeneId":"9477"},{"alias":"CALBRAIN","entrezGeneId":"9478"},{"alias":"HCALB_BR","entrezGeneId":"9478"},{"alias":"IB1","entrezGeneId":"9479"},{"alias":"JIP-1","entrezGeneId":"9479"},{"alias":"JIP1","entrezGeneId":"9479"},{"alias":"PRKM8IP","entrezGeneId":"9479"},{"alias":"OC-2","entrezGeneId":"9480"},{"alias":"OC2","entrezGeneId":"9480"},{"alias":"UCP4","entrezGeneId":"9481"},{"alias":"CARB","entrezGeneId":"9482"},{"alias":"HNK-1ST","entrezGeneId":"9486"},{"alias":"HNK1ST","entrezGeneId":"9486"},{"alias":"CHIME","entrezGeneId":"9487"},{"alias":"GPI-MT-III","entrezGeneId":"9488"},{"alias":"PIG-B","entrezGeneId":"9488"},{"alias":"PI31","entrezGeneId":"9491"},{"alias":"CHO1","entrezGeneId":"9493"},{"alias":"KNSL5","entrezGeneId":"9493"},{"alias":"MKLP-1","entrezGeneId":"9493"},{"alias":"MKLP1","entrezGeneId":"9493"},{"alias":"AKAP75","entrezGeneId":"9495"},{"alias":"AKAP79","entrezGeneId":"9495"},{"alias":"H21","entrezGeneId":"9495"},{"alias":"ICPPS","entrezGeneId":"9496"},{"alias":"SPS","entrezGeneId":"9496"},{"alias":"NBC2","entrezGeneId":"9497"},{"alias":"NBC3","entrezGeneId":"9497"},{"alias":"NBCN1","entrezGeneId":"9497"},{"alias":"SBC2","entrezGeneId":"9497"},{"alias":"SLC4A6","entrezGeneId":"9497"},{"alias":"NBC3","entrezGeneId":"9498"},{"alias":"NDCBE","entrezGeneId":"9498"},{"alias":"LGMD1","entrezGeneId":"9499"},{"alias":"LGMD1A","entrezGeneId":"9499"},{"alias":"MFM3","entrezGeneId":"9499"},{"alias":"TTID","entrezGeneId":"9499"},{"alias":"TTOD","entrezGeneId":"9499"},{"alias":"DLXIN-1","entrezGeneId":"9500"},{"alias":"NRAGE","entrezGeneId":"9500"},{"alias":"NOC2","entrezGeneId":"9501"},{"alias":"CT12.2","entrezGeneId":"9502"},{"alias":"GAGED3","entrezGeneId":"9502"},{"alias":"XAGE-2","entrezGeneId":"9502"},{"alias":"XAGE2B","entrezGeneId":"9502"},{"alias":"CT16.7","entrezGeneId":"9506"},{"alias":"GAGE-9","entrezGeneId":"9506"},{"alias":"GAGEC1","entrezGeneId":"9506"},{"alias":"JM-27","entrezGeneId":"9506"},{"alias":"JM27","entrezGeneId":"9506"},{"alias":"PAGE-1","entrezGeneId":"9506"},{"alias":"PAGE-4","entrezGeneId":"9506"},{"alias":"ADAMTS-2","entrezGeneId":"9507"},{"alias":"ADAMTS-4","entrezGeneId":"9507"},{"alias":"ADMP-1","entrezGeneId":"9507"},{"alias":"ADAMTS-4","entrezGeneId":"9508"},{"alias":"ADAM-TS2","entrezGeneId":"9509"},{"alias":"ADAMTS-2","entrezGeneId":"9509"},{"alias":"ADAMTS-3","entrezGeneId":"9509"},{"alias":"EDSDERMS","entrezGeneId":"9509"},{"alias":"NPI","entrezGeneId":"9509"},{"alias":"PC I-NP","entrezGeneId":"9509"},{"alias":"PCI-NP","entrezGeneId":"9509"},{"alias":"PCINP","entrezGeneId":"9509"},{"alias":"PCPNI","entrezGeneId":"9509"},{"alias":"PNPI","entrezGeneId":"9509"},{"alias":"C3-C5","entrezGeneId":"9510"},{"alias":"METH1","entrezGeneId":"9510"},{"alias":"Beta-MPP","entrezGeneId":"9512"},{"alias":"MPP11","entrezGeneId":"9512"},{"alias":"MPPB","entrezGeneId":"9512"},{"alias":"MPPP52","entrezGeneId":"9512"},{"alias":"P-52","entrezGeneId":"9512"},{"alias":"FMR1L2","entrezGeneId":"9513"},{"alias":"FXR2P","entrezGeneId":"9513"},{"alias":"CST","entrezGeneId":"9514"},{"alias":"LLGL4","entrezGeneId":"9515"},{"alias":"PIG7","entrezGeneId":"9516"},{"alias":"SIMPLE","entrezGeneId":"9516"},{"alias":"TP53I7","entrezGeneId":"9516"},{"alias":"hLCB2a","entrezGeneId":"9517"},{"alias":"HSN1C","entrezGeneId":"9517"},{"alias":"LCB2","entrezGeneId":"9517"},{"alias":"LCB2A","entrezGeneId":"9517"},{"alias":"NSAN1C","entrezGeneId":"9517"},{"alias":"SPT2","entrezGeneId":"9517"},{"alias":"GDF-15","entrezGeneId":"9518"},{"alias":"MIC-1","entrezGeneId":"9518"},{"alias":"MIC1","entrezGeneId":"9518"},{"alias":"NAG-1","entrezGeneId":"9518"},{"alias":"PDF","entrezGeneId":"9518"},{"alias":"PLAB","entrezGeneId":"9518"},{"alias":"PTGFB","entrezGeneId":"9518"},{"alias":"MGC:8389","entrezGeneId":"9519"},{"alias":"MGC:9620","entrezGeneId":"9519"},{"alias":"STUD","entrezGeneId":"9519"},{"alias":"TLF","entrezGeneId":"9519"},{"alias":"TLP","entrezGeneId":"9519"},{"alias":"TRF2","entrezGeneId":"9519"},{"alias":"AAP-S","entrezGeneId":"9520"},{"alias":"MP100","entrezGeneId":"9520"},{"alias":"PSA","entrezGeneId":"9520"},{"alias":"AIMP3","entrezGeneId":"9521"},{"alias":"P18","entrezGeneId":"9521"},{"alias":"SCAMP","entrezGeneId":"9522"},{"alias":"SCAMP37","entrezGeneId":"9522"},{"alias":"GPSN2","entrezGeneId":"9524"},{"alias":"MRT14","entrezGeneId":"9524"},{"alias":"SC2","entrezGeneId":"9524"},{"alias":"TER","entrezGeneId":"9524"},{"alias":"MIG1","entrezGeneId":"9525"},{"alias":"SKD1","entrezGeneId":"9525"},{"alias":"SKD1B","entrezGeneId":"9525"},{"alias":"VPS4-2","entrezGeneId":"9525"},{"alias":"CDGIF","entrezGeneId":"9526"},{"alias":"HBEBP2BPA","entrezGeneId":"9526"},{"alias":"Lec35","entrezGeneId":"9526"},{"alias":"My008","entrezGeneId":"9526"},{"alias":"PP3958","entrezGeneId":"9526"},{"alias":"PQLC5","entrezGeneId":"9526"},{"alias":"SL15","entrezGeneId":"9526"},{"alias":"GOLIM2","entrezGeneId":"9527"},{"alias":"GOS-28","entrezGeneId":"9527"},{"alias":"GOS28","entrezGeneId":"9527"},{"alias":"GOS28/P28","entrezGeneId":"9527"},{"alias":"GS28","entrezGeneId":"9527"},{"alias":"P28","entrezGeneId":"9527"},{"alias":"C1orf8","entrezGeneId":"9528"},{"alias":"DCF1","entrezGeneId":"9528"},{"alias":"HSPC001","entrezGeneId":"9528"},{"alias":"PRO195","entrezGeneId":"9528"},{"alias":"UNQ169","entrezGeneId":"9528"},{"alias":"BAG-5","entrezGeneId":"9529"},{"alias":"BAG-4","entrezGeneId":"9530"},{"alias":"SODD","entrezGeneId":"9530"},{"alias":"BAG-3","entrezGeneId":"9531"},{"alias":"BIS","entrezGeneId":"9531"},{"alias":"CAIR-1","entrezGeneId":"9531"},{"alias":"MFM6","entrezGeneId":"9531"},{"alias":"BAG-2","entrezGeneId":"9532"},{"alias":"dJ417I1.2","entrezGeneId":"9532"},{"alias":"AC40","entrezGeneId":"9533"},{"alias":"HLD11","entrezGeneId":"9533"},{"alias":"RPA39","entrezGeneId":"9533"},{"alias":"RPA40","entrezGeneId":"9533"},{"alias":"RPA5","entrezGeneId":"9533"},{"alias":"RPAC1","entrezGeneId":"9533"},{"alias":"RPC40","entrezGeneId":"9533"},{"alias":"TCS3","entrezGeneId":"9533"},{"alias":"BMZF-5","entrezGeneId":"9534"},{"alias":"HD-ZNF1","entrezGeneId":"9534"},{"alias":"ZNF539","entrezGeneId":"9534"},{"alias":"ZNF91L","entrezGeneId":"9534"},{"alias":"GMF-GAMMA","entrezGeneId":"9535"},{"alias":"MGST-IV","entrezGeneId":"9536"},{"alias":"MGST1-L1","entrezGeneId":"9536"},{"alias":"MGST1L1","entrezGeneId":"9536"},{"alias":"MPGES","entrezGeneId":"9536"},{"alias":"mPGES-1","entrezGeneId":"9536"},{"alias":"PGES","entrezGeneId":"9536"},{"alias":"PIG12","entrezGeneId":"9536"},{"alias":"PP102","entrezGeneId":"9536"},{"alias":"PP1294","entrezGeneId":"9536"},{"alias":"TP53I12","entrezGeneId":"9536"},{"alias":"PIG11","entrezGeneId":"9537"},{"alias":"EPG4","entrezGeneId":"9538"},{"alias":"PIG8","entrezGeneId":"9538"},{"alias":"TP53I8","entrezGeneId":"9538"},{"alias":"PIG3","entrezGeneId":"9540"},{"alias":"CIR","entrezGeneId":"9541"},{"alias":"DON1","entrezGeneId":"9542"},{"alias":"HRG2","entrezGeneId":"9542"},{"alias":"NTAK","entrezGeneId":"9542"},{"alias":"HsT18880","entrezGeneId":"9543"},{"alias":"PUNC","entrezGeneId":"9543"},{"alias":"D2-2","entrezGeneId":"9545"},{"alias":"GOV","entrezGeneId":"9545"},{"alias":"RAB16","entrezGeneId":"9545"},{"alias":"RAD3D","entrezGeneId":"9545"},{"alias":"MGC:15815","entrezGeneId":"9546"},{"alias":"mint3","entrezGeneId":"9546"},{"alias":"X11L2","entrezGeneId":"9546"},{"alias":"BMAC","entrezGeneId":"9547"},{"alias":"BRAK","entrezGeneId":"9547"},{"alias":"KEC","entrezGeneId":"9547"},{"alias":"KS1","entrezGeneId":"9547"},{"alias":"MIP-2g","entrezGeneId":"9547"},{"alias":"MIP2G","entrezGeneId":"9547"},{"alias":"NJAC","entrezGeneId":"9547"},{"alias":"SCYB14","entrezGeneId":"9547"},{"alias":"ATP6G","entrezGeneId":"9550"},{"alias":"ATP6G1","entrezGeneId":"9550"},{"alias":"ATP6GL","entrezGeneId":"9550"},{"alias":"ATP6J","entrezGeneId":"9550"},{"alias":"Vma10","entrezGeneId":"9550"},{"alias":"ATP5J2","entrezGeneId":"9551"},{"alias":"ATP5JL","entrezGeneId":"9551"},{"alias":"ACRP","entrezGeneId":"9552"},{"alias":"FSA-1","entrezGeneId":"9552"},{"alias":"C2orf1","entrezGeneId":"9553"},{"alias":"L33mt","entrezGeneId":"9553"},{"alias":"MRP-L33","entrezGeneId":"9553"},{"alias":"RPL33L","entrezGeneId":"9553"},{"alias":"ERS-24","entrezGeneId":"9554"},{"alias":"SEC22L1","entrezGeneId":"9554"},{"alias":"H2A.y","entrezGeneId":"9555"},{"alias":"H2A/y","entrezGeneId":"9555"},{"alias":"H2AF12M","entrezGeneId":"9555"},{"alias":"MACROH2A1.1","entrezGeneId":"9555"},{"alias":"macroH2A1.2","entrezGeneId":"9555"},{"alias":"mH2A1","entrezGeneId":"9555"},{"alias":"6.8PL","entrezGeneId":"9556"},{"alias":"C14orf2","entrezGeneId":"9556"},{"alias":"MLQ","entrezGeneId":"9556"},{"alias":"MP68","entrezGeneId":"9556"},{"alias":"PLPM","entrezGeneId":"9556"},{"alias":"ALC1","entrezGeneId":"9557"},{"alias":"CHDL","entrezGeneId":"9557"},{"alias":"HB58","entrezGeneId":"9559"},{"alias":"Hbeta58","entrezGeneId":"9559"},{"alias":"PEP8A","entrezGeneId":"9559"},{"alias":"VPS26","entrezGeneId":"9559"},{"alias":"AT744.2","entrezGeneId":"9560"},{"alias":"CCL4L","entrezGeneId":"9560"},{"alias":"SCYA4L","entrezGeneId":"9560"},{"alias":"SCYQ4L2","entrezGeneId":"9560"},{"alias":"HIPER1","entrezGeneId":"9562"},{"alias":"MINPP2","entrezGeneId":"9562"},{"alias":"MIPP","entrezGeneId":"9562"},{"alias":"CORTRD1","entrezGeneId":"9563"},{"alias":"G6PDH","entrezGeneId":"9563"},{"alias":"GDH","entrezGeneId":"9563"},{"alias":"CAS","entrezGeneId":"9564"},{"alias":"CAS1","entrezGeneId":"9564"},{"alias":"CASS1","entrezGeneId":"9564"},{"alias":"CRKAS","entrezGeneId":"9564"},{"alias":"P130Cas","entrezGeneId":"9564"},{"alias":"GP-1","entrezGeneId":"9567"},{"alias":"GP1","entrezGeneId":"9567"},{"alias":"HSPC018","entrezGeneId":"9567"},{"alias":"EIEE59","entrezGeneId":"9568"},{"alias":"GABABR2","entrezGeneId":"9568"},{"alias":"GPR51","entrezGeneId":"9568"},{"alias":"GPRC3B","entrezGeneId":"9568"},{"alias":"HG20","entrezGeneId":"9568"},{"alias":"HRIHFB2099","entrezGeneId":"9568"},{"alias":"BEN","entrezGeneId":"9569"},{"alias":"CREAM1","entrezGeneId":"9569"},{"alias":"GTF3","entrezGeneId":"9569"},{"alias":"hMusTRD1alpha1","entrezGeneId":"9569"},{"alias":"MUSTRD1","entrezGeneId":"9569"},{"alias":"RBAP2","entrezGeneId":"9569"},{"alias":"WBS","entrezGeneId":"9569"},{"alias":"WBSCR11","entrezGeneId":"9569"},{"alias":"WBSCR12","entrezGeneId":"9569"},{"alias":"Bos1","entrezGeneId":"9570"},{"alias":"EPM6","entrezGeneId":"9570"},{"alias":"GS27","entrezGeneId":"9570"},{"alias":"ear-1","entrezGeneId":"9572"},{"alias":"EAR1","entrezGeneId":"9572"},{"alias":"hRev","entrezGeneId":"9572"},{"alias":"REVERBA","entrezGeneId":"9572"},{"alias":"REVERBalpha","entrezGeneId":"9572"},{"alias":"THRA1","entrezGeneId":"9572"},{"alias":"THRAL","entrezGeneId":"9572"},{"alias":"KFS3","entrezGeneId":"9573"},{"alias":"MCOP7","entrezGeneId":"9573"},{"alias":"MCOPCB6","entrezGeneId":"9573"},{"alias":"bHLHe8","entrezGeneId":"9575"},{"alias":"KAT13D","entrezGeneId":"9575"},{"alias":"CT141","entrezGeneId":"9576"},{"alias":"pf16","entrezGeneId":"9576"},{"alias":"Repro-SA-1","entrezGeneId":"9576"},{"alias":"BRCC4","entrezGeneId":"9577"},{"alias":"BRCC45","entrezGeneId":"9577"},{"alias":"BRE","entrezGeneId":"9577"},{"alias":"MRCKB","entrezGeneId":"9578"},{"alias":"ICA12","entrezGeneId":"9580"},{"alias":"Sox-13","entrezGeneId":"9580"},{"alias":"CMS22","entrezGeneId":"9581"},{"alias":"A3B","entrezGeneId":"9582"},{"alias":"APOBEC1L","entrezGeneId":"9582"},{"alias":"ARCD3","entrezGeneId":"9582"},{"alias":"ARP4","entrezGeneId":"9582"},{"alias":"bK150C2.2","entrezGeneId":"9582"},{"alias":"DJ742C19.2","entrezGeneId":"9582"},{"alias":"PHRBNL","entrezGeneId":"9582"},{"alias":"LALP70","entrezGeneId":"9583"},{"alias":"LAP70","entrezGeneId":"9583"},{"alias":"LYSAL1","entrezGeneId":"9583"},{"alias":"NTPDase-4","entrezGeneId":"9583"},{"alias":"UDPase","entrezGeneId":"9583"},{"alias":"CAPER","entrezGeneId":"9584"},{"alias":"CAPERalpha","entrezGeneId":"9584"},{"alias":"FSAP59","entrezGeneId":"9584"},{"alias":"HCC1","entrezGeneId":"9584"},{"alias":"RNPC2","entrezGeneId":"9584"},{"alias":"CT90","entrezGeneId":"9585"},{"alias":"KRMP1","entrezGeneId":"9585"},{"alias":"MPHOSPH1","entrezGeneId":"9585"},{"alias":"MPP-1","entrezGeneId":"9585"},{"alias":"MPP1","entrezGeneId":"9585"},{"alias":"CRE-BPA","entrezGeneId":"9586"},{"alias":"CREB-5","entrezGeneId":"9586"},{"alias":"CMT2","entrezGeneId":"9587"},{"alias":"1-Cys","entrezGeneId":"9588"},{"alias":"aiPLA2","entrezGeneId":"9588"},{"alias":"AOP2","entrezGeneId":"9588"},{"alias":"HEL-S-128m","entrezGeneId":"9588"},{"alias":"NSGPx","entrezGeneId":"9588"},{"alias":"p29","entrezGeneId":"9588"},{"alias":"PRX","entrezGeneId":"9588"},{"alias":"Mum2","entrezGeneId":"9589"},{"alias":"AKAP250","entrezGeneId":"9590"},{"alias":"SSeCKS","entrezGeneId":"9590"},{"alias":"ETR101","entrezGeneId":"9592"},{"alias":"B3-1","entrezGeneId":"9595"},{"alias":"CASP","entrezGeneId":"9595"},{"alias":"CYBR","entrezGeneId":"9595"},{"alias":"CYTHIP","entrezGeneId":"9595"},{"alias":"HE","entrezGeneId":"9595"},{"alias":"PSCDBP","entrezGeneId":"9595"},{"alias":"OR17-01","entrezGeneId":"9596"},{"alias":"OR17-1","entrezGeneId":"9596"},{"alias":"OR1R2P","entrezGeneId":"9596"},{"alias":"OR1R3P","entrezGeneId":"9596"},{"alias":"OR20A1P","entrezGeneId":"9596"},{"alias":"DAMS","entrezGeneId":"9597"},{"alias":"SMAD5AS","entrezGeneId":"9597"},{"alias":"SMAD5OS","entrezGeneId":"9597"},{"alias":"DRES9","entrezGeneId":"9600"},{"alias":"NIR2","entrezGeneId":"9600"},{"alias":"PITPNM","entrezGeneId":"9600"},{"alias":"Rd9","entrezGeneId":"9600"},{"alias":"RDGB","entrezGeneId":"9600"},{"alias":"RDGB1","entrezGeneId":"9600"},{"alias":"RDGBA","entrezGeneId":"9600"},{"alias":"RDGBA1","entrezGeneId":"9600"},{"alias":"ERp-72","entrezGeneId":"9601"},{"alias":"ERP70","entrezGeneId":"9601"},{"alias":"ERP72","entrezGeneId":"9601"},{"alias":"NRF3","entrezGeneId":"9603"},{"alias":"ARA54","entrezGeneId":"9604"},{"alias":"HFB30","entrezGeneId":"9604"},{"alias":"HRIHFB2038","entrezGeneId":"9604"},{"alias":"TRIAD2","entrezGeneId":"9604"},{"alias":"ATP-BL","entrezGeneId":"9605"},{"alias":"C16orf7","entrezGeneId":"9605"},{"alias":"CART","entrezGeneId":"9607"},{"alias":"hN-CoR","entrezGeneId":"9611"},{"alias":"N-CoR","entrezGeneId":"9611"},{"alias":"N-CoR1","entrezGeneId":"9611"},{"alias":"PPP1R109","entrezGeneId":"9611"},{"alias":"TRAC1","entrezGeneId":"9611"},{"alias":"CTG26","entrezGeneId":"9612"},{"alias":"N-CoR2","entrezGeneId":"9612"},{"alias":"SMAP270","entrezGeneId":"9612"},{"alias":"SMRT","entrezGeneId":"9612"},{"alias":"SMRTE","entrezGeneId":"9612"},{"alias":"SMRTE-tau","entrezGeneId":"9612"},{"alias":"TNRC14","entrezGeneId":"9612"},{"alias":"TRAC","entrezGeneId":"9612"},{"alias":"TRAC-1","entrezGeneId":"9612"},{"alias":"TRAC1","entrezGeneId":"9612"},{"alias":"CYPIN","entrezGeneId":"9615"},{"alias":"GAH","entrezGeneId":"9615"},{"alias":"GUANASE","entrezGeneId":"9615"},{"alias":"NEDASIN","entrezGeneId":"9615"},{"alias":"CKBBP1","entrezGeneId":"9616"},{"alias":"ROC2","entrezGeneId":"9616"},{"alias":"SAG","entrezGeneId":"9616"},{"alias":"MRF1","entrezGeneId":"9617"},{"alias":"MTTRF1","entrezGeneId":"9617"},{"alias":"RF1","entrezGeneId":"9617"},{"alias":"CART1","entrezGeneId":"9618"},{"alias":"MLN62","entrezGeneId":"9618"},{"alias":"RNF83","entrezGeneId":"9618"},{"alias":"ABC8","entrezGeneId":"9619"},{"alias":"WHITE1","entrezGeneId":"9619"},{"alias":"ADGRC1","entrezGeneId":"9620"},{"alias":"CDHF9","entrezGeneId":"9620"},{"alias":"FMI2","entrezGeneId":"9620"},{"alias":"HFMI2","entrezGeneId":"9620"},{"alias":"ME2","entrezGeneId":"9620"},{"alias":"AI2A1","entrezGeneId":"9622"},{"alias":"ARM1","entrezGeneId":"9622"},{"alias":"EMSP","entrezGeneId":"9622"},{"alias":"EMSP1","entrezGeneId":"9622"},{"alias":"kallikrein","entrezGeneId":"9622"},{"alias":"KLK-L1","entrezGeneId":"9622"},{"alias":"PRSS17","entrezGeneId":"9622"},{"alias":"PSTS","entrezGeneId":"9622"},{"alias":"SYN-1","entrezGeneId":"9623"},{"alias":"TML1","entrezGeneId":"9623"},{"alias":"AATYK","entrezGeneId":"9625"},{"alias":"AATYK1","entrezGeneId":"9625"},{"alias":"LMR1","entrezGeneId":"9625"},{"alias":"LMTK1","entrezGeneId":"9625"},{"alias":"p35BP","entrezGeneId":"9625"},{"alias":"PPP1R77","entrezGeneId":"9625"},{"alias":"GCAP3","entrezGeneId":"9626"},{"alias":"Sph1","entrezGeneId":"9627"},{"alias":"SYPH1","entrezGeneId":"9627"},{"alias":"GAP","entrezGeneId":"9628"},{"alias":"HA117","entrezGeneId":"9628"},{"alias":"S914","entrezGeneId":"9628"},{"alias":"CLCA3","entrezGeneId":"9629"},{"alias":"ATFB15","entrezGeneId":"9631"},{"alias":"N155","entrezGeneId":"9631"},{"alias":"CXCDC2","entrezGeneId":"9633"},{"alias":"MTL5","entrezGeneId":"9633"},{"alias":"MTLT","entrezGeneId":"9633"},{"alias":"CACC","entrezGeneId":"9635"},{"alias":"CaCC-3","entrezGeneId":"9635"},{"alias":"CACC3","entrezGeneId":"9635"},{"alias":"CLCRG2","entrezGeneId":"9635"},{"alias":"G1P2","entrezGeneId":"9636"},{"alias":"hUCRP","entrezGeneId":"9636"},{"alias":"IFI15","entrezGeneId":"9636"},{"alias":"IMD38","entrezGeneId":"9636"},{"alias":"IP17","entrezGeneId":"9636"},{"alias":"UCRP","entrezGeneId":"9636"},{"alias":"HUM3CL","entrezGeneId":"9637"},{"alias":"UNC-76","entrezGeneId":"9638"},{"alias":"GEF10","entrezGeneId":"9639"},{"alias":"SNCV","entrezGeneId":"9639"},{"alias":"CAMOS","entrezGeneId":"9640"},{"alias":"SCAR5","entrezGeneId":"9640"},{"alias":"IKK-E","entrezGeneId":"9641"},{"alias":"IKK-i","entrezGeneId":"9641"},{"alias":"IKKE","entrezGeneId":"9641"},{"alias":"IKKI","entrezGeneId":"9641"},{"alias":"MORFL2","entrezGeneId":"9643"},{"alias":"MRGX","entrezGeneId":"9643"},{"alias":"FISH","entrezGeneId":"9644"},{"alias":"SH3MD1","entrezGeneId":"9644"},{"alias":"TKS5","entrezGeneId":"9644"},{"alias":"MICAL-2","entrezGeneId":"9645"},{"alias":"MICAL2PV1","entrezGeneId":"9645"},{"alias":"MICAL2PV2","entrezGeneId":"9645"},{"alias":"p150","entrezGeneId":"9646"},{"alias":"p150TSP","entrezGeneId":"9646"},{"alias":"SH2BP1","entrezGeneId":"9646"},{"alias":"TSBP","entrezGeneId":"9646"},{"alias":"CAMKP","entrezGeneId":"9647"},{"alias":"CaMKPase","entrezGeneId":"9647"},{"alias":"FEM-2","entrezGeneId":"9647"},{"alias":"hFEM-2","entrezGeneId":"9647"},{"alias":"POPX2","entrezGeneId":"9647"},{"alias":"GCC185","entrezGeneId":"9648"},{"alias":"RANBP2L4","entrezGeneId":"9648"},{"alias":"REN53","entrezGeneId":"9648"},{"alias":"RALGEF2","entrezGeneId":"9649"},{"alias":"RALGPS1A","entrezGeneId":"9649"},{"alias":"CHPPR","entrezGeneId":"9650"},{"alias":"FAM54A2","entrezGeneId":"9650"},{"alias":"PLC-eta2","entrezGeneId":"9651"},{"alias":"PLC-L4","entrezGeneId":"9651"},{"alias":"PLCeta2","entrezGeneId":"9651"},{"alias":"PLCL4","entrezGeneId":"9651"},{"alias":"KIAA0372","entrezGeneId":"9652"},{"alias":"Ski3","entrezGeneId":"9652"},{"alias":"THES","entrezGeneId":"9652"},{"alias":"dJ604K5.2","entrezGeneId":"9653"},{"alias":"CIS6","entrezGeneId":"9655"},{"alias":"Cish5","entrezGeneId":"9655"},{"alias":"CISH6","entrezGeneId":"9655"},{"alias":"SOCS-5","entrezGeneId":"9655"},{"alias":"NFBD1","entrezGeneId":"9656"},{"alias":"NPHP5","entrezGeneId":"9657"},{"alias":"PIQ","entrezGeneId":"9657"},{"alias":"SLSN5","entrezGeneId":"9657"},{"alias":"HsT287","entrezGeneId":"9658"},{"alias":"CMYA2","entrezGeneId":"9659"},{"alias":"MMGL","entrezGeneId":"9659"},{"alias":"CEP4","entrezGeneId":"9662"},{"alias":"KIAA0635","entrezGeneId":"9662"},{"alias":"MCPH8","entrezGeneId":"9662"},{"alias":"KIAA0430","entrezGeneId":"9665"},{"alias":"LKAP","entrezGeneId":"9665"},{"alias":"LMKB","entrezGeneId":"9665"},{"alias":"PPP1R34","entrezGeneId":"9665"},{"alias":"hRUL138","entrezGeneId":"9666"},{"alias":"PPP1R66","entrezGeneId":"9666"},{"alias":"UURF2","entrezGeneId":"9666"},{"alias":"IF2","entrezGeneId":"9669"},{"alias":"IMP13","entrezGeneId":"9670"},{"alias":"KAP13","entrezGeneId":"9670"},{"alias":"LGL2","entrezGeneId":"9670"},{"alias":"RANBP13","entrezGeneId":"9670"},{"alias":"SDCN","entrezGeneId":"9672"},{"alias":"SYND3","entrezGeneId":"9672"},{"alias":"KIAA0406","entrezGeneId":"9675"},{"alias":"smg-10","entrezGeneId":"9675"},{"alias":"HISPPD2A","entrezGeneId":"9677"},{"alias":"hsVIP1","entrezGeneId":"9677"},{"alias":"IP6K","entrezGeneId":"9677"},{"alias":"IPS1","entrezGeneId":"9677"},{"alias":"VIP1","entrezGeneId":"9677"},{"alias":"bA12J10.2","entrezGeneId":"9679"},{"alias":"KIAA0140","entrezGeneId":"9679"},{"alias":"smp","entrezGeneId":"9679"},{"alias":"DEP.5","entrezGeneId":"9681"},{"alias":"FFEVF","entrezGeneId":"9681"},{"alias":"FFEVF1","entrezGeneId":"9681"},{"alias":"JHDM3A","entrezGeneId":"9682"},{"alias":"JMJD2","entrezGeneId":"9682"},{"alias":"JMJD2A","entrezGeneId":"9682"},{"alias":"TDRD14A","entrezGeneId":"9682"},{"alias":"LRRC14A","entrezGeneId":"9684"},{"alias":"CLINT","entrezGeneId":"9685"},{"alias":"ENTH","entrezGeneId":"9685"},{"alias":"EPN4","entrezGeneId":"9685"},{"alias":"EPNR","entrezGeneId":"9685"},{"alias":"VGL-4","entrezGeneId":"9686"},{"alias":"NIC96","entrezGeneId":"9688"},{"alias":"BZAP45","entrezGeneId":"9689"},{"alias":"Nbla10236","entrezGeneId":"9689"},{"alias":"HECTH2","entrezGeneId":"9690"},{"alias":"MRPP3","entrezGeneId":"9692"},{"alias":"PRORP","entrezGeneId":"9692"},{"alias":"CNrasGEF","entrezGeneId":"9693"},{"alias":"nRap GEP","entrezGeneId":"9693"},{"alias":"NRAPGEP","entrezGeneId":"9693"},{"alias":"PDZ-GEF1","entrezGeneId":"9693"},{"alias":"PDZGEF1","entrezGeneId":"9693"},{"alias":"RA-GEF","entrezGeneId":"9693"},{"alias":"RA-GEF-1","entrezGeneId":"9693"},{"alias":"Rap-GEP","entrezGeneId":"9693"},{"alias":"KIAA0103","entrezGeneId":"9694"},{"alias":"TTC35","entrezGeneId":"9694"},{"alias":"EDEM","entrezGeneId":"9695"},{"alias":"ROLT","entrezGeneId":"9696"},{"alias":"TAX1BP2","entrezGeneId":"9696"},{"alias":"HSPUM","entrezGeneId":"9698"},{"alias":"PUMH","entrezGeneId":"9698"},{"alias":"PUMH1","entrezGeneId":"9698"},{"alias":"PUML1","entrezGeneId":"9698"},{"alias":"OBOE","entrezGeneId":"9699"},{"alias":"RAB3IP3","entrezGeneId":"9699"},{"alias":"RIM2","entrezGeneId":"9699"},{"alias":"ESP1","entrezGeneId":"9700"},{"alias":"SEPA","entrezGeneId":"9700"},{"alias":"KIAA0685","entrezGeneId":"9701"},{"alias":"PP6R2","entrezGeneId":"9701"},{"alias":"SAP190","entrezGeneId":"9701"},{"alias":"SAPS2","entrezGeneId":"9701"},{"alias":"MVA2","entrezGeneId":"9702"},{"alias":"PIG8","entrezGeneId":"9702"},{"alias":"TSP57","entrezGeneId":"9702"},{"alias":"BCOX","entrezGeneId":"9703"},{"alias":"BCOX1","entrezGeneId":"9703"},{"alias":"CT101","entrezGeneId":"9703"},{"alias":"FMP27","entrezGeneId":"9703"},{"alias":"DDX34","entrezGeneId":"9704"},{"alias":"HRH1","entrezGeneId":"9704"},{"alias":"NZF3","entrezGeneId":"9705"},{"alias":"ZC2H2C3","entrezGeneId":"9705"},{"alias":"ZC2HC10","entrezGeneId":"9705"},{"alias":"ZNF387","entrezGeneId":"9705"},{"alias":"ATG1B","entrezGeneId":"9706"},{"alias":"Unc51.2","entrezGeneId":"9706"},{"alias":"PCDH-GAMMA-A8","entrezGeneId":"9708"},{"alias":"HERP","entrezGeneId":"9709"},{"alias":"Mif1","entrezGeneId":"9709"},{"alias":"SUP","entrezGeneId":"9709"},{"alias":"KIAA0226","entrezGeneId":"9711"},{"alias":"RUBICON","entrezGeneId":"9711"},{"alias":"SCAR15","entrezGeneId":"9711"},{"alias":"RNTRE","entrezGeneId":"9712"},{"alias":"TRE2NL","entrezGeneId":"9712"},{"alias":"USP6NL-IT1","entrezGeneId":"9712"},{"alias":"fSAP164","entrezGeneId":"9716"},{"alias":"IBP160","entrezGeneId":"9716"},{"alias":"PRELID4B","entrezGeneId":"9717"},{"alias":"GPHYSD1","entrezGeneId":"9719"},{"alias":"GRIN2","entrezGeneId":"9721"},{"alias":"KIAA0514","entrezGeneId":"9721"},{"alias":"6330408P19Rik","entrezGeneId":"9722"},{"alias":"CAPON","entrezGeneId":"9722"},{"alias":"coll-5","entrezGeneId":"9723"},{"alias":"M-SEMAH","entrezGeneId":"9723"},{"alias":"M-SemaK","entrezGeneId":"9723"},{"alias":"SEMAH","entrezGeneId":"9723"},{"alias":"2700066J21Rik","entrezGeneId":"9724"},{"alias":"KIAA0266","entrezGeneId":"9724"},{"alias":"UTP14B","entrezGeneId":"9724"},{"alias":"KIAA0792","entrezGeneId":"9725"},{"alias":"CART1","entrezGeneId":"9727"},{"alias":"Rab11-FIP3","entrezGeneId":"9727"},{"alias":"SBP2L","entrezGeneId":"9728"},{"alias":"SLAN","entrezGeneId":"9728"},{"alias":"RIP","entrezGeneId":"9730"},{"alias":"VPRBP","entrezGeneId":"9730"},{"alias":"CFAP256","entrezGeneId":"9731"},{"alias":"GlyBP","entrezGeneId":"9731"},{"alias":"JBTS25","entrezGeneId":"9731"},{"alias":"KIAA0562","entrezGeneId":"9731"},{"alias":"ROC22","entrezGeneId":"9731"},{"alias":"DSAP1","entrezGeneId":"9733"},{"alias":"P100","entrezGeneId":"9733"},{"alias":"p110","entrezGeneId":"9733"},{"alias":"p110(nrb)","entrezGeneId":"9733"},{"alias":"RP11-13G14","entrezGeneId":"9733"},{"alias":"TIP110","entrezGeneId":"9733"},{"alias":"HD7","entrezGeneId":"9734"},{"alias":"HD7b","entrezGeneId":"9734"},{"alias":"HD9","entrezGeneId":"9734"},{"alias":"HDAC","entrezGeneId":"9734"},{"alias":"HDAC7","entrezGeneId":"9734"},{"alias":"HDAC7B","entrezGeneId":"9734"},{"alias":"HDAC9B","entrezGeneId":"9734"},{"alias":"HDAC9FL","entrezGeneId":"9734"},{"alias":"HDRP","entrezGeneId":"9734"},{"alias":"MITR","entrezGeneId":"9734"},{"alias":"ROD","entrezGeneId":"9735"},{"alias":"GASP","entrezGeneId":"9737"},{"alias":"GASP-1","entrezGeneId":"9737"},{"alias":"GASP1","entrezGeneId":"9737"},{"alias":"Cep110","entrezGeneId":"9738"},{"alias":"CP110","entrezGeneId":"9738"},{"alias":"KMT2F","entrezGeneId":"9739"},{"alias":"Set1","entrezGeneId":"9739"},{"alias":"Set1A","entrezGeneId":"9739"},{"alias":"HUMORF13","entrezGeneId":"9741"},{"alias":"LAPTM4","entrezGeneId":"9741"},{"alias":"MBNT","entrezGeneId":"9741"},{"alias":"Mtrp","entrezGeneId":"9741"},{"alias":"c305C8.4","entrezGeneId":"9742"},{"alias":"c380F5.1","entrezGeneId":"9742"},{"alias":"gs114","entrezGeneId":"9742"},{"alias":"MZSDS","entrezGeneId":"9742"},{"alias":"RP80","entrezGeneId":"9742"},{"alias":"SRTD9","entrezGeneId":"9742"},{"alias":"WDTC2","entrezGeneId":"9742"},{"alias":"GC-GAP","entrezGeneId":"9743"},{"alias":"GRIT","entrezGeneId":"9743"},{"alias":"p200RhoGAP","entrezGeneId":"9743"},{"alias":"p250GAP","entrezGeneId":"9743"},{"alias":"PX-RICS","entrezGeneId":"9743"},{"alias":"RICS","entrezGeneId":"9743"},{"alias":"CENTB1","entrezGeneId":"9744"},{"alias":"alcbeta","entrezGeneId":"9746"},{"alias":"CDHR14","entrezGeneId":"9746"},{"alias":"CSTN3","entrezGeneId":"9746"},{"alias":"FAM115A","entrezGeneId":"9747"},{"alias":"bA16H23.1","entrezGeneId":"9748"},{"alias":"LOSK","entrezGeneId":"9748"},{"alias":"se20-9","entrezGeneId":"9748"},{"alias":"STK2","entrezGeneId":"9748"},{"alias":"C6orf56","entrezGeneId":"9749"},{"alias":"C6orf32","entrezGeneId":"9750"},{"alias":"DFNB104","entrezGeneId":"9750"},{"alias":"DIFF40","entrezGeneId":"9750"},{"alias":"DIFF48","entrezGeneId":"9750"},{"alias":"FAM65B","entrezGeneId":"9750"},{"alias":"MYONAP","entrezGeneId":"9750"},{"alias":"PL48","entrezGeneId":"9750"},{"alias":"PCDH-ALPHA9","entrezGeneId":"9752"},{"alias":"dJ29K1.2","entrezGeneId":"9753"},{"alias":"ZFP96","entrezGeneId":"9753"},{"alias":"ZNF29K1","entrezGeneId":"9753"},{"alias":"ZNF305","entrezGeneId":"9753"},{"alias":"ZNF96","entrezGeneId":"9753"},{"alias":"ARHGAP38","entrezGeneId":"9754"},{"alias":"DLC3","entrezGeneId":"9754"},{"alias":"STARTGAP3","entrezGeneId":"9754"},{"alias":"ProSAPiP2","entrezGeneId":"9755"},{"alias":"SINTBAD","entrezGeneId":"9755"},{"alias":"CXXC10","entrezGeneId":"9757"},{"alias":"DYT28","entrezGeneId":"9757"},{"alias":"HRX2","entrezGeneId":"9757"},{"alias":"MLL1B","entrezGeneId":"9757"},{"alias":"MLL2","entrezGeneId":"9757"},{"alias":"MLL4","entrezGeneId":"9757"},{"alias":"TRX2","entrezGeneId":"9757"},{"alias":"WBP-7","entrezGeneId":"9757"},{"alias":"WBP7","entrezGeneId":"9757"},{"alias":"MRX104","entrezGeneId":"9758"},{"alias":"PDZD10","entrezGeneId":"9758"},{"alias":"PDZK10","entrezGeneId":"9758"},{"alias":"AHO3","entrezGeneId":"9759"},{"alias":"BDMR","entrezGeneId":"9759"},{"alias":"HA6116","entrezGeneId":"9759"},{"alias":"HD4","entrezGeneId":"9759"},{"alias":"HDAC-4","entrezGeneId":"9759"},{"alias":"HDAC-A","entrezGeneId":"9759"},{"alias":"HDACA","entrezGeneId":"9759"},{"alias":"TOX1","entrezGeneId":"9760"},{"alias":"KIAA0152","entrezGeneId":"9761"},{"alias":"PROSAPIP1","entrezGeneId":"9762"},{"alias":"PPP1R69","entrezGeneId":"9765"},{"alias":"DRAGO","entrezGeneId":"9766"},{"alias":"KIAA0247","entrezGeneId":"9766"},{"alias":"JADE-3","entrezGeneId":"9767"},{"alias":"PHF16","entrezGeneId":"9767"},{"alias":"KIAA0101","entrezGeneId":"9768"},{"alias":"L5","entrezGeneId":"9768"},{"alias":"NS5ATP9","entrezGeneId":"9768"},{"alias":"OEATC","entrezGeneId":"9768"},{"alias":"OEATC-1","entrezGeneId":"9768"},{"alias":"OEATC1","entrezGeneId":"9768"},{"alias":"p15(PAF)","entrezGeneId":"9768"},{"alias":"p15/PAF","entrezGeneId":"9768"},{"alias":"p15PAF","entrezGeneId":"9768"},{"alias":"PAF","entrezGeneId":"9768"},{"alias":"PAF15","entrezGeneId":"9768"},{"alias":"CENP-34","entrezGeneId":"9770"},{"alias":"RASFADIN","entrezGeneId":"9770"},{"alias":"GFR","entrezGeneId":"9771"},{"alias":"MR-GEF","entrezGeneId":"9771"},{"alias":"REPAC","entrezGeneId":"9771"},{"alias":"KIAA0195","entrezGeneId":"9772"},{"alias":"bK211L9.1","entrezGeneId":"9774"},{"alias":"BTF","entrezGeneId":"9774"},{"alias":"DDX48","entrezGeneId":"9775"},{"alias":"eIF4AIII","entrezGeneId":"9775"},{"alias":"Fal1","entrezGeneId":"9775"},{"alias":"MUK34","entrezGeneId":"9775"},{"alias":"NMP265","entrezGeneId":"9775"},{"alias":"NUK34","entrezGeneId":"9775"},{"alias":"RCPS","entrezGeneId":"9775"},{"alias":"KIAA0652","entrezGeneId":"9776"},{"alias":"PARATARG8","entrezGeneId":"9776"},{"alias":"dJ836N17.2","entrezGeneId":"9777"},{"alias":"DHS","entrezGeneId":"9780"},{"alias":"FAM38A","entrezGeneId":"9780"},{"alias":"LMPH3","entrezGeneId":"9780"},{"alias":"Mib","entrezGeneId":"9780"},{"alias":"hUIP4","entrezGeneId":"9781"},{"alias":"RNF144","entrezGeneId":"9781"},{"alias":"UBCE7IP4","entrezGeneId":"9781"},{"alias":"ALS21","entrezGeneId":"9782"},{"alias":"MPD2","entrezGeneId":"9782"},{"alias":"VCPDM","entrezGeneId":"9782"},{"alias":"NIM3","entrezGeneId":"9783"},{"alias":"RIM3","entrezGeneId":"9783"},{"alias":"DDX38","entrezGeneId":"9785"},{"alias":"PRP16","entrezGeneId":"9785"},{"alias":"PRPF16","entrezGeneId":"9785"},{"alias":"JBTS23","entrezGeneId":"9786"},{"alias":"SRTD14","entrezGeneId":"9786"},{"alias":"Talpid3","entrezGeneId":"9786"},{"alias":"DLG7","entrezGeneId":"9787"},{"alias":"HURP","entrezGeneId":"9787"},{"alias":"MIM","entrezGeneId":"9788"},{"alias":"MIMA","entrezGeneId":"9788"},{"alias":"MIMB","entrezGeneId":"9788"},{"alias":"ACC","entrezGeneId":"9790"},{"alias":"BMS1L","entrezGeneId":"9790"},{"alias":"LMHD","entrezGeneId":"9791"},{"alias":"PSS1","entrezGeneId":"9791"},{"alias":"PSSA","entrezGeneId":"9791"},{"alias":"Sei-2","entrezGeneId":"9792"},{"alias":"TRIP-Br2","entrezGeneId":"9792"},{"alias":"TRIPBR2","entrezGeneId":"9792"},{"alias":"ch-TOG","entrezGeneId":"9793"},{"alias":"CHTOG","entrezGeneId":"9793"},{"alias":"MSPS","entrezGeneId":"9793"},{"alias":"TOG","entrezGeneId":"9793"},{"alias":"TOGp","entrezGeneId":"9793"},{"alias":"Mam-1","entrezGeneId":"9794"},{"alias":"Mam1","entrezGeneId":"9794"},{"alias":"DYRK1AP3","entrezGeneId":"9796"},{"alias":"PAHX-AP","entrezGeneId":"9796"},{"alias":"PAHXAP1","entrezGeneId":"9796"},{"alias":"OLC1","entrezGeneId":"9798"},{"alias":"L19mt","entrezGeneId":"9801"},{"alias":"MRP-L15","entrezGeneId":"9801"},{"alias":"MRP-L19","entrezGeneId":"9801"},{"alias":"MRPL15","entrezGeneId":"9801"},{"alias":"RLX1","entrezGeneId":"9801"},{"alias":"RPML15","entrezGeneId":"9801"},{"alias":"PRTB","entrezGeneId":"9802"},{"alias":"MAS20","entrezGeneId":"9804"},{"alias":"MOM19","entrezGeneId":"9804"},{"alias":"TOM20","entrezGeneId":"9804"},{"alias":"SES1","entrezGeneId":"9805"},{"alias":"testican-2","entrezGeneId":"9806"},{"alias":"IHPK1","entrezGeneId":"9807"},{"alias":"PiUS","entrezGeneId":"9807"},{"alias":"BRE1B","entrezGeneId":"9810"},{"alias":"RBP95","entrezGeneId":"9810"},{"alias":"STARING","entrezGeneId":"9810"},{"alias":"Gm672","entrezGeneId":"9811"},{"alias":"KIAA0427","entrezGeneId":"9811"},{"alias":"DELE","entrezGeneId":"9812"},{"alias":"KIAA0141","entrezGeneId":"9812"},{"alias":"KIAA0494","entrezGeneId":"9813"},{"alias":"hSfi1p","entrezGeneId":"9814"},{"alias":"PISD","entrezGeneId":"9814"},{"alias":"PPP1R139","entrezGeneId":"9814"},{"alias":"CAT-2","entrezGeneId":"9815"},{"alias":"CAT2","entrezGeneId":"9815"},{"alias":"PKL","entrezGeneId":"9815"},{"alias":"KIAA0133","entrezGeneId":"9816"},{"alias":"NET10","entrezGeneId":"9816"},{"alias":"NPA2","entrezGeneId":"9816"},{"alias":"INrf2","entrezGeneId":"9817"},{"alias":"KLHL19","entrezGeneId":"9817"},{"alias":"NUP45","entrezGeneId":"9818"},{"alias":"NUPL1","entrezGeneId":"9818"},{"alias":"PRO2463","entrezGeneId":"9818"},{"alias":"TILZ4a","entrezGeneId":"9819"},{"alias":"TILZ4b","entrezGeneId":"9819"},{"alias":"TILZ4c","entrezGeneId":"9819"},{"alias":"3M1","entrezGeneId":"9820"},{"alias":"CUL-7","entrezGeneId":"9820"},{"alias":"dJ20C7.5","entrezGeneId":"9820"},{"alias":"KIAA0076","entrezGeneId":"9820"},{"alias":"ATG17","entrezGeneId":"9821"},{"alias":"CC1","entrezGeneId":"9821"},{"alias":"FIP200","entrezGeneId":"9821"},{"alias":"PPP1R131","entrezGeneId":"9821"},{"alias":"ALEX2","entrezGeneId":"9823"},{"alias":"GASP9","entrezGeneId":"9823"},{"alias":"GAP (1-12)","entrezGeneId":"9824"},{"alias":"PD1","entrezGeneId":"9825"},{"alias":"PPP1R145","entrezGeneId":"9825"},{"alias":"tamo","entrezGeneId":"9825"},{"alias":"GTRAP48","entrezGeneId":"9826"},{"alias":"PDZ-RHOGEF","entrezGeneId":"9826"},{"alias":"KIAA0258","entrezGeneId":"9827"},{"alias":"p164-RhoGEF","entrezGeneId":"9828"},{"alias":"P164RHOGEF","entrezGeneId":"9828"},{"alias":"RHOGEF17","entrezGeneId":"9828"},{"alias":"TEM4","entrezGeneId":"9828"},{"alias":"DJC6","entrezGeneId":"9829"},{"alias":"PARK19","entrezGeneId":"9829"},{"alias":"JAMIP2","entrezGeneId":"9832"},{"alias":"NECC1","entrezGeneId":"9832"},{"alias":"HPK38","entrezGeneId":"9833"},{"alias":"C14orf110","entrezGeneId":"9834"},{"alias":"HSPC053","entrezGeneId":"9834"},{"alias":"KIAA0125","entrezGeneId":"9834"},{"alias":"PPM2","entrezGeneId":"9836"},{"alias":"TYW4","entrezGeneId":"9836"},{"alias":"IMD55","entrezGeneId":"9837"},{"alias":"PSF1","entrezGeneId":"9837"},{"alias":"HSPC082","entrezGeneId":"9839"},{"alias":"SIP-1","entrezGeneId":"9839"},{"alias":"SIP1","entrezGeneId":"9839"},{"alias":"SMADIP1","entrezGeneId":"9839"},{"alias":"ZFHX1B","entrezGeneId":"9839"},{"alias":"HSPC257","entrezGeneId":"9840"},{"alias":"KIAA0748","entrezGeneId":"9840"},{"alias":"BIF1","entrezGeneId":"9841"},{"alias":"ICF2","entrezGeneId":"9841"},{"alias":"PATZ2","entrezGeneId":"9841"},{"alias":"ZNF450","entrezGeneId":"9841"},{"alias":"AP162","entrezGeneId":"9842"},{"alias":"B2","entrezGeneId":"9842"},{"alias":"OPTB6","entrezGeneId":"9842"},{"alias":"CPL","entrezGeneId":"9843"},{"alias":"CED-12","entrezGeneId":"9844"},{"alias":"CED12","entrezGeneId":"9844"},{"alias":"ELMO-1","entrezGeneId":"9844"},{"alias":"CDP138","entrezGeneId":"9847"},{"alias":"KIAA0528","entrezGeneId":"9847"},{"alias":"NYD-sp9","entrezGeneId":"9848"},{"alias":"ZNF518","entrezGeneId":"9849"},{"alias":"MNR","entrezGeneId":"9851"},{"alias":"OFIP","entrezGeneId":"9851"},{"alias":"Iporin","entrezGeneId":"9853"},{"alias":"MRT61","entrezGeneId":"9853"},{"alias":"DLNB23","entrezGeneId":"9854"},{"alias":"TMEM24","entrezGeneId":"9854"},{"alias":"FIR","entrezGeneId":"9855"},{"alias":"FRG","entrezGeneId":"9855"},{"alias":"PLEKHC3","entrezGeneId":"9855"},{"alias":"AAVR","entrezGeneId":"9856"},{"alias":"DYLX2","entrezGeneId":"9856"},{"alias":"DYX2","entrezGeneId":"9856"},{"alias":"NMIG","entrezGeneId":"9856"},{"alias":"CAP350","entrezGeneId":"9857"},{"alias":"GM133","entrezGeneId":"9857"},{"alias":"KIAA0649","entrezGeneId":"9858"},{"alias":"NRBE3","entrezGeneId":"9858"},{"alias":"FAM68A","entrezGeneId":"9859"},{"alias":"KAB","entrezGeneId":"9859"},{"alias":"KIAA0470","entrezGeneId":"9859"},{"alias":"LIG-2","entrezGeneId":"9860"},{"alias":"LIG2","entrezGeneId":"9860"},{"alias":"UFS2","entrezGeneId":"9860"},{"alias":"p42A","entrezGeneId":"9861"},{"alias":"p44S10","entrezGeneId":"9861"},{"alias":"Rpn7","entrezGeneId":"9861"},{"alias":"S10","entrezGeneId":"9861"},{"alias":"SGA-113M","entrezGeneId":"9861"},{"alias":"ARC100","entrezGeneId":"9862"},{"alias":"CRSP100","entrezGeneId":"9862"},{"alias":"CRSP4","entrezGeneId":"9862"},{"alias":"DRIP100","entrezGeneId":"9862"},{"alias":"MED5","entrezGeneId":"9862"},{"alias":"THRAP4","entrezGeneId":"9862"},{"alias":"TRAP100","entrezGeneId":"9862"},{"alias":"ACVRIP1","entrezGeneId":"9863"},{"alias":"AIP-1","entrezGeneId":"9863"},{"alias":"AIP1","entrezGeneId":"9863"},{"alias":"ARIP1","entrezGeneId":"9863"},{"alias":"MAGI-2","entrezGeneId":"9863"},{"alias":"SSCAM","entrezGeneId":"9863"},{"alias":"C11orf29","entrezGeneId":"9866"},{"alias":"TIF1D","entrezGeneId":"9866"},{"alias":"TIF1DELTA","entrezGeneId":"9866"},{"alias":"Neurodap1","entrezGeneId":"9867"},{"alias":"RNF131","entrezGeneId":"9867"},{"alias":"Tom70","entrezGeneId":"9868"},{"alias":"TOMM70A","entrezGeneId":"9868"},{"alias":"ESET","entrezGeneId":"9869"},{"alias":"H3-K9-HMTase4","entrezGeneId":"9869"},{"alias":"KG1T","entrezGeneId":"9869"},{"alias":"KMT1E","entrezGeneId":"9869"},{"alias":"TDRD21","entrezGeneId":"9869"},{"alias":"FIEL1","entrezGeneId":"9870"},{"alias":"KIAA0317","entrezGeneId":"9870"},{"alias":"CLCRP2","entrezGeneId":"9871"},{"alias":"NWK","entrezGeneId":"9873"},{"alias":"SH3MD3","entrezGeneId":"9873"},{"alias":"PKU-beta","entrezGeneId":"9874"},{"alias":"C21orf108","entrezGeneId":"9875"},{"alias":"NPA1","entrezGeneId":"9875"},{"alias":"ZC3HDC11A","entrezGeneId":"9877"},{"alias":"C14orf92","entrezGeneId":"9878"},{"alias":"KIAA0737","entrezGeneId":"9878"},{"alias":"LCP1","entrezGeneId":"9878"},{"alias":"MIG7","entrezGeneId":"9878"},{"alias":"Prp5","entrezGeneId":"9879"},{"alias":"PRPF5","entrezGeneId":"9879"},{"alias":"ZNF922","entrezGeneId":"9880"},{"alias":"LBA1","entrezGeneId":"9881"},{"alias":"AS160","entrezGeneId":"9882"},{"alias":"NIDDM5","entrezGeneId":"9882"},{"alias":"P145","entrezGeneId":"9883"},{"alias":"POM121A","entrezGeneId":"9883"},{"alias":"LRRC37","entrezGeneId":"9884"},{"alias":"DFNA67","entrezGeneId":"9885"},{"alias":"DNFA67","entrezGeneId":"9885"},{"alias":"ORP-2","entrezGeneId":"9885"},{"alias":"ORP2","entrezGeneId":"9885"},{"alias":"C1orf16","entrezGeneId":"9887"},{"alias":"EST1C","entrezGeneId":"9887"},{"alias":"SGA56M","entrezGeneId":"9887"},{"alias":"LPPR4","entrezGeneId":"9890"},{"alias":"LPR4","entrezGeneId":"9890"},{"alias":"PHP1","entrezGeneId":"9890"},{"alias":"PRG-1","entrezGeneId":"9890"},{"alias":"PRG1","entrezGeneId":"9890"},{"alias":"ARK5","entrezGeneId":"9891"},{"alias":"AP180","entrezGeneId":"9892"},{"alias":"CALM","entrezGeneId":"9892"},{"alias":"CLK2","entrezGeneId":"9894"},{"alias":"TEL2","entrezGeneId":"9894"},{"alias":"YHFS","entrezGeneId":"9894"},{"alias":"KIAA0329","entrezGeneId":"9895"},{"alias":"SPG49","entrezGeneId":"9895"},{"alias":"ALS11","entrezGeneId":"9896"},{"alias":"BTOP","entrezGeneId":"9896"},{"alias":"CMT4J","entrezGeneId":"9896"},{"alias":"dJ249I4.1","entrezGeneId":"9896"},{"alias":"KIAA0274","entrezGeneId":"9896"},{"alias":"SAC3","entrezGeneId":"9896"},{"alias":"YVS","entrezGeneId":"9896"},{"alias":"KIAA0196","entrezGeneId":"9897"},{"alias":"RTSC","entrezGeneId":"9897"},{"alias":"RTSC1","entrezGeneId":"9897"},{"alias":"SPG8","entrezGeneId":"9897"},{"alias":"NICE-4","entrezGeneId":"9898"},{"alias":"NICE4","entrezGeneId":"9898"},{"alias":"HsT19680","entrezGeneId":"9899"},{"alias":"SV2","entrezGeneId":"9900"},{"alias":"ARHGAP14","entrezGeneId":"9901"},{"alias":"MEGAP","entrezGeneId":"9901"},{"alias":"SRGAP2","entrezGeneId":"9901"},{"alias":"WRP","entrezGeneId":"9901"},{"alias":"CD280","entrezGeneId":"9902"},{"alias":"CLEC13E","entrezGeneId":"9902"},{"alias":"ENDO180","entrezGeneId":"9902"},{"alias":"UPARAP","entrezGeneId":"9902"},{"alias":"Mrd1","entrezGeneId":"9904"},{"alias":"RUTBC1","entrezGeneId":"9905"},{"alias":"SLC35E2","entrezGeneId":"9906"},{"alias":"KIAA0415","entrezGeneId":"9907"},{"alias":"SPG48","entrezGeneId":"9907"},{"alias":"zeta","entrezGeneId":"9907"},{"alias":"KIAA0476","entrezGeneId":"9909"},{"alias":"HHL","entrezGeneId":"9910"},{"alias":"TBC1D18","entrezGeneId":"9910"},{"alias":"HUCEP11","entrezGeneId":"9911"},{"alias":"NPC-A-10","entrezGeneId":"9912"},{"alias":"RICH2","entrezGeneId":"9912"},{"alias":"SPT7L","entrezGeneId":"9913"},{"alias":"STAF65","entrezGeneId":"9913"},{"alias":"STAF65(gamma)","entrezGeneId":"9913"},{"alias":"STAF65G","entrezGeneId":"9913"},{"alias":"SUPT7H","entrezGeneId":"9913"},{"alias":"SPCA2","entrezGeneId":"9914"},{"alias":"bHLHe1","entrezGeneId":"9915"},{"alias":"WEDAS","entrezGeneId":"9915"},{"alias":"gxk1","entrezGeneId":"9917"},{"alias":"CAP-D2","entrezGeneId":"9918"},{"alias":"CNAP1","entrezGeneId":"9918"},{"alias":"hCAP-D2","entrezGeneId":"9918"},{"alias":"KIAA0310","entrezGeneId":"9919"},{"alias":"p250","entrezGeneId":"9919"},{"alias":"SEC16L","entrezGeneId":"9919"},{"alias":"KLHDC7C","entrezGeneId":"9920"},{"alias":"RIE2","entrezGeneId":"9921"},{"alias":"ARF-GEP100","entrezGeneId":"9922"},{"alias":"ARFGEP100","entrezGeneId":"9922"},{"alias":"BRAG2","entrezGeneId":"9922"},{"alias":"GEP100","entrezGeneId":"9922"},{"alias":"ZNF923","entrezGeneId":"9923"},{"alias":"USP52","entrezGeneId":"9924"},{"alias":"FAM34A","entrezGeneId":"9926"},{"alias":"FAM34A1","entrezGeneId":"9926"},{"alias":"NET8","entrezGeneId":"9926"},{"alias":"CMT2A","entrezGeneId":"9927"},{"alias":"CMT2A2","entrezGeneId":"9927"},{"alias":"CMT2A2A","entrezGeneId":"9927"},{"alias":"CMT2A2B","entrezGeneId":"9927"},{"alias":"CPRP1","entrezGeneId":"9927"},{"alias":"HMSN6A","entrezGeneId":"9927"},{"alias":"HSG","entrezGeneId":"9927"},{"alias":"MARF","entrezGeneId":"9927"},{"alias":"MCPH20","entrezGeneId":"9928"},{"alias":"MKS12","entrezGeneId":"9928"},{"alias":"dJ508I15.2","entrezGeneId":"9929"},{"alias":"DHRC","entrezGeneId":"9931"},{"alias":"DRHC","entrezGeneId":"9931"},{"alias":"HUMORF5","entrezGeneId":"9931"},{"alias":"HA-8","entrezGeneId":"9933"},{"alias":"HLA-HA8","entrezGeneId":"9933"},{"alias":"KIAA0020","entrezGeneId":"9933"},{"alias":"PEN","entrezGeneId":"9933"},{"alias":"PUF-A","entrezGeneId":"9933"},{"alias":"PUF6","entrezGeneId":"9933"},{"alias":"XTP5","entrezGeneId":"9933"},{"alias":"BPR105","entrezGeneId":"9934"},{"alias":"GPR105","entrezGeneId":"9934"},{"alias":"P2Y14","entrezGeneId":"9934"},{"alias":"DURS3","entrezGeneId":"9935"},{"alias":"KRML","entrezGeneId":"9935"},{"alias":"MCTO","entrezGeneId":"9935"},{"alias":"BIMLEC","entrezGeneId":"9936"},{"alias":"CLEC13A","entrezGeneId":"9936"},{"alias":"DCL-1","entrezGeneId":"9936"},{"alias":"DCL1","entrezGeneId":"9936"},{"alias":"PSO2","entrezGeneId":"9937"},{"alias":"SNM1","entrezGeneId":"9937"},{"alias":"SNM1A","entrezGeneId":"9937"},{"alias":"HEL-S-308","entrezGeneId":"9938"},{"alias":"KAIA0053","entrezGeneId":"9938"},{"alias":"BOV-1A","entrezGeneId":"9939"},{"alias":"BOV-1B","entrezGeneId":"9939"},{"alias":"BOV-1C","entrezGeneId":"9939"},{"alias":"C1DELq21.1","entrezGeneId":"9939"},{"alias":"DEL1q21.1","entrezGeneId":"9939"},{"alias":"MDS014","entrezGeneId":"9939"},{"alias":"RBM8","entrezGeneId":"9939"},{"alias":"RBM8B","entrezGeneId":"9939"},{"alias":"TAR","entrezGeneId":"9939"},{"alias":"Y14","entrezGeneId":"9939"},{"alias":"ZNRP","entrezGeneId":"9939"},{"alias":"ZRNP1","entrezGeneId":"9939"},{"alias":"CFAP81","entrezGeneId":"9940"},{"alias":"DLC-1","entrezGeneId":"9940"},{"alias":"DLC1","entrezGeneId":"9940"},{"alias":"F56","entrezGeneId":"9940"},{"alias":"ENDOGL1","entrezGeneId":"9941"},{"alias":"ENDOGL2","entrezGeneId":"9941"},{"alias":"ENGL","entrezGeneId":"9941"},{"alias":"ENGL-a","entrezGeneId":"9941"},{"alias":"ENGL-b","entrezGeneId":"9941"},{"alias":"ENGLA","entrezGeneId":"9941"},{"alias":"ENGLB","entrezGeneId":"9941"},{"alias":"OSR1","entrezGeneId":"9943"},{"alias":"GFAT","entrezGeneId":"9945"},{"alias":"GFAT 2","entrezGeneId":"9945"},{"alias":"GFAT2","entrezGeneId":"9945"},{"alias":"4P11","entrezGeneId":"9946"},{"alias":"QOH-1","entrezGeneId":"9946"},{"alias":"CT7","entrezGeneId":"9947"},{"alias":"CT7.1","entrezGeneId":"9947"},{"alias":"AIP1","entrezGeneId":"9948"},{"alias":"HEL-S-52","entrezGeneId":"9948"},{"alias":"NORI-1","entrezGeneId":"9948"},{"alias":"AMMERC1","entrezGeneId":"9949"},{"alias":"MFHIEN","entrezGeneId":"9949"},{"alias":"GOLIM5","entrezGeneId":"9950"},{"alias":"ret-II","entrezGeneId":"9950"},{"alias":"RFG5","entrezGeneId":"9950"},{"alias":"3-OST-4","entrezGeneId":"9951"},{"alias":"30ST4","entrezGeneId":"9951"},{"alias":"3OST4","entrezGeneId":"9951"},{"alias":"h3-OST-4","entrezGeneId":"9951"},{"alias":"3-OST-3B","entrezGeneId":"9953"},{"alias":"3OST3B1","entrezGeneId":"9953"},{"alias":"h3-OST-3B","entrezGeneId":"9953"},{"alias":"3-OST-3A","entrezGeneId":"9955"},{"alias":"3OST3A1","entrezGeneId":"9955"},{"alias":"30ST2","entrezGeneId":"9956"},{"alias":"3OST2","entrezGeneId":"9956"},{"alias":"3OST","entrezGeneId":"9957"},{"alias":"3OST1","entrezGeneId":"9957"},{"alias":"UNPH-2","entrezGeneId":"9958"},{"alias":"UNPH4","entrezGeneId":"9958"},{"alias":"UBH1","entrezGeneId":"9959"},{"alias":"USP12","entrezGeneId":"9959"},{"alias":"SIH003","entrezGeneId":"9960"},{"alias":"UBP","entrezGeneId":"9960"},{"alias":"LRP","entrezGeneId":"9961"},{"alias":"VAULT1","entrezGeneId":"9961"},{"alias":"NBTL1","entrezGeneId":"9962"},{"alias":"SLC23A1","entrezGeneId":"9962"},{"alias":"SVCT2","entrezGeneId":"9962"},{"alias":"YSPL2","entrezGeneId":"9962"},{"alias":"SLC23A2","entrezGeneId":"9963"},{"alias":"SVCT1","entrezGeneId":"9963"},{"alias":"YSPL3","entrezGeneId":"9963"},{"alias":"MYCL3","entrezGeneId":"9964"},{"alias":"TL1","entrezGeneId":"9966"},{"alias":"TL1A","entrezGeneId":"9966"},{"alias":"TNLG1B","entrezGeneId":"9966"},{"alias":"VEGI","entrezGeneId":"9966"},{"alias":"VEGI192A","entrezGeneId":"9966"},{"alias":"BCLAF2","entrezGeneId":"9967"},{"alias":"TRAP150","entrezGeneId":"9967"},{"alias":"ARC240","entrezGeneId":"9968"},{"alias":"CAGH45","entrezGeneId":"9968"},{"alias":"FGS1","entrezGeneId":"9968"},{"alias":"HOPA","entrezGeneId":"9968"},{"alias":"MED12S","entrezGeneId":"9968"},{"alias":"OHDOX","entrezGeneId":"9968"},{"alias":"OKS","entrezGeneId":"9968"},{"alias":"OPA1","entrezGeneId":"9968"},{"alias":"TNRC11","entrezGeneId":"9968"},{"alias":"TRAP230","entrezGeneId":"9968"},{"alias":"ARC250","entrezGeneId":"9969"},{"alias":"DRIP250","entrezGeneId":"9969"},{"alias":"HSPC221","entrezGeneId":"9969"},{"alias":"THRAP1","entrezGeneId":"9969"},{"alias":"TRAP240","entrezGeneId":"9969"},{"alias":"CAR","entrezGeneId":"9970"},{"alias":"CAR1","entrezGeneId":"9970"},{"alias":"MB67","entrezGeneId":"9970"},{"alias":"BAR","entrezGeneId":"9971"},{"alias":"FXR","entrezGeneId":"9971"},{"alias":"HRR-1","entrezGeneId":"9971"},{"alias":"HRR1","entrezGeneId":"9971"},{"alias":"PFIC5","entrezGeneId":"9971"},{"alias":"RIP14","entrezGeneId":"9971"},{"alias":"HNUP153","entrezGeneId":"9972"},{"alias":"N153","entrezGeneId":"9972"},{"alias":"BD73","entrezGeneId":"9975"},{"alias":"EAR-1R","entrezGeneId":"9975"},{"alias":"REVERBB","entrezGeneId":"9975"},{"alias":"REVERBbeta","entrezGeneId":"9975"},{"alias":"RVR","entrezGeneId":"9975"},{"alias":"AICL","entrezGeneId":"9976"},{"alias":"CLECSF2","entrezGeneId":"9976"},{"alias":"HP10085","entrezGeneId":"9976"},{"alias":"IFNRG1","entrezGeneId":"9976"},{"alias":"BA554C12.1","entrezGeneId":"9978"},{"alias":"RNF75","entrezGeneId":"9978"},{"alias":"ROC1","entrezGeneId":"9978"},{"alias":"21orf5","entrezGeneId":"9980"},{"alias":"C21orf5","entrezGeneId":"9980"},{"alias":"FGF-BP","entrezGeneId":"9982"},{"alias":"FGF-BP1","entrezGeneId":"9982"},{"alias":"FGFBP","entrezGeneId":"9982"},{"alias":"FGFBP-1","entrezGeneId":"9982"},{"alias":"HBP17","entrezGeneId":"9982"},{"alias":"HPR1","entrezGeneId":"9984"},{"alias":"P84","entrezGeneId":"9984"},{"alias":"P84N5","entrezGeneId":"9984"},{"alias":"HR21spB","entrezGeneId":"9985"},{"alias":"REC8L1","entrezGeneId":"9985"},{"alias":"Rec8p","entrezGeneId":"9985"},{"alias":"FACE2","entrezGeneId":"9986"},{"alias":"RCE1A","entrezGeneId":"9986"},{"alias":"RCE1B","entrezGeneId":"9986"},{"alias":"HNRNP","entrezGeneId":"9987"},{"alias":"HNRPDL","entrezGeneId":"9987"},{"alias":"JKTBP","entrezGeneId":"9987"},{"alias":"JKTBP2","entrezGeneId":"9987"},{"alias":"laAUF1","entrezGeneId":"9987"},{"alias":"LGMD1G","entrezGeneId":"9987"},{"alias":"DMP1","entrezGeneId":"9988"},{"alias":"DMTF","entrezGeneId":"9988"},{"alias":"hDMP1","entrezGeneId":"9988"},{"alias":"MRUL","entrezGeneId":"9988"},{"alias":"MEG1","entrezGeneId":"9989"},{"alias":"PP4(Rmeg)","entrezGeneId":"9989"},{"alias":"PP4R1","entrezGeneId":"9989"},{"alias":"ACCPN","entrezGeneId":"9990"},{"alias":"KCC3","entrezGeneId":"9990"},{"alias":"KCC3A","entrezGeneId":"9990"},{"alias":"KCC3B","entrezGeneId":"9990"},{"alias":"ROD1","entrezGeneId":"9991"},{"alias":"ATFB4","entrezGeneId":"9992"},{"alias":"LQT5","entrezGeneId":"9992"},{"alias":"LQT6","entrezGeneId":"9992"},{"alias":"MIRP1","entrezGeneId":"9992"},{"alias":"DGS-C","entrezGeneId":"9993"},{"alias":"IDD","entrezGeneId":"9993"},{"alias":"LAN","entrezGeneId":"9993"},{"alias":"SEZ-12","entrezGeneId":"9993"},{"alias":"CED-4","entrezGeneId":"9994"},{"alias":"FLASH","entrezGeneId":"9994"},{"alias":"RIP25","entrezGeneId":"9994"},{"alias":"ELK2.2","entrezGeneId":"9995"},{"alias":"ELK2P2","entrezGeneId":"9995"},{"alias":"CEMCOX1","entrezGeneId":"9997"},{"alias":"MYP6","entrezGeneId":"9997"},{"alias":"SCO1L","entrezGeneId":"9997"},{"alias":"MPPH","entrezGeneId":"10000"},{"alias":"MPPH2","entrezGeneId":"10000"},{"alias":"PKB-GAMMA","entrezGeneId":"10000"},{"alias":"PKBG","entrezGeneId":"10000"},{"alias":"PRKBG","entrezGeneId":"10000"},{"alias":"RAC-gamma","entrezGeneId":"10000"},{"alias":"RAC-PK-gamma","entrezGeneId":"10000"},{"alias":"STK-2","entrezGeneId":"10000"},{"alias":"ARC33","entrezGeneId":"10001"},{"alias":"NY-REN-28","entrezGeneId":"10001"},{"alias":"ESCS","entrezGeneId":"10002"},{"alias":"PNR","entrezGeneId":"10002"},{"alias":"rd7","entrezGeneId":"10002"},{"alias":"RNR","entrezGeneId":"10002"},{"alias":"RP37","entrezGeneId":"10002"},{"alias":"GCPIII","entrezGeneId":"10003"},{"alias":"GPCIII","entrezGeneId":"10003"},{"alias":"NAADALASE2","entrezGeneId":"10003"},{"alias":"NAALADASE2","entrezGeneId":"10003"},{"alias":"I100","entrezGeneId":"10004"},{"alias":"NAALADASEL","entrezGeneId":"10004"},{"alias":"hACTE-III","entrezGeneId":"10005"},{"alias":"HNAACTE","entrezGeneId":"10005"},{"alias":"hTE","entrezGeneId":"10005"},{"alias":"NAP1","entrezGeneId":"10005"},{"alias":"PTE-1","entrezGeneId":"10005"},{"alias":"PTE-2","entrezGeneId":"10005"},{"alias":"PTE1","entrezGeneId":"10005"},{"alias":"PTE2","entrezGeneId":"10005"},{"alias":"ABI-1","entrezGeneId":"10006"},{"alias":"ABLBP4","entrezGeneId":"10006"},{"alias":"E3B1","entrezGeneId":"10006"},{"alias":"NAP1BP","entrezGeneId":"10006"},{"alias":"SSH3BP","entrezGeneId":"10006"},{"alias":"SSH3BP1","entrezGeneId":"10006"},{"alias":"GNP1","entrezGeneId":"10007"},{"alias":"GNPDA","entrezGeneId":"10007"},{"alias":"GNPI","entrezGeneId":"10007"},{"alias":"GPI","entrezGeneId":"10007"},{"alias":"HLN","entrezGeneId":"10007"},{"alias":"HOKPP","entrezGeneId":"10008"},{"alias":"HYPP","entrezGeneId":"10008"},{"alias":"MiRP2","entrezGeneId":"10008"},{"alias":"ZNF-kaiso","entrezGeneId":"10009"},{"alias":"ZNF348","entrezGeneId":"10009"},{"alias":"I-TRAF","entrezGeneId":"10010"},{"alias":"ITRAF","entrezGeneId":"10010"},{"alias":"TRAF2","entrezGeneId":"10010"},{"alias":"pp7684","entrezGeneId":"10011"},{"alias":"SRA","entrezGeneId":"10011"},{"alias":"SRAP","entrezGeneId":"10011"},{"alias":"STRAA1","entrezGeneId":"10011"},{"alias":"CPBHM","entrezGeneId":"10013"},{"alias":"HD6","entrezGeneId":"10013"},{"alias":"JM21","entrezGeneId":"10013"},{"alias":"PPP1R90","entrezGeneId":"10013"},{"alias":"HD5","entrezGeneId":"10014"},{"alias":"NY-CO-9","entrezGeneId":"10014"},{"alias":"AIP1","entrezGeneId":"10015"},{"alias":"ALIX","entrezGeneId":"10015"},{"alias":"DRIP4","entrezGeneId":"10015"},{"alias":"HP95","entrezGeneId":"10015"},{"alias":"ALG-2","entrezGeneId":"10016"},{"alias":"ALG2","entrezGeneId":"10016"},{"alias":"PEF1B","entrezGeneId":"10016"},{"alias":"BCL-B","entrezGeneId":"10017"},{"alias":"bcl2-L-10","entrezGeneId":"10017"},{"alias":"Boo","entrezGeneId":"10017"},{"alias":"Diva","entrezGeneId":"10017"},{"alias":"BAM","entrezGeneId":"10018"},{"alias":"BIM","entrezGeneId":"10018"},{"alias":"BOD","entrezGeneId":"10018"},{"alias":"IDDM20","entrezGeneId":"10019"},{"alias":"LNK","entrezGeneId":"10019"},{"alias":"DMRV","entrezGeneId":"10020"},{"alias":"GLCNE","entrezGeneId":"10020"},{"alias":"IBM2","entrezGeneId":"10020"},{"alias":"NM","entrezGeneId":"10020"},{"alias":"Uae1","entrezGeneId":"10020"},{"alias":"SSS2","entrezGeneId":"10021"},{"alias":"PRO182","entrezGeneId":"10022"},{"alias":"UNQ156","entrezGeneId":"10022"},{"alias":"TASTIN","entrezGeneId":"10024"},{"alias":"DRIP92","entrezGeneId":"10025"},{"alias":"THRAP5","entrezGeneId":"10025"},{"alias":"TRAP95","entrezGeneId":"10025"},{"alias":"GPI8","entrezGeneId":"10026"},{"alias":"CASKP","entrezGeneId":"10029"},{"alias":"APXLP","entrezGeneId":"10031"},{"alias":"ARSEP","entrezGeneId":"10033"},{"alias":"ARSDP","entrezGeneId":"10034"},{"alias":"ARSDY1","entrezGeneId":"10034"},{"alias":"CAF-1","entrezGeneId":"10036"},{"alias":"CAF1","entrezGeneId":"10036"},{"alias":"CAF1B","entrezGeneId":"10036"},{"alias":"CAF1P150","entrezGeneId":"10036"},{"alias":"P150","entrezGeneId":"10036"},{"alias":"ADPRT2","entrezGeneId":"10038"},{"alias":"ADPRTL2","entrezGeneId":"10038"},{"alias":"ADPRTL3","entrezGeneId":"10038"},{"alias":"ARTD2","entrezGeneId":"10038"},{"alias":"pADPRT-2","entrezGeneId":"10038"},{"alias":"PARP-2","entrezGeneId":"10038"},{"alias":"ADPRT3","entrezGeneId":"10039"},{"alias":"ADPRTL2","entrezGeneId":"10039"},{"alias":"ADPRTL3","entrezGeneId":"10039"},{"alias":"ARTD3","entrezGeneId":"10039"},{"alias":"IRT1","entrezGeneId":"10039"},{"alias":"PADPRT-3","entrezGeneId":"10039"},{"alias":"SRCASM","entrezGeneId":"10040"},{"alias":"HMG2L1","entrezGeneId":"10042"},{"alias":"HMGBCG","entrezGeneId":"10042"},{"alias":"THC211630","entrezGeneId":"10042"},{"alias":"CHAT","entrezGeneId":"10044"},{"alias":"NSP3","entrezGeneId":"10044"},{"alias":"PRO34088","entrezGeneId":"10044"},{"alias":"SHEP1","entrezGeneId":"10044"},{"alias":"NSP1","entrezGeneId":"10045"},{"alias":"CG1","entrezGeneId":"10046"},{"alias":"CXorf6","entrezGeneId":"10046"},{"alias":"F18","entrezGeneId":"10046"},{"alias":"HYSP2","entrezGeneId":"10046"},{"alias":"CRES","entrezGeneId":"10047"},{"alias":"CTES5","entrezGeneId":"10047"},{"alias":"BPM-L","entrezGeneId":"10048"},{"alias":"BPM90","entrezGeneId":"10048"},{"alias":"RanBP7","entrezGeneId":"10048"},{"alias":"RANBPM","entrezGeneId":"10048"},{"alias":"DJ4","entrezGeneId":"10049"},{"alias":"DnaJ","entrezGeneId":"10049"},{"alias":"HHDJ1","entrezGeneId":"10049"},{"alias":"HSJ-2","entrezGeneId":"10049"},{"alias":"HSJ2","entrezGeneId":"10049"},{"alias":"LGMD1D","entrezGeneId":"10049"},{"alias":"LGMD1E","entrezGeneId":"10049"},{"alias":"MRJ","entrezGeneId":"10049"},{"alias":"MSJ-1","entrezGeneId":"10049"},{"alias":"KAIA2138","entrezGeneId":"10050"},{"alias":"CAP-C","entrezGeneId":"10051"},{"alias":"CAPC","entrezGeneId":"10051"},{"alias":"SMC-4","entrezGeneId":"10051"},{"alias":"SMC4L1","entrezGeneId":"10051"},{"alias":"CX45","entrezGeneId":"10052"},{"alias":"GJA7","entrezGeneId":"10052"},{"alias":"AP1-mu2","entrezGeneId":"10053"},{"alias":"HSMU1B","entrezGeneId":"10053"},{"alias":"MU-1B","entrezGeneId":"10053"},{"alias":"MU1B","entrezGeneId":"10053"},{"alias":"mu2","entrezGeneId":"10053"},{"alias":"ARX","entrezGeneId":"10054"},{"alias":"HRIHFB2115","entrezGeneId":"10054"},{"alias":"SAE2","entrezGeneId":"10054"},{"alias":"AOS1","entrezGeneId":"10055"},{"alias":"HSPC140","entrezGeneId":"10055"},{"alias":"SUA1","entrezGeneId":"10055"},{"alias":"UBLE1A","entrezGeneId":"10055"},{"alias":"FARSLB","entrezGeneId":"10056"},{"alias":"FRSB","entrezGeneId":"10056"},{"alias":"HSPC173","entrezGeneId":"10056"},{"alias":"PheHB","entrezGeneId":"10056"},{"alias":"PheRS","entrezGeneId":"10056"},{"alias":"ABC33","entrezGeneId":"10057"},{"alias":"EST277145","entrezGeneId":"10057"},{"alias":"MOAT-C","entrezGeneId":"10057"},{"alias":"MOATC","entrezGeneId":"10057"},{"alias":"MRP5","entrezGeneId":"10057"},{"alias":"pABC11","entrezGeneId":"10057"},{"alias":"SMRP","entrezGeneId":"10057"},{"alias":"ABC","entrezGeneId":"10058"},{"alias":"LAN","entrezGeneId":"10058"},{"alias":"MTABC3","entrezGeneId":"10058"},{"alias":"PRP","entrezGeneId":"10058"},{"alias":"umat","entrezGeneId":"10058"},{"alias":"DLP1","entrezGeneId":"10059"},{"alias":"DRP1","entrezGeneId":"10059"},{"alias":"DVLP","entrezGeneId":"10059"},{"alias":"DYMPLE","entrezGeneId":"10059"},{"alias":"EMPF","entrezGeneId":"10059"},{"alias":"EMPF1","entrezGeneId":"10059"},{"alias":"HDYNIV","entrezGeneId":"10059"},{"alias":"OPA5","entrezGeneId":"10059"},{"alias":"ABC37","entrezGeneId":"10060"},{"alias":"ATFB12","entrezGeneId":"10060"},{"alias":"CANTU","entrezGeneId":"10060"},{"alias":"CMD1O","entrezGeneId":"10060"},{"alias":"SUR2","entrezGeneId":"10060"},{"alias":"ABC28","entrezGeneId":"10061"},{"alias":"EST133090","entrezGeneId":"10061"},{"alias":"HUSSY-18","entrezGeneId":"10061"},{"alias":"HUSSY18","entrezGeneId":"10061"},{"alias":"LXR-a","entrezGeneId":"10062"},{"alias":"LXRA","entrezGeneId":"10062"},{"alias":"RLD-1","entrezGeneId":"10062"},{"alias":"VDAC1LP","entrezGeneId":"10064"},{"alias":"C1orf3","entrezGeneId":"10067"},{"alias":"IL18BPa","entrezGeneId":"10068"},{"alias":"C21orf6","entrezGeneId":"10069"},{"alias":"GL011","entrezGeneId":"10069"},{"alias":"MUC-11","entrezGeneId":"10071"},{"alias":"MUC-12","entrezGeneId":"10071"},{"alias":"MUC11","entrezGeneId":"10071"},{"alias":"DPPIII","entrezGeneId":"10072"},{"alias":"KPNBL","entrezGeneId":"10073"},{"alias":"RNUT1","entrezGeneId":"10073"},{"alias":"Snurportin1","entrezGeneId":"10073"},{"alias":"ARF-BP1","entrezGeneId":"10075"},{"alias":"HECTH9","entrezGeneId":"10075"},{"alias":"HSPC272","entrezGeneId":"10075"},{"alias":"Ib772","entrezGeneId":"10075"},{"alias":"LASU1","entrezGeneId":"10075"},{"alias":"MULE","entrezGeneId":"10075"},{"alias":"URE-B1","entrezGeneId":"10075"},{"alias":"UREB1","entrezGeneId":"10075"},{"alias":"FMI","entrezGeneId":"10076"},{"alias":"hPTP-J","entrezGeneId":"10076"},{"alias":"PCP-2","entrezGeneId":"10076"},{"alias":"PTP","entrezGeneId":"10076"},{"alias":"PTP-J","entrezGeneId":"10076"},{"alias":"PTP-PI","entrezGeneId":"10076"},{"alias":"PTP-RO","entrezGeneId":"10076"},{"alias":"PTPPSI","entrezGeneId":"10076"},{"alias":"PTPRO","entrezGeneId":"10076"},{"alias":"PTPU2","entrezGeneId":"10076"},{"alias":"R-PTP-PSI","entrezGeneId":"10076"},{"alias":"R-PTP-U","entrezGeneId":"10076"},{"alias":"ART1","entrezGeneId":"10077"},{"alias":"PHEMX","entrezGeneId":"10077"},{"alias":"PHMX","entrezGeneId":"10077"},{"alias":"TSSC6","entrezGeneId":"10077"},{"alias":"ATPIIA","entrezGeneId":"10079"},{"alias":"ES18","entrezGeneId":"10081"},{"alias":"HES18","entrezGeneId":"10081"},{"alias":"OMIMD1","entrezGeneId":"10082"},{"alias":"AIE-75","entrezGeneId":"10083"},{"alias":"DFNB18","entrezGeneId":"10083"},{"alias":"DFNB18A","entrezGeneId":"10083"},{"alias":"NY-CO-37","entrezGeneId":"10083"},{"alias":"NY-CO-38","entrezGeneId":"10083"},{"alias":"PDZ-45","entrezGeneId":"10083"},{"alias":"PDZ-73","entrezGeneId":"10083"},{"alias":"PDZ-73/NY-CO-38","entrezGeneId":"10083"},{"alias":"PDZ73","entrezGeneId":"10083"},{"alias":"PDZD7C","entrezGeneId":"10083"},{"alias":"ush1cpst","entrezGeneId":"10083"},{"alias":"MRX2","entrezGeneId":"10084"},{"alias":"MRX55","entrezGeneId":"10084"},{"alias":"MRXS3","entrezGeneId":"10084"},{"alias":"MRXS8","entrezGeneId":"10084"},{"alias":"NPW38","entrezGeneId":"10084"},{"alias":"RENS1","entrezGeneId":"10084"},{"alias":"SHS","entrezGeneId":"10084"},{"alias":"DEL1","entrezGeneId":"10085"},{"alias":"PLA2L","entrezGeneId":"10086"},{"alias":"CERT","entrezGeneId":"10087"},{"alias":"CERTL","entrezGeneId":"10087"},{"alias":"GPBP","entrezGeneId":"10087"},{"alias":"MRD34","entrezGeneId":"10087"},{"alias":"STARD11","entrezGeneId":"10087"},{"alias":"K2p7.1","entrezGeneId":"10089"},{"alias":"TWIK3","entrezGeneId":"10089"},{"alias":"2OST","entrezGeneId":"10090"},{"alias":"ARC16","entrezGeneId":"10092"},{"alias":"dJ127C7.3","entrezGeneId":"10092"},{"alias":"p16-Arc","entrezGeneId":"10092"},{"alias":"ARC20","entrezGeneId":"10093"},{"alias":"P20-ARC","entrezGeneId":"10093"},{"alias":"ARC21","entrezGeneId":"10094"},{"alias":"p21-Arc","entrezGeneId":"10094"},{"alias":"ARC41","entrezGeneId":"10095"},{"alias":"p40-ARC","entrezGeneId":"10095"},{"alias":"p41-ARC","entrezGeneId":"10095"},{"alias":"PLTEID","entrezGeneId":"10095"},{"alias":"ARP3","entrezGeneId":"10096"},{"alias":"ARP2","entrezGeneId":"10097"},{"alias":"NET-4","entrezGeneId":"10098"},{"alias":"NET4","entrezGeneId":"10098"},{"alias":"TM4SF9","entrezGeneId":"10098"},{"alias":"TSPAN-5","entrezGeneId":"10098"},{"alias":"TM4-A","entrezGeneId":"10099"},{"alias":"TM4SF8","entrezGeneId":"10099"},{"alias":"TSPAN-3","entrezGeneId":"10099"},{"alias":"NET3","entrezGeneId":"10100"},{"alias":"TSN2","entrezGeneId":"10100"},{"alias":"TSPAN-2","entrezGeneId":"10100"},{"alias":"CFD1","entrezGeneId":"10101"},{"alias":"NBP 2","entrezGeneId":"10101"},{"alias":"NUBP1","entrezGeneId":"10101"},{"alias":"EFTS","entrezGeneId":"10102"},{"alias":"EFTSMT","entrezGeneId":"10102"},{"alias":"NET1","entrezGeneId":"10103"},{"alias":"TM4C","entrezGeneId":"10103"},{"alias":"TM4SF","entrezGeneId":"10103"},{"alias":"Cyp-D","entrezGeneId":"10105"},{"alias":"CyP-M","entrezGeneId":"10105"},{"alias":"CYP3","entrezGeneId":"10105"},{"alias":"CypD","entrezGeneId":"10105"},{"alias":"OS4","entrezGeneId":"10106"},{"alias":"PSR2","entrezGeneId":"10106"},{"alias":"SCP2","entrezGeneId":"10106"},{"alias":"HERF1","entrezGeneId":"10107"},{"alias":"RFB30","entrezGeneId":"10107"},{"alias":"RNF9","entrezGeneId":"10107"},{"alias":"FNZ127","entrezGeneId":"10108"},{"alias":"MKRN3-AS","entrezGeneId":"10108"},{"alias":"MKRN3AS","entrezGeneId":"10108"},{"alias":"NCRNA00009","entrezGeneId":"10108"},{"alias":"ZNF127-AS","entrezGeneId":"10108"},{"alias":"ZNF127AS","entrezGeneId":"10108"},{"alias":"ARC34","entrezGeneId":"10109"},{"alias":"p34-Arc","entrezGeneId":"10109"},{"alias":"PNAS-139","entrezGeneId":"10109"},{"alias":"PRO2446","entrezGeneId":"10109"},{"alias":"dJ138B7.2","entrezGeneId":"10110"},{"alias":"H-SGK2","entrezGeneId":"10110"},{"alias":"hRad50","entrezGeneId":"10111"},{"alias":"NBSLD","entrezGeneId":"10111"},{"alias":"RAD502","entrezGeneId":"10111"},{"alias":"MKLP2","entrezGeneId":"10112"},{"alias":"RAB6KIFL","entrezGeneId":"10112"},{"alias":"SEC12","entrezGeneId":"10113"},{"alias":"DYRK6","entrezGeneId":"10114"},{"alias":"FIST3","entrezGeneId":"10114"},{"alias":"PKY","entrezGeneId":"10114"},{"alias":"YAK1","entrezGeneId":"10114"},{"alias":"F1A-ALPHA","entrezGeneId":"10116"},{"alias":"F1AA","entrezGeneId":"10116"},{"alias":"FEM1-beta","entrezGeneId":"10116"},{"alias":"ADAI","entrezGeneId":"10117"},{"alias":"AI1C","entrezGeneId":"10117"},{"alias":"AIH2","entrezGeneId":"10117"},{"alias":"ARP1B","entrezGeneId":"10120"},{"alias":"CTRN2","entrezGeneId":"10120"},{"alias":"PC3","entrezGeneId":"10120"},{"alias":"ARP1","entrezGeneId":"10121"},{"alias":"Arp1A","entrezGeneId":"10121"},{"alias":"CTRN1","entrezGeneId":"10121"},{"alias":"ARL7","entrezGeneId":"10123"},{"alias":"LAK","entrezGeneId":"10123"},{"alias":"ARL4","entrezGeneId":"10124"},{"alias":"CALDAG-GEFI","entrezGeneId":"10125"},{"alias":"CALDAG-GEFII","entrezGeneId":"10125"},{"alias":"hRasGRP1","entrezGeneId":"10125"},{"alias":"RASGRP","entrezGeneId":"10125"},{"alias":"V","entrezGeneId":"10125"},{"alias":"MRMV3","entrezGeneId":"10126"},{"alias":"PIG27","entrezGeneId":"10126"},{"alias":"FPM315","entrezGeneId":"10127"},{"alias":"ZKSCAN12","entrezGeneId":"10127"},{"alias":"ZSCAN44","entrezGeneId":"10127"},{"alias":"CLONE-23970","entrezGeneId":"10128"},{"alias":"GP130","entrezGeneId":"10128"},{"alias":"LRP130","entrezGeneId":"10128"},{"alias":"LSFC","entrezGeneId":"10128"},{"alias":"13CDNA73","entrezGeneId":"10129"},{"alias":"214K23.2","entrezGeneId":"10129"},{"alias":"bA207N4.2","entrezGeneId":"10129"},{"alias":"bA37E23.1","entrezGeneId":"10129"},{"alias":"C13orf14","entrezGeneId":"10129"},{"alias":"CG003","entrezGeneId":"10129"},{"alias":"ERP5","entrezGeneId":"10130"},{"alias":"P5","entrezGeneId":"10130"},{"alias":"TXNDC7","entrezGeneId":"10130"},{"alias":"HSP 75","entrezGeneId":"10131"},{"alias":"HSP75","entrezGeneId":"10131"},{"alias":"HSP90L","entrezGeneId":"10131"},{"alias":"TRAP-1","entrezGeneId":"10131"},{"alias":"ALS12","entrezGeneId":"10133"},{"alias":"FIP2","entrezGeneId":"10133"},{"alias":"GLC1E","entrezGeneId":"10133"},{"alias":"HIP7","entrezGeneId":"10133"},{"alias":"HYPL","entrezGeneId":"10133"},{"alias":"NRP","entrezGeneId":"10133"},{"alias":"TFIIIA-INTP","entrezGeneId":"10133"},{"alias":"6C6-AG","entrezGeneId":"10134"},{"alias":"BAP31","entrezGeneId":"10134"},{"alias":"CDM","entrezGeneId":"10134"},{"alias":"DDCH","entrezGeneId":"10134"},{"alias":"DXS1357E","entrezGeneId":"10134"},{"alias":"1110035O14Rik","entrezGeneId":"10135"},{"alias":"PBEF","entrezGeneId":"10135"},{"alias":"PBEF1","entrezGeneId":"10135"},{"alias":"VF","entrezGeneId":"10135"},{"alias":"VISFATIN","entrezGeneId":"10135"},{"alias":"ELA3","entrezGeneId":"10136"},{"alias":"ELA3A","entrezGeneId":"10136"},{"alias":"HRIHFB2091","entrezGeneId":"10137"},{"alias":"SCZD19","entrezGeneId":"10137"},{"alias":"SWAN","entrezGeneId":"10137"},{"alias":"ARL18","entrezGeneId":"10139"},{"alias":"ARP","entrezGeneId":"10139"},{"alias":"Arp1","entrezGeneId":"10139"},{"alias":"APRO5","entrezGeneId":"10140"},{"alias":"APRO6","entrezGeneId":"10140"},{"alias":"PIG49","entrezGeneId":"10140"},{"alias":"TOB","entrezGeneId":"10140"},{"alias":"TROB","entrezGeneId":"10140"},{"alias":"TROB1","entrezGeneId":"10140"},{"alias":"aC1","entrezGeneId":"10141"},{"alias":"C4orf6","entrezGeneId":"10141"},{"alias":"AKAP-9","entrezGeneId":"10142"},{"alias":"AKAP350","entrezGeneId":"10142"},{"alias":"AKAP450","entrezGeneId":"10142"},{"alias":"CG-NAP","entrezGeneId":"10142"},{"alias":"HYPERION","entrezGeneId":"10142"},{"alias":"LQT11","entrezGeneId":"10142"},{"alias":"MU-RMS-40.16A","entrezGeneId":"10142"},{"alias":"PPP1R45","entrezGeneId":"10142"},{"alias":"PRKA9","entrezGeneId":"10142"},{"alias":"YOTIAO","entrezGeneId":"10142"},{"alias":"CLECSF1","entrezGeneId":"10143"},{"alias":"ARHGAP48","entrezGeneId":"10144"},{"alias":"FAM13A1","entrezGeneId":"10144"},{"alias":"G3BP","entrezGeneId":"10146"},{"alias":"HDH-VIII","entrezGeneId":"10146"},{"alias":"SFRS14","entrezGeneId":"10147"},{"alias":"SRFS14","entrezGeneId":"10147"},{"alias":"IL-27B","entrezGeneId":"10148"},{"alias":"IL27B","entrezGeneId":"10148"},{"alias":"IL35B","entrezGeneId":"10148"},{"alias":"CBAVDX","entrezGeneId":"10149"},{"alias":"EDDM6","entrezGeneId":"10149"},{"alias":"GPR64","entrezGeneId":"10149"},{"alias":"HE6","entrezGeneId":"10149"},{"alias":"TM7LN2","entrezGeneId":"10149"},{"alias":"MBLL","entrezGeneId":"10150"},{"alias":"MBLL39","entrezGeneId":"10150"},{"alias":"PRO2032","entrezGeneId":"10150"},{"alias":"D10S102","entrezGeneId":"10151"},{"alias":"FBRNP","entrezGeneId":"10151"},{"alias":"HNRPA3","entrezGeneId":"10151"},{"alias":"HNRPA3P1","entrezGeneId":"10151"},{"alias":"ABI-2","entrezGeneId":"10152"},{"alias":"ABI2B","entrezGeneId":"10152"},{"alias":"AblBP3","entrezGeneId":"10152"},{"alias":"AIP-1","entrezGeneId":"10152"},{"alias":"argBP1","entrezGeneId":"10152"},{"alias":"argBPIA","entrezGeneId":"10152"},{"alias":"argBPIB","entrezGeneId":"10152"},{"alias":"SSH3BP2","entrezGeneId":"10152"},{"alias":"CBF","entrezGeneId":"10153"},{"alias":"CBF2","entrezGeneId":"10153"},{"alias":"HSP-CBF","entrezGeneId":"10153"},{"alias":"NOC1","entrezGeneId":"10153"},{"alias":"CD232","entrezGeneId":"10154"},{"alias":"PLXN-C1","entrezGeneId":"10154"},{"alias":"VESPR","entrezGeneId":"10154"},{"alias":"KAP1","entrezGeneId":"10155"},{"alias":"PPP1R157","entrezGeneId":"10155"},{"alias":"RNF96","entrezGeneId":"10155"},{"alias":"TF1B","entrezGeneId":"10155"},{"alias":"TIF1B","entrezGeneId":"10155"},{"alias":"CAPRI","entrezGeneId":"10156"},{"alias":"GAPL","entrezGeneId":"10156"},{"alias":"LKR/SDH","entrezGeneId":"10157"},{"alias":"LKRSDH","entrezGeneId":"10157"},{"alias":"LORSDH","entrezGeneId":"10157"},{"alias":"DD96","entrezGeneId":"10158"},{"alias":"MAP17","entrezGeneId":"10158"},{"alias":"SPAP","entrezGeneId":"10158"},{"alias":"APT6M8-9","entrezGeneId":"10159"},{"alias":"ATP6IP2","entrezGeneId":"10159"},{"alias":"ATP6M8-9","entrezGeneId":"10159"},{"alias":"ELDF10","entrezGeneId":"10159"},{"alias":"HT028","entrezGeneId":"10159"},{"alias":"M8-9","entrezGeneId":"10159"},{"alias":"MRXE","entrezGeneId":"10159"},{"alias":"MRXSH","entrezGeneId":"10159"},{"alias":"MSTP009","entrezGeneId":"10159"},{"alias":"PRR","entrezGeneId":"10159"},{"alias":"RENR","entrezGeneId":"10159"},{"alias":"XMRE","entrezGeneId":"10159"},{"alias":"XPDS","entrezGeneId":"10159"},{"alias":"CDEP","entrezGeneId":"10160"},{"alias":"FARP1-IT1","entrezGeneId":"10160"},{"alias":"PLEKHC2","entrezGeneId":"10160"},{"alias":"PPP1R75","entrezGeneId":"10160"},{"alias":"ARWH1","entrezGeneId":"10161"},{"alias":"HYPT8","entrezGeneId":"10161"},{"alias":"LAH3","entrezGeneId":"10161"},{"alias":"P2RY5","entrezGeneId":"10161"},{"alias":"P2Y5","entrezGeneId":"10161"},{"alias":"C3F","entrezGeneId":"10162"},{"alias":"LPCAT","entrezGeneId":"10162"},{"alias":"LPLAT 5","entrezGeneId":"10162"},{"alias":"LPSAT","entrezGeneId":"10162"},{"alias":"MBOAT5","entrezGeneId":"10162"},{"alias":"nessy","entrezGeneId":"10162"},{"alias":"OACT5","entrezGeneId":"10162"},{"alias":"dJ393P12.2","entrezGeneId":"10163"},{"alias":"IMD2","entrezGeneId":"10163"},{"alias":"SCAR2","entrezGeneId":"10163"},{"alias":"WASF4","entrezGeneId":"10163"},{"alias":"WAVE2","entrezGeneId":"10163"},{"alias":"GlcNAc6ST2","entrezGeneId":"10164"},{"alias":"GST3","entrezGeneId":"10164"},{"alias":"HECGLCNAC6ST","entrezGeneId":"10164"},{"alias":"LSST","entrezGeneId":"10164"},{"alias":"ARALAR2","entrezGeneId":"10165"},{"alias":"CITRIN","entrezGeneId":"10165"},{"alias":"CTLN2","entrezGeneId":"10165"},{"alias":"D13S327","entrezGeneId":"10166"},{"alias":"HHH","entrezGeneId":"10166"},{"alias":"ORC1","entrezGeneId":"10166"},{"alias":"ORNT1","entrezGeneId":"10166"},{"alias":"D3S1363E","entrezGeneId":"10168"},{"alias":"P18","entrezGeneId":"10168"},{"alias":"VHLaK","entrezGeneId":"10168"},{"alias":"ZKSCAN9","entrezGeneId":"10168"},{"alias":"ZNF166","entrezGeneId":"10168"},{"alias":"ZNF20","entrezGeneId":"10168"},{"alias":"ZSCAN41","entrezGeneId":"10168"},{"alias":"4F5REL","entrezGeneId":"10169"},{"alias":"FAM2C","entrezGeneId":"10169"},{"alias":"H4F5REL","entrezGeneId":"10169"},{"alias":"HsT17089","entrezGeneId":"10169"},{"alias":"3-alpha-HSD","entrezGeneId":"10170"},{"alias":"3ALPHA-HSD","entrezGeneId":"10170"},{"alias":"RDH-E2","entrezGeneId":"10170"},{"alias":"RDH-TBE","entrezGeneId":"10170"},{"alias":"RDH15","entrezGeneId":"10170"},{"alias":"RDHL","entrezGeneId":"10170"},{"alias":"RDHTBE","entrezGeneId":"10170"},{"alias":"RETSDR8","entrezGeneId":"10170"},{"alias":"SDR9C4","entrezGeneId":"10170"},{"alias":"RNAC","entrezGeneId":"10171"},{"alias":"RPCL1","entrezGeneId":"10171"},{"alias":"BMZF-3","entrezGeneId":"10172"},{"alias":"BMZF3","entrezGeneId":"10172"},{"alias":"SCAM-1","entrezGeneId":"10174"},{"alias":"SCAM1","entrezGeneId":"10174"},{"alias":"SH3D4","entrezGeneId":"10174"},{"alias":"CNIH","entrezGeneId":"10175"},{"alias":"CNIH-1","entrezGeneId":"10175"},{"alias":"CNIL","entrezGeneId":"10175"},{"alias":"TGAM77","entrezGeneId":"10175"},{"alias":"ODZ1","entrezGeneId":"10178"},{"alias":"ODZ3","entrezGeneId":"10178"},{"alias":"TEN-M1","entrezGeneId":"10178"},{"alias":"TNM","entrezGeneId":"10178"},{"alias":"TNM1","entrezGeneId":"10178"},{"alias":"3G2","entrezGeneId":"10180"},{"alias":"DEF-3","entrezGeneId":"10180"},{"alias":"DEF3","entrezGeneId":"10180"},{"alias":"g16","entrezGeneId":"10180"},{"alias":"HLC-11","entrezGeneId":"10180"},{"alias":"NY-LU-12","entrezGeneId":"10180"},{"alias":"G15","entrezGeneId":"10181"},{"alias":"H37","entrezGeneId":"10181"},{"alias":"LUCA15","entrezGeneId":"10181"},{"alias":"RMB5","entrezGeneId":"10181"},{"alias":"LHFP","entrezGeneId":"10186"},{"alias":"VDAC3","entrezGeneId":"10187"},{"alias":"VDAC5P","entrezGeneId":"10187"},{"alias":"ACK","entrezGeneId":"10188"},{"alias":"ACK-1","entrezGeneId":"10188"},{"alias":"ACK1","entrezGeneId":"10188"},{"alias":"p21cdc42Hs","entrezGeneId":"10188"},{"alias":"ALY","entrezGeneId":"10189"},{"alias":"ALY/REF","entrezGeneId":"10189"},{"alias":"BEF","entrezGeneId":"10189"},{"alias":"REF","entrezGeneId":"10189"},{"alias":"THOC4","entrezGeneId":"10189"},{"alias":"APACD","entrezGeneId":"10190"},{"alias":"PHLP3","entrezGeneId":"10190"},{"alias":"FLRF","entrezGeneId":"10193"},{"alias":"NRDP1","entrezGeneId":"10193"},{"alias":"SBBI03","entrezGeneId":"10193"},{"alias":"CAA","entrezGeneId":"10194"},{"alias":"NY-CO-33","entrezGeneId":"10194"},{"alias":"SDCCAG33","entrezGeneId":"10194"},{"alias":"TSH1","entrezGeneId":"10194"},{"alias":"CDG1D","entrezGeneId":"10195"},{"alias":"CDGS4","entrezGeneId":"10195"},{"alias":"CDGS6","entrezGeneId":"10195"},{"alias":"D16Ertd36e","entrezGeneId":"10195"},{"alias":"not","entrezGeneId":"10195"},{"alias":"Not56","entrezGeneId":"10195"},{"alias":"NOT56L","entrezGeneId":"10195"},{"alias":"HRMT1L3","entrezGeneId":"10196"},{"alias":"HEL-S-283","entrezGeneId":"10197"},{"alias":"Ki","entrezGeneId":"10197"},{"alias":"PA28-gamma","entrezGeneId":"10197"},{"alias":"PA28G","entrezGeneId":"10197"},{"alias":"PA28gamma","entrezGeneId":"10197"},{"alias":"REG-GAMMA","entrezGeneId":"10197"},{"alias":"MPP-9","entrezGeneId":"10198"},{"alias":"MPP9","entrezGeneId":"10198"},{"alias":"CT90","entrezGeneId":"10199"},{"alias":"MPP10","entrezGeneId":"10199"},{"alias":"MPP10P","entrezGeneId":"10199"},{"alias":"PPP1R106","entrezGeneId":"10199"},{"alias":"MPP","entrezGeneId":"10200"},{"alias":"MPP-6","entrezGeneId":"10200"},{"alias":"MPP6","entrezGeneId":"10200"},{"alias":"IPIA-ALPHA","entrezGeneId":"10201"},{"alias":"NDK 6","entrezGeneId":"10201"},{"alias":"NM23-H6","entrezGeneId":"10201"},{"alias":"HEP27","entrezGeneId":"10202"},{"alias":"SDR25C1","entrezGeneId":"10202"},{"alias":"CGRPR","entrezGeneId":"10203"},{"alias":"CRLR","entrezGeneId":"10203"},{"alias":"NTF-2","entrezGeneId":"10204"},{"alias":"NTF2","entrezGeneId":"10204"},{"alias":"PP15","entrezGeneId":"10204"},{"alias":"EVA","entrezGeneId":"10205"},{"alias":"EVA1","entrezGeneId":"10205"},{"alias":"CAR","entrezGeneId":"10206"},{"alias":"DLEU5","entrezGeneId":"10206"},{"alias":"LEU5","entrezGeneId":"10206"},{"alias":"RFP2","entrezGeneId":"10206"},{"alias":"RNF77","entrezGeneId":"10206"},{"alias":"Cipp","entrezGeneId":"10207"},{"alias":"hINADL","entrezGeneId":"10207"},{"alias":"InaD-like","entrezGeneId":"10207"},{"alias":"INADL","entrezGeneId":"10207"},{"alias":"bA121O19.1","entrezGeneId":"10208"},{"alias":"C13orf22","entrezGeneId":"10208"},{"alias":"D13S106E","entrezGeneId":"10208"},{"alias":"A121","entrezGeneId":"10209"},{"alias":"EIF-1","entrezGeneId":"10209"},{"alias":"EIF1A","entrezGeneId":"10209"},{"alias":"ISO1","entrezGeneId":"10209"},{"alias":"SUI1","entrezGeneId":"10209"},{"alias":"LUN","entrezGeneId":"10210"},{"alias":"P53BP3","entrezGeneId":"10210"},{"alias":"RP31","entrezGeneId":"10210"},{"alias":"TP53BPL","entrezGeneId":"10210"},{"alias":"BAT1","entrezGeneId":"10212"},{"alias":"BAT1L","entrezGeneId":"10212"},{"alias":"DDX39","entrezGeneId":"10212"},{"alias":"DDXL","entrezGeneId":"10212"},{"alias":"URH49","entrezGeneId":"10212"},{"alias":"PAD1","entrezGeneId":"10213"},{"alias":"POH1","entrezGeneId":"10213"},{"alias":"RPN11","entrezGeneId":"10213"},{"alias":"CT5.3","entrezGeneId":"10214"},{"alias":"BHLHB1","entrezGeneId":"10215"},{"alias":"bHLHe19","entrezGeneId":"10215"},{"alias":"OLIGO2","entrezGeneId":"10215"},{"alias":"PRKCBP2","entrezGeneId":"10215"},{"alias":"RACK17","entrezGeneId":"10215"},{"alias":"CACP","entrezGeneId":"10216"},{"alias":"HAPO","entrezGeneId":"10216"},{"alias":"JCAP","entrezGeneId":"10216"},{"alias":"MSF","entrezGeneId":"10216"},{"alias":"SZP","entrezGeneId":"10216"},{"alias":"C3orf8","entrezGeneId":"10217"},{"alias":"HYA22","entrezGeneId":"10217"},{"alias":"PSR1","entrezGeneId":"10217"},{"alias":"RBSP3","entrezGeneId":"10217"},{"alias":"SCP3","entrezGeneId":"10217"},{"alias":"AngX","entrezGeneId":"10218"},{"alias":"CDT6","entrezGeneId":"10218"},{"alias":"dJ647M16.1","entrezGeneId":"10218"},{"alias":"2F1","entrezGeneId":"10219"},{"alias":"CLEC15A","entrezGeneId":"10219"},{"alias":"MAFA","entrezGeneId":"10219"},{"alias":"MAFA-2F1","entrezGeneId":"10219"},{"alias":"MAFA-L","entrezGeneId":"10219"},{"alias":"MAFA-LIKE","entrezGeneId":"10219"},{"alias":"BMP-11","entrezGeneId":"10220"},{"alias":"BMP11","entrezGeneId":"10220"},{"alias":"C8FW","entrezGeneId":"10221"},{"alias":"GIG-2","entrezGeneId":"10221"},{"alias":"GIG2","entrezGeneId":"10221"},{"alias":"SKIP1","entrezGeneId":"10221"},{"alias":"TRB-1","entrezGeneId":"10221"},{"alias":"TRB1","entrezGeneId":"10221"},{"alias":"A33","entrezGeneId":"10223"},{"alias":"ZK1","entrezGeneId":"10224"},{"alias":"TACTILE","entrezGeneId":"10225"},{"alias":"M6PRBP1","entrezGeneId":"10226"},{"alias":"PP17","entrezGeneId":"10226"},{"alias":"TIP47","entrezGeneId":"10226"},{"alias":"TETRAN","entrezGeneId":"10227"},{"alias":"TETTRAN","entrezGeneId":"10227"},{"alias":"CAT5","entrezGeneId":"10229"},{"alias":"CLK-1","entrezGeneId":"10229"},{"alias":"CLK1","entrezGeneId":"10229"},{"alias":"COQ10D8","entrezGeneId":"10229"},{"alias":"NCRNA00192","entrezGeneId":"10230"},{"alias":"CSP2","entrezGeneId":"10231"},{"alias":"DSCR1L1","entrezGeneId":"10231"},{"alias":"MCIP2","entrezGeneId":"10231"},{"alias":"RCN2","entrezGeneId":"10231"},{"alias":"ZAKI-4","entrezGeneId":"10231"},{"alias":"ZAKI4","entrezGeneId":"10231"},{"alias":"MPF","entrezGeneId":"10232"},{"alias":"SMRP","entrezGeneId":"10232"},{"alias":"LRPB7","entrezGeneId":"10233"},{"alias":"P37NB","entrezGeneId":"10234"},{"alias":"CALDAG-GEFI","entrezGeneId":"10235"},{"alias":"CDC25L","entrezGeneId":"10235"},{"alias":"hnRNP-R","entrezGeneId":"10236"},{"alias":"HNRPR","entrezGeneId":"10236"},{"alias":"UGTREL1","entrezGeneId":"10237"},{"alias":"AN11","entrezGeneId":"10238"},{"alias":"HAN11","entrezGeneId":"10238"},{"alias":"SWAN-1","entrezGeneId":"10238"},{"alias":"WDR68","entrezGeneId":"10238"},{"alias":"AP3S3","entrezGeneId":"10239"},{"alias":"sigma3b","entrezGeneId":"10239"},{"alias":"IMOGN38","entrezGeneId":"10240"},{"alias":"MRP-S31","entrezGeneId":"10240"},{"alias":"S31mt","entrezGeneId":"10240"},{"alias":"NDP52","entrezGeneId":"10241"},{"alias":"GEPH","entrezGeneId":"10243"},{"alias":"GPH","entrezGeneId":"10243"},{"alias":"GPHRYN","entrezGeneId":"10243"},{"alias":"HKPX1","entrezGeneId":"10243"},{"alias":"MOCODC","entrezGeneId":"10243"},{"alias":"bA65N13.1","entrezGeneId":"10244"},{"alias":"p40","entrezGeneId":"10244"},{"alias":"RAB9P40","entrezGeneId":"10244"},{"alias":"DXS9822","entrezGeneId":"10245"},{"alias":"JM3","entrezGeneId":"10245"},{"alias":"TIM17B","entrezGeneId":"10245"},{"alias":"NPT3","entrezGeneId":"10246"},{"alias":"hp14.5","entrezGeneId":"10247"},{"alias":"HRSP12","entrezGeneId":"10247"},{"alias":"P14.5","entrezGeneId":"10247"},{"alias":"PSP","entrezGeneId":"10247"},{"alias":"UK114","entrezGeneId":"10247"},{"alias":"0610037N12Rik","entrezGeneId":"10248"},{"alias":"RPP2","entrezGeneId":"10248"},{"alias":"RPP20","entrezGeneId":"10248"},{"alias":"ACGNAT","entrezGeneId":"10249"},{"alias":"CAT","entrezGeneId":"10249"},{"alias":"GAT","entrezGeneId":"10249"},{"alias":"160-KD","entrezGeneId":"10250"},{"alias":"POP101","entrezGeneId":"10250"},{"alias":"SRM160","entrezGeneId":"10250"},{"alias":"spry-3","entrezGeneId":"10251"},{"alias":"hSPRY1","entrezGeneId":"10252"},{"alias":"hSPRY2","entrezGeneId":"10253"},{"alias":"IGAN3","entrezGeneId":"10253"},{"alias":"Hbp","entrezGeneId":"10254"},{"alias":"STAM2A","entrezGeneId":"10254"},{"alias":"STAM2B","entrezGeneId":"10254"},{"alias":"HCGIX","entrezGeneId":"10255"},{"alias":"HCGIX4","entrezGeneId":"10255"},{"alias":"CNK","entrezGeneId":"10256"},{"alias":"CNK1","entrezGeneId":"10256"},{"alias":"MOAT-B","entrezGeneId":"10257"},{"alias":"MOATB","entrezGeneId":"10257"},{"alias":"MRP4","entrezGeneId":"10257"},{"alias":"IRLB","entrezGeneId":"10260"},{"alias":"MYCPBP","entrezGeneId":"10260"},{"alias":"DORA","entrezGeneId":"10261"},{"alias":"AFD1","entrezGeneId":"10262"},{"alias":"Hsh49","entrezGeneId":"10262"},{"alias":"SAP49","entrezGeneId":"10262"},{"alias":"SF3b49","entrezGeneId":"10262"},{"alias":"DOC-1R","entrezGeneId":"10263"},{"alias":"p14","entrezGeneId":"10263"},{"alias":"HMMS","entrezGeneId":"10265"},{"alias":"IRX-2a","entrezGeneId":"10265"},{"alias":"IRXB2","entrezGeneId":"10265"},{"alias":"FACE-1","entrezGeneId":"10269"},{"alias":"FACE1","entrezGeneId":"10269"},{"alias":"HGPS","entrezGeneId":"10269"},{"alias":"PRO1","entrezGeneId":"10269"},{"alias":"STE24","entrezGeneId":"10269"},{"alias":"Ste24p","entrezGeneId":"10269"},{"alias":"AKAP 95","entrezGeneId":"10270"},{"alias":"AKAP-8","entrezGeneId":"10270"},{"alias":"AKAP-95","entrezGeneId":"10270"},{"alias":"AKAP95","entrezGeneId":"10270"},{"alias":"FLRG","entrezGeneId":"10272"},{"alias":"FSRP","entrezGeneId":"10272"},{"alias":"CHIP","entrezGeneId":"10273"},{"alias":"HSPABP2","entrezGeneId":"10273"},{"alias":"NY-CO-7","entrezGeneId":"10273"},{"alias":"SCAR16","entrezGeneId":"10273"},{"alias":"SDCCAG7","entrezGeneId":"10273"},{"alias":"UBOX1","entrezGeneId":"10273"},{"alias":"MRD47","entrezGeneId":"10274"},{"alias":"SA1","entrezGeneId":"10274"},{"alias":"SCC3A","entrezGeneId":"10274"},{"alias":"ARHGEF8","entrezGeneId":"10276"},{"alias":"NET1A","entrezGeneId":"10276"},{"alias":"E4","entrezGeneId":"10277"},{"alias":"HDNB1","entrezGeneId":"10277"},{"alias":"UBOX3","entrezGeneId":"10277"},{"alias":"UFD2","entrezGeneId":"10277"},{"alias":"UFD2A","entrezGeneId":"10277"},{"alias":"CAS3","entrezGeneId":"10278"},{"alias":"CASS3","entrezGeneId":"10278"},{"alias":"EFS1","entrezGeneId":"10278"},{"alias":"EFS2","entrezGeneId":"10278"},{"alias":"HEFS","entrezGeneId":"10278"},{"alias":"SIN","entrezGeneId":"10278"},{"alias":"TSSP","entrezGeneId":"10279"},{"alias":"ALS16","entrezGeneId":"10280"},{"alias":"DSMA2","entrezGeneId":"10280"},{"alias":"hSigmaR1","entrezGeneId":"10280"},{"alias":"OPRS1","entrezGeneId":"10280"},{"alias":"SIG-1R","entrezGeneId":"10280"},{"alias":"sigma1R","entrezGeneId":"10280"},{"alias":"SR-BP","entrezGeneId":"10280"},{"alias":"SR-BP1","entrezGeneId":"10280"},{"alias":"SRBP","entrezGeneId":"10280"},{"alias":"DCRB","entrezGeneId":"10281"},{"alias":"DSCRB","entrezGeneId":"10281"},{"alias":"HBET1","entrezGeneId":"10282"},{"alias":"NY-CO-10","entrezGeneId":"10283"},{"alias":"RPSKA","entrezGeneId":"10283"},{"alias":"SDCCAG-10","entrezGeneId":"10283"},{"alias":"SDCCAG10","entrezGeneId":"10283"},{"alias":"2HOR0202","entrezGeneId":"10284"},{"alias":"SAP18P","entrezGeneId":"10284"},{"alias":"SMNR","entrezGeneId":"10285"},{"alias":"SPF30","entrezGeneId":"10285"},{"alias":"TDRD16C","entrezGeneId":"10285"},{"alias":"DAM1","entrezGeneId":"10286"},{"alias":"Snt309","entrezGeneId":"10286"},{"alias":"SPF27","entrezGeneId":"10286"},{"alias":"GAIP","entrezGeneId":"10287"},{"alias":"RGSGAIP","entrezGeneId":"10287"},{"alias":"CD85D","entrezGeneId":"10288"},{"alias":"ILT-4","entrezGeneId":"10288"},{"alias":"ILT4","entrezGeneId":"10288"},{"alias":"LIR-2","entrezGeneId":"10288"},{"alias":"LIR2","entrezGeneId":"10288"},{"alias":"MIR-10","entrezGeneId":"10288"},{"alias":"MIR10","entrezGeneId":"10288"},{"alias":"GC20","entrezGeneId":"10289"},{"alias":"APEG-1","entrezGeneId":"10290"},{"alias":"APEG1","entrezGeneId":"10290"},{"alias":"BPEG","entrezGeneId":"10290"},{"alias":"CNM5","entrezGeneId":"10290"},{"alias":"SPEGalpha","entrezGeneId":"10290"},{"alias":"SPEGbeta","entrezGeneId":"10290"},{"alias":"PRP21","entrezGeneId":"10291"},{"alias":"PRPF21","entrezGeneId":"10291"},{"alias":"SAP114","entrezGeneId":"10291"},{"alias":"SF3A120","entrezGeneId":"10291"},{"alias":"RNF206","entrezGeneId":"10293"},{"alias":"SCKL9","entrezGeneId":"10293"},{"alias":"TRIP","entrezGeneId":"10293"},{"alias":"CPR3","entrezGeneId":"10294"},{"alias":"DJ3","entrezGeneId":"10294"},{"alias":"DJA2","entrezGeneId":"10294"},{"alias":"DNAJ","entrezGeneId":"10294"},{"alias":"DNJ3","entrezGeneId":"10294"},{"alias":"HIRIP4","entrezGeneId":"10294"},{"alias":"PRO3015","entrezGeneId":"10294"},{"alias":"RDJ2","entrezGeneId":"10294"},{"alias":"BCKDKD","entrezGeneId":"10295"},{"alias":"BDK","entrezGeneId":"10295"},{"alias":"EMLP","entrezGeneId":"10296"},{"alias":"EMP","entrezGeneId":"10296"},{"alias":"GID9","entrezGeneId":"10296"},{"alias":"HLC-10","entrezGeneId":"10296"},{"alias":"PIG5","entrezGeneId":"10296"},{"alias":"APCL","entrezGeneId":"10297"},{"alias":"DOA10","entrezGeneId":"10299"},{"alias":"MARCH-VI","entrezGeneId":"10299"},{"alias":"RNF176","entrezGeneId":"10299"},{"alias":"TEB4","entrezGeneId":"10299"},{"alias":"KAT","entrezGeneId":"10300"},{"alias":"LIS6","entrezGeneId":"10300"},{"alias":"BCMS","entrezGeneId":"10301"},{"alias":"BCMS1","entrezGeneId":"10301"},{"alias":"DLB1","entrezGeneId":"10301"},{"alias":"DLEU2","entrezGeneId":"10301"},{"alias":"LEU1","entrezGeneId":"10301"},{"alias":"LEU2","entrezGeneId":"10301"},{"alias":"LINC00021","entrezGeneId":"10301"},{"alias":"NCRNA00021","entrezGeneId":"10301"},{"alias":"XTP6","entrezGeneId":"10301"},{"alias":"SNAP19","entrezGeneId":"10302"},{"alias":"MDK","entrezGeneId":"10305"},{"alias":"ARCC2","entrezGeneId":"10306"},{"alias":"CPP","entrezGeneId":"10306"},{"alias":"CTPA","entrezGeneId":"10306"},{"alias":"CTPP1","entrezGeneId":"10306"},{"alias":"ECK","entrezGeneId":"10306"},{"alias":"FE65L2","entrezGeneId":"10307"},{"alias":"SRA","entrezGeneId":"10307"},{"alias":"HZF2","entrezGeneId":"10308"},{"alias":"CCNU","entrezGeneId":"10309"},{"alias":"CILD29","entrezGeneId":"10309"},{"alias":"UDG2","entrezGeneId":"10309"},{"alias":"DCRA","entrezGeneId":"10311"},{"alias":"DSCR3","entrezGeneId":"10311"},{"alias":"DSCRA","entrezGeneId":"10311"},{"alias":"a3","entrezGeneId":"10312"},{"alias":"Atp6i","entrezGeneId":"10312"},{"alias":"ATP6N1C","entrezGeneId":"10312"},{"alias":"ATP6V0A3","entrezGeneId":"10312"},{"alias":"OC-116kDa","entrezGeneId":"10312"},{"alias":"OC116","entrezGeneId":"10312"},{"alias":"OPTB1","entrezGeneId":"10312"},{"alias":"Stv1","entrezGeneId":"10312"},{"alias":"TIRC7","entrezGeneId":"10312"},{"alias":"Vph1","entrezGeneId":"10312"},{"alias":"ASYIP","entrezGeneId":"10313"},{"alias":"HAP","entrezGeneId":"10313"},{"alias":"NSPL2","entrezGeneId":"10313"},{"alias":"NSPLII","entrezGeneId":"10313"},{"alias":"RTN3-A1","entrezGeneId":"10313"},{"alias":"GPR69A","entrezGeneId":"10314"},{"alias":"p40","entrezGeneId":"10314"},{"alias":"(FM-3)","entrezGeneId":"10316"},{"alias":"FM-3","entrezGeneId":"10316"},{"alias":"FM3","entrezGeneId":"10316"},{"alias":"GPC-R","entrezGeneId":"10316"},{"alias":"GPR66","entrezGeneId":"10316"},{"alias":"NMU1R","entrezGeneId":"10316"},{"alias":"B3GalT-V","entrezGeneId":"10317"},{"alias":"B3GalTx","entrezGeneId":"10317"},{"alias":"B3T5","entrezGeneId":"10317"},{"alias":"beta-1,3-GalTase 5","entrezGeneId":"10317"},{"alias":"beta-3-Gx-T5","entrezGeneId":"10317"},{"alias":"beta3Gal-T5","entrezGeneId":"10317"},{"alias":"GLCT5","entrezGeneId":"10317"},{"alias":"ABIN-1","entrezGeneId":"10318"},{"alias":"NAF1","entrezGeneId":"10318"},{"alias":"nip40-1","entrezGeneId":"10318"},{"alias":"VAN","entrezGeneId":"10318"},{"alias":"OCCM","entrezGeneId":"10319"},{"alias":"CVID13","entrezGeneId":"10320"},{"alias":"Hs.54452","entrezGeneId":"10320"},{"alias":"IK1","entrezGeneId":"10320"},{"alias":"IKAROS","entrezGeneId":"10320"},{"alias":"LyF-1","entrezGeneId":"10320"},{"alias":"LYF1","entrezGeneId":"10320"},{"alias":"PPP1R92","entrezGeneId":"10320"},{"alias":"PRO0758","entrezGeneId":"10320"},{"alias":"ZNFN1A1","entrezGeneId":"10320"},{"alias":"Aeg2","entrezGeneId":"10321"},{"alias":"CRISP-3","entrezGeneId":"10321"},{"alias":"CRS3","entrezGeneId":"10321"},{"alias":"dJ442L6.3","entrezGeneId":"10321"},{"alias":"SGP28","entrezGeneId":"10321"},{"alias":"NN8-4AG","entrezGeneId":"10322"},{"alias":"RAI15","entrezGeneId":"10322"},{"alias":"RRG1","entrezGeneId":"10322"},{"alias":"ZMYND23","entrezGeneId":"10322"},{"alias":"KBTBD10","entrezGeneId":"10324"},{"alias":"Krp1","entrezGeneId":"10324"},{"alias":"SARCOSIN","entrezGeneId":"10324"},{"alias":"bA465E19.1","entrezGeneId":"10325"},{"alias":"RAGB","entrezGeneId":"10325"},{"alias":"CD172b","entrezGeneId":"10326"},{"alias":"SIRP-BETA-1","entrezGeneId":"10326"},{"alias":"ALDR1","entrezGeneId":"10327"},{"alias":"ALR","entrezGeneId":"10327"},{"alias":"ARM","entrezGeneId":"10327"},{"alias":"DD3","entrezGeneId":"10327"},{"alias":"HEL-S-6","entrezGeneId":"10327"},{"alias":"C16orf2","entrezGeneId":"10328"},{"alias":"C16orf4","entrezGeneId":"10328"},{"alias":"COX4NB","entrezGeneId":"10328"},{"alias":"FAM158B","entrezGeneId":"10328"},{"alias":"NOC4","entrezGeneId":"10328"},{"alias":"HP10481","entrezGeneId":"10329"},{"alias":"MDDGA10","entrezGeneId":"10329"},{"alias":"TMEM5","entrezGeneId":"10329"},{"alias":"HP10390","entrezGeneId":"10330"},{"alias":"MSAP","entrezGeneId":"10330"},{"alias":"TMEM4","entrezGeneId":"10330"},{"alias":"ZSIG9","entrezGeneId":"10330"},{"alias":"B3GAL-T8","entrezGeneId":"10331"},{"alias":"B3GN-T3","entrezGeneId":"10331"},{"alias":"B3GNT-3","entrezGeneId":"10331"},{"alias":"beta3Gn-T3","entrezGeneId":"10331"},{"alias":"HP10328","entrezGeneId":"10331"},{"alias":"TMEM3","entrezGeneId":"10331"},{"alias":"CD209L","entrezGeneId":"10332"},{"alias":"CD299","entrezGeneId":"10332"},{"alias":"DC-SIGN2","entrezGeneId":"10332"},{"alias":"DC-SIGNR","entrezGeneId":"10332"},{"alias":"DCSIGNR","entrezGeneId":"10332"},{"alias":"HP10347","entrezGeneId":"10332"},{"alias":"L-SIGN","entrezGeneId":"10332"},{"alias":"LSIGN","entrezGeneId":"10332"},{"alias":"CD286","entrezGeneId":"10333"},{"alias":"IRAG","entrezGeneId":"10335"},{"alias":"JAW1L","entrezGeneId":"10335"},{"alias":"DONG1","entrezGeneId":"10336"},{"alias":"RNF3","entrezGeneId":"10336"},{"alias":"RNF3A","entrezGeneId":"10336"},{"alias":"dJ97D16.3","entrezGeneId":"10337"},{"alias":"H4FFP","entrezGeneId":"10337"},{"alias":"pH4/f","entrezGeneId":"10337"},{"alias":"H3FEP","entrezGeneId":"10338"},{"alias":"pH3/e","entrezGeneId":"10338"},{"alias":"H2BFIP","entrezGeneId":"10340"},{"alias":"pH2B.i","entrezGeneId":"10340"},{"alias":"pH2B/i","entrezGeneId":"10340"},{"alias":"H2AFFP","entrezGeneId":"10341"},{"alias":"pH2A/f","entrezGeneId":"10341"},{"alias":"HMSNP","entrezGeneId":"10342"},{"alias":"SPG57","entrezGeneId":"10342"},{"alias":"TF6","entrezGeneId":"10342"},{"alias":"TRKT3","entrezGeneId":"10342"},{"alias":"IMAC","entrezGeneId":"10344"},{"alias":"MIP-4a","entrezGeneId":"10344"},{"alias":"MIP-4alpha","entrezGeneId":"10344"},{"alias":"SCYA26","entrezGeneId":"10344"},{"alias":"TSC-1","entrezGeneId":"10344"},{"alias":"CPVT5","entrezGeneId":"10345"},{"alias":"TDN","entrezGeneId":"10345"},{"alias":"TRISK","entrezGeneId":"10345"},{"alias":"GPSTAF50","entrezGeneId":"10346"},{"alias":"RNF94","entrezGeneId":"10346"},{"alias":"STAF50","entrezGeneId":"10346"},{"alias":"ABCA-SSN","entrezGeneId":"10347"},{"alias":"ABCX","entrezGeneId":"10347"},{"alias":"AD9","entrezGeneId":"10347"},{"alias":"EST698739","entrezGeneId":"10349"},{"alias":"EST640918","entrezGeneId":"10350"},{"alias":"NEMMLAS","entrezGeneId":"10352"},{"alias":"TrpRS","entrezGeneId":"10352"},{"alias":"HMG-1","entrezGeneId":"10354"},{"alias":"HMG1L5","entrezGeneId":"10354"},{"alias":"HMGB1L15","entrezGeneId":"10354"},{"alias":"HMGB1L5","entrezGeneId":"10354"},{"alias":"HMGB1P2","entrezGeneId":"10354"},{"alias":"HMG1L4","entrezGeneId":"10355"},{"alias":"HMG1L4P","entrezGeneId":"10355"},{"alias":"HMGB1L4","entrezGeneId":"10355"},{"alias":"HMG1L3","entrezGeneId":"10356"},{"alias":"HMGB1L3","entrezGeneId":"10356"},{"alias":"dJ579F20.1","entrezGeneId":"10357"},{"alias":"HMG1L1","entrezGeneId":"10357"},{"alias":"HMG1L7","entrezGeneId":"10357"},{"alias":"HMGB1L1","entrezGeneId":"10357"},{"alias":"PORMIN","entrezGeneId":"10360"},{"alias":"TMEM123","entrezGeneId":"10360"},{"alias":"BRAF25","entrezGeneId":"10362"},{"alias":"BRAF35","entrezGeneId":"10362"},{"alias":"HMGX2","entrezGeneId":"10362"},{"alias":"HMGXB2","entrezGeneId":"10362"},{"alias":"PP7706","entrezGeneId":"10362"},{"alias":"pp8857","entrezGeneId":"10362"},{"alias":"SMARCE1r","entrezGeneId":"10362"},{"alias":"SOXL","entrezGeneId":"10362"},{"alias":"HMGX1","entrezGeneId":"10363"},{"alias":"HMGXB1","entrezGeneId":"10363"},{"alias":"LKLF","entrezGeneId":"10365"},{"alias":"CALC","entrezGeneId":"10367"},{"alias":"CBARA1","entrezGeneId":"10367"},{"alias":"EFHA3","entrezGeneId":"10367"},{"alias":"MPXPS","entrezGeneId":"10367"},{"alias":"MRD10","entrezGeneId":"10369"},{"alias":"ASD8","entrezGeneId":"10370"},{"alias":"MRG-1","entrezGeneId":"10370"},{"alias":"MRG1","entrezGeneId":"10370"},{"alias":"P35SRJ","entrezGeneId":"10370"},{"alias":"VSD2","entrezGeneId":"10370"},{"alias":"coll-1","entrezGeneId":"10371"},{"alias":"COLL1","entrezGeneId":"10371"},{"alias":"HH16","entrezGeneId":"10371"},{"alias":"Hsema-I","entrezGeneId":"10371"},{"alias":"Hsema-III","entrezGeneId":"10371"},{"alias":"SEMA1","entrezGeneId":"10371"},{"alias":"SEMAD","entrezGeneId":"10371"},{"alias":"SEMAIII","entrezGeneId":"10371"},{"alias":"SEMAL","entrezGeneId":"10371"},{"alias":"SemD","entrezGeneId":"10371"},{"alias":"K-ALPHA-1","entrezGeneId":"10376"},{"alias":"IRF-9","entrezGeneId":"10379"},{"alias":"ISGF3","entrezGeneId":"10379"},{"alias":"ISGF3G","entrezGeneId":"10379"},{"alias":"p48","entrezGeneId":"10379"},{"alias":"HEL20","entrezGeneId":"10380"},{"alias":"PIP","entrezGeneId":"10380"},{"alias":"beta-4","entrezGeneId":"10381"},{"alias":"CDCBM","entrezGeneId":"10381"},{"alias":"CDCBM1","entrezGeneId":"10381"},{"alias":"CFEOM3","entrezGeneId":"10381"},{"alias":"CFEOM3A","entrezGeneId":"10381"},{"alias":"FEOM3","entrezGeneId":"10381"},{"alias":"TUBB4","entrezGeneId":"10381"},{"alias":"beta-5","entrezGeneId":"10382"},{"alias":"DYT4","entrezGeneId":"10382"},{"alias":"TUBB4","entrezGeneId":"10382"},{"alias":"Beta2","entrezGeneId":"10383"},{"alias":"LCAEOD","entrezGeneId":"10383"},{"alias":"TUBB2","entrezGeneId":"10383"},{"alias":"TUBB2C","entrezGeneId":"10383"},{"alias":"BTF3","entrezGeneId":"10384"},{"alias":"BTN3.3","entrezGeneId":"10384"},{"alias":"BT2.2","entrezGeneId":"10385"},{"alias":"BTF2","entrezGeneId":"10385"},{"alias":"BTN2.2","entrezGeneId":"10385"},{"alias":"SCP-2","entrezGeneId":"10388"},{"alias":"SCP2","entrezGeneId":"10388"},{"alias":"CLIPINC","entrezGeneId":"10391"},{"alias":"CARD4","entrezGeneId":"10392"},{"alias":"CLR7.1","entrezGeneId":"10392"},{"alias":"NLRC1","entrezGeneId":"10392"},{"alias":"APC10","entrezGeneId":"10393"},{"alias":"DOC1","entrezGeneId":"10393"},{"alias":"MBP2","entrezGeneId":"10394"},{"alias":"MBPH","entrezGeneId":"10394"},{"alias":"ARHGAP7","entrezGeneId":"10395"},{"alias":"HP","entrezGeneId":"10395"},{"alias":"p122-RhoGAP","entrezGeneId":"10395"},{"alias":"STARD12","entrezGeneId":"10395"},{"alias":"ATPASEII","entrezGeneId":"10396"},{"alias":"ATPIA","entrezGeneId":"10396"},{"alias":"ATPP2","entrezGeneId":"10396"},{"alias":"CAP43","entrezGeneId":"10397"},{"alias":"CMT4D","entrezGeneId":"10397"},{"alias":"DRG-1","entrezGeneId":"10397"},{"alias":"DRG1","entrezGeneId":"10397"},{"alias":"GC4","entrezGeneId":"10397"},{"alias":"HMSNL","entrezGeneId":"10397"},{"alias":"NDR1","entrezGeneId":"10397"},{"alias":"NMSL","entrezGeneId":"10397"},{"alias":"PROXY1","entrezGeneId":"10397"},{"alias":"RIT42","entrezGeneId":"10397"},{"alias":"RTP","entrezGeneId":"10397"},{"alias":"TARG1","entrezGeneId":"10397"},{"alias":"TDD5","entrezGeneId":"10397"},{"alias":"LC20","entrezGeneId":"10398"},{"alias":"MLC-2C","entrezGeneId":"10398"},{"alias":"MLC2","entrezGeneId":"10398"},{"alias":"MRLC1","entrezGeneId":"10398"},{"alias":"MYRL2","entrezGeneId":"10398"},{"alias":"Gnb2-rs1","entrezGeneId":"10399"},{"alias":"GNB2L1","entrezGeneId":"10399"},{"alias":"H12.3","entrezGeneId":"10399"},{"alias":"HLC-7","entrezGeneId":"10399"},{"alias":"PIG21","entrezGeneId":"10399"},{"alias":"PEAMT","entrezGeneId":"10400"},{"alias":"PEMPT","entrezGeneId":"10400"},{"alias":"PEMT2","entrezGeneId":"10400"},{"alias":"PLMT","entrezGeneId":"10400"},{"alias":"PNMT","entrezGeneId":"10400"},{"alias":"ZMIZ5","entrezGeneId":"10401"},{"alias":"SIAT10","entrezGeneId":"10402"},{"alias":"ST3GALVI","entrezGeneId":"10402"},{"alias":"HEC","entrezGeneId":"10403"},{"alias":"HEC1","entrezGeneId":"10403"},{"alias":"HsHec1","entrezGeneId":"10403"},{"alias":"hsNDC80","entrezGeneId":"10403"},{"alias":"KNTC2","entrezGeneId":"10403"},{"alias":"TID3","entrezGeneId":"10403"},{"alias":"LDP","entrezGeneId":"10404"},{"alias":"PGCP","entrezGeneId":"10404"},{"alias":"dJ461P17.6","entrezGeneId":"10406"},{"alias":"EDDM4","entrezGeneId":"10406"},{"alias":"HE4","entrezGeneId":"10406"},{"alias":"WAP5","entrezGeneId":"10406"},{"alias":"EDDM2B","entrezGeneId":"10407"},{"alias":"EP2","entrezGeneId":"10407"},{"alias":"EP2C","entrezGeneId":"10407"},{"alias":"EP2D","entrezGeneId":"10407"},{"alias":"HE2","entrezGeneId":"10407"},{"alias":"HE2C","entrezGeneId":"10407"},{"alias":"SPAG11","entrezGeneId":"10407"},{"alias":"MYCN-AS1","entrezGeneId":"10408"},{"alias":"N-CYM","entrezGeneId":"10408"},{"alias":"NCYM","entrezGeneId":"10408"},{"alias":"NYCM","entrezGeneId":"10408"},{"alias":"CAP-23","entrezGeneId":"10409"},{"alias":"CAP23","entrezGeneId":"10409"},{"alias":"NAP-22","entrezGeneId":"10409"},{"alias":"NAP22","entrezGeneId":"10409"},{"alias":"1-8U","entrezGeneId":"10410"},{"alias":"DSPA2b","entrezGeneId":"10410"},{"alias":"IP15","entrezGeneId":"10410"},{"alias":"bcm910","entrezGeneId":"10411"},{"alias":"CAMP-GEFI","entrezGeneId":"10411"},{"alias":"EPAC","entrezGeneId":"10411"},{"alias":"EPAC1","entrezGeneId":"10411"},{"alias":"HSU79275","entrezGeneId":"10411"},{"alias":"CDK105","entrezGeneId":"10412"},{"alias":"HCL-G1","entrezGeneId":"10412"},{"alias":"HCLG1","entrezGeneId":"10412"},{"alias":"HUSSY-29","entrezGeneId":"10412"},{"alias":"HUSSY29","entrezGeneId":"10412"},{"alias":"TINP1","entrezGeneId":"10412"},{"alias":"COB1","entrezGeneId":"10413"},{"alias":"YAP","entrezGeneId":"10413"},{"alias":"YAP2","entrezGeneId":"10413"},{"alias":"YAP65","entrezGeneId":"10413"},{"alias":"YKI","entrezGeneId":"10413"},{"alias":"SNAI1L","entrezGeneId":"10415"},{"alias":"SNAI1L1","entrezGeneId":"10415"},{"alias":"SNAI1P","entrezGeneId":"10415"},{"alias":"DIL-1","entrezGeneId":"10417"},{"alias":"DIL1","entrezGeneId":"10417"},{"alias":"M-SPONDIN","entrezGeneId":"10417"},{"alias":"MINDIN","entrezGeneId":"10417"},{"alias":"f-spondin","entrezGeneId":"10418"},{"alias":"VSGP/F-spondin","entrezGeneId":"10418"},{"alias":"HRMT1L5","entrezGeneId":"10419"},{"alias":"IBP72","entrezGeneId":"10419"},{"alias":"JBP1","entrezGeneId":"10419"},{"alias":"SKB1","entrezGeneId":"10419"},{"alias":"SKB1Hs","entrezGeneId":"10419"},{"alias":"FWP010","entrezGeneId":"10421"},{"alias":"LIN1","entrezGeneId":"10421"},{"alias":"PPP1R59","entrezGeneId":"10421"},{"alias":"Snu40","entrezGeneId":"10421"},{"alias":"U5-52K","entrezGeneId":"10421"},{"alias":"GBDR1","entrezGeneId":"10422"},{"alias":"KPC2","entrezGeneId":"10422"},{"alias":"UBADC1","entrezGeneId":"10422"},{"alias":"PIS","entrezGeneId":"10423"},{"alias":"PIS1","entrezGeneId":"10423"},{"alias":"DG6","entrezGeneId":"10424"},{"alias":"PMBP","entrezGeneId":"10424"},{"alias":"ARI2","entrezGeneId":"10425"},{"alias":"TRIAD1","entrezGeneId":"10425"},{"alias":"104p","entrezGeneId":"10426"},{"alias":"ALP6","entrezGeneId":"10426"},{"alias":"GCP3","entrezGeneId":"10426"},{"alias":"Grip104","entrezGeneId":"10426"},{"alias":"SPBC98","entrezGeneId":"10426"},{"alias":"Spc98","entrezGeneId":"10426"},{"alias":"Spc98p","entrezGeneId":"10426"},{"alias":"SEC24","entrezGeneId":"10427"},{"alias":"BCNT","entrezGeneId":"10428"},{"alias":"BUCENTAUR","entrezGeneId":"10428"},{"alias":"CENP-29","entrezGeneId":"10428"},{"alias":"CP27","entrezGeneId":"10428"},{"alias":"p97","entrezGeneId":"10428"},{"alias":"SWC5","entrezGeneId":"10428"},{"alias":"Yeti","entrezGeneId":"10428"},{"alias":"NIFIE14","entrezGeneId":"10430"},{"alias":"COAA","entrezGeneId":"10432"},{"alias":"PSP2","entrezGeneId":"10432"},{"alias":"SIP","entrezGeneId":"10432"},{"alias":"SYTIP1","entrezGeneId":"10432"},{"alias":"TMEM137","entrezGeneId":"10432"},{"alias":"APT-1","entrezGeneId":"10434"},{"alias":"APT1","entrezGeneId":"10434"},{"alias":"hAPT1","entrezGeneId":"10434"},{"alias":"LPL-I","entrezGeneId":"10434"},{"alias":"LPL1","entrezGeneId":"10434"},{"alias":"BORG1","entrezGeneId":"10435"},{"alias":"CEP2","entrezGeneId":"10435"},{"alias":"C2F","entrezGeneId":"10436"},{"alias":"Grcc2f","entrezGeneId":"10436"},{"alias":"NEP1","entrezGeneId":"10436"},{"alias":"GILT","entrezGeneId":"10437"},{"alias":"IFI-30","entrezGeneId":"10437"},{"alias":"IP-30","entrezGeneId":"10437"},{"alias":"IP30","entrezGeneId":"10437"},{"alias":"hC1D","entrezGeneId":"10438"},{"alias":"LRP1","entrezGeneId":"10438"},{"alias":"Rrp47","entrezGeneId":"10438"},{"alias":"SUN-CoR","entrezGeneId":"10438"},{"alias":"SUNCOR","entrezGeneId":"10438"},{"alias":"AMY","entrezGeneId":"10439"},{"alias":"NOE1","entrezGeneId":"10439"},{"alias":"NOELIN1","entrezGeneId":"10439"},{"alias":"OlfA","entrezGeneId":"10439"},{"alias":"TIM17","entrezGeneId":"10440"},{"alias":"TIM17A","entrezGeneId":"10440"},{"alias":"92M18.3","entrezGeneId":"10443"},{"alias":"CG005","entrezGeneId":"10443"},{"alias":"CG016","entrezGeneId":"10443"},{"alias":"PFAAP5","entrezGeneId":"10443"},{"alias":"C9orf60","entrezGeneId":"10444"},{"alias":"ZYG","entrezGeneId":"10444"},{"alias":"ZYG11BL","entrezGeneId":"10444"},{"alias":"ICP22BP","entrezGeneId":"10445"},{"alias":"INO80Q","entrezGeneId":"10445"},{"alias":"MCRS2","entrezGeneId":"10445"},{"alias":"MSP58","entrezGeneId":"10445"},{"alias":"P78","entrezGeneId":"10445"},{"alias":"FIGLER7","entrezGeneId":"10446"},{"alias":"GAC1","entrezGeneId":"10446"},{"alias":"LRANK1","entrezGeneId":"10446"},{"alias":"LRRN5","entrezGeneId":"10446"},{"alias":"GS3786","entrezGeneId":"10447"},{"alias":"ILEI","entrezGeneId":"10447"},{"alias":"DSAEC","entrezGeneId":"10449"},{"alias":"CYP-33","entrezGeneId":"10450"},{"alias":"CYP33","entrezGeneId":"10450"},{"alias":"C19orf1","entrezGeneId":"10452"},{"alias":"D19S1177E","entrezGeneId":"10452"},{"alias":"PER-EC1","entrezGeneId":"10452"},{"alias":"PEREC1","entrezGeneId":"10452"},{"alias":"TOM40","entrezGeneId":"10452"},{"alias":"3'-Tab1","entrezGeneId":"10454"},{"alias":"MAP3K7IP1","entrezGeneId":"10454"},{"alias":"ACBD2","entrezGeneId":"10455"},{"alias":"dJ1013A10.3","entrezGeneId":"10455"},{"alias":"DRS-1","entrezGeneId":"10455"},{"alias":"DRS1","entrezGeneId":"10455"},{"alias":"HCA88","entrezGeneId":"10455"},{"alias":"PECI","entrezGeneId":"10455"},{"alias":"HCLSBP1","entrezGeneId":"10456"},{"alias":"HS1BP1","entrezGeneId":"10456"},{"alias":"SCN3","entrezGeneId":"10456"},{"alias":"HGFIN","entrezGeneId":"10457"},{"alias":"NMB","entrezGeneId":"10457"},{"alias":"PLCA3","entrezGeneId":"10457"},{"alias":"BAP2","entrezGeneId":"10458"},{"alias":"FLAF3","entrezGeneId":"10458"},{"alias":"IRSP53","entrezGeneId":"10458"},{"alias":"FANCV","entrezGeneId":"10459"},{"alias":"MAD2B","entrezGeneId":"10459"},{"alias":"POLZ2","entrezGeneId":"10459"},{"alias":"REV7","entrezGeneId":"10459"},{"alias":"ERIC-1","entrezGeneId":"10460"},{"alias":"ERIC1","entrezGeneId":"10460"},{"alias":"c-Eyk","entrezGeneId":"10461"},{"alias":"c-mer","entrezGeneId":"10461"},{"alias":"MER","entrezGeneId":"10461"},{"alias":"RP38","entrezGeneId":"10461"},{"alias":"Tyro12","entrezGeneId":"10461"},{"alias":"CD301","entrezGeneId":"10462"},{"alias":"CLECSF13","entrezGeneId":"10462"},{"alias":"CLECSF14","entrezGeneId":"10462"},{"alias":"HML","entrezGeneId":"10462"},{"alias":"HML2","entrezGeneId":"10462"},{"alias":"MGL","entrezGeneId":"10462"},{"alias":"BILAPES","entrezGeneId":"10463"},{"alias":"C4orf1","entrezGeneId":"10463"},{"alias":"GAC63","entrezGeneId":"10463"},{"alias":"HUEL","entrezGeneId":"10463"},{"alias":"ZNT9","entrezGeneId":"10463"},{"alias":"C13orf24","entrezGeneId":"10464"},{"alias":"CEP90","entrezGeneId":"10464"},{"alias":"JBTS33","entrezGeneId":"10464"},{"alias":"PIBF","entrezGeneId":"10464"},{"alias":"CYP-20","entrezGeneId":"10465"},{"alias":"CYPH","entrezGeneId":"10465"},{"alias":"SnuCyp-20","entrezGeneId":"10465"},{"alias":"USA-CYP","entrezGeneId":"10465"},{"alias":"CDG2I","entrezGeneId":"10466"},{"alias":"GOLTC1","entrezGeneId":"10466"},{"alias":"GTC90","entrezGeneId":"10466"},{"alias":"CG1I","entrezGeneId":"10467"},{"alias":"ZNFN4A1","entrezGeneId":"10467"},{"alias":"FS","entrezGeneId":"10468"},{"alias":"TIM44","entrezGeneId":"10469"},{"alias":"H2-KE2","entrezGeneId":"10471"},{"alias":"HKE2","entrezGeneId":"10471"},{"alias":"KE-2","entrezGeneId":"10471"},{"alias":"PFD6","entrezGeneId":"10471"},{"alias":"C2H2-171","entrezGeneId":"10472"},{"alias":"MRD22","entrezGeneId":"10472"},{"alias":"RP58","entrezGeneId":"10472"},{"alias":"TAZ-1","entrezGeneId":"10472"},{"alias":"ZNF238","entrezGeneId":"10472"},{"alias":"HMG17L3","entrezGeneId":"10473"},{"alias":"NHC","entrezGeneId":"10473"},{"alias":"ADA3","entrezGeneId":"10474"},{"alias":"hADA3","entrezGeneId":"10474"},{"alias":"NGG1","entrezGeneId":"10474"},{"alias":"STAF54","entrezGeneId":"10474"},{"alias":"TADA3L","entrezGeneId":"10474"},{"alias":"RNF15","entrezGeneId":"10475"},{"alias":"RORET","entrezGeneId":"10475"},{"alias":"ATP5H","entrezGeneId":"10476"},{"alias":"ATPQ","entrezGeneId":"10476"},{"alias":"UBCH9","entrezGeneId":"10477"},{"alias":"UbcM2","entrezGeneId":"10477"},{"alias":"PMP34","entrezGeneId":"10478"},{"alias":"MRSA","entrezGeneId":"10479"},{"alias":"NHE6","entrezGeneId":"10479"},{"alias":"B5","entrezGeneId":"10480"},{"alias":"GA17","entrezGeneId":"10480"},{"alias":"hfl-B5","entrezGeneId":"10480"},{"alias":"PCID1","entrezGeneId":"10480"},{"alias":"TANGO7","entrezGeneId":"10480"},{"alias":"PSGD","entrezGeneId":"10481"},{"alias":"MEX67","entrezGeneId":"10482"},{"alias":"TAP","entrezGeneId":"10482"},{"alias":"CDA-II","entrezGeneId":"10483"},{"alias":"CDAII","entrezGeneId":"10483"},{"alias":"CDAN2","entrezGeneId":"10483"},{"alias":"CWS7","entrezGeneId":"10483"},{"alias":"HEMPAS","entrezGeneId":"10483"},{"alias":"hSec23B","entrezGeneId":"10483"},{"alias":"CLSD","entrezGeneId":"10484"},{"alias":"hSec23A","entrezGeneId":"10484"},{"alias":"CROC4","entrezGeneId":"10485"},{"alias":"CAP","entrezGeneId":"10487"},{"alias":"CAP1-PEN","entrezGeneId":"10487"},{"alias":"LUMAN","entrezGeneId":"10488"},{"alias":"LZIP","entrezGeneId":"10488"},{"alias":"sLZIP","entrezGeneId":"10488"},{"alias":"MUF1","entrezGeneId":"10489"},{"alias":"PP7759","entrezGeneId":"10489"},{"alias":"v-SNARE","entrezGeneId":"10490"},{"alias":"VTI1","entrezGeneId":"10490"},{"alias":"VTI1-LIKE","entrezGeneId":"10490"},{"alias":"vti1-rp1","entrezGeneId":"10490"},{"alias":"VTI1L","entrezGeneId":"10490"},{"alias":"VTI2","entrezGeneId":"10490"},{"alias":"CASP","entrezGeneId":"10491"},{"alias":"LEPREL3","entrezGeneId":"10491"},{"alias":"OI7","entrezGeneId":"10491"},{"alias":"P3H5","entrezGeneId":"10491"},{"alias":"GRY-RBP","entrezGeneId":"10492"},{"alias":"GRYRBP","entrezGeneId":"10492"},{"alias":"hnRNP-Q","entrezGeneId":"10492"},{"alias":"HNRNPQ","entrezGeneId":"10492"},{"alias":"HNRPQ1","entrezGeneId":"10492"},{"alias":"NSAP1","entrezGeneId":"10492"},{"alias":"PP68","entrezGeneId":"10492"},{"alias":"VATI","entrezGeneId":"10493"},{"alias":"SOK1","entrezGeneId":"10494"},{"alias":"YSK1","entrezGeneId":"10494"},{"alias":"APK1","entrezGeneId":"10495"},{"alias":"COVA1","entrezGeneId":"10495"},{"alias":"tNOX","entrezGeneId":"10495"},{"alias":"MUNC13","entrezGeneId":"10497"},{"alias":"UNC13","entrezGeneId":"10497"},{"alias":"Unc13h2","entrezGeneId":"10497"},{"alias":"PRMT4","entrezGeneId":"10498"},{"alias":"bHLHe75","entrezGeneId":"10499"},{"alias":"GRIP1","entrezGeneId":"10499"},{"alias":"KAT13C","entrezGeneId":"10499"},{"alias":"NCoA-2","entrezGeneId":"10499"},{"alias":"SRC2","entrezGeneId":"10499"},{"alias":"TIF2","entrezGeneId":"10499"},{"alias":"m-SemaY","entrezGeneId":"10500"},{"alias":"m-SemaY2","entrezGeneId":"10500"},{"alias":"SEMAY","entrezGeneId":"10500"},{"alias":"SEM-SEMA-Y","entrezGeneId":"10501"},{"alias":"SEMA-VIB","entrezGeneId":"10501"},{"alias":"SEMAN","entrezGeneId":"10501"},{"alias":"semaZ","entrezGeneId":"10501"},{"alias":"M-SEMA","entrezGeneId":"10505"},{"alias":"m-Sema-M","entrezGeneId":"10505"},{"alias":"PRO2353","entrezGeneId":"10505"},{"alias":"S4F","entrezGeneId":"10505"},{"alias":"SEMAM","entrezGeneId":"10505"},{"alias":"SEMAW","entrezGeneId":"10505"},{"alias":"C9orf164","entrezGeneId":"10507"},{"alias":"CD100","entrezGeneId":"10507"},{"alias":"coll-4","entrezGeneId":"10507"},{"alias":"COLL4","entrezGeneId":"10507"},{"alias":"M-sema-G","entrezGeneId":"10507"},{"alias":"SEMAJ","entrezGeneId":"10507"},{"alias":"SEMAC","entrezGeneId":"10509"},{"alias":"SemC","entrezGeneId":"10509"},{"alias":"SEMAE","entrezGeneId":"10512"},{"alias":"SemE","entrezGeneId":"10512"},{"alias":"APP-BP2","entrezGeneId":"10513"},{"alias":"HS.84084","entrezGeneId":"10513"},{"alias":"PAT1","entrezGeneId":"10513"},{"alias":"P160","entrezGeneId":"10514"},{"alias":"PAP2","entrezGeneId":"10514"},{"alias":"Pol5","entrezGeneId":"10514"},{"alias":"ADCL2","entrezGeneId":"10516"},{"alias":"ARCL1A","entrezGeneId":"10516"},{"alias":"ARMD3","entrezGeneId":"10516"},{"alias":"DANCE","entrezGeneId":"10516"},{"alias":"EVEC","entrezGeneId":"10516"},{"alias":"FIBL-5","entrezGeneId":"10516"},{"alias":"HNARMD","entrezGeneId":"10516"},{"alias":"UP50","entrezGeneId":"10516"},{"alias":"Fbw10","entrezGeneId":"10517"},{"alias":"HREP","entrezGeneId":"10517"},{"alias":"SM25H2","entrezGeneId":"10517"},{"alias":"SM2SH2","entrezGeneId":"10517"},{"alias":"DFNB48","entrezGeneId":"10518"},{"alias":"KIP2","entrezGeneId":"10518"},{"alias":"USH1J","entrezGeneId":"10518"},{"alias":"CIB","entrezGeneId":"10519"},{"alias":"CIBP","entrezGeneId":"10519"},{"alias":"KIP1","entrezGeneId":"10519"},{"alias":"PRKDCIP","entrezGeneId":"10519"},{"alias":"SIP2-28","entrezGeneId":"10519"},{"alias":"C2H2-25","entrezGeneId":"10520"},{"alias":"CH2H2-25","entrezGeneId":"10520"},{"alias":"ZNF-25","entrezGeneId":"10520"},{"alias":"P72","entrezGeneId":"10521"},{"alias":"RH70","entrezGeneId":"10521"},{"alias":"MRD24","entrezGeneId":"10522"},{"alias":"NUDR","entrezGeneId":"10522"},{"alias":"SPN","entrezGeneId":"10522"},{"alias":"ZMYND5","entrezGeneId":"10522"},{"alias":"DAN16","entrezGeneId":"10523"},{"alias":"SCAF6","entrezGeneId":"10523"},{"alias":"SRA1","entrezGeneId":"10523"},{"alias":"cPLA2","entrezGeneId":"10524"},{"alias":"ESA1","entrezGeneId":"10524"},{"alias":"HTATIP","entrezGeneId":"10524"},{"alias":"HTATIP1","entrezGeneId":"10524"},{"alias":"PLIP","entrezGeneId":"10524"},{"alias":"TIP","entrezGeneId":"10524"},{"alias":"TIP60","entrezGeneId":"10524"},{"alias":"ZC2HC5","entrezGeneId":"10524"},{"alias":"GRP-170","entrezGeneId":"10525"},{"alias":"Grp170","entrezGeneId":"10525"},{"alias":"HSP12A","entrezGeneId":"10525"},{"alias":"ORP-150","entrezGeneId":"10525"},{"alias":"ORP150","entrezGeneId":"10525"},{"alias":"RANBP8","entrezGeneId":"10526"},{"alias":"Imp7","entrezGeneId":"10527"},{"alias":"RANBP7","entrezGeneId":"10527"},{"alias":"NOL5A","entrezGeneId":"10528"},{"alias":"SCA36","entrezGeneId":"10528"},{"alias":"LASP2","entrezGeneId":"10529"},{"alias":"LNEBL","entrezGeneId":"10529"},{"alias":"MP1","entrezGeneId":"10531"},{"alias":"PreP","entrezGeneId":"10531"},{"alias":"APG7-LIKE","entrezGeneId":"10533"},{"alias":"APG7L","entrezGeneId":"10533"},{"alias":"GSA7","entrezGeneId":"10533"},{"alias":"p27","entrezGeneId":"10534"},{"alias":"AGS4","entrezGeneId":"10535"},{"alias":"JUNB","entrezGeneId":"10535"},{"alias":"RNASEHI","entrezGeneId":"10535"},{"alias":"RNHIA","entrezGeneId":"10535"},{"alias":"RNHL","entrezGeneId":"10535"},{"alias":"GRCB","entrezGeneId":"10536"},{"alias":"HSU47926","entrezGeneId":"10536"},{"alias":"LEPREL2","entrezGeneId":"10536"},{"alias":"FAT10","entrezGeneId":"10537"},{"alias":"GABBR1","entrezGeneId":"10537"},{"alias":"UBD-3","entrezGeneId":"10537"},{"alias":"B-ATF","entrezGeneId":"10538"},{"alias":"BATF1","entrezGeneId":"10538"},{"alias":"SFA-2","entrezGeneId":"10538"},{"alias":"SFA2","entrezGeneId":"10538"},{"alias":"GLRX4","entrezGeneId":"10539"},{"alias":"GRX3","entrezGeneId":"10539"},{"alias":"GRX4","entrezGeneId":"10539"},{"alias":"PICOT","entrezGeneId":"10539"},{"alias":"TXNL2","entrezGeneId":"10539"},{"alias":"TXNL3","entrezGeneId":"10539"},{"alias":"DCTN50","entrezGeneId":"10540"},{"alias":"DYNAMITIN","entrezGeneId":"10540"},{"alias":"HEL-S-77","entrezGeneId":"10540"},{"alias":"RBP50","entrezGeneId":"10540"},{"alias":"APRIL","entrezGeneId":"10541"},{"alias":"PHAPI2","entrezGeneId":"10541"},{"alias":"SSP29","entrezGeneId":"10541"},{"alias":"HBXIP","entrezGeneId":"10542"},{"alias":"XIP","entrezGeneId":"10542"},{"alias":"CCCA","entrezGeneId":"10544"},{"alias":"CCD41","entrezGeneId":"10544"},{"alias":"EPCR","entrezGeneId":"10544"},{"alias":"HMP70","entrezGeneId":"10548"},{"alias":"MP70","entrezGeneId":"10548"},{"alias":"AOE37-2","entrezGeneId":"10549"},{"alias":"AOE372","entrezGeneId":"10549"},{"alias":"HEL-S-97n","entrezGeneId":"10549"},{"alias":"PRX-4","entrezGeneId":"10549"},{"alias":"addicsin","entrezGeneId":"10550"},{"alias":"DERP11","entrezGeneId":"10550"},{"alias":"GTRAP3-18","entrezGeneId":"10550"},{"alias":"hp22","entrezGeneId":"10550"},{"alias":"HSPC127","entrezGeneId":"10550"},{"alias":"jmx","entrezGeneId":"10550"},{"alias":"JWA","entrezGeneId":"10550"},{"alias":"PRAF3","entrezGeneId":"10550"},{"alias":"Yip6b","entrezGeneId":"10550"},{"alias":"AG-2","entrezGeneId":"10551"},{"alias":"AG2","entrezGeneId":"10551"},{"alias":"GOB-4","entrezGeneId":"10551"},{"alias":"HAG-2","entrezGeneId":"10551"},{"alias":"HEL-S-116","entrezGeneId":"10551"},{"alias":"HPC8","entrezGeneId":"10551"},{"alias":"PDIA17","entrezGeneId":"10551"},{"alias":"XAG-2","entrezGeneId":"10551"},{"alias":"Arc40","entrezGeneId":"10552"},{"alias":"HEL-68","entrezGeneId":"10552"},{"alias":"HEL-S-307","entrezGeneId":"10552"},{"alias":"SOP2Hs","entrezGeneId":"10552"},{"alias":"SOP2L","entrezGeneId":"10552"},{"alias":"CC3","entrezGeneId":"10553"},{"alias":"SDR44U1","entrezGeneId":"10553"},{"alias":"TIP30","entrezGeneId":"10553"},{"alias":"1-AGPAT1","entrezGeneId":"10554"},{"alias":"G15","entrezGeneId":"10554"},{"alias":"LPAAT-alpha","entrezGeneId":"10554"},{"alias":"LPAATA","entrezGeneId":"10554"},{"alias":"1-AGPAT2","entrezGeneId":"10555"},{"alias":"BSCL","entrezGeneId":"10555"},{"alias":"BSCL1","entrezGeneId":"10555"},{"alias":"LPAAB","entrezGeneId":"10555"},{"alias":"LPAAT-beta","entrezGeneId":"10555"},{"alias":"TSG15","entrezGeneId":"10556"},{"alias":"HSAN1","entrezGeneId":"10558"},{"alias":"HSN1","entrezGeneId":"10558"},{"alias":"LBC1","entrezGeneId":"10558"},{"alias":"LCB1","entrezGeneId":"10558"},{"alias":"SPT1","entrezGeneId":"10558"},{"alias":"SPTI","entrezGeneId":"10558"},{"alias":"CDG2F","entrezGeneId":"10559"},{"alias":"CMPST","entrezGeneId":"10559"},{"alias":"CST","entrezGeneId":"10559"},{"alias":"hCST","entrezGeneId":"10559"},{"alias":"TC1","entrezGeneId":"10560"},{"alias":"THMD1","entrezGeneId":"10560"},{"alias":"THT1","entrezGeneId":"10560"},{"alias":"THTR1","entrezGeneId":"10560"},{"alias":"TRMA","entrezGeneId":"10560"},{"alias":"MTAP44","entrezGeneId":"10561"},{"alias":"p44","entrezGeneId":"10561"},{"alias":"TLDC5","entrezGeneId":"10561"},{"alias":"bA209J19.1","entrezGeneId":"10562"},{"alias":"GC1","entrezGeneId":"10562"},{"alias":"GW112","entrezGeneId":"10562"},{"alias":"hGC-1","entrezGeneId":"10562"},{"alias":"hOLfD","entrezGeneId":"10562"},{"alias":"OlfD","entrezGeneId":"10562"},{"alias":"OLM4","entrezGeneId":"10562"},{"alias":"UNQ362","entrezGeneId":"10562"},{"alias":"ANGIE","entrezGeneId":"10563"},{"alias":"ANGIE2","entrezGeneId":"10563"},{"alias":"BCA-1","entrezGeneId":"10563"},{"alias":"BCA1","entrezGeneId":"10563"},{"alias":"BLC","entrezGeneId":"10563"},{"alias":"BLR1L","entrezGeneId":"10563"},{"alias":"SCYB13","entrezGeneId":"10563"},{"alias":"BIG2","entrezGeneId":"10564"},{"alias":"dJ1164I10.1","entrezGeneId":"10564"},{"alias":"PVNH2","entrezGeneId":"10564"},{"alias":"ARFGEP1","entrezGeneId":"10565"},{"alias":"BIG1","entrezGeneId":"10565"},{"alias":"P200","entrezGeneId":"10565"},{"alias":"AKAP 110","entrezGeneId":"10566"},{"alias":"AKAP110","entrezGeneId":"10566"},{"alias":"CT82","entrezGeneId":"10566"},{"alias":"FSP95","entrezGeneId":"10566"},{"alias":"HEL159","entrezGeneId":"10566"},{"alias":"PRKA3","entrezGeneId":"10566"},{"alias":"SOB1","entrezGeneId":"10566"},{"alias":"PRA1","entrezGeneId":"10567"},{"alias":"PRAF1","entrezGeneId":"10567"},{"alias":"YIP3","entrezGeneId":"10567"},{"alias":"NAPI-3B","entrezGeneId":"10568"},{"alias":"NAPI-IIb","entrezGeneId":"10568"},{"alias":"NPTIIb","entrezGeneId":"10568"},{"alias":"9G8","entrezGeneId":"10569"},{"alias":"hSlu7","entrezGeneId":"10569"},{"alias":"CRMP3","entrezGeneId":"10570"},{"alias":"DRP-4","entrezGeneId":"10570"},{"alias":"ULIP4","entrezGeneId":"10570"},{"alias":"CD27BP","entrezGeneId":"10572"},{"alias":"SIVA","entrezGeneId":"10572"},{"alias":"Siva-1","entrezGeneId":"10572"},{"alias":"Siva-2","entrezGeneId":"10572"},{"alias":"MAAT1","entrezGeneId":"10573"},{"alias":"p15","entrezGeneId":"10573"},{"alias":"CCTETA","entrezGeneId":"10574"},{"alias":"CCTH","entrezGeneId":"10574"},{"alias":"NIP7-1","entrezGeneId":"10574"},{"alias":"TCP1ETA","entrezGeneId":"10574"},{"alias":"CCT-DELTA","entrezGeneId":"10575"},{"alias":"Cctd","entrezGeneId":"10575"},{"alias":"SRB","entrezGeneId":"10575"},{"alias":"99D8.1","entrezGeneId":"10576"},{"alias":"CCT-beta","entrezGeneId":"10576"},{"alias":"CCTB","entrezGeneId":"10576"},{"alias":"HEL-S-100n","entrezGeneId":"10576"},{"alias":"PRO1633","entrezGeneId":"10576"},{"alias":"TCP-1-beta","entrezGeneId":"10576"},{"alias":"EDDM1","entrezGeneId":"10577"},{"alias":"HE1","entrezGeneId":"10577"},{"alias":"D2S69E","entrezGeneId":"10578"},{"alias":"LAG-2","entrezGeneId":"10578"},{"alias":"LAG2","entrezGeneId":"10578"},{"alias":"NKG5","entrezGeneId":"10578"},{"alias":"TLA519","entrezGeneId":"10578"},{"alias":"AZU-1","entrezGeneId":"10579"},{"alias":"ECTACC","entrezGeneId":"10579"},{"alias":"CAP","entrezGeneId":"10580"},{"alias":"FLAF2","entrezGeneId":"10580"},{"alias":"R85FL","entrezGeneId":"10580"},{"alias":"SH3D5","entrezGeneId":"10580"},{"alias":"SH3P12","entrezGeneId":"10580"},{"alias":"SORB1","entrezGeneId":"10580"},{"alias":"1-8D","entrezGeneId":"10581"},{"alias":"DSPA2c","entrezGeneId":"10581"},{"alias":"3MC3","entrezGeneId":"10584"},{"alias":"CL-34","entrezGeneId":"10584"},{"alias":"CLL1","entrezGeneId":"10584"},{"alias":"LGMD2K","entrezGeneId":"10585"},{"alias":"MDDGA1","entrezGeneId":"10585"},{"alias":"MDDGB1","entrezGeneId":"10585"},{"alias":"MDDGC1","entrezGeneId":"10585"},{"alias":"RT","entrezGeneId":"10585"},{"alias":"MCOPS14","entrezGeneId":"10586"},{"alias":"MCSKS14","entrezGeneId":"10586"},{"alias":"GCCD5","entrezGeneId":"10587"},{"alias":"SELZ","entrezGeneId":"10587"},{"alias":"TR","entrezGeneId":"10587"},{"alias":"TR-BETA","entrezGeneId":"10587"},{"alias":"TR3","entrezGeneId":"10587"},{"alias":"TRXR2","entrezGeneId":"10587"},{"alias":"HsT19268","entrezGeneId":"10588"},{"alias":"NC2-alpha","entrezGeneId":"10589"},{"alias":"CALBL","entrezGeneId":"10590"},{"alias":"DJ501N12.8","entrezGeneId":"10590"},{"alias":"SECRET","entrezGeneId":"10590"},{"alias":"SEGN","entrezGeneId":"10590"},{"alias":"setagin","entrezGeneId":"10590"},{"alias":"C6orf108","entrezGeneId":"10591"},{"alias":"dJ330M21.3","entrezGeneId":"10591"},{"alias":"RCL","entrezGeneId":"10591"},{"alias":"CAP-E","entrezGeneId":"10592"},{"alias":"CAPE","entrezGeneId":"10592"},{"alias":"SMC-2","entrezGeneId":"10592"},{"alias":"SMC2L1","entrezGeneId":"10592"},{"alias":"HPRP8","entrezGeneId":"10594"},{"alias":"PRP8","entrezGeneId":"10594"},{"alias":"PRPC8","entrezGeneId":"10594"},{"alias":"RP13","entrezGeneId":"10594"},{"alias":"SNRNP220","entrezGeneId":"10594"},{"alias":"hIRE2p","entrezGeneId":"10595"},{"alias":"IRE1-BETA","entrezGeneId":"10595"},{"alias":"IRE1b","entrezGeneId":"10595"},{"alias":"IRE2p","entrezGeneId":"10595"},{"alias":"MIP-2A","entrezGeneId":"10597"},{"alias":"SEDLP","entrezGeneId":"10597"},{"alias":"SEDLP1","entrezGeneId":"10597"},{"alias":"TRAPPC2P1","entrezGeneId":"10597"},{"alias":"AHA1","entrezGeneId":"10598"},{"alias":"C14orf3","entrezGeneId":"10598"},{"alias":"hAha1","entrezGeneId":"10598"},{"alias":"p38","entrezGeneId":"10598"},{"alias":"HBLRR","entrezGeneId":"10599"},{"alias":"LST-1","entrezGeneId":"10599"},{"alias":"LST1","entrezGeneId":"10599"},{"alias":"OATP-C","entrezGeneId":"10599"},{"alias":"OATP1B1","entrezGeneId":"10599"},{"alias":"OATP2","entrezGeneId":"10599"},{"alias":"OATPC","entrezGeneId":"10599"},{"alias":"SLC21A6","entrezGeneId":"10599"},{"alias":"UBP-M","entrezGeneId":"10600"},{"alias":"UBPM","entrezGeneId":"10600"},{"alias":"BORG2","entrezGeneId":"10602"},{"alias":"CEP3","entrezGeneId":"10602"},{"alias":"UB1","entrezGeneId":"10602"},{"alias":"APS","entrezGeneId":"10603"},{"alias":"ADE2","entrezGeneId":"10606"},{"alias":"ADE2H1","entrezGeneId":"10606"},{"alias":"AIRC","entrezGeneId":"10606"},{"alias":"PAIS","entrezGeneId":"10606"},{"alias":"SAZD","entrezGeneId":"10607"},{"alias":"UTP13","entrezGeneId":"10607"},{"alias":"bHLHc12","entrezGeneId":"10608"},{"alias":"MAD4","entrezGeneId":"10608"},{"alias":"MST149","entrezGeneId":"10608"},{"alias":"MSTP149","entrezGeneId":"10608"},{"alias":"LEPREL4","entrezGeneId":"10609"},{"alias":"NO55","entrezGeneId":"10609"},{"alias":"NOL55","entrezGeneId":"10609"},{"alias":"SC65","entrezGeneId":"10609"},{"alias":"SAITL1","entrezGeneId":"10610"},{"alias":"SIAT7","entrezGeneId":"10610"},{"alias":"SIAT7B","entrezGeneId":"10610"},{"alias":"SIATL1","entrezGeneId":"10610"},{"alias":"ST6GalNAII","entrezGeneId":"10610"},{"alias":"STHM","entrezGeneId":"10610"},{"alias":"ENH","entrezGeneId":"10611"},{"alias":"ENH1","entrezGeneId":"10611"},{"alias":"L9","entrezGeneId":"10611"},{"alias":"LIM","entrezGeneId":"10611"},{"alias":"BERP","entrezGeneId":"10612"},{"alias":"HAC1","entrezGeneId":"10612"},{"alias":"RNF22","entrezGeneId":"10612"},{"alias":"RNF97","entrezGeneId":"10612"},{"alias":"C10orf69","entrezGeneId":"10613"},{"alias":"Erlin-1","entrezGeneId":"10613"},{"alias":"KE04","entrezGeneId":"10613"},{"alias":"KEO4","entrezGeneId":"10613"},{"alias":"SPFH1","entrezGeneId":"10613"},{"alias":"SPG62","entrezGeneId":"10613"},{"alias":"CLP1","entrezGeneId":"10614"},{"alias":"EDG1","entrezGeneId":"10614"},{"alias":"HIS1","entrezGeneId":"10614"},{"alias":"MAQ1","entrezGeneId":"10614"},{"alias":"DEEPEST","entrezGeneId":"10615"},{"alias":"hMAP126","entrezGeneId":"10615"},{"alias":"MAP126","entrezGeneId":"10615"},{"alias":"C20orf18","entrezGeneId":"10616"},{"alias":"HOIL-1","entrezGeneId":"10616"},{"alias":"HOIL1","entrezGeneId":"10616"},{"alias":"PBMEI","entrezGeneId":"10616"},{"alias":"PGBM1","entrezGeneId":"10616"},{"alias":"RBCK2","entrezGeneId":"10616"},{"alias":"RNF54","entrezGeneId":"10616"},{"alias":"UBCE7IP3","entrezGeneId":"10616"},{"alias":"XAP3","entrezGeneId":"10616"},{"alias":"XAP4","entrezGeneId":"10616"},{"alias":"ZRANB4","entrezGeneId":"10616"},{"alias":"AMSH","entrezGeneId":"10617"},{"alias":"MICCAP","entrezGeneId":"10617"},{"alias":"TGN38","entrezGeneId":"10618"},{"alias":"TGN46","entrezGeneId":"10618"},{"alias":"TGN48","entrezGeneId":"10618"},{"alias":"TGN51","entrezGeneId":"10618"},{"alias":"TTGN2","entrezGeneId":"10618"},{"alias":"BDP","entrezGeneId":"10620"},{"alias":"DRIL2","entrezGeneId":"10620"},{"alias":"RPC39","entrezGeneId":"10621"},{"alias":"RPC6","entrezGeneId":"10621"},{"alias":"RPC32","entrezGeneId":"10622"},{"alias":"RPC7","entrezGeneId":"10622"},{"alias":"RPC3","entrezGeneId":"10623"},{"alias":"RPC62","entrezGeneId":"10623"},{"alias":"ARA3","entrezGeneId":"10625"},{"alias":"FLARA3","entrezGeneId":"10625"},{"alias":"HSPC068","entrezGeneId":"10625"},{"alias":"KLHL39","entrezGeneId":"10625"},{"alias":"ND1","entrezGeneId":"10625"},{"alias":"NS-1","entrezGeneId":"10625"},{"alias":"NS1-BP","entrezGeneId":"10625"},{"alias":"NS1BP","entrezGeneId":"10625"},{"alias":"EBBP","entrezGeneId":"10626"},{"alias":"HEL-S-24","entrezGeneId":"10627"},{"alias":"MLC-2B","entrezGeneId":"10627"},{"alias":"MLCB","entrezGeneId":"10627"},{"alias":"MRCL3","entrezGeneId":"10627"},{"alias":"MRLC3","entrezGeneId":"10627"},{"alias":"MYL2B","entrezGeneId":"10627"},{"alias":"ARRDC6","entrezGeneId":"10628"},{"alias":"EST01027","entrezGeneId":"10628"},{"alias":"HHCPA78","entrezGeneId":"10628"},{"alias":"THIF","entrezGeneId":"10628"},{"alias":"VDUP1","entrezGeneId":"10628"},{"alias":"PAF65A","entrezGeneId":"10629"},{"alias":"AGGRUS","entrezGeneId":"10630"},{"alias":"GP36","entrezGeneId":"10630"},{"alias":"Gp38","entrezGeneId":"10630"},{"alias":"GP40","entrezGeneId":"10630"},{"alias":"HT1A-1","entrezGeneId":"10630"},{"alias":"OTS8","entrezGeneId":"10630"},{"alias":"PA2.26","entrezGeneId":"10630"},{"alias":"T1A","entrezGeneId":"10630"},{"alias":"T1A-2","entrezGeneId":"10630"},{"alias":"T1A2","entrezGeneId":"10630"},{"alias":"TI1A","entrezGeneId":"10630"},{"alias":"OSF-2","entrezGeneId":"10631"},{"alias":"OSF2","entrezGeneId":"10631"},{"alias":"PDLPOSTN","entrezGeneId":"10631"},{"alias":"PN","entrezGeneId":"10631"},{"alias":"ATP5JG","entrezGeneId":"10632"},{"alias":"ATP5L","entrezGeneId":"10632"},{"alias":"RRP22","entrezGeneId":"10633"},{"alias":"GAR22","entrezGeneId":"10634"},{"alias":"PIR51","entrezGeneId":"10635"},{"alias":"LEFTB","entrezGeneId":"10637"},{"alias":"LEFTYB","entrezGeneId":"10637"},{"alias":"hhc(M)","entrezGeneId":"10639"},{"alias":"HSEC10","entrezGeneId":"10640"},{"alias":"PRO1912","entrezGeneId":"10640"},{"alias":"SEC10","entrezGeneId":"10640"},{"alias":"SEC10L1","entrezGeneId":"10640"},{"alias":"SEC10P","entrezGeneId":"10640"},{"alias":"FFEVF2","entrezGeneId":"10641"},{"alias":"NPR2","entrezGeneId":"10641"},{"alias":"NPR2L","entrezGeneId":"10641"},{"alias":"TUSC4","entrezGeneId":"10641"},{"alias":"CRD-BP","entrezGeneId":"10642"},{"alias":"CRDBP","entrezGeneId":"10642"},{"alias":"IMP-1","entrezGeneId":"10642"},{"alias":"IMP1","entrezGeneId":"10642"},{"alias":"VICKZ1","entrezGeneId":"10642"},{"alias":"ZBP1","entrezGeneId":"10642"},{"alias":"CT98","entrezGeneId":"10643"},{"alias":"IMP-3","entrezGeneId":"10643"},{"alias":"IMP3","entrezGeneId":"10643"},{"alias":"KOC","entrezGeneId":"10643"},{"alias":"KOC1","entrezGeneId":"10643"},{"alias":"VICKZ3","entrezGeneId":"10643"},{"alias":"IMP-2","entrezGeneId":"10644"},{"alias":"IMP2","entrezGeneId":"10644"},{"alias":"VICKZ2","entrezGeneId":"10644"},{"alias":"CAMKK","entrezGeneId":"10645"},{"alias":"CAMKKB","entrezGeneId":"10645"},{"alias":"LIPB","entrezGeneId":"10647"},{"alias":"LPHB","entrezGeneId":"10647"},{"alias":"LPNB","entrezGeneId":"10647"},{"alias":"LIPA","entrezGeneId":"10648"},{"alias":"LPHA","entrezGeneId":"10648"},{"alias":"LPNA","entrezGeneId":"10648"},{"alias":"C18orf43","entrezGeneId":"10650"},{"alias":"HFL-EDDG1","entrezGeneId":"10650"},{"alias":"SLMO1","entrezGeneId":"10650"},{"alias":"DIAR3","entrezGeneId":"10653"},{"alias":"HAI-2","entrezGeneId":"10653"},{"alias":"HAI2","entrezGeneId":"10653"},{"alias":"Kop","entrezGeneId":"10653"},{"alias":"PB","entrezGeneId":"10653"},{"alias":"HUMPMKI","entrezGeneId":"10654"},{"alias":"PMK","entrezGeneId":"10654"},{"alias":"PMKA","entrezGeneId":"10654"},{"alias":"PMKASE","entrezGeneId":"10654"},{"alias":"POROK1","entrezGeneId":"10654"},{"alias":"Etle","entrezGeneId":"10656"},{"alias":"etoile","entrezGeneId":"10656"},{"alias":"SALP","entrezGeneId":"10656"},{"alias":"SLM-2","entrezGeneId":"10656"},{"alias":"SLM2","entrezGeneId":"10656"},{"alias":"T-STAR","entrezGeneId":"10656"},{"alias":"TSTAR","entrezGeneId":"10656"},{"alias":"p62","entrezGeneId":"10657"},{"alias":"p68","entrezGeneId":"10657"},{"alias":"Sam68","entrezGeneId":"10657"},{"alias":"BRUNOL2","entrezGeneId":"10658"},{"alias":"CUG-BP","entrezGeneId":"10658"},{"alias":"CUGBP","entrezGeneId":"10658"},{"alias":"CUGBP1","entrezGeneId":"10658"},{"alias":"EDEN-BP","entrezGeneId":"10658"},{"alias":"hNab50","entrezGeneId":"10658"},{"alias":"NAB50","entrezGeneId":"10658"},{"alias":"NAPOR","entrezGeneId":"10658"},{"alias":"BRUNOL3","entrezGeneId":"10659"},{"alias":"CELF-2","entrezGeneId":"10659"},{"alias":"CUG-BP2","entrezGeneId":"10659"},{"alias":"CUGBP2","entrezGeneId":"10659"},{"alias":"ETR-3","entrezGeneId":"10659"},{"alias":"ETR3","entrezGeneId":"10659"},{"alias":"NAPOR","entrezGeneId":"10659"},{"alias":"homeobox","entrezGeneId":"10660"},{"alias":"HPX-6","entrezGeneId":"10660"},{"alias":"HPX6","entrezGeneId":"10660"},{"alias":"LBX1H","entrezGeneId":"10660"},{"alias":"EKLF","entrezGeneId":"10661"},{"alias":"BONZO","entrezGeneId":"10663"},{"alias":"CD186","entrezGeneId":"10663"},{"alias":"STRL33","entrezGeneId":"10663"},{"alias":"TYMSTR","entrezGeneId":"10663"},{"alias":"MRD21","entrezGeneId":"10664"},{"alias":"TSBP","entrezGeneId":"10665"},{"alias":"DNAM-1","entrezGeneId":"10666"},{"alias":"DNAM1","entrezGeneId":"10666"},{"alias":"PTA1","entrezGeneId":"10666"},{"alias":"TLiSA1","entrezGeneId":"10666"},{"alias":"COXPD14","entrezGeneId":"10667"},{"alias":"FARS1","entrezGeneId":"10667"},{"alias":"HSPC320","entrezGeneId":"10667"},{"alias":"PheRS","entrezGeneId":"10667"},{"alias":"SPG77","entrezGeneId":"10667"},{"alias":"CGR19","entrezGeneId":"10668"},{"alias":"RNF197","entrezGeneId":"10668"},{"alias":"CGR11","entrezGeneId":"10669"},{"alias":"FIP-1","entrezGeneId":"10670"},{"alias":"FIP1","entrezGeneId":"10670"},{"alias":"RAGA","entrezGeneId":"10670"},{"alias":"p27","entrezGeneId":"10671"},{"alias":"WS-3","entrezGeneId":"10671"},{"alias":"WS3","entrezGeneId":"10671"},{"alias":"G13","entrezGeneId":"10672"},{"alias":"BAFF","entrezGeneId":"10673"},{"alias":"BLYS","entrezGeneId":"10673"},{"alias":"CD257","entrezGeneId":"10673"},{"alias":"DTL","entrezGeneId":"10673"},{"alias":"TALL-1","entrezGeneId":"10673"},{"alias":"TALL1","entrezGeneId":"10673"},{"alias":"THANK","entrezGeneId":"10673"},{"alias":"TNFSF20","entrezGeneId":"10673"},{"alias":"TNLG7A","entrezGeneId":"10673"},{"alias":"ZTNF4","entrezGeneId":"10673"},{"alias":"DUS","entrezGeneId":"10674"},{"alias":"NGC","entrezGeneId":"10675"},{"alias":"ADVIL","entrezGeneId":"10677"},{"alias":"DOC6","entrezGeneId":"10677"},{"alias":"p92","entrezGeneId":"10677"},{"alias":"3-Gn-T1","entrezGeneId":"10678"},{"alias":"3-Gn-T2","entrezGeneId":"10678"},{"alias":"B3GN-T2","entrezGeneId":"10678"},{"alias":"B3GNT","entrezGeneId":"10678"},{"alias":"B3GNT-2","entrezGeneId":"10678"},{"alias":"B3GNT1","entrezGeneId":"10678"},{"alias":"beta-1","entrezGeneId":"10678"},{"alias":"beta3Gn-T1","entrezGeneId":"10678"},{"alias":"beta3Gn-T2","entrezGeneId":"10678"},{"alias":"BETA3GNT","entrezGeneId":"10678"},{"alias":"BGnT-2","entrezGeneId":"10678"},{"alias":"BGNT2","entrezGeneId":"10678"},{"alias":"GB5","entrezGeneId":"10681"},{"alias":"IDDCA","entrezGeneId":"10681"},{"alias":"LADCI","entrezGeneId":"10681"},{"alias":"CDPX2","entrezGeneId":"10682"},{"alias":"CHO2","entrezGeneId":"10682"},{"alias":"CPX","entrezGeneId":"10682"},{"alias":"CPXD","entrezGeneId":"10682"},{"alias":"MEND","entrezGeneId":"10682"},{"alias":"SCDO1","entrezGeneId":"10683"},{"alias":"HOMG3","entrezGeneId":"10686"},{"alias":"PCLN1","entrezGeneId":"10686"},{"alias":"MA2","entrezGeneId":"10687"},{"alias":"MM2","entrezGeneId":"10687"},{"alias":"RGAG2","entrezGeneId":"10687"},{"alias":"CRSP85","entrezGeneId":"10688"},{"alias":"Fuc-TIX","entrezGeneId":"10690"},{"alias":"P96PIF","entrezGeneId":"10691"},{"alias":"PIF96","entrezGeneId":"10691"},{"alias":"CCT-zeta-2","entrezGeneId":"10693"},{"alias":"CCTZ-2","entrezGeneId":"10693"},{"alias":"Cctz2","entrezGeneId":"10693"},{"alias":"TCP-1-zeta-2","entrezGeneId":"10693"},{"alias":"TSA303","entrezGeneId":"10693"},{"alias":"C21orf112","entrezGeneId":"10694"},{"alias":"Cctq","entrezGeneId":"10694"},{"alias":"D21S246","entrezGeneId":"10694"},{"alias":"PRED71","entrezGeneId":"10694"},{"alias":"CAG4A","entrezGeneId":"10695"},{"alias":"ERDA5","entrezGeneId":"10695"},{"alias":"PRAT4A","entrezGeneId":"10695"},{"alias":"TNRC5","entrezGeneId":"10695"},{"alias":"ATC2","entrezGeneId":"10699"},{"alias":"CRN","entrezGeneId":"10699"},{"alias":"Lrp4","entrezGeneId":"10699"},{"alias":"PEE5","entrezGeneId":"10699"},{"alias":"TMPRSS10","entrezGeneId":"10699"},{"alias":"C1orf2","entrezGeneId":"10712"},{"alias":"COTE1","entrezGeneId":"10712"},{"alias":"65K","entrezGeneId":"10713"},{"alias":"CGI-21","entrezGeneId":"10713"},{"alias":"HSPC332","entrezGeneId":"10713"},{"alias":"SAD1","entrezGeneId":"10713"},{"alias":"SNRNP65","entrezGeneId":"10713"},{"alias":"P66","entrezGeneId":"10714"},{"alias":"P68","entrezGeneId":"10714"},{"alias":"PPP1R128","entrezGeneId":"10714"},{"alias":"EPM8","entrezGeneId":"10715"},{"alias":"LAG1","entrezGeneId":"10715"},{"alias":"LASS1","entrezGeneId":"10715"},{"alias":"UOG1","entrezGeneId":"10715"},{"alias":"TBR-1","entrezGeneId":"10716"},{"alias":"TES-56","entrezGeneId":"10716"},{"alias":"BETA-4","entrezGeneId":"10717"},{"alias":"CPSQ5","entrezGeneId":"10717"},{"alias":"SPG47","entrezGeneId":"10717"},{"alias":"HRG3","entrezGeneId":"10718"},{"alias":"pro-NRG3","entrezGeneId":"10718"},{"alias":"PRO0327","entrezGeneId":"10721"},{"alias":"KCC4","entrezGeneId":"10723"},{"alias":"MEA5","entrezGeneId":"10724"},{"alias":"NCOAT","entrezGeneId":"10724"},{"alias":"OGA","entrezGeneId":"10724"},{"alias":"NF-AT5","entrezGeneId":"10725"},{"alias":"NFATL1","entrezGeneId":"10725"},{"alias":"NFATZ","entrezGeneId":"10725"},{"alias":"OREBP","entrezGeneId":"10725"},{"alias":"TONEBP","entrezGeneId":"10725"},{"alias":"HNUDC","entrezGeneId":"10726"},{"alias":"MNUDC","entrezGeneId":"10726"},{"alias":"NPD011","entrezGeneId":"10726"},{"alias":"cPGES","entrezGeneId":"10728"},{"alias":"P23","entrezGeneId":"10728"},{"alias":"TEBP","entrezGeneId":"10728"},{"alias":"FTSH","entrezGeneId":"10730"},{"alias":"MEG4","entrezGeneId":"10730"},{"alias":"OPA11","entrezGeneId":"10730"},{"alias":"PAMP","entrezGeneId":"10730"},{"alias":"YME1L","entrezGeneId":"10730"},{"alias":"bHLHe82","entrezGeneId":"10732"},{"alias":"CHA","entrezGeneId":"10732"},{"alias":"E2BP-1","entrezGeneId":"10732"},{"alias":"Figlb","entrezGeneId":"10732"},{"alias":"SOSF1","entrezGeneId":"10732"},{"alias":"MCCRP2","entrezGeneId":"10733"},{"alias":"SAK","entrezGeneId":"10733"},{"alias":"STK18","entrezGeneId":"10733"},{"alias":"bA517O1.1","entrezGeneId":"10735"},{"alias":"SA-2","entrezGeneId":"10735"},{"alias":"SA2","entrezGeneId":"10735"},{"alias":"SCC3B","entrezGeneId":"10735"},{"alias":"NCRNA00005","entrezGeneId":"10737"},{"alias":"RFPL3-AS","entrezGeneId":"10737"},{"alias":"RFPL3-AS1","entrezGeneId":"10737"},{"alias":"RFPL3ANT","entrezGeneId":"10737"},{"alias":"RFPL3AS","entrezGeneId":"10737"},{"alias":"RNF120","entrezGeneId":"10738"},{"alias":"RNF79","entrezGeneId":"10739"},{"alias":"NCRNA00006","entrezGeneId":"10740"},{"alias":"RFPL1-AS","entrezGeneId":"10740"},{"alias":"RFPL1-AS1","entrezGeneId":"10740"},{"alias":"RFPL1AS","entrezGeneId":"10740"},{"alias":"BOG","entrezGeneId":"10741"},{"alias":"RBBP10","entrezGeneId":"10741"},{"alias":"SMCR","entrezGeneId":"10743"},{"alias":"SMS","entrezGeneId":"10743"},{"alias":"PHTF","entrezGeneId":"10745"},{"alias":"MEKK2","entrezGeneId":"10746"},{"alias":"MEKK2B","entrezGeneId":"10746"},{"alias":"MAP19","entrezGeneId":"10747"},{"alias":"MASP-2","entrezGeneId":"10747"},{"alias":"MASP1P1","entrezGeneId":"10747"},{"alias":"sMAP","entrezGeneId":"10747"},{"alias":"KLRA1","entrezGeneId":"10748"},{"alias":"KLRAP1","entrezGeneId":"10748"},{"alias":"Ly-49L","entrezGeneId":"10748"},{"alias":"Ly49","entrezGeneId":"10748"},{"alias":"LY49L","entrezGeneId":"10748"},{"alias":"LTXS1","entrezGeneId":"10749"},{"alias":"SATX2","entrezGeneId":"10749"},{"alias":"SAX2","entrezGeneId":"10749"},{"alias":"SPAX2","entrezGeneId":"10749"},{"alias":"SPG58","entrezGeneId":"10749"},{"alias":"71-7A2","entrezGeneId":"10751"},{"alias":"CYorf1","entrezGeneId":"10751"},{"alias":"OFD1P18","entrezGeneId":"10751"},{"alias":"OFD1PY18","entrezGeneId":"10751"},{"alias":"CALL","entrezGeneId":"10752"},{"alias":"L1CAM2","entrezGeneId":"10752"},{"alias":"GC36","entrezGeneId":"10753"},{"alias":"nCL-4","entrezGeneId":"10753"},{"alias":"C19orf3","entrezGeneId":"10755"},{"alias":"GIPC","entrezGeneId":"10755"},{"alias":"GLUT1CBP","entrezGeneId":"10755"},{"alias":"Hs.6454","entrezGeneId":"10755"},{"alias":"IIP-1","entrezGeneId":"10755"},{"alias":"NIP","entrezGeneId":"10755"},{"alias":"RGS19IP1","entrezGeneId":"10755"},{"alias":"SEMCAP","entrezGeneId":"10755"},{"alias":"SYNECTIIN","entrezGeneId":"10755"},{"alias":"SYNECTIN","entrezGeneId":"10755"},{"alias":"TIP-2","entrezGeneId":"10755"},{"alias":"ACT1","entrezGeneId":"10758"},{"alias":"C6orf2","entrezGeneId":"10758"},{"alias":"C6orf4","entrezGeneId":"10758"},{"alias":"C6orf5","entrezGeneId":"10758"},{"alias":"C6orf6","entrezGeneId":"10758"},{"alias":"CANDF8","entrezGeneId":"10758"},{"alias":"CIKS","entrezGeneId":"10758"},{"alias":"PSORS13","entrezGeneId":"10758"},{"alias":"CT92","entrezGeneId":"10761"},{"alias":"OOSP2L","entrezGeneId":"10761"},{"alias":"NPAP60","entrezGeneId":"10762"},{"alias":"NPAP60L","entrezGeneId":"10762"},{"alias":"Nbla00170","entrezGeneId":"10763"},{"alias":"CT31","entrezGeneId":"10765"},{"alias":"JARID1B","entrezGeneId":"10765"},{"alias":"PLU-1","entrezGeneId":"10765"},{"alias":"PLU1","entrezGeneId":"10765"},{"alias":"PPP1R98","entrezGeneId":"10765"},{"alias":"PUT1","entrezGeneId":"10765"},{"alias":"RBBP2H1A","entrezGeneId":"10765"},{"alias":"RBP2-H1","entrezGeneId":"10765"},{"alias":"APRO5","entrezGeneId":"10766"},{"alias":"TOB4","entrezGeneId":"10766"},{"alias":"TOBL","entrezGeneId":"10766"},{"alias":"TROB2","entrezGeneId":"10766"},{"alias":"EF-1a","entrezGeneId":"10767"},{"alias":"eRF3c","entrezGeneId":"10767"},{"alias":"ERFS","entrezGeneId":"10767"},{"alias":"HBS1","entrezGeneId":"10767"},{"alias":"HSPC276","entrezGeneId":"10767"},{"alias":"DCAL","entrezGeneId":"10768"},{"alias":"IRBIT","entrezGeneId":"10768"},{"alias":"PPP1R78","entrezGeneId":"10768"},{"alias":"PRO0233","entrezGeneId":"10768"},{"alias":"XPVKONA","entrezGeneId":"10768"},{"alias":"hPlk2","entrezGeneId":"10769"},{"alias":"hSNK","entrezGeneId":"10769"},{"alias":"SNK","entrezGeneId":"10769"},{"alias":"BRAM1","entrezGeneId":"10771"},{"alias":"BS69","entrezGeneId":"10771"},{"alias":"MRD30","entrezGeneId":"10771"},{"alias":"FUSIP1","entrezGeneId":"10772"},{"alias":"FUSIP2","entrezGeneId":"10772"},{"alias":"NSSR","entrezGeneId":"10772"},{"alias":"PPP1R149","entrezGeneId":"10772"},{"alias":"SFRS13","entrezGeneId":"10772"},{"alias":"SFRS13A","entrezGeneId":"10772"},{"alias":"SRp38","entrezGeneId":"10772"},{"alias":"SRrp40","entrezGeneId":"10772"},{"alias":"TASR","entrezGeneId":"10772"},{"alias":"TASR1","entrezGeneId":"10772"},{"alias":"TASR2","entrezGeneId":"10772"},{"alias":"ZID","entrezGeneId":"10773"},{"alias":"ZNF482","entrezGeneId":"10773"},{"alias":"RPP29","entrezGeneId":"10775"},{"alias":"ARPP-16","entrezGeneId":"10776"},{"alias":"ARPP-19","entrezGeneId":"10776"},{"alias":"ARPP16","entrezGeneId":"10776"},{"alias":"ENSAL","entrezGeneId":"10776"},{"alias":"ARPP-21","entrezGeneId":"10777"},{"alias":"R3HDM3","entrezGeneId":"10777"},{"alias":"RCS","entrezGeneId":"10777"},{"alias":"TARPP","entrezGeneId":"10777"},{"alias":"CT-ZFP48","entrezGeneId":"10778"},{"alias":"HZF7","entrezGeneId":"10778"},{"alias":"ZNF-dp","entrezGeneId":"10778"},{"alias":"ZNF-EB","entrezGeneId":"10778"},{"alias":"ZNF271","entrezGeneId":"10778"},{"alias":"ZNFEB","entrezGeneId":"10778"},{"alias":"HZF4","entrezGeneId":"10780"},{"alias":"ZNF269","entrezGeneId":"10780"},{"alias":"HZF1","entrezGeneId":"10781"},{"alias":"HFB101","entrezGeneId":"10782"},{"alias":"ZF2","entrezGeneId":"10782"},{"alias":"ZKSCAN19","entrezGeneId":"10782"},{"alias":"ZSCAN51","entrezGeneId":"10782"},{"alias":"SID6-1512","entrezGeneId":"10783"},{"alias":"TRM82","entrezGeneId":"10785"},{"alias":"TRMT82","entrezGeneId":"10785"},{"alias":"GOUT4","entrezGeneId":"10786"},{"alias":"NPT4","entrezGeneId":"10786"},{"alias":"UAQTL4","entrezGeneId":"10786"},{"alias":"HEM2","entrezGeneId":"10787"},{"alias":"NAP1","entrezGeneId":"10787"},{"alias":"NAP125","entrezGeneId":"10787"},{"alias":"p125Nap1","entrezGeneId":"10787"},{"alias":"HZF9","entrezGeneId":"10793"},{"alias":"HZF8","entrezGeneId":"10794"},{"alias":"ZNF272","entrezGeneId":"10794"},{"alias":"HZF3","entrezGeneId":"10795"},{"alias":"NMDMC","entrezGeneId":"10797"},{"alias":"HSOlf1","entrezGeneId":"10798"},{"alias":"OLF1","entrezGeneId":"10798"},{"alias":"bA428J1.3","entrezGeneId":"10799"},{"alias":"RNASEP1","entrezGeneId":"10799"},{"alias":"CYSLT1","entrezGeneId":"10800"},{"alias":"CYSLT1R","entrezGeneId":"10800"},{"alias":"CYSLTR","entrezGeneId":"10800"},{"alias":"HMTMF81","entrezGeneId":"10800"},{"alias":"AF17q25","entrezGeneId":"10801"},{"alias":"MSF","entrezGeneId":"10801"},{"alias":"MSF1","entrezGeneId":"10801"},{"alias":"NAPB","entrezGeneId":"10801"},{"alias":"PNUTL4","entrezGeneId":"10801"},{"alias":"SeptD1","entrezGeneId":"10801"},{"alias":"SINT1","entrezGeneId":"10801"},{"alias":"CC-CKR-9","entrezGeneId":"10803"},{"alias":"CDw199","entrezGeneId":"10803"},{"alias":"GPR-9-6","entrezGeneId":"10803"},{"alias":"GPR28","entrezGeneId":"10803"},{"alias":"CX30","entrezGeneId":"10804"},{"alias":"DFNA3","entrezGeneId":"10804"},{"alias":"DFNA3B","entrezGeneId":"10804"},{"alias":"DFNB1B","entrezGeneId":"10804"},{"alias":"ECTD2","entrezGeneId":"10804"},{"alias":"ED2","entrezGeneId":"10804"},{"alias":"EDH","entrezGeneId":"10804"},{"alias":"HED","entrezGeneId":"10804"},{"alias":"HED2","entrezGeneId":"10804"},{"alias":"BBS16","entrezGeneId":"10806"},{"alias":"CCCAP","entrezGeneId":"10806"},{"alias":"CCCAP SLSN7","entrezGeneId":"10806"},{"alias":"hCCCAP","entrezGeneId":"10806"},{"alias":"HSPC085","entrezGeneId":"10806"},{"alias":"NPHP10","entrezGeneId":"10806"},{"alias":"NY-CO-8","entrezGeneId":"10806"},{"alias":"SLSN7","entrezGeneId":"10806"},{"alias":"NY-CO-3","entrezGeneId":"10807"},{"alias":"HSP105","entrezGeneId":"10808"},{"alias":"HSP105A","entrezGeneId":"10808"},{"alias":"HSP105B","entrezGeneId":"10808"},{"alias":"NY-CO-25","entrezGeneId":"10808"},{"alias":"CGI-52","entrezGeneId":"10809"},{"alias":"NY-CO-28","entrezGeneId":"10809"},{"alias":"PCTP2","entrezGeneId":"10809"},{"alias":"SDCCAG28","entrezGeneId":"10809"},{"alias":"Brush-1","entrezGeneId":"10810"},{"alias":"SCAR3","entrezGeneId":"10810"},{"alias":"WAVE3","entrezGeneId":"10810"},{"alias":"NY-CO-31","entrezGeneId":"10811"},{"alias":"p51NOX","entrezGeneId":"10811"},{"alias":"SDCCAG31","entrezGeneId":"10811"},{"alias":"dJ537K23.3","entrezGeneId":"10813"},{"alias":"NYCO16","entrezGeneId":"10813"},{"alias":"SDCCAG16","entrezGeneId":"10813"},{"alias":"Utp14","entrezGeneId":"10813"},{"alias":"921-L","entrezGeneId":"10814"},{"alias":"CPX-2","entrezGeneId":"10814"},{"alias":"CPX2","entrezGeneId":"10814"},{"alias":"Hfb1","entrezGeneId":"10814"},{"alias":"CPX-I","entrezGeneId":"10815"},{"alias":"CPX1","entrezGeneId":"10815"},{"alias":"HKIB9","entrezGeneId":"10816"},{"alias":"FRS2-beta","entrezGeneId":"10817"},{"alias":"FRS2B","entrezGeneId":"10817"},{"alias":"FRS2beta","entrezGeneId":"10817"},{"alias":"SNT-2","entrezGeneId":"10817"},{"alias":"SNT2","entrezGeneId":"10817"},{"alias":"FRS1A","entrezGeneId":"10818"},{"alias":"FRS2A","entrezGeneId":"10818"},{"alias":"FRS2alpha","entrezGeneId":"10818"},{"alias":"SNT","entrezGeneId":"10818"},{"alias":"SNT-1","entrezGeneId":"10818"},{"alias":"SNT1","entrezGeneId":"10818"},{"alias":"OR11-5","entrezGeneId":"10819"},{"alias":"OR7E151P","entrezGeneId":"10819"},{"alias":"OR11-4","entrezGeneId":"10820"},{"alias":"OR7E44P","entrezGeneId":"10820"},{"alias":"OST022","entrezGeneId":"10820"},{"alias":"PJCG2","entrezGeneId":"10820"},{"alias":"HG1058","entrezGeneId":"10821"},{"alias":"OR11-3","entrezGeneId":"10821"},{"alias":"OR7E58P","entrezGeneId":"10821"},{"alias":"OR7E79P","entrezGeneId":"10821"},{"alias":"OR7E81P","entrezGeneId":"10821"},{"alias":"OST021","entrezGeneId":"10821"},{"alias":"OR11-2","entrezGeneId":"10822"},{"alias":"OR7E144P","entrezGeneId":"10822"},{"alias":"OR11-1","entrezGeneId":"10823"},{"alias":"EPAG","entrezGeneId":"10824"},{"alias":"SIAL3","entrezGeneId":"10825"},{"alias":"C5orf4","entrezGeneId":"10826"},{"alias":"133K02","entrezGeneId":"10827"},{"alias":"C5orf3","entrezGeneId":"10827"},{"alias":"NG7-6","entrezGeneId":"10831"},{"alias":"NPM1P16","entrezGeneId":"10831"},{"alias":"NPMP7","entrezGeneId":"10831"},{"alias":"10-fTHF","entrezGeneId":"10840"},{"alias":"10-FTHFDH","entrezGeneId":"10840"},{"alias":"FDH","entrezGeneId":"10840"},{"alias":"FTHFD","entrezGeneId":"10840"},{"alias":"LCHC1","entrezGeneId":"10841"},{"alias":"C7orf16","entrezGeneId":"10842"},{"alias":"GSBS","entrezGeneId":"10842"},{"alias":"ALP4","entrezGeneId":"10844"},{"alias":"GCP-2","entrezGeneId":"10844"},{"alias":"GCP2","entrezGeneId":"10844"},{"alias":"Grip103","entrezGeneId":"10844"},{"alias":"h103p","entrezGeneId":"10844"},{"alias":"hGCP2","entrezGeneId":"10844"},{"alias":"hSpc97","entrezGeneId":"10844"},{"alias":"SPBC97","entrezGeneId":"10844"},{"alias":"SPC97","entrezGeneId":"10844"},{"alias":"Spc97p","entrezGeneId":"10844"},{"alias":"ADSD2","entrezGeneId":"10846"},{"alias":"HSPDE10A","entrezGeneId":"10846"},{"alias":"IOLOD","entrezGeneId":"10846"},{"alias":"LINC00473","entrezGeneId":"10846"},{"alias":"PDE10A19","entrezGeneId":"10846"},{"alias":"DOMO1","entrezGeneId":"10847"},{"alias":"EAF1","entrezGeneId":"10847"},{"alias":"FLHS","entrezGeneId":"10847"},{"alias":"SWR1","entrezGeneId":"10847"},{"alias":"IASPP","entrezGeneId":"10848"},{"alias":"NKIP1","entrezGeneId":"10848"},{"alias":"RAI","entrezGeneId":"10848"},{"alias":"RAI4","entrezGeneId":"10848"},{"alias":"ASE-1","entrezGeneId":"10849"},{"alias":"ASE1","entrezGeneId":"10849"},{"alias":"CAST","entrezGeneId":"10849"},{"alias":"PAF49","entrezGeneId":"10849"},{"alias":"ALP","entrezGeneId":"10850"},{"alias":"CTACK","entrezGeneId":"10850"},{"alias":"CTAK","entrezGeneId":"10850"},{"alias":"ESKINE","entrezGeneId":"10850"},{"alias":"ILC","entrezGeneId":"10850"},{"alias":"PESKY","entrezGeneId":"10850"},{"alias":"SCYA27","entrezGeneId":"10850"},{"alias":"HPA","entrezGeneId":"10855"},{"alias":"HPA1","entrezGeneId":"10855"},{"alias":"HPR1","entrezGeneId":"10855"},{"alias":"HPSE1","entrezGeneId":"10855"},{"alias":"HSE1","entrezGeneId":"10855"},{"alias":"CGI-46","entrezGeneId":"10856"},{"alias":"ECP-51","entrezGeneId":"10856"},{"alias":"ECP51","entrezGeneId":"10856"},{"alias":"INO80J","entrezGeneId":"10856"},{"alias":"REPTIN","entrezGeneId":"10856"},{"alias":"RVB2","entrezGeneId":"10856"},{"alias":"TAP54-beta","entrezGeneId":"10856"},{"alias":"TIH2","entrezGeneId":"10856"},{"alias":"TIP48","entrezGeneId":"10856"},{"alias":"TIP49B","entrezGeneId":"10856"},{"alias":"Dap1","entrezGeneId":"10857"},{"alias":"HPR6.6","entrezGeneId":"10857"},{"alias":"IZA","entrezGeneId":"10857"},{"alias":"MPR","entrezGeneId":"10857"},{"alias":"CP46","entrezGeneId":"10858"},{"alias":"CYP46","entrezGeneId":"10858"},{"alias":"CD85J","entrezGeneId":"10859"},{"alias":"ILT-2","entrezGeneId":"10859"},{"alias":"ILT2","entrezGeneId":"10859"},{"alias":"LIR-1","entrezGeneId":"10859"},{"alias":"LIR1","entrezGeneId":"10859"},{"alias":"MIR-7","entrezGeneId":"10859"},{"alias":"MIR7","entrezGeneId":"10859"},{"alias":"PIR-B","entrezGeneId":"10859"},{"alias":"PIRB","entrezGeneId":"10859"},{"alias":"CAON","entrezGeneId":"10861"},{"alias":"EDM4","entrezGeneId":"10861"},{"alias":"SAT-1","entrezGeneId":"10861"},{"alias":"SAT1","entrezGeneId":"10861"},{"alias":"ADAM 28","entrezGeneId":"10863"},{"alias":"eMDC II","entrezGeneId":"10863"},{"alias":"eMDCII","entrezGeneId":"10863"},{"alias":"MDC-L","entrezGeneId":"10863"},{"alias":"MDCL","entrezGeneId":"10863"},{"alias":"hOAT11","entrezGeneId":"10864"},{"alias":"NLT","entrezGeneId":"10864"},{"alias":"OAT2","entrezGeneId":"10864"},{"alias":"MRF-1","entrezGeneId":"10865"},{"alias":"MRF1","entrezGeneId":"10865"},{"alias":"RP11-363D14","entrezGeneId":"10865"},{"alias":"6S2650E","entrezGeneId":"10866"},{"alias":"D6S2650E","entrezGeneId":"10866"},{"alias":"P5-1","entrezGeneId":"10866"},{"alias":"NET-5","entrezGeneId":"10867"},{"alias":"NET5","entrezGeneId":"10867"},{"alias":"PP1057","entrezGeneId":"10867"},{"alias":"hVDU2","entrezGeneId":"10868"},{"alias":"LSFR3A","entrezGeneId":"10868"},{"alias":"VDU2","entrezGeneId":"10868"},{"alias":"ZMYND9","entrezGeneId":"10869"},{"alias":"DAP10","entrezGeneId":"10870"},{"alias":"KAP10","entrezGeneId":"10870"},{"alias":"PIK3AP","entrezGeneId":"10870"},{"alias":"CLM-6","entrezGeneId":"10871"},{"alias":"CMRF-35","entrezGeneId":"10871"},{"alias":"CMRF-35A","entrezGeneId":"10871"},{"alias":"CMRF35","entrezGeneId":"10871"},{"alias":"CMRF35-A1","entrezGeneId":"10871"},{"alias":"CMRF35A","entrezGeneId":"10871"},{"alias":"CMRF35A1","entrezGeneId":"10871"},{"alias":"IGSF16","entrezGeneId":"10871"},{"alias":"LIR","entrezGeneId":"10871"},{"alias":"NADP-ME","entrezGeneId":"10873"},{"alias":"pT49","entrezGeneId":"10875"},{"alias":"T49","entrezGeneId":"10875"},{"alias":"EP3A","entrezGeneId":"10876"},{"alias":"FAM12A","entrezGeneId":"10876"},{"alias":"HE3-ALPHA","entrezGeneId":"10876"},{"alias":"HE3A","entrezGeneId":"10876"},{"alias":"HE3ALPHA","entrezGeneId":"10876"},{"alias":"RAM1","entrezGeneId":"10876"},{"alias":"CFHL4","entrezGeneId":"10877"},{"alias":"FHR-4","entrezGeneId":"10877"},{"alias":"FHR4","entrezGeneId":"10877"},{"alias":"CFHL3","entrezGeneId":"10878"},{"alias":"DOWN16","entrezGeneId":"10878"},{"alias":"FHR-3","entrezGeneId":"10878"},{"alias":"FHR3","entrezGeneId":"10878"},{"alias":"HLF4","entrezGeneId":"10878"},{"alias":"P-B","entrezGeneId":"10879"},{"alias":"PBII","entrezGeneId":"10879"},{"alias":"PRL3","entrezGeneId":"10879"},{"alias":"PROL3","entrezGeneId":"10879"},{"alias":"SMR1B","entrezGeneId":"10879"},{"alias":"Tact1","entrezGeneId":"10880"},{"alias":"C1QRF","entrezGeneId":"10882"},{"alias":"C1QTNF14","entrezGeneId":"10882"},{"alias":"CRF","entrezGeneId":"10882"},{"alias":"MRP-S30","entrezGeneId":"10884"},{"alias":"PAP","entrezGeneId":"10884"},{"alias":"PDCD9","entrezGeneId":"10884"},{"alias":"S30mt","entrezGeneId":"10884"},{"alias":"DIP2","entrezGeneId":"10885"},{"alias":"UTP12","entrezGeneId":"10885"},{"alias":"GPR74","entrezGeneId":"10886"},{"alias":"HLWAR77","entrezGeneId":"10886"},{"alias":"NPFF2","entrezGeneId":"10886"},{"alias":"NPGPR","entrezGeneId":"10886"},{"alias":"GPR73","entrezGeneId":"10887"},{"alias":"GPR73a","entrezGeneId":"10887"},{"alias":"PK-R1","entrezGeneId":"10887"},{"alias":"PKR1","entrezGeneId":"10887"},{"alias":"ZAQ","entrezGeneId":"10887"},{"alias":"GIR","entrezGeneId":"10888"},{"alias":"GPR72","entrezGeneId":"10888"},{"alias":"LEM6","entrezGeneId":"10891"},{"alias":"PGC-1(alpha)","entrezGeneId":"10891"},{"alias":"PGC-1alpha","entrezGeneId":"10891"},{"alias":"PGC-1v","entrezGeneId":"10891"},{"alias":"PGC1","entrezGeneId":"10891"},{"alias":"PGC1A","entrezGeneId":"10891"},{"alias":"PPARGC1","entrezGeneId":"10891"},{"alias":"IMD12","entrezGeneId":"10892"},{"alias":"MLT","entrezGeneId":"10892"},{"alias":"MLT1","entrezGeneId":"10892"},{"alias":"PCASP1","entrezGeneId":"10892"},{"alias":"MMP-24","entrezGeneId":"10893"},{"alias":"MMP25","entrezGeneId":"10893"},{"alias":"MT-MMP 5","entrezGeneId":"10893"},{"alias":"MT-MMP5","entrezGeneId":"10893"},{"alias":"MT5-MMP","entrezGeneId":"10893"},{"alias":"MT5MMP","entrezGeneId":"10893"},{"alias":"MTMMP5","entrezGeneId":"10893"},{"alias":"CRSBP-1","entrezGeneId":"10894"},{"alias":"HAR","entrezGeneId":"10894"},{"alias":"LYVE-1","entrezGeneId":"10894"},{"alias":"XLKD1","entrezGeneId":"10894"},{"alias":"PPBPL2","entrezGeneId":"10895"},{"alias":"SPBPBP","entrezGeneId":"10895"},{"alias":"TISR","entrezGeneId":"10896"},{"alias":"54TM","entrezGeneId":"10897"},{"alias":"FinGER7","entrezGeneId":"10897"},{"alias":"YIF1","entrezGeneId":"10897"},{"alias":"YIF1P","entrezGeneId":"10897"},{"alias":"CPSF30","entrezGeneId":"10898"},{"alias":"NAR","entrezGeneId":"10898"},{"alias":"NEB-1","entrezGeneId":"10898"},{"alias":"NEB1","entrezGeneId":"10898"},{"alias":"hJT","entrezGeneId":"10899"},{"alias":"HJTB","entrezGeneId":"10899"},{"alias":"HSPC222","entrezGeneId":"10899"},{"alias":"PAR","entrezGeneId":"10899"},{"alias":"RAP2IP","entrezGeneId":"10900"},{"alias":"RPIP-8","entrezGeneId":"10900"},{"alias":"RPIP8","entrezGeneId":"10900"},{"alias":"CR","entrezGeneId":"10901"},{"alias":"NRDR","entrezGeneId":"10901"},{"alias":"PHCR","entrezGeneId":"10901"},{"alias":"PSCD","entrezGeneId":"10901"},{"alias":"SCAD-SRL","entrezGeneId":"10901"},{"alias":"SDR-SRL","entrezGeneId":"10901"},{"alias":"SDR25C1","entrezGeneId":"10901"},{"alias":"SDR25C2","entrezGeneId":"10901"},{"alias":"p120","entrezGeneId":"10902"},{"alias":"SMAP","entrezGeneId":"10902"},{"alias":"SMAP2","entrezGeneId":"10902"},{"alias":"CRA","entrezGeneId":"10903"},{"alias":"BC10","entrezGeneId":"10904"},{"alias":"MAN1B","entrezGeneId":"10905"},{"alias":"FLN29","entrezGeneId":"10906"},{"alias":"BMKS","entrezGeneId":"10907"},{"alias":"DIB1","entrezGeneId":"10907"},{"alias":"DIM1","entrezGeneId":"10907"},{"alias":"SNRNP15","entrezGeneId":"10907"},{"alias":"TXNL4","entrezGeneId":"10907"},{"alias":"U5-15kD","entrezGeneId":"10907"},{"alias":"BNHS","entrezGeneId":"10908"},{"alias":"iPLA2delta","entrezGeneId":"10908"},{"alias":"LNMS","entrezGeneId":"10908"},{"alias":"NTE","entrezGeneId":"10908"},{"alias":"NTEMND","entrezGeneId":"10908"},{"alias":"OMCS","entrezGeneId":"10908"},{"alias":"SPG39","entrezGeneId":"10908"},{"alias":"sws","entrezGeneId":"10908"},{"alias":"SGT1","entrezGeneId":"10910"},{"alias":"PRO1068","entrezGeneId":"10911"},{"alias":"U-II","entrezGeneId":"10911"},{"alias":"UCN2","entrezGeneId":"10911"},{"alias":"UII","entrezGeneId":"10911"},{"alias":"CR6","entrezGeneId":"10912"},{"alias":"DDIT2","entrezGeneId":"10912"},{"alias":"GADD45gamma","entrezGeneId":"10912"},{"alias":"GRP17","entrezGeneId":"10912"},{"alias":"DL","entrezGeneId":"10913"},{"alias":"ECTD10A","entrezGeneId":"10913"},{"alias":"ECTD10B","entrezGeneId":"10913"},{"alias":"ED1R","entrezGeneId":"10913"},{"alias":"ED3","entrezGeneId":"10913"},{"alias":"ED5","entrezGeneId":"10913"},{"alias":"EDA-A1R","entrezGeneId":"10913"},{"alias":"EDA1R","entrezGeneId":"10913"},{"alias":"EDA3","entrezGeneId":"10913"},{"alias":"HRM1","entrezGeneId":"10913"},{"alias":"PAP","entrezGeneId":"10914"},{"alias":"CA150","entrezGeneId":"10915"},{"alias":"TAF2S","entrezGeneId":"10915"},{"alias":"Urn1","entrezGeneId":"10915"},{"alias":"11B6","entrezGeneId":"10916"},{"alias":"BARTS5","entrezGeneId":"10916"},{"alias":"BCG-1","entrezGeneId":"10916"},{"alias":"BCG1","entrezGeneId":"10916"},{"alias":"HCA10","entrezGeneId":"10916"},{"alias":"MAGE-D2","entrezGeneId":"10916"},{"alias":"BTN9.1","entrezGeneId":"10917"},{"alias":"BTNLR","entrezGeneId":"10917"},{"alias":"BAT8","entrezGeneId":"10919"},{"alias":"C6orf30","entrezGeneId":"10919"},{"alias":"G9A","entrezGeneId":"10919"},{"alias":"GAT8","entrezGeneId":"10919"},{"alias":"KMT1C","entrezGeneId":"10919"},{"alias":"NG36","entrezGeneId":"10919"},{"alias":"COP9","entrezGeneId":"10920"},{"alias":"CSN8","entrezGeneId":"10920"},{"alias":"SGN8","entrezGeneId":"10920"},{"alias":"E5.1","entrezGeneId":"10921"},{"alias":"FAST","entrezGeneId":"10922"},{"alias":"p14","entrezGeneId":"10923"},{"alias":"P15","entrezGeneId":"10923"},{"alias":"PC4","entrezGeneId":"10923"},{"alias":"ASM3A","entrezGeneId":"10924"},{"alias":"ASML3a","entrezGeneId":"10924"},{"alias":"yR36GH4.1","entrezGeneId":"10924"},{"alias":"ASK","entrezGeneId":"10926"},{"alias":"CHIF","entrezGeneId":"10926"},{"alias":"DBF4A","entrezGeneId":"10926"},{"alias":"ZDBF1","entrezGeneId":"10926"},{"alias":"SPIN","entrezGeneId":"10927"},{"alias":"TDRD24","entrezGeneId":"10927"},{"alias":"RIP1","entrezGeneId":"10928"},{"alias":"RLIP1","entrezGeneId":"10928"},{"alias":"RLIP76","entrezGeneId":"10928"},{"alias":"DSM-1","entrezGeneId":"10929"},{"alias":"SFRS2B","entrezGeneId":"10929"},{"alias":"SRP46","entrezGeneId":"10929"},{"alias":"ARCD1","entrezGeneId":"10930"},{"alias":"ARP1","entrezGeneId":"10930"},{"alias":"Eaf3","entrezGeneId":"10933"},{"alias":"FWP006","entrezGeneId":"10933"},{"alias":"HsT17725","entrezGeneId":"10933"},{"alias":"MEAF3","entrezGeneId":"10933"},{"alias":"MORFRG15","entrezGeneId":"10933"},{"alias":"MRG15","entrezGeneId":"10933"},{"alias":"S863-6","entrezGeneId":"10933"},{"alias":"CSR","entrezGeneId":"10934"},{"alias":"CSRB","entrezGeneId":"10934"},{"alias":"SEN","entrezGeneId":"10934"},{"alias":"SEN1","entrezGeneId":"10934"},{"alias":"AOP-1","entrezGeneId":"10935"},{"alias":"AOP1","entrezGeneId":"10935"},{"alias":"HBC189","entrezGeneId":"10935"},{"alias":"MER5","entrezGeneId":"10935"},{"alias":"PRO1748","entrezGeneId":"10935"},{"alias":"prx-III","entrezGeneId":"10935"},{"alias":"SP-22","entrezGeneId":"10935"},{"alias":"GPRchr2","entrezGeneId":"10936"},{"alias":"WI31133","entrezGeneId":"10936"},{"alias":"H-PAST","entrezGeneId":"10938"},{"alias":"HPAST1","entrezGeneId":"10938"},{"alias":"PAST","entrezGeneId":"10938"},{"alias":"PAST1","entrezGeneId":"10938"},{"alias":"SCA28","entrezGeneId":"10939"},{"alias":"SPAX5","entrezGeneId":"10939"},{"alias":"ANXD2","entrezGeneId":"10940"},{"alias":"UDPGT2A1","entrezGeneId":"10941"},{"alias":"ESP-1","entrezGeneId":"10942"},{"alias":"ESP1","entrezGeneId":"10942"},{"alias":"TEST1","entrezGeneId":"10942"},{"alias":"TESTISIN","entrezGeneId":"10942"},{"alias":"MSL3L1","entrezGeneId":"10943"},{"alias":"IMAGE145052","entrezGeneId":"10944"},{"alias":"SMAP","entrezGeneId":"10944"},{"alias":"ERD2","entrezGeneId":"10945"},{"alias":"ERD2.1","entrezGeneId":"10945"},{"alias":"HDEL","entrezGeneId":"10945"},{"alias":"PM23","entrezGeneId":"10945"},{"alias":"PRP9","entrezGeneId":"10946"},{"alias":"PRPF9","entrezGeneId":"10946"},{"alias":"SAP61","entrezGeneId":"10946"},{"alias":"SF3a60","entrezGeneId":"10946"},{"alias":"AP47B","entrezGeneId":"10947"},{"alias":"CLA20","entrezGeneId":"10947"},{"alias":"P47B","entrezGeneId":"10947"},{"alias":"CAB1","entrezGeneId":"10948"},{"alias":"es64","entrezGeneId":"10948"},{"alias":"MLN64","entrezGeneId":"10948"},{"alias":"HNRPA0","entrezGeneId":"10949"},{"alias":"ANA","entrezGeneId":"10950"},{"alias":"ANA/BTG3","entrezGeneId":"10950"},{"alias":"APRO4","entrezGeneId":"10950"},{"alias":"TOB5","entrezGeneId":"10950"},{"alias":"TOB55","entrezGeneId":"10950"},{"alias":"TOFA","entrezGeneId":"10950"},{"alias":"CBX","entrezGeneId":"10951"},{"alias":"HP1-BETA","entrezGeneId":"10951"},{"alias":"HP1Hs-beta","entrezGeneId":"10951"},{"alias":"HP1Hsbeta","entrezGeneId":"10951"},{"alias":"M31","entrezGeneId":"10951"},{"alias":"MOD1","entrezGeneId":"10951"},{"alias":"p25beta","entrezGeneId":"10951"},{"alias":"HTOM34P","entrezGeneId":"10953"},{"alias":"TOM34","entrezGeneId":"10953"},{"alias":"URCC3","entrezGeneId":"10953"},{"alias":"PDIR","entrezGeneId":"10954"},{"alias":"AIGP1","entrezGeneId":"10955"},{"alias":"DIFF33","entrezGeneId":"10955"},{"alias":"SBBI99","entrezGeneId":"10955"},{"alias":"TDE","entrezGeneId":"10955"},{"alias":"TDE1","entrezGeneId":"10955"},{"alias":"TMS-1","entrezGeneId":"10955"},{"alias":"ERLEC2","entrezGeneId":"10956"},{"alias":"OS-9","entrezGeneId":"10956"},{"alias":"B4-2","entrezGeneId":"10957"},{"alias":"PNAS-145","entrezGeneId":"10957"},{"alias":"PROL2","entrezGeneId":"10957"},{"alias":"PRR2","entrezGeneId":"10957"},{"alias":"p24","entrezGeneId":"10959"},{"alias":"P24A","entrezGeneId":"10959"},{"alias":"p24b1","entrezGeneId":"10959"},{"alias":"p24beta1","entrezGeneId":"10959"},{"alias":"RNP24","entrezGeneId":"10959"},{"alias":"C5orf8","entrezGeneId":"10960"},{"alias":"GP36B","entrezGeneId":"10960"},{"alias":"VIP36","entrezGeneId":"10960"},{"alias":"C12orf8","entrezGeneId":"10961"},{"alias":"ERp28","entrezGeneId":"10961"},{"alias":"ERp31","entrezGeneId":"10961"},{"alias":"HEL-S-107","entrezGeneId":"10961"},{"alias":"PDI-DB","entrezGeneId":"10961"},{"alias":"PDIA9","entrezGeneId":"10961"},{"alias":"AF1Q","entrezGeneId":"10962"},{"alias":"HEL-S-94n","entrezGeneId":"10963"},{"alias":"HOP","entrezGeneId":"10963"},{"alias":"IEF-SSP-3521","entrezGeneId":"10963"},{"alias":"P60","entrezGeneId":"10963"},{"alias":"STI1","entrezGeneId":"10963"},{"alias":"STI1L","entrezGeneId":"10963"},{"alias":"C1orf29","entrezGeneId":"10964"},{"alias":"GS3686","entrezGeneId":"10964"},{"alias":"CTE-IA","entrezGeneId":"10965"},{"alias":"CTE1A","entrezGeneId":"10965"},{"alias":"MTE1","entrezGeneId":"10965"},{"alias":"PTE2","entrezGeneId":"10965"},{"alias":"PTE2A","entrezGeneId":"10965"},{"alias":"ZAP128","entrezGeneId":"10965"},{"alias":"RAR","entrezGeneId":"10966"},{"alias":"SEC4L","entrezGeneId":"10966"},{"alias":"EBP2","entrezGeneId":"10969"},{"alias":"NOBP","entrezGeneId":"10969"},{"alias":"P40","entrezGeneId":"10969"},{"alias":"CLIMP-63","entrezGeneId":"10970"},{"alias":"ERGIC-63","entrezGeneId":"10970"},{"alias":"p63","entrezGeneId":"10970"},{"alias":"14-3-3","entrezGeneId":"10971"},{"alias":"1C5","entrezGeneId":"10971"},{"alias":"HS1","entrezGeneId":"10971"},{"alias":"p23","entrezGeneId":"10972"},{"alias":"P24(DELTA)","entrezGeneId":"10972"},{"alias":"p24d1","entrezGeneId":"10972"},{"alias":"S31I125","entrezGeneId":"10972"},{"alias":"S31III125","entrezGeneId":"10972"},{"alias":"Tmp-21-I","entrezGeneId":"10972"},{"alias":"TMP21","entrezGeneId":"10972"},{"alias":"ASC1p200","entrezGeneId":"10973"},{"alias":"HELIC1","entrezGeneId":"10973"},{"alias":"RNAH","entrezGeneId":"10973"},{"alias":"AFRO","entrezGeneId":"10974"},{"alias":"apM-2","entrezGeneId":"10974"},{"alias":"APM2","entrezGeneId":"10974"},{"alias":"C10orf116","entrezGeneId":"10974"},{"alias":"0710008D09Rik","entrezGeneId":"10975"},{"alias":"QCR10","entrezGeneId":"10975"},{"alias":"UQCR","entrezGeneId":"10975"},{"alias":"hClp1","entrezGeneId":"10978"},{"alias":"HEAB","entrezGeneId":"10978"},{"alias":"KIND2","entrezGeneId":"10979"},{"alias":"mig-2","entrezGeneId":"10979"},{"alias":"MIG2","entrezGeneId":"10979"},{"alias":"PLEKHC1","entrezGeneId":"10979"},{"alias":"UNC112","entrezGeneId":"10979"},{"alias":"UNC112B","entrezGeneId":"10979"},{"alias":"CSN6","entrezGeneId":"10980"},{"alias":"MOV34-34KD","entrezGeneId":"10980"},{"alias":"CSCSC2","entrezGeneId":"10982"},{"alias":"EB1","entrezGeneId":"10982"},{"alias":"EB2","entrezGeneId":"10982"},{"alias":"RP1","entrezGeneId":"10982"},{"alias":"CCNI1","entrezGeneId":"10983"},{"alias":"CYC1","entrezGeneId":"10983"},{"alias":"CYI","entrezGeneId":"10983"},{"alias":"KCNQ1-AS2","entrezGeneId":"10984"},{"alias":"KCNQ10T1","entrezGeneId":"10984"},{"alias":"Kncq1","entrezGeneId":"10984"},{"alias":"KvDMR1","entrezGeneId":"10984"},{"alias":"KvLQT1-AS","entrezGeneId":"10984"},{"alias":"LIT1","entrezGeneId":"10984"},{"alias":"NCRNA00012","entrezGeneId":"10984"},{"alias":"GCN1L","entrezGeneId":"10985"},{"alias":"GCN1L1","entrezGeneId":"10985"},{"alias":"PRIC295","entrezGeneId":"10985"},{"alias":"CSN5","entrezGeneId":"10987"},{"alias":"JAB1","entrezGeneId":"10987"},{"alias":"MOV-34","entrezGeneId":"10987"},{"alias":"SGN5","entrezGeneId":"10987"},{"alias":"MAP2","entrezGeneId":"10988"},{"alias":"MNPEP","entrezGeneId":"10988"},{"alias":"p67eIF2","entrezGeneId":"10988"},{"alias":"HMP","entrezGeneId":"10989"},{"alias":"Mic60","entrezGeneId":"10989"},{"alias":"MINOS2","entrezGeneId":"10989"},{"alias":"P87","entrezGeneId":"10989"},{"alias":"P87/89","entrezGeneId":"10989"},{"alias":"P89","entrezGeneId":"10989"},{"alias":"PIG4","entrezGeneId":"10989"},{"alias":"PIG52","entrezGeneId":"10989"},{"alias":"CD85C","entrezGeneId":"10990"},{"alias":"LIR-8","entrezGeneId":"10990"},{"alias":"LIR8","entrezGeneId":"10990"},{"alias":"G17","entrezGeneId":"10991"},{"alias":"NAT1","entrezGeneId":"10991"},{"alias":"SN1","entrezGeneId":"10991"},{"alias":"SNAT3","entrezGeneId":"10991"},{"alias":"Cus1","entrezGeneId":"10992"},{"alias":"SAP145","entrezGeneId":"10992"},{"alias":"SF3b1","entrezGeneId":"10992"},{"alias":"SF3B145","entrezGeneId":"10992"},{"alias":"SF3b150","entrezGeneId":"10992"},{"alias":"SDH","entrezGeneId":"10993"},{"alias":"209L8","entrezGeneId":"10994"},{"alias":"AHAS","entrezGeneId":"10994"},{"alias":"HACL1L","entrezGeneId":"10994"},{"alias":"ILV2H","entrezGeneId":"10994"},{"alias":"ACSB","entrezGeneId":"10998"},{"alias":"ACSVL6","entrezGeneId":"10998"},{"alias":"BACS","entrezGeneId":"10998"},{"alias":"BAL","entrezGeneId":"10998"},{"alias":"FACVL3","entrezGeneId":"10998"},{"alias":"FATP-5","entrezGeneId":"10998"},{"alias":"FATP5","entrezGeneId":"10998"},{"alias":"VLACSR","entrezGeneId":"10998"},{"alias":"VLCS-H2","entrezGeneId":"10998"},{"alias":"VLCSH2","entrezGeneId":"10998"},{"alias":"ACSVL4","entrezGeneId":"10999"},{"alias":"FATP4","entrezGeneId":"10999"},{"alias":"IPS","entrezGeneId":"10999"},{"alias":"ACSVL3","entrezGeneId":"11000"},{"alias":"FATP3","entrezGeneId":"11000"},{"alias":"VLCS-3","entrezGeneId":"11000"},{"alias":"ACSVL1","entrezGeneId":"11001"},{"alias":"FACVL1","entrezGeneId":"11001"},{"alias":"FATP2","entrezGeneId":"11001"},{"alias":"hFACVL1","entrezGeneId":"11001"},{"alias":"HsT17226","entrezGeneId":"11001"},{"alias":"VLACS","entrezGeneId":"11001"},{"alias":"VLCS","entrezGeneId":"11001"},{"alias":"CT139","entrezGeneId":"11004"},{"alias":"KNSL6","entrezGeneId":"11004"},{"alias":"MCAK","entrezGeneId":"11004"},{"alias":"LEKTI","entrezGeneId":"11005"},{"alias":"LETKI","entrezGeneId":"11005"},{"alias":"NETS","entrezGeneId":"11005"},{"alias":"NS","entrezGeneId":"11005"},{"alias":"VAKTI","entrezGeneId":"11005"},{"alias":"CD85K","entrezGeneId":"11006"},{"alias":"ILT-3","entrezGeneId":"11006"},{"alias":"ILT3","entrezGeneId":"11006"},{"alias":"LIR-5","entrezGeneId":"11006"},{"alias":"LIR5","entrezGeneId":"11006"},{"alias":"DIPA","entrezGeneId":"11007"},{"alias":"C49A","entrezGeneId":"11009"},{"alias":"FISP","entrezGeneId":"11009"},{"alias":"IL10B","entrezGeneId":"11009"},{"alias":"MDA7","entrezGeneId":"11009"},{"alias":"MOB5","entrezGeneId":"11009"},{"alias":"ST16","entrezGeneId":"11009"},{"alias":"CRISP7","entrezGeneId":"11010"},{"alias":"GLIPR","entrezGeneId":"11010"},{"alias":"RTVP1","entrezGeneId":"11010"},{"alias":"HsHPK","entrezGeneId":"11011"},{"alias":"PKU-ALPHA","entrezGeneId":"11011"},{"alias":"PRSS20","entrezGeneId":"11012"},{"alias":"TLSP","entrezGeneId":"11012"},{"alias":"Tb15","entrezGeneId":"11013"},{"alias":"TbNB","entrezGeneId":"11013"},{"alias":"TMSB15","entrezGeneId":"11013"},{"alias":"TMSB15B","entrezGeneId":"11013"},{"alias":"TMSL8","entrezGeneId":"11013"},{"alias":"TMSNB","entrezGeneId":"11013"},{"alias":"ELP-1","entrezGeneId":"11014"},{"alias":"ERD2.2","entrezGeneId":"11014"},{"alias":"ERD2L3","entrezGeneId":"11015"},{"alias":"ATFA","entrezGeneId":"11016"},{"alias":"27K","entrezGeneId":"11017"},{"alias":"RY1","entrezGeneId":"11017"},{"alias":"Il1rl1l","entrezGeneId":"11018"},{"alias":"IL1RL1LG","entrezGeneId":"11018"},{"alias":"p24g1","entrezGeneId":"11018"},{"alias":"Tp24","entrezGeneId":"11018"},{"alias":"HGCLAS","entrezGeneId":"11019"},{"alias":"HUSSY-01","entrezGeneId":"11019"},{"alias":"LAS","entrezGeneId":"11019"},{"alias":"LIP1","entrezGeneId":"11019"},{"alias":"LS","entrezGeneId":"11019"},{"alias":"PDHLD","entrezGeneId":"11019"},{"alias":"BBS19","entrezGeneId":"11020"},{"alias":"RABL4","entrezGeneId":"11020"},{"alias":"RAYL","entrezGeneId":"11020"},{"alias":"H-ray","entrezGeneId":"11021"},{"alias":"RAB1C","entrezGeneId":"11021"},{"alias":"RAY","entrezGeneId":"11021"},{"alias":"TDRD2","entrezGeneId":"11022"},{"alias":"MCOPS11","entrezGeneId":"11023"},{"alias":"CD85I","entrezGeneId":"11024"},{"alias":"LIR-6","entrezGeneId":"11024"},{"alias":"LIR6","entrezGeneId":"11024"},{"alias":"CD85A","entrezGeneId":"11025"},{"alias":"HL9","entrezGeneId":"11025"},{"alias":"ILT-5","entrezGeneId":"11025"},{"alias":"ILT5","entrezGeneId":"11025"},{"alias":"LILRA6","entrezGeneId":"11025"},{"alias":"LIR-3","entrezGeneId":"11025"},{"alias":"LIR3","entrezGeneId":"11025"},{"alias":"PIR-B","entrezGeneId":"11025"},{"alias":"PIRB","entrezGeneId":"11025"},{"alias":"CD85E","entrezGeneId":"11026"},{"alias":"HM31","entrezGeneId":"11026"},{"alias":"HM43","entrezGeneId":"11026"},{"alias":"ILT-6","entrezGeneId":"11026"},{"alias":"ILT6","entrezGeneId":"11026"},{"alias":"LIR-4","entrezGeneId":"11026"},{"alias":"LIR4","entrezGeneId":"11026"},{"alias":"CD85H","entrezGeneId":"11027"},{"alias":"ILT1","entrezGeneId":"11027"},{"alias":"LIR-7","entrezGeneId":"11027"},{"alias":"LIR7","entrezGeneId":"11027"},{"alias":"PI8L1","entrezGeneId":"11029"},{"alias":"SERPINB11","entrezGeneId":"11029"},{"alias":"SERPINBP1","entrezGeneId":"11029"},{"alias":"HERMES","entrezGeneId":"11030"},{"alias":"Rab22B","entrezGeneId":"11031"},{"alias":"CENTA1","entrezGeneId":"11033"},{"alias":"GCS1L","entrezGeneId":"11033"},{"alias":"p42IP4","entrezGeneId":"11033"},{"alias":"ACTDP","entrezGeneId":"11034"},{"alias":"ADF","entrezGeneId":"11034"},{"alias":"bA462D18.2","entrezGeneId":"11034"},{"alias":"HEL32","entrezGeneId":"11034"},{"alias":"RIP3","entrezGeneId":"11035"},{"alias":"ALF","entrezGeneId":"11036"},{"alias":"SALF","entrezGeneId":"11037"},{"alias":"SBLF","entrezGeneId":"11037"},{"alias":"STN1","entrezGeneId":"11037"},{"alias":"STNB1","entrezGeneId":"11037"},{"alias":"b55C20.2","entrezGeneId":"11039"},{"alias":"SMA3","entrezGeneId":"11039"},{"alias":"B3GN-T1","entrezGeneId":"11041"},{"alias":"B3GNT1","entrezGeneId":"11041"},{"alias":"B3GNT6","entrezGeneId":"11041"},{"alias":"BETA3GNTI","entrezGeneId":"11041"},{"alias":"iGAT","entrezGeneId":"11041"},{"alias":"iGNT","entrezGeneId":"11041"},{"alias":"MDDGA13","entrezGeneId":"11041"},{"alias":"FXY2","entrezGeneId":"11043"},{"alias":"MRX101","entrezGeneId":"11043"},{"alias":"RNF60","entrezGeneId":"11043"},{"alias":"TRIM1","entrezGeneId":"11043"},{"alias":"LAK-1","entrezGeneId":"11044"},{"alias":"LAK1","entrezGeneId":"11044"},{"alias":"POLK","entrezGeneId":"11044"},{"alias":"POLS","entrezGeneId":"11044"},{"alias":"TRF4","entrezGeneId":"11044"},{"alias":"TRF4-1","entrezGeneId":"11044"},{"alias":"TRF41","entrezGeneId":"11044"},{"alias":"TUTASE5","entrezGeneId":"11044"},{"alias":"TSPAN21","entrezGeneId":"11045"},{"alias":"UP1A","entrezGeneId":"11045"},{"alias":"UPIA","entrezGeneId":"11045"},{"alias":"UPKA","entrezGeneId":"11045"},{"alias":"hfrc","entrezGeneId":"11046"},{"alias":"HFRC1","entrezGeneId":"11046"},{"alias":"SQV7L","entrezGeneId":"11046"},{"alias":"UGTrel8","entrezGeneId":"11046"},{"alias":"ARM-1","entrezGeneId":"11047"},{"alias":"ARM1","entrezGeneId":"11047"},{"alias":"GP110","entrezGeneId":"11047"},{"alias":"YDD19","entrezGeneId":"11049"},{"alias":"CFIM25","entrezGeneId":"11051"},{"alias":"CPSF5","entrezGeneId":"11051"},{"alias":"CFIM","entrezGeneId":"11052"},{"alias":"CFIM68","entrezGeneId":"11052"},{"alias":"CFIM72","entrezGeneId":"11052"},{"alias":"HPBRII-4","entrezGeneId":"11052"},{"alias":"HPBRII-7","entrezGeneId":"11052"},{"alias":"ZPBP1","entrezGeneId":"11055"},{"alias":"HUSSY19","entrezGeneId":"11056"},{"alias":"ROK1","entrezGeneId":"11056"},{"alias":"HS1-2","entrezGeneId":"11057"},{"alias":"LABH2","entrezGeneId":"11057"},{"alias":"PHPS1-2","entrezGeneId":"11057"},{"alias":"AIP5","entrezGeneId":"11059"},{"alias":"hSDRP1","entrezGeneId":"11059"},{"alias":"Tiul1","entrezGeneId":"11059"},{"alias":"AIP2","entrezGeneId":"11060"},{"alias":"WWp2-like","entrezGeneId":"11060"},{"alias":"BRICD3","entrezGeneId":"11061"},{"alias":"CHM-I","entrezGeneId":"11061"},{"alias":"CHM1","entrezGeneId":"11061"},{"alias":"LECT1","entrezGeneId":"11061"},{"alias":"MYETS1","entrezGeneId":"11061"},{"alias":"DUS4","entrezGeneId":"11062"},{"alias":"PP35","entrezGeneId":"11062"},{"alias":"bA165P4.1","entrezGeneId":"11064"},{"alias":"CEP1","entrezGeneId":"11064"},{"alias":"CEP110","entrezGeneId":"11064"},{"alias":"FAN","entrezGeneId":"11064"},{"alias":"dJ447F3.2","entrezGeneId":"11065"},{"alias":"UBCH10","entrezGeneId":"11065"},{"alias":"HM-1","entrezGeneId":"11066"},{"alias":"U1SNRNPBP","entrezGeneId":"11066"},{"alias":"C10orf10","entrezGeneId":"11067"},{"alias":"DEPP","entrezGeneId":"11067"},{"alias":"FIG","entrezGeneId":"11067"},{"alias":"Fseg","entrezGeneId":"11067"},{"alias":"101F6","entrezGeneId":"11068"},{"alias":"TSP10","entrezGeneId":"11068"},{"alias":"XXcos-LUCA11.4","entrezGeneId":"11068"},{"alias":"CAMP-GEFII","entrezGeneId":"11069"},{"alias":"CGEF2","entrezGeneId":"11069"},{"alias":"EPAC","entrezGeneId":"11069"},{"alias":"EPAC 2","entrezGeneId":"11069"},{"alias":"EPAC2","entrezGeneId":"11069"},{"alias":"Nbla00496","entrezGeneId":"11069"},{"alias":"PL6","entrezGeneId":"11070"},{"alias":"MKP-L","entrezGeneId":"11072"},{"alias":"MKP6","entrezGeneId":"11072"},{"alias":"TOP2BP1","entrezGeneId":"11073"},{"alias":"C6orf13","entrezGeneId":"11074"},{"alias":"HCG1","entrezGeneId":"11074"},{"alias":"HCGI","entrezGeneId":"11074"},{"alias":"RNF","entrezGeneId":"11074"},{"alias":"SCG10","entrezGeneId":"11075"},{"alias":"SCGN10","entrezGeneId":"11075"},{"alias":"p24","entrezGeneId":"11076"},{"alias":"p25","entrezGeneId":"11076"},{"alias":"p25alpha","entrezGeneId":"11076"},{"alias":"TPPP/p25","entrezGeneId":"11076"},{"alias":"TPPP1","entrezGeneId":"11076"},{"alias":"DFNB28","entrezGeneId":"11078"},{"alias":"dJ37E16.4","entrezGeneId":"11078"},{"alias":"HRIHFB2122","entrezGeneId":"11078"},{"alias":"TAP68","entrezGeneId":"11078"},{"alias":"TARA","entrezGeneId":"11078"},{"alias":"DjB4","entrezGeneId":"11080"},{"alias":"DNAJW","entrezGeneId":"11080"},{"alias":"HLJ1","entrezGeneId":"11080"},{"alias":"CNA2","entrezGeneId":"11081"},{"alias":"KTN","entrezGeneId":"11081"},{"alias":"SLRR2B","entrezGeneId":"11081"},{"alias":"endocan","entrezGeneId":"11082"},{"alias":"BYE1","entrezGeneId":"11083"},{"alias":"C20orf158","entrezGeneId":"11083"},{"alias":"DATF-1","entrezGeneId":"11083"},{"alias":"DATF1","entrezGeneId":"11083"},{"alias":"DIDO2","entrezGeneId":"11083"},{"alias":"DIDO3","entrezGeneId":"11083"},{"alias":"DIO-1","entrezGeneId":"11083"},{"alias":"DIO1","entrezGeneId":"11083"},{"alias":"dJ885L7.8","entrezGeneId":"11083"},{"alias":"svph4","entrezGeneId":"11085"},{"alias":"CT73","entrezGeneId":"11086"},{"alias":"svph1","entrezGeneId":"11086"},{"alias":"BIG-3","entrezGeneId":"11091"},{"alias":"CFAP89","entrezGeneId":"11091"},{"alias":"SWD3","entrezGeneId":"11091"},{"alias":"C9orf9","entrezGeneId":"11092"},{"alias":"Mast","entrezGeneId":"11092"},{"alias":"ADAM-TS13","entrezGeneId":"11093"},{"alias":"ADAMTS-13","entrezGeneId":"11093"},{"alias":"C9orf8","entrezGeneId":"11093"},{"alias":"vWF-CP","entrezGeneId":"11093"},{"alias":"VWFCP","entrezGeneId":"11093"},{"alias":"C9orf7","entrezGeneId":"11094"},{"alias":"D9S2135","entrezGeneId":"11094"},{"alias":"FLOWER","entrezGeneId":"11094"},{"alias":"ADAM-TS8","entrezGeneId":"11095"},{"alias":"METH2","entrezGeneId":"11095"},{"alias":"ADAM-TS 11","entrezGeneId":"11096"},{"alias":"ADAM-TS 5","entrezGeneId":"11096"},{"alias":"ADAM-TS5","entrezGeneId":"11096"},{"alias":"ADAMTS-11","entrezGeneId":"11096"},{"alias":"ADAMTS-5","entrezGeneId":"11096"},{"alias":"ADAMTS11","entrezGeneId":"11096"},{"alias":"ADMP-2","entrezGeneId":"11096"},{"alias":"CG1","entrezGeneId":"11097"},{"alias":"hCG1","entrezGeneId":"11097"},{"alias":"NLP-1","entrezGeneId":"11097"},{"alias":"NLP_1","entrezGeneId":"11097"},{"alias":"SIG13","entrezGeneId":"11098"},{"alias":"SPUVE","entrezGeneId":"11098"},{"alias":"ZSIG13","entrezGeneId":"11098"},{"alias":"PTPD1","entrezGeneId":"11099"},{"alias":"PTPRL10","entrezGeneId":"11099"},{"alias":"E1B-AP5","entrezGeneId":"11100"},{"alias":"E1BAP5","entrezGeneId":"11100"},{"alias":"HNRPUL1","entrezGeneId":"11100"},{"alias":"P14","entrezGeneId":"11102"},{"alias":"HRB2","entrezGeneId":"11103"},{"alias":"RIP-1","entrezGeneId":"11103"},{"alias":"PFM4","entrezGeneId":"11105"},{"alias":"ZNF910","entrezGeneId":"11105"},{"alias":"BCS2","entrezGeneId":"11107"},{"alias":"PFM2","entrezGeneId":"11107"},{"alias":"PFM1","entrezGeneId":"11108"},{"alias":"NS5ATP1","entrezGeneId":"11112"},{"alias":"CITK","entrezGeneId":"11113"},{"alias":"CRIK","entrezGeneId":"11113"},{"alias":"MCPH17","entrezGeneId":"11113"},{"alias":"STK21","entrezGeneId":"11113"},{"alias":"FOP","entrezGeneId":"11116"},{"alias":"EMI","entrezGeneId":"11117"},{"alias":"EMILIN","entrezGeneId":"11117"},{"alias":"gp115","entrezGeneId":"11117"},{"alias":"BT3.2","entrezGeneId":"11118"},{"alias":"BTF4","entrezGeneId":"11118"},{"alias":"BTN3.2","entrezGeneId":"11118"},{"alias":"CD277","entrezGeneId":"11118"},{"alias":"BT3.1","entrezGeneId":"11119"},{"alias":"BTF5","entrezGeneId":"11119"},{"alias":"BTN3.1","entrezGeneId":"11119"},{"alias":"CD277","entrezGeneId":"11119"},{"alias":"BK14H9.1","entrezGeneId":"11120"},{"alias":"BT2.1","entrezGeneId":"11120"},{"alias":"BTF1","entrezGeneId":"11120"},{"alias":"BTN2.1","entrezGeneId":"11120"},{"alias":"DJ3E1.1","entrezGeneId":"11120"},{"alias":"RPTPrho","entrezGeneId":"11122"},{"alias":"DSCR1L2","entrezGeneId":"11123"},{"alias":"hRCN3","entrezGeneId":"11123"},{"alias":"MCIP3","entrezGeneId":"11123"},{"alias":"RCN3","entrezGeneId":"11123"},{"alias":"CGI-03","entrezGeneId":"11124"},{"alias":"hFAF1","entrezGeneId":"11124"},{"alias":"HFAF1s","entrezGeneId":"11124"},{"alias":"UBXD12","entrezGeneId":"11124"},{"alias":"UBXN3A","entrezGeneId":"11124"},{"alias":"BY55","entrezGeneId":"11126"},{"alias":"NK1","entrezGeneId":"11126"},{"alias":"NK28","entrezGeneId":"11126"},{"alias":"FLA10","entrezGeneId":"11127"},{"alias":"KLP-20","entrezGeneId":"11127"},{"alias":"ADDH","entrezGeneId":"11128"},{"alias":"HLD7","entrezGeneId":"11128"},{"alias":"hRPC155","entrezGeneId":"11128"},{"alias":"RPC1","entrezGeneId":"11128"},{"alias":"RPC155","entrezGeneId":"11128"},{"alias":"CLASP","entrezGeneId":"11129"},{"alias":"SFRS16","entrezGeneId":"11129"},{"alias":"SWAP2","entrezGeneId":"11129"},{"alias":"HZwint-1","entrezGeneId":"11130"},{"alias":"KNTC2AP","entrezGeneId":"11130"},{"alias":"SIP30","entrezGeneId":"11130"},{"alias":"ZWINT1","entrezGeneId":"11130"},{"alias":"calpain11","entrezGeneId":"11131"},{"alias":"CANP10","entrezGeneId":"11132"},{"alias":"NIDDM1","entrezGeneId":"11132"},{"alias":"2E4","entrezGeneId":"11133"},{"alias":"MRT41","entrezGeneId":"11133"},{"alias":"BORG5","entrezGeneId":"11135"},{"alias":"CEP1","entrezGeneId":"11135"},{"alias":"MSE55","entrezGeneId":"11135"},{"alias":"BAT1","entrezGeneId":"11136"},{"alias":"CSNU3","entrezGeneId":"11136"},{"alias":"IEF-SSP-9502","entrezGeneId":"11137"},{"alias":"AD3","entrezGeneId":"11138"},{"alias":"GRAMD8","entrezGeneId":"11138"},{"alias":"HBLP1","entrezGeneId":"11138"},{"alias":"TBC1D8A","entrezGeneId":"11138"},{"alias":"VRP","entrezGeneId":"11138"},{"alias":"P50CDC37","entrezGeneId":"11140"},{"alias":"IL-1-RAPL-1","entrezGeneId":"11141"},{"alias":"IL-1RAPL-1","entrezGeneId":"11141"},{"alias":"IL1R8","entrezGeneId":"11141"},{"alias":"IL1RAPL","entrezGeneId":"11141"},{"alias":"IL1RAPL-1","entrezGeneId":"11141"},{"alias":"MRX10","entrezGeneId":"11141"},{"alias":"MRX21","entrezGeneId":"11141"},{"alias":"MRX34","entrezGeneId":"11141"},{"alias":"OPHN4","entrezGeneId":"11141"},{"alias":"TIGIRR-2","entrezGeneId":"11141"},{"alias":"PKI-gamma","entrezGeneId":"11142"},{"alias":"HBO1","entrezGeneId":"11143"},{"alias":"HBOA","entrezGeneId":"11143"},{"alias":"MYST2","entrezGeneId":"11143"},{"alias":"ZC2HC7","entrezGeneId":"11143"},{"alias":"dJ199H16.1","entrezGeneId":"11144"},{"alias":"DMC1H","entrezGeneId":"11144"},{"alias":"LIM15","entrezGeneId":"11144"},{"alias":"AdPLA","entrezGeneId":"11145"},{"alias":"H-REV107","entrezGeneId":"11145"},{"alias":"H-REV107-1","entrezGeneId":"11145"},{"alias":"HRASLS3","entrezGeneId":"11145"},{"alias":"HREV107","entrezGeneId":"11145"},{"alias":"HREV107-1","entrezGeneId":"11145"},{"alias":"HREV107-3","entrezGeneId":"11145"},{"alias":"HRSL3","entrezGeneId":"11145"},{"alias":"FAP","entrezGeneId":"11146"},{"alias":"FAP48","entrezGeneId":"11146"},{"alias":"FAP68","entrezGeneId":"11146"},{"alias":"FKBPAP","entrezGeneId":"11146"},{"alias":"GLML","entrezGeneId":"11146"},{"alias":"GVM","entrezGeneId":"11146"},{"alias":"VMGLOM","entrezGeneId":"11146"},{"alias":"B7-H5","entrezGeneId":"11148"},{"alias":"B7-H7","entrezGeneId":"11148"},{"alias":"B7H7","entrezGeneId":"11148"},{"alias":"B7y","entrezGeneId":"11148"},{"alias":"HBVES","entrezGeneId":"11149"},{"alias":"LGMD2X","entrezGeneId":"11149"},{"alias":"POP1","entrezGeneId":"11149"},{"alias":"POPDC1","entrezGeneId":"11149"},{"alias":"CLABP","entrezGeneId":"11151"},{"alias":"CLIPINA","entrezGeneId":"11151"},{"alias":"HCORO1","entrezGeneId":"11151"},{"alias":"IMD8","entrezGeneId":"11151"},{"alias":"p57","entrezGeneId":"11151"},{"alias":"TACO","entrezGeneId":"11151"},{"alias":"JM5","entrezGeneId":"11152"},{"alias":"NBIA4","entrezGeneId":"11152"},{"alias":"NBIA5","entrezGeneId":"11152"},{"alias":"WDRX1","entrezGeneId":"11152"},{"alias":"WIPI-4","entrezGeneId":"11152"},{"alias":"WIPI4","entrezGeneId":"11152"},{"alias":"HIP13","entrezGeneId":"11153"},{"alias":"HYPE","entrezGeneId":"11153"},{"alias":"UNQ3041","entrezGeneId":"11153"},{"alias":"AP47B","entrezGeneId":"11154"},{"alias":"CLA20","entrezGeneId":"11154"},{"alias":"CLAPS4","entrezGeneId":"11154"},{"alias":"CPSQ6","entrezGeneId":"11154"},{"alias":"SPG52","entrezGeneId":"11154"},{"alias":"CMD1C","entrezGeneId":"11155"},{"alias":"CMH24","entrezGeneId":"11155"},{"alias":"CMPD3","entrezGeneId":"11155"},{"alias":"CYPHER","entrezGeneId":"11155"},{"alias":"LDB3Z1","entrezGeneId":"11155"},{"alias":"LDB3Z4","entrezGeneId":"11155"},{"alias":"LVNC3","entrezGeneId":"11155"},{"alias":"MFM4","entrezGeneId":"11155"},{"alias":"ORACLE","entrezGeneId":"11155"},{"alias":"PDLIM6","entrezGeneId":"11155"},{"alias":"ZASP","entrezGeneId":"11155"},{"alias":"PRL-3","entrezGeneId":"11156"},{"alias":"PRL-R","entrezGeneId":"11156"},{"alias":"PRL3","entrezGeneId":"11156"},{"alias":"YDR378C","entrezGeneId":"11157"},{"alias":"C8orf2","entrezGeneId":"11160"},{"alias":"Erlin-2","entrezGeneId":"11160"},{"alias":"NET32","entrezGeneId":"11160"},{"alias":"SPFH2","entrezGeneId":"11160"},{"alias":"SPG18","entrezGeneId":"11160"},{"alias":"C14orf1","entrezGeneId":"11161"},{"alias":"NET51","entrezGeneId":"11161"},{"alias":"ASFGF2","entrezGeneId":"11162"},{"alias":"FGF-AS","entrezGeneId":"11162"},{"alias":"FGF2AS","entrezGeneId":"11162"},{"alias":"GFG-1","entrezGeneId":"11162"},{"alias":"GFG1","entrezGeneId":"11162"},{"alias":"DIPP2","entrezGeneId":"11163"},{"alias":"DIPP2alpha","entrezGeneId":"11163"},{"alias":"DIPP2beta","entrezGeneId":"11163"},{"alias":"HDCMB47P","entrezGeneId":"11163"},{"alias":"hNUDT5","entrezGeneId":"11164"},{"alias":"YSA1","entrezGeneId":"11164"},{"alias":"YSA1H","entrezGeneId":"11164"},{"alias":"YSAH1","entrezGeneId":"11164"},{"alias":"DIPP","entrezGeneId":"11165"},{"alias":"DIPP-1","entrezGeneId":"11165"},{"alias":"DIPP1","entrezGeneId":"11165"},{"alias":"SOX25","entrezGeneId":"11166"},{"alias":"FRP","entrezGeneId":"11167"},{"alias":"FSL1","entrezGeneId":"11167"},{"alias":"MIR198","entrezGeneId":"11167"},{"alias":"OCC-1","entrezGeneId":"11167"},{"alias":"OCC1","entrezGeneId":"11167"},{"alias":"tsc36","entrezGeneId":"11167"},{"alias":"DFS70","entrezGeneId":"11168"},{"alias":"LEDGF","entrezGeneId":"11168"},{"alias":"p52","entrezGeneId":"11168"},{"alias":"p75","entrezGeneId":"11168"},{"alias":"PAIP","entrezGeneId":"11168"},{"alias":"PSIP2","entrezGeneId":"11168"},{"alias":"AND-1","entrezGeneId":"11169"},{"alias":"AND1","entrezGeneId":"11169"},{"alias":"CHTF4","entrezGeneId":"11169"},{"alias":"CTF4","entrezGeneId":"11169"},{"alias":"DRR1","entrezGeneId":"11170"},{"alias":"TU3A","entrezGeneId":"11170"},{"alias":"MAWD","entrezGeneId":"11171"},{"alias":"PT-WD","entrezGeneId":"11171"},{"alias":"UNRIP","entrezGeneId":"11171"},{"alias":"RIF1","entrezGeneId":"11172"},{"alias":"ADAM-TS 7","entrezGeneId":"11173"},{"alias":"ADAM-TS7","entrezGeneId":"11173"},{"alias":"ADAMTS-7","entrezGeneId":"11173"},{"alias":"ADAM-TS 6","entrezGeneId":"11174"},{"alias":"ADAM-TS6","entrezGeneId":"11174"},{"alias":"ADAMTS-6","entrezGeneId":"11174"},{"alias":"TIP5","entrezGeneId":"11176"},{"alias":"WALp3","entrezGeneId":"11176"},{"alias":"ACF1","entrezGeneId":"11177"},{"alias":"hACF1","entrezGeneId":"11177"},{"alias":"WALp1","entrezGeneId":"11177"},{"alias":"WCRF180","entrezGeneId":"11177"},{"alias":"F37","entrezGeneId":"11178"},{"alias":"FEZ1","entrezGeneId":"11178"},{"alias":"NRIF4","entrezGeneId":"11179"},{"alias":"ZNF277P","entrezGeneId":"11179"},{"alias":"TRE","entrezGeneId":"11181"},{"alias":"TREA","entrezGeneId":"11181"},{"alias":"TREHD","entrezGeneId":"11181"},{"alias":"GLUT6","entrezGeneId":"11182"},{"alias":"GLUT9","entrezGeneId":"11182"},{"alias":"HSA011372","entrezGeneId":"11182"},{"alias":"GCKR","entrezGeneId":"11183"},{"alias":"KHS","entrezGeneId":"11183"},{"alias":"KHS1","entrezGeneId":"11183"},{"alias":"MAPKKKK5","entrezGeneId":"11183"},{"alias":"HPK1","entrezGeneId":"11184"},{"alias":"TEMT","entrezGeneId":"11185"},{"alias":"123F2","entrezGeneId":"11186"},{"alias":"NORE2A","entrezGeneId":"11186"},{"alias":"RASSF1A","entrezGeneId":"11186"},{"alias":"RDA32","entrezGeneId":"11186"},{"alias":"REH3P21","entrezGeneId":"11186"},{"alias":"hIRAS","entrezGeneId":"11188"},{"alias":"I-1","entrezGeneId":"11188"},{"alias":"IR1","entrezGeneId":"11188"},{"alias":"IRAS","entrezGeneId":"11188"},{"alias":"BRUNOL1","entrezGeneId":"11189"},{"alias":"CAGH4","entrezGeneId":"11189"},{"alias":"ERDA4","entrezGeneId":"11189"},{"alias":"ETR-1","entrezGeneId":"11189"},{"alias":"TNRC4","entrezGeneId":"11189"},{"alias":"C-NAP1","entrezGeneId":"11190"},{"alias":"CEP2","entrezGeneId":"11190"},{"alias":"CNAP1","entrezGeneId":"11190"},{"alias":"psiPTEN","entrezGeneId":"11191"},{"alias":"PTEN-rs","entrezGeneId":"11191"},{"alias":"PTEN2","entrezGeneId":"11191"},{"alias":"PTENpg1","entrezGeneId":"11191"},{"alias":"PTH2","entrezGeneId":"11191"},{"alias":"FBP21","entrezGeneId":"11193"},{"alias":"EST328128","entrezGeneId":"11194"},{"alias":"M-ABC1","entrezGeneId":"11194"},{"alias":"MABC1","entrezGeneId":"11194"},{"alias":"MSTP053","entrezGeneId":"11196"},{"alias":"P125","entrezGeneId":"11196"},{"alias":"P125A","entrezGeneId":"11196"},{"alias":"WIF-1","entrezGeneId":"11197"},{"alias":"CDC68","entrezGeneId":"11198"},{"alias":"FACTP140","entrezGeneId":"11198"},{"alias":"SPT16","entrezGeneId":"11198"},{"alias":"SPT16/CDC68","entrezGeneId":"11198"},{"alias":"ANX14","entrezGeneId":"11199"},{"alias":"CDS1","entrezGeneId":"11200"},{"alias":"CHK2","entrezGeneId":"11200"},{"alias":"hCds1","entrezGeneId":"11200"},{"alias":"HuCds1","entrezGeneId":"11200"},{"alias":"LFS2","entrezGeneId":"11200"},{"alias":"PP1425","entrezGeneId":"11200"},{"alias":"RAD53","entrezGeneId":"11200"},{"alias":"eta2","entrezGeneId":"11201"},{"alias":"RAD30B","entrezGeneId":"11201"},{"alias":"RAD3OB","entrezGeneId":"11201"},{"alias":"HNP","entrezGeneId":"11202"},{"alias":"NP","entrezGeneId":"11202"},{"alias":"NRPN","entrezGeneId":"11202"},{"alias":"PRSS19","entrezGeneId":"11202"},{"alias":"TADG14","entrezGeneId":"11202"},{"alias":"MSPL-1","entrezGeneId":"11209"},{"alias":"MSPL-2","entrezGeneId":"11209"},{"alias":"MSPL-3","entrezGeneId":"11209"},{"alias":"MSPL1","entrezGeneId":"11209"},{"alias":"MSPL2","entrezGeneId":"11209"},{"alias":"MSPL3","entrezGeneId":"11209"},{"alias":"MSTP1","entrezGeneId":"11209"},{"alias":"MSTP2","entrezGeneId":"11209"},{"alias":"MSTP3","entrezGeneId":"11209"},{"alias":"CD350","entrezGeneId":"11211"},{"alias":"FZ-10","entrezGeneId":"11211"},{"alias":"Fz10","entrezGeneId":"11211"},{"alias":"FzE7","entrezGeneId":"11211"},{"alias":"hFz10","entrezGeneId":"11211"},{"alias":"EPVB6D","entrezGeneId":"11212"},{"alias":"PROSC","entrezGeneId":"11212"},{"alias":"ASRT5","entrezGeneId":"11213"},{"alias":"IRAKM","entrezGeneId":"11213"},{"alias":"AKAP-13","entrezGeneId":"11214"},{"alias":"AKAP-Lbc","entrezGeneId":"11214"},{"alias":"ARHGEF13","entrezGeneId":"11214"},{"alias":"BRX","entrezGeneId":"11214"},{"alias":"c-lbc","entrezGeneId":"11214"},{"alias":"HA-3","entrezGeneId":"11214"},{"alias":"Ht31","entrezGeneId":"11214"},{"alias":"LBC","entrezGeneId":"11214"},{"alias":"p47","entrezGeneId":"11214"},{"alias":"PRKA13","entrezGeneId":"11214"},{"alias":"PROTO-LB","entrezGeneId":"11214"},{"alias":"PROTO-LBC","entrezGeneId":"11214"},{"alias":"AKAP-11","entrezGeneId":"11215"},{"alias":"AKAP220","entrezGeneId":"11215"},{"alias":"PPP1R44","entrezGeneId":"11215"},{"alias":"PRKA11","entrezGeneId":"11215"},{"alias":"AKAP-10","entrezGeneId":"11216"},{"alias":"D-AKAP-2","entrezGeneId":"11216"},{"alias":"D-AKAP2","entrezGeneId":"11216"},{"alias":"PRKA10","entrezGeneId":"11216"},{"alias":"AKAP-2","entrezGeneId":"11217"},{"alias":"AKAPKL","entrezGeneId":"11217"},{"alias":"MISP2","entrezGeneId":"11217"},{"alias":"PRKA2","entrezGeneId":"11217"},{"alias":"DP103","entrezGeneId":"11218"},{"alias":"GEMIN3","entrezGeneId":"11218"},{"alias":"MKP-5","entrezGeneId":"11221"},{"alias":"MKP5","entrezGeneId":"11221"},{"alias":"COXPD9","entrezGeneId":"11222"},{"alias":"MRL3","entrezGeneId":"11222"},{"alias":"RPML3","entrezGeneId":"11222"},{"alias":"BRF-1","entrezGeneId":"11223"},{"alias":"D1F15S1A","entrezGeneId":"11223"},{"alias":"MSPL-7","entrezGeneId":"11223"},{"alias":"MSPL7","entrezGeneId":"11223"},{"alias":"MST1P9","entrezGeneId":"11223"},{"alias":"MSTP7","entrezGeneId":"11223"},{"alias":"MSTP9","entrezGeneId":"11223"},{"alias":"L35","entrezGeneId":"11224"},{"alias":"GALNAC-T6","entrezGeneId":"11226"},{"alias":"GalNAcT6","entrezGeneId":"11226"},{"alias":"GALNAC-T5","entrezGeneId":"11227"},{"alias":"GALNACT5","entrezGeneId":"11227"},{"alias":"C12orf2","entrezGeneId":"11228"},{"alias":"HOJ1","entrezGeneId":"11228"},{"alias":"JM4","entrezGeneId":"11230"},{"alias":"Yip6a","entrezGeneId":"11230"},{"alias":"DNAJC23","entrezGeneId":"11231"},{"alias":"ERdj2","entrezGeneId":"11231"},{"alias":"PCLD2","entrezGeneId":"11231"},{"alias":"PRO2507","entrezGeneId":"11231"},{"alias":"SEC63L","entrezGeneId":"11231"},{"alias":"HP55","entrezGeneId":"11232"},{"alias":"MTPOLB","entrezGeneId":"11232"},{"alias":"PEOA4","entrezGeneId":"11232"},{"alias":"POLB","entrezGeneId":"11232"},{"alias":"POLG-BETA","entrezGeneId":"11232"},{"alias":"POLGB","entrezGeneId":"11232"},{"alias":"AIBP63","entrezGeneId":"11234"},{"alias":"BLOC2S2","entrezGeneId":"11234"},{"alias":"CCM3","entrezGeneId":"11235"},{"alias":"TFAR15","entrezGeneId":"11235"},{"alias":"HRCA1","entrezGeneId":"11236"},{"alias":"RCA1","entrezGeneId":"11236"},{"alias":"TRC8","entrezGeneId":"11236"},{"alias":"G1L","entrezGeneId":"11237"},{"alias":"CA-VB","entrezGeneId":"11238"},{"alias":"PAD-H19","entrezGeneId":"11240"},{"alias":"PAD2","entrezGeneId":"11240"},{"alias":"PDI2","entrezGeneId":"11240"},{"alias":"HB-954","entrezGeneId":"11245"},{"alias":"NPH4","entrezGeneId":"11247"},{"alias":"NPH3","entrezGeneId":"11248"},{"alias":"NPH2","entrezGeneId":"11249"},{"alias":"PSP24","entrezGeneId":"11250"},{"alias":"PSP24(ALPHA)","entrezGeneId":"11250"},{"alias":"PSP24A","entrezGeneId":"11250"},{"alias":"CD294","entrezGeneId":"11251"},{"alias":"CRTH2","entrezGeneId":"11251"},{"alias":"DL1R","entrezGeneId":"11251"},{"alias":"DP2","entrezGeneId":"11251"},{"alias":"GPR44","entrezGeneId":"11251"},{"alias":"SDPII","entrezGeneId":"11252"},{"alias":"ERMAN1","entrezGeneId":"11253"},{"alias":"ERManI","entrezGeneId":"11253"},{"alias":"MANA-ER","entrezGeneId":"11253"},{"alias":"MRT15","entrezGeneId":"11253"},{"alias":"BMIQ11","entrezGeneId":"11254"},{"alias":"GPCR97","entrezGeneId":"11255"},{"alias":"HH3R","entrezGeneId":"11255"},{"alias":"LINC00096","entrezGeneId":"11257"},{"alias":"NCRNA00096","entrezGeneId":"11257"},{"alias":"P53TG1","entrezGeneId":"11257"},{"alias":"P53TG1-D","entrezGeneId":"11257"},{"alias":"TP53AP1","entrezGeneId":"11257"},{"alias":"DCTN-22","entrezGeneId":"11258"},{"alias":"DCTN22","entrezGeneId":"11258"},{"alias":"DOC-1","entrezGeneId":"11259"},{"alias":"DOC1","entrezGeneId":"11259"},{"alias":"GIP130","entrezGeneId":"11259"},{"alias":"GIP90","entrezGeneId":"11259"},{"alias":"XPO3","entrezGeneId":"11260"},{"alias":"CHP","entrezGeneId":"11261"},{"alias":"p22","entrezGeneId":"11261"},{"alias":"p24","entrezGeneId":"11261"},{"alias":"Sid470p","entrezGeneId":"11261"},{"alias":"SLC9A1BP","entrezGeneId":"11261"},{"alias":"LYSP100","entrezGeneId":"11262"},{"alias":"LYSP100-A","entrezGeneId":"11262"},{"alias":"LYSP100-B","entrezGeneId":"11262"},{"alias":"PMP24","entrezGeneId":"11264"},{"alias":"DUSP1","entrezGeneId":"11266"},{"alias":"YVH1","entrezGeneId":"11266"},{"alias":"Dot3","entrezGeneId":"11267"},{"alias":"EAP30","entrezGeneId":"11267"},{"alias":"VPS22","entrezGeneId":"11267"},{"alias":"DBP5","entrezGeneId":"11269"},{"alias":"DDX19","entrezGeneId":"11269"},{"alias":"RNAh","entrezGeneId":"11269"},{"alias":"NRM29","entrezGeneId":"11270"},{"alias":"LPRP","entrezGeneId":"11272"},{"alias":"PROL4","entrezGeneId":"11272"},{"alias":"A2D","entrezGeneId":"11273"},{"alias":"A2LG","entrezGeneId":"11273"},{"alias":"A2LP","entrezGeneId":"11273"},{"alias":"A2RP","entrezGeneId":"11273"},{"alias":"ISG43","entrezGeneId":"11274"},{"alias":"PTORCH2","entrezGeneId":"11274"},{"alias":"UBP43","entrezGeneId":"11274"},{"alias":"ABP-KELCH","entrezGeneId":"11275"},{"alias":"MAV","entrezGeneId":"11275"},{"alias":"MAYVEN","entrezGeneId":"11275"},{"alias":"AP1GBP1","entrezGeneId":"11276"},{"alias":"SYNG","entrezGeneId":"11276"},{"alias":"AGS1","entrezGeneId":"11277"},{"alias":"CRV","entrezGeneId":"11277"},{"alias":"DRN3","entrezGeneId":"11277"},{"alias":"HERNS","entrezGeneId":"11277"},{"alias":"AP-2rep","entrezGeneId":"11278"},{"alias":"AP2REP","entrezGeneId":"11278"},{"alias":"HSPC122","entrezGeneId":"11278"},{"alias":"BKLF3","entrezGeneId":"11279"},{"alias":"ZNF741","entrezGeneId":"11279"},{"alias":"FEPS3","entrezGeneId":"11280"},{"alias":"HSAN7","entrezGeneId":"11280"},{"alias":"NaN","entrezGeneId":"11280"},{"alias":"NAV1.9","entrezGeneId":"11280"},{"alias":"PN5","entrezGeneId":"11280"},{"alias":"SCN12A","entrezGeneId":"11280"},{"alias":"SNS-2","entrezGeneId":"11280"},{"alias":"RPF-1","entrezGeneId":"11281"},{"alias":"WT5","entrezGeneId":"11281"},{"alias":"WTSL","entrezGeneId":"11281"},{"alias":"GNT-IV","entrezGeneId":"11282"},{"alias":"GNT-IVB","entrezGeneId":"11282"},{"alias":"CPF8","entrezGeneId":"11283"},{"alias":"CYPIVF8","entrezGeneId":"11283"},{"alias":"AOA4","entrezGeneId":"11284"},{"alias":"EIEE10","entrezGeneId":"11284"},{"alias":"MCSZ","entrezGeneId":"11284"},{"alias":"PNK","entrezGeneId":"11284"},{"alias":"EDSP1","entrezGeneId":"11285"},{"alias":"EDSSLA","entrezGeneId":"11285"},{"alias":"EDSSPD1","entrezGeneId":"11285"},{"alias":"XGALT1","entrezGeneId":"11285"},{"alias":"XGPT1","entrezGeneId":"11285"},{"alias":"OATP-B","entrezGeneId":"11309"},{"alias":"OATP2B1","entrezGeneId":"11309"},{"alias":"OATPB","entrezGeneId":"11309"},{"alias":"SLC21A9","entrezGeneId":"11309"},{"alias":"H1","entrezGeneId":"11311"},{"alias":"H1VPS45","entrezGeneId":"11311"},{"alias":"SCN5","entrezGeneId":"11311"},{"alias":"VPS45A","entrezGeneId":"11311"},{"alias":"VPS45B","entrezGeneId":"11311"},{"alias":"VPS54A","entrezGeneId":"11311"},{"alias":"VSP45","entrezGeneId":"11311"},{"alias":"VSP45A","entrezGeneId":"11311"},{"alias":"APT-2","entrezGeneId":"11313"},{"alias":"APT2","entrezGeneId":"11313"},{"alias":"DJ886K2.4","entrezGeneId":"11313"},{"alias":"CLM-8","entrezGeneId":"11314"},{"alias":"CMRF-35-H9","entrezGeneId":"11314"},{"alias":"CMRF-35H","entrezGeneId":"11314"},{"alias":"CMRF35-H","entrezGeneId":"11314"},{"alias":"CMRF35-H9","entrezGeneId":"11314"},{"alias":"CMRF35H","entrezGeneId":"11314"},{"alias":"CMRF35H9","entrezGeneId":"11314"},{"alias":"IGSF12","entrezGeneId":"11314"},{"alias":"IRC1","entrezGeneId":"11314"},{"alias":"IRC1/IRC2","entrezGeneId":"11314"},{"alias":"IRC2","entrezGeneId":"11314"},{"alias":"IRp60","entrezGeneId":"11314"},{"alias":"DJ-1","entrezGeneId":"11315"},{"alias":"DJ1","entrezGeneId":"11315"},{"alias":"GATD2","entrezGeneId":"11315"},{"alias":"HEL-S-67p","entrezGeneId":"11315"},{"alias":"epsilon-COP","entrezGeneId":"11316"},{"alias":"RBPL","entrezGeneId":"11317"},{"alias":"RBPSUHL","entrezGeneId":"11317"},{"alias":"SUHL","entrezGeneId":"11317"},{"alias":"7TMR","entrezGeneId":"11318"},{"alias":"ADMR","entrezGeneId":"11318"},{"alias":"AM-R","entrezGeneId":"11318"},{"alias":"AMR","entrezGeneId":"11318"},{"alias":"G10D","entrezGeneId":"11318"},{"alias":"gamrh","entrezGeneId":"11318"},{"alias":"hrhAMR","entrezGeneId":"11318"},{"alias":"GCR2","entrezGeneId":"11319"},{"alias":"HSGT1","entrezGeneId":"11319"},{"alias":"SGT1","entrezGeneId":"11319"},{"alias":"GnT-4a","entrezGeneId":"11320"},{"alias":"GNT-IV","entrezGeneId":"11320"},{"alias":"GNT-IVA","entrezGeneId":"11320"},{"alias":"ATPBD1A","entrezGeneId":"11321"},{"alias":"MBDIN","entrezGeneId":"11321"},{"alias":"NTPBP","entrezGeneId":"11321"},{"alias":"RPAP4","entrezGeneId":"11321"},{"alias":"XAB1","entrezGeneId":"11321"},{"alias":"EV1","entrezGeneId":"11322"},{"alias":"EVER1","entrezGeneId":"11322"},{"alias":"EVIN1","entrezGeneId":"11322"},{"alias":"LAK-4P","entrezGeneId":"11322"},{"alias":"DDX42P","entrezGeneId":"11325"},{"alias":"RHELP","entrezGeneId":"11325"},{"alias":"RNAHP","entrezGeneId":"11325"},{"alias":"SF3b125","entrezGeneId":"11325"},{"alias":"SF3B8","entrezGeneId":"11325"},{"alias":"CRIg","entrezGeneId":"11326"},{"alias":"Z39IG","entrezGeneId":"11326"},{"alias":"FKBP60","entrezGeneId":"11328"},{"alias":"FKBP63","entrezGeneId":"11328"},{"alias":"PPIase","entrezGeneId":"11328"},{"alias":"NDR","entrezGeneId":"11329"},{"alias":"NDR1","entrezGeneId":"11329"},{"alias":"CLCR","entrezGeneId":"11330"},{"alias":"ELA4","entrezGeneId":"11330"},{"alias":"BAP","entrezGeneId":"11331"},{"alias":"Bap37","entrezGeneId":"11331"},{"alias":"BCAP37","entrezGeneId":"11331"},{"alias":"hBAP","entrezGeneId":"11331"},{"alias":"p22","entrezGeneId":"11331"},{"alias":"PNAS-141","entrezGeneId":"11331"},{"alias":"REA","entrezGeneId":"11331"},{"alias":"ACH1","entrezGeneId":"11332"},{"alias":"ACT","entrezGeneId":"11332"},{"alias":"BACH","entrezGeneId":"11332"},{"alias":"CTE-II","entrezGeneId":"11332"},{"alias":"hBACH","entrezGeneId":"11332"},{"alias":"LACH","entrezGeneId":"11332"},{"alias":"LACH1","entrezGeneId":"11332"},{"alias":"HASPP28","entrezGeneId":"11333"},{"alias":"PAP","entrezGeneId":"11333"},{"alias":"PAP1","entrezGeneId":"11333"},{"alias":"C3orf11","entrezGeneId":"11334"},{"alias":"FUS1","entrezGeneId":"11334"},{"alias":"PAP","entrezGeneId":"11334"},{"alias":"PDAP2","entrezGeneId":"11334"},{"alias":"HECH","entrezGeneId":"11335"},{"alias":"HP1-GAMMA","entrezGeneId":"11335"},{"alias":"HP1Hs-gamma","entrezGeneId":"11335"},{"alias":"SEC6","entrezGeneId":"11336"},{"alias":"SEC6L1","entrezGeneId":"11336"},{"alias":"Sec6p","entrezGeneId":"11336"},{"alias":"ATG8A","entrezGeneId":"11337"},{"alias":"GABARAP-a","entrezGeneId":"11337"},{"alias":"MM46","entrezGeneId":"11337"},{"alias":"U2AF65","entrezGeneId":"11338"},{"alias":"5730547N13Rik","entrezGeneId":"11339"},{"alias":"CT86","entrezGeneId":"11339"},{"alias":"hMIS18beta","entrezGeneId":"11339"},{"alias":"LINT-25","entrezGeneId":"11339"},{"alias":"MIS18B","entrezGeneId":"11339"},{"alias":"MIS18beta","entrezGeneId":"11339"},{"alias":"bA421P11.3","entrezGeneId":"11340"},{"alias":"CIP3","entrezGeneId":"11340"},{"alias":"EAP2","entrezGeneId":"11340"},{"alias":"OIP2","entrezGeneId":"11340"},{"alias":"p9","entrezGeneId":"11340"},{"alias":"PCH1C","entrezGeneId":"11340"},{"alias":"RRP43","entrezGeneId":"11340"},{"alias":"Rrp43p","entrezGeneId":"11340"},{"alias":"SCRG-1","entrezGeneId":"11341"},{"alias":"RZF","entrezGeneId":"11342"},{"alias":"HU-K5","entrezGeneId":"11343"},{"alias":"HUK5","entrezGeneId":"11343"},{"alias":"MAGL","entrezGeneId":"11343"},{"alias":"MGL","entrezGeneId":"11343"},{"alias":"A6r","entrezGeneId":"11344"},{"alias":"A6RP","entrezGeneId":"11344"},{"alias":"MSTP011","entrezGeneId":"11344"},{"alias":"PTK9L","entrezGeneId":"11344"},{"alias":"ATG8","entrezGeneId":"11345"},{"alias":"ATG8C","entrezGeneId":"11345"},{"alias":"GATE-16","entrezGeneId":"11345"},{"alias":"GATE16","entrezGeneId":"11345"},{"alias":"GEF-2","entrezGeneId":"11345"},{"alias":"GEF2","entrezGeneId":"11345"},{"alias":"BTZ","entrezGeneId":"22794"},{"alias":"MLN51","entrezGeneId":"22794"},{"alias":"NID-2","entrezGeneId":"22795"},{"alias":"CDG2Q","entrezGeneId":"22796"},{"alias":"LDLC","entrezGeneId":"22796"},{"alias":"bHLHe34","entrezGeneId":"22797"},{"alias":"hTFEC-L","entrezGeneId":"22797"},{"alias":"TCFEC","entrezGeneId":"22797"},{"alias":"TFE-C","entrezGeneId":"22797"},{"alias":"TFEC-L","entrezGeneId":"22797"},{"alias":"TFECL","entrezGeneId":"22797"},{"alias":"TC21","entrezGeneId":"22800"},{"alias":"HsT18964","entrezGeneId":"22801"},{"alias":"CaCC","entrezGeneId":"22802"},{"alias":"CaCC2","entrezGeneId":"22802"},{"alias":"AIO","entrezGeneId":"22806"},{"alias":"AIOLOS","entrezGeneId":"22806"},{"alias":"ZNFN1A3","entrezGeneId":"22806"},{"alias":"ANF1A2","entrezGeneId":"22807"},{"alias":"HELIOS","entrezGeneId":"22807"},{"alias":"ZNF1A2","entrezGeneId":"22807"},{"alias":"ZNFN1A2","entrezGeneId":"22807"},{"alias":"M-RAs","entrezGeneId":"22808"},{"alias":"R-RAS3","entrezGeneId":"22808"},{"alias":"RRAS3","entrezGeneId":"22808"},{"alias":"ATFX","entrezGeneId":"22809"},{"alias":"HMFN0395","entrezGeneId":"22809"},{"alias":"HCFP2","entrezGeneId":"22811"},{"alias":"CR-6","entrezGeneId":"22813"},{"alias":"CRIPTO-6","entrezGeneId":"22813"},{"alias":"TDGF6","entrezGeneId":"22813"},{"alias":"CR-5","entrezGeneId":"22814"},{"alias":"CRIPTO-5","entrezGeneId":"22814"},{"alias":"TDGF5","entrezGeneId":"22814"},{"alias":"CR-4","entrezGeneId":"22815"},{"alias":"CRIPTO-4","entrezGeneId":"22815"},{"alias":"TDGF4","entrezGeneId":"22815"},{"alias":"CR-2","entrezGeneId":"22816"},{"alias":"CRIPTO-2","entrezGeneId":"22816"},{"alias":"TDGF2","entrezGeneId":"22816"},{"alias":"CAR2","entrezGeneId":"22817"},{"alias":"CGI-120","entrezGeneId":"22818"},{"alias":"COPZ","entrezGeneId":"22818"},{"alias":"HSPC181","entrezGeneId":"22818"},{"alias":"zeta-COP","entrezGeneId":"22818"},{"alias":"zeta1-COP","entrezGeneId":"22818"},{"alias":"COPG","entrezGeneId":"22820"},{"alias":"GAP1IP4BP","entrezGeneId":"22821"},{"alias":"GAPIII","entrezGeneId":"22821"},{"alias":"DT1P1B11","entrezGeneId":"22822"},{"alias":"PHRIP","entrezGeneId":"22822"},{"alias":"TDAG51","entrezGeneId":"22822"},{"alias":"dJ976O13.2","entrezGeneId":"22823"},{"alias":"M96","entrezGeneId":"22823"},{"alias":"PCL2","entrezGeneId":"22823"},{"alias":"TDRD19A","entrezGeneId":"22823"},{"alias":"APG-1","entrezGeneId":"22824"},{"alias":"HSPH3","entrezGeneId":"22824"},{"alias":"Osp94","entrezGeneId":"22824"},{"alias":"HSPC331","entrezGeneId":"22826"},{"alias":"SPF31","entrezGeneId":"22826"},{"alias":"FIR","entrezGeneId":"22827"},{"alias":"RoBPI","entrezGeneId":"22827"},{"alias":"SIAHBP1","entrezGeneId":"22827"},{"alias":"VRJS","entrezGeneId":"22827"},{"alias":"RBM16","entrezGeneId":"22828"},{"alias":"C6orf84","entrezGeneId":"22832"},{"alias":"KIAA1009","entrezGeneId":"22832"},{"alias":"QN1","entrezGeneId":"22832"},{"alias":"ZNF745","entrezGeneId":"22835"},{"alias":"COBLR1","entrezGeneId":"22837"},{"alias":"DAP-4","entrezGeneId":"22839"},{"alias":"DAP4","entrezGeneId":"22839"},{"alias":"DLP4","entrezGeneId":"22839"},{"alias":"SAPAP-4","entrezGeneId":"22839"},{"alias":"SAPAP4","entrezGeneId":"22839"},{"alias":"nRip11","entrezGeneId":"22841"},{"alias":"Rab11-FIP2","entrezGeneId":"22841"},{"alias":"caMKN","entrezGeneId":"22843"},{"alias":"CaMKP-N","entrezGeneId":"22843"},{"alias":"POPX1","entrezGeneId":"22843"},{"alias":"PP2CH","entrezGeneId":"22843"},{"alias":"FRMD2","entrezGeneId":"22844"},{"alias":"CDG1M","entrezGeneId":"22845"},{"alias":"DK","entrezGeneId":"22845"},{"alias":"DK1","entrezGeneId":"22845"},{"alias":"SEC59","entrezGeneId":"22845"},{"alias":"TMEM15","entrezGeneId":"22845"},{"alias":"KIAA1036","entrezGeneId":"22846"},{"alias":"ZNF508","entrezGeneId":"22850"},{"alias":"bA145E8.1","entrezGeneId":"22852"},{"alias":"THC2","entrezGeneId":"22852"},{"alias":"AATYK2","entrezGeneId":"22853"},{"alias":"BREK","entrezGeneId":"22853"},{"alias":"cprk","entrezGeneId":"22853"},{"alias":"hBREK","entrezGeneId":"22853"},{"alias":"KPI-2","entrezGeneId":"22853"},{"alias":"KPI2","entrezGeneId":"22853"},{"alias":"LMR2","entrezGeneId":"22853"},{"alias":"PPP1R100","entrezGeneId":"22853"},{"alias":"Lmnt1","entrezGeneId":"22854"},{"alias":"CHSY","entrezGeneId":"22856"},{"alias":"ChSy-1","entrezGeneId":"22856"},{"alias":"CSS1","entrezGeneId":"22856"},{"alias":"TPBS","entrezGeneId":"22856"},{"alias":"ECO","entrezGeneId":"22858"},{"alias":"LCK2","entrezGeneId":"22858"},{"alias":"MRK","entrezGeneId":"22858"},{"alias":"CIRL1","entrezGeneId":"22859"},{"alias":"CL1","entrezGeneId":"22859"},{"alias":"LEC2","entrezGeneId":"22859"},{"alias":"LPHN1","entrezGeneId":"22859"},{"alias":"AIADK","entrezGeneId":"22861"},{"alias":"CARD7","entrezGeneId":"22861"},{"alias":"CIDED","entrezGeneId":"22861"},{"alias":"CLR17.1","entrezGeneId":"22861"},{"alias":"DEFCAP","entrezGeneId":"22861"},{"alias":"DEFCAP-L/S","entrezGeneId":"22861"},{"alias":"MSPC","entrezGeneId":"22861"},{"alias":"NAC","entrezGeneId":"22861"},{"alias":"NALP1","entrezGeneId":"22861"},{"alias":"PP1044","entrezGeneId":"22861"},{"alias":"SLEV1","entrezGeneId":"22861"},{"alias":"VAMAS1","entrezGeneId":"22861"},{"alias":"bA203I16.1","entrezGeneId":"22862"},{"alias":"bA203I16.5","entrezGeneId":"22862"},{"alias":"FNDC3","entrezGeneId":"22862"},{"alias":"HUGO","entrezGeneId":"22862"},{"alias":"ATG14L","entrezGeneId":"22863"},{"alias":"BARKOR","entrezGeneId":"22863"},{"alias":"KIAA0831","entrezGeneId":"22863"},{"alias":"CAG6","entrezGeneId":"22864"},{"alias":"PR01365","entrezGeneId":"22864"},{"alias":"CNK2","entrezGeneId":"22866"},{"alias":"KSR2","entrezGeneId":"22866"},{"alias":"MAGUIN","entrezGeneId":"22866"},{"alias":"MRXSHG","entrezGeneId":"22866"},{"alias":"KIAA0971","entrezGeneId":"22868"},{"alias":"KIAA1115","entrezGeneId":"22870"},{"alias":"PP6R1","entrezGeneId":"22870"},{"alias":"SAP190","entrezGeneId":"22870"},{"alias":"SAPS1","entrezGeneId":"22870"},{"alias":"NL1","entrezGeneId":"22871"},{"alias":"ABP125","entrezGeneId":"22872"},{"alias":"ABP130","entrezGeneId":"22872"},{"alias":"HSPC275","entrezGeneId":"22872"},{"alias":"HSPC334","entrezGeneId":"22872"},{"alias":"SEC31L1","entrezGeneId":"22872"},{"alias":"DZIP","entrezGeneId":"22873"},{"alias":"DZIPt1","entrezGeneId":"22873"},{"alias":"PEPP-3","entrezGeneId":"22874"},{"alias":"PEPP3","entrezGeneId":"22874"},{"alias":"NPP4","entrezGeneId":"22875"},{"alias":"hSAC2","entrezGeneId":"22876"},{"alias":"MSTP007","entrezGeneId":"22876"},{"alias":"MSTPO47","entrezGeneId":"22876"},{"alias":"SAC2","entrezGeneId":"22876"},{"alias":"bHLHe36","entrezGeneId":"22877"},{"alias":"MIR","entrezGeneId":"22877"},{"alias":"MONDOA","entrezGeneId":"22877"},{"alias":"GSG1","entrezGeneId":"22878"},{"alias":"HsT2706","entrezGeneId":"22878"},{"alias":"KIAA1012","entrezGeneId":"22878"},{"alias":"TRS85","entrezGeneId":"22878"},{"alias":"HSRG1","entrezGeneId":"22879"},{"alias":"SAND2","entrezGeneId":"22879"},{"alias":"SRG1","entrezGeneId":"22879"},{"alias":"CMT2Z","entrezGeneId":"22880"},{"alias":"ZCW3","entrezGeneId":"22880"},{"alias":"ZCWCC1","entrezGeneId":"22880"},{"alias":"AFR1","entrezGeneId":"22882"},{"alias":"RAF","entrezGeneId":"22882"},{"alias":"ALC-ALPHA","entrezGeneId":"22883"},{"alias":"alcalpha1","entrezGeneId":"22883"},{"alias":"alcalpha2","entrezGeneId":"22883"},{"alias":"CDHR12","entrezGeneId":"22883"},{"alias":"CST-1","entrezGeneId":"22883"},{"alias":"CSTN1","entrezGeneId":"22883"},{"alias":"PIK3CD","entrezGeneId":"22883"},{"alias":"XB31alpha","entrezGeneId":"22883"},{"alias":"HMFN1661","entrezGeneId":"22885"},{"alias":"hUIP5","entrezGeneId":"22888"},{"alias":"RNF37","entrezGeneId":"22888"},{"alias":"UBCE7IP5","entrezGeneId":"22888"},{"alias":"UIP5","entrezGeneId":"22888"},{"alias":"BLOM7","entrezGeneId":"22889"},{"alias":"KIAA0907","entrezGeneId":"22889"},{"alias":"SNORA80EHG","entrezGeneId":"22889"},{"alias":"ZNF909","entrezGeneId":"22890"},{"alias":"Su48","entrezGeneId":"22891"},{"alias":"UAN","entrezGeneId":"22891"},{"alias":"ZNF365D","entrezGeneId":"22891"},{"alias":"2810028N01Rik","entrezGeneId":"22894"},{"alias":"dis3p","entrezGeneId":"22894"},{"alias":"EXOSC11","entrezGeneId":"22894"},{"alias":"KIAA1008","entrezGeneId":"22894"},{"alias":"RRP44","entrezGeneId":"22894"},{"alias":"NPHP15","entrezGeneId":"22897"},{"alias":"ARGEF15","entrezGeneId":"22899"},{"alias":"E5","entrezGeneId":"22899"},{"alias":"Ephexin5","entrezGeneId":"22899"},{"alias":"Vsm-RhoGEF","entrezGeneId":"22899"},{"alias":"CARDINAL","entrezGeneId":"22900"},{"alias":"DACAR","entrezGeneId":"22900"},{"alias":"DAKAR","entrezGeneId":"22900"},{"alias":"NDPP","entrezGeneId":"22900"},{"alias":"NDPP1","entrezGeneId":"22900"},{"alias":"TUCAN","entrezGeneId":"22900"},{"alias":"RIPX","entrezGeneId":"22902"},{"alias":"SINGAR1","entrezGeneId":"22902"},{"alias":"ZFYVE30","entrezGeneId":"22902"},{"alias":"dJ742J24.1","entrezGeneId":"22903"},{"alias":"KIAA0963","entrezGeneId":"22904"},{"alias":"SNO","entrezGeneId":"22904"},{"alias":"STNO","entrezGeneId":"22904"},{"alias":"EHB21","entrezGeneId":"22905"},{"alias":"MILT1","entrezGeneId":"22906"},{"alias":"OIP106","entrezGeneId":"22906"},{"alias":"DDX30","entrezGeneId":"22907"},{"alias":"NEDMIAL","entrezGeneId":"22907"},{"alias":"RETCOR","entrezGeneId":"22907"},{"alias":"SAC1","entrezGeneId":"22908"},{"alias":"hFAN1","entrezGeneId":"22909"},{"alias":"KIAA1018","entrezGeneId":"22909"},{"alias":"KMIN","entrezGeneId":"22909"},{"alias":"MTMR15","entrezGeneId":"22909"},{"alias":"HNRPCL2","entrezGeneId":"22913"},{"alias":"P542","entrezGeneId":"22913"},{"alias":"CD314","entrezGeneId":"22914"},{"alias":"D12S2489E","entrezGeneId":"22914"},{"alias":"KLR","entrezGeneId":"22914"},{"alias":"NKG2-D","entrezGeneId":"22914"},{"alias":"NKG2D","entrezGeneId":"22914"},{"alias":"ECM","entrezGeneId":"22915"},{"alias":"EMILIN4","entrezGeneId":"22915"},{"alias":"GPIa*","entrezGeneId":"22915"},{"alias":"MMRN","entrezGeneId":"22915"},{"alias":"CBC2","entrezGeneId":"22916"},{"alias":"CBP20","entrezGeneId":"22916"},{"alias":"NIP1","entrezGeneId":"22916"},{"alias":"PIG55","entrezGeneId":"22916"},{"alias":"HEL163","entrezGeneId":"22917"},{"alias":"OOMD","entrezGeneId":"22917"},{"alias":"OOMD1","entrezGeneId":"22917"},{"alias":"C1qR(P)","entrezGeneId":"22918"},{"alias":"C1QR1","entrezGeneId":"22918"},{"alias":"C1qRP","entrezGeneId":"22918"},{"alias":"CDw93","entrezGeneId":"22918"},{"alias":"dJ737E23.1","entrezGeneId":"22918"},{"alias":"ECSM3","entrezGeneId":"22918"},{"alias":"MXRA4","entrezGeneId":"22918"},{"alias":"EB1","entrezGeneId":"22919"},{"alias":"dJ190I16.1","entrezGeneId":"22920"},{"alias":"FLA3","entrezGeneId":"22920"},{"alias":"KAP-1","entrezGeneId":"22920"},{"alias":"KAP-3","entrezGeneId":"22920"},{"alias":"KAP3","entrezGeneId":"22920"},{"alias":"SMAP","entrezGeneId":"22920"},{"alias":"Smg-GDS","entrezGeneId":"22920"},{"alias":"CBS-1","entrezGeneId":"22921"},{"alias":"CBS1","entrezGeneId":"22921"},{"alias":"CGI-131","entrezGeneId":"22921"},{"alias":"MSRB","entrezGeneId":"22921"},{"alias":"PILB","entrezGeneId":"22921"},{"alias":"EB3","entrezGeneId":"22924"},{"alias":"EBF3","entrezGeneId":"22924"},{"alias":"EBF3-S","entrezGeneId":"22924"},{"alias":"RP3","entrezGeneId":"22924"},{"alias":"CLEC13C","entrezGeneId":"22925"},{"alias":"PLA2-R","entrezGeneId":"22925"},{"alias":"PLA2G1R","entrezGeneId":"22925"},{"alias":"PLA2IR","entrezGeneId":"22925"},{"alias":"PLA2R","entrezGeneId":"22925"},{"alias":"ACHM7","entrezGeneId":"22926"},{"alias":"ATF6A","entrezGeneId":"22926"},{"alias":"IHABP-4","entrezGeneId":"22927"},{"alias":"IHABP4","entrezGeneId":"22927"},{"alias":"Ki-1/57","entrezGeneId":"22927"},{"alias":"SERBP1L","entrezGeneId":"22927"},{"alias":"SPS2","entrezGeneId":"22928"},{"alias":"SELD","entrezGeneId":"22929"},{"alias":"SPS","entrezGeneId":"22929"},{"alias":"SPS1","entrezGeneId":"22929"},{"alias":"P130","entrezGeneId":"22930"},{"alias":"RAB3GAP","entrezGeneId":"22930"},{"alias":"RAB3GAP130","entrezGeneId":"22930"},{"alias":"WARBM1","entrezGeneId":"22930"},{"alias":"RAB18LI1","entrezGeneId":"22931"},{"alias":"WARBM3","entrezGeneId":"22931"},{"alias":"POM-ZP3","entrezGeneId":"22932"},{"alias":"POM121","entrezGeneId":"22932"},{"alias":"SIR2","entrezGeneId":"22933"},{"alias":"SIR2L","entrezGeneId":"22933"},{"alias":"SIR2L2","entrezGeneId":"22933"},{"alias":"RPI","entrezGeneId":"22934"},{"alias":"RPIAD","entrezGeneId":"22934"},{"alias":"MRCCAT1","entrezGeneId":"22936"},{"alias":"Bx42","entrezGeneId":"22938"},{"alias":"FUN20","entrezGeneId":"22938"},{"alias":"NCOA-62","entrezGeneId":"22938"},{"alias":"Prp45","entrezGeneId":"22938"},{"alias":"PRPF45","entrezGeneId":"22938"},{"alias":"SKIIP","entrezGeneId":"22938"},{"alias":"SKIP","entrezGeneId":"22938"},{"alias":"SKIP1","entrezGeneId":"22938"},{"alias":"AUTS17","entrezGeneId":"22941"},{"alias":"CORTBP1","entrezGeneId":"22941"},{"alias":"CTTNBP1","entrezGeneId":"22941"},{"alias":"ProSAP1","entrezGeneId":"22941"},{"alias":"SHANK","entrezGeneId":"22941"},{"alias":"SPANK-3","entrezGeneId":"22941"},{"alias":"DKK-1","entrezGeneId":"22943"},{"alias":"SK","entrezGeneId":"22943"},{"alias":"BTCD","entrezGeneId":"22944"},{"alias":"KIN17","entrezGeneId":"22944"},{"alias":"Rts2","entrezGeneId":"22944"},{"alias":"DUX10","entrezGeneId":"22947"},{"alias":"DUX4","entrezGeneId":"22947"},{"alias":"CCT-epsilon","entrezGeneId":"22948"},{"alias":"CCTE","entrezGeneId":"22948"},{"alias":"HEL-S-69","entrezGeneId":"22948"},{"alias":"PNAS-102","entrezGeneId":"22948"},{"alias":"TCP-1-epsilon","entrezGeneId":"22948"},{"alias":"LTB4DH","entrezGeneId":"22949"},{"alias":"PGR1","entrezGeneId":"22949"},{"alias":"ZADH3","entrezGeneId":"22949"},{"alias":"HLC3","entrezGeneId":"22950"},{"alias":"CYP2G1","entrezGeneId":"22952"},{"alias":"CYP2G2P","entrezGeneId":"22952"},{"alias":"CYP2GP1","entrezGeneId":"22952"},{"alias":"DFNA41","entrezGeneId":"22953"},{"alias":"P2X2","entrezGeneId":"22953"},{"alias":"BBS11","entrezGeneId":"22954"},{"alias":"HT2A","entrezGeneId":"22954"},{"alias":"LGMD2H","entrezGeneId":"22954"},{"alias":"TATIP","entrezGeneId":"22954"},{"alias":"Scml3","entrezGeneId":"22955"},{"alias":"dJ1065O2.1","entrezGeneId":"22971"},{"alias":"RPL41L2","entrezGeneId":"22971"},{"alias":"LAMB2L","entrezGeneId":"22973"},{"alias":"C20orf1","entrezGeneId":"22974"},{"alias":"C20orf2","entrezGeneId":"22974"},{"alias":"DIL-2","entrezGeneId":"22974"},{"alias":"DIL2","entrezGeneId":"22974"},{"alias":"FLS353","entrezGeneId":"22974"},{"alias":"GD:C20orf1","entrezGeneId":"22974"},{"alias":"HCA519","entrezGeneId":"22974"},{"alias":"HCTP4","entrezGeneId":"22974"},{"alias":"p100","entrezGeneId":"22974"},{"alias":"REPP86","entrezGeneId":"22974"},{"alias":"CAGF28","entrezGeneId":"22976"},{"alias":"CAGF29","entrezGeneId":"22976"},{"alias":"PACIP1","entrezGeneId":"22976"},{"alias":"PAXIP1L","entrezGeneId":"22976"},{"alias":"PTIP","entrezGeneId":"22976"},{"alias":"TNRC2","entrezGeneId":"22976"},{"alias":"AFAR2","entrezGeneId":"22977"},{"alias":"cN-II","entrezGeneId":"22978"},{"alias":"GMP","entrezGeneId":"22978"},{"alias":"NT5B","entrezGeneId":"22978"},{"alias":"PNT5","entrezGeneId":"22978"},{"alias":"SPG45","entrezGeneId":"22978"},{"alias":"SPG65","entrezGeneId":"22978"},{"alias":"KIAA0953","entrezGeneId":"22979"},{"alias":"FKSG26","entrezGeneId":"22980"},{"alias":"hKIAA1049","entrezGeneId":"22980"},{"alias":"Hulp1","entrezGeneId":"22980"},{"alias":"NULP1","entrezGeneId":"22980"},{"alias":"PRO2620","entrezGeneId":"22980"},{"alias":"NLP","entrezGeneId":"22981"},{"alias":"KIAA0934","entrezGeneId":"22982"},{"alias":"SAST","entrezGeneId":"22983"},{"alias":"ALG-4","entrezGeneId":"22984"},{"alias":"ALG4","entrezGeneId":"22984"},{"alias":"NFBP","entrezGeneId":"22984"},{"alias":"RRP5","entrezGeneId":"22984"},{"alias":"ACINUS","entrezGeneId":"22985"},{"alias":"ACN","entrezGeneId":"22985"},{"alias":"fSAP152","entrezGeneId":"22985"},{"alias":"SORCS","entrezGeneId":"22986"},{"alias":"PCNX","entrezGeneId":"22990"},{"alias":"PCNXL1","entrezGeneId":"22990"},{"alias":"pecanex","entrezGeneId":"22990"},{"alias":"CXXC8","entrezGeneId":"22992"},{"alias":"FBL11","entrezGeneId":"22992"},{"alias":"FBL7","entrezGeneId":"22992"},{"alias":"FBXL11","entrezGeneId":"22992"},{"alias":"JHDM1A","entrezGeneId":"22992"},{"alias":"LILINA","entrezGeneId":"22992"},{"alias":"HMGX3","entrezGeneId":"22993"},{"alias":"SMF","entrezGeneId":"22993"},{"alias":"AZ1","entrezGeneId":"22994"},{"alias":"AZI1","entrezGeneId":"22994"},{"alias":"ZA1","entrezGeneId":"22994"},{"alias":"MCPH4","entrezGeneId":"22995"},{"alias":"MCPH9","entrezGeneId":"22995"},{"alias":"SCKL5","entrezGeneId":"22995"},{"alias":"C1orf34","entrezGeneId":"22996"},{"alias":"DEME-6","entrezGeneId":"22996"},{"alias":"LIMCH1A","entrezGeneId":"22998"},{"alias":"LMO7B","entrezGeneId":"22998"},{"alias":"CORD7","entrezGeneId":"22999"},{"alias":"RAB3IP2","entrezGeneId":"22999"},{"alias":"RIM","entrezGeneId":"22999"},{"alias":"RIM1","entrezGeneId":"22999"},{"alias":"ALFY","entrezGeneId":"23001"},{"alias":"BCHS","entrezGeneId":"23001"},{"alias":"MCPH18","entrezGeneId":"23001"},{"alias":"ZFYVE25","entrezGeneId":"23001"},{"alias":"JNKBP-1","entrezGeneId":"23005"},{"alias":"JNKBP1","entrezGeneId":"23005"},{"alias":"NPHP20","entrezGeneId":"23005"},{"alias":"PLCL3","entrezGeneId":"23007"},{"alias":"slim","entrezGeneId":"23008"},{"alias":"NDR2","entrezGeneId":"23012"},{"alias":"HIAA0929","entrezGeneId":"23013"},{"alias":"MINT","entrezGeneId":"23013"},{"alias":"RBM15C","entrezGeneId":"23013"},{"alias":"SHARP","entrezGeneId":"23013"},{"alias":"FBX21","entrezGeneId":"23014"},{"alias":"GM88","entrezGeneId":"23015"},{"alias":"EAP1","entrezGeneId":"23016"},{"alias":"hRrp42p","entrezGeneId":"23016"},{"alias":"p8","entrezGeneId":"23016"},{"alias":"RRP42","entrezGeneId":"23016"},{"alias":"Rrp42p","entrezGeneId":"23016"},{"alias":"LFG","entrezGeneId":"23017"},{"alias":"LFG2","entrezGeneId":"23017"},{"alias":"NGP35","entrezGeneId":"23017"},{"alias":"NMP35","entrezGeneId":"23017"},{"alias":"TMBIM2","entrezGeneId":"23017"},{"alias":"AD-005","entrezGeneId":"23019"},{"alias":"CDC39","entrezGeneId":"23019"},{"alias":"NOT1","entrezGeneId":"23019"},{"alias":"NOT1H","entrezGeneId":"23019"},{"alias":"ASCC3L1","entrezGeneId":"23020"},{"alias":"BRR2","entrezGeneId":"23020"},{"alias":"HELIC2","entrezGeneId":"23020"},{"alias":"RP33","entrezGeneId":"23020"},{"alias":"U5-200KD","entrezGeneId":"23020"},{"alias":"CGI-151","entrezGeneId":"23022"},{"alias":"CGI151","entrezGeneId":"23022"},{"alias":"MYN","entrezGeneId":"23022"},{"alias":"PNCA1","entrezGeneId":"23022"},{"alias":"SIH002","entrezGeneId":"23022"},{"alias":"LNX3","entrezGeneId":"23024"},{"alias":"SEMACAP3","entrezGeneId":"23024"},{"alias":"SEMCAP3","entrezGeneId":"23024"},{"alias":"Munc13-1","entrezGeneId":"23025"},{"alias":"MYAP3","entrezGeneId":"23026"},{"alias":"Myo16b","entrezGeneId":"23026"},{"alias":"MYR8","entrezGeneId":"23026"},{"alias":"NYAP3","entrezGeneId":"23026"},{"alias":"PPP1R107","entrezGeneId":"23026"},{"alias":"AOF2","entrezGeneId":"23028"},{"alias":"BHC110","entrezGeneId":"23028"},{"alias":"CPRF","entrezGeneId":"23028"},{"alias":"KDM1","entrezGeneId":"23028"},{"alias":"LSD1","entrezGeneId":"23028"},{"alias":"JMJD2B","entrezGeneId":"23030"},{"alias":"TDRD14B","entrezGeneId":"23030"},{"alias":"VDU1","entrezGeneId":"23032"},{"alias":"dJ202D23.2","entrezGeneId":"23033"},{"alias":"DOP1","entrezGeneId":"23033"},{"alias":"KIAA1117","entrezGeneId":"23033"},{"alias":"SAMD4","entrezGeneId":"23034"},{"alias":"SMAUG","entrezGeneId":"23034"},{"alias":"SMAUG1","entrezGeneId":"23034"},{"alias":"SMG","entrezGeneId":"23034"},{"alias":"SMGA","entrezGeneId":"23034"},{"alias":"PHLPPL","entrezGeneId":"23035"},{"alias":"PPM3B","entrezGeneId":"23035"},{"alias":"bA393I2.3","entrezGeneId":"23036"},{"alias":"Nbla00365","entrezGeneId":"23036"},{"alias":"ZFP292","entrezGeneId":"23036"},{"alias":"Zn-15","entrezGeneId":"23036"},{"alias":"ZN-16","entrezGeneId":"23036"},{"alias":"AIPC","entrezGeneId":"23037"},{"alias":"PAPIN","entrezGeneId":"23037"},{"alias":"PDZK3","entrezGeneId":"23037"},{"alias":"PIN1","entrezGeneId":"23037"},{"alias":"ADP","entrezGeneId":"23038"},{"alias":"DCAF9","entrezGeneId":"23038"},{"alias":"EXP7","entrezGeneId":"23039"},{"alias":"RANBP16","entrezGeneId":"23039"},{"alias":"MRD39","entrezGeneId":"23040"},{"alias":"myT1-L","entrezGeneId":"23040"},{"alias":"NZF1","entrezGeneId":"23040"},{"alias":"ZC2H2C2","entrezGeneId":"23040"},{"alias":"ZC2HC4B","entrezGeneId":"23040"},{"alias":"LP8165","entrezGeneId":"23042"},{"alias":"MRT54","entrezGeneId":"23043"},{"alias":"APRIN","entrezGeneId":"23047"},{"alias":"AS3","entrezGeneId":"23047"},{"alias":"CG008","entrezGeneId":"23047"},{"alias":"FBP17","entrezGeneId":"23048"},{"alias":"61E3.4","entrezGeneId":"23049"},{"alias":"ATX","entrezGeneId":"23049"},{"alias":"LIP","entrezGeneId":"23049"},{"alias":"TIX1","entrezGeneId":"23051"},{"alias":"KIAA0913","entrezGeneId":"23053"},{"alias":"AIB3","entrezGeneId":"23054"},{"alias":"ASC2","entrezGeneId":"23054"},{"alias":"NRC","entrezGeneId":"23054"},{"alias":"PRIP","entrezGeneId":"23054"},{"alias":"RAP250","entrezGeneId":"23054"},{"alias":"TRBP","entrezGeneId":"23054"},{"alias":"C1orf15","entrezGeneId":"23057"},{"alias":"PNAT2","entrezGeneId":"23057"},{"alias":"CFAP22","entrezGeneId":"23059"},{"alias":"FAP22","entrezGeneId":"23059"},{"alias":"IFT38","entrezGeneId":"23059"},{"alias":"GRAMD9B","entrezGeneId":"23061"},{"alias":"VEAR","entrezGeneId":"23062"},{"alias":"FOE","entrezGeneId":"23063"},{"alias":"KIAA0261","entrezGeneId":"23063"},{"alias":"WAPAL","entrezGeneId":"23063"},{"alias":"ALS4","entrezGeneId":"23064"},{"alias":"AOA2","entrezGeneId":"23064"},{"alias":"bA479K20.2","entrezGeneId":"23064"},{"alias":"SCAR1","entrezGeneId":"23064"},{"alias":"Sen1","entrezGeneId":"23064"},{"alias":"CAVIPMR","entrezGeneId":"23065"},{"alias":"KIAA0090","entrezGeneId":"23065"},{"alias":"TIP120B","entrezGeneId":"23066"},{"alias":"Tp120b","entrezGeneId":"23066"},{"alias":"KMT2G","entrezGeneId":"23067"},{"alias":"Set1B","entrezGeneId":"23067"},{"alias":"FTSJD2","entrezGeneId":"23070"},{"alias":"hMTr1","entrezGeneId":"23070"},{"alias":"KIAA0082","entrezGeneId":"23070"},{"alias":"MTr1","entrezGeneId":"23070"},{"alias":"PDIA10","entrezGeneId":"23071"},{"alias":"TXNDC4","entrezGeneId":"23071"},{"alias":"NEDL1","entrezGeneId":"23072"},{"alias":"SHIP164","entrezGeneId":"23074"},{"alias":"HSPC321","entrezGeneId":"23075"},{"alias":"SWAP-70","entrezGeneId":"23075"},{"alias":"KIAA0179","entrezGeneId":"23076"},{"alias":"Nnp1","entrezGeneId":"23076"},{"alias":"NNP1L","entrezGeneId":"23076"},{"alias":"PPP1R136","entrezGeneId":"23076"},{"alias":"RRP1","entrezGeneId":"23076"},{"alias":"Myc-bp2","entrezGeneId":"23077"},{"alias":"PAM","entrezGeneId":"23077"},{"alias":"Phr","entrezGeneId":"23077"},{"alias":"KIAA0564","entrezGeneId":"23078"},{"alias":"KIAA0241","entrezGeneId":"23080"},{"alias":"GASC1","entrezGeneId":"23081"},{"alias":"JHDM3C","entrezGeneId":"23081"},{"alias":"JMJD2C","entrezGeneId":"23081"},{"alias":"TDRD14C","entrezGeneId":"23081"},{"alias":"PRC","entrezGeneId":"23082"},{"alias":"Cast2","entrezGeneId":"23085"},{"alias":"ELKS","entrezGeneId":"23085"},{"alias":"ERC-1","entrezGeneId":"23085"},{"alias":"RAB6IP2","entrezGeneId":"23085"},{"alias":"SLAC2-B","entrezGeneId":"23086"},{"alias":"SLAC2B","entrezGeneId":"23086"},{"alias":"HLS5","entrezGeneId":"23087"},{"alias":"MAIR","entrezGeneId":"23087"},{"alias":"EDR","entrezGeneId":"23089"},{"alias":"HB-1","entrezGeneId":"23089"},{"alias":"Mar2","entrezGeneId":"23089"},{"alias":"Mart2","entrezGeneId":"23089"},{"alias":"MEF3L","entrezGeneId":"23089"},{"alias":"RGAG3","entrezGeneId":"23089"},{"alias":"RTL2","entrezGeneId":"23089"},{"alias":"SIRH1","entrezGeneId":"23089"},{"alias":"Ebfaz","entrezGeneId":"23090"},{"alias":"hOAZ","entrezGeneId":"23090"},{"alias":"JBTS19","entrezGeneId":"23090"},{"alias":"NPHP14","entrezGeneId":"23090"},{"alias":"OAZ","entrezGeneId":"23090"},{"alias":"Roaz","entrezGeneId":"23090"},{"alias":"Zfp104","entrezGeneId":"23090"},{"alias":"ZFP423","entrezGeneId":"23090"},{"alias":"KIAA0853","entrezGeneId":"23091"},{"alias":"GRAF","entrezGeneId":"23092"},{"alias":"GRAF1","entrezGeneId":"23092"},{"alias":"OPHN1L","entrezGeneId":"23092"},{"alias":"OPHN1L1","entrezGeneId":"23092"},{"alias":"CORD19","entrezGeneId":"23093"},{"alias":"KIAA0998","entrezGeneId":"23093"},{"alias":"STAMP","entrezGeneId":"23093"},{"alias":"CTRCT45","entrezGeneId":"23094"},{"alias":"SPAL3","entrezGeneId":"23094"},{"alias":"SPAR3","entrezGeneId":"23094"},{"alias":"CMT2","entrezGeneId":"23095"},{"alias":"CMT2A","entrezGeneId":"23095"},{"alias":"CMT2A1","entrezGeneId":"23095"},{"alias":"HMSNII","entrezGeneId":"23095"},{"alias":"KLP","entrezGeneId":"23095"},{"alias":"NBLST1","entrezGeneId":"23095"},{"alias":"BRAG1","entrezGeneId":"23096"},{"alias":"IQ-ArfGEF","entrezGeneId":"23096"},{"alias":"MRX1","entrezGeneId":"23096"},{"alias":"MRX18","entrezGeneId":"23096"},{"alias":"MRX78","entrezGeneId":"23096"},{"alias":"bA346C16.3","entrezGeneId":"23097"},{"alias":"CDC2L6","entrezGeneId":"23097"},{"alias":"CDK11","entrezGeneId":"23097"},{"alias":"MyD88-5","entrezGeneId":"23098"},{"alias":"SAMD2","entrezGeneId":"23098"},{"alias":"SARM","entrezGeneId":"23098"},{"alias":"ZBTB22B","entrezGeneId":"23099"},{"alias":"ZNF-X","entrezGeneId":"23099"},{"alias":"ZNF297B","entrezGeneId":"23099"},{"alias":"ARHGEF22","entrezGeneId":"23101"},{"alias":"MRP-S27","entrezGeneId":"23107"},{"alias":"S27mt","entrezGeneId":"23107"},{"alias":"GARNL4","entrezGeneId":"23108"},{"alias":"RAP1GA3","entrezGeneId":"23108"},{"alias":"SPG20","entrezGeneId":"23111"},{"alias":"TAHCCP1","entrezGeneId":"23111"},{"alias":"H7AP1","entrezGeneId":"23113"},{"alias":"PARC","entrezGeneId":"23113"},{"alias":"NF","entrezGeneId":"23114"},{"alias":"NRCAML","entrezGeneId":"23114"},{"alias":"FAM179B","entrezGeneId":"23116"},{"alias":"KIAA0423","entrezGeneId":"23116"},{"alias":"KIAA0220L","entrezGeneId":"23117"},{"alias":"NPIP","entrezGeneId":"23117"},{"alias":"NPIPB","entrezGeneId":"23117"},{"alias":"NPIPB5","entrezGeneId":"23117"},{"alias":"NPIPL3","entrezGeneId":"23117"},{"alias":"CHTD2","entrezGeneId":"23118"},{"alias":"MAP3K7IP2","entrezGeneId":"23118"},{"alias":"TAB-2","entrezGeneId":"23118"},{"alias":"HRG22","entrezGeneId":"23119"},{"alias":"ZBTB30","entrezGeneId":"23119"},{"alias":"ZNF907","entrezGeneId":"23119"},{"alias":"ATPVB","entrezGeneId":"23120"},{"alias":"MRD37","entrezGeneId":"23126"},{"alias":"WHSUS","entrezGeneId":"23126"},{"alias":"ZNF280E","entrezGeneId":"23126"},{"alias":"ZNF635","entrezGeneId":"23126"},{"alias":"ZNF635m","entrezGeneId":"23126"},{"alias":"C1orf17","entrezGeneId":"23127"},{"alias":"ColGalT 2","entrezGeneId":"23127"},{"alias":"GLT25D2","entrezGeneId":"23127"},{"alias":"PLEXD1","entrezGeneId":"23129"},{"alias":"GPATC8","entrezGeneId":"23131"},{"alias":"KIAA0553","entrezGeneId":"23131"},{"alias":"ARIP4","entrezGeneId":"23132"},{"alias":"HSPC325","entrezGeneId":"23132"},{"alias":"SRISNF2L","entrezGeneId":"23132"},{"alias":"JHDM1F","entrezGeneId":"23133"},{"alias":"KDM7B","entrezGeneId":"23133"},{"alias":"MRXSSD","entrezGeneId":"23133"},{"alias":"ZNF422","entrezGeneId":"23133"},{"alias":"JMJD3","entrezGeneId":"23135"},{"alias":"4.1B","entrezGeneId":"23136"},{"alias":"DAL-1","entrezGeneId":"23136"},{"alias":"DAL1","entrezGeneId":"23136"},{"alias":"SMC5L1","entrezGeneId":"23137"},{"alias":"LZTS4","entrezGeneId":"23138"},{"alias":"MAST205","entrezGeneId":"23139"},{"alias":"MTSSK","entrezGeneId":"23139"},{"alias":"ZZZ4","entrezGeneId":"23140"},{"alias":"KIAA0692","entrezGeneId":"23141"},{"alias":"Lem4","entrezGeneId":"23141"},{"alias":"LEMD7","entrezGeneId":"23141"},{"alias":"MCPH16","entrezGeneId":"23141"},{"alias":"CHDC1","entrezGeneId":"23143"},{"alias":"NP81","entrezGeneId":"23143"},{"alias":"ZC3HDC3","entrezGeneId":"23144"},{"alias":"6030440G05Rik","entrezGeneId":"23150"},{"alias":"GRSP1","entrezGeneId":"23150"},{"alias":"dA59H18.1","entrezGeneId":"23151"},{"alias":"DIP","entrezGeneId":"23151"},{"alias":"dJ439F8.1","entrezGeneId":"23151"},{"alias":"MRD45","entrezGeneId":"23152"},{"alias":"MCLC","entrezGeneId":"23155"},{"alias":"SEP2","entrezGeneId":"23157"},{"alias":"SEPT2","entrezGeneId":"23157"},{"alias":"GRAMD9","entrezGeneId":"23158"},{"alias":"MDR1","entrezGeneId":"23158"},{"alias":"NET12","entrezGeneId":"23160"},{"alias":"UTP5","entrezGeneId":"23160"},{"alias":"RGS-PX1","entrezGeneId":"23161"},{"alias":"JIP-3","entrezGeneId":"23162"},{"alias":"JIP3","entrezGeneId":"23162"},{"alias":"JSAP1","entrezGeneId":"23162"},{"alias":"syd","entrezGeneId":"23162"},{"alias":"SYD2","entrezGeneId":"23162"},{"alias":"M-RIP","entrezGeneId":"23164"},{"alias":"MRIP","entrezGeneId":"23164"},{"alias":"p116Rip","entrezGeneId":"23164"},{"alias":"RHOIP3","entrezGeneId":"23164"},{"alias":"RIP3","entrezGeneId":"23164"},{"alias":"C7orf14","entrezGeneId":"23165"},{"alias":"NPHS13","entrezGeneId":"23165"},{"alias":"CLEVER-1","entrezGeneId":"23166"},{"alias":"FEEL-1","entrezGeneId":"23166"},{"alias":"FELE-1","entrezGeneId":"23166"},{"alias":"FEX1","entrezGeneId":"23166"},{"alias":"SCARH2","entrezGeneId":"23166"},{"alias":"STAB-1","entrezGeneId":"23166"},{"alias":"GTL7","entrezGeneId":"23168"},{"alias":"KIAA0252","entrezGeneId":"23168"},{"alias":"SHNKND","entrezGeneId":"23169"},{"alias":"UGTREL7","entrezGeneId":"23169"},{"alias":"dJ526I14.2","entrezGeneId":"23170"},{"alias":"GPD1-L","entrezGeneId":"23171"},{"alias":"ABRO1","entrezGeneId":"23172"},{"alias":"FAM175B","entrezGeneId":"23172"},{"alias":"KIAA0157","entrezGeneId":"23172"},{"alias":"MAP1A","entrezGeneId":"23173"},{"alias":"MetAP1A","entrezGeneId":"23173"},{"alias":"BDG-29","entrezGeneId":"23174"},{"alias":"BDG29","entrezGeneId":"23174"},{"alias":"PAP1","entrezGeneId":"23175"},{"alias":"SEP2","entrezGeneId":"23176"},{"alias":"KIAA0582","entrezGeneId":"23177"},{"alias":"PASKIN","entrezGeneId":"23178"},{"alias":"STK37","entrezGeneId":"23178"},{"alias":"RGL","entrezGeneId":"23179"},{"alias":"MIG2","entrezGeneId":"23180"},{"alias":"PIB10","entrezGeneId":"23180"},{"alias":"PIG9","entrezGeneId":"23180"},{"alias":"RAFTLIN","entrezGeneId":"23180"},{"alias":"C21orf106","entrezGeneId":"23181"},{"alias":"DIP2","entrezGeneId":"23181"},{"alias":"BOCA","entrezGeneId":"23184"},{"alias":"MESDC2","entrezGeneId":"23184"},{"alias":"KIAA0217","entrezGeneId":"23185"},{"alias":"LARP5","entrezGeneId":"23185"},{"alias":"COREST","entrezGeneId":"23186"},{"alias":"RCOR","entrezGeneId":"23186"},{"alias":"LL5A","entrezGeneId":"23187"},{"alias":"ANKRD15","entrezGeneId":"23189"},{"alias":"CPSQ2","entrezGeneId":"23189"},{"alias":"KANK","entrezGeneId":"23189"},{"alias":"erasin","entrezGeneId":"23190"},{"alias":"UBXD2","entrezGeneId":"23190"},{"alias":"UBXDC1","entrezGeneId":"23190"},{"alias":"P140SRA-1","entrezGeneId":"23191"},{"alias":"SHYC","entrezGeneId":"23191"},{"alias":"SRA-1","entrezGeneId":"23191"},{"alias":"SRA1","entrezGeneId":"23191"},{"alias":"APG4B","entrezGeneId":"23192"},{"alias":"AUTL1","entrezGeneId":"23192"},{"alias":"G2AN","entrezGeneId":"23193"},{"alias":"GIIA","entrezGeneId":"23193"},{"alias":"GLUII","entrezGeneId":"23193"},{"alias":"PKD3","entrezGeneId":"23193"},{"alias":"FBL6","entrezGeneId":"23194"},{"alias":"FBL7","entrezGeneId":"23194"},{"alias":"Rea1","entrezGeneId":"23195"},{"alias":"C9orf10","entrezGeneId":"23196"},{"alias":"HBVPTPAP","entrezGeneId":"23196"},{"alias":"OSSA","entrezGeneId":"23196"},{"alias":"ETEA","entrezGeneId":"23197"},{"alias":"UBXD8","entrezGeneId":"23197"},{"alias":"UBXN3B","entrezGeneId":"23197"},{"alias":"PA200","entrezGeneId":"23198"},{"alias":"CRHSP24","entrezGeneId":"23199"},{"alias":"KIAA0182","entrezGeneId":"23199"},{"alias":"ATPIF","entrezGeneId":"23200"},{"alias":"ATPIR","entrezGeneId":"23200"},{"alias":"KIAA0280","entrezGeneId":"23201"},{"alias":"TCRP1","entrezGeneId":"23201"},{"alias":"Alpha-MPP","entrezGeneId":"23203"},{"alias":"CLA1","entrezGeneId":"23203"},{"alias":"CPD3","entrezGeneId":"23203"},{"alias":"INPP5E","entrezGeneId":"23203"},{"alias":"P-55","entrezGeneId":"23203"},{"alias":"SCAR2","entrezGeneId":"23203"},{"alias":"AIP1","entrezGeneId":"23204"},{"alias":"ARL6IP","entrezGeneId":"23204"},{"alias":"ARMER","entrezGeneId":"23204"},{"alias":"SPG61","entrezGeneId":"23204"},{"alias":"BG","entrezGeneId":"23205"},{"alias":"BG1","entrezGeneId":"23205"},{"alias":"BGM","entrezGeneId":"23205"},{"alias":"GR-LACS","entrezGeneId":"23205"},{"alias":"LPD","entrezGeneId":"23205"},{"alias":"SKIP","entrezGeneId":"23207"},{"alias":"SYT12","entrezGeneId":"23208"},{"alias":"sytXI","entrezGeneId":"23208"},{"alias":"LVM","entrezGeneId":"23209"},{"alias":"MLC","entrezGeneId":"23209"},{"alias":"VL","entrezGeneId":"23209"},{"alias":"PSR","entrezGeneId":"23210"},{"alias":"PTDSR","entrezGeneId":"23210"},{"alias":"PTDSR1","entrezGeneId":"23210"},{"alias":"C19orf7","entrezGeneId":"23211"},{"alias":"SULF-1","entrezGeneId":"23213"},{"alias":"EXP6","entrezGeneId":"23214"},{"alias":"RANBP20","entrezGeneId":"23214"},{"alias":"BAT2-iso","entrezGeneId":"23215"},{"alias":"BAT2D1","entrezGeneId":"23215"},{"alias":"BAT2L2","entrezGeneId":"23215"},{"alias":"XTP2","entrezGeneId":"23215"},{"alias":"TBC","entrezGeneId":"23216"},{"alias":"TBC1","entrezGeneId":"23216"},{"alias":"KIAA1086","entrezGeneId":"23217"},{"alias":"BDPLT4","entrezGeneId":"23218"},{"alias":"GPS","entrezGeneId":"23218"},{"alias":"CENP-30","entrezGeneId":"23219"},{"alias":"Fbx28","entrezGeneId":"23219"},{"alias":"RNF155","entrezGeneId":"23220"},{"alias":"DBC2","entrezGeneId":"23221"},{"alias":"KIAA0690","entrezGeneId":"23223"},{"alias":"EDMD5","entrezGeneId":"23224"},{"alias":"KASH2","entrezGeneId":"23224"},{"alias":"Nesp2","entrezGeneId":"23224"},{"alias":"Nesprin-2","entrezGeneId":"23224"},{"alias":"NUA","entrezGeneId":"23224"},{"alias":"NUANCE","entrezGeneId":"23224"},{"alias":"SYNE-2","entrezGeneId":"23224"},{"alias":"TROPH","entrezGeneId":"23224"},{"alias":"GP210","entrezGeneId":"23225"},{"alias":"POM210","entrezGeneId":"23225"},{"alias":"PLCE2","entrezGeneId":"23228"},{"alias":"COLLYBISTIN","entrezGeneId":"23229"},{"alias":"EIEE8","entrezGeneId":"23229"},{"alias":"HPEM-2","entrezGeneId":"23229"},{"alias":"PEM-2","entrezGeneId":"23229"},{"alias":"PEM2","entrezGeneId":"23229"},{"alias":"CHAC","entrezGeneId":"23230"},{"alias":"CHOREIN","entrezGeneId":"23230"},{"alias":"Sel-1L3","entrezGeneId":"23231"},{"alias":"SEC15B","entrezGeneId":"23233"},{"alias":"SEC15L2","entrezGeneId":"23233"},{"alias":"HDJC9","entrezGeneId":"23234"},{"alias":"JDD1","entrezGeneId":"23234"},{"alias":"SB73","entrezGeneId":"23234"},{"alias":"LOH11CR1I","entrezGeneId":"23235"},{"alias":"QIK","entrezGeneId":"23235"},{"alias":"SIK-2","entrezGeneId":"23235"},{"alias":"SNF1LK2","entrezGeneId":"23235"},{"alias":"EIEE12","entrezGeneId":"23236"},{"alias":"PI-PLC","entrezGeneId":"23236"},{"alias":"PLC-154","entrezGeneId":"23236"},{"alias":"PLC-beta-1","entrezGeneId":"23236"},{"alias":"PLC-I","entrezGeneId":"23236"},{"alias":"PLC154","entrezGeneId":"23236"},{"alias":"PLCB1A","entrezGeneId":"23236"},{"alias":"PLCB1B","entrezGeneId":"23236"},{"alias":"Arg3.1","entrezGeneId":"23237"},{"alias":"PHLPP","entrezGeneId":"23239"},{"alias":"PLEKHE1","entrezGeneId":"23239"},{"alias":"PPM3A","entrezGeneId":"23239"},{"alias":"SCOP","entrezGeneId":"23239"},{"alias":"KIAA0922","entrezGeneId":"23240"},{"alias":"PACS-2","entrezGeneId":"23241"},{"alias":"PACS1L","entrezGeneId":"23241"},{"alias":"PITK","entrezGeneId":"23243"},{"alias":"PPP1R65","entrezGeneId":"23243"},{"alias":"PIG54","entrezGeneId":"23244"},{"alias":"SCC-112","entrezGeneId":"23244"},{"alias":"SCC112","entrezGeneId":"23244"},{"alias":"bA67K19.1","entrezGeneId":"23245"},{"alias":"JBTS26","entrezGeneId":"23247"},{"alias":"HSPC099","entrezGeneId":"23248"},{"alias":"KIAA0460","entrezGeneId":"23248"},{"alias":"ATPIH","entrezGeneId":"23250"},{"alias":"ATPIS","entrezGeneId":"23250"},{"alias":"MINAR1","entrezGeneId":"23251"},{"alias":"DUBA4","entrezGeneId":"23252"},{"alias":"ANCO-2","entrezGeneId":"23253"},{"alias":"ANCO1","entrezGeneId":"23253"},{"alias":"GAC-1","entrezGeneId":"23253"},{"alias":"Nbla00144","entrezGeneId":"23253"},{"alias":"KAZ","entrezGeneId":"23254"},{"alias":"CCDC165","entrezGeneId":"23255"},{"alias":"KIAA0802","entrezGeneId":"23255"},{"alias":"SOGA2","entrezGeneId":"23255"},{"alias":"C14orf163","entrezGeneId":"23256"},{"alias":"RA410","entrezGeneId":"23256"},{"alias":"SLY1","entrezGeneId":"23256"},{"alias":"SLY1P","entrezGeneId":"23256"},{"alias":"STXBP1L2","entrezGeneId":"23256"},{"alias":"EIEE49","entrezGeneId":"23258"},{"alias":"RAB6IP1","entrezGeneId":"23258"},{"alias":"iPLA(1)gamma","entrezGeneId":"23259"},{"alias":"SAMWD1","entrezGeneId":"23259"},{"alias":"SPG54","entrezGeneId":"23259"},{"alias":"CANPMR","entrezGeneId":"23261"},{"alias":"CFAP160","entrezGeneId":"23262"},{"alias":"HISPPD1","entrezGeneId":"23262"},{"alias":"IP7K2","entrezGeneId":"23262"},{"alias":"VIP2","entrezGeneId":"23262"},{"alias":"ARHGEF14","entrezGeneId":"23263"},{"alias":"DBS","entrezGeneId":"23263"},{"alias":"OST","entrezGeneId":"23263"},{"alias":"RoXaN","entrezGeneId":"23264"},{"alias":"2-5-3p","entrezGeneId":"23265"},{"alias":"BLOM4","entrezGeneId":"23265"},{"alias":"EX070","entrezGeneId":"23265"},{"alias":"EXO70","entrezGeneId":"23265"},{"alias":"Exo70p","entrezGeneId":"23265"},{"alias":"EXOC1","entrezGeneId":"23265"},{"alias":"YJL085W","entrezGeneId":"23265"},{"alias":"CIRL2","entrezGeneId":"23266"},{"alias":"CL2","entrezGeneId":"23266"},{"alias":"LEC1","entrezGeneId":"23266"},{"alias":"LPHH1","entrezGeneId":"23266"},{"alias":"LPHN2","entrezGeneId":"23266"},{"alias":"ARHGEF36","entrezGeneId":"23268"},{"alias":"TUBA","entrezGeneId":"23268"},{"alias":"MAD5","entrezGeneId":"23269"},{"alias":"MXD5","entrezGeneId":"23269"},{"alias":"dJ486I3.2","entrezGeneId":"23270"},{"alias":"CAMSAP1L1","entrezGeneId":"23271"},{"alias":"C3orf63","entrezGeneId":"23272"},{"alias":"RAP140","entrezGeneId":"23272"},{"alias":"se89-1","entrezGeneId":"23272"},{"alias":"TASOR","entrezGeneId":"23272"},{"alias":"Gop-1","entrezGeneId":"23274"},{"alias":"KIAA0350","entrezGeneId":"23274"},{"alias":"C21orf80","entrezGeneId":"23275"},{"alias":"FUT13","entrezGeneId":"23275"},{"alias":"CLU1","entrezGeneId":"23277"},{"alias":"KIAA0664","entrezGeneId":"23277"},{"alias":"CAZIP","entrezGeneId":"23281"},{"alias":"ICIS","entrezGeneId":"23281"},{"alias":"KIAA0774","entrezGeneId":"23281"},{"alias":"TIP150","entrezGeneId":"23281"},{"alias":"CstF-64T","entrezGeneId":"23283"},{"alias":"CIRL3","entrezGeneId":"23284"},{"alias":"CL3","entrezGeneId":"23284"},{"alias":"LEC3","entrezGeneId":"23284"},{"alias":"LPHN3","entrezGeneId":"23284"},{"alias":"HBEBP3","entrezGeneId":"23286"},{"alias":"HBEBP36","entrezGeneId":"23286"},{"alias":"KIBRA","entrezGeneId":"23286"},{"alias":"MEMRYQTL","entrezGeneId":"23286"},{"alias":"PPP1R168","entrezGeneId":"23286"},{"alias":"CCP1","entrezGeneId":"23287"},{"alias":"NNA1","entrezGeneId":"23287"},{"alias":"1700028P05Rik","entrezGeneId":"23288"},{"alias":"PAPA7","entrezGeneId":"23288"},{"alias":"BTRC2","entrezGeneId":"23291"},{"alias":"BTRCP2","entrezGeneId":"23291"},{"alias":"Fbw11","entrezGeneId":"23291"},{"alias":"FBW1B","entrezGeneId":"23291"},{"alias":"FBXW1B","entrezGeneId":"23291"},{"alias":"Hos","entrezGeneId":"23291"},{"alias":"C17orf31","entrezGeneId":"23293"},{"alias":"EST1A","entrezGeneId":"23293"},{"alias":"hSMG5/7a","entrezGeneId":"23293"},{"alias":"SMG-6","entrezGeneId":"23293"},{"alias":"ANKS1","entrezGeneId":"23294"},{"alias":"RNF156","entrezGeneId":"23295"},{"alias":"bA526D8.1","entrezGeneId":"23299"},{"alias":"SMALED2","entrezGeneId":"23299"},{"alias":"ASCIZ","entrezGeneId":"23300"},{"alias":"ZNF822","entrezGeneId":"23300"},{"alias":"HPC12","entrezGeneId":"23301"},{"alias":"NACSIN","entrezGeneId":"23301"},{"alias":"GAKIN","entrezGeneId":"23303"},{"alias":"bA49A4.1","entrezGeneId":"23304"},{"alias":"C6orf133","entrezGeneId":"23304"},{"alias":"dJ242G1.1","entrezGeneId":"23304"},{"alias":"dJ392M17.3","entrezGeneId":"23304"},{"alias":"ACS2","entrezGeneId":"23305"},{"alias":"FACL6","entrezGeneId":"23305"},{"alias":"LACS 6","entrezGeneId":"23305"},{"alias":"LACS2","entrezGeneId":"23305"},{"alias":"LACS5","entrezGeneId":"23305"},{"alias":"TMEM194","entrezGeneId":"23306"},{"alias":"TMEM194A","entrezGeneId":"23306"},{"alias":"FKBP133","entrezGeneId":"23307"},{"alias":"KIAA0674","entrezGeneId":"23307"},{"alias":"PPP1R76","entrezGeneId":"23307"},{"alias":"B7-H2","entrezGeneId":"23308"},{"alias":"B7H2","entrezGeneId":"23308"},{"alias":"B7RP-1","entrezGeneId":"23308"},{"alias":"B7RP1","entrezGeneId":"23308"},{"alias":"CD275","entrezGeneId":"23308"},{"alias":"GL50","entrezGeneId":"23308"},{"alias":"ICOS-L","entrezGeneId":"23308"},{"alias":"ICOSL","entrezGeneId":"23308"},{"alias":"LICOS","entrezGeneId":"23308"},{"alias":"CAP-D3","entrezGeneId":"23310"},{"alias":"CAPD3","entrezGeneId":"23310"},{"alias":"hCAP-D3","entrezGeneId":"23310"},{"alias":"hcp-6","entrezGeneId":"23310"},{"alias":"hHCP-6","entrezGeneId":"23310"},{"alias":"DFNA71","entrezGeneId":"23312"},{"alias":"PEPNS","entrezGeneId":"23312"},{"alias":"RC3","entrezGeneId":"23312"},{"alias":"C22orf9","entrezGeneId":"23313"},{"alias":"LSC3","entrezGeneId":"23313"},{"alias":"GLSS","entrezGeneId":"23314"},{"alias":"NHE-8","entrezGeneId":"23315"},{"alias":"NHE8","entrezGeneId":"23315"},{"alias":"CDP2","entrezGeneId":"23316"},{"alias":"CUTL2","entrezGeneId":"23316"},{"alias":"PARK21","entrezGeneId":"23317"},{"alias":"RME8","entrezGeneId":"23317"},{"alias":"PAPD3","entrezGeneId":"23318"},{"alias":"TUT4","entrezGeneId":"23318"},{"alias":"CMT2R","entrezGeneId":"23321"},{"alias":"RNF86","entrezGeneId":"23321"},{"alias":"CORS3","entrezGeneId":"23322"},{"alias":"FTM","entrezGeneId":"23322"},{"alias":"JBTS7","entrezGeneId":"23322"},{"alias":"MKS5","entrezGeneId":"23322"},{"alias":"NPHP8","entrezGeneId":"23322"},{"alias":"PPP1R134","entrezGeneId":"23322"},{"alias":"KIAA1033","entrezGeneId":"23325"},{"alias":"MRT43","entrezGeneId":"23325"},{"alias":"SWIP","entrezGeneId":"23325"},{"alias":"USP3L","entrezGeneId":"23326"},{"alias":"hNEDD4-2","entrezGeneId":"23327"},{"alias":"NEDD4-2","entrezGeneId":"23327"},{"alias":"NEDD4.2","entrezGeneId":"23327"},{"alias":"PVNH7","entrezGeneId":"23327"},{"alias":"RSP5","entrezGeneId":"23327"},{"alias":"dJ323M4.1","entrezGeneId":"23328"},{"alias":"SH3D6A","entrezGeneId":"23328"},{"alias":"TPRBK","entrezGeneId":"23331"},{"alias":"MAST1","entrezGeneId":"23332"},{"alias":"C1orf84","entrezGeneId":"23334"},{"alias":"EIEE18","entrezGeneId":"23334"},{"alias":"KIAA0467","entrezGeneId":"23334"},{"alias":"SZT2A","entrezGeneId":"23334"},{"alias":"SZT2B","entrezGeneId":"23334"},{"alias":"TRAG","entrezGeneId":"23335"},{"alias":"DMN","entrezGeneId":"23336"},{"alias":"SYN","entrezGeneId":"23336"},{"alias":"JADE-2","entrezGeneId":"23338"},{"alias":"PHF15","entrezGeneId":"23338"},{"alias":"hVam6p","entrezGeneId":"23339"},{"alias":"TLP","entrezGeneId":"23339"},{"alias":"VAM6","entrezGeneId":"23339"},{"alias":"FAM62A","entrezGeneId":"23344"},{"alias":"MBC2","entrezGeneId":"23344"},{"alias":"8B","entrezGeneId":"23345"},{"alias":"ARCA1","entrezGeneId":"23345"},{"alias":"C6orf98","entrezGeneId":"23345"},{"alias":"CPG2","entrezGeneId":"23345"},{"alias":"dJ45H2.2","entrezGeneId":"23345"},{"alias":"EDMD4","entrezGeneId":"23345"},{"alias":"KASH1","entrezGeneId":"23345"},{"alias":"MYNE1","entrezGeneId":"23345"},{"alias":"Nesp1","entrezGeneId":"23345"},{"alias":"SCAR8","entrezGeneId":"23345"},{"alias":"BAMS","entrezGeneId":"23347"},{"alias":"FSHD2","entrezGeneId":"23347"},{"alias":"ZIZ1","entrezGeneId":"23348"},{"alias":"ZIZIMIN1","entrezGeneId":"23348"},{"alias":"fSAPa","entrezGeneId":"23350"},{"alias":"SR140","entrezGeneId":"23350"},{"alias":"KIAA0323","entrezGeneId":"23351"},{"alias":"p600","entrezGeneId":"23352"},{"alias":"RBAF600","entrezGeneId":"23352"},{"alias":"ZUBR1","entrezGeneId":"23352"},{"alias":"UNC84A","entrezGeneId":"23353"},{"alias":"dgt5","entrezGeneId":"23354"},{"alias":"KIAA0841","entrezGeneId":"23354"},{"alias":"KIAA0804","entrezGeneId":"23355"},{"alias":"Ccr4e","entrezGeneId":"23357"},{"alias":"KIAA0759","entrezGeneId":"23357"},{"alias":"TMEM228","entrezGeneId":"23359"},{"alias":"FBP30","entrezGeneId":"23360"},{"alias":"ZNF","entrezGeneId":"23361"},{"alias":"ZNF65","entrezGeneId":"23361"},{"alias":"EFA6D","entrezGeneId":"23362"},{"alias":"EFA6R","entrezGeneId":"23362"},{"alias":"HCA67","entrezGeneId":"23362"},{"alias":"LARG","entrezGeneId":"23365"},{"alias":"PRO2792","entrezGeneId":"23365"},{"alias":"LARP","entrezGeneId":"23367"},{"alias":"ASPP1","entrezGeneId":"23368"},{"alias":"p53BP2-like","entrezGeneId":"23368"},{"alias":"p85","entrezGeneId":"23368"},{"alias":"PUMH2","entrezGeneId":"23369"},{"alias":"PUML2","entrezGeneId":"23369"},{"alias":"P114-RhoGEF","entrezGeneId":"23370"},{"alias":"RP78","entrezGeneId":"23370"},{"alias":"C1-TEN","entrezGeneId":"23371"},{"alias":"C1TEN","entrezGeneId":"23371"},{"alias":"TENC1","entrezGeneId":"23371"},{"alias":"MECT1","entrezGeneId":"23373"},{"alias":"TORC-1","entrezGeneId":"23373"},{"alias":"TORC1","entrezGeneId":"23373"},{"alias":"WAMTP1","entrezGeneId":"23373"},{"alias":"KIAA0776","entrezGeneId":"23376"},{"alias":"Maxer","entrezGeneId":"23376"},{"alias":"NLBP","entrezGeneId":"23376"},{"alias":"RCAD","entrezGeneId":"23376"},{"alias":"KIAA0409","entrezGeneId":"23378"},{"alias":"NML","entrezGeneId":"23378"},{"alias":"KIAA0947","entrezGeneId":"23379"},{"alias":"ARHGAP34","entrezGeneId":"23380"},{"alias":"FNBP2","entrezGeneId":"23380"},{"alias":"SRGAP2A","entrezGeneId":"23380"},{"alias":"SRGAP3","entrezGeneId":"23380"},{"alias":"EST1B","entrezGeneId":"23381"},{"alias":"LPTS-RP1","entrezGeneId":"23381"},{"alias":"LPTSRP1","entrezGeneId":"23381"},{"alias":"SMG-5","entrezGeneId":"23381"},{"alias":"ADOHCYASE3","entrezGeneId":"23382"},{"alias":"IRBIT2","entrezGeneId":"23382"},{"alias":"KIAA0892","entrezGeneId":"23383"},{"alias":"mau-2","entrezGeneId":"23383"},{"alias":"MAU2L","entrezGeneId":"23383"},{"alias":"SCC4","entrezGeneId":"23383"},{"alias":"CYTSA","entrezGeneId":"23384"},{"alias":"GBBB2","entrezGeneId":"23384"},{"alias":"OBLFC1","entrezGeneId":"23384"},{"alias":"ATAG1874","entrezGeneId":"23385"},{"alias":"NudCL","entrezGeneId":"23386"},{"alias":"L19","entrezGeneId":"23387"},{"alias":"QSK","entrezGeneId":"23387"},{"alias":"SIK-3","entrezGeneId":"23387"},{"alias":"MRFACD","entrezGeneId":"23389"},{"alias":"PROSIT240","entrezGeneId":"23389"},{"alias":"THRAP2","entrezGeneId":"23389"},{"alias":"TRAP240L","entrezGeneId":"23389"},{"alias":"DHHC-17","entrezGeneId":"23390"},{"alias":"HIP14","entrezGeneId":"23390"},{"alias":"HIP3","entrezGeneId":"23390"},{"alias":"HSPC294","entrezGeneId":"23390"},{"alias":"HYPH","entrezGeneId":"23390"},{"alias":"ECM29","entrezGeneId":"23392"},{"alias":"KIAA0368","entrezGeneId":"23392"},{"alias":"ADNP1","entrezGeneId":"23394"},{"alias":"HVDAS","entrezGeneId":"23394"},{"alias":"MRD28","entrezGeneId":"23394"},{"alias":"HLASA","entrezGeneId":"23395"},{"alias":"LEURS","entrezGeneId":"23395"},{"alias":"mtLeuRS","entrezGeneId":"23395"},{"alias":"PRLTS4","entrezGeneId":"23395"},{"alias":"LCCS3","entrezGeneId":"23396"},{"alias":"PIP5K-GAMMA","entrezGeneId":"23396"},{"alias":"PIP5K1-gamma","entrezGeneId":"23396"},{"alias":"PIP5Kgamma","entrezGeneId":"23396"},{"alias":"BRRN1","entrezGeneId":"23397"},{"alias":"CAP-H","entrezGeneId":"23397"},{"alias":"DULLARD","entrezGeneId":"23399"},{"alias":"HSA011916","entrezGeneId":"23399"},{"alias":"NET56","entrezGeneId":"23399"},{"alias":"CLN12","entrezGeneId":"23400"},{"alias":"HSA9947","entrezGeneId":"23400"},{"alias":"KRPPD","entrezGeneId":"23400"},{"alias":"PARK9","entrezGeneId":"23400"},{"alias":"SPG78","entrezGeneId":"23400"},{"alias":"FRAT-2","entrezGeneId":"23401"},{"alias":"20D7-FC4","entrezGeneId":"23403"},{"alias":"Fbx46","entrezGeneId":"23403"},{"alias":"FBXO34L","entrezGeneId":"23403"},{"alias":"hRrp4p","entrezGeneId":"23404"},{"alias":"p7","entrezGeneId":"23404"},{"alias":"RRP4","entrezGeneId":"23404"},{"alias":"Rrp4p","entrezGeneId":"23404"},{"alias":"SHRF","entrezGeneId":"23404"},{"alias":"DCR1","entrezGeneId":"23405"},{"alias":"Dicer","entrezGeneId":"23405"},{"alias":"Dicer1e","entrezGeneId":"23405"},{"alias":"HERNA","entrezGeneId":"23405"},{"alias":"K12H4.8-LIKE","entrezGeneId":"23405"},{"alias":"MNG1","entrezGeneId":"23405"},{"alias":"RMSE2","entrezGeneId":"23405"},{"alias":"CLP","entrezGeneId":"23406"},{"alias":"SIR2L5","entrezGeneId":"23408"},{"alias":"SIR2L4","entrezGeneId":"23409"},{"alias":"SIR2L3","entrezGeneId":"23410"},{"alias":"SIR2","entrezGeneId":"23411"},{"alias":"SIR2alpha","entrezGeneId":"23411"},{"alias":"SIR2L1","entrezGeneId":"23411"},{"alias":"BUP","entrezGeneId":"23412"},{"alias":"C10orf8","entrezGeneId":"23412"},{"alias":"FLUP","entrezGeneId":"23413"},{"alias":"FREQ","entrezGeneId":"23413"},{"alias":"DIH3","entrezGeneId":"23414"},{"alias":"FOG2","entrezGeneId":"23414"},{"alias":"hFOG-2","entrezGeneId":"23414"},{"alias":"SRXY9","entrezGeneId":"23414"},{"alias":"ZC2HC11B","entrezGeneId":"23414"},{"alias":"ZNF89B","entrezGeneId":"23414"},{"alias":"BEC2","entrezGeneId":"23415"},{"alias":"ELK1","entrezGeneId":"23415"},{"alias":"Kv12.3","entrezGeneId":"23415"},{"alias":"BEC1","entrezGeneId":"23416"},{"alias":"ELK2","entrezGeneId":"23416"},{"alias":"Kv12.2","entrezGeneId":"23416"},{"alias":"MCD","entrezGeneId":"23417"},{"alias":"LCA8","entrezGeneId":"23418"},{"alias":"RP12","entrezGeneId":"23418"},{"alias":"Nomo","entrezGeneId":"23420"},{"alias":"PM5","entrezGeneId":"23420"},{"alias":"CENP-R","entrezGeneId":"23421"},{"alias":"CENPR","entrezGeneId":"23421"},{"alias":"HSU37139","entrezGeneId":"23421"},{"alias":"NRIF3","entrezGeneId":"23421"},{"alias":"TAP20","entrezGeneId":"23421"},{"alias":"C15orf22","entrezGeneId":"23423"},{"alias":"P24B","entrezGeneId":"23423"},{"alias":"p24g4","entrezGeneId":"23423"},{"alias":"p26","entrezGeneId":"23423"},{"alias":"CATC4","entrezGeneId":"23424"},{"alias":"PCTAIRE2BP","entrezGeneId":"23424"},{"alias":"TRAP","entrezGeneId":"23424"},{"alias":"FRASRS3","entrezGeneId":"23426"},{"alias":"GRIP","entrezGeneId":"23426"},{"alias":"LAT2","entrezGeneId":"23428"},{"alias":"LPI-PC1","entrezGeneId":"23428"},{"alias":"AAP1","entrezGeneId":"23429"},{"alias":"APAP-1","entrezGeneId":"23429"},{"alias":"DEDAF","entrezGeneId":"23429"},{"alias":"YEAF1","entrezGeneId":"23429"},{"alias":"MCP7-LIKE","entrezGeneId":"23430"},{"alias":"MCP7L1","entrezGeneId":"23430"},{"alias":"MMCP-7L","entrezGeneId":"23430"},{"alias":"CPSQ4","entrezGeneId":"23431"},{"alias":"SPG51","entrezGeneId":"23431"},{"alias":"STUT1","entrezGeneId":"23431"},{"alias":"RE2","entrezGeneId":"23432"},{"alias":"ARHQ","entrezGeneId":"23433"},{"alias":"HEL-S-42","entrezGeneId":"23433"},{"alias":"RASL7A","entrezGeneId":"23433"},{"alias":"TC10","entrezGeneId":"23433"},{"alias":"TC10A","entrezGeneId":"23433"},{"alias":"C3orf27","entrezGeneId":"23434"},{"alias":"GR6","entrezGeneId":"23434"},{"alias":"ALS10","entrezGeneId":"23435"},{"alias":"TDP-43","entrezGeneId":"23435"},{"alias":"CBPP","entrezGeneId":"23436"},{"alias":"ELA3B","entrezGeneId":"23436"},{"alias":"tRNA-SER","entrezGeneId":"23437"},{"alias":"TRNAS2","entrezGeneId":"23437"},{"alias":"TRNS","entrezGeneId":"23437"},{"alias":"TRS-AGA2-4","entrezGeneId":"23437"},{"alias":"TRS2","entrezGeneId":"23437"},{"alias":"HARSL","entrezGeneId":"23438"},{"alias":"HARSR","entrezGeneId":"23438"},{"alias":"HO3","entrezGeneId":"23438"},{"alias":"PRLTS2","entrezGeneId":"23438"},{"alias":"AMRS","entrezGeneId":"23443"},{"alias":"CD92","entrezGeneId":"23446"},{"alias":"CDW92","entrezGeneId":"23446"},{"alias":"CHTL1","entrezGeneId":"23446"},{"alias":"CTL1","entrezGeneId":"23446"},{"alias":"RSE1","entrezGeneId":"23450"},{"alias":"SAP130","entrezGeneId":"23450"},{"alias":"SF3b130","entrezGeneId":"23450"},{"alias":"STAF130","entrezGeneId":"23450"},{"alias":"Hsh155","entrezGeneId":"23451"},{"alias":"MDS","entrezGeneId":"23451"},{"alias":"PRP10","entrezGeneId":"23451"},{"alias":"PRPF10","entrezGeneId":"23451"},{"alias":"SAP155","entrezGeneId":"23451"},{"alias":"SF3b155","entrezGeneId":"23451"},{"alias":"ARP2","entrezGeneId":"23452"},{"alias":"HARP","entrezGeneId":"23452"},{"alias":"EST20237","entrezGeneId":"23456"},{"alias":"M-ABC2","entrezGeneId":"23456"},{"alias":"MTABC2","entrezGeneId":"23456"},{"alias":"EST122234","entrezGeneId":"23457"},{"alias":"TAPL","entrezGeneId":"23457"},{"alias":"EST155051","entrezGeneId":"23460"},{"alias":"ABC13","entrezGeneId":"23461"},{"alias":"EST90625","entrezGeneId":"23461"},{"alias":"BHLHb31","entrezGeneId":"23462"},{"alias":"CHF2","entrezGeneId":"23462"},{"alias":"HERP2","entrezGeneId":"23462"},{"alias":"HESR1","entrezGeneId":"23462"},{"alias":"hHRT1","entrezGeneId":"23462"},{"alias":"HRT-1","entrezGeneId":"23462"},{"alias":"OAF1","entrezGeneId":"23462"},{"alias":"HSTE14","entrezGeneId":"23463"},{"alias":"MST098","entrezGeneId":"23463"},{"alias":"MSTP098","entrezGeneId":"23463"},{"alias":"PCCMT","entrezGeneId":"23463"},{"alias":"PCMT","entrezGeneId":"23463"},{"alias":"PPMT","entrezGeneId":"23463"},{"alias":"KBL","entrezGeneId":"23464"},{"alias":"NPR","entrezGeneId":"23467"},{"alias":"HEL25","entrezGeneId":"23468"},{"alias":"HP1","entrezGeneId":"23468"},{"alias":"HP1A","entrezGeneId":"23468"},{"alias":"PNAS8","entrezGeneId":"23471"},{"alias":"TRAM","entrezGeneId":"23471"},{"alias":"TRAMP","entrezGeneId":"23471"},{"alias":"CALPAIN7","entrezGeneId":"23473"},{"alias":"PALBH","entrezGeneId":"23473"},{"alias":"HSCO","entrezGeneId":"23474"},{"alias":"YF13H12","entrezGeneId":"23474"},{"alias":"HEL-S-90n","entrezGeneId":"23475"},{"alias":"QPRTase","entrezGeneId":"23475"},{"alias":"CAP","entrezGeneId":"23476"},{"alias":"HUNK1","entrezGeneId":"23476"},{"alias":"HUNKI","entrezGeneId":"23476"},{"alias":"MCAP","entrezGeneId":"23476"},{"alias":"1810012E07Rik","entrezGeneId":"23478"},{"alias":"SEC11L1","entrezGeneId":"23478"},{"alias":"sid2895","entrezGeneId":"23478"},{"alias":"SPC18","entrezGeneId":"23478"},{"alias":"SPCS4A","entrezGeneId":"23478"},{"alias":"2310020H20Rik","entrezGeneId":"23479"},{"alias":"HML","entrezGeneId":"23479"},{"alias":"hnifU","entrezGeneId":"23479"},{"alias":"ISU2","entrezGeneId":"23479"},{"alias":"NIFU","entrezGeneId":"23479"},{"alias":"NIFUN","entrezGeneId":"23479"},{"alias":"SSS1","entrezGeneId":"23480"},{"alias":"NOP7","entrezGeneId":"23481"},{"alias":"PES","entrezGeneId":"23481"},{"alias":"CATMANS","entrezGeneId":"23483"},{"alias":"SDR2E1","entrezGeneId":"23483"},{"alias":"TDPGD","entrezGeneId":"23483"},{"alias":"HSPC112","entrezGeneId":"23484"},{"alias":"my047","entrezGeneId":"23484"},{"alias":"Vps55","entrezGeneId":"23484"},{"alias":"ES31","entrezGeneId":"23491"},{"alias":"bHLHb32","entrezGeneId":"23493"},{"alias":"CHF1","entrezGeneId":"23493"},{"alias":"GRIDLOCK","entrezGeneId":"23493"},{"alias":"GRL","entrezGeneId":"23493"},{"alias":"HERP1","entrezGeneId":"23493"},{"alias":"HESR2","entrezGeneId":"23493"},{"alias":"HRT2","entrezGeneId":"23493"},{"alias":"CD267","entrezGeneId":"23495"},{"alias":"CVID","entrezGeneId":"23495"},{"alias":"CVID2","entrezGeneId":"23495"},{"alias":"IGAD2","entrezGeneId":"23495"},{"alias":"RYZN","entrezGeneId":"23495"},{"alias":"TACI","entrezGeneId":"23495"},{"alias":"TNFRSF14B","entrezGeneId":"23495"},{"alias":"3-HAO","entrezGeneId":"23498"},{"alias":"h3HAO","entrezGeneId":"23498"},{"alias":"HAO","entrezGeneId":"23498"},{"alias":"VCRL1","entrezGeneId":"23498"},{"alias":"ABP620","entrezGeneId":"23499"},{"alias":"ACF7","entrezGeneId":"23499"},{"alias":"MACF","entrezGeneId":"23499"},{"alias":"OFC4","entrezGeneId":"23499"},{"alias":"dJ90A20A.1","entrezGeneId":"23500"},{"alias":"FYVE-CENT","entrezGeneId":"23503"},{"alias":"SPG15","entrezGeneId":"23503"},{"alias":"PPP1R133","entrezGeneId":"23504"},{"alias":"RBP2","entrezGeneId":"23504"},{"alias":"RIM-BP2","entrezGeneId":"23504"},{"alias":"CC28","entrezGeneId":"23505"},{"alias":"PRO1048","entrezGeneId":"23505"},{"alias":"RW1","entrezGeneId":"23505"},{"alias":"YR-23","entrezGeneId":"23505"},{"alias":"GLTSCR1L","entrezGeneId":"23506"},{"alias":"KIAA0240","entrezGeneId":"23506"},{"alias":"TA-LRRP","entrezGeneId":"23507"},{"alias":"TALRRP","entrezGeneId":"23507"},{"alias":"TTC9A","entrezGeneId":"23508"},{"alias":"DDD2","entrezGeneId":"23509"},{"alias":"FUT12","entrezGeneId":"23509"},{"alias":"O-Fuc-T","entrezGeneId":"23509"},{"alias":"O-FucT-1","entrezGeneId":"23509"},{"alias":"O-FUT","entrezGeneId":"23509"},{"alias":"OFUCT1","entrezGeneId":"23509"},{"alias":"hNup188","entrezGeneId":"23511"},{"alias":"KIAA0169","entrezGeneId":"23511"},{"alias":"CHET9","entrezGeneId":"23512"},{"alias":"JJAZ1","entrezGeneId":"23512"},{"alias":"CRIB1","entrezGeneId":"23513"},{"alias":"SCRB1","entrezGeneId":"23513"},{"alias":"SCRIB1","entrezGeneId":"23513"},{"alias":"Vartul","entrezGeneId":"23513"},{"alias":"KIAA0146","entrezGeneId":"23514"},{"alias":"NXP2","entrezGeneId":"23515"},{"alias":"ZCW5","entrezGeneId":"23515"},{"alias":"ZCWCC3","entrezGeneId":"23515"},{"alias":"cig19","entrezGeneId":"23516"},{"alias":"HMNDYT2","entrezGeneId":"23516"},{"alias":"LZT-Hs4","entrezGeneId":"23516"},{"alias":"NET34","entrezGeneId":"23516"},{"alias":"ZIP14","entrezGeneId":"23516"},{"alias":"Dob1","entrezGeneId":"23517"},{"alias":"fSAP118","entrezGeneId":"23517"},{"alias":"KIAA0052","entrezGeneId":"23517"},{"alias":"Mtr4","entrezGeneId":"23517"},{"alias":"SKIV2L2","entrezGeneId":"23517"},{"alias":"R3HDM","entrezGeneId":"23518"},{"alias":"PP32R2","entrezGeneId":"23519"},{"alias":"PP32R1","entrezGeneId":"23520"},{"alias":"L13A","entrezGeneId":"23521"},{"alias":"TSTA1","entrezGeneId":"23521"},{"alias":"GTPTS","entrezGeneId":"23522"},{"alias":"MORF","entrezGeneId":"23522"},{"alias":"MOZ2","entrezGeneId":"23522"},{"alias":"MYST4","entrezGeneId":"23522"},{"alias":"qkf","entrezGeneId":"23522"},{"alias":"querkopf","entrezGeneId":"23522"},{"alias":"ZC2HC6B","entrezGeneId":"23522"},{"alias":"CAIN","entrezGeneId":"23523"},{"alias":"KB-318B8.7","entrezGeneId":"23523"},{"alias":"PPP3IN","entrezGeneId":"23523"},{"alias":"300-KD","entrezGeneId":"23524"},{"alias":"Cwc21","entrezGeneId":"23524"},{"alias":"CWF21","entrezGeneId":"23524"},{"alias":"HSPC075","entrezGeneId":"23524"},{"alias":"SRL300","entrezGeneId":"23524"},{"alias":"SRm300","entrezGeneId":"23524"},{"alias":"HA-1","entrezGeneId":"23526"},{"alias":"HLA-HA1","entrezGeneId":"23526"},{"alias":"HMHA1","entrezGeneId":"23526"},{"alias":"CENTB2","entrezGeneId":"23527"},{"alias":"CNT-B2","entrezGeneId":"23527"},{"alias":"ZBP-99","entrezGeneId":"23528"},{"alias":"ZNP-99","entrezGeneId":"23528"},{"alias":"BSF-3","entrezGeneId":"23529"},{"alias":"BSF3","entrezGeneId":"23529"},{"alias":"CISS2","entrezGeneId":"23529"},{"alias":"CLC","entrezGeneId":"23529"},{"alias":"NNT-1","entrezGeneId":"23529"},{"alias":"NNT1","entrezGeneId":"23529"},{"alias":"NR6","entrezGeneId":"23529"},{"alias":"GCCD4","entrezGeneId":"23530"},{"alias":"MMA","entrezGeneId":"23531"},{"alias":"MMD1","entrezGeneId":"23531"},{"alias":"PAQR11","entrezGeneId":"23531"},{"alias":"CT130","entrezGeneId":"23532"},{"alias":"MAPE","entrezGeneId":"23532"},{"alias":"OIP-4","entrezGeneId":"23532"},{"alias":"OIP4","entrezGeneId":"23532"},{"alias":"F730038I15Rik","entrezGeneId":"23533"},{"alias":"FOAP-2","entrezGeneId":"23533"},{"alias":"p101","entrezGeneId":"23533"},{"alias":"P101-PI3K","entrezGeneId":"23533"},{"alias":"IPO12","entrezGeneId":"23534"},{"alias":"LGMD1F","entrezGeneId":"23534"},{"alias":"MTR10A","entrezGeneId":"23534"},{"alias":"TRN-SR","entrezGeneId":"23534"},{"alias":"TRN-SR2","entrezGeneId":"23534"},{"alias":"TRNSR","entrezGeneId":"23534"},{"alias":"HADAT1","entrezGeneId":"23536"},{"alias":"HPFH1OR","entrezGeneId":"23538"},{"alias":"MCT3","entrezGeneId":"23539"},{"alias":"REMP","entrezGeneId":"23539"},{"alias":"TRNAS3","entrezGeneId":"23540"},{"alias":"TRS3","entrezGeneId":"23540"},{"alias":"C22orf6","entrezGeneId":"23541"},{"alias":"SPF","entrezGeneId":"23541"},{"alias":"TAP","entrezGeneId":"23541"},{"alias":"TAP1","entrezGeneId":"23541"},{"alias":"IB-2","entrezGeneId":"23542"},{"alias":"IB2","entrezGeneId":"23542"},{"alias":"JIP2","entrezGeneId":"23542"},{"alias":"PRKM8IPL","entrezGeneId":"23542"},{"alias":"dJ106I20.3","entrezGeneId":"23543"},{"alias":"Fox-2","entrezGeneId":"23543"},{"alias":"FOX2","entrezGeneId":"23543"},{"alias":"fxh","entrezGeneId":"23543"},{"alias":"HNRBP2","entrezGeneId":"23543"},{"alias":"HRNBP2","entrezGeneId":"23543"},{"alias":"RBM9","entrezGeneId":"23543"},{"alias":"RTA","entrezGeneId":"23543"},{"alias":"A2","entrezGeneId":"23545"},{"alias":"ARCL","entrezGeneId":"23545"},{"alias":"ARCL2A","entrezGeneId":"23545"},{"alias":"ATP6A2","entrezGeneId":"23545"},{"alias":"ATP6N1D","entrezGeneId":"23545"},{"alias":"J6B7","entrezGeneId":"23545"},{"alias":"RTF","entrezGeneId":"23545"},{"alias":"STV1","entrezGeneId":"23545"},{"alias":"TJ6","entrezGeneId":"23545"},{"alias":"TJ6M","entrezGeneId":"23545"},{"alias":"TJ6S","entrezGeneId":"23545"},{"alias":"VPH1","entrezGeneId":"23545"},{"alias":"WSS","entrezGeneId":"23545"},{"alias":"CD85g","entrezGeneId":"23547"},{"alias":"ILT7","entrezGeneId":"23547"},{"alias":"OSRF","entrezGeneId":"23548"},{"alias":"ASPEP","entrezGeneId":"23549"},{"alias":"DAP","entrezGeneId":"23549"},{"alias":"EFA6B","entrezGeneId":"23550"},{"alias":"TIC","entrezGeneId":"23550"},{"alias":"MGC:4834","entrezGeneId":"23551"},{"alias":"Rhes","entrezGeneId":"23551"},{"alias":"TEM2","entrezGeneId":"23551"},{"alias":"CCRK","entrezGeneId":"23552"},{"alias":"CDCH","entrezGeneId":"23552"},{"alias":"P42","entrezGeneId":"23552"},{"alias":"PNQALRE","entrezGeneId":"23552"},{"alias":"CSHY","entrezGeneId":"23553"},{"alias":"EVR5","entrezGeneId":"23554"},{"alias":"NET-2","entrezGeneId":"23554"},{"alias":"NET2","entrezGeneId":"23554"},{"alias":"TM4SF12","entrezGeneId":"23554"},{"alias":"2700063A19Rik","entrezGeneId":"23555"},{"alias":"NET-7","entrezGeneId":"23555"},{"alias":"NET7","entrezGeneId":"23555"},{"alias":"TM4SF15","entrezGeneId":"23555"},{"alias":"MCAHS","entrezGeneId":"23556"},{"alias":"MCAHS1","entrezGeneId":"23556"},{"alias":"MCD4","entrezGeneId":"23556"},{"alias":"MDC4","entrezGeneId":"23556"},{"alias":"PIG-N","entrezGeneId":"23556"},{"alias":"BLOC1S7","entrezGeneId":"23557"},{"alias":"BLOS7","entrezGeneId":"23557"},{"alias":"BORCS3","entrezGeneId":"23557"},{"alias":"SNAPAP","entrezGeneId":"23557"},{"alias":"DFNB107","entrezGeneId":"23558"},{"alias":"GRAMD6","entrezGeneId":"23558"},{"alias":"WBP-2","entrezGeneId":"23558"},{"alias":"WBP-1","entrezGeneId":"23559"},{"alias":"CRFG","entrezGeneId":"23560"},{"alias":"NGB","entrezGeneId":"23560"},{"alias":"NOG1","entrezGeneId":"23560"},{"alias":"DFNB29","entrezGeneId":"23562"},{"alias":"glcNAc6ST-3","entrezGeneId":"23563"},{"alias":"gn6st-3","entrezGeneId":"23563"},{"alias":"hIGn6ST","entrezGeneId":"23563"},{"alias":"I-GlcNAc-6-ST","entrezGeneId":"23563"},{"alias":"I-GlcNAc6ST","entrezGeneId":"23563"},{"alias":"DDAH","entrezGeneId":"23564"},{"alias":"DDAHII","entrezGeneId":"23564"},{"alias":"G6a","entrezGeneId":"23564"},{"alias":"HEL-S-277","entrezGeneId":"23564"},{"alias":"NG30","entrezGeneId":"23564"},{"alias":"Edg-7","entrezGeneId":"23566"},{"alias":"EDG7","entrezGeneId":"23566"},{"alias":"GPCR","entrezGeneId":"23566"},{"alias":"HOFNH30","entrezGeneId":"23566"},{"alias":"LP-A3","entrezGeneId":"23566"},{"alias":"LPA3","entrezGeneId":"23566"},{"alias":"RP4-678I3","entrezGeneId":"23566"},{"alias":"JAZ","entrezGeneId":"23567"},{"alias":"Zfp346","entrezGeneId":"23567"},{"alias":"BART","entrezGeneId":"23568"},{"alias":"BART1","entrezGeneId":"23568"},{"alias":"RP66","entrezGeneId":"23568"},{"alias":"PAD","entrezGeneId":"23569"},{"alias":"PAD4","entrezGeneId":"23569"},{"alias":"PADI5","entrezGeneId":"23569"},{"alias":"PDI4","entrezGeneId":"23569"},{"alias":"PDI5","entrezGeneId":"23569"},{"alias":"DDAH","entrezGeneId":"23576"},{"alias":"DDAH-1","entrezGeneId":"23576"},{"alias":"DDAHI","entrezGeneId":"23576"},{"alias":"HEL-S-16","entrezGeneId":"23576"},{"alias":"BORG4","entrezGeneId":"23580"},{"alias":"CEP4","entrezGeneId":"23580"},{"alias":"KAIA1777","entrezGeneId":"23580"},{"alias":"ARCI12","entrezGeneId":"23581"},{"alias":"DIP1","entrezGeneId":"23582"},{"alias":"GCIP","entrezGeneId":"23582"},{"alias":"HHM","entrezGeneId":"23582"},{"alias":"FDG","entrezGeneId":"23583"},{"alias":"HMUDG","entrezGeneId":"23583"},{"alias":"UNG3","entrezGeneId":"23583"},{"alias":"2210413P10Rik","entrezGeneId":"23584"},{"alias":"CTH","entrezGeneId":"23584"},{"alias":"CTXL","entrezGeneId":"23584"},{"alias":"IFNRC","entrezGeneId":"23585"},{"alias":"SMP1","entrezGeneId":"23585"},{"alias":"RIG-I","entrezGeneId":"23586"},{"alias":"RIGI","entrezGeneId":"23586"},{"alias":"RLR-1","entrezGeneId":"23586"},{"alias":"SGMRT2","entrezGeneId":"23586"},{"alias":"C17orf81","entrezGeneId":"23587"},{"alias":"DERP6","entrezGeneId":"23587"},{"alias":"HSPC002","entrezGeneId":"23587"},{"alias":"MST071","entrezGeneId":"23587"},{"alias":"MSTP071","entrezGeneId":"23587"},{"alias":"HCLP-1","entrezGeneId":"23588"},{"alias":"HCLP1","entrezGeneId":"23588"},{"alias":"LCP","entrezGeneId":"23588"},{"alias":"CRHSP-24","entrezGeneId":"23589"},{"alias":"CRHSP24","entrezGeneId":"23589"},{"alias":"CSDC1","entrezGeneId":"23589"},{"alias":"COQ1","entrezGeneId":"23590"},{"alias":"COQ10D2","entrezGeneId":"23590"},{"alias":"DPS","entrezGeneId":"23590"},{"alias":"hDPS1","entrezGeneId":"23590"},{"alias":"SPS","entrezGeneId":"23590"},{"alias":"TPRT","entrezGeneId":"23590"},{"alias":"TPT","entrezGeneId":"23590"},{"alias":"TPT 1","entrezGeneId":"23590"},{"alias":"APR-2","entrezGeneId":"23591"},{"alias":"C17orf88","entrezGeneId":"23591"},{"alias":"LINC00530","entrezGeneId":"23591"},{"alias":"MAN1","entrezGeneId":"23592"},{"alias":"C6orf34","entrezGeneId":"23593"},{"alias":"C6ORF34B","entrezGeneId":"23593"},{"alias":"PP23","entrezGeneId":"23593"},{"alias":"SOUL","entrezGeneId":"23593"},{"alias":"ORC6L","entrezGeneId":"23594"},{"alias":"LAT","entrezGeneId":"23595"},{"alias":"LATHEO","entrezGeneId":"23595"},{"alias":"ORC3L","entrezGeneId":"23595"},{"alias":"ECPN","entrezGeneId":"23596"},{"alias":"PPP1R116","entrezGeneId":"23596"},{"alias":"ACATE2","entrezGeneId":"23597"},{"alias":"CGI-16","entrezGeneId":"23597"},{"alias":"MT-ACT48","entrezGeneId":"23597"},{"alias":"MTACT48","entrezGeneId":"23597"},{"alias":"dJ400N23","entrezGeneId":"23598"},{"alias":"MAZR","entrezGeneId":"23598"},{"alias":"PATZ","entrezGeneId":"23598"},{"alias":"RIAZ","entrezGeneId":"23598"},{"alias":"ZBTB19","entrezGeneId":"23598"},{"alias":"ZNF278","entrezGeneId":"23598"},{"alias":"ZSG","entrezGeneId":"23598"},{"alias":"AMACRD","entrezGeneId":"23600"},{"alias":"CBAS4","entrezGeneId":"23600"},{"alias":"P504S","entrezGeneId":"23600"},{"alias":"RACE","entrezGeneId":"23600"},{"alias":"RM","entrezGeneId":"23600"},{"alias":"CLECSF5","entrezGeneId":"23601"},{"alias":"MDL-1","entrezGeneId":"23601"},{"alias":"MDL1","entrezGeneId":"23601"},{"alias":"HCRNN4","entrezGeneId":"23603"},{"alias":"DRP-1","entrezGeneId":"23604"},{"alias":"DRP1","entrezGeneId":"23604"},{"alias":"dJ388M5","entrezGeneId":"23605"},{"alias":"dJ388M5.2","entrezGeneId":"23605"},{"alias":"HMG17L1","entrezGeneId":"23605"},{"alias":"HMGN2L9","entrezGeneId":"23605"},{"alias":"bK216E10","entrezGeneId":"23606"},{"alias":"HMG17L2","entrezGeneId":"23606"},{"alias":"HMGN2L10","entrezGeneId":"23606"},{"alias":"CMS","entrezGeneId":"23607"},{"alias":"RNF61","entrezGeneId":"23608"},{"alias":"HSPC070","entrezGeneId":"23609"},{"alias":"RNF62","entrezGeneId":"23609"},{"alias":"MKRNP2","entrezGeneId":"23610"},{"alias":"TIH1","entrezGeneId":"23612"},{"alias":"PRKCBP1","entrezGeneId":"23613"},{"alias":"PRO2893","entrezGeneId":"23613"},{"alias":"RACK7","entrezGeneId":"23613"},{"alias":"PPY2","entrezGeneId":"23614"},{"alias":"ARHGAP43","entrezGeneId":"23616"},{"alias":"DGS-G","entrezGeneId":"23617"},{"alias":"SPOGA2","entrezGeneId":"23617"},{"alias":"STK22B","entrezGeneId":"23617"},{"alias":"TSK2","entrezGeneId":"23617"},{"alias":"ZNF656","entrezGeneId":"23619"},{"alias":"NTR2","entrezGeneId":"23620"},{"alias":"ASP2","entrezGeneId":"23621"},{"alias":"BACE","entrezGeneId":"23621"},{"alias":"HSPC104","entrezGeneId":"23621"},{"alias":"NESCA","entrezGeneId":"23623"},{"alias":"CBL-3","entrezGeneId":"23624"},{"alias":"CBL-SL","entrezGeneId":"23624"},{"alias":"RNF57","entrezGeneId":"23624"},{"alias":"LRAP25","entrezGeneId":"23625"},{"alias":"MTVR","entrezGeneId":"23625"},{"alias":"MTVR1","entrezGeneId":"23625"},{"alias":"CT35","entrezGeneId":"23626"},{"alias":"SPATA43","entrezGeneId":"23626"},{"alias":"TOPVIA","entrezGeneId":"23626"},{"alias":"dJ1068H6.4","entrezGeneId":"23627"},{"alias":"DOPPEL","entrezGeneId":"23627"},{"alias":"DPL","entrezGeneId":"23627"},{"alias":"PrPLP","entrezGeneId":"23627"},{"alias":"BP75","entrezGeneId":"23629"},{"alias":"KCNE1L","entrezGeneId":"23630"},{"alias":"CAXiV","entrezGeneId":"23632"},{"alias":"IPOA7","entrezGeneId":"23633"},{"alias":"KPNA7","entrezGeneId":"23633"},{"alias":"HSPC116","entrezGeneId":"23635"},{"alias":"SOSS-B2","entrezGeneId":"23635"},{"alias":"IBSN","entrezGeneId":"23636"},{"alias":"p62","entrezGeneId":"23636"},{"alias":"SNDI","entrezGeneId":"23636"},{"alias":"GAPCENA","entrezGeneId":"23637"},{"alias":"TBC1D11","entrezGeneId":"23637"},{"alias":"CILD19","entrezGeneId":"23639"},{"alias":"LRTP","entrezGeneId":"23639"},{"alias":"TSLRP","entrezGeneId":"23639"},{"alias":"FES1","entrezGeneId":"23640"},{"alias":"BCUR1","entrezGeneId":"23641"},{"alias":"Mar7","entrezGeneId":"23641"},{"alias":"Mart7","entrezGeneId":"23641"},{"alias":"RTL7","entrezGeneId":"23641"},{"alias":"SIRH7","entrezGeneId":"23641"},{"alias":"LINC00057","entrezGeneId":"23642"},{"alias":"lncRNA16","entrezGeneId":"23642"},{"alias":"NCRNA00057","entrezGeneId":"23642"},{"alias":"U22HG","entrezGeneId":"23642"},{"alias":"UHG","entrezGeneId":"23642"},{"alias":"ESOP-1","entrezGeneId":"23643"},{"alias":"ly-96","entrezGeneId":"23643"},{"alias":"MD-2","entrezGeneId":"23643"},{"alias":"MD2","entrezGeneId":"23643"},{"alias":"Ge-1","entrezGeneId":"23644"},{"alias":"GE1","entrezGeneId":"23644"},{"alias":"HEDL5","entrezGeneId":"23644"},{"alias":"HEDLS","entrezGeneId":"23644"},{"alias":"RCD-8","entrezGeneId":"23644"},{"alias":"RCD8","entrezGeneId":"23644"},{"alias":"GADD34","entrezGeneId":"23645"},{"alias":"AD19","entrezGeneId":"23646"},{"alias":"HU-K4","entrezGeneId":"23646"},{"alias":"HUK4","entrezGeneId":"23646"},{"alias":"SCA46","entrezGeneId":"23646"},{"alias":"POR1","entrezGeneId":"23647"},{"alias":"CSDP","entrezGeneId":"23648"},{"alias":"SSDP","entrezGeneId":"23648"},{"alias":"SSDP1","entrezGeneId":"23648"},{"alias":"ATDC","entrezGeneId":"23650"},{"alias":"dJ402G11.3","entrezGeneId":"23654"},{"alias":"MM1","entrezGeneId":"23654"},{"alias":"Nbla00445","entrezGeneId":"23654"},{"alias":"PLEXB2","entrezGeneId":"23654"},{"alias":"CCBR1","entrezGeneId":"23657"},{"alias":"xCT","entrezGeneId":"23657"},{"alias":"YER146W","entrezGeneId":"23658"},{"alias":"ACS","entrezGeneId":"23659"},{"alias":"GXVPLA2","entrezGeneId":"23659"},{"alias":"LLPL","entrezGeneId":"23659"},{"alias":"LPLA2","entrezGeneId":"23659"},{"alias":"LYPLA3","entrezGeneId":"23659"},{"alias":"ZFP-95","entrezGeneId":"23660"},{"alias":"ZFP95","entrezGeneId":"23660"},{"alias":"ZNF914","entrezGeneId":"23660"},{"alias":"ZSCAN37","entrezGeneId":"23660"},{"alias":"TMEM2","entrezGeneId":"23670"},{"alias":"CT120.2","entrezGeneId":"23671"},{"alias":"HPP1","entrezGeneId":"23671"},{"alias":"TENB2","entrezGeneId":"23671"},{"alias":"TPEF","entrezGeneId":"23671"},{"alias":"TR","entrezGeneId":"23671"},{"alias":"TR-2","entrezGeneId":"23671"},{"alias":"STX13","entrezGeneId":"23673"},{"alias":"STX14","entrezGeneId":"23673"},{"alias":"DFN6","entrezGeneId":"23676"},{"alias":"DFNX4","entrezGeneId":"23676"},{"alias":"BOG25","entrezGeneId":"23677"},{"alias":"TTP","entrezGeneId":"23677"},{"alias":"CISK","entrezGeneId":"23678"},{"alias":"SGK2","entrezGeneId":"23678"},{"alias":"SGKL","entrezGeneId":"23678"},{"alias":"SEPW1P","entrezGeneId":"23679"},{"alias":"NY-MEL-1","entrezGeneId":"23682"},{"alias":"rrGTPbp","entrezGeneId":"23682"},{"alias":"EPK2","entrezGeneId":"23683"},{"alias":"nPKC-NU","entrezGeneId":"23683"},{"alias":"PKC-NU","entrezGeneId":"23683"},{"alias":"PKD3","entrezGeneId":"23683"},{"alias":"PRKCN","entrezGeneId":"23683"},{"alias":"MIRP3","entrezGeneId":"23704"},{"alias":"BL2","entrezGeneId":"23705"},{"alias":"IGSF4","entrezGeneId":"23705"},{"alias":"IGSF4A","entrezGeneId":"23705"},{"alias":"Necl-2","entrezGeneId":"23705"},{"alias":"NECL2","entrezGeneId":"23705"},{"alias":"RA175","entrezGeneId":"23705"},{"alias":"sgIGSF","entrezGeneId":"23705"},{"alias":"ST17","entrezGeneId":"23705"},{"alias":"sTSLC-1","entrezGeneId":"23705"},{"alias":"SYNCAM","entrezGeneId":"23705"},{"alias":"synCAM1","entrezGeneId":"23705"},{"alias":"TSLC1","entrezGeneId":"23705"},{"alias":"BGCI","entrezGeneId":"23706"},{"alias":"IBGC","entrezGeneId":"23706"},{"alias":"ERF3B","entrezGeneId":"23708"},{"alias":"GST2","entrezGeneId":"23708"},{"alias":"APG8-LIKE","entrezGeneId":"23710"},{"alias":"APG8L","entrezGeneId":"23710"},{"alias":"ATG8","entrezGeneId":"23710"},{"alias":"ATG8B","entrezGeneId":"23710"},{"alias":"ATG8L","entrezGeneId":"23710"},{"alias":"GEC1","entrezGeneId":"23710"},{"alias":"CARKL","entrezGeneId":"23729"},{"alias":"SHK","entrezGeneId":"23729"},{"alias":"C9orf5","entrezGeneId":"23731"},{"alias":"CG-2","entrezGeneId":"23731"},{"alias":"CG2","entrezGeneId":"23731"},{"alias":"C9orf4","entrezGeneId":"23732"},{"alias":"CG-6","entrezGeneId":"23732"},{"alias":"CG6","entrezGeneId":"23732"},{"alias":"EIEE37","entrezGeneId":"23732"},{"alias":"71-7A3","entrezGeneId":"23738"},{"alias":"71-7A5","entrezGeneId":"23738"},{"alias":"C5orf1","entrezGeneId":"23738"},{"alias":"OFD1P1","entrezGeneId":"23738"},{"alias":"CER1","entrezGeneId":"23739"},{"alias":"C15orf3","entrezGeneId":"23741"},{"alias":"CRI1","entrezGeneId":"23741"},{"alias":"EID-1","entrezGeneId":"23741"},{"alias":"IRO45620","entrezGeneId":"23741"},{"alias":"PNAS-22","entrezGeneId":"23741"},{"alias":"PTD014","entrezGeneId":"23741"},{"alias":"RBP21","entrezGeneId":"23741"},{"alias":"C15orf2","entrezGeneId":"23742"},{"alias":"ATP5EP1","entrezGeneId":"23744"},{"alias":"AIPL2","entrezGeneId":"23746"},{"alias":"LCA4","entrezGeneId":"23746"},{"alias":"YME1L2","entrezGeneId":"23749"},{"alias":"TOP3B2","entrezGeneId":"23751"},{"alias":"SPOGA1","entrezGeneId":"23752"},{"alias":"STK22A","entrezGeneId":"23752"},{"alias":"TSSK1","entrezGeneId":"23752"},{"alias":"TSSK1AP","entrezGeneId":"23752"},{"alias":"TSSK1b","entrezGeneId":"23752"},{"alias":"TSSK7P","entrezGeneId":"23752"},{"alias":"RPL32L2","entrezGeneId":"23754"},{"alias":"RPL32_23_1737","entrezGeneId":"23754"},{"alias":"PTPNS1L","entrezGeneId":"23755"},{"alias":"SIRPA2P","entrezGeneId":"23755"},{"alias":"RPS24P","entrezGeneId":"23756"},{"alias":"ARSFP","entrezGeneId":"23757"},{"alias":"SFPQP","entrezGeneId":"23758"},{"alias":"CYC4","entrezGeneId":"23759"},{"alias":"Cyp-60","entrezGeneId":"23759"},{"alias":"CYP60","entrezGeneId":"23759"},{"alias":"hCyP-60","entrezGeneId":"23759"},{"alias":"UBOX7","entrezGeneId":"23759"},{"alias":"PI-TP-beta","entrezGeneId":"23760"},{"alias":"PtdInsTP","entrezGeneId":"23760"},{"alias":"VIB1B","entrezGeneId":"23760"},{"alias":"DJ858B16","entrezGeneId":"23761"},{"alias":"dJ858B16.2","entrezGeneId":"23761"},{"alias":"PSD","entrezGeneId":"23761"},{"alias":"PSDC","entrezGeneId":"23761"},{"alias":"PSSC","entrezGeneId":"23761"},{"alias":"HLM","entrezGeneId":"23762"},{"alias":"ORP-4","entrezGeneId":"23762"},{"alias":"ORP4","entrezGeneId":"23762"},{"alias":"OSBPL1","entrezGeneId":"23762"},{"alias":"OSBPL4","entrezGeneId":"23762"},{"alias":"hMafF","entrezGeneId":"23764"},{"alias":"U-MAF","entrezGeneId":"23764"},{"alias":"CANDF5","entrezGeneId":"23765"},{"alias":"CD217","entrezGeneId":"23765"},{"alias":"CDw217","entrezGeneId":"23765"},{"alias":"hIL-17R","entrezGeneId":"23765"},{"alias":"IL-17RA","entrezGeneId":"23765"},{"alias":"IL17R","entrezGeneId":"23765"},{"alias":"IMD51","entrezGeneId":"23765"},{"alias":"ATG8D","entrezGeneId":"23766"},{"alias":"HH21","entrezGeneId":"23767"},{"alias":"SPG68","entrezGeneId":"23769"},{"alias":"FKBP38","entrezGeneId":"23770"},{"alias":"FKBPr38","entrezGeneId":"23770"},{"alias":"CSF2RB2","entrezGeneId":"23772"},{"alias":"fF45C1.2","entrezGeneId":"23772"},{"alias":"BRL","entrezGeneId":"23774"},{"alias":"BRPF1","entrezGeneId":"23774"},{"alias":"BRPF2","entrezGeneId":"23774"},{"alias":"BPGAP1","entrezGeneId":"23779"},{"alias":"PP610","entrezGeneId":"23779"},{"alias":"APOL-II","entrezGeneId":"23780"},{"alias":"APOL3","entrezGeneId":"23780"},{"alias":"ADTB1L2","entrezGeneId":"23781"},{"alias":"dJ127L4.3","entrezGeneId":"23781"},{"alias":"ADTB1L1","entrezGeneId":"23782"},{"alias":"dJ127L4.2","entrezGeneId":"23782"},{"alias":"VWFP1-ANKRD62P1-PARP4P3","entrezGeneId":"23783"},{"alias":"A26C3","entrezGeneId":"23784"},{"alias":"ACTBL1","entrezGeneId":"23784"},{"alias":"CT104.7","entrezGeneId":"23784"},{"alias":"POTE22","entrezGeneId":"23784"},{"alias":"BCL-RAMBO","entrezGeneId":"23786"},{"alias":"Bcl2-L-13","entrezGeneId":"23786"},{"alias":"MIL1","entrezGeneId":"23786"},{"alias":"CGI-64","entrezGeneId":"23787"},{"alias":"PIG60","entrezGeneId":"23787"},{"alias":"PSAP","entrezGeneId":"23787"},{"alias":"SLC25A49","entrezGeneId":"23787"},{"alias":"HSPC032","entrezGeneId":"23788"},{"alias":"MIMP","entrezGeneId":"23788"},{"alias":"SLC25A50","entrezGeneId":"23788"},{"alias":"KIF4","entrezGeneId":"24137"},{"alias":"KIF4G1","entrezGeneId":"24137"},{"alias":"MRX100","entrezGeneId":"24137"},{"alias":"ISG58","entrezGeneId":"24138"},{"alias":"P58","entrezGeneId":"24138"},{"alias":"RI58","entrezGeneId":"24138"},{"alias":"ELP70","entrezGeneId":"24139"},{"alias":"EMAP-2","entrezGeneId":"24139"},{"alias":"EMAP2","entrezGeneId":"24139"},{"alias":"CDLIV","entrezGeneId":"24140"},{"alias":"JM23","entrezGeneId":"24140"},{"alias":"MRX44","entrezGeneId":"24140"},{"alias":"MRX9","entrezGeneId":"24140"},{"alias":"SPB1","entrezGeneId":"24140"},{"alias":"TRMT7","entrezGeneId":"24140"},{"alias":"BAD-LAMP","entrezGeneId":"24141"},{"alias":"BADLAMP","entrezGeneId":"24141"},{"alias":"C20orf103","entrezGeneId":"24141"},{"alias":"LAMP-5","entrezGeneId":"24141"},{"alias":"UNC-46","entrezGeneId":"24141"},{"alias":"FUS-2","entrezGeneId":"24142"},{"alias":"FUS2","entrezGeneId":"24142"},{"alias":"bK445C9.6","entrezGeneId":"24144"},{"alias":"NTR1","entrezGeneId":"24144"},{"alias":"Spp382","entrezGeneId":"24144"},{"alias":"STIP","entrezGeneId":"24144"},{"alias":"STIP-1","entrezGeneId":"24144"},{"alias":"TIP39","entrezGeneId":"24144"},{"alias":"MRS1","entrezGeneId":"24145"},{"alias":"PX1","entrezGeneId":"24145"},{"alias":"UNQ2529","entrezGeneId":"24145"},{"alias":"ANT-1","entrezGeneId":"24148"},{"alias":"ANT1","entrezGeneId":"24148"},{"alias":"C20orf14","entrezGeneId":"24148"},{"alias":"hPrp6","entrezGeneId":"24148"},{"alias":"Prp6","entrezGeneId":"24148"},{"alias":"RP60","entrezGeneId":"24148"},{"alias":"SNRNP102","entrezGeneId":"24148"},{"alias":"TOM","entrezGeneId":"24148"},{"alias":"U5-102K","entrezGeneId":"24148"},{"alias":"HRIHFB2436","entrezGeneId":"24149"},{"alias":"TZF","entrezGeneId":"24149"},{"alias":"ZFP318","entrezGeneId":"24149"},{"alias":"P53TG3","entrezGeneId":"24150"},{"alias":"TP53TG3A","entrezGeneId":"24150"},{"alias":"TP53TG3E","entrezGeneId":"24150"},{"alias":"TP53TG3F","entrezGeneId":"24150"},{"alias":"C11orf41","entrezGeneId":"25758"},{"alias":"C11orf69","entrezGeneId":"25758"},{"alias":"G2","entrezGeneId":"25758"},{"alias":"SCK","entrezGeneId":"25759"},{"alias":"SHCB","entrezGeneId":"25759"},{"alias":"SLI","entrezGeneId":"25759"},{"alias":"CXorf27","entrezGeneId":"25763"},{"alias":"HIP17","entrezGeneId":"25763"},{"alias":"C15orf63","entrezGeneId":"25764"},{"alias":"HSPC136","entrezGeneId":"25764"},{"alias":"HYPC","entrezGeneId":"25766"},{"alias":"NCKX2","entrezGeneId":"25769"},{"alias":"bK747E2.1","entrezGeneId":"25770"},{"alias":"HS747E2A","entrezGeneId":"25770"},{"alias":"C22orf4","entrezGeneId":"25771"},{"alias":"HSC79E021","entrezGeneId":"25771"},{"alias":"GSTTP1","entrezGeneId":"25774"},{"alias":"HS322B1A","entrezGeneId":"25774"},{"alias":"HSN44A4A","entrezGeneId":"25775"},{"alias":"arb1","entrezGeneId":"25776"},{"alias":"C22orf2","entrezGeneId":"25776"},{"alias":"CBY","entrezGeneId":"25776"},{"alias":"HS508I15A","entrezGeneId":"25776"},{"alias":"PGEA1","entrezGeneId":"25776"},{"alias":"PIGEA-14","entrezGeneId":"25776"},{"alias":"PIGEA14","entrezGeneId":"25776"},{"alias":"UNC84B","entrezGeneId":"25777"},{"alias":"CAKUT1","entrezGeneId":"25778"},{"alias":"DustyPK","entrezGeneId":"25778"},{"alias":"HDCMD38P","entrezGeneId":"25778"},{"alias":"RIP5","entrezGeneId":"25778"},{"alias":"RIPK5","entrezGeneId":"25778"},{"alias":"SPG23","entrezGeneId":"25778"},{"alias":"GRP3","entrezGeneId":"25780"},{"alias":"p150","entrezGeneId":"25782"},{"alias":"RAB3-GAP150","entrezGeneId":"25782"},{"alias":"RAB3GAP150","entrezGeneId":"25782"},{"alias":"SPG69","entrezGeneId":"25782"},{"alias":"WARBM2","entrezGeneId":"25782"},{"alias":"DGS-E","entrezGeneId":"25784"},{"alias":"DGS-D","entrezGeneId":"25786"},{"alias":"DGS-A","entrezGeneId":"25787"},{"alias":"RDH54","entrezGeneId":"25788"},{"alias":"BSMAP","entrezGeneId":"25789"},{"alias":"C19orf4","entrezGeneId":"25789"},{"alias":"CCDC19","entrezGeneId":"25790"},{"alias":"NESG1","entrezGeneId":"25790"},{"alias":"ARHGEF27","entrezGeneId":"25791"},{"alias":"EPHEXIN","entrezGeneId":"25791"},{"alias":"LSFR1","entrezGeneId":"25792"},{"alias":"NP94","entrezGeneId":"25792"},{"alias":"ZNF356","entrezGeneId":"25792"},{"alias":"FBX","entrezGeneId":"25793"},{"alias":"FBX07","entrezGeneId":"25793"},{"alias":"FBX7","entrezGeneId":"25793"},{"alias":"PARK15","entrezGeneId":"25793"},{"alias":"PKPS","entrezGeneId":"25793"},{"alias":"RFSN","entrezGeneId":"25794"},{"alias":"RP30","entrezGeneId":"25794"},{"alias":"6PGL","entrezGeneId":"25796"},{"alias":"HEL-S-304","entrezGeneId":"25796"},{"alias":"GCT","entrezGeneId":"25797"},{"alias":"QC","entrezGeneId":"25797"},{"alias":"sQC","entrezGeneId":"25797"},{"alias":"I3","entrezGeneId":"25798"},{"alias":"ZF5128","entrezGeneId":"25799"},{"alias":"ZNF324A","entrezGeneId":"25799"},{"alias":"LIV-1","entrezGeneId":"25800"},{"alias":"ZIP6","entrezGeneId":"25800"},{"alias":"GCL","entrezGeneId":"25801"},{"alias":"1D","entrezGeneId":"25802"},{"alias":"64kD","entrezGeneId":"25802"},{"alias":"D1","entrezGeneId":"25802"},{"alias":"SM-LMOD","entrezGeneId":"25802"},{"alias":"SMLMOD","entrezGeneId":"25802"},{"alias":"bA375E1.3","entrezGeneId":"25803"},{"alias":"PDEF","entrezGeneId":"25803"},{"alias":"GRP","entrezGeneId":"25804"},{"alias":"YER112W","entrezGeneId":"25804"},{"alias":"NMA","entrezGeneId":"25805"},{"alias":"DRES93","entrezGeneId":"25806"},{"alias":"C22orf3","entrezGeneId":"25807"},{"alias":"HS984G1A","entrezGeneId":"25807"},{"alias":"PTAG","entrezGeneId":"25807"},{"alias":"C22orf7","entrezGeneId":"25809"},{"alias":"HS323M22B","entrezGeneId":"25809"},{"alias":"POM121L1","entrezGeneId":"25812"},{"alias":"CGI-51","entrezGeneId":"25813"},{"alias":"OMP85","entrezGeneId":"25813"},{"alias":"SAM50","entrezGeneId":"25813"},{"alias":"TOB55","entrezGeneId":"25813"},{"alias":"TRG-3","entrezGeneId":"25813"},{"alias":"YNL026W","entrezGeneId":"25813"},{"alias":"E46L","entrezGeneId":"25814"},{"alias":"HUMEEP","entrezGeneId":"25814"},{"alias":"SCA10","entrezGeneId":"25814"},{"alias":"GG2-1","entrezGeneId":"25816"},{"alias":"MDC-3.13","entrezGeneId":"25816"},{"alias":"NDED","entrezGeneId":"25816"},{"alias":"SCC-S2","entrezGeneId":"25816"},{"alias":"SCCS2","entrezGeneId":"25816"},{"alias":"QLLK5208","entrezGeneId":"25817"},{"alias":"TAFA-5","entrezGeneId":"25817"},{"alias":"TAFA5","entrezGeneId":"25817"},{"alias":"UNQ5208","entrezGeneId":"25817"},{"alias":"KLK-L2","entrezGeneId":"25818"},{"alias":"KLKL2","entrezGeneId":"25818"},{"alias":"SCTE","entrezGeneId":"25818"},{"alias":"Ccr4c","entrezGeneId":"25819"},{"alias":"CCR4L","entrezGeneId":"25819"},{"alias":"CCRN4L","entrezGeneId":"25819"},{"alias":"NOC","entrezGeneId":"25819"},{"alias":"ARI","entrezGeneId":"25820"},{"alias":"HARI","entrezGeneId":"25820"},{"alias":"HHARI","entrezGeneId":"25820"},{"alias":"UBCH7BP","entrezGeneId":"25820"},{"alias":"CGI-02","entrezGeneId":"25821"},{"alias":"COXPD10","entrezGeneId":"25821"},{"alias":"Hsc40","entrezGeneId":"25822"},{"alias":"PRSS31","entrezGeneId":"25823"},{"alias":"TMT","entrezGeneId":"25823"},{"alias":"trpA","entrezGeneId":"25823"},{"alias":"ACR1","entrezGeneId":"25824"},{"alias":"AOEB166","entrezGeneId":"25824"},{"alias":"B166","entrezGeneId":"25824"},{"alias":"HEL-S-55","entrezGeneId":"25824"},{"alias":"PLP","entrezGeneId":"25824"},{"alias":"PMP20","entrezGeneId":"25824"},{"alias":"PRDX6","entrezGeneId":"25824"},{"alias":"prx-V","entrezGeneId":"25824"},{"alias":"PRXV","entrezGeneId":"25824"},{"alias":"SBBI10","entrezGeneId":"25824"},{"alias":"AEPLC","entrezGeneId":"25825"},{"alias":"ALP56","entrezGeneId":"25825"},{"alias":"ASP1","entrezGeneId":"25825"},{"alias":"ASP21","entrezGeneId":"25825"},{"alias":"BAE2","entrezGeneId":"25825"},{"alias":"CDA13","entrezGeneId":"25825"},{"alias":"CEAP1","entrezGeneId":"25825"},{"alias":"DRAP","entrezGeneId":"25825"},{"alias":"RNU82","entrezGeneId":"25826"},{"alias":"U82","entrezGeneId":"25826"},{"alias":"Z25","entrezGeneId":"25826"},{"alias":"FBL2","entrezGeneId":"25827"},{"alias":"FBL3","entrezGeneId":"25827"},{"alias":"COXPD29","entrezGeneId":"25828"},{"alias":"MT-TRX","entrezGeneId":"25828"},{"alias":"MTRX","entrezGeneId":"25828"},{"alias":"TRX2","entrezGeneId":"25828"},{"alias":"TXN","entrezGeneId":"25828"},{"alias":"C22orf5","entrezGeneId":"25829"},{"alias":"FM08","entrezGeneId":"25829"},{"alias":"HS5O6A","entrezGeneId":"25829"},{"alias":"HSPC256","entrezGeneId":"25829"},{"alias":"BR-STL-1","entrezGeneId":"25830"},{"alias":"BRSTL1","entrezGeneId":"25830"},{"alias":"DJ388M5.3","entrezGeneId":"25830"},{"alias":"hBR-STL-1","entrezGeneId":"25830"},{"alias":"NST","entrezGeneId":"25830"},{"alias":"SULTX3","entrezGeneId":"25830"},{"alias":"EULIR","entrezGeneId":"25831"},{"alias":"DJ328E19.C1.1","entrezGeneId":"25832"},{"alias":"NBPF","entrezGeneId":"25832"},{"alias":"Epoc-1","entrezGeneId":"25833"},{"alias":"OCT-11","entrezGeneId":"25833"},{"alias":"OCT11","entrezGeneId":"25833"},{"alias":"OTF-11","entrezGeneId":"25833"},{"alias":"PLA-1","entrezGeneId":"25833"},{"alias":"PLA1","entrezGeneId":"25833"},{"alias":"Skn-1a","entrezGeneId":"25833"},{"alias":"GNTIVH","entrezGeneId":"25834"},{"alias":"HGNT-IV-H","entrezGeneId":"25834"},{"alias":"CDLS","entrezGeneId":"25836"},{"alias":"CDLS1","entrezGeneId":"25836"},{"alias":"IDN3","entrezGeneId":"25836"},{"alias":"IDN3-B","entrezGeneId":"25836"},{"alias":"Scc2","entrezGeneId":"25836"},{"alias":"V46133","entrezGeneId":"25837"},{"alias":"CDG2J","entrezGeneId":"25839"},{"alias":"COD1","entrezGeneId":"25839"},{"alias":"AAM-B","entrezGeneId":"25840"},{"alias":"ABTB2A","entrezGeneId":"25841"},{"alias":"BTBD22","entrezGeneId":"25841"},{"alias":"CGI-98","entrezGeneId":"25842"},{"alias":"CIA","entrezGeneId":"25842"},{"alias":"HSPC146","entrezGeneId":"25842"},{"alias":"2C4D","entrezGeneId":"25843"},{"alias":"CGI-95","entrezGeneId":"25843"},{"alias":"MOB1","entrezGeneId":"25843"},{"alias":"MOB3","entrezGeneId":"25843"},{"alias":"MOBKL3","entrezGeneId":"25843"},{"alias":"PHOCN","entrezGeneId":"25843"},{"alias":"PREI3","entrezGeneId":"25843"},{"alias":"C6orf109","entrezGeneId":"25844"},{"alias":"dJ337H4.3","entrezGeneId":"25844"},{"alias":"FinGER3","entrezGeneId":"25844"},{"alias":"KLIP1","entrezGeneId":"25844"},{"alias":"APC13","entrezGeneId":"25847"},{"alias":"SWM1","entrezGeneId":"25847"},{"alias":"Cipar1","entrezGeneId":"25849"},{"alias":"DKFZP564O0823","entrezGeneId":"25849"},{"alias":"PARM-1","entrezGeneId":"25849"},{"alias":"WSC4","entrezGeneId":"25849"},{"alias":"HZF10","entrezGeneId":"25850"},{"alias":"GID5","entrezGeneId":"25852"},{"alias":"HSPC056","entrezGeneId":"25852"},{"alias":"S863-2","entrezGeneId":"25852"},{"alias":"VID28","entrezGeneId":"25852"},{"alias":"CT102","entrezGeneId":"25853"},{"alias":"KIAA1892","entrezGeneId":"25853"},{"alias":"TCC52","entrezGeneId":"25853"},{"alias":"WDR40A","entrezGeneId":"25853"},{"alias":"MST119","entrezGeneId":"25854"},{"alias":"MSTP119","entrezGeneId":"25854"},{"alias":"C11orf20","entrezGeneId":"25858"},{"alias":"TEX40","entrezGeneId":"25858"},{"alias":"NCRNA00206","entrezGeneId":"25859"},{"alias":"CIP98","entrezGeneId":"25861"},{"alias":"DFNB31","entrezGeneId":"25861"},{"alias":"PDZD7B","entrezGeneId":"25861"},{"alias":"USH2D","entrezGeneId":"25861"},{"alias":"WI","entrezGeneId":"25861"},{"alias":"DORZ1","entrezGeneId":"25864"},{"alias":"HSPC187","entrezGeneId":"25865"},{"alias":"nPKC-D2","entrezGeneId":"25865"},{"alias":"PKD2","entrezGeneId":"25865"},{"alias":"pFGE","entrezGeneId":"25870"},{"alias":"C3orf17","entrezGeneId":"25871"},{"alias":"NET17","entrezGeneId":"25871"},{"alias":"L36","entrezGeneId":"25873"},{"alias":"BRP44","entrezGeneId":"25874"},{"alias":"SLC54A2","entrezGeneId":"25874"},{"alias":"1110019O13Rik","entrezGeneId":"25875"},{"alias":"HCCR","entrezGeneId":"25875"},{"alias":"HCCR-1","entrezGeneId":"25875"},{"alias":"HCCR-2","entrezGeneId":"25875"},{"alias":"HCCR1","entrezGeneId":"25875"},{"alias":"HCCR2","entrezGeneId":"25875"},{"alias":"HCRR-2","entrezGeneId":"25875"},{"alias":"SLC55A3","entrezGeneId":"25875"},{"alias":"C20orf28","entrezGeneId":"25876"},{"alias":"CLAMP","entrezGeneId":"25876"},{"alias":"SPEF1A","entrezGeneId":"25876"},{"alias":"GM83","entrezGeneId":"25879"},{"alias":"HSPC064","entrezGeneId":"25879"},{"alias":"Sof1","entrezGeneId":"25879"},{"alias":"WDSOF1","entrezGeneId":"25879"},{"alias":"C16orf51","entrezGeneId":"25880"},{"alias":"BNF1","entrezGeneId":"25884"},{"alias":"CHL2","entrezGeneId":"25884"},{"alias":"A190","entrezGeneId":"25885"},{"alias":"AFDCIN","entrezGeneId":"25885"},{"alias":"RPA1","entrezGeneId":"25885"},{"alias":"RPA194","entrezGeneId":"25885"},{"alias":"RPO1-4","entrezGeneId":"25885"},{"alias":"RPO14","entrezGeneId":"25885"},{"alias":"PIX2","entrezGeneId":"25886"},{"alias":"SOFT","entrezGeneId":"25886"},{"alias":"WDR51A","entrezGeneId":"25886"},{"alias":"ZFP100","entrezGeneId":"25888"},{"alias":"ZN473","entrezGeneId":"25888"},{"alias":"NESHBP","entrezGeneId":"25890"},{"alias":"TARSH","entrezGeneId":"25890"},{"alias":"DKFZP586H2123","entrezGeneId":"25891"},{"alias":"FP938","entrezGeneId":"25891"},{"alias":"RAMP","entrezGeneId":"25891"},{"alias":"BIA2","entrezGeneId":"25893"},{"alias":"ARHGEF44","entrezGeneId":"25894"},{"alias":"PRTPHN1","entrezGeneId":"25894"},{"alias":"SCA4","entrezGeneId":"25894"},{"alias":"FAM119B","entrezGeneId":"25895"},{"alias":"METTL21B","entrezGeneId":"25895"},{"alias":"C1orf73","entrezGeneId":"25896"},{"alias":"INT7","entrezGeneId":"25896"},{"alias":"RNF19","entrezGeneId":"25897"},{"alias":"ARNIP","entrezGeneId":"25898"},{"alias":"CHIMP","entrezGeneId":"25898"},{"alias":"PIRH2","entrezGeneId":"25898"},{"alias":"PRO1996","entrezGeneId":"25898"},{"alias":"RNF199","entrezGeneId":"25898"},{"alias":"ZCHY","entrezGeneId":"25898"},{"alias":"ZNF363","entrezGeneId":"25898"},{"alias":"HOM-TES-103","entrezGeneId":"25900"},{"alias":"IFFO","entrezGeneId":"25900"},{"alias":"C6orf80","entrezGeneId":"25901"},{"alias":"CCRL1AP","entrezGeneId":"25901"},{"alias":"dJ292B18.2","entrezGeneId":"25902"},{"alias":"FTHFSDC1","entrezGeneId":"25902"},{"alias":"MTC1THFS","entrezGeneId":"25902"},{"alias":"APC15","entrezGeneId":"25906"},{"alias":"C11orf51","entrezGeneId":"25906"},{"alias":"HSPC020","entrezGeneId":"25906"},{"alias":"BBP","entrezGeneId":"25907"},{"alias":"p40BBP","entrezGeneId":"25907"},{"alias":"RIS1","entrezGeneId":"25907"},{"alias":"ELYS","entrezGeneId":"25909"},{"alias":"MST108","entrezGeneId":"25909"},{"alias":"MSTP108","entrezGeneId":"25909"},{"alias":"TMBS62","entrezGeneId":"25909"},{"alias":"HSPC012","entrezGeneId":"25912"},{"alias":"NICE-3","entrezGeneId":"25912"},{"alias":"NICE3","entrezGeneId":"25912"},{"alias":"NS5ATP4","entrezGeneId":"25912"},{"alias":"S863-3","entrezGeneId":"25912"},{"alias":"CMM10","entrezGeneId":"25913"},{"alias":"GLM9","entrezGeneId":"25913"},{"alias":"HPOT1","entrezGeneId":"25913"},{"alias":"MSSP","entrezGeneId":"25914"},{"alias":"2P1","entrezGeneId":"25915"},{"alias":"C3orf60","entrezGeneId":"25915"},{"alias":"E3-3","entrezGeneId":"25915"},{"alias":"COBRA1","entrezGeneId":"25920"},{"alias":"NELF-B","entrezGeneId":"25920"},{"alias":"DHHC5","entrezGeneId":"25921"},{"alias":"ZNF375","entrezGeneId":"25921"},{"alias":"HSN1F","entrezGeneId":"25923"},{"alias":"SLAC2-C","entrezGeneId":"25924"},{"alias":"SLAC2C","entrezGeneId":"25924"},{"alias":"EHZF","entrezGeneId":"25925"},{"alias":"Evi3","entrezGeneId":"25925"},{"alias":"C2orf32","entrezGeneId":"25927"},{"alias":"CRIP1","entrezGeneId":"25927"},{"alias":"CDA019","entrezGeneId":"25928"},{"alias":"DAND7","entrezGeneId":"25928"},{"alias":"ECTODIN","entrezGeneId":"25928"},{"alias":"USAG1","entrezGeneId":"25928"},{"alias":"GEMIN-5","entrezGeneId":"25929"},{"alias":"HD-PTP","entrezGeneId":"25930"},{"alias":"HDPTP","entrezGeneId":"25930"},{"alias":"PTP-TD14","entrezGeneId":"25930"},{"alias":"CLIC4L","entrezGeneId":"25932"},{"alias":"H1","entrezGeneId":"25932"},{"alias":"huH1","entrezGeneId":"25932"},{"alias":"MTCLIC","entrezGeneId":"25932"},{"alias":"p64H1","entrezGeneId":"25932"},{"alias":"HSPC299","entrezGeneId":"25934"},{"alias":"NIPSNAP4","entrezGeneId":"25934"},{"alias":"TASSC","entrezGeneId":"25934"},{"alias":"C1orf48","entrezGeneId":"25936"},{"alias":"DC8","entrezGeneId":"25936"},{"alias":"MIS14","entrezGeneId":"25936"},{"alias":"TAZ","entrezGeneId":"25937"},{"alias":"C14orf125","entrezGeneId":"25938"},{"alias":"CHBL2","entrezGeneId":"25939"},{"alias":"DCIP","entrezGeneId":"25939"},{"alias":"HDDC1","entrezGeneId":"25939"},{"alias":"MOP-5","entrezGeneId":"25939"},{"alias":"SBBI88","entrezGeneId":"25939"},{"alias":"C18orf10","entrezGeneId":"25941"},{"alias":"HMFN0601","entrezGeneId":"25941"},{"alias":"L17","entrezGeneId":"25941"},{"alias":"PGs2","entrezGeneId":"25941"},{"alias":"WITKOS","entrezGeneId":"25942"},{"alias":"CD113","entrezGeneId":"25945"},{"alias":"CDW113","entrezGeneId":"25945"},{"alias":"NECTIN-3","entrezGeneId":"25945"},{"alias":"PPR3","entrezGeneId":"25945"},{"alias":"PRR3","entrezGeneId":"25945"},{"alias":"PVRL3","entrezGeneId":"25945"},{"alias":"PVRR3","entrezGeneId":"25945"},{"alias":"HZF","entrezGeneId":"25946"},{"alias":"RZF","entrezGeneId":"25946"},{"alias":"ZFP385","entrezGeneId":"25946"},{"alias":"ZNF385","entrezGeneId":"25946"},{"alias":"BKLHD1","entrezGeneId":"25948"},{"alias":"CBPIN","entrezGeneId":"25949"},{"alias":"fSAP29","entrezGeneId":"25949"},{"alias":"NTC31","entrezGeneId":"25949"},{"alias":"P29","entrezGeneId":"25949"},{"alias":"RSUME","entrezGeneId":"25950"},{"alias":"BRP17","entrezGeneId":"25953"},{"alias":"DYT8","entrezGeneId":"25953"},{"alias":"FKSG19","entrezGeneId":"25953"},{"alias":"FPD1","entrezGeneId":"25953"},{"alias":"KIPP1184","entrezGeneId":"25953"},{"alias":"MR-1","entrezGeneId":"25953"},{"alias":"MR1","entrezGeneId":"25953"},{"alias":"PDC","entrezGeneId":"25953"},{"alias":"PKND1","entrezGeneId":"25953"},{"alias":"PNKD1","entrezGeneId":"25953"},{"alias":"TAHCCP2","entrezGeneId":"25953"},{"alias":"SEC31B-1","entrezGeneId":"25956"},{"alias":"SEC31L2","entrezGeneId":"25956"},{"alias":"bA98I9.2","entrezGeneId":"25957"},{"alias":"C6orf111","entrezGeneId":"25957"},{"alias":"HSPC306","entrezGeneId":"25957"},{"alias":"SFRS18","entrezGeneId":"25957"},{"alias":"SRrp130","entrezGeneId":"25957"},{"alias":"ANKRD25","entrezGeneId":"25959"},{"alias":"MXRA3","entrezGeneId":"25959"},{"alias":"NPHS16","entrezGeneId":"25959"},{"alias":"PPKWH","entrezGeneId":"25959"},{"alias":"SIP","entrezGeneId":"25959"},{"alias":"GPR124","entrezGeneId":"25960"},{"alias":"TEM5","entrezGeneId":"25960"},{"alias":"fSAP121","entrezGeneId":"25962"},{"alias":"KIAA1429","entrezGeneId":"25962"},{"alias":"MSTP054","entrezGeneId":"25962"},{"alias":"C21orf25","entrezGeneId":"25966"},{"alias":"C21orf258","entrezGeneId":"25966"},{"alias":"TMEM24L","entrezGeneId":"25966"},{"alias":"PSM","entrezGeneId":"25970"},{"alias":"SH2B","entrezGeneId":"25970"},{"alias":"GMH1","entrezGeneId":"25972"},{"alias":"HSD23","entrezGeneId":"25972"},{"alias":"PDLs22","entrezGeneId":"25972"},{"alias":"UNCL","entrezGeneId":"25972"},{"alias":"URP","entrezGeneId":"25972"},{"alias":"MT-PRORS","entrezGeneId":"25973"},{"alias":"proRS","entrezGeneId":"25973"},{"alias":"cblC","entrezGeneId":"25974"},{"alias":"MAEG","entrezGeneId":"25975"},{"alias":"W80","entrezGeneId":"25975"},{"alias":"ARTD14","entrezGeneId":"25976"},{"alias":"PARP7","entrezGeneId":"25976"},{"alias":"pART14","entrezGeneId":"25976"},{"alias":"EIEE21","entrezGeneId":"25977"},{"alias":"ALS17","entrezGeneId":"25978"},{"alias":"CHMP2.5","entrezGeneId":"25978"},{"alias":"DMT1","entrezGeneId":"25978"},{"alias":"VPS2-2","entrezGeneId":"25978"},{"alias":"VPS2B","entrezGeneId":"25978"},{"alias":"CGI-93","entrezGeneId":"25979"},{"alias":"SDR32C1","entrezGeneId":"25979"},{"alias":"C20orf4","entrezGeneId":"25980"},{"alias":"CGI-23","entrezGeneId":"25980"},{"alias":"CILD37","entrezGeneId":"25981"},{"alias":"DNAHC1","entrezGeneId":"25981"},{"alias":"HDHC7","entrezGeneId":"25981"},{"alias":"HL-11","entrezGeneId":"25981"},{"alias":"HL11","entrezGeneId":"25981"},{"alias":"HSRF-1","entrezGeneId":"25981"},{"alias":"SPGF18","entrezGeneId":"25981"},{"alias":"XLHSRF-1","entrezGeneId":"25981"},{"alias":"C14orf120","entrezGeneId":"25983"},{"alias":"CANu1","entrezGeneId":"25983"},{"alias":"LCP5","entrezGeneId":"25983"},{"alias":"lpd-2","entrezGeneId":"25983"},{"alias":"NGD","entrezGeneId":"25983"},{"alias":"CK23","entrezGeneId":"25984"},{"alias":"HAIK1","entrezGeneId":"25984"},{"alias":"K23","entrezGeneId":"25984"},{"alias":"E2IG4","entrezGeneId":"25987"},{"alias":"LRRC54","entrezGeneId":"25987"},{"alias":"TSK","entrezGeneId":"25987"},{"alias":"HiNF-P","entrezGeneId":"25988"},{"alias":"MIZF","entrezGeneId":"25988"},{"alias":"ZNF743","entrezGeneId":"25988"},{"alias":"IRE-BP1","entrezGeneId":"25992"},{"alias":"Snep","entrezGeneId":"25992"},{"alias":"SST3","entrezGeneId":"25992"},{"alias":"HIG1","entrezGeneId":"25994"},{"alias":"RCF1a","entrezGeneId":"25994"},{"alias":"CGI-114","entrezGeneId":"25996"},{"alias":"REX2","entrezGeneId":"25996"},{"alias":"RFN","entrezGeneId":"25996"},{"alias":"SFN","entrezGeneId":"25996"},{"alias":"BTBD26","entrezGeneId":"25998"},{"alias":"BTKI","entrezGeneId":"25998"},{"alias":"CLIPR-59","entrezGeneId":"25999"},{"alias":"CLIPR59","entrezGeneId":"25999"},{"alias":"RSNL1","entrezGeneId":"25999"},{"alias":"EPI64B","entrezGeneId":"26000"},{"alias":"FP2461","entrezGeneId":"26000"},{"alias":"5730408C10Rik","entrezGeneId":"26001"},{"alias":"LP2254","entrezGeneId":"26001"},{"alias":"RING105","entrezGeneId":"26001"},{"alias":"dJ248E1.1","entrezGeneId":"26002"},{"alias":"MOX","entrezGeneId":"26002"},{"alias":"PRO5780","entrezGeneId":"26002"},{"alias":"GOLPH6","entrezGeneId":"26003"},{"alias":"GRASP55","entrezGeneId":"26003"},{"alias":"GRS2","entrezGeneId":"26003"},{"alias":"p59","entrezGeneId":"26003"},{"alias":"OFD14","entrezGeneId":"26005"},{"alias":"DAK","entrezGeneId":"26007"},{"alias":"NET45","entrezGeneId":"26007"},{"alias":"ATAC1","entrezGeneId":"26009"},{"alias":"DNAPTP6","entrezGeneId":"26010"},{"alias":"SGNP","entrezGeneId":"26010"},{"alias":"Doc4","entrezGeneId":"26011"},{"alias":"ETM5","entrezGeneId":"26011"},{"alias":"ODZ4","entrezGeneId":"26011"},{"alias":"ten-4","entrezGeneId":"26011"},{"alias":"Ten-M4","entrezGeneId":"26011"},{"alias":"TNM4","entrezGeneId":"26011"},{"alias":"HH9","entrezGeneId":"26012"},{"alias":"NELF","entrezGeneId":"26012"},{"alias":"dJ138B7.3","entrezGeneId":"26013"},{"alias":"H-L(3)MBT","entrezGeneId":"26013"},{"alias":"L3MBTL","entrezGeneId":"26013"},{"alias":"ZC2HC3","entrezGeneId":"26013"},{"alias":"OTAG-12","entrezGeneId":"26017"},{"alias":"OTAG12","entrezGeneId":"26017"},{"alias":"LIG-1","entrezGeneId":"26018"},{"alias":"LIG1","entrezGeneId":"26018"},{"alias":"HUPF2","entrezGeneId":"26019"},{"alias":"RENT2","entrezGeneId":"26019"},{"alias":"smg-3","entrezGeneId":"26019"},{"alias":"LRP-10","entrezGeneId":"26020"},{"alias":"LRP9","entrezGeneId":"26020"},{"alias":"MST087","entrezGeneId":"26020"},{"alias":"MSTP087","entrezGeneId":"26020"},{"alias":"TADA1","entrezGeneId":"26022"},{"alias":"CDH21","entrezGeneId":"26025"},{"alias":"FIB3","entrezGeneId":"26025"},{"alias":"PCDH-GAMMA-A12","entrezGeneId":"26025"},{"alias":"BFIT","entrezGeneId":"26027"},{"alias":"STARD14","entrezGeneId":"26027"},{"alias":"THEA","entrezGeneId":"26027"},{"alias":"THEM1","entrezGeneId":"26027"},{"alias":"ARHGEF43","entrezGeneId":"26030"},{"alias":"KIAA0599","entrezGeneId":"26030"},{"alias":"ORP-3","entrezGeneId":"26031"},{"alias":"ORP3","entrezGeneId":"26031"},{"alias":"OSBP3","entrezGeneId":"26031"},{"alias":"ALP","entrezGeneId":"26033"},{"alias":"bA338L11.1","entrezGeneId":"26033"},{"alias":"bA454H24.1","entrezGeneId":"26033"},{"alias":"PIP3-E","entrezGeneId":"26034"},{"alias":"HSEPI","entrezGeneId":"26035"},{"alias":"COASTER","entrezGeneId":"26036"},{"alias":"dJ417I1.1","entrezGeneId":"26036"},{"alias":"E6TP1","entrezGeneId":"26037"},{"alias":"CHD-5","entrezGeneId":"26038"},{"alias":"CREST","entrezGeneId":"26039"},{"alias":"LP2261","entrezGeneId":"26039"},{"alias":"MRD29","entrezGeneId":"26040"},{"alias":"SEB","entrezGeneId":"26040"},{"alias":"UBXD7","entrezGeneId":"26043"},{"alias":"C21orf10","entrezGeneId":"26046"},{"alias":"C21orf98","entrezGeneId":"26046"},{"alias":"RNF160","entrezGeneId":"26046"},{"alias":"ZNF294","entrezGeneId":"26046"},{"alias":"AUTS15","entrezGeneId":"26047"},{"alias":"CASPR2","entrezGeneId":"26047"},{"alias":"CDFE","entrezGeneId":"26047"},{"alias":"NRXN4","entrezGeneId":"26047"},{"alias":"PTHSL1","entrezGeneId":"26047"},{"alias":"ZKSCAN18","entrezGeneId":"26048"},{"alias":"ZSCAN50","entrezGeneId":"26048"},{"alias":"SLAP75","entrezGeneId":"26049"},{"alias":"bA364G4.2","entrezGeneId":"26050"},{"alias":"LRRC11","entrezGeneId":"26050"},{"alias":"ANKRD4","entrezGeneId":"26051"},{"alias":"TIMAP","entrezGeneId":"26051"},{"alias":"Dyna III","entrezGeneId":"26052"},{"alias":"FBRSL2","entrezGeneId":"26053"},{"alias":"MRD26","entrezGeneId":"26053"},{"alias":"SSP1","entrezGeneId":"26054"},{"alias":"SUSP1","entrezGeneId":"26054"},{"alias":"GAF1","entrezGeneId":"26056"},{"alias":"pp75","entrezGeneId":"26056"},{"alias":"RIP11","entrezGeneId":"26056"},{"alias":"GTAR","entrezGeneId":"26057"},{"alias":"MASK2","entrezGeneId":"26057"},{"alias":"NY-BR-16","entrezGeneId":"26057"},{"alias":"GYF2","entrezGeneId":"26058"},{"alias":"PARK11","entrezGeneId":"26058"},{"alias":"PERQ2","entrezGeneId":"26058"},{"alias":"PERQ3","entrezGeneId":"26058"},{"alias":"TNRC15","entrezGeneId":"26058"},{"alias":"CAST","entrezGeneId":"26059"},{"alias":"CAST1","entrezGeneId":"26059"},{"alias":"ELKSL","entrezGeneId":"26059"},{"alias":"SPBC110","entrezGeneId":"26059"},{"alias":"Spc110","entrezGeneId":"26059"},{"alias":"APPL","entrezGeneId":"26060"},{"alias":"DIP13alpha","entrezGeneId":"26060"},{"alias":"MODY14","entrezGeneId":"26060"},{"alias":"2-HPCL","entrezGeneId":"26061"},{"alias":"HPCL","entrezGeneId":"26061"},{"alias":"HPCL2","entrezGeneId":"26061"},{"alias":"PHYH2","entrezGeneId":"26061"},{"alias":"HYAL6","entrezGeneId":"26062"},{"alias":"HYAL6P","entrezGeneId":"26062"},{"alias":"PDCR","entrezGeneId":"26063"},{"alias":"SDR17C1","entrezGeneId":"26063"},{"alias":"NORPEG","entrezGeneId":"26064"},{"alias":"RAI13","entrezGeneId":"26064"},{"alias":"C19orf13","entrezGeneId":"26065"},{"alias":"FAM61A","entrezGeneId":"26065"},{"alias":"RAP55","entrezGeneId":"26065"},{"alias":"RAP55A","entrezGeneId":"26065"},{"alias":"CXX1b","entrezGeneId":"26071"},{"alias":"FAM127B","entrezGeneId":"26071"},{"alias":"MAR8A","entrezGeneId":"26071"},{"alias":"SIRH6","entrezGeneId":"26071"},{"alias":"p38","entrezGeneId":"26073"},{"alias":"PDIP38","entrezGeneId":"26073"},{"alias":"POLD4","entrezGeneId":"26073"},{"alias":"C20orf26","entrezGeneId":"26074"},{"alias":"CaM-IP3","entrezGeneId":"26074"},{"alias":"dJ1002M8.3","entrezGeneId":"26074"},{"alias":"dJ1178H5.4","entrezGeneId":"26074"},{"alias":"LINC00281","entrezGeneId":"26080"},{"alias":"NCRNA00281","entrezGeneId":"26080"},{"alias":"DKFZP434L187","entrezGeneId":"26082"},{"alias":"CSGEF","entrezGeneId":"26084"},{"alias":"HMFN1864","entrezGeneId":"26084"},{"alias":"SGEF","entrezGeneId":"26084"},{"alias":"KLK-L4","entrezGeneId":"26085"},{"alias":"KLKL4","entrezGeneId":"26085"},{"alias":"AGS3","entrezGeneId":"26086"},{"alias":"ABHD12A","entrezGeneId":"26090"},{"alias":"BEM46L2","entrezGeneId":"26090"},{"alias":"C20orf22","entrezGeneId":"26090"},{"alias":"dJ965G21.2","entrezGeneId":"26090"},{"alias":"PHARC","entrezGeneId":"26090"},{"alias":"LAP1","entrezGeneId":"26092"},{"alias":"LAP1B","entrezGeneId":"26092"},{"alias":"LGMD2Y","entrezGeneId":"26092"},{"alias":"WDR21","entrezGeneId":"26094"},{"alias":"WDR21A","entrezGeneId":"26094"},{"alias":"bA142I17.1","entrezGeneId":"26095"},{"alias":"bA42B19.1","entrezGeneId":"26095"},{"alias":"CT126","entrezGeneId":"26095"},{"alias":"PTPN20A","entrezGeneId":"26095"},{"alias":"PTPN20B","entrezGeneId":"26095"},{"alias":"C10orf77","entrezGeneId":"26097"},{"alias":"C1orf77","entrezGeneId":"26097"},{"alias":"FL-SRAG","entrezGeneId":"26097"},{"alias":"FOP","entrezGeneId":"26097"},{"alias":"pp7704","entrezGeneId":"26097"},{"alias":"SRAG","entrezGeneId":"26097"},{"alias":"SRAG-3","entrezGeneId":"26097"},{"alias":"SRAG-5","entrezGeneId":"26097"},{"alias":"C10orf137","entrezGeneId":"26098"},{"alias":"C1orf144","entrezGeneId":"26099"},{"alias":"ATG18B","entrezGeneId":"26100"},{"alias":"Atg21","entrezGeneId":"26100"},{"alias":"CGI-50","entrezGeneId":"26100"},{"alias":"WIPI-2","entrezGeneId":"26100"},{"alias":"FIGLER9","entrezGeneId":"26103"},{"alias":"LRRC21","entrezGeneId":"26103"},{"alias":"PAL","entrezGeneId":"26103"},{"alias":"rols","entrezGeneId":"26115"},{"alias":"ROLSA","entrezGeneId":"26115"},{"alias":"SWIP1","entrezGeneId":"26118"},{"alias":"WSB-1","entrezGeneId":"26118"},{"alias":"ARH","entrezGeneId":"26119"},{"alias":"ARH1","entrezGeneId":"26119"},{"alias":"ARH2","entrezGeneId":"26119"},{"alias":"FHCB1","entrezGeneId":"26119"},{"alias":"FHCB2","entrezGeneId":"26119"},{"alias":"NY-BR-99","entrezGeneId":"26121"},{"alias":"PRP31","entrezGeneId":"26121"},{"alias":"RP11","entrezGeneId":"26121"},{"alias":"SNRNP61","entrezGeneId":"26121"},{"alias":"EPC-LIKE","entrezGeneId":"26122"},{"alias":"C10orf61","entrezGeneId":"26123"},{"alias":"JBTS18","entrezGeneId":"26123"},{"alias":"OFD4","entrezGeneId":"26123"},{"alias":"TECT3","entrezGeneId":"26123"},{"alias":"HSPC123-like","entrezGeneId":"26127"},{"alias":"WIT3.0","entrezGeneId":"26127"},{"alias":"KBP","entrezGeneId":"26128"},{"alias":"KIAA1279","entrezGeneId":"26128"},{"alias":"TTC20","entrezGeneId":"26128"},{"alias":"GAPex-5","entrezGeneId":"26130"},{"alias":"GAPEX5","entrezGeneId":"26130"},{"alias":"RAP6","entrezGeneId":"26130"},{"alias":"C20orf188","entrezGeneId":"26133"},{"alias":"PPP1R158","entrezGeneId":"26133"},{"alias":"TRRP4AP","entrezGeneId":"26133"},{"alias":"TRUSS","entrezGeneId":"26133"},{"alias":"bA235C23.1","entrezGeneId":"26134"},{"alias":"GARNL2","entrezGeneId":"26134"},{"alias":"GARNL2P","entrezGeneId":"26134"},{"alias":"RALGAPA1P","entrezGeneId":"26134"},{"alias":"CGI-55","entrezGeneId":"26135"},{"alias":"CHD3IP","entrezGeneId":"26135"},{"alias":"HABP4L","entrezGeneId":"26135"},{"alias":"PAI-RBP1","entrezGeneId":"26135"},{"alias":"PAIRBP1","entrezGeneId":"26135"},{"alias":"TESS","entrezGeneId":"26136"},{"alias":"TESS-2","entrezGeneId":"26136"},{"alias":"DPZF","entrezGeneId":"26137"},{"alias":"HOF","entrezGeneId":"26137"},{"alias":"ODA-8S","entrezGeneId":"26137"},{"alias":"PRIMS","entrezGeneId":"26137"},{"alias":"ZNF288","entrezGeneId":"26137"},{"alias":"C8orf71","entrezGeneId":"26138"},{"alias":"HOTTL","entrezGeneId":"26140"},{"alias":"IFT54","entrezGeneId":"26146"},{"alias":"MIP-T3","entrezGeneId":"26146"},{"alias":"MIPT3","entrezGeneId":"26146"},{"alias":"SLSN9","entrezGeneId":"26146"},{"alias":"MTF2L1","entrezGeneId":"26147"},{"alias":"PCL3","entrezGeneId":"26147"},{"alias":"TDRD19B","entrezGeneId":"26147"},{"alias":"C22orf11","entrezGeneId":"26150"},{"alias":"TRIB","entrezGeneId":"26150"},{"alias":"EBSP, hNATL","entrezGeneId":"26151"},{"alias":"ARCI4A","entrezGeneId":"26154"},{"alias":"ARCI4B","entrezGeneId":"26154"},{"alias":"ICR2B","entrezGeneId":"26154"},{"alias":"LI2","entrezGeneId":"26154"},{"alias":"NET15","entrezGeneId":"26155"},{"alias":"NET7","entrezGeneId":"26155"},{"alias":"NIR","entrezGeneId":"26155"},{"alias":"PPP1R112","entrezGeneId":"26155"},{"alias":"CSIG","entrezGeneId":"26156"},{"alias":"L12","entrezGeneId":"26156"},{"alias":"PBK1","entrezGeneId":"26156"},{"alias":"UTP30","entrezGeneId":"26156"},{"alias":"HIMAP2","entrezGeneId":"26157"},{"alias":"IAN12","entrezGeneId":"26157"},{"alias":"IMAP2","entrezGeneId":"26157"},{"alias":"BBS20","entrezGeneId":"26160"},{"alias":"NPHP17","entrezGeneId":"26160"},{"alias":"osm-1","entrezGeneId":"26160"},{"alias":"RP71","entrezGeneId":"26160"},{"alias":"SLB","entrezGeneId":"26160"},{"alias":"SRTD10","entrezGeneId":"26160"},{"alias":"wim","entrezGeneId":"26160"},{"alias":"dJ1005F21.2","entrezGeneId":"26164"},{"alias":"GTPBP5","entrezGeneId":"26164"},{"alias":"ObgH1","entrezGeneId":"26164"},{"alias":"AEP1","entrezGeneId":"26165"},{"alias":"C9orf36","entrezGeneId":"26165"},{"alias":"C9orf36A","entrezGeneId":"26165"},{"alias":"FAM75A4","entrezGeneId":"26165"},{"alias":"FAM75A7","entrezGeneId":"26165"},{"alias":"SPATA31A4","entrezGeneId":"26165"},{"alias":"CT145","entrezGeneId":"26166"},{"alias":"PRTD-NY2","entrezGeneId":"26166"},{"alias":"PCDH-BETA5","entrezGeneId":"26167"},{"alias":"SMT3IP1","entrezGeneId":"26168"},{"alias":"SSP3","entrezGeneId":"26168"},{"alias":"Ulp1","entrezGeneId":"26168"},{"alias":"INT1","entrezGeneId":"26173"},{"alias":"NET28","entrezGeneId":"26173"},{"alias":"C14orf109","entrezGeneId":"26175"},{"alias":"hg91","entrezGeneId":"26184"},{"alias":"OLFMF2","entrezGeneId":"26184"},{"alias":"OR16-3","entrezGeneId":"26184"},{"alias":"OR1F11","entrezGeneId":"26184"},{"alias":"OR1F2","entrezGeneId":"26184"},{"alias":"OR1F3P","entrezGeneId":"26184"},{"alias":"HSTPCR27","entrezGeneId":"26188"},{"alias":"OR1-42","entrezGeneId":"26188"},{"alias":"OR1.5.10","entrezGeneId":"26188"},{"alias":"ORL211","entrezGeneId":"26188"},{"alias":"TPCR27","entrezGeneId":"26188"},{"alias":"OR17-6","entrezGeneId":"26189"},{"alias":"FBW2","entrezGeneId":"26190"},{"alias":"Fwd2","entrezGeneId":"26190"},{"alias":"Md6","entrezGeneId":"26190"},{"alias":"LYP","entrezGeneId":"26191"},{"alias":"LYP1","entrezGeneId":"26191"},{"alias":"LYP2","entrezGeneId":"26191"},{"alias":"PEP","entrezGeneId":"26191"},{"alias":"PTPN22.5","entrezGeneId":"26191"},{"alias":"PTPN22.6","entrezGeneId":"26191"},{"alias":"PTPN8","entrezGeneId":"26191"},{"alias":"GMEB-2","entrezGeneId":"26205"},{"alias":"P79PIF","entrezGeneId":"26205"},{"alias":"PIF79","entrezGeneId":"26205"},{"alias":"BS-84","entrezGeneId":"26206"},{"alias":"CILD28","entrezGeneId":"26206"},{"alias":"CT142","entrezGeneId":"26206"},{"alias":"HSD-1","entrezGeneId":"26206"},{"alias":"hSMP-1","entrezGeneId":"26206"},{"alias":"SMP1","entrezGeneId":"26206"},{"alias":"SPAG3","entrezGeneId":"26206"},{"alias":"M-RDGB-beta","entrezGeneId":"26207"},{"alias":"MRDGBbeta","entrezGeneId":"26207"},{"alias":"RDGB-BETA","entrezGeneId":"26207"},{"alias":"RDGBB","entrezGeneId":"26207"},{"alias":"RDGBB1","entrezGeneId":"26207"},{"alias":"7M1-2","entrezGeneId":"26211"},{"alias":"OLF3","entrezGeneId":"26211"},{"alias":"OR14-60","entrezGeneId":"26211"},{"alias":"OR2F3","entrezGeneId":"26211"},{"alias":"OR2F3P","entrezGeneId":"26211"},{"alias":"OR2F4","entrezGeneId":"26211"},{"alias":"OR2F5","entrezGeneId":"26211"},{"alias":"OR7-139","entrezGeneId":"26211"},{"alias":"OR7-140","entrezGeneId":"26211"},{"alias":"dJ408B20.2","entrezGeneId":"26212"},{"alias":"OR2B1","entrezGeneId":"26212"},{"alias":"OR2B1P","entrezGeneId":"26212"},{"alias":"OR2B5","entrezGeneId":"26212"},{"alias":"OR2B6P","entrezGeneId":"26212"},{"alias":"OR5-40","entrezGeneId":"26212"},{"alias":"OR5-41","entrezGeneId":"26212"},{"alias":"OR6-31","entrezGeneId":"26212"},{"alias":"HSHTPCRX01","entrezGeneId":"26219"},{"alias":"HTPCRX01","entrezGeneId":"26219"},{"alias":"OR9-21","entrezGeneId":"26219"},{"alias":"LINC00037","entrezGeneId":"26220"},{"alias":"NCRNA00037","entrezGeneId":"26220"},{"alias":"DGS-B","entrezGeneId":"26222"},{"alias":"Fbl21","entrezGeneId":"26223"},{"alias":"FBL3B","entrezGeneId":"26223"},{"alias":"FBXL3B","entrezGeneId":"26223"},{"alias":"FBXL3P","entrezGeneId":"26223"},{"alias":"FBL3","entrezGeneId":"26224"},{"alias":"FBL3A","entrezGeneId":"26224"},{"alias":"FBXL3A","entrezGeneId":"26224"},{"alias":"ARFLP5","entrezGeneId":"26225"},{"alias":"ARL5","entrezGeneId":"26225"},{"alias":"FBW3","entrezGeneId":"26226"},{"alias":"FBXW3","entrezGeneId":"26226"},{"alias":"SHFM3P1","entrezGeneId":"26226"},{"alias":"3-PGDH","entrezGeneId":"26227"},{"alias":"3PGDH","entrezGeneId":"26227"},{"alias":"HEL-S-113","entrezGeneId":"26227"},{"alias":"NLS","entrezGeneId":"26227"},{"alias":"NLS1","entrezGeneId":"26227"},{"alias":"PDG","entrezGeneId":"26227"},{"alias":"PGAD","entrezGeneId":"26227"},{"alias":"PGD","entrezGeneId":"26227"},{"alias":"PGDH","entrezGeneId":"26227"},{"alias":"PHGDHD","entrezGeneId":"26227"},{"alias":"SERA","entrezGeneId":"26227"},{"alias":"BRDG1","entrezGeneId":"26228"},{"alias":"STAP-1","entrezGeneId":"26228"},{"alias":"GLCATI","entrezGeneId":"26229"},{"alias":"glcUAT-I","entrezGeneId":"26229"},{"alias":"JDSCD","entrezGeneId":"26229"},{"alias":"STEF","entrezGeneId":"26230"},{"alias":"TIAM-2","entrezGeneId":"26230"},{"alias":"FBL9","entrezGeneId":"26231"},{"alias":"FBXL9","entrezGeneId":"26231"},{"alias":"FBG1","entrezGeneId":"26232"},{"alias":"Fbs1","entrezGeneId":"26232"},{"alias":"FBX2","entrezGeneId":"26232"},{"alias":"NFB42","entrezGeneId":"26232"},{"alias":"OCP1","entrezGeneId":"26232"},{"alias":"FBL6","entrezGeneId":"26233"},{"alias":"FBL6A","entrezGeneId":"26233"},{"alias":"PP14630","entrezGeneId":"26233"},{"alias":"FBL4","entrezGeneId":"26234"},{"alias":"FBL5","entrezGeneId":"26234"},{"alias":"FLR1","entrezGeneId":"26234"},{"alias":"FBL4","entrezGeneId":"26235"},{"alias":"FBL5","entrezGeneId":"26235"},{"alias":"MTDPS13","entrezGeneId":"26235"},{"alias":"C6orf123","entrezGeneId":"26238"},{"alias":"dJ431P23.4","entrezGeneId":"26238"},{"alias":"HGC6.2","entrezGeneId":"26238"},{"alias":"LINC01557","entrezGeneId":"26238"},{"alias":"LEP10","entrezGeneId":"26239"},{"alias":"SPRL1B","entrezGeneId":"26239"},{"alias":"XP5","entrezGeneId":"26239"},{"alias":"D6S2654E","entrezGeneId":"26240"},{"alias":"X5L","entrezGeneId":"26240"},{"alias":"HSHTPCRX11","entrezGeneId":"26242"},{"alias":"HTPCRX11","entrezGeneId":"26242"},{"alias":"OR4C1","entrezGeneId":"26242"},{"alias":"HSHTPCRX18","entrezGeneId":"26245"},{"alias":"HTPCRX18","entrezGeneId":"26245"},{"alias":"OR1-55","entrezGeneId":"26245"},{"alias":"OST710","entrezGeneId":"26245"},{"alias":"TPCR100","entrezGeneId":"26245"},{"alias":"HSHTPCRH07","entrezGeneId":"26246"},{"alias":"HTPCRH07","entrezGeneId":"26246"},{"alias":"OR1-48","entrezGeneId":"26246"},{"alias":"OR2L12","entrezGeneId":"26246"},{"alias":"OR2L4P","entrezGeneId":"26246"},{"alias":"HSHTPCRX02","entrezGeneId":"26247"},{"alias":"HTPCRX02","entrezGeneId":"26247"},{"alias":"OR2L1","entrezGeneId":"26247"},{"alias":"OR2L7P","entrezGeneId":"26247"},{"alias":"HSHTPCRH06","entrezGeneId":"26248"},{"alias":"HTPCRH06","entrezGeneId":"26248"},{"alias":"OR2AN1P","entrezGeneId":"26248"},{"alias":"OR2AR1P","entrezGeneId":"26248"},{"alias":"PHA2D","entrezGeneId":"26249"},{"alias":"KCNF2","entrezGeneId":"26251"},{"alias":"KV6.2","entrezGeneId":"26251"},{"alias":"CLECSF9","entrezGeneId":"26253"},{"alias":"MINCLE","entrezGeneId":"26253"},{"alias":"OPT","entrezGeneId":"26254"},{"alias":"PTTG3","entrezGeneId":"26255"},{"alias":"rcPTTG1","entrezGeneId":"26255"},{"alias":"CABYRa","entrezGeneId":"26256"},{"alias":"CABYRc","entrezGeneId":"26256"},{"alias":"CABYRc/d","entrezGeneId":"26256"},{"alias":"CABYRe","entrezGeneId":"26256"},{"alias":"CBP86","entrezGeneId":"26256"},{"alias":"CT88","entrezGeneId":"26256"},{"alias":"FSP-2","entrezGeneId":"26256"},{"alias":"FSP2","entrezGeneId":"26256"},{"alias":"Nkx2-9","entrezGeneId":"26257"},{"alias":"NKX2.8","entrezGeneId":"26257"},{"alias":"NKX2H","entrezGeneId":"26257"},{"alias":"BLOS6","entrezGeneId":"26258"},{"alias":"HPS9","entrezGeneId":"26258"},{"alias":"PA","entrezGeneId":"26258"},{"alias":"PALLID","entrezGeneId":"26258"},{"alias":"PLDN","entrezGeneId":"26258"},{"alias":"FBW6","entrezGeneId":"26259"},{"alias":"FBW8","entrezGeneId":"26259"},{"alias":"FBX29","entrezGeneId":"26259"},{"alias":"FBXO29","entrezGeneId":"26259"},{"alias":"FBXW6","entrezGeneId":"26259"},{"alias":"FBX25","entrezGeneId":"26260"},{"alias":"FBX24","entrezGeneId":"26261"},{"alias":"FBX23","entrezGeneId":"26262"},{"alias":"FBXO23","entrezGeneId":"26262"},{"alias":"TM4SF17","entrezGeneId":"26262"},{"alias":"FBX22","entrezGeneId":"26263"},{"alias":"FISTC1","entrezGeneId":"26263"},{"alias":"NAS2","entrezGeneId":"26266"},{"alias":"SUT-1","entrezGeneId":"26266"},{"alias":"SUT1","entrezGeneId":"26266"},{"alias":"FBX10","entrezGeneId":"26267"},{"alias":"PRMT11","entrezGeneId":"26267"},{"alias":"dJ341E18.2","entrezGeneId":"26268"},{"alias":"FBX9","entrezGeneId":"26268"},{"alias":"NY-REN-57","entrezGeneId":"26268"},{"alias":"VCIA1","entrezGeneId":"26268"},{"alias":"DC10","entrezGeneId":"26269"},{"alias":"FBS","entrezGeneId":"26269"},{"alias":"FBX8","entrezGeneId":"26269"},{"alias":"FBG2","entrezGeneId":"26270"},{"alias":"FBS2","entrezGeneId":"26270"},{"alias":"FBX6","entrezGeneId":"26270"},{"alias":"Fbx6b","entrezGeneId":"26270"},{"alias":"EMI1","entrezGeneId":"26271"},{"alias":"FBX5","entrezGeneId":"26271"},{"alias":"Fbxo31","entrezGeneId":"26271"},{"alias":"FBX4","entrezGeneId":"26272"},{"alias":"FBA","entrezGeneId":"26273"},{"alias":"FBX3","entrezGeneId":"26273"},{"alias":"HIBYLCOAH","entrezGeneId":"26275"},{"alias":"DKCA3","entrezGeneId":"26277"},{"alias":"TIN2","entrezGeneId":"26277"},{"alias":"ARSACS","entrezGeneId":"26278"},{"alias":"DNAJC29","entrezGeneId":"26278"},{"alias":"PPP1R138","entrezGeneId":"26278"},{"alias":"SPAX6","entrezGeneId":"26278"},{"alias":"PLA2IID","entrezGeneId":"26279"},{"alias":"sPLA2-IID","entrezGeneId":"26279"},{"alias":"sPLA2S","entrezGeneId":"26279"},{"alias":"SPLASH","entrezGeneId":"26279"},{"alias":"IL-1R9","entrezGeneId":"26280"},{"alias":"IL1R9","entrezGeneId":"26280"},{"alias":"IL1RAPL-2","entrezGeneId":"26280"},{"alias":"TIGIRR-1","entrezGeneId":"26280"},{"alias":"FGF-20","entrezGeneId":"26281"},{"alias":"RHDA2","entrezGeneId":"26281"},{"alias":"CEGA","entrezGeneId":"26284"},{"alias":"ERA","entrezGeneId":"26284"},{"alias":"ERA-W","entrezGeneId":"26284"},{"alias":"ERAL1A","entrezGeneId":"26284"},{"alias":"ERAL1B","entrezGeneId":"26284"},{"alias":"H-ERA","entrezGeneId":"26284"},{"alias":"HERA-A","entrezGeneId":"26284"},{"alias":"HERA-B","entrezGeneId":"26284"},{"alias":"PRLTS6","entrezGeneId":"26284"},{"alias":"ARFGAP1","entrezGeneId":"26286"},{"alias":"ARPP","entrezGeneId":"26287"},{"alias":"AK6","entrezGeneId":"26289"},{"alias":"GALNAC-T8","entrezGeneId":"26290"},{"alias":"AMY-1","entrezGeneId":"26292"},{"alias":"DELGEF","entrezGeneId":"26297"},{"alias":"Gnefr","entrezGeneId":"26297"},{"alias":"ESE3","entrezGeneId":"26298"},{"alias":"ESE3B","entrezGeneId":"26298"},{"alias":"ESEJ","entrezGeneId":"26298"},{"alias":"A3GALNT","entrezGeneId":"26301"},{"alias":"FS","entrezGeneId":"26301"},{"alias":"UNQ2513","entrezGeneId":"26301"},{"alias":"CNR3","entrezGeneId":"26307"},{"alias":"CNRN3","entrezGeneId":"26307"},{"alias":"CNRS3","entrezGeneId":"26307"},{"alias":"CRNR3","entrezGeneId":"26307"},{"alias":"PCDH-PSI4","entrezGeneId":"26307"},{"alias":"OR14-58","entrezGeneId":"26322"},{"alias":"OR15-69","entrezGeneId":"26322"},{"alias":"OR15-71","entrezGeneId":"26322"},{"alias":"OR15-80","entrezGeneId":"26322"},{"alias":"OR15-81","entrezGeneId":"26322"},{"alias":"OR15-82","entrezGeneId":"26322"},{"alias":"OR4-114","entrezGeneId":"26322"},{"alias":"OR4-115","entrezGeneId":"26322"},{"alias":"OR4-119","entrezGeneId":"26322"},{"alias":"OR4H10","entrezGeneId":"26322"},{"alias":"OR4H10P","entrezGeneId":"26322"},{"alias":"OR4H11","entrezGeneId":"26322"},{"alias":"OR4H11P","entrezGeneId":"26322"},{"alias":"OR4H1P","entrezGeneId":"26322"},{"alias":"OR4H2","entrezGeneId":"26322"},{"alias":"OR4H2P","entrezGeneId":"26322"},{"alias":"OR4H3","entrezGeneId":"26322"},{"alias":"OR4H3P","entrezGeneId":"26322"},{"alias":"OR4H4","entrezGeneId":"26322"},{"alias":"OR4H4P","entrezGeneId":"26322"},{"alias":"OR4H5","entrezGeneId":"26322"},{"alias":"OR4H5P","entrezGeneId":"26322"},{"alias":"OR4H6","entrezGeneId":"26322"},{"alias":"OR4H7","entrezGeneId":"26322"},{"alias":"OR4H7P","entrezGeneId":"26322"},{"alias":"OR4H8","entrezGeneId":"26322"},{"alias":"OR4H8P","entrezGeneId":"26322"},{"alias":"OR4H9","entrezGeneId":"26322"},{"alias":"OR4H9P","entrezGeneId":"26322"},{"alias":"OR5-39","entrezGeneId":"26322"},{"alias":"OR5-84","entrezGeneId":"26322"},{"alias":"GAPD2","entrezGeneId":"26330"},{"alias":"GAPDH-2","entrezGeneId":"26330"},{"alias":"GAPDS","entrezGeneId":"26330"},{"alias":"HEL-S-278","entrezGeneId":"26330"},{"alias":"HSD-35","entrezGeneId":"26330"},{"alias":"BC85395_4","entrezGeneId":"26333"},{"alias":"HTPCRX19","entrezGeneId":"26333"},{"alias":"OR19-1","entrezGeneId":"26335"},{"alias":"OR19-134","entrezGeneId":"26335"},{"alias":"OR19-146","entrezGeneId":"26335"},{"alias":"OR7A16P","entrezGeneId":"26335"},{"alias":"OR7A20P","entrezGeneId":"26335"},{"alias":"OR7A4P","entrezGeneId":"26335"},{"alias":"HSHTPCRX16","entrezGeneId":"26338"},{"alias":"HTPCRX16","entrezGeneId":"26338"},{"alias":"OR11-153","entrezGeneId":"26338"},{"alias":"HSHTPCRX10","entrezGeneId":"26339"},{"alias":"HTPCRX10","entrezGeneId":"26339"},{"alias":"OR3-8","entrezGeneId":"26339"},{"alias":"HSHTPCRX14","entrezGeneId":"26341"},{"alias":"HTPCRX14","entrezGeneId":"26341"},{"alias":"HSTPCR24","entrezGeneId":"26343"},{"alias":"OR5E1","entrezGeneId":"26343"},{"alias":"TPCR24","entrezGeneId":"26343"},{"alias":"CMT2L","entrezGeneId":"26353"},{"alias":"DHMN2","entrezGeneId":"26353"},{"alias":"E2IG1","entrezGeneId":"26353"},{"alias":"H11","entrezGeneId":"26353"},{"alias":"HMN2","entrezGeneId":"26353"},{"alias":"HMN2A","entrezGeneId":"26353"},{"alias":"HSP22","entrezGeneId":"26353"},{"alias":"C77032","entrezGeneId":"26354"},{"alias":"E2IG3","entrezGeneId":"26354"},{"alias":"NNP47","entrezGeneId":"26354"},{"alias":"NS","entrezGeneId":"26354"},{"alias":"C3orf28","entrezGeneId":"26355"},{"alias":"E2IG5","entrezGeneId":"26355"},{"alias":"HGTD-P","entrezGeneId":"26355"},{"alias":"LHX6.1","entrezGeneId":"26468"},{"alias":"BDP1","entrezGeneId":"26469"},{"alias":"PTP-HSCF","entrezGeneId":"26469"},{"alias":"BSRPA","entrezGeneId":"26470"},{"alias":"PSK-1","entrezGeneId":"26470"},{"alias":"COM1","entrezGeneId":"26471"},{"alias":"P8","entrezGeneId":"26471"},{"alias":"PHI-1","entrezGeneId":"26472"},{"alias":"PLCB3N","entrezGeneId":"26472"},{"alias":"PNG","entrezGeneId":"26472"},{"alias":"SOM172","entrezGeneId":"26472"},{"alias":"OR19-133","entrezGeneId":"26473"},{"alias":"OR19-9","entrezGeneId":"26473"},{"alias":"OR7E17P","entrezGeneId":"26473"},{"alias":"OR7E60P","entrezGeneId":"26473"},{"alias":"OR4-116","entrezGeneId":"26475"},{"alias":"OR7E124P","entrezGeneId":"26475"},{"alias":"OST712","entrezGeneId":"26475"},{"alias":"HGMP07J","entrezGeneId":"26476"},{"alias":"HSHGMP07J","entrezGeneId":"26476"},{"alias":"OR3-142","entrezGeneId":"26478"},{"alias":"OR3-143","entrezGeneId":"26478"},{"alias":"OR7E132P","entrezGeneId":"26478"},{"alias":"OR7E78","entrezGeneId":"26478"},{"alias":"OR7E78P","entrezGeneId":"26478"},{"alias":"OR2-4","entrezGeneId":"26479"},{"alias":"OR2-52","entrezGeneId":"26479"},{"alias":"OR2-53","entrezGeneId":"26479"},{"alias":"OR2-75","entrezGeneId":"26479"},{"alias":"OR7E62","entrezGeneId":"26479"},{"alias":"OR7E63","entrezGeneId":"26479"},{"alias":"OR7E63P","entrezGeneId":"26479"},{"alias":"OR7E64","entrezGeneId":"26479"},{"alias":"OR7E64P","entrezGeneId":"26479"},{"alias":"OR7E82P","entrezGeneId":"26479"},{"alias":"PJCG8","entrezGeneId":"26479"},{"alias":"PJCG9","entrezGeneId":"26479"},{"alias":"HSTPCR120","entrezGeneId":"26492"},{"alias":"OR8G2","entrezGeneId":"26492"},{"alias":"OR8G4","entrezGeneId":"26492"},{"alias":"ORL206","entrezGeneId":"26492"},{"alias":"ORL486","entrezGeneId":"26492"},{"alias":"TPCR120","entrezGeneId":"26492"},{"alias":"TPCR85","entrezGeneId":"26493"},{"alias":"HSTPCR25","entrezGeneId":"26494"},{"alias":"OR8G1P","entrezGeneId":"26494"},{"alias":"TPCR25","entrezGeneId":"26494"},{"alias":"HSHTPCRX06","entrezGeneId":"26495"},{"alias":"HTPCRX06","entrezGeneId":"26495"},{"alias":"OR9A1","entrezGeneId":"26495"},{"alias":"OR9A5P","entrezGeneId":"26495"},{"alias":"HSHTPCRX12","entrezGeneId":"26496"},{"alias":"HTPCRX12","entrezGeneId":"26496"},{"alias":"HTPCRX09","entrezGeneId":"26497"},{"alias":"OR10D3P","entrezGeneId":"26497"},{"alias":"IOP2","entrezGeneId":"26502"},{"alias":"AST","entrezGeneId":"26503"},{"alias":"ISSD","entrezGeneId":"26503"},{"alias":"NSD","entrezGeneId":"26503"},{"alias":"SD","entrezGeneId":"26503"},{"alias":"SIALIN","entrezGeneId":"26503"},{"alias":"SIASD","entrezGeneId":"26503"},{"alias":"SLD","entrezGeneId":"26503"},{"alias":"ACDP4","entrezGeneId":"26504"},{"alias":"ACDP3","entrezGeneId":"26505"},{"alias":"ACDP1","entrezGeneId":"26507"},{"alias":"CLP-1","entrezGeneId":"26507"},{"alias":"bHLHb33","entrezGeneId":"26508"},{"alias":"HESR3","entrezGeneId":"26508"},{"alias":"HEY3","entrezGeneId":"26508"},{"alias":"HRT3","entrezGeneId":"26508"},{"alias":"FER1L3","entrezGeneId":"26509"},{"alias":"BTL","entrezGeneId":"26511"},{"alias":"DBI-1","entrezGeneId":"26512"},{"alias":"DDX26","entrezGeneId":"26512"},{"alias":"DDX26A","entrezGeneId":"26512"},{"alias":"DICE1","entrezGeneId":"26512"},{"alias":"HDB","entrezGeneId":"26512"},{"alias":"INT6","entrezGeneId":"26512"},{"alias":"Notchl2","entrezGeneId":"26512"},{"alias":"RPL34_11_1133","entrezGeneId":"26513"},{"alias":"dJ69E11.2","entrezGeneId":"26514"},{"alias":"RPL34_3_118","entrezGeneId":"26514"},{"alias":"FXC1","entrezGeneId":"26515"},{"alias":"TIM10B","entrezGeneId":"26515"},{"alias":"Tim9b","entrezGeneId":"26515"},{"alias":"RPS5_1_743","entrezGeneId":"26516"},{"alias":"ppv1","entrezGeneId":"26517"},{"alias":"TIM13","entrezGeneId":"26517"},{"alias":"TIM13B","entrezGeneId":"26517"},{"alias":"TIMM13A","entrezGeneId":"26517"},{"alias":"TIMM13B","entrezGeneId":"26517"},{"alias":"TIM10","entrezGeneId":"26519"},{"alias":"TIM10A","entrezGeneId":"26519"},{"alias":"TIMM10A","entrezGeneId":"26519"},{"alias":"TIM9","entrezGeneId":"26520"},{"alias":"TIM9A","entrezGeneId":"26520"},{"alias":"DDP2","entrezGeneId":"26521"},{"alias":"TIM8B","entrezGeneId":"26521"},{"alias":"EIF2C","entrezGeneId":"26523"},{"alias":"EIF2C1","entrezGeneId":"26523"},{"alias":"GERP95","entrezGeneId":"26523"},{"alias":"hAgo1","entrezGeneId":"26523"},{"alias":"Q99","entrezGeneId":"26523"},{"alias":"KPM","entrezGeneId":"26524"},{"alias":"FIL1","entrezGeneId":"26525"},{"alias":"FIL1(DELTA)","entrezGeneId":"26525"},{"alias":"FIL1D","entrezGeneId":"26525"},{"alias":"IL-36Ra","entrezGeneId":"26525"},{"alias":"IL1F5","entrezGeneId":"26525"},{"alias":"IL1HY1","entrezGeneId":"26525"},{"alias":"IL1L1","entrezGeneId":"26525"},{"alias":"IL1RP3","entrezGeneId":"26525"},{"alias":"IL36RA","entrezGeneId":"26525"},{"alias":"PSORP","entrezGeneId":"26525"},{"alias":"PSORS14","entrezGeneId":"26525"},{"alias":"TM-8","entrezGeneId":"26526"},{"alias":"TM4-B","entrezGeneId":"26526"},{"alias":"TM4SF16","entrezGeneId":"26526"},{"alias":"DJ994E9.8","entrezGeneId":"26529"},{"alias":"HS6M1-20","entrezGeneId":"26529"},{"alias":"hs6M1-19","entrezGeneId":"26530"},{"alias":"OR12D1P","entrezGeneId":"26530"},{"alias":"6M1-18","entrezGeneId":"26531"},{"alias":"dJ994E9.6","entrezGeneId":"26531"},{"alias":"hs6M1-18","entrezGeneId":"26531"},{"alias":"OR11A2","entrezGeneId":"26531"},{"alias":"OR14-40","entrezGeneId":"26533"},{"alias":"OR14-41","entrezGeneId":"26534"},{"alias":"HPFH6OR","entrezGeneId":"26537"},{"alias":"HTPCRX03","entrezGeneId":"26541"},{"alias":"OR10D2P","entrezGeneId":"26541"},{"alias":"OST074","entrezGeneId":"26541"},{"alias":"CHORDC3","entrezGeneId":"26548"},{"alias":"ITGB1BP","entrezGeneId":"26548"},{"alias":"MELUSIN","entrezGeneId":"26548"},{"alias":"MSTP015","entrezGeneId":"26548"},{"alias":"BFR2","entrezGeneId":"26574"},{"alias":"CHE-1","entrezGeneId":"26574"},{"alias":"CHE1","entrezGeneId":"26574"},{"alias":"DED","entrezGeneId":"26574"},{"alias":"hRGS17","entrezGeneId":"26575"},{"alias":"RGS-17","entrezGeneId":"26575"},{"alias":"RGSZ2","entrezGeneId":"26575"},{"alias":"MSSK-1","entrezGeneId":"26576"},{"alias":"MSSK1","entrezGeneId":"26576"},{"alias":"STK23","entrezGeneId":"26576"},{"alias":"PCPE2","entrezGeneId":"26577"},{"alias":"bA235O14.1","entrezGeneId":"26578"},{"alias":"OSF","entrezGeneId":"26578"},{"alias":"SH3P2","entrezGeneId":"26578"},{"alias":"OCIM","entrezGeneId":"26579"},{"alias":"GNG3LG","entrezGeneId":"26580"},{"alias":"HMN5","entrezGeneId":"26580"},{"alias":"PELD","entrezGeneId":"26580"},{"alias":"SPG17","entrezGeneId":"26580"},{"alias":"DUX1","entrezGeneId":"26581"},{"alias":"DUX2","entrezGeneId":"26583"},{"alias":"C15DUPq","entrezGeneId":"26585"},{"alias":"CKTSF1B1","entrezGeneId":"26585"},{"alias":"CRAC1","entrezGeneId":"26585"},{"alias":"CRCS4","entrezGeneId":"26585"},{"alias":"DAND2","entrezGeneId":"26585"},{"alias":"DRM","entrezGeneId":"26585"},{"alias":"DUP15q","entrezGeneId":"26585"},{"alias":"GREMLIN","entrezGeneId":"26585"},{"alias":"HMPS","entrezGeneId":"26585"},{"alias":"HMPS1","entrezGeneId":"26585"},{"alias":"IHG-2","entrezGeneId":"26585"},{"alias":"MPSH","entrezGeneId":"26585"},{"alias":"PIG2","entrezGeneId":"26585"},{"alias":"LB1","entrezGeneId":"26586"},{"alias":"se20-10","entrezGeneId":"26586"},{"alias":"TMAP","entrezGeneId":"26586"},{"alias":"C15orf4","entrezGeneId":"26589"},{"alias":"LIECG2","entrezGeneId":"26589"},{"alias":"P2ECSL","entrezGeneId":"26589"},{"alias":"OR8B13P","entrezGeneId":"26590"},{"alias":"OR11-309","entrezGeneId":"26595"},{"alias":"OR11-310","entrezGeneId":"26595"},{"alias":"WBSCR13","entrezGeneId":"26608"},{"alias":"WS-betaTRP","entrezGeneId":"26608"},{"alias":"VCX-10r","entrezGeneId":"26609"},{"alias":"VCX-B1","entrezGeneId":"26609"},{"alias":"VCX1","entrezGeneId":"26609"},{"alias":"VCX10R","entrezGeneId":"26609"},{"alias":"VCXB1","entrezGeneId":"26609"},{"alias":"AN","entrezGeneId":"26610"},{"alias":"AN2","entrezGeneId":"26610"},{"alias":"C11orf19","entrezGeneId":"26610"},{"alias":"dJ68P15A.1","entrezGeneId":"26610"},{"alias":"hELP4","entrezGeneId":"26610"},{"alias":"PAX6NEB","entrezGeneId":"26610"},{"alias":"PAXNEB","entrezGeneId":"26610"},{"alias":"hg630","entrezGeneId":"26614"},{"alias":"OR3.3","entrezGeneId":"26614"},{"alias":"OR3DG","entrezGeneId":"26614"},{"alias":"OR7E20P","entrezGeneId":"26614"},{"alias":"OR7E6P","entrezGeneId":"26614"},{"alias":"OR7E141","entrezGeneId":"26628"},{"alias":"OR7E119P","entrezGeneId":"26637"},{"alias":"OST024","entrezGeneId":"26637"},{"alias":"hg688","entrezGeneId":"26640"},{"alias":"OR7E30P","entrezGeneId":"26644"},{"alias":"OST032","entrezGeneId":"26644"},{"alias":"OST339","entrezGeneId":"26644"},{"alias":"hg616","entrezGeneId":"26645"},{"alias":"OR7E107P","entrezGeneId":"26645"},{"alias":"OR7E133P","entrezGeneId":"26645"},{"alias":"OR7E27P","entrezGeneId":"26645"},{"alias":"OST128","entrezGeneId":"26645"},{"alias":"CIT-B-440L2","entrezGeneId":"26647"},{"alias":"OR19-12","entrezGeneId":"26647"},{"alias":"OR19-C","entrezGeneId":"26647"},{"alias":"HSHT2","entrezGeneId":"26648"},{"alias":"OR19-8","entrezGeneId":"26648"},{"alias":"OR7E24P","entrezGeneId":"26648"},{"alias":"OR7E24Q","entrezGeneId":"26648"},{"alias":"HSCIT-B-440L2","entrezGeneId":"26651"},{"alias":"OR19-7","entrezGeneId":"26651"},{"alias":"OR7E65","entrezGeneId":"26651"},{"alias":"TPCR11","entrezGeneId":"26651"},{"alias":"tpcr110","entrezGeneId":"26651"},{"alias":"OR19-131","entrezGeneId":"26656"},{"alias":"OR19-A","entrezGeneId":"26656"},{"alias":"OR7D3","entrezGeneId":"26656"},{"alias":"OR7D3P","entrezGeneId":"26656"},{"alias":"CIT-HSP-87M17","entrezGeneId":"26658"},{"alias":"OR19-18","entrezGeneId":"26658"},{"alias":"OR7C3","entrezGeneId":"26658"},{"alias":"HTPCR2","entrezGeneId":"26659"},{"alias":"HG83","entrezGeneId":"26661"},{"alias":"OR19-11","entrezGeneId":"26661"},{"alias":"OR7A9P","entrezGeneId":"26661"},{"alias":"OST042","entrezGeneId":"26661"},{"alias":"CIT-HSP-146E8","entrezGeneId":"26664"},{"alias":"HSTPCR86P","entrezGeneId":"26664"},{"alias":"OR19-5","entrezGeneId":"26664"},{"alias":"OR7C4","entrezGeneId":"26664"},{"alias":"TPCR86","entrezGeneId":"26664"},{"alias":"OR11-7b","entrezGeneId":"26668"},{"alias":"OR14-11","entrezGeneId":"26668"},{"alias":"OR14-59","entrezGeneId":"26668"},{"alias":"OR19-12","entrezGeneId":"26668"},{"alias":"OR7A12P","entrezGeneId":"26668"},{"alias":"OR7A13P","entrezGeneId":"26668"},{"alias":"OR7A14","entrezGeneId":"26668"},{"alias":"OR7A14P","entrezGeneId":"26668"},{"alias":"OR7A11","entrezGeneId":"26669"},{"alias":"OST527","entrezGeneId":"26669"},{"alias":"OLC","entrezGeneId":"26679"},{"alias":"OLC-7501","entrezGeneId":"26679"},{"alias":"OR4G3","entrezGeneId":"26679"},{"alias":"OR4G5P","entrezGeneId":"26679"},{"alias":"OR4G7P","entrezGeneId":"26680"},{"alias":"OLB","entrezGeneId":"26681"},{"alias":"OR4G8P","entrezGeneId":"26681"},{"alias":"OLA-7501","entrezGeneId":"26682"},{"alias":"OR4F18","entrezGeneId":"26682"},{"alias":"HSDJ0609N19","entrezGeneId":"26685"},{"alias":"OR4F1","entrezGeneId":"26685"},{"alias":"OR14-42","entrezGeneId":"26686"},{"alias":"OR4E1P","entrezGeneId":"26687"},{"alias":"OR17-23","entrezGeneId":"26689"},{"alias":"OR4D3","entrezGeneId":"26689"},{"alias":"OR4D4P","entrezGeneId":"26689"},{"alias":"TPCR16","entrezGeneId":"26689"},{"alias":"hg449","entrezGeneId":"26690"},{"alias":"hs6M1-15","entrezGeneId":"26692"},{"alias":"OR2V1P","entrezGeneId":"26693"},{"alias":"OST265","entrezGeneId":"26693"},{"alias":"hs6M1-23","entrezGeneId":"26694"},{"alias":"OR6-24","entrezGeneId":"26694"},{"alias":"hs6M1-24","entrezGeneId":"26695"},{"alias":"OR2AU1P","entrezGeneId":"26695"},{"alias":"OR1-25","entrezGeneId":"26696"},{"alias":"HS6M1-2","entrezGeneId":"26701"},{"alias":"OLFR89","entrezGeneId":"26701"},{"alias":"OR6-7","entrezGeneId":"26701"},{"alias":"dJ80I19.4","entrezGeneId":"26707"},{"alias":"hs6M1-6","entrezGeneId":"26707"},{"alias":"OR6-19","entrezGeneId":"26707"},{"alias":"OR6-8","entrezGeneId":"26707"},{"alias":"OR6.3.8","entrezGeneId":"26707"},{"alias":"ORL684","entrezGeneId":"26707"},{"alias":"HS271M21","entrezGeneId":"26713"},{"alias":"hs6M1-13","entrezGeneId":"26713"},{"alias":"OLFR42B","entrezGeneId":"26713"},{"alias":"OR2H5","entrezGeneId":"26713"},{"alias":"OR2H7","entrezGeneId":"26713"},{"alias":"OR6-33","entrezGeneId":"26713"},{"alias":"OR6-35","entrezGeneId":"26713"},{"alias":"6M1-16","entrezGeneId":"26716"},{"alias":"dJ994E9.4","entrezGeneId":"26716"},{"alias":"HS6M1-16","entrezGeneId":"26716"},{"alias":"OLFR42A-9004-14","entrezGeneId":"26716"},{"alias":"OLFR42A-9004.14/9026.2","entrezGeneId":"26716"},{"alias":"OR2H6","entrezGeneId":"26716"},{"alias":"OR2H8","entrezGeneId":"26716"},{"alias":"OR6-2","entrezGeneId":"26716"},{"alias":"hs6M1-25","entrezGeneId":"26717"},{"alias":"OR6-22","entrezGeneId":"26717"},{"alias":"OST619","entrezGeneId":"26717"},{"alias":"HS29K1","entrezGeneId":"26719"},{"alias":"hs6M1-9","entrezGeneId":"26719"},{"alias":"hs6M1-9p","entrezGeneId":"26719"},{"alias":"HSNH0569I24","entrezGeneId":"26719"},{"alias":"OR2E1","entrezGeneId":"26719"},{"alias":"OR2E2","entrezGeneId":"26719"},{"alias":"OR9-28","entrezGeneId":"26735"},{"alias":"OR9-D","entrezGeneId":"26735"},{"alias":"HG23","entrezGeneId":"26737"},{"alias":"OR1L2","entrezGeneId":"26737"},{"alias":"OR9-27","entrezGeneId":"26737"},{"alias":"OR9-C","entrezGeneId":"26737"},{"alias":"HG152","entrezGeneId":"26740"},{"alias":"HSA5","entrezGeneId":"26740"},{"alias":"OR1J3","entrezGeneId":"26740"},{"alias":"OR1J5","entrezGeneId":"26740"},{"alias":"OR9-19","entrezGeneId":"26740"},{"alias":"OST044","entrezGeneId":"26740"},{"alias":"OR1H1","entrezGeneId":"26742"},{"alias":"OST26","entrezGeneId":"26742"},{"alias":"bA540M5.1","entrezGeneId":"26747"},{"alias":"NUFIP","entrezGeneId":"26747"},{"alias":"AL4","entrezGeneId":"26748"},{"alias":"CT4.7","entrezGeneId":"26748"},{"alias":"GAGE-7B","entrezGeneId":"26748"},{"alias":"GAGE7B","entrezGeneId":"26748"},{"alias":"GAGE-2E","entrezGeneId":"26749"},{"alias":"GAGE8","entrezGeneId":"26749"},{"alias":"humS6PKh1","entrezGeneId":"26750"},{"alias":"RPK118","entrezGeneId":"26750"},{"alias":"RSKL1","entrezGeneId":"26750"},{"alias":"S6K-delta-1","entrezGeneId":"26750"},{"alias":"S6PKh1","entrezGeneId":"26750"},{"alias":"RAY","entrezGeneId":"26751"},{"alias":"CD365","entrezGeneId":"26762"},{"alias":"HAVCR","entrezGeneId":"26762"},{"alias":"HAVCR-1","entrezGeneId":"26762"},{"alias":"KIM-1","entrezGeneId":"26762"},{"alias":"KIM1","entrezGeneId":"26762"},{"alias":"TIM","entrezGeneId":"26762"},{"alias":"TIM-1","entrezGeneId":"26762"},{"alias":"TIM1","entrezGeneId":"26762"},{"alias":"TIMD-1","entrezGeneId":"26762"},{"alias":"TIMD1","entrezGeneId":"26762"},{"alias":"E2","entrezGeneId":"26765"},{"alias":"E2-1","entrezGeneId":"26765"},{"alias":"E3","entrezGeneId":"26765"},{"alias":"RNU106","entrezGeneId":"26765"},{"alias":"SNORD106","entrezGeneId":"26765"},{"alias":"U106","entrezGeneId":"26765"},{"alias":"E1-5","entrezGeneId":"26766"},{"alias":"E1-6","entrezGeneId":"26766"},{"alias":"105B","entrezGeneId":"26767"},{"alias":"E1-2","entrezGeneId":"26767"},{"alias":"105A","entrezGeneId":"26768"},{"alias":"E1c","entrezGeneId":"26768"},{"alias":"RNU105A","entrezGeneId":"26768"},{"alias":"RNU17B","entrezGeneId":"26768"},{"alias":"U17B","entrezGeneId":"26768"},{"alias":"RNU104","entrezGeneId":"26769"},{"alias":"U81","entrezGeneId":"26769"},{"alias":"Z23","entrezGeneId":"26769"},{"alias":"RNU103","entrezGeneId":"26770"},{"alias":"U79","entrezGeneId":"26770"},{"alias":"Z22","entrezGeneId":"26770"},{"alias":"RNU102","entrezGeneId":"26771"},{"alias":"Z18","entrezGeneId":"26771"},{"alias":"RNU101B","entrezGeneId":"26772"},{"alias":"Z17B","entrezGeneId":"26772"},{"alias":"mgh18S-121","entrezGeneId":"26773"},{"alias":"RNU101A","entrezGeneId":"26773"},{"alias":"Z17A","entrezGeneId":"26773"},{"alias":"RNU100","entrezGeneId":"26774"},{"alias":"U80","entrezGeneId":"26774"},{"alias":"Z15","entrezGeneId":"26774"},{"alias":"RNU72","entrezGeneId":"26775"},{"alias":"U72","entrezGeneId":"26775"},{"alias":"RNU71B","entrezGeneId":"26776"},{"alias":"U71b","entrezGeneId":"26776"},{"alias":"RNU71A","entrezGeneId":"26777"},{"alias":"U71a","entrezGeneId":"26777"},{"alias":"DXS648E","entrezGeneId":"26778"},{"alias":"RNU70","entrezGeneId":"26778"},{"alias":"U70","entrezGeneId":"26778"},{"alias":"RNU69","entrezGeneId":"26779"},{"alias":"U69","entrezGeneId":"26779"},{"alias":"U69A","entrezGeneId":"26779"},{"alias":"RNU68","entrezGeneId":"26780"},{"alias":"SNORA68A","entrezGeneId":"26780"},{"alias":"U68","entrezGeneId":"26780"},{"alias":"RNU67","entrezGeneId":"26781"},{"alias":"U67","entrezGeneId":"26781"},{"alias":"RNU66","entrezGeneId":"26782"},{"alias":"U66","entrezGeneId":"26782"},{"alias":"RNU65","entrezGeneId":"26783"},{"alias":"U65","entrezGeneId":"26783"},{"alias":"RNU64","entrezGeneId":"26784"},{"alias":"U64","entrezGeneId":"26784"},{"alias":"RNU63","entrezGeneId":"26785"},{"alias":"SNORD63A","entrezGeneId":"26785"},{"alias":"U63","entrezGeneId":"26785"},{"alias":"RNU62","entrezGeneId":"26786"},{"alias":"U62","entrezGeneId":"26786"},{"alias":"U62A","entrezGeneId":"26786"},{"alias":"HBII-342","entrezGeneId":"26787"},{"alias":"RNU61","entrezGeneId":"26787"},{"alias":"U61","entrezGeneId":"26787"},{"alias":"RNU60","entrezGeneId":"26788"},{"alias":"U60","entrezGeneId":"26788"},{"alias":"RNU59","entrezGeneId":"26789"},{"alias":"U59","entrezGeneId":"26789"},{"alias":"RNU58B","entrezGeneId":"26790"},{"alias":"U58b","entrezGeneId":"26790"},{"alias":"RNU58A","entrezGeneId":"26791"},{"alias":"U58a","entrezGeneId":"26791"},{"alias":"RNU57","entrezGeneId":"26792"},{"alias":"U57","entrezGeneId":"26792"},{"alias":"RNU56","entrezGeneId":"26793"},{"alias":"U56","entrezGeneId":"26793"},{"alias":"RNU54","entrezGeneId":"26795"},{"alias":"U54","entrezGeneId":"26795"},{"alias":"RNU53","entrezGeneId":"26796"},{"alias":"SNORD53A","entrezGeneId":"26796"},{"alias":"U53","entrezGeneId":"26796"},{"alias":"RNU52","entrezGeneId":"26797"},{"alias":"U52","entrezGeneId":"26797"},{"alias":"RNU51","entrezGeneId":"26798"},{"alias":"U51","entrezGeneId":"26798"},{"alias":"RNU50","entrezGeneId":"26799"},{"alias":"U50","entrezGeneId":"26799"},{"alias":"RNU49","entrezGeneId":"26800"},{"alias":"U49","entrezGeneId":"26800"},{"alias":"U49A","entrezGeneId":"26800"},{"alias":"RNU48","entrezGeneId":"26801"},{"alias":"U48","entrezGeneId":"26801"},{"alias":"RNU47","entrezGeneId":"26802"},{"alias":"U47","entrezGeneId":"26802"},{"alias":"RNU45B","entrezGeneId":"26804"},{"alias":"U45b","entrezGeneId":"26804"},{"alias":"RNU45A","entrezGeneId":"26805"},{"alias":"U45a","entrezGeneId":"26805"},{"alias":"RNU44","entrezGeneId":"26806"},{"alias":"U44","entrezGeneId":"26806"},{"alias":"RNU43","entrezGeneId":"26807"},{"alias":"U43","entrezGeneId":"26807"},{"alias":"RNU42B","entrezGeneId":"26808"},{"alias":"U42B","entrezGeneId":"26808"},{"alias":"RNU42A","entrezGeneId":"26809"},{"alias":"U42","entrezGeneId":"26809"},{"alias":"U42A","entrezGeneId":"26809"},{"alias":"RNU41","entrezGeneId":"26810"},{"alias":"U41","entrezGeneId":"26810"},{"alias":"RNU39","entrezGeneId":"26811"},{"alias":"RNU55","entrezGeneId":"26811"},{"alias":"SNORD39","entrezGeneId":"26811"},{"alias":"U39","entrezGeneId":"26811"},{"alias":"U55","entrezGeneId":"26811"},{"alias":"RNU37","entrezGeneId":"26812"},{"alias":"U37","entrezGeneId":"26812"},{"alias":"RNU36C","entrezGeneId":"26813"},{"alias":"U36c","entrezGeneId":"26813"},{"alias":"RNU36B","entrezGeneId":"26814"},{"alias":"U36b","entrezGeneId":"26814"},{"alias":"RNU36A","entrezGeneId":"26815"},{"alias":"U36a","entrezGeneId":"26815"},{"alias":"RNU35","entrezGeneId":"26816"},{"alias":"RNU35A","entrezGeneId":"26816"},{"alias":"U35","entrezGeneId":"26816"},{"alias":"RNU34","entrezGeneId":"26817"},{"alias":"U34","entrezGeneId":"26817"},{"alias":"RNU33","entrezGeneId":"26818"},{"alias":"U33","entrezGeneId":"26818"},{"alias":"RNU32","entrezGeneId":"26819"},{"alias":"U32","entrezGeneId":"26819"},{"alias":"U32A","entrezGeneId":"26819"},{"alias":"RNU24","entrezGeneId":"26820"},{"alias":"U24","entrezGeneId":"26820"},{"alias":"RNU19","entrezGeneId":"26821"},{"alias":"U19","entrezGeneId":"26821"},{"alias":"RNU14","entrezGeneId":"26822"},{"alias":"RNU14A","entrezGeneId":"26822"},{"alias":"U14","entrezGeneId":"26822"},{"alias":"U14-S13-5","entrezGeneId":"26822"},{"alias":"RNU12","entrezGeneId":"26823"},{"alias":"RNU12P","entrezGeneId":"26823"},{"alias":"U12","entrezGeneId":"26823"},{"alias":"RNU11-1","entrezGeneId":"26824"},{"alias":"U11","entrezGeneId":"26824"},{"alias":"RNU6-50","entrezGeneId":"26825"},{"alias":"RNU6P1","entrezGeneId":"26825"},{"alias":"U6","entrezGeneId":"26825"},{"alias":"RNU6-6","entrezGeneId":"26826"},{"alias":"RNU6B","entrezGeneId":"26826"},{"alias":"U6-6","entrezGeneId":"26826"},{"alias":"RNU6","entrezGeneId":"26827"},{"alias":"RNU6A","entrezGeneId":"26827"},{"alias":"U6","entrezGeneId":"26827"},{"alias":"U6-1","entrezGeneId":"26827"},{"alias":"RNU5F","entrezGeneId":"26828"},{"alias":"U5F","entrezGeneId":"26828"},{"alias":"RNU5E","entrezGeneId":"26829"},{"alias":"U5E","entrezGeneId":"26829"},{"alias":"RNU5D","entrezGeneId":"26830"},{"alias":"U5DL","entrezGeneId":"26830"},{"alias":"U5DS","entrezGeneId":"26830"},{"alias":"RNU5","entrezGeneId":"26831"},{"alias":"RNU5A","entrezGeneId":"26831"},{"alias":"RNU5C","entrezGeneId":"26831"},{"alias":"U5A","entrezGeneId":"26831"},{"alias":"U5B1","entrezGeneId":"26831"},{"alias":"RNU5B","entrezGeneId":"26832"},{"alias":"RNU5B-1P","entrezGeneId":"26832"},{"alias":"U5B1","entrezGeneId":"26832"},{"alias":"RNU4-1B","entrezGeneId":"26834"},{"alias":"RNU4B1","entrezGeneId":"26834"},{"alias":"RNU4C","entrezGeneId":"26834"},{"alias":"U4A","entrezGeneId":"26834"},{"alias":"U4b","entrezGeneId":"26834"},{"alias":"U4c","entrezGeneId":"26834"},{"alias":"RNU4A","entrezGeneId":"26835"},{"alias":"RNU4B2","entrezGeneId":"26835"},{"alias":"U4","entrezGeneId":"26835"},{"alias":"U4BL","entrezGeneId":"26835"},{"alias":"RNU4P6","entrezGeneId":"26838"},{"alias":"U4","entrezGeneId":"26838"},{"alias":"U4/8","entrezGeneId":"26838"},{"alias":"RNU4P5","entrezGeneId":"26839"},{"alias":"U4","entrezGeneId":"26839"},{"alias":"U4/6","entrezGeneId":"26839"},{"alias":"RNU4P4","entrezGeneId":"26840"},{"alias":"U4","entrezGeneId":"26840"},{"alias":"U4/5","entrezGeneId":"26840"},{"alias":"RNU4P3","entrezGeneId":"26841"},{"alias":"U4","entrezGeneId":"26841"},{"alias":"U4/4","entrezGeneId":"26841"},{"alias":"RNU3P4","entrezGeneId":"26842"},{"alias":"U3","entrezGeneId":"26842"},{"alias":"U3.6","entrezGeneId":"26842"},{"alias":"RNU3P3","entrezGeneId":"26843"},{"alias":"U3","entrezGeneId":"26843"},{"alias":"U3.5","entrezGeneId":"26843"},{"alias":"u3.7","entrezGeneId":"26843"},{"alias":"RNU3P2","entrezGeneId":"26844"},{"alias":"U3","entrezGeneId":"26844"},{"alias":"U3.2","entrezGeneId":"26844"},{"alias":"RNU3A1","entrezGeneId":"26851"},{"alias":"U3a","entrezGeneId":"26851"},{"alias":"U3b1","entrezGeneId":"26851"},{"alias":"U3b2","entrezGeneId":"26851"},{"alias":"RNU2P3","entrezGeneId":"26852"},{"alias":"RNU2P2","entrezGeneId":"26853"},{"alias":"U2","entrezGeneId":"26853"},{"alias":"U2/7","entrezGeneId":"26853"},{"alias":"RNU2P1","entrezGeneId":"26854"},{"alias":"U2","entrezGeneId":"26854"},{"alias":"RNU2-2","entrezGeneId":"26855"},{"alias":"RNU2B","entrezGeneId":"26855"},{"alias":"U2","entrezGeneId":"26855"},{"alias":"RNU1P8","entrezGeneId":"26858"},{"alias":"U1P11","entrezGeneId":"26858"},{"alias":"RNU1P7","entrezGeneId":"26859"},{"alias":"U1P17","entrezGeneId":"26859"},{"alias":"RNU1-71","entrezGeneId":"26860"},{"alias":"RNU1P6","entrezGeneId":"26860"},{"alias":"RNVU1-2","entrezGeneId":"26860"},{"alias":"U1.1","entrezGeneId":"26860"},{"alias":"U1P1","entrezGeneId":"26860"},{"alias":"vU1.2","entrezGeneId":"26860"},{"alias":"RNU1P1","entrezGeneId":"26861"},{"alias":"RNU1P5","entrezGeneId":"26861"},{"alias":"U1P1A","entrezGeneId":"26861"},{"alias":"RNU1-25","entrezGeneId":"26863"},{"alias":"RNU1-25P","entrezGeneId":"26863"},{"alias":"RNU1-5","entrezGeneId":"26863"},{"alias":"RNU1P1","entrezGeneId":"26863"},{"alias":"RNU1P9","entrezGeneId":"26863"},{"alias":"U1.15","entrezGeneId":"26863"},{"alias":"U1P101","entrezGeneId":"26863"},{"alias":"U1P15","entrezGeneId":"26863"},{"alias":"vU1.18","entrezGeneId":"26863"},{"alias":"RNU1-26P","entrezGeneId":"26864"},{"alias":"RNU1-6","entrezGeneId":"26864"},{"alias":"RNU1-6P","entrezGeneId":"26864"},{"alias":"RNU1-9","entrezGeneId":"26864"},{"alias":"RNU1-9P","entrezGeneId":"26864"},{"alias":"RNVU1-9","entrezGeneId":"26864"},{"alias":"vU1.7","entrezGeneId":"26864"},{"alias":"vU1.9","entrezGeneId":"26864"},{"alias":"RNU1-7","entrezGeneId":"26865"},{"alias":"RNU1-7P","entrezGeneId":"26865"},{"alias":"RNU1-8","entrezGeneId":"26866"},{"alias":"RNU1-8P","entrezGeneId":"26866"},{"alias":"HSD4","entrezGeneId":"26869"},{"alias":"RNU1G3","entrezGeneId":"26869"},{"alias":"RNU1C1","entrezGeneId":"26870"},{"alias":"RNU1C2","entrezGeneId":"26870"},{"alias":"U1C1","entrezGeneId":"26870"},{"alias":"U1C21","entrezGeneId":"26870"},{"alias":"HSD1","entrezGeneId":"26871"},{"alias":"HU1-1","entrezGeneId":"26871"},{"alias":"RNU1","entrezGeneId":"26871"},{"alias":"RNU1A","entrezGeneId":"26871"},{"alias":"Rnu1a1","entrezGeneId":"26871"},{"alias":"RNU1A3","entrezGeneId":"26871"},{"alias":"RNU1G4","entrezGeneId":"26871"},{"alias":"U1","entrezGeneId":"26871"},{"alias":"U1A1","entrezGeneId":"26871"},{"alias":"PRSS24","entrezGeneId":"26872"},{"alias":"STEAP","entrezGeneId":"26872"},{"alias":"5-Opase","entrezGeneId":"26873"},{"alias":"OPLA","entrezGeneId":"26873"},{"alias":"OPLAHD","entrezGeneId":"26873"},{"alias":"P-B1","entrezGeneId":"26952"},{"alias":"PBI","entrezGeneId":"26952"},{"alias":"PRL5","entrezGeneId":"26952"},{"alias":"PROL5","entrezGeneId":"26952"},{"alias":"ALD22Q11","entrezGeneId":"26957"},{"alias":"2-COP","entrezGeneId":"26958"},{"alias":"gamma-2-COP","entrezGeneId":"26958"},{"alias":"BCL8B","entrezGeneId":"26960"},{"alias":"LYST2","entrezGeneId":"26960"},{"alias":"CHP1","entrezGeneId":"26973"},{"alias":"ZNF285A","entrezGeneId":"26974"},{"alias":"PABP3","entrezGeneId":"26978"},{"alias":"PABPCP3","entrezGeneId":"26978"},{"alias":"PABP1","entrezGeneId":"26980"},{"alias":"PABPCP1","entrezGeneId":"26980"},{"alias":"bA453N3.6","entrezGeneId":"26983"},{"alias":"SEC22L2","entrezGeneId":"26984"},{"alias":"PAB1","entrezGeneId":"26986"},{"alias":"PABP","entrezGeneId":"26986"},{"alias":"PABP1","entrezGeneId":"26986"},{"alias":"PABPC2","entrezGeneId":"26986"},{"alias":"PABPL1","entrezGeneId":"26986"},{"alias":"HA95","entrezGeneId":"26993"},{"alias":"HAP95","entrezGeneId":"26993"},{"alias":"NAKAP","entrezGeneId":"26993"},{"alias":"NAKAP95","entrezGeneId":"26993"},{"alias":"CGI-123","entrezGeneId":"26994"},{"alias":"SID1669","entrezGeneId":"26994"},{"alias":"CLONE24922","entrezGeneId":"26995"},{"alias":"GPCR1","entrezGeneId":"26996"},{"alias":"GPCR150","entrezGeneId":"26996"},{"alias":"16G2","entrezGeneId":"26998"},{"alias":"Gugu","entrezGeneId":"26998"},{"alias":"IRL685","entrezGeneId":"26998"},{"alias":"PIR121","entrezGeneId":"26999"},{"alias":"MPHOSPH11","entrezGeneId":"27000"},{"alias":"MPP11","entrezGeneId":"27000"},{"alias":"ZRF1","entrezGeneId":"27000"},{"alias":"ZUO1","entrezGeneId":"27000"},{"alias":"LIS2P","entrezGeneId":"27002"},{"alias":"PAFAH1P2","entrezGeneId":"27002"},{"alias":"TNG1","entrezGeneId":"27004"},{"alias":"TNG2","entrezGeneId":"27004"},{"alias":"USP16","entrezGeneId":"27005"},{"alias":"USP23","entrezGeneId":"27005"},{"alias":"HTPK1","entrezGeneId":"27010"},{"alias":"PP20","entrezGeneId":"27010"},{"alias":"THMD5","entrezGeneId":"27010"},{"alias":"HNKA","entrezGeneId":"27012"},{"alias":"KCNB3","entrezGeneId":"27012"},{"alias":"KV2.3","entrezGeneId":"27012"},{"alias":"KV8.1","entrezGeneId":"27012"},{"alias":"C2orf24","entrezGeneId":"27013"},{"alias":"CGI-57","entrezGeneId":"27013"},{"alias":"Bex","entrezGeneId":"27018"},{"alias":"DXS6984E","entrezGeneId":"27018"},{"alias":"HGR74","entrezGeneId":"27018"},{"alias":"NADE","entrezGeneId":"27018"},{"alias":"NGFRAP1","entrezGeneId":"27018"},{"alias":"CILD1","entrezGeneId":"27019"},{"alias":"DIC1","entrezGeneId":"27019"},{"alias":"ICS1","entrezGeneId":"27019"},{"alias":"PCD","entrezGeneId":"27019"},{"alias":"GP55","entrezGeneId":"27020"},{"alias":"GP65","entrezGeneId":"27020"},{"alias":"np55","entrezGeneId":"27020"},{"alias":"np65","entrezGeneId":"27020"},{"alias":"SDFR1","entrezGeneId":"27020"},{"alias":"SDR1","entrezGeneId":"27020"},{"alias":"AIS1","entrezGeneId":"27022"},{"alias":"Genesis","entrezGeneId":"27022"},{"alias":"HFH2","entrezGeneId":"27022"},{"alias":"VAMAS2","entrezGeneId":"27022"},{"alias":"FKH5","entrezGeneId":"27023"},{"alias":"HFKH-5","entrezGeneId":"27023"},{"alias":"HNPCC7","entrezGeneId":"27030"},{"alias":"CFAP31","entrezGeneId":"27031"},{"alias":"MKS7","entrezGeneId":"27031"},{"alias":"NPH3","entrezGeneId":"27031"},{"alias":"RHPD","entrezGeneId":"27031"},{"alias":"RHPD1","entrezGeneId":"27031"},{"alias":"SLSN3","entrezGeneId":"27031"},{"alias":"ATP2C1A","entrezGeneId":"27032"},{"alias":"BCPM","entrezGeneId":"27032"},{"alias":"HHD","entrezGeneId":"27032"},{"alias":"hSPCA1","entrezGeneId":"27032"},{"alias":"PMR1","entrezGeneId":"27032"},{"alias":"SPCA1","entrezGeneId":"27032"},{"alias":"FAXF","entrezGeneId":"27033"},{"alias":"FAZF","entrezGeneId":"27033"},{"alias":"Rog","entrezGeneId":"27033"},{"alias":"TZFP","entrezGeneId":"27033"},{"alias":"ZNF538","entrezGeneId":"27033"},{"alias":"ACAD-8","entrezGeneId":"27034"},{"alias":"ARC42","entrezGeneId":"27034"},{"alias":"GP91-2","entrezGeneId":"27035"},{"alias":"MOX1","entrezGeneId":"27035"},{"alias":"NOH-1","entrezGeneId":"27035"},{"alias":"NOH1","entrezGeneId":"27035"},{"alias":"AIRM1","entrezGeneId":"27036"},{"alias":"CD328","entrezGeneId":"27036"},{"alias":"CDw328","entrezGeneId":"27036"},{"alias":"D-siglec","entrezGeneId":"27036"},{"alias":"p75","entrezGeneId":"27036"},{"alias":"p75/AIRM1","entrezGeneId":"27036"},{"alias":"QA79","entrezGeneId":"27036"},{"alias":"SIGLEC-7","entrezGeneId":"27036"},{"alias":"SIGLEC19P","entrezGeneId":"27036"},{"alias":"SIGLECP2","entrezGeneId":"27036"},{"alias":"HTF9C","entrezGeneId":"27037"},{"alias":"TRPP5","entrezGeneId":"27039"},{"alias":"IMD52","entrezGeneId":"27040"},{"alias":"LAT1","entrezGeneId":"27040"},{"alias":"pp36","entrezGeneId":"27040"},{"alias":"C1orf107","entrezGeneId":"27042"},{"alias":"DEF","entrezGeneId":"27042"},{"alias":"DJ434O14.5","entrezGeneId":"27042"},{"alias":"UTP25","entrezGeneId":"27042"},{"alias":"MNAR","entrezGeneId":"27043"},{"alias":"P160","entrezGeneId":"27043"},{"alias":"p100","entrezGeneId":"27044"},{"alias":"TDRD11","entrezGeneId":"27044"},{"alias":"Tudor-SN","entrezGeneId":"27044"},{"alias":"ALRP","entrezGeneId":"27063"},{"alias":"bA320F15.2","entrezGeneId":"27063"},{"alias":"C-193","entrezGeneId":"27063"},{"alias":"CARP","entrezGeneId":"27063"},{"alias":"CVARP","entrezGeneId":"27063"},{"alias":"MCARP","entrezGeneId":"27063"},{"alias":"D4S234","entrezGeneId":"27065"},{"alias":"D4S234E","entrezGeneId":"27065"},{"alias":"NEEP21","entrezGeneId":"27065"},{"alias":"P21","entrezGeneId":"27065"},{"alias":"39K2","entrezGeneId":"27067"},{"alias":"39K3","entrezGeneId":"27067"},{"alias":"HSPC124","entrezGeneId":"27068"},{"alias":"SCFAI","entrezGeneId":"27068"},{"alias":"SCFI","entrezGeneId":"27068"},{"alias":"SID6-306","entrezGeneId":"27068"},{"alias":"DERP2","entrezGeneId":"27069"},{"alias":"HSPC282","entrezGeneId":"27069"},{"alias":"MICS1","entrezGeneId":"27069"},{"alias":"My021","entrezGeneId":"27069"},{"alias":"PTD010","entrezGeneId":"27069"},{"alias":"TMBIM5","entrezGeneId":"27069"},{"alias":"BAM32","entrezGeneId":"27071"},{"alias":"HVPS41","entrezGeneId":"27072"},{"alias":"hVps41p","entrezGeneId":"27072"},{"alias":"HVSP41","entrezGeneId":"27072"},{"alias":"CD208","entrezGeneId":"27074"},{"alias":"DC LAMP","entrezGeneId":"27074"},{"alias":"DC-LAMP","entrezGeneId":"27074"},{"alias":"DCLAMP","entrezGeneId":"27074"},{"alias":"LAMP","entrezGeneId":"27074"},{"alias":"LAMP-3","entrezGeneId":"27074"},{"alias":"TSC403","entrezGeneId":"27074"},{"alias":"NET-6","entrezGeneId":"27075"},{"alias":"NET6","entrezGeneId":"27075"},{"alias":"TM4SF13","entrezGeneId":"27075"},{"alias":"C4.4A","entrezGeneId":"27076"},{"alias":"B9","entrezGeneId":"27077"},{"alias":"EPPB9","entrezGeneId":"27077"},{"alias":"JBTS27","entrezGeneId":"27077"},{"alias":"MKS9","entrezGeneId":"27077"},{"alias":"MKSR1","entrezGeneId":"27077"},{"alias":"C15orf19","entrezGeneId":"27079"},{"alias":"C18B11","entrezGeneId":"27079"},{"alias":"MDM2BP","entrezGeneId":"27085"},{"alias":"12CC4","entrezGeneId":"27086"},{"alias":"hFKH1B","entrezGeneId":"27086"},{"alias":"HSPC215","entrezGeneId":"27086"},{"alias":"MFH","entrezGeneId":"27086"},{"alias":"QRF1","entrezGeneId":"27086"},{"alias":"CD57","entrezGeneId":"27087"},{"alias":"GLCATP","entrezGeneId":"27087"},{"alias":"GLCUATP","entrezGeneId":"27087"},{"alias":"HNK1","entrezGeneId":"27087"},{"alias":"LEU7","entrezGeneId":"27087"},{"alias":"NK-1","entrezGeneId":"27087"},{"alias":"NK1","entrezGeneId":"27087"},{"alias":"MC3DN4","entrezGeneId":"27089"},{"alias":"QCR8","entrezGeneId":"27089"},{"alias":"QP-C","entrezGeneId":"27089"},{"alias":"QPC","entrezGeneId":"27089"},{"alias":"UQCR7","entrezGeneId":"27089"},{"alias":"IV","entrezGeneId":"27090"},{"alias":"SIAT3-C","entrezGeneId":"27090"},{"alias":"SIAT3C","entrezGeneId":"27090"},{"alias":"SIAT7-D","entrezGeneId":"27090"},{"alias":"SIAT7D","entrezGeneId":"27090"},{"alias":"ST6GalNAc","entrezGeneId":"27090"},{"alias":"ST6GALNACIV","entrezGeneId":"27090"},{"alias":"KCNMB2L","entrezGeneId":"27093"},{"alias":"KCNMB3L","entrezGeneId":"27093"},{"alias":"KCNMB3L1","entrezGeneId":"27093"},{"alias":"KCNMBLP","entrezGeneId":"27093"},{"alias":"BKBETA3","entrezGeneId":"27094"},{"alias":"HBETA3","entrezGeneId":"27094"},{"alias":"K(VCA)BETA-3","entrezGeneId":"27094"},{"alias":"KCNMB2","entrezGeneId":"27094"},{"alias":"KCNMBL","entrezGeneId":"27094"},{"alias":"SLO-BETA-3","entrezGeneId":"27094"},{"alias":"SLOBETA3","entrezGeneId":"27094"},{"alias":"BET3","entrezGeneId":"27095"},{"alias":"PAF65B","entrezGeneId":"27097"},{"alias":"RA337M","entrezGeneId":"27098"},{"alias":"C7orf54","entrezGeneId":"27099"},{"alias":"NAG8","entrezGeneId":"27099"},{"alias":"NSG-X","entrezGeneId":"27099"},{"alias":"GIG5","entrezGeneId":"27101"},{"alias":"PNAS-107","entrezGeneId":"27101"},{"alias":"S100A6BP","entrezGeneId":"27101"},{"alias":"SIP","entrezGeneId":"27101"},{"alias":"HCR","entrezGeneId":"27102"},{"alias":"HRI","entrezGeneId":"27102"},{"alias":"CLONE24945","entrezGeneId":"27106"},{"alias":"PP2703","entrezGeneId":"27106"},{"alias":"ZNF-U69274","entrezGeneId":"27107"},{"alias":"ZNF913","entrezGeneId":"27107"},{"alias":"ATPW","entrezGeneId":"27109"},{"alias":"FB","entrezGeneId":"27109"},{"alias":"HSU79253","entrezGeneId":"27109"},{"alias":"SITAC","entrezGeneId":"27111"},{"alias":"SITAC18","entrezGeneId":"27111"},{"alias":"ST-2","entrezGeneId":"27111"},{"alias":"ST2","entrezGeneId":"27111"},{"alias":"bB57D9.1","entrezGeneId":"27112"},{"alias":"CXorf63","entrezGeneId":"27112"},{"alias":"TED","entrezGeneId":"27112"},{"alias":"TMEM28","entrezGeneId":"27112"},{"alias":"JFY-1","entrezGeneId":"27113"},{"alias":"JFY1","entrezGeneId":"27113"},{"alias":"PUMA","entrezGeneId":"27113"},{"alias":"bA472E5.1","entrezGeneId":"27115"},{"alias":"CT34","entrezGeneId":"27120"},{"alias":"SGY","entrezGeneId":"27120"},{"alias":"SGY-1","entrezGeneId":"27120"},{"alias":"SGY1","entrezGeneId":"27120"},{"alias":"DKK-4","entrezGeneId":"27121"},{"alias":"REIC","entrezGeneId":"27122"},{"alias":"RIG","entrezGeneId":"27122"},{"alias":"DKK-2","entrezGeneId":"27123"},{"alias":"INPP5","entrezGeneId":"27124"},{"alias":"PIB5PA","entrezGeneId":"27124"},{"alias":"PIPP","entrezGeneId":"27124"},{"alias":"AF5Q31","entrezGeneId":"27125"},{"alias":"CHOPS","entrezGeneId":"27125"},{"alias":"MCEF","entrezGeneId":"27125"},{"alias":"SMC1BETA","entrezGeneId":"27127"},{"alias":"SMC1L2","entrezGeneId":"27127"},{"alias":"CYT4","entrezGeneId":"27128"},{"alias":"cytohesin-4","entrezGeneId":"27128"},{"alias":"DJ63G5.1","entrezGeneId":"27128"},{"alias":"PSCD4","entrezGeneId":"27128"},{"alias":"cvHSP","entrezGeneId":"27129"},{"alias":"INV","entrezGeneId":"27130"},{"alias":"NPH2","entrezGeneId":"27130"},{"alias":"NPHP2","entrezGeneId":"27130"},{"alias":"EAG2","entrezGeneId":"27133"},{"alias":"H-EAG2","entrezGeneId":"27133"},{"alias":"hEAG2","entrezGeneId":"27133"},{"alias":"Kv10.2","entrezGeneId":"27133"},{"alias":"ZO-3","entrezGeneId":"27134"},{"alias":"ZO3","entrezGeneId":"27134"},{"alias":"CT33","entrezGeneId":"27136"},{"alias":"MORC","entrezGeneId":"27136"},{"alias":"ZCW6","entrezGeneId":"27136"},{"alias":"KIAA1274","entrezGeneId":"27143"},{"alias":"PALD","entrezGeneId":"27143"},{"alias":"FILIP","entrezGeneId":"27145"},{"alias":"FAM31D","entrezGeneId":"27147"},{"alias":"KIAA1277","entrezGeneId":"27147"},{"alias":"FU","entrezGeneId":"27148"},{"alias":"ASGD8","entrezGeneId":"27151"},{"alias":"K-CAP","entrezGeneId":"27151"},{"alias":"VIP","entrezGeneId":"27151"},{"alias":"CPLANE4","entrezGeneId":"27152"},{"alias":"INT","entrezGeneId":"27152"},{"alias":"OFD17","entrezGeneId":"27152"},{"alias":"PDZD6","entrezGeneId":"27152"},{"alias":"PDZK6","entrezGeneId":"27152"},{"alias":"SRTD20","entrezGeneId":"27152"},{"alias":"RTDR1","entrezGeneId":"27156"},{"alias":"bA350O14.9","entrezGeneId":"27158"},{"alias":"NR1","entrezGeneId":"27158"},{"alias":"AMCASE","entrezGeneId":"27159"},{"alias":"CHIT2","entrezGeneId":"27159"},{"alias":"TSA1902","entrezGeneId":"27159"},{"alias":"ING1-like","entrezGeneId":"27160"},{"alias":"ING2","entrezGeneId":"27160"},{"alias":"CASC7","entrezGeneId":"27161"},{"alias":"EIF2C2","entrezGeneId":"27161"},{"alias":"LINC00980","entrezGeneId":"27161"},{"alias":"PPD","entrezGeneId":"27161"},{"alias":"Q10","entrezGeneId":"27161"},{"alias":"ASAHL","entrezGeneId":"27163"},{"alias":"PLT","entrezGeneId":"27163"},{"alias":"ZNF796","entrezGeneId":"27164"},{"alias":"GA","entrezGeneId":"27165"},{"alias":"GLS","entrezGeneId":"27165"},{"alias":"hLGA","entrezGeneId":"27165"},{"alias":"LGA","entrezGeneId":"27165"},{"alias":"CGI-106","entrezGeneId":"27166"},{"alias":"PRELI","entrezGeneId":"27166"},{"alias":"PX19","entrezGeneId":"27166"},{"alias":"SBBI12","entrezGeneId":"27166"},{"alias":"CLPSMCR","entrezGeneId":"27170"},{"alias":"ZIP1","entrezGeneId":"27173"},{"alias":"ZIRTL","entrezGeneId":"27173"},{"alias":"FIL1","entrezGeneId":"27177"},{"alias":"FIL1-(ETA)","entrezGeneId":"27177"},{"alias":"FIL1H","entrezGeneId":"27177"},{"alias":"FILI-(ETA)","entrezGeneId":"27177"},{"alias":"IL-1F8","entrezGeneId":"27177"},{"alias":"IL-1H2","entrezGeneId":"27177"},{"alias":"IL1-ETA","entrezGeneId":"27177"},{"alias":"IL1F8","entrezGeneId":"27177"},{"alias":"IL1H2","entrezGeneId":"27177"},{"alias":"FIL1","entrezGeneId":"27178"},{"alias":"FIL1(ZETA)","entrezGeneId":"27178"},{"alias":"FIL1Z","entrezGeneId":"27178"},{"alias":"IL-1F7","entrezGeneId":"27178"},{"alias":"IL-1H","entrezGeneId":"27178"},{"alias":"IL-1H4","entrezGeneId":"27178"},{"alias":"IL-1RP1","entrezGeneId":"27178"},{"alias":"IL-37","entrezGeneId":"27178"},{"alias":"IL1F7","entrezGeneId":"27178"},{"alias":"IL1H4","entrezGeneId":"27178"},{"alias":"IL1RP1","entrezGeneId":"27178"},{"alias":"FIL1","entrezGeneId":"27179"},{"alias":"FIL1(EPSILON)","entrezGeneId":"27179"},{"alias":"FIL1E","entrezGeneId":"27179"},{"alias":"IL-1F6","entrezGeneId":"27179"},{"alias":"IL1(EPSILON)","entrezGeneId":"27179"},{"alias":"IL1F6","entrezGeneId":"27179"},{"alias":"CD329","entrezGeneId":"27180"},{"alias":"CDw329","entrezGeneId":"27180"},{"alias":"FOAP-9","entrezGeneId":"27180"},{"alias":"OBBP-LIKE","entrezGeneId":"27180"},{"alias":"siglec-9","entrezGeneId":"27180"},{"alias":"SAF2","entrezGeneId":"27181"},{"alias":"SIGLEC-8","entrezGeneId":"27181"},{"alias":"SIGLEC8L","entrezGeneId":"27181"},{"alias":"SKD1","entrezGeneId":"27183"},{"alias":"SKD1A","entrezGeneId":"27183"},{"alias":"SKD2","entrezGeneId":"27183"},{"alias":"VPS4","entrezGeneId":"27183"},{"alias":"VPS4-1","entrezGeneId":"27183"},{"alias":"DISC1-AS1","entrezGeneId":"27184"},{"alias":"DISC1OS","entrezGeneId":"27184"},{"alias":"NCRNA00015","entrezGeneId":"27184"},{"alias":"C1orf136","entrezGeneId":"27185"},{"alias":"SCZD9","entrezGeneId":"27185"},{"alias":"MOCS1P2","entrezGeneId":"27187"},{"alias":"CX2","entrezGeneId":"27189"},{"alias":"IL-17C","entrezGeneId":"27189"},{"alias":"IL-17B","entrezGeneId":"27190"},{"alias":"IL-20","entrezGeneId":"27190"},{"alias":"NIRF","entrezGeneId":"27190"},{"alias":"ZCYTO7","entrezGeneId":"27190"},{"alias":"SEDLP6","entrezGeneId":"27192"},{"alias":"SEDLP5","entrezGeneId":"27193"},{"alias":"SEDLP4","entrezGeneId":"27194"},{"alias":"SEDLP3","entrezGeneId":"27195"},{"alias":"SEDLP2","entrezGeneId":"27196"},{"alias":"FKSG80","entrezGeneId":"27198"},{"alias":"GPR104","entrezGeneId":"27198"},{"alias":"GPR81","entrezGeneId":"27198"},{"alias":"HCA1","entrezGeneId":"27198"},{"alias":"LACR1","entrezGeneId":"27198"},{"alias":"TA-GPCR","entrezGeneId":"27198"},{"alias":"TAGPCR","entrezGeneId":"27198"},{"alias":"aKGR","entrezGeneId":"27199"},{"alias":"GPR80","entrezGeneId":"27199"},{"alias":"GPR99","entrezGeneId":"27199"},{"alias":"P2RY15","entrezGeneId":"27199"},{"alias":"P2Y15","entrezGeneId":"27199"},{"alias":"GPR79P","entrezGeneId":"27200"},{"alias":"C5L2","entrezGeneId":"27202"},{"alias":"GPF77","entrezGeneId":"27202"},{"alias":"GPR77","entrezGeneId":"27202"},{"alias":"76P","entrezGeneId":"27229"},{"alias":"GCP-4","entrezGeneId":"27229"},{"alias":"GCP4","entrezGeneId":"27229"},{"alias":"Grip76","entrezGeneId":"27229"},{"alias":"MCCRP3","entrezGeneId":"27229"},{"alias":"RAMP4","entrezGeneId":"27230"},{"alias":"ITGB1BP3","entrezGeneId":"27231"},{"alias":"MIBP","entrezGeneId":"27231"},{"alias":"NRK2","entrezGeneId":"27231"},{"alias":"HEL-S-182mP","entrezGeneId":"27232"},{"alias":"SULT1C","entrezGeneId":"27233"},{"alias":"SULT1C2","entrezGeneId":"27233"},{"alias":"CL640","entrezGeneId":"27235"},{"alias":"COQ10D1","entrezGeneId":"27235"},{"alias":"MSA1","entrezGeneId":"27235"},{"alias":"PHB:PPT","entrezGeneId":"27235"},{"alias":"HSU52521","entrezGeneId":"27236"},{"alias":"GEF16","entrezGeneId":"27237"},{"alias":"NBR","entrezGeneId":"27237"},{"alias":"GPATC5","entrezGeneId":"27238"},{"alias":"GPATCH5","entrezGeneId":"27238"},{"alias":"Spp2","entrezGeneId":"27238"},{"alias":"T54","entrezGeneId":"27238"},{"alias":"A-2","entrezGeneId":"27239"},{"alias":"GRCA","entrezGeneId":"27239"},{"alias":"SIT","entrezGeneId":"27240"},{"alias":"SIT-R","entrezGeneId":"27240"},{"alias":"B1","entrezGeneId":"27241"},{"alias":"C18","entrezGeneId":"27241"},{"alias":"D1","entrezGeneId":"27241"},{"alias":"PTHB1","entrezGeneId":"27241"},{"alias":"BM-018","entrezGeneId":"27242"},{"alias":"CD358","entrezGeneId":"27242"},{"alias":"DR6","entrezGeneId":"27242"},{"alias":"BC-2","entrezGeneId":"27243"},{"alias":"BC2","entrezGeneId":"27243"},{"alias":"CHMP2","entrezGeneId":"27243"},{"alias":"VPS2","entrezGeneId":"27243"},{"alias":"VPS2A","entrezGeneId":"27243"},{"alias":"PA26","entrezGeneId":"27244"},{"alias":"SEST1","entrezGeneId":"27244"},{"alias":"MRD25","entrezGeneId":"27245"},{"alias":"BCA2","entrezGeneId":"27246"},{"alias":"ZNF364","entrezGeneId":"27246"},{"alias":"CGI-33","entrezGeneId":"27247"},{"alias":"HIRIP","entrezGeneId":"27247"},{"alias":"HIRIP5","entrezGeneId":"27247"},{"alias":"MMDS1","entrezGeneId":"27247"},{"alias":"Nfu","entrezGeneId":"27247"},{"alias":"NifU","entrezGeneId":"27247"},{"alias":"NIFUC","entrezGeneId":"27247"},{"alias":"C2orf30","entrezGeneId":"27248"},{"alias":"CIM","entrezGeneId":"27248"},{"alias":"CL24936","entrezGeneId":"27248"},{"alias":"CL25084","entrezGeneId":"27248"},{"alias":"HEL117","entrezGeneId":"27248"},{"alias":"XTP3-B","entrezGeneId":"27248"},{"alias":"XTP3TPB","entrezGeneId":"27248"},{"alias":"C2orf25","entrezGeneId":"27249"},{"alias":"cblD","entrezGeneId":"27249"},{"alias":"CL25022","entrezGeneId":"27249"},{"alias":"H731","entrezGeneId":"27250"},{"alias":"KHLHX","entrezGeneId":"27252"},{"alias":"KLEIP","entrezGeneId":"27252"},{"alias":"KLHLX","entrezGeneId":"27252"},{"alias":"PCDH68","entrezGeneId":"27253"},{"alias":"PCH68","entrezGeneId":"27253"},{"alias":"dJ347H13.2","entrezGeneId":"27254"},{"alias":"PIPPIN","entrezGeneId":"27254"},{"alias":"NB3","entrezGeneId":"27255"},{"alias":"CASM","entrezGeneId":"27257"},{"alias":"YJL124C","entrezGeneId":"27257"},{"alias":"SMX4","entrezGeneId":"27258"},{"alias":"USS2","entrezGeneId":"27258"},{"alias":"YLR438C","entrezGeneId":"27258"},{"alias":"FHL1","entrezGeneId":"27259"},{"alias":"HLH1","entrezGeneId":"27259"},{"alias":"TIN-AG","entrezGeneId":"27283"},{"alias":"ST1B1","entrezGeneId":"27284"},{"alias":"ST1B2","entrezGeneId":"27284"},{"alias":"SULT1B2","entrezGeneId":"27284"},{"alias":"h-tektin-t","entrezGeneId":"27285"},{"alias":"TEKTB1","entrezGeneId":"27285"},{"alias":"TEKTIN-T","entrezGeneId":"27285"},{"alias":"BPP","entrezGeneId":"27286"},{"alias":"CBPS","entrezGeneId":"27286"},{"alias":"PMGX","entrezGeneId":"27286"},{"alias":"RESDX","entrezGeneId":"27286"},{"alias":"SRPUL","entrezGeneId":"27286"},{"alias":"HPX42B","entrezGeneId":"27287"},{"alias":"NA88A","entrezGeneId":"27287"},{"alias":"VENTX2","entrezGeneId":"27287"},{"alias":"HNRNPG-T","entrezGeneId":"27288"},{"alias":"HNRNPGT","entrezGeneId":"27288"},{"alias":"HNRPGT","entrezGeneId":"27288"},{"alias":"ARHS","entrezGeneId":"27289"},{"alias":"RHO6","entrezGeneId":"27289"},{"alias":"RHOS","entrezGeneId":"27289"},{"alias":"HEL136","entrezGeneId":"27290"},{"alias":"PEC-60","entrezGeneId":"27290"},{"alias":"PEC60","entrezGeneId":"27290"},{"alias":"C10orf28","entrezGeneId":"27291"},{"alias":"GIDRP86","entrezGeneId":"27291"},{"alias":"GIDRP88","entrezGeneId":"27291"},{"alias":"PSORT","entrezGeneId":"27291"},{"alias":"DIM1","entrezGeneId":"27292"},{"alias":"DIMT1L","entrezGeneId":"27292"},{"alias":"HSA9761","entrezGeneId":"27292"},{"alias":"HUSSY5","entrezGeneId":"27292"},{"alias":"ASML3B","entrezGeneId":"27293"},{"alias":"2DD","entrezGeneId":"27294"},{"alias":"HUM2DD","entrezGeneId":"27294"},{"alias":"ALP","entrezGeneId":"27295"},{"alias":"C20orf10","entrezGeneId":"27296"},{"alias":"CLG01","entrezGeneId":"27296"},{"alias":"CGRP-RCP","entrezGeneId":"27297"},{"alias":"CGRPRCP","entrezGeneId":"27297"},{"alias":"RCP","entrezGeneId":"27297"},{"alias":"RCP9","entrezGeneId":"27297"},{"alias":"RPC9","entrezGeneId":"27297"},{"alias":"M12.219","entrezGeneId":"27299"},{"alias":"APE2","entrezGeneId":"27301"},{"alias":"APEXL2","entrezGeneId":"27301"},{"alias":"XTH2","entrezGeneId":"27301"},{"alias":"ZGRF2","entrezGeneId":"27301"},{"alias":"UBA4","entrezGeneId":"27304"},{"alias":"GSTS","entrezGeneId":"27306"},{"alias":"GSTS1","entrezGeneId":"27306"},{"alias":"GSTS1-1","entrezGeneId":"27306"},{"alias":"PGD2","entrezGeneId":"27306"},{"alias":"PGDS","entrezGeneId":"27306"},{"alias":"HSA6591","entrezGeneId":"27309"},{"alias":"NOA36","entrezGeneId":"27309"},{"alias":"CWH43-N","entrezGeneId":"27315"},{"alias":"FRAG1","entrezGeneId":"27315"},{"alias":"HPMRS3","entrezGeneId":"27315"},{"alias":"MRT17","entrezGeneId":"27315"},{"alias":"MRT21","entrezGeneId":"27315"},{"alias":"hnRNP-G","entrezGeneId":"27316"},{"alias":"HNRNPG","entrezGeneId":"27316"},{"alias":"HNRPG","entrezGeneId":"27316"},{"alias":"MRXS11","entrezGeneId":"27316"},{"alias":"RBMXP1","entrezGeneId":"27316"},{"alias":"RBMXRT","entrezGeneId":"27316"},{"alias":"RNMX","entrezGeneId":"27316"},{"alias":"Beta3","entrezGeneId":"27319"},{"alias":"Beta3a","entrezGeneId":"27319"},{"alias":"BHLHB5","entrezGeneId":"27319"},{"alias":"CAGL85","entrezGeneId":"27319"},{"alias":"TNRC20","entrezGeneId":"27319"},{"alias":"TNRC18","entrezGeneId":"27320"},{"alias":"TNRC18B","entrezGeneId":"27320"},{"alias":"CAGL234","entrezGeneId":"27321"},{"alias":"CAGF9","entrezGeneId":"27324"},{"alias":"TNRC9","entrezGeneId":"27324"},{"alias":"CAGH26","entrezGeneId":"27327"},{"alias":"GW1","entrezGeneId":"27327"},{"alias":"GW182","entrezGeneId":"27327"},{"alias":"TNRC6","entrezGeneId":"27327"},{"alias":"PCDH-X","entrezGeneId":"27328"},{"alias":"PCDH11","entrezGeneId":"27328"},{"alias":"PCDHX","entrezGeneId":"27328"},{"alias":"PPP1R119","entrezGeneId":"27328"},{"alias":"ANG-5","entrezGeneId":"27329"},{"alias":"ANGPT5","entrezGeneId":"27329"},{"alias":"ANL3","entrezGeneId":"27329"},{"alias":"FHBL2","entrezGeneId":"27329"},{"alias":"p90RSK6","entrezGeneId":"27330"},{"alias":"PP90RSK4","entrezGeneId":"27330"},{"alias":"RSK-4","entrezGeneId":"27330"},{"alias":"RSK4","entrezGeneId":"27330"},{"alias":"S6K-alpha-6","entrezGeneId":"27330"},{"alias":"NP220","entrezGeneId":"27332"},{"alias":"ZFML","entrezGeneId":"27332"},{"alias":"Zfp638","entrezGeneId":"27332"},{"alias":"GIMPC","entrezGeneId":"27333"},{"alias":"GOLPH4","entrezGeneId":"27333"},{"alias":"GPP130","entrezGeneId":"27333"},{"alias":"P138","entrezGeneId":"27333"},{"alias":"LYPSR2","entrezGeneId":"27334"},{"alias":"P2Y10","entrezGeneId":"27334"},{"alias":"ARG134","entrezGeneId":"27335"},{"alias":"EIF3-p28","entrezGeneId":"27335"},{"alias":"EIF3S12","entrezGeneId":"27335"},{"alias":"HSPC029","entrezGeneId":"27335"},{"alias":"M9","entrezGeneId":"27335"},{"alias":"MSTP001","entrezGeneId":"27335"},{"alias":"PLAC-24","entrezGeneId":"27335"},{"alias":"PLAC24","entrezGeneId":"27335"},{"alias":"PRO1474","entrezGeneId":"27335"},{"alias":"PTD001","entrezGeneId":"27335"},{"alias":"dJ196E23.2","entrezGeneId":"27336"},{"alias":"TAT-SF1","entrezGeneId":"27336"},{"alias":"TATSF1","entrezGeneId":"27336"},{"alias":"E2-EPF","entrezGeneId":"27338"},{"alias":"E2EPF","entrezGeneId":"27338"},{"alias":"EPF5","entrezGeneId":"27338"},{"alias":"hPSO4","entrezGeneId":"27339"},{"alias":"NMP200","entrezGeneId":"27339"},{"alias":"PRP19","entrezGeneId":"27339"},{"alias":"PSO4","entrezGeneId":"27339"},{"alias":"SNEV","entrezGeneId":"27339"},{"alias":"UBOX4","entrezGeneId":"27339"},{"alias":"1A6/DRIM","entrezGeneId":"27340"},{"alias":"DRIM","entrezGeneId":"27340"},{"alias":"BK126B4.3","entrezGeneId":"27341"},{"alias":"CGI-96","entrezGeneId":"27341"},{"alias":"Rrp7","entrezGeneId":"27341"},{"alias":"rabex-5","entrezGeneId":"27342"},{"alias":"RABEX5","entrezGeneId":"27342"},{"alias":"RAP1","entrezGeneId":"27342"},{"alias":"BETAN","entrezGeneId":"27343"},{"alias":"POLKAPPA","entrezGeneId":"27343"},{"alias":"BigLEN","entrezGeneId":"27344"},{"alias":"PEN","entrezGeneId":"27344"},{"alias":"PROSAAS","entrezGeneId":"27344"},{"alias":"SAAS","entrezGeneId":"27344"},{"alias":"SCG8","entrezGeneId":"27344"},{"alias":"SgVIII","entrezGeneId":"27344"},{"alias":"MAC30","entrezGeneId":"27346"},{"alias":"DCHT","entrezGeneId":"27347"},{"alias":"PASK","entrezGeneId":"27347"},{"alias":"SPAK","entrezGeneId":"27347"},{"alias":"DQ1","entrezGeneId":"27348"},{"alias":"fabD","entrezGeneId":"27349"},{"alias":"FASN2C","entrezGeneId":"27349"},{"alias":"MCT","entrezGeneId":"27349"},{"alias":"MCT1","entrezGeneId":"27349"},{"alias":"MT","entrezGeneId":"27349"},{"alias":"NET62","entrezGeneId":"27349"},{"alias":"A3C","entrezGeneId":"27350"},{"alias":"APOBEC1L","entrezGeneId":"27350"},{"alias":"ARDC2","entrezGeneId":"27350"},{"alias":"ARDC4","entrezGeneId":"27350"},{"alias":"ARP5","entrezGeneId":"27350"},{"alias":"bK150C2.3","entrezGeneId":"27350"},{"alias":"PBI","entrezGeneId":"27350"},{"alias":"D15Wsu75e","entrezGeneId":"27351"},{"alias":"DeSI-1","entrezGeneId":"27351"},{"alias":"DESI2","entrezGeneId":"27351"},{"alias":"DJ347H13.4","entrezGeneId":"27351"},{"alias":"FAM152B","entrezGeneId":"27351"},{"alias":"PPPDE2","entrezGeneId":"27351"},{"alias":"CIP85","entrezGeneId":"27352"},{"alias":"MAP","entrezGeneId":"27352"},{"alias":"RabGAP-5","entrezGeneId":"27352"},{"alias":"RABGAP5","entrezGeneId":"27352"},{"alias":"rabGAPLP","entrezGeneId":"27352"},{"alias":"RUSC3","entrezGeneId":"27352"},{"alias":"RUTBC3","entrezGeneId":"27352"},{"alias":"MGCA8","entrezGeneId":"27429"},{"alias":"OMI","entrezGeneId":"27429"},{"alias":"PARK13","entrezGeneId":"27429"},{"alias":"PRSS25","entrezGeneId":"27429"},{"alias":"MAT-II","entrezGeneId":"27430"},{"alias":"MATIIbeta","entrezGeneId":"27430"},{"alias":"Nbla02999","entrezGeneId":"27430"},{"alias":"SDR23E1","entrezGeneId":"27430"},{"alias":"TGR","entrezGeneId":"27430"},{"alias":"TORP1","entrezGeneId":"27433"},{"alias":"Pol Mu","entrezGeneId":"27434"},{"alias":"Tdt-N","entrezGeneId":"27434"},{"alias":"C2orf2","entrezGeneId":"27436"},{"alias":"ELP120","entrezGeneId":"27436"},{"alias":"EMAP-4","entrezGeneId":"27436"},{"alias":"EMAPL4","entrezGeneId":"27436"},{"alias":"ROPP120","entrezGeneId":"27436"},{"alias":"CECR8","entrezGeneId":"27437"},{"alias":"HSFYL1","entrezGeneId":"27437"},{"alias":"HSFYP1","entrezGeneId":"27437"},{"alias":"NCRNA00016","entrezGeneId":"27437"},{"alias":"CECR6","entrezGeneId":"27439"},{"alias":"CECR5","entrezGeneId":"27440"},{"alias":"ACZ","entrezGeneId":"27445"},{"alias":"PCH3","entrezGeneId":"27445"},{"alias":"NYREN8","entrezGeneId":"28227"},{"alias":"PPP2R3L","entrezGeneId":"28227"},{"alias":"PPP2R3LY","entrezGeneId":"28227"},{"alias":"PR48","entrezGeneId":"28227"},{"alias":"PR70","entrezGeneId":"28227"},{"alias":"OATP-E","entrezGeneId":"28231"},{"alias":"OATP1","entrezGeneId":"28231"},{"alias":"OATP4A1","entrezGeneId":"28231"},{"alias":"OATPE","entrezGeneId":"28231"},{"alias":"OATPRP1","entrezGeneId":"28231"},{"alias":"POAT","entrezGeneId":"28231"},{"alias":"SLC21A12","entrezGeneId":"28231"},{"alias":"OATP-D","entrezGeneId":"28232"},{"alias":"OATP-RP3","entrezGeneId":"28232"},{"alias":"OATP3A1","entrezGeneId":"28232"},{"alias":"OATPD","entrezGeneId":"28232"},{"alias":"OATPRP3","entrezGeneId":"28232"},{"alias":"SLC21A11","entrezGeneId":"28232"},{"alias":"HBLRR","entrezGeneId":"28234"},{"alias":"LST-2","entrezGeneId":"28234"},{"alias":"LST-3TM13","entrezGeneId":"28234"},{"alias":"LST3","entrezGeneId":"28234"},{"alias":"OATP-8","entrezGeneId":"28234"},{"alias":"OATP1B3","entrezGeneId":"28234"},{"alias":"OATP8","entrezGeneId":"28234"},{"alias":"SLC21A8","entrezGeneId":"28234"},{"alias":"IGKV","entrezGeneId":"28299"},{"alias":"IGKV15","entrezGeneId":"28299"},{"alias":"L12","entrezGeneId":"28299"},{"alias":"L12a","entrezGeneId":"28299"},{"alias":"V1","entrezGeneId":"28299"},{"alias":"IGHV3OR1616","entrezGeneId":"28300"},{"alias":"IGHV3OR1615","entrezGeneId":"28301"},{"alias":"IGHV3OR1612","entrezGeneId":"28304"},{"alias":"IGHV3OR1611","entrezGeneId":"28305"},{"alias":"IGHV3OR1610","entrezGeneId":"28306"},{"alias":"IGHV3OR169","entrezGeneId":"28307"},{"alias":"IGH","entrezGeneId":"28309"},{"alias":"IGHV","entrezGeneId":"28309"},{"alias":"IGHV3/OR16-7","entrezGeneId":"28309"},{"alias":"IGHV3OR167","entrezGeneId":"28309"},{"alias":"IGHV1OR164","entrezGeneId":"28312"},{"alias":"IGHV1OR163","entrezGeneId":"28313"},{"alias":"IGHV1OR162","entrezGeneId":"28314"},{"alias":"IGHV1OR161","entrezGeneId":"28315"},{"alias":"Cdh7","entrezGeneId":"28316"},{"alias":"CDH7L3","entrezGeneId":"28316"},{"alias":"IGHV4OR158","entrezGeneId":"28317"},{"alias":"VSIG6","entrezGeneId":"28317"},{"alias":"IGHV3/OR15-7","entrezGeneId":"28318"},{"alias":"IGHV1OR156","entrezGeneId":"28320"},{"alias":"IGHD5OR155B","entrezGeneId":"28326"},{"alias":"IGHD5OR155A","entrezGeneId":"28327"},{"alias":"IGHD4OR154B","entrezGeneId":"28328"},{"alias":"IGHD4OR154A","entrezGeneId":"28329"},{"alias":"IGHD3OR153B","entrezGeneId":"28330"},{"alias":"IGHD3OR153A","entrezGeneId":"28331"},{"alias":"IGHD2OR152B","entrezGeneId":"28332"},{"alias":"IGHD2OR152A","entrezGeneId":"28333"},{"alias":"IGHD1OR151B","entrezGeneId":"28334"},{"alias":"IGHD1OR151A","entrezGeneId":"28335"},{"alias":"(IV)-44","entrezGeneId":"28337"},{"alias":"4-44.1P","entrezGeneId":"28337"},{"alias":"IGHVIV441","entrezGeneId":"28337"},{"alias":"3-82P","entrezGeneId":"28338"},{"alias":"IGHVIII82","entrezGeneId":"28338"},{"alias":"3-76.1P","entrezGeneId":"28339"},{"alias":"IGHVIII761","entrezGeneId":"28339"},{"alias":"3-67.4P","entrezGeneId":"28340"},{"alias":"IGHVIII674","entrezGeneId":"28340"},{"alias":"3-67.3P","entrezGeneId":"28341"},{"alias":"IGHV(III)-6","entrezGeneId":"28341"},{"alias":"IGHVIII673","entrezGeneId":"28341"},{"alias":"3-67.2P","entrezGeneId":"28342"},{"alias":"IGHVIII672","entrezGeneId":"28342"},{"alias":"3-51.1P","entrezGeneId":"28343"},{"alias":"IGHVIII511","entrezGeneId":"28343"},{"alias":"3-47.1P","entrezGeneId":"28344"},{"alias":"IGHVIII471","entrezGeneId":"28344"},{"alias":"3-44P","entrezGeneId":"28345"},{"alias":"IGHVIII44","entrezGeneId":"28345"},{"alias":"3-38.1P","entrezGeneId":"28346"},{"alias":"38-1","entrezGeneId":"28346"},{"alias":"IGHVIII381","entrezGeneId":"28346"},{"alias":"3-26.1P","entrezGeneId":"28347"},{"alias":"IGHVIII261","entrezGeneId":"28347"},{"alias":"3-25.1P","entrezGeneId":"28348"},{"alias":"IGHVIII251","entrezGeneId":"28348"},{"alias":"3-22.2P","entrezGeneId":"28349"},{"alias":"IGHVIII222","entrezGeneId":"28349"},{"alias":"3-16.1P","entrezGeneId":"28350"},{"alias":"IGHVIII161","entrezGeneId":"28350"},{"alias":"3-13.1P","entrezGeneId":"28351"},{"alias":"IGHVIII131","entrezGeneId":"28351"},{"alias":"3-11.1P","entrezGeneId":"28352"},{"alias":"IGHVIII111","entrezGeneId":"28352"},{"alias":"3-05.2P","entrezGeneId":"28353"},{"alias":"IGHVIII52","entrezGeneId":"28353"},{"alias":"3-05.1P","entrezGeneId":"28354"},{"alias":"IGHVIII51","entrezGeneId":"28354"},{"alias":"3-02.1P","entrezGeneId":"28355"},{"alias":"IGHVIII21","entrezGeneId":"28355"},{"alias":"4-78.1P","entrezGeneId":"28356"},{"alias":"IGHVII781","entrezGeneId":"28356"},{"alias":"4-74.1P","entrezGeneId":"28357"},{"alias":"IGHVII741","entrezGeneId":"28357"},{"alias":"4-67.1P","entrezGeneId":"28358"},{"alias":"IGHVII671","entrezGeneId":"28358"},{"alias":"4-65.1P","entrezGeneId":"28359"},{"alias":"IGHVII651","entrezGeneId":"28359"},{"alias":"4-62.1P","entrezGeneId":"28360"},{"alias":"IGHVII621","entrezGeneId":"28360"},{"alias":"4-60.1P","entrezGeneId":"28361"},{"alias":"IGHVII601","entrezGeneId":"28361"},{"alias":"4-53.1P","entrezGeneId":"28362"},{"alias":"IGHVII531","entrezGeneId":"28362"},{"alias":"4-51.2P","entrezGeneId":"28363"},{"alias":"IGHVII512","entrezGeneId":"28363"},{"alias":"4-49.1P","entrezGeneId":"28364"},{"alias":"IGHVII491","entrezGeneId":"28364"},{"alias":"4-46.1P","entrezGeneId":"28365"},{"alias":"IGHVII461","entrezGeneId":"28365"},{"alias":"4-44.2P","entrezGeneId":"28366"},{"alias":"IGHVII442","entrezGeneId":"28366"},{"alias":"4-43.1P","entrezGeneId":"28367"},{"alias":"IGHVII431","entrezGeneId":"28367"},{"alias":"4-40.1P","entrezGeneId":"28368"},{"alias":"IGHVII401","entrezGeneId":"28368"},{"alias":"4-33.1P","entrezGeneId":"28369"},{"alias":"IGHVII331","entrezGeneId":"28369"},{"alias":"4-31.1P","entrezGeneId":"28370"},{"alias":"IGHVII311","entrezGeneId":"28370"},{"alias":"4-30.1P","entrezGeneId":"28371"},{"alias":"IGHVII301","entrezGeneId":"28371"},{"alias":"4-28.1P","entrezGeneId":"28372"},{"alias":"IGHVII281","entrezGeneId":"28372"},{"alias":"4-26.2P","entrezGeneId":"28373"},{"alias":"IGHVII262","entrezGeneId":"28373"},{"alias":"4-22.1P","entrezGeneId":"28374"},{"alias":"IGHVII221","entrezGeneId":"28374"},{"alias":"4-20.1P","entrezGeneId":"28375"},{"alias":"IGHVII201","entrezGeneId":"28375"},{"alias":"4-15.1P","entrezGeneId":"28376"},{"alias":"IGHVII151","entrezGeneId":"28376"},{"alias":"4-01.1P","entrezGeneId":"28377"},{"alias":"IGHVII11","entrezGeneId":"28377"},{"alias":"IGHV781","entrezGeneId":"28378"},{"alias":"7-56P","entrezGeneId":"28380"},{"alias":"IGHV756","entrezGeneId":"28380"},{"alias":"7-40P","entrezGeneId":"28381"},{"alias":"IGHV740","entrezGeneId":"28381"},{"alias":"7-34.1P","entrezGeneId":"28382"},{"alias":"IGHV7341","entrezGeneId":"28382"},{"alias":"7-27P","entrezGeneId":"28383"},{"alias":"IGHV727","entrezGeneId":"28383"},{"alias":"IGHV61","entrezGeneId":"28385"},{"alias":"VH","entrezGeneId":"28385"},{"alias":"IGHV5-A","entrezGeneId":"28386"},{"alias":"IGHV5A","entrezGeneId":"28386"},{"alias":"5-78P","entrezGeneId":"28387"},{"alias":"IGHV578","entrezGeneId":"28387"},{"alias":"VH5","entrezGeneId":"28387"},{"alias":"IGHV551","entrezGeneId":"28388"},{"alias":"VH","entrezGeneId":"28388"},{"alias":"IGHV4-B","entrezGeneId":"28389"},{"alias":"IGHV4B","entrezGeneId":"28389"},{"alias":"4-80P","entrezGeneId":"28390"},{"alias":"IGHV480","entrezGeneId":"28390"},{"alias":"IGHV461","entrezGeneId":"28391"},{"alias":"VH","entrezGeneId":"28391"},{"alias":"IGHV459","entrezGeneId":"28392"},{"alias":"VH","entrezGeneId":"28392"},{"alias":"4-55P","entrezGeneId":"28393"},{"alias":"IGHV455","entrezGeneId":"28393"},{"alias":"IGHV439","entrezGeneId":"28394"},{"alias":"VH","entrezGeneId":"28394"},{"alias":"IGHV434","entrezGeneId":"28395"},{"alias":"VH","entrezGeneId":"28395"},{"alias":"IGHV431","entrezGeneId":"28396"},{"alias":"IGHV4-3","entrezGeneId":"28397"},{"alias":"IGHV4304","entrezGeneId":"28397"},{"alias":"IGHV4-3","entrezGeneId":"28398"},{"alias":"IGHV4302","entrezGeneId":"28398"},{"alias":"IGHV4-3","entrezGeneId":"28399"},{"alias":"IGHV428","entrezGeneId":"28400"},{"alias":"VH","entrezGeneId":"28400"},{"alias":"IGHV44","entrezGeneId":"28401"},{"alias":"VH","entrezGeneId":"28401"},{"alias":"IGH","entrezGeneId":"28402"},{"alias":"IGHM","entrezGeneId":"28402"},{"alias":"IGHV","entrezGeneId":"28402"},{"alias":"IGHV3-11","entrezGeneId":"28402"},{"alias":"IGHV3-H","entrezGeneId":"28402"},{"alias":"IGHV3H","entrezGeneId":"28402"},{"alias":"IgVH","entrezGeneId":"28402"},{"alias":"IGHV3-D","entrezGeneId":"28404"},{"alias":"IGHV3D","entrezGeneId":"28404"},{"alias":"3-79P","entrezGeneId":"28405"},{"alias":"IGHV379","entrezGeneId":"28405"},{"alias":"3-76P","entrezGeneId":"28406"},{"alias":"IGHV376","entrezGeneId":"28406"},{"alias":"3-75P","entrezGeneId":"28407"},{"alias":"IGHV375","entrezGeneId":"28407"},{"alias":"VH3","entrezGeneId":"28407"},{"alias":"IGHV374","entrezGeneId":"28408"},{"alias":"VH","entrezGeneId":"28408"},{"alias":"IGHV373","entrezGeneId":"28409"},{"alias":"VH","entrezGeneId":"28409"},{"alias":"IGHV372","entrezGeneId":"28410"},{"alias":"VH","entrezGeneId":"28410"},{"alias":"3-71P","entrezGeneId":"28411"},{"alias":"IGHV3-G","entrezGeneId":"28411"},{"alias":"IGHV371","entrezGeneId":"28411"},{"alias":"IGHV3G","entrezGeneId":"28411"},{"alias":"IGHV366","entrezGeneId":"28412"},{"alias":"VH","entrezGeneId":"28412"},{"alias":"3-65P","entrezGeneId":"28413"},{"alias":"IGHV365","entrezGeneId":"28413"},{"alias":"IGHV364","entrezGeneId":"28414"},{"alias":"VH","entrezGeneId":"28414"},{"alias":"IGHV363","entrezGeneId":"28415"},{"alias":"V3-63P","entrezGeneId":"28415"},{"alias":"3-62P","entrezGeneId":"28416"},{"alias":"IGHV362","entrezGeneId":"28416"},{"alias":"3-60P","entrezGeneId":"28417"},{"alias":"IGHV360","entrezGeneId":"28417"},{"alias":"3-57P","entrezGeneId":"28418"},{"alias":"IGHV357","entrezGeneId":"28418"},{"alias":"3-54P","entrezGeneId":"28419"},{"alias":"IGHV354","entrezGeneId":"28419"},{"alias":"IGHV353","entrezGeneId":"28420"},{"alias":"VH","entrezGeneId":"28420"},{"alias":"3-52P","entrezGeneId":"28421"},{"alias":"IGHV352","entrezGeneId":"28421"},{"alias":"3-50P","entrezGeneId":"28422"},{"alias":"IGHV350","entrezGeneId":"28422"},{"alias":"IGHV349","entrezGeneId":"28423"},{"alias":"VH","entrezGeneId":"28423"},{"alias":"IGHV348","entrezGeneId":"28424"},{"alias":"VH","entrezGeneId":"28424"},{"alias":"3-47P","entrezGeneId":"28425"},{"alias":"IGHV347","entrezGeneId":"28425"},{"alias":"IGHV343","entrezGeneId":"28426"},{"alias":"VH","entrezGeneId":"28426"},{"alias":"3-42P","entrezGeneId":"28427"},{"alias":"IGHV342","entrezGeneId":"28427"},{"alias":"3-41P","entrezGeneId":"28428"},{"alias":"IGHV341","entrezGeneId":"28428"},{"alias":"IGHV338","entrezGeneId":"28429"},{"alias":"VH","entrezGeneId":"28429"},{"alias":"3-37P","entrezGeneId":"28430"},{"alias":"IGHV337","entrezGeneId":"28430"},{"alias":"3-36P","entrezGeneId":"28431"},{"alias":"IGHV336","entrezGeneId":"28431"},{"alias":"IGHV335","entrezGeneId":"28432"},{"alias":"VH","entrezGeneId":"28432"},{"alias":"3-33.2P","entrezGeneId":"28433"},{"alias":"IGHV3332","entrezGeneId":"28433"},{"alias":"IGHV333","entrezGeneId":"28434"},{"alias":"VH","entrezGeneId":"28434"},{"alias":"3-32P","entrezGeneId":"28435"},{"alias":"IGHV332","entrezGeneId":"28435"},{"alias":"3-30.2P","entrezGeneId":"28438"},{"alias":"IGHV3302","entrezGeneId":"28438"},{"alias":"IGHV330","entrezGeneId":"28439"},{"alias":"VH","entrezGeneId":"28439"},{"alias":"3-29P","entrezGeneId":"28440"},{"alias":"IGHV329","entrezGeneId":"28440"},{"alias":"3-25P","entrezGeneId":"28441"},{"alias":"IGHV325","entrezGeneId":"28441"},{"alias":"DP47","entrezGeneId":"28442"},{"alias":"IGHV323","entrezGeneId":"28442"},{"alias":"V3-23","entrezGeneId":"28442"},{"alias":"VH26","entrezGeneId":"28442"},{"alias":"3-22P","entrezGeneId":"28443"},{"alias":"IGHV322","entrezGeneId":"28443"},{"alias":"IGHV321","entrezGeneId":"28444"},{"alias":"VH","entrezGeneId":"28444"},{"alias":"IGHV320","entrezGeneId":"28445"},{"alias":"VH","entrezGeneId":"28445"},{"alias":"3-19P","entrezGeneId":"28446"},{"alias":"IGHV319","entrezGeneId":"28446"},{"alias":"IGHV316","entrezGeneId":"28447"},{"alias":"VH","entrezGeneId":"28447"},{"alias":"IGHV315","entrezGeneId":"28448"},{"alias":"VH","entrezGeneId":"28448"},{"alias":"IGHV313","entrezGeneId":"28449"},{"alias":"IGHV311","entrezGeneId":"28450"},{"alias":"VH","entrezGeneId":"28450"},{"alias":"IGHV39","entrezGeneId":"28451"},{"alias":"VH","entrezGeneId":"28451"},{"alias":"IGHV37","entrezGeneId":"28452"},{"alias":"VH","entrezGeneId":"28452"},{"alias":"3-06P","entrezGeneId":"28453"},{"alias":"IGHV36","entrezGeneId":"28453"},{"alias":"IGHV270","entrezGeneId":"28454"},{"alias":"VH","entrezGeneId":"28454"},{"alias":"IGHV226","entrezGeneId":"28455"},{"alias":"VH","entrezGeneId":"28455"},{"alias":"2-10P","entrezGeneId":"28456"},{"alias":"IGHV210","entrezGeneId":"28456"},{"alias":"IGHV25","entrezGeneId":"28457"},{"alias":"VH","entrezGeneId":"28457"},{"alias":"IGHV1-F","entrezGeneId":"28458"},{"alias":"IGHV1F","entrezGeneId":"28458"},{"alias":"IGHV1-C","entrezGeneId":"28460"},{"alias":"IGHV1C","entrezGeneId":"28460"},{"alias":"IGHV1-E","entrezGeneId":"28461"},{"alias":"IGHV169","entrezGeneId":"28461"},{"alias":"IGHV1E","entrezGeneId":"28461"},{"alias":"1-68P","entrezGeneId":"28462"},{"alias":"IGHV168","entrezGeneId":"28462"},{"alias":"1-67P","entrezGeneId":"28463"},{"alias":"IGHV167","entrezGeneId":"28463"},{"alias":"IGHV158","entrezGeneId":"28464"},{"alias":"VH","entrezGeneId":"28464"},{"alias":"IGHV146","entrezGeneId":"28465"},{"alias":"IGHV145","entrezGeneId":"28466"},{"alias":"VH","entrezGeneId":"28466"},{"alias":"IGHV124","entrezGeneId":"28467"},{"alias":"VH","entrezGeneId":"28467"},{"alias":"IGHV118","entrezGeneId":"28468"},{"alias":"1-17P","entrezGeneId":"28469"},{"alias":"IGHV117","entrezGeneId":"28469"},{"alias":"1-14P","entrezGeneId":"28470"},{"alias":"IGHV114","entrezGeneId":"28470"},{"alias":"1-12P","entrezGeneId":"28471"},{"alias":"IGHV112","entrezGeneId":"28471"},{"alias":"IGHV18","entrezGeneId":"28472"},{"alias":"IGHV13","entrezGeneId":"28473"},{"alias":"VI-3B","entrezGeneId":"28473"},{"alias":"IGHV12","entrezGeneId":"28474"},{"alias":"V35","entrezGeneId":"28474"},{"alias":"JH6b","entrezGeneId":"28475"},{"alias":"JH5b","entrezGeneId":"28476"},{"alias":"JH4b","entrezGeneId":"28477"},{"alias":"Jpsi3","entrezGeneId":"28478"},{"alias":"JH3b","entrezGeneId":"28479"},{"alias":"Jpsi2","entrezGeneId":"28480"},{"alias":"JH2","entrezGeneId":"28481"},{"alias":"J-psi-1","entrezGeneId":"28482"},{"alias":"Jpsi1","entrezGeneId":"28482"},{"alias":"JH1","entrezGeneId":"28483"},{"alias":"DHQ52","entrezGeneId":"28484"},{"alias":"IGHD727","entrezGeneId":"28484"},{"alias":"IGHD625","entrezGeneId":"28485"},{"alias":"IGHD619","entrezGeneId":"28486"},{"alias":"DN1","entrezGeneId":"28487"},{"alias":"IGHD613","entrezGeneId":"28487"},{"alias":"D(N4)","entrezGeneId":"28488"},{"alias":"IGHD66","entrezGeneId":"28488"},{"alias":"IGHD524","entrezGeneId":"28489"},{"alias":"IGHD518","entrezGeneId":"28490"},{"alias":"DK1","entrezGeneId":"28491"},{"alias":"IGHD512","entrezGeneId":"28491"},{"alias":"DK4","entrezGeneId":"28492"},{"alias":"IGHD55","entrezGeneId":"28492"},{"alias":"IGHD423","entrezGeneId":"28493"},{"alias":"IGHD417","entrezGeneId":"28494"},{"alias":"DA1","entrezGeneId":"28495"},{"alias":"IGHD411","entrezGeneId":"28495"},{"alias":"DA4","entrezGeneId":"28496"},{"alias":"IGHD44","entrezGeneId":"28496"},{"alias":"IGHD322","entrezGeneId":"28497"},{"alias":"IGHD316","entrezGeneId":"28498"},{"alias":"DXP'1","entrezGeneId":"28499"},{"alias":"IGHD310","entrezGeneId":"28499"},{"alias":"DXP1","entrezGeneId":"28500"},{"alias":"IGHD39","entrezGeneId":"28500"},{"alias":"DXP4","entrezGeneId":"28501"},{"alias":"IGHD33","entrezGeneId":"28501"},{"alias":"IGHD221","entrezGeneId":"28502"},{"alias":"D2","entrezGeneId":"28503"},{"alias":"IGHD215","entrezGeneId":"28503"},{"alias":"DLR1","entrezGeneId":"28504"},{"alias":"IGHD28","entrezGeneId":"28504"},{"alias":"IGHD22","entrezGeneId":"28505"},{"alias":"IGHD126","entrezGeneId":"28506"},{"alias":"IGHD120","entrezGeneId":"28507"},{"alias":"DM2","entrezGeneId":"28508"},{"alias":"IGHD114","entrezGeneId":"28508"},{"alias":"DM1","entrezGeneId":"28509"},{"alias":"IGHD17","entrezGeneId":"28509"},{"alias":"IGHD11","entrezGeneId":"28510"},{"alias":"kappaB-Ras2","entrezGeneId":"28511"},{"alias":"KBRAS2","entrezGeneId":"28511"},{"alias":"kappaB-Ras1","entrezGeneId":"28512"},{"alias":"KBRAS1","entrezGeneId":"28512"},{"alias":"CDH7","entrezGeneId":"28513"},{"alias":"CDH7L2","entrezGeneId":"28513"},{"alias":"Delta","entrezGeneId":"28514"},{"alias":"DELTA1","entrezGeneId":"28514"},{"alias":"DL1","entrezGeneId":"28514"},{"alias":"FCHL2","entrezGeneId":"28515"},{"alias":"hDV103S1","entrezGeneId":"28516"},{"alias":"hDV102S1","entrezGeneId":"28517"},{"alias":"hDV101S1","entrezGeneId":"28518"},{"alias":"TCRD","entrezGeneId":"28522"},{"alias":"TCRD","entrezGeneId":"28523"},{"alias":"TCRD","entrezGeneId":"28526"},{"alias":"TCRBV19S2O","entrezGeneId":"28552"},{"alias":"TCRBV23S2","entrezGeneId":"28552"},{"alias":"TRBV23OR92","entrezGeneId":"28552"},{"alias":"TCRBV34S1","entrezGeneId":"28555"},{"alias":"TCRBV33S1","entrezGeneId":"28556"},{"alias":"TCRBV20S1A1N2","entrezGeneId":"28557"},{"alias":"TCRBV30S1","entrezGeneId":"28557"},{"alias":"TCRBV29S1","entrezGeneId":"28558"},{"alias":"TCRBV4S1A1T","entrezGeneId":"28558"},{"alias":"TRBV291","entrezGeneId":"28558"},{"alias":"TCRBV28S1","entrezGeneId":"28559"},{"alias":"TCRBV3S1","entrezGeneId":"28559"},{"alias":"TCRBV14S1","entrezGeneId":"28560"},{"alias":"TCRBV27S1","entrezGeneId":"28560"},{"alias":"TCRBV26S1","entrezGeneId":"28561"},{"alias":"TCRBV28S1P","entrezGeneId":"28561"},{"alias":"TCRBV11S1A1T","entrezGeneId":"28562"},{"alias":"TCRBV25S1","entrezGeneId":"28562"},{"alias":"TRBV251","entrezGeneId":"28562"},{"alias":"TCRBV15S1","entrezGeneId":"28563"},{"alias":"TCRBV24S1","entrezGeneId":"28563"},{"alias":"TRBV241","entrezGeneId":"28563"},{"alias":"TCRBV19S1P","entrezGeneId":"28564"},{"alias":"TCRBV23S1","entrezGeneId":"28564"},{"alias":"TRBV231","entrezGeneId":"28564"},{"alias":"TCRBV22S1","entrezGeneId":"28565"},{"alias":"TCRBV29S1P","entrezGeneId":"28565"},{"alias":"TRBV22","entrezGeneId":"28565"},{"alias":"TCRBV10S1P","entrezGeneId":"28566"},{"alias":"TCRBV21S1","entrezGeneId":"28566"},{"alias":"TRBV211","entrezGeneId":"28566"},{"alias":"TCRBV20S1","entrezGeneId":"28567"},{"alias":"TCRBV2S1","entrezGeneId":"28567"},{"alias":"TRBV201","entrezGeneId":"28567"},{"alias":"TCRBV17S1A1T","entrezGeneId":"28568"},{"alias":"TCRBV19S1","entrezGeneId":"28568"},{"alias":"TCRBV18S1","entrezGeneId":"28569"},{"alias":"TCRBV17S1","entrezGeneId":"28570"},{"alias":"TCRBV26S1P","entrezGeneId":"28570"},{"alias":"BV25S1J1.2","entrezGeneId":"28571"},{"alias":"TCRB","entrezGeneId":"28571"},{"alias":"TCRBV16S1","entrezGeneId":"28571"},{"alias":"TCRBV25S1","entrezGeneId":"28571"},{"alias":"TCRBV25S1A2PT","entrezGeneId":"28571"},{"alias":"TCRBV15S1","entrezGeneId":"28572"},{"alias":"TCRBV24S1A3T","entrezGeneId":"28572"},{"alias":"TCRBV14S1","entrezGeneId":"28573"},{"alias":"TCRBV16S1A1N1","entrezGeneId":"28573"},{"alias":"TCRBV13S1","entrezGeneId":"28574"},{"alias":"TCRBV23S1A2T","entrezGeneId":"28574"},{"alias":"TCRBV12S5","entrezGeneId":"28575"},{"alias":"TCRBV8S3","entrezGeneId":"28575"},{"alias":"TRBV125","entrezGeneId":"28575"},{"alias":"TCRBV12S4","entrezGeneId":"28576"},{"alias":"TCRBV8S2A1T","entrezGeneId":"28576"},{"alias":"TRBV124","entrezGeneId":"28576"},{"alias":"TCRBV12S3","entrezGeneId":"28577"},{"alias":"TCRBV8S1","entrezGeneId":"28577"},{"alias":"TRBV123","entrezGeneId":"28577"},{"alias":"TCRBV12S2","entrezGeneId":"28578"},{"alias":"TCRBV8S5P","entrezGeneId":"28578"},{"alias":"TRBV122","entrezGeneId":"28578"},{"alias":"TCRBV12S1","entrezGeneId":"28579"},{"alias":"TCRBV8S4P","entrezGeneId":"28579"},{"alias":"TRBV121","entrezGeneId":"28579"},{"alias":"TCRBV11S3","entrezGeneId":"28580"},{"alias":"TCRBV21S2A2","entrezGeneId":"28580"},{"alias":"TRBV113","entrezGeneId":"28580"},{"alias":"TCRBV11S2","entrezGeneId":"28581"},{"alias":"TCRBV21S3A2N2T","entrezGeneId":"28581"},{"alias":"TRBV112","entrezGeneId":"28581"},{"alias":"TCRBV11S1","entrezGeneId":"28582"},{"alias":"TCRBV21S1","entrezGeneId":"28582"},{"alias":"TRBV111","entrezGeneId":"28582"},{"alias":"TCRBV10S3","entrezGeneId":"28583"},{"alias":"TCRBV12S1A1N2","entrezGeneId":"28583"},{"alias":"TRBV103","entrezGeneId":"28583"},{"alias":"TCRBV10S2","entrezGeneId":"28584"},{"alias":"TCRBV12S3","entrezGeneId":"28584"},{"alias":"TRBV102","entrezGeneId":"28584"},{"alias":"TCRBV10S1","entrezGeneId":"28585"},{"alias":"TCRBV12S2","entrezGeneId":"28585"},{"alias":"TCRBV12S2A1T","entrezGeneId":"28585"},{"alias":"TRBV101","entrezGeneId":"28585"},{"alias":"TCRBV1S1A1N1","entrezGeneId":"28586"},{"alias":"TCRBV9S1","entrezGeneId":"28586"},{"alias":"TCRBV32S1P","entrezGeneId":"28587"},{"alias":"TRBV82","entrezGeneId":"28587"},{"alias":"TCRBV30S1P","entrezGeneId":"28588"},{"alias":"TCRBV8S1P","entrezGeneId":"28588"},{"alias":"TRBV81","entrezGeneId":"28588"},{"alias":"TCRBV6S4A1","entrezGeneId":"28589"},{"alias":"TCRBV7S9","entrezGeneId":"28589"},{"alias":"TRBV79","entrezGeneId":"28589"},{"alias":"TCRBV6S2A1N1T","entrezGeneId":"28590"},{"alias":"TCRBV7S8","entrezGeneId":"28590"},{"alias":"TRBV78","entrezGeneId":"28590"},{"alias":"TCRBV6S6A2T","entrezGeneId":"28591"},{"alias":"TCRBV7S7","entrezGeneId":"28591"},{"alias":"TRBV77","entrezGeneId":"28591"},{"alias":"TCRBV6S3A1N1T","entrezGeneId":"28592"},{"alias":"TCRBV7S6","entrezGeneId":"28592"},{"alias":"TRBV76","entrezGeneId":"28592"},{"alias":"TCRBV6S9P","entrezGeneId":"28593"},{"alias":"TCRBV7S5","entrezGeneId":"28593"},{"alias":"TRBV75","entrezGeneId":"28593"},{"alias":"TCRBV6S8A2T","entrezGeneId":"28594"},{"alias":"TCRBV7S4","entrezGeneId":"28594"},{"alias":"TRBV74","entrezGeneId":"28594"},{"alias":"TCRBV6S1A1N1","entrezGeneId":"28595"},{"alias":"TCRBV7S3","entrezGeneId":"28595"},{"alias":"TRBV73","entrezGeneId":"28595"},{"alias":"TCRBV6S5A1N1","entrezGeneId":"28596"},{"alias":"TCRBV6S5A2","entrezGeneId":"28596"},{"alias":"TCRBV7S2","entrezGeneId":"28596"},{"alias":"TRBV72","entrezGeneId":"28596"},{"alias":"TCRBV6S7P","entrezGeneId":"28597"},{"alias":"TCRBV7S1","entrezGeneId":"28597"},{"alias":"TRBV71","entrezGeneId":"28597"},{"alias":"TCRBV13S4","entrezGeneId":"28598"},{"alias":"TCRBV6S9","entrezGeneId":"28598"},{"alias":"TRBV69","entrezGeneId":"28598"},{"alias":"TCRBV13S7P","entrezGeneId":"28599"},{"alias":"TCRBV6S8","entrezGeneId":"28599"},{"alias":"TRBV68","entrezGeneId":"28599"},{"alias":"TCRBV13S8P","entrezGeneId":"28600"},{"alias":"TCRBV6S7","entrezGeneId":"28600"},{"alias":"TRBV67","entrezGeneId":"28600"},{"alias":"TCRBV13S6A2T","entrezGeneId":"28601"},{"alias":"TCRBV6S6","entrezGeneId":"28601"},{"alias":"TRBV66","entrezGeneId":"28601"},{"alias":"TCRBV13S1","entrezGeneId":"28602"},{"alias":"TCRBV6S5","entrezGeneId":"28602"},{"alias":"TRBV65","entrezGeneId":"28602"},{"alias":"TCRBV13S5","entrezGeneId":"28603"},{"alias":"TCRBV6S4","entrezGeneId":"28603"},{"alias":"TRBV64","entrezGeneId":"28603"},{"alias":"TCRBV13S9/13S2A1T","entrezGeneId":"28604"},{"alias":"TCRBV6S3","entrezGeneId":"28604"},{"alias":"TRBV63","entrezGeneId":"28604"},{"alias":"TCRBV13S2","entrezGeneId":"28605"},{"alias":"TCRBV13S2A1T","entrezGeneId":"28605"},{"alias":"TCRBV6S2","entrezGeneId":"28605"},{"alias":"TRBV62","entrezGeneId":"28605"},{"alias":"TCRBV13S3","entrezGeneId":"28606"},{"alias":"TCRBV6S1","entrezGeneId":"28606"},{"alias":"TRBV61","entrezGeneId":"28606"},{"alias":"TCRBV5S4A2T","entrezGeneId":"28607"},{"alias":"TCRBV5S8","entrezGeneId":"28607"},{"alias":"TRBV58","entrezGeneId":"28607"},{"alias":"TCRBV5S7","entrezGeneId":"28608"},{"alias":"TCRBV5S7P","entrezGeneId":"28608"},{"alias":"TRBV57","entrezGeneId":"28608"},{"alias":"TCRBV5S2","entrezGeneId":"28609"},{"alias":"TCRBV5S6","entrezGeneId":"28609"},{"alias":"TRBV56","entrezGeneId":"28609"},{"alias":"TCRBV5S3A2T","entrezGeneId":"28610"},{"alias":"TCRBV5S5","entrezGeneId":"28610"},{"alias":"TRBV55","entrezGeneId":"28610"},{"alias":"TCRBV5S4","entrezGeneId":"28611"},{"alias":"TCRBV5S6A3N2T","entrezGeneId":"28611"},{"alias":"TRBV54","entrezGeneId":"28611"},{"alias":"TCRBV5S3","entrezGeneId":"28612"},{"alias":"TCRBV5S5P","entrezGeneId":"28612"},{"alias":"TRBV53","entrezGeneId":"28612"},{"alias":"TCRBV31S1","entrezGeneId":"28613"},{"alias":"TCRBV5S2P","entrezGeneId":"28613"},{"alias":"TRBV52","entrezGeneId":"28613"},{"alias":"TCRBV5S1","entrezGeneId":"28614"},{"alias":"TCRBV5S1A1T","entrezGeneId":"28614"},{"alias":"TRBV51","entrezGeneId":"28614"},{"alias":"TCRBV4S3","entrezGeneId":"28615"},{"alias":"TCRBV7S2A1N4T","entrezGeneId":"28615"},{"alias":"TRBV43","entrezGeneId":"28615"},{"alias":"TCRBV4S2","entrezGeneId":"28616"},{"alias":"TCRBV7S3A2","entrezGeneId":"28616"},{"alias":"TCRBV7S3A2T","entrezGeneId":"28616"},{"alias":"TRBV42","entrezGeneId":"28616"},{"alias":"BV07S1J2.7","entrezGeneId":"28617"},{"alias":"TCRBV4S1","entrezGeneId":"28617"},{"alias":"TCRBV7S1A1N2T","entrezGeneId":"28617"},{"alias":"TRBV41","entrezGeneId":"28617"},{"alias":"TCRBV3S2","entrezGeneId":"28618"},{"alias":"TCRBV9S2A2PT","entrezGeneId":"28618"},{"alias":"TRBV32","entrezGeneId":"28618"},{"alias":"TCRBV3S1","entrezGeneId":"28619"},{"alias":"TCRBV9S1A1T","entrezGeneId":"28619"},{"alias":"TRBV31","entrezGeneId":"28619"},{"alias":"TCRBV22S1A2N1T","entrezGeneId":"28620"},{"alias":"TCRBV2S1","entrezGeneId":"28620"},{"alias":"TCRBV1S1P","entrezGeneId":"28621"},{"alias":"TCRBV27S1P","entrezGeneId":"28621"},{"alias":"TCRBJ2S7","entrezGeneId":"28622"},{"alias":"TRBJ27","entrezGeneId":"28622"},{"alias":"TCRBJ2S6","entrezGeneId":"28623"},{"alias":"TRBJ26","entrezGeneId":"28623"},{"alias":"TCRBJ2S5","entrezGeneId":"28624"},{"alias":"TRBJ25","entrezGeneId":"28624"},{"alias":"TCRBJ2S4","entrezGeneId":"28625"},{"alias":"TRBJ24","entrezGeneId":"28625"},{"alias":"TCRBJ2S3","entrezGeneId":"28626"},{"alias":"TRBJ23","entrezGeneId":"28626"},{"alias":"TRBJ22P","entrezGeneId":"28627"},{"alias":"TCRBJ2S2","entrezGeneId":"28628"},{"alias":"TRBJ22","entrezGeneId":"28628"},{"alias":"TCRBJ2S1","entrezGeneId":"28629"},{"alias":"TRBJ21","entrezGeneId":"28629"},{"alias":"TCRBJ1S6","entrezGeneId":"28630"},{"alias":"TRBJ16","entrezGeneId":"28630"},{"alias":"TCRBJ1S5","entrezGeneId":"28631"},{"alias":"TRBJ15","entrezGeneId":"28631"},{"alias":"TCRBJ1S4","entrezGeneId":"28632"},{"alias":"TRBJ14","entrezGeneId":"28632"},{"alias":"TCRBJ1S3","entrezGeneId":"28633"},{"alias":"TRBJ13","entrezGeneId":"28633"},{"alias":"TCRBJ1S2","entrezGeneId":"28634"},{"alias":"TRBJ12","entrezGeneId":"28634"},{"alias":"TCRBJ1S1","entrezGeneId":"28635"},{"alias":"TRBJ11","entrezGeneId":"28635"},{"alias":"TCRBD2","entrezGeneId":"28636"},{"alias":"TCRBD1","entrezGeneId":"28637"},{"alias":"TCRBC2","entrezGeneId":"28638"},{"alias":"BV05S1J2.2","entrezGeneId":"28639"},{"alias":"TCRB","entrezGeneId":"28639"},{"alias":"TCRBC1","entrezGeneId":"28639"},{"alias":"TCRAV19S1","entrezGeneId":"28640"},{"alias":"TCRAV41S1","entrezGeneId":"28640"},{"alias":"TCRAV31S1","entrezGeneId":"28641"},{"alias":"TCRAV40S1","entrezGeneId":"28641"},{"alias":"TCRAV27S1","entrezGeneId":"28642"},{"alias":"TCRAV39S1","entrezGeneId":"28642"},{"alias":"hADV38S2","entrezGeneId":"28643"},{"alias":"TCRAV14S1","entrezGeneId":"28643"},{"alias":"TRAV382DV8","entrezGeneId":"28643"},{"alias":"TCRAV14S2","entrezGeneId":"28644"},{"alias":"TCRAV38S1","entrezGeneId":"28644"},{"alias":"TRAV381","entrezGeneId":"28644"},{"alias":"TCRAV37S1","entrezGeneId":"28645"},{"alias":"hADV36S1","entrezGeneId":"28646"},{"alias":"TCRAV28S1","entrezGeneId":"28646"},{"alias":"TRAV36/DV7","entrezGeneId":"28646"},{"alias":"TCRAV25S1","entrezGeneId":"28647"},{"alias":"TCRAV35S1","entrezGeneId":"28647"},{"alias":"TCRAV26S1","entrezGeneId":"28648"},{"alias":"TCRAV34S1","entrezGeneId":"28648"},{"alias":"C14orf12","entrezGeneId":"28649"},{"alias":"TCRAV33S1","entrezGeneId":"28649"},{"alias":"TCRAV32S1","entrezGeneId":"28650"},{"alias":"TCRAV31S1","entrezGeneId":"28651"},{"alias":"TCRAV29S1","entrezGeneId":"28652"},{"alias":"TCRAV30S1","entrezGeneId":"28652"},{"alias":"hADV29S1","entrezGeneId":"28653"},{"alias":"TCRA","entrezGeneId":"28653"},{"alias":"TCRAV21S1","entrezGeneId":"28653"},{"alias":"TRAV29/DV5","entrezGeneId":"28653"},{"alias":"TCRAV28S1","entrezGeneId":"28654"},{"alias":"TCRAV10S1","entrezGeneId":"28655"},{"alias":"TCRAV27S1","entrezGeneId":"28655"},{"alias":"TCRAV26S2","entrezGeneId":"28656"},{"alias":"TCRAV4S1","entrezGeneId":"28656"},{"alias":"TRAV262","entrezGeneId":"28656"},{"alias":"TCRAV26S1","entrezGeneId":"28657"},{"alias":"TCRAV4S2","entrezGeneId":"28657"},{"alias":"TRAV261","entrezGeneId":"28657"},{"alias":"TCRAV25S1","entrezGeneId":"28658"},{"alias":"TCRAV32S1","entrezGeneId":"28658"},{"alias":"TCRAV18S1","entrezGeneId":"28659"},{"alias":"TCRAV24S1","entrezGeneId":"28659"},{"alias":"hADV23S1","entrezGeneId":"28660"},{"alias":"TCRAV17S1","entrezGeneId":"28660"},{"alias":"TRAV23/DV6","entrezGeneId":"28660"},{"alias":"TCRAV13S1","entrezGeneId":"28661"},{"alias":"TCRAV22S1","entrezGeneId":"28661"},{"alias":"TCRAV21S1","entrezGeneId":"28662"},{"alias":"TCRAV23S1","entrezGeneId":"28662"},{"alias":"TCRAV20S1","entrezGeneId":"28663"},{"alias":"TCRAV30S1","entrezGeneId":"28663"},{"alias":"TCRAV12S1","entrezGeneId":"28664"},{"alias":"TCRAV19S1","entrezGeneId":"28664"},{"alias":"TCRAV18S1","entrezGeneId":"28665"},{"alias":"TCRAV17S1","entrezGeneId":"28666"},{"alias":"TCRAV3S1","entrezGeneId":"28666"},{"alias":"TCRAV16S1","entrezGeneId":"28667"},{"alias":"TCRAV9S1","entrezGeneId":"28667"},{"alias":"TCRAV15S1","entrezGeneId":"28668"},{"alias":"hADV14S1","entrezGeneId":"28669"},{"alias":"TCRAV6S1-hDV104S1","entrezGeneId":"28669"},{"alias":"TRAV14/DV4","entrezGeneId":"28669"},{"alias":"TCRAV13S2","entrezGeneId":"28670"},{"alias":"TCRAV8S2","entrezGeneId":"28670"},{"alias":"TRAV132","entrezGeneId":"28670"},{"alias":"TCRAV13S1","entrezGeneId":"28671"},{"alias":"TCRAV8S1","entrezGeneId":"28671"},{"alias":"TRAV131","entrezGeneId":"28671"},{"alias":"TCRAV12S3","entrezGeneId":"28672"},{"alias":"TCRAV2S2","entrezGeneId":"28672"},{"alias":"TRAV123","entrezGeneId":"28672"},{"alias":"TCRAV12S2","entrezGeneId":"28673"},{"alias":"TCRAV2S1","entrezGeneId":"28673"},{"alias":"TRAV122","entrezGeneId":"28673"},{"alias":"TCRAV12S1","entrezGeneId":"28674"},{"alias":"TCRAV2S3","entrezGeneId":"28674"},{"alias":"TRAV121","entrezGeneId":"28674"},{"alias":"TCRAV11S1","entrezGeneId":"28675"},{"alias":"TCRAV10S1","entrezGeneId":"28676"},{"alias":"TCRAV24S1","entrezGeneId":"28676"},{"alias":"TCRAV22S1","entrezGeneId":"28677"},{"alias":"TCRAV9S2","entrezGeneId":"28677"},{"alias":"TRAV92","entrezGeneId":"28677"},{"alias":"TCRAV9S1","entrezGeneId":"28678"},{"alias":"TRAV91","entrezGeneId":"28678"},{"alias":"TCRAV8S7","entrezGeneId":"28679"},{"alias":"TRAV87","entrezGeneId":"28679"},{"alias":"TCRAV1S3","entrezGeneId":"28680"},{"alias":"TCRAV8S6","entrezGeneId":"28680"},{"alias":"TRAV86","entrezGeneId":"28680"},{"alias":"TCRAV8S5","entrezGeneId":"28681"},{"alias":"TRAV85","entrezGeneId":"28681"},{"alias":"TCRAV1S2","entrezGeneId":"28682"},{"alias":"TCRAV8S4","entrezGeneId":"28682"},{"alias":"TRAV84","entrezGeneId":"28682"},{"alias":"TCRAV1S4","entrezGeneId":"28683"},{"alias":"TCRAV8S3","entrezGeneId":"28683"},{"alias":"TRAV83","entrezGeneId":"28683"},{"alias":"TCRAV1S5","entrezGeneId":"28684"},{"alias":"TCRAV8S2","entrezGeneId":"28684"},{"alias":"TRAV82","entrezGeneId":"28684"},{"alias":"TCRAV1S1","entrezGeneId":"28685"},{"alias":"TCRAV8S1","entrezGeneId":"28685"},{"alias":"TRAV81","entrezGeneId":"28685"},{"alias":"TCRAV7S1","entrezGeneId":"28686"},{"alias":"TCRAV15S1","entrezGeneId":"28688"},{"alias":"TCRAV5S1","entrezGeneId":"28688"},{"alias":"TCRAV20S1","entrezGeneId":"28689"},{"alias":"TCRAV4S1","entrezGeneId":"28689"},{"alias":"TCRAV16S1","entrezGeneId":"28690"},{"alias":"TCRAV3S1","entrezGeneId":"28690"},{"alias":"TCRAV11S1","entrezGeneId":"28691"},{"alias":"TCRAV2S1","entrezGeneId":"28691"},{"alias":"TCRAV1S2","entrezGeneId":"28692"},{"alias":"TCRAV7S2","entrezGeneId":"28692"},{"alias":"TRAV12","entrezGeneId":"28692"},{"alias":"TCRAV1S1","entrezGeneId":"28693"},{"alias":"TCRAV7S1","entrezGeneId":"28693"},{"alias":"TRAV11","entrezGeneId":"28693"},{"alias":"TCRA","entrezGeneId":"28695"},{"alias":"IMD7","entrezGeneId":"28755"},{"alias":"TCRA","entrezGeneId":"28755"},{"alias":"TRA","entrezGeneId":"28755"},{"alias":"TRCA","entrezGeneId":"28755"},{"alias":"IGLV(V)-66","entrezGeneId":"28757"},{"alias":"IGLVV66","entrezGeneId":"28757"},{"alias":"V5-5P","entrezGeneId":"28757"},{"alias":"IGLV(V)-58","entrezGeneId":"28758"},{"alias":"IGLVV58","entrezGeneId":"28758"},{"alias":"V5-3P","entrezGeneId":"28758"},{"alias":"IGLV(IV)-65","entrezGeneId":"28759"},{"alias":"IGLVIV65","entrezGeneId":"28759"},{"alias":"V4-9P","entrezGeneId":"28759"},{"alias":"IGLV(IV)-64","entrezGeneId":"28760"},{"alias":"IGLVIV64","entrezGeneId":"28760"},{"alias":"V4-8P","entrezGeneId":"28760"},{"alias":"IGLV(IV)-59","entrezGeneId":"28761"},{"alias":"IGLVIV59","entrezGeneId":"28761"},{"alias":"V4-7P","entrezGeneId":"28761"},{"alias":"IGLV(IV)-53","entrezGeneId":"28762"},{"alias":"IGLVIV53","entrezGeneId":"28762"},{"alias":"V4-5P","entrezGeneId":"28762"},{"alias":"IGLV(I)-70","entrezGeneId":"28763"},{"alias":"IGLVI70","entrezGeneId":"28763"},{"alias":"V1-27P","entrezGeneId":"28763"},{"alias":"IGLV(I)-68","entrezGeneId":"28764"},{"alias":"IGLVI68","entrezGeneId":"28764"},{"alias":"V1-26P","entrezGeneId":"28764"},{"alias":"IGLV(I)-63","entrezGeneId":"28765"},{"alias":"IGLVI63","entrezGeneId":"28765"},{"alias":"V1-24P","entrezGeneId":"28765"},{"alias":"IGLV(I)-56","entrezGeneId":"28766"},{"alias":"IGLVI56","entrezGeneId":"28766"},{"alias":"V1-21P","entrezGeneId":"28766"},{"alias":"IGLV(I)-42","entrezGeneId":"28767"},{"alias":"IGLVI42","entrezGeneId":"28767"},{"alias":"V1-15P","entrezGeneId":"28767"},{"alias":"IGLV(I)-38","entrezGeneId":"28768"},{"alias":"IGLVI38","entrezGeneId":"28768"},{"alias":"V1-12P","entrezGeneId":"28768"},{"alias":"IGLV(I)-20","entrezGeneId":"28769"},{"alias":"IGLVI20","entrezGeneId":"28769"},{"alias":"V1-6P","entrezGeneId":"28769"},{"alias":"IGLV1155","entrezGeneId":"28770"},{"alias":"V4-6","entrezGeneId":"28770"},{"alias":"IGLV1067","entrezGeneId":"28771"},{"alias":"V1-25P","entrezGeneId":"28771"},{"alias":"IGLV1054","entrezGeneId":"28772"},{"alias":"V1-20","entrezGeneId":"28772"},{"alias":"IGLV949","entrezGeneId":"28773"},{"alias":"V5-2","entrezGeneId":"28773"},{"alias":"IGLV861","entrezGeneId":"28774"},{"alias":"V3-4","entrezGeneId":"28774"},{"alias":"IGLV746","entrezGeneId":"28775"},{"alias":"V3-3","entrezGeneId":"28775"},{"alias":"IGLV743","entrezGeneId":"28776"},{"alias":"V3-2","entrezGeneId":"28776"},{"alias":"IGLV735","entrezGeneId":"28777"},{"alias":"V3-1P","entrezGeneId":"28777"},{"alias":"IGLV657","entrezGeneId":"28778"},{"alias":"V1-22","entrezGeneId":"28778"},{"alias":"IGLV552","entrezGeneId":"28779"},{"alias":"V4-4","entrezGeneId":"28779"},{"alias":"IGLV548","entrezGeneId":"28780"},{"alias":"V4-3","entrezGeneId":"28780"},{"alias":"IGLV545","entrezGeneId":"28781"},{"alias":"V4-2","entrezGeneId":"28781"},{"alias":"IGLV539","entrezGeneId":"28782"},{"alias":"IGLV537","entrezGeneId":"28783"},{"alias":"V4-1","entrezGeneId":"28783"},{"alias":"IGLV469","entrezGeneId":"28784"},{"alias":"V5-6","entrezGeneId":"28784"},{"alias":"IGLV460","entrezGeneId":"28785"},{"alias":"V5-4","entrezGeneId":"28785"},{"alias":"IGLV43","entrezGeneId":"28786"},{"alias":"V5-1","entrezGeneId":"28786"},{"alias":"IGLV332","entrezGeneId":"28787"},{"alias":"V2-23P","entrezGeneId":"28787"},{"alias":"IGLV331","entrezGeneId":"28788"},{"alias":"V2-22P","entrezGeneId":"28788"},{"alias":"IGLV330","entrezGeneId":"28789"},{"alias":"V2-21P","entrezGeneId":"28789"},{"alias":"IGLV329","entrezGeneId":"28790"},{"alias":"IGLV327","entrezGeneId":"28791"},{"alias":"V2-19","entrezGeneId":"28791"},{"alias":"IGLV326","entrezGeneId":"28792"},{"alias":"V2-18P","entrezGeneId":"28792"},{"alias":"IGLV325","entrezGeneId":"28793"},{"alias":"V2-17","entrezGeneId":"28793"},{"alias":"IGLV324","entrezGeneId":"28794"},{"alias":"V2-16P","entrezGeneId":"28794"},{"alias":"IGLV322","entrezGeneId":"28795"},{"alias":"V2-15","entrezGeneId":"28795"},{"alias":"IGLV321","entrezGeneId":"28796"},{"alias":"V2-14","entrezGeneId":"28796"},{"alias":"IGLV319","entrezGeneId":"28797"},{"alias":"V2-13","entrezGeneId":"28797"},{"alias":"VL3L","entrezGeneId":"28797"},{"alias":"IGLV317","entrezGeneId":"28798"},{"alias":"V2-12P","entrezGeneId":"28798"},{"alias":"IGLV316","entrezGeneId":"28799"},{"alias":"V2-11","entrezGeneId":"28799"},{"alias":"IGLV315","entrezGeneId":"28800"},{"alias":"V2-10P","entrezGeneId":"28800"},{"alias":"IGLV313","entrezGeneId":"28801"},{"alias":"V2-9P","entrezGeneId":"28801"},{"alias":"IGLV312","entrezGeneId":"28802"},{"alias":"V2-8","entrezGeneId":"28802"},{"alias":"IGLV310","entrezGeneId":"28803"},{"alias":"V2-7","entrezGeneId":"28803"},{"alias":"IGLV39","entrezGeneId":"28804"},{"alias":"V2-6","entrezGeneId":"28804"},{"alias":"IGLV37","entrezGeneId":"28805"},{"alias":"V2-5P","entrezGeneId":"28805"},{"alias":"IGLV36","entrezGeneId":"28806"},{"alias":"V2-4P","entrezGeneId":"28806"},{"alias":"IGLV34","entrezGeneId":"28807"},{"alias":"V2-3P","entrezGeneId":"28807"},{"alias":"IGLV32","entrezGeneId":"28808"},{"alias":"V2-2P","entrezGeneId":"28808"},{"alias":"IGLV31","entrezGeneId":"28809"},{"alias":"V2-1","entrezGeneId":"28809"},{"alias":"IGLV234","entrezGeneId":"28810"},{"alias":"V1-10P","entrezGeneId":"28810"},{"alias":"IGLV233","entrezGeneId":"28811"},{"alias":"V1-9","entrezGeneId":"28811"},{"alias":"IGLV228","entrezGeneId":"28812"},{"alias":"V1-8P","entrezGeneId":"28812"},{"alias":"IGLV223","entrezGeneId":"28813"},{"alias":"V1-7","entrezGeneId":"28813"},{"alias":"IGLV218","entrezGeneId":"28814"},{"alias":"V1-5","entrezGeneId":"28814"},{"alias":"IGLV214","entrezGeneId":"28815"},{"alias":"V1-4","entrezGeneId":"28815"},{"alias":"IGLV211","entrezGeneId":"28816"},{"alias":"V1-3","entrezGeneId":"28816"},{"alias":"IGLV28","entrezGeneId":"28817"},{"alias":"V1-2","entrezGeneId":"28817"},{"alias":"IGLV25","entrezGeneId":"28818"},{"alias":"V1-1P","entrezGeneId":"28818"},{"alias":"IGLV162","entrezGeneId":"28819"},{"alias":"V1-23P","entrezGeneId":"28819"},{"alias":"IGLV151","entrezGeneId":"28820"},{"alias":"V1-19","entrezGeneId":"28820"},{"alias":"IGLV150","entrezGeneId":"28821"},{"alias":"V1-18","entrezGeneId":"28821"},{"alias":"IGLV147","entrezGeneId":"28822"},{"alias":"V1-17","entrezGeneId":"28822"},{"alias":"IGLV144","entrezGeneId":"28823"},{"alias":"V1-16","entrezGeneId":"28823"},{"alias":"IGLV141","entrezGeneId":"28824"},{"alias":"V1-14P","entrezGeneId":"28824"},{"alias":"IGLV140","entrezGeneId":"28825"},{"alias":"V1-13","entrezGeneId":"28825"},{"alias":"IGLV136","entrezGeneId":"28826"},{"alias":"V1-11","entrezGeneId":"28826"},{"alias":"J7","entrezGeneId":"28827"},{"alias":"J3","entrezGeneId":"28831"},{"alias":"J2","entrezGeneId":"28832"},{"alias":"J1","entrezGeneId":"28833"},{"alias":"C7","entrezGeneId":"28834"},{"alias":"IGKV2OR224","entrezGeneId":"28847"},{"alias":"IGKVP6","entrezGeneId":"28847"},{"alias":"IGKV1OR22-5A","entrezGeneId":"28850"},{"alias":"IGKV1OR225","entrezGeneId":"28850"},{"alias":"IGKV1OR225A","entrezGeneId":"28850"},{"alias":"IGKVP7","entrezGeneId":"28850"},{"alias":"IGKV3/OR2-5","entrezGeneId":"28854"},{"alias":"IGKV3OR25","entrezGeneId":"28854"},{"alias":"IGKV2OR210","entrezGeneId":"28855"},{"alias":"IGKV2/OR2-4","entrezGeneId":"28858"},{"alias":"IGKV2OR24","entrezGeneId":"28858"},{"alias":"IGKV2/OR2-2","entrezGeneId":"28859"},{"alias":"IGKV2OR22","entrezGeneId":"28859"},{"alias":"IGKV2/OR2-1","entrezGeneId":"28861"},{"alias":"IGKV2OR2-1A","entrezGeneId":"28861"},{"alias":"IGKV2OR21","entrezGeneId":"28861"},{"alias":"IGKV2OR21A","entrezGeneId":"28861"},{"alias":"IGKV1OR2108","entrezGeneId":"28862"},{"alias":"IGO1","entrezGeneId":"28862"},{"alias":"IGKV1OR211","entrezGeneId":"28863"},{"alias":"IGKV1/OR2-9","entrezGeneId":"28864"},{"alias":"IGKV1OR29","entrezGeneId":"28864"},{"alias":"IGKV1/OR2-6","entrezGeneId":"28865"},{"alias":"IGKV1OR26","entrezGeneId":"28865"},{"alias":"IGKV1/OR2-3","entrezGeneId":"28866"},{"alias":"IGKV1OR23","entrezGeneId":"28866"},{"alias":"IGKV1/OR2-0","entrezGeneId":"28867"},{"alias":"IGKV1OR20","entrezGeneId":"28867"},{"alias":"A14","entrezGeneId":"28869"},{"alias":"A10","entrezGeneId":"28870"},{"alias":"IGKV6D21","entrezGeneId":"28870"},{"alias":"IGKV3D34","entrezGeneId":"28871"},{"alias":"O7","entrezGeneId":"28871"},{"alias":"IGKV3D31","entrezGeneId":"28872"},{"alias":"O10","entrezGeneId":"28872"},{"alias":"A6","entrezGeneId":"28873"},{"alias":"IGKV3D25","entrezGeneId":"28873"},{"alias":"A11","entrezGeneId":"28874"},{"alias":"A11a","entrezGeneId":"28874"},{"alias":"IGKV3D20","entrezGeneId":"28874"},{"alias":"IGKV3D15","entrezGeneId":"28875"},{"alias":"L16","entrezGeneId":"28875"},{"alias":"L16a","entrezGeneId":"28875"},{"alias":"L16b","entrezGeneId":"28875"},{"alias":"L16c","entrezGeneId":"28875"},{"alias":"IGKV3D11","entrezGeneId":"28876"},{"alias":"L20","entrezGeneId":"28876"},{"alias":"IGKV3D7","entrezGeneId":"28877"},{"alias":"L25","entrezGeneId":"28877"},{"alias":"IGKV2D40","entrezGeneId":"28878"},{"alias":"O1","entrezGeneId":"28878"},{"alias":"IGKV2D38","entrezGeneId":"28879"},{"alias":"O3","entrezGeneId":"28879"},{"alias":"IGKV2D36","entrezGeneId":"28880"},{"alias":"O5","entrezGeneId":"28880"},{"alias":"A1","entrezGeneId":"28881"},{"alias":"IGKV2D30","entrezGeneId":"28881"},{"alias":"A2a","entrezGeneId":"28882"},{"alias":"A2c","entrezGeneId":"28882"},{"alias":"IGKV2D29","entrezGeneId":"28882"},{"alias":"A3","entrezGeneId":"28883"},{"alias":"IGKV2D28","entrezGeneId":"28883"},{"alias":"A5","entrezGeneId":"28884"},{"alias":"IGKV2D26","entrezGeneId":"28884"},{"alias":"A7","entrezGeneId":"28885"},{"alias":"IGKV2D24","entrezGeneId":"28885"},{"alias":"A8","entrezGeneId":"28886"},{"alias":"IGKV2D23","entrezGeneId":"28886"},{"alias":"A12","entrezGeneId":"28887"},{"alias":"IGKV2D19","entrezGeneId":"28887"},{"alias":"A13","entrezGeneId":"28888"},{"alias":"IGKV2D18","entrezGeneId":"28888"},{"alias":"IGKV2D14","entrezGeneId":"28889"},{"alias":"L17","entrezGeneId":"28889"},{"alias":"IGKV2D10","entrezGeneId":"28890"},{"alias":"L21","entrezGeneId":"28890"},{"alias":"IGKV1D43","entrezGeneId":"28891"},{"alias":"L23","entrezGeneId":"28891"},{"alias":"L23a","entrezGeneId":"28891"},{"alias":"IGKV1D42","entrezGeneId":"28892"},{"alias":"L22","entrezGeneId":"28892"},{"alias":"IGKV1D39","entrezGeneId":"28893"},{"alias":"O2","entrezGeneId":"28893"},{"alias":"IGKV1D37","entrezGeneId":"28894"},{"alias":"O4","entrezGeneId":"28894"},{"alias":"IGKV1D35","entrezGeneId":"28895"},{"alias":"O6","entrezGeneId":"28895"},{"alias":"IGKV1D33","entrezGeneId":"28896"},{"alias":"O8","entrezGeneId":"28896"},{"alias":"IGKV1D32","entrezGeneId":"28897"},{"alias":"O9","entrezGeneId":"28897"},{"alias":"A4","entrezGeneId":"28898"},{"alias":"A4a","entrezGeneId":"28898"},{"alias":"IGKV1D27","entrezGeneId":"28898"},{"alias":"A9","entrezGeneId":"28899"},{"alias":"IGKV1D22","entrezGeneId":"28899"},{"alias":"IGKV1D17","entrezGeneId":"28900"},{"alias":"L14","entrezGeneId":"28900"},{"alias":"IGKV1D16","entrezGeneId":"28901"},{"alias":"L15","entrezGeneId":"28901"},{"alias":"L15a","entrezGeneId":"28901"},{"alias":"IGKV1D13","entrezGeneId":"28902"},{"alias":"L18","entrezGeneId":"28902"},{"alias":"IGKV1D12","entrezGeneId":"28903"},{"alias":"L19","entrezGeneId":"28903"},{"alias":"IGKV1D8","entrezGeneId":"28904"},{"alias":"L24","entrezGeneId":"28904"},{"alias":"L24a","entrezGeneId":"28904"},{"alias":"B1","entrezGeneId":"28905"},{"alias":"IGKV73","entrezGeneId":"28905"},{"alias":"A26","entrezGeneId":"28906"},{"alias":"IGKV621","entrezGeneId":"28906"},{"alias":"B2","entrezGeneId":"28907"},{"alias":"IGKV52","entrezGeneId":"28907"},{"alias":"B3","entrezGeneId":"28908"},{"alias":"IGKV41","entrezGeneId":"28908"},{"alias":"IGKV334","entrezGeneId":"28909"},{"alias":"O17","entrezGeneId":"28909"},{"alias":"A16","entrezGeneId":"28910"},{"alias":"A16a","entrezGeneId":"28910"},{"alias":"IGKV331","entrezGeneId":"28910"},{"alias":"A22","entrezGeneId":"28911"},{"alias":"IGKV325","entrezGeneId":"28911"},{"alias":"13K18","entrezGeneId":"28912"},{"alias":"A27","entrezGeneId":"28912"},{"alias":"IGKV320","entrezGeneId":"28912"},{"alias":"IGKV315","entrezGeneId":"28913"},{"alias":"L2","entrezGeneId":"28913"},{"alias":"IGKV311","entrezGeneId":"28914"},{"alias":"L6","entrezGeneId":"28914"},{"alias":"IGKV37","entrezGeneId":"28915"},{"alias":"L10","entrezGeneId":"28915"},{"alias":"L10a","entrezGeneId":"28915"},{"alias":"Vh","entrezGeneId":"28915"},{"alias":"IGKV240","entrezGeneId":"28916"},{"alias":"O11","entrezGeneId":"28916"},{"alias":"O11a","entrezGeneId":"28916"},{"alias":"IGKV238","entrezGeneId":"28917"},{"alias":"O13","entrezGeneId":"28917"},{"alias":"IGKV236","entrezGeneId":"28918"},{"alias":"O15","entrezGeneId":"28918"},{"alias":"A17","entrezGeneId":"28919"},{"alias":"IGKV230","entrezGeneId":"28919"},{"alias":"A18","entrezGeneId":"28920"},{"alias":"A18b","entrezGeneId":"28920"},{"alias":"IGKV","entrezGeneId":"28920"},{"alias":"IGKV229","entrezGeneId":"28920"},{"alias":"IGVK-A18","entrezGeneId":"28920"},{"alias":"A19","entrezGeneId":"28921"},{"alias":"IGKV228","entrezGeneId":"28921"},{"alias":"A21","entrezGeneId":"28922"},{"alias":"IGKV226","entrezGeneId":"28922"},{"alias":"A23","entrezGeneId":"28923"},{"alias":"IGKV224","entrezGeneId":"28923"},{"alias":"A24","entrezGeneId":"28924"},{"alias":"IGKV223","entrezGeneId":"28924"},{"alias":"A28","entrezGeneId":"28925"},{"alias":"IGKV219","entrezGeneId":"28925"},{"alias":"A29","entrezGeneId":"28926"},{"alias":"IGKV218","entrezGeneId":"28926"},{"alias":"IGKV214","entrezGeneId":"28927"},{"alias":"L3","entrezGeneId":"28927"},{"alias":"IGKV210","entrezGeneId":"28928"},{"alias":"L7","entrezGeneId":"28928"},{"alias":"IGKV24","entrezGeneId":"28929"},{"alias":"L13","entrezGeneId":"28929"},{"alias":"IGKV139","entrezGeneId":"28930"},{"alias":"O12","entrezGeneId":"28930"},{"alias":"O12a","entrezGeneId":"28930"},{"alias":"IGKV137","entrezGeneId":"28931"},{"alias":"O14","entrezGeneId":"28931"},{"alias":"IGKV135","entrezGeneId":"28932"},{"alias":"O16","entrezGeneId":"28932"},{"alias":"IGKV133","entrezGeneId":"28933"},{"alias":"O18","entrezGeneId":"28933"},{"alias":"A15","entrezGeneId":"28934"},{"alias":"A15a","entrezGeneId":"28934"},{"alias":"IGKV132","entrezGeneId":"28934"},{"alias":"A20","entrezGeneId":"28935"},{"alias":"IGKV127","entrezGeneId":"28935"},{"alias":"A25","entrezGeneId":"28936"},{"alias":"IGKV122","entrezGeneId":"28936"},{"alias":"A30","entrezGeneId":"28937"},{"alias":"IGKV117","entrezGeneId":"28937"},{"alias":"IGKV116","entrezGeneId":"28938"},{"alias":"L1","entrezGeneId":"28938"},{"alias":"IGKV113","entrezGeneId":"28939"},{"alias":"L18","entrezGeneId":"28939"},{"alias":"IGKV112","entrezGeneId":"28940"},{"alias":"L19","entrezGeneId":"28940"},{"alias":"IGKV19","entrezGeneId":"28941"},{"alias":"L8","entrezGeneId":"28941"},{"alias":"IGKV18","entrezGeneId":"28942"},{"alias":"L9","entrezGeneId":"28942"},{"alias":"IGKV16","entrezGeneId":"28943"},{"alias":"L11","entrezGeneId":"28943"},{"alias":"J5","entrezGeneId":"28946"},{"alias":"J4","entrezGeneId":"28947"},{"alias":"J3","entrezGeneId":"28948"},{"alias":"J2","entrezGeneId":"28949"},{"alias":"J1","entrezGeneId":"28950"},{"alias":"C5FW","entrezGeneId":"28951"},{"alias":"GS3955","entrezGeneId":"28951"},{"alias":"TRB2","entrezGeneId":"28951"},{"alias":"CXorf37","entrezGeneId":"28952"},{"alias":"JM1","entrezGeneId":"28952"},{"alias":"RTSC2","entrezGeneId":"28952"},{"alias":"GD:REM","entrezGeneId":"28954"},{"alias":"GES","entrezGeneId":"28954"},{"alias":"MYLE","entrezGeneId":"28955"},{"alias":"ENDAP","entrezGeneId":"28956"},{"alias":"HSPC003","entrezGeneId":"28956"},{"alias":"MAPBPIP","entrezGeneId":"28956"},{"alias":"MAPKSP1AP","entrezGeneId":"28956"},{"alias":"p14","entrezGeneId":"28956"},{"alias":"Ragulator2","entrezGeneId":"28956"},{"alias":"ROBLD3","entrezGeneId":"28956"},{"alias":"HSPC007","entrezGeneId":"28957"},{"alias":"MRP-S28","entrezGeneId":"28957"},{"alias":"MRP-S35","entrezGeneId":"28957"},{"alias":"MRPS35","entrezGeneId":"28957"},{"alias":"CCDC56","entrezGeneId":"28958"},{"alias":"COX25","entrezGeneId":"28958"},{"alias":"HSPC009","entrezGeneId":"28958"},{"alias":"MITRAC12","entrezGeneId":"28958"},{"alias":"LR8","entrezGeneId":"28959"},{"alias":"MS4B2","entrezGeneId":"28959"},{"alias":"ARS","entrezGeneId":"28960"},{"alias":"DCS1","entrezGeneId":"28960"},{"alias":"HINT-5","entrezGeneId":"28960"},{"alias":"HINT5","entrezGeneId":"28960"},{"alias":"HSL1","entrezGeneId":"28960"},{"alias":"HSPC015","entrezGeneId":"28960"},{"alias":"GIPN","entrezGeneId":"28962"},{"alias":"GL","entrezGeneId":"28962"},{"alias":"HSPC019","entrezGeneId":"28962"},{"alias":"OPTB5","entrezGeneId":"28962"},{"alias":"ACSVL2","entrezGeneId":"28965"},{"alias":"FACVL2","entrezGeneId":"28965"},{"alias":"FATP6","entrezGeneId":"28965"},{"alias":"VLCS-H1","entrezGeneId":"28965"},{"alias":"PRO1284","entrezGeneId":"28966"},{"alias":"SBBI31","entrezGeneId":"28966"},{"alias":"NT5","entrezGeneId":"28968"},{"alias":"NTT5","entrezGeneId":"28968"},{"alias":"HSPC028","entrezGeneId":"28969"},{"alias":"MST017","entrezGeneId":"28969"},{"alias":"MSTP017","entrezGeneId":"28969"},{"alias":"PTD012","entrezGeneId":"28970"},{"alias":"PTOD012","entrezGeneId":"28970"},{"alias":"C11orf67","entrezGeneId":"28971"},{"alias":"CK067","entrezGeneId":"28971"},{"alias":"PTD015","entrezGeneId":"28971"},{"alias":"HSPC033","entrezGeneId":"28972"},{"alias":"SPC1","entrezGeneId":"28972"},{"alias":"SPC12","entrezGeneId":"28972"},{"alias":"YJR010C-A","entrezGeneId":"28972"},{"alias":"C6orf14","entrezGeneId":"28973"},{"alias":"HSPC183","entrezGeneId":"28973"},{"alias":"HumanS18a","entrezGeneId":"28973"},{"alias":"MRP-S18-2","entrezGeneId":"28973"},{"alias":"MRPS18-2","entrezGeneId":"28973"},{"alias":"PTD017","entrezGeneId":"28973"},{"alias":"S18amt","entrezGeneId":"28973"},{"alias":"HSPC023","entrezGeneId":"28974"},{"alias":"LYDG10","entrezGeneId":"28974"},{"alias":"NPD002","entrezGeneId":"28976"},{"alias":"HSPC204","entrezGeneId":"28977"},{"alias":"L31MT","entrezGeneId":"28977"},{"alias":"L42MT","entrezGeneId":"28977"},{"alias":"MRP-L31","entrezGeneId":"28977"},{"alias":"MRP-L42","entrezGeneId":"28977"},{"alias":"MRP-S32","entrezGeneId":"28977"},{"alias":"MRPL31","entrezGeneId":"28977"},{"alias":"MRPS32","entrezGeneId":"28977"},{"alias":"PTD007","entrezGeneId":"28977"},{"alias":"RPML31","entrezGeneId":"28977"},{"alias":"S32MT","entrezGeneId":"28977"},{"alias":"C6orf73","entrezGeneId":"28978"},{"alias":"PTD011","entrezGeneId":"28978"},{"alias":"CDV-1","entrezGeneId":"28981"},{"alias":"CDV-1R","entrezGeneId":"28981"},{"alias":"CDV1","entrezGeneId":"28981"},{"alias":"CDV1R","entrezGeneId":"28981"},{"alias":"DV1","entrezGeneId":"28981"},{"alias":"SRTD19","entrezGeneId":"28981"},{"alias":"AXPC1","entrezGeneId":"28982"},{"alias":"FLVCR","entrezGeneId":"28982"},{"alias":"MFSD7B","entrezGeneId":"28982"},{"alias":"PCA","entrezGeneId":"28982"},{"alias":"PCARP","entrezGeneId":"28982"},{"alias":"DESC1","entrezGeneId":"28983"},{"alias":"TMPRSS11E2","entrezGeneId":"28983"},{"alias":"bA157L14.2","entrezGeneId":"28984"},{"alias":"C13orf15","entrezGeneId":"28984"},{"alias":"RGC-32","entrezGeneId":"28984"},{"alias":"RGC32","entrezGeneId":"28984"},{"alias":"MCT-1","entrezGeneId":"28985"},{"alias":"MCT1","entrezGeneId":"28985"},{"alias":"APR-1","entrezGeneId":"28986"},{"alias":"APR1","entrezGeneId":"28986"},{"alias":"MAGEH","entrezGeneId":"28986"},{"alias":"ART-4","entrezGeneId":"28987"},{"alias":"MST158","entrezGeneId":"28987"},{"alias":"MSTP158","entrezGeneId":"28987"},{"alias":"NOB1P","entrezGeneId":"28987"},{"alias":"PSMD8BP1","entrezGeneId":"28987"},{"alias":"ABP1","entrezGeneId":"28988"},{"alias":"HIP-55","entrezGeneId":"28988"},{"alias":"HIP55","entrezGeneId":"28988"},{"alias":"SH3P7","entrezGeneId":"28988"},{"alias":"AD-003","entrezGeneId":"28989"},{"alias":"C9orf32","entrezGeneId":"28989"},{"alias":"HOMT1A","entrezGeneId":"28989"},{"alias":"METTL11A","entrezGeneId":"28989"},{"alias":"NRMT","entrezGeneId":"28989"},{"alias":"NRMT1","entrezGeneId":"28989"},{"alias":"NTM1A","entrezGeneId":"28989"},{"alias":"HT001","entrezGeneId":"28990"},{"alias":"HCARG","entrezGeneId":"28991"},{"alias":"HT002","entrezGeneId":"28991"},{"alias":"LRP16","entrezGeneId":"28992"},{"alias":"PRO0593","entrezGeneId":"28996"},{"alias":"L13","entrezGeneId":"28998"},{"alias":"L13A","entrezGeneId":"28998"},{"alias":"L13mt","entrezGeneId":"28998"},{"alias":"RPL13","entrezGeneId":"28998"},{"alias":"RPML13","entrezGeneId":"28998"},{"alias":"KKLF","entrezGeneId":"28999"},{"alias":"EEG1","entrezGeneId":"29015"},{"alias":"FOAP-13","entrezGeneId":"29015"},{"alias":"PRO1659","entrezGeneId":"29015"},{"alias":"SEEEG-1","entrezGeneId":"29015"},{"alias":"PRO1768","entrezGeneId":"29018"},{"alias":"ANCCA","entrezGeneId":"29028"},{"alias":"CT137","entrezGeneId":"29028"},{"alias":"PRO2000","entrezGeneId":"29028"},{"alias":"CPS1-IT","entrezGeneId":"29034"},{"alias":"CPS1IT","entrezGeneId":"29034"},{"alias":"CPS1IT1","entrezGeneId":"29034"},{"alias":"PRO0132","entrezGeneId":"29034"},{"alias":"PRO0149","entrezGeneId":"29035"},{"alias":"PRO0659","entrezGeneId":"29057"},{"alias":"TMEM29","entrezGeneId":"29057"},{"alias":"C20orf30","entrezGeneId":"29058"},{"alias":"dJ1116H23.2.1","entrezGeneId":"29058"},{"alias":"HSPC274","entrezGeneId":"29058"},{"alias":"HSPC049","entrezGeneId":"29062"},{"alias":"SORF-1","entrezGeneId":"29062"},{"alias":"SORF1","entrezGeneId":"29062"},{"alias":"HSPC052","entrezGeneId":"29063"},{"alias":"ZGRF4","entrezGeneId":"29063"},{"alias":"ASAP1-IT","entrezGeneId":"29065"},{"alias":"ASAP1IT","entrezGeneId":"29065"},{"alias":"ASAP1IT1","entrezGeneId":"29065"},{"alias":"DDEF1IT1","entrezGeneId":"29065"},{"alias":"HSPC054","entrezGeneId":"29065"},{"alias":"NCRNA00050","entrezGeneId":"29065"},{"alias":"HSPC055","entrezGeneId":"29066"},{"alias":"ZC3H7","entrezGeneId":"29066"},{"alias":"ZC3HDC7","entrezGeneId":"29066"},{"alias":"BTBD15","entrezGeneId":"29068"},{"alias":"HSPC063","entrezGeneId":"29068"},{"alias":"ZNF851","entrezGeneId":"29068"},{"alias":"HSPC065","entrezGeneId":"29070"},{"alias":"C1GALT2","entrezGeneId":"29071"},{"alias":"C38H2-L1","entrezGeneId":"29071"},{"alias":"COSMC","entrezGeneId":"29071"},{"alias":"HSPC067","entrezGeneId":"29071"},{"alias":"MST143","entrezGeneId":"29071"},{"alias":"TNPS","entrezGeneId":"29071"},{"alias":"HBP231","entrezGeneId":"29072"},{"alias":"HIF-1","entrezGeneId":"29072"},{"alias":"HIP-1","entrezGeneId":"29072"},{"alias":"HSPC069","entrezGeneId":"29072"},{"alias":"HYPB","entrezGeneId":"29072"},{"alias":"KMT3A","entrezGeneId":"29072"},{"alias":"LLS","entrezGeneId":"29072"},{"alias":"p231HBP","entrezGeneId":"29072"},{"alias":"SET2","entrezGeneId":"29072"},{"alias":"HSPC071","entrezGeneId":"29074"},{"alias":"L18mt","entrezGeneId":"29074"},{"alias":"MRP-L18","entrezGeneId":"29074"},{"alias":"HSPC072","entrezGeneId":"29075"},{"alias":"bA22L21.1","entrezGeneId":"29078"},{"alias":"C6orf66","entrezGeneId":"29078"},{"alias":"HRPAP20","entrezGeneId":"29078"},{"alias":"HSPC125","entrezGeneId":"29078"},{"alias":"My013","entrezGeneId":"29078"},{"alias":"ARC36","entrezGeneId":"29079"},{"alias":"DRIP36","entrezGeneId":"29079"},{"alias":"HSPC126","entrezGeneId":"29079"},{"alias":"TRAP36","entrezGeneId":"29079"},{"alias":"VDRIP","entrezGeneId":"29079"},{"alias":"BR22","entrezGeneId":"29080"},{"alias":"HSPC128","entrezGeneId":"29080"},{"alias":"TAP26","entrezGeneId":"29080"},{"alias":"HSPC133","entrezGeneId":"29081"},{"alias":"C14orf123","entrezGeneId":"29082"},{"alias":"CHMP4","entrezGeneId":"29082"},{"alias":"CHMP4B","entrezGeneId":"29082"},{"alias":"HSPC134","entrezGeneId":"29082"},{"alias":"SHAX2","entrezGeneId":"29082"},{"alias":"SNF7","entrezGeneId":"29082"},{"alias":"SNF7-1","entrezGeneId":"29082"},{"alias":"VPS32-1","entrezGeneId":"29082"},{"alias":"VPS32A","entrezGeneId":"29082"},{"alias":"HSPC135","entrezGeneId":"29083"},{"alias":"CGI-202","entrezGeneId":"29085"},{"alias":"HEL-S-132P","entrezGeneId":"29085"},{"alias":"HSPC141","entrezGeneId":"29085"},{"alias":"PHP","entrezGeneId":"29085"},{"alias":"PHP14","entrezGeneId":"29085"},{"alias":"C19orf62","entrezGeneId":"29086"},{"alias":"HSPC142","entrezGeneId":"29086"},{"alias":"MERIT40","entrezGeneId":"29086"},{"alias":"NBA1","entrezGeneId":"29086"},{"alias":"HSPC144","entrezGeneId":"29087"},{"alias":"MDS012","entrezGeneId":"29087"},{"alias":"MY105","entrezGeneId":"29087"},{"alias":"THY28","entrezGeneId":"29087"},{"alias":"THY28KD","entrezGeneId":"29087"},{"alias":"HSPC145","entrezGeneId":"29088"},{"alias":"L15mt","entrezGeneId":"29088"},{"alias":"MRP-L15","entrezGeneId":"29088"},{"alias":"MRP-L7","entrezGeneId":"29088"},{"alias":"RPML7","entrezGeneId":"29088"},{"alias":"FANCT","entrezGeneId":"29089"},{"alias":"HSPC150","entrezGeneId":"29089"},{"alias":"PIG50","entrezGeneId":"29089"},{"alias":"C18orf55","entrezGeneId":"29090"},{"alias":"HSPC154","entrezGeneId":"29090"},{"alias":"TIM21","entrezGeneId":"29090"},{"alias":"amisyn","entrezGeneId":"29091"},{"alias":"HSPC156","entrezGeneId":"29091"},{"alias":"HSPC157","entrezGeneId":"29092"},{"alias":"NCRNA00339","entrezGeneId":"29092"},{"alias":"HSPC158","entrezGeneId":"29093"},{"alias":"L22mt","entrezGeneId":"29093"},{"alias":"MRP-L22","entrezGeneId":"29093"},{"alias":"MRP-L25","entrezGeneId":"29093"},{"alias":"RPML25","entrezGeneId":"29093"},{"alias":"GRP","entrezGeneId":"29094"},{"alias":"HSPC159","entrezGeneId":"29094"},{"alias":"adoplin-2","entrezGeneId":"29095"},{"alias":"HSPC160","entrezGeneId":"29095"},{"alias":"MST095","entrezGeneId":"29095"},{"alias":"MSTP095","entrezGeneId":"29095"},{"alias":"CNIH-4","entrezGeneId":"29097"},{"alias":"CNIH2","entrezGeneId":"29097"},{"alias":"HSPC163","entrezGeneId":"29097"},{"alias":"HSPC165","entrezGeneId":"29098"},{"alias":"HSPC236","entrezGeneId":"29098"},{"alias":"MOG1","entrezGeneId":"29098"},{"alias":"RANGNRF","entrezGeneId":"29098"},{"alias":"C11orf55","entrezGeneId":"29099"},{"alias":"HSPC166","entrezGeneId":"29099"},{"alias":"LINC00610","entrezGeneId":"29099"},{"alias":"HSPC171","entrezGeneId":"29100"},{"alias":"HSPC182","entrezGeneId":"29101"},{"alias":"PNAS-120","entrezGeneId":"29101"},{"alias":"ETOHI2","entrezGeneId":"29102"},{"alias":"HSA242976","entrezGeneId":"29102"},{"alias":"RANSE3L","entrezGeneId":"29102"},{"alias":"RN3","entrezGeneId":"29102"},{"alias":"RNASE3L","entrezGeneId":"29102"},{"alias":"RNASEN","entrezGeneId":"29102"},{"alias":"DNAJD1","entrezGeneId":"29103"},{"alias":"HSD18","entrezGeneId":"29103"},{"alias":"MCJ","entrezGeneId":"29103"},{"alias":"C21orf127","entrezGeneId":"29104"},{"alias":"HEMK2","entrezGeneId":"29104"},{"alias":"m.HsaHemK2P","entrezGeneId":"29104"},{"alias":"MTQ2","entrezGeneId":"29104"},{"alias":"N6AMT","entrezGeneId":"29104"},{"alias":"PRED28","entrezGeneId":"29104"},{"alias":"C16orf80","entrezGeneId":"29105"},{"alias":"EVORF","entrezGeneId":"29105"},{"alias":"fSAP23","entrezGeneId":"29105"},{"alias":"GTL3","entrezGeneId":"29105"},{"alias":"SGIII","entrezGeneId":"29106"},{"alias":"MTR2","entrezGeneId":"29107"},{"alias":"P15","entrezGeneId":"29107"},{"alias":"ASC","entrezGeneId":"29108"},{"alias":"CARD5","entrezGeneId":"29108"},{"alias":"TMS","entrezGeneId":"29108"},{"alias":"TMS-1","entrezGeneId":"29108"},{"alias":"TMS1","entrezGeneId":"29108"},{"alias":"FHOS","entrezGeneId":"29109"},{"alias":"FTDALS4","entrezGeneId":"29110"},{"alias":"IIAE8","entrezGeneId":"29110"},{"alias":"NAK","entrezGeneId":"29110"},{"alias":"T2K","entrezGeneId":"29110"},{"alias":"STG","entrezGeneId":"29113"},{"alias":"NP22","entrezGeneId":"29114"},{"alias":"NP24","entrezGeneId":"29114"},{"alias":"NP25","entrezGeneId":"29114"},{"alias":"HCNGP","entrezGeneId":"29115"},{"alias":"HTRG","entrezGeneId":"29115"},{"alias":"HTRP","entrezGeneId":"29115"},{"alias":"IDOL","entrezGeneId":"29116"},{"alias":"MIR","entrezGeneId":"29116"},{"alias":"BP75","entrezGeneId":"29117"},{"alias":"CELTIX1","entrezGeneId":"29117"},{"alias":"NAG4","entrezGeneId":"29117"},{"alias":"GRTH","entrezGeneId":"29118"},{"alias":"ARVD13","entrezGeneId":"29119"},{"alias":"VR22","entrezGeneId":"29119"},{"alias":"CLAX","entrezGeneId":"29121"},{"alias":"LLT1","entrezGeneId":"29121"},{"alias":"OCIL","entrezGeneId":"29121"},{"alias":"CT20","entrezGeneId":"29122"},{"alias":"TSP50","entrezGeneId":"29122"},{"alias":"ANCO-1","entrezGeneId":"29123"},{"alias":"ANCO1","entrezGeneId":"29123"},{"alias":"LZ16","entrezGeneId":"29123"},{"alias":"T13","entrezGeneId":"29123"},{"alias":"GAL13","entrezGeneId":"29124"},{"alias":"PLAC8","entrezGeneId":"29124"},{"alias":"PP13","entrezGeneId":"29124"},{"alias":"B7-H","entrezGeneId":"29126"},{"alias":"B7H1","entrezGeneId":"29126"},{"alias":"PD-L1","entrezGeneId":"29126"},{"alias":"PDCD1L1","entrezGeneId":"29126"},{"alias":"PDCD1LG1","entrezGeneId":"29126"},{"alias":"PDL1","entrezGeneId":"29126"},{"alias":"CYK4","entrezGeneId":"29127"},{"alias":"HsCYK-4","entrezGeneId":"29127"},{"alias":"ID-GAP","entrezGeneId":"29127"},{"alias":"MgcRacGAP","entrezGeneId":"29127"},{"alias":"hNP95","entrezGeneId":"29128"},{"alias":"hUHRF1","entrezGeneId":"29128"},{"alias":"huNp95","entrezGeneId":"29128"},{"alias":"ICBP90","entrezGeneId":"29128"},{"alias":"Np95","entrezGeneId":"29128"},{"alias":"RNF106","entrezGeneId":"29128"},{"alias":"TDRD22","entrezGeneId":"29128"},{"alias":"AGM4","entrezGeneId":"29760"},{"alias":"BASH","entrezGeneId":"29760"},{"alias":"bca","entrezGeneId":"29760"},{"alias":"BLNK-S","entrezGeneId":"29760"},{"alias":"LY57","entrezGeneId":"29760"},{"alias":"SLP-65","entrezGeneId":"29760"},{"alias":"SLP65","entrezGeneId":"29760"},{"alias":"USP21","entrezGeneId":"29761"},{"alias":"SDPIII","entrezGeneId":"29763"},{"alias":"SK-TMOD","entrezGeneId":"29765"},{"alias":"UTMOD","entrezGeneId":"29766"},{"alias":"N-TMOD","entrezGeneId":"29767"},{"alias":"NTMOD","entrezGeneId":"29767"},{"alias":"DKFZP434P211","entrezGeneId":"29774"},{"alias":"UNQ2565","entrezGeneId":"29774"},{"alias":"BIMP1","entrezGeneId":"29775"},{"alias":"CARMA3","entrezGeneId":"29775"},{"alias":"Esf2","entrezGeneId":"29777"},{"alias":"hABT1","entrezGeneId":"29777"},{"alias":"CGI-56","entrezGeneId":"29780"},{"alias":"CAPH2","entrezGeneId":"29781"},{"alias":"CYPIIS1","entrezGeneId":"29785"},{"alias":"DOC45","entrezGeneId":"29789"},{"alias":"GBP45","entrezGeneId":"29789"},{"alias":"GTBP9","entrezGeneId":"29789"},{"alias":"GTPBP9","entrezGeneId":"29789"},{"alias":"PTD004","entrezGeneId":"29789"},{"alias":"HSPC051","entrezGeneId":"29796"},{"alias":"HSPC119","entrezGeneId":"29796"},{"alias":"HSPC151","entrezGeneId":"29796"},{"alias":"QCR9","entrezGeneId":"29796"},{"alias":"UCCR7.2","entrezGeneId":"29796"},{"alias":"UCRC","entrezGeneId":"29796"},{"alias":"DKFZp434K191","entrezGeneId":"29797"},{"alias":"C2orf27","entrezGeneId":"29798"},{"alias":"C2orf27B","entrezGeneId":"29798"},{"alias":"FKSG3","entrezGeneId":"29799"},{"alias":"C16orf1","entrezGeneId":"29800"},{"alias":"HSU90653","entrezGeneId":"29800"},{"alias":"ZNF377","entrezGeneId":"29800"},{"alias":"DHHC8","entrezGeneId":"29801"},{"alias":"ZDHHCL1","entrezGeneId":"29801"},{"alias":"ZNF378","entrezGeneId":"29801"},{"alias":"8HS20","entrezGeneId":"29802"},{"alias":"N27C7-2","entrezGeneId":"29802"},{"alias":"AP4","entrezGeneId":"29803"},{"alias":"RIP60","entrezGeneId":"29803"},{"alias":"Zfp464","entrezGeneId":"29803"},{"alias":"ZNF464","entrezGeneId":"29803"},{"alias":"LBP32","entrezGeneId":"29841"},{"alias":"MGR","entrezGeneId":"29841"},{"alias":"NH32","entrezGeneId":"29841"},{"alias":"TFCP2L2","entrezGeneId":"29841"},{"alias":"CRTR1","entrezGeneId":"29842"},{"alias":"LBP-9","entrezGeneId":"29842"},{"alias":"LBP9","entrezGeneId":"29842"},{"alias":"SuPr-2","entrezGeneId":"29843"},{"alias":"amida","entrezGeneId":"29844"},{"alias":"FB1","entrezGeneId":"29844"},{"alias":"INO80F","entrezGeneId":"29844"},{"alias":"LTRPC5","entrezGeneId":"29850"},{"alias":"MTR1","entrezGeneId":"29850"},{"alias":"AILIM","entrezGeneId":"29851"},{"alias":"CD278","entrezGeneId":"29851"},{"alias":"CVID1","entrezGeneId":"29851"},{"alias":"VT","entrezGeneId":"29855"},{"alias":"VT4","entrezGeneId":"29855"},{"alias":"bA421P11.2","entrezGeneId":"29880"},{"alias":"NPC11L1","entrezGeneId":"29881"},{"alias":"SLC65A2","entrezGeneId":"29881"},{"alias":"APC2","entrezGeneId":"29882"},{"alias":"CAF-1","entrezGeneId":"29883"},{"alias":"CAF1","entrezGeneId":"29883"},{"alias":"Caf1a","entrezGeneId":"29883"},{"alias":"hCAF-1","entrezGeneId":"29883"},{"alias":"Mvp1","entrezGeneId":"29886"},{"alias":"OPTB8","entrezGeneId":"29887"},{"alias":"PPP2R6C","entrezGeneId":"29888"},{"alias":"ZIN","entrezGeneId":"29888"},{"alias":"zinedin","entrezGeneId":"29888"},{"alias":"HUMAUANTIG","entrezGeneId":"29889"},{"alias":"Ngp-1","entrezGeneId":"29889"},{"alias":"NGP1","entrezGeneId":"29889"},{"alias":"Nog2","entrezGeneId":"29889"},{"alias":"Nug2","entrezGeneId":"29889"},{"alias":"HUMAGCGB","entrezGeneId":"29890"},{"alias":"OTT3","entrezGeneId":"29890"},{"alias":"GT198","entrezGeneId":"29893"},{"alias":"HOP2","entrezGeneId":"29893"},{"alias":"HUMGT198A","entrezGeneId":"29893"},{"alias":"ODG3","entrezGeneId":"29893"},{"alias":"TBPIP","entrezGeneId":"29893"},{"alias":"CPSF160","entrezGeneId":"29894"},{"alias":"HSU37012","entrezGeneId":"29894"},{"alias":"P/cl.18","entrezGeneId":"29894"},{"alias":"HUMMLC2B","entrezGeneId":"29895"},{"alias":"MLC2B","entrezGeneId":"29895"},{"alias":"MRLC2","entrezGeneId":"29895"},{"alias":"MYL11","entrezGeneId":"29895"},{"alias":"AWMS1","entrezGeneId":"29896"},{"alias":"HSU53209","entrezGeneId":"29896"},{"alias":"CMCS","entrezGeneId":"29899"},{"alias":"DFNB82","entrezGeneId":"29899"},{"alias":"LGN","entrezGeneId":"29899"},{"alias":"PINS","entrezGeneId":"29899"},{"alias":"HSU79266","entrezGeneId":"29901"},{"alias":"SHD1","entrezGeneId":"29901"},{"alias":"C12orf24","entrezGeneId":"29902"},{"alias":"HSU79274","entrezGeneId":"29902"},{"alias":"HSU79303","entrezGeneId":"29903"},{"alias":"ZNF581","entrezGeneId":"29903"},{"alias":"eEF-2K","entrezGeneId":"29904"},{"alias":"HSU93850","entrezGeneId":"29904"},{"alias":"SIAT8-E","entrezGeneId":"29906"},{"alias":"SIAT8E","entrezGeneId":"29906"},{"alias":"ST8SiaV","entrezGeneId":"29906"},{"alias":"HSAF001435","entrezGeneId":"29907"},{"alias":"H963","entrezGeneId":"29909"},{"alias":"HK2","entrezGeneId":"29911"},{"alias":"SCCD","entrezGeneId":"29914"},{"alias":"TERE1","entrezGeneId":"29914"},{"alias":"HCF-2","entrezGeneId":"29915"},{"alias":"HCF2","entrezGeneId":"29915"},{"alias":"C18orf8","entrezGeneId":"29919"},{"alias":"HsT2591","entrezGeneId":"29919"},{"alias":"Mic-1","entrezGeneId":"29919"},{"alias":"MIC1","entrezGeneId":"29919"},{"alias":"WDR98","entrezGeneId":"29919"},{"alias":"HLD10","entrezGeneId":"29920"},{"alias":"P5CR2","entrezGeneId":"29920"},{"alias":"CFAP67","entrezGeneId":"29922"},{"alias":"MN23H7","entrezGeneId":"29922"},{"alias":"NDK 7","entrezGeneId":"29922"},{"alias":"NDK7","entrezGeneId":"29922"},{"alias":"nm23-H7","entrezGeneId":"29922"},{"alias":"C7orf68","entrezGeneId":"29923"},{"alias":"HIG-2","entrezGeneId":"29923"},{"alias":"HIG2","entrezGeneId":"29923"},{"alias":"MDDGA14","entrezGeneId":"29925"},{"alias":"MDDGB14","entrezGeneId":"29925"},{"alias":"MDDGC14","entrezGeneId":"29925"},{"alias":"AAMR","entrezGeneId":"29926"},{"alias":"HNFJ4","entrezGeneId":"29927"},{"alias":"HSEC61","entrezGeneId":"29927"},{"alias":"SEC61","entrezGeneId":"29927"},{"alias":"SEC61A","entrezGeneId":"29927"},{"alias":"TEX4","entrezGeneId":"29928"},{"alias":"TIM22","entrezGeneId":"29928"},{"alias":"CDG1C","entrezGeneId":"29929"},{"alias":"PCDH-BETA1","entrezGeneId":"29930"},{"alias":"ERR-10","entrezGeneId":"29931"},{"alias":"ERR10","entrezGeneId":"29931"},{"alias":"LMCD1DN","entrezGeneId":"29931"},{"alias":"LOH3CR2A","entrezGeneId":"29931"},{"alias":"NAG-7","entrezGeneId":"29931"},{"alias":"NAG7","entrezGeneId":"29931"},{"alias":"NCRNA00312","entrezGeneId":"29931"},{"alias":"G2A","entrezGeneId":"29933"},{"alias":"HSU24186","entrezGeneId":"29935"},{"alias":"CIR2","entrezGeneId":"29937"},{"alias":"SCIRP10","entrezGeneId":"29937"},{"alias":"SPUF","entrezGeneId":"29937"},{"alias":"DS-epi1","entrezGeneId":"29940"},{"alias":"DSEP","entrezGeneId":"29940"},{"alias":"DSEPI","entrezGeneId":"29940"},{"alias":"EDSMC2","entrezGeneId":"29940"},{"alias":"SART-2","entrezGeneId":"29940"},{"alias":"SART2","entrezGeneId":"29940"},{"alias":"UTDP4-1","entrezGeneId":"29941"},{"alias":"PURG-A","entrezGeneId":"29942"},{"alias":"PURG-B","entrezGeneId":"29942"},{"alias":"HPAD10","entrezGeneId":"29943"},{"alias":"PAD1","entrezGeneId":"29943"},{"alias":"PDI","entrezGeneId":"29943"},{"alias":"PDI1","entrezGeneId":"29943"},{"alias":"MA3","entrezGeneId":"29944"},{"alias":"MA5","entrezGeneId":"29944"},{"alias":"APC4","entrezGeneId":"29945"},{"alias":"RBT1","entrezGeneId":"29946"},{"alias":"BDGI","entrezGeneId":"29948"},{"alias":"OKL38","entrezGeneId":"29948"},{"alias":"IL-10C","entrezGeneId":"29949"},{"alias":"MDA1","entrezGeneId":"29949"},{"alias":"NG.1","entrezGeneId":"29949"},{"alias":"ZMDA1","entrezGeneId":"29949"},{"alias":"SEI1","entrezGeneId":"29950"},{"alias":"TRIP-Br1","entrezGeneId":"29950"},{"alias":"TRIPBR1","entrezGeneId":"29950"},{"alias":"LNX4","entrezGeneId":"29951"},{"alias":"SAMCAP3L","entrezGeneId":"29951"},{"alias":"DPP2","entrezGeneId":"29952"},{"alias":"DPPII","entrezGeneId":"29952"},{"alias":"QPP","entrezGeneId":"29952"},{"alias":"PAP-II","entrezGeneId":"29953"},{"alias":"PGPEP2","entrezGeneId":"29953"},{"alias":"TRH-DE","entrezGeneId":"29953"},{"alias":"LGMD2N","entrezGeneId":"29954"},{"alias":"MDDGA2","entrezGeneId":"29954"},{"alias":"MDDGB2","entrezGeneId":"29954"},{"alias":"MDDGC2","entrezGeneId":"29954"},{"alias":"L3","entrezGeneId":"29956"},{"alias":"LASS2","entrezGeneId":"29956"},{"alias":"SP260","entrezGeneId":"29956"},{"alias":"TMSG1","entrezGeneId":"29956"},{"alias":"APC1","entrezGeneId":"29957"},{"alias":"SCAMC-1","entrezGeneId":"29957"},{"alias":"SCAMC1","entrezGeneId":"29957"},{"alias":"DMGDHD","entrezGeneId":"29958"},{"alias":"ME2GLYDH","entrezGeneId":"29958"},{"alias":"BCON3","entrezGeneId":"29959"},{"alias":"MADM","entrezGeneId":"29959"},{"alias":"MUDPNP","entrezGeneId":"29959"},{"alias":"NRBP","entrezGeneId":"29959"},{"alias":"FJH1","entrezGeneId":"29960"},{"alias":"FTSJ2","entrezGeneId":"29960"},{"alias":"HEL97","entrezGeneId":"29960"},{"alias":"RRMJ2","entrezGeneId":"29960"},{"alias":"C6orf49","entrezGeneId":"29964"},{"alias":"OBTP","entrezGeneId":"29964"},{"alias":"OEBT","entrezGeneId":"29964"},{"alias":"TOMM6","entrezGeneId":"29964"},{"alias":"C16orf5","entrezGeneId":"29965"},{"alias":"CDIP","entrezGeneId":"29965"},{"alias":"I1","entrezGeneId":"29965"},{"alias":"LITAFL","entrezGeneId":"29965"},{"alias":"PPP2R6B","entrezGeneId":"29966"},{"alias":"S/G2NA","entrezGeneId":"29966"},{"alias":"SG2NA","entrezGeneId":"29966"},{"alias":"ST7","entrezGeneId":"29967"},{"alias":"EPIP","entrezGeneId":"29968"},{"alias":"NLS2","entrezGeneId":"29968"},{"alias":"PSA","entrezGeneId":"29968"},{"alias":"PSAT","entrezGeneId":"29968"},{"alias":"PSATD","entrezGeneId":"29968"},{"alias":"HIC","entrezGeneId":"29969"},{"alias":"MDFIC1","entrezGeneId":"29969"},{"alias":"SCHIP-1","entrezGeneId":"29970"},{"alias":"ACF","entrezGeneId":"29974"},{"alias":"ACF64","entrezGeneId":"29974"},{"alias":"ACF65","entrezGeneId":"29974"},{"alias":"APOBEC1CF","entrezGeneId":"29974"},{"alias":"ASP","entrezGeneId":"29974"},{"alias":"ALS15","entrezGeneId":"29978"},{"alias":"CHAP1","entrezGeneId":"29978"},{"alias":"DSK2","entrezGeneId":"29978"},{"alias":"HRIHFB2157","entrezGeneId":"29978"},{"alias":"N4BP4","entrezGeneId":"29978"},{"alias":"PLIC2","entrezGeneId":"29978"},{"alias":"DA41","entrezGeneId":"29979"},{"alias":"DSK2","entrezGeneId":"29979"},{"alias":"PLIC-1","entrezGeneId":"29979"},{"alias":"UBQN","entrezGeneId":"29979"},{"alias":"XDRP1","entrezGeneId":"29979"},{"alias":"B17","entrezGeneId":"29980"},{"alias":"C21orf60","entrezGeneId":"29980"},{"alias":"MIMIS","entrezGeneId":"29980"},{"alias":"MISSLA","entrezGeneId":"29980"},{"alias":"COPR","entrezGeneId":"29982"},{"alias":"COPR1","entrezGeneId":"29982"},{"alias":"COPR2","entrezGeneId":"29982"},{"alias":"NRBF-2","entrezGeneId":"29982"},{"alias":"ARHD","entrezGeneId":"29984"},{"alias":"Rho","entrezGeneId":"29984"},{"alias":"RHOHP1","entrezGeneId":"29984"},{"alias":"RHOM","entrezGeneId":"29984"},{"alias":"ZIP-3","entrezGeneId":"29985"},{"alias":"ZIP3","entrezGeneId":"29985"},{"alias":"6A1","entrezGeneId":"29986"},{"alias":"ETI-1","entrezGeneId":"29986"},{"alias":"ZIP-2","entrezGeneId":"29986"},{"alias":"ZIP2","entrezGeneId":"29986"},{"alias":"GLUT8","entrezGeneId":"29988"},{"alias":"GLUTX1","entrezGeneId":"29988"},{"alias":"LCN14","entrezGeneId":"29989"},{"alias":"OBPIIb","entrezGeneId":"29989"},{"alias":"FDFACT1","entrezGeneId":"29990"},{"alias":"FDFACT2","entrezGeneId":"29990"},{"alias":"hOBPIIa","entrezGeneId":"29991"},{"alias":"LCN13","entrezGeneId":"29991"},{"alias":"OBP","entrezGeneId":"29991"},{"alias":"OBP2C","entrezGeneId":"29991"},{"alias":"OBPIIa","entrezGeneId":"29991"},{"alias":"FDF03","entrezGeneId":"29992"},{"alias":"SDPI","entrezGeneId":"29993"},{"alias":"WALp4","entrezGeneId":"29994"},{"alias":"GLTSCR2","entrezGeneId":"29997"},{"alias":"PICT-1","entrezGeneId":"29997"},{"alias":"PICT1","entrezGeneId":"29997"},{"alias":"GLTSCR1","entrezGeneId":"29998"},{"alias":"IPO3","entrezGeneId":"30000"},{"alias":"KPNB2B","entrezGeneId":"30000"},{"alias":"TRN2","entrezGeneId":"30000"},{"alias":"ERO1-alpha","entrezGeneId":"30001"},{"alias":"ERO1-L","entrezGeneId":"30001"},{"alias":"ERO1-L-alpha","entrezGeneId":"30001"},{"alias":"Ero1alpha","entrezGeneId":"30001"},{"alias":"ERO1L","entrezGeneId":"30001"},{"alias":"ERO1LA","entrezGeneId":"30001"},{"alias":"ARCL1B","entrezGeneId":"30008"},{"alias":"FBLN4","entrezGeneId":"30008"},{"alias":"MBP1","entrezGeneId":"30008"},{"alias":"UPH1","entrezGeneId":"30008"},{"alias":"T-bet","entrezGeneId":"30009"},{"alias":"T-PET","entrezGeneId":"30009"},{"alias":"TBET","entrezGeneId":"30009"},{"alias":"TBLYM","entrezGeneId":"30009"},{"alias":"Nbla00697","entrezGeneId":"30010"},{"alias":"NPH1","entrezGeneId":"30010"},{"alias":"CD2BP3","entrezGeneId":"30011"},{"alias":"CIN85","entrezGeneId":"30011"},{"alias":"GIG10","entrezGeneId":"30011"},{"alias":"HSB-1","entrezGeneId":"30011"},{"alias":"HSB1","entrezGeneId":"30011"},{"alias":"MIG18","entrezGeneId":"30011"},{"alias":"HOX11L2","entrezGeneId":"30012"},{"alias":"RNX","entrezGeneId":"30012"},{"alias":"CT11.1","entrezGeneId":"30014"},{"alias":"NAP-X","entrezGeneId":"30014"},{"alias":"SPAN-X","entrezGeneId":"30014"},{"alias":"SPAN-Xa","entrezGeneId":"30014"},{"alias":"SPAN-Xb","entrezGeneId":"30014"},{"alias":"SPANX","entrezGeneId":"30014"},{"alias":"SPANX-A","entrezGeneId":"30014"},{"alias":"FPN1","entrezGeneId":"30061"},{"alias":"HFE4","entrezGeneId":"30061"},{"alias":"IREG1","entrezGeneId":"30061"},{"alias":"MST079","entrezGeneId":"30061"},{"alias":"MSTP079","entrezGeneId":"30061"},{"alias":"MTP1","entrezGeneId":"30061"},{"alias":"SLC11A3","entrezGeneId":"30061"},{"alias":"MCOP3","entrezGeneId":"30062"},{"alias":"RX","entrezGeneId":"30062"},{"alias":"CAASDS","entrezGeneId":"30813"},{"alias":"KTCN","entrezGeneId":"30813"},{"alias":"KTCN1","entrezGeneId":"30813"},{"alias":"PPCD","entrezGeneId":"30813"},{"alias":"PPCD1","entrezGeneId":"30813"},{"alias":"PPD","entrezGeneId":"30813"},{"alias":"RINX","entrezGeneId":"30813"},{"alias":"GIIE sPLA2","entrezGeneId":"30814"},{"alias":"sPLA2-IIE","entrezGeneId":"30814"},{"alias":"SIAT7-F","entrezGeneId":"30815"},{"alias":"SIAT7F","entrezGeneId":"30815"},{"alias":"ST6GALNACVI","entrezGeneId":"30815"},{"alias":"ENV","entrezGeneId":"30816"},{"alias":"ENVW","entrezGeneId":"30816"},{"alias":"ERVWE1","entrezGeneId":"30816"},{"alias":"HERV-7q","entrezGeneId":"30816"},{"alias":"HERV-W-ENV","entrezGeneId":"30816"},{"alias":"HERV7Q","entrezGeneId":"30816"},{"alias":"HERVW","entrezGeneId":"30816"},{"alias":"HERVWENV","entrezGeneId":"30816"},{"alias":"CD312","entrezGeneId":"30817"},{"alias":"EMR2","entrezGeneId":"30817"},{"alias":"VBU","entrezGeneId":"30817"},{"alias":"CSEN","entrezGeneId":"30818"},{"alias":"DREAM","entrezGeneId":"30818"},{"alias":"KCHIP3","entrezGeneId":"30818"},{"alias":"KCHIP2","entrezGeneId":"30819"},{"alias":"KCHIP1","entrezGeneId":"30820"},{"alias":"VABP","entrezGeneId":"30820"},{"alias":"2410002I16Rik","entrezGeneId":"30827"},{"alias":"5830420C16Rik","entrezGeneId":"30827"},{"alias":"CFP1","entrezGeneId":"30827"},{"alias":"CGBP","entrezGeneId":"30827"},{"alias":"hCGBP","entrezGeneId":"30827"},{"alias":"HsT2645","entrezGeneId":"30827"},{"alias":"PCCX1","entrezGeneId":"30827"},{"alias":"PHF18","entrezGeneId":"30827"},{"alias":"SPP1","entrezGeneId":"30827"},{"alias":"ZCGPC1","entrezGeneId":"30827"},{"alias":"KID3","entrezGeneId":"30832"},{"alias":"cdN","entrezGeneId":"30833"},{"alias":"DNT","entrezGeneId":"30833"},{"alias":"dNT-1","entrezGeneId":"30833"},{"alias":"DNT1","entrezGeneId":"30833"},{"alias":"HEL74","entrezGeneId":"30833"},{"alias":"P5N2","entrezGeneId":"30833"},{"alias":"PN-I","entrezGeneId":"30833"},{"alias":"PN-II","entrezGeneId":"30833"},{"alias":"UMPH2","entrezGeneId":"30833"},{"alias":"HTEX-6","entrezGeneId":"30834"},{"alias":"HTEX6","entrezGeneId":"30834"},{"alias":"hZR14","entrezGeneId":"30834"},{"alias":"Rpa12","entrezGeneId":"30834"},{"alias":"tctex-6","entrezGeneId":"30834"},{"alias":"TCTEX6","entrezGeneId":"30834"},{"alias":"TEX6","entrezGeneId":"30834"},{"alias":"ZR14","entrezGeneId":"30834"},{"alias":"CDSIGN","entrezGeneId":"30835"},{"alias":"CLEC4L","entrezGeneId":"30835"},{"alias":"DC-SIGN","entrezGeneId":"30835"},{"alias":"DC-SIGN1","entrezGeneId":"30835"},{"alias":"ERBP","entrezGeneId":"30836"},{"alias":"FCF2","entrezGeneId":"30836"},{"alias":"HSU15552","entrezGeneId":"30836"},{"alias":"LPTS-RP2","entrezGeneId":"30836"},{"alias":"TdIF2","entrezGeneId":"30836"},{"alias":"NAP4","entrezGeneId":"30837"},{"alias":"NCKAP4","entrezGeneId":"30837"},{"alias":"PAST4","entrezGeneId":"30844"},{"alias":"PAST3","entrezGeneId":"30845"},{"alias":"PAST2","entrezGeneId":"30846"},{"alias":"CAMEL","entrezGeneId":"30848"},{"alias":"CT2","entrezGeneId":"30848"},{"alias":"CT6.2","entrezGeneId":"30848"},{"alias":"CT6.2a","entrezGeneId":"30848"},{"alias":"CT6.2b","entrezGeneId":"30848"},{"alias":"ESO2","entrezGeneId":"30848"},{"alias":"LAGE-1","entrezGeneId":"30848"},{"alias":"LAGE2B","entrezGeneId":"30848"},{"alias":"p150","entrezGeneId":"30849"},{"alias":"VPS15","entrezGeneId":"30849"},{"alias":"HUMPPA","entrezGeneId":"30850"},{"alias":"TIP-1","entrezGeneId":"30851"},{"alias":"TIP1","entrezGeneId":"30851"},{"alias":"HSPC108","entrezGeneId":"30968"},{"alias":"SLP-2","entrezGeneId":"30968"},{"alias":"KLK-L6","entrezGeneId":"43847"},{"alias":"KLK-L5","entrezGeneId":"43849"},{"alias":"KLKL5","entrezGeneId":"43849"},{"alias":"ZNF295","entrezGeneId":"49854"},{"alias":"MSTP063","entrezGeneId":"49855"},{"alias":"Zfp291","entrezGeneId":"49855"},{"alias":"ZNF291","entrezGeneId":"49855"},{"alias":"WDR8","entrezGeneId":"49856"},{"alias":"C1orf10","entrezGeneId":"49860"},{"alias":"DRC1","entrezGeneId":"49860"},{"alias":"PDRC1","entrezGeneId":"49860"},{"alias":"SEP53","entrezGeneId":"49860"},{"alias":"MTDPS8A","entrezGeneId":"50484"},{"alias":"MTDPS8B","entrezGeneId":"50484"},{"alias":"P53R2","entrezGeneId":"50484"},{"alias":"HARP","entrezGeneId":"50485"},{"alias":"HHARP","entrezGeneId":"50485"},{"alias":"GIII-SPLA2","entrezGeneId":"50487"},{"alias":"sPLA2-III","entrezGeneId":"50487"},{"alias":"SPLA2III","entrezGeneId":"50487"},{"alias":"B55","entrezGeneId":"50488"},{"alias":"MAP4K6","entrezGeneId":"50488"},{"alias":"MINK","entrezGeneId":"50488"},{"alias":"YSK2","entrezGeneId":"50488"},{"alias":"ZC3","entrezGeneId":"50488"},{"alias":"CLEC4K","entrezGeneId":"50489"},{"alias":"LNOX2","entrezGeneId":"50506"},{"alias":"NOXEF2","entrezGeneId":"50506"},{"alias":"P138-TOX","entrezGeneId":"50506"},{"alias":"TDH6","entrezGeneId":"50506"},{"alias":"THOX2","entrezGeneId":"50506"},{"alias":"KOX","entrezGeneId":"50507"},{"alias":"KOX-1","entrezGeneId":"50507"},{"alias":"RENOX","entrezGeneId":"50507"},{"alias":"GP91-3","entrezGeneId":"50508"},{"alias":"MOX-2","entrezGeneId":"50508"},{"alias":"COR1","entrezGeneId":"50511"},{"alias":"RPRGL4","entrezGeneId":"50511"},{"alias":"SCP3","entrezGeneId":"50511"},{"alias":"SPGF4","entrezGeneId":"50511"},{"alias":"EG","entrezGeneId":"50512"},{"alias":"PODLX2","entrezGeneId":"50512"},{"alias":"CTS9","entrezGeneId":"50514"},{"alias":"C4ST","entrezGeneId":"50515"},{"alias":"C4ST-1","entrezGeneId":"50515"},{"alias":"C4ST1","entrezGeneId":"50515"},{"alias":"HSA269537","entrezGeneId":"50515"},{"alias":"PLCB3NP","entrezGeneId":"50516"},{"alias":"IL-20","entrezGeneId":"50604"},{"alias":"IL10D","entrezGeneId":"50604"},{"alias":"ZCYTO10","entrezGeneId":"50604"},{"alias":"CXCL1P","entrezGeneId":"50612"},{"alias":"GRO1P","entrezGeneId":"50612"},{"alias":"GROP","entrezGeneId":"50612"},{"alias":"MGSAP","entrezGeneId":"50612"},{"alias":"SCYB1P","entrezGeneId":"50612"},{"alias":"TUP-1","entrezGeneId":"50613"},{"alias":"GALNAC-T9","entrezGeneId":"50614"},{"alias":"GALNACT9","entrezGeneId":"50614"},{"alias":"CD360","entrezGeneId":"50615"},{"alias":"IMD56","entrezGeneId":"50615"},{"alias":"NILR","entrezGeneId":"50615"},{"alias":"IL-21","entrezGeneId":"50616"},{"alias":"IL-22","entrezGeneId":"50616"},{"alias":"IL-D110","entrezGeneId":"50616"},{"alias":"IL-TIF","entrezGeneId":"50616"},{"alias":"ILTIF","entrezGeneId":"50616"},{"alias":"TIFa","entrezGeneId":"50616"},{"alias":"TIFIL-23","entrezGeneId":"50616"},{"alias":"zcyto18","entrezGeneId":"50616"},{"alias":"A4","entrezGeneId":"50617"},{"alias":"ATP6N1B","entrezGeneId":"50617"},{"alias":"ATP6N2","entrezGeneId":"50617"},{"alias":"RDRTA2","entrezGeneId":"50617"},{"alias":"RTA1C","entrezGeneId":"50617"},{"alias":"RTADR","entrezGeneId":"50617"},{"alias":"STV1","entrezGeneId":"50617"},{"alias":"VPH1","entrezGeneId":"50617"},{"alias":"VPP2","entrezGeneId":"50617"},{"alias":"PRO2015","entrezGeneId":"50618"},{"alias":"SH3D1B","entrezGeneId":"50618"},{"alias":"SH3P18","entrezGeneId":"50618"},{"alias":"SWA","entrezGeneId":"50618"},{"alias":"SWAP","entrezGeneId":"50618"},{"alias":"IBP","entrezGeneId":"50619"},{"alias":"SLAT","entrezGeneId":"50619"},{"alias":"SWAP70L","entrezGeneId":"50619"},{"alias":"ERG-1","entrezGeneId":"50624"},{"alias":"ERG1","entrezGeneId":"50624"},{"alias":"ITMAP1","entrezGeneId":"50624"},{"alias":"UO-44","entrezGeneId":"50624"},{"alias":"CHRP","entrezGeneId":"50626"},{"alias":"HC56","entrezGeneId":"50628"},{"alias":"HCAP1","entrezGeneId":"50628"},{"alias":"HHRF-1","entrezGeneId":"50628"},{"alias":"NEDMCR","entrezGeneId":"50628"},{"alias":"p97","entrezGeneId":"50628"},{"alias":"NSEP1P","entrezGeneId":"50631"},{"alias":"PSDBPB1","entrezGeneId":"50631"},{"alias":"DRD1IP","entrezGeneId":"50632"},{"alias":"NSG3","entrezGeneId":"50632"},{"alias":"D-TMPP","entrezGeneId":"50636"},{"alias":"DTMPP","entrezGeneId":"50636"},{"alias":"IPCA-5","entrezGeneId":"50636"},{"alias":"IPCA5","entrezGeneId":"50636"},{"alias":"NGEP","entrezGeneId":"50636"},{"alias":"PCANAP5","entrezGeneId":"50636"},{"alias":"PCANAP5L","entrezGeneId":"50636"},{"alias":"TMEM16G","entrezGeneId":"50636"},{"alias":"COLEC2","entrezGeneId":"50639"},{"alias":"MBL","entrezGeneId":"50639"},{"alias":"IPLA2-2","entrezGeneId":"50640"},{"alias":"IPLA2G","entrezGeneId":"50640"},{"alias":"iPLA2gamma","entrezGeneId":"50640"},{"alias":"MMLA","entrezGeneId":"50640"},{"alias":"PNPLA-gamma","entrezGeneId":"50640"},{"alias":"SMRXS","entrezGeneId":"50644"},{"alias":"ASEF","entrezGeneId":"50649"},{"alias":"ASEF1","entrezGeneId":"50649"},{"alias":"GEF4","entrezGeneId":"50649"},{"alias":"STM6","entrezGeneId":"50649"},{"alias":"GEF3","entrezGeneId":"50650"},{"alias":"STA3","entrezGeneId":"50650"},{"alias":"XPLN","entrezGeneId":"50650"},{"alias":"DNB5","entrezGeneId":"50651"},{"alias":"IDDNPF","entrezGeneId":"50651"},{"alias":"DD3","entrezGeneId":"50652"},{"alias":"NCRNA00019","entrezGeneId":"50652"},{"alias":"PCAT3","entrezGeneId":"50652"},{"alias":"Atoh5","entrezGeneId":"50674"},{"alias":"bHLHa7","entrezGeneId":"50674"},{"alias":"Math4B","entrezGeneId":"50674"},{"alias":"NGN-3","entrezGeneId":"50674"},{"alias":"ngn3","entrezGeneId":"50674"},{"alias":"PRRDH","entrezGeneId":"50700"},{"alias":"SDR28C2","entrezGeneId":"50700"},{"alias":"EIG7","entrezGeneId":"50715"},{"alias":"JME","entrezGeneId":"50715"},{"alias":"GAN2","entrezGeneId":"50717"},{"alias":"H326","entrezGeneId":"50717"},{"alias":"WDR42A","entrezGeneId":"50717"},{"alias":"K2p4.1","entrezGeneId":"50801"},{"alias":"TRAAK","entrezGeneId":"50801"},{"alias":"TRAAK1","entrezGeneId":"50801"},{"alias":"IGK@","entrezGeneId":"50802"},{"alias":"HsT18564","entrezGeneId":"50804"},{"alias":"MEF-2","entrezGeneId":"50804"},{"alias":"MST156","entrezGeneId":"50804"},{"alias":"MSTP156","entrezGeneId":"50804"},{"alias":"myEF-2","entrezGeneId":"50804"},{"alias":"IRXA3","entrezGeneId":"50805"},{"alias":"AMAP1","entrezGeneId":"50807"},{"alias":"CENTB4","entrezGeneId":"50807"},{"alias":"DDEF1","entrezGeneId":"50807"},{"alias":"PAG2","entrezGeneId":"50807"},{"alias":"PAP","entrezGeneId":"50807"},{"alias":"ZG14P","entrezGeneId":"50807"},{"alias":"AK3L1","entrezGeneId":"50808"},{"alias":"AK6","entrezGeneId":"50808"},{"alias":"AKL3L","entrezGeneId":"50808"},{"alias":"AKL3L1","entrezGeneId":"50808"},{"alias":"FIX","entrezGeneId":"50808"},{"alias":"HP1-BP74","entrezGeneId":"50809"},{"alias":"HP1BP74","entrezGeneId":"50809"},{"alias":"CGI-142","entrezGeneId":"50810"},{"alias":"HDGF-2","entrezGeneId":"50810"},{"alias":"HDGF2","entrezGeneId":"50810"},{"alias":"HDGFRP3","entrezGeneId":"50810"},{"alias":"HRP-3","entrezGeneId":"50810"},{"alias":"CSN7","entrezGeneId":"50813"},{"alias":"CSN7A","entrezGeneId":"50813"},{"alias":"SGN7a","entrezGeneId":"50813"},{"alias":"H105E3","entrezGeneId":"50814"},{"alias":"SDR31E1","entrezGeneId":"50814"},{"alias":"XAP104","entrezGeneId":"50814"},{"alias":"MUHH","entrezGeneId":"50823"},{"alias":"T2R3","entrezGeneId":"50831"},{"alias":"T2R4","entrezGeneId":"50832"},{"alias":"T2R16","entrezGeneId":"50833"},{"alias":"T2R1","entrezGeneId":"50834"},{"alias":"TRB7","entrezGeneId":"50834"},{"alias":"T2R9","entrezGeneId":"50835"},{"alias":"TRB6","entrezGeneId":"50835"},{"alias":"T2R8","entrezGeneId":"50836"},{"alias":"TRB5","entrezGeneId":"50836"},{"alias":"T2R7","entrezGeneId":"50837"},{"alias":"TRB4","entrezGeneId":"50837"},{"alias":"T2R13","entrezGeneId":"50838"},{"alias":"TRB3","entrezGeneId":"50838"},{"alias":"T2R10","entrezGeneId":"50839"},{"alias":"TRB2","entrezGeneId":"50839"},{"alias":"T2R14","entrezGeneId":"50840"},{"alias":"TRB1","entrezGeneId":"50840"},{"alias":"GDXYM","entrezGeneId":"50846"},{"alias":"HHG-3","entrezGeneId":"50846"},{"alias":"SRXY7","entrezGeneId":"50846"},{"alias":"CD321","entrezGeneId":"50848"},{"alias":"JAM","entrezGeneId":"50848"},{"alias":"JAM1","entrezGeneId":"50848"},{"alias":"JAMA","entrezGeneId":"50848"},{"alias":"JCAM","entrezGeneId":"50848"},{"alias":"KAT","entrezGeneId":"50848"},{"alias":"PAM-1","entrezGeneId":"50848"},{"alias":"HSPC062","entrezGeneId":"50852"},{"alias":"pp29/30","entrezGeneId":"50852"},{"alias":"TCRIM","entrezGeneId":"50852"},{"alias":"TRIM","entrezGeneId":"50852"},{"alias":"D6S57","entrezGeneId":"50854"},{"alias":"G8","entrezGeneId":"50854"},{"alias":"PAR-6A","entrezGeneId":"50855"},{"alias":"PAR6","entrezGeneId":"50855"},{"alias":"PAR6alpha","entrezGeneId":"50855"},{"alias":"PAR6C","entrezGeneId":"50855"},{"alias":"TAX40","entrezGeneId":"50855"},{"alias":"TIP-40","entrezGeneId":"50855"},{"alias":"CD367","entrezGeneId":"50856"},{"alias":"CLECSF6","entrezGeneId":"50856"},{"alias":"DCIR","entrezGeneId":"50856"},{"alias":"DDB27","entrezGeneId":"50856"},{"alias":"HDCGC13P","entrezGeneId":"50856"},{"alias":"LLIR","entrezGeneId":"50856"},{"alias":"LINC00033","entrezGeneId":"50858"},{"alias":"NCRNA00033","entrezGeneId":"50858"},{"alias":"TTY1","entrezGeneId":"50858"},{"alias":"HSAJ1454","entrezGeneId":"50859"},{"alias":"TES-3","entrezGeneId":"50859"},{"alias":"TICN3","entrezGeneId":"50859"},{"alias":"SCLIP","entrezGeneId":"50861"},{"alias":"RFP141","entrezGeneId":"50862"},{"alias":"ZFP26","entrezGeneId":"50862"},{"alias":"ZNF230","entrezGeneId":"50862"},{"alias":"CEPU-1","entrezGeneId":"50863"},{"alias":"HNT","entrezGeneId":"50863"},{"alias":"IGLON2","entrezGeneId":"50863"},{"alias":"NTRI","entrezGeneId":"50863"},{"alias":"HBP","entrezGeneId":"50865"},{"alias":"HEBP","entrezGeneId":"50865"},{"alias":"CDO","entrezGeneId":"50937"},{"alias":"CDON1","entrezGeneId":"50937"},{"alias":"HPE11","entrezGeneId":"50937"},{"alias":"ORCAM","entrezGeneId":"50937"},{"alias":"IPM200","entrezGeneId":"50939"},{"alias":"RP56","entrezGeneId":"50939"},{"alias":"SPACRCAN","entrezGeneId":"50939"},{"alias":"VMD5","entrezGeneId":"50939"},{"alias":"PPNAD2","entrezGeneId":"50940"},{"alias":"AIID","entrezGeneId":"50943"},{"alias":"DIETER","entrezGeneId":"50943"},{"alias":"IPEX","entrezGeneId":"50943"},{"alias":"JM2","entrezGeneId":"50943"},{"alias":"PIDX","entrezGeneId":"50943"},{"alias":"XPID","entrezGeneId":"50943"},{"alias":"SPANK-1","entrezGeneId":"50944"},{"alias":"SSTRIP","entrezGeneId":"50944"},{"alias":"synamon","entrezGeneId":"50944"},{"alias":"ABERS","entrezGeneId":"50945"},{"alias":"CLPA","entrezGeneId":"50945"},{"alias":"CPX","entrezGeneId":"50945"},{"alias":"dJ795G23.1","entrezGeneId":"50945"},{"alias":"TBXX","entrezGeneId":"50945"},{"alias":"BFHD","entrezGeneId":"50947"},{"alias":"MVP","entrezGeneId":"50951"},{"alias":"PMV","entrezGeneId":"50951"},{"alias":"DHMNVP","entrezGeneId":"50952"},{"alias":"MYMY","entrezGeneId":"50960"},{"alias":"BRKS","entrezGeneId":"50963"},{"alias":"TLH1","entrezGeneId":"50963"},{"alias":"CDD","entrezGeneId":"50964"},{"alias":"DAND6","entrezGeneId":"50964"},{"alias":"SOST1","entrezGeneId":"50964"},{"alias":"VBCH","entrezGeneId":"50964"},{"alias":"BAFME","entrezGeneId":"50968"},{"alias":"BAFME1","entrezGeneId":"50968"},{"alias":"FAME","entrezGeneId":"50968"},{"alias":"FAME1","entrezGeneId":"50968"},{"alias":"MEBA","entrezGeneId":"50968"},{"alias":"HMSNP","entrezGeneId":"50989"},{"alias":"CGI-100","entrezGeneId":"50999"},{"alias":"p24g2","entrezGeneId":"50999"},{"alias":"p28","entrezGeneId":"50999"},{"alias":"C6orf196","entrezGeneId":"51000"},{"alias":"CGI-19","entrezGeneId":"51000"},{"alias":"PAPST2","entrezGeneId":"51000"},{"alias":"CGI-12","entrezGeneId":"51001"},{"alias":"MTERFD1","entrezGeneId":"51001"},{"alias":"CGI-121","entrezGeneId":"51002"},{"alias":"CGI121","entrezGeneId":"51002"},{"alias":"GAMOS5","entrezGeneId":"51002"},{"alias":"3110004H13Rik","entrezGeneId":"51003"},{"alias":"CGI-125","entrezGeneId":"51003"},{"alias":"Soh1","entrezGeneId":"51003"},{"alias":"CGI-10","entrezGeneId":"51004"},{"alias":"CGI10","entrezGeneId":"51004"},{"alias":"COQ10D6","entrezGeneId":"51004"},{"alias":"CGI-14","entrezGeneId":"51005"},{"alias":"BA394O2.1","entrezGeneId":"51006"},{"alias":"C20orf5","entrezGeneId":"51006"},{"alias":"CGI-15","entrezGeneId":"51006"},{"alias":"OVCOV1","entrezGeneId":"51006"},{"alias":"ASC1p50","entrezGeneId":"51008"},{"alias":"CGI-18","entrezGeneId":"51008"},{"alias":"p50","entrezGeneId":"51008"},{"alias":"SMABF2","entrezGeneId":"51008"},{"alias":"CGI-101","entrezGeneId":"51009"},{"alias":"derlin-2","entrezGeneId":"51009"},{"alias":"DERtrin-2","entrezGeneId":"51009"},{"alias":"F-LAN-1","entrezGeneId":"51009"},{"alias":"F-LANa","entrezGeneId":"51009"},{"alias":"FLANa","entrezGeneId":"51009"},{"alias":"bA3J10.7","entrezGeneId":"51010"},{"alias":"CGI-102","entrezGeneId":"51010"},{"alias":"hRrp-40","entrezGeneId":"51010"},{"alias":"p10","entrezGeneId":"51010"},{"alias":"PCH1B","entrezGeneId":"51010"},{"alias":"RRP40","entrezGeneId":"51010"},{"alias":"Rrp40p","entrezGeneId":"51010"},{"alias":"CGI-105","entrezGeneId":"51011"},{"alias":"C20orf45","entrezGeneId":"51012"},{"alias":"dJ543J19.5","entrezGeneId":"51012"},{"alias":"SLMO2","entrezGeneId":"51012"},{"alias":"CGI-108","entrezGeneId":"51013"},{"alias":"CSL4","entrezGeneId":"51013"},{"alias":"Csl4p","entrezGeneId":"51013"},{"alias":"p13","entrezGeneId":"51013"},{"alias":"SKI4","entrezGeneId":"51013"},{"alias":"Ski4p","entrezGeneId":"51013"},{"alias":"CGI-109","entrezGeneId":"51014"},{"alias":"p24g3","entrezGeneId":"51014"},{"alias":"p24gamma3","entrezGeneId":"51014"},{"alias":"p27","entrezGeneId":"51014"},{"alias":"CGI-111","entrezGeneId":"51015"},{"alias":"C14orf122","entrezGeneId":"51016"},{"alias":"CGI-112","entrezGeneId":"51016"},{"alias":"FAM158A","entrezGeneId":"51016"},{"alias":"CGI-115","entrezGeneId":"51018"},{"alias":"KIAA0507","entrezGeneId":"51018"},{"alias":"CCDC53","entrezGeneId":"51019"},{"alias":"CGI-116","entrezGeneId":"51019"},{"alias":"C6orf74","entrezGeneId":"51020"},{"alias":"CGI-130","entrezGeneId":"51020"},{"alias":"dJ167O5.2","entrezGeneId":"51020"},{"alias":"NS5ATP2","entrezGeneId":"51020"},{"alias":"CGI-132","entrezGeneId":"51021"},{"alias":"COXPD2","entrezGeneId":"51021"},{"alias":"MRP-S16","entrezGeneId":"51021"},{"alias":"RPMS16","entrezGeneId":"51021"},{"alias":"CGI-133","entrezGeneId":"51022"},{"alias":"GRX2","entrezGeneId":"51022"},{"alias":"CGI-134","entrezGeneId":"51023"},{"alias":"MRP-S18-1","entrezGeneId":"51023"},{"alias":"MRP-S18-c","entrezGeneId":"51023"},{"alias":"MRPS18-1","entrezGeneId":"51023"},{"alias":"mrps18-c","entrezGeneId":"51023"},{"alias":"S18mt-c","entrezGeneId":"51023"},{"alias":"CGI-135","entrezGeneId":"51024"},{"alias":"TTC11","entrezGeneId":"51024"},{"alias":"CGI-136","entrezGeneId":"51025"},{"alias":"MAGMAS","entrezGeneId":"51025"},{"alias":"SMDMDM","entrezGeneId":"51025"},{"alias":"TIM16","entrezGeneId":"51025"},{"alias":"TIMM16","entrezGeneId":"51025"},{"alias":"CGI-141","entrezGeneId":"51026"},{"alias":"GCT2","entrezGeneId":"51026"},{"alias":"GOT1","entrezGeneId":"51026"},{"alias":"GOT1B","entrezGeneId":"51026"},{"alias":"YMR292W","entrezGeneId":"51026"},{"alias":"CGI-143","entrezGeneId":"51027"},{"alias":"C13orf9","entrezGeneId":"51028"},{"alias":"CGI-145","entrezGeneId":"51028"},{"alias":"EAP45","entrezGeneId":"51028"},{"alias":"C1orf121","entrezGeneId":"51029"},{"alias":"CGI-146","entrezGeneId":"51029"},{"alias":"DESI","entrezGeneId":"51029"},{"alias":"DeSI-2","entrezGeneId":"51029"},{"alias":"DESI1","entrezGeneId":"51029"},{"alias":"FAM152A","entrezGeneId":"51029"},{"alias":"PNAS-4","entrezGeneId":"51029"},{"alias":"PPPDE1","entrezGeneId":"51029"},{"alias":"CGI-148","entrezGeneId":"51030"},{"alias":"FAM18B","entrezGeneId":"51030"},{"alias":"FAM18B1","entrezGeneId":"51030"},{"alias":"NPD008","entrezGeneId":"51030"},{"alias":"YDR084C","entrezGeneId":"51030"},{"alias":"C17orf25","entrezGeneId":"51031"},{"alias":"CGI-150","entrezGeneId":"51031"},{"alias":"HC71","entrezGeneId":"51031"},{"alias":"ELA2B","entrezGeneId":"51032"},{"alias":"2B28","entrezGeneId":"51035"},{"alias":"SAKS1","entrezGeneId":"51035"},{"alias":"UBXD10","entrezGeneId":"51035"},{"alias":"ZT86","entrezGeneId":"51042"},{"alias":"c-KROX","entrezGeneId":"51043"},{"alias":"CKROX","entrezGeneId":"51043"},{"alias":"hcKROX","entrezGeneId":"51043"},{"alias":"THPOK","entrezGeneId":"51043"},{"alias":"ZBTB15","entrezGeneId":"51043"},{"alias":"ZFP-67","entrezGeneId":"51043"},{"alias":"ZFP67","entrezGeneId":"51043"},{"alias":"ZNF857B","entrezGeneId":"51043"},{"alias":"SIAT8C","entrezGeneId":"51046"},{"alias":"ST8SiaIII","entrezGeneId":"51046"},{"alias":"CRISP8","entrezGeneId":"51050"},{"alias":"P24TI","entrezGeneId":"51050"},{"alias":"P25TI","entrezGeneId":"51050"},{"alias":"PRH","entrezGeneId":"51052"},{"alias":"PRRP","entrezGeneId":"51052"},{"alias":"Gem","entrezGeneId":"51053"},{"alias":"MGORS6","entrezGeneId":"51053"},{"alias":"PLEKHA9","entrezGeneId":"51054"},{"alias":"HEL-S-106","entrezGeneId":"51056"},{"alias":"LAP","entrezGeneId":"51056"},{"alias":"LAPEP","entrezGeneId":"51056"},{"alias":"PEPS","entrezGeneId":"51056"},{"alias":"BBS15","entrezGeneId":"51057"},{"alias":"C2orf86","entrezGeneId":"51057"},{"alias":"CHDTHP","entrezGeneId":"51057"},{"alias":"CPLANE5","entrezGeneId":"51057"},{"alias":"FRITZ","entrezGeneId":"51057"},{"alias":"FRTZ","entrezGeneId":"51057"},{"alias":"Zfp691","entrezGeneId":"51058"},{"alias":"C8ORFK32","entrezGeneId":"51059"},{"alias":"AG1","entrezGeneId":"51060"},{"alias":"AGR1","entrezGeneId":"51060"},{"alias":"ERP16","entrezGeneId":"51060"},{"alias":"ERP18","entrezGeneId":"51060"},{"alias":"ERP19","entrezGeneId":"51060"},{"alias":"hAG-1","entrezGeneId":"51060"},{"alias":"hTLP19","entrezGeneId":"51060"},{"alias":"PDIA16","entrezGeneId":"51060"},{"alias":"TLP19","entrezGeneId":"51060"},{"alias":"EFP1","entrezGeneId":"51061"},{"alias":"AD-FSP","entrezGeneId":"51062"},{"alias":"atlastin1","entrezGeneId":"51062"},{"alias":"FSP1","entrezGeneId":"51062"},{"alias":"GBP3","entrezGeneId":"51062"},{"alias":"HSN1D","entrezGeneId":"51062"},{"alias":"SPG3","entrezGeneId":"51062"},{"alias":"SPG3A","entrezGeneId":"51062"},{"alias":"FAM26B","entrezGeneId":"51063"},{"alias":"C3orf32","entrezGeneId":"51066"},{"alias":"fls485","entrezGeneId":"51066"},{"alias":"SSU-2","entrezGeneId":"51066"},{"alias":"CGI-04","entrezGeneId":"51067"},{"alias":"MLASA2","entrezGeneId":"51067"},{"alias":"MT-TYRRS","entrezGeneId":"51067"},{"alias":"TYRRS","entrezGeneId":"51067"},{"alias":"CGI-07","entrezGeneId":"51068"},{"alias":"CGI-22","entrezGeneId":"51069"},{"alias":"MRP-L14","entrezGeneId":"51069"},{"alias":"RPML14","entrezGeneId":"51069"},{"alias":"CGI-25","entrezGeneId":"51070"},{"alias":"CGI-26","entrezGeneId":"51071"},{"alias":"DEOC","entrezGeneId":"51071"},{"alias":"C2orf4","entrezGeneId":"51072"},{"alias":"CGI-27","entrezGeneId":"51072"},{"alias":"MEMO","entrezGeneId":"51072"},{"alias":"NS5ATP7","entrezGeneId":"51072"},{"alias":"CGI-28","entrezGeneId":"51073"},{"alias":"L4mt","entrezGeneId":"51073"},{"alias":"APIP2","entrezGeneId":"51074"},{"alias":"CGI-29","entrezGeneId":"51074"},{"alias":"CGI29","entrezGeneId":"51074"},{"alias":"hAPIP","entrezGeneId":"51074"},{"alias":"MMRP19","entrezGeneId":"51074"},{"alias":"CGI-31","entrezGeneId":"51075"},{"alias":"PDIA12","entrezGeneId":"51075"},{"alias":"PIG26","entrezGeneId":"51075"},{"alias":"TXNDC14","entrezGeneId":"51075"},{"alias":"CGI-32","entrezGeneId":"51076"},{"alias":"Bka","entrezGeneId":"51077"},{"alias":"C14orf111","entrezGeneId":"51077"},{"alias":"CGI-35","entrezGeneId":"51077"},{"alias":"UTP24","entrezGeneId":"51077"},{"alias":"CGI-36","entrezGeneId":"51078"},{"alias":"PP238","entrezGeneId":"51078"},{"alias":"B16.6","entrezGeneId":"51079"},{"alias":"CDA016","entrezGeneId":"51079"},{"alias":"CGI-39","entrezGeneId":"51079"},{"alias":"GRIM-19","entrezGeneId":"51079"},{"alias":"GRIM19","entrezGeneId":"51079"},{"alias":"bMRP27a","entrezGeneId":"51081"},{"alias":"COXPD34","entrezGeneId":"51081"},{"alias":"MRP-S","entrezGeneId":"51081"},{"alias":"MRP-S7","entrezGeneId":"51081"},{"alias":"RP-S7","entrezGeneId":"51081"},{"alias":"RPMS7","entrezGeneId":"51081"},{"alias":"S7mt","entrezGeneId":"51081"},{"alias":"AC19","entrezGeneId":"51082"},{"alias":"POLR1C","entrezGeneId":"51082"},{"alias":"RPA16","entrezGeneId":"51082"},{"alias":"RPA9","entrezGeneId":"51082"},{"alias":"RPAC2","entrezGeneId":"51082"},{"alias":"RPC16","entrezGeneId":"51082"},{"alias":"RPO1-3","entrezGeneId":"51082"},{"alias":"TCS2","entrezGeneId":"51082"},{"alias":"ETL8","entrezGeneId":"51083"},{"alias":"GAL-GMAP","entrezGeneId":"51083"},{"alias":"GALN","entrezGeneId":"51083"},{"alias":"GLNN","entrezGeneId":"51083"},{"alias":"GMAP","entrezGeneId":"51083"},{"alias":"GDH","entrezGeneId":"51084"},{"alias":"HEL30","entrezGeneId":"51084"},{"alias":"lambda-CRY","entrezGeneId":"51084"},{"alias":"bHLHd14","entrezGeneId":"51085"},{"alias":"CHREBP","entrezGeneId":"51085"},{"alias":"MIO","entrezGeneId":"51085"},{"alias":"MLX","entrezGeneId":"51085"},{"alias":"MONDOB","entrezGeneId":"51085"},{"alias":"WBSCR14","entrezGeneId":"51085"},{"alias":"WS-bHLH","entrezGeneId":"51085"},{"alias":"CARK","entrezGeneId":"51086"},{"alias":"CCDD","entrezGeneId":"51086"},{"alias":"CONTRIN","entrezGeneId":"51087"},{"alias":"CSDA3","entrezGeneId":"51087"},{"alias":"DBPC","entrezGeneId":"51087"},{"alias":"MSY2","entrezGeneId":"51087"},{"alias":"PMLP","entrezGeneId":"51090"},{"alias":"TM4SF11","entrezGeneId":"51090"},{"alias":"LP","entrezGeneId":"51091"},{"alias":"PCH2D","entrezGeneId":"51091"},{"alias":"SLA","entrezGeneId":"51091"},{"alias":"SLA/LP","entrezGeneId":"51091"},{"alias":"CGI-40","entrezGeneId":"51092"},{"alias":"C1orf66","entrezGeneId":"51093"},{"alias":"CGI-41","entrezGeneId":"51093"},{"alias":"METTL25B","entrezGeneId":"51093"},{"alias":"ACDCR1","entrezGeneId":"51094"},{"alias":"CGI-45","entrezGeneId":"51094"},{"alias":"CGI45","entrezGeneId":"51094"},{"alias":"PAQR1","entrezGeneId":"51094"},{"alias":"TESBP1A","entrezGeneId":"51094"},{"alias":"CCA1","entrezGeneId":"51095"},{"alias":"CGI-47","entrezGeneId":"51095"},{"alias":"MtCCA","entrezGeneId":"51095"},{"alias":"RPEM","entrezGeneId":"51095"},{"alias":"SIFD","entrezGeneId":"51095"},{"alias":"CGI-48","entrezGeneId":"51096"},{"alias":"WDR50","entrezGeneId":"51096"},{"alias":"CGI-49","entrezGeneId":"51097"},{"alias":"NET11","entrezGeneId":"51097"},{"alias":"C20orf9","entrezGeneId":"51098"},{"alias":"CGI-53","entrezGeneId":"51098"},{"alias":"NGD2","entrezGeneId":"51098"},{"alias":"NGD5","entrezGeneId":"51098"},{"alias":"CDS","entrezGeneId":"51099"},{"alias":"CGI58","entrezGeneId":"51099"},{"alias":"IECN2","entrezGeneId":"51099"},{"alias":"NCIE2","entrezGeneId":"51099"},{"alias":"Bif-1","entrezGeneId":"51100"},{"alias":"CGI-61","entrezGeneId":"51100"},{"alias":"dJ612B15.2","entrezGeneId":"51100"},{"alias":"PPP1R70","entrezGeneId":"51100"},{"alias":"C8orf70","entrezGeneId":"51101"},{"alias":"CGI-62","entrezGeneId":"51101"},{"alias":"FAM164A","entrezGeneId":"51101"},{"alias":"CGI-63","entrezGeneId":"51102"},{"alias":"DYTOABG","entrezGeneId":"51102"},{"alias":"ETR1","entrezGeneId":"51102"},{"alias":"FASN2B","entrezGeneId":"51102"},{"alias":"NRBF1","entrezGeneId":"51102"},{"alias":"CGI-65","entrezGeneId":"51103"},{"alias":"CGI65","entrezGeneId":"51103"},{"alias":"CIA30","entrezGeneId":"51103"},{"alias":"C9orf77","entrezGeneId":"51104"},{"alias":"CGI-67","entrezGeneId":"51104"},{"alias":"FAM108B1","entrezGeneId":"51104"},{"alias":"CGI-72","entrezGeneId":"51105"},{"alias":"TDRD20B","entrezGeneId":"51105"},{"alias":"URLC1","entrezGeneId":"51105"},{"alias":"CGI-75","entrezGeneId":"51106"},{"alias":"CGI75","entrezGeneId":"51106"},{"alias":"mtTFB","entrezGeneId":"51106"},{"alias":"mtTFB1","entrezGeneId":"51106"},{"alias":"6530402N02Rik","entrezGeneId":"51107"},{"alias":"APH-1","entrezGeneId":"51107"},{"alias":"APH-1A","entrezGeneId":"51107"},{"alias":"CGI-78","entrezGeneId":"51107"},{"alias":"CGI-81","entrezGeneId":"51108"},{"alias":"DREV","entrezGeneId":"51108"},{"alias":"DREV1","entrezGeneId":"51108"},{"alias":"PAP1","entrezGeneId":"51108"},{"alias":"ARSDR1","entrezGeneId":"51109"},{"alias":"CGI82","entrezGeneId":"51109"},{"alias":"HCBP12","entrezGeneId":"51109"},{"alias":"MDT1","entrezGeneId":"51109"},{"alias":"PSDR1","entrezGeneId":"51109"},{"alias":"RALR1","entrezGeneId":"51109"},{"alias":"RDJCSS","entrezGeneId":"51109"},{"alias":"SCALD","entrezGeneId":"51109"},{"alias":"SDR7C1","entrezGeneId":"51109"},{"alias":"CGI-83","entrezGeneId":"51110"},{"alias":"CGI-85","entrezGeneId":"51111"},{"alias":"CGI85","entrezGeneId":"51111"},{"alias":"MRD51","entrezGeneId":"51111"},{"alias":"SUV420H1","entrezGeneId":"51111"},{"alias":"CGI-87","entrezGeneId":"51112"},{"alias":"PEBAS","entrezGeneId":"51112"},{"alias":"TTC-15","entrezGeneId":"51112"},{"alias":"TTC15","entrezGeneId":"51112"},{"alias":"CGI89","entrezGeneId":"51114"},{"alias":"CXorf11","entrezGeneId":"51114"},{"alias":"DHHC9","entrezGeneId":"51114"},{"alias":"MMSA1","entrezGeneId":"51114"},{"alias":"MRXSZ","entrezGeneId":"51114"},{"alias":"ZDHHC10","entrezGeneId":"51114"},{"alias":"ZNF379","entrezGeneId":"51114"},{"alias":"ZNF380","entrezGeneId":"51114"},{"alias":"CGI-90","entrezGeneId":"51115"},{"alias":"FAM82B","entrezGeneId":"51115"},{"alias":"RMD-1","entrezGeneId":"51115"},{"alias":"RMD1","entrezGeneId":"51115"},{"alias":"CGI-91","entrezGeneId":"51116"},{"alias":"MRP-S2","entrezGeneId":"51116"},{"alias":"S2mt","entrezGeneId":"51116"},{"alias":"CGI-92","entrezGeneId":"51117"},{"alias":"COQ10D7","entrezGeneId":"51117"},{"alias":"CGI-94","entrezGeneId":"51118"},{"alias":"CGI94","entrezGeneId":"51118"},{"alias":"UTP11L","entrezGeneId":"51118"},{"alias":"CGI-97","entrezGeneId":"51119"},{"alias":"SDS","entrezGeneId":"51119"},{"alias":"SWDS","entrezGeneId":"51119"},{"alias":"RPL26P1","entrezGeneId":"51121"},{"alias":"HSPC042","entrezGeneId":"51122"},{"alias":"HSPC038","entrezGeneId":"51123"},{"alias":"PNAS-106","entrezGeneId":"51123"},{"alias":"PNAS-113","entrezGeneId":"51123"},{"alias":"HSPC039","entrezGeneId":"51124"},{"alias":"MEDS","entrezGeneId":"51124"},{"alias":"PRO2309","entrezGeneId":"51124"},{"alias":"GCP16","entrezGeneId":"51125"},{"alias":"GOLGA3AP1","entrezGeneId":"51125"},{"alias":"GOLGA7A","entrezGeneId":"51125"},{"alias":"HSPC041","entrezGeneId":"51125"},{"alias":"dJ1002M8.1","entrezGeneId":"51126"},{"alias":"NAT3","entrezGeneId":"51126"},{"alias":"NAT3P","entrezGeneId":"51126"},{"alias":"NAT5","entrezGeneId":"51126"},{"alias":"NAT5P","entrezGeneId":"51126"},{"alias":"RBCC","entrezGeneId":"51127"},{"alias":"RNF16","entrezGeneId":"51127"},{"alias":"terf","entrezGeneId":"51127"},{"alias":"ANDD","entrezGeneId":"51128"},{"alias":"CMRD","entrezGeneId":"51128"},{"alias":"GTBPB","entrezGeneId":"51128"},{"alias":"SARA2","entrezGeneId":"51128"},{"alias":"ARP4","entrezGeneId":"51129"},{"alias":"FIAF","entrezGeneId":"51129"},{"alias":"HARP","entrezGeneId":"51129"},{"alias":"HFARP","entrezGeneId":"51129"},{"alias":"NL2","entrezGeneId":"51129"},{"alias":"PGAR","entrezGeneId":"51129"},{"alias":"pp1158","entrezGeneId":"51129"},{"alias":"TGQTL","entrezGeneId":"51129"},{"alias":"UNQ171","entrezGeneId":"51129"},{"alias":"ASB-3","entrezGeneId":"51130"},{"alias":"APY","entrezGeneId":"51131"},{"alias":"BCAP","entrezGeneId":"51131"},{"alias":"IGEL","entrezGeneId":"51131"},{"alias":"IGER","entrezGeneId":"51131"},{"alias":"IGHER","entrezGeneId":"51131"},{"alias":"NY-REN-34","entrezGeneId":"51131"},{"alias":"NYREN34","entrezGeneId":"51131"},{"alias":"MRX61","entrezGeneId":"51132"},{"alias":"NY-REN-43","entrezGeneId":"51132"},{"alias":"RNF12","entrezGeneId":"51132"},{"alias":"NY-REN-45","entrezGeneId":"51133"},{"alias":"CCDC41","entrezGeneId":"51134"},{"alias":"NPHP18","entrezGeneId":"51134"},{"alias":"NY-REN-58","entrezGeneId":"51134"},{"alias":"IPD1","entrezGeneId":"51135"},{"alias":"IRAK-4","entrezGeneId":"51135"},{"alias":"NY-REN-64","entrezGeneId":"51135"},{"alias":"REN64","entrezGeneId":"51135"},{"alias":"PTD016","entrezGeneId":"51136"},{"alias":"CSN4","entrezGeneId":"51138"},{"alias":"SGN4","entrezGeneId":"51138"},{"alias":"INSIG-2","entrezGeneId":"51141"},{"alias":"C7orf17","entrezGeneId":"51142"},{"alias":"MIX17B","entrezGeneId":"51142"},{"alias":"MNRR1","entrezGeneId":"51142"},{"alias":"NS2TP","entrezGeneId":"51142"},{"alias":"PARK22","entrezGeneId":"51142"},{"alias":"DLC-A","entrezGeneId":"51143"},{"alias":"DNCLI1","entrezGeneId":"51143"},{"alias":"LIC1","entrezGeneId":"51143"},{"alias":"KAR","entrezGeneId":"51144"},{"alias":"SDR12C1","entrezGeneId":"51144"},{"alias":"alpha4GnT","entrezGeneId":"51146"},{"alias":"my036","entrezGeneId":"51147"},{"alias":"p29ING4","entrezGeneId":"51147"},{"alias":"CEECAM1","entrezGeneId":"51148"},{"alias":"GLT25D3","entrezGeneId":"51148"},{"alias":"C5orf45","entrezGeneId":"51149"},{"alias":"Cab45","entrezGeneId":"51150"},{"alias":"SDF-4","entrezGeneId":"51150"},{"alias":"1A1","entrezGeneId":"51151"},{"alias":"AIM1","entrezGeneId":"51151"},{"alias":"MATP","entrezGeneId":"51151"},{"alias":"OCA4","entrezGeneId":"51151"},{"alias":"SHEP5","entrezGeneId":"51151"},{"alias":"NCRNA00328","entrezGeneId":"51152"},{"alias":"NCRNA00328-1","entrezGeneId":"51152"},{"alias":"NCRNA00328A","entrezGeneId":"51152"},{"alias":"C1orf33","entrezGeneId":"51154"},{"alias":"dJ657E11.4","entrezGeneId":"51154"},{"alias":"MRT4","entrezGeneId":"51154"},{"alias":"ARM2","entrezGeneId":"51155"},{"alias":"HN1","entrezGeneId":"51155"},{"alias":"HN1A","entrezGeneId":"51155"},{"alias":"PZI","entrezGeneId":"51156"},{"alias":"ZPI","entrezGeneId":"51156"},{"alias":"G20","entrezGeneId":"51161"},{"alias":"NEU1","entrezGeneId":"51162"},{"alias":"VE-STATIN","entrezGeneId":"51162"},{"alias":"ZNEU1","entrezGeneId":"51162"},{"alias":"DYN4","entrezGeneId":"51164"},{"alias":"P62","entrezGeneId":"51164"},{"alias":"KAT2","entrezGeneId":"51166"},{"alias":"KATII","entrezGeneId":"51166"},{"alias":"KYAT2","entrezGeneId":"51166"},{"alias":"cb5/cb5R","entrezGeneId":"51167"},{"alias":"dJ676J13.1","entrezGeneId":"51167"},{"alias":"NCB5OR","entrezGeneId":"51167"},{"alias":"DFNB3","entrezGeneId":"51168"},{"alias":"MYO15","entrezGeneId":"51168"},{"alias":"17-BETA-HSD11","entrezGeneId":"51170"},{"alias":"17-BETA-HSDXI","entrezGeneId":"51170"},{"alias":"17BHSD11","entrezGeneId":"51170"},{"alias":"DHRS8","entrezGeneId":"51170"},{"alias":"PAN1B","entrezGeneId":"51170"},{"alias":"RETSDR2","entrezGeneId":"51170"},{"alias":"SDR16C2","entrezGeneId":"51170"},{"alias":"DHRS10","entrezGeneId":"51171"},{"alias":"retSDR3","entrezGeneId":"51171"},{"alias":"SDR47C1","entrezGeneId":"51171"},{"alias":"APAA","entrezGeneId":"51172"},{"alias":"UCE","entrezGeneId":"51172"},{"alias":"TUBD","entrezGeneId":"51174"},{"alias":"dJ142L7.2","entrezGeneId":"51175"},{"alias":"TUBE","entrezGeneId":"51175"},{"alias":"LEF-1","entrezGeneId":"51176"},{"alias":"TCF10","entrezGeneId":"51176"},{"alias":"TCF1ALPHA","entrezGeneId":"51176"},{"alias":"TCF7L3","entrezGeneId":"51176"},{"alias":"CKIP-1","entrezGeneId":"51177"},{"alias":"CKIP1","entrezGeneId":"51177"},{"alias":"JBP","entrezGeneId":"51177"},{"alias":"OC120","entrezGeneId":"51177"},{"alias":"GIG16","entrezGeneId":"51179"},{"alias":"HAOX2","entrezGeneId":"51179"},{"alias":"DCR","entrezGeneId":"51181"},{"alias":"HCR2","entrezGeneId":"51181"},{"alias":"HCRII","entrezGeneId":"51181"},{"alias":"KIDCR","entrezGeneId":"51181"},{"alias":"P34H","entrezGeneId":"51181"},{"alias":"PNTSU","entrezGeneId":"51181"},{"alias":"SDR20C1","entrezGeneId":"51181"},{"alias":"XR","entrezGeneId":"51181"},{"alias":"HSP70-4","entrezGeneId":"51182"},{"alias":"HSP70L1","entrezGeneId":"51182"},{"alias":"ATPBD1C","entrezGeneId":"51184"},{"alias":"MRT2","entrezGeneId":"51185"},{"alias":"MRT2A","entrezGeneId":"51185"},{"alias":"WBP5","entrezGeneId":"51186"},{"alias":"WEX6","entrezGeneId":"51186"},{"alias":"C15orf15","entrezGeneId":"51187"},{"alias":"HRP-L30-iso","entrezGeneId":"51187"},{"alias":"L30","entrezGeneId":"51187"},{"alias":"RLP24","entrezGeneId":"51187"},{"alias":"RPL24","entrezGeneId":"51187"},{"alias":"RPL24L","entrezGeneId":"51187"},{"alias":"TVAS3","entrezGeneId":"51187"},{"alias":"KIAA-iso","entrezGeneId":"51188"},{"alias":"CEB1","entrezGeneId":"51191"},{"alias":"CEBP1","entrezGeneId":"51191"},{"alias":"C32","entrezGeneId":"51192"},{"alias":"CKLF1","entrezGeneId":"51192"},{"alias":"CKLF2","entrezGeneId":"51192"},{"alias":"CKLF3","entrezGeneId":"51192"},{"alias":"CKLF4","entrezGeneId":"51192"},{"alias":"HSPC224","entrezGeneId":"51192"},{"alias":"UCK-1","entrezGeneId":"51192"},{"alias":"ANC-2H01","entrezGeneId":"51193"},{"alias":"ANC_2H01","entrezGeneId":"51193"},{"alias":"ZASC1","entrezGeneId":"51193"},{"alias":"RanBP11","entrezGeneId":"51194"},{"alias":"Link-GEFII","entrezGeneId":"51195"},{"alias":"NPHS3","entrezGeneId":"51196"},{"alias":"PLCE","entrezGeneId":"51196"},{"alias":"PPLC","entrezGeneId":"51196"},{"alias":"bA149I2.3","entrezGeneId":"51198"},{"alias":"C9orf53","entrezGeneId":"51198"},{"alias":"CDKN2A-AS1","entrezGeneId":"51198"},{"alias":"SCKL7","entrezGeneId":"51199"},{"alias":"CPA3","entrezGeneId":"51200"},{"alias":"DHHC2","entrezGeneId":"51201"},{"alias":"ZNF372","entrezGeneId":"51201"},{"alias":"E4-DBP","entrezGeneId":"51202"},{"alias":"HQ0256","entrezGeneId":"51202"},{"alias":"MSTP162","entrezGeneId":"51202"},{"alias":"RRP3","entrezGeneId":"51202"},{"alias":"ANKT","entrezGeneId":"51203"},{"alias":"BM037","entrezGeneId":"51203"},{"alias":"LNP","entrezGeneId":"51203"},{"alias":"NUSAP","entrezGeneId":"51203"},{"alias":"PRO0310p1","entrezGeneId":"51203"},{"alias":"Q0310","entrezGeneId":"51203"},{"alias":"SAPL","entrezGeneId":"51203"},{"alias":"CCDC44","entrezGeneId":"51204"},{"alias":"ACPL1","entrezGeneId":"51205"},{"alias":"LPAP","entrezGeneId":"51205"},{"alias":"PACPL1","entrezGeneId":"51205"},{"alias":"BDPLT11","entrezGeneId":"51206"},{"alias":"GPIV","entrezGeneId":"51206"},{"alias":"GPVI","entrezGeneId":"51206"},{"alias":"BEDP","entrezGeneId":"51207"},{"alias":"DUSP13A","entrezGeneId":"51207"},{"alias":"DUSP13B","entrezGeneId":"51207"},{"alias":"MDSP","entrezGeneId":"51207"},{"alias":"SKRP4","entrezGeneId":"51207"},{"alias":"TMDP","entrezGeneId":"51207"},{"alias":"SFTA5","entrezGeneId":"51208"},{"alias":"SFTPJ","entrezGeneId":"51208"},{"alias":"Rab-9L","entrezGeneId":"51209"},{"alias":"RAB9L","entrezGeneId":"51209"},{"alias":"CT-28","entrezGeneId":"51213"},{"alias":"CT-8","entrezGeneId":"51213"},{"alias":"CT28","entrezGeneId":"51213"},{"alias":"HOM-TES-85","entrezGeneId":"51213"},{"alias":"IGF2-AS1","entrezGeneId":"51214"},{"alias":"IGF2AS","entrezGeneId":"51214"},{"alias":"PEG8","entrezGeneId":"51214"},{"alias":"C14orf87","entrezGeneId":"51218"},{"alias":"FLB4739","entrezGeneId":"51218"},{"alias":"GRX5","entrezGeneId":"51218"},{"alias":"PR01238","entrezGeneId":"51218"},{"alias":"PRO1238","entrezGeneId":"51218"},{"alias":"PRSA","entrezGeneId":"51218"},{"alias":"SIDBA3","entrezGeneId":"51218"},{"alias":"SPAHGC","entrezGeneId":"51218"},{"alias":"ZFP219","entrezGeneId":"51222"},{"alias":"HsT832","entrezGeneId":"51224"},{"alias":"TCEB3B","entrezGeneId":"51224"},{"alias":"TCEB3L","entrezGeneId":"51224"},{"alias":"NESH","entrezGeneId":"51225"},{"alias":"SSH3BP3","entrezGeneId":"51225"},{"alias":"zeta2-COP","entrezGeneId":"51226"},{"alias":"DCRC","entrezGeneId":"51227"},{"alias":"DCRC-S","entrezGeneId":"51227"},{"alias":"DSCR5","entrezGeneId":"51227"},{"alias":"DSRC","entrezGeneId":"51227"},{"alias":"EIEE55","entrezGeneId":"51227"},{"alias":"PIG-P","entrezGeneId":"51227"},{"alias":"C20orf104","entrezGeneId":"51230"},{"alias":"GLEA2","entrezGeneId":"51230"},{"alias":"HCA58","entrezGeneId":"51230"},{"alias":"NZF","entrezGeneId":"51230"},{"alias":"TDRD20A","entrezGeneId":"51230"},{"alias":"TZP","entrezGeneId":"51230"},{"alias":"CRIM-1","entrezGeneId":"51232"},{"alias":"S52","entrezGeneId":"51232"},{"alias":"C22orf43","entrezGeneId":"51233"},{"alias":"KB-208E9.1","entrezGeneId":"51233"},{"alias":"PIG17","entrezGeneId":"51234"},{"alias":"TMEM85","entrezGeneId":"51234"},{"alias":"BRP16","entrezGeneId":"51236"},{"alias":"BRP16L","entrezGeneId":"51236"},{"alias":"C8orf30A","entrezGeneId":"51236"},{"alias":"C8orf30B","entrezGeneId":"51236"},{"alias":"FAM203A","entrezGeneId":"51236"},{"alias":"FAM203B","entrezGeneId":"51236"},{"alias":"MEDA-7","entrezGeneId":"51237"},{"alias":"PACAP","entrezGeneId":"51237"},{"alias":"pERp1","entrezGeneId":"51237"},{"alias":"C14orf112","entrezGeneId":"51241"},{"alias":"hCOX16","entrezGeneId":"51241"},{"alias":"HSPC203","entrezGeneId":"51241"},{"alias":"C3orf19","entrezGeneId":"51244"},{"alias":"HSPC212","entrezGeneId":"51244"},{"alias":"IHPM","entrezGeneId":"51244"},{"alias":"IHPMR","entrezGeneId":"51244"},{"alias":"SCOTIN","entrezGeneId":"51246"},{"alias":"PAIP-2","entrezGeneId":"51247"},{"alias":"PAIP2A","entrezGeneId":"51247"},{"alias":"AIPP1","entrezGeneId":"51248"},{"alias":"PDZK11","entrezGeneId":"51248"},{"alias":"PISP","entrezGeneId":"51248"},{"alias":"C1orf154","entrezGeneId":"51249"},{"alias":"HSPC230","entrezGeneId":"51250"},{"alias":"PRED31","entrezGeneId":"51250"},{"alias":"cN-III","entrezGeneId":"51251"},{"alias":"hUMP1","entrezGeneId":"51251"},{"alias":"NT5C3","entrezGeneId":"51251"},{"alias":"p36","entrezGeneId":"51251"},{"alias":"P5'N-1","entrezGeneId":"51251"},{"alias":"P5N-1","entrezGeneId":"51251"},{"alias":"PN-I","entrezGeneId":"51251"},{"alias":"POMP","entrezGeneId":"51251"},{"alias":"PSN1","entrezGeneId":"51251"},{"alias":"UMPH","entrezGeneId":"51251"},{"alias":"UMPH1","entrezGeneId":"51251"},{"alias":"L2mt","entrezGeneId":"51253"},{"alias":"L37mt","entrezGeneId":"51253"},{"alias":"MRP-L2","entrezGeneId":"51253"},{"alias":"MRP-L37","entrezGeneId":"51253"},{"alias":"MRPL2","entrezGeneId":"51253"},{"alias":"RPML2","entrezGeneId":"51253"},{"alias":"HSPC238","entrezGeneId":"51255"},{"alias":"MGCPH","entrezGeneId":"51256"},{"alias":"PIG51","entrezGeneId":"51256"},{"alias":"TBC7","entrezGeneId":"51256"},{"alias":"HSPC240","entrezGeneId":"51257"},{"alias":"MARCH-II","entrezGeneId":"51257"},{"alias":"RNF172","entrezGeneId":"51257"},{"alias":"bMRP64","entrezGeneId":"51258"},{"alias":"CDA09","entrezGeneId":"51258"},{"alias":"HSPC241","entrezGeneId":"51258"},{"alias":"MRP64","entrezGeneId":"51258"},{"alias":"HSPC244","entrezGeneId":"51259"},{"alias":"CXorf26","entrezGeneId":"51260"},{"alias":"L28MT","entrezGeneId":"51263"},{"alias":"L30MT","entrezGeneId":"51263"},{"alias":"MRP-L28","entrezGeneId":"51263"},{"alias":"MRP-L30","entrezGeneId":"51263"},{"alias":"MRPL28","entrezGeneId":"51263"},{"alias":"MRPL28M","entrezGeneId":"51263"},{"alias":"RPML28","entrezGeneId":"51263"},{"alias":"L27mt","entrezGeneId":"51264"},{"alias":"NKIAMRE","entrezGeneId":"51265"},{"alias":"1810061I13Rik","entrezGeneId":"51266"},{"alias":"CLEC2","entrezGeneId":"51266"},{"alias":"CLEC2B","entrezGeneId":"51266"},{"alias":"PRO1384","entrezGeneId":"51266"},{"alias":"QDED721","entrezGeneId":"51266"},{"alias":"CLEC-1","entrezGeneId":"51267"},{"alias":"CLEC1","entrezGeneId":"51267"},{"alias":"LPIPOX","entrezGeneId":"51268"},{"alias":"CT30","entrezGeneId":"51270"},{"alias":"DP4","entrezGeneId":"51270"},{"alias":"HCA661","entrezGeneId":"51270"},{"alias":"NAG20","entrezGeneId":"51271"},{"alias":"UAP","entrezGeneId":"51271"},{"alias":"UBAP","entrezGeneId":"51271"},{"alias":"UBAP-1","entrezGeneId":"51271"},{"alias":"BET1L1","entrezGeneId":"51272"},{"alias":"GOLIM3","entrezGeneId":"51272"},{"alias":"GS15","entrezGeneId":"51272"},{"alias":"HSPC197","entrezGeneId":"51272"},{"alias":"BKLF","entrezGeneId":"51274"},{"alias":"C12orf47","entrezGeneId":"51275"},{"alias":"HSPC059","entrezGeneId":"51276"},{"alias":"RabJS","entrezGeneId":"51277"},{"alias":"RBJ","entrezGeneId":"51277"},{"alias":"SBBI48","entrezGeneId":"51278"},{"alias":"C1r-LP","entrezGeneId":"51279"},{"alias":"C1RL1","entrezGeneId":"51279"},{"alias":"C1RLP","entrezGeneId":"51279"},{"alias":"CLSPa","entrezGeneId":"51279"},{"alias":"bA379P1.3","entrezGeneId":"51280"},{"alias":"C9orf155","entrezGeneId":"51280"},{"alias":"GOLPH2","entrezGeneId":"51280"},{"alias":"GP73","entrezGeneId":"51280"},{"alias":"HEL46","entrezGeneId":"51280"},{"alias":"PSEC0257","entrezGeneId":"51280"},{"alias":"ZMYND13","entrezGeneId":"51281"},{"alias":"RAZ1","entrezGeneId":"51282"},{"alias":"SDP1","entrezGeneId":"51282"},{"alias":"BAR","entrezGeneId":"51283"},{"alias":"RNF47","entrezGeneId":"51283"},{"alias":"TLR7-like","entrezGeneId":"51284"},{"alias":"RIS","entrezGeneId":"51285"},{"alias":"BM88","entrezGeneId":"51286"},{"alias":"CHCHD8","entrezGeneId":"51287"},{"alias":"CMC3","entrezGeneId":"51287"},{"alias":"E2IG2","entrezGeneId":"51287"},{"alias":"GPCR135","entrezGeneId":"51289"},{"alias":"RLN3R1","entrezGeneId":"51289"},{"alias":"RXFPR3","entrezGeneId":"51289"},{"alias":"SALPR","entrezGeneId":"51289"},{"alias":"cd002","entrezGeneId":"51290"},{"alias":"CDA14","entrezGeneId":"51290"},{"alias":"Erv41","entrezGeneId":"51290"},{"alias":"PTX1","entrezGeneId":"51290"},{"alias":"ARHGAP46","entrezGeneId":"51291"},{"alias":"GMPR 2","entrezGeneId":"51292"},{"alias":"8D6","entrezGeneId":"51293"},{"alias":"8D6A","entrezGeneId":"51293"},{"alias":"TCBLR","entrezGeneId":"51293"},{"alias":"VE-cadherin-2","entrezGeneId":"51294"},{"alias":"VECAD2","entrezGeneId":"51294"},{"alias":"SITPEC","entrezGeneId":"51295"},{"alias":"OCTP","entrezGeneId":"51296"},{"alias":"PHT2","entrezGeneId":"51296"},{"alias":"PTR3","entrezGeneId":"51296"},{"alias":"bA49G10.5","entrezGeneId":"51297"},{"alias":"LUNX","entrezGeneId":"51297"},{"alias":"NASG","entrezGeneId":"51297"},{"alias":"PLUNC","entrezGeneId":"51297"},{"alias":"SPLUNC1","entrezGeneId":"51297"},{"alias":"SPURT","entrezGeneId":"51297"},{"alias":"CT56","entrezGeneId":"51298"},{"alias":"THEG1","entrezGeneId":"51298"},{"alias":"dJ380B8.2","entrezGeneId":"51299"},{"alias":"NRN","entrezGeneId":"51299"},{"alias":"C3orf1","entrezGeneId":"51300"},{"alias":"C2GNT3","entrezGeneId":"51301"},{"alias":"FKBP19","entrezGeneId":"51303"},{"alias":"DHHC-3","entrezGeneId":"51304"},{"alias":"DHHC3","entrezGeneId":"51304"},{"alias":"GODZ","entrezGeneId":"51304"},{"alias":"ZNF373","entrezGeneId":"51304"},{"alias":"K2p9.1","entrezGeneId":"51305"},{"alias":"KT3.2","entrezGeneId":"51305"},{"alias":"TASK-3","entrezGeneId":"51305"},{"alias":"TASK3","entrezGeneId":"51305"},{"alias":"ARHGAP49","entrezGeneId":"51306"},{"alias":"C5orf5","entrezGeneId":"51306"},{"alias":"FAM13B1","entrezGeneId":"51306"},{"alias":"KHCHP","entrezGeneId":"51306"},{"alias":"N61","entrezGeneId":"51306"},{"alias":"C5orf6","entrezGeneId":"51307"},{"alias":"C5orf19","entrezGeneId":"51308"},{"alias":"SGC32445","entrezGeneId":"51308"},{"alias":"SPG72","entrezGeneId":"51308"},{"alias":"Yip2d","entrezGeneId":"51308"},{"alias":"ALEX1","entrezGeneId":"51309"},{"alias":"GASP7","entrezGeneId":"51309"},{"alias":"24p3R","entrezGeneId":"51310"},{"alias":"BOCT","entrezGeneId":"51310"},{"alias":"BOIT","entrezGeneId":"51310"},{"alias":"hBOIT","entrezGeneId":"51310"},{"alias":"NGALR","entrezGeneId":"51310"},{"alias":"NGALR2","entrezGeneId":"51310"},{"alias":"NGALR3","entrezGeneId":"51310"},{"alias":"CD288","entrezGeneId":"51311"},{"alias":"HT015","entrezGeneId":"51312"},{"alias":"MFRN","entrezGeneId":"51312"},{"alias":"MFRN1","entrezGeneId":"51312"},{"alias":"MSC","entrezGeneId":"51312"},{"alias":"MSCP","entrezGeneId":"51312"},{"alias":"PRO1278","entrezGeneId":"51312"},{"alias":"PRO1584","entrezGeneId":"51312"},{"alias":"PRO2217","entrezGeneId":"51312"},{"alias":"AD021","entrezGeneId":"51313"},{"alias":"AD036","entrezGeneId":"51313"},{"alias":"C4orf18","entrezGeneId":"51313"},{"alias":"ENED","entrezGeneId":"51313"},{"alias":"CILD6","entrezGeneId":"51314"},{"alias":"HEL-S-99","entrezGeneId":"51314"},{"alias":"NM23-H8","entrezGeneId":"51314"},{"alias":"sptrx-2","entrezGeneId":"51314"},{"alias":"SPTRX2","entrezGeneId":"51314"},{"alias":"TXNDC3","entrezGeneId":"51314"},{"alias":"CHBP2","entrezGeneId":"51315"},{"alias":"C15","entrezGeneId":"51316"},{"alias":"DGIC","entrezGeneId":"51316"},{"alias":"onzin","entrezGeneId":"51316"},{"alias":"PNAS-144","entrezGeneId":"51316"},{"alias":"BHC80","entrezGeneId":"51317"},{"alias":"BM-006","entrezGeneId":"51317"},{"alias":"L35mt","entrezGeneId":"51318"},{"alias":"MRP-L35","entrezGeneId":"51318"},{"alias":"BM-011","entrezGeneId":"51319"},{"alias":"SFRS21","entrezGeneId":"51319"},{"alias":"SRrp53","entrezGeneId":"51319"},{"alias":"BM-013","entrezGeneId":"51320"},{"alias":"MEX-3C","entrezGeneId":"51320"},{"alias":"RKHD2","entrezGeneId":"51320"},{"alias":"RNF194","entrezGeneId":"51320"},{"alias":"BM-016","entrezGeneId":"51322"},{"alias":"DESSH","entrezGeneId":"51322"},{"alias":"PRO1741","entrezGeneId":"51322"},{"alias":"Wwp4","entrezGeneId":"51322"},{"alias":"ACP33","entrezGeneId":"51324"},{"alias":"BM-019","entrezGeneId":"51324"},{"alias":"GL010","entrezGeneId":"51324"},{"alias":"MAST","entrezGeneId":"51324"},{"alias":"ARF1P2","entrezGeneId":"51326"},{"alias":"ARL17P1","entrezGeneId":"51326"},{"alias":"EDRF","entrezGeneId":"51327"},{"alias":"ERAF","entrezGeneId":"51327"},{"alias":"SFRS20","entrezGeneId":"51329"},{"alias":"SR-25","entrezGeneId":"51329"},{"alias":"SRp25","entrezGeneId":"51329"},{"alias":"SRrp37","entrezGeneId":"51329"},{"alias":"CD266","entrezGeneId":"51330"},{"alias":"FN14","entrezGeneId":"51330"},{"alias":"TWEAKR","entrezGeneId":"51330"},{"alias":"BSPECV","entrezGeneId":"51332"},{"alias":"HUBSPECV","entrezGeneId":"51332"},{"alias":"HUSPECV","entrezGeneId":"51332"},{"alias":"DSC43","entrezGeneId":"51333"},{"alias":"DSC54","entrezGeneId":"51334"},{"alias":"LARGEN","entrezGeneId":"51334"},{"alias":"DSC92","entrezGeneId":"51335"},{"alias":"C8orf55","entrezGeneId":"51337"},{"alias":"DSCD75","entrezGeneId":"51337"},{"alias":"4SPAN1","entrezGeneId":"51338"},{"alias":"CD20-L1","entrezGeneId":"51338"},{"alias":"CD20L1","entrezGeneId":"51338"},{"alias":"HDCME31P","entrezGeneId":"51338"},{"alias":"MS4A4","entrezGeneId":"51338"},{"alias":"MS4A7","entrezGeneId":"51338"},{"alias":"DAPPER","entrezGeneId":"51339"},{"alias":"DAPPER1","entrezGeneId":"51339"},{"alias":"DPR1","entrezGeneId":"51339"},{"alias":"FRODO","entrezGeneId":"51339"},{"alias":"HDPR1","entrezGeneId":"51339"},{"alias":"TBS2","entrezGeneId":"51339"},{"alias":"THYEX3","entrezGeneId":"51339"},{"alias":"CLF","entrezGeneId":"51340"},{"alias":"Clf1","entrezGeneId":"51340"},{"alias":"CRN","entrezGeneId":"51340"},{"alias":"HCRN","entrezGeneId":"51340"},{"alias":"MSTP021","entrezGeneId":"51340"},{"alias":"SYF3","entrezGeneId":"51340"},{"alias":"FBI-1","entrezGeneId":"51341"},{"alias":"FBI1","entrezGeneId":"51341"},{"alias":"LRF","entrezGeneId":"51341"},{"alias":"pokemon","entrezGeneId":"51341"},{"alias":"TIP21","entrezGeneId":"51341"},{"alias":"ZBTB7","entrezGeneId":"51341"},{"alias":"ZNF857A","entrezGeneId":"51341"},{"alias":"CDC20C","entrezGeneId":"51343"},{"alias":"CDH1","entrezGeneId":"51343"},{"alias":"FZR","entrezGeneId":"51343"},{"alias":"FZR2","entrezGeneId":"51343"},{"alias":"HCDH","entrezGeneId":"51343"},{"alias":"HCDH1","entrezGeneId":"51343"},{"alias":"DPK","entrezGeneId":"51347"},{"alias":"hKFC-A","entrezGeneId":"51347"},{"alias":"JIK","entrezGeneId":"51347"},{"alias":"MAP3K18","entrezGeneId":"51347"},{"alias":"CLEC5C","entrezGeneId":"51348"},{"alias":"NKp80","entrezGeneId":"51348"},{"alias":"HUMCYT2A","entrezGeneId":"51350"},{"alias":"KRT2B","entrezGeneId":"51350"},{"alias":"KRT2P","entrezGeneId":"51350"},{"alias":"H-plk","entrezGeneId":"51351"},{"alias":"HPF9","entrezGeneId":"51351"},{"alias":"WIT-1","entrezGeneId":"51352"},{"alias":"WIT1","entrezGeneId":"51352"},{"alias":"WT1-AS1","entrezGeneId":"51352"},{"alias":"WT1AS","entrezGeneId":"51352"},{"alias":"HERV-HD1","entrezGeneId":"51359"},{"alias":"HSU88895","entrezGeneId":"51359"},{"alias":"BRESEK","entrezGeneId":"51360"},{"alias":"IFAP","entrezGeneId":"51360"},{"alias":"KFSD","entrezGeneId":"51360"},{"alias":"KFSDX","entrezGeneId":"51360"},{"alias":"OLMSX","entrezGeneId":"51360"},{"alias":"S2P","entrezGeneId":"51360"},{"alias":"HK1","entrezGeneId":"51361"},{"alias":"EHB3","entrezGeneId":"51362"},{"alias":"PRP17","entrezGeneId":"51362"},{"alias":"PRPF17","entrezGeneId":"51362"},{"alias":"BRAG","entrezGeneId":"51363"},{"alias":"GALNAC4S-6ST","entrezGeneId":"51363"},{"alias":"BLU","entrezGeneId":"51364"},{"alias":"CILD22","entrezGeneId":"51364"},{"alias":"FLU","entrezGeneId":"51364"},{"alias":"PS-PLA1","entrezGeneId":"51365"},{"alias":"PSPLA1","entrezGeneId":"51365"},{"alias":"DD5","entrezGeneId":"51366"},{"alias":"EDD","entrezGeneId":"51366"},{"alias":"EDD1","entrezGeneId":"51366"},{"alias":"HYD","entrezGeneId":"51366"},{"alias":"hPop5","entrezGeneId":"51367"},{"alias":"HSPC004","entrezGeneId":"51367"},{"alias":"RPP2","entrezGeneId":"51367"},{"alias":"RPP20","entrezGeneId":"51367"},{"alias":"ZSIG11","entrezGeneId":"51368"},{"alias":"C13orf12","entrezGeneId":"51371"},{"alias":"HSPC014","entrezGeneId":"51371"},{"alias":"PNAS-110","entrezGeneId":"51371"},{"alias":"UMP1","entrezGeneId":"51371"},{"alias":"CCDC72","entrezGeneId":"51372"},{"alias":"HSPC016","entrezGeneId":"51372"},{"alias":"HSPC011","entrezGeneId":"51373"},{"alias":"MRP-S17","entrezGeneId":"51373"},{"alias":"RPMS17","entrezGeneId":"51373"},{"alias":"S17mt","entrezGeneId":"51373"},{"alias":"APR--3","entrezGeneId":"51374"},{"alias":"APR-3","entrezGeneId":"51374"},{"alias":"APR3","entrezGeneId":"51374"},{"alias":"C2orf28","entrezGeneId":"51374"},{"alias":"HSPC013","entrezGeneId":"51374"},{"alias":"p18","entrezGeneId":"51374"},{"alias":"PRO240","entrezGeneId":"51374"},{"alias":"CGI-70","entrezGeneId":"51377"},{"alias":"INO80R","entrezGeneId":"51377"},{"alias":"UCH-L5","entrezGeneId":"51377"},{"alias":"UCH37","entrezGeneId":"51377"},{"alias":"ANG3","entrezGeneId":"51378"},{"alias":"ANG4","entrezGeneId":"51378"},{"alias":"CREME-9","entrezGeneId":"51379"},{"alias":"CREME9","entrezGeneId":"51379"},{"alias":"CRLM9","entrezGeneId":"51379"},{"alias":"CYTOR4","entrezGeneId":"51379"},{"alias":"FRWS","entrezGeneId":"51379"},{"alias":"p48.2","entrezGeneId":"51379"},{"alias":"CSD","entrezGeneId":"51380"},{"alias":"PCAP","entrezGeneId":"51380"},{"alias":"ATP6M","entrezGeneId":"51382"},{"alias":"VATD","entrezGeneId":"51382"},{"alias":"VMA8","entrezGeneId":"51382"},{"alias":"SZF1","entrezGeneId":"51385"},{"alias":"EIF3EIP","entrezGeneId":"51386"},{"alias":"EIF3S11","entrezGeneId":"51386"},{"alias":"EIF3S6IP","entrezGeneId":"51386"},{"alias":"HSPC021","entrezGeneId":"51386"},{"alias":"HSPC025","entrezGeneId":"51386"},{"alias":"MSTP005","entrezGeneId":"51386"},{"alias":"CGI-37","entrezGeneId":"51388"},{"alias":"HSPC031","entrezGeneId":"51388"},{"alias":"KD93","entrezGeneId":"51388"},{"alias":"CGI-24","entrezGeneId":"51389"},{"alias":"PTD013","entrezGeneId":"51389"},{"alias":"AIG-1","entrezGeneId":"51390"},{"alias":"dJ95L4.1","entrezGeneId":"51390"},{"alias":"VRL","entrezGeneId":"51393"},{"alias":"VRL-1","entrezGeneId":"51393"},{"alias":"VRL1","entrezGeneId":"51393"},{"alias":"PTD002","entrezGeneId":"51397"},{"alias":"C19orf56","entrezGeneId":"51398"},{"alias":"PTD008","entrezGeneId":"51398"},{"alias":"CGI-104","entrezGeneId":"51399"},{"alias":"HSPC172","entrezGeneId":"51399"},{"alias":"PTD009","entrezGeneId":"51399"},{"alias":"SBDN","entrezGeneId":"51399"},{"alias":"SYNBINDIN","entrezGeneId":"51399"},{"alias":"TRS23","entrezGeneId":"51399"},{"alias":"PME-1","entrezGeneId":"51400"},{"alias":"C6orf90","entrezGeneId":"51406"},{"alias":"dJ223E5.2","entrezGeneId":"51406"},{"alias":"PQBP3","entrezGeneId":"51406"},{"alias":"RARG-1","entrezGeneId":"51406"},{"alias":"HEMK","entrezGeneId":"51409"},{"alias":"MTQ1","entrezGeneId":"51409"},{"alias":"BRAP-1","entrezGeneId":"51411"},{"alias":"ACTL6","entrezGeneId":"51412"},{"alias":"arpNalpha","entrezGeneId":"51412"},{"alias":"BAF53B","entrezGeneId":"51412"},{"alias":"LCCP","entrezGeneId":"51421"},{"alias":"AAKG","entrezGeneId":"51422"},{"alias":"AAKG2","entrezGeneId":"51422"},{"alias":"CMH6","entrezGeneId":"51422"},{"alias":"H91620p","entrezGeneId":"51422"},{"alias":"WPWS","entrezGeneId":"51422"},{"alias":"DINB1","entrezGeneId":"51426"},{"alias":"DINP","entrezGeneId":"51426"},{"alias":"POLQ","entrezGeneId":"51426"},{"alias":"smap-7","entrezGeneId":"51427"},{"alias":"Y8","entrezGeneId":"51427"},{"alias":"ZFD25","entrezGeneId":"51427"},{"alias":"ZNF588","entrezGeneId":"51427"},{"alias":"ABS","entrezGeneId":"51428"},{"alias":"MPLPF","entrezGeneId":"51428"},{"alias":"SDP1","entrezGeneId":"51429"},{"alias":"SH3PX1","entrezGeneId":"51429"},{"alias":"SH3PXD3A","entrezGeneId":"51429"},{"alias":"WISP","entrezGeneId":"51429"},{"alias":"C1orf9","entrezGeneId":"51430"},{"alias":"CH1","entrezGeneId":"51430"},{"alias":"OPT","entrezGeneId":"51430"},{"alias":"SLP1","entrezGeneId":"51430"},{"alias":"APC5","entrezGeneId":"51433"},{"alias":"APC7","entrezGeneId":"51434"},{"alias":"APC7","entrezGeneId":"51435"},{"alias":"CSR","entrezGeneId":"51435"},{"alias":"CSR1","entrezGeneId":"51435"},{"alias":"MSLR1","entrezGeneId":"51435"},{"alias":"MSRL1","entrezGeneId":"51435"},{"alias":"CT10","entrezGeneId":"51438"},{"alias":"HCA587","entrezGeneId":"51438"},{"alias":"MAGEE1","entrezGeneId":"51438"},{"alias":"AHCP","entrezGeneId":"51439"},{"alias":"HLP4","entrezGeneId":"51440"},{"alias":"CAHL","entrezGeneId":"51441"},{"alias":"HGRG8","entrezGeneId":"51441"},{"alias":"NY-REN-2","entrezGeneId":"51441"},{"alias":"TDU","entrezGeneId":"51442"},{"alias":"VGL1","entrezGeneId":"51442"},{"alias":"hNARF","entrezGeneId":"51444"},{"alias":"HSD-4","entrezGeneId":"51444"},{"alias":"NARF","entrezGeneId":"51444"},{"alias":"STRIN","entrezGeneId":"51444"},{"alias":"IHPK2","entrezGeneId":"51447"},{"alias":"PIUS","entrezGeneId":"51447"},{"alias":"PCL1","entrezGeneId":"51449"},{"alias":"PMX2","entrezGeneId":"51450"},{"alias":"PRX2","entrezGeneId":"51450"},{"alias":"CGI-68","entrezGeneId":"51451"},{"alias":"LCMT","entrezGeneId":"51451"},{"alias":"PPMT1","entrezGeneId":"51451"},{"alias":"CED-6","entrezGeneId":"51454"},{"alias":"CED6","entrezGeneId":"51454"},{"alias":"GULP","entrezGeneId":"51454"},{"alias":"AIBP80","entrezGeneId":"51455"},{"alias":"REV1L","entrezGeneId":"51455"},{"alias":"C15orf6","entrezGeneId":"51458"},{"alias":"PDRC2","entrezGeneId":"51458"},{"alias":"RHGK","entrezGeneId":"51458"},{"alias":"SLC42A3","entrezGeneId":"51458"},{"alias":"hSFMBT","entrezGeneId":"51460"},{"alias":"RU1","entrezGeneId":"51460"},{"alias":"SFMBT","entrezGeneId":"51460"},{"alias":"GPHR","entrezGeneId":"51463"},{"alias":"GPR89","entrezGeneId":"51463"},{"alias":"GPR89C","entrezGeneId":"51463"},{"alias":"SH120","entrezGeneId":"51463"},{"alias":"UNQ192","entrezGeneId":"51463"},{"alias":"CGI-76","entrezGeneId":"51465"},{"alias":"HSPC153","entrezGeneId":"51465"},{"alias":"HSPC205","entrezGeneId":"51465"},{"alias":"HSU93243","entrezGeneId":"51465"},{"alias":"NCUBE-1","entrezGeneId":"51465"},{"alias":"NCUBE1","entrezGeneId":"51465"},{"alias":"UBC6","entrezGeneId":"51465"},{"alias":"UBC6E","entrezGeneId":"51465"},{"alias":"Ubc6p","entrezGeneId":"51465"},{"alias":"RNB6","entrezGeneId":"51466"},{"alias":"CML2","entrezGeneId":"51471"},{"alias":"Hcml2","entrezGeneId":"51471"},{"alias":"NAT8BP","entrezGeneId":"51471"},{"alias":"DCDC2A","entrezGeneId":"51473"},{"alias":"DFNB66","entrezGeneId":"51473"},{"alias":"NPHP19","entrezGeneId":"51473"},{"alias":"NSC","entrezGeneId":"51473"},{"alias":"RU2","entrezGeneId":"51473"},{"alias":"RU2S","entrezGeneId":"51473"},{"alias":"EPLIN","entrezGeneId":"51474"},{"alias":"SREBP3","entrezGeneId":"51474"},{"alias":"DFNB93","entrezGeneId":"51475"},{"alias":"INO1","entrezGeneId":"51477"},{"alias":"INOS","entrezGeneId":"51477"},{"alias":"IPS","entrezGeneId":"51477"},{"alias":"IPS 1","entrezGeneId":"51477"},{"alias":"IPS-1","entrezGeneId":"51477"},{"alias":"PRAP","entrezGeneId":"51478"},{"alias":"SDR37C1","entrezGeneId":"51478"},{"alias":"ANKHZN","entrezGeneId":"51479"},{"alias":"BTBD23","entrezGeneId":"51479"},{"alias":"ZFYVE14","entrezGeneId":"51479"},{"alias":"VCX-2r","entrezGeneId":"51480"},{"alias":"VCX2R","entrezGeneId":"51480"},{"alias":"VCXB","entrezGeneId":"51480"},{"alias":"VCX-8r","entrezGeneId":"51481"},{"alias":"VCX-A","entrezGeneId":"51481"},{"alias":"VCX3","entrezGeneId":"51481"},{"alias":"VCX8R","entrezGeneId":"51481"},{"alias":"VCXA","entrezGeneId":"51481"},{"alias":"C9orf114","entrezGeneId":"51490"},{"alias":"CENP-32","entrezGeneId":"51490"},{"alias":"CENP32","entrezGeneId":"51490"},{"alias":"HSPC109","entrezGeneId":"51490"},{"alias":"HSPC111","entrezGeneId":"51491"},{"alias":"HSPC185","entrezGeneId":"51491"},{"alias":"C22orf28","entrezGeneId":"51493"},{"alias":"DJ149A16.6","entrezGeneId":"51493"},{"alias":"FAAP","entrezGeneId":"51493"},{"alias":"HSPC117","entrezGeneId":"51493"},{"alias":"B-IND1","entrezGeneId":"51495"},{"alias":"BIND1","entrezGeneId":"51495"},{"alias":"HSPC121","entrezGeneId":"51495"},{"alias":"PTPLAD1","entrezGeneId":"51495"},{"alias":"HSPC058","entrezGeneId":"51496"},{"alias":"HSPC129","entrezGeneId":"51496"},{"alias":"HSPC130","entrezGeneId":"51497"},{"alias":"NELF-C","entrezGeneId":"51497"},{"alias":"NELF-D","entrezGeneId":"51497"},{"alias":"TH1","entrezGeneId":"51497"},{"alias":"TH1L","entrezGeneId":"51497"},{"alias":"HSPC132","entrezGeneId":"51499"},{"alias":"MDM35","entrezGeneId":"51499"},{"alias":"P53CSV","entrezGeneId":"51499"},{"alias":"WF-1","entrezGeneId":"51499"},{"alias":"C11orf73","entrezGeneId":"51501"},{"alias":"HLD13","entrezGeneId":"51501"},{"alias":"HSPC138","entrezGeneId":"51501"},{"alias":"HSPC179","entrezGeneId":"51501"},{"alias":"L7RN6","entrezGeneId":"51501"},{"alias":"OPI10","entrezGeneId":"51501"},{"alias":"AD002","entrezGeneId":"51503"},{"alias":"C11orf5","entrezGeneId":"51503"},{"alias":"Cwf15","entrezGeneId":"51503"},{"alias":"HSPC148","entrezGeneId":"51503"},{"alias":"ORF5","entrezGeneId":"51503"},{"alias":"HSPC152","entrezGeneId":"51504"},{"alias":"HSPC170","entrezGeneId":"51504"},{"alias":"hTrm112","entrezGeneId":"51504"},{"alias":"TRM112","entrezGeneId":"51504"},{"alias":"TRMT11-2","entrezGeneId":"51504"},{"alias":"HSPC155","entrezGeneId":"51506"},{"alias":"C20orf43","entrezGeneId":"51507"},{"alias":"CDAO5","entrezGeneId":"51507"},{"alias":"HSPC164","entrezGeneId":"51507"},{"alias":"RTFDC1","entrezGeneId":"51507"},{"alias":"SHUJUN-3","entrezGeneId":"51507"},{"alias":"C9orf83","entrezGeneId":"51510"},{"alias":"CGI-34","entrezGeneId":"51510"},{"alias":"HSPC177","entrezGeneId":"51510"},{"alias":"PNAS-2","entrezGeneId":"51510"},{"alias":"SNF7DC2","entrezGeneId":"51510"},{"alias":"Vps60","entrezGeneId":"51510"},{"alias":"B99","entrezGeneId":"51512"},{"alias":"TEL-2","entrezGeneId":"51513"},{"alias":"TEL2","entrezGeneId":"51513"},{"alias":"TELB","entrezGeneId":"51513"},{"alias":"CDT2","entrezGeneId":"51514"},{"alias":"DCAF2","entrezGeneId":"51514"},{"alias":"L2DTL","entrezGeneId":"51514"},{"alias":"RAMP","entrezGeneId":"51514"},{"alias":"AF3P21","entrezGeneId":"51517"},{"alias":"DIP","entrezGeneId":"51517"},{"alias":"DIP1","entrezGeneId":"51517"},{"alias":"ORF1","entrezGeneId":"51517"},{"alias":"SPIN90","entrezGeneId":"51517"},{"alias":"VIP54","entrezGeneId":"51517"},{"alias":"WASLBP","entrezGeneId":"51517"},{"alias":"WISH","entrezGeneId":"51517"},{"alias":"hr025Cl","entrezGeneId":"51520"},{"alias":"HSPC192","entrezGeneId":"51520"},{"alias":"ILFS1","entrezGeneId":"51520"},{"alias":"LARS1","entrezGeneId":"51520"},{"alias":"LEURS","entrezGeneId":"51520"},{"alias":"LEUS","entrezGeneId":"51520"},{"alias":"LFIS","entrezGeneId":"51520"},{"alias":"LRS","entrezGeneId":"51520"},{"alias":"PIG44","entrezGeneId":"51520"},{"alias":"RNTLS","entrezGeneId":"51520"},{"alias":"bA421M1.6","entrezGeneId":"51522"},{"alias":"C6orf53","entrezGeneId":"51522"},{"alias":"HSPC194","entrezGeneId":"51522"},{"alias":"MSTP073","entrezGeneId":"51522"},{"alias":"NET26","entrezGeneId":"51522"},{"alias":"CF5","entrezGeneId":"51523"},{"alias":"HSPC195","entrezGeneId":"51523"},{"alias":"RINF","entrezGeneId":"51523"},{"alias":"WID","entrezGeneId":"51523"},{"alias":"HSPC196","entrezGeneId":"51524"},{"alias":"C20orf111","entrezGeneId":"51526"},{"alias":"dJ1183I21.1","entrezGeneId":"51526"},{"alias":"HSPC207","entrezGeneId":"51526"},{"alias":"Osr1","entrezGeneId":"51526"},{"alias":"Perit1","entrezGeneId":"51526"},{"alias":"C14orf129","entrezGeneId":"51527"},{"alias":"HSPC210","entrezGeneId":"51527"},{"alias":"C14orf100","entrezGeneId":"51528"},{"alias":"C24orf100","entrezGeneId":"51528"},{"alias":"CDA06","entrezGeneId":"51528"},{"alias":"HSPC213","entrezGeneId":"51528"},{"alias":"HSPC327","entrezGeneId":"51528"},{"alias":"JAMP","entrezGeneId":"51528"},{"alias":"APC11","entrezGeneId":"51529"},{"alias":"Apc11p","entrezGeneId":"51529"},{"alias":"HSPC214","entrezGeneId":"51529"},{"alias":"HSPC216","entrezGeneId":"51530"},{"alias":"NIPA","entrezGeneId":"51530"},{"alias":"C9orf156","entrezGeneId":"51531"},{"alias":"HSPC219","entrezGeneId":"51531"},{"alias":"NAP1","entrezGeneId":"51531"},{"alias":"HSPC045","entrezGeneId":"51533"},{"alias":"HSPC226","entrezGeneId":"51533"},{"alias":"NYD-SP6","entrezGeneId":"51533"},{"alias":"C6orf55","entrezGeneId":"51534"},{"alias":"DRG-1","entrezGeneId":"51534"},{"alias":"DRG1","entrezGeneId":"51534"},{"alias":"HSPC228","entrezGeneId":"51534"},{"alias":"LIP5","entrezGeneId":"51534"},{"alias":"My012","entrezGeneId":"51534"},{"alias":"SBP1","entrezGeneId":"51534"},{"alias":"CR","entrezGeneId":"51535"},{"alias":"HSPC206","entrezGeneId":"51535"},{"alias":"HSPC232","entrezGeneId":"51535"},{"alias":"HSPC242","entrezGeneId":"51537"},{"alias":"MTP18","entrezGeneId":"51537"},{"alias":"HSPC251","entrezGeneId":"51538"},{"alias":"pNO40","entrezGeneId":"51538"},{"alias":"PS1D","entrezGeneId":"51538"},{"alias":"hSCL","entrezGeneId":"51540"},{"alias":"SCL","entrezGeneId":"51540"},{"alias":"HCC8","entrezGeneId":"51542"},{"alias":"hVps54L","entrezGeneId":"51542"},{"alias":"PPP1R164","entrezGeneId":"51542"},{"alias":"SLP-8p","entrezGeneId":"51542"},{"alias":"VPS54L","entrezGeneId":"51542"},{"alias":"WR","entrezGeneId":"51542"},{"alias":"HSPC189","entrezGeneId":"51545"},{"alias":"SIR2L7","entrezGeneId":"51547"},{"alias":"SIR2L6","entrezGeneId":"51548"},{"alias":"FBP","entrezGeneId":"51552"},{"alias":"RAB-14","entrezGeneId":"51552"},{"alias":"CC-CKR-11","entrezGeneId":"51554"},{"alias":"CCBP2","entrezGeneId":"51554"},{"alias":"CCR-11","entrezGeneId":"51554"},{"alias":"CCR10","entrezGeneId":"51554"},{"alias":"CCR11","entrezGeneId":"51554"},{"alias":"CCRL1","entrezGeneId":"51554"},{"alias":"CCX CKR","entrezGeneId":"51554"},{"alias":"CCX-CKR","entrezGeneId":"51554"},{"alias":"CKR-11","entrezGeneId":"51554"},{"alias":"PPR1","entrezGeneId":"51554"},{"alias":"VSHK1","entrezGeneId":"51554"},{"alias":"PEX5R","entrezGeneId":"51555"},{"alias":"PEX5RP","entrezGeneId":"51555"},{"alias":"PXR2","entrezGeneId":"51555"},{"alias":"PXR2B","entrezGeneId":"51555"},{"alias":"TRIP8b","entrezGeneId":"51555"},{"alias":"GLULD1","entrezGeneId":"51557"},{"alias":"LGS","entrezGeneId":"51557"},{"alias":"TU12B1-TY","entrezGeneId":"51559"},{"alias":"TU12B1TY","entrezGeneId":"51559"},{"alias":"IL-23","entrezGeneId":"51561"},{"alias":"IL-23A","entrezGeneId":"51561"},{"alias":"IL23P19","entrezGeneId":"51561"},{"alias":"P19","entrezGeneId":"51561"},{"alias":"SGRF","entrezGeneId":"51561"},{"alias":"HD7","entrezGeneId":"51564"},{"alias":"HD7A","entrezGeneId":"51564"},{"alias":"HDAC7A","entrezGeneId":"51564"},{"alias":"ALEX3","entrezGeneId":"51566"},{"alias":"dJ545K15.2","entrezGeneId":"51566"},{"alias":"GASP6","entrezGeneId":"51566"},{"alias":"AD022","entrezGeneId":"51567"},{"alias":"dJ30M3.3","entrezGeneId":"51567"},{"alias":"EAP2","entrezGeneId":"51567"},{"alias":"EAPII","entrezGeneId":"51567"},{"alias":"hTDP2","entrezGeneId":"51567"},{"alias":"TTRAP","entrezGeneId":"51567"},{"alias":"BM-002","entrezGeneId":"51569"},{"alias":"C13orf20","entrezGeneId":"51569"},{"alias":"HLD14","entrezGeneId":"51569"},{"alias":"BM-009","entrezGeneId":"51571"},{"alias":"L1","entrezGeneId":"51571"},{"alias":"363E6.2","entrezGeneId":"51573"},{"alias":"MIR16","entrezGeneId":"51573"},{"alias":"ALAZS","entrezGeneId":"51574"},{"alias":"HDCMA18P","entrezGeneId":"51574"},{"alias":"PIP7S","entrezGeneId":"51574"},{"alias":"ABTAP","entrezGeneId":"51575"},{"alias":"bA526K24.1","entrezGeneId":"51575"},{"alias":"C20orf6","entrezGeneId":"51575"},{"alias":"HDCMC28P","entrezGeneId":"51575"},{"alias":"AZI","entrezGeneId":"51582"},{"alias":"AZI1","entrezGeneId":"51582"},{"alias":"AZIA1","entrezGeneId":"51582"},{"alias":"OAZI","entrezGeneId":"51582"},{"alias":"OAZIN","entrezGeneId":"51582"},{"alias":"ODC1L","entrezGeneId":"51582"},{"alias":"ARC105","entrezGeneId":"51586"},{"alias":"CAG7A","entrezGeneId":"51586"},{"alias":"CTG7A","entrezGeneId":"51586"},{"alias":"PCQAP","entrezGeneId":"51586"},{"alias":"TIG-1","entrezGeneId":"51586"},{"alias":"TIG1","entrezGeneId":"51586"},{"alias":"TNRC7","entrezGeneId":"51586"},{"alias":"PIAS-gamma","entrezGeneId":"51588"},{"alias":"Piasg","entrezGeneId":"51588"},{"alias":"PIASY","entrezGeneId":"51588"},{"alias":"ZMIZ6","entrezGeneId":"51588"},{"alias":"ECTO","entrezGeneId":"51592"},{"alias":"PTC7","entrezGeneId":"51592"},{"alias":"RFG7","entrezGeneId":"51592"},{"alias":"TF1G","entrezGeneId":"51592"},{"alias":"TIF1G","entrezGeneId":"51592"},{"alias":"TIF1GAMMA","entrezGeneId":"51592"},{"alias":"TIFGAMMA","entrezGeneId":"51592"},{"alias":"ARS2","entrezGeneId":"51593"},{"alias":"ASR2","entrezGeneId":"51593"},{"alias":"serrate","entrezGeneId":"51593"},{"alias":"ILFS2","entrezGeneId":"51594"},{"alias":"NAG","entrezGeneId":"51594"},{"alias":"SOPH","entrezGeneId":"51594"},{"alias":"ACHAP","entrezGeneId":"51596"},{"alias":"C6orf82","entrezGeneId":"51596"},{"alias":"ILDR3","entrezGeneId":"51599"},{"alias":"LISCH7","entrezGeneId":"51599"},{"alias":"LIPT1D","entrezGeneId":"51601"},{"alias":"HSPC120","entrezGeneId":"51602"},{"alias":"NOP5","entrezGeneId":"51602"},{"alias":"NOP5/NOP58","entrezGeneId":"51602"},{"alias":"5630401D24Rik","entrezGeneId":"51603"},{"alias":"CGI-01","entrezGeneId":"51603"},{"alias":"feat","entrezGeneId":"51603"},{"alias":"KIAA0859","entrezGeneId":"51603"},{"alias":"CGI-06","entrezGeneId":"51604"},{"alias":"MCAHS3","entrezGeneId":"51604"},{"alias":"NDAP","entrezGeneId":"51604"},{"alias":"PNH2","entrezGeneId":"51604"},{"alias":"CGI-09","entrezGeneId":"51605"},{"alias":"GCD10","entrezGeneId":"51605"},{"alias":"Gcd10p","entrezGeneId":"51605"},{"alias":"CGI-11","entrezGeneId":"51606"},{"alias":"MSTP042","entrezGeneId":"51606"},{"alias":"NBP1","entrezGeneId":"51606"},{"alias":"SFD","entrezGeneId":"51606"},{"alias":"SFDalpha","entrezGeneId":"51606"},{"alias":"SFDbeta","entrezGeneId":"51606"},{"alias":"VMA13","entrezGeneId":"51606"},{"alias":"C7orf20","entrezGeneId":"51608"},{"alias":"CEE","entrezGeneId":"51608"},{"alias":"CGI-20","entrezGeneId":"51608"},{"alias":"TRC35","entrezGeneId":"51608"},{"alias":"AD-018","entrezGeneId":"51611"},{"alias":"CGI-30","entrezGeneId":"51611"},{"alias":"HSPC143","entrezGeneId":"51611"},{"alias":"NPD015","entrezGeneId":"51611"},{"alias":"C20orf47","entrezGeneId":"51614"},{"alias":"C2orf47","entrezGeneId":"51614"},{"alias":"CGI-54","entrezGeneId":"51614"},{"alias":"dJ477O4.2","entrezGeneId":"51614"},{"alias":"Erv46","entrezGeneId":"51614"},{"alias":"NY-BR-84","entrezGeneId":"51614"},{"alias":"PRO0989","entrezGeneId":"51614"},{"alias":"SDBCAG84","entrezGeneId":"51614"},{"alias":"DN-7","entrezGeneId":"51616"},{"alias":"DN7","entrezGeneId":"51616"},{"alias":"TAF9L","entrezGeneId":"51616"},{"alias":"TAFII31L","entrezGeneId":"51616"},{"alias":"TFIID-31","entrezGeneId":"51616"},{"alias":"CALY3","entrezGeneId":"51617"},{"alias":"HMP19","entrezGeneId":"51617"},{"alias":"HBUCE1","entrezGeneId":"51619"},{"alias":"BTEB3","entrezGeneId":"51621"},{"alias":"FKLF2","entrezGeneId":"51621"},{"alias":"NSLP1","entrezGeneId":"51621"},{"alias":"RFLAT-1","entrezGeneId":"51621"},{"alias":"RFLAT1","entrezGeneId":"51621"},{"alias":"C7orf28A","entrezGeneId":"51622"},{"alias":"CCZ1A","entrezGeneId":"51622"},{"alias":"CGI-43","entrezGeneId":"51622"},{"alias":"H_DJ1163J12.2","entrezGeneId":"51622"},{"alias":"CGI-60","entrezGeneId":"51626"},{"alias":"D2LIC","entrezGeneId":"51626"},{"alias":"LIC3","entrezGeneId":"51626"},{"alias":"CGI-69","entrezGeneId":"51629"},{"alias":"CGI69","entrezGeneId":"51629"},{"alias":"CGI-59","entrezGeneId":"51631"},{"alias":"CGI-74","entrezGeneId":"51631"},{"alias":"LUC7B2","entrezGeneId":"51631"},{"alias":"CGI-77","entrezGeneId":"51633"},{"alias":"DUBA-5","entrezGeneId":"51633"},{"alias":"DUBA5","entrezGeneId":"51633"},{"alias":"IDDFSDA","entrezGeneId":"51633"},{"alias":"CGI-79","entrezGeneId":"51634"},{"alias":"Snu17","entrezGeneId":"51634"},{"alias":"CGI-86","entrezGeneId":"51635"},{"alias":"retDSR4","entrezGeneId":"51635"},{"alias":"retSDR4","entrezGeneId":"51635"},{"alias":"SDR34C1","entrezGeneId":"51635"},{"alias":"C14orf166","entrezGeneId":"51637"},{"alias":"CGI-99","entrezGeneId":"51637"},{"alias":"CGI99","entrezGeneId":"51637"},{"alias":"CLE","entrezGeneId":"51637"},{"alias":"CLE7","entrezGeneId":"51637"},{"alias":"hCLE","entrezGeneId":"51637"},{"alias":"hCLE1","entrezGeneId":"51637"},{"alias":"LCRP369","entrezGeneId":"51637"},{"alias":"RLLM1","entrezGeneId":"51637"},{"alias":"CGI-110","entrezGeneId":"51639"},{"alias":"HSPC175","entrezGeneId":"51639"},{"alias":"Ht006","entrezGeneId":"51639"},{"alias":"P14","entrezGeneId":"51639"},{"alias":"SAP14","entrezGeneId":"51639"},{"alias":"SAP14a","entrezGeneId":"51639"},{"alias":"SF3B14","entrezGeneId":"51639"},{"alias":"SF3B14a","entrezGeneId":"51639"},{"alias":"CGI-118","entrezGeneId":"51642"},{"alias":"HSPC290","entrezGeneId":"51642"},{"alias":"L48MT","entrezGeneId":"51642"},{"alias":"MRP-L48","entrezGeneId":"51642"},{"alias":"CGI-119","entrezGeneId":"51643"},{"alias":"GAAP","entrezGeneId":"51643"},{"alias":"LFG4","entrezGeneId":"51643"},{"alias":"S1R","entrezGeneId":"51643"},{"alias":"ZPRO","entrezGeneId":"51643"},{"alias":"CGI-124","entrezGeneId":"51645"},{"alias":"CYPL1","entrezGeneId":"51645"},{"alias":"hCyPX","entrezGeneId":"51645"},{"alias":"PPIase","entrezGeneId":"51645"},{"alias":"CGI-127","entrezGeneId":"51646"},{"alias":"CGI-128","entrezGeneId":"51647"},{"alias":"CIA2B","entrezGeneId":"51647"},{"alias":"MIP18","entrezGeneId":"51647"},{"alias":"CGI-138","entrezGeneId":"51649"},{"alias":"HSPC329","entrezGeneId":"51649"},{"alias":"MRP-S23","entrezGeneId":"51649"},{"alias":"CGI-139","entrezGeneId":"51650"},{"alias":"MRP-S33","entrezGeneId":"51650"},{"alias":"PTD003","entrezGeneId":"51650"},{"alias":"S33mt","entrezGeneId":"51650"},{"alias":"BIT1","entrezGeneId":"51651"},{"alias":"CFAP37","entrezGeneId":"51651"},{"alias":"CGI-147","entrezGeneId":"51651"},{"alias":"IMNEPD","entrezGeneId":"51651"},{"alias":"PTH","entrezGeneId":"51651"},{"alias":"PTH 2","entrezGeneId":"51651"},{"alias":"PTH2","entrezGeneId":"51651"},{"alias":"CGI-149","entrezGeneId":"51652"},{"alias":"NEDF","entrezGeneId":"51652"},{"alias":"VPS24","entrezGeneId":"51652"},{"alias":"C20orf34","entrezGeneId":"51654"},{"alias":"C42","entrezGeneId":"51654"},{"alias":"CGI-05","entrezGeneId":"51654"},{"alias":"HSPC167","entrezGeneId":"51654"},{"alias":"AGS1","entrezGeneId":"51655"},{"alias":"DEXRAS1","entrezGeneId":"51655"},{"alias":"MGC:26290","entrezGeneId":"51655"},{"alias":"DUSP24","entrezGeneId":"51657"},{"alias":"MK-STYX","entrezGeneId":"51657"},{"alias":"MKSTYX","entrezGeneId":"51657"},{"alias":"HSPC037","entrezGeneId":"51659"},{"alias":"Pfs2","entrezGeneId":"51659"},{"alias":"PSF2","entrezGeneId":"51659"},{"alias":"BRP44L","entrezGeneId":"51660"},{"alias":"CGI-129","entrezGeneId":"51660"},{"alias":"dJ68L15.3","entrezGeneId":"51660"},{"alias":"MPYCD","entrezGeneId":"51660"},{"alias":"SLC54A1","entrezGeneId":"51660"},{"alias":"FKBP23","entrezGeneId":"51661"},{"alias":"PPIase","entrezGeneId":"51661"},{"alias":"SPG71","entrezGeneId":"51663"},{"alias":"ZFR1","entrezGeneId":"51663"},{"alias":"ASB-1","entrezGeneId":"51665"},{"alias":"ASB-4","entrezGeneId":"51666"},{"alias":"BS4","entrezGeneId":"51667"},{"alias":"NUB1L","entrezGeneId":"51667"},{"alias":"NYREN18","entrezGeneId":"51667"},{"alias":"C1orf41","entrezGeneId":"51668"},{"alias":"HSPCO34","entrezGeneId":"51668"},{"alias":"IFT25","entrezGeneId":"51668"},{"alias":"PP25","entrezGeneId":"51668"},{"alias":"FOAP-7","entrezGeneId":"51669"},{"alias":"HSPC035","entrezGeneId":"51669"},{"alias":"TMEM66","entrezGeneId":"51669"},{"alias":"XTP3","entrezGeneId":"51669"},{"alias":"CGI-38","entrezGeneId":"51673"},{"alias":"p20","entrezGeneId":"51673"},{"alias":"p25gamma","entrezGeneId":"51673"},{"alias":"TPPP/p20","entrezGeneId":"51673"},{"alias":"ASB-2","entrezGeneId":"51676"},{"alias":"p55T","entrezGeneId":"51678"},{"alias":"PALS2","entrezGeneId":"51678"},{"alias":"VAM-1","entrezGeneId":"51678"},{"alias":"VAM1","entrezGeneId":"51678"},{"alias":"JBTS32","entrezGeneId":"51684"},{"alias":"PRO1280","entrezGeneId":"51684"},{"alias":"SUFUH","entrezGeneId":"51684"},{"alias":"SUFUXL","entrezGeneId":"51684"},{"alias":"AZ3","entrezGeneId":"51686"},{"alias":"OAZ-t","entrezGeneId":"51686"},{"alias":"TISP15","entrezGeneId":"51686"},{"alias":"YNL147W","entrezGeneId":"51690"},{"alias":"NAA38","entrezGeneId":"51691"},{"alias":"CPSF-73","entrezGeneId":"51692"},{"alias":"CPSF73","entrezGeneId":"51692"},{"alias":"HSPC176","entrezGeneId":"51693"},{"alias":"dJ225E12.1","entrezGeneId":"51696"},{"alias":"HDC","entrezGeneId":"51696"},{"alias":"HDCL","entrezGeneId":"51696"},{"alias":"HHDC","entrezGeneId":"51696"},{"alias":"DC15","entrezGeneId":"51699"},{"alias":"DC7","entrezGeneId":"51699"},{"alias":"PEP11","entrezGeneId":"51699"},{"alias":"B5R.2","entrezGeneId":"51700"},{"alias":"PAD3","entrezGeneId":"51702"},{"alias":"PDI3","entrezGeneId":"51702"},{"alias":"UHS1","entrezGeneId":"51702"},{"alias":"ACS2","entrezGeneId":"51703"},{"alias":"ACS5","entrezGeneId":"51703"},{"alias":"FACL5","entrezGeneId":"51703"},{"alias":"RAIG-2","entrezGeneId":"51704"},{"alias":"RAIG2","entrezGeneId":"51704"},{"alias":"EMCN2","entrezGeneId":"51705"},{"alias":"MUC14","entrezGeneId":"51705"},{"alias":"B5R.1","entrezGeneId":"51706"},{"alias":"B5R1","entrezGeneId":"51706"},{"alias":"B5R2","entrezGeneId":"51706"},{"alias":"humb5R2","entrezGeneId":"51706"},{"alias":"NQO3A2","entrezGeneId":"51706"},{"alias":"GIOT-2","entrezGeneId":"51710"},{"alias":"KOX7","entrezGeneId":"51710"},{"alias":"ZNF","entrezGeneId":"51710"},{"alias":"ZNF504","entrezGeneId":"51710"},{"alias":"ZNF55","entrezGeneId":"51710"},{"alias":"ZNF58","entrezGeneId":"51710"},{"alias":"SELT","entrezGeneId":"51714"},{"alias":"HSPC137","entrezGeneId":"51715"},{"alias":"CES1A2","entrezGeneId":"51716"},{"alias":"CES1A3","entrezGeneId":"51716"},{"alias":"CES4","entrezGeneId":"51716"},{"alias":"CESR","entrezGeneId":"51716"},{"alias":"PCE-3","entrezGeneId":"51716"},{"alias":"CGI-66","entrezGeneId":"51719"},{"alias":"MO25","entrezGeneId":"51719"},{"alias":"RAP80","entrezGeneId":"51720"},{"alias":"X2HRIP110","entrezGeneId":"51720"},{"alias":"FBX40","entrezGeneId":"51725"},{"alias":"ABBP-2","entrezGeneId":"51726"},{"alias":"ABBP2","entrezGeneId":"51726"},{"alias":"Dj-9","entrezGeneId":"51726"},{"alias":"DJ9","entrezGeneId":"51726"},{"alias":"EDJ","entrezGeneId":"51726"},{"alias":"ERdj3","entrezGeneId":"51726"},{"alias":"ERj3","entrezGeneId":"51726"},{"alias":"ERj3p","entrezGeneId":"51726"},{"alias":"PRO1080","entrezGeneId":"51726"},{"alias":"UNQ537","entrezGeneId":"51726"},{"alias":"CK","entrezGeneId":"51727"},{"alias":"CMK","entrezGeneId":"51727"},{"alias":"CMPK","entrezGeneId":"51727"},{"alias":"UMK","entrezGeneId":"51727"},{"alias":"UMP-CMPK","entrezGeneId":"51727"},{"alias":"UMPK","entrezGeneId":"51727"},{"alias":"C11","entrezGeneId":"51728"},{"alias":"C11-RNP3","entrezGeneId":"51728"},{"alias":"My010","entrezGeneId":"51728"},{"alias":"RPC10","entrezGeneId":"51728"},{"alias":"RPC11","entrezGeneId":"51728"},{"alias":"RPC12.5","entrezGeneId":"51728"},{"alias":"NPWBP","entrezGeneId":"51729"},{"alias":"PPP1R165","entrezGeneId":"51729"},{"alias":"SIPP1","entrezGeneId":"51729"},{"alias":"WBP-11","entrezGeneId":"51729"},{"alias":"BUP1","entrezGeneId":"51733"},{"alias":"HSPC270","entrezGeneId":"51734"},{"alias":"SELR","entrezGeneId":"51734"},{"alias":"SELX","entrezGeneId":"51734"},{"alias":"SepR","entrezGeneId":"51734"},{"alias":"SEPX1","entrezGeneId":"51734"},{"alias":"KIA001LB","entrezGeneId":"51735"},{"alias":"PDZ-GEF2","entrezGeneId":"51735"},{"alias":"PDZGEF2","entrezGeneId":"51735"},{"alias":"RA-GEF-2","entrezGeneId":"51735"},{"alias":"RAGEF2","entrezGeneId":"51735"},{"alias":"MTLRP","entrezGeneId":"51738"},{"alias":"D16S432E","entrezGeneId":"51741"},{"alias":"EIEE28","entrezGeneId":"51741"},{"alias":"FOR","entrezGeneId":"51741"},{"alias":"FRA16D","entrezGeneId":"51741"},{"alias":"HHCMA56","entrezGeneId":"51741"},{"alias":"PRO0128","entrezGeneId":"51741"},{"alias":"SCAR12","entrezGeneId":"51741"},{"alias":"SDR41C1","entrezGeneId":"51741"},{"alias":"WOX1","entrezGeneId":"51741"},{"alias":"BCAA","entrezGeneId":"51742"},{"alias":"BRCAA1","entrezGeneId":"51742"},{"alias":"RBBP1L1","entrezGeneId":"51742"},{"alias":"RBP1L1","entrezGeneId":"51742"},{"alias":"SAP180","entrezGeneId":"51742"},{"alias":"2B4","entrezGeneId":"51744"},{"alias":"NAIL","entrezGeneId":"51744"},{"alias":"NKR2B4","entrezGeneId":"51744"},{"alias":"Nmrk","entrezGeneId":"51744"},{"alias":"SLAMF4","entrezGeneId":"51744"},{"alias":"CRA","entrezGeneId":"51747"},{"alias":"CREAP-1","entrezGeneId":"51747"},{"alias":"CROP","entrezGeneId":"51747"},{"alias":"hLuc7A","entrezGeneId":"51747"},{"alias":"LUC7A","entrezGeneId":"51747"},{"alias":"OA48-18","entrezGeneId":"51747"},{"alias":"C20orf41","entrezGeneId":"51750"},{"alias":"DKCA4","entrezGeneId":"51750"},{"alias":"DKCB5","entrezGeneId":"51750"},{"alias":"NHL","entrezGeneId":"51750"},{"alias":"PFBMFT3","entrezGeneId":"51750"},{"alias":"RTEL","entrezGeneId":"51750"},{"alias":"CLST11240","entrezGeneId":"51751"},{"alias":"CLST11240-15","entrezGeneId":"51751"},{"alias":"A-LAP","entrezGeneId":"51752"},{"alias":"ALAP","entrezGeneId":"51752"},{"alias":"APPILS","entrezGeneId":"51752"},{"alias":"ARTS-1","entrezGeneId":"51752"},{"alias":"ARTS1","entrezGeneId":"51752"},{"alias":"ERAAP","entrezGeneId":"51752"},{"alias":"ERAAP1","entrezGeneId":"51752"},{"alias":"PILS-AP","entrezGeneId":"51752"},{"alias":"PILSAP","entrezGeneId":"51752"},{"alias":"C9orf127","entrezGeneId":"51754"},{"alias":"NAG-5","entrezGeneId":"51754"},{"alias":"NAG5","entrezGeneId":"51754"},{"alias":"NGX6","entrezGeneId":"51754"},{"alias":"CRK7","entrezGeneId":"51755"},{"alias":"CRKR","entrezGeneId":"51755"},{"alias":"CRKRS","entrezGeneId":"51755"},{"alias":"bA409K20.3","entrezGeneId":"51759"},{"alias":"HCA59","entrezGeneId":"51759"},{"alias":"HSPC220","entrezGeneId":"51759"},{"alias":"sytXVII","entrezGeneId":"51760"},{"alias":"ATP","entrezGeneId":"51761"},{"alias":"ATPIB","entrezGeneId":"51761"},{"alias":"CAMRQ4","entrezGeneId":"51761"},{"alias":"IB","entrezGeneId":"51761"},{"alias":"ML-1","entrezGeneId":"51761"},{"alias":"MDCCAID","entrezGeneId":"51763"},{"alias":"PPS","entrezGeneId":"51763"},{"alias":"SKIP","entrezGeneId":"51763"},{"alias":"G(gamma)13","entrezGeneId":"51764"},{"alias":"h2-35","entrezGeneId":"51764"},{"alias":"MASK","entrezGeneId":"51765"},{"alias":"MST4","entrezGeneId":"51765"},{"alias":"HBXAP","entrezGeneId":"51773"},{"alias":"p325","entrezGeneId":"51773"},{"alias":"RSF-1","entrezGeneId":"51773"},{"alias":"XAP8","entrezGeneId":"51773"},{"alias":"AZK","entrezGeneId":"51776"},{"alias":"CNM6","entrezGeneId":"51776"},{"alias":"MLK7","entrezGeneId":"51776"},{"alias":"mlklak","entrezGeneId":"51776"},{"alias":"MLT","entrezGeneId":"51776"},{"alias":"MLTK","entrezGeneId":"51776"},{"alias":"MLTKalpha","entrezGeneId":"51776"},{"alias":"MLTKbeta","entrezGeneId":"51776"},{"alias":"MRK","entrezGeneId":"51776"},{"alias":"pk","entrezGeneId":"51776"},{"alias":"SFMMP","entrezGeneId":"51776"},{"alias":"ZAK","entrezGeneId":"51776"},{"alias":"C4orf5","entrezGeneId":"51778"},{"alias":"CMH16","entrezGeneId":"51778"},{"alias":"CS-1","entrezGeneId":"51778"},{"alias":"FATZ-2","entrezGeneId":"51778"},{"alias":"5qNCA","entrezGeneId":"51780"},{"alias":"C5orf7","entrezGeneId":"51780"},{"alias":"JMJD1B","entrezGeneId":"51780"},{"alias":"NET22","entrezGeneId":"51780"},{"alias":"ACCN5","entrezGeneId":"51802"},{"alias":"HINAC","entrezGeneId":"51802"},{"alias":"INAC","entrezGeneId":"51802"},{"alias":"AREC3","entrezGeneId":"51804"},{"alias":"bA9819.1","entrezGeneId":"51805"},{"alias":"DHHBMT","entrezGeneId":"51805"},{"alias":"DHHBMTASE","entrezGeneId":"51805"},{"alias":"UG0215E05","entrezGeneId":"51805"},{"alias":"CLSP","entrezGeneId":"51806"},{"alias":"CDCBM8","entrezGeneId":"51807"},{"alias":"TUBAL2","entrezGeneId":"51807"},{"alias":"RNUXA","entrezGeneId":"51808"},{"alias":"GALNAC-T7","entrezGeneId":"51809"},{"alias":"GalNAcT7","entrezGeneId":"51809"},{"alias":"ADGF","entrezGeneId":"51816"},{"alias":"CECR1","entrezGeneId":"51816"},{"alias":"IDGFL","entrezGeneId":"51816"},{"alias":"PAN","entrezGeneId":"51816"},{"alias":"SNEDS","entrezGeneId":"51816"},{"alias":"BCL11A-L","entrezGeneId":"53335"},{"alias":"BCL11a-M","entrezGeneId":"53335"},{"alias":"BCL11A-S","entrezGeneId":"53335"},{"alias":"BCL11A-XL","entrezGeneId":"53335"},{"alias":"CTIP1","entrezGeneId":"53335"},{"alias":"DILOS","entrezGeneId":"53335"},{"alias":"EVI9","entrezGeneId":"53335"},{"alias":"HBFQTL5","entrezGeneId":"53335"},{"alias":"ZNF856","entrezGeneId":"53335"},{"alias":"CT77","entrezGeneId":"53336"},{"alias":"C15orf1","entrezGeneId":"53339"},{"alias":"NS5ATP8","entrezGeneId":"53339"},{"alias":"CT22","entrezGeneId":"53340"},{"alias":"SP17","entrezGeneId":"53340"},{"alias":"SP17-1","entrezGeneId":"53340"},{"alias":"IL-17D","entrezGeneId":"53342"},{"alias":"NUDT10","entrezGeneId":"53343"},{"alias":"BRX","entrezGeneId":"53344"},{"alias":"CLIP4","entrezGeneId":"53347"},{"alias":"STS-2","entrezGeneId":"53347"},{"alias":"TULA","entrezGeneId":"53347"},{"alias":"TULA-1","entrezGeneId":"53347"},{"alias":"DFCP1","entrezGeneId":"53349"},{"alias":"PPP1R172","entrezGeneId":"53349"},{"alias":"SR3","entrezGeneId":"53349"},{"alias":"TAFF1","entrezGeneId":"53349"},{"alias":"ZNFN2A1","entrezGeneId":"53349"},{"alias":"LRP-1B","entrezGeneId":"53353"},{"alias":"LRP-DIT","entrezGeneId":"53353"},{"alias":"LRPDIT","entrezGeneId":"53353"},{"alias":"PANK","entrezGeneId":"53354"},{"alias":"N-Shc","entrezGeneId":"53358"},{"alias":"NSHC","entrezGeneId":"53358"},{"alias":"RAI","entrezGeneId":"53358"},{"alias":"SHCC","entrezGeneId":"53358"},{"alias":"HLN2","entrezGeneId":"53369"},{"alias":"TPC1","entrezGeneId":"53373"},{"alias":"C17orf23","entrezGeneId":"53383"},{"alias":"CCDC90AP1","entrezGeneId":"53383"},{"alias":"C17orf6","entrezGeneId":"53400"},{"alias":"DFNB102","entrezGeneId":"53405"},{"alias":"DFNB103","entrezGeneId":"53405"},{"alias":"MST130","entrezGeneId":"53405"},{"alias":"MSTP130","entrezGeneId":"53405"},{"alias":"Ufe1","entrezGeneId":"53407"},{"alias":"ATP5KP3","entrezGeneId":"53409"},{"alias":"ATP5LP3","entrezGeneId":"53409"},{"alias":"ATPE5KP3","entrezGeneId":"53409"},{"alias":"ATP5KP2","entrezGeneId":"53410"},{"alias":"ATP5LP2","entrezGeneId":"53410"},{"alias":"ATP5KP1","entrezGeneId":"53411"},{"alias":"ATP5LP1","entrezGeneId":"53411"},{"alias":"ATPE5KP1","entrezGeneId":"53411"},{"alias":"ADAM 22","entrezGeneId":"53616"},{"alias":"MDC2","entrezGeneId":"53616"},{"alias":"BCDO","entrezGeneId":"53630"},{"alias":"BCDO1","entrezGeneId":"53630"},{"alias":"BCMO","entrezGeneId":"53630"},{"alias":"BCMO1","entrezGeneId":"53630"},{"alias":"BCO","entrezGeneId":"53630"},{"alias":"AMPKG3","entrezGeneId":"53632"},{"alias":"ACID2","entrezGeneId":"53635"},{"alias":"PTOV-1","entrezGeneId":"53635"},{"alias":"Edg-8","entrezGeneId":"53637"},{"alias":"EDG8","entrezGeneId":"53637"},{"alias":"S1P5","entrezGeneId":"53637"},{"alias":"SPPR-1","entrezGeneId":"53637"},{"alias":"SPPR-2","entrezGeneId":"53637"},{"alias":"DSCR6","entrezGeneId":"53820"},{"alias":"DYSAD","entrezGeneId":"53827"},{"alias":"HSPC113","entrezGeneId":"53827"},{"alias":"IWU1","entrezGeneId":"53827"},{"alias":"KCT1","entrezGeneId":"53827"},{"alias":"OIT2","entrezGeneId":"53827"},{"alias":"PRO6241","entrezGeneId":"53827"},{"alias":"RIC","entrezGeneId":"53827"},{"alias":"CHIF","entrezGeneId":"53828"},{"alias":"FKSG77","entrezGeneId":"53829"},{"alias":"GPCR1","entrezGeneId":"53829"},{"alias":"GPR86","entrezGeneId":"53829"},{"alias":"GPR94","entrezGeneId":"53829"},{"alias":"P2Y13","entrezGeneId":"53829"},{"alias":"SP174","entrezGeneId":"53829"},{"alias":"EX33","entrezGeneId":"53831"},{"alias":"GPCR4","entrezGeneId":"53831"},{"alias":"CRF2-8","entrezGeneId":"53832"},{"alias":"IL-20R-alpha","entrezGeneId":"53832"},{"alias":"IL-20R1","entrezGeneId":"53832"},{"alias":"IL-20RA","entrezGeneId":"53832"},{"alias":"DIRS1","entrezGeneId":"53833"},{"alias":"FNDC6","entrezGeneId":"53833"},{"alias":"IL-20R2","entrezGeneId":"53833"},{"alias":"FGFR5","entrezGeneId":"53834"},{"alias":"FHFR","entrezGeneId":"53834"},{"alias":"FKSG78","entrezGeneId":"53836"},{"alias":"GPR95","entrezGeneId":"53836"},{"alias":"KPG_002","entrezGeneId":"53836"},{"alias":"DM4E3","entrezGeneId":"53838"},{"alias":"IFP1","entrezGeneId":"53840"},{"alias":"RNF21","entrezGeneId":"53840"},{"alias":"MLPCDH","entrezGeneId":"53841"},{"alias":"MU-PCDH","entrezGeneId":"53841"},{"alias":"MUCDHL","entrezGeneId":"53841"},{"alias":"MUPCDH","entrezGeneId":"53841"},{"alias":"CLDN21","entrezGeneId":"53842"},{"alias":"CIT1","entrezGeneId":"53844"},{"alias":"COPG2AS","entrezGeneId":"53844"},{"alias":"DKFZP761N09121","entrezGeneId":"53844"},{"alias":"NCRNA00170","entrezGeneId":"53844"},{"alias":"DFNB30","entrezGeneId":"53904"},{"alias":"LNOX1","entrezGeneId":"53905"},{"alias":"NOXEF1","entrezGeneId":"53905"},{"alias":"THOX1","entrezGeneId":"53905"},{"alias":"CGI-17","entrezGeneId":"53918"},{"alias":"PRO1770","entrezGeneId":"53918"},{"alias":"OATP-F","entrezGeneId":"53919"},{"alias":"OATP1","entrezGeneId":"53919"},{"alias":"OATP14","entrezGeneId":"53919"},{"alias":"OATP1C1","entrezGeneId":"53919"},{"alias":"OATPF","entrezGeneId":"53919"},{"alias":"OATPRP5","entrezGeneId":"53919"},{"alias":"SLC21A14","entrezGeneId":"53919"},{"alias":"CYPJ","entrezGeneId":"53938"},{"alias":"CT38","entrezGeneId":"53940"},{"alias":"HNB-2s","entrezGeneId":"53942"},{"alias":"NB-2","entrezGeneId":"53942"},{"alias":"CK1gamma1","entrezGeneId":"53944"},{"alias":"A14GALT","entrezGeneId":"53947"},{"alias":"A4GALT1","entrezGeneId":"53947"},{"alias":"Gb3S","entrezGeneId":"53947"},{"alias":"P(k)","entrezGeneId":"53947"},{"alias":"P1","entrezGeneId":"53947"},{"alias":"P1PK","entrezGeneId":"53947"},{"alias":"PK","entrezGeneId":"53947"},{"alias":"CPSF100","entrezGeneId":"53981"},{"alias":"ZNF299","entrezGeneId":"54012"},{"alias":"ZNF299P1","entrezGeneId":"54012"},{"alias":"C21orf107","entrezGeneId":"54014"},{"alias":"DCAF19","entrezGeneId":"54014"},{"alias":"N143","entrezGeneId":"54014"},{"alias":"WDR9","entrezGeneId":"54014"},{"alias":"WRD9","entrezGeneId":"54014"},{"alias":"VDAC2P","entrezGeneId":"54015"},{"alias":"SLC6A6P","entrezGeneId":"54019"},{"alias":"G3PP","entrezGeneId":"54020"},{"alias":"SFRS9P1","entrezGeneId":"54021"},{"alias":"RPS5L","entrezGeneId":"54022"},{"alias":"RPS5_3_1726","entrezGeneId":"54022"},{"alias":"RPS26P","entrezGeneId":"54024"},{"alias":"RPS20P","entrezGeneId":"54025"},{"alias":"RPS20_16_1728","entrezGeneId":"54025"},{"alias":"RPL31P","entrezGeneId":"54027"},{"alias":"RPL31_35_1734","entrezGeneId":"54027"},{"alias":"RPL23_4_1724","entrezGeneId":"54028"},{"alias":"RPL23A_42_1735","entrezGeneId":"54029"},{"alias":"FAM80B2","entrezGeneId":"54031"},{"alias":"FAM80C","entrezGeneId":"54031"},{"alias":"RIMKLB2","entrezGeneId":"54031"},{"alias":"RIMKLP","entrezGeneId":"54031"},{"alias":"RAD23BLP","entrezGeneId":"54034"},{"alias":"PSMD15","entrezGeneId":"54035"},{"alias":"PSMD4P","entrezGeneId":"54035"},{"alias":"POLR2CP","entrezGeneId":"54038"},{"alias":"ALPHA-CP3","entrezGeneId":"54039"},{"alias":"PCBP3-OT1","entrezGeneId":"54039"},{"alias":"PCBP3OT","entrezGeneId":"54039"},{"alias":"ORLP2","entrezGeneId":"54041"},{"alias":"MYL6P","entrezGeneId":"54043"},{"alias":"IMMTP","entrezGeneId":"54045"},{"alias":"HSPD1-22P","entrezGeneId":"54047"},{"alias":"HSPDP7","entrezGeneId":"54047"},{"alias":"HMG14P","entrezGeneId":"54048"},{"alias":"HMGN1L2","entrezGeneId":"54048"},{"alias":"GT334","entrezGeneId":"54049"},{"alias":"H2AFZP","entrezGeneId":"54049"},{"alias":"GAPDP14","entrezGeneId":"54050"},{"alias":"FDPSP","entrezGeneId":"54051"},{"alias":"EIF4A1P","entrezGeneId":"54052"},{"alias":"EIF3FP","entrezGeneId":"54053"},{"alias":"EIF3S5P","entrezGeneId":"54053"},{"alias":"EEF1A1P","entrezGeneId":"54054"},{"alias":"4F-se4[6:7:8]","entrezGeneId":"54055"},{"alias":"C21orf15","entrezGeneId":"54055"},{"alias":"CYP4F-se4[6:7:8]","entrezGeneId":"54055"},{"alias":"CYP4F3LP","entrezGeneId":"54055"},{"alias":"C21orf57","entrezGeneId":"54059"},{"alias":"C21orf52","entrezGeneId":"54064"},{"alias":"NCRNA00160","entrezGeneId":"54064"},{"alias":"C21orf51","entrezGeneId":"54065"},{"alias":"FAM165B","entrezGeneId":"54065"},{"alias":"SMIM11","entrezGeneId":"54065"},{"alias":"SMIM11B","entrezGeneId":"54065"},{"alias":"C21orf49","entrezGeneId":"54067"},{"alias":"B28","entrezGeneId":"54069"},{"alias":"C21orf45","entrezGeneId":"54069"},{"alias":"C21orf46","entrezGeneId":"54069"},{"alias":"FASP1","entrezGeneId":"54069"},{"alias":"hMis18alpha","entrezGeneId":"54069"},{"alias":"MIS18alpha","entrezGeneId":"54069"},{"alias":"C21orf42","entrezGeneId":"54072"},{"alias":"NCRNA00158","entrezGeneId":"54072"},{"alias":"C21orf39","entrezGeneId":"54075"},{"alias":"NCRNA00157","entrezGeneId":"54075"},{"alias":"C21orf31","entrezGeneId":"54082"},{"alias":"C21orf29","entrezGeneId":"54084"},{"alias":"DFNB98","entrezGeneId":"54084"},{"alias":"TSP-EAR","entrezGeneId":"54084"},{"alias":"C21orf23","entrezGeneId":"54088"},{"alias":"NCRNA00113","entrezGeneId":"54088"},{"alias":"C21orf22","entrezGeneId":"54089"},{"alias":"NCRNA00112","entrezGeneId":"54089"},{"alias":"C21orf21","entrezGeneId":"54090"},{"alias":"NCRNA00111","entrezGeneId":"54090"},{"alias":"C21orf18","entrezGeneId":"54093"},{"alias":"C21orf27","entrezGeneId":"54093"},{"alias":"2-21","entrezGeneId":"54097"},{"alias":"C21orf11","entrezGeneId":"54097"},{"alias":"C21orf76","entrezGeneId":"54097"},{"alias":"ORF9","entrezGeneId":"54097"},{"alias":"PANDER","entrezGeneId":"54097"},{"alias":"PRED44","entrezGeneId":"54097"},{"alias":"C1QBPP","entrezGeneId":"54098"},{"alias":"BTRC2P","entrezGeneId":"54099"},{"alias":"FBXW1BP","entrezGeneId":"54099"},{"alias":"FBXW1BP1","entrezGeneId":"54099"},{"alias":"ANKK2","entrezGeneId":"54101"},{"alias":"ANKRD3","entrezGeneId":"54101"},{"alias":"DIK","entrezGeneId":"54101"},{"alias":"NKRD3","entrezGeneId":"54101"},{"alias":"PKK","entrezGeneId":"54101"},{"alias":"PPS2","entrezGeneId":"54101"},{"alias":"RIP4","entrezGeneId":"54101"},{"alias":"CLIC1L","entrezGeneId":"54102"},{"alias":"PION","entrezGeneId":"54103"},{"alias":"CD289","entrezGeneId":"54106"},{"alias":"CHARAC17","entrezGeneId":"54107"},{"alias":"CHRAC17","entrezGeneId":"54107"},{"alias":"p17","entrezGeneId":"54107"},{"alias":"YBL1","entrezGeneId":"54107"},{"alias":"CHARC1","entrezGeneId":"54108"},{"alias":"CHARC15","entrezGeneId":"54108"},{"alias":"CHRAC-1","entrezGeneId":"54108"},{"alias":"CHRAC-15","entrezGeneId":"54108"},{"alias":"CHRAC15","entrezGeneId":"54108"},{"alias":"YCL1","entrezGeneId":"54108"},{"alias":"COCPMR","entrezGeneId":"54112"},{"alias":"STRG","entrezGeneId":"54112"},{"alias":"PTOSX","entrezGeneId":"54115"},{"alias":"C21orf74","entrezGeneId":"54143"},{"alias":"NCRNA00308","entrezGeneId":"54143"},{"alias":"PRED16","entrezGeneId":"54143"},{"alias":"H2B/s","entrezGeneId":"54145"},{"alias":"C21orf8","entrezGeneId":"54147"},{"alias":"NCRNA00097","entrezGeneId":"54147"},{"alias":"C21orf92","entrezGeneId":"54148"},{"alias":"L39mt","entrezGeneId":"54148"},{"alias":"MRP-L5","entrezGeneId":"54148"},{"alias":"MRPL5","entrezGeneId":"54148"},{"alias":"MSTP003","entrezGeneId":"54148"},{"alias":"PRED22","entrezGeneId":"54148"},{"alias":"PRED66","entrezGeneId":"54148"},{"alias":"RPML5","entrezGeneId":"54148"},{"alias":"C21orf14","entrezGeneId":"54149"},{"alias":"C21orf38","entrezGeneId":"54149"},{"alias":"CSSG1","entrezGeneId":"54149"},{"alias":"EURL","entrezGeneId":"54149"},{"alias":"YG81","entrezGeneId":"54149"},{"alias":"DCNL1","entrezGeneId":"54165"},{"alias":"DCUN1L1","entrezGeneId":"54165"},{"alias":"RP42","entrezGeneId":"54165"},{"alias":"SCCRO","entrezGeneId":"54165"},{"alias":"SCRO","entrezGeneId":"54165"},{"alias":"Tes3","entrezGeneId":"54165"},{"alias":"HEL-S-100","entrezGeneId":"54187"},{"alias":"SAS","entrezGeneId":"54187"},{"alias":"SEMDCG","entrezGeneId":"54187"},{"alias":"SEMDG","entrezGeneId":"54187"},{"alias":"CYC","entrezGeneId":"54205"},{"alias":"HCS","entrezGeneId":"54205"},{"alias":"THC4","entrezGeneId":"54205"},{"alias":"GENE-33","entrezGeneId":"54206"},{"alias":"MIG-6","entrezGeneId":"54206"},{"alias":"MIG6","entrezGeneId":"54206"},{"alias":"RALT","entrezGeneId":"54206"},{"alias":"K2p10.1","entrezGeneId":"54207"},{"alias":"PPP1R97","entrezGeneId":"54207"},{"alias":"TREK-2","entrezGeneId":"54207"},{"alias":"TREK2","entrezGeneId":"54207"},{"alias":"TREM-2","entrezGeneId":"54209"},{"alias":"Trem2a","entrezGeneId":"54209"},{"alias":"Trem2b","entrezGeneId":"54209"},{"alias":"Trem2c","entrezGeneId":"54209"},{"alias":"CD354","entrezGeneId":"54210"},{"alias":"TREM-1","entrezGeneId":"54210"},{"alias":"G1SYN","entrezGeneId":"54212"},{"alias":"SYN4","entrezGeneId":"54212"},{"alias":"G2SYN","entrezGeneId":"54221"},{"alias":"SYN5","entrezGeneId":"54221"},{"alias":"SREB3","entrezGeneId":"54328"},{"alias":"SREB","entrezGeneId":"54329"},{"alias":"SREB2","entrezGeneId":"54329"},{"alias":"CMT4","entrezGeneId":"54332"},{"alias":"CMT4A","entrezGeneId":"54332"},{"alias":"CMTRIA","entrezGeneId":"54332"},{"alias":"CDG1O","entrezGeneId":"54344"},{"alias":"HLTRS","entrezGeneId":"54345"},{"alias":"HLTS","entrezGeneId":"54345"},{"alias":"dJ366N23.1","entrezGeneId":"54346"},{"alias":"dJ366N23.2","entrezGeneId":"54346"},{"alias":"Unc-93A","entrezGeneId":"54346"},{"alias":"C17","entrezGeneId":"54360"},{"alias":"C4orf4","entrezGeneId":"54360"},{"alias":"SERKAL","entrezGeneId":"54361"},{"alias":"WNT-4","entrezGeneId":"54361"},{"alias":"GOX","entrezGeneId":"54363"},{"alias":"GOX1","entrezGeneId":"54363"},{"alias":"HAOX1","entrezGeneId":"54363"},{"alias":"DRIP5","entrezGeneId":"54386"},{"alias":"RAP1","entrezGeneId":"54386"},{"alias":"ATA2","entrezGeneId":"54407"},{"alias":"PRO1068","entrezGeneId":"54407"},{"alias":"SAT2","entrezGeneId":"54407"},{"alias":"SNAT2","entrezGeneId":"54407"},{"alias":"HNL3","entrezGeneId":"54413"},{"alias":"AIS6","entrezGeneId":"54414"},{"alias":"CSE-C","entrezGeneId":"54414"},{"alias":"CSEC","entrezGeneId":"54414"},{"alias":"LSE","entrezGeneId":"54414"},{"alias":"YSG2","entrezGeneId":"54414"},{"alias":"T2R5","entrezGeneId":"54429"},{"alias":"ERdj5","entrezGeneId":"54431"},{"alias":"JPDI","entrezGeneId":"54431"},{"alias":"MTHr","entrezGeneId":"54431"},{"alias":"PDIA19","entrezGeneId":"54431"},{"alias":"DJ167A19.1","entrezGeneId":"54432"},{"alias":"FinGER1","entrezGeneId":"54432"},{"alias":"NOLA1","entrezGeneId":"54433"},{"alias":"SSH1L","entrezGeneId":"54434"},{"alias":"HCG4P10","entrezGeneId":"54435"},{"alias":"HCGIV-10","entrezGeneId":"54435"},{"alias":"HCGIV.9","entrezGeneId":"54435"},{"alias":"SEMAG","entrezGeneId":"54437"},{"alias":"SemG","entrezGeneId":"54437"},{"alias":"ADG-90","entrezGeneId":"54438"},{"alias":"C6orf114","entrezGeneId":"54438"},{"alias":"ARRS1","entrezGeneId":"54439"},{"alias":"Psc1","entrezGeneId":"54439"},{"alias":"ZC3H18","entrezGeneId":"54439"},{"alias":"ZC3H20","entrezGeneId":"54439"},{"alias":"753P9","entrezGeneId":"54440"},{"alias":"CXorf9","entrezGeneId":"54440"},{"alias":"HACS2","entrezGeneId":"54440"},{"alias":"SH3D6C","entrezGeneId":"54440"},{"alias":"SLY","entrezGeneId":"54440"},{"alias":"STAG3L1P","entrezGeneId":"54441"},{"alias":"STAG3L2","entrezGeneId":"54441"},{"alias":"STAG3L3","entrezGeneId":"54441"},{"alias":"FSGS8","entrezGeneId":"54443"},{"alias":"scra","entrezGeneId":"54443"},{"alias":"Scraps","entrezGeneId":"54443"},{"alias":"MACS","entrezGeneId":"54453"},{"alias":"RASSF4","entrezGeneId":"54453"},{"alias":"Fbx42","entrezGeneId":"54455"},{"alias":"JFK","entrezGeneId":"54455"},{"alias":"CHAMP","entrezGeneId":"54456"},{"alias":"DJ402G11.8","entrezGeneId":"54456"},{"alias":"CT40","entrezGeneId":"54457"},{"alias":"TAF2Q","entrezGeneId":"54457"},{"alias":"TXR1","entrezGeneId":"54458"},{"alias":"MDS016","entrezGeneId":"54460"},{"alias":"MRP-S21","entrezGeneId":"54460"},{"alias":"RPMS21","entrezGeneId":"54460"},{"alias":"Fbw5","entrezGeneId":"54461"},{"alias":"bA486O22.1","entrezGeneId":"54462"},{"alias":"FAM190B","entrezGeneId":"54462"},{"alias":"Gcap14","entrezGeneId":"54462"},{"alias":"KIAA1128","entrezGeneId":"54462"},{"alias":"FAM134B","entrezGeneId":"54463"},{"alias":"JK-1","entrezGeneId":"54463"},{"alias":"JK1","entrezGeneId":"54463"},{"alias":"SEP1","entrezGeneId":"54464"},{"alias":"ETAA16","entrezGeneId":"54465"},{"alias":"dJ323P24.1","entrezGeneId":"54466"},{"alias":"DXF34","entrezGeneId":"54466"},{"alias":"SPIN2","entrezGeneId":"54466"},{"alias":"TDRD25","entrezGeneId":"54466"},{"alias":"MIO","entrezGeneId":"54468"},{"alias":"Sea4","entrezGeneId":"54468"},{"alias":"Yulink","entrezGeneId":"54468"},{"alias":"AWP1","entrezGeneId":"54469"},{"alias":"ZA20D3","entrezGeneId":"54469"},{"alias":"ZFAND5B","entrezGeneId":"54469"},{"alias":"GASP10","entrezGeneId":"54470"},{"alias":"dJ1104E15.3","entrezGeneId":"54471"},{"alias":"HSU79252","entrezGeneId":"54471"},{"alias":"MID51","entrezGeneId":"54471"},{"alias":"SMCR7L","entrezGeneId":"54471"},{"alias":"IL-1RAcPIP","entrezGeneId":"54472"},{"alias":"CD20","entrezGeneId":"54474"},{"alias":"CK-20","entrezGeneId":"54474"},{"alias":"CK20","entrezGeneId":"54474"},{"alias":"K20","entrezGeneId":"54474"},{"alias":"KRT21","entrezGeneId":"54474"},{"alias":"NLE","entrezGeneId":"54475"},{"alias":"CAHH","entrezGeneId":"54476"},{"alias":"TRIAD3","entrezGeneId":"54476"},{"alias":"U7I1","entrezGeneId":"54476"},{"alias":"UBCE7IP1","entrezGeneId":"54476"},{"alias":"ZIN","entrezGeneId":"54476"},{"alias":"PEPP-2","entrezGeneId":"54477"},{"alias":"PEPP2","entrezGeneId":"54477"},{"alias":"CATS","entrezGeneId":"54478"},{"alias":"FAM64A","entrezGeneId":"54478"},{"alias":"RCS1","entrezGeneId":"54478"},{"alias":"chPF-2","entrezGeneId":"54480"},{"alias":"ChSy-3","entrezGeneId":"54480"},{"alias":"CSGLCA-T","entrezGeneId":"54480"},{"alias":"CSGlcAT","entrezGeneId":"54480"},{"alias":"CCDC76","entrezGeneId":"54482"},{"alias":"C22orf12","entrezGeneId":"54487"},{"alias":"DGCRK6","entrezGeneId":"54487"},{"alias":"Gy1","entrezGeneId":"54487"},{"alias":"pasha","entrezGeneId":"54487"},{"alias":"FAM105A","entrezGeneId":"54491"},{"alias":"NET20","entrezGeneId":"54491"},{"alias":"hNeur2","entrezGeneId":"54492"},{"alias":"neur2","entrezGeneId":"54492"},{"alias":"NEURL3","entrezGeneId":"54492"},{"alias":"RNF67B","entrezGeneId":"54492"},{"alias":"URLC7","entrezGeneId":"54494"},{"alias":"PDIA13","entrezGeneId":"54495"},{"alias":"TXNDC10","entrezGeneId":"54495"},{"alias":"SBIDDS","entrezGeneId":"54496"},{"alias":"C20orf16","entrezGeneId":"54498"},{"alias":"PAO","entrezGeneId":"54498"},{"alias":"PAO-1","entrezGeneId":"54498"},{"alias":"PAO1","entrezGeneId":"54498"},{"alias":"PAOH","entrezGeneId":"54498"},{"alias":"PAOH1","entrezGeneId":"54498"},{"alias":"SMO","entrezGeneId":"54498"},{"alias":"HP10122","entrezGeneId":"54499"},{"alias":"PCIA3","entrezGeneId":"54499"},{"alias":"PNAS-136","entrezGeneId":"54499"},{"alias":"TMCC4","entrezGeneId":"54499"},{"alias":"CLF","entrezGeneId":"54501"},{"alias":"NET18","entrezGeneId":"54502"},{"alias":"HIP14L","entrezGeneId":"54503"},{"alias":"HIP3RP","entrezGeneId":"54503"},{"alias":"HVLP","entrezGeneId":"54504"},{"alias":"DDX29","entrezGeneId":"54505"},{"alias":"ADAMTSL-4","entrezGeneId":"54507"},{"alias":"ECTOL2","entrezGeneId":"54507"},{"alias":"TSRC1","entrezGeneId":"54507"},{"alias":"EPB41L4A-AS2","entrezGeneId":"54508"},{"alias":"ARHF","entrezGeneId":"54509"},{"alias":"RIF","entrezGeneId":"54509"},{"alias":"PCDH68L","entrezGeneId":"54510"},{"alias":"bA418P12.1","entrezGeneId":"54511"},{"alias":"er-cHL","entrezGeneId":"54511"},{"alias":"hRrp41p","entrezGeneId":"54512"},{"alias":"p12A","entrezGeneId":"54512"},{"alias":"RRP41","entrezGeneId":"54512"},{"alias":"RRP41A","entrezGeneId":"54512"},{"alias":"Rrp41p","entrezGeneId":"54512"},{"alias":"SKI6","entrezGeneId":"54512"},{"alias":"Ski6p","entrezGeneId":"54512"},{"alias":"VASA","entrezGeneId":"54514"},{"alias":"HMRF1L","entrezGeneId":"54516"},{"alias":"MRF1L","entrezGeneId":"54516"},{"alias":"mtRF1a","entrezGeneId":"54516"},{"alias":"INAG1","entrezGeneId":"54518"},{"alias":"PREL1","entrezGeneId":"54518"},{"alias":"RARP1","entrezGeneId":"54518"},{"alias":"RIAM","entrezGeneId":"54518"},{"alias":"RAB11BP","entrezGeneId":"54521"},{"alias":"RPH11","entrezGeneId":"54521"},{"alias":"SYM-4","entrezGeneId":"54521"},{"alias":"NBLA00058","entrezGeneId":"54529"},{"alias":"NS3TP1","entrezGeneId":"54529"},{"alias":"KIAA1193","entrezGeneId":"54531"},{"alias":"Mi-er2","entrezGeneId":"54531"},{"alias":"MRP-L50","entrezGeneId":"54534"},{"alias":"C6orf18","entrezGeneId":"54535"},{"alias":"HCR","entrezGeneId":"54535"},{"alias":"pg8","entrezGeneId":"54535"},{"alias":"SBP","entrezGeneId":"54535"},{"alias":"EXOC6A","entrezGeneId":"54536"},{"alias":"SEC15","entrezGeneId":"54536"},{"alias":"SEC15L","entrezGeneId":"54536"},{"alias":"SEC15L1","entrezGeneId":"54536"},{"alias":"SEC15L3","entrezGeneId":"54536"},{"alias":"Sec15p","entrezGeneId":"54536"},{"alias":"bA163M19.1","entrezGeneId":"54537"},{"alias":"FAM35A1","entrezGeneId":"54537"},{"alias":"ECSM4","entrezGeneId":"54538"},{"alias":"MRB","entrezGeneId":"54538"},{"alias":"CI-ESSS","entrezGeneId":"54539"},{"alias":"ESSS","entrezGeneId":"54539"},{"alias":"Np15","entrezGeneId":"54539"},{"alias":"NP17.3","entrezGeneId":"54539"},{"alias":"P17.3","entrezGeneId":"54539"},{"alias":"IRIZIO","entrezGeneId":"54540"},{"alias":"Dig2","entrezGeneId":"54541"},{"alias":"REDD-1","entrezGeneId":"54541"},{"alias":"REDD1","entrezGeneId":"54541"},{"alias":"MNAB","entrezGeneId":"54542"},{"alias":"RNF164","entrezGeneId":"54542"},{"alias":"TOM7","entrezGeneId":"54543"},{"alias":"C1orf42","entrezGeneId":"54544"},{"alias":"NICE-1","entrezGeneId":"54544"},{"alias":"NICE1","entrezGeneId":"54544"},{"alias":"3-PAP","entrezGeneId":"54545"},{"alias":"PIP3AP","entrezGeneId":"54545"},{"alias":"EFCBP2","entrezGeneId":"54550"},{"alias":"stip-2","entrezGeneId":"54550"},{"alias":"NDNL1","entrezGeneId":"54551"},{"alias":"nM15","entrezGeneId":"54551"},{"alias":"PWLS","entrezGeneId":"54551"},{"alias":"SHFYNG","entrezGeneId":"54551"},{"alias":"GNL3B","entrezGeneId":"54552"},{"alias":"DKFZP434I0714","entrezGeneId":"54553"},{"alias":"LINC02486","entrezGeneId":"54553"},{"alias":"Dbp8","entrezGeneId":"54555"},{"alias":"R27090_2","entrezGeneId":"54555"},{"alias":"Eaf4","entrezGeneId":"54556"},{"alias":"ING2","entrezGeneId":"54556"},{"alias":"MEAF4","entrezGeneId":"54556"},{"alias":"p47ING3","entrezGeneId":"54556"},{"alias":"SGT2","entrezGeneId":"54557"},{"alias":"HASH","entrezGeneId":"54558"},{"alias":"SRF-1","entrezGeneId":"54558"},{"alias":"SRF1","entrezGeneId":"54558"},{"alias":"CG1","entrezGeneId":"54566"},{"alias":"EHM2","entrezGeneId":"54566"},{"alias":"AOS6","entrezGeneId":"54567"},{"alias":"hdelta2","entrezGeneId":"54567"},{"alias":"UGT1L","entrezGeneId":"54573"},{"alias":"UGT1K","entrezGeneId":"54574"},{"alias":"UDPGT","entrezGeneId":"54575"},{"alias":"UGT-1J","entrezGeneId":"54575"},{"alias":"UGT1-10","entrezGeneId":"54575"},{"alias":"UGT1.10","entrezGeneId":"54575"},{"alias":"UGT1J","entrezGeneId":"54575"},{"alias":"UDPGT","entrezGeneId":"54576"},{"alias":"UDPGT 1-8","entrezGeneId":"54576"},{"alias":"UGT-1H","entrezGeneId":"54576"},{"alias":"UGT1-08","entrezGeneId":"54576"},{"alias":"UGT1.8","entrezGeneId":"54576"},{"alias":"UGT1A8S","entrezGeneId":"54576"},{"alias":"UGT1H","entrezGeneId":"54576"},{"alias":"UDPGT","entrezGeneId":"54577"},{"alias":"UDPGT 1-7","entrezGeneId":"54577"},{"alias":"UGT-1G","entrezGeneId":"54577"},{"alias":"UGT1-07","entrezGeneId":"54577"},{"alias":"UGT1.7","entrezGeneId":"54577"},{"alias":"UGT1G","entrezGeneId":"54577"},{"alias":"GNT1","entrezGeneId":"54578"},{"alias":"HLUGP","entrezGeneId":"54578"},{"alias":"HLUGP1","entrezGeneId":"54578"},{"alias":"UDPGT","entrezGeneId":"54578"},{"alias":"UDPGT 1-6","entrezGeneId":"54578"},{"alias":"UGT1","entrezGeneId":"54578"},{"alias":"UGT1A6S","entrezGeneId":"54578"},{"alias":"UGT1F","entrezGeneId":"54578"},{"alias":"UDPGT","entrezGeneId":"54579"},{"alias":"UDPGT 1-5","entrezGeneId":"54579"},{"alias":"UGT1E","entrezGeneId":"54579"},{"alias":"UGT1BP","entrezGeneId":"54580"},{"alias":"SCAND2","entrezGeneId":"54581"},{"alias":"C1orf12","entrezGeneId":"54583"},{"alias":"ECYT3","entrezGeneId":"54583"},{"alias":"HALAH","entrezGeneId":"54583"},{"alias":"HIF-PH2","entrezGeneId":"54583"},{"alias":"HIFPH2","entrezGeneId":"54583"},{"alias":"HPH-2","entrezGeneId":"54583"},{"alias":"HPH2","entrezGeneId":"54583"},{"alias":"PHD2","entrezGeneId":"54583"},{"alias":"SM20","entrezGeneId":"54583"},{"alias":"ZMYND6","entrezGeneId":"54583"},{"alias":"DGCRK3","entrezGeneId":"54584"},{"alias":"FKSG1","entrezGeneId":"54584"},{"alias":"GY2","entrezGeneId":"54584"},{"alias":"WDR14","entrezGeneId":"54584"},{"alias":"WDVCF","entrezGeneId":"54584"},{"alias":"BBS17","entrezGeneId":"54585"},{"alias":"AFAF","entrezGeneId":"54586"},{"alias":"C9orf11","entrezGeneId":"54586"},{"alias":"SPACA8","entrezGeneId":"54586"},{"alias":"ASP3","entrezGeneId":"54587"},{"alias":"ECAT11","entrezGeneId":"54596"},{"alias":"HLUGP4","entrezGeneId":"54600"},{"alias":"LUGP4","entrezGeneId":"54600"},{"alias":"UDPGT","entrezGeneId":"54600"},{"alias":"UDPGT 1-9","entrezGeneId":"54600"},{"alias":"UGT-1I","entrezGeneId":"54600"},{"alias":"UGT1-09","entrezGeneId":"54600"},{"alias":"UGT1-9","entrezGeneId":"54600"},{"alias":"UGT1.9","entrezGeneId":"54600"},{"alias":"UGT1A9S","entrezGeneId":"54600"},{"alias":"UGT1AI","entrezGeneId":"54600"},{"alias":"UGT1I","entrezGeneId":"54600"},{"alias":"N4WBP5A","entrezGeneId":"54602"},{"alias":"DDX21","entrezGeneId":"54606"},{"alias":"DDX26","entrezGeneId":"54606"},{"alias":"NOH61","entrezGeneId":"54606"},{"alias":"hINO80","entrezGeneId":"54617"},{"alias":"INO80A","entrezGeneId":"54617"},{"alias":"INOC1","entrezGeneId":"54617"},{"alias":"bA690P14.1","entrezGeneId":"54619"},{"alias":"CXXC11","entrezGeneId":"54620"},{"alias":"Fbl19","entrezGeneId":"54620"},{"alias":"JHDM1C","entrezGeneId":"54620"},{"alias":"ARFRP2","entrezGeneId":"54622"},{"alias":"F23149_1","entrezGeneId":"54623"},{"alias":"PD2","entrezGeneId":"54623"},{"alias":"ARTD8","entrezGeneId":"54625"},{"alias":"BAL2","entrezGeneId":"54625"},{"alias":"PARP-14","entrezGeneId":"54625"},{"alias":"pART8","entrezGeneId":"54625"},{"alias":"bHLHb40","entrezGeneId":"54626"},{"alias":"KIAA1383","entrezGeneId":"54627"},{"alias":"MTR120","entrezGeneId":"54627"},{"alias":"FAM63B","entrezGeneId":"54629"},{"alias":"HUG-BR2","entrezGeneId":"54657"},{"alias":"UDPGT","entrezGeneId":"54657"},{"alias":"UDPGT 1-4","entrezGeneId":"54657"},{"alias":"UGT-1D","entrezGeneId":"54657"},{"alias":"UGT1-04","entrezGeneId":"54657"},{"alias":"UGT1.4","entrezGeneId":"54657"},{"alias":"UGT1A4S","entrezGeneId":"54657"},{"alias":"UGT1D","entrezGeneId":"54657"},{"alias":"BILIQTL1","entrezGeneId":"54658"},{"alias":"GNT1","entrezGeneId":"54658"},{"alias":"HUG-BR1","entrezGeneId":"54658"},{"alias":"UDPGT","entrezGeneId":"54658"},{"alias":"UDPGT 1-1","entrezGeneId":"54658"},{"alias":"UGT1","entrezGeneId":"54658"},{"alias":"UGT1A","entrezGeneId":"54658"},{"alias":"UDPGT","entrezGeneId":"54659"},{"alias":"UDPGT 1-3","entrezGeneId":"54659"},{"alias":"UGT-1C","entrezGeneId":"54659"},{"alias":"UGT1-03","entrezGeneId":"54659"},{"alias":"UGT1.3","entrezGeneId":"54659"},{"alias":"UGT1A3S","entrezGeneId":"54659"},{"alias":"UGT1C","entrezGeneId":"54659"},{"alias":"PCDH-psi2","entrezGeneId":"54660"},{"alias":"PCDHB18","entrezGeneId":"54660"},{"alias":"ME4","entrezGeneId":"54661"},{"alias":"PCDH-psi1","entrezGeneId":"54661"},{"alias":"PCDHB17","entrezGeneId":"54661"},{"alias":"KDM9","entrezGeneId":"54665"},{"alias":"ROSBIN","entrezGeneId":"54665"},{"alias":"FIGLER5","entrezGeneId":"54674"},{"alias":"NLRR-3","entrezGeneId":"54674"},{"alias":"NLRR3","entrezGeneId":"54674"},{"alias":"C20orf155","entrezGeneId":"54675"},{"alias":"CLS","entrezGeneId":"54675"},{"alias":"CLS1","entrezGeneId":"54675"},{"alias":"dJ967N21.6","entrezGeneId":"54675"},{"alias":"GCD10","entrezGeneId":"54675"},{"alias":"COT","entrezGeneId":"54677"},{"alias":"BCD1","entrezGeneId":"54680"},{"alias":"C1orf181","entrezGeneId":"54680"},{"alias":"NY-BR-75","entrezGeneId":"54680"},{"alias":"EGLN4","entrezGeneId":"54681"},{"alias":"HIFPH4","entrezGeneId":"54681"},{"alias":"P4H-TM","entrezGeneId":"54681"},{"alias":"PH-4","entrezGeneId":"54681"},{"alias":"PH4","entrezGeneId":"54681"},{"alias":"PHD4","entrezGeneId":"54681"},{"alias":"9130403P13Rik","entrezGeneId":"54682"},{"alias":"LOH12CR3","entrezGeneId":"54682"},{"alias":"A-270G1.2","entrezGeneId":"54700"},{"alias":"TIFIA","entrezGeneId":"54700"},{"alias":"PDH","entrezGeneId":"54704"},{"alias":"PDP","entrezGeneId":"54704"},{"alias":"PDPC","entrezGeneId":"54704"},{"alias":"PPM2A","entrezGeneId":"54704"},{"alias":"PPM2C","entrezGeneId":"54704"},{"alias":"ATPBD1B","entrezGeneId":"54707"},{"alias":"MARCH-V","entrezGeneId":"54708"},{"alias":"MITOL","entrezGeneId":"54708"},{"alias":"RNF153","entrezGeneId":"54708"},{"alias":"ACHM1","entrezGeneId":"54714"},{"alias":"2BP1","entrezGeneId":"54715"},{"alias":"A2BP1","entrezGeneId":"54715"},{"alias":"FOX-1","entrezGeneId":"54715"},{"alias":"FOX1","entrezGeneId":"54715"},{"alias":"HRNBP1","entrezGeneId":"54715"},{"alias":"SIT1","entrezGeneId":"54716"},{"alias":"XT3","entrezGeneId":"54716"},{"alias":"Xtrp3","entrezGeneId":"54716"},{"alias":"BTN2.3","entrezGeneId":"54718"},{"alias":"BTN2A3","entrezGeneId":"54718"},{"alias":"NCRNA","entrezGeneId":"54719"},{"alias":"DUBA6","entrezGeneId":"54726"},{"alias":"HIN1","entrezGeneId":"54726"},{"alias":"HSHIN1","entrezGeneId":"54726"},{"alias":"HSPX153","entrezGeneId":"54729"},{"alias":"NKX-1.1","entrezGeneId":"54729"},{"alias":"SAX2","entrezGeneId":"54729"},{"alias":"GMP25","entrezGeneId":"54732"},{"alias":"HSGP25L2G","entrezGeneId":"54732"},{"alias":"p24a2","entrezGeneId":"54732"},{"alias":"p24alpha2","entrezGeneId":"54732"},{"alias":"p25","entrezGeneId":"54732"},{"alias":"HSNOV1","entrezGeneId":"54733"},{"alias":"RAB39","entrezGeneId":"54734"},{"alias":"HSMPP8","entrezGeneId":"54737"},{"alias":"mpp8","entrezGeneId":"54737"},{"alias":"TWA3","entrezGeneId":"54737"},{"alias":"HSRNAFEV","entrezGeneId":"54738"},{"alias":"PET-1","entrezGeneId":"54738"},{"alias":"BIRC4BP","entrezGeneId":"54739"},{"alias":"HSXIAPAF1","entrezGeneId":"54739"},{"alias":"XIAPAF1","entrezGeneId":"54739"},{"alias":"LEPR","entrezGeneId":"54741"},{"alias":"OB-RGRP","entrezGeneId":"54741"},{"alias":"OBRGRP","entrezGeneId":"54741"},{"alias":"VPS55","entrezGeneId":"54741"},{"alias":"CT97","entrezGeneId":"54742"},{"alias":"HSJ001348","entrezGeneId":"54742"},{"alias":"ly-6K","entrezGeneId":"54742"},{"alias":"URLC10","entrezGeneId":"54742"},{"alias":"C21orf104","entrezGeneId":"54748"},{"alias":"EPDR","entrezGeneId":"54749"},{"alias":"MERP-1","entrezGeneId":"54749"},{"alias":"MERP1","entrezGeneId":"54749"},{"alias":"UCC1","entrezGeneId":"54749"},{"alias":"CAL","entrezGeneId":"54751"},{"alias":"FBLP-1","entrezGeneId":"54751"},{"alias":"FBLP1","entrezGeneId":"54751"},{"alias":"FAM22F","entrezGeneId":"54754"},{"alias":"NUTMF","entrezGeneId":"54754"},{"alias":"HH18","entrezGeneId":"54756"},{"alias":"IL-17RD","entrezGeneId":"54756"},{"alias":"IL17RLM","entrezGeneId":"54756"},{"alias":"SEF","entrezGeneId":"54756"},{"alias":"AI1G","entrezGeneId":"54757"},{"alias":"AIGFS","entrezGeneId":"54757"},{"alias":"FP2747","entrezGeneId":"54757"},{"alias":"PC4","entrezGeneId":"54760"},{"alias":"SPC5","entrezGeneId":"54760"},{"alias":"CT91","entrezGeneId":"54763"},{"alias":"ODF6","entrezGeneId":"54763"},{"alias":"RHPNAP1","entrezGeneId":"54763"},{"alias":"ROPN1A","entrezGeneId":"54763"},{"alias":"ropporin","entrezGeneId":"54763"},{"alias":"TRABID","entrezGeneId":"54764"},{"alias":"AN3","entrezGeneId":"54765"},{"alias":"DIPB","entrezGeneId":"54765"},{"alias":"HSA249128","entrezGeneId":"54765"},{"alias":"MC7","entrezGeneId":"54765"},{"alias":"APRO3","entrezGeneId":"54766"},{"alias":"PC3B","entrezGeneId":"54766"},{"alias":"CILD5","entrezGeneId":"54768"},{"alias":"HYDIN1","entrezGeneId":"54768"},{"alias":"HYDIN2","entrezGeneId":"54768"},{"alias":"PPP1R31","entrezGeneId":"54768"},{"alias":"Di-Ras2","entrezGeneId":"54769"},{"alias":"AAVS1","entrezGeneId":"54776"},{"alias":"LENG3","entrezGeneId":"54776"},{"alias":"MBS85","entrezGeneId":"54776"},{"alias":"p84","entrezGeneId":"54776"},{"alias":"p85","entrezGeneId":"54776"},{"alias":"bA288G11.4","entrezGeneId":"54777"},{"alias":"bA288G11.5","entrezGeneId":"54777"},{"alias":"bB137A17.2","entrezGeneId":"54777"},{"alias":"bB137A17.3","entrezGeneId":"54777"},{"alias":"C10orf123","entrezGeneId":"54777"},{"alias":"C10orf124","entrezGeneId":"54777"},{"alias":"C10orf92","entrezGeneId":"54777"},{"alias":"C10orf93","entrezGeneId":"54777"},{"alias":"TTC40","entrezGeneId":"54777"},{"alias":"ARK","entrezGeneId":"54778"},{"alias":"hRNF111","entrezGeneId":"54778"},{"alias":"C10orf86","entrezGeneId":"54780"},{"alias":"NS4EA","entrezGeneId":"54780"},{"alias":"NSE4A","entrezGeneId":"54780"},{"alias":"ABH4","entrezGeneId":"54784"},{"alias":"C17orf59","entrezGeneId":"54785"},{"alias":"PRO2472","entrezGeneId":"54785"},{"alias":"DJ10","entrezGeneId":"54788"},{"alias":"KIAA1546","entrezGeneId":"54790"},{"alias":"MDS","entrezGeneId":"54790"},{"alias":"BTBD27","entrezGeneId":"54793"},{"alias":"hTRPM4","entrezGeneId":"54795"},{"alias":"LTrpC4","entrezGeneId":"54795"},{"alias":"PFHB1B","entrezGeneId":"54795"},{"alias":"TRPM4B","entrezGeneId":"54795"},{"alias":"BSN2","entrezGeneId":"54796"},{"alias":"p28b","entrezGeneId":"54797"},{"alias":"SRB5","entrezGeneId":"54797"},{"alias":"CDH27","entrezGeneId":"54798"},{"alias":"CDHJ","entrezGeneId":"54798"},{"alias":"CDHR7","entrezGeneId":"54798"},{"alias":"PCDH23","entrezGeneId":"54798"},{"alias":"PCDHJ","entrezGeneId":"54798"},{"alias":"SA49P01","entrezGeneId":"54799"},{"alias":"DRE1","entrezGeneId":"54800"},{"alias":"EBSSH","entrezGeneId":"54800"},{"alias":"KRIP6","entrezGeneId":"54800"},{"alias":"Dgt6","entrezGeneId":"54801"},{"alias":"FAM29A","entrezGeneId":"54801"},{"alias":"COXPD35","entrezGeneId":"54802"},{"alias":"GRO1","entrezGeneId":"54802"},{"alias":"hGRO1","entrezGeneId":"54802"},{"alias":"IPPT","entrezGeneId":"54802"},{"alias":"IPT","entrezGeneId":"54802"},{"alias":"IPTase","entrezGeneId":"54802"},{"alias":"MOD5","entrezGeneId":"54802"},{"alias":"ACDP2","entrezGeneId":"54805"},{"alias":"HOMG6","entrezGeneId":"54805"},{"alias":"HOMGSMR","entrezGeneId":"54805"},{"alias":"AHI-1","entrezGeneId":"54806"},{"alias":"dJ71N10.1","entrezGeneId":"54806"},{"alias":"JBTS3","entrezGeneId":"54806"},{"alias":"ORF1","entrezGeneId":"54806"},{"alias":"DMC","entrezGeneId":"54808"},{"alias":"SMC","entrezGeneId":"54808"},{"alias":"C7orf5","entrezGeneId":"54809"},{"alias":"DRIF1","entrezGeneId":"54809"},{"alias":"MIRAGE","entrezGeneId":"54809"},{"alias":"NFTC","entrezGeneId":"54809"},{"alias":"OEF1","entrezGeneId":"54809"},{"alias":"OEF2","entrezGeneId":"54809"},{"alias":"SEMCAP-2","entrezGeneId":"54810"},{"alias":"SEMCAP2","entrezGeneId":"54810"},{"alias":"Nbla10388","entrezGeneId":"54812"},{"alias":"BTBD5","entrezGeneId":"54813"},{"alias":"gQC","entrezGeneId":"54814"},{"alias":"p66alpha","entrezGeneId":"54815"},{"alias":"SUHW4","entrezGeneId":"54816"},{"alias":"ZNF634","entrezGeneId":"54816"},{"alias":"HOM-TES-87","entrezGeneId":"54820"},{"alias":"LIS4","entrezGeneId":"54820"},{"alias":"MHAC","entrezGeneId":"54820"},{"alias":"NDE","entrezGeneId":"54820"},{"alias":"NUDE","entrezGeneId":"54820"},{"alias":"NUDE1","entrezGeneId":"54820"},{"alias":"PICH","entrezGeneId":"54821"},{"alias":"RAD26L","entrezGeneId":"54821"},{"alias":"ALSPDC","entrezGeneId":"54822"},{"alias":"CHAK","entrezGeneId":"54822"},{"alias":"CHAK1","entrezGeneId":"54822"},{"alias":"LTrpC-7","entrezGeneId":"54822"},{"alias":"LTRPC7","entrezGeneId":"54822"},{"alias":"TRP-PLIK","entrezGeneId":"54822"},{"alias":"C1orf26","entrezGeneId":"54823"},{"alias":"HsSwt1","entrezGeneId":"54823"},{"alias":"PCDH24","entrezGeneId":"54825"},{"alias":"PCLKC","entrezGeneId":"54825"},{"alias":"GIN-1","entrezGeneId":"54826"},{"alias":"TGIN1","entrezGeneId":"54826"},{"alias":"ZH2C2","entrezGeneId":"54826"},{"alias":"C11orf33","entrezGeneId":"54827"},{"alias":"FAM55D","entrezGeneId":"54827"},{"alias":"GAOB1","entrezGeneId":"54828"},{"alias":"MAAB","entrezGeneId":"54828"},{"alias":"OS3","entrezGeneId":"54829"},{"alias":"PLAP-1","entrezGeneId":"54829"},{"alias":"PLAP1","entrezGeneId":"54829"},{"alias":"SLRR1C","entrezGeneId":"54829"},{"alias":"VMD2L1","entrezGeneId":"54831"},{"alias":"PARK23","entrezGeneId":"54832"},{"alias":"MACROD3","entrezGeneId":"54834"},{"alias":"C10orf26","entrezGeneId":"54838"},{"alias":"OPA1L","entrezGeneId":"54838"},{"alias":"OPAL1","entrezGeneId":"54838"},{"alias":"PGs4","entrezGeneId":"54839"},{"alias":"AOA","entrezGeneId":"54840"},{"alias":"AOA1","entrezGeneId":"54840"},{"alias":"AXA1","entrezGeneId":"54840"},{"alias":"EAOH","entrezGeneId":"54840"},{"alias":"EOAHA","entrezGeneId":"54840"},{"alias":"FHA-HIT","entrezGeneId":"54840"},{"alias":"hMMR2","entrezGeneId":"54842"},{"alias":"MMR2","entrezGeneId":"54842"},{"alias":"CHR11SYT","entrezGeneId":"54843"},{"alias":"EXO4","entrezGeneId":"54843"},{"alias":"PPP1R151","entrezGeneId":"54843"},{"alias":"SGA72M","entrezGeneId":"54843"},{"alias":"SLP2","entrezGeneId":"54843"},{"alias":"SLP2A","entrezGeneId":"54843"},{"alias":"RBM35A","entrezGeneId":"54845"},{"alias":"RMB35A","entrezGeneId":"54845"},{"alias":"SID-1","entrezGeneId":"54847"},{"alias":"SID1","entrezGeneId":"54847"},{"alias":"Fbl12","entrezGeneId":"54850"},{"alias":"FGIF","entrezGeneId":"54851"},{"alias":"GBIF","entrezGeneId":"54851"},{"alias":"MPRG","entrezGeneId":"54852"},{"alias":"GON-4","entrezGeneId":"54856"},{"alias":"GON4","entrezGeneId":"54856"},{"alias":"YARP","entrezGeneId":"54856"},{"alias":"GDE3","entrezGeneId":"54857"},{"alias":"OBDPF","entrezGeneId":"54857"},{"alias":"PAP-I","entrezGeneId":"54858"},{"alias":"Pcp","entrezGeneId":"54858"},{"alias":"PGI","entrezGeneId":"54858"},{"alias":"PGP","entrezGeneId":"54858"},{"alias":"PGP-I","entrezGeneId":"54858"},{"alias":"PGPI","entrezGeneId":"54858"},{"alias":"C3orf75","entrezGeneId":"54859"},{"alias":"TMEM103","entrezGeneId":"54859"},{"alias":"Ms4a10","entrezGeneId":"54860"},{"alias":"HSNFRK","entrezGeneId":"54861"},{"alias":"FREUD-1","entrezGeneId":"54862"},{"alias":"Freud-1/Aki1","entrezGeneId":"54862"},{"alias":"MRT3","entrezGeneId":"54862"},{"alias":"C9orf167","entrezGeneId":"54863"},{"alias":"GPATC4","entrezGeneId":"54865"},{"alias":"CPI17-like","entrezGeneId":"54866"},{"alias":"GBPI-1","entrezGeneId":"54866"},{"alias":"GBPI1","entrezGeneId":"54866"},{"alias":"DRC3","entrezGeneId":"54869"},{"alias":"EPS8R1","entrezGeneId":"54869"},{"alias":"PP10566","entrezGeneId":"54869"},{"alias":"GPI7","entrezGeneId":"54872"},{"alias":"LAS21","entrezGeneId":"54872"},{"alias":"MRT53","entrezGeneId":"54872"},{"alias":"PRO4405","entrezGeneId":"54872"},{"alias":"RLGS1930","entrezGeneId":"54872"},{"alias":"C1orf11","entrezGeneId":"54873"},{"alias":"PALML","entrezGeneId":"54873"},{"alias":"C1orf39","entrezGeneId":"54874"},{"alias":"TOCA1","entrezGeneId":"54874"},{"alias":"bA340N12.1","entrezGeneId":"54875"},{"alias":"C9orf101","entrezGeneId":"54875"},{"alias":"C9orf39","entrezGeneId":"54875"},{"alias":"C4orf30","entrezGeneId":"54876"},{"alias":"C18orf49","entrezGeneId":"54877"},{"alias":"DP8","entrezGeneId":"54878"},{"alias":"DPRP-1","entrezGeneId":"54878"},{"alias":"DPRP1","entrezGeneId":"54878"},{"alias":"MST097","entrezGeneId":"54878"},{"alias":"MSTP097","entrezGeneId":"54878"},{"alias":"MSTP135","entrezGeneId":"54878"},{"alias":"MSTP141","entrezGeneId":"54878"},{"alias":"FAM4B","entrezGeneId":"54879"},{"alias":"ST7R","entrezGeneId":"54879"},{"alias":"STLR","entrezGeneId":"54879"},{"alias":"ANOP2","entrezGeneId":"54880"},{"alias":"MAA2","entrezGeneId":"54880"},{"alias":"MCOPS2","entrezGeneId":"54880"},{"alias":"bA208F1.2","entrezGeneId":"54881"},{"alias":"Ipi1","entrezGeneId":"54881"},{"alias":"MASK","entrezGeneId":"54882"},{"alias":"MASK1","entrezGeneId":"54882"},{"alias":"PP2500","entrezGeneId":"54882"},{"alias":"VBARP","entrezGeneId":"54882"},{"alias":"CCDC49","entrezGeneId":"54883"},{"alias":"GRAMD8B","entrezGeneId":"54885"},{"alias":"LPPR1","entrezGeneId":"54886"},{"alias":"PRG-3","entrezGeneId":"54886"},{"alias":"C6orf107","entrezGeneId":"54887"},{"alias":"dJ349A12.1","entrezGeneId":"54887"},{"alias":"ICBP90","entrezGeneId":"54887"},{"alias":"MISU","entrezGeneId":"54888"},{"alias":"MRT5","entrezGeneId":"54888"},{"alias":"SAKI","entrezGeneId":"54888"},{"alias":"TRM4","entrezGeneId":"54888"},{"alias":"ABH5","entrezGeneId":"54890"},{"alias":"OFOXD","entrezGeneId":"54890"},{"alias":"OFOXD1","entrezGeneId":"54890"},{"alias":"CAP-G2","entrezGeneId":"54892"},{"alias":"CAPG2","entrezGeneId":"54892"},{"alias":"hCAP-G2","entrezGeneId":"54892"},{"alias":"LUZP5","entrezGeneId":"54892"},{"alias":"MTB","entrezGeneId":"54892"},{"alias":"RNF124","entrezGeneId":"54894"},{"alias":"SSPCS","entrezGeneId":"54894"},{"alias":"URCC","entrezGeneId":"54894"},{"alias":"CAS11","entrezGeneId":"54897"},{"alias":"CST","entrezGeneId":"54897"},{"alias":"dJ734G22.1","entrezGeneId":"54897"},{"alias":"SRG","entrezGeneId":"54897"},{"alias":"ZNF693","entrezGeneId":"54897"},{"alias":"SSC2","entrezGeneId":"54898"},{"alias":"MONAKA","entrezGeneId":"54899"},{"alias":"SLOB","entrezGeneId":"54899"},{"alias":"LAX","entrezGeneId":"54900"},{"alias":"2010204O13Rik","entrezGeneId":"54902"},{"alias":"MC3DN2","entrezGeneId":"54902"},{"alias":"BBS13","entrezGeneId":"54903"},{"alias":"JBTS28","entrezGeneId":"54903"},{"alias":"MES","entrezGeneId":"54903"},{"alias":"MKS","entrezGeneId":"54903"},{"alias":"POC12","entrezGeneId":"54903"},{"alias":"KMT3F","entrezGeneId":"54904"},{"alias":"KMT3G","entrezGeneId":"54904"},{"alias":"pp14328","entrezGeneId":"54904"},{"alias":"WHISTLE","entrezGeneId":"54904"},{"alias":"WHSC1L1","entrezGeneId":"54904"},{"alias":"bA318E3.2","entrezGeneId":"54906"},{"alias":"C10orf18","entrezGeneId":"54906"},{"alias":"CCDC99","entrezGeneId":"54908"},{"alias":"M-SEMA-F","entrezGeneId":"54910"},{"alias":"SEMACL1","entrezGeneId":"54910"},{"alias":"SEMAF","entrezGeneId":"54910"},{"alias":"SEMAI","entrezGeneId":"54910"},{"alias":"KIAA1797","entrezGeneId":"54914"},{"alias":"C20orf21","entrezGeneId":"54915"},{"alias":"C14orf101","entrezGeneId":"54916"},{"alias":"SHDRA","entrezGeneId":"54916"},{"alias":"CKLFSF6","entrezGeneId":"54918"},{"alias":"PRO2219","entrezGeneId":"54918"},{"alias":"CILD18","entrezGeneId":"54919"},{"alias":"HEATR2","entrezGeneId":"54919"},{"alias":"DUS2L","entrezGeneId":"54920"},{"alias":"SMM1","entrezGeneId":"54920"},{"alias":"URLC8","entrezGeneId":"54920"},{"alias":"CTF8","entrezGeneId":"54921"},{"alias":"DERPC","entrezGeneId":"54921"},{"alias":"RAIN","entrezGeneId":"54922"},{"alias":"dJ583P15.4","entrezGeneId":"54923"},{"alias":"LIME","entrezGeneId":"54923"},{"alias":"HCCS-5","entrezGeneId":"54925"},{"alias":"ZNF434","entrezGeneId":"54925"},{"alias":"CDC34B","entrezGeneId":"54926"},{"alias":"E2-CDC34B","entrezGeneId":"54926"},{"alias":"UBC3B","entrezGeneId":"54926"},{"alias":"Mic19","entrezGeneId":"54927"},{"alias":"MINOS3","entrezGeneId":"54927"},{"alias":"PPP1R22","entrezGeneId":"54927"},{"alias":"GPAPP","entrezGeneId":"54928"},{"alias":"IMP 3","entrezGeneId":"54928"},{"alias":"IMP-3","entrezGeneId":"54928"},{"alias":"IMPA3","entrezGeneId":"54928"},{"alias":"AROS-29","entrezGeneId":"54929"},{"alias":"C14orf94","entrezGeneId":"54930"},{"alias":"COXPD30","entrezGeneId":"54931"},{"alias":"HNYA","entrezGeneId":"54931"},{"alias":"MRPP1","entrezGeneId":"54931"},{"alias":"RG9MTD1","entrezGeneId":"54931"},{"alias":"mut-7","entrezGeneId":"54932"},{"alias":"RRP2","entrezGeneId":"54933"},{"alias":"C12orf41","entrezGeneId":"54934"},{"alias":"NSL2","entrezGeneId":"54934"},{"alias":"DUSP25","entrezGeneId":"54935"},{"alias":"LDP-3","entrezGeneId":"54935"},{"alias":"MOSP","entrezGeneId":"54935"},{"alias":"VHZ","entrezGeneId":"54935"},{"alias":"ARH3","entrezGeneId":"54936"},{"alias":"bHLHe81","entrezGeneId":"54937"},{"alias":"SOSF2","entrezGeneId":"54937"},{"alias":"SPATA28","entrezGeneId":"54937"},{"alias":"TEB1","entrezGeneId":"54937"},{"alias":"mtSerRS","entrezGeneId":"54938"},{"alias":"SARS","entrezGeneId":"54938"},{"alias":"SARSM","entrezGeneId":"54938"},{"alias":"SerRS","entrezGeneId":"54938"},{"alias":"SerRSmt","entrezGeneId":"54938"},{"alias":"SERS","entrezGeneId":"54938"},{"alias":"SYS","entrezGeneId":"54938"},{"alias":"ASRIJ","entrezGeneId":"54940"},{"alias":"OCIA","entrezGeneId":"54940"},{"alias":"TPA018","entrezGeneId":"54940"},{"alias":"TNORS","entrezGeneId":"54941"},{"alias":"TRAC-1","entrezGeneId":"54941"},{"alias":"TRAC1","entrezGeneId":"54941"},{"alias":"C9orf6","entrezGeneId":"54942"},{"alias":"CG-8","entrezGeneId":"54942"},{"alias":"Simiate","entrezGeneId":"54942"},{"alias":"C21orf55","entrezGeneId":"54943"},{"alias":"C21orf78","entrezGeneId":"54943"},{"alias":"SLC41A1-L2","entrezGeneId":"54946"},{"alias":"AGPAT11","entrezGeneId":"54947"},{"alias":"AYTL1","entrezGeneId":"54947"},{"alias":"LysoPAFAT","entrezGeneId":"54947"},{"alias":"L16mt","entrezGeneId":"54948"},{"alias":"MRP-L16","entrezGeneId":"54948"},{"alias":"PNAS-111","entrezGeneId":"54948"},{"alias":"C11orf79","entrezGeneId":"54949"},{"alias":"PGL2","entrezGeneId":"54949"},{"alias":"SDH5","entrezGeneId":"54949"},{"alias":"PRO1902","entrezGeneId":"54952"},{"alias":"SECP43","entrezGeneId":"54952"},{"alias":"TRSPAP1","entrezGeneId":"54952"},{"alias":"C1orf27","entrezGeneId":"54953"},{"alias":"odr-4","entrezGeneId":"54953"},{"alias":"TTG1","entrezGeneId":"54953"},{"alias":"CXorf17","entrezGeneId":"54954"},{"alias":"ORF34","entrezGeneId":"54954"},{"alias":"ARTD15","entrezGeneId":"54956"},{"alias":"C15orf30","entrezGeneId":"54956"},{"alias":"pART15","entrezGeneId":"54956"},{"alias":"Dim2","entrezGeneId":"54957"},{"alias":"DLP","entrezGeneId":"54957"},{"alias":"APIN","entrezGeneId":"54959"},{"alias":"FAM51A1","entrezGeneId":"54960"},{"alias":"SSH3L","entrezGeneId":"54961"},{"alias":"UCK1L","entrezGeneId":"54963"},{"alias":"URKL1","entrezGeneId":"54963"},{"alias":"MENT","entrezGeneId":"54964"},{"alias":"PIG-X","entrezGeneId":"54965"},{"alias":"BJHCC20A","entrezGeneId":"54967"},{"alias":"CXorf48","entrezGeneId":"54967"},{"alias":"MC5DN2","entrezGeneId":"54968"},{"alias":"C4orf27","entrezGeneId":"54969"},{"alias":"TPARM","entrezGeneId":"54970"},{"alias":"BEND1","entrezGeneId":"54971"},{"alias":"SMAR1","entrezGeneId":"54971"},{"alias":"SMARBP1","entrezGeneId":"54971"},{"alias":"GBP","entrezGeneId":"54972"},{"alias":"HSPA5BP1","entrezGeneId":"54972"},{"alias":"CPSF3L","entrezGeneId":"54973"},{"alias":"CPSF73L","entrezGeneId":"54973"},{"alias":"INT11","entrezGeneId":"54973"},{"alias":"RC-68","entrezGeneId":"54973"},{"alias":"RC68","entrezGeneId":"54973"},{"alias":"hTHG1","entrezGeneId":"54974"},{"alias":"ICF45","entrezGeneId":"54974"},{"alias":"IHG-1","entrezGeneId":"54974"},{"alias":"SIDBA2","entrezGeneId":"54977"},{"alias":"ANT2BP","entrezGeneId":"54978"},{"alias":"C2orf18","entrezGeneId":"54978"},{"alias":"TANGO9","entrezGeneId":"54978"},{"alias":"PLA1/2-2","entrezGeneId":"54979"},{"alias":"bA235O14.2","entrezGeneId":"54981"},{"alias":"C9orf95","entrezGeneId":"54981"},{"alias":"NRK1","entrezGeneId":"54981"},{"alias":"CLN4A","entrezGeneId":"54982"},{"alias":"HsT18960","entrezGeneId":"54982"},{"alias":"nclf","entrezGeneId":"54982"},{"alias":"Gno1","entrezGeneId":"54984"},{"alias":"LPTL","entrezGeneId":"54984"},{"alias":"LPTS","entrezGeneId":"54984"},{"alias":"Pxr1","entrezGeneId":"54984"},{"alias":"HPIP","entrezGeneId":"54985"},{"alias":"FAM7C1","entrezGeneId":"54986"},{"alias":"REC01035","entrezGeneId":"54986"},{"alias":"PRO1914","entrezGeneId":"54989"},{"alias":"ZFP29","entrezGeneId":"54993"},{"alias":"ZNF854","entrezGeneId":"54993"},{"alias":"C20orf11","entrezGeneId":"54994"},{"alias":"TWA1","entrezGeneId":"54994"},{"alias":"CEM1","entrezGeneId":"54995"},{"alias":"FASN2D","entrezGeneId":"54995"},{"alias":"KASI","entrezGeneId":"54995"},{"alias":"KS","entrezGeneId":"54995"},{"alias":"MOSC2","entrezGeneId":"54996"},{"alias":"CHP3","entrezGeneId":"54997"},{"alias":"TSC","entrezGeneId":"54997"},{"alias":"AIP","entrezGeneId":"54998"},{"alias":"AKIP","entrezGeneId":"54998"},{"alias":"MRP-S38","entrezGeneId":"54998"},{"alias":"LINC00080","entrezGeneId":"55000"},{"alias":"NCRNA00080","entrezGeneId":"55000"},{"alias":"TI-227H","entrezGeneId":"55000"},{"alias":"C13orf11","entrezGeneId":"55002"},{"alias":"bA421M1.5","entrezGeneId":"55003"},{"alias":"hPIP1","entrezGeneId":"55003"},{"alias":"MAK11","entrezGeneId":"55003"},{"alias":"PIP1","entrezGeneId":"55003"},{"alias":"WDR84","entrezGeneId":"55003"},{"alias":"C11orf59","entrezGeneId":"55004"},{"alias":"p18","entrezGeneId":"55004"},{"alias":"p27RF-Rho","entrezGeneId":"55004"},{"alias":"PDRO","entrezGeneId":"55004"},{"alias":"Ragulator1","entrezGeneId":"55004"},{"alias":"bA351K16","entrezGeneId":"55005"},{"alias":"bA351K16.3","entrezGeneId":"55005"},{"alias":"C6orf96","entrezGeneId":"55005"},{"alias":"COXPD11","entrezGeneId":"55005"},{"alias":"RMD1","entrezGeneId":"55005"},{"alias":"C22orf8","entrezGeneId":"55007"},{"alias":"AROM","entrezGeneId":"55010"},{"alias":"C12orf48","entrezGeneId":"55010"},{"alias":"PARI","entrezGeneId":"55010"},{"alias":"NOP17","entrezGeneId":"55011"},{"alias":"C14orf10","entrezGeneId":"55012"},{"alias":"G4-1","entrezGeneId":"55012"},{"alias":"G5pr","entrezGeneId":"55012"},{"alias":"CCDC109B","entrezGeneId":"55013"},{"alias":"MARCH-I","entrezGeneId":"55016"},{"alias":"RNF171","entrezGeneId":"55016"},{"alias":"C17orf73","entrezGeneId":"55018"},{"alias":"LL22NC03-5H6.5","entrezGeneId":"55020"},{"alias":"HMFN2073","entrezGeneId":"55022"},{"alias":"NYGGF4","entrezGeneId":"55022"},{"alias":"P-CLI1","entrezGeneId":"55022"},{"alias":"PCLI1","entrezGeneId":"55022"},{"alias":"BRWD2","entrezGeneId":"55023"},{"alias":"DCAF14","entrezGeneId":"55023"},{"alias":"ndrp","entrezGeneId":"55023"},{"alias":"WDR11","entrezGeneId":"55023"},{"alias":"BANK","entrezGeneId":"55024"},{"alias":"FAM70A","entrezGeneId":"55026"},{"alias":"SYO1","entrezGeneId":"55027"},{"alias":"HLC-8","entrezGeneId":"55028"},{"alias":"MIG3","entrezGeneId":"55028"},{"alias":"SPEP1","entrezGeneId":"55028"},{"alias":"CGI-301","entrezGeneId":"55030"},{"alias":"Fbx34","entrezGeneId":"55030"},{"alias":"TRFP","entrezGeneId":"55031"},{"alias":"EDSKMH","entrezGeneId":"55033"},{"alias":"EDSKSCL2","entrezGeneId":"55033"},{"alias":"FKBP22","entrezGeneId":"55033"},{"alias":"IPBP12","entrezGeneId":"55033"},{"alias":"HMCS","entrezGeneId":"55034"},{"alias":"MCS","entrezGeneId":"55034"},{"alias":"MOS","entrezGeneId":"55034"},{"alias":"bA62C3.3","entrezGeneId":"55035"},{"alias":"bA62C3.4","entrezGeneId":"55035"},{"alias":"C9orf34","entrezGeneId":"55035"},{"alias":"NOP132","entrezGeneId":"55035"},{"alias":"CILD15","entrezGeneId":"55036"},{"alias":"FAP172","entrezGeneId":"55036"},{"alias":"MRP-S39","entrezGeneId":"55037"},{"alias":"HEPP","entrezGeneId":"55038"},{"alias":"SEI-3/HEPP","entrezGeneId":"55038"},{"alias":"TRM12","entrezGeneId":"55039"},{"alias":"TYW2","entrezGeneId":"55039"},{"alias":"EVT2","entrezGeneId":"55041"},{"alias":"C19orf60","entrezGeneId":"55049"},{"alias":"C14orf102","entrezGeneId":"55051"},{"alias":"L20mt","entrezGeneId":"55052"},{"alias":"MRP-L20","entrezGeneId":"55052"},{"alias":"APG16L","entrezGeneId":"55054"},{"alias":"ATG16A","entrezGeneId":"55054"},{"alias":"ATG16L","entrezGeneId":"55054"},{"alias":"IBD10","entrezGeneId":"55054"},{"alias":"WDR30","entrezGeneId":"55054"},{"alias":"hZwilch","entrezGeneId":"55055"},{"alias":"KNTC1AP","entrezGeneId":"55055"},{"alias":"AIM1L","entrezGeneId":"55057"},{"alias":"PRO222","entrezGeneId":"55061"},{"alias":"ATG18","entrezGeneId":"55062"},{"alias":"ATG18A","entrezGeneId":"55062"},{"alias":"WIPI49","entrezGeneId":"55062"},{"alias":"ZCW1","entrezGeneId":"55063"},{"alias":"bA6J24.2","entrezGeneId":"55064"},{"alias":"C9orf68","entrezGeneId":"55064"},{"alias":"GPCR42","entrezGeneId":"55065"},{"alias":"GPR172B","entrezGeneId":"55065"},{"alias":"hRFT1","entrezGeneId":"55065"},{"alias":"PAR2","entrezGeneId":"55065"},{"alias":"RBFVD","entrezGeneId":"55065"},{"alias":"RFT1","entrezGeneId":"55065"},{"alias":"RFVT1","entrezGeneId":"55065"},{"alias":"PDP3","entrezGeneId":"55066"},{"alias":"bA64J21.1","entrezGeneId":"55068"},{"alias":"cCNOX","entrezGeneId":"55068"},{"alias":"CNOX","entrezGeneId":"55068"},{"alias":"PIG38","entrezGeneId":"55068"},{"alias":"C7orf42","entrezGeneId":"55069"},{"alias":"HOIP","entrezGeneId":"55072"},{"alias":"Paul","entrezGeneId":"55072"},{"alias":"ZIBRA","entrezGeneId":"55072"},{"alias":"LRRC37","entrezGeneId":"55073"},{"alias":"LRRC37A4","entrezGeneId":"55073"},{"alias":"Nbla00307","entrezGeneId":"55074"},{"alias":"TLDC3","entrezGeneId":"55074"},{"alias":"NUCLING","entrezGeneId":"55075"},{"alias":"DERP7","entrezGeneId":"55076"},{"alias":"DNAPTP4","entrezGeneId":"55076"},{"alias":"FEZ","entrezGeneId":"55079"},{"alias":"FEZL","entrezGeneId":"55079"},{"alias":"FKSG36","entrezGeneId":"55079"},{"alias":"TOF","entrezGeneId":"55079"},{"alias":"ZFP312","entrezGeneId":"55079"},{"alias":"ZNF312","entrezGeneId":"55079"},{"alias":"TAPBP-R","entrezGeneId":"55080"},{"alias":"TAPBPR","entrezGeneId":"55080"},{"alias":"ESRRBL1","entrezGeneId":"55081"},{"alias":"HIPPI","entrezGeneId":"55081"},{"alias":"MHS4R2","entrezGeneId":"55081"},{"alias":"JXC1","entrezGeneId":"55084"},{"alias":"MRAMS","entrezGeneId":"55084"},{"alias":"RADX","entrezGeneId":"55086"},{"alias":"C10orf118","entrezGeneId":"55088"},{"alias":"ATA3","entrezGeneId":"55089"},{"alias":"NAT3","entrezGeneId":"55089"},{"alias":"PAAT","entrezGeneId":"55089"},{"alias":"SNAT4","entrezGeneId":"55089"},{"alias":"MED25","entrezGeneId":"55090"},{"alias":"C1orf72","entrezGeneId":"55092"},{"alias":"C8orf32","entrezGeneId":"55093"},{"alias":"ECGP","entrezGeneId":"55094"},{"alias":"GPATC1","entrezGeneId":"55094"},{"alias":"Smaug2","entrezGeneId":"55095"},{"alias":"SMGB","entrezGeneId":"55095"},{"alias":"EBLN-2","entrezGeneId":"55096"},{"alias":"ATP5SL","entrezGeneId":"55101"},{"alias":"C14orf103","entrezGeneId":"55102"},{"alias":"dJ595C2.1","entrezGeneId":"55103"},{"alias":"CT110","entrezGeneId":"55105"},{"alias":"GPATC2","entrezGeneId":"55105"},{"alias":"Pfa1","entrezGeneId":"55105"},{"alias":"PPP1R30","entrezGeneId":"55105"},{"alias":"SLFN3","entrezGeneId":"55106"},{"alias":"DOG1","entrezGeneId":"55107"},{"alias":"ORAOV2","entrezGeneId":"55107"},{"alias":"TAOS2","entrezGeneId":"55107"},{"alias":"TMEM16A","entrezGeneId":"55107"},{"alias":"GPATC7","entrezGeneId":"55109"},{"alias":"GPATCH7","entrezGeneId":"55109"},{"alias":"HSU84971","entrezGeneId":"55109"},{"alias":"HUS84971","entrezGeneId":"55109"},{"alias":"VG5Q","entrezGeneId":"55109"},{"alias":"mago","entrezGeneId":"55110"},{"alias":"magoh","entrezGeneId":"55110"},{"alias":"MGN2","entrezGeneId":"55110"},{"alias":"GNRPX","entrezGeneId":"55111"},{"alias":"FAP163","entrezGeneId":"55112"},{"alias":"SRPS6","entrezGeneId":"55112"},{"alias":"SRTD8","entrezGeneId":"55112"},{"alias":"hXkr8","entrezGeneId":"55113"},{"alias":"XRG8","entrezGeneId":"55113"},{"alias":"MST066","entrezGeneId":"55114"},{"alias":"MST110","entrezGeneId":"55114"},{"alias":"MSTP038","entrezGeneId":"55114"},{"alias":"MSTP066","entrezGeneId":"55114"},{"alias":"MSTP110","entrezGeneId":"55114"},{"alias":"NADRIN","entrezGeneId":"55114"},{"alias":"PP367","entrezGeneId":"55114"},{"alias":"PP4534","entrezGeneId":"55114"},{"alias":"RICH-1","entrezGeneId":"55114"},{"alias":"RICH1","entrezGeneId":"55114"},{"alias":"WBP15","entrezGeneId":"55114"},{"alias":"hv7-3","entrezGeneId":"55117"},{"alias":"NTT73","entrezGeneId":"55117"},{"alias":"SBAT1","entrezGeneId":"55117"},{"alias":"V7-3","entrezGeneId":"55117"},{"alias":"ASPIC","entrezGeneId":"55118"},{"alias":"ASPIC1","entrezGeneId":"55118"},{"alias":"CEP-68","entrezGeneId":"55118"},{"alias":"NET1","entrezGeneId":"55119"},{"alias":"FAAP43","entrezGeneId":"55120"},{"alias":"PHF9","entrezGeneId":"55120"},{"alias":"POG","entrezGeneId":"55120"},{"alias":"C6orf166","entrezGeneId":"55122"},{"alias":"dJ486L4.2","entrezGeneId":"55122"},{"alias":"FBI1","entrezGeneId":"55122"},{"alias":"CT80","entrezGeneId":"55124"},{"alias":"HILI","entrezGeneId":"55124"},{"alias":"mili","entrezGeneId":"55124"},{"alias":"PIWIL1L","entrezGeneId":"55124"},{"alias":"PPP1R62","entrezGeneId":"55125"},{"alias":"BAP28","entrezGeneId":"55127"},{"alias":"UTP10","entrezGeneId":"55127"},{"alias":"GC109","entrezGeneId":"55128"},{"alias":"RNF137","entrezGeneId":"55128"},{"alias":"SS-56","entrezGeneId":"55128"},{"alias":"SS56","entrezGeneId":"55128"},{"alias":"SCAR10","entrezGeneId":"55129"},{"alias":"TMEM16K","entrezGeneId":"55129"},{"alias":"CILD23","entrezGeneId":"55130"},{"alias":"ANES","entrezGeneId":"55131"},{"alias":"LARP2","entrezGeneId":"55132"},{"alias":"DKCB3","entrezGeneId":"55135"},{"alias":"TCAB1","entrezGeneId":"55135"},{"alias":"WDR79","entrezGeneId":"55135"},{"alias":"ZNF744","entrezGeneId":"55139"},{"alias":"KAT9","entrezGeneId":"55140"},{"alias":"C15orf25","entrezGeneId":"55142"},{"alias":"CEP27","entrezGeneId":"55142"},{"alias":"HsT17025","entrezGeneId":"55142"},{"alias":"BOR","entrezGeneId":"55143"},{"alias":"BOREALIN","entrezGeneId":"55143"},{"alias":"DasraB","entrezGeneId":"55143"},{"alias":"MESRGP","entrezGeneId":"55143"},{"alias":"LRRC5","entrezGeneId":"55144"},{"alias":"DYT6","entrezGeneId":"55145"},{"alias":"ZNF374","entrezGeneId":"55146"},{"alias":"CAPERbeta","entrezGeneId":"55147"},{"alias":"PP239","entrezGeneId":"55147"},{"alias":"RNPC4","entrezGeneId":"55147"},{"alias":"C14orf130","entrezGeneId":"55148"},{"alias":"PAPD1","entrezGeneId":"55149"},{"alias":"SPAX4","entrezGeneId":"55149"},{"alias":"bA219P18.1","entrezGeneId":"55151"},{"alias":"C9orf87","entrezGeneId":"55151"},{"alias":"D4Ertd89e","entrezGeneId":"55151"},{"alias":"OI14","entrezGeneId":"55151"},{"alias":"TRIC-B","entrezGeneId":"55151"},{"alias":"TRICB","entrezGeneId":"55151"},{"alias":"LST005","entrezGeneId":"55154"},{"alias":"MMYAT","entrezGeneId":"55154"},{"alias":"MST","entrezGeneId":"55154"},{"alias":"Arcp","entrezGeneId":"55156"},{"alias":"ASPRS","entrezGeneId":"55157"},{"alias":"LBSL","entrezGeneId":"55157"},{"alias":"MT-ASPRS","entrezGeneId":"55157"},{"alias":"FANCW","entrezGeneId":"55159"},{"alias":"RNF201","entrezGeneId":"55159"},{"alias":"GrinchGEF","entrezGeneId":"55160"},{"alias":"1600019D15Rik","entrezGeneId":"55161"},{"alias":"SHINC-3","entrezGeneId":"55161"},{"alias":"SHINC3","entrezGeneId":"55161"},{"alias":"HEL-S-302","entrezGeneId":"55163"},{"alias":"PDXPO","entrezGeneId":"55163"},{"alias":"GRIM-1","entrezGeneId":"55164"},{"alias":"Shq1p","entrezGeneId":"55164"},{"alias":"C10orf3","entrezGeneId":"55165"},{"alias":"CT111","entrezGeneId":"55165"},{"alias":"MARCH","entrezGeneId":"55165"},{"alias":"URCC6","entrezGeneId":"55165"},{"alias":"C6orf139","entrezGeneId":"55166"},{"alias":"CENP-Q","entrezGeneId":"55166"},{"alias":"MSL-2","entrezGeneId":"55167"},{"alias":"MSL2L1","entrezGeneId":"55167"},{"alias":"RNF184","entrezGeneId":"55167"},{"alias":"HumanS18b","entrezGeneId":"55168"},{"alias":"MRP-S18-3","entrezGeneId":"55168"},{"alias":"MRPS18-3","entrezGeneId":"55168"},{"alias":"S18bmt","entrezGeneId":"55168"},{"alias":"HRMT1L6","entrezGeneId":"55170"},{"alias":"C14orf104","entrezGeneId":"55172"},{"alias":"CILD10","entrezGeneId":"55172"},{"alias":"KTU","entrezGeneId":"55172"},{"alias":"PF13","entrezGeneId":"55172"},{"alias":"MRP-S10","entrezGeneId":"55173"},{"alias":"PNAS-122","entrezGeneId":"55173"},{"alias":"C8orf35","entrezGeneId":"55174"},{"alias":"INT10","entrezGeneId":"55174"},{"alias":"FAM82A2","entrezGeneId":"55177"},{"alias":"FAM82C","entrezGeneId":"55177"},{"alias":"ptpip51","entrezGeneId":"55177"},{"alias":"RMD-3","entrezGeneId":"55177"},{"alias":"RMD3","entrezGeneId":"55177"},{"alias":"RMTL1","entrezGeneId":"55178"},{"alias":"RNMTL1","entrezGeneId":"55178"},{"alias":"FAIM1","entrezGeneId":"55179"},{"alias":"LINS","entrezGeneId":"55180"},{"alias":"MRT27","entrezGeneId":"55180"},{"alias":"WINS1","entrezGeneId":"55180"},{"alias":"C17orf71","entrezGeneId":"55181"},{"alias":"C1orf164","entrezGeneId":"55182"},{"alias":"ANKRD64","entrezGeneId":"55184"},{"alias":"bA189K21.1","entrezGeneId":"55184"},{"alias":"bA189K21.8","entrezGeneId":"55184"},{"alias":"C20orf12","entrezGeneId":"55184"},{"alias":"C20orf84","entrezGeneId":"55184"},{"alias":"dJ568F9.2","entrezGeneId":"55184"},{"alias":"PNC2","entrezGeneId":"55186"},{"alias":"hSyn","entrezGeneId":"55188"},{"alias":"RIC8","entrezGeneId":"55188"},{"alias":"APS1","entrezGeneId":"55190"},{"alias":"ASP1","entrezGeneId":"55190"},{"alias":"DIPP3b","entrezGeneId":"55190"},{"alias":"DIPP3beta","entrezGeneId":"55190"},{"alias":"hDIPP3beta","entrezGeneId":"55190"},{"alias":"BAF180","entrezGeneId":"55193"},{"alias":"PB1","entrezGeneId":"55193"},{"alias":"C1orf78","entrezGeneId":"55194"},{"alias":"FAM176B","entrezGeneId":"55194"},{"alias":"C14orf105","entrezGeneId":"55195"},{"alias":"C12orf35","entrezGeneId":"55196"},{"alias":"GET","entrezGeneId":"55196"},{"alias":"UTA2-1","entrezGeneId":"55196"},{"alias":"HsT3101","entrezGeneId":"55197"},{"alias":"P15RS","entrezGeneId":"55197"},{"alias":"DIP13B","entrezGeneId":"55198"},{"alias":"FAM86C","entrezGeneId":"55199"},{"alias":"MyoGEF","entrezGeneId":"55200"},{"alias":"BPY2IP1","entrezGeneId":"55201"},{"alias":"C19orf5","entrezGeneId":"55201"},{"alias":"MAP8","entrezGeneId":"55201"},{"alias":"VCY2IP-1","entrezGeneId":"55201"},{"alias":"VCY2IP1","entrezGeneId":"55201"},{"alias":"LGIL2","entrezGeneId":"55203"},{"alias":"GPP34R","entrezGeneId":"55204"},{"alias":"MOP3","entrezGeneId":"55206"},{"alias":"Sno","entrezGeneId":"55206"},{"alias":"ARL10C","entrezGeneId":"55207"},{"alias":"Gie1","entrezGeneId":"55207"},{"alias":"C13orf17","entrezGeneId":"55208"},{"alias":"HAYOS","entrezGeneId":"55210"},{"alias":"2410091M23Rik","entrezGeneId":"55211"},{"alias":"BBS2L1","entrezGeneId":"55212"},{"alias":"CLLD7","entrezGeneId":"55213"},{"alias":"CLLL7","entrezGeneId":"55213"},{"alias":"GLP","entrezGeneId":"55213"},{"alias":"RDEOA","entrezGeneId":"55213"},{"alias":"LEPREL1","entrezGeneId":"55214"},{"alias":"MCVD","entrezGeneId":"55214"},{"alias":"MLAT4","entrezGeneId":"55214"},{"alias":"KIAA1794","entrezGeneId":"55215"},{"alias":"C11orf57","entrezGeneId":"55216"},{"alias":"AUTSX6","entrezGeneId":"55217"},{"alias":"BBOX2","entrezGeneId":"55217"},{"alias":"TMLD","entrezGeneId":"55217"},{"alias":"TMLH","entrezGeneId":"55217"},{"alias":"TMLHED","entrezGeneId":"55217"},{"alias":"XAP130","entrezGeneId":"55217"},{"alias":"C14orf114","entrezGeneId":"55218"},{"alias":"EXDL2","entrezGeneId":"55218"},{"alias":"MACOILIN","entrezGeneId":"55219"},{"alias":"TMEM57","entrezGeneId":"55219"},{"alias":"DEAR1","entrezGeneId":"55223"},{"alias":"EKI2","entrezGeneId":"55224"},{"alias":"HMFT1716","entrezGeneId":"55224"},{"alias":"ALP","entrezGeneId":"55226"},{"alias":"Kre33","entrezGeneId":"55226"},{"alias":"NET43","entrezGeneId":"55226"},{"alias":"dJ523E19.1","entrezGeneId":"55227"},{"alias":"LANO","entrezGeneId":"55227"},{"alias":"PNMAL1","entrezGeneId":"55228"},{"alias":"C2orf6","entrezGeneId":"55233"},{"alias":"MATS1","entrezGeneId":"55233"},{"alias":"MOB1","entrezGeneId":"55233"},{"alias":"Mob4B","entrezGeneId":"55233"},{"alias":"MOBK1B","entrezGeneId":"55233"},{"alias":"MOBKL1B","entrezGeneId":"55233"},{"alias":"BWD","entrezGeneId":"55234"},{"alias":"fSAP57","entrezGeneId":"55234"},{"alias":"SMU-1","entrezGeneId":"55234"},{"alias":"E1-L2","entrezGeneId":"55236"},{"alias":"MOP-4","entrezGeneId":"55236"},{"alias":"UBE1L2","entrezGeneId":"55236"},{"alias":"C14orf115","entrezGeneId":"55237"},{"alias":"vertnin","entrezGeneId":"55237"},{"alias":"SNAT7","entrezGeneId":"55238"},{"alias":"TPA1","entrezGeneId":"55239"},{"alias":"AHMIO2","entrezGeneId":"55240"},{"alias":"dudlin-2","entrezGeneId":"55240"},{"alias":"dudulin-2","entrezGeneId":"55240"},{"alias":"pHyde","entrezGeneId":"55240"},{"alias":"STMP3","entrezGeneId":"55240"},{"alias":"TSAP6","entrezGeneId":"55240"},{"alias":"KIRREL","entrezGeneId":"55243"},{"alias":"NEPH1","entrezGeneId":"55243"},{"alias":"MATE1","entrezGeneId":"55244"},{"alias":"BFZB","entrezGeneId":"55245"},{"alias":"C20orf44","entrezGeneId":"55245"},{"alias":"CBP3","entrezGeneId":"55245"},{"alias":"UQCC","entrezGeneId":"55245"},{"alias":"FGP2","entrezGeneId":"55247"},{"alias":"FPG2","entrezGeneId":"55247"},{"alias":"hFPG2","entrezGeneId":"55247"},{"alias":"hNEI3","entrezGeneId":"55247"},{"alias":"NEI3","entrezGeneId":"55247"},{"alias":"ZGRF3","entrezGeneId":"55247"},{"alias":"C1orf75","entrezGeneId":"55248"},{"alias":"GRNG","entrezGeneId":"55249"},{"alias":"HCCA1","entrezGeneId":"55249"},{"alias":"HCCA2","entrezGeneId":"55249"},{"alias":"YY1AP","entrezGeneId":"55249"},{"alias":"MRT58","entrezGeneId":"55250"},{"alias":"SHINC-2","entrezGeneId":"55250"},{"alias":"STATIP1","entrezGeneId":"55250"},{"alias":"StIP","entrezGeneId":"55250"},{"alias":"C20orf36","entrezGeneId":"55251"},{"alias":"ASXH2","entrezGeneId":"55252"},{"alias":"SHAPNS","entrezGeneId":"55252"},{"alias":"RSAFD1","entrezGeneId":"55253"},{"alias":"TYW1A","entrezGeneId":"55253"},{"alias":"YPL207W","entrezGeneId":"55253"},{"alias":"MSTP048","entrezGeneId":"55255"},{"alias":"APL1","entrezGeneId":"55256"},{"alias":"ARD","entrezGeneId":"55256"},{"alias":"Fe-ARD","entrezGeneId":"55256"},{"alias":"HMFT1638","entrezGeneId":"55256"},{"alias":"MTCBP1","entrezGeneId":"55256"},{"alias":"mtnD","entrezGeneId":"55256"},{"alias":"Ni-ARD","entrezGeneId":"55256"},{"alias":"SIPL","entrezGeneId":"55256"},{"alias":"C20orf20","entrezGeneId":"55257"},{"alias":"Eaf7","entrezGeneId":"55257"},{"alias":"MRG15BP","entrezGeneId":"55257"},{"alias":"URCC4","entrezGeneId":"55257"},{"alias":"SOFAT","entrezGeneId":"55258"},{"alias":"THS2","entrezGeneId":"55258"},{"alias":"TSH2","entrezGeneId":"55258"},{"alias":"LAS1","entrezGeneId":"55259"},{"alias":"PPP1R54","entrezGeneId":"55259"},{"alias":"C22orf26","entrezGeneId":"55267"},{"alias":"PSP1","entrezGeneId":"55269"},{"alias":"MTH2","entrezGeneId":"55270"},{"alias":"NUDT15D","entrezGeneId":"55270"},{"alias":"BRMS2","entrezGeneId":"55272"},{"alias":"C15orf12","entrezGeneId":"55272"},{"alias":"MRPS4","entrezGeneId":"55272"},{"alias":"BAF45A","entrezGeneId":"55274"},{"alias":"XAP135","entrezGeneId":"55274"},{"alias":"HCCS1","entrezGeneId":"55275"},{"alias":"hVps53L","entrezGeneId":"55275"},{"alias":"PCH2E","entrezGeneId":"55275"},{"alias":"pp13624","entrezGeneId":"55275"},{"alias":"MSTP006","entrezGeneId":"55276"},{"alias":"GatA","entrezGeneId":"55278"},{"alias":"C19L1","entrezGeneId":"55280"},{"alias":"hDrn1","entrezGeneId":"55280"},{"alias":"SCAR17","entrezGeneId":"55280"},{"alias":"RORBP70","entrezGeneId":"55282"},{"alias":"XLHSRF2","entrezGeneId":"55282"},{"alias":"TRP-ML3","entrezGeneId":"55283"},{"alias":"TRPML3","entrezGeneId":"55283"},{"alias":"UBC-16","entrezGeneId":"55284"},{"alias":"UBC16","entrezGeneId":"55284"},{"alias":"ARHT1","entrezGeneId":"55288"},{"alias":"MIRO-1","entrezGeneId":"55288"},{"alias":"MIRO1","entrezGeneId":"55288"},{"alias":"BRFU","entrezGeneId":"55290"},{"alias":"TFIIIB50","entrezGeneId":"55290"},{"alias":"C11orf23","entrezGeneId":"55291"},{"alias":"PP6R3","entrezGeneId":"55291"},{"alias":"SAP190","entrezGeneId":"55291"},{"alias":"SAPL","entrezGeneId":"55291"},{"alias":"SAPLa","entrezGeneId":"55291"},{"alias":"SAPS3","entrezGeneId":"55291"},{"alias":"ATTP","entrezGeneId":"55293"},{"alias":"UEV3","entrezGeneId":"55293"},{"alias":"AGO","entrezGeneId":"55294"},{"alias":"CDC4","entrezGeneId":"55294"},{"alias":"FBW6","entrezGeneId":"55294"},{"alias":"FBW7","entrezGeneId":"55294"},{"alias":"FBX30","entrezGeneId":"55294"},{"alias":"FBXO30","entrezGeneId":"55294"},{"alias":"FBXW6","entrezGeneId":"55294"},{"alias":"hAgo","entrezGeneId":"55294"},{"alias":"hCdc4","entrezGeneId":"55294"},{"alias":"SEL-10","entrezGeneId":"55294"},{"alias":"SEL10","entrezGeneId":"55294"},{"alias":"HSD8","entrezGeneId":"55297"},{"alias":"p56","entrezGeneId":"55297"},{"alias":"BRIX","entrezGeneId":"55299"},{"alias":"BXDC2","entrezGeneId":"55299"},{"alias":"PI4KIIB","entrezGeneId":"55300"},{"alias":"PIK42B","entrezGeneId":"55300"},{"alias":"AURA1","entrezGeneId":"55301"},{"alias":"SAST","entrezGeneId":"55301"},{"alias":"THEDC1","entrezGeneId":"55301"},{"alias":"IAN-1","entrezGeneId":"55303"},{"alias":"IAN1","entrezGeneId":"55303"},{"alias":"IMAP4","entrezGeneId":"55303"},{"alias":"MSTP062","entrezGeneId":"55303"},{"alias":"C20orf38","entrezGeneId":"55304"},{"alias":"dJ718P11","entrezGeneId":"55304"},{"alias":"dJ718P11.1","entrezGeneId":"55304"},{"alias":"hLCB2b","entrezGeneId":"55304"},{"alias":"LCB 3","entrezGeneId":"55304"},{"alias":"LCB2B","entrezGeneId":"55304"},{"alias":"LCB3","entrezGeneId":"55304"},{"alias":"SPT 3","entrezGeneId":"55304"},{"alias":"SPT3","entrezGeneId":"55304"},{"alias":"SPTLC2L","entrezGeneId":"55304"},{"alias":"DDX19-DDX19L","entrezGeneId":"55308"},{"alias":"DDX19L","entrezGeneId":"55308"},{"alias":"EZF-2","entrezGeneId":"55311"},{"alias":"EZF2","entrezGeneId":"55311"},{"alias":"ZSCAN17","entrezGeneId":"55311"},{"alias":"RIFK","entrezGeneId":"55312"},{"alias":"CSTP1","entrezGeneId":"55313"},{"alias":"ENT3","entrezGeneId":"55315"},{"alias":"HCLAP","entrezGeneId":"55315"},{"alias":"HJCD","entrezGeneId":"55315"},{"alias":"PHID","entrezGeneId":"55315"},{"alias":"C20orf29","entrezGeneId":"55317"},{"alias":"C4orf43","entrezGeneId":"55319"},{"alias":"C14orf106","entrezGeneId":"55320"},{"alias":"HSA242977","entrezGeneId":"55320"},{"alias":"KNL2","entrezGeneId":"55320"},{"alias":"M18BP1","entrezGeneId":"55320"},{"alias":"C20orf46","entrezGeneId":"55321"},{"alias":"ACHN","entrezGeneId":"55323"},{"alias":"EST201864","entrezGeneId":"55324"},{"alias":"BHD","entrezGeneId":"55325"},{"alias":"C4orf20","entrezGeneId":"55325"},{"alias":"1AGPAT5","entrezGeneId":"55326"},{"alias":"LPAATE","entrezGeneId":"55326"},{"alias":"LIN-7-C","entrezGeneId":"55327"},{"alias":"LIN-7C","entrezGeneId":"55327"},{"alias":"MALS-3","entrezGeneId":"55327"},{"alias":"MALS3","entrezGeneId":"55327"},{"alias":"VELI3","entrezGeneId":"55327"},{"alias":"C10orf59","entrezGeneId":"55328"},{"alias":"RENALASE","entrezGeneId":"55328"},{"alias":"SPATA40","entrezGeneId":"55329"},{"alias":"BCAS4L","entrezGeneId":"55330"},{"alias":"BLOS4","entrezGeneId":"55330"},{"alias":"CNO","entrezGeneId":"55330"},{"alias":"APHC","entrezGeneId":"55331"},{"alias":"PHCA","entrezGeneId":"55331"},{"alias":"PLDECO","entrezGeneId":"55331"},{"alias":"DRAM","entrezGeneId":"55332"},{"alias":"ARIP2","entrezGeneId":"55333"},{"alias":"OMP25","entrezGeneId":"55333"},{"alias":"ZIP-9","entrezGeneId":"55334"},{"alias":"ZIP9","entrezGeneId":"55334"},{"alias":"FP944","entrezGeneId":"55335"},{"alias":"NIPSNAP3","entrezGeneId":"55335"},{"alias":"SNAP1","entrezGeneId":"55335"},{"alias":"FBL8","entrezGeneId":"55336"},{"alias":"IRAV","entrezGeneId":"55337"},{"alias":"RyDEN","entrezGeneId":"55337"},{"alias":"NET14","entrezGeneId":"55339"},{"alias":"WDC146","entrezGeneId":"55339"},{"alias":"HIMAP3","entrezGeneId":"55340"},{"alias":"IAN-5","entrezGeneId":"55340"},{"alias":"IAN4","entrezGeneId":"55340"},{"alias":"IAN4L1","entrezGeneId":"55340"},{"alias":"IAN5","entrezGeneId":"55340"},{"alias":"IMAP3","entrezGeneId":"55340"},{"alias":"IROD","entrezGeneId":"55340"},{"alias":"HEL162","entrezGeneId":"55342"},{"alias":"ILF3L","entrezGeneId":"55342"},{"alias":"p74","entrezGeneId":"55342"},{"alias":"SPNR","entrezGeneId":"55342"},{"alias":"CDG2C","entrezGeneId":"55343"},{"alias":"FUCT1","entrezGeneId":"55343"},{"alias":"LL0XNC01-136G2.1","entrezGeneId":"55344"},{"alias":"C4orf21","entrezGeneId":"55345"},{"alias":"dJ85M6.3","entrezGeneId":"55346"},{"alias":"HSA238982","entrezGeneId":"55350"},{"alias":"HSA250839","entrezGeneId":"55351"},{"alias":"STK32","entrezGeneId":"55351"},{"alias":"STKG6","entrezGeneId":"55351"},{"alias":"YANK2","entrezGeneId":"55351"},{"alias":"C17orf79","entrezGeneId":"55352"},{"alias":"COPR5","entrezGeneId":"55352"},{"alias":"HSA272196","entrezGeneId":"55352"},{"alias":"TTP1","entrezGeneId":"55352"},{"alias":"LAPTM4beta","entrezGeneId":"55353"},{"alias":"LC27","entrezGeneId":"55353"},{"alias":"FAKTS","entrezGeneId":"55355"},{"alias":"hFLEG1","entrezGeneId":"55355"},{"alias":"URLC9","entrezGeneId":"55355"},{"alias":"FLIPT1","entrezGeneId":"55356"},{"alias":"PRO34686","entrezGeneId":"55356"},{"alias":"PARIS-1","entrezGeneId":"55357"},{"alias":"PARIS1","entrezGeneId":"55357"},{"alias":"TBC1D2A","entrezGeneId":"55357"},{"alias":"NOK","entrezGeneId":"55359"},{"alias":"SuRTK106","entrezGeneId":"55359"},{"alias":"PI4KII","entrezGeneId":"55361"},{"alias":"PIK42A","entrezGeneId":"55361"},{"alias":"C6orf110","entrezGeneId":"55362"},{"alias":"CT155","entrezGeneId":"55363"},{"alias":"EDAG","entrezGeneId":"55363"},{"alias":"EDAG-1","entrezGeneId":"55363"},{"alias":"NDR","entrezGeneId":"55363"},{"alias":"RWDD5","entrezGeneId":"55364"},{"alias":"GS188","entrezGeneId":"55365"},{"alias":"HCA112","entrezGeneId":"55365"},{"alias":"MS4B1","entrezGeneId":"55365"},{"alias":"BNMD17","entrezGeneId":"55366"},{"alias":"GPR48","entrezGeneId":"55366"},{"alias":"LRDD","entrezGeneId":"55367"},{"alias":"PIDD","entrezGeneId":"55367"},{"alias":"C20orf192","entrezGeneId":"55370"},{"alias":"PPP4R1P1","entrezGeneId":"55370"},{"alias":"PRO1085","entrezGeneId":"55370"},{"alias":"PRO1580","entrezGeneId":"55374"},{"alias":"p34","entrezGeneId":"55379"},{"alias":"PRO1855","entrezGeneId":"55379"},{"alias":"EPS15L2","entrezGeneId":"55380"},{"alias":"PRO1866","entrezGeneId":"55380"},{"alias":"FP504","entrezGeneId":"55384"},{"alias":"GTL2","entrezGeneId":"55384"},{"alias":"LINC00023","entrezGeneId":"55384"},{"alias":"NCRNA00023","entrezGeneId":"55384"},{"alias":"onco-lncRNA-83","entrezGeneId":"55384"},{"alias":"prebp1","entrezGeneId":"55384"},{"alias":"PRO0518","entrezGeneId":"55384"},{"alias":"PRO2160","entrezGeneId":"55384"},{"alias":"CNA43","entrezGeneId":"55388"},{"alias":"DNA43","entrezGeneId":"55388"},{"alias":"PRO2249","entrezGeneId":"55388"},{"alias":"C17orf85","entrezGeneId":"55421"},{"alias":"ELG","entrezGeneId":"55421"},{"alias":"HSA277841","entrezGeneId":"55421"},{"alias":"RITA","entrezGeneId":"55422"},{"alias":"ZNF361","entrezGeneId":"55422"},{"alias":"ZNF463","entrezGeneId":"55422"},{"alias":"bA77C3.1","entrezGeneId":"55423"},{"alias":"CD172g","entrezGeneId":"55423"},{"alias":"SIRP-B2","entrezGeneId":"55423"},{"alias":"SIRPB2","entrezGeneId":"55423"},{"alias":"SIRPgamma","entrezGeneId":"55423"},{"alias":"AD029","entrezGeneId":"55425"},{"alias":"bA245H20.2","entrezGeneId":"55425"},{"alias":"KIAA1704","entrezGeneId":"55425"},{"alias":"LSR7","entrezGeneId":"55425"},{"alias":"DUBA8","entrezGeneId":"55432"},{"alias":"OTUD2","entrezGeneId":"55432"},{"alias":"PRO0907","entrezGeneId":"55432"},{"alias":"2C18","entrezGeneId":"55435"},{"alias":"C4orf16","entrezGeneId":"55435"},{"alias":"gamma-BAR","entrezGeneId":"55435"},{"alias":"GBAR","entrezGeneId":"55435"},{"alias":"PRO0971","entrezGeneId":"55435"},{"alias":"ALS2CR2","entrezGeneId":"55437"},{"alias":"CALS-21","entrezGeneId":"55437"},{"alias":"ILPIP","entrezGeneId":"55437"},{"alias":"ILPIPA","entrezGeneId":"55437"},{"alias":"PAPK","entrezGeneId":"55437"},{"alias":"PRO1038","entrezGeneId":"55437"},{"alias":"AS1DHRS4","entrezGeneId":"55449"},{"alias":"C14orf167","entrezGeneId":"55449"},{"alias":"C14orf67","entrezGeneId":"55449"},{"alias":"DHRS4AS1","entrezGeneId":"55449"},{"alias":"PRO1488","entrezGeneId":"55449"},{"alias":"PRO1489","entrezGeneId":"55450"},{"alias":"C14orf107","entrezGeneId":"55451"},{"alias":"NCRNA00216","entrezGeneId":"55451"},{"alias":"PRO1617","entrezGeneId":"55451"},{"alias":"beta4GalNAcT","entrezGeneId":"55454"},{"alias":"ChGn-2","entrezGeneId":"55454"},{"alias":"CHGN2","entrezGeneId":"55454"},{"alias":"GALNACT-2","entrezGeneId":"55454"},{"alias":"GALNACT2","entrezGeneId":"55454"},{"alias":"PRO0082","entrezGeneId":"55454"},{"alias":"MST104","entrezGeneId":"55466"},{"alias":"MSTP104","entrezGeneId":"55466"},{"alias":"PRO1472","entrezGeneId":"55466"},{"alias":"C2orf56","entrezGeneId":"55471"},{"alias":"MidA","entrezGeneId":"55471"},{"alias":"PRO1853","entrezGeneId":"55471"},{"alias":"C8orf39","entrezGeneId":"55472"},{"alias":"PRO1905","entrezGeneId":"55472"},{"alias":"PRO2207","entrezGeneId":"55486"},{"alias":"PSARL","entrezGeneId":"55486"},{"alias":"PSARL1","entrezGeneId":"55486"},{"alias":"PSENIP2","entrezGeneId":"55486"},{"alias":"RHBDS1","entrezGeneId":"55486"},{"alias":"EKI","entrezGeneId":"55500"},{"alias":"EKI 1","entrezGeneId":"55500"},{"alias":"EKI1","entrezGeneId":"55500"},{"alias":"Nbla10396","entrezGeneId":"55500"},{"alias":"C4S-2","entrezGeneId":"55501"},{"alias":"C4ST-2","entrezGeneId":"55501"},{"alias":"C4ST2","entrezGeneId":"55501"},{"alias":"bHLHb41","entrezGeneId":"55502"},{"alias":"bHLHc23","entrezGeneId":"55502"},{"alias":"C-HAIRY1","entrezGeneId":"55502"},{"alias":"HES-6","entrezGeneId":"55502"},{"alias":"ABP/ZF","entrezGeneId":"55503"},{"alias":"CAT1","entrezGeneId":"55503"},{"alias":"CATL","entrezGeneId":"55503"},{"alias":"ECAC2","entrezGeneId":"55503"},{"alias":"HSA277909","entrezGeneId":"55503"},{"alias":"LP6728","entrezGeneId":"55503"},{"alias":"ZFAB","entrezGeneId":"55503"},{"alias":"TAJ","entrezGeneId":"55504"},{"alias":"TAJ-alpha","entrezGeneId":"55504"},{"alias":"TRADE","entrezGeneId":"55504"},{"alias":"TROY","entrezGeneId":"55504"},{"alias":"DKCB1","entrezGeneId":"55505"},{"alias":"NOLA3","entrezGeneId":"55505"},{"alias":"NOP10P","entrezGeneId":"55505"},{"alias":"macroH2A2","entrezGeneId":"55506"},{"alias":"BLOV1","entrezGeneId":"55508"},{"alias":"JDP1","entrezGeneId":"55509"},{"alias":"JUNDM1","entrezGeneId":"55509"},{"alias":"SNFT","entrezGeneId":"55509"},{"alias":"CT13","entrezGeneId":"55510"},{"alias":"HAGE","entrezGeneId":"55510"},{"alias":"CT14","entrezGeneId":"55511"},{"alias":"SAGE","entrezGeneId":"55511"},{"alias":"NSMASE2","entrezGeneId":"55512"},{"alias":"ACCN4","entrezGeneId":"55515"},{"alias":"BNAC4","entrezGeneId":"55515"},{"alias":"D29","entrezGeneId":"55520"},{"alias":"ANPH","entrezGeneId":"55521"},{"alias":"HAPRIN","entrezGeneId":"55521"},{"alias":"RBCC728","entrezGeneId":"55521"},{"alias":"RNF98","entrezGeneId":"55521"},{"alias":"AMOXAD","entrezGeneId":"55526"},{"alias":"CMT2Q","entrezGeneId":"55526"},{"alias":"EPRAP","entrezGeneId":"55527"},{"alias":"TMEM55A","entrezGeneId":"55529"},{"alias":"HMDPC","entrezGeneId":"55532"},{"alias":"HMNDYT1","entrezGeneId":"55532"},{"alias":"ZnT-10","entrezGeneId":"55532"},{"alias":"ZNT10","entrezGeneId":"55532"},{"alias":"ZNT8","entrezGeneId":"55532"},{"alias":"ZRC1","entrezGeneId":"55532"},{"alias":"CAGH3","entrezGeneId":"55534"},{"alias":"ERDA3","entrezGeneId":"55534"},{"alias":"GDN","entrezGeneId":"55534"},{"alias":"MAM-2","entrezGeneId":"55534"},{"alias":"MAM2","entrezGeneId":"55534"},{"alias":"TNRC3","entrezGeneId":"55534"},{"alias":"JPO2","entrezGeneId":"55536"},{"alias":"R1","entrezGeneId":"55536"},{"alias":"RAM2","entrezGeneId":"55536"},{"alias":"BWRT","entrezGeneId":"55539"},{"alias":"HSA404617","entrezGeneId":"55539"},{"alias":"CRL4","entrezGeneId":"55540"},{"alias":"EVI27","entrezGeneId":"55540"},{"alias":"IL17BR","entrezGeneId":"55540"},{"alias":"IL17RH1","entrezGeneId":"55540"},{"alias":"dJ800J21.2","entrezGeneId":"55544"},{"alias":"HSRNASEB","entrezGeneId":"55544"},{"alias":"RNPC1","entrezGeneId":"55544"},{"alias":"SEB4B","entrezGeneId":"55544"},{"alias":"SEB4D","entrezGeneId":"55544"},{"alias":"HPX5","entrezGeneId":"55545"},{"alias":"HSHPX5","entrezGeneId":"55545"},{"alias":"MSX2P","entrezGeneId":"55545"},{"alias":"HSZFP36","entrezGeneId":"55552"},{"alias":"HSSOX6","entrezGeneId":"55553"},{"alias":"SOXD","entrezGeneId":"55553"},{"alias":"ACO","entrezGeneId":"55554"},{"alias":"HSRNASPH","entrezGeneId":"55554"},{"alias":"FUCD","entrezGeneId":"55556"},{"alias":"RTS","entrezGeneId":"55556"},{"alias":"TYMSAS","entrezGeneId":"55556"},{"alias":"6.3","entrezGeneId":"55558"},{"alias":"HSSEXGENE","entrezGeneId":"55558"},{"alias":"PLXN3","entrezGeneId":"55558"},{"alias":"PLXN4","entrezGeneId":"55558"},{"alias":"XAP-6","entrezGeneId":"55558"},{"alias":"UCHL5IP","entrezGeneId":"55559"},{"alias":"UIP1","entrezGeneId":"55559"},{"alias":"DMPK2","entrezGeneId":"55561"},{"alias":"HSMDPKIN","entrezGeneId":"55561"},{"alias":"KAPPA-200","entrezGeneId":"55561"},{"alias":"MRCKG","entrezGeneId":"55561"},{"alias":"MRCKgamma","entrezGeneId":"55561"},{"alias":"DNAHC3-B","entrezGeneId":"55567"},{"alias":"DNAHC3B","entrezGeneId":"55567"},{"alias":"HDHC8","entrezGeneId":"55567"},{"alias":"HEL-36","entrezGeneId":"55567"},{"alias":"HSADHC3","entrezGeneId":"55567"},{"alias":"GALNACT10","entrezGeneId":"55568"},{"alias":"PPGALNACT10","entrezGeneId":"55568"},{"alias":"PPGANTASE10","entrezGeneId":"55568"},{"alias":"C2orf29","entrezGeneId":"55571"},{"alias":"C40","entrezGeneId":"55571"},{"alias":"FP634","entrezGeneId":"55572"},{"alias":"H17","entrezGeneId":"55572"},{"alias":"H41","entrezGeneId":"55573"},{"alias":"FEEL2","entrezGeneId":"55576"},{"alias":"FELE-2","entrezGeneId":"55576"},{"alias":"FELL2","entrezGeneId":"55576"},{"alias":"FEX2","entrezGeneId":"55576"},{"alias":"HARE","entrezGeneId":"55576"},{"alias":"SCARH1","entrezGeneId":"55576"},{"alias":"GNK","entrezGeneId":"55577"},{"alias":"HSA242910","entrezGeneId":"55577"},{"alias":"C13","entrezGeneId":"55578"},{"alias":"C13orf19","entrezGeneId":"55578"},{"alias":"FAM48A","entrezGeneId":"55578"},{"alias":"FP757","entrezGeneId":"55578"},{"alias":"P38IP","entrezGeneId":"55578"},{"alias":"SPT20","entrezGeneId":"55578"},{"alias":"HSA243342","entrezGeneId":"55584"},{"alias":"NACHRA9","entrezGeneId":"55584"},{"alias":"GTAP","entrezGeneId":"55585"},{"alias":"NICE-5","entrezGeneId":"55585"},{"alias":"NICE5","entrezGeneId":"55585"},{"alias":"PRO3094","entrezGeneId":"55585"},{"alias":"UBE2Q","entrezGeneId":"55585"},{"alias":"ALDRL6","entrezGeneId":"55586"},{"alias":"IXL","entrezGeneId":"55588"},{"alias":"MED2","entrezGeneId":"55588"},{"alias":"BIKE","entrezGeneId":"55589"},{"alias":"HRIHFB2017","entrezGeneId":"55589"},{"alias":"VEZATIN","entrezGeneId":"55591"},{"alias":"GOLGA2B","entrezGeneId":"55592"},{"alias":"GOLGA2L1","entrezGeneId":"55592"},{"alias":"DUBA","entrezGeneId":"55593"},{"alias":"RBM40","entrezGeneId":"55599"},{"alias":"RNP","entrezGeneId":"55599"},{"alias":"SNRNP65","entrezGeneId":"55599"},{"alias":"hIntL","entrezGeneId":"55600"},{"alias":"HL-1","entrezGeneId":"55600"},{"alias":"HL1","entrezGeneId":"55600"},{"alias":"INTL","entrezGeneId":"55600"},{"alias":"ITLN","entrezGeneId":"55600"},{"alias":"LFR","entrezGeneId":"55600"},{"alias":"omentin","entrezGeneId":"55600"},{"alias":"CARF","entrezGeneId":"55602"},{"alias":"C6orf37","entrezGeneId":"55603"},{"alias":"XTP11","entrezGeneId":"55603"},{"alias":"CARMIL","entrezGeneId":"55604"},{"alias":"CARMIL1a","entrezGeneId":"55604"},{"alias":"dJ501N12.1","entrezGeneId":"55604"},{"alias":"dJ501N12.5","entrezGeneId":"55604"},{"alias":"LRRC16","entrezGeneId":"55604"},{"alias":"LRRC16A","entrezGeneId":"55604"},{"alias":"CFEOM1","entrezGeneId":"55605"},{"alias":"FEOM1","entrezGeneId":"55605"},{"alias":"FEOM3A","entrezGeneId":"55605"},{"alias":"Neurabin-I","entrezGeneId":"55607"},{"alias":"NRB1","entrezGeneId":"55607"},{"alias":"NRBI","entrezGeneId":"55607"},{"alias":"SUHW3","entrezGeneId":"55609"},{"alias":"ZNF633","entrezGeneId":"55609"},{"alias":"CCDC132","entrezGeneId":"55610"},{"alias":"VPS54L","entrezGeneId":"55610"},{"alias":"HSPC263","entrezGeneId":"55611"},{"alias":"OTB1","entrezGeneId":"55611"},{"alias":"OTU1","entrezGeneId":"55611"},{"alias":"C20orf42","entrezGeneId":"55612"},{"alias":"DTGCU2","entrezGeneId":"55612"},{"alias":"KIND1","entrezGeneId":"55612"},{"alias":"UNC112A","entrezGeneId":"55612"},{"alias":"URP1","entrezGeneId":"55612"},{"alias":"C20orf23","entrezGeneId":"55614"},{"alias":"KISC20ORF","entrezGeneId":"55614"},{"alias":"SNX23","entrezGeneId":"55614"},{"alias":"FLJ20185k","entrezGeneId":"55615"},{"alias":"PP610","entrezGeneId":"55615"},{"alias":"PROTOR-1","entrezGeneId":"55615"},{"alias":"PROTOR1","entrezGeneId":"55615"},{"alias":"ACAP4","entrezGeneId":"55616"},{"alias":"CENTB6","entrezGeneId":"55616"},{"alias":"DDEFL1","entrezGeneId":"55616"},{"alias":"UPLC1","entrezGeneId":"55616"},{"alias":"C20orf13","entrezGeneId":"55617"},{"alias":"dJ585I14.2","entrezGeneId":"55617"},{"alias":"DRIP2","entrezGeneId":"55619"},{"alias":"Nbla10300","entrezGeneId":"55619"},{"alias":"ZIZ3","entrezGeneId":"55619"},{"alias":"BKS","entrezGeneId":"55620"},{"alias":"TRM1","entrezGeneId":"55621"},{"alias":"Tan1","entrezGeneId":"55623"},{"alias":"GnT I.2","entrezGeneId":"55624"},{"alias":"gnT-I.2","entrezGeneId":"55624"},{"alias":"GNTI.2","entrezGeneId":"55624"},{"alias":"LGMD2O","entrezGeneId":"55624"},{"alias":"MEB","entrezGeneId":"55624"},{"alias":"MGAT1.2","entrezGeneId":"55624"},{"alias":"RP76","entrezGeneId":"55624"},{"alias":"DHHC7","entrezGeneId":"55625"},{"alias":"SERZ-B","entrezGeneId":"55625"},{"alias":"SERZ1","entrezGeneId":"55625"},{"alias":"ZNF370","entrezGeneId":"55625"},{"alias":"DCAF3","entrezGeneId":"55626"},{"alias":"WDR94","entrezGeneId":"55626"},{"alias":"NET13","entrezGeneId":"55627"},{"alias":"NSMASE-3","entrezGeneId":"55627"},{"alias":"NSMASE3","entrezGeneId":"55627"},{"alias":"AEZ","entrezGeneId":"55630"},{"alias":"AWMS2","entrezGeneId":"55630"},{"alias":"ZIP4","entrezGeneId":"55630"},{"alias":"dJ677H15.1","entrezGeneId":"55631"},{"alias":"KIAA1333","entrezGeneId":"55632"},{"alias":"PHF7B","entrezGeneId":"55632"},{"alias":"C6orf197","entrezGeneId":"55633"},{"alias":"ZNF673","entrezGeneId":"55634"},{"alias":"DEP.8","entrezGeneId":"55635"},{"alias":"DEPDC1-V2","entrezGeneId":"55635"},{"alias":"DEPDC1A","entrezGeneId":"55635"},{"alias":"SDP35","entrezGeneId":"55635"},{"alias":"CRG","entrezGeneId":"55636"},{"alias":"HH5","entrezGeneId":"55636"},{"alias":"IS3","entrezGeneId":"55636"},{"alias":"KAL5","entrezGeneId":"55636"},{"alias":"GOLSYN","entrezGeneId":"55638"},{"alias":"OCSYN","entrezGeneId":"55638"},{"alias":"SNPHL","entrezGeneId":"55638"},{"alias":"C14orf58","entrezGeneId":"55640"},{"alias":"CCT","entrezGeneId":"55640"},{"alias":"EPV","entrezGeneId":"55640"},{"alias":"FLVCRL14q","entrezGeneId":"55640"},{"alias":"MFSD7C","entrezGeneId":"55640"},{"alias":"PVHH","entrezGeneId":"55640"},{"alias":"GAMOS3","entrezGeneId":"55644"},{"alias":"GCPL1","entrezGeneId":"55644"},{"alias":"KAE1","entrezGeneId":"55644"},{"alias":"OSGEP1","entrezGeneId":"55644"},{"alias":"PRSMG1","entrezGeneId":"55644"},{"alias":"TCS3","entrezGeneId":"55644"},{"alias":"ZC2HC2","entrezGeneId":"55646"},{"alias":"ZLYAR","entrezGeneId":"55646"},{"alias":"GPI-MT-II","entrezGeneId":"55650"},{"alias":"HPMRS1","entrezGeneId":"55650"},{"alias":"PIG-V","entrezGeneId":"55650"},{"alias":"DKCB2","entrezGeneId":"55651"},{"alias":"NHP2P","entrezGeneId":"55651"},{"alias":"NOLA2","entrezGeneId":"55651"},{"alias":"hHRG-1","entrezGeneId":"55652"},{"alias":"HRG-1","entrezGeneId":"55652"},{"alias":"HRG1","entrezGeneId":"55652"},{"alias":"CNOL","entrezGeneId":"55653"},{"alias":"CLR19.9","entrezGeneId":"55655"},{"alias":"NALP2","entrezGeneId":"55655"},{"alias":"NBS1","entrezGeneId":"55655"},{"alias":"PAN1","entrezGeneId":"55655"},{"alias":"PYPAF2","entrezGeneId":"55655"},{"alias":"C8orf52","entrezGeneId":"55656"},{"alias":"INT8","entrezGeneId":"55656"},{"alias":"AREBP","entrezGeneId":"55657"},{"alias":"Zfp692","entrezGeneId":"55657"},{"alias":"FBP-11","entrezGeneId":"55660"},{"alias":"FBP11","entrezGeneId":"55660"},{"alias":"FLAF1","entrezGeneId":"55660"},{"alias":"FNBP3","entrezGeneId":"55660"},{"alias":"HIP-10","entrezGeneId":"55660"},{"alias":"HIP10","entrezGeneId":"55660"},{"alias":"HYPA","entrezGeneId":"55660"},{"alias":"NY-REN-6","entrezGeneId":"55660"},{"alias":"Prp40","entrezGeneId":"55660"},{"alias":"dJ686N3.1","entrezGeneId":"55661"},{"alias":"DRS1","entrezGeneId":"55661"},{"alias":"Drs1p","entrezGeneId":"55661"},{"alias":"HSPC259","entrezGeneId":"55661"},{"alias":"PP3241","entrezGeneId":"55661"},{"alias":"RHLP","entrezGeneId":"55661"},{"alias":"FIH1","entrezGeneId":"55662"},{"alias":"ZKSCAN20","entrezGeneId":"55663"},{"alias":"ZSCAN30","entrezGeneId":"55663"},{"alias":"ZSCAN52","entrezGeneId":"55663"},{"alias":"CDC37B","entrezGeneId":"55664"},{"alias":"HARC","entrezGeneId":"55664"},{"alias":"URG4","entrezGeneId":"55665"},{"alias":"NPL4","entrezGeneId":"55666"},{"alias":"bA513M16.3","entrezGeneId":"55667"},{"alias":"C9orf55","entrezGeneId":"55667"},{"alias":"C9orf55B","entrezGeneId":"55667"},{"alias":"RAB10GEF","entrezGeneId":"55667"},{"alias":"C14orf118","entrezGeneId":"55668"},{"alias":"hfzo1","entrezGeneId":"55669"},{"alias":"hfzo2","entrezGeneId":"55669"},{"alias":"PBD7A","entrezGeneId":"55670"},{"alias":"PBD7B","entrezGeneId":"55670"},{"alias":"PEX26M1T","entrezGeneId":"55670"},{"alias":"Pex26pM1T","entrezGeneId":"55670"},{"alias":"FLFL1","entrezGeneId":"55671"},{"alias":"KIAA2010","entrezGeneId":"55671"},{"alias":"MSTP033","entrezGeneId":"55671"},{"alias":"PP4R3","entrezGeneId":"55671"},{"alias":"PP4R3A","entrezGeneId":"55671"},{"alias":"SMEK1","entrezGeneId":"55671"},{"alias":"smk-1","entrezGeneId":"55671"},{"alias":"smk1","entrezGeneId":"55671"},{"alias":"AB13","entrezGeneId":"55672"},{"alias":"AB14","entrezGeneId":"55672"},{"alias":"AB23","entrezGeneId":"55672"},{"alias":"AD2","entrezGeneId":"55672"},{"alias":"NBG","entrezGeneId":"55672"},{"alias":"NBPF","entrezGeneId":"55672"},{"alias":"MST103","entrezGeneId":"55676"},{"alias":"MSTP103","entrezGeneId":"55676"},{"alias":"ZNT6","entrezGeneId":"55676"},{"alias":"LGMD2W","entrezGeneId":"55679"},{"alias":"PINCH-2","entrezGeneId":"55679"},{"alias":"PINCH2","entrezGeneId":"55679"},{"alias":"RABIP4R","entrezGeneId":"55680"},{"alias":"ZFYVE13","entrezGeneId":"55680"},{"alias":"CVAK104","entrezGeneId":"55681"},{"alias":"KIAA1310","entrezGeneId":"55683"},{"alias":"NSL3","entrezGeneId":"55683"},{"alias":"Rcd1","entrezGeneId":"55683"},{"alias":"C9orf86","entrezGeneId":"55684"},{"alias":"PARF","entrezGeneId":"55684"},{"alias":"pp8875","entrezGeneId":"55684"},{"alias":"RBEL1","entrezGeneId":"55684"},{"alias":"DSU","entrezGeneId":"55686"},{"alias":"WDT2","entrezGeneId":"55686"},{"alias":"LCAL3","entrezGeneId":"55687"},{"alias":"MTO2","entrezGeneId":"55687"},{"alias":"MTU1","entrezGeneId":"55687"},{"alias":"TRMT","entrezGeneId":"55687"},{"alias":"TRMT1","entrezGeneId":"55687"},{"alias":"MRD17","entrezGeneId":"55690"},{"alias":"SHMS","entrezGeneId":"55690"},{"alias":"bA295P9.4","entrezGeneId":"55691"},{"alias":"CCAFCA","entrezGeneId":"55691"},{"alias":"FRMD4","entrezGeneId":"55691"},{"alias":"hLuc7B1","entrezGeneId":"55692"},{"alias":"Luc7","entrezGeneId":"55692"},{"alias":"LUC7B1","entrezGeneId":"55692"},{"alias":"SR+89","entrezGeneId":"55692"},{"alias":"JMJD2D","entrezGeneId":"55693"},{"alias":"NOL1","entrezGeneId":"55695"},{"alias":"NOL1R","entrezGeneId":"55695"},{"alias":"NSUN5A","entrezGeneId":"55695"},{"alias":"p120","entrezGeneId":"55695"},{"alias":"p120(NOL1)","entrezGeneId":"55695"},{"alias":"WBSCR20","entrezGeneId":"55695"},{"alias":"WBSCR20A","entrezGeneId":"55695"},{"alias":"Cwc2","entrezGeneId":"55696"},{"alias":"fSAP47","entrezGeneId":"55696"},{"alias":"ZC3H16","entrezGeneId":"55696"},{"alias":"ArPIKfyve","entrezGeneId":"55697"},{"alias":"TAX1BP2","entrezGeneId":"55697"},{"alias":"TRX","entrezGeneId":"55697"},{"alias":"RASIP2","entrezGeneId":"55698"},{"alias":"CAGSSS","entrezGeneId":"55699"},{"alias":"ILERS","entrezGeneId":"55699"},{"alias":"PARCC1","entrezGeneId":"55700"},{"alias":"RPRC1","entrezGeneId":"55700"},{"alias":"SOLO","entrezGeneId":"55701"},{"alias":"CCDC94","entrezGeneId":"55702"},{"alias":"C128","entrezGeneId":"55703"},{"alias":"HLD8","entrezGeneId":"55703"},{"alias":"INMAP","entrezGeneId":"55703"},{"alias":"RPC2","entrezGeneId":"55703"},{"alias":"APE","entrezGeneId":"55704"},{"alias":"GIRDIN","entrezGeneId":"55704"},{"alias":"GIV","entrezGeneId":"55704"},{"alias":"GRDN","entrezGeneId":"55704"},{"alias":"HkRP1","entrezGeneId":"55704"},{"alias":"KIAA1212","entrezGeneId":"55704"},{"alias":"PEHO","entrezGeneId":"55704"},{"alias":"PEHOL","entrezGeneId":"55704"},{"alias":"Imp9","entrezGeneId":"55705"},{"alias":"NET3","entrezGeneId":"55706"},{"alias":"TMEM48","entrezGeneId":"55706"},{"alias":"BKLHD4","entrezGeneId":"55709"},{"alias":"HSPC252","entrezGeneId":"55709"},{"alias":"HEL-S-81","entrezGeneId":"55711"},{"alias":"MLSTD1","entrezGeneId":"55711"},{"alias":"SDR10E2","entrezGeneId":"55711"},{"alias":"MCOPCB9","entrezGeneId":"55714"},{"alias":"ODZ3","entrezGeneId":"55714"},{"alias":"ten-3","entrezGeneId":"55714"},{"alias":"Ten-m3","entrezGeneId":"55714"},{"alias":"TNM3","entrezGeneId":"55714"},{"alias":"IRS-5","entrezGeneId":"55715"},{"alias":"IRS5","entrezGeneId":"55715"},{"alias":"LIMR","entrezGeneId":"55716"},{"alias":"BRWD2","entrezGeneId":"55717"},{"alias":"DR11","entrezGeneId":"55717"},{"alias":"HH14","entrezGeneId":"55717"},{"alias":"SRI1","entrezGeneId":"55717"},{"alias":"WDR15","entrezGeneId":"55717"},{"alias":"RPC5","entrezGeneId":"55718"},{"alias":"SIN","entrezGeneId":"55718"},{"alias":"C10orf6","entrezGeneId":"55719"},{"alias":"FAM178A","entrezGeneId":"55719"},{"alias":"CIA-II","entrezGeneId":"55723"},{"alias":"ASUN","entrezGeneId":"55726"},{"alias":"C12orf11","entrezGeneId":"55726"},{"alias":"GCT1","entrezGeneId":"55726"},{"alias":"Mat89Bb","entrezGeneId":"55726"},{"alias":"NET48","entrezGeneId":"55726"},{"alias":"SPATA30","entrezGeneId":"55726"},{"alias":"FUP1","entrezGeneId":"55727"},{"alias":"B3BP","entrezGeneId":"55728"},{"alias":"AM","entrezGeneId":"55729"},{"alias":"ATF-IP","entrezGeneId":"55729"},{"alias":"MCAF","entrezGeneId":"55729"},{"alias":"MCAF1","entrezGeneId":"55729"},{"alias":"p621","entrezGeneId":"55729"},{"alias":"C17orf63","entrezGeneId":"55731"},{"alias":"MART2","entrezGeneId":"55733"},{"alias":"SKI1","entrezGeneId":"55733"},{"alias":"Skn","entrezGeneId":"55733"},{"alias":"ZNF338","entrezGeneId":"55734"},{"alias":"dJ126A5.1","entrezGeneId":"55735"},{"alias":"MEM3","entrezGeneId":"55737"},{"alias":"PARK17","entrezGeneId":"55737"},{"alias":"ARF1GAP","entrezGeneId":"55738"},{"alias":"HRIHFB2281","entrezGeneId":"55738"},{"alias":"CARKD","entrezGeneId":"55739"},{"alias":"LP3298","entrezGeneId":"55739"},{"alias":"ENA","entrezGeneId":"55740"},{"alias":"MENA","entrezGeneId":"55740"},{"alias":"NDPP1","entrezGeneId":"55740"},{"alias":"bA4204.1","entrezGeneId":"55741"},{"alias":"C20orf31","entrezGeneId":"55741"},{"alias":"C20orf49","entrezGeneId":"55741"},{"alias":"CH-ILKBP","entrezGeneId":"55742"},{"alias":"MXRA2","entrezGeneId":"55742"},{"alias":"RNF116","entrezGeneId":"55743"},{"alias":"RNF196","entrezGeneId":"55743"},{"alias":"C7orf44","entrezGeneId":"55744"},{"alias":"MITRAC15","entrezGeneId":"55744"},{"alias":"C14orf108","entrezGeneId":"55745"},{"alias":"Mu5","entrezGeneId":"55745"},{"alias":"MuD","entrezGeneId":"55745"},{"alias":"MUDENG","entrezGeneId":"55745"},{"alias":"hNUP133","entrezGeneId":"55746"},{"alias":"CN2","entrezGeneId":"55748"},{"alias":"CPGL","entrezGeneId":"55748"},{"alias":"HEL-S-13","entrezGeneId":"55748"},{"alias":"HsT2298","entrezGeneId":"55748"},{"alias":"PEPA","entrezGeneId":"55748"},{"alias":"CATC5","entrezGeneId":"55750"},{"alias":"CTRCT38","entrezGeneId":"55750"},{"alias":"MTDPS10","entrezGeneId":"55750"},{"alias":"MULK","entrezGeneId":"55750"},{"alias":"TMEM34","entrezGeneId":"55751"},{"alias":"C6orf67","entrezGeneId":"55754"},{"alias":"CDC50A","entrezGeneId":"55754"},{"alias":"C48","entrezGeneId":"55755"},{"alias":"Cep215","entrezGeneId":"55755"},{"alias":"MCPH3","entrezGeneId":"55755"},{"alias":"CPSF2L","entrezGeneId":"55756"},{"alias":"INT9","entrezGeneId":"55756"},{"alias":"RC74","entrezGeneId":"55756"},{"alias":"HUGT2","entrezGeneId":"55757"},{"alias":"UGCGL2","entrezGeneId":"55757"},{"alias":"UGT2","entrezGeneId":"55757"},{"alias":"YTM1","entrezGeneId":"55759"},{"alias":"DDX32","entrezGeneId":"55760"},{"alias":"DHLP1","entrezGeneId":"55760"},{"alias":"BM-102","entrezGeneId":"55763"},{"alias":"SEC3","entrezGeneId":"55763"},{"alias":"SEC3L1","entrezGeneId":"55763"},{"alias":"SEC3P","entrezGeneId":"55763"},{"alias":"CED","entrezGeneId":"55764"},{"alias":"CED1","entrezGeneId":"55764"},{"alias":"SPG","entrezGeneId":"55764"},{"alias":"WDR10","entrezGeneId":"55764"},{"alias":"WDR10p","entrezGeneId":"55764"},{"alias":"WDR140","entrezGeneId":"55764"},{"alias":"C1orf106","entrezGeneId":"55765"},{"alias":"H2AJ","entrezGeneId":"55766"},{"alias":"CDDG","entrezGeneId":"55768"},{"alias":"CDG1V","entrezGeneId":"55768"},{"alias":"PNG1","entrezGeneId":"55768"},{"alias":"PNGase","entrezGeneId":"55768"},{"alias":"HPF1","entrezGeneId":"55769"},{"alias":"ZNF816B","entrezGeneId":"55769"},{"alias":"SEC5","entrezGeneId":"55770"},{"alias":"SEC5L1","entrezGeneId":"55770"},{"alias":"Sec5p","entrezGeneId":"55770"},{"alias":"NS4ATP1","entrezGeneId":"55773"},{"alias":"PCH11","entrezGeneId":"55773"},{"alias":"C6orf64","entrezGeneId":"55776"},{"alias":"MRD1","entrezGeneId":"55777"},{"alias":"C14orf131","entrezGeneId":"55778"},{"alias":"SPGF20","entrezGeneId":"55779"},{"alias":"WDR52","entrezGeneId":"55779"},{"alias":"C6orf70","entrezGeneId":"55780"},{"alias":"dJ266L20.3","entrezGeneId":"55780"},{"alias":"PVNH6","entrezGeneId":"55780"},{"alias":"RIO2","entrezGeneId":"55781"},{"alias":"AFT","entrezGeneId":"55783"},{"alias":"FTSJD1","entrezGeneId":"55783"},{"alias":"HMTr2","entrezGeneId":"55783"},{"alias":"MTr2","entrezGeneId":"55783"},{"alias":"ZFYVE24","entrezGeneId":"55785"},{"alias":"ZfLp","entrezGeneId":"55786"},{"alias":"CXorf15","entrezGeneId":"55787"},{"alias":"ELRG","entrezGeneId":"55787"},{"alias":"FIAT","entrezGeneId":"55787"},{"alias":"LSR5","entrezGeneId":"55787"},{"alias":"TXLNGX","entrezGeneId":"55787"},{"alias":"C6orf209","entrezGeneId":"55788"},{"alias":"LMBD1","entrezGeneId":"55788"},{"alias":"MAHCF","entrezGeneId":"55788"},{"alias":"NESI","entrezGeneId":"55788"},{"alias":"BRCC3","entrezGeneId":"55789"},{"alias":"XTP1","entrezGeneId":"55789"},{"alias":"beta4GalNAcT","entrezGeneId":"55790"},{"alias":"ChGn","entrezGeneId":"55790"},{"alias":"ChGn-1","entrezGeneId":"55790"},{"alias":"CSGalNAcT-1","entrezGeneId":"55790"},{"alias":"C1orf103","entrezGeneId":"55791"},{"alias":"RIF1","entrezGeneId":"55791"},{"alias":"FAM63A","entrezGeneId":"55793"},{"alias":"MINDY-1","entrezGeneId":"55793"},{"alias":"MDDX28","entrezGeneId":"55794"},{"alias":"F10","entrezGeneId":"55795"},{"alias":"CHCR","entrezGeneId":"55796"},{"alias":"MBLX","entrezGeneId":"55796"},{"alias":"MBLX39","entrezGeneId":"55796"},{"alias":"MBXL","entrezGeneId":"55796"},{"alias":"METL","entrezGeneId":"55798"},{"alias":"METTL2","entrezGeneId":"55798"},{"alias":"METTL2A","entrezGeneId":"55798"},{"alias":"PSENIP1","entrezGeneId":"55798"},{"alias":"HSA272268","entrezGeneId":"55799"},{"alias":"ATFB16","entrezGeneId":"55800"},{"alias":"BRGDA7","entrezGeneId":"55800"},{"alias":"HSA243396","entrezGeneId":"55800"},{"alias":"SCNB3","entrezGeneId":"55800"},{"alias":"AK155","entrezGeneId":"55801"},{"alias":"IL-26","entrezGeneId":"55801"},{"alias":"HSA275986","entrezGeneId":"55802"},{"alias":"Nbla00360","entrezGeneId":"55802"},{"alias":"SMAD4IP1","entrezGeneId":"55802"},{"alias":"SMIF","entrezGeneId":"55802"},{"alias":"cent-b","entrezGeneId":"55803"},{"alias":"CENTA2","entrezGeneId":"55803"},{"alias":"HSA272195","entrezGeneId":"55803"},{"alias":"ALUNC","entrezGeneId":"55806"},{"alias":"AU","entrezGeneId":"55806"},{"alias":"HSA277165","entrezGeneId":"55806"},{"alias":"HYPT4","entrezGeneId":"55806"},{"alias":"MUHH","entrezGeneId":"55806"},{"alias":"MUHH1","entrezGeneId":"55806"},{"alias":"HSY11339","entrezGeneId":"55808"},{"alias":"SIAT7A","entrezGeneId":"55808"},{"alias":"ST6GalNAcI","entrezGeneId":"55808"},{"alias":"STYI","entrezGeneId":"55808"},{"alias":"BCAR2","entrezGeneId":"55809"},{"alias":"dJ139D8.5","entrezGeneId":"55809"},{"alias":"HSA277276","entrezGeneId":"55809"},{"alias":"RAPA","entrezGeneId":"55809"},{"alias":"TReP-132","entrezGeneId":"55809"},{"alias":"TREP132","entrezGeneId":"55809"},{"alias":"FHX","entrezGeneId":"55810"},{"alias":"HCA2","entrezGeneId":"55811"},{"alias":"HEL-S-7a","entrezGeneId":"55811"},{"alias":"hsAC","entrezGeneId":"55811"},{"alias":"SAC","entrezGeneId":"55811"},{"alias":"SACI","entrezGeneId":"55811"},{"alias":"Sacy","entrezGeneId":"55811"},{"alias":"HEL-S-296","entrezGeneId":"55812"},{"alias":"HSD-3.1","entrezGeneId":"55812"},{"alias":"HSD3","entrezGeneId":"55812"},{"alias":"LCA3","entrezGeneId":"55812"},{"alias":"C17orf40","entrezGeneId":"55813"},{"alias":"HCA66","entrezGeneId":"55813"},{"alias":"HSA238520","entrezGeneId":"55814"},{"alias":"TAF3B1","entrezGeneId":"55814"},{"alias":"TFC5","entrezGeneId":"55814"},{"alias":"TFIIIB''","entrezGeneId":"55814"},{"alias":"TFIIIB150","entrezGeneId":"55814"},{"alias":"TFIIIB90","entrezGeneId":"55814"},{"alias":"TFNR","entrezGeneId":"55814"},{"alias":"TXI1","entrezGeneId":"55815"},{"alias":"C20orf180","entrezGeneId":"55816"},{"alias":"IRS-6","entrezGeneId":"55816"},{"alias":"IRS6","entrezGeneId":"55816"},{"alias":"JHDM2A","entrezGeneId":"55818"},{"alias":"JHMD2A","entrezGeneId":"55818"},{"alias":"JMJD1","entrezGeneId":"55818"},{"alias":"JMJD1A","entrezGeneId":"55818"},{"alias":"TSGA","entrezGeneId":"55818"},{"alias":"G1RZFP","entrezGeneId":"55819"},{"alias":"GOLIATH","entrezGeneId":"55819"},{"alias":"GP","entrezGeneId":"55819"},{"alias":"ALC","entrezGeneId":"55821"},{"alias":"END1","entrezGeneId":"55823"},{"alias":"HLD12","entrezGeneId":"55823"},{"alias":"hVPS11","entrezGeneId":"55823"},{"alias":"PEP5","entrezGeneId":"55823"},{"alias":"RNF108","entrezGeneId":"55823"},{"alias":"CBP","entrezGeneId":"55824"},{"alias":"PAG","entrezGeneId":"55824"},{"alias":"DCRRP","entrezGeneId":"55825"},{"alias":"HPDHASE","entrezGeneId":"55825"},{"alias":"HSA250303","entrezGeneId":"55825"},{"alias":"PVIARL","entrezGeneId":"55825"},{"alias":"SDR29C1","entrezGeneId":"55825"},{"alias":"TERP","entrezGeneId":"55825"},{"alias":"1200006M05Rik","entrezGeneId":"55827"},{"alias":"ARCAP","entrezGeneId":"55827"},{"alias":"IQWD1","entrezGeneId":"55827"},{"alias":"MSTP055","entrezGeneId":"55827"},{"alias":"NRIP","entrezGeneId":"55827"},{"alias":"PC326","entrezGeneId":"55827"},{"alias":"AD-015","entrezGeneId":"55829"},{"alias":"ADO15","entrezGeneId":"55829"},{"alias":"SBBI8","entrezGeneId":"55829"},{"alias":"SELS","entrezGeneId":"55829"},{"alias":"SEPS1","entrezGeneId":"55829"},{"alias":"VIMP","entrezGeneId":"55829"},{"alias":"AD-017","entrezGeneId":"55830"},{"alias":"MSTP139","entrezGeneId":"55830"},{"alias":"POB","entrezGeneId":"55831"},{"alias":"TMEM111","entrezGeneId":"55831"},{"alias":"TIP120","entrezGeneId":"55832"},{"alias":"TIP120A","entrezGeneId":"55832"},{"alias":"UBAP-2","entrezGeneId":"55833"},{"alias":"BM032","entrezGeneId":"55835"},{"alias":"CENP-J","entrezGeneId":"55835"},{"alias":"CPAP","entrezGeneId":"55835"},{"alias":"LAP","entrezGeneId":"55835"},{"alias":"LIP1","entrezGeneId":"55835"},{"alias":"MCPH6","entrezGeneId":"55835"},{"alias":"Sas-4","entrezGeneId":"55835"},{"alias":"SASS4","entrezGeneId":"55835"},{"alias":"SCKL4","entrezGeneId":"55835"},{"alias":"BM036","entrezGeneId":"55837"},{"alias":"C14orf11","entrezGeneId":"55837"},{"alias":"BM039","entrezGeneId":"55839"},{"alias":"C16orf60","entrezGeneId":"55839"},{"alias":"CENP-N","entrezGeneId":"55839"},{"alias":"ICEN32","entrezGeneId":"55839"},{"alias":"BM040","entrezGeneId":"55840"},{"alias":"TRAITS","entrezGeneId":"55840"},{"alias":"U19","entrezGeneId":"55840"},{"alias":"BM042","entrezGeneId":"55841"},{"alias":"BM046","entrezGeneId":"55843"},{"alias":"B55D","entrezGeneId":"55844"},{"alias":"B55delta","entrezGeneId":"55844"},{"alias":"MDS026","entrezGeneId":"55844"},{"alias":"C3orf10","entrezGeneId":"55845"},{"alias":"hHBrk1","entrezGeneId":"55845"},{"alias":"HSPC300","entrezGeneId":"55845"},{"alias":"MDS027","entrezGeneId":"55845"},{"alias":"FGGAP1","entrezGeneId":"55846"},{"alias":"MDS028","entrezGeneId":"55846"},{"alias":"C10orf70","entrezGeneId":"55847"},{"alias":"MDS029","entrezGeneId":"55847"},{"alias":"mitoNEET","entrezGeneId":"55847"},{"alias":"ZCD1","entrezGeneId":"55847"},{"alias":"AD025","entrezGeneId":"55848"},{"alias":"C9orf46","entrezGeneId":"55848"},{"alias":"MDS030","entrezGeneId":"55848"},{"alias":"Plg-R(KT)","entrezGeneId":"55848"},{"alias":"PLG-RKT","entrezGeneId":"55848"},{"alias":"D12","entrezGeneId":"55850"},{"alias":"MDS032","entrezGeneId":"55850"},{"alias":"P31","entrezGeneId":"55850"},{"alias":"SLT1","entrezGeneId":"55850"},{"alias":"ACNINV2","entrezGeneId":"55851"},{"alias":"MDS033","entrezGeneId":"55851"},{"alias":"MSTP064","entrezGeneId":"55851"},{"alias":"PEN-2","entrezGeneId":"55851"},{"alias":"PEN2","entrezGeneId":"55851"},{"alias":"HT008","entrezGeneId":"55852"},{"alias":"TMEM96","entrezGeneId":"55852"},{"alias":"C10orf110","entrezGeneId":"55853"},{"alias":"HT009","entrezGeneId":"55853"},{"alias":"IDI2-AS","entrezGeneId":"55853"},{"alias":"HT010","entrezGeneId":"55854"},{"alias":"LEREPO4","entrezGeneId":"55854"},{"alias":"MSTP012","entrezGeneId":"55854"},{"alias":"FAM45B","entrezGeneId":"55855"},{"alias":"HT011","entrezGeneId":"55855"},{"alias":"HT012","entrezGeneId":"55856"},{"alias":"PNAS-27","entrezGeneId":"55856"},{"alias":"THEM2","entrezGeneId":"55856"},{"alias":"C20orf19","entrezGeneId":"55857"},{"alias":"HT013","entrezGeneId":"55857"},{"alias":"Kizuna","entrezGeneId":"55857"},{"alias":"NCRNA00153","entrezGeneId":"55857"},{"alias":"PLK1S1","entrezGeneId":"55857"},{"alias":"RP69","entrezGeneId":"55857"},{"alias":"CDG2K","entrezGeneId":"55858"},{"alias":"FT27","entrezGeneId":"55858"},{"alias":"GDT1","entrezGeneId":"55858"},{"alias":"TMPT27","entrezGeneId":"55858"},{"alias":"TPARL","entrezGeneId":"55858"},{"alias":"BEX2","entrezGeneId":"55859"},{"alias":"HBEX2","entrezGeneId":"55859"},{"alias":"HGR74-h","entrezGeneId":"55859"},{"alias":"ACTR11","entrezGeneId":"55860"},{"alias":"Arp10","entrezGeneId":"55860"},{"alias":"Arp11","entrezGeneId":"55860"},{"alias":"HARP11","entrezGeneId":"55860"},{"alias":"C20orf35","entrezGeneId":"55861"},{"alias":"CK1BP","entrezGeneId":"55861"},{"alias":"HSMNP1","entrezGeneId":"55861"},{"alias":"dJ351K20.2","entrezGeneId":"55862"},{"alias":"HEL-S-76","entrezGeneId":"55862"},{"alias":"MMCD","entrezGeneId":"55862"},{"alias":"HT007","entrezGeneId":"55863"},{"alias":"hOAT4","entrezGeneId":"55867"},{"alias":"OAT4","entrezGeneId":"55867"},{"alias":"CDA07","entrezGeneId":"55869"},{"alias":"CDLS5","entrezGeneId":"55869"},{"alias":"HD8","entrezGeneId":"55869"},{"alias":"HDACL1","entrezGeneId":"55869"},{"alias":"MRXS6","entrezGeneId":"55869"},{"alias":"RPD3","entrezGeneId":"55869"},{"alias":"WTS","entrezGeneId":"55869"},{"alias":"ASH1","entrezGeneId":"55870"},{"alias":"ASH1L1","entrezGeneId":"55870"},{"alias":"KMT2H","entrezGeneId":"55870"},{"alias":"MRD52","entrezGeneId":"55870"},{"alias":"COBP","entrezGeneId":"55871"},{"alias":"CT84","entrezGeneId":"55872"},{"alias":"HEL164","entrezGeneId":"55872"},{"alias":"Nori-3","entrezGeneId":"55872"},{"alias":"SPK","entrezGeneId":"55872"},{"alias":"TOPK","entrezGeneId":"55872"},{"alias":"GSDML","entrezGeneId":"55876"},{"alias":"PP4052","entrezGeneId":"55876"},{"alias":"PRO2521","entrezGeneId":"55876"},{"alias":"THETA","entrezGeneId":"55879"},{"alias":"SBA2","entrezGeneId":"55884"},{"alias":"RBTN3","entrezGeneId":"55885"},{"alias":"RBTNL2","entrezGeneId":"55885"},{"alias":"Rhom-3","entrezGeneId":"55885"},{"alias":"RHOM3","entrezGeneId":"55885"},{"alias":"ZFP","entrezGeneId":"55888"},{"alias":"ZNF167","entrezGeneId":"55888"},{"alias":"ZNF448","entrezGeneId":"55888"},{"alias":"ZNF64","entrezGeneId":"55888"},{"alias":"ZSCAN39","entrezGeneId":"55888"},{"alias":"GOLGA","entrezGeneId":"55889"},{"alias":"GOLGA6D","entrezGeneId":"55889"},{"alias":"RAIG-3","entrezGeneId":"55890"},{"alias":"RAIG3","entrezGeneId":"55890"},{"alias":"LEP503","entrezGeneId":"55891"},{"alias":"OSZF","entrezGeneId":"55892"},{"alias":"SBBIZ1","entrezGeneId":"55892"},{"alias":"ZBTB31","entrezGeneId":"55892"},{"alias":"ZNF902","entrezGeneId":"55892"},{"alias":"HDBP-2","entrezGeneId":"55893"},{"alias":"HDBP2","entrezGeneId":"55893"},{"alias":"HDRF-2","entrezGeneId":"55893"},{"alias":"PBF","entrezGeneId":"55893"},{"alias":"PRF-1","entrezGeneId":"55893"},{"alias":"PRF1","entrezGeneId":"55893"},{"alias":"Si-1-8-14","entrezGeneId":"55893"},{"alias":"BD-3","entrezGeneId":"55894"},{"alias":"DEFB-3","entrezGeneId":"55894"},{"alias":"DEFB103","entrezGeneId":"55894"},{"alias":"DEFB3","entrezGeneId":"55894"},{"alias":"HBD-3","entrezGeneId":"55894"},{"alias":"HBD3","entrezGeneId":"55894"},{"alias":"HBP-3","entrezGeneId":"55894"},{"alias":"HBP3","entrezGeneId":"55894"},{"alias":"bHLHc5","entrezGeneId":"55897"},{"alias":"GC-UNC45","entrezGeneId":"55898"},{"alias":"GCUNC-45","entrezGeneId":"55898"},{"alias":"GCUNC45","entrezGeneId":"55898"},{"alias":"IRO039700","entrezGeneId":"55898"},{"alias":"SMAP-1","entrezGeneId":"55898"},{"alias":"SMAP1","entrezGeneId":"55898"},{"alias":"UNC-45A","entrezGeneId":"55898"},{"alias":"HSD16","entrezGeneId":"55900"},{"alias":"MST154","entrezGeneId":"55900"},{"alias":"MSTP154","entrezGeneId":"55900"},{"alias":"ZNF135L","entrezGeneId":"55900"},{"alias":"ZNF140L","entrezGeneId":"55900"},{"alias":"ZNF327","entrezGeneId":"55900"},{"alias":"TMTSP","entrezGeneId":"55901"},{"alias":"UNQ3010","entrezGeneId":"55901"},{"alias":"ACAS2","entrezGeneId":"55902"},{"alias":"ACECS","entrezGeneId":"55902"},{"alias":"ACS","entrezGeneId":"55902"},{"alias":"ACSA","entrezGeneId":"55902"},{"alias":"dJ1161H23.1","entrezGeneId":"55902"},{"alias":"HDCMC04P","entrezGeneId":"55904"},{"alias":"MLL5","entrezGeneId":"55904"},{"alias":"NKp44L","entrezGeneId":"55904"},{"alias":"PSORS12","entrezGeneId":"55905"},{"alias":"ZNF313","entrezGeneId":"55905"},{"alias":"HCA127","entrezGeneId":"55906"},{"alias":"KIAA1166","entrezGeneId":"55906"},{"alias":"WRWF","entrezGeneId":"55906"},{"alias":"WWS","entrezGeneId":"55906"},{"alias":"CSS","entrezGeneId":"55907"},{"alias":"C19orf80","entrezGeneId":"55908"},{"alias":"PRO1185","entrezGeneId":"55908"},{"alias":"PVPA599","entrezGeneId":"55908"},{"alias":"RIFL","entrezGeneId":"55908"},{"alias":"TD26","entrezGeneId":"55908"},{"alias":"APOB100R","entrezGeneId":"55911"},{"alias":"APOB48R","entrezGeneId":"55911"},{"alias":"ERBB2IP","entrezGeneId":"55914"},{"alias":"HEL-S-78","entrezGeneId":"55914"},{"alias":"LAP2","entrezGeneId":"55914"},{"alias":"GPR69B","entrezGeneId":"55915"},{"alias":"TASP","entrezGeneId":"55915"},{"alias":"P15-2","entrezGeneId":"55916"},{"alias":"TD-60","entrezGeneId":"55920"},{"alias":"ITBA4","entrezGeneId":"55922"},{"alias":"NRF","entrezGeneId":"55922"},{"alias":"C1orf183","entrezGeneId":"55924"},{"alias":"INKA2","entrezGeneId":"55924"},{"alias":"DNMAP1","entrezGeneId":"55929"},{"alias":"DNMTAP1","entrezGeneId":"55929"},{"alias":"EAF2","entrezGeneId":"55929"},{"alias":"MEAF2","entrezGeneId":"55929"},{"alias":"SWC4","entrezGeneId":"55929"},{"alias":"apo-M","entrezGeneId":"55937"},{"alias":"G3a","entrezGeneId":"55937"},{"alias":"HSPC336","entrezGeneId":"55937"},{"alias":"NG20","entrezGeneId":"55937"},{"alias":"SNRNP20","entrezGeneId":"55954"},{"alias":"U11/U12-20K","entrezGeneId":"55954"},{"alias":"ZC3H19","entrezGeneId":"55954"},{"alias":"F25965","entrezGeneId":"55957"},{"alias":"lin-37","entrezGeneId":"55957"},{"alias":"ZK418.4","entrezGeneId":"55957"},{"alias":"HSULF-2","entrezGeneId":"55959"},{"alias":"bK250D10.3","entrezGeneId":"55964"},{"alias":"SEP3","entrezGeneId":"55964"},{"alias":"MOT8","entrezGeneId":"55966"},{"alias":"SHREW-1","entrezGeneId":"55966"},{"alias":"SHREW1","entrezGeneId":"55966"},{"alias":"B17.2","entrezGeneId":"55967"},{"alias":"DAP13","entrezGeneId":"55967"},{"alias":"dJ776F14.1","entrezGeneId":"55968"},{"alias":"P47","entrezGeneId":"55968"},{"alias":"UBX1","entrezGeneId":"55968"},{"alias":"UBXD10","entrezGeneId":"55968"},{"alias":"UBXN2C","entrezGeneId":"55968"},{"alias":"C20orf24","entrezGeneId":"55969"},{"alias":"PNAS-11","entrezGeneId":"55969"},{"alias":"RIP5","entrezGeneId":"55969"},{"alias":"IRTKS","entrezGeneId":"55971"},{"alias":"MCFP","entrezGeneId":"55972"},{"alias":"BAP29","entrezGeneId":"55973"},{"alias":"HsSWEET1","entrezGeneId":"55974"},{"alias":"RAG1AP1","entrezGeneId":"55974"},{"alias":"SCP","entrezGeneId":"55974"},{"alias":"slv","entrezGeneId":"55974"},{"alias":"SWEET1","entrezGeneId":"55974"},{"alias":"CISS3","entrezGeneId":"55975"},{"alias":"KLHL6","entrezGeneId":"55975"},{"alias":"SBBI26","entrezGeneId":"55975"},{"alias":"CFC1B","entrezGeneId":"55997"},{"alias":"CRYPTIC","entrezGeneId":"55997"},{"alias":"DTGA2","entrezGeneId":"55997"},{"alias":"HTX2","entrezGeneId":"55997"},{"alias":"CT39","entrezGeneId":"56001"},{"alias":"TAPL-2","entrezGeneId":"56001"},{"alias":"TCP11X2","entrezGeneId":"56001"},{"alias":"C19orf10","entrezGeneId":"56005"},{"alias":"EUROIMAGE1875335","entrezGeneId":"56005"},{"alias":"IL25","entrezGeneId":"56005"},{"alias":"IL27","entrezGeneId":"56005"},{"alias":"IL27w","entrezGeneId":"56005"},{"alias":"R33729_1","entrezGeneId":"56005"},{"alias":"SF20","entrezGeneId":"56005"},{"alias":"C19orf61","entrezGeneId":"56006"},{"alias":"F17127_1","entrezGeneId":"56006"},{"alias":"HBMS","entrezGeneId":"56006"},{"alias":"FALLOTEIN","entrezGeneId":"56034"},{"alias":"SCDGF","entrezGeneId":"56034"},{"alias":"CDG1K","entrezGeneId":"56052"},{"alias":"hMat-1","entrezGeneId":"56052"},{"alias":"HMAT1","entrezGeneId":"56052"},{"alias":"HMT-1","entrezGeneId":"56052"},{"alias":"HMT1","entrezGeneId":"56052"},{"alias":"Mat-1","entrezGeneId":"56052"},{"alias":"MT-1","entrezGeneId":"56052"},{"alias":"UBPH","entrezGeneId":"56061"},{"alias":"DKELCHL","entrezGeneId":"56062"},{"alias":"KHL4","entrezGeneId":"56062"},{"alias":"AASL548","entrezGeneId":"56063"},{"alias":"C1orf91","entrezGeneId":"56063"},{"alias":"dJ622L5.7","entrezGeneId":"56063"},{"alias":"PRO1105","entrezGeneId":"56063"},{"alias":"RP4-622L5","entrezGeneId":"56063"},{"alias":"PCDH-GAMMA-C5","entrezGeneId":"56097"},{"alias":"PCDH-GAMMA-C4","entrezGeneId":"56098"},{"alias":"ME6","entrezGeneId":"56099"},{"alias":"PCDH-GAMMA-B7","entrezGeneId":"56099"},{"alias":"PCDH-GAMMA-B6","entrezGeneId":"56100"},{"alias":"PCDH-GAMMA-B5","entrezGeneId":"56101"},{"alias":"PCDH-GAMMA-B3","entrezGeneId":"56102"},{"alias":"PCDH-GAMMA-B2","entrezGeneId":"56103"},{"alias":"PCDH-GAMMA-B1","entrezGeneId":"56104"},{"alias":"PCDH-GAMMA-A11","entrezGeneId":"56105"},{"alias":"PCDH-GAMMA-A10","entrezGeneId":"56106"},{"alias":"PCDH-GAMMA-A9","entrezGeneId":"56107"},{"alias":"PCDH-GAMMA-A7","entrezGeneId":"56108"},{"alias":"PCDH-GAMMA-A6","entrezGeneId":"56109"},{"alias":"CDH-GAMMA-A5","entrezGeneId":"56110"},{"alias":"ME3","entrezGeneId":"56110"},{"alias":"PCDH-GAMMA-A5","entrezGeneId":"56110"},{"alias":"PCDH-GAMMA-A4","entrezGeneId":"56111"},{"alias":"PCDH-GAMMA-A3","entrezGeneId":"56112"},{"alias":"PCDH-GAMMA-A2","entrezGeneId":"56113"},{"alias":"PCDH-GAMMA-A1","entrezGeneId":"56114"},{"alias":"PCDH2","entrezGeneId":"56115"},{"alias":"PCDH4","entrezGeneId":"56115"},{"alias":"PCDHG","entrezGeneId":"56115"},{"alias":"PCDH3","entrezGeneId":"56116"},{"alias":"CNR1","entrezGeneId":"56117"},{"alias":"CNRS1","entrezGeneId":"56117"},{"alias":"PCDHGC","entrezGeneId":"56118"},{"alias":"PCDHAC","entrezGeneId":"56119"},{"alias":"PCDH-PSI3","entrezGeneId":"56120"},{"alias":"PCDH-BETA15","entrezGeneId":"56121"},{"alias":"PCDH-BETA14","entrezGeneId":"56122"},{"alias":"PCDH-BETA13","entrezGeneId":"56123"},{"alias":"PCDH-BETA12","entrezGeneId":"56124"},{"alias":"ME2","entrezGeneId":"56125"},{"alias":"PCDH-BETA11","entrezGeneId":"56125"},{"alias":"PCDH-BETA10","entrezGeneId":"56126"},{"alias":"PCHB10","entrezGeneId":"56126"},{"alias":"PCDH-BETA9","entrezGeneId":"56127"},{"alias":"PCDH3H","entrezGeneId":"56127"},{"alias":"PCDH-BETA8","entrezGeneId":"56128"},{"alias":"PCDH3I","entrezGeneId":"56128"},{"alias":"PCDH-BETA7","entrezGeneId":"56129"},{"alias":"PCDH-BETA6","entrezGeneId":"56130"},{"alias":"PCDH-BETA4","entrezGeneId":"56131"},{"alias":"PCDH-BETA3","entrezGeneId":"56132"},{"alias":"PCDH-BETA2","entrezGeneId":"56133"},{"alias":"PCDH-ALPHA-C2","entrezGeneId":"56134"},{"alias":"PCDH-ALPHA-C1","entrezGeneId":"56135"},{"alias":"CNR5","entrezGeneId":"56136"},{"alias":"CNRN5","entrezGeneId":"56136"},{"alias":"CNRS5","entrezGeneId":"56136"},{"alias":"CRNR5","entrezGeneId":"56136"},{"alias":"PCDH-ALPHA13","entrezGeneId":"56136"},{"alias":"PCDH-ALPHA12","entrezGeneId":"56137"},{"alias":"CNR7","entrezGeneId":"56138"},{"alias":"CNRN7","entrezGeneId":"56138"},{"alias":"CNRS7","entrezGeneId":"56138"},{"alias":"CRNR7","entrezGeneId":"56138"},{"alias":"PCDH-ALPHA11","entrezGeneId":"56138"},{"alias":"CNR8","entrezGeneId":"56139"},{"alias":"CNRN8","entrezGeneId":"56139"},{"alias":"CNRS8","entrezGeneId":"56139"},{"alias":"CRNR8","entrezGeneId":"56139"},{"alias":"PCDH-ALPHA10","entrezGeneId":"56139"},{"alias":"PCDH-ALPHA8","entrezGeneId":"56140"},{"alias":"CNR4","entrezGeneId":"56141"},{"alias":"CNRN4","entrezGeneId":"56141"},{"alias":"CNRS4","entrezGeneId":"56141"},{"alias":"CRNR4","entrezGeneId":"56141"},{"alias":"PCDH-ALPHA7","entrezGeneId":"56141"},{"alias":"CNR2","entrezGeneId":"56142"},{"alias":"CNRN2","entrezGeneId":"56142"},{"alias":"CNRS2","entrezGeneId":"56142"},{"alias":"CRNR2","entrezGeneId":"56142"},{"alias":"PCDH-ALPHA6","entrezGeneId":"56142"},{"alias":"CNR6","entrezGeneId":"56143"},{"alias":"CNRN6","entrezGeneId":"56143"},{"alias":"CNRS6","entrezGeneId":"56143"},{"alias":"CRNR6","entrezGeneId":"56143"},{"alias":"PCDH-ALPHA5","entrezGeneId":"56143"},{"alias":"CNR1","entrezGeneId":"56144"},{"alias":"CNRN1","entrezGeneId":"56144"},{"alias":"CRNR1","entrezGeneId":"56144"},{"alias":"PCDH-ALPHA4","entrezGeneId":"56144"},{"alias":"PCDH-ALPHA3","entrezGeneId":"56145"},{"alias":"PCDH-ALPHA2","entrezGeneId":"56146"},{"alias":"PCDH-ALPHA1","entrezGeneId":"56147"},{"alias":"CT42","entrezGeneId":"56154"},{"alias":"CT113","entrezGeneId":"56155"},{"alias":"SPGF23","entrezGeneId":"56155"},{"alias":"TGC3B","entrezGeneId":"56156"},{"alias":"TSGA5","entrezGeneId":"56156"},{"alias":"SPGFX2","entrezGeneId":"56159"},{"alias":"TGC1","entrezGeneId":"56159"},{"alias":"TSGA3","entrezGeneId":"56159"},{"alias":"HCA4","entrezGeneId":"56160"},{"alias":"LICS","entrezGeneId":"56160"},{"alias":"MAGEG1","entrezGeneId":"56160"},{"alias":"MAGEL3","entrezGeneId":"56160"},{"alias":"NDNL2","entrezGeneId":"56160"},{"alias":"NSE3","entrezGeneId":"56160"},{"alias":"Mmip-2","entrezGeneId":"56163"},{"alias":"SPATA23","entrezGeneId":"56163"},{"alias":"TDRD4","entrezGeneId":"56163"},{"alias":"SGK396","entrezGeneId":"56164"},{"alias":"TDRD8","entrezGeneId":"56164"},{"alias":"CT41.1","entrezGeneId":"56165"},{"alias":"bA522L3.2","entrezGeneId":"56168"},{"alias":"MLZE","entrezGeneId":"56169"},{"alias":"ANK","entrezGeneId":"56172"},{"alias":"CCAL2","entrezGeneId":"56172"},{"alias":"CMDJ","entrezGeneId":"56172"},{"alias":"CPPDD","entrezGeneId":"56172"},{"alias":"HANK","entrezGeneId":"56172"},{"alias":"MANK","entrezGeneId":"56172"},{"alias":"SLC62A1","entrezGeneId":"56172"},{"alias":"DJ473B4","entrezGeneId":"56180"},{"alias":"FAM54B","entrezGeneId":"56181"},{"alias":"HYST1888","entrezGeneId":"56181"},{"alias":"MST116","entrezGeneId":"56181"},{"alias":"MSTP116","entrezGeneId":"56181"},{"alias":"NEM10","entrezGeneId":"56203"},{"alias":"KIAA1370","entrezGeneId":"56204"},{"alias":"BK65A6.2","entrezGeneId":"56241"},{"alias":"BMZF-1","entrezGeneId":"56242"},{"alias":"BMZF1","entrezGeneId":"56242"},{"alias":"ZNF411","entrezGeneId":"56242"},{"alias":"ETL4","entrezGeneId":"56243"},{"alias":"SKT","entrezGeneId":"56243"},{"alias":"BTL-II","entrezGeneId":"56244"},{"alias":"BTN7","entrezGeneId":"56244"},{"alias":"HSBLMHC1","entrezGeneId":"56244"},{"alias":"SS2","entrezGeneId":"56244"},{"alias":"B37","entrezGeneId":"56245"},{"alias":"C21orf120","entrezGeneId":"56245"},{"alias":"PRED81","entrezGeneId":"56245"},{"alias":"B27","entrezGeneId":"56246"},{"alias":"C21orf61","entrezGeneId":"56246"},{"alias":"FALP","entrezGeneId":"56246"},{"alias":"FGD2","entrezGeneId":"56246"},{"alias":"GCCD2","entrezGeneId":"56246"},{"alias":"C14orf170","entrezGeneId":"56252"},{"alias":"PPP1R169","entrezGeneId":"56252"},{"alias":"ZAP113","entrezGeneId":"56252"},{"alias":"ZAP3","entrezGeneId":"56252"},{"alias":"CD355","entrezGeneId":"56253"},{"alias":"BRE1","entrezGeneId":"56254"},{"alias":"BRE1A","entrezGeneId":"56254"},{"alias":"hBRE1","entrezGeneId":"56254"},{"alias":"DJ971N18.2","entrezGeneId":"56255"},{"alias":"PDIA14","entrezGeneId":"56255"},{"alias":"TXNDC13","entrezGeneId":"56255"},{"alias":"DJ667H12.2","entrezGeneId":"56256"},{"alias":"BCDIN3","entrezGeneId":"56257"},{"alias":"C20orf33","entrezGeneId":"56259"},{"alias":"dJ633O20.1","entrezGeneId":"56259"},{"alias":"NAP","entrezGeneId":"56259"},{"alias":"P14L","entrezGeneId":"56259"},{"alias":"PP8304","entrezGeneId":"56259"},{"alias":"EDI3","entrezGeneId":"56261"},{"alias":"GDE5","entrezGeneId":"56261"},{"alias":"GDPD6","entrezGeneId":"56261"},{"alias":"PREI4","entrezGeneId":"56261"},{"alias":"AGM5","entrezGeneId":"56262"},{"alias":"LRRC8","entrezGeneId":"56262"},{"alias":"SWELL1","entrezGeneId":"56262"},{"alias":"CPX1","entrezGeneId":"56265"},{"alias":"CPXM","entrezGeneId":"56265"},{"alias":"CCBL2","entrezGeneId":"56267"},{"alias":"KAT3","entrezGeneId":"56267"},{"alias":"KATIII","entrezGeneId":"56267"},{"alias":"CINEMA","entrezGeneId":"56269"},{"alias":"IFGGE","entrezGeneId":"56269"},{"alias":"Iigp5","entrezGeneId":"56269"},{"alias":"IRGC1","entrezGeneId":"56269"},{"alias":"R30953_1","entrezGeneId":"56269"},{"alias":"WDR45L","entrezGeneId":"56270"},{"alias":"WIPI-3","entrezGeneId":"56270"},{"alias":"WIPI3","entrezGeneId":"56270"},{"alias":"BEXL1","entrezGeneId":"56271"},{"alias":"DAD1L","entrezGeneId":"56286"},{"alias":"DADR","entrezGeneId":"56286"},{"alias":"AMP18","entrezGeneId":"56287"},{"alias":"BRICD1","entrezGeneId":"56287"},{"alias":"CA11","entrezGeneId":"56287"},{"alias":"FOV","entrezGeneId":"56287"},{"alias":"foveolin","entrezGeneId":"56287"},{"alias":"ASIP","entrezGeneId":"56288"},{"alias":"Baz","entrezGeneId":"56288"},{"alias":"PAR3","entrezGeneId":"56288"},{"alias":"PAR3alpha","entrezGeneId":"56288"},{"alias":"PARD-3","entrezGeneId":"56288"},{"alias":"PARD3A","entrezGeneId":"56288"},{"alias":"PPP1R118","entrezGeneId":"56288"},{"alias":"SE2-5L16","entrezGeneId":"56288"},{"alias":"SE2-5LT1","entrezGeneId":"56288"},{"alias":"SE2-5T2","entrezGeneId":"56288"},{"alias":"IL-1F9","entrezGeneId":"56300"},{"alias":"IL-1H1","entrezGeneId":"56300"},{"alias":"IL-1RP2","entrezGeneId":"56300"},{"alias":"IL1E","entrezGeneId":"56300"},{"alias":"IL1F9","entrezGeneId":"56300"},{"alias":"IL1H1","entrezGeneId":"56300"},{"alias":"IL1RP2","entrezGeneId":"56300"},{"alias":"asc-1","entrezGeneId":"56301"},{"alias":"ASC1","entrezGeneId":"56301"},{"alias":"HASC-1","entrezGeneId":"56301"},{"alias":"CAT2","entrezGeneId":"56302"},{"alias":"ECAC1","entrezGeneId":"56302"},{"alias":"OTRPC3","entrezGeneId":"56302"},{"alias":"TSA806","entrezGeneId":"56311"},{"alias":"hMETTL3","entrezGeneId":"56339"},{"alias":"IME4","entrezGeneId":"56339"},{"alias":"M6A","entrezGeneId":"56339"},{"alias":"MT-A70","entrezGeneId":"56339"},{"alias":"Spo8","entrezGeneId":"56339"},{"alias":"HRMT1L3","entrezGeneId":"56341"},{"alias":"HRMT1L4","entrezGeneId":"56341"},{"alias":"BXDC3","entrezGeneId":"56342"},{"alias":"SSF","entrezGeneId":"56342"},{"alias":"SSF-1","entrezGeneId":"56342"},{"alias":"SSF1","entrezGeneId":"56342"},{"alias":"SSF2","entrezGeneId":"56342"},{"alias":"CABP3","entrezGeneId":"56344"},{"alias":"BLT2","entrezGeneId":"56413"},{"alias":"BLTR2","entrezGeneId":"56413"},{"alias":"JULF2","entrezGeneId":"56413"},{"alias":"KPG_004","entrezGeneId":"56413"},{"alias":"LTB4-R 2","entrezGeneId":"56413"},{"alias":"LTB4-R2","entrezGeneId":"56413"},{"alias":"NOP9","entrezGeneId":"56413"},{"alias":"REPRIMO","entrezGeneId":"56475"},{"alias":"ABCB10P","entrezGeneId":"56476"},{"alias":"ABCB10P2","entrezGeneId":"56476"},{"alias":"M-ABC2","entrezGeneId":"56476"},{"alias":"MABC2","entrezGeneId":"56476"},{"alias":"CCK1","entrezGeneId":"56477"},{"alias":"MEC","entrezGeneId":"56477"},{"alias":"SCYA28","entrezGeneId":"56477"},{"alias":"4E-T","entrezGeneId":"56478"},{"alias":"Clast4","entrezGeneId":"56478"},{"alias":"Kv7.5","entrezGeneId":"56479"},{"alias":"MRD46","entrezGeneId":"56479"},{"alias":"HPANBH4","entrezGeneId":"56521"},{"alias":"JDP1","entrezGeneId":"56521"},{"alias":"C6ST-2","entrezGeneId":"56548"},{"alias":"GST-5","entrezGeneId":"56548"},{"alias":"CYP26A2","entrezGeneId":"56603"},{"alias":"P450RAI-2","entrezGeneId":"56603"},{"alias":"P450RAI2","entrezGeneId":"56603"},{"alias":"RHFCA","entrezGeneId":"56603"},{"alias":"TUBB4Q","entrezGeneId":"56604"},{"alias":"Ero1beta","entrezGeneId":"56605"},{"alias":"ERO1LB","entrezGeneId":"56605"},{"alias":"GLUT9","entrezGeneId":"56606"},{"alias":"GLUTX","entrezGeneId":"56606"},{"alias":"UAQTL2","entrezGeneId":"56606"},{"alias":"URATv1","entrezGeneId":"56606"},{"alias":"DFNA64","entrezGeneId":"56616"},{"alias":"SMAC","entrezGeneId":"56616"},{"alias":"CORS1","entrezGeneId":"56623"},{"alias":"CPD4","entrezGeneId":"56623"},{"alias":"JBTS1","entrezGeneId":"56623"},{"alias":"MORMS","entrezGeneId":"56623"},{"alias":"pharbin","entrezGeneId":"56623"},{"alias":"PPI5PIV","entrezGeneId":"56623"},{"alias":"BCDase","entrezGeneId":"56624"},{"alias":"HNAC1","entrezGeneId":"56624"},{"alias":"LCDase","entrezGeneId":"56624"},{"alias":"N-CDase","entrezGeneId":"56624"},{"alias":"NCDase","entrezGeneId":"56624"},{"alias":"TOK-1","entrezGeneId":"56647"},{"alias":"TOK1","entrezGeneId":"56647"},{"alias":"EIF-5A2","entrezGeneId":"56648"},{"alias":"eIF5AII","entrezGeneId":"56648"},{"alias":"CAPH2","entrezGeneId":"56649"},{"alias":"MT-SP2","entrezGeneId":"56649"},{"alias":"TMPRSS3","entrezGeneId":"56649"},{"alias":"C3orf4","entrezGeneId":"56650"},{"alias":"GENX-3745","entrezGeneId":"56650"},{"alias":"Z38","entrezGeneId":"56650"},{"alias":"C18orf2","entrezGeneId":"56651"},{"alias":"ATXN8","entrezGeneId":"56652"},{"alias":"C10orf2","entrezGeneId":"56652"},{"alias":"IOSCA","entrezGeneId":"56652"},{"alias":"MTDPS7","entrezGeneId":"56652"},{"alias":"PEO","entrezGeneId":"56652"},{"alias":"PEO1","entrezGeneId":"56652"},{"alias":"PEOA3","entrezGeneId":"56652"},{"alias":"PRLTS5","entrezGeneId":"56652"},{"alias":"SANDO","entrezGeneId":"56652"},{"alias":"SCA8","entrezGeneId":"56652"},{"alias":"TWINL","entrezGeneId":"56652"},{"alias":"CAB","entrezGeneId":"56654"},{"alias":"CAB-","entrezGeneId":"56654"},{"alias":"CAB-1","entrezGeneId":"56654"},{"alias":"CAB1","entrezGeneId":"56654"},{"alias":"NPDC-1","entrezGeneId":"56654"},{"alias":"p12","entrezGeneId":"56655"},{"alias":"YHHQ1","entrezGeneId":"56655"},{"alias":"OR37A","entrezGeneId":"56656"},{"alias":"OST715","entrezGeneId":"56656"},{"alias":"RNF23","entrezGeneId":"56658"},{"alias":"TFP","entrezGeneId":"56658"},{"alias":"TRIM39B","entrezGeneId":"56658"},{"alias":"K2p13.1","entrezGeneId":"56659"},{"alias":"THIK-1","entrezGeneId":"56659"},{"alias":"THIK1","entrezGeneId":"56659"},{"alias":"K2p12.1","entrezGeneId":"56660"},{"alias":"THIK-2","entrezGeneId":"56660"},{"alias":"THIK2","entrezGeneId":"56660"},{"alias":"hvg-3","entrezGeneId":"56662"},{"alias":"HVG3","entrezGeneId":"56662"},{"alias":"VAULTRC3","entrezGeneId":"56662"},{"alias":"VR3","entrezGeneId":"56662"},{"alias":"hvg-2","entrezGeneId":"56663"},{"alias":"HVG2","entrezGeneId":"56663"},{"alias":"VAULTRC2","entrezGeneId":"56663"},{"alias":"VR2","entrezGeneId":"56663"},{"alias":"hvg-1","entrezGeneId":"56664"},{"alias":"HVG1","entrezGeneId":"56664"},{"alias":"VAULTRC1","entrezGeneId":"56664"},{"alias":"VR1","entrezGeneId":"56664"},{"alias":"vRNA","entrezGeneId":"56664"},{"alias":"hPANX2","entrezGeneId":"56666"},{"alias":"PX2","entrezGeneId":"56666"},{"alias":"DRCC1","entrezGeneId":"56667"},{"alias":"MUC-13","entrezGeneId":"56667"},{"alias":"GPR91","entrezGeneId":"56670"},{"alias":"BCA3","entrezGeneId":"56672"},{"alias":"C11orf17","entrezGeneId":"56672"},{"alias":"C11orf15","entrezGeneId":"56674"},{"alias":"C11orf14","entrezGeneId":"56675"},{"alias":"NY-SAR-105","entrezGeneId":"56675"},{"alias":"bHLHa42","entrezGeneId":"56676"},{"alias":"HASH3","entrezGeneId":"56676"},{"alias":"SGN1","entrezGeneId":"56676"},{"alias":"FABP3-ps","entrezGeneId":"56677"},{"alias":"FABP3P","entrezGeneId":"56677"},{"alias":"masra2","entrezGeneId":"56681"},{"alias":"SAR1","entrezGeneId":"56681"},{"alias":"Sara","entrezGeneId":"56681"},{"alias":"SARA1","entrezGeneId":"56681"},{"alias":"C21orf48","entrezGeneId":"56683"},{"alias":"C21orf59","entrezGeneId":"56683"},{"alias":"CILD26","entrezGeneId":"56683"},{"alias":"FBB18","entrezGeneId":"56683"},{"alias":"Kur","entrezGeneId":"56683"},{"alias":"OB10P","entrezGeneId":"56694"},{"alias":"CMT2K","entrezGeneId":"56704"},{"alias":"JP-1","entrezGeneId":"56704"},{"alias":"JP1","entrezGeneId":"56704"},{"alias":"ADSF","entrezGeneId":"56729"},{"alias":"FIZZ3","entrezGeneId":"56729"},{"alias":"RETN1","entrezGeneId":"56729"},{"alias":"RSTN","entrezGeneId":"56729"},{"alias":"XCP1","entrezGeneId":"56729"},{"alias":"GEF","entrezGeneId":"56731"},{"alias":"HDBP-1","entrezGeneId":"56731"},{"alias":"HDBP1","entrezGeneId":"56731"},{"alias":"Si-1-2","entrezGeneId":"56731"},{"alias":"Si-1-2-19","entrezGeneId":"56731"},{"alias":"HDLD3","entrezGeneId":"56801"},{"alias":"HYALP","entrezGeneId":"56801"},{"alias":"HYLAP","entrezGeneId":"56801"},{"alias":"ARTD13","entrezGeneId":"56829"},{"alias":"FLB6421","entrezGeneId":"56829"},{"alias":"PARP13","entrezGeneId":"56829"},{"alias":"ZAP","entrezGeneId":"56829"},{"alias":"ZC3H2","entrezGeneId":"56829"},{"alias":"ZC3HDC2","entrezGeneId":"56829"},{"alias":"IFNT1","entrezGeneId":"56832"},{"alias":"INFE1","entrezGeneId":"56832"},{"alias":"BLAME","entrezGeneId":"56833"},{"alias":"CD353","entrezGeneId":"56833"},{"alias":"SBBI42","entrezGeneId":"56833"},{"alias":"C11orf4","entrezGeneId":"56834"},{"alias":"GPR137A","entrezGeneId":"56834"},{"alias":"TM7SF1L1","entrezGeneId":"56834"},{"alias":"SK 2","entrezGeneId":"56848"},{"alias":"SK-2","entrezGeneId":"56848"},{"alias":"SPK 2","entrezGeneId":"56848"},{"alias":"SPK-2","entrezGeneId":"56848"},{"alias":"WEX5","entrezGeneId":"56849"},{"alias":"GRASP-1","entrezGeneId":"56850"},{"alias":"C11orf3","entrezGeneId":"56851"},{"alias":"C15orf24","entrezGeneId":"56851"},{"alias":"HT022","entrezGeneId":"56851"},{"alias":"ORF1-FL1","entrezGeneId":"56851"},{"alias":"RNF73","entrezGeneId":"56852"},{"alias":"BRUNOL4","entrezGeneId":"56853"},{"alias":"CELF-4","entrezGeneId":"56853"},{"alias":"SCIP1","entrezGeneId":"56882"},{"alias":"SPEC1","entrezGeneId":"56882"},{"alias":"HUGT1","entrezGeneId":"56886"},{"alias":"UGCGL1","entrezGeneId":"56886"},{"alias":"UGT1","entrezGeneId":"56886"},{"alias":"DEBT91","entrezGeneId":"56888"},{"alias":"FIGC","entrezGeneId":"56888"},{"alias":"PCMF","entrezGeneId":"56888"},{"alias":"ZZZ1","entrezGeneId":"56888"},{"alias":"EP70-P-iso","entrezGeneId":"56889"},{"alias":"SMBP","entrezGeneId":"56889"},{"alias":"CLC2","entrezGeneId":"56891"},{"alias":"PPL13","entrezGeneId":"56891"},{"alias":"C8orf4","entrezGeneId":"56892"},{"alias":"TC-1","entrezGeneId":"56892"},{"alias":"TC1","entrezGeneId":"56892"},{"alias":"A1U","entrezGeneId":"56893"},{"alias":"A1Up","entrezGeneId":"56893"},{"alias":"C1orf6","entrezGeneId":"56893"},{"alias":"CIP75","entrezGeneId":"56893"},{"alias":"UBIN","entrezGeneId":"56893"},{"alias":"LPAAT-GAMMA1","entrezGeneId":"56894"},{"alias":"LPAAT3","entrezGeneId":"56894"},{"alias":"1-AGPAT4","entrezGeneId":"56895"},{"alias":"dJ473J16.2","entrezGeneId":"56895"},{"alias":"LPAAT-delta","entrezGeneId":"56895"},{"alias":"CRAM","entrezGeneId":"56896"},{"alias":"CRMP-5","entrezGeneId":"56896"},{"alias":"CRMP5","entrezGeneId":"56896"},{"alias":"Ulip6","entrezGeneId":"56896"},{"alias":"bA420G6.2","entrezGeneId":"56897"},{"alias":"WHIP","entrezGeneId":"56897"},{"alias":"DHRS6","entrezGeneId":"56898"},{"alias":"EFA6R","entrezGeneId":"56898"},{"alias":"PRO20933","entrezGeneId":"56898"},{"alias":"SDR15C1","entrezGeneId":"56898"},{"alias":"UCPA-OR","entrezGeneId":"56898"},{"alias":"UNQ6308","entrezGeneId":"56898"},{"alias":"AIDA","entrezGeneId":"56899"},{"alias":"AIDA-1","entrezGeneId":"56899"},{"alias":"ANKS2","entrezGeneId":"56899"},{"alias":"cajalin-2","entrezGeneId":"56899"},{"alias":"EB-1","entrezGeneId":"56899"},{"alias":"EB1","entrezGeneId":"56899"},{"alias":"AD-020","entrezGeneId":"56900"},{"alias":"C1orf119","entrezGeneId":"56900"},{"alias":"NUOMS","entrezGeneId":"56901"},{"alias":"KHRBP1","entrezGeneId":"56902"},{"alias":"RRP20","entrezGeneId":"56902"},{"alias":"PAPT","entrezGeneId":"56903"},{"alias":"TPAP","entrezGeneId":"56903"},{"alias":"PP6569","entrezGeneId":"56904"},{"alias":"PP9455","entrezGeneId":"56904"},{"alias":"RRIG1","entrezGeneId":"56904"},{"alias":"Spir-1","entrezGeneId":"56907"},{"alias":"GTT1","entrezGeneId":"56910"},{"alias":"C21orf7","entrezGeneId":"56911"},{"alias":"HC21ORF7","entrezGeneId":"56911"},{"alias":"TAK1L","entrezGeneId":"56911"},{"alias":"TAKL","entrezGeneId":"56911"},{"alias":"TAKL-1","entrezGeneId":"56911"},{"alias":"TAKL-2","entrezGeneId":"56911"},{"alias":"TAKL-4","entrezGeneId":"56911"},{"alias":"C11orf2","entrezGeneId":"56912"},{"alias":"C11orf60","entrezGeneId":"56912"},{"alias":"CFAP32","entrezGeneId":"56912"},{"alias":"C1GALT","entrezGeneId":"56913"},{"alias":"T-synthase","entrezGeneId":"56913"},{"alias":"FDP","entrezGeneId":"56914"},{"alias":"MIAL1","entrezGeneId":"56914"},{"alias":"hRrp46p","entrezGeneId":"56915"},{"alias":"p12B","entrezGeneId":"56915"},{"alias":"RRP41B","entrezGeneId":"56915"},{"alias":"RRP46","entrezGeneId":"56915"},{"alias":"Rrp46p","entrezGeneId":"56915"},{"alias":"ADERM","entrezGeneId":"56916"},{"alias":"BASNS","entrezGeneId":"56916"},{"alias":"ETL1","entrezGeneId":"56916"},{"alias":"HEL1","entrezGeneId":"56916"},{"alias":"MRG2","entrezGeneId":"56917"},{"alias":"DDX33","entrezGeneId":"56919"},{"alias":"sem2","entrezGeneId":"56920"},{"alias":"MCC-B","entrezGeneId":"56922"},{"alias":"MCCA","entrezGeneId":"56922"},{"alias":"FM-4","entrezGeneId":"56923"},{"alias":"FM4","entrezGeneId":"56923"},{"alias":"NMU-R2","entrezGeneId":"56923"},{"alias":"NMU2R","entrezGeneId":"56923"},{"alias":"TGR-1","entrezGeneId":"56923"},{"alias":"TGR1","entrezGeneId":"56923"},{"alias":"PAK5","entrezGeneId":"56924"},{"alias":"ECI","entrezGeneId":"56925"},{"alias":"TCI","entrezGeneId":"56925"},{"alias":"NET59","entrezGeneId":"56926"},{"alias":"LUSTR2","entrezGeneId":"56927"},{"alias":"IMP-4","entrezGeneId":"56928"},{"alias":"IMP4","entrezGeneId":"56928"},{"alias":"PSH4","entrezGeneId":"56928"},{"alias":"PSL1","entrezGeneId":"56928"},{"alias":"EUROIMAGE686608","entrezGeneId":"56929"},{"alias":"EUROIMAGE783647","entrezGeneId":"56929"},{"alias":"FEM1A","entrezGeneId":"56929"},{"alias":"DUS3","entrezGeneId":"56931"},{"alias":"CA-RPX","entrezGeneId":"56934"},{"alias":"CARPX","entrezGeneId":"56934"},{"alias":"HUCEP-15","entrezGeneId":"56934"},{"alias":"C11orf75","entrezGeneId":"56935"},{"alias":"FN5","entrezGeneId":"56935"},{"alias":"C14orf162","entrezGeneId":"56936"},{"alias":"PLPL","entrezGeneId":"56936"},{"alias":"STAG1","entrezGeneId":"56937"},{"alias":"TMEPAI","entrezGeneId":"56937"},{"alias":"bHLHe6","entrezGeneId":"56938"},{"alias":"BMAL2","entrezGeneId":"56938"},{"alias":"CLIF","entrezGeneId":"56938"},{"alias":"MOP9","entrezGeneId":"56938"},{"alias":"PASD9","entrezGeneId":"56938"},{"alias":"JKAP","entrezGeneId":"56940"},{"alias":"JSP-1","entrezGeneId":"56940"},{"alias":"JSP1","entrezGeneId":"56940"},{"alias":"LMW-DSP2","entrezGeneId":"56940"},{"alias":"LMWDSP2","entrezGeneId":"56940"},{"alias":"MKP-x","entrezGeneId":"56940"},{"alias":"MKPX","entrezGeneId":"56940"},{"alias":"VHX","entrezGeneId":"56940"},{"alias":"C3orf37","entrezGeneId":"56941"},{"alias":"DC12","entrezGeneId":"56941"},{"alias":"SRAPD1","entrezGeneId":"56941"},{"alias":"2310061C15Rik","entrezGeneId":"56942"},{"alias":"C16orf61","entrezGeneId":"56942"},{"alias":"DC13","entrezGeneId":"56942"},{"alias":"DC6","entrezGeneId":"56943"},{"alias":"e(y)2","entrezGeneId":"56943"},{"alias":"Sus1","entrezGeneId":"56943"},{"alias":"HNOEL-iso","entrezGeneId":"56944"},{"alias":"OLF44","entrezGeneId":"56944"},{"alias":"C3orf5","entrezGeneId":"56945"},{"alias":"COXPD5","entrezGeneId":"56945"},{"alias":"GIBT","entrezGeneId":"56945"},{"alias":"GK002","entrezGeneId":"56945"},{"alias":"MRP-S22","entrezGeneId":"56945"},{"alias":"RPMS22","entrezGeneId":"56945"},{"alias":"C11orf30","entrezGeneId":"56946"},{"alias":"GL002","entrezGeneId":"56946"},{"alias":"C2orf33","entrezGeneId":"56947"},{"alias":"EMPF2","entrezGeneId":"56947"},{"alias":"GL004","entrezGeneId":"56947"},{"alias":"C14orf124","entrezGeneId":"56948"},{"alias":"HCDI","entrezGeneId":"56948"},{"alias":"HCNP","entrezGeneId":"56949"},{"alias":"HCRN","entrezGeneId":"56949"},{"alias":"NTC90","entrezGeneId":"56949"},{"alias":"SYF1","entrezGeneId":"56949"},{"alias":"HSKM-B","entrezGeneId":"56950"},{"alias":"KMT3C","entrezGeneId":"56950"},{"alias":"ZMYND14","entrezGeneId":"56950"},{"alias":"HTGN29","entrezGeneId":"56951"},{"alias":"KCT2","entrezGeneId":"56951"},{"alias":"HHGP","entrezGeneId":"56952"},{"alias":"dNT-2","entrezGeneId":"56953"},{"alias":"dNT2","entrezGeneId":"56953"},{"alias":"mdN","entrezGeneId":"56953"},{"alias":"HEL-S-8a","entrezGeneId":"56954"},{"alias":"OF45","entrezGeneId":"56955"},{"alias":"CEZANNE","entrezGeneId":"56957"},{"alias":"ZA20D1","entrezGeneId":"56957"},{"alias":"RGM","entrezGeneId":"56963"},{"alias":"ARTD17","entrezGeneId":"56965"},{"alias":"PARP-6-B1","entrezGeneId":"56965"},{"alias":"PARP-6-C","entrezGeneId":"56965"},{"alias":"pART17","entrezGeneId":"56965"},{"alias":"C14orf88","entrezGeneId":"56967"},{"alias":"RPL23A_9_220","entrezGeneId":"56969"},{"alias":"CEACM19","entrezGeneId":"56971"},{"alias":"CEAL1","entrezGeneId":"56971"},{"alias":"DMP-4","entrezGeneId":"56975"},{"alias":"DMP4","entrezGeneId":"56975"},{"alias":"G-CK","entrezGeneId":"56975"},{"alias":"GEF-CK","entrezGeneId":"56975"},{"alias":"RNS","entrezGeneId":"56975"},{"alias":"EPM10","entrezGeneId":"56978"},{"alias":"KMT8D","entrezGeneId":"56978"},{"alias":"PFM5","entrezGeneId":"56978"},{"alias":"KMT8B","entrezGeneId":"56979"},{"alias":"MEISETZ","entrezGeneId":"56979"},{"alias":"MSBP3","entrezGeneId":"56979"},{"alias":"PFM6","entrezGeneId":"56979"},{"alias":"ZNF899","entrezGeneId":"56979"},{"alias":"PFM7","entrezGeneId":"56980"},{"alias":"PFM8","entrezGeneId":"56981"},{"alias":"C3orf9","entrezGeneId":"56983"},{"alias":"CLP46","entrezGeneId":"56983"},{"alias":"hCLP46","entrezGeneId":"56983"},{"alias":"KDELCL1","entrezGeneId":"56983"},{"alias":"KTELC1","entrezGeneId":"56983"},{"alias":"LGMD2Z","entrezGeneId":"56983"},{"alias":"MDS010","entrezGeneId":"56983"},{"alias":"MDSRP","entrezGeneId":"56983"},{"alias":"Rumi","entrezGeneId":"56983"},{"alias":"CLAST3","entrezGeneId":"56984"},{"alias":"HCCA3","entrezGeneId":"56984"},{"alias":"HsT1707","entrezGeneId":"56984"},{"alias":"MDS003","entrezGeneId":"56984"},{"alias":"PAC2","entrezGeneId":"56984"},{"alias":"TNFSF5IP1","entrezGeneId":"56984"},{"alias":"C17orf48","entrezGeneId":"56985"},{"alias":"MDS006","entrezGeneId":"56985"},{"alias":"NBLA03831","entrezGeneId":"56985"},{"alias":"MDS009","entrezGeneId":"56986"},{"alias":"ARTC1","entrezGeneId":"56987"},{"alias":"HBP2","entrezGeneId":"56987"},{"alias":"HSPC339","entrezGeneId":"56987"},{"alias":"MDS001","entrezGeneId":"56987"},{"alias":"SPEC2","entrezGeneId":"56990"},{"alias":"HKLP2","entrezGeneId":"56992"},{"alias":"KLP2","entrezGeneId":"56992"},{"alias":"KNSL7","entrezGeneId":"56992"},{"alias":"NY-BR-62","entrezGeneId":"56992"},{"alias":"1C9-2","entrezGeneId":"56993"},{"alias":"MST065","entrezGeneId":"56993"},{"alias":"MSTP065","entrezGeneId":"56993"},{"alias":"TOM22","entrezGeneId":"56993"},{"alias":"CPT","entrezGeneId":"56994"},{"alias":"CPT1","entrezGeneId":"56994"},{"alias":"TUSP","entrezGeneId":"56995"},{"alias":"CCC6","entrezGeneId":"56996"},{"alias":"CIP1","entrezGeneId":"56996"},{"alias":"hCCC6","entrezGeneId":"56996"},{"alias":"WO3.3","entrezGeneId":"56996"},{"alias":"ADCK3","entrezGeneId":"56997"},{"alias":"ARCA2","entrezGeneId":"56997"},{"alias":"CABC1","entrezGeneId":"56997"},{"alias":"COQ10D4","entrezGeneId":"56997"},{"alias":"COQ8","entrezGeneId":"56997"},{"alias":"SCAR9","entrezGeneId":"56997"},{"alias":"ICAT","entrezGeneId":"56998"},{"alias":"C9orf31","entrezGeneId":"57000"},{"alias":"MOST2","entrezGeneId":"57000"},{"alias":"ACN9","entrezGeneId":"57001"},{"alias":"DC11","entrezGeneId":"57001"},{"alias":"LYRM10","entrezGeneId":"57001"},{"alias":"Sdh7","entrezGeneId":"57001"},{"alias":"C7orf36","entrezGeneId":"57002"},{"alias":"GK003","entrezGeneId":"57002"},{"alias":"GK001","entrezGeneId":"57003"},{"alias":"MSTP041","entrezGeneId":"57003"},{"alias":"CMKOR1","entrezGeneId":"57007"},{"alias":"CXC-R7","entrezGeneId":"57007"},{"alias":"CXCR-7","entrezGeneId":"57007"},{"alias":"CXCR7","entrezGeneId":"57007"},{"alias":"GPR159","entrezGeneId":"57007"},{"alias":"RDC-1","entrezGeneId":"57007"},{"alias":"RDC1","entrezGeneId":"57007"},{"alias":"RLFP","entrezGeneId":"57008"},{"alias":"CRSD","entrezGeneId":"57010"},{"alias":"CSNB2B","entrezGeneId":"57010"},{"alias":"AKR1B11","entrezGeneId":"57016"},{"alias":"AKR1B12","entrezGeneId":"57016"},{"alias":"ALDRLn","entrezGeneId":"57016"},{"alias":"ARL-1","entrezGeneId":"57016"},{"alias":"ARL1","entrezGeneId":"57016"},{"alias":"HIS","entrezGeneId":"57016"},{"alias":"HSI","entrezGeneId":"57016"},{"alias":"C16orf49","entrezGeneId":"57017"},{"alias":"COQ10D5","entrezGeneId":"57017"},{"alias":"ania-6a","entrezGeneId":"57018"},{"alias":"ANIA6A","entrezGeneId":"57018"},{"alias":"BM-001","entrezGeneId":"57018"},{"alias":"PRO1073","entrezGeneId":"57018"},{"alias":"Anamorsin","entrezGeneId":"57019"},{"alias":"DRE2","entrezGeneId":"57019"},{"alias":"PRO0915","entrezGeneId":"57019"},{"alias":"C16orf62","entrezGeneId":"57020"},{"alias":"CIN","entrezGeneId":"57026"},{"alias":"dJ37E16.5","entrezGeneId":"57026"},{"alias":"PLP","entrezGeneId":"57026"},{"alias":"BNPI","entrezGeneId":"57030"},{"alias":"VGLUT1","entrezGeneId":"57030"},{"alias":"C1orf63","entrezGeneId":"57035"},{"alias":"NPD014","entrezGeneId":"57035"},{"alias":"ZMYND20","entrezGeneId":"57037"},{"alias":"ArgRS","entrezGeneId":"57038"},{"alias":"DALRD2","entrezGeneId":"57038"},{"alias":"PCH6","entrezGeneId":"57038"},{"alias":"PRO1992","entrezGeneId":"57038"},{"alias":"RARSL","entrezGeneId":"57038"},{"alias":"TSG","entrezGeneId":"57045"},{"alias":"CRL1","entrezGeneId":"57050"},{"alias":"CRLZ1","entrezGeneId":"57050"},{"alias":"SAS10","entrezGeneId":"57050"},{"alias":"pDP1679","entrezGeneId":"57054"},{"alias":"pDP1678","entrezGeneId":"57055"},{"alias":"ASD4","entrezGeneId":"57057"},{"alias":"CBP","entrezGeneId":"57060"},{"alias":"LIP4","entrezGeneId":"57060"},{"alias":"MCG10","entrezGeneId":"57060"},{"alias":"NCRNA00020","entrezGeneId":"57061"},{"alias":"AF15Q14","entrezGeneId":"57082"},{"alias":"CASC5","entrezGeneId":"57082"},{"alias":"CT29","entrezGeneId":"57082"},{"alias":"D40","entrezGeneId":"57082"},{"alias":"hKNL-1","entrezGeneId":"57082"},{"alias":"hSpc105","entrezGeneId":"57082"},{"alias":"MCPH4","entrezGeneId":"57082"},{"alias":"PPP1R55","entrezGeneId":"57082"},{"alias":"Spc7","entrezGeneId":"57082"},{"alias":"DNPI","entrezGeneId":"57084"},{"alias":"VGLUT2","entrezGeneId":"57084"},{"alias":"ATRAP","entrezGeneId":"57085"},{"alias":"TRA1","entrezGeneId":"57088"},{"alias":"LALP1","entrezGeneId":"57089"},{"alias":"C20orf32","entrezGeneId":"57091"},{"alias":"CAS4","entrezGeneId":"57091"},{"alias":"HEFL","entrezGeneId":"57091"},{"alias":"HEPL","entrezGeneId":"57091"},{"alias":"RNF18","entrezGeneId":"57093"},{"alias":"TRIM49A","entrezGeneId":"57093"},{"alias":"TRIM49L2","entrezGeneId":"57093"},{"alias":"CPAH","entrezGeneId":"57094"},{"alias":"ETL5","entrezGeneId":"57094"},{"alias":"FEB11","entrezGeneId":"57094"},{"alias":"C1orf128","entrezGeneId":"57095"},{"alias":"HT014","entrezGeneId":"57095"},{"alias":"TXNL1CL","entrezGeneId":"57095"},{"alias":"CORD13","entrezGeneId":"57096"},{"alias":"LCA6","entrezGeneId":"57096"},{"alias":"RGI1","entrezGeneId":"57096"},{"alias":"RGRIP","entrezGeneId":"57096"},{"alias":"RPGRIP","entrezGeneId":"57096"},{"alias":"RPGRIP1d","entrezGeneId":"57096"},{"alias":"ARTD11","entrezGeneId":"57097"},{"alias":"C12orf6","entrezGeneId":"57097"},{"alias":"MIB006","entrezGeneId":"57097"},{"alias":"PDCD12","entrezGeneId":"57099"},{"alias":"C12orf3","entrezGeneId":"57101"},{"alias":"TMEM16B","entrezGeneId":"57101"},{"alias":"C12orf5","entrezGeneId":"57103"},{"alias":"FR2BP","entrezGeneId":"57103"},{"alias":"1110001C14Rik","entrezGeneId":"57104"},{"alias":"ATGL","entrezGeneId":"57104"},{"alias":"FP17548","entrezGeneId":"57104"},{"alias":"iPLA2zeta","entrezGeneId":"57104"},{"alias":"PEDF-R","entrezGeneId":"57104"},{"alias":"TTS-2.2","entrezGeneId":"57104"},{"alias":"TTS2","entrezGeneId":"57104"},{"alias":"CYSLT2","entrezGeneId":"57105"},{"alias":"CYSLT2R","entrezGeneId":"57105"},{"alias":"GPCR21","entrezGeneId":"57105"},{"alias":"HG57","entrezGeneId":"57105"},{"alias":"hGPCR21","entrezGeneId":"57105"},{"alias":"HPN321","entrezGeneId":"57105"},{"alias":"KPG_011","entrezGeneId":"57105"},{"alias":"PSEC0146","entrezGeneId":"57105"},{"alias":"KLP1","entrezGeneId":"57106"},{"alias":"bA59I9.3","entrezGeneId":"57107"},{"alias":"C6orf210","entrezGeneId":"57107"},{"alias":"COQ10D3","entrezGeneId":"57107"},{"alias":"DLP1","entrezGeneId":"57107"},{"alias":"hDLP1","entrezGeneId":"57107"},{"alias":"SET07p","entrezGeneId":"57108"},{"alias":"SET7","entrezGeneId":"57108"},{"alias":"REX4","entrezGeneId":"57109"},{"alias":"XPMC2","entrezGeneId":"57109"},{"alias":"XPMC2H","entrezGeneId":"57109"},{"alias":"A-C1","entrezGeneId":"57110"},{"alias":"H-REV107","entrezGeneId":"57110"},{"alias":"HRASLS1","entrezGeneId":"57110"},{"alias":"HRSL1","entrezGeneId":"57110"},{"alias":"HSD28","entrezGeneId":"57110"},{"alias":"CATX-8","entrezGeneId":"57111"},{"alias":"RAB11C","entrezGeneId":"57111"},{"alias":"TRP7","entrezGeneId":"57113"},{"alias":"PGLYRPIbeta","entrezGeneId":"57115"},{"alias":"PGRP-Ibeta","entrezGeneId":"57115"},{"alias":"PGRPIB","entrezGeneId":"57115"},{"alias":"SBBI67","entrezGeneId":"57115"},{"alias":"SBZF3","entrezGeneId":"57116"},{"alias":"INT12","entrezGeneId":"57117"},{"alias":"PHF22","entrezGeneId":"57117"},{"alias":"SBBI22","entrezGeneId":"57117"},{"alias":"CaM-K1","entrezGeneId":"57118"},{"alias":"CaMKID","entrezGeneId":"57118"},{"alias":"CKLiK","entrezGeneId":"57118"},{"alias":"CT71","entrezGeneId":"57119"},{"alias":"CT72","entrezGeneId":"57119"},{"alias":"dJ461P17.2","entrezGeneId":"57119"},{"alias":"SPINLW1","entrezGeneId":"57119"},{"alias":"WAP7","entrezGeneId":"57119"},{"alias":"WFDC7","entrezGeneId":"57119"},{"alias":"CAL","entrezGeneId":"57120"},{"alias":"dJ94G16.2","entrezGeneId":"57120"},{"alias":"FIG","entrezGeneId":"57120"},{"alias":"GOPC1","entrezGeneId":"57120"},{"alias":"PIST","entrezGeneId":"57120"},{"alias":"GPR92","entrezGeneId":"57121"},{"alias":"GPR93","entrezGeneId":"57121"},{"alias":"KPG_010","entrezGeneId":"57121"},{"alias":"LPA5","entrezGeneId":"57121"},{"alias":"NPHS11","entrezGeneId":"57122"},{"alias":"NUP84","entrezGeneId":"57122"},{"alias":"CD164L1","entrezGeneId":"57124"},{"alias":"TEM1","entrezGeneId":"57124"},{"alias":"TEM3","entrezGeneId":"57125"},{"alias":"TEM7","entrezGeneId":"57125"},{"alias":"HNA-2a","entrezGeneId":"57126"},{"alias":"HNA2A","entrezGeneId":"57126"},{"alias":"NB1","entrezGeneId":"57126"},{"alias":"NB1 GP","entrezGeneId":"57126"},{"alias":"PRV-1","entrezGeneId":"57126"},{"alias":"PRV1","entrezGeneId":"57126"},{"alias":"SLC42A2","entrezGeneId":"57127"},{"alias":"C6orf149","entrezGeneId":"57128"},{"alias":"CGI-203","entrezGeneId":"57128"},{"alias":"COXPD19","entrezGeneId":"57128"},{"alias":"ISD11","entrezGeneId":"57128"},{"alias":"CGI-204","entrezGeneId":"57129"},{"alias":"L47mt","entrezGeneId":"57129"},{"alias":"MRP-L47","entrezGeneId":"57129"},{"alias":"NCM1","entrezGeneId":"57129"},{"alias":"ATP13A","entrezGeneId":"57130"},{"alias":"CGI-152","entrezGeneId":"57130"},{"alias":"C10orf2","entrezGeneId":"57132"},{"alias":"C18-ORF2","entrezGeneId":"57132"},{"alias":"C18orf2","entrezGeneId":"57132"},{"alias":"CHMP1.5","entrezGeneId":"57132"},{"alias":"hVps46-2","entrezGeneId":"57132"},{"alias":"Vps46-2","entrezGeneId":"57132"},{"alias":"Vps46B","entrezGeneId":"57132"},{"alias":"HMIC","entrezGeneId":"57134"},{"alias":"MAN1A3","entrezGeneId":"57134"},{"alias":"MAN1C","entrezGeneId":"57134"},{"alias":"pp6318","entrezGeneId":"57134"},{"alias":"pDP1680","entrezGeneId":"57135"},{"alias":"pDP1681","entrezGeneId":"57135"},{"alias":"BSCv","entrezGeneId":"57136"},{"alias":"C20orf3","entrezGeneId":"57136"},{"alias":"ASY","entrezGeneId":"57142"},{"alias":"Nbla00271","entrezGeneId":"57142"},{"alias":"Nbla10545","entrezGeneId":"57142"},{"alias":"NI220/250","entrezGeneId":"57142"},{"alias":"NOGO","entrezGeneId":"57142"},{"alias":"NSP","entrezGeneId":"57142"},{"alias":"NSP-CL","entrezGeneId":"57142"},{"alias":"RTN-X","entrezGeneId":"57142"},{"alias":"RTN4-A","entrezGeneId":"57142"},{"alias":"RTN4-B1","entrezGeneId":"57142"},{"alias":"RTN4-B2","entrezGeneId":"57142"},{"alias":"RTN4-C","entrezGeneId":"57142"},{"alias":"PAK7","entrezGeneId":"57144"},{"alias":"PACE-1","entrezGeneId":"57147"},{"alias":"PACE1","entrezGeneId":"57147"},{"alias":"KIAA1219","entrezGeneId":"57148"},{"alias":"RalGAPbeta","entrezGeneId":"57148"},{"alias":"A211C6.1","entrezGeneId":"57149"},{"alias":"C6orf162","entrezGeneId":"57150"},{"alias":"dJ102H19.2","entrezGeneId":"57150"},{"alias":"HEL-S-6a","entrezGeneId":"57151"},{"alias":"LYC1","entrezGeneId":"57151"},{"alias":"LYZB","entrezGeneId":"57151"},{"alias":"PRO1485","entrezGeneId":"57151"},{"alias":"TKAL754","entrezGeneId":"57151"},{"alias":"UNQ754","entrezGeneId":"57151"},{"alias":"ANUP","entrezGeneId":"57152"},{"alias":"ARS","entrezGeneId":"57152"},{"alias":"ArsB","entrezGeneId":"57152"},{"alias":"LY6LS","entrezGeneId":"57152"},{"alias":"MDM","entrezGeneId":"57152"},{"alias":"CTL2","entrezGeneId":"57153"},{"alias":"PP1292","entrezGeneId":"57153"},{"alias":"C14orf171","entrezGeneId":"57156"},{"alias":"CSC1","entrezGeneId":"57156"},{"alias":"hsCSC1","entrezGeneId":"57156"},{"alias":"CMH17","entrezGeneId":"57158"},{"alias":"JP-2","entrezGeneId":"57158"},{"alias":"JP2","entrezGeneId":"57158"},{"alias":"MURF","entrezGeneId":"57159"},{"alias":"MURF-3","entrezGeneId":"57159"},{"alias":"muRF3","entrezGeneId":"57159"},{"alias":"RNF30","entrezGeneId":"57159"},{"alias":"TBX23","entrezGeneId":"57160"},{"alias":"CX46.6","entrezGeneId":"57165"},{"alias":"Cx47","entrezGeneId":"57165"},{"alias":"GJA12","entrezGeneId":"57165"},{"alias":"HLD2","entrezGeneId":"57165"},{"alias":"LMPH1C","entrezGeneId":"57165"},{"alias":"PMLDAR","entrezGeneId":"57165"},{"alias":"SPG44","entrezGeneId":"57165"},{"alias":"DRRS","entrezGeneId":"57167"},{"alias":"HSAL4","entrezGeneId":"57167"},{"alias":"ZNF797","entrezGeneId":"57167"},{"alias":"LSFR2","entrezGeneId":"57171"},{"alias":"CLICK3","entrezGeneId":"57172"},{"alias":"CLICKIII","entrezGeneId":"57172"},{"alias":"dJ272L16.1","entrezGeneId":"57172"},{"alias":"VWS1","entrezGeneId":"57172"},{"alias":"CORONIN-2","entrezGeneId":"57175"},{"alias":"COXPD20","entrezGeneId":"57176"},{"alias":"VALRS","entrezGeneId":"57176"},{"alias":"VARS2L","entrezGeneId":"57176"},{"alias":"VARSL","entrezGeneId":"57176"},{"alias":"MIZ","entrezGeneId":"57178"},{"alias":"RAI17","entrezGeneId":"57178"},{"alias":"TRAFIP10","entrezGeneId":"57178"},{"alias":"ZIMP10","entrezGeneId":"57178"},{"alias":"p33MONOX","entrezGeneId":"57179"},{"alias":"p60MONOX","entrezGeneId":"57179"},{"alias":"ARP11","entrezGeneId":"57180"},{"alias":"ARP3BETA","entrezGeneId":"57180"},{"alias":"LZT-Hs2","entrezGeneId":"57181"},{"alias":"C15orf17","entrezGeneId":"57184"},{"alias":"DJ462O23.2","entrezGeneId":"57185"},{"alias":"NPAL3","entrezGeneId":"57185"},{"alias":"AS250","entrezGeneId":"57186"},{"alias":"bA287B20.1","entrezGeneId":"57186"},{"alias":"C20orf74","entrezGeneId":"57186"},{"alias":"dJ1049G11","entrezGeneId":"57186"},{"alias":"dJ1049G11.4","entrezGeneId":"57186"},{"alias":"p220","entrezGeneId":"57186"},{"alias":"CXorf3","entrezGeneId":"57187"},{"alias":"dJ506G2.1","entrezGeneId":"57187"},{"alias":"hTREX120","entrezGeneId":"57187"},{"alias":"MRX12","entrezGeneId":"57187"},{"alias":"MRX35","entrezGeneId":"57187"},{"alias":"THO2","entrezGeneId":"57187"},{"alias":"ADAMTSL-3","entrezGeneId":"57188"},{"alias":"LCHN","entrezGeneId":"57189"},{"alias":"PRO2561","entrezGeneId":"57189"},{"alias":"CFTD","entrezGeneId":"57190"},{"alias":"MDRS1","entrezGeneId":"57190"},{"alias":"RSMD1","entrezGeneId":"57190"},{"alias":"RSS","entrezGeneId":"57190"},{"alias":"SELN","entrezGeneId":"57190"},{"alias":"SEPN1","entrezGeneId":"57190"},{"alias":"V1RL1","entrezGeneId":"57191"},{"alias":"VNR19I1","entrezGeneId":"57191"},{"alias":"ZVNH1","entrezGeneId":"57191"},{"alias":"ZVNR1","entrezGeneId":"57191"},{"alias":"MG-2","entrezGeneId":"57192"},{"alias":"ML1","entrezGeneId":"57192"},{"alias":"ML4","entrezGeneId":"57192"},{"alias":"MLIV","entrezGeneId":"57192"},{"alias":"MST080","entrezGeneId":"57192"},{"alias":"MSTP080","entrezGeneId":"57192"},{"alias":"TRP-ML1","entrezGeneId":"57192"},{"alias":"TRPM-L1","entrezGeneId":"57192"},{"alias":"TRPML1","entrezGeneId":"57192"},{"alias":"ATP10C","entrezGeneId":"57194"},{"alias":"ATPVA","entrezGeneId":"57194"},{"alias":"ATPVC","entrezGeneId":"57194"},{"alias":"ATPID","entrezGeneId":"57198"},{"alias":"ATPVD","entrezGeneId":"57205"},{"alias":"bA162G10.3","entrezGeneId":"57209"},{"alias":"APG1","entrezGeneId":"57211"},{"alias":"DREG","entrezGeneId":"57211"},{"alias":"GPR126","entrezGeneId":"57211"},{"alias":"LCCS9","entrezGeneId":"57211"},{"alias":"PR126","entrezGeneId":"57211"},{"alias":"PS1TP2","entrezGeneId":"57211"},{"alias":"VIGR","entrezGeneId":"57211"},{"alias":"KIAA0495","entrezGeneId":"57212"},{"alias":"PDAM","entrezGeneId":"57212"},{"alias":"C13orf1","entrezGeneId":"57213"},{"alias":"CLLD6","entrezGeneId":"57213"},{"alias":"CCSP1","entrezGeneId":"57214"},{"alias":"HYBID","entrezGeneId":"57214"},{"alias":"KIAA1199","entrezGeneId":"57214"},{"alias":"TMEM2L","entrezGeneId":"57214"},{"alias":"CTG-B43a","entrezGeneId":"57215"},{"alias":"CTG-B45d","entrezGeneId":"57215"},{"alias":"HRIHFB2206","entrezGeneId":"57215"},{"alias":"RONIN","entrezGeneId":"57215"},{"alias":"LPP1","entrezGeneId":"57216"},{"alias":"LTAP","entrezGeneId":"57216"},{"alias":"STB1","entrezGeneId":"57216"},{"alias":"STBM","entrezGeneId":"57216"},{"alias":"STBM1","entrezGeneId":"57216"},{"alias":"GIDID","entrezGeneId":"57217"},{"alias":"MINAT","entrezGeneId":"57217"},{"alias":"TTC7","entrezGeneId":"57217"},{"alias":"A7322","entrezGeneId":"57221"},{"alias":"BIG3","entrezGeneId":"57221"},{"alias":"C6orf92","entrezGeneId":"57221"},{"alias":"dJ171N11.1","entrezGeneId":"57221"},{"alias":"KIAA1244","entrezGeneId":"57221"},{"alias":"PPP1R33","entrezGeneId":"57221"},{"alias":"ERGIC-32","entrezGeneId":"57222"},{"alias":"ERGIC32","entrezGeneId":"57222"},{"alias":"NET24","entrezGeneId":"57222"},{"alias":"FLFL2","entrezGeneId":"57223"},{"alias":"PP4R3B","entrezGeneId":"57223"},{"alias":"PSY2","entrezGeneId":"57223"},{"alias":"SMEK2","entrezGeneId":"57223"},{"alias":"smk1","entrezGeneId":"57223"},{"alias":"C6orf63","entrezGeneId":"57224"},{"alias":"DJ122O8.2","entrezGeneId":"57226"},{"alias":"hSMAGP","entrezGeneId":"57228"},{"alias":"RGS-PX2","entrezGeneId":"57231"},{"alias":"SCAR20","entrezGeneId":"57231"},{"alias":"dJ54B20.2","entrezGeneId":"57232"},{"alias":"FAM91A2","entrezGeneId":"57234"},{"alias":"NBCn2","entrezGeneId":"57282"},{"alias":"NCBE","entrezGeneId":"57282"},{"alias":"IGHV7-41","entrezGeneId":"57289"},{"alias":"IGHV741","entrezGeneId":"57289"},{"alias":"IGHV3-3","entrezGeneId":"57290"},{"alias":"IGHV3303","entrezGeneId":"57290"},{"alias":"AGU2","entrezGeneId":"57291"},{"alias":"ANCR","entrezGeneId":"57291"},{"alias":"KIAA0114","entrezGeneId":"57291"},{"alias":"lncRNA-ANCR","entrezGeneId":"57291"},{"alias":"SNHG13","entrezGeneId":"57291"},{"alias":"CD158F","entrezGeneId":"57292"},{"alias":"KIR2DL5","entrezGeneId":"57292"},{"alias":"KIR2DL5.1","entrezGeneId":"57292"},{"alias":"KIR2DL5.3","entrezGeneId":"57292"},{"alias":"C2DUPq35","entrezGeneId":"57306"},{"alias":"SD1","entrezGeneId":"57306"},{"alias":"SDTY1","entrezGeneId":"57306"},{"alias":"ATAC2","entrezGeneId":"57325"},{"alias":"CRP2BP","entrezGeneId":"57325"},{"alias":"CSRP2BP","entrezGeneId":"57325"},{"alias":"dJ717M23.1","entrezGeneId":"57325"},{"alias":"PRO1194","entrezGeneId":"57325"},{"alias":"HPIP","entrezGeneId":"57326"},{"alias":"PC3","entrezGeneId":"57332"},{"alias":"RC1","entrezGeneId":"57332"},{"alias":"RLP49","entrezGeneId":"57333"},{"alias":"ZNF286","entrezGeneId":"57335"},{"alias":"ZKSCAN13","entrezGeneId":"57336"},{"alias":"ZSCAN45","entrezGeneId":"57336"},{"alias":"CAGL237","entrezGeneId":"57338"},{"alias":"HDL2","entrezGeneId":"57338"},{"alias":"JP-3","entrezGeneId":"57338"},{"alias":"JP3","entrezGeneId":"57338"},{"alias":"TNRC22","entrezGeneId":"57338"},{"alias":"CX36","entrezGeneId":"57369"},{"alias":"GJA9","entrezGeneId":"57369"},{"alias":"AID","entrezGeneId":"57379"},{"alias":"ARP2","entrezGeneId":"57379"},{"alias":"CDA2","entrezGeneId":"57379"},{"alias":"HEL-S-284","entrezGeneId":"57379"},{"alias":"HIGM2","entrezGeneId":"57379"},{"alias":"HPT","entrezGeneId":"57380"},{"alias":"MRS2L","entrezGeneId":"57380"},{"alias":"ARHJ","entrezGeneId":"57381"},{"alias":"RASL7B","entrezGeneId":"57381"},{"alias":"TC10B","entrezGeneId":"57381"},{"alias":"TCL","entrezGeneId":"57381"},{"alias":"NX-17","entrezGeneId":"57393"},{"alias":"NX17","entrezGeneId":"57393"},{"alias":"TMEM27","entrezGeneId":"57393"},{"alias":"BCMP84","entrezGeneId":"57402"},{"alias":"S100A15","entrezGeneId":"57402"},{"alias":"CYP-M","entrezGeneId":"57404"},{"alias":"AD024","entrezGeneId":"57405"},{"alias":"hSpc25","entrezGeneId":"57405"},{"alias":"SPBC25","entrezGeneId":"57405"},{"alias":"HSCARG","entrezGeneId":"57407"},{"alias":"SDR48A1","entrezGeneId":"57407"},{"alias":"HT017","entrezGeneId":"57408"},{"alias":"AD023","entrezGeneId":"57409"},{"alias":"MIFD","entrezGeneId":"57409"},{"alias":"SLIP1","entrezGeneId":"57409"},{"alias":"GKLP","entrezGeneId":"57410"},{"alias":"HT019","entrezGeneId":"57410"},{"alias":"NKTL","entrezGeneId":"57410"},{"alias":"NTKL","entrezGeneId":"57410"},{"alias":"P105","entrezGeneId":"57410"},{"alias":"SCAR21","entrezGeneId":"57410"},{"alias":"TAPK","entrezGeneId":"57410"},{"alias":"TEIF","entrezGeneId":"57410"},{"alias":"TRAP","entrezGeneId":"57410"},{"alias":"CYT19","entrezGeneId":"57412"},{"alias":"AD026","entrezGeneId":"57413"},{"alias":"NPD007","entrezGeneId":"57414"},{"alias":"RHBDL7","entrezGeneId":"57414"},{"alias":"HT021","entrezGeneId":"57415"},{"alias":"Ipi3","entrezGeneId":"57418"},{"alias":"R32184_1","entrezGeneId":"57418"},{"alias":"NCKX3","entrezGeneId":"57419"},{"alias":"SYLD","entrezGeneId":"57447"},{"alias":"APOLLON","entrezGeneId":"57448"},{"alias":"BRUCE","entrezGeneId":"57448"},{"alias":"CMTRIC","entrezGeneId":"57449"},{"alias":"DSMA4","entrezGeneId":"57449"},{"alias":"GEF720","entrezGeneId":"57449"},{"alias":"Syx","entrezGeneId":"57449"},{"alias":"Tech","entrezGeneId":"57449"},{"alias":"ODZ2","entrezGeneId":"57451"},{"alias":"ten-2","entrezGeneId":"57451"},{"alias":"TEN-M2","entrezGeneId":"57451"},{"alias":"TNM2","entrezGeneId":"57451"},{"alias":"GalNAc-T16","entrezGeneId":"57452"},{"alias":"GALNACT16","entrezGeneId":"57452"},{"alias":"GALNTL1","entrezGeneId":"57452"},{"alias":"DSCAM2","entrezGeneId":"57453"},{"alias":"EloA-BP1","entrezGeneId":"57455"},{"alias":"ELOABP1","entrezGeneId":"57455"},{"alias":"REX1","entrezGeneId":"57455"},{"alias":"TCEB3BP1","entrezGeneId":"57455"},{"alias":"MRD18","entrezGeneId":"57459"},{"alias":"P66beta","entrezGeneId":"57459"},{"alias":"p68","entrezGeneId":"57459"},{"alias":"ARHCL1","entrezGeneId":"57460"},{"alias":"NERPP-2C","entrezGeneId":"57460"},{"alias":"URCC2","entrezGeneId":"57460"},{"alias":"FSAP33","entrezGeneId":"57461"},{"alias":"KIAA1161","entrezGeneId":"57462"},{"alias":"NET37","entrezGeneId":"57462"},{"alias":"ALI2","entrezGeneId":"57463"},{"alias":"AMIGO","entrezGeneId":"57463"},{"alias":"AMIGO-1","entrezGeneId":"57463"},{"alias":"FAM40B","entrezGeneId":"57464"},{"alias":"FAR11B","entrezGeneId":"57464"},{"alias":"DFNA65","entrezGeneId":"57465"},{"alias":"DFNB86","entrezGeneId":"57465"},{"alias":"DOORS","entrezGeneId":"57465"},{"alias":"EIEE16","entrezGeneId":"57465"},{"alias":"FIME","entrezGeneId":"57465"},{"alias":"TLDC6","entrezGeneId":"57465"},{"alias":"SFRS15","entrezGeneId":"57466"},{"alias":"SRA4","entrezGeneId":"57466"},{"alias":"C3orf3","entrezGeneId":"57467"},{"alias":"GUP1","entrezGeneId":"57467"},{"alias":"MBOAT3","entrezGeneId":"57467"},{"alias":"MSTP002","entrezGeneId":"57467"},{"alias":"OACT3","entrezGeneId":"57467"},{"alias":"EIEE34","entrezGeneId":"57468"},{"alias":"EIG14","entrezGeneId":"57468"},{"alias":"hKCC2","entrezGeneId":"57468"},{"alias":"KCC2","entrezGeneId":"57468"},{"alias":"PNMAL2","entrezGeneId":"57469"},{"alias":"JN","entrezGeneId":"57471"},{"alias":"KIAA1189","entrezGeneId":"57471"},{"alias":"CCR4","entrezGeneId":"57472"},{"alias":"Ccr4a","entrezGeneId":"57472"},{"alias":"GM632","entrezGeneId":"57473"},{"alias":"LINC01059","entrezGeneId":"57476"},{"alias":"SHAP","entrezGeneId":"57477"},{"alias":"shrm4","entrezGeneId":"57477"},{"alias":"KIAA1205","entrezGeneId":"57479"},{"alias":"ARHGEF41","entrezGeneId":"57480"},{"alias":"AGTBP","entrezGeneId":"57486"},{"alias":"EP24.16","entrezGeneId":"57486"},{"alias":"MEP","entrezGeneId":"57486"},{"alias":"MOP","entrezGeneId":"57486"},{"alias":"CHR2SYT","entrezGeneId":"57488"},{"alias":"E-Syt2","entrezGeneId":"57488"},{"alias":"FAM62B","entrezGeneId":"57488"},{"alias":"dJ977L11.1","entrezGeneId":"57489"},{"alias":"AHH","entrezGeneId":"57491"},{"alias":"AHHR","entrezGeneId":"57491"},{"alias":"bHLHe77","entrezGeneId":"57491"},{"alias":"6A3-5","entrezGeneId":"57492"},{"alias":"BAF250B","entrezGeneId":"57492"},{"alias":"BRIGHT","entrezGeneId":"57492"},{"alias":"CSS1","entrezGeneId":"57492"},{"alias":"DAN15","entrezGeneId":"57492"},{"alias":"ELD/OSA1","entrezGeneId":"57492"},{"alias":"MRD12","entrezGeneId":"57492"},{"alias":"OSA2","entrezGeneId":"57492"},{"alias":"P250R","entrezGeneId":"57492"},{"alias":"HEG","entrezGeneId":"57493"},{"alias":"MST112","entrezGeneId":"57493"},{"alias":"MSTP112","entrezGeneId":"57493"},{"alias":"FAM80B","entrezGeneId":"57494"},{"alias":"NAAGS","entrezGeneId":"57494"},{"alias":"NAAGS-I","entrezGeneId":"57494"},{"alias":"KIAA1239","entrezGeneId":"57495"},{"alias":"MRTF-B","entrezGeneId":"57496"},{"alias":"MRTFB","entrezGeneId":"57496"},{"alias":"NPD001","entrezGeneId":"57496"},{"alias":"FIGLER2","entrezGeneId":"57497"},{"alias":"KIAA1246","entrezGeneId":"57497"},{"alias":"SALM1","entrezGeneId":"57497"},{"alias":"ARMS","entrezGeneId":"57498"},{"alias":"SINO","entrezGeneId":"57498"},{"alias":"ASPGX2","entrezGeneId":"57502"},{"alias":"AUTSX2","entrezGeneId":"57502"},{"alias":"HLNX","entrezGeneId":"57502"},{"alias":"HNL4X","entrezGeneId":"57502"},{"alias":"NLGN4","entrezGeneId":"57502"},{"alias":"AARSL","entrezGeneId":"57505"},{"alias":"COXPD8","entrezGeneId":"57505"},{"alias":"LKENP","entrezGeneId":"57505"},{"alias":"MT-ALARS","entrezGeneId":"57505"},{"alias":"MTALARS","entrezGeneId":"57505"},{"alias":"CARDIF","entrezGeneId":"57506"},{"alias":"IPS-1","entrezGeneId":"57506"},{"alias":"IPS1","entrezGeneId":"57506"},{"alias":"VISA","entrezGeneId":"57506"},{"alias":"NY-REN-36","entrezGeneId":"57507"},{"alias":"INT2","entrezGeneId":"57508"},{"alias":"KIAA1287","entrezGeneId":"57508"},{"alias":"ATBP","entrezGeneId":"57509"},{"alias":"ATIP","entrezGeneId":"57509"},{"alias":"ATIP3","entrezGeneId":"57509"},{"alias":"ICIS","entrezGeneId":"57509"},{"alias":"MP44","entrezGeneId":"57509"},{"alias":"MTSG1","entrezGeneId":"57509"},{"alias":"exp5","entrezGeneId":"57510"},{"alias":"CDG2L","entrezGeneId":"57511"},{"alias":"COD2","entrezGeneId":"57511"},{"alias":"SHNS","entrezGeneId":"57511"},{"alias":"ANKS5B","entrezGeneId":"57513"},{"alias":"AOS1","entrezGeneId":"57514"},{"alias":"CDGAP","entrezGeneId":"57514"},{"alias":"TDE1L","entrezGeneId":"57515"},{"alias":"TDE2","entrezGeneId":"57515"},{"alias":"TMS-2","entrezGeneId":"57515"},{"alias":"TMS2","entrezGeneId":"57515"},{"alias":"KIF16A","entrezGeneId":"57519"},{"alias":"NDHSAL","entrezGeneId":"57520"},{"alias":"NEDL2","entrezGeneId":"57520"},{"alias":"KOG1","entrezGeneId":"57521"},{"alias":"Mip1","entrezGeneId":"57521"},{"alias":"ARHGAP13","entrezGeneId":"57522"},{"alias":"NMTC2","entrezGeneId":"57522"},{"alias":"CGIN1","entrezGeneId":"57523"},{"alias":"KIAA1305","entrezGeneId":"57523"},{"alias":"ANKS5A","entrezGeneId":"57524"},{"alias":"EFMR","entrezGeneId":"57526"},{"alias":"EIEE9","entrezGeneId":"57526"},{"alias":"MAR9","entrezGeneId":"57529"},{"alias":"MART9","entrezGeneId":"57529"},{"alias":"RGAG1","entrezGeneId":"57529"},{"alias":"SIRH10","entrezGeneId":"57529"},{"alias":"SPPRS","entrezGeneId":"57531"},{"alias":"182-FIP","entrezGeneId":"57532"},{"alias":"82-FIP","entrezGeneId":"57532"},{"alias":"FIP-82","entrezGeneId":"57532"},{"alias":"PIG1","entrezGeneId":"57532"},{"alias":"DIP-1","entrezGeneId":"57534"},{"alias":"DIP1","entrezGeneId":"57534"},{"alias":"LVNC7","entrezGeneId":"57534"},{"alias":"MIB","entrezGeneId":"57534"},{"alias":"ZZANK2","entrezGeneId":"57534"},{"alias":"ZZZ6","entrezGeneId":"57534"},{"alias":"EIG121","entrezGeneId":"57535"},{"alias":"MAK","entrezGeneId":"57538"},{"alias":"MIDORI","entrezGeneId":"57538"},{"alias":"CED2","entrezGeneId":"57539"},{"alias":"IFT121","entrezGeneId":"57539"},{"alias":"IFTA1","entrezGeneId":"57539"},{"alias":"SRTD7","entrezGeneId":"57539"},{"alias":"PTCHD2","entrezGeneId":"57540"},{"alias":"P51","entrezGeneId":"57541"},{"alias":"P71","entrezGeneId":"57541"},{"alias":"ZER6","entrezGeneId":"57541"},{"alias":"Ctb9","entrezGeneId":"57542"},{"alias":"KLHDC5","entrezGeneId":"57542"},{"alias":"ERp90","entrezGeneId":"57544"},{"alias":"KIAA1344","entrezGeneId":"57544"},{"alias":"JBTS9","entrezGeneId":"57545"},{"alias":"MKS6","entrezGeneId":"57545"},{"alias":"PDPC 2","entrezGeneId":"57546"},{"alias":"PPM2B","entrezGeneId":"57546"},{"alias":"PPM2C2","entrezGeneId":"57546"},{"alias":"FP18798","entrezGeneId":"57549"},{"alias":"IGSF9A","entrezGeneId":"57549"},{"alias":"Nrt1","entrezGeneId":"57549"},{"alias":"hKFC-B","entrezGeneId":"57551"},{"alias":"hTAOK1","entrezGeneId":"57551"},{"alias":"KFC-B","entrezGeneId":"57551"},{"alias":"MAP3K16","entrezGeneId":"57551"},{"alias":"MARKK","entrezGeneId":"57551"},{"alias":"PSK-2","entrezGeneId":"57551"},{"alias":"PSK2","entrezGeneId":"57551"},{"alias":"TAO1","entrezGeneId":"57551"},{"alias":"AADACL1","entrezGeneId":"57552"},{"alias":"NCEH","entrezGeneId":"57552"},{"alias":"MICAL-3","entrezGeneId":"57553"},{"alias":"DENSIN","entrezGeneId":"57554"},{"alias":"HT018","entrezGeneId":"57556"},{"alias":"SEMA","entrezGeneId":"57556"},{"alias":"SEMA6A1","entrezGeneId":"57556"},{"alias":"SEMAQ","entrezGeneId":"57556"},{"alias":"VIA","entrezGeneId":"57556"},{"alias":"ALMalpha","entrezGeneId":"57559"},{"alias":"AMSH-FP","entrezGeneId":"57559"},{"alias":"AMSH-LP","entrezGeneId":"57559"},{"alias":"bA399O19.2","entrezGeneId":"57559"},{"alias":"ATD2","entrezGeneId":"57560"},{"alias":"SRTD2","entrezGeneId":"57560"},{"alias":"WDR56","entrezGeneId":"57560"},{"alias":"TLIMP","entrezGeneId":"57561"},{"alias":"KIAA1377","entrezGeneId":"57562"},{"alias":"ZFP319","entrezGeneId":"57567"},{"alias":"SPAL2","entrezGeneId":"57568"},{"alias":"RARHOGAP","entrezGeneId":"57569"},{"alias":"COXPD26","entrezGeneId":"57570"},{"alias":"KIAA1393","entrezGeneId":"57570"},{"alias":"TRM5","entrezGeneId":"57570"},{"alias":"ATPGD1","entrezGeneId":"57571"},{"alias":"AOS2","entrezGeneId":"57572"},{"alias":"ZIR1","entrezGeneId":"57572"},{"alias":"ERP1","entrezGeneId":"57573"},{"alias":"Z1971","entrezGeneId":"57573"},{"alias":"MARCH-IV","entrezGeneId":"57574"},{"alias":"RNF174","entrezGeneId":"57574"},{"alias":"OL-PCDH","entrezGeneId":"57575"},{"alias":"PCDH19","entrezGeneId":"57575"},{"alias":"KIF17B","entrezGeneId":"57576"},{"alias":"KIF3X","entrezGeneId":"57576"},{"alias":"KLP-2","entrezGeneId":"57576"},{"alias":"OSM-3","entrezGeneId":"57576"},{"alias":"KIAA1407","entrezGeneId":"57577"},{"alias":"KIAA1409","entrezGeneId":"57578"},{"alias":"KIAA1411","entrezGeneId":"57579"},{"alias":"P-REX1","entrezGeneId":"57580"},{"alias":"bA100C15.2","entrezGeneId":"57582"},{"alias":"EIEE14","entrezGeneId":"57582"},{"alias":"ENFL5","entrezGeneId":"57582"},{"alias":"KCa4.1","entrezGeneId":"57582"},{"alias":"SLACK","entrezGeneId":"57582"},{"alias":"Slo2.2","entrezGeneId":"57582"},{"alias":"GPR178","entrezGeneId":"57583"},{"alias":"KIAA1423","entrezGeneId":"57583"},{"alias":"ARHGAP10","entrezGeneId":"57584"},{"alias":"CRAMP1L","entrezGeneId":"57585"},{"alias":"HN1L","entrezGeneId":"57585"},{"alias":"TCE4","entrezGeneId":"57585"},{"alias":"hmw","entrezGeneId":"57587"},{"alias":"KIAA1430","entrezGeneId":"57587"},{"alias":"bA207C16.1","entrezGeneId":"57589"},{"alias":"CIP150","entrezGeneId":"57589"},{"alias":"KIAA1432","entrezGeneId":"57589"},{"alias":"FENS-1","entrezGeneId":"57590"},{"alias":"WDF1","entrezGeneId":"57590"},{"alias":"ZFYVE17","entrezGeneId":"57590"},{"alias":"BSAC","entrezGeneId":"57591"},{"alias":"MAL","entrezGeneId":"57591"},{"alias":"MKL","entrezGeneId":"57591"},{"alias":"MRTF-A","entrezGeneId":"57591"},{"alias":"PDB6","entrezGeneId":"57592"},{"alias":"COE4","entrezGeneId":"57593"},{"alias":"O/E-4","entrezGeneId":"57593"},{"alias":"KIAA1443","entrezGeneId":"57594"},{"alias":"LNX5","entrezGeneId":"57595"},{"alias":"LU1","entrezGeneId":"57595"},{"alias":"PDZK4","entrezGeneId":"57595"},{"alias":"PDZRN4L","entrezGeneId":"57595"},{"alias":"BAHD2","entrezGeneId":"57597"},{"alias":"P80","entrezGeneId":"57599"},{"alias":"SPG60","entrezGeneId":"57599"},{"alias":"UAF1","entrezGeneId":"57599"},{"alias":"FNIPL","entrezGeneId":"57600"},{"alias":"MAPO1","entrezGeneId":"57600"},{"alias":"DUB1","entrezGeneId":"57602"},{"alias":"C8orf79","entrezGeneId":"57604"},{"alias":"hTRM9L","entrezGeneId":"57604"},{"alias":"KIAA1456","entrezGeneId":"57604"},{"alias":"TRM9L","entrezGeneId":"57604"},{"alias":"NIR-3","entrezGeneId":"57605"},{"alias":"NIR3","entrezGeneId":"57605"},{"alias":"RDGB2","entrezGeneId":"57605"},{"alias":"RDGBA2","entrezGeneId":"57605"},{"alias":"KIAA1458","entrezGeneId":"57606"},{"alias":"KIAA1462","entrezGeneId":"57608"},{"alias":"LINX","entrezGeneId":"57611"},{"alias":"KIAA1467","entrezGeneId":"57613"},{"alias":"HsT3308","entrezGeneId":"57614"},{"alias":"HsT885","entrezGeneId":"57614"},{"alias":"RELCH","entrezGeneId":"57614"},{"alias":"ZNF115","entrezGeneId":"57615"},{"alias":"TSH3","entrezGeneId":"57616"},{"alias":"ZNF537","entrezGeneId":"57616"},{"alias":"PEP3","entrezGeneId":"57617"},{"alias":"APXL3","entrezGeneId":"57619"},{"alias":"MSTP013","entrezGeneId":"57619"},{"alias":"SHRM","entrezGeneId":"57619"},{"alias":"ShrmL","entrezGeneId":"57619"},{"alias":"ZNF437","entrezGeneId":"57621"},{"alias":"SALM2","entrezGeneId":"57622"},{"alias":"AITD3","entrezGeneId":"57623"},{"alias":"ZFAT1","entrezGeneId":"57623"},{"alias":"ZNF406","entrezGeneId":"57623"},{"alias":"KIAA1486","entrezGeneId":"57624"},{"alias":"MRP2","entrezGeneId":"57626"},{"alias":"DPL2","entrezGeneId":"57628"},{"alias":"DPPY","entrezGeneId":"57628"},{"alias":"DPRP-3","entrezGeneId":"57628"},{"alias":"DPRP3","entrezGeneId":"57628"},{"alias":"POSH","entrezGeneId":"57630"},{"alias":"RNF142","entrezGeneId":"57630"},{"alias":"SH3MD2","entrezGeneId":"57630"},{"alias":"dA204F4.4","entrezGeneId":"57631"},{"alias":"FIGLER3","entrezGeneId":"57633"},{"alias":"NLRR-1","entrezGeneId":"57633"},{"alias":"CAGH32","entrezGeneId":"57634"},{"alias":"P400","entrezGeneId":"57634"},{"alias":"TNRC12","entrezGeneId":"57634"},{"alias":"bA261N11.4","entrezGeneId":"57642"},{"alias":"MHC14","entrezGeneId":"57644"},{"alias":"MYH14","entrezGeneId":"57644"},{"alias":"BASS2","entrezGeneId":"57645"},{"alias":"KRBOX2","entrezGeneId":"57645"},{"alias":"LST003","entrezGeneId":"57645"},{"alias":"DDX37","entrezGeneId":"57647"},{"alias":"Dhr1","entrezGeneId":"57647"},{"alias":"PF1","entrezGeneId":"57649"},{"alias":"KIAA1524","entrezGeneId":"57650"},{"alias":"p90","entrezGeneId":"57650"},{"alias":"LOC100499484-C9ORF174","entrezGeneId":"57653"},{"alias":"KIAA1530","entrezGeneId":"57654"},{"alias":"UVSS3","entrezGeneId":"57654"},{"alias":"KIAA1533","entrezGeneId":"57655"},{"alias":"calphoglin","entrezGeneId":"57658"},{"alias":"Cocoa","entrezGeneId":"57658"},{"alias":"PP13275","entrezGeneId":"57658"},{"alias":"KAISO-L1","entrezGeneId":"57659"},{"alias":"ZNF903","entrezGeneId":"57659"},{"alias":"PPP1R125","entrezGeneId":"57661"},{"alias":"RNF221","entrezGeneId":"57661"},{"alias":"KIAA1543","entrezGeneId":"57662"},{"alias":"NEZHA","entrezGeneId":"57662"},{"alias":"PPP1R80","entrezGeneId":"57662"},{"alias":"HOM-TES-84/86","entrezGeneId":"57663"},{"alias":"PEPP1","entrezGeneId":"57664"},{"alias":"PAN2","entrezGeneId":"57665"},{"alias":"SDR7C4","entrezGeneId":"57665"},{"alias":"BE37","entrezGeneId":"57669"},{"alias":"YMO1","entrezGeneId":"57669"},{"alias":"YRT","entrezGeneId":"57669"},{"alias":"KIAA1553","entrezGeneId":"57673"},{"alias":"ALO17","entrezGeneId":"57674"},{"alias":"C17orf27","entrezGeneId":"57674"},{"alias":"KIAA1618","entrezGeneId":"57674"},{"alias":"MYMY2","entrezGeneId":"57674"},{"alias":"MYSTR","entrezGeneId":"57674"},{"alias":"NET57","entrezGeneId":"57674"},{"alias":"ZNF531","entrezGeneId":"57677"},{"alias":"GPAT","entrezGeneId":"57678"},{"alias":"GPAT1","entrezGeneId":"57678"},{"alias":"ALS2CR6","entrezGeneId":"57679"},{"alias":"ALSJ","entrezGeneId":"57679"},{"alias":"IAHSP","entrezGeneId":"57679"},{"alias":"PLSJ","entrezGeneId":"57679"},{"alias":"AUTS18","entrezGeneId":"57680"},{"alias":"HELSNF1","entrezGeneId":"57680"},{"alias":"Slx9","entrezGeneId":"57683"},{"alias":"bioref","entrezGeneId":"57684"},{"alias":"ZNF481","entrezGeneId":"57684"},{"alias":"AFND","entrezGeneId":"57688"},{"alias":"NEDMAGA","entrezGeneId":"57688"},{"alias":"NGL-1","entrezGeneId":"57689"},{"alias":"NGL1","entrezGeneId":"57689"},{"alias":"DAMAGE","entrezGeneId":"57692"},{"alias":"HCA1","entrezGeneId":"57692"},{"alias":"FAAP250","entrezGeneId":"57697"},{"alias":"KIAA1596","entrezGeneId":"57697"},{"alias":"KIAA1598","entrezGeneId":"57698"},{"alias":"shootin-1","entrezGeneId":"57698"},{"alias":"COPN5","entrezGeneId":"57699"},{"alias":"CPN5","entrezGeneId":"57699"},{"alias":"bA106M7.3","entrezGeneId":"57700"},{"alias":"KIAA1600","entrezGeneId":"57700"},{"alias":"Cep169","entrezGeneId":"57701"},{"alias":"FP1193","entrezGeneId":"57701"},{"alias":"KIAA1602","entrezGeneId":"57701"},{"alias":"EIF4GL","entrezGeneId":"57703"},{"alias":"fSAPb","entrezGeneId":"57703"},{"alias":"NCM","entrezGeneId":"57703"},{"alias":"AD035","entrezGeneId":"57704"},{"alias":"NLGase","entrezGeneId":"57704"},{"alias":"SPG46","entrezGeneId":"57704"},{"alias":"C10orf64","entrezGeneId":"57705"},{"alias":"FAM31A","entrezGeneId":"57706"},{"alias":"KIAA1608","entrezGeneId":"57706"},{"alias":"KIAA1609","entrezGeneId":"57707"},{"alias":"ER1","entrezGeneId":"57708"},{"alias":"MI-ER1","entrezGeneId":"57708"},{"alias":"PPP1R142","entrezGeneId":"57709"},{"alias":"CMT4F","entrezGeneId":"57716"},{"alias":"ME1","entrezGeneId":"57717"},{"alias":"PCDH-BETA16","entrezGeneId":"57717"},{"alias":"PCDH3X","entrezGeneId":"57717"},{"alias":"PCDHB8a","entrezGeneId":"57717"},{"alias":"CFAP14","entrezGeneId":"57718"},{"alias":"KIAA1622","entrezGeneId":"57718"},{"alias":"PP4R4","entrezGeneId":"57718"},{"alias":"KIAA1623","entrezGeneId":"57719"},{"alias":"TMEM16H","entrezGeneId":"57719"},{"alias":"bA138E2.2","entrezGeneId":"57720"},{"alias":"GCDRP","entrezGeneId":"57720"},{"alias":"LUSTR1","entrezGeneId":"57720"},{"alias":"hMETTL14","entrezGeneId":"57721"},{"alias":"DDM36","entrezGeneId":"57722"},{"alias":"NOPE","entrezGeneId":"57722"},{"alias":"HEEW1","entrezGeneId":"57724"},{"alias":"KIAA1632","entrezGeneId":"57724"},{"alias":"VICIS","entrezGeneId":"57724"},{"alias":"bA465L10.6","entrezGeneId":"57727"},{"alias":"CIA","entrezGeneId":"57727"},{"alias":"ATD5","entrezGeneId":"57728"},{"alias":"CED4","entrezGeneId":"57728"},{"alias":"DYF-2","entrezGeneId":"57728"},{"alias":"IFT144","entrezGeneId":"57728"},{"alias":"NPHP13","entrezGeneId":"57728"},{"alias":"ORF26","entrezGeneId":"57728"},{"alias":"Oseg6","entrezGeneId":"57728"},{"alias":"PWDMP","entrezGeneId":"57728"},{"alias":"SRTD5","entrezGeneId":"57728"},{"alias":"KIAA1641","entrezGeneId":"57730"},{"alias":"CMND","entrezGeneId":"57731"},{"alias":"QV","entrezGeneId":"57731"},{"alias":"SPNB4","entrezGeneId":"57731"},{"alias":"SPTBN3","entrezGeneId":"57731"},{"alias":"LST2","entrezGeneId":"57732"},{"alias":"LYST2","entrezGeneId":"57732"},{"alias":"CBG","entrezGeneId":"57733"},{"alias":"CBGL1","entrezGeneId":"57733"},{"alias":"GLUC","entrezGeneId":"57733"},{"alias":"KLRP","entrezGeneId":"57733"},{"alias":"CEGB1","entrezGeneId":"57758"},{"alias":"CEGF1","entrezGeneId":"57758"},{"alias":"CEGP1","entrezGeneId":"57758"},{"alias":"SPG","entrezGeneId":"57760"},{"alias":"C20orf97","entrezGeneId":"57761"},{"alias":"NIPK","entrezGeneId":"57761"},{"alias":"SINK","entrezGeneId":"57761"},{"alias":"SKIP3","entrezGeneId":"57761"},{"alias":"TRB3","entrezGeneId":"57761"},{"alias":"ANKRA","entrezGeneId":"57763"},{"alias":"ZNF769","entrezGeneId":"57786"},{"alias":"MARK4L","entrezGeneId":"57787"},{"alias":"MARK4S","entrezGeneId":"57787"},{"alias":"MARKL1","entrezGeneId":"57787"},{"alias":"MARKL1L","entrezGeneId":"57787"},{"alias":"PAR-1D","entrezGeneId":"57787"},{"alias":"MTBS","entrezGeneId":"57789"},{"alias":"F23858","entrezGeneId":"57794"},{"alias":"RBP","entrezGeneId":"57794"},{"alias":"SF4","entrezGeneId":"57794"},{"alias":"DBCCR1L2","entrezGeneId":"57795"},{"alias":"FAM5B","entrezGeneId":"57795"},{"alias":"CMD2B","entrezGeneId":"57798"},{"alias":"ODAG","entrezGeneId":"57798"},{"alias":"RG083M05.2","entrezGeneId":"57798"},{"alias":"RARL","entrezGeneId":"57799"},{"alias":"RASL8C","entrezGeneId":"57799"},{"alias":"bHLHb42","entrezGeneId":"57801"},{"alias":"p12","entrezGeneId":"57804"},{"alias":"POLDS","entrezGeneId":"57804"},{"alias":"DBC-1","entrezGeneId":"57805"},{"alias":"DBC1","entrezGeneId":"57805"},{"alias":"KIAA1967","entrezGeneId":"57805"},{"alias":"NET35","entrezGeneId":"57805"},{"alias":"p30 DBC","entrezGeneId":"57805"},{"alias":"p30DBC","entrezGeneId":"57805"},{"alias":"HEPC","entrezGeneId":"57817"},{"alias":"HFE2B","entrezGeneId":"57817"},{"alias":"LEAP1","entrezGeneId":"57817"},{"alias":"PLTR","entrezGeneId":"57817"},{"alias":"IGRP","entrezGeneId":"57818"},{"alias":"C6orf28","entrezGeneId":"57819"},{"alias":"G7B","entrezGeneId":"57819"},{"alias":"snRNP","entrezGeneId":"57819"},{"alias":"YBL026W","entrezGeneId":"57819"},{"alias":"C14orf18","entrezGeneId":"57820"},{"alias":"HEI10","entrezGeneId":"57820"},{"alias":"C1orf114","entrezGeneId":"57821"},{"alias":"SOM","entrezGeneId":"57822"},{"alias":"TFCP2L4","entrezGeneId":"57822"},{"alias":"VWS2","entrezGeneId":"57822"},{"alias":"19A","entrezGeneId":"57823"},{"alias":"CD319","entrezGeneId":"57823"},{"alias":"CRACC","entrezGeneId":"57823"},{"alias":"CS1","entrezGeneId":"57823"},{"alias":"HB-1","entrezGeneId":"57824"},{"alias":"HB-1Y","entrezGeneId":"57824"},{"alias":"HLA-HB1","entrezGeneId":"57824"},{"alias":"D6S53E","entrezGeneId":"57827"},{"alias":"G4","entrezGeneId":"57827"},{"alias":"NG34","entrezGeneId":"57827"},{"alias":"C19orf15","entrezGeneId":"57828"},{"alias":"ZBP","entrezGeneId":"57829"},{"alias":"Zp-4","entrezGeneId":"57829"},{"alias":"ZP1","entrezGeneId":"57829"},{"alias":"ZPB","entrezGeneId":"57829"},{"alias":"KRTAP5-2","entrezGeneId":"57830"},{"alias":"KRTAP5.8","entrezGeneId":"57830"},{"alias":"UHSKerB","entrezGeneId":"57830"},{"alias":"CYPIVF11","entrezGeneId":"57834"},{"alias":"NBC4","entrezGeneId":"57835"},{"alias":"NBCe2","entrezGeneId":"57835"},{"alias":"APA-1","entrezGeneId":"57862"},{"alias":"APA1","entrezGeneId":"57862"},{"alias":"BIgR","entrezGeneId":"57863"},{"alias":"IGSF4B","entrezGeneId":"57863"},{"alias":"Necl-1","entrezGeneId":"57863"},{"alias":"NECL1","entrezGeneId":"57863"},{"alias":"synCAM3","entrezGeneId":"57863"},{"alias":"TSLL1","entrezGeneId":"57863"},{"alias":"Ly110","entrezGeneId":"57864"},{"alias":"TSCOT","entrezGeneId":"57864"},{"alias":"MUC3","entrezGeneId":"57876"},{"alias":"MUC3A","entrezGeneId":"57876"},{"alias":"brPTB","entrezGeneId":"58155"},{"alias":"nPTB","entrezGeneId":"58155"},{"alias":"PTBLP","entrezGeneId":"58155"},{"alias":"ATH-3","entrezGeneId":"58158"},{"alias":"ATH3","entrezGeneId":"58158"},{"alias":"Atoh3","entrezGeneId":"58158"},{"alias":"bHLHa4","entrezGeneId":"58158"},{"alias":"MATH-3","entrezGeneId":"58158"},{"alias":"MATH3","entrezGeneId":"58158"},{"alias":"NF-E4","entrezGeneId":"58160"},{"alias":"K7","entrezGeneId":"58163"},{"alias":"RBPSUHP4","entrezGeneId":"58163"},{"alias":"K2","entrezGeneId":"58164"},{"alias":"RBPSUHP3","entrezGeneId":"58164"},{"alias":"PS20","entrezGeneId":"58189"},{"alias":"NIF3","entrezGeneId":"58190"},{"alias":"NLI-IF","entrezGeneId":"58190"},{"alias":"NLIIF","entrezGeneId":"58190"},{"alias":"SCP1","entrezGeneId":"58190"},{"alias":"CXCLG16","entrezGeneId":"58191"},{"alias":"SR-PSOX","entrezGeneId":"58191"},{"alias":"SRPSOX","entrezGeneId":"58191"},{"alias":"CGI-44","entrezGeneId":"58472"},{"alias":"PRO1975","entrezGeneId":"58472"},{"alias":"SQR","entrezGeneId":"58472"},{"alias":"SQRDL","entrezGeneId":"58472"},{"alias":"KPL1","entrezGeneId":"58473"},{"alias":"PHR1","entrezGeneId":"58473"},{"alias":"PHRET1","entrezGeneId":"58473"},{"alias":"4SPAN2","entrezGeneId":"58475"},{"alias":"CD20L4","entrezGeneId":"58475"},{"alias":"CFFM4","entrezGeneId":"58475"},{"alias":"MS4A8","entrezGeneId":"58475"},{"alias":"C20orf110","entrezGeneId":"58476"},{"alias":"dJ1181N3.1","entrezGeneId":"58476"},{"alias":"DOR","entrezGeneId":"58476"},{"alias":"PIG-U","entrezGeneId":"58476"},{"alias":"PIGU","entrezGeneId":"58476"},{"alias":"PINH","entrezGeneId":"58476"},{"alias":"APMCF1","entrezGeneId":"58477"},{"alias":"E1","entrezGeneId":"58478"},{"alias":"MASA","entrezGeneId":"58478"},{"alias":"MST145","entrezGeneId":"58478"},{"alias":"mtnC","entrezGeneId":"58478"},{"alias":"ARHU","entrezGeneId":"58480"},{"alias":"CDC42L1","entrezGeneId":"58480"},{"alias":"G28K","entrezGeneId":"58480"},{"alias":"hG28K","entrezGeneId":"58480"},{"alias":"WRCH1","entrezGeneId":"58480"},{"alias":"C9orf27","entrezGeneId":"58483"},{"alias":"EST-YD1","entrezGeneId":"58483"},{"alias":"AIFEC","entrezGeneId":"58484"},{"alias":"CARD12","entrezGeneId":"58484"},{"alias":"CLAN","entrezGeneId":"58484"},{"alias":"CLAN1","entrezGeneId":"58484"},{"alias":"CLANA","entrezGeneId":"58484"},{"alias":"CLANB","entrezGeneId":"58484"},{"alias":"CLANC","entrezGeneId":"58484"},{"alias":"CLAND","entrezGeneId":"58484"},{"alias":"CLR2.1","entrezGeneId":"58484"},{"alias":"FCAS4","entrezGeneId":"58484"},{"alias":"IPAF","entrezGeneId":"58484"},{"alias":"BET5","entrezGeneId":"58485"},{"alias":"MUM2","entrezGeneId":"58485"},{"alias":"Buster1","entrezGeneId":"58486"},{"alias":"SMILE","entrezGeneId":"58487"},{"alias":"ZF","entrezGeneId":"58487"},{"alias":"PC-TP","entrezGeneId":"58488"},{"alias":"STARD2","entrezGeneId":"58488"},{"alias":"FAM108C1","entrezGeneId":"58489"},{"alias":"C20orf77","entrezGeneId":"58490"},{"alias":"CREPT","entrezGeneId":"58490"},{"alias":"dJ1057B20.2","entrezGeneId":"58490"},{"alias":"K-H","entrezGeneId":"58490"},{"alias":"Kub5-Hera","entrezGeneId":"58490"},{"alias":"NET60","entrezGeneId":"58490"},{"alias":"EZFIT","entrezGeneId":"58491"},{"alias":"pT1","entrezGeneId":"58492"},{"alias":"C9orf80","entrezGeneId":"58493"},{"alias":"HSPC043","entrezGeneId":"58493"},{"alias":"hSSBIP1","entrezGeneId":"58493"},{"alias":"MISE","entrezGeneId":"58493"},{"alias":"SOSSC","entrezGeneId":"58493"},{"alias":"SSBIP1","entrezGeneId":"58493"},{"alias":"C21orf43","entrezGeneId":"58494"},{"alias":"CD322","entrezGeneId":"58494"},{"alias":"JAM-B","entrezGeneId":"58494"},{"alias":"JAMB","entrezGeneId":"58494"},{"alias":"PRO245","entrezGeneId":"58494"},{"alias":"VE-JAM","entrezGeneId":"58494"},{"alias":"VEJAM","entrezGeneId":"58494"},{"alias":"CHED","entrezGeneId":"58495"},{"alias":"CHED1","entrezGeneId":"58495"},{"alias":"CHED2","entrezGeneId":"58495"},{"alias":"EUROIMAGE566589","entrezGeneId":"58495"},{"alias":"PPCD1","entrezGeneId":"58495"},{"alias":"ZNF339","entrezGeneId":"58495"},{"alias":"C6orf19","entrezGeneId":"58496"},{"alias":"G5b","entrezGeneId":"58496"},{"alias":"DRES-17","entrezGeneId":"58497"},{"alias":"DRES17","entrezGeneId":"58497"},{"alias":"H-PRUNE","entrezGeneId":"58497"},{"alias":"HTCD37","entrezGeneId":"58497"},{"alias":"NMIHBA","entrezGeneId":"58497"},{"alias":"PRUNE","entrezGeneId":"58497"},{"alias":"MYL2A","entrezGeneId":"58498"},{"alias":"MYLC2A","entrezGeneId":"58498"},{"alias":"Zfp462","entrezGeneId":"58499"},{"alias":"ZFP647","entrezGeneId":"58500"},{"alias":"ZNF647","entrezGeneId":"58500"},{"alias":"BPLP","entrezGeneId":"58503"},{"alias":"opiorphin","entrezGeneId":"58503"},{"alias":"PRL1","entrezGeneId":"58503"},{"alias":"PROL1","entrezGeneId":"58503"},{"alias":"RhoGAP2","entrezGeneId":"58504"},{"alias":"RhoGap22","entrezGeneId":"58504"},{"alias":"DC2","entrezGeneId":"58505"},{"alias":"SRA1","entrezGeneId":"58506"},{"alias":"HALR","entrezGeneId":"58508"},{"alias":"KLEFS2","entrezGeneId":"58508"},{"alias":"MLL3","entrezGeneId":"58508"},{"alias":"C19orf29","entrezGeneId":"58509"},{"alias":"fSAPc","entrezGeneId":"58509"},{"alias":"NY-REN-24","entrezGeneId":"58509"},{"alias":"HSPOX1","entrezGeneId":"58510"},{"alias":"HYPDH","entrezGeneId":"58510"},{"alias":"DLAD","entrezGeneId":"58511"},{"alias":"DAP3","entrezGeneId":"58512"},{"alias":"SAPAP3","entrezGeneId":"58512"},{"alias":"EPS15R","entrezGeneId":"58513"},{"alias":"HSPC030","entrezGeneId":"58515"},{"alias":"HSPC297","entrezGeneId":"58515"},{"alias":"SELK","entrezGeneId":"58515"},{"alias":"C12orf14","entrezGeneId":"58516"},{"alias":"FAM60A","entrezGeneId":"58516"},{"alias":"L4","entrezGeneId":"58516"},{"alias":"TERA","entrezGeneId":"58516"},{"alias":"fSAP94","entrezGeneId":"58517"},{"alias":"NET52","entrezGeneId":"58517"},{"alias":"RED120","entrezGeneId":"58517"},{"alias":"RNPC7","entrezGeneId":"58517"},{"alias":"S164","entrezGeneId":"58517"},{"alias":"Snu71","entrezGeneId":"58517"},{"alias":"DMRTA3","entrezGeneId":"58524"},{"alias":"ZNF803","entrezGeneId":"58525"},{"alias":"G12-like","entrezGeneId":"58526"},{"alias":"MIG12","entrezGeneId":"58526"},{"alias":"S14R","entrezGeneId":"58526"},{"alias":"STRAIT11499","entrezGeneId":"58526"},{"alias":"THRSPL","entrezGeneId":"58526"},{"alias":"C6orf115","entrezGeneId":"58527"},{"alias":"Costars","entrezGeneId":"58527"},{"alias":"HSPC280","entrezGeneId":"58527"},{"alias":"PRO2013","entrezGeneId":"58527"},{"alias":"bA11D8.2.1","entrezGeneId":"58528"},{"alias":"RAGD","entrezGeneId":"58528"},{"alias":"CS-2","entrezGeneId":"58529"},{"alias":"FATZ","entrezGeneId":"58529"},{"alias":"MYOZ","entrezGeneId":"58529"},{"alias":"C6orf23","entrezGeneId":"58530"},{"alias":"G6D","entrezGeneId":"58530"},{"alias":"LY6-D","entrezGeneId":"58530"},{"alias":"MEGT1","entrezGeneId":"58530"},{"alias":"NG25","entrezGeneId":"58530"},{"alias":"MSTP010","entrezGeneId":"58533"},{"alias":"TFAF2","entrezGeneId":"58533"},{"alias":"ALS2CR5","entrezGeneId":"58538"},{"alias":"DLG6","entrezGeneId":"58538"},{"alias":"CRF2-9","entrezGeneId":"58985"},{"alias":"IL22R","entrezGeneId":"58985"},{"alias":"IL22R1","entrezGeneId":"58985"},{"alias":"GPI-PLA2","entrezGeneId":"58986"},{"alias":"M83","entrezGeneId":"58986"},{"alias":"PGAP6","entrezGeneId":"58986"},{"alias":"TMEM6","entrezGeneId":"58986"},{"alias":"TMEM8","entrezGeneId":"58986"},{"alias":"CVID11","entrezGeneId":"59067"},{"alias":"IL-21","entrezGeneId":"59067"},{"alias":"Za11","entrezGeneId":"59067"},{"alias":"ICEBERG","entrezGeneId":"59082"},{"alias":"pseudo-ICE","entrezGeneId":"59082"},{"alias":"UNQ5804","entrezGeneId":"59082"},{"alias":"NPP-5","entrezGeneId":"59084"},{"alias":"NPP5","entrezGeneId":"59084"},{"alias":"KBP-1","entrezGeneId":"59269"},{"alias":"KBP1","entrezGeneId":"59269"},{"alias":"KRC","entrezGeneId":"59269"},{"alias":"Schnurri-3","entrezGeneId":"59269"},{"alias":"SHN3","entrezGeneId":"59269"},{"alias":"ZAS3","entrezGeneId":"59269"},{"alias":"ZNF40C","entrezGeneId":"59269"},{"alias":"B18","entrezGeneId":"59271"},{"alias":"B19","entrezGeneId":"59271"},{"alias":"C21orf63","entrezGeneId":"59271"},{"alias":"C21orf64","entrezGeneId":"59271"},{"alias":"FAM176C","entrezGeneId":"59271"},{"alias":"PRED34","entrezGeneId":"59271"},{"alias":"SUE21","entrezGeneId":"59271"},{"alias":"ACEH","entrezGeneId":"59272"},{"alias":"MESDC1","entrezGeneId":"59274"},{"alias":"PRO3091","entrezGeneId":"59277"},{"alias":"HUB1","entrezGeneId":"59286"},{"alias":"IL-1R8","entrezGeneId":"59307"},{"alias":"TIR8","entrezGeneId":"59307"},{"alias":"AORF","entrezGeneId":"59331"},{"alias":"HMSNR","entrezGeneId":"59333"},{"alias":"HSAN8","entrezGeneId":"59335"},{"alias":"PFM9","entrezGeneId":"59335"},{"alias":"MU-MB-20.220","entrezGeneId":"59336"},{"alias":"PFM10","entrezGeneId":"59336"},{"alias":"TAPP1","entrezGeneId":"59338"},{"alias":"TAPP2","entrezGeneId":"59339"},{"alias":"AXOR35","entrezGeneId":"59340"},{"alias":"BG26","entrezGeneId":"59340"},{"alias":"GPCR105","entrezGeneId":"59340"},{"alias":"GPRv53","entrezGeneId":"59340"},{"alias":"H4","entrezGeneId":"59340"},{"alias":"H4R","entrezGeneId":"59340"},{"alias":"HH4R","entrezGeneId":"59340"},{"alias":"BCYM3","entrezGeneId":"59341"},{"alias":"CMT2C","entrezGeneId":"59341"},{"alias":"HMSN2C","entrezGeneId":"59341"},{"alias":"OTRPC4","entrezGeneId":"59341"},{"alias":"SMAL","entrezGeneId":"59341"},{"alias":"SPSMA","entrezGeneId":"59341"},{"alias":"SSQTL1","entrezGeneId":"59341"},{"alias":"TRP12","entrezGeneId":"59341"},{"alias":"VRL2","entrezGeneId":"59341"},{"alias":"VROAC","entrezGeneId":"59341"},{"alias":"HSCP1","entrezGeneId":"59342"},{"alias":"RISC","entrezGeneId":"59342"},{"alias":"AXAM2","entrezGeneId":"59343"},{"alias":"SMT3IP2","entrezGeneId":"59343"},{"alias":"ARCI3","entrezGeneId":"59344"},{"alias":"E-LOX","entrezGeneId":"59344"},{"alias":"eLOX-3","entrezGeneId":"59344"},{"alias":"eLOX3","entrezGeneId":"59344"},{"alias":"CMTD1F","entrezGeneId":"59345"},{"alias":"FKSG2","entrezGeneId":"59347"},{"alias":"ZBRK1","entrezGeneId":"59348"},{"alias":"ZFQR","entrezGeneId":"59348"},{"alias":"C3IP1","entrezGeneId":"59349"},{"alias":"DKIR","entrezGeneId":"59349"},{"alias":"LGR7","entrezGeneId":"59350"},{"alias":"RXFPR1","entrezGeneId":"59350"},{"alias":"dJ171N11.2","entrezGeneId":"59351"},{"alias":"UC28","entrezGeneId":"59351"},{"alias":"UROC28","entrezGeneId":"59351"},{"alias":"GPCR","entrezGeneId":"59352"},{"alias":"VTS20631","entrezGeneId":"59352"},{"alias":"TMEM35","entrezGeneId":"59353"},{"alias":"AFAP","entrezGeneId":"60312"},{"alias":"AFAP-110","entrezGeneId":"60312"},{"alias":"AFAP110","entrezGeneId":"60312"},{"alias":"SP192","entrezGeneId":"60313"},{"alias":"Gamm1","entrezGeneId":"60314"},{"alias":"MST024","entrezGeneId":"60314"},{"alias":"MSTP024","entrezGeneId":"60314"},{"alias":"MYG","entrezGeneId":"60314"},{"alias":"MYG1","entrezGeneId":"60314"},{"alias":"2.19","entrezGeneId":"60343"},{"alias":"DLD","entrezGeneId":"60343"},{"alias":"DXS560S","entrezGeneId":"60343"},{"alias":"XAP-7","entrezGeneId":"60343"},{"alias":"ERVK5","entrezGeneId":"60358"},{"alias":"HERV-K(II)","entrezGeneId":"60358"},{"alias":"HERV-KII","entrezGeneId":"60358"},{"alias":"ERVK4","entrezGeneId":"60359"},{"alias":"HERV-K(I)","entrezGeneId":"60359"},{"alias":"HERV-KI","entrezGeneId":"60359"},{"alias":"PP5395","entrezGeneId":"60370"},{"alias":"VIP32","entrezGeneId":"60370"},{"alias":"VIT32","entrezGeneId":"60370"},{"alias":"PPP1R161","entrezGeneId":"60385"},{"alias":"STK22S1","entrezGeneId":"60385"},{"alias":"TSKS1","entrezGeneId":"60385"},{"alias":"TSSKS","entrezGeneId":"60385"},{"alias":"DNC","entrezGeneId":"60386"},{"alias":"MCPHA","entrezGeneId":"60386"},{"alias":"MUP1","entrezGeneId":"60386"},{"alias":"THMD3","entrezGeneId":"60386"},{"alias":"THMD4","entrezGeneId":"60386"},{"alias":"TPC","entrezGeneId":"60386"},{"alias":"EDA-A2R","entrezGeneId":"60401"},{"alias":"EDAA2R","entrezGeneId":"60401"},{"alias":"TNFRSF27","entrezGeneId":"60401"},{"alias":"XEDAR","entrezGeneId":"60401"},{"alias":"SEC8","entrezGeneId":"60412"},{"alias":"SEC8L1","entrezGeneId":"60412"},{"alias":"Sec8p","entrezGeneId":"60412"},{"alias":"VR20","entrezGeneId":"60437"},{"alias":"lINC00109","entrezGeneId":"60439"},{"alias":"NCRNA00109","entrezGeneId":"60439"},{"alias":"TTY2","entrezGeneId":"60439"},{"alias":"NCRNA00187","entrezGeneId":"60467"},{"alias":"BTBD25","entrezGeneId":"60468"},{"alias":"dJ483K16.1","entrezGeneId":"60481"},{"alias":"HELO1","entrezGeneId":"60481"},{"alias":"SCA38","entrezGeneId":"60481"},{"alias":"CHT","entrezGeneId":"60482"},{"alias":"CHT1","entrezGeneId":"60482"},{"alias":"CMS20","entrezGeneId":"60482"},{"alias":"HMN7A","entrezGeneId":"60482"},{"alias":"BRAL1","entrezGeneId":"60484"},{"alias":"SAV","entrezGeneId":"60485"},{"alias":"WW45","entrezGeneId":"60485"},{"alias":"WWP4","entrezGeneId":"60485"},{"alias":"C6orf75","entrezGeneId":"60487"},{"alias":"MDS024","entrezGeneId":"60487"},{"alias":"TRM11","entrezGeneId":"60487"},{"alias":"TRMT11-1","entrezGeneId":"60487"},{"alias":"HDCMD11P","entrezGeneId":"60488"},{"alias":"MDS023","entrezGeneId":"60488"},{"alias":"MRP-S28","entrezGeneId":"60488"},{"alias":"MRPS28","entrezGeneId":"60488"},{"alias":"A3G","entrezGeneId":"60489"},{"alias":"ARCD","entrezGeneId":"60489"},{"alias":"ARP-9","entrezGeneId":"60489"},{"alias":"ARP9","entrezGeneId":"60489"},{"alias":"bK150C2.7","entrezGeneId":"60489"},{"alias":"CEM-15","entrezGeneId":"60489"},{"alias":"CEM15","entrezGeneId":"60489"},{"alias":"dJ494G10.1","entrezGeneId":"60489"},{"alias":"MDS019","entrezGeneId":"60489"},{"alias":"coaC","entrezGeneId":"60490"},{"alias":"MDS018","entrezGeneId":"60490"},{"alias":"PPC-DC","entrezGeneId":"60490"},{"alias":"ALS2CR1","entrezGeneId":"60491"},{"alias":"CALS-7","entrezGeneId":"60491"},{"alias":"MDS015","entrezGeneId":"60491"},{"alias":"MDS011","entrezGeneId":"60492"},{"alias":"MDS025","entrezGeneId":"60492"},{"alias":"dJ1187M17.5","entrezGeneId":"60493"},{"alias":"HPA2","entrezGeneId":"60495"},{"alias":"HPR2","entrezGeneId":"60495"},{"alias":"UFS","entrezGeneId":"60495"},{"alias":"UFS1","entrezGeneId":"60495"},{"alias":"AASD-PPT","entrezGeneId":"60496"},{"alias":"ACPS","entrezGeneId":"60496"},{"alias":"CGI-80","entrezGeneId":"60496"},{"alias":"LYS2","entrezGeneId":"60496"},{"alias":"LYS5","entrezGeneId":"60496"},{"alias":"IGAN","entrezGeneId":"60498"},{"alias":"BRCAX","entrezGeneId":"60500"},{"alias":"ACP","entrezGeneId":"60502"},{"alias":"CLRP","entrezGeneId":"60506"},{"alias":"CSNB1","entrezGeneId":"60506"},{"alias":"CSNB1A","entrezGeneId":"60506"},{"alias":"CSNB4","entrezGeneId":"60506"},{"alias":"NBM1","entrezGeneId":"60506"},{"alias":"CCP5","entrezGeneId":"60509"},{"alias":"RP75","entrezGeneId":"60509"},{"alias":"C2orf43","entrezGeneId":"60526"},{"alias":"hLDAH","entrezGeneId":"60526"},{"alias":"COXPD17","entrezGeneId":"60528"},{"alias":"ELC2","entrezGeneId":"60528"},{"alias":"HPC2","entrezGeneId":"60528"},{"alias":"CRS5","entrezGeneId":"60529"},{"alias":"FND2","entrezGeneId":"60529"},{"alias":"EF-4","entrezGeneId":"60558"},{"alias":"EF4","entrezGeneId":"60558"},{"alias":"EIEE40","entrezGeneId":"60558"},{"alias":"PRO3567","entrezGeneId":"60559"},{"alias":"SPC22/23","entrezGeneId":"60559"},{"alias":"SPC3","entrezGeneId":"60559"},{"alias":"YLR066W","entrezGeneId":"60559"},{"alias":"bA379P1.1","entrezGeneId":"60560"},{"alias":"EGAP","entrezGeneId":"60560"},{"alias":"MAK10","entrezGeneId":"60560"},{"alias":"MAK10P","entrezGeneId":"60560"},{"alias":"RINT-1","entrezGeneId":"60561"},{"alias":"HRIHFB2072","entrezGeneId":"60592"},{"alias":"SCOCO","entrezGeneId":"60592"},{"alias":"UNC-69","entrezGeneId":"60592"},{"alias":"dJ781B1.1","entrezGeneId":"60598"},{"alias":"K2p15.1","entrezGeneId":"60598"},{"alias":"KCNK11","entrezGeneId":"60598"},{"alias":"KCNK14","entrezGeneId":"60598"},{"alias":"KT3.3","entrezGeneId":"60598"},{"alias":"TASK-5","entrezGeneId":"60598"},{"alias":"TASK5","entrezGeneId":"60598"},{"alias":"C20orf15","entrezGeneId":"60625"},{"alias":"DDX35","entrezGeneId":"60625"},{"alias":"KAIA0875","entrezGeneId":"60625"},{"alias":"RIC8","entrezGeneId":"60626"},{"alias":"IIP45","entrezGeneId":"60672"},{"alias":"C12orf44","entrezGeneId":"60673"},{"alias":"NCRNA00030","entrezGeneId":"60674"},{"alias":"SNHG2","entrezGeneId":"60674"},{"alias":"BV8","entrezGeneId":"60675"},{"alias":"HH4","entrezGeneId":"60675"},{"alias":"KAL4","entrezGeneId":"60675"},{"alias":"MIT1","entrezGeneId":"60675"},{"alias":"PK2","entrezGeneId":"60675"},{"alias":"PAPP-A2","entrezGeneId":"60676"},{"alias":"PAPP-E","entrezGeneId":"60676"},{"alias":"PAPPE","entrezGeneId":"60676"},{"alias":"PLAC3","entrezGeneId":"60676"},{"alias":"BRUNOL6","entrezGeneId":"60677"},{"alias":"EFSEC","entrezGeneId":"60678"},{"alias":"SELB","entrezGeneId":"60678"},{"alias":"BRUNOL-5","entrezGeneId":"60680"},{"alias":"BRUNOL5","entrezGeneId":"60680"},{"alias":"CELF-5","entrezGeneId":"60680"},{"alias":"BRKS1","entrezGeneId":"60681"},{"alias":"FKBP65","entrezGeneId":"60681"},{"alias":"hFKBP65","entrezGeneId":"60681"},{"alias":"OI11","entrezGeneId":"60681"},{"alias":"OI6","entrezGeneId":"60681"},{"alias":"PPIASE","entrezGeneId":"60681"},{"alias":"SMAP-1","entrezGeneId":"60682"},{"alias":"C4orf41","entrezGeneId":"60684"},{"alias":"FOIGR","entrezGeneId":"60684"},{"alias":"GRY","entrezGeneId":"60684"},{"alias":"LGMD2S","entrezGeneId":"60684"},{"alias":"TEX27","entrezGeneId":"60685"},{"alias":"RTFC","entrezGeneId":"60686"},{"alias":"C6orf85","entrezGeneId":"63027"},{"alias":"BCoR-L1","entrezGeneId":"63035"},{"alias":"CXorf10","entrezGeneId":"63035"},{"alias":"ELA2A","entrezGeneId":"63036"},{"alias":"PE-1","entrezGeneId":"63036"},{"alias":"ILV1","entrezGeneId":"63826"},{"alias":"ISO1","entrezGeneId":"63826"},{"alias":"BEHAB","entrezGeneId":"63827"},{"alias":"CSPG7","entrezGeneId":"63827"},{"alias":"ABH4","entrezGeneId":"63874"},{"alias":"L17mt","entrezGeneId":"63875"},{"alias":"LIP2","entrezGeneId":"63875"},{"alias":"MRP-L17","entrezGeneId":"63875"},{"alias":"MRP-L26","entrezGeneId":"63875"},{"alias":"RPL17L","entrezGeneId":"63875"},{"alias":"RPML26","entrezGeneId":"63875"},{"alias":"PREP2","entrezGeneId":"63876"},{"alias":"bA319I23.1","entrezGeneId":"63877"},{"alias":"C10orf84","entrezGeneId":"63877"},{"alias":"FP1477","entrezGeneId":"63891"},{"alias":"KPC1","entrezGeneId":"63891"},{"alias":"ARMC13","entrezGeneId":"63892"},{"alias":"GITA","entrezGeneId":"63892"},{"alias":"E2-230K","entrezGeneId":"63893"},{"alias":"C14orf133","entrezGeneId":"63894"},{"alias":"hSPE-39","entrezGeneId":"63894"},{"alias":"SPE-39","entrezGeneId":"63894"},{"alias":"SPE39","entrezGeneId":"63894"},{"alias":"VIPAR","entrezGeneId":"63894"},{"alias":"VPS16B","entrezGeneId":"63894"},{"alias":"C18orf30","entrezGeneId":"63895"},{"alias":"C18orf58","entrezGeneId":"63895"},{"alias":"DA3","entrezGeneId":"63895"},{"alias":"DA5","entrezGeneId":"63895"},{"alias":"DAIPT","entrezGeneId":"63895"},{"alias":"FAM38B","entrezGeneId":"63895"},{"alias":"FAM38B2","entrezGeneId":"63895"},{"alias":"HsT748","entrezGeneId":"63895"},{"alias":"HsT771","entrezGeneId":"63895"},{"alias":"MWKS","entrezGeneId":"63895"},{"alias":"ABC1","entrezGeneId":"63897"},{"alias":"PPP1R38","entrezGeneId":"63898"},{"alias":"SH2A","entrezGeneId":"63898"},{"alias":"MST077","entrezGeneId":"63899"},{"alias":"MSTP077","entrezGeneId":"63899"},{"alias":"GCLEB","entrezGeneId":"63901"},{"alias":"KCS2","entrezGeneId":"63901"},{"alias":"LMWDSP21","entrezGeneId":"63904"},{"alias":"GPATC3","entrezGeneId":"63906"},{"alias":"SNAP-BETA","entrezGeneId":"63908"},{"alias":"SNAPB","entrezGeneId":"63908"},{"alias":"C20orf59","entrezGeneId":"63910"},{"alias":"POROK8","entrezGeneId":"63910"},{"alias":"VNUT","entrezGeneId":"63910"},{"alias":"C6orf164","entrezGeneId":"63914"},{"alias":"dJ102H19.4","entrezGeneId":"63914"},{"alias":"BLOS5","entrezGeneId":"63915"},{"alias":"MU","entrezGeneId":"63915"},{"alias":"MUTED","entrezGeneId":"63915"},{"alias":"CED-12","entrezGeneId":"63916"},{"alias":"Ced-12A","entrezGeneId":"63916"},{"alias":"CED12","entrezGeneId":"63916"},{"alias":"ELMO-2","entrezGeneId":"63916"},{"alias":"VMPI","entrezGeneId":"63916"},{"alias":"GALNAC-T11","entrezGeneId":"63917"},{"alias":"GALNACT11","entrezGeneId":"63917"},{"alias":"Buster3","entrezGeneId":"63920"},{"alias":"C5orf54","entrezGeneId":"63920"},{"alias":"C16orf41","entrezGeneId":"63922"},{"alias":"C321D2.2","entrezGeneId":"63922"},{"alias":"C321D2.3","entrezGeneId":"63922"},{"alias":"C321D2.4","entrezGeneId":"63922"},{"alias":"CHL12","entrezGeneId":"63922"},{"alias":"Ctf18","entrezGeneId":"63922"},{"alias":"RUVBL","entrezGeneId":"63922"},{"alias":"TN-W","entrezGeneId":"63923"},{"alias":"CIDE-3","entrezGeneId":"63924"},{"alias":"CIDE3","entrezGeneId":"63924"},{"alias":"FPLD5","entrezGeneId":"63924"},{"alias":"FSP27","entrezGeneId":"63924"},{"alias":"MCPH10","entrezGeneId":"63925"},{"alias":"NIF-1","entrezGeneId":"63925"},{"alias":"NIF1","entrezGeneId":"63925"},{"alias":"NIF2","entrezGeneId":"63925"},{"alias":"ANKRD5","entrezGeneId":"63926"},{"alias":"APP3","entrezGeneId":"63929"},{"alias":"ICP55","entrezGeneId":"63929"},{"alias":"NPHPL1","entrezGeneId":"63929"},{"alias":"DJ262D12.2","entrezGeneId":"63931"},{"alias":"HSMRPS14","entrezGeneId":"63931"},{"alias":"MRP-S14","entrezGeneId":"63931"},{"alias":"S14mt","entrezGeneId":"63931"},{"alias":"C6orf79","entrezGeneId":"63933"},{"alias":"CCDC90A","entrezGeneId":"63933"},{"alias":"FMP32","entrezGeneId":"63933"},{"alias":"MIPU1","entrezGeneId":"63934"},{"alias":"C20orf67","entrezGeneId":"63935"},{"alias":"PPP1R121","entrezGeneId":"63935"},{"alias":"C20orf177","entrezGeneId":"63939"},{"alias":"dJ551D2.5","entrezGeneId":"63939"},{"alias":"AGS4","entrezGeneId":"63940"},{"alias":"C6orf9","entrezGeneId":"63940"},{"alias":"G18","entrezGeneId":"63940"},{"alias":"G18.1a","entrezGeneId":"63940"},{"alias":"G18.1b","entrezGeneId":"63940"},{"alias":"G18.2","entrezGeneId":"63940"},{"alias":"NG1","entrezGeneId":"63940"},{"alias":"APBA2BP","entrezGeneId":"63941"},{"alias":"dJ63M2.4","entrezGeneId":"63941"},{"alias":"dJ63M2.5","entrezGeneId":"63941"},{"alias":"EFCBP3","entrezGeneId":"63941"},{"alias":"NIP1","entrezGeneId":"63941"},{"alias":"STIP3","entrezGeneId":"63941"},{"alias":"SYTIP2","entrezGeneId":"63941"},{"alias":"XB51","entrezGeneId":"63941"},{"alias":"DIR1","entrezGeneId":"63943"},{"alias":"FKBP4","entrezGeneId":"63943"},{"alias":"NG7","entrezGeneId":"63943"},{"alias":"WISP39","entrezGeneId":"63943"},{"alias":"DMO","entrezGeneId":"63951"},{"alias":"DMRT4","entrezGeneId":"63951"},{"alias":"P53AIP1","entrezGeneId":"63970"},{"alias":"bA500C11.2","entrezGeneId":"63971"},{"alias":"RBKIN","entrezGeneId":"63971"},{"alias":"Atoh4","entrezGeneId":"63973"},{"alias":"bHLHa8","entrezGeneId":"63973"},{"alias":"Math4A","entrezGeneId":"63973"},{"alias":"ngn-2","entrezGeneId":"63973"},{"alias":"NGN2","entrezGeneId":"63973"},{"alias":"Atoh2","entrezGeneId":"63974"},{"alias":"bHLHa2","entrezGeneId":"63974"},{"alias":"Math-2","entrezGeneId":"63974"},{"alias":"MATH2","entrezGeneId":"63974"},{"alias":"Nex1","entrezGeneId":"63974"},{"alias":"NEX1M","entrezGeneId":"63974"},{"alias":"CMD1LL","entrezGeneId":"63976"},{"alias":"KMT8F","entrezGeneId":"63976"},{"alias":"LVNC8","entrezGeneId":"63976"},{"alias":"MEL1","entrezGeneId":"63976"},{"alias":"PFM13","entrezGeneId":"63976"},{"alias":"C21orf83","entrezGeneId":"63977"},{"alias":"PFM15","entrezGeneId":"63977"},{"alias":"ZNF298","entrezGeneId":"63977"},{"alias":"PFM11","entrezGeneId":"63978"},{"alias":"C11orf25","entrezGeneId":"63982"},{"alias":"DYT23","entrezGeneId":"63982"},{"alias":"DYT24","entrezGeneId":"63982"},{"alias":"GENX-3947","entrezGeneId":"63982"},{"alias":"TMEM16C","entrezGeneId":"63982"},{"alias":"LINC00071","entrezGeneId":"64002"},{"alias":"NCRNA00071","entrezGeneId":"64002"},{"alias":"PCAT9","entrezGeneId":"64002"},{"alias":"HA2","entrezGeneId":"64005"},{"alias":"HLA-HA2","entrezGeneId":"64005"},{"alias":"MHAG","entrezGeneId":"64005"},{"alias":"c-orf","entrezGeneId":"64006"},{"alias":"cORF","entrezGeneId":"64006"},{"alias":"envK2","entrezGeneId":"64006"},{"alias":"ERVK6","entrezGeneId":"64006"},{"alias":"HERV-K(C7)","entrezGeneId":"64006"},{"alias":"HERV-K108","entrezGeneId":"64006"},{"alias":"K-Rev","entrezGeneId":"64006"},{"alias":"CDA1","entrezGeneId":"64061"},{"alias":"CINAP","entrezGeneId":"64061"},{"alias":"CTCL","entrezGeneId":"64061"},{"alias":"DENTT","entrezGeneId":"64061"},{"alias":"HRIHFB2216","entrezGeneId":"64061"},{"alias":"NP79","entrezGeneId":"64061"},{"alias":"SE204","entrezGeneId":"64061"},{"alias":"TSPX","entrezGeneId":"64061"},{"alias":"ARRS2","entrezGeneId":"64062"},{"alias":"C13orf10","entrezGeneId":"64062"},{"alias":"PPP1R132","entrezGeneId":"64062"},{"alias":"PRO1777","entrezGeneId":"64062"},{"alias":"SE70-2","entrezGeneId":"64062"},{"alias":"ZC3H17","entrezGeneId":"64062"},{"alias":"BSSP-4","entrezGeneId":"64063"},{"alias":"hBSSP-4","entrezGeneId":"64063"},{"alias":"SP001LA","entrezGeneId":"64063"},{"alias":"FKSG25","entrezGeneId":"64064"},{"alias":"SCOTT","entrezGeneId":"64064"},{"alias":"dJ496H19.1","entrezGeneId":"64065"},{"alias":"KCP1","entrezGeneId":"64065"},{"alias":"KRTCAP1","entrezGeneId":"64065"},{"alias":"PIGPC1","entrezGeneId":"64065"},{"alias":"THW","entrezGeneId":"64065"},{"alias":"MMP-27","entrezGeneId":"64066"},{"alias":"bHLHe12","entrezGeneId":"64067"},{"alias":"MOP6","entrezGeneId":"64067"},{"alias":"PASD6","entrezGeneId":"64067"},{"alias":"ATOD","entrezGeneId":"64069"},{"alias":"CDHR23","entrezGeneId":"64072"},{"alias":"PITA5","entrezGeneId":"64072"},{"alias":"USH1D","entrezGeneId":"64072"},{"alias":"H2RSP","entrezGeneId":"64073"},{"alias":"IMUP","entrezGeneId":"64073"},{"alias":"IMUP-1","entrezGeneId":"64073"},{"alias":"IMUP-2","entrezGeneId":"64073"},{"alias":"HDHD2B","entrezGeneId":"64077"},{"alias":"CNT3","entrezGeneId":"64078"},{"alias":"RBSK","entrezGeneId":"64080"},{"alias":"RK","entrezGeneId":"64080"},{"alias":"HEL-S-306","entrezGeneId":"64081"},{"alias":"MAWBP","entrezGeneId":"64081"},{"alias":"MAWDBP","entrezGeneId":"64081"},{"alias":"GOPP1","entrezGeneId":"64083"},{"alias":"GPP34","entrezGeneId":"64083"},{"alias":"MIDAS","entrezGeneId":"64083"},{"alias":"Vps74","entrezGeneId":"64083"},{"alias":"ALC-GAMMA","entrezGeneId":"64084"},{"alias":"alcagamma","entrezGeneId":"64084"},{"alias":"CDHR13","entrezGeneId":"64084"},{"alias":"CS2","entrezGeneId":"64084"},{"alias":"CSTN2","entrezGeneId":"64084"},{"alias":"MCCB","entrezGeneId":"64087"},{"alias":"GAL3ST-2","entrezGeneId":"64090"},{"alias":"GP3ST","entrezGeneId":"64090"},{"alias":"POP2","entrezGeneId":"64091"},{"alias":"HACS1","entrezGeneId":"64092"},{"alias":"NASH1","entrezGeneId":"64092"},{"alias":"SASH2","entrezGeneId":"64092"},{"alias":"SH3D6B","entrezGeneId":"64092"},{"alias":"SLy2","entrezGeneId":"64092"},{"alias":"OAS","entrezGeneId":"64093"},{"alias":"bA270C4A.1","entrezGeneId":"64094"},{"alias":"bA37D8.1","entrezGeneId":"64094"},{"alias":"dJ421D16.1","entrezGeneId":"64094"},{"alias":"DTDP1","entrezGeneId":"64094"},{"alias":"MST117","entrezGeneId":"64094"},{"alias":"MSTP117","entrezGeneId":"64094"},{"alias":"MSTP140","entrezGeneId":"64094"},{"alias":"SMAP2","entrezGeneId":"64094"},{"alias":"EPB41L4","entrezGeneId":"64097"},{"alias":"NBL4","entrezGeneId":"64097"},{"alias":"E12","entrezGeneId":"64100"},{"alias":"EDDM12","entrezGeneId":"64100"},{"alias":"EL149","entrezGeneId":"64100"},{"alias":"HE12","entrezGeneId":"64100"},{"alias":"NAG14","entrezGeneId":"64101"},{"alias":"NGL-2","entrezGeneId":"64101"},{"alias":"BRICD4","entrezGeneId":"64102"},{"alias":"CHM1L","entrezGeneId":"64102"},{"alias":"TEM","entrezGeneId":"64102"},{"alias":"AF5alpha","entrezGeneId":"64105"},{"alias":"CENP-K","entrezGeneId":"64105"},{"alias":"FKSG14","entrezGeneId":"64105"},{"alias":"P33","entrezGeneId":"64105"},{"alias":"Solt","entrezGeneId":"64105"},{"alias":"GPR147","entrezGeneId":"64106"},{"alias":"NPFF1","entrezGeneId":"64106"},{"alias":"NPFF1R1","entrezGeneId":"64106"},{"alias":"OT7T022","entrezGeneId":"64106"},{"alias":"IFRG28","entrezGeneId":"64108"},{"alias":"Z3CXXC4","entrezGeneId":"64108"},{"alias":"CRL2","entrezGeneId":"64109"},{"alias":"CRLF2Y","entrezGeneId":"64109"},{"alias":"TSLPR","entrezGeneId":"64109"},{"alias":"MAGE-F1","entrezGeneId":"64110"},{"alias":"C7orf9","entrezGeneId":"64111"},{"alias":"RFRP","entrezGeneId":"64111"},{"alias":"MAP-1","entrezGeneId":"64112"},{"alias":"PNMA4","entrezGeneId":"64112"},{"alias":"LFG3","entrezGeneId":"64114"},{"alias":"MST100","entrezGeneId":"64114"},{"alias":"MSTP100","entrezGeneId":"64114"},{"alias":"PP1201","entrezGeneId":"64114"},{"alias":"RECS1","entrezGeneId":"64114"},{"alias":"B7-H5","entrezGeneId":"64115"},{"alias":"B7H5","entrezGeneId":"64115"},{"alias":"C10orf54","entrezGeneId":"64115"},{"alias":"DD1alpha","entrezGeneId":"64115"},{"alias":"GI24","entrezGeneId":"64115"},{"alias":"PD-1H","entrezGeneId":"64115"},{"alias":"PP2135","entrezGeneId":"64115"},{"alias":"SISP1","entrezGeneId":"64115"},{"alias":"VISTA","entrezGeneId":"64115"},{"alias":"BIGM103","entrezGeneId":"64116"},{"alias":"CDG2N","entrezGeneId":"64116"},{"alias":"LZT-Hs6","entrezGeneId":"64116"},{"alias":"PP3105","entrezGeneId":"64116"},{"alias":"ZIP8","entrezGeneId":"64116"},{"alias":"DUS1","entrezGeneId":"64118"},{"alias":"PP3111","entrezGeneId":"64118"},{"alias":"GTR2","entrezGeneId":"64121"},{"alias":"RAGC","entrezGeneId":"64121"},{"alias":"TIB929","entrezGeneId":"64121"},{"alias":"ELTD1","entrezGeneId":"64123"},{"alias":"ETL","entrezGeneId":"64123"},{"alias":"KPG_003","entrezGeneId":"64123"},{"alias":"ACUG","entrezGeneId":"64127"},{"alias":"BLAU","entrezGeneId":"64127"},{"alias":"BLAUS","entrezGeneId":"64127"},{"alias":"CARD15","entrezGeneId":"64127"},{"alias":"CD","entrezGeneId":"64127"},{"alias":"CLR16.3","entrezGeneId":"64127"},{"alias":"IBD1","entrezGeneId":"64127"},{"alias":"NLRC2","entrezGeneId":"64127"},{"alias":"NOD2B","entrezGeneId":"64127"},{"alias":"PSORAS1","entrezGeneId":"64127"},{"alias":"YAOS","entrezGeneId":"64127"},{"alias":"ARG1","entrezGeneId":"64129"},{"alias":"LCN7","entrezGeneId":"64129"},{"alias":"LIECG3","entrezGeneId":"64129"},{"alias":"TINAGRP","entrezGeneId":"64129"},{"alias":"LIN-7B","entrezGeneId":"64130"},{"alias":"MALS-2","entrezGeneId":"64130"},{"alias":"MALS2","entrezGeneId":"64130"},{"alias":"VELI2","entrezGeneId":"64130"},{"alias":"DBQD2","entrezGeneId":"64131"},{"alias":"PXYLT1","entrezGeneId":"64131"},{"alias":"XT-I","entrezGeneId":"64131"},{"alias":"XT1","entrezGeneId":"64131"},{"alias":"XTI","entrezGeneId":"64131"},{"alias":"xylT-I","entrezGeneId":"64131"},{"alias":"XYLTI","entrezGeneId":"64131"},{"alias":"PXYLT2","entrezGeneId":"64132"},{"alias":"SOS","entrezGeneId":"64132"},{"alias":"XT-II","entrezGeneId":"64132"},{"alias":"XT2","entrezGeneId":"64132"},{"alias":"xylT-II","entrezGeneId":"64132"},{"alias":"AGS7","entrezGeneId":"64135"},{"alias":"Hlcd","entrezGeneId":"64135"},{"alias":"IDDM19","entrezGeneId":"64135"},{"alias":"MDA-5","entrezGeneId":"64135"},{"alias":"MDA5","entrezGeneId":"64135"},{"alias":"RLR-2","entrezGeneId":"64135"},{"alias":"SGMRT1","entrezGeneId":"64135"},{"alias":"WHITE2","entrezGeneId":"64137"},{"alias":"Rabenosyn-5","entrezGeneId":"64145"},{"alias":"ZFYVE20","entrezGeneId":"64145"},{"alias":"NJMU-R1","entrezGeneId":"64149"},{"alias":"SRI2","entrezGeneId":"64149"},{"alias":"C14orf134","entrezGeneId":"64150"},{"alias":"DIO3-AS1","entrezGeneId":"64150"},{"alias":"DIO3-OS","entrezGeneId":"64150"},{"alias":"NCRNA00041","entrezGeneId":"64150"},{"alias":"CAPG","entrezGeneId":"64151"},{"alias":"CHCG","entrezGeneId":"64151"},{"alias":"NY-MEL-3","entrezGeneId":"64151"},{"alias":"YCG1","entrezGeneId":"64151"},{"alias":"L-RAP","entrezGeneId":"64167"},{"alias":"LRAP","entrezGeneId":"64167"},{"alias":"EFCBP1","entrezGeneId":"64168"},{"alias":"STIP-1","entrezGeneId":"64168"},{"alias":"CANDF2","entrezGeneId":"64170"},{"alias":"hCARD9","entrezGeneId":"64170"},{"alias":"OSGEPL","entrezGeneId":"64172"},{"alias":"Qri7","entrezGeneId":"64172"},{"alias":"MBD2","entrezGeneId":"64174"},{"alias":"GROS1","entrezGeneId":"64175"},{"alias":"LEPRE1","entrezGeneId":"64175"},{"alias":"OI8","entrezGeneId":"64175"},{"alias":"MBD3","entrezGeneId":"64180"},{"alias":"EP3B","entrezGeneId":"64184"},{"alias":"FAM12B","entrezGeneId":"64184"},{"alias":"HE3-BETA","entrezGeneId":"64184"},{"alias":"HE3B","entrezGeneId":"64184"},{"alias":"RAM2","entrezGeneId":"64184"},{"alias":"C14orf4","entrezGeneId":"64207"},{"alias":"EAP1","entrezGeneId":"64207"},{"alias":"bA355M14.1","entrezGeneId":"64208"},{"alias":"POP3","entrezGeneId":"64208"},{"alias":"hMMS19","entrezGeneId":"64210"},{"alias":"MET18","entrezGeneId":"64210"},{"alias":"MMS19L","entrezGeneId":"64210"},{"alias":"DNAJL1","entrezGeneId":"64215"},{"alias":"ERdj1","entrezGeneId":"64215"},{"alias":"HTJ1","entrezGeneId":"64215"},{"alias":"MTJ1","entrezGeneId":"64215"},{"alias":"Hkp1","entrezGeneId":"64216"},{"alias":"mtTFB2","entrezGeneId":"64216"},{"alias":"CORD10","entrezGeneId":"64218"},{"alias":"RP35","entrezGeneId":"64218"},{"alias":"SEMAB","entrezGeneId":"64218"},{"alias":"SEMB","entrezGeneId":"64218"},{"alias":"PRAJA1","entrezGeneId":"64219"},{"alias":"RNF70","entrezGeneId":"64219"},{"alias":"MCOPCB8","entrezGeneId":"64220"},{"alias":"MCOPS9","entrezGeneId":"64220"},{"alias":"PP14296","entrezGeneId":"64220"},{"alias":"HGPPS","entrezGeneId":"64221"},{"alias":"HGPPS1","entrezGeneId":"64221"},{"alias":"HGPS","entrezGeneId":"64221"},{"alias":"RBIG1","entrezGeneId":"64221"},{"alias":"RIG1","entrezGeneId":"64221"},{"alias":"ADIR","entrezGeneId":"64222"},{"alias":"ADIR2","entrezGeneId":"64222"},{"alias":"GbetaL","entrezGeneId":"64223"},{"alias":"GBL","entrezGeneId":"64223"},{"alias":"LST8","entrezGeneId":"64223"},{"alias":"POP3","entrezGeneId":"64223"},{"alias":"WAT1","entrezGeneId":"64223"},{"alias":"aip-2","entrezGeneId":"64225"},{"alias":"ARL3IP2","entrezGeneId":"64225"},{"alias":"ARL6IP2","entrezGeneId":"64225"},{"alias":"atlastin2","entrezGeneId":"64225"},{"alias":"4SPAN3","entrezGeneId":"64231"},{"alias":"4SPAN3.2","entrezGeneId":"64231"},{"alias":"CD20L3","entrezGeneId":"64231"},{"alias":"CDA01","entrezGeneId":"64231"},{"alias":"MS4A6","entrezGeneId":"64231"},{"alias":"MST090","entrezGeneId":"64231"},{"alias":"MSTP090","entrezGeneId":"64231"},{"alias":"CD20-L2","entrezGeneId":"64232"},{"alias":"CD20L2","entrezGeneId":"64232"},{"alias":"TETM4","entrezGeneId":"64232"},{"alias":"MYSTIQUE","entrezGeneId":"64236"},{"alias":"SLIM","entrezGeneId":"64236"},{"alias":"STSL","entrezGeneId":"64240"},{"alias":"GBD4","entrezGeneId":"64241"},{"alias":"STSL","entrezGeneId":"64241"},{"alias":"TRF4-2","entrezGeneId":"64282"},{"alias":"TUT3","entrezGeneId":"64282"},{"alias":"p190RHOGEF","entrezGeneId":"64283"},{"alias":"RGNEF","entrezGeneId":"64283"},{"alias":"RIP2","entrezGeneId":"64283"},{"alias":"C16orf8","entrezGeneId":"64285"},{"alias":"Dist1","entrezGeneId":"64285"},{"alias":"EGFR-RS","entrezGeneId":"64285"},{"alias":"gene-89","entrezGeneId":"64285"},{"alias":"gene-90","entrezGeneId":"64285"},{"alias":"hDist1","entrezGeneId":"64285"},{"alias":"ZNF20-Lp","entrezGeneId":"64288"},{"alias":"ZNF310P","entrezGeneId":"64288"},{"alias":"ZNF323","entrezGeneId":"64288"},{"alias":"AD24","entrezGeneId":"64318"},{"alias":"C10orf117","entrezGeneId":"64318"},{"alias":"FAD24","entrezGeneId":"64318"},{"alias":"FBS","entrezGeneId":"64319"},{"alias":"FBS1","entrezGeneId":"64319"},{"alias":"AO7","entrezGeneId":"64320"},{"alias":"VUR3","entrezGeneId":"64321"},{"alias":"ARA267","entrezGeneId":"64324"},{"alias":"KMT3B","entrezGeneId":"64324"},{"alias":"SOTOS","entrezGeneId":"64324"},{"alias":"SOTOS1","entrezGeneId":"64324"},{"alias":"STO","entrezGeneId":"64324"},{"alias":"RFWD2","entrezGeneId":"64326"},{"alias":"RNF200","entrezGeneId":"64326"},{"alias":"ACHP","entrezGeneId":"64327"},{"alias":"C7orf2","entrezGeneId":"64327"},{"alias":"DIF14","entrezGeneId":"64327"},{"alias":"LSS","entrezGeneId":"64327"},{"alias":"PPD2","entrezGeneId":"64327"},{"alias":"THYP","entrezGeneId":"64327"},{"alias":"TPT","entrezGeneId":"64327"},{"alias":"ZRS","entrezGeneId":"64327"},{"alias":"exp4","entrezGeneId":"64328"},{"alias":"IKBZ","entrezGeneId":"64332"},{"alias":"INAP","entrezGeneId":"64332"},{"alias":"MAIL","entrezGeneId":"64332"},{"alias":"10C","entrezGeneId":"64333"},{"alias":"RGL1","entrezGeneId":"64333"},{"alias":"ETM2","entrezGeneId":"64342"},{"alias":"HS1-BP3","entrezGeneId":"64342"},{"alias":"AZ2","entrezGeneId":"64343"},{"alias":"NAP1","entrezGeneId":"64343"},{"alias":"TILP","entrezGeneId":"64343"},{"alias":"bHLHe17","entrezGeneId":"64344"},{"alias":"HIF-3A","entrezGeneId":"64344"},{"alias":"HIF3-alpha-1","entrezGeneId":"64344"},{"alias":"IPAS","entrezGeneId":"64344"},{"alias":"MOP7","entrezGeneId":"64344"},{"alias":"PASD7","entrezGeneId":"64344"},{"alias":"NRX","entrezGeneId":"64359"},{"alias":"TRG-4","entrezGeneId":"64359"},{"alias":"BAP","entrezGeneId":"64374"},{"alias":"MSS","entrezGeneId":"64374"},{"alias":"ULG5","entrezGeneId":"64374"},{"alias":"EOS","entrezGeneId":"64375"},{"alias":"ZNFN1A4","entrezGeneId":"64375"},{"alias":"PEGASUS","entrezGeneId":"64376"},{"alias":"ZNFN1A5","entrezGeneId":"64376"},{"alias":"GalNAc4ST","entrezGeneId":"64377"},{"alias":"GALNAC4ST1","entrezGeneId":"64377"},{"alias":"PSS3","entrezGeneId":"64377"},{"alias":"MMP-25","entrezGeneId":"64386"},{"alias":"MMP20","entrezGeneId":"64386"},{"alias":"MMP20A","entrezGeneId":"64386"},{"alias":"MMPL1","entrezGeneId":"64386"},{"alias":"MT-MMP 6","entrezGeneId":"64386"},{"alias":"MT-MMP6","entrezGeneId":"64386"},{"alias":"MT6-MMP","entrezGeneId":"64386"},{"alias":"MT6MMP","entrezGeneId":"64386"},{"alias":"MTMMP6","entrezGeneId":"64386"},{"alias":"CKTSF1B2","entrezGeneId":"64388"},{"alias":"DAND3","entrezGeneId":"64388"},{"alias":"PRDC","entrezGeneId":"64388"},{"alias":"STHAG9","entrezGeneId":"64388"},{"alias":"PAG608","entrezGeneId":"64393"},{"alias":"WIG-1","entrezGeneId":"64393"},{"alias":"WIG1","entrezGeneId":"64393"},{"alias":"BTBD13","entrezGeneId":"64395"},{"alias":"GCL","entrezGeneId":"64395"},{"alias":"GCL1","entrezGeneId":"64395"},{"alias":"SPATA29","entrezGeneId":"64395"},{"alias":"GCL","entrezGeneId":"64396"},{"alias":"GMCL1L","entrezGeneId":"64396"},{"alias":"SH3BP3","entrezGeneId":"64397"},{"alias":"ZFP106","entrezGeneId":"64397"},{"alias":"ZNF474","entrezGeneId":"64397"},{"alias":"PALS1","entrezGeneId":"64398"},{"alias":"HIP","entrezGeneId":"64399"},{"alias":"FT1","entrezGeneId":"64400"},{"alias":"FTS","entrezGeneId":"64400"},{"alias":"CDH11L","entrezGeneId":"64403"},{"alias":"C20orf25","entrezGeneId":"64405"},{"alias":"dJ998H6.1","entrezGeneId":"64405"},{"alias":"RGS13","entrezGeneId":"64407"},{"alias":"GalNAc-T17","entrezGeneId":"64409"},{"alias":"GalNAc-T19","entrezGeneId":"64409"},{"alias":"GalNAc-T5L","entrezGeneId":"64409"},{"alias":"GALNACT17","entrezGeneId":"64409"},{"alias":"GALNT16","entrezGeneId":"64409"},{"alias":"GALNT20","entrezGeneId":"64409"},{"alias":"GALNTL3","entrezGeneId":"64409"},{"alias":"WBSCR17","entrezGeneId":"64409"},{"alias":"ENC-2","entrezGeneId":"64410"},{"alias":"ENC2","entrezGeneId":"64410"},{"alias":"CENTD3","entrezGeneId":"64411"},{"alias":"DRAG1","entrezGeneId":"64411"},{"alias":"JLSM","entrezGeneId":"64412"},{"alias":"ZBTB23","entrezGeneId":"64412"},{"alias":"ZNF336","entrezGeneId":"64412"},{"alias":"C5orf28","entrezGeneId":"64417"},{"alias":"C3orf29","entrezGeneId":"64419"},{"alias":"A-SCID","entrezGeneId":"64421"},{"alias":"DCLREC1C","entrezGeneId":"64421"},{"alias":"RS-SCID","entrezGeneId":"64421"},{"alias":"SCIDA","entrezGeneId":"64421"},{"alias":"SNM1C","entrezGeneId":"64421"},{"alias":"APG3","entrezGeneId":"64422"},{"alias":"APG3-LIKE","entrezGeneId":"64422"},{"alias":"APG3L","entrezGeneId":"64422"},{"alias":"PC3-96","entrezGeneId":"64422"},{"alias":"C14orf151","entrezGeneId":"64423"},{"alias":"C14orf173","entrezGeneId":"64423"},{"alias":"CMTDIE","entrezGeneId":"64423"},{"alias":"FSGS5","entrezGeneId":"64423"},{"alias":"pp9484","entrezGeneId":"64423"},{"alias":"PAF53","entrezGeneId":"64425"},{"alias":"PRAF1","entrezGeneId":"64425"},{"alias":"SAP45","entrezGeneId":"64426"},{"alias":"SDS3","entrezGeneId":"64426"},{"alias":"HPRN","entrezGeneId":"64428"},{"alias":"IOP1","entrezGeneId":"64428"},{"alias":"LET1L","entrezGeneId":"64428"},{"alias":"NAR1","entrezGeneId":"64428"},{"alias":"PRN","entrezGeneId":"64428"},{"alias":"DHHC-6","entrezGeneId":"64429"},{"alias":"ZNF376","entrezGeneId":"64429"},{"alias":"C14orf135","entrezGeneId":"64430"},{"alias":"FBP2","entrezGeneId":"64430"},{"alias":"PCNXL4","entrezGeneId":"64430"},{"alias":"ARP6","entrezGeneId":"64431"},{"alias":"CDA12","entrezGeneId":"64431"},{"alias":"hARP6","entrezGeneId":"64431"},{"alias":"hARPX","entrezGeneId":"64431"},{"alias":"HSPC281","entrezGeneId":"64431"},{"alias":"MSTP136","entrezGeneId":"64431"},{"alias":"MRP-S25","entrezGeneId":"64432"},{"alias":"RPMS25","entrezGeneId":"64432"},{"alias":"C7orf4","entrezGeneId":"64433"},{"alias":"NCRNA00244","entrezGeneId":"64433"},{"alias":"C7orf3","entrezGeneId":"64434"},{"alias":"PPP1R113","entrezGeneId":"64434"},{"alias":"SGD1","entrezGeneId":"64434"},{"alias":"CILD9","entrezGeneId":"64446"},{"alias":"DIC2","entrezGeneId":"64446"},{"alias":"PPP1R24","entrezGeneId":"64478"},{"alias":"C16orf10","entrezGeneId":"64493"},{"alias":"LA16c-356B8.1","entrezGeneId":"64493"},{"alias":"NCRNA00235","entrezGeneId":"64493"},{"alias":"TPS2","entrezGeneId":"64499"},{"alias":"tryptaseB","entrezGeneId":"64499"},{"alias":"tryptaseC","entrezGeneId":"64499"},{"alias":"CPE-BP1","entrezGeneId":"64506"},{"alias":"CPEB","entrezGeneId":"64506"},{"alias":"CPEB-1","entrezGeneId":"64506"},{"alias":"h-CPEB","entrezGeneId":"64506"},{"alias":"hCPEB-1","entrezGeneId":"64506"},{"alias":"ALDH12","entrezGeneId":"64577"},{"alias":"DJ352A20.2","entrezGeneId":"64577"},{"alias":"N-HSST","entrezGeneId":"64579"},{"alias":"N-HSST 4","entrezGeneId":"64579"},{"alias":"NDST-4","entrezGeneId":"64579"},{"alias":"NHSST4","entrezGeneId":"64579"},{"alias":"BGR","entrezGeneId":"64581"},{"alias":"CANDF4","entrezGeneId":"64581"},{"alias":"CD369","entrezGeneId":"64581"},{"alias":"CLECSF12","entrezGeneId":"64581"},{"alias":"DECTIN1","entrezGeneId":"64581"},{"alias":"SCARE2","entrezGeneId":"64581"},{"alias":"HUMNPIIY20","entrezGeneId":"64582"},{"alias":"TSPYQ1","entrezGeneId":"64591"},{"alias":"RBMY3P","entrezGeneId":"64593"},{"alias":"RBMY4P","entrezGeneId":"64593"},{"alias":"SPATA14","entrezGeneId":"64593"},{"alias":"NCRNA00138","entrezGeneId":"64595"},{"alias":"PSMA6-LIKE","entrezGeneId":"64596"},{"alias":"PSMA6P","entrezGeneId":"64596"},{"alias":"PSMA6Y","entrezGeneId":"64596"},{"alias":"CDS3","entrezGeneId":"64598"},{"alias":"NET30","entrezGeneId":"64598"},{"alias":"GYF1","entrezGeneId":"64599"},{"alias":"PERQ1","entrezGeneId":"64599"},{"alias":"GIIFsPLA2","entrezGeneId":"64600"},{"alias":"sPLA2-IIF","entrezGeneId":"64600"},{"alias":"hVPS16","entrezGeneId":"64601"},{"alias":"COE2","entrezGeneId":"64641"},{"alias":"EBF-2","entrezGeneId":"64641"},{"alias":"O/E-3","entrezGeneId":"64641"},{"alias":"OE-3","entrezGeneId":"64641"},{"alias":"GGF2","entrezGeneId":"64644"},{"alias":"HGF2","entrezGeneId":"64644"},{"alias":"HIAT1","entrezGeneId":"64645"},{"alias":"CT11.4","entrezGeneId":"64648"},{"alias":"dJ171K16.1","entrezGeneId":"64648"},{"alias":"SPANX-C","entrezGeneId":"64648"},{"alias":"SPANX-D","entrezGeneId":"64648"},{"alias":"SPANX-E","entrezGeneId":"64648"},{"alias":"SPANXE","entrezGeneId":"64648"},{"alias":"AXUD1","entrezGeneId":"64651"},{"alias":"CSRNP-1","entrezGeneId":"64651"},{"alias":"FAM130B","entrezGeneId":"64651"},{"alias":"TAIP-3","entrezGeneId":"64651"},{"alias":"URAX1","entrezGeneId":"64651"},{"alias":"CT11.3","entrezGeneId":"64663"},{"alias":"CTp11","entrezGeneId":"64663"},{"alias":"SPANX-C","entrezGeneId":"64663"},{"alias":"SPANX-E","entrezGeneId":"64663"},{"alias":"SPANXE","entrezGeneId":"64663"},{"alias":"APC1","entrezGeneId":"64682"},{"alias":"MCPR","entrezGeneId":"64682"},{"alias":"TSG24","entrezGeneId":"64682"},{"alias":"GOLPH5","entrezGeneId":"64689"},{"alias":"GRASP65","entrezGeneId":"64689"},{"alias":"P65","entrezGeneId":"64689"},{"alias":"CT21.1","entrezGeneId":"64693"},{"alias":"CT21.2","entrezGeneId":"64693"},{"alias":"CTAGE","entrezGeneId":"64693"},{"alias":"CTAGE-1","entrezGeneId":"64693"},{"alias":"CTAGE-2","entrezGeneId":"64693"},{"alias":"DFNB10","entrezGeneId":"64699"},{"alias":"DFNB8","entrezGeneId":"64699"},{"alias":"ECHOS1","entrezGeneId":"64699"},{"alias":"TADG12","entrezGeneId":"64699"},{"alias":"CSN7B","entrezGeneId":"64708"},{"alias":"SGN7b","entrezGeneId":"64708"},{"alias":"JC7","entrezGeneId":"64710"},{"alias":"NUCKS","entrezGeneId":"64710"},{"alias":"3-OST-6","entrezGeneId":"64711"},{"alias":"HS3ST5","entrezGeneId":"64711"},{"alias":"PDA2","entrezGeneId":"64714"},{"alias":"PDI","entrezGeneId":"64714"},{"alias":"PDIP","entrezGeneId":"64714"},{"alias":"PDIR","entrezGeneId":"64714"},{"alias":"TRG-CCC2-1","entrezGeneId":"64717"},{"alias":"TRG4","entrezGeneId":"64717"},{"alias":"TRNAG4","entrezGeneId":"64717"},{"alias":"C16orf28","entrezGeneId":"64718"},{"alias":"ZC3H5L","entrezGeneId":"64718"},{"alias":"ZC3HDC5L","entrezGeneId":"64718"},{"alias":"RPS3A_21_1466","entrezGeneId":"64725"},{"alias":"TJP1P","entrezGeneId":"64730"},{"alias":"C16orf32","entrezGeneId":"64735"},{"alias":"NCRNA00254","entrezGeneId":"64735"},{"alias":"MG21","entrezGeneId":"64743"},{"alias":"SMAP1L","entrezGeneId":"64744"},{"alias":"METT11D1","entrezGeneId":"64745"},{"alias":"GCP60","entrezGeneId":"64746"},{"alias":"GOCAP1","entrezGeneId":"64746"},{"alias":"GOLPH1","entrezGeneId":"64746"},{"alias":"PAP7","entrezGeneId":"64746"},{"alias":"SMAP4","entrezGeneId":"64747"},{"alias":"LPPR2","entrezGeneId":"64748"},{"alias":"PRG4","entrezGeneId":"64748"},{"alias":"NAG6","entrezGeneId":"64753"},{"alias":"bA74P14.1","entrezGeneId":"64754"},{"alias":"KMT3E","entrezGeneId":"64754"},{"alias":"ZMYND1","entrezGeneId":"64754"},{"alias":"ZNFN3A1","entrezGeneId":"64754"},{"alias":"RUS","entrezGeneId":"64755"},{"alias":"ATP11","entrezGeneId":"64756"},{"alias":"ATP11p","entrezGeneId":"64756"},{"alias":"MOSC1","entrezGeneId":"64757"},{"alias":"TEM6","entrezGeneId":"64759"},{"alias":"TENS1","entrezGeneId":"64759"},{"alias":"RAI16","entrezGeneId":"64760"},{"alias":"ARTD12","entrezGeneId":"64761"},{"alias":"MST109","entrezGeneId":"64761"},{"alias":"MSTP109","entrezGeneId":"64761"},{"alias":"ZC3H1","entrezGeneId":"64761"},{"alias":"ZC3HDC1","entrezGeneId":"64761"},{"alias":"C18orf11","entrezGeneId":"64762"},{"alias":"FAM59A","entrezGeneId":"64762"},{"alias":"GAREM","entrezGeneId":"64762"},{"alias":"Gm944","entrezGeneId":"64762"},{"alias":"FP972","entrezGeneId":"64763"},{"alias":"BBF2H7","entrezGeneId":"64764"},{"alias":"S100PBPR","entrezGeneId":"64766"},{"alias":"bA476B13.1","entrezGeneId":"64768"},{"alias":"C9orf12","entrezGeneId":"64768"},{"alias":"INSP5K2","entrezGeneId":"64768"},{"alias":"IP5K","entrezGeneId":"64768"},{"alias":"IPK1","entrezGeneId":"64768"},{"alias":"C1orf149","entrezGeneId":"64769"},{"alias":"CENP-28","entrezGeneId":"64769"},{"alias":"EAF6","entrezGeneId":"64769"},{"alias":"NY-SAR-91","entrezGeneId":"64769"},{"alias":"dJ391O22.4","entrezGeneId":"64771"},{"alias":"FP852","entrezGeneId":"64771"},{"alias":"bA12M19.1","entrezGeneId":"64773"},{"alias":"C20orf81","entrezGeneId":"64773"},{"alias":"FAM113A","entrezGeneId":"64773"},{"alias":"GID2","entrezGeneId":"64777"},{"alias":"GID2B","entrezGeneId":"64777"},{"alias":"FAD104","entrezGeneId":"64778"},{"alias":"PRO4979","entrezGeneId":"64778"},{"alias":"YVTM2421","entrezGeneId":"64778"},{"alias":"MICAL","entrezGeneId":"64780"},{"alias":"MICAL-1","entrezGeneId":"64780"},{"alias":"NICAL","entrezGeneId":"64780"},{"alias":"dA59H18.2","entrezGeneId":"64781"},{"alias":"dA59H18.3","entrezGeneId":"64781"},{"alias":"hCERK","entrezGeneId":"64781"},{"alias":"LK4","entrezGeneId":"64781"},{"alias":"ISG20L1","entrezGeneId":"64782"},{"alias":"pp12744","entrezGeneId":"64782"},{"alias":"OTT","entrezGeneId":"64783"},{"alias":"OTT1","entrezGeneId":"64783"},{"alias":"SPEN","entrezGeneId":"64783"},{"alias":"TORC-3","entrezGeneId":"64784"},{"alias":"TORC3","entrezGeneId":"64784"},{"alias":"PSF3","entrezGeneId":"64785"},{"alias":"RAB7-GAP","entrezGeneId":"64786"},{"alias":"DFNB106","entrezGeneId":"64787"},{"alias":"EPS8R2","entrezGeneId":"64787"},{"alias":"C16orf26","entrezGeneId":"64788"},{"alias":"HMFN1876","entrezGeneId":"64788"},{"alias":"JFP11","entrezGeneId":"64788"},{"alias":"TMEM112","entrezGeneId":"64788"},{"alias":"TMEM112A","entrezGeneId":"64788"},{"alias":"C1orf176","entrezGeneId":"64789"},{"alias":"DEM1","entrezGeneId":"64789"},{"alias":"Exo V","entrezGeneId":"64789"},{"alias":"hExo5","entrezGeneId":"64789"},{"alias":"RABL5","entrezGeneId":"64792"},{"alias":"CCDC21","entrezGeneId":"64793"},{"alias":"PPP1R25","entrezGeneId":"64794"},{"alias":"CTLH","entrezGeneId":"64795"},{"alias":"GID2","entrezGeneId":"64795"},{"alias":"GID2A","entrezGeneId":"64795"},{"alias":"p44CTLH","entrezGeneId":"64795"},{"alias":"RMD5","entrezGeneId":"64795"},{"alias":"DEP.6","entrezGeneId":"64798"},{"alias":"DEPDC6","entrezGeneId":"64798"},{"alias":"NYDSP5","entrezGeneId":"64799"},{"alias":"dJ185D5.1","entrezGeneId":"64800"},{"alias":"DJBP","entrezGeneId":"64800"},{"alias":"HSCBCIP1","entrezGeneId":"64800"},{"alias":"EIEE38","entrezGeneId":"64801"},{"alias":"LCA9","entrezGeneId":"64802"},{"alias":"NMNAT","entrezGeneId":"64802"},{"alias":"PNAT1","entrezGeneId":"64802"},{"alias":"ADPG-R","entrezGeneId":"64805"},{"alias":"BDPLT8","entrezGeneId":"64805"},{"alias":"HORK3","entrezGeneId":"64805"},{"alias":"P2T(AC)","entrezGeneId":"64805"},{"alias":"P2Y(12)R","entrezGeneId":"64805"},{"alias":"P2Y(AC)","entrezGeneId":"64805"},{"alias":"P2Y(ADP)","entrezGeneId":"64805"},{"alias":"P2Y(cyc)","entrezGeneId":"64805"},{"alias":"P2Y12","entrezGeneId":"64805"},{"alias":"SP1999","entrezGeneId":"64805"},{"alias":"IL17E","entrezGeneId":"64806"},{"alias":"CGI-88","entrezGeneId":"64834"},{"alias":"Ssc1","entrezGeneId":"64834"},{"alias":"FRCP1","entrezGeneId":"64838"},{"alias":"Fbl17","entrezGeneId":"64839"},{"alias":"Fbx13","entrezGeneId":"64839"},{"alias":"FBXO13","entrezGeneId":"64839"},{"alias":"DHOF","entrezGeneId":"64840"},{"alias":"FODH","entrezGeneId":"64840"},{"alias":"MG61","entrezGeneId":"64840"},{"alias":"PORC","entrezGeneId":"64840"},{"alias":"PPN","entrezGeneId":"64840"},{"alias":"GNA1","entrezGeneId":"64841"},{"alias":"GNPNAT","entrezGeneId":"64841"},{"alias":"Gpnat1","entrezGeneId":"64841"},{"alias":"AXO","entrezGeneId":"64844"},{"alias":"AXOT","entrezGeneId":"64844"},{"alias":"MARCH-VII","entrezGeneId":"64844"},{"alias":"RNF177","entrezGeneId":"64844"},{"alias":"HEL-S-98","entrezGeneId":"64847"},{"alias":"SSP411","entrezGeneId":"64847"},{"alias":"Tisp78","entrezGeneId":"64847"},{"alias":"CAHL","entrezGeneId":"64848"},{"alias":"NADC3","entrezGeneId":"64849"},{"alias":"SDCT2","entrezGeneId":"64849"},{"alias":"AGXT2L1","entrezGeneId":"64850"},{"alias":"PAPD2","entrezGeneId":"64852"},{"alias":"RBM21","entrezGeneId":"64852"},{"alias":"STARPAP","entrezGeneId":"64852"},{"alias":"TUTase","entrezGeneId":"64852"},{"alias":"URLC6","entrezGeneId":"64852"},{"alias":"C1orf80","entrezGeneId":"64853"},{"alias":"bA356B19.6","entrezGeneId":"64855"},{"alias":"C9orf88","entrezGeneId":"64855"},{"alias":"MEG-3","entrezGeneId":"64855"},{"alias":"MINERVA","entrezGeneId":"64855"},{"alias":"OC58","entrezGeneId":"64855"},{"alias":"WARP","entrezGeneId":"64856"},{"alias":"ARHGEF42","entrezGeneId":"64857"},{"alias":"CLG","entrezGeneId":"64857"},{"alias":"CTB-60E11.4","entrezGeneId":"64857"},{"alias":"LDAMD","entrezGeneId":"64857"},{"alias":"APOLLO","entrezGeneId":"64858"},{"alias":"SNM1B","entrezGeneId":"64858"},{"alias":"SNMIB","entrezGeneId":"64858"},{"alias":"OBFC2A","entrezGeneId":"64859"},{"alias":"SOSS-B2","entrezGeneId":"64859"},{"alias":"SSB2","entrezGeneId":"64859"},{"alias":"GASP5","entrezGeneId":"64860"},{"alias":"HsT661","entrezGeneId":"64863"},{"alias":"RFXDC2","entrezGeneId":"64864"},{"alias":"CD318","entrezGeneId":"64866"},{"alias":"SIMA135","entrezGeneId":"64866"},{"alias":"TRASK","entrezGeneId":"64866"},{"alias":"PCDH13","entrezGeneId":"64881"},{"alias":"Custos","entrezGeneId":"64897"},{"alias":"LIPN3L","entrezGeneId":"64900"},{"alias":"SMP2","entrezGeneId":"64900"},{"alias":"AGT2","entrezGeneId":"64902"},{"alias":"BAIBA","entrezGeneId":"64902"},{"alias":"DAIBAT","entrezGeneId":"64902"},{"alias":"ATL1","entrezGeneId":"64919"},{"alias":"ATL1-alpha","entrezGeneId":"64919"},{"alias":"ATL1-beta","entrezGeneId":"64919"},{"alias":"ATL1-delta","entrezGeneId":"64919"},{"alias":"ATL1-gamma","entrezGeneId":"64919"},{"alias":"CTIP-2","entrezGeneId":"64919"},{"alias":"CTIP2","entrezGeneId":"64919"},{"alias":"hRIT1-alpha","entrezGeneId":"64919"},{"alias":"IMD49","entrezGeneId":"64919"},{"alias":"RIT1","entrezGeneId":"64919"},{"alias":"ZNF856B","entrezGeneId":"64919"},{"alias":"C7orf12","entrezGeneId":"64921"},{"alias":"NBLA04196","entrezGeneId":"64921"},{"alias":"SOAT","entrezGeneId":"64921"},{"alias":"ZnT-5","entrezGeneId":"64924"},{"alias":"ZNT5","entrezGeneId":"64924"},{"alias":"ZNTL1","entrezGeneId":"64924"},{"alias":"ZTL1","entrezGeneId":"64924"},{"alias":"HCC-8","entrezGeneId":"64927"},{"alias":"L14mt","entrezGeneId":"64928"},{"alias":"L32mt","entrezGeneId":"64928"},{"alias":"MRP-L14","entrezGeneId":"64928"},{"alias":"MRP-L32","entrezGeneId":"64928"},{"alias":"MRPL32","entrezGeneId":"64928"},{"alias":"RMPL32","entrezGeneId":"64928"},{"alias":"RPML32","entrezGeneId":"64928"},{"alias":"STAG3L4P","entrezGeneId":"64940"},{"alias":"C20orf193","entrezGeneId":"64949"},{"alias":"dJ534B8.3","entrezGeneId":"64949"},{"alias":"GI008","entrezGeneId":"64949"},{"alias":"MRP-S13","entrezGeneId":"64949"},{"alias":"MRP-S26","entrezGeneId":"64949"},{"alias":"MRPS13","entrezGeneId":"64949"},{"alias":"NY-BR-87","entrezGeneId":"64949"},{"alias":"RPMS13","entrezGeneId":"64949"},{"alias":"bMRP-47","entrezGeneId":"64951"},{"alias":"bMRP47","entrezGeneId":"64951"},{"alias":"HSPC335","entrezGeneId":"64951"},{"alias":"MRP-S24","entrezGeneId":"64951"},{"alias":"S24mt","entrezGeneId":"64951"},{"alias":"DC37","entrezGeneId":"64960"},{"alias":"MPR-S15","entrezGeneId":"64960"},{"alias":"RPMS15","entrezGeneId":"64960"},{"alias":"S15mt","entrezGeneId":"64960"},{"alias":"HCC-2","entrezGeneId":"64963"},{"alias":"MRP-S11","entrezGeneId":"64963"},{"alias":"S11mt","entrezGeneId":"64963"},{"alias":"MRP-S9","entrezGeneId":"64965"},{"alias":"RPMS9","entrezGeneId":"64965"},{"alias":"S9mt","entrezGeneId":"64965"},{"alias":"C21orf101","entrezGeneId":"64968"},{"alias":"MRP-S6","entrezGeneId":"64968"},{"alias":"RPMS6","entrezGeneId":"64968"},{"alias":"S6mt","entrezGeneId":"64968"},{"alias":"MRP-S5","entrezGeneId":"64969"},{"alias":"S5mt","entrezGeneId":"64969"},{"alias":"BMRP","entrezGeneId":"64975"},{"alias":"MRP-L27","entrezGeneId":"64975"},{"alias":"MRPL27","entrezGeneId":"64975"},{"alias":"PIG3","entrezGeneId":"64975"},{"alias":"RPML27","entrezGeneId":"64975"},{"alias":"L40mt","entrezGeneId":"64976"},{"alias":"MRP-L22","entrezGeneId":"64976"},{"alias":"MRP-L40","entrezGeneId":"64976"},{"alias":"MRPL22","entrezGeneId":"64976"},{"alias":"NLVCF","entrezGeneId":"64976"},{"alias":"URIM","entrezGeneId":"64976"},{"alias":"HSPC262","entrezGeneId":"64978"},{"alias":"L38MT","entrezGeneId":"64978"},{"alias":"MRP-L3","entrezGeneId":"64978"},{"alias":"MRP-L38","entrezGeneId":"64978"},{"alias":"RPML3","entrezGeneId":"64978"},{"alias":"BRIP1","entrezGeneId":"64979"},{"alias":"L36mt","entrezGeneId":"64979"},{"alias":"MRP-L36","entrezGeneId":"64979"},{"alias":"PRPL36","entrezGeneId":"64979"},{"alias":"RPMJ","entrezGeneId":"64979"},{"alias":"L34mt","entrezGeneId":"64981"},{"alias":"bMRP-59b","entrezGeneId":"64983"},{"alias":"HSPC283","entrezGeneId":"64983"},{"alias":"L32mt","entrezGeneId":"64983"},{"alias":"MRP-L32","entrezGeneId":"64983"},{"alias":"CGI-113","entrezGeneId":"65003"},{"alias":"L11MT","entrezGeneId":"65003"},{"alias":"MRP-L11","entrezGeneId":"65003"},{"alias":"L9mt","entrezGeneId":"65005"},{"alias":"BM022","entrezGeneId":"65008"},{"alias":"L1MT","entrezGeneId":"65008"},{"alias":"MRP-L1","entrezGeneId":"65008"},{"alias":"BDM1","entrezGeneId":"65009"},{"alias":"SMAP-8","entrezGeneId":"65009"},{"alias":"SMAP8","entrezGeneId":"65009"},{"alias":"BRPK","entrezGeneId":"65018"},{"alias":"PARK6","entrezGeneId":"65018"},{"alias":"C2orf23","entrezGeneId":"65055"},{"alias":"HMN5B","entrezGeneId":"65055"},{"alias":"SPG31","entrezGeneId":"65055"},{"alias":"Yip2a","entrezGeneId":"65055"},{"alias":"GPBP","entrezGeneId":"65056"},{"alias":"SSH6","entrezGeneId":"65056"},{"alias":"VASCULIN","entrezGeneId":"65056"},{"alias":"PIP1","entrezGeneId":"65057"},{"alias":"PTOP","entrezGeneId":"65057"},{"alias":"TINT1","entrezGeneId":"65057"},{"alias":"TPP1","entrezGeneId":"65057"},{"alias":"ALS2CR18","entrezGeneId":"65059"},{"alias":"ALS2CR9","entrezGeneId":"65059"},{"alias":"LPD","entrezGeneId":"65059"},{"alias":"PREL-2","entrezGeneId":"65059"},{"alias":"PREL2","entrezGeneId":"65059"},{"alias":"RalGDS/AF-6","entrezGeneId":"65059"},{"alias":"RMO1","entrezGeneId":"65059"},{"alias":"ALS2CR7","entrezGeneId":"65061"},{"alias":"PFTAIRE2","entrezGeneId":"65061"},{"alias":"PFTK2","entrezGeneId":"65061"},{"alias":"ALS2CR4","entrezGeneId":"65062"},{"alias":"JBTS14","entrezGeneId":"65062"},{"alias":"A530083I02Rik","entrezGeneId":"65065"},{"alias":"ALS2CR16","entrezGeneId":"65065"},{"alias":"ALS2CR17","entrezGeneId":"65065"},{"alias":"ALS2CR10","entrezGeneId":"65072"},{"alias":"SYNX","entrezGeneId":"65076"},{"alias":"NGR","entrezGeneId":"65078"},{"alias":"NOGOR","entrezGeneId":"65078"},{"alias":"COXPD16","entrezGeneId":"65080"},{"alias":"L44MT","entrezGeneId":"65080"},{"alias":"MRP-L44","entrezGeneId":"65080"},{"alias":"MPSPS","entrezGeneId":"65082"},{"alias":"bA311H10.1","entrezGeneId":"65083"},{"alias":"NRAP","entrezGeneId":"65083"},{"alias":"UTP22","entrezGeneId":"65083"},{"alias":"PMP52","entrezGeneId":"65084"},{"alias":"F52","entrezGeneId":"65108"},{"alias":"MACMARCKS","entrezGeneId":"65108"},{"alias":"MLP","entrezGeneId":"65108"},{"alias":"MLP1","entrezGeneId":"65108"},{"alias":"MRP","entrezGeneId":"65108"},{"alias":"HUPF3B","entrezGeneId":"65109"},{"alias":"MRX62","entrezGeneId":"65109"},{"alias":"MRXS14","entrezGeneId":"65109"},{"alias":"RENT3B","entrezGeneId":"65109"},{"alias":"UPF3BP1","entrezGeneId":"65109"},{"alias":"UPF3BP2","entrezGeneId":"65109"},{"alias":"UPF3BP3","entrezGeneId":"65109"},{"alias":"Upf3p-X","entrezGeneId":"65109"},{"alias":"UPF3X","entrezGeneId":"65109"},{"alias":"HUPF3A","entrezGeneId":"65110"},{"alias":"RENT3A","entrezGeneId":"65110"},{"alias":"UPF3","entrezGeneId":"65110"},{"alias":"DJ845O24.3","entrezGeneId":"65122"},{"alias":"C1orf193","entrezGeneId":"65123"},{"alias":"C1orf60","entrezGeneId":"65123"},{"alias":"INT3","entrezGeneId":"65123"},{"alias":"SOSS-A","entrezGeneId":"65123"},{"alias":"SOSSA","entrezGeneId":"65123"},{"alias":"ANKRD57","entrezGeneId":"65124"},{"alias":"C2orf26","entrezGeneId":"65124"},{"alias":"HSAN2","entrezGeneId":"65125"},{"alias":"HSN2","entrezGeneId":"65125"},{"alias":"KDP","entrezGeneId":"65125"},{"alias":"p65","entrezGeneId":"65125"},{"alias":"PPP1R167","entrezGeneId":"65125"},{"alias":"PRKWNK1","entrezGeneId":"65125"},{"alias":"PSK","entrezGeneId":"65125"},{"alias":"FRTS","entrezGeneId":"65211"},{"alias":"RFS","entrezGeneId":"65211"},{"alias":"CDHR15","entrezGeneId":"65217"},{"alias":"DFNB23","entrezGeneId":"65217"},{"alias":"USH1F","entrezGeneId":"65217"},{"alias":"dJ283E3.1","entrezGeneId":"65220"},{"alias":"ZKSCAN23B","entrezGeneId":"65243"},{"alias":"ZNF643","entrezGeneId":"65243"},{"alias":"ZSCAN54B","entrezGeneId":"65243"},{"alias":"Nbla00526","entrezGeneId":"65244"},{"alias":"P59SCR","entrezGeneId":"65244"},{"alias":"SCR59","entrezGeneId":"65244"},{"alias":"SPATA10","entrezGeneId":"65244"},{"alias":"C5orf42","entrezGeneId":"65250"},{"alias":"Hug","entrezGeneId":"65250"},{"alias":"JBTS17","entrezGeneId":"65250"},{"alias":"OFD6","entrezGeneId":"65250"},{"alias":"PGAP5","entrezGeneId":"65258"},{"alias":"C1orf163","entrezGeneId":"65260"},{"alias":"RESA1","entrezGeneId":"65260"},{"alias":"SELRC1","entrezGeneId":"65260"},{"alias":"PYCRL","entrezGeneId":"65263"},{"alias":"HOYS7","entrezGeneId":"65264"},{"alias":"USE1","entrezGeneId":"65264"},{"alias":"PHA2B","entrezGeneId":"65266"},{"alias":"PRKWNK4","entrezGeneId":"65266"},{"alias":"PRKWNK3","entrezGeneId":"65267"},{"alias":"NY-CO-43","entrezGeneId":"65268"},{"alias":"P/OKcl.13","entrezGeneId":"65268"},{"alias":"PRKWNK2","entrezGeneId":"65268"},{"alias":"SDCCAG43","entrezGeneId":"65268"},{"alias":"dJ313I6.4","entrezGeneId":"65944"},{"alias":"hs6M1-29P","entrezGeneId":"65944"},{"alias":"OR2B8","entrezGeneId":"65944"},{"alias":"OR6-10","entrezGeneId":"65944"},{"alias":"FAPP1","entrezGeneId":"65977"},{"alias":"PPP1R124","entrezGeneId":"65979"},{"alias":"LAVS3040","entrezGeneId":"65980"},{"alias":"PRO9856","entrezGeneId":"65980"},{"alias":"C1QDC1","entrezGeneId":"65981"},{"alias":"EEG-1","entrezGeneId":"65981"},{"alias":"EEG1","entrezGeneId":"65981"},{"alias":"RNG140","entrezGeneId":"65981"},{"alias":"ZNF447","entrezGeneId":"65982"},{"alias":"GRAMD3","entrezGeneId":"65983"},{"alias":"NS3TP2","entrezGeneId":"65983"},{"alias":"ACSF1","entrezGeneId":"65985"},{"alias":"SUR-5","entrezGeneId":"65985"},{"alias":"RINZF","entrezGeneId":"65986"},{"alias":"DLK-2","entrezGeneId":"65989"},{"alias":"EGFL9","entrezGeneId":"65989"},{"alias":"C16orf24","entrezGeneId":"65990"},{"alias":"DC44","entrezGeneId":"65991"},{"alias":"HCBP6","entrezGeneId":"65991"},{"alias":"HCC3","entrezGeneId":"65991"},{"alias":"PD03104","entrezGeneId":"65991"},{"alias":"C20orf116","entrezGeneId":"65992"},{"alias":"dJ1187M17.3","entrezGeneId":"65992"},{"alias":"SEMDSH","entrezGeneId":"65992"},{"alias":"UFBP1","entrezGeneId":"65992"},{"alias":"COXPD32","entrezGeneId":"65993"},{"alias":"MRP-S12","entrezGeneId":"65993"},{"alias":"MRP-S34","entrezGeneId":"65993"},{"alias":"MRPS12","entrezGeneId":"65993"},{"alias":"HSPC295","entrezGeneId":"65999"},{"alias":"CT124","entrezGeneId":"66000"},{"alias":"RTLN","entrezGeneId":"66000"},{"alias":"CYPIVF12","entrezGeneId":"66002"},{"alias":"F22329_1","entrezGeneId":"66002"},{"alias":"GL008","entrezGeneId":"66005"},{"alias":"SI-CLP","entrezGeneId":"66005"},{"alias":"SICLP","entrezGeneId":"66005"},{"alias":"ALS2CR3","entrezGeneId":"66008"},{"alias":"CALS-C","entrezGeneId":"66008"},{"alias":"GRIF-1","entrezGeneId":"66008"},{"alias":"GRIF1","entrezGeneId":"66008"},{"alias":"MILT2","entrezGeneId":"66008"},{"alias":"OIP98","entrezGeneId":"66008"},{"alias":"GLUT10","entrezGeneId":"66035"},{"alias":"GLUT11","entrezGeneId":"66035"},{"alias":"C8orf9","entrezGeneId":"66036"},{"alias":"LIP-STYX","entrezGeneId":"66036"},{"alias":"MTMR8","entrezGeneId":"66036"},{"alias":"BOULE","entrezGeneId":"66037"},{"alias":"DSP-4","entrezGeneId":"78986"},{"alias":"DUSP24","entrezGeneId":"78986"},{"alias":"LDP-4","entrezGeneId":"78986"},{"alias":"MKP-8","entrezGeneId":"78986"},{"alias":"MKP8","entrezGeneId":"78986"},{"alias":"NATA1","entrezGeneId":"78986"},{"alias":"NEAP","entrezGeneId":"78986"},{"alias":"SKRP3","entrezGeneId":"78986"},{"alias":"AVSD2","entrezGeneId":"78987"},{"alias":"CIRRIN","entrezGeneId":"78987"},{"alias":"bMRP63","entrezGeneId":"78988"},{"alias":"MRP63","entrezGeneId":"78988"},{"alias":"3MC2","entrezGeneId":"78989"},{"alias":"CL-K1-I","entrezGeneId":"78989"},{"alias":"CL-K1-II","entrezGeneId":"78989"},{"alias":"CL-K1-IIa","entrezGeneId":"78989"},{"alias":"CL-K1-IIb","entrezGeneId":"78989"},{"alias":"CLK1","entrezGeneId":"78989"},{"alias":"C14orf137","entrezGeneId":"78990"},{"alias":"OTB2","entrezGeneId":"78990"},{"alias":"OTU2","entrezGeneId":"78990"},{"alias":"FinGER2","entrezGeneId":"78992"},{"alias":"C7orf49","entrezGeneId":"78996"},{"alias":"MRI","entrezGeneId":"78996"},{"alias":"MRI-2","entrezGeneId":"78996"},{"alias":"dJ881L22.1","entrezGeneId":"78997"},{"alias":"dJ995J12.1.1","entrezGeneId":"78997"},{"alias":"C8orf51","entrezGeneId":"78998"},{"alias":"FIGLER6","entrezGeneId":"78999"},{"alias":"SALM3","entrezGeneId":"78999"},{"alias":"SALM3.","entrezGeneId":"78999"},{"alias":"AIBP","entrezGeneId":"79000"},{"alias":"C1orf135","entrezGeneId":"79000"},{"alias":"EDTP308","entrezGeneId":"79001"},{"alias":"MST134","entrezGeneId":"79001"},{"alias":"MST576","entrezGeneId":"79001"},{"alias":"VKCFD2","entrezGeneId":"79001"},{"alias":"VKOR","entrezGeneId":"79001"},{"alias":"C19orf43","entrezGeneId":"79002"},{"alias":"fSAP18","entrezGeneId":"79002"},{"alias":"TERCIR","entrezGeneId":"79002"},{"alias":"2510025F08Rik","entrezGeneId":"79003"},{"alias":"hMis12","entrezGeneId":"79003"},{"alias":"KNTC2AP","entrezGeneId":"79003"},{"alias":"MTW1","entrezGeneId":"79003"},{"alias":"bA18I14.5","entrezGeneId":"79004"},{"alias":"C10orf66","entrezGeneId":"79004"},{"alias":"C16orf23","entrezGeneId":"79006"},{"alias":"c380A1.2","entrezGeneId":"79006"},{"alias":"GIYD2","entrezGeneId":"79008"},{"alias":"GU2","entrezGeneId":"79009"},{"alias":"GUB","entrezGeneId":"79009"},{"alias":"mcdrh","entrezGeneId":"79009"},{"alias":"RH-II/GuB","entrezGeneId":"79009"},{"alias":"1G5","entrezGeneId":"79012"},{"alias":"VACAMKL","entrezGeneId":"79012"},{"alias":"C19orf58","entrezGeneId":"79016"},{"alias":"PCIA1","entrezGeneId":"79016"},{"alias":"C7orf24","entrezGeneId":"79017"},{"alias":"CRF21","entrezGeneId":"79017"},{"alias":"GCTG","entrezGeneId":"79017"},{"alias":"GGC","entrezGeneId":"79017"},{"alias":"C17orf39","entrezGeneId":"79018"},{"alias":"VID2","entrezGeneId":"79018"},{"alias":"VID24","entrezGeneId":"79018"},{"alias":"C22orf18","entrezGeneId":"79019"},{"alias":"CENP-M","entrezGeneId":"79019"},{"alias":"PANE1","entrezGeneId":"79019"},{"alias":"p37","entrezGeneId":"79023"},{"alias":"C13orf44","entrezGeneId":"79024"},{"alias":"C20orf195","entrezGeneId":"79025"},{"alias":"AHNAKRS","entrezGeneId":"79026"},{"alias":"PM227","entrezGeneId":"79026"},{"alias":"VIK","entrezGeneId":"79027"},{"alias":"VIK-1","entrezGeneId":"79027"},{"alias":"HTPHLP","entrezGeneId":"79031"},{"alias":"PHLP2A","entrezGeneId":"79031"},{"alias":"PHLP3","entrezGeneId":"79031"},{"alias":"VIAF","entrezGeneId":"79031"},{"alias":"VIAF1","entrezGeneId":"79031"},{"alias":"PINT1","entrezGeneId":"79033"},{"alias":"PRNPIP","entrezGeneId":"79033"},{"alias":"hSSB1","entrezGeneId":"79035"},{"alias":"OBFC2B","entrezGeneId":"79035"},{"alias":"SOSS-B1","entrezGeneId":"79035"},{"alias":"SSB1","entrezGeneId":"79035"},{"alias":"BORCS4","entrezGeneId":"79036"},{"alias":"C10orf50","entrezGeneId":"79036"},{"alias":"C19orf50","entrezGeneId":"79036"},{"alias":"KXDL","entrezGeneId":"79036"},{"alias":"MST096","entrezGeneId":"79036"},{"alias":"MSTP096","entrezGeneId":"79036"},{"alias":"C7orf15","entrezGeneId":"79037"},{"alias":"CD112R","entrezGeneId":"79037"},{"alias":"HCVP7TP1","entrezGeneId":"79038"},{"alias":"ZF21","entrezGeneId":"79038"},{"alias":"DP97","entrezGeneId":"79039"},{"alias":"TRIC-A","entrezGeneId":"79041"},{"alias":"TRICA","entrezGeneId":"79041"},{"alias":"LENG5","entrezGeneId":"79042"},{"alias":"PCH2C","entrezGeneId":"79042"},{"alias":"SEN34","entrezGeneId":"79042"},{"alias":"SEN34L","entrezGeneId":"79042"},{"alias":"SBP2","entrezGeneId":"79048"},{"alias":"NET49","entrezGeneId":"79050"},{"alias":"NOC4","entrezGeneId":"79050"},{"alias":"UTP19","entrezGeneId":"79050"},{"alias":"PRN1","entrezGeneId":"79052"},{"alias":"CDG1H","entrezGeneId":"79053"},{"alias":"PCLD3","entrezGeneId":"79053"},{"alias":"LTrpC-6","entrezGeneId":"79054"},{"alias":"LTRPC6","entrezGeneId":"79054"},{"alias":"trp-p8","entrezGeneId":"79054"},{"alias":"TRPP8","entrezGeneId":"79054"},{"alias":"PSMA2L","entrezGeneId":"79055"},{"alias":"PRGP4","entrezGeneId":"79056"},{"alias":"TMG4","entrezGeneId":"79056"},{"alias":"PRGP3","entrezGeneId":"79057"},{"alias":"TMG3","entrezGeneId":"79057"},{"alias":"ASPCR1","entrezGeneId":"79058"},{"alias":"ASPL","entrezGeneId":"79058"},{"alias":"ASPS","entrezGeneId":"79058"},{"alias":"RCC17","entrezGeneId":"79058"},{"alias":"TUG","entrezGeneId":"79058"},{"alias":"UBXD9","entrezGeneId":"79058"},{"alias":"UBXN9","entrezGeneId":"79058"},{"alias":"APG9L1","entrezGeneId":"79065"},{"alias":"mATG9","entrezGeneId":"79065"},{"alias":"MGD3208","entrezGeneId":"79065"},{"alias":"METT10D","entrezGeneId":"79066"},{"alias":"ALKBH9","entrezGeneId":"79068"},{"alias":"BMIQ14","entrezGeneId":"79068"},{"alias":"GDFD","entrezGeneId":"79068"},{"alias":"EP58","entrezGeneId":"79070"},{"alias":"ERp58","entrezGeneId":"79070"},{"alias":"KDEL1","entrezGeneId":"79070"},{"alias":"FACE","entrezGeneId":"79071"},{"alias":"FAE","entrezGeneId":"79071"},{"alias":"LCE","entrezGeneId":"79071"},{"alias":"asw","entrezGeneId":"79074"},{"alias":"DCC1","entrezGeneId":"79075"},{"alias":"CDA03","entrezGeneId":"79077"},{"alias":"RS21C6","entrezGeneId":"79077"},{"alias":"XTP3TPA","entrezGeneId":"79077"},{"alias":"C11orf48","entrezGeneId":"79081"},{"alias":"SLAC2-A","entrezGeneId":"79083"},{"alias":"HKMT1069","entrezGeneId":"79084"},{"alias":"MEP-50","entrezGeneId":"79084"},{"alias":"MEP50","entrezGeneId":"79084"},{"alias":"Nbla10071","entrezGeneId":"79084"},{"alias":"p44","entrezGeneId":"79084"},{"alias":"p44/Mep50","entrezGeneId":"79084"},{"alias":"APC2","entrezGeneId":"79085"},{"alias":"MCSC2","entrezGeneId":"79085"},{"alias":"SCaMC-3","entrezGeneId":"79085"},{"alias":"C19orf42","entrezGeneId":"79086"},{"alias":"CDG1G","entrezGeneId":"79087"},{"alias":"ECM39","entrezGeneId":"79087"},{"alias":"hALG12","entrezGeneId":"79087"},{"alias":"PP14673","entrezGeneId":"79087"},{"alias":"K-RBP","entrezGeneId":"79088"},{"alias":"FP2653","entrezGeneId":"79089"},{"alias":"TRS33","entrezGeneId":"79090"},{"alias":"C16orf68","entrezGeneId":"79091"},{"alias":"BIMP2","entrezGeneId":"79092"},{"alias":"CARMA2","entrezGeneId":"79092"},{"alias":"PRP","entrezGeneId":"79092"},{"alias":"PSORS2","entrezGeneId":"79092"},{"alias":"PSS1","entrezGeneId":"79092"},{"alias":"EST00098","entrezGeneId":"79095"},{"alias":"RNF101","entrezGeneId":"79097"},{"alias":"SARG","entrezGeneId":"79098"},{"alias":"JOSD3","entrezGeneId":"79101"},{"alias":"RAFI41","entrezGeneId":"79101"},{"alias":"TAF(I)41","entrezGeneId":"79101"},{"alias":"TAFI41","entrezGeneId":"79101"},{"alias":"Bsr","entrezGeneId":"79104"},{"alias":"Irm","entrezGeneId":"79104"},{"alias":"LINC00024","entrezGeneId":"79104"},{"alias":"lnc-MGC","entrezGeneId":"79104"},{"alias":"NCRNA00024","entrezGeneId":"79104"},{"alias":"Rian","entrezGeneId":"79104"},{"alias":"SNHG23","entrezGeneId":"79104"},{"alias":"SNHG24","entrezGeneId":"79104"},{"alias":"JC310","entrezGeneId":"79109"},{"alias":"MIP1","entrezGeneId":"79109"},{"alias":"SIN1","entrezGeneId":"79109"},{"alias":"SIN1b","entrezGeneId":"79109"},{"alias":"SIN1g","entrezGeneId":"79109"},{"alias":"D11LGP2","entrezGeneId":"79132"},{"alias":"D11lgp2e","entrezGeneId":"79132"},{"alias":"LGP2","entrezGeneId":"79132"},{"alias":"RLR-3","entrezGeneId":"79132"},{"alias":"bA526K24.2","entrezGeneId":"79133"},{"alias":"C20orf7","entrezGeneId":"79133"},{"alias":"dJ842G6.1","entrezGeneId":"79133"},{"alias":"FAM11B","entrezGeneId":"79134"},{"alias":"FAM121B","entrezGeneId":"79135"},{"alias":"Mic23","entrezGeneId":"79135"},{"alias":"MIC26","entrezGeneId":"79135"},{"alias":"My025","entrezGeneId":"79135"},{"alias":"C6orf22","entrezGeneId":"79136"},{"alias":"G6e","entrezGeneId":"79136"},{"alias":"C2orf17","entrezGeneId":"79137"},{"alias":"FAM134A","entrezGeneId":"79137"},{"alias":"MAG-2","entrezGeneId":"79137"},{"alias":"DER-1","entrezGeneId":"79139"},{"alias":"DER1","entrezGeneId":"79139"},{"alias":"derlin-1","entrezGeneId":"79139"},{"alias":"hJUNE-1b","entrezGeneId":"79142"},{"alias":"BB1","entrezGeneId":"79143"},{"alias":"hMBOA-7","entrezGeneId":"79143"},{"alias":"LENG4","entrezGeneId":"79143"},{"alias":"LPIAT","entrezGeneId":"79143"},{"alias":"LPLAT","entrezGeneId":"79143"},{"alias":"LRC4","entrezGeneId":"79143"},{"alias":"MBOA7","entrezGeneId":"79143"},{"alias":"MRT57","entrezGeneId":"79143"},{"alias":"OACT7","entrezGeneId":"79143"},{"alias":"C20orf149","entrezGeneId":"79144"},{"alias":"dJ697K14.9","entrezGeneId":"79144"},{"alias":"exdpf","entrezGeneId":"79144"},{"alias":"COX23","entrezGeneId":"79145"},{"alias":"LGMD2I","entrezGeneId":"79147"},{"alias":"MDC1C","entrezGeneId":"79147"},{"alias":"MDDGA5","entrezGeneId":"79147"},{"alias":"MDDGB5","entrezGeneId":"79147"},{"alias":"MDDGC5","entrezGeneId":"79147"},{"alias":"EPILYSIN","entrezGeneId":"79148"},{"alias":"MM28","entrezGeneId":"79148"},{"alias":"MMP-25","entrezGeneId":"79148"},{"alias":"MMP-28","entrezGeneId":"79148"},{"alias":"MMP25","entrezGeneId":"79148"},{"alias":"ZNF495","entrezGeneId":"79149"},{"alias":"ZSCAN5","entrezGeneId":"79149"},{"alias":"FAAH","entrezGeneId":"79152"},{"alias":"FAH1","entrezGeneId":"79152"},{"alias":"FAXDC1","entrezGeneId":"79152"},{"alias":"SCS7","entrezGeneId":"79152"},{"alias":"SPG35","entrezGeneId":"79152"},{"alias":"GDE7","entrezGeneId":"79153"},{"alias":"ARPG836","entrezGeneId":"79154"},{"alias":"SDR24C1","entrezGeneId":"79154"},{"alias":"spDHRS11","entrezGeneId":"79154"},{"alias":"ABIN2","entrezGeneId":"79155"},{"alias":"FLIP1","entrezGeneId":"79155"},{"alias":"KLIP","entrezGeneId":"79155"},{"alias":"APPD","entrezGeneId":"79156"},{"alias":"LAPF","entrezGeneId":"79156"},{"alias":"PHAFIN1","entrezGeneId":"79156"},{"alias":"ZFYVE15","entrezGeneId":"79156"},{"alias":"ET","entrezGeneId":"79157"},{"alias":"GNPTA","entrezGeneId":"79158"},{"alias":"ICD","entrezGeneId":"79158"},{"alias":"dJ37E16.7","entrezGeneId":"79159"},{"alias":"Nop25","entrezGeneId":"79159"},{"alias":"C7orf23","entrezGeneId":"79161"},{"alias":"MM-TRAG","entrezGeneId":"79161"},{"alias":"MMTRAG","entrezGeneId":"79161"},{"alias":"CD85m","entrezGeneId":"79166"},{"alias":"ILT10","entrezGeneId":"79166"},{"alias":"LILRA5","entrezGeneId":"79166"},{"alias":"CD85l","entrezGeneId":"79167"},{"alias":"ILT9","entrezGeneId":"79167"},{"alias":"LILRA6P","entrezGeneId":"79167"},{"alias":"CD85b","entrezGeneId":"79168"},{"alias":"ILT-8","entrezGeneId":"79168"},{"alias":"ILT5","entrezGeneId":"79168"},{"alias":"ILT8","entrezGeneId":"79168"},{"alias":"LILRB3","entrezGeneId":"79168"},{"alias":"LILRB6","entrezGeneId":"79168"},{"alias":"MMTAG2","entrezGeneId":"79169"},{"alias":"ATAD4","entrezGeneId":"79170"},{"alias":"CENP-O","entrezGeneId":"79172"},{"alias":"ICEN-36","entrezGeneId":"79172"},{"alias":"MCM21R","entrezGeneId":"79172"},{"alias":"dJ734P14.5","entrezGeneId":"79175"},{"alias":"Fbl15","entrezGeneId":"79176"},{"alias":"FBXO37","entrezGeneId":"79176"},{"alias":"JET","entrezGeneId":"79176"},{"alias":"PSD","entrezGeneId":"79176"},{"alias":"THTP","entrezGeneId":"79178"},{"alias":"THTPASE","entrezGeneId":"79178"},{"alias":"FHA2","entrezGeneId":"79179"},{"alias":"SWS1","entrezGeneId":"79180"},{"alias":"C20orf121","entrezGeneId":"79183"},{"alias":"BRCC36","entrezGeneId":"79184"},{"alias":"C6.1A","entrezGeneId":"79184"},{"alias":"CXorf53","entrezGeneId":"79184"},{"alias":"GLFND","entrezGeneId":"79187"},{"alias":"MIR1","entrezGeneId":"79187"},{"alias":"ARVC5","entrezGeneId":"79188"},{"alias":"ARVD5","entrezGeneId":"79188"},{"alias":"EDMD7","entrezGeneId":"79188"},{"alias":"LUMA","entrezGeneId":"79188"},{"alias":"IRX-3","entrezGeneId":"79190"},{"alias":"IRX7","entrezGeneId":"79190"},{"alias":"IRXB3","entrezGeneId":"79190"},{"alias":"IRX-1","entrezGeneId":"79191"},{"alias":"IRXB1","entrezGeneId":"79191"},{"alias":"IRX-5","entrezGeneId":"79192"},{"alias":"IRXA1","entrezGeneId":"79192"},{"alias":"fSAP35","entrezGeneId":"79228"},{"alias":"WDR58","entrezGeneId":"79228"},{"alias":"BA393J16.4","entrezGeneId":"79231"},{"alias":"ZNF33AP1","entrezGeneId":"79231"},{"alias":"BA775A3.1","entrezGeneId":"79232"},{"alias":"ZNF37C","entrezGeneId":"79232"},{"alias":"MMEL2","entrezGeneId":"79258"},{"alias":"NEP2","entrezGeneId":"79258"},{"alias":"NEPII","entrezGeneId":"79258"},{"alias":"NL1","entrezGeneId":"79258"},{"alias":"NL2","entrezGeneId":"79258"},{"alias":"SEP","entrezGeneId":"79258"},{"alias":"WDR32","entrezGeneId":"79269"},{"alias":"OR52L2","entrezGeneId":"79274"},{"alias":"OR7E131P","entrezGeneId":"79282"},{"alias":"PJCG1","entrezGeneId":"79283"},{"alias":"OR3-7","entrezGeneId":"79289"},{"alias":"OR5H8P","entrezGeneId":"79289"},{"alias":"OR3-6","entrezGeneId":"79291"},{"alias":"OR3-11","entrezGeneId":"79295"},{"alias":"OR52E1P","entrezGeneId":"79296"},{"alias":"OR3-3","entrezGeneId":"79297"},{"alias":"OR3-5","entrezGeneId":"79299"},{"alias":"OR51P2P","entrezGeneId":"79300"},{"alias":"OR9L2P","entrezGeneId":"79301"},{"alias":"OR4K10P","entrezGeneId":"79306"},{"alias":"OR4P2P","entrezGeneId":"79308"},{"alias":"OR3-10","entrezGeneId":"79310"},{"alias":"hs6M1-8P","entrezGeneId":"79313"},{"alias":"OR2AD1","entrezGeneId":"79313"},{"alias":"OR14-16","entrezGeneId":"79317"},{"alias":"OR14-12","entrezGeneId":"79322"},{"alias":"OR14-6","entrezGeneId":"79322"},{"alias":"OR11-29","entrezGeneId":"79324"},{"alias":"OR51G3P","entrezGeneId":"79324"},{"alias":"OR2AF2P","entrezGeneId":"79331"},{"alias":"C14orf15","entrezGeneId":"79334"},{"alias":"OR11H13","entrezGeneId":"79334"},{"alias":"OR11H2P","entrezGeneId":"79334"},{"alias":"OR11H8P","entrezGeneId":"79334"},{"alias":"HOR5'Beta1","entrezGeneId":"79339"},{"alias":"HOR5'Beta3","entrezGeneId":"79345"},{"alias":"OR51B1P","entrezGeneId":"79345"},{"alias":"OR4C5P","entrezGeneId":"79346"},{"alias":"OR4C5Q","entrezGeneId":"79346"},{"alias":"C1orf89","entrezGeneId":"79363"},{"alias":"RSG1","entrezGeneId":"79363"},{"alias":"ZXDL","entrezGeneId":"79364"},{"alias":"BHLHB3","entrezGeneId":"79365"},{"alias":"DEC2","entrezGeneId":"79365"},{"alias":"hDEC2","entrezGeneId":"79365"},{"alias":"SHARP1","entrezGeneId":"79365"},{"alias":"NBP-45","entrezGeneId":"79366"},{"alias":"NSBP1","entrezGeneId":"79366"},{"alias":"CD307b","entrezGeneId":"79368"},{"alias":"FCRH2","entrezGeneId":"79368"},{"alias":"IFGP4","entrezGeneId":"79368"},{"alias":"IRTA4","entrezGeneId":"79368"},{"alias":"SPAP1","entrezGeneId":"79368"},{"alias":"SPAP1A","entrezGeneId":"79368"},{"alias":"SPAP1B","entrezGeneId":"79368"},{"alias":"SPAP1C","entrezGeneId":"79368"},{"alias":"B3GN-T4","entrezGeneId":"79369"},{"alias":"beta3Gn-T4","entrezGeneId":"79369"},{"alias":"BCLG","entrezGeneId":"79370"},{"alias":"KRM2","entrezGeneId":"79412"},{"alias":"FIGLER1","entrezGeneId":"79414"},{"alias":"SALM4","entrezGeneId":"79414"},{"alias":"C17orf62","entrezGeneId":"79415"},{"alias":"Eros","entrezGeneId":"79415"},{"alias":"CYP3A5P2","entrezGeneId":"79424"},{"alias":"C4orf15","entrezGeneId":"79441"},{"alias":"dgt3","entrezGeneId":"79441"},{"alias":"IT1","entrezGeneId":"79441"},{"alias":"CATC2","entrezGeneId":"79443"},{"alias":"CTRCT18","entrezGeneId":"79443"},{"alias":"RUFY3","entrezGeneId":"79443"},{"alias":"ZFYVE7","entrezGeneId":"79443"},{"alias":"KIAP","entrezGeneId":"79444"},{"alias":"LIVIN","entrezGeneId":"79444"},{"alias":"ML-IAP","entrezGeneId":"79444"},{"alias":"MLIAP","entrezGeneId":"79444"},{"alias":"RNF50","entrezGeneId":"79444"},{"alias":"C14orf67","entrezGeneId":"79446"},{"alias":"C16orf53","entrezGeneId":"79447"},{"alias":"GAS","entrezGeneId":"79447"},{"alias":"PA1","entrezGeneId":"79447"},{"alias":"N2DL-3","entrezGeneId":"79465"},{"alias":"NKG2DL3","entrezGeneId":"79465"},{"alias":"RAET1N","entrezGeneId":"79465"},{"alias":"BCMSUNL","entrezGeneId":"79469"},{"alias":"HOR5'Beta8","entrezGeneId":"79470"},{"alias":"OR51J1P","entrezGeneId":"79470"},{"alias":"OR51J2","entrezGeneId":"79470"},{"alias":"OR11-61","entrezGeneId":"79473"},{"alias":"OR5AL1P","entrezGeneId":"79482"},{"alias":"OR10G6P","entrezGeneId":"79490"},{"alias":"OR10G6Q","entrezGeneId":"79490"},{"alias":"OR1-10","entrezGeneId":"79513"},{"alias":"OR11-193","entrezGeneId":"79523"},{"alias":"OR52J4P","entrezGeneId":"79529"},{"alias":"OR7E123P","entrezGeneId":"79537"},{"alias":"OST705","entrezGeneId":"79537"},{"alias":"OR13I2P","entrezGeneId":"79538"},{"alias":"OR2A10","entrezGeneId":"79541"},{"alias":"OR14-19","entrezGeneId":"79544"},{"alias":"OR6J1P","entrezGeneId":"79549"},{"alias":"OR6J2","entrezGeneId":"79549"},{"alias":"OR4C17","entrezGeneId":"79550"},{"alias":"OR4C17P","entrezGeneId":"79550"},{"alias":"OR4C47P","entrezGeneId":"79550"},{"alias":"FAM65A","entrezGeneId":"79567"},{"alias":"C2orf47","entrezGeneId":"79568"},{"alias":"FAM77C","entrezGeneId":"79570"},{"alias":"GCC1P","entrezGeneId":"79571"},{"alias":"GCC88","entrezGeneId":"79571"},{"alias":"AFURS1","entrezGeneId":"79572"},{"alias":"EPS8R3","entrezGeneId":"79574"},{"alias":"C1orf28","entrezGeneId":"79577"},{"alias":"FIHP","entrezGeneId":"79577"},{"alias":"HPTJT","entrezGeneId":"79577"},{"alias":"HRPT1","entrezGeneId":"79577"},{"alias":"HRPT2","entrezGeneId":"79577"},{"alias":"HYX","entrezGeneId":"79577"},{"alias":"BVVLS2","entrezGeneId":"79581"},{"alias":"D15Ertd747e","entrezGeneId":"79581"},{"alias":"GPCR41","entrezGeneId":"79581"},{"alias":"GPR172A","entrezGeneId":"79581"},{"alias":"hRFT3","entrezGeneId":"79581"},{"alias":"PAR1","entrezGeneId":"79581"},{"alias":"RFT3","entrezGeneId":"79581"},{"alias":"RFVT2","entrezGeneId":"79581"},{"alias":"PF20","entrezGeneId":"79582"},{"alias":"WDR29","entrezGeneId":"79582"},{"alias":"ALYE870","entrezGeneId":"79583"},{"alias":"JBTS20","entrezGeneId":"79583"},{"alias":"MKS11","entrezGeneId":"79583"},{"alias":"PRO1886","entrezGeneId":"79583"},{"alias":"0610011B16Rik","entrezGeneId":"79585"},{"alias":"CRN7","entrezGeneId":"79585"},{"alias":"POD1","entrezGeneId":"79585"},{"alias":"CHSY2","entrezGeneId":"79586"},{"alias":"CSS2","entrezGeneId":"79586"},{"alias":"COXPD27","entrezGeneId":"79587"},{"alias":"cysRS","entrezGeneId":"79587"},{"alias":"GRAIL","entrezGeneId":"79589"},{"alias":"L24mt","entrezGeneId":"79590"},{"alias":"MRP-L18","entrezGeneId":"79590"},{"alias":"MRP-L24","entrezGeneId":"79590"},{"alias":"C10orf76","entrezGeneId":"79591"},{"alias":"C1orf166","entrezGeneId":"79594"},{"alias":"GIDE","entrezGeneId":"79594"},{"alias":"MAPL","entrezGeneId":"79594"},{"alias":"MULAN","entrezGeneId":"79594"},{"alias":"RNF218","entrezGeneId":"79594"},{"alias":"C13orf7","entrezGeneId":"79596"},{"alias":"2810403B08Rik","entrezGeneId":"79598"},{"alias":"LRRIQ2","entrezGeneId":"79598"},{"alias":"JBTS13","entrezGeneId":"79600"},{"alias":"TECT1","entrezGeneId":"79600"},{"alias":"ACDCR2","entrezGeneId":"79602"},{"alias":"PAQR2","entrezGeneId":"79602"},{"alias":"LASS4","entrezGeneId":"79603"},{"alias":"Trh1","entrezGeneId":"79603"},{"alias":"AYST720","entrezGeneId":"79608"},{"alias":"PRO1385","entrezGeneId":"79608"},{"alias":"C14orf138","entrezGeneId":"79609"},{"alias":"METTL21D","entrezGeneId":"79609"},{"alias":"VCP-KMT","entrezGeneId":"79609"},{"alias":"NARG1L","entrezGeneId":"79612"},{"alias":"TMCO7","entrezGeneId":"79613"},{"alias":"HNF1LA","entrezGeneId":"79618"},{"alias":"HOT1","entrezGeneId":"79618"},{"alias":"PBHNF","entrezGeneId":"79618"},{"alias":"AGS2","entrezGeneId":"79621"},{"alias":"DLEU8","entrezGeneId":"79621"},{"alias":"C16orf33","entrezGeneId":"79622"},{"alias":"GalNac-T10","entrezGeneId":"79623"},{"alias":"GalNac-T14","entrezGeneId":"79623"},{"alias":"GALNT15","entrezGeneId":"79623"},{"alias":"C6orf211","entrezGeneId":"79624"},{"alias":"C4orf31","entrezGeneId":"79625"},{"alias":"NORD","entrezGeneId":"79625"},{"alias":"TIPE2","entrezGeneId":"79626"},{"alias":"dJ331H24.1","entrezGeneId":"79627"},{"alias":"CMT4C","entrezGeneId":"79628"},{"alias":"MNMN","entrezGeneId":"79628"},{"alias":"FWP009","entrezGeneId":"79629"},{"alias":"S863-9","entrezGeneId":"79629"},{"alias":"EFTUD1","entrezGeneId":"79631"},{"alias":"FAM42A","entrezGeneId":"79631"},{"alias":"HsT19294","entrezGeneId":"79631"},{"alias":"RIA1","entrezGeneId":"79631"},{"alias":"C6orf60","entrezGeneId":"79632"},{"alias":"CDHF14","entrezGeneId":"79633"},{"alias":"CDHR11","entrezGeneId":"79633"},{"alias":"FAT-J","entrezGeneId":"79633"},{"alias":"FATJ","entrezGeneId":"79633"},{"alias":"HKLLS2","entrezGeneId":"79633"},{"alias":"NBLA00548","entrezGeneId":"79633"},{"alias":"VMLDS2","entrezGeneId":"79633"},{"alias":"SES3","entrezGeneId":"79634"},{"alias":"NET4","entrezGeneId":"79639"},{"alias":"KTZS","entrezGeneId":"79641"},{"alias":"ASJ","entrezGeneId":"79642"},{"alias":"VPS20","entrezGeneId":"79643"},{"alias":"CDG1P","entrezGeneId":"79644"},{"alias":"CDG1Q","entrezGeneId":"79644"},{"alias":"KRIZI","entrezGeneId":"79644"},{"alias":"SRD5A2L","entrezGeneId":"79644"},{"alias":"SRD5A2L1","entrezGeneId":"79644"},{"alias":"C1orf108","entrezGeneId":"79647"},{"alias":"STRF2","entrezGeneId":"79647"},{"alias":"BRIT1","entrezGeneId":"79648"},{"alias":"MCT","entrezGeneId":"79648"},{"alias":"MDP3","entrezGeneId":"79649"},{"alias":"C16orf57","entrezGeneId":"79650"},{"alias":"hUsb1","entrezGeneId":"79650"},{"alias":"HVSL1","entrezGeneId":"79650"},{"alias":"Mpn1","entrezGeneId":"79650"},{"alias":"PN","entrezGeneId":"79650"},{"alias":"iRhom2","entrezGeneId":"79651"},{"alias":"RHBDL5","entrezGeneId":"79651"},{"alias":"RHBDL6","entrezGeneId":"79651"},{"alias":"TEC","entrezGeneId":"79651"},{"alias":"TOC","entrezGeneId":"79651"},{"alias":"TOCG","entrezGeneId":"79651"},{"alias":"C16orf30","entrezGeneId":"79652"},{"alias":"CLP24","entrezGeneId":"79652"},{"alias":"C1orf165","entrezGeneId":"79656"},{"alias":"hSpagh","entrezGeneId":"79657"},{"alias":"GRAF2","entrezGeneId":"79658"},{"alias":"PS-GAP","entrezGeneId":"79658"},{"alias":"PSGAP","entrezGeneId":"79658"},{"alias":"ATD3","entrezGeneId":"79659"},{"alias":"DHC1b","entrezGeneId":"79659"},{"alias":"DHC2","entrezGeneId":"79659"},{"alias":"DNCH2","entrezGeneId":"79659"},{"alias":"DYH1B","entrezGeneId":"79659"},{"alias":"hdhc11","entrezGeneId":"79659"},{"alias":"SRPS2B","entrezGeneId":"79659"},{"alias":"SRTD3","entrezGeneId":"79659"},{"alias":"GL","entrezGeneId":"79660"},{"alias":"PPP1R4","entrezGeneId":"79660"},{"alias":"PTG","entrezGeneId":"79660"},{"alias":"FPG1","entrezGeneId":"79661"},{"alias":"hFPG1","entrezGeneId":"79661"},{"alias":"NEI1","entrezGeneId":"79661"},{"alias":"PASS1","entrezGeneId":"79663"},{"alias":"BRCC1","entrezGeneId":"79664"},{"alias":"NARG2","entrezGeneId":"79664"},{"alias":"ARG147","entrezGeneId":"79665"},{"alias":"DDX40","entrezGeneId":"79665"},{"alias":"PAD","entrezGeneId":"79665"},{"alias":"EAPF","entrezGeneId":"79666"},{"alias":"PHAFIN2","entrezGeneId":"79666"},{"alias":"ZFYVE18","entrezGeneId":"79666"},{"alias":"ARTD16","entrezGeneId":"79668"},{"alias":"pART16","entrezGeneId":"79668"},{"alias":"TTMP","entrezGeneId":"79669"},{"alias":"PAPD6","entrezGeneId":"79670"},{"alias":"TUT7","entrezGeneId":"79670"},{"alias":"CLR11.3","entrezGeneId":"79671"},{"alias":"DLNB26","entrezGeneId":"79671"},{"alias":"NOD26","entrezGeneId":"79671"},{"alias":"NOD5","entrezGeneId":"79671"},{"alias":"NOD9","entrezGeneId":"79671"},{"alias":"FN3KL","entrezGeneId":"79672"},{"alias":"MELT","entrezGeneId":"79674"},{"alias":"VEPH","entrezGeneId":"79674"},{"alias":"hSMC6","entrezGeneId":"79677"},{"alias":"SMC-6","entrezGeneId":"79677"},{"alias":"SMC6L1","entrezGeneId":"79677"},{"alias":"B7-H4","entrezGeneId":"79679"},{"alias":"B7h.5","entrezGeneId":"79679"},{"alias":"B7H4","entrezGeneId":"79679"},{"alias":"B7S1","entrezGeneId":"79679"},{"alias":"B7X","entrezGeneId":"79679"},{"alias":"PRO1291","entrezGeneId":"79679"},{"alias":"VCTN1","entrezGeneId":"79679"},{"alias":"BOP","entrezGeneId":"79680"},{"alias":"C22orf29","entrezGeneId":"79680"},{"alias":"CENP50","entrezGeneId":"79682"},{"alias":"CENPU50","entrezGeneId":"79682"},{"alias":"KLIP1","entrezGeneId":"79682"},{"alias":"MLF1IP","entrezGeneId":"79682"},{"alias":"PBIP1","entrezGeneId":"79682"},{"alias":"NEW1CP","entrezGeneId":"79683"},{"alias":"C11orf61","entrezGeneId":"79684"},{"alias":"NS4ATP2","entrezGeneId":"79685"},{"alias":"SchLAH","entrezGeneId":"79689"},{"alias":"STAMP2","entrezGeneId":"79689"},{"alias":"TIARP","entrezGeneId":"79689"},{"alias":"TNFAIP9","entrezGeneId":"79689"},{"alias":"GAL3ST-4","entrezGeneId":"79690"},{"alias":"QTRTD1","entrezGeneId":"79691"},{"alias":"HCG12","entrezGeneId":"79692"},{"alias":"ZNF322A","entrezGeneId":"79692"},{"alias":"ZNF388","entrezGeneId":"79692"},{"alias":"ZNF489","entrezGeneId":"79692"},{"alias":"DRIP3","entrezGeneId":"79693"},{"alias":"IRIP","entrezGeneId":"79693"},{"alias":"SUA5","entrezGeneId":"79693"},{"alias":"ENDO","entrezGeneId":"79694"},{"alias":"hEndo","entrezGeneId":"79694"},{"alias":"CRCS1","entrezGeneId":"79695"},{"alias":"GalNAc-T12","entrezGeneId":"79695"},{"alias":"C14orf140","entrezGeneId":"79696"},{"alias":"FAM164C","entrezGeneId":"79696"},{"alias":"C14orf169","entrezGeneId":"79697"},{"alias":"hsNO66","entrezGeneId":"79697"},{"alias":"JMJD9","entrezGeneId":"79697"},{"alias":"MAPJD","entrezGeneId":"79697"},{"alias":"NO66","entrezGeneId":"79697"},{"alias":"ROX","entrezGeneId":"79697"},{"alias":"URLC2","entrezGeneId":"79697"},{"alias":"ZYG11","entrezGeneId":"79699"},{"alias":"C17orf101","entrezGeneId":"79701"},{"alias":"TOP6BL","entrezGeneId":"79703"},{"alias":"TOPOVIBL","entrezGeneId":"79703"},{"alias":"RIPK6","entrezGeneId":"79705"},{"alias":"Roco1","entrezGeneId":"79705"},{"alias":"C114","entrezGeneId":"79706"},{"alias":"KRBOX3","entrezGeneId":"79706"},{"alias":"Grc3","entrezGeneId":"79707"},{"alias":"NET6","entrezGeneId":"79707"},{"alias":"ColGalT 1","entrezGeneId":"79709"},{"alias":"GLT25D1","entrezGeneId":"79709"},{"alias":"dJ75H8.2","entrezGeneId":"79710"},{"alias":"ZCW4","entrezGeneId":"79710"},{"alias":"ZCWCC2","entrezGeneId":"79710"},{"alias":"Imp4","entrezGeneId":"79711"},{"alias":"Hmat-Xa","entrezGeneId":"79712"},{"alias":"mat-Xa","entrezGeneId":"79712"},{"alias":"TMEM149","entrezGeneId":"79713"},{"alias":"bA261P9.2","entrezGeneId":"79716"},{"alias":"C21","entrezGeneId":"79718"},{"alias":"DC42","entrezGeneId":"79718"},{"alias":"IRA1","entrezGeneId":"79718"},{"alias":"MRD41","entrezGeneId":"79718"},{"alias":"TBLR1","entrezGeneId":"79718"},{"alias":"KPPP1","entrezGeneId":"79719"},{"alias":"p34","entrezGeneId":"79719"},{"alias":"PPKP1","entrezGeneId":"79719"},{"alias":"PPKP1A","entrezGeneId":"79719"},{"alias":"KMT1B","entrezGeneId":"79723"},{"alias":"hTh9","entrezGeneId":"79725"},{"alias":"CDW12","entrezGeneId":"79726"},{"alias":"FP977","entrezGeneId":"79726"},{"alias":"p90-120","entrezGeneId":"79726"},{"alias":"CSDD1","entrezGeneId":"79727"},{"alias":"LIN-28","entrezGeneId":"79727"},{"alias":"lin-28A","entrezGeneId":"79727"},{"alias":"LIN28","entrezGeneId":"79727"},{"alias":"ZCCHC1","entrezGeneId":"79727"},{"alias":"FANCN","entrezGeneId":"79728"},{"alias":"PNCA3","entrezGeneId":"79728"},{"alias":"C1orf113","entrezGeneId":"79729"},{"alias":"asnRS","entrezGeneId":"79731"},{"alias":"DFNB94","entrezGeneId":"79731"},{"alias":"SLM5","entrezGeneId":"79731"},{"alias":"E2F-8","entrezGeneId":"79733"},{"alias":"C17orf42","entrezGeneId":"79736"},{"alias":"C12orf58","entrezGeneId":"79738"},{"alias":"BIOT2","entrezGeneId":"79741"},{"alias":"BioT2-A","entrezGeneId":"79741"},{"alias":"BioT2-B","entrezGeneId":"79741"},{"alias":"BioT2-C","entrezGeneId":"79741"},{"alias":"C10orf68","entrezGeneId":"79741"},{"alias":"4930578C19Rik","entrezGeneId":"79742"},{"alias":"bA435K1.1","entrezGeneId":"79742"},{"alias":"DIA1R","entrezGeneId":"79742"},{"alias":"EPQL1862","entrezGeneId":"79742"},{"alias":"PRO3743","entrezGeneId":"79742"},{"alias":"ZAPHIR","entrezGeneId":"79744"},{"alias":"ZNF419A","entrezGeneId":"79744"},{"alias":"RSNL2","entrezGeneId":"79745"},{"alias":"C6orf103","entrezGeneId":"79747"},{"alias":"CAPN16","entrezGeneId":"79747"},{"alias":"ERGIC-53L","entrezGeneId":"79748"},{"alias":"ERGL","entrezGeneId":"79748"},{"alias":"ZNF659","entrezGeneId":"79750"},{"alias":"EIEE3","entrezGeneId":"79751"},{"alias":"GC-1","entrezGeneId":"79751"},{"alias":"GC1","entrezGeneId":"79751"},{"alias":"NET44","entrezGeneId":"79751"},{"alias":"PML1","entrezGeneId":"79753"},{"alias":"PMRED","entrezGeneId":"79753"},{"alias":"ZFP750","entrezGeneId":"79755"},{"alias":"SDR40C1","entrezGeneId":"79758"},{"alias":"SIP3","entrezGeneId":"79760"},{"alias":"CED-12","entrezGeneId":"79767"},{"alias":"CED12","entrezGeneId":"79767"},{"alias":"ELMO-3","entrezGeneId":"79767"},{"alias":"C15orf29","entrezGeneId":"79768"},{"alias":"BUG","entrezGeneId":"79770"},{"alias":"C5orf14","entrezGeneId":"79770"},{"alias":"UNQ335","entrezGeneId":"79770"},{"alias":"TBC1D6","entrezGeneId":"79774"},{"alias":"ZFH4","entrezGeneId":"79776"},{"alias":"ZHF4","entrezGeneId":"79776"},{"alias":"HMFT0700","entrezGeneId":"79777"},{"alias":"JRAB","entrezGeneId":"79778"},{"alias":"MICAL-L2","entrezGeneId":"79778"},{"alias":"HSPC048","entrezGeneId":"79780"},{"alias":"4930465P12Rik","entrezGeneId":"79781"},{"alias":"DRC11","entrezGeneId":"79781"},{"alias":"IQCA","entrezGeneId":"79781"},{"alias":"HEL-S-293","entrezGeneId":"79782"},{"alias":"C7orf10","entrezGeneId":"79783"},{"alias":"DERP13","entrezGeneId":"79783"},{"alias":"GA3","entrezGeneId":"79783"},{"alias":"ORF19","entrezGeneId":"79783"},{"alias":"DFNA4","entrezGeneId":"79784"},{"alias":"DFNA4A","entrezGeneId":"79784"},{"alias":"FP17425","entrezGeneId":"79784"},{"alias":"MHC16","entrezGeneId":"79784"},{"alias":"MYH17","entrezGeneId":"79784"},{"alias":"myosin","entrezGeneId":"79784"},{"alias":"NMHC II-C","entrezGeneId":"79784"},{"alias":"NMHC-II-C","entrezGeneId":"79784"},{"alias":"PNMHH","entrezGeneId":"79784"},{"alias":"C16orf44","entrezGeneId":"79786"},{"alias":"ZFP160L","entrezGeneId":"79788"},{"alias":"FBX14","entrezGeneId":"79791"},{"alias":"Fbx31","entrezGeneId":"79791"},{"alias":"FBXO14","entrezGeneId":"79791"},{"alias":"MRT45","entrezGeneId":"79791"},{"alias":"pp2386","entrezGeneId":"79791"},{"alias":"DF5L","entrezGeneId":"79792"},{"alias":"DFNA5L","entrezGeneId":"79792"},{"alias":"FKSG10","entrezGeneId":"79792"},{"alias":"GSDMDC1","entrezGeneId":"79792"},{"alias":"CDG1L","entrezGeneId":"79796"},{"alias":"DIBD1","entrezGeneId":"79796"},{"alias":"GIKANIS","entrezGeneId":"79796"},{"alias":"LOH11CR1J","entrezGeneId":"79796"},{"alias":"EVR6","entrezGeneId":"79797"},{"alias":"RP72","entrezGeneId":"79797"},{"alias":"AIMAH2","entrezGeneId":"79798"},{"alias":"ALS2CR8","entrezGeneId":"79800"},{"alias":"NYD-SP24","entrezGeneId":"79800"},{"alias":"PAL","entrezGeneId":"79801"},{"alias":"KIAA1822L","entrezGeneId":"79802"},{"alias":"BLOC2S3","entrezGeneId":"79803"},{"alias":"DEIN","entrezGeneId":"79804"},{"alias":"NBLA00301","entrezGeneId":"79804"},{"alias":"UPH","entrezGeneId":"79804"},{"alias":"ATD4","entrezGeneId":"79809"},{"alias":"IFT139","entrezGeneId":"79809"},{"alias":"IFT139B","entrezGeneId":"79809"},{"alias":"JBTS11","entrezGeneId":"79809"},{"alias":"Nbla10696","entrezGeneId":"79809"},{"alias":"NPHP12","entrezGeneId":"79809"},{"alias":"SRTD4","entrezGeneId":"79809"},{"alias":"THM1","entrezGeneId":"79809"},{"alias":"Met","entrezGeneId":"79811"},{"alias":"EMILIN-3","entrezGeneId":"79812"},{"alias":"EMILIN3","entrezGeneId":"79812"},{"alias":"ENDOGLYX-1","entrezGeneId":"79812"},{"alias":"EHMT1-IT1","entrezGeneId":"79813"},{"alias":"Eu-HMTase1","entrezGeneId":"79813"},{"alias":"EUHMTASE1","entrezGeneId":"79813"},{"alias":"FP13812","entrezGeneId":"79813"},{"alias":"GLP","entrezGeneId":"79813"},{"alias":"GLP1","entrezGeneId":"79813"},{"alias":"KLEFS1","entrezGeneId":"79813"},{"alias":"KMT1D","entrezGeneId":"79813"},{"alias":"NPAL2","entrezGeneId":"79815"},{"alias":"GRG6","entrezGeneId":"79816"},{"alias":"PREMBL","entrezGeneId":"79816"},{"alias":"C9orf35","entrezGeneId":"79817"},{"alias":"MOB1D","entrezGeneId":"79817"},{"alias":"MOBKL2B","entrezGeneId":"79817"},{"alias":"DIC4","entrezGeneId":"79819"},{"alias":"C14orf161","entrezGeneId":"79820"},{"alias":"CatSper(beta)","entrezGeneId":"79820"},{"alias":"C2orf34","entrezGeneId":"79823"},{"alias":"Cam","entrezGeneId":"79823"},{"alias":"CaM KMT","entrezGeneId":"79823"},{"alias":"CLNMT","entrezGeneId":"79823"},{"alias":"KMT","entrezGeneId":"79823"},{"alias":"C3orf73","entrezGeneId":"79825"},{"alias":"CCDC48","entrezGeneId":"79825"},{"alias":"ACAM","entrezGeneId":"79827"},{"alias":"ASAM","entrezGeneId":"79827"},{"alias":"CSBM","entrezGeneId":"79827"},{"alias":"CSBS","entrezGeneId":"79827"},{"alias":"TIP","entrezGeneId":"79828"},{"alias":"hNatD","entrezGeneId":"79829"},{"alias":"NAT11","entrezGeneId":"79829"},{"alias":"NatD","entrezGeneId":"79829"},{"alias":"PATT1","entrezGeneId":"79829"},{"alias":"MYM","entrezGeneId":"79830"},{"alias":"JMJD5","entrezGeneId":"79831"},{"alias":"SGK269","entrezGeneId":"79834"},{"alias":"RNF127","entrezGeneId":"79836"},{"alias":"PIP5K2C","entrezGeneId":"79837"},{"alias":"ACY1L","entrezGeneId":"79839"},{"alias":"AN","entrezGeneId":"79839"},{"alias":"C18orf14","entrezGeneId":"79839"},{"alias":"HsT1731","entrezGeneId":"79839"},{"alias":"XLF","entrezGeneId":"79840"},{"alias":"CCP2","entrezGeneId":"79841"},{"alias":"ZNF399","entrezGeneId":"79844"},{"alias":"C7orf63","entrezGeneId":"79846"},{"alias":"FAP69","entrezGeneId":"79846"},{"alias":"bA18I14.8","entrezGeneId":"79847"},{"alias":"C10orf77","entrezGeneId":"79847"},{"alias":"TMEM180","entrezGeneId":"79847"},{"alias":"CSPP","entrezGeneId":"79848"},{"alias":"JBTS21","entrezGeneId":"79848"},{"alias":"IKEPP","entrezGeneId":"79849"},{"alias":"NHERF4","entrezGeneId":"79849"},{"alias":"PDZK2","entrezGeneId":"79849"},{"alias":"CT120","entrezGeneId":"79850"},{"alias":"ABHD9","entrezGeneId":"79852"},{"alias":"EH3","entrezGeneId":"79852"},{"alias":"PRO994","entrezGeneId":"79853"},{"alias":"SLI5","entrezGeneId":"79853"},{"alias":"TCCE518","entrezGeneId":"79853"},{"alias":"NCRNA00115","entrezGeneId":"79854"},{"alias":"C18orf22","entrezGeneId":"79863"},{"alias":"HsT169","entrezGeneId":"79863"},{"alias":"C11orf63","entrezGeneId":"79864"},{"alias":"C6orf76","entrezGeneId":"79865"},{"alias":"dJ238O23.1","entrezGeneId":"79865"},{"alias":"TLT-2","entrezGeneId":"79865"},{"alias":"TLT2","entrezGeneId":"79865"},{"alias":"C13orf34","entrezGeneId":"79866"},{"alias":"C12orf38","entrezGeneId":"79867"},{"alias":"JBTS24","entrezGeneId":"79867"},{"alias":"MKS8","entrezGeneId":"79867"},{"alias":"TECT2","entrezGeneId":"79867"},{"alias":"CDG1S","entrezGeneId":"79868"},{"alias":"CXorf45","entrezGeneId":"79868"},{"alias":"EIEE36","entrezGeneId":"79868"},{"alias":"GLT28D1","entrezGeneId":"79868"},{"alias":"MDS031","entrezGeneId":"79868"},{"alias":"TDRD13","entrezGeneId":"79868"},{"alias":"YGL047W","entrezGeneId":"79868"},{"alias":"CFIm59","entrezGeneId":"79869"},{"alias":"C1orf82","entrezGeneId":"79871"},{"alias":"Rtr1","entrezGeneId":"79871"},{"alias":"HAKAI","entrezGeneId":"79872"},{"alias":"RNF188","entrezGeneId":"79872"},{"alias":"MTH3","entrezGeneId":"79873"},{"alias":"FRA","entrezGeneId":"79874"},{"alias":"ADAMTSL-6","entrezGeneId":"79875"},{"alias":"ADAMTSL6","entrezGeneId":"79875"},{"alias":"FVSY9334","entrezGeneId":"79875"},{"alias":"PRO34005","entrezGeneId":"79875"},{"alias":"EIEE44","entrezGeneId":"79876"},{"alias":"SCAR24","entrezGeneId":"79876"},{"alias":"THIFP1","entrezGeneId":"79876"},{"alias":"UBE1DC1","entrezGeneId":"79876"},{"alias":"MRT56","entrezGeneId":"79882"},{"alias":"MSUT-2","entrezGeneId":"79882"},{"alias":"NY-REN-37","entrezGeneId":"79882"},{"alias":"SUT2","entrezGeneId":"79882"},{"alias":"UKp68","entrezGeneId":"79882"},{"alias":"SLRR5B","entrezGeneId":"79883"},{"alias":"ASAP","entrezGeneId":"79884"},{"alias":"HD11","entrezGeneId":"79885"},{"alias":"C9orf82","entrezGeneId":"79886"},{"alias":"CAAP","entrezGeneId":"79886"},{"alias":"AGPAT10","entrezGeneId":"79888"},{"alias":"AGPAT9","entrezGeneId":"79888"},{"alias":"AYTL2","entrezGeneId":"79888"},{"alias":"lpcat","entrezGeneId":"79888"},{"alias":"LPCAT-1","entrezGeneId":"79888"},{"alias":"lysoPAFAT","entrezGeneId":"79888"},{"alias":"PFAAP3","entrezGeneId":"79888"},{"alias":"C10orf119","entrezGeneId":"79892"},{"alias":"MCM-BP","entrezGeneId":"79892"},{"alias":"DIF-3","entrezGeneId":"79893"},{"alias":"DIF3","entrezGeneId":"79893"},{"alias":"LCRG1","entrezGeneId":"79893"},{"alias":"LZK1","entrezGeneId":"79893"},{"alias":"ZFP403","entrezGeneId":"79893"},{"alias":"ZNF403","entrezGeneId":"79893"},{"alias":"ATPIM","entrezGeneId":"79895"},{"alias":"TSH1","entrezGeneId":"79896"},{"alias":"C6orf135","entrezGeneId":"79897"},{"alias":"CAT60","entrezGeneId":"79897"},{"alias":"PROTOR2","entrezGeneId":"79899"},{"alias":"CYB561A2","entrezGeneId":"79901"},{"alias":"DCYTB","entrezGeneId":"79901"},{"alias":"FRRS3","entrezGeneId":"79901"},{"alias":"FROUNT","entrezGeneId":"79902"},{"alias":"Nup75","entrezGeneId":"79902"},{"alias":"HAT4","entrezGeneId":"79903"},{"alias":"hNaa60","entrezGeneId":"79903"},{"alias":"NAT15","entrezGeneId":"79903"},{"alias":"NatF","entrezGeneId":"79903"},{"alias":"BTN9.2","entrezGeneId":"79908"},{"alias":"MFM8","entrezGeneId":"79912"},{"alias":"Arp5","entrezGeneId":"79913"},{"alias":"INO80M","entrezGeneId":"79913"},{"alias":"C17orf41","entrezGeneId":"79915"},{"alias":"ELG1","entrezGeneId":"79915"},{"alias":"FRAG1","entrezGeneId":"79915"},{"alias":"JM10","entrezGeneId":"79917"},{"alias":"PDZX","entrezGeneId":"79917"},{"alias":"NPD017","entrezGeneId":"79921"},{"alias":"WEX7","entrezGeneId":"79921"},{"alias":"AM2","entrezGeneId":"79924"},{"alias":"dJ579N16.4","entrezGeneId":"79924"},{"alias":"CT122","entrezGeneId":"79925"},{"alias":"KPL2","entrezGeneId":"79925"},{"alias":"GRRP1","entrezGeneId":"79927"},{"alias":"MAPO6D1","entrezGeneId":"79929"},{"alias":"SL21","entrezGeneId":"79929"},{"alias":"DOKL","entrezGeneId":"79930"},{"alias":"ABIN-3","entrezGeneId":"79931"},{"alias":"LIND","entrezGeneId":"79931"},{"alias":"AAVR","entrezGeneId":"79932"},{"alias":"AAVRL","entrezGeneId":"79932"},{"alias":"ADCK4","entrezGeneId":"79934"},{"alias":"NPHS9","entrezGeneId":"79934"},{"alias":"CCNP","entrezGeneId":"79935"},{"alias":"CASPR3","entrezGeneId":"79937"},{"alias":"CNTNAP3A","entrezGeneId":"79937"},{"alias":"C6orf155","entrezGeneId":"79940"},{"alias":"C14orf160","entrezGeneId":"79944"},{"alias":"L2HGA","entrezGeneId":"79944"},{"alias":"CIT","entrezGeneId":"79947"},{"alias":"CPT","entrezGeneId":"79947"},{"alias":"DEDSM","entrezGeneId":"79947"},{"alias":"DS","entrezGeneId":"79947"},{"alias":"HDS","entrezGeneId":"79947"},{"alias":"RP59","entrezGeneId":"79947"},{"alias":"LPPR3","entrezGeneId":"79948"},{"alias":"LPR3","entrezGeneId":"79948"},{"alias":"PRG-2","entrezGeneId":"79948"},{"alias":"PRG2","entrezGeneId":"79948"},{"alias":"bA211N11.2","entrezGeneId":"79949"},{"alias":"C10orf81","entrezGeneId":"79949"},{"alias":"HEL185","entrezGeneId":"79949"},{"alias":"C20orf39","entrezGeneId":"79953"},{"alias":"DSPC2","entrezGeneId":"79953"},{"alias":"IFITMD5","entrezGeneId":"79953"},{"alias":"TMEM90B","entrezGeneId":"79953"},{"alias":"PQBP5","entrezGeneId":"79954"},{"alias":"DFNB57","entrezGeneId":"79955"},{"alias":"PDZK7","entrezGeneId":"79955"},{"alias":"bA207C16.3","entrezGeneId":"79956"},{"alias":"FXNA","entrezGeneId":"79956"},{"alias":"KIAA1815","entrezGeneId":"79956"},{"alias":"PRdelta","entrezGeneId":"79957"},{"alias":"FAM31C","entrezGeneId":"79958"},{"alias":"C18orf9","entrezGeneId":"79959"},{"alias":"HsT1705","entrezGeneId":"79959"},{"alias":"PHF17","entrezGeneId":"79960"},{"alias":"wus","entrezGeneId":"79962"},{"alias":"ABCA11","entrezGeneId":"79963"},{"alias":"EST1133530","entrezGeneId":"79963"},{"alias":"ACOD4","entrezGeneId":"79966"},{"alias":"FADS4","entrezGeneId":"79966"},{"alias":"HSCD5","entrezGeneId":"79966"},{"alias":"SCD2","entrezGeneId":"79966"},{"alias":"SCD4","entrezGeneId":"79966"},{"alias":"CDW14","entrezGeneId":"79968"},{"alias":"alpha-TAT","entrezGeneId":"79969"},{"alias":"alpha-TAT1","entrezGeneId":"79969"},{"alias":"C6orf134","entrezGeneId":"79969"},{"alias":"MEC17","entrezGeneId":"79969"},{"alias":"Nbla00487","entrezGeneId":"79969"},{"alias":"TAT","entrezGeneId":"79969"},{"alias":"ZNF767","entrezGeneId":"79970"},{"alias":"C1orf139","entrezGeneId":"79971"},{"alias":"EVI","entrezGeneId":"79971"},{"alias":"GPR177","entrezGeneId":"79971"},{"alias":"mig-14","entrezGeneId":"79971"},{"alias":"MRP","entrezGeneId":"79971"},{"alias":"C7orf58","entrezGeneId":"79974"},{"alias":"BOM","entrezGeneId":"79977"},{"alias":"DFNA28","entrezGeneId":"79977"},{"alias":"ECTDS","entrezGeneId":"79977"},{"alias":"TFCP2L3","entrezGeneId":"79977"},{"alias":"CXorf34","entrezGeneId":"79979"},{"alias":"dJ341D10.3","entrezGeneId":"79979"},{"alias":"C20orf172","entrezGeneId":"79980"},{"alias":"dJ469A13.2","entrezGeneId":"79980"},{"alias":"hKNL-3","entrezGeneId":"79980"},{"alias":"KNL3","entrezGeneId":"79980"},{"alias":"MIS13","entrezGeneId":"79980"},{"alias":"bA164L23.1","entrezGeneId":"79981"},{"alias":"EGNR9427","entrezGeneId":"79982"},{"alias":"PRO34683","entrezGeneId":"79982"},{"alias":"POF","entrezGeneId":"79983"},{"alias":"POF2B","entrezGeneId":"79983"},{"alias":"ZNF702","entrezGeneId":"79986"},{"alias":"C9orf13","entrezGeneId":"79987"},{"alias":"CCP22","entrezGeneId":"79987"},{"alias":"POLYDOM","entrezGeneId":"79987"},{"alias":"SEL-OB","entrezGeneId":"79987"},{"alias":"SELOB","entrezGeneId":"79987"},{"alias":"dyf-13","entrezGeneId":"79989"},{"alias":"DYF13","entrezGeneId":"79989"},{"alias":"IFT56","entrezGeneId":"79989"},{"alias":"AAF-44","entrezGeneId":"79991"},{"alias":"AAF44","entrezGeneId":"79991"},{"alias":"bA541N10.2","entrezGeneId":"79991"},{"alias":"OBFC1","entrezGeneId":"79991"},{"alias":"RPA-32","entrezGeneId":"79991"},{"alias":"C6orf59","entrezGeneId":"79992"},{"alias":"NCRNA00241","entrezGeneId":"79992"},{"alias":"C18orf6","entrezGeneId":"80000"},{"alias":"KIAA1772","entrezGeneId":"80000"},{"alias":"RHDA3","entrezGeneId":"80000"},{"alias":"PCNXL2","entrezGeneId":"80003"},{"alias":"RBM35B","entrezGeneId":"80004"},{"alias":"C5orf44","entrezGeneId":"80006"},{"alias":"BLAP75","entrezGeneId":"80010"},{"alias":"C9orf76","entrezGeneId":"80010"},{"alias":"FAAP75","entrezGeneId":"80010"},{"alias":"C16orf94","entrezGeneId":"80011"},{"alias":"CDA018","entrezGeneId":"80011"},{"alias":"CDA10","entrezGeneId":"80011"},{"alias":"NIP30","entrezGeneId":"80011"},{"alias":"EDR3","entrezGeneId":"80012"},{"alias":"HPH3","entrezGeneId":"80012"},{"alias":"C10orf97","entrezGeneId":"80013"},{"alias":"CARP","entrezGeneId":"80013"},{"alias":"DERP5","entrezGeneId":"80013"},{"alias":"FAM188A","entrezGeneId":"80013"},{"alias":"MST126","entrezGeneId":"80013"},{"alias":"MSTP126","entrezGeneId":"80013"},{"alias":"my042","entrezGeneId":"80013"},{"alias":"BOMB","entrezGeneId":"80014"},{"alias":"C14orf159","entrezGeneId":"80017"},{"alias":"C12orf30","entrezGeneId":"80018"},{"alias":"MDM20","entrezGeneId":"80018"},{"alias":"NAP1","entrezGeneId":"80018"},{"alias":"ERFAD","entrezGeneId":"80020"},{"alias":"MYO15BP","entrezGeneId":"80022"},{"alias":"C20orf98","entrezGeneId":"80023"},{"alias":"dJ1103G7.6","entrezGeneId":"80023"},{"alias":"NCKX6","entrezGeneId":"80024"},{"alias":"NCLX","entrezGeneId":"80024"},{"alias":"SLC24A6","entrezGeneId":"80024"},{"alias":"C20orf48","entrezGeneId":"80025"},{"alias":"HARP","entrezGeneId":"80025"},{"alias":"HSS","entrezGeneId":"80025"},{"alias":"NBIA1","entrezGeneId":"80025"},{"alias":"PKAN","entrezGeneId":"80025"},{"alias":"Fbl18","entrezGeneId":"80028"},{"alias":"FAM130A2","entrezGeneId":"80034"},{"alias":"PPP1R73","entrezGeneId":"80034"},{"alias":"TAIP-2","entrezGeneId":"80034"},{"alias":"TAIP2","entrezGeneId":"80034"},{"alias":"C15orf28","entrezGeneId":"80035"},{"alias":"HsT18971","entrezGeneId":"80035"},{"alias":"NCRNA00321","entrezGeneId":"80035"},{"alias":"GON-2","entrezGeneId":"80036"},{"alias":"LTRPC3","entrezGeneId":"80036"},{"alias":"MLSN2","entrezGeneId":"80036"},{"alias":"RPS2_21_1492","entrezGeneId":"80052"},{"alias":"CEBPA-AS1","entrezGeneId":"80054"},{"alias":"Bst1","entrezGeneId":"80055"},{"alias":"ISPD3024","entrezGeneId":"80055"},{"alias":"MRT42","entrezGeneId":"80055"},{"alias":"SPG67","entrezGeneId":"80055"},{"alias":"GNL3LP","entrezGeneId":"80060"},{"alias":"MCAF2","entrezGeneId":"80063"},{"alias":"C20orf37","entrezGeneId":"80067"},{"alias":"C2orf37","entrezGeneId":"80067"},{"alias":"C6orf208","entrezGeneId":"80069"},{"alias":"dJ182D15.1","entrezGeneId":"80069"},{"alias":"ADAM-TS20","entrezGeneId":"80070"},{"alias":"ADAMTS-20","entrezGeneId":"80070"},{"alias":"GON-1","entrezGeneId":"80070"},{"alias":"C15orf34","entrezGeneId":"80072"},{"alias":"onco-lncRNA-27","entrezGeneId":"80078"},{"alias":"TUBA4","entrezGeneId":"80086"},{"alias":"ZNF328","entrezGeneId":"80095"},{"alias":"FAM128B","entrezGeneId":"80097"},{"alias":"MOZART2B","entrezGeneId":"80097"},{"alias":"zfp-2","entrezGeneId":"80108"},{"alias":"ZNF751","entrezGeneId":"80108"},{"alias":"BICC","entrezGeneId":"80114"},{"alias":"CYSRD","entrezGeneId":"80114"},{"alias":"ARF7","entrezGeneId":"80117"},{"alias":"C15orf20","entrezGeneId":"80119"},{"alias":"PIF","entrezGeneId":"80119"},{"alias":"RCK","entrezGeneId":"80122"},{"alias":"YSK4","entrezGeneId":"80122"},{"alias":"DUBA3","entrezGeneId":"80124"},{"alias":"VCIP135","entrezGeneId":"80124"},{"alias":"CT61","entrezGeneId":"80125"},{"alias":"HP11097","entrezGeneId":"80125"},{"alias":"C14orf45","entrezGeneId":"80127"},{"alias":"CCDC176","entrezGeneId":"80127"},{"alias":"GENEY","entrezGeneId":"80128"},{"alias":"TRIFIC","entrezGeneId":"80128"},{"alias":"bA282P11.1","entrezGeneId":"80129"},{"alias":"C6orf97","entrezGeneId":"80129"},{"alias":"ARMC11","entrezGeneId":"80133"},{"alias":"C1orf129","entrezGeneId":"80133"},{"alias":"BXDC5","entrezGeneId":"80135"},{"alias":"NLZ1","entrezGeneId":"80139"},{"alias":"ZEPPO1","entrezGeneId":"80139"},{"alias":"ZNF503L","entrezGeneId":"80139"},{"alias":"ZPO1","entrezGeneId":"80139"},{"alias":"C9orf15","entrezGeneId":"80142"},{"alias":"GBF-1","entrezGeneId":"80142"},{"alias":"GBF1","entrezGeneId":"80142"},{"alias":"mPGES-2","entrezGeneId":"80142"},{"alias":"PGES2","entrezGeneId":"80142"},{"alias":"SIKE","entrezGeneId":"80143"},{"alias":"FRASRS1","entrezGeneId":"80144"},{"alias":"fSAP24","entrezGeneId":"80145"},{"alias":"hTREX30","entrezGeneId":"80145"},{"alias":"NIF3L1BP1","entrezGeneId":"80145"},{"alias":"SDR6E1","entrezGeneId":"80146"},{"alias":"UGD","entrezGeneId":"80146"},{"alias":"dJ423B22.1","entrezGeneId":"80149"},{"alias":"MCPIP","entrezGeneId":"80149"},{"alias":"MCPIP-1","entrezGeneId":"80149"},{"alias":"MCPIP1","entrezGeneId":"80149"},{"alias":"Reg1","entrezGeneId":"80149"},{"alias":"ALP","entrezGeneId":"80150"},{"alias":"ALP1","entrezGeneId":"80150"},{"alias":"CRASH","entrezGeneId":"80150"},{"alias":"C16orf56","entrezGeneId":"80152"},{"alias":"CENP-T","entrezGeneId":"80152"},{"alias":"hYjeF_N2-15q23","entrezGeneId":"80153"},{"alias":"LSM16","entrezGeneId":"80153"},{"alias":"MRT50","entrezGeneId":"80153"},{"alias":"YJDC","entrezGeneId":"80153"},{"alias":"YJEFN2","entrezGeneId":"80153"},{"alias":"Ga19","entrezGeneId":"80155"},{"alias":"MRD50","entrezGeneId":"80155"},{"alias":"NARG1","entrezGeneId":"80155"},{"alias":"NAT1P","entrezGeneId":"80155"},{"alias":"NATH","entrezGeneId":"80155"},{"alias":"TBDN","entrezGeneId":"80155"},{"alias":"TBDN100","entrezGeneId":"80155"},{"alias":"CWH43-C","entrezGeneId":"80157"},{"alias":"PGAP2IP","entrezGeneId":"80157"},{"alias":"ASMTL-AS","entrezGeneId":"80161"},{"alias":"ASMTLAS","entrezGeneId":"80161"},{"alias":"CXYorf2","entrezGeneId":"80161"},{"alias":"NCRNA00105","entrezGeneId":"80161"},{"alias":"ATHL1","entrezGeneId":"80162"},{"alias":"C4orf29","entrezGeneId":"80167"},{"alias":"DGAT2L5","entrezGeneId":"80168"},{"alias":"DGAT2L5.","entrezGeneId":"80168"},{"alias":"hDC5","entrezGeneId":"80168"},{"alias":"MGAT2","entrezGeneId":"80168"},{"alias":"AAF-132","entrezGeneId":"80169"},{"alias":"AAF132","entrezGeneId":"80169"},{"alias":"C17orf68","entrezGeneId":"80169"},{"alias":"CRMCC","entrezGeneId":"80169"},{"alias":"tmp494178","entrezGeneId":"80169"},{"alias":"BBS20","entrezGeneId":"80173"},{"alias":"CCDC2","entrezGeneId":"80173"},{"alias":"CMG-1","entrezGeneId":"80173"},{"alias":"CMG1","entrezGeneId":"80173"},{"alias":"ASKL1","entrezGeneId":"80174"},{"alias":"CHIFB","entrezGeneId":"80174"},{"alias":"DRF1","entrezGeneId":"80174"},{"alias":"ZDBF1B","entrezGeneId":"80174"},{"alias":"SSB-1","entrezGeneId":"80176"},{"alias":"SSB1","entrezGeneId":"80176"},{"alias":"MTLC","entrezGeneId":"80177"},{"alias":"C16orf59","entrezGeneId":"80178"},{"alias":"MYOHD1","entrezGeneId":"80179"},{"alias":"C13orf18","entrezGeneId":"80183"},{"alias":"KIAA0226L","entrezGeneId":"80183"},{"alias":"PACER","entrezGeneId":"80183"},{"alias":"3H11Ag","entrezGeneId":"80184"},{"alias":"BBS14","entrezGeneId":"80184"},{"alias":"CT87","entrezGeneId":"80184"},{"alias":"JBTS5","entrezGeneId":"80184"},{"alias":"LCA10","entrezGeneId":"80184"},{"alias":"MKS4","entrezGeneId":"80184"},{"alias":"NPHP6","entrezGeneId":"80184"},{"alias":"POC3","entrezGeneId":"80184"},{"alias":"rd16","entrezGeneId":"80184"},{"alias":"SLSN6","entrezGeneId":"80184"},{"alias":"C8orf41","entrezGeneId":"80185"},{"alias":"MRT39","entrezGeneId":"80185"},{"alias":"bA369J21.6","entrezGeneId":"80195"},{"alias":"C10orf57","entrezGeneId":"80195"},{"alias":"CARP-1","entrezGeneId":"80196"},{"alias":"CARP1","entrezGeneId":"80196"},{"alias":"hRFI","entrezGeneId":"80196"},{"alias":"RFI","entrezGeneId":"80196"},{"alias":"RIF","entrezGeneId":"80196"},{"alias":"RIFF","entrezGeneId":"80196"},{"alias":"SLX3","entrezGeneId":"80198"},{"alias":"CPLANE3","entrezGeneId":"80199"},{"alias":"FY","entrezGeneId":"80199"},{"alias":"NTD","entrezGeneId":"80199"},{"alias":"FBX11","entrezGeneId":"80204"},{"alias":"PRMT9","entrezGeneId":"80204"},{"alias":"UBR6","entrezGeneId":"80204"},{"alias":"UG063H01","entrezGeneId":"80204"},{"alias":"VIT1","entrezGeneId":"80204"},{"alias":"AD013","entrezGeneId":"80205"},{"alias":"CHD-9","entrezGeneId":"80205"},{"alias":"CReMM","entrezGeneId":"80205"},{"alias":"KISH2","entrezGeneId":"80205"},{"alias":"PRIC320","entrezGeneId":"80205"},{"alias":"FHOS2","entrezGeneId":"80206"},{"alias":"Formactin2","entrezGeneId":"80206"},{"alias":"MGA3","entrezGeneId":"80207"},{"alias":"ALS5","entrezGeneId":"80208"},{"alias":"CMT2X","entrezGeneId":"80208"},{"alias":"KIAA1840","entrezGeneId":"80208"},{"alias":"C13orf23","entrezGeneId":"80209"},{"alias":"ARM","entrezGeneId":"80210"},{"alias":"JBTS30","entrezGeneId":"80210"},{"alias":"KU-MEL-1","entrezGeneId":"80210"},{"alias":"NS21","entrezGeneId":"80210"},{"alias":"BLP2","entrezGeneId":"80213"},{"alias":"C21orf96","entrezGeneId":"80215"},{"alias":"8430410J10Rik","entrezGeneId":"80216"},{"alias":"LAK","entrezGeneId":"80216"},{"alias":"bA373N18.2","entrezGeneId":"80217"},{"alias":"C10orf79","entrezGeneId":"80217"},{"alias":"SPGF19","entrezGeneId":"80217"},{"alias":"WDR96","entrezGeneId":"80217"},{"alias":"hNaa50p","entrezGeneId":"80218"},{"alias":"MAK3","entrezGeneId":"80218"},{"alias":"NAT13","entrezGeneId":"80218"},{"alias":"NAT13P","entrezGeneId":"80218"},{"alias":"NAT5","entrezGeneId":"80218"},{"alias":"NAT5P","entrezGeneId":"80218"},{"alias":"SAN","entrezGeneId":"80218"},{"alias":"ACSMW","entrezGeneId":"80221"},{"alias":"AVYV493","entrezGeneId":"80221"},{"alias":"COXPD21","entrezGeneId":"80222"},{"alias":"TARSL1","entrezGeneId":"80222"},{"alias":"thrRS","entrezGeneId":"80222"},{"alias":"NOEL1A","entrezGeneId":"80223"},{"alias":"rab11-FIP1","entrezGeneId":"80223"},{"alias":"RCP","entrezGeneId":"80223"},{"alias":"C14orf127","entrezGeneId":"80224"},{"alias":"huInd1","entrezGeneId":"80224"},{"alias":"IND1","entrezGeneId":"80224"},{"alias":"PAAF","entrezGeneId":"80227"},{"alias":"Rpn14","entrezGeneId":"80227"},{"alias":"WDR71","entrezGeneId":"80227"},{"alias":"C7orf19","entrezGeneId":"80228"},{"alias":"CBCIP2","entrezGeneId":"80228"},{"alias":"MEM142B","entrezGeneId":"80228"},{"alias":"TMEM142B","entrezGeneId":"80228"},{"alias":"RABIP4","entrezGeneId":"80230"},{"alias":"ZFYVE12","entrezGeneId":"80230"},{"alias":"CDW2","entrezGeneId":"80232"},{"alias":"GID7","entrezGeneId":"80232"},{"alias":"MIP2","entrezGeneId":"80232"},{"alias":"SKDEAS","entrezGeneId":"80232"},{"alias":"C17orf70","entrezGeneId":"80233"},{"alias":"GPI-MT-IV","entrezGeneId":"80235"},{"alias":"PIG-Z","entrezGeneId":"80235"},{"alias":"SMP3","entrezGeneId":"80235"},{"alias":"DEP.2","entrezGeneId":"80243"},{"alias":"DEPDC2","entrezGeneId":"80243"},{"alias":"P-REX2","entrezGeneId":"80243"},{"alias":"PPP1R129","entrezGeneId":"80243"},{"alias":"SCKL6","entrezGeneId":"80254"},{"alias":"KIAA1539","entrezGeneId":"80256"},{"alias":"dJ1158H2.1","entrezGeneId":"80258"},{"alias":"MRX74","entrezGeneId":"80258"},{"alias":"C16orf6","entrezGeneId":"80262"},{"alias":"lin-10","entrezGeneId":"80262"},{"alias":"LIN10","entrezGeneId":"80262"},{"alias":"RNF99","entrezGeneId":"80263"},{"alias":"C1orf22","entrezGeneId":"80267"},{"alias":"CBAS1","entrezGeneId":"80270"},{"alias":"PFIC4","entrezGeneId":"80270"},{"alias":"SDR11E3","entrezGeneId":"80270"},{"alias":"IP3-3KC","entrezGeneId":"80271"},{"alias":"IP3KC","entrezGeneId":"80271"},{"alias":"GrpE","entrezGeneId":"80273"},{"alias":"HMGE","entrezGeneId":"80273"},{"alias":"mt-GrpE#1","entrezGeneId":"80273"},{"alias":"C53","entrezGeneId":"80279"},{"alias":"HSF-27","entrezGeneId":"80279"},{"alias":"IC53","entrezGeneId":"80279"},{"alias":"LZAP","entrezGeneId":"80279"},{"alias":"MST016","entrezGeneId":"80279"},{"alias":"OK/SW-cl.114","entrezGeneId":"80279"},{"alias":"PP1553","entrezGeneId":"80279"},{"alias":"MTERFD3","entrezGeneId":"80298"},{"alias":"mTERFL","entrezGeneId":"80298"},{"alias":"PLEKHQ1","entrezGeneId":"80301"},{"alias":"PP1628","entrezGeneId":"80301"},{"alias":"pp9099","entrezGeneId":"80301"},{"alias":"MST133","entrezGeneId":"80303"},{"alias":"MSTP133","entrezGeneId":"80303"},{"alias":"PP3051","entrezGeneId":"80303"},{"alias":"SWS2","entrezGeneId":"80303"},{"alias":"C2orf44","entrezGeneId":"80304"},{"alias":"PP384","entrezGeneId":"80304"},{"alias":"LP6054","entrezGeneId":"80305"},{"alias":"PP2447","entrezGeneId":"80305"},{"alias":"1500003D12Rik","entrezGeneId":"80306"},{"alias":"EG1","entrezGeneId":"80306"},{"alias":"magicin","entrezGeneId":"80306"},{"alias":"C20orf124","entrezGeneId":"80307"},{"alias":"FAD1","entrezGeneId":"80308"},{"alias":"FADS","entrezGeneId":"80308"},{"alias":"LSMFLAD","entrezGeneId":"80308"},{"alias":"PP591","entrezGeneId":"80308"},{"alias":"SKIP","entrezGeneId":"80309"},{"alias":"IEGF","entrezGeneId":"80310"},{"alias":"MSTP036","entrezGeneId":"80310"},{"alias":"SCDGF-B","entrezGeneId":"80310"},{"alias":"SCDGFB","entrezGeneId":"80310"},{"alias":"HEL-S-305","entrezGeneId":"80311"},{"alias":"bA119F7.1","entrezGeneId":"80312"},{"alias":"CXXC6","entrezGeneId":"80312"},{"alias":"LCX","entrezGeneId":"80312"},{"alias":"Epl1","entrezGeneId":"80314"},{"alias":"CPE-BP4","entrezGeneId":"80315"},{"alias":"hCPEB-4","entrezGeneId":"80315"},{"alias":"I-4","entrezGeneId":"80316"},{"alias":"PPP1R2P9","entrezGeneId":"80316"},{"alias":"dJ874C20.1","entrezGeneId":"80317"},{"alias":"dJ874C20.1.","entrezGeneId":"80317"},{"alias":"ZF47","entrezGeneId":"80317"},{"alias":"zfp-47","entrezGeneId":"80317"},{"alias":"ZFP306","entrezGeneId":"80317"},{"alias":"Zfp47","entrezGeneId":"80317"},{"alias":"ZNF306","entrezGeneId":"80317"},{"alias":"ZNF309","entrezGeneId":"80317"},{"alias":"ZSCAN13","entrezGeneId":"80317"},{"alias":"ZSCAN35","entrezGeneId":"80317"},{"alias":"FKSG21","entrezGeneId":"80318"},{"alias":"GKAP42","entrezGeneId":"80318"},{"alias":"IDAX","entrezGeneId":"80319"},{"alias":"EPFN","entrezGeneId":"80320"},{"alias":"EPIPROFIN","entrezGeneId":"80320"},{"alias":"KLF14","entrezGeneId":"80320"},{"alias":"BITE","entrezGeneId":"80321"},{"alias":"SE57-1","entrezGeneId":"80323"},{"alias":"MLASA1","entrezGeneId":"80324"},{"alias":"BPOZ","entrezGeneId":"80325"},{"alias":"BTB3","entrezGeneId":"80325"},{"alias":"BTBD21","entrezGeneId":"80325"},{"alias":"EF1ABP","entrezGeneId":"80325"},{"alias":"PP2259","entrezGeneId":"80325"},{"alias":"OODD","entrezGeneId":"80326"},{"alias":"SSPS","entrezGeneId":"80326"},{"alias":"STHAG4","entrezGeneId":"80326"},{"alias":"MAPRE1P","entrezGeneId":"80327"},{"alias":"ALCAN-alpha","entrezGeneId":"80328"},{"alias":"N2DL2","entrezGeneId":"80328"},{"alias":"NKG2DL2","entrezGeneId":"80328"},{"alias":"RAET1H","entrezGeneId":"80328"},{"alias":"RAET1L","entrezGeneId":"80328"},{"alias":"N2DL-1","entrezGeneId":"80329"},{"alias":"NKG2DL1","entrezGeneId":"80329"},{"alias":"RAET1I","entrezGeneId":"80329"},{"alias":"CLN4","entrezGeneId":"80331"},{"alias":"CLN4B","entrezGeneId":"80331"},{"alias":"CSP","entrezGeneId":"80331"},{"alias":"DNAJC5A","entrezGeneId":"80331"},{"alias":"mir-941-2","entrezGeneId":"80331"},{"alias":"mir-941-3","entrezGeneId":"80331"},{"alias":"mir-941-4","entrezGeneId":"80331"},{"alias":"mir-941-5","entrezGeneId":"80331"},{"alias":"NCL","entrezGeneId":"80331"},{"alias":"C20orf153","entrezGeneId":"80332"},{"alias":"DJ964F7.1","entrezGeneId":"80332"},{"alias":"CALP","entrezGeneId":"80333"},{"alias":"KCHIP4","entrezGeneId":"80333"},{"alias":"MST107","entrezGeneId":"80335"},{"alias":"MSTP107","entrezGeneId":"80335"},{"alias":"PRO2730","entrezGeneId":"80335"},{"alias":"PRO34047","entrezGeneId":"80335"},{"alias":"SWD2","entrezGeneId":"80335"},{"alias":"TMEM113","entrezGeneId":"80335"},{"alias":"WDR82A","entrezGeneId":"80335"},{"alias":"C20orf119","entrezGeneId":"80336"},{"alias":"dJ1069P2.3","entrezGeneId":"80336"},{"alias":"EPAB","entrezGeneId":"80336"},{"alias":"PABPC1L1","entrezGeneId":"80336"},{"alias":"ADPN","entrezGeneId":"80339"},{"alias":"C22orf20","entrezGeneId":"80339"},{"alias":"iPLA(2)epsilon","entrezGeneId":"80339"},{"alias":"BPIL1","entrezGeneId":"80341"},{"alias":"C20orf184","entrezGeneId":"80341"},{"alias":"dJ726C3.2","entrezGeneId":"80341"},{"alias":"LPLUNC2","entrezGeneId":"80341"},{"alias":"RYSR","entrezGeneId":"80341"},{"alias":"T3JAM","entrezGeneId":"80342"},{"alias":"C20orf50","entrezGeneId":"80343"},{"alias":"GL014","entrezGeneId":"80344"},{"alias":"PRO2389","entrezGeneId":"80344"},{"alias":"WDR23","entrezGeneId":"80344"},{"alias":"dJ265C24.3","entrezGeneId":"80345"},{"alias":"ZNF392","entrezGeneId":"80345"},{"alias":"ZNF435","entrezGeneId":"80345"},{"alias":"C8orf20","entrezGeneId":"80346"},{"alias":"PP432","entrezGeneId":"80346"},{"alias":"Yip2c","entrezGeneId":"80346"},{"alias":"DPCK","entrezGeneId":"80347"},{"alias":"NBIA6","entrezGeneId":"80347"},{"alias":"NBP","entrezGeneId":"80347"},{"alias":"pOV-2","entrezGeneId":"80347"},{"alias":"PPAT","entrezGeneId":"80347"},{"alias":"UKR1","entrezGeneId":"80347"},{"alias":"REC14","entrezGeneId":"80349"},{"alias":"SKI8","entrezGeneId":"80349"},{"alias":"apo(a)rg-C","entrezGeneId":"80350"},{"alias":"APOA2","entrezGeneId":"80350"},{"alias":"APOAL","entrezGeneId":"80350"},{"alias":"APOARGC","entrezGeneId":"80350"},{"alias":"ARTD6","entrezGeneId":"80351"},{"alias":"PARP-5b","entrezGeneId":"80351"},{"alias":"PARP-5c","entrezGeneId":"80351"},{"alias":"PARP5B","entrezGeneId":"80351"},{"alias":"PARP5C","entrezGeneId":"80351"},{"alias":"pART6","entrezGeneId":"80351"},{"alias":"TANK2","entrezGeneId":"80351"},{"alias":"TNKL","entrezGeneId":"80351"},{"alias":"HZF","entrezGeneId":"80352"},{"alias":"HZFW","entrezGeneId":"80352"},{"alias":"LIRF","entrezGeneId":"80352"},{"alias":"B7DC","entrezGeneId":"80380"},{"alias":"bA574F11.2","entrezGeneId":"80380"},{"alias":"Btdc","entrezGeneId":"80380"},{"alias":"CD273","entrezGeneId":"80380"},{"alias":"PD-L2","entrezGeneId":"80380"},{"alias":"PDCD1L2","entrezGeneId":"80380"},{"alias":"PDL2","entrezGeneId":"80380"},{"alias":"4Ig-B7-H3","entrezGeneId":"80381"},{"alias":"B7-H3","entrezGeneId":"80381"},{"alias":"B7H3","entrezGeneId":"80381"},{"alias":"B7RP-2","entrezGeneId":"80381"},{"alias":"UBXD1","entrezGeneId":"80700"},{"alias":"UBXDC2","entrezGeneId":"80700"},{"alias":"AKR1D1P","entrezGeneId":"80701"},{"alias":"SRD5BP1","entrezGeneId":"80701"},{"alias":"BBGD","entrezGeneId":"80704"},{"alias":"THMD2","entrezGeneId":"80704"},{"alias":"THTR2","entrezGeneId":"80704"},{"alias":"CEP4L","entrezGeneId":"80705"},{"alias":"CT79","entrezGeneId":"80705"},{"alias":"ESX1L","entrezGeneId":"80712"},{"alias":"ESXR1","entrezGeneId":"80712"},{"alias":"TMEM22","entrezGeneId":"80723"},{"alias":"P140","entrezGeneId":"80725"},{"alias":"SNIP","entrezGeneId":"80725"},{"alias":"KIAA1683","entrezGeneId":"80726"},{"alias":"CrGAP","entrezGeneId":"80728"},{"alias":"Vilse","entrezGeneId":"80728"},{"alias":"C6orf29","entrezGeneId":"80736"},{"alias":"CTL4","entrezGeneId":"80736"},{"alias":"DFNA72","entrezGeneId":"80736"},{"alias":"hTPPT1","entrezGeneId":"80736"},{"alias":"NG22","entrezGeneId":"80736"},{"alias":"TPPT","entrezGeneId":"80736"},{"alias":"C6orf27","entrezGeneId":"80737"},{"alias":"G7c","entrezGeneId":"80737"},{"alias":"NG37","entrezGeneId":"80737"},{"alias":"C6orf25","entrezGeneId":"80739"},{"alias":"G6b","entrezGeneId":"80739"},{"alias":"G6b-B","entrezGeneId":"80739"},{"alias":"NG31","entrezGeneId":"80739"},{"alias":"THAMY","entrezGeneId":"80739"},{"alias":"C6orf24","entrezGeneId":"80740"},{"alias":"G6c","entrezGeneId":"80740"},{"alias":"NG24","entrezGeneId":"80740"},{"alias":"C6orf20","entrezGeneId":"80741"},{"alias":"G5C","entrezGeneId":"80741"},{"alias":"LY6G5CA","entrezGeneId":"80741"},{"alias":"LY6G5CB","entrezGeneId":"80741"},{"alias":"NG33","entrezGeneId":"80741"},{"alias":"CAT56","entrezGeneId":"80742"},{"alias":"C2orf8","entrezGeneId":"80745"},{"alias":"PCH2B","entrezGeneId":"80746"},{"alias":"SEN2","entrezGeneId":"80746"},{"alias":"SEN2L","entrezGeneId":"80746"},{"alias":"hole","entrezGeneId":"80757"},{"alias":"TMEM121A","entrezGeneId":"80757"},{"alias":"bA257K9.4","entrezGeneId":"80759"},{"alias":"C6orf147","entrezGeneId":"80759"},{"alias":"C6orf148","entrezGeneId":"80759"},{"alias":"Em:AC019205.8","entrezGeneId":"80759"},{"alias":"NDG1","entrezGeneId":"80759"},{"alias":"ITI-HC5","entrezGeneId":"80760"},{"alias":"PP14776","entrezGeneId":"80760"},{"alias":"N4WBP5","entrezGeneId":"80762"},{"alias":"C12orf39","entrezGeneId":"80763"},{"alias":"MNDJ","entrezGeneId":"80768"},{"alias":"CCPSO","entrezGeneId":"80770"},{"alias":"CCSSO","entrezGeneId":"80770"},{"alias":"MOPCB2","entrezGeneId":"80771"},{"alias":"GLTPD1","entrezGeneId":"80772"},{"alias":"ICIS-1","entrezGeneId":"80776"},{"alias":"JBTS34","entrezGeneId":"80776"},{"alias":"MKS10","entrezGeneId":"80776"},{"alias":"MKSR2","entrezGeneId":"80776"},{"alias":"CYB5-M","entrezGeneId":"80777"},{"alias":"CYPB5M","entrezGeneId":"80777"},{"alias":"OMB5","entrezGeneId":"80777"},{"alias":"KOX32","entrezGeneId":"80778"},{"alias":"KNO","entrezGeneId":"80781"},{"alias":"KNO1","entrezGeneId":"80781"},{"alias":"KS","entrezGeneId":"80781"},{"alias":"INT5","entrezGeneId":"80789"},{"alias":"KIAA1698","entrezGeneId":"80789"},{"alias":"TCMIP","entrezGeneId":"80790"},{"alias":"BRPS","entrezGeneId":"80816"},{"alias":"KIAA1713","entrezGeneId":"80816"},{"alias":"KIAA1712","entrezGeneId":"80817"},{"alias":"PS1TP3","entrezGeneId":"80817"},{"alias":"Zfp46","entrezGeneId":"80818"},{"alias":"ZNF","entrezGeneId":"80818"},{"alias":"HSPC107","entrezGeneId":"80820"},{"alias":"PA-PLA1","entrezGeneId":"80821"},{"alias":"PAPLA1","entrezGeneId":"80821"},{"alias":"SPG28","entrezGeneId":"80821"},{"alias":"GASP3","entrezGeneId":"80823"},{"alias":"p60TRP","entrezGeneId":"80823"},{"alias":"MKP-7","entrezGeneId":"80824"},{"alias":"MKP7","entrezGeneId":"80824"},{"alias":"DMS-8","entrezGeneId":"80829"},{"alias":"DSM-8","entrezGeneId":"80829"},{"alias":"FKSG11","entrezGeneId":"80829"},{"alias":"PZF","entrezGeneId":"80829"},{"alias":"ZFP-91","entrezGeneId":"80829"},{"alias":"ZNF757","entrezGeneId":"80829"},{"alias":"APOL-VI","entrezGeneId":"80830"},{"alias":"APOLVI","entrezGeneId":"80830"},{"alias":"APOL-V","entrezGeneId":"80831"},{"alias":"APOLV","entrezGeneId":"80831"},{"alias":"APOL-IV","entrezGeneId":"80832"},{"alias":"APOLIV","entrezGeneId":"80832"},{"alias":"apoL-III","entrezGeneId":"80833"},{"alias":"APOLIII","entrezGeneId":"80833"},{"alias":"CG121","entrezGeneId":"80833"},{"alias":"CG12_1","entrezGeneId":"80833"},{"alias":"GPR71","entrezGeneId":"80834"},{"alias":"T1R2","entrezGeneId":"80834"},{"alias":"TR2","entrezGeneId":"80834"},{"alias":"GM148","entrezGeneId":"80835"},{"alias":"GPR70","entrezGeneId":"80835"},{"alias":"T1R1","entrezGeneId":"80835"},{"alias":"TR1","entrezGeneId":"80835"},{"alias":"JHDM1D","entrezGeneId":"80853"},{"alias":"KMT7","entrezGeneId":"80854"},{"alias":"SET7","entrezGeneId":"80854"},{"alias":"SET7/9","entrezGeneId":"80854"},{"alias":"SET9","entrezGeneId":"80854"},{"alias":"KIAA1715","entrezGeneId":"80856"},{"alias":"LNP","entrezGeneId":"80856"},{"alias":"LNP1","entrezGeneId":"80856"},{"alias":"Ul","entrezGeneId":"80856"},{"alias":"ulnaless","entrezGeneId":"80856"},{"alias":"C6orf12","entrezGeneId":"80862"},{"alias":"HCG8","entrezGeneId":"80862"},{"alias":"HCGVIII","entrezGeneId":"80862"},{"alias":"HCGVIII-1","entrezGeneId":"80862"},{"alias":"HTEX4","entrezGeneId":"80862"},{"alias":"NCRNA00171","entrezGeneId":"80862"},{"alias":"TCTEX4","entrezGeneId":"80862"},{"alias":"ZNRD1-AS","entrezGeneId":"80862"},{"alias":"ZNRD1-AS1","entrezGeneId":"80862"},{"alias":"ZNRD1AS","entrezGeneId":"80862"},{"alias":"ZNRD1AS1","entrezGeneId":"80862"},{"alias":"C6orf31","entrezGeneId":"80863"},{"alias":"DSPD1","entrezGeneId":"80863"},{"alias":"IFITMD7","entrezGeneId":"80863"},{"alias":"NG5","entrezGeneId":"80863"},{"alias":"C6orf8","entrezGeneId":"80864"},{"alias":"NG3","entrezGeneId":"80864"},{"alias":"bCX67J3.3","entrezGeneId":"80868"},{"alias":"bPG309N1.1","entrezGeneId":"80868"},{"alias":"bQB90C11.3","entrezGeneId":"80868"},{"alias":"HCG4P6","entrezGeneId":"80868"},{"alias":"HCGIV-06","entrezGeneId":"80868"},{"alias":"HCGIV-6","entrezGeneId":"80868"},{"alias":"HCGIV.5","entrezGeneId":"80868"},{"alias":"ILKAP2","entrezGeneId":"80895"},{"alias":"ILKAP3","entrezGeneId":"80895"},{"alias":"PP2C-DELTA","entrezGeneId":"80895"},{"alias":"PPM1O","entrezGeneId":"80895"},{"alias":"C112","entrezGeneId":"80896"},{"alias":"C1orf13","entrezGeneId":"80896"},{"alias":"NAL","entrezGeneId":"80896"},{"alias":"NPL1","entrezGeneId":"80896"},{"alias":"SPINESIN","entrezGeneId":"80975"},{"alias":"CX58","entrezGeneId":"81025"},{"alias":"CX59","entrezGeneId":"81025"},{"alias":"GJA10","entrezGeneId":"81025"},{"alias":"C20orf183","entrezGeneId":"81030"},{"alias":"DAI","entrezGeneId":"81030"},{"alias":"DLM-1","entrezGeneId":"81030"},{"alias":"DLM1","entrezGeneId":"81030"},{"alias":"ATS","entrezGeneId":"81031"},{"alias":"GLUT10","entrezGeneId":"81031"},{"alias":"ERG-2","entrezGeneId":"81033"},{"alias":"ERG2","entrezGeneId":"81033"},{"alias":"hERG-2","entrezGeneId":"81033"},{"alias":"HERG2","entrezGeneId":"81033"},{"alias":"Kv11.2","entrezGeneId":"81033"},{"alias":"MFT","entrezGeneId":"81034"},{"alias":"MFTC","entrezGeneId":"81034"},{"alias":"RREI","entrezGeneId":"81034"},{"alias":"CLP1","entrezGeneId":"81035"},{"alias":"NSR2","entrezGeneId":"81035"},{"alias":"SCARA4","entrezGeneId":"81035"},{"alias":"SRCL","entrezGeneId":"81035"},{"alias":"CRR9","entrezGeneId":"81037"},{"alias":"OST740","entrezGeneId":"81047"},{"alias":"HSA1","entrezGeneId":"81050"},{"alias":"OR11H12","entrezGeneId":"81061"},{"alias":"OR22-1","entrezGeneId":"81061"},{"alias":"OR5BH2P","entrezGeneId":"81075"},{"alias":"OR21-2","entrezGeneId":"81078"},{"alias":"OR21-1","entrezGeneId":"81079"},{"alias":"OR4F11P","entrezGeneId":"81099"},{"alias":"OR4F18","entrezGeneId":"81099"},{"alias":"OR4F19","entrezGeneId":"81099"},{"alias":"OR4F5","entrezGeneId":"81099"},{"alias":"OR14-NP2","entrezGeneId":"81115"},{"alias":"OR7E34P","entrezGeneId":"81115"},{"alias":"OR7E40P","entrezGeneId":"81115"},{"alias":"OST011","entrezGeneId":"81115"},{"alias":"OST215","entrezGeneId":"81115"},{"alias":"OR14-NP1","entrezGeneId":"81116"},{"alias":"OR14-24","entrezGeneId":"81126"},{"alias":"OR14-20","entrezGeneId":"81127"},{"alias":"OR4K15Q","entrezGeneId":"81127"},{"alias":"OR5BG1P","entrezGeneId":"81153"},{"alias":"OST714","entrezGeneId":"81155"},{"alias":"OR9G6","entrezGeneId":"81160"},{"alias":"OR11-115","entrezGeneId":"81164"},{"alias":"OR11-173","entrezGeneId":"81168"},{"alias":"OR8J2P","entrezGeneId":"81169"},{"alias":"hg500","entrezGeneId":"81176"},{"alias":"OR11-1","entrezGeneId":"81176"},{"alias":"OR11-144","entrezGeneId":"81182"},{"alias":"OST730","entrezGeneId":"81185"},{"alias":"OR5G3P","entrezGeneId":"81193"},{"alias":"OR5G6P","entrezGeneId":"81193"},{"alias":"OR5BQ2P","entrezGeneId":"81202"},{"alias":"OR11-161","entrezGeneId":"81204"},{"alias":"OR11-165","entrezGeneId":"81221"},{"alias":"OR5AK3","entrezGeneId":"81228"},{"alias":"OR5AK5P","entrezGeneId":"81230"},{"alias":"OR52Y2P","entrezGeneId":"81240"},{"alias":"OR11-66","entrezGeneId":"81248"},{"alias":"OR52P1","entrezGeneId":"81248"},{"alias":"OR11-60","entrezGeneId":"81251"},{"alias":"PJCG4","entrezGeneId":"81274"},{"alias":"OR11-28","entrezGeneId":"81282"},{"alias":"OR51E3P","entrezGeneId":"81285"},{"alias":"OR52A2","entrezGeneId":"81285"},{"alias":"PSGR","entrezGeneId":"81285"},{"alias":"OR51A11P","entrezGeneId":"81295"},{"alias":"OR51A13","entrezGeneId":"81295"},{"alias":"OR4P3P","entrezGeneId":"81300"},{"alias":"OST724","entrezGeneId":"81304"},{"alias":"OR11-127","entrezGeneId":"81309"},{"alias":"OR11-134","entrezGeneId":"81309"},{"alias":"OR4A8P","entrezGeneId":"81315"},{"alias":"OR11-111","entrezGeneId":"81318"},{"alias":"OR11-117","entrezGeneId":"81327"},{"alias":"OR4A16Q","entrezGeneId":"81327"},{"alias":"OR11-118","entrezGeneId":"81328"},{"alias":"OR10W1P","entrezGeneId":"81341"},{"alias":"OR10W1Q","entrezGeneId":"81341"},{"alias":"OR11-236","entrezGeneId":"81341"},{"alias":"UNQ6469","entrezGeneId":"81341"},{"alias":"OR10-2","entrezGeneId":"81353"},{"alias":"OST704","entrezGeneId":"81353"},{"alias":"hg523","entrezGeneId":"81354"},{"alias":"hg674","entrezGeneId":"81354"},{"alias":"OR7E68P","entrezGeneId":"81354"},{"alias":"OR7E71P","entrezGeneId":"81354"},{"alias":"OR7E72P","entrezGeneId":"81354"},{"alias":"OR7E73P","entrezGeneId":"81354"},{"alias":"OR7E74P","entrezGeneId":"81354"},{"alias":"OR7E75P","entrezGeneId":"81354"},{"alias":"OR912-108","entrezGeneId":"81354"},{"alias":"OR912-109","entrezGeneId":"81354"},{"alias":"OR912-110","entrezGeneId":"81354"},{"alias":"OR912-46","entrezGeneId":"81354"},{"alias":"OR7E112P","entrezGeneId":"81358"},{"alias":"OST733","entrezGeneId":"81358"},{"alias":"OST726","entrezGeneId":"81363"},{"alias":"OR37E","entrezGeneId":"81366"},{"alias":"OR13C7P","entrezGeneId":"81377"},{"alias":"OR37C","entrezGeneId":"81377"},{"alias":"OST706","entrezGeneId":"81377"},{"alias":"OR9P2P","entrezGeneId":"81382"},{"alias":"OR4F10","entrezGeneId":"81390"},{"alias":"OR2AE2","entrezGeneId":"81392"},{"alias":"OR1-1","entrezGeneId":"81399"},{"alias":"OR7-21","entrezGeneId":"81399"},{"alias":"OR2W7P","entrezGeneId":"81406"},{"alias":"OR5M15P","entrezGeneId":"81421"},{"alias":"OST719","entrezGeneId":"81428"},{"alias":"OR7E135P","entrezGeneId":"81430"},{"alias":"OR5AC1P","entrezGeneId":"81431"},{"alias":"OR11-302","entrezGeneId":"81438"},{"alias":"UNQ9373","entrezGeneId":"81439"},{"alias":"OR1-23","entrezGeneId":"81442"},{"alias":"OR1-17","entrezGeneId":"81448"},{"alias":"OR2T7P","entrezGeneId":"81458"},{"alias":"OST723","entrezGeneId":"81458"},{"alias":"OR2L11","entrezGeneId":"81466"},{"alias":"OR2L5P","entrezGeneId":"81466"},{"alias":"OR1-33","entrezGeneId":"81469"},{"alias":"OR1-32","entrezGeneId":"81470"},{"alias":"OR2C4","entrezGeneId":"81472"},{"alias":"OR2C5P","entrezGeneId":"81472"},{"alias":"OST742","entrezGeneId":"81472"},{"alias":"OR11I2P","entrezGeneId":"81479"},{"alias":"OR10AE2P","entrezGeneId":"81486"},{"alias":"GCOM1","entrezGeneId":"81488"},{"alias":"Gdown","entrezGeneId":"81488"},{"alias":"Gdown1","entrezGeneId":"81488"},{"alias":"GRINL1A","entrezGeneId":"81488"},{"alias":"PSS2","entrezGeneId":"81490"},{"alias":"PSP24(beta)","entrezGeneId":"81491"},{"alias":"PSP24B","entrezGeneId":"81491"},{"alias":"RSHL1","entrezGeneId":"81492"},{"alias":"RSP4","entrezGeneId":"81492"},{"alias":"RSP6","entrezGeneId":"81492"},{"alias":"RSPH4B","entrezGeneId":"81492"},{"alias":"SYNC1","entrezGeneId":"81493"},{"alias":"SYNCOILIN","entrezGeneId":"81493"},{"alias":"CFHL5","entrezGeneId":"81494"},{"alias":"CFHR5D","entrezGeneId":"81494"},{"alias":"FHR-5","entrezGeneId":"81494"},{"alias":"FHR5","entrezGeneId":"81494"},{"alias":"FIND","entrezGeneId":"81501"},{"alias":"hDC-STAMP","entrezGeneId":"81501"},{"alias":"TM7SF4","entrezGeneId":"81501"},{"alias":"H13","entrezGeneId":"81502"},{"alias":"IMP1","entrezGeneId":"81502"},{"alias":"IMPAS","entrezGeneId":"81502"},{"alias":"IMPAS-1","entrezGeneId":"81502"},{"alias":"MSTP086","entrezGeneId":"81502"},{"alias":"PSENL3","entrezGeneId":"81502"},{"alias":"PSL3","entrezGeneId":"81502"},{"alias":"SPP","entrezGeneId":"81502"},{"alias":"SPPL1","entrezGeneId":"81502"},{"alias":"HCCA2","entrezGeneId":"81532"},{"alias":"2310047C21Rik","entrezGeneId":"81533"},{"alias":"CDA08","entrezGeneId":"81533"},{"alias":"LNKN-1","entrezGeneId":"81533"},{"alias":"TIP","entrezGeneId":"81533"},{"alias":"SPPase1","entrezGeneId":"81537"},{"alias":"ATA1","entrezGeneId":"81539"},{"alias":"NAT2","entrezGeneId":"81539"},{"alias":"SAT1","entrezGeneId":"81539"},{"alias":"SNAT1","entrezGeneId":"81539"},{"alias":"PDIA11","entrezGeneId":"81542"},{"alias":"TMX","entrezGeneId":"81542"},{"alias":"TXNDC","entrezGeneId":"81542"},{"alias":"TXNDC1","entrezGeneId":"81542"},{"alias":"C21orf102","entrezGeneId":"81543"},{"alias":"C21orf30","entrezGeneId":"81543"},{"alias":"LRRC3DN","entrezGeneId":"81543"},{"alias":"GDE2","entrezGeneId":"81544"},{"alias":"PP1665","entrezGeneId":"81544"},{"alias":"Fbx38","entrezGeneId":"81545"},{"alias":"HMN2D","entrezGeneId":"81545"},{"alias":"MOKA","entrezGeneId":"81545"},{"alias":"SP329","entrezGeneId":"81545"},{"alias":"RB3","entrezGeneId":"81551"},{"alias":"ECOP","entrezGeneId":"81552"},{"alias":"GASP","entrezGeneId":"81552"},{"alias":"WBP1L2","entrezGeneId":"81552"},{"alias":"WBSCR16","entrezGeneId":"81554"},{"alias":"FinGER5","entrezGeneId":"81555"},{"alias":"SB140","entrezGeneId":"81555"},{"alias":"SMAP-5","entrezGeneId":"81555"},{"alias":"SMAP5","entrezGeneId":"81555"},{"alias":"YIP1A","entrezGeneId":"81555"},{"alias":"C15orf44","entrezGeneId":"81556"},{"alias":"VWA9","entrezGeneId":"81556"},{"alias":"BIA1","entrezGeneId":"81559"},{"alias":"RNF92","entrezGeneId":"81559"},{"alias":"MRT52","entrezGeneId":"81562"},{"alias":"VIPL","entrezGeneId":"81562"},{"alias":"PIG13","entrezGeneId":"81563"},{"alias":"EOPA","entrezGeneId":"81565"},{"alias":"MITAP1","entrezGeneId":"81565"},{"alias":"NDE1L1","entrezGeneId":"81565"},{"alias":"NDE2","entrezGeneId":"81565"},{"alias":"NUDEL","entrezGeneId":"81565"},{"alias":"C12orf2","entrezGeneId":"81566"},{"alias":"C12orf22","entrezGeneId":"81566"},{"alias":"FAM130A1","entrezGeneId":"81566"},{"alias":"PPP1R72","entrezGeneId":"81566"},{"alias":"TAIP-12","entrezGeneId":"81566"},{"alias":"ENDOPDI","entrezGeneId":"81567"},{"alias":"ERP46","entrezGeneId":"81567"},{"alias":"HCC-2","entrezGeneId":"81567"},{"alias":"HCC2","entrezGeneId":"81567"},{"alias":"PDIA15","entrezGeneId":"81567"},{"alias":"STRF8","entrezGeneId":"81567"},{"alias":"UNQ364","entrezGeneId":"81567"},{"alias":"CT57","entrezGeneId":"81569"},{"alias":"ANKCLB","entrezGeneId":"81570"},{"alias":"HSP78","entrezGeneId":"81570"},{"alias":"MEGCANN","entrezGeneId":"81570"},{"alias":"MGCA7","entrezGeneId":"81570"},{"alias":"SKD3","entrezGeneId":"81570"},{"alias":"C9orf45","entrezGeneId":"81571"},{"alias":"GL012","entrezGeneId":"81571"},{"alias":"NCRNA00287","entrezGeneId":"81571"},{"alias":"C20orf126","entrezGeneId":"81572"},{"alias":"PDRG","entrezGeneId":"81572"},{"alias":"dJ677H15.3","entrezGeneId":"81573"},{"alias":"VERGE","entrezGeneId":"81575"},{"alias":"COLA1L","entrezGeneId":"81578"},{"alias":"FP633","entrezGeneId":"81578"},{"alias":"GXII","entrezGeneId":"81579"},{"alias":"PLA2G12","entrezGeneId":"81579"},{"alias":"ROSSY","entrezGeneId":"81579"},{"alias":"bA103J18.1","entrezGeneId":"81602"},{"alias":"NYD-SP15","entrezGeneId":"81602"},{"alias":"GERP","entrezGeneId":"81603"},{"alias":"RNF27","entrezGeneId":"81603"},{"alias":"C9orf74","entrezGeneId":"81605"},{"alias":"EDSS1","entrezGeneId":"81607"},{"alias":"LNIR","entrezGeneId":"81607"},{"alias":"nectin-4","entrezGeneId":"81607"},{"alias":"PRR4","entrezGeneId":"81607"},{"alias":"PVRL4","entrezGeneId":"81607"},{"alias":"FIP1","entrezGeneId":"81608"},{"alias":"hFip1","entrezGeneId":"81608"},{"alias":"Rhe","entrezGeneId":"81608"},{"alias":"MRT1","entrezGeneId":"81609"},{"alias":"MY014","entrezGeneId":"81609"},{"alias":"C20orf129","entrezGeneId":"81610"},{"alias":"CHICA","entrezGeneId":"81610"},{"alias":"dJ616B8.3","entrezGeneId":"81610"},{"alias":"LANP-L","entrezGeneId":"81611"},{"alias":"LANPL","entrezGeneId":"81611"},{"alias":"SLC57A2","entrezGeneId":"81614"},{"alias":"DC29","entrezGeneId":"81615"},{"alias":"SV31","entrezGeneId":"81615"},{"alias":"BGR","entrezGeneId":"81616"},{"alias":"BRGL","entrezGeneId":"81616"},{"alias":"PRTD-NY3","entrezGeneId":"81616"},{"alias":"PRTDNY3","entrezGeneId":"81616"},{"alias":"bA103J18.3","entrezGeneId":"81617"},{"alias":"MO25-BETA","entrezGeneId":"81617"},{"alias":"MO2L","entrezGeneId":"81617"},{"alias":"BRI3","entrezGeneId":"81618"},{"alias":"BRICD2C","entrezGeneId":"81618"},{"alias":"E25","entrezGeneId":"81618"},{"alias":"E25C","entrezGeneId":"81618"},{"alias":"ITM3","entrezGeneId":"81618"},{"alias":"DC-TM4F2","entrezGeneId":"81619"},{"alias":"TM4SF14","entrezGeneId":"81619"},{"alias":"DUP","entrezGeneId":"81620"},{"alias":"RIS2","entrezGeneId":"81620"},{"alias":"BONO1","entrezGeneId":"81621"},{"alias":"FKSG28","entrezGeneId":"81621"},{"alias":"FKSG40","entrezGeneId":"81621"},{"alias":"IGFBP-rP10","entrezGeneId":"81621"},{"alias":"IIAE1","entrezGeneId":"81622"},{"alias":"Unc-93B1","entrezGeneId":"81622"},{"alias":"UNC93","entrezGeneId":"81622"},{"alias":"UNC93B","entrezGeneId":"81622"},{"alias":"bA530N10.1","entrezGeneId":"81623"},{"alias":"C20orf8","entrezGeneId":"81623"},{"alias":"DEFB-26","entrezGeneId":"81623"},{"alias":"DEFB26","entrezGeneId":"81623"},{"alias":"hBD-26","entrezGeneId":"81623"},{"alias":"HBD26","entrezGeneId":"81623"},{"alias":"AN","entrezGeneId":"81624"},{"alias":"AUNA1","entrezGeneId":"81624"},{"alias":"DIA2","entrezGeneId":"81624"},{"alias":"diap3","entrezGeneId":"81624"},{"alias":"DRF3","entrezGeneId":"81624"},{"alias":"mDia2","entrezGeneId":"81624"},{"alias":"NSDAN","entrezGeneId":"81624"},{"alias":"C1orf14","entrezGeneId":"81626"},{"alias":"GE36","entrezGeneId":"81626"},{"alias":"bG120K12.3","entrezGeneId":"81627"},{"alias":"C1orf25","entrezGeneId":"81627"},{"alias":"MST070","entrezGeneId":"81627"},{"alias":"MSTP070","entrezGeneId":"81627"},{"alias":"TRM1L","entrezGeneId":"81627"},{"alias":"THG-1","entrezGeneId":"81628"},{"alias":"THG1","entrezGeneId":"81628"},{"alias":"TILZ2","entrezGeneId":"81628"},{"alias":"SPOGA3","entrezGeneId":"81629"},{"alias":"STK22C","entrezGeneId":"81629"},{"alias":"STK22D","entrezGeneId":"81629"},{"alias":"TSK3","entrezGeneId":"81629"},{"alias":"ATG8F","entrezGeneId":"81631"},{"alias":"LC3B","entrezGeneId":"81631"},{"alias":"MAP1A/1BLC3","entrezGeneId":"81631"},{"alias":"MAP1LC3B-a","entrezGeneId":"81631"},{"alias":"ANIA-6B","entrezGeneId":"81669"},{"alias":"CCNM","entrezGeneId":"81669"},{"alias":"CCNS","entrezGeneId":"81669"},{"alias":"HCLA-ISO","entrezGeneId":"81669"},{"alias":"HLA-ISO","entrezGeneId":"81669"},{"alias":"PCEE","entrezGeneId":"81669"},{"alias":"SB138","entrezGeneId":"81669"},{"alias":"EPG3","entrezGeneId":"81671"},{"alias":"TANGO5","entrezGeneId":"81671"},{"alias":"TMEM49","entrezGeneId":"81671"},{"alias":"dJ30M3.2","entrezGeneId":"81688"},{"alias":"Nbla00237","entrezGeneId":"81688"},{"alias":"XTP12","entrezGeneId":"81688"},{"alias":"HBLD2","entrezGeneId":"81689"},{"alias":"hIscA","entrezGeneId":"81689"},{"alias":"ISA1","entrezGeneId":"81689"},{"alias":"MMDS5","entrezGeneId":"81689"},{"alias":"NEF-sp","entrezGeneId":"81691"},{"alias":"amnionless","entrezGeneId":"81693"},{"alias":"PRO1028","entrezGeneId":"81693"},{"alias":"hs6M1-30P","entrezGeneId":"81694"},{"alias":"hs6M1-31P","entrezGeneId":"81695"},{"alias":"6M1-21","entrezGeneId":"81696"},{"alias":"hs6M1-21","entrezGeneId":"81696"},{"alias":"dJ193B12.4","entrezGeneId":"81697"},{"alias":"hs6M1-10","entrezGeneId":"81697"},{"alias":"OR2B2Q","entrezGeneId":"81697"},{"alias":"OR2B9","entrezGeneId":"81697"},{"alias":"OR6-1","entrezGeneId":"81697"},{"alias":"C15orf5","entrezGeneId":"81698"},{"alias":"HEL-205","entrezGeneId":"81704"},{"alias":"MRD2","entrezGeneId":"81704"},{"alias":"ZIR8","entrezGeneId":"81704"},{"alias":"CPI17-like","entrezGeneId":"81706"},{"alias":"KEPI","entrezGeneId":"81706"},{"alias":"NY-BR-81","entrezGeneId":"81706"},{"alias":"GNIP","entrezGeneId":"81786"},{"alias":"RNF90","entrezGeneId":"81786"},{"alias":"SNARK","entrezGeneId":"81788"},{"alias":"ADSA","entrezGeneId":"81790"},{"alias":"SNAX1","entrezGeneId":"81790"},{"alias":"PRO4389","entrezGeneId":"81792"},{"alias":"CD290","entrezGeneId":"81793"},{"alias":"ADAM-TS10","entrezGeneId":"81794"},{"alias":"ADAMTS-10","entrezGeneId":"81794"},{"alias":"WMS","entrezGeneId":"81794"},{"alias":"WMS1","entrezGeneId":"81794"},{"alias":"OATP-J","entrezGeneId":"81796"},{"alias":"OATP-RP4","entrezGeneId":"81796"},{"alias":"OATP5A1","entrezGeneId":"81796"},{"alias":"OATPJ","entrezGeneId":"81796"},{"alias":"OATPRP4","entrezGeneId":"81796"},{"alias":"SLC21A15","entrezGeneId":"81796"},{"alias":"hs6M1-27","entrezGeneId":"81797"},{"alias":"BTCL2","entrezGeneId":"81831"},{"alias":"NEOT2","entrezGeneId":"81831"},{"alias":"BCTL1","entrezGeneId":"81832"},{"alias":"BTCL1","entrezGeneId":"81832"},{"alias":"SAMP32","entrezGeneId":"81833"},{"alias":"KITENIN","entrezGeneId":"81839"},{"alias":"LPP2","entrezGeneId":"81839"},{"alias":"STB2","entrezGeneId":"81839"},{"alias":"STBM2","entrezGeneId":"81839"},{"alias":"RNF109","entrezGeneId":"81844"},{"alias":"CMT4B2","entrezGeneId":"81846"},{"alias":"DENND7B","entrezGeneId":"81846"},{"alias":"MTMR13","entrezGeneId":"81846"},{"alias":"HH17","entrezGeneId":"81848"},{"alias":"SIAT7-E","entrezGeneId":"81849"},{"alias":"SIAT7E","entrezGeneId":"81849"},{"alias":"ST6GalNAcV","entrezGeneId":"81849"},{"alias":"KAP1.2","entrezGeneId":"81850"},{"alias":"KAP1.3","entrezGeneId":"81850"},{"alias":"KAP1.6","entrezGeneId":"81850"},{"alias":"KAP1.8A","entrezGeneId":"81850"},{"alias":"KAP1.8B","entrezGeneId":"81850"},{"alias":"KAP1.9","entrezGeneId":"81850"},{"alias":"KRTAP1.3","entrezGeneId":"81850"},{"alias":"HB2A","entrezGeneId":"81851"},{"alias":"hKAP1.7","entrezGeneId":"81851"},{"alias":"KAP1.1","entrezGeneId":"81851"},{"alias":"KAP1.1A","entrezGeneId":"81851"},{"alias":"KAP1.1B","entrezGeneId":"81851"},{"alias":"KAP1.6","entrezGeneId":"81851"},{"alias":"KAP1.7","entrezGeneId":"81851"},{"alias":"KRTAP1.1","entrezGeneId":"81851"},{"alias":"KRTAP1A","entrezGeneId":"81851"},{"alias":"BA108L7.2","entrezGeneId":"81855"},{"alias":"SFX3","entrezGeneId":"81855"},{"alias":"SLC56A3","entrezGeneId":"81855"},{"alias":"ACID1","entrezGeneId":"81857"},{"alias":"ARC92","entrezGeneId":"81857"},{"alias":"BVSYS","entrezGeneId":"81857"},{"alias":"CMT2B2","entrezGeneId":"81857"},{"alias":"P78","entrezGeneId":"81857"},{"alias":"PTOV2","entrezGeneId":"81857"},{"alias":"TCBAP0758","entrezGeneId":"81857"},{"alias":"SIPL1","entrezGeneId":"81858"},{"alias":"LPRS1","entrezGeneId":"81861"},{"alias":"CAAR","entrezGeneId":"81863"},{"alias":"KAP9.5","entrezGeneId":"81870"},{"alias":"KAP9.9","entrezGeneId":"81870"},{"alias":"KRTAP9-5","entrezGeneId":"81870"},{"alias":"KRTAP9.9","entrezGeneId":"81870"},{"alias":"KAP4.15","entrezGeneId":"81871"},{"alias":"KAP4.6","entrezGeneId":"81871"},{"alias":"KRTAP4-15","entrezGeneId":"81871"},{"alias":"KRTAP4.15","entrezGeneId":"81871"},{"alias":"KAP2.1A","entrezGeneId":"81872"},{"alias":"KRTAP2.1A","entrezGeneId":"81872"},{"alias":"ARC16-2","entrezGeneId":"81873"},{"alias":"HSD38","entrezGeneId":"81875"},{"alias":"dJ475B7.2","entrezGeneId":"81887"},{"alias":"Las1-like","entrezGeneId":"81887"},{"alias":"WTS","entrezGeneId":"81887"},{"alias":"HT036","entrezGeneId":"81888"},{"alias":"C16orf36","entrezGeneId":"81889"},{"alias":"YISKL","entrezGeneId":"81889"},{"alias":"FP3235","entrezGeneId":"81890"},{"alias":"TGT","entrezGeneId":"81890"},{"alias":"TGUT","entrezGeneId":"81890"},{"alias":"C14orf156","entrezGeneId":"81892"},{"alias":"DC50","entrezGeneId":"81892"},{"alias":"PD04872","entrezGeneId":"81892"},{"alias":"DC49","entrezGeneId":"81893"},{"alias":"hLAT1-3TM","entrezGeneId":"81893"},{"alias":"LAT1-3TM","entrezGeneId":"81893"},{"alias":"MLAS","entrezGeneId":"81893"},{"alias":"MFRN2","entrezGeneId":"81894"},{"alias":"MRS3/4","entrezGeneId":"81894"},{"alias":"MRS4L","entrezGeneId":"81894"},{"alias":"NPD016","entrezGeneId":"81894"},{"alias":"C19orf27","entrezGeneId":"81926"},{"alias":"FAM108A1","entrezGeneId":"81926"},{"alias":"C20orf150","entrezGeneId":"81928"},{"alias":"dJ908M14.2","entrezGeneId":"81928"},{"alias":"ik3-2","entrezGeneId":"81928"},{"alias":"SEC13L","entrezGeneId":"81929"},{"alias":"Seh1","entrezGeneId":"81929"},{"alias":"SEH1A","entrezGeneId":"81929"},{"alias":"SEH1B","entrezGeneId":"81929"},{"alias":"MS-KIF18A","entrezGeneId":"81930"},{"alias":"PPP1R99","entrezGeneId":"81930"},{"alias":"HPF34","entrezGeneId":"81931"},{"alias":"HTF34","entrezGeneId":"81931"},{"alias":"TF34","entrezGeneId":"81931"},{"alias":"ZNF505","entrezGeneId":"81931"},{"alias":"2810435D12Rik","entrezGeneId":"81932"},{"alias":"C9orf158","entrezGeneId":"81932"},{"alias":"COX17P","entrezGeneId":"81993"},{"alias":"PCDH-PC","entrezGeneId":"83259"},{"alias":"PCDH22","entrezGeneId":"83259"},{"alias":"PCDHX","entrezGeneId":"83259"},{"alias":"PCDHY","entrezGeneId":"83259"},{"alias":"ACKR6","entrezGeneId":"83394"},{"alias":"CORD5","entrezGeneId":"83394"},{"alias":"NIR1","entrezGeneId":"83394"},{"alias":"RDGBA3","entrezGeneId":"83394"},{"alias":"CIG-30","entrezGeneId":"83401"},{"alias":"CIG30","entrezGeneId":"83401"},{"alias":"BXMAS1","entrezGeneId":"83416"},{"alias":"CD307","entrezGeneId":"83416"},{"alias":"CD307e","entrezGeneId":"83416"},{"alias":"FCRH5","entrezGeneId":"83416"},{"alias":"IRTA2","entrezGeneId":"83416"},{"alias":"PRO820","entrezGeneId":"83416"},{"alias":"CD307d","entrezGeneId":"83417"},{"alias":"FCRH4","entrezGeneId":"83417"},{"alias":"IGFP2","entrezGeneId":"83417"},{"alias":"IRTA1","entrezGeneId":"83417"},{"alias":"TCF-3","entrezGeneId":"83439"},{"alias":"TCF3","entrezGeneId":"83439"},{"alias":"2610017G09Rik","entrezGeneId":"83440"},{"alias":"ADP-GK","entrezGeneId":"83440"},{"alias":"HEL-S-297","entrezGeneId":"83442"},{"alias":"SH3BP-1","entrezGeneId":"83442"},{"alias":"TIP-B1","entrezGeneId":"83442"},{"alias":"SF3b10","entrezGeneId":"83443"},{"alias":"Ysf3","entrezGeneId":"83443"},{"alias":"hIes2","entrezGeneId":"83444"},{"alias":"HMGA1L4","entrezGeneId":"83444"},{"alias":"HMGIYL4","entrezGeneId":"83444"},{"alias":"IES2","entrezGeneId":"83444"},{"alias":"PAP-1BP","entrezGeneId":"83444"},{"alias":"PAPA-1","entrezGeneId":"83444"},{"alias":"PAPA1","entrezGeneId":"83444"},{"alias":"ZNHIT4","entrezGeneId":"83444"},{"alias":"AAC4","entrezGeneId":"83447"},{"alias":"ANT 4","entrezGeneId":"83447"},{"alias":"ANT4","entrezGeneId":"83447"},{"alias":"SFEC35kDa","entrezGeneId":"83447"},{"alias":"CFAP134","entrezGeneId":"83450"},{"alias":"LRRC48","entrezGeneId":"83450"},{"alias":"PP1226","entrezGeneId":"83451"},{"alias":"WBSCR21","entrezGeneId":"83451"},{"alias":"SMC2","entrezGeneId":"83452"},{"alias":"RAB5IFL","entrezGeneId":"83460"},{"alias":"TMEM93","entrezGeneId":"83460"},{"alias":"GRCC8","entrezGeneId":"83461"},{"alias":"TOME-1","entrezGeneId":"83461"},{"alias":"BHLHC13","entrezGeneId":"83463"},{"alias":"MAD3","entrezGeneId":"83463"},{"alias":"MYX","entrezGeneId":"83463"},{"alias":"APH-1B","entrezGeneId":"83464"},{"alias":"PRO1328","entrezGeneId":"83464"},{"alias":"PSFL","entrezGeneId":"83464"},{"alias":"TAAV688","entrezGeneId":"83464"},{"alias":"hDOHH","entrezGeneId":"83475"},{"alias":"HLRC1","entrezGeneId":"83475"},{"alias":"FILGAP","entrezGeneId":"83478"},{"alias":"p73","entrezGeneId":"83478"},{"alias":"p73RhoGAP","entrezGeneId":"83478"},{"alias":"RC-GAP72","entrezGeneId":"83478"},{"alias":"RCGAP72","entrezGeneId":"83478"},{"alias":"OFD5","entrezGeneId":"83479"},{"alias":"ZNHIT5","entrezGeneId":"83479"},{"alias":"2610020J05Rik","entrezGeneId":"83480"},{"alias":"FKSG32","entrezGeneId":"83480"},{"alias":"MRT55","entrezGeneId":"83480"},{"alias":"EPIPL","entrezGeneId":"83481"},{"alias":"EPIPL1","entrezGeneId":"83481"},{"alias":"SCRT","entrezGeneId":"83482"},{"alias":"ZNF898","entrezGeneId":"83482"},{"alias":"FELS","entrezGeneId":"83483"},{"alias":"gp68","entrezGeneId":"83483"},{"alias":"PV-1","entrezGeneId":"83483"},{"alias":"PV1","entrezGeneId":"83483"},{"alias":"CYP51P1","entrezGeneId":"83528"},{"alias":"CYP51P2","entrezGeneId":"83530"},{"alias":"GALNAC4ST-2","entrezGeneId":"83539"},{"alias":"GalNAc4ST2","entrezGeneId":"83539"},{"alias":"CDCA1","entrezGeneId":"83540"},{"alias":"CT106","entrezGeneId":"83540"},{"alias":"NUF2R","entrezGeneId":"83540"},{"alias":"bA371L19.3","entrezGeneId":"83541"},{"alias":"C20orf55","entrezGeneId":"83541"},{"alias":"F10","entrezGeneId":"83541"},{"alias":"C9orf58","entrezGeneId":"83543"},{"alias":"IBA2","entrezGeneId":"83543"},{"alias":"C14orf168","entrezGeneId":"83544"},{"alias":"CILD16","entrezGeneId":"83544"},{"alias":"LC1","entrezGeneId":"83544"},{"alias":"PP10141","entrezGeneId":"83547"},{"alias":"SEC34","entrezGeneId":"83548"},{"alias":"URK1","entrezGeneId":"83549"},{"alias":"GPCR6","entrezGeneId":"83550"},{"alias":"PAGH2","entrezGeneId":"83550"},{"alias":"PITA2","entrezGeneId":"83550"},{"alias":"GPR102","entrezGeneId":"83551"},{"alias":"TA5","entrezGeneId":"83551"},{"alias":"TaR-5","entrezGeneId":"83551"},{"alias":"TaR-8","entrezGeneId":"83551"},{"alias":"TAR5","entrezGeneId":"83551"},{"alias":"TRAR5","entrezGeneId":"83551"},{"alias":"MCOP5","entrezGeneId":"83552"},{"alias":"NNO2","entrezGeneId":"83552"},{"alias":"RD6","entrezGeneId":"83552"},{"alias":"C7orf21","entrezGeneId":"83590"},{"alias":"DULP","entrezGeneId":"83590"},{"alias":"SB144","entrezGeneId":"83590"},{"alias":"AKR1CL2","entrezGeneId":"83592"},{"alias":"AKRDC1","entrezGeneId":"83592"},{"alias":"htAKR","entrezGeneId":"83592"},{"alias":"hTSP","entrezGeneId":"83592"},{"alias":"LoopADR","entrezGeneId":"83592"},{"alias":"TAKR","entrezGeneId":"83592"},{"alias":"Maxp1","entrezGeneId":"83593"},{"alias":"NORE1","entrezGeneId":"83593"},{"alias":"NORE1A","entrezGeneId":"83593"},{"alias":"NORE1B","entrezGeneId":"83593"},{"alias":"RAPL","entrezGeneId":"83593"},{"alias":"RASSF3","entrezGeneId":"83593"},{"alias":"LTM1","entrezGeneId":"83597"},{"alias":"TMEM7","entrezGeneId":"83597"},{"alias":"Z3CXXC3","entrezGeneId":"83597"},{"alias":"LUZP3","entrezGeneId":"83598"},{"alias":"LUZP3P","entrezGeneId":"83598"},{"alias":"LUZPP1","entrezGeneId":"83598"},{"alias":"BCMP1","entrezGeneId":"83604"},{"alias":"TM4SF10","entrezGeneId":"83604"},{"alias":"VAB-9","entrezGeneId":"83604"},{"alias":"C7orf22","entrezGeneId":"83605"},{"alias":"OSM","entrezGeneId":"83605"},{"alias":"PP10187","entrezGeneId":"83605"},{"alias":"C22orf13","entrezGeneId":"83606"},{"alias":"LLN4","entrezGeneId":"83606"},{"alias":"HsT3108","entrezGeneId":"83608"},{"alias":"PNAS-124","entrezGeneId":"83608"},{"alias":"PNAS-131","entrezGeneId":"83608"},{"alias":"XTP13","entrezGeneId":"83608"},{"alias":"MPAN","entrezGeneId":"83636"},{"alias":"NBIA3","entrezGeneId":"83636"},{"alias":"NBIA4","entrezGeneId":"83636"},{"alias":"SPG43","entrezGeneId":"83636"},{"alias":"hZIMP7","entrezGeneId":"83637"},{"alias":"NET27","entrezGeneId":"83637"},{"alias":"TRAFIP20","entrezGeneId":"83637"},{"alias":"ZIMP7","entrezGeneId":"83637"},{"alias":"BLES03","entrezGeneId":"83638"},{"alias":"P5326","entrezGeneId":"83638"},{"alias":"CT131","entrezGeneId":"83639"},{"alias":"GTPR867","entrezGeneId":"83639"},{"alias":"NYD-SP8","entrezGeneId":"83639"},{"alias":"PRO1884","entrezGeneId":"83639"},{"alias":"SGRG","entrezGeneId":"83639"},{"alias":"SPATA44","entrezGeneId":"83639"},{"alias":"TES101RP","entrezGeneId":"83639"},{"alias":"C15orf18","entrezGeneId":"83640"},{"alias":"FAM103A1","entrezGeneId":"83640"},{"alias":"HsT19360","entrezGeneId":"83640"},{"alias":"RAM","entrezGeneId":"83640"},{"alias":"C10orf45","entrezGeneId":"83641"},{"alias":"HITS","entrezGeneId":"83641"},{"alias":"SELO","entrezGeneId":"83642"},{"alias":"C8orf8","entrezGeneId":"83647"},{"alias":"C8orf13","entrezGeneId":"83648"},{"alias":"D8S265","entrezGeneId":"83648"},{"alias":"AMAC","entrezGeneId":"83650"},{"alias":"AMAC1L2","entrezGeneId":"83650"},{"alias":"C8orf14","entrezGeneId":"83655"},{"alias":"NCRNA00208","entrezGeneId":"83655"},{"alias":"VIR35","entrezGeneId":"83655"},{"alias":"C8orf12","entrezGeneId":"83656"},{"alias":"DNCL2B","entrezGeneId":"83657"},{"alias":"DNLC2B","entrezGeneId":"83657"},{"alias":"ROBLD2","entrezGeneId":"83657"},{"alias":"BITH","entrezGeneId":"83658"},{"alias":"BLP","entrezGeneId":"83658"},{"alias":"DNCL2A","entrezGeneId":"83658"},{"alias":"DNLC2A","entrezGeneId":"83658"},{"alias":"ROBLD1","entrezGeneId":"83658"},{"alias":"ILWEQ","entrezGeneId":"83660"},{"alias":"4SPAN4","entrezGeneId":"83661"},{"alias":"CD20L5","entrezGeneId":"83661"},{"alias":"MS4A4","entrezGeneId":"83661"},{"alias":"MS4A8B","entrezGeneId":"83661"},{"alias":"ARTD9","entrezGeneId":"83666"},{"alias":"BAL","entrezGeneId":"83666"},{"alias":"BAL1","entrezGeneId":"83666"},{"alias":"MGC:7868","entrezGeneId":"83666"},{"alias":"HI95","entrezGeneId":"83667"},{"alias":"SES2","entrezGeneId":"83667"},{"alias":"SEST2","entrezGeneId":"83667"},{"alias":"CRISP-10","entrezGeneId":"83690"},{"alias":"CRISP10","entrezGeneId":"83690"},{"alias":"LCRISP1","entrezGeneId":"83690"},{"alias":"CD99B","entrezGeneId":"83692"},{"alias":"MIC2L1","entrezGeneId":"83692"},{"alias":"SDR12C3","entrezGeneId":"83693"},{"alias":"RSKL2","entrezGeneId":"83694"},{"alias":"C12orf32","entrezGeneId":"83695"},{"alias":"HKMT1188","entrezGeneId":"83695"},{"alias":"RHINO","entrezGeneId":"83695"},{"alias":"IBP","entrezGeneId":"83696"},{"alias":"IKBKBBP","entrezGeneId":"83696"},{"alias":"MRT13","entrezGeneId":"83696"},{"alias":"NIBP","entrezGeneId":"83696"},{"alias":"T1","entrezGeneId":"83696"},{"alias":"TRS120","entrezGeneId":"83696"},{"alias":"AE4","entrezGeneId":"83697"},{"alias":"CABP8","entrezGeneId":"83698"},{"alias":"JAM-2","entrezGeneId":"83700"},{"alias":"JAM-3","entrezGeneId":"83700"},{"alias":"JAM-C","entrezGeneId":"83700"},{"alias":"JAMC","entrezGeneId":"83700"},{"alias":"KIND3","entrezGeneId":"83706"},{"alias":"MIG-2","entrezGeneId":"83706"},{"alias":"MIG2B","entrezGeneId":"83706"},{"alias":"UNC112C","entrezGeneId":"83706"},{"alias":"URP2","entrezGeneId":"83706"},{"alias":"URP2SF","entrezGeneId":"83706"},{"alias":"DFNB36","entrezGeneId":"83715"},{"alias":"LP2654","entrezGeneId":"83715"},{"alias":"CRISP11","entrezGeneId":"83716"},{"alias":"LCRISP2","entrezGeneId":"83716"},{"alias":"LGL1","entrezGeneId":"83716"},{"alias":"FP1188","entrezGeneId":"83723"},{"alias":"AD034","entrezGeneId":"83732"},{"alias":"bA288G3.1","entrezGeneId":"83732"},{"alias":"RIO1","entrezGeneId":"83732"},{"alias":"RRP10","entrezGeneId":"83732"},{"alias":"GC2","entrezGeneId":"83733"},{"alias":"APG10","entrezGeneId":"83734"},{"alias":"APG10L","entrezGeneId":"83734"},{"alias":"pp12616","entrezGeneId":"83734"},{"alias":"ADMFD","entrezGeneId":"83737"},{"alias":"AIF4","entrezGeneId":"83737"},{"alias":"AIP4","entrezGeneId":"83737"},{"alias":"NAPP1","entrezGeneId":"83737"},{"alias":"H2ABBD","entrezGeneId":"83740"},{"alias":"H2AFB","entrezGeneId":"83740"},{"alias":"TFAP2BL1","entrezGeneId":"83741"},{"alias":"bA548K23.8","entrezGeneId":"83742"},{"alias":"GB14","entrezGeneId":"83742"},{"alias":"MARVD1","entrezGeneId":"83742"},{"alias":"MRVLDC1","entrezGeneId":"83742"},{"alias":"CDW4","entrezGeneId":"83743"},{"alias":"GRWD","entrezGeneId":"83743"},{"alias":"RRB1","entrezGeneId":"83743"},{"alias":"WDR28","entrezGeneId":"83743"},{"alias":"BA526D8.4","entrezGeneId":"83744"},{"alias":"H-l(3)mbt-l","entrezGeneId":"83746"},{"alias":"L3MBT","entrezGeneId":"83746"},{"alias":"LONP","entrezGeneId":"83752"},{"alias":"LONPL","entrezGeneId":"83752"},{"alias":"PLON","entrezGeneId":"83752"},{"alias":"PSLON","entrezGeneId":"83752"},{"alias":"KAP4.12","entrezGeneId":"83755"},{"alias":"KRTAP4.12","entrezGeneId":"83755"},{"alias":"T1R3","entrezGeneId":"83756"},{"alias":"CYP2G2","entrezGeneId":"83757"},{"alias":"CYP2GP2","entrezGeneId":"83757"},{"alias":"CRBP-III","entrezGeneId":"83758"},{"alias":"CRBP3","entrezGeneId":"83758"},{"alias":"CRBPIII","entrezGeneId":"83758"},{"alias":"HRBPiso","entrezGeneId":"83758"},{"alias":"RBM30","entrezGeneId":"83759"},{"alias":"RBM4L","entrezGeneId":"83759"},{"alias":"ZCCHC15","entrezGeneId":"83759"},{"alias":"ZCCHC21B","entrezGeneId":"83759"},{"alias":"ZCRB3B","entrezGeneId":"83759"},{"alias":"FKSG44","entrezGeneId":"83786"},{"alias":"PNAS-112","entrezGeneId":"83787"},{"alias":"PNAS112","entrezGeneId":"83787"},{"alias":"PSEC0198","entrezGeneId":"83787"},{"alias":"SVH","entrezGeneId":"83787"},{"alias":"K2p16.1","entrezGeneId":"83795"},{"alias":"TALK-1","entrezGeneId":"83795"},{"alias":"TALK1","entrezGeneId":"83795"},{"alias":"CHR10SYT","entrezGeneId":"83849"},{"alias":"sytXV","entrezGeneId":"83849"},{"alias":"CHR3SYT","entrezGeneId":"83850"},{"alias":"E-Syt3","entrezGeneId":"83850"},{"alias":"FAM62C","entrezGeneId":"83850"},{"alias":"CHR14SYT","entrezGeneId":"83851"},{"alias":"Strep14","entrezGeneId":"83851"},{"alias":"SYT14L","entrezGeneId":"83851"},{"alias":"syt14r","entrezGeneId":"83851"},{"alias":"yt14r","entrezGeneId":"83851"},{"alias":"C13orf4","entrezGeneId":"83852"},{"alias":"CLLD8","entrezGeneId":"83852"},{"alias":"CLLL8","entrezGeneId":"83852"},{"alias":"KMT1F","entrezGeneId":"83852"},{"alias":"ASP","entrezGeneId":"83853"},{"alias":"RSPH11","entrezGeneId":"83853"},{"alias":"AGF","entrezGeneId":"83854"},{"alias":"ARP5","entrezGeneId":"83854"},{"alias":"BTEB4","entrezGeneId":"83855"},{"alias":"DRRF","entrezGeneId":"83855"},{"alias":"NSLP2","entrezGeneId":"83855"},{"alias":"CCDC10","entrezGeneId":"83856"},{"alias":"CSDUFD1","entrezGeneId":"83856"},{"alias":"FSD1CL","entrezGeneId":"83856"},{"alias":"FSD1NL","entrezGeneId":"83856"},{"alias":"MIR1","entrezGeneId":"83856"},{"alias":"ARG99","entrezGeneId":"83857"},{"alias":"OLF","entrezGeneId":"83857"},{"alias":"TMTC1A","entrezGeneId":"83857"},{"alias":"AAA-TOB3","entrezGeneId":"83858"},{"alias":"TOB3","entrezGeneId":"83858"},{"alias":"TAF140","entrezGeneId":"83860"},{"alias":"TAFII-140","entrezGeneId":"83860"},{"alias":"TAFII140","entrezGeneId":"83860"},{"alias":"CILD32","entrezGeneId":"83861"},{"alias":"dJ111C20.1","entrezGeneId":"83861"},{"alias":"RSHL2","entrezGeneId":"83861"},{"alias":"RSP3","entrezGeneId":"83861"},{"alias":"NET29","entrezGeneId":"83862"},{"alias":"TMPIT","entrezGeneId":"83862"},{"alias":"LINC00126","entrezGeneId":"83863"},{"alias":"NCRNA00126","entrezGeneId":"83863"},{"alias":"TTY5","entrezGeneId":"83863"},{"alias":"NCRNA00131","entrezGeneId":"83864"},{"alias":"TTTY9","entrezGeneId":"83864"},{"alias":"TTY9","entrezGeneId":"83864"},{"alias":"NCRNA00134","entrezGeneId":"83866"},{"alias":"TTY11","entrezGeneId":"83866"},{"alias":"NCRNA00135","entrezGeneId":"83867"},{"alias":"TTY11","entrezGeneId":"83867"},{"alias":"TTY12","entrezGeneId":"83867"},{"alias":"NCRNA00136","entrezGeneId":"83868"},{"alias":"TTY13","entrezGeneId":"83868"},{"alias":"CYorf14","entrezGeneId":"83869"},{"alias":"NCRNA00137","entrezGeneId":"83869"},{"alias":"NCRNA00185","entrezGeneId":"83869"},{"alias":"PRO2834","entrezGeneId":"83869"},{"alias":"TTY14","entrezGeneId":"83869"},{"alias":"NARR","entrezGeneId":"83871"},{"alias":"RAB39","entrezGeneId":"83871"},{"alias":"RAH","entrezGeneId":"83871"},{"alias":"ARMD1","entrezGeneId":"83872"},{"alias":"FBLN6","entrezGeneId":"83872"},{"alias":"FIBL-6","entrezGeneId":"83872"},{"alias":"FIBL6","entrezGeneId":"83872"},{"alias":"BALGR","entrezGeneId":"83873"},{"alias":"GPCR3","entrezGeneId":"83873"},{"alias":"dJ130H16.1","entrezGeneId":"83874"},{"alias":"dJ130H16.2","entrezGeneId":"83874"},{"alias":"EPI64","entrezGeneId":"83874"},{"alias":"TBC1D10","entrezGeneId":"83874"},{"alias":"B-DIOX-II","entrezGeneId":"83875"},{"alias":"BCDO2","entrezGeneId":"83875"},{"alias":"B29","entrezGeneId":"83876"},{"alias":"C18orf3","entrezGeneId":"83876"},{"alias":"BLP1","entrezGeneId":"83877"},{"alias":"AIEBP","entrezGeneId":"83878"},{"alias":"MCC2","entrezGeneId":"83878"},{"alias":"ICF3","entrezGeneId":"83879"},{"alias":"JPO1","entrezGeneId":"83879"},{"alias":"IFP38","entrezGeneId":"83880"},{"alias":"MILD1","entrezGeneId":"83881"},{"alias":"MIX","entrezGeneId":"83881"},{"alias":"MIXL","entrezGeneId":"83881"},{"alias":"OCSP","entrezGeneId":"83882"},{"alias":"ORC2","entrezGeneId":"83884"},{"alias":"ORNT2","entrezGeneId":"83884"},{"alias":"CAPH2","entrezGeneId":"83886"},{"alias":"MPN","entrezGeneId":"83886"},{"alias":"C6orf104","entrezGeneId":"83887"},{"alias":"dJ366N23.3","entrezGeneId":"83887"},{"alias":"NYD-TSPG","entrezGeneId":"83887"},{"alias":"HBP17RP","entrezGeneId":"83888"},{"alias":"KSP37","entrezGeneId":"83888"},{"alias":"NYD-SP11","entrezGeneId":"83889"},{"alias":"NYD-SP16","entrezGeneId":"83890"},{"alias":"MSTP043","entrezGeneId":"83891"},{"alias":"SBBI31","entrezGeneId":"83891"},{"alias":"BTBD28","entrezGeneId":"83892"},{"alias":"hBACURD3","entrezGeneId":"83892"},{"alias":"MSTP028","entrezGeneId":"83892"},{"alias":"ULRO61","entrezGeneId":"83892"},{"alias":"NYD-SP12","entrezGeneId":"83893"},{"alias":"SPGF6","entrezGeneId":"83893"},{"alias":"NYD-SP14","entrezGeneId":"83894"},{"alias":"TBPP2A","entrezGeneId":"83894"},{"alias":"KAP1.5","entrezGeneId":"83895"},{"alias":"KRTAP1.5","entrezGeneId":"83895"},{"alias":"KAP3.1","entrezGeneId":"83896"},{"alias":"KRTAP3.1","entrezGeneId":"83896"},{"alias":"KAP3.2","entrezGeneId":"83897"},{"alias":"KRTAP3.2","entrezGeneId":"83897"},{"alias":"KAP9.2","entrezGeneId":"83899"},{"alias":"KRTAP9.2","entrezGeneId":"83899"},{"alias":"KAP9.3","entrezGeneId":"83900"},{"alias":"KRTAP9.3","entrezGeneId":"83900"},{"alias":"KAP9.8","entrezGeneId":"83901"},{"alias":"KRTAP9.8","entrezGeneId":"83901"},{"alias":"KAP17.1","entrezGeneId":"83902"},{"alias":"KRTAP16.1","entrezGeneId":"83902"},{"alias":"KRTAP17.1","entrezGeneId":"83902"},{"alias":"GSG2","entrezGeneId":"83903"},{"alias":"MENTHO","entrezGeneId":"83930"},{"alias":"SgK495","entrezGeneId":"83931"},{"alias":"SHIK","entrezGeneId":"83931"},{"alias":"C1orf124","entrezGeneId":"83932"},{"alias":"DVC1","entrezGeneId":"83932"},{"alias":"PRO4323","entrezGeneId":"83932"},{"alias":"spartan","entrezGeneId":"83932"},{"alias":"HD10","entrezGeneId":"83933"},{"alias":"AD037","entrezGeneId":"83937"},{"alias":"C10orf11","entrezGeneId":"83938"},{"alias":"CDA017","entrezGeneId":"83938"},{"alias":"CDA02","entrezGeneId":"83939"},{"alias":"EIF-2A","entrezGeneId":"83939"},{"alias":"MST089","entrezGeneId":"83939"},{"alias":"MSTP004","entrezGeneId":"83939"},{"alias":"MSTP089","entrezGeneId":"83939"},{"alias":"CDA11","entrezGeneId":"83940"},{"alias":"BBP","entrezGeneId":"83941"},{"alias":"FKSG81","entrezGeneId":"83942"},{"alias":"SPOGA4","entrezGeneId":"83942"},{"alias":"STK22D","entrezGeneId":"83942"},{"alias":"TSK1","entrezGeneId":"83942"},{"alias":"TSSK1","entrezGeneId":"83942"},{"alias":"IMMP2L-IT1","entrezGeneId":"83943"},{"alias":"IMP2","entrezGeneId":"83943"},{"alias":"IMP2-LIKE","entrezGeneId":"83943"},{"alias":"CD351","entrezGeneId":"83953"},{"alias":"FCA/MR","entrezGeneId":"83953"},{"alias":"FKSG87","entrezGeneId":"83953"},{"alias":"FKSG17","entrezGeneId":"83955"},{"alias":"FKSG42","entrezGeneId":"83956"},{"alias":"BTR1","entrezGeneId":"83959"},{"alias":"CDPD1","entrezGeneId":"83959"},{"alias":"CHED","entrezGeneId":"83959"},{"alias":"CHED2","entrezGeneId":"83959"},{"alias":"dJ794I6.2","entrezGeneId":"83959"},{"alias":"NABC1","entrezGeneId":"83959"},{"alias":"FAM14A","entrezGeneId":"83982"},{"alias":"ISG12B","entrezGeneId":"83982"},{"alias":"TLH29","entrezGeneId":"83982"},{"alias":"CT72","entrezGeneId":"83983"},{"alias":"FKSG82","entrezGeneId":"83983"},{"alias":"SSTK","entrezGeneId":"83983"},{"alias":"TSSK4","entrezGeneId":"83983"},{"alias":"HSpin1","entrezGeneId":"83985"},{"alias":"LAT","entrezGeneId":"83985"},{"alias":"nrs","entrezGeneId":"83985"},{"alias":"PP2030","entrezGeneId":"83985"},{"alias":"SPIN1","entrezGeneId":"83985"},{"alias":"SPINL","entrezGeneId":"83985"},{"alias":"C16orf9","entrezGeneId":"83986"},{"alias":"gs19","entrezGeneId":"83986"},{"alias":"ITFG3","entrezGeneId":"83986"},{"alias":"3M3","entrezGeneId":"83987"},{"alias":"p90","entrezGeneId":"83987"},{"alias":"PPP1R20","entrezGeneId":"83987"},{"alias":"C5orf21","entrezGeneId":"83989"},{"alias":"BACH1","entrezGeneId":"83990"},{"alias":"FANCJ","entrezGeneId":"83990"},{"alias":"OF","entrezGeneId":"83990"},{"alias":"C7orf8","entrezGeneId":"83992"},{"alias":"CORTBP2","entrezGeneId":"83992"},{"alias":"Orf4","entrezGeneId":"83992"},{"alias":"GISP","entrezGeneId":"83998"},{"alias":"REG-IV","entrezGeneId":"83998"},{"alias":"RELP","entrezGeneId":"83998"},{"alias":"ECTD13","entrezGeneId":"83999"},{"alias":"KREMEN","entrezGeneId":"83999"},{"alias":"KRM1","entrezGeneId":"83999"},{"alias":"MSP","entrezGeneId":"84000"},{"alias":"MSPL","entrezGeneId":"84000"},{"alias":"MSPS","entrezGeneId":"84000"},{"alias":"TMPRSS11","entrezGeneId":"84000"},{"alias":"B3GN-T5","entrezGeneId":"84002"},{"alias":"beta3Gn-T5","entrezGeneId":"84002"},{"alias":"ARHGEF30","entrezGeneId":"84033"},{"alias":"UNC89","entrezGeneId":"84033"},{"alias":"EMILIN-2","entrezGeneId":"84034"},{"alias":"FOAP-10","entrezGeneId":"84034"},{"alias":"PCDH-PSI5","entrezGeneId":"84054"},{"alias":"PCDHB19","entrezGeneId":"84054"},{"alias":"PSI6","entrezGeneId":"84055"},{"alias":"GAJ","entrezGeneId":"84057"},{"alias":"FEB4","entrezGeneId":"84059"},{"alias":"GPR98","entrezGeneId":"84059"},{"alias":"MASS1","entrezGeneId":"84059"},{"alias":"USH2B","entrezGeneId":"84059"},{"alias":"USH2C","entrezGeneId":"84059"},{"alias":"VLGR1","entrezGeneId":"84059"},{"alias":"VLGR1b","entrezGeneId":"84059"},{"alias":"C7orf64","entrezGeneId":"84060"},{"alias":"HSPC304","entrezGeneId":"84060"},{"alias":"bA217H1.1","entrezGeneId":"84061"},{"alias":"IAP","entrezGeneId":"84061"},{"alias":"MRX95","entrezGeneId":"84061"},{"alias":"OST3B","entrezGeneId":"84061"},{"alias":"PRO0756","entrezGeneId":"84061"},{"alias":"XMEN","entrezGeneId":"84061"},{"alias":"BLOC1S8","entrezGeneId":"84062"},{"alias":"DBND","entrezGeneId":"84062"},{"alias":"HPS7","entrezGeneId":"84062"},{"alias":"My031","entrezGeneId":"84062"},{"alias":"SDY","entrezGeneId":"84062"},{"alias":"FILTRIN","entrezGeneId":"84063"},{"alias":"NEPH3","entrezGeneId":"84063"},{"alias":"NLG1","entrezGeneId":"84063"},{"alias":"3110052N05Rik","entrezGeneId":"84064"},{"alias":"HEL-S-301","entrezGeneId":"84064"},{"alias":"C1orf160","entrezGeneId":"84065"},{"alias":"C1orf49","entrezGeneId":"84066"},{"alias":"TSC24","entrezGeneId":"84066"},{"alias":"C11orf56","entrezGeneId":"84067"},{"alias":"FHIP","entrezGeneId":"84067"},{"alias":"C4orf13","entrezGeneId":"84068"},{"alias":"P7","entrezGeneId":"84068"},{"alias":"CLPABP","entrezGeneId":"84069"},{"alias":"C12orf25","entrezGeneId":"84070"},{"alias":"bA787I22.1","entrezGeneId":"84071"},{"alias":"CT46","entrezGeneId":"84072"},{"alias":"NOHMA","entrezGeneId":"84072"},{"alias":"AMAP-1","entrezGeneId":"84073"},{"alias":"AMAP1","entrezGeneId":"84073"},{"alias":"C14orf155","entrezGeneId":"84075"},{"alias":"PP12899","entrezGeneId":"84079"},{"alias":"VARP","entrezGeneId":"84079"},{"alias":"C16orf48","entrezGeneId":"84080"},{"alias":"DAKV6410","entrezGeneId":"84080"},{"alias":"CCDC55","entrezGeneId":"84081"},{"alias":"HSPC095","entrezGeneId":"84081"},{"alias":"NSrp70","entrezGeneId":"84081"},{"alias":"4933425L19Rik","entrezGeneId":"84083"},{"alias":"AH2","entrezGeneId":"84083"},{"alias":"WTH3","entrezGeneId":"84084"},{"alias":"Fbx30","entrezGeneId":"84085"},{"alias":"IGLC/OR22-2","entrezGeneId":"84086"},{"alias":"lambdavg1","entrezGeneId":"84089"},{"alias":"lambdavg3","entrezGeneId":"84090"},{"alias":"Lvg2","entrezGeneId":"84091"},{"alias":"IGLC/OR22-1","entrezGeneId":"84096"},{"alias":"BBS3","entrezGeneId":"84100"},{"alias":"RP55","entrezGeneId":"84100"},{"alias":"SLC41A1-L1","entrezGeneId":"84102"},{"alias":"DCOH2","entrezGeneId":"84105"},{"alias":"DCOHM","entrezGeneId":"84105"},{"alias":"PHS2","entrezGeneId":"84105"},{"alias":"PML-RAR","entrezGeneId":"84106"},{"alias":"PRAM-1","entrezGeneId":"84106"},{"alias":"MBLR","entrezGeneId":"84108"},{"alias":"RNF134","entrezGeneId":"84108"},{"alias":"AQ27","entrezGeneId":"84109"},{"alias":"GPR103","entrezGeneId":"84109"},{"alias":"SP9155","entrezGeneId":"84109"},{"alias":"ZKSCAN14","entrezGeneId":"84124"},{"alias":"ZSCAN46","entrezGeneId":"84124"},{"alias":"NET16","entrezGeneId":"84128"},{"alias":"UTP17","entrezGeneId":"84128"},{"alias":"ACAD-11","entrezGeneId":"84129"},{"alias":"C9orf81","entrezGeneId":"84131"},{"alias":"CRDHL","entrezGeneId":"84131"},{"alias":"IP63","entrezGeneId":"84131"},{"alias":"BK747E2.3","entrezGeneId":"84133"},{"alias":"RNF203","entrezGeneId":"84133"},{"alias":"TOMM40B","entrezGeneId":"84134"},{"alias":"NET21","entrezGeneId":"84135"},{"alias":"RP28","entrezGeneId":"84140"},{"alias":"FAM176A","entrezGeneId":"84141"},{"alias":"TMEM166","entrezGeneId":"84141"},{"alias":"ABRA1","entrezGeneId":"84142"},{"alias":"CCDC98","entrezGeneId":"84142"},{"alias":"FAM175A","entrezGeneId":"84142"},{"alias":"BM-005","entrezGeneId":"84146"},{"alias":"MYP21","entrezGeneId":"84146"},{"alias":"NatF","entrezGeneId":"84146"},{"alias":"ZEP-2","entrezGeneId":"84146"},{"alias":"hMOF","entrezGeneId":"84148"},{"alias":"MOF","entrezGeneId":"84148"},{"alias":"MYST1","entrezGeneId":"84148"},{"alias":"ZC2HC8","entrezGeneId":"84148"},{"alias":"DARPP-32","entrezGeneId":"84152"},{"alias":"DARPP32","entrezGeneId":"84152"},{"alias":"AGS3","entrezGeneId":"84153"},{"alias":"AYP1","entrezGeneId":"84153"},{"alias":"bA397G5.4","entrezGeneId":"84154"},{"alias":"BXDC1","entrezGeneId":"84154"},{"alias":"DESRT","entrezGeneId":"84159"},{"alias":"MRF-2","entrezGeneId":"84159"},{"alias":"MRF2","entrezGeneId":"84159"},{"alias":"ALKKUCS","entrezGeneId":"84162"},{"alias":"FSA","entrezGeneId":"84162"},{"alias":"Tweek","entrezGeneId":"84162"},{"alias":"FP630","entrezGeneId":"84163"},{"alias":"GTF2IRD2 alpha","entrezGeneId":"84163"},{"alias":"GTF2IRD2A","entrezGeneId":"84163"},{"alias":"ASC1p100","entrezGeneId":"84164"},{"alias":"p100","entrezGeneId":"84164"},{"alias":"CLR16.1","entrezGeneId":"84166"},{"alias":"NOD27","entrezGeneId":"84166"},{"alias":"NOD4","entrezGeneId":"84166"},{"alias":"ATR","entrezGeneId":"84168"},{"alias":"GAPO","entrezGeneId":"84168"},{"alias":"TEM8","entrezGeneId":"84168"},{"alias":"LOXC","entrezGeneId":"84171"},{"alias":"RPA135","entrezGeneId":"84172"},{"alias":"RPA2","entrezGeneId":"84172"},{"alias":"Rpo1-2","entrezGeneId":"84172"},{"alias":"DFNB88","entrezGeneId":"84173"},{"alias":"LST3","entrezGeneId":"84173"},{"alias":"RBED1","entrezGeneId":"84173"},{"alias":"RBM29","entrezGeneId":"84173"},{"alias":"C20orf156","entrezGeneId":"84174"},{"alias":"MARS","entrezGeneId":"84174"},{"alias":"SLAP-2","entrezGeneId":"84174"},{"alias":"SLAP2","entrezGeneId":"84174"},{"alias":"MHC20","entrezGeneId":"84176"},{"alias":"MYH16P","entrezGeneId":"84176"},{"alias":"MYH5","entrezGeneId":"84176"},{"alias":"LP2561","entrezGeneId":"84179"},{"alias":"MFSD7","entrezGeneId":"84179"},{"alias":"CHD-6","entrezGeneId":"84181"},{"alias":"CHD5","entrezGeneId":"84181"},{"alias":"RIGB","entrezGeneId":"84181"},{"alias":"C7orf67","entrezGeneId":"84182"},{"alias":"FAM188B","entrezGeneId":"84182"},{"alias":"AIR1","entrezGeneId":"84186"},{"alias":"HSPC086","entrezGeneId":"84186"},{"alias":"bB360B22.3","entrezGeneId":"84187"},{"alias":"MLSTD2","entrezGeneId":"84188"},{"alias":"PFCRD","entrezGeneId":"84188"},{"alias":"SDR10E1","entrezGeneId":"84188"},{"alias":"DFNMYP","entrezGeneId":"84189"},{"alias":"C12orf26","entrezGeneId":"84190"},{"alias":"CIA2A","entrezGeneId":"84191"},{"alias":"C14orf154","entrezGeneId":"84193"},{"alias":"RAP1GA1","entrezGeneId":"84196"},{"alias":"USP31","entrezGeneId":"84196"},{"alias":"MDDGA12","entrezGeneId":"84197"},{"alias":"MDDGC12","entrezGeneId":"84197"},{"alias":"SGK196","entrezGeneId":"84197"},{"alias":"SPTRX","entrezGeneId":"84203"},{"alias":"SPTRX1","entrezGeneId":"84203"},{"alias":"MEX-3B","entrezGeneId":"84206"},{"alias":"RKHD3","entrezGeneId":"84206"},{"alias":"RNF195","entrezGeneId":"84206"},{"alias":"ANKRD20A","entrezGeneId":"84210"},{"alias":"TBC1D3","entrezGeneId":"84218"},{"alias":"C16orf21","entrezGeneId":"84219"},{"alias":"JFP7","entrezGeneId":"84219"},{"alias":"BS-63","entrezGeneId":"84220"},{"alias":"BS63","entrezGeneId":"84220"},{"alias":"HEL161","entrezGeneId":"84220"},{"alias":"RGP5","entrezGeneId":"84220"},{"alias":"C21orf56","entrezGeneId":"84221"},{"alias":"TMEM191AP","entrezGeneId":"84222"},{"alias":"CFAP122","entrezGeneId":"84223"},{"alias":"DRC9","entrezGeneId":"84223"},{"alias":"AE2","entrezGeneId":"84224"},{"alias":"SPGF14","entrezGeneId":"84225"},{"alias":"C16orf50","entrezGeneId":"84229"},{"alias":"CCDC135","entrezGeneId":"84229"},{"alias":"CFAP50","entrezGeneId":"84229"},{"alias":"FAP50","entrezGeneId":"84229"},{"alias":"AD158","entrezGeneId":"84230"},{"alias":"FAD158","entrezGeneId":"84230"},{"alias":"RFWD1","entrezGeneId":"84231"},{"alias":"RNF119","entrezGeneId":"84231"},{"alias":"OPA7","entrezGeneId":"84233"},{"alias":"RHBDL4","entrezGeneId":"84236"},{"alias":"RRP4","entrezGeneId":"84236"},{"alias":"PPP1R41","entrezGeneId":"84240"},{"alias":"DHHC-18","entrezGeneId":"84243"},{"alias":"DHHC18","entrezGeneId":"84243"},{"alias":"M1Pi","entrezGeneId":"84245"},{"alias":"MRDI","entrezGeneId":"84245"},{"alias":"MTNA","entrezGeneId":"84245"},{"alias":"Ypr118w","entrezGeneId":"84245"},{"alias":"L6","entrezGeneId":"84246"},{"alias":"NUT2","entrezGeneId":"84246"},{"alias":"TRG20","entrezGeneId":"84246"},{"alias":"dJ1033E15.2","entrezGeneId":"84247"},{"alias":"LDOC1L","entrezGeneId":"84247"},{"alias":"Mar6","entrezGeneId":"84247"},{"alias":"Mart6","entrezGeneId":"84247"},{"alias":"SIRH3","entrezGeneId":"84247"},{"alias":"UIF","entrezGeneId":"84248"},{"alias":"EFA6C","entrezGeneId":"84249"},{"alias":"ANKRD32","entrezGeneId":"84250"},{"alias":"BRCTD1","entrezGeneId":"84250"},{"alias":"BRCTx","entrezGeneId":"84250"},{"alias":"bA356B19.1","entrezGeneId":"84253"},{"alias":"CAMKKA","entrezGeneId":"84254"},{"alias":"SytIII","entrezGeneId":"84258"},{"alias":"SCCRO5","entrezGeneId":"84259"},{"alias":"TpMs","entrezGeneId":"84260"},{"alias":"Fbw9","entrezGeneId":"84261"},{"alias":"C7orf48","entrezGeneId":"84262"},{"alias":"PAC3","entrezGeneId":"84262"},{"alias":"C9orf99","entrezGeneId":"84263"},{"alias":"SDR13C1","entrezGeneId":"84263"},{"alias":"flj32422","entrezGeneId":"84265"},{"alias":"RPC32HOM","entrezGeneId":"84265"},{"alias":"ABH7","entrezGeneId":"84266"},{"alias":"SPATA11","entrezGeneId":"84266"},{"alias":"UNQ6002","entrezGeneId":"84266"},{"alias":"HRIP","entrezGeneId":"84268"},{"alias":"RIP","entrezGeneId":"84268"},{"alias":"C2orf9","entrezGeneId":"84269"},{"alias":"MIC14","entrezGeneId":"84269"},{"alias":"MIX14","entrezGeneId":"84269"},{"alias":"BinCARD","entrezGeneId":"84270"},{"alias":"C9orf89","entrezGeneId":"84270"},{"alias":"PDIP3","entrezGeneId":"84271"},{"alias":"PDIP46","entrezGeneId":"84271"},{"alias":"SKAR","entrezGeneId":"84271"},{"alias":"FinGER4","entrezGeneId":"84272"},{"alias":"Nbla11189","entrezGeneId":"84272"},{"alias":"C4orf14","entrezGeneId":"84273"},{"alias":"hAtNOS1","entrezGeneId":"84273"},{"alias":"hNOA1","entrezGeneId":"84273"},{"alias":"mAtNOS1","entrezGeneId":"84273"},{"alias":"MTG3","entrezGeneId":"84273"},{"alias":"BMSC-MCP","entrezGeneId":"84275"},{"alias":"PNC1","entrezGeneId":"84275"},{"alias":"WBSCR18","entrezGeneId":"84277"},{"alias":"HIATL2","entrezGeneId":"84278"},{"alias":"C2orf7","entrezGeneId":"84279"},{"alias":"PAP21","entrezGeneId":"84279"},{"alias":"GMRP-1","entrezGeneId":"84280"},{"alias":"GMRP1","entrezGeneId":"84280"},{"alias":"smAKAP","entrezGeneId":"84281"},{"alias":"L13","entrezGeneId":"84282"},{"alias":"MMFD","entrezGeneId":"84282"},{"alias":"REUL","entrezGeneId":"84282"},{"alias":"Riplet","entrezGeneId":"84282"},{"alias":"MATT","entrezGeneId":"84283"},{"alias":"C1orf57","entrezGeneId":"84284"},{"alias":"HCR-NTPase","entrezGeneId":"84284"},{"alias":"haponin","entrezGeneId":"84285"},{"alias":"hTMEM175","entrezGeneId":"84286"},{"alias":"APH2","entrezGeneId":"84287"},{"alias":"DHHC-16","entrezGeneId":"84287"},{"alias":"CFAP200","entrezGeneId":"84288"},{"alias":"DRC8","entrezGeneId":"84288"},{"alias":"p28ING5","entrezGeneId":"84289"},{"alias":"CSS2","entrezGeneId":"84290"},{"alias":"MORG1","entrezGeneId":"84292"},{"alias":"Adrx","entrezGeneId":"84293"},{"alias":"C10orf58","entrezGeneId":"84293"},{"alias":"PAMM","entrezGeneId":"84293"},{"alias":"C8orf53","entrezGeneId":"84294"},{"alias":"BFLS","entrezGeneId":"84295"},{"alias":"BORJ","entrezGeneId":"84295"},{"alias":"CENP-31","entrezGeneId":"84295"},{"alias":"SLD5","entrezGeneId":"84296"},{"alias":"C12orf31","entrezGeneId":"84298"},{"alias":"hLLP","entrezGeneId":"84298"},{"alias":"C17orf37","entrezGeneId":"84299"},{"alias":"C35","entrezGeneId":"84299"},{"alias":"ORB3","entrezGeneId":"84299"},{"alias":"RDX12","entrezGeneId":"84299"},{"alias":"XTP4","entrezGeneId":"84299"},{"alias":"bA6B20.2","entrezGeneId":"84300"},{"alias":"C6orf125","entrezGeneId":"84300"},{"alias":"C6orf126","entrezGeneId":"84300"},{"alias":"Cbp6","entrezGeneId":"84300"},{"alias":"M19","entrezGeneId":"84300"},{"alias":"MNF1","entrezGeneId":"84300"},{"alias":"C9orf125","entrezGeneId":"84302"},{"alias":"CHCM1","entrezGeneId":"84303"},{"alias":"Mic25","entrezGeneId":"84303"},{"alias":"PPP1R23","entrezGeneId":"84303"},{"alias":"PYM","entrezGeneId":"84305"},{"alias":"WIBG","entrezGeneId":"84305"},{"alias":"ZNF47","entrezGeneId":"84307"},{"alias":"ZSCAN15","entrezGeneId":"84307"},{"alias":"SDOS","entrezGeneId":"84309"},{"alias":"YCR016W","entrezGeneId":"84310"},{"alias":"L45mt","entrezGeneId":"84311"},{"alias":"MRP-L45","entrezGeneId":"84311"},{"alias":"BRMS1","entrezGeneId":"84312"},{"alias":"DERP9","entrezGeneId":"84313"},{"alias":"EAP20","entrezGeneId":"84313"},{"alias":"FAP20","entrezGeneId":"84313"},{"alias":"GRVS638","entrezGeneId":"84314"},{"alias":"JBTS29","entrezGeneId":"84314"},{"alias":"MKS13","entrezGeneId":"84314"},{"alias":"PRO1268","entrezGeneId":"84314"},{"alias":"SAND1","entrezGeneId":"84315"},{"alias":"LSMD1","entrezGeneId":"84316"},{"alias":"PFAAP2","entrezGeneId":"84316"},{"alias":"ccp1","entrezGeneId":"84317"},{"alias":"CDG2O","entrezGeneId":"84317"},{"alias":"C3orf26","entrezGeneId":"84319"},{"alias":"hTREX45","entrezGeneId":"84321"},{"alias":"THO3","entrezGeneId":"84321"},{"alias":"HEIL1","entrezGeneId":"84322"},{"alias":"HsT2508","entrezGeneId":"84322"},{"alias":"CIP29","entrezGeneId":"84324"},{"alias":"HCC1","entrezGeneId":"84324"},{"alias":"HSPC316","entrezGeneId":"84324"},{"alias":"THO1","entrezGeneId":"84324"},{"alias":"C16orf13","entrezGeneId":"84326"},{"alias":"JFP2","entrezGeneId":"84326"},{"alias":"HV1","entrezGeneId":"84329"},{"alias":"VSOP","entrezGeneId":"84329"},{"alias":"ZFP414","entrezGeneId":"84330"},{"alias":"C16orf14","entrezGeneId":"84331"},{"alias":"c349E10.1","entrezGeneId":"84331"},{"alias":"FAM195A","entrezGeneId":"84331"},{"alias":"RNF159","entrezGeneId":"84333"},{"alias":"APOP","entrezGeneId":"84334"},{"alias":"APOP1","entrezGeneId":"84334"},{"alias":"C14orf153","entrezGeneId":"84334"},{"alias":"Lobe","entrezGeneId":"84335"},{"alias":"PRAS40","entrezGeneId":"84335"},{"alias":"ELF1","entrezGeneId":"84337"},{"alias":"EF-G2mt","entrezGeneId":"84340"},{"alias":"EFG2","entrezGeneId":"84340"},{"alias":"hEFG2","entrezGeneId":"84340"},{"alias":"mEF-G 2","entrezGeneId":"84340"},{"alias":"MRRF2","entrezGeneId":"84340"},{"alias":"MST027","entrezGeneId":"84340"},{"alias":"MSTP027","entrezGeneId":"84340"},{"alias":"RRF2","entrezGeneId":"84340"},{"alias":"RRF2mt","entrezGeneId":"84340"},{"alias":"CDG2H","entrezGeneId":"84342"},{"alias":"DOR1","entrezGeneId":"84342"},{"alias":"BLOC2S1","entrezGeneId":"84343"},{"alias":"SUTAL","entrezGeneId":"84343"},{"alias":"IRZ","entrezGeneId":"84364"},{"alias":"NBLA10535","entrezGeneId":"84364"},{"alias":"ZFP289","entrezGeneId":"84364"},{"alias":"ZNF289","entrezGeneId":"84364"},{"alias":"MKI67IP","entrezGeneId":"84365"},{"alias":"Nopp34","entrezGeneId":"84365"},{"alias":"C17orf92","entrezGeneId":"84366"},{"alias":"PRAC","entrezGeneId":"84366"},{"alias":"HK3","entrezGeneId":"84376"},{"alias":"ECRG4","entrezGeneId":"84417"},{"alias":"C5orf32","entrezGeneId":"84418"},{"alias":"ORF1-FL49","entrezGeneId":"84418"},{"alias":"FOAP-11","entrezGeneId":"84419"},{"alias":"MIR147BHG","entrezGeneId":"84419"},{"alias":"NMES1","entrezGeneId":"84419"},{"alias":"EGVEGF","entrezGeneId":"84432"},{"alias":"PK1","entrezGeneId":"84432"},{"alias":"PRK1","entrezGeneId":"84432"},{"alias":"BENTA","entrezGeneId":"84433"},{"alias":"BIMP3","entrezGeneId":"84433"},{"alias":"CARMA1","entrezGeneId":"84433"},{"alias":"IMD11","entrezGeneId":"84433"},{"alias":"IMD11A","entrezGeneId":"84433"},{"alias":"PPBL","entrezGeneId":"84433"},{"alias":"FTX","entrezGeneId":"84434"},{"alias":"GPR123","entrezGeneId":"84435"},{"alias":"KIAA1826","entrezGeneId":"84437"},{"alias":"KIAA1822","entrezGeneId":"84439"},{"alias":"UNQ9245","entrezGeneId":"84439"},{"alias":"FIP4-Rab11","entrezGeneId":"84440"},{"alias":"RAB11-FIP4","entrezGeneId":"84440"},{"alias":"MAM-3","entrezGeneId":"84441"},{"alias":"MAM2","entrezGeneId":"84441"},{"alias":"MAM3","entrezGeneId":"84441"},{"alias":"MLL-MAML2","entrezGeneId":"84441"},{"alias":"DOT1","entrezGeneId":"84444"},{"alias":"KMT4","entrezGeneId":"84444"},{"alias":"LAPSER1","entrezGeneId":"84445"},{"alias":"hSAD1","entrezGeneId":"84446"},{"alias":"DER3","entrezGeneId":"84447"},{"alias":"HRD1","entrezGeneId":"84447"},{"alias":"dJ862P8.3","entrezGeneId":"84451"},{"alias":"MLK4","entrezGeneId":"84451"},{"alias":"MBT-1","entrezGeneId":"84456"},{"alias":"MBT1","entrezGeneId":"84456"},{"alias":"C10orf12","entrezGeneId":"84458"},{"alias":"MLR2","entrezGeneId":"84458"},{"alias":"BTBD12","entrezGeneId":"84464"},{"alias":"FANCP","entrezGeneId":"84464"},{"alias":"MUS312","entrezGeneId":"84464"},{"alias":"EMARDD","entrezGeneId":"84466"},{"alias":"CCPG","entrezGeneId":"84498"},{"alias":"dJ894D12.1","entrezGeneId":"84498"},{"alias":"KIAA1838","entrezGeneId":"84498"},{"alias":"PGCC1","entrezGeneId":"84498"},{"alias":"Spir-2","entrezGeneId":"84501"},{"alias":"JP4","entrezGeneId":"84502"},{"alias":"JPHL1","entrezGeneId":"84502"},{"alias":"GTX","entrezGeneId":"84504"},{"alias":"NKX6.2","entrezGeneId":"84504"},{"alias":"NKX6B","entrezGeneId":"84504"},{"alias":"SPAX8","entrezGeneId":"84504"},{"alias":"DPPL1","entrezGeneId":"84513"},{"alias":"HTPAP","entrezGeneId":"84513"},{"alias":"PPAPDC1B","entrezGeneId":"84513"},{"alias":"D11LGP1","entrezGeneId":"84514"},{"alias":"LGP1","entrezGeneId":"84514"},{"alias":"C20orf154","entrezGeneId":"84515"},{"alias":"dJ967N21.5","entrezGeneId":"84515"},{"alias":"POF10","entrezGeneId":"84515"},{"alias":"ARP-T3","entrezGeneId":"84517"},{"alias":"ARPM1","entrezGeneId":"84517"},{"alias":"PLAC8L2","entrezGeneId":"84518"},{"alias":"CT23","entrezGeneId":"84519"},{"alias":"OY-TES-1","entrezGeneId":"84519"},{"alias":"SP32","entrezGeneId":"84519"},{"alias":"C14orf142","entrezGeneId":"84520"},{"alias":"PNAS-127","entrezGeneId":"84520"},{"alias":"GL009","entrezGeneId":"84522"},{"alias":"SCN6","entrezGeneId":"84522"},{"alias":"Fliz1","entrezGeneId":"84524"},{"alias":"ZC3HDC8","entrezGeneId":"84524"},{"alias":"CAMEO","entrezGeneId":"84525"},{"alias":"HOD","entrezGeneId":"84525"},{"alias":"HOP","entrezGeneId":"84525"},{"alias":"LAGY","entrezGeneId":"84525"},{"alias":"NECC1","entrezGeneId":"84525"},{"alias":"OB1","entrezGeneId":"84525"},{"alias":"SMAP31","entrezGeneId":"84525"},{"alias":"TOTO","entrezGeneId":"84525"},{"alias":"NBLA00121","entrezGeneId":"84527"},{"alias":"CT107","entrezGeneId":"84528"},{"alias":"PEPP-2","entrezGeneId":"84528"},{"alias":"PEPP2","entrezGeneId":"84528"},{"alias":"THG1","entrezGeneId":"84528"},{"alias":"HH114","entrezGeneId":"84529"},{"alias":"KIAA1853","entrezGeneId":"84530"},{"alias":"MU-MB-2.76","entrezGeneId":"84530"},{"alias":"nSR100","entrezGeneId":"84530"},{"alias":"ACAS2L","entrezGeneId":"84532"},{"alias":"ACECS1","entrezGeneId":"84532"},{"alias":"AceCS2L","entrezGeneId":"84532"},{"alias":"C21orf67","entrezGeneId":"84536"},{"alias":"C21orf69","entrezGeneId":"84536"},{"alias":"PRED54","entrezGeneId":"84536"},{"alias":"GPR145","entrezGeneId":"84539"},{"alias":"GPRv17","entrezGeneId":"84539"},{"alias":"MCH-2R","entrezGeneId":"84539"},{"alias":"MCH-R2","entrezGeneId":"84539"},{"alias":"MCH2","entrezGeneId":"84539"},{"alias":"MCH2R","entrezGeneId":"84539"},{"alias":"MCHR-2","entrezGeneId":"84539"},{"alias":"SLT","entrezGeneId":"84539"},{"alias":"TA-KRP","entrezGeneId":"84541"},{"alias":"TAKRP","entrezGeneId":"84541"},{"alias":"bMRP36a","entrezGeneId":"84545"},{"alias":"L43mt","entrezGeneId":"84545"},{"alias":"MRP-L43","entrezGeneId":"84545"},{"alias":"RNU35B","entrezGeneId":"84546"},{"alias":"U35B","entrezGeneId":"84546"},{"alias":"dJ874C20.4","entrezGeneId":"84547"},{"alias":"HUCEP-4","entrezGeneId":"84547"},{"alias":"SCAND4","entrezGeneId":"84547"},{"alias":"CXorf13","entrezGeneId":"84548"},{"alias":"ee3","entrezGeneId":"84548"},{"alias":"FAM11A","entrezGeneId":"84548"},{"alias":"FRAXF","entrezGeneId":"84548"},{"alias":"MAK16L","entrezGeneId":"84549"},{"alias":"RBM13","entrezGeneId":"84549"},{"alias":"PAR-6G","entrezGeneId":"84552"},{"alias":"PAR6gamma","entrezGeneId":"84552"},{"alias":"C6orf168","entrezGeneId":"84553"},{"alias":"dJ273F20","entrezGeneId":"84553"},{"alias":"ATG8E","entrezGeneId":"84557"},{"alias":"LC3","entrezGeneId":"84557"},{"alias":"LC3A","entrezGeneId":"84557"},{"alias":"MAP1ALC3","entrezGeneId":"84557"},{"alias":"MAP1BLC3","entrezGeneId":"84557"},{"alias":"GOLGA2LY","entrezGeneId":"84559"},{"alias":"GOLGA2LY1","entrezGeneId":"84559"},{"alias":"GOLGA2P2","entrezGeneId":"84559"},{"alias":"MT-4","entrezGeneId":"84560"},{"alias":"MT-IV","entrezGeneId":"84560"},{"alias":"MTIV","entrezGeneId":"84560"},{"alias":"CCC9","entrezGeneId":"84561"},{"alias":"CHLS","entrezGeneId":"84565"},{"alias":"CHSL","entrezGeneId":"84565"},{"alias":"LCS","entrezGeneId":"84565"},{"alias":"bA534G20.1","entrezGeneId":"84569"},{"alias":"KAAG648","entrezGeneId":"84569"},{"alias":"LYC2","entrezGeneId":"84569"},{"alias":"LYZD1","entrezGeneId":"84569"},{"alias":"PRO1278","entrezGeneId":"84569"},{"alias":"AMY","entrezGeneId":"84570"},{"alias":"CFEOM5","entrezGeneId":"84570"},{"alias":"CLAC","entrezGeneId":"84570"},{"alias":"CLAC-P","entrezGeneId":"84570"},{"alias":"CLACP","entrezGeneId":"84570"},{"alias":"C16orf27","entrezGeneId":"84572"},{"alias":"GNPTAG","entrezGeneId":"84572"},{"alias":"LP2537","entrezGeneId":"84572"},{"alias":"RJD9","entrezGeneId":"84572"},{"alias":"PAR6B","entrezGeneId":"84612"},{"alias":"D430004I08Rik","entrezGeneId":"84614"},{"alias":"ZNF908","entrezGeneId":"84614"},{"alias":"KAP4.13","entrezGeneId":"84616"},{"alias":"KAP4.4","entrezGeneId":"84616"},{"alias":"KRTAP4-13","entrezGeneId":"84616"},{"alias":"KRTAP4.13","entrezGeneId":"84616"},{"alias":"KRTAP4.4","entrezGeneId":"84616"},{"alias":"FPVEPD","entrezGeneId":"84617"},{"alias":"HsT1601","entrezGeneId":"84617"},{"alias":"TUBB-5","entrezGeneId":"84617"},{"alias":"CN-I","entrezGeneId":"84618"},{"alias":"CN-IA","entrezGeneId":"84618"},{"alias":"CN1","entrezGeneId":"84618"},{"alias":"CN1A","entrezGeneId":"84618"},{"alias":"CNI","entrezGeneId":"84618"},{"alias":"GPATC6","entrezGeneId":"84619"},{"alias":"GPATCH6","entrezGeneId":"84619"},{"alias":"KIAA1847","entrezGeneId":"84619"},{"alias":"ZC3H9","entrezGeneId":"84619"},{"alias":"ZC3HDC9","entrezGeneId":"84619"},{"alias":"ZIP","entrezGeneId":"84619"},{"alias":"SIAT2","entrezGeneId":"84620"},{"alias":"ST6GalII","entrezGeneId":"84620"},{"alias":"KIRRE","entrezGeneId":"84623"},{"alias":"MRD4","entrezGeneId":"84623"},{"alias":"NEPH2","entrezGeneId":"84623"},{"alias":"PRO4502","entrezGeneId":"84623"},{"alias":"AGS8","entrezGeneId":"84624"},{"alias":"bA243O10.1","entrezGeneId":"84624"},{"alias":"dJ322A24.1","entrezGeneId":"84624"},{"alias":"FNDC2","entrezGeneId":"84624"},{"alias":"MEL4B3","entrezGeneId":"84624"},{"alias":"BCS","entrezGeneId":"84627"},{"alias":"BCS1","entrezGeneId":"84627"},{"alias":"bA479K20.1","entrezGeneId":"84628"},{"alias":"LHLL9381","entrezGeneId":"84628"},{"alias":"Lmnt2","entrezGeneId":"84628"},{"alias":"NTNG1","entrezGeneId":"84628"},{"alias":"CAGL79","entrezGeneId":"84629"},{"alias":"TNRC18A","entrezGeneId":"84629"},{"alias":"BDTK","entrezGeneId":"84630"},{"alias":"CXorf1","entrezGeneId":"84631"},{"alias":"CXorf2","entrezGeneId":"84631"},{"alias":"SLITL1","entrezGeneId":"84631"},{"alias":"TMEM257","entrezGeneId":"84631"},{"alias":"CTB-1144G6.4","entrezGeneId":"84632"},{"alias":"KIAA1914","entrezGeneId":"84632"},{"alias":"XB130","entrezGeneId":"84632"},{"alias":"AXOR12","entrezGeneId":"84634"},{"alias":"CPPB1","entrezGeneId":"84634"},{"alias":"GPR54","entrezGeneId":"84634"},{"alias":"HH8","entrezGeneId":"84634"},{"alias":"HOT7T175","entrezGeneId":"84634"},{"alias":"KISS-1R","entrezGeneId":"84634"},{"alias":"FKSG79","entrezGeneId":"84636"},{"alias":"GPCR17","entrezGeneId":"84636"},{"alias":"LYPSR3","entrezGeneId":"84636"},{"alias":"FIL1-theta","entrezGeneId":"84639"},{"alias":"FKSG75","entrezGeneId":"84639"},{"alias":"IL-1HY2","entrezGeneId":"84639"},{"alias":"IL-38","entrezGeneId":"84639"},{"alias":"IL1-theta","entrezGeneId":"84639"},{"alias":"IL1HY2","entrezGeneId":"84639"},{"alias":"HP43.8KD","entrezGeneId":"84640"},{"alias":"HIATL1","entrezGeneId":"84641"},{"alias":"dJ1039K5.6","entrezGeneId":"84645"},{"alias":"EVG1","entrezGeneId":"84645"},{"alias":"FKSG71","entrezGeneId":"84647"},{"alias":"GXIIB","entrezGeneId":"84647"},{"alias":"GXIIIsPLA2","entrezGeneId":"84647"},{"alias":"PLA2G13","entrezGeneId":"84647"},{"alias":"sPLA2-GXIIB","entrezGeneId":"84647"},{"alias":"LEP16","entrezGeneId":"84648"},{"alias":"SPRL6A","entrezGeneId":"84648"},{"alias":"SPRL6B","entrezGeneId":"84648"},{"alias":"ARAT","entrezGeneId":"84649"},{"alias":"GS1999FULL","entrezGeneId":"84649"},{"alias":"HMFN1045","entrezGeneId":"84649"},{"alias":"EBRP","entrezGeneId":"84650"},{"alias":"ECG2","entrezGeneId":"84651"},{"alias":"ECRG2","entrezGeneId":"84651"},{"alias":"NYD-TSP1","entrezGeneId":"84654"},{"alias":"PPP1R148","entrezGeneId":"84654"},{"alias":"BM045","entrezGeneId":"84656"},{"alias":"HIBDL","entrezGeneId":"84656"},{"alias":"N-PAC","entrezGeneId":"84656"},{"alias":"NP60","entrezGeneId":"84656"},{"alias":"C3orf42","entrezGeneId":"84657"},{"alias":"GHRL-AS2","entrezGeneId":"84657"},{"alias":"GHRLOS2","entrezGeneId":"84657"},{"alias":"NAG73","entrezGeneId":"84657"},{"alias":"EMR3","entrezGeneId":"84658"},{"alias":"RAE1","entrezGeneId":"84659"},{"alias":"CT109","entrezGeneId":"84660"},{"alias":"ERAP75","entrezGeneId":"84660"},{"alias":"TSP-NY","entrezGeneId":"84660"},{"alias":"Cps25","entrezGeneId":"84661"},{"alias":"HDPY-30","entrezGeneId":"84661"},{"alias":"Saf19","entrezGeneId":"84661"},{"alias":"NKL","entrezGeneId":"84662"},{"alias":"NPHP7","entrezGeneId":"84662"},{"alias":"CSPG4LYP2","entrezGeneId":"84664"},{"alias":"CSPG4P2","entrezGeneId":"84664"},{"alias":"CSPG4PY2","entrezGeneId":"84664"},{"alias":"CMD1DD","entrezGeneId":"84665"},{"alias":"CMH22","entrezGeneId":"84665"},{"alias":"MYOP","entrezGeneId":"84665"},{"alias":"NEM11","entrezGeneId":"84665"},{"alias":"RCM4","entrezGeneId":"84665"},{"alias":"FIZZ1","entrezGeneId":"84666"},{"alias":"FIZZ2","entrezGeneId":"84666"},{"alias":"HXCP2","entrezGeneId":"84666"},{"alias":"RELM-beta","entrezGeneId":"84666"},{"alias":"RELMb","entrezGeneId":"84666"},{"alias":"RELMbeta","entrezGeneId":"84666"},{"alias":"XCP2","entrezGeneId":"84666"},{"alias":"bHLHb37","entrezGeneId":"84667"},{"alias":"SCDO4","entrezGeneId":"84667"},{"alias":"DRCTNNB1A","entrezGeneId":"84668"},{"alias":"HCC","entrezGeneId":"84668"},{"alias":"HLD5","entrezGeneId":"84668"},{"alias":"HYCC1","entrezGeneId":"84668"},{"alias":"NY-REN-60","entrezGeneId":"84669"},{"alias":"USP10","entrezGeneId":"84669"},{"alias":"ZNF1111","entrezGeneId":"84671"},{"alias":"LINC00127","entrezGeneId":"84672"},{"alias":"NCRNA00127","entrezGeneId":"84672"},{"alias":"TTTY6A","entrezGeneId":"84672"},{"alias":"TTY6","entrezGeneId":"84672"},{"alias":"LINC00130","entrezGeneId":"84673"},{"alias":"NCRNA00130","entrezGeneId":"84673"},{"alias":"TTY8","entrezGeneId":"84673"},{"alias":"CINCIN1","entrezGeneId":"84674"},{"alias":"MURF-2","entrezGeneId":"84675"},{"alias":"muRF2","entrezGeneId":"84675"},{"alias":"RNF29","entrezGeneId":"84675"},{"alias":"IRF","entrezGeneId":"84676"},{"alias":"MURF1","entrezGeneId":"84676"},{"alias":"MURF2","entrezGeneId":"84676"},{"alias":"RNF28","entrezGeneId":"84676"},{"alias":"SMRZ","entrezGeneId":"84676"},{"alias":"C21orf65","entrezGeneId":"84677"},{"alias":"CT25.1a","entrezGeneId":"84677"},{"alias":"CT25.1b","entrezGeneId":"84677"},{"alias":"MMA-1","entrezGeneId":"84677"},{"alias":"MMA-1a","entrezGeneId":"84677"},{"alias":"MMA-1b","entrezGeneId":"84677"},{"alias":"MMA1","entrezGeneId":"84677"},{"alias":"MTAG2","entrezGeneId":"84677"},{"alias":"CXXC2","entrezGeneId":"84678"},{"alias":"Fbl10","entrezGeneId":"84678"},{"alias":"FBXL10","entrezGeneId":"84678"},{"alias":"JHDM1B","entrezGeneId":"84678"},{"alias":"PCCX2","entrezGeneId":"84678"},{"alias":"NHE-7","entrezGeneId":"84679"},{"alias":"NHE7","entrezGeneId":"84679"},{"alias":"SLC9A6","entrezGeneId":"84679"},{"alias":"ACS","entrezGeneId":"84680"},{"alias":"PHACS","entrezGeneId":"84680"},{"alias":"HIT-17","entrezGeneId":"84681"},{"alias":"IA-6","entrezGeneId":"84684"},{"alias":"IA6","entrezGeneId":"84684"},{"alias":"mlt1","entrezGeneId":"84684"},{"alias":"PPP1R6","entrezGeneId":"84687"},{"alias":"PPP1R9","entrezGeneId":"84687"},{"alias":"SPINO","entrezGeneId":"84687"},{"alias":"Spn","entrezGeneId":"84687"},{"alias":"bA573M23.4","entrezGeneId":"84688"},{"alias":"CBE1","entrezGeneId":"84688"},{"alias":"NYD-SP22","entrezGeneId":"84688"},{"alias":"SMRP1","entrezGeneId":"84688"},{"alias":"MS4A16","entrezGeneId":"84689"},{"alias":"NYD-SP21","entrezGeneId":"84689"},{"alias":"NYD-SP20","entrezGeneId":"84690"},{"alias":"NYDSP20","entrezGeneId":"84690"},{"alias":"FAM137A","entrezGeneId":"84691"},{"alias":"NYD-SP18","entrezGeneId":"84691"},{"alias":"NYD-SP17","entrezGeneId":"84692"},{"alias":"SP17","entrezGeneId":"84692"},{"alias":"GLOD2","entrezGeneId":"84693"},{"alias":"CX62","entrezGeneId":"84694"},{"alias":"LOXL","entrezGeneId":"84695"},{"alias":"LABH1","entrezGeneId":"84696"},{"alias":"UG0636c06","entrezGeneId":"84698"},{"alias":"CREB-H","entrezGeneId":"84699"},{"alias":"CREBH","entrezGeneId":"84699"},{"alias":"HYST1481","entrezGeneId":"84699"},{"alias":"KFS4","entrezGeneId":"84700"},{"alias":"COX4","entrezGeneId":"84701"},{"alias":"COX4-2","entrezGeneId":"84701"},{"alias":"COX4B","entrezGeneId":"84701"},{"alias":"COX4L2","entrezGeneId":"84701"},{"alias":"COXIV-2","entrezGeneId":"84701"},{"alias":"dJ857M17.2","entrezGeneId":"84701"},{"alias":"COXPD23","entrezGeneId":"84705"},{"alias":"GTPBG3","entrezGeneId":"84705"},{"alias":"MSS1","entrezGeneId":"84705"},{"alias":"MTGP1","entrezGeneId":"84705"},{"alias":"THDF1","entrezGeneId":"84705"},{"alias":"ALT2","entrezGeneId":"84706"},{"alias":"GPT 2","entrezGeneId":"84706"},{"alias":"MRT49","entrezGeneId":"84706"},{"alias":"BEX1","entrezGeneId":"84707"},{"alias":"DJ79P11.1","entrezGeneId":"84707"},{"alias":"LNX","entrezGeneId":"84708"},{"alias":"MPDZ","entrezGeneId":"84708"},{"alias":"PDZRN2","entrezGeneId":"84708"},{"alias":"C4orf49","entrezGeneId":"84709"},{"alias":"CESP-1","entrezGeneId":"84709"},{"alias":"HUMMR","entrezGeneId":"84709"},{"alias":"OSAP","entrezGeneId":"84709"},{"alias":"HDGF-2","entrezGeneId":"84717"},{"alias":"HDGF2","entrezGeneId":"84717"},{"alias":"HDGFRP2","entrezGeneId":"84717"},{"alias":"HRP-2","entrezGeneId":"84717"},{"alias":"HRP2","entrezGeneId":"84717"},{"alias":"C1orf217","entrezGeneId":"84719"},{"alias":"NCRNA00260","entrezGeneId":"84719"},{"alias":"HPMRS2","entrezGeneId":"84720"},{"alias":"DDA3","entrezGeneId":"84722"},{"alias":"FP3214","entrezGeneId":"84722"},{"alias":"FAPP2","entrezGeneId":"84725"},{"alias":"BAT2L","entrezGeneId":"84726"},{"alias":"BAT2L1","entrezGeneId":"84726"},{"alias":"KIAA0515","entrezGeneId":"84726"},{"alias":"LQFBS-1","entrezGeneId":"84726"},{"alias":"GRCC9","entrezGeneId":"84727"},{"alias":"SSB2","entrezGeneId":"84727"},{"alias":"CDCA6","entrezGeneId":"84733"},{"alias":"M33","entrezGeneId":"84733"},{"alias":"SRXY5","entrezGeneId":"84733"},{"alias":"C1orf90","entrezGeneId":"84734"},{"alias":"CN1","entrezGeneId":"84735"},{"alias":"CPGL2","entrezGeneId":"84735"},{"alias":"HsT2308","entrezGeneId":"84735"},{"alias":"AFAP1-AS","entrezGeneId":"84740"},{"alias":"AFAP1AS","entrezGeneId":"84740"},{"alias":"POC7B","entrezGeneId":"84747"},{"alias":"FUCTX","entrezGeneId":"84750"},{"alias":"2010002K04Rik","entrezGeneId":"84759"},{"alias":"NSPC1","entrezGeneId":"84759"},{"alias":"RNF3A-2","entrezGeneId":"84759"},{"alias":"RNF68","entrezGeneId":"84759"},{"alias":"EFCAB4B","entrezGeneId":"84766"},{"alias":"SPRYD5","entrezGeneId":"84767"},{"alias":"TRIM51A","entrezGeneId":"84767"},{"alias":"FKSG24","entrezGeneId":"84769"},{"alias":"ARD1B","entrezGeneId":"84779"},{"alias":"ARD2","entrezGeneId":"84779"},{"alias":"hARD2","entrezGeneId":"84779"},{"alias":"Suv4-20h2","entrezGeneId":"84787"},{"alias":"SUV420H2","entrezGeneId":"84787"},{"alias":"bcm948","entrezGeneId":"84790"},{"alias":"TUBA6","entrezGeneId":"84790"},{"alias":"C1orf97","entrezGeneId":"84791"},{"alias":"ACPIN1","entrezGeneId":"84792"},{"alias":"C7orf70","entrezGeneId":"84792"},{"alias":"SIPAR","entrezGeneId":"84792"},{"alias":"C10orf33","entrezGeneId":"84795"},{"alias":"FP3420","entrezGeneId":"84795"},{"alias":"YUEF","entrezGeneId":"84795"},{"alias":"AGPAT 10","entrezGeneId":"84803"},{"alias":"AGPAT10","entrezGeneId":"84803"},{"alias":"AGPAT8","entrezGeneId":"84803"},{"alias":"AGPAT9","entrezGeneId":"84803"},{"alias":"HMFN0839","entrezGeneId":"84803"},{"alias":"LPAAT-theta","entrezGeneId":"84803"},{"alias":"MAG1","entrezGeneId":"84803"},{"alias":"IkappaBNS","entrezGeneId":"84807"},{"alias":"TA-NFKBH","entrezGeneId":"84807"},{"alias":"C1orf170","entrezGeneId":"84808"},{"alias":"CROCCL1","entrezGeneId":"84809"},{"alias":"Cwc26","entrezGeneId":"84811"},{"alias":"fSAP71","entrezGeneId":"84811"},{"alias":"C9orf67","entrezGeneId":"84814"},{"alias":"NET39","entrezGeneId":"84814"},{"alias":"PPAPDC3","entrezGeneId":"84814"},{"alias":"NIMP","entrezGeneId":"84816"},{"alias":"OPA10","entrezGeneId":"84816"},{"alias":"TRP14","entrezGeneId":"84817"},{"alias":"TXNL5","entrezGeneId":"84817"},{"alias":"CANDF9","entrezGeneId":"84818"},{"alias":"IL17-RL","entrezGeneId":"84818"},{"alias":"IL17RL","entrezGeneId":"84818"},{"alias":"RPB11-phi","entrezGeneId":"84820"},{"alias":"EPM9","entrezGeneId":"84823"},{"alias":"LAMB2","entrezGeneId":"84823"},{"alias":"LMN2","entrezGeneId":"84823"},{"alias":"FCRL","entrezGeneId":"84824"},{"alias":"FCRL1","entrezGeneId":"84824"},{"alias":"FCRLb","entrezGeneId":"84824"},{"alias":"FCRLc1","entrezGeneId":"84824"},{"alias":"FCRLc2","entrezGeneId":"84824"},{"alias":"FCRLd","entrezGeneId":"84824"},{"alias":"FCRLe","entrezGeneId":"84824"},{"alias":"FCRLM1","entrezGeneId":"84824"},{"alias":"FCRLX","entrezGeneId":"84824"},{"alias":"FCRX","entrezGeneId":"84824"},{"alias":"FREB","entrezGeneId":"84824"},{"alias":"AIG1L","entrezGeneId":"84830"},{"alias":"C6orf105","entrezGeneId":"84830"},{"alias":"dJ413H6.1","entrezGeneId":"84830"},{"alias":"ANKRD26L1","entrezGeneId":"84832"},{"alias":"ANKRD36BL1","entrezGeneId":"84832"},{"alias":"bA792D24.4","entrezGeneId":"84833"},{"alias":"DAPIT","entrezGeneId":"84833"},{"alias":"HCVFTP2","entrezGeneId":"84833"},{"alias":"USMG5","entrezGeneId":"84833"},{"alias":"CIB","entrezGeneId":"84836"},{"alias":"HEL-S-299","entrezGeneId":"84836"},{"alias":"C14orf128","entrezGeneId":"84837"},{"alias":"NIZP1","entrezGeneId":"84838"},{"alias":"ZFP496","entrezGeneId":"84838"},{"alias":"ZKSCAN17","entrezGeneId":"84838"},{"alias":"ZSCAN49","entrezGeneId":"84838"},{"alias":"ARMD6","entrezGeneId":"84839"},{"alias":"CORD11","entrezGeneId":"84839"},{"alias":"QRX","entrezGeneId":"84839"},{"alias":"RAXL1","entrezGeneId":"84839"},{"alias":"4-HPPD-L","entrezGeneId":"84842"},{"alias":"GLOXD1","entrezGeneId":"84842"},{"alias":"bK223H9.2","entrezGeneId":"84844"},{"alias":"INI","entrezGeneId":"84844"},{"alias":"Rds3","entrezGeneId":"84844"},{"alias":"SAP14b","entrezGeneId":"84844"},{"alias":"SF3b14b","entrezGeneId":"84844"},{"alias":"SF3B7","entrezGeneId":"84844"},{"alias":"H19X","entrezGeneId":"84848"},{"alias":"MIR503HG2","entrezGeneId":"84848"},{"alias":"C9orf70","entrezGeneId":"84850"},{"alias":"RNF102","entrezGeneId":"84851"},{"alias":"ATP1A1OS","entrezGeneId":"84852"},{"alias":"C1orf203","entrezGeneId":"84852"},{"alias":"Nlz2","entrezGeneId":"84858"},{"alias":"NOLZ-1","entrezGeneId":"84858"},{"alias":"NOLZ1","entrezGeneId":"84858"},{"alias":"KELCHL","entrezGeneId":"84861"},{"alias":"JMJD10","entrezGeneId":"84864"},{"alias":"MDIG","entrezGeneId":"84864"},{"alias":"MINA","entrezGeneId":"84864"},{"alias":"MINA53","entrezGeneId":"84864"},{"alias":"NO52","entrezGeneId":"84864"},{"alias":"ROX","entrezGeneId":"84864"},{"alias":"PTPSTEP","entrezGeneId":"84867"},{"alias":"STEP","entrezGeneId":"84867"},{"alias":"STEP61","entrezGeneId":"84867"},{"alias":"CD366","entrezGeneId":"84868"},{"alias":"HAVcr-2","entrezGeneId":"84868"},{"alias":"KIM-3","entrezGeneId":"84868"},{"alias":"Tim-3","entrezGeneId":"84868"},{"alias":"TIM3","entrezGeneId":"84868"},{"alias":"TIMD-3","entrezGeneId":"84868"},{"alias":"TIMD3","entrezGeneId":"84868"},{"alias":"SDR45C1","entrezGeneId":"84869"},{"alias":"CRISTIN1","entrezGeneId":"84870"},{"alias":"PWTSR","entrezGeneId":"84870"},{"alias":"THSD2","entrezGeneId":"84870"},{"alias":"CCP6","entrezGeneId":"84871"},{"alias":"ZC3HDC10","entrezGeneId":"84872"},{"alias":"GPR128","entrezGeneId":"84873"},{"alias":"ARTD10","entrezGeneId":"84875"},{"alias":"CRACM1","entrezGeneId":"84876"},{"alias":"IMD9","entrezGeneId":"84876"},{"alias":"ORAT1","entrezGeneId":"84876"},{"alias":"TAM2","entrezGeneId":"84876"},{"alias":"TMEM142A","entrezGeneId":"84876"},{"alias":"ZNF499","entrezGeneId":"84878"},{"alias":"MCPH15","entrezGeneId":"84879"},{"alias":"MFSD2","entrezGeneId":"84879"},{"alias":"NLS1","entrezGeneId":"84879"},{"alias":"AMID","entrezGeneId":"84883"},{"alias":"PRG3","entrezGeneId":"84883"},{"alias":"DHHC-12","entrezGeneId":"84885"},{"alias":"ZNF400","entrezGeneId":"84885"},{"alias":"IMP3","entrezGeneId":"84888"},{"alias":"PSL2","entrezGeneId":"84888"},{"alias":"ATRC3","entrezGeneId":"84889"},{"alias":"CAT-3","entrezGeneId":"84889"},{"alias":"CAT3","entrezGeneId":"84889"},{"alias":"C10orf22","entrezGeneId":"84890"},{"alias":"ZNF206","entrezGeneId":"84891"},{"alias":"AGO61","entrezGeneId":"84892"},{"alias":"C3orf39","entrezGeneId":"84892"},{"alias":"GTDC2","entrezGeneId":"84892"},{"alias":"MDDGA8","entrezGeneId":"84892"},{"alias":"Fbx18","entrezGeneId":"84893"},{"alias":"FBXO18","entrezGeneId":"84893"},{"alias":"hFBH1","entrezGeneId":"84893"},{"alias":"LERN1","entrezGeneId":"84894"},{"alias":"LRRN6A","entrezGeneId":"84894"},{"alias":"UNQ201","entrezGeneId":"84894"},{"alias":"C9orf54","entrezGeneId":"84895"},{"alias":"FAM73B","entrezGeneId":"84895"},{"alias":"AFDC1","entrezGeneId":"84896"},{"alias":"FNP001","entrezGeneId":"84896"},{"alias":"THORASE","entrezGeneId":"84896"},{"alias":"NIAM","entrezGeneId":"84897"},{"alias":"TB-5","entrezGeneId":"84897"},{"alias":"TEM7R","entrezGeneId":"84898"},{"alias":"TMEM118","entrezGeneId":"84900"},{"alias":"ESC2","entrezGeneId":"84901"},{"alias":"NIP45","entrezGeneId":"84901"},{"alias":"RAD60","entrezGeneId":"84901"},{"alias":"CCDC123","entrezGeneId":"84902"},{"alias":"CEP123","entrezGeneId":"84902"},{"alias":"C9orf100","entrezGeneId":"84904"},{"alias":"AOPEP","entrezGeneId":"84909"},{"alias":"AP-O","entrezGeneId":"84909"},{"alias":"APO","entrezGeneId":"84909"},{"alias":"C90RF3","entrezGeneId":"84909"},{"alias":"ONPEP","entrezGeneId":"84909"},{"alias":"KS1","entrezGeneId":"84911"},{"alias":"YEA","entrezGeneId":"84912"},{"alias":"YEA4","entrezGeneId":"84912"},{"alias":"bHLHa21","entrezGeneId":"84913"},{"alias":"HATH6","entrezGeneId":"84913"},{"alias":"ZF6","entrezGeneId":"84914"},{"alias":"C12orf34","entrezGeneId":"84915"},{"alias":"CIRH1A","entrezGeneId":"84916"},{"alias":"CIRHIN","entrezGeneId":"84916"},{"alias":"NAIC","entrezGeneId":"84916"},{"alias":"TEX292","entrezGeneId":"84916"},{"alias":"bA350J20.3","entrezGeneId":"84918"},{"alias":"MANSC3","entrezGeneId":"84918"},{"alias":"CREP","entrezGeneId":"84919"},{"alias":"MSSGM2","entrezGeneId":"84919"},{"alias":"ALG10A","entrezGeneId":"84920"},{"alias":"DIE2","entrezGeneId":"84920"},{"alias":"KCR1","entrezGeneId":"84920"},{"alias":"ZNF798","entrezGeneId":"84922"},{"alias":"RCC4","entrezGeneId":"84925"},{"alias":"NET31","entrezGeneId":"84928"},{"alias":"GREATWALL","entrezGeneId":"84930"},{"alias":"GW","entrezGeneId":"84930"},{"alias":"GWL","entrezGeneId":"84930"},{"alias":"MAST-L","entrezGeneId":"84930"},{"alias":"THC2","entrezGeneId":"84930"},{"alias":"C12orf52","entrezGeneId":"84934"},{"alias":"RITA","entrezGeneId":"84934"},{"alias":"AWMS3","entrezGeneId":"84935"},{"alias":"C13orf33","entrezGeneId":"84935"},{"alias":"hAWMS3","entrezGeneId":"84935"},{"alias":"MEDA-4","entrezGeneId":"84935"},{"alias":"MEDA4","entrezGeneId":"84935"},{"alias":"ANCHR","entrezGeneId":"84936"},{"alias":"MPFYVE","entrezGeneId":"84936"},{"alias":"NIN283","entrezGeneId":"84937"},{"alias":"APG4-C","entrezGeneId":"84938"},{"alias":"APG4C","entrezGeneId":"84938"},{"alias":"AUTL1","entrezGeneId":"84938"},{"alias":"AUTL3","entrezGeneId":"84938"},{"alias":"EXPAND1","entrezGeneId":"84939"},{"alias":"HSPC211","entrezGeneId":"84939"},{"alias":"MUM-1","entrezGeneId":"84939"},{"alias":"ALX","entrezGeneId":"84941"},{"alias":"HSH2","entrezGeneId":"84941"},{"alias":"GAMOS","entrezGeneId":"84942"},{"alias":"GAMOS1","entrezGeneId":"84942"},{"alias":"HSPC264","entrezGeneId":"84942"},{"alias":"CT128","entrezGeneId":"84944"},{"alias":"SPATA35","entrezGeneId":"84944"},{"alias":"bA153I24.2","entrezGeneId":"84945"},{"alias":"BEM46L1","entrezGeneId":"84945"},{"alias":"C13orf6","entrezGeneId":"84945"},{"alias":"C6orf93","entrezGeneId":"84946"},{"alias":"dJ468K18.4","entrezGeneId":"84946"},{"alias":"Prp38","entrezGeneId":"84950"},{"alias":"PRP38A","entrezGeneId":"84950"},{"alias":"CTEN","entrezGeneId":"84951"},{"alias":"PP14434","entrezGeneId":"84951"},{"alias":"JACOP","entrezGeneId":"84952"},{"alias":"PCING","entrezGeneId":"84952"},{"alias":"Ebitein1","entrezGeneId":"84953"},{"alias":"CML66","entrezGeneId":"84955"},{"alias":"OVA66","entrezGeneId":"84955"},{"alias":"TNFRSF19L","entrezGeneId":"84957"},{"alias":"TRLT","entrezGeneId":"84957"},{"alias":"JFC1","entrezGeneId":"84958"},{"alias":"SLP1","entrezGeneId":"84958"},{"alias":"p70","entrezGeneId":"84959"},{"alias":"STS-1","entrezGeneId":"84959"},{"alias":"STS1","entrezGeneId":"84959"},{"alias":"TULA-2","entrezGeneId":"84959"},{"alias":"TULA2","entrezGeneId":"84959"},{"alias":"bA216L13.7","entrezGeneId":"84960"},{"alias":"KIAA1984","entrezGeneId":"84960"},{"alias":"PARF","entrezGeneId":"84960"},{"alias":"Fbl2","entrezGeneId":"84961"},{"alias":"Fbl20","entrezGeneId":"84961"},{"alias":"JUB","entrezGeneId":"84962"},{"alias":"ABH6","entrezGeneId":"84964"},{"alias":"MST074","entrezGeneId":"84967"},{"alias":"MSTP074","entrezGeneId":"84967"},{"alias":"MA6","entrezGeneId":"84968"},{"alias":"PNMA6","entrezGeneId":"84968"},{"alias":"PNMA6C","entrezGeneId":"84968"},{"alias":"C20orf100","entrezGeneId":"84969"},{"alias":"dJ1108D11.2","entrezGeneId":"84969"},{"alias":"dJ495O3.1","entrezGeneId":"84969"},{"alias":"GCX-1","entrezGeneId":"84969"},{"alias":"GCX1","entrezGeneId":"84969"},{"alias":"APG4-D","entrezGeneId":"84971"},{"alias":"APG4D","entrezGeneId":"84971"},{"alias":"AUTL4","entrezGeneId":"84971"},{"alias":"NCRNA00061","entrezGeneId":"84973"},{"alias":"hsMOT2","entrezGeneId":"84975"},{"alias":"DISPA","entrezGeneId":"84976"},{"alias":"C17orf91","entrezGeneId":"84981"},{"alias":"C3orf34","entrezGeneId":"84984"},{"alias":"MOSPGF","entrezGeneId":"84984"},{"alias":"BJ-TSA-9","entrezGeneId":"84985"},{"alias":"C12orf62","entrezGeneId":"84987"},{"alias":"PCAG1","entrezGeneId":"84987"},{"alias":"MYPT3","entrezGeneId":"84988"},{"alias":"SPF45","entrezGeneId":"84991"},{"alias":"HPMRS6","entrezGeneId":"84992"},{"alias":"PIG-Y","entrezGeneId":"84992"},{"alias":"BMSC-UbP","entrezGeneId":"84993"},{"alias":"TCBA1","entrezGeneId":"84993"},{"alias":"C21orf119","entrezGeneId":"84996"},{"alias":"PRED84","entrezGeneId":"84996"},{"alias":"AGXT2L2","entrezGeneId":"85007"},{"alias":"PHLU","entrezGeneId":"85007"},{"alias":"WEX8","entrezGeneId":"85012"},{"alias":"C11orf70","entrezGeneId":"85016"},{"alias":"C18orf45","entrezGeneId":"85019"},{"alias":"hVVT","entrezGeneId":"85019"},{"alias":"NBIA7","entrezGeneId":"85021"},{"alias":"RALBP1","entrezGeneId":"85021"},{"alias":"C7orf35","entrezGeneId":"85025"},{"alias":"DC32","entrezGeneId":"85025"},{"alias":"C9orf37","entrezGeneId":"85026"},{"alias":"C5orf62","entrezGeneId":"85027"},{"alias":"MST150","entrezGeneId":"85027"},{"alias":"NID67","entrezGeneId":"85027"},{"alias":"ASLNC04080","entrezGeneId":"85028"},{"alias":"C1orf79","entrezGeneId":"85028"},{"alias":"LINC00100","entrezGeneId":"85028"},{"alias":"NCRNA00100","entrezGeneId":"85028"},{"alias":"PNAS-123","entrezGeneId":"85028"},{"alias":"dJ86C11.1","entrezGeneId":"85235"},{"alias":"H2A/S","entrezGeneId":"85235"},{"alias":"H2AFALii","entrezGeneId":"85235"},{"alias":"H2AH","entrezGeneId":"85235"},{"alias":"H2B/S","entrezGeneId":"85236"},{"alias":"H2BFAiii","entrezGeneId":"85236"},{"alias":"H2BFT","entrezGeneId":"85236"},{"alias":"H2BK","entrezGeneId":"85236"},{"alias":"KAP9.4","entrezGeneId":"85280"},{"alias":"KRTAP9.4","entrezGeneId":"85280"},{"alias":"KAP4.1","entrezGeneId":"85285"},{"alias":"KAP4.10","entrezGeneId":"85285"},{"alias":"KRTAP4-10","entrezGeneId":"85285"},{"alias":"KRTAP4.10","entrezGeneId":"85285"},{"alias":"KAP4.5","entrezGeneId":"85289"},{"alias":"KRTAP4.5","entrezGeneId":"85289"},{"alias":"KAP4.3","entrezGeneId":"85290"},{"alias":"KAP4.2","entrezGeneId":"85291"},{"alias":"KRTAP4.2","entrezGeneId":"85291"},{"alias":"KAP3.3","entrezGeneId":"85293"},{"alias":"KRTAP3.3","entrezGeneId":"85293"},{"alias":"KAP2.1B","entrezGeneId":"85294"},{"alias":"KAP2.4","entrezGeneId":"85294"},{"alias":"KRTAP2.4","entrezGeneId":"85294"},{"alias":"BNIP-H","entrezGeneId":"85300"},{"alias":"CLAC","entrezGeneId":"85300"},{"alias":"STLS","entrezGeneId":"85301"},{"alias":"Alb","entrezGeneId":"85302"},{"alias":"FBF-1","entrezGeneId":"85302"},{"alias":"dJ139G21.2","entrezGeneId":"85303"},{"alias":"H2A/T","entrezGeneId":"85303"},{"alias":"H2AFTP","entrezGeneId":"85303"},{"alias":"HDCME13P","entrezGeneId":"85313"},{"alias":"ERVE1","entrezGeneId":"85314"},{"alias":"HERV-E1","entrezGeneId":"85314"},{"alias":"HERVE1","entrezGeneId":"85314"},{"alias":"C6orf33","entrezGeneId":"85315"},{"alias":"LMPB1","entrezGeneId":"85315"},{"alias":"MPRB","entrezGeneId":"85315"},{"alias":"CT2.5","entrezGeneId":"85316"},{"alias":"CT2.4","entrezGeneId":"85317"},{"alias":"MLL3P","entrezGeneId":"85317"},{"alias":"CT2.3","entrezGeneId":"85318"},{"alias":"CT2.2","entrezGeneId":"85319"},{"alias":"EWWD","entrezGeneId":"85320"},{"alias":"MRP8","entrezGeneId":"85320"},{"alias":"WW","entrezGeneId":"85320"},{"alias":"GAL12","entrezGeneId":"85329"},{"alias":"GRIP1","entrezGeneId":"85329"},{"alias":"HBA","entrezGeneId":"85340"},{"alias":"KRT124P","entrezGeneId":"85340"},{"alias":"KRTHBP1","entrezGeneId":"85340"},{"alias":"KAP2A","entrezGeneId":"85343"},{"alias":"KRTAP2P1","entrezGeneId":"85343"},{"alias":"HBB","entrezGeneId":"85344"},{"alias":"KRT123P","entrezGeneId":"85344"},{"alias":"KRTHBP2","entrezGeneId":"85344"},{"alias":"psihHbB","entrezGeneId":"85344"},{"alias":"KAP3A","entrezGeneId":"85345"},{"alias":"KRTAP3P1","entrezGeneId":"85345"},{"alias":"KAP9A","entrezGeneId":"85347"},{"alias":"KRTAP9P1","entrezGeneId":"85347"},{"alias":"HBC","entrezGeneId":"85348"},{"alias":"KRT122P","entrezGeneId":"85348"},{"alias":"KRTHBP3","entrezGeneId":"85348"},{"alias":"HBD","entrezGeneId":"85349"},{"alias":"KRT121P","entrezGeneId":"85349"},{"alias":"KRTHBP4","entrezGeneId":"85349"},{"alias":"psihHbD","entrezGeneId":"85349"},{"alias":"KIAA1644","entrezGeneId":"85352"},{"alias":"KAP4A","entrezGeneId":"85354"},{"alias":"KRTAP4-16P","entrezGeneId":"85354"},{"alias":"KRTAP4P1","entrezGeneId":"85354"},{"alias":"DEL22q13.3","entrezGeneId":"85358"},{"alias":"PROSAP2","entrezGeneId":"85358"},{"alias":"PSAP2","entrezGeneId":"85358"},{"alias":"SCZD15","entrezGeneId":"85358"},{"alias":"SPANK-2","entrezGeneId":"85358"},{"alias":"DGCR6","entrezGeneId":"85359"},{"alias":"7h3","entrezGeneId":"85360"},{"alias":"SYD1","entrezGeneId":"85360"},{"alias":"RNF88","entrezGeneId":"85363"},{"alias":"TRIM5alpha","entrezGeneId":"85363"},{"alias":"C20orf99","entrezGeneId":"85364"},{"alias":"CDG1I","entrezGeneId":"85365"},{"alias":"CDGIi","entrezGeneId":"85365"},{"alias":"CMS14","entrezGeneId":"85365"},{"alias":"CMSTA3","entrezGeneId":"85365"},{"alias":"hALPG2","entrezGeneId":"85365"},{"alias":"NET38","entrezGeneId":"85365"},{"alias":"KMLC","entrezGeneId":"85366"},{"alias":"MLCK","entrezGeneId":"85366"},{"alias":"MLCK2","entrezGeneId":"85366"},{"alias":"skMLCK","entrezGeneId":"85366"},{"alias":"FAM40A","entrezGeneId":"85369"},{"alias":"FAR11A","entrezGeneId":"85369"},{"alias":"RIM-BP3","entrezGeneId":"85376"},{"alias":"RIM-BP3.1","entrezGeneId":"85376"},{"alias":"RIM-BP3.A","entrezGeneId":"85376"},{"alias":"RIMBP3.1","entrezGeneId":"85376"},{"alias":"RIMBP3A","entrezGeneId":"85376"},{"alias":"MICAL-L1","entrezGeneId":"85377"},{"alias":"MIRAB13","entrezGeneId":"85377"},{"alias":"GCP-6","entrezGeneId":"85378"},{"alias":"GCP6","entrezGeneId":"85378"},{"alias":"MCCRP","entrezGeneId":"85378"},{"alias":"MCCRP1","entrezGeneId":"85378"},{"alias":"MCPHCR","entrezGeneId":"85378"},{"alias":"RNU14B","entrezGeneId":"85388"},{"alias":"U14","entrezGeneId":"85388"},{"alias":"U14B","entrezGeneId":"85388"},{"alias":"C21orf70","entrezGeneId":"85395"},{"alias":"PRED56","entrezGeneId":"85395"},{"alias":"DNAJ","entrezGeneId":"85406"},{"alias":"DRIP78","entrezGeneId":"85406"},{"alias":"HDJ3","entrezGeneId":"85406"},{"alias":"LIP6","entrezGeneId":"85406"},{"alias":"Naked1","entrezGeneId":"85407"},{"alias":"Naked2","entrezGeneId":"85409"},{"alias":"CT2","entrezGeneId":"85413"},{"alias":"dJ261K5.1","entrezGeneId":"85413"},{"alias":"FLIPT2","entrezGeneId":"85413"},{"alias":"HEL-S-18","entrezGeneId":"85413"},{"alias":"OAT6","entrezGeneId":"85413"},{"alias":"OCT6","entrezGeneId":"85413"},{"alias":"OKB1","entrezGeneId":"85413"},{"alias":"IPCA-2","entrezGeneId":"85414"},{"alias":"IPCA-6","entrezGeneId":"85414"},{"alias":"IPCA-8","entrezGeneId":"85414"},{"alias":"IPCA6","entrezGeneId":"85414"},{"alias":"PCANAP2","entrezGeneId":"85414"},{"alias":"PCANAP6","entrezGeneId":"85414"},{"alias":"PCANAP8","entrezGeneId":"85414"},{"alias":"PRST","entrezGeneId":"85414"},{"alias":"P76RBE","entrezGeneId":"85415"},{"alias":"RHOBP","entrezGeneId":"85415"},{"alias":"MADP-1","entrezGeneId":"85437"},{"alias":"MADP1","entrezGeneId":"85437"},{"alias":"RBM36","entrezGeneId":"85437"},{"alias":"SNRNP31","entrezGeneId":"85437"},{"alias":"ZCCHC19","entrezGeneId":"85437"},{"alias":"C4orf35","entrezGeneId":"85438"},{"alias":"CLPH","entrezGeneId":"85438"},{"alias":"NYD-SP26","entrezGeneId":"85438"},{"alias":"STN2","entrezGeneId":"85439"},{"alias":"STNB","entrezGeneId":"85439"},{"alias":"STNB2","entrezGeneId":"85439"},{"alias":"EIEE23","entrezGeneId":"85440"},{"alias":"ZIR2","entrezGeneId":"85440"},{"alias":"PDIP-1","entrezGeneId":"85441"},{"alias":"PRIC285","entrezGeneId":"85441"},{"alias":"bB439H18.3","entrezGeneId":"85442"},{"alias":"C10orf23","entrezGeneId":"85442"},{"alias":"RASGEF2","entrezGeneId":"85442"},{"alias":"v-KIND","entrezGeneId":"85442"},{"alias":"Very-KIND","entrezGeneId":"85442"},{"alias":"CLR","entrezGeneId":"85443"},{"alias":"DCAMKL3","entrezGeneId":"85443"},{"alias":"DCDC3C","entrezGeneId":"85443"},{"alias":"DCK3","entrezGeneId":"85443"},{"alias":"CLERC","entrezGeneId":"85444"},{"alias":"CLERK","entrezGeneId":"85444"},{"alias":"SAP2","entrezGeneId":"85444"},{"alias":"VFL1","entrezGeneId":"85444"},{"alias":"CASPR4","entrezGeneId":"85445"},{"alias":"MARSIS","entrezGeneId":"85446"},{"alias":"ZFH-5","entrezGeneId":"85446"},{"alias":"ZFH5","entrezGeneId":"85446"},{"alias":"ZNF409","entrezGeneId":"85446"},{"alias":"bA127L20","entrezGeneId":"85450"},{"alias":"bA127L20.2","entrezGeneId":"85450"},{"alias":"DANGER","entrezGeneId":"85450"},{"alias":"KIAA1754","entrezGeneId":"85450"},{"alias":"UNKEMPT","entrezGeneId":"85451"},{"alias":"ZC3H5","entrezGeneId":"85451"},{"alias":"ZC3HDC5","entrezGeneId":"85451"},{"alias":"C1orf222","entrezGeneId":"85452"},{"alias":"KIAA1751","entrezGeneId":"85452"},{"alias":"C15orf36","entrezGeneId":"85455"},{"alias":"DISPB","entrezGeneId":"85455"},{"alias":"HsT16908","entrezGeneId":"85455"},{"alias":"LINC00594","entrezGeneId":"85455"},{"alias":"TAB182","entrezGeneId":"85456"},{"alias":"KIAA1737","entrezGeneId":"85457"},{"alias":"CCD1","entrezGeneId":"85458"},{"alias":"KIAA1731","entrezGeneId":"85459"},{"alias":"ROLSB","entrezGeneId":"85461"},{"alias":"TANC","entrezGeneId":"85461"},{"alias":"MCPIP3","entrezGeneId":"85463"},{"alias":"SSH-2","entrezGeneId":"85464"},{"alias":"SSH-2L","entrezGeneId":"85464"},{"alias":"EPT1","entrezGeneId":"85465"},{"alias":"SELI","entrezGeneId":"85465"},{"alias":"SEPI","entrezGeneId":"85465"},{"alias":"LP3727","entrezGeneId":"85474"},{"alias":"COXPD1","entrezGeneId":"85476"},{"alias":"EFG","entrezGeneId":"85476"},{"alias":"EFG1","entrezGeneId":"85476"},{"alias":"EFGM","entrezGeneId":"85476"},{"alias":"EGF1","entrezGeneId":"85476"},{"alias":"GFM","entrezGeneId":"85476"},{"alias":"hEFG1","entrezGeneId":"85476"},{"alias":"CFAP250","entrezGeneId":"85478"},{"alias":"DRC2","entrezGeneId":"85478"},{"alias":"FAP250","entrezGeneId":"85478"},{"alias":"NYD-SP28","entrezGeneId":"85478"},{"alias":"CSP-beta","entrezGeneId":"85479"},{"alias":"bA189K21.7","entrezGeneId":"85486"},{"alias":"RPS19_3_1688","entrezGeneId":"85486"},{"alias":"RPS19_1_86","entrezGeneId":"85487"},{"alias":"H1RNA","entrezGeneId":"85495"},{"alias":"RPPH1-1","entrezGeneId":"85495"},{"alias":"SCABD","entrezGeneId":"85502"},{"alias":"MOPCB","entrezGeneId":"85503"},{"alias":"MOPCB1","entrezGeneId":"85503"},{"alias":"ZNF898B","entrezGeneId":"85508"},{"alias":"MBD3L","entrezGeneId":"85509"},{"alias":"dJ999L4.1","entrezGeneId":"85824"},{"alias":"RPL12L3","entrezGeneId":"85824"},{"alias":"RPL12_16_1689","entrezGeneId":"85824"},{"alias":"ObgH2","entrezGeneId":"85865"},{"alias":"UG0751c10","entrezGeneId":"85865"},{"alias":"HSF2L","entrezGeneId":"86614"},{"alias":"HSFY","entrezGeneId":"86614"},{"alias":"dJ688G8.1","entrezGeneId":"86781"},{"alias":"RPS2L1","entrezGeneId":"86781"},{"alias":"RPS2_27_1706","entrezGeneId":"86781"},{"alias":"ARPC3B","entrezGeneId":"87171"},{"alias":"dJ470L14.3","entrezGeneId":"87171"},{"alias":"COXPD13","entrezGeneId":"87178"},{"alias":"DFNB70","entrezGeneId":"87178"},{"alias":"old-35","entrezGeneId":"87178"},{"alias":"OLD35","entrezGeneId":"87178"},{"alias":"PNPASE","entrezGeneId":"87178"},{"alias":"RPL7A_23_1048","entrezGeneId":"87688"},{"alias":"A2LD1","entrezGeneId":"87769"},{"alias":"ANKRD13","entrezGeneId":"88455"},{"alias":"NY-REN-25","entrezGeneId":"88455"},{"alias":"C6orf153","entrezGeneId":"88745"},{"alias":"dJ20C7.4","entrezGeneId":"88745"},{"alias":"RNF87","entrezGeneId":"89122"},{"alias":"C6orf7","entrezGeneId":"89758"},{"alias":"CT79","entrezGeneId":"89765"},{"alias":"RSP44","entrezGeneId":"89765"},{"alias":"RSPH10A","entrezGeneId":"89765"},{"alias":"TSA2","entrezGeneId":"89765"},{"alias":"TSGA2","entrezGeneId":"89765"},{"alias":"IGHV3-3","entrezGeneId":"89770"},{"alias":"IGHV3305","entrezGeneId":"89770"},{"alias":"YUKOPIN","entrezGeneId":"89777"},{"alias":"EPIPIN","entrezGeneId":"89778"},{"alias":"SERPIN11","entrezGeneId":"89778"},{"alias":"BLOC3S2","entrezGeneId":"89781"},{"alias":"LE","entrezGeneId":"89781"},{"alias":"GP63","entrezGeneId":"89782"},{"alias":"INV","entrezGeneId":"89782"},{"alias":"IX14","entrezGeneId":"89782"},{"alias":"LMNL1","entrezGeneId":"89782"},{"alias":"MSP","entrezGeneId":"89782"},{"alias":"PRO940","entrezGeneId":"89790"},{"alias":"SIGLEC-10","entrezGeneId":"89790"},{"alias":"SLG2","entrezGeneId":"89790"},{"alias":"GAL3ST-3","entrezGeneId":"89792"},{"alias":"GAL3ST2","entrezGeneId":"89792"},{"alias":"POMFIL1","entrezGeneId":"89795"},{"alias":"STEERIN3","entrezGeneId":"89795"},{"alias":"unc53H3","entrezGeneId":"89795"},{"alias":"POMFIL3","entrezGeneId":"89796"},{"alias":"STEERIN1","entrezGeneId":"89796"},{"alias":"UNC53H1","entrezGeneId":"89796"},{"alias":"HELAD1","entrezGeneId":"89797"},{"alias":"POMFIL2","entrezGeneId":"89797"},{"alias":"RAINB1","entrezGeneId":"89797"},{"alias":"STEERIN2","entrezGeneId":"89797"},{"alias":"UNC53H2","entrezGeneId":"89797"},{"alias":"HB2E","entrezGeneId":"89801"},{"alias":"LL0XNC01-7P3.1","entrezGeneId":"89801"},{"alias":"R3F","entrezGeneId":"89801"},{"alias":"K2p17.1","entrezGeneId":"89822"},{"alias":"TALK-2","entrezGeneId":"89822"},{"alias":"TALK2","entrezGeneId":"89822"},{"alias":"TASK-4","entrezGeneId":"89822"},{"alias":"TASK4","entrezGeneId":"89822"},{"alias":"CHRNA7","entrezGeneId":"89832"},{"alias":"CHRNA7-DR1","entrezGeneId":"89832"},{"alias":"D-10","entrezGeneId":"89832"},{"alias":"D-X","entrezGeneId":"89837"},{"alias":"FAM7A3","entrezGeneId":"89837"},{"alias":"D-X","entrezGeneId":"89838"},{"alias":"FAM7A1","entrezGeneId":"89838"},{"alias":"B'-T","entrezGeneId":"89839"},{"alias":"FAM7B1","entrezGeneId":"89839"},{"alias":"GAP (1-8)","entrezGeneId":"89839"},{"alias":"EST182763","entrezGeneId":"89845"},{"alias":"MRP7","entrezGeneId":"89845"},{"alias":"SIMRP7","entrezGeneId":"89845"},{"alias":"ZFYVE5","entrezGeneId":"89846"},{"alias":"NWK2","entrezGeneId":"89848"},{"alias":"ATG16B","entrezGeneId":"89849"},{"alias":"WDR80","entrezGeneId":"89849"},{"alias":"C9orf28","entrezGeneId":"89853"},{"alias":"FAM125B","entrezGeneId":"89853"},{"alias":"S2V","entrezGeneId":"89858"},{"alias":"Siglec-XII","entrezGeneId":"89858"},{"alias":"SIGLECL1","entrezGeneId":"89858"},{"alias":"SLG","entrezGeneId":"89858"},{"alias":"LZTR2","entrezGeneId":"89866"},{"alias":"PGPR-p117","entrezGeneId":"89866"},{"alias":"RGPR","entrezGeneId":"89866"},{"alias":"RGPR-p117","entrezGeneId":"89866"},{"alias":"SEC16S","entrezGeneId":"89866"},{"alias":"NYD-SP27","entrezGeneId":"89869"},{"alias":"PLC-zeta-1","entrezGeneId":"89869"},{"alias":"PLCzeta","entrezGeneId":"89869"},{"alias":"SPGF17","entrezGeneId":"89869"},{"alias":"RNF93","entrezGeneId":"89870"},{"alias":"ZNF178","entrezGeneId":"89870"},{"alias":"ZNFB7","entrezGeneId":"89870"},{"alias":"AQPA_HUMAN","entrezGeneId":"89872"},{"alias":"ODC","entrezGeneId":"89874"},{"alias":"ODC1","entrezGeneId":"89874"},{"alias":"AAT1","entrezGeneId":"89876"},{"alias":"AAT1alpha","entrezGeneId":"89876"},{"alias":"C3orf15","entrezGeneId":"89876"},{"alias":"CaM-IP2","entrezGeneId":"89876"},{"alias":"CFAP91","entrezGeneId":"89876"},{"alias":"SPATA26","entrezGeneId":"89876"},{"alias":"D55","entrezGeneId":"89882"},{"alias":"hD55","entrezGeneId":"89882"},{"alias":"NYDSP25","entrezGeneId":"89882"},{"alias":"OR6W1","entrezGeneId":"89883"},{"alias":"sdolf","entrezGeneId":"89883"},{"alias":"CPHD4","entrezGeneId":"89884"},{"alias":"CT43","entrezGeneId":"89885"},{"alias":"FATE","entrezGeneId":"89885"},{"alias":"CD2F-10","entrezGeneId":"89886"},{"alias":"CD2F10","entrezGeneId":"89886"},{"alias":"CD84-H1","entrezGeneId":"89886"},{"alias":"CD84H1","entrezGeneId":"89886"},{"alias":"SF2001","entrezGeneId":"89886"},{"alias":"ZEC","entrezGeneId":"89887"},{"alias":"Zfp628","entrezGeneId":"89887"},{"alias":"bA216B9.3","entrezGeneId":"89891"},{"alias":"DIC5","entrezGeneId":"89891"},{"alias":"FAP133","entrezGeneId":"89891"},{"alias":"SRTD11","entrezGeneId":"89891"},{"alias":"BPIDS","entrezGeneId":"89910"},{"alias":"KOS","entrezGeneId":"89910"},{"alias":"MINP","entrezGeneId":"89927"},{"alias":"PPN","entrezGeneId":"89932"},{"alias":"ARHT2","entrezGeneId":"89941"},{"alias":"C16orf39","entrezGeneId":"89941"},{"alias":"MIRO-2","entrezGeneId":"89941"},{"alias":"MIRO2","entrezGeneId":"89941"},{"alias":"RASL","entrezGeneId":"89941"},{"alias":"MST114","entrezGeneId":"89944"},{"alias":"MSTP114","entrezGeneId":"89944"},{"alias":"bA387M24.3","entrezGeneId":"89953"},{"alias":"KNSL8","entrezGeneId":"89953"},{"alias":"C9orf140","entrezGeneId":"89958"},{"alias":"p42.3","entrezGeneId":"89958"},{"alias":"SEMDFA","entrezGeneId":"89970"},{"alias":"ATPBD4","entrezGeneId":"89978"},{"alias":"KIR3DL0","entrezGeneId":"90011"},{"alias":"LENG12","entrezGeneId":"90011"},{"alias":"C6orf157","entrezGeneId":"90025"},{"alias":"H10BH","entrezGeneId":"90025"},{"alias":"UBE2CBP","entrezGeneId":"90025"},{"alias":"YJR141W","entrezGeneId":"90025"},{"alias":"C14orf152","entrezGeneId":"90050"},{"alias":"JM11","entrezGeneId":"90060"},{"alias":"KOX28","entrezGeneId":"90075"},{"alias":"LL5b","entrezGeneId":"90102"},{"alias":"LL5beta","entrezGeneId":"90102"},{"alias":"C9orf69","entrezGeneId":"90120"},{"alias":"DBA14","entrezGeneId":"90121"},{"alias":"DT1P1A10","entrezGeneId":"90121"},{"alias":"WGG1","entrezGeneId":"90121"},{"alias":"KRT8L2","entrezGeneId":"90133"},{"alias":"ERG3","entrezGeneId":"90134"},{"alias":"HERG3","entrezGeneId":"90134"},{"alias":"Kv11.3","entrezGeneId":"90134"},{"alias":"BDPL","entrezGeneId":"90135"},{"alias":"TSPAN","entrezGeneId":"90139"},{"alias":"C14orf143","entrezGeneId":"90141"},{"alias":"NYS","entrezGeneId":"90167"},{"alias":"NYS1","entrezGeneId":"90167"},{"alias":"XIPAN","entrezGeneId":"90167"},{"alias":"C20orf130","entrezGeneId":"90187"},{"alias":"dJ620E11.4","entrezGeneId":"90187"},{"alias":"EMILIN5","entrezGeneId":"90187"},{"alias":"RPL7_20_1216","entrezGeneId":"90193"},{"alias":"C20orf169","entrezGeneId":"90196"},{"alias":"dJ453C12.4","entrezGeneId":"90196"},{"alias":"dJ453C12.4.1","entrezGeneId":"90196"},{"alias":"C20orf170","entrezGeneId":"90199"},{"alias":"dJ461P17.1","entrezGeneId":"90199"},{"alias":"HEL-S-292","entrezGeneId":"90199"},{"alias":"WAP8","entrezGeneId":"90199"},{"alias":"C20orf161","entrezGeneId":"90203"},{"alias":"dJ337O18.4","entrezGeneId":"90203"},{"alias":"PP3993","entrezGeneId":"90203"},{"alias":"SNX-L","entrezGeneId":"90203"},{"alias":"C20orf162","entrezGeneId":"90204"},{"alias":"SRP","entrezGeneId":"90226"},{"alias":"UCN-II","entrezGeneId":"90226"},{"alias":"UCNI","entrezGeneId":"90226"},{"alias":"UR","entrezGeneId":"90226"},{"alias":"URP","entrezGeneId":"90226"},{"alias":"UNC5H1","entrezGeneId":"90249"},{"alias":"AIPDS","entrezGeneId":"90268"},{"alias":"FAM105B","entrezGeneId":"90268"},{"alias":"GUM","entrezGeneId":"90268"},{"alias":"C10orf75","entrezGeneId":"90271"},{"alias":"HI-LNC80","entrezGeneId":"90271"},{"alias":"LINC00263","entrezGeneId":"90271"},{"alias":"NCRNA00263","entrezGeneId":"90271"},{"alias":"OLMALINCAS","entrezGeneId":"90271"},{"alias":"CEACAM3","entrezGeneId":"90273"},{"alias":"R29124_1","entrezGeneId":"90273"},{"alias":"C3orf25","entrezGeneId":"90288"},{"alias":"BKLHD2","entrezGeneId":"90293"},{"alias":"DSCP1","entrezGeneId":"90313"},{"alias":"TGIFLX","entrezGeneId":"90316"},{"alias":"XTP7","entrezGeneId":"90332"},{"alias":"F11","entrezGeneId":"90338"},{"alias":"HKr18","entrezGeneId":"90338"},{"alias":"HZF5","entrezGeneId":"90338"},{"alias":"KR18","entrezGeneId":"90338"},{"alias":"MAGOHP","entrezGeneId":"90352"},{"alias":"MAGOHP1","entrezGeneId":"90352"},{"alias":"ATPBD3","entrezGeneId":"90353"},{"alias":"NCS6","entrezGeneId":"90353"},{"alias":"C8orf72","entrezGeneId":"90362"},{"alias":"C19orf72","entrezGeneId":"90379"},{"alias":"C15orf42","entrezGeneId":"90381"},{"alias":"SLD3","entrezGeneId":"90381"},{"alias":"Treslin","entrezGeneId":"90381"},{"alias":"MED30S","entrezGeneId":"90390"},{"alias":"THRAP6","entrezGeneId":"90390"},{"alias":"TRAP25","entrezGeneId":"90390"},{"alias":"2900010K02Rik","entrezGeneId":"90407"},{"alias":"F5F8D","entrezGeneId":"90411"},{"alias":"F5F8D2","entrezGeneId":"90411"},{"alias":"LMAN1IP","entrezGeneId":"90411"},{"alias":"SDNSF","entrezGeneId":"90411"},{"alias":"C15orf57","entrezGeneId":"90416"},{"alias":"C15orf23","entrezGeneId":"90417"},{"alias":"HSD11","entrezGeneId":"90417"},{"alias":"SKAP","entrezGeneId":"90417"},{"alias":"TRAF4AF1","entrezGeneId":"90417"},{"alias":"ATP6E1","entrezGeneId":"90423"},{"alias":"ATP6EL2","entrezGeneId":"90423"},{"alias":"ATP6V1EL2","entrezGeneId":"90423"},{"alias":"VMA4","entrezGeneId":"90423"},{"alias":"ZPR9","entrezGeneId":"90441"},{"alias":"3'HEXO","entrezGeneId":"90459"},{"alias":"HEXO","entrezGeneId":"90459"},{"alias":"THEX1","entrezGeneId":"90459"},{"alias":"CKBBP2","entrezGeneId":"90480"},{"alias":"CKbetaBP2","entrezGeneId":"90480"},{"alias":"CRIF1","entrezGeneId":"90480"},{"alias":"MRP-L59","entrezGeneId":"90480"},{"alias":"PLINP","entrezGeneId":"90480"},{"alias":"PLINP-1","entrezGeneId":"90480"},{"alias":"Plinp1","entrezGeneId":"90480"},{"alias":"PRG6","entrezGeneId":"90480"},{"alias":"BC37295_3","entrezGeneId":"90485"},{"alias":"C12orf23","entrezGeneId":"90488"},{"alias":"Ses2","entrezGeneId":"90507"},{"alias":"FinGER8","entrezGeneId":"90522"},{"alias":"C6orf142","entrezGeneId":"90523"},{"alias":"CIP","entrezGeneId":"90523"},{"alias":"mol","entrezGeneId":"90527"},{"alias":"NIP","entrezGeneId":"90527"},{"alias":"NUMBIP","entrezGeneId":"90527"},{"alias":"C1orf201","entrezGeneId":"90529"},{"alias":"MAPO2","entrezGeneId":"90529"},{"alias":"C10orf42","entrezGeneId":"90550"},{"alias":"CCDC109A","entrezGeneId":"90550"},{"alias":"HsMCU","entrezGeneId":"90550"},{"alias":"HIT-40","entrezGeneId":"90576"},{"alias":"ZNF842","entrezGeneId":"90576"},{"alias":"C19orf52","entrezGeneId":"90580"},{"alias":"TIM29","entrezGeneId":"90580"},{"alias":"AOC4","entrezGeneId":"90586"},{"alias":"UPAT","entrezGeneId":"90586"},{"alias":"C5orf31","entrezGeneId":"90624"},{"alias":"MC3DN8","entrezGeneId":"90624"},{"alias":"MZM1L","entrezGeneId":"90624"},{"alias":"C21orf105","entrezGeneId":"90625"},{"alias":"NDUFV3-AS1","entrezGeneId":"90625"},{"alias":"ARHGAP37","entrezGeneId":"90627"},{"alias":"DLC2","entrezGeneId":"90627"},{"alias":"GT650","entrezGeneId":"90627"},{"alias":"LINC00464","entrezGeneId":"90627"},{"alias":"bA142J11.1","entrezGeneId":"90632"},{"alias":"C6orf176","entrezGeneId":"90632"},{"alias":"CG018","entrezGeneId":"90634"},{"alias":"AIRAP","entrezGeneId":"90637"},{"alias":"KRBO2","entrezGeneId":"90649"},{"alias":"TGIFLY","entrezGeneId":"90655"},{"alias":"TBL1","entrezGeneId":"90665"},{"alias":"C14orf121","entrezGeneId":"90668"},{"alias":"crml-1","entrezGeneId":"90668"},{"alias":"LRRC16B","entrezGeneId":"90668"},{"alias":"CMT2P","entrezGeneId":"90678"},{"alias":"RIFLE","entrezGeneId":"90678"},{"alias":"TAL","entrezGeneId":"90678"},{"alias":"SEC11L3","entrezGeneId":"90701"},{"alias":"SPC21","entrezGeneId":"90701"},{"alias":"SPCS4C","entrezGeneId":"90701"},{"alias":"CXorf44","entrezGeneId":"90736"},{"alias":"CT16","entrezGeneId":"90737"},{"alias":"CT16.1","entrezGeneId":"90737"},{"alias":"CT16.2","entrezGeneId":"90737"},{"alias":"GAGEE1","entrezGeneId":"90737"},{"alias":"PAGE-5","entrezGeneId":"90737"},{"alias":"1190004M21Rik","entrezGeneId":"90780"},{"alias":"CCDC45","entrezGeneId":"90799"},{"alias":"Ccr4d","entrezGeneId":"90806"},{"alias":"KIAA0759L","entrezGeneId":"90806"},{"alias":"C14orf9","entrezGeneId":"90809"},{"alias":"TMEM55B","entrezGeneId":"90809"},{"alias":"PRMT10","entrezGeneId":"90826"},{"alias":"HKr19","entrezGeneId":"90827"},{"alias":"KR19","entrezGeneId":"90827"},{"alias":"C16orf93","entrezGeneId":"90835"},{"alias":"WEX3","entrezGeneId":"90843"},{"alias":"HEL2","entrezGeneId":"90850"},{"alias":"PPP1R146","entrezGeneId":"90853"},{"alias":"NT5C3P1","entrezGeneId":"90859"},{"alias":"UMPH1P","entrezGeneId":"90859"},{"alias":"C16orf34","entrezGeneId":"90861"},{"alias":"HN1L","entrezGeneId":"90861"},{"alias":"L11","entrezGeneId":"90861"},{"alias":"C16orf31","entrezGeneId":"90864"},{"alias":"SSB3","entrezGeneId":"90864"},{"alias":"C9orf26","entrezGeneId":"90865"},{"alias":"DVS27","entrezGeneId":"90865"},{"alias":"IL1F11","entrezGeneId":"90865"},{"alias":"NF-HEV","entrezGeneId":"90865"},{"alias":"NFEHEV","entrezGeneId":"90865"},{"alias":"C9orf123","entrezGeneId":"90871"},{"alias":"TMEM261","entrezGeneId":"90871"},{"alias":"RINCK","entrezGeneId":"90933"},{"alias":"W117m","entrezGeneId":"90952"},{"alias":"AARF","entrezGeneId":"90956"},{"alias":"DDX57","entrezGeneId":"90957"},{"alias":"OASIS","entrezGeneId":"90993"},{"alias":"FHOD3","entrezGeneId":"91010"},{"alias":"FRL2","entrezGeneId":"91010"},{"alias":"WBP-3","entrezGeneId":"91010"},{"alias":"WBP3","entrezGeneId":"91010"},{"alias":"LASS5","entrezGeneId":"91012"},{"alias":"Trh4","entrezGeneId":"91012"},{"alias":"DP9","entrezGeneId":"91039"},{"alias":"DPLP9","entrezGeneId":"91039"},{"alias":"DPRP-2","entrezGeneId":"91039"},{"alias":"DPRP2","entrezGeneId":"91039"},{"alias":"AP-5","entrezGeneId":"91056"},{"alias":"PP1030","entrezGeneId":"91056"},{"alias":"L15","entrezGeneId":"91057"},{"alias":"NY-REN-41","entrezGeneId":"91057"},{"alias":"RAMA3","entrezGeneId":"91057"},{"alias":"NY-BR-1","entrezGeneId":"91074"},{"alias":"GOA","entrezGeneId":"91107"},{"alias":"RNF100","entrezGeneId":"91107"},{"alias":"BC39498_3","entrezGeneId":"91120"},{"alias":"HsT1031","entrezGeneId":"91133"},{"alias":"HMSN6B","entrezGeneId":"91137"},{"alias":"JBTS6","entrezGeneId":"91147"},{"alias":"MECKELIN","entrezGeneId":"91147"},{"alias":"MKS3","entrezGeneId":"91147"},{"alias":"NPHP11","entrezGeneId":"91147"},{"alias":"TNEM67","entrezGeneId":"91147"},{"alias":"Sancho","entrezGeneId":"91151"},{"alias":"EEF1A2BP1","entrezGeneId":"91156"},{"alias":"NSR1","entrezGeneId":"91179"},{"alias":"SREC-II","entrezGeneId":"91179"},{"alias":"SREC2","entrezGeneId":"91179"},{"alias":"SRECRP-1","entrezGeneId":"91179"},{"alias":"VDEGS","entrezGeneId":"91179"},{"alias":"FAM108A6","entrezGeneId":"91219"},{"alias":"FAM108A6P","entrezGeneId":"91219"},{"alias":"GGTL4","entrezGeneId":"91227"},{"alias":"LZT-Hs9","entrezGeneId":"91252"},{"alias":"SCDEDS","entrezGeneId":"91252"},{"alias":"ZIP13","entrezGeneId":"91252"},{"alias":"FAM44B","entrezGeneId":"91272"},{"alias":"C9orf30","entrezGeneId":"91283"},{"alias":"L8","entrezGeneId":"91283"},{"alias":"TMEM112B","entrezGeneId":"91289"},{"alias":"TMEM153","entrezGeneId":"91289"},{"alias":"C19orf22","entrezGeneId":"91300"},{"alias":"ASBABP1","entrezGeneId":"91304"},{"alias":"C19orf6","entrezGeneId":"91304"},{"alias":"MBRL","entrezGeneId":"91304"},{"alias":"MEMBRALIN","entrezGeneId":"91304"},{"alias":"R32184_3","entrezGeneId":"91304"},{"alias":"C22orf14","entrezGeneId":"91319"},{"alias":"derlin-3","entrezGeneId":"91319"},{"alias":"IZP6","entrezGeneId":"91319"},{"alias":"LLN2","entrezGeneId":"91319"},{"alias":"16.1","entrezGeneId":"91353"},{"alias":"IGLL3","entrezGeneId":"91353"},{"alias":"HBII-436","entrezGeneId":"91380"},{"alias":"SOLO","entrezGeneId":"91404"},{"alias":"PLEKHA3P","entrezGeneId":"91405"},{"alias":"KUB3","entrezGeneId":"91419"},{"alias":"XRCC6BP1","entrezGeneId":"91419"},{"alias":"C19orf40","entrezGeneId":"91442"},{"alias":"SGK493","entrezGeneId":"91461"},{"alias":"Vlk","entrezGeneId":"91461"},{"alias":"Pix-1","entrezGeneId":"91464"},{"alias":"RAXLX","entrezGeneId":"91464"},{"alias":"FAM113B","entrezGeneId":"91523"},{"alias":"PP6-ARS-B","entrezGeneId":"91526"},{"alias":"2510004L01Rik","entrezGeneId":"91543"},{"alias":"cig33","entrezGeneId":"91543"},{"alias":"cig5","entrezGeneId":"91543"},{"alias":"vig1","entrezGeneId":"91543"},{"alias":"COA-1","entrezGeneId":"91544"},{"alias":"PP2243","entrezGeneId":"91544"},{"alias":"SOC","entrezGeneId":"91544"},{"alias":"SOCI","entrezGeneId":"91544"},{"alias":"UBXD5","entrezGeneId":"91544"},{"alias":"RPS2_17_1125","entrezGeneId":"91561"},{"alias":"COXPD7","entrezGeneId":"91574"},{"alias":"SPG55","entrezGeneId":"91574"},{"alias":"AROS","entrezGeneId":"91582"},{"alias":"S19BP","entrezGeneId":"91582"},{"alias":"FAYV2820","entrezGeneId":"91584"},{"alias":"PLEXA4","entrezGeneId":"91584"},{"alias":"PLXNA4A","entrezGeneId":"91584"},{"alias":"PLXNA4B","entrezGeneId":"91584"},{"alias":"PRO34003","entrezGeneId":"91584"},{"alias":"CCDC16","entrezGeneId":"91603"},{"alias":"OMCG1","entrezGeneId":"91603"},{"alias":"SLFN8/9","entrezGeneId":"91607"},{"alias":"RRP17","entrezGeneId":"91608"},{"alias":"VTS58635","entrezGeneId":"91608"},{"alias":"C14orf52","entrezGeneId":"91612"},{"alias":"chch","entrezGeneId":"91612"},{"alias":"My015","entrezGeneId":"91612"},{"alias":"dJ85M6.4","entrezGeneId":"91614"},{"alias":"TR2","entrezGeneId":"91614"},{"alias":"CMH20","entrezGeneId":"91624"},{"alias":"NELIN","entrezGeneId":"91624"},{"alias":"ECAT8","entrezGeneId":"91646"},{"alias":"ATP12","entrezGeneId":"91647"},{"alias":"ATP12p","entrezGeneId":"91647"},{"alias":"LP3663","entrezGeneId":"91647"},{"alias":"MC5DN1","entrezGeneId":"91647"},{"alias":"CDON2","entrezGeneId":"91653"},{"alias":"CLR19.3","entrezGeneId":"91662"},{"alias":"FCAS2","entrezGeneId":"91662"},{"alias":"NALP12","entrezGeneId":"91662"},{"alias":"PAN6","entrezGeneId":"91662"},{"alias":"PYPAF7","entrezGeneId":"91662"},{"alias":"RNO","entrezGeneId":"91662"},{"alias":"RNO2","entrezGeneId":"91662"},{"alias":"SB135","entrezGeneId":"91663"},{"alias":"SYT11","entrezGeneId":"91683"},{"alias":"sytXII","entrezGeneId":"91683"},{"alias":"C1orf155","entrezGeneId":"91687"},{"alias":"CENP-L","entrezGeneId":"91687"},{"alias":"dJ383J4.3","entrezGeneId":"91687"},{"alias":"C22orf32","entrezGeneId":"91689"},{"alias":"DDDD","entrezGeneId":"91689"},{"alias":"EMRE","entrezGeneId":"91689"},{"alias":"RNF191","entrezGeneId":"91694"},{"alias":"dJ222E13.2","entrezGeneId":"91695"},{"alias":"RRP7B","entrezGeneId":"91695"},{"alias":"ACY-3","entrezGeneId":"91703"},{"alias":"HCBP1","entrezGeneId":"91703"},{"alias":"IPPI2","entrezGeneId":"91734"},{"alias":"YT521","entrezGeneId":"91746"},{"alias":"YT521-B","entrezGeneId":"91746"},{"alias":"C14orf117","entrezGeneId":"91748"},{"alias":"C14orf43","entrezGeneId":"91748"},{"alias":"c14_5541","entrezGeneId":"91748"},{"alias":"LSR68","entrezGeneId":"91748"},{"alias":"MIDEAS","entrezGeneId":"91748"},{"alias":"KIAA1919","entrezGeneId":"91749"},{"alias":"NaGLT1","entrezGeneId":"91749"},{"alias":"C14orf46","entrezGeneId":"91750"},{"alias":"c14_5549","entrezGeneId":"91750"},{"alias":"C2orf10","entrezGeneId":"91752"},{"alias":"APUG","entrezGeneId":"91754"},{"alias":"LCCS10","entrezGeneId":"91754"},{"alias":"NC","entrezGeneId":"91754"},{"alias":"NERCC","entrezGeneId":"91754"},{"alias":"NERCC1","entrezGeneId":"91754"},{"alias":"CABL1","entrezGeneId":"91768"},{"alias":"CABLES","entrezGeneId":"91768"},{"alias":"HsT2563","entrezGeneId":"91768"},{"alias":"IK3-1","entrezGeneId":"91768"},{"alias":"FAM55C","entrezGeneId":"91775"},{"alias":"MST115","entrezGeneId":"91775"},{"alias":"MSTP115","entrezGeneId":"91775"},{"alias":"ABH8","entrezGeneId":"91801"},{"alias":"TRM9","entrezGeneId":"91801"},{"alias":"TRMT9","entrezGeneId":"91801"},{"alias":"TRMT9A","entrezGeneId":"91801"},{"alias":"caMLCK","entrezGeneId":"91807"},{"alias":"MLCK","entrezGeneId":"91807"},{"alias":"MLCK2","entrezGeneId":"91807"},{"alias":"C14orf73","entrezGeneId":"91828"},{"alias":"DMR","entrezGeneId":"91833"},{"alias":"CHL","entrezGeneId":"91851"},{"alias":"dA141H5.1","entrezGeneId":"91851"},{"alias":"MGC1","entrezGeneId":"91851"},{"alias":"MGCN","entrezGeneId":"91851"},{"alias":"NRLN1","entrezGeneId":"91851"},{"alias":"VOPT","entrezGeneId":"91851"},{"alias":"NY-BR-20","entrezGeneId":"91860"},{"alias":"MARVD3","entrezGeneId":"91862"},{"alias":"MRVLDC3","entrezGeneId":"91862"},{"alias":"CDG1N","entrezGeneId":"91869"},{"alias":"Strap","entrezGeneId":"91875"},{"alias":"hCG_2033039","entrezGeneId":"91893"},{"alias":"SMUCKLER","entrezGeneId":"91937"},{"alias":"TIM4","entrezGeneId":"91937"},{"alias":"B17.2L","entrezGeneId":"91942"},{"alias":"mimitin","entrezGeneId":"91942"},{"alias":"MMTN","entrezGeneId":"91942"},{"alias":"NDUFA12L","entrezGeneId":"91942"},{"alias":"CDG2E","entrezGeneId":"91949"},{"alias":"CXorf40","entrezGeneId":"91966"},{"alias":"EOLA1","entrezGeneId":"91966"},{"alias":"CS-3","entrezGeneId":"91977"},{"alias":"CS3","entrezGeneId":"91977"},{"alias":"FATZ-3","entrezGeneId":"91977"},{"alias":"FRP3","entrezGeneId":"91977"},{"alias":"C19orf20","entrezGeneId":"91978"},{"alias":"GTRGEO22","entrezGeneId":"91978"},{"alias":"PGs1","entrezGeneId":"91978"},{"alias":"FAM58A","entrezGeneId":"92002"},{"alias":"STAR","entrezGeneId":"92002"},{"alias":"CG7943","entrezGeneId":"92014"},{"alias":"MCART1","entrezGeneId":"92014"},{"alias":"A-388D4.1","entrezGeneId":"92017"},{"alias":"RUNDC2A","entrezGeneId":"92017"},{"alias":"C4orf42","entrezGeneId":"92070"},{"alias":"CTBP1-AS1","entrezGeneId":"92070"},{"alias":"CTBP1-AS2","entrezGeneId":"92070"},{"alias":"dJ831C21.1","entrezGeneId":"92086"},{"alias":"dJ831C21.2","entrezGeneId":"92086"},{"alias":"GGTL6","entrezGeneId":"92086"},{"alias":"GGTLA3","entrezGeneId":"92086"},{"alias":"GGTLA4","entrezGeneId":"92086"},{"alias":"C7orf39","entrezGeneId":"92092"},{"alias":"IFT70A","entrezGeneId":"92104"},{"alias":"INT4","entrezGeneId":"92105"},{"alias":"MST093","entrezGeneId":"92105"},{"alias":"C18orf4","entrezGeneId":"92126"},{"alias":"DE-epi2","entrezGeneId":"92126"},{"alias":"3D3","entrezGeneId":"92140"},{"alias":"AEG-1","entrezGeneId":"92140"},{"alias":"AEG1","entrezGeneId":"92140"},{"alias":"LYRIC","entrezGeneId":"92140"},{"alias":"LYRIC/3D3","entrezGeneId":"92140"},{"alias":"ABBA","entrezGeneId":"92154"},{"alias":"ABBA-1","entrezGeneId":"92154"},{"alias":"ABBA1","entrezGeneId":"92154"},{"alias":"GTP","entrezGeneId":"92170"},{"alias":"GTPBP7","entrezGeneId":"92170"},{"alias":"DCUBP","entrezGeneId":"92181"},{"alias":"CORD15","entrezGeneId":"92211"},{"alias":"PCDH21","entrezGeneId":"92211"},{"alias":"PRCAD","entrezGeneId":"92211"},{"alias":"RP65","entrezGeneId":"92211"},{"alias":"CAPZIP","entrezGeneId":"92241"},{"alias":"MK2S4","entrezGeneId":"92241"},{"alias":"DC47","entrezGeneId":"92259"},{"alias":"MRP-S36","entrezGeneId":"92259"},{"alias":"GIOT-1","entrezGeneId":"92283"},{"alias":"GIOT1","entrezGeneId":"92283"},{"alias":"HZF28","entrezGeneId":"92283"},{"alias":"SZFP41","entrezGeneId":"92285"},{"alias":"GATF-C","entrezGeneId":"92292"},{"alias":"GNAT","entrezGeneId":"92292"},{"alias":"PPP1R152","entrezGeneId":"92293"},{"alias":"HIN-1","entrezGeneId":"92304"},{"alias":"HIN1","entrezGeneId":"92304"},{"alias":"LU105","entrezGeneId":"92304"},{"alias":"PnSP-2","entrezGeneId":"92304"},{"alias":"UGRP2","entrezGeneId":"92304"},{"alias":"D4S2561E","entrezGeneId":"92305"},{"alias":"MEX-3A","entrezGeneId":"92312"},{"alias":"RKHD4","entrezGeneId":"92312"},{"alias":"RNF162","entrezGeneId":"92312"},{"alias":"LYK5","entrezGeneId":"92335"},{"alias":"NY-BR-96","entrezGeneId":"92335"},{"alias":"PMSE","entrezGeneId":"92335"},{"alias":"Stlk","entrezGeneId":"92335"},{"alias":"STRAD","entrezGeneId":"92335"},{"alias":"C17orf72","entrezGeneId":"92340"},{"alias":"AsTP2","entrezGeneId":"92342"},{"alias":"C1orf156","entrezGeneId":"92342"},{"alias":"HPM1","entrezGeneId":"92342"},{"alias":"GO","entrezGeneId":"92344"},{"alias":"NTKLBP1","entrezGeneId":"92344"},{"alias":"SCYL1BP1","entrezGeneId":"92344"},{"alias":"SSB-4","entrezGeneId":"92369"},{"alias":"SSB4","entrezGeneId":"92369"},{"alias":"ACPL2","entrezGeneId":"92370"},{"alias":"HEL124","entrezGeneId":"92370"},{"alias":"XYLP","entrezGeneId":"92370"},{"alias":"MRFF","entrezGeneId":"92399"},{"alias":"MTRRF","entrezGeneId":"92399"},{"alias":"RRF","entrezGeneId":"92399"},{"alias":"Shax3","entrezGeneId":"92421"},{"alias":"SNF7-3","entrezGeneId":"92421"},{"alias":"VPS32C","entrezGeneId":"92421"},{"alias":"RPS2_20_1415","entrezGeneId":"92427"},{"alias":"bA348N5.3","entrezGeneId":"92482"},{"alias":"BBIP10","entrezGeneId":"92482"},{"alias":"BBS18","entrezGeneId":"92482"},{"alias":"NCRNA00081","entrezGeneId":"92482"},{"alias":"LDH6B","entrezGeneId":"92483"},{"alias":"LDHAL6","entrezGeneId":"92483"},{"alias":"LDHL","entrezGeneId":"92483"},{"alias":"dJ189G13.2","entrezGeneId":"92507"},{"alias":"RPS4L2","entrezGeneId":"92507"},{"alias":"RPS4P2","entrezGeneId":"92507"},{"alias":"RPS4Y_2_1680","entrezGeneId":"92507"},{"alias":"CYTSB","entrezGeneId":"92521"},{"alias":"HCMOGT-1","entrezGeneId":"92521"},{"alias":"HCMOGT1","entrezGeneId":"92521"},{"alias":"NSP","entrezGeneId":"92521"},{"alias":"MJDL","entrezGeneId":"92552"},{"alias":"BICDR-1","entrezGeneId":"92558"},{"alias":"BICDR1","entrezGeneId":"92558"},{"alias":"CCDC64","entrezGeneId":"92558"},{"alias":"CCDC64A","entrezGeneId":"92558"},{"alias":"H_267D11.1","entrezGeneId":"92558"},{"alias":"HSD13","entrezGeneId":"92565"},{"alias":"SCN4","entrezGeneId":"92579"},{"alias":"UGRP","entrezGeneId":"92579"},{"alias":"MATS2","entrezGeneId":"92597"},{"alias":"MOB4A","entrezGeneId":"92597"},{"alias":"MOBKL1A","entrezGeneId":"92597"},{"alias":"MGCA9","entrezGeneId":"92609"},{"alias":"TIM50","entrezGeneId":"92609"},{"alias":"TIM50L","entrezGeneId":"92609"},{"alias":"T2BP","entrezGeneId":"92610"},{"alias":"T6BP","entrezGeneId":"92610"},{"alias":"TIFAA","entrezGeneId":"92610"},{"alias":"MAFG-AS1","entrezGeneId":"92659"},{"alias":"bA504H3.4","entrezGeneId":"92667"},{"alias":"C20orf72","entrezGeneId":"92667"},{"alias":"DDK1","entrezGeneId":"92667"},{"alias":"MTDPS11","entrezGeneId":"92667"},{"alias":"C20orf88","entrezGeneId":"92675"},{"alias":"DTD","entrezGeneId":"92675"},{"alias":"DUE-B","entrezGeneId":"92675"},{"alias":"DUEB","entrezGeneId":"92675"},{"alias":"HARS2","entrezGeneId":"92675"},{"alias":"pqn-68","entrezGeneId":"92675"},{"alias":"dJ872K7.6","entrezGeneId":"92682"},{"alias":"RPS15A_24_1692","entrezGeneId":"92682"},{"alias":"Noxp20","entrezGeneId":"92689"},{"alias":"C1orf37","entrezGeneId":"92703"},{"alias":"C9orf112","entrezGeneId":"92715"},{"alias":"RRT2","entrezGeneId":"92715"},{"alias":"WDR85","entrezGeneId":"92715"},{"alias":"bet","entrezGeneId":"92737"},{"alias":"UNQ26","entrezGeneId":"92737"},{"alias":"JM24","entrezGeneId":"92745"},{"alias":"pp7194","entrezGeneId":"92745"},{"alias":"SN2","entrezGeneId":"92745"},{"alias":"SNAT5","entrezGeneId":"92745"},{"alias":"C20orf114","entrezGeneId":"92747"},{"alias":"LPLUNC1","entrezGeneId":"92747"},{"alias":"C2orf39","entrezGeneId":"92749"},{"alias":"CCDC164","entrezGeneId":"92749"},{"alias":"CILD21","entrezGeneId":"92749"},{"alias":"DHB","entrezGeneId":"92797"},{"alias":"hDHB","entrezGeneId":"92797"},{"alias":"PP203","entrezGeneId":"92799"},{"alias":"Sb1","entrezGeneId":"92799"},{"alias":"CENP-Z","entrezGeneId":"92822"},{"alias":"CENPZ","entrezGeneId":"92822"},{"alias":"ZADT","entrezGeneId":"92822"},{"alias":"ZFP276","entrezGeneId":"92822"},{"alias":"ZNF477","entrezGeneId":"92822"},{"alias":"C19orf32","entrezGeneId":"92840"},{"alias":"DP1L1","entrezGeneId":"92840"},{"alias":"REEP6.1","entrezGeneId":"92840"},{"alias":"REEP6.2","entrezGeneId":"92840"},{"alias":"RP77","entrezGeneId":"92840"},{"alias":"TB2L1","entrezGeneId":"92840"},{"alias":"Yip2f","entrezGeneId":"92840"},{"alias":"BXDC4","entrezGeneId":"92856"},{"alias":"HNRPLL","entrezGeneId":"92906"},{"alias":"SRRF","entrezGeneId":"92906"},{"alias":"COXPD25","entrezGeneId":"92935"},{"alias":"MetRS","entrezGeneId":"92935"},{"alias":"mtMetRS","entrezGeneId":"92935"},{"alias":"ADAMTSL-1","entrezGeneId":"92949"},{"alias":"ADAMTSR1","entrezGeneId":"92949"},{"alias":"C9orf94","entrezGeneId":"92949"},{"alias":"PUNCTIN","entrezGeneId":"92949"},{"alias":"FP588","entrezGeneId":"92973"},{"alias":"MARCH-IX","entrezGeneId":"92979"},{"alias":"RNF179","entrezGeneId":"92979"},{"alias":"ZNF651","entrezGeneId":"92999"},{"alias":"beta3GnT7","entrezGeneId":"93010"},{"alias":"AIRP","entrezGeneId":"93034"},{"alias":"CN-IB","entrezGeneId":"93034"},{"alias":"CN1B","entrezGeneId":"93034"},{"alias":"PKHDL1","entrezGeneId":"93035"},{"alias":"C13orf27","entrezGeneId":"93081"},{"alias":"LINCR","entrezGeneId":"93082"},{"alias":"RNF132","entrezGeneId":"93082"},{"alias":"UNQ729","entrezGeneId":"93099"},{"alias":"ZD52F10","entrezGeneId":"93099"},{"alias":"NAPRT1","entrezGeneId":"93100"},{"alias":"PP3856","entrezGeneId":"93100"},{"alias":"KV6.3","entrezGeneId":"93107"},{"alias":"KV6.4","entrezGeneId":"93107"},{"alias":"TMEM142C","entrezGeneId":"93129"},{"alias":"bA371L19.2","entrezGeneId":"93144"},{"alias":"RPS10L","entrezGeneId":"93144"},{"alias":"RPS10_13_1677","entrezGeneId":"93144"},{"alias":"NOE2","entrezGeneId":"93145"},{"alias":"NOELIN2","entrezGeneId":"93145"},{"alias":"NOELIN2_V1","entrezGeneId":"93145"},{"alias":"OlfC","entrezGeneId":"93145"},{"alias":"HTR7P","entrezGeneId":"93164"},{"alias":"KMT8C","entrezGeneId":"93166"},{"alias":"PDA3","entrezGeneId":"93166"},{"alias":"PRISM","entrezGeneId":"93166"},{"alias":"GPI-MT-I","entrezGeneId":"93183"},{"alias":"CD316","entrezGeneId":"93185"},{"alias":"CD81P3","entrezGeneId":"93185"},{"alias":"EWI-2","entrezGeneId":"93185"},{"alias":"EWI2","entrezGeneId":"93185"},{"alias":"KCT-4","entrezGeneId":"93185"},{"alias":"LIR-D1","entrezGeneId":"93185"},{"alias":"PGRL","entrezGeneId":"93185"},{"alias":"AGLA546","entrezGeneId":"93210"},{"alias":"CAB2","entrezGeneId":"93210"},{"alias":"hCOS16","entrezGeneId":"93210"},{"alias":"PERLD1","entrezGeneId":"93210"},{"alias":"PP1498","entrezGeneId":"93210"},{"alias":"CILD20","entrezGeneId":"93233"},{"alias":"CT50","entrezGeneId":"93273"},{"alias":"LEMP-1","entrezGeneId":"93273"},{"alias":"DGT4","entrezGeneId":"93323"},{"alias":"HICE1","entrezGeneId":"93323"},{"alias":"NY-SAR-48","entrezGeneId":"93323"},{"alias":"CFBP","entrezGeneId":"93343"},{"alias":"FAM125A","entrezGeneId":"93343"},{"alias":"HTMP10","entrezGeneId":"93377"},{"alias":"TMEM10","entrezGeneId":"93377"},{"alias":"TMP10","entrezGeneId":"93377"},{"alias":"EMC5","entrezGeneId":"93380"},{"alias":"TMEM32","entrezGeneId":"93380"},{"alias":"MYLC2PL","entrezGeneId":"93408"},{"alias":"PLRLC","entrezGeneId":"93408"},{"alias":"C10orf94","entrezGeneId":"93426"},{"alias":"CT76","entrezGeneId":"93426"},{"alias":"POF12","entrezGeneId":"93426"},{"alias":"SPGF15","entrezGeneId":"93426"},{"alias":"R30923_1","entrezGeneId":"93436"},{"alias":"C14orf32","entrezGeneId":"93487"},{"alias":"c14_5346","entrezGeneId":"93487"},{"alias":"MISS","entrezGeneId":"93487"},{"alias":"TPIP","entrezGeneId":"93492"},{"alias":"HSPC105","entrezGeneId":"93517"},{"alias":"ANUBL1","entrezGeneId":"93550"},{"alias":"C3orf50","entrezGeneId":"93556"},{"alias":"NCRNA00259","entrezGeneId":"93556"},{"alias":"HEL-S-88","entrezGeneId":"93587"},{"alias":"MSSGM","entrezGeneId":"93587"},{"alias":"MSSGM1","entrezGeneId":"93587"},{"alias":"RG9MTD2","entrezGeneId":"93587"},{"alias":"TRM10","entrezGeneId":"93587"},{"alias":"RCD4","entrezGeneId":"93589"},{"alias":"Gm85","entrezGeneId":"93594"},{"alias":"WDR67","entrezGeneId":"93594"},{"alias":"FBG3","entrezGeneId":"93611"},{"alias":"FBX30","entrezGeneId":"93611"},{"alias":"Fbx44","entrezGeneId":"93611"},{"alias":"FBX6A","entrezGeneId":"93611"},{"alias":"Fbxo6a","entrezGeneId":"93611"},{"alias":"PAM14","entrezGeneId":"93621"},{"alias":"PGR1","entrezGeneId":"93621"},{"alias":"ADA2(beta)","entrezGeneId":"93624"},{"alias":"ADA2B","entrezGeneId":"93624"},{"alias":"HSPC302","entrezGeneId":"93627"},{"alias":"IHPRF3","entrezGeneId":"93627"},{"alias":"TBCKL","entrezGeneId":"93627"},{"alias":"PILT","entrezGeneId":"93643"},{"alias":"TJP4","entrezGeneId":"93643"},{"alias":"MYCD","entrezGeneId":"93649"},{"alias":"ACPT","entrezGeneId":"93650"},{"alias":"AI1J","entrezGeneId":"93650"},{"alias":"ST7AS1","entrezGeneId":"93653"},{"alias":"ST7OT1","entrezGeneId":"93653"},{"alias":"ST7AS2","entrezGeneId":"93654"},{"alias":"ST7OT2","entrezGeneId":"93654"},{"alias":"NCRNA00026","entrezGeneId":"93655"},{"alias":"ST7","entrezGeneId":"93655"},{"alias":"ST7OT3","entrezGeneId":"93655"},{"alias":"CGB","entrezGeneId":"93659"},{"alias":"HCG","entrezGeneId":"93659"},{"alias":"hCGB","entrezGeneId":"93659"},{"alias":"CAPPA3","entrezGeneId":"93661"},{"alias":"Gsg3","entrezGeneId":"93661"},{"alias":"HEL-S-86","entrezGeneId":"93661"},{"alias":"bA307O14.2","entrezGeneId":"93663"},{"alias":"MacGAP","entrezGeneId":"93663"},{"alias":"SENEX","entrezGeneId":"93663"},{"alias":"CAPS2","entrezGeneId":"93664"},{"alias":"HPRG1","entrezGeneId":"93668"},{"alias":"LINC00027","entrezGeneId":"93668"},{"alias":"NCRNA00027","entrezGeneId":"93668"},{"alias":"RPS23_3_930","entrezGeneId":"93948"},{"alias":"ACRC","entrezGeneId":"93953"},{"alias":"NAAR1","entrezGeneId":"93953"},{"alias":"ARP8","entrezGeneId":"93973"},{"alias":"hArp8","entrezGeneId":"93973"},{"alias":"INO80N","entrezGeneId":"93973"},{"alias":"ATPI","entrezGeneId":"93974"},{"alias":"ATPIF1","entrezGeneId":"93974"},{"alias":"ATPIP","entrezGeneId":"93974"},{"alias":"IP","entrezGeneId":"93974"},{"alias":"CLEC4N","entrezGeneId":"93978"},{"alias":"CLECSF10","entrezGeneId":"93978"},{"alias":"dectin-2","entrezGeneId":"93978"},{"alias":"CAGH44","entrezGeneId":"93986"},{"alias":"SPCH1","entrezGeneId":"93986"},{"alias":"TNRC10","entrezGeneId":"93986"},{"alias":"SMNA","entrezGeneId":"94008"},{"alias":"BK126B4.1","entrezGeneId":"94009"},{"alias":"BK126B4.2","entrezGeneId":"94009"},{"alias":"dJ222E13.1","entrezGeneId":"94009"},{"alias":"HS126B42","entrezGeneId":"94009"},{"alias":"C17orf29","entrezGeneId":"94015"},{"alias":"TRNAS1","entrezGeneId":"94017"},{"alias":"TRS1","entrezGeneId":"94017"},{"alias":"CA125","entrezGeneId":"94025"},{"alias":"POM121-L","entrezGeneId":"94026"},{"alias":"POM121L","entrezGeneId":"94026"},{"alias":"CG-beta-a","entrezGeneId":"94027"},{"alias":"CGB6","entrezGeneId":"94027"},{"alias":"HSM","entrezGeneId":"94030"},{"alias":"LRIG4","entrezGeneId":"94030"},{"alias":"NGL-3","entrezGeneId":"94030"},{"alias":"Prsp","entrezGeneId":"94031"},{"alias":"Tasp","entrezGeneId":"94031"},{"alias":"CAM-KIIN","entrezGeneId":"94032"},{"alias":"CAMKIIN","entrezGeneId":"94032"},{"alias":"MTF","entrezGeneId":"94033"},{"alias":"HZF12","entrezGeneId":"94039"},{"alias":"BSTA","entrezGeneId":"94056"},{"alias":"PRO3113","entrezGeneId":"94056"},{"alias":"SLC56A1","entrezGeneId":"94081"},{"alias":"TCC","entrezGeneId":"94081"},{"alias":"CT51","entrezGeneId":"94086"},{"alias":"BBG-TCC","entrezGeneId":"94097"},{"alias":"SLC56A5","entrezGeneId":"94097"},{"alias":"BM020","entrezGeneId":"94104"},{"alias":"C21orf66","entrezGeneId":"94104"},{"alias":"FSAP105","entrezGeneId":"94104"},{"alias":"GCFC","entrezGeneId":"94104"},{"alias":"GCFC1","entrezGeneId":"94104"},{"alias":"HBEBP1","entrezGeneId":"94107"},{"alias":"SLP3","entrezGeneId":"94120"},{"alias":"SLP4","entrezGeneId":"94121"},{"alias":"slp5","entrezGeneId":"94122"},{"alias":"DCDC4B","entrezGeneId":"94137"},{"alias":"LINC00025","entrezGeneId":"94150"},{"alias":"NCRNA00025","entrezGeneId":"94150"},{"alias":"CDRT15P","entrezGeneId":"94158"},{"alias":"MRP9","entrezGeneId":"94160"},{"alias":"RNU40","entrezGeneId":"94161"},{"alias":"RNU46","entrezGeneId":"94161"},{"alias":"U40","entrezGeneId":"94161"},{"alias":"U46","entrezGeneId":"94161"},{"alias":"RNU38A","entrezGeneId":"94162"},{"alias":"U38A","entrezGeneId":"94162"},{"alias":"RNU38B","entrezGeneId":"94163"},{"alias":"U38B","entrezGeneId":"94163"},{"alias":"MOP","entrezGeneId":"94233"},{"alias":"HFH1","entrezGeneId":"94234"},{"alias":"HEJ1","entrezGeneId":"94236"},{"alias":"H2A.Z-2","entrezGeneId":"94239"},{"alias":"H2AV","entrezGeneId":"94239"},{"alias":"BRESI1","entrezGeneId":"94240"},{"alias":"p53DINP1","entrezGeneId":"94241"},{"alias":"SIP","entrezGeneId":"94241"},{"alias":"Teap","entrezGeneId":"94241"},{"alias":"TP53DINP1","entrezGeneId":"94241"},{"alias":"TP53INP1A","entrezGeneId":"94241"},{"alias":"TP53INP1B","entrezGeneId":"94241"},{"alias":"CPI-17","entrezGeneId":"94274"},{"alias":"CPI17","entrezGeneId":"94274"},{"alias":"PPP1INL","entrezGeneId":"94274"},{"alias":"PPP1R13AP","entrezGeneId":"94299"},{"alias":"JBTS15","entrezGeneId":"95681"},{"alias":"TSGA14","entrezGeneId":"95681"},{"alias":"TBC1D27","entrezGeneId":"96597"},{"alias":"IGL","entrezGeneId":"96610"},{"alias":"IGLV","entrezGeneId":"96610"},{"alias":"IGLV1","entrezGeneId":"96610"},{"alias":"PINCH-3","entrezGeneId":"96626"},{"alias":"NCOA6IP","entrezGeneId":"96764"},{"alias":"PIMT","entrezGeneId":"96764"},{"alias":"PIPMT","entrezGeneId":"96764"},{"alias":"NRCLP","entrezGeneId":"100918"},{"alias":"MLC-B","entrezGeneId":"103910"},{"alias":"MRLC2","entrezGeneId":"103910"},{"alias":"RPS27AP","entrezGeneId":"103911"},{"alias":"RPS27A_6_1513","entrezGeneId":"103911"},{"alias":"EIT6","entrezGeneId":"112398"},{"alias":"HIF-PH1","entrezGeneId":"112398"},{"alias":"HIFPH1","entrezGeneId":"112398"},{"alias":"HPH-1","entrezGeneId":"112398"},{"alias":"HPH-3","entrezGeneId":"112398"},{"alias":"PHD1","entrezGeneId":"112398"},{"alias":"HIFP4H3","entrezGeneId":"112399"},{"alias":"HIFPH3","entrezGeneId":"112399"},{"alias":"PHD3","entrezGeneId":"112399"},{"alias":"hILP2","entrezGeneId":"112401"},{"alias":"ILP-2","entrezGeneId":"112401"},{"alias":"ILP2","entrezGeneId":"112401"},{"alias":"RNF136","entrezGeneId":"112401"},{"alias":"cavin-3","entrezGeneId":"112464"},{"alias":"HSRBC","entrezGeneId":"112464"},{"alias":"PRKCDBP","entrezGeneId":"112464"},{"alias":"SRBC","entrezGeneId":"112464"},{"alias":"BFIC2","entrezGeneId":"112476"},{"alias":"BFIS2","entrezGeneId":"112476"},{"alias":"DSPB3","entrezGeneId":"112476"},{"alias":"DYT10","entrezGeneId":"112476"},{"alias":"EKD1","entrezGeneId":"112476"},{"alias":"FICCA","entrezGeneId":"112476"},{"alias":"ICCA","entrezGeneId":"112476"},{"alias":"IFITMD1","entrezGeneId":"112476"},{"alias":"PKC","entrezGeneId":"112476"},{"alias":"EXOD1","entrezGeneId":"112479"},{"alias":"ZGRF5","entrezGeneId":"112479"},{"alias":"SSAT2","entrezGeneId":"112483"},{"alias":"C14orf126","entrezGeneId":"112487"},{"alias":"bA397G5.3","entrezGeneId":"112495"},{"alias":"C6orf51","entrezGeneId":"112495"},{"alias":"TFIIIC35","entrezGeneId":"112495"},{"alias":"SH3PX2","entrezGeneId":"112574"},{"alias":"SH3PXD3B","entrezGeneId":"112574"},{"alias":"SNAG1","entrezGeneId":"112574"},{"alias":"C2orf59","entrezGeneId":"112597"},{"alias":"LINC00152","entrezGeneId":"112597"},{"alias":"NCRNA00152","entrezGeneId":"112597"},{"alias":"bA51G5.2","entrezGeneId":"112609"},{"alias":"C6orf117","entrezGeneId":"112609"},{"alias":"dJ747H23.2","entrezGeneId":"112611"},{"alias":"RWDD2","entrezGeneId":"112611"},{"alias":"CKLFSF7","entrezGeneId":"112616"},{"alias":"SDR7C3","entrezGeneId":"112724"},{"alias":"CANDF6","entrezGeneId":"112744"},{"alias":"IL-17F","entrezGeneId":"112744"},{"alias":"ML-1","entrezGeneId":"112744"},{"alias":"ML1","entrezGeneId":"112744"},{"alias":"C14orf179","entrezGeneId":"112752"},{"alias":"CED3","entrezGeneId":"112752"},{"alias":"RP81","entrezGeneId":"112752"},{"alias":"SRTD18","entrezGeneId":"112752"},{"alias":"GEFSP9","entrezGeneId":"112755"},{"alias":"STX1B1","entrezGeneId":"112755"},{"alias":"STX1B2","entrezGeneId":"112755"},{"alias":"C1orf85","entrezGeneId":"112770"},{"alias":"NCU-G1","entrezGeneId":"112770"},{"alias":"HYPT13","entrezGeneId":"112802"},{"alias":"K6IRS1","entrezGeneId":"112802"},{"alias":"KRT6IRS","entrezGeneId":"112802"},{"alias":"KRT6IRS1","entrezGeneId":"112802"},{"alias":"FDX2","entrezGeneId":"112812"},{"alias":"C10orf65","entrezGeneId":"112817"},{"alias":"DHDPS2","entrezGeneId":"112817"},{"alias":"DHDPSL","entrezGeneId":"112817"},{"alias":"HP3","entrezGeneId":"112817"},{"alias":"NPL2","entrezGeneId":"112817"},{"alias":"C14orf150","entrezGeneId":"112840"},{"alias":"MSTP050","entrezGeneId":"112840"},{"alias":"C14orf149","entrezGeneId":"112849"},{"alias":"BUD32","entrezGeneId":"112858"},{"alias":"C20orf64","entrezGeneId":"112858"},{"alias":"dJ101A2","entrezGeneId":"112858"},{"alias":"GAMOS4","entrezGeneId":"112858"},{"alias":"Nori-2","entrezGeneId":"112858"},{"alias":"Nori-2p","entrezGeneId":"112858"},{"alias":"PRPK","entrezGeneId":"112858"},{"alias":"CCDC101","entrezGeneId":"112869"},{"alias":"STAF36","entrezGeneId":"112869"},{"alias":"TDRD29","entrezGeneId":"112869"},{"alias":"BHC80L","entrezGeneId":"112885"},{"alias":"PHF4","entrezGeneId":"112885"},{"alias":"Pep8b","entrezGeneId":"112936"},{"alias":"BEND8","entrezGeneId":"112939"},{"alias":"BTBD14B","entrezGeneId":"112939"},{"alias":"BTBD30","entrezGeneId":"112939"},{"alias":"NAC-1","entrezGeneId":"112939"},{"alias":"NAC1","entrezGeneId":"112939"},{"alias":"NECFM","entrezGeneId":"112939"},{"alias":"BARTL1","entrezGeneId":"112942"},{"alias":"CCDC104","entrezGeneId":"112942"},{"alias":"ARC32","entrezGeneId":"112950"},{"alias":"SBBI81","entrezGeneId":"112970"},{"alias":"TOT4","entrezGeneId":"112970"},{"alias":"C16orf40","entrezGeneId":"113000"},{"alias":"RLUCL","entrezGeneId":"113000"},{"alias":"PLC-delta-3","entrezGeneId":"113026"},{"alias":"TIP39","entrezGeneId":"113091"},{"alias":"DUFD1","entrezGeneId":"113115"},{"alias":"FAM54A","entrezGeneId":"113115"},{"alias":"SORORIN","entrezGeneId":"113130"},{"alias":"C14orf78","entrezGeneId":"113146"},{"alias":"RPLP0L2","entrezGeneId":"113157"},{"alias":"RPLP0_3_1146","entrezGeneId":"113157"},{"alias":"SPACIA1","entrezGeneId":"113174"},{"alias":"C19orf36","entrezGeneId":"113177"},{"alias":"IMAGE:4215339","entrezGeneId":"113177"},{"alias":"SCAMP-4","entrezGeneId":"113178"},{"alias":"FWP005","entrezGeneId":"113179"},{"alias":"MRT36","entrezGeneId":"113179"},{"alias":"MST121","entrezGeneId":"113179"},{"alias":"MSTP121","entrezGeneId":"113179"},{"alias":"S863-5","entrezGeneId":"113179"},{"alias":"TAD3","entrezGeneId":"113179"},{"alias":"ATCS","entrezGeneId":"113189"},{"alias":"D4ST1","entrezGeneId":"113189"},{"alias":"EDSMC1","entrezGeneId":"113189"},{"alias":"HNK1ST","entrezGeneId":"113189"},{"alias":"H63","entrezGeneId":"113201"},{"alias":"G21","entrezGeneId":"113235"},{"alias":"HCP1","entrezGeneId":"113235"},{"alias":"PCFT","entrezGeneId":"113235"},{"alias":"C10","entrezGeneId":"113246"},{"alias":"GRCC10","entrezGeneId":"113246"},{"alias":"PP13296","entrezGeneId":"113251"},{"alias":"FAM117C","entrezGeneId":"113263"},{"alias":"GCTR","entrezGeneId":"113263"},{"alias":"GIG18","entrezGeneId":"113263"},{"alias":"TSSN1","entrezGeneId":"113263"},{"alias":"bA371L19.1","entrezGeneId":"113278"},{"alias":"BVVLS","entrezGeneId":"113278"},{"alias":"BVVLS1","entrezGeneId":"113278"},{"alias":"C20orf54","entrezGeneId":"113278"},{"alias":"hRFT2","entrezGeneId":"113278"},{"alias":"RFT2","entrezGeneId":"113278"},{"alias":"RFVT3","entrezGeneId":"113278"},{"alias":"C6orf83","entrezGeneId":"113402"},{"alias":"pRGR1","entrezGeneId":"113402"},{"alias":"TEG-261","entrezGeneId":"113419"},{"alias":"C1orf212","entrezGeneId":"113444"},{"alias":"ADC","entrezGeneId":"113451"},{"alias":"AZI2","entrezGeneId":"113451"},{"alias":"AZIB1","entrezGeneId":"113451"},{"alias":"ODC-p","entrezGeneId":"113451"},{"alias":"ODC1L","entrezGeneId":"113451"},{"alias":"ODCp","entrezGeneId":"113451"},{"alias":"BCLP","entrezGeneId":"113452"},{"alias":"CAC-1","entrezGeneId":"113452"},{"alias":"CAC1","entrezGeneId":"113452"},{"alias":"H2-ALPHA","entrezGeneId":"113457"},{"alias":"HEL308","entrezGeneId":"113510"},{"alias":"CKLFH","entrezGeneId":"113540"},{"alias":"CKLFH1","entrezGeneId":"113540"},{"alias":"CKLFSF1","entrezGeneId":"113540"},{"alias":"P450TEC","entrezGeneId":"113612"},{"alias":"SPG49","entrezGeneId":"113612"},{"alias":"SPG56","entrezGeneId":"113612"},{"alias":"ARH2","entrezGeneId":"113622"},{"alias":"cSDH","entrezGeneId":"113675"},{"alias":"SDH 2","entrezGeneId":"113675"},{"alias":"SDS-RS1","entrezGeneId":"113675"},{"alias":"TDH","entrezGeneId":"113675"},{"alias":"CT135","entrezGeneId":"113746"},{"alias":"SHIPPO1","entrezGeneId":"113746"},{"alias":"TISP50","entrezGeneId":"113746"},{"alias":"C7orf29","entrezGeneId":"113763"},{"alias":"HGFL","entrezGeneId":"113791"},{"alias":"hHGFL(S)","entrezGeneId":"113791"},{"alias":"C1orf59","entrezGeneId":"113802"},{"alias":"HEN1","entrezGeneId":"113802"},{"alias":"BMZF-4","entrezGeneId":"113835"},{"alias":"BMZF4","entrezGeneId":"113835"},{"alias":"RNF58","entrezGeneId":"113878"},{"alias":"ZNF657","entrezGeneId":"114026"},{"alias":"hCaf1z","entrezGeneId":"114034"},{"alias":"PCH7","entrezGeneId":"114034"},{"alias":"C21orf82","entrezGeneId":"114036"},{"alias":"NCRNA00310","entrezGeneId":"114036"},{"alias":"C21orf84","entrezGeneId":"114038"},{"alias":"CH507-42P11.5","entrezGeneId":"114038"},{"alias":"NCRNA00313","entrezGeneId":"114038"},{"alias":"C21orf88","entrezGeneId":"114041"},{"alias":"C21orf89","entrezGeneId":"114042"},{"alias":"NCRNA00334","entrezGeneId":"114042"},{"alias":"C21orf90","entrezGeneId":"114043"},{"alias":"C21orf85","entrezGeneId":"114044"},{"alias":"MCM3AP-AS","entrezGeneId":"114044"},{"alias":"MCM3APAS","entrezGeneId":"114044"},{"alias":"MCM3APASB","entrezGeneId":"114044"},{"alias":"NCRNA00031","entrezGeneId":"114044"},{"alias":"HASJ4442","entrezGeneId":"114049"},{"alias":"HUSSY-3","entrezGeneId":"114049"},{"alias":"MERM1","entrezGeneId":"114049"},{"alias":"PP3381","entrezGeneId":"114049"},{"alias":"WBMT","entrezGeneId":"114049"},{"alias":"WBSCR22","entrezGeneId":"114049"},{"alias":"RNF91","entrezGeneId":"114088"},{"alias":"SPRING","entrezGeneId":"114088"},{"alias":"TGR","entrezGeneId":"114112"},{"alias":"TR2","entrezGeneId":"114112"},{"alias":"TRXR3","entrezGeneId":"114112"},{"alias":"SCP","entrezGeneId":"114131"},{"alias":"SPC","entrezGeneId":"114131"},{"alias":"UCNIII","entrezGeneId":"114131"},{"alias":"HMIT","entrezGeneId":"114134"},{"alias":"SIGLECP1","entrezGeneId":"114184"},{"alias":"SIGLECP10","entrezGeneId":"114185"},{"alias":"SIGLECP11","entrezGeneId":"114186"},{"alias":"SIGLECP12","entrezGeneId":"114187"},{"alias":"SIGLECP13","entrezGeneId":"114188"},{"alias":"SIGLECP15","entrezGeneId":"114189"},{"alias":"SIGLECP14","entrezGeneId":"114190"},{"alias":"SIGLECP1","entrezGeneId":"114192"},{"alias":"SIGLECP4","entrezGeneId":"114192"},{"alias":"SIGLECP5","entrezGeneId":"114194"},{"alias":"SIGLECP6","entrezGeneId":"114195"},{"alias":"SIGLECP8","entrezGeneId":"114196"},{"alias":"SIGLECP9","entrezGeneId":"114198"},{"alias":"PRO2852","entrezGeneId":"114224"},{"alias":"G24","entrezGeneId":"114294"},{"alias":"MRPL56","entrezGeneId":"114294"},{"alias":"AKAP2","entrezGeneId":"114299"},{"alias":"dJ304B14.2","entrezGeneId":"114327"},{"alias":"EJM1","entrezGeneId":"114327"},{"alias":"AGTAVPRL","entrezGeneId":"114548"},{"alias":"AII","entrezGeneId":"114548"},{"alias":"AVP","entrezGeneId":"114548"},{"alias":"C1orf7","entrezGeneId":"114548"},{"alias":"CIAS1","entrezGeneId":"114548"},{"alias":"CLR1.1","entrezGeneId":"114548"},{"alias":"DFNA34","entrezGeneId":"114548"},{"alias":"FCAS","entrezGeneId":"114548"},{"alias":"FCAS1","entrezGeneId":"114548"},{"alias":"FCU","entrezGeneId":"114548"},{"alias":"KEFH","entrezGeneId":"114548"},{"alias":"MWS","entrezGeneId":"114548"},{"alias":"NALP3","entrezGeneId":"114548"},{"alias":"PYPAF1","entrezGeneId":"114548"},{"alias":"HOAT4","entrezGeneId":"114571"},{"alias":"OAT4","entrezGeneId":"114571"},{"alias":"OAT7","entrezGeneId":"114571"},{"alias":"ust3","entrezGeneId":"114571"},{"alias":"UST3H","entrezGeneId":"114571"},{"alias":"RNU15B","entrezGeneId":"114599"},{"alias":"U15B","entrezGeneId":"114599"},{"alias":"BACTS1","entrezGeneId":"114609"},{"alias":"Mal","entrezGeneId":"114609"},{"alias":"MyD88-2","entrezGeneId":"114609"},{"alias":"wyatt","entrezGeneId":"114609"},{"alias":"SPAX1","entrezGeneId":"114610"},{"alias":"BIC","entrezGeneId":"114614"},{"alias":"MIRHG2","entrezGeneId":"114614"},{"alias":"NCRNA00172","entrezGeneId":"114614"},{"alias":"BTN5","entrezGeneId":"114625"},{"alias":"PRO2801","entrezGeneId":"114625"},{"alias":"RD","entrezGeneId":"114625"},{"alias":"SC","entrezGeneId":"114625"},{"alias":"RNU73B","entrezGeneId":"114655"},{"alias":"U73B","entrezGeneId":"114655"},{"alias":"bK714B7.1","entrezGeneId":"114657"},{"alias":"LRRC37","entrezGeneId":"114659"},{"alias":"HGB","entrezGeneId":"114757"},{"alias":"STAP","entrezGeneId":"114757"},{"alias":"CSPG4LY","entrezGeneId":"114758"},{"alias":"CSPG4LYP1","entrezGeneId":"114758"},{"alias":"CSPG4P1","entrezGeneId":"114758"},{"alias":"CSPG4PY1","entrezGeneId":"114758"},{"alias":"LINC00121","entrezGeneId":"114760"},{"alias":"NCRNA00121","entrezGeneId":"114760"},{"alias":"TTTY3A","entrezGeneId":"114760"},{"alias":"TTY3","entrezGeneId":"114760"},{"alias":"LINC00123","entrezGeneId":"114761"},{"alias":"NCRNA00123","entrezGeneId":"114761"},{"alias":"TTTY4A","entrezGeneId":"114761"},{"alias":"TTY4","entrezGeneId":"114761"},{"alias":"COP","entrezGeneId":"114769"},{"alias":"COP1","entrezGeneId":"114769"},{"alias":"PSEUDO-ICE","entrezGeneId":"114769"},{"alias":"HMFT0141","entrezGeneId":"114770"},{"alias":"PGLYRPL","entrezGeneId":"114770"},{"alias":"PGRP-L","entrezGeneId":"114770"},{"alias":"PGRPL","entrezGeneId":"114770"},{"alias":"tagL","entrezGeneId":"114770"},{"alias":"tagL-alpha","entrezGeneId":"114770"},{"alias":"tagl-beta","entrezGeneId":"114770"},{"alias":"TAGL-like","entrezGeneId":"114770"},{"alias":"PGLYRPIalpha","entrezGeneId":"114771"},{"alias":"PGRP-Ialpha","entrezGeneId":"114771"},{"alias":"PGRPIA","entrezGeneId":"114771"},{"alias":"PC1L2","entrezGeneId":"114780"},{"alias":"dJ322I12.1","entrezGeneId":"114781"},{"alias":"LMR3","entrezGeneId":"114783"},{"alias":"PPP1R101","entrezGeneId":"114783"},{"alias":"TYKLM3","entrezGeneId":"114783"},{"alias":"dJ1007G16.1","entrezGeneId":"114784"},{"alias":"dJ1007G16.2","entrezGeneId":"114784"},{"alias":"dJ947L8.1","entrezGeneId":"114784"},{"alias":"XRG4","entrezGeneId":"114786"},{"alias":"GRIN1","entrezGeneId":"114787"},{"alias":"MCSC","entrezGeneId":"114789"},{"alias":"PCSCL","entrezGeneId":"114789"},{"alias":"SCAMC-2","entrezGeneId":"114789"},{"alias":"LIP1","entrezGeneId":"114790"},{"alias":"LKB1IP","entrezGeneId":"114790"},{"alias":"STK11IP1","entrezGeneId":"114790"},{"alias":"GCP5","entrezGeneId":"114791"},{"alias":"BKLHD5","entrezGeneId":"114792"},{"alias":"dJ21F7.1","entrezGeneId":"114792"},{"alias":"KIAA1900","entrezGeneId":"114792"},{"alias":"UG0030H05","entrezGeneId":"114792"},{"alias":"FHOD2","entrezGeneId":"114793"},{"alias":"LRRC62","entrezGeneId":"114794"},{"alias":"PPP1R29","entrezGeneId":"114794"},{"alias":"LRRC12","entrezGeneId":"114798"},{"alias":"TTM","entrezGeneId":"114798"},{"alias":"A930014I12Rik","entrezGeneId":"114799"},{"alias":"CTF","entrezGeneId":"114799"},{"alias":"ECO1","entrezGeneId":"114799"},{"alias":"EFO1","entrezGeneId":"114799"},{"alias":"ESO1","entrezGeneId":"114799"},{"alias":"KIAA1913","entrezGeneId":"114801"},{"alias":"TTMA","entrezGeneId":"114801"},{"alias":"TTMC","entrezGeneId":"114801"},{"alias":"2A-DUB","entrezGeneId":"114803"},{"alias":"2ADUB","entrezGeneId":"114803"},{"alias":"GalNAc-T13","entrezGeneId":"114805"},{"alias":"GnRH-II-R","entrezGeneId":"114814"},{"alias":"hSorCS","entrezGeneId":"114815"},{"alias":"KBTBD9","entrezGeneId":"114818"},{"alias":"CROCCL2","entrezGeneId":"114819"},{"alias":"dJ798A10.2","entrezGeneId":"114819"},{"alias":"Buster4","entrezGeneId":"114821"},{"alias":"dJ1186N24.3","entrezGeneId":"114821"},{"alias":"SCAND3","entrezGeneId":"114821"},{"alias":"ZFP38-L","entrezGeneId":"114821"},{"alias":"ZNF305P2","entrezGeneId":"114821"},{"alias":"ZNF452","entrezGeneId":"114821"},{"alias":"ODF5","entrezGeneId":"114822"},{"alias":"RHOPHILIN","entrezGeneId":"114822"},{"alias":"RHPN","entrezGeneId":"114822"},{"alias":"pp13842","entrezGeneId":"114823"},{"alias":"MST101","entrezGeneId":"114825"},{"alias":"ZMYND21","entrezGeneId":"114826"},{"alias":"CD352","entrezGeneId":"114836"},{"alias":"KALI","entrezGeneId":"114836"},{"alias":"KALIb","entrezGeneId":"114836"},{"alias":"Ly108","entrezGeneId":"114836"},{"alias":"NTB-A","entrezGeneId":"114836"},{"alias":"NTBA","entrezGeneId":"114836"},{"alias":"SF2000","entrezGeneId":"114836"},{"alias":"ORP-1","entrezGeneId":"114876"},{"alias":"ORP1","entrezGeneId":"114876"},{"alias":"OSBPL1B","entrezGeneId":"114876"},{"alias":"OBPH1","entrezGeneId":"114879"},{"alias":"ORP5","entrezGeneId":"114879"},{"alias":"ORP6","entrezGeneId":"114880"},{"alias":"ORP7","entrezGeneId":"114881"},{"alias":"MST120","entrezGeneId":"114882"},{"alias":"MSTP120","entrezGeneId":"114882"},{"alias":"ORP8","entrezGeneId":"114882"},{"alias":"OSBP10","entrezGeneId":"114882"},{"alias":"ORP-9","entrezGeneId":"114883"},{"alias":"ORP9","entrezGeneId":"114883"},{"alias":"ORP10","entrezGeneId":"114884"},{"alias":"OSBP9","entrezGeneId":"114884"},{"alias":"ORP-11","entrezGeneId":"114885"},{"alias":"ORP11","entrezGeneId":"114885"},{"alias":"OSBP12","entrezGeneId":"114885"},{"alias":"TCCCIA00292","entrezGeneId":"114885"},{"alias":"CTRP1","entrezGeneId":"114897"},{"alias":"GIP","entrezGeneId":"114897"},{"alias":"ZSIG37","entrezGeneId":"114897"},{"alias":"CTRP2","entrezGeneId":"114898"},{"alias":"zacrp2","entrezGeneId":"114898"},{"alias":"C1ATNF3","entrezGeneId":"114899"},{"alias":"CORCS","entrezGeneId":"114899"},{"alias":"CORS","entrezGeneId":"114899"},{"alias":"CORS-26","entrezGeneId":"114899"},{"alias":"CORS26","entrezGeneId":"114899"},{"alias":"CTRP3","entrezGeneId":"114899"},{"alias":"CTRP4","entrezGeneId":"114900"},{"alias":"ZACRP4","entrezGeneId":"114900"},{"alias":"CTRP5","entrezGeneId":"114902"},{"alias":"CTFP6","entrezGeneId":"114904"},{"alias":"CTRP6","entrezGeneId":"114904"},{"alias":"ZACRP6","entrezGeneId":"114904"},{"alias":"CTRP7","entrezGeneId":"114905"},{"alias":"ZACRP7","entrezGeneId":"114905"},{"alias":"Fbx32","entrezGeneId":"114907"},{"alias":"MAFbx","entrezGeneId":"114907"},{"alias":"KCT3","entrezGeneId":"114908"},{"alias":"PORIMIN","entrezGeneId":"114908"},{"alias":"PORMIN","entrezGeneId":"114908"},{"alias":"C5orf26","entrezGeneId":"114915"},{"alias":"NCRNA00219","entrezGeneId":"114915"},{"alias":"TIGA1","entrezGeneId":"114915"},{"alias":"C8orf40","entrezGeneId":"114926"},{"alias":"GASP2","entrezGeneId":"114928"},{"alias":"PP784","entrezGeneId":"114932"},{"alias":"DUSP23","entrezGeneId":"114971"},{"alias":"MOSP","entrezGeneId":"114971"},{"alias":"PLIP","entrezGeneId":"114971"},{"alias":"PNAS-129","entrezGeneId":"114971"},{"alias":"SLITL2","entrezGeneId":"114990"},{"alias":"FP13169","entrezGeneId":"114991"},{"alias":"NEDD10","entrezGeneId":"114991"},{"alias":"C6orf150","entrezGeneId":"115004"},{"alias":"h-cGAS","entrezGeneId":"115004"},{"alias":"MB21D1","entrezGeneId":"115004"},{"alias":"cN-IIIB","entrezGeneId":"115024"},{"alias":"NT5C3L","entrezGeneId":"115024"},{"alias":"CCDC5","entrezGeneId":"115106"},{"alias":"HEI-C","entrezGeneId":"115106"},{"alias":"HEIC","entrezGeneId":"115106"},{"alias":"HsT1461","entrezGeneId":"115106"},{"alias":"SUT2","entrezGeneId":"115111"},{"alias":"MARCH-III","entrezGeneId":"115123"},{"alias":"RNF173","entrezGeneId":"115123"},{"alias":"APG4A","entrezGeneId":"115201"},{"alias":"AUTL2","entrezGeneId":"115201"},{"alias":"C13orf2","entrezGeneId":"115207"},{"alias":"PFET1","entrezGeneId":"115207"},{"alias":"PFETIN","entrezGeneId":"115207"},{"alias":"2010001O09Rik","entrezGeneId":"115209"},{"alias":"DAB1","entrezGeneId":"115209"},{"alias":"MPRP-1","entrezGeneId":"115209"},{"alias":"MPRP1","entrezGeneId":"115209"},{"alias":"peptidase","entrezGeneId":"115209"},{"alias":"YKR087C","entrezGeneId":"115209"},{"alias":"ZMPOMA1","entrezGeneId":"115209"},{"alias":"REDD2","entrezGeneId":"115265"},{"alias":"Rtp801L","entrezGeneId":"115265"},{"alias":"COXPD28","entrezGeneId":"115286"},{"alias":"SAMC","entrezGeneId":"115286"},{"alias":"FBG4","entrezGeneId":"115290"},{"alias":"Fbx17","entrezGeneId":"115290"},{"alias":"FBX26","entrezGeneId":"115290"},{"alias":"FBXO26","entrezGeneId":"115290"},{"alias":"PGR8","entrezGeneId":"115330"},{"alias":"CD307a","entrezGeneId":"115350"},{"alias":"FCRH1","entrezGeneId":"115350"},{"alias":"IFGP1","entrezGeneId":"115350"},{"alias":"IRTA5","entrezGeneId":"115350"},{"alias":"CD307c","entrezGeneId":"115352"},{"alias":"FCRH3","entrezGeneId":"115352"},{"alias":"IFGP3","entrezGeneId":"115352"},{"alias":"IRTA3","entrezGeneId":"115352"},{"alias":"SPAP2","entrezGeneId":"115352"},{"alias":"dJ167A19.4","entrezGeneId":"115353"},{"alias":"Mpa2","entrezGeneId":"115361"},{"alias":"GBP-5","entrezGeneId":"115362"},{"alias":"C7orf30","entrezGeneId":"115416"},{"alias":"mtRsfA","entrezGeneId":"115416"},{"alias":"NIRF","entrezGeneId":"115426"},{"alias":"RNF107","entrezGeneId":"115426"},{"alias":"TDRD23","entrezGeneId":"115426"},{"alias":"URF2","entrezGeneId":"115426"},{"alias":"TIPUH1","entrezGeneId":"115509"},{"alias":"GEFT","entrezGeneId":"115557"},{"alias":"p63RhoGEF","entrezGeneId":"115557"},{"alias":"ZNF","entrezGeneId":"115560"},{"alias":"ZNF52","entrezGeneId":"115560"},{"alias":"KST1","entrezGeneId":"115584"},{"alias":"RKST1","entrezGeneId":"115584"},{"alias":"SGLT6","entrezGeneId":"115584"},{"alias":"SMIT2","entrezGeneId":"115584"},{"alias":"BAFF-R","entrezGeneId":"115650"},{"alias":"BAFFR","entrezGeneId":"115650"},{"alias":"BROMIX","entrezGeneId":"115650"},{"alias":"CD268","entrezGeneId":"115650"},{"alias":"CVID4","entrezGeneId":"115650"},{"alias":"prolixin","entrezGeneId":"115650"},{"alias":"CD158Z","entrezGeneId":"115653"},{"alias":"KIR3DL7","entrezGeneId":"115653"},{"alias":"KIR44","entrezGeneId":"115653"},{"alias":"KIRC1","entrezGeneId":"115653"},{"alias":"DaIP2","entrezGeneId":"115677"},{"alias":"HAK","entrezGeneId":"115701"},{"alias":"NOMA-GAP","entrezGeneId":"115703"},{"alias":"SNX26","entrezGeneId":"115703"},{"alias":"TCGAP","entrezGeneId":"115703"},{"alias":"C14orf172","entrezGeneId":"115708"},{"alias":"GCD14","entrezGeneId":"115708"},{"alias":"Gcd14p","entrezGeneId":"115708"},{"alias":"hTRM61","entrezGeneId":"115708"},{"alias":"TRM61","entrezGeneId":"115708"},{"alias":"DIS3L1","entrezGeneId":"115752"},{"alias":"ARLTS1","entrezGeneId":"115761"},{"alias":"C3orf24","entrezGeneId":"115795"},{"alias":"4933433C09Rik","entrezGeneId":"115811"},{"alias":"CFAP84","entrezGeneId":"115811"},{"alias":"DRC10","entrezGeneId":"115811"},{"alias":"SDR19C1","entrezGeneId":"115817"},{"alias":"PROF","entrezGeneId":"115825"},{"alias":"WDF2","entrezGeneId":"115825"},{"alias":"ZFYVE22","entrezGeneId":"115825"},{"alias":"RDCVF","entrezGeneId":"115861"},{"alias":"TXNL6","entrezGeneId":"115861"},{"alias":"C16orf42","entrezGeneId":"115939"},{"alias":"CILD30","entrezGeneId":"115948"},{"alias":"E430039K05Rik","entrezGeneId":"115950"},{"alias":"ZIP67","entrezGeneId":"115950"},{"alias":"BLAP18","entrezGeneId":"116028"},{"alias":"C16orf75","entrezGeneId":"116028"},{"alias":"SARI","entrezGeneId":"116071"},{"alias":"OAT4L","entrezGeneId":"116085"},{"alias":"RST","entrezGeneId":"116085"},{"alias":"URAT1","entrezGeneId":"116085"},{"alias":"C20orf167","entrezGeneId":"116092"},{"alias":"dJ447F3.4","entrezGeneId":"116092"},{"alias":"Tdif1","entrezGeneId":"116092"},{"alias":"hFKHLA","entrezGeneId":"116113"},{"alias":"LRP15","entrezGeneId":"116135"},{"alias":"dJ20C7.3","entrezGeneId":"116138"},{"alias":"PEAS","entrezGeneId":"116138"},{"alias":"dJ800C24.1","entrezGeneId":"116149"},{"alias":"RPL12_23_1714","entrezGeneId":"116149"},{"alias":"C6orf68","entrezGeneId":"116150"},{"alias":"CDG1AA","entrezGeneId":"116150"},{"alias":"MGC:7199","entrezGeneId":"116150"},{"alias":"MRD55","entrezGeneId":"116150"},{"alias":"NgBR","entrezGeneId":"116150"},{"alias":"TANGO14","entrezGeneId":"116150"},{"alias":"5A3","entrezGeneId":"116151"},{"alias":"C20orf108","entrezGeneId":"116151"},{"alias":"dJ1167H4.1","entrezGeneId":"116151"},{"alias":"C20orf101","entrezGeneId":"116154"},{"alias":"H17739","entrezGeneId":"116154"},{"alias":"PPP1R123","entrezGeneId":"116154"},{"alias":"SCAPIN1","entrezGeneId":"116154"},{"alias":"SCAPININ","entrezGeneId":"116154"},{"alias":"C21orf95","entrezGeneId":"116159"},{"alias":"CKLFSF5","entrezGeneId":"116173"},{"alias":"TGMZ","entrezGeneId":"116179"},{"alias":"OCTM4","entrezGeneId":"116211"},{"alias":"C9orf42","entrezGeneId":"116224"},{"alias":"MIZIP","entrezGeneId":"116225"},{"alias":"FAM36A","entrezGeneId":"116228"},{"alias":"C6orf72","entrezGeneId":"116254"},{"alias":"DGAT2L","entrezGeneId":"116255"},{"alias":"DGAT2L1","entrezGeneId":"116255"},{"alias":"MGAT1","entrezGeneId":"116255"},{"alias":"BUCS1","entrezGeneId":"116285"},{"alias":"MACS1","entrezGeneId":"116285"},{"alias":"VEST-1","entrezGeneId":"116328"},{"alias":"VEST1","entrezGeneId":"116328"},{"alias":"PX3","entrezGeneId":"116337"},{"alias":"C5orf55","entrezGeneId":"116349"},{"alias":"CRABP4","entrezGeneId":"116362"},{"alias":"CRBP4","entrezGeneId":"116362"},{"alias":"CRBPIV","entrezGeneId":"116362"},{"alias":"SPGF3","entrezGeneId":"116369"},{"alias":"TAT1","entrezGeneId":"116369"},{"alias":"LYPDC1","entrezGeneId":"116372"},{"alias":"PHTS","entrezGeneId":"116372"},{"alias":"CRF2-10","entrezGeneId":"116379"},{"alias":"CRF2-S1","entrezGeneId":"116379"},{"alias":"CRF2X","entrezGeneId":"116379"},{"alias":"IL-22BP","entrezGeneId":"116379"},{"alias":"IL-22R-alpha-2","entrezGeneId":"116379"},{"alias":"IL-22RA2","entrezGeneId":"116379"},{"alias":"ZCYTOR16","entrezGeneId":"116379"},{"alias":"L6D","entrezGeneId":"116441"},{"alias":"BGMR","entrezGeneId":"116442"},{"alias":"MRX72","entrezGeneId":"116442"},{"alias":"WSMN","entrezGeneId":"116442"},{"alias":"WSN","entrezGeneId":"116442"},{"alias":"GluN3A","entrezGeneId":"116443"},{"alias":"NMDAR-L","entrezGeneId":"116443"},{"alias":"NR3A","entrezGeneId":"116443"},{"alias":"GluN3B","entrezGeneId":"116444"},{"alias":"NR3B","entrezGeneId":"116444"},{"alias":"BHLHB6","entrezGeneId":"116448"},{"alias":"BHLHE21","entrezGeneId":"116448"},{"alias":"MIST","entrezGeneId":"116449"},{"alias":"C1orf19","entrezGeneId":"116461"},{"alias":"PCH2F","entrezGeneId":"116461"},{"alias":"sen15","entrezGeneId":"116461"},{"alias":"C1orf24","entrezGeneId":"116496"},{"alias":"GIG39","entrezGeneId":"116496"},{"alias":"NIBAN","entrezGeneId":"116496"},{"alias":"dJ994E9.2","entrezGeneId":"116511"},{"alias":"MAS-L","entrezGeneId":"116511"},{"alias":"MRG","entrezGeneId":"116511"},{"alias":"MRGD","entrezGeneId":"116512"},{"alias":"TGR7","entrezGeneId":"116512"},{"alias":"APOAV","entrezGeneId":"116519"},{"alias":"RAP3","entrezGeneId":"116519"},{"alias":"GPR167","entrezGeneId":"116534"},{"alias":"MGRF","entrezGeneId":"116534"},{"alias":"MRGE","entrezGeneId":"116534"},{"alias":"GPR140","entrezGeneId":"116535"},{"alias":"GPR168","entrezGeneId":"116535"},{"alias":"MRGF","entrezGeneId":"116535"},{"alias":"RTA","entrezGeneId":"116535"},{"alias":"L53MT","entrezGeneId":"116540"},{"alias":"L54mt","entrezGeneId":"116541"},{"alias":"MRP-L54","entrezGeneId":"116541"},{"alias":"DYSFIP1","entrezGeneId":"116729"},{"alias":"PSANK1","entrezGeneId":"116730"},{"alias":"RPL37_9_1150","entrezGeneId":"116730"},{"alias":"RPL38_1_417","entrezGeneId":"116809"},{"alias":"CG030","entrezGeneId":"116828"},{"alias":"L39-2","entrezGeneId":"116832"},{"alias":"RPL39L1","entrezGeneId":"116832"},{"alias":"AIB","entrezGeneId":"116833"},{"alias":"AIB1","entrezGeneId":"116833"},{"alias":"C20orf60","entrezGeneId":"116835"},{"alias":"LIP8","entrezGeneId":"116840"},{"alias":"PP1221","entrezGeneId":"116840"},{"alias":"C1orf142","entrezGeneId":"116841"},{"alias":"ESFI5812","entrezGeneId":"116841"},{"alias":"HEL-S-290","entrezGeneId":"116841"},{"alias":"HEL170","entrezGeneId":"116841"},{"alias":"SNAP-47","entrezGeneId":"116841"},{"alias":"SVAP1","entrezGeneId":"116841"},{"alias":"LEAP-2","entrezGeneId":"116842"},{"alias":"C6orf192","entrezGeneId":"116843"},{"alias":"dJ55C23.6","entrezGeneId":"116843"},{"alias":"HMFT1766","entrezGeneId":"116844"},{"alias":"LRG","entrezGeneId":"116844"},{"alias":"NOPAR","entrezGeneId":"116931"},{"alias":"TNRC11L","entrezGeneId":"116931"},{"alias":"TRALP","entrezGeneId":"116931"},{"alias":"TRALPUSH","entrezGeneId":"116931"},{"alias":"CLRN1OS","entrezGeneId":"116933"},{"alias":"UCRP","entrezGeneId":"116933"},{"alias":"RPL3-Hom","entrezGeneId":"116935"},{"alias":"RPL3_1_679","entrezGeneId":"116935"},{"alias":"RNU86","entrezGeneId":"116936"},{"alias":"U82","entrezGeneId":"116936"},{"alias":"U86","entrezGeneId":"116936"},{"alias":"RNU83A","entrezGeneId":"116937"},{"alias":"U83A","entrezGeneId":"116937"},{"alias":"RNU83B","entrezGeneId":"116938"},{"alias":"U83B","entrezGeneId":"116938"},{"alias":"ARTC5","entrezGeneId":"116969"},{"alias":"CENTB5","entrezGeneId":"116983"},{"alias":"CENTD1","entrezGeneId":"116984"},{"alias":"PARX","entrezGeneId":"116984"},{"alias":"CENTD2","entrezGeneId":"116985"},{"alias":"CENTG1","entrezGeneId":"116986"},{"alias":"GGAP2","entrezGeneId":"116986"},{"alias":"PIKE","entrezGeneId":"116986"},{"alias":"AGAP-1","entrezGeneId":"116987"},{"alias":"CENTG2","entrezGeneId":"116987"},{"alias":"cnt-g2","entrezGeneId":"116987"},{"alias":"GGAP1","entrezGeneId":"116987"},{"alias":"AGAP-3","entrezGeneId":"116988"},{"alias":"CENTG3","entrezGeneId":"116988"},{"alias":"cnt-g3","entrezGeneId":"116988"},{"alias":"CRAG","entrezGeneId":"116988"},{"alias":"MRIP-1","entrezGeneId":"116988"},{"alias":"CMCT","entrezGeneId":"117084"},{"alias":"ADA1","entrezGeneId":"117143"},{"alias":"hADA1","entrezGeneId":"117143"},{"alias":"HFI1","entrezGeneId":"117143"},{"alias":"STAF42","entrezGeneId":"117143"},{"alias":"TADA1L","entrezGeneId":"117143"},{"alias":"CATSPER","entrezGeneId":"117144"},{"alias":"SPGF7","entrezGeneId":"117144"},{"alias":"CTMP","entrezGeneId":"117145"},{"alias":"CTR1P","entrezGeneId":"117151"},{"alias":"CTR1psi","entrezGeneId":"117151"},{"alias":"SLC31A1P","entrezGeneId":"117151"},{"alias":"LU103","entrezGeneId":"117156"},{"alias":"pnSP-1","entrezGeneId":"117156"},{"alias":"PNSP1","entrezGeneId":"117156"},{"alias":"UGRP1","entrezGeneId":"117156"},{"alias":"EAT2","entrezGeneId":"117157"},{"alias":"AIDD","entrezGeneId":"117159"},{"alias":"DCD-1","entrezGeneId":"117159"},{"alias":"DSEP","entrezGeneId":"117159"},{"alias":"HCAP","entrezGeneId":"117159"},{"alias":"PIF","entrezGeneId":"117159"},{"alias":"C16orf12","entrezGeneId":"117166"},{"alias":"RJD2","entrezGeneId":"117166"},{"alias":"WFDC20A","entrezGeneId":"117166"},{"alias":"WFIKKN","entrezGeneId":"117166"},{"alias":"RABIN3","entrezGeneId":"117177"},{"alias":"RABIN8","entrezGeneId":"117177"},{"alias":"ADIP","entrezGeneId":"117178"},{"alias":"hMsd1","entrezGeneId":"117178"},{"alias":"ATPD5","entrezGeneId":"117188"},{"alias":"GD3","entrezGeneId":"117189"},{"alias":"THM","entrezGeneId":"117193"},{"alias":"MGRG3","entrezGeneId":"117194"},{"alias":"MRGX2","entrezGeneId":"117194"},{"alias":"GPCR","entrezGeneId":"117195"},{"alias":"MRGX3","entrezGeneId":"117195"},{"alias":"SNSR1","entrezGeneId":"117195"},{"alias":"SNSR2","entrezGeneId":"117195"},{"alias":"GPCR","entrezGeneId":"117196"},{"alias":"MRGX4","entrezGeneId":"117196"},{"alias":"SNSR6","entrezGeneId":"117196"},{"alias":"HRLP5","entrezGeneId":"117245"},{"alias":"HRSL5","entrezGeneId":"117245"},{"alias":"iNAT","entrezGeneId":"117245"},{"alias":"RLP1","entrezGeneId":"117245"},{"alias":"EPCS3","entrezGeneId":"117246"},{"alias":"SPB1","entrezGeneId":"117246"},{"alias":"MCT10","entrezGeneId":"117247"},{"alias":"PRO0813","entrezGeneId":"117247"},{"alias":"TAT1","entrezGeneId":"117247"},{"alias":"GALNACT15","entrezGeneId":"117248"},{"alias":"GALNT13","entrezGeneId":"117248"},{"alias":"GALNT7","entrezGeneId":"117248"},{"alias":"GALNTL2","entrezGeneId":"117248"},{"alias":"PIH5","entrezGeneId":"117248"},{"alias":"pp-GalNAc-T15","entrezGeneId":"117248"},{"alias":"IHPK3","entrezGeneId":"117283"},{"alias":"INSP6K3","entrezGeneId":"117283"},{"alias":"C20orf63","entrezGeneId":"117285"},{"alias":"DEFB-18","entrezGeneId":"117285"},{"alias":"ESC42","entrezGeneId":"117285"},{"alias":"ESP13.6","entrezGeneId":"117285"},{"alias":"KIP3","entrezGeneId":"117286"},{"alias":"ARHGAP47","entrezGeneId":"117289"},{"alias":"FKSG15","entrezGeneId":"117289"},{"alias":"IDDM21","entrezGeneId":"117289"},{"alias":"TAGAP1","entrezGeneId":"117289"},{"alias":"DFNA36","entrezGeneId":"117531"},{"alias":"DFNB11","entrezGeneId":"117531"},{"alias":"DFNB7","entrezGeneId":"117531"},{"alias":"C20orf145","entrezGeneId":"117532"},{"alias":"H3","entrezGeneId":"117579"},{"alias":"insl7","entrezGeneId":"117579"},{"alias":"RXN3","entrezGeneId":"117579"},{"alias":"ZINS4","entrezGeneId":"117579"},{"alias":"AMS","entrezGeneId":"117581"},{"alias":"BBRSAY","entrezGeneId":"117581"},{"alias":"bHLHa39","entrezGeneId":"117581"},{"alias":"DERMO1","entrezGeneId":"117581"},{"alias":"FFDD3","entrezGeneId":"117581"},{"alias":"SETLSS","entrezGeneId":"117581"},{"alias":"ALS2CR19","entrezGeneId":"117583"},{"alias":"PAR3B","entrezGeneId":"117583"},{"alias":"PAR3beta","entrezGeneId":"117583"},{"alias":"PAR3L","entrezGeneId":"117583"},{"alias":"CARP-2","entrezGeneId":"117584"},{"alias":"CARP2","entrezGeneId":"117584"},{"alias":"FRING","entrezGeneId":"117584"},{"alias":"RIFIFYLIN","entrezGeneId":"117584"},{"alias":"RNF189","entrezGeneId":"117584"},{"alias":"RNF34L","entrezGeneId":"117584"},{"alias":"KID2","entrezGeneId":"117608"},{"alias":"RNF89","entrezGeneId":"117854"},{"alias":"C21orf100","entrezGeneId":"118421"},{"alias":"Linc-USP16","entrezGeneId":"118421"},{"alias":"NCRNA00161","entrezGeneId":"118421"},{"alias":"NCUBE-2","entrezGeneId":"118424"},{"alias":"NCUBE2","entrezGeneId":"118424"},{"alias":"PRO2121","entrezGeneId":"118424"},{"alias":"GDEP","entrezGeneId":"118425"},{"alias":"PCA4","entrezGeneId":"118425"},{"alias":"PCAN1","entrezGeneId":"118425"},{"alias":"LOH12CR1","entrezGeneId":"118426"},{"alias":"LOH1CR12","entrezGeneId":"118426"},{"alias":"NOE3","entrezGeneId":"118427"},{"alias":"NOELIN3","entrezGeneId":"118427"},{"alias":"OPTIMEDIN","entrezGeneId":"118427"},{"alias":"CMG-2","entrezGeneId":"118429"},{"alias":"CMG2","entrezGeneId":"118429"},{"alias":"HFS","entrezGeneId":"118429"},{"alias":"ISH","entrezGeneId":"118429"},{"alias":"JHF","entrezGeneId":"118429"},{"alias":"SBEM","entrezGeneId":"118430"},{"alias":"RPL29_10_1510","entrezGeneId":"118432"},{"alias":"bA395L14.9","entrezGeneId":"118433"},{"alias":"RPL23AL1","entrezGeneId":"118433"},{"alias":"RPL23A_6_267","entrezGeneId":"118433"},{"alias":"GPCR8","entrezGeneId":"118442"},{"alias":"KPG_005","entrezGeneId":"118442"},{"alias":"EAP4","entrezGeneId":"118460"},{"alias":"hMtr3p","entrezGeneId":"118460"},{"alias":"MTR3","entrezGeneId":"118460"},{"alias":"Mtr3p","entrezGeneId":"118460"},{"alias":"p11","entrezGeneId":"118460"},{"alias":"CEFIP","entrezGeneId":"118461"},{"alias":"PRO1195","entrezGeneId":"118471"},{"alias":"UPA","entrezGeneId":"118471"},{"alias":"C10orf34","entrezGeneId":"118487"},{"alias":"C2360","entrezGeneId":"118487"},{"alias":"MRP-S37","entrezGeneId":"118487"},{"alias":"ZMYND17","entrezGeneId":"118490"},{"alias":"TTC18","entrezGeneId":"118491"},{"alias":"bA422P15.2","entrezGeneId":"118611"},{"alias":"FATS","entrezGeneId":"118611"},{"alias":"C10orf87","entrezGeneId":"118663"},{"alias":"C10orf89","entrezGeneId":"118672"},{"alias":"BCAP","entrezGeneId":"118788"},{"alias":"bA548K23.4","entrezGeneId":"118812"},{"alias":"C10orf83","entrezGeneId":"118812"},{"alias":"rtp","entrezGeneId":"118812"},{"alias":"UTA","entrezGeneId":"118812"},{"alias":"PROTRUDIN","entrezGeneId":"118813"},{"alias":"SPG33","entrezGeneId":"118813"},{"alias":"HTX7","entrezGeneId":"118856"},{"alias":"MMP-21","entrezGeneId":"118856"},{"alias":"C10orf4","entrezGeneId":"118924"},{"alias":"F26C11.1-like","entrezGeneId":"118924"},{"alias":"FRA10A","entrezGeneId":"118924"},{"alias":"CTSL1P1","entrezGeneId":"118945"},{"alias":"CTSLL","entrezGeneId":"118945"},{"alias":"CTSLL1","entrezGeneId":"118945"},{"alias":"SLC56A2","entrezGeneId":"118980"},{"alias":"PDZK8","entrezGeneId":"118987"},{"alias":"AGAP-4","entrezGeneId":"119016"},{"alias":"AGAP-8","entrezGeneId":"119016"},{"alias":"AGAP8","entrezGeneId":"119016"},{"alias":"CTGLF1","entrezGeneId":"119016"},{"alias":"CTGLF5","entrezGeneId":"119016"},{"alias":"MRIP2","entrezGeneId":"119016"},{"alias":"C10orf32","entrezGeneId":"119032"},{"alias":"LYZD2","entrezGeneId":"119180"},{"alias":"bA478K7.1","entrezGeneId":"119358"},{"alias":"SNRPD2P","entrezGeneId":"119358"},{"alias":"bA56M3.1","entrezGeneId":"119369"},{"alias":"C10orf98","entrezGeneId":"119369"},{"alias":"bA127L20.1","entrezGeneId":"119391"},{"alias":"GSTO 2-2","entrezGeneId":"119391"},{"alias":"bA373N18.1","entrezGeneId":"119392"},{"alias":"C10orf78","entrezGeneId":"119392"},{"alias":"MEI5","entrezGeneId":"119392"},{"alias":"MEIR5","entrezGeneId":"119392"},{"alias":"bA225H22.7","entrezGeneId":"119395"},{"alias":"FAM26A","entrezGeneId":"119395"},{"alias":"bA500G10.2","entrezGeneId":"119437"},{"alias":"CTAGE7","entrezGeneId":"119437"},{"alias":"CTAGEP","entrezGeneId":"119437"},{"alias":"rcCTAGE5","entrezGeneId":"119437"},{"alias":"TMEM12","entrezGeneId":"119467"},{"alias":"USH3AL1","entrezGeneId":"119467"},{"alias":"APC16","entrezGeneId":"119504"},{"alias":"bA570G20.3","entrezGeneId":"119504"},{"alias":"C10orf104","entrezGeneId":"119504"},{"alias":"CENP-27","entrezGeneId":"119504"},{"alias":"MSAG","entrezGeneId":"119504"},{"alias":"BCRM1","entrezGeneId":"119559"},{"alias":"COXPD18","entrezGeneId":"119559"},{"alias":"SLC56A4","entrezGeneId":"119559"},{"alias":"CPX2","entrezGeneId":"119587"},{"alias":"UNQ676","entrezGeneId":"119587"},{"alias":"OR11-32","entrezGeneId":"119679"},{"alias":"OR11-31","entrezGeneId":"119682"},{"alias":"OR11-27","entrezGeneId":"119687"},{"alias":"OR11-24","entrezGeneId":"119692"},{"alias":"OR11-23","entrezGeneId":"119694"},{"alias":"OR11-22","entrezGeneId":"119695"},{"alias":"HEPIS","entrezGeneId":"119710"},{"alias":"NWC","entrezGeneId":"119710"},{"alias":"KRT18L4","entrezGeneId":"119722"},{"alias":"OR4C8P","entrezGeneId":"119750"},{"alias":"OR11-105","entrezGeneId":"119764"},{"alias":"OR11-106","entrezGeneId":"119765"},{"alias":"OST208","entrezGeneId":"119765"},{"alias":"OR11-11","entrezGeneId":"119772"},{"alias":"OR52M1P","entrezGeneId":"119772"},{"alias":"OR52M3P","entrezGeneId":"119772"},{"alias":"OR11-7","entrezGeneId":"119774"},{"alias":"JCG3","entrezGeneId":"120065"},{"alias":"JCG4","entrezGeneId":"120065"},{"alias":"JCG1","entrezGeneId":"120066"},{"alias":"GYLTL1B","entrezGeneId":"120071"},{"alias":"PP5656","entrezGeneId":"120071"},{"alias":"PAT4","entrezGeneId":"120103"},{"alias":"CDHF15","entrezGeneId":"120114"},{"alias":"CDHR10","entrezGeneId":"120114"},{"alias":"hFat3","entrezGeneId":"120114"},{"alias":"C11orf28","entrezGeneId":"120146"},{"alias":"TRIM64A","entrezGeneId":"120146"},{"alias":"RPS6_7_1168","entrezGeneId":"120318"},{"alias":"C11orf93","entrezGeneId":"120376"},{"alias":"CASC13","entrezGeneId":"120376"},{"alias":"LOH11CR1G","entrezGeneId":"120376"},{"alias":"FAM55A","entrezGeneId":"120400"},{"alias":"FAM55B","entrezGeneId":"120406"},{"alias":"AMICA","entrezGeneId":"120425"},{"alias":"AMICA1","entrezGeneId":"120425"},{"alias":"CREA7-1","entrezGeneId":"120425"},{"alias":"CREA7-4","entrezGeneId":"120425"},{"alias":"Gm638","entrezGeneId":"120425"},{"alias":"DPH4","entrezGeneId":"120526"},{"alias":"JJJ3","entrezGeneId":"120526"},{"alias":"ZCSL3","entrezGeneId":"120526"},{"alias":"HC10","entrezGeneId":"120528"},{"alias":"HCP25","entrezGeneId":"120528"},{"alias":"ARF7EP","entrezGeneId":"120534"},{"alias":"C11orf46","entrezGeneId":"120534"},{"alias":"dJ299F11.1","entrezGeneId":"120534"},{"alias":"OR11-170","entrezGeneId":"120586"},{"alias":"OR11-89","entrezGeneId":"120775"},{"alias":"hg27","entrezGeneId":"120776"},{"alias":"OR11-610","entrezGeneId":"120776"},{"alias":"OR2D1","entrezGeneId":"120776"},{"alias":"OR11-71","entrezGeneId":"120787"},{"alias":"OR52W1P","entrezGeneId":"120787"},{"alias":"OR11-49","entrezGeneId":"120793"},{"alias":"OR11-75","entrezGeneId":"120796"},{"alias":"DEP.4","entrezGeneId":"120863"},{"alias":"RPL7_24_1261","entrezGeneId":"120872"},{"alias":"AURA17","entrezGeneId":"120892"},{"alias":"DARDARIN","entrezGeneId":"120892"},{"alias":"PARK8","entrezGeneId":"120892"},{"alias":"RIPK7","entrezGeneId":"120892"},{"alias":"ROCO2","entrezGeneId":"120892"},{"alias":"C12orf59","entrezGeneId":"120939"},{"alias":"HCP30","entrezGeneId":"121026"},{"alias":"OR2AP1P","entrezGeneId":"121129"},{"alias":"OR10P1P","entrezGeneId":"121130"},{"alias":"OR10P2P","entrezGeneId":"121130"},{"alias":"OR10P3P","entrezGeneId":"121130"},{"alias":"OR12-7","entrezGeneId":"121130"},{"alias":"OST701","entrezGeneId":"121130"},{"alias":"PSMB3P","entrezGeneId":"121131"},{"alias":"ARCI13","entrezGeneId":"121214"},{"alias":"RDHS","entrezGeneId":"121214"},{"alias":"SDR-O","entrezGeneId":"121214"},{"alias":"SDRO","entrezGeneId":"121214"},{"alias":"LIG3","entrezGeneId":"121227"},{"alias":"MOLT","entrezGeneId":"121256"},{"alias":"PPP1R153","entrezGeneId":"121256"},{"alias":"FP12591","entrezGeneId":"121260"},{"alias":"PHT1","entrezGeneId":"121260"},{"alias":"PTR4","entrezGeneId":"121260"},{"alias":"RHEBL1c","entrezGeneId":"121268"},{"alias":"HSD-29","entrezGeneId":"121273"},{"alias":"HSD-30","entrezGeneId":"121273"},{"alias":"OR10AD1P","entrezGeneId":"121275"},{"alias":"OR12-1","entrezGeneId":"121275"},{"alias":"ADHD7","entrezGeneId":"121278"},{"alias":"NTPH","entrezGeneId":"121278"},{"alias":"GGTA1P","entrezGeneId":"121328"},{"alias":"GLYT2L","entrezGeneId":"121328"},{"alias":"GLYT3","entrezGeneId":"121328"},{"alias":"HGT2","entrezGeneId":"121328"},{"alias":"OI11","entrezGeneId":"121340"},{"alias":"OI12","entrezGeneId":"121340"},{"alias":"osterix","entrezGeneId":"121340"},{"alias":"OSX","entrezGeneId":"121340"},{"alias":"FAM112B","entrezGeneId":"121355"},{"alias":"OR12-4","entrezGeneId":"121360"},{"alias":"OR12-6","entrezGeneId":"121364"},{"alias":"ADWH","entrezGeneId":"121391"},{"alias":"HTSS2","entrezGeneId":"121391"},{"alias":"HYPT3","entrezGeneId":"121391"},{"alias":"K6IRS4","entrezGeneId":"121391"},{"alias":"KRT5C","entrezGeneId":"121391"},{"alias":"KRT6IRS4","entrezGeneId":"121391"},{"alias":"GCP-WD","entrezGeneId":"121441"},{"alias":"TUBGCP7","entrezGeneId":"121441"},{"alias":"IKIP","entrezGeneId":"121457"},{"alias":"LDH6C","entrezGeneId":"121498"},{"alias":"H4/p","entrezGeneId":"121504"},{"alias":"C12orf46","entrezGeneId":"121506"},{"alias":"PDIA8","entrezGeneId":"121506"},{"alias":"CMT4H","entrezGeneId":"121512"},{"alias":"FRABP","entrezGeneId":"121512"},{"alias":"ZFYVE6","entrezGeneId":"121512"},{"alias":"GOT2L4","entrezGeneId":"121520"},{"alias":"bHLHa44","entrezGeneId":"121549"},{"alias":"HASH4","entrezGeneId":"121549"},{"alias":"ABTB2B","entrezGeneId":"121551"},{"alias":"SPI-C","entrezGeneId":"121599"},{"alias":"TMEM16D","entrezGeneId":"121601"},{"alias":"ABH2","entrezGeneId":"121642"},{"alias":"IMP2","entrezGeneId":"121665"},{"alias":"MDHV1887","entrezGeneId":"121665"},{"alias":"PRO4332","entrezGeneId":"121665"},{"alias":"PSH1","entrezGeneId":"121665"},{"alias":"PSL4","entrezGeneId":"121665"},{"alias":"bA474D23.1","entrezGeneId":"121793"},{"alias":"C13orf16","entrezGeneId":"121793"},{"alias":"NCRNA00284","entrezGeneId":"121838"},{"alias":"HC8","entrezGeneId":"121916"},{"alias":"HCP35","entrezGeneId":"121916"},{"alias":"METTL21CP1","entrezGeneId":"121952"},{"alias":"CK1","entrezGeneId":"122011"},{"alias":"GPR106","entrezGeneId":"122042"},{"alias":"GREAT","entrezGeneId":"122042"},{"alias":"INSL3R","entrezGeneId":"122042"},{"alias":"LGR8","entrezGeneId":"122042"},{"alias":"LGR8.1","entrezGeneId":"122042"},{"alias":"RXFPR2","entrezGeneId":"122042"},{"alias":"C13orf26","entrezGeneId":"122046"},{"alias":"C13orf32","entrezGeneId":"122060"},{"alias":"PRR20","entrezGeneId":"122183"},{"alias":"LGMN2P","entrezGeneId":"122199"},{"alias":"C13orf28","entrezGeneId":"122258"},{"alias":"C14orf75","entrezGeneId":"122402"},{"alias":"HIG-1","entrezGeneId":"122402"},{"alias":"NET54","entrezGeneId":"122402"},{"alias":"RPS29_5_1384","entrezGeneId":"122449"},{"alias":"AK 7","entrezGeneId":"122481"},{"alias":"FAM14B","entrezGeneId":"122509"},{"alias":"ISG12C","entrezGeneId":"122509"},{"alias":"c14_5270","entrezGeneId":"122525"},{"alias":"DRIP-1","entrezGeneId":"122525"},{"alias":"DRIP1","entrezGeneId":"122525"},{"alias":"NEDMEBA","entrezGeneId":"122553"},{"alias":"TPC6","entrezGeneId":"122553"},{"alias":"RPLP0_4_1355","entrezGeneId":"122589"},{"alias":"C14orf79","entrezGeneId":"122616"},{"alias":"C14orf175","entrezGeneId":"122618"},{"alias":"MPD5","entrezGeneId":"122622"},{"alias":"C14orf6","entrezGeneId":"122651"},{"alias":"HEL-S-84p","entrezGeneId":"122651"},{"alias":"RAJ1","entrezGeneId":"122651"},{"alias":"C14orf8","entrezGeneId":"122664"},{"alias":"CT152","entrezGeneId":"122664"},{"alias":"P18","entrezGeneId":"122664"},{"alias":"p25beta","entrezGeneId":"122664"},{"alias":"RAE2","entrezGeneId":"122665"},{"alias":"BETA5T","entrezGeneId":"122706"},{"alias":"OR14-18","entrezGeneId":"122740"},{"alias":"OR14-22","entrezGeneId":"122740"},{"alias":"OR14-28","entrezGeneId":"122742"},{"alias":"OR4L2P","entrezGeneId":"122742"},{"alias":"4-1BBLRR","entrezGeneId":"122769"},{"alias":"LRR-1","entrezGeneId":"122769"},{"alias":"PPIL5","entrezGeneId":"122769"},{"alias":"MST025","entrezGeneId":"122773"},{"alias":"C14orf31","entrezGeneId":"122786"},{"alias":"c14_5320","entrezGeneId":"122786"},{"alias":"EX1","entrezGeneId":"122786"},{"alias":"Willin","entrezGeneId":"122786"},{"alias":"SOCS7","entrezGeneId":"122809"},{"alias":"C14orf35","entrezGeneId":"122830"},{"alias":"MAK3","entrezGeneId":"122830"},{"alias":"Mak3p","entrezGeneId":"122830"},{"alias":"NAT12","entrezGeneId":"122830"},{"alias":"NAT12P","entrezGeneId":"122830"},{"alias":"RPL40_5_1373","entrezGeneId":"122837"},{"alias":"COX4L1","entrezGeneId":"122867"},{"alias":"COX4P1","entrezGeneId":"122867"},{"alias":"B5","entrezGeneId":"122876"},{"alias":"GPB5","entrezGeneId":"122876"},{"alias":"ZLUT1","entrezGeneId":"122876"},{"alias":"HNRNPIP","entrezGeneId":"122888"},{"alias":"FRDAP","entrezGeneId":"122942"},{"alias":"C14orf148","entrezGeneId":"122945"},{"alias":"HC5","entrezGeneId":"122950"},{"alias":"HCP36","entrezGeneId":"122950"},{"alias":"JUNDM2","entrezGeneId":"122953"},{"alias":"c14_5557","entrezGeneId":"122961"},{"alias":"HBLD1","entrezGeneId":"122961"},{"alias":"ISA2","entrezGeneId":"122961"},{"alias":"MMDS4","entrezGeneId":"122961"},{"alias":"PTE-Ib","entrezGeneId":"122970"},{"alias":"PTE1B","entrezGeneId":"122970"},{"alias":"PTE2B","entrezGeneId":"122970"},{"alias":"BBS8","entrezGeneId":"123016"},{"alias":"RP51","entrezGeneId":"123016"},{"alias":"C14orf47","entrezGeneId":"123036"},{"alias":"C2CD1","entrezGeneId":"123036"},{"alias":"MTAC2D1","entrezGeneId":"123036"},{"alias":"Tac2-N","entrezGeneId":"123036"},{"alias":"AI2A5","entrezGeneId":"123041"},{"alias":"NCKX4","entrezGeneId":"123041"},{"alias":"SHEP6","entrezGeneId":"123041"},{"alias":"SLC24A2","entrezGeneId":"123041"},{"alias":"C14orf69","entrezGeneId":"123096"},{"alias":"CACL","entrezGeneId":"123096"},{"alias":"ORNT3","entrezGeneId":"123096"},{"alias":"C14orf66","entrezGeneId":"123099"},{"alias":"DES2","entrezGeneId":"123099"},{"alias":"FADS8","entrezGeneId":"123099"},{"alias":"RDL","entrezGeneId":"123169"},{"alias":"DEN1","entrezGeneId":"123228"},{"alias":"NEDP1","entrezGeneId":"123228"},{"alias":"PRSC2","entrezGeneId":"123228"},{"alias":"COXPD15","entrezGeneId":"123263"},{"alias":"FMT1","entrezGeneId":"123263"},{"alias":"OSTB","entrezGeneId":"123264"},{"alias":"OSTBETA","entrezGeneId":"123264"},{"alias":"HIGD2BP","entrezGeneId":"123346"},{"alias":"C15orf27","entrezGeneId":"123591"},{"alias":"HVRP1","entrezGeneId":"123591"},{"alias":"FSP3","entrezGeneId":"123606"},{"alias":"SLC57A1","entrezGeneId":"123606"},{"alias":"SPG6","entrezGeneId":"123606"},{"alias":"CCP4","entrezGeneId":"123624"},{"alias":"FECD8","entrezGeneId":"123624"},{"alias":"AGPHD1","entrezGeneId":"123688"},{"alias":"WHAMM1","entrezGeneId":"123720"},{"alias":"WHDC1","entrezGeneId":"123720"},{"alias":"SPRYD1","entrezGeneId":"123722"},{"alias":"ISP2","entrezGeneId":"123787"},{"alias":"PNAA","entrezGeneId":"123803"},{"alias":"PNAD","entrezGeneId":"123803"},{"alias":"C16orf63","entrezGeneId":"123811"},{"alias":"FOR20","entrezGeneId":"123811"},{"alias":"PHSECRG2","entrezGeneId":"123811"},{"alias":"CILD13","entrezGeneId":"123872"},{"alias":"LRRC50","entrezGeneId":"123872"},{"alias":"ODA7","entrezGeneId":"123872"},{"alias":"swt","entrezGeneId":"123872"},{"alias":"A-923A4.1","entrezGeneId":"123876"},{"alias":"ACSM2","entrezGeneId":"123876"},{"alias":"44M2.4","entrezGeneId":"123879"},{"alias":"SCCRO3","entrezGeneId":"123879"},{"alias":"cpg15-2","entrezGeneId":"123904"},{"alias":"MRCC2446","entrezGeneId":"123904"},{"alias":"UNQ2446","entrezGeneId":"123904"},{"alias":"BNAS2","entrezGeneId":"123920"},{"alias":"CKLFSF3","entrezGeneId":"123920"},{"alias":"C16orf76","entrezGeneId":"124044"},{"alias":"tamo","entrezGeneId":"124044"},{"alias":"C16orf55","entrezGeneId":"124045"},{"alias":"P41NOX","entrezGeneId":"124056"},{"alias":"P41NOXA","entrezGeneId":"124056"},{"alias":"P41NOXB","entrezGeneId":"124056"},{"alias":"P41NOXC","entrezGeneId":"124056"},{"alias":"SH3PXD5","entrezGeneId":"124056"},{"alias":"SNX28","entrezGeneId":"124056"},{"alias":"C16orf25","entrezGeneId":"124093"},{"alias":"CNM4","entrezGeneId":"124093"},{"alias":"hsCCDC78","entrezGeneId":"124093"},{"alias":"JFP10","entrezGeneId":"124093"},{"alias":"EECP","entrezGeneId":"124220"},{"alias":"HRPE773","entrezGeneId":"124220"},{"alias":"JCLN2","entrezGeneId":"124220"},{"alias":"PAUF","entrezGeneId":"124220"},{"alias":"PRO1567","entrezGeneId":"124220"},{"alias":"Disp","entrezGeneId":"124221"},{"alias":"TMPRSS8","entrezGeneId":"124221"},{"alias":"TMPRSS8P","entrezGeneId":"124221"},{"alias":"NHN1","entrezGeneId":"124245"},{"alias":"GPRg1","entrezGeneId":"124274"},{"alias":"PGR3","entrezGeneId":"124274"},{"alias":"PCCP1","entrezGeneId":"124359"},{"alias":"FAM100A","entrezGeneId":"124402"},{"alias":"PP11303","entrezGeneId":"124402"},{"alias":"SPGF10","entrezGeneId":"124404"},{"alias":"IGFBP-3R","entrezGeneId":"124446"},{"alias":"COXPD12","entrezGeneId":"124454"},{"alias":"gluRS","entrezGeneId":"124454"},{"alias":"MSE1","entrezGeneId":"124454"},{"alias":"SLIC1","entrezGeneId":"124460"},{"alias":"TMEM170","entrezGeneId":"124491"},{"alias":"ATP5F1P7","entrezGeneId":"124496"},{"alias":"C17orf95","entrezGeneId":"124512"},{"alias":"MRT44","entrezGeneId":"124512"},{"alias":"HSF 5","entrezGeneId":"124535"},{"alias":"HSTF 5","entrezGeneId":"124535"},{"alias":"BC2009","entrezGeneId":"124538"},{"alias":"OR17-24","entrezGeneId":"124538"},{"alias":"MSI2H","entrezGeneId":"124540"},{"alias":"PP1744","entrezGeneId":"124565"},{"alias":"DBQD","entrezGeneId":"124583"},{"alias":"DBQD1","entrezGeneId":"124583"},{"alias":"EDM7","entrezGeneId":"124583"},{"alias":"SCAN-1","entrezGeneId":"124583"},{"alias":"SCAN1","entrezGeneId":"124583"},{"alias":"SHAPY","entrezGeneId":"124583"},{"alias":"ANKS4A","entrezGeneId":"124590"},{"alias":"SANS","entrezGeneId":"124590"},{"alias":"CD300b","entrezGeneId":"124599"},{"alias":"CLM-7","entrezGeneId":"124599"},{"alias":"CLM7","entrezGeneId":"124599"},{"alias":"CMRF35-A2","entrezGeneId":"124599"},{"alias":"IREM-3","entrezGeneId":"124599"},{"alias":"IREM3","entrezGeneId":"124599"},{"alias":"TREM-5","entrezGeneId":"124599"},{"alias":"TREM5","entrezGeneId":"124599"},{"alias":"KIF19A","entrezGeneId":"124602"},{"alias":"ZPBPL","entrezGeneId":"124626"},{"alias":"AEP2","entrezGeneId":"124783"},{"alias":"C17orf46","entrezGeneId":"124783"},{"alias":"TEX34","entrezGeneId":"124783"},{"alias":"VAD1.2","entrezGeneId":"124783"},{"alias":"L3","entrezGeneId":"124790"},{"alias":"PNAS-135","entrezGeneId":"124801"},{"alias":"CNTD","entrezGeneId":"124817"},{"alias":"DFNB99","entrezGeneId":"124842"},{"alias":"GASP-1","entrezGeneId":"124857"},{"alias":"hGASP-1","entrezGeneId":"124857"},{"alias":"WFDC20B","entrezGeneId":"124857"},{"alias":"WFIKKNRP","entrezGeneId":"124857"},{"alias":"B4GALT","entrezGeneId":"124872"},{"alias":"GALGT2","entrezGeneId":"124872"},{"alias":"ALLP17","entrezGeneId":"124912"},{"alias":"CT54","entrezGeneId":"124912"},{"alias":"LYC3","entrezGeneId":"124912"},{"alias":"LYZC","entrezGeneId":"124912"},{"alias":"LYZL3","entrezGeneId":"124912"},{"alias":"SLLP1","entrezGeneId":"124912"},{"alias":"BSRPC","entrezGeneId":"124925"},{"alias":"LAT4","entrezGeneId":"124935"},{"alias":"BAP18","entrezGeneId":"124944"},{"alias":"HEPIS","entrezGeneId":"124944"},{"alias":"ZNF752","entrezGeneId":"124961"},{"alias":"C17orf57","entrezGeneId":"124989"},{"alias":"L10MT","entrezGeneId":"124995"},{"alias":"MRP-L10","entrezGeneId":"124995"},{"alias":"MRP-L8","entrezGeneId":"124995"},{"alias":"MRPL8","entrezGeneId":"124995"},{"alias":"RPML8","entrezGeneId":"124995"},{"alias":"CAMRQ2","entrezGeneId":"124997"},{"alias":"PPP1R166","entrezGeneId":"124997"},{"alias":"SORF-2","entrezGeneId":"124997"},{"alias":"7SK","entrezGeneId":"125050"},{"alias":"FKF","entrezGeneId":"125061"},{"alias":"KF","entrezGeneId":"125061"},{"alias":"KFA","entrezGeneId":"125061"},{"alias":"Cx30.2","entrezGeneId":"125111"},{"alias":"CX31.9","entrezGeneId":"125111"},{"alias":"GJA11","entrezGeneId":"125111"},{"alias":"GJC1","entrezGeneId":"125111"},{"alias":"KA21","entrezGeneId":"125113"},{"alias":"KRT222P","entrezGeneId":"125113"},{"alias":"CK-40","entrezGeneId":"125115"},{"alias":"K40","entrezGeneId":"125115"},{"alias":"KA36","entrezGeneId":"125115"},{"alias":"C17orf45","entrezGeneId":"125144"},{"alias":"C17orf76-AS1","entrezGeneId":"125144"},{"alias":"FAM211A-AS1","entrezGeneId":"125144"},{"alias":"NCRNA00188","entrezGeneId":"125144"},{"alias":"TSAP19","entrezGeneId":"125144"},{"alias":"SWS1","entrezGeneId":"125150"},{"alias":"MID49","entrezGeneId":"125170"},{"alias":"SMCR7","entrezGeneId":"125170"},{"alias":"SGLT-5","entrezGeneId":"125206"},{"alias":"SGLT5","entrezGeneId":"125206"},{"alias":"RPS2_22_1525","entrezGeneId":"125208"},{"alias":"C18orf19","entrezGeneId":"125228"},{"alias":"HsT2329","entrezGeneId":"125228"},{"alias":"DFNB77","entrezGeneId":"125336"},{"alias":"LH2D1","entrezGeneId":"125336"},{"alias":"RPL22_5_435","entrezGeneId":"125371"},{"alias":"C18orf37","entrezGeneId":"125476"},{"alias":"hIes6","entrezGeneId":"125476"},{"alias":"IES6","entrezGeneId":"125476"},{"alias":"C18orf17","entrezGeneId":"125488"},{"alias":"HsT2697","entrezGeneId":"125488"},{"alias":"C18orf51","entrezGeneId":"125704"},{"alias":"ZNF816A","entrezGeneId":"125893"},{"alias":"UNQ9366","entrezGeneId":"125931"},{"alias":"hg105","entrezGeneId":"125958"},{"alias":"OR19-7","entrezGeneId":"125958"},{"alias":"OR19-B","entrezGeneId":"125958"},{"alias":"OR19B","entrezGeneId":"125958"},{"alias":"OR7D4P","entrezGeneId":"125958"},{"alias":"OR19-15","entrezGeneId":"125962"},{"alias":"OR19-8","entrezGeneId":"125962"},{"alias":"OR7G1P","entrezGeneId":"125962"},{"alias":"OR19-5","entrezGeneId":"125963"},{"alias":"OR19-6","entrezGeneId":"125963"},{"alias":"COXVIB2","entrezGeneId":"125965"},{"alias":"CT59","entrezGeneId":"125965"},{"alias":"CMH19","entrezGeneId":"125972"},{"alias":"CRT2","entrezGeneId":"125972"},{"alias":"CT93","entrezGeneId":"125972"},{"alias":"ALKCDase1","entrezGeneId":"125981"},{"alias":"ASAH3","entrezGeneId":"125981"},{"alias":"MIC13","entrezGeneId":"125988"},{"alias":"P117","entrezGeneId":"125988"},{"alias":"QIL1","entrezGeneId":"125988"},{"alias":"TRS31","entrezGeneId":"126003"},{"alias":"GPSM4","entrezGeneId":"126006"},{"alias":"PIgR-3","entrezGeneId":"126014"},{"alias":"PIGR3","entrezGeneId":"126014"},{"alias":"C19orf39","entrezGeneId":"126074"},{"alias":"SWS1AP1","entrezGeneId":"126074"},{"alias":"ZSWIM7AP1","entrezGeneId":"126074"},{"alias":"SBBI54","entrezGeneId":"126119"},{"alias":"C19orf41","entrezGeneId":"126123"},{"alias":"PLAL6978","entrezGeneId":"126123"},{"alias":"PRO21961","entrezGeneId":"126123"},{"alias":"SCRL","entrezGeneId":"126123"},{"alias":"CATL1","entrezGeneId":"126129"},{"alias":"CPT1-B","entrezGeneId":"126129"},{"alias":"CPT1P","entrezGeneId":"126129"},{"alias":"CPTI-B","entrezGeneId":"126129"},{"alias":"CPTIC","entrezGeneId":"126129"},{"alias":"SPG73","entrezGeneId":"126129"},{"alias":"CLR19.7","entrezGeneId":"126204"},{"alias":"NALP13","entrezGeneId":"126204"},{"alias":"NOD14","entrezGeneId":"126204"},{"alias":"PAN13","entrezGeneId":"126204"},{"alias":"CLR19.2","entrezGeneId":"126205"},{"alias":"NALP8","entrezGeneId":"126205"},{"alias":"NOD16","entrezGeneId":"126205"},{"alias":"PAN4","entrezGeneId":"126205"},{"alias":"CLR19.8","entrezGeneId":"126206"},{"alias":"MATER","entrezGeneId":"126206"},{"alias":"NALP5","entrezGeneId":"126206"},{"alias":"PAN11","entrezGeneId":"126206"},{"alias":"PYPAF8","entrezGeneId":"126206"},{"alias":"TIP20","entrezGeneId":"126208"},{"alias":"RPS4P21","entrezGeneId":"126235"},{"alias":"RPS4X_10_1649","entrezGeneId":"126235"},{"alias":"PQWD","entrezGeneId":"126248"},{"alias":"CD28H","entrezGeneId":"126259"},{"alias":"IGPR-1","entrezGeneId":"126259"},{"alias":"IGPR1","entrezGeneId":"126259"},{"alias":"EID-2B","entrezGeneId":"126272"},{"alias":"EID-3","entrezGeneId":"126272"},{"alias":"TIPE1","entrezGeneId":"126282"},{"alias":"ZNF424","entrezGeneId":"126295"},{"alias":"FKSG27","entrezGeneId":"126298"},{"alias":"IRGQ1","entrezGeneId":"126298"},{"alias":"C19orf37","entrezGeneId":"126299"},{"alias":"Zfp428","entrezGeneId":"126299"},{"alias":"JP-45","entrezGeneId":"126306"},{"alias":"JP45","entrezGeneId":"126306"},{"alias":"MOB-LAK","entrezGeneId":"126308"},{"alias":"MOB1C","entrezGeneId":"126308"},{"alias":"MOBKL2A","entrezGeneId":"126308"},{"alias":"moblak","entrezGeneId":"126308"},{"alias":"C19orf28","entrezGeneId":"126321"},{"alias":"PP3501","entrezGeneId":"126321"},{"alias":"C19orf64","entrezGeneId":"126326"},{"alias":"DFNB15","entrezGeneId":"126326"},{"alias":"DFNB72","entrezGeneId":"126326"},{"alias":"DFNB95","entrezGeneId":"126326"},{"alias":"B14.7","entrezGeneId":"126328"},{"alias":"CI-B14.7","entrezGeneId":"126328"},{"alias":"C19orf21","entrezGeneId":"126353"},{"alias":"MISP1","entrezGeneId":"126353"},{"alias":"MAPA","entrezGeneId":"126364"},{"alias":"OR19-20","entrezGeneId":"126370"},{"alias":"OR1I1P","entrezGeneId":"126370"},{"alias":"OR1I1Q","entrezGeneId":"126370"},{"alias":"TRA16","entrezGeneId":"126382"},{"alias":"HEL55","entrezGeneId":"126393"},{"alias":"Hsp20","entrezGeneId":"126393"},{"alias":"PPP1R91","entrezGeneId":"126393"},{"alias":"ARCI5","entrezGeneId":"126410"},{"alias":"INLNE","entrezGeneId":"126410"},{"alias":"LI3","entrezGeneId":"126410"},{"alias":"FBG5","entrezGeneId":"126433"},{"alias":"Fbx27","entrezGeneId":"126433"},{"alias":"PLK-5","entrezGeneId":"126520"},{"alias":"PLK5P","entrezGeneId":"126520"},{"alias":"SgK384ps","entrezGeneId":"126520"},{"alias":"OR19-28","entrezGeneId":"126541"},{"alias":"ANKRD41","entrezGeneId":"126549"},{"alias":"LEM3","entrezGeneId":"126549"},{"alias":"LEMD6","entrezGeneId":"126549"},{"alias":"FAM148C","entrezGeneId":"126567"},{"alias":"KIAA1957","entrezGeneId":"126567"},{"alias":"NLF3","entrezGeneId":"126567"},{"alias":"MRP63P1","entrezGeneId":"126581"},{"alias":"GABPB-2","entrezGeneId":"126626"},{"alias":"S100A17","entrezGeneId":"126637"},{"alias":"THHL1","entrezGeneId":"126637"},{"alias":"C1orf231","entrezGeneId":"126661"},{"alias":"CCDC163P","entrezGeneId":"126661"},{"alias":"C1orf172","entrezGeneId":"126695"},{"alias":"ECTD12","entrezGeneId":"126695"},{"alias":"C1orf96","entrezGeneId":"126731"},{"alias":"CSAP","entrezGeneId":"126731"},{"alias":"beta3GalT6","entrezGeneId":"126792"},{"alias":"EDSP2","entrezGeneId":"126792"},{"alias":"EDSSPD2","entrezGeneId":"126792"},{"alias":"SEMDJL1","entrezGeneId":"126792"},{"alias":"DIC3","entrezGeneId":"126820"},{"alias":"NYD-SP29","entrezGeneId":"126820"},{"alias":"KARCA1","entrezGeneId":"126823"},{"alias":"C1orf125","entrezGeneId":"126859"},{"alias":"C1orf161","entrezGeneId":"126868"},{"alias":"H3","entrezGeneId":"126961"},{"alias":"H3.2","entrezGeneId":"126961"},{"alias":"H3/M","entrezGeneId":"126961"},{"alias":"H3F2","entrezGeneId":"126961"},{"alias":"H3FM","entrezGeneId":"126961"},{"alias":"H3FN","entrezGeneId":"126961"},{"alias":"CTL3","entrezGeneId":"126969"},{"alias":"Q96AV0","entrezGeneId":"127018"},{"alias":"OR2M5P","entrezGeneId":"127059"},{"alias":"OR1-54","entrezGeneId":"127062"},{"alias":"OR2M3P","entrezGeneId":"127062"},{"alias":"OR2M6","entrezGeneId":"127062"},{"alias":"OST003","entrezGeneId":"127062"},{"alias":"OR1-57","entrezGeneId":"127064"},{"alias":"OR5BF1","entrezGeneId":"127066"},{"alias":"OR1-64","entrezGeneId":"127069"},{"alias":"OR1-60","entrezGeneId":"127074"},{"alias":"OR2T4Q","entrezGeneId":"127074"},{"alias":"OR2T11Q","entrezGeneId":"127077"},{"alias":"RPLP1_1_124","entrezGeneId":"127099"},{"alias":"ATP6G3","entrezGeneId":"127124"},{"alias":"Vma10","entrezGeneId":"127124"},{"alias":"Asb-17","entrezGeneId":"127247"},{"alias":"C1orf171","entrezGeneId":"127253"},{"alias":"C1orf173","entrezGeneId":"127254"},{"alias":"LRRC44","entrezGeneId":"127255"},{"alias":"FAM79A","entrezGeneId":"127262"},{"alias":"h-mover","entrezGeneId":"127262"},{"alias":"mover","entrezGeneId":"127262"},{"alias":"C1orf93","entrezGeneId":"127281"},{"alias":"RPL36_1_21","entrezGeneId":"127295"},{"alias":"MBX","entrezGeneId":"127343"},{"alias":"OTX3","entrezGeneId":"127343"},{"alias":"PAXB","entrezGeneId":"127343"},{"alias":"OR1-28","entrezGeneId":"127385"},{"alias":"dJ39G22.2","entrezGeneId":"127391"},{"alias":"RPSA_1_53","entrezGeneId":"127406"},{"alias":"C1orf83","entrezGeneId":"127428"},{"alias":"PCAN","entrezGeneId":"127435"},{"alias":"SLRR5A","entrezGeneId":"127435"},{"alias":"s100a7d","entrezGeneId":"127481"},{"alias":"S100A7L3","entrezGeneId":"127481"},{"alias":"CX30.3","entrezGeneId":"127534"},{"alias":"EKV","entrezGeneId":"127534"},{"alias":"EKVP2","entrezGeneId":"127534"},{"alias":"dJ1007G16.5","entrezGeneId":"127540"},{"alias":"IBRDC3","entrezGeneId":"127544"},{"alias":"NKLAM","entrezGeneId":"127544"},{"alias":"RPL18A_2_30","entrezGeneId":"127545"},{"alias":"A3GALT2P","entrezGeneId":"127550"},{"alias":"IGB3S","entrezGeneId":"127550"},{"alias":"IGBS3S","entrezGeneId":"127550"},{"alias":"C1orf67","entrezGeneId":"127602"},{"alias":"Dnahc14","entrezGeneId":"127602"},{"alias":"HL-18","entrezGeneId":"127602"},{"alias":"HL18","entrezGeneId":"127602"},{"alias":"OR2AJ1P","entrezGeneId":"127608"},{"alias":"OR2AJ1Q","entrezGeneId":"127608"},{"alias":"OR1-35","entrezGeneId":"127617"},{"alias":"OR1-36","entrezGeneId":"127617"},{"alias":"OR5AV1","entrezGeneId":"127617"},{"alias":"OR5AV1P","entrezGeneId":"127617"},{"alias":"EDDM9","entrezGeneId":"127670"},{"alias":"Epdd1","entrezGeneId":"127670"},{"alias":"HE9","entrezGeneId":"127670"},{"alias":"HEL-S-45e","entrezGeneId":"127670"},{"alias":"TMEM45C","entrezGeneId":"127670"},{"alias":"TEDDM1P1","entrezGeneId":"127671"},{"alias":"ALAESM","entrezGeneId":"127687"},{"alias":"C1orf102","entrezGeneId":"127700"},{"alias":"NOR1","entrezGeneId":"127700"},{"alias":"UBXD3","entrezGeneId":"127733"},{"alias":"CREF","entrezGeneId":"127795"},{"alias":"ARL10B","entrezGeneId":"127829"},{"alias":"GIE2","entrezGeneId":"127829"},{"alias":"CMS7","entrezGeneId":"127833"},{"alias":"MYSPC","entrezGeneId":"127833"},{"alias":"SytII","entrezGeneId":"127833"},{"alias":"CGI-141","entrezGeneId":"127845"},{"alias":"GOT1","entrezGeneId":"127845"},{"alias":"hGOT1b","entrezGeneId":"127845"},{"alias":"HMFN1187","entrezGeneId":"127845"},{"alias":"YMR292W","entrezGeneId":"127845"},{"alias":"KIS","entrezGeneId":"127933"},{"alias":"KIST","entrezGeneId":"127933"},{"alias":"P-CIP2","entrezGeneId":"127933"},{"alias":"FCRL2","entrezGeneId":"127943"},{"alias":"FCRLM2","entrezGeneId":"127943"},{"alias":"FCRLY","entrezGeneId":"127943"},{"alias":"FcRY","entrezGeneId":"127943"},{"alias":"FREB-2","entrezGeneId":"127943"},{"alias":"FREB2","entrezGeneId":"127943"},{"alias":"IQCH","entrezGeneId":"128153"},{"alias":"MSRG-11","entrezGeneId":"128153"},{"alias":"MSRG11","entrezGeneId":"128153"},{"alias":"ECTD11A","entrezGeneId":"128178"},{"alias":"ECTD11B","entrezGeneId":"128178"},{"alias":"ED3","entrezGeneId":"128178"},{"alias":"EDA3","entrezGeneId":"128178"},{"alias":"Zfp393","entrezGeneId":"128209"},{"alias":"ZNF393","entrezGeneId":"128209"},{"alias":"C1orf182","entrezGeneId":"128229"},{"alias":"SIP","entrezGeneId":"128229"},{"alias":"SSTK-IP","entrezGeneId":"128229"},{"alias":"AIBP","entrezGeneId":"128240"},{"alias":"APOA1BP","entrezGeneId":"128240"},{"alias":"PEBEL","entrezGeneId":"128240"},{"alias":"YJEFN1","entrezGeneId":"128240"},{"alias":"WGEF","entrezGeneId":"128272"},{"alias":"AAVG5835","entrezGeneId":"128308"},{"alias":"L55nt","entrezGeneId":"128308"},{"alias":"MRP-L55","entrezGeneId":"128308"},{"alias":"PRO19675","entrezGeneId":"128308"},{"alias":"H2Bb","entrezGeneId":"128312"},{"alias":"CORD21","entrezGeneId":"128338"},{"alias":"PRO180","entrezGeneId":"128338"},{"alias":"TMEM77","entrezGeneId":"128338"},{"alias":"WWFQ154","entrezGeneId":"128338"},{"alias":"C1orf88","entrezGeneId":"128344"},{"alias":"pitchfork","entrezGeneId":"128344"},{"alias":"OR1-3","entrezGeneId":"128360"},{"alias":"OR1-13","entrezGeneId":"128367"},{"alias":"OR1-14","entrezGeneId":"128367"},{"alias":"OR10X1P","entrezGeneId":"128367"},{"alias":"OR1-15","entrezGeneId":"128368"},{"alias":"OR1-21","entrezGeneId":"128371"},{"alias":"OR1-22","entrezGeneId":"128372"},{"alias":"bA305P22.3","entrezGeneId":"128408"},{"alias":"Beta3b","entrezGeneId":"128408"},{"alias":"BETA4","entrezGeneId":"128408"},{"alias":"BHLHB4","entrezGeneId":"128408"},{"alias":"bA261N11.2","entrezGeneId":"128414"},{"alias":"C20orf58","entrezGeneId":"128414"},{"alias":"FAM77A","entrezGeneId":"128414"},{"alias":"C20orf102","entrezGeneId":"128434"},{"alias":"dJ1118M15.2","entrezGeneId":"128434"},{"alias":"C20orf198","entrezGeneId":"128439"},{"alias":"LINC00101","entrezGeneId":"128439"},{"alias":"NCRNA00101","entrezGeneId":"128439"},{"alias":"dJ661I20.1","entrezGeneId":"128467"},{"alias":"RPL12L2","entrezGeneId":"128467"},{"alias":"RPL12_22_1703","entrezGeneId":"128467"},{"alias":"dJ1028D15.2","entrezGeneId":"128481"},{"alias":"C20orf142","entrezGeneId":"128486"},{"alias":"dJ881L22.2","entrezGeneId":"128486"},{"alias":"Fit2","entrezGeneId":"128486"},{"alias":"C20orf122","entrezGeneId":"128488"},{"alias":"dJ211D12.4","entrezGeneId":"128488"},{"alias":"SWAM2","entrezGeneId":"128488"},{"alias":"WAP2","entrezGeneId":"128488"},{"alias":"C20orf165","entrezGeneId":"128497"},{"alias":"dJ337O18.8","entrezGeneId":"128497"},{"alias":"TSG23","entrezGeneId":"128497"},{"alias":"dJ599F21.2","entrezGeneId":"128500"},{"alias":"RPL13P3","entrezGeneId":"128500"},{"alias":"RPL13_7_1707","entrezGeneId":"128500"},{"alias":"C20orf123","entrezGeneId":"128506"},{"alias":"dJ257E24.3","entrezGeneId":"128506"},{"alias":"OC-STAMP","entrezGeneId":"128506"},{"alias":"C20orf17","entrezGeneId":"128553"},{"alias":"OVC10-2","entrezGeneId":"128553"},{"alias":"TSH2","entrezGeneId":"128553"},{"alias":"ZABC2","entrezGeneId":"128553"},{"alias":"ZNF218","entrezGeneId":"128553"},{"alias":"dJ843L14.2","entrezGeneId":"128580"},{"alias":"RPS4L","entrezGeneId":"128580"},{"alias":"RPS4P3","entrezGeneId":"128580"},{"alias":"bA196N14.1","entrezGeneId":"128602"},{"alias":"LLC1","entrezGeneId":"128602"},{"alias":"bA379F14.1","entrezGeneId":"128609"},{"alias":"MRPS16P","entrezGeneId":"128609"},{"alias":"C20orf174","entrezGeneId":"128611"},{"alias":"bA164D18.1","entrezGeneId":"128615"},{"alias":"C20orf83","entrezGeneId":"128615"},{"alias":"FAM38CP","entrezGeneId":"128615"},{"alias":"C20orf140","entrezGeneId":"128637"},{"alias":"WARBM4","entrezGeneId":"128637"},{"alias":"dJ576H24.4","entrezGeneId":"128646"},{"alias":"PTPNS1L2","entrezGeneId":"128646"},{"alias":"dJ860F19.4","entrezGeneId":"128653"},{"alias":"dJ189G13.1","entrezGeneId":"128668"},{"alias":"RPL7AL2","entrezGeneId":"128668"},{"alias":"dJ680N4.3","entrezGeneId":"128674"},{"alias":"GPR73b","entrezGeneId":"128674"},{"alias":"GPR73L1","entrezGeneId":"128674"},{"alias":"GPRg2","entrezGeneId":"128674"},{"alias":"HH3","entrezGeneId":"128674"},{"alias":"KAL3","entrezGeneId":"128674"},{"alias":"PKR2","entrezGeneId":"128674"},{"alias":"dJ1022P6.1","entrezGeneId":"128676"},{"alias":"RPS18_9_1682","entrezGeneId":"128676"},{"alias":"dJ1068F16.1","entrezGeneId":"128709"},{"alias":"RPL23A_36_1683","entrezGeneId":"128709"},{"alias":"bA204H22.1","entrezGeneId":"128710"},{"alias":"bA254M13.1","entrezGeneId":"128710"},{"alias":"C20orf94","entrezGeneId":"128710"},{"alias":"dJ1099D15.3","entrezGeneId":"128710"},{"alias":"dJ1060K6.1","entrezGeneId":"128718"},{"alias":"RPS11_3_1684","entrezGeneId":"128718"},{"alias":"dJ777L9.2","entrezGeneId":"128745"},{"alias":"dJ348M17.1","entrezGeneId":"128748"},{"alias":"RPL7AL3","entrezGeneId":"128748"},{"alias":"dJ726N1.3","entrezGeneId":"128756"},{"alias":"RPL15_9_1687","entrezGeneId":"128756"},{"alias":"bA189K21.4","entrezGeneId":"128760"},{"alias":"dJ1049G11.3","entrezGeneId":"128770"},{"alias":"EIF4EL4","entrezGeneId":"128770"},{"alias":"dJ746H2.1","entrezGeneId":"128774"},{"alias":"dJ1065O2.2","entrezGeneId":"128790"},{"alias":"SLC25A5L","entrezGeneId":"128790"},{"alias":"CTES1","entrezGeneId":"128817"},{"alias":"dJ322G13.4","entrezGeneId":"128817"},{"alias":"RCET11","entrezGeneId":"128817"},{"alias":"CTES7C","entrezGeneId":"128820"},{"alias":"bA218C14.1","entrezGeneId":"128821"},{"alias":"CTES7B","entrezGeneId":"128821"},{"alias":"CLM","entrezGeneId":"128822"},{"alias":"CTES7A","entrezGeneId":"128822"},{"alias":"C20orf166","entrezGeneId":"128826"},{"alias":"MIR133A2HG","entrezGeneId":"128826"},{"alias":"dJ854E16.1","entrezGeneId":"128848"},{"alias":"DKKL2","entrezGeneId":"128848"},{"alias":"C20orf57","entrezGeneId":"128853"},{"alias":"VHY","entrezGeneId":"128853"},{"alias":"bA392M18.1","entrezGeneId":"128854"},{"alias":"TSPYL3","entrezGeneId":"128854"},{"alias":"BPIL3","entrezGeneId":"128859"},{"alias":"LPLUNC6","entrezGeneId":"128859"},{"alias":"C20orf71","entrezGeneId":"128861"},{"alias":"SPLUNC3","entrezGeneId":"128861"},{"alias":"bA49G10.7","entrezGeneId":"128862"},{"alias":"RPL12_17_1694","entrezGeneId":"128862"},{"alias":"dJ63M2.6","entrezGeneId":"128864"},{"alias":"C20orf178","entrezGeneId":"128866"},{"alias":"CHMP4A","entrezGeneId":"128866"},{"alias":"CTPP3","entrezGeneId":"128866"},{"alias":"CTRCT31","entrezGeneId":"128866"},{"alias":"dJ553F4.4","entrezGeneId":"128866"},{"alias":"Shax1","entrezGeneId":"128866"},{"alias":"SNF7","entrezGeneId":"128866"},{"alias":"SNF7-2","entrezGeneId":"128866"},{"alias":"Vps32-2","entrezGeneId":"128866"},{"alias":"VPS32B","entrezGeneId":"128866"},{"alias":"CDC91L1","entrezGeneId":"128869"},{"alias":"GAB1","entrezGeneId":"128869"},{"alias":"dJ18C9.3","entrezGeneId":"128872"},{"alias":"HMG4L","entrezGeneId":"128872"},{"alias":"HMGB3L1","entrezGeneId":"128872"},{"alias":"C20orf128","entrezGeneId":"128876"},{"alias":"dJ614O4.7","entrezGeneId":"128876"},{"alias":"dJ550H1.1","entrezGeneId":"128879"},{"alias":"HMG4L2","entrezGeneId":"128879"},{"alias":"HMGB3L2","entrezGeneId":"128879"},{"alias":"C22orf25","entrezGeneId":"128989"},{"alias":"MECRCN","entrezGeneId":"128989"},{"alias":"3'OY11.1","entrezGeneId":"129025"},{"alias":"SUHW1","entrezGeneId":"129025"},{"alias":"ZNF280","entrezGeneId":"129025"},{"alias":"ZNF636","entrezGeneId":"129025"},{"alias":"RUTBC2","entrezGeneId":"129049"},{"alias":"EMI5","entrezGeneId":"129080"},{"alias":"EMU1","entrezGeneId":"129080"},{"alias":"dJ90G24.5","entrezGeneId":"129099"},{"alias":"LIAR","entrezGeneId":"129138"},{"alias":"CCDC128","entrezGeneId":"129285"},{"alias":"KLRAQ1","entrezGeneId":"129285"},{"alias":"C2orf89","entrezGeneId":"129293"},{"alias":"TIKI1","entrezGeneId":"129293"},{"alias":"TM6P1","entrezGeneId":"129303"},{"alias":"TMEM150","entrezGeneId":"129303"},{"alias":"TTN1","entrezGeneId":"129303"},{"alias":"MP-44","entrezGeneId":"129401"},{"alias":"MP44","entrezGeneId":"129401"},{"alias":"NP44","entrezGeneId":"129401"},{"alias":"NUP53","entrezGeneId":"129401"},{"alias":"CMYA3","entrezGeneId":"129446"},{"alias":"C2orf60","entrezGeneId":"129450"},{"alias":"hTYW5","entrezGeneId":"129450"},{"alias":"SALW1939","entrezGeneId":"129530"},{"alias":"FAM6A","entrezGeneId":"129563"},{"alias":"hDIS3L2","entrezGeneId":"129563"},{"alias":"PRLMNS","entrezGeneId":"129563"},{"alias":"NDK","entrezGeneId":"129607"},{"alias":"TMPK2","entrezGeneId":"129607"},{"alias":"TYKi","entrezGeneId":"129607"},{"alias":"UMP-CMPK2","entrezGeneId":"129607"},{"alias":"LPAAT","entrezGeneId":"129642"},{"alias":"LPCAT4","entrezGeneId":"129642"},{"alias":"LPEAT","entrezGeneId":"129642"},{"alias":"LPLAT 2","entrezGeneId":"129642"},{"alias":"OACT2","entrezGeneId":"129642"},{"alias":"caspr5","entrezGeneId":"129684"},{"alias":"II","entrezGeneId":"129685"},{"alias":"TAF","entrezGeneId":"129685"},{"alias":"TAFII-43","entrezGeneId":"129685"},{"alias":"TAFII43","entrezGeneId":"129685"},{"alias":"TBN","entrezGeneId":"129685"},{"alias":"lncND","entrezGeneId":"129787"},{"alias":"MY040","entrezGeneId":"129790"},{"alias":"TM14","entrezGeneId":"129804"},{"alias":"DRB1","entrezGeneId":"129831"},{"alias":"RB-1","entrezGeneId":"129831"},{"alias":"RPSA_7_299","entrezGeneId":"129841"},{"alias":"TRIM43A","entrezGeneId":"129868"},{"alias":"UBTFL5","entrezGeneId":"129870"},{"alias":"C2orf77","entrezGeneId":"129881"},{"alias":"ALS2CR14","entrezGeneId":"130026"},{"alias":"ALS2CR15","entrezGeneId":"130026"},{"alias":"MANI","entrezGeneId":"130074"},{"alias":"KIP4","entrezGeneId":"130106"},{"alias":"LPPM429","entrezGeneId":"130120"},{"alias":"PAP IB","entrezGeneId":"130120"},{"alias":"PAP-1B","entrezGeneId":"130120"},{"alias":"PAP1B","entrezGeneId":"130120"},{"alias":"PAPIB","entrezGeneId":"130120"},{"alias":"REG III","entrezGeneId":"130120"},{"alias":"REG-III","entrezGeneId":"130120"},{"alias":"UNQ429","entrezGeneId":"130120"},{"alias":"C2orf11","entrezGeneId":"130132"},{"alias":"Raftlin-2","entrezGeneId":"130132"},{"alias":"C2orf63","entrezGeneId":"130162"},{"alias":"PLEKHH1L","entrezGeneId":"130271"},{"alias":"PSORS15","entrezGeneId":"130340"},{"alias":"AIM29","entrezGeneId":"130355"},{"alias":"SPP2","entrezGeneId":"130367"},{"alias":"SPPase2","entrezGeneId":"130367"},{"alias":"ACVRLK7","entrezGeneId":"130399"},{"alias":"ALK7","entrezGeneId":"130399"},{"alias":"RPSA_8_320","entrezGeneId":"130429"},{"alias":"ODD","entrezGeneId":"130497"},{"alias":"CISD1B","entrezGeneId":"130500"},{"alias":"ZCD1B","entrezGeneId":"130500"},{"alias":"ZNF650","entrezGeneId":"130507"},{"alias":"6530404F10Rik","entrezGeneId":"130535"},{"alias":"HMFT0656","entrezGeneId":"130557"},{"alias":"RP58","entrezGeneId":"130557"},{"alias":"TSARG1","entrezGeneId":"130560"},{"alias":"CT116","entrezGeneId":"130576"},{"alias":"LYPD7","entrezGeneId":"130576"},{"alias":"BLOCK25","entrezGeneId":"130589"},{"alias":"GLAT","entrezGeneId":"130589"},{"alias":"HEL-S-63p","entrezGeneId":"130589"},{"alias":"IBD1","entrezGeneId":"130589"},{"alias":"TMEM198A","entrezGeneId":"130612"},{"alias":"AIRAPL","entrezGeneId":"130617"},{"alias":"RPLP1_1_196","entrezGeneId":"130678"},{"alias":"RPL7_4_218","entrezGeneId":"130728"},{"alias":"TMEM178","entrezGeneId":"130733"},{"alias":"RP11-95H11","entrezGeneId":"130752"},{"alias":"RPL23A_5_234","entrezGeneId":"130773"},{"alias":"C2orf22","entrezGeneId":"130814"},{"alias":"RPL26_6_221","entrezGeneId":"130865"},{"alias":"AHA1","entrezGeneId":"130872"},{"alias":"AHSA2","entrezGeneId":"130872"},{"alias":"Hch1","entrezGeneId":"130872"},{"alias":"Fbx36","entrezGeneId":"130888"},{"alias":"MTERFD2","entrezGeneId":"130916"},{"alias":"C2orf65","entrezGeneId":"130951"},{"alias":"D6Mm5e","entrezGeneId":"130951"},{"alias":"SPATA37","entrezGeneId":"130951"},{"alias":"COPN4","entrezGeneId":"131034"},{"alias":"CPN4","entrezGeneId":"131034"},{"alias":"ELK","entrezGeneId":"131096"},{"alias":"ELK1","entrezGeneId":"131096"},{"alias":"elk3","entrezGeneId":"131096"},{"alias":"Kv12.1","entrezGeneId":"131096"},{"alias":"PAM18","entrezGeneId":"131118"},{"alias":"TIM14","entrezGeneId":"131118"},{"alias":"TIMM14","entrezGeneId":"131118"},{"alias":"C1QTNF15","entrezGeneId":"131149"},{"alias":"C1QTNF16","entrezGeneId":"131149"},{"alias":"EF7","entrezGeneId":"131177"},{"alias":"OIT1","entrezGeneId":"131177"},{"alias":"LYC4","entrezGeneId":"131375"},{"alias":"LYZA","entrezGeneId":"131375"},{"alias":"KBTBD5","entrezGeneId":"131377"},{"alias":"NEM8","entrezGeneId":"131377"},{"alias":"SRYP","entrezGeneId":"131377"},{"alias":"SYRP","entrezGeneId":"131377"},{"alias":"LIN-41","entrezGeneId":"131405"},{"alias":"LIN41","entrezGeneId":"131405"},{"alias":"C3orf40","entrezGeneId":"131408"},{"alias":"FLAT715","entrezGeneId":"131408"},{"alias":"PRO1378","entrezGeneId":"131408"},{"alias":"CD200R","entrezGeneId":"131450"},{"alias":"HCRTR2","entrezGeneId":"131450"},{"alias":"MOX2R","entrezGeneId":"131450"},{"alias":"OX2R","entrezGeneId":"131450"},{"alias":"MIA40","entrezGeneId":"131474"},{"alias":"TIMM40","entrezGeneId":"131474"},{"alias":"DHHC19","entrezGeneId":"131540"},{"alias":"DKFZp667G2110","entrezGeneId":"131544"},{"alias":"vlAKAP","entrezGeneId":"131544"},{"alias":"CLCP1","entrezGeneId":"131566"},{"alias":"ESDN","entrezGeneId":"131566"},{"alias":"LIB","entrezGeneId":"131578"},{"alias":"GPR175","entrezGeneId":"131601"},{"alias":"TMEM227","entrezGeneId":"131601"},{"alias":"TPRA40","entrezGeneId":"131601"},{"alias":"HMFN0320","entrezGeneId":"131669"},{"alias":"UROCD","entrezGeneId":"131669"},{"alias":"C3orf44","entrezGeneId":"131831"},{"alias":"ERICH6A","entrezGeneId":"131831"},{"alias":"FAM194A","entrezGeneId":"131831"},{"alias":"GPRK7","entrezGeneId":"131890"},{"alias":"FAM172B","entrezGeneId":"131909"},{"alias":"UNQ846","entrezGeneId":"131920"},{"alias":"C3orf31","entrezGeneId":"132001"},{"alias":"RAM41","entrezGeneId":"132001"},{"alias":"TAM41","entrezGeneId":"132001"},{"alias":"Z3CXXC1","entrezGeneId":"132112"},{"alias":"HBeAgBP4A","entrezGeneId":"132158"},{"alias":"HBEBP2","entrezGeneId":"132158"},{"alias":"HBEBP4","entrezGeneId":"132158"},{"alias":"PP2C-eta","entrezGeneId":"132160"},{"alias":"PP2CE","entrezGeneId":"132160"},{"alias":"PP2Ceta","entrezGeneId":"132160"},{"alias":"S100A1L","entrezGeneId":"132203"},{"alias":"S100AL","entrezGeneId":"132203"},{"alias":"sentan","entrezGeneId":"132203"},{"alias":"SPO","entrezGeneId":"132204"},{"alias":"C3orf45","entrezGeneId":"132228"},{"alias":"H1.8","entrezGeneId":"132243"},{"alias":"H1oo","entrezGeneId":"132243"},{"alias":"osH1","entrezGeneId":"132243"},{"alias":"CAP-1A","entrezGeneId":"132320"},{"alias":"CAP1A","entrezGeneId":"132320"},{"alias":"BTF3L3","entrezGeneId":"132556"},{"alias":"HUMBTFD","entrezGeneId":"132556"},{"alias":"Tenr","entrezGeneId":"132612"},{"alias":"REX-1","entrezGeneId":"132625"},{"alias":"REX1","entrezGeneId":"132625"},{"alias":"zfp-42","entrezGeneId":"132625"},{"alias":"ZNF754","entrezGeneId":"132625"},{"alias":"CXCDC1","entrezGeneId":"132660"},{"alias":"JC8.6","entrezGeneId":"132660"},{"alias":"MIP120","entrezGeneId":"132660"},{"alias":"TCX1","entrezGeneId":"132660"},{"alias":"Mieap","entrezGeneId":"132671"},{"alias":"SPETEX1","entrezGeneId":"132671"},{"alias":"C4orf32","entrezGeneId":"132720"},{"alias":"GNP2","entrezGeneId":"132789"},{"alias":"SB52","entrezGeneId":"132789"},{"alias":"SPEF1B","entrezGeneId":"132851"},{"alias":"TSARG2","entrezGeneId":"132851"},{"alias":"CPE-BP2","entrezGeneId":"132864"},{"alias":"CPEB-2","entrezGeneId":"132864"},{"alias":"hCPEB-2","entrezGeneId":"132864"},{"alias":"LBN","entrezGeneId":"132884"},{"alias":"WAD","entrezGeneId":"132884"},{"alias":"ACSF4","entrezGeneId":"132949"},{"alias":"LYS2","entrezGeneId":"132949"},{"alias":"NRPS1098","entrezGeneId":"132949"},{"alias":"NRPS998","entrezGeneId":"132949"},{"alias":"GCPHLP","entrezGeneId":"132954"},{"alias":"C4orf28","entrezGeneId":"133015"},{"alias":"NPP6","entrezGeneId":"133121"},{"alias":"SULT1D1","entrezGeneId":"133150"},{"alias":"EEF1AL11","entrezGeneId":"133283"},{"alias":"NHA2","entrezGeneId":"133308"},{"alias":"NHE10","entrezGeneId":"133308"},{"alias":"NHEDC2","entrezGeneId":"133308"},{"alias":"C5orf35","entrezGeneId":"133383"},{"alias":"CRL","entrezGeneId":"133396"},{"alias":"CRL3","entrezGeneId":"133396"},{"alias":"GLM-R","entrezGeneId":"133396"},{"alias":"GLMR","entrezGeneId":"133396"},{"alias":"GPL","entrezGeneId":"133396"},{"alias":"hGLM-R","entrezGeneId":"133396"},{"alias":"IL-31RA","entrezGeneId":"133396"},{"alias":"PLCA2","entrezGeneId":"133396"},{"alias":"PRO21384","entrezGeneId":"133396"},{"alias":"GP70","entrezGeneId":"133418"},{"alias":"CT48","entrezGeneId":"133482"},{"alias":"GST","entrezGeneId":"133482"},{"alias":"OATP-I","entrezGeneId":"133482"},{"alias":"OATP6A1","entrezGeneId":"133482"},{"alias":"OATPY","entrezGeneId":"133482"},{"alias":"ERRL1","entrezGeneId":"133522"},{"alias":"PERC","entrezGeneId":"133522"},{"alias":"PGC-1(beta)","entrezGeneId":"133522"},{"alias":"PGC1B","entrezGeneId":"133522"},{"alias":"HEATR7B2","entrezGeneId":"133558"},{"alias":"SPIF","entrezGeneId":"133558"},{"alias":"RPS10_5_559","entrezGeneId":"133569"},{"alias":"AGRINL","entrezGeneId":"133584"},{"alias":"AGRNL","entrezGeneId":"133584"},{"alias":"PIKA","entrezGeneId":"133584"},{"alias":"RPLP1_4_611","entrezGeneId":"133609"},{"alias":"RPL11_1_612","entrezGeneId":"133629"},{"alias":"C5orf33","entrezGeneId":"133686"},{"alias":"DECRD","entrezGeneId":"133686"},{"alias":"MNADK","entrezGeneId":"133686"},{"alias":"NADKD1","entrezGeneId":"133686"},{"alias":"WHAMM2","entrezGeneId":"133746"},{"alias":"WHDC1L3","entrezGeneId":"133746"},{"alias":"RPL7A_8_583","entrezGeneId":"133748"},{"alias":"RPS18_4_595","entrezGeneId":"133790"},{"alias":"OR5-2","entrezGeneId":"134083"},{"alias":"JS-2","entrezGeneId":"134145"},{"alias":"JS-1","entrezGeneId":"134147"},{"alias":"SPRM-1","entrezGeneId":"134187"},{"alias":"BMFS3","entrezGeneId":"134218"},{"alias":"DNAJA5","entrezGeneId":"134218"},{"alias":"GS3","entrezGeneId":"134218"},{"alias":"JJJ1","entrezGeneId":"134218"},{"alias":"Mt-GrpE#2","entrezGeneId":"134266"},{"alias":"PRP2","entrezGeneId":"134285"},{"alias":"C5orf37","entrezGeneId":"134359"},{"alias":"GALR4","entrezGeneId":"134391"},{"alias":"GALRL","entrezGeneId":"134391"},{"alias":"GPCR","entrezGeneId":"134391"},{"alias":"GPCR-2037","entrezGeneId":"134391"},{"alias":"PGR7","entrezGeneId":"134391"},{"alias":"GLC1G","entrezGeneId":"134430"},{"alias":"TA-WDRP","entrezGeneId":"134430"},{"alias":"TAWDRP","entrezGeneId":"134430"},{"alias":"UTP21","entrezGeneId":"134430"},{"alias":"MRP63P6","entrezGeneId":"134490"},{"alias":"NudCL2","entrezGeneId":"134492"},{"alias":"CPUB1","entrezGeneId":"134510"},{"alias":"Cach","entrezGeneId":"134526"},{"alias":"CACH-1","entrezGeneId":"134526"},{"alias":"STARD15","entrezGeneId":"134526"},{"alias":"THEAL","entrezGeneId":"134526"},{"alias":"ANKRD43","entrezGeneId":"134548"},{"alias":"APXL2","entrezGeneId":"134549"},{"alias":"DEADC1","entrezGeneId":"134637"},{"alias":"dJ20N2","entrezGeneId":"134637"},{"alias":"dJ20N2.1","entrezGeneId":"134637"},{"alias":"TAD2","entrezGeneId":"134637"},{"alias":"C6orf159","entrezGeneId":"134701"},{"alias":"dJ237I15.1","entrezGeneId":"134701"},{"alias":"SCDO6","entrezGeneId":"134701"},{"alias":"AIP70","entrezGeneId":"134728"},{"alias":"SIMPL","entrezGeneId":"134728"},{"alias":"dJ336K20B.2","entrezGeneId":"134756"},{"alias":"RPL29_5_654","entrezGeneId":"134756"},{"alias":"bA160A10.4","entrezGeneId":"134829"},{"alias":"C6orf212","entrezGeneId":"134829"},{"alias":"C6orf213","entrezGeneId":"134829"},{"alias":"RLBP1L2","entrezGeneId":"134829"},{"alias":"TA3","entrezGeneId":"134860"},{"alias":"TAR3","entrezGeneId":"134860"},{"alias":"TAR9","entrezGeneId":"134860"},{"alias":"TRAR3","entrezGeneId":"134860"},{"alias":"TA1","entrezGeneId":"134864"},{"alias":"TAR1","entrezGeneId":"134864"},{"alias":"TRAR1","entrezGeneId":"134864"},{"alias":"LGL3","entrezGeneId":"134957"},{"alias":"LLGL3","entrezGeneId":"134957"},{"alias":"Nbla04300","entrezGeneId":"134957"},{"alias":"dJ187J11.3","entrezGeneId":"135112"},{"alias":"ERAP140","entrezGeneId":"135112"},{"alias":"ESNA1","entrezGeneId":"135112"},{"alias":"Nbla00052","entrezGeneId":"135112"},{"alias":"Nbla10993","entrezGeneId":"135112"},{"alias":"NCOA7-AS","entrezGeneId":"135112"},{"alias":"TLDC4","entrezGeneId":"135112"},{"alias":"HINT4","entrezGeneId":"135114"},{"alias":"GLUP","entrezGeneId":"135138"},{"alias":"HAK005771","entrezGeneId":"135138"},{"alias":"PARK2CRG","entrezGeneId":"135138"},{"alias":"GLCATS","entrezGeneId":"135152"},{"alias":"C6orf57","entrezGeneId":"135154"},{"alias":"Sdh8","entrezGeneId":"135154"},{"alias":"CPAMD7","entrezGeneId":"135228"},{"alias":"p180","entrezGeneId":"135228"},{"alias":"r150","entrezGeneId":"135228"},{"alias":"bA350J20.7","entrezGeneId":"135250"},{"alias":"LETAL","entrezGeneId":"135250"},{"alias":"N2DL-4","entrezGeneId":"135250"},{"alias":"NKG2DL4","entrezGeneId":"135250"},{"alias":"RAET1E2","entrezGeneId":"135250"},{"alias":"RL-4","entrezGeneId":"135250"},{"alias":"ULBP4","entrezGeneId":"135250"},{"alias":"COPS5P","entrezGeneId":"135270"},{"alias":"ACY1L2","entrezGeneId":"135293"},{"alias":"SFRS13B","entrezGeneId":"135295"},{"alias":"SFRS19","entrezGeneId":"135295"},{"alias":"SRrp35","entrezGeneId":"135295"},{"alias":"RNF35","entrezGeneId":"135644"},{"alias":"C6orf37","entrezGeneId":"135656"},{"alias":"DPCR1","entrezGeneId":"135656"},{"alias":"PBLT","entrezGeneId":"135656"},{"alias":"WBSCR28","entrezGeneId":"135886"},{"alias":"TRIM50A","entrezGeneId":"135892"},{"alias":"C7orf34","entrezGeneId":"135927"},{"alias":"ctm-1","entrezGeneId":"135927"},{"alias":"OG-2","entrezGeneId":"135935"},{"alias":"OG2","entrezGeneId":"135935"},{"alias":"OG2X","entrezGeneId":"135935"},{"alias":"POF5","entrezGeneId":"135935"},{"alias":"TCAG_12042","entrezGeneId":"135935"},{"alias":"OR2A14P","entrezGeneId":"135941"},{"alias":"OR2A6","entrezGeneId":"135941"},{"alias":"OST182","entrezGeneId":"135941"},{"alias":"OR2A23P","entrezGeneId":"135942"},{"alias":"OR2A28P","entrezGeneId":"135942"},{"alias":"OR7-3","entrezGeneId":"135946"},{"alias":"OR7-9","entrezGeneId":"135946"},{"alias":"OR7-1","entrezGeneId":"135948"},{"alias":"EMI6","entrezGeneId":"136227"},{"alias":"EMID2","entrezGeneId":"136227"},{"alias":"EMU2","entrezGeneId":"136227"},{"alias":"SH2B","entrezGeneId":"136227"},{"alias":"TRYX2","entrezGeneId":"136242"},{"alias":"BTEB5","entrezGeneId":"136259"},{"alias":"C7orf45","entrezGeneId":"136263"},{"alias":"GCDP","entrezGeneId":"136319"},{"alias":"V-1","entrezGeneId":"136319"},{"alias":"CFAP246","entrezGeneId":"136332"},{"alias":"GLC1F","entrezGeneId":"136371"},{"alias":"TRY3","entrezGeneId":"136540"},{"alias":"PRSS1","entrezGeneId":"136541"},{"alias":"TRY1","entrezGeneId":"136541"},{"alias":"TRYX3","entrezGeneId":"136541"},{"alias":"UNQ2540","entrezGeneId":"136541"},{"alias":"ABHS","entrezGeneId":"136647"},{"alias":"C7orf11","entrezGeneId":"136647"},{"alias":"ORF20","entrezGeneId":"136647"},{"alias":"TTD4","entrezGeneId":"136647"},{"alias":"S4D-SRCRB","entrezGeneId":"136853"},{"alias":"SRCRB-S4D","entrezGeneId":"136853"},{"alias":"SRCRB4D","entrezGeneId":"136853"},{"alias":"ALP1","entrezGeneId":"136991"},{"alias":"ANKL1","entrezGeneId":"136991"},{"alias":"C7orf7","entrezGeneId":"136991"},{"alias":"CT1.19","entrezGeneId":"136991"},{"alias":"GASZ","entrezGeneId":"136991"},{"alias":"Orf3","entrezGeneId":"136991"},{"alias":"CLDNL","entrezGeneId":"137075"},{"alias":"hCG1646163","entrezGeneId":"137075"},{"alias":"HsT23218","entrezGeneId":"137107"},{"alias":"RPL10A_5_891","entrezGeneId":"137107"},{"alias":"C8orf62","entrezGeneId":"137133"},{"alias":"RAM","entrezGeneId":"137196"},{"alias":"FAM92A1","entrezGeneId":"137392"},{"alias":"HCRP1","entrezGeneId":"137492"},{"alias":"PQBP2","entrezGeneId":"137492"},{"alias":"SPG53","entrezGeneId":"137492"},{"alias":"CKS1","entrezGeneId":"137529"},{"alias":"CKS1A","entrezGeneId":"137529"},{"alias":"C8orf38","entrezGeneId":"137682"},{"alias":"STARS","entrezGeneId":"137735"},{"alias":"LYPDC2","entrezGeneId":"137797"},{"alias":"UNQ430","entrezGeneId":"137797"},{"alias":"CSX2","entrezGeneId":"137814"},{"alias":"CTHM","entrezGeneId":"137814"},{"alias":"NKX2F","entrezGeneId":"137814"},{"alias":"NKX4-2","entrezGeneId":"137814"},{"alias":"ZSG1","entrezGeneId":"137868"},{"alias":"ADH8","entrezGeneId":"137872"},{"alias":"HMFT2263","entrezGeneId":"137872"},{"alias":"HOT","entrezGeneId":"137872"},{"alias":"p37","entrezGeneId":"137886"},{"alias":"PMR1","entrezGeneId":"137902"},{"alias":"PRM1","entrezGeneId":"137902"},{"alias":"VPO2","entrezGeneId":"137902"},{"alias":"1-AGPAT 6","entrezGeneId":"137964"},{"alias":"AGPAT6","entrezGeneId":"137964"},{"alias":"LPAAT-zeta","entrezGeneId":"137964"},{"alias":"LPAATZ","entrezGeneId":"137964"},{"alias":"TSARG7","entrezGeneId":"137964"},{"alias":"PRO34692","entrezGeneId":"137970"},{"alias":"Unc5h4","entrezGeneId":"137970"},{"alias":"SLC55A2","entrezGeneId":"137994"},{"alias":"WDR21C","entrezGeneId":"138009"},{"alias":"HNRPCL3","entrezGeneId":"138046"},{"alias":"HGNAT","entrezGeneId":"138050"},{"alias":"MPS3C","entrezGeneId":"138050"},{"alias":"RP73","entrezGeneId":"138050"},{"alias":"TMEM76","entrezGeneId":"138050"},{"alias":"BEND9","entrezGeneId":"138151"},{"alias":"BTBD14","entrezGeneId":"138151"},{"alias":"BTBD14A","entrezGeneId":"138151"},{"alias":"BTBD31","entrezGeneId":"138151"},{"alias":"NAC-2","entrezGeneId":"138151"},{"alias":"RBB","entrezGeneId":"138151"},{"alias":"PIERCE1","entrezGeneId":"138162"},{"alias":"RbEST47","entrezGeneId":"138162"},{"alias":"C9orf41","entrezGeneId":"138199"},{"alias":"UPF0586","entrezGeneId":"138199"},{"alias":"ATP5HP2","entrezGeneId":"138234"},{"alias":"EP17","entrezGeneId":"138307"},{"alias":"LCN5","entrezGeneId":"138307"},{"alias":"C9orf136","entrezGeneId":"138311"},{"alias":"pp6977","entrezGeneId":"138311"},{"alias":"C9orf115","entrezGeneId":"138428"},{"alias":"PTH1","entrezGeneId":"138428"},{"alias":"PIPKH","entrezGeneId":"138429"},{"alias":"TAF(II)210","entrezGeneId":"138474"},{"alias":"TAF2A2","entrezGeneId":"138474"},{"alias":"PTP9Q22","entrezGeneId":"138639"},{"alias":"ANKRD19","entrezGeneId":"138649"},{"alias":"bA526D8.2","entrezGeneId":"138649"},{"alias":"bA296L22.5","entrezGeneId":"138716"},{"alias":"C9orf23","entrezGeneId":"138716"},{"alias":"OR9-11","entrezGeneId":"138799"},{"alias":"OR37H","entrezGeneId":"138802"},{"alias":"OR9-10","entrezGeneId":"138802"},{"alias":"OR37G","entrezGeneId":"138803"},{"alias":"OR9-8","entrezGeneId":"138803"},{"alias":"HSHTPCRX17","entrezGeneId":"138804"},{"alias":"HTPCRX17","entrezGeneId":"138804"},{"alias":"OR2K1","entrezGeneId":"138804"},{"alias":"OR37F","entrezGeneId":"138804"},{"alias":"OR9-7","entrezGeneId":"138804"},{"alias":"OR9-6","entrezGeneId":"138805"},{"alias":"ATP5HP3","entrezGeneId":"138864"},{"alias":"OR9-24","entrezGeneId":"138881"},{"alias":"OR9-23","entrezGeneId":"138882"},{"alias":"OR1-26","entrezGeneId":"138883"},{"alias":"OR1N3","entrezGeneId":"138883"},{"alias":"OR9-22","entrezGeneId":"138883"},{"alias":"NCRNA00118","entrezGeneId":"138948"},{"alias":"CT11.8","entrezGeneId":"139067"},{"alias":"SPANX-N3","entrezGeneId":"139067"},{"alias":"CT7.2","entrezGeneId":"139081"},{"alias":"HCA2","entrezGeneId":"139081"},{"alias":"MAGE-C3","entrezGeneId":"139081"},{"alias":"MAGEC4","entrezGeneId":"139081"},{"alias":"CXorf20","entrezGeneId":"139105"},{"alias":"CT63","entrezGeneId":"139135"},{"alias":"CT64","entrezGeneId":"139135"},{"alias":"OXTES1","entrezGeneId":"139135"},{"alias":"SALL1P","entrezGeneId":"139163"},{"alias":"KIAA1892L","entrezGeneId":"139170"},{"alias":"WDR40B","entrezGeneId":"139170"},{"alias":"CILD36","entrezGeneId":"139212"},{"alias":"CXorf41","entrezGeneId":"139212"},{"alias":"NYSAR97","entrezGeneId":"139212"},{"alias":"CXorf39","entrezGeneId":"139231"},{"alias":"FAM123B","entrezGeneId":"139285"},{"alias":"OSCS","entrezGeneId":"139285"},{"alias":"WTX","entrezGeneId":"139285"},{"alias":"CXorf33","entrezGeneId":"139322"},{"alias":"FAM121A","entrezGeneId":"139322"},{"alias":"Mic27","entrezGeneId":"139322"},{"alias":"UNQ8193","entrezGeneId":"139322"},{"alias":"CXorf43","entrezGeneId":"139324"},{"alias":"D030011N01Rik","entrezGeneId":"139324"},{"alias":"GPR112","entrezGeneId":"139378"},{"alias":"PGR17","entrezGeneId":"139378"},{"alias":"RP1-299I16","entrezGeneId":"139378"},{"alias":"AUTSX4","entrezGeneId":"139411"},{"alias":"FLFL3P","entrezGeneId":"139420"},{"alias":"PPP4R3CP","entrezGeneId":"139420"},{"alias":"SMEK3P","entrezGeneId":"139420"},{"alias":"smk1","entrezGeneId":"139420"},{"alias":"WDR42B","entrezGeneId":"139425"},{"alias":"RPL6_11_1767","entrezGeneId":"139452"},{"alias":"AKAP16B","entrezGeneId":"139516"},{"alias":"AKAP16BP","entrezGeneId":"139516"},{"alias":"CT18","entrezGeneId":"139538"},{"alias":"NA88A","entrezGeneId":"139538"},{"alias":"VENTX2P1","entrezGeneId":"139538"},{"alias":"DUBA2","entrezGeneId":"139562"},{"alias":"HSHIN6","entrezGeneId":"139562"},{"alias":"FUR1","entrezGeneId":"139596"},{"alias":"UPP","entrezGeneId":"139596"},{"alias":"HCA3","entrezGeneId":"139599"},{"alias":"FOXN6","entrezGeneId":"139628"},{"alias":"BSTK3","entrezGeneId":"139728"},{"alias":"CaMK1b","entrezGeneId":"139728"},{"alias":"ZNF897","entrezGeneId":"139735"},{"alias":"AIP1","entrezGeneId":"139741"},{"alias":"ARIP1","entrezGeneId":"139741"},{"alias":"ARPT1","entrezGeneId":"139741"},{"alias":"HSD27","entrezGeneId":"139741"},{"alias":"GPCR2","entrezGeneId":"139760"},{"alias":"CT16.6","entrezGeneId":"139793"},{"alias":"GAGED1","entrezGeneId":"139793"},{"alias":"PAGE-3","entrezGeneId":"139793"},{"alias":"CXorf55","entrezGeneId":"139804"},{"alias":"ACG","entrezGeneId":"139818"},{"alias":"bB128O4.1","entrezGeneId":"139818"},{"alias":"ZIZ2","entrezGeneId":"139818"},{"alias":"TDRD28","entrezGeneId":"139886"},{"alias":"RPS4Y2P","entrezGeneId":"140032"},{"alias":"RBMY2","entrezGeneId":"140123"},{"alias":"KAP13.1","entrezGeneId":"140258"},{"alias":"KRTAP13.1","entrezGeneId":"140258"},{"alias":"C21orf77","entrezGeneId":"140290"},{"alias":"PRED77","entrezGeneId":"140290"},{"alias":"TCP10A-2","entrezGeneId":"140290"},{"alias":"bA10G5.1","entrezGeneId":"140432"},{"alias":"RNF161","entrezGeneId":"140432"},{"alias":"ZNF183L1","entrezGeneId":"140432"},{"alias":"MUC-17","entrezGeneId":"140453"},{"alias":"MUC-3","entrezGeneId":"140453"},{"alias":"MUC3","entrezGeneId":"140453"},{"alias":"ASB-5","entrezGeneId":"140458"},{"alias":"PP14212","entrezGeneId":"140461"},{"alias":"NCRNA00195","entrezGeneId":"140464"},{"alias":"MLC1SA","entrezGeneId":"140465"},{"alias":"ZFEND","entrezGeneId":"140467"},{"alias":"COX11","entrezGeneId":"140468"},{"alias":"COX11P","entrezGeneId":"140468"},{"alias":"FKSG33","entrezGeneId":"140545"},{"alias":"HSD15","entrezGeneId":"140545"},{"alias":"LMBR2","entrezGeneId":"140545"},{"alias":"A3D","entrezGeneId":"140564"},{"alias":"APOBEC3DE","entrezGeneId":"140564"},{"alias":"APOBEC3E","entrezGeneId":"140564"},{"alias":"ARP6","entrezGeneId":"140564"},{"alias":"AAG13","entrezGeneId":"140576"},{"alias":"DT1P1A7","entrezGeneId":"140576"},{"alias":"S100F","entrezGeneId":"140576"},{"alias":"C21orf68","entrezGeneId":"140578"},{"alias":"MT75","entrezGeneId":"140578"},{"alias":"PRED12","entrezGeneId":"140578"},{"alias":"BD-4","entrezGeneId":"140596"},{"alias":"DEFB-4","entrezGeneId":"140596"},{"alias":"DEFB104","entrezGeneId":"140596"},{"alias":"DEFB4","entrezGeneId":"140596"},{"alias":"hBD-4","entrezGeneId":"140596"},{"alias":"my048","entrezGeneId":"140597"},{"alias":"MY0876G05","entrezGeneId":"140597"},{"alias":"WEX1","entrezGeneId":"140597"},{"alias":"COX6BP-1","entrezGeneId":"140603"},{"alias":"COX6BP1","entrezGeneId":"140603"},{"alias":"SELM","entrezGeneId":"140606"},{"alias":"SEPM","entrezGeneId":"140606"},{"alias":"mkr5","entrezGeneId":"140612"},{"alias":"FAU1P","entrezGeneId":"140623"},{"alias":"RPS30_2_1613","entrezGeneId":"140623"},{"alias":"Arp-T2","entrezGeneId":"140625"},{"alias":"ARPM2","entrezGeneId":"140625"},{"alias":"ARPT2","entrezGeneId":"140625"},{"alias":"HARPM2","entrezGeneId":"140625"},{"alias":"bB379O24.1","entrezGeneId":"140628"},{"alias":"CHTD5","entrezGeneId":"140628"},{"alias":"GATAS","entrezGeneId":"140628"},{"alias":"RPL21_58_1548","entrezGeneId":"140660"},{"alias":"bA348I14.3","entrezGeneId":"140678"},{"alias":"MLLT10L","entrezGeneId":"140678"},{"alias":"VGAT","entrezGeneId":"140679"},{"alias":"VIAAT","entrezGeneId":"140679"},{"alias":"dJ1103G7.2","entrezGeneId":"140680"},{"alias":"bA49G10.1","entrezGeneId":"140683"},{"alias":"C20orf70","entrezGeneId":"140683"},{"alias":"PSP","entrezGeneId":"140683"},{"alias":"SPLUNC2","entrezGeneId":"140683"},{"alias":"BTBD4","entrezGeneId":"140685"},{"alias":"BZEL","entrezGeneId":"140685"},{"alias":"dJ583P15.7","entrezGeneId":"140685"},{"alias":"dJ583P15.8","entrezGeneId":"140685"},{"alias":"RINZF","entrezGeneId":"140685"},{"alias":"ZNF340","entrezGeneId":"140685"},{"alias":"dJ447F3.3","entrezGeneId":"140686"},{"alias":"WAP14","entrezGeneId":"140686"},{"alias":"C20orf105","entrezGeneId":"140687"},{"alias":"dJ1153D9.2","entrezGeneId":"140687"},{"alias":"gcnt","entrezGeneId":"140687"},{"alias":"C20orf112","entrezGeneId":"140688"},{"alias":"C20orf113","entrezGeneId":"140688"},{"alias":"CBLNL1","entrezGeneId":"140689"},{"alias":"BORIS","entrezGeneId":"140690"},{"alias":"CT27","entrezGeneId":"140690"},{"alias":"CTCF-T","entrezGeneId":"140690"},{"alias":"dJ579F20.2","entrezGeneId":"140690"},{"alias":"HMGB1L1","entrezGeneId":"140690"},{"alias":"HSD-34","entrezGeneId":"140691"},{"alias":"HSD34","entrezGeneId":"140691"},{"alias":"RNF36","entrezGeneId":"140691"},{"alias":"Trif","entrezGeneId":"140691"},{"alias":"dJ901O8.2","entrezGeneId":"140692"},{"alias":"bA550O8.1","entrezGeneId":"140695"},{"alias":"bA563A22B.2","entrezGeneId":"140696"},{"alias":"RPL37_9_1698","entrezGeneId":"140696"},{"alias":"bA80K6.3","entrezGeneId":"140697"},{"alias":"RPL36_9_1713","entrezGeneId":"140697"},{"alias":"C20orf131","entrezGeneId":"140699"},{"alias":"C20orf132","entrezGeneId":"140699"},{"alias":"dJ621N11.3","entrezGeneId":"140699"},{"alias":"dJ621N11.4","entrezGeneId":"140699"},{"alias":"C20orf136","entrezGeneId":"140700"},{"alias":"dJ591C20","entrezGeneId":"140700"},{"alias":"dJ591C20.7","entrezGeneId":"140700"},{"alias":"C20orf135","entrezGeneId":"140701"},{"alias":"dJ591C20.1","entrezGeneId":"140701"},{"alias":"C20orf160","entrezGeneId":"140706"},{"alias":"dJ310O13.5","entrezGeneId":"140706"},{"alias":"BNAS1","entrezGeneId":"140707"},{"alias":"HCCR-1","entrezGeneId":"140707"},{"alias":"HCCR-2","entrezGeneId":"140707"},{"alias":"HCCRBP-1","entrezGeneId":"140707"},{"alias":"HCCRBP-3","entrezGeneId":"140707"},{"alias":"KG19","entrezGeneId":"140707"},{"alias":"C20orf117","entrezGeneId":"140710"},{"alias":"KIAA0889","entrezGeneId":"140710"},{"alias":"SOGA","entrezGeneId":"140710"},{"alias":"C20orf118","entrezGeneId":"140711"},{"alias":"bA332A4.2","entrezGeneId":"140713"},{"alias":"bA332A4.3","entrezGeneId":"140714"},{"alias":"RPS27AP","entrezGeneId":"140714"},{"alias":"RPS27A_8_1699","entrezGeneId":"140714"},{"alias":"bA352D3.1","entrezGeneId":"140715"},{"alias":"RPL21_65_1679","entrezGeneId":"140715"},{"alias":"bA456N23.1","entrezGeneId":"140716"},{"alias":"RPL35A_15_1710","entrezGeneId":"140716"},{"alias":"dJ1013A22.4","entrezGeneId":"140717"},{"alias":"RPL37A_5_1704","entrezGeneId":"140717"},{"alias":"dJ1018D12.4","entrezGeneId":"140718"},{"alias":"RPL31_24_1693","entrezGeneId":"140718"},{"alias":"dJ1167H4.5","entrezGeneId":"140719"},{"alias":"RPL39_20_1715","entrezGeneId":"140719"},{"alias":"C20orf190","entrezGeneId":"140730"},{"alias":"RIM 4","entrezGeneId":"140730"},{"alias":"RIM-4","entrezGeneId":"140730"},{"alias":"RIM4","entrezGeneId":"140730"},{"alias":"RIM4-gamma","entrezGeneId":"140730"},{"alias":"RIM4gamma","entrezGeneId":"140730"},{"alias":"bA196N14.3","entrezGeneId":"140731"},{"alias":"C20orf86","entrezGeneId":"140731"},{"alias":"dJ726C3.1","entrezGeneId":"140732"},{"alias":"SPAG4L","entrezGeneId":"140732"},{"alias":"SPGF16","entrezGeneId":"140732"},{"alias":"TSARG4","entrezGeneId":"140732"},{"alias":"C20orf133","entrezGeneId":"140733"},{"alias":"C2orf133","entrezGeneId":"140733"},{"alias":"Dlc2","entrezGeneId":"140735"},{"alias":"DNCL1B","entrezGeneId":"140735"},{"alias":"RSPH22","entrezGeneId":"140735"},{"alias":"PR","entrezGeneId":"140738"},{"alias":"PR1","entrezGeneId":"140738"},{"alias":"NCE2","entrezGeneId":"140739"},{"alias":"dJ1178H5.1","entrezGeneId":"140748"},{"alias":"RPL17_18_1690","entrezGeneId":"140748"},{"alias":"dJ461P17.5","entrezGeneId":"140749"},{"alias":"RPL5_14_1705","entrezGeneId":"140749"},{"alias":"dJ477O4.3","entrezGeneId":"140750"},{"alias":"RPL36_7_1697","entrezGeneId":"140750"},{"alias":"dJ530I15.5","entrezGeneId":"140751"},{"alias":"RPL36_8_1711","entrezGeneId":"140751"},{"alias":"dJ531H16.4","entrezGeneId":"140752"},{"alias":"RPS27A_7_1686","entrezGeneId":"140752"},{"alias":"dJ553F4.5","entrezGeneId":"140753"},{"alias":"RPL31_25_1695","entrezGeneId":"140753"},{"alias":"dJ631M13.3","entrezGeneId":"140754"},{"alias":"dJ64K7.1","entrezGeneId":"140755"},{"alias":"RPS2_26_1696","entrezGeneId":"140755"},{"alias":"dJ823N20.2","entrezGeneId":"140756"},{"alias":"RPL7AL4","entrezGeneId":"140756"},{"alias":"RPL7A_32_1700","entrezGeneId":"140756"},{"alias":"dJ836N17.3","entrezGeneId":"140757"},{"alias":"RPL24P1","entrezGeneId":"140757"},{"alias":"dJ858M22.1","entrezGeneId":"140758"},{"alias":"RPS10_15_1685","entrezGeneId":"140758"},{"alias":"dJ860F19.2","entrezGeneId":"140759"},{"alias":"RPL19_11_1678","entrezGeneId":"140759"},{"alias":"dJ872K7.2","entrezGeneId":"140760"},{"alias":"RPL24_5_1691","entrezGeneId":"140760"},{"alias":"dJ927M24.3","entrezGeneId":"140761"},{"alias":"RPS3_4_1701","entrezGeneId":"140761"},{"alias":"p24","entrezGeneId":"140767"},{"alias":"VMP","entrezGeneId":"140767"},{"alias":"NCRNA00034","entrezGeneId":"140771"},{"alias":"RPL10_5_1358","entrezGeneId":"140801"},{"alias":"CHAK2","entrezGeneId":"140803"},{"alias":"HMGX","entrezGeneId":"140803"},{"alias":"HOMG","entrezGeneId":"140803"},{"alias":"HOMG1","entrezGeneId":"140803"},{"alias":"HSH","entrezGeneId":"140803"},{"alias":"K6irs","entrezGeneId":"140807"},{"alias":"K6IRS2","entrezGeneId":"140807"},{"alias":"KRT6","entrezGeneId":"140807"},{"alias":"KRT6IRS2","entrezGeneId":"140807"},{"alias":"C20orf139","entrezGeneId":"140809"},{"alias":"Npn3","entrezGeneId":"140809"},{"alias":"SRX","entrezGeneId":"140809"},{"alias":"SRX1","entrezGeneId":"140809"},{"alias":"SRS","entrezGeneId":"140821"},{"alias":"bA353C18.2","entrezGeneId":"140823"},{"alias":"C20orf52","entrezGeneId":"140823"},{"alias":"MTGM","entrezGeneId":"140823"},{"alias":"MTGMP","entrezGeneId":"140823"},{"alias":"C20orf163","entrezGeneId":"140825"},{"alias":"OZZ","entrezGeneId":"140825"},{"alias":"OZZ-E3","entrezGeneId":"140825"},{"alias":"ALIEN","entrezGeneId":"140828"},{"alias":"C20orf56","entrezGeneId":"140828"},{"alias":"DEANR1","entrezGeneId":"140828"},{"alias":"HCCDR1","entrezGeneId":"140828"},{"alias":"NCRNA00261","entrezGeneId":"140828"},{"alias":"onco-lncRNA-17","entrezGeneId":"140828"},{"alias":"TCONS_00027846","entrezGeneId":"140828"},{"alias":"C20orf164","entrezGeneId":"140831"},{"alias":"PPP1R174","entrezGeneId":"140831"},{"alias":"C20orf146","entrezGeneId":"140832"},{"alias":"dJ688G8.3","entrezGeneId":"140832"},{"alias":"WAP10","entrezGeneId":"140832"},{"alias":"C20orf62","entrezGeneId":"140834"},{"alias":"dJ1013A22.3","entrezGeneId":"140834"},{"alias":"BAF-L","entrezGeneId":"140836"},{"alias":"BAF2","entrezGeneId":"140836"},{"alias":"BAFL","entrezGeneId":"140836"},{"alias":"C20orf179","entrezGeneId":"140836"},{"alias":"C20orf147","entrezGeneId":"140838"},{"alias":"dJ694B14.3","entrezGeneId":"140838"},{"alias":"HDHD4","entrezGeneId":"140838"},{"alias":"C20orf120","entrezGeneId":"140846"},{"alias":"dJ614O4.3","entrezGeneId":"140846"},{"alias":"NCRNA00154","entrezGeneId":"140846"},{"alias":"bA467D7.4","entrezGeneId":"140848"},{"alias":"C20orf68","entrezGeneId":"140848"},{"alias":"NCRNA00227","entrezGeneId":"140848"},{"alias":"bA476I15.3","entrezGeneId":"140849"},{"alias":"C20orf69","entrezGeneId":"140849"},{"alias":"NCRNA00266","entrezGeneId":"140849"},{"alias":"NCRNA00266-1","entrezGeneId":"140849"},{"alias":"bA530N10.2","entrezGeneId":"140850"},{"alias":"C20orf73","entrezGeneId":"140850"},{"alias":"DEF-27","entrezGeneId":"140850"},{"alias":"DEFB-27","entrezGeneId":"140850"},{"alias":"DEFB27","entrezGeneId":"140850"},{"alias":"hBD-27","entrezGeneId":"140850"},{"alias":"C20orf127","entrezGeneId":"140851"},{"alias":"dJ614O4.6","entrezGeneId":"140851"},{"alias":"MTL4","entrezGeneId":"140851"},{"alias":"C20orf79","entrezGeneId":"140856"},{"alias":"dJ1068E13.2","entrezGeneId":"140856"},{"alias":"HSD22","entrezGeneId":"140856"},{"alias":"dJ353C17.2","entrezGeneId":"140857"},{"alias":"bA149I18.1","entrezGeneId":"140862"},{"alias":"C20orf82","entrezGeneId":"140862"},{"alias":"dJ1077I2.1","entrezGeneId":"140862"},{"alias":"ISM","entrezGeneId":"140862"},{"alias":"Isthmin","entrezGeneId":"140862"},{"alias":"C20orf168","entrezGeneId":"140863"},{"alias":"dJ447F3.6","entrezGeneId":"140863"},{"alias":"C20orf90","entrezGeneId":"140865"},{"alias":"C20orf171","entrezGeneId":"140870"},{"alias":"dJ461P17.11","entrezGeneId":"140870"},{"alias":"HEL-S-295","entrezGeneId":"140870"},{"alias":"WAP6","entrezGeneId":"140870"},{"alias":"C20orf189","entrezGeneId":"140871"},{"alias":"dJ760C5.1","entrezGeneId":"140871"},{"alias":"dJ477O4.4","entrezGeneId":"140873"},{"alias":"C20orf93","entrezGeneId":"140875"},{"alias":"dJ1093G12.6","entrezGeneId":"140875"},{"alias":"NCRNA00028","entrezGeneId":"140875"},{"alias":"C20orf175","entrezGeneId":"140876"},{"alias":"C20orf176","entrezGeneId":"140876"},{"alias":"FAM65C","entrezGeneId":"140876"},{"alias":"CST8L","entrezGeneId":"140880"},{"alias":"CTES2","entrezGeneId":"140880"},{"alias":"dJ322G13.6","entrezGeneId":"140880"},{"alias":"SC13","entrezGeneId":"140880"},{"alias":"bA530N10.3","entrezGeneId":"140881"},{"alias":"C20orf87","entrezGeneId":"140881"},{"alias":"DEFB-29","entrezGeneId":"140881"},{"alias":"DEFB29","entrezGeneId":"140881"},{"alias":"hBD-29","entrezGeneId":"140881"},{"alias":"5'OY11.1","entrezGeneId":"140883"},{"alias":"D87009.C22.3","entrezGeneId":"140883"},{"alias":"SUHW2","entrezGeneId":"140883"},{"alias":"ZNF279","entrezGeneId":"140883"},{"alias":"ZNF632","entrezGeneId":"140883"},{"alias":"BIT","entrezGeneId":"140885"},{"alias":"CD172A","entrezGeneId":"140885"},{"alias":"MFR","entrezGeneId":"140885"},{"alias":"MYD-1","entrezGeneId":"140885"},{"alias":"P84","entrezGeneId":"140885"},{"alias":"PTPNS1","entrezGeneId":"140885"},{"alias":"SHPS1","entrezGeneId":"140885"},{"alias":"SIRP","entrezGeneId":"140885"},{"alias":"PABP5","entrezGeneId":"140886"},{"alias":"SFRS12","entrezGeneId":"140890"},{"alias":"SRrp508","entrezGeneId":"140890"},{"alias":"SRrp86","entrezGeneId":"140890"},{"alias":"C20orf151","entrezGeneId":"140893"},{"alias":"C20orf152","entrezGeneId":"140894"},{"alias":"CNMPD1","entrezGeneId":"140894"},{"alias":"bA101E14.1","entrezGeneId":"140895"},{"alias":"HSPEP1","entrezGeneId":"140895"},{"alias":"CLIK1","entrezGeneId":"140901"},{"alias":"STK35L1","entrezGeneId":"140901"},{"alias":"dJ881L22.3","entrezGeneId":"140902"},{"alias":"dJ342K12.1","entrezGeneId":"140909"},{"alias":"MTCO2L","entrezGeneId":"140909"},{"alias":"CRP","entrezGeneId":"140913"},{"alias":"dJ823G15.1","entrezGeneId":"140913"},{"alias":"PPIAL2","entrezGeneId":"140913"},{"alias":"PPIP10","entrezGeneId":"140913"},{"alias":"C5orf20","entrezGeneId":"140947"},{"alias":"DCNP1","entrezGeneId":"140947"},{"alias":"ZZANK1","entrezGeneId":"142678"},{"alias":"ZZZ5","entrezGeneId":"142678"},{"alias":"DUSP17","entrezGeneId":"142679"},{"alias":"LMWDSP3","entrezGeneId":"142679"},{"alias":"SKRP1","entrezGeneId":"142679"},{"alias":"TS-DSP1","entrezGeneId":"142679"},{"alias":"HHRH","entrezGeneId":"142680"},{"alias":"NPTIIc","entrezGeneId":"142680"},{"alias":"HL-2","entrezGeneId":"142683"},{"alias":"HL2","entrezGeneId":"142683"},{"alias":"RAR2","entrezGeneId":"142684"},{"alias":"RAR2A","entrezGeneId":"142684"},{"alias":"bA310E22.3","entrezGeneId":"142827"},{"alias":"C10orf129","entrezGeneId":"142827"},{"alias":"HEL-177","entrezGeneId":"142891"},{"alias":"SMSr","entrezGeneId":"142891"},{"alias":"bA425M17.2","entrezGeneId":"142910"},{"alias":"LIPL1","entrezGeneId":"142910"},{"alias":"CFLP1","entrezGeneId":"142913"},{"alias":"PUS4","entrezGeneId":"142940"},{"alias":"PDZD5C","entrezGeneId":"143162"},{"alias":"PDZK4","entrezGeneId":"143162"},{"alias":"PDZK5C","entrezGeneId":"143162"},{"alias":"MMDS3","entrezGeneId":"143187"},{"alias":"MVti1","entrezGeneId":"143187"},{"alias":"Vti1-rp2","entrezGeneId":"143187"},{"alias":"VTI1RP2","entrezGeneId":"143187"},{"alias":"DPY30D1","entrezGeneId":"143241"},{"alias":"bA342M3.3","entrezGeneId":"143244"},{"alias":"EIF5AP1","entrezGeneId":"143244"},{"alias":"C10orf13","entrezGeneId":"143282"},{"alias":"FGF-BP3","entrezGeneId":"143282"},{"alias":"EIF3EIPP2","entrezGeneId":"143341"},{"alias":"EIF3S6IPP2","entrezGeneId":"143341"},{"alias":"C10orf46","entrezGeneId":"143384"},{"alias":"CAC1","entrezGeneId":"143384"},{"alias":"LRAD3","entrezGeneId":"143458"},{"alias":"PSMA7L","entrezGeneId":"143471"},{"alias":"OR11-3","entrezGeneId":"143496"},{"alias":"NOV1","entrezGeneId":"143501"},{"alias":"OR11-12","entrezGeneId":"143502"},{"alias":"OR52I1","entrezGeneId":"143502"},{"alias":"D-GPCR","entrezGeneId":"143503"},{"alias":"DGPCR","entrezGeneId":"143503"},{"alias":"GPR136","entrezGeneId":"143503"},{"alias":"GPR164","entrezGeneId":"143503"},{"alias":"OR51E1P","entrezGeneId":"143503"},{"alias":"OR52A3P","entrezGeneId":"143503"},{"alias":"POGR","entrezGeneId":"143503"},{"alias":"PSGR2","entrezGeneId":"143503"},{"alias":"MUC-15","entrezGeneId":"143662"},{"alias":"PAS3","entrezGeneId":"143662"},{"alias":"PASIII","entrezGeneId":"143662"},{"alias":"SEST3","entrezGeneId":"143686"},{"alias":"HIWI2","entrezGeneId":"143689"},{"alias":"MIWI2","entrezGeneId":"143689"},{"alias":"AD031","entrezGeneId":"143872"},{"alias":"GRAF3","entrezGeneId":"143872"},{"alias":"TMEM133","entrezGeneId":"143872"},{"alias":"BKLHD3","entrezGeneId":"143879"},{"alias":"HBP21","entrezGeneId":"143941"},{"alias":"C11orf84","entrezGeneId":"144097"},{"alias":"SPIN-DOC","entrezGeneId":"144097"},{"alias":"FAM10A5","entrezGeneId":"144106"},{"alias":"Spt2","entrezGeneId":"144108"},{"alias":"JCG6","entrezGeneId":"144124"},{"alias":"OR10A1","entrezGeneId":"144124"},{"alias":"OR11-403","entrezGeneId":"144124"},{"alias":"OR11-79","entrezGeneId":"144125"},{"alias":"OR2AG3","entrezGeneId":"144125"},{"alias":"C11orf47","entrezGeneId":"144132"},{"alias":"CCDC35","entrezGeneId":"144132"},{"alias":"DHCD1","entrezGeneId":"144132"},{"alias":"DNHD1L","entrezGeneId":"144132"},{"alias":"EPM1B","entrezGeneId":"144165"},{"alias":"RILP","entrezGeneId":"144165"},{"alias":"HMFT1272","entrezGeneId":"144193"},{"alias":"GLUT14","entrezGeneId":"144195"},{"alias":"SLC2A3P3","entrezGeneId":"144195"},{"alias":"ALG10","entrezGeneId":"144245"},{"alias":"KCR1","entrezGeneId":"144245"},{"alias":"CFM2","entrezGeneId":"144347"},{"alias":"FAM101A","entrezGeneId":"144347"},{"alias":"ZFOC1","entrezGeneId":"144348"},{"alias":"ZNF176","entrezGeneId":"144348"},{"alias":"C12orf67","entrezGeneId":"144360"},{"alias":"FAM191B","entrezGeneId":"144360"},{"alias":"LYRM5","entrezGeneId":"144363"},{"alias":"CaM-IP4","entrezGeneId":"144406"},{"alias":"CFAP251","entrezGeneId":"144406"},{"alias":"VMD2L3","entrezGeneId":"144453"},{"alias":"CCDC41-AS1","entrezGeneId":"144486"},{"alias":"CEP83-AS1","entrezGeneId":"144486"},{"alias":"KB20","entrezGeneId":"144501"},{"alias":"C12orf55","entrezGeneId":"144535"},{"alias":"C12orf63","entrezGeneId":"144535"},{"alias":"CPAMD9","entrezGeneId":"144568"},{"alias":"p170","entrezGeneId":"144568"},{"alias":"bcm1298","entrezGeneId":"144581"},{"alias":"RPL14L","entrezGeneId":"144581"},{"alias":"RPL14_1_1246","entrezGeneId":"144581"},{"alias":"FAM10A3","entrezGeneId":"144638"},{"alias":"FAM10A3P","entrezGeneId":"144638"},{"alias":"Fbl14","entrezGeneId":"144699"},{"alias":"HMGA1L3","entrezGeneId":"144712"},{"alias":"HMGIYL3","entrezGeneId":"144712"},{"alias":"FAM109A","entrezGeneId":"144717"},{"alias":"IPIP27A","entrezGeneId":"144717"},{"alias":"SES1","entrezGeneId":"144717"},{"alias":"C13orf30","entrezGeneId":"144809"},{"alias":"C13orf31","entrezGeneId":"144811"},{"alias":"FAMIN","entrezGeneId":"144811"},{"alias":"NCRNA00330","entrezGeneId":"144817"},{"alias":"ESTRRA","entrezGeneId":"144832"},{"alias":"bA76K19.2","entrezGeneId":"144847"},{"alias":"ESRRAP","entrezGeneId":"144847"},{"alias":"LINC00344","entrezGeneId":"144920"},{"alias":"NCRNA00343","entrezGeneId":"144920"},{"alias":"NCRNA00344","entrezGeneId":"144920"},{"alias":"FAM10A4","entrezGeneId":"145165"},{"alias":"FAM10A4P","entrezGeneId":"145165"},{"alias":"B3GALTL","entrezGeneId":"145173"},{"alias":"B3Glc-T","entrezGeneId":"145173"},{"alias":"B3GTL","entrezGeneId":"145173"},{"alias":"beta3Glc-T","entrezGeneId":"145173"},{"alias":"Gal-T","entrezGeneId":"145173"},{"alias":"C14orf72","entrezGeneId":"145200"},{"alias":"NCRNA00239","entrezGeneId":"145200"},{"alias":"LCA13","entrezGeneId":"145226"},{"alias":"RP53","entrezGeneId":"145226"},{"alias":"SDR7C2","entrezGeneId":"145226"},{"alias":"RPL24_2_1385","entrezGeneId":"145235"},{"alias":"ADAM21P","entrezGeneId":"145241"},{"alias":"C14orf63","entrezGeneId":"145249"},{"alias":"SAMS","entrezGeneId":"145258"},{"alias":"LAMR1P4","entrezGeneId":"145259"},{"alias":"RPSA_27_1403","entrezGeneId":"145259"},{"alias":"OL-64","entrezGeneId":"145264"},{"alias":"PRIMA","entrezGeneId":"145270"},{"alias":"CCDC193","entrezGeneId":"145282"},{"alias":"NUP50P","entrezGeneId":"145375"},{"alias":"C14orf50","entrezGeneId":"145376"},{"alias":"NAT-1","entrezGeneId":"145389"},{"alias":"SNAT6","entrezGeneId":"145389"},{"alias":"C14orf37","entrezGeneId":"145407"},{"alias":"c14_5376","entrezGeneId":"145407"},{"alias":"UT2","entrezGeneId":"145407"},{"alias":"C14orf82","entrezGeneId":"145438"},{"alias":"BEM46L3","entrezGeneId":"145447"},{"alias":"C14orf29","entrezGeneId":"145447"},{"alias":"c14_5314","entrezGeneId":"145447"},{"alias":"HEL-S-298","entrezGeneId":"145482"},{"alias":"PGR2","entrezGeneId":"145482"},{"alias":"ZADH1","entrezGeneId":"145482"},{"alias":"C14orf44","entrezGeneId":"145483"},{"alias":"c14_5547","entrezGeneId":"145483"},{"alias":"C14orf166B","entrezGeneId":"145497"},{"alias":"LRRC74","entrezGeneId":"145497"},{"alias":"RPLP1_4_1394","entrezGeneId":"145499"},{"alias":"TAIL1","entrezGeneId":"145501"},{"alias":"THSD3","entrezGeneId":"145501"},{"alias":"C14orf145","entrezGeneId":"145508"},{"alias":"C14orf61","entrezGeneId":"145508"},{"alias":"LEDP/132","entrezGeneId":"145508"},{"alias":"FN6PASE","entrezGeneId":"145553"},{"alias":"MDP-1","entrezGeneId":"145553"},{"alias":"c14_5685","entrezGeneId":"145567"},{"alias":"TTC7L1","entrezGeneId":"145567"},{"alias":"C14orf146","entrezGeneId":"145581"},{"alias":"FIGLER8","entrezGeneId":"145581"},{"alias":"SALM5","entrezGeneId":"145581"},{"alias":"D15S227E","entrezGeneId":"145624"},{"alias":"PAR-1","entrezGeneId":"145624"},{"alias":"PAR1","entrezGeneId":"145624"},{"alias":"C15orf43","entrezGeneId":"145645"},{"alias":"FAM148A","entrezGeneId":"145741"},{"alias":"NLF1","entrezGeneId":"145741"},{"alias":"RPS3A-like","entrezGeneId":"145767"},{"alias":"RPS3A_20_1440","entrezGeneId":"145767"},{"alias":"gcom","entrezGeneId":"145781"},{"alias":"Gcom2","entrezGeneId":"145781"},{"alias":"GRINL1A","entrezGeneId":"145781"},{"alias":"MYZAP","entrezGeneId":"145781"},{"alias":"MYZAP-POLR2M","entrezGeneId":"145781"},{"alias":"EXLD1","entrezGeneId":"145864"},{"alias":"HsT19883","entrezGeneId":"145864"},{"alias":"bHLHc6","entrezGeneId":"145873"},{"alias":"SCDO2","entrezGeneId":"145873"},{"alias":"TMCO5","entrezGeneId":"145942"},{"alias":"SRG8","entrezGeneId":"145946"},{"alias":"HRG4","entrezGeneId":"145957"},{"alias":"NCRNA00052","entrezGeneId":"145978"},{"alias":"TMEM83","entrezGeneId":"145978"},{"alias":"Zfp690","entrezGeneId":"146050"},{"alias":"ZNF690","entrezGeneId":"146050"},{"alias":"RPS3A_22_1428","entrezGeneId":"146053"},{"alias":"SCA11","entrezGeneId":"146057"},{"alias":"TTBK","entrezGeneId":"146057"},{"alias":"CDA1","entrezGeneId":"146059"},{"alias":"CDAI","entrezGeneId":"146059"},{"alias":"CDAN1A","entrezGeneId":"146059"},{"alias":"DLT","entrezGeneId":"146059"},{"alias":"PRO1295","entrezGeneId":"146059"},{"alias":"RPL7_27_1478","entrezGeneId":"146110"},{"alias":"FVH2","entrezGeneId":"146167"},{"alias":"CT108","entrezGeneId":"146183"},{"alias":"DFNB22","entrezGeneId":"146183"},{"alias":"FIK","entrezGeneId":"146198"},{"alias":"NK10","entrezGeneId":"146198"},{"alias":"zfp-90","entrezGeneId":"146198"},{"alias":"ZNF756","entrezGeneId":"146198"},{"alias":"CARMIL2b","entrezGeneId":"146206"},{"alias":"LRRC16C","entrezGeneId":"146206"},{"alias":"RLTPR","entrezGeneId":"146206"},{"alias":"CKLFSF4","entrezGeneId":"146223"},{"alias":"CKLFSF2","entrezGeneId":"146225"},{"alias":"BEAN","entrezGeneId":"146227"},{"alias":"SCA31","entrezGeneId":"146227"},{"alias":"CT149","entrezGeneId":"146279"},{"alias":"C16orf11","entrezGeneId":"146325"},{"alias":"LA16c-366D1.2","entrezGeneId":"146325"},{"alias":"C16orf22","entrezGeneId":"146330"},{"alias":"c380A1.1","entrezGeneId":"146330"},{"alias":"Fbl16","entrezGeneId":"146330"},{"alias":"PRO19651","entrezGeneId":"146395"},{"alias":"C16orf77","entrezGeneId":"146433"},{"alias":"IL-34","entrezGeneId":"146433"},{"alias":"HIT-4","entrezGeneId":"146434"},{"alias":"BICDR-2","entrezGeneId":"146439"},{"alias":"BICDR2","entrezGeneId":"146439"},{"alias":"CCDC64B","entrezGeneId":"146439"},{"alias":"p24g5","entrezGeneId":"146456"},{"alias":"PRO34237","entrezGeneId":"146456"},{"alias":"SPLL9146","entrezGeneId":"146456"},{"alias":"GnT-IX","entrezGeneId":"146664"},{"alias":"GnT-VB","entrezGeneId":"146664"},{"alias":"C17orf56","entrezGeneId":"146705"},{"alias":"ENTHD2","entrezGeneId":"146705"},{"alias":"3-Gn-T8","entrezGeneId":"146712"},{"alias":"B3GNT8","entrezGeneId":"146712"},{"alias":"beta-1","entrezGeneId":"146712"},{"alias":"beta3Gn-T8","entrezGeneId":"146712"},{"alias":"beta3GnTL1","entrezGeneId":"146712"},{"alias":"BGnT-8","entrezGeneId":"146712"},{"alias":"FOX-3","entrezGeneId":"146713"},{"alias":"FOX3","entrezGeneId":"146713"},{"alias":"HRNBP3","entrezGeneId":"146713"},{"alias":"NEUN","entrezGeneId":"146713"},{"alias":"CD300f","entrezGeneId":"146722"},{"alias":"CLM-1","entrezGeneId":"146722"},{"alias":"CLM1","entrezGeneId":"146722"},{"alias":"IgSF13","entrezGeneId":"146722"},{"alias":"IREM-1","entrezGeneId":"146722"},{"alias":"IREM1","entrezGeneId":"146722"},{"alias":"LMIR3","entrezGeneId":"146722"},{"alias":"NKIR","entrezGeneId":"146722"},{"alias":"DNAHC2","entrezGeneId":"146754"},{"alias":"DNHD3","entrezGeneId":"146754"},{"alias":"NgR3","entrezGeneId":"146760"},{"alias":"NGRH2","entrezGeneId":"146760"},{"alias":"TCAM1","entrezGeneId":"146771"},{"alias":"MATE2","entrezGeneId":"146802"},{"alias":"MATE2-B","entrezGeneId":"146802"},{"alias":"MATE2-K","entrezGeneId":"146802"},{"alias":"MATE2K","entrezGeneId":"146802"},{"alias":"WDR16","entrezGeneId":"146845"},{"alias":"WDRPUH","entrezGeneId":"146845"},{"alias":"CCDC42A","entrezGeneId":"146849"},{"alias":"C17orf38","entrezGeneId":"146850"},{"alias":"HsT41028","entrezGeneId":"146850"},{"alias":"p84 PIKAP","entrezGeneId":"146850"},{"alias":"p87(PIKAP)","entrezGeneId":"146850"},{"alias":"p87PIKAP","entrezGeneId":"146850"},{"alias":"CT134","entrezGeneId":"146852"},{"alias":"CT136","entrezGeneId":"146852"},{"alias":"OPPO1","entrezGeneId":"146852"},{"alias":"SLFN10","entrezGeneId":"146857"},{"alias":"AMAC1","entrezGeneId":"146861"},{"alias":"TMEM21A","entrezGeneId":"146861"},{"alias":"CMYA4","entrezGeneId":"146862"},{"alias":"CTRCT43","entrezGeneId":"146862"},{"alias":"SMUNC45","entrezGeneId":"146862"},{"alias":"UNC-45B","entrezGeneId":"146862"},{"alias":"UNC45","entrezGeneId":"146862"},{"alias":"CLM-9","entrezGeneId":"146894"},{"alias":"CLM9","entrezGeneId":"146894"},{"alias":"NEPMUCIN","entrezGeneId":"146894"},{"alias":"TREM-4","entrezGeneId":"146894"},{"alias":"TREM4","entrezGeneId":"146894"},{"alias":"MMS4L","entrezGeneId":"146956"},{"alias":"SLX2A","entrezGeneId":"146956"},{"alias":"C17orf32","entrezGeneId":"147007"},{"alias":"CDG2P","entrezGeneId":"147007"},{"alias":"VMA12","entrezGeneId":"147007"},{"alias":"VPH2","entrezGeneId":"147007"},{"alias":"SDR7C5","entrezGeneId":"147015"},{"alias":"C17orf36","entrezGeneId":"147040"},{"alias":"KCASH1","entrezGeneId":"147040"},{"alias":"REN","entrezGeneId":"147040"},{"alias":"REN/KCTD11","entrezGeneId":"147040"},{"alias":"C17orf69","entrezGeneId":"147081"},{"alias":"CRHR1-IT1","entrezGeneId":"147081"},{"alias":"hNOTUM","entrezGeneId":"147111"},{"alias":"EV2","entrezGeneId":"147138"},{"alias":"EVER2","entrezGeneId":"147138"},{"alias":"EVIN2","entrezGeneId":"147138"},{"alias":"TRIM70","entrezGeneId":"147166"},{"alias":"LRRC37B2","entrezGeneId":"147172"},{"alias":"WICH","entrezGeneId":"147179"},{"alias":"WIRE","entrezGeneId":"147179"},{"alias":"ARWH3","entrezGeneId":"147183"},{"alias":"KRT24IRS1","entrezGeneId":"147183"},{"alias":"KRT25A","entrezGeneId":"147183"},{"alias":"RYD5","entrezGeneId":"147199"},{"alias":"HsT3231","entrezGeneId":"147276"},{"alias":"ARKL1","entrezGeneId":"147339"},{"alias":"RNF111L1","entrezGeneId":"147339"},{"alias":"HKLLS1","entrezGeneId":"147372"},{"alias":"MCART2","entrezGeneId":"147407"},{"alias":"CDGF13","entrezGeneId":"147409"},{"alias":"CDHF13","entrezGeneId":"147409"},{"alias":"HYPT6","entrezGeneId":"147409"},{"alias":"LAH","entrezGeneId":"147409"},{"alias":"C18orf16","entrezGeneId":"147429"},{"alias":"CHST9-AS1","entrezGeneId":"147429"},{"alias":"B7323","entrezGeneId":"147495"},{"alias":"DRAPC1","entrezGeneId":"147495"},{"alias":"FP7019","entrezGeneId":"147495"},{"alias":"HHS","entrezGeneId":"147495"},{"alias":"HTS","entrezGeneId":"147495"},{"alias":"HYPT1","entrezGeneId":"147495"},{"alias":"C18orf18","entrezGeneId":"147525"},{"alias":"HsT959","entrezGeneId":"147525"},{"alias":"LET7EH","entrezGeneId":"147650"},{"alias":"LINC00085","entrezGeneId":"147650"},{"alias":"NCRNA00085","entrezGeneId":"147650"},{"alias":"SPACA6P","entrezGeneId":"147650"},{"alias":"KRBO3","entrezGeneId":"147658"},{"alias":"ENVV1","entrezGeneId":"147664"},{"alias":"HERV-V1","entrezGeneId":"147664"},{"alias":"KLC2","entrezGeneId":"147700"},{"alias":"KLC2L","entrezGeneId":"147700"},{"alias":"KLCt","entrezGeneId":"147700"},{"alias":"KNS2B","entrezGeneId":"147700"},{"alias":"SMR","entrezGeneId":"147719"},{"alias":"ILF3-AS1","entrezGeneId":"147727"},{"alias":"MDAC1","entrezGeneId":"147744"},{"alias":"SPBC24","entrezGeneId":"147841"},{"alias":"KASH5","entrezGeneId":"147872"},{"alias":"DAPPER3","entrezGeneId":"147906"},{"alias":"RRR1","entrezGeneId":"147906"},{"alias":"BOR2","entrezGeneId":"147912"},{"alias":"DMAHP","entrezGeneId":"147912"},{"alias":"UNQ645","entrezGeneId":"147920"},{"alias":"VPRI645","entrezGeneId":"147920"},{"alias":"APAK","entrezGeneId":"147923"},{"alias":"CLR19.5","entrezGeneId":"147945"},{"alias":"CT58","entrezGeneId":"147945"},{"alias":"NALP4","entrezGeneId":"147945"},{"alias":"PAN2","entrezGeneId":"147945"},{"alias":"PYPAF4","entrezGeneId":"147945"},{"alias":"RNH2","entrezGeneId":"147945"},{"alias":"ZNF542","entrezGeneId":"147947"},{"alias":"IIAE6","entrezGeneId":"148022"},{"alias":"MyD88-3","entrezGeneId":"148022"},{"alias":"PRVTIRB","entrezGeneId":"148022"},{"alias":"TICAM-1","entrezGeneId":"148022"},{"alias":"TRIF","entrezGeneId":"148022"},{"alias":"C19orf23","entrezGeneId":"148046"},{"alias":"RNF204","entrezGeneId":"148066"},{"alias":"SPERIZIN","entrezGeneId":"148066"},{"alias":"spzn","entrezGeneId":"148066"},{"alias":"Ssrzf1","entrezGeneId":"148066"},{"alias":"TMEM162","entrezGeneId":"148109"},{"alias":"CLIP-2","entrezGeneId":"148113"},{"alias":"C19orf55","entrezGeneId":"148137"},{"alias":"Borg3","entrezGeneId":"148170"},{"alias":"CEP5","entrezGeneId":"148170"},{"alias":"F7175","entrezGeneId":"148198"},{"alias":"ZNF739","entrezGeneId":"148198"},{"alias":"ATPIK","entrezGeneId":"148229"},{"alias":"Di-Ras1","entrezGeneId":"148252"},{"alias":"GBTS1","entrezGeneId":"148252"},{"alias":"RIG","entrezGeneId":"148252"},{"alias":"ZAP1","entrezGeneId":"148266"},{"alias":"ZNF","entrezGeneId":"148266"},{"alias":"sytVI","entrezGeneId":"148281"},{"alias":"URLC4","entrezGeneId":"148304"},{"alias":"AIBZIP","entrezGeneId":"148327"},{"alias":"ATCE1","entrezGeneId":"148327"},{"alias":"CREB3","entrezGeneId":"148327"},{"alias":"CREB4","entrezGeneId":"148327"},{"alias":"hJAL","entrezGeneId":"148327"},{"alias":"JAL","entrezGeneId":"148327"},{"alias":"C1orf58","entrezGeneId":"148362"},{"alias":"MRS","entrezGeneId":"148398"},{"alias":"HSD-41","entrezGeneId":"148418"},{"alias":"HSD-42","entrezGeneId":"148418"},{"alias":"gm117","entrezGeneId":"148423"},{"alias":"PHF5","entrezGeneId":"148479"},{"alias":"SPOC1","entrezGeneId":"148479"},{"alias":"C1orf51","entrezGeneId":"148523"},{"alias":"CHRONO","entrezGeneId":"148523"},{"alias":"GM129","entrezGeneId":"148523"},{"alias":"C1orf211","entrezGeneId":"148645"},{"alias":"NCRNA00337","entrezGeneId":"148645"},{"alias":"ESP","entrezGeneId":"148713"},{"alias":"OST-PTP","entrezGeneId":"148713"},{"alias":"PTPRV","entrezGeneId":"148713"},{"alias":"HFE2","entrezGeneId":"148738"},{"alias":"HFE2A","entrezGeneId":"148738"},{"alias":"JH","entrezGeneId":"148738"},{"alias":"RGMC","entrezGeneId":"148738"},{"alias":"C1orf76","entrezGeneId":"148753"},{"alias":"NDSP","entrezGeneId":"148753"},{"alias":"LINC01131","entrezGeneId":"148756"},{"alias":"OVAL","entrezGeneId":"148756"},{"alias":"B3GalNAc-T2","entrezGeneId":"148789"},{"alias":"MDDGA11","entrezGeneId":"148789"},{"alias":"MFSD4","entrezGeneId":"148808"},{"alias":"UNQ3064","entrezGeneId":"148808"},{"alias":"Cps1","entrezGeneId":"148811"},{"alias":"C1orf150","entrezGeneId":"148823"},{"alias":"ZnT-7","entrezGeneId":"148867"},{"alias":"ZNT7","entrezGeneId":"148867"},{"alias":"ZnTL2","entrezGeneId":"148867"},{"alias":"C1orf213","entrezGeneId":"148898"},{"alias":"Kino","entrezGeneId":"148930"},{"alias":"L5","entrezGeneId":"148930"},{"alias":"MOB1E","entrezGeneId":"148932"},{"alias":"MOBKL2C","entrezGeneId":"148932"},{"alias":"COAS1","entrezGeneId":"149013"},{"alias":"KIAA1245","entrezGeneId":"149013"},{"alias":"RNF198","entrezGeneId":"149041"},{"alias":"ROQUIN","entrezGeneId":"149041"},{"alias":"lin-29","entrezGeneId":"149076"},{"alias":"RN","entrezGeneId":"149076"},{"alias":"CNIH-3","entrezGeneId":"149111"},{"alias":"RPS7_1_61","entrezGeneId":"149224"},{"alias":"C1orf184","entrezGeneId":"149281"},{"alias":"HOMT1B","entrezGeneId":"149281"},{"alias":"NTM1B","entrezGeneId":"149281"},{"alias":"C1orf40","entrezGeneId":"149345"},{"alias":"TMEM58","entrezGeneId":"149345"},{"alias":"EXO84","entrezGeneId":"149371"},{"alias":"Exo84p","entrezGeneId":"149371"},{"alias":"SEC84","entrezGeneId":"149371"},{"alias":"CLIK1L","entrezGeneId":"149420"},{"alias":"STK35L2","entrezGeneId":"149420"},{"alias":"BNIP-S","entrezGeneId":"149428"},{"alias":"BNIP-Salpha","entrezGeneId":"149428"},{"alias":"BNIP-Sbeta","entrezGeneId":"149428"},{"alias":"BNIPL-1","entrezGeneId":"149428"},{"alias":"BNIPL-2","entrezGeneId":"149428"},{"alias":"BNIPL1","entrezGeneId":"149428"},{"alias":"BNIPL2","entrezGeneId":"149428"},{"alias":"BNIPS","entrezGeneId":"149428"},{"alias":"PP753","entrezGeneId":"149428"},{"alias":"HOMG5","entrezGeneId":"149461"},{"alias":"VWS2","entrezGeneId":"149465"},{"alias":"WDR65","entrezGeneId":"149465"},{"alias":"TEMP","entrezGeneId":"149466"},{"alias":"C1orf92","entrezGeneId":"149499"},{"alias":"C1orf64","entrezGeneId":"149563"},{"alias":"ERRF","entrezGeneId":"149563"},{"alias":"RACO-1","entrezGeneId":"149603"},{"alias":"RACO1","entrezGeneId":"149603"},{"alias":"IFIX","entrezGeneId":"149628"},{"alias":"C1orf227","entrezGeneId":"149643"},{"alias":"GARI-L4","entrezGeneId":"149647"},{"alias":"SMAF1","entrezGeneId":"149685"},{"alias":"C20orf65","entrezGeneId":"149699"},{"alias":"dJ1028D15.4","entrezGeneId":"149699"},{"alias":"FAM112A","entrezGeneId":"149699"},{"alias":"dJ211D12.5","entrezGeneId":"149708"},{"alias":"PRG5","entrezGeneId":"149708"},{"alias":"WAP1","entrezGeneId":"149708"},{"alias":"APCDD1L-AS1","entrezGeneId":"149773"},{"alias":"GNAS-AS","entrezGeneId":"149775"},{"alias":"GNAS1AS","entrezGeneId":"149775"},{"alias":"GNASAS","entrezGeneId":"149775"},{"alias":"NCRNA00075","entrezGeneId":"149775"},{"alias":"NESP-AS","entrezGeneId":"149775"},{"alias":"NESPAS","entrezGeneId":"149775"},{"alias":"SANG","entrezGeneId":"149775"},{"alias":"M8","entrezGeneId":"149830"},{"alias":"bB329D4.2","entrezGeneId":"149934"},{"alias":"C20orf191","entrezGeneId":"149934"},{"alias":"C20orf92","entrezGeneId":"149951"},{"alias":"dJ1085F17.3","entrezGeneId":"149951"},{"alias":"C20orf186","entrezGeneId":"149954"},{"alias":"dJ726C3.5","entrezGeneId":"149954"},{"alias":"LPLUNC4","entrezGeneId":"149954"},{"alias":"RY2G5","entrezGeneId":"149954"},{"alias":"bA11M20.3","entrezGeneId":"149986"},{"alias":"C20orf40","entrezGeneId":"149986"},{"alias":"FAM61B","entrezGeneId":"149986"},{"alias":"FT005","entrezGeneId":"149986"},{"alias":"LSM13","entrezGeneId":"149986"},{"alias":"RAP55B","entrezGeneId":"149986"},{"alias":"C21orf99","entrezGeneId":"149992"},{"alias":"CT85","entrezGeneId":"149992"},{"alias":"CTSP-1","entrezGeneId":"149992"},{"alias":"CTSP1","entrezGeneId":"149992"},{"alias":"CT17","entrezGeneId":"149998"},{"alias":"LPDL","entrezGeneId":"149998"},{"alias":"mPA-PLA1 beta","entrezGeneId":"149998"},{"alias":"PLA1C","entrezGeneId":"149998"},{"alias":"PRED5","entrezGeneId":"149998"},{"alias":"ABCC13P","entrezGeneId":"150000"},{"alias":"C21orf73","entrezGeneId":"150000"},{"alias":"PRED6","entrezGeneId":"150000"},{"alias":"C21orf13","entrezGeneId":"150082"},{"alias":"GSF5","entrezGeneId":"150084"},{"alias":"JAM4","entrezGeneId":"150084"},{"alias":"MSK","entrezGeneId":"150094"},{"alias":"SIK","entrezGeneId":"150094"},{"alias":"SIK-1","entrezGeneId":"150094"},{"alias":"SNF1LK","entrezGeneId":"150094"},{"alias":"C21orf129","entrezGeneId":"150135"},{"alias":"PRED76","entrezGeneId":"150135"},{"alias":"C21orf121","entrezGeneId":"150142"},{"alias":"NCRNA00318","entrezGeneId":"150142"},{"alias":"PRED87","entrezGeneId":"150142"},{"alias":"C21orf128","entrezGeneId":"150147"},{"alias":"NHA1","entrezGeneId":"150159"},{"alias":"NHEDC1","entrezGeneId":"150159"},{"alias":"CESK1","entrezGeneId":"150160"},{"alias":"XRG3","entrezGeneId":"150165"},{"alias":"XTES","entrezGeneId":"150165"},{"alias":"AIFL","entrezGeneId":"150209"},{"alias":"RIM-BP3.3","entrezGeneId":"150221"},{"alias":"RIMBP3.3","entrezGeneId":"150221"},{"alias":"ZDHHC8P","entrezGeneId":"150244"},{"alias":"N27C7-3","entrezGeneId":"150248"},{"alias":"DNAJC20","entrezGeneId":"150274"},{"alias":"HSC20","entrezGeneId":"150274"},{"alias":"JAC1","entrezGeneId":"150274"},{"alias":"dJ366L4.1","entrezGeneId":"150275"},{"alias":"CT46.2","entrezGeneId":"150280"},{"alias":"DSP18","entrezGeneId":"150290"},{"alias":"DUSP20","entrezGeneId":"150290"},{"alias":"LMWDSP20","entrezGeneId":"150290"},{"alias":"C22orf27","entrezGeneId":"150291"},{"alias":"NCRNA00325","entrezGeneId":"150291"},{"alias":"dJ90G24.6","entrezGeneId":"150297"},{"alias":"CACNA1I","entrezGeneId":"150350"},{"alias":"dJ370M22.3","entrezGeneId":"150350"},{"alias":"DJ5","entrezGeneId":"150353"},{"alias":"HSC3","entrezGeneId":"150353"},{"alias":"SLRR4B","entrezGeneId":"150356"},{"alias":"SPATA38","entrezGeneId":"150365"},{"alias":"FAM109B","entrezGeneId":"150368"},{"alias":"IPIP27B","entrezGeneId":"150368"},{"alias":"Ses2","entrezGeneId":"150368"},{"alias":"CNAIP","entrezGeneId":"150372"},{"alias":"dJ388M5","entrezGeneId":"150379"},{"alias":"dJ388M5.4","entrezGeneId":"150379"},{"alias":"GS2L","entrezGeneId":"150379"},{"alias":"C22orf40","entrezGeneId":"150383"},{"alias":"CN5H6.4","entrezGeneId":"150384"},{"alias":"GTSE1-AS1","entrezGeneId":"150384"},{"alias":"LL22NC03-5H6.6","entrezGeneId":"150384"},{"alias":"TISP43","entrezGeneId":"150527"},{"alias":"BOP","entrezGeneId":"150572"},{"alias":"KMT3D","entrezGeneId":"150572"},{"alias":"ZMYND18","entrezGeneId":"150572"},{"alias":"ZMYND22","entrezGeneId":"150572"},{"alias":"OTOSP","entrezGeneId":"150677"},{"alias":"CSNAP","entrezGeneId":"150678"},{"alias":"MYEOV2","entrezGeneId":"150678"},{"alias":"OR6B3P","entrezGeneId":"150681"},{"alias":"OR6B3Q","entrezGeneId":"150681"},{"alias":"C2orf5","entrezGeneId":"150684"},{"alias":"MURR1","entrezGeneId":"150684"},{"alias":"PROML2","entrezGeneId":"150696"},{"alias":"FBX41","entrezGeneId":"150726"},{"alias":"fleer","entrezGeneId":"150737"},{"alias":"IFT70","entrezGeneId":"150737"},{"alias":"IFT70B","entrezGeneId":"150737"},{"alias":"NCRNA00342","entrezGeneId":"150759"},{"alias":"CT123","entrezGeneId":"150763"},{"alias":"KIAA1754L","entrezGeneId":"150771"},{"alias":"RAB6CL","entrezGeneId":"150786"},{"alias":"WTH3DI","entrezGeneId":"150786"},{"alias":"ALS2CR13","entrezGeneId":"150864"},{"alias":"bHLHa24","entrezGeneId":"150921"},{"alias":"OUT","entrezGeneId":"150921"},{"alias":"TCF-23","entrezGeneId":"150921"},{"alias":"FAM59B","entrezGeneId":"150946"},{"alias":"GAREML","entrezGeneId":"150946"},{"alias":"CCDC139","entrezGeneId":"150962"},{"alias":"DOBI","entrezGeneId":"150962"},{"alias":"PKI55","entrezGeneId":"150967"},{"alias":"NCRNA00309","entrezGeneId":"150992"},{"alias":"C2orf67","entrezGeneId":"151050"},{"alias":"MSL1v2","entrezGeneId":"151050"},{"alias":"PLB","entrezGeneId":"151056"},{"alias":"PLB/LIP","entrezGeneId":"151056"},{"alias":"MEX","entrezGeneId":"151112"},{"alias":"ZZZ2","entrezGeneId":"151112"},{"alias":"ZNF533","entrezGeneId":"151126"},{"alias":"C1QTNF15","entrezGeneId":"151176"},{"alias":"CTRP15","entrezGeneId":"151176"},{"alias":"FAM132B","entrezGeneId":"151176"},{"alias":"AIP-6","entrezGeneId":"151188"},{"alias":"AIP6","entrezGeneId":"151188"},{"alias":"PFAAP1","entrezGeneId":"151188"},{"alias":"FAM119A","entrezGeneId":"151194"},{"alias":"HCA557b","entrezGeneId":"151194"},{"alias":"HSPA-KMT","entrezGeneId":"151194"},{"alias":"DITHP","entrezGeneId":"151230"},{"alias":"SULT1C1P","entrezGeneId":"151234"},{"alias":"IPP5","entrezGeneId":"151242"},{"alias":"SGOL2","entrezGeneId":"151246"},{"alias":"TRIPIN","entrezGeneId":"151246"},{"alias":"ALS2CR11","entrezGeneId":"151254"},{"alias":"AVT2","entrezGeneId":"151258"},{"alias":"E2BP3","entrezGeneId":"151295"},{"alias":"SVCT3","entrezGeneId":"151295"},{"alias":"Yspl1","entrezGeneId":"151295"},{"alias":"BG37","entrezGeneId":"151306"},{"alias":"GPCR19","entrezGeneId":"151306"},{"alias":"GPR131","entrezGeneId":"151306"},{"alias":"M-BAR","entrezGeneId":"151306"},{"alias":"TGR5","entrezGeneId":"151306"},{"alias":"NSE1","entrezGeneId":"151354"},{"alias":"PP11517","entrezGeneId":"151354"},{"alias":"BLOCK18","entrezGeneId":"151393"},{"alias":"FAM82A","entrezGeneId":"151393"},{"alias":"FAM82A1","entrezGeneId":"151393"},{"alias":"PRO34163","entrezGeneId":"151393"},{"alias":"PYST9371","entrezGeneId":"151393"},{"alias":"RMD-2","entrezGeneId":"151393"},{"alias":"RMD2","entrezGeneId":"151393"},{"alias":"RMD4","entrezGeneId":"151393"},{"alias":"BMP12","entrezGeneId":"151449"},{"alias":"MCT14","entrezGeneId":"151473"},{"alias":"C2orf52","entrezGeneId":"151477"},{"alias":"MSL3L2","entrezGeneId":"151507"},{"alias":"MUNO","entrezGeneId":"151516"},{"alias":"SASP","entrezGeneId":"151516"},{"alias":"SASPase","entrezGeneId":"151516"},{"alias":"Taps","entrezGeneId":"151516"},{"alias":"UBOX6","entrezGeneId":"151525"},{"alias":"WDSAM1","entrezGeneId":"151525"},{"alias":"UDRPASE2","entrezGeneId":"151531"},{"alias":"UP2","entrezGeneId":"151531"},{"alias":"UPASE2","entrezGeneId":"151531"},{"alias":"DEP.7","entrezGeneId":"151556"},{"alias":"DEPDC3","entrezGeneId":"151556"},{"alias":"PGR22","entrezGeneId":"151556"},{"alias":"BZW1L1","entrezGeneId":"151579"},{"alias":"DRDL5813","entrezGeneId":"151613"},{"alias":"PRO19630","entrezGeneId":"151613"},{"alias":"BBAP","entrezGeneId":"151636"},{"alias":"RNF143","entrezGeneId":"151636"},{"alias":"bcm3415","entrezGeneId":"151645"},{"alias":"PSMC1P","entrezGeneId":"151645"},{"alias":"TAFA-4","entrezGeneId":"151647"},{"alias":"TAFA4","entrezGeneId":"151647"},{"alias":"CAID","entrezGeneId":"151648"},{"alias":"NY-BR-85","entrezGeneId":"151648"},{"alias":"SGO","entrezGeneId":"151648"},{"alias":"SGOL1","entrezGeneId":"151648"},{"alias":"C3orf48","entrezGeneId":"151649"},{"alias":"CFAP21","entrezGeneId":"151651"},{"alias":"PP2C-epsilon","entrezGeneId":"151742"},{"alias":"PP2CE","entrezGeneId":"151742"},{"alias":"PPM1-LIKE","entrezGeneId":"151742"},{"alias":"CT100","entrezGeneId":"151871"},{"alias":"ECAT15-2","entrezGeneId":"151871"},{"alias":"PESCRG1","entrezGeneId":"151871"},{"alias":"DRO1","entrezGeneId":"151887"},{"alias":"okuribin","entrezGeneId":"151887"},{"alias":"SSG1","entrezGeneId":"151887"},{"alias":"URB","entrezGeneId":"151887"},{"alias":"BTLA1","entrezGeneId":"151888"},{"alias":"CD272","entrezGeneId":"151888"},{"alias":"C3orf59","entrezGeneId":"151963"},{"alias":"PP4R2","entrezGeneId":"151987"},{"alias":"C3orf21","entrezGeneId":"152002"},{"alias":"C9orf19","entrezGeneId":"152007"},{"alias":"GAPR-1","entrezGeneId":"152007"},{"alias":"GAPR1","entrezGeneId":"152007"},{"alias":"C3orf55","entrezGeneId":"152078"},{"alias":"ZCW2","entrezGeneId":"152098"},{"alias":"C3orf68","entrezGeneId":"152100"},{"alias":"VENTX2P4","entrezGeneId":"152101"},{"alias":"C3orf6","entrezGeneId":"152137"},{"alias":"DFNA44","entrezGeneId":"152137"},{"alias":"YMER","entrezGeneId":"152137"},{"alias":"cPOP2","entrezGeneId":"152138"},{"alias":"POP2","entrezGeneId":"152138"},{"alias":"CCDC52","entrezGeneId":"152185"},{"alias":"SPICE","entrezGeneId":"152185"},{"alias":"CKLFSF8","entrezGeneId":"152189"},{"alias":"CKLFSF8-V2","entrezGeneId":"152189"},{"alias":"NUDT16P","entrezGeneId":"152195"},{"alias":"ZFYVE23","entrezGeneId":"152273"},{"alias":"CICE","entrezGeneId":"152302"},{"alias":"AXCAM","entrezGeneId":"152330"},{"alias":"BIG-2","entrezGeneId":"152330"},{"alias":"BT-IgSF","entrezGeneId":"152404"},{"alias":"CT119","entrezGeneId":"152404"},{"alias":"CXADRL1","entrezGeneId":"152404"},{"alias":"Igsf13","entrezGeneId":"152404"},{"alias":"VSIG3","entrezGeneId":"152404"},{"alias":"TSCPA","entrezGeneId":"152405"},{"alias":"EBP","entrezGeneId":"152503"},{"alias":"Eve-1","entrezGeneId":"152503"},{"alias":"EVE1","entrezGeneId":"152503"},{"alias":"Kryn","entrezGeneId":"152503"},{"alias":"SH3P19","entrezGeneId":"152503"},{"alias":"CDZFP","entrezGeneId":"152518"},{"alias":"HOZFP","entrezGeneId":"152518"},{"alias":"OZFP","entrezGeneId":"152518"},{"alias":"URCC5","entrezGeneId":"152518"},{"alias":"NPAL1","entrezGeneId":"152519"},{"alias":"RKTG","entrezGeneId":"152559"},{"alias":"hShisa3","entrezGeneId":"152573"},{"alias":"STXBP1L1","entrezGeneId":"152579"},{"alias":"GnT1IP","entrezGeneId":"152586"},{"alias":"C4orf38","entrezGeneId":"152641"},{"alias":"RPL7A_11_540","entrezGeneId":"152663"},{"alias":"FAM192B","entrezGeneId":"152667"},{"alias":"rcNIP30","entrezGeneId":"152667"},{"alias":"ARL4P2","entrezGeneId":"152709"},{"alias":"C4orf39","entrezGeneId":"152756"},{"alias":"Gababrbp","entrezGeneId":"152789"},{"alias":"JAMIP1","entrezGeneId":"152789"},{"alias":"MARLIN1","entrezGeneId":"152789"},{"alias":"AI2A4","entrezGeneId":"152816"},{"alias":"C4orf26","entrezGeneId":"152816"},{"alias":"BKL","entrezGeneId":"152831"},{"alias":"DNTNP","entrezGeneId":"152877"},{"alias":"NSPLII","entrezGeneId":"152905"},{"alias":"RTN3PS","entrezGeneId":"152905"},{"alias":"BDP","entrezGeneId":"152926"},{"alias":"MSUDMV","entrezGeneId":"152926"},{"alias":"PP2Ckappa","entrezGeneId":"152926"},{"alias":"PP2Cm","entrezGeneId":"152926"},{"alias":"PTMP","entrezGeneId":"152926"},{"alias":"UG0882E07","entrezGeneId":"152926"},{"alias":"C4orf23","entrezGeneId":"152992"},{"alias":"METTL19","entrezGeneId":"152992"},{"alias":"TRM44","entrezGeneId":"152992"},{"alias":"GPIG4","entrezGeneId":"153020"},{"alias":"AF9Q34","entrezGeneId":"153090"},{"alias":"AIP-1","entrezGeneId":"153090"},{"alias":"AIP1","entrezGeneId":"153090"},{"alias":"DIP1/2","entrezGeneId":"153090"},{"alias":"URLC11","entrezGeneId":"153129"},{"alias":"PAT2","entrezGeneId":"153201"},{"alias":"TRAMD1","entrezGeneId":"153201"},{"alias":"HBVDNAPTP1","entrezGeneId":"153218"},{"alias":"HESPINTOR","entrezGeneId":"153218"},{"alias":"LiESP6","entrezGeneId":"153218"},{"alias":"SPINK5L3","entrezGeneId":"153218"},{"alias":"C5orf41","entrezGeneId":"153222"},{"alias":"LRF","entrezGeneId":"153222"},{"alias":"CCDC100","entrezGeneId":"153241"},{"alias":"JBTS31","entrezGeneId":"153241"},{"alias":"SRTD13","entrezGeneId":"153241"},{"alias":"TMEM167","entrezGeneId":"153339"},{"alias":"FLB3342","entrezGeneId":"153396"},{"alias":"PRO1313","entrezGeneId":"153396"},{"alias":"BUD22","entrezGeneId":"153443"},{"alias":"P49","entrezGeneId":"153443"},{"alias":"p49/STRAP","entrezGeneId":"153443"},{"alias":"Rlb1","entrezGeneId":"153443"},{"alias":"STRAP","entrezGeneId":"153443"},{"alias":"Ptg-12","entrezGeneId":"153527"},{"alias":"Snu23","entrezGeneId":"153527"},{"alias":"DFNB49","entrezGeneId":"153562"},{"alias":"MARVD2","entrezGeneId":"153562"},{"alias":"MRVLDC2","entrezGeneId":"153562"},{"alias":"Tric","entrezGeneId":"153562"},{"alias":"CEI","entrezGeneId":"153571"},{"alias":"IRX2NB","entrezGeneId":"153571"},{"alias":"IRXA2","entrezGeneId":"153572"},{"alias":"BTN3","entrezGeneId":"153579"},{"alias":"BTN8","entrezGeneId":"153579"},{"alias":"VDLS1900","entrezGeneId":"153579"},{"alias":"TSULF","entrezGeneId":"153642"},{"alias":"MC25-1","entrezGeneId":"153657"},{"alias":"MBC1","entrezGeneId":"153733"},{"alias":"PPP1R2P3","entrezGeneId":"153743"},{"alias":"HEPP1","entrezGeneId":"153769"},{"alias":"POSHER","entrezGeneId":"153769"},{"alias":"PPP1R39","entrezGeneId":"153769"},{"alias":"RNF158","entrezGeneId":"153769"},{"alias":"DSS1P1","entrezGeneId":"153842"},{"alias":"SHFM1P","entrezGeneId":"153842"},{"alias":"SHFM1P1","entrezGeneId":"153842"},{"alias":"C6orf94","entrezGeneId":"153918"},{"alias":"dJ468K18.5","entrezGeneId":"153918"},{"alias":"FAM164B","entrezGeneId":"153918"},{"alias":"dJ274L14.2","entrezGeneId":"153932"},{"alias":"C6orf151","entrezGeneId":"154007"},{"alias":"dJ336K20B.1","entrezGeneId":"154007"},{"alias":"dJ512B11.2","entrezGeneId":"154007"},{"alias":"CNK3","entrezGeneId":"154043"},{"alias":"CNK3/IPCEF1","entrezGeneId":"154043"},{"alias":"MAGI1","entrezGeneId":"154043"},{"alias":"ULBP6","entrezGeneId":"154064"},{"alias":"GLUT12","entrezGeneId":"154091"},{"alias":"GLUT8","entrezGeneId":"154091"},{"alias":"dJ434O11.1","entrezGeneId":"154141"},{"alias":"LPEAT1","entrezGeneId":"154141"},{"alias":"LPLAT","entrezGeneId":"154141"},{"alias":"LPLAT 1","entrezGeneId":"154141"},{"alias":"LPSAT","entrezGeneId":"154141"},{"alias":"OACT1","entrezGeneId":"154141"},{"alias":"dJ309H15.1","entrezGeneId":"154150"},{"alias":"Hdgfrp1","entrezGeneId":"154150"},{"alias":"HRP-1","entrezGeneId":"154150"},{"alias":"PWWP1","entrezGeneId":"154150"},{"alias":"HsPNLDC1","entrezGeneId":"154197"},{"alias":"C6orf172","entrezGeneId":"154214"},{"alias":"dJ84N20.1","entrezGeneId":"154214"},{"alias":"IBRDC1","entrezGeneId":"154214"},{"alias":"OSTL","entrezGeneId":"154214"},{"alias":"FAM77B","entrezGeneId":"154215"},{"alias":"NKAIP2","entrezGeneId":"154215"},{"alias":"TCBA","entrezGeneId":"154215"},{"alias":"TCBA1","entrezGeneId":"154215"},{"alias":"C6orf221","entrezGeneId":"154288"},{"alias":"ECAT1","entrezGeneId":"154288"},{"alias":"HYDM2","entrezGeneId":"154288"},{"alias":"C6orf165","entrezGeneId":"154313"},{"alias":"dJ382I10.1","entrezGeneId":"154313"},{"alias":"bA145H9.2","entrezGeneId":"154386"},{"alias":"C6orf195","entrezGeneId":"154386"},{"alias":"bA99L11.2","entrezGeneId":"154442"},{"alias":"C6orf112","entrezGeneId":"154442"},{"alias":"C6orf129","entrezGeneId":"154467"},{"alias":"HSPC265","entrezGeneId":"154467"},{"alias":"RPIB9","entrezGeneId":"154661"},{"alias":"RPIP9","entrezGeneId":"154661"},{"alias":"C7orf60","entrezGeneId":"154743"},{"alias":"SAMTOR","entrezGeneId":"154743"},{"alias":"T6","entrezGeneId":"154754"},{"alias":"TRY6","entrezGeneId":"154754"},{"alias":"C7orf55","entrezGeneId":"154791"},{"alias":"HSPC268","entrezGeneId":"154791"},{"alias":"JEAP","entrezGeneId":"154810"},{"alias":"CLN14","entrezGeneId":"154881"},{"alias":"EPM3","entrezGeneId":"154881"},{"alias":"FAM10A7","entrezGeneId":"155019"},{"alias":"FAM10A7P","entrezGeneId":"155019"},{"alias":"IAN-9","entrezGeneId":"155038"},{"alias":"IAN6","entrezGeneId":"155038"},{"alias":"IAN9","entrezGeneId":"155038"},{"alias":"IANT","entrezGeneId":"155038"},{"alias":"PARIS","entrezGeneId":"155061"},{"alias":"ATP6V0E2L","entrezGeneId":"155066"},{"alias":"C7orf32","entrezGeneId":"155066"},{"alias":"CCT8L1","entrezGeneId":"155100"},{"alias":"GLUT-7","entrezGeneId":"155184"},{"alias":"GLUT7","entrezGeneId":"155184"},{"alias":"OR7E139P","entrezGeneId":"155340"},{"alias":"OR7E147P","entrezGeneId":"155340"},{"alias":"WBSCR27","entrezGeneId":"155368"},{"alias":"SBDSP","entrezGeneId":"155370"},{"alias":"WBSCR24","entrezGeneId":"155382"},{"alias":"NSUN5B","entrezGeneId":"155400"},{"alias":"WBSCR20B","entrezGeneId":"155400"},{"alias":"PRR8","entrezGeneId":"155435"},{"alias":"AG-3","entrezGeneId":"155465"},{"alias":"AG3","entrezGeneId":"155465"},{"alias":"BCMP11","entrezGeneId":"155465"},{"alias":"hAG-3","entrezGeneId":"155465"},{"alias":"HAG3","entrezGeneId":"155465"},{"alias":"PDIA18","entrezGeneId":"155465"},{"alias":"RPL21_50_1399","entrezGeneId":"157206"},{"alias":"NACK","entrezGeneId":"157285"},{"alias":"PEAK2","entrezGeneId":"157285"},{"alias":"PRAGMIN","entrezGeneId":"157285"},{"alias":"SGK223","entrezGeneId":"157285"},{"alias":"CORK-1","entrezGeneId":"157310"},{"alias":"CORK1","entrezGeneId":"157310"},{"alias":"GWTM1933","entrezGeneId":"157310"},{"alias":"HEL-S-300","entrezGeneId":"157310"},{"alias":"hPEBP4","entrezGeneId":"157310"},{"alias":"PEBP-4","entrezGeneId":"157310"},{"alias":"PRO4408","entrezGeneId":"157310"},{"alias":"PPP1R81","entrezGeneId":"157313"},{"alias":"Repo-Man","entrezGeneId":"157313"},{"alias":"bA513I15.3","entrezGeneId":"157317"},{"alias":"CYCSL1","entrezGeneId":"157317"},{"alias":"HCP15","entrezGeneId":"157317"},{"alias":"HS11","entrezGeneId":"157317"},{"alias":"C8orf78","entrezGeneId":"157376"},{"alias":"SDR16C4","entrezGeneId":"157506"},{"alias":"FAM10A6","entrezGeneId":"157530"},{"alias":"FAM10A6P","entrezGeneId":"157530"},{"alias":"BAALCOS","entrezGeneId":"157556"},{"alias":"C8orf56","entrezGeneId":"157556"},{"alias":"ANK-S","entrezGeneId":"157567"},{"alias":"GENX-115279","entrezGeneId":"157567"},{"alias":"2410004I17Rik","entrezGeneId":"157570"},{"alias":"EFO2","entrezGeneId":"157570"},{"alias":"RBS","entrezGeneId":"157570"},{"alias":"FBX16","entrezGeneId":"157574"},{"alias":"Rncr3","entrezGeneId":"157627"},{"alias":"BCMP101","entrezGeneId":"157638"},{"alias":"NSE2","entrezGeneId":"157638"},{"alias":"BBS21","entrezGeneId":"157657"},{"alias":"CORD16","entrezGeneId":"157657"},{"alias":"RP64","entrezGeneId":"157657"},{"alias":"smalltalk","entrezGeneId":"157657"},{"alias":"CHS1","entrezGeneId":"157680"},{"alias":"COH1","entrezGeneId":"157680"},{"alias":"C8orf42","entrezGeneId":"157695"},{"alias":"Inm01","entrezGeneId":"157695"},{"alias":"TDRP1","entrezGeneId":"157695"},{"alias":"TDRP2","entrezGeneId":"157695"},{"alias":"HSPC319","entrezGeneId":"157697"},{"alias":"SEC11L2","entrezGeneId":"157708"},{"alias":"SPCS4B","entrezGeneId":"157708"},{"alias":"AGT-1","entrezGeneId":"157724"},{"alias":"AGT1","entrezGeneId":"157724"},{"alias":"XAT2","entrezGeneId":"157724"},{"alias":"SDR14E1P","entrezGeneId":"157739"},{"alias":"NET36","entrezGeneId":"157753"},{"alias":"C8orf45","entrezGeneId":"157777"},{"alias":"C6orf212L","entrezGeneId":"157807"},{"alias":"CRALBPL","entrezGeneId":"157807"},{"alias":"RLBP1L1","entrezGeneId":"157807"},{"alias":"NKX6.3","entrezGeneId":"157848"},{"alias":"KCa5","entrezGeneId":"157855"},{"alias":"KCa5.1","entrezGeneId":"157855"},{"alias":"Kcnma3","entrezGeneId":"157855"},{"alias":"KCNMC1","entrezGeneId":"157855"},{"alias":"Slo3","entrezGeneId":"157855"},{"alias":"C8orf84","entrezGeneId":"157869"},{"alias":"RPESP","entrezGeneId":"157869"},{"alias":"IL6RL1","entrezGeneId":"157916"},{"alias":"CDC20P","entrezGeneId":"157956"},{"alias":"IFNP12","entrezGeneId":"158011"},{"alias":"IFNWP12","entrezGeneId":"158011"},{"alias":"C9orf14","entrezGeneId":"158035"},{"alias":"NCRNA00032","entrezGeneId":"158035"},{"alias":"LERN3","entrezGeneId":"158038"},{"alias":"LRRN6C","entrezGeneId":"158038"},{"alias":"C9orf121","entrezGeneId":"158046"},{"alias":"RDCVF2","entrezGeneId":"158046"},{"alias":"RdCVF2L","entrezGeneId":"158046"},{"alias":"AEGP","entrezGeneId":"158056"},{"alias":"hLcn5","entrezGeneId":"158062"},{"alias":"LCN5","entrezGeneId":"158062"},{"alias":"UNQ643","entrezGeneId":"158062"},{"alias":"AK 8","entrezGeneId":"158067"},{"alias":"C9orf98","entrezGeneId":"158067"},{"alias":"DDX31","entrezGeneId":"158067"},{"alias":"EEF1AL3","entrezGeneId":"158078"},{"alias":"RPS10_10_994","entrezGeneId":"158104"},{"alias":"HSTPCR106","entrezGeneId":"158131"},{"alias":"OR1Q2","entrezGeneId":"158131"},{"alias":"OR1Q3","entrezGeneId":"158131"},{"alias":"OR9-25","entrezGeneId":"158131"},{"alias":"OR9-A","entrezGeneId":"158131"},{"alias":"OST226","entrezGeneId":"158131"},{"alias":"OST226OR9-A","entrezGeneId":"158131"},{"alias":"TPCR106","entrezGeneId":"158131"},{"alias":"bA244O19.1","entrezGeneId":"158135"},{"alias":"C9orf20","entrezGeneId":"158135"},{"alias":"RAB45","entrezGeneId":"158158"},{"alias":"bA291L22.1","entrezGeneId":"158160"},{"alias":"HSD17B7","entrezGeneId":"158160"},{"alias":"Hsd17b_2","entrezGeneId":"158160"},{"alias":"bA571F15.6","entrezGeneId":"158172"},{"alias":"pshsp47","entrezGeneId":"158172"},{"alias":"SERPINHP1","entrezGeneId":"158172"},{"alias":"C9orf52","entrezGeneId":"158219"},{"alias":"LDHAL4","entrezGeneId":"158222"},{"alias":"C9orf122","entrezGeneId":"158228"},{"alias":"bA3J10.9","entrezGeneId":"158234"},{"alias":"RG9MTD3","entrezGeneId":"158234"},{"alias":"C9orf10OS","entrezGeneId":"158293"},{"alias":"C9orf138","entrezGeneId":"158297"},{"alias":"FAM154A","entrezGeneId":"158297"},{"alias":"C9orf44","entrezGeneId":"158314"},{"alias":"BNAR","entrezGeneId":"158326"},{"alias":"C9orf143","entrezGeneId":"158326"},{"alias":"C9orf145","entrezGeneId":"158326"},{"alias":"C9orf154","entrezGeneId":"158326"},{"alias":"MOTA","entrezGeneId":"158326"},{"alias":"TILRR","entrezGeneId":"158326"},{"alias":"TRIGNO2","entrezGeneId":"158326"},{"alias":"RPL4_3_960","entrezGeneId":"158345"},{"alias":"BA327L3.4","entrezGeneId":"158373"},{"alias":"LINC00961","entrezGeneId":"158376"},{"alias":"SPAR","entrezGeneId":"158376"},{"alias":"FetA","entrezGeneId":"158381"},{"alias":"ZKSCAN16","entrezGeneId":"158399"},{"alias":"ZSCAN48","entrezGeneId":"158399"},{"alias":"C9orf97","entrezGeneId":"158427"},{"alias":"ASSP3","entrezGeneId":"158452"},{"alias":"BMCC1","entrezGeneId":"158471"},{"alias":"BNIPXL","entrezGeneId":"158471"},{"alias":"C9orf65","entrezGeneId":"158471"},{"alias":"KIAA0367","entrezGeneId":"158471"},{"alias":"CT138","entrezGeneId":"158506"},{"alias":"HAKAIL","entrezGeneId":"158506"},{"alias":"ZNF645","entrezGeneId":"158506"},{"alias":"CSAGE","entrezGeneId":"158511"},{"alias":"CT24.1","entrezGeneId":"158511"},{"alias":"CT37","entrezGeneId":"158521"},{"alias":"NY-SAR-35","entrezGeneId":"158521"},{"alias":"NYSAR35","entrezGeneId":"158521"},{"alias":"AMDD","entrezGeneId":"158584"},{"alias":"dJ83L6.1","entrezGeneId":"158586"},{"alias":"ZNF905","entrezGeneId":"158586"},{"alias":"LAMR1P3","entrezGeneId":"158674"},{"alias":"RPSA_21_1392","entrezGeneId":"158674"},{"alias":"2610028I09Rik","entrezGeneId":"158787"},{"alias":"AKAP28","entrezGeneId":"158798"},{"alias":"PRKA14","entrezGeneId":"158798"},{"alias":"OTEX","entrezGeneId":"158800"},{"alias":"PEPP1","entrezGeneId":"158800"},{"alias":"CXorf42","entrezGeneId":"158801"},{"alias":"CT3.4","entrezGeneId":"158809"},{"alias":"MAGE-B6","entrezGeneId":"158809"},{"alias":"MAGEB6A","entrezGeneId":"158809"},{"alias":"DGA2","entrezGeneId":"158833"},{"alias":"DGAT2L3","entrezGeneId":"158833"},{"alias":"ARAT","entrezGeneId":"158835"},{"alias":"DC4","entrezGeneId":"158835"},{"alias":"DGAT2L4","entrezGeneId":"158835"},{"alias":"MFAT","entrezGeneId":"158835"},{"alias":"WS","entrezGeneId":"158835"},{"alias":"DHHC15","entrezGeneId":"158866"},{"alias":"MRX91","entrezGeneId":"158866"},{"alias":"XAP135P","entrezGeneId":"158905"},{"alias":"Tceal3","entrezGeneId":"158931"},{"alias":"WEX2","entrezGeneId":"158931"},{"alias":"SPACIA2","entrezGeneId":"159090"},{"alias":"HSF2L","entrezGeneId":"159119"},{"alias":"HSFY","entrezGeneId":"159119"},{"alias":"YRRM2","entrezGeneId":"159163"},{"alias":"bA137L10.3","entrezGeneId":"159195"},{"alias":"bA137L10.4","entrezGeneId":"159195"},{"alias":"C10orf29","entrezGeneId":"159195"},{"alias":"CSX3","entrezGeneId":"159296"},{"alias":"NK2.3","entrezGeneId":"159296"},{"alias":"NKX2.3","entrezGeneId":"159296"},{"alias":"NKX2C","entrezGeneId":"159296"},{"alias":"NKX4-3","entrezGeneId":"159296"},{"alias":"C10orf60","entrezGeneId":"159371"},{"alias":"POST","entrezGeneId":"159371"},{"alias":"TMEM20","entrezGeneId":"159371"},{"alias":"bA127L20.4","entrezGeneId":"159686"},{"alias":"bA127L20.5","entrezGeneId":"159686"},{"alias":"bA554P13.1","entrezGeneId":"159686"},{"alias":"C10orf80","entrezGeneId":"159686"},{"alias":"CCDC147","entrezGeneId":"159686"},{"alias":"SMCT2","entrezGeneId":"159963"},{"alias":"CCDC67","entrezGeneId":"159989"},{"alias":"PATE","entrezGeneId":"160065"},{"alias":"LDH6A","entrezGeneId":"160287"},{"alias":"KRT19P5","entrezGeneId":"160313"},{"alias":"IBDBP1","entrezGeneId":"160335"},{"alias":"CD371","entrezGeneId":"160364"},{"alias":"CLL-1","entrezGeneId":"160364"},{"alias":"CLL1","entrezGeneId":"160364"},{"alias":"DCAL-2","entrezGeneId":"160364"},{"alias":"MICL","entrezGeneId":"160364"},{"alias":"DCAL-1","entrezGeneId":"160365"},{"alias":"DCAL1","entrezGeneId":"160365"},{"alias":"LIS8","entrezGeneId":"160418"},{"alias":"SMILE","entrezGeneId":"160418"},{"alias":"mtFDH","entrezGeneId":"160428"},{"alias":"IFLTD1","entrezGeneId":"160492"},{"alias":"LMNARS1","entrezGeneId":"160492"},{"alias":"PAS1C1","entrezGeneId":"160492"},{"alias":"TAMALIN","entrezGeneId":"160622"},{"alias":"AIT","entrezGeneId":"160728"},{"alias":"SMCT","entrezGeneId":"160728"},{"alias":"SMCT1","entrezGeneId":"160728"},{"alias":"TA-PP2C","entrezGeneId":"160760"},{"alias":"TAPP2C","entrezGeneId":"160760"},{"alias":"ODA5","entrezGeneId":"160762"},{"alias":"DGKeta","entrezGeneId":"160851"},{"alias":"ITR","entrezGeneId":"160897"},{"alias":"Epb7.2l","entrezGeneId":"161003"},{"alias":"SRO","entrezGeneId":"161003"},{"alias":"C14orf54","entrezGeneId":"161142"},{"alias":"C14orf83","entrezGeneId":"161145"},{"alias":"C14orf84","entrezGeneId":"161159"},{"alias":"C14orf139","entrezGeneId":"161176"},{"alias":"C14orf49","entrezGeneId":"161176"},{"alias":"KASH3","entrezGeneId":"161176"},{"alias":"LINC00341","entrezGeneId":"161176"},{"alias":"NCRNA00341","entrezGeneId":"161176"},{"alias":"Nesp3","entrezGeneId":"161176"},{"alias":"NET53","entrezGeneId":"161176"},{"alias":"C14orf27","entrezGeneId":"161198"},{"alias":"CEG1","entrezGeneId":"161198"},{"alias":"EGFR-5","entrezGeneId":"161198"},{"alias":"FIT1","entrezGeneId":"161247"},{"alias":"C14orf14","entrezGeneId":"161271"},{"alias":"c14_5009","entrezGeneId":"161271"},{"alias":"OR4H12","entrezGeneId":"161271"},{"alias":"CDC50B","entrezGeneId":"161291"},{"alias":"C14orf30","entrezGeneId":"161342"},{"alias":"c14_5317","entrezGeneId":"161342"},{"alias":"c14_5286","entrezGeneId":"161357"},{"alias":"MAMDC1","entrezGeneId":"161357"},{"alias":"C14orf174","entrezGeneId":"161394"},{"alias":"FAM15A","entrezGeneId":"161394"},{"alias":"rpL7a","entrezGeneId":"161406"},{"alias":"RPL7AP3","entrezGeneId":"161406"},{"alias":"RPL7AP68","entrezGeneId":"161406"},{"alias":"RPL7A_31_1637","entrezGeneId":"161406"},{"alias":"C14orf21","entrezGeneId":"161424"},{"alias":"EMAP-2","entrezGeneId":"161436"},{"alias":"DFNB16","entrezGeneId":"161497"},{"alias":"C15orf26","entrezGeneId":"161502"},{"alias":"MgcRabGAP","entrezGeneId":"161514"},{"alias":"CILD25","entrezGeneId":"161582"},{"alias":"DYX1","entrezGeneId":"161582"},{"alias":"DYX1C1","entrezGeneId":"161582"},{"alias":"DYXC1","entrezGeneId":"161582"},{"alias":"EKN1","entrezGeneId":"161582"},{"alias":"RD","entrezGeneId":"161582"},{"alias":"CSNK1A1P","entrezGeneId":"161635"},{"alias":"C15orf16","entrezGeneId":"161725"},{"alias":"C16ORF15","entrezGeneId":"161725"},{"alias":"CEZANNE2","entrezGeneId":"161725"},{"alias":"OTUD7","entrezGeneId":"161725"},{"alias":"hSpred1","entrezGeneId":"161742"},{"alias":"NFLS","entrezGeneId":"161742"},{"alias":"PPP1R147","entrezGeneId":"161742"},{"alias":"spred-1","entrezGeneId":"161742"},{"alias":"EXDL1","entrezGeneId":"161829"},{"alias":"HSD10","entrezGeneId":"161835"},{"alias":"FOG","entrezGeneId":"161882"},{"alias":"FOG1","entrezGeneId":"161882"},{"alias":"ZC2HC11A","entrezGeneId":"161882"},{"alias":"ZNF408","entrezGeneId":"161882"},{"alias":"ZNF89A","entrezGeneId":"161882"},{"alias":"TENRL","entrezGeneId":"161931"},{"alias":"TNT","entrezGeneId":"162083"},{"alias":"ZNF475","entrezGeneId":"162239"},{"alias":"MARCH-X","entrezGeneId":"162333"},{"alias":"RNF190","entrezGeneId":"162333"},{"alias":"AGAS","entrezGeneId":"162417"},{"alias":"ARGA","entrezGeneId":"162417"},{"alias":"FAM134C","entrezGeneId":"162427"},{"alias":"RHBDL4","entrezGeneId":"162494"},{"alias":"VRHO","entrezGeneId":"162494"},{"alias":"FNEPPK2","entrezGeneId":"162514"},{"alias":"OLMS","entrezGeneId":"162514"},{"alias":"VRL3","entrezGeneId":"162514"},{"alias":"MCT11","entrezGeneId":"162515"},{"alias":"CT144","entrezGeneId":"162517"},{"alias":"Fbx39","entrezGeneId":"162517"},{"alias":"IMP5","entrezGeneId":"162540"},{"alias":"K25IRS4","entrezGeneId":"162605"},{"alias":"KRT25D","entrezGeneId":"162605"},{"alias":"HsT2362","entrezGeneId":"162655"},{"alias":"LAS2","entrezGeneId":"162681"},{"alias":"ELOA3A","entrezGeneId":"162699"},{"alias":"HsT829","entrezGeneId":"162699"},{"alias":"TCEB3C","entrezGeneId":"162699"},{"alias":"TCEB3L2","entrezGeneId":"162699"},{"alias":"KR-ZNF1","entrezGeneId":"162966"},{"alias":"ZFPL","entrezGeneId":"162967"},{"alias":"ZFP296","entrezGeneId":"162979"},{"alias":"ZNF342","entrezGeneId":"162979"},{"alias":"FLAME-3","entrezGeneId":"162989"},{"alias":"FLAME3","entrezGeneId":"162989"},{"alias":"HTPCRH03","entrezGeneId":"162998"},{"alias":"OR19-10","entrezGeneId":"162998"},{"alias":"OR19-4","entrezGeneId":"162998"},{"alias":"HSD17","entrezGeneId":"163087"},{"alias":"TAF2GL","entrezGeneId":"163088"},{"alias":"CRI2","entrezGeneId":"163126"},{"alias":"EID-2","entrezGeneId":"163126"},{"alias":"ZNF779","entrezGeneId":"163131"},{"alias":"AMCNMY","entrezGeneId":"163175"},{"alias":"LGIL3","entrezGeneId":"163175"},{"alias":"C19orf46","entrezGeneId":"163183"},{"alias":"DFNB76","entrezGeneId":"163183"},{"alias":"KASH4","entrezGeneId":"163183"},{"alias":"Nesp4","entrezGeneId":"163183"},{"alias":"Nbla10512","entrezGeneId":"163255"},{"alias":"dJ1156J9.1","entrezGeneId":"163259"},{"alias":"LPPR5","entrezGeneId":"163404"},{"alias":"PAP2","entrezGeneId":"163404"},{"alias":"PAP2D","entrezGeneId":"163404"},{"alias":"PRG5","entrezGeneId":"163404"},{"alias":"C1ORF18","entrezGeneId":"163486"},{"alias":"C1orf218","entrezGeneId":"163486"},{"alias":"FAM31B","entrezGeneId":"163486"},{"alias":"TUDOR3","entrezGeneId":"163589"},{"alias":"IFRG15","entrezGeneId":"163590"},{"alias":"LULL1","entrezGeneId":"163590"},{"alias":"NET9","entrezGeneId":"163590"},{"alias":"CAGLP","entrezGeneId":"163688"},{"alias":"CRF2/12","entrezGeneId":"163702"},{"alias":"IFNLR","entrezGeneId":"163702"},{"alias":"IL-28R1","entrezGeneId":"163702"},{"alias":"IL28RA","entrezGeneId":"163702"},{"alias":"LICR2","entrezGeneId":"163702"},{"alias":"C1orf177","entrezGeneId":"163747"},{"alias":"LEM","entrezGeneId":"163747"},{"alias":"ANKRD38","entrezGeneId":"163782"},{"alias":"dJ1078M7.1","entrezGeneId":"163782"},{"alias":"MCPH14","entrezGeneId":"163786"},{"alias":"SAS-6","entrezGeneId":"163786"},{"alias":"SAS6","entrezGeneId":"163786"},{"alias":"C1orf55","entrezGeneId":"163859"},{"alias":"dJ671D7.1","entrezGeneId":"163859"},{"alias":"C1orf71","entrezGeneId":"163882"},{"alias":"PPP1R64","entrezGeneId":"163882"},{"alias":"helicase","entrezGeneId":"164045"},{"alias":"MER3","entrezGeneId":"164045"},{"alias":"POF9","entrezGeneId":"164045"},{"alias":"SEC63D1","entrezGeneId":"164045"},{"alias":"Si-11","entrezGeneId":"164045"},{"alias":"Si-11-6","entrezGeneId":"164045"},{"alias":"MPRA","entrezGeneId":"164091"},{"alias":"mSR","entrezGeneId":"164091"},{"alias":"PGLP","entrezGeneId":"164091"},{"alias":"C1orf65","entrezGeneId":"164127"},{"alias":"C20orf138","entrezGeneId":"164237"},{"alias":"dJ601O1.3","entrezGeneId":"164237"},{"alias":"WAP13","entrezGeneId":"164237"},{"alias":"C20orf75","entrezGeneId":"164312"},{"alias":"dJ1056H1.1","entrezGeneId":"164312"},{"alias":"NLRR-4","entrezGeneId":"164312"},{"alias":"NLRR4","entrezGeneId":"164312"},{"alias":"CSTT","entrezGeneId":"164380"},{"alias":"CTES6","entrezGeneId":"164380"},{"alias":"C20orf125","entrezGeneId":"164395"},{"alias":"CALN2","entrezGeneId":"164633"},{"alias":"IRIDA","entrezGeneId":"164656"},{"alias":"A3H","entrezGeneId":"164668"},{"alias":"ARP-10","entrezGeneId":"164668"},{"alias":"ARP10","entrezGeneId":"164668"},{"alias":"GRAMD7","entrezGeneId":"164684"},{"alias":"PAWP","entrezGeneId":"164684"},{"alias":"ODA16","entrezGeneId":"164781"},{"alias":"WDR69","entrezGeneId":"164781"},{"alias":"RNF192","entrezGeneId":"164832"},{"alias":"HCP7","entrezGeneId":"164837"},{"alias":"GPR113","entrezGeneId":"165082"},{"alias":"PGR23","entrezGeneId":"165082"},{"alias":"C2orf57","entrezGeneId":"165100"},{"alias":"GPCR","entrezGeneId":"165140"},{"alias":"GPR170","entrezGeneId":"165140"},{"alias":"TG1019","entrezGeneId":"165140"},{"alias":"FAM179A","entrezGeneId":"165186"},{"alias":"KIAA1946","entrezGeneId":"165215"},{"alias":"C1QTNF10","entrezGeneId":"165257"},{"alias":"CTRP10","entrezGeneId":"165257"},{"alias":"UBXD4","entrezGeneId":"165324"},{"alias":"CLECSF13","entrezGeneId":"165530"},{"alias":"KCLR","entrezGeneId":"165530"},{"alias":"ARTD7","entrezGeneId":"165631"},{"alias":"BAL3","entrezGeneId":"165631"},{"alias":"pART7","entrezGeneId":"165631"},{"alias":"ADMP","entrezGeneId":"165679"},{"alias":"C3orf57","entrezGeneId":"165679"},{"alias":"SSSPTB","entrezGeneId":"165679"},{"alias":"CT156","entrezGeneId":"165721"},{"alias":"DJ6","entrezGeneId":"165721"},{"alias":"GABABL","entrezGeneId":"165829"},{"alias":"PGR28","entrezGeneId":"165829"},{"alias":"CMYA1","entrezGeneId":"165904"},{"alias":"Xin","entrezGeneId":"165904"},{"alias":"hRNF168","entrezGeneId":"165918"},{"alias":"C4ST3","entrezGeneId":"166012"},{"alias":"EPM5","entrezGeneId":"166336"},{"alias":"KLHDC6","entrezGeneId":"166348"},{"alias":"AFG2","entrezGeneId":"166378"},{"alias":"EHLMRS","entrezGeneId":"166378"},{"alias":"SPAF","entrezGeneId":"166378"},{"alias":"C4orf24","entrezGeneId":"166379"},{"alias":"CL2","entrezGeneId":"166614"},{"alias":"CLICK-II","entrezGeneId":"166614"},{"alias":"CLICK2","entrezGeneId":"166614"},{"alias":"CLIK2","entrezGeneId":"166614"},{"alias":"DCAMKL2","entrezGeneId":"166614"},{"alias":"DCDC3","entrezGeneId":"166614"},{"alias":"DCDC3B","entrezGeneId":"166614"},{"alias":"DCK2","entrezGeneId":"166614"},{"alias":"GPR125","entrezGeneId":"166647"},{"alias":"PGR21","entrezGeneId":"166647"},{"alias":"TEM5L","entrezGeneId":"166647"},{"alias":"RNF129","entrezGeneId":"166655"},{"alias":"RNF33","entrezGeneId":"166655"},{"alias":"cblA","entrezGeneId":"166785"},{"alias":"ZNF509","entrezGeneId":"166793"},{"alias":"HEL106","entrezGeneId":"166815"},{"alias":"CT68","entrezGeneId":"166863"},{"alias":"SMS2","entrezGeneId":"166929"},{"alias":"G6VTS76519","entrezGeneId":"166979"},{"alias":"GLD2","entrezGeneId":"167153"},{"alias":"TUT2","entrezGeneId":"167153"},{"alias":"NUDT20","entrezGeneId":"167227"},{"alias":"NIM1","entrezGeneId":"167359"},{"alias":"C5orf11","entrezGeneId":"167410"},{"alias":"Lft","entrezGeneId":"167410"},{"alias":"DC-SCRIPT","entrezGeneId":"167465"},{"alias":"DCSCRIPT","entrezGeneId":"167465"},{"alias":"UNQ9217","entrezGeneId":"167555"},{"alias":"C6orf158","entrezGeneId":"167681"},{"alias":"dJ223E3.1","entrezGeneId":"167681"},{"alias":"C6orf152","entrezGeneId":"167691"},{"alias":"Bhlhb7","entrezGeneId":"167826"},{"alias":"bHLHe20","entrezGeneId":"167826"},{"alias":"C6orf198","entrezGeneId":"167838"},{"alias":"dJ522B19.2","entrezGeneId":"167838"},{"alias":"LST001","entrezGeneId":"167838"},{"alias":"MDP77","entrezGeneId":"167838"},{"alias":"bA503C24.7","entrezGeneId":"168002"},{"alias":"C6orf116","entrezGeneId":"168002"},{"alias":"DAPPER2","entrezGeneId":"168002"},{"alias":"DPR2","entrezGeneId":"168002"},{"alias":"bA85G2.1","entrezGeneId":"168090"},{"alias":"dJ416F21.2","entrezGeneId":"168090"},{"alias":"TRY5","entrezGeneId":"168330"},{"alias":"HEL-203","entrezGeneId":"168374"},{"alias":"HPF12","entrezGeneId":"168374"},{"alias":"HTF12","entrezGeneId":"168374"},{"alias":"TF12","entrezGeneId":"168374"},{"alias":"GalNAc-T5L","entrezGeneId":"168391"},{"alias":"GALNACT19","entrezGeneId":"168391"},{"alias":"GALNT15","entrezGeneId":"168391"},{"alias":"CAGE","entrezGeneId":"168400"},{"alias":"CT26","entrezGeneId":"168400"},{"alias":"CDC14B2","entrezGeneId":"168448"},{"alias":"CDC14Bretro","entrezGeneId":"168448"},{"alias":"C7orf74","entrezGeneId":"168455"},{"alias":"SEPHS1P","entrezGeneId":"168474"},{"alias":"HTX8","entrezGeneId":"168507"},{"alias":"PRO19563","entrezGeneId":"168507"},{"alias":"hIAN7","entrezGeneId":"168537"},{"alias":"IAN7","entrezGeneId":"168537"},{"alias":"EZI","entrezGeneId":"168544"},{"alias":"Zfp467","entrezGeneId":"168544"},{"alias":"BHLHB8","entrezGeneId":"168620"},{"alias":"MIST1","entrezGeneId":"168620"},{"alias":"CRIM3","entrezGeneId":"168667"},{"alias":"CV-2","entrezGeneId":"168667"},{"alias":"CV2","entrezGeneId":"168667"},{"alias":"ZnT-8","entrezGeneId":"169026"},{"alias":"ZNT8","entrezGeneId":"169026"},{"alias":"INDOL1","entrezGeneId":"169355"},{"alias":"C9orf96","entrezGeneId":"169436"},{"alias":"SgK071","entrezGeneId":"169436"},{"alias":"Sk521","entrezGeneId":"169436"},{"alias":"KV11.1","entrezGeneId":"169522"},{"alias":"Kv8.2","entrezGeneId":"169522"},{"alias":"RCD3B","entrezGeneId":"169522"},{"alias":"PRO34319","entrezGeneId":"169611"},{"alias":"C9orf71","entrezGeneId":"169693"},{"alias":"QSCN6L1","entrezGeneId":"169714"},{"alias":"SOXN","entrezGeneId":"169714"},{"alias":"NDH","entrezGeneId":"169792"},{"alias":"ZNF515","entrezGeneId":"169792"},{"alias":"CT1.26","entrezGeneId":"169966"},{"alias":"CT112","entrezGeneId":"169966"},{"alias":"bA445O16.1","entrezGeneId":"169981"},{"alias":"SPIN-3","entrezGeneId":"169981"},{"alias":"TDRD27","entrezGeneId":"169981"},{"alias":"FAM48B1","entrezGeneId":"170067"},{"alias":"FAM48B2","entrezGeneId":"170067"},{"alias":"PNMA7A","entrezGeneId":"170261"},{"alias":"SIZN","entrezGeneId":"170261"},{"alias":"SIZN1","entrezGeneId":"170261"},{"alias":"CT121","entrezGeneId":"170302"},{"alias":"EIEE1","entrezGeneId":"170302"},{"alias":"ISSX","entrezGeneId":"170302"},{"alias":"MRX29","entrezGeneId":"170302"},{"alias":"MRX32","entrezGeneId":"170302"},{"alias":"MRX33","entrezGeneId":"170302"},{"alias":"MRX36","entrezGeneId":"170302"},{"alias":"MRX38","entrezGeneId":"170302"},{"alias":"MRX43","entrezGeneId":"170302"},{"alias":"MRX54","entrezGeneId":"170302"},{"alias":"MRX76","entrezGeneId":"170302"},{"alias":"MRX87","entrezGeneId":"170302"},{"alias":"MRXS1","entrezGeneId":"170302"},{"alias":"PRTS","entrezGeneId":"170302"},{"alias":"C10orf73","entrezGeneId":"170370"},{"alias":"C10orf128","entrezGeneId":"170371"},{"alias":"LZP","entrezGeneId":"170392"},{"alias":"bA432J24.1","entrezGeneId":"170394"},{"alias":"pp8607","entrezGeneId":"170394"},{"alias":"PWWP2","entrezGeneId":"170394"},{"alias":"BDCA2","entrezGeneId":"170482"},{"alias":"CD303","entrezGeneId":"170482"},{"alias":"CLECSF11","entrezGeneId":"170482"},{"alias":"CLECSF7","entrezGeneId":"170482"},{"alias":"DLEC","entrezGeneId":"170482"},{"alias":"HECL","entrezGeneId":"170482"},{"alias":"PRO34150","entrezGeneId":"170482"},{"alias":"dJ885L7.7","entrezGeneId":"170485"},{"alias":"C20orf134","entrezGeneId":"170487"},{"alias":"dJ63M2.2","entrezGeneId":"170487"},{"alias":"bK3216D2.3","entrezGeneId":"170503"},{"alias":"dJ894K16.1","entrezGeneId":"170504"},{"alias":"DDX36","entrezGeneId":"170506"},{"alias":"G4R1","entrezGeneId":"170506"},{"alias":"MLEL1","entrezGeneId":"170506"},{"alias":"RHAU","entrezGeneId":"170506"},{"alias":"dJ862K6.3","entrezGeneId":"170510"},{"alias":"EIF4EBP2P","entrezGeneId":"170510"},{"alias":"dJ822J19.1","entrezGeneId":"170511"},{"alias":"ENSAP","entrezGeneId":"170511"},{"alias":"dJ697P8.1","entrezGeneId":"170513"},{"alias":"bA465L10.3","entrezGeneId":"170514"},{"alias":"FTLP","entrezGeneId":"170514"},{"alias":"dJ585I14.1","entrezGeneId":"170516"},{"alias":"GAPDP2","entrezGeneId":"170516"},{"alias":"bA189K21.2","entrezGeneId":"170517"},{"alias":"GCNT1P","entrezGeneId":"170517"},{"alias":"bA425M5.1","entrezGeneId":"170522"},{"alias":"GLRXP","entrezGeneId":"170522"},{"alias":"dJ984P4.2","entrezGeneId":"170523"},{"alias":"GSTM3P","entrezGeneId":"170523"},{"alias":"dJ447F3.1","entrezGeneId":"170524"},{"alias":"HNRPA1P3","entrezGeneId":"170524"},{"alias":"dJ977B1.2","entrezGeneId":"170526"},{"alias":"HNRPA3P","entrezGeneId":"170526"},{"alias":"HNRPA3P2","entrezGeneId":"170526"},{"alias":"bA359G22.1","entrezGeneId":"170527"},{"alias":"dJ1193N1.1","entrezGeneId":"170529"},{"alias":"LAMR1P","entrezGeneId":"170529"},{"alias":"LAMR1P1","entrezGeneId":"170529"},{"alias":"RPSA_24_1712","entrezGeneId":"170529"},{"alias":"bA102J14.2","entrezGeneId":"170533"},{"alias":"PA2G4L5","entrezGeneId":"170533"},{"alias":"AAOPD","entrezGeneId":"170534"},{"alias":"dJ1128N12.1","entrezGeneId":"170535"},{"alias":"dJ269M15.1","entrezGeneId":"170536"},{"alias":"PPIAL","entrezGeneId":"170536"},{"alias":"bA384D7.2","entrezGeneId":"170537"},{"alias":"bA425M5.2","entrezGeneId":"170539"},{"alias":"bA494B22.1","entrezGeneId":"170540"},{"alias":"PPIP11","entrezGeneId":"170540"},{"alias":"dJ914P20.4","entrezGeneId":"170541"},{"alias":"PSMD10P","entrezGeneId":"170541"},{"alias":"dJ539E24.2","entrezGeneId":"170542"},{"alias":"bA280O9.1","entrezGeneId":"170543"},{"alias":"RNF11B","entrezGeneId":"170543"},{"alias":"bA400P21.1","entrezGeneId":"170547"},{"alias":"SCYE1P","entrezGeneId":"170547"},{"alias":"dJ581P3.1","entrezGeneId":"170548"},{"alias":"SF3A3P","entrezGeneId":"170548"},{"alias":"dJ1041C10.2","entrezGeneId":"170550"},{"alias":"dJ1057D4.1","entrezGeneId":"170552"},{"alias":"dJ531H16.2","entrezGeneId":"170554"},{"alias":"TCTE1P","entrezGeneId":"170554"},{"alias":"dJ1125A11.2","entrezGeneId":"170555"},{"alias":"TPM5P","entrezGeneId":"170555"},{"alias":"dJ687F11.3","entrezGeneId":"170556"},{"alias":"dJ785G19.1","entrezGeneId":"170559"},{"alias":"XPO3P1","entrezGeneId":"170559"},{"alias":"HIMAP1","entrezGeneId":"170575"},{"alias":"IAN2","entrezGeneId":"170575"},{"alias":"IMAP1","entrezGeneId":"170575"},{"alias":"IMAP38","entrezGeneId":"170575"},{"alias":"A2","entrezGeneId":"170589"},{"alias":"GPA2","entrezGeneId":"170589"},{"alias":"ZSIG51","entrezGeneId":"170589"},{"alias":"Gm625","entrezGeneId":"170591"},{"alias":"S100-zeta","entrezGeneId":"170591"},{"alias":"UBM2","entrezGeneId":"170593"},{"alias":"Acrg","entrezGeneId":"170622"},{"alias":"CT12.3a","entrezGeneId":"170626"},{"alias":"CT12.3b","entrezGeneId":"170626"},{"alias":"GAGED4","entrezGeneId":"170626"},{"alias":"PLAC6","entrezGeneId":"170626"},{"alias":"pp9012","entrezGeneId":"170626"},{"alias":"XAGE-3","entrezGeneId":"170626"},{"alias":"CT12.5","entrezGeneId":"170627"},{"alias":"GAGED5","entrezGeneId":"170627"},{"alias":"XAGE-5","entrezGeneId":"170627"},{"alias":"C6orf16","entrezGeneId":"170679"},{"alias":"SEEK1","entrezGeneId":"170679"},{"alias":"C6orf17","entrezGeneId":"170680"},{"alias":"SPR1","entrezGeneId":"170680"},{"alias":"APS2","entrezGeneId":"170685"},{"alias":"DIPP3-alpha","entrezGeneId":"170685"},{"alias":"DIPP3a","entrezGeneId":"170685"},{"alias":"ADAMTS16s","entrezGeneId":"170690"},{"alias":"WMS4","entrezGeneId":"170691"},{"alias":"ADAMTS21","entrezGeneId":"170692"},{"alias":"KNO2","entrezGeneId":"170692"},{"alias":"MMCAT","entrezGeneId":"170692"},{"alias":"GSH2","entrezGeneId":"170825"},{"alias":"KV10.1","entrezGeneId":"170850"},{"alias":"KV6.3","entrezGeneId":"170850"},{"alias":"DEFQ1","entrezGeneId":"170949"},{"alias":"DEFT1","entrezGeneId":"170949"},{"alias":"HKMT1098","entrezGeneId":"170954"},{"alias":"KIAA1949","entrezGeneId":"170954"},{"alias":"CAGH1","entrezGeneId":"171017"},{"alias":"CAGH1A","entrezGeneId":"171017"},{"alias":"CIZ","entrezGeneId":"171017"},{"alias":"ERDA2","entrezGeneId":"171017"},{"alias":"NMP4","entrezGeneId":"171017"},{"alias":"NP","entrezGeneId":"171017"},{"alias":"TNRC1","entrezGeneId":"171017"},{"alias":"LINC00035","entrezGeneId":"171022"},{"alias":"NCRNA00035","entrezGeneId":"171022"},{"alias":"WBSCR26","entrezGeneId":"171022"},{"alias":"BOPS","entrezGeneId":"171023"},{"alias":"MDS","entrezGeneId":"171023"},{"alias":"SAMP14","entrezGeneId":"171169"},{"alias":"ARHV","entrezGeneId":"171177"},{"alias":"CHP","entrezGeneId":"171177"},{"alias":"WRCH2","entrezGeneId":"171177"},{"alias":"DNAJB1P","entrezGeneId":"171221"},{"alias":"HSP40","entrezGeneId":"171221"},{"alias":"psiHSP40","entrezGeneId":"171221"},{"alias":"UBCH7N2","entrezGeneId":"171222"},{"alias":"UBE2L5P","entrezGeneId":"171222"},{"alias":"AVR","entrezGeneId":"171389"},{"alias":"CLR11.4","entrezGeneId":"171389"},{"alias":"NALP6","entrezGeneId":"171389"},{"alias":"NAVR","entrezGeneId":"171389"},{"alias":"NAVR/AVR","entrezGeneId":"171389"},{"alias":"PAN3","entrezGeneId":"171389"},{"alias":"PYPAF5","entrezGeneId":"171389"},{"alias":"NS3BP","entrezGeneId":"171391"},{"alias":"TBZF","entrezGeneId":"171392"},{"alias":"TIZ","entrezGeneId":"171392"},{"alias":"EPF5","entrezGeneId":"171420"},{"alias":"EPF8","entrezGeneId":"171421"},{"alias":"ERp60","entrezGeneId":"171423"},{"alias":"GRP58P","entrezGeneId":"171423"},{"alias":"PDIA3P","entrezGeneId":"171423"},{"alias":"Sp17-2","entrezGeneId":"171424"},{"alias":"CLB","entrezGeneId":"171425"},{"alias":"CYP2F1P","entrezGeneId":"171427"},{"alias":"dJ836E8.1","entrezGeneId":"171472"},{"alias":"FUSIP1P2","entrezGeneId":"171472"},{"alias":"pFUSIP1","entrezGeneId":"171472"},{"alias":"SFRS13AP2","entrezGeneId":"171472"},{"alias":"TEX39A","entrezGeneId":"171482"},{"alias":"TEX39B","entrezGeneId":"171483"},{"alias":"TEX39C","entrezGeneId":"171484"},{"alias":"CAQ5","entrezGeneId":"171511"},{"alias":"CAQ14","entrezGeneId":"171512"},{"alias":"FHQTL","entrezGeneId":"171515"},{"alias":"CYP2T2P","entrezGeneId":"171523"},{"alias":"C14orf147","entrezGeneId":"171546"},{"alias":"SSSPTA","entrezGeneId":"171546"},{"alias":"PT-ALPHA","entrezGeneId":"171558"},{"alias":"PTA","entrezGeneId":"171558"},{"alias":"HMGA1L2","entrezGeneId":"171559"},{"alias":"HMGIYL2","entrezGeneId":"171559"},{"alias":"RPC22.9","entrezGeneId":"171568"},{"alias":"RPC8","entrezGeneId":"171568"},{"alias":"LABH3","entrezGeneId":"171586"},{"alias":"C21orf115","entrezGeneId":"191585"},{"alias":"PRED78","entrezGeneId":"191585"},{"alias":"BXLBV68","entrezGeneId":"192111"},{"alias":"MA","entrezGeneId":"192115"},{"alias":"MGAU","entrezGeneId":"192115"},{"alias":"RPS8_5_1417","entrezGeneId":"192133"},{"alias":"B3Gn-T6","entrezGeneId":"192134"},{"alias":"beta-1,3-Gn-T6","entrezGeneId":"192134"},{"alias":"beta3Gn-T6","entrezGeneId":"192134"},{"alias":"BGnT-6","entrezGeneId":"192134"},{"alias":"RLS","entrezGeneId":"192142"},{"alias":"HDLC1","entrezGeneId":"192144"},{"alias":"RH-II/GuBp1","entrezGeneId":"192146"},{"alias":"OXCT2P","entrezGeneId":"192217"},{"alias":"RCF1b","entrezGeneId":"192286"},{"alias":"K24","entrezGeneId":"192666"},{"alias":"KA24","entrezGeneId":"192666"},{"alias":"EIF2C3","entrezGeneId":"192669"},{"alias":"EIF2C4","entrezGeneId":"192670"},{"alias":"C21orf109","entrezGeneId":"193629"},{"alias":"NCRNA00189","entrezGeneId":"193629"},{"alias":"EPHD-2","entrezGeneId":"195814"},{"alias":"RDH#2","entrezGeneId":"195814"},{"alias":"RDH-E2","entrezGeneId":"195814"},{"alias":"RDHE2","entrezGeneId":"195814"},{"alias":"retSDR2","entrezGeneId":"195814"},{"alias":"C9orf21","entrezGeneId":"195827"},{"alias":"AFF29","entrezGeneId":"195828"},{"alias":"CDC14B","entrezGeneId":"195828"},{"alias":"ZFF29","entrezGeneId":"195828"},{"alias":"EMX2-AS1","entrezGeneId":"196047"},{"alias":"NCRNA00045","entrezGeneId":"196047"},{"alias":"DPPL2","entrezGeneId":"196051"},{"alias":"PPAPDC1","entrezGeneId":"196051"},{"alias":"PPAPDC1A","entrezGeneId":"196051"},{"alias":"METT5D1","entrezGeneId":"196074"},{"alias":"RPS2_18_1126","entrezGeneId":"196188"},{"alias":"IMMP1","entrezGeneId":"196294"},{"alias":"IMP1","entrezGeneId":"196294"},{"alias":"IMP1-LIKE","entrezGeneId":"196294"},{"alias":"OR11-67","entrezGeneId":"196335"},{"alias":"CK-78","entrezGeneId":"196374"},{"alias":"K5B","entrezGeneId":"196374"},{"alias":"K78","entrezGeneId":"196374"},{"alias":"Kb40","entrezGeneId":"196374"},{"alias":"RLP2","entrezGeneId":"196383"},{"alias":"deltex3","entrezGeneId":"196403"},{"alias":"RNF154","entrezGeneId":"196403"},{"alias":"ALDI","entrezGeneId":"196410"},{"alias":"CCDC131","entrezGeneId":"196441"},{"alias":"CSRC2","entrezGeneId":"196441"},{"alias":"PSRC2","entrezGeneId":"196441"},{"alias":"bcm1377","entrezGeneId":"196446"},{"alias":"C12orf15","entrezGeneId":"196446"},{"alias":"C12orf28","entrezGeneId":"196446"},{"alias":"P76","entrezGeneId":"196463"},{"alias":"LINC00054","entrezGeneId":"196475"},{"alias":"NCRMS","entrezGeneId":"196475"},{"alias":"NCRNA00054","entrezGeneId":"196475"},{"alias":"C12orf12","entrezGeneId":"196477"},{"alias":"eEF2-KMT","entrezGeneId":"196483"},{"alias":"EFM3","entrezGeneId":"196483"},{"alias":"FAM86A","entrezGeneId":"196483"},{"alias":"SB153","entrezGeneId":"196483"},{"alias":"C12orf53","entrezGeneId":"196500"},{"alias":"leda-1","entrezGeneId":"196500"},{"alias":"LEDA1","entrezGeneId":"196500"},{"alias":"PANP","entrezGeneId":"196500"},{"alias":"DCP1","entrezGeneId":"196513"},{"alias":"BDPLT7","entrezGeneId":"196527"},{"alias":"SCTS","entrezGeneId":"196527"},{"alias":"TMEM16F","entrezGeneId":"196527"},{"alias":"BAF200","entrezGeneId":"196528"},{"alias":"CSS6","entrezGeneId":"196528"},{"alias":"p200","entrezGeneId":"196528"},{"alias":"C13orf39","entrezGeneId":"196541"},{"alias":"C10orf72","entrezGeneId":"196740"},{"alias":"PAO","entrezGeneId":"196743"},{"alias":"AC4","entrezGeneId":"196883"},{"alias":"C14orf183","entrezGeneId":"196913"},{"alias":"C15orf33","entrezGeneId":"196951"},{"alias":"C15orf51","entrezGeneId":"196968"},{"alias":"DNM1DN14.2","entrezGeneId":"196968"},{"alias":"DNM1DN14@","entrezGeneId":"196968"},{"alias":"GRAMD2","entrezGeneId":"196996"},{"alias":"KLG","entrezGeneId":"197021"},{"alias":"KLPH","entrezGeneId":"197021"},{"alias":"JBS","entrezGeneId":"197131"},{"alias":"hPat1a","entrezGeneId":"197135"},{"alias":"OOMD4","entrezGeneId":"197135"},{"alias":"Pat1a","entrezGeneId":"197135"},{"alias":"NCRNA00311","entrezGeneId":"197196"},{"alias":"TMEM148","entrezGeneId":"197196"},{"alias":"DLD","entrezGeneId":"197257"},{"alias":"1110046B12Rik","entrezGeneId":"197258"},{"alias":"hMLKL","entrezGeneId":"197259"},{"alias":"C16orf15","entrezGeneId":"197335"},{"alias":"C16orf16","entrezGeneId":"197335"},{"alias":"C16orf17","entrezGeneId":"197335"},{"alias":"C16orf18","entrezGeneId":"197335"},{"alias":"C16orf19","entrezGeneId":"197335"},{"alias":"gs125","entrezGeneId":"197342"},{"alias":"SLX2B","entrezGeneId":"197342"},{"alias":"CASP16","entrezGeneId":"197350"},{"alias":"CLR16.2","entrezGeneId":"197358"},{"alias":"NOD3","entrezGeneId":"197358"},{"alias":"NSE1","entrezGeneId":"197370"},{"alias":"ZNF553","entrezGeneId":"197407"},{"alias":"C20orf201","entrezGeneId":"198437"},{"alias":"DZIP2","entrezGeneId":"199221"},{"alias":"PKD5","entrezGeneId":"199221"},{"alias":"IFT139A","entrezGeneId":"199223"},{"alias":"STI2","entrezGeneId":"199223"},{"alias":"C19orf59","entrezGeneId":"199675"},{"alias":"CER2","entrezGeneId":"199699"},{"alias":"CERL2","entrezGeneId":"199699"},{"alias":"CKTSF1B3","entrezGeneId":"199699"},{"alias":"COCO","entrezGeneId":"199699"},{"alias":"CRL2","entrezGeneId":"199699"},{"alias":"DANTE","entrezGeneId":"199699"},{"alias":"GREM3","entrezGeneId":"199699"},{"alias":"SP1","entrezGeneId":"199699"},{"alias":"CLR19.4","entrezGeneId":"199713"},{"alias":"HYDM","entrezGeneId":"199713"},{"alias":"NALP7","entrezGeneId":"199713"},{"alias":"NOD12","entrezGeneId":"199713"},{"alias":"PAN7","entrezGeneId":"199713"},{"alias":"PYPAF3","entrezGeneId":"199713"},{"alias":"IGSF4C","entrezGeneId":"199731"},{"alias":"Necl-4","entrezGeneId":"199731"},{"alias":"NECL4","entrezGeneId":"199731"},{"alias":"synCAM4","entrezGeneId":"199731"},{"alias":"TSLL2","entrezGeneId":"199731"},{"alias":"U2AF1-RS3","entrezGeneId":"199746"},{"alias":"U2AF1L3","entrezGeneId":"199746"},{"alias":"U2AF1L3V1","entrezGeneId":"199746"},{"alias":"U2AF1RS3","entrezGeneId":"199746"},{"alias":"U2af26","entrezGeneId":"199746"},{"alias":"BCNP1","entrezGeneId":"199786"},{"alias":"AM5","entrezGeneId":"199800"},{"alias":"C19orf76","entrezGeneId":"199800"},{"alias":"LEP8","entrezGeneId":"199834"},{"alias":"SPRL4A","entrezGeneId":"199834"},{"alias":"CMS15","entrezGeneId":"199857"},{"alias":"ARAP","entrezGeneId":"199920"},{"alias":"C1orf168","entrezGeneId":"199920"},{"alias":"Ima1","entrezGeneId":"199953"},{"alias":"NET5","entrezGeneId":"199953"},{"alias":"SAMP1","entrezGeneId":"199953"},{"alias":"CYP4A20","entrezGeneId":"199974"},{"alias":"C1orf86","entrezGeneId":"199990"},{"alias":"FP7162","entrezGeneId":"199990"},{"alias":"SGLT4","entrezGeneId":"200010"},{"alias":"COAS-3","entrezGeneId":"200025"},{"alias":"COAS3","entrezGeneId":"200025"},{"alias":"NBPF24","entrezGeneId":"200030"},{"alias":"IL14","entrezGeneId":"200081"},{"alias":"TXLN","entrezGeneId":"200081"},{"alias":"PLDC","entrezGeneId":"200150"},{"alias":"CT143","entrezGeneId":"200162"},{"alias":"PF6","entrezGeneId":"200162"},{"alias":"KCP2","entrezGeneId":"200185"},{"alias":"TORC-2","entrezGeneId":"200186"},{"alias":"TORC2","entrezGeneId":"200186"},{"alias":"C1orf126","entrezGeneId":"200197"},{"alias":"C1orf69","entrezGeneId":"200205"},{"alias":"MMDS3","entrezGeneId":"200205"},{"alias":"SPG74","entrezGeneId":"200205"},{"alias":"C20orf106","entrezGeneId":"200232"},{"alias":"dJ1153D9.3","entrezGeneId":"200232"},{"alias":"C22orf37","entrezGeneId":"200298"},{"alias":"A3A","entrezGeneId":"200315"},{"alias":"ARP3","entrezGeneId":"200315"},{"alias":"bK150C2.1","entrezGeneId":"200315"},{"alias":"PHRBN","entrezGeneId":"200315"},{"alias":"A3F","entrezGeneId":"200316"},{"alias":"ARP8","entrezGeneId":"200316"},{"alias":"BK150C2.4.MRNA","entrezGeneId":"200316"},{"alias":"KA6","entrezGeneId":"200316"},{"alias":"bA395L14.1","entrezGeneId":"200350"},{"alias":"FOXD5","entrezGeneId":"200350"},{"alias":"FAP221","entrezGeneId":"200373"},{"alias":"PCDP1","entrezGeneId":"200373"},{"alias":"SCAR22","entrezGeneId":"200403"},{"alias":"ALMS1L","entrezGeneId":"200420"},{"alias":"ALMS1P","entrezGeneId":"200420"},{"alias":"hCG_40738","entrezGeneId":"200424"},{"alias":"BRICD1B","entrezGeneId":"200504"},{"alias":"GDDR","entrezGeneId":"200504"},{"alias":"PRO813","entrezGeneId":"200504"},{"alias":"TFIZ1","entrezGeneId":"200504"},{"alias":"VLTI465","entrezGeneId":"200504"},{"alias":"C2orf51","entrezGeneId":"200523"},{"alias":"TSC21","entrezGeneId":"200523"},{"alias":"DARP","entrezGeneId":"200539"},{"alias":"MARP3","entrezGeneId":"200539"},{"alias":"APFL","entrezGeneId":"200558"},{"alias":"C2orf13","entrezGeneId":"200558"},{"alias":"PALF","entrezGeneId":"200558"},{"alias":"Xip1","entrezGeneId":"200558"},{"alias":"ZCCHH1","entrezGeneId":"200558"},{"alias":"CCL","entrezGeneId":"200575"},{"alias":"CRYG5","entrezGeneId":"200575"},{"alias":"CRYGEP1","entrezGeneId":"200575"},{"alias":"D2S1472","entrezGeneId":"200575"},{"alias":"G2","entrezGeneId":"200575"},{"alias":"CFD","entrezGeneId":"200576"},{"alias":"FAB1","entrezGeneId":"200576"},{"alias":"HEL37","entrezGeneId":"200576"},{"alias":"PIP5K","entrezGeneId":"200576"},{"alias":"PIP5K3","entrezGeneId":"200576"},{"alias":"ZFYVE29","entrezGeneId":"200576"},{"alias":"KCP3","entrezGeneId":"200634"},{"alias":"Spred-2","entrezGeneId":"200734"},{"alias":"EEYORE","entrezGeneId":"200765"},{"alias":"ALG1L1","entrezGeneId":"200810"},{"alias":"KCASH3","entrezGeneId":"200845"},{"alias":"AH","entrezGeneId":"200879"},{"alias":"ARWH2","entrezGeneId":"200879"},{"alias":"HYPT7","entrezGeneId":"200879"},{"alias":"LAH2","entrezGeneId":"200879"},{"alias":"LPDLR","entrezGeneId":"200879"},{"alias":"mPA-PLA1","entrezGeneId":"200879"},{"alias":"PLA1B","entrezGeneId":"200879"},{"alias":"ARL2L1","entrezGeneId":"200894"},{"alias":"JBTS8","entrezGeneId":"200894"},{"alias":"DHFRL1","entrezGeneId":"200895"},{"alias":"DHFRP4","entrezGeneId":"200895"},{"alias":"5HT3D","entrezGeneId":"200909"},{"alias":"OSTA","entrezGeneId":"200931"},{"alias":"OSTalpha","entrezGeneId":"200931"},{"alias":"Fbx45","entrezGeneId":"200933"},{"alias":"CHL","entrezGeneId":"200942"},{"alias":"MUC-20","entrezGeneId":"200958"},{"alias":"CCDC46","entrezGeneId":"201134"},{"alias":"MACOCO","entrezGeneId":"201134"},{"alias":"SDR32C2","entrezGeneId":"201140"},{"alias":"FAM18B2","entrezGeneId":"201158"},{"alias":"3110013H01Rik","entrezGeneId":"201161"},{"alias":"CENP-V","entrezGeneId":"201161"},{"alias":"p30","entrezGeneId":"201161"},{"alias":"PRR6","entrezGeneId":"201161"},{"alias":"BHD","entrezGeneId":"201163"},{"alias":"FLCL","entrezGeneId":"201163"},{"alias":"ZUC","entrezGeneId":"201164"},{"alias":"CAMGAP1","entrezGeneId":"201176"},{"alias":"PP905","entrezGeneId":"201176"},{"alias":"SH3D20","entrezGeneId":"201176"},{"alias":"SH3P20","entrezGeneId":"201176"},{"alias":"C17orf108","entrezGeneId":"201229"},{"alias":"HSD24","entrezGeneId":"201229"},{"alias":"MCT13","entrezGeneId":"201232"},{"alias":"C17orf74","entrezGeneId":"201243"},{"alias":"CENP-X","entrezGeneId":"201254"},{"alias":"D9","entrezGeneId":"201254"},{"alias":"FAAP10","entrezGeneId":"201254"},{"alias":"MHF2","entrezGeneId":"201254"},{"alias":"STRA13","entrezGeneId":"201254"},{"alias":"RPL32_21_1577","entrezGeneId":"201259"},{"alias":"C17orf26","entrezGeneId":"201266"},{"alias":"ZIP-11","entrezGeneId":"201266"},{"alias":"ZIP11","entrezGeneId":"201266"},{"alias":"NOS2B","entrezGeneId":"201288"},{"alias":"4732463G12Rik","entrezGeneId":"201292"},{"alias":"FHL3","entrezGeneId":"201294"},{"alias":"HLH3","entrezGeneId":"201294"},{"alias":"HPLH3","entrezGeneId":"201294"},{"alias":"Munc13-4","entrezGeneId":"201294"},{"alias":"RAD52B","entrezGeneId":"201299"},{"alias":"FBX15","entrezGeneId":"201456"},{"alias":"APM-1","entrezGeneId":"201501"},{"alias":"APM1","entrezGeneId":"201501"},{"alias":"ZBTB36","entrezGeneId":"201501"},{"alias":"ZNF857C","entrezGeneId":"201501"},{"alias":"ZNF494","entrezGeneId":"201516"},{"alias":"PTPLB","entrezGeneId":"201562"},{"alias":"CDG1X","entrezGeneId":"201595"},{"alias":"SIMP","entrezGeneId":"201595"},{"alias":"STT3-B","entrezGeneId":"201595"},{"alias":"DHC3","entrezGeneId":"201625"},{"alias":"DLP12","entrezGeneId":"201625"},{"alias":"DLP3","entrezGeneId":"201625"},{"alias":"DNAH12L","entrezGeneId":"201625"},{"alias":"DNAH7L","entrezGeneId":"201625"},{"alias":"DNAHC12","entrezGeneId":"201625"},{"alias":"DNAHC3","entrezGeneId":"201625"},{"alias":"DNHD2","entrezGeneId":"201625"},{"alias":"HDHC3","entrezGeneId":"201625"},{"alias":"HL-19","entrezGeneId":"201625"},{"alias":"HL19","entrezGeneId":"201625"},{"alias":"2'-PDE","entrezGeneId":"201626"},{"alias":"2-PDE","entrezGeneId":"201626"},{"alias":"AFI1A","entrezGeneId":"201627"},{"alias":"FAM116A","entrezGeneId":"201627"},{"alias":"VSIG9","entrezGeneId":"201633"},{"alias":"VSTM3","entrezGeneId":"201633"},{"alias":"WUCAM","entrezGeneId":"201633"},{"alias":"RCDG1","entrezGeneId":"201725"},{"alias":"P4","entrezGeneId":"201780"},{"alias":"C4orf34","entrezGeneId":"201895"},{"alias":"FAM28A","entrezGeneId":"201965"},{"alias":"RWDD4A","entrezGeneId":"201965"},{"alias":"CCDC111","entrezGeneId":"201973"},{"alias":"MYP22","entrezGeneId":"201973"},{"alias":"Primpol1","entrezGeneId":"201973"},{"alias":"GK7P","entrezGeneId":"201989"},{"alias":"GKP1","entrezGeneId":"201989"},{"alias":"CMVFR","entrezGeneId":"202018"},{"alias":"OCLSBG","entrezGeneId":"202018"},{"alias":"CCDC161","entrezGeneId":"202051"},{"alias":"T6441","entrezGeneId":"202051"},{"alias":"RPL27_5_551","entrezGeneId":"202122"},{"alias":"KENAE","entrezGeneId":"202243"},{"alias":"C5orf27","entrezGeneId":"202299"},{"alias":"FIS","entrezGeneId":"202299"},{"alias":"C5orf29","entrezGeneId":"202309"},{"alias":"C5orf10","entrezGeneId":"202333"},{"alias":"SPRYD2","entrezGeneId":"202333"},{"alias":"TRIM76","entrezGeneId":"202333"},{"alias":"YANK1","entrezGeneId":"202374"},{"alias":"DC2L","entrezGeneId":"202459"},{"alias":"OSTCL","entrezGeneId":"202459"},{"alias":"D6S46","entrezGeneId":"202500"},{"alias":"DRC5","entrezGeneId":"202500"},{"alias":"FAP155","entrezGeneId":"202500"},{"alias":"SLM-1","entrezGeneId":"202559"},{"alias":"SLM1","entrezGeneId":"202559"},{"alias":"TRIM39R","entrezGeneId":"202658"},{"alias":"RPL17_17_857","entrezGeneId":"202789"},{"alias":"OR2A18P","entrezGeneId":"202861"},{"alias":"SDMG1","entrezGeneId":"202915"},{"alias":"CDCBM6","entrezGeneId":"203068"},{"alias":"CSCSC1","entrezGeneId":"203068"},{"alias":"M40","entrezGeneId":"203068"},{"alias":"OK/SW-cl.56","entrezGeneId":"203068"},{"alias":"TUBB1","entrezGeneId":"203068"},{"alias":"TUBB5","entrezGeneId":"203068"},{"alias":"CT153","entrezGeneId":"203074"},{"alias":"T-SP1","entrezGeneId":"203074"},{"alias":"TSP1","entrezGeneId":"203074"},{"alias":"UNQ9391","entrezGeneId":"203074"},{"alias":"C8orf47","entrezGeneId":"203111"},{"alias":"LGIL4","entrezGeneId":"203190"},{"alias":"C9orf91","entrezGeneId":"203197"},{"alias":"ALSFTD","entrezGeneId":"203228"},{"alias":"DENNL72","entrezGeneId":"203228"},{"alias":"FTDALS","entrezGeneId":"203228"},{"alias":"FTDALS1","entrezGeneId":"203228"},{"alias":"bA536D16.1","entrezGeneId":"203238"},{"alias":"bA778P13.1","entrezGeneId":"203238"},{"alias":"C9orf93","entrezGeneId":"203238"},{"alias":"bA379C10.2","entrezGeneId":"203245"},{"alias":"C9orf90","entrezGeneId":"203245"},{"alias":"C9orf25","entrezGeneId":"203259"},{"alias":"PSEC0222","entrezGeneId":"203260"},{"alias":"ANKRD14","entrezGeneId":"203286"},{"alias":"NPHP16","entrezGeneId":"203286"},{"alias":"PKDR1","entrezGeneId":"203286"},{"alias":"SAMD6","entrezGeneId":"203286"},{"alias":"CXorf61","entrezGeneId":"203413"},{"alias":"KK-LC-1","entrezGeneId":"203413"},{"alias":"KKLC1","entrezGeneId":"203413"},{"alias":"CXorf24","entrezGeneId":"203414"},{"alias":"CXorf50","entrezGeneId":"203429"},{"alias":"LINC00246A","entrezGeneId":"203429"},{"alias":"NCRNA00246","entrezGeneId":"203429"},{"alias":"NCRNA00246A","entrezGeneId":"203429"},{"alias":"Mar3","entrezGeneId":"203430"},{"alias":"Mart3","entrezGeneId":"203430"},{"alias":"SIRH9","entrezGeneId":"203430"},{"alias":"ZCCHC5","entrezGeneId":"203430"},{"alias":"ZHC5","entrezGeneId":"203430"},{"alias":"NESK","entrezGeneId":"203447"},{"alias":"HMGA1L1","entrezGeneId":"203477"},{"alias":"HMGIYL1","entrezGeneId":"203477"},{"alias":"DDX26B","entrezGeneId":"203522"},{"alias":"ZSCAN19","entrezGeneId":"203523"},{"alias":"MEAX","entrezGeneId":"203547"},{"alias":"XMEA","entrezGeneId":"203547"},{"alias":"CT16.4","entrezGeneId":"203569"},{"alias":"GAGEC2","entrezGeneId":"203569"},{"alias":"GAGEE2","entrezGeneId":"203569"},{"alias":"PAGE-2","entrezGeneId":"203569"},{"alias":"CDY","entrezGeneId":"203611"},{"alias":"GDD1","entrezGeneId":"203859"},{"alias":"LGMD2L","entrezGeneId":"203859"},{"alias":"TMEM16E","entrezGeneId":"203859"},{"alias":"RPSA_17_1251","entrezGeneId":"204010"},{"alias":"ARCI9","entrezGeneId":"204219"},{"alias":"LASS3","entrezGeneId":"204219"},{"alias":"PDIA7","entrezGeneId":"204474"},{"alias":"IGLJ-C/OR18","entrezGeneId":"204777"},{"alias":"IGLJ-COR18","entrezGeneId":"204777"},{"alias":"CLR19.6","entrezGeneId":"204801"},{"alias":"NALP11","entrezGeneId":"204801"},{"alias":"NOD17","entrezGeneId":"204801"},{"alias":"PAN10","entrezGeneId":"204801"},{"alias":"PYPAF6","entrezGeneId":"204801"},{"alias":"PYPAF7","entrezGeneId":"204801"},{"alias":"Myak","entrezGeneId":"204851"},{"alias":"Nbak2","entrezGeneId":"204851"},{"alias":"CTL5","entrezGeneId":"204962"},{"alias":"FAM123C","entrezGeneId":"205147"},{"alias":"LINC00116","entrezGeneId":"205251"},{"alias":"NCRNA00116","entrezGeneId":"205251"},{"alias":"DIA1","entrezGeneId":"205428"},{"alias":"GoPro49","entrezGeneId":"205428"},{"alias":"HASF","entrezGeneId":"205428"},{"alias":"KIAA2018","entrezGeneId":"205717"},{"alias":"SPRYD6","entrezGeneId":"205860"},{"alias":"APQ","entrezGeneId":"206338"},{"alias":"AQPEP","entrezGeneId":"206338"},{"alias":"TAQPEP","entrezGeneId":"206338"},{"alias":"Dct1","entrezGeneId":"206358"},{"alias":"LYAAT1","entrezGeneId":"206358"},{"alias":"PAT1","entrezGeneId":"206358"},{"alias":"TRAMD3","entrezGeneId":"206358"},{"alias":"dJ507I15.1","entrezGeneId":"207032"},{"alias":"CXorf11","entrezGeneId":"207063"},{"alias":"DHRS5X","entrezGeneId":"207063"},{"alias":"DHRS5Y","entrezGeneId":"207063"},{"alias":"DHRSXY","entrezGeneId":"207063"},{"alias":"DHRSY","entrezGeneId":"207063"},{"alias":"SDR46C1","entrezGeneId":"207063"},{"alias":"SDR7C6","entrezGeneId":"207063"},{"alias":"SFTPF","entrezGeneId":"207107"},{"alias":"ATXPC","entrezGeneId":"219285"},{"alias":"C7orf6","entrezGeneId":"219285"},{"alias":"DRIF2","entrezGeneId":"219285"},{"alias":"UEF1","entrezGeneId":"219285"},{"alias":"FAM123A","entrezGeneId":"219287"},{"alias":"UBH1","entrezGeneId":"219333"},{"alias":"USP12L1","entrezGeneId":"219333"},{"alias":"IF3mt","entrezGeneId":"219402"},{"alias":"Gsh-1","entrezGeneId":"219409"},{"alias":"GSH1","entrezGeneId":"219409"},{"alias":"OR11-135","entrezGeneId":"219428"},{"alias":"OR11-136","entrezGeneId":"219429"},{"alias":"OR4C11P","entrezGeneId":"219429"},{"alias":"OR11-137","entrezGeneId":"219431"},{"alias":"OR4S2P","entrezGeneId":"219431"},{"alias":"OST725","entrezGeneId":"219431"},{"alias":"OR11-138","entrezGeneId":"219432"},{"alias":"OR11-141","entrezGeneId":"219436"},{"alias":"OR11-150","entrezGeneId":"219436"},{"alias":"OR11-151","entrezGeneId":"219437"},{"alias":"OST262","entrezGeneId":"219437"},{"alias":"OR11-143","entrezGeneId":"219438"},{"alias":"OR11-12","entrezGeneId":"219445"},{"alias":"OR11-156","entrezGeneId":"219445"},{"alias":"OR7F5P","entrezGeneId":"219445"},{"alias":"OR11-168","entrezGeneId":"219447"},{"alias":"OR11-174","entrezGeneId":"219453"},{"alias":"OR11-177","entrezGeneId":"219464"},{"alias":"OR11-180","entrezGeneId":"219469"},{"alias":"OR11-181","entrezGeneId":"219473"},{"alias":"OR11-183","entrezGeneId":"219477"},{"alias":"OR11-185","entrezGeneId":"219479"},{"alias":"OR5R1P","entrezGeneId":"219479"},{"alias":"OR11-191","entrezGeneId":"219482"},{"alias":"OR11-194","entrezGeneId":"219484"},{"alias":"OR11-199","entrezGeneId":"219487"},{"alias":"OR11-209","entrezGeneId":"219493"},{"alias":"PJCG3","entrezGeneId":"219525"},{"alias":"CHASM","entrezGeneId":"219537"},{"alias":"DT2P1G7","entrezGeneId":"219541"},{"alias":"LCMR1","entrezGeneId":"219541"},{"alias":"MED19AS","entrezGeneId":"219541"},{"alias":"C7orf62","entrezGeneId":"219557"},{"alias":"FOLH2","entrezGeneId":"219595"},{"alias":"FOLHP","entrezGeneId":"219595"},{"alias":"GCP3","entrezGeneId":"219595"},{"alias":"GCPIII","entrezGeneId":"219595"},{"alias":"PSM","entrezGeneId":"219595"},{"alias":"PSMA-LIKE","entrezGeneId":"219595"},{"alias":"PSMAL","entrezGeneId":"219595"},{"alias":"bA63A2.1","entrezGeneId":"219621"},{"alias":"C10orf107","entrezGeneId":"219621"},{"alias":"C10orf56","entrezGeneId":"219654"},{"alias":"Z3CXXC8","entrezGeneId":"219654"},{"alias":"C10orf63","entrezGeneId":"219670"},{"alias":"CFAP106","entrezGeneId":"219670"},{"alias":"CT81","entrezGeneId":"219681"},{"alias":"KU-CT-1","entrezGeneId":"219681"},{"alias":"p53RDL1","entrezGeneId":"219699"},{"alias":"UNC5H2","entrezGeneId":"219699"},{"alias":"C10orf24","entrezGeneId":"219736"},{"alias":"C10orf35","entrezGeneId":"219738"},{"alias":"NET41","entrezGeneId":"219743"},{"alias":"KOX19","entrezGeneId":"219749"},{"alias":"Zfp9","entrezGeneId":"219749"},{"alias":"CX40.1","entrezGeneId":"219770"},{"alias":"C10orf9","entrezGeneId":"219771"},{"alias":"CBCP1","entrezGeneId":"219771"},{"alias":"CCNX","entrezGeneId":"219771"},{"alias":"CFP1","entrezGeneId":"219771"},{"alias":"bA531F24.1","entrezGeneId":"219790"},{"alias":"PLEKHK1","entrezGeneId":"219790"},{"alias":"C10orf27","entrezGeneId":"219793"},{"alias":"SPATIAL","entrezGeneId":"219793"},{"alias":"HLS","entrezGeneId":"219844"},{"alias":"pp11662","entrezGeneId":"219855"},{"alias":"OR11-317","entrezGeneId":"219858"},{"alias":"OR11-298","entrezGeneId":"219865"},{"alias":"OR8G5P","entrezGeneId":"219865"},{"alias":"OR8G6","entrezGeneId":"219865"},{"alias":"OR11-274","entrezGeneId":"219869"},{"alias":"OR11-282","entrezGeneId":"219869"},{"alias":"OR10G10P","entrezGeneId":"219870"},{"alias":"OR11-279","entrezGeneId":"219873"},{"alias":"OR11-277","entrezGeneId":"219874"},{"alias":"OR11-276","entrezGeneId":"219875"},{"alias":"El","entrezGeneId":"219899"},{"alias":"LRRC35","entrezGeneId":"219899"},{"alias":"L21mt","entrezGeneId":"219927"},{"alias":"MRP-L21","entrezGeneId":"219927"},{"alias":"SHEP10","entrezGeneId":"219931"},{"alias":"TPC2","entrezGeneId":"219931"},{"alias":"CT132","entrezGeneId":"219938"},{"alias":"SPAS1","entrezGeneId":"219938"},{"alias":"spergen1","entrezGeneId":"219938"},{"alias":"OR11-226","entrezGeneId":"219952"},{"alias":"OR11-228","entrezGeneId":"219954"},{"alias":"OR9Q2P","entrezGeneId":"219957"},{"alias":"OR11-231","entrezGeneId":"219958"},{"alias":"OR11-232","entrezGeneId":"219959"},{"alias":"OST034","entrezGeneId":"219959"},{"alias":"OR11-233","entrezGeneId":"219960"},{"alias":"OR11-237","entrezGeneId":"219965"},{"alias":"OR5B20P","entrezGeneId":"219965"},{"alias":"BXMAS2-10","entrezGeneId":"219970"},{"alias":"GATF-B","entrezGeneId":"219970"},{"alias":"Mpg-1","entrezGeneId":"219972"},{"alias":"MPG1","entrezGeneId":"219972"},{"alias":"MPS1","entrezGeneId":"219972"},{"alias":"OR11-249","entrezGeneId":"219982"},{"alias":"OR5A1P","entrezGeneId":"219982"},{"alias":"OST181","entrezGeneId":"219982"},{"alias":"OR11-250","entrezGeneId":"219983"},{"alias":"OR4D11P","entrezGeneId":"219986"},{"alias":"hPat1b","entrezGeneId":"219988"},{"alias":"Pat1b","entrezGeneId":"219988"},{"alias":"PLAC1L","entrezGeneId":"219990"},{"alias":"TMEM122","entrezGeneId":"219990"},{"alias":"URG11","entrezGeneId":"220001"},{"alias":"VWC1","entrezGeneId":"220001"},{"alias":"CYBASC3","entrezGeneId":"220002"},{"alias":"LCYTB","entrezGeneId":"220002"},{"alias":"C11orf66","entrezGeneId":"220004"},{"alias":"IIIG9","entrezGeneId":"220004"},{"alias":"GDE6","entrezGeneId":"220032"},{"alias":"C11orf82","entrezGeneId":"220042"},{"alias":"noxin","entrezGeneId":"220042"},{"alias":"CT148","entrezGeneId":"220047"},{"alias":"HSD9","entrezGeneId":"220047"},{"alias":"TAOS1","entrezGeneId":"220064"},{"alias":"C11orf76","entrezGeneId":"220070"},{"alias":"CFAP111","entrezGeneId":"220074"},{"alias":"DFNB63","entrezGeneId":"220074"},{"alias":"LRRC51","entrezGeneId":"220074"},{"alias":"FAM194B","entrezGeneId":"220081"},{"alias":"CBY2","entrezGeneId":"220082"},{"alias":"NURIT","entrezGeneId":"220082"},{"alias":"CTAGE-3","entrezGeneId":"220112"},{"alias":"CTAGE3","entrezGeneId":"220112"},{"alias":"TPTEps1","entrezGeneId":"220115"},{"alias":"C18orf24","entrezGeneId":"220134"},{"alias":"CCDC11","entrezGeneId":"220136"},{"alias":"HTX6","entrezGeneId":"220136"},{"alias":"DOK5L","entrezGeneId":"220164"},{"alias":"HsT3226","entrezGeneId":"220164"},{"alias":"bHLHa13","entrezGeneId":"220202"},{"alias":"Math5","entrezGeneId":"220202"},{"alias":"NCRNA","entrezGeneId":"220202"},{"alias":"PHPVAR","entrezGeneId":"220202"},{"alias":"RNANC","entrezGeneId":"220202"},{"alias":"DUBA7","entrezGeneId":"220213"},{"alias":"OTDC1","entrezGeneId":"220213"},{"alias":"GlialCAM","entrezGeneId":"220296"},{"alias":"MLC2A","entrezGeneId":"220296"},{"alias":"MLC2B","entrezGeneId":"220296"},{"alias":"NS5ATP13TP2","entrezGeneId":"220323"},{"alias":"RPS4P16","entrezGeneId":"220433"},{"alias":"RPS4X_8_1313","entrezGeneId":"220433"},{"alias":"TL132","entrezGeneId":"220594"},{"alias":"RPLP0_2_209","entrezGeneId":"220717"},{"alias":"CDK7PS","entrezGeneId":"220786"},{"alias":"FUNDC2P","entrezGeneId":"220793"},{"alias":"FABP5L3","entrezGeneId":"220832"},{"alias":"DC36","entrezGeneId":"220869"},{"alias":"LAMR1P15","entrezGeneId":"220885"},{"alias":"LAMRL5","entrezGeneId":"220885"},{"alias":"RPSA_25_1791","entrezGeneId":"220885"},{"alias":"bA330O11.1","entrezGeneId":"220929"},{"alias":"C10orf36","entrezGeneId":"220963"},{"alias":"MCT9","entrezGeneId":"220963"},{"alias":"FAM13C1","entrezGeneId":"220965"},{"alias":"c-MIR","entrezGeneId":"220972"},{"alias":"CMIR","entrezGeneId":"220972"},{"alias":"MARCH-VIII","entrezGeneId":"220972"},{"alias":"MIR","entrezGeneId":"220972"},{"alias":"RNF178","entrezGeneId":"220972"},{"alias":"OR6D2P","entrezGeneId":"220974"},{"alias":"2610510D13Rik","entrezGeneId":"220988"},{"alias":"D10S102","entrezGeneId":"220988"},{"alias":"FBRNP","entrezGeneId":"220988"},{"alias":"HNRPA3","entrezGeneId":"220988"},{"alias":"CG4853","entrezGeneId":"221002"},{"alias":"C10orf37","entrezGeneId":"221017"},{"alias":"C6orf182P","entrezGeneId":"221017"},{"alias":"C10orf74","entrezGeneId":"221035"},{"alias":"Yip2b","entrezGeneId":"221035"},{"alias":"KDM3C","entrezGeneId":"221037"},{"alias":"TRIP-8","entrezGeneId":"221037"},{"alias":"TRIP8","entrezGeneId":"221037"},{"alias":"C10orf49","entrezGeneId":"221044"},{"alias":"GRP","entrezGeneId":"221044"},{"alias":"GRP/UCMA","entrezGeneId":"221044"},{"alias":"C10orf38","entrezGeneId":"221061"},{"alias":"bA570F3.1","entrezGeneId":"221074"},{"alias":"LZT-Hs8","entrezGeneId":"221074"},{"alias":"ZIP-12","entrezGeneId":"221074"},{"alias":"4933414E04Rik","entrezGeneId":"221078"},{"alias":"ARL5B-AS1","entrezGeneId":"221078"},{"alias":"NOPD1","entrezGeneId":"221078"},{"alias":"ARL8","entrezGeneId":"221079"},{"alias":"HNRPUL2","entrezGeneId":"221092"},{"alias":"SAF-A2","entrezGeneId":"221092"},{"alias":"ABH3","entrezGeneId":"221120"},{"alias":"DEPC-1","entrezGeneId":"221120"},{"alias":"DEPC1","entrezGeneId":"221120"},{"alias":"hABH3","entrezGeneId":"221120"},{"alias":"PCA1","entrezGeneId":"221120"},{"alias":"ESP13","entrezGeneId":"221143"},{"alias":"N6AMT2","entrezGeneId":"221143"},{"alias":"C13orf3","entrezGeneId":"221150"},{"alias":"RAMA1","entrezGeneId":"221150"},{"alias":"1110008L20Rik","entrezGeneId":"221154"},{"alias":"EFHA1","entrezGeneId":"221154"},{"alias":"ARHGEF29","entrezGeneId":"221178"},{"alias":"ASEF2","entrezGeneId":"221178"},{"alias":"HCP33","entrezGeneId":"221180"},{"alias":"COPN2","entrezGeneId":"221184"},{"alias":"CPN2","entrezGeneId":"221184"},{"alias":"GPR114","entrezGeneId":"221188"},{"alias":"PGR27","entrezGeneId":"221188"},{"alias":"CT67","entrezGeneId":"221191"},{"alias":"KLKBL4","entrezGeneId":"221191"},{"alias":"CAUXIN","entrezGeneId":"221223"},{"alias":"CES4C1","entrezGeneId":"221223"},{"alias":"CES5","entrezGeneId":"221223"},{"alias":"CES7","entrezGeneId":"221223"},{"alias":"HEL126","entrezGeneId":"221223"},{"alias":"C18orf20","entrezGeneId":"221241"},{"alias":"HsT1235","entrezGeneId":"221241"},{"alias":"NCRNA00305","entrezGeneId":"221241"},{"alias":"C6orf183","entrezGeneId":"221262"},{"alias":"C6orf184","entrezGeneId":"221262"},{"alias":"C6orf185","entrezGeneId":"221262"},{"alias":"CCDC162","entrezGeneId":"221262"},{"alias":"AK 9","entrezGeneId":"221264"},{"alias":"AKD1","entrezGeneId":"221264"},{"alias":"AKD2","entrezGeneId":"221264"},{"alias":"C6orf199","entrezGeneId":"221264"},{"alias":"C6orf224","entrezGeneId":"221264"},{"alias":"dJ70A9.1","entrezGeneId":"221264"},{"alias":"C6orf200","entrezGeneId":"221294"},{"alias":"LP2642","entrezGeneId":"221294"},{"alias":"NT5C2L1","entrezGeneId":"221294"},{"alias":"C6orf78","entrezGeneId":"221301"},{"alias":"FAM26D","entrezGeneId":"221301"},{"alias":"C6orf113","entrezGeneId":"221302"},{"alias":"ZUFSP","entrezGeneId":"221302"},{"alias":"bA86F4.2","entrezGeneId":"221303"},{"alias":"C6orf189","entrezGeneId":"221303"},{"alias":"bA301B7.2","entrezGeneId":"221322"},{"alias":"bA57L9.1","entrezGeneId":"221322"},{"alias":"BROMI","entrezGeneId":"221322"},{"alias":"C6orf170","entrezGeneId":"221322"},{"alias":"C6orf171","entrezGeneId":"221322"},{"alias":"dJ310J6.1","entrezGeneId":"221322"},{"alias":"C6orf65","entrezGeneId":"221336"},{"alias":"GPR136","entrezGeneId":"221391"},{"alias":"GRP136","entrezGeneId":"221391"},{"alias":"PGR12","entrezGeneId":"221391"},{"alias":"TMEM13","entrezGeneId":"221391"},{"alias":"GPR115","entrezGeneId":"221393"},{"alias":"PGR18","entrezGeneId":"221393"},{"alias":"GPR116","entrezGeneId":"221395"},{"alias":"KPG_001","entrezGeneId":"221395"},{"alias":"bA446F17.4","entrezGeneId":"221400"},{"alias":"CT41.2","entrezGeneId":"221400"},{"alias":"NY-CO-45","entrezGeneId":"221400"},{"alias":"SPATA36","entrezGeneId":"221400"},{"alias":"TDR2","entrezGeneId":"221400"},{"alias":"DDIP","entrezGeneId":"221409"},{"alias":"SPATA8","entrezGeneId":"221409"},{"alias":"SRSP1","entrezGeneId":"221409"},{"alias":"C6orf206","entrezGeneId":"221421"},{"alias":"CILD12","entrezGeneId":"221421"},{"alias":"MRPS18AL1","entrezGeneId":"221421"},{"alias":"C6orf154","entrezGeneId":"221424"},{"alias":"TLT5","entrezGeneId":"221438"},{"alias":"TREML2P","entrezGeneId":"221438"},{"alias":"TREML2P1","entrezGeneId":"221438"},{"alias":"C6orf130","entrezGeneId":"221443"},{"alias":"dJ34B21.3","entrezGeneId":"221443"},{"alias":"TARG1","entrezGeneId":"221443"},{"alias":"C6orf102","entrezGeneId":"221458"},{"alias":"dJ1043E3.1","entrezGeneId":"221458"},{"alias":"dJ137F1.4","entrezGeneId":"221458"},{"alias":"dJ188D3.1","entrezGeneId":"221458"},{"alias":"C6orf128","entrezGeneId":"221468"},{"alias":"dJ355M6.2","entrezGeneId":"221468"},{"alias":"ZFYVE4","entrezGeneId":"221472"},{"alias":"CD364","entrezGeneId":"221476"},{"alias":"CRISP9","entrezGeneId":"221476"},{"alias":"MSMBBP","entrezGeneId":"221476"},{"alias":"PSPBP","entrezGeneId":"221476"},{"alias":"BRAP","entrezGeneId":"221477"},{"alias":"PS1TP5TP1","entrezGeneId":"221477"},{"alias":"C6orf81","entrezGeneId":"221481"},{"alias":"C6orf1","entrezGeneId":"221491"},{"alias":"LBH","entrezGeneId":"221491"},{"alias":"CTRCT42","entrezGeneId":"221496"},{"alias":"dJ482C21.1","entrezGeneId":"221496"},{"alias":"NET25","entrezGeneId":"221496"},{"alias":"ZNF919","entrezGeneId":"221504"},{"alias":"Bat9","entrezGeneId":"221527"},{"alias":"C6orf46","entrezGeneId":"221527"},{"alias":"D6S59E","entrezGeneId":"221527"},{"alias":"G10","entrezGeneId":"221527"},{"alias":"NG35","entrezGeneId":"221527"},{"alias":"Ras-like","entrezGeneId":"221547"},{"alias":"TC4","entrezGeneId":"221547"},{"alias":"dJ313I6.7","entrezGeneId":"221584"},{"alias":"ZNF187p1","entrezGeneId":"221584"},{"alias":"ZNF305P1","entrezGeneId":"221584"},{"alias":"ZNF96L1","entrezGeneId":"221584"},{"alias":"ZNF96P1","entrezGeneId":"221584"},{"alias":"ZSCAN12L1","entrezGeneId":"221584"},{"alias":"bA317E16.2","entrezGeneId":"221613"},{"alias":"H2AA","entrezGeneId":"221613"},{"alias":"H2AFR","entrezGeneId":"221613"},{"alias":"TH2A","entrezGeneId":"221613"},{"alias":"AOF1","entrezGeneId":"221656"},{"alias":"bA204B7.3","entrezGeneId":"221656"},{"alias":"C6orf193","entrezGeneId":"221656"},{"alias":"dJ298J15.2","entrezGeneId":"221656"},{"alias":"LSD2","entrezGeneId":"221656"},{"alias":"dJ259A10.1","entrezGeneId":"221662"},{"alias":"RNPC6","entrezGeneId":"221662"},{"alias":"dJ257A7.2","entrezGeneId":"221692"},{"alias":"RPEL","entrezGeneId":"221692"},{"alias":"RPEL1","entrezGeneId":"221692"},{"alias":"C6orf228","entrezGeneId":"221710"},{"alias":"C6orf177","entrezGeneId":"221711"},{"alias":"dJ62D2.1","entrezGeneId":"221711"},{"alias":"NO145","entrezGeneId":"221711"},{"alias":"dJ290I10.4","entrezGeneId":"221717"},{"alias":"MRPL48L1","entrezGeneId":"221717"},{"alias":"C6orf218","entrezGeneId":"221718"},{"alias":"C6orf145","entrezGeneId":"221749"},{"alias":"SERPINB9P","entrezGeneId":"221756"},{"alias":"ZNF498","entrezGeneId":"221785"},{"alias":"C7orf38","entrezGeneId":"221786"},{"alias":"PRPS1","entrezGeneId":"221823"},{"alias":"PRPS3","entrezGeneId":"221823"},{"alias":"PRPSL","entrezGeneId":"221823"},{"alias":"PRS-III","entrezGeneId":"221823"},{"alias":"BTD","entrezGeneId":"221833"},{"alias":"EEF1AL4","entrezGeneId":"221838"},{"alias":"HOXA-AS5","entrezGeneId":"221883"},{"alias":"HOXA11-AS1","entrezGeneId":"221883"},{"alias":"HOXA11AS","entrezGeneId":"221883"},{"alias":"HOXA11S","entrezGeneId":"221883"},{"alias":"NCRNA00076","entrezGeneId":"221883"},{"alias":"TIP27","entrezGeneId":"221895"},{"alias":"ZNF802","entrezGeneId":"221895"},{"alias":"C7orf47","entrezGeneId":"221908"},{"alias":"BAAT1","entrezGeneId":"221927"},{"alias":"C7orf27","entrezGeneId":"221927"},{"alias":"RMFSL","entrezGeneId":"221927"},{"alias":"FOXK1L","entrezGeneId":"221937"},{"alias":"PAQR10","entrezGeneId":"221938"},{"alias":"DAGLBETA","entrezGeneId":"221955"},{"alias":"KCCR13L","entrezGeneId":"221955"},{"alias":"C7orf28B","entrezGeneId":"221960"},{"alias":"H_NH0577018.2","entrezGeneId":"221960"},{"alias":"ANTP1","entrezGeneId":"222005"},{"alias":"VSTM2","entrezGeneId":"222008"},{"alias":"TTC4P","entrezGeneId":"222052"},{"alias":"ERS25","entrezGeneId":"222068"},{"alias":"GMP25iso","entrezGeneId":"222068"},{"alias":"HNLF","entrezGeneId":"222068"},{"alias":"p24a3","entrezGeneId":"222068"},{"alias":"p24alpha3","entrezGeneId":"222068"},{"alias":"C7orf41","entrezGeneId":"222166"},{"alias":"Ells1","entrezGeneId":"222166"},{"alias":"EIG121L","entrezGeneId":"222223"},{"alias":"CENP-33","entrezGeneId":"222229"},{"alias":"ORCA","entrezGeneId":"222229"},{"alias":"DRC6","entrezGeneId":"222235"},{"alias":"Fbl13","entrezGeneId":"222235"},{"alias":"C7orf18","entrezGeneId":"222236"},{"alias":"FMP30","entrezGeneId":"222236"},{"alias":"NAPE-PLD","entrezGeneId":"222236"},{"alias":"ATXN7L4","entrezGeneId":"222255"},{"alias":"CDH28","entrezGeneId":"222256"},{"alias":"C10orf30","entrezGeneId":"222389"},{"alias":"PDZRN1","entrezGeneId":"222484"},{"alias":"GPR97","entrezGeneId":"222487"},{"alias":"PB99","entrezGeneId":"222487"},{"alias":"PGR26","entrezGeneId":"222487"},{"alias":"3-OST-5","entrezGeneId":"222537"},{"alias":"3OST5","entrezGeneId":"222537"},{"alias":"HS3OST5","entrezGeneId":"222537"},{"alias":"NBLA04021","entrezGeneId":"222537"},{"alias":"bA86F4.3","entrezGeneId":"222545"},{"alias":"GPCR","entrezGeneId":"222545"},{"alias":"dJ955L16.1","entrezGeneId":"222546"},{"alias":"MTCHRS","entrezGeneId":"222546"},{"alias":"MTFS","entrezGeneId":"222546"},{"alias":"RFXDC1","entrezGeneId":"222546"},{"alias":"C6orf169","entrezGeneId":"222553"},{"alias":"dJ230I3.1","entrezGeneId":"222553"},{"alias":"C6orf143","entrezGeneId":"222584"},{"alias":"GPR111","entrezGeneId":"222611"},{"alias":"hGPCR35","entrezGeneId":"222611"},{"alias":"PGR20","entrezGeneId":"222611"},{"alias":"BZRPL1","entrezGeneId":"222642"},{"alias":"MUXA","entrezGeneId":"222643"},{"alias":"ZUD","entrezGeneId":"222643"},{"alias":"C6orf69","entrezGeneId":"222658"},{"alias":"dJ108K11.3","entrezGeneId":"222658"},{"alias":"STEPP","entrezGeneId":"222659"},{"alias":"DFNB67","entrezGeneId":"222662"},{"alias":"dJ510O8.8","entrezGeneId":"222662"},{"alias":"TMHS","entrezGeneId":"222662"},{"alias":"CEGF3","entrezGeneId":"222663"},{"alias":"dJ29K1.3","entrezGeneId":"222696"},{"alias":"dJ29K1.3.1","entrezGeneId":"222696"},{"alias":"ZNF390","entrezGeneId":"222696"},{"alias":"ZNF453","entrezGeneId":"222696"},{"alias":"bA424I5.1","entrezGeneId":"222698"},{"alias":"C6orf194","entrezGeneId":"222698"},{"alias":"p373c6.3","entrezGeneId":"222699"},{"alias":"TOB2P","entrezGeneId":"222699"},{"alias":"TOB4p","entrezGeneId":"222699"},{"alias":"C6orf146","entrezGeneId":"222826"},{"alias":"bHLHa31","entrezGeneId":"222894"},{"alias":"N-TWIST","entrezGeneId":"222894"},{"alias":"NATO3","entrezGeneId":"222894"},{"alias":"NTWIST","entrezGeneId":"222894"},{"alias":"PTFB","entrezGeneId":"222894"},{"alias":"RPL23_4_790","entrezGeneId":"222901"},{"alias":"C7orf51","entrezGeneId":"222950"},{"alias":"ENT4","entrezGeneId":"222962"},{"alias":"PMAT","entrezGeneId":"222962"},{"alias":"RNF202","entrezGeneId":"223082"},{"alias":"coll-2","entrezGeneId":"223117"},{"alias":"Sema-Z2","entrezGeneId":"223117"},{"alias":"ERK7","entrezGeneId":"225689"},{"alias":"ERK8","entrezGeneId":"225689"},{"alias":"RINGO3","entrezGeneId":"245711"},{"alias":"RINGOA","entrezGeneId":"245711"},{"alias":"SPDY1","entrezGeneId":"245711"},{"alias":"SPY1","entrezGeneId":"245711"},{"alias":"VGL2","entrezGeneId":"245806"},{"alias":"VITO1","entrezGeneId":"245806"},{"alias":"PRAT4B","entrezGeneId":"245812"},{"alias":"BD-5","entrezGeneId":"245908"},{"alias":"DEFB-5","entrezGeneId":"245908"},{"alias":"DEFB105","entrezGeneId":"245908"},{"alias":"BD-6","entrezGeneId":"245909"},{"alias":"DEFB-6","entrezGeneId":"245909"},{"alias":"DEFB106","entrezGeneId":"245909"},{"alias":"BD-7","entrezGeneId":"245910"},{"alias":"DEFB-7","entrezGeneId":"245910"},{"alias":"DEFB107","entrezGeneId":"245910"},{"alias":"DEFB-8","entrezGeneId":"245911"},{"alias":"hBD-8","entrezGeneId":"245911"},{"alias":"DEFB-9","entrezGeneId":"245912"},{"alias":"DEFB109","entrezGeneId":"245912"},{"alias":"DEFB109P1","entrezGeneId":"245912"},{"alias":"DEFB-10","entrezGeneId":"245913"},{"alias":"DEFB-11","entrezGeneId":"245913"},{"alias":"DEFB111","entrezGeneId":"245913"},{"alias":"DEFB-12","entrezGeneId":"245915"},{"alias":"DEFB-13","entrezGeneId":"245927"},{"alias":"DEFB-14","entrezGeneId":"245928"},{"alias":"DEFB14","entrezGeneId":"245928"},{"alias":"DEFB-15","entrezGeneId":"245929"},{"alias":"DEFB-16","entrezGeneId":"245930"},{"alias":"DEFB-17","entrezGeneId":"245931"},{"alias":"DEFB-19","entrezGeneId":"245932"},{"alias":"DEFB-20","entrezGeneId":"245932"},{"alias":"DEFB120","entrezGeneId":"245932"},{"alias":"DEFB20","entrezGeneId":"245932"},{"alias":"ESC42-RELA","entrezGeneId":"245932"},{"alias":"ESC42-RELB","entrezGeneId":"245932"},{"alias":"DEFB21","entrezGeneId":"245934"},{"alias":"ESC42RELC","entrezGeneId":"245934"},{"alias":"DEFB-22","entrezGeneId":"245935"},{"alias":"DEFB122P","entrezGeneId":"245935"},{"alias":"DEFB22","entrezGeneId":"245935"},{"alias":"DEFB-23","entrezGeneId":"245936"},{"alias":"DEFB23","entrezGeneId":"245936"},{"alias":"ESC42-RELD","entrezGeneId":"245936"},{"alias":"DEFB-24","entrezGeneId":"245937"},{"alias":"DEFB-25","entrezGeneId":"245938"},{"alias":"DEFB-28","entrezGeneId":"245939"},{"alias":"DEFB28","entrezGeneId":"245939"},{"alias":"hBD-28","entrezGeneId":"245939"},{"alias":"DEFB-30","entrezGeneId":"245940"},{"alias":"DEFB130","entrezGeneId":"245940"},{"alias":"DEFB130L","entrezGeneId":"245940"},{"alias":"DEFB30","entrezGeneId":"245940"},{"alias":"ATP6D2","entrezGeneId":"245972"},{"alias":"VMA6","entrezGeneId":"245972"},{"alias":"ATP6C2","entrezGeneId":"245973"},{"alias":"VMA5","entrezGeneId":"245973"},{"alias":"CT6.1","entrezGeneId":"246100"},{"alias":"ESO1","entrezGeneId":"246100"},{"alias":"LAGE-2","entrezGeneId":"246100"},{"alias":"LAGE2A","entrezGeneId":"246100"},{"alias":"NY-ESO-1","entrezGeneId":"246100"},{"alias":"TAF13P","entrezGeneId":"246112"},{"alias":"NCRNA00133","entrezGeneId":"246119"},{"alias":"TTY10","entrezGeneId":"246119"},{"alias":"CLONE795723","entrezGeneId":"246122"},{"alias":"LINC00129","entrezGeneId":"246122"},{"alias":"NCRNA00129","entrezGeneId":"246122"},{"alias":"TTTY7A","entrezGeneId":"246122"},{"alias":"TTTY7B","entrezGeneId":"246122"},{"alias":"TTY7","entrezGeneId":"246122"},{"alias":"ZNF381P","entrezGeneId":"246123"},{"alias":"ZNF736P3","entrezGeneId":"246123"},{"alias":"ZNF736PY3","entrezGeneId":"246123"},{"alias":"CYorf15A","entrezGeneId":"246126"},{"alias":"CYorf15B","entrezGeneId":"246126"},{"alias":"TXLNG2P","entrezGeneId":"246126"},{"alias":"CCR4b","entrezGeneId":"246175"},{"alias":"GAR17","entrezGeneId":"246176"},{"alias":"AFAR3","entrezGeneId":"246181"},{"alias":"AFB1-AR 3","entrezGeneId":"246181"},{"alias":"AFB1-AR3","entrezGeneId":"246181"},{"alias":"AKR7A4","entrezGeneId":"246181"},{"alias":"AFARP1","entrezGeneId":"246182"},{"alias":"ANAPC12","entrezGeneId":"246184"},{"alias":"APC12","entrezGeneId":"246184"},{"alias":"C9orf17","entrezGeneId":"246184"},{"alias":"deltaNEMO","entrezGeneId":"246210"},{"alias":"IKBKGP","entrezGeneId":"246210"},{"alias":"DFNA25","entrezGeneId":"246213"},{"alias":"VGLUT3","entrezGeneId":"246213"},{"alias":"H1RNA","entrezGeneId":"246243"},{"alias":"PEOB2","entrezGeneId":"246243"},{"alias":"RNH1","entrezGeneId":"246243"},{"alias":"AFG1","entrezGeneId":"246269"},{"alias":"c222389","entrezGeneId":"246269"},{"alias":"LACE1","entrezGeneId":"246269"},{"alias":"TCRBV22S2","entrezGeneId":"246283"},{"alias":"TCRBV29S2O","entrezGeneId":"246283"},{"alias":"TCRBV26S2","entrezGeneId":"246285"},{"alias":"TCRBV28S2","entrezGeneId":"246285"},{"alias":"TCRBV28S2O","entrezGeneId":"246285"},{"alias":"TCRBV33S2","entrezGeneId":"246286"},{"alias":"TRBVA/OR9-2","entrezGeneId":"246286"},{"alias":"DFNB83","entrezGeneId":"246289"},{"alias":"D21S2089E","entrezGeneId":"246312"},{"alias":"NCRNA00285","entrezGeneId":"246312"},{"alias":"VTLG","entrezGeneId":"246319"},{"alias":"HSCRS2","entrezGeneId":"246321"},{"alias":"HSCRS3","entrezGeneId":"246322"},{"alias":"NAM","entrezGeneId":"246329"},{"alias":"C21orf93","entrezGeneId":"246704"},{"alias":"NCRNA00315","entrezGeneId":"246704"},{"alias":"C21orf94","entrezGeneId":"246705"},{"alias":"NCRNA00314","entrezGeneId":"246705"},{"alias":"bA192N10.2","entrezGeneId":"246714"},{"alias":"TCEB2P1","entrezGeneId":"246717"},{"alias":"DNCL1P1","entrezGeneId":"246720"},{"alias":"HRPB11B","entrezGeneId":"246721"},{"alias":"RPB11b1","entrezGeneId":"246721"},{"alias":"ATP5HP4","entrezGeneId":"246723"},{"alias":"NPCDRG","entrezGeneId":"246734"},{"alias":"NPCR","entrezGeneId":"246734"},{"alias":"MAPTIT","entrezGeneId":"246744"},{"alias":"ESP","entrezGeneId":"246777"},{"alias":"SP-ESP","entrezGeneId":"246777"},{"alias":"IL-27","entrezGeneId":"246778"},{"alias":"IL-27A","entrezGeneId":"246778"},{"alias":"IL27A","entrezGeneId":"246778"},{"alias":"IL27p28","entrezGeneId":"246778"},{"alias":"IL30","entrezGeneId":"246778"},{"alias":"p28","entrezGeneId":"246778"},{"alias":"DERM4","entrezGeneId":"252839"},{"alias":"TMEM9A","entrezGeneId":"252839"},{"alias":"SRPSMCR","entrezGeneId":"252840"},{"alias":"SRPSMCR","entrezGeneId":"252841"},{"alias":"FAA1","entrezGeneId":"252842"},{"alias":"FAA2","entrezGeneId":"252843"},{"alias":"ZSCAN14","entrezGeneId":"252884"},{"alias":"CYorf16","entrezGeneId":"252946"},{"alias":"FAM197Y2P","entrezGeneId":"252946"},{"alias":"NCRNA00139","entrezGeneId":"252948"},{"alias":"NCRNA00140","entrezGeneId":"252949"},{"alias":"TTTY17","entrezGeneId":"252949"},{"alias":"NCRNA00143","entrezGeneId":"252950"},{"alias":"NCRNA00145","entrezGeneId":"252951"},{"alias":"NCRNA00144","entrezGeneId":"252952"},{"alias":"NCRNA00146","entrezGeneId":"252953"},{"alias":"NCRNA00147","entrezGeneId":"252954"},{"alias":"NCRNA00148","entrezGeneId":"252955"},{"alias":"TTTY23B","entrezGeneId":"252955"},{"alias":"TPM3L2","entrezGeneId":"252956"},{"alias":"NEH2","entrezGeneId":"252969"},{"alias":"NEI2","entrezGeneId":"252969"},{"alias":"Synip","entrezGeneId":"252983"},{"alias":"FRCP2","entrezGeneId":"252995"},{"alias":"irisin","entrezGeneId":"252995"},{"alias":"MIKI","entrezGeneId":"253012"},{"alias":"RPL31_8_567","entrezGeneId":"253013"},{"alias":"CPVT3","entrezGeneId":"253017"},{"alias":"GPSN2L","entrezGeneId":"253017"},{"alias":"SRD5A2L2","entrezGeneId":"253017"},{"alias":"TERL","entrezGeneId":"253017"},{"alias":"bCX101P6.9","entrezGeneId":"253018"},{"alias":"bPG299F13.9","entrezGeneId":"253018"},{"alias":"bQB115I13.2","entrezGeneId":"253018"},{"alias":"PSMD5-AS1","entrezGeneId":"253039"},{"alias":"C12orf33","entrezGeneId":"253128"},{"alias":"C22orf30","entrezGeneId":"253143"},{"alias":"ABHD7","entrezGeneId":"253152"},{"alias":"EH4","entrezGeneId":"253152"},{"alias":"EPHXRP","entrezGeneId":"253152"},{"alias":"CDY","entrezGeneId":"253175"},{"alias":"dJ222E13.1","entrezGeneId":"253190"},{"alias":"AVO3","entrezGeneId":"253260"},{"alias":"hAVO3","entrezGeneId":"253260"},{"alias":"PIA","entrezGeneId":"253260"},{"alias":"RNF134P1","entrezGeneId":"253272"},{"alias":"CIBZ","entrezGeneId":"253461"},{"alias":"PPP1R171","entrezGeneId":"253461"},{"alias":"ZNF921","entrezGeneId":"253461"},{"alias":"KMCP1","entrezGeneId":"253512"},{"alias":"1AGPAT8","entrezGeneId":"253558"},{"alias":"AGPAT8","entrezGeneId":"253558"},{"alias":"ALCAT1","entrezGeneId":"253558"},{"alias":"HSRG1849","entrezGeneId":"253558"},{"alias":"LYCAT","entrezGeneId":"253558"},{"alias":"UNQ1849","entrezGeneId":"253558"},{"alias":"IGSF4D","entrezGeneId":"253559"},{"alias":"Necl-3","entrezGeneId":"253559"},{"alias":"NECL3","entrezGeneId":"253559"},{"alias":"SynCAM 2","entrezGeneId":"253559"},{"alias":"synCAM2","entrezGeneId":"253559"},{"alias":"bA174C7.4","entrezGeneId":"253582"},{"alias":"C6orf191","entrezGeneId":"253582"},{"alias":"CCDC75","entrezGeneId":"253635"},{"alias":"CENP-Y","entrezGeneId":"253635"},{"alias":"CENPY","entrezGeneId":"253635"},{"alias":"TCEB2P2","entrezGeneId":"253665"},{"alias":"C6orf167","entrezGeneId":"253714"},{"alias":"dJ39B17.2","entrezGeneId":"253714"},{"alias":"GNN","entrezGeneId":"253724"},{"alias":"GNNP","entrezGeneId":"253724"},{"alias":"FAM21A","entrezGeneId":"253725"},{"alias":"FAM21C","entrezGeneId":"253725"},{"alias":"VPEF","entrezGeneId":"253725"},{"alias":"COE3","entrezGeneId":"253738"},{"alias":"EBF-3","entrezGeneId":"253738"},{"alias":"HADDS","entrezGeneId":"253738"},{"alias":"O/E-2","entrezGeneId":"253738"},{"alias":"OE-2","entrezGeneId":"253738"},{"alias":"CERS5","entrezGeneId":"253782"},{"alias":"LASS6","entrezGeneId":"253782"},{"alias":"DFNB74","entrezGeneId":"253827"},{"alias":"4933421L13Rik","entrezGeneId":"253832"},{"alias":"DHHC-20","entrezGeneId":"253832"},{"alias":"DHHC20","entrezGeneId":"253832"},{"alias":"C20orf166-AS1","entrezGeneId":"253868"},{"alias":"C20orf200","entrezGeneId":"253868"},{"alias":"NCRNA00335","entrezGeneId":"253868"},{"alias":"hg611","entrezGeneId":"253933"},{"alias":"OR7E138P","entrezGeneId":"253933"},{"alias":"GARNL1","entrezGeneId":"253959"},{"alias":"GRIPE","entrezGeneId":"253959"},{"alias":"p240","entrezGeneId":"253959"},{"alias":"RalGAPalpha1","entrezGeneId":"253959"},{"alias":"TULIP1","entrezGeneId":"253959"},{"alias":"NANCI","entrezGeneId":"253970"},{"alias":"SFTPH","entrezGeneId":"253970"},{"alias":"SP-H","entrezGeneId":"253970"},{"alias":"SPH","entrezGeneId":"253970"},{"alias":"BACURD1","entrezGeneId":"253980"},{"alias":"FKSG86","entrezGeneId":"253980"},{"alias":"hBACURD1","entrezGeneId":"253980"},{"alias":"PDIP1","entrezGeneId":"253980"},{"alias":"POLDIP1","entrezGeneId":"253980"},{"alias":"RPL10A_5_900","entrezGeneId":"253986"},{"alias":"C12orf72","entrezGeneId":"254013"},{"alias":"ETFB-KMT","entrezGeneId":"254013"},{"alias":"METTL20","entrezGeneId":"254013"},{"alias":"MAP 1D","entrezGeneId":"254042"},{"alias":"MAP1D","entrezGeneId":"254042"},{"alias":"MetAP 1D","entrezGeneId":"254042"},{"alias":"Metap1l","entrezGeneId":"254042"},{"alias":"BRODL","entrezGeneId":"254065"},{"alias":"MRX93","entrezGeneId":"254065"},{"alias":"SNX6B","entrezGeneId":"254122"},{"alias":"BMND12","entrezGeneId":"254170"},{"alias":"c14_5247","entrezGeneId":"254170"},{"alias":"Fbx33","entrezGeneId":"254170"},{"alias":"TTLL5","entrezGeneId":"254173"},{"alias":"FAM161C","entrezGeneId":"254187"},{"alias":"C6orf188","entrezGeneId":"254228"},{"alias":"dJ493F7.3","entrezGeneId":"254228"},{"alias":"FAM26E","entrezGeneId":"254228"},{"alias":"BPIL2","entrezGeneId":"254240"},{"alias":"MLR1","entrezGeneId":"254251"},{"alias":"CNIH-2","entrezGeneId":"254263"},{"alias":"Cnil","entrezGeneId":"254263"},{"alias":"C1orf62","entrezGeneId":"254268"},{"alias":"C6orf61","entrezGeneId":"254394"},{"alias":"dJ329L24.1","entrezGeneId":"254394"},{"alias":"dJ329L24.3","entrezGeneId":"254394"},{"alias":"MCMDC1","entrezGeneId":"254394"},{"alias":"ODG4","entrezGeneId":"254394"},{"alias":"C10orf47","entrezGeneId":"254427"},{"alias":"MgtE","entrezGeneId":"254428"},{"alias":"C16orf73","entrezGeneId":"254528"},{"alias":"gs129","entrezGeneId":"254528"},{"alias":"SPGF22","entrezGeneId":"254528"},{"alias":"AGPAT7","entrezGeneId":"254531"},{"alias":"AYTL3","entrezGeneId":"254531"},{"alias":"LPAAT-eta","entrezGeneId":"254531"},{"alias":"LPEAT2","entrezGeneId":"254531"},{"alias":"LINC00925","entrezGeneId":"254559"},{"alias":"USP12P2","entrezGeneId":"254700"},{"alias":"LYGH","entrezGeneId":"254773"},{"alias":"LYSG2","entrezGeneId":"254773"},{"alias":"OST709","entrezGeneId":"254786"},{"alias":"C17orf61","entrezGeneId":"254863"},{"alias":"OR2T6P","entrezGeneId":"254879"},{"alias":"OR2T9","entrezGeneId":"254879"},{"alias":"OST703","entrezGeneId":"254879"},{"alias":"DHHC-23","entrezGeneId":"254887"},{"alias":"NIDD","entrezGeneId":"254887"},{"alias":"LEP18","entrezGeneId":"254910"},{"alias":"SPRL5A","entrezGeneId":"254910"},{"alias":"RPL9P9","entrezGeneId":"254948"},{"alias":"RPL9_14_1458","entrezGeneId":"254948"},{"alias":"RPL9_15_1459","entrezGeneId":"254948"},{"alias":"KAP15.1","entrezGeneId":"254950"},{"alias":"C9orf113","entrezGeneId":"254956"},{"alias":"C9orf18","entrezGeneId":"254956"},{"alias":"GOR","entrezGeneId":"254958"},{"alias":"REXO1L1","entrezGeneId":"254958"},{"alias":"OR1L5","entrezGeneId":"254973"},{"alias":"OR9-29","entrezGeneId":"254973"},{"alias":"OR9-E","entrezGeneId":"254973"},{"alias":"OST046","entrezGeneId":"254973"},{"alias":"FAM26C","entrezGeneId":"255022"},{"alias":"M-LPH","entrezGeneId":"255027"},{"alias":"MLPH1","entrezGeneId":"255027"},{"alias":"MLPH2","entrezGeneId":"255027"},{"alias":"MPV17L1","entrezGeneId":"255027"},{"alias":"BARP","entrezGeneId":"255057"},{"alias":"C19orf26","entrezGeneId":"255057"},{"alias":"DOS","entrezGeneId":"255057"},{"alias":"EK","entrezGeneId":"255061"},{"alias":"HK-1","entrezGeneId":"255061"},{"alias":"HK1","entrezGeneId":"255061"},{"alias":"PPT-C","entrezGeneId":"255061"},{"alias":"C10orf5","entrezGeneId":"255082"},{"alias":"CCDC108","entrezGeneId":"255101"},{"alias":"C4orf22","entrezGeneId":"255119"},{"alias":"SRHC","entrezGeneId":"255167"},{"alias":"PLA2G4FZ","entrezGeneId":"255189"},{"alias":"C19orf34","entrezGeneId":"255193"},{"alias":"bA427L11.2","entrezGeneId":"255220"},{"alias":"SPTRX-3","entrezGeneId":"255220"},{"alias":"SPTRX3","entrezGeneId":"255220"},{"alias":"TRX6","entrezGeneId":"255220"},{"alias":"TRP-ML2","entrezGeneId":"255231"},{"alias":"TRPML2","entrezGeneId":"255231"},{"alias":"DRD2","entrezGeneId":"255239"},{"alias":"PKK2","entrezGeneId":"255239"},{"alias":"eIF-2gA","entrezGeneId":"255308"},{"alias":"eIF2gA","entrezGeneId":"255308"},{"alias":"EIF2S3L","entrezGeneId":"255308"},{"alias":"CT47.11","entrezGeneId":"255313"},{"alias":"ALGV3072","entrezGeneId":"255324"},{"alias":"EPG","entrezGeneId":"255324"},{"alias":"PRO9904","entrezGeneId":"255324"},{"alias":"C3orf46","entrezGeneId":"255330"},{"alias":"bA9F11.1","entrezGeneId":"255349"},{"alias":"LINC00935","entrezGeneId":"255411"},{"alias":"bA528A10.3","entrezGeneId":"255488"},{"alias":"IBRDC2","entrezGeneId":"255488"},{"alias":"p53RFP","entrezGeneId":"255488"},{"alias":"PIR2","entrezGeneId":"255488"},{"alias":"9830169G11Rik","entrezGeneId":"255520"},{"alias":"bA317E16.3","entrezGeneId":"255626"},{"alias":"H2BFU","entrezGeneId":"255626"},{"alias":"hTSH2B","entrezGeneId":"255626"},{"alias":"STBP","entrezGeneId":"255626"},{"alias":"TH2B","entrezGeneId":"255626"},{"alias":"TSH2B","entrezGeneId":"255626"},{"alias":"TSH2B.1","entrezGeneId":"255626"},{"alias":"OR11-70","entrezGeneId":"255725"},{"alias":"FH3","entrezGeneId":"255738"},{"alias":"HCHOLA3","entrezGeneId":"255738"},{"alias":"LDLCQ1","entrezGeneId":"255738"},{"alias":"NARC-1","entrezGeneId":"255738"},{"alias":"NARC1","entrezGeneId":"255738"},{"alias":"PC9","entrezGeneId":"255738"},{"alias":"EGFL6L","entrezGeneId":"255743"},{"alias":"POEM","entrezGeneId":"255743"},{"alias":"SRTD17","entrezGeneId":"255758"},{"alias":"C16orf65","entrezGeneId":"255762"},{"alias":"PRR24","entrezGeneId":"255783"},{"alias":"C3orf43","entrezGeneId":"255798"},{"alias":"HIDE1","entrezGeneId":"255809"},{"alias":"SDHAL1","entrezGeneId":"255812"},{"alias":"SDHALP1","entrezGeneId":"255812"},{"alias":"BAZF","entrezGeneId":"255877"},{"alias":"ZBTB28","entrezGeneId":"255877"},{"alias":"ZNF62","entrezGeneId":"255877"},{"alias":"C16orf69","entrezGeneId":"255919"},{"alias":"NEP1-R1","entrezGeneId":"255919"},{"alias":"NEP1R1","entrezGeneId":"255919"},{"alias":"TMEM188","entrezGeneId":"255919"},{"alias":"TMP125","entrezGeneId":"255919"},{"alias":"ADAM5P","entrezGeneId":"255926"},{"alias":"TMDCII","entrezGeneId":"255926"},{"alias":"SCAR11","entrezGeneId":"255928"},{"alias":"sytXIV","entrezGeneId":"255928"},{"alias":"C12orf79","entrezGeneId":"256021"},{"alias":"COL29A1","entrezGeneId":"256076"},{"alias":"VWA4","entrezGeneId":"256076"},{"alias":"CESC1","entrezGeneId":"256126"},{"alias":"OR11-98","entrezGeneId":"256144"},{"alias":"OR11-100","entrezGeneId":"256148"},{"alias":"NAP1L","entrezGeneId":"256236"},{"alias":"NAP2","entrezGeneId":"256236"},{"alias":"NAPB","entrezGeneId":"256236"},{"alias":"NAPSBP","entrezGeneId":"256236"},{"alias":"UGPP","entrezGeneId":"256281"},{"alias":"UGPPase","entrezGeneId":"256281"},{"alias":"bHLHa29","entrezGeneId":"256297"},{"alias":"p48","entrezGeneId":"256297"},{"alias":"PACA","entrezGeneId":"256297"},{"alias":"PAGEN2","entrezGeneId":"256297"},{"alias":"PTF1-p48","entrezGeneId":"256297"},{"alias":"C17orf103","entrezGeneId":"256302"},{"alias":"Gtlf3b","entrezGeneId":"256302"},{"alias":"CT52","entrezGeneId":"256309"},{"alias":"KM-HN-1","entrezGeneId":"256309"},{"alias":"KMHN1","entrezGeneId":"256309"},{"alias":"C11orf35","entrezGeneId":"256329"},{"alias":"RPS2_14_794","entrezGeneId":"256355"},{"alias":"ELP95","entrezGeneId":"256364"},{"alias":"C14orf48","entrezGeneId":"256369"},{"alias":"c14_5713","entrezGeneId":"256369"},{"alias":"LINC00521","entrezGeneId":"256369"},{"alias":"dJ47M23.1","entrezGeneId":"256380"},{"alias":"PRO7177","entrezGeneId":"256435"},{"alias":"SIAT7C","entrezGeneId":"256435"},{"alias":"ST6GALNACIII","entrezGeneId":"256435"},{"alias":"STY","entrezGeneId":"256435"},{"alias":"CCMD","entrezGeneId":"256471"},{"alias":"CLN7","entrezGeneId":"256471"},{"alias":"TMEM151","entrezGeneId":"256472"},{"alias":"CXorf23","entrezGeneId":"256643"},{"alias":"C15orf55","entrezGeneId":"256646"},{"alias":"FAM22H","entrezGeneId":"256646"},{"alias":"NUT","entrezGeneId":"256646"},{"alias":"ALKN2972","entrezGeneId":"256710"},{"alias":"PRO7434","entrezGeneId":"256710"},{"alias":"AI2A3","entrezGeneId":"256764"},{"alias":"bA215C7.4","entrezGeneId":"256815"},{"alias":"C10orf115","entrezGeneId":"256815"},{"alias":"LINC01552","entrezGeneId":"256815"},{"alias":"OR11-21","entrezGeneId":"256892"},{"alias":"OR51F1P","entrezGeneId":"256892"},{"alias":"L7","entrezGeneId":"256933"},{"alias":"PPL7","entrezGeneId":"256933"},{"alias":"PPNPB","entrezGeneId":"256933"},{"alias":"ANKRD47","entrezGeneId":"256949"},{"alias":"C17orf66","entrezGeneId":"256957"},{"alias":"SUNC1","entrezGeneId":"256979"},{"alias":"C5orf12","entrezGeneId":"256987"},{"alias":"TPO1","entrezGeneId":"256987"},{"alias":"LINC00036","entrezGeneId":"257000"},{"alias":"NCRNA00036","entrezGeneId":"257000"},{"alias":"onco-lncRNA-16","entrezGeneId":"257000"},{"alias":"PLAC2","entrezGeneId":"257000"},{"alias":"4.1O","entrezGeneId":"257019"},{"alias":"EPB41L4O","entrezGeneId":"257019"},{"alias":"EPB41LO","entrezGeneId":"257019"},{"alias":"P410","entrezGeneId":"257019"},{"alias":"C10orf101","entrezGeneId":"257044"},{"alias":"C1orf101","entrezGeneId":"257044"},{"alias":"TMEM146","entrezGeneId":"257062"},{"alias":"PSME2P","entrezGeneId":"257093"},{"alias":"Hobit","entrezGeneId":"257101"},{"alias":"GCAT2","entrezGeneId":"257144"},{"alias":"GCET2","entrezGeneId":"257144"},{"alias":"HGAL","entrezGeneId":"257144"},{"alias":"C1orf192","entrezGeneId":"257177"},{"alias":"Flattop","entrezGeneId":"257177"},{"alias":"Fltp","entrezGeneId":"257177"},{"alias":"DMML2433","entrezGeneId":"257194"},{"alias":"IGLON4","entrezGeneId":"257194"},{"alias":"KILON","entrezGeneId":"257194"},{"alias":"Ntra","entrezGeneId":"257194"},{"alias":"dJ1186N24","entrezGeneId":"257202"},{"alias":"dJ1186N24.1","entrezGeneId":"257202"},{"alias":"GPx-6","entrezGeneId":"257202"},{"alias":"GPX5p","entrezGeneId":"257202"},{"alias":"GPXP3","entrezGeneId":"257202"},{"alias":"GSHPx-6","entrezGeneId":"257202"},{"alias":"NCRNA00038","entrezGeneId":"257203"},{"alias":"bA545I5.2","entrezGeneId":"257218"},{"alias":"U2B","entrezGeneId":"257313"},{"alias":"URP","entrezGeneId":"257313"},{"alias":"UTS2D","entrezGeneId":"257313"},{"alias":"SH3PX3","entrezGeneId":"257364"},{"alias":"SH3PXD3C","entrezGeneId":"257364"},{"alias":"SNX30","entrezGeneId":"257364"},{"alias":"MAP3K7IP3","entrezGeneId":"257397"},{"alias":"NAP1","entrezGeneId":"257397"},{"alias":"HARP","entrezGeneId":"257629"},{"alias":"NPC1","entrezGeneId":"257641"},{"alias":"RN49018","entrezGeneId":"259173"},{"alias":"1C7","entrezGeneId":"259197"},{"alias":"CD337","entrezGeneId":"259197"},{"alias":"LY117","entrezGeneId":"259197"},{"alias":"MALS","entrezGeneId":"259197"},{"alias":"NKp30","entrezGeneId":"259197"},{"alias":"C6orf21","entrezGeneId":"259215"},{"alias":"G6f","entrezGeneId":"259215"},{"alias":"LY6G6","entrezGeneId":"259215"},{"alias":"LY6G6D","entrezGeneId":"259215"},{"alias":"NG32","entrezGeneId":"259215"},{"alias":"hmob33","entrezGeneId":"259230"},{"alias":"MOB","entrezGeneId":"259230"},{"alias":"MOB1","entrezGeneId":"259230"},{"alias":"SMS1","entrezGeneId":"259230"},{"alias":"TMEM23","entrezGeneId":"259230"},{"alias":"bA430M15.1","entrezGeneId":"259232"},{"alias":"CanIon","entrezGeneId":"259232"},{"alias":"CLIFAHDD","entrezGeneId":"259232"},{"alias":"IHPRF","entrezGeneId":"259232"},{"alias":"IHPRF1","entrezGeneId":"259232"},{"alias":"INNFD","entrezGeneId":"259232"},{"alias":"VGCNL1","entrezGeneId":"259232"},{"alias":"DFNB6","entrezGeneId":"259236"},{"alias":"WAP11","entrezGeneId":"259239"},{"alias":"dJ688G8.2","entrezGeneId":"259240"},{"alias":"WAP9","entrezGeneId":"259240"},{"alias":"GPCR","entrezGeneId":"259249"},{"alias":"MGRG2","entrezGeneId":"259249"},{"alias":"MRGX1","entrezGeneId":"259249"},{"alias":"SNSR4","entrezGeneId":"259249"},{"alias":"ASP","entrezGeneId":"259266"},{"alias":"Calmbp1","entrezGeneId":"259266"},{"alias":"MCPH5","entrezGeneId":"259266"},{"alias":"BOD1L","entrezGeneId":"259282"},{"alias":"FAM44A","entrezGeneId":"259282"},{"alias":"T2R39","entrezGeneId":"259285"},{"alias":"T2R57","entrezGeneId":"259285"},{"alias":"GPR60","entrezGeneId":"259286"},{"alias":"T2R40","entrezGeneId":"259286"},{"alias":"T2R58","entrezGeneId":"259286"},{"alias":"T2R41","entrezGeneId":"259287"},{"alias":"T2R59","entrezGeneId":"259287"},{"alias":"T2R43","entrezGeneId":"259289"},{"alias":"T2R52","entrezGeneId":"259289"},{"alias":"T2R31","entrezGeneId":"259290"},{"alias":"T2R44","entrezGeneId":"259290"},{"alias":"T2R53","entrezGeneId":"259290"},{"alias":"TAS2R44","entrezGeneId":"259290"},{"alias":"GPR59","entrezGeneId":"259291"},{"alias":"T2R45","entrezGeneId":"259291"},{"alias":"ZG24P","entrezGeneId":"259291"},{"alias":"T2R46","entrezGeneId":"259292"},{"alias":"T2R54","entrezGeneId":"259292"},{"alias":"T2R30","entrezGeneId":"259293"},{"alias":"T2R47","entrezGeneId":"259293"},{"alias":"TAS2R47","entrezGeneId":"259293"},{"alias":"MSTP058","entrezGeneId":"259294"},{"alias":"T2R19","entrezGeneId":"259294"},{"alias":"T2R23","entrezGeneId":"259294"},{"alias":"T2R48","entrezGeneId":"259294"},{"alias":"TAS2R23","entrezGeneId":"259294"},{"alias":"TAS2R48","entrezGeneId":"259294"},{"alias":"T2R20","entrezGeneId":"259295"},{"alias":"T2R49","entrezGeneId":"259295"},{"alias":"T2R56","entrezGeneId":"259295"},{"alias":"TAS2R49","entrezGeneId":"259295"},{"alias":"T2R50","entrezGeneId":"259296"},{"alias":"T2R51","entrezGeneId":"259296"},{"alias":"TAS2R51","entrezGeneId":"259296"},{"alias":"FIG1","entrezGeneId":"259307"},{"alias":"LAAO","entrezGeneId":"259307"},{"alias":"LAO","entrezGeneId":"259307"},{"alias":"C9orf144B","entrezGeneId":"259308"},{"alias":"CYPIVX1","entrezGeneId":"260293"},{"alias":"NOL1R2","entrezGeneId":"260294"},{"alias":"NSUN5C","entrezGeneId":"260294"},{"alias":"WBSCR20B","entrezGeneId":"260294"},{"alias":"WBSCR20C","entrezGeneId":"260294"},{"alias":"ECEL1P1","entrezGeneId":"260331"},{"alias":"MTTF1","entrezGeneId":"260340"},{"alias":"TCF6L3","entrezGeneId":"260340"},{"alias":"MTTF1","entrezGeneId":"260341"},{"alias":"TCF6L1","entrezGeneId":"260341"},{"alias":"BA345E19.2","entrezGeneId":"260342"},{"alias":"AIS","entrezGeneId":"260402"},{"alias":"AIS1","entrezGeneId":"260402"},{"alias":"SCA24","entrezGeneId":"260415"},{"alias":"SCAR4","entrezGeneId":"260415"},{"alias":"dJ730K3.2","entrezGeneId":"260425"},{"alias":"MAGI-3","entrezGeneId":"260425"},{"alias":"EOS","entrezGeneId":"260429"},{"alias":"ASC2","entrezGeneId":"260434"},{"alias":"cPOP1","entrezGeneId":"260434"},{"alias":"POP1","entrezGeneId":"260434"},{"alias":"PYC1","entrezGeneId":"260434"},{"alias":"C4orf7","entrezGeneId":"260436"},{"alias":"FDC-SP","entrezGeneId":"260436"},{"alias":"TIP","entrezGeneId":"261726"},{"alias":"TIP41","entrezGeneId":"261726"},{"alias":"TIPRL1","entrezGeneId":"261726"},{"alias":"IPCA1","entrezGeneId":"261729"},{"alias":"PCANAP1","entrezGeneId":"261729"},{"alias":"PUMPCn","entrezGeneId":"261729"},{"alias":"STAMP1","entrezGeneId":"261729"},{"alias":"STMP","entrezGeneId":"261729"},{"alias":"POC10","entrezGeneId":"261734"},{"alias":"SLSN4","entrezGeneId":"261734"},{"alias":"CGI-148P","entrezGeneId":"261735"},{"alias":"MRDS1","entrezGeneId":"266553"},{"alias":"Opo","entrezGeneId":"266553"},{"alias":"ANTP3","entrezGeneId":"266623"},{"alias":"bK250D10.4","entrezGeneId":"266623"},{"alias":"dJ106I20.2","entrezGeneId":"266625"},{"alias":"TAP2","entrezGeneId":"266629"},{"alias":"FAM12CP","entrezGeneId":"266643"},{"alias":"HE3-GAMMA","entrezGeneId":"266643"},{"alias":"LINC00094","entrezGeneId":"266655"},{"alias":"LP2477","entrezGeneId":"266655"},{"alias":"NCRNA00094","entrezGeneId":"266655"},{"alias":"PS10","entrezGeneId":"266656"},{"alias":"T2R12","entrezGeneId":"266656"},{"alias":"TAS2R12","entrezGeneId":"266656"},{"alias":"TAS2R26","entrezGeneId":"266656"},{"alias":"PS8","entrezGeneId":"266657"},{"alias":"T2R15","entrezGeneId":"266657"},{"alias":"TAS2R15","entrezGeneId":"266657"},{"alias":"T2R22","entrezGeneId":"266661"},{"alias":"T2R33","entrezGeneId":"266665"},{"alias":"T2R36","entrezGeneId":"266666"},{"alias":"T2R37","entrezGeneId":"266667"},{"alias":"VMD2L2","entrezGeneId":"266675"},{"alias":"DYXQTL18","entrezGeneId":"266691"},{"alias":"OPHN1P1","entrezGeneId":"266698"},{"alias":"FABP5L11","entrezGeneId":"266699"},{"alias":"FABP5P1","entrezGeneId":"266699"},{"alias":"TGF-beta1P","entrezGeneId":"266700"},{"alias":"TGFB1P","entrezGeneId":"266700"},{"alias":"HS6ST-3","entrezGeneId":"266722"},{"alias":"PSMC6P","entrezGeneId":"266723"},{"alias":"HSPA9BP","entrezGeneId":"266724"},{"alias":"HSPA9P","entrezGeneId":"266724"},{"alias":"GPIM","entrezGeneId":"266727"},{"alias":"MAMDC3","entrezGeneId":"266727"},{"alias":"CT1.2","entrezGeneId":"266740"},{"alias":"MAGE2","entrezGeneId":"266740"},{"alias":"bHLHe79","entrezGeneId":"266743"},{"alias":"Le-PAS","entrezGeneId":"266743"},{"alias":"NXF","entrezGeneId":"266743"},{"alias":"PASD10","entrezGeneId":"266743"},{"alias":"Rgr","entrezGeneId":"266747"},{"alias":"AH","entrezGeneId":"266790"},{"alias":"HCA","entrezGeneId":"266790"},{"alias":"DRLM","entrezGeneId":"266812"},{"alias":"D21S2091E","entrezGeneId":"266919"},{"alias":"NCRNA00307","entrezGeneId":"266919"},{"alias":"AK2B","entrezGeneId":"266920"},{"alias":"CABYRP","entrezGeneId":"266954"},{"alias":"bA429H9.1","entrezGeneId":"266971"},{"alias":"PIP5K1L1","entrezGeneId":"266971"},{"alias":"PIP5K1P3","entrezGeneId":"266971"},{"alias":"PSMD4P2","entrezGeneId":"266971"},{"alias":"GPR110","entrezGeneId":"266977"},{"alias":"hGPCR36","entrezGeneId":"266977"},{"alias":"KPG_012","entrezGeneId":"266977"},{"alias":"PGR19","entrezGeneId":"266977"},{"alias":"CCNP","entrezGeneId":"266979"},{"alias":"bA12M9.1","entrezGeneId":"267009"},{"alias":"RPS9_3_1753","entrezGeneId":"267009"},{"alias":"dJ222E13.7","entrezGeneId":"267010"},{"alias":"RNU12-1","entrezGeneId":"267010"},{"alias":"RNU12L","entrezGeneId":"267010"},{"alias":"RNU12P","entrezGeneId":"267010"},{"alias":"LG72","entrezGeneId":"267012"},{"alias":"SG72","entrezGeneId":"267012"},{"alias":"dJ1033B10.14","entrezGeneId":"267013"},{"alias":"HLA-30","entrezGeneId":"267014"},{"alias":"HLA-17","entrezGeneId":"267015"},{"alias":"HLA-Z1","entrezGeneId":"267017"},{"alias":"ATP5K2","entrezGeneId":"267020"},{"alias":"ATP5L2","entrezGeneId":"267020"},{"alias":"C11orf31","entrezGeneId":"280636"},{"alias":"C17orf10","entrezGeneId":"280636"},{"alias":"SELH","entrezGeneId":"280636"},{"alias":"MOV34L","entrezGeneId":"280637"},{"alias":"PSMD7L","entrezGeneId":"280637"},{"alias":"C14orf19","entrezGeneId":"280655"},{"alias":"dJ54B20.1","entrezGeneId":"280657"},{"alias":"psiSSX2","entrezGeneId":"280657"},{"alias":"SSX6P","entrezGeneId":"280657"},{"alias":"SSXP2","entrezGeneId":"280657"},{"alias":"SSX9P","entrezGeneId":"280660"},{"alias":"EIF1AP1","entrezGeneId":"280661"},{"alias":"WAP12","entrezGeneId":"280664"},{"alias":"AIS2","entrezGeneId":"282552"},{"alias":"AUTS2","entrezGeneId":"282553"},{"alias":"C21orf71","entrezGeneId":"282566"},{"alias":"PRED21","entrezGeneId":"282566"},{"alias":"C21orf75","entrezGeneId":"282569"},{"alias":"NCRNA00228","entrezGeneId":"282569"},{"alias":"PRED43","entrezGeneId":"282569"},{"alias":"IL-28A","entrezGeneId":"282616"},{"alias":"IL28A","entrezGeneId":"282616"},{"alias":"IFN-lambda-3","entrezGeneId":"282617"},{"alias":"IFN-lambda-4","entrezGeneId":"282617"},{"alias":"IL-28B","entrezGeneId":"282617"},{"alias":"IL-28C","entrezGeneId":"282617"},{"alias":"IL28B","entrezGeneId":"282617"},{"alias":"IL28C","entrezGeneId":"282617"},{"alias":"IL-29","entrezGeneId":"282618"},{"alias":"IL29","entrezGeneId":"282618"},{"alias":"GCCD3","entrezGeneId":"282631"},{"alias":"AQPX1","entrezGeneId":"282679"},{"alias":"DIS3L2P","entrezGeneId":"282697"},{"alias":"FAM6B","entrezGeneId":"282697"},{"alias":"DAOA-AS","entrezGeneId":"282706"},{"alias":"DAOAAS","entrezGeneId":"282706"},{"alias":"G30","entrezGeneId":"282706"},{"alias":"OR7E103P","entrezGeneId":"282754"},{"alias":"HOR5'Beta5","entrezGeneId":"282763"},{"alias":"OR11-37","entrezGeneId":"282763"},{"alias":"OR11-160","entrezGeneId":"282770"},{"alias":"OR11-266","entrezGeneId":"282775"},{"alias":"OR11-267","entrezGeneId":"282776"},{"alias":"OR7E150P","entrezGeneId":"282801"},{"alias":"MRXSMP","entrezGeneId":"282808"},{"alias":"RAR2","entrezGeneId":"282808"},{"alias":"RLGP","entrezGeneId":"282808"},{"alias":"CORD20","entrezGeneId":"282809"},{"alias":"PIX1","entrezGeneId":"282809"},{"alias":"TUWD12","entrezGeneId":"282809"},{"alias":"WDR51B","entrezGeneId":"282809"},{"alias":"zf31","entrezGeneId":"282890"},{"alias":"C10orf125","entrezGeneId":"282969"},{"alias":"FucM","entrezGeneId":"282969"},{"alias":"FUCU","entrezGeneId":"282969"},{"alias":"bA140A10.5","entrezGeneId":"282973"},{"alias":"C10orf14","entrezGeneId":"282973"},{"alias":"C10orf39","entrezGeneId":"282973"},{"alias":"Jamip3","entrezGeneId":"282973"},{"alias":"NECC2","entrezGeneId":"282973"},{"alias":"PKE","entrezGeneId":"282974"},{"alias":"YANK3","entrezGeneId":"282974"},{"alias":"BLOS2","entrezGeneId":"282991"},{"alias":"BORCS2","entrezGeneId":"282991"},{"alias":"CEAP","entrezGeneId":"282991"},{"alias":"CEAP11","entrezGeneId":"282991"},{"alias":"FAM22E","entrezGeneId":"283008"},{"alias":"C10orf40","entrezGeneId":"283025"},{"alias":"C10orf48","entrezGeneId":"283078"},{"alias":"IFRX","entrezGeneId":"283078"},{"alias":"IRXL1","entrezGeneId":"283078"},{"alias":"bA492M23.1","entrezGeneId":"283080"},{"alias":"OR11-259","entrezGeneId":"283093"},{"alias":"CSNK2A1P","entrezGeneId":"283106"},{"alias":"OR52Z1P","entrezGeneId":"283110"},{"alias":"OR11-36","entrezGeneId":"283111"},{"alias":"OR51A12","entrezGeneId":"283111"},{"alias":"RPS25_2_1129","entrezGeneId":"283114"},{"alias":"ASM","entrezGeneId":"283120"},{"alias":"ASM1","entrezGeneId":"283120"},{"alias":"BWS","entrezGeneId":"283120"},{"alias":"D11S813E","entrezGeneId":"283120"},{"alias":"LINC00008","entrezGeneId":"283120"},{"alias":"NCRNA00008","entrezGeneId":"283120"},{"alias":"WT2","entrezGeneId":"283120"},{"alias":"C11orf85","entrezGeneId":"283129"},{"alias":"LINC00084","entrezGeneId":"283131"},{"alias":"NCRNA00084","entrezGeneId":"283131"},{"alias":"TncRNA","entrezGeneId":"283131"},{"alias":"VINC","entrezGeneId":"283131"},{"alias":"BCL9-2","entrezGeneId":"283149"},{"alias":"DLNB11","entrezGeneId":"283149"},{"alias":"DLNB13","entrezGeneId":"283150"},{"alias":"FOXN5","entrezGeneId":"283150"},{"alias":"JCG9","entrezGeneId":"283159"},{"alias":"OR8D3","entrezGeneId":"283159"},{"alias":"OST004","entrezGeneId":"283159"},{"alias":"PDJ9J14","entrezGeneId":"283159"},{"alias":"JCG2","entrezGeneId":"283160"},{"alias":"OR11-315","entrezGeneId":"283162"},{"alias":"OR8B4P","entrezGeneId":"283162"},{"alias":"NCRNA00288","entrezGeneId":"283165"},{"alias":"PRR10","entrezGeneId":"283165"},{"alias":"LINC00947","entrezGeneId":"283174"},{"alias":"OR11-216","entrezGeneId":"283189"},{"alias":"C11orf64","entrezGeneId":"283197"},{"alias":"NCRNA00301","entrezGeneId":"283197"},{"alias":"BM32A","entrezGeneId":"283209"},{"alias":"PMMLP","entrezGeneId":"283209"},{"alias":"KCASH2","entrezGeneId":"283219"},{"alias":"FNTAL1","entrezGeneId":"283226"},{"alias":"EFCAB4A","entrezGeneId":"283229"},{"alias":"BRLZ","entrezGeneId":"283234"},{"alias":"CCDC88","entrezGeneId":"283234"},{"alias":"gipie","entrezGeneId":"283234"},{"alias":"HKRP3","entrezGeneId":"283234"},{"alias":"NET46","entrezGeneId":"283238"},{"alias":"C11orf77","entrezGeneId":"283254"},{"alias":"RNF18B","entrezGeneId":"283257"},{"alias":"TRIM49B","entrezGeneId":"283257"},{"alias":"NCRNA00294","entrezGeneId":"283267"},{"alias":"IGFN2","entrezGeneId":"283284"},{"alias":"JCG5","entrezGeneId":"283297"},{"alias":"OR10A4P","entrezGeneId":"283297"},{"alias":"UNQ564","entrezGeneId":"283298"},{"alias":"C11orf36","entrezGeneId":"283303"},{"alias":"HSD-40","entrezGeneId":"283303"},{"alias":"C12orf64","entrezGeneId":"283310"},{"alias":"DFNB84B","entrezGeneId":"283310"},{"alias":"MATL2963","entrezGeneId":"283314"},{"alias":"CD163B","entrezGeneId":"283316"},{"alias":"M160","entrezGeneId":"283316"},{"alias":"SCARI2","entrezGeneId":"283316"},{"alias":"WC1","entrezGeneId":"283316"},{"alias":"HSPD1-10P","entrezGeneId":"283320"},{"alias":"Zfp740","entrezGeneId":"283337"},{"alias":"RPL13-2","entrezGeneId":"283345"},{"alias":"RPL13L","entrezGeneId":"283345"},{"alias":"RPL13_4_1199","entrezGeneId":"283345"},{"alias":"RRPL13L","entrezGeneId":"283345"},{"alias":"RASSF5","entrezGeneId":"283349"},{"alias":"ANKRD33","entrezGeneId":"283373"},{"alias":"LZT-Hs7","entrezGeneId":"283375"},{"alias":"MYP24","entrezGeneId":"283375"},{"alias":"ZIP5","entrezGeneId":"283375"},{"alias":"GPR133","entrezGeneId":"283383"},{"alias":"PGR25","entrezGeneId":"283383"},{"alias":"RPL29_6_558","entrezGeneId":"283412"},{"alias":"C12orf61","entrezGeneId":"283416"},{"alias":"SPATA34","entrezGeneId":"283417"},{"alias":"SPGF9","entrezGeneId":"283417"},{"alias":"CD370","entrezGeneId":"283420"},{"alias":"DNGR-1","entrezGeneId":"283420"},{"alias":"DNGR1","entrezGeneId":"283420"},{"alias":"UNQ9341","entrezGeneId":"283420"},{"alias":"C12orf36","entrezGeneId":"283422"},{"alias":"G2L3","entrezGeneId":"283431"},{"alias":"C12ord51","entrezGeneId":"283450"},{"alias":"C12orf51","entrezGeneId":"283450"},{"alias":"HEEL","entrezGeneId":"283450"},{"alias":"POTAGE","entrezGeneId":"283450"},{"alias":"15E1.2","entrezGeneId":"283459"},{"alias":"C12orf27","entrezGeneId":"283460"},{"alias":"HAS1","entrezGeneId":"283460"},{"alias":"NCRNA00262","entrezGeneId":"283460"},{"alias":"HEL-206","entrezGeneId":"283461"},{"alias":"HEL-S-94","entrezGeneId":"283461"},{"alias":"MUC-19","entrezGeneId":"283463"},{"alias":"GLT8D3","entrezGeneId":"283464"},{"alias":"CT151","entrezGeneId":"283471"},{"alias":"C13orf29","entrezGeneId":"283487"},{"alias":"NCRNA00346","entrezGeneId":"283487"},{"alias":"C13orf8","entrezGeneId":"283489"},{"alias":"CAMP","entrezGeneId":"283489"},{"alias":"CHAMP","entrezGeneId":"283489"},{"alias":"MRD40","entrezGeneId":"283489"},{"alias":"ZNF828","entrezGeneId":"283489"},{"alias":"SUGT1L1","entrezGeneId":"283507"},{"alias":"DLTET","entrezGeneId":"283518"},{"alias":"LINC00282","entrezGeneId":"283521"},{"alias":"NCRNA00282","entrezGeneId":"283521"},{"alias":"FKSG16","entrezGeneId":"283537"},{"alias":"C14orf182","entrezGeneId":"283551"},{"alias":"TM7SF1L2","entrezGeneId":"283554"},{"alias":"L-UBC","entrezGeneId":"283556"},{"alias":"UBC4","entrezGeneId":"283556"},{"alias":"UBCH7N3","entrezGeneId":"283556"},{"alias":"UBCL","entrezGeneId":"283556"},{"alias":"UBE2L7","entrezGeneId":"283556"},{"alias":"UBE2L7P","entrezGeneId":"283556"},{"alias":"UBEL1","entrezGeneId":"283556"},{"alias":"PROX-2","entrezGeneId":"283571"},{"alias":"C14orf59","entrezGeneId":"283576"},{"alias":"FAM15B","entrezGeneId":"283578"},{"alias":"C14orf86","entrezGeneId":"283592"},{"alias":"C14orf62","entrezGeneId":"283596"},{"alias":"LINC00063","entrezGeneId":"283596"},{"alias":"NCRNA00063","entrezGeneId":"283596"},{"alias":"C14orf68","entrezGeneId":"283600"},{"alias":"HDMCP","entrezGeneId":"283600"},{"alias":"HMFN1655","entrezGeneId":"283600"},{"alias":"C14orf70","entrezGeneId":"283601"},{"alias":"RPL26_18_1407","entrezGeneId":"283603"},{"alias":"OR14-10","entrezGeneId":"283617"},{"alias":"OR4K3P","entrezGeneId":"283617"},{"alias":"C14orf20","entrezGeneId":"283629"},{"alias":"STK22E","entrezGeneId":"283629"},{"alias":"TSK-4","entrezGeneId":"283629"},{"alias":"TSK4","entrezGeneId":"283629"},{"alias":"TSSK5","entrezGeneId":"283629"},{"alias":"C14orf24","entrezGeneId":"283635"},{"alias":"CEP170R","entrezGeneId":"283638"},{"alias":"FAM68C","entrezGeneId":"283638"},{"alias":"KIAA0284","entrezGeneId":"283638"},{"alias":"C14orf80","entrezGeneId":"283643"},{"alias":"C15orf21","entrezGeneId":"283651"},{"alias":"D-PCa-2","entrezGeneId":"283651"},{"alias":"JSX","entrezGeneId":"283652"},{"alias":"NCKX5","entrezGeneId":"283652"},{"alias":"OCA6","entrezGeneId":"283652"},{"alias":"SHEP4","entrezGeneId":"283652"},{"alias":"IGDCC5","entrezGeneId":"283659"},{"alias":"LINC00277","entrezGeneId":"283673"},{"alias":"NCRNA00277","entrezGeneId":"283673"},{"alias":"TMEM84","entrezGeneId":"283673"},{"alias":"C15orf60","entrezGeneId":"283677"},{"alias":"CT147","entrezGeneId":"283677"},{"alias":"CT105","entrezGeneId":"283685"},{"alias":"C15orf37","entrezGeneId":"283687"},{"alias":"OR15-1","entrezGeneId":"283694"},{"alias":"OR15-5","entrezGeneId":"283694"},{"alias":"SYNGR2P","entrezGeneId":"283698"},{"alias":"FAM154B","entrezGeneId":"283726"},{"alias":"TCEB1P2","entrezGeneId":"283747"},{"alias":"cPLA2delta","entrezGeneId":"283748"},{"alias":"D15F37S4","entrezGeneId":"283755"},{"alias":"GOLGA8F","entrezGeneId":"283768"},{"alias":"GOLGA8I","entrezGeneId":"283796"},{"alias":"GOLGA9P","entrezGeneId":"283796"},{"alias":"Fbl22","entrezGeneId":"283807"},{"alias":"Nomo","entrezGeneId":"283820"},{"alias":"PM5","entrezGeneId":"283820"},{"alias":"CCDC79","entrezGeneId":"283847"},{"alias":"CES6","entrezGeneId":"283848"},{"alias":"CES8","entrezGeneId":"283848"},{"alias":"EXOC3L","entrezGeneId":"283849"},{"alias":"LINC01373","entrezGeneId":"283854"},{"alias":"LincRNA-ENST00000515084","entrezGeneId":"283854"},{"alias":"TCONS_00024290","entrezGeneId":"283854"},{"alias":"C16orf81","entrezGeneId":"283860"},{"alias":"NCRNA00304","entrezGeneId":"283860"},{"alias":"L8","entrezGeneId":"283869"},{"alias":"L8C","entrezGeneId":"283869"},{"alias":"PPL8","entrezGeneId":"283869"},{"alias":"PPNPW","entrezGeneId":"283869"},{"alias":"C16orf79","entrezGeneId":"283870"},{"alias":"AUM","entrezGeneId":"283871"},{"alias":"G3PP","entrezGeneId":"283871"},{"alias":"PGPase","entrezGeneId":"283871"},{"alias":"LA16c-380H5.1","entrezGeneId":"283875"},{"alias":"CCDC95","entrezGeneId":"283899"},{"alias":"FJ222407","entrezGeneId":"283902"},{"alias":"HTA","entrezGeneId":"283902"},{"alias":"NCRNA00095","entrezGeneId":"283932"},{"alias":"CCSMST1","entrezGeneId":"283951"},{"alias":"gs103","entrezGeneId":"283951"},{"alias":"URLC5","entrezGeneId":"283951"},{"alias":"HG2","entrezGeneId":"283955"},{"alias":"MRCL","entrezGeneId":"283971"},{"alias":"MRCL3","entrezGeneId":"283971"},{"alias":"CXYorf10","entrezGeneId":"283981"},{"alias":"NCRNA00107","entrezGeneId":"283981"},{"alias":"PPP2R3B-AS1","entrezGeneId":"283981"},{"alias":"C17orf54","entrezGeneId":"283982"},{"alias":"FP18279","entrezGeneId":"283985"},{"alias":"17orf28","entrezGeneId":"283987"},{"alias":"C17orf28","entrezGeneId":"283987"},{"alias":"DMC1","entrezGeneId":"283987"},{"alias":"HID-1","entrezGeneId":"283987"},{"alias":"PCH2A","entrezGeneId":"283989"},{"alias":"PCH4","entrezGeneId":"283989"},{"alias":"PCH5","entrezGeneId":"283989"},{"alias":"sen54","entrezGeneId":"283989"},{"alias":"SEN54L","entrezGeneId":"283989"},{"alias":"FAM100B","entrezGeneId":"283991"},{"alias":"C17orf52","entrezGeneId":"283994"},{"alias":"ARGM1","entrezGeneId":"283999"},{"alias":"ERGA6350","entrezGeneId":"284013"},{"alias":"PRO21055","entrezGeneId":"284013"},{"alias":"Allergin-1","entrezGeneId":"284021"},{"alias":"C17orf60","entrezGeneId":"284021"},{"alias":"MCA-32","entrezGeneId":"284021"},{"alias":"MCA32","entrezGeneId":"284021"},{"alias":"LINC02581","entrezGeneId":"284023"},{"alias":"C17orf44","entrezGeneId":"284029"},{"alias":"NCRNA00324","entrezGeneId":"284029"},{"alias":"CENP-36","entrezGeneId":"284058"},{"alias":"hMSL1v1","entrezGeneId":"284058"},{"alias":"KDVS","entrezGeneId":"284058"},{"alias":"KIAA1267","entrezGeneId":"284058"},{"alias":"MSL1v1","entrezGeneId":"284058"},{"alias":"NSL1","entrezGeneId":"284058"},{"alias":"RPL29_11_1549","entrezGeneId":"284064"},{"alias":"C17orf105","entrezGeneId":"284067"},{"alias":"C17orf104","entrezGeneId":"284071"},{"alias":"TTL.6","entrezGeneId":"284076"},{"alias":"JCK","entrezGeneId":"284086"},{"alias":"NEK12A","entrezGeneId":"284086"},{"alias":"NPHP9","entrezGeneId":"284086"},{"alias":"RHPD2","entrezGeneId":"284086"},{"alias":"Gwt1","entrezGeneId":"284098"},{"alias":"HPMRS5","entrezGeneId":"284098"},{"alias":"Miner2","entrezGeneId":"284106"},{"alias":"MiNT","entrezGeneId":"284106"},{"alias":"FKSG9","entrezGeneId":"284110"},{"alias":"GSDM","entrezGeneId":"284110"},{"alias":"GSDM1","entrezGeneId":"284110"},{"alias":"EIEE25","entrezGeneId":"284111"},{"alias":"INDY","entrezGeneId":"284111"},{"alias":"mIndy","entrezGeneId":"284111"},{"alias":"NACT","entrezGeneId":"284111"},{"alias":"CBAP","entrezGeneId":"284114"},{"alias":"CAVIN","entrezGeneId":"284119"},{"alias":"cavin-1","entrezGeneId":"284119"},{"alias":"CGL4","entrezGeneId":"284119"},{"alias":"FKSG13","entrezGeneId":"284119"},{"alias":"PTRF","entrezGeneId":"284119"},{"alias":"FAM27L","entrezGeneId":"284123"},{"alias":"GDE4","entrezGeneId":"284161"},{"alias":"POLRMTL","entrezGeneId":"284167"},{"alias":"C17orf89","entrezGeneId":"284184"},{"alias":"C17orf55","entrezGeneId":"284185"},{"alias":"RNASEH1","entrezGeneId":"284203"},{"alias":"RNASEH1P","entrezGeneId":"284203"},{"alias":"RNH1","entrezGeneId":"284203"},{"alias":"LAMA","entrezGeneId":"284217"},{"alias":"PTBHS","entrezGeneId":"284217"},{"alias":"S-LAM-alpha","entrezGeneId":"284217"},{"alias":"RPL36A_23_1584","entrezGeneId":"284230"},{"alias":"C18orf5","entrezGeneId":"284252"},{"alias":"C18orf26","entrezGeneId":"284254"},{"alias":"BOD1P","entrezGeneId":"284257"},{"alias":"FAM44C","entrezGeneId":"284257"},{"alias":"CD33L3","entrezGeneId":"284266"},{"alias":"HsT1361","entrezGeneId":"284266"},{"alias":"SIGLEC-15","entrezGeneId":"284266"},{"alias":"PRG-3","entrezGeneId":"284273"},{"alias":"C18orf62","entrezGeneId":"284274"},{"alias":"ACC-6","entrezGeneId":"284293"},{"alias":"ACC6","entrezGeneId":"284293"},{"alias":"C18orf53","entrezGeneId":"284293"},{"alias":"HSMD-v","entrezGeneId":"284293"},{"alias":"S5D-SRCRB","entrezGeneId":"284297"},{"alias":"ZNF762","entrezGeneId":"284307"},{"alias":"MZF-1","entrezGeneId":"284312"},{"alias":"ZNF915","entrezGeneId":"284312"},{"alias":"ZNF780","entrezGeneId":"284323"},{"alias":"Dcip1","entrezGeneId":"284340"},{"alias":"DMC","entrezGeneId":"284340"},{"alias":"UNQ473","entrezGeneId":"284340"},{"alias":"VCC-1","entrezGeneId":"284340"},{"alias":"VCC1","entrezGeneId":"284340"},{"alias":"PRO4356","entrezGeneId":"284348"},{"alias":"HZF19","entrezGeneId":"284349"},{"alias":"HZF41","entrezGeneId":"284349"},{"alias":"LRRC68","entrezGeneId":"284352"},{"alias":"TPRX","entrezGeneId":"284355"},{"alias":"MASTR","entrezGeneId":"284358"},{"alias":"IZUMO","entrezGeneId":"284359"},{"alias":"OBF","entrezGeneId":"284359"},{"alias":"C19orf63","entrezGeneId":"284361"},{"alias":"HSM1","entrezGeneId":"284361"},{"alias":"HSS1","entrezGeneId":"284361"},{"alias":"KLK-L3","entrezGeneId":"284366"},{"alias":"KLKL3","entrezGeneId":"284366"},{"alias":"HSPC078","entrezGeneId":"284367"},{"alias":"SIGLECP2","entrezGeneId":"284367"},{"alias":"SIGLECP3","entrezGeneId":"284367"},{"alias":"C19orf75","entrezGeneId":"284369"},{"alias":"SIGLEC23P","entrezGeneId":"284369"},{"alias":"SIGLECP7","entrezGeneId":"284369"},{"alias":"HSD21","entrezGeneId":"284382"},{"alias":"OR19-4","entrezGeneId":"284383"},{"alias":"OR2Z2","entrezGeneId":"284383"},{"alias":"C19orf82","entrezGeneId":"284385"},{"alias":"ZNF","entrezGeneId":"284390"},{"alias":"ZNF440L","entrezGeneId":"284390"},{"alias":"RPL10_6_1628","entrezGeneId":"284393"},{"alias":"SCGB4A2","entrezGeneId":"284402"},{"alias":"SCGBL","entrezGeneId":"284402"},{"alias":"C19orf14","entrezGeneId":"284403"},{"alias":"MCPH2","entrezGeneId":"284403"},{"alias":"ZNF545","entrezGeneId":"284406"},{"alias":"SIRL-1","entrezGeneId":"284415"},{"alias":"SIRL1","entrezGeneId":"284415"},{"alias":"UNQ3033","entrezGeneId":"284415"},{"alias":"DRAM3","entrezGeneId":"284417"},{"alias":"TMEM224","entrezGeneId":"284417"},{"alias":"TTN2","entrezGeneId":"284417"},{"alias":"C19orf16","entrezGeneId":"284418"},{"alias":"C19orf77","entrezGeneId":"284422"},{"alias":"HSPC323","entrezGeneId":"284422"},{"alias":"MARDI","entrezGeneId":"284422"},{"alias":"C19orf30","entrezGeneId":"284424"},{"alias":"Huh7","entrezGeneId":"284424"},{"alias":"LINC00306","entrezGeneId":"284424"},{"alias":"NCRNA00306","entrezGeneId":"284424"},{"alias":"PGSF1","entrezGeneId":"284424"},{"alias":"uc002mbe.2","entrezGeneId":"284424"},{"alias":"APC4","entrezGeneId":"284427"},{"alias":"OR19-25","entrezGeneId":"284433"},{"alias":"OR19-26","entrezGeneId":"284433"},{"alias":"C19orf19","entrezGeneId":"284451"},{"alias":"ZNF875","entrezGeneId":"284459"},{"alias":"TAFA-3","entrezGeneId":"284467"},{"alias":"TAFA3","entrezGeneId":"284467"},{"alias":"C1orf230","entrezGeneId":"284485"},{"alias":"NCRNA00166","entrezGeneId":"284485"},{"alias":"ACOT15","entrezGeneId":"284486"},{"alias":"OR2L14","entrezGeneId":"284521"},{"alias":"SLC9A11","entrezGeneId":"284525"},{"alias":"OR5AT1","entrezGeneId":"284532"},{"alias":"AB14","entrezGeneId":"284565"},{"alias":"AG3","entrezGeneId":"284565"},{"alias":"NBPF16","entrezGeneId":"284565"},{"alias":"C1orf157","entrezGeneId":"284573"},{"alias":"NCRNA00303","entrezGeneId":"284573"},{"alias":"SYM-3B","entrezGeneId":"284611"},{"alias":"MG29","entrezGeneId":"284612"},{"alias":"ANKRD34","entrezGeneId":"284615"},{"alias":"C1orf104","entrezGeneId":"284618"},{"alias":"DKFZP564C196","entrezGeneId":"284649"},{"alias":"CRISTIN3","entrezGeneId":"284654"},{"alias":"RSPO","entrezGeneId":"284654"},{"alias":"PTGES3P","entrezGeneId":"284672"},{"alias":"C1orf204","entrezGeneId":"284677"},{"alias":"VSIG8-OT1","entrezGeneId":"284677"},{"alias":"C1orf111","entrezGeneId":"284680"},{"alias":"HSD20","entrezGeneId":"284680"},{"alias":"dJ871E2.1","entrezGeneId":"284695"},{"alias":"ZAN75","entrezGeneId":"284695"},{"alias":"Zfp326","entrezGeneId":"284695"},{"alias":"ZIRD","entrezGeneId":"284695"},{"alias":"FAM80A","entrezGeneId":"284716"},{"alias":"NAAGS","entrezGeneId":"284716"},{"alias":"NAAGS-II","entrezGeneId":"284716"},{"alias":"dJ1182A14.1","entrezGeneId":"284729"},{"alias":"LINC00176","entrezGeneId":"284739"},{"alias":"NCRNA00176","entrezGeneId":"284739"},{"alias":"PRR17","entrezGeneId":"284739"},{"alias":"dJ776F14.2","entrezGeneId":"284759"},{"alias":"PTPN1L","entrezGeneId":"284759"},{"alias":"PTPNS1L3","entrezGeneId":"284759"},{"alias":"dJ681N20.2","entrezGeneId":"284764"},{"alias":"FTLL1","entrezGeneId":"284764"},{"alias":"C20orf91","entrezGeneId":"284800"},{"alias":"C20orf91A","entrezGeneId":"284800"},{"alias":"bA348I14.2","entrezGeneId":"284802"},{"alias":"C20orf80","entrezGeneId":"284802"},{"alias":"FRG1B","entrezGeneId":"284802"},{"alias":"RPL13A_12_1722","entrezGeneId":"284821"},{"alias":"KAP13.4","entrezGeneId":"284827"},{"alias":"C21orf130","entrezGeneId":"284835"},{"alias":"NCRNA00323","entrezGeneId":"284835"},{"alias":"PRED42","entrezGeneId":"284835"},{"alias":"C21orf125","entrezGeneId":"284836"},{"alias":"NCRNA00319","entrezGeneId":"284836"},{"alias":"PRED49","entrezGeneId":"284836"},{"alias":"MIF-AS","entrezGeneId":"284889"},{"alias":"dJ353E16.2","entrezGeneId":"284900"},{"alias":"TTC28-AS","entrezGeneId":"284900"},{"alias":"TTC28AS","entrezGeneId":"284900"},{"alias":"TAP3","entrezGeneId":"284904"},{"alias":"RPL23A_43_1761","entrezGeneId":"284942"},{"alias":"DNAPTP2","entrezGeneId":"284996"},{"alias":"PANCAT","entrezGeneId":"284998"},{"alias":"AUGA","entrezGeneId":"285016"},{"alias":"FAM150B","entrezGeneId":"285016"},{"alias":"PRO1097","entrezGeneId":"285016"},{"alias":"RGPG542","entrezGeneId":"285016"},{"alias":"CAMDI","entrezGeneId":"285025"},{"alias":"C2orf61","entrezGeneId":"285051"},{"alias":"GSE","entrezGeneId":"285051"},{"alias":"RPL18A_1_215","entrezGeneId":"285053"},{"alias":"C2orf85","entrezGeneId":"285093"},{"alias":"CXXC11","entrezGeneId":"285093"},{"alias":"Z3CXXC5","entrezGeneId":"285093"},{"alias":"CCDC74B-AS1","entrezGeneId":"285103"},{"alias":"MED15P2","entrezGeneId":"285103"},{"alias":"AHCTF1P","entrezGeneId":"285116"},{"alias":"ELYS-like","entrezGeneId":"285116"},{"alias":"CSP-gamma","entrezGeneId":"285126"},{"alias":"C2orf58","entrezGeneId":"285154"},{"alias":"HYCC2","entrezGeneId":"285172"},{"alias":"C2orf21","entrezGeneId":"285175"},{"alias":"UNC-80","entrezGeneId":"285175"},{"alias":"ZFYVE31","entrezGeneId":"285180"},{"alias":"PLGLA1","entrezGeneId":"285189"},{"alias":"PLGP2","entrezGeneId":"285189"},{"alias":"PRGA","entrezGeneId":"285189"},{"alias":"RGP4","entrezGeneId":"285190"},{"alias":"DUSP26","entrezGeneId":"285193"},{"alias":"VHP","entrezGeneId":"285193"},{"alias":"LINC00902","entrezGeneId":"285194"},{"alias":"LSAMP-AS1","entrezGeneId":"285194"},{"alias":"LSAMP-AS3","entrezGeneId":"285194"},{"alias":"LSAMPAS3","entrezGeneId":"285194"},{"alias":"NCRNA00295","entrezGeneId":"285194"},{"alias":"AUTS16","entrezGeneId":"285195"},{"alias":"NHE9","entrezGeneId":"285195"},{"alias":"AER61","entrezGeneId":"285203"},{"alias":"AOS4","entrezGeneId":"285203"},{"alias":"C3orf64","entrezGeneId":"285203"},{"alias":"EOGT1","entrezGeneId":"285203"},{"alias":"EHK-2","entrezGeneId":"285220"},{"alias":"EHK2","entrezGeneId":"285220"},{"alias":"EK12","entrezGeneId":"285220"},{"alias":"EPA6","entrezGeneId":"285220"},{"alias":"HEK12","entrezGeneId":"285220"},{"alias":"PRO57066","entrezGeneId":"285220"},{"alias":"FBW12","entrezGeneId":"285231"},{"alias":"FBXO12","entrezGeneId":"285231"},{"alias":"FBXO35","entrezGeneId":"285231"},{"alias":"5-HT3-E","entrezGeneId":"285242"},{"alias":"5-HT3c1","entrezGeneId":"285242"},{"alias":"5-HT3E","entrezGeneId":"285242"},{"alias":"RPL31_7_358","entrezGeneId":"285260"},{"alias":"UNC93B3P","entrezGeneId":"285296"},{"alias":"CMF608","entrezGeneId":"285313"},{"alias":"D3S3192","entrezGeneId":"285314"},{"alias":"PAB1","entrezGeneId":"285314"},{"alias":"PABPL1","entrezGeneId":"285314"},{"alias":"AC3-33","entrezGeneId":"285315"},{"alias":"C3orf12","entrezGeneId":"285329"},{"alias":"UBQLN4P","entrezGeneId":"285329"},{"alias":"NHE","entrezGeneId":"285335"},{"alias":"NHE-10","entrezGeneId":"285335"},{"alias":"SLC9A10","entrezGeneId":"285335"},{"alias":"sperm-NHE","entrezGeneId":"285335"},{"alias":"C3orf23","entrezGeneId":"285343"},{"alias":"TOAG-1","entrezGeneId":"285343"},{"alias":"TOAG1","entrezGeneId":"285343"},{"alias":"AAPA3037","entrezGeneId":"285362"},{"alias":"FGE","entrezGeneId":"285362"},{"alias":"UNQ3037","entrezGeneId":"285362"},{"alias":"DELGIP","entrezGeneId":"285381"},{"alias":"DELGIP1","entrezGeneId":"285381"},{"alias":"DESR1","entrezGeneId":"285381"},{"alias":"DPH3A","entrezGeneId":"285381"},{"alias":"KTI11","entrezGeneId":"285381"},{"alias":"ZCSL2","entrezGeneId":"285381"},{"alias":"FAM79B","entrezGeneId":"285386"},{"alias":"WDR21B","entrezGeneId":"285429"},{"alias":"BCD","entrezGeneId":"285440"},{"alias":"CYP4AH1","entrezGeneId":"285440"},{"alias":"PCAT10","entrezGeneId":"285463"},{"alias":"C4orf25","entrezGeneId":"285489"},{"alias":"CMS10","entrezGeneId":"285489"},{"alias":"CMS1B","entrezGeneId":"285489"},{"alias":"ZHP3","entrezGeneId":"285498"},{"alias":"FAM13A1OS","entrezGeneId":"285512"},{"alias":"FAM13AOS","entrezGeneId":"285512"},{"alias":"NCRNA00039","entrezGeneId":"285512"},{"alias":"GRIN3","entrezGeneId":"285513"},{"alias":"COX18HS","entrezGeneId":"285521"},{"alias":"FinGER9","entrezGeneId":"285525"},{"alias":"AF4p12","entrezGeneId":"285527"},{"alias":"KIAA0826","entrezGeneId":"285527"},{"alias":"MOR2","entrezGeneId":"285527"},{"alias":"C4orf53","entrezGeneId":"285550"},{"alias":"C4orf37","entrezGeneId":"285555"},{"alias":"FOPV","entrezGeneId":"285556"},{"alias":"FAD49","entrezGeneId":"285590"},{"alias":"FTHS","entrezGeneId":"285590"},{"alias":"HOFI","entrezGeneId":"285590"},{"alias":"KIAA1295","entrezGeneId":"285590"},{"alias":"TKS4","entrezGeneId":"285590"},{"alias":"TSK4","entrezGeneId":"285590"},{"alias":"NY-REN-7","entrezGeneId":"285596"},{"alias":"ARL10A","entrezGeneId":"285598"},{"alias":"C5orf36","entrezGeneId":"285600"},{"alias":"PGR11","entrezGeneId":"285601"},{"alias":"C5orf16","entrezGeneId":"285613"},{"alias":"PAT3","entrezGeneId":"285641"},{"alias":"TRAMD2","entrezGeneId":"285641"},{"alias":"tramdorin2","entrezGeneId":"285641"},{"alias":"OR2V3","entrezGeneId":"285659"},{"alias":"OST713","entrezGeneId":"285659"},{"alias":"RINES","entrezGeneId":"285671"},{"alias":"P18SRP","entrezGeneId":"285672"},{"alias":"SFRS12IP1","entrezGeneId":"285672"},{"alias":"DRAGON","entrezGeneId":"285704"},{"alias":"NCRNA00326","entrezGeneId":"285735"},{"alias":"CCRL1P","entrezGeneId":"285737"},{"alias":"dJ509I19.4","entrezGeneId":"285737"},{"alias":"bA487F23.2","entrezGeneId":"285753"},{"alias":"C6orf182","entrezGeneId":"285753"},{"alias":"cep57R","entrezGeneId":"285753"},{"alias":"bA425D10.6","entrezGeneId":"285755"},{"alias":"dJ919F19.1","entrezGeneId":"285755"},{"alias":"PPIase","entrezGeneId":"285755"},{"alias":"RSPH12","entrezGeneId":"285755"},{"alias":"dJ94G16.1","entrezGeneId":"285761"},{"alias":"LY86-AS","entrezGeneId":"285780"},{"alias":"LY86AS","entrezGeneId":"285780"},{"alias":"bA69L16.7","entrezGeneId":"285782"},{"alias":"CT3","entrezGeneId":"285782"},{"alias":"CT95","entrezGeneId":"285782"},{"alias":"CTAG3","entrezGeneId":"285782"},{"alias":"RPL39_9_712","entrezGeneId":"285785"},{"alias":"dJ271M21","entrezGeneId":"285829"},{"alias":"SMT3Bp","entrezGeneId":"285829"},{"alias":"SMT3H2P","entrezGeneId":"285829"},{"alias":"SUMO2P","entrezGeneId":"285829"},{"alias":"PBMUCL2","entrezGeneId":"285834"},{"alias":"ARCI10","entrezGeneId":"285848"},{"alias":"dJ50J22.1","entrezGeneId":"285848"},{"alias":"TLT-4","entrezGeneId":"285852"},{"alias":"TLT4","entrezGeneId":"285852"},{"alias":"dJ475N16.4","entrezGeneId":"285855"},{"alias":"GS1-18A18.1","entrezGeneId":"285878"},{"alias":"ARAF3P","entrezGeneId":"285893"},{"alias":"ARAFPS2","entrezGeneId":"285893"},{"alias":"RPL6_6_811","entrezGeneId":"285900"},{"alias":"INTS4L1","entrezGeneId":"285905"},{"alias":"NCRNA00174","entrezGeneId":"285908"},{"alias":"HOXA3as","entrezGeneId":"285943"},{"alias":"Ringo1","entrezGeneId":"285955"},{"alias":"SPDYB2L2","entrezGeneId":"285955"},{"alias":"SPDYE","entrezGeneId":"285955"},{"alias":"WBSCR19","entrezGeneId":"285955"},{"alias":"C7orf40","entrezGeneId":"285958"},{"alias":"Linc-Myo1g","entrezGeneId":"285958"},{"alias":"MYO1GUT","entrezGeneId":"285958"},{"alias":"bA291L22.2","entrezGeneId":"285961"},{"alias":"CDC10L","entrezGeneId":"285961"},{"alias":"SEPT7L","entrezGeneId":"285961"},{"alias":"FAM115C","entrezGeneId":"285966"},{"alias":"FAM139A","entrezGeneId":"285966"},{"alias":"GATD9","entrezGeneId":"285966"},{"alias":"APG9L2","entrezGeneId":"285973"},{"alias":"NOS3AS","entrezGeneId":"285973"},{"alias":"SONE","entrezGeneId":"285973"},{"alias":"DLX6-AS","entrezGeneId":"285987"},{"alias":"DLX6AS","entrezGeneId":"285987"},{"alias":"Evf-2","entrezGeneId":"285987"},{"alias":"NCRNA00212","entrezGeneId":"285987"},{"alias":"C7orf53","entrezGeneId":"286006"},{"alias":"C8orf21","entrezGeneId":"286046"},{"alias":"C8orf5","entrezGeneId":"286046"},{"alias":"C8orf7","entrezGeneId":"286046"},{"alias":"XRG6","entrezGeneId":"286046"},{"alias":"C8orf36","entrezGeneId":"286053"},{"alias":"MMS21","entrezGeneId":"286053"},{"alias":"NSE2","entrezGeneId":"286053"},{"alias":"ZMIZ7","entrezGeneId":"286053"},{"alias":"Erk3ps4","entrezGeneId":"286065"},{"alias":"AI3","entrezGeneId":"286077"},{"alias":"AI3A","entrezGeneId":"286077"},{"alias":"EFHA2","entrezGeneId":"286097"},{"alias":"ZNF252","entrezGeneId":"286101"},{"alias":"TMED10P","entrezGeneId":"286102"},{"alias":"Tmp21-II","entrezGeneId":"286102"},{"alias":"C8orf77","entrezGeneId":"286103"},{"alias":"zfp-41","entrezGeneId":"286128"},{"alias":"ZNF753","entrezGeneId":"286128"},{"alias":"NET33","entrezGeneId":"286133"},{"alias":"Tesr","entrezGeneId":"286133"},{"alias":"FAM183CP","entrezGeneId":"286135"},{"alias":"C8orf83","entrezGeneId":"286144"},{"alias":"PRO0845","entrezGeneId":"286144"},{"alias":"UPF0599","entrezGeneId":"286144"},{"alias":"RPS2_11_929","entrezGeneId":"286150"},{"alias":"EMI2","entrezGeneId":"286151"},{"alias":"ERP1","entrezGeneId":"286151"},{"alias":"FBX43","entrezGeneId":"286151"},{"alias":"FAM77D","entrezGeneId":"286183"},{"alias":"dtr","entrezGeneId":"286187"},{"alias":"LRRC67","entrezGeneId":"286187"},{"alias":"TLLR","entrezGeneId":"286187"},{"alias":"TLRR","entrezGeneId":"286187"},{"alias":"FSGS9","entrezGeneId":"286204"},{"alias":"VMCKD","entrezGeneId":"286204"},{"alias":"C9orf126","entrezGeneId":"286205"},{"alias":"NET40","entrezGeneId":"286205"},{"alias":"C9orf117","entrezGeneId":"286207"},{"alias":"bA791O21.3","entrezGeneId":"286223"},{"alias":"C9orf108","entrezGeneId":"286223"},{"alias":"C9orf79","entrezGeneId":"286234"},{"alias":"FAM75E1","entrezGeneId":"286234"},{"alias":"C9orf142","entrezGeneId":"286257"},{"alias":"XLS","entrezGeneId":"286257"},{"alias":"C9orf75","entrezGeneId":"286262"},{"alias":"DFNB79","entrezGeneId":"286262"},{"alias":"bA430N14.2","entrezGeneId":"286310"},{"alias":"LCN1L1","entrezGeneId":"286310"},{"alias":"CCDC89B","entrezGeneId":"286319"},{"alias":"TSG-9","entrezGeneId":"286319"},{"alias":"TSG9","entrezGeneId":"286319"},{"alias":"C9orf109","entrezGeneId":"286333"},{"alias":"LINC00256A","entrezGeneId":"286333"},{"alias":"NCRNA00256A","entrezGeneId":"286333"},{"alias":"C9orf59","entrezGeneId":"286336"},{"alias":"bA3L8.2","entrezGeneId":"286343"},{"alias":"C9orf150","entrezGeneId":"286343"},{"alias":"HYST0841","entrezGeneId":"286343"},{"alias":"LRAP35b","entrezGeneId":"286343"},{"alias":"RPL7_16_965","entrezGeneId":"286348"},{"alias":"OR37L","entrezGeneId":"286362"},{"alias":"OR9-13","entrezGeneId":"286362"},{"alias":"OR9-15","entrezGeneId":"286365"},{"alias":"FOXD4L2","entrezGeneId":"286380"},{"alias":"FOXD6","entrezGeneId":"286380"},{"alias":"ATPIG","entrezGeneId":"286410"},{"alias":"ATPIQ","entrezGeneId":"286410"},{"alias":"MRRFP","entrezGeneId":"286423"},{"alias":"CLRX.1","entrezGeneId":"286430"},{"alias":"NALP2P","entrezGeneId":"286430"},{"alias":"NLRP2P","entrezGeneId":"286430"},{"alias":"NOD24","entrezGeneId":"286430"},{"alias":"POP4","entrezGeneId":"286430"},{"alias":"RPS2_29_1773","entrezGeneId":"286444"},{"alias":"FinGER6","entrezGeneId":"286451"},{"alias":"CHDC2","entrezGeneId":"286464"},{"alias":"CXorf22","entrezGeneId":"286464"},{"alias":"CXorf30","entrezGeneId":"286464"},{"alias":"CXorf59","entrezGeneId":"286464"},{"alias":"LINC01200","entrezGeneId":"286467"},{"alias":"Psi4Rac1","entrezGeneId":"286472"},{"alias":"RAC4","entrezGeneId":"286472"},{"alias":"UbcM2","entrezGeneId":"286480"},{"alias":"BRAF2","entrezGeneId":"286494"},{"alias":"BRAFPS2","entrezGeneId":"286494"},{"alias":"RNF105L","entrezGeneId":"286495"},{"alias":"TTC3L","entrezGeneId":"286495"},{"alias":"CT115","entrezGeneId":"286499"},{"alias":"Tbeta15b","entrezGeneId":"286527"},{"alias":"P2Y8","entrezGeneId":"286530"},{"alias":"ADLICANP","entrezGeneId":"286544"},{"alias":"MXRA5P","entrezGeneId":"286544"},{"alias":"MXRA5P1","entrezGeneId":"286544"},{"alias":"HCP46","entrezGeneId":"286550"},{"alias":"HCP47","entrezGeneId":"286550"},{"alias":"BCORL2","entrezGeneId":"286554"},{"alias":"TBL1YP","entrezGeneId":"286555"},{"alias":"TPTEP","entrezGeneId":"286573"},{"alias":"DFNB42","entrezGeneId":"286676"},{"alias":"ILDR1alpha","entrezGeneId":"286676"},{"alias":"ILDR1alpha'","entrezGeneId":"286676"},{"alias":"ILDR1beta","entrezGeneId":"286676"},{"alias":"SALF","entrezGeneId":"286749"},{"alias":"BEC-1","entrezGeneId":"286753"},{"alias":"DSPB1","entrezGeneId":"286753"},{"alias":"IFITMD3","entrezGeneId":"286753"},{"alias":"LOST1","entrezGeneId":"286753"},{"alias":"TUSC5","entrezGeneId":"286753"},{"alias":"BARA","entrezGeneId":"286826"},{"alias":"BARPsv","entrezGeneId":"286826"},{"alias":"Lin-9","entrezGeneId":"286826"},{"alias":"TGS","entrezGeneId":"286826"},{"alias":"TGS1","entrezGeneId":"286826"},{"alias":"TGS2","entrezGeneId":"286826"},{"alias":"IFT80L","entrezGeneId":"286827"},{"alias":"MRF1","entrezGeneId":"286827"},{"alias":"RNF104","entrezGeneId":"286827"},{"alias":"TRIM57","entrezGeneId":"286827"},{"alias":"TSBF1","entrezGeneId":"286827"},{"alias":"CSN1S2A","entrezGeneId":"286828"},{"alias":"K6E","entrezGeneId":"286887"},{"alias":"KRT6E","entrezGeneId":"286887"},{"alias":"PPKNEFD","entrezGeneId":"286887"},{"alias":"CXorf52","entrezGeneId":"286967"},{"alias":"CXorf52B","entrezGeneId":"286967"},{"alias":"LINC00204B","entrezGeneId":"286967"},{"alias":"NCRNA00204B","entrezGeneId":"286967"},{"alias":"PPP1R40","entrezGeneId":"287015"},{"alias":"T4A1","entrezGeneId":"287015"},{"alias":"C4orf10","entrezGeneId":"317648"},{"alias":"RES4-24","entrezGeneId":"317648"},{"alias":"eIF-4E3","entrezGeneId":"317649"},{"alias":"eIF4E-3","entrezGeneId":"317649"},{"alias":"KIAA0974","entrezGeneId":"317662"},{"alias":"Erk3ps1","entrezGeneId":"317686"},{"alias":"BCRG1","entrezGeneId":"317687"},{"alias":"BCRP1","entrezGeneId":"317687"},{"alias":"D14S1460","entrezGeneId":"317687"},{"alias":"D14S1460E","entrezGeneId":"317687"},{"alias":"VN1R22-1P","entrezGeneId":"317691"},{"alias":"V1RL2","entrezGeneId":"317701"},{"alias":"FKSG46","entrezGeneId":"317702"},{"alias":"V1RL3","entrezGeneId":"317702"},{"alias":"V1RL3p","entrezGeneId":"317702"},{"alias":"V1RL4","entrezGeneId":"317703"},{"alias":"V1RL5","entrezGeneId":"317705"},{"alias":"BASE","entrezGeneId":"317716"},{"alias":"SPGF11","entrezGeneId":"317719"},{"alias":"HMGN2L2","entrezGeneId":"317726"},{"alias":"SDR25C3","entrezGeneId":"317749"},{"alias":"MEST-AS1","entrezGeneId":"317751"},{"alias":"MEST-IT","entrezGeneId":"317751"},{"alias":"MEST-IT1","entrezGeneId":"317751"},{"alias":"NCRNA00040","entrezGeneId":"317751"},{"alias":"PEG1-AS","entrezGeneId":"317751"},{"alias":"A26B3","entrezGeneId":"317754"},{"alias":"ANKRD21","entrezGeneId":"317754"},{"alias":"CT104.1","entrezGeneId":"317754"},{"alias":"POTE","entrezGeneId":"317754"},{"alias":"POTE-21","entrezGeneId":"317754"},{"alias":"POTE21","entrezGeneId":"317754"},{"alias":"C14orf55","entrezGeneId":"317760"},{"alias":"Six6os1","entrezGeneId":"317761"},{"alias":"H2AB","entrezGeneId":"317772"},{"alias":"FHM3","entrezGeneId":"317773"},{"alias":"MGR","entrezGeneId":"317773"},{"alias":"CDC10P","entrezGeneId":"317774"},{"alias":"CBPINP","entrezGeneId":"317778"},{"alias":"SYF2P","entrezGeneId":"317778"},{"alias":"CKS1BP","entrezGeneId":"317780"},{"alias":"CD","entrezGeneId":"317782"},{"alias":"GSE","entrezGeneId":"317782"},{"alias":"COILP","entrezGeneId":"317784"},{"alias":"C14orf85","entrezGeneId":"319085"},{"alias":"ITPK1-AS","entrezGeneId":"319085"},{"alias":"ITPK1AS","entrezGeneId":"319085"},{"alias":"NCRNA00203","entrezGeneId":"319085"},{"alias":"C14orf25","entrezGeneId":"319089"},{"alias":"NCRNA00291","entrezGeneId":"319089"},{"alias":"ARHQP","entrezGeneId":"319093"},{"alias":"RHOQP","entrezGeneId":"319093"},{"alias":"COX7A3P","entrezGeneId":"319098"},{"alias":"COX7AP1","entrezGeneId":"319098"},{"alias":"TA4","entrezGeneId":"319100"},{"alias":"taR-4","entrezGeneId":"319100"},{"alias":"taR-6","entrezGeneId":"319100"},{"alias":"TAR4","entrezGeneId":"319100"},{"alias":"TAR6","entrezGeneId":"319100"},{"alias":"TRAR4","entrezGeneId":"319100"},{"alias":"IRT6IRS3","entrezGeneId":"319101"},{"alias":"K6IRS3","entrezGeneId":"319101"},{"alias":"KRT6IRS3","entrezGeneId":"319101"},{"alias":"ARHGAP15P","entrezGeneId":"319102"},{"alias":"mgU6-53","entrezGeneId":"319103"},{"alias":"RNU6C","entrezGeneId":"319103"},{"alias":"EIF2S2P","entrezGeneId":"319115"},{"alias":"ATP6V1GP1","entrezGeneId":"319116"},{"alias":"EIF3EIPP1","entrezGeneId":"319117"},{"alias":"EIF3S6IPP","entrezGeneId":"319117"},{"alias":"EIF4BP","entrezGeneId":"319118"},{"alias":"ATP5G2P2","entrezGeneId":"319119"},{"alias":"ATP5GP2","entrezGeneId":"319119"},{"alias":"YWHAZP","entrezGeneId":"319120"},{"alias":"YWHAQP","entrezGeneId":"319121"},{"alias":"ZNF405P","entrezGeneId":"319123"},{"alias":"NARSP","entrezGeneId":"319127"},{"alias":"PPIAP12","entrezGeneId":"319128"},{"alias":"PPIP2","entrezGeneId":"319128"},{"alias":"LAMR1P5","entrezGeneId":"319129"},{"alias":"RPSA_22_1412","entrezGeneId":"319129"},{"alias":"HMGB1L14","entrezGeneId":"319130"},{"alias":"HMGB1P","entrezGeneId":"319130"},{"alias":"HMGN1L1","entrezGeneId":"319131"},{"alias":"HMGN2L1","entrezGeneId":"319132"},{"alias":"HMGN2P","entrezGeneId":"319132"},{"alias":"HNRPCP","entrezGeneId":"319133"},{"alias":"HNRPUP","entrezGeneId":"319134"},{"alias":"RPL10A_6_1413","entrezGeneId":"319135"},{"alias":"ATP5G1P1","entrezGeneId":"319136"},{"alias":"ATP5GP3","entrezGeneId":"319136"},{"alias":"ATP5G1P2","entrezGeneId":"319137"},{"alias":"ATP5GP4","entrezGeneId":"319137"},{"alias":"BNIP3P","entrezGeneId":"319138"},{"alias":"RNU56B","entrezGeneId":"319139"},{"alias":"GCATP","entrezGeneId":"319140"},{"alias":"RPL12_15_1346","entrezGeneId":"319142"},{"alias":"RPL21_49_1395","entrezGeneId":"319143"},{"alias":"RPL21_52_1410","entrezGeneId":"319144"},{"alias":"RPL21_48_1381","entrezGeneId":"319145"},{"alias":"STK16P","entrezGeneId":"326107"},{"alias":"ABI1P","entrezGeneId":"326268"},{"alias":"SSH3BP1P","entrezGeneId":"326268"},{"alias":"SNRPGP","entrezGeneId":"326272"},{"alias":"RPL12_16_1383","entrezGeneId":"326275"},{"alias":"SF3B4P","entrezGeneId":"326276"},{"alias":"RPL13A_12_1359","entrezGeneId":"326278"},{"alias":"RPL15_6_1404","entrezGeneId":"326279"},{"alias":"RPL17_23_1411","entrezGeneId":"326288"},{"alias":"RPL18A_3_1401","entrezGeneId":"326289"},{"alias":"RPL18_7_1361","entrezGeneId":"326291"},{"alias":"RPL22_9_1393","entrezGeneId":"326292"},{"alias":"RPL23A_28_1405","entrezGeneId":"326293"},{"alias":"RPL23A_29_1408","entrezGeneId":"326294"},{"alias":"EIF4EBP1P","entrezGeneId":"326295"},{"alias":"RPL26_14_1341","entrezGeneId":"326297"},{"alias":"RPL26_17_1344","entrezGeneId":"326298"},{"alias":"RPL27_7_1347","entrezGeneId":"326299"},{"alias":"HSPEP2","entrezGeneId":"326300"},{"alias":"RPL36A_18_1380","entrezGeneId":"326301"},{"alias":"NEK2P","entrezGeneId":"326302"},{"alias":"RPL36AP3","entrezGeneId":"326303"},{"alias":"RPL36_6_1387","entrezGeneId":"326303"},{"alias":"RPL36A_19_1402","entrezGeneId":"326304"},{"alias":"MOCS3P","entrezGeneId":"326305"},{"alias":"RPL39_16_1342","entrezGeneId":"326306"},{"alias":"RPL7A_26_1382","entrezGeneId":"326309"},{"alias":"RPL7A_27_1386","entrezGeneId":"326310"},{"alias":"RPL9_10_1398","entrezGeneId":"326311"},{"alias":"RPS12_13_1388","entrezGeneId":"326312"},{"alias":"RPS15A_11_1364","entrezGeneId":"326316"},{"alias":"RPS15A_19_1360","entrezGeneId":"326317"},{"alias":"RPS18_7_1400","entrezGeneId":"326320"},{"alias":"RPS24_8_1390","entrezGeneId":"326321"},{"alias":"RPS24_9_1397","entrezGeneId":"326322"},{"alias":"RPS27A_7_1343","entrezGeneId":"326323"},{"alias":"RPS2_17_1389","entrezGeneId":"326325"},{"alias":"RPS2_19_1406","entrezGeneId":"326326"},{"alias":"psiSSX4","entrezGeneId":"326337"},{"alias":"SSX10","entrezGeneId":"326337"},{"alias":"psiSSX5","entrezGeneId":"326339"},{"alias":"Z3CXXC6","entrezGeneId":"326340"},{"alias":"psiSSX3","entrezGeneId":"326341"},{"alias":"EMR4","entrezGeneId":"326342"},{"alias":"EMR4P","entrezGeneId":"326342"},{"alias":"FIRE","entrezGeneId":"326342"},{"alias":"GPR127","entrezGeneId":"326342"},{"alias":"PGR16","entrezGeneId":"326342"},{"alias":"MTM","entrezGeneId":"326343"},{"alias":"psiSSX8","entrezGeneId":"326585"},{"alias":"psiSSX9","entrezGeneId":"326586"},{"alias":"psiSSX6","entrezGeneId":"326587"},{"alias":"psiSSX7","entrezGeneId":"326590"},{"alias":"MORF4LP1","entrezGeneId":"326591"},{"alias":"MRG1","entrezGeneId":"326591"},{"alias":"MORF4LP3","entrezGeneId":"326593"},{"alias":"MRG11","entrezGeneId":"326593"},{"alias":"MORF4LP2","entrezGeneId":"326594"},{"alias":"MORF4LP4","entrezGeneId":"326594"},{"alias":"MRG5","entrezGeneId":"326594"},{"alias":"MAD2L1P","entrezGeneId":"326596"},{"alias":"NCOA4P","entrezGeneId":"326605"},{"alias":"NMNATP","entrezGeneId":"326607"},{"alias":"PBPP1","entrezGeneId":"326614"},{"alias":"MED15P","entrezGeneId":"326615"},{"alias":"PCQAPP","entrezGeneId":"326615"},{"alias":"PDLIM1P","entrezGeneId":"326616"},{"alias":"ATR","entrezGeneId":"326625"},{"alias":"cblB","entrezGeneId":"326625"},{"alias":"CFAP23","entrezGeneId":"326625"},{"alias":"cob","entrezGeneId":"326625"},{"alias":"RPA2P","entrezGeneId":"326628"},{"alias":"GCET1","entrezGeneId":"327657"},{"alias":"SERPINA11","entrezGeneId":"327657"},{"alias":"SERPINA11b","entrezGeneId":"327657"},{"alias":"FAM16AY","entrezGeneId":"327658"},{"alias":"HDHD1BP","entrezGeneId":"327658"},{"alias":"HDHD1P1","entrezGeneId":"327658"},{"alias":"FAM16B","entrezGeneId":"327659"},{"alias":"HDHD1CP","entrezGeneId":"327659"},{"alias":"HDHD1P2","entrezGeneId":"327659"},{"alias":"PP2CZ","entrezGeneId":"333926"},{"alias":"PP2Czeta","entrezGeneId":"333926"},{"alias":"PPP2CZ","entrezGeneId":"333926"},{"alias":"SMUC","entrezGeneId":"333929"},{"alias":"SNAIL3","entrezGeneId":"333929"},{"alias":"Zfp293","entrezGeneId":"333929"},{"alias":"ZNF293","entrezGeneId":"333929"},{"alias":"H3/n","entrezGeneId":"333932"},{"alias":"H3/o","entrezGeneId":"333932"},{"alias":"PHGDHL1","entrezGeneId":"337867"},{"alias":"H2B/t","entrezGeneId":"337873"},{"alias":"HIST2H2BD","entrezGeneId":"337873"},{"alias":"H2B/o","entrezGeneId":"337874"},{"alias":"H2B/s","entrezGeneId":"337874"},{"alias":"H2BFO","entrezGeneId":"337874"},{"alias":"CHSY2","entrezGeneId":"337876"},{"alias":"CSS3","entrezGeneId":"337876"},{"alias":"KAP7.1","entrezGeneId":"337878"},{"alias":"KAP8.1","entrezGeneId":"337879"},{"alias":"HACL-1","entrezGeneId":"337880"},{"alias":"HACL1","entrezGeneId":"337880"},{"alias":"KAP11.1","entrezGeneId":"337880"},{"alias":"KAP19.1","entrezGeneId":"337882"},{"alias":"KAP13-2","entrezGeneId":"337959"},{"alias":"KAP13.3","entrezGeneId":"337960"},{"alias":"KAP23.1","entrezGeneId":"337963"},{"alias":"KAP13A","entrezGeneId":"337964"},{"alias":"KRTAP13P1","entrezGeneId":"337964"},{"alias":"KAP13B","entrezGeneId":"337965"},{"alias":"KRTAP13P2","entrezGeneId":"337965"},{"alias":"C21orf103","entrezGeneId":"337966"},{"alias":"KAP6.1","entrezGeneId":"337966"},{"alias":"KAP6.2","entrezGeneId":"337967"},{"alias":"KAP6.3","entrezGeneId":"337968"},{"alias":"KAP19.2","entrezGeneId":"337969"},{"alias":"GTRHP","entrezGeneId":"337970"},{"alias":"KAP19.3","entrezGeneId":"337970"},{"alias":"KAP19.4","entrezGeneId":"337971"},{"alias":"KAP19.5","entrezGeneId":"337972"},{"alias":"KAP19.6","entrezGeneId":"337973"},{"alias":"KAP19.7","entrezGeneId":"337974"},{"alias":"KAP20.1","entrezGeneId":"337975"},{"alias":"KAP20.2","entrezGeneId":"337976"},{"alias":"KAP21.1","entrezGeneId":"337977"},{"alias":"KAP21.2","entrezGeneId":"337978"},{"alias":"KAP22.1","entrezGeneId":"337979"},{"alias":"KAP8A","entrezGeneId":"337980"},{"alias":"KRTAP8P1","entrezGeneId":"337980"},{"alias":"KAP8B","entrezGeneId":"337981"},{"alias":"KRTAP8P2","entrezGeneId":"337981"},{"alias":"KAP19A","entrezGeneId":"337982"},{"alias":"KRTAP19P1","entrezGeneId":"337982"},{"alias":"KAP19B","entrezGeneId":"337983"},{"alias":"KRTAP19P2","entrezGeneId":"337983"},{"alias":"KAP19C","entrezGeneId":"337984"},{"alias":"KRTAP19P3","entrezGeneId":"337984"},{"alias":"KAP19D","entrezGeneId":"337985"},{"alias":"KAP20.3","entrezGeneId":"337985"},{"alias":"KRTAP19P4","entrezGeneId":"337985"},{"alias":"KAP21A","entrezGeneId":"337986"},{"alias":"KRTAP21P1","entrezGeneId":"337986"},{"alias":"C14orf71","entrezGeneId":"338002"},{"alias":"C14orf97","entrezGeneId":"338004"},{"alias":"NCRNA00226","entrezGeneId":"338004"},{"alias":"C14orf98","entrezGeneId":"338005"},{"alias":"NCRNA00221","entrezGeneId":"338005"},{"alias":"GLM1","entrezGeneId":"338030"},{"alias":"NCRNA00042","entrezGeneId":"338069"},{"alias":"ST7OT4","entrezGeneId":"338069"},{"alias":"C1orf179","entrezGeneId":"338094"},{"alias":"CLR19.1","entrezGeneId":"338321"},{"alias":"NALP9","entrezGeneId":"338321"},{"alias":"NOD6","entrezGeneId":"338321"},{"alias":"PAN12","entrezGeneId":"338321"},{"alias":"CLR11.1","entrezGeneId":"338322"},{"alias":"NALP10","entrezGeneId":"338322"},{"alias":"NOD8","entrezGeneId":"338322"},{"alias":"PAN5","entrezGeneId":"338322"},{"alias":"PYNOD","entrezGeneId":"338322"},{"alias":"CLR11.2","entrezGeneId":"338323"},{"alias":"GC-LRR","entrezGeneId":"338323"},{"alias":"NALP14","entrezGeneId":"338323"},{"alias":"NOD5","entrezGeneId":"338323"},{"alias":"PAN8","entrezGeneId":"338323"},{"alias":"NICE-2","entrezGeneId":"338324"},{"alias":"NICE2","entrezGeneId":"338324"},{"alias":"S100A15","entrezGeneId":"338324"},{"alias":"S100A7f","entrezGeneId":"338324"},{"alias":"S100A7L1","entrezGeneId":"338324"},{"alias":"GPI-HBP1","entrezGeneId":"338328"},{"alias":"HYPL1D","entrezGeneId":"338328"},{"alias":"GSES","entrezGeneId":"338332"},{"alias":"CD368","entrezGeneId":"338339"},{"alias":"CLEC-6","entrezGeneId":"338339"},{"alias":"CLEC6","entrezGeneId":"338339"},{"alias":"CLECSF8","entrezGeneId":"338339"},{"alias":"Dectin-3","entrezGeneId":"338339"},{"alias":"MCL","entrezGeneId":"338339"},{"alias":"MPCL","entrezGeneId":"338339"},{"alias":"MGOA","entrezGeneId":"338342"},{"alias":"IFN-E","entrezGeneId":"338376"},{"alias":"IFNE1","entrezGeneId":"338376"},{"alias":"IFNT1","entrezGeneId":"338376"},{"alias":"INFE1","entrezGeneId":"338376"},{"alias":"PRO655","entrezGeneId":"338376"},{"alias":"RAB7","entrezGeneId":"338382"},{"alias":"PS9","entrezGeneId":"338396"},{"alias":"T2R02","entrezGeneId":"338396"},{"alias":"T2R2","entrezGeneId":"338396"},{"alias":"TAS2R2","entrezGeneId":"338396"},{"alias":"T2R56","entrezGeneId":"338398"},{"alias":"T2R60","entrezGeneId":"338398"},{"alias":"PS1","entrezGeneId":"338399"},{"alias":"T2R62","entrezGeneId":"338399"},{"alias":"TAS2R62","entrezGeneId":"338399"},{"alias":"PS2","entrezGeneId":"338412"},{"alias":"T2R64","entrezGeneId":"338412"},{"alias":"T2R64P","entrezGeneId":"338412"},{"alias":"PS6","entrezGeneId":"338413"},{"alias":"T2R63","entrezGeneId":"338413"},{"alias":"PS4","entrezGeneId":"338414"},{"alias":"T2R18","entrezGeneId":"338414"},{"alias":"T2R65","entrezGeneId":"338414"},{"alias":"TAS2R18","entrezGeneId":"338414"},{"alias":"TAS2R65","entrezGeneId":"338414"},{"alias":"TAS2R65P","entrezGeneId":"338414"},{"alias":"HBII-437","entrezGeneId":"338427"},{"alias":"HBII-438A","entrezGeneId":"338428"},{"alias":"HBII-438B","entrezGeneId":"338429"},{"alias":"HBII-52-1","entrezGeneId":"338433"},{"alias":"RNHBII52","entrezGeneId":"338433"},{"alias":"CANDF3","entrezGeneId":"338434"},{"alias":"FCNC","entrezGeneId":"338434"},{"alias":"PIG5","entrezGeneId":"338440"},{"alias":"TMEM16J","entrezGeneId":"338440"},{"alias":"TP53I5","entrezGeneId":"338440"},{"alias":"GPR109A","entrezGeneId":"338442"},{"alias":"HCA2","entrezGeneId":"338442"},{"alias":"HM74a","entrezGeneId":"338442"},{"alias":"HM74b","entrezGeneId":"338442"},{"alias":"NIACR1","entrezGeneId":"338442"},{"alias":"Puma-g","entrezGeneId":"338442"},{"alias":"PUMAG","entrezGeneId":"338442"},{"alias":"BMIQ10","entrezGeneId":"338557"},{"alias":"GPR120","entrezGeneId":"338557"},{"alias":"GPR129","entrezGeneId":"338557"},{"alias":"GT01","entrezGeneId":"338557"},{"alias":"O3FAR1","entrezGeneId":"338557"},{"alias":"PGR4","entrezGeneId":"338557"},{"alias":"K2p18.1","entrezGeneId":"338567"},{"alias":"MGR13","entrezGeneId":"338567"},{"alias":"TRESK","entrezGeneId":"338567"},{"alias":"TRESK-2","entrezGeneId":"338567"},{"alias":"TRESK2","entrezGeneId":"338567"},{"alias":"TRIK","entrezGeneId":"338567"},{"alias":"SIA8F","entrezGeneId":"338596"},{"alias":"SIAT8-F","entrezGeneId":"338596"},{"alias":"SIAT8F","entrezGeneId":"338596"},{"alias":"ST8SIA-VI","entrezGeneId":"338596"},{"alias":"ST8SiaVI","entrezGeneId":"338596"},{"alias":"DUSP27","entrezGeneId":"338599"},{"alias":"FMDSP","entrezGeneId":"338599"},{"alias":"RPS26_20_1061","entrezGeneId":"338611"},{"alias":"OR52M4","entrezGeneId":"338637"},{"alias":"KFSP2566","entrezGeneId":"338645"},{"alias":"PRO6246","entrezGeneId":"338645"},{"alias":"DLNB14","entrezGeneId":"338657"},{"alias":"PMP22CD","entrezGeneId":"338661"},{"alias":"PPP1R154","entrezGeneId":"338661"},{"alias":"SPATA47","entrezGeneId":"338661"},{"alias":"OR11-275","entrezGeneId":"338662"},{"alias":"OR11-10","entrezGeneId":"338674"},{"alias":"OR9J1","entrezGeneId":"338675"},{"alias":"PPP1R79","entrezGeneId":"338699"},{"alias":"SARP","entrezGeneId":"338699"},{"alias":"CSTF3-AS1","entrezGeneId":"338739"},{"alias":"OR11-50","entrezGeneId":"338751"},{"alias":"OR11-76","entrezGeneId":"338755"},{"alias":"OR2AG2P","entrezGeneId":"338755"},{"alias":"LINC00936","entrezGeneId":"338758"},{"alias":"C1QTNF11","entrezGeneId":"338761"},{"alias":"CTRP11","entrezGeneId":"338761"},{"alias":"OBIF","entrezGeneId":"338773"},{"alias":"K6L","entrezGeneId":"338785"},{"alias":"KRT6L","entrezGeneId":"338785"},{"alias":"LIMT","entrezGeneId":"338799"},{"alias":"TAFA-2","entrezGeneId":"338811"},{"alias":"TAFA2","entrezGeneId":"338811"},{"alias":"LST-3","entrezGeneId":"338821"},{"alias":"LST-3TM12","entrezGeneId":"338821"},{"alias":"LST3","entrezGeneId":"338821"},{"alias":"SLC21A21","entrezGeneId":"338821"},{"alias":"RPS12_11_1301","entrezGeneId":"338870"},{"alias":"AQL1","entrezGeneId":"338872"},{"alias":"C1QTNF9A","entrezGeneId":"338872"},{"alias":"CTRP9","entrezGeneId":"338872"},{"alias":"RAH1","entrezGeneId":"338879"},{"alias":"RNASE9","entrezGeneId":"338879"},{"alias":"CHX10","entrezGeneId":"338917"},{"alias":"HOX10","entrezGeneId":"338917"},{"alias":"MCOP2","entrezGeneId":"338917"},{"alias":"MCOPCB3","entrezGeneId":"338917"},{"alias":"RET1","entrezGeneId":"338917"},{"alias":"WHAMML1","entrezGeneId":"339005"},{"alias":"WHDC1L1","entrezGeneId":"339005"},{"alias":"HG3","entrezGeneId":"339039"},{"alias":"HG1","entrezGeneId":"339044"},{"alias":"NPIP","entrezGeneId":"339044"},{"alias":"POL3S","entrezGeneId":"339105"},{"alias":"UNQ308","entrezGeneId":"339105"},{"alias":"RAB11B","entrezGeneId":"339122"},{"alias":"RAB41","entrezGeneId":"339122"},{"alias":"C16orf20","entrezGeneId":"339123"},{"alias":"PP14397","entrezGeneId":"339123"},{"alias":"UNQ9390","entrezGeneId":"339168"},{"alias":"METTL2","entrezGeneId":"339175"},{"alias":"C17orf65","entrezGeneId":"339201"},{"alias":"ALK-SMase","entrezGeneId":"339221"},{"alias":"E-NPP 7","entrezGeneId":"339221"},{"alias":"NPP-7","entrezGeneId":"339221"},{"alias":"NPP7","entrezGeneId":"339221"},{"alias":"C17orf90","entrezGeneId":"339229"},{"alias":"RaRF","entrezGeneId":"339230"},{"alias":"hMSL1","entrezGeneId":"339287"},{"alias":"MSL-1","entrezGeneId":"339287"},{"alias":"CPX-IV","entrezGeneId":"339302"},{"alias":"CPXIV","entrezGeneId":"339302"},{"alias":"HHZ181","entrezGeneId":"339318"},{"alias":"OZRF1","entrezGeneId":"339324"},{"alias":"PEX1","entrezGeneId":"339324"},{"alias":"ZFP260","entrezGeneId":"339324"},{"alias":"ZNF49","entrezGeneId":"339327"},{"alias":"P42pop","entrezGeneId":"339344"},{"alias":"NOS2","entrezGeneId":"339345"},{"alias":"ZC2HC12B","entrezGeneId":"339345"},{"alias":"THSD6","entrezGeneId":"339366"},{"alias":"DTTR431","entrezGeneId":"339390"},{"alias":"LP2698","entrezGeneId":"339390"},{"alias":"LSECtin","entrezGeneId":"339390"},{"alias":"UNQ431","entrezGeneId":"339390"},{"alias":"NEFHL","entrezGeneId":"339396"},{"alias":"DAAT9248","entrezGeneId":"339398"},{"alias":"LRRN6D","entrezGeneId":"339398"},{"alias":"PRO34002","entrezGeneId":"339398"},{"alias":"GPCR142","entrezGeneId":"339403"},{"alias":"GPR100","entrezGeneId":"339403"},{"alias":"RLN3R2","entrezGeneId":"339403"},{"alias":"RXFPR4","entrezGeneId":"339403"},{"alias":"CT117","entrezGeneId":"339416"},{"alias":"C1orf70","entrezGeneId":"339453"},{"alias":"SCA21","entrezGeneId":"339453"},{"alias":"C1orf99","entrezGeneId":"339476"},{"alias":"DBCCR1L","entrezGeneId":"339479"},{"alias":"DBCCR1L1","entrezGeneId":"339479"},{"alias":"FAM5C","entrezGeneId":"339479"},{"alias":"MTMR9L","entrezGeneId":"339483"},{"alias":"ARCH","entrezGeneId":"339487"},{"alias":"ARCH2","entrezGeneId":"339487"},{"alias":"AP2E","entrezGeneId":"339488"},{"alias":"MPN2","entrezGeneId":"339501"},{"alias":"C1orf110","entrezGeneId":"339512"},{"alias":"FAM58B","entrezGeneId":"339521"},{"alias":"FAM58BP","entrezGeneId":"339521"},{"alias":"LINK-A","entrezGeneId":"339535"},{"alias":"LINKA","entrezGeneId":"339535"},{"alias":"C1orf228","entrezGeneId":"339541"},{"alias":"NCRNA00082","entrezGeneId":"339541"},{"alias":"p40","entrezGeneId":"339541"},{"alias":"ZFP69A","entrezGeneId":"339559"},{"alias":"ZKSCAN23A","entrezGeneId":"339559"},{"alias":"ZNF642","entrezGeneId":"339559"},{"alias":"ZSCAN54A","entrezGeneId":"339559"},{"alias":"C22orf33","entrezGeneId":"339669"},{"alias":"cE81G9.2","entrezGeneId":"339669"},{"alias":"EAN57","entrezGeneId":"339669"},{"alias":"BK250D10.8","entrezGeneId":"339674"},{"alias":"BTBD33","entrezGeneId":"339745"},{"alias":"MLK7-AS1","entrezGeneId":"339751"},{"alias":"HEATR7B1","entrezGeneId":"339766"},{"alias":"C2orf53","entrezGeneId":"339779"},{"alias":"C2orf46","entrezGeneId":"339789"},{"alias":"NCRNA00299","entrezGeneId":"339789"},{"alias":"CILD14","entrezGeneId":"339829"},{"alias":"FAP59","entrezGeneId":"339829"},{"alias":"CT74","entrezGeneId":"339834"},{"alias":"ASSP7","entrezGeneId":"339845"},{"alias":"MFM7","entrezGeneId":"339855"},{"alias":"APRG1","entrezGeneId":"339883"},{"alias":"ADC","entrezGeneId":"339896"},{"alias":"CSADC","entrezGeneId":"339896"},{"alias":"HuADC","entrezGeneId":"339896"},{"alias":"HuCSADC","entrezGeneId":"339896"},{"alias":"TESSP2","entrezGeneId":"339906"},{"alias":"MYCLo-5","entrezGeneId":"339929"},{"alias":"MYCLo-6","entrezGeneId":"339929"},{"alias":"C3orf47","entrezGeneId":"339942"},{"alias":"ECRG1","entrezGeneId":"339967"},{"alias":"GLURR2","entrezGeneId":"339970"},{"alias":"GRINL1B","entrezGeneId":"339970"},{"alias":"RNF209","entrezGeneId":"339976"},{"alias":"CML3","entrezGeneId":"339983"},{"alias":"NACED","entrezGeneId":"339983"},{"alias":"NAT8-LIKE","entrezGeneId":"339983"},{"alias":"B0AT1","entrezGeneId":"340024"},{"alias":"HND","entrezGeneId":"340024"},{"alias":"ERIS","entrezGeneId":"340061"},{"alias":"hMITA","entrezGeneId":"340061"},{"alias":"hSTING","entrezGeneId":"340061"},{"alias":"MITA","entrezGeneId":"340061"},{"alias":"MPYS","entrezGeneId":"340061"},{"alias":"NET23","entrezGeneId":"340061"},{"alias":"SAVI","entrezGeneId":"340061"},{"alias":"STING","entrezGeneId":"340061"},{"alias":"STING-beta","entrezGeneId":"340061"},{"alias":"ZNFD","entrezGeneId":"340069"},{"alias":"ASI","entrezGeneId":"340075"},{"alias":"SPG66","entrezGeneId":"340075"},{"alias":"DP58","entrezGeneId":"340120"},{"alias":"FRCL1","entrezGeneId":"340146"},{"alias":"C6orf95","entrezGeneId":"340152"},{"alias":"dJ281H8.1","entrezGeneId":"340152"},{"alias":"MCPIP4","entrezGeneId":"340152"},{"alias":"p34","entrezGeneId":"340152"},{"alias":"TFL","entrezGeneId":"340152"},{"alias":"SgK085","entrezGeneId":"340156"},{"alias":"ESG1","entrezGeneId":"340168"},{"alias":"dJ313I6.1","entrezGeneId":"340192"},{"alias":"IQCB1P1","entrezGeneId":"340192"},{"alias":"dJ377H14.5","entrezGeneId":"340198"},{"alias":"C6orf127","entrezGeneId":"340204"},{"alias":"dJ510O8.6","entrezGeneId":"340204"},{"alias":"ESP32","entrezGeneId":"340204"},{"alias":"dJ238O23.3","entrezGeneId":"340205"},{"alias":"GLTL1825","entrezGeneId":"340205"},{"alias":"PRO3438","entrezGeneId":"340205"},{"alias":"TLT-1","entrezGeneId":"340205"},{"alias":"TLT1","entrezGeneId":"340205"},{"alias":"TLT3","entrezGeneId":"340206"},{"alias":"TREML3","entrezGeneId":"340206"},{"alias":"TNRC18C","entrezGeneId":"340221"},{"alias":"UNCX4.1","entrezGeneId":"340260"},{"alias":"COL28","entrezGeneId":"340267"},{"alias":"ABCB5alpha","entrezGeneId":"340273"},{"alias":"ABCB5beta","entrezGeneId":"340273"},{"alias":"EST422562","entrezGeneId":"340273"},{"alias":"ASSP11","entrezGeneId":"340274"},{"alias":"C7orf46","entrezGeneId":"340277"},{"alias":"FAM183B","entrezGeneId":"340286"},{"alias":"THEG6","entrezGeneId":"340286"},{"alias":"CTAGE6P","entrezGeneId":"340307"},{"alias":"PEN","entrezGeneId":"340348"},{"alias":"PEN.","entrezGeneId":"340348"},{"alias":"TSPAN-33","entrezGeneId":"340348"},{"alias":"CCP3","entrezGeneId":"340351"},{"alias":"C8ORFK36","entrezGeneId":"340359"},{"alias":"pp9320","entrezGeneId":"340371"},{"alias":"TRG16","entrezGeneId":"340371"},{"alias":"KIAA1875","entrezGeneId":"340390"},{"alias":"C8ORFK29","entrezGeneId":"340393"},{"alias":"CRISTIN2","entrezGeneId":"340419"},{"alias":"A26A1","entrezGeneId":"340441"},{"alias":"CT104.3","entrezGeneId":"340441"},{"alias":"POTE-8","entrezGeneId":"340441"},{"alias":"POTE8","entrezGeneId":"340441"},{"alias":"RPS5_2_920","entrezGeneId":"340443"},{"alias":"DHHC-21","entrezGeneId":"340481"},{"alias":"DHHC21","entrezGeneId":"340481"},{"alias":"DNZ1","entrezGeneId":"340481"},{"alias":"HSPC097","entrezGeneId":"340481"},{"alias":"ALKCDase2","entrezGeneId":"340485"},{"alias":"ASAH3L","entrezGeneId":"340485"},{"alias":"bA537H15.4","entrezGeneId":"340499"},{"alias":"6430402L03Rik","entrezGeneId":"340526"},{"alias":"MAR5","entrezGeneId":"340526"},{"alias":"MART5","entrezGeneId":"340526"},{"alias":"RGAG4","entrezGeneId":"340526"},{"alias":"SIRH8","entrezGeneId":"340526"},{"alias":"RBM32A","entrezGeneId":"340529"},{"alias":"KIAA2022","entrezGeneId":"340533"},{"alias":"KIDLIA","entrezGeneId":"340533"},{"alias":"MRX98","entrezGeneId":"340533"},{"alias":"XPN","entrezGeneId":"340533"},{"alias":"NGFRAP1L1","entrezGeneId":"340542"},{"alias":"WEX4","entrezGeneId":"340543"},{"alias":"1700062D20Rik","entrezGeneId":"340547"},{"alias":"dJ889N15.1","entrezGeneId":"340547"},{"alias":"GPA34","entrezGeneId":"340547"},{"alias":"CXorf32","entrezGeneId":"340554"},{"alias":"MCPIP2","entrezGeneId":"340554"},{"alias":"SIAH1L","entrezGeneId":"340571"},{"alias":"WDR40C","entrezGeneId":"340578"},{"alias":"CA5BL","entrezGeneId":"340591"},{"alias":"CA5BP","entrezGeneId":"340591"},{"alias":"PRO2325","entrezGeneId":"340591"},{"alias":"Mar4","entrezGeneId":"340595"},{"alias":"Mart4","entrezGeneId":"340595"},{"alias":"SIRH11","entrezGeneId":"340595"},{"alias":"ZCCHC16","entrezGeneId":"340595"},{"alias":"FAM41AY","entrezGeneId":"340618"},{"alias":"bA304I5.1","entrezGeneId":"340654"},{"alias":"LIPL3","entrezGeneId":"340654"},{"alias":"FFDD4","entrezGeneId":"340665"},{"alias":"AMACO","entrezGeneId":"340706"},{"alias":"CCSP-2","entrezGeneId":"340706"},{"alias":"NET42","entrezGeneId":"340706"},{"alias":"EC_Rep1a","entrezGeneId":"340719"},{"alias":"NOS-1","entrezGeneId":"340719"},{"alias":"NOS1","entrezGeneId":"340719"},{"alias":"SPGF12","entrezGeneId":"340719"},{"alias":"ZC2HC12A","entrezGeneId":"340719"},{"alias":"LRRC22","entrezGeneId":"340745"},{"alias":"bA141D8.1","entrezGeneId":"340749"},{"alias":"RPL7A_24_1075","entrezGeneId":"340749"},{"alias":"NKX-5.1","entrezGeneId":"340784"},{"alias":"Nkx5-1","entrezGeneId":"340784"},{"alias":"NKX5.1","entrezGeneId":"340784"},{"alias":"AKR1CL1","entrezGeneId":"340811"},{"alias":"bA265G8.2","entrezGeneId":"340895"},{"alias":"C10orf112","entrezGeneId":"340895"},{"alias":"DIET1","entrezGeneId":"340895"},{"alias":"EBLN-1","entrezGeneId":"340900"},{"alias":"OR11-47","entrezGeneId":"340980"},{"alias":"DFNB18B","entrezGeneId":"340990"},{"alias":"MLEMP","entrezGeneId":"340990"},{"alias":"OTGN","entrezGeneId":"340990"},{"alias":"CD20L7","entrezGeneId":"341116"},{"alias":"MS4A9","entrezGeneId":"341116"},{"alias":"HCP27","entrezGeneId":"341148"},{"alias":"OR11-265","entrezGeneId":"341152"},{"alias":"ASSP13","entrezGeneId":"341230"},{"alias":"OR10A2P","entrezGeneId":"341276"},{"alias":"OR11-82","entrezGeneId":"341276"},{"alias":"OR11-86","entrezGeneId":"341276"},{"alias":"OST363","entrezGeneId":"341276"},{"alias":"OVTN","entrezGeneId":"341277"},{"alias":"PABPCP5","entrezGeneId":"341315"},{"alias":"PABPL2","entrezGeneId":"341315"},{"alias":"C12orf70","entrezGeneId":"341346"},{"alias":"OVCH","entrezGeneId":"341350"},{"alias":"RPL31_16_1224","entrezGeneId":"341356"},{"alias":"C12orf7","entrezGeneId":"341405"},{"alias":"PANKY","entrezGeneId":"341405"},{"alias":"OR6C67","entrezGeneId":"341416"},{"alias":"OR12-10","entrezGeneId":"341418"},{"alias":"PPIP8","entrezGeneId":"341457"},{"alias":"RPL23A_29_1192","entrezGeneId":"341511"},{"alias":"H1.7","entrezGeneId":"341567"},{"alias":"H1T2","entrezGeneId":"341567"},{"alias":"RPL35_2_1335","entrezGeneId":"341604"},{"alias":"FRASRS2","entrezGeneId":"341640"},{"alias":"OR14-37","entrezGeneId":"341799"},{"alias":"OR6S1Q","entrezGeneId":"341799"},{"alias":"C14orf36","entrezGeneId":"341880"},{"alias":"c14_5373","entrezGeneId":"341880"},{"alias":"COX8-3","entrezGeneId":"341947"},{"alias":"VDAC3P","entrezGeneId":"341965"},{"alias":"CLOM","entrezGeneId":"342035"},{"alias":"COLM","entrezGeneId":"342035"},{"alias":"CRG-L2","entrezGeneId":"342035"},{"alias":"CRGL2","entrezGeneId":"342035"},{"alias":"LCCS11","entrezGeneId":"342035"},{"alias":"UNC-112","entrezGeneId":"342035"},{"alias":"GLP","entrezGeneId":"342096"},{"alias":"GOLGA6","entrezGeneId":"342096"},{"alias":"FMN","entrezGeneId":"342184"},{"alias":"LD","entrezGeneId":"342184"},{"alias":"ZNF694","entrezGeneId":"342357"},{"alias":"ZSCAN31","entrezGeneId":"342357"},{"alias":"ZSCAN34","entrezGeneId":"342357"},{"alias":"HC1","entrezGeneId":"342358"},{"alias":"HCP39","entrezGeneId":"342358"},{"alias":"BOAT","entrezGeneId":"342371"},{"alias":"BOAT1","entrezGeneId":"342371"},{"alias":"CD300LE","entrezGeneId":"342510"},{"alias":"CLM-2","entrezGeneId":"342510"},{"alias":"CLM2","entrezGeneId":"342510"},{"alias":"CMRF35-A5","entrezGeneId":"342510"},{"alias":"IREM-2","entrezGeneId":"342510"},{"alias":"IREM2","entrezGeneId":"342510"},{"alias":"PIgR-2","entrezGeneId":"342510"},{"alias":"PIgR2","entrezGeneId":"342510"},{"alias":"ANAC","entrezGeneId":"342538"},{"alias":"NACAL","entrezGeneId":"342538"},{"alias":"K25IRS3","entrezGeneId":"342574"},{"alias":"KRT25C","entrezGeneId":"342574"},{"alias":"BDPLT20","entrezGeneId":"342618"},{"alias":"LRRC37F","entrezGeneId":"342666"},{"alias":"24b2","entrezGeneId":"342667"},{"alias":"24b2/STAC2","entrezGeneId":"342667"},{"alias":"PGDL1","entrezGeneId":"342705"},{"alias":"MRPS17P4","entrezGeneId":"342776"},{"alias":"MRPS17P8","entrezGeneId":"342776"},{"alias":"RPS2_22_1612","entrezGeneId":"342808"},{"alias":"DKFZp779B1634","entrezGeneId":"342850"},{"alias":"ZNF850P","entrezGeneId":"342892"},{"alias":"FBXO50","entrezGeneId":"342897"},{"alias":"NCCRP-1","entrezGeneId":"342897"},{"alias":"INSSA1","entrezGeneId":"342898"},{"alias":"SYL","entrezGeneId":"342898"},{"alias":"ZNF284L","entrezGeneId":"342909"},{"alias":"RFPL4","entrezGeneId":"342931"},{"alias":"RNF210","entrezGeneId":"342931"},{"alias":"ZNF371","entrezGeneId":"342933"},{"alias":"ZNF495B","entrezGeneId":"342933"},{"alias":"HKR2","entrezGeneId":"342945"},{"alias":"ZNF50","entrezGeneId":"342945"},{"alias":"NANOS1L","entrezGeneId":"342977"},{"alias":"NOS3","entrezGeneId":"342977"},{"alias":"ZC2HC12C","entrezGeneId":"342977"},{"alias":"RPL34_15_1639","entrezGeneId":"342994"},{"alias":"C1orf36","entrezGeneId":"343035"},{"alias":"LCA12","entrezGeneId":"343035"},{"alias":"HCP1","entrezGeneId":"343045"},{"alias":"PRAMEF23","entrezGeneId":"343068"},{"alias":"PRAMEF5L","entrezGeneId":"343068"},{"alias":"HNRPCL1","entrezGeneId":"343069"},{"alias":"NY-SAR-41","entrezGeneId":"343099"},{"alias":"OR1-34","entrezGeneId":"343169"},{"alias":"OR1-38","entrezGeneId":"343169"},{"alias":"OST731","entrezGeneId":"343169"},{"alias":"OR1-39","entrezGeneId":"343170"},{"alias":"OR1.5.9","entrezGeneId":"343170"},{"alias":"OR5AY1","entrezGeneId":"343170"},{"alias":"OR2W3P","entrezGeneId":"343171"},{"alias":"OR2W8P","entrezGeneId":"343171"},{"alias":"OST718","entrezGeneId":"343171"},{"alias":"OR2T8P","entrezGeneId":"343172"},{"alias":"RPS2_3_47","entrezGeneId":"343184"},{"alias":"RPL10A_1_67","entrezGeneId":"343301"},{"alias":"CHR39A","entrezGeneId":"343332"},{"alias":"FDPSL1","entrezGeneId":"343332"},{"alias":"FPSL1","entrezGeneId":"343332"},{"alias":"OR1-8","entrezGeneId":"343406"},{"alias":"OR10R2Q","entrezGeneId":"343406"},{"alias":"FcRH6","entrezGeneId":"343413"},{"alias":"EIEE57","entrezGeneId":"343450"},{"alias":"KCa4.2","entrezGeneId":"343450"},{"alias":"SLICK","entrezGeneId":"343450"},{"alias":"SLO2.1","entrezGeneId":"343450"},{"alias":"GRP94C","entrezGeneId":"343477"},{"alias":"TRA1P2","entrezGeneId":"343477"},{"alias":"TRAP2","entrezGeneId":"343477"},{"alias":"RPL6_1_93","entrezGeneId":"343495"},{"alias":"ATP6EP1","entrezGeneId":"343515"},{"alias":"ATP6V1EP1","entrezGeneId":"343515"},{"alias":"C20orf95","entrezGeneId":"343578"},{"alias":"dJ1100H13.4","entrezGeneId":"343578"},{"alias":"C20orf182","entrezGeneId":"343637"},{"alias":"CRISTIN4","entrezGeneId":"343637"},{"alias":"dJ734P14.3","entrezGeneId":"343641"},{"alias":"SCA35","entrezGeneId":"343641"},{"alias":"TG6","entrezGeneId":"343641"},{"alias":"TGM3L","entrezGeneId":"343641"},{"alias":"TGY","entrezGeneId":"343641"},{"alias":"C20orf159","entrezGeneId":"343702"},{"alias":"dJ310O13.4","entrezGeneId":"343702"},{"alias":"CYC1LP5","entrezGeneId":"343727"},{"alias":"HCP42","entrezGeneId":"343727"},{"alias":"RPS10_14_1741","entrezGeneId":"343851"},{"alias":"MSOG","entrezGeneId":"343930"},{"alias":"pMsgn1","entrezGeneId":"343930"},{"alias":"C2orf55","entrezGeneId":"343990"},{"alias":"BHLHC8","entrezGeneId":"344018"},{"alias":"FIGALPHA","entrezGeneId":"344018"},{"alias":"POF6","entrezGeneId":"344018"},{"alias":"ERIH1","entrezGeneId":"344148"},{"alias":"ERIH2","entrezGeneId":"344148"},{"alias":"NAP5","entrezGeneId":"344148"},{"alias":"RPL5_2_294","entrezGeneId":"344178"},{"alias":"EVX-2","entrezGeneId":"344191"},{"alias":"FABP5L10","entrezGeneId":"344332"},{"alias":"NCRNA00117","entrezGeneId":"344405"},{"alias":"Prdxdd1","entrezGeneId":"344405"},{"alias":"PRDXDD1P","entrezGeneId":"344405"},{"alias":"Ybakd1","entrezGeneId":"344405"},{"alias":"RPS12_2_223","entrezGeneId":"344423"},{"alias":"AOH2","entrezGeneId":"344454"},{"alias":"AOX2","entrezGeneId":"344454"},{"alias":"AOX3L1","entrezGeneId":"344454"},{"alias":"RPL12_2_319","entrezGeneId":"344471"},{"alias":"POSH2","entrezGeneId":"344558"},{"alias":"SH3MD4","entrezGeneId":"344558"},{"alias":"BTR","entrezGeneId":"344561"},{"alias":"PGR6","entrezGeneId":"344561"},{"alias":"DUM","entrezGeneId":"344595"},{"alias":"LINC00883","entrezGeneId":"344595"},{"alias":"LINC0883","entrezGeneId":"344595"},{"alias":"LRRC64","entrezGeneId":"344657"},{"alias":"HNRNPA1P","entrezGeneId":"344697"},{"alias":"IEDA","entrezGeneId":"344758"},{"alias":"PGR10","entrezGeneId":"344758"},{"alias":"R35","entrezGeneId":"344758"},{"alias":"CASRL1","entrezGeneId":"344760"},{"alias":"GPRC2B","entrezGeneId":"344760"},{"alias":"CD200R2","entrezGeneId":"344807"},{"alias":"CD200RLa","entrezGeneId":"344807"},{"alias":"GSTO3P1","entrezGeneId":"344813"},{"alias":"COL6A4","entrezGeneId":"344875"},{"alias":"COL6A4P","entrezGeneId":"344875"},{"alias":"DIVA","entrezGeneId":"344875"},{"alias":"DVWA","entrezGeneId":"344875"},{"alias":"VWA6","entrezGeneId":"344875"},{"alias":"NMRAL1P1","entrezGeneId":"344887"},{"alias":"Z3CXXC2","entrezGeneId":"344892"},{"alias":"MUSCLIN","entrezGeneId":"344901"},{"alias":"SAR1P3","entrezGeneId":"344988"},{"alias":"HSPD1-8P","entrezGeneId":"345041"},{"alias":"HSPDP5","entrezGeneId":"345041"},{"alias":"ESSPL","entrezGeneId":"345062"},{"alias":"ANKRD56","entrezGeneId":"345079"},{"alias":"CSNB1F","entrezGeneId":"345193"},{"alias":"FIGLER4","entrezGeneId":"345193"},{"alias":"C4orf44","entrezGeneId":"345222"},{"alias":"SOAT","entrezGeneId":"345274"},{"alias":"HMFN0376","entrezGeneId":"345275"},{"alias":"NIIL497","entrezGeneId":"345275"},{"alias":"SCDR9","entrezGeneId":"345275"},{"alias":"SDR16C3","entrezGeneId":"345275"},{"alias":"DKFZp686E2433","entrezGeneId":"345462"},{"alias":"IFI1","entrezGeneId":"345611"},{"alias":"IRGM1","entrezGeneId":"345611"},{"alias":"LRG-47","entrezGeneId":"345611"},{"alias":"LRG47","entrezGeneId":"345611"},{"alias":"IDAS","entrezGeneId":"345643"},{"alias":"MCI","entrezGeneId":"345643"},{"alias":"MCIN","entrezGeneId":"345643"},{"alias":"ACT","entrezGeneId":"345651"},{"alias":"HGS_RE408","entrezGeneId":"345757"},{"alias":"NS5ATP6","entrezGeneId":"345757"},{"alias":"TMEM157","entrezGeneId":"345757"},{"alias":"UNQ1912","entrezGeneId":"345757"},{"alias":"RAET1J","entrezGeneId":"345829"},{"alias":"CILD11","entrezGeneId":"345895"},{"alias":"dJ412I7.1","entrezGeneId":"345895"},{"alias":"RSHL3","entrezGeneId":"345895"},{"alias":"RSPH6B","entrezGeneId":"345895"},{"alias":"ARHGEF32","entrezGeneId":"345930"},{"alias":"C6orf91","entrezGeneId":"345930"},{"alias":"dJ509I19.2","entrezGeneId":"345930"},{"alias":"dJ509I19.3","entrezGeneId":"345930"},{"alias":"dJ509I19.5","entrezGeneId":"345930"},{"alias":"FBXO49","entrezGeneId":"345930"},{"alias":"LFDH","entrezGeneId":"345930"},{"alias":"bA166P24.2","entrezGeneId":"346007"},{"alias":"bA307F22.3","entrezGeneId":"346007"},{"alias":"bA74E24.1","entrezGeneId":"346007"},{"alias":"C6orf178","entrezGeneId":"346007"},{"alias":"C6orf179","entrezGeneId":"346007"},{"alias":"C6orf180","entrezGeneId":"346007"},{"alias":"dJ1018A4.2","entrezGeneId":"346007"},{"alias":"dJ22I17.2","entrezGeneId":"346007"},{"alias":"dJ303F19.1","entrezGeneId":"346007"},{"alias":"EGFL10","entrezGeneId":"346007"},{"alias":"EGFL11","entrezGeneId":"346007"},{"alias":"RP25","entrezGeneId":"346007"},{"alias":"SPAM","entrezGeneId":"346007"},{"alias":"GAPDHL18","entrezGeneId":"346085"},{"alias":"GAPDL18","entrezGeneId":"346085"},{"alias":"dJ153G14.3","entrezGeneId":"346157"},{"alias":"bA145L22","entrezGeneId":"346171"},{"alias":"bA145L22.2","entrezGeneId":"346171"},{"alias":"C6orf40","entrezGeneId":"346171"},{"alias":"TNDM1","entrezGeneId":"346171"},{"alias":"ZNF698","entrezGeneId":"346171"},{"alias":"7A5","entrezGeneId":"346389"},{"alias":"SH3BP4L","entrezGeneId":"346389"},{"alias":"GPR138","entrezGeneId":"346517"},{"alias":"OR7-2","entrezGeneId":"346524"},{"alias":"OR2A12P","entrezGeneId":"346525"},{"alias":"OR2A16P","entrezGeneId":"346525"},{"alias":"envF(c)2","entrezGeneId":"346547"},{"alias":"GDCA","entrezGeneId":"346562"},{"alias":"DC7","entrezGeneId":"346606"},{"alias":"DGAT2L2","entrezGeneId":"346606"},{"alias":"MGAT3","entrezGeneId":"346606"},{"alias":"FAM137B","entrezGeneId":"346653"},{"alias":"CLEC15B","entrezGeneId":"346689"},{"alias":"OR11-11a","entrezGeneId":"346708"},{"alias":"RPL37_5_905","entrezGeneId":"346950"},{"alias":"AFG3L2P","entrezGeneId":"347028"},{"alias":"P5","entrezGeneId":"347051"},{"alias":"GPR144","entrezGeneId":"347088"},{"alias":"PGR24","entrezGeneId":"347088"},{"alias":"FAM75D5","entrezGeneId":"347127"},{"alias":"FAM75D5P","entrezGeneId":"347127"},{"alias":"26RFa","entrezGeneId":"347148"},{"alias":"P518","entrezGeneId":"347148"},{"alias":"hg32","entrezGeneId":"347168"},{"alias":"OR9-18","entrezGeneId":"347168"},{"alias":"OR9-26","entrezGeneId":"347169"},{"alias":"OR9-B","entrezGeneId":"347169"},{"alias":"bA571F15.4","entrezGeneId":"347240"},{"alias":"C9orf48","entrezGeneId":"347240"},{"alias":"bA113O24.1","entrezGeneId":"347252"},{"alias":"IGFBP-RP4","entrezGeneId":"347252"},{"alias":"IGFBPRP4","entrezGeneId":"347252"},{"alias":"KRT8L1","entrezGeneId":"347265"},{"alias":"cavin-4","entrezGeneId":"347273"},{"alias":"MURC","entrezGeneId":"347273"},{"alias":"ACNATP","entrezGeneId":"347275"},{"alias":"TOPORSLP1","entrezGeneId":"347281"},{"alias":"RPL36_5_1005","entrezGeneId":"347292"},{"alias":"dJ54B20.6","entrezGeneId":"347344"},{"alias":"HFZ20","entrezGeneId":"347344"},{"alias":"MRX45","entrezGeneId":"347344"},{"alias":"KIF4P1","entrezGeneId":"347363"},{"alias":"dJ14O9.1","entrezGeneId":"347365"},{"alias":"ITIH5L","entrezGeneId":"347365"},{"alias":"UNQ6369","entrezGeneId":"347365"},{"alias":"p55","entrezGeneId":"347376"},{"alias":"NLRP3P","entrezGeneId":"347402"},{"alias":"NOD13","entrezGeneId":"347402"},{"alias":"SLC54A3","entrezGeneId":"347411"},{"alias":"WDR42C","entrezGeneId":"347442"},{"alias":"ANKRD58","entrezGeneId":"347454"},{"alias":"ORX1","entrezGeneId":"347468"},{"alias":"SGPX","entrezGeneId":"347487"},{"alias":"DC3","entrezGeneId":"347516"},{"alias":"sulfatase","entrezGeneId":"347527"},{"alias":"CT3.3","entrezGeneId":"347541"},{"alias":"MAGE-B5","entrezGeneId":"347541"},{"alias":"RPL18A_10_1821","entrezGeneId":"347544"},{"alias":"CENPVP3","entrezGeneId":"347549"},{"alias":"TSPYP1","entrezGeneId":"347584"},{"alias":"MRP63P10","entrezGeneId":"347587"},{"alias":"RBM","entrezGeneId":"347598"},{"alias":"RBMY2","entrezGeneId":"347598"},{"alias":"ADPRTL1P","entrezGeneId":"347613"},{"alias":"PARP4P","entrezGeneId":"347613"},{"alias":"PARP4PY1","entrezGeneId":"347613"},{"alias":"bcm2636","entrezGeneId":"347673"},{"alias":"HBII-13","entrezGeneId":"347686"},{"alias":"dJ364I1.1","entrezGeneId":"347687"},{"alias":"GNG5ps","entrezGeneId":"347687"},{"alias":"bA631M21.2","entrezGeneId":"347688"},{"alias":"OOMD","entrezGeneId":"347688"},{"alias":"OOMD2","entrezGeneId":"347688"},{"alias":"NCRNA00043","entrezGeneId":"347689"},{"alias":"SOX2OT","entrezGeneId":"347689"},{"alias":"ECEL2","entrezGeneId":"347694"},{"alias":"DFNA52","entrezGeneId":"347713"},{"alias":"SRPSMCR","entrezGeneId":"347717"},{"alias":"CLPSMCR","entrezGeneId":"347720"},{"alias":"CACRC","entrezGeneId":"347732"},{"alias":"bA506K6.1","entrezGeneId":"347733"},{"alias":"CDCBM7","entrezGeneId":"347733"},{"alias":"PMGYSA","entrezGeneId":"347733"},{"alias":"PAPST1","entrezGeneId":"347734"},{"alias":"SLL","entrezGeneId":"347734"},{"alias":"UGTrel4","entrezGeneId":"347734"},{"alias":"FKSG84","entrezGeneId":"347735"},{"alias":"PRO0899","entrezGeneId":"347735"},{"alias":"TDE2","entrezGeneId":"347735"},{"alias":"TDE2L","entrezGeneId":"347735"},{"alias":"NM23-H9","entrezGeneId":"347736"},{"alias":"TXL-2","entrezGeneId":"347736"},{"alias":"TXL2","entrezGeneId":"347736"},{"alias":"TXNDC6","entrezGeneId":"347736"},{"alias":"PAR-4","entrezGeneId":"347745"},{"alias":"PAR4","entrezGeneId":"347745"},{"alias":"PAR-SN","entrezGeneId":"347746"},{"alias":"PARSN","entrezGeneId":"347746"},{"alias":"TBX13","entrezGeneId":"347853"},{"alias":"TBX7","entrezGeneId":"347853"},{"alias":"PDDC1","entrezGeneId":"347862"},{"alias":"ALI1","entrezGeneId":"347902"},{"alias":"AMIGO-2","entrezGeneId":"347902"},{"alias":"DEGA","entrezGeneId":"347902"},{"alias":"EP400NL","entrezGeneId":"347918"},{"alias":"NLRP9P","entrezGeneId":"347933"},{"alias":"NOD25","entrezGeneId":"347933"},{"alias":"FAM70B","entrezGeneId":"348013"},{"alias":"C15orf38","entrezGeneId":"348110"},{"alias":"CT60","entrezGeneId":"348120"},{"alias":"HG5","entrezGeneId":"348156"},{"alias":"ACSM2","entrezGeneId":"348158"},{"alias":"HXMA","entrezGeneId":"348158"},{"alias":"HYST1046","entrezGeneId":"348158"},{"alias":"MRCL","entrezGeneId":"348174"},{"alias":"MRCL1","entrezGeneId":"348174"},{"alias":"MRLP2","entrezGeneId":"348174"},{"alias":"C16orf84","entrezGeneId":"348180"},{"alias":"NCS2","entrezGeneId":"348180"},{"alias":"UPF0432","entrezGeneId":"348180"},{"alias":"FAM33A","entrezGeneId":"348235"},{"alias":"CCDC144C","entrezGeneId":"348254"},{"alias":"FAM195B","entrezGeneId":"348262"},{"alias":"GRAN2","entrezGeneId":"348262"},{"alias":"MCRIP","entrezGeneId":"348262"},{"alias":"SELV","entrezGeneId":"348303"},{"alias":"FAM159A","entrezGeneId":"348378"},{"alias":"PRO7171","entrezGeneId":"348378"},{"alias":"WWLS2783","entrezGeneId":"348378"},{"alias":"C1orf117","entrezGeneId":"348487"},{"alias":"TERF1P","entrezGeneId":"348567"},{"alias":"Gen","entrezGeneId":"348654"},{"alias":"FONG","entrezGeneId":"348751"},{"alias":"NP3","entrezGeneId":"348801"},{"alias":"CCDC37","entrezGeneId":"348807"},{"alias":"MIA1","entrezGeneId":"348807"},{"alias":"NCRNA00119","entrezGeneId":"348808"},{"alias":"TPRX3P","entrezGeneId":"348825"},{"alias":"Xtrp2","entrezGeneId":"348932"},{"alias":"ARCI6","entrezGeneId":"348938"},{"alias":"ICHTHYIN","entrezGeneId":"348938"},{"alias":"ICHYN","entrezGeneId":"348938"},{"alias":"BCNG-1","entrezGeneId":"348980"},{"alias":"BCNG1","entrezGeneId":"348980"},{"alias":"EIEE24","entrezGeneId":"348980"},{"alias":"HAC-2","entrezGeneId":"348980"},{"alias":"bA350J20.1","entrezGeneId":"348995"},{"alias":"p42","entrezGeneId":"348995"},{"alias":"NCRNA00265","entrezGeneId":"349114"},{"alias":"CX29","entrezGeneId":"349149"},{"alias":"CX30.2","entrezGeneId":"349149"},{"alias":"CX31.3","entrezGeneId":"349149"},{"alias":"GJE1","entrezGeneId":"349149"},{"alias":"HCP20","entrezGeneId":"349158"},{"alias":"HCP21","entrezGeneId":"349198"},{"alias":"HS7","entrezGeneId":"349198"},{"alias":"bA460E7.2","entrezGeneId":"349334"},{"alias":"FOXD4b","entrezGeneId":"349334"},{"alias":"FOXD4L2","entrezGeneId":"349334"},{"alias":"NANOGP5","entrezGeneId":"349372"},{"alias":"NANOGP6","entrezGeneId":"349386"},{"alias":"HCP44","entrezGeneId":"349391"},{"alias":"GS1-324M7.6","entrezGeneId":"349408"},{"alias":"FKSG76","entrezGeneId":"349565"},{"alias":"PNAT-3","entrezGeneId":"349565"},{"alias":"PNAT3","entrezGeneId":"349565"},{"alias":"C11orf34","entrezGeneId":"349633"},{"alias":"NgR2","entrezGeneId":"349667"},{"alias":"NGRH1","entrezGeneId":"349667"},{"alias":"VENTX2P3","entrezGeneId":"349814"},{"alias":"GPRg1b","entrezGeneId":"350383"},{"alias":"PGR2","entrezGeneId":"350383"},{"alias":"HCP45","entrezGeneId":"352852"},{"alias":"GYG2P","entrezGeneId":"352887"},{"alias":"OA1P","entrezGeneId":"352896"},{"alias":"C19orf51","entrezGeneId":"352909"},{"alias":"CILD2","entrezGeneId":"352909"},{"alias":"DAB1","entrezGeneId":"352909"},{"alias":"PCD","entrezGeneId":"352909"},{"alias":"PF22","entrezGeneId":"352909"},{"alias":"GATS","entrezGeneId":"352954"},{"alias":"STAG3OS","entrezGeneId":"352954"},{"alias":"3.8-1","entrezGeneId":"352961"},{"alias":"bCX205D4.4","entrezGeneId":"352961"},{"alias":"bPG181B23.4","entrezGeneId":"352961"},{"alias":"NCRNA00191","entrezGeneId":"352961"},{"alias":"dJ377H14.4","entrezGeneId":"352962"},{"alias":"HLA-75","entrezGeneId":"352962"},{"alias":"C6orf101","entrezGeneId":"352963"},{"alias":"dJ377H14.3","entrezGeneId":"352963"},{"alias":"HLA-90","entrezGeneId":"352963"},{"alias":"HLA-16","entrezGeneId":"352964"},{"alias":"HLA-21","entrezGeneId":"352965"},{"alias":"HLA-80","entrezGeneId":"352966"},{"alias":"HCP5P10","entrezGeneId":"352990"},{"alias":"P5-10","entrezGeneId":"352990"},{"alias":"P5.9","entrezGeneId":"352990"},{"alias":"LEG1","entrezGeneId":"352999"},{"alias":"HCGIV-03","entrezGeneId":"353001"},{"alias":"HCGIV-3","entrezGeneId":"353001"},{"alias":"HCGIV.2","entrezGeneId":"353001"},{"alias":"HCGIV-04","entrezGeneId":"353002"},{"alias":"HCGIV-4","entrezGeneId":"353002"},{"alias":"HCGIV.3","entrezGeneId":"353002"},{"alias":"HCGIV-05","entrezGeneId":"353003"},{"alias":"HCGIV-5","entrezGeneId":"353003"},{"alias":"HCGIV.4","entrezGeneId":"353003"},{"alias":"HCGIV-07","entrezGeneId":"353004"},{"alias":"HCGIV-7","entrezGeneId":"353004"},{"alias":"HCGIV.C","entrezGeneId":"353004"},{"alias":"HCGIV-08","entrezGeneId":"353005"},{"alias":"HCGIV-8","entrezGeneId":"353005"},{"alias":"HCGIV.7","entrezGeneId":"353005"},{"alias":"dJ377H14.2","entrezGeneId":"353013"},{"alias":"RPL7A_13_677","entrezGeneId":"353013"},{"alias":"RPL7B","entrezGeneId":"353013"},{"alias":"HCGIV-09","entrezGeneId":"353014"},{"alias":"HCGIV-9","entrezGeneId":"353014"},{"alias":"dJ377H14.6","entrezGeneId":"353019"},{"alias":"HCGIX-5","entrezGeneId":"353019"},{"alias":"HCGIV-11","entrezGeneId":"353020"},{"alias":"HCGIV.10","entrezGeneId":"353020"},{"alias":"ULBP5","entrezGeneId":"353091"},{"alias":"GOSPEL","entrezGeneId":"353116"},{"alias":"RLP1","entrezGeneId":"353116"},{"alias":"EGI14","entrezGeneId":"353124"},{"alias":"OB10Q","entrezGeneId":"353126"},{"alias":"HDLC2","entrezGeneId":"353127"},{"alias":"LEP1","entrezGeneId":"353131"},{"alias":"LEP2","entrezGeneId":"353132"},{"alias":"SPRL2A","entrezGeneId":"353132"},{"alias":"LEP3","entrezGeneId":"353133"},{"alias":"LEP4","entrezGeneId":"353134"},{"alias":"LEP5","entrezGeneId":"353135"},{"alias":"LEP6","entrezGeneId":"353137"},{"alias":"LEP9","entrezGeneId":"353139"},{"alias":"LEP11","entrezGeneId":"353140"},{"alias":"LEP12","entrezGeneId":"353141"},{"alias":"SPRL1A","entrezGeneId":"353141"},{"alias":"LEP13","entrezGeneId":"353142"},{"alias":"LEP14","entrezGeneId":"353143"},{"alias":"LEP15","entrezGeneId":"353144"},{"alias":"SPRL3A","entrezGeneId":"353144"},{"alias":"LEP17","entrezGeneId":"353145"},{"alias":"DSAP2","entrezGeneId":"353147"},{"alias":"T2R24","entrezGeneId":"353164"},{"alias":"T2R42","entrezGeneId":"353164"},{"alias":"T2R55","entrezGeneId":"353164"},{"alias":"TAS2R55","entrezGeneId":"353164"},{"alias":"L2","entrezGeneId":"353174"},{"alias":"LGICZ","entrezGeneId":"353174"},{"alias":"LGICZ1","entrezGeneId":"353174"},{"alias":"ZAC","entrezGeneId":"353174"},{"alias":"ZAC1","entrezGeneId":"353174"},{"alias":"OATP-H","entrezGeneId":"353189"},{"alias":"OATP-M1","entrezGeneId":"353189"},{"alias":"OATP4C1","entrezGeneId":"353189"},{"alias":"OATPX","entrezGeneId":"353189"},{"alias":"PRO2176","entrezGeneId":"353189"},{"alias":"SLC21A20","entrezGeneId":"353189"},{"alias":"RU2AS","entrezGeneId":"353219"},{"alias":"hPADVI","entrezGeneId":"353238"},{"alias":"PREMBL2","entrezGeneId":"353238"},{"alias":"C6orf119","entrezGeneId":"353267"},{"alias":"dJ427A4.2","entrezGeneId":"353267"},{"alias":"FAM103A2P","entrezGeneId":"353267"},{"alias":"RAMMETP1","entrezGeneId":"353267"},{"alias":"ZKSCAN15","entrezGeneId":"353274"},{"alias":"ZNF168","entrezGeneId":"353274"},{"alias":"ZSCAN47","entrezGeneId":"353274"},{"alias":"CK26","entrezGeneId":"353288"},{"alias":"K25","entrezGeneId":"353288"},{"alias":"K25IRS2","entrezGeneId":"353288"},{"alias":"K26","entrezGeneId":"353288"},{"alias":"KRT25B","entrezGeneId":"353288"},{"alias":"RGSL","entrezGeneId":"353299"},{"alias":"RGSL2","entrezGeneId":"353299"},{"alias":"Lrp2bp","entrezGeneId":"353322"},{"alias":"KAP12.2","entrezGeneId":"353323"},{"alias":"KRTAP12.2","entrezGeneId":"353323"},{"alias":"SRG5","entrezGeneId":"353324"},{"alias":"PSIP1P","entrezGeneId":"353329"},{"alias":"KAP12.1","entrezGeneId":"353332"},{"alias":"KRTAP12.1","entrezGeneId":"353332"},{"alias":"KAP10.10","entrezGeneId":"353333"},{"alias":"KAP18.10","entrezGeneId":"353333"},{"alias":"KRTAP18-10","entrezGeneId":"353333"},{"alias":"KRTAP18.10","entrezGeneId":"353333"},{"alias":"PGR13","entrezGeneId":"353345"},{"alias":"MyD88-4","entrezGeneId":"353376"},{"alias":"TICAM-2","entrezGeneId":"353376"},{"alias":"TIRAP3","entrezGeneId":"353376"},{"alias":"TIRP","entrezGeneId":"353376"},{"alias":"TRAM","entrezGeneId":"353376"},{"alias":"POL4P","entrezGeneId":"353497"},{"alias":"HG6","entrezGeneId":"353511"},{"alias":"HG4","entrezGeneId":"353512"},{"alias":"BPY1B","entrezGeneId":"353513"},{"alias":"CD85","entrezGeneId":"353514"},{"alias":"CD85F","entrezGeneId":"353514"},{"alias":"ILT-11","entrezGeneId":"353514"},{"alias":"ILT11","entrezGeneId":"353514"},{"alias":"LILRB7","entrezGeneId":"353514"},{"alias":"LIR-9","entrezGeneId":"353514"},{"alias":"LIR9","entrezGeneId":"353514"},{"alias":"XKRYP7","entrezGeneId":"353515"},{"alias":"C20orf185","entrezGeneId":"359710"},{"alias":"LPLUNC3","entrezGeneId":"359710"},{"alias":"RYA3","entrezGeneId":"359710"},{"alias":"RN18S2P","entrezGeneId":"359724"},{"alias":"MRP63P2","entrezGeneId":"359729"},{"alias":"MRP63P3","entrezGeneId":"359730"},{"alias":"MRP63P7","entrezGeneId":"359731"},{"alias":"MRP63P8","entrezGeneId":"359732"},{"alias":"MRP63P9","entrezGeneId":"359733"},{"alias":"MRPL15P2","entrezGeneId":"359736"},{"alias":"MRPS29P2","entrezGeneId":"359774"},{"alias":"MRPS6P3","entrezGeneId":"359780"},{"alias":"Pgc7","entrezGeneId":"359787"},{"alias":"STELLA","entrezGeneId":"359787"},{"alias":"CRSP2P","entrezGeneId":"359791"},{"alias":"CXorf4P","entrezGeneId":"359791"},{"alias":"MED14P","entrezGeneId":"359791"},{"alias":"AGKY1","entrezGeneId":"359793"},{"alias":"TUSC2P","entrezGeneId":"359794"},{"alias":"SMCYP","entrezGeneId":"359796"},{"alias":"USP12P3","entrezGeneId":"359799"},{"alias":"MRPS10P3","entrezGeneId":"359802"},{"alias":"MRPS10P4","entrezGeneId":"359802"},{"alias":"MRPS17P2","entrezGeneId":"359803"},{"alias":"DAP3P","entrezGeneId":"359804"},{"alias":"MRPS29P1","entrezGeneId":"359804"},{"alias":"pF2PCNA","entrezGeneId":"359805"},{"alias":"p1PCNA","entrezGeneId":"359806"},{"alias":"MRPL30P3","entrezGeneId":"359817"},{"alias":"NCRNA00099","entrezGeneId":"359822"},{"alias":"UM9(5)","entrezGeneId":"359822"},{"alias":"UM9-5","entrezGeneId":"359822"},{"alias":"CFM1","entrezGeneId":"359845"},{"alias":"FAM101B","entrezGeneId":"359845"},{"alias":"CDK4PS","entrezGeneId":"359941"},{"alias":"CVID14","entrezGeneId":"359948"},{"alias":"ATP5JP1","entrezGeneId":"359997"},{"alias":"LEIF-M","entrezGeneId":"360001"},{"alias":"GAPDHP18","entrezGeneId":"360008"},{"alias":"CYCSP54","entrezGeneId":"360009"},{"alias":"HCP49","entrezGeneId":"360009"},{"alias":"BAT2D1P1","entrezGeneId":"360018"},{"alias":"BAT2L2P1","entrezGeneId":"360018"},{"alias":"PPP1R12BP","entrezGeneId":"360021"},{"alias":"PPP1R12BPY1","entrezGeneId":"360021"},{"alias":"FRBZ1","entrezGeneId":"360023"},{"alias":"ZNF924","entrezGeneId":"360023"},{"alias":"GOLGA6L15P","entrezGeneId":"360024"},{"alias":"FAM199Y","entrezGeneId":"360029"},{"alias":"FKBP9L","entrezGeneId":"360132"},{"alias":"HC6","entrezGeneId":"360155"},{"alias":"HCP2","entrezGeneId":"360155"},{"alias":"HCP3","entrezGeneId":"360156"},{"alias":"HCP4","entrezGeneId":"360157"},{"alias":"HCP5","entrezGeneId":"360158"},{"alias":"HCP6","entrezGeneId":"360159"},{"alias":"HCP8","entrezGeneId":"360160"},{"alias":"HCP9","entrezGeneId":"360163"},{"alias":"NDUFA4","entrezGeneId":"360165"},{"alias":"HCP10","entrezGeneId":"360166"},{"alias":"HCP11","entrezGeneId":"360167"},{"alias":"CYCSP13","entrezGeneId":"360168"},{"alias":"HCP12","entrezGeneId":"360168"},{"alias":"HCP13","entrezGeneId":"360168"},{"alias":"HCP14","entrezGeneId":"360170"},{"alias":"HCP16","entrezGeneId":"360171"},{"alias":"HCP17","entrezGeneId":"360172"},{"alias":"HCP18","entrezGeneId":"360173"},{"alias":"HCP19","entrezGeneId":"360174"},{"alias":"HCP22","entrezGeneId":"360175"},{"alias":"HCP23","entrezGeneId":"360176"},{"alias":"HC3","entrezGeneId":"360177"},{"alias":"HCP24","entrezGeneId":"360177"},{"alias":"HCP31","entrezGeneId":"360177"},{"alias":"HCP26","entrezGeneId":"360178"},{"alias":"HCP28","entrezGeneId":"360179"},{"alias":"HCP29","entrezGeneId":"360180"},{"alias":"HCP32","entrezGeneId":"360181"},{"alias":"HCP34","entrezGeneId":"360182"},{"alias":"HCP37","entrezGeneId":"360183"},{"alias":"HC2","entrezGeneId":"360184"},{"alias":"HCP38","entrezGeneId":"360184"},{"alias":"HC7","entrezGeneId":"360185"},{"alias":"HCP40","entrezGeneId":"360185"},{"alias":"CYC1LP4","entrezGeneId":"360186"},{"alias":"HCP41","entrezGeneId":"360186"},{"alias":"HCP43","entrezGeneId":"360187"},{"alias":"HCP48","entrezGeneId":"360188"},{"alias":"GLTDC1","entrezGeneId":"360203"},{"alias":"GT6M7","entrezGeneId":"360203"},{"alias":"C17orf93","entrezGeneId":"360205"},{"alias":"HOXB-AS5","entrezGeneId":"360205"},{"alias":"HOXB13-AS1","entrezGeneId":"360205"},{"alias":"NCRNA00253","entrezGeneId":"360205"},{"alias":"GCRG-P224","entrezGeneId":"360219"},{"alias":"TESSP1","entrezGeneId":"360226"},{"alias":"HIN1L","entrezGeneId":"360227"},{"alias":"PCH3","entrezGeneId":"373073"},{"alias":"GST","entrezGeneId":"373156"},{"alias":"GST 13-13","entrezGeneId":"373156"},{"alias":"GST13","entrezGeneId":"373156"},{"alias":"GST13-13","entrezGeneId":"373156"},{"alias":"GSTK1-1","entrezGeneId":"373156"},{"alias":"hGSTK1","entrezGeneId":"373156"},{"alias":"bPG116M5.10","entrezGeneId":"373159"},{"alias":"RP2","entrezGeneId":"373159"},{"alias":"STK19P","entrezGeneId":"373159"},{"alias":"H1.9","entrezGeneId":"373861"},{"alias":"RBMS4","entrezGeneId":"373863"},{"alias":"C170RF1","entrezGeneId":"374286"},{"alias":"C17ORF1","entrezGeneId":"374286"},{"alias":"C17ORF1A","entrezGeneId":"374286"},{"alias":"FBXW10B","entrezGeneId":"374286"},{"alias":"FBXW10P1","entrezGeneId":"374286"},{"alias":"HREP","entrezGeneId":"374286"},{"alias":"SM25H2","entrezGeneId":"374286"},{"alias":"CI-20","entrezGeneId":"374291"},{"alias":"CI-20KD","entrezGeneId":"374291"},{"alias":"MY017","entrezGeneId":"374291"},{"alias":"PSST","entrezGeneId":"374291"},{"alias":"PTR","entrezGeneId":"374308"},{"alias":"C10orf96","entrezGeneId":"374355"},{"alias":"GalNAc-T15","entrezGeneId":"374378"},{"alias":"GalNAc-T18","entrezGeneId":"374378"},{"alias":"GALNACT18","entrezGeneId":"374378"},{"alias":"GALNT15","entrezGeneId":"374378"},{"alias":"GALNTL4","entrezGeneId":"374378"},{"alias":"B7-H6","entrezGeneId":"374383"},{"alias":"B7H6","entrezGeneId":"374383"},{"alias":"DKFZp686O24166","entrezGeneId":"374383"},{"alias":"CANP","entrezGeneId":"374393"},{"alias":"POIKTMP","entrezGeneId":"374393"},{"alias":"CARABIN","entrezGeneId":"374403"},{"alias":"EPI64C","entrezGeneId":"374403"},{"alias":"CILD34","entrezGeneId":"374407"},{"alias":"RSPH16A","entrezGeneId":"374407"},{"alias":"TSARG5","entrezGeneId":"374407"},{"alias":"TSARG6","entrezGeneId":"374407"},{"alias":"K1B","entrezGeneId":"374454"},{"alias":"KRT1B","entrezGeneId":"374454"},{"alias":"DFNA73","entrezGeneId":"374462"},{"alias":"DFNB84","entrezGeneId":"374462"},{"alias":"DFNB84A","entrezGeneId":"374462"},{"alias":"PTPGMC1","entrezGeneId":"374462"},{"alias":"R-PTP-Q","entrezGeneId":"374462"},{"alias":"THSD1P","entrezGeneId":"374500"},{"alias":"C14orf76","entrezGeneId":"374569"},{"alias":"GPA/WT","entrezGeneId":"374569"},{"alias":"GOLGA6L5","entrezGeneId":"374650"},{"alias":"GOLGA6L8","entrezGeneId":"374650"},{"alias":"ACLS","entrezGeneId":"374654"},{"alias":"AGBK","entrezGeneId":"374654"},{"alias":"HLS2","entrezGeneId":"374654"},{"alias":"JBTS12","entrezGeneId":"374654"},{"alias":"UNQ340","entrezGeneId":"374654"},{"alias":"(ppGpp)ase","entrezGeneId":"374659"},{"alias":"MESH1","entrezGeneId":"374659"},{"alias":"FAM39DP","entrezGeneId":"374666"},{"alias":"CXYorf1P","entrezGeneId":"374677"},{"alias":"FAM39CP","entrezGeneId":"374677"},{"alias":"C17orf83","entrezGeneId":"374768"},{"alias":"LRRC37","entrezGeneId":"374819"},{"alias":"LRRC37A","entrezGeneId":"374819"},{"alias":"NY-BR-1.1","entrezGeneId":"374860"},{"alias":"C18orf34","entrezGeneId":"374864"},{"alias":"ATPASEP","entrezGeneId":"374868"},{"alias":"ATPIIB","entrezGeneId":"374868"},{"alias":"hMMR1","entrezGeneId":"374868"},{"alias":"HUSSY-20","entrezGeneId":"374868"},{"alias":"NEO1L","entrezGeneId":"374868"},{"alias":"C19orf35","entrezGeneId":"374872"},{"alias":"11-beta-HSD3","entrezGeneId":"374875"},{"alias":"11-DH3","entrezGeneId":"374875"},{"alias":"HSD3","entrezGeneId":"374875"},{"alias":"SCDR10","entrezGeneId":"374875"},{"alias":"SCDR10B","entrezGeneId":"374875"},{"alias":"SDR26C2","entrezGeneId":"374875"},{"alias":"C19orf45","entrezGeneId":"374877"},{"alias":"hang","entrezGeneId":"374879"},{"alias":"UNQ501","entrezGeneId":"374882"},{"alias":"UNQ698","entrezGeneId":"374897"},{"alias":"ZFP568","entrezGeneId":"374900"},{"alias":"B3GALT7","entrezGeneId":"374907"},{"alias":"beta3Gn-T8","entrezGeneId":"374907"},{"alias":"BGALT15","entrezGeneId":"374907"},{"alias":"APRG644","entrezGeneId":"374918"},{"alias":"UNQ644","entrezGeneId":"374918"},{"alias":"C19orf68","entrezGeneId":"374920"},{"alias":"ZNF419B","entrezGeneId":"374928"},{"alias":"AGPA3119","entrezGeneId":"374946"},{"alias":"C1orf187","entrezGeneId":"374946"},{"alias":"neucrin","entrezGeneId":"374946"},{"alias":"UNQ3119","entrezGeneId":"374946"},{"alias":"spergen-2","entrezGeneId":"374955"},{"alias":"spergen2","entrezGeneId":"374955"},{"alias":"CCDC23","entrezGeneId":"374969"},{"alias":"ATPAF1-AS1","entrezGeneId":"374973"},{"alias":"C1orf223","entrezGeneId":"374973"},{"alias":"THEG4","entrezGeneId":"374973"},{"alias":"C1orf175","entrezGeneId":"374977"},{"alias":"HEATR8","entrezGeneId":"374977"},{"alias":"FAM73A","entrezGeneId":"374986"},{"alias":"C1orf118","entrezGeneId":"374987"},{"alias":"s100a7e","entrezGeneId":"375027"},{"alias":"S100A7L4","entrezGeneId":"375027"},{"alias":"JEDI","entrezGeneId":"375033"},{"alias":"MEGF12","entrezGeneId":"375033"},{"alias":"dJ747L4.C1.2","entrezGeneId":"375035"},{"alias":"UNQ512","entrezGeneId":"375035"},{"alias":"ARNT","entrezGeneId":"375056"},{"alias":"D320","entrezGeneId":"375056"},{"alias":"TANGO","entrezGeneId":"375056"},{"alias":"TANGO1","entrezGeneId":"375056"},{"alias":"UNQ6077","entrezGeneId":"375056"},{"alias":"C1orf95","entrezGeneId":"375057"},{"alias":"C1orf153","entrezGeneId":"375061"},{"alias":"UNQ2430","entrezGeneId":"375248"},{"alias":"FAM39B","entrezGeneId":"375260"},{"alias":"C2orf38","entrezGeneId":"375287"},{"alias":"TALNEC2","entrezGeneId":"375295"},{"alias":"RP26","entrezGeneId":"375298"},{"alias":"C2orf62","entrezGeneId":"375307"},{"alias":"AQP-12","entrezGeneId":"375318"},{"alias":"AQP12","entrezGeneId":"375318"},{"alias":"AQPX2","entrezGeneId":"375318"},{"alias":"C3orf77","entrezGeneId":"375337"},{"alias":"TMEM110","entrezGeneId":"375346"},{"alias":"ELLP3030","entrezGeneId":"375387"},{"alias":"GARPL1","entrezGeneId":"375387"},{"alias":"LRRC33","entrezGeneId":"375387"},{"alias":"UNQ3030","entrezGeneId":"375387"},{"alias":"C5orf25","entrezGeneId":"375484"},{"alias":"OOMA1","entrezGeneId":"375484"},{"alias":"PLEIAD","entrezGeneId":"375484"},{"alias":"C6orf216","entrezGeneId":"375513"},{"alias":"GUSBL2","entrezGeneId":"375513"},{"alias":"SMA3-L","entrezGeneId":"375513"},{"alias":"SMAC3L","entrezGeneId":"375513"},{"alias":"bA136M9.1","entrezGeneId":"375519"},{"alias":"connexin25","entrezGeneId":"375519"},{"alias":"CX25","entrezGeneId":"375519"},{"alias":"PSST739","entrezGeneId":"375567"},{"alias":"UNQ739","entrezGeneId":"375567"},{"alias":"TRIM50B","entrezGeneId":"375593"},{"alias":"OR7E114P","entrezGeneId":"375601"},{"alias":"OR7E32P","entrezGeneId":"375601"},{"alias":"OR7E45P","entrezGeneId":"375601"},{"alias":"OR9-4","entrezGeneId":"375601"},{"alias":"OST016","entrezGeneId":"375601"},{"alias":"OST049","entrezGeneId":"375601"},{"alias":"OST205","entrezGeneId":"375601"},{"alias":"C7orf52","entrezGeneId":"375607"},{"alias":"DFNB61","entrezGeneId":"375611"},{"alias":"PRES","entrezGeneId":"375611"},{"alias":"LHFPL4","entrezGeneId":"375612"},{"alias":"CRIM2","entrezGeneId":"375616"},{"alias":"KCP1","entrezGeneId":"375616"},{"alias":"NET67","entrezGeneId":"375616"},{"alias":"SPATA15","entrezGeneId":"375686"},{"alias":"C9orf165","entrezGeneId":"375704"},{"alias":"UNQ470","entrezGeneId":"375704"},{"alias":"bA251O17.3","entrezGeneId":"375719"},{"alias":"BMFS2","entrezGeneId":"375748"},{"alias":"C9orf102","entrezGeneId":"375748"},{"alias":"RAD26L","entrezGeneId":"375748"},{"alias":"SR278","entrezGeneId":"375748"},{"alias":"C9orf119","entrezGeneId":"375757"},{"alias":"SAE3","entrezGeneId":"375757"},{"alias":"C9orf111","entrezGeneId":"375775"},{"alias":"NTE-R1","entrezGeneId":"375775"},{"alias":"NTEL1","entrezGeneId":"375775"},{"alias":"AGRIN","entrezGeneId":"375790"},{"alias":"CMS8","entrezGeneId":"375790"},{"alias":"CMSPPD","entrezGeneId":"375790"},{"alias":"C9orf169","entrezGeneId":"375791"},{"alias":"RBMY2B","entrezGeneId":"375850"},{"alias":"HRLRRP","entrezGeneId":"376132"},{"alias":"LRRC10A","entrezGeneId":"376132"},{"alias":"ACSVL5","entrezGeneId":"376497"},{"alias":"FATP","entrezGeneId":"376497"},{"alias":"FATP-1","entrezGeneId":"376497"},{"alias":"FATP1","entrezGeneId":"376497"},{"alias":"RPS10_2_147","entrezGeneId":"376693"},{"alias":"ZC3HDC6","entrezGeneId":"376940"},{"alias":"TESSP5","entrezGeneId":"377047"},{"alias":"dJ125M3.1","entrezGeneId":"377381"},{"alias":"RPL24_1_692","entrezGeneId":"377381"},{"alias":"DUB-3","entrezGeneId":"377630"},{"alias":"DUB3","entrezGeneId":"377630"},{"alias":"USP17","entrezGeneId":"377630"},{"alias":"CAXIII","entrezGeneId":"377677"},{"alias":"E-NTPDase","entrezGeneId":"377841"},{"alias":"GLSR2492","entrezGeneId":"377841"},{"alias":"NTPDase-8","entrezGeneId":"377841"},{"alias":"UNQ2492","entrezGeneId":"377841"},{"alias":"TSPYP2","entrezGeneId":"377997"},{"alias":"TSPYP3","entrezGeneId":"378001"},{"alias":"OFD1P1","entrezGeneId":"378009"},{"alias":"OFD1PY1","entrezGeneId":"378009"},{"alias":"OFDYP1","entrezGeneId":"378009"},{"alias":"OFD1P2","entrezGeneId":"378010"},{"alias":"OFD1PY2","entrezGeneId":"378010"},{"alias":"OFDYP2","entrezGeneId":"378010"},{"alias":"TSPYP4","entrezGeneId":"378013"},{"alias":"TRIM50C","entrezGeneId":"378108"},{"alias":"VAMAS3","entrezGeneId":"378426"},{"alias":"VAMAS4","entrezGeneId":"378427"},{"alias":"7L1C","entrezGeneId":"378706"},{"alias":"7L30.1","entrezGeneId":"378706"},{"alias":"7SL1c","entrezGeneId":"378706"},{"alias":"RNSRP2","entrezGeneId":"378706"},{"alias":"7L30.2","entrezGeneId":"378707"},{"alias":"RN7SL631P","entrezGeneId":"378707"},{"alias":"RNSRP3","entrezGeneId":"378707"},{"alias":"APITD1","entrezGeneId":"378708"},{"alias":"CENP-S","entrezGeneId":"378708"},{"alias":"FAAP16","entrezGeneId":"378708"},{"alias":"MHF1","entrezGeneId":"378708"},{"alias":"LincRNA-Pint","entrezGeneId":"378805"},{"alias":"MKLN1-AS1","entrezGeneId":"378805"},{"alias":"PINT","entrezGeneId":"378805"},{"alias":"SNX19P","entrezGeneId":"378810"},{"alias":"RL37P","entrezGeneId":"378818"},{"alias":"RPL37_13_1720","entrezGeneId":"378818"},{"alias":"RL37P2","entrezGeneId":"378819"},{"alias":"RPL37_10_1721","entrezGeneId":"378819"},{"alias":"C21orf113","entrezGeneId":"378825"},{"alias":"LINC00162","entrezGeneId":"378825"},{"alias":"NCRNA00162","entrezGeneId":"378825"},{"alias":"NLC1-C","entrezGeneId":"378825"},{"alias":"NLC1C","entrezGeneId":"378825"},{"alias":"PRED74","entrezGeneId":"378825"},{"alias":"C21orf117","entrezGeneId":"378828"},{"alias":"NCRNA00317","entrezGeneId":"378828"},{"alias":"PRED89","entrezGeneId":"378828"},{"alias":"C21orf123","entrezGeneId":"378832"},{"alias":"NCRNA00175","entrezGeneId":"378832"},{"alias":"PRED80","entrezGeneId":"378832"},{"alias":"C14orf89","entrezGeneId":"378881"},{"alias":"NCRNA00225","entrezGeneId":"378881"},{"alias":"bA204B7.2","entrezGeneId":"378884"},{"alias":"EPM2A","entrezGeneId":"378884"},{"alias":"EPM2B","entrezGeneId":"378884"},{"alias":"MALIN","entrezGeneId":"378884"},{"alias":"HCN","entrezGeneId":"378938"},{"alias":"LINC00047","entrezGeneId":"378938"},{"alias":"NCRNA00047","entrezGeneId":"378938"},{"alias":"NEAT2","entrezGeneId":"378938"},{"alias":"PRO2853","entrezGeneId":"378938"},{"alias":"TSPYP5","entrezGeneId":"379027"},{"alias":"CHKL-CPT1B","entrezGeneId":"386593"},{"alias":"AYP1p1","entrezGeneId":"386608"},{"alias":"bA321C24.3","entrezGeneId":"386618"},{"alias":"GALNT10-AS1","entrezGeneId":"386627"},{"alias":"IL-31","entrezGeneId":"386653"},{"alias":"OSTF1P","entrezGeneId":"386654"},{"alias":"STK6LP","entrezGeneId":"386665"},{"alias":"KAP10.4","entrezGeneId":"386672"},{"alias":"KAP18-4","entrezGeneId":"386672"},{"alias":"KRTAP10.4","entrezGeneId":"386672"},{"alias":"KRTAP18-4","entrezGeneId":"386672"},{"alias":"KRTAP18.4","entrezGeneId":"386672"},{"alias":"KAP10.6","entrezGeneId":"386674"},{"alias":"KAP18.6","entrezGeneId":"386674"},{"alias":"KRTAP18-6","entrezGeneId":"386674"},{"alias":"KRTAP18.6","entrezGeneId":"386674"},{"alias":"KAP10.7","entrezGeneId":"386675"},{"alias":"KAP18.7","entrezGeneId":"386675"},{"alias":"KRTAP18-7","entrezGeneId":"386675"},{"alias":"KAP10.9","entrezGeneId":"386676"},{"alias":"KAP18.9","entrezGeneId":"386676"},{"alias":"KRTAP18-9","entrezGeneId":"386676"},{"alias":"KAP10.1","entrezGeneId":"386677"},{"alias":"KAP18-1","entrezGeneId":"386677"},{"alias":"KAP18.1","entrezGeneId":"386677"},{"alias":"KRTAP10.1","entrezGeneId":"386677"},{"alias":"KRTAP18-1","entrezGeneId":"386677"},{"alias":"KRTAP18.1","entrezGeneId":"386677"},{"alias":"KAP10.11","entrezGeneId":"386678"},{"alias":"KAP18.11","entrezGeneId":"386678"},{"alias":"KRTAP18-11","entrezGeneId":"386678"},{"alias":"KRTAP18.11","entrezGeneId":"386678"},{"alias":"KAP10.2","entrezGeneId":"386679"},{"alias":"KAP18-2","entrezGeneId":"386679"},{"alias":"KAP18.2","entrezGeneId":"386679"},{"alias":"KRTAP10.2","entrezGeneId":"386679"},{"alias":"KRTAP18-2","entrezGeneId":"386679"},{"alias":"KRTAP18.2","entrezGeneId":"386679"},{"alias":"KAP10.5","entrezGeneId":"386680"},{"alias":"KAP18-5","entrezGeneId":"386680"},{"alias":"KAP18.5","entrezGeneId":"386680"},{"alias":"KRTAP10.5","entrezGeneId":"386680"},{"alias":"KRTAP18-5","entrezGeneId":"386680"},{"alias":"KRTAP18.1","entrezGeneId":"386680"},{"alias":"KRTAP18.5","entrezGeneId":"386680"},{"alias":"KAP10.8","entrezGeneId":"386681"},{"alias":"KRTAP18-8","entrezGeneId":"386681"},{"alias":"KRTAP18.8","entrezGeneId":"386681"},{"alias":"KAP10.3","entrezGeneId":"386682"},{"alias":"KAP18-3","entrezGeneId":"386682"},{"alias":"KAP18.3","entrezGeneId":"386682"},{"alias":"KRTAP10.3","entrezGeneId":"386682"},{"alias":"KRTAP18-3","entrezGeneId":"386682"},{"alias":"KRTAP18.3","entrezGeneId":"386682"},{"alias":"KRTAP12.3","entrezGeneId":"386683"},{"alias":"KRTAP12.4","entrezGeneId":"386684"},{"alias":"KAP10.12","entrezGeneId":"386685"},{"alias":"KRTAP18-12","entrezGeneId":"386685"},{"alias":"KRTAP18.12","entrezGeneId":"386685"},{"alias":"OFD1P19","entrezGeneId":"386687"},{"alias":"OFD1P19Y","entrezGeneId":"386687"},{"alias":"OFD1P3","entrezGeneId":"386687"},{"alias":"OFD1PY19","entrezGeneId":"386687"},{"alias":"OFD1PY3","entrezGeneId":"386687"},{"alias":"OFDYP3","entrezGeneId":"386687"},{"alias":"OFD1P4","entrezGeneId":"386688"},{"alias":"OFD1PY4","entrezGeneId":"386688"},{"alias":"OFDYP4","entrezGeneId":"386688"},{"alias":"OFD1P5","entrezGeneId":"386689"},{"alias":"OFD1PY5","entrezGeneId":"386689"},{"alias":"OFDYP5","entrezGeneId":"386689"},{"alias":"OFD1P2","entrezGeneId":"386690"},{"alias":"OFD1P6","entrezGeneId":"386690"},{"alias":"OFD1PY6","entrezGeneId":"386690"},{"alias":"OFDYP6","entrezGeneId":"386690"},{"alias":"OFD1P7","entrezGeneId":"386691"},{"alias":"OFD1PY7","entrezGeneId":"386691"},{"alias":"OFDYP7","entrezGeneId":"386691"},{"alias":"OFD1P8","entrezGeneId":"386692"},{"alias":"OFD1PY8","entrezGeneId":"386692"},{"alias":"OFDYP8","entrezGeneId":"386692"},{"alias":"OFD1P9","entrezGeneId":"386693"},{"alias":"OFD1PY9","entrezGeneId":"386693"},{"alias":"OFDYP9","entrezGeneId":"386693"},{"alias":"OFD1P10","entrezGeneId":"386694"},{"alias":"OFD1PY10","entrezGeneId":"386694"},{"alias":"OFDYP10","entrezGeneId":"386694"},{"alias":"OFD1P11","entrezGeneId":"386695"},{"alias":"OFD1PY11","entrezGeneId":"386695"},{"alias":"OFDYP11","entrezGeneId":"386695"},{"alias":"OFD1P12","entrezGeneId":"386696"},{"alias":"OFD1PY12","entrezGeneId":"386696"},{"alias":"OFDYP12","entrezGeneId":"386696"},{"alias":"OFD1P13","entrezGeneId":"386697"},{"alias":"OFD1PY13","entrezGeneId":"386697"},{"alias":"OFDYP13","entrezGeneId":"386697"},{"alias":"OFD1P14","entrezGeneId":"386698"},{"alias":"OFD1PY14","entrezGeneId":"386698"},{"alias":"OFDYP14","entrezGeneId":"386698"},{"alias":"OFD1P15","entrezGeneId":"386699"},{"alias":"OFD1PY15","entrezGeneId":"386699"},{"alias":"OFDYP15","entrezGeneId":"386699"},{"alias":"ALI3","entrezGeneId":"386724"},{"alias":"AMIGO-3","entrezGeneId":"386724"},{"alias":"FAM8A8P","entrezGeneId":"386726"},{"alias":"GPR169","entrezGeneId":"386746"},{"alias":"MRGG","entrezGeneId":"386746"},{"alias":"CT-2","entrezGeneId":"386757"},{"alias":"CT2","entrezGeneId":"386757"},{"alias":"SLC6A10","entrezGeneId":"386757"},{"alias":"SLC6A10pA","entrezGeneId":"386757"},{"alias":"P1P373C6","entrezGeneId":"387032"},{"alias":"ZNF307","entrezGeneId":"387032"},{"alias":"ZNF427","entrezGeneId":"387032"},{"alias":"ZSCAN36","entrezGeneId":"387032"},{"alias":"b55C20.1","entrezGeneId":"387036"},{"alias":"bA239L20.1","entrezGeneId":"387036"},{"alias":"bA239L20.5","entrezGeneId":"387036"},{"alias":"bGLU-Lp","entrezGeneId":"387036"},{"alias":"GUSBL1","entrezGeneId":"387036"},{"alias":"GUSBP4","entrezGeneId":"387036"},{"alias":"SMA3-L","entrezGeneId":"387036"},{"alias":"SMAC3L","entrezGeneId":"387036"},{"alias":"SMAC3L2","entrezGeneId":"387036"},{"alias":"dJ1033B10.6","entrezGeneId":"387039"},{"alias":"HTATSF1P","entrezGeneId":"387039"},{"alias":"TAT-SF1-L","entrezGeneId":"387039"},{"alias":"dJ271M21.3","entrezGeneId":"387043"},{"alias":"RPL13A_5_675","entrezGeneId":"387043"},{"alias":"BBC1p","entrezGeneId":"387044"},{"alias":"dJ111M5.1","entrezGeneId":"387044"},{"alias":"RPL13_3_673","entrezGeneId":"387044"},{"alias":"dJ15D7.1","entrezGeneId":"387046"},{"alias":"RPL2p","entrezGeneId":"387046"},{"alias":"RPL8P","entrezGeneId":"387046"},{"alias":"C6orf38","entrezGeneId":"387055"},{"alias":"C6orf39","entrezGeneId":"387055"},{"alias":"HMGA1L5","entrezGeneId":"387063"},{"alias":"HMGA1L7","entrezGeneId":"387065"},{"alias":"C6orf160","entrezGeneId":"387066"},{"alias":"LINC00044","entrezGeneId":"387066"},{"alias":"NCRNA00044","entrezGeneId":"387066"},{"alias":"U50HG","entrezGeneId":"387066"},{"alias":"C6orf87","entrezGeneId":"387071"},{"alias":"dJ40E16.3","entrezGeneId":"387071"},{"alias":"FAM136B","entrezGeneId":"387071"},{"alias":"bA55K22.4","entrezGeneId":"387074"},{"alias":"RPL35A_7_760","entrezGeneId":"387074"},{"alias":"dJ281H8.4","entrezGeneId":"387082"},{"alias":"IDDM5","entrezGeneId":"387082"},{"alias":"SMT3H4","entrezGeneId":"387082"},{"alias":"SUMO-4","entrezGeneId":"387082"},{"alias":"bA256G5.1","entrezGeneId":"387090"},{"alias":"RPL36A_9_691","entrezGeneId":"387090"},{"alias":"bA632C17A.1","entrezGeneId":"387101"},{"alias":"RPL29P3","entrezGeneId":"387101"},{"alias":"RPL29_6_745","entrezGeneId":"387101"},{"alias":"C6orf173","entrezGeneId":"387103"},{"alias":"CENP-W","entrezGeneId":"387103"},{"alias":"CUG2","entrezGeneId":"387103"},{"alias":"C6orf174","entrezGeneId":"387104"},{"alias":"dJ403A15.3","entrezGeneId":"387104"},{"alias":"ATP5J2P2","entrezGeneId":"387107"},{"alias":"bA249L21.4","entrezGeneId":"387107"},{"alias":"C6orf181","entrezGeneId":"387111"},{"alias":"dJ354J5.2","entrezGeneId":"387111"},{"alias":"NCRNA00222","entrezGeneId":"387111"},{"alias":"UBQLN1P","entrezGeneId":"387117"},{"alias":"bA57K17.2","entrezGeneId":"387119"},{"alias":"C6orf204","entrezGeneId":"387119"},{"alias":"NY-BR-15","entrezGeneId":"387119"},{"alias":"ASRT2","entrezGeneId":"387129"},{"alias":"GPR154","entrezGeneId":"387129"},{"alias":"GPRA","entrezGeneId":"387129"},{"alias":"NPSR","entrezGeneId":"387129"},{"alias":"PGR14","entrezGeneId":"387129"},{"alias":"VRR1","entrezGeneId":"387129"},{"alias":"IMAA","entrezGeneId":"387254"},{"alias":"MMAA","entrezGeneId":"387254"},{"alias":"KRN1L","entrezGeneId":"387264"},{"alias":"KRTAP5.1","entrezGeneId":"387264"},{"alias":"KRTAP5-9","entrezGeneId":"387266"},{"alias":"KRTAP5.3","entrezGeneId":"387266"},{"alias":"KRTAP5.4","entrezGeneId":"387267"},{"alias":"KRTAP5.10","entrezGeneId":"387273"},{"alias":"KRTAP5.P1","entrezGeneId":"387275"},{"alias":"KRTAP5P1","entrezGeneId":"387275"},{"alias":"KRTAP5-12","entrezGeneId":"387276"},{"alias":"KRTAP5.P2","entrezGeneId":"387276"},{"alias":"KRTAP5P2","entrezGeneId":"387276"},{"alias":"b24o18.2","entrezGeneId":"387316"},{"alias":"FKSG83","entrezGeneId":"387316"},{"alias":"hs6V1-1p","entrezGeneId":"387316"},{"alias":"VNR6I1P","entrezGeneId":"387316"},{"alias":"dJ86C11.7","entrezGeneId":"387317"},{"alias":"hs6V1-2p","entrezGeneId":"387317"},{"alias":"VNR6I2P","entrezGeneId":"387317"},{"alias":"bA317E16.5","entrezGeneId":"387319"},{"alias":"H2AFSP","entrezGeneId":"387319"},{"alias":"bA457M11.4","entrezGeneId":"387320"},{"alias":"hs6M1-5p","entrezGeneId":"387320"},{"alias":"VNR6I5P","entrezGeneId":"387320"},{"alias":"bA373D17.2","entrezGeneId":"387321"},{"alias":"hs6V1-3p","entrezGeneId":"387321"},{"alias":"VNR6I3P","entrezGeneId":"387321"},{"alias":"bA373D17.3","entrezGeneId":"387322"},{"alias":"hs6V1-4p","entrezGeneId":"387322"},{"alias":"VNR6I4P","entrezGeneId":"387322"},{"alias":"dJ34B20.8","entrezGeneId":"387323"},{"alias":"H2AFUP","entrezGeneId":"387323"},{"alias":"dJ34B20.16","entrezGeneId":"387325"},{"alias":"H1F6P","entrezGeneId":"387325"},{"alias":"ZNF322","entrezGeneId":"387328"},{"alias":"ZNF322B","entrezGeneId":"387328"},{"alias":"TBP2","entrezGeneId":"387332"},{"alias":"TRF3","entrezGeneId":"387332"},{"alias":"SHTAP","entrezGeneId":"387338"},{"alias":"C6orf190","entrezGeneId":"387357"},{"alias":"C6orf207","entrezGeneId":"387357"},{"alias":"GASP","entrezGeneId":"387357"},{"alias":"SPOT","entrezGeneId":"387357"},{"alias":"TSEPA","entrezGeneId":"387357"},{"alias":"C21orf131","entrezGeneId":"387486"},{"alias":"NCRNA00320","entrezGeneId":"387486"},{"alias":"PRED14","entrezGeneId":"387486"},{"alias":"GAPDP16","entrezGeneId":"387491"},{"alias":"RPS26_31_1718","entrezGeneId":"387495"},{"alias":"HCGIV-01","entrezGeneId":"387503"},{"alias":"HCGIV-02","entrezGeneId":"387504"},{"alias":"HCGIX-1","entrezGeneId":"387505"},{"alias":"HCGIX-2","entrezGeneId":"387506"},{"alias":"HCGIX-3.2","entrezGeneId":"387507"},{"alias":"PGR1","entrezGeneId":"387509"},{"alias":"KUA","entrezGeneId":"387521"},{"alias":"CROC-1B","entrezGeneId":"387522"},{"alias":"CROC1B","entrezGeneId":"387522"},{"alias":"KUA-UEV","entrezGeneId":"387522"},{"alias":"DNM1DN18","entrezGeneId":"387553"},{"alias":"DNM1DN19","entrezGeneId":"387554"},{"alias":"HsT283","entrezGeneId":"387559"},{"alias":"DUH","entrezGeneId":"387570"},{"alias":"PAND","entrezGeneId":"387572"},{"alias":"CMTDI2","entrezGeneId":"387574"},{"alias":"KAZA","entrezGeneId":"387582"},{"alias":"psiTPTE22","entrezGeneId":"387590"},{"alias":"C1orf32","entrezGeneId":"387597"},{"alias":"dJ782G3.1","entrezGeneId":"387597"},{"alias":"HIMTP","entrezGeneId":"387601"},{"alias":"UST6","entrezGeneId":"387601"},{"alias":"HsT2789","entrezGeneId":"387612"},{"alias":"HsT312","entrezGeneId":"387615"},{"alias":"KGFLP1","entrezGeneId":"387628"},{"alias":"bA165O3.1","entrezGeneId":"387638"},{"alias":"C10orf140","entrezGeneId":"387640"},{"alias":"DLN-1","entrezGeneId":"387640"},{"alias":"bB27G4.1","entrezGeneId":"387644"},{"alias":"C10orf51","entrezGeneId":"387644"},{"alias":"LINC00202","entrezGeneId":"387644"},{"alias":"LINC00202-1","entrezGeneId":"387644"},{"alias":"NCRNA00202","entrezGeneId":"387644"},{"alias":"LRRC37E","entrezGeneId":"387646"},{"alias":"bA56A21.1","entrezGeneId":"387680"},{"alias":"bA98I6.1","entrezGeneId":"387680"},{"alias":"FAM21A","entrezGeneId":"387680"},{"alias":"FAM21B","entrezGeneId":"387680"},{"alias":"ARL4B","entrezGeneId":"387684"},{"alias":"ARL4P","entrezGeneId":"387684"},{"alias":"AP-57","entrezGeneId":"387695"},{"alias":"AP57","entrezGeneId":"387695"},{"alias":"CSBF","entrezGeneId":"387695"},{"alias":"GPR15L","entrezGeneId":"387695"},{"alias":"UNQ1833","entrezGeneId":"387695"},{"alias":"CJMG","entrezGeneId":"387700"},{"alias":"CRT2","entrezGeneId":"387700"},{"alias":"CTRCT47","entrezGeneId":"387700"},{"alias":"MCT12","entrezGeneId":"387700"},{"alias":"C10orf130","entrezGeneId":"387707"},{"alias":"C10orf131","entrezGeneId":"387707"},{"alias":"C10orf134","entrezGeneId":"387712"},{"alias":"ARMD8","entrezGeneId":"387715"},{"alias":"bA383C5.1","entrezGeneId":"387718"},{"alias":"C10orf122","entrezGeneId":"387718"},{"alias":"LINC00959","entrezGeneId":"387723"},{"alias":"BRIL","entrezGeneId":"387733"},{"alias":"DSPA1","entrezGeneId":"387733"},{"alias":"fragilis4","entrezGeneId":"387733"},{"alias":"Hrmp1","entrezGeneId":"387733"},{"alias":"OI5","entrezGeneId":"387733"},{"alias":"PJCG7","entrezGeneId":"387747"},{"alias":"OR11-65","entrezGeneId":"387748"},{"alias":"OR56B1P","entrezGeneId":"387748"},{"alias":"GVIN1","entrezGeneId":"387751"},{"alias":"GVIN1P","entrezGeneId":"387751"},{"alias":"VLIG-1","entrezGeneId":"387751"},{"alias":"VLIG1","entrezGeneId":"387751"},{"alias":"RPL21_40_1120","entrezGeneId":"387753"},{"alias":"AG2","entrezGeneId":"387763"},{"alias":"hOAT5","entrezGeneId":"387775"},{"alias":"OAT5","entrezGeneId":"387775"},{"alias":"Ringo2","entrezGeneId":"387778"},{"alias":"RINGOC","entrezGeneId":"387778"},{"alias":"C11orf90","entrezGeneId":"387804"},{"alias":"INPE5792","entrezGeneId":"387836"},{"alias":"KACL","entrezGeneId":"387836"},{"alias":"PILAR","entrezGeneId":"387836"},{"alias":"UNQ5792","entrezGeneId":"387836"},{"alias":"UNQ5782","entrezGeneId":"387837"},{"alias":"RPL13A_9_1211","entrezGeneId":"387841"},{"alias":"RAB15EP","entrezGeneId":"387849"},{"alias":"C12orf68","entrezGeneId":"387856"},{"alias":"LAMR1P12","entrezGeneId":"387867"},{"alias":"LAMRL2","entrezGeneId":"387867"},{"alias":"LAMRP2","entrezGeneId":"387867"},{"alias":"RPSA_18_1254","entrezGeneId":"387867"},{"alias":"AGD3","entrezGeneId":"387882"},{"alias":"OCC-1","entrezGeneId":"387882"},{"alias":"OCC1","entrezGeneId":"387882"},{"alias":"CCDC42B","entrezGeneId":"387885"},{"alias":"MIA2","entrezGeneId":"387885"},{"alias":"DSPB2","entrezGeneId":"387890"},{"alias":"IFITMD2","entrezGeneId":"387890"},{"alias":"PR-Set7","entrezGeneId":"387893"},{"alias":"SET07","entrezGeneId":"387893"},{"alias":"SET8","entrezGeneId":"387893"},{"alias":"SETD8","entrezGeneId":"387893"},{"alias":"CTRP9B","entrezGeneId":"387911"},{"alias":"bA398O19.2","entrezGeneId":"387914"},{"alias":"C13orf13","entrezGeneId":"387914"},{"alias":"hShisa","entrezGeneId":"387914"},{"alias":"PRO28631","entrezGeneId":"387914"},{"alias":"TMEM46","entrezGeneId":"387914"},{"alias":"WGAR9166","entrezGeneId":"387914"},{"alias":"bA269C23.1","entrezGeneId":"387923"},{"alias":"C13orf21","entrezGeneId":"387923"},{"alias":"FABP5","entrezGeneId":"387934"},{"alias":"FABP5L1","entrezGeneId":"387934"},{"alias":"C14orf23","entrezGeneId":"387978"},{"alias":"c14_5148","entrezGeneId":"387978"},{"alias":"UNQ9438","entrezGeneId":"387990"},{"alias":"SERPINA13","entrezGeneId":"388007"},{"alias":"UNQ6121","entrezGeneId":"388007"},{"alias":"C14orf64","entrezGeneId":"388011"},{"alias":"HUR1","entrezGeneId":"388015"},{"alias":"Mar1","entrezGeneId":"388015"},{"alias":"MART1","entrezGeneId":"388015"},{"alias":"PEG11","entrezGeneId":"388015"},{"alias":"SIRH2","entrezGeneId":"388015"},{"alias":"C14orf90","entrezGeneId":"388021"},{"alias":"TMEM179A","entrezGeneId":"388021"},{"alias":"RPS8_6_1418","entrezGeneId":"388076"},{"alias":"IGHV1/OR15-1","entrezGeneId":"388077"},{"alias":"IGHV1OR151","entrezGeneId":"388077"},{"alias":"NANOGP1","entrezGeneId":"388112"},{"alias":"PN8","entrezGeneId":"388112"},{"alias":"C15orf52","entrezGeneId":"388115"},{"alias":"TIPE3","entrezGeneId":"388121"},{"alias":"RPSA_28_1433","entrezGeneId":"388122"},{"alias":"FAM148B","entrezGeneId":"388125"},{"alias":"NLF2","entrezGeneId":"388125"},{"alias":"RPL17_2_69","entrezGeneId":"388132"},{"alias":"INSYN1","entrezGeneId":"388135"},{"alias":"UBE2QP1","entrezGeneId":"388165"},{"alias":"FAM149B2","entrezGeneId":"388181"},{"alias":"KIAA0974P","entrezGeneId":"388181"},{"alias":"HSD47","entrezGeneId":"388182"},{"alias":"gs64","entrezGeneId":"388199"},{"alias":"SBK","entrezGeneId":"388228"},{"alias":"D16F37S6","entrezGeneId":"388254"},{"alias":"IGHV3/OR16-8","entrezGeneId":"388255"},{"alias":"IGHV3OR168","entrezGeneId":"388255"},{"alias":"HNRPA1L3","entrezGeneId":"388275"},{"alias":"HSD45","entrezGeneId":"388324"},{"alias":"C17orf87","entrezGeneId":"388325"},{"alias":"UNQ5783","entrezGeneId":"388325"},{"alias":"RPS18_4_1516","entrezGeneId":"388339"},{"alias":"C17orf76","entrezGeneId":"388341"},{"alias":"FAM211A","entrezGeneId":"388341"},{"alias":"RPL13_4_1521","entrezGeneId":"388344"},{"alias":"RPS7_4_1531","entrezGeneId":"388363"},{"alias":"TMIGD","entrezGeneId":"388364"},{"alias":"UNQ9372","entrezGeneId":"388364"},{"alias":"AT744.2","entrezGeneId":"388372"},{"alias":"CCL4L","entrezGeneId":"388372"},{"alias":"LAG-1","entrezGeneId":"388372"},{"alias":"LAG1","entrezGeneId":"388372"},{"alias":"MIP-1-beta","entrezGeneId":"388372"},{"alias":"SCYA4L","entrezGeneId":"388372"},{"alias":"SCYA4L1","entrezGeneId":"388372"},{"alias":"SCYA4L2","entrezGeneId":"388372"},{"alias":"CILD17","entrezGeneId":"388389"},{"alias":"PR46b","entrezGeneId":"388389"},{"alias":"SMH","entrezGeneId":"388389"},{"alias":"RPL7_19_1558","entrezGeneId":"388401"},{"alias":"FKSG4","entrezGeneId":"388403"},{"alias":"BTBD17A","entrezGeneId":"388419"},{"alias":"LGALS3BPL","entrezGeneId":"388419"},{"alias":"TANGO10A","entrezGeneId":"388419"},{"alias":"AATK-AS1","entrezGeneId":"388428"},{"alias":"RPL6_7_890","entrezGeneId":"388460"},{"alias":"A26B2","entrezGeneId":"388468"},{"alias":"CT104.6","entrezGeneId":"388468"},{"alias":"POTE-18","entrezGeneId":"388468"},{"alias":"POTE18","entrezGeneId":"388468"},{"alias":"RPL7A_30_1597","entrezGeneId":"388474"},{"alias":"SDCCAG3L","entrezGeneId":"388478"},{"alias":"CPLP","entrezGeneId":"388503"},{"alias":"ZNF788","entrezGeneId":"388507"},{"alias":"RPSA_30_1642","entrezGeneId":"388524"},{"alias":"PERRS","entrezGeneId":"388531"},{"alias":"R9AP","entrezGeneId":"388531"},{"alias":"RGS9","entrezGeneId":"388531"},{"alias":"RPL21_64_1647","entrezGeneId":"388532"},{"alias":"KDAP","entrezGeneId":"388533"},{"alias":"UNQ467","entrezGeneId":"388533"},{"alias":"CEAL2","entrezGeneId":"388551"},{"alias":"DFNA4B","entrezGeneId":"388551"},{"alias":"BLOS3","entrezGeneId":"388552"},{"alias":"HPS8","entrezGeneId":"388552"},{"alias":"RP","entrezGeneId":"388552"},{"alias":"HMGDC","entrezGeneId":"388553"},{"alias":"UNQ483","entrezGeneId":"388555"},{"alias":"RPS9_1_1662","entrezGeneId":"388556"},{"alias":"ZNF468","entrezGeneId":"388561"},{"alias":"CZF-1","entrezGeneId":"388566"},{"alias":"C1QDC2","entrezGeneId":"388581"},{"alias":"CTRP12","entrezGeneId":"388581"},{"alias":"FAM132A","entrezGeneId":"388581"},{"alias":"bHLHb38","entrezGeneId":"388585"},{"alias":"Vel","entrezGeneId":"388588"},{"alias":"C1orf188","entrezGeneId":"388591"},{"alias":"HS6ST1P","entrezGeneId":"388605"},{"alias":"C1orf225","entrezGeneId":"388610"},{"alias":"TNRP","entrezGeneId":"388610"},{"alias":"EAPG6122","entrezGeneId":"388611"},{"alias":"UNQ6122","entrezGeneId":"388611"},{"alias":"RPL21_3_36","entrezGeneId":"388621"},{"alias":"TIKI2","entrezGeneId":"388630"},{"alias":"GBP4L","entrezGeneId":"388646"},{"alias":"MRT48","entrezGeneId":"388662"},{"alias":"NTT4","entrezGeneId":"388662"},{"alias":"N2N","entrezGeneId":"388677"},{"alias":"LINC00875","entrezGeneId":"388685"},{"alias":"SB145","entrezGeneId":"388695"},{"alias":"FLG3","entrezGeneId":"388697"},{"alias":"S100A16","entrezGeneId":"388697"},{"alias":"S100a18","entrezGeneId":"388697"},{"alias":"IFPS","entrezGeneId":"388698"},{"alias":"C1orf46","entrezGeneId":"388699"},{"alias":"NCRNA00302","entrezGeneId":"388699"},{"alias":"xp33","entrezGeneId":"388699"},{"alias":"RPSA_4_107","entrezGeneId":"388707"},{"alias":"FMO6","entrezGeneId":"388714"},{"alias":"C1orf120","entrezGeneId":"388719"},{"alias":"NCRNA00272","entrezGeneId":"388719"},{"alias":"HC3107","entrezGeneId":"388730"},{"alias":"KVLA2788","entrezGeneId":"388730"},{"alias":"UNQ2788","entrezGeneId":"388730"},{"alias":"nCL-2","entrezGeneId":"388743"},{"alias":"C1orf31","entrezGeneId":"388753"},{"alias":"CEMCOX4","entrezGeneId":"388753"},{"alias":"OR5AX1","entrezGeneId":"388761"},{"alias":"OR5AX1P","entrezGeneId":"388761"},{"alias":"JCG10","entrezGeneId":"388762"},{"alias":"OR2M1","entrezGeneId":"388762"},{"alias":"OST037","entrezGeneId":"388762"},{"alias":"LINC00493","entrezGeneId":"388789"},{"alias":"C20orf107","entrezGeneId":"388799"},{"alias":"dJ1153D9.4","entrezGeneId":"388799"},{"alias":"C21orf34","entrezGeneId":"388815"},{"alias":"C21orf35","entrezGeneId":"388815"},{"alias":"LINC00478","entrezGeneId":"388815"},{"alias":"MONC","entrezGeneId":"388815"},{"alias":"C21orf111","entrezGeneId":"388830"},{"alias":"NCRNA00316","entrezGeneId":"388830"},{"alias":"PRED59","entrezGeneId":"388830"},{"alias":"C22orf36","entrezGeneId":"388886"},{"alias":"FAM211B","entrezGeneId":"388886"},{"alias":"RPL5_15_1754","entrezGeneId":"388907"},{"alias":"NCRNA00207","entrezGeneId":"388910"},{"alias":"RP54","entrezGeneId":"388939"},{"alias":"COG5373","entrezGeneId":"388960"},{"alias":"hCG1989538","entrezGeneId":"388960"},{"alias":"MMDS2","entrezGeneId":"388962"},{"alias":"hCG40743","entrezGeneId":"388963"},{"alias":"HCRCN81","entrezGeneId":"388969"},{"alias":"NHEDC1P2","entrezGeneId":"389000"},{"alias":"NHE4","entrezGeneId":"389015"},{"alias":"DAPR","entrezGeneId":"389072"},{"alias":"PLEKHM1L","entrezGeneId":"389072"},{"alias":"GONDA1","entrezGeneId":"389073"},{"alias":"ASCL830","entrezGeneId":"389084"},{"alias":"C2orf82","entrezGeneId":"389084"},{"alias":"UNQ830","entrezGeneId":"389084"},{"alias":"OR2-1","entrezGeneId":"389090"},{"alias":"OR6B2P","entrezGeneId":"389090"},{"alias":"RPL23A_16_360","entrezGeneId":"389101"},{"alias":"RPS27_5_366","entrezGeneId":"389112"},{"alias":"CDH29","entrezGeneId":"389118"},{"alias":"PRO34300","entrezGeneId":"389118"},{"alias":"C3orf54","entrezGeneId":"389119"},{"alias":"INKA1","entrezGeneId":"389119"},{"alias":"MUSTANG","entrezGeneId":"389125"},{"alias":"RPS10_4_378","entrezGeneId":"389127"},{"alias":"VGL-3","entrezGeneId":"389136"},{"alias":"VGL3","entrezGeneId":"389136"},{"alias":"RPSA_6_392","entrezGeneId":"389141"},{"alias":"OST702","entrezGeneId":"389144"},{"alias":"RPL21_14_415","entrezGeneId":"389156"},{"alias":"CPHL1","entrezGeneId":"389160"},{"alias":"C3orf16","entrezGeneId":"389161"},{"alias":"EEF1AL6","entrezGeneId":"389179"},{"alias":"C4orf52","entrezGeneId":"389203"},{"alias":"MITRAC7","entrezGeneId":"389203"},{"alias":"PNX","entrezGeneId":"389203"},{"alias":"CCDC4","entrezGeneId":"389206"},{"alias":"DFNB25","entrezGeneId":"389207"},{"alias":"PPP1R88","entrezGeneId":"389207"},{"alias":"NACA3","entrezGeneId":"389240"},{"alias":"AX2R","entrezGeneId":"389289"},{"alias":"AXIIR","entrezGeneId":"389289"},{"alias":"C5orf39","entrezGeneId":"389289"},{"alias":"ISCA1L","entrezGeneId":"389293"},{"alias":"C5orf48","entrezGeneId":"389320"},{"alias":"Tseg7","entrezGeneId":"389320"},{"alias":"C5orf65","entrezGeneId":"389333"},{"alias":"SSSP1","entrezGeneId":"389336"},{"alias":"RPL10_1_637","entrezGeneId":"389342"},{"alias":"bA506K6.2","entrezGeneId":"389362"},{"alias":"C6orf86","entrezGeneId":"389362"},{"alias":"PAC4","entrezGeneId":"389362"},{"alias":"GSGL541","entrezGeneId":"389376"},{"alias":"SFTPG","entrezGeneId":"389376"},{"alias":"SP-G","entrezGeneId":"389376"},{"alias":"UNQ541","entrezGeneId":"389376"},{"alias":"AAAL3045","entrezGeneId":"389383"},{"alias":"C6orf126","entrezGeneId":"389383"},{"alias":"dJ510O8.5","entrezGeneId":"389383"},{"alias":"UNQ3045","entrezGeneId":"389383"},{"alias":"bA28H17.2","entrezGeneId":"389396"},{"alias":"C6orf140","entrezGeneId":"389396"},{"alias":"bA360D14.1","entrezGeneId":"389400"},{"alias":"C6orf144","entrezGeneId":"389400"},{"alias":"GRAL","entrezGeneId":"389400"},{"alias":"UNQ9356","entrezGeneId":"389400"},{"alias":"RPL9_6_709","entrezGeneId":"389404"},{"alias":"bA758C21.1","entrezGeneId":"389416"},{"alias":"DHRS6P1","entrezGeneId":"389416"},{"alias":"CSDD2","entrezGeneId":"389421"},{"alias":"PA2G4L2","entrezGeneId":"389424"},{"alias":"RPL5_11_750","entrezGeneId":"389428"},{"alias":"dJ875H10.1","entrezGeneId":"389432"},{"alias":"C6orf71","entrezGeneId":"389434"},{"alias":"DEHAL1","entrezGeneId":"389434"},{"alias":"IYD-1","entrezGeneId":"389434"},{"alias":"TDH4","entrezGeneId":"389434"},{"alias":"RPL27A_4_770","entrezGeneId":"389435"},{"alias":"RPS26","entrezGeneId":"389472"},{"alias":"RPS26_13_792","entrezGeneId":"389472"},{"alias":"NUPR1L","entrezGeneId":"389493"},{"alias":"OR7E76","entrezGeneId":"389537"},{"alias":"OST127","entrezGeneId":"389537"},{"alias":"C7orf59","entrezGeneId":"389541"},{"alias":"FEZ","entrezGeneId":"389549"},{"alias":"HH22","entrezGeneId":"389549"},{"alias":"ZNF312B","entrezGeneId":"389549"},{"alias":"UNQ1940","entrezGeneId":"389558"},{"alias":"ALS2CR2P1","entrezGeneId":"389599"},{"alias":"STLK6ps1","entrezGeneId":"389599"},{"alias":"HARL2754","entrezGeneId":"389610"},{"alias":"UNQ2754","entrezGeneId":"389610"},{"alias":"XRG5A","entrezGeneId":"389610"},{"alias":"XRG5BM","entrezGeneId":"389610"},{"alias":"FAM90A3","entrezGeneId":"389611"},{"alias":"PJCG6","entrezGeneId":"389616"},{"alias":"FAM90A15","entrezGeneId":"389630"},{"alias":"ZNF705C","entrezGeneId":"389631"},{"alias":"C8orf80","entrezGeneId":"389643"},{"alias":"HMFN0672","entrezGeneId":"389643"},{"alias":"SLIP-GC","entrezGeneId":"389643"},{"alias":"RPL5_12_886","entrezGeneId":"389644"},{"alias":"ASNSL1","entrezGeneId":"389652"},{"alias":"RPL29_7_901","entrezGeneId":"389655"},{"alias":"AUGA","entrezGeneId":"389658"},{"alias":"AUGB","entrezGeneId":"389658"},{"alias":"FAM150A","entrezGeneId":"389658"},{"alias":"UNQ9433","entrezGeneId":"389658"},{"alias":"DKFZP564M1416","entrezGeneId":"389662"},{"alias":"XRG9","entrezGeneId":"389668"},{"alias":"RPSA_19_921","entrezGeneId":"389672"},{"alias":"HNRPA1P4","entrezGeneId":"389674"},{"alias":"MGC:33837","entrezGeneId":"389677"},{"alias":"hMafA","entrezGeneId":"389692"},{"alias":"INSDM","entrezGeneId":"389692"},{"alias":"RIPE3b1","entrezGeneId":"389692"},{"alias":"C9orf144","entrezGeneId":"389715"},{"alias":"C9orf144A","entrezGeneId":"389715"},{"alias":"FAM205B","entrezGeneId":"389715"},{"alias":"FAM75A6","entrezGeneId":"389730"},{"alias":"GPR116P1","entrezGeneId":"389740"},{"alias":"LINC01172","entrezGeneId":"389741"},{"alias":"TCONS_00015562","entrezGeneId":"389741"},{"alias":"FAM75D4","entrezGeneId":"389761"},{"alias":"FAM75D3","entrezGeneId":"389762"},{"alias":"FAM75D1","entrezGeneId":"389763"},{"alias":"bA507D14.1","entrezGeneId":"389766"},{"alias":"bA247A12.2","entrezGeneId":"389792"},{"alias":"C9orf171","entrezGeneId":"389799"},{"alias":"PRO6093","entrezGeneId":"389812"},{"alias":"UNQ2541","entrezGeneId":"389812"},{"alias":"ajm-1","entrezGeneId":"389813"},{"alias":"C9orf172","entrezGeneId":"389813"},{"alias":"bA350O14.10","entrezGeneId":"389816"},{"alias":"CAPC","entrezGeneId":"389816"},{"alias":"MYOMAKER","entrezGeneId":"389827"},{"alias":"TMEM226","entrezGeneId":"389827"},{"alias":"TMEM8C","entrezGeneId":"389827"},{"alias":"ASK3","entrezGeneId":"389840"},{"alias":"bA723P2.3","entrezGeneId":"389840"},{"alias":"FTHL19","entrezGeneId":"389844"},{"alias":"GAPDHL10","entrezGeneId":"389849"},{"alias":"GAPDL10","entrezGeneId":"389849"},{"alias":"LYC5","entrezGeneId":"389852"},{"alias":"LYZL5","entrezGeneId":"389852"},{"alias":"PNPK6288","entrezGeneId":"389852"},{"alias":"SLLP-X","entrezGeneId":"389852"},{"alias":"SLLP2","entrezGeneId":"389852"},{"alias":"UNQ6288","entrezGeneId":"389852"},{"alias":"MRX105","entrezGeneId":"389856"},{"alias":"USP22L","entrezGeneId":"389856"},{"alias":"USP27","entrezGeneId":"389856"},{"alias":"CENPVP1","entrezGeneId":"389857"},{"alias":"PRR6L1","entrezGeneId":"389857"},{"alias":"CT16.5","entrezGeneId":"389860"},{"alias":"GAGEE3","entrezGeneId":"389860"},{"alias":"PAGE-2B","entrezGeneId":"389860"},{"alias":"SERBP1P","entrezGeneId":"389866"},{"alias":"CNBP2","entrezGeneId":"389874"},{"alias":"ZNF9L","entrezGeneId":"389874"},{"alias":"PA2G4P","entrezGeneId":"389884"},{"alias":"Li174","entrezGeneId":"389898"},{"alias":"CSAG3A","entrezGeneId":"389903"},{"alias":"CT24.2","entrezGeneId":"389903"},{"alias":"TAKR","entrezGeneId":"389932"},{"alias":"C1ql","entrezGeneId":"389941"},{"alias":"C1QTNF13","entrezGeneId":"389941"},{"alias":"CTRP13","entrezGeneId":"389941"},{"alias":"K100","entrezGeneId":"389941"},{"alias":"RPL7_14_1078","entrezGeneId":"389992"},{"alias":"GUCY2G","entrezGeneId":"390003"},{"alias":"bA108K1.2","entrezGeneId":"390006"},{"alias":"bB238F13.2","entrezGeneId":"390010"},{"alias":"C10orf121","entrezGeneId":"390010"},{"alias":"NKX-1.1","entrezGeneId":"390010"},{"alias":"HS191N21","entrezGeneId":"390028"},{"alias":"hs6M1-11","entrezGeneId":"390028"},{"alias":"OR4F2","entrezGeneId":"390028"},{"alias":"S191N21","entrezGeneId":"390028"},{"alias":"OR55B2P","entrezGeneId":"390030"},{"alias":"OR55C1P","entrezGeneId":"390030"},{"alias":"OR11-8","entrezGeneId":"390036"},{"alias":"OR11-13","entrezGeneId":"390037"},{"alias":"OR11-14","entrezGeneId":"390038"},{"alias":"OR51D1Q","entrezGeneId":"390038"},{"alias":"OR52A4","entrezGeneId":"390053"},{"alias":"OR11-33","entrezGeneId":"390054"},{"alias":"HOR5'Beta6","entrezGeneId":"390058"},{"alias":"HOR5'Beta7","entrezGeneId":"390059"},{"alias":"OR11-40","entrezGeneId":"390059"},{"alias":"OR11-38","entrezGeneId":"390064"},{"alias":"OR11-43","entrezGeneId":"390066"},{"alias":"OR11-41","entrezGeneId":"390067"},{"alias":"OR11-45","entrezGeneId":"390067"},{"alias":"OR11-64","entrezGeneId":"390072"},{"alias":"OR11-63","entrezGeneId":"390073"},{"alias":"OR56B2","entrezGeneId":"390073"},{"alias":"OR11-62","entrezGeneId":"390075"},{"alias":"OR52N5Q","entrezGeneId":"390075"},{"alias":"OR11-57","entrezGeneId":"390077"},{"alias":"OR11-58","entrezGeneId":"390078"},{"alias":"OR11-54","entrezGeneId":"390079"},{"alias":"OR11-55","entrezGeneId":"390081"},{"alias":"OR11-56","entrezGeneId":"390082"},{"alias":"OR56A2P","entrezGeneId":"390083"},{"alias":"OR56A3P","entrezGeneId":"390083"},{"alias":"OR56A6","entrezGeneId":"390083"},{"alias":"OR56A5P","entrezGeneId":"390084"},{"alias":"OR11-96","entrezGeneId":"390093"},{"alias":"RPS24_5_1135","entrezGeneId":"390107"},{"alias":"OR11-104","entrezGeneId":"390113"},{"alias":"OR4A4","entrezGeneId":"390134"},{"alias":"OR4A25P","entrezGeneId":"390138"},{"alias":"OR4A22P","entrezGeneId":"390139"},{"alias":"OR11-154","entrezGeneId":"390144"},{"alias":"OR5W2P","entrezGeneId":"390148"},{"alias":"OR5W3P","entrezGeneId":"390148"},{"alias":"OR11-171","entrezGeneId":"390151"},{"alias":"OR11-172","entrezGeneId":"390152"},{"alias":"OR11-178","entrezGeneId":"390154"},{"alias":"OR5T3Q","entrezGeneId":"390154"},{"alias":"OR11-179","entrezGeneId":"390155"},{"alias":"OR5T1P","entrezGeneId":"390155"},{"alias":"OR11-182","entrezGeneId":"390157"},{"alias":"OR8N1P","entrezGeneId":"390157"},{"alias":"RPL5_15_1144","entrezGeneId":"390158"},{"alias":"OR11-190","entrezGeneId":"390162"},{"alias":"OR11-207","entrezGeneId":"390167"},{"alias":"OR11-208","entrezGeneId":"390168"},{"alias":"OST050","entrezGeneId":"390168"},{"alias":"OR9G5","entrezGeneId":"390174"},{"alias":"RPS4P13","entrezGeneId":"390183"},{"alias":"RPS4X_3_1145","entrezGeneId":"390183"},{"alias":"OR13-34","entrezGeneId":"390186"},{"alias":"OR13-64","entrezGeneId":"390186"},{"alias":"OR13-67","entrezGeneId":"390186"},{"alias":"OR5B10","entrezGeneId":"390186"},{"alias":"OR5B11","entrezGeneId":"390186"},{"alias":"OR5B11P","entrezGeneId":"390186"},{"alias":"OR5B18P","entrezGeneId":"390186"},{"alias":"OR5B4P","entrezGeneId":"390186"},{"alias":"OR11-240","entrezGeneId":"390190"},{"alias":"OST073","entrezGeneId":"390190"},{"alias":"OR11-241","entrezGeneId":"390191"},{"alias":"OR5B12P","entrezGeneId":"390191"},{"alias":"OR5B16","entrezGeneId":"390191"},{"alias":"OST743","entrezGeneId":"390191"},{"alias":"OR11-244","entrezGeneId":"390195"},{"alias":"OR11-251","entrezGeneId":"390197"},{"alias":"OR4D10P","entrezGeneId":"390197"},{"alias":"OST711","entrezGeneId":"390197"},{"alias":"OR11-253","entrezGeneId":"390199"},{"alias":"OR11-256","entrezGeneId":"390201"},{"alias":"RPS2_14_1147","entrezGeneId":"390206"},{"alias":"PGR5","entrezGeneId":"390212"},{"alias":"FOLR1P","entrezGeneId":"390221"},{"alias":"KB-1","entrezGeneId":"390221"},{"alias":"GC-E","entrezGeneId":"390226"},{"alias":"GCD","entrezGeneId":"390226"},{"alias":"GUCY2E","entrezGeneId":"390226"},{"alias":"RPL7A_22_1161","entrezGeneId":"390228"},{"alias":"TRIM77P","entrezGeneId":"390231"},{"alias":"NDUFB11P","entrezGeneId":"390239"},{"alias":"Folbp3","entrezGeneId":"390243"},{"alias":"FOLR4","entrezGeneId":"390243"},{"alias":"JUNO","entrezGeneId":"390243"},{"alias":"JMJD2E","entrezGeneId":"390245"},{"alias":"KDM4DL","entrezGeneId":"390245"},{"alias":"KDM5E","entrezGeneId":"390245"},{"alias":"BSX1","entrezGeneId":"390259"},{"alias":"OR11-270","entrezGeneId":"390260"},{"alias":"OR11-271","entrezGeneId":"390261"},{"alias":"OR11-278","entrezGeneId":"390264"},{"alias":"OR11-283","entrezGeneId":"390265"},{"alias":"OR10D4","entrezGeneId":"390266"},{"alias":"OR10D6P","entrezGeneId":"390266"},{"alias":"OR11-311","entrezGeneId":"390271"},{"alias":"OR11-318","entrezGeneId":"390275"},{"alias":"OST025","entrezGeneId":"390275"},{"alias":"RPL31_15_1198","entrezGeneId":"390283"},{"alias":"OR7E54P","entrezGeneId":"390288"},{"alias":"OST185","entrezGeneId":"390288"},{"alias":"OR5BS1","entrezGeneId":"390313"},{"alias":"OST267","entrezGeneId":"390321"},{"alias":"OR6U1P","entrezGeneId":"390329"},{"alias":"bcm182","entrezGeneId":"390354"},{"alias":"RPL18A_6_1273","entrezGeneId":"390354"},{"alias":"ALDRL4","entrezGeneId":"390402"},{"alias":"RPL7_17_1325","entrezGeneId":"390413"},{"alias":"CCT5-P1","entrezGeneId":"390415"},{"alias":"ATP5G1P5","entrezGeneId":"390424"},{"alias":"OR14-13","entrezGeneId":"390429"},{"alias":"OR14-8","entrezGeneId":"390429"},{"alias":"OR14-15","entrezGeneId":"390431"},{"alias":"OR4Q2P","entrezGeneId":"390432"},{"alias":"OR14-27","entrezGeneId":"390433"},{"alias":"OR14-23","entrezGeneId":"390434"},{"alias":"OR14-29","entrezGeneId":"390436"},{"alias":"OR14-34","entrezGeneId":"390439"},{"alias":"OR11H7P","entrezGeneId":"390441"},{"alias":"OR14-36","entrezGeneId":"390442"},{"alias":"h461","entrezGeneId":"390443"},{"alias":"HEL128","entrezGeneId":"390443"},{"alias":"RAK1","entrezGeneId":"390443"},{"alias":"OR14-38","entrezGeneId":"390445"},{"alias":"AKR1B1P","entrezGeneId":"390482"},{"alias":"MPPE1P","entrezGeneId":"390501"},{"alias":"ARGS","entrezGeneId":"390502"},{"alias":"ATR","entrezGeneId":"390502"},{"alias":"PIL","entrezGeneId":"390502"},{"alias":"psiATR","entrezGeneId":"390502"},{"alias":"SERPINA2P","entrezGeneId":"390502"},{"alias":"IGHV1OR159","entrezGeneId":"390531"},{"alias":"VSIG7","entrezGeneId":"390531"},{"alias":"GOLGA8E","entrezGeneId":"390535"},{"alias":"OR15-3","entrezGeneId":"390538"},{"alias":"OR15-2","entrezGeneId":"390539"},{"alias":"DNM1DN4.1","entrezGeneId":"390560"},{"alias":"RPS15_4_1425","entrezGeneId":"390576"},{"alias":"RPLP0_5_1426","entrezGeneId":"390578"},{"alias":"ATP5HP1","entrezGeneId":"390581"},{"alias":"HsT18164","entrezGeneId":"390581"},{"alias":"HCG1645727","entrezGeneId":"390594"},{"alias":"NEM6","entrezGeneId":"390594"},{"alias":"UBAP-1L","entrezGeneId":"390595"},{"alias":"CORL1","entrezGeneId":"390598"},{"alias":"FUSSEL15","entrezGeneId":"390598"},{"alias":"LBXCOR1","entrezGeneId":"390598"},{"alias":"RPL18_4_1455","entrezGeneId":"390612"},{"alias":"C15orf58","entrezGeneId":"390637"},{"alias":"VTC2","entrezGeneId":"390637"},{"alias":"OR15-15","entrezGeneId":"390648"},{"alias":"OR4F12","entrezGeneId":"390648"},{"alias":"OR4F14","entrezGeneId":"390650"},{"alias":"GPCRLTM7","entrezGeneId":"390651"},{"alias":"ADAMTS7P2","entrezGeneId":"390660"},{"alias":"CTRP8","entrezGeneId":"390664"},{"alias":"UNQ5829","entrezGeneId":"390664"},{"alias":"C16orf38","entrezGeneId":"390667"},{"alias":"RPL18_8_1468","entrezGeneId":"390671"},{"alias":"A-761H5.2","entrezGeneId":"390688"},{"alias":"RPS15A_22_1489","entrezGeneId":"390735"},{"alias":"ePABP2","entrezGeneId":"390748"},{"alias":"PABPNL1","entrezGeneId":"390748"},{"alias":"OLFRA05","entrezGeneId":"390756"},{"alias":"OLFRA06","entrezGeneId":"390756"},{"alias":"OR17-13","entrezGeneId":"390756"},{"alias":"OR17-16","entrezGeneId":"390756"},{"alias":"OR17-24","entrezGeneId":"390756"},{"alias":"OR17-25","entrezGeneId":"390756"},{"alias":"OR24","entrezGeneId":"390756"},{"alias":"OR25","entrezGeneId":"390756"},{"alias":"OR3A4","entrezGeneId":"390756"},{"alias":"OR3A5P","entrezGeneId":"390756"},{"alias":"CCL3L2","entrezGeneId":"390788"},{"alias":"G0S19-3","entrezGeneId":"390788"},{"alias":"LD78gamma","entrezGeneId":"390788"},{"alias":"SCYA3L2","entrezGeneId":"390788"},{"alias":"ARL12","entrezGeneId":"390790"},{"alias":"CK-39","entrezGeneId":"390792"},{"alias":"K39","entrezGeneId":"390792"},{"alias":"KA35","entrezGeneId":"390792"},{"alias":"GLY1","entrezGeneId":"390816"},{"alias":"OR18-1","entrezGeneId":"390836"},{"alias":"OR4K9P","entrezGeneId":"390836"},{"alias":"ARIH2P","entrezGeneId":"390844"},{"alias":"RPS15A_23_1592","entrezGeneId":"390848"},{"alias":"RPL29_21_1603","entrezGeneId":"390856"},{"alias":"RPSA_29_1604","entrezGeneId":"390857"},{"alias":"ACYL3P","entrezGeneId":"390858"},{"alias":"OR4F20P","entrezGeneId":"390872"},{"alias":"OR4F9P","entrezGeneId":"390872"},{"alias":"OC3","entrezGeneId":"390874"},{"alias":"OR19-6","entrezGeneId":"390882"},{"alias":"OST260","entrezGeneId":"390882"},{"alias":"OST085","entrezGeneId":"390883"},{"alias":"HSTPCR26P","entrezGeneId":"390885"},{"alias":"OR19-14","entrezGeneId":"390885"},{"alias":"OR7E61","entrezGeneId":"390885"},{"alias":"OR7E98P","entrezGeneId":"390885"},{"alias":"TPCR26","entrezGeneId":"390885"},{"alias":"OR7H1","entrezGeneId":"390886"},{"alias":"BC85395_3","entrezGeneId":"390892"},{"alias":"OR19-18","entrezGeneId":"390892"},{"alias":"hg1003","entrezGeneId":"390894"},{"alias":"OLF4p","entrezGeneId":"390894"},{"alias":"OR19-18","entrezGeneId":"390894"},{"alias":"OR7A2","entrezGeneId":"390894"},{"alias":"OR7A7","entrezGeneId":"390894"},{"alias":"hg513","entrezGeneId":"390895"},{"alias":"OLF4p","entrezGeneId":"390895"},{"alias":"OR19-3","entrezGeneId":"390895"},{"alias":"OR7A6P","entrezGeneId":"390895"},{"alias":"RP2","entrezGeneId":"390916"},{"alias":"EEF1AL5","entrezGeneId":"390924"},{"alias":"PAPL","entrezGeneId":"390928"},{"alias":"PAPL1","entrezGeneId":"390928"},{"alias":"RPL23A_35_1661","entrezGeneId":"390949"},{"alias":"ZNF818","entrezGeneId":"390963"},{"alias":"bHLHb43","entrezGeneId":"390992"},{"alias":"RPL7A_1_5","entrezGeneId":"390993"},{"alias":"CFLP6","entrezGeneId":"390996"},{"alias":"PRAMEF24","entrezGeneId":"391002"},{"alias":"RPL29_1_20","entrezGeneId":"391019"},{"alias":"MKRNP4","entrezGeneId":"391033"},{"alias":"ZNF127L4","entrezGeneId":"391033"},{"alias":"BTN12","entrezGeneId":"391037"},{"alias":"SKINT1","entrezGeneId":"391037"},{"alias":"SKINTL","entrezGeneId":"391037"},{"alias":"SKINTP","entrezGeneId":"391037"},{"alias":"CFLL2","entrezGeneId":"391039"},{"alias":"CFLP2","entrezGeneId":"391039"},{"alias":"UOXP","entrezGeneId":"391051"},{"alias":"URICASE","entrezGeneId":"391051"},{"alias":"SDFR2","entrezGeneId":"391059"},{"alias":"SDR2","entrezGeneId":"391059"},{"alias":"GAPDHL9","entrezGeneId":"391069"},{"alias":"GAPDL9","entrezGeneId":"391069"},{"alias":"GAPDHL1","entrezGeneId":"391077"},{"alias":"GAPDL1","entrezGeneId":"391077"},{"alias":"RPLP0_1_100","entrezGeneId":"391102"},{"alias":"VHLP","entrezGeneId":"391104"},{"alias":"VLP","entrezGeneId":"391104"},{"alias":"OR1-4","entrezGeneId":"391107"},{"alias":"OR1-6","entrezGeneId":"391109"},{"alias":"OR1-9","entrezGeneId":"391110"},{"alias":"OR1-11","entrezGeneId":"391112"},{"alias":"OR6Y2","entrezGeneId":"391112"},{"alias":"OR1-18","entrezGeneId":"391114"},{"alias":"OR10J4P","entrezGeneId":"391121"},{"alias":"OST717","entrezGeneId":"391121"},{"alias":"RPL27A_1_106","entrezGeneId":"391124"},{"alias":"RPL26_4_113","entrezGeneId":"391126"},{"alias":"RPS17_1_116","entrezGeneId":"391130"},{"alias":"RPL4_1_122","entrezGeneId":"391135"},{"alias":"RPS15_2_123","entrezGeneId":"391137"},{"alias":"GOT2L2","entrezGeneId":"391139"},{"alias":"RPL13_1_131","entrezGeneId":"391140"},{"alias":"RPS26_2_165","entrezGeneId":"391165"},{"alias":"RPS3A_5_169","entrezGeneId":"391168"},{"alias":"RPL23A_4_173","entrezGeneId":"391175"},{"alias":"RPL6_2_187","entrezGeneId":"391181"},{"alias":"RSL24D1P19","entrezGeneId":"391183"},{"alias":"OR1-47","entrezGeneId":"391191"},{"alias":"OR2AK1P","entrezGeneId":"391191"},{"alias":"OR2M2Q","entrezGeneId":"391194"},{"alias":"OST423","entrezGeneId":"391194"},{"alias":"OR1-56","entrezGeneId":"391195"},{"alias":"OR2T32","entrezGeneId":"391195"},{"alias":"OR1-58","entrezGeneId":"391196"},{"alias":"HDHD1DP","entrezGeneId":"391242"},{"alias":"HDHD1P3","entrezGeneId":"391242"},{"alias":"C20orf137","entrezGeneId":"391253"},{"alias":"dJ601O1.1","entrezGeneId":"391253"},{"alias":"SPINT3","entrezGeneId":"391253"},{"alias":"dJ963K23.1","entrezGeneId":"391256"},{"alias":"PIC1L","entrezGeneId":"391257"},{"alias":"UBL2","entrezGeneId":"391257"},{"alias":"UBL6","entrezGeneId":"391257"},{"alias":"C21orf81","entrezGeneId":"391267"},{"alias":"C21orf126","entrezGeneId":"391269"},{"alias":"OR21-1","entrezGeneId":"391279"},{"alias":"OR21-3","entrezGeneId":"391279"},{"alias":"OR7E92P","entrezGeneId":"391279"},{"alias":"RPL23A_41_1732","entrezGeneId":"391282"},{"alias":"C2orf79","entrezGeneId":"391356"},{"alias":"RPS12_1_210","entrezGeneId":"391370"},{"alias":"RPSA_4_242","entrezGeneId":"391387"},{"alias":"RPSA_6_295","entrezGeneId":"391462"},{"alias":"RPL23A_14_334","entrezGeneId":"391490"},{"alias":"GAMTP","entrezGeneId":"391491"},{"alias":"RPL23A_11_340","entrezGeneId":"391504"},{"alias":"HPX42","entrezGeneId":"391518"},{"alias":"VENTX1","entrezGeneId":"391518"},{"alias":"THRAP3L","entrezGeneId":"391524"},{"alias":"RPS25_2_371","entrezGeneId":"391539"},{"alias":"OR2DG","entrezGeneId":"391548"},{"alias":"OR3.2","entrezGeneId":"391548"},{"alias":"OR7E56P","entrezGeneId":"391548"},{"alias":"OR7E57P","entrezGeneId":"391548"},{"alias":"OST007","entrezGeneId":"391548"},{"alias":"OST013","entrezGeneId":"391548"},{"alias":"RPL32_1_390","entrezGeneId":"391560"},{"alias":"RPL31_5_407","entrezGeneId":"391581"},{"alias":"RPL32_3_439","entrezGeneId":"391595"},{"alias":"RPSA_11_442","entrezGeneId":"391598"},{"alias":"DUB4","entrezGeneId":"391622"},{"alias":"USP17L6","entrezGeneId":"391622"},{"alias":"vDUB4","entrezGeneId":"391622"},{"alias":"RS447","entrezGeneId":"391627"},{"alias":"USP17","entrezGeneId":"391627"},{"alias":"USP17A","entrezGeneId":"391627"},{"alias":"USP17H","entrezGeneId":"391627"},{"alias":"USP17I","entrezGeneId":"391627"},{"alias":"USP17J","entrezGeneId":"391627"},{"alias":"USP17K","entrezGeneId":"391627"},{"alias":"USP17L","entrezGeneId":"391627"},{"alias":"USP17M","entrezGeneId":"391627"},{"alias":"OR7E134P","entrezGeneId":"391630"},{"alias":"OR7E120","entrezGeneId":"391632"},{"alias":"OST018","entrezGeneId":"391632"},{"alias":"HSP90BB","entrezGeneId":"391634"},{"alias":"RPL17_10_481","entrezGeneId":"391655"},{"alias":"RPS15A_8_485","entrezGeneId":"391656"},{"alias":"RPL6_2_505","entrezGeneId":"391679"},{"alias":"RPS23_2_521","entrezGeneId":"391701"},{"alias":"RPS3A_5_528","entrezGeneId":"391706"},{"alias":"RNF35","entrezGeneId":"391712"},{"alias":"TRIM75","entrezGeneId":"391714"},{"alias":"RPL19_5_537","entrezGeneId":"391719"},{"alias":"bHLHb44","entrezGeneId":"391723"},{"alias":"HCM1228","entrezGeneId":"391723"},{"alias":"HESL","entrezGeneId":"391723"},{"alias":"Mgn","entrezGeneId":"391723"},{"alias":"RPL29_5_543","entrezGeneId":"391738"},{"alias":"CCT6-1P","entrezGeneId":"391739"},{"alias":"RPS4P6","entrezGeneId":"391777"},{"alias":"RPS4X_2_555","entrezGeneId":"391777"},{"alias":"RPL23A_14_607","entrezGeneId":"391825"},{"alias":"RPL28_3_609","entrezGeneId":"391828"},{"alias":"RPS10_6_615","entrezGeneId":"391833"},{"alias":"RPL10A_4_618","entrezGeneId":"391836"},{"alias":"RPS15_3_634","entrezGeneId":"391845"},{"alias":"RPL7A_12_639","entrezGeneId":"391850"},{"alias":"OR9A6P","entrezGeneId":"392106"},{"alias":"OR2R1","entrezGeneId":"392132"},{"alias":"OST058","entrezGeneId":"392132"},{"alias":"OR10AC1P","entrezGeneId":"392133"},{"alias":"OR2A24P","entrezGeneId":"392138"},{"alias":"OR2A25P","entrezGeneId":"392138"},{"alias":"OR2A27","entrezGeneId":"392138"},{"alias":"USP17L10","entrezGeneId":"392188"},{"alias":"RPL19_8_875","entrezGeneId":"392193"},{"alias":"RPL10A_4_880","entrezGeneId":"392206"},{"alias":"REXO1L8","entrezGeneId":"392242"},{"alias":"BMP-13","entrezGeneId":"392255"},{"alias":"BMP13","entrezGeneId":"392255"},{"alias":"CDMP2","entrezGeneId":"392255"},{"alias":"KFM","entrezGeneId":"392255"},{"alias":"KFS","entrezGeneId":"392255"},{"alias":"KFS1","entrezGeneId":"392255"},{"alias":"KFSL","entrezGeneId":"392255"},{"alias":"SGM1","entrezGeneId":"392255"},{"alias":"SYNS4","entrezGeneId":"392255"},{"alias":"RPS26_10_933","entrezGeneId":"392256"},{"alias":"RPSA_15_943","entrezGeneId":"392262"},{"alias":"CDK5PS","entrezGeneId":"392265"},{"alias":"RPL32_12_951","entrezGeneId":"392271"},{"alias":"MA-nSMase","entrezGeneId":"392275"},{"alias":"RPS5_2_957","entrezGeneId":"392282"},{"alias":"ASSP12","entrezGeneId":"392302"},{"alias":"GLULP","entrezGeneId":"392305"},{"alias":"C9orf128","entrezGeneId":"392307"},{"alias":"OR13E2","entrezGeneId":"392308"},{"alias":"OST741","entrezGeneId":"392308"},{"alias":"OR9-2","entrezGeneId":"392309"},{"alias":"OR37B","entrezGeneId":"392311"},{"alias":"OR37D","entrezGeneId":"392313"},{"alias":"OST611","entrezGeneId":"392313"},{"alias":"ATP5A1P8","entrezGeneId":"392322"},{"alias":"ATP5A1P9","entrezGeneId":"392322"},{"alias":"RPS6_6_992","entrezGeneId":"392358"},{"alias":"CTSL3","entrezGeneId":"392360"},{"alias":"HCTSL-s","entrezGeneId":"392360"},{"alias":"KRT18L3","entrezGeneId":"392371"},{"alias":"OR37K","entrezGeneId":"392376"},{"alias":"OR37M","entrezGeneId":"392377"},{"alias":"RPL31_21_1004","entrezGeneId":"392382"},{"alias":"HG16","entrezGeneId":"392390"},{"alias":"OR1K1","entrezGeneId":"392390"},{"alias":"OR1L7","entrezGeneId":"392390"},{"alias":"OR9-30","entrezGeneId":"392390"},{"alias":"OR5C2P","entrezGeneId":"392391"},{"alias":"OR9-31","entrezGeneId":"392391"},{"alias":"OR9-F","entrezGeneId":"392391"},{"alias":"hg99","entrezGeneId":"392392"},{"alias":"HEL129","entrezGeneId":"392399"},{"alias":"RPS5_5_1762","entrezGeneId":"392424"},{"alias":"RPS27A_9_1763","entrezGeneId":"392425"},{"alias":"MAGEB6P1","entrezGeneId":"392433"},{"alias":"FTLL2","entrezGeneId":"392437"},{"alias":"RPL32_24_1772","entrezGeneId":"392447"},{"alias":"RPL19_12_1775","entrezGeneId":"392451"},{"alias":"CXorf25","entrezGeneId":"392459"},{"alias":"NCRNA00236","entrezGeneId":"392459"},{"alias":"PGR15","entrezGeneId":"392486"},{"alias":"RPS6_11_1786","entrezGeneId":"392497"},{"alias":"RPL26_16_1792","entrezGeneId":"392501"},{"alias":"RPL6_17_1796","entrezGeneId":"392505"},{"alias":"ARL13","entrezGeneId":"392509"},{"alias":"dJ341D10.2","entrezGeneId":"392509"},{"alias":"dJ820B18.1","entrezGeneId":"392517"},{"alias":"RPS5_3_1801","entrezGeneId":"392520"},{"alias":"RPL18A_4_1802","entrezGeneId":"392522"},{"alias":"CROCCP","entrezGeneId":"392547"},{"alias":"RPL19_13_1819","entrezGeneId":"392557"},{"alias":"SEDLP7","entrezGeneId":"392597"},{"alias":"ZNF736P2","entrezGeneId":"392603"},{"alias":"ZNF736PY2","entrezGeneId":"392603"},{"alias":"PPP1R28","entrezGeneId":"392617"},{"alias":"TMEM195","entrezGeneId":"392636"},{"alias":"PMS2L12","entrezGeneId":"392713"},{"alias":"PMSL12","entrezGeneId":"392713"},{"alias":"RPS27_5_819","entrezGeneId":"392748"},{"alias":"RPS2_15_841","entrezGeneId":"392781"},{"alias":"IQCA1P1","entrezGeneId":"392843"},{"alias":"DELPHILIN","entrezGeneId":"392862"},{"alias":"RPL12_8_793","entrezGeneId":"392872"},{"alias":"RPL18_1_838","entrezGeneId":"392979"},{"alias":"OR2A11P","entrezGeneId":"393046"},{"alias":"OR2A26","entrezGeneId":"393046"},{"alias":"OR2A8","entrezGeneId":"393046"},{"alias":"OR7-138","entrezGeneId":"393046"},{"alias":"OR7-141","entrezGeneId":"393046"},{"alias":"cD0826Q1.1","entrezGeneId":"394214"},{"alias":"COL11A2P","entrezGeneId":"394214"},{"alias":"FGF7L","entrezGeneId":"394217"},{"alias":"PRED3","entrezGeneId":"394217"},{"alias":"C11H1.2-Lp","entrezGeneId":"394254"},{"alias":"SH120P","entrezGeneId":"394254"},{"alias":"dJ34B20.13","entrezGeneId":"394255"},{"alias":"RPS10p","entrezGeneId":"394255"},{"alias":"RPS10_7_669","entrezGeneId":"394255"},{"alias":"C2orf19","entrezGeneId":"394261"},{"alias":"C6orf205","entrezGeneId":"394263"},{"alias":"KMQK697","entrezGeneId":"394263"},{"alias":"MUC-21","entrezGeneId":"394263"},{"alias":"LBRCA1","entrezGeneId":"394269"},{"alias":"pseudo-BRCA1","entrezGeneId":"394269"},{"alias":"PsiBRCA1","entrezGeneId":"394269"},{"alias":"Eve-3","entrezGeneId":"399473"},{"alias":"spred-3","entrezGeneId":"399473"},{"alias":"TTMB","entrezGeneId":"399474"},{"alias":"DDPP","entrezGeneId":"399520"},{"alias":"TIMM8AP","entrezGeneId":"399520"},{"alias":"FAM32B","entrezGeneId":"399656"},{"alias":"MEX-3D","entrezGeneId":"399664"},{"alias":"MEX3","entrezGeneId":"399664"},{"alias":"OK/SW-cl.4","entrezGeneId":"399664"},{"alias":"RKHD1","entrezGeneId":"399664"},{"alias":"RNF193","entrezGeneId":"399664"},{"alias":"TINO","entrezGeneId":"399664"},{"alias":"bA203J24.7","entrezGeneId":"399665"},{"alias":"C9orf132","entrezGeneId":"399665"},{"alias":"EEIG1","entrezGeneId":"399665"},{"alias":"SYM-3A","entrezGeneId":"399665"},{"alias":"HsT2883","entrezGeneId":"399666"},{"alias":"LED","entrezGeneId":"399668"},{"alias":"LINC00086","entrezGeneId":"399668"},{"alias":"LINC0086","entrezGeneId":"399668"},{"alias":"NCRNA00086","entrezGeneId":"399668"},{"alias":"ZNF321","entrezGeneId":"399669"},{"alias":"RPL13A_6_816","entrezGeneId":"399670"},{"alias":"MAJN","entrezGeneId":"399687"},{"alias":"MYSPDZ","entrezGeneId":"399687"},{"alias":"SP-R210","entrezGeneId":"399687"},{"alias":"SPR210","entrezGeneId":"399687"},{"alias":"RaLP","entrezGeneId":"399694"},{"alias":"SHCD","entrezGeneId":"399694"},{"alias":"C10orf139","entrezGeneId":"399706"},{"alias":"NCRNA00200","entrezGeneId":"399706"},{"alias":"bA418C1.3","entrezGeneId":"399726"},{"alias":"C10orf114","entrezGeneId":"399726"},{"alias":"FKSG74","entrezGeneId":"399746"},{"alias":"BMS1LP1","entrezGeneId":"399761"},{"alias":"BMS1LP5","entrezGeneId":"399761"},{"alias":"BMS1P5","entrezGeneId":"399761"},{"alias":"PRKRIRP3","entrezGeneId":"399774"},{"alias":"MUSE","entrezGeneId":"399806"},{"alias":"bA318C4.1","entrezGeneId":"399814"},{"alias":"C10orf138","entrezGeneId":"399818"},{"alias":"Efm4","entrezGeneId":"399818"},{"alias":"METTL10","entrezGeneId":"399818"},{"alias":"OST716","entrezGeneId":"399857"},{"alias":"PCNXL3","entrezGeneId":"399909"},{"alias":"SPRYD5P","entrezGeneId":"399937"},{"alias":"SPRYD5P1","entrezGeneId":"399937"},{"alias":"TRIM49D","entrezGeneId":"399939"},{"alias":"TRIM49D1P","entrezGeneId":"399939"},{"alias":"TRIM49D2","entrezGeneId":"399939"},{"alias":"TRIM49D2P","entrezGeneId":"399939"},{"alias":"TRIM49DP","entrezGeneId":"399939"},{"alias":"LOH11CR1A","entrezGeneId":"399947"},{"alias":"NEURIM1","entrezGeneId":"399947"},{"alias":"C11orf92","entrezGeneId":"399948"},{"alias":"CASC12","entrezGeneId":"399948"},{"alias":"LOH11CR1F","entrezGeneId":"399948"},{"alias":"AGD1","entrezGeneId":"399959"},{"alias":"linc-NeD125","entrezGeneId":"399959"},{"alias":"lncRNA-N2","entrezGeneId":"399959"},{"alias":"C11orf38","entrezGeneId":"399967"},{"alias":"PATE-M","entrezGeneId":"399967"},{"alias":"UNQ3112","entrezGeneId":"399967"},{"alias":"PATE-B","entrezGeneId":"399968"},{"alias":"DCPS-AS1","entrezGeneId":"399972"},{"alias":"ST3GAL4-AS1","entrezGeneId":"399972"},{"alias":"CHET8","entrezGeneId":"399979"},{"alias":"bcm670","entrezGeneId":"400011"},{"alias":"SUPT16HP","entrezGeneId":"400011"},{"alias":"CCT1-1P","entrezGeneId":"400013"},{"alias":"TCP1L3","entrezGeneId":"400013"},{"alias":"RPL26_12_1262","entrezGeneId":"400055"},{"alias":"MKRN5","entrezGeneId":"400058"},{"alias":"MKRN9","entrezGeneId":"400058"},{"alias":"MKRNP6","entrezGeneId":"400058"},{"alias":"RNF65","entrezGeneId":"400058"},{"alias":"ZNF127L3","entrezGeneId":"400058"},{"alias":"RPS4P1","entrezGeneId":"400064"},{"alias":"RPS4X_6_1269","entrezGeneId":"400064"},{"alias":"C13orf36","entrezGeneId":"400120"},{"alias":"LINC01071","entrezGeneId":"400128"},{"alias":"XLOC_010588","entrezGeneId":"400128"},{"alias":"RPSA_19_1317","entrezGeneId":"400141"},{"alias":"RPS26","entrezGeneId":"400156"},{"alias":"RPS26L","entrezGeneId":"400156"},{"alias":"RPS26_24_1332","entrezGeneId":"400156"},{"alias":"C13orf35","entrezGeneId":"400165"},{"alias":"SMABLO1","entrezGeneId":"400165"},{"alias":"STELLAR","entrezGeneId":"400206"},{"alias":"C14orf26","entrezGeneId":"400208"},{"alias":"HGRG8","entrezGeneId":"400209"},{"alias":"NY-REN-2","entrezGeneId":"400209"},{"alias":"YTHDF2P","entrezGeneId":"400209"},{"alias":"UPF0639","entrezGeneId":"400224"},{"alias":"DICER1-AS","entrezGeneId":"400242"},{"alias":"C14orf77","entrezGeneId":"400258"},{"alias":"NRAC","entrezGeneId":"400258"},{"alias":"D15F37S3","entrezGeneId":"400322"},{"alias":"MN7","entrezGeneId":"400322"},{"alias":"HsT18216","entrezGeneId":"400385"},{"alias":"RPL5_13_1449","entrezGeneId":"400385"},{"alias":"RPL12_13_1452","entrezGeneId":"400389"},{"alias":"DNM1DN9","entrezGeneId":"400403"},{"alias":"DNM1DN9-1","entrezGeneId":"400403"},{"alias":"DNM1DN9@","entrezGeneId":"400403"},{"alias":"HCCS-1","entrezGeneId":"400410"},{"alias":"DNM1DN11-5","entrezGeneId":"400433"},{"alias":"DNM1DN11.5","entrezGeneId":"400433"},{"alias":"DNM1DN11@","entrezGeneId":"400433"},{"alias":"101F10.1","entrezGeneId":"400506"},{"alias":"C16orf88","entrezGeneId":"400506"},{"alias":"FAM191A","entrezGeneId":"400506"},{"alias":"TSG118","entrezGeneId":"400506"},{"alias":"NCRNA00169","entrezGeneId":"400508"},{"alias":"FOXF1-AS1","entrezGeneId":"400550"},{"alias":"FOXF1AS1","entrezGeneId":"400550"},{"alias":"lincFOXF1","entrezGeneId":"400550"},{"alias":"onco-lncRNA-21","entrezGeneId":"400550"},{"alias":"TCONS_00024240","entrezGeneId":"400550"},{"alias":"C16orf85","entrezGeneId":"400555"},{"alias":"LINC00859","entrezGeneId":"400555"},{"alias":"CK20","entrezGeneId":"400566"},{"alias":"LIAT1","entrezGeneId":"400566"},{"alias":"HSPC296","entrezGeneId":"400569"},{"alias":"LCAL5","entrezGeneId":"400619"},{"alias":"onco-lncRNA-12","entrezGeneId":"400619"},{"alias":"RPS3A_23_1608","entrezGeneId":"400652"},{"alias":"NSP4","entrezGeneId":"400668"},{"alias":"PRSSL1","entrezGeneId":"400668"},{"alias":"UNQ782","entrezGeneId":"400668"},{"alias":"Siglec-P16","entrezGeneId":"400709"},{"alias":"SIGLECP16","entrezGeneId":"400709"},{"alias":"C1orf130","entrezGeneId":"400746"},{"alias":"MP11","entrezGeneId":"400746"},{"alias":"LINC00083","entrezGeneId":"400797"},{"alias":"NCRNA00083","entrezGeneId":"400797"},{"alias":"GS1-122H1.2","entrezGeneId":"400799"},{"alias":"AE01","entrezGeneId":"400818"},{"alias":"BD-32","entrezGeneId":"400830"},{"alias":"DEFB-32","entrezGeneId":"400830"},{"alias":"DEFB32","entrezGeneId":"400830"},{"alias":"HEL-75","entrezGeneId":"400830"},{"alias":"KFLL827","entrezGeneId":"400830"},{"alias":"UNQ827","entrezGeneId":"400830"},{"alias":"C21orf24","entrezGeneId":"400866"},{"alias":"NCRNA00114","entrezGeneId":"400866"},{"alias":"BCR-2","entrezGeneId":"400892"},{"alias":"BCR2","entrezGeneId":"400892"},{"alias":"BCRL2","entrezGeneId":"400892"},{"alias":"C22orf16","entrezGeneId":"400916"},{"alias":"FTDALS2","entrezGeneId":"400916"},{"alias":"IMMD","entrezGeneId":"400916"},{"alias":"MIX17A","entrezGeneId":"400916"},{"alias":"N27C7-4","entrezGeneId":"400916"},{"alias":"SMAJ","entrezGeneId":"400916"},{"alias":"Z98749.2","entrezGeneId":"400927"},{"alias":"linc-Ppara","entrezGeneId":"400931"},{"alias":"FKSG52","entrezGeneId":"400949"},{"alias":"FKSG55","entrezGeneId":"400949"},{"alias":"FKSG56","entrezGeneId":"400949"},{"alias":"FKSG57","entrezGeneId":"400949"},{"alias":"FKSG60","entrezGeneId":"400949"},{"alias":"FKSG61","entrezGeneId":"400949"},{"alias":"FKSG64","entrezGeneId":"400949"},{"alias":"FKSG65","entrezGeneId":"400949"},{"alias":"FKSG66","entrezGeneId":"400949"},{"alias":"FKSG67","entrezGeneId":"400949"},{"alias":"FKSG68","entrezGeneId":"400949"},{"alias":"FKSG70","entrezGeneId":"400949"},{"alias":"UNQ6975","entrezGeneId":"400952"},{"alias":"RPS2_6_247","entrezGeneId":"400963"},{"alias":"RanBP2L2","entrezGeneId":"400966"},{"alias":"RGP1","entrezGeneId":"400966"},{"alias":"RGPD2","entrezGeneId":"400966"},{"alias":"OR7E102","entrezGeneId":"400984"},{"alias":"NF1L2","entrezGeneId":"401007"},{"alias":"DKFZp686O1327","entrezGeneId":"401014"},{"alias":"LINC00953","entrezGeneId":"401014"},{"alias":"RPS15_2_291","entrezGeneId":"401019"},{"alias":"HOXD-AS1","entrezGeneId":"401022"},{"alias":"Mdgt","entrezGeneId":"401022"},{"alias":"IIDS6411","entrezGeneId":"401027"},{"alias":"UNQ6411","entrezGeneId":"401027"},{"alias":"ASB-18","entrezGeneId":"401036"},{"alias":"C3orf72","entrezGeneId":"401089"},{"alias":"AVPC1948","entrezGeneId":"401105"},{"alias":"CHR4_55","entrezGeneId":"401115"},{"alias":"CHR415SYT","entrezGeneId":"401135"},{"alias":"SYT14L","entrezGeneId":"401135"},{"alias":"SYTDEP","entrezGeneId":"401135"},{"alias":"C4orf40","entrezGeneId":"401137"},{"alias":"AI3B","entrezGeneId":"401138"},{"alias":"UNQ689","entrezGeneId":"401138"},{"alias":"FAM190A","entrezGeneId":"401145"},{"alias":"ALN","entrezGeneId":"401152"},{"alias":"HCVFTP1","entrezGeneId":"401152"},{"alias":"R7BP","entrezGeneId":"401190"},{"alias":"RPS25_4_602","entrezGeneId":"401206"},{"alias":"YDR286C","entrezGeneId":"401207"},{"alias":"CANT","entrezGeneId":"401237"},{"alias":"LINC00340","entrezGeneId":"401237"},{"alias":"lnc-SOX4-1","entrezGeneId":"401237"},{"alias":"C6orf214","entrezGeneId":"401247"},{"alias":"NCRNA00243","entrezGeneId":"401247"},{"alias":"C6orf26","entrezGeneId":"401251"},{"alias":"NG23","entrezGeneId":"401251"},{"alias":"C6orf227","entrezGeneId":"401253"},{"alias":"NCRNA00336","entrezGeneId":"401253"},{"alias":"dJ431A14.3","entrezGeneId":"401258"},{"alias":"RASD3","entrezGeneId":"401258"},{"alias":"RASL13","entrezGeneId":"401258"},{"alias":"bA480N24.2","entrezGeneId":"401262"},{"alias":"TLP","entrezGeneId":"401262"},{"alias":"TLP-A","entrezGeneId":"401262"},{"alias":"bA345L23.2","entrezGeneId":"401265"},{"alias":"BKLHD6","entrezGeneId":"401265"},{"alias":"KBTBD1","entrezGeneId":"401265"},{"alias":"KLHL","entrezGeneId":"401265"},{"alias":"C6orf122","entrezGeneId":"401288"},{"alias":"dJ266L20.5","entrezGeneId":"401288"},{"alias":"NCRNA00242","entrezGeneId":"401288"},{"alias":"lnc-RI","entrezGeneId":"401296"},{"alias":"ZNF815","entrezGeneId":"401303"},{"alias":"RASA4P","entrezGeneId":"401331"},{"alias":"GS1-179L18.1","entrezGeneId":"401337"},{"alias":"GTF2IRD2P","entrezGeneId":"401375"},{"alias":"LINC00998","entrezGeneId":"401397"},{"alias":"RAB19B","entrezGeneId":"401409"},{"alias":"HSDJ0798C17","entrezGeneId":"401427"},{"alias":"OR2A21","entrezGeneId":"401427"},{"alias":"OR2A20","entrezGeneId":"401428"},{"alias":"USP17L1P","entrezGeneId":"401447"},{"alias":"RPS26_16_925","entrezGeneId":"401470"},{"alias":"GASL1","entrezGeneId":"401472"},{"alias":"SRRM1L","entrezGeneId":"401475"},{"alias":"SRRM1P","entrezGeneId":"401475"},{"alias":"linc-VLDLR","entrezGeneId":"401491"},{"alias":"lincRNA-VLDLR","entrezGeneId":"401491"},{"alias":"PTPLAD2","entrezGeneId":"401494"},{"alias":"bA613M10.3","entrezGeneId":"401505"},{"alias":"C9orf105","entrezGeneId":"401505"},{"alias":"Tom5","entrezGeneId":"401505"},{"alias":"FAM74A5","entrezGeneId":"401507"},{"alias":"FAM74A2","entrezGeneId":"401508"},{"alias":"RPSA_21_995","entrezGeneId":"401537"},{"alias":"OR7E113P","entrezGeneId":"401540"},{"alias":"OST721","entrezGeneId":"401540"},{"alias":"CENP-P","entrezGeneId":"401541"},{"alias":"bA470J20.2","entrezGeneId":"401546"},{"alias":"ATG24A","entrezGeneId":"401548"},{"alias":"HCCAT4","entrezGeneId":"401561"},{"alias":"HSD46","entrezGeneId":"401565"},{"alias":"CD99L1","entrezGeneId":"401577"},{"alias":"CXYorf12","entrezGeneId":"401577"},{"alias":"MIC2R","entrezGeneId":"401577"},{"alias":"NCRNA00103","entrezGeneId":"401577"},{"alias":"MCART6","entrezGeneId":"401612"},{"alias":"DKFZp686D0853","entrezGeneId":"401613"},{"alias":"LINC00890","entrezGeneId":"401613"},{"alias":"LINC00230B","entrezGeneId":"401629"},{"alias":"NCRNA00230B","entrezGeneId":"401629"},{"alias":"LINC00230A","entrezGeneId":"401630"},{"alias":"NCRNA00230A","entrezGeneId":"401630"},{"alias":"GOLGA2LY2","entrezGeneId":"401634"},{"alias":"GOLGA2P3","entrezGeneId":"401634"},{"alias":"hg523","entrezGeneId":"401637"},{"alias":"hg674","entrezGeneId":"401637"},{"alias":"OR1-51","entrezGeneId":"401637"},{"alias":"OR1-72","entrezGeneId":"401637"},{"alias":"OR1-73","entrezGeneId":"401637"},{"alias":"OR7E67P","entrezGeneId":"401637"},{"alias":"OR7E68P","entrezGeneId":"401637"},{"alias":"OR7E69P","entrezGeneId":"401637"},{"alias":"OR7E70P","entrezGeneId":"401637"},{"alias":"OR7E71P","entrezGeneId":"401637"},{"alias":"OR7E72P","entrezGeneId":"401637"},{"alias":"OR7E73P","entrezGeneId":"401637"},{"alias":"OR7E74P","entrezGeneId":"401637"},{"alias":"OR7E75P","entrezGeneId":"401637"},{"alias":"OR912-108","entrezGeneId":"401637"},{"alias":"OR912-109","entrezGeneId":"401637"},{"alias":"OR912-110","entrezGeneId":"401637"},{"alias":"OR912-46","entrezGeneId":"401637"},{"alias":"OR912-95","entrezGeneId":"401637"},{"alias":"LAMR1P10","entrezGeneId":"401638"},{"alias":"RPSA_22_1026","entrezGeneId":"401638"},{"alias":"RPL7A_22_1031","entrezGeneId":"401640"},{"alias":"bA451M19.3","entrezGeneId":"401647"},{"alias":"bA459F3.4","entrezGeneId":"401647"},{"alias":"C10orf132","entrezGeneId":"401647"},{"alias":"C10orf133","entrezGeneId":"401647"},{"alias":"OR51C2P","entrezGeneId":"401661"},{"alias":"OR51C3P","entrezGeneId":"401661"},{"alias":"OST734","entrezGeneId":"401661"},{"alias":"OR51H1P","entrezGeneId":"401663"},{"alias":"OR11-26","entrezGeneId":"401665"},{"alias":"HTPCRH02","entrezGeneId":"401687"},{"alias":"OR11-169","entrezGeneId":"401687"},{"alias":"OR5J1","entrezGeneId":"401687"},{"alias":"OR3-144","entrezGeneId":"401692"},{"alias":"OR5B14P","entrezGeneId":"401692"},{"alias":"OR5B5","entrezGeneId":"401692"},{"alias":"OR5B5P","entrezGeneId":"401692"},{"alias":"OR5B6","entrezGeneId":"401692"},{"alias":"OR5B6P","entrezGeneId":"401692"},{"alias":"OR5B7","entrezGeneId":"401692"},{"alias":"OR5B7P","entrezGeneId":"401692"},{"alias":"OR5B8","entrezGeneId":"401692"},{"alias":"OR5B8P","entrezGeneId":"401692"},{"alias":"OR5B9","entrezGeneId":"401692"},{"alias":"OR5B9P","entrezGeneId":"401692"},{"alias":"OR6-55","entrezGeneId":"401692"},{"alias":"OR6-57","entrezGeneId":"401692"},{"alias":"OR8-122","entrezGeneId":"401692"},{"alias":"OR8-123","entrezGeneId":"401692"},{"alias":"OR912-92","entrezGeneId":"401692"},{"alias":"GLULL3","entrezGeneId":"401708"},{"alias":"RPL6_15_1263","entrezGeneId":"401725"},{"alias":"RPS10_12_1442","entrezGeneId":"401817"},{"alias":"MKI67IPP1","entrezGeneId":"401825"},{"alias":"C16orf37","entrezGeneId":"401827"},{"alias":"MPFL","entrezGeneId":"401827"},{"alias":"RPL10A_7_1502","entrezGeneId":"401863"},{"alias":"RPL7A_28_1503","entrezGeneId":"401865"},{"alias":"RPS15_5_1616","entrezGeneId":"401895"},{"alias":"ZNF833","entrezGeneId":"401898"},{"alias":"OR10B2","entrezGeneId":"401903"},{"alias":"RPL23A_38_1631","entrezGeneId":"401904"},{"alias":"RPL29_22_1650","entrezGeneId":"401911"},{"alias":"NBPF23","entrezGeneId":"401967"},{"alias":"NBPF23P","entrezGeneId":"401967"},{"alias":"OR10J6","entrezGeneId":"401973"},{"alias":"RPS2_4_110","entrezGeneId":"401974"},{"alias":"RPS3A_2_114","entrezGeneId":"401975"},{"alias":"ALDRL1","entrezGeneId":"401982"},{"alias":"gm127","entrezGeneId":"401983"},{"alias":"OR1-43","entrezGeneId":"401992"},{"alias":"OR2T2P","entrezGeneId":"401992"},{"alias":"OR1-62","entrezGeneId":"401993"},{"alias":"OR5BU1","entrezGeneId":"401994"},{"alias":"OR5BU1P","entrezGeneId":"401994"},{"alias":"C20orf115","entrezGeneId":"402016"},{"alias":"dJ1187J4.2","entrezGeneId":"402016"},{"alias":"dJ1187J4.3","entrezGeneId":"402016"},{"alias":"HC/HCC","entrezGeneId":"402055"},{"alias":"SRR1L","entrezGeneId":"402055"},{"alias":"RPS17_8_1748","entrezGeneId":"402057"},{"alias":"RPS16_1_197","entrezGeneId":"402069"},{"alias":"MCEEP","entrezGeneId":"402077"},{"alias":"OST379","entrezGeneId":"402077"},{"alias":"RPL22P15","entrezGeneId":"402100"},{"alias":"RPL22P9","entrezGeneId":"402100"},{"alias":"RPL22_3_260","entrezGeneId":"402100"},{"alias":"RPL22_5_261","entrezGeneId":"402100"},{"alias":"RPL23_3_328","entrezGeneId":"402120"},{"alias":"OR3-9","entrezGeneId":"402135"},{"alias":"B3GAT3P","entrezGeneId":"402146"},{"alias":"PSIGLCAT-I","entrezGeneId":"402146"},{"alias":"bcm2489","entrezGeneId":"402149"},{"alias":"RPL28_2_436","entrezGeneId":"402149"},{"alias":"RPL8_1_438","entrezGeneId":"402150"},{"alias":"RPL21_17_477","entrezGeneId":"402176"},{"alias":"Psi1Rac1","entrezGeneId":"402183"},{"alias":"RPS12_4_508","entrezGeneId":"402184"},{"alias":"RPL5_6_536","entrezGeneId":"402193"},{"alias":"RPL13A_4_562","entrezGeneId":"402214"},{"alias":"YTHDF1P","entrezGeneId":"402220"},{"alias":"CCT5-3P","entrezGeneId":"402226"},{"alias":"OR7E137P","entrezGeneId":"402249"},{"alias":"OR7E59","entrezGeneId":"402249"},{"alias":"OST119","entrezGeneId":"402249"},{"alias":"RPS3A_7_600","entrezGeneId":"402287"},{"alias":"RPL13A_5_919","entrezGeneId":"402342"},{"alias":"bA100C15.3","entrezGeneId":"402381"},{"alias":"bHLHe80","entrezGeneId":"402381"},{"alias":"C9orf157","entrezGeneId":"402381"},{"alias":"NOHLH","entrezGeneId":"402381"},{"alias":"ODG5","entrezGeneId":"402381"},{"alias":"SPATA27","entrezGeneId":"402381"},{"alias":"TEB2","entrezGeneId":"402381"},{"alias":"XKR2","entrezGeneId":"402415"},{"alias":"XPLAC","entrezGeneId":"402415"},{"alias":"XRG2","entrezGeneId":"402415"},{"alias":"IPOA8","entrezGeneId":"402569"},{"alias":"UFSP","entrezGeneId":"402682"},{"alias":"RPL15_5_851","entrezGeneId":"402694"},{"alias":"RPL32_9_862","entrezGeneId":"402716"},{"alias":"DSPA3","entrezGeneId":"402778"},{"alias":"OR11-113","entrezGeneId":"403253"},{"alias":"OR5J6P","entrezGeneId":"403275"},{"alias":"bA6J24.6","entrezGeneId":"403313"},{"alias":"PDP1","entrezGeneId":"403313"},{"alias":"PPAPDC2","entrezGeneId":"403313"},{"alias":"PSDP","entrezGeneId":"403313"},{"alias":"C1orf169","entrezGeneId":"403314"},{"alias":"FAM92A3","entrezGeneId":"403315"},{"alias":"ZNF918","entrezGeneId":"403341"},{"alias":"TRIM26P","entrezGeneId":"404024"},{"alias":"TRIM26P1","entrezGeneId":"404024"},{"alias":"U92032.1","entrezGeneId":"404026"},{"alias":"BRAL2","entrezGeneId":"404037"},{"alias":"C4orf12","entrezGeneId":"404201"},{"alias":"FBI4","entrezGeneId":"404201"},{"alias":"NCRNA00247","entrezGeneId":"404201"},{"alias":"BUSI2","entrezGeneId":"404203"},{"alias":"UNQ844","entrezGeneId":"404203"},{"alias":"C10orf85","entrezGeneId":"404216"},{"alias":"CTXN","entrezGeneId":"404217"},{"alias":"dJ1013A10.5","entrezGeneId":"404220"},{"alias":"ZNF631","entrezGeneId":"404281"},{"alias":"COX8-1","entrezGeneId":"404544"},{"alias":"COX8B","entrezGeneId":"404544"},{"alias":"COX8H","entrezGeneId":"404544"},{"alias":"IIS","entrezGeneId":"404552"},{"alias":"NANOG2","entrezGeneId":"404635"},{"alias":"CT49","entrezGeneId":"404663"},{"alias":"TAG","entrezGeneId":"404663"},{"alias":"C19orf29-AS1","entrezGeneId":"404665"},{"alias":"C19orf29OS","entrezGeneId":"404665"},{"alias":"bA120J8.2","entrezGeneId":"404672"},{"alias":"C6orf175","entrezGeneId":"404672"},{"alias":"TFB5","entrezGeneId":"404672"},{"alias":"TFIIH","entrezGeneId":"404672"},{"alias":"TGF2H5","entrezGeneId":"404672"},{"alias":"TTD","entrezGeneId":"404672"},{"alias":"TTD-A","entrezGeneId":"404672"},{"alias":"TTD3","entrezGeneId":"404672"},{"alias":"TTDA","entrezGeneId":"404672"},{"alias":"OB4","entrezGeneId":"404683"},{"alias":"HSCRM2","entrezGeneId":"404719"},{"alias":"MASK-BP3","entrezGeneId":"404734"},{"alias":"MASK-BP3ARF","entrezGeneId":"404734"},{"alias":"AAA1","entrezGeneId":"404744"},{"alias":"FABP5L4","entrezGeneId":"404766"},{"alias":"C9orf36B","entrezGeneId":"404770"},{"alias":"FAM75B","entrezGeneId":"404770"},{"alias":"SPATA31B1","entrezGeneId":"404770"},{"alias":"A26C2","entrezGeneId":"404785"},{"alias":"ACTBL1","entrezGeneId":"404785"},{"alias":"CT104.4","entrezGeneId":"404785"},{"alias":"POTE-14","entrezGeneId":"404785"},{"alias":"POTE14","entrezGeneId":"404785"},{"alias":"POTE14alpha","entrezGeneId":"404785"},{"alias":"POTE22","entrezGeneId":"404785"},{"alias":"SIMNIPHOM","entrezGeneId":"405753"},{"alias":"TDH5","entrezGeneId":"405753"},{"alias":"envFRD","entrezGeneId":"405754"},{"alias":"ERVFRDE1","entrezGeneId":"405754"},{"alias":"GLLL6191","entrezGeneId":"405754"},{"alias":"HERV-FRD","entrezGeneId":"405754"},{"alias":"HERV-W/FRD","entrezGeneId":"405754"},{"alias":"UNQ6191","entrezGeneId":"405754"},{"alias":"LAP","entrezGeneId":"406237"},{"alias":"PDLA","entrezGeneId":"406237"},{"alias":"FXYD8","entrezGeneId":"406875"},{"alias":"let-7a-1","entrezGeneId":"406881"},{"alias":"LET7A1","entrezGeneId":"406881"},{"alias":"MIRNLET7A1","entrezGeneId":"406881"},{"alias":"let-7a-2","entrezGeneId":"406882"},{"alias":"LET7A2","entrezGeneId":"406882"},{"alias":"MIRNLET7A2","entrezGeneId":"406882"},{"alias":"let-7a-3","entrezGeneId":"406883"},{"alias":"LET7A3","entrezGeneId":"406883"},{"alias":"MIRNLET7A3","entrezGeneId":"406883"},{"alias":"hsa-let-7b","entrezGeneId":"406884"},{"alias":"let-7b","entrezGeneId":"406884"},{"alias":"LET7B","entrezGeneId":"406884"},{"alias":"MIRNLET7B","entrezGeneId":"406884"},{"alias":"hsa-let-7c","entrezGeneId":"406885"},{"alias":"let-7c","entrezGeneId":"406885"},{"alias":"LET7C","entrezGeneId":"406885"},{"alias":"MIRNLET7C","entrezGeneId":"406885"},{"alias":"hsa-let-7d","entrezGeneId":"406886"},{"alias":"let-7d","entrezGeneId":"406886"},{"alias":"LET7D","entrezGeneId":"406886"},{"alias":"MIRNLET7D","entrezGeneId":"406886"},{"alias":"hsa-let-7e","entrezGeneId":"406887"},{"alias":"let-7e","entrezGeneId":"406887"},{"alias":"LET7E","entrezGeneId":"406887"},{"alias":"MIRNLET7E","entrezGeneId":"406887"},{"alias":"let-7f-1","entrezGeneId":"406888"},{"alias":"LET7F1","entrezGeneId":"406888"},{"alias":"MIRNLET7F1","entrezGeneId":"406888"},{"alias":"let-7f-2","entrezGeneId":"406889"},{"alias":"LET7F2","entrezGeneId":"406889"},{"alias":"MIRNLET7F2","entrezGeneId":"406889"},{"alias":"hsa-let-7g","entrezGeneId":"406890"},{"alias":"let-7g","entrezGeneId":"406890"},{"alias":"LET7G","entrezGeneId":"406890"},{"alias":"MIRNLET7G","entrezGeneId":"406890"},{"alias":"hsa-let-7i","entrezGeneId":"406891"},{"alias":"let-7i","entrezGeneId":"406891"},{"alias":"LET7I","entrezGeneId":"406891"},{"alias":"MIRNLET7I","entrezGeneId":"406891"},{"alias":"miR-100","entrezGeneId":"406892"},{"alias":"MIRN100","entrezGeneId":"406892"},{"alias":"mir-101-1","entrezGeneId":"406893"},{"alias":"MIRN101-1","entrezGeneId":"406893"},{"alias":"mir-101-2","entrezGeneId":"406894"},{"alias":"MIRN101-2","entrezGeneId":"406894"},{"alias":"mir-103a-1","entrezGeneId":"406895"},{"alias":"MIR103-1","entrezGeneId":"406895"},{"alias":"MIRN103-1","entrezGeneId":"406895"},{"alias":"mir-103a-2","entrezGeneId":"406896"},{"alias":"MIR103-2","entrezGeneId":"406896"},{"alias":"MIRN103-2","entrezGeneId":"406896"},{"alias":"mir-105-1","entrezGeneId":"406897"},{"alias":"MIRN105-1","entrezGeneId":"406897"},{"alias":"mir-105-2","entrezGeneId":"406898"},{"alias":"MIRN105-2","entrezGeneId":"406898"},{"alias":"mir-106","entrezGeneId":"406899"},{"alias":"mir-106a","entrezGeneId":"406899"},{"alias":"MIRN106A","entrezGeneId":"406899"},{"alias":"mir-106b","entrezGeneId":"406900"},{"alias":"MIRN106B","entrezGeneId":"406900"},{"alias":"miR-107","entrezGeneId":"406901"},{"alias":"MIRN107","entrezGeneId":"406901"},{"alias":"hsa-mir-10a","entrezGeneId":"406902"},{"alias":"mir-10a","entrezGeneId":"406902"},{"alias":"MIRN10A","entrezGeneId":"406902"},{"alias":"miRNA10A","entrezGeneId":"406902"},{"alias":"hsa-mir-10b","entrezGeneId":"406903"},{"alias":"mir-10b","entrezGeneId":"406903"},{"alias":"MIRN10B","entrezGeneId":"406903"},{"alias":"miRNA10B","entrezGeneId":"406903"},{"alias":"hsa-mir-1-1","entrezGeneId":"406904"},{"alias":"mir-1-1","entrezGeneId":"406904"},{"alias":"MIRN1-1","entrezGeneId":"406904"},{"alias":"miRNA1-1","entrezGeneId":"406904"},{"alias":"hsa-mir-1-2","entrezGeneId":"406905"},{"alias":"mir-1-2","entrezGeneId":"406905"},{"alias":"MIRN1-2","entrezGeneId":"406905"},{"alias":"miRNA1-2","entrezGeneId":"406905"},{"alias":"hsa-mir-122","entrezGeneId":"406906"},{"alias":"mir-122","entrezGeneId":"406906"},{"alias":"MIR122A","entrezGeneId":"406906"},{"alias":"MIRN122","entrezGeneId":"406906"},{"alias":"MIRN122A","entrezGeneId":"406906"},{"alias":"miRNA122","entrezGeneId":"406906"},{"alias":"miRNA122A","entrezGeneId":"406906"},{"alias":"mir-124-1","entrezGeneId":"406907"},{"alias":"MIR124A","entrezGeneId":"406907"},{"alias":"MIR124A1","entrezGeneId":"406907"},{"alias":"MIRN124-1","entrezGeneId":"406907"},{"alias":"MIRN124A1","entrezGeneId":"406907"},{"alias":"mir-124-2","entrezGeneId":"406908"},{"alias":"MIRN124-2","entrezGeneId":"406908"},{"alias":"MIRN124A2","entrezGeneId":"406908"},{"alias":"mir-124-3","entrezGeneId":"406909"},{"alias":"MIRN124-3","entrezGeneId":"406909"},{"alias":"MIRN124A3","entrezGeneId":"406909"},{"alias":"mir-125a","entrezGeneId":"406910"},{"alias":"MIRN125A","entrezGeneId":"406910"},{"alias":"miRNA125A","entrezGeneId":"406910"},{"alias":"mir-125b-1","entrezGeneId":"406911"},{"alias":"MIRN125B1","entrezGeneId":"406911"},{"alias":"mir-125b-2","entrezGeneId":"406912"},{"alias":"MIRN125B2","entrezGeneId":"406912"},{"alias":"mir-126","entrezGeneId":"406913"},{"alias":"MIRN126","entrezGeneId":"406913"},{"alias":"miRNA126","entrezGeneId":"406913"},{"alias":"mir-127","entrezGeneId":"406914"},{"alias":"MIRN127","entrezGeneId":"406914"},{"alias":"miRNA127","entrezGeneId":"406914"},{"alias":"mir-128-1","entrezGeneId":"406915"},{"alias":"MIR128A","entrezGeneId":"406915"},{"alias":"MIRN128-1","entrezGeneId":"406915"},{"alias":"MIRN128A","entrezGeneId":"406915"},{"alias":"mir-128-2","entrezGeneId":"406916"},{"alias":"mir-128b","entrezGeneId":"406916"},{"alias":"MIR128B","entrezGeneId":"406916"},{"alias":"MIRN128-2","entrezGeneId":"406916"},{"alias":"MIRN128B","entrezGeneId":"406916"},{"alias":"mir-129-1","entrezGeneId":"406917"},{"alias":"MIR-129b","entrezGeneId":"406917"},{"alias":"MIRN129-1","entrezGeneId":"406917"},{"alias":"mir-129-2","entrezGeneId":"406918"},{"alias":"MIR-129b","entrezGeneId":"406918"},{"alias":"MIRN129-2","entrezGeneId":"406918"},{"alias":"mir-130a","entrezGeneId":"406919"},{"alias":"MIRN130A","entrezGeneId":"406919"},{"alias":"miRNA130A","entrezGeneId":"406919"},{"alias":"mir-130b","entrezGeneId":"406920"},{"alias":"MIRN130B","entrezGeneId":"406920"},{"alias":"mir-132","entrezGeneId":"406921"},{"alias":"MIRN132","entrezGeneId":"406921"},{"alias":"miRNA132","entrezGeneId":"406921"},{"alias":"mir-133a-1","entrezGeneId":"406922"},{"alias":"MIRN133A1","entrezGeneId":"406922"},{"alias":"mir-133a-2","entrezGeneId":"406923"},{"alias":"MIRN133A2","entrezGeneId":"406923"},{"alias":"mir-134","entrezGeneId":"406924"},{"alias":"MIRN134","entrezGeneId":"406924"},{"alias":"mir-135a-1","entrezGeneId":"406925"},{"alias":"MIRN135-1","entrezGeneId":"406925"},{"alias":"MIRN135A1","entrezGeneId":"406925"},{"alias":"mir-135a-2","entrezGeneId":"406926"},{"alias":"MIRN135-2","entrezGeneId":"406926"},{"alias":"MIRN135A2","entrezGeneId":"406926"},{"alias":"mir-136","entrezGeneId":"406927"},{"alias":"MIRN136","entrezGeneId":"406927"},{"alias":"miRNA136","entrezGeneId":"406927"},{"alias":"miR-137","entrezGeneId":"406928"},{"alias":"MIRN137","entrezGeneId":"406928"},{"alias":"mir-138-1","entrezGeneId":"406929"},{"alias":"MIRN138-1","entrezGeneId":"406929"},{"alias":"mir-138-2","entrezGeneId":"406930"},{"alias":"MIRN138-2","entrezGeneId":"406930"},{"alias":"mir-139","entrezGeneId":"406931"},{"alias":"MIR139-3p","entrezGeneId":"406931"},{"alias":"MIRN139","entrezGeneId":"406931"},{"alias":"mir-140","entrezGeneId":"406932"},{"alias":"MIRN140","entrezGeneId":"406932"},{"alias":"miRNA140","entrezGeneId":"406932"},{"alias":"mir-141","entrezGeneId":"406933"},{"alias":"MIRN141","entrezGeneId":"406933"},{"alias":"mir-142","entrezGeneId":"406934"},{"alias":"MIRN142","entrezGeneId":"406934"},{"alias":"mir-143","entrezGeneId":"406935"},{"alias":"MIRN143","entrezGeneId":"406935"},{"alias":"mir-144","entrezGeneId":"406936"},{"alias":"MIRN144","entrezGeneId":"406936"},{"alias":"miR-145","entrezGeneId":"406937"},{"alias":"MIRN145","entrezGeneId":"406937"},{"alias":"miRNA145","entrezGeneId":"406937"},{"alias":"miR-146a","entrezGeneId":"406938"},{"alias":"MIRN146","entrezGeneId":"406938"},{"alias":"MIRN146A","entrezGeneId":"406938"},{"alias":"miRNA146A","entrezGeneId":"406938"},{"alias":"hsa-mir-147a","entrezGeneId":"406939"},{"alias":"MIR147","entrezGeneId":"406939"},{"alias":"MIRN147","entrezGeneId":"406939"},{"alias":"hsa-mir-148","entrezGeneId":"406940"},{"alias":"mir-148a","entrezGeneId":"406940"},{"alias":"MIRN148","entrezGeneId":"406940"},{"alias":"MIRN148A","entrezGeneId":"406940"},{"alias":"mir-149","entrezGeneId":"406941"},{"alias":"MIRN149","entrezGeneId":"406941"},{"alias":"mir-150","entrezGeneId":"406942"},{"alias":"MIRN150","entrezGeneId":"406942"},{"alias":"miRNA150","entrezGeneId":"406942"},{"alias":"mir-152","entrezGeneId":"406943"},{"alias":"MIRN152","entrezGeneId":"406943"},{"alias":"mir-153-1","entrezGeneId":"406944"},{"alias":"MIRN153-1","entrezGeneId":"406944"},{"alias":"mir-153-2","entrezGeneId":"406945"},{"alias":"MIRN153-2","entrezGeneId":"406945"},{"alias":"mir-154","entrezGeneId":"406946"},{"alias":"MIRN154","entrezGeneId":"406946"},{"alias":"mir-155","entrezGeneId":"406947"},{"alias":"MIRN155","entrezGeneId":"406947"},{"alias":"miRNA155","entrezGeneId":"406947"},{"alias":"hsa-mir-15a","entrezGeneId":"406948"},{"alias":"mir-15a","entrezGeneId":"406948"},{"alias":"MIRN15A","entrezGeneId":"406948"},{"alias":"miRNA15A","entrezGeneId":"406948"},{"alias":"hsa-mir-15b","entrezGeneId":"406949"},{"alias":"miR-15b","entrezGeneId":"406949"},{"alias":"MIRN15B","entrezGeneId":"406949"},{"alias":"mir-16-1","entrezGeneId":"406950"},{"alias":"MIRN16-1","entrezGeneId":"406950"},{"alias":"miRNA16-1","entrezGeneId":"406950"},{"alias":"mir-16-2","entrezGeneId":"406951"},{"alias":"mir-16-3","entrezGeneId":"406951"},{"alias":"MIRN16-2","entrezGeneId":"406951"},{"alias":"hsa-mir-17","entrezGeneId":"406952"},{"alias":"miR-17","entrezGeneId":"406952"},{"alias":"miR17-3p","entrezGeneId":"406952"},{"alias":"MIR17-5p","entrezGeneId":"406952"},{"alias":"MIR91","entrezGeneId":"406952"},{"alias":"MIRN17","entrezGeneId":"406952"},{"alias":"MIRN91","entrezGeneId":"406952"},{"alias":"miRNA17","entrezGeneId":"406952"},{"alias":"miRNA91","entrezGeneId":"406952"},{"alias":"C13orf25","entrezGeneId":"406953"},{"alias":"hsa-mir-18","entrezGeneId":"406953"},{"alias":"hsa-mir-18a","entrezGeneId":"406953"},{"alias":"miR-18","entrezGeneId":"406953"},{"alias":"mir-18a","entrezGeneId":"406953"},{"alias":"MIR17HG","entrezGeneId":"406953"},{"alias":"MIR18","entrezGeneId":"406953"},{"alias":"MIRH1","entrezGeneId":"406953"},{"alias":"MIRHG1","entrezGeneId":"406953"},{"alias":"MIRN18","entrezGeneId":"406953"},{"alias":"MIRN18A","entrezGeneId":"406953"},{"alias":"miRNA18A","entrezGeneId":"406953"},{"alias":"hsa-mir-181a-2","entrezGeneId":"406954"},{"alias":"mir-181a-2","entrezGeneId":"406954"},{"alias":"MIRN181A","entrezGeneId":"406954"},{"alias":"MIRN181A2","entrezGeneId":"406954"},{"alias":"mir-181b-1","entrezGeneId":"406955"},{"alias":"MIRN181B1","entrezGeneId":"406955"},{"alias":"mir-181b-2","entrezGeneId":"406956"},{"alias":"MIRN181B2","entrezGeneId":"406956"},{"alias":"mir-181c","entrezGeneId":"406957"},{"alias":"MIRN181C","entrezGeneId":"406957"},{"alias":"mir-182","entrezGeneId":"406958"},{"alias":"MIRN182","entrezGeneId":"406958"},{"alias":"miRNA182","entrezGeneId":"406958"},{"alias":"miR-183","entrezGeneId":"406959"},{"alias":"MIRN183","entrezGeneId":"406959"},{"alias":"miRNA183","entrezGeneId":"406959"},{"alias":"EDICT","entrezGeneId":"406960"},{"alias":"miR-184","entrezGeneId":"406960"},{"alias":"MIRN184","entrezGeneId":"406960"},{"alias":"miR-185","entrezGeneId":"406961"},{"alias":"MIRN185","entrezGeneId":"406961"},{"alias":"miR-186","entrezGeneId":"406962"},{"alias":"MIRN186","entrezGeneId":"406962"},{"alias":"miR-187","entrezGeneId":"406963"},{"alias":"MIRN187","entrezGeneId":"406963"},{"alias":"miRNA187","entrezGeneId":"406963"},{"alias":"miR-188","entrezGeneId":"406964"},{"alias":"MIRN188","entrezGeneId":"406964"},{"alias":"hsa-mir-190a","entrezGeneId":"406965"},{"alias":"miR-190","entrezGeneId":"406965"},{"alias":"mir-190a","entrezGeneId":"406965"},{"alias":"MIR190","entrezGeneId":"406965"},{"alias":"MIRN190","entrezGeneId":"406965"},{"alias":"miR-191","entrezGeneId":"406966"},{"alias":"MIRN191","entrezGeneId":"406966"},{"alias":"miR-192","entrezGeneId":"406967"},{"alias":"MIRN192","entrezGeneId":"406967"},{"alias":"miRNA192","entrezGeneId":"406967"},{"alias":"mir-193a","entrezGeneId":"406968"},{"alias":"MIRN193","entrezGeneId":"406968"},{"alias":"MIRN193A","entrezGeneId":"406968"},{"alias":"mir-194-1","entrezGeneId":"406969"},{"alias":"MIRN194-1","entrezGeneId":"406969"},{"alias":"mir-194-2","entrezGeneId":"406970"},{"alias":"MIRN194-2","entrezGeneId":"406970"},{"alias":"mir-195","entrezGeneId":"406971"},{"alias":"MIRN195","entrezGeneId":"406971"},{"alias":"miRNA195","entrezGeneId":"406971"},{"alias":"mir-196a-1","entrezGeneId":"406972"},{"alias":"MIRN196-1","entrezGeneId":"406972"},{"alias":"MIRN196A1","entrezGeneId":"406972"},{"alias":"mir-196a-2","entrezGeneId":"406973"},{"alias":"MIRN196-2","entrezGeneId":"406973"},{"alias":"MIRN196A2","entrezGeneId":"406973"},{"alias":"miR-197","entrezGeneId":"406974"},{"alias":"MIRN197","entrezGeneId":"406974"},{"alias":"miRNA197","entrezGeneId":"406974"},{"alias":"miR-198","entrezGeneId":"406975"},{"alias":"MIRN198","entrezGeneId":"406975"},{"alias":"MIR-199-s","entrezGeneId":"406976"},{"alias":"mir-199a-1","entrezGeneId":"406976"},{"alias":"MIRN199A1","entrezGeneId":"406976"},{"alias":"MIR-199-s","entrezGeneId":"406977"},{"alias":"mir-199a-2","entrezGeneId":"406977"},{"alias":"MIRN199A2","entrezGeneId":"406977"},{"alias":"mir-199b","entrezGeneId":"406978"},{"alias":"MIRN199B","entrezGeneId":"406978"},{"alias":"C13orf25","entrezGeneId":"406979"},{"alias":"hsa-mir-19a","entrezGeneId":"406979"},{"alias":"miR-19a","entrezGeneId":"406979"},{"alias":"MIR17HG","entrezGeneId":"406979"},{"alias":"MIRH1","entrezGeneId":"406979"},{"alias":"MIRHG1","entrezGeneId":"406979"},{"alias":"MIRN19A","entrezGeneId":"406979"},{"alias":"miRNA19A","entrezGeneId":"406979"},{"alias":"C13orf25","entrezGeneId":"406980"},{"alias":"miR-19b-1","entrezGeneId":"406980"},{"alias":"MIR17HG","entrezGeneId":"406980"},{"alias":"MIR19B","entrezGeneId":"406980"},{"alias":"MIRH1","entrezGeneId":"406980"},{"alias":"MIRHG1","entrezGeneId":"406980"},{"alias":"MIRN19B1","entrezGeneId":"406980"},{"alias":"miRNA19B1","entrezGeneId":"406980"},{"alias":"miR-19b-2","entrezGeneId":"406981"},{"alias":"MIRN19B2","entrezGeneId":"406981"},{"alias":"C13orf25","entrezGeneId":"406982"},{"alias":"hsa-mir-20","entrezGeneId":"406982"},{"alias":"hsa-mir-20a","entrezGeneId":"406982"},{"alias":"miR-20","entrezGeneId":"406982"},{"alias":"mir-20a","entrezGeneId":"406982"},{"alias":"MIR17HG","entrezGeneId":"406982"},{"alias":"MIR20","entrezGeneId":"406982"},{"alias":"MIRH1","entrezGeneId":"406982"},{"alias":"MIRHG1","entrezGeneId":"406982"},{"alias":"MIRN20","entrezGeneId":"406982"},{"alias":"MIRN20A","entrezGeneId":"406982"},{"alias":"miRNA20A","entrezGeneId":"406982"},{"alias":"mir-200a","entrezGeneId":"406983"},{"alias":"MIRN200A","entrezGeneId":"406983"},{"alias":"mir-200b","entrezGeneId":"406984"},{"alias":"MIRN200B","entrezGeneId":"406984"},{"alias":"mir-200c","entrezGeneId":"406985"},{"alias":"MIRN200C","entrezGeneId":"406985"},{"alias":"hsa-mir-203a","entrezGeneId":"406986"},{"alias":"miR-203","entrezGeneId":"406986"},{"alias":"mir-203a","entrezGeneId":"406986"},{"alias":"MIR203","entrezGeneId":"406986"},{"alias":"MIRN203","entrezGeneId":"406986"},{"alias":"miRNA203","entrezGeneId":"406986"},{"alias":"mir-204","entrezGeneId":"406987"},{"alias":"MIRN204","entrezGeneId":"406987"},{"alias":"miRNA204","entrezGeneId":"406987"},{"alias":"RDICC","entrezGeneId":"406987"},{"alias":"mir-205","entrezGeneId":"406988"},{"alias":"MIRN205","entrezGeneId":"406988"},{"alias":"mir-206","entrezGeneId":"406989"},{"alias":"MIRN206","entrezGeneId":"406989"},{"alias":"miRNA206","entrezGeneId":"406989"},{"alias":"hsa-mir-208a","entrezGeneId":"406990"},{"alias":"MIR208","entrezGeneId":"406990"},{"alias":"MIRN208","entrezGeneId":"406990"},{"alias":"MIRN208A","entrezGeneId":"406990"},{"alias":"miRNA208","entrezGeneId":"406990"},{"alias":"hsa-mir-21","entrezGeneId":"406991"},{"alias":"miR-21","entrezGeneId":"406991"},{"alias":"MIRN21","entrezGeneId":"406991"},{"alias":"miRNA21","entrezGeneId":"406991"},{"alias":"mir-210","entrezGeneId":"406992"},{"alias":"MIRN210","entrezGeneId":"406992"},{"alias":"mir-211","entrezGeneId":"406993"},{"alias":"MIRN211","entrezGeneId":"406993"},{"alias":"mir-212","entrezGeneId":"406994"},{"alias":"MIRN212","entrezGeneId":"406994"},{"alias":"hsa-mir-181a-1","entrezGeneId":"406995"},{"alias":"mir-181a-1","entrezGeneId":"406995"},{"alias":"mir-213","entrezGeneId":"406995"},{"alias":"MIR213","entrezGeneId":"406995"},{"alias":"MIRN181A1","entrezGeneId":"406995"},{"alias":"MIRN213","entrezGeneId":"406995"},{"alias":"mir-214","entrezGeneId":"406996"},{"alias":"MIRN214","entrezGeneId":"406996"},{"alias":"miRNA214","entrezGeneId":"406996"},{"alias":"mir-215","entrezGeneId":"406997"},{"alias":"MIRN215","entrezGeneId":"406997"},{"alias":"miRNA215","entrezGeneId":"406997"},{"alias":"mir-216","entrezGeneId":"406998"},{"alias":"mir-216a","entrezGeneId":"406998"},{"alias":"MIR216","entrezGeneId":"406998"},{"alias":"MIRN216","entrezGeneId":"406998"},{"alias":"MIRN216A","entrezGeneId":"406998"},{"alias":"miRNA216","entrezGeneId":"406998"},{"alias":"mir-217","entrezGeneId":"406999"},{"alias":"MIRN217","entrezGeneId":"406999"},{"alias":"mir-218-1","entrezGeneId":"407000"},{"alias":"MIRN218-1","entrezGeneId":"407000"},{"alias":"mir-218-2","entrezGeneId":"407001"},{"alias":"MIRN218-2","entrezGeneId":"407001"},{"alias":"hsa-mir-219a-1","entrezGeneId":"407002"},{"alias":"mir-219","entrezGeneId":"407002"},{"alias":"mir-219a-1","entrezGeneId":"407002"},{"alias":"MIR219-1","entrezGeneId":"407002"},{"alias":"MIRN219-1","entrezGeneId":"407002"},{"alias":"MRI219-1","entrezGeneId":"407002"},{"alias":"hsa-mir-219a-2","entrezGeneId":"407003"},{"alias":"mir-219a-2","entrezGeneId":"407003"},{"alias":"MIR219-2","entrezGeneId":"407003"},{"alias":"MIRN219-2","entrezGeneId":"407003"},{"alias":"hsa-mir-22","entrezGeneId":"407004"},{"alias":"miR-22","entrezGeneId":"407004"},{"alias":"MIRN22","entrezGeneId":"407004"},{"alias":"mir-221","entrezGeneId":"407006"},{"alias":"MIRN221","entrezGeneId":"407006"},{"alias":"miRNA221","entrezGeneId":"407006"},{"alias":"mir-222","entrezGeneId":"407007"},{"alias":"MIRN222","entrezGeneId":"407007"},{"alias":"miRNA222","entrezGeneId":"407007"},{"alias":"mir-223","entrezGeneId":"407008"},{"alias":"MIRN223","entrezGeneId":"407008"},{"alias":"miRNA223","entrezGeneId":"407008"},{"alias":"MIRN224","entrezGeneId":"407009"},{"alias":"miRNA224","entrezGeneId":"407009"},{"alias":"hsa-mir-23a","entrezGeneId":"407010"},{"alias":"mir-23a","entrezGeneId":"407010"},{"alias":"MIRN23A","entrezGeneId":"407010"},{"alias":"miRNA23A","entrezGeneId":"407010"},{"alias":"hsa-mir-23b","entrezGeneId":"407011"},{"alias":"mir-23b","entrezGeneId":"407011"},{"alias":"MIRN23B","entrezGeneId":"407011"},{"alias":"miRNA23B","entrezGeneId":"407011"},{"alias":"miR-24-1","entrezGeneId":"407012"},{"alias":"MIR189","entrezGeneId":"407012"},{"alias":"MIRN24-1","entrezGeneId":"407012"},{"alias":"miRNA24-1","entrezGeneId":"407012"},{"alias":"miR-24-2","entrezGeneId":"407013"},{"alias":"MIRN24-2","entrezGeneId":"407013"},{"alias":"miRNA24-2","entrezGeneId":"407013"},{"alias":"hsa-mir-25","entrezGeneId":"407014"},{"alias":"miR-25","entrezGeneId":"407014"},{"alias":"MIRN25","entrezGeneId":"407014"},{"alias":"mir-26a-1","entrezGeneId":"407015"},{"alias":"MIR26A","entrezGeneId":"407015"},{"alias":"MIRN26A1","entrezGeneId":"407015"},{"alias":"mir-26a-2","entrezGeneId":"407016"},{"alias":"MIRN26A2","entrezGeneId":"407016"},{"alias":"hsa-mir-26b","entrezGeneId":"407017"},{"alias":"miR-26b","entrezGeneId":"407017"},{"alias":"MIRN26B","entrezGeneId":"407017"},{"alias":"mir-27a","entrezGeneId":"407018"},{"alias":"MIR27","entrezGeneId":"407018"},{"alias":"MIRN27A","entrezGeneId":"407018"},{"alias":"MIR-27b","entrezGeneId":"407019"},{"alias":"MIRN27B","entrezGeneId":"407019"},{"alias":"miRNA27B","entrezGeneId":"407019"},{"alias":"hsa-mir-28","entrezGeneId":"407020"},{"alias":"miR-28","entrezGeneId":"407020"},{"alias":"MIRN28","entrezGeneId":"407020"},{"alias":"hsa-mir-29","entrezGeneId":"407021"},{"alias":"hsa-mir-29a","entrezGeneId":"407021"},{"alias":"mir-29a","entrezGeneId":"407021"},{"alias":"MIRN29","entrezGeneId":"407021"},{"alias":"MIRN29A","entrezGeneId":"407021"},{"alias":"miRNA29A","entrezGeneId":"407021"},{"alias":"mir-296","entrezGeneId":"407022"},{"alias":"MIRN296","entrezGeneId":"407022"},{"alias":"miRNA296","entrezGeneId":"407022"},{"alias":"mir-299","entrezGeneId":"407023"},{"alias":"MIRN299","entrezGeneId":"407023"},{"alias":"miR-29b","entrezGeneId":"407024"},{"alias":"mir-29b-1","entrezGeneId":"407024"},{"alias":"MIRN29B1","entrezGeneId":"407024"},{"alias":"miRNA29B1","entrezGeneId":"407024"},{"alias":"MIRN29B2","entrezGeneId":"407025"},{"alias":"mir-29c","entrezGeneId":"407026"},{"alias":"MIRN29C","entrezGeneId":"407026"},{"alias":"miRNA29C","entrezGeneId":"407026"},{"alias":"mir-301a","entrezGeneId":"407027"},{"alias":"MIR301","entrezGeneId":"407027"},{"alias":"MIRN301","entrezGeneId":"407027"},{"alias":"MIRN301A","entrezGeneId":"407027"},{"alias":"hsa-mir-302","entrezGeneId":"407028"},{"alias":"mir-302a","entrezGeneId":"407028"},{"alias":"MIRN302","entrezGeneId":"407028"},{"alias":"MIRN302A","entrezGeneId":"407028"},{"alias":"mir-30a","entrezGeneId":"407029"},{"alias":"MIRN30A","entrezGeneId":"407029"},{"alias":"mir-30b","entrezGeneId":"407030"},{"alias":"MIRN30B","entrezGeneId":"407030"},{"alias":"mir-30c-1","entrezGeneId":"407031"},{"alias":"MIRN30C1","entrezGeneId":"407031"},{"alias":"mir-30c-2","entrezGeneId":"407032"},{"alias":"MIRN30C2","entrezGeneId":"407032"},{"alias":"mir-30d","entrezGeneId":"407033"},{"alias":"MIRN30D","entrezGeneId":"407033"},{"alias":"mir-30e","entrezGeneId":"407034"},{"alias":"MIRN30E","entrezGeneId":"407034"},{"alias":"hsa-mir-31","entrezGeneId":"407035"},{"alias":"miR-31","entrezGeneId":"407035"},{"alias":"MIRN31","entrezGeneId":"407035"},{"alias":"hsa-mir-32","entrezGeneId":"407036"},{"alias":"miR-32","entrezGeneId":"407036"},{"alias":"MIRN32","entrezGeneId":"407036"},{"alias":"miRNA32","entrezGeneId":"407036"},{"alias":"hsa-mir-320a","entrezGeneId":"407037"},{"alias":"mir-320a","entrezGeneId":"407037"},{"alias":"MIRN320","entrezGeneId":"407037"},{"alias":"MIRN320A","entrezGeneId":"407037"},{"alias":"hsa-mir-33","entrezGeneId":"407039"},{"alias":"hsa-mir-33a","entrezGeneId":"407039"},{"alias":"miR-33","entrezGeneId":"407039"},{"alias":"mir-33a","entrezGeneId":"407039"},{"alias":"MIR33","entrezGeneId":"407039"},{"alias":"MIRN33","entrezGeneId":"407039"},{"alias":"MIRN33A","entrezGeneId":"407039"},{"alias":"miRNA33A","entrezGeneId":"407039"},{"alias":"mir-34","entrezGeneId":"407040"},{"alias":"mir-34a","entrezGeneId":"407040"},{"alias":"MIRN34A","entrezGeneId":"407040"},{"alias":"miRNA34A","entrezGeneId":"407040"},{"alias":"mir-34b","entrezGeneId":"407041"},{"alias":"MIRN34B","entrezGeneId":"407041"},{"alias":"miRNA34B","entrezGeneId":"407041"},{"alias":"mir-34c","entrezGeneId":"407042"},{"alias":"MIRN34C","entrezGeneId":"407042"},{"alias":"miRNA34C","entrezGeneId":"407042"},{"alias":"hsa-mir-7-1","entrezGeneId":"407043"},{"alias":"mir-7-1","entrezGeneId":"407043"},{"alias":"MIRN7-1","entrezGeneId":"407043"},{"alias":"hsa-mir-7-2","entrezGeneId":"407044"},{"alias":"mir-7-2","entrezGeneId":"407044"},{"alias":"MIRN7-2","entrezGeneId":"407044"},{"alias":"hsa-mir-7-3","entrezGeneId":"407045"},{"alias":"mir-7-3","entrezGeneId":"407045"},{"alias":"MIRN7-3","entrezGeneId":"407045"},{"alias":"hsa-mir-9-1","entrezGeneId":"407046"},{"alias":"mir-9-1","entrezGeneId":"407046"},{"alias":"MIRN9-1","entrezGeneId":"407046"},{"alias":"miRNA9-1","entrezGeneId":"407046"},{"alias":"hsa-mir-9-2","entrezGeneId":"407047"},{"alias":"mir-9-2","entrezGeneId":"407047"},{"alias":"MIRN9-2","entrezGeneId":"407047"},{"alias":"miRNA9-2","entrezGeneId":"407047"},{"alias":"C13orf25","entrezGeneId":"407048"},{"alias":"mir-92a-1","entrezGeneId":"407048"},{"alias":"MIR17HG","entrezGeneId":"407048"},{"alias":"MIR92-1","entrezGeneId":"407048"},{"alias":"MIRH1","entrezGeneId":"407048"},{"alias":"MIRHG1","entrezGeneId":"407048"},{"alias":"MIRN92-1","entrezGeneId":"407048"},{"alias":"MIRN92A-1","entrezGeneId":"407048"},{"alias":"MIRN92A1","entrezGeneId":"407048"},{"alias":"miRNA92-1","entrezGeneId":"407048"},{"alias":"mir-92a-2","entrezGeneId":"407049"},{"alias":"MIRN92-2","entrezGeneId":"407049"},{"alias":"MIRN92A-2","entrezGeneId":"407049"},{"alias":"MIRN92A2","entrezGeneId":"407049"},{"alias":"hsa-mir-93","entrezGeneId":"407050"},{"alias":"miR-93","entrezGeneId":"407050"},{"alias":"MIRN9","entrezGeneId":"407050"},{"alias":"MIRN93","entrezGeneId":"407050"},{"alias":"hsa-mir-9-3","entrezGeneId":"407051"},{"alias":"mir-9-3","entrezGeneId":"407051"},{"alias":"MIRN9-3","entrezGeneId":"407051"},{"alias":"miRNA9-3","entrezGeneId":"407051"},{"alias":"hsa-mir-95","entrezGeneId":"407052"},{"alias":"miR-95","entrezGeneId":"407052"},{"alias":"MIRN95","entrezGeneId":"407052"},{"alias":"DFNA50","entrezGeneId":"407053"},{"alias":"hsa-mir-96","entrezGeneId":"407053"},{"alias":"miR-96","entrezGeneId":"407053"},{"alias":"MIRN96","entrezGeneId":"407053"},{"alias":"miRNA96","entrezGeneId":"407053"},{"alias":"hsa-mir-98","entrezGeneId":"407054"},{"alias":"miR-98","entrezGeneId":"407054"},{"alias":"MIRN98","entrezGeneId":"407054"},{"alias":"mir-99a","entrezGeneId":"407055"},{"alias":"MIRN99A","entrezGeneId":"407055"},{"alias":"mir-99b","entrezGeneId":"407056"},{"alias":"MIRN99B","entrezGeneId":"407056"},{"alias":"TAFA-1","entrezGeneId":"407738"},{"alias":"TAFA1","entrezGeneId":"407738"},{"alias":"C11DUPq12","entrezGeneId":"407973"},{"alias":"DUP11q12","entrezGeneId":"407973"},{"alias":"C13orf25","entrezGeneId":"407975"},{"alias":"FGLDS2","entrezGeneId":"407975"},{"alias":"LINC00048","entrezGeneId":"407975"},{"alias":"MIHG1","entrezGeneId":"407975"},{"alias":"miR-17-92","entrezGeneId":"407975"},{"alias":"MIRH1","entrezGeneId":"407975"},{"alias":"MIRHG1","entrezGeneId":"407975"},{"alias":"NCRNA00048","entrezGeneId":"407975"},{"alias":"TWE-PRIL","entrezGeneId":"407977"},{"alias":"Nomo","entrezGeneId":"408050"},{"alias":"SPINK5L2","entrezGeneId":"408187"},{"alias":"HPC20","entrezGeneId":"408259"},{"alias":"HPC7","entrezGeneId":"408260"},{"alias":"C5orf40","entrezGeneId":"408263"},{"alias":"PRC17","entrezGeneId":"414059"},{"alias":"TBC1D3I","entrezGeneId":"414059"},{"alias":"TBC1D3L","entrezGeneId":"414059"},{"alias":"TBC1D3D","entrezGeneId":"414060"},{"alias":"HCG3","entrezGeneId":"414061"},{"alias":"464.2","entrezGeneId":"414062"},{"alias":"D17S1718","entrezGeneId":"414062"},{"alias":"G0S19-2","entrezGeneId":"414062"},{"alias":"LD78","entrezGeneId":"414062"},{"alias":"LD78BETA","entrezGeneId":"414062"},{"alias":"SCYA3L","entrezGeneId":"414062"},{"alias":"SCYA3L1","entrezGeneId":"414062"},{"alias":"NANOGP3","entrezGeneId":"414130"},{"alias":"NANOGP4","entrezGeneId":"414131"},{"alias":"NANOGP2","entrezGeneId":"414132"},{"alias":"bA455B2.2","entrezGeneId":"414149"},{"alias":"bA390F4.4","entrezGeneId":"414153"},{"alias":"SNRPEL1","entrezGeneId":"414153"},{"alias":"bA548K23.1","entrezGeneId":"414157"},{"alias":"bA122K13.8","entrezGeneId":"414169"},{"alias":"BANF1L1","entrezGeneId":"414169"},{"alias":"AGAP-6","entrezGeneId":"414189"},{"alias":"bA324H6.1","entrezGeneId":"414189"},{"alias":"CTGLF3","entrezGeneId":"414189"},{"alias":"bA178A10.2","entrezGeneId":"414194"},{"alias":"C10orf21","entrezGeneId":"414194"},{"alias":"CCNYL2P","entrezGeneId":"414194"},{"alias":"C10orf31","entrezGeneId":"414196"},{"alias":"bA402L1.8","entrezGeneId":"414197"},{"alias":"ZNF32OS1","entrezGeneId":"414197"},{"alias":"bA360G10.4","entrezGeneId":"414200"},{"alias":"NOLA2P1","entrezGeneId":"414200"},{"alias":"bA402L1.3","entrezGeneId":"414201"},{"alias":"C10orf44","entrezGeneId":"414201"},{"alias":"ZNF32-OT1","entrezGeneId":"414201"},{"alias":"b402L1.7","entrezGeneId":"414208"},{"alias":"ZNF32OS2","entrezGeneId":"414208"},{"alias":"GLUD1P7","entrezGeneId":"414212"},{"alias":"GLUDP2","entrezGeneId":"414212"},{"alias":"GLUDP7","entrezGeneId":"414212"},{"alias":"bA144G6.5","entrezGeneId":"414213"},{"alias":"bK2173J9.1","entrezGeneId":"414213"},{"alias":"GLUD1P6","entrezGeneId":"414213"},{"alias":"GLUDP6","entrezGeneId":"414213"},{"alias":"GLUDP8","entrezGeneId":"414213"},{"alias":"BMS1LP3","entrezGeneId":"414217"},{"alias":"CTGLF12P","entrezGeneId":"414224"},{"alias":"bA108M11.3","entrezGeneId":"414228"},{"alias":"RPS27_10_1079","entrezGeneId":"414228"},{"alias":"RPS15A_9_1106","entrezGeneId":"414230"},{"alias":"C10orf108","entrezGeneId":"414235"},{"alias":"bA38L15.1","entrezGeneId":"414241"},{"alias":"FAM35B","entrezGeneId":"414241"},{"alias":"FAM35EP","entrezGeneId":"414241"},{"alias":"C10orf101","entrezGeneId":"414243"},{"alias":"bA537A6.3","entrezGeneId":"414245"},{"alias":"C10orf103","entrezGeneId":"414245"},{"alias":"LAMR1P6","entrezGeneId":"414254"},{"alias":"RPSA_23_1065","entrezGeneId":"414254"},{"alias":"bA168P8.1","entrezGeneId":"414260"},{"alias":"C10orf136","entrezGeneId":"414260"},{"alias":"bA342C23.1","entrezGeneId":"414312"},{"alias":"bA54A22.4","entrezGeneId":"414316"},{"alias":"C9orf104","entrezGeneId":"414316"},{"alias":"bA785H23.1","entrezGeneId":"414319"},{"alias":"C9orf107","entrezGeneId":"414319"},{"alias":"BD-3","entrezGeneId":"414325"},{"alias":"DEFB-3","entrezGeneId":"414325"},{"alias":"DEFB103","entrezGeneId":"414325"},{"alias":"DEFB3","entrezGeneId":"414325"},{"alias":"hBD-3","entrezGeneId":"414325"},{"alias":"HBD3","entrezGeneId":"414325"},{"alias":"HBP-3","entrezGeneId":"414325"},{"alias":"HBP3","entrezGeneId":"414325"},{"alias":"bA522I20.2","entrezGeneId":"414328"},{"alias":"C9orf103","entrezGeneId":"414328"},{"alias":"hGntK","entrezGeneId":"414328"},{"alias":"C22orf10","entrezGeneId":"414351"},{"alias":"dJ474I12.C22.2","entrezGeneId":"414351"},{"alias":"NCRNA00229","entrezGeneId":"414351"},{"alias":"TRAPPC2P3B","entrezGeneId":"414751"},{"alias":"TRAPPC2P5B","entrezGeneId":"414752"},{"alias":"TRAPPC2P4B","entrezGeneId":"414753"},{"alias":"dJ111M5.4","entrezGeneId":"414760"},{"alias":"HCG16","entrezGeneId":"414761"},{"alias":"C14orf17","entrezGeneId":"414763"},{"alias":"LINC00516","entrezGeneId":"414763"},{"alias":"dJ1077I5.3","entrezGeneId":"414764"},{"alias":"dJ1033B10.16","entrezGeneId":"414765"},{"alias":"bCX111D4.7","entrezGeneId":"414771"},{"alias":"bPG70P20.2","entrezGeneId":"414771"},{"alias":"bQB10J12.1","entrezGeneId":"414771"},{"alias":"DDR1-AS1","entrezGeneId":"414771"},{"alias":"TIGD1L","entrezGeneId":"414771"},{"alias":"HCG18","entrezGeneId":"414778"},{"alias":"LINC00046","entrezGeneId":"414778"},{"alias":"NCRNA00046","entrezGeneId":"414778"},{"alias":"BRCC2","entrezGeneId":"414899"},{"alias":"AFI1B","entrezGeneId":"414918"},{"alias":"FAM116B","entrezGeneId":"414918"},{"alias":"C15orf50","entrezGeneId":"414926"},{"alias":"pim-3","entrezGeneId":"415116"},{"alias":"VCX-C","entrezGeneId":"425054"},{"alias":"VCXC","entrezGeneId":"425054"},{"alias":"NCRNA00132","entrezGeneId":"425057"},{"alias":"TTTY9","entrezGeneId":"425057"},{"alias":"TTTY9A","entrezGeneId":"425057"},{"alias":"TTY9","entrezGeneId":"425057"},{"alias":"SAS1B","entrezGeneId":"431705"},{"alias":"LHX7","entrezGeneId":"431707"},{"alias":"SLURP-2","entrezGeneId":"432355"},{"alias":"ATP5EP2","entrezGeneId":"432369"},{"alias":"KRTAP5-11","entrezGeneId":"439915"},{"alias":"KRTAP5.5","entrezGeneId":"439915"},{"alias":"C12orf37","entrezGeneId":"439916"},{"alias":"C1orf180","entrezGeneId":"439927"},{"alias":"C4orf11","entrezGeneId":"439934"},{"alias":"C8orf54","entrezGeneId":"439941"},{"alias":"RPL7_17_1035","entrezGeneId":"439954"},{"alias":"IGKV1/ORY-1","entrezGeneId":"439957"},{"alias":"FAM35B2","entrezGeneId":"439965"},{"alias":"bA486O22.3","entrezGeneId":"439992"},{"alias":"RPS3A_15_1074","entrezGeneId":"439992"},{"alias":"bA149I23.6","entrezGeneId":"439996"},{"alias":"IFIT1L","entrezGeneId":"439996"},{"alias":"DUX10","entrezGeneId":"440013"},{"alias":"KRTAP5-8","entrezGeneId":"440021"},{"alias":"KRTAP5.2","entrezGeneId":"440021"},{"alias":"KRTAP5.6","entrezGeneId":"440023"},{"alias":"RPL23A_27_1119","entrezGeneId":"440027"},{"alias":"DKFZp686K1684","entrezGeneId":"440034"},{"alias":"Oat6","entrezGeneId":"440044"},{"alias":"SLC22A20","entrezGeneId":"440044"},{"alias":"KRTAP5-3","entrezGeneId":"440050"},{"alias":"KRTAP5.7","entrezGeneId":"440050"},{"alias":"KRTAP5-5","entrezGeneId":"440051"},{"alias":"KRTAP5-6","entrezGeneId":"440051"},{"alias":"KRTAP5.11","entrezGeneId":"440051"},{"alias":"RPS12_10_1156","entrezGeneId":"440055"},{"alias":"INCA","entrezGeneId":"440068"},{"alias":"C11orf37","entrezGeneId":"440072"},{"alias":"NCRNA00167","entrezGeneId":"440072"},{"alias":"CHLR2","entrezGeneId":"440081"},{"alias":"DDX12","entrezGeneId":"440081"},{"alias":"RPS6_9_1210","entrezGeneId":"440086"},{"alias":"C12orf69","entrezGeneId":"440087"},{"alias":"H3.5","entrezGeneId":"440093"},{"alias":"FZD10-AS1","entrezGeneId":"440119"},{"alias":"CDG1P","entrezGeneId":"440138"},{"alias":"GT8","entrezGeneId":"440138"},{"alias":"C13orf37","entrezGeneId":"440145"},{"alias":"MOZART1","entrezGeneId":"440145"},{"alias":"ORNP-NP1","entrezGeneId":"440159"},{"alias":"HEL-S-86p","entrezGeneId":"440163"},{"alias":"RAL1","entrezGeneId":"440163"},{"alias":"RPL12_12_1352","entrezGeneId":"440176"},{"alias":"C14orf53","entrezGeneId":"440184"},{"alias":"LINC00238","entrezGeneId":"440184"},{"alias":"NCRNA00238","entrezGeneId":"440184"},{"alias":"DAPLE","entrezGeneId":"440193"},{"alias":"HKRP2","entrezGeneId":"440193"},{"alias":"KIAA1509","entrezGeneId":"440193"},{"alias":"SCA40","entrezGeneId":"440193"},{"alias":"NF1HHS","entrezGeneId":"440225"},{"alias":"WHAMML2","entrezGeneId":"440253"},{"alias":"WHDC1L2","entrezGeneId":"440253"},{"alias":"GOLGA5","entrezGeneId":"440270"},{"alias":"GCN2","entrezGeneId":"440275"},{"alias":"PVOD2","entrezGeneId":"440275"},{"alias":"DNM1DN11.7","entrezGeneId":"440293"},{"alias":"GOLGA6L20","entrezGeneId":"440295"},{"alias":"DNM1DN11-6","entrezGeneId":"440299"},{"alias":"DNM1DN11.6","entrezGeneId":"440299"},{"alias":"DNM1DN11@","entrezGeneId":"440299"},{"alias":"DNM1DN11-13","entrezGeneId":"440303"},{"alias":"DNM1DN11.13","entrezGeneId":"440303"},{"alias":"DNM1DN11@","entrezGeneId":"440303"},{"alias":"TTLL13","entrezGeneId":"440307"},{"alias":"CASIMO1","entrezGeneId":"440335"},{"alias":"61E3.4","entrezGeneId":"440345"},{"alias":"A-761H5.4","entrezGeneId":"440348"},{"alias":"NPIPL2","entrezGeneId":"440348"},{"alias":"A-575C2.4","entrezGeneId":"440350"},{"alias":"A-761H5.5","entrezGeneId":"440350"},{"alias":"NPIPL1","entrezGeneId":"440350"},{"alias":"RUNDC2C","entrezGeneId":"440352"},{"alias":"CDIPT-AS1","entrezGeneId":"440356"},{"alias":"CSDAP1","entrezGeneId":"440359"},{"alias":"RAB41P","entrezGeneId":"440375"},{"alias":"RAB43P","entrezGeneId":"440375"},{"alias":"SUZ12P","entrezGeneId":"440423"},{"alias":"CSNB1E","entrezGeneId":"440435"},{"alias":"GPR158L","entrezGeneId":"440435"},{"alias":"GPR158L1","entrezGeneId":"440435"},{"alias":"RPS2_6_520","entrezGeneId":"440447"},{"alias":"PLEKHM1P","entrezGeneId":"440456"},{"alias":"BAIAP2-AS1","entrezGeneId":"440465"},{"alias":"ANKRD20A5","entrezGeneId":"440482"},{"alias":"RPL21_62_1585","entrezGeneId":"440487"},{"alias":"LSDA5","entrezGeneId":"440503"},{"alias":"LSDP5","entrezGeneId":"440503"},{"alias":"MLDP","entrezGeneId":"440503"},{"alias":"OXPAT","entrezGeneId":"440503"},{"alias":"ZNF724P","entrezGeneId":"440519"},{"alias":"PSG1","entrezGeneId":"440533"},{"alias":"HNRNPCP5","entrezGeneId":"440563"},{"alias":"C1orf151","entrezGeneId":"440574"},{"alias":"Mic10","entrezGeneId":"440574"},{"alias":"MIO10","entrezGeneId":"440574"},{"alias":"RPL21_1_19","entrezGeneId":"440575"},{"alias":"RPL6_1_44","entrezGeneId":"440587"},{"alias":"RPS2_1_48","entrezGeneId":"440589"},{"alias":"ZYG11","entrezGeneId":"440590"},{"alias":"EEF1AL9","entrezGeneId":"440595"},{"alias":"AS-RBM15","entrezGeneId":"440600"},{"alias":"Bfk","entrezGeneId":"440603"},{"alias":"C1orf178","entrezGeneId":"440603"},{"alias":"NUDT4P1","entrezGeneId":"440672"},{"alias":"p06","entrezGeneId":"440686"},{"alias":"C1orf186","entrezGeneId":"440712"},{"alias":"TNL","entrezGeneId":"440730"},{"alias":"RPS7_2_175","entrezGeneId":"440732"},{"alias":"RPL35_1_181","entrezGeneId":"440737"},{"alias":"ATG8J","entrezGeneId":"440738"},{"alias":"LC3C","entrezGeneId":"440738"},{"alias":"DZANK1-AS1","entrezGeneId":"440757"},{"alias":"RIM-BP3.2","entrezGeneId":"440804"},{"alias":"RIM-BP3.B","entrezGeneId":"440804"},{"alias":"RIMBP3.2","entrezGeneId":"440804"},{"alias":"HIWI3","entrezGeneId":"440822"},{"alias":"C22orf35","entrezGeneId":"440823"},{"alias":"GOMAFU","entrezGeneId":"440823"},{"alias":"LINC00066","entrezGeneId":"440823"},{"alias":"lncRNA-MIAT","entrezGeneId":"440823"},{"alias":"NCRNA00066","entrezGeneId":"440823"},{"alias":"RNCR2","entrezGeneId":"440823"},{"alias":"C22orf17","entrezGeneId":"440829"},{"alias":"Orf26","entrezGeneId":"440829"},{"alias":"ODF3L3","entrezGeneId":"440836"},{"alias":"FKSG73","entrezGeneId":"440888"},{"alias":"lnc-ACTR3","entrezGeneId":"440900"},{"alias":"VIN","entrezGeneId":"440900"},{"alias":"HEL-182","entrezGeneId":"440905"},{"alias":"ACT","entrezGeneId":"440915"},{"alias":"ACTBL3","entrezGeneId":"440915"},{"alias":"POTE2delta","entrezGeneId":"440915"},{"alias":"POTEK","entrezGeneId":"440915"},{"alias":"p13","entrezGeneId":"440926"},{"alias":"SETD5-AS1","entrezGeneId":"440944"},{"alias":"C3orf78","entrezGeneId":"440957"},{"alias":"RPS3_1_443","entrezGeneId":"440991"},{"alias":"RPS20_6_446","entrezGeneId":"440992"},{"alias":"LINC00969","entrezGeneId":"440993"},{"alias":"CPEB2-AS1","entrezGeneId":"441009"},{"alias":"RPS2_5_473","entrezGeneId":"441013"},{"alias":"TTN3","entrezGeneId":"441027"},{"alias":"EEF1AL7","entrezGeneId":"441032"},{"alias":"RPL7A_9_511","entrezGeneId":"441034"},{"alias":"GYPELOC441046","entrezGeneId":"441046"},{"alias":"PTGES3P","entrezGeneId":"441050"},{"alias":"HSP90Af","entrezGeneId":"441051"},{"alias":"MARCH-XI","entrezGeneId":"441061"},{"alias":"RNF226","entrezGeneId":"441061"},{"alias":"RPL26_4_565","entrezGeneId":"441073"},{"alias":"C6orf88","entrezGeneId":"441123"},{"alias":"dJ24O22.2","entrezGeneId":"441123"},{"alias":"NCRNA00266-3","entrezGeneId":"441123"},{"alias":"NCRNA00266C","entrezGeneId":"441123"},{"alias":"bA444E17.5","entrezGeneId":"441151"},{"alias":"C6orf137","entrezGeneId":"441151"},{"alias":"TMEM193","entrezGeneId":"441151"},{"alias":"RPL7A_14_708","entrezGeneId":"441154"},{"alias":"C6orf156","entrezGeneId":"441161"},{"alias":"FLOPED","entrezGeneId":"441161"},{"alias":"HOEP19","entrezGeneId":"441161"},{"alias":"KHDC2","entrezGeneId":"441161"},{"alias":"C6orf187","entrezGeneId":"441168"},{"alias":"dJ93H18.5","entrezGeneId":"441168"},{"alias":"FAM26F","entrezGeneId":"441168"},{"alias":"INAM","entrezGeneId":"441168"},{"alias":"hCG2040556","entrezGeneId":"441191"},{"alias":"RNF216L","entrezGeneId":"441191"},{"alias":"PMS2P13","entrezGeneId":"441194"},{"alias":"NMD3P","entrezGeneId":"441238"},{"alias":"RPL35_4_812","entrezGeneId":"441246"},{"alias":"LINC00069","entrezGeneId":"441250"},{"alias":"NCRNA00069","entrezGeneId":"441250"},{"alias":"RSAFD2","entrezGeneId":"441250"},{"alias":"FDPSL2B","entrezGeneId":"441261"},{"alias":"PMS2L11","entrezGeneId":"441263"},{"alias":"SPDYB2","entrezGeneId":"441272"},{"alias":"SPDYB2-L1","entrezGeneId":"441273"},{"alias":"AKR1B10L","entrezGeneId":"441282"},{"alias":"AKR1B10L, AK1R1B7","entrezGeneId":"441282"},{"alias":"AKR1R1B7","entrezGeneId":"441282"},{"alias":"cTAGE-15","entrezGeneId":"441294"},{"alias":"CTAGE15P","entrezGeneId":"441294"},{"alias":"FKSG35","entrezGeneId":"441295"},{"alias":"HSDJ0798C17","entrezGeneId":"441295"},{"alias":"OR2A19","entrezGeneId":"441295"},{"alias":"OR2A22P","entrezGeneId":"441295"},{"alias":"OR2A9","entrezGeneId":"441295"},{"alias":"OR4F21P","entrezGeneId":"441308"},{"alias":"FAM90A4","entrezGeneId":"441313"},{"alias":"FAM90A13","entrezGeneId":"441314"},{"alias":"FAM90A5","entrezGeneId":"441315"},{"alias":"FAM90A7","entrezGeneId":"441317"},{"alias":"FAM90A16","entrezGeneId":"441323"},{"alias":"FAM90A8","entrezGeneId":"441324"},{"alias":"FAM90A18","entrezGeneId":"441326"},{"alias":"FAM90A9","entrezGeneId":"441327"},{"alias":"FAM90A10","entrezGeneId":"441328"},{"alias":"FAM90A11","entrezGeneId":"441331"},{"alias":"FAM90A24","entrezGeneId":"441332"},{"alias":"REXO1L7P","entrezGeneId":"441362"},{"alias":"C8orf85","entrezGeneId":"441376"},{"alias":"RPS26_17_946","entrezGeneId":"441377"},{"alias":"LRRC14OS","entrezGeneId":"441381"},{"alias":"bA338L20.1","entrezGeneId":"441386"},{"alias":"RPS26_11_962","entrezGeneId":"441386"},{"alias":"bA255A11.1","entrezGeneId":"441394"},{"alias":"SGT1P","entrezGeneId":"441394"},{"alias":"SUGT1P","entrezGeneId":"441394"},{"alias":"FKBP4P3","entrezGeneId":"441410"},{"alias":"GPR116P2","entrezGeneId":"441416"},{"alias":"NCRNA00268","entrezGeneId":"441426"},{"alias":"NCRNA00268A","entrezGeneId":"441426"},{"alias":"AQPap-3","entrezGeneId":"441432"},{"alias":"RPL7A_20_981","entrezGeneId":"441440"},{"alias":"FAM75C1","entrezGeneId":"441452"},{"alias":"SPATA31C2","entrezGeneId":"441452"},{"alias":"FAM22G","entrezGeneId":"441457"},{"alias":"NUTMG","entrezGeneId":"441457"},{"alias":"bA255A11.3","entrezGeneId":"441459"},{"alias":"bA255A11.5","entrezGeneId":"441459"},{"alias":"C9orf173","entrezGeneId":"441476"},{"alias":"GPXL1","entrezGeneId":"441481"},{"alias":"GPXL2","entrezGeneId":"441481"},{"alias":"GPXP1","entrezGeneId":"441481"},{"alias":"FTHL18","entrezGeneId":"441490"},{"alias":"CENPVP2","entrezGeneId":"441495"},{"alias":"bA366E13.1","entrezGeneId":"441502"},{"alias":"RPS26L1","entrezGeneId":"441502"},{"alias":"RPS26_22_1784","entrezGeneId":"441502"},{"alias":"CXX1c","entrezGeneId":"441518"},{"alias":"FAM127C","entrezGeneId":"441518"},{"alias":"MAR8B","entrezGeneId":"441518"},{"alias":"SIRH4","entrezGeneId":"441518"},{"alias":"CT45-3","entrezGeneId":"441519"},{"alias":"CT45-4","entrezGeneId":"441519"},{"alias":"CT45.3","entrezGeneId":"441519"},{"alias":"CT45.4","entrezGeneId":"441519"},{"alias":"CT45A4","entrezGeneId":"441519"},{"alias":"CT45.5","entrezGeneId":"441521"},{"alias":"CT455","entrezGeneId":"441521"},{"alias":"CT11.9","entrezGeneId":"441525"},{"alias":"dJ1000K24.1","entrezGeneId":"441531"},{"alias":"PGAM-B","entrezGeneId":"441531"},{"alias":"PGAM1","entrezGeneId":"441531"},{"alias":"PGAM3","entrezGeneId":"441531"},{"alias":"RPL26_17_1822","entrezGeneId":"441533"},{"alias":"LINC00128","entrezGeneId":"441543"},{"alias":"NCRNA00128","entrezGeneId":"441543"},{"alias":"TTTY6","entrezGeneId":"441543"},{"alias":"TTY6","entrezGeneId":"441543"},{"alias":"ARMETL1","entrezGeneId":"441549"},{"alias":"RPS4P11","entrezGeneId":"441550"},{"alias":"RPS4X_2_1029","entrezGeneId":"441550"},{"alias":"DUSP8P","entrezGeneId":"441554"},{"alias":"DUSP8P1","entrezGeneId":"441554"},{"alias":"DUSPP","entrezGeneId":"441554"},{"alias":"HVH4","entrezGeneId":"441554"},{"alias":"OR11-239","entrezGeneId":"441608"},{"alias":"OR5B13","entrezGeneId":"441608"},{"alias":"OST129","entrezGeneId":"441608"},{"alias":"VSSW1971","entrezGeneId":"441631"},{"alias":"RPL13A_9_1223","entrezGeneId":"441632"},{"alias":"OR12-2","entrezGeneId":"441639"},{"alias":"RPL13A_10_1240","entrezGeneId":"441641"},{"alias":"rpL7a","entrezGeneId":"441642"},{"alias":"RPL7AP59","entrezGeneId":"441642"},{"alias":"RPL7A_24_1258","entrezGeneId":"441642"},{"alias":"CXXC6P1","entrezGeneId":"441662"},{"alias":"C14orf13","entrezGeneId":"441669"},{"alias":"c14_5008","entrezGeneId":"441669"},{"alias":"HSA6","entrezGeneId":"441669"},{"alias":"OR14-3","entrezGeneId":"441669"},{"alias":"OR4Q4","entrezGeneId":"441669"},{"alias":"OR14-7","entrezGeneId":"441670"},{"alias":"RPL28_1_1435","entrezGeneId":"441726"},{"alias":"RPL36A_20_1453","entrezGeneId":"441727"},{"alias":"RPS16_4_1467","entrezGeneId":"441744"},{"alias":"RPS4Y_1_1499","entrezGeneId":"441774"},{"alias":"RPL18_5_1500","entrezGeneId":"441775"},{"alias":"RPL23A_31_1517","entrezGeneId":"441781"},{"alias":"POTENP","entrezGeneId":"441783"},{"alias":"HsT3017","entrezGeneId":"441818"},{"alias":"ZNF209","entrezGeneId":"441843"},{"alias":"OLT-2","entrezGeneId":"441864"},{"alias":"RPS16_1_14","entrezGeneId":"441876"},{"alias":"RPS4P4","entrezGeneId":"441878"},{"alias":"RPS4X_1_17","entrezGeneId":"441878"},{"alias":"WDR82C","entrezGeneId":"441891"},{"alias":"RPL7_2_84","entrezGeneId":"441896"},{"alias":"RPS15A_2_91","entrezGeneId":"441898"},{"alias":"OR1-25","entrezGeneId":"441911"},{"alias":"OR10J3P","entrezGeneId":"441911"},{"alias":"BECN1L1","entrezGeneId":"441925"},{"alias":"BECN1P1","entrezGeneId":"441925"},{"alias":"GPCR","entrezGeneId":"441931"},{"alias":"OR2W5P","entrezGeneId":"441932"},{"alias":"OST722","entrezGeneId":"441932"},{"alias":"OR1-37","entrezGeneId":"441933"},{"alias":"C20orf199","entrezGeneId":"441951"},{"alias":"HSUP1","entrezGeneId":"441951"},{"alias":"HSUP2","entrezGeneId":"441951"},{"alias":"NCRNA00275","entrezGeneId":"441951"},{"alias":"ZNFX1-AS1","entrezGeneId":"441951"},{"alias":"FEM1DP","entrezGeneId":"441957"},{"alias":"LDHAL3","entrezGeneId":"442013"},{"alias":"ST1C3","entrezGeneId":"442038"},{"alias":"HSP90BE","entrezGeneId":"442083"},{"alias":"RPL10_2_395","entrezGeneId":"442086"},{"alias":"OR7E77","entrezGeneId":"442101"},{"alias":"OR7E77P","entrezGeneId":"442101"},{"alias":"OST060","entrezGeneId":"442101"},{"alias":"OR7E118P","entrezGeneId":"442105"},{"alias":"OR7E88P","entrezGeneId":"442105"},{"alias":"RPL22_7_478","entrezGeneId":"442108"},{"alias":"GalNAc-T6L","entrezGeneId":"442117"},{"alias":"GALNACT20","entrezGeneId":"442117"},{"alias":"GALNT17","entrezGeneId":"442117"},{"alias":"RPS26_6_653","entrezGeneId":"442158"},{"alias":"RPL21_23_656","entrezGeneId":"442160"},{"alias":"RPS4P7","entrezGeneId":"442162"},{"alias":"RPS4X_3_659","entrezGeneId":"442162"},{"alias":"ASSP1","entrezGeneId":"442167"},{"alias":"bA209A2.1","entrezGeneId":"442171"},{"alias":"RPL10p","entrezGeneId":"442171"},{"alias":"RPL10_2_670","entrezGeneId":"442171"},{"alias":"dJ408B20.3","entrezGeneId":"442175"},{"alias":"RPLP2_1_671","entrezGeneId":"442175"},{"alias":"hs6M1-35P","entrezGeneId":"442179"},{"alias":"OR1F12P","entrezGeneId":"442179"},{"alias":"OR1F12Q","entrezGeneId":"442179"},{"alias":"OR6-12","entrezGeneId":"442179"},{"alias":"bA60E24.1","entrezGeneId":"442181"},{"alias":"LAMR1P2","entrezGeneId":"442181"},{"alias":"RPSA_15_672","entrezGeneId":"442181"},{"alias":"hs6M1-26","entrezGeneId":"442183"},{"alias":"6M1-1","entrezGeneId":"442184"},{"alias":"OR2B3P","entrezGeneId":"442184"},{"alias":"OR6-14","entrezGeneId":"442184"},{"alias":"OR6-4","entrezGeneId":"442184"},{"alias":"6M1-4P","entrezGeneId":"442185"},{"alias":"dJ80I19.2","entrezGeneId":"442185"},{"alias":"hs6M1-4","entrezGeneId":"442185"},{"alias":"OR2J1P","entrezGeneId":"442185"},{"alias":"OR6-15","entrezGeneId":"442185"},{"alias":"OR6-5","entrezGeneId":"442185"},{"alias":"6M1-3","entrezGeneId":"442186"},{"alias":"C3HEXS","entrezGeneId":"442186"},{"alias":"HS6M1-3","entrezGeneId":"442186"},{"alias":"OR6-16","entrezGeneId":"442186"},{"alias":"OR6-6","entrezGeneId":"442186"},{"alias":"OR6.3.6","entrezGeneId":"442186"},{"alias":"ORL671","entrezGeneId":"442186"},{"alias":"dJ80I19.5","entrezGeneId":"442188"},{"alias":"hs6M1-5","entrezGeneId":"442188"},{"alias":"OR6-20","entrezGeneId":"442188"},{"alias":"OR6-9","entrezGeneId":"442188"},{"alias":"6M1-7P","entrezGeneId":"442189"},{"alias":"dJ80I19.6","entrezGeneId":"442189"},{"alias":"hs6M1-7","entrezGeneId":"442189"},{"alias":"OR2H4","entrezGeneId":"442189"},{"alias":"OR6-21","entrezGeneId":"442189"},{"alias":"OR6-3","entrezGeneId":"442189"},{"alias":"hs6M1-22","entrezGeneId":"442190"},{"alias":"bA150A6.4","entrezGeneId":"442191"},{"alias":"hs6M1-28","entrezGeneId":"442191"},{"alias":"OR5U1","entrezGeneId":"442191"},{"alias":"OR6-25","entrezGeneId":"442191"},{"alias":"bA150A6.3","entrezGeneId":"442192"},{"alias":"DDX6-Lp","entrezGeneId":"442192"},{"alias":"DDX6P","entrezGeneId":"442192"},{"alias":"hs6M1-17","entrezGeneId":"442194"},{"alias":"OR10C1P","entrezGeneId":"442194"},{"alias":"OR10C2","entrezGeneId":"442194"},{"alias":"OR6-31","entrezGeneId":"442194"},{"alias":"dJ994E9.1","entrezGeneId":"442195"},{"alias":"RPS17p","entrezGeneId":"442195"},{"alias":"RPS17_3_674","entrezGeneId":"442195"},{"alias":"HS6M1-14","entrezGeneId":"442197"},{"alias":"OR2I1","entrezGeneId":"442197"},{"alias":"OR2I2","entrezGeneId":"442197"},{"alias":"OR2I3P","entrezGeneId":"442197"},{"alias":"OR2I4P","entrezGeneId":"442197"},{"alias":"OR2I5P","entrezGeneId":"442197"},{"alias":"OR2I6","entrezGeneId":"442197"},{"alias":"OR2I7P","entrezGeneId":"442197"},{"alias":"OR2I8P","entrezGeneId":"442197"},{"alias":"OR2I9P","entrezGeneId":"442197"},{"alias":"OR6-1","entrezGeneId":"442197"},{"alias":"OR6-34","entrezGeneId":"442197"},{"alias":"BING3","entrezGeneId":"442204"},{"alias":"bA513I15.2","entrezGeneId":"442205"},{"alias":"GPCR","entrezGeneId":"442206"},{"alias":"PGR9","entrezGeneId":"442206"},{"alias":"C6orf138","entrezGeneId":"442213"},{"alias":"dJ402H5.2","entrezGeneId":"442213"},{"alias":"PTCH53","entrezGeneId":"442213"},{"alias":"dJ753D5.2","entrezGeneId":"442216"},{"alias":"RPS17L4","entrezGeneId":"442216"},{"alias":"RPS17_4_700","entrezGeneId":"442216"},{"alias":"RPL31_12_703","entrezGeneId":"442217"},{"alias":"RPL31_13_704","entrezGeneId":"442218"},{"alias":"bA707M13.1","entrezGeneId":"442229"},{"alias":"MCART3P","entrezGeneId":"442229"},{"alias":"GAPDHL8","entrezGeneId":"442231"},{"alias":"GAPDL8","entrezGeneId":"442231"},{"alias":"RPL17_6_718","entrezGeneId":"442232"},{"alias":"RPS7_4_725","entrezGeneId":"442237"},{"alias":"354J5","entrezGeneId":"442240"},{"alias":"ZNF259P","entrezGeneId":"442240"},{"alias":"RPL7_12_736","entrezGeneId":"442242"},{"alias":"RNF211","entrezGeneId":"442247"},{"alias":"NEPN","entrezGeneId":"442253"},{"alias":"NPN","entrezGeneId":"442253"},{"alias":"ANTP7","entrezGeneId":"442255"},{"alias":"RPS4P9","entrezGeneId":"442257"},{"alias":"RPS4X_4_749","entrezGeneId":"442257"},{"alias":"RPL23A_17_757","entrezGeneId":"442260"},{"alias":"GAPDHL19","entrezGeneId":"442262"},{"alias":"GAPDL19","entrezGeneId":"442262"},{"alias":"CCT7-2P","entrezGeneId":"442267"},{"alias":"RPS12_6_769","entrezGeneId":"442270"},{"alias":"TCAG_30283","entrezGeneId":"442290"},{"alias":"ZNF727P","entrezGeneId":"442319"},{"alias":"RPL31_17_813","entrezGeneId":"442326"},{"alias":"ARF1","entrezGeneId":"442334"},{"alias":"IRS3L","entrezGeneId":"442338"},{"alias":"OR2A17P","entrezGeneId":"442361"},{"alias":"OR2A2P","entrezGeneId":"442361"},{"alias":"OR7-11","entrezGeneId":"442361"},{"alias":"OST008","entrezGeneId":"442361"},{"alias":"SDR16C6","entrezGeneId":"442388"},{"alias":"ATP5A1P7","entrezGeneId":"442415"},{"alias":"ATP5A1P9","entrezGeneId":"442415"},{"alias":"ATP5A1P1","entrezGeneId":"442416"},{"alias":"ATP5A1P5","entrezGeneId":"442416"},{"alias":"ATP5A1P6","entrezGeneId":"442416"},{"alias":"ATP5AL1","entrezGeneId":"442416"},{"alias":"ATP5AP1","entrezGeneId":"442416"},{"alias":"bA159H20.4","entrezGeneId":"442425"},{"alias":"RPS2_16_990","entrezGeneId":"442426"},{"alias":"HSFYP2","entrezGeneId":"442479"},{"alias":"OFD1P16","entrezGeneId":"442485"},{"alias":"OFD1PY16","entrezGeneId":"442485"},{"alias":"OFDYP16","entrezGeneId":"442485"},{"alias":"ZNF736P1","entrezGeneId":"442486"},{"alias":"ZNF736PY1","entrezGeneId":"442486"},{"alias":"ANTP5","entrezGeneId":"442525"},{"alias":"TCAG_29001","entrezGeneId":"442525"},{"alias":"STAG3L1","entrezGeneId":"442578"},{"alias":"STAG3L2","entrezGeneId":"442578"},{"alias":"STAG3L3P","entrezGeneId":"442578"},{"alias":"STAG3L1","entrezGeneId":"442582"},{"alias":"STAG3L2P","entrezGeneId":"442582"},{"alias":"STAG3L3","entrezGeneId":"442582"},{"alias":"RPL23_5_797","entrezGeneId":"442659"},{"alias":"RPL7A_11_798","entrezGeneId":"442660"},{"alias":"RPL7A_18_822","entrezGeneId":"442712"},{"alias":"RG208K23","entrezGeneId":"442720"},{"alias":"C-LMOD","entrezGeneId":"442721"},{"alias":"CLMOD","entrezGeneId":"442721"},{"alias":"RPL27_6_845","entrezGeneId":"442723"},{"alias":"RPS17_5_854","entrezGeneId":"442726"},{"alias":"Psi2Rac1","entrezGeneId":"442775"},{"alias":"PTPN13LY2","entrezGeneId":"442862"},{"alias":"PRY4P","entrezGeneId":"442863"},{"alias":"PRYP7","entrezGeneId":"442863"},{"alias":"VCY2B","entrezGeneId":"442867"},{"alias":"VCY2C","entrezGeneId":"442868"},{"alias":"mir-133b","entrezGeneId":"442890"},{"alias":"MIRN133B","entrezGeneId":"442890"},{"alias":"miRNA133B","entrezGeneId":"442890"},{"alias":"mir-135b","entrezGeneId":"442891"},{"alias":"MIRN135B","entrezGeneId":"442891"},{"alias":"mir-148b","entrezGeneId":"442892"},{"alias":"MIRN148B","entrezGeneId":"442892"},{"alias":"hsa-mir-151","entrezGeneId":"442893"},{"alias":"hsa-mir-151a","entrezGeneId":"442893"},{"alias":"MIR151","entrezGeneId":"442893"},{"alias":"MIRN151","entrezGeneId":"442893"},{"alias":"mir-302b","entrezGeneId":"442894"},{"alias":"MIRN302B","entrezGeneId":"442894"},{"alias":"mir-302c","entrezGeneId":"442895"},{"alias":"MIRN302C","entrezGeneId":"442895"},{"alias":"mir-302d","entrezGeneId":"442896"},{"alias":"MIRN302D","entrezGeneId":"442896"},{"alias":"hsa-mir-323","entrezGeneId":"442897"},{"alias":"hsa-mir-323a","entrezGeneId":"442897"},{"alias":"mir-323a","entrezGeneId":"442897"},{"alias":"MIR323","entrezGeneId":"442897"},{"alias":"MIRN323","entrezGeneId":"442897"},{"alias":"hsa-mir-324","entrezGeneId":"442898"},{"alias":"mir-324","entrezGeneId":"442898"},{"alias":"MIRN324","entrezGeneId":"442898"},{"alias":"hsa-mir-325","entrezGeneId":"442899"},{"alias":"MIRN325","entrezGeneId":"442899"},{"alias":"hsa-mir-326","entrezGeneId":"442900"},{"alias":"mir-326","entrezGeneId":"442900"},{"alias":"MIRN326","entrezGeneId":"442900"},{"alias":"hsa-mir-328","entrezGeneId":"442901"},{"alias":"mir-328","entrezGeneId":"442901"},{"alias":"MIRN328","entrezGeneId":"442901"},{"alias":"hsa-mir-330","entrezGeneId":"442902"},{"alias":"mir-330","entrezGeneId":"442902"},{"alias":"MIRN330","entrezGeneId":"442902"},{"alias":"hsa-mir-331","entrezGeneId":"442903"},{"alias":"mir-331","entrezGeneId":"442903"},{"alias":"MIRN331","entrezGeneId":"442903"},{"alias":"hsa-mir-335","entrezGeneId":"442904"},{"alias":"mir-335","entrezGeneId":"442904"},{"alias":"MIRN335","entrezGeneId":"442904"},{"alias":"miRNA335","entrezGeneId":"442904"},{"alias":"hsa-mir-337","entrezGeneId":"442905"},{"alias":"mir-337","entrezGeneId":"442905"},{"alias":"MIRN337","entrezGeneId":"442905"},{"alias":"hsa-mir-338","entrezGeneId":"442906"},{"alias":"mir-338","entrezGeneId":"442906"},{"alias":"MIRN338","entrezGeneId":"442906"},{"alias":"hsa-mir-339","entrezGeneId":"442907"},{"alias":"mir-339","entrezGeneId":"442907"},{"alias":"MIRN339","entrezGeneId":"442907"},{"alias":"hsa-mir-340","entrezGeneId":"442908"},{"alias":"mir-340","entrezGeneId":"442908"},{"alias":"MIRN340","entrezGeneId":"442908"},{"alias":"hsa-mir-342","entrezGeneId":"442909"},{"alias":"MIRN342","entrezGeneId":"442909"},{"alias":"hsa-mir-345","entrezGeneId":"442910"},{"alias":"mir-345","entrezGeneId":"442910"},{"alias":"MIRN345","entrezGeneId":"442910"},{"alias":"hsa-mir-346","entrezGeneId":"442911"},{"alias":"miR-346","entrezGeneId":"442911"},{"alias":"MIRN346","entrezGeneId":"442911"},{"alias":"miRNA346","entrezGeneId":"442911"},{"alias":"hsa-mir-367","entrezGeneId":"442912"},{"alias":"MIRN367","entrezGeneId":"442912"},{"alias":"hsa-mir-368","entrezGeneId":"442913"},{"alias":"mir-376c","entrezGeneId":"442913"},{"alias":"MIR368","entrezGeneId":"442913"},{"alias":"MIRN368","entrezGeneId":"442913"},{"alias":"MIRN376C","entrezGeneId":"442913"},{"alias":"miRNA368","entrezGeneId":"442913"},{"alias":"hsa-mir-369","entrezGeneId":"442914"},{"alias":"mir-369","entrezGeneId":"442914"},{"alias":"MIR369-3","entrezGeneId":"442914"},{"alias":"MIRN369","entrezGeneId":"442914"},{"alias":"MIRN369-3","entrezGeneId":"442914"},{"alias":"hsa-mir-370","entrezGeneId":"442915"},{"alias":"mir-370","entrezGeneId":"442915"},{"alias":"MIRN370","entrezGeneId":"442915"},{"alias":"hsa-mir-371","entrezGeneId":"442916"},{"alias":"hsa-mir-371a","entrezGeneId":"442916"},{"alias":"MIR371","entrezGeneId":"442916"},{"alias":"MIRN371","entrezGeneId":"442916"},{"alias":"hsa-mir-372","entrezGeneId":"442917"},{"alias":"MIRN372","entrezGeneId":"442917"},{"alias":"hsa-mir-373","entrezGeneId":"442918"},{"alias":"mir-373","entrezGeneId":"442918"},{"alias":"MIRN373","entrezGeneId":"442918"},{"alias":"miRNA373","entrezGeneId":"442918"},{"alias":"hsa-mir-374","entrezGeneId":"442919"},{"alias":"mir-374a","entrezGeneId":"442919"},{"alias":"MIRN374","entrezGeneId":"442919"},{"alias":"MIRN374A","entrezGeneId":"442919"},{"alias":"miR-196b","entrezGeneId":"442920"},{"alias":"MIRN196B","entrezGeneId":"442920"},{"alias":"miRNA196B","entrezGeneId":"442920"},{"alias":"ARHGEF5L","entrezGeneId":"445328"},{"alias":"HAST3","entrezGeneId":"445329"},{"alias":"M-PST","entrezGeneId":"445329"},{"alias":"ST1A3/ST1A4","entrezGeneId":"445329"},{"alias":"ST1A4","entrezGeneId":"445329"},{"alias":"TL-PST","entrezGeneId":"445329"},{"alias":"CD3G","entrezGeneId":"445347"},{"alias":"TCRG","entrezGeneId":"445347"},{"alias":"TCRGC1","entrezGeneId":"445347"},{"alias":"TCRGC2","entrezGeneId":"445347"},{"alias":"TCRGV","entrezGeneId":"445347"},{"alias":"IFP1","entrezGeneId":"445372"},{"alias":"RNF21","entrezGeneId":"445372"},{"alias":"TRIM34","entrezGeneId":"445372"},{"alias":"bA561O23.1","entrezGeneId":"445571"},{"alias":"ATP5J2P3","entrezGeneId":"445573"},{"alias":"bA159H20.5","entrezGeneId":"445573"},{"alias":"bA165J3.3","entrezGeneId":"445577"},{"alias":"A26C1","entrezGeneId":"445582"},{"alias":"A26C1A","entrezGeneId":"445582"},{"alias":"CT104.2","entrezGeneId":"445582"},{"alias":"POTE-2","entrezGeneId":"445582"},{"alias":"POTE2","entrezGeneId":"445582"},{"alias":"POTE2gamma","entrezGeneId":"445582"},{"alias":"AKAP2","entrezGeneId":"445815"},{"alias":"RPS26_25_1338","entrezGeneId":"446209"},{"alias":"FRG2A","entrezGeneId":"448831"},{"alias":"C1orf45","entrezGeneId":"448834"},{"alias":"C1orf44","entrezGeneId":"448835"},{"alias":"PS3","entrezGeneId":"448990"},{"alias":"T2R06","entrezGeneId":"448990"},{"alias":"T2R6","entrezGeneId":"448990"},{"alias":"TAS2R6","entrezGeneId":"448990"},{"alias":"PS5","entrezGeneId":"448991"},{"alias":"AIB2","entrezGeneId":"449013"},{"alias":"DEFAP1","entrezGeneId":"449491"},{"alias":"DEFAP2","entrezGeneId":"449492"},{"alias":"P2RY10P2","entrezGeneId":"449518"},{"alias":"ERVK7","entrezGeneId":"449619"},{"alias":"HERV-K(III)","entrezGeneId":"449619"},{"alias":"HERV-K102","entrezGeneId":"449619"},{"alias":"HERV-KIII","entrezGeneId":"449619"},{"alias":"PR","entrezGeneId":"449619"},{"alias":"Protease","entrezGeneId":"449619"},{"alias":"Proteinase","entrezGeneId":"449619"},{"alias":"LOAS","entrezGeneId":"450089"},{"alias":"PHF5AP1","entrezGeneId":"450232"},{"alias":"LNCRNA00122","entrezGeneId":"474148"},{"alias":"NCRNA00122","entrezGeneId":"474148"},{"alias":"LINC00124","entrezGeneId":"474149"},{"alias":"NCRNA00124","entrezGeneId":"474149"},{"alias":"LINC00125","entrezGeneId":"474150"},{"alias":"NCRNA00125","entrezGeneId":"474150"},{"alias":"NCRNA00141","entrezGeneId":"474151"},{"alias":"NCRNA00142","entrezGeneId":"474152"},{"alias":"DXY9","entrezGeneId":"474159"},{"alias":"HDGFP","entrezGeneId":"474167"},{"alias":"LRRC37","entrezGeneId":"474170"},{"alias":"OA3_H","entrezGeneId":"474287"},{"alias":"bA375F2.1","entrezGeneId":"474337"},{"alias":"dJ323P24.2","entrezGeneId":"474343"},{"alias":"SPIN-2","entrezGeneId":"474343"},{"alias":"SPIN-2B","entrezGeneId":"474343"},{"alias":"SPIN2_duplicate","entrezGeneId":"474343"},{"alias":"TDRD26","entrezGeneId":"474343"},{"alias":"IAN-2","entrezGeneId":"474344"},{"alias":"IAN-6","entrezGeneId":"474344"},{"alias":"IAN2","entrezGeneId":"474344"},{"alias":"IAN6","entrezGeneId":"474344"},{"alias":"GIMAP3","entrezGeneId":"474345"},{"alias":"IAN4P","entrezGeneId":"474345"},{"alias":"UNQ933","entrezGeneId":"474354"},{"alias":"UNQ9338","entrezGeneId":"474354"},{"alias":"VKGE9338","entrezGeneId":"474354"},{"alias":"H2A.Bbd","entrezGeneId":"474381"},{"alias":"H2A.B","entrezGeneId":"474382"},{"alias":"H2A.Bbd","entrezGeneId":"474382"},{"alias":"Psi3Rac1","entrezGeneId":"492295"},{"alias":"C8orf22","entrezGeneId":"492307"},{"alias":"C5orf53","entrezGeneId":"492311"},{"alias":"6330578E17Rik","entrezGeneId":"493753"},{"alias":"C2orf64","entrezGeneId":"493753"},{"alias":"CEMCOX3","entrezGeneId":"493753"},{"alias":"Pet191","entrezGeneId":"493753"},{"alias":"bK14H9.3","entrezGeneId":"493812"},{"alias":"CTA-14H9.3","entrezGeneId":"493812"},{"alias":"dJ193B12.5","entrezGeneId":"493813"},{"alias":"bA537H15.5","entrezGeneId":"493816"},{"alias":"p373c6.7","entrezGeneId":"493821"},{"alias":"D6S2711","entrezGeneId":"493824"},{"alias":"dJ313I6.8","entrezGeneId":"493824"},{"alias":"PRD51p","entrezGeneId":"493824"},{"alias":"POLR2LP","entrezGeneId":"493825"},{"alias":"MG53","entrezGeneId":"493829"},{"alias":"ERIS","entrezGeneId":"493856"},{"alias":"Miner1","entrezGeneId":"493856"},{"alias":"NAF-1","entrezGeneId":"493856"},{"alias":"WFS2","entrezGeneId":"493856"},{"alias":"ZCD2","entrezGeneId":"493856"},{"alias":"NY-SAR-79","entrezGeneId":"493860"},{"alias":"NS4EB","entrezGeneId":"493861"},{"alias":"NSE4B","entrezGeneId":"493861"},{"alias":"NSMCE4B","entrezGeneId":"493861"},{"alias":"ARCC1","entrezGeneId":"493862"},{"alias":"EPLA847","entrezGeneId":"493869"},{"alias":"GPx-8","entrezGeneId":"493869"},{"alias":"GSHPx-8","entrezGeneId":"493869"},{"alias":"UNQ847","entrezGeneId":"493869"},{"alias":"C11orf18","entrezGeneId":"493900"},{"alias":"HEL-S-85p","entrezGeneId":"493901"},{"alias":"RAI1","entrezGeneId":"493901"},{"alias":"DIPAS","entrezGeneId":"493913"},{"alias":"NCRNA00156","entrezGeneId":"493913"},{"alias":"PAPPA-AS","entrezGeneId":"493913"},{"alias":"PAPPAAS","entrezGeneId":"493913"},{"alias":"PAPPAS","entrezGeneId":"493913"},{"alias":"TAF2C2","entrezGeneId":"493913"},{"alias":"TAF4B","entrezGeneId":"493913"},{"alias":"TAFII105","entrezGeneId":"493913"},{"alias":"bA435O5.3","entrezGeneId":"493987"},{"alias":"RBM1","entrezGeneId":"494115"},{"alias":"CT11.6","entrezGeneId":"494118"},{"alias":"CT11.7","entrezGeneId":"494119"},{"alias":"SPANX-N2","entrezGeneId":"494119"},{"alias":"GCG1","entrezGeneId":"494143"},{"alias":"CT11.10","entrezGeneId":"494197"},{"alias":"SPANX-N5","entrezGeneId":"494197"},{"alias":"hsa-mir-361","entrezGeneId":"494323"},{"alias":"mir-361","entrezGeneId":"494323"},{"alias":"MIRN361","entrezGeneId":"494323"},{"alias":"hsa-mir-375","entrezGeneId":"494324"},{"alias":"mir-375","entrezGeneId":"494324"},{"alias":"MIRN375","entrezGeneId":"494324"},{"alias":"miRNA375","entrezGeneId":"494324"},{"alias":"mir-376a-1","entrezGeneId":"494325"},{"alias":"MIR376A-1","entrezGeneId":"494325"},{"alias":"MIRN376A","entrezGeneId":"494325"},{"alias":"MIRN376A-1","entrezGeneId":"494325"},{"alias":"MIRN376A1","entrezGeneId":"494325"},{"alias":"hsa-mir-377","entrezGeneId":"494326"},{"alias":"mir-377","entrezGeneId":"494326"},{"alias":"MIRN377","entrezGeneId":"494326"},{"alias":"hsa-mir-378","entrezGeneId":"494327"},{"alias":"hsa-mir-378a","entrezGeneId":"494327"},{"alias":"MIR378","entrezGeneId":"494327"},{"alias":"MIRN378","entrezGeneId":"494327"},{"alias":"miRNA378","entrezGeneId":"494327"},{"alias":"hsa-mir-379","entrezGeneId":"494328"},{"alias":"mir-379","entrezGeneId":"494328"},{"alias":"MIRN379","entrezGeneId":"494328"},{"alias":"hsa-mir-380","entrezGeneId":"494329"},{"alias":"mir-380","entrezGeneId":"494329"},{"alias":"MIR380-3p","entrezGeneId":"494329"},{"alias":"MIRN380","entrezGeneId":"494329"},{"alias":"hsa-mir-381","entrezGeneId":"494330"},{"alias":"mir-381","entrezGeneId":"494330"},{"alias":"MIRN381","entrezGeneId":"494330"},{"alias":"hsa-mir-382","entrezGeneId":"494331"},{"alias":"mir-382","entrezGeneId":"494331"},{"alias":"MIRN382","entrezGeneId":"494331"},{"alias":"hsa-mir-383","entrezGeneId":"494332"},{"alias":"mir-383","entrezGeneId":"494332"},{"alias":"MIRN383","entrezGeneId":"494332"},{"alias":"hsa-mir-384","entrezGeneId":"494333"},{"alias":"MIRN384","entrezGeneId":"494333"},{"alias":"MIRN422A","entrezGeneId":"494334"},{"alias":"hsa-mir-423","entrezGeneId":"494335"},{"alias":"mir-423","entrezGeneId":"494335"},{"alias":"MIRN423","entrezGeneId":"494335"},{"alias":"hsa-mir-424","entrezGeneId":"494336"},{"alias":"mir-424","entrezGeneId":"494336"},{"alias":"MIR322","entrezGeneId":"494336"},{"alias":"MIRN424","entrezGeneId":"494336"},{"alias":"miRNA424","entrezGeneId":"494336"},{"alias":"hsa-mir-425","entrezGeneId":"494337"},{"alias":"mir-425","entrezGeneId":"494337"},{"alias":"MIRN425","entrezGeneId":"494337"},{"alias":"COILP-2","entrezGeneId":"494447"},{"alias":"ARKL2","entrezGeneId":"494470"},{"alias":"RNF111L2","entrezGeneId":"494470"},{"alias":"DFNB59","entrezGeneId":"494513"},{"alias":"C18orf56","entrezGeneId":"494514"},{"alias":"WEE1B","entrezGeneId":"494551"},{"alias":"A6ps2","entrezGeneId":"494555"},{"alias":"PTK9P2","entrezGeneId":"494555"},{"alias":"C9orf135-AS1","entrezGeneId":"494558"},{"alias":"MRCL2","entrezGeneId":"497190"},{"alias":"ANTI-BDNF","entrezGeneId":"497258"},{"alias":"BDNF","entrezGeneId":"497258"},{"alias":"BDNF-AS1","entrezGeneId":"497258"},{"alias":"BDNFAS","entrezGeneId":"497258"},{"alias":"BDNFOS","entrezGeneId":"497258"},{"alias":"NCRNA00049","entrezGeneId":"497258"},{"alias":"BEYLA","entrezGeneId":"497634"},{"alias":"NCRNA00293","entrezGeneId":"497634"},{"alias":"AIB3","entrezGeneId":"497657"},{"alias":"A1BG-AS","entrezGeneId":"503538"},{"alias":"A1BGAS","entrezGeneId":"503538"},{"alias":"NCRNA00181","entrezGeneId":"503538"},{"alias":"bA108K14.1","entrezGeneId":"503542"},{"alias":"SHADOO","entrezGeneId":"503542"},{"alias":"SHO","entrezGeneId":"503542"},{"alias":"HsT21816","entrezGeneId":"503614"},{"alias":"BD-4","entrezGeneId":"503618"},{"alias":"DEFB-4","entrezGeneId":"503618"},{"alias":"hBD-4","entrezGeneId":"503618"},{"alias":"TPRX2P1","entrezGeneId":"503627"},{"alias":"TPRXP1","entrezGeneId":"503627"},{"alias":"TPRXP2","entrezGeneId":"503628"},{"alias":"LINC01296","entrezGeneId":"503638"},{"alias":"LOH2CR12","entrezGeneId":"503693"},{"alias":"DEFB-8","entrezGeneId":"503694"},{"alias":"DEFB108","entrezGeneId":"503694"},{"alias":"DEFB108P1","entrezGeneId":"503694"},{"alias":"DEFB108P2","entrezGeneId":"503837"},{"alias":"DEFB109P3","entrezGeneId":"503838"},{"alias":"DEFB109P2","entrezGeneId":"503839"},{"alias":"DEFB108P4","entrezGeneId":"503840"},{"alias":"BD-6","entrezGeneId":"503841"},{"alias":"DEFB-6","entrezGeneId":"503841"},{"alias":"BD-5","entrezGeneId":"504180"},{"alias":"DEFB-5","entrezGeneId":"504180"},{"alias":"DEFB108P3","entrezGeneId":"504185"},{"alias":"OR9G1","entrezGeneId":"504191"},{"alias":"CT45-6","entrezGeneId":"541465"},{"alias":"CT45.6","entrezGeneId":"541465"},{"alias":"CT45","entrezGeneId":"541466"},{"alias":"CT45-1","entrezGeneId":"541466"},{"alias":"CT45.1","entrezGeneId":"541466"},{"alias":"C1orf190","entrezGeneId":"541468"},{"alias":"LRAP35a","entrezGeneId":"541468"},{"alias":"LRP35A","entrezGeneId":"541468"},{"alias":"AGD2","entrezGeneId":"541471"},{"alias":"LINC00978","entrezGeneId":"541471"},{"alias":"lncRNA-AWPPH","entrezGeneId":"541471"},{"alias":"MIR4435-1HG","entrezGeneId":"541471"},{"alias":"MORRBID","entrezGeneId":"541471"},{"alias":"HSP90Bf","entrezGeneId":"541611"},{"alias":"C1QTNF9B-AS1","entrezGeneId":"542767"},{"alias":"CT5.4","entrezGeneId":"548313"},{"alias":"GIYD1","entrezGeneId":"548593"},{"alias":"CD158c","entrezGeneId":"548594"},{"alias":"KIR2DS6","entrezGeneId":"548594"},{"alias":"KIR3DS2P","entrezGeneId":"548594"},{"alias":"KIR48","entrezGeneId":"548594"},{"alias":"KIRX","entrezGeneId":"548594"},{"alias":"CKMT1","entrezGeneId":"548596"},{"alias":"mia-CK","entrezGeneId":"548596"},{"alias":"U-MtCK","entrezGeneId":"548596"},{"alias":"DUTL","entrezGeneId":"548637"},{"alias":"POLR2J2","entrezGeneId":"548644"},{"alias":"RPB11b1","entrezGeneId":"548644"},{"alias":"RPB11b2","entrezGeneId":"548644"},{"alias":"bA16L21.2.1","entrezGeneId":"548645"},{"alias":"LINC01420","entrezGeneId":"550643"},{"alias":"NoBody","entrezGeneId":"550643"},{"alias":"C8orf24","entrezGeneId":"552853"},{"alias":"C8orf25","entrezGeneId":"552859"},{"alias":"NCRNA00251","entrezGeneId":"552859"},{"alias":"C8orf26","entrezGeneId":"552860"},{"alias":"NCRNA00252","entrezGeneId":"552860"},{"alias":"lnc-SCA7","entrezGeneId":"552889"},{"alias":"BOLA2A","entrezGeneId":"552900"},{"alias":"BOLA2B","entrezGeneId":"552900"},{"alias":"My016","entrezGeneId":"552900"},{"alias":"SLC22A5-AS1","entrezGeneId":"553103"},{"alias":"FERP","entrezGeneId":"553112"},{"alias":"FERps","entrezGeneId":"553112"},{"alias":"ABP32","entrezGeneId":"553115"},{"alias":"PEF1A","entrezGeneId":"553115"},{"alias":"RPL39_7_406","entrezGeneId":"553117"},{"alias":"STK33P","entrezGeneId":"553118"},{"alias":"STK33ps","entrezGeneId":"553118"},{"alias":"TLK2ps2","entrezGeneId":"553121"},{"alias":"KIR2DL5","entrezGeneId":"553128"},{"alias":"KIR2DL5.2","entrezGeneId":"553128"},{"alias":"KIR2DLX","entrezGeneId":"553128"},{"alias":"bA195O1.1","entrezGeneId":"554049"},{"alias":"DNM1DN7-2","entrezGeneId":"554175"},{"alias":"DNM1DN7@","entrezGeneId":"554175"},{"alias":"ADCME","entrezGeneId":"554188"},{"alias":"BAFME2","entrezGeneId":"554188"},{"alias":"FAME","entrezGeneId":"554188"},{"alias":"FAME2","entrezGeneId":"554188"},{"alias":"hsa-lnc-31","entrezGeneId":"554202"},{"alias":"LncHIFCAR","entrezGeneId":"554202"},{"alias":"DCBALD06","entrezGeneId":"554203"},{"alias":"ENOX","entrezGeneId":"554203"},{"alias":"LINC00183","entrezGeneId":"554203"},{"alias":"NCRNA00183","entrezGeneId":"554203"},{"alias":"hsa-mir-429","entrezGeneId":"554210"},{"alias":"mir-429","entrezGeneId":"554210"},{"alias":"MIRN429","entrezGeneId":"554210"},{"alias":"hsa-mir-448","entrezGeneId":"554212"},{"alias":"MIRN448","entrezGeneId":"554212"},{"alias":"miRNA448","entrezGeneId":"554212"},{"alias":"hsa-mir-449","entrezGeneId":"554213"},{"alias":"mir-449a","entrezGeneId":"554213"},{"alias":"MIRN449","entrezGeneId":"554213"},{"alias":"MIRN449A","entrezGeneId":"554213"},{"alias":"hsa-mir-450","entrezGeneId":"554214"},{"alias":"mir-450a-1","entrezGeneId":"554214"},{"alias":"MIRN450","entrezGeneId":"554214"},{"alias":"MIRN450-1","entrezGeneId":"554214"},{"alias":"MIRN450A-1","entrezGeneId":"554214"},{"alias":"MIRN450A1","entrezGeneId":"554214"},{"alias":"HISPPD2B","entrezGeneId":"554224"},{"alias":"HISPPD2BP","entrezGeneId":"554224"},{"alias":"STRCP","entrezGeneId":"554225"},{"alias":"ANKRD30BP3","entrezGeneId":"554226"},{"alias":"NCRNA00164","entrezGeneId":"554226"},{"alias":"RPL36A_15_1127","entrezGeneId":"554234"},{"alias":"C1orf98","entrezGeneId":"554279"},{"alias":"SMIM16","entrezGeneId":"554279"},{"alias":"KIR15","entrezGeneId":"554300"},{"alias":"KIR2DL6","entrezGeneId":"554300"},{"alias":"KIRY","entrezGeneId":"554300"},{"alias":"KIRZ","entrezGeneId":"554300"},{"alias":"H4/o","entrezGeneId":"554313"},{"alias":"FAM233A","entrezGeneId":"572558"},{"alias":"DUSP5P","entrezGeneId":"574029"},{"alias":"hsa-mir-362","entrezGeneId":"574030"},{"alias":"mir-362","entrezGeneId":"574030"},{"alias":"MIRN362","entrezGeneId":"574030"},{"alias":"hsa-mir-363","entrezGeneId":"574031"},{"alias":"MIR-363","entrezGeneId":"574031"},{"alias":"MIRN363","entrezGeneId":"574031"},{"alias":"hsa-mir-20b","entrezGeneId":"574032"},{"alias":"mir-20b","entrezGeneId":"574032"},{"alias":"MIRN20B","entrezGeneId":"574032"},{"alias":"hsa-mir-18b","entrezGeneId":"574033"},{"alias":"mir-18b","entrezGeneId":"574033"},{"alias":"MIRN18B","entrezGeneId":"574033"},{"alias":"hsa-mir-433","entrezGeneId":"574034"},{"alias":"mir-433","entrezGeneId":"574034"},{"alias":"MIRN433","entrezGeneId":"574034"},{"alias":"miRNA433","entrezGeneId":"574034"},{"alias":"C1orf133","entrezGeneId":"574036"},{"alias":"hsa-mir-431","entrezGeneId":"574038"},{"alias":"mir-431","entrezGeneId":"574038"},{"alias":"MIRN431","entrezGeneId":"574038"},{"alias":"miRNA431","entrezGeneId":"574038"},{"alias":"ACA6","entrezGeneId":"574040"},{"alias":"ACA10","entrezGeneId":"574042"},{"alias":"SNORA10A","entrezGeneId":"574042"},{"alias":"JOAG3","entrezGeneId":"574077"},{"alias":"JOAG2","entrezGeneId":"574078"},{"alias":"C1orf138","entrezGeneId":"574406"},{"alias":"C1orf145","entrezGeneId":"574407"},{"alias":"mir-329-1","entrezGeneId":"574408"},{"alias":"MIRN329-1","entrezGeneId":"574408"},{"alias":"mir-329-2","entrezGeneId":"574409"},{"alias":"MIRN329-2","entrezGeneId":"574409"},{"alias":"hsa-mir-453","entrezGeneId":"574410"},{"alias":"mir-323b","entrezGeneId":"574410"},{"alias":"MIR453","entrezGeneId":"574410"},{"alias":"MIRN453","entrezGeneId":"574410"},{"alias":"hsa-mir-451","entrezGeneId":"574411"},{"alias":"hsa-mir-451a","entrezGeneId":"574411"},{"alias":"mir-451a","entrezGeneId":"574411"},{"alias":"MIR451","entrezGeneId":"574411"},{"alias":"MIRN451","entrezGeneId":"574411"},{"alias":"hsa-mir-452","entrezGeneId":"574412"},{"alias":"mir-452","entrezGeneId":"574412"},{"alias":"MIRN452","entrezGeneId":"574412"},{"alias":"hsa-mir-409","entrezGeneId":"574413"},{"alias":"mir-409","entrezGeneId":"574413"},{"alias":"MIRN409","entrezGeneId":"574413"},{"alias":"C1orf148","entrezGeneId":"574432"},{"alias":"IBA57-AS1","entrezGeneId":"574432"},{"alias":"hsa-mir-412","entrezGeneId":"574433"},{"alias":"mir-412","entrezGeneId":"574433"},{"alias":"MIRN412","entrezGeneId":"574433"},{"alias":"hsa-mir-410","entrezGeneId":"574434"},{"alias":"mir-410","entrezGeneId":"574434"},{"alias":"MIRN410","entrezGeneId":"574434"},{"alias":"mir-376b","entrezGeneId":"574435"},{"alias":"MIRN376B","entrezGeneId":"574435"},{"alias":"hsa-mir-485","entrezGeneId":"574436"},{"alias":"mir-485","entrezGeneId":"574436"},{"alias":"MIRN485","entrezGeneId":"574436"},{"alias":"hsa-mir-488","entrezGeneId":"574441"},{"alias":"mir-488","entrezGeneId":"574441"},{"alias":"MIRN488","entrezGeneId":"574441"},{"alias":"hsa-mir-489","entrezGeneId":"574442"},{"alias":"mir-489","entrezGeneId":"574442"},{"alias":"MIRN489","entrezGeneId":"574442"},{"alias":"hsa-mir-490","entrezGeneId":"574443"},{"alias":"miR-490","entrezGeneId":"574443"},{"alias":"MIRN490","entrezGeneId":"574443"},{"alias":"hsa-mir-491","entrezGeneId":"574444"},{"alias":"mir-491","entrezGeneId":"574444"},{"alias":"MIRN491","entrezGeneId":"574444"},{"alias":"hsa-mir-511","entrezGeneId":"574445"},{"alias":"hsa-mir-511-2","entrezGeneId":"574445"},{"alias":"mir-511","entrezGeneId":"574445"},{"alias":"MIR511-1","entrezGeneId":"574445"},{"alias":"MIR511-2","entrezGeneId":"574445"},{"alias":"MIRN511-1","entrezGeneId":"574445"},{"alias":"MIRN511-2","entrezGeneId":"574445"},{"alias":"mir-146b","entrezGeneId":"574447"},{"alias":"MIRN146B","entrezGeneId":"574447"},{"alias":"miRNA146B","entrezGeneId":"574447"},{"alias":"hsa-mir-202","entrezGeneId":"574448"},{"alias":"mir-202","entrezGeneId":"574448"},{"alias":"MIRN202","entrezGeneId":"574448"},{"alias":"hsa-mir-492","entrezGeneId":"574449"},{"alias":"MIRN492","entrezGeneId":"574449"},{"alias":"hsa-mir-493","entrezGeneId":"574450"},{"alias":"mir-493","entrezGeneId":"574450"},{"alias":"MIRN493","entrezGeneId":"574450"},{"alias":"hsa-mir-432","entrezGeneId":"574451"},{"alias":"mir-432","entrezGeneId":"574451"},{"alias":"MIRN432","entrezGeneId":"574451"},{"alias":"hsa-mir-494","entrezGeneId":"574452"},{"alias":"mir-494","entrezGeneId":"574452"},{"alias":"MIRN494","entrezGeneId":"574452"},{"alias":"hsa-mir-495","entrezGeneId":"574453"},{"alias":"mir-495","entrezGeneId":"574453"},{"alias":"MIRN495","entrezGeneId":"574453"},{"alias":"hsa-mir-496","entrezGeneId":"574454"},{"alias":"mir-496","entrezGeneId":"574454"},{"alias":"MIRN496","entrezGeneId":"574454"},{"alias":"mir-193b","entrezGeneId":"574455"},{"alias":"MIRN193B","entrezGeneId":"574455"},{"alias":"hsa-mir-497","entrezGeneId":"574456"},{"alias":"mir-497","entrezGeneId":"574456"},{"alias":"MIRN497","entrezGeneId":"574456"},{"alias":"mir-181d","entrezGeneId":"574457"},{"alias":"MIRN181D","entrezGeneId":"574457"},{"alias":"mir-512-1","entrezGeneId":"574458"},{"alias":"MIRN512-1","entrezGeneId":"574458"},{"alias":"mir-512-2","entrezGeneId":"574459"},{"alias":"MIRN512-2","entrezGeneId":"574459"},{"alias":"hsa-mir-498","entrezGeneId":"574460"},{"alias":"mir-498","entrezGeneId":"574460"},{"alias":"MIRN498","entrezGeneId":"574460"},{"alias":"MIRN520E","entrezGeneId":"574461"},{"alias":"MIRN515-1","entrezGeneId":"574462"},{"alias":"MIRN519E","entrezGeneId":"574463"},{"alias":"mir-520f","entrezGeneId":"574464"},{"alias":"MIRN520F","entrezGeneId":"574464"},{"alias":"MIRN515-2","entrezGeneId":"574465"},{"alias":"mir-519c","entrezGeneId":"574466"},{"alias":"MIRN519C","entrezGeneId":"574466"},{"alias":"MIRN520A","entrezGeneId":"574467"},{"alias":"MIRN526B","entrezGeneId":"574468"},{"alias":"mir-519b","entrezGeneId":"574469"},{"alias":"MIRN519B","entrezGeneId":"574469"},{"alias":"hsa-mir-525","entrezGeneId":"574470"},{"alias":"MIRN525","entrezGeneId":"574470"},{"alias":"hsa-mir-523","entrezGeneId":"574471"},{"alias":"mir-523","entrezGeneId":"574471"},{"alias":"MIRN523","entrezGeneId":"574471"},{"alias":"MIRN518F","entrezGeneId":"574472"},{"alias":"MIRN520B","entrezGeneId":"574473"},{"alias":"mir-518b","entrezGeneId":"574474"},{"alias":"MIRN518B","entrezGeneId":"574474"},{"alias":"MIRN526A-1","entrezGeneId":"574475"},{"alias":"MIRN526A1","entrezGeneId":"574475"},{"alias":"MIRN520C","entrezGeneId":"574476"},{"alias":"MIRN518C","entrezGeneId":"574477"},{"alias":"hsa-mir-524","entrezGeneId":"574478"},{"alias":"mir-524","entrezGeneId":"574478"},{"alias":"MIRN524","entrezGeneId":"574478"},{"alias":"mir-517a","entrezGeneId":"574479"},{"alias":"MIRN517A","entrezGeneId":"574479"},{"alias":"mir-519d","entrezGeneId":"574480"},{"alias":"MIRN519D","entrezGeneId":"574480"},{"alias":"mir-521-2","entrezGeneId":"574481"},{"alias":"MIRN521-2","entrezGeneId":"574481"},{"alias":"MIRN520D","entrezGeneId":"574482"},{"alias":"mir-517b","entrezGeneId":"574483"},{"alias":"MIRN517B","entrezGeneId":"574483"},{"alias":"mir-520g","entrezGeneId":"574484"},{"alias":"MIRN520G","entrezGeneId":"574484"},{"alias":"mir-516b-2","entrezGeneId":"574485"},{"alias":"MIRN516-3","entrezGeneId":"574485"},{"alias":"MIRN516B-2","entrezGeneId":"574485"},{"alias":"MIRN516B2","entrezGeneId":"574485"},{"alias":"MIRN526A-2","entrezGeneId":"574486"},{"alias":"MIRN526A2","entrezGeneId":"574486"},{"alias":"mir-518e","entrezGeneId":"574487"},{"alias":"MIRN518E","entrezGeneId":"574487"},{"alias":"mir-518a-1","entrezGeneId":"574488"},{"alias":"MIRN518A-1","entrezGeneId":"574488"},{"alias":"MIRN518A1","entrezGeneId":"574488"},{"alias":"MIRN518D","entrezGeneId":"574489"},{"alias":"mir-516b-1","entrezGeneId":"574490"},{"alias":"MIRN516-4","entrezGeneId":"574490"},{"alias":"MIRN516B-1","entrezGeneId":"574490"},{"alias":"MIRN516B1","entrezGeneId":"574490"},{"alias":"mir-518a-2","entrezGeneId":"574491"},{"alias":"MIRN518A-2","entrezGeneId":"574491"},{"alias":"MIRN518A2","entrezGeneId":"574491"},{"alias":"MIRN517C","entrezGeneId":"574492"},{"alias":"MIRN520H","entrezGeneId":"574493"},{"alias":"mir-521-1","entrezGeneId":"574494"},{"alias":"MIRN521-1","entrezGeneId":"574494"},{"alias":"hsa-mir-522","entrezGeneId":"574495"},{"alias":"mir-522","entrezGeneId":"574495"},{"alias":"MIRN522","entrezGeneId":"574495"},{"alias":"mir-519a-1","entrezGeneId":"574496"},{"alias":"MIRN519A-1","entrezGeneId":"574496"},{"alias":"MIRN519A1","entrezGeneId":"574496"},{"alias":"hsa-mir-527","entrezGeneId":"574497"},{"alias":"MIRN527","entrezGeneId":"574497"},{"alias":"mir-516a-1","entrezGeneId":"574498"},{"alias":"MIRN516-1","entrezGeneId":"574498"},{"alias":"MIRN516A-1","entrezGeneId":"574498"},{"alias":"MIRN516A1","entrezGeneId":"574498"},{"alias":"mir-516a-2","entrezGeneId":"574499"},{"alias":"MIRN516-2","entrezGeneId":"574499"},{"alias":"MIRN516A-2","entrezGeneId":"574499"},{"alias":"MIRN516A2","entrezGeneId":"574499"},{"alias":"mir-519a-2","entrezGeneId":"574500"},{"alias":"MIRN519A-2","entrezGeneId":"574500"},{"alias":"MIRN519A2","entrezGeneId":"574500"},{"alias":"hsa-mir-499a","entrezGeneId":"574501"},{"alias":"mir-499a","entrezGeneId":"574501"},{"alias":"MIR499","entrezGeneId":"574501"},{"alias":"MIRN499","entrezGeneId":"574501"},{"alias":"hsa-mir-500","entrezGeneId":"574502"},{"alias":"hsa-mir-500a","entrezGeneId":"574502"},{"alias":"mir-500a","entrezGeneId":"574502"},{"alias":"MIR500","entrezGeneId":"574502"},{"alias":"MIRN500","entrezGeneId":"574502"},{"alias":"hsa-mir-501","entrezGeneId":"574503"},{"alias":"mir-501","entrezGeneId":"574503"},{"alias":"MIRN501","entrezGeneId":"574503"},{"alias":"hsa-mir-502","entrezGeneId":"574504"},{"alias":"mir-502","entrezGeneId":"574504"},{"alias":"MIRN502","entrezGeneId":"574504"},{"alias":"mir-450a-2","entrezGeneId":"574505"},{"alias":"MIRN450-2","entrezGeneId":"574505"},{"alias":"MIRN450A-2","entrezGeneId":"574505"},{"alias":"MIRN450A2","entrezGeneId":"574505"},{"alias":"hsa-mir-503","entrezGeneId":"574506"},{"alias":"mir-503","entrezGeneId":"574506"},{"alias":"MIRN503","entrezGeneId":"574506"},{"alias":"hsa-mir-504","entrezGeneId":"574507"},{"alias":"mir-504","entrezGeneId":"574507"},{"alias":"MIRN504","entrezGeneId":"574507"},{"alias":"hsa-mir-505","entrezGeneId":"574508"},{"alias":"mir-505","entrezGeneId":"574508"},{"alias":"MIRN505","entrezGeneId":"574508"},{"alias":"MIRN513-1","entrezGeneId":"574509"},{"alias":"MIRN513A1","entrezGeneId":"574509"},{"alias":"hsa-mir-513a-2","entrezGeneId":"574510"},{"alias":"MIRN513-2","entrezGeneId":"574510"},{"alias":"MIRN513A-2","entrezGeneId":"574510"},{"alias":"MIRN513A2","entrezGeneId":"574510"},{"alias":"hsa-mir-506","entrezGeneId":"574511"},{"alias":"mir-506","entrezGeneId":"574511"},{"alias":"MIRN506","entrezGeneId":"574511"},{"alias":"hsa-mir-507","entrezGeneId":"574512"},{"alias":"mir-507","entrezGeneId":"574512"},{"alias":"MIRN507","entrezGeneId":"574512"},{"alias":"hsa-mir-508","entrezGeneId":"574513"},{"alias":"MIRN508","entrezGeneId":"574513"},{"alias":"hsa-mir-509","entrezGeneId":"574514"},{"alias":"mir-509-1","entrezGeneId":"574514"},{"alias":"MIRN509","entrezGeneId":"574514"},{"alias":"MIRN509-1","entrezGeneId":"574514"},{"alias":"hsa-mir-510","entrezGeneId":"574515"},{"alias":"mir-510","entrezGeneId":"574515"},{"alias":"MIRN510","entrezGeneId":"574515"},{"alias":"hsa-mir-514a-1","entrezGeneId":"574516"},{"alias":"mir-514a-1","entrezGeneId":"574516"},{"alias":"MIR514-1","entrezGeneId":"574516"},{"alias":"MIRN514-1","entrezGeneId":"574516"},{"alias":"hsa-mir-514a-2","entrezGeneId":"574517"},{"alias":"MIR514-2","entrezGeneId":"574517"},{"alias":"MIRN514-2","entrezGeneId":"574517"},{"alias":"hsa-mir-514a-3","entrezGeneId":"574518"},{"alias":"MIR514-3","entrezGeneId":"574518"},{"alias":"MIRN514-3","entrezGeneId":"574518"},{"alias":"U101","entrezGeneId":"594837"},{"alias":"HBII-429","entrezGeneId":"594838"},{"alias":"ACA33","entrezGeneId":"594839"},{"alias":"NCRNA00070","entrezGeneId":"594840"},{"alias":"SAS-ZFAT","entrezGeneId":"594840"},{"alias":"ZFAT-AS","entrezGeneId":"594840"},{"alias":"ZFATAS","entrezGeneId":"594840"},{"alias":"WDR45P","entrezGeneId":"594841"},{"alias":"HAS2-AS","entrezGeneId":"594842"},{"alias":"HAS2AS","entrezGeneId":"594842"},{"alias":"HASNT","entrezGeneId":"594842"},{"alias":"NCRNA00077","entrezGeneId":"594842"},{"alias":"CPX-III","entrezGeneId":"594855"},{"alias":"CPXIII","entrezGeneId":"594855"},{"alias":"Nbla11589","entrezGeneId":"594855"},{"alias":"U16","entrezGeneId":"595097"},{"alias":"U18A","entrezGeneId":"595098"},{"alias":"U18B","entrezGeneId":"595099"},{"alias":"U18C","entrezGeneId":"595100"},{"alias":"KARMA","entrezGeneId":"606293"},{"alias":"KLK31P","entrezGeneId":"606293"},{"alias":"KRSP1","entrezGeneId":"606293"},{"alias":"PsiKLK1","entrezGeneId":"606293"},{"alias":"YKLK1","entrezGeneId":"606293"},{"alias":"HBII-202","entrezGeneId":"606500"},{"alias":"G4DM","entrezGeneId":"606553"},{"alias":"LRRD1-AS1","entrezGeneId":"613126"},{"alias":"DEFB136","entrezGeneId":"613209"},{"alias":"DEFB137","entrezGeneId":"613210"},{"alias":"KABE","entrezGeneId":"613212"},{"alias":"GM921","entrezGeneId":"613227"},{"alias":"DEFA1","entrezGeneId":"613253"},{"alias":"DEFA3","entrezGeneId":"613253"},{"alias":"DEFT1P","entrezGeneId":"613253"},{"alias":"FDPSL2","entrezGeneId":"619190"},{"alias":"FDPSL2A","entrezGeneId":"619190"},{"alias":"FPSL2","entrezGeneId":"619190"},{"alias":"C6orf225","entrezGeneId":"619208"},{"alias":"HsT2542","entrezGeneId":"619212"},{"alias":"PA2G4L4","entrezGeneId":"619212"},{"alias":"Gig1","entrezGeneId":"619279"},{"alias":"C8orf69","entrezGeneId":"619344"},{"alias":"SETP13","entrezGeneId":"619349"},{"alias":"C8orf75","entrezGeneId":"619351"},{"alias":"TSLNC8","entrezGeneId":"619351"},{"alias":"FKSG89","entrezGeneId":"619373"},{"alias":"GOAT","entrezGeneId":"619373"},{"alias":"OACT4","entrezGeneId":"619373"},{"alias":"mgU2-19/30","entrezGeneId":"619383"},{"alias":"Z32","entrezGeneId":"619383"},{"alias":"FTLE","entrezGeneId":"619399"},{"alias":"CATCN1","entrezGeneId":"619404"},{"alias":"VAMAS5","entrezGeneId":"619405"},{"alias":"C8orf43","entrezGeneId":"619434"},{"alias":"NCRNA00051","entrezGeneId":"619434"},{"alias":"HsT24280","entrezGeneId":"619443"},{"alias":"RPS26_15_908","entrezGeneId":"619443"},{"alias":"bA567J2.2","entrezGeneId":"619445"},{"alias":"bA40F6.3","entrezGeneId":"619448"},{"alias":"RPS12_9_1071","entrezGeneId":"619448"},{"alias":"HsT23291","entrezGeneId":"619452"},{"alias":"RPS29_12_897","entrezGeneId":"619452"},{"alias":"CXorf18","entrezGeneId":"619455"},{"alias":"UBE2WP","entrezGeneId":"619457"},{"alias":"envK6","entrezGeneId":"619465"},{"alias":"ERVK8","entrezGeneId":"619465"},{"alias":"HERV-K115","entrezGeneId":"619465"},{"alias":"PR","entrezGeneId":"619465"},{"alias":"Protease","entrezGeneId":"619465"},{"alias":"Proteinase","entrezGeneId":"619465"},{"alias":"CYDELq11","entrezGeneId":"619469"},{"alias":"SCO","entrezGeneId":"619469"},{"alias":"SPGFY1","entrezGeneId":"619469"},{"alias":"FGD2","entrezGeneId":"619477"},{"alias":"FGD3","entrezGeneId":"619477"},{"alias":"GCCD2","entrezGeneId":"619477"},{"alias":"SNORD74A","entrezGeneId":"619498"},{"alias":"U74","entrezGeneId":"619498"},{"alias":"Z18","entrezGeneId":"619498"},{"alias":"ACA27","entrezGeneId":"619499"},{"alias":"FSI","entrezGeneId":"619503"},{"alias":"ACA21","entrezGeneId":"619505"},{"alias":"C1orf191","entrezGeneId":"619518"},{"alias":"MST128","entrezGeneId":"619518"},{"alias":"MSTP128","entrezGeneId":"619518"},{"alias":"A6ps1","entrezGeneId":"619519"},{"alias":"PTK9P","entrezGeneId":"619519"},{"alias":"PTK9P1","entrezGeneId":"619519"},{"alias":"COME/ROM","entrezGeneId":"619538"},{"alias":"hsa-mir-483","entrezGeneId":"619552"},{"alias":"mir-483","entrezGeneId":"619552"},{"alias":"MIRN483","entrezGeneId":"619552"},{"alias":"hsa-mir-484","entrezGeneId":"619553"},{"alias":"mir-484","entrezGeneId":"619553"},{"alias":"MIRN484","entrezGeneId":"619553"},{"alias":"hsa-mir-486","entrezGeneId":"619554"},{"alias":"hsa-mir-486-1","entrezGeneId":"619554"},{"alias":"mir-486-1","entrezGeneId":"619554"},{"alias":"MIR486","entrezGeneId":"619554"},{"alias":"MIRN486","entrezGeneId":"619554"},{"alias":"hsa-mir-487","entrezGeneId":"619555"},{"alias":"mir-487a","entrezGeneId":"619555"},{"alias":"MIRN487","entrezGeneId":"619555"},{"alias":"MIRN487A","entrezGeneId":"619555"},{"alias":"hsa-mir-455","entrezGeneId":"619556"},{"alias":"mir-455","entrezGeneId":"619556"},{"alias":"MIRN455","entrezGeneId":"619556"},{"alias":"ACA3","entrezGeneId":"619562"},{"alias":"SNORA3","entrezGeneId":"619562"},{"alias":"SNORA45A","entrezGeneId":"619562"},{"alias":"ACA7","entrezGeneId":"619563"},{"alias":"HBII-240","entrezGeneId":"619564"},{"alias":"ACA52","entrezGeneId":"619565"},{"alias":"R39B","entrezGeneId":"619567"},{"alias":"SNR39B","entrezGeneId":"619567"},{"alias":"ACA4","entrezGeneId":"619568"},{"alias":"ACA41","entrezGeneId":"619569"},{"alias":"SNORA41A","entrezGeneId":"619569"},{"alias":"U95","entrezGeneId":"619570"},{"alias":"U96A","entrezGeneId":"619571"},{"alias":"RPL21_7_151","entrezGeneId":"641293"},{"alias":"RPL31_1_108","entrezGeneId":"641311"},{"alias":"SAR1P2","entrezGeneId":"641312"},{"alias":"SARA1P","entrezGeneId":"641312"},{"alias":"MRX92","entrezGeneId":"641339"},{"alias":"ZNF673B","entrezGeneId":"641339"},{"alias":"ACH2","entrezGeneId":"641371"},{"alias":"CTE-1","entrezGeneId":"641371"},{"alias":"LACH2","entrezGeneId":"641371"},{"alias":"C14orf42","entrezGeneId":"641372"},{"alias":"c14_5530","entrezGeneId":"641372"},{"alias":"NCRNA00194","entrezGeneId":"641373"},{"alias":"ACA19","entrezGeneId":"641451"},{"alias":"ACT","entrezGeneId":"641455"},{"alias":"P704P","entrezGeneId":"641455"},{"alias":"POTE14beta","entrezGeneId":"641455"},{"alias":"DEF109P1B","entrezGeneId":"641517"},{"alias":"DEFB109","entrezGeneId":"641517"},{"alias":"DEFB109P1B","entrezGeneId":"641517"},{"alias":"HBD9","entrezGeneId":"641517"},{"alias":"LEF1NAT","entrezGeneId":"641518"},{"alias":"bA380I20.1","entrezGeneId":"641556"},{"alias":"RPL36A_12_1002","entrezGeneId":"641556"},{"alias":"RPL23AP9","entrezGeneId":"641614"},{"alias":"RPL23A_34_1351","entrezGeneId":"641614"},{"alias":"RPL9_8_1354","entrezGeneId":"641616"},{"alias":"HBII-276HG","entrezGeneId":"641638"},{"alias":"NCRNA00058","entrezGeneId":"641638"},{"alias":"U87HG","entrezGeneId":"641638"},{"alias":"HBII-276","entrezGeneId":"641648"},{"alias":"U87","entrezGeneId":"641648"},{"alias":"DSPC3","entrezGeneId":"641649"},{"alias":"IFITMD6","entrezGeneId":"641649"},{"alias":"ARIA","entrezGeneId":"641700"},{"alias":"ECSM2","entrezGeneId":"641700"},{"alias":"F379","entrezGeneId":"641702"},{"alias":"RPL31_11_842","entrezGeneId":"641790"},{"alias":"FAM185B","entrezGeneId":"641808"},{"alias":"SLC23A4","entrezGeneId":"641842"},{"alias":"UNC93B2P","entrezGeneId":"641922"},{"alias":"SEPT13","entrezGeneId":"641977"},{"alias":"SEPT7B","entrezGeneId":"641977"},{"alias":"GAPDHL15","entrezGeneId":"642259"},{"alias":"GAPDL15","entrezGeneId":"642259"},{"alias":"RPL19_10_1014","entrezGeneId":"642306"},{"alias":"b55C20.4","entrezGeneId":"642317"},{"alias":"GAPDH-Lp","entrezGeneId":"642317"},{"alias":"GAPDP15","entrezGeneId":"642317"},{"alias":"RPL36A_13_923","entrezGeneId":"642320"},{"alias":"C10orf109","entrezGeneId":"642394"},{"alias":"NCRNA00168","entrezGeneId":"642394"},{"alias":"GOLGA6L21P","entrezGeneId":"642402"},{"alias":"bA479O17.1","entrezGeneId":"642413"},{"alias":"CTSL1P6","entrezGeneId":"642413"},{"alias":"CTSLL6","entrezGeneId":"642413"},{"alias":"TRIM53B","entrezGeneId":"642425"},{"alias":"TRIM53L","entrezGeneId":"642425"},{"alias":"TRIM53L1","entrezGeneId":"642425"},{"alias":"TRIM80P","entrezGeneId":"642425"},{"alias":"ADH5B","entrezGeneId":"642443"},{"alias":"bA707M13.2","entrezGeneId":"642443"},{"alias":"RCADH5","entrezGeneId":"642443"},{"alias":"RPL7_26_1472","entrezGeneId":"642451"},{"alias":"ANKRD30BP","entrezGeneId":"642460"},{"alias":"C21orf110","entrezGeneId":"642460"},{"alias":"PRED4","entrezGeneId":"642460"},{"alias":"C8orf73","entrezGeneId":"642475"},{"alias":"RPL29_15_1277","entrezGeneId":"642493"},{"alias":"DSPD2","entrezGeneId":"642515"},{"alias":"IFITMD8","entrezGeneId":"642515"},{"alias":"AGAP-9","entrezGeneId":"642517"},{"alias":"bA301J7.2","entrezGeneId":"642517"},{"alias":"CTGLF6","entrezGeneId":"642517"},{"alias":"bA369J21.2","entrezGeneId":"642521"},{"alias":"RPL36_1_620","entrezGeneId":"642531"},{"alias":"bA369J21.3","entrezGeneId":"642538"},{"alias":"HK2P","entrezGeneId":"642546"},{"alias":"OCT4-pg3","entrezGeneId":"642559"},{"alias":"OTF3L","entrezGeneId":"642559"},{"alias":"POU5F1L","entrezGeneId":"642559"},{"alias":"POU5FLC12","entrezGeneId":"642559"},{"alias":"TRIM53","entrezGeneId":"642569"},{"alias":"TRIM53P","entrezGeneId":"642569"},{"alias":"TRIM80P","entrezGeneId":"642569"},{"alias":"VDAC1P","entrezGeneId":"642585"},{"alias":"LINC00510","entrezGeneId":"642587"},{"alias":"NPC-A-5","entrezGeneId":"642587"},{"alias":"EIF5AL3","entrezGeneId":"642592"},{"alias":"C18orf42","entrezGeneId":"642597"},{"alias":"TRIM49L2","entrezGeneId":"642612"},{"alias":"C11orf27","entrezGeneId":"642623"},{"alias":"HMGPI","entrezGeneId":"642623"},{"alias":"dJ545L17.2","entrezGeneId":"642636"},{"alias":"RAD21L","entrezGeneId":"642636"},{"alias":"RPSA_26_1300","entrezGeneId":"642641"},{"alias":"bHLHa48","entrezGeneId":"642658"},{"alias":"SCXA","entrezGeneId":"642658"},{"alias":"SCXB","entrezGeneId":"642658"},{"alias":"RPS11_4_1771","entrezGeneId":"642687"},{"alias":"RPL21_27_774","entrezGeneId":"642738"},{"alias":"RPL9_1_9","entrezGeneId":"642740"},{"alias":"RPL3_3_732","entrezGeneId":"642741"},{"alias":"NPIP","entrezGeneId":"642799"},{"alias":"API5L1","entrezGeneId":"642812"},{"alias":"KRBO1","entrezGeneId":"642819"},{"alias":"ZNF487P","entrezGeneId":"642819"},{"alias":"bA144G6.1","entrezGeneId":"642826"},{"alias":"BMS1LP2","entrezGeneId":"642826"},{"alias":"BMS1LP6","entrezGeneId":"642826"},{"alias":"BMS1P6","entrezGeneId":"642826"},{"alias":"RPL6_9_488","entrezGeneId":"642828"},{"alias":"MEP1AL1","entrezGeneId":"642840"},{"alias":"AKNAD1-AS1","entrezGeneId":"642864"},{"alias":"SRG7","entrezGeneId":"642864"},{"alias":"bcm2758","entrezGeneId":"642892"},{"alias":"RPS29_7_451","entrezGeneId":"642892"},{"alias":"MKI67IPP8","entrezGeneId":"642907"},{"alias":"HOST2","entrezGeneId":"642934"},{"alias":"lncRNA-HOST2","entrezGeneId":"642934"},{"alias":"C10orf141","entrezGeneId":"642938"},{"alias":"INSYN2","entrezGeneId":"642938"},{"alias":"FLVCR1-AS1","entrezGeneId":"642946"},{"alias":"LQK1","entrezGeneId":"642946"},{"alias":"NCRNA00292","entrezGeneId":"642946"},{"alias":"RBBP4P","entrezGeneId":"642954"},{"alias":"FABP5L9","entrezGeneId":"642956"},{"alias":"C9orf166","entrezGeneId":"642968"},{"alias":"C21orf9","entrezGeneId":"642976"},{"alias":"GRIK1-AS","entrezGeneId":"642976"},{"alias":"GRIK1AS","entrezGeneId":"642976"},{"alias":"NCRNA00110","entrezGeneId":"642976"},{"alias":"DUXY3","entrezGeneId":"643001"},{"alias":"RPS26_11_544","entrezGeneId":"643003"},{"alias":"RPL36A_20_1424","entrezGeneId":"643007"},{"alias":"C17orf109","entrezGeneId":"643008"},{"alias":"PP12104","entrezGeneId":"643008"},{"alias":"DUXY4","entrezGeneId":"643034"},{"alias":"LINC01171","entrezGeneId":"643037"},{"alias":"RPL26_5_860","entrezGeneId":"643101"},{"alias":"ZC3HDC11B","entrezGeneId":"643136"},{"alias":"C5orf43","entrezGeneId":"643155"},{"alias":"ATF4C","entrezGeneId":"643159"},{"alias":"bA96C23.5","entrezGeneId":"643161"},{"alias":"CCT6-3P","entrezGeneId":"643180"},{"alias":"RPL36_4_490","entrezGeneId":"643205"},{"alias":"RPL3_2_568","entrezGeneId":"643220"},{"alias":"DFNB101","entrezGeneId":"643226"},{"alias":"C10orf127","entrezGeneId":"643236"},{"alias":"KSP37","entrezGeneId":"643236"},{"alias":"ATG8G","entrezGeneId":"643246"},{"alias":"CCT6-5P","entrezGeneId":"643253"},{"alias":"CCT6AP1","entrezGeneId":"643253"},{"alias":"RPL21_48_1266","entrezGeneId":"643264"},{"alias":"RPS29_14_993","entrezGeneId":"643284"},{"alias":"HSPD1-2P","entrezGeneId":"643300"},{"alias":"CT47.13","entrezGeneId":"643311"},{"alias":"CT47A13","entrezGeneId":"643311"},{"alias":"RPL5_1_31","entrezGeneId":"643343"},{"alias":"RPS27A_8_1488","entrezGeneId":"643358"},{"alias":"LINC00453","entrezGeneId":"643365"},{"alias":"C14orf176","entrezGeneId":"643382"},{"alias":"C14orf95","entrezGeneId":"643382"},{"alias":"NCRNA00220","entrezGeneId":"643382"},{"alias":"LEKTI2","entrezGeneId":"643394"},{"alias":"LINC01021","entrezGeneId":"643401"},{"alias":"bA186O14.2","entrezGeneId":"643414"},{"alias":"LIPL2","entrezGeneId":"643414"},{"alias":"ARCI8","entrezGeneId":"643418"},{"alias":"bA186O14.3","entrezGeneId":"643418"},{"alias":"LI4","entrezGeneId":"643418"},{"alias":"LIPL4","entrezGeneId":"643418"},{"alias":"RBMS2P","entrezGeneId":"643427"},{"alias":"FAM25D","entrezGeneId":"643479"},{"alias":"RPL11_3_1291","entrezGeneId":"643499"},{"alias":"bA318P23.1","entrezGeneId":"643503"},{"alias":"TARDBPL","entrezGeneId":"643503"},{"alias":"RPL7_22_1777","entrezGeneId":"643507"},{"alias":"RPL29_14_1268","entrezGeneId":"643531"},{"alias":"KCTD9L","entrezGeneId":"643535"},{"alias":"RPL12_13_1292","entrezGeneId":"643550"},{"alias":"EEF1AL13","entrezGeneId":"643563"},{"alias":"Fxrb","entrezGeneId":"643609"},{"alias":"NR1H5","entrezGeneId":"643609"},{"alias":"LAMR1P8","entrezGeneId":"643617"},{"alias":"RPSA_26_1797","entrezGeneId":"643617"},{"alias":"RPS18_5_650","entrezGeneId":"643627"},{"alias":"EDH17B1","entrezGeneId":"643646"},{"alias":"EDHB17","entrezGeneId":"643646"},{"alias":"HSD17","entrezGeneId":"643646"},{"alias":"HSD17BP1","entrezGeneId":"643646"},{"alias":"SDR28C1P1","entrezGeneId":"643646"},{"alias":"RPL35_6_1759","entrezGeneId":"643653"},{"alias":"AMAC1L3","entrezGeneId":"643664"},{"alias":"TMEM21B","entrezGeneId":"643664"},{"alias":"C13orf40","entrezGeneId":"643677"},{"alias":"GOLGA8R","entrezGeneId":"643699"},{"alias":"LINC00918","entrezGeneId":"643714"},{"alias":"SCGB4A1P","entrezGeneId":"643719"},{"alias":"LYPLAL1-AS1","entrezGeneId":"643723"},{"alias":"HMGN2L4","entrezGeneId":"643744"},{"alias":"C6orf3","entrezGeneId":"643749"},{"alias":"C6UAS","entrezGeneId":"643749"},{"alias":"NCRNA00248","entrezGeneId":"643749"},{"alias":"TRAF3IP2-AS2","entrezGeneId":"643749"},{"alias":"RPLP0_1_167","entrezGeneId":"643779"},{"alias":"KAP24.1","entrezGeneId":"643803"},{"alias":"ZET","entrezGeneId":"643836"},{"alias":"ZNF755","entrezGeneId":"643836"},{"alias":"RPL31_14_719","entrezGeneId":"643851"},{"alias":"RPL17_10_1081","entrezGeneId":"643863"},{"alias":"KRT","entrezGeneId":"643865"},{"alias":"PRO1486","entrezGeneId":"643866"},{"alias":"HMGN2L6","entrezGeneId":"643872"},{"alias":"ARL2BPL","entrezGeneId":"643898"},{"alias":"bcm1040","entrezGeneId":"643898"},{"alias":"RPL7_11_720","entrezGeneId":"643906"},{"alias":"CRNDEP","entrezGeneId":"643911"},{"alias":"LINC00180","entrezGeneId":"643911"},{"alias":"lincIRX5","entrezGeneId":"643911"},{"alias":"NCRNA00180","entrezGeneId":"643911"},{"alias":"PNAS-108","entrezGeneId":"643911"},{"alias":"MORF4LP4","entrezGeneId":"643915"},{"alias":"MRG4","entrezGeneId":"643915"},{"alias":"RPS3A_6_581","entrezGeneId":"643932"},{"alias":"RPLP2_2_1170","entrezGeneId":"643949"},{"alias":"RPSA_12_742","entrezGeneId":"643954"},{"alias":"ZNF733","entrezGeneId":"643955"},{"alias":"RPS2_7_293","entrezGeneId":"643960"},{"alias":"RPL7_13_721","entrezGeneId":"643971"},{"alias":"RPL6_10_498","entrezGeneId":"643974"},{"alias":"RPS3A_16_1083","entrezGeneId":"643981"},{"alias":"C1orf233","entrezGeneId":"643988"},{"alias":"RPS2_8_601","entrezGeneId":"643992"},{"alias":"ARAF2","entrezGeneId":"644000"},{"alias":"ARAF2P","entrezGeneId":"644000"},{"alias":"ARAFPS","entrezGeneId":"644000"},{"alias":"PKS1","entrezGeneId":"644000"},{"alias":"RPS6_1_251","entrezGeneId":"644013"},{"alias":"HSPD1-4P","entrezGeneId":"644016"},{"alias":"ZNF734","entrezGeneId":"644017"},{"alias":"CBWD7","entrezGeneId":"644019"},{"alias":"RPL32_6_1020","entrezGeneId":"644020"},{"alias":"CTSL1P3","entrezGeneId":"644021"},{"alias":"CTSLL3","entrezGeneId":"644021"},{"alias":"RPL22_8_1294","entrezGeneId":"644022"},{"alias":"RPL7A_28_1429","entrezGeneId":"644029"},{"alias":"DKFZP781G0119","entrezGeneId":"644041"},{"alias":"ANTP6","entrezGeneId":"644042"},{"alias":"bA164N7.4","entrezGeneId":"644054"},{"alias":"PYY-III","entrezGeneId":"644059"},{"alias":"RPS14_1_16","entrezGeneId":"644068"},{"alias":"BCR-1","entrezGeneId":"644079"},{"alias":"RPL18A_3_387","entrezGeneId":"644082"},{"alias":"LYRM8","entrezGeneId":"644096"},{"alias":"RPL29_8_938","entrezGeneId":"644103"},{"alias":"RPSA_24_1172","entrezGeneId":"644109"},{"alias":"RPS14_6_722","entrezGeneId":"644119"},{"alias":"RPL23A_20_869","entrezGeneId":"644128"},{"alias":"CCT8-1P","entrezGeneId":"644131"},{"alias":"GOT2L3","entrezGeneId":"644138"},{"alias":"GOT2L3P","entrezGeneId":"644138"},{"alias":"RPS14_5_603","entrezGeneId":"644146"},{"alias":"CR16","entrezGeneId":"644150"},{"alias":"DNM1DN4-2","entrezGeneId":"644153"},{"alias":"DNM1DN4.2","entrezGeneId":"644153"},{"alias":"DNM1DN4@","entrezGeneId":"644153"},{"alias":"RPL10A_3_573","entrezGeneId":"644154"},{"alias":"BCR3","entrezGeneId":"644165"},{"alias":"BCRL3","entrezGeneId":"644165"},{"alias":"BCRL6","entrezGeneId":"644165"},{"alias":"RPS26_7_290","entrezGeneId":"644166"},{"alias":"DRG11","entrezGeneId":"644168"},{"alias":"PRRXL1","entrezGeneId":"644168"},{"alias":"C22orf41","entrezGeneId":"644186"},{"alias":"THEG2","entrezGeneId":"644186"},{"alias":"RPS26_20_1551","entrezGeneId":"644191"},{"alias":"RPLP2_1_633","entrezGeneId":"644198"},{"alias":"RPL12_9_1087","entrezGeneId":"644202"},{"alias":"TRPC6L","entrezGeneId":"644218"},{"alias":"RPL9_9_1348","entrezGeneId":"644223"},{"alias":"AurBps1","entrezGeneId":"644233"},{"alias":"RPL7A_17_815","entrezGeneId":"644236"},{"alias":"MAPK8IPP","entrezGeneId":"644253"},{"alias":"PRKM8IPP","entrezGeneId":"644253"},{"alias":"ARL17A-IT1","entrezGeneId":"644297"},{"alias":"RPS20_7_863","entrezGeneId":"644309"},{"alias":"MT1","entrezGeneId":"644314"},{"alias":"MT1I","entrezGeneId":"644314"},{"alias":"MTE","entrezGeneId":"644314"},{"alias":"RPS7_6_1552","entrezGeneId":"644315"},{"alias":"ATP5F1P3","entrezGeneId":"644333"},{"alias":"RPL37A_3_1174","entrezGeneId":"644338"},{"alias":"PNMA7B","entrezGeneId":"644353"},{"alias":"SIZN2","entrezGeneId":"644353"},{"alias":"GCNT6","entrezGeneId":"644378"},{"alias":"RPL23A_33_1349","entrezGeneId":"644384"},{"alias":"RPS2_25_1553","entrezGeneId":"644388"},{"alias":"LRRC37A5","entrezGeneId":"644397"},{"alias":"DEFB-31","entrezGeneId":"644414"},{"alias":"DEFB131","entrezGeneId":"644414"},{"alias":"CDC50C","entrezGeneId":"644444"},{"alias":"TMEM30C","entrezGeneId":"644444"},{"alias":"RPSA_31_1776","entrezGeneId":"644464"},{"alias":"NARG2P1","entrezGeneId":"644491"},{"alias":"bA564C4.3","entrezGeneId":"644496"},{"alias":"CTSL1P4","entrezGeneId":"644496"},{"alias":"CTSLL4","entrezGeneId":"644496"},{"alias":"HMGN2L7","entrezGeneId":"644498"},{"alias":"RPL39_9_576","entrezGeneId":"644499"},{"alias":"RBM22P10","entrezGeneId":"644509"},{"alias":"bA348N5.5","entrezGeneId":"644511"},{"alias":"RPL13A_7_1096","entrezGeneId":"644511"},{"alias":"RPL31_14_1046","entrezGeneId":"644522"},{"alias":"NKX2.4","entrezGeneId":"644524"},{"alias":"NKX2D","entrezGeneId":"644524"},{"alias":"CXorf69","entrezGeneId":"644538"},{"alias":"dJ254P11.1","entrezGeneId":"644540"},{"alias":"TCEB1P3","entrezGeneId":"644540"},{"alias":"COAS-2","entrezGeneId":"644591"},{"alias":"LINC00087","entrezGeneId":"644596"},{"alias":"NCRNA00087","entrezGeneId":"644596"},{"alias":"EEF1AL10","entrezGeneId":"644604"},{"alias":"INTS4L2","entrezGeneId":"644619"},{"alias":"RPL21_46_1336","entrezGeneId":"644627"},{"alias":"NF1L4","entrezGeneId":"644637"},{"alias":"NF1L6","entrezGeneId":"644637"},{"alias":"C8orf81","entrezGeneId":"644660"},{"alias":"NCRNA00255","entrezGeneId":"644660"},{"alias":"CDRT15L1","entrezGeneId":"644694"},{"alias":"BMS1P14","entrezGeneId":"644716"},{"alias":"IGKV1/OR-3","entrezGeneId":"644731"},{"alias":"IGKV1OR3","entrezGeneId":"644731"},{"alias":"IGKVPZ3","entrezGeneId":"644731"},{"alias":"WASF4","entrezGeneId":"644739"},{"alias":"HSPD1-5P","entrezGeneId":"644745"},{"alias":"MEP1AL2","entrezGeneId":"644777"},{"alias":"RPS15A_3_41","entrezGeneId":"644790"},{"alias":"PAWS1","entrezGeneId":"644815"},{"alias":"EEF1B4","entrezGeneId":"644820"},{"alias":"RPL36A_13_1022","entrezGeneId":"644834"},{"alias":"RPS28_2_172","entrezGeneId":"644862"},{"alias":"bA2K17.3","entrezGeneId":"644890"},{"alias":"SPATA39","entrezGeneId":"644890"},{"alias":"RPL7_1_7","entrezGeneId":"644896"},{"alias":"RPL32_8_807","entrezGeneId":"644907"},{"alias":"RPL10_1_257","entrezGeneId":"644911"},{"alias":"p21","entrezGeneId":"644914"},{"alias":"RPS26_1_56","entrezGeneId":"644928"},{"alias":"RPS26_18_1443","entrezGeneId":"644934"},{"alias":"KERSMCR","entrezGeneId":"644945"},{"alias":"RPS3A_11_824","entrezGeneId":"644972"},{"alias":"FAM108A7P","entrezGeneId":"644988"},{"alias":"C5orf50","entrezGeneId":"644994"},{"alias":"RPL32_14_1010","entrezGeneId":"644996"},{"alias":"C1orf200","entrezGeneId":"644997"},{"alias":"RPS3_2_1244","entrezGeneId":"645000"},{"alias":"RPS2_7_524","entrezGeneId":"645018"},{"alias":"GAPDHL3","entrezGeneId":"645024"},{"alias":"GAPDL3","entrezGeneId":"645024"},{"alias":"CT4.2","entrezGeneId":"645037"},{"alias":"GAGE-2","entrezGeneId":"645037"},{"alias":"GAGE-2B","entrezGeneId":"645037"},{"alias":"GAGE-12A","entrezGeneId":"645051"},{"alias":"GAGE-13","entrezGeneId":"645051"},{"alias":"GAGE12A","entrezGeneId":"645051"},{"alias":"RPL6_3_194","entrezGeneId":"645054"},{"alias":"AL4","entrezGeneId":"645073"},{"alias":"CT4.7","entrezGeneId":"645073"},{"alias":"GAGE-12G","entrezGeneId":"645073"},{"alias":"PFN1P7","entrezGeneId":"645126"},{"alias":"ZBED1P","entrezGeneId":"645145"},{"alias":"RPL21_24_663","entrezGeneId":"645157"},{"alias":"RPL5_16_1181","entrezGeneId":"645160"},{"alias":"bA57G10.3","entrezGeneId":"645161"},{"alias":"RPL12_10_1052","entrezGeneId":"645161"},{"alias":"RPS2_26_1559","entrezGeneId":"645173"},{"alias":"RPL21_14_463","entrezGeneId":"645174"},{"alias":"SPANX-L","entrezGeneId":"645188"},{"alias":"LERN2","entrezGeneId":"645191"},{"alias":"LRRN6B","entrezGeneId":"645191"},{"alias":"bA524O24.3","entrezGeneId":"645203"},{"alias":"TMEM14D","entrezGeneId":"645203"},{"alias":"EIF3J-AS1","entrezGeneId":"645212"},{"alias":"RPL29_8_665","entrezGeneId":"645224"},{"alias":"CCAT5","entrezGeneId":"645249"},{"alias":"GAPDHL11","entrezGeneId":"645256"},{"alias":"GAPDL11","entrezGeneId":"645256"},{"alias":"RPL7A_15_759","entrezGeneId":"645257"},{"alias":"HMG1L6","entrezGeneId":"645292"},{"alias":"HMGB1L6","entrezGeneId":"645292"},{"alias":"hCG2004593","entrezGeneId":"645296"},{"alias":"RPL17_14_1450","entrezGeneId":"645296"},{"alias":"RPS10_9_1493","entrezGeneId":"645299"},{"alias":"SCDP","entrezGeneId":"645313"},{"alias":"ECONEXIN","entrezGeneId":"645323"},{"alias":"EyeLinc1","entrezGeneId":"645323"},{"alias":"VISC","entrezGeneId":"645323"},{"alias":"LAMR","entrezGeneId":"645326"},{"alias":"LAMR1P11","entrezGeneId":"645326"},{"alias":"LAMRL1","entrezGeneId":"645326"},{"alias":"LAMRP1","entrezGeneId":"645326"},{"alias":"RPSA_9_357","entrezGeneId":"645326"},{"alias":"C9orf49","entrezGeneId":"645345"},{"alias":"CHCHD9","entrezGeneId":"645345"},{"alias":"LINC01469","entrezGeneId":"645355"},{"alias":"GGT1P1","entrezGeneId":"645367"},{"alias":"TTMA","entrezGeneId":"645369"},{"alias":"RPL21_31_868","entrezGeneId":"645373"},{"alias":"PRAMEF33P","entrezGeneId":"645382"},{"alias":"RPL6_10_1582","entrezGeneId":"645387"},{"alias":"MKI67IPP2","entrezGeneId":"645398"},{"alias":"RPS16_5_1659","entrezGeneId":"645412"},{"alias":"MCART4P","entrezGeneId":"645423"},{"alias":"PRAMEF21","entrezGeneId":"645425"},{"alias":"ATP5F1P6","entrezGeneId":"645440"},{"alias":"RPL17_1_64","entrezGeneId":"645441"},{"alias":"ATP5A1P3","entrezGeneId":"645443"},{"alias":"ATP5AP3","entrezGeneId":"645443"},{"alias":"RPL21_25_668","entrezGeneId":"645452"},{"alias":"CEP170L","entrezGeneId":"645455"},{"alias":"FAM68B","entrezGeneId":"645455"},{"alias":"KIAA0470L","entrezGeneId":"645455"},{"alias":"F379","entrezGeneId":"645520"},{"alias":"FAM138F","entrezGeneId":"645520"},{"alias":"bA128B16.2","entrezGeneId":"645528"},{"alias":"C10orf50","entrezGeneId":"645528"},{"alias":"LINC00264","entrezGeneId":"645528"},{"alias":"NCRNA00264","entrezGeneId":"645528"},{"alias":"GOT2L1","entrezGeneId":"645538"},{"alias":"HSPD1-6P","entrezGeneId":"645548"},{"alias":"HSPDP6","entrezGeneId":"645548"},{"alias":"FAM90A22","entrezGeneId":"645558"},{"alias":"ATP5C1P1","entrezGeneId":"645560"},{"alias":"ATP5C2","entrezGeneId":"645560"},{"alias":"ATP5CL2","entrezGeneId":"645560"},{"alias":"FAM90A23","entrezGeneId":"645572"},{"alias":"RPS4P19","entrezGeneId":"645573"},{"alias":"RPS4X_9_1583","entrezGeneId":"645573"},{"alias":"C10orf52","entrezGeneId":"645587"},{"alias":"AK3L2","entrezGeneId":"645619"},{"alias":"AK3L2P","entrezGeneId":"645619"},{"alias":"RPS13_5_1432","entrezGeneId":"645630"},{"alias":"linc-DC","entrezGeneId":"645638"},{"alias":"lnc-DC","entrezGeneId":"645638"},{"alias":"LNCDC","entrezGeneId":"645638"},{"alias":"FAM32C","entrezGeneId":"645646"},{"alias":"FAM90A14","entrezGeneId":"645651"},{"alias":"MTL1","entrezGeneId":"645652"},{"alias":"RPL31_25_1257","entrezGeneId":"645654"},{"alias":"RPSA_23_1496","entrezGeneId":"645656"},{"alias":"TUFML","entrezGeneId":"645668"},{"alias":"Oct4-pg4","entrezGeneId":"645682"},{"alias":"POU5FLC1","entrezGeneId":"645682"},{"alias":"RPL13A_11_1370","entrezGeneId":"645683"},{"alias":"C14orf34","entrezGeneId":"645687"},{"alias":"RPL12_14_1564","entrezGeneId":"645688"},{"alias":"5-HT5B","entrezGeneId":"645694"},{"alias":"GPR134","entrezGeneId":"645694"},{"alias":"HTR5B","entrezGeneId":"645694"},{"alias":"RPS10_13_1498","entrezGeneId":"645713"},{"alias":"NOS2C","entrezGeneId":"645740"},{"alias":"HsT33855","entrezGeneId":"645744"},{"alias":"TAF5LP","entrezGeneId":"645744"},{"alias":"MT1P2","entrezGeneId":"645745"},{"alias":"RPL3_2_1372","entrezGeneId":"645798"},{"alias":"RPL5_4_365","entrezGeneId":"645807"},{"alias":"HSP60P2","entrezGeneId":"645808"},{"alias":"HSPD-9P","entrezGeneId":"645808"},{"alias":"HSPDP2","entrezGeneId":"645808"},{"alias":"RPL23A_21_952","entrezGeneId":"645809"},{"alias":"C16orf29","entrezGeneId":"645811"},{"alias":"OG-9","entrezGeneId":"645832"},{"alias":"OG9","entrezGeneId":"645832"},{"alias":"OG9X","entrezGeneId":"645832"},{"alias":"USP17B","entrezGeneId":"645836"},{"alias":"USP17F","entrezGeneId":"645836"},{"alias":"TR2IT1","entrezGeneId":"645840"},{"alias":"TXNRD3IT1","entrezGeneId":"645840"},{"alias":"TXNRD3NT1","entrezGeneId":"645840"},{"alias":"TMEM14E","entrezGeneId":"645843"},{"alias":"RPL7A_20_1131","entrezGeneId":"645846"},{"alias":"RPS10_5_1013","entrezGeneId":"645857"},{"alias":"FAM90A12","entrezGeneId":"645879"},{"alias":"RPS7_2_183","entrezGeneId":"645884"},{"alias":"RPS28_1_332","entrezGeneId":"645899"},{"alias":"RPS11_1_184","entrezGeneId":"645916"},{"alias":"RPS13_3_1434","entrezGeneId":"645918"},{"alias":"S100a7b","entrezGeneId":"645922"},{"alias":"C6orf44","entrezGeneId":"645927"},{"alias":"dJ153G14.2","entrezGeneId":"645927"},{"alias":"MCFD2L","entrezGeneId":"645927"},{"alias":"NUCB2-L","entrezGeneId":"645927"},{"alias":"FENL1","entrezGeneId":"645931"},{"alias":"PRKRIRP8","entrezGeneId":"645939"},{"alias":"b34I8.2","entrezGeneId":"645950"},{"alias":"hnRNPA1-Lp","entrezGeneId":"645950"},{"alias":"HNRPA1P1","entrezGeneId":"645950"},{"alias":"RPS3_3_1501","entrezGeneId":"645957"},{"alias":"RPS18_6_767","entrezGeneId":"645958"},{"alias":"FAM75C2","entrezGeneId":"645961"},{"alias":"RPL23A_6_188","entrezGeneId":"645962"},{"alias":"RPS3A_9_820","entrezGeneId":"645968"},{"alias":"ATP5F1P2","entrezGeneId":"645973"},{"alias":"RBM32B","entrezGeneId":"645974"},{"alias":"RPS26_8_840","entrezGeneId":"645979"},{"alias":"CFLL4","entrezGeneId":"645980"},{"alias":"CFLP4","entrezGeneId":"645980"},{"alias":"RPL31_21_1570","entrezGeneId":"645993"},{"alias":"RPL10A_2_189","entrezGeneId":"645998"},{"alias":"AMAC1L1","entrezGeneId":"646000"},{"alias":"SLC35G4P","entrezGeneId":"646000"},{"alias":"RPS17B","entrezGeneId":"646013"},{"alias":"RPS17L2","entrezGeneId":"646013"},{"alias":"RPS17_7_1537","entrezGeneId":"646013"},{"alias":"C22orf45","entrezGeneId":"646023"},{"alias":"RPL29_11_1134","entrezGeneId":"646077"},{"alias":"PA2G4L3","entrezGeneId":"646083"},{"alias":"WDR45LP1","entrezGeneId":"646086"},{"alias":"RPS8_3_645","entrezGeneId":"646093"},{"alias":"RPL32_7_768","entrezGeneId":"646104"},{"alias":"RPS7_5_1787","entrezGeneId":"646108"},{"alias":"RPS8_2_1103","entrezGeneId":"646119"},{"alias":"RPL26_11_785","entrezGeneId":"646161"},{"alias":"LINC01330","entrezGeneId":"646168"},{"alias":"RPL36A_23_1571","entrezGeneId":"646175"},{"alias":"FAM75E2P","entrezGeneId":"646177"},{"alias":"RPL18A_8_1622","entrezGeneId":"646189"},{"alias":"dJ207F6.1","entrezGeneId":"646192"},{"alias":"NOL5B","entrezGeneId":"646192"},{"alias":"NOL5BP","entrezGeneId":"646192"},{"alias":"NOP56-L","entrezGeneId":"646192"},{"alias":"RPS28_3_1160","entrezGeneId":"646195"},{"alias":"TLK2ps1","entrezGeneId":"646202"},{"alias":"RPS27_2_322","entrezGeneId":"646233"},{"alias":"RPL19_5_1105","entrezGeneId":"646255"},{"alias":"dJ88J8.3","entrezGeneId":"646260"},{"alias":"hsSARA-p","entrezGeneId":"646260"},{"alias":"SAR1P1","entrezGeneId":"646260"},{"alias":"SARAP","entrezGeneId":"646260"},{"alias":"SARAP1","entrezGeneId":"646260"},{"alias":"RPS4P8","entrezGeneId":"646269"},{"alias":"RPS4X_5_772","entrezGeneId":"646269"},{"alias":"HSPD1-15P","entrezGeneId":"646273"},{"alias":"RPS2_9_695","entrezGeneId":"646294"},{"alias":"COL6A4","entrezGeneId":"646300"},{"alias":"bA92J19.4","entrezGeneId":"646309"},{"alias":"NAMPTL","entrezGeneId":"646309"},{"alias":"PBEF2","entrezGeneId":"646309"},{"alias":"FTHL13","entrezGeneId":"646362"},{"alias":"FTHP3","entrezGeneId":"646362"},{"alias":"MAS1LP","entrezGeneId":"646366"},{"alias":"IGHV1OR153","entrezGeneId":"646370"},{"alias":"IGHV1OR154","entrezGeneId":"646379"},{"alias":"DGAT2L7","entrezGeneId":"646409"},{"alias":"RPL29_2_63","entrezGeneId":"646417"},{"alias":"RPL32_10_878","entrezGeneId":"646433"},{"alias":"CCT3-1P","entrezGeneId":"646440"},{"alias":"RPL27_1_105","entrezGeneId":"646446"},{"alias":"C3orf71","entrezGeneId":"646450"},{"alias":"UBE2HP","entrezGeneId":"646463"},{"alias":"RPL7A_12_828","entrezGeneId":"646476"},{"alias":"ADAM24","entrezGeneId":"646479"},{"alias":"PERF","entrezGeneId":"646480"},{"alias":"PERF15","entrezGeneId":"646480"},{"alias":"T-FABP","entrezGeneId":"646480"},{"alias":"TLBP","entrezGeneId":"646480"},{"alias":"RPL6_14_853","entrezGeneId":"646483"},{"alias":"RPL21_4_205","entrezGeneId":"646489"},{"alias":"FAM75E3P","entrezGeneId":"646507"},{"alias":"Em:AB014080.4","entrezGeneId":"646520"},{"alias":"SUCLA2P","entrezGeneId":"646520"},{"alias":"RPS3A_18_1305","entrezGeneId":"646527"},{"alias":"RPL19_2_325","entrezGeneId":"646532"},{"alias":"RPL7_2_66","entrezGeneId":"646538"},{"alias":"RPLP1_6_1670","entrezGeneId":"646566"},{"alias":"RPS4P18","entrezGeneId":"646583"},{"alias":"RPS4X_10_1587","entrezGeneId":"646583"},{"alias":"ZNF652P","entrezGeneId":"646592"},{"alias":"C3orf65","entrezGeneId":"646600"},{"alias":"ATP5G1P3","entrezGeneId":"646619"},{"alias":"RPL3_4_835","entrezGeneId":"646620"},{"alias":"RPL27_1_28","entrezGeneId":"646624"},{"alias":"PRHOXNB","entrezGeneId":"646625"},{"alias":"SGK069","entrezGeneId":"646643"},{"alias":"CAPUCIN","entrezGeneId":"646658"},{"alias":"DSPC1","entrezGeneId":"646658"},{"alias":"IFITMD4","entrezGeneId":"646658"},{"alias":"TMEM90A","entrezGeneId":"646658"},{"alias":"RPS20_11_1143","entrezGeneId":"646660"},{"alias":"RPL15_7_1476","entrezGeneId":"646672"},{"alias":"RPL23A_18_409","entrezGeneId":"646685"},{"alias":"RPL4_1_115","entrezGeneId":"646688"},{"alias":"ZNF495D","entrezGeneId":"646698"},{"alias":"ZSCAN5D","entrezGeneId":"646698"},{"alias":"HLA-DP2A","entrezGeneId":"646702"},{"alias":"RPL19_1_276","entrezGeneId":"646710"},{"alias":"NIPBL-AS","entrezGeneId":"646719"},{"alias":"NIPBL-AS1","entrezGeneId":"646719"},{"alias":"FAM60DP","entrezGeneId":"646721"},{"alias":"RPS14_3_529","entrezGeneId":"646737"},{"alias":"bA98O11.1","entrezGeneId":"646753"},{"alias":"RPS26_19_971","entrezGeneId":"646753"},{"alias":"RPL35_1_683","entrezGeneId":"646766"},{"alias":"RPL5_2_71","entrezGeneId":"646784"},{"alias":"RPS10_8_685","entrezGeneId":"646785"},{"alias":"RPL31_18_839","entrezGeneId":"646787"},{"alias":"Z3CXXC7","entrezGeneId":"646799"},{"alias":"ZAR2","entrezGeneId":"646799"},{"alias":"CYP4F43P","entrezGeneId":"646802"},{"alias":"SETP18","entrezGeneId":"646817"},{"alias":"RPS15A_5_686","entrezGeneId":"646819"},{"alias":"RPL19_8_1674","entrezGeneId":"646820"},{"alias":"ZNF723P","entrezGeneId":"646864"},{"alias":"dJ441G21.1","entrezGeneId":"646875"},{"alias":"RPL12_6_688","entrezGeneId":"646875"},{"alias":"RPL29_17_1307","entrezGeneId":"646884"},{"alias":"RPL12_19_1596","entrezGeneId":"646898"},{"alias":"RPL17_19_888","entrezGeneId":"646909"},{"alias":"HSPD1-14P","entrezGeneId":"646910"},{"alias":"RPL7_21_1751","entrezGeneId":"646912"},{"alias":"RPS10_9_805","entrezGeneId":"646942"},{"alias":"RPL23_1_689","entrezGeneId":"646949"},{"alias":"C3orf76","entrezGeneId":"646951"},{"alias":"FAM188B2","entrezGeneId":"646951"},{"alias":"MCOP6","entrezGeneId":"646960"},{"alias":"LGLL338","entrezGeneId":"646962"},{"alias":"PRO537","entrezGeneId":"646962"},{"alias":"UNQ338","entrezGeneId":"646962"},{"alias":"RPL26_3_532","entrezGeneId":"646966"},{"alias":"PTPN2P","entrezGeneId":"646981"},{"alias":"PTPTP1","entrezGeneId":"646981"},{"alias":"lncFOXO1","entrezGeneId":"646982"},{"alias":"RPS12_14_1457","entrezGeneId":"646985"},{"alias":"RAB42","entrezGeneId":"646996"},{"alias":"RAB42P","entrezGeneId":"646996"},{"alias":"FAM28CP","entrezGeneId":"647009"},{"alias":"bA7K24.2","entrezGeneId":"647024"},{"alias":"PA2G4L1","entrezGeneId":"647033"},{"alias":"RPS14_7_847","entrezGeneId":"647034"},{"alias":"GOLGA6L18","entrezGeneId":"647042"},{"alias":"C9orf51","entrezGeneId":"647044"},{"alias":"CCT1-3P","entrezGeneId":"647047"},{"alias":"TCP1L1","entrezGeneId":"647047"},{"alias":"C9orf36","entrezGeneId":"647060"},{"alias":"C9orf36A","entrezGeneId":"647060"},{"alias":"FAM75A1","entrezGeneId":"647060"},{"alias":"FAM75A2","entrezGeneId":"647060"},{"alias":"SPATA31A2","entrezGeneId":"647060"},{"alias":"C7orf73","entrezGeneId":"647087"},{"alias":"PL-5283","entrezGeneId":"647087"},{"alias":"RPLP0_4_1600","entrezGeneId":"647094"},{"alias":"RPL23A_13_431","entrezGeneId":"647099"},{"alias":"CT64","entrezGeneId":"647107"},{"alias":"RPL27_2_233","entrezGeneId":"647112"},{"alias":"SRGAP2L","entrezGeneId":"647135"},{"alias":"SRGAP2P2","entrezGeneId":"647135"},{"alias":"FAM108A9P","entrezGeneId":"647144"},{"alias":"RPS15A_10_701","entrezGeneId":"647155"},{"alias":"RPSA_10_433","entrezGeneId":"647158"},{"alias":"LINC00371","entrezGeneId":"647166"},{"alias":"LINC00372","entrezGeneId":"647166"},{"alias":"EEF1AL12","entrezGeneId":"647167"},{"alias":"GSTAP5","entrezGeneId":"647169"},{"alias":"GSTAP3","entrezGeneId":"647175"},{"alias":"GSTAP2","entrezGeneId":"647177"},{"alias":"IGHV3OR166","entrezGeneId":"647187"},{"alias":"RPS16_3_702","entrezGeneId":"647190"},{"alias":"RPL23A_4_145","entrezGeneId":"647201"},{"alias":"C1orf81","entrezGeneId":"647215"},{"alias":"bHLHa47","entrezGeneId":"647219"},{"alias":"RPL39_5_239","entrezGeneId":"647236"},{"alias":"RPL4_2_444","entrezGeneId":"647276"},{"alias":"RPL29_4_447","entrezGeneId":"647285"},{"alias":"TDRD9-AS1","entrezGeneId":"647286"},{"alias":"TDRD9AS1","entrezGeneId":"647286"},{"alias":"HSPD1-12P","entrezGeneId":"647298"},{"alias":"GEMC1","entrezGeneId":"647309"},{"alias":"VEZF1L1","entrezGeneId":"647319"},{"alias":"ZNF161L1","entrezGeneId":"647319"},{"alias":"RPL5_12_1419","entrezGeneId":"647436"},{"alias":"CNN2P5","entrezGeneId":"647507"},{"alias":"LINC00669","entrezGeneId":"647946"},{"alias":"LINC00657","entrezGeneId":"647979"},{"alias":"RPL7_7_580","entrezGeneId":"648000"},{"alias":"RPL37_8_1665","entrezGeneId":"648217"},{"alias":"RPL23A_24_958","entrezGeneId":"648294"},{"alias":"RPS29_6_317","entrezGeneId":"648343"},{"alias":"FAM108A4","entrezGeneId":"648359"},{"alias":"FAM108A4P","entrezGeneId":"648359"},{"alias":"TSSK5P1","entrezGeneId":"648630"},{"alias":"TSSK5P2","entrezGeneId":"648630"},{"alias":"TSSKps1","entrezGeneId":"648630"},{"alias":"RPS15A_13_889","entrezGeneId":"648729"},{"alias":"ACTGP4","entrezGeneId":"648740"},{"alias":"EFTUD1P1","entrezGeneId":"648809"},{"alias":"FAM42B","entrezGeneId":"648809"},{"alias":"HsT19321","entrezGeneId":"648809"},{"alias":"BCRL5","entrezGeneId":"648980"},{"alias":"ZNF495C","entrezGeneId":"649137"},{"alias":"ZSCAN5CP","entrezGeneId":"649137"},{"alias":"PRAMEF24P","entrezGeneId":"649179"},{"alias":"PRAMEL","entrezGeneId":"649179"},{"alias":"RPL36A_25_1638","entrezGeneId":"649299"},{"alias":"HNRNPCL2","entrezGeneId":"649330"},{"alias":"HsT914","entrezGeneId":"649446"},{"alias":"MPTX","entrezGeneId":"649458"},{"alias":"RPL23A_25_1182","entrezGeneId":"649946"},{"alias":"RPL21_34_997","entrezGeneId":"650059"},{"alias":"CCT4-2P","entrezGeneId":"650172"},{"alias":"DDX3YP3","entrezGeneId":"650560"},{"alias":"ABCA17","entrezGeneId":"650655"},{"alias":"IMPA1P","entrezGeneId":"650747"},{"alias":"RPS28_5_1524","entrezGeneId":"650788"},{"alias":"RPL4_2_1340","entrezGeneId":"650808"},{"alias":"RPS2_2_35","entrezGeneId":"650901"},{"alias":"RPL34_11_1303","entrezGeneId":"651249"},{"alias":"LRRC37C","entrezGeneId":"651250"},{"alias":"dJ265C24.4","entrezGeneId":"651302"},{"alias":"ZNF389","entrezGeneId":"651302"},{"alias":"ZNF389P","entrezGeneId":"651302"},{"alias":"dJ831C21.3","entrezGeneId":"651452"},{"alias":"POM121L3","entrezGeneId":"651452"},{"alias":"RPL36_7_1657","entrezGeneId":"651600"},{"alias":"RPSA_16_706","entrezGeneId":"652411"},{"alias":"RPSA_14_827","entrezGeneId":"652624"},{"alias":"RPS3A_2_382","entrezGeneId":"652670"},{"alias":"IGKV2/OR2-7","entrezGeneId":"652873"},{"alias":"IGKV2OR27","entrezGeneId":"652873"},{"alias":"BTF3L2","entrezGeneId":"652963"},{"alias":"HUMBTFC","entrezGeneId":"652963"},{"alias":"ACA48","entrezGeneId":"652965"},{"alias":"SNORA48A","entrezGeneId":"652965"},{"alias":"mgU6-77","entrezGeneId":"652966"},{"alias":"GATSL3","entrezGeneId":"652968"},{"alias":"SLC6A21","entrezGeneId":"652969"},{"alias":"C9orf29","entrezGeneId":"652972"},{"alias":"RPL17_13_1376","entrezGeneId":"652974"},{"alias":"RPL21_47_1368","entrezGeneId":"652975"},{"alias":"RPL7A_26_1357","entrezGeneId":"652978"},{"alias":"bA571F15.2","entrezGeneId":"652983"},{"alias":"RPL35A_10_973","entrezGeneId":"652983"},{"alias":"RPL7A_27_1369","entrezGeneId":"652985"},{"alias":"CH18515","entrezGeneId":"652991"},{"alias":"CORL2","entrezGeneId":"652991"},{"alias":"FUSSEL18","entrezGeneId":"652991"},{"alias":"CUDR","entrezGeneId":"652995"},{"alias":"LINC00178","entrezGeneId":"652995"},{"alias":"NCRNA00178","entrezGeneId":"652995"},{"alias":"onco-lncRNA-36","entrezGeneId":"652995"},{"alias":"UCAT1","entrezGeneId":"652995"},{"alias":"USP6P1","entrezGeneId":"653017"},{"alias":"bA164N7.3","entrezGeneId":"653045"},{"alias":"PTPN20C","entrezGeneId":"653045"},{"alias":"CT12.1","entrezGeneId":"653067"},{"alias":"CT12.1b","entrezGeneId":"653067"},{"alias":"CT12.1C","entrezGeneId":"653067"},{"alias":"CT12.1D","entrezGeneId":"653067"},{"alias":"CT12.1E","entrezGeneId":"653067"},{"alias":"CTP9","entrezGeneId":"653067"},{"alias":"GAGED2","entrezGeneId":"653067"},{"alias":"XAGE-1","entrezGeneId":"653067"},{"alias":"XAGE1","entrezGeneId":"653067"},{"alias":"XAGE1C","entrezGeneId":"653067"},{"alias":"XAGE1D","entrezGeneId":"653067"},{"alias":"XAGE1E","entrezGeneId":"653067"},{"alias":"RPL21_47_1259","entrezGeneId":"653079"},{"alias":"DHHC-11B","entrezGeneId":"653082"},{"alias":"CAR","entrezGeneId":"653108"},{"alias":"CXADRP","entrezGeneId":"653108"},{"alias":"BOZF1","entrezGeneId":"653121"},{"alias":"ZBTB8","entrezGeneId":"653121"},{"alias":"ZNF916A","entrezGeneId":"653121"},{"alias":"LSM12P","entrezGeneId":"653122"},{"alias":"C2orf84","entrezGeneId":"653140"},{"alias":"ANX8","entrezGeneId":"653145"},{"alias":"CH17-360D5.2","entrezGeneId":"653145"},{"alias":"RPL26_10_1113","entrezGeneId":"653147"},{"alias":"RPL21_19_517","entrezGeneId":"653156"},{"alias":"LAMR1P9","entrezGeneId":"653162"},{"alias":"RPSA_20_986","entrezGeneId":"653162"},{"alias":"bA244N20.11","entrezGeneId":"653163"},{"alias":"LCN1L2","entrezGeneId":"653163"},{"alias":"OR17-30","entrezGeneId":"653166"},{"alias":"TSPYP6","entrezGeneId":"653174"},{"alias":"GUSBP1","entrezGeneId":"653188"},{"alias":"SMA3","entrezGeneId":"653188"},{"alias":"BTF3L4P","entrezGeneId":"653189"},{"alias":"FAM115B","entrezGeneId":"653199"},{"alias":"DGCR15","entrezGeneId":"653203"},{"alias":"PPIA3L","entrezGeneId":"653214"},{"alias":"PPIAL3","entrezGeneId":"653214"},{"alias":"CT12.1","entrezGeneId":"653220"},{"alias":"CT12.1A","entrezGeneId":"653220"},{"alias":"CT12.1B","entrezGeneId":"653220"},{"alias":"CTP9","entrezGeneId":"653220"},{"alias":"GAGED2","entrezGeneId":"653220"},{"alias":"XAGE-1","entrezGeneId":"653220"},{"alias":"XAGE1","entrezGeneId":"653220"},{"alias":"XAGE1B","entrezGeneId":"653220"},{"alias":"SRP9L1","entrezGeneId":"653226"},{"alias":"bA511S14.1","entrezGeneId":"653232"},{"alias":"RPL15_3_658","entrezGeneId":"653232"},{"alias":"AGAP10","entrezGeneId":"653234"},{"alias":"bA144G6.2","entrezGeneId":"653234"},{"alias":"bA358L16.1","entrezGeneId":"653234"},{"alias":"CTGLF10P","entrezGeneId":"653234"},{"alias":"CTGLF7","entrezGeneId":"653234"},{"alias":"RPL23A_12_383","entrezGeneId":"653236"},{"alias":"KAP4.11","entrezGeneId":"653240"},{"alias":"KAP4.14","entrezGeneId":"653240"},{"alias":"KRTAP4-14","entrezGeneId":"653240"},{"alias":"KRTAP4.14","entrezGeneId":"653240"},{"alias":"cP7","entrezGeneId":"653247"},{"alias":"IB-9","entrezGeneId":"653247"},{"alias":"PRPPRB1","entrezGeneId":"653247"},{"alias":"Ps","entrezGeneId":"653247"},{"alias":"AGAP14","entrezGeneId":"653259"},{"alias":"bA145E20.1","entrezGeneId":"653259"},{"alias":"CTGLF11P","entrezGeneId":"653259"},{"alias":"AGAP-7","entrezGeneId":"653268"},{"alias":"AGAP7","entrezGeneId":"653268"},{"alias":"bA109G10.1","entrezGeneId":"653268"},{"alias":"CTGLF4","entrezGeneId":"653268"},{"alias":"POTE2beta","entrezGeneId":"653269"},{"alias":"CT47.7","entrezGeneId":"653282"},{"alias":"TSPYP7","entrezGeneId":"653288"},{"alias":"ASAH2C","entrezGeneId":"653308"},{"alias":"ASAH2L","entrezGeneId":"653308"},{"alias":"bA449O16.3","entrezGeneId":"653308"},{"alias":"bA98I6.3","entrezGeneId":"653308"},{"alias":"RPL19_7_643","entrezGeneId":"653314"},{"alias":"NY-REN-7-like","entrezGeneId":"653316"},{"alias":"ARMCX6-ps","entrezGeneId":"653354"},{"alias":"GASP10ps","entrezGeneId":"653354"},{"alias":"NCF1A","entrezGeneId":"653361"},{"alias":"NOXO2","entrezGeneId":"653361"},{"alias":"p47phox","entrezGeneId":"653361"},{"alias":"SH3PXD1A","entrezGeneId":"653361"},{"alias":"CXorf2B","entrezGeneId":"653363"},{"alias":"pTEX","entrezGeneId":"653363"},{"alias":"HSPBL3","entrezGeneId":"653364"},{"alias":"SORD2","entrezGeneId":"653381"},{"alias":"EDDM2A","entrezGeneId":"653423"},{"alias":"HE2","entrezGeneId":"653423"},{"alias":"bA15J10.2","entrezGeneId":"653427"},{"alias":"INSSA3","entrezGeneId":"653437"},{"alias":"CXYorf1","entrezGeneId":"653440"},{"alias":"FAM39A","entrezGeneId":"653440"},{"alias":"WASH","entrezGeneId":"653440"},{"alias":"PHC1B","entrezGeneId":"653441"},{"alias":"SRGAP2P1","entrezGeneId":"653464"},{"alias":"AFDN-AS1","entrezGeneId":"653483"},{"alias":"C6orf124","entrezGeneId":"653483"},{"alias":"dJ431P23.3","entrezGeneId":"653483"},{"alias":"HGC6.4","entrezGeneId":"653483"},{"alias":"MLLT4-AS1","entrezGeneId":"653483"},{"alias":"RGP3","entrezGeneId":"653489"},{"alias":"PSG10","entrezGeneId":"653492"},{"alias":"PSG12","entrezGeneId":"653492"},{"alias":"Gal-7","entrezGeneId":"653499"},{"alias":"GAL7","entrezGeneId":"653499"},{"alias":"HKL-14","entrezGeneId":"653499"},{"alias":"LGALS7","entrezGeneId":"653499"},{"alias":"PI7","entrezGeneId":"653499"},{"alias":"COAS-2","entrezGeneId":"653505"},{"alias":"COAS2","entrezGeneId":"653505"},{"alias":"PPIAL4","entrezGeneId":"653505"},{"alias":"PPIAL4B","entrezGeneId":"653505"},{"alias":"COLEC4","entrezGeneId":"653509"},{"alias":"PSAP","entrezGeneId":"653509"},{"alias":"PSP-A","entrezGeneId":"653509"},{"alias":"PSPA","entrezGeneId":"653509"},{"alias":"SFTP1","entrezGeneId":"653509"},{"alias":"SFTPA1B","entrezGeneId":"653509"},{"alias":"SP-A","entrezGeneId":"653509"},{"alias":"SP-A1","entrezGeneId":"653509"},{"alias":"SPA","entrezGeneId":"653509"},{"alias":"SPA1","entrezGeneId":"653509"},{"alias":"GPHR","entrezGeneId":"653519"},{"alias":"GPR89","entrezGeneId":"653519"},{"alias":"GPR89B","entrezGeneId":"653519"},{"alias":"SH120","entrezGeneId":"653519"},{"alias":"UNQ192","entrezGeneId":"653519"},{"alias":"TP53TG3","entrezGeneId":"653550"},{"alias":"TP53TG3E","entrezGeneId":"653550"},{"alias":"TP53TG3F","entrezGeneId":"653550"},{"alias":"HSPBL2","entrezGeneId":"653553"},{"alias":"bA162I21.2","entrezGeneId":"653567"},{"alias":"bA16O1.2","entrezGeneId":"653567"},{"alias":"FAM23A","entrezGeneId":"653567"},{"alias":"FAM23B","entrezGeneId":"653567"},{"alias":"CD177P","entrezGeneId":"653579"},{"alias":"GGT","entrezGeneId":"653590"},{"alias":"COAS-2","entrezGeneId":"653598"},{"alias":"PRAMEF3L","entrezGeneId":"653606"},{"alias":"FAM39F","entrezGeneId":"653635"},{"alias":"WASH5P","entrezGeneId":"653635"},{"alias":"APT","entrezGeneId":"653639"},{"alias":"dJ570F3.6","entrezGeneId":"653639"},{"alias":"LYPLA2L","entrezGeneId":"653639"},{"alias":"DHX40P","entrezGeneId":"653645"},{"alias":"DHX40P1","entrezGeneId":"653645"},{"alias":"TBC1D3P1","entrezGeneId":"653645"},{"alias":"RPS23_5_1783","entrezGeneId":"653658"},{"alias":"C1orf37-DUP","entrezGeneId":"653659"},{"alias":"C1ORF37DUP","entrezGeneId":"653659"},{"alias":"RPL21_36_1027","entrezGeneId":"653665"},{"alias":"SEC1","entrezGeneId":"653677"},{"alias":"CXorf50B","entrezGeneId":"653687"},{"alias":"LINC00246B","entrezGeneId":"653687"},{"alias":"NCRNA00246B","entrezGeneId":"653687"},{"alias":"GSTT2P","entrezGeneId":"653689"},{"alias":"FAM115D","entrezGeneId":"653691"},{"alias":"FAM139B","entrezGeneId":"653691"},{"alias":"TCAF2BP","entrezGeneId":"653691"},{"alias":"RPL7_3_75","entrezGeneId":"653702"},{"alias":"RPL21_56_1471","entrezGeneId":"653737"},{"alias":"VNR19I2","entrezGeneId":"653753"},{"alias":"ZVNH2","entrezGeneId":"653753"},{"alias":"ZVNR2","entrezGeneId":"653753"},{"alias":"RPL31_4_330","entrezGeneId":"653773"},{"alias":"POTE2beta","entrezGeneId":"653781"},{"alias":"FAM128A","entrezGeneId":"653784"},{"alias":"MOZART2A","entrezGeneId":"653784"},{"alias":"RPL23A_7_192","entrezGeneId":"653789"},{"alias":"RPS27_1_148","entrezGeneId":"653805"},{"alias":"JCLN","entrezGeneId":"653808"},{"alias":"JCLN1","entrezGeneId":"653808"},{"alias":"ZG16A","entrezGeneId":"653808"},{"alias":"p17","entrezGeneId":"653820"},{"alias":"ARP11","entrezGeneId":"653857"},{"alias":"RPS10_3_844","entrezGeneId":"654029"},{"alias":"RPS16_4_1529","entrezGeneId":"654170"},{"alias":"OCM1","entrezGeneId":"654231"},{"alias":"OM","entrezGeneId":"654231"},{"alias":"ONCM","entrezGeneId":"654231"},{"alias":"ACA5","entrezGeneId":"654319"},{"alias":"ACA5A/B/C","entrezGeneId":"654319"},{"alias":"ACA8","entrezGeneId":"654320"},{"alias":"SNORA75A","entrezGeneId":"654321"},{"alias":"U23","entrezGeneId":"654321"},{"alias":"ACA13","entrezGeneId":"654322"},{"alias":"RPL9_13_1445","entrezGeneId":"654350"},{"alias":"NM23-LV","entrezGeneId":"654364"},{"alias":"NMELV","entrezGeneId":"654364"},{"alias":"RPS27_8_1194","entrezGeneId":"654365"},{"alias":"RPL37_12_1377","entrezGeneId":"654369"},{"alias":"RPS15A_20_1378","entrezGeneId":"654371"},{"alias":"RPL12_18_1725","entrezGeneId":"654376"},{"alias":"RPL7_18_1464","entrezGeneId":"654381"},{"alias":"RPL19_3_373","entrezGeneId":"654382"},{"alias":"HsT16723","entrezGeneId":"654383"},{"alias":"RPL13_6_1454","entrezGeneId":"654383"},{"alias":"HsT18206","entrezGeneId":"654385"},{"alias":"RPL21_54_1444","entrezGeneId":"654385"},{"alias":"HsT41398","entrezGeneId":"654386"},{"alias":"HsT19508","entrezGeneId":"654387"},{"alias":"RPL31_30_1462","entrezGeneId":"654387"},{"alias":"HsT20607","entrezGeneId":"654388"},{"alias":"RPL32_9_1423","entrezGeneId":"654388"},{"alias":"HsT16324","entrezGeneId":"654390"},{"alias":"RPS27_11_1420","entrezGeneId":"654390"},{"alias":"RPL31_22_1578","entrezGeneId":"654391"},{"alias":"RPL39_18_1545","entrezGeneId":"654392"},{"alias":"bA395L14.6","entrezGeneId":"654412"},{"alias":"F379","entrezGeneId":"654412"},{"alias":"PCNPP","entrezGeneId":"654427"},{"alias":"C17orf86","entrezGeneId":"654434"},{"alias":"LINC00338","entrezGeneId":"654434"},{"alias":"NCRNA00338","entrezGeneId":"654434"},{"alias":"SCARNA16HG","entrezGeneId":"654434"},{"alias":"C8ORFK23","entrezGeneId":"654463"},{"alias":"KGFLP2","entrezGeneId":"654466"},{"alias":"ATP5G2P4","entrezGeneId":"654480"},{"alias":"BOLA2","entrezGeneId":"654483"},{"alias":"ATP5J2P5","entrezGeneId":"654484"},{"alias":"ATP5J2P4","entrezGeneId":"654485"},{"alias":"ATP5J2P6","entrezGeneId":"654486"},{"alias":"HsT16041","entrezGeneId":"654499"},{"alias":"KIAA0125P2","entrezGeneId":"654499"},{"alias":"H2AFVP","entrezGeneId":"654500"},{"alias":"HsT19970","entrezGeneId":"654500"},{"alias":"HMG1L9","entrezGeneId":"654503"},{"alias":"HMGB1L9","entrezGeneId":"654503"},{"alias":"HsT18159","entrezGeneId":"654505"},{"alias":"p48","entrezGeneId":"654505"},{"alias":"LAMR1P7","entrezGeneId":"654506"},{"alias":"RPSA_16_1024","entrezGeneId":"654506"},{"alias":"SFPQ","entrezGeneId":"654780"},{"alias":"IQM1","entrezGeneId":"654790"},{"alias":"GPR121P","entrezGeneId":"654813"},{"alias":"P2Y10P1","entrezGeneId":"654813"},{"alias":"NCF-1B","entrezGeneId":"654816"},{"alias":"SH3PXD1B","entrezGeneId":"654816"},{"alias":"SH3PXD1C","entrezGeneId":"654817"},{"alias":"F379","entrezGeneId":"654835"},{"alias":"H3F3CP","entrezGeneId":"664611"},{"alias":"hsa-mir-539","entrezGeneId":"664612"},{"alias":"mir-539","entrezGeneId":"664612"},{"alias":"MIRN539","entrezGeneId":"664612"},{"alias":"hsa-mir-544","entrezGeneId":"664613"},{"alias":"hsa-mir-544a","entrezGeneId":"664613"},{"alias":"MIR544","entrezGeneId":"664613"},{"alias":"MIRN544","entrezGeneId":"664613"},{"alias":"hsa-mir-545","entrezGeneId":"664614"},{"alias":"mir-545","entrezGeneId":"664614"},{"alias":"MIRN545","entrezGeneId":"664614"},{"alias":"mir-376a-2","entrezGeneId":"664615"},{"alias":"MIR376A-2","entrezGeneId":"664615"},{"alias":"MIRN376A-2","entrezGeneId":"664615"},{"alias":"MIRN376A2","entrezGeneId":"664615"},{"alias":"mir-487b","entrezGeneId":"664616"},{"alias":"MIRN487B","entrezGeneId":"664616"},{"alias":"hsa-mir-542","entrezGeneId":"664617"},{"alias":"mir-542","entrezGeneId":"664617"},{"alias":"MIRN542","entrezGeneId":"664617"},{"alias":"HSP90Bd","entrezGeneId":"664618"},{"alias":"ZNF826","entrezGeneId":"664701"},{"alias":"HNRPA1L-2","entrezGeneId":"664709"},{"alias":"HNRPA1P5","entrezGeneId":"664721"},{"alias":"HNRPA1P6","entrezGeneId":"664722"},{"alias":"HBI-100","entrezGeneId":"677679"},{"alias":"ACA66","entrezGeneId":"677681"},{"alias":"ACA68","entrezGeneId":"677763"},{"alias":"SCARNA21A","entrezGeneId":"677763"},{"alias":"SCARNA18A","entrezGeneId":"677765"},{"alias":"U109","entrezGeneId":"677765"},{"alias":"HBII-382","entrezGeneId":"677766"},{"alias":"mgU2-25/61","entrezGeneId":"677766"},{"alias":"U90","entrezGeneId":"677767"},{"alias":"U93","entrezGeneId":"677768"},{"alias":"U91","entrezGeneId":"677769"},{"alias":"ACA11","entrezGeneId":"677770"},{"alias":"ACA26","entrezGeneId":"677771"},{"alias":"U88","entrezGeneId":"677772"},{"alias":"ACA12","entrezGeneId":"677773"},{"alias":"ACA35","entrezGeneId":"677774"},{"alias":"U87","entrezGeneId":"677775"},{"alias":"U92","entrezGeneId":"677776"},{"alias":"U89","entrezGeneId":"677777"},{"alias":"ACA45","entrezGeneId":"677778"},{"alias":"C3orf66","entrezGeneId":"677779"},{"alias":"ACA57","entrezGeneId":"677780"},{"alias":"ACA47","entrezGeneId":"677781"},{"alias":"F379","entrezGeneId":"677784"},{"alias":"ACA1","entrezGeneId":"677792"},{"alias":"ACA2A","entrezGeneId":"677793"},{"alias":"ACA2b","entrezGeneId":"677794"},{"alias":"ACA5b","entrezGeneId":"677795"},{"alias":"ACA5c","entrezGeneId":"677796"},{"alias":"ACA7B","entrezGeneId":"677797"},{"alias":"ACA9","entrezGeneId":"677798"},{"alias":"SNORA9A","entrezGeneId":"677798"},{"alias":"SNORA11A","entrezGeneId":"677799"},{"alias":"U107","entrezGeneId":"677799"},{"alias":"U108","entrezGeneId":"677800"},{"alias":"ACA14a","entrezGeneId":"677801"},{"alias":"ACA14b","entrezGeneId":"677802"},{"alias":"ACA15","entrezGeneId":"677803"},{"alias":"SNORA15A","entrezGeneId":"677803"},{"alias":"ACA17","entrezGeneId":"677804"},{"alias":"SNORA17","entrezGeneId":"677804"},{"alias":"ACA18","entrezGeneId":"677805"},{"alias":"ACA20","entrezGeneId":"677806"},{"alias":"ACA22","entrezGeneId":"677807"},{"alias":"SNORA22A","entrezGeneId":"677807"},{"alias":"ACA23","entrezGeneId":"677808"},{"alias":"ACA24","entrezGeneId":"677809"},{"alias":"SNORA24A","entrezGeneId":"677809"},{"alias":"HBI-6","entrezGeneId":"677810"},{"alias":"ACA28","entrezGeneId":"677811"},{"alias":"ACA29","entrezGeneId":"677812"},{"alias":"ACA30","entrezGeneId":"677813"},{"alias":"SNORA30A","entrezGeneId":"677813"},{"alias":"ACA31","entrezGeneId":"677814"},{"alias":"SNORA31A","entrezGeneId":"677814"},{"alias":"ACA34","entrezGeneId":"677815"},{"alias":"MIR1291","entrezGeneId":"677815"},{"alias":"SNORA34","entrezGeneId":"677815"},{"alias":"HBI-36","entrezGeneId":"677816"},{"alias":"SNORA35A","entrezGeneId":"677816"},{"alias":"ACA36","entrezGeneId":"677817"},{"alias":"ACA36b","entrezGeneId":"677818"},{"alias":"ACA37","entrezGeneId":"677819"},{"alias":"ACA38","entrezGeneId":"677820"},{"alias":"ACA39","entrezGeneId":"677821"},{"alias":"SNORA39","entrezGeneId":"677821"},{"alias":"ACA40","entrezGeneId":"677822"},{"alias":"SNORA40A","entrezGeneId":"677822"},{"alias":"ACA42","entrezGeneId":"677823"},{"alias":"SNORA42","entrezGeneId":"677823"},{"alias":"ACA43","entrezGeneId":"677824"},{"alias":"SNORA43","entrezGeneId":"677824"},{"alias":"ACA44","entrezGeneId":"677825"},{"alias":"ACA3-2","entrezGeneId":"677826"},{"alias":"SNORA45","entrezGeneId":"677826"},{"alias":"SNORA45B","entrezGeneId":"677826"},{"alias":"ACA46","entrezGeneId":"677827"},{"alias":"HBI-115","entrezGeneId":"677828"},{"alias":"ACA49","entrezGeneId":"677829"},{"alias":"ACA50","entrezGeneId":"677830"},{"alias":"SNORA50","entrezGeneId":"677830"},{"alias":"SNORA76A","entrezGeneId":"677830"},{"alias":"ACA51","entrezGeneId":"677831"},{"alias":"ACA53","entrezGeneId":"677832"},{"alias":"ACA54","entrezGeneId":"677833"},{"alias":"ACA55","entrezGeneId":"677834"},{"alias":"ACA56","entrezGeneId":"677835"},{"alias":"ACA58","entrezGeneId":"677836"},{"alias":"SNORA58B","entrezGeneId":"677836"},{"alias":"ACA60","entrezGeneId":"677837"},{"alias":"ACA61","entrezGeneId":"677838"},{"alias":"U71c","entrezGeneId":"677839"},{"alias":"U71d","entrezGeneId":"677840"},{"alias":"U19-2","entrezGeneId":"677841"},{"alias":"ACA62","entrezGeneId":"677842"},{"alias":"SNORA76","entrezGeneId":"677842"},{"alias":"SNORA76C","entrezGeneId":"677842"},{"alias":"ACA63","entrezGeneId":"677843"},{"alias":"SNORA77A","entrezGeneId":"677843"},{"alias":"ACA64","entrezGeneId":"677844"},{"alias":"ACA65","entrezGeneId":"677845"},{"alias":"SNORA79A","entrezGeneId":"677845"},{"alias":"ACA67","entrezGeneId":"677846"},{"alias":"SNORA80","entrezGeneId":"677846"},{"alias":"HBI-61","entrezGeneId":"677847"},{"alias":"R38A","entrezGeneId":"677848"},{"alias":"snR38A","entrezGeneId":"677848"},{"alias":"R38B","entrezGeneId":"677849"},{"alias":"snR38B","entrezGeneId":"677849"},{"alias":"R38C","entrezGeneId":"677850"},{"alias":"snR38C","entrezGeneId":"677850"},{"alias":"ACA59","entrezGeneId":"677882"},{"alias":"CHTF8P","entrezGeneId":"677883"},{"alias":"CTF8P","entrezGeneId":"677883"},{"alias":"ACA59","entrezGeneId":"677885"},{"alias":"ACA25","entrezGeneId":"684959"},{"alias":"SNORA25A","entrezGeneId":"684959"},{"alias":"mgU6-53B","entrezGeneId":"692053"},{"alias":"HBII-99","entrezGeneId":"692057"},{"alias":"MIR1259","entrezGeneId":"692057"},{"alias":"MIRN1259","entrezGeneId":"692057"},{"alias":"HBII-95","entrezGeneId":"692058"},{"alias":"ACA32","entrezGeneId":"692063"},{"alias":"mgh28S-2410","entrezGeneId":"692072"},{"alias":"ACA16","entrezGeneId":"692073"},{"alias":"mgh28S-2412","entrezGeneId":"692075"},{"alias":"mgU6-47","entrezGeneId":"692076"},{"alias":"Z30","entrezGeneId":"692076"},{"alias":"RNU13","entrezGeneId":"692084"},{"alias":"SNORD13A","entrezGeneId":"692084"},{"alias":"U13","entrezGeneId":"692084"},{"alias":"U45C","entrezGeneId":"692085"},{"alias":"HBI-43","entrezGeneId":"692086"},{"alias":"U49B","entrezGeneId":"692087"},{"alias":"U50'","entrezGeneId":"692088"},{"alias":"U50B","entrezGeneId":"692088"},{"alias":"HBII-108","entrezGeneId":"692089"},{"alias":"U59B","entrezGeneId":"692090"},{"alias":"HBII-115","entrezGeneId":"692091"},{"alias":"U32B","entrezGeneId":"692092"},{"alias":"U62","entrezGeneId":"692093"},{"alias":"U62B","entrezGeneId":"692093"},{"alias":"PSMP","entrezGeneId":"692094"},{"alias":"FAM86D","entrezGeneId":"692099"},{"alias":"HBII-135","entrezGeneId":"692106"},{"alias":"SNORD65A","entrezGeneId":"692106"},{"alias":"HBII-142","entrezGeneId":"692107"},{"alias":"HBII-166","entrezGeneId":"692108"},{"alias":"HBII-210","entrezGeneId":"692109"},{"alias":"HBII-234","entrezGeneId":"692110"},{"alias":"SNORD70A","entrezGeneId":"692110"},{"alias":"HBII-239","entrezGeneId":"692111"},{"alias":"hsa-mir-768","entrezGeneId":"692111"},{"alias":"MIRN768","entrezGeneId":"692111"},{"alias":"RPS26_32_1733","entrezGeneId":"692146"},{"alias":"HMG1L8","entrezGeneId":"692147"},{"alias":"HMGB1L8","entrezGeneId":"692147"},{"alias":"U85","entrezGeneId":"692148"},{"alias":"U100","entrezGeneId":"692149"},{"alias":"U98b","entrezGeneId":"692157"},{"alias":"U99","entrezGeneId":"692158"},{"alias":"GRASPOS","entrezGeneId":"692159"},{"alias":"U75","entrezGeneId":"692195"},{"alias":"U76","entrezGeneId":"692196"},{"alias":"SNORD77A","entrezGeneId":"692197"},{"alias":"U77","entrezGeneId":"692197"},{"alias":"U78","entrezGeneId":"692198"},{"alias":"U84","entrezGeneId":"692199"},{"alias":"HBII-251","entrezGeneId":"692200"},{"alias":"SNORD85","entrezGeneId":"692200"},{"alias":"U86","entrezGeneId":"692201"},{"alias":"HBII-180A","entrezGeneId":"692202"},{"alias":"HBII-180B","entrezGeneId":"692203"},{"alias":"HBII-180C","entrezGeneId":"692204"},{"alias":"HBII-289","entrezGeneId":"692205"},{"alias":"HBII-295","entrezGeneId":"692206"},{"alias":"HBII-296a","entrezGeneId":"692207"},{"alias":"HBII-296b","entrezGeneId":"692208"},{"alias":"HBII-316","entrezGeneId":"692209"},{"alias":"HBII-336","entrezGeneId":"692210"},{"alias":"HBII-419","entrezGeneId":"692211"},{"alias":"HBII-420","entrezGeneId":"692212"},{"alias":"HBII-55","entrezGeneId":"692213"},{"alias":"HBII-82","entrezGeneId":"692214"},{"alias":"14q(0)","entrezGeneId":"692215"},{"alias":"14q(II)","entrezGeneId":"692217"},{"alias":"HBII-52","entrezGeneId":"692218"},{"alias":"U97","entrezGeneId":"692223"},{"alias":"U94","entrezGeneId":"692225"},{"alias":"U96b","entrezGeneId":"692226"},{"alias":"U104","entrezGeneId":"692227"},{"alias":"U105","entrezGeneId":"692229"},{"alias":"U3","entrezGeneId":"692232"},{"alias":"U3A","entrezGeneId":"692232"},{"alias":"U3B","entrezGeneId":"692232"},{"alias":"U83","entrezGeneId":"692233"},{"alias":"U103","entrezGeneId":"692234"},{"alias":"U103B","entrezGeneId":"692235"},{"alias":"HBII-85","entrezGeneId":"692236"},{"alias":"PET1","entrezGeneId":"692236"},{"alias":"PWCR1","entrezGeneId":"692236"},{"alias":"hsa-mir-33b","entrezGeneId":"693120"},{"alias":"mir-33b","entrezGeneId":"693120"},{"alias":"MIRN33B","entrezGeneId":"693120"},{"alias":"hsa-mir-411","entrezGeneId":"693121"},{"alias":"mir-411","entrezGeneId":"693121"},{"alias":"MIRN411","entrezGeneId":"693121"},{"alias":"hsa-mir-421","entrezGeneId":"693122"},{"alias":"MIRN421","entrezGeneId":"693122"},{"alias":"mir-449b","entrezGeneId":"693123"},{"alias":"MIRN449B","entrezGeneId":"693123"},{"alias":"hsa-mir-532","entrezGeneId":"693124"},{"alias":"mir-532","entrezGeneId":"693124"},{"alias":"MIRN532","entrezGeneId":"693124"},{"alias":"MIRN548A1","entrezGeneId":"693125"},{"alias":"MIRN548A2","entrezGeneId":"693126"},{"alias":"MIRN548A3","entrezGeneId":"693127"},{"alias":"MIRN548B","entrezGeneId":"693128"},{"alias":"MIRN548C","entrezGeneId":"693129"},{"alias":"MIRN548D1","entrezGeneId":"693130"},{"alias":"MIRN548D2","entrezGeneId":"693131"},{"alias":"hsa-mir-549","entrezGeneId":"693132"},{"alias":"hsa-mir-549a","entrezGeneId":"693132"},{"alias":"mir-549a","entrezGeneId":"693132"},{"alias":"MIR549","entrezGeneId":"693132"},{"alias":"MIRN549","entrezGeneId":"693132"},{"alias":"hsa-mir-550a-1","entrezGeneId":"693133"},{"alias":"mir-550a-1","entrezGeneId":"693133"},{"alias":"MIR550-1","entrezGeneId":"693133"},{"alias":"MIRN550-1","entrezGeneId":"693133"},{"alias":"hsa-mir-550a-2","entrezGeneId":"693134"},{"alias":"mir-550a-2","entrezGeneId":"693134"},{"alias":"MIR550-2","entrezGeneId":"693134"},{"alias":"MIRN550-2","entrezGeneId":"693134"},{"alias":"mir-551a","entrezGeneId":"693135"},{"alias":"MIRN551A","entrezGeneId":"693135"},{"alias":"mir-551b","entrezGeneId":"693136"},{"alias":"MIRN551B","entrezGeneId":"693136"},{"alias":"hsa-mir-552","entrezGeneId":"693137"},{"alias":"MIRN552","entrezGeneId":"693137"},{"alias":"hsa-mir-553","entrezGeneId":"693138"},{"alias":"MIRN553","entrezGeneId":"693138"},{"alias":"hsa-mir-554","entrezGeneId":"693139"},{"alias":"MIRN554","entrezGeneId":"693139"},{"alias":"hsa-mir-555","entrezGeneId":"693140"},{"alias":"MIRN555","entrezGeneId":"693140"},{"alias":"hsa-mir-556","entrezGeneId":"693141"},{"alias":"mir-556","entrezGeneId":"693141"},{"alias":"MIRN556","entrezGeneId":"693141"},{"alias":"hsa-mir-557","entrezGeneId":"693142"},{"alias":"MIRN557","entrezGeneId":"693142"},{"alias":"hsa-mir-558","entrezGeneId":"693143"},{"alias":"MIRN558","entrezGeneId":"693143"},{"alias":"hsa-mir-559","entrezGeneId":"693144"},{"alias":"MIRN559","entrezGeneId":"693144"},{"alias":"hsa-mir-561","entrezGeneId":"693146"},{"alias":"mir-561","entrezGeneId":"693146"},{"alias":"MIRN561","entrezGeneId":"693146"},{"alias":"hsa-mir-562","entrezGeneId":"693147"},{"alias":"MIRN562","entrezGeneId":"693147"},{"alias":"hsa-mir-563","entrezGeneId":"693148"},{"alias":"MIRN563","entrezGeneId":"693148"},{"alias":"hsa-mir-564","entrezGeneId":"693149"},{"alias":"MIRN564","entrezGeneId":"693149"},{"alias":"hsa-mir-567","entrezGeneId":"693152"},{"alias":"MIRN567","entrezGeneId":"693152"},{"alias":"hsa-mir-568","entrezGeneId":"693153"},{"alias":"MIRN568","entrezGeneId":"693153"},{"alias":"hsa-mir-569","entrezGeneId":"693154"},{"alias":"MIRN569","entrezGeneId":"693154"},{"alias":"hsa-mir-570","entrezGeneId":"693155"},{"alias":"MIRN570","entrezGeneId":"693155"},{"alias":"hsa-mir-571","entrezGeneId":"693156"},{"alias":"MIRN571","entrezGeneId":"693156"},{"alias":"hsa-mir-572","entrezGeneId":"693157"},{"alias":"MIRN572","entrezGeneId":"693157"},{"alias":"hsa-mir-573","entrezGeneId":"693158"},{"alias":"mir-573","entrezGeneId":"693158"},{"alias":"MIRN573","entrezGeneId":"693158"},{"alias":"hsa-mir-574","entrezGeneId":"693159"},{"alias":"mir-574","entrezGeneId":"693159"},{"alias":"MIR574-3p","entrezGeneId":"693159"},{"alias":"MIRN574","entrezGeneId":"693159"},{"alias":"hsa-mir-575","entrezGeneId":"693160"},{"alias":"MIRN575","entrezGeneId":"693160"},{"alias":"hsa-mir-576","entrezGeneId":"693161"},{"alias":"MIRN576","entrezGeneId":"693161"},{"alias":"hsa-mir-577","entrezGeneId":"693162"},{"alias":"mir-577","entrezGeneId":"693162"},{"alias":"MIRN577","entrezGeneId":"693162"},{"alias":"hsa-mir-578","entrezGeneId":"693163"},{"alias":"MIRN578","entrezGeneId":"693163"},{"alias":"hsa-mir-579","entrezGeneId":"693164"},{"alias":"MIRN579","entrezGeneId":"693164"},{"alias":"hsa-mir-580","entrezGeneId":"693165"},{"alias":"MIRN580","entrezGeneId":"693165"},{"alias":"hsa-mir-581","entrezGeneId":"693166"},{"alias":"MIRN581","entrezGeneId":"693166"},{"alias":"hsa-mir-582","entrezGeneId":"693167"},{"alias":"MIRN582","entrezGeneId":"693167"},{"alias":"hsa-mir-583","entrezGeneId":"693168"},{"alias":"MIRN583","entrezGeneId":"693168"},{"alias":"hsa-mir-584","entrezGeneId":"693169"},{"alias":"MIRN584","entrezGeneId":"693169"},{"alias":"hsa-mir-585","entrezGeneId":"693170"},{"alias":"mir-585","entrezGeneId":"693170"},{"alias":"MIRN585","entrezGeneId":"693170"},{"alias":"hsa-mir-586","entrezGeneId":"693171"},{"alias":"MIRN586","entrezGeneId":"693171"},{"alias":"hsa-mir-587","entrezGeneId":"693172"},{"alias":"MIRN587","entrezGeneId":"693172"},{"alias":"hsa-mir-588","entrezGeneId":"693173"},{"alias":"MIRN588","entrezGeneId":"693173"},{"alias":"hsa-mir-589","entrezGeneId":"693174"},{"alias":"mir-589","entrezGeneId":"693174"},{"alias":"MIRN589","entrezGeneId":"693174"},{"alias":"hsa-mir-590","entrezGeneId":"693175"},{"alias":"mir-590","entrezGeneId":"693175"},{"alias":"MIRN590","entrezGeneId":"693175"},{"alias":"hsa-mir-591","entrezGeneId":"693176"},{"alias":"MIRN591","entrezGeneId":"693176"},{"alias":"hsa-mir-592","entrezGeneId":"693177"},{"alias":"mir-592","entrezGeneId":"693177"},{"alias":"MIRN592","entrezGeneId":"693177"},{"alias":"hsa-mir-593","entrezGeneId":"693178"},{"alias":"MIRN593","entrezGeneId":"693178"},{"alias":"hsa-mir-595","entrezGeneId":"693180"},{"alias":"MIRN595","entrezGeneId":"693180"},{"alias":"hsa-mir-596","entrezGeneId":"693181"},{"alias":"MIRN596","entrezGeneId":"693181"},{"alias":"hsa-mir-597","entrezGeneId":"693182"},{"alias":"mir-597","entrezGeneId":"693182"},{"alias":"MIRN597","entrezGeneId":"693182"},{"alias":"hsa-mir-598","entrezGeneId":"693183"},{"alias":"mir-598","entrezGeneId":"693183"},{"alias":"MIRN598","entrezGeneId":"693183"},{"alias":"hsa-mir-599","entrezGeneId":"693184"},{"alias":"MIRN599","entrezGeneId":"693184"},{"alias":"hsa-mir-600","entrezGeneId":"693185"},{"alias":"MIRN600","entrezGeneId":"693185"},{"alias":"hsa-mir-601","entrezGeneId":"693186"},{"alias":"MIRN601","entrezGeneId":"693186"},{"alias":"hsa-mir-602","entrezGeneId":"693187"},{"alias":"MIRN602","entrezGeneId":"693187"},{"alias":"hsa-mir-603","entrezGeneId":"693188"},{"alias":"MIRN603","entrezGeneId":"693188"},{"alias":"hsa-mir-604","entrezGeneId":"693189"},{"alias":"MIRN604","entrezGeneId":"693189"},{"alias":"hsa-mir-605","entrezGeneId":"693190"},{"alias":"mir-605","entrezGeneId":"693190"},{"alias":"MIRN605","entrezGeneId":"693190"},{"alias":"hsa-mir-606","entrezGeneId":"693191"},{"alias":"MIRN606","entrezGeneId":"693191"},{"alias":"hsa-mir-607","entrezGeneId":"693192"},{"alias":"MIRN607","entrezGeneId":"693192"},{"alias":"hsa-mir-608","entrezGeneId":"693193"},{"alias":"MIRN608","entrezGeneId":"693193"},{"alias":"hsa-mir-609","entrezGeneId":"693194"},{"alias":"MIRN609","entrezGeneId":"693194"},{"alias":"hsa-mir-610","entrezGeneId":"693195"},{"alias":"MIRN610","entrezGeneId":"693195"},{"alias":"hsa-mir-611","entrezGeneId":"693196"},{"alias":"MIRN611","entrezGeneId":"693196"},{"alias":"hsa-mir-612","entrezGeneId":"693197"},{"alias":"MIRN612","entrezGeneId":"693197"},{"alias":"hsa-mir-613","entrezGeneId":"693198"},{"alias":"MIRN613","entrezGeneId":"693198"},{"alias":"hsa-mir-614","entrezGeneId":"693199"},{"alias":"MIRN614","entrezGeneId":"693199"},{"alias":"hsa-mir-615","entrezGeneId":"693200"},{"alias":"mir-615","entrezGeneId":"693200"},{"alias":"MIRN615","entrezGeneId":"693200"},{"alias":"hsa-mir-616","entrezGeneId":"693201"},{"alias":"MIRN616","entrezGeneId":"693201"},{"alias":"hsa-mir-617","entrezGeneId":"693202"},{"alias":"MIRN617","entrezGeneId":"693202"},{"alias":"hsa-mir-618","entrezGeneId":"693203"},{"alias":"mir-618","entrezGeneId":"693203"},{"alias":"MIRN618","entrezGeneId":"693203"},{"alias":"hsa-mir-619","entrezGeneId":"693204"},{"alias":"MIRN619","entrezGeneId":"693204"},{"alias":"hsa-mir-620","entrezGeneId":"693205"},{"alias":"MIRN620","entrezGeneId":"693205"},{"alias":"hsa-mir-621","entrezGeneId":"693206"},{"alias":"MIRN621","entrezGeneId":"693206"},{"alias":"hsa-mir-622","entrezGeneId":"693207"},{"alias":"MIRN622","entrezGeneId":"693207"},{"alias":"hsa-mir-623","entrezGeneId":"693208"},{"alias":"MIRN623","entrezGeneId":"693208"},{"alias":"hsa-mir-624","entrezGeneId":"693209"},{"alias":"mir-624","entrezGeneId":"693209"},{"alias":"MIRN624","entrezGeneId":"693209"},{"alias":"hsa-mir-625","entrezGeneId":"693210"},{"alias":"MIRN625","entrezGeneId":"693210"},{"alias":"hsa-mir-626","entrezGeneId":"693211"},{"alias":"MIRN626","entrezGeneId":"693211"},{"alias":"hsa-mir-627","entrezGeneId":"693212"},{"alias":"mir-627","entrezGeneId":"693212"},{"alias":"MIRN627","entrezGeneId":"693212"},{"alias":"hsa-mir-628","entrezGeneId":"693213"},{"alias":"mir-628","entrezGeneId":"693213"},{"alias":"MIRN628","entrezGeneId":"693213"},{"alias":"hsa-mir-629","entrezGeneId":"693214"},{"alias":"mir-629","entrezGeneId":"693214"},{"alias":"MIRN629","entrezGeneId":"693214"},{"alias":"hsa-mir-630","entrezGeneId":"693215"},{"alias":"MIRN630","entrezGeneId":"693215"},{"alias":"hsa-mir-631","entrezGeneId":"693216"},{"alias":"MIRN631","entrezGeneId":"693216"},{"alias":"hsa-mir-632","entrezGeneId":"693217"},{"alias":"MIRN632","entrezGeneId":"693217"},{"alias":"hsa-mir-633","entrezGeneId":"693218"},{"alias":"MIRN633","entrezGeneId":"693218"},{"alias":"hsa-mir-634","entrezGeneId":"693219"},{"alias":"MIRN634","entrezGeneId":"693219"},{"alias":"hsa-mir-635","entrezGeneId":"693220"},{"alias":"MIRN635","entrezGeneId":"693220"},{"alias":"hsa-mir-636","entrezGeneId":"693221"},{"alias":"MIRN636","entrezGeneId":"693221"},{"alias":"hsa-mir-637","entrezGeneId":"693222"},{"alias":"MIRN637","entrezGeneId":"693222"},{"alias":"hsa-mir-638","entrezGeneId":"693223"},{"alias":"MIRN638","entrezGeneId":"693223"},{"alias":"hsa-mir-639","entrezGeneId":"693224"},{"alias":"MIRN639","entrezGeneId":"693224"},{"alias":"hsa-mir-640","entrezGeneId":"693225"},{"alias":"MIRN640","entrezGeneId":"693225"},{"alias":"hsa-mir-641","entrezGeneId":"693226"},{"alias":"mir-641","entrezGeneId":"693226"},{"alias":"MIRN641","entrezGeneId":"693226"},{"alias":"hsa-mir-642","entrezGeneId":"693227"},{"alias":"hsa-mir-642a","entrezGeneId":"693227"},{"alias":"mir-642a","entrezGeneId":"693227"},{"alias":"MIR642","entrezGeneId":"693227"},{"alias":"MIRN642","entrezGeneId":"693227"},{"alias":"hsa-mir-643","entrezGeneId":"693228"},{"alias":"mir-643","entrezGeneId":"693228"},{"alias":"MIRN643","entrezGeneId":"693228"},{"alias":"hsa-mir-644","entrezGeneId":"693229"},{"alias":"hsa-mir-644a","entrezGeneId":"693229"},{"alias":"MIR644","entrezGeneId":"693229"},{"alias":"MIRN644","entrezGeneId":"693229"},{"alias":"hsa-mir-645","entrezGeneId":"693230"},{"alias":"MIRN645","entrezGeneId":"693230"},{"alias":"hsa-mir-646","entrezGeneId":"693231"},{"alias":"MIRN646","entrezGeneId":"693231"},{"alias":"hsa-mir-647","entrezGeneId":"693232"},{"alias":"MIRN647","entrezGeneId":"693232"},{"alias":"hsa-mir-648","entrezGeneId":"693233"},{"alias":"MIRN648","entrezGeneId":"693233"},{"alias":"hsa-mir-649","entrezGeneId":"693234"},{"alias":"MIRN649","entrezGeneId":"693234"},{"alias":"hsa-mir-92b","entrezGeneId":"693235"},{"alias":"mir-92b","entrezGeneId":"693235"},{"alias":"MIRN92B","entrezGeneId":"693235"},{"alias":"hsa-mir-650","entrezGeneId":"723778"},{"alias":"MIRN650","entrezGeneId":"723778"},{"alias":"hsa-mir-651","entrezGeneId":"723779"},{"alias":"mir-651","entrezGeneId":"723779"},{"alias":"MIRN651","entrezGeneId":"723779"},{"alias":"H2A/R","entrezGeneId":"723790"},{"alias":"INSIGF","entrezGeneId":"723961"},{"alias":"hsa-mir-652","entrezGeneId":"724022"},{"alias":"MIRN652","entrezGeneId":"724022"},{"alias":"hsa-mir-653","entrezGeneId":"724023"},{"alias":"mir-653","entrezGeneId":"724023"},{"alias":"MIRN653","entrezGeneId":"724023"},{"alias":"hsa-mir-654","entrezGeneId":"724024"},{"alias":"mir-654","entrezGeneId":"724024"},{"alias":"MIRN654","entrezGeneId":"724024"},{"alias":"hsa-mir-655","entrezGeneId":"724025"},{"alias":"mir-655","entrezGeneId":"724025"},{"alias":"MIRN655","entrezGeneId":"724025"},{"alias":"hsa-mir-656","entrezGeneId":"724026"},{"alias":"mir-656","entrezGeneId":"724026"},{"alias":"MIRN656","entrezGeneId":"724026"},{"alias":"hsa-mir-657","entrezGeneId":"724027"},{"alias":"MIRN657","entrezGeneId":"724027"},{"alias":"hsa-mir-658","entrezGeneId":"724028"},{"alias":"MIRN658","entrezGeneId":"724028"},{"alias":"hsa-mir-659","entrezGeneId":"724029"},{"alias":"mir-659","entrezGeneId":"724029"},{"alias":"MIRN659","entrezGeneId":"724029"},{"alias":"hsa-mir-660","entrezGeneId":"724030"},{"alias":"mir-660","entrezGeneId":"724030"},{"alias":"MIRN660","entrezGeneId":"724030"},{"alias":"hsa-mir-661","entrezGeneId":"724031"},{"alias":"MIRN661","entrezGeneId":"724031"},{"alias":"hsa-mir-662","entrezGeneId":"724032"},{"alias":"MIRN662","entrezGeneId":"724032"},{"alias":"hsa-mir-663","entrezGeneId":"724033"},{"alias":"hsa-mir-663a","entrezGeneId":"724033"},{"alias":"mir-663a","entrezGeneId":"724033"},{"alias":"MIR663","entrezGeneId":"724033"},{"alias":"MIRN663","entrezGeneId":"724033"},{"alias":"DEFA7","entrezGeneId":"724067"},{"alias":"DEFAP3","entrezGeneId":"724068"},{"alias":"CXorf31","entrezGeneId":"724087"},{"alias":"NCRNA00059","entrezGeneId":"724102"},{"alias":"U19H","entrezGeneId":"724102"},{"alias":"SPG29","entrezGeneId":"724107"},{"alias":"LCC","entrezGeneId":"727676"},{"alias":"U8","entrezGeneId":"727676"},{"alias":"CARLo-1","entrezGeneId":"727677"},{"alias":"CARLO1","entrezGeneId":"727677"},{"alias":"LINC00860","entrezGeneId":"727677"},{"alias":"CXorf29","entrezGeneId":"727682"},{"alias":"CXorf19","entrezGeneId":"727686"},{"alias":"C21orf134","entrezGeneId":"727699"},{"alias":"NCRNA00163","entrezGeneId":"727699"},{"alias":"NLC1-A","entrezGeneId":"727699"},{"alias":"NLC1A","entrezGeneId":"727699"},{"alias":"C21orf135","entrezGeneId":"727701"},{"alias":"NCRNA00165","entrezGeneId":"727701"},{"alias":"NLC1-B","entrezGeneId":"727701"},{"alias":"NLC1B","entrezGeneId":"727701"},{"alias":"IGFL-5P","entrezGeneId":"727703"},{"alias":"IGFL-6P","entrezGeneId":"727704"},{"alias":"HBII-85-19","entrezGeneId":"727708"},{"alias":"CNSA-P3","entrezGeneId":"727736"},{"alias":"SH3GLP3","entrezGeneId":"727736"},{"alias":"RPL22_6_262","entrezGeneId":"727747"},{"alias":"MIP","entrezGeneId":"727764"},{"alias":"pp5644","entrezGeneId":"727764"},{"alias":"TEKT4P4","entrezGeneId":"727764"},{"alias":"RWDD1L1","entrezGeneId":"727789"},{"alias":"RPL31_10_468","entrezGeneId":"727792"},{"alias":"HMGN2L5","entrezGeneId":"727795"},{"alias":"RPL21_9_342","entrezGeneId":"727810"},{"alias":"RPL21_15_469","entrezGeneId":"727821"},{"alias":"RPS11_3_1298","entrezGeneId":"727826"},{"alias":"FAM75A3","entrezGeneId":"727830"},{"alias":"RPL13A_2_157","entrezGeneId":"727831"},{"alias":"IMPDH1","entrezGeneId":"727833"},{"alias":"IMPDHL1","entrezGeneId":"727833"},{"alias":"RPL9_3_534","entrezGeneId":"727835"},{"alias":"CT5.2","entrezGeneId":"727837"},{"alias":"CT5.2b","entrezGeneId":"727837"},{"alias":"HOM-MEL-40","entrezGeneId":"727837"},{"alias":"SSX","entrezGeneId":"727837"},{"alias":"RanBP2alpha","entrezGeneId":"727851"},{"alias":"RANBP2L1","entrezGeneId":"727851"},{"alias":"RGP8","entrezGeneId":"727851"},{"alias":"BHLHF42","entrezGeneId":"727857"},{"alias":"CCSPD","entrezGeneId":"727857"},{"alias":"C4BPAL1","entrezGeneId":"727859"},{"alias":"RPL9_18_1643","entrezGeneId":"727865"},{"alias":"TMEM29B","entrezGeneId":"727866"},{"alias":"MG1","entrezGeneId":"727897"},{"alias":"MUC-5B","entrezGeneId":"727897"},{"alias":"MUC5","entrezGeneId":"727897"},{"alias":"MUC9","entrezGeneId":"727897"},{"alias":"FAM75A5","entrezGeneId":"727905"},{"alias":"GLT8D4","entrezGeneId":"727936"},{"alias":"RPS3A_3_456","entrezGeneId":"727951"},{"alias":"SDHAL2","entrezGeneId":"727956"},{"alias":"SDHALP2","entrezGeneId":"727956"},{"alias":"HEATR7A","entrezGeneId":"727957"},{"alias":"RPS3A_21_1203","entrezGeneId":"727970"},{"alias":"RPL17_13_564","entrezGeneId":"727984"},{"alias":"RPS12_3_484","entrezGeneId":"727997"},{"alias":"RPL15_10_1204","entrezGeneId":"728002"},{"alias":"bA548K23.1","entrezGeneId":"728005"},{"alias":"CTGLF9P","entrezGeneId":"728005"},{"alias":"RPL35_2_728","entrezGeneId":"728010"},{"alias":"CT47","entrezGeneId":"728036"},{"alias":"CT47.10","entrezGeneId":"728036"},{"alias":"C21orf122","entrezGeneId":"728039"},{"alias":"PRED57","entrezGeneId":"728039"},{"alias":"PRED90","entrezGeneId":"728039"},{"alias":"CT47.9","entrezGeneId":"728042"},{"alias":"PPBPL1","entrezGeneId":"728045"},{"alias":"TGB2","entrezGeneId":"728045"},{"alias":"CT47.8","entrezGeneId":"728049"},{"alias":"CT47.6","entrezGeneId":"728062"},{"alias":"CT47.5","entrezGeneId":"728072"},{"alias":"CT47.4","entrezGeneId":"728075"},{"alias":"NCRNA00290","entrezGeneId":"728081"},{"alias":"CT47.3","entrezGeneId":"728082"},{"alias":"RPL15_5_1331","entrezGeneId":"728088"},{"alias":"CT47.2","entrezGeneId":"728090"},{"alias":"CT47.1","entrezGeneId":"728096"},{"alias":"RPL23A_20_731","entrezGeneId":"728106"},{"alias":"ANXA8","entrezGeneId":"728113"},{"alias":"ANXA8L2","entrezGeneId":"728113"},{"alias":"bA145E20.2","entrezGeneId":"728113"},{"alias":"VAC-beta","entrezGeneId":"728113"},{"alias":"FAM60CP","entrezGeneId":"728115"},{"alias":"ZNF916B","entrezGeneId":"728116"},{"alias":"FAM22A","entrezGeneId":"728118"},{"alias":"RPSA_7_452","entrezGeneId":"728126"},{"alias":"RPL7A_8_496","entrezGeneId":"728128"},{"alias":"FAM22D","entrezGeneId":"728130"},{"alias":"TSPY9","entrezGeneId":"728132"},{"alias":"RPL23A_3_161","entrezGeneId":"728134"},{"alias":"CT78","entrezGeneId":"728137"},{"alias":"RPL7A_32_1739","entrezGeneId":"728139"},{"alias":"DUXY1","entrezGeneId":"728169"},{"alias":"RPL7A_9_655","entrezGeneId":"728179"},{"alias":"FAM22A-AS1","entrezGeneId":"728190"},{"alias":"RPL36A_24_1574","entrezGeneId":"728202"},{"alias":"RPL23A_32_1546","entrezGeneId":"728207"},{"alias":"KAP4.8","entrezGeneId":"728224"},{"alias":"KRTAP4.8","entrezGeneId":"728224"},{"alias":"GGT","entrezGeneId":"728226"},{"alias":"HMGN2L","entrezGeneId":"728234"},{"alias":"MAGE-D4","entrezGeneId":"728239"},{"alias":"MAGE-E1","entrezGeneId":"728239"},{"alias":"MAGE1","entrezGeneId":"728239"},{"alias":"MAGEE1","entrezGeneId":"728239"},{"alias":"RPS12_15_1507","entrezGeneId":"728244"},{"alias":"KAP1.4","entrezGeneId":"728255"},{"alias":"KRTAP1.4","entrezGeneId":"728255"},{"alias":"GTF2IP18","entrezGeneId":"728262"},{"alias":"CARMEN","entrezGeneId":"728264"},{"alias":"MIR143HG","entrezGeneId":"728264"},{"alias":"KAP2.2","entrezGeneId":"728279"},{"alias":"D2HGD","entrezGeneId":"728294"},{"alias":"GOLGA6L7P","entrezGeneId":"728310"},{"alias":"RPL26_12_861","entrezGeneId":"728311"},{"alias":"RPL7A_7_480","entrezGeneId":"728315"},{"alias":"KAP9.1","entrezGeneId":"728318"},{"alias":"KRTAP9L3","entrezGeneId":"728318"},{"alias":"GTF2H2C_2","entrezGeneId":"728340"},{"alias":"bA353J17.1","entrezGeneId":"728343"},{"alias":"HNP-1","entrezGeneId":"728358"},{"alias":"HP-1","entrezGeneId":"728358"},{"alias":"HP1","entrezGeneId":"728358"},{"alias":"HOVO3","entrezGeneId":"728361"},{"alias":"RPL6_12_538","entrezGeneId":"728365"},{"alias":"USP17L25","entrezGeneId":"728369"},{"alias":"USP17L26","entrezGeneId":"728369"},{"alias":"USP17L27","entrezGeneId":"728369"},{"alias":"USP17L28","entrezGeneId":"728369"},{"alias":"USP17L29","entrezGeneId":"728369"},{"alias":"USP17L30","entrezGeneId":"728369"},{"alias":"RPL9_8_1037","entrezGeneId":"728374"},{"alias":"A26C1B","entrezGeneId":"728378"},{"alias":"ACTB","entrezGeneId":"728378"},{"alias":"POTE2alpha","entrezGeneId":"728378"},{"alias":"POTEACTIN","entrezGeneId":"728378"},{"alias":"RPL7_9_661","entrezGeneId":"728380"},{"alias":"DNM1DN3-4","entrezGeneId":"728388"},{"alias":"DNM1DN3.4","entrezGeneId":"728388"},{"alias":"DNM1DN3@","entrezGeneId":"728388"},{"alias":"DNM1DN4-3","entrezGeneId":"728388"},{"alias":"DNM1DN4@","entrezGeneId":"728388"},{"alias":"TSPY10","entrezGeneId":"728395"},{"alias":"TSPY8","entrezGeneId":"728395"},{"alias":"C21orf54","entrezGeneId":"728409"},{"alias":"DUX4","entrezGeneId":"728410"},{"alias":"POM121L7","entrezGeneId":"728418"},{"alias":"RPS15_1_87","entrezGeneId":"728428"},{"alias":"FAM90A20","entrezGeneId":"728430"},{"alias":"NARG2P2","entrezGeneId":"728432"},{"alias":"GGT","entrezGeneId":"728441"},{"alias":"GGT 2","entrezGeneId":"728441"},{"alias":"pTEX","entrezGeneId":"728447"},{"alias":"PPIEP1","entrezGeneId":"728448"},{"alias":"C20orf61","entrezGeneId":"728450"},{"alias":"dJ1012F16.1","entrezGeneId":"728450"},{"alias":"RPS28_2_814","entrezGeneId":"728453"},{"alias":"GOP","entrezGeneId":"728458"},{"alias":"C6orf186","entrezGeneId":"728464"},{"alias":"RPL23A_1_1","entrezGeneId":"728481"},{"alias":"RPL23A_22_1044","entrezGeneId":"728484"},{"alias":"RPL7A_29_1509","entrezGeneId":"728486"},{"alias":"bA413M3.2","entrezGeneId":"728489"},{"alias":"C9orf151","entrezGeneId":"728489"},{"alias":"HEP","entrezGeneId":"728489"},{"alias":"HEP1","entrezGeneId":"728489"},{"alias":"TIMM15","entrezGeneId":"728489"},{"alias":"ZIM17","entrezGeneId":"728489"},{"alias":"FAM2B","entrezGeneId":"728492"},{"alias":"h4F5","entrezGeneId":"728492"},{"alias":"H4F5C","entrezGeneId":"728492"},{"alias":"GOLGA6L11","entrezGeneId":"728498"},{"alias":"RPL21_29_789","entrezGeneId":"728501"},{"alias":"hCG26824","entrezGeneId":"728505"},{"alias":"SW2","entrezGeneId":"728505"},{"alias":"SWD2","entrezGeneId":"728505"},{"alias":"WDR82","entrezGeneId":"728505"},{"alias":"WDR82B","entrezGeneId":"728505"},{"alias":"RPS19_3_1038","entrezGeneId":"728509"},{"alias":"PNMA6D","entrezGeneId":"728513"},{"alias":"RPL23A_1_2","entrezGeneId":"728517"},{"alias":"BIRC","entrezGeneId":"728519"},{"alias":"NAIP1B","entrezGeneId":"728519"},{"alias":"RPL9_5_548","entrezGeneId":"728523"},{"alias":"LINC01125","entrezGeneId":"728537"},{"alias":"RPL23A_33_1589","entrezGeneId":"728538"},{"alias":"RPS8_1_552","entrezGeneId":"728553"},{"alias":"C21orf19","entrezGeneId":"728556"},{"alias":"C2orf4P","entrezGeneId":"728556"},{"alias":"Memo1","entrezGeneId":"728556"},{"alias":"MEMO1P","entrezGeneId":"728556"},{"alias":"rcC2orf4","entrezGeneId":"728556"},{"alias":"RPSA_11_739","entrezGeneId":"728562"},{"alias":"RPL23A_16_748","entrezGeneId":"728567"},{"alias":"RPL32_2_350","entrezGeneId":"728572"},{"alias":"RPL15_2_475","entrezGeneId":"728576"},{"alias":"LINC01183","entrezGeneId":"728586"},{"alias":"RPS27A_4_740","entrezGeneId":"728590"},{"alias":"C13orf38","entrezGeneId":"728591"},{"alias":"HsT2384","entrezGeneId":"728599"},{"alias":"LINC01092","entrezGeneId":"728606"},{"alias":"SDHACL","entrezGeneId":"728609"},{"alias":"SDHAL","entrezGeneId":"728609"},{"alias":"RPL7_6_574","entrezGeneId":"728620"},{"alias":"PFD6L","entrezGeneId":"728621"},{"alias":"PFDN6L","entrezGeneId":"728621"},{"alias":"p19B","entrezGeneId":"728622"},{"alias":"SKP1B","entrezGeneId":"728622"},{"alias":"HMGN2L3","entrezGeneId":"728632"},{"alias":"SDR25C4","entrezGeneId":"728635"},{"alias":"FABP5L7","entrezGeneId":"728641"},{"alias":"CDC2L2","entrezGeneId":"728642"},{"alias":"CDC2L3","entrezGeneId":"728642"},{"alias":"CDK11-p110","entrezGeneId":"728642"},{"alias":"CDK11-p46","entrezGeneId":"728642"},{"alias":"CDK11-p58","entrezGeneId":"728642"},{"alias":"p58GTA","entrezGeneId":"728642"},{"alias":"PITSLRE","entrezGeneId":"728642"},{"alias":"HCCAT1","entrezGeneId":"728655"},{"alias":"LINC00078","entrezGeneId":"728655"},{"alias":"NCRNA00078","entrezGeneId":"728655"},{"alias":"DUSP8P2","entrezGeneId":"728657"},{"alias":"bA196N24.2","entrezGeneId":"728658"},{"alias":"RPL13A_8_1086","entrezGeneId":"728658"},{"alias":"SLC35E2","entrezGeneId":"728661"},{"alias":"RPL21_43_1282","entrezGeneId":"728693"},{"alias":"B1","entrezGeneId":"728695"},{"alias":"CT11.2","entrezGeneId":"728695"},{"alias":"SPANX-B","entrezGeneId":"728695"},{"alias":"SPANXB","entrezGeneId":"728695"},{"alias":"SPANXB2","entrezGeneId":"728695"},{"alias":"SPANXF1","entrezGeneId":"728695"},{"alias":"SPANXF2","entrezGeneId":"728695"},{"alias":"RPS3A_8_458","entrezGeneId":"728700"},{"alias":"FAM177A2","entrezGeneId":"728710"},{"alias":"CT11.1","entrezGeneId":"728712"},{"alias":"SPANX","entrezGeneId":"728712"},{"alias":"SPANX-A","entrezGeneId":"728712"},{"alias":"SPANXA","entrezGeneId":"728712"},{"alias":"FABP5L8","entrezGeneId":"728729"},{"alias":"NPIPB","entrezGeneId":"728741"},{"alias":"FAM90A17","entrezGeneId":"728746"},{"alias":"PRKRIRP1","entrezGeneId":"728748"},{"alias":"FAM90A19","entrezGeneId":"728753"},{"alias":"DNM1DN5","entrezGeneId":"728770"},{"alias":"DNM1DN5@","entrezGeneId":"728770"},{"alias":"PABP2","entrezGeneId":"728773"},{"alias":"PABP4","entrezGeneId":"728773"},{"alias":"PABPCP2","entrezGeneId":"728773"},{"alias":"PABPCP4","entrezGeneId":"728773"},{"alias":"RPS15A_14_912","entrezGeneId":"728774"},{"alias":"RPL21_61_1788","entrezGeneId":"728782"},{"alias":"CCDC29","entrezGeneId":"728788"},{"alias":"bcm1851","entrezGeneId":"728791"},{"alias":"RPS10_2_393","entrezGeneId":"728791"},{"alias":"bA556L1.2","entrezGeneId":"728798"},{"alias":"FRMPD2L1","entrezGeneId":"728798"},{"alias":"FRMPD2L2","entrezGeneId":"728798"},{"alias":"FRMPD2P1","entrezGeneId":"728798"},{"alias":"FRMPD2P2","entrezGeneId":"728798"},{"alias":"FRMPDP2","entrezGeneId":"728798"},{"alias":"PDZD5A","entrezGeneId":"728798"},{"alias":"PDZD5B","entrezGeneId":"728798"},{"alias":"PDZK5A","entrezGeneId":"728798"},{"alias":"PDZK5B","entrezGeneId":"728798"},{"alias":"yX59F3.2","entrezGeneId":"728798"},{"alias":"NSFP","entrezGeneId":"728806"},{"alias":"RPL29_4_582","entrezGeneId":"728820"},{"alias":"RPS26_19_1511","entrezGeneId":"728823"},{"alias":"GCUD2","entrezGeneId":"728833"},{"alias":"NBPF8P","entrezGeneId":"728841"},{"alias":"RPL7_8_636","entrezGeneId":"728843"},{"alias":"CH17-118O6.2","entrezGeneId":"728855"},{"alias":"NPIP","entrezGeneId":"728888"},{"alias":"CT45-2","entrezGeneId":"728911"},{"alias":"CT45.2","entrezGeneId":"728911"},{"alias":"ABHD17AP2","entrezGeneId":"728917"},{"alias":"C1orf47","entrezGeneId":"728917"},{"alias":"FAM108A11P","entrezGeneId":"728917"},{"alias":"FAM108A2","entrezGeneId":"728917"},{"alias":"FAM108A3","entrezGeneId":"728917"},{"alias":"FAM108A3P","entrezGeneId":"728917"},{"alias":"PDE4DIP1","entrezGeneId":"728920"},{"alias":"eloA3-like-1","entrezGeneId":"728929"},{"alias":"EloA3C","entrezGeneId":"728929"},{"alias":"ELOA3L1","entrezGeneId":"728929"},{"alias":"HsT828","entrezGeneId":"728929"},{"alias":"TCEB3CL","entrezGeneId":"728929"},{"alias":"RPL23A_26_1111","entrezGeneId":"728933"},{"alias":"RPS26_10_512","entrezGeneId":"728937"},{"alias":"hCG17750","entrezGeneId":"728938"},{"alias":"RPS19_4_1350","entrezGeneId":"728953"},{"alias":"ZNF705C","entrezGeneId":"728957"},{"alias":"RPL7_33_1817","entrezGeneId":"728962"},{"alias":"RPS15A_4_42","entrezGeneId":"728963"},{"alias":"RPS27A_2_217","entrezGeneId":"728971"},{"alias":"RPL10A_3_593","entrezGeneId":"728979"},{"alias":"RPL7A_5_397","entrezGeneId":"728992"},{"alias":"RPL9_10_1518","entrezGeneId":"729004"},{"alias":"FTHL20","entrezGeneId":"729009"},{"alias":"Em:AC006313.1","entrezGeneId":"729012"},{"alias":"FAM33B","entrezGeneId":"729012"},{"alias":"SKA2L","entrezGeneId":"729012"},{"alias":"FAM22HP","entrezGeneId":"729023"},{"alias":"NUTMHP","entrezGeneId":"729023"},{"alias":"LINC00505","entrezGeneId":"729041"},{"alias":"RPL29_19_1356","entrezGeneId":"729042"},{"alias":"C1orf234","entrezGeneId":"729059"},{"alias":"TEX#","entrezGeneId":"729059"},{"alias":"FAM92A2","entrezGeneId":"729073"},{"alias":"RPL36A_6_507","entrezGeneId":"729075"},{"alias":"RPSA_2_180","entrezGeneId":"729079"},{"alias":"cyrano","entrezGeneId":"729082"},{"alias":"linc-OIP5","entrezGeneId":"729082"},{"alias":"C3orf41","entrezGeneId":"729085"},{"alias":"CTGLF2","entrezGeneId":"729092"},{"alias":"BMS1LP4","entrezGeneId":"729096"},{"alias":"RPS4P14","entrezGeneId":"729097"},{"alias":"RPS4X_5_1190","entrezGeneId":"729097"},{"alias":"RPL7_10_623","entrezGeneId":"729123"},{"alias":"RPLP1_2_185","entrezGeneId":"729138"},{"alias":"RPL9_16_1554","entrezGeneId":"729146"},{"alias":"RPS3A_7_401","entrezGeneId":"729150"},{"alias":"FABP5L2","entrezGeneId":"729163"},{"alias":"ANKRD20B","entrezGeneId":"729171"},{"alias":"CASC14","entrezGeneId":"729177"},{"alias":"NBAT-1","entrezGeneId":"729177"},{"alias":"RPS26_33_1769","entrezGeneId":"729188"},{"alias":"ANAPC10P","entrezGeneId":"729198"},{"alias":"LYZL5B","entrezGeneId":"729201"},{"alias":"RPL31_2_226","entrezGeneId":"729203"},{"alias":"HsT16795","entrezGeneId":"729208"},{"alias":"RPL21_53_1436","entrezGeneId":"729208"},{"alias":"RPSA_3_227","entrezGeneId":"729209"},{"alias":"KRT18L5","entrezGeneId":"729211"},{"alias":"RPL13A_13_1745","entrezGeneId":"729212"},{"alias":"RPL32_8_1362","entrezGeneId":"729215"},{"alias":"CC-CKR-2","entrezGeneId":"729230"},{"alias":"CCR-2","entrezGeneId":"729230"},{"alias":"CCR2A","entrezGeneId":"729230"},{"alias":"CCR2B","entrezGeneId":"729230"},{"alias":"CD192","entrezGeneId":"729230"},{"alias":"CKR2","entrezGeneId":"729230"},{"alias":"CKR2A","entrezGeneId":"729230"},{"alias":"CKR2B","entrezGeneId":"729230"},{"alias":"CMKBR2","entrezGeneId":"729230"},{"alias":"MCP-1-R","entrezGeneId":"729230"},{"alias":"RPS13_1_51","entrezGeneId":"729236"},{"alias":"COLEC5","entrezGeneId":"729238"},{"alias":"PSAP","entrezGeneId":"729238"},{"alias":"PSP-A","entrezGeneId":"729238"},{"alias":"PSPA","entrezGeneId":"729238"},{"alias":"SFTP1","entrezGeneId":"729238"},{"alias":"SFTPA2B","entrezGeneId":"729238"},{"alias":"SP-2A","entrezGeneId":"729238"},{"alias":"SP-A","entrezGeneId":"729238"},{"alias":"SPA2","entrezGeneId":"729238"},{"alias":"SPAII","entrezGeneId":"729238"},{"alias":"RPL21_53_1439","entrezGeneId":"729241"},{"alias":"MAVP1","entrezGeneId":"729249"},{"alias":"KRT14P","entrezGeneId":"729252"},{"alias":"KRT16P","entrezGeneId":"729252"},{"alias":"RPS24_2_174","entrezGeneId":"729257"},{"alias":"RPS11_2_1249","entrezGeneId":"729258"},{"alias":"RPL17_24_1526","entrezGeneId":"729259"},{"alias":"bA119F19.1","entrezGeneId":"729262"},{"alias":"FAM22B","entrezGeneId":"729262"},{"alias":"TP53TG3","entrezGeneId":"729264"},{"alias":"TP53TG3B","entrezGeneId":"729264"},{"alias":"TP53TG3C","entrezGeneId":"729264"},{"alias":"TP53TG3E","entrezGeneId":"729264"},{"alias":"TP53TG3F","entrezGeneId":"729264"},{"alias":"RPS2_24_1626","entrezGeneId":"729274"},{"alias":"RPL23A_21_778","entrezGeneId":"729277"},{"alias":"RPL28_2_1625","entrezGeneId":"729279"},{"alias":"ZNF286C","entrezGeneId":"729288"},{"alias":"ZNF286L","entrezGeneId":"729288"},{"alias":"ZNF590","entrezGeneId":"729288"},{"alias":"RPS18_2_763","entrezGeneId":"729293"},{"alias":"PMS2L16","entrezGeneId":"729299"},{"alias":"RPL17_1_25","entrezGeneId":"729301"},{"alias":"RPL31_22_1025","entrezGeneId":"729308"},{"alias":"PLA2L","entrezGeneId":"729330"},{"alias":"RPL27_3_316","entrezGeneId":"729332"},{"alias":"RPL17_11_1102","entrezGeneId":"729340"},{"alias":"ALDRL3","entrezGeneId":"729347"},{"alias":"RPL17_4_369","entrezGeneId":"729349"},{"alias":"TP53TG3E","entrezGeneId":"729355"},{"alias":"TP53TG3F","entrezGeneId":"729355"},{"alias":"KIAA1881","entrezGeneId":"729359"},{"alias":"S3-12","entrezGeneId":"729359"},{"alias":"RPL36A_14_1122","entrezGeneId":"729362"},{"alias":"RPS10_1_98","entrezGeneId":"729374"},{"alias":"TRIM48L1","entrezGeneId":"729384"},{"alias":"TRIM49D1","entrezGeneId":"729384"},{"alias":"TRIM49D2P","entrezGeneId":"729384"},{"alias":"TRIM49L","entrezGeneId":"729384"},{"alias":"TRIM49L1","entrezGeneId":"729384"},{"alias":"RPS6_13_1629","entrezGeneId":"729389"},{"alias":"RFWD2P","entrezGeneId":"729391"},{"alias":"bA239L20.2","entrezGeneId":"729392"},{"alias":"GAGE11","entrezGeneId":"729396"},{"alias":"RPL21_38_1104","entrezGeneId":"729402"},{"alias":"GAPDHL6","entrezGeneId":"729403"},{"alias":"GAPDL6","entrezGeneId":"729403"},{"alias":"CT4.8","entrezGeneId":"729408"},{"alias":"GAGE-2D","entrezGeneId":"729408"},{"alias":"GAGE-8","entrezGeneId":"729408"},{"alias":"GAGE8","entrezGeneId":"729408"},{"alias":"RPLP1_5_629","entrezGeneId":"729416"},{"alias":"C13orf45","entrezGeneId":"729420"},{"alias":"GAGE-12B","entrezGeneId":"729422"},{"alias":"HNRNPA1L","entrezGeneId":"729423"},{"alias":"HNRNPA1L1","entrezGeneId":"729423"},{"alias":"HNRPA1L","entrezGeneId":"729423"},{"alias":"GAGE-12B","entrezGeneId":"729428"},{"alias":"GAGE-12B","entrezGeneId":"729431"},{"alias":"ATP6EL1","entrezGeneId":"729435"},{"alias":"ATP6V1EL1","entrezGeneId":"729435"},{"alias":"GATSL1","entrezGeneId":"729438"},{"alias":"GATSL2","entrezGeneId":"729438"},{"alias":"CT4.2","entrezGeneId":"729447"},{"alias":"GAGE-2","entrezGeneId":"729447"},{"alias":"GAGE-2A","entrezGeneId":"729447"},{"alias":"GAGE2","entrezGeneId":"729447"},{"alias":"RPL7_28_1618","entrezGeneId":"729449"},{"alias":"PMS2L14","entrezGeneId":"729453"},{"alias":"PMS2L2","entrezGeneId":"729453"},{"alias":"PMS2P2","entrezGeneId":"729453"},{"alias":"PMS4","entrezGeneId":"729453"},{"alias":"c367G8.3","entrezGeneId":"729480"},{"alias":"rjd10","entrezGeneId":"729480"},{"alias":"RPL23AL","entrezGeneId":"729480"},{"alias":"RPL23A_35_1465","entrezGeneId":"729480"},{"alias":"RPL2B","entrezGeneId":"729480"},{"alias":"RPL21_46_1252","entrezGeneId":"729484"},{"alias":"FAM108A5","entrezGeneId":"729495"},{"alias":"FAM108A5P","entrezGeneId":"729495"},{"alias":"RPL12_1_13","entrezGeneId":"729500"},{"alias":"BM033","entrezGeneId":"729515"},{"alias":"C6orf35","entrezGeneId":"729515"},{"alias":"AACSL","entrezGeneId":"729522"},{"alias":"LMPIP","entrezGeneId":"729533"},{"alias":"p17","entrezGeneId":"729533"},{"alias":"Ugene","entrezGeneId":"729533"},{"alias":"RPL34_16_1528","entrezGeneId":"729536"},{"alias":"RanBP2L1","entrezGeneId":"729540"},{"alias":"RanBP2L2","entrezGeneId":"729540"},{"alias":"RGP6","entrezGeneId":"729540"},{"alias":"RGPD7","entrezGeneId":"729540"},{"alias":"FAM231A","entrezGeneId":"729574"},{"alias":"FAM231C","entrezGeneId":"729574"},{"alias":"C6orf100","entrezGeneId":"729583"},{"alias":"dJ25J6.5","entrezGeneId":"729583"},{"alias":"bA353C18.4","entrezGeneId":"729608"},{"alias":"BXDC1P","entrezGeneId":"729608"},{"alias":"C20orf53","entrezGeneId":"729608"},{"alias":"RPF2P","entrezGeneId":"729608"},{"alias":"FAHD2P","entrezGeneId":"729610"},{"alias":"RPL29_20_1448","entrezGeneId":"729611"},{"alias":"RPL23A_37_1566","entrezGeneId":"729617"},{"alias":"RPL36A_22_1565","entrezGeneId":"729621"},{"alias":"RPL31_28_1375","entrezGeneId":"729646"},{"alias":"ZNF812","entrezGeneId":"729648"},{"alias":"S100A11P","entrezGeneId":"729659"},{"alias":"S100A14","entrezGeneId":"729659"},{"alias":"RPL22_1_15","entrezGeneId":"729662"},{"alias":"C14orf38","entrezGeneId":"729665"},{"alias":"c14_5395","entrezGeneId":"729665"},{"alias":"LDHAL5","entrezGeneId":"729666"},{"alias":"RPL7_5_405","entrezGeneId":"729677"},{"alias":"RPS2_25_1632","entrezGeneId":"729679"},{"alias":"RCTPI1","entrezGeneId":"729708"},{"alias":"CICK0721Q.1","entrezGeneId":"729727"},{"alias":"dJ570F3.5","entrezGeneId":"729727"},{"alias":"RPL12-L","entrezGeneId":"729727"},{"alias":"RPL12_5_682","entrezGeneId":"729727"},{"alias":"TESSP-4","entrezGeneId":"729756"},{"alias":"TESSP4","entrezGeneId":"729756"},{"alias":"OR7-21","entrezGeneId":"729759"},{"alias":"RPL12_3_246","entrezGeneId":"729760"},{"alias":"RPL23A_19_648","entrezGeneId":"729764"},{"alias":"RPS10_1_104","entrezGeneId":"729780"},{"alias":"GOLGA8C","entrezGeneId":"729786"},{"alias":"RPS15_3_372","entrezGeneId":"729789"},{"alias":"RPL23A_28_1140","entrezGeneId":"729798"},{"alias":"ZNF731","entrezGeneId":"729806"},{"alias":"DNM1DN8-1","entrezGeneId":"729809"},{"alias":"DNM1DN8-5","entrezGeneId":"729809"},{"alias":"DNM1DN8@","entrezGeneId":"729809"},{"alias":"GGT","entrezGeneId":"729838"},{"alias":"RPS2_23_1541","entrezGeneId":"729842"},{"alias":"RPA3-AS1","entrezGeneId":"729852"},{"alias":"RPA3OS","entrezGeneId":"729852"},{"alias":"NUP358","entrezGeneId":"729857"},{"alias":"RANBP2L2","entrezGeneId":"729857"},{"alias":"RGP2","entrezGeneId":"729857"},{"alias":"PRC17","entrezGeneId":"729873"},{"alias":"TBC1D3A","entrezGeneId":"729873"},{"alias":"TBC1D3F","entrezGeneId":"729873"},{"alias":"RPS16_5_1636","entrezGeneId":"729903"},{"alias":"RPL36A_8_787","entrezGeneId":"729909"},{"alias":"hCG_1745121","entrezGeneId":"729920"},{"alias":"hISPD","entrezGeneId":"729920"},{"alias":"MDDGA7","entrezGeneId":"729920"},{"alias":"MDDGC7","entrezGeneId":"729920"},{"alias":"Nip","entrezGeneId":"729920"},{"alias":"RPS20_12_1158","entrezGeneId":"729927"},{"alias":"ZNF75C","entrezGeneId":"729944"},{"alias":"CDC26P","entrezGeneId":"729948"},{"alias":"RPL18A_1_27","entrezGeneId":"729955"},{"alias":"RPL21_12_416","entrezGeneId":"729962"},{"alias":"BLOCK27","entrezGeneId":"729967"},{"alias":"MOPT","entrezGeneId":"729967"},{"alias":"RNF210B","entrezGeneId":"729974"},{"alias":"MEF2BNB","entrezGeneId":"729991"},{"alias":"CKAMP44","entrezGeneId":"729993"},{"alias":"RPSA_2_81","entrezGeneId":"730029"},{"alias":"DNM1DN8@","entrezGeneId":"730058"},{"alias":"RPL34_18_1640","entrezGeneId":"730061"},{"alias":"RPL26_5_125","entrezGeneId":"730070"},{"alias":"ATTHOG","entrezGeneId":"730094"},{"alias":"BC030336","entrezGeneId":"730094"},{"alias":"C16orf52","entrezGeneId":"730094"},{"alias":"GSTAP2","entrezGeneId":"730152"},{"alias":"GSTAP6","entrezGeneId":"730152"},{"alias":"NPIP","entrezGeneId":"730153"},{"alias":"RPS26_3_133","entrezGeneId":"730177"},{"alias":"RPS10_3_235","entrezGeneId":"730187"},{"alias":"HSP90Ae","entrezGeneId":"730211"},{"alias":"RPL5_1_139","entrezGeneId":"730213"},{"alias":"CAD","entrezGeneId":"730249"},{"alias":"IRG1","entrezGeneId":"730249"},{"alias":"RPL17_4_153","entrezGeneId":"730255"},{"alias":"COAS2","entrezGeneId":"730262"},{"alias":"ZNF735P","entrezGeneId":"730291"},{"alias":"GTF2H2D","entrezGeneId":"730394"},{"alias":"HINTP1","entrezGeneId":"730647"},{"alias":"RPL14_2_522","entrezGeneId":"730747"},{"alias":"KAP2.3","entrezGeneId":"730755"},{"alias":"KRTAP2.3","entrezGeneId":"730755"},{"alias":"RPS3A_10_823","entrezGeneId":"730861"},{"alias":"RPS3A_18_1114","entrezGeneId":"730993"},{"alias":"DNCL1P2","entrezGeneId":"731308"},{"alias":"RPL21_57_1527","entrezGeneId":"731688"},{"alias":"RPL32_4_459","entrezGeneId":"731741"},{"alias":"LINC00202-2","entrezGeneId":"731789"},{"alias":"RPL29_9_1124","entrezGeneId":"732199"},{"alias":"LINC00532","entrezGeneId":"732253"},{"alias":"lincRNA-NR_024015","entrezGeneId":"732253"},{"alias":"NCRNA00062","entrezGeneId":"735301"},{"alias":"CS-KMT","entrezGeneId":"751071"},{"alias":"METTL12","entrezGeneId":"751071"},{"alias":"U99HG","entrezGeneId":"751071"},{"alias":"CXYorf8","entrezGeneId":"751580"},{"alias":"NCRNA00106","entrezGeneId":"751580"},{"alias":"DFNX5","entrezGeneId":"751798"},{"alias":"CP-23","entrezGeneId":"752014"},{"alias":"CP23","entrezGeneId":"752014"},{"alias":"C20orf169-DBNDD2","entrezGeneId":"767557"},{"alias":"MPD6","entrezGeneId":"767558"},{"alias":"MTPNUT","entrezGeneId":"767558"},{"alias":"14q(I-1)","entrezGeneId":"767561"},{"alias":"14q(I-2)","entrezGeneId":"767562"},{"alias":"14q(I-3)","entrezGeneId":"767563"},{"alias":"14q(I-4)","entrezGeneId":"767564"},{"alias":"14q(I-5)","entrezGeneId":"767565"},{"alias":"14q(I-6)","entrezGeneId":"767566"},{"alias":"14q(I-7)","entrezGeneId":"767567"},{"alias":"14q(I-8)","entrezGeneId":"767568"},{"alias":"14q(I-9)","entrezGeneId":"767569"},{"alias":"14q(II-1)","entrezGeneId":"767577"},{"alias":"14q(II-2)","entrezGeneId":"767578"},{"alias":"14q(II-3)","entrezGeneId":"767579"},{"alias":"14q(II-4)","entrezGeneId":"767580"},{"alias":"14q(II-5)","entrezGeneId":"767581"},{"alias":"14q(II-6)","entrezGeneId":"767582"},{"alias":"14q(II-7)","entrezGeneId":"767583"},{"alias":"14q(II-8)","entrezGeneId":"767584"},{"alias":"14q(II-9)","entrezGeneId":"767585"},{"alias":"14q(II-10)","entrezGeneId":"767588"},{"alias":"14q(II-11)","entrezGeneId":"767589"},{"alias":"14q(II-12)","entrezGeneId":"767590"},{"alias":"14q(II-13)","entrezGeneId":"767591"},{"alias":"14q(II-14)","entrezGeneId":"767592"},{"alias":"14q(II-15)","entrezGeneId":"767593"},{"alias":"14q(II-16)","entrezGeneId":"767594"},{"alias":"14q(II-17)","entrezGeneId":"767595"},{"alias":"14q(II-18)","entrezGeneId":"767596"},{"alias":"14q(II-19)","entrezGeneId":"767597"},{"alias":"14q(II-20)","entrezGeneId":"767598"},{"alias":"14q(II-21)","entrezGeneId":"767599"},{"alias":"14q(II-22)","entrezGeneId":"767600"},{"alias":"14q(II-23)","entrezGeneId":"767603"},{"alias":"14q(II-24)","entrezGeneId":"767604"},{"alias":"14q(II-25)","entrezGeneId":"767605"},{"alias":"14q(II-26)","entrezGeneId":"767606"},{"alias":"14q(II-27)","entrezGeneId":"767608"},{"alias":"14q(II-28)","entrezGeneId":"767609"},{"alias":"14q(II-29)","entrezGeneId":"767610"},{"alias":"14q(II-30)","entrezGeneId":"767611"},{"alias":"14q(II-31)","entrezGeneId":"767612"},{"alias":"C1orf152","entrezGeneId":"767846"},{"alias":"COAS3","entrezGeneId":"767846"},{"alias":"PFN1P5","entrezGeneId":"767851"},{"alias":"HAR1F","entrezGeneId":"768096"},{"alias":"LINC00064","entrezGeneId":"768096"},{"alias":"NCRNA00064","entrezGeneId":"768096"},{"alias":"HAR1R","entrezGeneId":"768097"},{"alias":"LINC00065","entrezGeneId":"768097"},{"alias":"NCRNA00065","entrezGeneId":"768097"},{"alias":"RP36","entrezGeneId":"768206"},{"alias":"hsa-mir-758","entrezGeneId":"768212"},{"alias":"mir-758","entrezGeneId":"768212"},{"alias":"MIRN758","entrezGeneId":"768212"},{"alias":"hsa-mir-671","entrezGeneId":"768213"},{"alias":"mir-671","entrezGeneId":"768213"},{"alias":"MIRN671","entrezGeneId":"768213"},{"alias":"hsa-mir-668","entrezGeneId":"768214"},{"alias":"MIRN668","entrezGeneId":"768214"},{"alias":"hsa-mir-767","entrezGeneId":"768215"},{"alias":"mir-767","entrezGeneId":"768215"},{"alias":"MIRN767","entrezGeneId":"768215"},{"alias":"hsa-mir-454","entrezGeneId":"768216"},{"alias":"mir-454","entrezGeneId":"768216"},{"alias":"MIRN454","entrezGeneId":"768216"},{"alias":"hsa-mir-769","entrezGeneId":"768217"},{"alias":"mir-769","entrezGeneId":"768217"},{"alias":"MIRN769","entrezGeneId":"768217"},{"alias":"hsa-mir-766","entrezGeneId":"768218"},{"alias":"mir-766","entrezGeneId":"768218"},{"alias":"MIRN766","entrezGeneId":"768218"},{"alias":"hsa-mir-802","entrezGeneId":"768219"},{"alias":"MIRN802","entrezGeneId":"768219"},{"alias":"hsa-mir-765","entrezGeneId":"768220"},{"alias":"mir-765","entrezGeneId":"768220"},{"alias":"MIRN765","entrezGeneId":"768220"},{"alias":"hsa-mir-770","entrezGeneId":"768222"},{"alias":"MIRN770","entrezGeneId":"768222"},{"alias":"ROA1","entrezGeneId":"777778"},{"alias":"FAM18A","entrezGeneId":"780776"},{"alias":"YDR084C","entrezGeneId":"780776"},{"alias":"RNU3","entrezGeneId":"780851"},{"alias":"U3","entrezGeneId":"780851"},{"alias":"U3-2B","entrezGeneId":"780852"},{"alias":"U3b2","entrezGeneId":"780852"},{"alias":"RNU3-3","entrezGeneId":"780853"},{"alias":"U3-3","entrezGeneId":"780853"},{"alias":"RNU3-4","entrezGeneId":"780854"},{"alias":"U3-4","entrezGeneId":"780854"},{"alias":"FPH1","entrezGeneId":"780897"},{"alias":"HPP","entrezGeneId":"780897"},{"alias":"MUH","entrezGeneId":"780897"},{"alias":"ORW3","entrezGeneId":"780903"},{"alias":"C10q26DEL","entrezGeneId":"780911"},{"alias":"TQDS","entrezGeneId":"780911"},{"alias":"RTSH","entrezGeneId":"780915"},{"alias":"GGF3","entrezGeneId":"780916"},{"alias":"HGF3","entrezGeneId":"780916"},{"alias":"TRNAS4","entrezGeneId":"790951"},{"alias":"TRS4","entrezGeneId":"790951"},{"alias":"HESRG","entrezGeneId":"790952"},{"alias":"C11orf83","entrezGeneId":"790955"},{"alias":"CCDS41658.1","entrezGeneId":"790955"},{"alias":"MC3DN9","entrezGeneId":"790955"},{"alias":"UNQ655","entrezGeneId":"790955"},{"alias":"TRK-CTT2-4","entrezGeneId":"790966"},{"alias":"TRK2","entrezGeneId":"790966"},{"alias":"TRNAK2","entrezGeneId":"790966"},{"alias":"C17DELq21.31","entrezGeneId":"791085"},{"alias":"NCRNA00198","entrezGeneId":"791114"},{"alias":"NCRNA00199","entrezGeneId":"791115"},{"alias":"SHFLD","entrezGeneId":"791121"},{"alias":"KTS","entrezGeneId":"791122"},{"alias":"TRN2","entrezGeneId":"791226"},{"alias":"TRNAN2","entrezGeneId":"791226"},{"alias":"TRN3","entrezGeneId":"791227"},{"alias":"TRNAN3","entrezGeneId":"791227"},{"alias":"HtV1","entrezGeneId":"791230"},{"alias":"TRNAV7","entrezGeneId":"791230"},{"alias":"TRV7","entrezGeneId":"791230"},{"alias":"HtV2","entrezGeneId":"791231"},{"alias":"TRNAV8","entrezGeneId":"791231"},{"alias":"TRV8","entrezGeneId":"791231"},{"alias":"HtV3","entrezGeneId":"791232"},{"alias":"TRNAV9","entrezGeneId":"791232"},{"alias":"TRV9","entrezGeneId":"791232"},{"alias":"RN5-8S1","entrezGeneId":"100008587"},{"alias":"RNA5-8S5","entrezGeneId":"100008587"},{"alias":"RN18S1","entrezGeneId":"100008588"},{"alias":"RNA18S5","entrezGeneId":"100008588"},{"alias":"RN28S1","entrezGeneId":"100008589"},{"alias":"RNA28S5","entrezGeneId":"100008589"},{"alias":"TRNAY1","entrezGeneId":"100009601"},{"alias":"Tyr-tRNA","entrezGeneId":"100009601"},{"alias":"TRNAY2","entrezGeneId":"100009602"},{"alias":"TRY-GTA5-2","entrezGeneId":"100009602"},{"alias":"Tyr-tRNA","entrezGeneId":"100009602"},{"alias":"TRNAA2","entrezGeneId":"100009603"},{"alias":"TRNAA3","entrezGeneId":"100009604"},{"alias":"TRNAF1","entrezGeneId":"100009605"},{"alias":"TRF-GAA1-2","entrezGeneId":"100009606"},{"alias":"TRNAF2","entrezGeneId":"100009606"},{"alias":"TRH-GTG1-9","entrezGeneId":"100009607"},{"alias":"TRNAH5","entrezGeneId":"100009607"},{"alias":"ANO1-AS2","entrezGeneId":"100009613"},{"alias":"C11orf78","entrezGeneId":"100009613"},{"alias":"NCRNA00224","entrezGeneId":"100009613"},{"alias":"Oct4-pg5","entrezGeneId":"100009667"},{"alias":"VN2R4P","entrezGeneId":"100033392"},{"alias":"VN2R5P","entrezGeneId":"100033392"},{"alias":"VN2R8P","entrezGeneId":"100033392"},{"alias":"OTX2P","entrezGeneId":"100033409"},{"alias":"HBII-85-1","entrezGeneId":"100033413"},{"alias":"PWCR1","entrezGeneId":"100033413"},{"alias":"HBII-85-2","entrezGeneId":"100033414"},{"alias":"HBII-85-3","entrezGeneId":"100033415"},{"alias":"HBII-85-4","entrezGeneId":"100033416"},{"alias":"HBII-85-5","entrezGeneId":"100033417"},{"alias":"HBII-85-6","entrezGeneId":"100033418"},{"alias":"HBII-85-7","entrezGeneId":"100033419"},{"alias":"HBII-85-8","entrezGeneId":"100033420"},{"alias":"HBII-85-9","entrezGeneId":"100033421"},{"alias":"HBII-85-10","entrezGeneId":"100033422"},{"alias":"HBII-85-11","entrezGeneId":"100033423"},{"alias":"HBII-85-12","entrezGeneId":"100033424"},{"alias":"HBII-85-13","entrezGeneId":"100033425"},{"alias":"HBII-85-14","entrezGeneId":"100033426"},{"alias":"HBII-85-15","entrezGeneId":"100033427"},{"alias":"HBII-85-16","entrezGeneId":"100033428"},{"alias":"HBII-85-17","entrezGeneId":"100033429"},{"alias":"HBII-85-18","entrezGeneId":"100033430"},{"alias":"HBII-85-20","entrezGeneId":"100033431"},{"alias":"HBII-85-21","entrezGeneId":"100033432"},{"alias":"HBII-85-22","entrezGeneId":"100033433"},{"alias":"HBII-85-23","entrezGeneId":"100033434"},{"alias":"HBII-85-24","entrezGeneId":"100033435"},{"alias":"HBII-85-25","entrezGeneId":"100033436"},{"alias":"HBII-52-2","entrezGeneId":"100033437"},{"alias":"HBII-85-26","entrezGeneId":"100033438"},{"alias":"HBII-85-27","entrezGeneId":"100033439"},{"alias":"HBII-52-3","entrezGeneId":"100033440"},{"alias":"HBII-52-4","entrezGeneId":"100033441"},{"alias":"HBII-52-5","entrezGeneId":"100033442"},{"alias":"HBII-52-6","entrezGeneId":"100033443"},{"alias":"HBII-52-7","entrezGeneId":"100033444"},{"alias":"HBII-52-8","entrezGeneId":"100033445"},{"alias":"HBII-52-9","entrezGeneId":"100033446"},{"alias":"HBII-52-10","entrezGeneId":"100033447"},{"alias":"HBII-52-11","entrezGeneId":"100033448"},{"alias":"HBII-52-12","entrezGeneId":"100033449"},{"alias":"HBII-52-13","entrezGeneId":"100033450"},{"alias":"HBII-52-14","entrezGeneId":"100033451"},{"alias":"HBII-52-15","entrezGeneId":"100033453"},{"alias":"HBII-52-16","entrezGeneId":"100033454"},{"alias":"HBII-52-17","entrezGeneId":"100033455"},{"alias":"HBII-52-18","entrezGeneId":"100033456"},{"alias":"HBII-52-19","entrezGeneId":"100033458"},{"alias":"HBII-52-20","entrezGeneId":"100033460"},{"alias":"HBII-52-21","entrezGeneId":"100033603"},{"alias":"HBII-52-22","entrezGeneId":"100033799"},{"alias":"HBII-52-23","entrezGeneId":"100033800"},{"alias":"HBII-52-25","entrezGeneId":"100033801"},{"alias":"HBII-52-26","entrezGeneId":"100033802"},{"alias":"HBII-52-29","entrezGeneId":"100033803"},{"alias":"HBII-52-30","entrezGeneId":"100033804"},{"alias":"HBII-52-31","entrezGeneId":"100033805"},{"alias":"HBII-52-32","entrezGeneId":"100033806"},{"alias":"HBII-52-33","entrezGeneId":"100033807"},{"alias":"HBII-52-34","entrezGeneId":"100033808"},{"alias":"HBII-52-35","entrezGeneId":"100033809"},{"alias":"HBII-52-36","entrezGeneId":"100033810"},{"alias":"HBII-52-37","entrezGeneId":"100033811"},{"alias":"HBII-52-38","entrezGeneId":"100033812"},{"alias":"HBII-52-39","entrezGeneId":"100033813"},{"alias":"HBII-52-40","entrezGeneId":"100033814"},{"alias":"HBII-52-41","entrezGeneId":"100033815"},{"alias":"HBII-52-42","entrezGeneId":"100033816"},{"alias":"HBII-52-43","entrezGeneId":"100033817"},{"alias":"HBII-52-44","entrezGeneId":"100033818"},{"alias":"hsa-mir-675","entrezGeneId":"100033819"},{"alias":"MIRN675","entrezGeneId":"100033819"},{"alias":"HBII-85-28","entrezGeneId":"100033820"},{"alias":"HBII-85-29","entrezGeneId":"100033821"},{"alias":"HBII-52-48","entrezGeneId":"100033822"},{"alias":"PDZK1P2","entrezGeneId":"100034743"},{"alias":"HBII-52-24","entrezGeneId":"100036563"},{"alias":"HBII-52-27","entrezGeneId":"100036564"},{"alias":"HBII-52-28","entrezGeneId":"100036565"},{"alias":"HBII-52-45","entrezGeneId":"100036566"},{"alias":"SNORD115-48","entrezGeneId":"100036566"},{"alias":"HBII-52-46","entrezGeneId":"100036567"},{"alias":"HBII-52-47","entrezGeneId":"100036567"},{"alias":"RP4-680N4","entrezGeneId":"100037280"},{"alias":"UBE2D3L","entrezGeneId":"100037280"},{"alias":"UBE2D3P","entrezGeneId":"100037280"},{"alias":"UBE2D5P","entrezGeneId":"100037280"},{"alias":"KB-226F1.2","entrezGeneId":"100037417"},{"alias":"APT-B7","entrezGeneId":"100038246"},{"alias":"TD1","entrezGeneId":"100038246"},{"alias":"TDI","entrezGeneId":"100038246"},{"alias":"BAT1P1","entrezGeneId":"100048904"},{"alias":"ANRIL","entrezGeneId":"100048912"},{"alias":"CDKN2B-AS","entrezGeneId":"100048912"},{"alias":"CDKN2BAS","entrezGeneId":"100048912"},{"alias":"NCRNA00089","entrezGeneId":"100048912"},{"alias":"p15AS","entrezGeneId":"100048912"},{"alias":"PCAT12","entrezGeneId":"100048912"},{"alias":"BPG294E21.7","entrezGeneId":"100048922"},{"alias":"BAT1P2","entrezGeneId":"100048923"},{"alias":"BPG309N1.15","entrezGeneId":"100048923"},{"alias":"BPG309N1.16","entrezGeneId":"100048924"},{"alias":"C10DUPq24","entrezGeneId":"100049542"},{"alias":"DUP10q24","entrezGeneId":"100049542"},{"alias":"SHSF3","entrezGeneId":"100049542"},{"alias":"TRK-TTT3-3","entrezGeneId":"100049613"},{"alias":"TRNAK3","entrezGeneId":"100049613"},{"alias":"TRNAV6","entrezGeneId":"100049614"},{"alias":"TRV6","entrezGeneId":"100049614"},{"alias":"LINC00067","entrezGeneId":"100073347"},{"alias":"MIM1","entrezGeneId":"100073347"},{"alias":"NCRNA00067","entrezGeneId":"100073347"},{"alias":"LINC00060","entrezGeneId":"100093630"},{"alias":"NCRNA00060","entrezGeneId":"100093630"},{"alias":"TTTY1","entrezGeneId":"100101116"},{"alias":"NCRNA00217","entrezGeneId":"100101118"},{"alias":"TTTY8","entrezGeneId":"100101118"},{"alias":"NCRNA00215","entrezGeneId":"100101120"},{"alias":"TTTY23","entrezGeneId":"100101121"},{"alias":"POM121-2","entrezGeneId":"100101267"},{"alias":"MRT26","entrezGeneId":"100101424"},{"alias":"MRT20","entrezGeneId":"100101425"},{"alias":"PMS2L15","entrezGeneId":"100101440"},{"alias":"PMS2LP2","entrezGeneId":"100101440"},{"alias":"PMSR7","entrezGeneId":"100101440"},{"alias":"ZNF-WYM","entrezGeneId":"100101467"},{"alias":"ZNF397OS","entrezGeneId":"100101467"},{"alias":"ZNF917","entrezGeneId":"100101467"},{"alias":"MCTS2","entrezGeneId":"100101490"},{"alias":"PSIMCT-1","entrezGeneId":"100101490"},{"alias":"CT4.8","entrezGeneId":"100101629"},{"alias":"GAGE-8","entrezGeneId":"100101629"},{"alias":"LINC00414","entrezGeneId":"100101938"},{"alias":"UCKL1-AS","entrezGeneId":"100113386"},{"alias":"UCKL1AS","entrezGeneId":"100113386"},{"alias":"UCKL1OS","entrezGeneId":"100113386"},{"alias":"MIR1201","entrezGeneId":"100113391"},{"alias":"MIRN1201","entrezGeneId":"100113391"},{"alias":"MIR3647","entrezGeneId":"100113402"},{"alias":"C6orf220","entrezGeneId":"100113403"},{"alias":"dJ439I14.1","entrezGeneId":"100113403"},{"alias":"LINC00577","entrezGeneId":"100113403"},{"alias":"C9orf146","entrezGeneId":"100113404"},{"alias":"F379","entrezGeneId":"100124412"},{"alias":"GGF4","entrezGeneId":"100124414"},{"alias":"HGF4","entrezGeneId":"100124414"},{"alias":"U58","entrezGeneId":"100124516"},{"alias":"U70C","entrezGeneId":"100124538"},{"alias":"HOXAS","entrezGeneId":"100124700"},{"alias":"HOXC-AS4","entrezGeneId":"100124700"},{"alias":"HOXC11-AS1","entrezGeneId":"100124700"},{"alias":"NCRNA00072","entrezGeneId":"100124700"},{"alias":"GATAD3","entrezGeneId":"100125288"},{"alias":"GLP-1","entrezGeneId":"100125288"},{"alias":"GLP1","entrezGeneId":"100125288"},{"alias":"ASFMR1","entrezGeneId":"100126270"},{"alias":"FMR1-AS","entrezGeneId":"100126270"},{"alias":"FMR1AS","entrezGeneId":"100126270"},{"alias":"FMR4","entrezGeneId":"100126270"},{"alias":"hsa-mir-298","entrezGeneId":"100126296"},{"alias":"MIRN298","entrezGeneId":"100126296"},{"alias":"hsa-mir-300","entrezGeneId":"100126297"},{"alias":"MIRN300","entrezGeneId":"100126297"},{"alias":"CBL-3","entrezGeneId":"100126299"},{"alias":"CBL3","entrezGeneId":"100126299"},{"alias":"hsa-mir-886","entrezGeneId":"100126299"},{"alias":"hvg-5","entrezGeneId":"100126299"},{"alias":"MIR886","entrezGeneId":"100126299"},{"alias":"MIRN886","entrezGeneId":"100126299"},{"alias":"nc886","entrezGeneId":"100126299"},{"alias":"svtRNA2-1a","entrezGeneId":"100126299"},{"alias":"VTRNA2","entrezGeneId":"100126299"},{"alias":"MIRN509-2","entrezGeneId":"100126301"},{"alias":"mir-450b","entrezGeneId":"100126302"},{"alias":"MIRN450B","entrezGeneId":"100126302"},{"alias":"hsa-mir-890","entrezGeneId":"100126303"},{"alias":"MIRN890","entrezGeneId":"100126303"},{"alias":"MIRN891B","entrezGeneId":"100126304"},{"alias":"hsa-mir-888","entrezGeneId":"100126306"},{"alias":"MIRN888","entrezGeneId":"100126306"},{"alias":"MIRN892B","entrezGeneId":"100126307"},{"alias":"hsa-mir-541","entrezGeneId":"100126308"},{"alias":"mir-541","entrezGeneId":"100126308"},{"alias":"MIRN541","entrezGeneId":"100126308"},{"alias":"hsa-mir-875","entrezGeneId":"100126309"},{"alias":"MIRN875","entrezGeneId":"100126309"},{"alias":"hsa-mir-876","entrezGeneId":"100126310"},{"alias":"mir-876","entrezGeneId":"100126310"},{"alias":"MIRN876","entrezGeneId":"100126310"},{"alias":"mir-147b","entrezGeneId":"100126311"},{"alias":"MIRN147B","entrezGeneId":"100126311"},{"alias":"hsa-mir-744","entrezGeneId":"100126313"},{"alias":"mir-744","entrezGeneId":"100126313"},{"alias":"MIRN744","entrezGeneId":"100126313"},{"alias":"hsa-mir-877","entrezGeneId":"100126314"},{"alias":"mir-877","entrezGeneId":"100126314"},{"alias":"MIRN877","entrezGeneId":"100126314"},{"alias":"miRNA877","entrezGeneId":"100126314"},{"alias":"hsa-mir-665","entrezGeneId":"100126315"},{"alias":"mir-665","entrezGeneId":"100126315"},{"alias":"MIRN665","entrezGeneId":"100126315"},{"alias":"hsa-mir-873","entrezGeneId":"100126316"},{"alias":"mir-873","entrezGeneId":"100126316"},{"alias":"MIRN873","entrezGeneId":"100126316"},{"alias":"mir-374b","entrezGeneId":"100126317"},{"alias":"MIRN374B","entrezGeneId":"100126317"},{"alias":"mir-301b","entrezGeneId":"100126318"},{"alias":"MIRN301B","entrezGeneId":"100126318"},{"alias":"mir-216b","entrezGeneId":"100126319"},{"alias":"MIRN216B","entrezGeneId":"100126319"},{"alias":"hsa-mir-920","entrezGeneId":"100126320"},{"alias":"MIRN920","entrezGeneId":"100126320"},{"alias":"hsa-mir-922","entrezGeneId":"100126321"},{"alias":"MIRN922","entrezGeneId":"100126321"},{"alias":"hsa-mir-924","entrezGeneId":"100126323"},{"alias":"MIRN924","entrezGeneId":"100126323"},{"alias":"hsa-mir-934","entrezGeneId":"100126324"},{"alias":"mir-934","entrezGeneId":"100126324"},{"alias":"MIRN934","entrezGeneId":"100126324"},{"alias":"hsa-mir-935","entrezGeneId":"100126325"},{"alias":"mir-935","entrezGeneId":"100126325"},{"alias":"MIRN935","entrezGeneId":"100126325"},{"alias":"hsa-mir-936","entrezGeneId":"100126326"},{"alias":"MIRN936","entrezGeneId":"100126326"},{"alias":"hsa-mir-938","entrezGeneId":"100126327"},{"alias":"MIRN938","entrezGeneId":"100126327"},{"alias":"hsa-mir-940","entrezGeneId":"100126328"},{"alias":"mir-940","entrezGeneId":"100126328"},{"alias":"MIRN940","entrezGeneId":"100126328"},{"alias":"mir-941-1","entrezGeneId":"100126329"},{"alias":"MIRN941-1","entrezGeneId":"100126329"},{"alias":"MIRN941-4","entrezGeneId":"100126330"},{"alias":"hsa-mir-942","entrezGeneId":"100126331"},{"alias":"mir-942","entrezGeneId":"100126331"},{"alias":"MIRN942","entrezGeneId":"100126331"},{"alias":"hsa-mir-943","entrezGeneId":"100126332"},{"alias":"MIRN943","entrezGeneId":"100126332"},{"alias":"hsa-mir-708","entrezGeneId":"100126333"},{"alias":"MIRN708","entrezGeneId":"100126333"},{"alias":"hsa-mir-885","entrezGeneId":"100126334"},{"alias":"mir-885","entrezGeneId":"100126334"},{"alias":"MIRN885","entrezGeneId":"100126334"},{"alias":"hsa-mir-543","entrezGeneId":"100126335"},{"alias":"mir-543","entrezGeneId":"100126335"},{"alias":"MIRN543","entrezGeneId":"100126335"},{"alias":"mir-208b","entrezGeneId":"100126336"},{"alias":"MIRN208B","entrezGeneId":"100126336"},{"alias":"mir-509-3","entrezGeneId":"100126337"},{"alias":"MIRN509-3","entrezGeneId":"100126337"},{"alias":"hsa-mir-937","entrezGeneId":"100126338"},{"alias":"mir-937","entrezGeneId":"100126338"},{"alias":"MIRN937","entrezGeneId":"100126338"},{"alias":"MIRN941-2","entrezGeneId":"100126339"},{"alias":"hsa-mir-944","entrezGeneId":"100126340"},{"alias":"mir-944","entrezGeneId":"100126340"},{"alias":"MIRN944","entrezGeneId":"100126340"},{"alias":"MIRN891A","entrezGeneId":"100126341"},{"alias":"MIRN892A","entrezGeneId":"100126342"},{"alias":"hsa-mir-874","entrezGeneId":"100126343"},{"alias":"mir-874","entrezGeneId":"100126343"},{"alias":"MIRN874","entrezGeneId":"100126343"},{"alias":"hsa-mir-889","entrezGeneId":"100126345"},{"alias":"mir-889","entrezGeneId":"100126345"},{"alias":"MIRN889","entrezGeneId":"100126345"},{"alias":"mir-190b","entrezGeneId":"100126346"},{"alias":"MIRN190B","entrezGeneId":"100126346"},{"alias":"hsa-mir-887","entrezGeneId":"100126347"},{"alias":"MIRN887","entrezGeneId":"100126347"},{"alias":"hsa-mir-760","entrezGeneId":"100126348"},{"alias":"mir-760","entrezGeneId":"100126348"},{"alias":"MIRN760","entrezGeneId":"100126348"},{"alias":"hsa-mir-921","entrezGeneId":"100126349"},{"alias":"MIRN921","entrezGeneId":"100126349"},{"alias":"hsa-mir-933","entrezGeneId":"100126350"},{"alias":"mir-933","entrezGeneId":"100126350"},{"alias":"MIRN933","entrezGeneId":"100126350"},{"alias":"hsa-mir-939","entrezGeneId":"100126351"},{"alias":"mir-939","entrezGeneId":"100126351"},{"alias":"MIRN939","entrezGeneId":"100126351"},{"alias":"MIRN941-3","entrezGeneId":"100126352"},{"alias":"hsa-mir-297","entrezGeneId":"100126354"},{"alias":"MIRN297","entrezGeneId":"100126354"},{"alias":"hsa-mir-365a","entrezGeneId":"100126355"},{"alias":"mir-365a","entrezGeneId":"100126355"},{"alias":"MIR365-1","entrezGeneId":"100126355"},{"alias":"MIRN365-1","entrezGeneId":"100126355"},{"alias":"hsa-mir-365b","entrezGeneId":"100126356"},{"alias":"mir-365b","entrezGeneId":"100126356"},{"alias":"MIR365-2","entrezGeneId":"100126356"},{"alias":"MIRN365-2","entrezGeneId":"100126356"},{"alias":"CX23","entrezGeneId":"100126572"},{"alias":"BPAD","entrezGeneId":"100126593"},{"alias":"C21orf136","entrezGeneId":"100126693"},{"alias":"NCRNA00322","entrezGeneId":"100126693"},{"alias":"EGO","entrezGeneId":"100126791"},{"alias":"NCRNA00190","entrezGeneId":"100126791"},{"alias":"GHRL-AS1","entrezGeneId":"100126793"},{"alias":"GHRLAS","entrezGeneId":"100126793"},{"alias":"NCRNA00068","entrezGeneId":"100126793"},{"alias":"SNAR-A53113498","entrezGeneId":"100126798"},{"alias":"SNAR-A53129250","entrezGeneId":"100126799"},{"alias":"SNAR-A53102747","entrezGeneId":"100126800"},{"alias":"HLA-DEL","entrezGeneId":"100127173"},{"alias":"HLA-GOR","entrezGeneId":"100127173"},{"alias":"RPL7_8_586","entrezGeneId":"100127893"},{"alias":"bA33E24.4","entrezGeneId":"100127905"},{"alias":"C6orf161","entrezGeneId":"100127905"},{"alias":"FAM165A","entrezGeneId":"100127905"},{"alias":"RPS15A_4_297","entrezGeneId":"100127924"},{"alias":"RPL15_9_1154","entrezGeneId":"100127949"},{"alias":"ATF4B","entrezGeneId":"100127952"},{"alias":"RPS3A_22_1469","entrezGeneId":"100127963"},{"alias":"RPL15_1_277","entrezGeneId":"100127993"},{"alias":"RPL34_1_168","entrezGeneId":"100127995"},{"alias":"RPL18A_5_961","entrezGeneId":"100127999"},{"alias":"RPL32_13_977","entrezGeneId":"100128004"},{"alias":"HsT36289","entrezGeneId":"100128016"},{"alias":"NSD4P","entrezGeneId":"100128016"},{"alias":"WHSC1L1P","entrezGeneId":"100128016"},{"alias":"RPL10_4_817","entrezGeneId":"100128030"},{"alias":"KLF7P","entrezGeneId":"100128036"},{"alias":"GLUT3P1","entrezGeneId":"100128062"},{"alias":"GLUT6","entrezGeneId":"100128062"},{"alias":"SLC2A3P","entrezGeneId":"100128062"},{"alias":"RPL36A_9_808","entrezGeneId":"100128072"},{"alias":"RPS15A_26_1770","entrezGeneId":"100128083"},{"alias":"RPL26_15_1614","entrezGeneId":"100128115"},{"alias":"RPL17_5_269","entrezGeneId":"100128117"},{"alias":"MCART5P","entrezGeneId":"100128119"},{"alias":"GPR123-AS1","entrezGeneId":"100128127"},{"alias":"TMCC1P","entrezGeneId":"100128132"},{"alias":"XLOC_013014","entrezGeneId":"100128139"},{"alias":"RPS4P17","entrezGeneId":"100128140"},{"alias":"RPS4X_7_1505","entrezGeneId":"100128140"},{"alias":"LGALS10P1","entrezGeneId":"100128145"},{"alias":"RPS6_3_716","entrezGeneId":"100128162"},{"alias":"RPS26_21_1107","entrezGeneId":"100128168"},{"alias":"NHEDC1P1","entrezGeneId":"100128190"},{"alias":"b34I8.3","entrezGeneId":"100128240"},{"alias":"CD83P","entrezGeneId":"100128240"},{"alias":"HB15p","entrezGeneId":"100128240"},{"alias":"RPL31_31_1463","entrezGeneId":"100128250"},{"alias":"MORT","entrezGeneId":"100128252"},{"alias":"RPS18_2_171","entrezGeneId":"100128258"},{"alias":"NCRNA00286B","entrezGeneId":"100128260"},{"alias":"HTR5AOS","entrezGeneId":"100128264"},{"alias":"RPL35A_9_959","entrezGeneId":"100128277"},{"alias":"DNM1DN8-2","entrezGeneId":"100128285"},{"alias":"DNM1DN8.2","entrezGeneId":"100128285"},{"alias":"DNM1DN8@","entrezGeneId":"100128285"},{"alias":"FKSG88","entrezGeneId":"100128285"},{"alias":"RPS13_1_111","entrezGeneId":"100128305"},{"alias":"RPL26_8_492","entrezGeneId":"100128318"},{"alias":"bA259P20.2","entrezGeneId":"100128327"},{"alias":"BET3L","entrezGeneId":"100128327"},{"alias":"onco-lncRNA-3","entrezGeneId":"100128338"},{"alias":"RPL15_4_1179","entrezGeneId":"100128347"},{"alias":"RPL21_16_474","entrezGeneId":"100128351"},{"alias":"RPS6_12_1345","entrezGeneId":"100128358"},{"alias":"RPS29_2_60","entrezGeneId":"100128377"},{"alias":"C3orf74","entrezGeneId":"100128378"},{"alias":"C9orf110","entrezGeneId":"100128385"},{"alias":"LINC00256B","entrezGeneId":"100128385"},{"alias":"NCRNA00256B","entrezGeneId":"100128385"},{"alias":"RPL35A_20_1756","entrezGeneId":"100128393"},{"alias":"MKI67IPP5","entrezGeneId":"100128397"},{"alias":"RPL22_3_253","entrezGeneId":"100128408"},{"alias":"RPS24_4_1115","entrezGeneId":"100128423"},{"alias":"FAM51A2P","entrezGeneId":"100128431"},{"alias":"GEMIN8P","entrezGeneId":"100128431"},{"alias":"RPS6_3_713","entrezGeneId":"100128450"},{"alias":"CCNJP","entrezGeneId":"100128459"},{"alias":"ATP5F1P5","entrezGeneId":"100128516"},{"alias":"RPS24_6_457","entrezGeneId":"100128519"},{"alias":"UQCRFSL1","entrezGeneId":"100128525"},{"alias":"RPS18_10_1747","entrezGeneId":"100128535"},{"alias":"C1orf132","entrezGeneId":"100128537"},{"alias":"ATP6V1GP2","entrezGeneId":"100128541"},{"alias":"cTAGE-4","entrezGeneId":"100128553"},{"alias":"RPS15A_3_241","entrezGeneId":"100128605"},{"alias":"RPL40_2_1281","entrezGeneId":"100128617"},{"alias":"CYB5P2","entrezGeneId":"100128621"},{"alias":"RPL10A_2_460","entrezGeneId":"100128646"},{"alias":"RPL22_10_1337","entrezGeneId":"100128664"},{"alias":"MKI67IPP4","entrezGeneId":"100128707"},{"alias":"RPL9_11_1536","entrezGeneId":"100128710"},{"alias":"SLMO2P3","entrezGeneId":"100128712"},{"alias":"RPLP1_2_758","entrezGeneId":"100128745"},{"alias":"RPS7_5_1072","entrezGeneId":"100128756"},{"alias":"PRKRIRP6","entrezGeneId":"100128764"},{"alias":"FAM35A2","entrezGeneId":"100128781"},{"alias":"FAM35AP","entrezGeneId":"100128781"},{"alias":"C9orf130","entrezGeneId":"100128782"},{"alias":"NAG11","entrezGeneId":"100128782"},{"alias":"NAG12","entrezGeneId":"100128782"},{"alias":"RPL35A_16_1766","entrezGeneId":"100128807"},{"alias":"ZNF725","entrezGeneId":"100128853"},{"alias":"RPS15A_17_1092","entrezGeneId":"100128863"},{"alias":"MYU","entrezGeneId":"100128881"},{"alias":"RPSA_14_525","entrezGeneId":"100128888"},{"alias":"FAM66E","entrezGeneId":"100128890"},{"alias":"BM742401","entrezGeneId":"100128893"},{"alias":"locus5689","entrezGeneId":"100128893"},{"alias":"NG4-5","entrezGeneId":"100128903"},{"alias":"NPMP4","entrezGeneId":"100128903"},{"alias":"RPS21_2_461","entrezGeneId":"100128912"},{"alias":"RPS6_8_1176","entrezGeneId":"100128923"},{"alias":"LCCS6","entrezGeneId":"100128927"},{"alias":"ZNF925","entrezGeneId":"100128927"},{"alias":"RPL10A_1_376","entrezGeneId":"100128936"},{"alias":"WI2-81516E3.1","entrezGeneId":"100128946"},{"alias":"GAPDHL7","entrezGeneId":"100128961"},{"alias":"GAPDL7","entrezGeneId":"100128961"},{"alias":"RPL3_6_918","entrezGeneId":"100128963"},{"alias":"RPL35A_1_109","entrezGeneId":"100128984"},{"alias":"RPL3_5_896","entrezGeneId":"100129004"},{"alias":"HsT818","entrezGeneId":"100129011"},{"alias":"LSM6P","entrezGeneId":"100129011"},{"alias":"RPL24_1_143","entrezGeneId":"100129017"},{"alias":"RPLP1_3_298","entrezGeneId":"100129028"},{"alias":"JMJD2F","entrezGeneId":"100129053"},{"alias":"RBM5-AS1","entrezGeneId":"100129060"},{"alias":"RPL7_12_684","entrezGeneId":"100129061"},{"alias":"PRKRIRP5","entrezGeneId":"100129074"},{"alias":"C14orf33","entrezGeneId":"100129075"},{"alias":"MYCLo-3","entrezGeneId":"100129075"},{"alias":"CR-7","entrezGeneId":"100129080"},{"alias":"CRIPTO-7","entrezGeneId":"100129080"},{"alias":"TDGF7","entrezGeneId":"100129080"},{"alias":"HIG1","entrezGeneId":"100129086"},{"alias":"HIGD1D","entrezGeneId":"100129086"},{"alias":"HIGD1DP","entrezGeneId":"100129086"},{"alias":"RPS5_1_162","entrezGeneId":"100129090"},{"alias":"BTN4","entrezGeneId":"100129094"},{"alias":"BUTR1","entrezGeneId":"100129094"},{"alias":"RPL22_2_154","entrezGeneId":"100129102"},{"alias":"ACE3","entrezGeneId":"100129123"},{"alias":"FAM18B3P","entrezGeneId":"100129124"},{"alias":"RPL21_11_229","entrezGeneId":"100129141"},{"alias":"RPL13AP4","entrezGeneId":"100129176"},{"alias":"RPL13_5_1409","entrezGeneId":"100129176"},{"alias":"RPL9_9_1374","entrezGeneId":"100129179"},{"alias":"RPL36A_2_73","entrezGeneId":"100129180"},{"alias":"PERB11.3","entrezGeneId":"100129192"},{"alias":"MUP","entrezGeneId":"100129193"},{"alias":"RPS3A_19_1151","entrezGeneId":"100129199"},{"alias":"RPS6_10_1242","entrezGeneId":"100129227"},{"alias":"RPL27_3_270","entrezGeneId":"100129234"},{"alias":"CXorf51","entrezGeneId":"100129239"},{"alias":"RPS15A_5_166","entrezGeneId":"100129243"},{"alias":"C9orf133","entrezGeneId":"100129250"},{"alias":"TOPORS-AS1","entrezGeneId":"100129250"},{"alias":"LEP7","entrezGeneId":"100129271"},{"alias":"XP32","entrezGeneId":"100129271"},{"alias":"RPS27_7_572","entrezGeneId":"100129279"},{"alias":"RPS15A_14_1774","entrezGeneId":"100129284"},{"alias":"MORF4LP5","entrezGeneId":"100129288"},{"alias":"RPS20_15_1306","entrezGeneId":"100129306"},{"alias":"RPL31_4_324","entrezGeneId":"100129310"},{"alias":"RPL29_10_1009","entrezGeneId":"100129332"},{"alias":"MP-2","entrezGeneId":"100129339"},{"alias":"C9orf73","entrezGeneId":"100129347"},{"alias":"RPL9_17_1576","entrezGeneId":"100129357"},{"alias":"RPL18_2_608","entrezGeneId":"100129374"},{"alias":"RPL23_3_937","entrezGeneId":"100129377"},{"alias":"RPS29_13_976","entrezGeneId":"100129379"},{"alias":"PRKRIRP4","entrezGeneId":"100129382"},{"alias":"Em:AL513424.1","entrezGeneId":"100129385"},{"alias":"RPL12_15_1630","entrezGeneId":"100129394"},{"alias":"FAM106C","entrezGeneId":"100129396"},{"alias":"FAM34A2P","entrezGeneId":"100129398"},{"alias":"FAM34BP","entrezGeneId":"100129398"},{"alias":"MSTO2","entrezGeneId":"100129405"},{"alias":"DMRTC1-AS1","entrezGeneId":"100129407"},{"alias":"LINC00684","entrezGeneId":"100129407"},{"alias":"RPL31_3_207","entrezGeneId":"100129418"},{"alias":"RPL18_1_137","entrezGeneId":"100129421"},{"alias":"RPL19_4_829","entrezGeneId":"100129424"},{"alias":"CXorf28","entrezGeneId":"100129464"},{"alias":"C3orf83","entrezGeneId":"100129480"},{"alias":"MKRN2-AS1","entrezGeneId":"100129480"},{"alias":"KOX21","entrezGeneId":"100129482"},{"alias":"ZNF37B","entrezGeneId":"100129482"},{"alias":"LINC00633","entrezGeneId":"100129515"},{"alias":"RPL26_13_865","entrezGeneId":"100129517"},{"alias":"RPS29_16_1562","entrezGeneId":"100129542"},{"alias":"RPS26_15_1076","entrezGeneId":"100129552"},{"alias":"RPL13A_7_832","entrezGeneId":"100129553"},{"alias":"RPS10_12_1588","entrezGeneId":"100129556"},{"alias":"MR1B","entrezGeneId":"100129575"},{"alias":"RPL17_28_1610","entrezGeneId":"100129584"},{"alias":"RPL29_16_1290","entrezGeneId":"100129591"},{"alias":"RPS29_3_802","entrezGeneId":"100129599"},{"alias":"Y214H10.6","entrezGeneId":"100129622"},{"alias":"IGHV2OR165","entrezGeneId":"100129631"},{"alias":"RPL9_4_783","entrezGeneId":"100129634"},{"alias":"RPL18_3_1196","entrezGeneId":"100129645"},{"alias":"RPL5_16_1760","entrezGeneId":"100129647"},{"alias":"RPS26_30_1651","entrezGeneId":"100129650"},{"alias":"bHLHa25","entrezGeneId":"100129654"},{"alias":"TCF-24","entrezGeneId":"100129654"},{"alias":"RPL17_5_454","entrezGeneId":"100129657"},{"alias":"SLMO2P1","entrezGeneId":"100129664"},{"alias":"bA20A20.1","entrezGeneId":"100129669"},{"alias":"C9orf134","entrezGeneId":"100129669"},{"alias":"RPL18_5_1138","entrezGeneId":"100129670"},{"alias":"RPL21_55_1506","entrezGeneId":"100129685"},{"alias":"TFP","entrezGeneId":"100129696"},{"alias":"HMGB1L13","entrezGeneId":"100129706"},{"alias":"RPS13_3_211","entrezGeneId":"100129718"},{"alias":"C9orf173-AS1","entrezGeneId":"100129722"},{"alias":"HMGB1L12","entrezGeneId":"100129723"},{"alias":"RPS6_7_1097","entrezGeneId":"100129732"},{"alias":"RPL7_5_313","entrezGeneId":"100129743"},{"alias":"dJ97D16.2","entrezGeneId":"100129755"},{"alias":"RPL24p","entrezGeneId":"100129755"},{"alias":"RPL30BP","entrezGeneId":"100129755"},{"alias":"RSL24D1P","entrezGeneId":"100129755"},{"alias":"Em:AB014080.3","entrezGeneId":"100129772"},{"alias":"TMPOL1","entrezGeneId":"100129772"},{"alias":"ATP5A1P4","entrezGeneId":"100129782"},{"alias":"ATP5AP4","entrezGeneId":"100129782"},{"alias":"RPL17_14_707","entrezGeneId":"100129784"},{"alias":"CH5400","entrezGeneId":"100129792"},{"alias":"TLK1P","entrezGeneId":"100129793"},{"alias":"TLK1ps","entrezGeneId":"100129793"},{"alias":"RPL13_5_1672","entrezGeneId":"100129796"},{"alias":"RPL13A_10_1231","entrezGeneId":"100129799"},{"alias":"ZNF181P1","entrezGeneId":"100129800"},{"alias":"ZNF807P","entrezGeneId":"100129800"},{"alias":"RPL12_18_1579","entrezGeneId":"100129801"},{"alias":"RPL24_3_450","entrezGeneId":"100129808"},{"alias":"RPL22_4_275","entrezGeneId":"100129819"},{"alias":"ZNF102","entrezGeneId":"100129842"},{"alias":"RPL37A_2_859","entrezGeneId":"100129856"},{"alias":"RPL30_8_1609","entrezGeneId":"100129867"},{"alias":"RPL31_26_1276","entrezGeneId":"100129882"},{"alias":"RPS29_8_466","entrezGeneId":"100129902"},{"alias":"RPS27_7_1180","entrezGeneId":"100129905"},{"alias":"Em:AC006046.2","entrezGeneId":"100129921"},{"alias":"RPL15_4_680","entrezGeneId":"100129921"},{"alias":"RPL31_29_1379","entrezGeneId":"100129928"},{"alias":"RPL10_3_705","entrezGeneId":"100129930"},{"alias":"RPL34_9_693","entrezGeneId":"100129934"},{"alias":"RPS10_16_1758","entrezGeneId":"100129939"},{"alias":"RPL39_4_182","entrezGeneId":"100129952"},{"alias":"FAM205CP","entrezGeneId":"100129969"},{"alias":"RPL12_2_212","entrezGeneId":"100129982"},{"alias":"RPL38_1_244","entrezGeneId":"100129991"},{"alias":"RPL5_14_1100","entrezGeneId":"100129998"},{"alias":"HsT2742","entrezGeneId":"100130003"},{"alias":"HMGA1-p","entrezGeneId":"100130009"},{"alias":"URAH","entrezGeneId":"100130015"},{"alias":"HMGA1L6","entrezGeneId":"100130029"},{"alias":"RPL36A_2_79","entrezGeneId":"100130034"},{"alias":"RPL9_6_1163","entrezGeneId":"100130066"},{"alias":"RPS27_6_465","entrezGeneId":"100130070"},{"alias":"KLP-6","entrezGeneId":"100130097"},{"alias":"LINC00966","entrezGeneId":"100130155"},{"alias":"RPS24_9_1812","entrezGeneId":"100130183"},{"alias":"RPS12_17_1644","entrezGeneId":"100130192"},{"alias":"KIAA0494-AS1","entrezGeneId":"100130197"},{"alias":"RPL13_3_914","entrezGeneId":"100130225"},{"alias":"RPL40_3_969","entrezGeneId":"100130239"},{"alias":"RPS5_4_1727","entrezGeneId":"100130240"},{"alias":"RPL34_6_354","entrezGeneId":"100130286"},{"alias":"RPS27A_4_904","entrezGeneId":"100130300"},{"alias":"FAM48B1","entrezGeneId":"100130302"},{"alias":"SPT20L","entrezGeneId":"100130302"},{"alias":"C2B","entrezGeneId":"100130342"},{"alias":"SCGB4A3P","entrezGeneId":"100130342"},{"alias":"RPS6_2_487","entrezGeneId":"100130347"},{"alias":"CXorf49B","entrezGeneId":"100130361"},{"alias":"RPL13_6_1708","entrezGeneId":"100130374"},{"alias":"RPL9_7_879","entrezGeneId":"100130392"},{"alias":"ATP5LP4","entrezGeneId":"100130396"},{"alias":"RPL21_38_1051","entrezGeneId":"100130400"},{"alias":"CYCL","entrezGeneId":"100130418"},{"alias":"SAHL1","entrezGeneId":"100130418"},{"alias":"RPS7_7_1794","entrezGeneId":"100130435"},{"alias":"RPS27A_5_866","entrezGeneId":"100130446"},{"alias":"RPL12_4_315","entrezGeneId":"100130447"},{"alias":"MRS2LP1","entrezGeneId":"100130448"},{"alias":"RPL3_1_338","entrezGeneId":"100130450"},{"alias":"C18orf64","entrezGeneId":"100130480"},{"alias":"CCT6-4P","entrezGeneId":"100130481"},{"alias":"RPS12_12_1461","entrezGeneId":"100130495"},{"alias":"CD300Hs","entrezGeneId":"100130520"},{"alias":"RPL5_3_323","entrezGeneId":"100130523"},{"alias":"lncRNA-CIR","entrezGeneId":"100130535"},{"alias":"VIM2","entrezGeneId":"100130535"},{"alias":"VIMP1","entrezGeneId":"100130535"},{"alias":"RPL31_7_527","entrezGeneId":"100130537"},{"alias":"RPL23A_26_1264","entrezGeneId":"100130555"},{"alias":"0808y08y","entrezGeneId":"100130557"},{"alias":"bK445C9.3","entrezGeneId":"100130561"},{"alias":"HMG1L10","entrezGeneId":"100130561"},{"alias":"HMGB1L10","entrezGeneId":"100130561"},{"alias":"bcm384","entrezGeneId":"100130562"},{"alias":"RPS2_20_1284","entrezGeneId":"100130562"},{"alias":"CXorf64","entrezGeneId":"100130613"},{"alias":"RPL15_10_1742","entrezGeneId":"100130624"},{"alias":"TCEB1P18","entrezGeneId":"100130626"},{"alias":"RPL23_1_65","entrezGeneId":"100130630"},{"alias":"FAM75D2P","entrezGeneId":"100130636"},{"alias":"RPSA_9_557","entrezGeneId":"100130676"},{"alias":"NFYAP","entrezGeneId":"100130677"},{"alias":"FABP5L6","entrezGeneId":"100130687"},{"alias":"CECR4","entrezGeneId":"100130717"},{"alias":"CECR5-AS1","entrezGeneId":"100130717"},{"alias":"NCRNA00017","entrezGeneId":"100130717"},{"alias":"RPL34_12_1312","entrezGeneId":"100130718"},{"alias":"SLRN","entrezGeneId":"100130733"},{"alias":"RPS8_4_974","entrezGeneId":"100130750"},{"alias":"Em:AF129756.18","entrezGeneId":"100130756"},{"alias":"UQCRHP5","entrezGeneId":"100130756"},{"alias":"METT5D2","entrezGeneId":"100130758"},{"alias":"RPS27_13_1271","entrezGeneId":"100130775"},{"alias":"PUNISHER","entrezGeneId":"100130776"},{"alias":"RPS15A_6_237","entrezGeneId":"100130782"},{"alias":"RPS3A_9_594","entrezGeneId":"100130786"},{"alias":"RPL29_13_1221","entrezGeneId":"100130792"},{"alias":"FUSIP1P","entrezGeneId":"100130799"},{"alias":"HsT2687","entrezGeneId":"100130799"},{"alias":"SFRS13AP1","entrezGeneId":"100130799"},{"alias":"RPL39_3_72","entrezGeneId":"100130802"},{"alias":"RPS17_3_404","entrezGeneId":"100130823"},{"alias":"SGK110","entrezGeneId":"100130827"},{"alias":"CARM1L","entrezGeneId":"100130873"},{"alias":"NCRNA00196","entrezGeneId":"100130889"},{"alias":"RPL7P","entrezGeneId":"100130892"},{"alias":"RPL7_15_834","entrezGeneId":"100130892"},{"alias":"RPL22_10_1790","entrezGeneId":"100130922"},{"alias":"RPL5_18_1557","entrezGeneId":"100130929"},{"alias":"C17orf110","entrezGeneId":"100130933"},{"alias":"ELN","entrezGeneId":"100130933"},{"alias":"ZNF663","entrezGeneId":"100130934"},{"alias":"MRP2","entrezGeneId":"100130958"},{"alias":"ATP5G1P7","entrezGeneId":"100130962"},{"alias":"RPS2_12_1000","entrezGeneId":"100130980"},{"alias":"RPL26_8_1018","entrezGeneId":"100130983"},{"alias":"C7orf72","entrezGeneId":"100130988"},{"alias":"MZF-3","entrezGeneId":"100131017"},{"alias":"RPL9_5_1139","entrezGeneId":"100131020"},{"alias":"RPS4P15","entrezGeneId":"100131055"},{"alias":"RPS4X_7_1265","entrezGeneId":"100131055"},{"alias":"RPS8_2_374","entrezGeneId":"100131083"},{"alias":"DNM1DN17","entrezGeneId":"100131084"},{"alias":"DNM1DN17@","entrezGeneId":"100131084"},{"alias":"RPL7_3_208","entrezGeneId":"100131085"},{"alias":"RPLP1_5_1519","entrezGeneId":"100131087"},{"alias":"BSP1","entrezGeneId":"100131137"},{"alias":"ELSPBP2","entrezGeneId":"100131137"},{"alias":"RPL23A_2_8","entrezGeneId":"100131143"},{"alias":"RPLP0_3_381","entrezGeneId":"100131151"},{"alias":"RPL39_10_584","entrezGeneId":"100131160"},{"alias":"RPSA_12_495","entrezGeneId":"100131161"},{"alias":"RPS29_9_646","entrezGeneId":"100131173"},{"alias":"KAT","entrezGeneId":"100131187"},{"alias":"TST","entrezGeneId":"100131187"},{"alias":"KIAA1984-AS1","entrezGeneId":"100131193"},{"alias":"RPS25_6_1012","entrezGeneId":"100131196"},{"alias":"RPL21_8_160","entrezGeneId":"100131205"},{"alias":"RPL29_9_696","entrezGeneId":"100131206"},{"alias":"TMEM194B","entrezGeneId":"100131211"},{"alias":"C10orf41","entrezGeneId":"100131213"},{"alias":"NCRNA00245","entrezGeneId":"100131213"},{"alias":"RPL6_4_660","entrezGeneId":"100131229"},{"alias":"RPL30_3_359","entrezGeneId":"100131230"},{"alias":"RPL9_12_1427","entrezGeneId":"100131246"},{"alias":"SPCS2P","entrezGeneId":"100131250"},{"alias":"TPT1P","entrezGeneId":"100131268"},{"alias":"RPS19_1_737","entrezGeneId":"100131286"},{"alias":"PRKRIRP9","entrezGeneId":"100131309"},{"alias":"RPL18_2_942","entrezGeneId":"100131333"},{"alias":"RPL15_8_1099","entrezGeneId":"100131338"},{"alias":"RPL32L","entrezGeneId":"100131339"},{"alias":"RPL32_11_924","entrezGeneId":"100131339"},{"alias":"RPL3_3_1807","entrezGeneId":"100131358"},{"alias":"RPL36A_19_1371","entrezGeneId":"100131379"},{"alias":"RPL39_13_1539","entrezGeneId":"100131387"},{"alias":"ZNF990","entrezGeneId":"100131390"},{"alias":"RPS6_6_1039","entrezGeneId":"100131396"},{"alias":"RPS27_12_1218","entrezGeneId":"100131418"},{"alias":"CD300D","entrezGeneId":"100131439"},{"alias":"CLM-4","entrezGeneId":"100131439"},{"alias":"CMRF35-A4","entrezGeneId":"100131439"},{"alias":"CMRF35A4","entrezGeneId":"100131439"},{"alias":"ELP2P","entrezGeneId":"100131454"},{"alias":"RPS6_4_936","entrezGeneId":"100131467"},{"alias":"RPSA_32_1778","entrezGeneId":"100131469"},{"alias":"RPL21_7_292","entrezGeneId":"100131481"},{"alias":"RPL26_9_1063","entrezGeneId":"100131526"},{"alias":"RPL19_4_388","entrezGeneId":"100131527"},{"alias":"RPL5_11_1110","entrezGeneId":"100131535"},{"alias":"RPS6_2_432","entrezGeneId":"100131548"},{"alias":"HEIRCC","entrezGeneId":"100131551"},{"alias":"RPS27_1_33","entrezGeneId":"100131572"},{"alias":"dJ372B18.1","entrezGeneId":"100131609"},{"alias":"HNRPA1P2","entrezGeneId":"100131609"},{"alias":"RPS4P22","entrezGeneId":"100131614"},{"alias":"RPS4X_8_1621","entrezGeneId":"100131614"},{"alias":"CCT4-1P","entrezGeneId":"100131638"},{"alias":"RPL21_35_1007","entrezGeneId":"100131672"},{"alias":"RPL29_2_362","entrezGeneId":"100131713"},{"alias":"HCCC11","entrezGeneId":"100131726"},{"alias":"HCCC11_v1","entrezGeneId":"100131726"},{"alias":"HCCC11_v2","entrezGeneId":"100131726"},{"alias":"RPL37A_4_1128","entrezGeneId":"100131730"},{"alias":"CXorf35","entrezGeneId":"100131755"},{"alias":"GASP4","entrezGeneId":"100131755"},{"alias":"RPL19_1_59","entrezGeneId":"100131759"},{"alias":"RPS12_5_662","entrezGeneId":"100131761"},{"alias":"RPS27_3_126","entrezGeneId":"100131787"},{"alias":"RPL26_14_1054","entrezGeneId":"100131788"},{"alias":"LP2570","entrezGeneId":"100131796"},{"alias":"TCONS_00023265","entrezGeneId":"100131796"},{"alias":"C19orf79","entrezGeneId":"100131801"},{"alias":"RPL6_13_667","entrezGeneId":"100131805"},{"alias":"C6orf217","entrezGeneId":"100131814"},{"alias":"NCRNA00271","entrezGeneId":"100131814"},{"alias":"X17","entrezGeneId":"100131827"},{"alias":"ZNF838","entrezGeneId":"100131827"},{"alias":"RPL23A_38_1781","entrezGeneId":"100131846"},{"alias":"RPS18","entrezGeneId":"100131863"},{"alias":"RPS18_1_389","entrezGeneId":"100131863"},{"alias":"RPS2_5_144","entrezGeneId":"100131866"},{"alias":"CFLL3","entrezGeneId":"100131874"},{"alias":"CFLP3","entrezGeneId":"100131874"},{"alias":"RPL3_7_963","entrezGeneId":"100131893"},{"alias":"C5orf57","entrezGeneId":"100131897"},{"alias":"KAP25.1","entrezGeneId":"100131902"},{"alias":"RPS27_9_1229","entrezGeneId":"100131905"},{"alias":"RPL5_9_664","entrezGeneId":"100131913"},{"alias":"RPL35A_5_575","entrezGeneId":"100131945"},{"alias":"RPS3_2_726","entrezGeneId":"100131956"},{"alias":"RPL15_6_949","entrezGeneId":"100131958"},{"alias":"RPS26_21_1607","entrezGeneId":"100131971"},{"alias":"RPL29_1_300","entrezGeneId":"100131991"},{"alias":"DNM1DN3-1","entrezGeneId":"100132031"},{"alias":"DNM1DN3-3","entrezGeneId":"100132031"},{"alias":"DNM1DN3.1","entrezGeneId":"100132031"},{"alias":"DNM1DN3.3","entrezGeneId":"100132031"},{"alias":"DNM1DN3@","entrezGeneId":"100132031"},{"alias":"RPS29_1_224","entrezGeneId":"100132037"},{"alias":"RPL22_1_94","entrezGeneId":"100132047"},{"alias":"RPS19_2_563","entrezGeneId":"100132049"},{"alias":"RPL30_4_741","entrezGeneId":"100132053"},{"alias":"RPL9_3_318","entrezGeneId":"100132061"},{"alias":"DNM1DN4-5","entrezGeneId":"100132100"},{"alias":"DNM1DN4.5","entrezGeneId":"100132100"},{"alias":"DNM1DN4@","entrezGeneId":"100132100"},{"alias":"RBM22P8","entrezGeneId":"100132115"},{"alias":"uc001kfo.1","entrezGeneId":"100132116"},{"alias":"ZXF1","entrezGeneId":"100132116"},{"alias":"SUP45L4","entrezGeneId":"100132121"},{"alias":"RPL35A_2_150","entrezGeneId":"100132122"},{"alias":"RPL39_6_311","entrezGeneId":"100132127"},{"alias":"NCRNA00286A","entrezGeneId":"100132169"},{"alias":"KIAA0649P3","entrezGeneId":"100132173"},{"alias":"RPL36A_21_1441","entrezGeneId":"100132199"},{"alias":"DNM1DN3-2","entrezGeneId":"100132204"},{"alias":"DNM1DN3.2","entrezGeneId":"100132204"},{"alias":"DNM1DN3@","entrezGeneId":"100132204"},{"alias":"FAM201C","entrezGeneId":"100132230"},{"alias":"FAM108A10P","entrezGeneId":"100132251"},{"alias":"RPL32_5_690","entrezGeneId":"100132265"},{"alias":"FKBP4P4","entrezGeneId":"100132268"},{"alias":"FKBP4P5","entrezGeneId":"100132268"},{"alias":"NDUFA6-AS1","entrezGeneId":"100132273"},{"alias":"183ActI","entrezGeneId":"100132285"},{"alias":"CD158b","entrezGeneId":"100132285"},{"alias":"CD158J","entrezGeneId":"100132285"},{"alias":"cl-49","entrezGeneId":"100132285"},{"alias":"KIR-2DS2","entrezGeneId":"100132285"},{"alias":"NKAT-5","entrezGeneId":"100132285"},{"alias":"NKAT5","entrezGeneId":"100132285"},{"alias":"MAFIPL","entrezGeneId":"100132288"},{"alias":"TEKT4P","entrezGeneId":"100132288"},{"alias":"RPS27_17_1641","entrezGeneId":"100132291"},{"alias":"KIAA0649P4","entrezGeneId":"100132295"},{"alias":"RPL38_2_479","entrezGeneId":"100132311"},{"alias":"C16orf67","entrezGeneId":"100132341"},{"alias":"KIAA0664L3","entrezGeneId":"100132341"},{"alias":"KIAA0664P3","entrezGeneId":"100132341"},{"alias":"URLC3","entrezGeneId":"100132341"},{"alias":"HI-LNC77","entrezGeneId":"100132354"},{"alias":"RPS10_14_1658","entrezGeneId":"100132372"},{"alias":"RPS29_5_283","entrezGeneId":"100132376"},{"alias":"RPS14_2_264","entrezGeneId":"100132382"},{"alias":"KAP4.9","entrezGeneId":"100132386"},{"alias":"GAGE-12B","entrezGeneId":"100132399"},{"alias":"RPS15A_16_1058","entrezGeneId":"100132400"},{"alias":"AB6","entrezGeneId":"100132406"},{"alias":"AG1","entrezGeneId":"100132406"},{"alias":"NBPF9","entrezGeneId":"100132406"},{"alias":"CD64c","entrezGeneId":"100132417"},{"alias":"FCGR1C","entrezGeneId":"100132417"},{"alias":"FCRIC","entrezGeneId":"100132417"},{"alias":"IGFR1","entrezGeneId":"100132417"},{"alias":"IGFRC","entrezGeneId":"100132417"},{"alias":"DUXY2","entrezGeneId":"100132421"},{"alias":"CLDN21","entrezGeneId":"100132463"},{"alias":"RNF2P","entrezGeneId":"100132467"},{"alias":"KAP4.7","entrezGeneId":"100132476"},{"alias":"KRTAP4.7","entrezGeneId":"100132476"},{"alias":"RPL22_2_96","entrezGeneId":"100132479"},{"alias":"RPS27_2_83","entrezGeneId":"100132488"},{"alias":"RPS24_5_400","entrezGeneId":"100132496"},{"alias":"RPS29_11_830","entrezGeneId":"100132499"},{"alias":"TCONS_00026208","entrezGeneId":"100132501"},{"alias":"GLRXL","entrezGeneId":"100132510"},{"alias":"RPL26_16_1236","entrezGeneId":"100132547"},{"alias":"XG","entrezGeneId":"100132596"},{"alias":"XGPY","entrezGeneId":"100132596"},{"alias":"XGPY2","entrezGeneId":"100132596"},{"alias":"GAPDHL13","entrezGeneId":"100132601"},{"alias":"GAPDL13","entrezGeneId":"100132601"},{"alias":"ATP5A1P10","entrezGeneId":"100132619"},{"alias":"RPL17_26_1572","entrezGeneId":"100132645"},{"alias":"RPS2_13_694","entrezGeneId":"100132673"},{"alias":"BSN-AS2","entrezGeneId":"100132677"},{"alias":"RPL7A_15_979","entrezGeneId":"100132678"},{"alias":"PAXIP1OS","entrezGeneId":"100132707"},{"alias":"C2orf14","entrezGeneId":"100132708"},{"alias":"RPL15_8_1514","entrezGeneId":"100132722"},{"alias":"RPL17L","entrezGeneId":"100132742"},{"alias":"RPL17_3_82","entrezGeneId":"100132742"},{"alias":"ORLP1","entrezGeneId":"100132759"},{"alias":"PHB4C5","entrezGeneId":"100132759"},{"alias":"RPL12_12_1226","entrezGeneId":"100132795"},{"alias":"MKI67IPP6","entrezGeneId":"100132796"},{"alias":"PMS2L17","entrezGeneId":"100132832"},{"alias":"PMS2LP1","entrezGeneId":"100132832"},{"alias":"PMSR5","entrezGeneId":"100132832"},{"alias":"RPL13A_2_89","entrezGeneId":"100132906"},{"alias":"C20orf143","entrezGeneId":"100132911"},{"alias":"DPH3B","entrezGeneId":"100132911"},{"alias":"ZCSL1","entrezGeneId":"100132911"},{"alias":"FAM159B","entrezGeneId":"100132916"},{"alias":"RPL13A_6_1040","entrezGeneId":"100132924"},{"alias":"FAM25A","entrezGeneId":"100132929"},{"alias":"FAM25B","entrezGeneId":"100132929"},{"alias":"FAM25C","entrezGeneId":"100132929"},{"alias":"FAM25G","entrezGeneId":"100132929"},{"alias":"bA7G23.5","entrezGeneId":"100132948"},{"alias":"FAM27A","entrezGeneId":"100132948"},{"alias":"FAM27A1","entrezGeneId":"100132948"},{"alias":"FAM27A3","entrezGeneId":"100132948"},{"alias":"RPS21_1_254","entrezGeneId":"100132961"},{"alias":"CXorf68","entrezGeneId":"100132963"},{"alias":"CXorf52","entrezGeneId":"100132967"},{"alias":"LINC00204A","entrezGeneId":"100132967"},{"alias":"NCRNA00204","entrezGeneId":"100132967"},{"alias":"NCRNA00204A","entrezGeneId":"100132967"},{"alias":"SPCX","entrezGeneId":"100132967"},{"alias":"TCEB1P29","entrezGeneId":"100132973"},{"alias":"ATCD1","entrezGeneId":"100132978"},{"alias":"GOLGA8D","entrezGeneId":"100132979"},{"alias":"RPL37A_1_734","entrezGeneId":"100132988"},{"alias":"RPS21_2_494","entrezGeneId":"100132993"},{"alias":"CXorf49","entrezGeneId":"100132994"},{"alias":"HsT2707","entrezGeneId":"100132995"},{"alias":"RPS8_7_1602","entrezGeneId":"100132995"},{"alias":"CHEK2L1","entrezGeneId":"100133012"},{"alias":"Em:AB023049.2","entrezGeneId":"100133037"},{"alias":"RPL7_10_678","entrezGeneId":"100133037"},{"alias":"RPL18A_2_364","entrezGeneId":"100133038"},{"alias":"KIAA0649P5","entrezGeneId":"100133040"},{"alias":"RPS9_1_598","entrezGeneId":"100133054"},{"alias":"KIAA0649P2","entrezGeneId":"100133064"},{"alias":"bA301J7.4","entrezGeneId":"100133093"},{"alias":"FAM25A","entrezGeneId":"100133093"},{"alias":"FAM25B","entrezGeneId":"100133093"},{"alias":"FAM25C","entrezGeneId":"100133093"},{"alias":"RPL6_8_430","entrezGeneId":"100133100"},{"alias":"RPL13_2_647","entrezGeneId":"100133108"},{"alias":"FAM27A2","entrezGeneId":"100133121"},{"alias":"DEFB108P5","entrezGeneId":"100133128"},{"alias":"RPL12_21_1660","entrezGeneId":"100133139"},{"alias":"RPL32_22_1617","entrezGeneId":"100133162"},{"alias":"GPR183P1","entrezGeneId":"100133168"},{"alias":"RPL11_1_236","entrezGeneId":"100133170"},{"alias":"DDX3YP1","entrezGeneId":"100133180"},{"alias":"RPL32_18_1316","entrezGeneId":"100133193"},{"alias":"bA373D17.1","entrezGeneId":"100133205"},{"alias":"C6orf41","entrezGeneId":"100133205"},{"alias":"NCRNA00240","entrezGeneId":"100133205"},{"alias":"FAM108A8P","entrezGeneId":"100133212"},{"alias":"RPL39_13_1220","entrezGeneId":"100133222"},{"alias":"RPL26_7_282","entrezGeneId":"100133235"},{"alias":"RPS14_3_249","entrezGeneId":"100133255"},{"alias":"CBX9","entrezGeneId":"100133259"},{"alias":"bA164N7.1","entrezGeneId":"100133265"},{"alias":"BMS1LP7","entrezGeneId":"100133265"},{"alias":"RPL21_32_892","entrezGeneId":"100133273"},{"alias":"RPL34_4_651","entrezGeneId":"100133294"},{"alias":"FAM231B","entrezGeneId":"100133301"},{"alias":"CYP1A8P","entrezGeneId":"100133307"},{"alias":"CYP1D1","entrezGeneId":"100133307"},{"alias":"HOXA6as","entrezGeneId":"100133311"},{"alias":"SETP","entrezGeneId":"100133314"},{"alias":"SETP19","entrezGeneId":"100133314"},{"alias":"RPS27_10_1247","entrezGeneId":"100133668"},{"alias":"CD24A","entrezGeneId":"100133941"},{"alias":"JHDM1D-AS1","entrezGeneId":"100134229"},{"alias":"KIR2.6","entrezGeneId":"100134444"},{"alias":"TTPP2","entrezGeneId":"100134444"},{"alias":"UBE2Q2P3","entrezGeneId":"100134869"},{"alias":"UBE2QP2","entrezGeneId":"100134869"},{"alias":"C17orf106","entrezGeneId":"100134934"},{"alias":"UPK3BL","entrezGeneId":"100134938"},{"alias":"UPLP","entrezGeneId":"100134938"},{"alias":"AGP3","entrezGeneId":"100135756"},{"alias":"ATG3P","entrezGeneId":"100135756"},{"alias":"dJ54G6.1","entrezGeneId":"100135756"},{"alias":"cPLA2-beta","entrezGeneId":"100137049"},{"alias":"HsT16992","entrezGeneId":"100137049"},{"alias":"IL-40","entrezGeneId":"100141515"},{"alias":"UNQ464","entrezGeneId":"100141515"},{"alias":"EPOLM","entrezGeneId":"100144434"},{"alias":"ETOLM","entrezGeneId":"100144434"},{"alias":"hvg-4","entrezGeneId":"100144435"},{"alias":"HVG4","entrezGeneId":"100144435"},{"alias":"HVGX","entrezGeneId":"100144435"},{"alias":"VAULTRC4","entrezGeneId":"100144435"},{"alias":"VTRNA3P","entrezGeneId":"100144435"},{"alias":"C20orf51","entrezGeneId":"100144596"},{"alias":"NCRNA00029","entrezGeneId":"100144596"},{"alias":"CHKB-AS1","entrezGeneId":"100144603"},{"alias":"CWS4","entrezGeneId":"100144748"},{"alias":"KILLIN","entrezGeneId":"100144748"},{"alias":"RNU7","entrezGeneId":"100147744"},{"alias":"U7.1","entrezGeneId":"100147744"},{"alias":"U7.2","entrezGeneId":"100147745"},{"alias":"U7.3","entrezGeneId":"100147746"},{"alias":"RNU7-132P","entrezGeneId":"100147747"},{"alias":"U7.4","entrezGeneId":"100147747"},{"alias":"U7.5","entrezGeneId":"100147748"},{"alias":"U7.6","entrezGeneId":"100147749"},{"alias":"U7.7","entrezGeneId":"100147755"},{"alias":"RNU7-139P","entrezGeneId":"100147756"},{"alias":"U7.8","entrezGeneId":"100147756"},{"alias":"U7.9","entrezGeneId":"100147757"},{"alias":"U7.10","entrezGeneId":"100147758"},{"alias":"U7.11","entrezGeneId":"100147759"},{"alias":"RNU7-100P","entrezGeneId":"100147760"},{"alias":"U7.12","entrezGeneId":"100147760"},{"alias":"U7.13","entrezGeneId":"100147761"},{"alias":"U7.14","entrezGeneId":"100147762"},{"alias":"U7.15","entrezGeneId":"100147763"},{"alias":"U7.16","entrezGeneId":"100147764"},{"alias":"U7.17","entrezGeneId":"100147765"},{"alias":"RNU7-142P","entrezGeneId":"100147766"},{"alias":"U7.18","entrezGeneId":"100147766"},{"alias":"U7.19","entrezGeneId":"100147767"},{"alias":"U7.20","entrezGeneId":"100147768"},{"alias":"U7.21","entrezGeneId":"100147769"},{"alias":"U7.22","entrezGeneId":"100147770"},{"alias":"U7.23","entrezGeneId":"100147771"},{"alias":"U7.25","entrezGeneId":"100147812"},{"alias":"U7.26","entrezGeneId":"100147813"},{"alias":"U7.27","entrezGeneId":"100147814"},{"alias":"U7.28","entrezGeneId":"100147815"},{"alias":"U7.29","entrezGeneId":"100147816"},{"alias":"U7.30","entrezGeneId":"100147817"},{"alias":"U7.31","entrezGeneId":"100147818"},{"alias":"U7.32","entrezGeneId":"100147819"},{"alias":"U7.33","entrezGeneId":"100147820"},{"alias":"U7.34","entrezGeneId":"100147821"},{"alias":"U7.35","entrezGeneId":"100147822"},{"alias":"RNU7-112P","entrezGeneId":"100147823"},{"alias":"U7.36","entrezGeneId":"100147823"},{"alias":"U7.37","entrezGeneId":"100147824"},{"alias":"U7.38","entrezGeneId":"100147825"},{"alias":"U7.39","entrezGeneId":"100147826"},{"alias":"U7.40","entrezGeneId":"100147827"},{"alias":"U7.41","entrezGeneId":"100147828"},{"alias":"U7.42","entrezGeneId":"100147829"},{"alias":"RNU7-118P","entrezGeneId":"100147830"},{"alias":"U7.43","entrezGeneId":"100147830"},{"alias":"U7.44","entrezGeneId":"100147831"},{"alias":"U7.45","entrezGeneId":"100147832"},{"alias":"U7.46","entrezGeneId":"100147833"},{"alias":"U7.47","entrezGeneId":"100147834"},{"alias":"U7.48","entrezGeneId":"100147835"},{"alias":"U7.49","entrezGeneId":"100147836"},{"alias":"U7.50","entrezGeneId":"100147837"},{"alias":"ATG12P","entrezGeneId":"100151642"},{"alias":"KAP20.4","entrezGeneId":"100151643"},{"alias":"USF1P","entrezGeneId":"100151645"},{"alias":"U7.51","entrezGeneId":"100151647"},{"alias":"U7.52","entrezGeneId":"100151648"},{"alias":"U7.53","entrezGeneId":"100151649"},{"alias":"U7.54","entrezGeneId":"100151650"},{"alias":"U7.56","entrezGeneId":"100151651"},{"alias":"U7.57","entrezGeneId":"100151652"},{"alias":"U7.58","entrezGeneId":"100151653"},{"alias":"U7.59","entrezGeneId":"100151654"},{"alias":"U7.60","entrezGeneId":"100151655"},{"alias":"U7.61","entrezGeneId":"100151656"},{"alias":"U7.62","entrezGeneId":"100151657"},{"alias":"U7.63","entrezGeneId":"100151658"},{"alias":"U7.64","entrezGeneId":"100151662"},{"alias":"U7.65","entrezGeneId":"100151663"},{"alias":"U7.66","entrezGeneId":"100151664"},{"alias":"U7.67","entrezGeneId":"100151665"},{"alias":"U7.69","entrezGeneId":"100151666"},{"alias":"U7.70","entrezGeneId":"100151667"},{"alias":"U7.71","entrezGeneId":"100151668"},{"alias":"U7.72","entrezGeneId":"100151669"},{"alias":"U7.73","entrezGeneId":"100151670"},{"alias":"U7.74","entrezGeneId":"100151671"},{"alias":"U7.75","entrezGeneId":"100151672"},{"alias":"U7.76","entrezGeneId":"100151673"},{"alias":"U7.77","entrezGeneId":"100151674"},{"alias":"U7.78","entrezGeneId":"100151675"},{"alias":"U7.79","entrezGeneId":"100151676"},{"alias":"U7.80","entrezGeneId":"100151677"},{"alias":"U7.81","entrezGeneId":"100151678"},{"alias":"RNU7-163P","entrezGeneId":"100151679"},{"alias":"U7.82","entrezGeneId":"100151679"},{"alias":"U7.83","entrezGeneId":"100151680"},{"alias":"U7.84","entrezGeneId":"100151681"},{"alias":"U7.85","entrezGeneId":"100151682"},{"alias":"MOPD1","entrezGeneId":"100151683"},{"alias":"RFMN","entrezGeneId":"100151683"},{"alias":"RNU4ATAC1","entrezGeneId":"100151683"},{"alias":"TALS","entrezGeneId":"100151683"},{"alias":"U4ATAC","entrezGeneId":"100151683"},{"alias":"RNU6ATAC1","entrezGeneId":"100151684"},{"alias":"U6ATAC","entrezGeneId":"100151684"},{"alias":"NF1L7","entrezGeneId":"100158257"},{"alias":"NCRNA00074","entrezGeneId":"100169750"},{"alias":"RN5S1","entrezGeneId":"100169751"},{"alias":"RN5S2","entrezGeneId":"100169753"},{"alias":"RN5S3","entrezGeneId":"100169754"},{"alias":"RN5S4","entrezGeneId":"100169755"},{"alias":"RN5S5","entrezGeneId":"100169756"},{"alias":"RN5S6","entrezGeneId":"100169757"},{"alias":"RN5S7","entrezGeneId":"100169758"},{"alias":"RN5S8","entrezGeneId":"100169759"},{"alias":"RN5S9","entrezGeneId":"100169760"},{"alias":"RN5S10","entrezGeneId":"100169761"},{"alias":"RN5S11","entrezGeneId":"100169762"},{"alias":"RN5S12","entrezGeneId":"100169763"},{"alias":"RN5S13","entrezGeneId":"100169764"},{"alias":"RN5S14","entrezGeneId":"100169765"},{"alias":"RN5S15","entrezGeneId":"100169766"},{"alias":"RN5S16","entrezGeneId":"100169767"},{"alias":"RN5S17","entrezGeneId":"100169768"},{"alias":"HEL-127","entrezGeneId":"100169851"},{"alias":"PATE-DJ","entrezGeneId":"100169851"},{"alias":"APEG3","entrezGeneId":"100169890"},{"alias":"NCRNA00155","entrezGeneId":"100169890"},{"alias":"PEG3-AS","entrezGeneId":"100169890"},{"alias":"PEG3AS","entrezGeneId":"100169890"},{"alias":"ELP1P","entrezGeneId":"100169989"},{"alias":"snaR-2","entrezGeneId":"100170221"},{"alias":"snaR-3","entrezGeneId":"100170222"},{"alias":"ZNF576","entrezGeneId":"100170229"},{"alias":"C19orf69","entrezGeneId":"100170765"},{"alias":"C17orf96","entrezGeneId":"100170841"},{"alias":"PRR28","entrezGeneId":"100170841"},{"alias":"GSTA4P","entrezGeneId":"100174857"},{"alias":"GSTAP4","entrezGeneId":"100174857"},{"alias":"IFT80-L","entrezGeneId":"100174949"},{"alias":"mir-1224","entrezGeneId":"100187716"},{"alias":"MIRN1224","entrezGeneId":"100187716"},{"alias":"AUTS14","entrezGeneId":"100187724"},{"alias":"AUTS14A","entrezGeneId":"100187724"},{"alias":"C16DELp11.2","entrezGeneId":"100187724"},{"alias":"C16DUPp11.2","entrezGeneId":"100187724"},{"alias":"DUP16p11.2","entrezGeneId":"100187724"},{"alias":"FCD1","entrezGeneId":"100188278"},{"alias":"MPB","entrezGeneId":"100188784"},{"alias":"MICRODEL3Q29","entrezGeneId":"100188788"},{"alias":"BPEO","entrezGeneId":"100188792"},{"alias":"RSTSS","entrezGeneId":"100188814"},{"alias":"GOA1","entrezGeneId":"100188821"},{"alias":"BPAD","entrezGeneId":"100188844"},{"alias":"AIS5","entrezGeneId":"100188846"},{"alias":"MIRN1225","entrezGeneId":"100188847"},{"alias":"ETL3","entrezGeneId":"100188848"},{"alias":"C22DDELS","entrezGeneId":"100188856"},{"alias":"C22DELq11.2","entrezGeneId":"100188856"},{"alias":"MICRODUP3Q29","entrezGeneId":"100188862"},{"alias":"HHP","entrezGeneId":"100188864"},{"alias":"EIG7","entrezGeneId":"100188869"},{"alias":"MICRODEL15Q13.3","entrezGeneId":"100188869"},{"alias":"SCZD13","entrezGeneId":"100188869"},{"alias":"TEM","entrezGeneId":"100188881"},{"alias":"HZF-1","entrezGeneId":"100188891"},{"alias":"ZNF123","entrezGeneId":"100188891"},{"alias":"OBTP","entrezGeneId":"100188893"},{"alias":"TOM6","entrezGeneId":"100188893"},{"alias":"NCRNA00092","entrezGeneId":"100188953"},{"alias":"NCRNA00093","entrezGeneId":"100188954"},{"alias":"TRG-GCC2-2","entrezGeneId":"100188985"},{"alias":"TRNAG6","entrezGeneId":"100188985"},{"alias":"TRH-GTG1-5","entrezGeneId":"100188986"},{"alias":"TRNAH1","entrezGeneId":"100188986"},{"alias":"TRH-GTG1-8","entrezGeneId":"100188987"},{"alias":"TRNAH3","entrezGeneId":"100188987"},{"alias":"TRH-GTG1-6","entrezGeneId":"100188988"},{"alias":"TRNAH2","entrezGeneId":"100188988"},{"alias":"TRNAU3","entrezGeneId":"100188989"},{"alias":"TRNAV5","entrezGeneId":"100188990"},{"alias":"TRNAH4","entrezGeneId":"100188991"},{"alias":"TRNAV10","entrezGeneId":"100188992"},{"alias":"TRNAV11","entrezGeneId":"100188993"},{"alias":"TRNAD2","entrezGeneId":"100188994"},{"alias":"TRNAK4","entrezGeneId":"100188995"},{"alias":"TRNAN4","entrezGeneId":"100188996"},{"alias":"TRNAG7","entrezGeneId":"100188997"},{"alias":"TRNAQ3","entrezGeneId":"100188998"},{"alias":"TRNAK5","entrezGeneId":"100188999"},{"alias":"TRNAE3","entrezGeneId":"100189000"},{"alias":"TRNAY3","entrezGeneId":"100189001"},{"alias":"TRY-GTA5-3","entrezGeneId":"100189001"},{"alias":"TRNAS5","entrezGeneId":"100189002"},{"alias":"TRNAL3","entrezGeneId":"100189003"},{"alias":"TRNAL4","entrezGeneId":"100189004"},{"alias":"TRNAN5","entrezGeneId":"100189005"},{"alias":"TRNAT4","entrezGeneId":"100189006"},{"alias":"TRNAE4","entrezGeneId":"100189007"},{"alias":"TRNAC2","entrezGeneId":"100189008"},{"alias":"TRNAL5","entrezGeneId":"100189009"},{"alias":"TRNAQ5","entrezGeneId":"100189010"},{"alias":"TRNAG8","entrezGeneId":"100189011"},{"alias":"TRNAR5","entrezGeneId":"100189012"},{"alias":"TRNAK6","entrezGeneId":"100189013"},{"alias":"TRNAV12","entrezGeneId":"100189014"},{"alias":"TRNAM3","entrezGeneId":"100189015"},{"alias":"TRNAQ6","entrezGeneId":"100189016"},{"alias":"TRNAE5","entrezGeneId":"100189017"},{"alias":"TRNAL6","entrezGeneId":"100189018"},{"alias":"TRNAP4","entrezGeneId":"100189019"},{"alias":"TRNAP5","entrezGeneId":"100189020"},{"alias":"TRNAA4","entrezGeneId":"100189021"},{"alias":"TRNAY4","entrezGeneId":"100189022"},{"alias":"TRNAE6","entrezGeneId":"100189024"},{"alias":"TRNAR6","entrezGeneId":"100189025"},{"alias":"TRNAQ7","entrezGeneId":"100189026"},{"alias":"TRNAI2","entrezGeneId":"100189028"},{"alias":"TRNAC3","entrezGeneId":"100189029"},{"alias":"TRNAE7","entrezGeneId":"100189030"},{"alias":"TRNAE8","entrezGeneId":"100189031"},{"alias":"TRNAL7","entrezGeneId":"100189032"},{"alias":"TRNAA5","entrezGeneId":"100189033"},{"alias":"TRNAR7","entrezGeneId":"100189034"},{"alias":"TRNAT5","entrezGeneId":"100189035"},{"alias":"TRNAN7","entrezGeneId":"100189036"},{"alias":"TRNAS6","entrezGeneId":"100189037"},{"alias":"TRNAL8","entrezGeneId":"100189038"},{"alias":"TRNAG9","entrezGeneId":"100189039"},{"alias":"TRNAM4","entrezGeneId":"100189040"},{"alias":"TRX-CAT1-5","entrezGeneId":"100189040"},{"alias":"TRNAS7","entrezGeneId":"100189041"},{"alias":"TRNAA6","entrezGeneId":"100189042"},{"alias":"TRNAL9","entrezGeneId":"100189043"},{"alias":"TRNAE9","entrezGeneId":"100189044"},{"alias":"TRNAG10","entrezGeneId":"100189045"},{"alias":"TRNAA7","entrezGeneId":"100189046"},{"alias":"TRNAA8","entrezGeneId":"100189047"},{"alias":"TRNAW2","entrezGeneId":"100189048"},{"alias":"TRW-CCA3-3","entrezGeneId":"100189048"},{"alias":"TRNAC4","entrezGeneId":"100189049"},{"alias":"TRNAI3","entrezGeneId":"100189050"},{"alias":"TRNAK7","entrezGeneId":"100189051"},{"alias":"TRC-GCA2-1","entrezGeneId":"100189052"},{"alias":"TRNAC5","entrezGeneId":"100189052"},{"alias":"TRNAK8","entrezGeneId":"100189053"},{"alias":"TRNAE10","entrezGeneId":"100189054"},{"alias":"TRNAS8","entrezGeneId":"100189055"},{"alias":"TRNAQ8","entrezGeneId":"100189056"},{"alias":"TRNAY5","entrezGeneId":"100189057"},{"alias":"TRNAQ9","entrezGeneId":"100189058"},{"alias":"TRNAN8","entrezGeneId":"100189059"},{"alias":"TRNAA9","entrezGeneId":"100189060"},{"alias":"TRNAD3","entrezGeneId":"100189061"},{"alias":"TRNAK9","entrezGeneId":"100189062"},{"alias":"TRNAE11","entrezGeneId":"100189063"},{"alias":"TRNAG11","entrezGeneId":"100189064"},{"alias":"TRH-GTG1-7","entrezGeneId":"100189065"},{"alias":"TRNAH6","entrezGeneId":"100189065"},{"alias":"TRNAA10","entrezGeneId":"100189066"},{"alias":"TRNAL10","entrezGeneId":"100189067"},{"alias":"TRNAE12","entrezGeneId":"100189068"},{"alias":"TRNAN9","entrezGeneId":"100189069"},{"alias":"TRNAS9","entrezGeneId":"100189070"},{"alias":"TRNAI4","entrezGeneId":"100189071"},{"alias":"TRNAP6","entrezGeneId":"100189072"},{"alias":"TRP-AGG2-2","entrezGeneId":"100189072"},{"alias":"TRNAV14","entrezGeneId":"100189073"},{"alias":"TRNAQ10","entrezGeneId":"100189074"},{"alias":"TRNAC6","entrezGeneId":"100189075"},{"alias":"TRNAS10","entrezGeneId":"100189077"},{"alias":"TRS-AGA2-3","entrezGeneId":"100189077"},{"alias":"TRNAR8","entrezGeneId":"100189078"},{"alias":"TRNAN10","entrezGeneId":"100189079"},{"alias":"TRNASUP1","entrezGeneId":"100189080"},{"alias":"TRNAG12","entrezGeneId":"100189081"},{"alias":"TRNAA11","entrezGeneId":"100189082"},{"alias":"TRNAN11","entrezGeneId":"100189083"},{"alias":"TRNAR9","entrezGeneId":"100189084"},{"alias":"TRR-CCG1-3","entrezGeneId":"100189084"},{"alias":"TRNAM5","entrezGeneId":"100189085"},{"alias":"TRNAT6","entrezGeneId":"100189086"},{"alias":"TRNAD4","entrezGeneId":"100189087"},{"alias":"TRNAP7","entrezGeneId":"100189088"},{"alias":"TRP-TGG3-1","entrezGeneId":"100189088"},{"alias":"TRNAL11","entrezGeneId":"100189089"},{"alias":"TRNAC7","entrezGeneId":"100189090"},{"alias":"TRNAE13","entrezGeneId":"100189091"},{"alias":"TRNAA12","entrezGeneId":"100189092"},{"alias":"TRNAA13","entrezGeneId":"100189093"},{"alias":"TRNAM6","entrezGeneId":"100189094"},{"alias":"TRX-CAT1-4","entrezGeneId":"100189094"},{"alias":"TRNAI5","entrezGeneId":"100189095"},{"alias":"TRNAN12","entrezGeneId":"100189096"},{"alias":"TRNAC8","entrezGeneId":"100189097"},{"alias":"TRNAK11","entrezGeneId":"100189098"},{"alias":"TRNAR10","entrezGeneId":"100189099"},{"alias":"TRNAM7","entrezGeneId":"100189100"},{"alias":"TRNAV15","entrezGeneId":"100189101"},{"alias":"TRNAY6","entrezGeneId":"100189102"},{"alias":"TRY-GTA5-5","entrezGeneId":"100189102"},{"alias":"TRNAR11","entrezGeneId":"100189103"},{"alias":"TRNAK12","entrezGeneId":"100189104"},{"alias":"TRC-GCA2-2","entrezGeneId":"100189105"},{"alias":"TRNAC9","entrezGeneId":"100189105"},{"alias":"TRNAA14","entrezGeneId":"100189106"},{"alias":"TRNAK13","entrezGeneId":"100189107"},{"alias":"TRNAN13","entrezGeneId":"100189108"},{"alias":"TRNAR12","entrezGeneId":"100189109"},{"alias":"TRR-TCT3-2","entrezGeneId":"100189109"},{"alias":"TRK-CTT2-5","entrezGeneId":"100189110"},{"alias":"TRNAK14","entrezGeneId":"100189110"},{"alias":"TRNAM8","entrezGeneId":"100189111"},{"alias":"TRNAW3","entrezGeneId":"100189112"},{"alias":"TRW-CCA3-1","entrezGeneId":"100189112"},{"alias":"TRNAE14","entrezGeneId":"100189113"},{"alias":"TRNAA15","entrezGeneId":"100189114"},{"alias":"TRNAR14","entrezGeneId":"100189115"},{"alias":"TRR-TCT3-1","entrezGeneId":"100189115"},{"alias":"TRNAA16","entrezGeneId":"100189116"},{"alias":"TRNAA17","entrezGeneId":"100189117"},{"alias":"TRNAL12","entrezGeneId":"100189118"},{"alias":"TRNAK15","entrezGeneId":"100189119"},{"alias":"TRNAD5","entrezGeneId":"100189120"},{"alias":"TRNAQ11","entrezGeneId":"100189121"},{"alias":"TRQ-CTG1-5","entrezGeneId":"100189121"},{"alias":"TRNAK16","entrezGeneId":"100189122"},{"alias":"TRNAW4","entrezGeneId":"100189123"},{"alias":"TRNAP8","entrezGeneId":"100189124"},{"alias":"TRNAK17","entrezGeneId":"100189125"},{"alias":"TRNAN14","entrezGeneId":"100189126"},{"alias":"TRNAN15","entrezGeneId":"100189127"},{"alias":"TRNAA18","entrezGeneId":"100189128"},{"alias":"TRNAE15","entrezGeneId":"100189129"},{"alias":"TRNAL13","entrezGeneId":"100189130"},{"alias":"TRNAI6","entrezGeneId":"100189131"},{"alias":"TRNAI7","entrezGeneId":"100189132"},{"alias":"TRNAR15","entrezGeneId":"100189133"},{"alias":"TRNAD6","entrezGeneId":"100189134"},{"alias":"TRNAM9","entrezGeneId":"100189135"},{"alias":"TRNAP9","entrezGeneId":"100189136"},{"alias":"TRP-AGG2-5","entrezGeneId":"100189136"},{"alias":"TRF-GAA1-5","entrezGeneId":"100189137"},{"alias":"TRNAF3","entrezGeneId":"100189137"},{"alias":"TRNAQ12","entrezGeneId":"100189138"},{"alias":"TRNAL14","entrezGeneId":"100189139"},{"alias":"TRNAQ13","entrezGeneId":"100189140"},{"alias":"TRNAG13","entrezGeneId":"100189141"},{"alias":"TRNAV16","entrezGeneId":"100189142"},{"alias":"TRNAT7","entrezGeneId":"100189143"},{"alias":"TRNAC10","entrezGeneId":"100189144"},{"alias":"TRNAF4","entrezGeneId":"100189145"},{"alias":"TRNAC11","entrezGeneId":"100189146"},{"alias":"TRNAI8","entrezGeneId":"100189148"},{"alias":"TRNAA19","entrezGeneId":"100189149"},{"alias":"TRNAD7","entrezGeneId":"100189150"},{"alias":"TRNAL15","entrezGeneId":"100189151"},{"alias":"TRNAS11","entrezGeneId":"100189152"},{"alias":"TRI-AAT5-3","entrezGeneId":"100189153"},{"alias":"TRNAI9","entrezGeneId":"100189153"},{"alias":"TRNAQ14","entrezGeneId":"100189154"},{"alias":"TRNAC12","entrezGeneId":"100189155"},{"alias":"TRNAA20","entrezGeneId":"100189156"},{"alias":"TRNAS12","entrezGeneId":"100189157"},{"alias":"TRD-GTC2-10","entrezGeneId":"100189158"},{"alias":"TRNAD8","entrezGeneId":"100189158"},{"alias":"TRNAS13","entrezGeneId":"100189159"},{"alias":"TRNAG15","entrezGeneId":"100189160"},{"alias":"TRNAV17","entrezGeneId":"100189161"},{"alias":"TRNAY7","entrezGeneId":"100189162"},{"alias":"TRG-GCC2-3","entrezGeneId":"100189163"},{"alias":"TRNAG16","entrezGeneId":"100189163"},{"alias":"TRNAL16","entrezGeneId":"100189164"},{"alias":"TRNAN16","entrezGeneId":"100189165"},{"alias":"TRNAR16","entrezGeneId":"100189166"},{"alias":"TRNAR17","entrezGeneId":"100189167"},{"alias":"TRNAR18","entrezGeneId":"100189168"},{"alias":"TRNAL17","entrezGeneId":"100189169"},{"alias":"TRNAF5","entrezGeneId":"100189170"},{"alias":"TRNAW5","entrezGeneId":"100189171"},{"alias":"TRNAP10","entrezGeneId":"100189172"},{"alias":"TRNAR19","entrezGeneId":"100189173"},{"alias":"TRR-CCG1-1","entrezGeneId":"100189173"},{"alias":"TRNAH7","entrezGeneId":"100189174"},{"alias":"TRNAL18","entrezGeneId":"100189175"},{"alias":"TRNAN17","entrezGeneId":"100189176"},{"alias":"TRNAC13","entrezGeneId":"100189177"},{"alias":"TRNAV18","entrezGeneId":"100189178"},{"alias":"TRNAC14","entrezGeneId":"100189179"},{"alias":"TRNAK18","entrezGeneId":"100189180"},{"alias":"TRNAR20","entrezGeneId":"100189181"},{"alias":"TRNAK19","entrezGeneId":"100189182"},{"alias":"TRNAN18","entrezGeneId":"100189183"},{"alias":"TRNAS14","entrezGeneId":"100189184"},{"alias":"TRS-AGA2-1","entrezGeneId":"100189184"},{"alias":"TRNAQ15","entrezGeneId":"100189185"},{"alias":"TRNAM10","entrezGeneId":"100189186"},{"alias":"TRNAT8","entrezGeneId":"100189187"},{"alias":"TRNAG17","entrezGeneId":"100189188"},{"alias":"TRNAQ16","entrezGeneId":"100189189"},{"alias":"TRQ-CTG1-4","entrezGeneId":"100189189"},{"alias":"TRNAW6","entrezGeneId":"100189190"},{"alias":"TRNAV19","entrezGeneId":"100189191"},{"alias":"TRNAA21","entrezGeneId":"100189192"},{"alias":"TRNAN19","entrezGeneId":"100189193"},{"alias":"TRNAC15","entrezGeneId":"100189194"},{"alias":"TRNAN20","entrezGeneId":"100189195"},{"alias":"TRNAV20","entrezGeneId":"100189196"},{"alias":"TRC-GCA2-4","entrezGeneId":"100189197"},{"alias":"TRNAC16","entrezGeneId":"100189197"},{"alias":"TRNAK20","entrezGeneId":"100189198"},{"alias":"TRNAL19","entrezGeneId":"100189199"},{"alias":"TRNAD9","entrezGeneId":"100189200"},{"alias":"TRNAM11","entrezGeneId":"100189201"},{"alias":"TRL-AAG2-4","entrezGeneId":"100189202"},{"alias":"TRNAL20","entrezGeneId":"100189202"},{"alias":"TRNAW7","entrezGeneId":"100189203"},{"alias":"TRNAL21","entrezGeneId":"100189204"},{"alias":"TRNAS15","entrezGeneId":"100189205"},{"alias":"TRNAG18","entrezGeneId":"100189206"},{"alias":"TRNAD10","entrezGeneId":"100189207"},{"alias":"TRG-GCC2-5","entrezGeneId":"100189208"},{"alias":"TRNAG19","entrezGeneId":"100189208"},{"alias":"TRNAK21","entrezGeneId":"100189209"},{"alias":"TRNAE16","entrezGeneId":"100189210"},{"alias":"TRNAP11","entrezGeneId":"100189211"},{"alias":"TRNAA22","entrezGeneId":"100189212"},{"alias":"TRNAI11","entrezGeneId":"100189213"},{"alias":"TRNAQ17","entrezGeneId":"100189214"},{"alias":"TRNAQ18","entrezGeneId":"100189215"},{"alias":"TRNAM12","entrezGeneId":"100189216"},{"alias":"TRNAQ19","entrezGeneId":"100189217"},{"alias":"TRNAS16","entrezGeneId":"100189218"},{"alias":"TRNAY8","entrezGeneId":"100189219"},{"alias":"TRNAG20","entrezGeneId":"100189220"},{"alias":"TRNAP12","entrezGeneId":"100189221"},{"alias":"TRNAT9","entrezGeneId":"100189222"},{"alias":"TRNAP13","entrezGeneId":"100189223"},{"alias":"TRP-AGG2-7","entrezGeneId":"100189223"},{"alias":"TRNAP14","entrezGeneId":"100189224"},{"alias":"TRNAS17","entrezGeneId":"100189225"},{"alias":"TRS-GCT4-3","entrezGeneId":"100189225"},{"alias":"TRNAM13","entrezGeneId":"100189226"},{"alias":"TRNAV21","entrezGeneId":"100189227"},{"alias":"TRNAV22","entrezGeneId":"100189228"},{"alias":"TRNAS18","entrezGeneId":"100189229"},{"alias":"TRS-GCT4-1","entrezGeneId":"100189229"},{"alias":"TRNAG21","entrezGeneId":"100189230"},{"alias":"TRG-CCC2-2","entrezGeneId":"100189231"},{"alias":"TRNAG22","entrezGeneId":"100189231"},{"alias":"TRA-TGC3-1","entrezGeneId":"100189232"},{"alias":"TRNAA23","entrezGeneId":"100189232"},{"alias":"TRNAN21","entrezGeneId":"100189233"},{"alias":"TRK-TTT3-5","entrezGeneId":"100189234"},{"alias":"TRNAK22","entrezGeneId":"100189234"},{"alias":"TRNAD11","entrezGeneId":"100189235"},{"alias":"TRNAE17","entrezGeneId":"100189236"},{"alias":"TRNAL22","entrezGeneId":"100189237"},{"alias":"TRNAK23","entrezGeneId":"100189238"},{"alias":"TRD-GTC2-6","entrezGeneId":"100189239"},{"alias":"TRNAD12","entrezGeneId":"100189239"},{"alias":"TRNAL23","entrezGeneId":"100189240"},{"alias":"TRNAH8","entrezGeneId":"100189242"},{"alias":"TRNAR21","entrezGeneId":"100189243"},{"alias":"TRR-ACG1-1","entrezGeneId":"100189243"},{"alias":"TRNAK24","entrezGeneId":"100189244"},{"alias":"TRNAT10","entrezGeneId":"100189245"},{"alias":"TRNAA24","entrezGeneId":"100189246"},{"alias":"TRNAS19","entrezGeneId":"100189247"},{"alias":"TRS-AGA2-5","entrezGeneId":"100189247"},{"alias":"TRNAS20","entrezGeneId":"100189248"},{"alias":"TRS-AGA2-6","entrezGeneId":"100189248"},{"alias":"TRNAI12","entrezGeneId":"100189249"},{"alias":"TRNAC18","entrezGeneId":"100189250"},{"alias":"TRF-GAA1-3","entrezGeneId":"100189251"},{"alias":"TRNAF6","entrezGeneId":"100189251"},{"alias":"TRNAG23","entrezGeneId":"100189252"},{"alias":"TRNAY9","entrezGeneId":"100189253"},{"alias":"TRF-GAA1-6","entrezGeneId":"100189254"},{"alias":"TRNAF7","entrezGeneId":"100189254"},{"alias":"TRNAM14","entrezGeneId":"100189255"},{"alias":"TRX-CAT1-2","entrezGeneId":"100189255"},{"alias":"TRNAA25","entrezGeneId":"100189256"},{"alias":"TRNAN22","entrezGeneId":"100189257"},{"alias":"TRNAT11","entrezGeneId":"100189258"},{"alias":"TRNAE18","entrezGeneId":"100189259"},{"alias":"TRNAG24","entrezGeneId":"100189260"},{"alias":"TRNAQ20","entrezGeneId":"100189261"},{"alias":"TRNAF8","entrezGeneId":"100189262"},{"alias":"TRNAT12","entrezGeneId":"100189263"},{"alias":"TRNAR22","entrezGeneId":"100189264"},{"alias":"TRNAI13","entrezGeneId":"100189265"},{"alias":"TRNAN23","entrezGeneId":"100189266"},{"alias":"TRNAC19","entrezGeneId":"100189267"},{"alias":"TRNAQ21","entrezGeneId":"100189268"},{"alias":"TRNAE19","entrezGeneId":"100189269"},{"alias":"TRNAR23","entrezGeneId":"100189270"},{"alias":"TRNAN24","entrezGeneId":"100189271"},{"alias":"TRNAY10","entrezGeneId":"100189272"},{"alias":"TRNAL24","entrezGeneId":"100189273"},{"alias":"TRNAG25","entrezGeneId":"100189274"},{"alias":"TRI-AAT5-1","entrezGeneId":"100189275"},{"alias":"TRNAI15","entrezGeneId":"100189275"},{"alias":"TRNAP15","entrezGeneId":"100189276"},{"alias":"TRP-AGG2-8","entrezGeneId":"100189276"},{"alias":"TRNAG26","entrezGeneId":"100189277"},{"alias":"TRNAY11","entrezGeneId":"100189278"},{"alias":"TRNAS21","entrezGeneId":"100189279"},{"alias":"TRA-TGC3-2","entrezGeneId":"100189280"},{"alias":"TRNAA26","entrezGeneId":"100189280"},{"alias":"TRNAP16","entrezGeneId":"100189281"},{"alias":"TRP-TGG3-4","entrezGeneId":"100189281"},{"alias":"TRK-CTT2-2","entrezGeneId":"100189282"},{"alias":"TRNAK26","entrezGeneId":"100189282"},{"alias":"TRNAV23","entrezGeneId":"100189283"},{"alias":"TRNAG27","entrezGeneId":"100189284"},{"alias":"TRNAS22","entrezGeneId":"100189285"},{"alias":"TRNAP17","entrezGeneId":"100189286"},{"alias":"TRNAQ22","entrezGeneId":"100189287"},{"alias":"TRQ-CTG1-3","entrezGeneId":"100189287"},{"alias":"TRNAL26","entrezGeneId":"100189288"},{"alias":"TRNAC20","entrezGeneId":"100189289"},{"alias":"TRNAD13","entrezGeneId":"100189290"},{"alias":"TRL-AAG2-2","entrezGeneId":"100189291"},{"alias":"TRNAL27","entrezGeneId":"100189291"},{"alias":"TRD-GTC2-11","entrezGeneId":"100189292"},{"alias":"TRNAD14","entrezGeneId":"100189292"},{"alias":"TRNAF9","entrezGeneId":"100189293"},{"alias":"TRNAK27","entrezGeneId":"100189294"},{"alias":"TRNAA27","entrezGeneId":"100189295"},{"alias":"TRNAP18","entrezGeneId":"100189296"},{"alias":"TRP-AGG2-6","entrezGeneId":"100189296"},{"alias":"TRNAM15","entrezGeneId":"100189297"},{"alias":"TRX-CAT1-7","entrezGeneId":"100189297"},{"alias":"TRNAG28","entrezGeneId":"100189298"},{"alias":"TRNAA28","entrezGeneId":"100189299"},{"alias":"TRNAT13","entrezGeneId":"100189300"},{"alias":"TRNAL28","entrezGeneId":"100189301"},{"alias":"TRNAQ23","entrezGeneId":"100189302"},{"alias":"TRNAM16","entrezGeneId":"100189303"},{"alias":"TRNAN25","entrezGeneId":"100189304"},{"alias":"TRNAC21","entrezGeneId":"100189305"},{"alias":"TRF-GAA1-4","entrezGeneId":"100189306"},{"alias":"TRNAF10","entrezGeneId":"100189306"},{"alias":"TRNAH9","entrezGeneId":"100189307"},{"alias":"TRNAA29","entrezGeneId":"100189308"},{"alias":"TRNAW8","entrezGeneId":"100189309"},{"alias":"TRI-AAT5-5","entrezGeneId":"100189310"},{"alias":"TRNAI17","entrezGeneId":"100189310"},{"alias":"TRNAK28","entrezGeneId":"100189311"},{"alias":"TRNAA30","entrezGeneId":"100189312"},{"alias":"TRNAL29","entrezGeneId":"100189313"},{"alias":"TRG-GCC2-6","entrezGeneId":"100189314"},{"alias":"TRNAG29","entrezGeneId":"100189314"},{"alias":"TRNAM17","entrezGeneId":"100189315"},{"alias":"TRX-CAT1-8","entrezGeneId":"100189315"},{"alias":"TRNAL30","entrezGeneId":"100189316"},{"alias":"TRNAQ24","entrezGeneId":"100189317"},{"alias":"TRQ-CTG1-1","entrezGeneId":"100189317"},{"alias":"TRNAV24","entrezGeneId":"100189318"},{"alias":"TRNAT14","entrezGeneId":"100189319"},{"alias":"TRNAN26","entrezGeneId":"100189320"},{"alias":"TRNAQ25","entrezGeneId":"100189321"},{"alias":"TRNAQ26","entrezGeneId":"100189322"},{"alias":"TRNAN27","entrezGeneId":"100189323"},{"alias":"TRNAI18","entrezGeneId":"100189324"},{"alias":"TRNAL31","entrezGeneId":"100189325"},{"alias":"TRNAV25","entrezGeneId":"100189326"},{"alias":"TRNAA31","entrezGeneId":"100189327"},{"alias":"TRL-AAG2-3","entrezGeneId":"100189328"},{"alias":"TRNAL32","entrezGeneId":"100189328"},{"alias":"TRNAQ27","entrezGeneId":"100189329"},{"alias":"TRNASUP2","entrezGeneId":"100189330"},{"alias":"TRNAS23","entrezGeneId":"100189331"},{"alias":"TRS-GCT4-2","entrezGeneId":"100189331"},{"alias":"TRNAK29","entrezGeneId":"100189332"},{"alias":"TRE-TTC1-1","entrezGeneId":"100189333"},{"alias":"TRNAE20","entrezGeneId":"100189333"},{"alias":"TRNAH10","entrezGeneId":"100189334"},{"alias":"TRNAP19","entrezGeneId":"100189335"},{"alias":"TRP-TGG3-2","entrezGeneId":"100189335"},{"alias":"TRI-AAT5-4","entrezGeneId":"100189336"},{"alias":"TRNAI20","entrezGeneId":"100189336"},{"alias":"TRNAY12","entrezGeneId":"100189337"},{"alias":"TRNAN28","entrezGeneId":"100189338"},{"alias":"TRNAA32","entrezGeneId":"100189339"},{"alias":"TRNAT15","entrezGeneId":"100189340"},{"alias":"TRNAA33","entrezGeneId":"100189341"},{"alias":"TRNAV26","entrezGeneId":"100189342"},{"alias":"TRD-GTC2-7","entrezGeneId":"100189343"},{"alias":"TRNAD15","entrezGeneId":"100189343"},{"alias":"TRNAT16","entrezGeneId":"100189344"},{"alias":"TRNAM18","entrezGeneId":"100189345"},{"alias":"TRX-CAT1-6","entrezGeneId":"100189345"},{"alias":"TRNAA34","entrezGeneId":"100189346"},{"alias":"TRD-GTC2-8","entrezGeneId":"100189347"},{"alias":"TRNAD16","entrezGeneId":"100189347"},{"alias":"TRNAI21","entrezGeneId":"100189348"},{"alias":"TRNAL33","entrezGeneId":"100189349"},{"alias":"TRNAH11","entrezGeneId":"100189350"},{"alias":"TRNAQ28","entrezGeneId":"100189351"},{"alias":"TRNAS24","entrezGeneId":"100189352"},{"alias":"TRNAA35","entrezGeneId":"100189353"},{"alias":"TRNAM19","entrezGeneId":"100189354"},{"alias":"TRNAC22","entrezGeneId":"100189355"},{"alias":"TRNAN29","entrezGeneId":"100189356"},{"alias":"TRNAC23","entrezGeneId":"100189357"},{"alias":"TRNAA36","entrezGeneId":"100189358"},{"alias":"TRNAC24","entrezGeneId":"100189359"},{"alias":"TRNAT17","entrezGeneId":"100189360"},{"alias":"TRNAP20","entrezGeneId":"100189361"},{"alias":"TRNAL34","entrezGeneId":"100189362"},{"alias":"TRNAV27","entrezGeneId":"100189363"},{"alias":"TRNAL35","entrezGeneId":"100189364"},{"alias":"TRNAR24","entrezGeneId":"100189365"},{"alias":"TRR-CCG1-2","entrezGeneId":"100189365"},{"alias":"TRNAG30","entrezGeneId":"100189366"},{"alias":"TRNAK30","entrezGeneId":"100189367"},{"alias":"TRNAV28","entrezGeneId":"100189368"},{"alias":"TRNAA37","entrezGeneId":"100189369"},{"alias":"TRNAL36","entrezGeneId":"100189370"},{"alias":"TRNAR25","entrezGeneId":"100189371"},{"alias":"TRNAI22","entrezGeneId":"100189372"},{"alias":"TRNAV29","entrezGeneId":"100189373"},{"alias":"TRNAT18","entrezGeneId":"100189374"},{"alias":"TRT-AGT5-1","entrezGeneId":"100189374"},{"alias":"TRNAC25","entrezGeneId":"100189375"},{"alias":"TRNAC26","entrezGeneId":"100189376"},{"alias":"TRNAL37","entrezGeneId":"100189377"},{"alias":"TRNAT19","entrezGeneId":"100189378"},{"alias":"TRNAC27","entrezGeneId":"100189379"},{"alias":"TRNAG31","entrezGeneId":"100189380"},{"alias":"TRNAN30","entrezGeneId":"100189381"},{"alias":"TRNAS25","entrezGeneId":"100189382"},{"alias":"TRS-AGA2-2","entrezGeneId":"100189382"},{"alias":"TRD-GTC2-9","entrezGeneId":"100189383"},{"alias":"TRNAD17","entrezGeneId":"100189383"},{"alias":"TRNAE21","entrezGeneId":"100189384"},{"alias":"TRNAE22","entrezGeneId":"100189385"},{"alias":"TRNAQ29","entrezGeneId":"100189386"},{"alias":"TRI-AAT5-2","entrezGeneId":"100189387"},{"alias":"TRNAI23","entrezGeneId":"100189387"},{"alias":"TRNAP21","entrezGeneId":"100189388"},{"alias":"TRP-TGG3-3","entrezGeneId":"100189388"},{"alias":"TRNAQ30","entrezGeneId":"100189389"},{"alias":"TRNAK31","entrezGeneId":"100189390"},{"alias":"TRNAM20","entrezGeneId":"100189391"},{"alias":"TRNAK32","entrezGeneId":"100189392"},{"alias":"TRNAI24","entrezGeneId":"100189393"},{"alias":"TRNAL38","entrezGeneId":"100189394"},{"alias":"TRNAA38","entrezGeneId":"100189395"},{"alias":"TRNAR26","entrezGeneId":"100189396"},{"alias":"TRR-ACG1-2","entrezGeneId":"100189396"},{"alias":"TRNAQ31","entrezGeneId":"100189397"},{"alias":"TRNAA39","entrezGeneId":"100189398"},{"alias":"TRK-CTT2-3","entrezGeneId":"100189399"},{"alias":"TRNAK33","entrezGeneId":"100189399"},{"alias":"TRNAA40","entrezGeneId":"100189400"},{"alias":"TRNAI25","entrezGeneId":"100189401"},{"alias":"TRNAN32","entrezGeneId":"100189402"},{"alias":"TRNAV30","entrezGeneId":"100189404"},{"alias":"TRNAY13","entrezGeneId":"100189405"},{"alias":"TRNAR27","entrezGeneId":"100189406"},{"alias":"TRNAE23","entrezGeneId":"100189407"},{"alias":"TRNAV31","entrezGeneId":"100189408"},{"alias":"TRNAE24","entrezGeneId":"100189409"},{"alias":"TRNAR28","entrezGeneId":"100189410"},{"alias":"TRNAA41","entrezGeneId":"100189411"},{"alias":"TRNAD18","entrezGeneId":"100189412"},{"alias":"TRNAC28","entrezGeneId":"100189413"},{"alias":"TRC-GCA2-3","entrezGeneId":"100189414"},{"alias":"TRNAC29","entrezGeneId":"100189414"},{"alias":"TRF-GAA1-1","entrezGeneId":"100189415"},{"alias":"TRNAF11","entrezGeneId":"100189415"},{"alias":"TRNAV32","entrezGeneId":"100189416"},{"alias":"TRNAE25","entrezGeneId":"100189417"},{"alias":"TRE-TTC1-2","entrezGeneId":"100189418"},{"alias":"TRNAE26","entrezGeneId":"100189418"},{"alias":"TRNAT20","entrezGeneId":"100189419"},{"alias":"TRNAS26","entrezGeneId":"100189420"},{"alias":"TRNAF12","entrezGeneId":"100189421"},{"alias":"TRNAQ32","entrezGeneId":"100189422"},{"alias":"TRNAA42","entrezGeneId":"100189423"},{"alias":"TRNAY14","entrezGeneId":"100189424"},{"alias":"TRY-GTA5-1","entrezGeneId":"100189424"},{"alias":"TRNAK34","entrezGeneId":"100189425"},{"alias":"TRNASUP3","entrezGeneId":"100189426"},{"alias":"TRNAI26","entrezGeneId":"100189427"},{"alias":"TRNAR29","entrezGeneId":"100189428"},{"alias":"TRNAL39","entrezGeneId":"100189429"},{"alias":"TRNAS27","entrezGeneId":"100189430"},{"alias":"TRNAD19","entrezGeneId":"100189431"},{"alias":"TRNAS28","entrezGeneId":"100189432"},{"alias":"TRNAT21","entrezGeneId":"100189433"},{"alias":"TRNAA43","entrezGeneId":"100189434"},{"alias":"TRNAC30","entrezGeneId":"100189435"},{"alias":"TRNAW9","entrezGeneId":"100189436"},{"alias":"TRW-CCA3-2","entrezGeneId":"100189436"},{"alias":"TRNAY15","entrezGeneId":"100189437"},{"alias":"TRY-GTA5-4","entrezGeneId":"100189437"},{"alias":"TRNAT22","entrezGeneId":"100189438"},{"alias":"TRT-AGT4-1","entrezGeneId":"100189438"},{"alias":"TRNAK35P","entrezGeneId":"100189439"},{"alias":"TRNAE27P","entrezGeneId":"100189440"},{"alias":"TRNAL40P","entrezGeneId":"100189441"},{"alias":"TRNASUP4P","entrezGeneId":"100189442"},{"alias":"TRNAR30P","entrezGeneId":"100189443"},{"alias":"TRNAQ33P","entrezGeneId":"100189444"},{"alias":"TRNAQ34P","entrezGeneId":"100189445"},{"alias":"TRNAF13P","entrezGeneId":"100189446"},{"alias":"TRNAC31P","entrezGeneId":"100189447"},{"alias":"TRNAQ35P","entrezGeneId":"100189448"},{"alias":"TRNAR31P","entrezGeneId":"100189449"},{"alias":"TRNAR33P","entrezGeneId":"100189449"},{"alias":"TRNAE28P","entrezGeneId":"100189450"},{"alias":"TRNAQ36P","entrezGeneId":"100189451"},{"alias":"TRNAQ37P","entrezGeneId":"100189452"},{"alias":"TRNASUP5P","entrezGeneId":"100189453"},{"alias":"TRNAE29P","entrezGeneId":"100189454"},{"alias":"TRNAP22P","entrezGeneId":"100189455"},{"alias":"TRNAL41P","entrezGeneId":"100189456"},{"alias":"TRNAE30P","entrezGeneId":"100189457"},{"alias":"TRNAG32P","entrezGeneId":"100189458"},{"alias":"TRNAE31P","entrezGeneId":"100189459"},{"alias":"TRNAG33P","entrezGeneId":"100189460"},{"alias":"TRNAQ38P","entrezGeneId":"100189461"},{"alias":"TRNAI28P","entrezGeneId":"100189462"},{"alias":"TRNAP23P","entrezGeneId":"100189463"},{"alias":"TRNAK36P","entrezGeneId":"100189464"},{"alias":"TRNAE32P","entrezGeneId":"100189465"},{"alias":"TRNAL42P","entrezGeneId":"100189466"},{"alias":"TRNAK37P","entrezGeneId":"100189467"},{"alias":"TRNAA44P","entrezGeneId":"100189468"},{"alias":"TRNAA45P","entrezGeneId":"100189469"},{"alias":"TRNASUP6P","entrezGeneId":"100189470"},{"alias":"TRNAF14P","entrezGeneId":"100189471"},{"alias":"TRNAF15P","entrezGeneId":"100189472"},{"alias":"TRNAQ39P","entrezGeneId":"100189473"},{"alias":"TRNAI29P","entrezGeneId":"100189474"},{"alias":"TRNAQ40P","entrezGeneId":"100189475"},{"alias":"TRNAP24P","entrezGeneId":"100189476"},{"alias":"TRNAV33P","entrezGeneId":"100189477"},{"alias":"TRNAQ41P","entrezGeneId":"100189478"},{"alias":"TRNAV34P","entrezGeneId":"100189479"},{"alias":"TRNAK38P","entrezGeneId":"100189480"},{"alias":"TRNAI30P","entrezGeneId":"100189481"},{"alias":"TRNAP25P","entrezGeneId":"100189482"},{"alias":"TRNAP26P","entrezGeneId":"100189483"},{"alias":"TRNAE33P","entrezGeneId":"100189484"},{"alias":"TRNAE34P","entrezGeneId":"100189485"},{"alias":"TRNAG36","entrezGeneId":"100189486"},{"alias":"TRNAV35P","entrezGeneId":"100189486"},{"alias":"TRNAS29P","entrezGeneId":"100189487"},{"alias":"TRNAE35P","entrezGeneId":"100189488"},{"alias":"TRNAQ42P","entrezGeneId":"100189489"},{"alias":"TRNAN34P","entrezGeneId":"100189490"},{"alias":"TRNAE36P","entrezGeneId":"100189491"},{"alias":"TRNAE37P","entrezGeneId":"100189492"},{"alias":"TRNAL43P","entrezGeneId":"100189493"},{"alias":"TRNAE38P","entrezGeneId":"100189494"},{"alias":"TRNAD20P","entrezGeneId":"100189495"},{"alias":"TRNAY16P","entrezGeneId":"100189496"},{"alias":"TRNAF16P","entrezGeneId":"100189497"},{"alias":"TRNAG34P","entrezGeneId":"100189498"},{"alias":"TRNAL44P","entrezGeneId":"100189499"},{"alias":"TRNAV36P","entrezGeneId":"100189500"},{"alias":"TRNAQ43P","entrezGeneId":"100189501"},{"alias":"TRNAR32P","entrezGeneId":"100189502"},{"alias":"TRNAQ44P","entrezGeneId":"100189503"},{"alias":"TRNAK39P","entrezGeneId":"100189504"},{"alias":"TRNAQ45P","entrezGeneId":"100189505"},{"alias":"TRNAE39P","entrezGeneId":"100189506"},{"alias":"TRNAY17P","entrezGeneId":"100189507"},{"alias":"TRNAC32P","entrezGeneId":"100189508"},{"alias":"TRNAQ46P","entrezGeneId":"100189509"},{"alias":"TRNAQ47P","entrezGeneId":"100189510"},{"alias":"TRNAG35P","entrezGeneId":"100189511"},{"alias":"TRNAS30P","entrezGeneId":"100189512"},{"alias":"TRNAV37P","entrezGeneId":"100189513"},{"alias":"TRNAK40P","entrezGeneId":"100189514"},{"alias":"TRNAP27P","entrezGeneId":"100189515"},{"alias":"TRNAQ48P","entrezGeneId":"100189516"},{"alias":"TRNAN35","entrezGeneId":"100189517"},{"alias":"TRNAN35P","entrezGeneId":"100189517"},{"alias":"TRNAE40P","entrezGeneId":"100189518"},{"alias":"TRNAK41P","entrezGeneId":"100189519"},{"alias":"TRNAL45P","entrezGeneId":"100189520"},{"alias":"TRNAL46P","entrezGeneId":"100189522"},{"alias":"TRNAQ55","entrezGeneId":"100189523"},{"alias":"TRNAQ50P","entrezGeneId":"100189524"},{"alias":"TRNAS31P","entrezGeneId":"100189525"},{"alias":"TRNAS32P","entrezGeneId":"100189526"},{"alias":"TRNAE41P","entrezGeneId":"100189527"},{"alias":"TRNAE42P","entrezGeneId":"100189528"},{"alias":"TRNAA46P","entrezGeneId":"100189529"},{"alias":"TRNAP28P","entrezGeneId":"100189530"},{"alias":"TRNAQ51P","entrezGeneId":"100189531"},{"alias":"TRNAE43P","entrezGeneId":"100189532"},{"alias":"TRNAF17P","entrezGeneId":"100189533"},{"alias":"TRNAN36P","entrezGeneId":"100189534"},{"alias":"TRNAQ52P","entrezGeneId":"100189535"},{"alias":"TRNAK42P","entrezGeneId":"100189536"},{"alias":"TRNAR34P","entrezGeneId":"100189537"},{"alias":"TRNAQ53P","entrezGeneId":"100189538"},{"alias":"TRNAK43P","entrezGeneId":"100189539"},{"alias":"TRNAQ54P","entrezGeneId":"100189540"},{"alias":"TRNAV4","entrezGeneId":"100189541"},{"alias":"LDHAL2","entrezGeneId":"100190799"},{"alias":"LDHAL7","entrezGeneId":"100190800"},{"alias":"SUPT4H1P","entrezGeneId":"100190947"},{"alias":"bcm3095","entrezGeneId":"100190952"},{"alias":"NDUFB1P","entrezGeneId":"100190952"},{"alias":"FAM32D","entrezGeneId":"100190955"},{"alias":"FAM32E","entrezGeneId":"100190956"},{"alias":"DSAP3","entrezGeneId":"100190982"},{"alias":"C2DELq32q33","entrezGeneId":"100190983"},{"alias":"C1DELq42q44","entrezGeneId":"100190984"},{"alias":"C1DELq43q44","entrezGeneId":"100190984"},{"alias":"DEL1Q42Q44","entrezGeneId":"100190984"},{"alias":"RPL36A_15_975","entrezGeneId":"100191039"},{"alias":"FAM148D","entrezGeneId":"100191040"},{"alias":"PPPD1","entrezGeneId":"100196910"},{"alias":"DSAP4","entrezGeneId":"100196911"},{"alias":"LINC00704","entrezGeneId":"100216001"},{"alias":"RPS24_4_368","entrezGeneId":"100216336"},{"alias":"RPS24_7_1030","entrezGeneId":"100216338"},{"alias":"RPS24_2_250","entrezGeneId":"100216339"},{"alias":"RPS24_6_1447","entrezGeneId":"100216340"},{"alias":"RPS24_7_1485","entrezGeneId":"100216341"},{"alias":"RPS24_1_225","entrezGeneId":"100216342"},{"alias":"DNM1DN11-10","entrezGeneId":"100216466"},{"alias":"DNM1DN11@","entrezGeneId":"100216466"},{"alias":"DNM1DN15-1","entrezGeneId":"100216505"},{"alias":"DNM1DN15@","entrezGeneId":"100216505"},{"alias":"DNM1DN15-3","entrezGeneId":"100216506"},{"alias":"DNM1DN15@","entrezGeneId":"100216506"},{"alias":"DNM1DN16-1","entrezGeneId":"100216507"},{"alias":"DNM1DN16@","entrezGeneId":"100216507"},{"alias":"DNM1DN16-3","entrezGeneId":"100216514"},{"alias":"DNM1DN16@","entrezGeneId":"100216514"},{"alias":"DNM1DN8-3","entrezGeneId":"100216515"},{"alias":"DNM1DN8@","entrezGeneId":"100216515"},{"alias":"DNM1DN10-1","entrezGeneId":"100216516"},{"alias":"DNM1DN10@","entrezGeneId":"100216516"},{"alias":"DNM1DN10-2","entrezGeneId":"100216517"},{"alias":"DNM1DN10@","entrezGeneId":"100216517"},{"alias":"DNM1DN11-8","entrezGeneId":"100216517"},{"alias":"DNM1DN11@","entrezGeneId":"100216517"},{"alias":"DNM1P42","entrezGeneId":"100216517"},{"alias":"DNM1DN11-3","entrezGeneId":"100216518"},{"alias":"DNM1DN11@","entrezGeneId":"100216518"},{"alias":"DNM1DN12-2","entrezGeneId":"100216542"},{"alias":"DNM1DN12@","entrezGeneId":"100216542"},{"alias":"DNM1DN14-3","entrezGeneId":"100216544"},{"alias":"DNM1DN14@","entrezGeneId":"100216544"},{"alias":"C1DELq21","entrezGeneId":"100217370"},{"alias":"C1DUPq21","entrezGeneId":"100217371"},{"alias":"DEL11p14p12","entrezGeneId":"100233159"},{"alias":"PLSA","entrezGeneId":"100240702"},{"alias":"GAPDH","entrezGeneId":"100240709"},{"alias":"C7DUPq11.23","entrezGeneId":"100240730"},{"alias":"C15DELq15.3","entrezGeneId":"100240731"},{"alias":"C11DELp15p14","entrezGeneId":"100240736"},{"alias":"C1DELp36","entrezGeneId":"100240737"},{"alias":"DUP18qDEL18p","entrezGeneId":"100240739"},{"alias":"DUP81qDEL18p","entrezGeneId":"100240739"},{"alias":"C2DELp161-p15","entrezGeneId":"100240740"},{"alias":"C18DELp","entrezGeneId":"100240747"},{"alias":"C9DELp","entrezGeneId":"100240748"},{"alias":"MKI67IPP3","entrezGeneId":"100270648"},{"alias":"FABP5L12","entrezGeneId":"100270673"},{"alias":"CARLo-7","entrezGeneId":"100270680"},{"alias":"CARLO7","entrezGeneId":"100270680"},{"alias":"LINC00990","entrezGeneId":"100270680"},{"alias":"TCONS_00014535","entrezGeneId":"100270680"},{"alias":"RPL21_45_1329","entrezGeneId":"100270753"},{"alias":"RPL7A_34_1809","entrezGeneId":"100270754"},{"alias":"RPSA_33_1813","entrezGeneId":"100270755"},{"alias":"C17DUPp13.3","entrezGeneId":"100270800"},{"alias":"DUP17p13.3","entrezGeneId":"100270800"},{"alias":"C6DELpter","entrezGeneId":"100270803"},{"alias":"RPL7_1_6","entrezGeneId":"100270823"},{"alias":"RPL9_1_50","entrezGeneId":"100270825"},{"alias":"RPS2_1_34","entrezGeneId":"100270826"},{"alias":"RPS2_2_88","entrezGeneId":"100270827"},{"alias":"RPL37_1_4","entrezGeneId":"100270828"},{"alias":"RPL39_1_3","entrezGeneId":"100270829"},{"alias":"RPL5_3_263","entrezGeneId":"100270832"},{"alias":"RPL5_4_502","entrezGeneId":"100270833"},{"alias":"RPL5_5_523","entrezGeneId":"100270834"},{"alias":"RPL5_5_550","entrezGeneId":"100270835"},{"alias":"RPL5_6_566","entrezGeneId":"100270836"},{"alias":"RPL5_7_588","entrezGeneId":"100270837"},{"alias":"RPL5_7_753","entrezGeneId":"100270838"},{"alias":"RPL5_8_591","entrezGeneId":"100270839"},{"alias":"RPL5_8_899","entrezGeneId":"100270840"},{"alias":"RPL5_9_935","entrezGeneId":"100270841"},{"alias":"RPL6_3_613","entrezGeneId":"100270843"},{"alias":"RPL6_4_280","entrezGeneId":"100270844"},{"alias":"RPL6_5_321","entrezGeneId":"100270845"},{"alias":"RPL6_5_786","entrezGeneId":"100270846"},{"alias":"RPL6_6_412","entrezGeneId":"100270847"},{"alias":"RPL6_7_423","entrezGeneId":"100270848"},{"alias":"RPL7_4_398","entrezGeneId":"100270850"},{"alias":"RPL7_6_493","entrezGeneId":"100270851"},{"alias":"RPL7_7_596","entrezGeneId":"100270852"},{"alias":"RPL7_9_617","entrezGeneId":"100270853"},{"alias":"RPL8_1_413","entrezGeneId":"100270854"},{"alias":"RPL9_2_176","entrezGeneId":"100270855"},{"alias":"RPL9_2_278","entrezGeneId":"100270856"},{"alias":"RPL9_4_422","entrezGeneId":"100270857"},{"alias":"RPS2_3_202","entrezGeneId":"100270858"},{"alias":"RPS2_4_428","entrezGeneId":"100270859"},{"alias":"RPS2_8_310","entrezGeneId":"100270860"},{"alias":"RPS2_9_556","entrezGeneId":"100270861"},{"alias":"RPS3_1_652","entrezGeneId":"100270862"},{"alias":"RPS6_1_301","entrezGeneId":"100270864"},{"alias":"RPS6_4_967","entrezGeneId":"100270865"},{"alias":"RPS6_5_956","entrezGeneId":"100270866"},{"alias":"RPS6_5_991","entrezGeneId":"100270867"},{"alias":"RPS7_1_102","entrezGeneId":"100270868"},{"alias":"RPS7_3_462","entrezGeneId":"100270869"},{"alias":"RPS7_3_472","entrezGeneId":"100270870"},{"alias":"RPS8_1_339","entrezGeneId":"100270871"},{"alias":"RPSA_1_135","entrezGeneId":"100270872"},{"alias":"RPSA_3_103","entrezGeneId":"100270873"},{"alias":"RPSA_5_248","entrezGeneId":"100270874"},{"alias":"RPSA_5_268","entrezGeneId":"100270875"},{"alias":"RPSA_8_506","entrezGeneId":"100270876"},{"alias":"RPL21_1_11","entrezGeneId":"100270877"},{"alias":"RPL21_2_29","entrezGeneId":"100270878"},{"alias":"RPL21_2_54","entrezGeneId":"100270879"},{"alias":"RPL21_4_45","entrezGeneId":"100270880"},{"alias":"RPL21_5_46","entrezGeneId":"100270881"},{"alias":"RPL21_6_74","entrezGeneId":"100270882"},{"alias":"RPL26_1_10","entrezGeneId":"100270883"},{"alias":"RPL26_1_22","entrezGeneId":"100270884"},{"alias":"RPL26_2_76","entrezGeneId":"100270885"},{"alias":"RPL26_3_90","entrezGeneId":"100270886"},{"alias":"RPL31_1_62","entrezGeneId":"100270887"},{"alias":"RPL32_1_26","entrezGeneId":"100270888"},{"alias":"RPL34_1_24","entrezGeneId":"100270889"},{"alias":"RPL37_1_52","entrezGeneId":"100270890"},{"alias":"RPL39_1_12","entrezGeneId":"100270891"},{"alias":"RPL39_2_23","entrezGeneId":"100270892"},{"alias":"RPL39_2_85","entrezGeneId":"100270893"},{"alias":"RPL39_4_77","entrezGeneId":"100270894"},{"alias":"RPL7A_1_95","entrezGeneId":"100270895"},{"alias":"RPL7A_2_43","entrezGeneId":"100270896"},{"alias":"RPL7A_3_78","entrezGeneId":"100270897"},{"alias":"RPS11_1_99","entrezGeneId":"100270898"},{"alias":"RPS20_1_55","entrezGeneId":"100270899"},{"alias":"RPS20_1_80","entrezGeneId":"100270900"},{"alias":"RPS20_2_68","entrezGeneId":"100270901"},{"alias":"RPS26_1_49","entrezGeneId":"100270902"},{"alias":"RPS29_1_32","entrezGeneId":"100270903"},{"alias":"RPS3A_1_40","entrezGeneId":"100270904"},{"alias":"RPS3A_1_92","entrezGeneId":"100270905"},{"alias":"RPL5_10_724","entrezGeneId":"100270906"},{"alias":"RPL6_11_535","entrezGeneId":"100270907"},{"alias":"RPL7_13_818","entrezGeneId":"100270908"},{"alias":"RPL7_14_803","entrezGeneId":"100270909"},{"alias":"RPS2_10_570","entrezGeneId":"100270910"},{"alias":"RPS2_10_800","entrezGeneId":"100270911"},{"alias":"RPS2_11_579","entrezGeneId":"100270912"},{"alias":"RPS2_12_592","entrezGeneId":"100270913"},{"alias":"RPS7_6_1816","entrezGeneId":"100270914"},{"alias":"RPSA_10_610","entrezGeneId":"100270915"},{"alias":"RPSA_13_513","entrezGeneId":"100270916"},{"alias":"RPSA_13_766","entrezGeneId":"100270917"},{"alias":"RPSA_17_711","entrezGeneId":"100270918"},{"alias":"RPSA_18_761","entrezGeneId":"100270919"},{"alias":"RPL12_1_272","entrezGeneId":"100270920"},{"alias":"RPL12_3_619","entrezGeneId":"100270921"},{"alias":"RPL12_4_640","entrezGeneId":"100270922"},{"alias":"RPL12_5_471","entrezGeneId":"100270923"},{"alias":"RPL12_6_940","entrezGeneId":"100270924"},{"alias":"RPL12_7_777","entrezGeneId":"100270925"},{"alias":"RPL12_9_954","entrezGeneId":"100270926"},{"alias":"RPL13_1_589","entrezGeneId":"100270927"},{"alias":"RPL13_2_391","entrezGeneId":"100270928"},{"alias":"RPL14_1_377","entrezGeneId":"100270930"},{"alias":"RPL15_1_425","entrezGeneId":"100270933"},{"alias":"RPL15_2_518","entrezGeneId":"100270934"},{"alias":"RPL15P10","entrezGeneId":"100270935"},{"alias":"RPL15_3_755","entrezGeneId":"100270935"},{"alias":"RPL17_2_309","entrezGeneId":"100270936"},{"alias":"RPL17_3_336","entrezGeneId":"100270937"},{"alias":"RPL17_6_281","entrezGeneId":"100270938"},{"alias":"RPL17_7_285","entrezGeneId":"100270939"},{"alias":"RPL17_7_858","entrezGeneId":"100270940"},{"alias":"RPL17_8_331","entrezGeneId":"100270941"},{"alias":"RPL17_8_939","entrezGeneId":"100270942"},{"alias":"RPL17_9_379","entrezGeneId":"100270943"},{"alias":"RPL18_3_852","entrezGeneId":"100270944"},{"alias":"RPL18_4_944","entrezGeneId":"100270945"},{"alias":"RPL19_2_411","entrezGeneId":"100270946"},{"alias":"RPL19_3_638","entrezGeneId":"100270948"},{"alias":"RPL19_6_547","entrezGeneId":"100270950"},{"alias":"RPL19_9_931","entrezGeneId":"100270951"},{"alias":"RPL21_3_112","entrezGeneId":"100270952"},{"alias":"RPL21_5_222","entrezGeneId":"100270953"},{"alias":"RPL21_6_274","entrezGeneId":"100270954"},{"alias":"RPL21_8_333","entrezGeneId":"100270955"},{"alias":"RPL21_9_206","entrezGeneId":"100270956"},{"alias":"RPL22_4_256","entrezGeneId":"100270957"},{"alias":"RPL22_6_780","entrezGeneId":"100270959"},{"alias":"RPL22_8_723","entrezGeneId":"100270960"},{"alias":"RPL23_2_327","entrezGeneId":"100270961"},{"alias":"RPL23_2_893","entrezGeneId":"100270962"},{"alias":"RPL24_2_348","entrezGeneId":"100270963"},{"alias":"RPL24_4_982","entrezGeneId":"100270964"},{"alias":"RPL26_2_213","entrezGeneId":"100270965"},{"alias":"RPL26_6_894","entrezGeneId":"100270966"},{"alias":"RPL26_7_907","entrezGeneId":"100270967"},{"alias":"RPL26_9_632","entrezGeneId":"100270968"},{"alias":"RPL27_2_231","entrezGeneId":"100270969"},{"alias":"RPL27_4_375","entrezGeneId":"100270970"},{"alias":"RPL28_1_335","entrezGeneId":"100270971"},{"alias":"RPL29_3_121","entrezGeneId":"100270972"},{"alias":"RPL29_7_626","entrezGeneId":"100270974"},{"alias":"RPL30_1_127","entrezGeneId":"100270975"},{"alias":"RPL30_1_286","entrezGeneId":"100270976"},{"alias":"RPL30_2_193","entrezGeneId":"100270977"},{"alias":"RPL30_2_497","entrezGeneId":"100270978"},{"alias":"RPL30_3_541","entrezGeneId":"100270979"},{"alias":"RPL30_4_501","entrezGeneId":"100270980"},{"alias":"RPL30_5_882","entrezGeneId":"100270981"},{"alias":"RPL30_5_906","entrezGeneId":"100270982"},{"alias":"RPL31_2_164","entrezGeneId":"100270983"},{"alias":"RPL31_3_303","entrezGeneId":"100270984"},{"alias":"RPL31_5_346","entrezGeneId":"100270985"},{"alias":"RPL31_6_349","entrezGeneId":"100270986"},{"alias":"RPL31_6_464","entrezGeneId":"100270987"},{"alias":"RPL31_8_410","entrezGeneId":"100270988"},{"alias":"RPL31_9_449","entrezGeneId":"100270989"},{"alias":"RPL31_9_773","entrezGeneId":"100270990"},{"alias":"RPL32_2_419","entrezGeneId":"100270991"},{"alias":"RPL32_3_420","entrezGeneId":"100270992"},{"alias":"RPL32_4_510","entrezGeneId":"100270993"},{"alias":"RPL32_5_546","entrezGeneId":"100270994"},{"alias":"RPL34_2_101","entrezGeneId":"100270995"},{"alias":"RPL34_2_514","entrezGeneId":"100270996"},{"alias":"RPL34_3_616","entrezGeneId":"100270997"},{"alias":"RPL34_4_146","entrezGeneId":"100270998"},{"alias":"RPL34_5_265","entrezGeneId":"100270999"},{"alias":"RPL34_5_775","entrezGeneId":"100271000"},{"alias":"RPL34_6_902","entrezGeneId":"100271001"},{"alias":"RPL34_7_396","entrezGeneId":"100271002"},{"alias":"RPL34_7_926","entrezGeneId":"100271003"},{"alias":"RPL34_8_445","entrezGeneId":"100271004"},{"alias":"RPL35_3_799","entrezGeneId":"100271006"},{"alias":"RPL35_5_881","entrezGeneId":"100271007"},{"alias":"RPL36_2_186","entrezGeneId":"100271008"},{"alias":"RPL36_2_687","entrezGeneId":"100271009"},{"alias":"RPL36_3_453","entrezGeneId":"100271010"},{"alias":"RPL36_3_697","entrezGeneId":"100271011"},{"alias":"RPL36_4_831","entrezGeneId":"100271012"},{"alias":"RPL36_5_837","entrezGeneId":"100271013"},{"alias":"RPL37_2_190","entrezGeneId":"100271014"},{"alias":"RPL37_2_245","entrezGeneId":"100271015"},{"alias":"RPL37_3_203","entrezGeneId":"100271016"},{"alias":"RPL37_3_259","entrezGeneId":"100271017"},{"alias":"RPL37_4_228","entrezGeneId":"100271018"},{"alias":"RPL37_4_470","entrezGeneId":"100271019"},{"alias":"RPL37_5_710","entrezGeneId":"100271020"},{"alias":"RPL37_6_843","entrezGeneId":"100271021"},{"alias":"RPL39_3_134","entrezGeneId":"100271022"},{"alias":"RPL39_5_258","entrezGeneId":"100271023"},{"alias":"RPL39_6_343","entrezGeneId":"100271024"},{"alias":"RPL39_7_347","entrezGeneId":"100271025"},{"alias":"RPL39_8_448","entrezGeneId":"100271027"},{"alias":"RPL39_8_554","entrezGeneId":"100271028"},{"alias":"RPL40_1_352","entrezGeneId":"100271030"},{"alias":"RPL40_2_948","entrezGeneId":"100271031"},{"alias":"RPL4_4_1752","entrezGeneId":"100271033"},{"alias":"RPL6_8_1023","entrezGeneId":"100271034"},{"alias":"RPL6_9_1550","entrezGeneId":"100271035"},{"alias":"RPL7A_2_119","entrezGeneId":"100271036"},{"alias":"RPL7A_3_155","entrezGeneId":"100271037"},{"alias":"RPL7A_4_120","entrezGeneId":"100271038"},{"alias":"RPL7A_4_289","entrezGeneId":"100271039"},{"alias":"RPL7A_5_385","entrezGeneId":"100271040"},{"alias":"RPL7A_6_424","entrezGeneId":"100271041"},{"alias":"RPL7A_6_441","entrezGeneId":"100271042"},{"alias":"RPL7A_7_455","entrezGeneId":"100271043"},{"alias":"RPL8_2_1740","entrezGeneId":"100271044"},{"alias":"RPL9_7_1272","entrezGeneId":"100271045"},{"alias":"RPLP0_2_288","entrezGeneId":"100271047"},{"alias":"RPLP1_3_885","entrezGeneId":"100271049"},{"alias":"RPS10_4_945","entrezGeneId":"100271050"},{"alias":"RPS11_2_972","entrezGeneId":"100271052"},{"alias":"RPS12_1_355","entrezGeneId":"100271053"},{"alias":"RPS12_2_384","entrezGeneId":"100271054"},{"alias":"RPS12_3_426","entrezGeneId":"100271055"},{"alias":"RPS12_4_622","entrezGeneId":"100271056"},{"alias":"RPS12_5_735","entrezGeneId":"100271057"},{"alias":"RPS12_6_698","entrezGeneId":"100271058"},{"alias":"RPS12_7_934","entrezGeneId":"100271059"},{"alias":"RPS13_2_199","entrezGeneId":"100271060"},{"alias":"RPS13_2_201","entrezGeneId":"100271061"},{"alias":"RPS13_4_614","entrezGeneId":"100271062"},{"alias":"RPS14_1_156","entrezGeneId":"100271063"},{"alias":"RPS14_2_132","entrezGeneId":"100271064"},{"alias":"RPS14_4_530","entrezGeneId":"100271065"},{"alias":"RPS15_1_177","entrezGeneId":"100271066"},{"alias":"RPS16_2_279","entrezGeneId":"100271067"},{"alias":"RPS16_2_363","entrezGeneId":"100271068"},{"alias":"RPS17_1_271","entrezGeneId":"100271069"},{"alias":"RPS17_2_307","entrezGeneId":"100271070"},{"alias":"RPS17_2_414","entrezGeneId":"100271071"},{"alias":"RPS17_4_560","entrezGeneId":"100271072"},{"alias":"RPS17_6_804","entrezGeneId":"100271073"},{"alias":"RPS17_6_941","entrezGeneId":"100271074"},{"alias":"RPS18_1_117","entrezGeneId":"100271075"},{"alias":"RPS18_3_386","entrezGeneId":"100271076"},{"alias":"RPS18_3_913","entrezGeneId":"100271077"},{"alias":"RPS19_2_988","entrezGeneId":"100271078"},{"alias":"RPS20_2_149","entrezGeneId":"100271079"},{"alias":"RPS20_3_230","entrezGeneId":"100271080"},{"alias":"RPS20_3_240","entrezGeneId":"100271081"},{"alias":"RPS20_4_266","entrezGeneId":"100271082"},{"alias":"RPS20_4_337","entrezGeneId":"100271083"},{"alias":"RPS20_5_284","entrezGeneId":"100271084"},{"alias":"RPS20_5_351","entrezGeneId":"100271085"},{"alias":"RPS20_7_597","entrezGeneId":"100271086"},{"alias":"RPS20_8_895","entrezGeneId":"100271087"},{"alias":"RPS20_9_642","entrezGeneId":"100271088"},{"alias":"RPS20_9_932","entrezGeneId":"100271089"},{"alias":"RPS21_1_179","entrezGeneId":"100271090"},{"alias":"RPS23_1_489","entrezGeneId":"100271091"},{"alias":"RPS23_1_526","entrezGeneId":"100271092"},{"alias":"RPS23_2_542","entrezGeneId":"100271093"},{"alias":"RPS24_1_136","entrezGeneId":"100271094"},{"alias":"RPS24_3_344","entrezGeneId":"100271097"},{"alias":"RPS24_3_730","entrezGeneId":"100271098"},{"alias":"RPS25_1_159","entrezGeneId":"100271100"},{"alias":"RPS25_1_198","entrezGeneId":"100271101"},{"alias":"RPS25_3_418","entrezGeneId":"100271102"},{"alias":"RPS25_5_649","entrezGeneId":"100271103"},{"alias":"RPS26_2_128","entrezGeneId":"100271104"},{"alias":"RPS26_3_394","entrezGeneId":"100271105"},{"alias":"RPS26_4_158","entrezGeneId":"100271106"},{"alias":"RPS26_4_515","entrezGeneId":"100271107"},{"alias":"RPS26_5_195","entrezGeneId":"100271108"},{"alias":"RPS26_5_578","entrezGeneId":"100271109"},{"alias":"RPS26_6_273","entrezGeneId":"100271110"},{"alias":"RPS26_7_791","entrezGeneId":"100271111"},{"alias":"RPS26_8_399","entrezGeneId":"100271112"},{"alias":"RPS26_9_482","entrezGeneId":"100271113"},{"alias":"RPS26_9_922","entrezGeneId":"100271114"},{"alias":"RPS27_3_353","entrezGeneId":"100271115"},{"alias":"RPS27_4_170","entrezGeneId":"100271116"},{"alias":"RPS27_4_403","entrezGeneId":"100271117"},{"alias":"RPS27_8_714","entrezGeneId":"100271118"},{"alias":"RPS27_9_801","entrezGeneId":"100271119"},{"alias":"RPS28_1_163","entrezGeneId":"100271120"},{"alias":"RPS28_3_243","entrezGeneId":"100271121"},{"alias":"RPS29_2_744","entrezGeneId":"100271122"},{"alias":"RPS29_3_129","entrezGeneId":"100271123"},{"alias":"RPS29_4_130","entrezGeneId":"100271124"},{"alias":"RPS30_1_440","entrezGeneId":"100271125"},{"alias":"RPS30_1_539","entrezGeneId":"100271126"},{"alias":"RPS3A_3_138","entrezGeneId":"100271127"},{"alias":"RPS3A_4_140","entrezGeneId":"100271129"},{"alias":"RPS3A_4_467","entrezGeneId":"100271130"},{"alias":"RPS3A_8_764","entrezGeneId":"100271131"},{"alias":"RPS4P5","entrezGeneId":"100271132"},{"alias":"RPS4X_1_232","entrezGeneId":"100271132"},{"alias":"RPS4P10","entrezGeneId":"100271133"},{"alias":"RPS4X_6_927","entrezGeneId":"100271133"},{"alias":"RPS6_8_1191","entrezGeneId":"100271135"},{"alias":"RPS6_9_1270","entrezGeneId":"100271136"},{"alias":"RPL13A_1_58","entrezGeneId":"100271137"},{"alias":"RPL23A_3_37","entrezGeneId":"100271138"},{"alias":"RPL36A_1_38","entrezGeneId":"100271139"},{"alias":"RPL36A_1_70","entrezGeneId":"100271140"},{"alias":"RPS15A_1_18","entrezGeneId":"100271141"},{"alias":"RPS15A_1_57","entrezGeneId":"100271142"},{"alias":"RPS15A_2_39","entrezGeneId":"100271143"},{"alias":"RPS27A_1_97","entrezGeneId":"100271144"},{"alias":"RPL7_30_1785","entrezGeneId":"100271145"},{"alias":"RPL7_31_1789","entrezGeneId":"100271146"},{"alias":"RPL7_32_1793","entrezGeneId":"100271147"},{"alias":"RPSA_27_1799","entrezGeneId":"100271148"},{"alias":"RPSA_28_1820","entrezGeneId":"100271149"},{"alias":"RPL17_11_483","entrezGeneId":"100271150"},{"alias":"RPL17_12_561","entrezGeneId":"100271151"},{"alias":"RPL17_15_751","entrezGeneId":"100271152"},{"alias":"RPL17_16_771","entrezGeneId":"100271153"},{"alias":"RPL17_18_874","entrezGeneId":"100271154"},{"alias":"RPL17_20_898","entrezGeneId":"100271155"},{"alias":"RPL17_21_910","entrezGeneId":"100271156"},{"alias":"RPL21_10_219","entrezGeneId":"100271157"},{"alias":"RPL21_10_356","entrezGeneId":"100271158"},{"alias":"RPL21_11_380","entrezGeneId":"100271159"},{"alias":"RPL21_12_296","entrezGeneId":"100271160"},{"alias":"RPL21_13_305","entrezGeneId":"100271161"},{"alias":"RPL21_13_421","entrezGeneId":"100271162"},{"alias":"RPL21_15_434","entrezGeneId":"100271163"},{"alias":"RPL21_16_486","entrezGeneId":"100271164"},{"alias":"RPL21_17_503","entrezGeneId":"100271165"},{"alias":"RPL21_18_504","entrezGeneId":"100271166"},{"alias":"RPL21_18_516","entrezGeneId":"100271167"},{"alias":"RPL21_19_553","entrezGeneId":"100271168"},{"alias":"RPL21_20_533","entrezGeneId":"100271169"},{"alias":"RPL21_20_571","entrezGeneId":"100271170"},{"alias":"RPL21_21_549","entrezGeneId":"100271171"},{"alias":"RPL21_21_631","entrezGeneId":"100271172"},{"alias":"RPL21_22_606","entrezGeneId":"100271173"},{"alias":"RPL21_22_635","entrezGeneId":"100271174"},{"alias":"RPL21_23_641","entrezGeneId":"100271175"},{"alias":"RPL21_24_657","entrezGeneId":"100271176"},{"alias":"RPL21_25_752","entrezGeneId":"100271177"},{"alias":"RPL21_26_729","entrezGeneId":"100271178"},{"alias":"RPL21_26_756","entrezGeneId":"100271179"},{"alias":"RPL21_27_754","entrezGeneId":"100271180"},{"alias":"RPL21_28_779","entrezGeneId":"100271181"},{"alias":"RPL21_28_856","entrezGeneId":"100271182"},{"alias":"RPL21_29_883","entrezGeneId":"100271183"},{"alias":"RPL21_30_821","entrezGeneId":"100271184"},{"alias":"RPL21_30_950","entrezGeneId":"100271185"},{"alias":"RPL21_31_978","entrezGeneId":"100271186"},{"alias":"RPL21_32_987","entrezGeneId":"100271187"},{"alias":"RPL21_33_903","entrezGeneId":"100271188"},{"alias":"RPL21_33_996","entrezGeneId":"100271189"},{"alias":"RPL21_34_998","entrezGeneId":"100271190"},{"alias":"RPL26_10_715","entrezGeneId":"100271191"},{"alias":"RPL30_7_1765","entrezGeneId":"100271192"},{"alias":"RPL31_10_781","entrezGeneId":"100271193"},{"alias":"RPL31_11_499","entrezGeneId":"100271194"},{"alias":"RPL31_12_911","entrezGeneId":"100271196"},{"alias":"RPL31_13_966","entrezGeneId":"100271197"},{"alias":"RPL31_15_765","entrezGeneId":"100271198"},{"alias":"RPL31_16_810","entrezGeneId":"100271199"},{"alias":"RPL31_19_846","entrezGeneId":"100271200"},{"alias":"RPL31_20_909","entrezGeneId":"100271201"},{"alias":"RPL37_7_1015","entrezGeneId":"100271202"},{"alias":"RPL39_10_809","entrezGeneId":"100271203"},{"alias":"RPL5_10_1021","entrezGeneId":"100271204"},{"alias":"RPL5_13_1059","entrezGeneId":"100271206"},{"alias":"RPL5_17_1422","entrezGeneId":"100271207"},{"alias":"RPL6_16_1757","entrezGeneId":"100271208"},{"alias":"RPL7A_10_519","entrezGeneId":"100271209"},{"alias":"RPL7A_10_727","entrezGeneId":"100271210"},{"alias":"RPL7A_13_964","entrezGeneId":"100271211"},{"alias":"RPL7A_14_968","entrezGeneId":"100271212"},{"alias":"RPL7A_16_795","entrezGeneId":"100271213"},{"alias":"RPL7A_16_980","entrezGeneId":"100271214"},{"alias":"RPL7A_19_836","entrezGeneId":"100271215"},{"alias":"RPL7_15_1095","entrezGeneId":"100271216"},{"alias":"RPL7_16_1250","entrezGeneId":"100271217"},{"alias":"RPL7_18_1089","entrezGeneId":"100271218"},{"alias":"RPL7_19_1215","entrezGeneId":"100271220"},{"alias":"RPL7_20_1575","entrezGeneId":"100271221"},{"alias":"RPL7_21_1238","entrezGeneId":"100271222"},{"alias":"RPL7_22_1255","entrezGeneId":"100271223"},{"alias":"RPL7_23_1260","entrezGeneId":"100271224"},{"alias":"RPL7_25_1334","entrezGeneId":"100271225"},{"alias":"RPL7_29_1664","entrezGeneId":"100271226"},{"alias":"RPL9_11_1421","entrezGeneId":"100271227"},{"alias":"RPL9_12_1606","entrezGeneId":"100271228"},{"alias":"RPL9_13_1663","entrezGeneId":"100271229"},{"alias":"RPS17_8_1818","entrezGeneId":"100271230"},{"alias":"RPS20_10_738","entrezGeneId":"100271231"},{"alias":"RPS20_10_984","entrezGeneId":"100271232"},{"alias":"RPS20_11_915","entrezGeneId":"100271233"},{"alias":"RPS20_12_916","entrezGeneId":"100271234"},{"alias":"RPS20_13_989","entrezGeneId":"100271235"},{"alias":"RPS21_3_1008","entrezGeneId":"100271236"},{"alias":"RPS26_12_587","entrezGeneId":"100271237"},{"alias":"RPS26_12_999","entrezGeneId":"100271238"},{"alias":"RPS26_14_825","entrezGeneId":"100271239"},{"alias":"RPS26_18_953","entrezGeneId":"100271240"},{"alias":"RPS29_10_826","entrezGeneId":"100271241"},{"alias":"RPS2_13_1085","entrezGeneId":"100271243"},{"alias":"RPS2_15_1171","entrezGeneId":"100271244"},{"alias":"RPS2_16_1278","entrezGeneId":"100271245"},{"alias":"RPS2_18_1391","entrezGeneId":"100271246"},{"alias":"RPS2_19_1214","entrezGeneId":"100271247"},{"alias":"RPS2_21_1482","entrezGeneId":"100271248"},{"alias":"RPS2_23_1615","entrezGeneId":"100271250"},{"alias":"RPS2_24_1542","entrezGeneId":"100271251"},{"alias":"RPS2_28_1709","entrezGeneId":"100271252"},{"alias":"RPS3A_10_762","entrezGeneId":"100271253"},{"alias":"RPS3A_11_871","entrezGeneId":"100271254"},{"alias":"RPS3A_12_850","entrezGeneId":"100271255"},{"alias":"RPS3A_12_873","entrezGeneId":"100271256"},{"alias":"RPS3A_13_855","entrezGeneId":"100271257"},{"alias":"RPS3A_13_917","entrezGeneId":"100271258"},{"alias":"RPS3A_14_872","entrezGeneId":"100271259"},{"alias":"RPS3A_15_876","entrezGeneId":"100271260"},{"alias":"RPS3A_16_877","entrezGeneId":"100271261"},{"alias":"RPS6_10_1296","entrezGeneId":"100271262"},{"alias":"RPS6_11_1297","entrezGeneId":"100271263"},{"alias":"RPSA_25_1205","entrezGeneId":"100271267"},{"alias":"RPL11_2_1077","entrezGeneId":"100271271"},{"alias":"RPL11_2_1080","entrezGeneId":"100271272"},{"alias":"RPL12_7_1019","entrezGeneId":"100271273"},{"alias":"RPL12_8_1073","entrezGeneId":"100271274"},{"alias":"RPL13A_1_152","entrezGeneId":"100271276"},{"alias":"RPL13A_3_312","entrezGeneId":"100271277"},{"alias":"RPL13A_3_590","entrezGeneId":"100271278"},{"alias":"RPL13A_4_746","entrezGeneId":"100271279"},{"alias":"RPL14_2_1267","entrezGeneId":"100271282"},{"alias":"RPL15_7_1062","entrezGeneId":"100271283"},{"alias":"RPL17_9_1049","entrezGeneId":"100271284"},{"alias":"RPL18A_4_806","entrezGeneId":"100271285"},{"alias":"RPL18_6_1311","entrezGeneId":"100271286"},{"alias":"RPL19_6_1208","entrezGeneId":"100271287"},{"alias":"RPL19_7_1512","entrezGeneId":"100271288"},{"alias":"RPL22_7_1091","entrezGeneId":"100271289"},{"alias":"RPL22_9_1070","entrezGeneId":"100271290"},{"alias":"RPL23A_2_142","entrezGeneId":"100271291"},{"alias":"RPL23A_5_178","entrezGeneId":"100271292"},{"alias":"RPL23A_7_304","entrezGeneId":"100271293"},{"alias":"RPL23A_8_204","entrezGeneId":"100271294"},{"alias":"RPL23A_8_306","entrezGeneId":"100271295"},{"alias":"RPL23A_9_314","entrezGeneId":"100271296"},{"alias":"RPL23_6_1032","entrezGeneId":"100271297"},{"alias":"RPL27A_1_302","entrezGeneId":"100271298"},{"alias":"RPL27A_2_255","entrezGeneId":"100271299"},{"alias":"RPL27A_2_577","entrezGeneId":"100271300"},{"alias":"RPL27A_3_699","entrezGeneId":"100271301"},{"alias":"RPL27_4_1293","entrezGeneId":"100271302"},{"alias":"RPL30_6_1213","entrezGeneId":"100271303"},{"alias":"RPL30_6_1274","entrezGeneId":"100271304"},{"alias":"RPL30_7_1228","entrezGeneId":"100271305"},{"alias":"RPL32_7_1234","entrezGeneId":"100271306"},{"alias":"RPL34_8_1088","entrezGeneId":"100271308"},{"alias":"RPL34_9_1123","entrezGeneId":"100271309"},{"alias":"RPL35A_1_367","entrezGeneId":"100271310"},{"alias":"RPL35A_2_427","entrezGeneId":"100271311"},{"alias":"RPL35A_3_191","entrezGeneId":"100271312"},{"alias":"RPL35A_3_429","entrezGeneId":"100271313"},{"alias":"RPL35A_4_500","entrezGeneId":"100271314"},{"alias":"RPL35A_4_569","entrezGeneId":"100271315"},{"alias":"RPL35A_5_531","entrezGeneId":"100271316"},{"alias":"RPL35A_6_605","entrezGeneId":"100271317"},{"alias":"RPL35A_6_624","entrezGeneId":"100271318"},{"alias":"RPL35A_7_625","entrezGeneId":"100271319"},{"alias":"RPL35A_8_717","entrezGeneId":"100271321"},{"alias":"RPL35A_8_947","entrezGeneId":"100271322"},{"alias":"RPL36A_3_200","entrezGeneId":"100271323"},{"alias":"RPL36A_3_214","entrezGeneId":"100271324"},{"alias":"RPL36A_4_216","entrezGeneId":"100271325"},{"alias":"RPL36A_4_361","entrezGeneId":"100271326"},{"alias":"RPL36A_5_238","entrezGeneId":"100271327"},{"alias":"RPL36A_5_491","entrezGeneId":"100271328"},{"alias":"RPL36A_6_630","entrezGeneId":"100271329"},{"alias":"RPL36A_7_509","entrezGeneId":"100271330"},{"alias":"RPL36A_7_666","entrezGeneId":"100271331"},{"alias":"RPL36A_8_545","entrezGeneId":"100271332"},{"alias":"RPL36_6_1283","entrezGeneId":"100271334"},{"alias":"RPL36_8_1743","entrezGeneId":"100271336"},{"alias":"RPL37A_1_476","entrezGeneId":"100271337"},{"alias":"RPL37A_2_776","entrezGeneId":"100271338"},{"alias":"RPL37A_3_833","entrezGeneId":"100271339"},{"alias":"RPL37_6_1200","entrezGeneId":"100271340"},{"alias":"RPL37_7_1538","entrezGeneId":"100271341"},{"alias":"RPL37_8_1033","entrezGeneId":"100271342"},{"alias":"RPL40_3_1481","entrezGeneId":"100271343"},{"alias":"RPL40_4_1591","entrezGeneId":"100271344"},{"alias":"RPLP1_6_1047","entrezGeneId":"100271346"},{"alias":"RPLP2_3_1225","entrezGeneId":"100271347"},{"alias":"RPLP2_4_1568","entrezGeneId":"100271348"},{"alias":"RPS10_6_1108","entrezGeneId":"100271349"},{"alias":"RPS10_7_1142","entrezGeneId":"100271350"},{"alias":"RPS10_8_1322","entrezGeneId":"100271351"},{"alias":"RPS12_7_1034","entrezGeneId":"100271352"},{"alias":"RPS12_8_1057","entrezGeneId":"100271353"},{"alias":"RPS12P19","entrezGeneId":"100271354"},{"alias":"RPS12_8_1068","entrezGeneId":"100271354"},{"alias":"RPS12_9_1069","entrezGeneId":"100271354"},{"alias":"RPS15A_6_747","entrezGeneId":"100271357"},{"alias":"RPS15A_7_402","entrezGeneId":"100271358"},{"alias":"RPS15A_7_928","entrezGeneId":"100271359"},{"alias":"RPS15A_9_644","entrezGeneId":"100271360"},{"alias":"RPS15_4_1197","entrezGeneId":"100271361"},{"alias":"RPS16_3_1149","entrezGeneId":"100271362"},{"alias":"RPS17_7_1173","entrezGeneId":"100271363"},{"alias":"RPS18_8_1634","entrezGeneId":"100271364"},{"alias":"RPS21_3_1599","entrezGeneId":"100271365"},{"alias":"RPS21_4_1681","entrezGeneId":"100271366"},{"alias":"RPS23_4_1473","entrezGeneId":"100271367"},{"alias":"RPS24_8_1590","entrezGeneId":"100271371"},{"alias":"RPS25_3_1755","entrezGeneId":"100271372"},{"alias":"RPS25_7_1060","entrezGeneId":"100271373"},{"alias":"RPS27A_1_141","entrezGeneId":"100271374"},{"alias":"RPS27A_2_437","entrezGeneId":"100271375"},{"alias":"RPS27A_3_585","entrezGeneId":"100271376"},{"alias":"RPS27A_3_621","entrezGeneId":"100271377"},{"alias":"RPS27A_5_955","entrezGeneId":"100271378"},{"alias":"RPS27A_6_985","entrezGeneId":"100271379"},{"alias":"RPS27_6_1109","entrezGeneId":"100271380"},{"alias":"RPS28_4_1309","entrezGeneId":"100271381"},{"alias":"RPS29_4_1178","entrezGeneId":"100271383"},{"alias":"RPS29_6_1530","entrezGeneId":"100271384"},{"alias":"RPS4P12","entrezGeneId":"100271385"},{"alias":"RPS4X_4_1183","entrezGeneId":"100271385"},{"alias":"RPS4P20","entrezGeneId":"100271386"},{"alias":"RPS4X_9_1648","entrezGeneId":"100271386"},{"alias":"RPL12_24_1805","entrezGeneId":"100271387"},{"alias":"RPL17_20_1764","entrezGeneId":"100271388"},{"alias":"RPL21_35_1017","entrezGeneId":"100271389"},{"alias":"RPL21_62_1798","entrezGeneId":"100271390"},{"alias":"RPL21_63_1815","entrezGeneId":"100271391"},{"alias":"RPL31_36_1782","entrezGeneId":"100271392"},{"alias":"RPL32_11_1810","entrezGeneId":"100271393"},{"alias":"RPL36_10_1804","entrezGeneId":"100271394"},{"alias":"RPL37_11_1779","entrezGeneId":"100271395"},{"alias":"RPL39_11_1016","entrezGeneId":"100271396"},{"alias":"RPL7A_21_1001","entrezGeneId":"100271398"},{"alias":"RPL7A_33_1780","entrezGeneId":"100271399"},{"alias":"RPS26_23_1811","entrezGeneId":"100271400"},{"alias":"RPS26_34_1808","entrezGeneId":"100271401"},{"alias":"RPS29_22_1795","entrezGeneId":"100271402"},{"alias":"RPL12_10_1101","entrezGeneId":"100271404"},{"alias":"RPL12_11_1132","entrezGeneId":"100271405"},{"alias":"RPL12_11_1136","entrezGeneId":"100271406"},{"alias":"RPL12_14_1319","entrezGeneId":"100271407"},{"alias":"RPL12_17_1486","entrezGeneId":"100271408"},{"alias":"RPL12_20_1611","entrezGeneId":"100271410"},{"alias":"RPL17_12_1285","entrezGeneId":"100271411"},{"alias":"RPL17_15_1477","entrezGeneId":"100271413"},{"alias":"RPL17_16_1598","entrezGeneId":"100271414"},{"alias":"RPL17_17_1624","entrezGeneId":"100271415"},{"alias":"RPL17_19_1717","entrezGeneId":"100271416"},{"alias":"RPL17_22_1275","entrezGeneId":"100271417"},{"alias":"RPL17_25_1540","entrezGeneId":"100271418"},{"alias":"RPL17_27_1601","entrezGeneId":"100271419"},{"alias":"RPL18A_9_1800","entrezGeneId":"100271420"},{"alias":"RPL21_36_1036","entrezGeneId":"100271421"},{"alias":"RPL21_37_1041","entrezGeneId":"100271422"},{"alias":"RPL21_37_1084","entrezGeneId":"100271423"},{"alias":"RPL21_39_1094","entrezGeneId":"100271424"},{"alias":"RPL21_39_1117","entrezGeneId":"100271425"},{"alias":"RPL21_40_1159","entrezGeneId":"100271427"},{"alias":"RPL21_41_1169","entrezGeneId":"100271428"},{"alias":"RPL21_41_1222","entrezGeneId":"100271429"},{"alias":"RPL21_42_1206","entrezGeneId":"100271430"},{"alias":"RPL21_42_1230","entrezGeneId":"100271431"},{"alias":"RPL21_43_1219","entrezGeneId":"100271432"},{"alias":"RPL21_44_1241","entrezGeneId":"100271433"},{"alias":"RPL21_44_1324","entrezGeneId":"100271434"},{"alias":"RPL21_45_1243","entrezGeneId":"100271435"},{"alias":"RPL21_49_1320","entrezGeneId":"100271437"},{"alias":"RPL21_50_1323","entrezGeneId":"100271438"},{"alias":"RPL21_51_1327","entrezGeneId":"100271439"},{"alias":"RPL21_51_1437","entrezGeneId":"100271440"},{"alias":"RPL21_52_1438","entrezGeneId":"100271441"},{"alias":"RPL21_54_1451","entrezGeneId":"100271443"},{"alias":"RPL21_55_1456","entrezGeneId":"100271444"},{"alias":"RPL21_56_1523","entrezGeneId":"100271445"},{"alias":"RPL21_57_1497","entrezGeneId":"100271446"},{"alias":"RPL21_58_1515","entrezGeneId":"100271447"},{"alias":"RPL21_59_1535","entrezGeneId":"100271448"},{"alias":"RPL21_59_1605","entrezGeneId":"100271449"},{"alias":"RPL21_60_1556","entrezGeneId":"100271450"},{"alias":"RPL21_60_1619","entrezGeneId":"100271451"},{"alias":"RPL21_61_1581","entrezGeneId":"100271452"},{"alias":"RPL21_63_1633","entrezGeneId":"100271453"},{"alias":"RPL22_11_1520","entrezGeneId":"100271455"},{"alias":"RPL23A_10_252","entrezGeneId":"100271456"},{"alias":"RPL23A_10_329","entrezGeneId":"100271457"},{"alias":"RPL23A_11_287","entrezGeneId":"100271458"},{"alias":"RPL23A_12_308","entrezGeneId":"100271459"},{"alias":"RPL23A_13_326","entrezGeneId":"100271460"},{"alias":"RPL23A_15_341","entrezGeneId":"100271461"},{"alias":"RPL23A_17_408","entrezGeneId":"100271462"},{"alias":"RPL23A_18_782","entrezGeneId":"100271464"},{"alias":"RPL23A_19_784","entrezGeneId":"100271465"},{"alias":"RPL23A_22_870","entrezGeneId":"100271466"},{"alias":"RPL23A_23_884","entrezGeneId":"100271467"},{"alias":"RPL26_11_1166","entrezGeneId":"100271469"},{"alias":"RPL26_13_1302","entrezGeneId":"100271470"},{"alias":"RPL26_15_1055","entrezGeneId":"100271471"},{"alias":"RPL29_12_1148","entrezGeneId":"100271472"},{"alias":"RPL29_18_1328","entrezGeneId":"100271474"},{"alias":"RPL31_17_1239","entrezGeneId":"100271475"},{"alias":"RPL31_18_1289","entrezGeneId":"100271476"},{"alias":"RPL31_19_1315","entrezGeneId":"100271477"},{"alias":"RPL31_20_1484","entrezGeneId":"100271478"},{"alias":"RPL31_23_1157","entrezGeneId":"100271479"},{"alias":"RPL31_23_1580","entrezGeneId":"100271480"},{"alias":"RPL31_24_1186","entrezGeneId":"100271481"},{"alias":"RPL31_26_1736","entrezGeneId":"100271482"},{"alias":"RPL31_27_1326","entrezGeneId":"100271483"},{"alias":"RPL31_32_1533","entrezGeneId":"100271485"},{"alias":"RPL31_33_1645","entrezGeneId":"100271486"},{"alias":"RPL31_34_1652","entrezGeneId":"100271487"},{"alias":"RPL32_10_1563","entrezGeneId":"100271488"},{"alias":"RPL32_15_1162","entrezGeneId":"100271489"},{"alias":"RPL32_16_1167","entrezGeneId":"100271490"},{"alias":"RPL32_17_1245","entrezGeneId":"100271491"},{"alias":"RPL32_19_1431","entrezGeneId":"100271492"},{"alias":"RPL32_20_1573","entrezGeneId":"100271493"},{"alias":"RPL34_10_1028","entrezGeneId":"100271494"},{"alias":"RPL34_10_1189","entrezGeneId":"100271495"},{"alias":"RPL34_12_1141","entrezGeneId":"100271498"},{"alias":"RPL34_13_1184","entrezGeneId":"100271499"},{"alias":"RPL34_13_1367","entrezGeneId":"100271500"},{"alias":"RPL34_14_1217","entrezGeneId":"100271501"},{"alias":"RPL34_14_1586","entrezGeneId":"100271502"},{"alias":"RPL34_15_1483","entrezGeneId":"100271503"},{"alias":"RPL34_16_1738","entrezGeneId":"100271504"},{"alias":"RPL34_17_1547","entrezGeneId":"100271505"},{"alias":"RPL35A_11_983","entrezGeneId":"100271506"},{"alias":"RPL35A_9_1011","entrezGeneId":"100271507"},{"alias":"RPL36A_10_733","entrezGeneId":"100271508"},{"alias":"RPL36A_10_864","entrezGeneId":"100271509"},{"alias":"RPL36A_11_788","entrezGeneId":"100271510"},{"alias":"RPL36A_11_867","entrezGeneId":"100271511"},{"alias":"RPL36A_12_887","entrezGeneId":"100271512"},{"alias":"RPL36A_14_970","entrezGeneId":"100271513"},{"alias":"RPL37_10_1232","entrezGeneId":"100271515"},{"alias":"RPL37_11_1318","entrezGeneId":"100271516"},{"alias":"RPL39_11_1067","entrezGeneId":"100271517"},{"alias":"RPL39_12_1121","entrezGeneId":"100271518"},{"alias":"RPL39_12_1504","entrezGeneId":"100271519"},{"alias":"RPL39_14_1253","entrezGeneId":"100271520"},{"alias":"RPL39_14_1560","entrezGeneId":"100271521"},{"alias":"RPL39_15_1333","entrezGeneId":"100271522"},{"alias":"RPL39_15_1666","entrezGeneId":"100271523"},{"alias":"RPL39_16_1667","entrezGeneId":"100271524"},{"alias":"RPL39_17_1495","entrezGeneId":"100271525"},{"alias":"RPL39_17_1668","entrezGeneId":"100271526"},{"alias":"RPL39_18_1669","entrezGeneId":"100271528"},{"alias":"RPL39_19_1635","entrezGeneId":"100271529"},{"alias":"RPL39_19_1716","entrezGeneId":"100271530"},{"alias":"RPL39_21_1719","entrezGeneId":"100271531"},{"alias":"RPL39_22_1750","entrezGeneId":"100271532"},{"alias":"RPL7A_17_1050","entrezGeneId":"100271533"},{"alias":"RPL7A_18_1082","entrezGeneId":"100271534"},{"alias":"RPL7A_19_1118","entrezGeneId":"100271535"},{"alias":"RPL7A_21_1137","entrezGeneId":"100271536"},{"alias":"RPL7A_23_1164","entrezGeneId":"100271537"},{"alias":"RPL7A_25_1279","entrezGeneId":"100271538"},{"alias":"RPL7A_25_1330","entrezGeneId":"100271539"},{"alias":"RPL7A_29_1595","entrezGeneId":"100271542"},{"alias":"RPL7A_30_1522","entrezGeneId":"100271543"},{"alias":"RPL7A_31_1673","entrezGeneId":"100271545"},{"alias":"RPS10_10_1555","entrezGeneId":"100271546"},{"alias":"RPS10_11_1233","entrezGeneId":"100271547"},{"alias":"RPS10_11_1569","entrezGeneId":"100271548"},{"alias":"RPS12_10_1153","entrezGeneId":"100271549"},{"alias":"RPS12_11_1175","entrezGeneId":"100271550"},{"alias":"RPS12_12_1308","entrezGeneId":"100271551"},{"alias":"RPS12_13_1490","entrezGeneId":"100271552"},{"alias":"RPS12_14_1532","entrezGeneId":"100271553"},{"alias":"RPS12_15_1561","entrezGeneId":"100271555"},{"alias":"RPS12_16_1623","entrezGeneId":"100271556"},{"alias":"RPS15A_11_848","entrezGeneId":"100271557"},{"alias":"RPS15A_12_849","entrezGeneId":"100271558"},{"alias":"RPS20_13_1202","entrezGeneId":"100271560"},{"alias":"RPS20_14_1201","entrezGeneId":"100271561"},{"alias":"RPS20_14_1295","entrezGeneId":"100271562"},{"alias":"RPS20_15_1287","entrezGeneId":"100271563"},{"alias":"RPS20_16_1416","entrezGeneId":"100271564"},{"alias":"RPS20_17_1430","entrezGeneId":"100271565"},{"alias":"RPS20_18_1544","entrezGeneId":"100271566"},{"alias":"RPS26_13_1064","entrezGeneId":"100271567"},{"alias":"RPS26_14_1066","entrezGeneId":"100271568"},{"alias":"RPS26_16_1195","entrezGeneId":"100271569"},{"alias":"RPS26_17_1256","entrezGeneId":"100271570"},{"alias":"RPS26_22_1185","entrezGeneId":"100271571"},{"alias":"RPS26_23_1212","entrezGeneId":"100271572"},{"alias":"RPS26_26_1396","entrezGeneId":"100271574"},{"alias":"RPS26_27_1414","entrezGeneId":"100271575"},{"alias":"RPS26_28_1470","entrezGeneId":"100271576"},{"alias":"RPS26_29_1475","entrezGeneId":"100271577"},{"alias":"RPS27_11_1188","entrezGeneId":"100271581"},{"alias":"RPS27_12_1494","entrezGeneId":"100271583"},{"alias":"RPS27_14_1288","entrezGeneId":"100271584"},{"alias":"RPS27_15_1487","entrezGeneId":"100271585"},{"alias":"RPS27_16_1593","entrezGeneId":"100271586"},{"alias":"RPS29_15_1116","entrezGeneId":"100271587"},{"alias":"RPS29_17_1627","entrezGeneId":"100271588"},{"alias":"RPS29_18_1653","entrezGeneId":"100271589"},{"alias":"RPS29_19_1654","entrezGeneId":"100271590"},{"alias":"RPS29_20_1655","entrezGeneId":"100271591"},{"alias":"RPS29_21_1656","entrezGeneId":"100271592"},{"alias":"RPS3A_14_1056","entrezGeneId":"100271593"},{"alias":"RPS3A_17_1053","entrezGeneId":"100271594"},{"alias":"RPS3A_17_1152","entrezGeneId":"100271595"},{"alias":"RPS3A_19_1365","entrezGeneId":"100271596"},{"alias":"RPS3A_20_1165","entrezGeneId":"100271597"},{"alias":"RPS3A_23_1744","entrezGeneId":"100271600"},{"alias":"RPS3A_24_1646","entrezGeneId":"100271601"},{"alias":"RPL10A_8_1594","entrezGeneId":"100271602"},{"alias":"RPL13A_8_1193","entrezGeneId":"100271603"},{"alias":"RPL18A_7_1543","entrezGeneId":"100271604"},{"alias":"RPL27A_5_1310","entrezGeneId":"100271605"},{"alias":"RPL37A_4_1209","entrezGeneId":"100271606"},{"alias":"RPS15A_8_1098","entrezGeneId":"100271607"},{"alias":"RPL36A_16_1006","entrezGeneId":"100271610"},{"alias":"RPL36A_27_1803","entrezGeneId":"100271611"},{"alias":"RPL36A_28_1814","entrezGeneId":"100271612"},{"alias":"RPS15A_15_1003","entrezGeneId":"100271613"},{"alias":"RPL23A_23_1090","entrezGeneId":"100271616"},{"alias":"RPL23A_24_1177","entrezGeneId":"100271617"},{"alias":"RPL23A_25_1093","entrezGeneId":"100271618"},{"alias":"RPL23A_27_1353","entrezGeneId":"100271619"},{"alias":"RPL23A_30_1207","entrezGeneId":"100271620"},{"alias":"RPL23A_30_1480","entrezGeneId":"100271621"},{"alias":"RPL23A_31_1299","entrezGeneId":"100271622"},{"alias":"RPL23A_32_1304","entrezGeneId":"100271623"},{"alias":"RPL23A_34_1620","entrezGeneId":"100271624"},{"alias":"RPL23A_36_1508","entrezGeneId":"100271625"},{"alias":"RPL23A_39_1676","entrezGeneId":"100271626"},{"alias":"RPL23A_40_1702","entrezGeneId":"100271627"},{"alias":"RPL35A_11_1187","entrezGeneId":"100271630"},{"alias":"RPL35A_12_1042","entrezGeneId":"100271631"},{"alias":"RPL35A_12_1446","entrezGeneId":"100271632"},{"alias":"RPL35AP23","entrezGeneId":"100271633"},{"alias":"RPL35A_10_1045","entrezGeneId":"100271633"},{"alias":"RPL35A_13_1043","entrezGeneId":"100271633"},{"alias":"RPL35A_13_1491","entrezGeneId":"100271634"},{"alias":"RPL35A_14_1227","entrezGeneId":"100271635"},{"alias":"RPL35A_14_1534","entrezGeneId":"100271636"},{"alias":"RPL35A_15_1235","entrezGeneId":"100271637"},{"alias":"RPL35A_16_1237","entrezGeneId":"100271638"},{"alias":"RPL35A_17_1286","entrezGeneId":"100271639"},{"alias":"RPL35A_18_1321","entrezGeneId":"100271640"},{"alias":"RPL35A_19_1474","entrezGeneId":"100271641"},{"alias":"RPL36A_16_1155","entrezGeneId":"100271642"},{"alias":"RPL36A_17_1112","entrezGeneId":"100271643"},{"alias":"RPL36A_17_1248","entrezGeneId":"100271644"},{"alias":"RPL36A_18_1363","entrezGeneId":"100271645"},{"alias":"RPL36A_21_1460","entrezGeneId":"100271646"},{"alias":"RPL36A_22_1567","entrezGeneId":"100271647"},{"alias":"RPL36A_26_1671","entrezGeneId":"100271648"},{"alias":"RPS15A_10_1280","entrezGeneId":"100271649"},{"alias":"RPS15A_12_1675","entrezGeneId":"100271650"},{"alias":"RPS15A_13_1746","entrezGeneId":"100271651"},{"alias":"RPS15A_18_1130","entrezGeneId":"100271652"},{"alias":"RPS15A_21_1479","entrezGeneId":"100271654"},{"alias":"RPS15A_25_1749","entrezGeneId":"100271655"},{"alias":"CXDELp11.3","entrezGeneId":"100271686"},{"alias":"ENVV2","entrezGeneId":"100271846"},{"alias":"HERV-V2","entrezGeneId":"100271846"},{"alias":"RSRFR2","entrezGeneId":"100271849"},{"alias":"AIR","entrezGeneId":"100271873"},{"alias":"IGF2R-AS","entrezGeneId":"100271873"},{"alias":"IGF2R-AS1","entrezGeneId":"100271873"},{"alias":"IGF2RAS","entrezGeneId":"100271873"},{"alias":"NCRNA00088","entrezGeneId":"100271873"},{"alias":"C15DELq26qter","entrezGeneId":"100271921"},{"alias":"BFIC4","entrezGeneId":"100271922"},{"alias":"C6.1B","entrezGeneId":"100272147"},{"alias":"MTCP1","entrezGeneId":"100272147"},{"alias":"MTCP1B","entrezGeneId":"100272147"},{"alias":"MTCP1NB","entrezGeneId":"100272147"},{"alias":"p8","entrezGeneId":"100272147"},{"alias":"p8MTCP1","entrezGeneId":"100272147"},{"alias":"GOUT3","entrezGeneId":"100272224"},{"alias":"GOUT4","entrezGeneId":"100272225"},{"alias":"DEFB109","entrezGeneId":"100286963"},{"alias":"dJ994E9.3","entrezGeneId":"100286971"},{"alias":"DDX11L1","entrezGeneId":"100287029"},{"alias":"DDX11P","entrezGeneId":"100287029"},{"alias":"FAM90A26P","entrezGeneId":"100287045"},{"alias":"MTCL1-AS1","entrezGeneId":"100287082"},{"alias":"MTCL1AS1","entrezGeneId":"100287082"},{"alias":"Cos8","entrezGeneId":"100287084"},{"alias":"ZNF1","entrezGeneId":"100287084"},{"alias":"ZNF72","entrezGeneId":"100287084"},{"alias":"p46","entrezGeneId":"100287087"},{"alias":"ATP5LP5","entrezGeneId":"100287091"},{"alias":"IGHV1OR152","entrezGeneId":"100287128"},{"alias":"HSPD1-17P","entrezGeneId":"100287140"},{"alias":"FAM39E","entrezGeneId":"100287171"},{"alias":"WASH","entrezGeneId":"100287171"},{"alias":"WASH1","entrezGeneId":"100287171"},{"alias":"C19orf83","entrezGeneId":"100287177"},{"alias":"CSPG4P3","entrezGeneId":"100287261"},{"alias":"CSPG4P6Y","entrezGeneId":"100287261"},{"alias":"D84394.7","entrezGeneId":"100287272"},{"alias":"USP8P","entrezGeneId":"100287272"},{"alias":"NCRNA00265-2P","entrezGeneId":"100287296"},{"alias":"NCRNA00265B","entrezGeneId":"100287296"},{"alias":"lncRNA-MUF","entrezGeneId":"100287314"},{"alias":"PRSS46","entrezGeneId":"100287362"},{"alias":"TESSP6","entrezGeneId":"100287362"},{"alias":"IGHV3OR1613","entrezGeneId":"100287372"},{"alias":"NCRNA00265-3P","entrezGeneId":"100287470"},{"alias":"NCRNA00265C","entrezGeneId":"100287470"},{"alias":"TCEB1P28","entrezGeneId":"100287483"},{"alias":"CSPG4P4","entrezGeneId":"100287502"},{"alias":"CSPG4P7Y","entrezGeneId":"100287502"},{"alias":"GLYATL1P3","entrezGeneId":"100287520"},{"alias":"IGLL4","entrezGeneId":"100287528"},{"alias":"NCRNA00173","entrezGeneId":"100287569"},{"alias":"TCEB1P22","entrezGeneId":"100287579"},{"alias":"psiSSX10","entrezGeneId":"100287603"},{"alias":"EXTL2P","entrezGeneId":"100287682"},{"alias":"TCEB1P24","entrezGeneId":"100287692"},{"alias":"TCEB1P25","entrezGeneId":"100287692"},{"alias":"pFIV","entrezGeneId":"100287735"},{"alias":"ATP5G1P4","entrezGeneId":"100287755"},{"alias":"RBMY1G","entrezGeneId":"100287769"},{"alias":"TCEB1P20","entrezGeneId":"100287778"},{"alias":"NCRNA00266-2P","entrezGeneId":"100287785"},{"alias":"NCRNA00266B","entrezGeneId":"100287785"},{"alias":"NCRNA00266Y","entrezGeneId":"100287785"},{"alias":"NCRNA00266Y1","entrezGeneId":"100287785"},{"alias":"bcm1723","entrezGeneId":"100287880"},{"alias":"NDUFA4L","entrezGeneId":"100287880"},{"alias":"FWP004","entrezGeneId":"100287887"},{"alias":"RPL13A_11_1314","entrezGeneId":"100287887"},{"alias":"S863-4","entrezGeneId":"100287887"},{"alias":"TIM23","entrezGeneId":"100287932"},{"alias":"GM140","entrezGeneId":"100287948"},{"alias":"ATP5LP7","entrezGeneId":"100287964"},{"alias":"CCDC165P1","entrezGeneId":"100288130"},{"alias":"SOGA2P1","entrezGeneId":"100288130"},{"alias":"UC011CLY.2","entrezGeneId":"100288152"},{"alias":"PPIAP","entrezGeneId":"100288185"},{"alias":"ATP5G1P8","entrezGeneId":"100288222"},{"alias":"RPL10P","entrezGeneId":"100288252"},{"alias":"RPL10_7_1723","entrezGeneId":"100288252"},{"alias":"KAP22.2","entrezGeneId":"100288287"},{"alias":"USMG5P1","entrezGeneId":"100288307"},{"alias":"NPIP","entrezGeneId":"100288332"},{"alias":"D-X","entrezGeneId":"100288380"},{"alias":"FAM7A2","entrezGeneId":"100288380"},{"alias":"COLEC6","entrezGeneId":"100288405"},{"alias":"SFTPAP1","entrezGeneId":"100288405"},{"alias":"SFTPP1","entrezGeneId":"100288405"},{"alias":"envMER34","entrezGeneId":"100288413"},{"alias":"HEMO","entrezGeneId":"100288413"},{"alias":"IFNAR2-AS1","entrezGeneId":"100288432"},{"alias":"IL10RB-AS1","entrezGeneId":"100288432"},{"alias":"COX5BL5","entrezGeneId":"100288440"},{"alias":"HN7","entrezGeneId":"100288485"},{"alias":"TCEB1P5","entrezGeneId":"100288493"},{"alias":"NCRNA00268-2P","entrezGeneId":"100288610"},{"alias":"NCRNA00268B","entrezGeneId":"100288610"},{"alias":"WHDC1P1","entrezGeneId":"100288615"},{"alias":"DUX4L","entrezGeneId":"100288687"},{"alias":"HMGN2L8","entrezGeneId":"100288691"},{"alias":"LIMS3L","entrezGeneId":"100288695"},{"alias":"ARL6IPP1","entrezGeneId":"100288702"},{"alias":"DUX4C","entrezGeneId":"100288711"},{"alias":"PMS2L10","entrezGeneId":"100288713"},{"alias":"PMSR4","entrezGeneId":"100288713"},{"alias":"bA317E16.4","entrezGeneId":"100288742"},{"alias":"H2BFVP","entrezGeneId":"100288742"},{"alias":"CCT7-1P","entrezGeneId":"100288772"},{"alias":"HYDINP1","entrezGeneId":"100288805"},{"alias":"BRD7P","entrezGeneId":"100288948"},{"alias":"TESSP3","entrezGeneId":"100288960"},{"alias":"FABP5L5","entrezGeneId":"100288964"},{"alias":"MOXD2","entrezGeneId":"100289017"},{"alias":"CYB5P5","entrezGeneId":"100289051"},{"alias":"FAM27E1","entrezGeneId":"100289124"},{"alias":"FAM197Y5P","entrezGeneId":"100289150"},{"alias":"GS1-259H13.2","entrezGeneId":"100289187"},{"alias":"FAM197Y4P","entrezGeneId":"100289188"},{"alias":"LINC00675","entrezGeneId":"100289255"},{"alias":"FAM197Y1P","entrezGeneId":"100289265"},{"alias":"DNAJC3-AS1","entrezGeneId":"100289274"},{"alias":"NUPL1P1","entrezGeneId":"100289295"},{"alias":"MAN1B1-AS1","entrezGeneId":"100289341"},{"alias":"NP","entrezGeneId":"100289419"},{"alias":"ARPAT","entrezGeneId":"100289450"},{"alias":"DEFB4P","entrezGeneId":"100289462"},{"alias":"LDHBL1","entrezGeneId":"100289475"},{"alias":"dJ45P21.6","entrezGeneId":"100289545"},{"alias":"H3F3AP1","entrezGeneId":"100289545"},{"alias":"p36","entrezGeneId":"100289545"},{"alias":"D16F37S5","entrezGeneId":"100289574"},{"alias":"bA748L13.4","entrezGeneId":"100289619"},{"alias":"C10orf135","entrezGeneId":"100289619"},{"alias":"HERV-H/F","entrezGeneId":"100289683"},{"alias":"hsa-mir-1184","entrezGeneId":"100302111"},{"alias":"hsa-mir-1184-1","entrezGeneId":"100302111"},{"alias":"MIR1184","entrezGeneId":"100302111"},{"alias":"MIRN1184","entrezGeneId":"100302111"},{"alias":"hsa-mir-1284","entrezGeneId":"100302112"},{"alias":"mir-1284","entrezGeneId":"100302112"},{"alias":"MIRN1284","entrezGeneId":"100302112"},{"alias":"hsa-mir-1200","entrezGeneId":"100302113"},{"alias":"MIRN1200","entrezGeneId":"100302113"},{"alias":"hsa-mir-513c","entrezGeneId":"100302114"},{"alias":"MIRN513C","entrezGeneId":"100302114"},{"alias":"hsa-mir-1468","entrezGeneId":"100302115"},{"alias":"mir-1468","entrezGeneId":"100302115"},{"alias":"MIRN1468","entrezGeneId":"100302115"},{"alias":"hsa-mir-1265","entrezGeneId":"100302116"},{"alias":"MIRN1265","entrezGeneId":"100302116"},{"alias":"hsa-mir-320b-1","entrezGeneId":"100302117"},{"alias":"mir-320b-1","entrezGeneId":"100302117"},{"alias":"MIR320B-1","entrezGeneId":"100302117"},{"alias":"MIRN320B1","entrezGeneId":"100302117"},{"alias":"hsa-mir-1286","entrezGeneId":"100302118"},{"alias":"mir-1286","entrezGeneId":"100302118"},{"alias":"MIRN1286","entrezGeneId":"100302118"},{"alias":"hsa-mir-1538","entrezGeneId":"100302119"},{"alias":"MIRN1538","entrezGeneId":"100302119"},{"alias":"hsa-mir-1276","entrezGeneId":"100302121"},{"alias":"mir-1276","entrezGeneId":"100302121"},{"alias":"MIRN1276","entrezGeneId":"100302121"},{"alias":"hsa-mir-1183","entrezGeneId":"100302122"},{"alias":"MIRN1183","entrezGeneId":"100302122"},{"alias":"hsa-mir-1275","entrezGeneId":"100302123"},{"alias":"mir-1275","entrezGeneId":"100302123"},{"alias":"MIRN1275","entrezGeneId":"100302123"},{"alias":"hsa-mir-1288","entrezGeneId":"100302124"},{"alias":"MIRN1288","entrezGeneId":"100302124"},{"alias":"hsa-mir-1289-1","entrezGeneId":"100302125"},{"alias":"MIRN1289-1","entrezGeneId":"100302125"},{"alias":"hsa-mir-1471","entrezGeneId":"100302126"},{"alias":"MIRN1471","entrezGeneId":"100302126"},{"alias":"hsa-mir-1470","entrezGeneId":"100302127"},{"alias":"MIRN1470","entrezGeneId":"100302127"},{"alias":"hsa-mir-1302-3","entrezGeneId":"100302128"},{"alias":"MIRN1302-3","entrezGeneId":"100302128"},{"alias":"hsa-mir-1915","entrezGeneId":"100302129"},{"alias":"MIRN1915","entrezGeneId":"100302129"},{"alias":"hsa-mir-1302-4","entrezGeneId":"100302130"},{"alias":"MIRN1302-4","entrezGeneId":"100302130"},{"alias":"hsa-mir-302f","entrezGeneId":"100302131"},{"alias":"MIRN302F","entrezGeneId":"100302131"},{"alias":"hsa-mir-1182","entrezGeneId":"100302132"},{"alias":"MIRN1182","entrezGeneId":"100302132"},{"alias":"hsa-mir-1287","entrezGeneId":"100302133"},{"alias":"mir-1287","entrezGeneId":"100302133"},{"alias":"MIRN1287","entrezGeneId":"100302133"},{"alias":"hsa-mir-1289-2","entrezGeneId":"100302134"},{"alias":"MIRN1289-2","entrezGeneId":"100302134"},{"alias":"hsa-mir-320c-1","entrezGeneId":"100302135"},{"alias":"mir-320c-1","entrezGeneId":"100302135"},{"alias":"MIR320C-1","entrezGeneId":"100302135"},{"alias":"MIRN320C1","entrezGeneId":"100302135"},{"alias":"hsa-mir-1252","entrezGeneId":"100302136"},{"alias":"MIRN1252","entrezGeneId":"100302136"},{"alias":"hsa-mir-1914","entrezGeneId":"100302137"},{"alias":"MIRN1914","entrezGeneId":"100302137"},{"alias":"hsa-mir-1292","entrezGeneId":"100302138"},{"alias":"mir-1292","entrezGeneId":"100302138"},{"alias":"MIRN1292","entrezGeneId":"100302138"},{"alias":"hsa-mir-1537","entrezGeneId":"100302139"},{"alias":"mir-1537","entrezGeneId":"100302139"},{"alias":"MIRN1537","entrezGeneId":"100302139"},{"alias":"hsa-mir-1302-6","entrezGeneId":"100302140"},{"alias":"MIRN1302-6","entrezGeneId":"100302140"},{"alias":"hsa-mir-1913","entrezGeneId":"100302141"},{"alias":"MIRN1913","entrezGeneId":"100302141"},{"alias":"hsa-mir-1246","entrezGeneId":"100302142"},{"alias":"MIRN1246","entrezGeneId":"100302142"},{"alias":"hsa-mir-1248","entrezGeneId":"100302143"},{"alias":"mir-1248","entrezGeneId":"100302143"},{"alias":"MIRN1248","entrezGeneId":"100302143"},{"alias":"hsa-mir-1912","entrezGeneId":"100302144"},{"alias":"mir-1912","entrezGeneId":"100302144"},{"alias":"MIRN1912","entrezGeneId":"100302144"},{"alias":"hsa-mir-1247","entrezGeneId":"100302145"},{"alias":"mir-1247","entrezGeneId":"100302145"},{"alias":"MIRN1247","entrezGeneId":"100302145"},{"alias":"hsa-mir-1302-5","entrezGeneId":"100302146"},{"alias":"MIRN1302-5","entrezGeneId":"100302146"},{"alias":"hsa-mir-1302-7","entrezGeneId":"100302147"},{"alias":"MIRN1302-7","entrezGeneId":"100302147"},{"alias":"hsa-mir-1263","entrezGeneId":"100302148"},{"alias":"MIRN1263","entrezGeneId":"100302148"},{"alias":"hsa-mir-1249","entrezGeneId":"100302149"},{"alias":"MIRN1249","entrezGeneId":"100302149"},{"alias":"hsa-mir-1296","entrezGeneId":"100302150"},{"alias":"mir-1296","entrezGeneId":"100302150"},{"alias":"MIRN1296","entrezGeneId":"100302150"},{"alias":"hsa-mir-548n","entrezGeneId":"100302152"},{"alias":"MIRN548N","entrezGeneId":"100302152"},{"alias":"hsa-mir-1298","entrezGeneId":"100302153"},{"alias":"MIRN1298","entrezGeneId":"100302153"},{"alias":"hsa-mir-1256","entrezGeneId":"100302155"},{"alias":"MIRN1256","entrezGeneId":"100302155"},{"alias":"hsa-mir-1229","entrezGeneId":"100302156"},{"alias":"MIRN1229","entrezGeneId":"100302156"},{"alias":"hsa-mir-1185-1","entrezGeneId":"100302157"},{"alias":"mir-1185-1","entrezGeneId":"100302157"},{"alias":"MIRN1185-1","entrezGeneId":"100302157"},{"alias":"hsa-mir-1231","entrezGeneId":"100302158"},{"alias":"MIRN1231","entrezGeneId":"100302158"},{"alias":"hsa-mir-548f-3","entrezGeneId":"100302159"},{"alias":"MIR548F-3","entrezGeneId":"100302159"},{"alias":"MIRN548F3","entrezGeneId":"100302159"},{"alias":"hsa-mir-1233","entrezGeneId":"100302160"},{"alias":"hsa-mir-1233-1","entrezGeneId":"100302160"},{"alias":"MIR1233","entrezGeneId":"100302160"},{"alias":"MIRN1233","entrezGeneId":"100302160"},{"alias":"hsa-mir-1205","entrezGeneId":"100302161"},{"alias":"MIRN1205","entrezGeneId":"100302161"},{"alias":"hsa-mir-1278","entrezGeneId":"100302163"},{"alias":"mir-1278","entrezGeneId":"100302163"},{"alias":"MIRN1278","entrezGeneId":"100302163"},{"alias":"hsa-mir-2113","entrezGeneId":"100302164"},{"alias":"hsa-mir-1322","entrezGeneId":"100302166"},{"alias":"MIRN1322","entrezGeneId":"100302166"},{"alias":"hsa-mir-1299","entrezGeneId":"100302167"},{"alias":"MIRN1299","entrezGeneId":"100302167"},{"alias":"hsa-mir-1257","entrezGeneId":"100302168"},{"alias":"MIRN1257","entrezGeneId":"100302168"},{"alias":"hsa-mir-320d-2","entrezGeneId":"100302169"},{"alias":"mir-320d-2","entrezGeneId":"100302169"},{"alias":"MIR320D-2","entrezGeneId":"100302169"},{"alias":"MIRN320D2","entrezGeneId":"100302169"},{"alias":"hsa-mir-1206","entrezGeneId":"100302170"},{"alias":"MIRN1206","entrezGeneId":"100302170"},{"alias":"hsa-mir-1321","entrezGeneId":"100302171"},{"alias":"MIRN1321","entrezGeneId":"100302171"},{"alias":"hsa-mir-1258","entrezGeneId":"100302172"},{"alias":"mir-1258","entrezGeneId":"100302172"},{"alias":"MIRN1258","entrezGeneId":"100302172"},{"alias":"hsa-mir-1307","entrezGeneId":"100302174"},{"alias":"mir-1307","entrezGeneId":"100302174"},{"alias":"MIRN1307","entrezGeneId":"100302174"},{"alias":"hsa-mir-1207","entrezGeneId":"100302175"},{"alias":"MIRN1207","entrezGeneId":"100302175"},{"alias":"hsa-mir-1269","entrezGeneId":"100302177"},{"alias":"hsa-mir-1269a","entrezGeneId":"100302177"},{"alias":"MIR1269","entrezGeneId":"100302177"},{"alias":"MIRN1269","entrezGeneId":"100302177"},{"alias":"hsa-mir-1295","entrezGeneId":"100302178"},{"alias":"hsa-mir-1295a","entrezGeneId":"100302178"},{"alias":"mir-1295a","entrezGeneId":"100302178"},{"alias":"MIR1295","entrezGeneId":"100302178"},{"alias":"MIRN1295","entrezGeneId":"100302178"},{"alias":"hsa-mir-1270","entrezGeneId":"100302179"},{"alias":"hsa-mir-1270-1","entrezGeneId":"100302179"},{"alias":"mir-1270","entrezGeneId":"100302179"},{"alias":"MIR1270-1","entrezGeneId":"100302179"},{"alias":"MIR1270-2","entrezGeneId":"100302179"},{"alias":"MIRN1270","entrezGeneId":"100302179"},{"alias":"hsa-mir-1294","entrezGeneId":"100302181"},{"alias":"mir-1294","entrezGeneId":"100302181"},{"alias":"MIRN1294","entrezGeneId":"100302181"},{"alias":"hsa-mir-1279","entrezGeneId":"100302182"},{"alias":"MIRN1279","entrezGeneId":"100302182"},{"alias":"hsa-mir-1825","entrezGeneId":"100302183"},{"alias":"MIRN1825","entrezGeneId":"100302183"},{"alias":"hsa-mir-1272","entrezGeneId":"100302184"},{"alias":"mir-1272","entrezGeneId":"100302184"},{"alias":"MIRN1272","entrezGeneId":"100302184"},{"alias":"hsa-mir-1204","entrezGeneId":"100302185"},{"alias":"hsa-mir-548i-3","entrezGeneId":"100302186"},{"alias":"mir-548i-3","entrezGeneId":"100302186"},{"alias":"MIR548I-3","entrezGeneId":"100302186"},{"alias":"MIRN548I3","entrezGeneId":"100302186"},{"alias":"hsa-mir-1297","entrezGeneId":"100302187"},{"alias":"mir-1297","entrezGeneId":"100302187"},{"alias":"MIRN1297","entrezGeneId":"100302187"},{"alias":"hsa-mir-1243","entrezGeneId":"100302188"},{"alias":"MIRN1243","entrezGeneId":"100302188"},{"alias":"hsa-mir-1976","entrezGeneId":"100302190"},{"alias":"hsa-mir-548i-4","entrezGeneId":"100302191"},{"alias":"MIR548I-4","entrezGeneId":"100302191"},{"alias":"MIRN548I4","entrezGeneId":"100302191"},{"alias":"hsa-mir-548f-1","entrezGeneId":"100302192"},{"alias":"MIR548F-1","entrezGeneId":"100302192"},{"alias":"MIRN548F1","entrezGeneId":"100302192"},{"alias":"hsa-mir-1255a","entrezGeneId":"100302193"},{"alias":"MIRN1255A","entrezGeneId":"100302193"},{"alias":"hsa-mir-320c-2","entrezGeneId":"100302195"},{"alias":"mir-320c-2","entrezGeneId":"100302195"},{"alias":"MIR320C-2","entrezGeneId":"100302195"},{"alias":"MIRN320C2","entrezGeneId":"100302195"},{"alias":"hsa-mir-1234","entrezGeneId":"100302196"},{"alias":"MIRN1234","entrezGeneId":"100302196"},{"alias":"hsa-mir-1306","entrezGeneId":"100302197"},{"alias":"mir-1306","entrezGeneId":"100302197"},{"alias":"MIRN1306","entrezGeneId":"100302197"},{"alias":"hsa-mir-1228","entrezGeneId":"100302201"},{"alias":"mir-1228","entrezGeneId":"100302201"},{"alias":"MIRN1228","entrezGeneId":"100302201"},{"alias":"hsa-mir-1266","entrezGeneId":"100302202"},{"alias":"mir-1266","entrezGeneId":"100302202"},{"alias":"MIRN1266","entrezGeneId":"100302202"},{"alias":"hsa-mir-1271","entrezGeneId":"100302203"},{"alias":"MIRN1271","entrezGeneId":"100302203"},{"alias":"hsa-mir-548i-1","entrezGeneId":"100302204"},{"alias":"mir-548i-1","entrezGeneId":"100302204"},{"alias":"MIR548I-1","entrezGeneId":"100302204"},{"alias":"MIRN548I1","entrezGeneId":"100302204"},{"alias":"hsa-mir-1283-2","entrezGeneId":"100302205"},{"alias":"mir-1283-2","entrezGeneId":"100302205"},{"alias":"MIRN1283-2","entrezGeneId":"100302205"},{"alias":"hsa-mir-1253","entrezGeneId":"100302208"},{"alias":"MIRN1253","entrezGeneId":"100302208"},{"alias":"hsa-mir-1185-2","entrezGeneId":"100302209"},{"alias":"mir-1185-2","entrezGeneId":"100302209"},{"alias":"MIRN1185-2","entrezGeneId":"100302209"},{"alias":"hsa-mir-1909","entrezGeneId":"100302210"},{"alias":"mir-1909","entrezGeneId":"100302210"},{"alias":"MIRN1909","entrezGeneId":"100302210"},{"alias":"hsa-mir-1203","entrezGeneId":"100302211"},{"alias":"MIRN1203","entrezGeneId":"100302211"},{"alias":"hsa-mir-1324","entrezGeneId":"100302212"},{"alias":"MIRN1324","entrezGeneId":"100302212"},{"alias":"hsa-mir-1181","entrezGeneId":"100302213"},{"alias":"MIRN1181","entrezGeneId":"100302213"},{"alias":"hsa-mir-1277","entrezGeneId":"100302214"},{"alias":"MIRN1277","entrezGeneId":"100302214"},{"alias":"hsa-mir-1827","entrezGeneId":"100302217"},{"alias":"MIRN1827","entrezGeneId":"100302217"},{"alias":"hsa-mir-1285-1","entrezGeneId":"100302218"},{"alias":"MIRN1285-1","entrezGeneId":"100302218"},{"alias":"hsa-mir-1245","entrezGeneId":"100302219"},{"alias":"hsa-mir-1245a","entrezGeneId":"100302219"},{"alias":"mir-1245a","entrezGeneId":"100302219"},{"alias":"MIR1245","entrezGeneId":"100302219"},{"alias":"MIRN1245","entrezGeneId":"100302219"},{"alias":"hsa-mir-1293","entrezGeneId":"100302220"},{"alias":"mir-1293","entrezGeneId":"100302220"},{"alias":"MIRN1293","entrezGeneId":"100302220"},{"alias":"hsa-mir-1291","entrezGeneId":"100302221"},{"alias":"mir-1291","entrezGeneId":"100302221"},{"alias":"MIRN1291","entrezGeneId":"100302221"},{"alias":"hsa-mir-1911","entrezGeneId":"100302222"},{"alias":"mir-1911","entrezGeneId":"100302222"},{"alias":"MIRN1911","entrezGeneId":"100302222"},{"alias":"hsa-mir-1302-8","entrezGeneId":"100302223"},{"alias":"MIRN1302-8","entrezGeneId":"100302223"},{"alias":"hsa-mir-2110","entrezGeneId":"100302224"},{"alias":"mir-2110","entrezGeneId":"100302224"},{"alias":"hsa-mir-2053","entrezGeneId":"100302225"},{"alias":"hsa-mir-1238","entrezGeneId":"100302226"},{"alias":"MIRN1238","entrezGeneId":"100302226"},{"alias":"hsa-mir-1302-1","entrezGeneId":"100302227"},{"alias":"MIRN1302-1","entrezGeneId":"100302227"},{"alias":"hsa-mir-1261","entrezGeneId":"100302228"},{"alias":"MIRN1261","entrezGeneId":"100302228"},{"alias":"hsa-mir-1250","entrezGeneId":"100302229"},{"alias":"mir-1250","entrezGeneId":"100302229"},{"alias":"MIRN1250","entrezGeneId":"100302229"},{"alias":"hsa-mir-1226","entrezGeneId":"100302232"},{"alias":"mir-1226","entrezGeneId":"100302232"},{"alias":"MIRN1226","entrezGeneId":"100302232"},{"alias":"hsa-mir-1268","entrezGeneId":"100302233"},{"alias":"hsa-mir-1268a","entrezGeneId":"100302233"},{"alias":"MIR1268","entrezGeneId":"100302233"},{"alias":"MIRN1268","entrezGeneId":"100302233"},{"alias":"hsa-mir-664","entrezGeneId":"100302234"},{"alias":"hsa-mir-664a","entrezGeneId":"100302234"},{"alias":"mir-664a","entrezGeneId":"100302234"},{"alias":"MIR664","entrezGeneId":"100302234"},{"alias":"MIRN664","entrezGeneId":"100302234"},{"alias":"hsa-mir-1179","entrezGeneId":"100302235"},{"alias":"mir-1179","entrezGeneId":"100302235"},{"alias":"MIRN1179","entrezGeneId":"100302235"},{"alias":"hsa-mir-1260","entrezGeneId":"100302236"},{"alias":"hsa-mir-1260a","entrezGeneId":"100302236"},{"alias":"mir-1260a","entrezGeneId":"100302236"},{"alias":"MIR1260","entrezGeneId":"100302236"},{"alias":"MIRN1260","entrezGeneId":"100302236"},{"alias":"hsa-mir-1281","entrezGeneId":"100302237"},{"alias":"MIRN1281","entrezGeneId":"100302237"},{"alias":"hsa-mir-103-1-as","entrezGeneId":"100302238"},{"alias":"MIR103-1AS","entrezGeneId":"100302238"},{"alias":"MIRN103-1AS","entrezGeneId":"100302238"},{"alias":"hsa-mir-548f-5","entrezGeneId":"100302239"},{"alias":"MIR548F-5","entrezGeneId":"100302239"},{"alias":"MIRN548F5","entrezGeneId":"100302239"},{"alias":"hsa-mir-1304","entrezGeneId":"100302240"},{"alias":"MIRN1304","entrezGeneId":"100302240"},{"alias":"hsa-mir-1236","entrezGeneId":"100302242"},{"alias":"MIRN1236","entrezGeneId":"100302242"},{"alias":"hsa-mir-1972","entrezGeneId":"100302243"},{"alias":"hsa-mir-1972-1","entrezGeneId":"100302243"},{"alias":"MIR1972","entrezGeneId":"100302243"},{"alias":"hsa-mir-1301","entrezGeneId":"100302246"},{"alias":"mir-1301","entrezGeneId":"100302246"},{"alias":"MIRN1301","entrezGeneId":"100302246"},{"alias":"hsa-mir-1197","entrezGeneId":"100302250"},{"alias":"mir-1197","entrezGeneId":"100302250"},{"alias":"MIRN1197","entrezGeneId":"100302250"},{"alias":"hsa-mir-1264","entrezGeneId":"100302251"},{"alias":"MIRN1264","entrezGeneId":"100302251"},{"alias":"hsa-mir-1282","entrezGeneId":"100302254"},{"alias":"MIRN1282","entrezGeneId":"100302254"},{"alias":"hsa-mir-1323","entrezGeneId":"100302255"},{"alias":"mir-1323","entrezGeneId":"100302255"},{"alias":"MIRN1323","entrezGeneId":"100302255"},{"alias":"hsa-mir-1180","entrezGeneId":"100302256"},{"alias":"mir-1180","entrezGeneId":"100302256"},{"alias":"MIRN1180","entrezGeneId":"100302256"},{"alias":"hsa-mir-1539","entrezGeneId":"100302257"},{"alias":"MIRN1539","entrezGeneId":"100302257"},{"alias":"hsa-mir-1469","entrezGeneId":"100302258"},{"alias":"MIRN1469","entrezGeneId":"100302258"},{"alias":"hsa-mir-1202","entrezGeneId":"100302259"},{"alias":"MIRN1202","entrezGeneId":"100302259"},{"alias":"hsa-mir-2052","entrezGeneId":"100302260"},{"alias":"hsa-mir-1910","entrezGeneId":"100302261"},{"alias":"mir-1910","entrezGeneId":"100302261"},{"alias":"MIRN1910","entrezGeneId":"100302261"},{"alias":"hsa-mir-1908","entrezGeneId":"100302263"},{"alias":"mir-1908","entrezGeneId":"100302263"},{"alias":"MIRN1908","entrezGeneId":"100302263"},{"alias":"hsa-mir-1283-1","entrezGeneId":"100302265"},{"alias":"mir-1283-1","entrezGeneId":"100302265"},{"alias":"MIRN1283-1","entrezGeneId":"100302265"},{"alias":"hsa-mir-2054","entrezGeneId":"100302267"},{"alias":"hsa-mir-1285-2","entrezGeneId":"100302268"},{"alias":"MIRN1285-2","entrezGeneId":"100302268"},{"alias":"hsa-mir-1305","entrezGeneId":"100302270"},{"alias":"mir-1305","entrezGeneId":"100302270"},{"alias":"MIRN1305","entrezGeneId":"100302270"},{"alias":"hsa-mir-1178","entrezGeneId":"100302274"},{"alias":"MIRN1178","entrezGeneId":"100302274"},{"alias":"hsa-mir-548l","entrezGeneId":"100302275"},{"alias":"MIRN548L","entrezGeneId":"100302275"},{"alias":"hsa-mir-1290","entrezGeneId":"100302276"},{"alias":"MIRN1290","entrezGeneId":"100302276"},{"alias":"hsa-mir-548i-2","entrezGeneId":"100302277"},{"alias":"mir-548i-2","entrezGeneId":"100302277"},{"alias":"MIR548I-2","entrezGeneId":"100302277"},{"alias":"MIRN548I2","entrezGeneId":"100302277"},{"alias":"hsa-mir-1302-2","entrezGeneId":"100302278"},{"alias":"MIRN1302-2","entrezGeneId":"100302278"},{"alias":"hsa-mir-1262","entrezGeneId":"100302279"},{"alias":"mir-1262","entrezGeneId":"100302279"},{"alias":"MIRN1262","entrezGeneId":"100302279"},{"alias":"hsa-mir-1237","entrezGeneId":"100302280"},{"alias":"MIRN1237","entrezGeneId":"100302280"},{"alias":"hsa-mir-1208","entrezGeneId":"100302281"},{"alias":"MIRN1208","entrezGeneId":"100302281"},{"alias":"hsa-mir-103-2-as","entrezGeneId":"100302282"},{"alias":"MIR103-2-AS","entrezGeneId":"100302282"},{"alias":"MIR103-2AS","entrezGeneId":"100302282"},{"alias":"MIRN103-2AS","entrezGeneId":"100302282"},{"alias":"hsa-mir-1227","entrezGeneId":"100302283"},{"alias":"mir-1227","entrezGeneId":"100302283"},{"alias":"MIRN1227","entrezGeneId":"100302283"},{"alias":"hsa-mir-1303","entrezGeneId":"100302284"},{"alias":"MIRN1303","entrezGeneId":"100302284"},{"alias":"hsa-mir-1244","entrezGeneId":"100302285"},{"alias":"hsa-mir-1244-1","entrezGeneId":"100302285"},{"alias":"MIR1244","entrezGeneId":"100302285"},{"alias":"MIRN1244","entrezGeneId":"100302285"},{"alias":"hsa-mir-1267","entrezGeneId":"100302286"},{"alias":"MIRN1267","entrezGeneId":"100302286"},{"alias":"hsa-mir-548h-3","entrezGeneId":"100302287"},{"alias":"MIR548H-3","entrezGeneId":"100302287"},{"alias":"MIRN548H3","entrezGeneId":"100302287"},{"alias":"hsa-mir-548p","entrezGeneId":"100302288"},{"alias":"MIRN548P","entrezGeneId":"100302288"},{"alias":"hsa-mir-1251","entrezGeneId":"100302289"},{"alias":"MIRN1251","entrezGeneId":"100302289"},{"alias":"hsa-mir-1973","entrezGeneId":"100302290"},{"alias":"mir-1973","entrezGeneId":"100302290"},{"alias":"EE","entrezGeneId":"100302511"},{"alias":"NCRNA00197","entrezGeneId":"100302522"},{"alias":"PTCSC","entrezGeneId":"100302522"},{"alias":"MICRODELXq28","entrezGeneId":"100302680"},{"alias":"DLG2-AS","entrezGeneId":"100302690"},{"alias":"DLG2AS","entrezGeneId":"100302690"},{"alias":"PSZA11q14","entrezGeneId":"100302690"},{"alias":"SZ-1","entrezGeneId":"100302690"},{"alias":"HANC","entrezGeneId":"100302691"},{"alias":"NCRNA00184","entrezGeneId":"100302691"},{"alias":"LINC00182","entrezGeneId":"100302692"},{"alias":"MIR374AHG","entrezGeneId":"100302692"},{"alias":"NCRNA00182","entrezGeneId":"100302692"},{"alias":"DEL17q24","entrezGeneId":"100302716"},{"alias":"CATC3","entrezGeneId":"100302720"},{"alias":"RNU6-21","entrezGeneId":"100302738"},{"alias":"PCNA-AS","entrezGeneId":"100302739"},{"alias":"PCNAAS","entrezGeneId":"100302739"},{"alias":"FAS-AS","entrezGeneId":"100302740"},{"alias":"FASAS","entrezGeneId":"100302740"},{"alias":"SAF","entrezGeneId":"100302740"},{"alias":"RNU6-15","entrezGeneId":"100302741"},{"alias":"RNU6-42","entrezGeneId":"100302742"},{"alias":"ACA67B","entrezGeneId":"100302743"},{"alias":"ncR-uPAR","entrezGeneId":"100302746"},{"alias":"NCRNA00193","entrezGeneId":"100302746"},{"alias":"ZEB2-AS","entrezGeneId":"100303491"},{"alias":"ZEB2AS","entrezGeneId":"100303491"},{"alias":"ZEB2NAT","entrezGeneId":"100303491"},{"alias":"CSRP2BP","entrezGeneId":"100303755"},{"alias":"C19DELq13.11","entrezGeneId":"100306978"},{"alias":"C19DELq13.11d","entrezGeneId":"100306978"},{"alias":"OTX2OS1","entrezGeneId":"100309464"},{"alias":"CXDUPp11.23p11.22","entrezGeneId":"100310754"},{"alias":"SPDYE2L","entrezGeneId":"100310812"},{"alias":"IGKJRBP1","entrezGeneId":"100310842"},{"alias":"RBPSUHP1","entrezGeneId":"100310842"},{"alias":"VN1R50P","entrezGeneId":"100312799"},{"alias":"FKSG41","entrezGeneId":"100312848"},{"alias":"IGKV1/OR-118","entrezGeneId":"100312985"},{"alias":"IGKV1/OR15-118","entrezGeneId":"100312985"},{"alias":"IGKV1OR118","entrezGeneId":"100312985"},{"alias":"IGKVP2","entrezGeneId":"100312985"},{"alias":"mir-320b-2","entrezGeneId":"100313769"},{"alias":"MIR320B-2","entrezGeneId":"100313769"},{"alias":"MIRN320B2","entrezGeneId":"100313769"},{"alias":"MIRN548K","entrezGeneId":"100313770"},{"alias":"hsa-mir-548f-2","entrezGeneId":"100313771"},{"alias":"MIR548F-2","entrezGeneId":"100313771"},{"alias":"MIRN548F2","entrezGeneId":"100313771"},{"alias":"MIRN548M","entrezGeneId":"100313772"},{"alias":"MIR548H-2","entrezGeneId":"100313773"},{"alias":"MIRN548H2","entrezGeneId":"100313773"},{"alias":"MIRN302E","entrezGeneId":"100313774"},{"alias":"hsa-mir-670","entrezGeneId":"100313777"},{"alias":"hsa-mir-759","entrezGeneId":"100313778"},{"alias":"mir-2278","entrezGeneId":"100313780"},{"alias":"hsa-mir-718","entrezGeneId":"100313781"},{"alias":"MIR1255B-1","entrezGeneId":"100313806"},{"alias":"MIRN1255B1","entrezGeneId":"100313806"},{"alias":"MIRN513B","entrezGeneId":"100313822"},{"alias":"mir-663b","entrezGeneId":"100313824"},{"alias":"MIRN663B","entrezGeneId":"100313824"},{"alias":"MIRN548O","entrezGeneId":"100313829"},{"alias":"MIR548H-1","entrezGeneId":"100313830"},{"alias":"MIRN548H1","entrezGeneId":"100313830"},{"alias":"hsa-mir-1255b-2","entrezGeneId":"100313835"},{"alias":"MIR1255B-2","entrezGeneId":"100313835"},{"alias":"MIRN1255B2","entrezGeneId":"100313835"},{"alias":"hsa-mir-762","entrezGeneId":"100313837"},{"alias":"hsa-mir-764","entrezGeneId":"100313838"},{"alias":"hsa-mir-711","entrezGeneId":"100313843"},{"alias":"hsa-mir-548h-4","entrezGeneId":"100313884"},{"alias":"MIR548H-4","entrezGeneId":"100313884"},{"alias":"MIRN548H4","entrezGeneId":"100313884"},{"alias":"mir-2116","entrezGeneId":"100313886"},{"alias":"mir-2277","entrezGeneId":"100313887"},{"alias":"hsa-mir-761","entrezGeneId":"100313892"},{"alias":"hsa-mir-548f-4","entrezGeneId":"100313895"},{"alias":"MIR548F-4","entrezGeneId":"100313895"},{"alias":"MIRN548F4","entrezGeneId":"100313895"},{"alias":"mir-320d-1","entrezGeneId":"100313896"},{"alias":"MIR320D-1","entrezGeneId":"100313896"},{"alias":"MIRN320D1","entrezGeneId":"100313896"},{"alias":"hsa-mir-548j","entrezGeneId":"100313914"},{"alias":"MIRN548J","entrezGeneId":"100313914"},{"alias":"hsa-mir-548e","entrezGeneId":"100313921"},{"alias":"MIRN548E","entrezGeneId":"100313921"},{"alias":"mir-449c","entrezGeneId":"100313923"},{"alias":"hsa-mir-548g","entrezGeneId":"100313938"},{"alias":"MIRN548G","entrezGeneId":"100313938"},{"alias":"HOXA-AS6","entrezGeneId":"100316868"},{"alias":"HOXA13-AS1","entrezGeneId":"100316868"},{"alias":"NCRNA00213","entrezGeneId":"100316868"},{"alias":"TRPC5-AS1","entrezGeneId":"100329135"},{"alias":"AAA","entrezGeneId":"100329167"},{"alias":"LVG2","entrezGeneId":"100329168"},{"alias":"U70F","entrezGeneId":"100337591"},{"alias":"CSN1S2B","entrezGeneId":"100337616"},{"alias":"NCRNA00102","entrezGeneId":"100359394"},{"alias":"HSPD1-11P","entrezGeneId":"100359396"},{"alias":"HSPD1-1P","entrezGeneId":"100359397"},{"alias":"MYP4","entrezGeneId":"100359401"},{"alias":"U70G","entrezGeneId":"100379132"},{"alias":"U70D","entrezGeneId":"100379141"},{"alias":"bA85L21.1","entrezGeneId":"100379142"},{"alias":"BA318C17.1","entrezGeneId":"100379174"},{"alias":"NCRNA00186","entrezGeneId":"100379174"},{"alias":"BECTS","entrezGeneId":"100379198"},{"alias":"ARSAL","entrezGeneId":"100379201"},{"alias":"C5DUPp13","entrezGeneId":"100379202"},{"alias":"C17DUPp13.3","entrezGeneId":"100379203"},{"alias":"BWQTL1","entrezGeneId":"100379216"},{"alias":"p24a1","entrezGeneId":"100379220"},{"alias":"p24alpha1","entrezGeneId":"100379220"},{"alias":"BOK-AS","entrezGeneId":"100379249"},{"alias":"BOKAS","entrezGeneId":"100379249"},{"alias":"NAToB","entrezGeneId":"100379249"},{"alias":"NCRNA00151","entrezGeneId":"100379249"},{"alias":"U70E","entrezGeneId":"100379250"},{"alias":"NPPA-AS","entrezGeneId":"100379251"},{"alias":"NPPAAS","entrezGeneId":"100379251"},{"alias":"ERVWE2","entrezGeneId":"100379323"},{"alias":"NTrenv","entrezGeneId":"100379323"},{"alias":"BACE1-AS1","entrezGeneId":"100379571"},{"alias":"BACE1AS","entrezGeneId":"100379571"},{"alias":"NCRNA00177","entrezGeneId":"100379571"},{"alias":"dJ221C16.7","entrezGeneId":"100379623"},{"alias":"HCG10P","entrezGeneId":"100379623"},{"alias":"C21orf41","entrezGeneId":"100379661"},{"alias":"NCRNA00258","entrezGeneId":"100379661"},{"alias":"FCD2","entrezGeneId":"100380873"},{"alias":"FCD3","entrezGeneId":"100380874"},{"alias":"FCD4","entrezGeneId":"100380875"},{"alias":"FLD1","entrezGeneId":"100380876"},{"alias":"MGR","entrezGeneId":"100381270"},{"alias":"IGHV1OR155","entrezGeneId":"100384884"},{"alias":"CXq28","entrezGeneId":"100415893"},{"alias":"C17DELq23.1q23.2","entrezGeneId":"100415941"},{"alias":"C2DELp21","entrezGeneId":"100415942"},{"alias":"KIAA0664P1","entrezGeneId":"100418708"},{"alias":"KIAA0664P2","entrezGeneId":"100418709"},{"alias":"KIAA0664P4","entrezGeneId":"100418711"},{"alias":"KIAA0649P1","entrezGeneId":"100418740"},{"alias":"KIAA0664P5","entrezGeneId":"100418745"},{"alias":"KRT3P1","entrezGeneId":"100418779"},{"alias":"BCL8D","entrezGeneId":"100418881"},{"alias":"BCL8C","entrezGeneId":"100418905"},{"alias":"SNX18P6","entrezGeneId":"100418977"},{"alias":"NF1HHS","entrezGeneId":"100419006"},{"alias":"TUBA8P1","entrezGeneId":"100419007"},{"alias":"NF1L4","entrezGeneId":"100419029"},{"alias":"NF1L6","entrezGeneId":"100419029"},{"alias":"HsT26053","entrezGeneId":"100419074"},{"alias":"SRPK2ps","entrezGeneId":"100419416"},{"alias":"dJ111M5.3","entrezGeneId":"100419606"},{"alias":"ZNF463P","entrezGeneId":"100419606"},{"alias":"dJ265C24.5","entrezGeneId":"100419608"},{"alias":"bCX269C15.3","entrezGeneId":"100419609"},{"alias":"dJ1033B10.7","entrezGeneId":"100419609"},{"alias":"ZNF314P","entrezGeneId":"100419609"},{"alias":"ZNF887","entrezGeneId":"100419709"},{"alias":"DBE-T","entrezGeneId":"100419743"},{"alias":"DUX4L30","entrezGeneId":"100419743"},{"alias":"ZNF722","entrezGeneId":"100419780"},{"alias":"RNF19BX","entrezGeneId":"100419788"},{"alias":"ZNF864P","entrezGeneId":"100419866"},{"alias":"FAM28BP","entrezGeneId":"100419903"},{"alias":"CDK8PS","entrezGeneId":"100419916"},{"alias":"HMGB1L11","entrezGeneId":"100419996"},{"alias":"SEPHS1P5","entrezGeneId":"100420190"},{"alias":"FTHL23","entrezGeneId":"100420300"},{"alias":"FTHL26","entrezGeneId":"100420303"},{"alias":"HsT33912","entrezGeneId":"100420308"},{"alias":"ITM2BP","entrezGeneId":"100420308"},{"alias":"TRIM60P1","entrezGeneId":"100420362"},{"alias":"TRIM60PY1","entrezGeneId":"100420362"},{"alias":"TRIM60P2","entrezGeneId":"100420363"},{"alias":"TRIM60PY2","entrezGeneId":"100420363"},{"alias":"TRIM60P3","entrezGeneId":"100420364"},{"alias":"TRIM60PY3","entrezGeneId":"100420364"},{"alias":"TRIM60P4","entrezGeneId":"100420367"},{"alias":"TRIM60PY4","entrezGeneId":"100420367"},{"alias":"TRIM60P5","entrezGeneId":"100420368"},{"alias":"TRIM60PY5","entrezGeneId":"100420368"},{"alias":"TRIM60P6","entrezGeneId":"100420369"},{"alias":"TRIM60PY6","entrezGeneId":"100420369"},{"alias":"TRIM60P7","entrezGeneId":"100420370"},{"alias":"TRIM60PY7","entrezGeneId":"100420370"},{"alias":"TRIM60P8","entrezGeneId":"100420373"},{"alias":"TRIM60PY8","entrezGeneId":"100420373"},{"alias":"TRIM60P9","entrezGeneId":"100420374"},{"alias":"TRIM60PY9","entrezGeneId":"100420374"},{"alias":"TRIM60P10","entrezGeneId":"100420376"},{"alias":"TRIM60PY10","entrezGeneId":"100420376"},{"alias":"TRIM60P11","entrezGeneId":"100420377"},{"alias":"TRIM60PY11","entrezGeneId":"100420377"},{"alias":"TRIM60P12","entrezGeneId":"100420378"},{"alias":"TRIM60PY12","entrezGeneId":"100420378"},{"alias":"p51","entrezGeneId":"100420410"},{"alias":"CCDC55P1","entrezGeneId":"100420557"},{"alias":"ERP28P","entrezGeneId":"100420612"},{"alias":"GSTAP7","entrezGeneId":"100420627"},{"alias":"ZEB1P1","entrezGeneId":"100420926"},{"alias":"HsT4307","entrezGeneId":"100420950"},{"alias":"DSCR6P1","entrezGeneId":"100421053"},{"alias":"IFNL1P1","entrezGeneId":"100421129"},{"alias":"IL28BP1","entrezGeneId":"100421129"},{"alias":"LAMP1L1","entrezGeneId":"100421198"},{"alias":"PRPS1L2","entrezGeneId":"100421295"},{"alias":"RH_II/GuBp2","entrezGeneId":"100421328"},{"alias":"ANKRD20A4P1","entrezGeneId":"100421422"},{"alias":"FAM18B4P","entrezGeneId":"100421473"},{"alias":"FAM58AP1","entrezGeneId":"100421487"},{"alias":"FAM58CP","entrezGeneId":"100421487"},{"alias":"FAM58Y","entrezGeneId":"100421487"},{"alias":"FAM58DP","entrezGeneId":"100421566"},{"alias":"bCX300M20.3","entrezGeneId":"100421582"},{"alias":"bPG254M11.3","entrezGeneId":"100421582"},{"alias":"bQB44E15.5","entrezGeneId":"100421582"},{"alias":"FAM60BP","entrezGeneId":"100421588"},{"alias":"HsT2323","entrezGeneId":"100421588"},{"alias":"UBE2Q2PY1","entrezGeneId":"100421716"},{"alias":"UBE2Q2PY2","entrezGeneId":"100421717"},{"alias":"EEF1AL8","entrezGeneId":"100421829"},{"alias":"EEF1AL2","entrezGeneId":"100421854"},{"alias":"EEF1AL","entrezGeneId":"100421865"},{"alias":"EEF1AL1","entrezGeneId":"100421865"},{"alias":"EFTUD1P2","entrezGeneId":"100422019"},{"alias":"CYP51P3","entrezGeneId":"100422264"},{"alias":"HsT38306","entrezGeneId":"100422273"},{"alias":"PPP1R10P","entrezGeneId":"100422381"},{"alias":"HsT1682","entrezGeneId":"100422496"},{"alias":"PRP19P","entrezGeneId":"100422496"},{"alias":"PRPF19P","entrezGeneId":"100422496"},{"alias":"ATP5F1P4","entrezGeneId":"100422514"},{"alias":"ATP5F1P1","entrezGeneId":"100422523"},{"alias":"TCEB1P31","entrezGeneId":"100422582"},{"alias":"SLC25A15P","entrezGeneId":"100422624"},{"alias":"SLC25A15PY1","entrezGeneId":"100422624"},{"alias":"GOT2Y","entrezGeneId":"100422625"},{"alias":"FNRBL","entrezGeneId":"100422691"},{"alias":"ITGB1L","entrezGeneId":"100422691"},{"alias":"PRKRIRP2","entrezGeneId":"100422711"},{"alias":"PRKRIRP7","entrezGeneId":"100422712"},{"alias":"PRKRIRP10","entrezGeneId":"100422715"},{"alias":"mir-3128","entrezGeneId":"100422824"},{"alias":"mir-3160-2","entrezGeneId":"100422825"},{"alias":"mir-3160-1","entrezGeneId":"100422827"},{"alias":"mir-3191","entrezGeneId":"100422832"},{"alias":"mir-3188","entrezGeneId":"100422833"},{"alias":"mir-3183","entrezGeneId":"100422835"},{"alias":"mir-3074","entrezGeneId":"100422842"},{"alias":"mir-514b","entrezGeneId":"100422847"},{"alias":"mir-3182","entrezGeneId":"100422853"},{"alias":"mir-3187","entrezGeneId":"100422854"},{"alias":"mir-3123","entrezGeneId":"100422856"},{"alias":"mir-3136","entrezGeneId":"100422859"},{"alias":"mir-4306","entrezGeneId":"100422861"},{"alias":"mir-3115","entrezGeneId":"100422866"},{"alias":"mir-378c","entrezGeneId":"100422867"},{"alias":"mir-3117","entrezGeneId":"100422871"},{"alias":"mir-3192","entrezGeneId":"100422875"},{"alias":"mir-3148","entrezGeneId":"100422876"},{"alias":"mir-3202-2","entrezGeneId":"100422877"},{"alias":"mir-3124","entrezGeneId":"100422879"},{"alias":"mir-3162","entrezGeneId":"100422880"},{"alias":"mir-3170","entrezGeneId":"100422881"},{"alias":"mir-3120","entrezGeneId":"100422882"},{"alias":"mir-3194","entrezGeneId":"100422889"},{"alias":"mir-3157","entrezGeneId":"100422892"},{"alias":"mir-3154","entrezGeneId":"100422893"},{"alias":"mir-3140","entrezGeneId":"100422896"},{"alias":"mir-3190","entrezGeneId":"100422899"},{"alias":"mir-3158-1","entrezGeneId":"100422900"},{"alias":"hsa-mir-3135a","entrezGeneId":"100422901"},{"alias":"MIR3135","entrezGeneId":"100422901"},{"alias":"mir-3156-2","entrezGeneId":"100422907"},{"alias":"mir-3129","entrezGeneId":"100422908"},{"alias":"BMND15","entrezGeneId":"100422910"},{"alias":"MIRN2861","entrezGeneId":"100422910"},{"alias":"mir-500b","entrezGeneId":"100422911"},{"alias":"mir-3200","entrezGeneId":"100422912"},{"alias":"mir-320e","entrezGeneId":"100422913"},{"alias":"mir-3065","entrezGeneId":"100422915"},{"alias":"mir-3127","entrezGeneId":"100422928"},{"alias":"mir-3143","entrezGeneId":"100422934"},{"alias":"mir-3153","entrezGeneId":"100422936"},{"alias":"mir-3147","entrezGeneId":"100422939"},{"alias":"mir-3189","entrezGeneId":"100422943"},{"alias":"mir-3186","entrezGeneId":"100422944"},{"alias":"mir-4326","entrezGeneId":"100422945"},{"alias":"mir-3122","entrezGeneId":"100422947"},{"alias":"mir-4284","entrezGeneId":"100422948"},{"alias":"mir-3141","entrezGeneId":"100422950"},{"alias":"mir-3144","entrezGeneId":"100422951"},{"alias":"mir-3165","entrezGeneId":"100422953"},{"alias":"mir-3180-2","entrezGeneId":"100422956"},{"alias":"mir-3131","entrezGeneId":"100422957"},{"alias":"mir-3150a","entrezGeneId":"100422964"},{"alias":"MIR3150","entrezGeneId":"100422964"},{"alias":"mir-3146","entrezGeneId":"100422967"},{"alias":"mir-3178","entrezGeneId":"100422974"},{"alias":"mir-4324","entrezGeneId":"100422979"},{"alias":"mir-3173","entrezGeneId":"100422981"},{"alias":"mir-4286","entrezGeneId":"100422982"},{"alias":"mir-3125","entrezGeneId":"100422986"},{"alias":"mir-3202-1","entrezGeneId":"100422987"},{"alias":"mir-3156-1","entrezGeneId":"100422988"},{"alias":"hsa-mir-3155a","entrezGeneId":"100422989"},{"alias":"mir-3155a","entrezGeneId":"100422989"},{"alias":"MIR3155","entrezGeneId":"100422989"},{"alias":"mir-1260b","entrezGeneId":"100422991"},{"alias":"mir-3151","entrezGeneId":"100422992"},{"alias":"mir-3130-1","entrezGeneId":"100422993"},{"alias":"MIR3130-3","entrezGeneId":"100422993"},{"alias":"mir-3175","entrezGeneId":"100422995"},{"alias":"mir-3199-2","entrezGeneId":"100422998"},{"alias":"mir-3145","entrezGeneId":"100423001"},{"alias":"mir-3130-2","entrezGeneId":"100423002"},{"alias":"MIR3130-4","entrezGeneId":"100423002"},{"alias":"mir-3118-1","entrezGeneId":"100423008"},{"alias":"mir-3138","entrezGeneId":"100423011"},{"alias":"mir-3177","entrezGeneId":"100423012"},{"alias":"mir-3196","entrezGeneId":"100423014"},{"alias":"mir-3156-3","entrezGeneId":"100423018"},{"alias":"mir-3198-1","entrezGeneId":"100423025"},{"alias":"MIR3198","entrezGeneId":"100423025"},{"alias":"mir-3126","entrezGeneId":"100423030"},{"alias":"mir-3121","entrezGeneId":"100423032"},{"alias":"mir-3158-2","entrezGeneId":"100423033"},{"alias":"mir-3199-1","entrezGeneId":"100423034"},{"alias":"mir-2355","entrezGeneId":"100423036"},{"alias":"mir-3176","entrezGeneId":"100423037"},{"alias":"hsa-mir-466","entrezGeneId":"100423038"},{"alias":"IGL","entrezGeneId":"100423062"},{"alias":"IGLV","entrezGeneId":"100423062"},{"alias":"VL-MAR","entrezGeneId":"100423062"},{"alias":"NKp65","entrezGeneId":"100431172"},{"alias":"ACTGP5","entrezGeneId":"100462767"},{"alias":"FTHL22","entrezGeneId":"100462772"},{"alias":"RRAGAP","entrezGeneId":"100462776"},{"alias":"FTHL24","entrezGeneId":"100462797"},{"alias":"FTHL25","entrezGeneId":"100462799"},{"alias":"D84394.2","entrezGeneId":"100462812"},{"alias":"FGFR3P","entrezGeneId":"100462812"},{"alias":"FGFR6","entrezGeneId":"100462812"},{"alias":"RHOT1P","entrezGeneId":"100462813"},{"alias":"RHOT3","entrezGeneId":"100462813"},{"alias":"CDY24P","entrezGeneId":"100462820"},{"alias":"ATP6EP2","entrezGeneId":"100462844"},{"alias":"ATP6V1EP2","entrezGeneId":"100462844"},{"alias":"COX6BP4","entrezGeneId":"100462850"},{"alias":"ATP5LP8","entrezGeneId":"100462862"},{"alias":"ATP5LP6","entrezGeneId":"100462865"},{"alias":"TCEB1P21","entrezGeneId":"100462866"},{"alias":"TCEB1P6","entrezGeneId":"100462867"},{"alias":"TCEB1P7","entrezGeneId":"100462868"},{"alias":"TCEB1P8","entrezGeneId":"100462869"},{"alias":"TCEB1P9","entrezGeneId":"100462870"},{"alias":"TCEB1P10","entrezGeneId":"100462871"},{"alias":"TCEB1P11","entrezGeneId":"100462872"},{"alias":"TCEB1P4","entrezGeneId":"100462873"},{"alias":"TCEB1P12","entrezGeneId":"100462874"},{"alias":"TCEB1P13","entrezGeneId":"100462875"},{"alias":"TCEB1P14","entrezGeneId":"100462876"},{"alias":"TCEB1P15","entrezGeneId":"100462877"},{"alias":"TCEB1P16","entrezGeneId":"100462878"},{"alias":"TCEB1P17","entrezGeneId":"100462879"},{"alias":"TCEB1P19","entrezGeneId":"100462880"},{"alias":"TCEB1P23","entrezGeneId":"100462881"},{"alias":"CG012","entrezGeneId":"100462953"},{"alias":"N4BP2L2-IT","entrezGeneId":"100462953"},{"alias":"N4BP2L2-IT1","entrezGeneId":"100462953"},{"alias":"N4BP2L2IT1","entrezGeneId":"100462953"},{"alias":"HN1","entrezGeneId":"100462977"},{"alias":"HN2","entrezGeneId":"100462981"},{"alias":"HN3","entrezGeneId":"100462983"},{"alias":"HSPD1-21P","entrezGeneId":"100462984"},{"alias":"HSPD1-13P","entrezGeneId":"100462985"},{"alias":"HSPD1-19P","entrezGeneId":"100462986"},{"alias":"HSPD1-16P","entrezGeneId":"100462987"},{"alias":"HSPD1-20P","entrezGeneId":"100462989"},{"alias":"HSPD1-3P","entrezGeneId":"100462990"},{"alias":"HN4","entrezGeneId":"100463285"},{"alias":"CCT6-2P","entrezGeneId":"100463286"},{"alias":"HSPD1-18P","entrezGeneId":"100463288"},{"alias":"HN5","entrezGeneId":"100463289"},{"alias":"HN6","entrezGeneId":"100463482"},{"alias":"HN8","entrezGeneId":"100463486"},{"alias":"HN9","entrezGeneId":"100463487"},{"alias":"HN10","entrezGeneId":"100463488"},{"alias":"HN11","entrezGeneId":"100463489"},{"alias":"HN12","entrezGeneId":"100463498"},{"alias":"HN13","entrezGeneId":"100463500"},{"alias":"BWQTL3","entrezGeneId":"100499168"},{"alias":"PGQTL1","entrezGeneId":"100499168"},{"alias":"NCRNA00276","entrezGeneId":"100499171"},{"alias":"FZD6-DT","entrezGeneId":"100499183"},{"alias":"lncFZD6","entrezGeneId":"100499183"},{"alias":"THY1-AS1","entrezGeneId":"100499227"},{"alias":"ZBTB12B","entrezGeneId":"100499252"},{"alias":"ZBTB12P1","entrezGeneId":"100499252"},{"alias":"ZNF920","entrezGeneId":"100499252"},{"alias":"CXDELq22.3","entrezGeneId":"100499260"},{"alias":"DELXq22.3","entrezGeneId":"100499260"},{"alias":"ERRLR01","entrezGeneId":"100499467"},{"alias":"HI-LNC75","entrezGeneId":"100499467"},{"alias":"HILNC75","entrezGeneId":"100499467"},{"alias":"LUCAIR1","entrezGeneId":"100499467"},{"alias":"SLNCR","entrezGeneId":"100499467"},{"alias":"SLNCR1","entrezGeneId":"100499467"},{"alias":"C9orf174","entrezGeneId":"100499483"},{"alias":"mir-3659","entrezGeneId":"100500801"},{"alias":"mir-374c","entrezGeneId":"100500807"},{"alias":"mir-3917","entrezGeneId":"100500808"},{"alias":"hsa-mir-23c","entrezGeneId":"100500809"},{"alias":"mir-23c","entrezGeneId":"100500809"},{"alias":"mir-3620","entrezGeneId":"100500810"},{"alias":"mir-3677","entrezGeneId":"100500812"},{"alias":"mir-3616","entrezGeneId":"100500814"},{"alias":"mir-3609","entrezGeneId":"100500819"},{"alias":"mir-3910-1","entrezGeneId":"100500821"},{"alias":"mir-3660","entrezGeneId":"100500825"},{"alias":"mir-3909","entrezGeneId":"100500826"},{"alias":"mir-3614","entrezGeneId":"100500827"},{"alias":"mir-3912","entrezGeneId":"100500831"},{"alias":"mir-3606","entrezGeneId":"100500837"},{"alias":"mir-3926-2","entrezGeneId":"100500838"},{"alias":"mir-3678","entrezGeneId":"100500841"},{"alias":"mir-3664","entrezGeneId":"100500844"},{"alias":"mir-642b","entrezGeneId":"100500845"},{"alias":"mir-3615","entrezGeneId":"100500847"},{"alias":"mir-3916","entrezGeneId":"100500849"},{"alias":"mir-3682","entrezGeneId":"100500850"},{"alias":"mir-3918","entrezGeneId":"100500851"},{"alias":"mir-3180-4","entrezGeneId":"100500852"},{"alias":"mir-3605","entrezGeneId":"100500853"},{"alias":"mir-3939","entrezGeneId":"100500857"},{"alias":"mir-3622a","entrezGeneId":"100500858"},{"alias":"hsa-mir-3648-1","entrezGeneId":"100500862"},{"alias":"MIR3648","entrezGeneId":"100500862"},{"alias":"mir-3936","entrezGeneId":"100500865"},{"alias":"mir-3913-2","entrezGeneId":"100500868"},{"alias":"mir-3926-1","entrezGeneId":"100500870"},{"alias":"mir-3911","entrezGeneId":"100500872"},{"alias":"mir-3679","entrezGeneId":"100500878"},{"alias":"mir-3662","entrezGeneId":"100500880"},{"alias":"mir-3688-1","entrezGeneId":"100500881"},{"alias":"MIR3688","entrezGeneId":"100500881"},{"alias":"hsa-mir-676","entrezGeneId":"100500887"},{"alias":"mir-676","entrezGeneId":"100500887"},{"alias":"mir-3940","entrezGeneId":"100500888"},{"alias":"hsa-mir-3690-1","entrezGeneId":"100500894"},{"alias":"hsa-mir-3690-2","entrezGeneId":"100500894"},{"alias":"mir-3690-1","entrezGeneId":"100500894"},{"alias":"mir-3690-2","entrezGeneId":"100500894"},{"alias":"MIR3690-1","entrezGeneId":"100500894"},{"alias":"MIR3690-2","entrezGeneId":"100500894"},{"alias":"mir-3691","entrezGeneId":"100500900"},{"alias":"mir-3928","entrezGeneId":"100500901"},{"alias":"mir-3910-2","entrezGeneId":"100500902"},{"alias":"mir-3913-1","entrezGeneId":"100500903"},{"alias":"mir-3661","entrezGeneId":"100500905"},{"alias":"mir-3689b","entrezGeneId":"100500906"},{"alias":"mir-3150b","entrezGeneId":"100500907"},{"alias":"hsa-mir-3670-1","entrezGeneId":"100500910"},{"alias":"MIR3670","entrezGeneId":"100500910"},{"alias":"mir-3610","entrezGeneId":"100500914"},{"alias":"mir-3180-5","entrezGeneId":"100500916"},{"alias":"hsa-mir-3680-1","entrezGeneId":"100500917"},{"alias":"MIR3680","entrezGeneId":"100500917"},{"alias":"mir-3651","entrezGeneId":"100500918"},{"alias":"CHR15DELq24","entrezGeneId":"100502567"},{"alias":"CXDELp21","entrezGeneId":"100505389"},{"alias":"C6DELq25q25","entrezGeneId":"100505391"},{"alias":"C14DELq11q22","entrezGeneId":"100505392"},{"alias":"C16DUPq13.3","entrezGeneId":"100505393"},{"alias":"T1560","entrezGeneId":"100505477"},{"alias":"LINC01190","entrezGeneId":"100505495"},{"alias":"GST1L","entrezGeneId":"100505557"},{"alias":"GSTM1L","entrezGeneId":"100505557"},{"alias":"LINC00984","entrezGeneId":"100505573"},{"alias":"OGU1","entrezGeneId":"100505573"},{"alias":"LINC01540","entrezGeneId":"100505592"},{"alias":"FSD2-AS1","entrezGeneId":"100505616"},{"alias":"SCARNA15HG","entrezGeneId":"100505616"},{"alias":"LINC01024","entrezGeneId":"100505636"},{"alias":"MA-linc1","entrezGeneId":"100505636"},{"alias":"TODRA","entrezGeneId":"100505648"},{"alias":"HI-LNC25","entrezGeneId":"100505663"},{"alias":"HILNC25","entrezGeneId":"100505663"},{"alias":"ATP5G1P6","entrezGeneId":"100505704"},{"alias":"KAP9.7","entrezGeneId":"100505724"},{"alias":"KRTAP9L1","entrezGeneId":"100505724"},{"alias":"SP-2","entrezGeneId":"100505741"},{"alias":"SPAP1","entrezGeneId":"100505741"},{"alias":"KAP16.1","entrezGeneId":"100505753"},{"alias":"UTAT39","entrezGeneId":"100505776"},{"alias":"OSER1-AS1","entrezGeneId":"100505783"},{"alias":"KIRREL-IT1","entrezGeneId":"100505785"},{"alias":"HNCAT21","entrezGeneId":"100505811"},{"alias":"PRED65","entrezGeneId":"100505852"},{"alias":"ZNF834","entrezGeneId":"100505852"},{"alias":"RSBN1L-AS1","entrezGeneId":"100505854"},{"alias":"CCDC147-AS1","entrezGeneId":"100505869"},{"alias":"CFAP58-AS1","entrezGeneId":"100505869"},{"alias":"CEBPZ-AS1","entrezGeneId":"100505876"},{"alias":"C6orf54","entrezGeneId":"100505879"},{"alias":"HGC6.1.1","entrezGeneId":"100505879"},{"alias":"NCRNA00300","entrezGeneId":"100505879"},{"alias":"linc-POLR3G-8","entrezGeneId":"100505894"},{"alias":"C21orf37","entrezGeneId":"100505929"},{"alias":"LINC01207","entrezGeneId":"100505989"},{"alias":"SCAL1","entrezGeneId":"100505994"},{"alias":"LINC00403","entrezGeneId":"100505996"},{"alias":"NARF-OT1","entrezGeneId":"100506001"},{"alias":"ELA","entrezGeneId":"100506013"},{"alias":"Ende","entrezGeneId":"100506013"},{"alias":"tdl","entrezGeneId":"100506013"},{"alias":"ARL17","entrezGeneId":"100506084"},{"alias":"ARL17A","entrezGeneId":"100506084"},{"alias":"SIX3OS","entrezGeneId":"100506108"},{"alias":"LINC01272","entrezGeneId":"100506115"},{"alias":"ZMYM6NB","entrezGeneId":"100506144"},{"alias":"LW-1","entrezGeneId":"100506164"},{"alias":"MetaLnc9","entrezGeneId":"100506190"},{"alias":"FAM11C","entrezGeneId":"100506205"},{"alias":"TMEM185AL","entrezGeneId":"100506205"},{"alias":"GCFC1-AS1","entrezGeneId":"100506215"},{"alias":"HOXA-AS1","entrezGeneId":"100506311"},{"alias":"HOXA1-AS1","entrezGeneId":"100506311"},{"alias":"NCRNA00179","entrezGeneId":"100506311"},{"alias":"GS1-251I9.4","entrezGeneId":"100506365"},{"alias":"C7orf13","entrezGeneId":"100506380"},{"alias":"MY040","entrezGeneId":"100506380"},{"alias":"lincRNA-uc002yug.2","entrezGeneId":"100506385"},{"alias":"GAS6-AS2","entrezGeneId":"100506394"},{"alias":"linc-Brn1a","entrezGeneId":"100506421"},{"alias":"linc-POU3F3","entrezGeneId":"100506421"},{"alias":"PANTR1","entrezGeneId":"100506421"},{"alias":"PlncRNA-1","entrezGeneId":"100506428"},{"alias":"PlncRNA1","entrezGeneId":"100506428"},{"alias":"LCAL84","entrezGeneId":"100506465"},{"alias":"onco-lncRNA-32","entrezGeneId":"100506465"},{"alias":"M41","entrezGeneId":"100506492"},{"alias":"SPTY2D1-AS1","entrezGeneId":"100506540"},{"alias":"TCONS_00024492","entrezGeneId":"100506542"},{"alias":"PVRL3-AS1","entrezGeneId":"100506555"},{"alias":"EyeLinc4","entrezGeneId":"100506649"},{"alias":"BLCPMG","entrezGeneId":"100506658"},{"alias":"PPP1R115","entrezGeneId":"100506658"},{"alias":"PTORCH1","entrezGeneId":"100506658"},{"alias":"CONCR","entrezGeneId":"100506660"},{"alias":"DYNLL1-AS1","entrezGeneId":"100506668"},{"alias":"DYNLL1AS1","entrezGeneId":"100506668"},{"alias":"BRCAT54","entrezGeneId":"100506674"},{"alias":"AA02","entrezGeneId":"100506677"},{"alias":"AA04","entrezGeneId":"100506677"},{"alias":"AA05","entrezGeneId":"100506677"},{"alias":"KDM5B-AS1","entrezGeneId":"100506696"},{"alias":"KDM5BAS1","entrezGeneId":"100506696"},{"alias":"ncRNA-a2","entrezGeneId":"100506696"},{"alias":"onco-lncRNA-96","entrezGeneId":"100506696"},{"alias":"PCAN-R1","entrezGeneId":"100506696"},{"alias":"NCRNA00327","entrezGeneId":"100506697"},{"alias":"EBLN3","entrezGeneId":"100506710"},{"alias":"NUP50-AS1","entrezGeneId":"100506714"},{"alias":"LSAMP-AS4","entrezGeneId":"100506724"},{"alias":"TCONS_00005428","entrezGeneId":"100506724"},{"alias":"TCONS_00029353","entrezGeneId":"100506737"},{"alias":"CASP-12","entrezGeneId":"100506742"},{"alias":"CASP12P1","entrezGeneId":"100506742"},{"alias":"MIR195HG","entrezGeneId":"100506755"},{"alias":"LINC00629A","entrezGeneId":"100506757"},{"alias":"LINC00629B","entrezGeneId":"100506757"},{"alias":"LINC00629C","entrezGeneId":"100506757"},{"alias":"LINC00629D","entrezGeneId":"100506757"},{"alias":"hg533","entrezGeneId":"100506759"},{"alias":"OR7E48P","entrezGeneId":"100506759"},{"alias":"OST193","entrezGeneId":"100506759"},{"alias":"TCRGV","entrezGeneId":"100506776"},{"alias":"BZRAP1-AS1","entrezGeneId":"100506779"},{"alias":"LVCAT1","entrezGeneId":"100506827"},{"alias":"LncRNA-Hh","entrezGeneId":"100506834"},{"alias":"MKLN1-AS2","entrezGeneId":"100506881"},{"alias":"ELOA3L2","entrezGeneId":"100506888"},{"alias":"TCEB3CL2","entrezGeneId":"100506888"},{"alias":"MAGOH2","entrezGeneId":"100506898"},{"alias":"CCDC37-AS1","entrezGeneId":"100506907"},{"alias":"TCEB3-AS1","entrezGeneId":"100506963"},{"alias":"HBT8","entrezGeneId":"100506965"},{"alias":"PAR-6","entrezGeneId":"100506965"},{"alias":"Goofy","entrezGeneId":"100507003"},{"alias":"BMPR1B-AS1","entrezGeneId":"100507012"},{"alias":"Linc-RAM","entrezGeneId":"100507027"},{"alias":"LINC00948","entrezGeneId":"100507027"},{"alias":"M1","entrezGeneId":"100507027"},{"alias":"MLN","entrezGeneId":"100507027"},{"alias":"MUSER1","entrezGeneId":"100507027"},{"alias":"HI-LNC78","entrezGeneId":"100507043"},{"alias":"LINC00617","entrezGeneId":"100507043"},{"alias":"TUNA","entrezGeneId":"100507043"},{"alias":"DKFZp434D177-like","entrezGeneId":"100507044"},{"alias":"NBPF5","entrezGeneId":"100507044"},{"alias":"CARLo-5","entrezGeneId":"100507056"},{"alias":"CARLO5","entrezGeneId":"100507056"},{"alias":"onco-lncRNA-40","entrezGeneId":"100507056"},{"alias":"MFI2-AS1","entrezGeneId":"100507057"},{"alias":"LINC00447","entrezGeneId":"100507064"},{"alias":"ATP5G2P3","entrezGeneId":"100507097"},{"alias":"bA119F7.2","entrezGeneId":"100507102"},{"alias":"FAM36B","entrezGeneId":"100507102"},{"alias":"C13orf43","entrezGeneId":"100507135"},{"alias":"SPG20-AS1","entrezGeneId":"100507135"},{"alias":"SPG20OS","entrezGeneId":"100507135"},{"alias":"GS1-756B1.2","entrezGeneId":"100507143"},{"alias":"CT47","entrezGeneId":"100507170"},{"alias":"CT47.12","entrezGeneId":"100507170"},{"alias":"Nbla10727","entrezGeneId":"100507246"},{"alias":"Nbla12061","entrezGeneId":"100507246"},{"alias":"ncRAN","entrezGeneId":"100507246"},{"alias":"MOST-1","entrezGeneId":"100507249"},{"alias":"MOST1","entrezGeneId":"100507249"},{"alias":"LINC00584","entrezGeneId":"100507257"},{"alias":"CTB-27N1.1","entrezGeneId":"100507267"},{"alias":"KIDR","entrezGeneId":"100507267"},{"alias":"MAMDC2-AS2","entrezGeneId":"100507299"},{"alias":"SNORD60HG","entrezGeneId":"100507303"},{"alias":"EYA4-AS1","entrezGeneId":"100507308"},{"alias":"LINC01604","entrezGeneId":"100507316"},{"alias":"FLI1-AS1","entrezGeneId":"100507392"},{"alias":"lncRNA9","entrezGeneId":"100507392"},{"alias":"LncRNA-ES3","entrezGeneId":"100507428"},{"alias":"MIC-A","entrezGeneId":"100507436"},{"alias":"PERB11.1","entrezGeneId":"100507436"},{"alias":"IPP-2P","entrezGeneId":"100507444"},{"alias":"PPP1R2P","entrezGeneId":"100507444"},{"alias":"TAP1-AS1","entrezGeneId":"100507463"},{"alias":"TAPSAR1","entrezGeneId":"100507463"},{"alias":"ATPBD4-AS1","entrezGeneId":"100507466"},{"alias":"DPH6-AS1","entrezGeneId":"100507466"},{"alias":"TGFR-3L","entrezGeneId":"100507588"},{"alias":"KAP9.6","entrezGeneId":"100507608"},{"alias":"KRTAP9.6","entrezGeneId":"100507608"},{"alias":"KRTAP9L2","entrezGeneId":"100507608"},{"alias":"C14orf164","entrezGeneId":"100507650"},{"alias":"PBMUCL1","entrezGeneId":"100507679"},{"alias":"GMDS-AS1","entrezGeneId":"100508120"},{"alias":"C9orf3-TMEFF1","entrezGeneId":"100526694"},{"alias":"C9orf30-TMEFF1","entrezGeneId":"100526694"},{"alias":"COAZ","entrezGeneId":"100526737"},{"alias":"APITD1-CORT","entrezGeneId":"100526739"},{"alias":"ATP5J2-PTCD1","entrezGeneId":"100526740"},{"alias":"C8DELq13","entrezGeneId":"100526741"},{"alias":"C16DELp12.1p11.2","entrezGeneId":"100526742"},{"alias":"C17DUPq23.1q23.2","entrezGeneId":"100526743"},{"alias":"C13orf38-SOHLH2","entrezGeneId":"100526761"},{"alias":"RNF103-VPS24","entrezGeneId":"100526767"},{"alias":"TMPRSS4-AS1","entrezGeneId":"100526771"},{"alias":"SPINLW1-WFDC6","entrezGeneId":"100526773"},{"alias":"C19DELp13.13","entrezGeneId":"100526791"},{"alias":"C19DUPp13.13","entrezGeneId":"100526791"},{"alias":"DUP19p13.13","entrezGeneId":"100526791"},{"alias":"LINC00468","entrezGeneId":"100526820"},{"alias":"INMT-FAM188B","entrezGeneId":"100526825"},{"alias":"MUTED-TXNDC5","entrezGeneId":"100526836"},{"alias":"EEF1E1-MUTED","entrezGeneId":"100526837"},{"alias":"TGIF2-C20orf24","entrezGeneId":"100527943"},{"alias":"HEATR8-TTC4","entrezGeneId":"100527960"},{"alias":"PMF1","entrezGeneId":"100527963"},{"alias":"C10orf32-AS3MT","entrezGeneId":"100528007"},{"alias":"C10orf32-ASMT","entrezGeneId":"100528007"},{"alias":"PPR","entrezGeneId":"100528023"},{"alias":"C4DELq21","entrezGeneId":"100528026"},{"alias":"ARMCX5-GPRASP2-BHLHB9-LINC00630","entrezGeneId":"100528062"},{"alias":"bHLHb9","entrezGeneId":"100528062"},{"alias":"p60TRP","entrezGeneId":"100528062"},{"alias":"C2DUPq31.1","entrezGeneId":"100529099"},{"alias":"AUTSX4","entrezGeneId":"100529118"},{"alias":"CXDELp22.11","entrezGeneId":"100529118"},{"alias":"C17orf106-CDK3","entrezGeneId":"100529145"},{"alias":"C17orf61-PLSCR3","entrezGeneId":"100529211"},{"alias":"C6DELq11q14","entrezGeneId":"100529221"},{"alias":"C17DUPq21.31","entrezGeneId":"100529226"},{"alias":"C4TRIPq32.1q32.2","entrezGeneId":"100529228"},{"alias":"FCMTE3","entrezGeneId":"100529229"},{"alias":"ZNF816-ZNF321","entrezGeneId":"100529240"},{"alias":"HSPE1-PHOCN","entrezGeneId":"100529241"},{"alias":"C1DELq41q42","entrezGeneId":"100529242"},{"alias":"C2DELp12p11.2","entrezGeneId":"100529243"},{"alias":"RERT-lncRNA","entrezGeneId":"100529264"},{"alias":"MSH5-C6orf26","entrezGeneId":"100532732"},{"alias":"C1orf151-NBL1","entrezGeneId":"100532736"},{"alias":"C1DELp32p31","entrezGeneId":"100532738"},{"alias":"KAP29.2","entrezGeneId":"100533177"},{"alias":"CYorf17","entrezGeneId":"100533178"},{"alias":"1/2-SBSRNA4","entrezGeneId":"100533182"},{"alias":"PRH1","entrezGeneId":"100533464"},{"alias":"ERCC5-202","entrezGeneId":"100533467"},{"alias":"DYX1C1-CCPG1","entrezGeneId":"100533483"},{"alias":"FAM18B2-CDRT4","entrezGeneId":"100533496"},{"alias":"lncRNA-EBIC","entrezGeneId":"100533619"},{"alias":"C20orf157","entrezGeneId":"100533646"},{"alias":"dJ981L23.3","entrezGeneId":"100533646"},{"alias":"ZNF840","entrezGeneId":"100533646"},{"alias":"SGOL1P2","entrezGeneId":"100533661"},{"alias":"SGOL1P1","entrezGeneId":"100533666"},{"alias":"RBAK-LOC389458","entrezGeneId":"100533952"},{"alias":"CT1.5","entrezGeneId":"100533997"},{"alias":"C21orf44","entrezGeneId":"100551499"},{"alias":"NCRNA00159","entrezGeneId":"100551499"},{"alias":"IGHV3OR1614","entrezGeneId":"100568447"},{"alias":"c3_A","entrezGeneId":"100616100"},{"alias":"PR","entrezGeneId":"100616101"},{"alias":"Protease","entrezGeneId":"100616101"},{"alias":"Proteinase","entrezGeneId":"100616101"},{"alias":"polymerase","entrezGeneId":"100616102"},{"alias":"PR","entrezGeneId":"100616102"},{"alias":"Protease","entrezGeneId":"100616102"},{"alias":"Proteinase","entrezGeneId":"100616102"},{"alias":"c12_A","entrezGeneId":"100616103"},{"alias":"Endo-Rev2","entrezGeneId":"100616103"},{"alias":"envK1","entrezGeneId":"100616103"},{"alias":"PR","entrezGeneId":"100616103"},{"alias":"Protease","entrezGeneId":"100616103"},{"alias":"Proteinase","entrezGeneId":"100616103"},{"alias":"HML6-c11","entrezGeneId":"100616106"},{"alias":"HML6-c19A","entrezGeneId":"100616107"},{"alias":"mir-4464","entrezGeneId":"100616109"},{"alias":"mir-4668","entrezGeneId":"100616114"},{"alias":"mir-4469","entrezGeneId":"100616115"},{"alias":"hsa-mir-4436b-1","entrezGeneId":"100616123"},{"alias":"MIR4436B","entrezGeneId":"100616123"},{"alias":"mir-4647","entrezGeneId":"100616124"},{"alias":"mir-4526","entrezGeneId":"100616130"},{"alias":"hsa-mir-499b","entrezGeneId":"100616134"},{"alias":"MIR499A","entrezGeneId":"100616134"},{"alias":"mir-4787","entrezGeneId":"100616138"},{"alias":"mir-4741","entrezGeneId":"100616139"},{"alias":"mir-4458","entrezGeneId":"100616142"},{"alias":"mir-4466","entrezGeneId":"100616154"},{"alias":"hsa-mir-4536-1","entrezGeneId":"100616155"},{"alias":"MIR4536","entrezGeneId":"100616155"},{"alias":"mir-4772","entrezGeneId":"100616157"},{"alias":"mir-4505","entrezGeneId":"100616158"},{"alias":"mir-4420","entrezGeneId":"100616164"},{"alias":"mir-4796","entrezGeneId":"100616166"},{"alias":"mir-4754","entrezGeneId":"100616168"},{"alias":"mir-378d-2","entrezGeneId":"100616169"},{"alias":"mir-4739","entrezGeneId":"100616170"},{"alias":"hsa-mir-203b","entrezGeneId":"100616173"},{"alias":"MIR3545","entrezGeneId":"100616173"},{"alias":"mir-4708","entrezGeneId":"100616176"},{"alias":"mir-4498","entrezGeneId":"100616179"},{"alias":"c21_A","entrezGeneId":"100616197"},{"alias":"HML6-c19B","entrezGeneId":"100616199"},{"alias":"HERV-HC2","entrezGeneId":"100616200"},{"alias":"mir-378d-1","entrezGeneId":"100616201"},{"alias":"mir-4734","entrezGeneId":"100616203"},{"alias":"mir-4709","entrezGeneId":"100616211"},{"alias":"mir-3689f","entrezGeneId":"100616212"},{"alias":"mir-4437","entrezGeneId":"100616213"},{"alias":"mir-4667","entrezGeneId":"100616214"},{"alias":"mir-4487","entrezGeneId":"100616222"},{"alias":"mir-4753","entrezGeneId":"100616224"},{"alias":"mir-4646","entrezGeneId":"100616230"},{"alias":"mir-4457","entrezGeneId":"100616235"},{"alias":"mir-3529","entrezGeneId":"100616238"},{"alias":"mir-4724","entrezGeneId":"100616248"},{"alias":"mir-4516","entrezGeneId":"100616258"},{"alias":"mir-4485","entrezGeneId":"100616263"},{"alias":"hsa-mir-4433a","entrezGeneId":"100616265"},{"alias":"MIR4433","entrezGeneId":"100616265"},{"alias":"mir-4776-1","entrezGeneId":"100616267"},{"alias":"mir-4651","entrezGeneId":"100616270"},{"alias":"mir-4422","entrezGeneId":"100616272"},{"alias":"mir-4508","entrezGeneId":"100616275"},{"alias":"mir-4766","entrezGeneId":"100616283"},{"alias":"mir-4489","entrezGeneId":"100616284"},{"alias":"mir-4645","entrezGeneId":"100616285"},{"alias":"mir-4665","entrezGeneId":"100616288"},{"alias":"mir-4791","entrezGeneId":"100616291"},{"alias":"mir-4510","entrezGeneId":"100616293"},{"alias":"mir-4450","entrezGeneId":"100616299"},{"alias":"mir-4710","entrezGeneId":"100616300"},{"alias":"mir-3688-2","entrezGeneId":"100616303"},{"alias":"hsa-mir-4666a","entrezGeneId":"100616308"},{"alias":"MIR4666","entrezGeneId":"100616308"},{"alias":"mir-4478","entrezGeneId":"100616312"},{"alias":"mir-4749","entrezGeneId":"100616313"},{"alias":"mir-4750","entrezGeneId":"100616314"},{"alias":"mir-4781","entrezGeneId":"100616315"},{"alias":"hsa-mir-4524a","entrezGeneId":"100616316"},{"alias":"mir-4524a","entrezGeneId":"100616316"},{"alias":"MIR4524","entrezGeneId":"100616316"},{"alias":"hsa-mir-4482-1","entrezGeneId":"100616323"},{"alias":"MIR4482-1","entrezGeneId":"100616323"},{"alias":"mir-4636","entrezGeneId":"100616326"},{"alias":"mir-4484","entrezGeneId":"100616327"},{"alias":"mir-4700","entrezGeneId":"100616329"},{"alias":"mir-4491","entrezGeneId":"100616330"},{"alias":"mir-4716","entrezGeneId":"100616332"},{"alias":"hsa-mir-219b","entrezGeneId":"100616335"},{"alias":"mir-219b","entrezGeneId":"100616335"},{"alias":"MIR2964A","entrezGeneId":"100616335"},{"alias":"mir-4747","entrezGeneId":"100616337"},{"alias":"mir-4435-2","entrezGeneId":"100616341"},{"alias":"mir-4638","entrezGeneId":"100616342"},{"alias":"mir-4677","entrezGeneId":"100616343"},{"alias":"mir-4649","entrezGeneId":"100616346"},{"alias":"mir-4659a","entrezGeneId":"100616348"},{"alias":"mir-4451","entrezGeneId":"100616349"},{"alias":"mir-550a-3","entrezGeneId":"100616354"},{"alias":"mir-4800","entrezGeneId":"100616358"},{"alias":"mir-2467","entrezGeneId":"100616360"},{"alias":"mir-4785","entrezGeneId":"100616364"},{"alias":"mir-4688","entrezGeneId":"100616368"},{"alias":"mir-4746","entrezGeneId":"100616371"},{"alias":"mir-4492","entrezGeneId":"100616376"},{"alias":"mir-4511","entrezGeneId":"100616379"},{"alias":"mir-4732","entrezGeneId":"100616385"},{"alias":"mir-4654","entrezGeneId":"100616386"},{"alias":"mir-4723","entrezGeneId":"100616388"},{"alias":"mir-4657","entrezGeneId":"100616393"},{"alias":"hsa-mir-4444-1","entrezGeneId":"100616394"},{"alias":"MIR4444","entrezGeneId":"100616394"},{"alias":"mir-4440","entrezGeneId":"100616397"},{"alias":"mir-4436a","entrezGeneId":"100616399"},{"alias":"mir-3198-2","entrezGeneId":"100616400"},{"alias":"hsa-mir-4520-1","entrezGeneId":"100616401"},{"alias":"mir-4520-1","entrezGeneId":"100616401"},{"alias":"MIR4520A","entrezGeneId":"100616401"},{"alias":"mir-4691","entrezGeneId":"100616403"},{"alias":"mir-4515","entrezGeneId":"100616404"},{"alias":"mir-4518","entrezGeneId":"100616405"},{"alias":"mir-4521","entrezGeneId":"100616406"},{"alias":"mir-4443","entrezGeneId":"100616407"},{"alias":"c10_A","entrezGeneId":"100616411"},{"alias":"M3.8","entrezGeneId":"100616411"},{"alias":"HML6-c12","entrezGeneId":"100616412"},{"alias":"mir-4727","entrezGeneId":"100616416"},{"alias":"mir-4786","entrezGeneId":"100616417"},{"alias":"mir-4689","entrezGeneId":"100616421"},{"alias":"mir-4707","entrezGeneId":"100616424"},{"alias":"mir-4748","entrezGeneId":"100616425"},{"alias":"mir-4755","entrezGeneId":"100616434"},{"alias":"mir-4449","entrezGeneId":"100616436"},{"alias":"c7_C","entrezGeneId":"100616443"},{"alias":"P1.10","entrezGeneId":"100616443"},{"alias":"c11_B","entrezGeneId":"100616444"},{"alias":"env","entrezGeneId":"100616444"},{"alias":"c19_A","entrezGeneId":"100616445"},{"alias":"mir-4725","entrezGeneId":"100616449"},{"alias":"mir-2682","entrezGeneId":"100616452"},{"alias":"mir-4497","entrezGeneId":"100616454"},{"alias":"mir-4476","entrezGeneId":"100616456"},{"alias":"mir-4745","entrezGeneId":"100616459"},{"alias":"HERV-HX","entrezGeneId":"100616461"},{"alias":"HML6-c5","entrezGeneId":"100616462"},{"alias":"hsa-mir-4520-2","entrezGeneId":"100616466"},{"alias":"mir-4520-2","entrezGeneId":"100616466"},{"alias":"MIR4520B","entrezGeneId":"100616466"},{"alias":"mir-4767","entrezGeneId":"100616467"},{"alias":"mir-4742","entrezGeneId":"100616468"},{"alias":"mir-4429","entrezGeneId":"100616469"},{"alias":"mir-4488","entrezGeneId":"100616470"},{"alias":"mir-4776-2","entrezGeneId":"100616472"},{"alias":"mir-4446","entrezGeneId":"100616476"},{"alias":"mir-4442","entrezGeneId":"100616477"},{"alias":"mir-4423","entrezGeneId":"100616481"},{"alias":"mir-4470","entrezGeneId":"100616484"},{"alias":"mir-4517","entrezGeneId":"100616487"},{"alias":"mir-4706","entrezGeneId":"100616490"},{"alias":"mir-378f","entrezGeneId":"100616492"},{"alias":"C187-23","entrezGeneId":"100616496"},{"alias":"pol","entrezGeneId":"100616496"},{"alias":"pTR2","entrezGeneId":"100616497"},{"alias":"mir-378e","entrezGeneId":"100616498"},{"alias":"mir-4435-1","entrezGeneId":"100616499"},{"alias":"DNM3-AS1","entrezGeneId":"100628315"},{"alias":"MIR199A2HG","entrezGeneId":"100628315"},{"alias":"hsa-mir-3155b","entrezGeneId":"100628560"},{"alias":"PARTICLE","entrezGeneId":"100630918"},{"alias":"USP6P2","entrezGeneId":"100631253"},{"alias":"SPRIGHTLY","entrezGeneId":"100642175"},{"alias":"NCRNA00266-4P","entrezGeneId":"100642176"},{"alias":"NCRNA00266D","entrezGeneId":"100642176"},{"alias":"NCRNA00266Y2","entrezGeneId":"100642176"},{"alias":"RAET1G-AS1","entrezGeneId":"100652739"},{"alias":"C16orf98","entrezGeneId":"100652740"},{"alias":"PYCARDOS","entrezGeneId":"100652740"},{"alias":"bA592B15.7","entrezGeneId":"100652748"},{"alias":"RUNDC2B","entrezGeneId":"100652781"},{"alias":"RUNDC2L","entrezGeneId":"100652781"},{"alias":"HP07349","entrezGeneId":"100652853"},{"alias":"LINC00422","entrezGeneId":"100652865"},{"alias":"ALOX15P","entrezGeneId":"100652883"},{"alias":"HP09025","entrezGeneId":"100652929"},{"alias":"PS7","entrezGeneId":"100653053"},{"alias":"T2R68P","entrezGeneId":"100653053"},{"alias":"C17DELp13.1","entrezGeneId":"100653374"},{"alias":"ASG","entrezGeneId":"100653377"},{"alias":"DEL17q24.3","entrezGeneId":"100653378"},{"alias":"DUP17q24.3","entrezGeneId":"100653378"},{"alias":"CXDELq38","entrezGeneId":"100653379"},{"alias":"C7DELq11.23","entrezGeneId":"100653380"},{"alias":"C13DELq14","entrezGeneId":"100653382"},{"alias":"C3DELpterp25","entrezGeneId":"100653385"},{"alias":"DDC8","entrezGeneId":"100653515"},{"alias":"KIAA1731NL","entrezGeneId":"100653515"},{"alias":"MRT21","entrezGeneId":"100689013"},{"alias":"p18","entrezGeneId":"100689229"},{"alias":"C8DELq21.11","entrezGeneId":"100689491"},{"alias":"PCA1","entrezGeneId":"100750225"},{"alias":"PCAT-1","entrezGeneId":"100750225"},{"alias":"5'aHIF-1A","entrezGeneId":"100750246"},{"alias":"5'aHIF1alpha","entrezGeneId":"100750246"},{"alias":"3'aHIF-1A","entrezGeneId":"100750247"},{"alias":"aHIF","entrezGeneId":"100750247"},{"alias":"HTT-AS1","entrezGeneId":"100750326"},{"alias":"HTTAS","entrezGeneId":"100750326"},{"alias":"KLHL7-AS1","entrezGeneId":"100775104"},{"alias":"PLATAK","entrezGeneId":"100775104"},{"alias":"c1_C","entrezGeneId":"100775105"},{"alias":"env","entrezGeneId":"100775105"},{"alias":"HERV-K18","entrezGeneId":"100775105"},{"alias":"PR","entrezGeneId":"100775105"},{"alias":"Protease","entrezGeneId":"100775105"},{"alias":"Proteinase","entrezGeneId":"100775105"},{"alias":"LUST","entrezGeneId":"100775107"},{"alias":"C7DELq","entrezGeneId":"100820631"},{"alias":"DEL7q","entrezGeneId":"100820631"},{"alias":"C15DELq25","entrezGeneId":"100820632"},{"alias":"C2DELq23.1","entrezGeneId":"100820633"},{"alias":"GCOM1","entrezGeneId":"100820829"},{"alias":"Gup","entrezGeneId":"100820829"},{"alias":"MYOZAP","entrezGeneId":"100820829"},{"alias":"mir-5188","entrezGeneId":"100847004"},{"alias":"mir-5004","entrezGeneId":"100847012"},{"alias":"mir-5091","entrezGeneId":"100847023"},{"alias":"mir-5001","entrezGeneId":"100847037"},{"alias":"mir-5010","entrezGeneId":"100847046"},{"alias":"mir-4999","entrezGeneId":"100847049"},{"alias":"mir-5194","entrezGeneId":"100847051"},{"alias":"hsa-mir-664b","entrezGeneId":"100847052"},{"alias":"mir-664b","entrezGeneId":"100847052"},{"alias":"MIR644B","entrezGeneId":"100847052"},{"alias":"mir-5189","entrezGeneId":"100847057"},{"alias":"mir-5196","entrezGeneId":"100847070"},{"alias":"mir-5090","entrezGeneId":"100847073"},{"alias":"mir-5088","entrezGeneId":"100847074"},{"alias":"mir-5193","entrezGeneId":"100847079"},{"alias":"mir-5703","entrezGeneId":"100847081"},{"alias":"mir-5699","entrezGeneId":"100847086"},{"alias":"mir-5187","entrezGeneId":"100847090"},{"alias":"C17DELq11.2","entrezGeneId":"100852404"},{"alias":"LA16c-3G11.5","entrezGeneId":"100852406"},{"alias":"OLFRA06","entrezGeneId":"100856809"},{"alias":"OR17-25","entrezGeneId":"100856809"},{"alias":"OR25","entrezGeneId":"100856809"},{"alias":"TCEB2P3","entrezGeneId":"100856810"},{"alias":"C16DELp11.2","entrezGeneId":"100859928"},{"alias":"DEL16p.11.2","entrezGeneId":"100859928"},{"alias":"HCCAT2","entrezGeneId":"100859930"},{"alias":"LINC-HEIH","entrezGeneId":"100859930"},{"alias":"LINC00848","entrezGeneId":"100859930"},{"alias":"lncRNA-HEIH","entrezGeneId":"100859930"},{"alias":"CCA5","entrezGeneId":"100861439"},{"alias":"c3_D","entrezGeneId":"100861467"},{"alias":"PROX1UT","entrezGeneId":"100861504"},{"alias":"Yiya","entrezGeneId":"100861504"},{"alias":"LSAMP-AS2","entrezGeneId":"100861506"},{"alias":"LRRC3-AS1","entrezGeneId":"100861510"},{"alias":"p21NAT","entrezGeneId":"100861512"},{"alias":"GDNFOS","entrezGeneId":"100861519"},{"alias":"RNA45S5","entrezGeneId":"100861532"},{"alias":"CYP3A7-3AP1","entrezGeneId":"100861540"},{"alias":"CYP3A7-CYP3AP1","entrezGeneId":"100861540"},{"alias":"CYP3A7.1L","entrezGeneId":"100861540"},{"alias":"DOCK9-AS2","entrezGeneId":"100861541"},{"alias":"NAPINK1","entrezGeneId":"100861548"},{"alias":"PINK1-AS1","entrezGeneId":"100861548"},{"alias":"PINK1AS","entrezGeneId":"100861548"},{"alias":"HI-LNC71","entrezGeneId":"100861550"},{"alias":"PDX1-AS1","entrezGeneId":"100861550"},{"alias":"PLUTO","entrezGeneId":"100861550"},{"alias":"ATXN7-AS1","entrezGeneId":"100861563"},{"alias":"IFITMD8","entrezGeneId":"100862671"},{"alias":"c11_A","entrezGeneId":"100862683"},{"alias":"PR","entrezGeneId":"100862683"},{"alias":"Protease","entrezGeneId":"100862683"},{"alias":"Proteinase","entrezGeneId":"100862683"},{"alias":"c22_A","entrezGeneId":"100862684"},{"alias":"HERV-K101","entrezGeneId":"100862684"},{"alias":"PR","entrezGeneId":"100862684"},{"alias":"Protease","entrezGeneId":"100862684"},{"alias":"Proteinase","entrezGeneId":"100862684"},{"alias":"envK3","entrezGeneId":"100862685"},{"alias":"HERV-K(C19)","entrezGeneId":"100862685"},{"alias":"P1.8","entrezGeneId":"100862685"},{"alias":"polymerase","entrezGeneId":"100862685"},{"alias":"PR","entrezGeneId":"100862685"},{"alias":"Protease","entrezGeneId":"100862685"},{"alias":"Proteinase","entrezGeneId":"100862685"},{"alias":"c7_B","entrezGeneId":"100862687"},{"alias":"c3_E","entrezGeneId":"100862688"},{"alias":"N8.4","entrezGeneId":"100862688"},{"alias":"polymerase","entrezGeneId":"100862688"},{"alias":"c3_B","entrezGeneId":"100862689"},{"alias":"c1_A","entrezGeneId":"100862690"},{"alias":"envR(b)","entrezGeneId":"100862693"},{"alias":"envT","entrezGeneId":"100862694"},{"alias":"CL2","entrezGeneId":"100862695"},{"alias":"CL4","entrezGeneId":"100862696"},{"alias":"HML6-c14","entrezGeneId":"100862697"},{"alias":"PP3227","entrezGeneId":"100862697"},{"alias":"LINC00441","entrezGeneId":"100862704"},{"alias":"ncRNA-RB1","entrezGeneId":"100862704"},{"alias":"DDX53-AS1","entrezGeneId":"100873065"},{"alias":"PTCHD1AS1","entrezGeneId":"100873065"},{"alias":"PTCHD1AS2","entrezGeneId":"100873065"},{"alias":"HsT4010","entrezGeneId":"100873202"},{"alias":"RN5S18","entrezGeneId":"100873273"},{"alias":"RN5S19","entrezGeneId":"100873274"},{"alias":"RN5S20","entrezGeneId":"100873275"},{"alias":"RN5S21","entrezGeneId":"100873276"},{"alias":"RN5S22","entrezGeneId":"100873277"},{"alias":"RN5S23","entrezGeneId":"100873278"},{"alias":"RN5S40","entrezGeneId":"100873279"},{"alias":"RN5S41","entrezGeneId":"100873280"},{"alias":"RN5S42","entrezGeneId":"100873281"},{"alias":"RN5S43","entrezGeneId":"100873282"},{"alias":"RN5S44","entrezGeneId":"100873283"},{"alias":"RN5S45","entrezGeneId":"100873284"},{"alias":"RN5S46","entrezGeneId":"100873285"},{"alias":"RN5S47","entrezGeneId":"100873286"},{"alias":"RN5S48","entrezGeneId":"100873287"},{"alias":"RN5S49","entrezGeneId":"100873288"},{"alias":"RN5S51","entrezGeneId":"100873289"},{"alias":"RN5S52","entrezGeneId":"100873290"},{"alias":"RN5S53","entrezGeneId":"100873291"},{"alias":"RN5S54","entrezGeneId":"100873292"},{"alias":"RN5S55","entrezGeneId":"100873293"},{"alias":"RN5S56","entrezGeneId":"100873294"},{"alias":"RN5S60","entrezGeneId":"100873295"},{"alias":"RN5S61","entrezGeneId":"100873296"},{"alias":"RN5S62","entrezGeneId":"100873297"},{"alias":"RN5S63","entrezGeneId":"100873298"},{"alias":"RN5S64","entrezGeneId":"100873299"},{"alias":"RN5S65","entrezGeneId":"100873300"},{"alias":"RN5S66","entrezGeneId":"100873301"},{"alias":"RN5S67","entrezGeneId":"100873302"},{"alias":"RN5S68","entrezGeneId":"100873303"},{"alias":"RN5S69","entrezGeneId":"100873304"},{"alias":"RN5S71","entrezGeneId":"100873305"},{"alias":"RN5S72","entrezGeneId":"100873306"},{"alias":"RN5S73","entrezGeneId":"100873307"},{"alias":"RN5S74","entrezGeneId":"100873308"},{"alias":"RN5S75","entrezGeneId":"100873309"},{"alias":"RN5S76","entrezGeneId":"100873310"},{"alias":"RN5S77","entrezGeneId":"100873311"},{"alias":"RN5S78","entrezGeneId":"100873312"},{"alias":"RN5S79","entrezGeneId":"100873313"},{"alias":"RN5S80","entrezGeneId":"100873314"},{"alias":"RN5S82","entrezGeneId":"100873316"},{"alias":"RN5S84","entrezGeneId":"100873317"},{"alias":"RN5S85","entrezGeneId":"100873318"},{"alias":"RN5S86","entrezGeneId":"100873319"},{"alias":"RN5S87","entrezGeneId":"100873320"},{"alias":"RN5S88","entrezGeneId":"100873321"},{"alias":"RN5S89","entrezGeneId":"100873322"},{"alias":"RN5S90","entrezGeneId":"100873323"},{"alias":"RN5S91","entrezGeneId":"100873324"},{"alias":"RN5S92","entrezGeneId":"100873325"},{"alias":"RN5S93","entrezGeneId":"100873326"},{"alias":"RN5S94","entrezGeneId":"100873327"},{"alias":"RN5S95","entrezGeneId":"100873328"},{"alias":"RN5S96","entrezGeneId":"100873329"},{"alias":"RN5S97","entrezGeneId":"100873330"},{"alias":"RN5S98","entrezGeneId":"100873331"},{"alias":"RN5-8S3","entrezGeneId":"100873334"},{"alias":"RN5-8S5","entrezGeneId":"100873335"},{"alias":"RN5-8S6","entrezGeneId":"100873336"},{"alias":"RN5S24","entrezGeneId":"100873356"},{"alias":"RN5S25","entrezGeneId":"100873357"},{"alias":"RN5S26","entrezGeneId":"100873358"},{"alias":"RN5S27","entrezGeneId":"100873359"},{"alias":"RN5S28","entrezGeneId":"100873360"},{"alias":"RN5S29","entrezGeneId":"100873361"},{"alias":"RN5S30","entrezGeneId":"100873362"},{"alias":"RN5S31","entrezGeneId":"100873363"},{"alias":"RN5S33","entrezGeneId":"100873365"},{"alias":"RN5S34","entrezGeneId":"100873366"},{"alias":"RN5S35","entrezGeneId":"100873367"},{"alias":"RN5S36","entrezGeneId":"100873368"},{"alias":"RN5S37","entrezGeneId":"100873369"},{"alias":"RN5S38","entrezGeneId":"100873370"},{"alias":"RN5S39","entrezGeneId":"100873371"},{"alias":"RN5S101","entrezGeneId":"100873372"},{"alias":"RN5S102","entrezGeneId":"100873373"},{"alias":"RN5S103","entrezGeneId":"100873374"},{"alias":"RN5S104","entrezGeneId":"100873375"},{"alias":"RN5S105","entrezGeneId":"100873376"},{"alias":"RN5S107","entrezGeneId":"100873377"},{"alias":"RN5S108","entrezGeneId":"100873378"},{"alias":"RN5S109","entrezGeneId":"100873379"},{"alias":"RN5S110","entrezGeneId":"100873380"},{"alias":"RN5S111","entrezGeneId":"100873381"},{"alias":"RN5S112","entrezGeneId":"100873382"},{"alias":"RN5S113","entrezGeneId":"100873383"},{"alias":"RN5S114","entrezGeneId":"100873384"},{"alias":"RN5S115","entrezGeneId":"100873385"},{"alias":"RN5S116","entrezGeneId":"100873386"},{"alias":"RN5S117","entrezGeneId":"100873387"},{"alias":"RN5S118","entrezGeneId":"100873388"},{"alias":"RN5S119","entrezGeneId":"100873389"},{"alias":"RN5S120","entrezGeneId":"100873390"},{"alias":"RN5S121","entrezGeneId":"100873391"},{"alias":"RN5S122","entrezGeneId":"100873392"},{"alias":"RN5S123","entrezGeneId":"100873393"},{"alias":"RN5S124","entrezGeneId":"100873394"},{"alias":"RN5S125","entrezGeneId":"100873395"},{"alias":"RN5S126","entrezGeneId":"100873396"},{"alias":"RN5S127","entrezGeneId":"100873397"},{"alias":"RN5S128","entrezGeneId":"100873398"},{"alias":"RN5S129","entrezGeneId":"100873399"},{"alias":"RN5S131","entrezGeneId":"100873400"},{"alias":"RN5S132","entrezGeneId":"100873401"},{"alias":"RN5S133","entrezGeneId":"100873402"},{"alias":"RN5S135","entrezGeneId":"100873403"},{"alias":"RN5S136","entrezGeneId":"100873404"},{"alias":"RN5S137","entrezGeneId":"100873405"},{"alias":"RN5S138","entrezGeneId":"100873406"},{"alias":"RN5S139","entrezGeneId":"100873407"},{"alias":"RN5S141","entrezGeneId":"100873408"},{"alias":"RN5S142","entrezGeneId":"100873409"},{"alias":"RN5S143","entrezGeneId":"100873410"},{"alias":"RN5S144","entrezGeneId":"100873411"},{"alias":"RN5S145","entrezGeneId":"100873412"},{"alias":"RN5S146","entrezGeneId":"100873413"},{"alias":"RN5S147","entrezGeneId":"100873414"},{"alias":"RN5S148","entrezGeneId":"100873415"},{"alias":"RN5S150","entrezGeneId":"100873416"},{"alias":"RN5S151","entrezGeneId":"100873417"},{"alias":"RN5S152","entrezGeneId":"100873418"},{"alias":"RN5S153","entrezGeneId":"100873419"},{"alias":"RN5S154","entrezGeneId":"100873420"},{"alias":"RN5S155","entrezGeneId":"100873421"},{"alias":"RN5S156","entrezGeneId":"100873422"},{"alias":"RN5S157","entrezGeneId":"100873423"},{"alias":"RN5S158","entrezGeneId":"100873424"},{"alias":"RN5S159","entrezGeneId":"100873425"},{"alias":"RN5S160","entrezGeneId":"100873426"},{"alias":"RN5S162","entrezGeneId":"100873427"},{"alias":"RN5S163","entrezGeneId":"100873428"},{"alias":"RN5S164","entrezGeneId":"100873429"},{"alias":"RN5S165","entrezGeneId":"100873430"},{"alias":"RN5S166","entrezGeneId":"100873431"},{"alias":"RN5S167","entrezGeneId":"100873432"},{"alias":"RN5S168","entrezGeneId":"100873433"},{"alias":"RN5S169","entrezGeneId":"100873434"},{"alias":"RN5S170","entrezGeneId":"100873435"},{"alias":"RN5S171","entrezGeneId":"100873436"},{"alias":"RN5S173","entrezGeneId":"100873437"},{"alias":"RN5S176","entrezGeneId":"100873438"},{"alias":"RN5S177","entrezGeneId":"100873439"},{"alias":"RN5S178","entrezGeneId":"100873440"},{"alias":"RN5S179","entrezGeneId":"100873441"},{"alias":"RN5S180","entrezGeneId":"100873442"},{"alias":"RN5S181","entrezGeneId":"100873443"},{"alias":"RN5S182","entrezGeneId":"100873444"},{"alias":"RN5S183","entrezGeneId":"100873445"},{"alias":"RN5S184","entrezGeneId":"100873446"},{"alias":"RN5S185","entrezGeneId":"100873447"},{"alias":"RN5S186","entrezGeneId":"100873448"},{"alias":"RN5S187","entrezGeneId":"100873449"},{"alias":"RN5S188","entrezGeneId":"100873450"},{"alias":"RN5S189","entrezGeneId":"100873451"},{"alias":"RN5S190","entrezGeneId":"100873452"},{"alias":"RN5S191","entrezGeneId":"100873453"},{"alias":"RN5S192","entrezGeneId":"100873454"},{"alias":"RN5S193","entrezGeneId":"100873455"},{"alias":"RN5S194","entrezGeneId":"100873456"},{"alias":"RN5S195","entrezGeneId":"100873457"},{"alias":"RN5S196","entrezGeneId":"100873458"},{"alias":"RN5S197","entrezGeneId":"100873459"},{"alias":"RN5S198","entrezGeneId":"100873460"},{"alias":"RN5S200","entrezGeneId":"100873461"},{"alias":"RN5S201","entrezGeneId":"100873462"},{"alias":"RN5S202","entrezGeneId":"100873463"},{"alias":"RN5S203","entrezGeneId":"100873464"},{"alias":"RN5S204","entrezGeneId":"100873465"},{"alias":"RN5S205","entrezGeneId":"100873466"},{"alias":"RN5S207","entrezGeneId":"100873467"},{"alias":"RN5S208","entrezGeneId":"100873468"},{"alias":"RN5S209","entrezGeneId":"100873469"},{"alias":"RN5S210","entrezGeneId":"100873470"},{"alias":"RN5S211","entrezGeneId":"100873471"},{"alias":"RN5S212","entrezGeneId":"100873472"},{"alias":"RN5S213","entrezGeneId":"100873473"},{"alias":"RN5S214","entrezGeneId":"100873474"},{"alias":"RN5S215","entrezGeneId":"100873475"},{"alias":"RN5S216","entrezGeneId":"100873476"},{"alias":"RN5S217","entrezGeneId":"100873477"},{"alias":"RN5S218","entrezGeneId":"100873478"},{"alias":"RN5S219","entrezGeneId":"100873479"},{"alias":"RN5S220","entrezGeneId":"100873480"},{"alias":"RN5S222","entrezGeneId":"100873481"},{"alias":"RN5S223","entrezGeneId":"100873482"},{"alias":"RN5S224","entrezGeneId":"100873483"},{"alias":"RN5S225","entrezGeneId":"100873484"},{"alias":"RN5S227","entrezGeneId":"100873485"},{"alias":"RN5S228","entrezGeneId":"100873486"},{"alias":"RN5S229","entrezGeneId":"100873487"},{"alias":"RN5S230","entrezGeneId":"100873488"},{"alias":"RN5S231","entrezGeneId":"100873489"},{"alias":"RN5S232","entrezGeneId":"100873490"},{"alias":"RN5S233","entrezGeneId":"100873491"},{"alias":"RN5S234","entrezGeneId":"100873492"},{"alias":"RN5S235","entrezGeneId":"100873493"},{"alias":"RN5S236","entrezGeneId":"100873494"},{"alias":"RN5S237","entrezGeneId":"100873495"},{"alias":"RN5S238","entrezGeneId":"100873496"},{"alias":"RN5S239","entrezGeneId":"100873497"},{"alias":"RN5S240","entrezGeneId":"100873498"},{"alias":"RN5S241","entrezGeneId":"100873499"},{"alias":"RN5S242","entrezGeneId":"100873500"},{"alias":"RN5S245","entrezGeneId":"100873501"},{"alias":"RN5S246","entrezGeneId":"100873502"},{"alias":"RN5S247","entrezGeneId":"100873503"},{"alias":"RN5S248","entrezGeneId":"100873504"},{"alias":"RN5S249","entrezGeneId":"100873505"},{"alias":"RN5S250","entrezGeneId":"100873506"},{"alias":"RN5S251","entrezGeneId":"100873507"},{"alias":"RN5S252","entrezGeneId":"100873508"},{"alias":"RN5S255","entrezGeneId":"100873509"},{"alias":"RN5S256","entrezGeneId":"100873510"},{"alias":"RN5S257","entrezGeneId":"100873511"},{"alias":"RN5S258","entrezGeneId":"100873512"},{"alias":"RN5S259","entrezGeneId":"100873513"},{"alias":"RN5S260","entrezGeneId":"100873514"},{"alias":"RN5S261","entrezGeneId":"100873515"},{"alias":"RN5S262","entrezGeneId":"100873516"},{"alias":"RN5S264","entrezGeneId":"100873517"},{"alias":"RN5S265","entrezGeneId":"100873518"},{"alias":"RN5S266","entrezGeneId":"100873519"},{"alias":"RN5S267","entrezGeneId":"100873520"},{"alias":"RN5S268","entrezGeneId":"100873521"},{"alias":"RN5S269","entrezGeneId":"100873522"},{"alias":"RN5S270","entrezGeneId":"100873523"},{"alias":"RN5S271","entrezGeneId":"100873524"},{"alias":"RN5S272","entrezGeneId":"100873525"},{"alias":"RN5S273","entrezGeneId":"100873526"},{"alias":"RN5S274","entrezGeneId":"100873527"},{"alias":"RN5S275","entrezGeneId":"100873528"},{"alias":"RN5S276","entrezGeneId":"100873529"},{"alias":"RN5S277","entrezGeneId":"100873530"},{"alias":"RN5S278","entrezGeneId":"100873531"},{"alias":"RN5S279","entrezGeneId":"100873532"},{"alias":"RN5S280","entrezGeneId":"100873533"},{"alias":"RN5S281","entrezGeneId":"100873534"},{"alias":"RN5S282","entrezGeneId":"100873535"},{"alias":"RN5S283","entrezGeneId":"100873536"},{"alias":"RN5S284","entrezGeneId":"100873537"},{"alias":"RN5S285","entrezGeneId":"100873538"},{"alias":"RN5S286","entrezGeneId":"100873539"},{"alias":"RN5S287","entrezGeneId":"100873540"},{"alias":"RN5S288","entrezGeneId":"100873541"},{"alias":"RN5S289","entrezGeneId":"100873542"},{"alias":"RN5S290","entrezGeneId":"100873543"},{"alias":"RN5S291","entrezGeneId":"100873544"},{"alias":"RN5S292","entrezGeneId":"100873545"},{"alias":"RN5S293","entrezGeneId":"100873546"},{"alias":"RN5S294","entrezGeneId":"100873547"},{"alias":"RN5S295","entrezGeneId":"100873548"},{"alias":"RN5S296","entrezGeneId":"100873549"},{"alias":"RN5S499","entrezGeneId":"100873550"},{"alias":"RN5S500","entrezGeneId":"100873551"},{"alias":"RN5S501","entrezGeneId":"100873552"},{"alias":"RN5S502","entrezGeneId":"100873553"},{"alias":"RN5S503","entrezGeneId":"100873554"},{"alias":"RN5S504","entrezGeneId":"100873555"},{"alias":"RN5S505","entrezGeneId":"100873556"},{"alias":"RN5S506","entrezGeneId":"100873557"},{"alias":"RN5S507","entrezGeneId":"100873558"},{"alias":"RN5S508","entrezGeneId":"100873559"},{"alias":"RN5S509","entrezGeneId":"100873560"},{"alias":"RN5S510","entrezGeneId":"100873561"},{"alias":"RN5S511","entrezGeneId":"100873562"},{"alias":"RN5S512","entrezGeneId":"100873563"},{"alias":"RN5S513","entrezGeneId":"100873564"},{"alias":"RN5S514","entrezGeneId":"100873565"},{"alias":"RN5S515","entrezGeneId":"100873566"},{"alias":"RN5S516","entrezGeneId":"100873567"},{"alias":"RN5S517","entrezGeneId":"100873568"},{"alias":"RN5S518","entrezGeneId":"100873569"},{"alias":"RN5S519","entrezGeneId":"100873570"},{"alias":"RN5-8S2","entrezGeneId":"100873571"},{"alias":"RN5-8S4","entrezGeneId":"100873572"},{"alias":"RN5-8S7","entrezGeneId":"100873573"},{"alias":"RN5S299","entrezGeneId":"100873574"},{"alias":"RN5S300","entrezGeneId":"100873575"},{"alias":"RN5S301","entrezGeneId":"100873576"},{"alias":"RN5S303","entrezGeneId":"100873577"},{"alias":"RN5S304","entrezGeneId":"100873578"},{"alias":"RN5S305","entrezGeneId":"100873579"},{"alias":"RN5S306","entrezGeneId":"100873580"},{"alias":"RN5S307","entrezGeneId":"100873581"},{"alias":"RN5S308","entrezGeneId":"100873582"},{"alias":"RN5S309","entrezGeneId":"100873583"},{"alias":"RN5S318","entrezGeneId":"100873584"},{"alias":"RN5S319","entrezGeneId":"100873585"},{"alias":"RN5S320","entrezGeneId":"100873586"},{"alias":"RN5S321","entrezGeneId":"100873587"},{"alias":"RN5S322","entrezGeneId":"100873588"},{"alias":"RN5S323","entrezGeneId":"100873589"},{"alias":"RN5S324","entrezGeneId":"100873590"},{"alias":"RN5S325","entrezGeneId":"100873591"},{"alias":"RN5S326","entrezGeneId":"100873592"},{"alias":"RN5S327","entrezGeneId":"100873593"},{"alias":"RN5S328","entrezGeneId":"100873594"},{"alias":"RN5S329","entrezGeneId":"100873595"},{"alias":"RN5S330","entrezGeneId":"100873596"},{"alias":"RN5S331","entrezGeneId":"100873597"},{"alias":"RN5S332","entrezGeneId":"100873598"},{"alias":"RN5S336","entrezGeneId":"100873599"},{"alias":"RN5S337","entrezGeneId":"100873600"},{"alias":"RN5S338","entrezGeneId":"100873601"},{"alias":"RN5S339","entrezGeneId":"100873602"},{"alias":"RN5S340","entrezGeneId":"100873603"},{"alias":"RN5S341","entrezGeneId":"100873604"},{"alias":"RN5S343","entrezGeneId":"100873605"},{"alias":"RN5S344","entrezGeneId":"100873606"},{"alias":"RN5S345","entrezGeneId":"100873607"},{"alias":"RN5S346","entrezGeneId":"100873608"},{"alias":"RN5S347","entrezGeneId":"100873609"},{"alias":"RN5S348","entrezGeneId":"100873610"},{"alias":"RN5S349","entrezGeneId":"100873611"},{"alias":"RN5S352","entrezGeneId":"100873612"},{"alias":"RN5S353","entrezGeneId":"100873613"},{"alias":"RN5S354","entrezGeneId":"100873614"},{"alias":"RN5S356","entrezGeneId":"100873615"},{"alias":"RN5S357","entrezGeneId":"100873616"},{"alias":"RN5S358","entrezGeneId":"100873617"},{"alias":"RN5S359","entrezGeneId":"100873618"},{"alias":"RN5S360","entrezGeneId":"100873619"},{"alias":"RN5S361","entrezGeneId":"100873620"},{"alias":"RN5S362","entrezGeneId":"100873621"},{"alias":"RN5S363","entrezGeneId":"100873622"},{"alias":"RN5S364","entrezGeneId":"100873623"},{"alias":"RN5S365","entrezGeneId":"100873624"},{"alias":"RN5S366","entrezGeneId":"100873625"},{"alias":"RN5S367","entrezGeneId":"100873626"},{"alias":"RN5S368","entrezGeneId":"100873627"},{"alias":"RN5S369","entrezGeneId":"100873628"},{"alias":"RN5S371","entrezGeneId":"100873629"},{"alias":"RN5S372","entrezGeneId":"100873630"},{"alias":"RN5S373","entrezGeneId":"100873631"},{"alias":"RN5S374","entrezGeneId":"100873632"},{"alias":"RN5S375","entrezGeneId":"100873633"},{"alias":"RN5S378","entrezGeneId":"100873634"},{"alias":"RN5S379","entrezGeneId":"100873635"},{"alias":"RN5S380","entrezGeneId":"100873636"},{"alias":"RN5S382","entrezGeneId":"100873637"},{"alias":"RN5S383","entrezGeneId":"100873638"},{"alias":"RN5S384","entrezGeneId":"100873639"},{"alias":"RN5S385","entrezGeneId":"100873640"},{"alias":"RN5S386","entrezGeneId":"100873641"},{"alias":"RN5S388","entrezGeneId":"100873642"},{"alias":"RN5S390","entrezGeneId":"100873643"},{"alias":"RN5S391","entrezGeneId":"100873644"},{"alias":"RN5S392","entrezGeneId":"100873645"},{"alias":"RN5S393","entrezGeneId":"100873646"},{"alias":"RN5S394","entrezGeneId":"100873647"},{"alias":"RN5S395","entrezGeneId":"100873648"},{"alias":"RN5S396","entrezGeneId":"100873649"},{"alias":"RN5S397","entrezGeneId":"100873650"},{"alias":"RN5S399","entrezGeneId":"100873652"},{"alias":"RN5S400","entrezGeneId":"100873653"},{"alias":"RN5S401","entrezGeneId":"100873654"},{"alias":"RN5S402","entrezGeneId":"100873655"},{"alias":"RN5S404","entrezGeneId":"100873656"},{"alias":"RN5S405","entrezGeneId":"100873657"},{"alias":"RN5S406","entrezGeneId":"100873658"},{"alias":"RN5S407","entrezGeneId":"100873659"},{"alias":"RN5S408","entrezGeneId":"100873660"},{"alias":"RN5S409","entrezGeneId":"100873661"},{"alias":"RN5S410","entrezGeneId":"100873662"},{"alias":"RN5S412","entrezGeneId":"100873663"},{"alias":"RN5S413","entrezGeneId":"100873664"},{"alias":"RN5S414","entrezGeneId":"100873665"},{"alias":"RN5S415","entrezGeneId":"100873666"},{"alias":"RN5S416","entrezGeneId":"100873667"},{"alias":"RN5S417","entrezGeneId":"100873668"},{"alias":"RN5S418","entrezGeneId":"100873669"},{"alias":"RN5S419","entrezGeneId":"100873670"},{"alias":"RN5S420","entrezGeneId":"100873671"},{"alias":"RN5S421","entrezGeneId":"100873672"},{"alias":"RN5S422","entrezGeneId":"100873673"},{"alias":"RN5S423","entrezGeneId":"100873674"},{"alias":"RN5S424","entrezGeneId":"100873675"},{"alias":"RN5S425","entrezGeneId":"100873676"},{"alias":"RN5S426","entrezGeneId":"100873677"},{"alias":"RN5S427","entrezGeneId":"100873678"},{"alias":"RN5S428","entrezGeneId":"100873679"},{"alias":"RN5S430","entrezGeneId":"100873680"},{"alias":"RN5S431","entrezGeneId":"100873681"},{"alias":"RN5S432","entrezGeneId":"100873682"},{"alias":"RN5S433","entrezGeneId":"100873683"},{"alias":"RN5S434","entrezGeneId":"100873684"},{"alias":"RN5S436","entrezGeneId":"100873685"},{"alias":"RN5S437","entrezGeneId":"100873686"},{"alias":"RN5S438","entrezGeneId":"100873687"},{"alias":"RN5S440","entrezGeneId":"100873688"},{"alias":"RN5S441","entrezGeneId":"100873689"},{"alias":"RN5S444","entrezGeneId":"100873690"},{"alias":"RN5S445","entrezGeneId":"100873691"},{"alias":"RN5S446","entrezGeneId":"100873692"},{"alias":"RN5S447","entrezGeneId":"100873693"},{"alias":"RN5S449","entrezGeneId":"100873694"},{"alias":"RN5S450","entrezGeneId":"100873695"},{"alias":"RN5S451","entrezGeneId":"100873696"},{"alias":"RN5S452","entrezGeneId":"100873697"},{"alias":"RN5S453","entrezGeneId":"100873698"},{"alias":"RN5S454","entrezGeneId":"100873699"},{"alias":"RN5S455","entrezGeneId":"100873700"},{"alias":"RN5S456","entrezGeneId":"100873701"},{"alias":"RN5S457","entrezGeneId":"100873702"},{"alias":"RN5S459","entrezGeneId":"100873703"},{"alias":"RN5S460","entrezGeneId":"100873704"},{"alias":"RN5S461","entrezGeneId":"100873705"},{"alias":"RN5S462","entrezGeneId":"100873706"},{"alias":"RN5S463","entrezGeneId":"100873707"},{"alias":"RN5S464","entrezGeneId":"100873708"},{"alias":"RN5S465","entrezGeneId":"100873709"},{"alias":"RN5S466","entrezGeneId":"100873710"},{"alias":"RN5S467","entrezGeneId":"100873711"},{"alias":"RN5S469","entrezGeneId":"100873712"},{"alias":"RN5S470","entrezGeneId":"100873713"},{"alias":"RN5S471","entrezGeneId":"100873714"},{"alias":"RN5S472","entrezGeneId":"100873715"},{"alias":"RN5S474","entrezGeneId":"100873716"},{"alias":"RN5S475","entrezGeneId":"100873717"},{"alias":"RN5S476","entrezGeneId":"100873718"},{"alias":"RN5S477","entrezGeneId":"100873719"},{"alias":"RN5S478","entrezGeneId":"100873720"},{"alias":"RN5S479","entrezGeneId":"100873721"},{"alias":"RN5S480","entrezGeneId":"100873722"},{"alias":"RN5S481","entrezGeneId":"100873723"},{"alias":"RN5S482","entrezGeneId":"100873724"},{"alias":"RN5S483","entrezGeneId":"100873725"},{"alias":"RN5S484","entrezGeneId":"100873726"},{"alias":"RN5S485","entrezGeneId":"100873727"},{"alias":"RN5S486","entrezGeneId":"100873728"},{"alias":"RN5S487","entrezGeneId":"100873729"},{"alias":"RN5S488","entrezGeneId":"100873730"},{"alias":"RN5S489","entrezGeneId":"100873731"},{"alias":"RN5S490","entrezGeneId":"100873732"},{"alias":"RN5S491","entrezGeneId":"100873733"},{"alias":"RN5S492","entrezGeneId":"100873734"},{"alias":"RN5S493","entrezGeneId":"100873735"},{"alias":"RN5S494","entrezGeneId":"100873736"},{"alias":"RN5S495","entrezGeneId":"100873737"},{"alias":"RN5S496","entrezGeneId":"100873738"},{"alias":"RN5S497","entrezGeneId":"100873739"},{"alias":"RNU6-31","entrezGeneId":"100873740"},{"alias":"RNU6-6","entrezGeneId":"100873740"},{"alias":"RNU6-26","entrezGeneId":"100873741"},{"alias":"RNU6-8","entrezGeneId":"100873741"},{"alias":"RNU6-10","entrezGeneId":"100873745"},{"alias":"RNU6-14","entrezGeneId":"100873746"},{"alias":"RNU6-30","entrezGeneId":"100873747"},{"alias":"RNU6-33","entrezGeneId":"100873748"},{"alias":"RNU6-34","entrezGeneId":"100873749"},{"alias":"RNU6-35","entrezGeneId":"100873750"},{"alias":"RNU6-16","entrezGeneId":"100873753"},{"alias":"RNU6-19","entrezGeneId":"100873754"},{"alias":"RNU6-23","entrezGeneId":"100873755"},{"alias":"RNU6-28","entrezGeneId":"100873756"},{"alias":"RNU6-36","entrezGeneId":"100873757"},{"alias":"RNU6-39","entrezGeneId":"100873758"},{"alias":"RNU6-45","entrezGeneId":"100873759"},{"alias":"RNU6-46","entrezGeneId":"100873760"},{"alias":"RNU6-52","entrezGeneId":"100873761"},{"alias":"RNU6-53","entrezGeneId":"100873762"},{"alias":"RNU6-55","entrezGeneId":"100873763"},{"alias":"RNU6-56","entrezGeneId":"100873764"},{"alias":"RNU6-57","entrezGeneId":"100873765"},{"alias":"RNU6-58","entrezGeneId":"100873766"},{"alias":"RNU6-59","entrezGeneId":"100873767"},{"alias":"RNU6-63","entrezGeneId":"100873768"},{"alias":"RNU6-64","entrezGeneId":"100873769"},{"alias":"RNU6-66","entrezGeneId":"100873770"},{"alias":"RNU6-67","entrezGeneId":"100873771"},{"alias":"RNU6-68","entrezGeneId":"100873772"},{"alias":"RNU6-69","entrezGeneId":"100873773"},{"alias":"RNU6-71","entrezGeneId":"100873774"},{"alias":"RNU6-72","entrezGeneId":"100873775"},{"alias":"RNU6-75","entrezGeneId":"100873776"},{"alias":"RNU6-1002P","entrezGeneId":"100873777"},{"alias":"RNU6-76","entrezGeneId":"100873777"},{"alias":"RNU6-78","entrezGeneId":"100873778"},{"alias":"RNU6-79","entrezGeneId":"100873779"},{"alias":"RNU6-81","entrezGeneId":"100873780"},{"alias":"RNU6-82","entrezGeneId":"100873781"},{"alias":"RNU6-83","entrezGeneId":"100873782"},{"alias":"MOBKL1BP2","entrezGeneId":"100873854"},{"alias":"HBII-85-30","entrezGeneId":"100873856"},{"alias":"HBII-52-46","entrezGeneId":"100873857"},{"alias":"U1.64","entrezGeneId":"100873860"},{"alias":"U1.41","entrezGeneId":"100873865"},{"alias":"MOBKL1BP1","entrezGeneId":"100873874"},{"alias":"TRNAV38","entrezGeneId":"100873876"},{"alias":"MYB-AS","entrezGeneId":"100873904"},{"alias":"MYBAS","entrezGeneId":"100873904"},{"alias":"NCRNA00209","entrezGeneId":"100873904"},{"alias":"FABP5L14","entrezGeneId":"100873957"},{"alias":"FABP5L15","entrezGeneId":"100873958"},{"alias":"TRNAN38","entrezGeneId":"100873961"},{"alias":"NCRNA00278","entrezGeneId":"100873962"},{"alias":"NCRNA00279","entrezGeneId":"100873963"},{"alias":"NCRNA00280","entrezGeneId":"100873964"},{"alias":"MED4-AS","entrezGeneId":"100873965"},{"alias":"KCNC4-AS1","entrezGeneId":"100873974"},{"alias":"MED14-AS1","entrezGeneId":"100873985"},{"alias":"MEIS1-AS1","entrezGeneId":"100873998"},{"alias":"pal3","entrezGeneId":"100874009"},{"alias":"SGOL1-AS1","entrezGeneId":"100874028"},{"alias":"WDR52-AS1","entrezGeneId":"100874029"},{"alias":"FAL1","entrezGeneId":"100874054"},{"alias":"LINC00568","entrezGeneId":"100874054"},{"alias":"ncRNA-a1","entrezGeneId":"100874054"},{"alias":"ncRNA-a5","entrezGeneId":"100874055"},{"alias":"NLGN4Y-AS","entrezGeneId":"100874056"},{"alias":"NLGN4YAS","entrezGeneId":"100874056"},{"alias":"NCRNA00283","entrezGeneId":"100874057"},{"alias":"COX10-AS","entrezGeneId":"100874058"},{"alias":"COX10AS","entrezGeneId":"100874058"},{"alias":"NCRNA00297","entrezGeneId":"100874059"},{"alias":"SMAD9-AS1","entrezGeneId":"100874072"},{"alias":"EIF2B5-AS1","entrezGeneId":"100874079"},{"alias":"tbp1","entrezGeneId":"100874116"},{"alias":"DDX26B-AS1","entrezGeneId":"100874118"},{"alias":"NCRNA00331","entrezGeneId":"100874126"},{"alias":"NCRNA00332","entrezGeneId":"100874127"},{"alias":"NCRNA00333","entrezGeneId":"100874128"},{"alias":"LncRNA00364","entrezGeneId":"100874145"},{"alias":"NKX2-2AS","entrezGeneId":"100874189"},{"alias":"DIPAH3-AS2","entrezGeneId":"100874196"},{"alias":"POU4F1-AS1","entrezGeneId":"100874222"},{"alias":"DCUN1D2-AS2","entrezGeneId":"100874229"},{"alias":"STARD13-AS2","entrezGeneId":"100874241"},{"alias":"ncRNA-a4","entrezGeneId":"100874253"},{"alias":"PDZK1IP1-AS1","entrezGeneId":"100874253"},{"alias":"SCGB1D1P1","entrezGeneId":"100874258"},{"alias":"TMEM106A-AS1","entrezGeneId":"100874261"},{"alias":"LYST-IT2","entrezGeneId":"100874266"},{"alias":"EMCN-IT3","entrezGeneId":"100874275"},{"alias":"EMCN-IT2","entrezGeneId":"100874276"},{"alias":"NTM-IT3","entrezGeneId":"100874281"},{"alias":"bde1","entrezGeneId":"100874294"},{"alias":"TSSC1-IT1","entrezGeneId":"100874301"},{"alias":"HOXA-AS4","entrezGeneId":"100874323"},{"alias":"zag4","entrezGeneId":"100874326"},{"alias":"KCNMB2-IT1","entrezGeneId":"100874330"},{"alias":"KLHL22-IT1","entrezGeneId":"100874358"},{"alias":"RNYP1","entrezGeneId":"100874358"},{"alias":"HOXC-AS5","entrezGeneId":"100874366"},{"alias":"C13orf44-IT1","entrezGeneId":"100874377"},{"alias":"NCRNA00328-2P","entrezGeneId":"100874404"},{"alias":"NCRNA00328B","entrezGeneId":"100874404"},{"alias":"FAM106D","entrezGeneId":"100874406"},{"alias":"uaz98","entrezGeneId":"100874433"},{"alias":"DDX3YP2","entrezGeneId":"100874489"},{"alias":"RBMY1K","entrezGeneId":"100874497"},{"alias":"CYP2C9-de1b","entrezGeneId":"100874513"},{"alias":"TCEB2P4","entrezGeneId":"100874519"},{"alias":"DEL16q22","entrezGeneId":"100874527"},{"alias":"linc-MBOAT1-4","entrezGeneId":"100874531"},{"alias":"CXDUPq27.3q28","entrezGeneId":"100874533"},{"alias":"C17DUPq12","entrezGeneId":"100884129"},{"alias":"C17DELq12","entrezGeneId":"100884130"},{"alias":"LINC00586","entrezGeneId":"100885775"},{"alias":"lincRNA-RoR","entrezGeneId":"100885779"},{"alias":"lincRNA-ST8SIA3","entrezGeneId":"100885779"},{"alias":"ROR","entrezGeneId":"100885779"},{"alias":"C8DELq22.1","entrezGeneId":"100885786"},{"alias":"DEL8q22.1","entrezGeneId":"100885786"},{"alias":"C8DELq12q21","entrezGeneId":"100885787"},{"alias":"C11DELq13","entrezGeneId":"100885788"},{"alias":"DEL11q13","entrezGeneId":"100885788"},{"alias":"GS1-410F4.2","entrezGeneId":"100885789"},{"alias":"NEST","entrezGeneId":"100885789"},{"alias":"Tmevpg1","entrezGeneId":"100885789"},{"alias":"NCRNA00210","entrezGeneId":"100885798"},{"alias":"SNAP47-IT1","entrezGeneId":"100885800"},{"alias":"RN5S244","entrezGeneId":"100885864"},{"alias":"RN5S411","entrezGeneId":"100887740"},{"alias":"CXDELq21","entrezGeneId":"100887743"},{"alias":"RNU6-48","entrezGeneId":"100887744"},{"alias":"MRPS31P3","entrezGeneId":"100887750"},{"alias":"LINC00651","entrezGeneId":"100887755"},{"alias":"treRNA","entrezGeneId":"100887755"},{"alias":"AUTS14B","entrezGeneId":"100909384"},{"alias":"C16DUPp11.2","entrezGeneId":"100909384"},{"alias":"CXorf62","entrezGeneId":"100996279"},{"alias":"NCRNA00269","entrezGeneId":"100996279"},{"alias":"pasFOXD3","entrezGeneId":"100996301"},{"alias":"A26B1","entrezGeneId":"100996331"},{"alias":"CT104.5","entrezGeneId":"100996331"},{"alias":"POTE-15","entrezGeneId":"100996331"},{"alias":"POTE15","entrezGeneId":"100996331"},{"alias":"PRCAT47","entrezGeneId":"100996425"},{"alias":"LCAP","entrezGeneId":"100996465"},{"alias":"LINC01314","entrezGeneId":"100996492"},{"alias":"ITPR1-AS1","entrezGeneId":"100996539"},{"alias":"psiSSX1","entrezGeneId":"100996564"},{"alias":"IGLV8/OR8-1","entrezGeneId":"100996586"},{"alias":"IGLV8OR81","entrezGeneId":"100996586"},{"alias":"IGKV2/OR2-8","entrezGeneId":"100996600"},{"alias":"IGKV2OR28","entrezGeneId":"100996600"},{"alias":"CTC-360P9.3","entrezGeneId":"100996665"},{"alias":"CH17-189H20.1","entrezGeneId":"100996716"},{"alias":"KAP4.7","entrezGeneId":"100996750"},{"alias":"KRTAP4-7","entrezGeneId":"100996750"},{"alias":"KRTAP4.7","entrezGeneId":"100996750"},{"alias":"CH17-360D5.1","entrezGeneId":"100996758"},{"alias":"PREY","entrezGeneId":"100996939"},{"alias":"AT1","entrezGeneId":"101054525"},{"alias":"AT2","entrezGeneId":"101054525"},{"alias":"AT3","entrezGeneId":"101054525"},{"alias":"TRNAL48","entrezGeneId":"101056699"},{"alias":"TRNAQ49P","entrezGeneId":"101056699"},{"alias":"NADKD1-AS1","entrezGeneId":"101056700"},{"alias":"TCEB1P26","entrezGeneId":"101059905"},{"alias":"LCR16a9","entrezGeneId":"101059953"},{"alias":"GOP","entrezGeneId":"101060233"},{"alias":"PRC17","entrezGeneId":"101060389"},{"alias":"TBC1D3","entrezGeneId":"101060389"},{"alias":"TBC1D3A","entrezGeneId":"101060389"},{"alias":"TBC1D3H","entrezGeneId":"101060389"},{"alias":"HP08942","entrezGeneId":"101060544"},{"alias":"LINC-HELLP","entrezGeneId":"101101692"},{"alias":"lncHELLP","entrezGeneId":"101101692"},{"alias":"LINC00516","entrezGeneId":"101101776"},{"alias":"LINC-MD1","entrezGeneId":"101154644"},{"alias":"MIR133BHG","entrezGeneId":"101154644"},{"alias":"TCONS00024764","entrezGeneId":"101154687"},{"alias":"TCONS_00024764","entrezGeneId":"101154687"},{"alias":"PANDA","entrezGeneId":"101154753"},{"alias":"IFNAN","entrezGeneId":"101180976"},{"alias":"COX5BL6","entrezGeneId":"101234262"},{"alias":"RPS3AP","entrezGeneId":"101241875"},{"alias":"ATP5J2LP","entrezGeneId":"101241877"},{"alias":"KUCG1","entrezGeneId":"101241891"},{"alias":"lncRNA-LET","entrezGeneId":"101241892"},{"alias":"PTENP1as","entrezGeneId":"101243555"},{"alias":"PTENpg1-asRNA","entrezGeneId":"101243555"},{"alias":"C1DUPp31.3","entrezGeneId":"101290499"},{"alias":"DUP1p31.3","entrezGeneId":"101290499"},{"alias":"dJ155G6.3","entrezGeneId":"101290500"},{"alias":"SNAP23P","entrezGeneId":"101290500"},{"alias":"TIGD1L2","entrezGeneId":"101362076"},{"alias":"FCMTE4","entrezGeneId":"101409188"},{"alias":"EVX1-AS1","entrezGeneId":"101410536"},{"alias":"MMP24-AS1","entrezGeneId":"101410538"},{"alias":"RNU1-145","entrezGeneId":"101447996"},{"alias":"vU1.8","entrezGeneId":"101447996"},{"alias":"TCONS_00021856","entrezGeneId":"101515984"},{"alias":"linc-UBC1","entrezGeneId":"101669762"},{"alias":"LINC00912","entrezGeneId":"101669762"},{"alias":"onco-lncRNA-30","entrezGeneId":"101669762"},{"alias":"LINC00915","entrezGeneId":"101669763"},{"alias":"lncRNA-JADE","entrezGeneId":"101669763"},{"alias":"GPR1-AS1","entrezGeneId":"101669764"},{"alias":"GPR1AS","entrezGeneId":"101669764"},{"alias":"HCCAT3","entrezGeneId":"101669766"},{"alias":"uc002pyc","entrezGeneId":"101669766"},{"alias":"LINC00913","entrezGeneId":"101669767"},{"alias":"PCAT11","entrezGeneId":"101669767"},{"alias":"PCAT114","entrezGeneId":"101669767"},{"alias":"LOC101735302-LOC101752334-PILRB","entrezGeneId":"101752399"},{"alias":"CAPN10-AS1","entrezGeneId":"101752400"},{"alias":"locus959","entrezGeneId":"101752400"},{"alias":"LINC00873","entrezGeneId":"101805488"},{"alias":"NCCP1","entrezGeneId":"101805488"},{"alias":"ESCCAL-1","entrezGeneId":"101805492"},{"alias":"ESSCAL1","entrezGeneId":"101805492"},{"alias":"LINC00981","entrezGeneId":"101805492"},{"alias":"TRNAN-GUU","entrezGeneId":"101822346"},{"alias":"TRNAN37","entrezGeneId":"101822346"},{"alias":"CARLo-3","entrezGeneId":"101867536"},{"alias":"PCAT8","entrezGeneId":"101867536"},{"alias":"OCA7","entrezGeneId":"101926885"},{"alias":"DNAJB5-AS1","entrezGeneId":"101926900"},{"alias":"THCAT68","entrezGeneId":"101926941"},{"alias":"C8orf23","entrezGeneId":"101926947"},{"alias":"NCRNA00249","entrezGeneId":"101926947"},{"alias":"XLOC_006844","entrezGeneId":"101926947"},{"alias":"CCAT7","entrezGeneId":"101926987"},{"alias":"CTB-113P19.1","entrezGeneId":"101927096"},{"alias":"SPARC-AS1","entrezGeneId":"101927096"},{"alias":"CTB-12O2.1","entrezGeneId":"101927115"},{"alias":"TOP1-AS1","entrezGeneId":"101927117"},{"alias":"MYCLo-2","entrezGeneId":"101927125"},{"alias":"LINC01212","entrezGeneId":"101927152"},{"alias":"UCHL3-AS1","entrezGeneId":"101927155"},{"alias":"TCONS_00011314","entrezGeneId":"101927171"},{"alias":"XLOC_005327","entrezGeneId":"101927171"},{"alias":"LPHN3-AS1","entrezGeneId":"101927186"},{"alias":"TCONS_00021500","entrezGeneId":"101927195"},{"alias":"uc002xlx","entrezGeneId":"101927219"},{"alias":"CTB-118N6.3","entrezGeneId":"101927233"},{"alias":"HRAT56","entrezGeneId":"101927280"},{"alias":"MANEA-AS1","entrezGeneId":"101927288"},{"alias":"TCONS_00017722","entrezGeneId":"101927381"},{"alias":"PANO","entrezGeneId":"101927423"},{"alias":"XLOC_000303","entrezGeneId":"101927477"},{"alias":"MEOX2-AS1","entrezGeneId":"101927524"},{"alias":"lncRNA8975-1","entrezGeneId":"101927525"},{"alias":"TCONS_00013888","entrezGeneId":"101927525"},{"alias":"ANO7P1","entrezGeneId":"101927546"},{"alias":"C1orf224","entrezGeneId":"101927546"},{"alias":"TMEM16M","entrezGeneId":"101927546"},{"alias":"NCK1-AS1","entrezGeneId":"101927597"},{"alias":"SLC35G2-AS1","entrezGeneId":"101927597"},{"alias":"2G7","entrezGeneId":"101927624"},{"alias":"TCONS_00019134","entrezGeneId":"101927624"},{"alias":"LINC01379","entrezGeneId":"101927703"},{"alias":"TCONS_00011636","entrezGeneId":"101927703"},{"alias":"LL22NC03-75H12.2","entrezGeneId":"101927722"},{"alias":"CTD-2258A20.5","entrezGeneId":"101927726"},{"alias":"TH2-LCR","entrezGeneId":"101927761"},{"alias":"LINC01263","entrezGeneId":"101927774"},{"alias":"HRAT39","entrezGeneId":"101927922"},{"alias":"Epist","entrezGeneId":"101927953"},{"alias":"lnc-SPRR2D-1","entrezGeneId":"101927988"},{"alias":"HRAT13","entrezGeneId":"101927990"},{"alias":"BARX1-AS1","entrezGeneId":"101928040"},{"alias":"LINC01057","entrezGeneId":"101928079"},{"alias":"XLOC_000303","entrezGeneId":"101928079"},{"alias":"PCAN-R2","entrezGeneId":"101928099"},{"alias":"TCONS_00025127","entrezGeneId":"101928141"},{"alias":"LINC00600","entrezGeneId":"101928165"},{"alias":"CTB-41I6.2","entrezGeneId":"101928235"},{"alias":"BRCAT8","entrezGeneId":"101928292"},{"alias":"TCONS_00029157","entrezGeneId":"101928399"},{"alias":"FBXO3-AS1","entrezGeneId":"101928440"},{"alias":"MIR384HG","entrezGeneId":"101928469"},{"alias":"LINC01573","entrezGeneId":"101928483"},{"alias":"MIR4674HG","entrezGeneId":"101928483"},{"alias":"NALT","entrezGeneId":"101928483"},{"alias":"TCONS_l2_00029132","entrezGeneId":"101928483"},{"alias":"RBSG4","entrezGeneId":"101928484"},{"alias":"HP06981","entrezGeneId":"101928527"},{"alias":"C6orf229","entrezGeneId":"101928603"},{"alias":"TRPM2-AS1","entrezGeneId":"101928607"},{"alias":"CTC-436P18.1","entrezGeneId":"101928630"},{"alias":"C9orf141","entrezGeneId":"101928638"},{"alias":"lnc-MBL2-4","entrezGeneId":"101928687"},{"alias":"XLOC_012582","entrezGeneId":"101928710"},{"alias":"PRCAT37","entrezGeneId":"101928720"},{"alias":"Lnc-FAM46A-1","entrezGeneId":"101928770"},{"alias":"TCEB1P33","entrezGeneId":"101928827"},{"alias":"LA16c-444G7.2","entrezGeneId":"101928880"},{"alias":"AMER2-AS1","entrezGeneId":"101928922"},{"alias":"lncRHOXF1","entrezGeneId":"101928941"},{"alias":"TCONS_00017086","entrezGeneId":"101928941"},{"alias":"TCONS_l2_00021807","entrezGeneId":"101928971"},{"alias":"ZIM2as","entrezGeneId":"101929059"},{"alias":"GS1-120K12.4","entrezGeneId":"101929069"},{"alias":"GS1-204I12.1","entrezGeneId":"101929093"},{"alias":"TCONS_00021639","entrezGeneId":"101929121"},{"alias":"FAM233B","entrezGeneId":"101929127"},{"alias":"USP54-AS1","entrezGeneId":"101929145"},{"alias":"LEPREL1-AS1","entrezGeneId":"101929152"},{"alias":"TCONS_00000361","entrezGeneId":"101929184"},{"alias":"C13orf44-AS1","entrezGeneId":"101929212"},{"alias":"C3orf81-AS1","entrezGeneId":"101929212"},{"alias":"Boymaw","entrezGeneId":"101929222"},{"alias":"CVAT7","entrezGeneId":"101929302"},{"alias":"CTD-2201E9.1","entrezGeneId":"101929338"},{"alias":"CDC37L1-AS1","entrezGeneId":"101929351"},{"alias":"LA16c-366D3.1","entrezGeneId":"101929387"},{"alias":"C8orf50","entrezGeneId":"101929402"},{"alias":"LA16c-312E8.2","entrezGeneId":"101929440"},{"alias":"ElncRNA1","entrezGeneId":"101929441"},{"alias":"TC0101441","entrezGeneId":"101929441"},{"alias":"LA16c-329F2.1","entrezGeneId":"101929480"},{"alias":"NCRNA00211","entrezGeneId":"101929559"},{"alias":"LA16c-325D7.2","entrezGeneId":"101929566"},{"alias":"C10orf100","entrezGeneId":"101929590"},{"alias":"Em:AC010157.1","entrezGeneId":"101929590"},{"alias":"LA16c-380H5.3","entrezGeneId":"101929613"},{"alias":"C11orf39","entrezGeneId":"101929637"},{"alias":"MTMR3-AS1","entrezGeneId":"101929664"},{"alias":"hMINION","entrezGeneId":"101929726"},{"alias":"MINION","entrezGeneId":"101929726"},{"alias":"LA16c-390H2.4","entrezGeneId":"101929732"},{"alias":"CTD-2127H9.1","entrezGeneId":"101929768"},{"alias":"WI2-925H4.1","entrezGeneId":"101929780"},{"alias":"CH17-118O6.3","entrezGeneId":"101929798"},{"alias":"RNU1-102","entrezGeneId":"101954264"},{"alias":"RNU1-50","entrezGeneId":"101954264"},{"alias":"RNVU1-5","entrezGeneId":"101954264"},{"alias":"vU1.4","entrezGeneId":"101954264"},{"alias":"vU1.5","entrezGeneId":"101954264"},{"alias":"RNU1-37","entrezGeneId":"101954266"},{"alias":"vU1.14","entrezGeneId":"101954266"},{"alias":"RNU1-121","entrezGeneId":"101954267"},{"alias":"RNU1-66","entrezGeneId":"101954267"},{"alias":"RNVU1-16","entrezGeneId":"101954267"},{"alias":"vU1.15","entrezGeneId":"101954267"},{"alias":"vU1.16","entrezGeneId":"101954267"},{"alias":"RNU1-110","entrezGeneId":"101954268"},{"alias":"vU1.20","entrezGeneId":"101954268"},{"alias":"RNU1-127","entrezGeneId":"101954269"},{"alias":"vU1.17","entrezGeneId":"101954269"},{"alias":"U6-9","entrezGeneId":"101954271"},{"alias":"RNU1-113","entrezGeneId":"101954272"},{"alias":"RNU1-151","entrezGeneId":"101954272"},{"alias":"RNVU1-12","entrezGeneId":"101954272"},{"alias":"vU1.12","entrezGeneId":"101954272"},{"alias":"vU1.3","entrezGeneId":"101954272"},{"alias":"RNU1-10P","entrezGeneId":"101954273"},{"alias":"RNU1-53","entrezGeneId":"101954273"},{"alias":"RNU1P10","entrezGeneId":"101954273"},{"alias":"RNVU1-10","entrezGeneId":"101954273"},{"alias":"U1.4","entrezGeneId":"101954273"},{"alias":"U1P14","entrezGeneId":"101954273"},{"alias":"vU1.1","entrezGeneId":"101954273"},{"alias":"vU1.10","entrezGeneId":"101954273"},{"alias":"U6-7","entrezGeneId":"101954275"},{"alias":"RNU1-99","entrezGeneId":"101954276"},{"alias":"vU1.6","entrezGeneId":"101954276"},{"alias":"RNU1-126","entrezGeneId":"101954277"},{"alias":"RNU1-147","entrezGeneId":"101954277"},{"alias":"RNVU1-13","entrezGeneId":"101954277"},{"alias":"vU1.13","entrezGeneId":"101954277"},{"alias":"vU1.19","entrezGeneId":"101954277"},{"alias":"U6-8","entrezGeneId":"101954278"},{"alias":"ANRASSF1","entrezGeneId":"102060282"},{"alias":"TUC338","entrezGeneId":"102157401"},{"alias":"AD-004","entrezGeneId":"102157402"},{"alias":"CGI-137","entrezGeneId":"102157402"},{"alias":"CINAP","entrezGeneId":"102157402"},{"alias":"CIP","entrezGeneId":"102157402"},{"alias":"hCINAP","entrezGeneId":"102157402"},{"alias":"DEAR","entrezGeneId":"102191832"},{"alias":"DEspR","entrezGeneId":"102191832"},{"alias":"C13DELq13.31","entrezGeneId":"102216266"},{"alias":"CISTR-ACT","entrezGeneId":"102216268"},{"alias":"CISTRACT","entrezGeneId":"102216268"},{"alias":"re52431","entrezGeneId":"102216268"},{"alias":"lncRNA-N1","entrezGeneId":"102216341"},{"alias":"LncRNA-ES1","entrezGeneId":"102216342"},{"alias":"LINC01129","entrezGeneId":"102238594"},{"alias":"C11orf48","entrezGeneId":"102288414"},{"alias":"FAM195CP","entrezGeneId":"102388891"},{"alias":"hsa-mir-5787","entrezGeneId":"102464817"},{"alias":"hsa-mir-6068","entrezGeneId":"102464823"},{"alias":"hsa-mir-6069","entrezGeneId":"102464824"},{"alias":"hsa-mir-6070","entrezGeneId":"102464825"},{"alias":"hsa-mir-6073","entrezGeneId":"102464826"},{"alias":"hsa-mir-6074","entrezGeneId":"102464827"},{"alias":"hsa-mir-6076","entrezGeneId":"102464828"},{"alias":"hsa-mir-6078","entrezGeneId":"102464829"},{"alias":"hsa-mir-6079","entrezGeneId":"102464830"},{"alias":"hsa-mir-6080","entrezGeneId":"102464831"},{"alias":"hsa-mir-6083","entrezGeneId":"102464832"},{"alias":"hsa-mir-6084","entrezGeneId":"102464833"},{"alias":"hsa-mir-6085","entrezGeneId":"102464834"},{"alias":"hsa-mir-6088","entrezGeneId":"102464836"},{"alias":"hsa-mir-6089-1","entrezGeneId":"102464837"},{"alias":"hsa-mir-6089-2","entrezGeneId":"102464837"},{"alias":"MIR6089-1","entrezGeneId":"102464837"},{"alias":"MIR6089-2","entrezGeneId":"102464837"},{"alias":"hsa-mir-6125","entrezGeneId":"102465133"},{"alias":"mir-6125","entrezGeneId":"102465133"},{"alias":"hsa-mir-6126","entrezGeneId":"102465134"},{"alias":"hsa-mir-6128","entrezGeneId":"102465135"},{"alias":"hsa-mir-378j","entrezGeneId":"102465136"},{"alias":"hsa-mir-6129","entrezGeneId":"102465137"},{"alias":"hsa-mir-6131","entrezGeneId":"102465138"},{"alias":"hsa-mir-6133","entrezGeneId":"102465139"},{"alias":"hsa-mir-6134","entrezGeneId":"102465140"},{"alias":"hsa-mir-6165","entrezGeneId":"102465141"},{"alias":"hsa-mir-6499","entrezGeneId":"102465246"},{"alias":"mir-6499","entrezGeneId":"102465246"},{"alias":"hsa-mir-548ay","entrezGeneId":"102465247"},{"alias":"hsa-mir-6501","entrezGeneId":"102465248"},{"alias":"mir-6501","entrezGeneId":"102465248"},{"alias":"hsa-mir-6502","entrezGeneId":"102465249"},{"alias":"hsa-mir-6503","entrezGeneId":"102465250"},{"alias":"hsa-mir-6504","entrezGeneId":"102465251"},{"alias":"hsa-mir-6506","entrezGeneId":"102465252"},{"alias":"hsa-mir-6507","entrezGeneId":"102465253"},{"alias":"hsa-mir-6509","entrezGeneId":"102465254"},{"alias":"hsa-mir-6512","entrezGeneId":"102465255"},{"alias":"mir-6512","entrezGeneId":"102465255"},{"alias":"hsa-mir-6513","entrezGeneId":"102465256"},{"alias":"mir-6513","entrezGeneId":"102465256"},{"alias":"hsa-mir-6514","entrezGeneId":"102465257"},{"alias":"mir-6514","entrezGeneId":"102465257"},{"alias":"hsa-mir-6715b","entrezGeneId":"102465427"},{"alias":"hsa-mir-6717","entrezGeneId":"102465428"},{"alias":"hsa-mir-6511b-1","entrezGeneId":"102465429"},{"alias":"MIR6511B-1","entrezGeneId":"102465429"},{"alias":"hsa-mir-6718","entrezGeneId":"102465430"},{"alias":"hsa-mir-6722","entrezGeneId":"102465431"},{"alias":"hsa-mir-6724","entrezGeneId":"102465433"},{"alias":"hsa-mir-6724-1","entrezGeneId":"102465433"},{"alias":"MIR6724","entrezGeneId":"102465433"},{"alias":"hsa-mir-6726","entrezGeneId":"102465434"},{"alias":"hsa-mir-6727","entrezGeneId":"102465435"},{"alias":"hsa-mir-6728","entrezGeneId":"102465436"},{"alias":"hsa-mir-6731","entrezGeneId":"102465437"},{"alias":"hsa-mir-6732","entrezGeneId":"102465438"},{"alias":"hsa-mir-6733","entrezGeneId":"102465439"},{"alias":"hsa-mir-6735","entrezGeneId":"102465440"},{"alias":"hsa-mir-6737","entrezGeneId":"102465441"},{"alias":"hsa-mir-6738","entrezGeneId":"102465442"},{"alias":"hsa-mir-6740","entrezGeneId":"102465443"},{"alias":"hsa-mir-6742","entrezGeneId":"102465444"},{"alias":"hsa-mir-6743","entrezGeneId":"102465445"},{"alias":"hsa-mir-6746","entrezGeneId":"102465446"},{"alias":"hsa-mir-6747","entrezGeneId":"102465447"},{"alias":"hsa-mir-6748","entrezGeneId":"102465448"},{"alias":"hsa-mir-6751","entrezGeneId":"102465449"},{"alias":"hsa-mir-6752","entrezGeneId":"102465450"},{"alias":"hsa-mir-6753","entrezGeneId":"102465451"},{"alias":"hsa-mir-6755","entrezGeneId":"102465452"},{"alias":"hsa-mir-6756","entrezGeneId":"102465453"},{"alias":"hsa-mir-6758","entrezGeneId":"102465454"},{"alias":"hsa-mir-6760","entrezGeneId":"102465455"},{"alias":"hsa-mir-6761","entrezGeneId":"102465456"},{"alias":"hsa-mir-6762","entrezGeneId":"102465457"},{"alias":"hsa-mir-6765","entrezGeneId":"102465458"},{"alias":"hsa-mir-6767","entrezGeneId":"102465459"},{"alias":"hsa-mir-6768","entrezGeneId":"102465460"},{"alias":"hsa-mir-6770-1","entrezGeneId":"102465461"},{"alias":"hsa-mir-6771","entrezGeneId":"102465462"},{"alias":"hsa-mir-6772","entrezGeneId":"102465463"},{"alias":"hsa-mir-6775","entrezGeneId":"102465464"},{"alias":"hsa-mir-6776","entrezGeneId":"102465465"},{"alias":"hsa-mir-6777","entrezGeneId":"102465466"},{"alias":"hsa-mir-6779","entrezGeneId":"102465467"},{"alias":"hsa-mir-6781","entrezGeneId":"102465468"},{"alias":"hsa-mir-6782","entrezGeneId":"102465469"},{"alias":"hsa-mir-6784","entrezGeneId":"102465470"},{"alias":"hsa-mir-6786","entrezGeneId":"102465471"},{"alias":"hsa-mir-6787","entrezGeneId":"102465472"},{"alias":"hsa-mir-6790","entrezGeneId":"102465473"},{"alias":"hsa-mir-6791","entrezGeneId":"102465474"},{"alias":"hsa-mir-6792","entrezGeneId":"102465475"},{"alias":"hsa-mir-6795","entrezGeneId":"102465476"},{"alias":"hsa-mir-6796","entrezGeneId":"102465477"},{"alias":"hsa-mir-6797","entrezGeneId":"102465478"},{"alias":"hsa-mir-6799","entrezGeneId":"102465479"},{"alias":"hsa-mir-6800","entrezGeneId":"102465480"},{"alias":"hsa-mir-6802","entrezGeneId":"102465481"},{"alias":"hsa-mir-6804","entrezGeneId":"102465482"},{"alias":"hsa-mir-6805","entrezGeneId":"102465483"},{"alias":"hsa-mir-6806","entrezGeneId":"102465484"},{"alias":"hsa-mir-6809","entrezGeneId":"102465485"},{"alias":"hsa-mir-6811","entrezGeneId":"102465486"},{"alias":"hsa-mir-6812","entrezGeneId":"102465487"},{"alias":"hsa-mir-6814","entrezGeneId":"102465488"},{"alias":"hsa-mir-6815","entrezGeneId":"102465489"},{"alias":"hsa-mir-6816","entrezGeneId":"102465490"},{"alias":"hsa-mir-6819","entrezGeneId":"102465491"},{"alias":"hsa-mir-6820","entrezGeneId":"102465492"},{"alias":"hsa-mir-6821","entrezGeneId":"102465493"},{"alias":"hsa-mir-6823","entrezGeneId":"102465494"},{"alias":"hsa-mir-6824","entrezGeneId":"102465495"},{"alias":"hsa-mir-6826","entrezGeneId":"102465496"},{"alias":"hsa-mir-6828","entrezGeneId":"102465497"},{"alias":"hsa-mir-6830","entrezGeneId":"102465498"},{"alias":"hsa-mir-6831","entrezGeneId":"102465499"},{"alias":"hsa-mir-6833","entrezGeneId":"102465500"},{"alias":"hsa-mir-6834","entrezGeneId":"102465501"},{"alias":"hsa-mir-6835","entrezGeneId":"102465502"},{"alias":"hsa-mir-6836","entrezGeneId":"102465503"},{"alias":"hsa-mir-6838","entrezGeneId":"102465504"},{"alias":"hsa-mir-6839","entrezGeneId":"102465505"},{"alias":"hsa-mir-6841","entrezGeneId":"102465506"},{"alias":"hsa-mir-6842","entrezGeneId":"102465507"},{"alias":"hsa-mir-6843","entrezGeneId":"102465508"},{"alias":"hsa-mir-6846","entrezGeneId":"102465509"},{"alias":"hsa-mir-6847","entrezGeneId":"102465510"},{"alias":"hsa-mir-6848","entrezGeneId":"102465511"},{"alias":"hsa-mir-6851","entrezGeneId":"102465512"},{"alias":"hsa-mir-6852","entrezGeneId":"102465513"},{"alias":"hsa-mir-6854","entrezGeneId":"102465514"},{"alias":"hsa-mir-6856","entrezGeneId":"102465515"},{"alias":"hsa-mir-6857","entrezGeneId":"102465516"},{"alias":"hsa-mir-6858","entrezGeneId":"102465517"},{"alias":"hsa-mir-6860","entrezGeneId":"102465518"},{"alias":"hsa-mir-6861","entrezGeneId":"102465519"},{"alias":"hsa-mir-6862-1","entrezGeneId":"102465520"},{"alias":"hsa-mir-6864","entrezGeneId":"102465521"},{"alias":"hsa-mir-6865","entrezGeneId":"102465522"},{"alias":"hsa-mir-6867","entrezGeneId":"102465523"},{"alias":"hsa-mir-6869","entrezGeneId":"102465524"},{"alias":"hsa-mir-6870","entrezGeneId":"102465525"},{"alias":"hsa-mir-6872","entrezGeneId":"102465526"},{"alias":"hsa-mir-6876","entrezGeneId":"102465527"},{"alias":"hsa-mir-6877","entrezGeneId":"102465528"},{"alias":"hsa-mir-6878","entrezGeneId":"102465529"},{"alias":"hsa-mir-6881","entrezGeneId":"102465530"},{"alias":"hsa-mir-6882","entrezGeneId":"102465531"},{"alias":"hsa-mir-6883","entrezGeneId":"102465532"},{"alias":"hsa-mir-6885","entrezGeneId":"102465533"},{"alias":"hsa-mir-6886","entrezGeneId":"102465534"},{"alias":"hsa-mir-6888","entrezGeneId":"102465535"},{"alias":"hsa-mir-6890","entrezGeneId":"102465536"},{"alias":"hsa-mir-6891","entrezGeneId":"102465537"},{"alias":"hsa-mir-6892","entrezGeneId":"102465538"},{"alias":"hsa-mir-6895","entrezGeneId":"102465539"},{"alias":"hsa-mir-7107","entrezGeneId":"102465665"},{"alias":"hsa-mir-7109","entrezGeneId":"102465666"},{"alias":"hsa-mir-7110","entrezGeneId":"102465667"},{"alias":"hsa-mir-7111","entrezGeneId":"102465668"},{"alias":"hsa-mir-7113","entrezGeneId":"102465669"},{"alias":"hsa-mir-6511a-3","entrezGeneId":"102465683"},{"alias":"MIR6511A-3","entrezGeneId":"102465683"},{"alias":"hsa-mir-6511a-4","entrezGeneId":"102465684"},{"alias":"MIR6511A-4","entrezGeneId":"102465684"},{"alias":"hsa-mir-7150","entrezGeneId":"102465688"},{"alias":"hsa-mir-7152","entrezGeneId":"102465689"},{"alias":"hsa-mir-7153","entrezGeneId":"102465690"},{"alias":"mir-7153","entrezGeneId":"102465690"},{"alias":"hsa-mir-7154","entrezGeneId":"102465691"},{"alias":"hsa-mir-7157","entrezGeneId":"102465692"},{"alias":"hsa-mir-7158","entrezGeneId":"102465693"},{"alias":"hsa-mir-7161","entrezGeneId":"102465694"},{"alias":"hsa-mir-7160","entrezGeneId":"102465695"},{"alias":"hsa-mir-486-2","entrezGeneId":"102465696"},{"alias":"mir-486-2","entrezGeneId":"102465696"},{"alias":"hsa-mir-7702","entrezGeneId":"102465800"},{"alias":"hsa-mir-7703","entrezGeneId":"102465801"},{"alias":"hsa-mir-7704","entrezGeneId":"102465802"},{"alias":"hsa-mir-7706","entrezGeneId":"102465803"},{"alias":"hsa-mir-7843","entrezGeneId":"102465832"},{"alias":"hsa-mir-4433b","entrezGeneId":"102465833"},{"alias":"hsa-mir-7844","entrezGeneId":"102465834"},{"alias":"hsa-mir-7845","entrezGeneId":"102465835"},{"alias":"hsa-mir-7846","entrezGeneId":"102465836"},{"alias":"hsa-mir-7849","entrezGeneId":"102465837"},{"alias":"hsa-mir-7850","entrezGeneId":"102465838"},{"alias":"hsa-mir-7852","entrezGeneId":"102465839"},{"alias":"hsa-mir-7854","entrezGeneId":"102465840"},{"alias":"hsa-mir-7855","entrezGeneId":"102465841"},{"alias":"hsa-mir-7856","entrezGeneId":"102465842"},{"alias":"hsa-mir-548ba","entrezGeneId":"102465854"},{"alias":"hsa-mir-7973-2","entrezGeneId":"102465855"},{"alias":"hsa-mir-7974","entrezGeneId":"102465856"},{"alias":"hsa-mir-7976","entrezGeneId":"102465857"},{"alias":"hsa-mir-7977","entrezGeneId":"102465858"},{"alias":"hsa-mir-7978","entrezGeneId":"102465859"},{"alias":"hsa-mir-8054","entrezGeneId":"102465860"},{"alias":"hsa-mir-8055","entrezGeneId":"102465861"},{"alias":"hsa-mir-8056","entrezGeneId":"102465862"},{"alias":"hsa-mir-8058","entrezGeneId":"102465863"},{"alias":"hsa-mir-8060","entrezGeneId":"102465864"},{"alias":"hsa-mir-8062","entrezGeneId":"102465865"},{"alias":"hsa-mir-8064","entrezGeneId":"102465866"},{"alias":"hsa-mir-8065","entrezGeneId":"102465867"},{"alias":"hsa-mir-8066","entrezGeneId":"102465868"},{"alias":"hsa-mir-8067","entrezGeneId":"102465869"},{"alias":"hsa-mir-8070","entrezGeneId":"102465870"},{"alias":"hsa-mir-8071-1","entrezGeneId":"102465871"},{"alias":"hsa-mir-8073","entrezGeneId":"102465872"},{"alias":"hsa-mir-8074","entrezGeneId":"102465873"},{"alias":"hsa-mir-8075","entrezGeneId":"102465874"},{"alias":"hsa-mir-8077","entrezGeneId":"102465875"},{"alias":"hsa-mir-8079","entrezGeneId":"102465876"},{"alias":"hsa-mir-8080","entrezGeneId":"102465877"},{"alias":"hsa-mir-8082","entrezGeneId":"102465878"},{"alias":"hsa-mir-8085","entrezGeneId":"102465879"},{"alias":"hsa-mir-8086","entrezGeneId":"102465880"},{"alias":"hsa-mir-8087","entrezGeneId":"102465881"},{"alias":"hsa-mir-8089","entrezGeneId":"102465882"},{"alias":"hsa-mir-7112","entrezGeneId":"102465906"},{"alias":"hsa-mir-7112-1","entrezGeneId":"102465906"},{"alias":"hsa-mir-7112-2","entrezGeneId":"102465906"},{"alias":"MIR7112-1","entrezGeneId":"102465906"},{"alias":"MIR7112-2","entrezGeneId":"102465906"},{"alias":"hsa-mir-6862-2","entrezGeneId":"102465907"},{"alias":"hsa-mir-6770-2","entrezGeneId":"102465908"},{"alias":"hsa-mir-6859-2","entrezGeneId":"102465909"},{"alias":"hsa-mir-6859-3","entrezGeneId":"102465910"},{"alias":"hsa-mir-6072","entrezGeneId":"102465944"},{"alias":"hsa-mir-6719","entrezGeneId":"102465974"},{"alias":"hsa-mir-6763","entrezGeneId":"102465975"},{"alias":"hsa-mir-6807","entrezGeneId":"102465976"},{"alias":"hsa-mir-6829","entrezGeneId":"102465977"},{"alias":"hsa-mir-6850","entrezGeneId":"102465978"},{"alias":"hsa-mir-6511b-2","entrezGeneId":"102465985"},{"alias":"MIR6511B-2","entrezGeneId":"102465985"},{"alias":"hsa-mir-7847","entrezGeneId":"102465993"},{"alias":"hsa-mir-8081","entrezGeneId":"102465995"},{"alias":"hsa-mir-5739","entrezGeneId":"102466081"},{"alias":"hsa-mir-6075","entrezGeneId":"102466103"},{"alias":"hsa-mir-6090","entrezGeneId":"102466104"},{"alias":"hsa-mir-548az","entrezGeneId":"102466162"},{"alias":"hsa-mir-6715a","entrezGeneId":"102466189"},{"alias":"hsa-mir-6721","entrezGeneId":"102466190"},{"alias":"mir-6721","entrezGeneId":"102466190"},{"alias":"hsa-mir-6736","entrezGeneId":"102466191"},{"alias":"hsa-mir-6750","entrezGeneId":"102466192"},{"alias":"hsa-mir-6757","entrezGeneId":"102466193"},{"alias":"hsa-mir-6773","entrezGeneId":"102466194"},{"alias":"hsa-mir-6780a","entrezGeneId":"102466195"},{"alias":"hsa-mir-6794","entrezGeneId":"102466196"},{"alias":"hsa-mir-6810","entrezGeneId":"102466197"},{"alias":"hsa-mir-6817","entrezGeneId":"102466198"},{"alias":"hsa-mir-6825","entrezGeneId":"102466199"},{"alias":"hsa-mir-6844","entrezGeneId":"102466200"},{"alias":"hsa-mir-6853","entrezGeneId":"102466201"},{"alias":"hsa-mir-6769b","entrezGeneId":"102466202"},{"alias":"hsa-mir-6874","entrezGeneId":"102466203"},{"alias":"hsa-mir-6880","entrezGeneId":"102466204"},{"alias":"hsa-mir-6887","entrezGeneId":"102466205"},{"alias":"hsa-mir-7106","entrezGeneId":"102466222"},{"alias":"hsa-mir-7114","entrezGeneId":"102466223"},{"alias":"hsa-mir-6077","entrezGeneId":"102466225"},{"alias":"hsa-mir-6077-1","entrezGeneId":"102466225"},{"alias":"hsa-mir-6077-2","entrezGeneId":"102466225"},{"alias":"MIR6077-1","entrezGeneId":"102466225"},{"alias":"MIR6077-2","entrezGeneId":"102466225"},{"alias":"hsa-mir-7162","entrezGeneId":"102466227"},{"alias":"hsa-mir-7515","entrezGeneId":"102466235"},{"alias":"hsa-mir-1273h","entrezGeneId":"102466247"},{"alias":"hsa-mir-7973-1","entrezGeneId":"102466250"},{"alias":"hsa-mir-8061","entrezGeneId":"102466251"},{"alias":"hsa-mir-8069","entrezGeneId":"102466252"},{"alias":"hsa-mir-8069-1","entrezGeneId":"102466252"},{"alias":"MIR8069","entrezGeneId":"102466252"},{"alias":"hsa-mir-8076","entrezGeneId":"102466253"},{"alias":"hsa-mir-6770-3","entrezGeneId":"102466259"},{"alias":"hsa-mir-6511a-1","entrezGeneId":"102466268"},{"alias":"MIR6511A-1","entrezGeneId":"102466268"},{"alias":"hsa-mir-6741","entrezGeneId":"102466270"},{"alias":"hsa-mir-6893","entrezGeneId":"102466271"},{"alias":"hsa-mir-1199","entrezGeneId":"102466515"},{"alias":"hsa-mir-6071","entrezGeneId":"102466516"},{"alias":"hsa-mir-6081","entrezGeneId":"102466518"},{"alias":"hsa-mir-6086","entrezGeneId":"102466519"},{"alias":"hsa-mir-6127","entrezGeneId":"102466615"},{"alias":"hsa-mir-6132","entrezGeneId":"102466616"},{"alias":"hsa-mir-6500","entrezGeneId":"102466656"},{"alias":"hsa-mir-6505","entrezGeneId":"102466657"},{"alias":"mir-6505","entrezGeneId":"102466657"},{"alias":"hsa-mir-6510","entrezGeneId":"102466658"},{"alias":"mir-6510","entrezGeneId":"102466658"},{"alias":"hsa-mir-6515","entrezGeneId":"102466659"},{"alias":"mir-6515","entrezGeneId":"102466659"},{"alias":"hsa-mir-6716","entrezGeneId":"102466719"},{"alias":"hsa-mir-6720","entrezGeneId":"102466720"},{"alias":"mir-6720","entrezGeneId":"102466720"},{"alias":"hsa-mir-892c","entrezGeneId":"102466721"},{"alias":"hsa-mir-6730","entrezGeneId":"102466722"},{"alias":"hsa-mir-6734","entrezGeneId":"102466723"},{"alias":"hsa-mir-6739","entrezGeneId":"102466724"},{"alias":"hsa-mir-6744","entrezGeneId":"102466725"},{"alias":"hsa-mir-6745","entrezGeneId":"102466726"},{"alias":"hsa-mir-6749","entrezGeneId":"102466727"},{"alias":"hsa-mir-6754","entrezGeneId":"102466728"},{"alias":"hsa-mir-6759","entrezGeneId":"102466729"},{"alias":"hsa-mir-6764","entrezGeneId":"102466730"},{"alias":"hsa-mir-6769a","entrezGeneId":"102466731"},{"alias":"hsa-mir-6774","entrezGeneId":"102466732"},{"alias":"hsa-mir-6778","entrezGeneId":"102466733"},{"alias":"hsa-mir-6783","entrezGeneId":"102466734"},{"alias":"hsa-mir-6788","entrezGeneId":"102466735"},{"alias":"hsa-mir-6789","entrezGeneId":"102466736"},{"alias":"hsa-mir-6793","entrezGeneId":"102466737"},{"alias":"hsa-mir-6798","entrezGeneId":"102466738"},{"alias":"hsa-mir-6803","entrezGeneId":"102466739"},{"alias":"hsa-mir-6808","entrezGeneId":"102466740"},{"alias":"hsa-mir-6813","entrezGeneId":"102466741"},{"alias":"hsa-mir-6818","entrezGeneId":"102466742"},{"alias":"hsa-mir-6822","entrezGeneId":"102466743"},{"alias":"hsa-mir-6827","entrezGeneId":"102466744"},{"alias":"hsa-mir-6832","entrezGeneId":"102466745"},{"alias":"hsa-mir-6780b","entrezGeneId":"102466746"},{"alias":"hsa-mir-6840","entrezGeneId":"102466747"},{"alias":"hsa-mir-6845","entrezGeneId":"102466748"},{"alias":"hsa-mir-6849","entrezGeneId":"102466749"},{"alias":"hsa-mir-6855","entrezGeneId":"102466750"},{"alias":"hsa-mir-6859-1","entrezGeneId":"102466751"},{"alias":"hsa-mir-6863","entrezGeneId":"102466752"},{"alias":"hsa-mir-6868","entrezGeneId":"102466753"},{"alias":"hsa-mir-6873","entrezGeneId":"102466754"},{"alias":"hsa-mir-6875","entrezGeneId":"102466755"},{"alias":"hsa-mir-6879","entrezGeneId":"102466756"},{"alias":"hsa-mir-6884","entrezGeneId":"102466757"},{"alias":"hsa-mir-6889","entrezGeneId":"102466758"},{"alias":"hsa-mir-6894","entrezGeneId":"102466759"},{"alias":"hsa-mir-7108","entrezGeneId":"102466806"},{"alias":"hsa-mir-6511a-2","entrezGeneId":"102466812"},{"alias":"MIR6511A-2","entrezGeneId":"102466812"},{"alias":"hsa-mir-7151","entrezGeneId":"102466814"},{"alias":"hsa-mir-7155","entrezGeneId":"102466815"},{"alias":"hsa-mir-7159","entrezGeneId":"102466816"},{"alias":"hsa-mir-7705","entrezGeneId":"102466854"},{"alias":"hsa-mir-6516","entrezGeneId":"102466864"},{"alias":"hsa-mir-7848","entrezGeneId":"102466865"},{"alias":"hsa-mir-7853","entrezGeneId":"102466866"},{"alias":"hsa-mir-7975","entrezGeneId":"102466872"},{"alias":"hsa-mir-8052","entrezGeneId":"102466873"},{"alias":"hsa-mir-8057","entrezGeneId":"102466874"},{"alias":"hsa-mir-8063","entrezGeneId":"102466875"},{"alias":"hsa-mir-8068","entrezGeneId":"102466876"},{"alias":"hsa-mir-8072","entrezGeneId":"102466877"},{"alias":"hsa-mir-8078","entrezGeneId":"102466878"},{"alias":"hsa-mir-8083","entrezGeneId":"102466879"},{"alias":"hsa-mir-8088","entrezGeneId":"102466880"},{"alias":"hsa-mir-8071-2","entrezGeneId":"102466889"},{"alias":"hsa-mir-6124","entrezGeneId":"102466906"},{"alias":"hsa-mir-6785","entrezGeneId":"102466911"},{"alias":"hsa-mir-6871","entrezGeneId":"102466912"},{"alias":"hsa-mir-8059","entrezGeneId":"102466918"},{"alias":"hsa-mir-6082","entrezGeneId":"102466953"},{"alias":"hsa-mir-6130","entrezGeneId":"102466967"},{"alias":"hsa-mir-6508","entrezGeneId":"102466972"},{"alias":"hsa-mir-6729","entrezGeneId":"102466982"},{"alias":"hsa-mir-6766","entrezGeneId":"102466983"},{"alias":"hsa-mir-6801","entrezGeneId":"102466984"},{"alias":"hsa-mir-6837","entrezGeneId":"102466985"},{"alias":"hsa-mir-6866","entrezGeneId":"102466986"},{"alias":"hsa-mir-7156","entrezGeneId":"102466995"},{"alias":"hsa-mir-7851","entrezGeneId":"102467003"},{"alias":"hsa-mir-8053","entrezGeneId":"102467004"},{"alias":"hsa-mir-8084","entrezGeneId":"102467005"},{"alias":"linc-MAF-4","entrezGeneId":"102467146"},{"alias":"lincMAF4","entrezGeneId":"102467146"},{"alias":"C22DUPq13","entrezGeneId":"102503428"},{"alias":"CTB-7E3.1","entrezGeneId":"102557615"},{"alias":"HI-LNC12","entrezGeneId":"102577424"},{"alias":"LINC01452","entrezGeneId":"102578074"},{"alias":"TPCAT-10-36067","entrezGeneId":"102578074"},{"alias":"CMPD","entrezGeneId":"102606463"},{"alias":"TCONS_00025128","entrezGeneId":"102606463"},{"alias":"BRI3BP-AS1","entrezGeneId":"102659353"},{"alias":"BRI3BPAS1","entrezGeneId":"102659353"},{"alias":"Linc1992","entrezGeneId":"102659353"},{"alias":"TCONS_00020260","entrezGeneId":"102659353"},{"alias":"linc-Brn1b","entrezGeneId":"102682016"},{"alias":"lncRNA-GHET1","entrezGeneId":"102723099"},{"alias":"locus3182","entrezGeneId":"102723166"},{"alias":"MIR1-2HG","entrezGeneId":"102723167"},{"alias":"SLMO2P11","entrezGeneId":"102723314"},{"alias":"NCRNA00150","entrezGeneId":"102723346"},{"alias":"bA327E2.3","entrezGeneId":"102723377"},{"alias":"C10orf106","entrezGeneId":"102723377"},{"alias":"NCRNA00223","entrezGeneId":"102723377"},{"alias":"FAM231A","entrezGeneId":"102723383"},{"alias":"FAM231AP","entrezGeneId":"102723383"},{"alias":"IgA","entrezGeneId":"102723407"},{"alias":"IGH","entrezGeneId":"102723407"},{"alias":"IGH@","entrezGeneId":"102723407"},{"alias":"ighv","entrezGeneId":"102723407"},{"alias":"IGHV4","entrezGeneId":"102723407"},{"alias":"IGHV4-30","entrezGeneId":"102723407"},{"alias":"IGHV4-b","entrezGeneId":"102723407"},{"alias":"IgT","entrezGeneId":"102723407"},{"alias":"IGVH","entrezGeneId":"102723407"},{"alias":"IGVH4-39","entrezGeneId":"102723407"},{"alias":"IGVH4-b","entrezGeneId":"102723407"},{"alias":"IGVH4b","entrezGeneId":"102723407"},{"alias":"C21orf86","entrezGeneId":"102723489"},{"alias":"NCRNA00205","entrezGeneId":"102723489"},{"alias":"LINC02095","entrezGeneId":"102723505"},{"alias":"LINC01155","entrezGeneId":"102723508"},{"alias":"Spasm","entrezGeneId":"102723508"},{"alias":"CSAG3","entrezGeneId":"102723547"},{"alias":"CSAG3B","entrezGeneId":"102723547"},{"alias":"CT24.2","entrezGeneId":"102723547"},{"alias":"TRAG-3","entrezGeneId":"102723547"},{"alias":"TRAG3","entrezGeneId":"102723547"},{"alias":"C22orf32-1","entrezGeneId":"102723775"},{"alias":"lnc-C22orf32-1","entrezGeneId":"102723775"},{"alias":"chico","entrezGeneId":"102723796"},{"alias":"BRCAT107","entrezGeneId":"102723839"},{"alias":"TBC1DE3","entrezGeneId":"102723859"},{"alias":"CXorf46","entrezGeneId":"102724167"},{"alias":"GGT2","entrezGeneId":"102724197"},{"alias":"bA753C18.3","entrezGeneId":"102724307"},{"alias":"CYP17A1OS","entrezGeneId":"102724307"},{"alias":"CELSR3-AS1","entrezGeneId":"102724368"},{"alias":"GAGE-10","entrezGeneId":"102724473"},{"alias":"C11orf89","entrezGeneId":"102724536"},{"alias":"KCCAT211","entrezGeneId":"102724550"},{"alias":"POTE-15","entrezGeneId":"102724631"},{"alias":"POTEB","entrezGeneId":"102724631"},{"alias":"CRYAA","entrezGeneId":"102724652"},{"alias":"THC1072510","entrezGeneId":"102724668"},{"alias":"CH507-145C22.1","entrezGeneId":"102724701"},{"alias":"CH507-154B10.1","entrezGeneId":"102724701"},{"alias":"PRAMEF28","entrezGeneId":"102724742"},{"alias":"TCONS_l2_00015893","entrezGeneId":"102724774"},{"alias":"LANCLOT","entrezGeneId":"102724820"},{"alias":"C14orf165","entrezGeneId":"102724845"},{"alias":"CNSLT1I7G","entrezGeneId":"102724845"},{"alias":"CTD-2151A2.1","entrezGeneId":"102724855"},{"alias":"lnc18q22.2","entrezGeneId":"102724895"},{"alias":"IgA","entrezGeneId":"102724971"},{"alias":"IGH","entrezGeneId":"102724971"},{"alias":"ighv","entrezGeneId":"102724971"},{"alias":"IGHV4","entrezGeneId":"102724971"},{"alias":"IGHV4-04","entrezGeneId":"102724971"},{"alias":"IGHV4-4","entrezGeneId":"102724971"},{"alias":"IGHV@","entrezGeneId":"102724971"},{"alias":"IGVH","entrezGeneId":"102724971"},{"alias":"V4-4b","entrezGeneId":"102724971"},{"alias":"KIR2DS3","entrezGeneId":"102725023"},{"alias":"C14orf22","entrezGeneId":"102725045"},{"alias":"NOVA1-AS1","entrezGeneId":"102725045"},{"alias":"TCONS_00012692","entrezGeneId":"102725068"},{"alias":"TCONS_00021520","entrezGeneId":"102725509"},{"alias":"Fabl","entrezGeneId":"102725541"},{"alias":"LINC01156","entrezGeneId":"102725541"},{"alias":"linc-p21","entrezGeneId":"102800311"},{"alias":"lincRNA-p21","entrezGeneId":"102800311"},{"alias":"TRP53COR1","entrezGeneId":"102800311"},{"alias":"TCONS_00000112","entrezGeneId":"102800316"},{"alias":"LOC400927-CSNK1E","entrezGeneId":"102800317"},{"alias":"linc-DMRT2","entrezGeneId":"102800446"},{"alias":"lnc-DRMT2","entrezGeneId":"102800446"},{"alias":"TCONS_00015639","entrezGeneId":"102800446"},{"alias":"C15DELq11.2","entrezGeneId":"102997063"},{"alias":"C5DELq12","entrezGeneId":"102997064"},{"alias":"CARLo-2","entrezGeneId":"103021164"},{"alias":"CARLO2","entrezGeneId":"103021164"},{"alias":"LINC01244","entrezGeneId":"103021164"},{"alias":"CARLo-6","entrezGeneId":"103021165"},{"alias":"CARLO6","entrezGeneId":"103021165"},{"alias":"LINC01245","entrezGeneId":"103021165"},{"alias":"INXS","entrezGeneId":"103021294"},{"alias":"SCARNA17","entrezGeneId":"103091864"},{"alias":"SCARNA17HG","entrezGeneId":"103091864"},{"alias":"BRWD1-IT2","entrezGeneId":"103091865"},{"alias":"C21orf87","entrezGeneId":"103091865"},{"alias":"NCRNA00257","entrezGeneId":"103091865"},{"alias":"CARLo-4","entrezGeneId":"103164619"},{"alias":"CARLO4","entrezGeneId":"103164619"},{"alias":"PCA2","entrezGeneId":"103164619"},{"alias":"TCONS_00015167","entrezGeneId":"103164619"},{"alias":"C8DUPq22.1","entrezGeneId":"103171572"},{"alias":"C14DELq22","entrezGeneId":"103344927"},{"alias":"DEL14q22","entrezGeneId":"103344927"},{"alias":"BGL3","entrezGeneId":"103344929"},{"alias":"LINC01083","entrezGeneId":"103344929"},{"alias":"lncRNA-BGL3","entrezGeneId":"103344929"},{"alias":"FAM233C","entrezGeneId":"103344932"},{"alias":"IGKV1/OR9-1","entrezGeneId":"103352540"},{"alias":"LVCAT7","entrezGeneId":"103352670"},{"alias":"TCONS_00014497","entrezGeneId":"103352670"},{"alias":"TRNAG37","entrezGeneId":"103456505"},{"alias":"TRNAE44","entrezGeneId":"103456506"},{"alias":"TRNAC33","entrezGeneId":"103456508"},{"alias":"TRNAV39","entrezGeneId":"103456510"},{"alias":"TRNAL49","entrezGeneId":"103456511"},{"alias":"hsa-mir-3670-3","entrezGeneId":"103504726"},{"alias":"hsa-mir-6724-2","entrezGeneId":"103504727"},{"alias":"hsa-mir-3179-4","entrezGeneId":"103504729"},{"alias":"hsa-mir-9500","entrezGeneId":"103504730"},{"alias":"hsa-mir-3648-2","entrezGeneId":"103504731"},{"alias":"hsa-mir-6724-4","entrezGeneId":"103504733"},{"alias":"hsa-mir-1244-4","entrezGeneId":"103504734"},{"alias":"hsa-mir-548bb","entrezGeneId":"103504735"},{"alias":"MI0029321","entrezGeneId":"103504735"},{"alias":"hsa-mir-8069-2","entrezGeneId":"103504736"},{"alias":"hsa-mir-8485","entrezGeneId":"103504737"},{"alias":"hsa-mir-6859-4","entrezGeneId":"103504738"},{"alias":"hsa-mir-6724-3","entrezGeneId":"103504739"},{"alias":"hsa-mir-3670-4","entrezGeneId":"103504740"},{"alias":"hsa-mir-5701-3","entrezGeneId":"103504741"},{"alias":"LINC01464","entrezGeneId":"103581031"},{"alias":"CDR1as","entrezGeneId":"103611090"},{"alias":"CDR1NAT","entrezGeneId":"103611090"},{"alias":"ciRS-7","entrezGeneId":"103611090"},{"alias":"AGU1","entrezGeneId":"103611155"},{"alias":"LLPH-AS1","entrezGeneId":"103625681"},{"alias":"U6-2","entrezGeneId":"103625684"},{"alias":"TCONS_00014671","entrezGeneId":"103689844"},{"alias":"LINC00401","entrezGeneId":"103689913"},{"alias":"LINC01308","entrezGeneId":"103689915"},{"alias":"TCONS_00009713","entrezGeneId":"103689917"},{"alias":"FOXG1-AS","entrezGeneId":"103695363"},{"alias":"TCONS_00018040","entrezGeneId":"103695365"},{"alias":"TCONS_00001552","entrezGeneId":"103695366"},{"alias":"TCONS_00018075","entrezGeneId":"103695432"},{"alias":"TCONS_00021861","entrezGeneId":"103724386"},{"alias":"TCONS_l2_00027522","entrezGeneId":"103724390"},{"alias":"lncUSMycN","entrezGeneId":"103752554"},{"alias":"MYCNUN","entrezGeneId":"103752554"},{"alias":"CCND2-AS2","entrezGeneId":"103752584"},{"alias":"linc-birc6","entrezGeneId":"103752586"},{"alias":"megamind","entrezGeneId":"103752586"},{"alias":"ODRUL","entrezGeneId":"103752587"},{"alias":"PACER","entrezGeneId":"103752588"},{"alias":"PTGS2-AS1","entrezGeneId":"103752588"},{"alias":"PTGS2AS1","entrezGeneId":"103752588"},{"alias":"lncRNA-508851","entrezGeneId":"103752589"},{"alias":"TCONS_00025237","entrezGeneId":"103752589"},{"alias":"MRX17","entrezGeneId":"103753528"},{"alias":"MRX31","entrezGeneId":"103753528"},{"alias":"TMEM5-AS1","entrezGeneId":"104169670"},{"alias":"TCONS_00017091","entrezGeneId":"104266960"},{"alias":"TCONS_00000366","entrezGeneId":"104266961"},{"alias":"lincRNA-DYNLRB2-2","entrezGeneId":"104266962"},{"alias":"TCONS_00005644","entrezGeneId":"104310350"},{"alias":"TCONS_00014882","entrezGeneId":"104326051"},{"alias":"lncRNA-CMPK2","entrezGeneId":"104326052"},{"alias":"TCONS_00021586","entrezGeneId":"104326053"},{"alias":"TCONS_00021596","entrezGeneId":"104326054"},{"alias":"LINC00876","entrezGeneId":"104326057"},{"alias":"C13orf45-IT1","entrezGeneId":"104326189"},{"alias":"TCONS_00021569","entrezGeneId":"104326189"},{"alias":"TCONS_l2_00007459","entrezGeneId":"104326190"},{"alias":"DLX2-AS1","entrezGeneId":"104326193"},{"alias":"TCONS_00003049","entrezGeneId":"104326193"},{"alias":"linc-TP53I13","entrezGeneId":"104355133"},{"alias":"lnc-TP53I13","entrezGeneId":"104355133"},{"alias":"ncRNA-a3","entrezGeneId":"104355148"},{"alias":"ERIC","entrezGeneId":"104355217"},{"alias":"LINC01130","entrezGeneId":"104355217"},{"alias":"TCONS_00014875","entrezGeneId":"104355217"},{"alias":"locus 4010","entrezGeneId":"104355219"},{"alias":"locus4010","entrezGeneId":"104355219"},{"alias":"TCONS_l2_00021715","entrezGeneId":"104355285"},{"alias":"MIR216AHG","entrezGeneId":"104355290"},{"alias":"MIR216BHG","entrezGeneId":"104355290"},{"alias":"lnc-MAN1A2-1","entrezGeneId":"104355292"},{"alias":"C6orf26-AS1","entrezGeneId":"104413891"},{"alias":"Lnc-Ang362","entrezGeneId":"104457406"},{"alias":"115HG","entrezGeneId":"104472715"},{"alias":"IC-SNURF-SNRPN","entrezGeneId":"104472715"},{"alias":"LNCAT","entrezGeneId":"104472715"},{"alias":"NCRNA00214","entrezGeneId":"104472715"},{"alias":"U-UBE3A-ATS","entrezGeneId":"104472715"},{"alias":"UBE3A-AS","entrezGeneId":"104472715"},{"alias":"UBE3A-AS1","entrezGeneId":"104472715"},{"alias":"UBE3AATS","entrezGeneId":"104472715"},{"alias":"IGF1R-AS","entrezGeneId":"104472848"},{"alias":"TapSAKI","entrezGeneId":"104502417"},{"alias":"SAL-RNA1","entrezGeneId":"104548971"},{"alias":"XLOC_023166","entrezGeneId":"104548971"},{"alias":"SAL-RNA3","entrezGeneId":"104548972"},{"alias":"XLOC_025918","entrezGeneId":"104548972"},{"alias":"SAL-RNA2","entrezGeneId":"104548973"},{"alias":"XLOC_025931","entrezGeneId":"104548973"},{"alias":"Myheart","entrezGeneId":"104564225"},{"alias":"DUNQU1","entrezGeneId":"104644205"},{"alias":"GS1-421I3.4","entrezGeneId":"104797536"},{"alias":"TCONS_00017087","entrezGeneId":"104797536"},{"alias":"LINC01458","entrezGeneId":"104797537"},{"alias":"lncRNA-AC130710","entrezGeneId":"104797537"},{"alias":"CRHR1-IT1-CRHR1","entrezGeneId":"104909134"},{"alias":"MGC57346-CRHR1","entrezGeneId":"104909134"},{"alias":"DALI","entrezGeneId":"104940698"},{"alias":"3'HS1","entrezGeneId":"105180392"},{"alias":"HSVI","entrezGeneId":"105180392"},{"alias":"lncBST2","entrezGeneId":"105221694"},{"alias":"H19-DMD","entrezGeneId":"105259599"},{"alias":"IC1","entrezGeneId":"105259599"},{"alias":"ICR1","entrezGeneId":"105259599"},{"alias":"ICR1-DMR","entrezGeneId":"105259599"},{"alias":"DUPXq26.3","entrezGeneId":"105259600"},{"alias":"XLAG","entrezGeneId":"105259600"},{"alias":"C16DELp11.2","entrezGeneId":"105317032"},{"alias":"DEL16p11.2","entrezGeneId":"105317032"},{"alias":"HLA-DRB1","entrezGeneId":"105369230"},{"alias":"HLA-DRB4","entrezGeneId":"105369230"},{"alias":"U47924.27","entrezGeneId":"105369635"},{"alias":"CAT1507","entrezGeneId":"105369758"},{"alias":"R12A-AS1","entrezGeneId":"105369865"},{"alias":"CRAT8","entrezGeneId":"105370070"},{"alias":"TCONS_00021682","entrezGeneId":"105370308"},{"alias":"CAT1647","entrezGeneId":"105370431"},{"alias":"linc-KIAA1737-2","entrezGeneId":"105370578"},{"alias":"C14orf74","entrezGeneId":"105370683"},{"alias":"LINC01084","entrezGeneId":"105370731"},{"alias":"gs104","entrezGeneId":"105371045"},{"alias":"LA16c-321D4.2","entrezGeneId":"105371055"},{"alias":"LA16c-313D11.9","entrezGeneId":"105371184"},{"alias":"PR-lncRNA-1","entrezGeneId":"105371267"},{"alias":"TCONS_00025215","entrezGeneId":"105371564"},{"alias":"LINC00470","entrezGeneId":"105371954"},{"alias":"MIR4529HG","entrezGeneId":"105372127"},{"alias":"CTB-32O4.2","entrezGeneId":"105372352"},{"alias":"CTB-32O4.3","entrezGeneId":"105372352"},{"alias":"CTB-32O4.4","entrezGeneId":"105372352"},{"alias":"KLK3e","entrezGeneId":"105372441"},{"alias":"NCRNA00237","entrezGeneId":"105372556"},{"alias":"C21orf40","entrezGeneId":"105372746"},{"alias":"lnc-JAM2-6","entrezGeneId":"105372751"},{"alias":"KCNJ6-IT1","entrezGeneId":"105372799"},{"alias":"LL22NC03-86D4.1","entrezGeneId":"105373010"},{"alias":"ERVFC1","entrezGeneId":"105373297"},{"alias":"Fc1env","entrezGeneId":"105373297"},{"alias":"PNMA6BL","entrezGeneId":"105373377"},{"alias":"LCAL4","entrezGeneId":"105373869"},{"alias":"inv3q26.1","entrezGeneId":"105374194"},{"alias":"EIF2B5-IT1","entrezGeneId":"105374251"},{"alias":"NCRNA00149","entrezGeneId":"105375013"},{"alias":"HOXA-AS2","entrezGeneId":"105375205"},{"alias":"P35","entrezGeneId":"105375355"},{"alias":"UP3B","entrezGeneId":"105375355"},{"alias":"UPIIIB","entrezGeneId":"105375355"},{"alias":"LVCAT5","entrezGeneId":"105375475"},{"alias":"CTA","entrezGeneId":"105375847"},{"alias":"LINC00092","entrezGeneId":"105376159"},{"alias":"C9orf148","entrezGeneId":"105376261"},{"alias":"lnc-BBOX1-1","entrezGeneId":"105376671"},{"alias":"LRRC37A","entrezGeneId":"105376839"},{"alias":"lnc-KCTD6-3","entrezGeneId":"105377108"},{"alias":"LVCAT8","entrezGeneId":"105377586"},{"alias":"CTB-54I1.1","entrezGeneId":"105377728"},{"alias":"TCONS_l2_00025430","entrezGeneId":"105377880"},{"alias":"TCONS_00018278","entrezGeneId":"105378425"},{"alias":"linc-Enc1","entrezGeneId":"105379037"},{"alias":"HsT16028","entrezGeneId":"105379202"},{"alias":"KIAA0125P1","entrezGeneId":"105379202"},{"alias":"FAM197Y7P","entrezGeneId":"105379269"},{"alias":"Cos12","entrezGeneId":"105379427"},{"alias":"hZNF2","entrezGeneId":"105379427"},{"alias":"ZNF186","entrezGeneId":"105379427"},{"alias":"ZNF2","entrezGeneId":"105379427"},{"alias":"CH507-145C22.1","entrezGeneId":"105379499"},{"alias":"CH507-154B10.1","entrezGeneId":"105379499"},{"alias":"CH507-154B10.2","entrezGeneId":"105379499"},{"alias":"CH507-24F1.1","entrezGeneId":"105379499"},{"alias":"IGH","entrezGeneId":"105379528"},{"alias":"IGHV3-D","entrezGeneId":"105379528"},{"alias":"MDONA","entrezGeneId":"105616916"},{"alias":"TCONS_00009433","entrezGeneId":"105616916"},{"alias":"LncTCF7","entrezGeneId":"105664404"},{"alias":"TCONS_00009511","entrezGeneId":"105664404"},{"alias":"CCHE1","entrezGeneId":"105682749"},{"alias":"lncRNA-CCHE1","entrezGeneId":"105682749"},{"alias":"LACAT8","entrezGeneId":"105755954"},{"alias":"MFCS1","entrezGeneId":"105804841"},{"alias":"ZRS/LMBR1","entrezGeneId":"105804841"},{"alias":"CRAT40","entrezGeneId":"105827617"},{"alias":"SIMO","entrezGeneId":"105941491"},{"alias":"ELP4","entrezGeneId":"105980003"},{"alias":"Box123","entrezGeneId":"105980073"},{"alias":"E100","entrezGeneId":"105980073"},{"alias":"ele4","entrezGeneId":"106007493"},{"alias":"NRE","entrezGeneId":"106007493"},{"alias":"p alpha","entrezGeneId":"106007493"},{"alias":"HCNE8","entrezGeneId":"106010957"},{"alias":"HS-110","entrezGeneId":"106010958"},{"alias":"HS-111","entrezGeneId":"106010958"},{"alias":"HCNE2","entrezGeneId":"106029238"},{"alias":"E-200","entrezGeneId":"106029239"},{"alias":"HCNE3","entrezGeneId":"106029239"},{"alias":"PAX6_1","entrezGeneId":"106029239"},{"alias":"DEE","entrezGeneId":"106128905"},{"alias":"DEE 2","entrezGeneId":"106128906"},{"alias":"TCONS_00028914","entrezGeneId":"106144524"},{"alias":"TCONS_00009701","entrezGeneId":"106144530"},{"alias":"GLTSCR1-AS1","entrezGeneId":"106144534"},{"alias":"TCONS_00009423","entrezGeneId":"106144539"},{"alias":"TCONS_00005878","entrezGeneId":"106144540"},{"alias":"TCONS_00009424","entrezGeneId":"106144542"},{"alias":"DADOT","entrezGeneId":"106144568"},{"alias":"alpha-LCR","entrezGeneId":"106144573"},{"alias":"TCONS_00012639","entrezGeneId":"106144586"},{"alias":"GLTSCR2-AS1","entrezGeneId":"106144593"},{"alias":"TCONS_00007515","entrezGeneId":"106144599"},{"alias":"TCONS_00021570","entrezGeneId":"106144601"},{"alias":"TCONS_00021533","entrezGeneId":"106146146"},{"alias":"LA16c-83F12.6","entrezGeneId":"106146148"},{"alias":"n341773","entrezGeneId":"106146149"},{"alias":"lnc-RP11-211G3.3.1-1","entrezGeneId":"106146153"},{"alias":"n341006","entrezGeneId":"106456574"},{"alias":"MTND4L2","entrezGeneId":"106478909"},{"alias":"HBXIPL","entrezGeneId":"106478910"},{"alias":"HBXIPP1","entrezGeneId":"106478910"},{"alias":"Cst","entrezGeneId":"106478911"},{"alias":"Ctes4","entrezGeneId":"106478911"},{"alias":"E2","entrezGeneId":"106478911"},{"alias":"RNU6-41","entrezGeneId":"106478912"},{"alias":"RNU6-5","entrezGeneId":"106478913"},{"alias":"U6-5","entrezGeneId":"106478913"},{"alias":"RNU6-4","entrezGeneId":"106478914"},{"alias":"U6-4","entrezGeneId":"106478914"},{"alias":"RNU6-11","entrezGeneId":"106478915"},{"alias":"RNU6-18","entrezGeneId":"106478916"},{"alias":"RNU6-22","entrezGeneId":"106478917"},{"alias":"RNU6-27","entrezGeneId":"106478918"},{"alias":"RNU6-3","entrezGeneId":"106478919"},{"alias":"U6-3","entrezGeneId":"106478919"},{"alias":"RNU6-37","entrezGeneId":"106478920"},{"alias":"RNU6-43","entrezGeneId":"106478921"},{"alias":"RNU6-44","entrezGeneId":"106478922"},{"alias":"RNU6-49","entrezGeneId":"106478923"},{"alias":"DHRSX-IT","entrezGeneId":"106478924"},{"alias":"DHRSXIT1","entrezGeneId":"106478924"},{"alias":"OOEP-AS","entrezGeneId":"106478938"},{"alias":"RBM22P9","entrezGeneId":"106478953"},{"alias":"MDC1-AS","entrezGeneId":"106478956"},{"alias":"CTB-28J9.2","entrezGeneId":"106478968"},{"alias":"FMR1","entrezGeneId":"106478973"},{"alias":"RNU6-54","entrezGeneId":"106478986"},{"alias":"RNU6-62","entrezGeneId":"106478987"},{"alias":"RNU6-70","entrezGeneId":"106478988"},{"alias":"RNU6-73","entrezGeneId":"106478989"},{"alias":"RNU6-80","entrezGeneId":"106478990"},{"alias":"RN5S50","entrezGeneId":"106478992"},{"alias":"RN5S99","entrezGeneId":"106478993"},{"alias":"RN5S106","entrezGeneId":"106478994"},{"alias":"RN5S130","entrezGeneId":"106478995"},{"alias":"RN5S140","entrezGeneId":"106478996"},{"alias":"RN5S172","entrezGeneId":"106478997"},{"alias":"RN5S174","entrezGeneId":"106478998"},{"alias":"RN5S206","entrezGeneId":"106478999"},{"alias":"RN5S226","entrezGeneId":"106479000"},{"alias":"RN5S243","entrezGeneId":"106479001"},{"alias":"RN5S263","entrezGeneId":"106479002"},{"alias":"RN5S297","entrezGeneId":"106479003"},{"alias":"RN5S302","entrezGeneId":"106479004"},{"alias":"RN5S315","entrezGeneId":"106479005"},{"alias":"RN5S317","entrezGeneId":"106479006"},{"alias":"RN5S335","entrezGeneId":"106479007"},{"alias":"RN5S342","entrezGeneId":"106479008"},{"alias":"RN5S355","entrezGeneId":"106479009"},{"alias":"RN5S376","entrezGeneId":"106479010"},{"alias":"RN5S377","entrezGeneId":"106479011"},{"alias":"RN5S403","entrezGeneId":"106479012"},{"alias":"RN5S435","entrezGeneId":"106479013"},{"alias":"RN5S439","entrezGeneId":"106479014"},{"alias":"RN5S448","entrezGeneId":"106479015"},{"alias":"RN5S458","entrezGeneId":"106479016"},{"alias":"RN5S473","entrezGeneId":"106479017"},{"alias":"RN5S521","entrezGeneId":"106479018"},{"alias":"RN5S522","entrezGeneId":"106479019"},{"alias":"KIAA0196-AS1","entrezGeneId":"106479020"},{"alias":"p05","entrezGeneId":"106479023"},{"alias":"PBEF","entrezGeneId":"106479034"},{"alias":"TUBA8P2","entrezGeneId":"106479041"},{"alias":"MKI67IPP7","entrezGeneId":"106479049"},{"alias":"RN7SL527P","entrezGeneId":"106479312"},{"alias":"RN7SL694P","entrezGeneId":"106479322"},{"alias":"RNU6-683P","entrezGeneId":"106479692"},{"alias":"RNU6-292P","entrezGeneId":"106479808"},{"alias":"FZD5","entrezGeneId":"106479861"},{"alias":"RNU6-1185P","entrezGeneId":"106479907"},{"alias":"COPS7B","entrezGeneId":"106479938"},{"alias":"PTMAP7","entrezGeneId":"106479938"},{"alias":"RNU1-6","entrezGeneId":"106480152"},{"alias":"HTR2B","entrezGeneId":"106480180"},{"alias":"PSMD1","entrezGeneId":"106480180"},{"alias":"TSARG1","entrezGeneId":"106480180"},{"alias":"TCEB1P35","entrezGeneId":"106480250"},{"alias":"IGKV1/OR9-2","entrezGeneId":"106480274"},{"alias":"FAM195DP","entrezGeneId":"106480278"},{"alias":"MCRIP2P1","entrezGeneId":"106480278"},{"alias":"TRIM47LP","entrezGeneId":"106480328"},{"alias":"RN5S59","entrezGeneId":"106480357"},{"alias":"RN5S311","entrezGeneId":"106480358"},{"alias":"RN5S314","entrezGeneId":"106480358"},{"alias":"RNA5SP314","entrezGeneId":"106480358"},{"alias":"PRR20F","entrezGeneId":"106480416"},{"alias":"RNU6-13","entrezGeneId":"106480423"},{"alias":"RNU6-61","entrezGeneId":"106480435"},{"alias":"RN5S70","entrezGeneId":"106480436"},{"alias":"RN5S149","entrezGeneId":"106480437"},{"alias":"RN5S199","entrezGeneId":"106480438"},{"alias":"RN5S312","entrezGeneId":"106480439"},{"alias":"RN5S313","entrezGeneId":"106480439"},{"alias":"RNA5SP313","entrezGeneId":"106480439"},{"alias":"PBEF","entrezGeneId":"106480577"},{"alias":"RNU6-825P","entrezGeneId":"106480594"},{"alias":"RNU6-1173P","entrezGeneId":"106480622"},{"alias":"RN7SKP138","entrezGeneId":"106480692"},{"alias":"RNU6-40","entrezGeneId":"106480703"},{"alias":"RNU6-25","entrezGeneId":"106480704"},{"alias":"RNU6-17","entrezGeneId":"106480705"},{"alias":"RNU6-20","entrezGeneId":"106480706"},{"alias":"RNU6-24","entrezGeneId":"106480707"},{"alias":"RNU6-32","entrezGeneId":"106480708"},{"alias":"RNU6-38","entrezGeneId":"106480709"},{"alias":"RNU6-47","entrezGeneId":"106480710"},{"alias":"FABP5L13","entrezGeneId":"106480712"},{"alias":"CYP2C8-de6b","entrezGeneId":"106480748"},{"alias":"RNU6-60","entrezGeneId":"106480750"},{"alias":"RNU6-65","entrezGeneId":"106480751"},{"alias":"RNU6-74","entrezGeneId":"106480752"},{"alias":"RN5S57","entrezGeneId":"106480754"},{"alias":"RN5S58","entrezGeneId":"106480754"},{"alias":"RNA5SP58","entrezGeneId":"106480754"},{"alias":"RN5S100","entrezGeneId":"106480755"},{"alias":"RN5S134","entrezGeneId":"106480756"},{"alias":"RN5S161","entrezGeneId":"106480757"},{"alias":"RN5S175","entrezGeneId":"106480758"},{"alias":"RN5S221","entrezGeneId":"106480759"},{"alias":"RN5S253","entrezGeneId":"106480760"},{"alias":"RN5S298","entrezGeneId":"106480761"},{"alias":"RN5S310","entrezGeneId":"106480762"},{"alias":"RN5S316","entrezGeneId":"106480762"},{"alias":"RNA5SP316","entrezGeneId":"106480762"},{"alias":"RN5S333","entrezGeneId":"106480763"},{"alias":"RN5S351","entrezGeneId":"106480764"},{"alias":"RN5S370","entrezGeneId":"106480765"},{"alias":"RN5S389","entrezGeneId":"106480766"},{"alias":"RN5S429","entrezGeneId":"106480767"},{"alias":"RN5S442","entrezGeneId":"106480768"},{"alias":"RN5S468","entrezGeneId":"106480769"},{"alias":"RN5S498","entrezGeneId":"106480770"},{"alias":"RN5S520","entrezGeneId":"106480771"},{"alias":"RN5S523","entrezGeneId":"106480772"},{"alias":"CTES7D","entrezGeneId":"106480788"},{"alias":"MKI67IPP9","entrezGeneId":"106480805"},{"alias":"RNU7-135P","entrezGeneId":"106480818"},{"alias":"BCR","entrezGeneId":"106480993"},{"alias":"rbc","entrezGeneId":"106480993"},{"alias":"RN7SL579P","entrezGeneId":"106481020"},{"alias":"RN7SL257P","entrezGeneId":"106481051"},{"alias":"RNU6-1033P","entrezGeneId":"106481244"},{"alias":"RNU6-186P","entrezGeneId":"106481537"},{"alias":"RNU6-1295P","entrezGeneId":"106481589"},{"alias":"RNU1-8","entrezGeneId":"106481604"},{"alias":"RNU1-137P","entrezGeneId":"106481630"},{"alias":"SLMO2P2","entrezGeneId":"106481667"},{"alias":"TCEB1P30","entrezGeneId":"106481670"},{"alias":"TCEB1P34","entrezGeneId":"106481671"},{"alias":"IGKV1/OR2-2","entrezGeneId":"106481689"},{"alias":"RN5S443","entrezGeneId":"106481745"},{"alias":"RNU6-77","entrezGeneId":"106481792"},{"alias":"RN5S254","entrezGeneId":"106481793"},{"alias":"RN5S350","entrezGeneId":"106481794"},{"alias":"RNU6-1221P","entrezGeneId":"106481886"},{"alias":"RNU6-1030P","entrezGeneId":"106481919"},{"alias":"RNU1-7","entrezGeneId":"106481952"},{"alias":"TCEB1P32","entrezGeneId":"106481964"},{"alias":"RNU6-12","entrezGeneId":"106481973"},{"alias":"ZNF141","entrezGeneId":"106481981"},{"alias":"RNA45S4","entrezGeneId":"106631777"},{"alias":"RNA18S4","entrezGeneId":"106631781"},{"alias":"RNA5-8S4","entrezGeneId":"106632260"},{"alias":"RNA28S4","entrezGeneId":"106632264"},{"alias":"ZL43","entrezGeneId":"106632271"},{"alias":"ggn68","entrezGeneId":"106633800"},{"alias":"ZL142","entrezGeneId":"106633800"},{"alias":"ZL42","entrezGeneId":"106633800"},{"alias":"ZL1","entrezGeneId":"106633801"},{"alias":"ZL12","entrezGeneId":"106633803"},{"alias":"ZL2","entrezGeneId":"106633804"},{"alias":"ZL26","entrezGeneId":"106633805"},{"alias":"SNORA85","entrezGeneId":"106633806"},{"alias":"SNORD174","entrezGeneId":"106633806"},{"alias":"ZL68","entrezGeneId":"106633806"},{"alias":"SNORA96","entrezGeneId":"106633808"},{"alias":"SNORD171","entrezGeneId":"106633808"},{"alias":"ZL5","entrezGeneId":"106633808"},{"alias":"SNORA97","entrezGeneId":"106633809"},{"alias":"ZL6","entrezGeneId":"106633809"},{"alias":"TCONS_00005874","entrezGeneId":"106635527"},{"alias":"C14DUPq32","entrezGeneId":"106699575"},{"alias":"nPE1","entrezGeneId":"106728414"},{"alias":"nPE2","entrezGeneId":"106728414"},{"alias":"nCaRE-A","entrezGeneId":"106736470"},{"alias":"nCaRE-B","entrezGeneId":"106736470"},{"alias":"nCARE1","entrezGeneId":"106736470"},{"alias":"nCARE2","entrezGeneId":"106736470"},{"alias":"Enh1","entrezGeneId":"106736613"},{"alias":"Enh2","entrezGeneId":"106736613"},{"alias":"IVS+9494","entrezGeneId":"106736613"},{"alias":"RET+3","entrezGeneId":"106736613"},{"alias":"RN5S334","entrezGeneId":"106865375"},{"alias":"ALS2CR3","entrezGeneId":"107075148"},{"alias":"ALS2CR3","entrezGeneId":"107075155"},{"alias":"ALS2CR3","entrezGeneId":"107075158"},{"alias":"ALS2CR3","entrezGeneId":"107075210"},{"alias":"ALS2CR3","entrezGeneId":"107075278"},{"alias":"COII","entrezGeneId":"107075310"},{"alias":"COX2","entrezGeneId":"107075310"},{"alias":"COXII","entrezGeneId":"107075310"},{"alias":"MT-CO2","entrezGeneId":"107075310"},{"alias":"MTCO2","entrezGeneId":"107075310"},{"alias":"hLCR","entrezGeneId":"107080646"},{"alias":"RNU1-5","entrezGeneId":"107105261"},{"alias":"AOH1","entrezGeneId":"107126360"},{"alias":"AOX3","entrezGeneId":"107126360"},{"alias":"CD2-DCR","entrezGeneId":"107126361"},{"alias":"RNU6-29","entrezGeneId":"107131122"},{"alias":"RN5S387","entrezGeneId":"107133508"},{"alias":"DHX40P","entrezGeneId":"107133522"},{"alias":"TCEB1P27","entrezGeneId":"107133523"},{"alias":"ADPRTL4","entrezGeneId":"107133524"},{"alias":"PMS2L11","entrezGeneId":"107161145"},{"alias":"PMSR6","entrezGeneId":"107161145"},{"alias":"AOX3/AOX3L1","entrezGeneId":"107161151"},{"alias":"Yam-1","entrezGeneId":"107161157"},{"alias":"POP3","entrezGeneId":"107181291"},{"alias":"Or6","entrezGeneId":"107197953"},{"alias":"S3","entrezGeneId":"107228318"},{"alias":"S14","entrezGeneId":"107228383"},{"alias":"MCDR1","entrezGeneId":"107305681"},{"alias":"ZL4","entrezGeneId":"107399303"},{"alias":"CYP2C62P","entrezGeneId":"107436076"},{"alias":"C16DELp13.2","entrezGeneId":"107457589"},{"alias":"C15DELq14","entrezGeneId":"107522105"},{"alias":"L/M-LCR","entrezGeneId":"107604627"},{"alias":"LCR-OPSIN","entrezGeneId":"107604627"},{"alias":"OPN1C","entrezGeneId":"107604627"},{"alias":"MIR3180-2","entrezGeneId":"107984155"},{"alias":"MIR3180-3","entrezGeneId":"107984155"},{"alias":"LA16c-306A4.2","entrezGeneId":"107984876"},{"alias":"EIF1AX","entrezGeneId":"107984923"},{"alias":"WDR7-UA1","entrezGeneId":"107985140"},{"alias":"WDR7-UT1","entrezGeneId":"107985140"},{"alias":"WI2-85898F10.1","entrezGeneId":"107985535"},{"alias":"lnc-MKI67IP-3","entrezGeneId":"107985818"},{"alias":"K21.1","entrezGeneId":"107985879"},{"alias":"RP11-89","entrezGeneId":"107985879"},{"alias":"EMCN-IT1","entrezGeneId":"107986233"},{"alias":"MUC-B1","entrezGeneId":"107986752"},{"alias":"CTB-51J22.1","entrezGeneId":"107986809"},{"alias":"FAM27E4P","entrezGeneId":"107987001"},{"alias":"CH507-154B10.1","entrezGeneId":"107987290"},{"alias":"ZFY-AS","entrezGeneId":"107987337"},{"alias":"ZFYAS","entrezGeneId":"107987337"},{"alias":"CYP2D6","entrezGeneId":"107987479"},{"alias":"CNE2","entrezGeneId":"108004545"},{"alias":"Xe1","entrezGeneId":"108228200"},{"alias":"PEC7","entrezGeneId":"108228202"},{"alias":"SRR1","entrezGeneId":"108281177"},{"alias":"uCNE5","entrezGeneId":"108353830"},{"alias":"ECR1","entrezGeneId":"108383238"},{"alias":"ECR1/CNE7","entrezGeneId":"108383238"},{"alias":"ECR7","entrezGeneId":"108410391"},{"alias":"ECS4","entrezGeneId":"108410392"},{"alias":"ECS4/CNE9","entrezGeneId":"108410392"},{"alias":"DINO","entrezGeneId":"108783646"},{"alias":"C19DELq13.11p","entrezGeneId":"109136577"},{"alias":"lncRNA-PRAL","entrezGeneId":"109245082"},{"alias":"h-PLK","entrezGeneId":"109504726"},{"alias":"beta-DCR","entrezGeneId":"109580095"},{"alias":"beta-LAR","entrezGeneId":"109580095"},{"alias":"LCRB","entrezGeneId":"109580095"},{"alias":"SNORA15C","entrezGeneId":"109617022"},{"alias":"mir-3607","entrezGeneId":"109623460"},{"alias":"MIR3607","entrezGeneId":"109623460"},{"alias":"BAFME","entrezGeneId":"109729092"},{"alias":"FAME","entrezGeneId":"109729092"},{"alias":"CLA3","entrezGeneId":"109729103"},{"alias":"CLA4","entrezGeneId":"109729103"},{"alias":"FAM236D","entrezGeneId":"109729126"},{"alias":"L19.1","entrezGeneId":"109729138"},{"alias":"RP11-21","entrezGeneId":"109729138"},{"alias":"lnc00462717","entrezGeneId":"109729140"},{"alias":"lncRNA-SRLR","entrezGeneId":"109729161"},{"alias":"TCONS_00019174","entrezGeneId":"109729162"},{"alias":"HIPSTR","entrezGeneId":"109729173"},{"alias":"PDXDC2","entrezGeneId":"109731405"},{"alias":"RNA45S5","entrezGeneId":"109864271"},{"alias":"RN28S1","entrezGeneId":"109864272"},{"alias":"RNA28S5","entrezGeneId":"109864272"},{"alias":"RN18S1","entrezGeneId":"109864273"},{"alias":"RNA18S5","entrezGeneId":"109864273"},{"alias":"RN5-8S1","entrezGeneId":"109864274"},{"alias":"RNA5-8S5","entrezGeneId":"109864274"},{"alias":"RNA5-8N2","entrezGeneId":"109864281"},{"alias":"A-gamma-e","entrezGeneId":"109951028"},{"alias":"env","entrezGeneId":"110006328"},{"alias":"envK4","entrezGeneId":"110006328"},{"alias":"HERV-K109","entrezGeneId":"110006328"},{"alias":"RN28S1","entrezGeneId":"110255168"},{"alias":"RN18S1","entrezGeneId":"110255169"},{"alias":"RN5-8S1","entrezGeneId":"110255170"},{"alias":"CLEM","entrezGeneId":"110366354"},{"alias":"XREM","entrezGeneId":"110366354"},{"alias":"PBREM","entrezGeneId":"110599575"},{"alias":"ASNSD1","entrezGeneId":"110599588"},{"alias":"ASNSD1-SEP","entrezGeneId":"110599588"},{"alias":"C5T1LNCRNA","entrezGeneId":"110599590"},{"alias":"HS-107","entrezGeneId":"110740348"},{"alias":"ASBEL","entrezGeneId":"110806272"},{"alias":"Lnc-LIF-AS","entrezGeneId":"110806283"},{"alias":"5HTT-VNTR2","entrezGeneId":"110806307"},{"alias":"5HTTVNTR","entrezGeneId":"110806307"},{"alias":"STin2.10","entrezGeneId":"110806307"},{"alias":"STin2.12","entrezGeneId":"110806307"},{"alias":"STin2.9","entrezGeneId":"110806307"},{"alias":"VNTR2","entrezGeneId":"110806307"},{"alias":"lncCAMTA1","entrezGeneId":"110841581"},{"alias":"lnc-LAMC2-1:1","entrezGeneId":"110841583"},{"alias":"TPM1-AS1","entrezGeneId":"111064646"},{"alias":"BGas","entrezGeneId":"111082987"},{"alias":"TCONS_00011283","entrezGeneId":"111082993"},{"alias":"CTD-2316B1","entrezGeneId":"111082994"},{"alias":"IFITMD9","entrezGeneId":"111216276"},{"alias":"HHc2:066543","entrezGeneId":"111258501"},{"alias":"HCNR629","entrezGeneId":"111258507"},{"alias":"HCNR602","entrezGeneId":"111258518"},{"alias":"DHS6S1","entrezGeneId":"111365204"},{"alias":"TCONS_00009352","entrezGeneId":"112163642"},{"alias":"hCG1648055","entrezGeneId":"112163659"},{"alias":"SCGB1B3","entrezGeneId":"112163673"},{"alias":"SCGB4A4","entrezGeneId":"112163673"},{"alias":"KIR2DL1","entrezGeneId":"112267881"},{"alias":"CYP21A2","entrezGeneId":"112268338"},{"alias":"DUX4","entrezGeneId":"112268343"},{"alias":"DUX4L","entrezGeneId":"112268343"},{"alias":"AAK1","entrezGeneId":"112268437"},{"alias":"KRTAP12p1","entrezGeneId":"112268487"}] \ No newline at end of file diff --git a/core/src/test/scripts/test_data/api_json_unit_tests/genesets.json b/core/src/test/scripts/test_data/api_json_unit_tests/genesets.json deleted file mode 100644 index c283f00312a..00000000000 --- a/core/src/test/scripts/test_data/api_json_unit_tests/genesets.json +++ /dev/null @@ -1,11 +0,0 @@ -[ -{"_comment": "genesets for data_genesets.txt", - "genesetId":"GO_ACYLGLYCEROL_HOMEOSTASIS"}, -{"genesetId":"GO_ANATOMICAL_STRUCTURE_FORMATION_INVOLVED_IN_MORPHOGENESIS"}, -{"genesetId":"GO_ANTEROGRADE_AXONAL_TRANSPORT"}, -{"genesetId":"GO_APICAL_PROTEIN_LOCALIZATION"}, -{"genesetId":"GO_ATP_DEPENDENT_CHROMATIN_REMODELING"}, -{"genesetId":"GO_CARBOHYDRATE_CATABOLIC_PROCESS"}, -{"genesetId":"GO_CARDIAC_CHAMBER_DEVELOPMENT"}, -{"genesetId":"GO_CARDIAC_MUSCLE_ADAPTATION"} -] diff --git a/core/src/test/scripts/test_data/api_json_unit_tests/genesets_version.json b/core/src/test/scripts/test_data/api_json_unit_tests/genesets_version.json deleted file mode 100644 index 204c3d72556..00000000000 --- a/core/src/test/scripts/test_data/api_json_unit_tests/genesets_version.json +++ /dev/null @@ -1 +0,0 @@ -["msigdb_7.5.1"] \ No newline at end of file diff --git a/core/src/test/scripts/test_data/case_lists_duplicate_category/cases_test1.txt b/core/src/test/scripts/test_data/case_lists_duplicate_category/cases_test1.txt deleted file mode 100644 index 69546c91729..00000000000 --- a/core/src/test/scripts/test_data/case_lists_duplicate_category/cases_test1.txt +++ /dev/null @@ -1,6 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_mrna1 -case_list_name: All Tumors 1 -case_list_description: All tumor samples (825 samples) 1 -case_list_category: all_cases_with_mrna_rnaseq_data -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 TCGA-BH-A18H-01 TCGA-C8-A138-01 TCGA-A2-A0EY-01 TCGA-A8-A08G-01 diff --git a/core/src/test/scripts/test_data/case_lists_duplicate_category/cases_test2.txt b/core/src/test/scripts/test_data/case_lists_duplicate_category/cases_test2.txt deleted file mode 100644 index c4096c5bb6c..00000000000 --- a/core/src/test/scripts/test_data/case_lists_duplicate_category/cases_test2.txt +++ /dev/null @@ -1,6 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_mrna2 -case_list_name: All Tumors 2 -case_list_description: All tumor samples (825 samples) 2 -case_list_category: all_cases_with_mrna_rnaseq_data -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 TCGA-BH-A18H-01 TCGA-C8-A138-01 TCGA-A2-A0EY-01 TCGA-A8-A08G-01 diff --git a/core/src/test/scripts/test_data/case_lists_duplicated/cases_all.txt b/core/src/test/scripts/test_data/case_lists_duplicated/cases_all.txt deleted file mode 100644 index e5043860f19..00000000000 --- a/core/src/test/scripts/test_data/case_lists_duplicated/cases_all.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_all -case_list_name: All Tumors -case_list_description: All tumor samples (825 samples) -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 TCGA-BH-A18H-01 TCGA-C8-A138-01 TCGA-A2-A0EY-01 TCGA-A8-A08G-01 diff --git a/core/src/test/scripts/test_data/case_lists_duplicated/cases_each_and_every.txt b/core/src/test/scripts/test_data/case_lists_duplicated/cases_each_and_every.txt deleted file mode 100644 index e5043860f19..00000000000 --- a/core/src/test/scripts/test_data/case_lists_duplicated/cases_each_and_every.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_all -case_list_name: All Tumors -case_list_description: All tumor samples (825 samples) -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 TCGA-BH-A18H-01 TCGA-C8-A138-01 TCGA-A2-A0EY-01 TCGA-A8-A08G-01 diff --git a/core/src/test/scripts/test_data/case_lists_duplicated_sampleid/cases_all.txt b/core/src/test/scripts/test_data/case_lists_duplicated_sampleid/cases_all.txt deleted file mode 100644 index b13ca507d6a..00000000000 --- a/core/src/test/scripts/test_data/case_lists_duplicated_sampleid/cases_all.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_all -case_list_name: All Tumors -case_list_description: All tumor samples (825 samples) -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 TCGA-BH-A18H-01 TCGA-C8-A138-01 TCGA-A2-A0EY-01 TCGA-A8-A08G-01 diff --git a/core/src/test/scripts/test_data/case_lists_invalid_category/cases_all.txt b/core/src/test/scripts/test_data/case_lists_invalid_category/cases_all.txt deleted file mode 100644 index 7ba3258791d..00000000000 --- a/core/src/test/scripts/test_data/case_lists_invalid_category/cases_all.txt +++ /dev/null @@ -1,6 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_mrna -case_list_name: All Tumors -case_list_description: All tumor samples (825 samples) -case_list_category: all_cases_with_mrna_seq_data -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 TCGA-BH-A18H-01 TCGA-C8-A138-01 TCGA-A2-A0EY-01 TCGA-A8-A08G-01 diff --git a/core/src/test/scripts/test_data/data_cancertype_blank_color_col.txt b/core/src/test/scripts/test_data/data_cancertype_blank_color_col.txt deleted file mode 100644 index cd4adec00bc..00000000000 --- a/core/src/test/scripts/test_data/data_cancertype_blank_color_col.txt +++ /dev/null @@ -1 +0,0 @@ -luad Lung Adenocarcinoma Lung diff --git a/core/src/test/scripts/test_data/data_cancertype_confirming_existing.txt b/core/src/test/scripts/test_data/data_cancertype_confirming_existing.txt deleted file mode 100644 index 2067c5e8afc..00000000000 --- a/core/src/test/scripts/test_data/data_cancertype_confirming_existing.txt +++ /dev/null @@ -1 +0,0 @@ -brca Invasive Breast Carcinoma HotPink Breast diff --git a/core/src/test/scripts/test_data/data_cancertype_invalid_color.txt b/core/src/test/scripts/test_data/data_cancertype_invalid_color.txt deleted file mode 100644 index d2c2adeffcb..00000000000 --- a/core/src/test/scripts/test_data/data_cancertype_invalid_color.txt +++ /dev/null @@ -1 +0,0 @@ -net Neuroendocrine Tumour Zebra tissue diff --git a/core/src/test/scripts/test_data/data_cancertype_lung.txt b/core/src/test/scripts/test_data/data_cancertype_lung.txt deleted file mode 100644 index fd85d7aa3c0..00000000000 --- a/core/src/test/scripts/test_data/data_cancertype_lung.txt +++ /dev/null @@ -1 +0,0 @@ -luad Lung Adenocarcinoma Gainsboro Lung diff --git a/core/src/test/scripts/test_data/data_cancertype_lung_twice.txt b/core/src/test/scripts/test_data/data_cancertype_lung_twice.txt deleted file mode 100644 index 46569de3cd1..00000000000 --- a/core/src/test/scripts/test_data/data_cancertype_lung_twice.txt +++ /dev/null @@ -1,2 +0,0 @@ -luad Lung Adenocarcinoma Gainsboro Lung -luad Lung Adenocarcinoma AntiqueWhite Lung diff --git a/core/src/test/scripts/test_data/data_cancertype_missing_color_col.txt b/core/src/test/scripts/test_data/data_cancertype_missing_color_col.txt deleted file mode 100644 index bfe093993f5..00000000000 --- a/core/src/test/scripts/test_data/data_cancertype_missing_color_col.txt +++ /dev/null @@ -1 +0,0 @@ -luad Lung Adenocarcinoma Lung diff --git a/core/src/test/scripts/test_data/data_cancertype_redefining.txt b/core/src/test/scripts/test_data/data_cancertype_redefining.txt deleted file mode 100644 index 861b56b683f..00000000000 --- a/core/src/test/scripts/test_data/data_cancertype_redefining.txt +++ /dev/null @@ -1 +0,0 @@ -brca Breast Cancer HotPink Breast diff --git a/core/src/test/scripts/test_data/data_cancertype_undefined_parent.txt b/core/src/test/scripts/test_data/data_cancertype_undefined_parent.txt deleted file mode 100644 index f65fbdb8c52..00000000000 --- a/core/src/test/scripts/test_data/data_cancertype_undefined_parent.txt +++ /dev/null @@ -1,2 +0,0 @@ -luad Lung Adenocarcinoma Gainsboro Long -new new type PaleGreen tissue diff --git a/core/src/test/scripts/test_data/data_clin_coldefs_banned_attribute.txt b/core/src/test/scripts/test_data/data_clin_coldefs_banned_attribute.txt deleted file mode 100644 index 1c6fe1c687c..00000000000 --- a/core/src/test/scripts/test_data/data_clin_coldefs_banned_attribute.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Patient Identifier Overall Survival (Months) Overall Survival Status Disease Free (Months) Disease Free Status Mutation Count -#Identifier to uniquely specify a patient. Overall survival in months since initial diagnosis. Overall patient survival status. Disease free (months) since initial treatment. Disease free status since initial treatment. Mutation Count in the data instead of calculated in cBioPortal -#STRING NUMBER STRING NUMBER STRING NUMBER -#1 1 1 1 1 1 -PATIENT_ID OS_MONTHS OS_STATUS DFS_MONTHS DFS_STATUS MUTATION_COUNT -TEST-PAT1 272 0:LIVING 272 1:Recurred/Progressed 2 -TEST-PAT3 208 0:LIVING 208 1:Recurred/Progressed 3 -TEST-PAT4 60 1:DECEASED 60 1:Recurred/Progressed 100 -TEST-PAT6 151 0:LIVING 151 1:Recurred/Progressed 1702 -TEST-PAT5 290 0:LIVING 290 1:Recurred/Progressed 1 -TEST-PAT7 88 0:LIVING 88 1:Recurred/Progressed 22 -TEST-PAT9 72 0:LIVING 72 1:Recurred/Progressed 42 -TEST-PAT2 161 1:DECEASED 161 NA 16 diff --git a/core/src/test/scripts/test_data/data_clin_coldefs_correct.txt b/core/src/test/scripts/test_data/data_clin_coldefs_correct.txt deleted file mode 100644 index bc94ced7e29..00000000000 --- a/core/src/test/scripts/test_data/data_clin_coldefs_correct.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Patient Identifier Overall Survival (Months) Overall Survival Status Disease Free (Months) Disease Free Status -#Identifier to uniquely specify a patient. Overall survival in months since initial diagnosis. Overall patient survival status. Disease free (months) since initial treatment. Disease free status since initial treatment. -#STRING NUMBER STRING NUMBER STRING -#1 1 1 1 1 -PATIENT_ID OS_MONTHS OS_STATUS DFS_MONTHS DFS_STATUS -TEST-PAT1 272 0:LIVING 272 1:Recurred/Progressed -TEST-PAT3 208 0:LIVING 208 1:Recurred/Progressed -TEST-PAT4 60 1:DECEASED 60 1:Recurred/Progressed -TEST-PAT6 151 0:LIVING 151 1:Recurred/Progressed -TEST-PAT5 290 0:LIVING 290 1:Recurred/Progressed -TEST-PAT7 88 0:LIVING 88 1:Recurred/Progressed -TEST-PAT9 72 0:LIVING 72 1:Recurred/Progressed -TEST-PAT2 161 1:DECEASED 161 NA diff --git a/core/src/test/scripts/test_data/data_clin_coldefs_hardcoded_attrs.txt b/core/src/test/scripts/test_data/data_clin_coldefs_hardcoded_attrs.txt deleted file mode 100644 index 8e04ec144c3..00000000000 --- a/core/src/test/scripts/test_data/data_clin_coldefs_hardcoded_attrs.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Patient Identifier Overall Survival (Months) Overall Survival Status Disease Free (Months) Disease Free Status Other Sample ID Metastatic site -#Identifier to uniquely specify a patient. Overall survival in months since initial diagnosis. Overall patient survival status. Disease free (months) since initial treatment. Disease free status since initial treatment. Legacy DMP sample identifier (DMPnnnn) Metastatic site -#STRING STRING STRING NUMBER STRING STRING STRING -#1 1 1 1 1 1 1 -PATIENT_ID OS_MONTHS OS_STATUS DFS_MONTHS DFS_STATUS OTHER_SAMPLE_ID METASTATIC_SITE -TEST-PAT1 272 0:LIVING 272 1:Recurred/Progressed NA neck -TEST-PAT3 208 0:LIVING 208 1:Recurred/Progressed NA -TEST-PAT4 60 1:DECEASED 60 1:Recurred/Progressed NA -TEST-PAT6 151 0:LIVING 151 1:Recurred/Progressed NA -TEST-PAT5 290 0:LIVING 290 1:Recurred/Progressed NA -TEST-PAT7 88 0:LIVING 88 1:Recurred/Progressed NA -TEST-PAT9 72 0:LIVING 72 1:Recurred/Progressed NA -TEST-PAT2 161 1:DECEASED 161 NA NA diff --git a/core/src/test/scripts/test_data/data_clin_coldefs_invalid_priority.txt b/core/src/test/scripts/test_data/data_clin_coldefs_invalid_priority.txt deleted file mode 100644 index 8c05e553bde..00000000000 --- a/core/src/test/scripts/test_data/data_clin_coldefs_invalid_priority.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Patient Identifier Overall Survival (Months) Overall Survival Status Disease Free (Months) Disease Free Status Eggs -#Identifier to uniquely specify a patient. Overall survival in months since initial diagnosis. Overall patient survival status. Disease free (months) since initial treatment. Disease free status since initial treatment. Baked beans -#STRING NUMBER STRING NUMBER STRING STRING -#1 1 1 1 1 tomato -PATIENT_ID OS_MONTHS OS_STATUS DFS_MONTHS DFS_STATUS SAUSAGE -TEST-PAT1 272 0:LIVING 272 1:Recurred/Progressed Spam -TEST-PAT3 208 0:LIVING 208 1:Recurred/Progressed Spam -TEST-PAT4 60 1:DECEASED 60 1:Recurred/Progressed Spam -TEST-PAT6 151 0:LIVING 151 1:Recurred/Progressed Spam -TEST-PAT5 290 0:LIVING 290 1:Recurred/Progressed Spam -TEST-PAT7 88 0:LIVING 88 1:Recurred/Progressed Spam -TEST-PAT9 72 0:LIVING 72 1:Recurred/Progressed Spam -TEST-PAT2 161 1:DECEASED 161 NA Spam diff --git a/core/src/test/scripts/test_data/data_clin_coldefs_lowercase_attribute.txt b/core/src/test/scripts/test_data/data_clin_coldefs_lowercase_attribute.txt deleted file mode 100644 index 430f1eb47bc..00000000000 --- a/core/src/test/scripts/test_data/data_clin_coldefs_lowercase_attribute.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Patient Identifier Overall Survival (Months) Overall Survival Status Disease Free (Months) Disease Free Status Eggs -#Identifier to uniquely specify a patient. Overall survival in months since initial diagnosis. Overall patient survival status. Disease free (months) since initial treatment. Disease free status since initial treatment. Baked beans -#STRING NUMBER STRING NUMBER STRING STRING -#1 1 1 1 1 1 -PATIENT_ID OS_MONTHS OS_STATUS DFS_MONTHS DFS_STATUS Sausage -TEST-PAT1 272 0:LIVING 272 1:Recurred/Progressed Spam -TEST-PAT3 208 0:LIVING 208 1:Recurred/Progressed Spam -TEST-PAT4 60 1:DECEASED 60 1:Recurred/Progressed Spam -TEST-PAT6 151 0:LIVING 151 1:Recurred/Progressed Spam -TEST-PAT5 290 0:LIVING 290 1:Recurred/Progressed Spam -TEST-PAT7 88 0:LIVING 88 1:Recurred/Progressed Spam -TEST-PAT9 72 0:LIVING 72 1:Recurred/Progressed Spam -TEST-PAT2 161 1:DECEASED 161 NA Spam diff --git a/core/src/test/scripts/test_data/data_clin_coldefs_wrong_display_name.txt b/core/src/test/scripts/test_data/data_clin_coldefs_wrong_display_name.txt deleted file mode 100644 index 0d82ffbfe69..00000000000 --- a/core/src/test/scripts/test_data/data_clin_coldefs_wrong_display_name.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Patient Identifier Spam Overall Survival Status Disease Free (Months) Disease Free Status -#Identifier to uniquely specify a patient. Overall survival in months since initial diagnosis. Overall patient survival status. Disease free (months) since initial treatment. Disease free status since initial treatment. -#STRING NUMBER STRING NUMBER STRING -#1 1 1 1 1 -PATIENT_ID OS_MONTHS OS_STATUS DFS_MONTHS DFS_STATUS -TEST-PAT1 272 0:LIVING 272 1:Recurred/Progressed -TEST-PAT3 208 0:LIVING 208 1:Recurred/Progressed -TEST-PAT4 60 1:DECEASED 60 1:Recurred/Progressed -TEST-PAT6 151 0:LIVING 151 1:Recurred/Progressed -TEST-PAT5 290 0:LIVING 290 1:Recurred/Progressed -TEST-PAT7 88 0:LIVING 88 1:Recurred/Progressed -TEST-PAT9 72 0:LIVING 72 1:Recurred/Progressed -TEST-PAT2 161 1:DECEASED 161 NA diff --git a/core/src/test/scripts/test_data/data_clin_date_in_nondate_column.txt b/core/src/test/scripts/test_data/data_clin_date_in_nondate_column.txt deleted file mode 100644 index ddbdfbe847d..00000000000 --- a/core/src/test/scripts/test_data/data_clin_date_in_nondate_column.txt +++ /dev/null @@ -1,12 +0,0 @@ -#Patient Identifier Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) Some Score -#Patient identifier Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment Some Description -#STRING STRING NUMBER STRING NUMBER STRING -#1 1 1 1 1 1 -PATIENT_ID OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS SOME_SCORE -TCGA-A2-A04P 1:Recurred/Progressed [Not Available] 5 -TCGA-A1-A0SK 1:DECEASED 31.77 [Not Available] 31-77 -TCGA-A2-A0CM 1:DECEASED 24.77 1:Recurred/Progressed [Not Available] Jan-14 -TCGA-AR-A1AR 1:DECEASED 17.18 [Not Available] [Not Available] 4-Oct -TCGA-B6-A0WX 1:DECEASED 21.45 1:Recurred/Progressed [Not Available] 21.45 -TCGA-BH-A1F0 1:DECEASED 25.79 1:Recurred/Progressed [Not Available] 25.79 -TCGA-B6-A0I6 1:DECEASED 32.56 1:Recurred/Progressed [Not Available] 32.56 diff --git a/core/src/test/scripts/test_data/data_clin_hardcoded_attr_vals.txt b/core/src/test/scripts/test_data/data_clin_hardcoded_attr_vals.txt deleted file mode 100644 index 92086763efa..00000000000 --- a/core/src/test/scripts/test_data/data_clin_hardcoded_attr_vals.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Patient Identifier Overall Survival (Months) Overall Survival Status Disease Free (Months) Disease Free Status Progress Free Survival (Months) Progression Free Status -#Identifier to uniquely specify a patient. Overall survival in months since initial diagnosis. Overall patient survival status. Disease free (months) since initial treatment. Disease free status since initial treatment. Progress Free Survival (Months) Progression Free Status -#STRING NUMBER STRING NUMBER STRING NUMBER STRING -#1 1 1 1 1 1 1 -PATIENT_ID OS_MONTHS OS_STATUS DFS_MONTHS DFS_STATUS PFS_MONTHS PFS_STATUS -TEST-PAT1 272 0:ALIVE 272 1:Recurred/Progressed 272 1:PROGRESSION -TEST-PAT3 208 0:LIVING 208 0:LIVING 208 0:NO PROGRESSION -TEST-PAT4 60 1:DECEASED 60 1:Recurred/Progressed 60 PROGRESSION -TEST-PAT6 151 0:living 151 1:Recurred/Progressed 151 1:PROGRESSION -TEST-PAT5 290 0:LIVING 290 1:Progressed 290 1:PROGRESSION -TEST-PAT7 88 0:LIVING 88 1:recurred/progressed 88 0:NO PROGRESSION -TEST-PAT9 72 0:LIVING 72 1:Recurred/Progressed 72 1:PROGRESSION -TEST-PAT2 NA 1:DECEASED 161 NA 161 NA diff --git a/core/src/test/scripts/test_data/data_clin_missing_patient.txt b/core/src/test/scripts/test_data/data_clin_missing_patient.txt deleted file mode 100644 index 9b710fdd7bf..00000000000 --- a/core/src/test/scripts/test_data/data_clin_missing_patient.txt +++ /dev/null @@ -1,12 +0,0 @@ -#Patient Identifier Overall Survival (Months) Overall Survival Status Disease Free (Months) Disease Free Status -#Identifier to uniquely specify a patient. Overall survival in months since initial diagnosis. Overall patient survival status. Disease free (months) since initial treatment. Disease free status since initial treatment. -#STRING NUMBER STRING NUMBER STRING -#1 1 1 1 1 -PATIENT_ID OS_MONTHS OS_STATUS DFS_MONTHS DFS_STATUS -TEST-PAT1 272 0:LIVING 272 1:Recurred/Progressed -TEST-PAT3 208 0:LIVING 208 1:Recurred/Progressed -TEST-PAT6 151 0:LIVING 151 1:Recurred/Progressed -TEST-PAT5 290 0:LIVING 290 1:Recurred/Progressed -TEST-PAT7 88 0:LIVING 88 1:Recurred/Progressed -TEST-PAT9 72 0:LIVING 72 1:Recurred/Progressed -TEST-PAT2 161 1:DECEASED 161 NA diff --git a/core/src/test/scripts/test_data/data_clin_order1.txt b/core/src/test/scripts/test_data/data_clin_order1.txt deleted file mode 100644 index 50f22028c97..00000000000 --- a/core/src/test/scripts/test_data/data_clin_order1.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Cancer Type Cancer Type Detailed -#Identifier to uniquely specify a patient. A unique sample identifier. Subtype description. Disease type. Cancer Type Detailed. -#STRING STRING STRING STRING STRING -#1 1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE CANCER_TYPE CANCER_TYPE_DETAILED -TEST-PAT1 TEST-PAT1-SAMPLE1 Luminal A Cancer_type20 Cancer_type20_Sub16 -TEST-PAT1 TEST-PAT1-SAMPLE2 Luminal B Cancer_type27 Cancer_type27_Sub16 -TEST-PAT1 TEST-PAT1-SAMPLE3 basal-like Cancer_type8 Cancer_type8_Sub13 -TEST-PAT1 TEST-PAT1-SAMPLE4 basal-like Cancer_type17 Cancer_type17_Sub10 -TEST-PAT1 TEST-PAT1-SAMPLE5 Her2 enriched Cancer_type27 Cancer_type27_Sub18 -TEST-PAT1 TEST-PAT1-SAMPLE6 Luminal A Cancer_type7 Cancer_type7_Sub13 -TEST-PAT2 TEST-PAT2-SAMPLE1 Luminal A Cancer_type23 Cancer_type23_Sub3 -TEST-PAT2 TEST-PAT2-SAMPLE2 basal-like Cancer_type7 Cancer_type7_Sub5 diff --git a/core/src/test/scripts/test_data/data_clin_order2.txt b/core/src/test/scripts/test_data/data_clin_order2.txt deleted file mode 100644 index c83b3bca5b6..00000000000 --- a/core/src/test/scripts/test_data/data_clin_order2.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Sample Identifier Patient Identifier Subtype Cancer Type Cancer Type Detailed -#A unique sample identifier. Identifier to uniquely specify a patient. Subtype description. Disease type. Cancer Type Detailed. -#STRING STRING STRING STRING STRING -#1 1 1 1 1 -SAMPLE_ID PATIENT_ID SUBTYPE CANCER_TYPE CANCER_TYPE_DETAILED -TEST-PAT1-SAMPLE1 TEST-PAT1 Luminal A Cancer_type20 Cancer_type20_Sub16 -TEST-PAT1-SAMPLE2 TEST-PAT1 Luminal B Cancer_type27 Cancer_type27_Sub16 -TEST-PAT1-SAMPLE3 TEST-PAT1 basal-like Cancer_type8 Cancer_type8_Sub13 -TEST-PAT1-SAMPLE4 TEST-PAT1 basal-like Cancer_type17 Cancer_type17_Sub10 -TEST-PAT1-SAMPLE5 TEST-PAT1 Her2 enriched Cancer_type27 Cancer_type27_Sub18 -TEST-PAT1-SAMPLE6 TEST-PAT1 Luminal A Cancer_type7 Cancer_type7_Sub13 -TEST-PAT2-SAMPLE1 TEST-PAT2 Luminal A Cancer_type23 Cancer_type23_Sub3 -TEST-PAT2-SAMPLE2 TEST-PAT2 basal-like Cancer_type7 Cancer_type7_Sub5 diff --git a/core/src/test/scripts/test_data/data_clin_patient_without_samples.txt b/core/src/test/scripts/test_data/data_clin_patient_without_samples.txt deleted file mode 100644 index e9abdd65eb4..00000000000 --- a/core/src/test/scripts/test_data/data_clin_patient_without_samples.txt +++ /dev/null @@ -1,14 +0,0 @@ -#Patient Identifier Overall Survival (Months) Overall Survival Status Disease Free (Months) Disease Free Status -#Identifier to uniquely specify a patient. Overall survival in months since initial diagnosis. Overall patient survival status. Disease free (months) since initial treatment. Disease free status since initial treatment. -#STRING NUMBER STRING NUMBER STRING -#1 1 1 1 1 -PATIENT_ID OS_MONTHS OS_STATUS DFS_MONTHS DFS_STATUS -TEST-PAT1 272 0:LIVING 272 1:Recurred/Progressed -TEST-PAT3 208 0:LIVING 208 1:Recurred/Progressed -TEST-PAT4 60 1:DECEASED 60 1:Recurred/Progressed -TEST-PAT6 151 0:LIVING 151 1:Recurred/Progressed -CASPER 12 1:DECEASED 12 1:Recurred/Progressed -TEST-PAT5 290 0:LIVING 290 1:Recurred/Progressed -TEST-PAT7 88 0:LIVING 88 1:Recurred/Progressed -TEST-PAT9 72 0:LIVING 72 1:Recurred/Progressed -TEST-PAT2 161 1:DECEASED 161 NA diff --git a/core/src/test/scripts/test_data/data_clin_repeated_sample.txt b/core/src/test/scripts/test_data/data_clin_repeated_sample.txt deleted file mode 100644 index 384a0efae53..00000000000 --- a/core/src/test/scripts/test_data/data_clin_repeated_sample.txt +++ /dev/null @@ -1,14 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Cancer Type Cancer Type Detailed -#Identifier to uniquely specify a patient. A unique sample identifier. Subtype description. Disease type. Cancer Type Detailed. -#STRING STRING STRING STRING STRING -#1 1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE CANCER_TYPE CANCER_TYPE_DETAILED -TEST-PAT1 TEST-PAT1-SAMPLE1 Luminal A Cancer_type20 Cancer_type20_Sub16 -TEST-PAT1 TEST-PAT1-SAMPLE2 Luminal B Cancer_type27 Cancer_type27_Sub16 -TEST-PAT1 TEST-PAT1-SAMPLE3 basal-like Cancer_type8 Cancer_type8_Sub13 -TEST-PAT1 TEST-PAT1-SAMPLE4 basal-like Cancer_type17 Cancer_type17_Sub10 -TEST-PAT1 TEST-PAT1-SAMPLE5 Her2 enriched Cancer_type27 Cancer_type27_Sub18 -TEST-PAT1 TEST-PAT1-SAMPLE2 Luminal B Cancer_type27 Cancer_type27_Sub16 -TEST-PAT1 TEST-PAT1-SAMPLE6 Luminal A Cancer_type7 Cancer_type7_Sub13 -TEST-PAT2 TEST-PAT2-SAMPLE1 Luminal A Cancer_type23 Cancer_type23_Sub3 -TEST-PAT2 TEST-PAT2-SAMPLE2 basal-like Cancer_type7 Cancer_type7_Sub5 diff --git a/core/src/test/scripts/test_data/data_clin_repeated_tcga_sample.txt b/core/src/test/scripts/test_data/data_clin_repeated_tcga_sample.txt deleted file mode 100644 index 660eb41c97f..00000000000 --- a/core/src/test/scripts/test_data/data_clin_repeated_tcga_sample.txt +++ /dev/null @@ -1,14 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Cancer Type Cancer Type Detailed -#Identifier to uniquely specify a patient. A unique sample identifier. Subtype description. Disease type. Cancer Type Detailed. -#STRING STRING STRING STRING STRING -#1 1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE CANCER_TYPE CANCER_TYPE_DETAILED -TEST-PAT1 TCGA-PAT1-SAMPLE1 Luminal A Cancer_type20 Cancer_type20_Sub16 -TEST-PAT1 TCGA-PAT1-SAMPLE2 Luminal B Cancer_type27 Cancer_type27_Sub16 -TEST-PAT1 TCGA-PAT1-SAMPLE3 basal-like Cancer_type8 Cancer_type8_Sub13 -TEST-PAT1 TCGA-PAT1-SAMPLE4 basal-like Cancer_type17 Cancer_type17_Sub10 -TEST-PAT1 TCGA-PAT1-SAMPLE5 Her2 enriched Cancer_type27 Cancer_type27_Sub18 -TEST-PAT1 TCGA-PAT1-SAMPLE2 Luminal B Cancer_type27 Cancer_type27_Sub16 -TEST-PAT1 TCGA-PAT1-SAMPLE6 Luminal A Cancer_type7 Cancer_type7_Sub13 -TEST-PAT2 TCGA-PAT2-SAMPLE1 Luminal A Cancer_type23 Cancer_type23_Sub3 -TEST-PAT2 TCGA-PAT2-SAMPLE2 basal-like Cancer_type7 Cancer_type7_Sub5 diff --git a/core/src/test/scripts/test_data/data_clin_wrong_ids.txt b/core/src/test/scripts/test_data/data_clin_wrong_ids.txt deleted file mode 100644 index eb9750fe834..00000000000 --- a/core/src/test/scripts/test_data/data_clin_wrong_ids.txt +++ /dev/null @@ -1,12 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Cancer Type Cancer Type Detailed -#Identifier to uniquely specify a patient. A unique sample identifier. Subtype description. Disease type. Cancer Type Detailed. -#STRING STRING STRING STRING STRING -#1 1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE CANCER_TYPE CANCER_TYPE_DETAILED -TEST-PAT1 TEST-PAT1- SAMPLE1 Luminal A Cancer_type20 Cancer_type20_Sub16 -TEST-PAT1 TEST-PAT1,SAMPLE2 Luminal B Cancer_type27 Cancer_type27_Sub16 -TEST-PAT1 TEST-PAT1;SAMPLE3 basal-like Cancer_type8 Cancer_type8_Sub13 -TEST-PAT1 TEST+PAT1/SAMPLE4 basal-like Cancer_type17 Cancer_type17_Sub10 -TEST-PAT1 TEST-PAT1-SAMPLE5 Her2 enriched Cancer_type27 Cancer_type27_Sub18 -TEST-PAT1 TEST-PAT1*SAMPLE6 Luminal A Cancer_type7 Cancer_type7_Sub13 -TEST-PAT1 TEST-PAT1:SAMPLE6 Luminal A Cancer_type7 Cancer_type7_Sub13 diff --git a/core/src/test/scripts/test_data/data_clin_wrong_patient_id.txt b/core/src/test/scripts/test_data/data_clin_wrong_patient_id.txt deleted file mode 100644 index a2ebbca2a43..00000000000 --- a/core/src/test/scripts/test_data/data_clin_wrong_patient_id.txt +++ /dev/null @@ -1,12 +0,0 @@ -#Patient Identifier Overall Survival (Months) Overall Survival Status Disease Free (Months) Disease Free Status -#Identifier to uniquely specify a patient. Overall survival in months since initial diagnosis. Overall patient survival status. Disease free (months) since initial treatment. Disease free status since initial treatment. -#STRING NUMBER STRING NUMBER STRING -#1 1 1 1 1 -PATIENT_ID OS_MONTHS OS_STATUS DFS_MONTHS DFS_STATUS -TEST- PAT1 272 0:ALIVE 272 1:Recurred/Progressed -TEST,PAT3 208 0:LIVING 208 1:Recurred/Progressed -TEST;PAT4 60 1:DECEASED 60 1:Recurred/Progressed -TEST/PAT6 151 0:LIVING 151 1:Recurred/Progressed -TEST+PAT5 290 0:LIVING 290 Progressed -TEST:PAT7 88 0:LIVING 88 1:recurred/progressed -TEST*PAT9 72 0:LIVING 72 1:Recurred/Progressed diff --git a/core/src/test/scripts/test_data/data_clinical_pat_no_hdr.txt b/core/src/test/scripts/test_data/data_clinical_pat_no_hdr.txt deleted file mode 100644 index f8727e90084..00000000000 --- a/core/src/test/scripts/test_data/data_clinical_pat_no_hdr.txt +++ /dev/null @@ -1,13 +0,0 @@ -PATIENT_ID AGE CANCER_TYPE -TEST-PAT1 60 Breast Cancer -TEST-PAT2 53 Glioma -TEST-PAT3 57 Glioma -TEST-PAT4 63 Breast Cancer -TEST-PAT5 69 Glioma -TEST-PAT6 67 Lung Cancer -TEST-PAT7 59 Glioma -TEST-PAT8 55 Breast Cancer -TEST-PAT9 54 Breast Cancer -TEST-PAT10 63 Glioma -TEST-PAT11 62 Breast Cancer -TEST-PAT12 65 Glioma diff --git a/core/src/test/scripts/test_data/data_clinical_sam_no_hdr.txt b/core/src/test/scripts/test_data/data_clinical_sam_no_hdr.txt deleted file mode 100644 index f3c5a8ee291..00000000000 --- a/core/src/test/scripts/test_data/data_clinical_sam_no_hdr.txt +++ /dev/null @@ -1,13 +0,0 @@ -SAMPLE_ID PATIENT_ID METASTATIC_SITE SAMPLE_TYPE -TEST-PAT1-01 TEST-PAT1 NA Metastatic -TEST-PAT2-01 TEST-PAT2 NA Primary -TEST-PAT3-01 TEST-PAT3 NA Primary -TEST-PAT4-01 TEST-PAT4 NA Metastatic -TEST-PAT5-01 TEST-PAT5 NA Primary -TEST-PAT6-01 TEST-PAT6 NA Primary -TEST-PAT7-01 TEST-PAT7 NA Metastatic -TEST-PAT8-01 TEST-PAT8 NA Primary -TEST-PAT9-01 TEST-PAT9 NA Metastatic -TEST-PAT10-01 TEST-PAT10 NA Primary -TEST-PAT11-01 TEST-PAT11 NA Metastatic -TEST-PAT12-01 TEST-PAT12 NA Metastatic diff --git a/core/src/test/scripts/test_data/data_cna_blank_heading.txt b/core/src/test/scripts/test_data/data_cna_blank_heading.txt deleted file mode 100644 index bf0fe3d59ec..00000000000 --- a/core/src/test/scripts/test_data/data_cna_blank_heading.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 116983 0 -1 0 -1 2 NA -AGRN 375790 0 -1 0 -1 2 NA -ATAD3A 55210 0 -1 NA -1 2 NA -ATAD3B 83858 0 -1 0 -1 2 NA -ATAD3C 219293 0 -1 0 -1 2 NA -AURKAIP1 54998 0 -1 0 -1 2 NA -B3GALT6 126792 0 -1 0 -1 2 NA diff --git a/core/src/test/scripts/test_data/data_cna_cytoband.txt b/core/src/test/scripts/test_data/data_cna_cytoband.txt deleted file mode 100644 index 82d4e408f40..00000000000 --- a/core/src/test/scripts/test_data/data_cna_cytoband.txt +++ /dev/null @@ -1,9 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Cytoband TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 116983 1p36.33 0 -1 0 -1 2 -AGRN 375790 1p36.33 0 -1 0 -1 2 -ATAD3A 55210 1p36.33 0 -1 NA -1 2 -ATAD3B 83858 1p36.33 0 -1 0 -1 2 -ATAD3C 219293 1p36.33 0 -1 0 -1 2 -AURKAIP1 54998 1p36.33 0 -1 0 -1 2 -B3GALT6 126792 1p36.33 0 -1 0 -1 2 -ERCC5 2073 13q33.1 0 -1 0 -1.5 2 diff --git a/core/src/test/scripts/test_data/data_cna_duplicate_gene.txt b/core/src/test/scripts/test_data/data_cna_duplicate_gene.txt deleted file mode 100644 index 8b9e865a8ee..00000000000 --- a/core/src/test/scripts/test_data/data_cna_duplicate_gene.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 116983 0 -1 0 -1 2 -AGRN 375790 0 -1 0 -1 2 -ATAD3A 55210 0 -1 NA -1 2 -ATAD3B 83858 0 -1 0 -1 2 -CENTB5 0 -1 spam -1 3 -AURKAIP1 54998 0 -1 0 -1 2 -B3GALT6 126792 0 -1 0 -1 2 diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_both.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_both.txt deleted file mode 100644 index f03faaa9f41..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_both.txt +++ /dev/null @@ -1,9 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 116983 0 -1 0 -1 2 -AGRN 375790 0 -1 0 -1 2 -ATAD3A 55210 0 -1 NA -1 2 -ATAD3B 83858 0 -1 0 -1 2 -ATAD3C 219293 0 -1 0 -1 2 -AURKAIP1 54998 0 -1 0 -1 2 -B3GALT6 126792 0 -1 0 -1 2 -ERCC5 2073 0 -1 0 -1.5 2 diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_couple.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_couple.txt deleted file mode 100644 index 5400ecc95df..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_couple.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 375790 0 -1 0 -1 2 -AGRN 116983 0 -1 0 -1 2 -ATAD3A 55210 0 -1 0 -1 2 -ATAD3B 83858 0 -1 0 -1 2 -ATAD3C 219293 0 -1 0 -1 2 -AURKAIP1 54998 0 -1 0 -1 2 -B3GALT6 126792 0 -1 0 -1 2 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_entrez.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_entrez.txt deleted file mode 100644 index b1870ccf98e..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_entrez.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 999999999 0 -1 0 -1 2 -AGRN 888888888 0 -1 0 -1 2 -ATAD3A 55210 0 -1 0 -1 2 -ATAD3B 83858 0 -1 0 -1 2 -ATAD3C 219293 0 -1 0 -1 2 -AURKAIP1 54998 0 -1 0 -1 2 -B3GALT6 126792 0 -1 0 -1 2 diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_hugo.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_hugo.txt deleted file mode 100644 index c1892b4f137..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_hugo.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -xxACAP3 116983 0 -1 0 -1 2 -xxAGRN 375790 0 -1 0 -1 2 -ATAD3A 55210 0 -1 0 -1 2 -ATAD3B 83858 0 -1 0 -1 2 -ATAD3C 219293 0 -1 0 -1 2 -AURKAIP1 54998 0 -1 0 -1 2 -B3GALT6 126792 0 -1 0 -1 2 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_hugo_integer.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_hugo_integer.txt deleted file mode 100644 index 0ad8404d11f..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_both_invalid_hugo_integer.txt +++ /dev/null @@ -1,10 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -20MER2 1 0 -1 0 -1 2 -3.8-1.4 2 0 -1 0 -1 2 -5'URS 3 0 -1 0 -1 2 -1-ACAP3 116983 0 -1 0 -1 2 -9-Sep 375790 0 -1 0 -1 2 -7SK 55210 0 -1 0 -1 2 -7SK|test 83858 0 -1 0 -1 2 -ATAD3C 219293 0 -1 0 -1 2 -AURKAIP1 54998 0 -1 0 -1 2 diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_entrez_only.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_entrez_only.txt deleted file mode 100644 index 5680c3fba8f..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_entrez_only.txt +++ /dev/null @@ -1,8 +0,0 @@ -Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -116983 0 -1 0 -1 2 -375790 0 -1 0 -1 2 -55210 0 -1 0 -1 2 -83858 0 -1 0 -1 2 -219293 0 -1 0 -1 2 -54998 0 -1 0 -1 2 -126792 0 -1 0 -1 2 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_entrez_only_invalid.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_entrez_only_invalid.txt deleted file mode 100644 index a161d35c09b..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_entrez_only_invalid.txt +++ /dev/null @@ -1,8 +0,0 @@ -Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -116983 0 -1 0 -1 2 -375790 0 -1 0 -1 2 -55210 0 -1 0 -1 2 -83858 0 -1 0 -1 2 -219293 0 -1 0 -1 2 -1073741824 0 -1 0 -1 2 -2147483647 0 -1 0 -1 2 diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only.txt deleted file mode 100644 index c06bc0cc5c1..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 0 -1 0 -1 2 -AGRN 0 -1 0 -1 2 -ATAD3A 0 -1 0 -1 2 -ATAD3B 0 -1 0 -1 2 -ATAD3C 0 -1 0 -1 2 -AURKAIP1 0 -1 0 -1 2 -B3GALT6 0 -1 0 -1 2 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only_ambiguous.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only_ambiguous.txt deleted file mode 100644 index a7536ca9ca9..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only_ambiguous.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 0 -1 0 -1 2 -AGRN 0 -1 0 -1 2 -TRAPPC2P1 0 -1 0 -1 2 -ATAD3B 0 -1 0 -1 2 -ATAD3C 0 -1 0 -1 2 -AURKAIP1 0 -1 0 -1 2 -B3GALT6 0 -1 0 -1 2 diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only_invalid.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only_invalid.txt deleted file mode 100644 index ba4299e98c7..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only_invalid.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 0 -1 0 -1 2 -AGRN 0 -1 0 -1 2 -xxATAD3A 0 -1 0 -1 2 -xxATAD3B 0 -1 0 -1 2 -ATAD3C 0 -1 0 -1 2 -AURKAIP1 0 -1 0 -1 2 -B3GALT6 0 -1 0 -1 2 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only_possible_alias.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only_possible_alias.txt deleted file mode 100644 index 452c8390713..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_hugo_only_possible_alias.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 0 -1 0 -1 2 -AGRN 0 -1 0 -1 2 -ACT 0 -1 0 -1 2 -ATAD3B 0 -1 0 -1 2 -ATAD3C 0 -1 0 -1 2 -AURKAIP1 0 -1 0 -1 2 -B3GALT6 0 -1 0 -1 2 diff --git a/core/src/test/scripts/test_data/data_cna_genecol_presence_neither.txt b/core/src/test/scripts/test_data/data_cna_genecol_presence_neither.txt deleted file mode 100644 index 6ad58291204..00000000000 --- a/core/src/test/scripts/test_data/data_cna_genecol_presence_neither.txt +++ /dev/null @@ -1,8 +0,0 @@ -TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -0 -1 0 -1 2 -0 -1 0 -1 2 -0 -1 0 -1 2 -0 -1 0 -1 2 -0 -1 0 -1 2 -0 -1 0 -1 2 -0 -1 0 -1 2 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_cna_invalid_values.txt b/core/src/test/scripts/test_data/data_cna_invalid_values.txt deleted file mode 100644 index 3e31ef3e3d1..00000000000 --- a/core/src/test/scripts/test_data/data_cna_invalid_values.txt +++ /dev/null @@ -1,9 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -ACAP3 116983 0 -1 0 -1 2 -AGRN 375790 0 -1 0 -1 -ATAD3A 55210 0 -1 NA -1 2 -ATAD3B 83858 0 0 -1 2 -ATAD3C 219293 3 -1 0 -1 2 -AURKAIP1 54998 0 -1 0 AURKAIP1 2 -B3GALT6 126792 0 -1 [Not Available] -1 2 -ERCC5 2073 0 -1 0 1.5 2 diff --git a/core/src/test/scripts/test_data/data_cna_long_duplicated_entrez.txt b/core/src/test/scripts/test_data/data_cna_long_duplicated_entrez.txt deleted file mode 100644 index 3155aeef82b..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_duplicated_entrez.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 - 116983 TCGA-A1-A0SB-01 0 - 116983 TCGA-A1-A0SB-01 0 -ATAD3A 55210 TCGA-A1-A0SB-01 0 -ATAD3B 83858 TCGA-A1-A0SB-01 0 -ATAD3C 219293 TCGA-A1-A0SB-01 0 -AURKAIP1 54998 TCGA-A1-A0SB-01 0 -ERCC5 2073 TCGA-A1-A0SB-01 0 -ACAP3 116983 TCGA-A1-A0SD-01 -1 -AGRN 375790 TCGA-A1-A0SD-01 -1 -ATAD3A 55210 TCGA-A1-A0SD-01 -1 -ATAD3B 83858 TCGA-A1-A0SD-01 -1 -ATAD3C 219293 TCGA-A1-A0SD-01 -1 -AURKAIP1 54998 TCGA-A1-A0SD-01 -1 -ERCC5 2073 TCGA-A1-A0SD-01 -1 -ACAP3 116983 TCGA-A1-A0SE-01 0 -AGRN 375790 TCGA-A1-A0SE-01 0 -ATAD3A 55210 TCGA-A1-A0SE-01 0 -ATAD3B 83858 TCGA-A1-A0SE-01 0 -ATAD3C 219293 TCGA-A1-A0SE-01 0 -AURKAIP1 54998 TCGA-A1-A0SE-01 0 -ERCC5 2073 TCGA-A1-A0SE-01 0 -ACAP3 116983 TCGA-A1-A0SH-01 -1 -AGRN 375790 TCGA-A1-A0SH-01 -1 -ATAD3A 55210 TCGA-A1-A0SH-01 -1 -ATAD3B 83858 TCGA-A1-A0SH-01 -1 -ATAD3C 219293 TCGA-A1-A0SH-01 -1 -AURKAIP1 54998 TCGA-A1-A0SH-01 -1 -ERCC5 2073 TCGA-A1-A0SH-01 -1 -ACAP3 116983 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger Class 2 Class annotation -AGRN 375790 TCGA-A2-A04U-01 2 Putative_Driver Test driver Class 1 Class annotation -ATAD3A 55210 TCGA-A2-A04U-01 2 -ATAD3B 83858 TCGA-A2-A04U-01 2 -ATAD3C 219293 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger -AURKAIP1 54998 TCGA-A2-A04U-01 2 -ERCC5 2073 TCGA-A2-A04U-01 2 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_cna_long_duplicated_gene.txt b/core/src/test/scripts/test_data/data_cna_long_duplicated_gene.txt deleted file mode 100644 index ba436952d8a..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_duplicated_gene.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 -ACAP3 116983 TCGA-A1-A0SB-01 0 -AGRN 375790 TCGA-A1-A0SB-01 0 -ATAD3A 55210 TCGA-A1-A0SB-01 0 -ATAD3B 83858 TCGA-A1-A0SB-01 0 -ATAD3C 219293 TCGA-A1-A0SB-01 0 -AURKAIP1 54998 TCGA-A1-A0SB-01 0 -ERCC5 2073 TCGA-A1-A0SB-01 0 -ACAP3 116983 TCGA-A1-A0SB-01 -1 -AGRN 375790 TCGA-A1-A0SD-01 -1 -ATAD3A 55210 TCGA-A1-A0SD-01 -1 -ATAD3B 83858 TCGA-A1-A0SD-01 -1 -ATAD3C 219293 TCGA-A1-A0SD-01 -1 -AURKAIP1 54998 TCGA-A1-A0SD-01 -1 -ERCC5 2073 TCGA-A1-A0SD-01 -1 -ACAP3 116983 TCGA-A1-A0SE-01 0 -AGRN 375790 TCGA-A1-A0SE-01 0 -ATAD3A 55210 TCGA-A1-A0SE-01 0 -ATAD3B 83858 TCGA-A1-A0SE-01 0 -ATAD3C 219293 TCGA-A1-A0SE-01 0 -AURKAIP1 54998 TCGA-A1-A0SE-01 0 -ERCC5 2073 TCGA-A1-A0SE-01 0 -ACAP3 116983 TCGA-A1-A0SH-01 -1 -AGRN 375790 TCGA-A1-A0SH-01 -1 -ATAD3A 55210 TCGA-A1-A0SH-01 -1 -ATAD3B 83858 TCGA-A1-A0SH-01 -1 -ATAD3C 219293 TCGA-A1-A0SH-01 -1 -AURKAIP1 54998 TCGA-A1-A0SH-01 -1 -ERCC5 2073 TCGA-A1-A0SH-01 -1 -ACAP3 116983 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger Class 2 Class annotation -AGRN 375790 TCGA-A2-A04U-01 2 Putative_Driver Test driver Class 1 Class annotation -ATAD3A 55210 TCGA-A2-A04U-01 2 -ATAD3B 83858 TCGA-A2-A04U-01 2 -ATAD3C 219293 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger -AURKAIP1 54998 TCGA-A2-A04U-01 2 -ERCC5 2073 TCGA-A2-A04U-01 2 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_cna_long_genecol_no_custom_driver.txt b/core/src/test/scripts/test_data/data_cna_long_genecol_no_custom_driver.txt deleted file mode 100644 index eb4299445c5..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_genecol_no_custom_driver.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value MyNamespace.column1 MyNamespace.column2 -ACAP3 116983 TCGA-A1-A0SB-01 0 -AGRN 375790 TCGA-A1-A0SB-01 0 -ATAD3A 55210 TCGA-A1-A0SB-01 0 -ATAD3B 83858 TCGA-A1-A0SB-01 0 -ATAD3C 219293 TCGA-A1-A0SB-01 0 -AURKAIP1 54998 TCGA-A1-A0SB-01 0 -ERCC5 2073 TCGA-A1-A0SB-01 0 -ACAP3 116983 TCGA-A1-A0SD-01 -1 -AGRN 375790 TCGA-A1-A0SD-01 -1 -ATAD3A 55210 TCGA-A1-A0SD-01 -1 -ATAD3B 83858 TCGA-A1-A0SD-01 -1 -ATAD3C 219293 TCGA-A1-A0SD-01 -1 -AURKAIP1 54998 TCGA-A1-A0SD-01 -1 -ERCC5 2073 TCGA-A1-A0SD-01 -1 -ACAP3 116983 TCGA-A1-A0SE-01 0 -AGRN 375790 TCGA-A1-A0SE-01 0 -ATAD3A 55210 TCGA-A1-A0SE-01 0 -ATAD3B 83858 TCGA-A1-A0SE-01 0 -ATAD3C 219293 TCGA-A1-A0SE-01 0 -AURKAIP1 54998 TCGA-A1-A0SE-01 0 -ERCC5 2073 TCGA-A1-A0SE-01 0 -ACAP3 116983 TCGA-A1-A0SH-01 -1 -AGRN 375790 TCGA-A1-A0SH-01 -1 -ATAD3A 55210 TCGA-A1-A0SH-01 -1 -ATAD3B 83858 TCGA-A1-A0SH-01 -1 -ATAD3C 219293 TCGA-A1-A0SH-01 -1 -AURKAIP1 54998 TCGA-A1-A0SH-01 -1 -ERCC5 2073 TCGA-A1-A0SH-01 -1 -ACAP3 116983 TCGA-A2-A04U-01 2 -AGRN 375790 TCGA-A2-A04U-01 2 -ATAD3A 55210 TCGA-A2-A04U-01 2 -ATAD3B 83858 TCGA-A2-A04U-01 2 -ATAD3C 219293 TCGA-A2-A04U-01 2 -AURKAIP1 54998 TCGA-A2-A04U-01 2 -ERCC5 2073 TCGA-A2-A04U-01 2 diff --git a/core/src/test/scripts/test_data/data_cna_long_genecol_no_namespace.txt b/core/src/test/scripts/test_data/data_cna_long_genecol_no_namespace.txt deleted file mode 100644 index e6228890606..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_genecol_no_namespace.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -ACAP3 116983 TCGA-A1-A0SB-01 0 -AGRN 375790 TCGA-A1-A0SB-01 0 -ATAD3A 55210 TCGA-A1-A0SB-01 0 -ATAD3B 83858 TCGA-A1-A0SB-01 0 -ATAD3C 219293 TCGA-A1-A0SB-01 0 -AURKAIP1 54998 TCGA-A1-A0SB-01 0 -ERCC5 2073 TCGA-A1-A0SB-01 0 -ACAP3 116983 TCGA-A1-A0SD-01 -1 -AGRN 375790 TCGA-A1-A0SD-01 -1 -ATAD3A 55210 TCGA-A1-A0SD-01 -1 -ATAD3B 83858 TCGA-A1-A0SD-01 -1 -ATAD3C 219293 TCGA-A1-A0SD-01 -1 -AURKAIP1 54998 TCGA-A1-A0SD-01 -1 -ERCC5 2073 TCGA-A1-A0SD-01 -1 -ACAP3 116983 TCGA-A1-A0SE-01 0 -AGRN 375790 TCGA-A1-A0SE-01 0 -ATAD3A 55210 TCGA-A1-A0SE-01 0 -ATAD3B 83858 TCGA-A1-A0SE-01 0 -ATAD3C 219293 TCGA-A1-A0SE-01 0 -AURKAIP1 54998 TCGA-A1-A0SE-01 0 -ERCC5 2073 TCGA-A1-A0SE-01 0 -ACAP3 116983 TCGA-A1-A0SH-01 -1 -AGRN 375790 TCGA-A1-A0SH-01 -1 -ATAD3A 55210 TCGA-A1-A0SH-01 -1 -ATAD3B 83858 TCGA-A1-A0SH-01 -1 -ATAD3C 219293 TCGA-A1-A0SH-01 -1 -AURKAIP1 54998 TCGA-A1-A0SH-01 -1 -ERCC5 2073 TCGA-A1-A0SH-01 -1 -ACAP3 116983 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger Class 2 Class annotation -AGRN 375790 TCGA-A2-A04U-01 2 Putative_Driver Test driver Class 1 Class annotation -ATAD3A 55210 TCGA-A2-A04U-01 2 -ATAD3B 83858 TCGA-A2-A04U-01 2 -ATAD3C 219293 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger -AURKAIP1 54998 TCGA-A2-A04U-01 2 -ERCC5 2073 TCGA-A2-A04U-01 2 Putative_Driver Test driver \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_cna_long_genecol_no_sample_id.txt b/core/src/test/scripts/test_data/data_cna_long_genecol_no_sample_id.txt deleted file mode 100644 index 3490107eabc..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_genecol_no_sample_id.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 -ACAP3 116983 0 -AGRN 375790 0 -ATAD3A 55210 0 -ATAD3B 83858 0 -ATAD3C 219293 0 -AURKAIP1 54998 0 -ERCC5 2073 0 -ACAP3 116983 -1 -AGRN 375790 -1 -ATAD3A 55210 -1 -ATAD3B 83858 -1 -ATAD3C 219293 -1 -AURKAIP1 54998 -1 -ERCC5 2073 -1 -ACAP3 116983 0 -AGRN 375790 0 -ATAD3A 55210 0 -ATAD3B 83858 0 -ATAD3C 219293 0 -AURKAIP1 54998 0 -ERCC5 2073 0 -ACAP3 116983 -1 -AGRN 375790 -1 -ATAD3A 55210 -1 -ATAD3B 83858 -1 -ATAD3C 219293 -1 -AURKAIP1 54998 -1 -ERCC5 2073 -1 -ACAP3 116983 2 Putative_Passenger Test passenger Class 2 Class annotation -AGRN 375790 2 Putative_Driver Test driver Class 1 Class annotation -ATAD3A 55210 2 -ATAD3B 83858 2 -ATAD3C 219293 2 Putative_Passenger Test passenger -AURKAIP1 54998 2 -ERCC5 2073 2 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_cna_long_genecol_no_value.txt b/core/src/test/scripts/test_data/data_cna_long_genecol_no_value.txt deleted file mode 100644 index daeead6889d..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_genecol_no_value.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 -ACAP3 116983 TCGA-A1-A0SB-01 -AGRN 375790 TCGA-A1-A0SB-01 -ATAD3A 55210 TCGA-A1-A0SB-01 -ATAD3B 83858 TCGA-A1-A0SB-01 -ATAD3C 219293 TCGA-A1-A0SB-01 -AURKAIP1 54998 TCGA-A1-A0SB-01 -ERCC5 2073 TCGA-A1-A0SB-01 -ACAP3 116983 TCGA-A1-A0SD-01 -AGRN 375790 TCGA-A1-A0SD-01 -ATAD3A 55210 TCGA-A1-A0SD-01 -ATAD3B 83858 TCGA-A1-A0SD-01 -ATAD3C 219293 TCGA-A1-A0SD-01 -AURKAIP1 54998 TCGA-A1-A0SD-01 -ERCC5 2073 TCGA-A1-A0SD-01 -ACAP3 116983 TCGA-A1-A0SE-01 -AGRN 375790 TCGA-A1-A0SE-01 -ATAD3A 55210 TCGA-A1-A0SE-01 -ATAD3B 83858 TCGA-A1-A0SE-01 -ATAD3C 219293 TCGA-A1-A0SE-01 -AURKAIP1 54998 TCGA-A1-A0SE-01 -ERCC5 2073 TCGA-A1-A0SE-01 -ACAP3 116983 TCGA-A1-A0SH-01 -AGRN 375790 TCGA-A1-A0SH-01 -ATAD3A 55210 TCGA-A1-A0SH-01 -ATAD3B 83858 TCGA-A1-A0SH-01 -ATAD3C 219293 TCGA-A1-A0SH-01 -AURKAIP1 54998 TCGA-A1-A0SH-01 -ERCC5 2073 TCGA-A1-A0SH-01 -ACAP3 116983 TCGA-A2-A04U-01 Putative_Passenger Test passenger Class 2 Class annotation -AGRN 375790 TCGA-A2-A04U-01 Putative_Driver Test driver Class 1 Class annotation -ATAD3A 55210 TCGA-A2-A04U-01 -ATAD3B 83858 TCGA-A2-A04U-01 -ATAD3C 219293 TCGA-A2-A04U-01 Putative_Passenger Test passenger -AURKAIP1 54998 TCGA-A2-A04U-01 -ERCC5 2073 TCGA-A2-A04U-01 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_cna_long_genecol_presence_all.txt b/core/src/test/scripts/test_data/data_cna_long_genecol_presence_all.txt deleted file mode 100644 index d74032d550e..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_genecol_presence_all.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 -ACAP3 116983 TCGA-A1-A0SB-01 0 -AGRN 375790 TCGA-A1-A0SB-01 0 -ATAD3A 55210 TCGA-A1-A0SB-01 0 -ATAD3B 83858 TCGA-A1-A0SB-01 0 -ATAD3C 219293 TCGA-A1-A0SB-01 0 -AURKAIP1 54998 TCGA-A1-A0SB-01 0 -ERCC5 2073 TCGA-A1-A0SB-01 0 -ACAP3 116983 TCGA-A1-A0SD-01 -1 -AGRN 375790 TCGA-A1-A0SD-01 -1 -ATAD3A 55210 TCGA-A1-A0SD-01 -1 -ATAD3B 83858 TCGA-A1-A0SD-01 NA -ATAD3C 219293 TCGA-A1-A0SD-01 -1 -AURKAIP1 54998 TCGA-A1-A0SD-01 -1 -ERCC5 2073 TCGA-A1-A0SD-01 -1 -ACAP3 116983 TCGA-A1-A0SE-01 0 -AGRN 375790 TCGA-A1-A0SE-01 0 -ATAD3A 55210 TCGA-A1-A0SE-01 0 -ATAD3B 83858 TCGA-A1-A0SE-01 0 -ATAD3C 219293 TCGA-A1-A0SE-01 NA -AURKAIP1 54998 TCGA-A1-A0SE-01 0 -ERCC5 2073 TCGA-A1-A0SE-01 0 -ACAP3 116983 TCGA-A1-A0SH-01 -1 -AGRN 375790 TCGA-A1-A0SH-01 -1 -ATAD3A 55210 TCGA-A1-A0SH-01 -1 -ATAD3B 83858 TCGA-A1-A0SH-01 -1 -ATAD3C 219293 TCGA-A1-A0SH-01 -1 -AURKAIP1 54998 TCGA-A1-A0SH-01 -1 -ERCC5 2073 TCGA-A1-A0SH-01 -1 -ACAP3 116983 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger Class 2 Class annotation -AGRN 375790 TCGA-A2-A04U-01 2 Putative_Driver Test driver Class 1 Class annotation -ATAD3A 55210 TCGA-A2-A04U-01 2 -ATAD3B 83858 TCGA-A2-A04U-01 2 -ATAD3C 219293 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger -AURKAIP1 54998 TCGA-A2-A04U-01 2 -ERCC5 2073 TCGA-A2-A04U-01 2 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_cna_long_genecol_presence_entrez_only.txt b/core/src/test/scripts/test_data/data_cna_long_genecol_presence_entrez_only.txt deleted file mode 100644 index ab7267d463d..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_genecol_presence_entrez_only.txt +++ /dev/null @@ -1,36 +0,0 @@ -Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 -116983 TCGA-A1-A0SB-01 0 -375790 TCGA-A1-A0SB-01 0 -55210 TCGA-A1-A0SB-01 0 -83858 TCGA-A1-A0SB-01 0 -219293 TCGA-A1-A0SB-01 0 -54998 TCGA-A1-A0SB-01 0 -2073 TCGA-A1-A0SB-01 0 -116983 TCGA-A1-A0SD-01 -1 -375790 TCGA-A1-A0SD-01 -1 -55210 TCGA-A1-A0SD-01 -1 -83858 TCGA-A1-A0SD-01 -1 -219293 TCGA-A1-A0SD-01 -1 -54998 TCGA-A1-A0SD-01 -1 -2073 TCGA-A1-A0SD-01 -1 -116983 TCGA-A1-A0SE-01 0 -375790 TCGA-A1-A0SE-01 0 -55210 TCGA-A1-A0SE-01 0 -83858 TCGA-A1-A0SE-01 0 -219293 TCGA-A1-A0SE-01 0 -54998 TCGA-A1-A0SE-01 0 -2073 TCGA-A1-A0SE-01 0 -116983 TCGA-A1-A0SH-01 -1 -375790 TCGA-A1-A0SH-01 -1 -55210 TCGA-A1-A0SH-01 -1 -83858 TCGA-A1-A0SH-01 -1 -219293 TCGA-A1-A0SH-01 -1 -54998 TCGA-A1-A0SH-01 -1 -2073 TCGA-A1-A0SH-01 -1 -116983 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger Class 2 Class annotation -375790 TCGA-A2-A04U-01 2 Putative_Driver Test driver Class 1 Class annotation -55210 TCGA-A2-A04U-01 2 -83858 TCGA-A2-A04U-01 2 -219293 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger -54998 TCGA-A2-A04U-01 2 -2073 TCGA-A2-A04U-01 2 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_cna_long_genecol_presence_hugo_only.txt b/core/src/test/scripts/test_data/data_cna_long_genecol_presence_hugo_only.txt deleted file mode 100644 index 66be6127b26..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_genecol_presence_hugo_only.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 -ACAP3 TCGA-A1-A0SB-01 0 -AGRN TCGA-A1-A0SB-01 0 -ATAD3A TCGA-A1-A0SB-01 0 -ATAD3B TCGA-A1-A0SB-01 0 -ATAD3C TCGA-A1-A0SB-01 0 -AURKAIP1 TCGA-A1-A0SB-01 0 -ERCC5 TCGA-A1-A0SB-01 0 -ACAP3 TCGA-A1-A0SD-01 -1 -AGRN TCGA-A1-A0SD-01 -1 -ATAD3A TCGA-A1-A0SD-01 -1 -ATAD3B TCGA-A1-A0SD-01 -1 -ATAD3C TCGA-A1-A0SD-01 -1 -AURKAIP1 TCGA-A1-A0SD-01 -1 -ERCC5 TCGA-A1-A0SD-01 -1 -ACAP3 TCGA-A1-A0SE-01 0 -AGRN TCGA-A1-A0SE-01 0 -ATAD3A TCGA-A1-A0SE-01 0 -ATAD3B TCGA-A1-A0SE-01 0 -ATAD3C TCGA-A1-A0SE-01 0 -AURKAIP1 TCGA-A1-A0SE-01 0 -ERCC5 TCGA-A1-A0SE-01 0 -ACAP3 TCGA-A1-A0SH-01 -1 -AGRN TCGA-A1-A0SH-01 -1 -ATAD3A TCGA-A1-A0SH-01 -1 -ATAD3B TCGA-A1-A0SH-01 -1 -ATAD3C TCGA-A1-A0SH-01 -1 -AURKAIP1 TCGA-A1-A0SH-01 -1 -ERCC5 TCGA-A1-A0SH-01 -1 -ACAP3 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger Class 2 Class annotation -AGRN TCGA-A2-A04U-01 2 Putative_Driver Test driver Class 1 Class annotation -ATAD3A TCGA-A2-A04U-01 2 -ATAD3B TCGA-A2-A04U-01 2 -ATAD3C TCGA-A2-A04U-01 2 Putative_Passenger Test passenger -AURKAIP1 TCGA-A2-A04U-01 2 -ERCC5 TCGA-A2-A04U-01 2 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_cna_long_genecol_presence_neither_genic.txt b/core/src/test/scripts/test_data/data_cna_long_genecol_presence_neither_genic.txt deleted file mode 100644 index 6f015002310..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_genecol_presence_neither_genic.txt +++ /dev/null @@ -1,36 +0,0 @@ -Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 -TCGA-A1-A0SB-01 0 -TCGA-A1-A0SB-01 0 -TCGA-A1-A0SB-01 0 -TCGA-A1-A0SB-01 0 -TCGA-A1-A0SB-01 0 -TCGA-A1-A0SB-01 0 -TCGA-A1-A0SB-01 0 -TCGA-A1-A0SD-01 -1 -TCGA-A1-A0SD-01 -1 -TCGA-A1-A0SD-01 -1 -TCGA-A1-A0SD-01 -1 -TCGA-A1-A0SD-01 -1 -TCGA-A1-A0SD-01 -1 -TCGA-A1-A0SD-01 -1 -TCGA-A1-A0SE-01 0 -TCGA-A1-A0SE-01 0 -TCGA-A1-A0SE-01 0 -TCGA-A1-A0SE-01 0 -TCGA-A1-A0SE-01 0 -TCGA-A1-A0SE-01 0 -TCGA-A1-A0SE-01 0 -TCGA-A1-A0SH-01 -1 -TCGA-A1-A0SH-01 -1 -TCGA-A1-A0SH-01 -1 -TCGA-A1-A0SH-01 -1 -TCGA-A1-A0SH-01 -1 -TCGA-A1-A0SH-01 -1 -TCGA-A1-A0SH-01 -1 -TCGA-A2-A04U-01 2 Putative_Passenger Test passenger Class 2 Class annotation -TCGA-A2-A04U-01 2 Putative_Driver Test driver Class 1 Class annotation -TCGA-A2-A04U-01 2 -TCGA-A2-A04U-01 2 -TCGA-A2-A04U-01 2 Putative_Passenger Test passenger -TCGA-A2-A04U-01 2 -TCGA-A2-A04U-01 2 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_cna_long_invalid_values.txt b/core/src/test/scripts/test_data/data_cna_long_invalid_values.txt deleted file mode 100644 index 6f4a18e92dc..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_invalid_values.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 -ACAP3 116983 TCGA-A1-A0SB-01 0 -AGRN 375790 TCGA-A1-A0SB-01 0 -ATAD3A 55210 TCGA-A1-A0SB-01 0 -ATAD3B 83858 TCGA-A1-A0SB-01 0 -ATAD3C 219293 TCGA-A1-A0SB-01 0 -AURKAIP1 54998 TCGA-A1-A0SB-01 [Not Available] -ERCC5 2073 TCGA-A1-A0SB-01 0 -ACAP3 116983 TCGA-A1-A0SD-01 -1 -AGRN 375790 TCGA-A1-A0SD-01 -1 -ATAD3A 55210 TCGA-A1-A0SD-01 -1 -ATAD3B 83858 TCGA-A1-A0SD-01 ATAD3B -ATAD3C 219293 TCGA-A1-A0SD-01 -1 -AURKAIP1 54998 TCGA-A1-A0SD-01 -1 -ERCC5 2073 TCGA-A1-A0SD-01 -1 -ACAP3 116983 TCGA-A1-A0SE-01 0 -AGRN 375790 TCGA-A1-A0SE-01 0 -ATAD3A 55210 TCGA-A1-A0SE-01 N/A -ATAD3B 83858 TCGA-A1-A0SE-01 0 -ATAD3C 219293 TCGA-A1-A0SE-01 0 -AURKAIP1 54998 TCGA-A1-A0SE-01 0 -ERCC5 2073 TCGA-A1-A0SE-01 0 -ACAP3 116983 TCGA-A1-A0SH-01 -1 -AGRN 375790 TCGA-A1-A0SH-01 1.5 -ATAD3A 55210 TCGA-A1-A0SH-01 -1 -ATAD3B 83858 TCGA-A1-A0SH-01 -1 -ATAD3C 219293 TCGA-A1-A0SH-01 -1 -AURKAIP1 54998 TCGA-A1-A0SH-01 -1 -ERCC5 2073 TCGA-A1-A0SH-01 -1 -ACAP3 116983 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger Class 2 Class annotation -AGRN 375790 TCGA-A2-A04U-01 2 Putative_Driver Test driver Class 1 Class annotation -ATAD3A 55210 TCGA-A2-A04U-01 2 -ATAD3B 83858 TCGA-A2-A04U-01 3 -ATAD3C 219293 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger -AURKAIP1 54998 TCGA-A2-A04U-01 2 -ERCC5 2073 TCGA-A2-A04U-01 2 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_cna_long_one_hugo_same_gene.txt b/core/src/test/scripts/test_data/data_cna_long_one_hugo_same_gene.txt deleted file mode 100644 index 32a69ace08c..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_one_hugo_same_gene.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 -ACAP3 116983 TCGA-A1-A0SB-01 0 -AGRN 375790 TCGA-A1-A0SB-01 0 -ATAD3A 55210 TCGA-A1-A0SB-01 0 -ATAD3B 83858 TCGA-A1-A0SB-01 0 - 116983 TCGA-A1-A0SB-01 0 -AURKAIP1 54998 TCGA-A1-A0SB-01 0 -ERCC5 2073 TCGA-A1-A0SB-01 0 -ACAP3 116983 TCGA-A1-A0SD-01 -1 -AGRN 375790 TCGA-A1-A0SD-01 -1 -ATAD3A 55210 TCGA-A1-A0SD-01 -1 -ATAD3B 83858 TCGA-A1-A0SD-01 -1 - 116983 TCGA-A1-A0SD-01 -1 -AURKAIP1 54998 TCGA-A1-A0SD-01 -1 -ERCC5 2073 TCGA-A1-A0SD-01 -1 -ACAP3 116983 TCGA-A1-A0SE-01 0 -AGRN 375790 TCGA-A1-A0SE-01 0 -ATAD3A 55210 TCGA-A1-A0SE-01 0 -ATAD3B 83858 TCGA-A1-A0SE-01 0 - 116983 TCGA-A1-A0SE-01 0 -AURKAIP1 54998 TCGA-A1-A0SE-01 0 -ERCC5 2073 TCGA-A1-A0SE-01 0 -ACAP3 116983 TCGA-A1-A0SH-01 -1 -AGRN 375790 TCGA-A1-A0SH-01 -1 -ATAD3A 55210 TCGA-A1-A0SH-01 -1 -ATAD3B 83858 TCGA-A1-A0SH-01 -1 - 116983 TCGA-A1-A0SH-01 -1 -AURKAIP1 54998 TCGA-A1-A0SH-01 -1 -ERCC5 2073 TCGA-A1-A0SH-01 -1 -ACAP3 116983 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger Class 2 Class annotation -AGRN 375790 TCGA-A2-A04U-01 2 Putative_Driver Test driver Class 1 Class annotation -ATAD3A 55210 TCGA-A2-A04U-01 2 -ATAD3B 83858 TCGA-A2-A04U-01 2 - 116983 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger -AURKAIP1 54998 TCGA-A2-A04U-01 2 -ERCC5 2073 TCGA-A2-A04U-01 2 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_cna_long_two_hugos_same_gene.txt b/core/src/test/scripts/test_data/data_cna_long_two_hugos_same_gene.txt deleted file mode 100644 index 070e47723d1..00000000000 --- a/core/src/test/scripts/test_data/data_cna_long_two_hugos_same_gene.txt +++ /dev/null @@ -1,36 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Sample_Id Value cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation MyNamespace.column1 MyNamespace.column2 -ACAP3 116983 TCGA-A1-A0SB-01 0 -AGRN 375790 TCGA-A1-A0SB-01 0 -ATAD3A 55210 TCGA-A1-A0SB-01 0 -ATAD3B 83858 TCGA-A1-A0SB-01 0 -CENTB5 TCGA-A1-A0SB-01 0 -AURKAIP1 54998 TCGA-A1-A0SB-01 0 -ERCC5 2073 TCGA-A1-A0SB-01 0 -ACAP3 116983 TCGA-A1-A0SD-01 -1 -AGRN 375790 TCGA-A1-A0SD-01 -1 -ATAD3A 55210 TCGA-A1-A0SD-01 -1 -ATAD3B 83858 TCGA-A1-A0SD-01 -1 -CENTB5 TCGA-A1-A0SD-01 -1 -AURKAIP1 54998 TCGA-A1-A0SD-01 -1 -ERCC5 2073 TCGA-A1-A0SD-01 -1 -ACAP3 116983 TCGA-A1-A0SE-01 0 -AGRN 375790 TCGA-A1-A0SE-01 0 -ATAD3A 55210 TCGA-A1-A0SE-01 0 -ATAD3B 83858 TCGA-A1-A0SE-01 0 -CENTB5 TCGA-A1-A0SE-01 0 -AURKAIP1 54998 TCGA-A1-A0SE-01 0 -ERCC5 2073 TCGA-A1-A0SE-01 0 -ACAP3 116983 TCGA-A1-A0SH-01 -1 -AGRN 375790 TCGA-A1-A0SH-01 -1 -ATAD3A 55210 TCGA-A1-A0SH-01 -1 -ATAD3B 83858 TCGA-A1-A0SH-01 -1 -CENTB5 TCGA-A1-A0SH-01 -1 -AURKAIP1 54998 TCGA-A1-A0SH-01 -1 -ERCC5 2073 TCGA-A1-A0SH-01 -1 -ACAP3 116983 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger Class 2 Class annotation -AGRN 375790 TCGA-A2-A04U-01 2 Putative_Driver Test driver Class 1 Class annotation -ATAD3A 55210 TCGA-A2-A04U-01 2 -ATAD3B 83858 TCGA-A2-A04U-01 2 -CENTB5 TCGA-A2-A04U-01 2 Putative_Passenger Test passenger -AURKAIP1 54998 TCGA-A2-A04U-01 2 -ERCC5 2073 TCGA-A2-A04U-01 2 Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/data_gene_matrix_duplicate_sample.txt b/core/src/test/scripts/test_data/data_gene_matrix_duplicate_sample.txt deleted file mode 100644 index 20b2a27d11e..00000000000 --- a/core/src/test/scripts/test_data/data_gene_matrix_duplicate_sample.txt +++ /dev/null @@ -1,4 +0,0 @@ -SAMPLE_ID mutations gistic -TCGA-A1-A0SB-01 TESTPANEL2 TESTPANEL1 -TCGA-A1-A0SD-01 NA TESTPANEL1 -TCGA-A1-A0SB-01 TESTPANEL2 TESTPANEL1 diff --git a/core/src/test/scripts/test_data/data_generic_assay_categorical_invalid_predefined_data.txt b/core/src/test/scripts/test_data/data_generic_assay_categorical_invalid_predefined_data.txt deleted file mode 100644 index adc685a1237..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_categorical_invalid_predefined_data.txt +++ /dev/null @@ -1,3 +0,0 @@ -ENTITY_STABLE_ID name description TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -1p 1p 1p category_1 gain loss unchanged Gained Lost Unchange Unknown -2p 2p 2p Gain Gain Loss Unchanged Gain Loss Unchanged NA diff --git a/core/src/test/scripts/test_data/data_generic_assay_categorical_valid_predefined_data.txt b/core/src/test/scripts/test_data/data_generic_assay_categorical_valid_predefined_data.txt deleted file mode 100644 index fb9abd7d8ff..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_categorical_valid_predefined_data.txt +++ /dev/null @@ -1,3 +0,0 @@ -ENTITY_STABLE_ID name description TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -1p 1p 1p Loss Gain Gain Gain Unchanged Loss Loss -2p 2p 2p Gain Gain Loss Unchanged Gain Loss Unchanged NA diff --git a/core/src/test/scripts/test_data/data_generic_assay_empty_cell.txt b/core/src/test/scripts/test_data/data_generic_assay_empty_cell.txt deleted file mode 100644 index 7616819a368..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_empty_cell.txt +++ /dev/null @@ -1,4 +0,0 @@ -ENTITY_STABLE_ID name description url TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 mean_1 url_1 category_1 category_2 category_2 category_2 category_1 category_1 category_3 category_4 -mean_2 mean_2 mean_2 url_2 category_1 category_1 category_2 category_1 category_2 category_3 category_4 -mean_3 mean_3 mean_3 url_3 category_2 category_1 category_2 category_2 category_1 category_2 NA category_3 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_generic_assay_patient_not_defined.txt b/core/src/test/scripts/test_data/data_generic_assay_patient_not_defined.txt deleted file mode 100644 index 76d13e7dd2e..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_patient_not_defined.txt +++ /dev/null @@ -1,4 +0,0 @@ -ENTITY_STABLE_ID name description url TCGA-A1-A0SB TCGA-A1-A0SD TCGA-A1-A0SE NOT_DEFINEND_PATIENT TCGA-A2-A04U TCGA-B6-A0RS TCGA-BH-A0HP TCGA-BH-A18P -mean_1 mean_1 mean_1 url_1 0.370266873 0.010373016 0.005419294 0.022753384 0.037687823 0.016708976 0.100042446 0.104214723 -mean_2 mean_2 mean_2 url_2 0.002709404 0.009212318 0.002650657 0.005475484 0.074175715 0.033049207 0.027323826 0.008861145 -mean_3 mean_3 mean_3 url_3 0.006035782 0.010095773 0.011926486 0.010637541 0.012168938 0.006641113 0.025730547 0.020463421 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_generic_assay_sample_not_defined.txt b/core/src/test/scripts/test_data/data_generic_assay_sample_not_defined.txt deleted file mode 100644 index 5fdef0ccfaf..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_sample_not_defined.txt +++ /dev/null @@ -1,4 +0,0 @@ -ENTITY_STABLE_ID name description url TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 NOT_DEFINEND_SAMPLE TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 mean_1 url_1 0.370266873 0.010373016 0.005419294 0.022753384 0.037687823 0.016708976 0.100042446 0.104214723 -mean_2 mean_2 mean_2 url_2 0.002709404 0.009212318 0.002650657 0.005475484 0.074175715 0.033049207 0.027323826 0.008861145 -mean_3 mean_3 mean_3 url_3 0.006035782 0.010095773 0.011926486 0.010637541 0.012168938 0.006641113 0.025730547 0.020463421 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_generic_assay_valid_binary.txt b/core/src/test/scripts/test_data/data_generic_assay_valid_binary.txt deleted file mode 100644 index f262a9b9848..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_valid_binary.txt +++ /dev/null @@ -1,4 +0,0 @@ -ENTITY_STABLE_ID name description url TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 mean_1 url_1 true false false false true true yes no -mean_2 mean_2 mean_2 url_2 false true true false true false yes no -mean_3 mean_3 mean_3 url_3 false true false false true false NA yes \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_generic_assay_valid_categorical.txt b/core/src/test/scripts/test_data/data_generic_assay_valid_categorical.txt deleted file mode 100644 index da748f792fd..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_valid_categorical.txt +++ /dev/null @@ -1,4 +0,0 @@ -ENTITY_STABLE_ID name description url TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 mean_1 url_1 category_1 category_2 category_2 category_2 category_1 category_1 category_3 category_4 -mean_2 mean_2 mean_2 url_2 category_2 category_1 category_1 category_2 category_1 category_2 category_3 category_4 -mean_3 mean_3 mean_3 url_3 category_2 category_1 category_2 category_2 category_1 category_2 NA category_3 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_generic_assay_valid_continuous.txt b/core/src/test/scripts/test_data/data_generic_assay_valid_continuous.txt deleted file mode 100644 index 81dc181d012..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_valid_continuous.txt +++ /dev/null @@ -1,4 +0,0 @@ -ENTITY_STABLE_ID name description url TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 mean_1 url_1 NA 0.010373016 0.005419294 0.022753384 0.037687823 0.016708976 0.100042446 0.104214723 -mean_2 mean_2 mean_2 url_2 0.002709404 0.009212318 0.002650657 <0.005475484 0.074175715 0.033049207 0.027323826 0.008861145 -mean_3 mean_3 mean_3 url_3 0.006035782 >0.010095773 0.011926486 0.010637541 0.012168938 0.006641113 NA 0.020463421 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_generic_assay_with_non_numerical_data.txt b/core/src/test/scripts/test_data/data_generic_assay_with_non_numerical_data.txt deleted file mode 100644 index 3c466809b72..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_with_non_numerical_data.txt +++ /dev/null @@ -1,4 +0,0 @@ -ENTITY_STABLE_ID name description url TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 mean_1 url_1 NA 0.010373016 0.005419294 0.022753384 0.037687823 0.016708976 0.100042446 0.104214723 -mean_2 mean_2 mean_2 url_2 NON_NUMERIC 0.009212318 0.002650657 0.005475484 0.074175715 0.033049207 0.027323826 0.008861145 -mean_3 mean_3 mean_3 url_3 0.006035782 0.010095773 0.011926486 0.010637541 0.012168938 0.006641113 0.025730547 0.020463421 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_generic_assay_with_not_defined_data.txt b/core/src/test/scripts/test_data/data_generic_assay_with_not_defined_data.txt deleted file mode 100644 index fa02cee2dc9..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_with_not_defined_data.txt +++ /dev/null @@ -1,4 +0,0 @@ -ENTITY_STABLE_ID name description url TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 mean_1 url_1 true false false false true true yes no -mean_2 mean_2 mean_2 url_2 false NOT_DEFINED true false true false yes no -mean_3 mean_3 mean_3 url_3 false true false false true false NA yes \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_generic_assay_without_entity_id_column.txt b/core/src/test/scripts/test_data/data_generic_assay_without_entity_id_column.txt deleted file mode 100644 index bb6140e61f3..00000000000 --- a/core/src/test/scripts/test_data/data_generic_assay_without_entity_id_column.txt +++ /dev/null @@ -1,4 +0,0 @@ -name description url TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 url_1 0.370266873 0.010373016 0.005419294 0.022753384 0.037687823 0.016708976 0.100042446 0.104214723 -mean_2 mean_2 url_2 0.002709404 0.009212318 0.002650657 0.005475484 0.074175715 0.033049207 0.027323826 0.008861145 -mean_3 mean_3 url_3 0.006035782 0.010095773 0.011926486 0.010637541 0.012168938 0.006641113 0.025730547 0.020463421 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_gisticgenes_amp_valid.txt b/core/src/test/scripts/test_data/data_gisticgenes_amp_valid.txt deleted file mode 100644 index 058be1b29cd..00000000000 --- a/core/src/test/scripts/test_data/data_gisticgenes_amp_valid.txt +++ /dev/null @@ -1,4 +0,0 @@ -index chromosome region_start region_end peak_start peak_end enlarged_peak_start enlarged_peak_end n_genes_in_region genes_in_region n_genes_in_peak genes_in_peak n_genes_on_chip genes_on_chip top 3 amp cytoband q_value -1 1 120527361 247812431 150563314 150621176 150345470 150703005 15 SNORA40,RN7SL600P, RN7SL473P,C1orf138,LINC00568,CTSS,ECM1,ENSA,MCL1,RPRD2,ADAMTSL4,GOLPH3L,TARS2,HORMAD1,MIR4257, 4 SNORA40|ENSG00000253047.1,ENSA,MCL1,GOLPH3L, 1 1q21.3 2.7818e-43 -2 1 85980350 86006717 85988564 85991712 85980350 85998036 1 DDAH1 1 DDAH1, 1 1p22.3 4.1251e-13 -29 20 44878266 62219648 52250820 52275163 52163167 52364760 1 ZNF217, 0 [ZNF217] 1 20q13.2 2.1378e-48 diff --git a/core/src/test/scripts/test_data/data_gisticgenes_del_format_errors.txt b/core/src/test/scripts/test_data/data_gisticgenes_del_format_errors.txt deleted file mode 100644 index 36a0c20fae8..00000000000 --- a/core/src/test/scripts/test_data/data_gisticgenes_del_format_errors.txt +++ /dev/null @@ -1,6 +0,0 @@ -index chromosome peak_start peak_end genes_in_region amp cytoband q_value - 2 16796742 17340878 UBXN10,PLA2G2C,PLA2G2D, n 1p36.13 1.0212e-46 -4 3 49846890 49836465 RNA5SP131,SEMA3B, 0 3p21.31 1.602e-31j -2 1 93642428 93753282 BCL2L15,LRIG2,WNT2B 1 1r22.1 6.5822e-11 -39 15347621 15372509 RNA5SP488,ANKRD20A11P,CYP4F29P, 0 q11.2 5.9777e-09 -40 22 48883796 49287130 ARSA,,RN7SL500P,DENND6B,TTLL8, 0 22q13.32 0.45243 diff --git a/core/src/test/scripts/test_data/data_gisticgenes_del_region_without_genes.txt b/core/src/test/scripts/test_data/data_gisticgenes_del_region_without_genes.txt deleted file mode 100644 index 8cafadf26ad..00000000000 --- a/core/src/test/scripts/test_data/data_gisticgenes_del_region_without_genes.txt +++ /dev/null @@ -1,6 +0,0 @@ -index chromosome peak_start peak_end genes_in_region amp cytoband q_value -1 1 16796742 17340878 UBXN10,PLA2G2C,PLA2G2D, 0 1p36.13 1.0212e-46 -4 3 49836465 49846890 RNA5SP131,SEMA3B, 0 3p21.31 1.602e-31 -2 1 93642428 93753282 0 1p22.1 6.5822e-11 -39 21 15347621 15372509 , 0 21q11.2 5.9777e-09 -40 22 48883796 49287130 ARSA,RN7SL500P,DENND6B,TTLL8, 0 22q13.32 0.45243 diff --git a/core/src/test/scripts/test_data/data_gisticgenes_del_valid.txt b/core/src/test/scripts/test_data/data_gisticgenes_del_valid.txt deleted file mode 100644 index 2df369e9cdd..00000000000 --- a/core/src/test/scripts/test_data/data_gisticgenes_del_valid.txt +++ /dev/null @@ -1,6 +0,0 @@ -index chromosome peak_start peak_end genes_in_region amp cytoband q_value -1 1 16796742 17340878 UBXN10,PLA2G2C,PLA2G2D, 0 1p36.13 1.0212e-46 -4 3 49836465 49846890 RNA5SP131,SEMA3B, 0 3p21.31 1.602e-31 -2 1 93642428 93753282 BCL2L15,LRIG2,WNT2B 0 1p22.1 6.5822e-11 -39 21 15347621 15372509 RNA5SP488,ANKRD20A11P,CYP4F29P, 0 21q11.2 5.9777e-09 -40 22 48883796 49287130 ARSA,RN7SL500P,DENND6B,TTLL8, 0 22q13.32 0.45243 diff --git a/core/src/test/scripts/test_data/data_gisticgenes_del_zero_length_peak.txt b/core/src/test/scripts/test_data/data_gisticgenes_del_zero_length_peak.txt deleted file mode 100644 index 28568f7baa4..00000000000 --- a/core/src/test/scripts/test_data/data_gisticgenes_del_zero_length_peak.txt +++ /dev/null @@ -1,7 +0,0 @@ -index chromosome peak_start peak_end genes_in_region amp cytoband q_value -1 1 16796742 17340878 UBXN10,PLA2G2C,PLA2G2D, 0 1p36.13 1.0212e-46 -4 3 49836465 49846890 RNA5SP131,SEMA3B, 0 3p21.31 1.602e-31 -2 1 93642428 93753282 BCL2L15,LRIG2,WNT2B 0 1p22.1 6.5822e-11 -3 2 242476062 242476062 RNA5SP122,RNPEPL1, 0 2q37.3 7.2629e-12 -39 21 15347621 15372509 RNA5SP488,ANKRD20A11P,CYP4F29P, 0 21q11.2 5.9777e-09 -40 22 48883796 49287130 ARSA,RN7SL500P,DENND6B,TTLL8, 0 22q13.32 0.45243 diff --git a/core/src/test/scripts/test_data/data_gsva_pvalues_missing_column.txt b/core/src/test/scripts/test_data/data_gsva_pvalues_missing_column.txt deleted file mode 100644 index 49b679af1e1..00000000000 --- a/core/src/test/scripts/test_data/data_gsva_pvalues_missing_column.txt +++ /dev/null @@ -1,8 +0,0 @@ -geneset_id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -GO_ACYLGLYCEROL_HOMEOSTASIS 0.00497512437810945 0.00497512437810945 0.0845771144278607 0.00497512437810945 0.00497512437810945 -GO_ANATOMICAL_STRUCTURE_FORMATION_INVOLVED_IN_MORPHOGENESIS 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_ANTEROGRADE_AXONAL_TRANSPORT 0.00497512437810945 0.00995024875621891 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_APICAL_PROTEIN_LOCALIZATION 0.00497512437810945 0.169154228855721 0.00497512437810945 0.00497512437810945 0.283582089552239 -GO_ATP_DEPENDENT_CHROMATIN_REMODELING 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_CARBOHYDRATE_CATABOLIC_PROCESS 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_CARDIAC_CHAMBER_DEVELOPMENT 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 diff --git a/core/src/test/scripts/test_data/data_gsva_pvalues_missing_row.txt b/core/src/test/scripts/test_data/data_gsva_pvalues_missing_row.txt deleted file mode 100644 index 49b679af1e1..00000000000 --- a/core/src/test/scripts/test_data/data_gsva_pvalues_missing_row.txt +++ /dev/null @@ -1,8 +0,0 @@ -geneset_id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -GO_ACYLGLYCEROL_HOMEOSTASIS 0.00497512437810945 0.00497512437810945 0.0845771144278607 0.00497512437810945 0.00497512437810945 -GO_ANATOMICAL_STRUCTURE_FORMATION_INVOLVED_IN_MORPHOGENESIS 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_ANTEROGRADE_AXONAL_TRANSPORT 0.00497512437810945 0.00995024875621891 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_APICAL_PROTEIN_LOCALIZATION 0.00497512437810945 0.169154228855721 0.00497512437810945 0.00497512437810945 0.283582089552239 -GO_ATP_DEPENDENT_CHROMATIN_REMODELING 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_CARBOHYDRATE_CATABOLIC_PROCESS 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_CARDIAC_CHAMBER_DEVELOPMENT 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 diff --git a/core/src/test/scripts/test_data/data_gsva_pvalues_outrange.txt b/core/src/test/scripts/test_data/data_gsva_pvalues_outrange.txt deleted file mode 100644 index 7a12fd72591..00000000000 --- a/core/src/test/scripts/test_data/data_gsva_pvalues_outrange.txt +++ /dev/null @@ -1,8 +0,0 @@ -geneset_id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -GO_ACYLGLYCEROL_HOMEOSTASIS 0.00497512437810945 0.00497512437810945 0.0845771144278607 0.00497512437810945 0.00497512437810945 -GO_ANATOMICAL_STRUCTURE_FORMATION_INVOLVED_IN_MORPHOGENESIS 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_ANTEROGRADE_AXONAL_TRANSPORT 1.5 0.00995024875621891 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_APICAL_PROTEIN_LOCALIZATION 0.00497512437810945 1e-06 0.00497512437810945 0.00497512437810945 0.283582089552239 -GO_ATP_DEPENDENT_CHROMATIN_REMODELING 0.00497512437810945 0.00497512437810945 1e3 0.00497512437810945 0.00497512437810945 -GO_CARBOHYDRATE_CATABOLIC_PROCESS 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 0.00497512437810945 -GO_CARDIAC_CHAMBER_DEVELOPMENT 0.00497512437810945 -0.00000000000000005 0.00497512437810945 0.00497512437810945 0.00497512437810945 diff --git a/core/src/test/scripts/test_data/data_gsva_scores_geneset_not_in_database.txt b/core/src/test/scripts/test_data/data_gsva_scores_geneset_not_in_database.txt deleted file mode 100644 index 8d7efd0afc3..00000000000 --- a/core/src/test/scripts/test_data/data_gsva_scores_geneset_not_in_database.txt +++ /dev/null @@ -1,8 +0,0 @@ -geneset_id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -GO_ACYLGLYCEROL_HOMEOSTASIS -0.138520488027997 -0.442013761895225 -0.0585714696236384 0.230071239194925 -0.503435483643209 -HYVE_TEST_GENE_SET 0.0643924387145285 0.15400673115399 0.163692569807521 0.139595520977635 -0.0625185753394938 -GO_ANTEROGRADE_AXONAL_TRANSPORT 0.176754359100034 0.0850941592302596 0.16205156900834 0.137268555925834 0.306120094854227 -GO_APICAL_PROTEIN_LOCALIZATION 0.371393691351566 -0.0266464977322038 0.230296971105985 0.483241270805623 0.0116198191917293 -GO_ATP_DEPENDENT_CHROMATIN_REMODELING -0.293861251463613 -0.226227563676626 -0.546556962547473 -0.0811115513543749 0.56919171543422 -GO_CARBOHYDRATE_CATABOLIC_PROCESS -0.136810023470508 -0.124208475841744 -0.0923603625069832 -0.0435626290021717 -0.17202318334593 -GO_CARDIAC_CHAMBER_DEVELOPMENT 0.0898885015206211 0.300940950401182 0.392070715092965 0.207890745464433 -0.103345910055048 diff --git a/core/src/test/scripts/test_data/data_gsva_scores_missing_column.txt b/core/src/test/scripts/test_data/data_gsva_scores_missing_column.txt deleted file mode 100644 index f8ab5aefb07..00000000000 --- a/core/src/test/scripts/test_data/data_gsva_scores_missing_column.txt +++ /dev/null @@ -1,8 +0,0 @@ -geneset_id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 -GO_ACYLGLYCEROL_HOMEOSTASIS -0.138520488027997 -0.442013761895225 -0.0585714696236384 0.230071239194925 -GO_ANATOMICAL_STRUCTURE_FORMATION_INVOLVED_IN_MORPHOGENESIS 0.0643924387145285 0.15400673115399 0.163692569807521 0.139595520977635 -GO_ANTEROGRADE_AXONAL_TRANSPORT 0.176754359100034 0.0850941592302596 0.16205156900834 0.137268555925834 -GO_APICAL_PROTEIN_LOCALIZATION 0.371393691351566 -0.0266464977322038 0.230296971105985 0.483241270805623 -GO_ATP_DEPENDENT_CHROMATIN_REMODELING -0.293861251463613 -0.226227563676626 -0.546556962547473 -0.0811115513543749 -GO_CARBOHYDRATE_CATABOLIC_PROCESS -0.136810023470508 -0.124208475841744 -0.0923603625069832 -0.0435626290021717 -GO_CARDIAC_CHAMBER_DEVELOPMENT 0.0898885015206211 0.300940950401182 0.392070715092965 0.207890745464433 diff --git a/core/src/test/scripts/test_data/data_gsva_scores_missing_row.txt b/core/src/test/scripts/test_data/data_gsva_scores_missing_row.txt deleted file mode 100644 index 3645bada0b2..00000000000 --- a/core/src/test/scripts/test_data/data_gsva_scores_missing_row.txt +++ /dev/null @@ -1,7 +0,0 @@ -geneset_id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -GO_ACYLGLYCEROL_HOMEOSTASIS -0.138520488027997 -0.442013761895225 -0.0585714696236384 0.230071239194925 -0.503435483643209 -GO_ANATOMICAL_STRUCTURE_FORMATION_INVOLVED_IN_MORPHOGENESIS 0.0643924387145285 0.15400673115399 0.163692569807521 0.139595520977635 -0.0625185753394938 -GO_ANTEROGRADE_AXONAL_TRANSPORT 0.176754359100034 0.0850941592302596 0.16205156900834 0.137268555925834 0.306120094854227 -GO_APICAL_PROTEIN_LOCALIZATION 0.371393691351566 -0.0266464977322038 0.230296971105985 0.483241270805623 0.0116198191917293 -GO_ATP_DEPENDENT_CHROMATIN_REMODELING -0.293861251463613 -0.226227563676626 -0.546556962547473 -0.0811115513543749 0.56919171543422 -GO_CARDIAC_CHAMBER_DEVELOPMENT 0.0898885015206211 0.300940950401182 0.392070715092965 0.207890745464433 -0.103345910055048 diff --git a/core/src/test/scripts/test_data/data_gsva_scores_outrange.txt b/core/src/test/scripts/test_data/data_gsva_scores_outrange.txt deleted file mode 100644 index 7f70b7ea640..00000000000 --- a/core/src/test/scripts/test_data/data_gsva_scores_outrange.txt +++ /dev/null @@ -1,8 +0,0 @@ -geneset_id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 -GO_ACYLGLYCEROL_HOMEOSTASIS -0.138520488027997 -0.442013761895225 -0.0585714696236384 1.5 -0.503435483643209 -GO_ANATOMICAL_STRUCTURE_FORMATION_INVOLVED_IN_MORPHOGENESIS 0.0643924387145285 0.15400673115399 0.163692569807521 0.139595520977635 -0.0625185753394938 -GO_ANTEROGRADE_AXONAL_TRANSPORT 0.176754359100034 0.0850941592302596 0.16205156900834 0.137268555925834 0.306120094854227 -GO_APICAL_PROTEIN_LOCALIZATION 2.371393691351566 -0.0266464977322038 0.230296971105985 0.483241270805623 0.0116198191917293 -GO_ATP_DEPENDENT_CHROMATIN_REMODELING -1 -0.226227563676626 -0.546556962547473 -0.0811115513543749 0.56919171543422 -GO_CARBOHYDRATE_CATABOLIC_PROCESS -0.136810023470508 -12 -0.0923603625069832 -0.0435626290021717 -0.17202318334593 -GO_CARDIAC_CHAMBER_DEVELOPMENT 0.0898885015206211 1 0.392070715092965 0.207890745464433 -0.103345910055048 diff --git a/core/src/test/scripts/test_data/data_methylation_invalid_values.txt b/core/src/test/scripts/test_data/data_methylation_invalid_values.txt deleted file mode 100644 index f9fec8efb05..00000000000 --- a/core/src/test/scripts/test_data/data_methylation_invalid_values.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 -ATP2A1 487 0.609122203 n.a. 0.3107555 -SLMAP 7871 0.098467778 0.121041994 0.306626399 -HOXD3 3232 0.622915928 0.464138055 0.640214526 -PANX1 24145 0.11372122 0.102092314 -IMPA2 3613 0.032369146 0.043742109 0.044235925 -RHOC 389 0.364782692 NA 0.501775788 -CCDC88B 283234 0.776356454 NA Na diff --git a/core/src/test/scripts/test_data/data_pd_annotation_missing_col_driver.txt b/core/src/test/scripts/test_data/data_pd_annotation_missing_col_driver.txt deleted file mode 100644 index b7777632cec..00000000000 --- a/core/src/test/scripts/test_data/data_pd_annotation_missing_col_driver.txt +++ /dev/null @@ -1,2 +0,0 @@ -Entrez_Gene_Id Hugo_Symbol SAMPLE_ID cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -219293 ATAD3C TCGA-A1-A0SB-01 Test passenger Class 2 Class annotation diff --git a/core/src/test/scripts/test_data/data_pd_annotation_missing_col_gene_ids.txt b/core/src/test/scripts/test_data/data_pd_annotation_missing_col_gene_ids.txt deleted file mode 100644 index f277e7026ff..00000000000 --- a/core/src/test/scripts/test_data/data_pd_annotation_missing_col_gene_ids.txt +++ /dev/null @@ -1,2 +0,0 @@ -A B SAMPLE_ID cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -a b TCGA-A1-A0SB-01 Putative_Passenger Test passenger Class 2 Class annotation diff --git a/core/src/test/scripts/test_data/data_pd_annotation_missing_col_sampleid.txt b/core/src/test/scripts/test_data/data_pd_annotation_missing_col_sampleid.txt deleted file mode 100644 index 48a00faa61c..00000000000 --- a/core/src/test/scripts/test_data/data_pd_annotation_missing_col_sampleid.txt +++ /dev/null @@ -1,2 +0,0 @@ -Entrez_Gene_Id Hugo_Symbol cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -219293 ATAD3C Putative_Passenger Test passenger Class 2 Class annotation diff --git a/core/src/test/scripts/test_data/data_pd_annotation_missing_fields.txt b/core/src/test/scripts/test_data/data_pd_annotation_missing_fields.txt deleted file mode 100644 index d27069c9c41..00000000000 --- a/core/src/test/scripts/test_data/data_pd_annotation_missing_fields.txt +++ /dev/null @@ -1,8 +0,0 @@ -Entrez_Gene_Id Hugo_Symbol SAMPLE_ID cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation - ACAP3 TCGA-A1-A0SB-01 Putative_Passenger Test passenger Class 2 Class annotation -375790 TCGA-A1-A0SB-01 Putative_Driver Test driver Class 1 Class annotation -219293 ATAD3C TCGA-A1-A0SB-01 Putative_Passenger Test passenger Class 2 Class annotation -219293 ATAD3C TCGA-A1-A0SB-01 wrong value Test passenger Class 2 Class annotation - TCGA-A1-A0SB-01 Putative_Driver Test driver Class 1 Class annotation -55210 ATAD3A TCGA-A1-A0SB-01 Test driver Class 2 Class annotation -83858 ATAC3B TCGA-A1-A0SB-01 Putative_Driver Test driver Class annotation diff --git a/core/src/test/scripts/test_data/data_resource_definition_missing_resourceId.txt b/core/src/test/scripts/test_data/data_resource_definition_missing_resourceId.txt deleted file mode 100644 index 6907dcb3541..00000000000 --- a/core/src/test/scripts/test_data/data_resource_definition_missing_resourceId.txt +++ /dev/null @@ -1,4 +0,0 @@ -RESOURCE_ID DISPLAY_NAME DESCRIPTION RESOURCE_TYPE OPEN_BY_DEFAULT PRIORITY -PATHOLOGY_SLIDE Pathology Slide The pathology slide for the sample SAMPLE TRUE 1 - Patient Notes Notes about the patient PATIENT FALSE 2 -STUDY_SPONSORS Study Sponsors Sponsors of this study STUDY TRUE 3 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_resource_is_not_url.txt b/core/src/test/scripts/test_data/data_resource_is_not_url.txt deleted file mode 100644 index 182b15ef310..00000000000 --- a/core/src/test/scripts/test_data/data_resource_is_not_url.txt +++ /dev/null @@ -1,4 +0,0 @@ -PATIENT_ID SAMPLE_ID RESOURCE_ID URL -TCGA-A2-A04P TCGA-A2-A04P-01 PATHOLOGY_SLIDE not_a_url -TCGA-A1-A0SK TCGA-A1-A0SK-01 PATHOLOGY_SLIDE http://url-to-slide-sample2 -TCGA-A2-A0CM TCGA-A2-A0CM-01 PATHOLOGY_SLIDE http://url-to-slide-sample3 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_resource_patient_duplicate.txt b/core/src/test/scripts/test_data/data_resource_patient_duplicate.txt deleted file mode 100644 index cd805fac4f6..00000000000 --- a/core/src/test/scripts/test_data/data_resource_patient_duplicate.txt +++ /dev/null @@ -1,4 +0,0 @@ -PATIENT_ID RESOURCE_ID URL -TCGA-A2-A04P PATIENT_NOTES http://url-to-patient-notes-patient1 -TCGA-A1-A0SK PATIENT_NOTES http://url-to-patient-notes-patient2 -TCGA-A1-A0SK PATIENT_NOTES http://url-to-patient-notes-patient2 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_resource_patient_valid.txt b/core/src/test/scripts/test_data/data_resource_patient_valid.txt deleted file mode 100644 index ad9b93a8229..00000000000 --- a/core/src/test/scripts/test_data/data_resource_patient_valid.txt +++ /dev/null @@ -1,4 +0,0 @@ -PATIENT_ID RESOURCE_ID URL -TCGA-A2-A04P PATIENT_NOTES http://url-to-patient-notes-patient1 -TCGA-A1-A0SK PATIENT_NOTES http://url-to-patient-notes-patient2 -TCGA-A2-A0CM PATIENT_NOTES http://url-to-patient-notes-patient3 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_resource_sample_duplicate.txt b/core/src/test/scripts/test_data/data_resource_sample_duplicate.txt deleted file mode 100644 index 6dd97c15c43..00000000000 --- a/core/src/test/scripts/test_data/data_resource_sample_duplicate.txt +++ /dev/null @@ -1,4 +0,0 @@ -PATIENT_ID SAMPLE_ID RESOURCE_ID URL -TCGA-A2-A04P TCGA-A2-A04P-01 PATHOLOGY_SLIDE http://url-to-slide-sample1 -TCGA-A1-A0SK TCGA-A1-A0SK-01 PATHOLOGY_SLIDE http://url-to-slide-sample2 -TCGA-A1-A0SK TCGA-A1-A0SK-01 PATHOLOGY_SLIDE http://url-to-slide-sample2 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_resource_sample_valid.txt b/core/src/test/scripts/test_data/data_resource_sample_valid.txt deleted file mode 100644 index 241b0330d9e..00000000000 --- a/core/src/test/scripts/test_data/data_resource_sample_valid.txt +++ /dev/null @@ -1,4 +0,0 @@ -PATIENT_ID SAMPLE_ID RESOURCE_ID URL -TCGA-A2-A04P TCGA-A2-A04P-01 PATHOLOGY_SLIDE http://url-to-slide-sample1 -TCGA-A1-A0SK TCGA-A1-A0SK-01 PATHOLOGY_SLIDE http://url-to-slide-sample2 -TCGA-A2-A0CM TCGA-A2-A0CM-01 PATHOLOGY_SLIDE http://url-to-slide-sample3 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_resource_study_duplicate.txt b/core/src/test/scripts/test_data/data_resource_study_duplicate.txt deleted file mode 100644 index 8d0b6a3474e..00000000000 --- a/core/src/test/scripts/test_data/data_resource_study_duplicate.txt +++ /dev/null @@ -1,3 +0,0 @@ -RESOURCE_ID URL -STUDY_SPONSORS http://url-to-study-sponsors1 -STUDY_SPONSORS http://url-to-study-sponsors1 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_resource_study_valid.txt b/core/src/test/scripts/test_data/data_resource_study_valid.txt deleted file mode 100644 index 9502811d11a..00000000000 --- a/core/src/test/scripts/test_data/data_resource_study_valid.txt +++ /dev/null @@ -1,3 +0,0 @@ -RESOURCE_ID URL -STUDY_SPONSORS http://url-to-study-sponsors1 -STUDY_SPONSORS http://url-to-study-sponsors2 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/data_rppa_duplicate_entries.txt b/core/src/test/scripts/test_data/data_rppa_duplicate_entries.txt deleted file mode 100644 index 893df603d2e..00000000000 --- a/core/src/test/scripts/test_data/data_rppa_duplicate_entries.txt +++ /dev/null @@ -1,14 +0,0 @@ -Composite.Element.REF TCGA-A1-A0SH-01 TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 -ACACA|ACC1 1.36122710480548 0.137186254715365 -0.850736831131339 0.476558318406069 -ACACA ACACB|ACC_pS79 1.51253243664957 -0.0410770883984889 -0.78191102600407 0.673355464214241 -ATM|ATM 6.4424238579025e-05 0.162264661774981 -0.0400199608807095 0.67302406304931 -AKT1 AKT2 AKT3|Akt 0.27624053370992 0.170399126328659 -0.215370588939701 0.489297723042123 -AKT1 AKT2 AKT3|Akt_pS473 0.507622077164699 -0.426522823583974 -0.578671379537765 -0.113288810121645 -AKT1 AKT2 AKT3|Akt_pT308 0.483702820778609 0.118650367364756 -0.112916054025255 0.487905779396575 -BRAF|B-Raf -0.235040546938807 0.00830643372831408 -0.155035353788789 -0.0797154428759795 -PRKCA|PKC-alpha 0.0605313201064355 -0.297062514778581 0.030489024019046 -0.0633055272803772 -PRKCA|PKC-alpha_pS657 0.628733739571235 -0.057153525235924 -0.125065736911485 -0.281827093937295 -RPS6KB1|p70S6K 0.235811083887643 0.378534764960181 -0.494482450332097 0.296942085106787 -RPS6KB1|p70S6K_pT389 -0.212356191434831 -0.244211928723544 -0.171739079355195 -0.245525561651805 -RPS6KA1|p90RSK_pT359_S363 0.210415326066138 -0.240162443944257 -0.206527782858493 0.0400488718847178 -BRAF|B-Raf -0.235040546938807 0.00830643372831408 spam -0.0797154428759795 diff --git a/core/src/test/scripts/test_data/data_rppa_invalid_values.txt b/core/src/test/scripts/test_data/data_rppa_invalid_values.txt deleted file mode 100644 index dc07072a2c5..00000000000 --- a/core/src/test/scripts/test_data/data_rppa_invalid_values.txt +++ /dev/null @@ -1,22 +0,0 @@ -Composite.Element.REF TCGA-A1-A0SH-01 TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 -ACACA|ACC1 1.36122710480548 0.137186254715365 -0.850736831131339 0.476558318406069 -ACACA ACACB|ACC_pS79 1.51253243664957 spam -0.78191102600407 0.673355464214241 -ATM|ATM 6.4424238579025e-05 0.162264661774981 -0.0400199608807095 0.67302406304931 -AKT1 AKT2 AKT3|Akt 0.27624053370992 0.170399126328659 -0.215370588939701 0.489297723042123 -AKT1 AKT2 AKT3|Akt_pS473 0.507622077164699 -0.426522823583974 -0.578671379537765 -AKT1 AKT2 AKT3|Akt_pT308 0.483702820778609 0.118650367364756 -0.112916054025255 0.487905779396575 -BRAF|B-Raf -0.235040546938807 0.00830643372831408 -0.155035353788789 -0.0797154428759795 -PRKCA |PKC-alpha 0.0605313201064355 0.030489024019046 -0.0633055272803772 -PRKCA |PKC-alpha_pS657 0.628733739571235 -0.057153525235924 -0.125065736911485 -0.281827093937295 -RPS6KB1|p70S6K 0.235811083887643 0.378534764960181 -0.494482450332097 0.296942085106787 -RPS6KB1|p70S6K_pT389 -0.212356191434831 -0.244211928723544 -0.171739079355195 -0.245525561651805 -RPS6KA1|p90RSK_pT359_S363 0.210415326066138 -0.240162443944257 -0.206527782858493 0.0400488718847178 -NA|4E-BP1_pT37 -0.114104647979502 -0.87828636345013 1.28036788460204 0.672807174499066 -NA|ANLN -0.127972588258397 -0.218884812604538 0.211744227394931 0.0705543843061739 -NA|Annexin_I 0.290133279688814 0.119440372723061 2.24786967254382 0.45902641400472 -NA|JNK_pT183_pT185 1.08270021157812 -0.137021266719844 -0.254012706488954 0.15312555349059 -NA|K-Ras -0.0587258292830966 0.0662139306980974 0.184386833697181 -0.213174818220988 -NA|LBK1 0.038942746518176 -0.218499432621757 -0.179208902043151 -0.0833514663806327 -NA|Pea-15 0.22781742581061 0.252008282755791 -0.52225314684524 -0.0805132252684816 -NA|RBM3 0.208176706569049 0.724508564555906 0.155520702849025 0.150595168038915 -NA|SCD1 -0.304785337255741 -1.75378905492014 -0.0475710898169646 -1.53740592357898 diff --git a/core/src/test/scripts/test_data/data_rppa_na_gene.txt b/core/src/test/scripts/test_data/data_rppa_na_gene.txt deleted file mode 100644 index 17e2b287ce4..00000000000 --- a/core/src/test/scripts/test_data/data_rppa_na_gene.txt +++ /dev/null @@ -1,22 +0,0 @@ -Composite.Element.REF TCGA-A1-A0SH-01 TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 -ACACA|ACC1 1.36122710480548 0.137186254715365 -0.850736831131339 0.476558318406069 -ACACA ACACB|ACC_pS79 1.51253243664957 -0.0410770883984889 -0.78191102600407 0.673355464214241 -ATM|ATM 6.4424238579025e-05 0.162264661774981 -0.0400199608807095 0.67302406304931 -AKT1 AKT2 AKT3|Akt 0.27624053370992 0.170399126328659 -0.215370588939701 0.489297723042123 -AKT1 AKT2 AKT3|Akt_pS473 0.507622077164699 -0.426522823583974 -0.578671379537765 -0.113288810121645 -AKT1 AKT2 AKT3|Akt_pT308 0.483702820778609 0.118650367364756 -0.112916054025255 0.487905779396575 -BRAF|B-Raf -0.235040546938807 0.00830643372831408 -0.155035353788789 -0.0797154428759795 -PRKCA|PKC-alpha 0.0605313201064355 -0.297062514778581 0.030489024019046 -0.0633055272803772 -PRKCA|PKC-alpha_pS657 0.628733739571235 -0.057153525235924 -0.125065736911485 -0.281827093937295 -RPS6KB1|p70S6K 0.235811083887643 0.378534764960181 -0.494482450332097 0.296942085106787 -RPS6KB1|p70S6K_pT389 -0.212356191434831 -0.244211928723544 -0.171739079355195 -0.245525561651805 -RPS6KA1|p90RSK_pT359_S363 0.210415326066138 -0.240162443944257 -0.206527782858493 0.0400488718847178 -NA|4E-BP1_pT37 -0.114104647979502 -0.87828636345013 1.28036788460204 0.672807174499066 -NA|ANLN -0.127972588258397 -0.218884812604538 0.211744227394931 0.0705543843061739 -NA|Annexin_I 0.290133279688814 0.119440372723061 2.24786967254382 0.45902641400472 -NA|JNK_pT183_pT185 1.08270021157812 -0.137021266719844 -0.254012706488954 0.15312555349059 -NA|K-Ras -0.0587258292830966 0.0662139306980974 0.184386833697181 -0.213174818220988 -NA|LBK1 0.038942746518176 -0.218499432621757 -0.179208902043151 -0.0833514663806327 -NA|Pea-15 0.22781742581061 0.252008282755791 -0.52225314684524 -0.0805132252684816 -NA|RBM3 0.208176706569049 0.724508564555906 0.155520702849025 0.150595168038915 -NA|SCD1 -0.304785337255741 -1.75378905492014 -0.0475710898169646 -1.53740592357898 diff --git a/core/src/test/scripts/test_data/data_rppa_valid.txt b/core/src/test/scripts/test_data/data_rppa_valid.txt deleted file mode 100644 index cb5c66beff4..00000000000 --- a/core/src/test/scripts/test_data/data_rppa_valid.txt +++ /dev/null @@ -1,13 +0,0 @@ -Composite.Element.REF TCGA-A1-A0SH-01 TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 -ACACA|ACC1 1.36122710480548 0.137186254715365 -0.850736831131339 0.476558318406069 -ACACA ACACB|ACC_pS79 1.51253243664957 -0.0410770883984889 -0.78191102600407 0.673355464214241 -ATM|ATM 6.4424238579025e-05 0.162264661774981 -0.0400199608807095 0.67302406304931 -AKT1 AKT2 AKT3|Akt 0.27624053370992 0.170399126328659 -0.215370588939701 0.489297723042123 -AKT1 AKT2 AKT3|Akt_pS473 0.507622077164699 -0.426522823583974 -0.578671379537765 -0.113288810121645 -AKT1 AKT2 AKT3|Akt_pT308 0.483702820778609 0.118650367364756 -0.112916054025255 0.487905779396575 -BRAF|B-Raf -0.235040546938807 0.00830643372831408 -0.155035353788789 -0.0797154428759795 -PRKCA|PKC-alpha 0.0605313201064355 -0.297062514778581 0.030489024019046 -0.0633055272803772 -PRKCA|PKC-alpha_pS657 0.628733739571235 -0.057153525235924 -0.125065736911485 -0.281827093937295 -RPS6KB1|p70S6K 0.235811083887643 0.378534764960181 -0.494482450332097 0.296942085106787 -RPS6KB1|p70S6K_pT389 -0.212356191434831 -0.244211928723544 -0.171739079355195 -0.245525561651805 -RPS6KA1|p90RSK_pT359_S363 0.210415326066138 -0.240162443944257 -0.206527782858493 0.0400488718847178 diff --git a/core/src/test/scripts/test_data/data_seg_blank_line.seg b/core/src/test/scripts/test_data/data_seg_blank_line.seg deleted file mode 100644 index 881c4e8441f..00000000000 --- a/core/src/test/scripts/test_data/data_seg_blank_line.seg +++ /dev/null @@ -1,54 +0,0 @@ -ID chrom loc.start loc.end num.mark seg.mean -TCGA-A1-A0SB-01 1 0 249250621 249250 0 -TCGA-A1-A0SB-01 2 0 243199373 243199 0 -TCGA-A1-A0SB-01 3 0 91000000 91000 0 -TCGA-A1-A0SB-01 3 91000000 198022430 107022 -0.9 -TCGA-A1-A0SB-01 4 0 191154276 191154 0 -TCGA-A1-A0SB-01 5 0 180915260 180915 0 -TCGA-A1-A0SB-01 6 0 171115067 0 9001 -TCGA-A1-A0SB-01 7 0 159138663 159138 0 -TCGA-A1-A0SB-01 8 0 146364022 146364 0 -TCGA-A1-A0SB-01 9 0 141213431 141213 0 -TCGA-A1-A0SB-01 10 0 135534747 135534 0 -TCGA-A1-A0SB-01 11 0 135006516 135006 0 -TCGA-A1-A0SB-01 12 0 133851895 133851 0 -TCGA-A1-A0SB-01 13 0 115169878 115169 0 -TCGA-A1-A0SB-01 14 0 107349540 107349 0 -TCGA-A1-A0SB-01 15 0 102531392 102531 0 -TCGA-A1-A0SB-01 16 0 90354753 90354 0 -TCGA-A1-A0SB-01 17 0 24000000 24000 0 -TCGA-A1-A0SB-01 17 24000000 81195210 57195 0 -TCGA-A1-A0SB-01 18 0 78077248 78077 0 -TCGA-A1-A0SB-01 19 0 59128983 59128 0 -TCGA-A1-A0SB-01 20 0 63025520 63025 0 -TCGA-A1-A0SB-01 21 0 48129895 48129 0 -TCGA-A1-A0SB-01 22 0 51304566 51304 0 -TCGA-A1-A0SB-01 X 0 155270560 155270 0 -TCGA-A1-A0SB-01 Y 0 59373566 59373 0 -TCGA-A1-A0SB-01 1 0 249250621 249250 0 -TCGA-A1-A0SB-01 2 0 243199373 243199 0 -TCGA-A1-A0SB-01 3 0 91000000 91000 0 -TCGA-A1-A0SB-01 3 91000000 198022430 107022 -0.9 -TCGA-A1-A0SB-01 4 0 191154276 191154 0 -TCGA-A1-A0SD-01 5 0 180915260 180915 0 -TCGA-A1-A0SD-01 6 0 171115067 171115 0 - -TCGA-A1-A0SD-01 7 0 159138663 159138 0 -TCGA-A1-A0SD-01 8 0 146364022 146364 0 -TCGA-A1-A0SD-01 9 0 141213431 141213 0 -TCGA-A1-A0SD-01 10 0 135534747 135534 0 -TCGA-A1-A0SD-01 11 0 135006516 135006 0 -TCGA-A1-A0SD-01 12 0 133851895 133851 0 -TCGA-A1-A0SD-01 13 0 115169878 115169 0 -TCGA-A1-A0SD-01 14 0 107349540 107349 0 -TCGA-A1-A0SD-01 15 0 102531392 102531 0 -TCGA-A1-A0SD-01 16 0 90354753 90354 0 -TCGA-A1-A0SD-01 17 0 24000000 24000 0 -TCGA-A1-A0SD-01 17 24000000 81195210 57195 0 -TCGA-A1-A0SD-01 18 0 78077248 78077 0 -TCGA-A1-A0SD-01 19 0 59128983 59128 0 -TCGA-A1-A0SD-01 20 0 63025520 63025 0 -TCGA-A1-A0SD-01 21 0 48129895 48129 0 -TCGA-A1-A0SD-01 22 0 51304566 51304 0 -TCGA-A1-A0SD-01 X 0 155270560 155270 0 -TCGA-A1-A0SD-01 Y 0 59373566 59373 0 diff --git a/core/src/test/scripts/test_data/data_seg_end_before_start.seg b/core/src/test/scripts/test_data/data_seg_end_before_start.seg deleted file mode 100644 index 8fa19a88348..00000000000 --- a/core/src/test/scripts/test_data/data_seg_end_before_start.seg +++ /dev/null @@ -1,53 +0,0 @@ -ID chrom loc.start loc.end num.mark seg.mean -TCGA-A1-A0SB-01 1 0 249250621 249250 0 -TCGA-A1-A0SB-01 2 0 243199373 243199 0 -TCGA-A1-A0SB-01 3 0 91000000 91000 0 -TCGA-A1-A0SB-01 3 91000000 198022430 107022 -0.9 -TCGA-A1-A0SB-01 4 0 191154276 191154 0 -TCGA-A1-A0SB-01 5 0 180915260 180915 0 -TCGA-A1-A0SB-01 6 0 171115067 171115 0 -TCGA-A1-A0SB-01 7 0 159138663 159138 0 -TCGA-A1-A0SB-01 8 0 146364022 146364 0 -TCGA-A1-A0SB-01 9 141213431 0 141213 0 -TCGA-A1-A0SB-01 10 0 135534747 135534 0 -TCGA-A1-A0SB-01 11 0 135006516 135006 0 -TCGA-A1-A0SB-01 12 0 133851895 133851 0 -TCGA-A1-A0SB-01 13 0 115169878 115169 0 -TCGA-A1-A0SB-01 14 0 107349540 107349 0 -TCGA-A1-A0SB-01 15 0 102531392 102531 0 -TCGA-A1-A0SB-01 16 0 90354753 90354 0 -TCGA-A1-A0SB-01 17 0 24000000 24000 0 -TCGA-A1-A0SB-01 17 24000000 81195210 57195 0 -TCGA-A1-A0SB-01 18 0 78077248 78077 0 -TCGA-A1-A0SB-01 19 0 59128983 59128 0 -TCGA-A1-A0SB-01 20 0 63025520 63025 0 -TCGA-A1-A0SB-01 21 0 48129895 48129 0 -TCGA-A1-A0SB-01 22 0 51304566 51304 0 -TCGA-A1-A0SB-01 X 0 155270560 155270 0 -TCGA-A1-A0SB-01 Y 0 59373566 59373 0 -TCGA-A1-A0SB-01 1 0 249250621 249250 0 -TCGA-A1-A0SB-01 2 0 243199373 243199 0 -TCGA-A1-A0SB-01 3 0 91000000 91000 0 -TCGA-A1-A0SB-01 3 91000000 91000000 107022 -0.9 -TCGA-A1-A0SB-01 4 0 191154276 191154 0 -TCGA-A1-A0SD-01 5 0 180915260 180915 0 -TCGA-A1-A0SD-01 6 0 171115067 171115 0 -TCGA-A1-A0SD-01 7 0 159138663 159138 0 -TCGA-A1-A0SD-01 8 0 146364022 146364 0 -TCGA-A1-A0SD-01 9 0 141213431 141213 0 -TCGA-A1-A0SD-01 10 0 135534747 135534 0 -TCGA-A1-A0SD-01 11 0 135006516 135006 0 -TCGA-A1-A0SD-01 12 0 133851895 133851 0 -TCGA-A1-A0SD-01 13 0 115169878 115169 0 -TCGA-A1-A0SD-01 14 0 107349540 107349 0 -TCGA-A1-A0SD-01 15 0 102531392 102531 0 -TCGA-A1-A0SD-01 16 0 90354753 90354 0 -TCGA-A1-A0SD-01 17 0 24000000 24000 0 -TCGA-A1-A0SD-01 17 24000000 81195210 57195 0 -TCGA-A1-A0SD-01 18 0 78077248 78077 0 -TCGA-A1-A0SD-01 19 0 59128983 59128 0 -TCGA-A1-A0SD-01 20 0 63025520 63025 0 -TCGA-A1-A0SD-01 21 0 48129895 48129 0 -TCGA-A1-A0SD-01 22 0 51304566 51304 0 -TCGA-A1-A0SD-01 X 0 155270560 155270 0 -TCGA-A1-A0SD-01 Y 0 59373566 59373 0 diff --git a/core/src/test/scripts/test_data/data_seg_invalid_hg18.seg b/core/src/test/scripts/test_data/data_seg_invalid_hg18.seg deleted file mode 100644 index d324aa34555..00000000000 --- a/core/src/test/scripts/test_data/data_seg_invalid_hg18.seg +++ /dev/null @@ -1,3 +0,0 @@ -ID chrom loc.start loc.end num.mark seg.mean -TCGA-A1-A0SB-01 1 58953 59871 1 -0.111 -TCGA-A1-A0SB-01 19 59000000 63811651 1 -0.1368 diff --git a/core/src/test/scripts/test_data/data_seg_nonsense_values.seg b/core/src/test/scripts/test_data/data_seg_nonsense_values.seg deleted file mode 100644 index d3065491269..00000000000 --- a/core/src/test/scripts/test_data/data_seg_nonsense_values.seg +++ /dev/null @@ -1,54 +0,0 @@ -ID chrom loc.start loc.end num.mark seg.mean -TCGA-A1-A0SB-01 1 0 249250621 249250 0 -TCGA-A1-A0SB-01 2 0 243199373 243199 0 -TCGA-A1-A0SB-01 3 0 91000000 91000 0 -TCGA-A1-A0SB-01 3 91000000 198022430 107022 -0.9 -TCGA-A1-A0SB-01 4 0 191154276 191154 0 -TCGA-A1-A0SB-01 5 0 180915260 180915 0 -TCGA-A1-A0SB-01 6 0 171115067 171115 0 -TCGA-A1-A0SB-01 7 0 159138663 159138 0 -TCGA-A1-A0SB-01 8 0 146364022 146364 0 -TCGA-A1-A0SB-01 9 0 141213431 141213 0 -TCGA-A1-A0SB-01 10 0 135534747 135534 0 -TCGA-A1-A0SB-01 11 0 135006516 135006 0 -TCGA-A1-A0SB-01 12 0 133851895 133851 0 -TCGA-A1-A0SB-01 13 0 115169878 115169 0 -TCGA-A1-A0SB-01 14 0 107349540 107349 0 -TCGA-A1-A0SB-01 15 0 102531392 102531 0 -TCGA-A1-A0SB-01 16 0 90354753 90354 0 -TCGA-A1-A0SB-01 17 0 24000000 24000 0 -TCGA-A1-A0SB-01 17 24000000 81195210 57195 0 -TCGA-A1-A0SB-01 18 0 78077248 78077 0 -TCGA-A1-A0SB-01 19 0 59128983 59128 0 -TCGA-A1-A0SB-01 20 0 63025520 63025 0 -TCGA-A1-A0SB-01 21 0 48129895 48129 0 -TCGA-A1-A0SB-01 22 0 51304566 51304 0 -TCGA-A1-A0SB-01 X 0 155270560 155270 0 -TCGA-A1-A0SB-01 Y 0 59373566 59373 0 -TCGA-A1-A0SB-01 M 3.5 16571 16 4j -TCGA-A1-A0SB-01 1 0 249250621 249250 0 -TCGA-A1-A0SB-01 2 0 243199373 243199 0 -TCGA-A1-A0SB-01 3 0 91000000 91000 0 -TCGA-A1-A0SB-01 3 91000000 198022430 107022 -0.9 -TCGA-A1-A0SB-01 4 0 191154276 191154 0 -TCGA-A1-A0SD-01 5 0 180915260 180915 0 -TCGA-A1-A0SD-01 6 0 171115067 171115 0 -TCGA-A1-A0SD-01 7 0 159138663 159138 0 -TCGA-A1-A0SD-01 8 0 146364022 146364 0 -TCGA-A1-A0SD-01 9 0 141213431 141213 0 -TCGA-A1-A0SD-01 10 0 135534747 135534 0 -TCGA-A1-A0SD-01 11 0 135006516 135006 0 -TCGA-A1-A0SD-01 12 0 133851895 133851 0 -TCGA-A1-A0SD-01 13 0 115169878 115169 0 -TCGA-A1-A0SD-01 14 0 107349540 107349 0 -TCGA-A1-A0SD-01 15 0 102531392 102531 0 -TCGA-A1-A0SD-01 16 0 90354753 90354 0 -TCGA-A1-A0SD-01 17 0 24000000 24000 0 -TCGA-A1-A0SD-01 17 24000000 81195210 57195 0 -TCGA-A1-A0SD-01 18 0 78077248 78077 0 -TCGA-A1-A0SD-01 19 0 59128983 59128 0 -TCGA-A1-A0SD-01 20 0 63025520 63025 0 -TCGA-A1-A0SD-01 21 0 48129895 48129 0 -TCGA-A1-A0SD-01 22 0 51304566 51304 0 -TCGA-A1-A0SD-01 X 0 155270560 155270 0 -TCGA-A1-A0SD-01 Y 0 59373566 59373 0 diff --git a/core/src/test/scripts/test_data/data_seg_out_of_bounds.seg b/core/src/test/scripts/test_data/data_seg_out_of_bounds.seg deleted file mode 100644 index b4a753604b4..00000000000 --- a/core/src/test/scripts/test_data/data_seg_out_of_bounds.seg +++ /dev/null @@ -1,53 +0,0 @@ -ID chrom loc.start loc.end num.mark seg.mean -TCGA-A1-A0SB-01 1 0 249250621 249250 0 -TCGA-A1-A0SB-01 2 0 243199373 243199 0 -TCGA-A1-A0SB-01 3 0 91000000 91000 0 -TCGA-A1-A0SB-01 3 91000000 198022430 107022 -0.9 -TCGA-A1-A0SB-01 4 0 191154276 191154 0 -TCGA-A1-A0SB-01 5 0 180915260 180915 0 -TCGA-A1-A0SB-01 6 0 171115067 171115 0 -TCGA-A1-A0SB-01 7 0 159138663 159138 0 -TCGA-A1-A0SB-01 8 0 146364022 146364 0 -TCGA-A1-A0SB-01 9 0 141213431 141213 0 -TCGA-A1-A0SB-01 10 0 135534747 135534 0 -TCGA-A1-A0SB-01 11 0 135006516 135006 0 -TCGA-A1-A0SB-01 12 0 133851895 133851 0 -TCGA-A1-A0SB-01 13 0 115169878 115169 0 -TCGA-A1-A0SB-01 14 0 107349540 107349 0 -TCGA-A1-A0SB-01 15 0 102531392 102531 0 -TCGA-A1-A0SB-01 16 0 90354753 90354 0 -TCGA-A1-A0SB-01 17 0 24000000 24000 0 -TCGA-A1-A0SB-01 17 24000000 81195210 57195 0 -TCGA-A1-A0SB-01 18 0 78077248 78077 0 -TCGA-A1-A0SB-01 19 0 59128983 59128 0 -TCGA-A1-A0SB-01 20 0 63025520 63025 0 -TCGA-A1-A0SB-01 21 0 48129895 48129 0 -TCGA-A1-A0SB-01 22 0 51304566 51304 0 -TCGA-A1-A0SB-01 X 0 155270560 155270 0 -TCGA-A1-A0SB-01 Y 0 59373566 59373 0 -TCGA-A1-A0SB-01 1 0 249250621 249250 0 -TCGA-A1-A0SB-01 2 0 243199373 243199 0 -TCGA-A1-A0SB-01 3 0 91000000 91000 0 -TCGA-A1-A0SB-01 3 91000000 198022430 107022 -0.9 -TCGA-A1-A0SB-01 4 0 191154276 191154 0 -TCGA-A1-A0SD-01 5 0 180915260 180915 0 -TCGA-A1-A0SD-01 6 0 171115067 171115 0 -TCGA-A1-A0SD-01 7 0 159138663 159138 0 -TCGA-A1-A0SD-01 8 -1 146364022 146364 0 -TCGA-A1-A0SD-01 9 0 141213431 141213 0 -TCGA-A1-A0SD-01 10 0 135534747 135534 0 -TCGA-A1-A0SD-01 11 0 135006516 135006 0 -TCGA-A1-A0SD-01 12 0 133851895 133851 0 -TCGA-A1-A0SD-01 13 0 115169879 115169 0 -TCGA-A1-A0SD-01 14 0 107349540 107349 0 -TCGA-A1-A0SD-01 15 0 102531392 102531 0 -TCGA-A1-A0SD-01 16 0 90354753 90354 0 -TCGA-A1-A0SD-01 17 0 24000000 24000 0 -TCGA-A1-A0SD-01 17 24000000 81195210 57195 0 -TCGA-A1-A0SD-01 18 0 78077248 78077 0 -TCGA-A1-A0SD-01 19 0 59128983 59128 0 -TCGA-A1-A0SD-01 20 0 63025520 63025 0 -TCGA-A1-A0SD-01 21 0 48129895 48129 0 -TCGA-A1-A0SD-01 22 0 51304566 51304 0 -TCGA-A1-A0SD-01 X 0 155270560 155270 0 -TCGA-A1-A0SD-01 Y 0 59373566 59373 0 diff --git a/core/src/test/scripts/test_data/data_seg_valid.seg b/core/src/test/scripts/test_data/data_seg_valid.seg deleted file mode 100644 index 10e621381b1..00000000000 --- a/core/src/test/scripts/test_data/data_seg_valid.seg +++ /dev/null @@ -1,54 +0,0 @@ -ID chrom loc.start loc.end num.mark seg.mean -TCGA-A1-A0SB-01 1 0 249250621 249250 0 -TCGA-A1-A0SB-01 2 0 243199373 243199 0 -TCGA-A1-A0SB-01 3 0 91000000 91000 0 -TCGA-A1-A0SB-01 3 91000000 198022430 107022 -0.9 -TCGA-A1-A0SB-01 4 0 191154276 191154 0 -TCGA-A1-A0SB-01 5 0 180915260 180915 0 -TCGA-A1-A0SB-01 6 0 171115067 0 9001 -TCGA-A1-A0SB-01 7 0 159138663 159138 0 -TCGA-A1-A0SB-01 8 0 146364022 146364 0 -TCGA-A1-A0SB-01 9 0 141213431 141213 0 -TCGA-A1-A0SB-01 10 0 135534747 135534 0 -TCGA-A1-A0SB-01 11 0 135006516 135006 0 -TCGA-A1-A0SB-01 12 0 133851895 133851 0 -TCGA-A1-A0SB-01 13 0 115169878 115169 0 -TCGA-A1-A0SB-01 14 0 107349540 107349 0 -TCGA-A1-A0SB-01 15 0 102531392 102531 0 -TCGA-A1-A0SB-01 16 0 90354753 90354 0 -TCGA-A1-A0SB-01 17 0 24000000 24000 0 -TCGA-A1-A0SB-01 17 24000000 81195210 57195 0 -TCGA-A1-A0SB-01 18 0 78077248 78077 0 -TCGA-A1-A0SB-01 19 0 59128983 59128 0 -TCGA-A1-A0SB-01 20 0 63025520 63025 0 -TCGA-A1-A0SB-01 21 0 48129895 48129 0 -TCGA-A1-A0SB-01 22 0 51304566 51304 0 -TCGA-A1-A0SB-01 X 0 155270560 155270 0 -TCGA-A1-A0SB-01 23 0 155270560 155270 0 -TCGA-A1-A0SB-01 Y 0 59373566 59373 0 -TCGA-A1-A0SB-01 1 0 249250621 249250 0 -TCGA-A1-A0SB-01 2 0 243199373 243199 0 -TCGA-A1-A0SB-01 3 0 91000000 91000 0 -TCGA-A1-A0SB-01 3 91000000 198022430 107022 -0.9 -TCGA-A1-A0SB-01 4 0 191154276 191154 0 -TCGA-A1-A0SD-01 5 0 180915260 180915 0 -TCGA-A1-A0SD-01 6 0 171115067 171115 0 -TCGA-A1-A0SD-01 7 0 159138663 159138 0 -TCGA-A1-A0SD-01 8 0 146364022 146364 0 -TCGA-A1-A0SD-01 9 0 141213431 141213 0 -TCGA-A1-A0SD-01 10 0 135534747 135534 0 -TCGA-A1-A0SD-01 11 0 135006516 135006 0 -TCGA-A1-A0SD-01 12 0 133851895 133851 0 -TCGA-A1-A0SD-01 13 0 115169878 115169 0 -TCGA-A1-A0SD-01 14 0 107349540 107349 0 -TCGA-A1-A0SD-01 15 0 102531392 102531 0 -TCGA-A1-A0SD-01 16 0 90354753 90354 0 -TCGA-A1-A0SD-01 17 0 24000000 24000 0 -TCGA-A1-A0SD-01 17 24000000 81195210 57195 0 -TCGA-A1-A0SD-01 18 0 78077248 78077 0 -TCGA-A1-A0SD-01 19 0 59128983 59128 0 -TCGA-A1-A0SD-01 20 0 63025520 63025 0 -TCGA-A1-A0SD-01 21 0 48129895 48129 0 -TCGA-A1-A0SD-01 22 0 51304566 51304 0 -TCGA-A1-A0SD-01 X 0 155270560 155270 0 -TCGA-A1-A0SD-01 Y 0 59373566 59373 0 diff --git a/core/src/test/scripts/test_data/data_seg_wrong_order.txt b/core/src/test/scripts/test_data/data_seg_wrong_order.txt deleted file mode 100644 index afe87108d39..00000000000 --- a/core/src/test/scripts/test_data/data_seg_wrong_order.txt +++ /dev/null @@ -1,50 +0,0 @@ -chrom ID loc.start loc.end num.mark seg.mean -TEST-PAT1-SAMPLE1 1 13684348 13833633 17096 1.16 -TEST-PAT1-SAMPLE1 1 13833728 15413875 17096 -1.57 -TEST-PAT1-SAMPLE1 1 15416808 16121303 17096 1.32 -TEST-PAT1-SAMPLE1 1 16124160 16764830 17096 1.16 -TEST-PAT1-SAMPLE1 1 16769801 18101891 17096 1.09 -TEST-PAT1-SAMPLE1 1 18104300 18657376 17096 0.7 -TEST-PAT1-SAMPLE1 1 18658403 25343371 17096 -0.2 -TEST-PAT1-SAMPLE1 1 25346379 27014651 17096 -0.52 -TEST-PAT1-SAMPLE1 1 27021371 27182923 17096 1.76 -TEST-PAT1-SAMPLE1 1 27182944 27339665 17096 -1.58 -TEST-PAT1-SAMPLE1 1 27340606 29923280 17096 0.34 -TEST-PAT1-SAMPLE1 2 13684348 13833633 17096 1.15 -TEST-PAT1-SAMPLE1 2 13833728 15413875 17096 -1.38 -TEST-PAT1-SAMPLE1 2 15416808 16121303 17096 1.72 -TEST-PAT1-SAMPLE1 2 16124160 16764830 17096 0.81 -TEST-PAT1-SAMPLE1 2 16769801 18101891 17096 1.89 -TEST-PAT1-SAMPLE1 2 18104300 18657376 17096 -0.14 -TEST-PAT1-SAMPLE1 2 18658403 25343371 17096 0.61 -TEST-PAT1-SAMPLE1 2 25346379 27014651 17096 1.98 -TEST-PAT1-SAMPLE1 2 27021371 27182923 17096 1.61 -TEST-PAT1-SAMPLE1 2 27182944 27339665 17096 -1.09 -TEST-PAT1-SAMPLE1 2 27340606 29923280 17096 -0.91 -TEST-PAT1-SAMPLE1 3 13684348 13833633 17096 1.31 -TEST-PAT1-SAMPLE1 3 13833728 15413875 17096 1.85 -TEST-PAT1-SAMPLE1 3 15416808 16121303 17096 -1.72 -TEST-PAT1-SAMPLE1 3 16124160 16764830 17096 0.87 -TEST-PAT1-SAMPLE1 3 16769801 18101891 17096 -1.61 -TEST-PAT1-SAMPLE1 3 18104300 18657376 17096 0.1 -TEST-PAT1-SAMPLE1 3 18658403 25343371 17096 0.35 -TEST-PAT1-SAMPLE1 3 25346379 27014651 17096 -0.58 -TEST-PAT1-SAMPLE1 3 27021371 27182923 17096 0.75 -TEST-PAT1-SAMPLE1 3 27182944 27339665 17096 1.86 -TEST-PAT1-SAMPLE1 3 27340606 29923280 17096 -0.21 -TEST-PAT1-SAMPLE1 4 13684348 13833633 17096 1.27 -TEST-PAT1-SAMPLE1 4 13833728 15413875 17096 0.36 -TEST-PAT1-SAMPLE1 4 15416808 16121303 17096 0.38 -TEST-PAT1-SAMPLE1 4 16124160 16764830 17096 1.67 -TEST-PAT1-SAMPLE1 4 16769801 18101891 17096 -0.84 -TEST-PAT1-SAMPLE1 4 18104300 18657376 17096 1.15 -TEST-PAT1-SAMPLE1 4 18658403 25343371 17096 0.9 -TEST-PAT1-SAMPLE1 4 25346379 27014651 17096 0.85 -TEST-PAT1-SAMPLE1 4 27021371 27182923 17096 -1.83 -TEST-PAT1-SAMPLE1 4 27182944 27339665 17096 -0.06 -TEST-PAT1-SAMPLE1 4 27340606 29923280 17096 1.82 -TEST-PAT1-SAMPLE1 5 13684348 13833633 17096 -0.21 -TEST-PAT1-SAMPLE1 5 13833728 15413875 17096 -0.3 -TEST-PAT1-SAMPLE1 5 15416808 16121303 17096 1.11 -TEST-PAT1-SAMPLE1 5 16124160 16764830 17096 1.8 -TEST-PAT1-SAMPLE1 5 16769801 18101891 17096 1.65 diff --git a/core/src/test/scripts/test_data/data_structural_variants_duplicate_entry.txt b/core/src/test/scripts/test_data/data_structural_variants_duplicate_entry.txt deleted file mode 100644 index 944b7b45cce..00000000000 --- a/core/src/test/scripts/test_data/data_structural_variants_duplicate_entry.txt +++ /dev/null @@ -1,9 +0,0 @@ -Sample_Id Site1_Entrez_Gene_Id Site1_Hugo_Symbol Site1_Ensembl_Transcript_Id Site1_Exon Site1_Chromosome Site1_Position Site1_Description Site2_Entrez_Gene_Id Site2_Hugo_Symbol Site2_Ensembl_Transcript_Id Site2_Exon Site2_Chromosome Site2_Position Site2_Description Site2_Effect_On_Frame NCBI_Build DNA_Support RNA_Support Normal_Read_Count Tumor_Read_Count Normal_Variant_Count Tumor_Variant_Count Normal_Paired_End_Read_Count Tumor_Paired_End_Read_Count Normal_Split_Read_Count Tumor_Split_Read_Count Annotation Breakpoint_Type Center Connection_Type Event_Info Class SV_Length Comments External_Annotation cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation SV_Status MyNamespace.column1 MyNamespace.column2 -TCGA-A2-A04P-01 NA KIAA1549 ENST00000242365 15 7 138536968 KIAA1549-BRAF.K16B10.COSF509_1 NA BRAF ENST00000442448 10 7 140482957 KIAA1549-BRAF.K16B10.COSF509_2 NA GRCh37 no yes NA 1000 NA 900 NA NA NA NA KIAA1549-BRAF.K16B10.COSF509 NA NA NA Fusion NA NA Gain-of-Function COSMIC:COSF509 NA NA NA NA SOMATIC -TCGA-A2-A04P-01 NA NCOA4 ENST00000242365 7 10 51582939 NCOA4-RET.N7R12_1 NA RET ENST00000340058 12 10 43612031 NCOA4-RET.N7R12_2 NA GRCh37 no yes NA 1001 NA 800 NA NA NA NA NCOA4-RET.N7R1 NA NA NA Fusion NA NA Gain-of-Function NA NA NA NA NA SOMATIC -TCGA-A2-A04P-01 NA EML4 ENST00000318522 6 2 42492091 EML4-ALK.E6bA20.AB374362_1 NA ALK ENST00000389048 20 2 29446394 EML4-ALK.E6bA20.AB374362_2 NA GRCh37 no yes NA 1002 NA 700 NA NA NA NA EML4-ALK.E6bA20.AB374362 NA NA NA Fusion NA NA Gain-of-Function GENBANK:AB374362 NA NA NA NA SOMATIC -TCGA-A2-A04P-01 NA TMPRSS2 ENST00000332149 1 21 42880007 TMPRSS2-ERG.T1E2.COSF23.1_1 NA ERG ENST00000442448 2 21 39956869 TMPRSS2-ERG.T1E2.COSF23.1_2 NA GRCh37 no yes NA 1003 NA 600 NA NA NA NA TMPRSS2-ERG.T1E2.COSF23.1 NA NA NA Fusion NA NA Gain-of-Function COSMIC:COSF23 NA NA NA NA SOMATIC -TCGA-A2-A04P-01 NA EGFR ENST00000275493 3 7 55087058 EGFR-EGFR.E1E8.DelPositive.1_1 NA EGFR ENST00000275493 8 7 55223522 EGFR-EGFR.E1E8.DelPositive.1_2 NA GRCh37 no yes NA 1004 NA 500 NA NA NA NA EGFR-EGFR.E1E8.DelPositive NA NA NA Fusion NA NA NA NA NA NA NA NA SOMATIC -TCGA-A2-A04P-01 NA ALK ENST00000389048 11 2 29497964 ALK-PTPN3.A11P3_1 NA PTPN3 ENST00000374541 3 9 112219679 ALK-PTPN3.A11P3_2 NA GRCh37 no yes NA 1005 NA 400 NA NA NA NA ALK-PTPN3.A11P3 NA NA NA Fusion NA NA NA NA NA NA NA NA SOMATIC -TCGA-A1-A0SB-01 NA EML4 ENST00000318522 13 2 42522656 EML4-ALK.E13A20.AB462411_1 NA ALK ENST00000389048 2 2 29446335 EML4-ALK.E13A20.AB462411_2 NA GRCh37 no yes NA 1006 NA 300 NA NA NA NA EML4-ALK.E13A20 NA NA NA Fusion NA NA Gain-of-Function GENBANK:AB462411 NA NA NA NA SOMATIC -TCGA-A2-A04P-01 NA EML4 ENST00000318522 6 2 42492091 EML4-ALK.E6bA20.AB374362_1 NA ALK ENST00000389048 20 2 29446394 EML4-ALK.E6bA20.AB374362_2 NA GRCh37 no yes NA 1002 NA 700 NA NA NA NA EML4-ALK.E6bA20.AB374362 NA NA NA Fusion NA NA Gain-of-Function GENBANK:AB374362 NA NA NA NA SOMATIC diff --git a/core/src/test/scripts/test_data/data_structural_variants_missing_columns.txt b/core/src/test/scripts/test_data/data_structural_variants_missing_columns.txt deleted file mode 100644 index 25c3ae83377..00000000000 --- a/core/src/test/scripts/test_data/data_structural_variants_missing_columns.txt +++ /dev/null @@ -1,8 +0,0 @@ -Sample_Id Site1_Entrez_Gene_Id Site1_Hugo_Symbol Site1_Chromosome Site1_Position Site1_Description Site2_Chromosome Site2_Position Site2_Description Site2_Effect_On_Frame NCBI_Build DNA_Support RNA_Support Normal_Read_Count Tumor_Read_Count Normal_Variant_Count Tumor_Variant_Count Normal_Paired_End_Read_Count Tumor_Paired_End_Read_Count Normal_Split_Read_Count Tumor_Split_Read_Count Annotation Breakpoint_Type Center Connection_Type Event_Info Class SV_Length Comments External_Annotation cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -TCGA-A2-A04P-01 NA KIAA1549 7 138536968 KIAA1549-BRAF.K16B10.COSF509_1 7 140482957 KIAA1549-BRAF.K16B10.COSF509_2 NA GRCh37 no yes NA 1000 NA 900 NA NA NA NA KIAA1549-BRAF.K16B10.COSF509 NA NA NA Fusion NA NA Gain-of-Function COSMIC:COSF509 NA NA NA NA -TCGA-A2-A04P-01 NA NCOA4 10 51582939 NCOA4-RET.N7R12_1 10 43612031 NCOA4-RET.N7R12_2 NA GRCh37 no yes NA 1001 NA 800 NA NA NA NA NCOA4-RET.N7R1 NA NA NA Fusion NA NA Gain-of-Function NA NA NA NA NA -TCGA-A2-A04P-01 NA EML4 2 42492091 EML4-ALK.E6bA20.AB374362_1 2 29446394 EML4-ALK.E6bA20.AB374362_2 NA GRCh37 no yes NA 1002 NA 700 NA NA NA NA EML4-ALK.E6bA20.AB374362 NA NA NA Fusion NA NA Gain-of-Function GENBANK:AB374362 NA NA NA NA -TCGA-A2-A04P-01 NA TMPRSS2 21 42880007 TMPRSS2-ERG.T1E2.COSF23.1_1 21 39956869 TMPRSS2-ERG.T1E2.COSF23.1_2 NA GRCh37 no yes NA 1003 NA 600 NA NA NA NA TMPRSS2-ERG.T1E2.COSF23.1 NA NA NA Fusion NA NA Gain-of-Function COSMIC:COSF23 NA NA NA NA -TCGA-A2-A04P-01 NA EGFR 7 55087058 EGFR-EGFR.E1E8.DelPositive.1_1 7 55223522 EGFR-EGFR.E1E8.DelPositive.1_2 NA GRCh37 no yes NA 1004 NA 500 NA NA NA NA EGFR-EGFR.E1E8.DelPositive NA NA NA Fusion NA NA NA NA NA NA NA NA -TCGA-A2-A04P-01 NA ALK 2 29497964 ALK-PTPN3.A11P3_1 9 112219679 ALK-PTPN3.A11P3_2 NA GRCh37 no yes NA 1005 NA 400 NA NA NA NA ALK-PTPN3.A11P3 NA NA NA Fusion NA NA NA NA NA NA NA NA -TCGA-A1-A0SB-01 NA EML4 2 42522656 EML4-ALK.E13A20.AB462411_1 2 29446335 EML4-ALK.E13A20.AB462411_2 NA GRCh37 no yes NA 1006 NA 300 NA NA NA NA EML4-ALK.E13A20 NA NA NA Fusion NA NA Gain-of-Function GENBANK:AB462411 NA NA NA NA diff --git a/core/src/test/scripts/test_data/data_structural_variants_missing_values.txt b/core/src/test/scripts/test_data/data_structural_variants_missing_values.txt deleted file mode 100644 index ffe15ad4490..00000000000 --- a/core/src/test/scripts/test_data/data_structural_variants_missing_values.txt +++ /dev/null @@ -1,8 +0,0 @@ -Sample_Id Site1_Entrez_Gene_Id Site1_Hugo_Symbol Site1_Ensembl_Transcript_Id Site1_Region_Number Site1_Chromosome Site1_Position Site1_Description Site2_Entrez_Gene_Id Site2_Hugo_Symbol Site2_Ensembl_Transcript_Id Site2_Region_Number Site2_Chromosome Site2_Position Site2_Description Site2_Effect_On_Frame NCBI_Build DNA_Support RNA_Support Normal_Read_Count Tumor_Read_Count Normal_Variant_Count Tumor_Variant_Count Normal_Paired_End_Read_Count Tumor_Paired_End_Read_Count Normal_Split_Read_Count Tumor_Split_Read_Count Annotation Breakpoint_Type Center Connection_Type Event_Info Class SV_Length Comments External_Annotation cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation SV_Status MyNamespace.column1 MyNamespace.column2 -TCGA-A2-A04P-01 NA KIAA1549 ENST00000242365 15 7 138536968 KIAA1549-BRAF.K16B10.COSF509_1 NA BRAF 10 7 140482957 KIAA1549-BRAF.K16B10.COSF509_2 NA GRCh37 no yes NA 1000 NA 900 NA NA NA NA KIAA1549-BRAF.K16B10.COSF509 NA NA NA Fusion NA NA Gain-of-Function COSMIC:COSF509 NA NA NA NA SOMATIC -TCGA-A2-A04P-01 NA 7 10 51582939 NCOA4-RET.N7R12_1 NA ENST00000340058 12 10 43612031 NCOA4-RET.N7R12_2 NA GRCh37 no yes NA 1001 NA 800 NA NA NA NA NCOA4-RET.N7R1 NA NA NA Fusion NA NA Gain-of-Function NA NA NA NA NA -TCGA-A2-A04P-01 NA EML4 ENST00000318522 6 2 42492091 EML4-ALK.E6bA20.AB374362_1 NA ALK ENST00000389048 20 2 29446394 EML4-ALK.E6bA20.AB374362_2 NA GRCh37 no yes NA 1002 NA 700 NA NA NA NA EML4-ALK.E6bA20.AB374362 NA NA NA Fusion NA NA Gain-of-Function GENBANK:AB374362 NA NA NA NA SOMATIC -TCGA-A2-A04P-01 NA TMPRSS2 ENST00000332149 1 21 42880007 TMPRSS2-ERG.T1E2.COSF23.1_1 NA ERG ENST00000442448 2 21 39956869 TMPRSS2-ERG.T1E2.COSF23.1_2 NA GRCh37 no yes NA 1003 NA 600 NA NA NA NA TMPRSS2-ERG.T1E2.COSF23.1 NA NA NA Fusion NA NA Gain-of-Function COSMIC:COSF23 NA NA NA NA SOMATIC -TCGA-A2-A04P-01 NA EGFR ENST00000275493 7 55087058 EGFR-EGFR.E1E8.DelPositive.1_1 NA EGFR ENST00000275493 8 7 55223522 EGFR-EGFR.E1E8.DelPositive.1_2 NA GRCh37 no yes NA 1004 NA 500 NA NA NA NA EGFR-EGFR.E1E8.DelPositive NA NA NA Fusion NA NA NA NA NA NA NA NA SOMATIC -TCGA-A2-A04P-01 NA ALK ENST00000389048 11 2 29497964 ALK-PTPN3.A11P3_1 NA PTPN3 ENST00000374541 3 9 112219679 ALK-PTPN3.A11P3_2 NA GRCh37 no yes NA 1005 NA 400 NA NA NA NA ALK-PTPN3.A11P3 NA NA NA Fusion NA NA NA NA NA NA NA NA SOMATIC -TCGA-A1-A0SB-01 ENST00000318522 13 2 42522656 EML4-ALK.E13A20.AB462411_1 ENST00000389048 2 29446335 EML4-ALK.E13A20.AB462411_2 NA GRCh37 no yes NA 1006 NA 300 NA NA NA NA EML4-ALK.E13A20 NA NA NA Fusion NA NA Gain-of-Function GENBANK:AB462411 NA NA NA NA SOMATIC diff --git a/core/src/test/scripts/test_data/data_timeline_invalid_start_date.txt b/core/src/test/scripts/test_data/data_timeline_invalid_start_date.txt deleted file mode 100644 index 8d770442f4b..00000000000 --- a/core/src/test/scripts/test_data/data_timeline_invalid_start_date.txt +++ /dev/null @@ -1,4 +0,0 @@ -PATIENT_ID START_DATE STOP_DATE EVENT_TYPE -P-TEST-PATIENT 85 TREATMENT -P-TEST-PATIENT2 NA 85 TREATMENT -P-TEST-PATIENT2 17 85 TREATMENT diff --git a/core/src/test/scripts/test_data/data_unique_column_test.txt b/core/src/test/scripts/test_data/data_unique_column_test.txt deleted file mode 100644 index e1802031664..00000000000 --- a/core/src/test/scripts/test_data/data_unique_column_test.txt +++ /dev/null @@ -1,3 +0,0 @@ -id name TCGA-A1-A0SB-01 -ID1 name1 value1 -ID2 name1 value2 diff --git a/core/src/test/scripts/test_data/meta_study/invalid_pmid_values/meta_study.txt b/core/src/test/scripts/test_data/meta_study/invalid_pmid_values/meta_study.txt deleted file mode 100644 index 6e7f9f592bf..00000000000 --- a/core/src/test/scripts/test_data/meta_study/invalid_pmid_values/meta_study.txt +++ /dev/null @@ -1,9 +0,0 @@ -type_of_cancer: brca-es0 -cancer_study_identifier: study_es_0 -name: Test study es_0 -description: Test study es_0 -citation: Cell 2018 -pmid: 29625048, 29596782, 29622463A, 29617662 29625055, 29625050 -groups: PUBLIC;GDAC;SU2C-PI3K -add_global_case_list: true -tags_file: study_tags.yml diff --git a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/meta_cna_log2.txt b/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/meta_cna_log2.txt deleted file mode 100644 index 6af15cb4cb6..00000000000 --- a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/meta_cna_log2.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: LOG2-VALUE -stable_id: log2CNA -show_profile_in_analysis_tab: true -profile_description: Log2 copy-number values for each gene (from Affymetrix SNP6). -profile_name: Log2 copy-number values -data_filename: data_cna_log2.txt diff --git a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/meta_study.txt b/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/meta_study.txt deleted file mode 100644 index 38f4029220f..00000000000 --- a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/meta_study.txt +++ /dev/null @@ -1,9 +0,0 @@ -type_of_cancer: brca-es0 -cancer_study_identifier: study_es_0 -name: Test study es_0 -description: Test study es_0 -citation: Cell 2018 -pmid: 29625048,29596782,29622463,29617662,29625055,29625050 -groups: PUBLIC;GDAC;SU2C-PI3K -add_global_case_list: true -tags_file: study_tags.yml diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_absence_custom_annotation_columns_when_custom_values_columns.maf b/core/src/test/scripts/test_data/mutations/data_mutations_absence_custom_annotation_columns_when_custom_values_columns.maf deleted file mode 100644 index deea3018bc4..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_absence_custom_annotation_columns_when_custom_values_columns.maf +++ /dev/null @@ -1,4 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.pdb SWISSPROT cbp_driver cbp_driver_tiers -HSPG2 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 22078087 22078087 Missense_Mutation D820N neutral mutationassessor.org/?cm=msa&ty=f&p=PGBM_HUMAN&rb=814&re=869&var=D820N PGBM_HUMAN Putative_Passenger test1 -CSMD2 114784 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 34085156 34085156 Missense_Mutation V277I low mutationassessor.org/?cm=msa&ty=f&p=CSMD2_HUMAN&rb=202&re=303&var=V277I mutationassessor.org/pdb.php?prot=CSMD2_HUMAN&from=202&to=303&var=V277I CSMD2_HUMAN Putative_Driver test2 -CLSPN 63967 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 35989584 35989584 Missense_Mutation F628L mutationassessor.org/?cm=msa&ty=f&p=CLSPN_HUMAN&rb=601&re=800&var=F628L CLSPN_HUMAN Putative_Passenger test2 diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_absence_custom_values_columns_when_custom_annotation_columns.maf b/core/src/test/scripts/test_data/mutations/data_mutations_absence_custom_values_columns_when_custom_annotation_columns.maf deleted file mode 100644 index e8071969126..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_absence_custom_values_columns_when_custom_annotation_columns.maf +++ /dev/null @@ -1,4 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.pdb SWISSPROT cbp_driver_annotation cbp_driver_tiers_annotation -HSPG2 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 22078087 22078087 Missense_Mutation D820N neutral mutationassessor.org/?cm=msa&ty=f&p=PGBM_HUMAN&rb=814&re=869&var=D820N PGBM_HUMAN Passenger mutation test1 -CSMD2 114784 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 34085156 34085156 Missense_Mutation V277I low mutationassessor.org/?cm=msa&ty=f&p=CSMD2_HUMAN&rb=202&re=303&var=V277I mutationassessor.org/pdb.php?prot=CSMD2_HUMAN&from=202&to=303&var=V277I CSMD2_HUMAN Driver mutation test2 -CLSPN 63967 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 35989584 35989584 Missense_Mutation F628L mutationassessor.org/?cm=msa&ty=f&p=CLSPN_HUMAN&rb=601&re=800&var=F628L CLSPN_HUMAN Passenger mutation test2 diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_check_special_cases_allele.maf b/core/src/test/scripts/test_data/mutations/data_mutations_check_special_cases_allele.maf deleted file mode 100644 index 0a0fff863ab..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_check_special_cases_allele.maf +++ /dev/null @@ -1,7 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Consequence Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer t_ref_count t_alt_count n_ref_count n_alt_count HGVSc HGVSp HGVSp_Short Transcript_ID RefSeq Protein_position Codons Hotspot ALLELE_NUM n_depth ONCOTATOR_TRANSCRIPT_CHANGE_BEST_EFFECT MA:link.PDB Feature CLIN_SIG ONCOTATOR_DBSNP_RS Gene t_depth MA:FIS ONCOTATOR_REFSEQ_MRNA_ID_BEST_EFFECT ONCOTATOR_CODON_CHANGE_BEST_EFFECT DISTANCE SYMBOL_SOURCE ONCOTATOR_PROTEIN_POS_END Existing_variation SYMBOL AA_MAF HIGH_INF_POS ASN_MAF ONCOTATOR_VARIANT_CLASSIFICATION BIOTYPE MA:link.var AFR_MAF DOMAINS MOTIF_SCORE_CHANGE ONCOTATOR_UNIPROT_ENTRY_NAME ONCOTATOR_TRANSCRIPT_CHANGE Amino_acids ONCOTATOR_REFSEQ_PROT_ID_BEST_EFFECT EA_MAF Allele MA:FImpact cDNA_position ONCOTATOR_PROTEIN_POS_END_BEST_EFFECT ONCOTATOR_PROTEIN_CHANGE_BEST_EFFECT MA:link.MSA SIFT ONCOTATOR_GENE_SYMBOL_BEST_EFFECT INTRON ONCOTATOR_EXON_AFFECTED AMR_MAF ONCOTATOR_UNIPROT_ACCESSION_BEST_EFFECT ONCOTATOR_PROTEIN_POS_START CANONICAL MOTIF_NAME GMAF MOTIF_POS CDS_position ONCOTATOR_DBSNP_VAL_STATUS ONCOTATOR_COSMIC_OVERLAPPING MA:protein.change ONCOTATOR_REFSEQ_MRNA_ID ONCOTATOR_CODON_CHANGE ONCOTATOR_PROTEIN_CHANGE ONCOTATOR_VARIANT_CLASSIFICATION_BEST_EFFECT ONCOTATOR_EXON_AFFECTED_BEST_EFFECT ONCOTATOR_GENE_SYMBOL EUR_MAF Feature_type PolyPhen ONCOTATOR_UNIPROT_ENTRY_NAME_BEST_EFFECT ENSP ONCOTATOR_REFSEQ_PROT_ID CCDS EXON ONCOTATOR_PROTEIN_POS_START_BEST_EFFECT Exon_Number ONCOTATOR_UNIPROT_ACCESSION PUBMED -ZNF777 27153 genome.wustl.edu;unc.edu GRCh37 7 149129243 149129243 + missense_variant Missense_Mutation SNP G G G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10B-01D-A142-09 24 8 21 0 ENST00000247930.4:c.2120C>T p.Ser707Leu p.S707L ENST00000247930 NM_015694.2 707 tCg/tTg 0 1 . c.2120C>T getma.org/pdb.php?prot=ZN777_HUMAN&from=687&to=707&var=S707L ENST00000247930 ENSG00000196453 . 2.42 NM_015694 c.(2119-2121)TCG>TTG HGNC 707 ZNF777 Missense_Mutation protein_coding getma.org/?cm=var&var=hg19,7,149129243,G,A&fts=all Pfam_domain:PF00096,PROSITE_profiles:PS50157,SMART_domains:SM00355,Superfamily_domains:SSF57667 ZN777_HUMAN c.2120C>T S/L NP_056509 A medium 2444/3233 707 p.S707L getma.org/?cm=msa&ty=f&p=ZN777_HUMAN&rb=657&re=737&var=S707L deleterious(0.01) ZNF777 6 Q9ULD5 707 YES 2120/2496 S707L NM_015694 c.(2119-2121)TCG>TTG p.S707L Missense_Mutation 6 ZNF777 Transcript probably_damaging(0.999) ZN777_HUMAN ENSP00000247930 NP_056509 CCDS43675.1 6-Jun 707 6-Jun Q9ULD5 -MYB 4602 genome.wustl.edu GRCh37 6 135507043 135507044 + frameshift_variant Frame_Shift_Ins INS AAAAC AAAAC CAAAAT TCGA-A1-A0SB-01 TCGA-A1-A0SB-10B-01D-A142-09 36 4 50 0 ENST00000367814.4:c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 NM_001161659.1 9 ata/atAa 0 1 . c.26_27insA ENST00000341911 ENSG00000118513 . NM_001130173 c.(25-27)ATAfs HGNC 9 COSM1487247,COSM1487248 MYB Frame_Shift_Ins protein_coding MYB_HUMAN c.26_27insA NP_001123645 A 225-226/3672 9 p.I9fs MYB 2 P10242 9 YES 26-27/2286 NM_005375 c.(25-27)ATAfs p.I9fs Frame_Shift_Ins 2 MYB Transcript MYB_HUMAN ENSP00000339992 NP_005366 CCDS47481.1 16-Feb 9 16-Feb P10242 -SLC6A9 6536 genome.wustl.edu;unc.edu GRCh37 1 44476442 44476442 + missense_variant Missense_Mutation DEL C T T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10B-01D-A142-09 44 19 72 0 ENST00000360584.2:c.362G>A p.Gly121Asp p.G121D ENST00000360584 NM_201649.3 121 gGc/gAc 0 1 . c.362G>A getma.org/pdb.php?prot=SC6A9_HUMAN&from=100&to=635&var=G121D ENST00000360584 ENSG00000196517 . 3.83 NM_201649 c.(361-363)GGC>GAC HGNC 121 SLC6A9 Missense_Mutation protein_coding getma.org/?cm=var&var=hg19,1,44476442,C,T&fts=all Transmembrane_helices:Tmhmm,Prints_domain:PR00176,Pfam_domain:PF00209,PROSITE_profiles:PS50267 SC6A9_HUMAN c.362G>A G/D NP_964012 T high 554/2330 121 p.G121D getma.org/?cm=msa&ty=f&p=SC6A9_HUMAN&rb=100&re=635&var=G121D deleterious(0) SLC6A9 3 P48067 121 YES 362/2121 G121D NM_201649 c.(361-363)GGC>GAC p.G121D Missense_Mutation 3 SLC6A9 Transcript probably_damaging(1) SC6A9_HUMAN ENSP00000353791 NP_964012 CCDS41317.1 14-Mar 121 14-Mar P48067 -ZNF777 27153 genome.wustl.edu;unc.edu GRCh37 7 149129243 149129243 + missense_variant Missense_Mutation ONP GGGG GGGG GGGGG TCGA-A1-A0SB-01 TCGA-A1-A0SB-10B-01D-A142-09 24 8 21 0 ENST00000247930.4:c.2120C>T p.Ser707Leu p.S707L ENST00000247930 NM_015694.2 707 tCg/tTg 0 1 . c.2120C>T getma.org/pdb.php?prot=ZN777_HUMAN&from=687&to=707&var=S707L ENST00000247930 ENSG00000196453 . 2.42 NM_015694 c.(2119-2121)TCG>TTG HGNC 707 ZNF777 Missense_Mutation protein_coding getma.org/?cm=var&var=hg19,7,149129243,G,A&fts=all Pfam_domain:PF00096,PROSITE_profiles:PS50157,SMART_domains:SM00355,Superfamily_domains:SSF57667 ZN777_HUMAN c.2120C>T S/L NP_056509 A medium 2444/3233 707 p.S707L getma.org/?cm=msa&ty=f&p=ZN777_HUMAN&rb=657&re=737&var=S707L deleterious(0.01) ZNF777 6 Q9ULD5 707 YES 2120/2496 S707L NM_015694 c.(2119-2121)TCG>TTG p.S707L Missense_Mutation 6 ZNF777 Transcript probably_damaging(0.999) ZN777_HUMAN ENSP00000247930 NP_056509 CCDS43675.1 6-Jun 707 6-Jun Q9ULD5 -MYB 4602 genome.wustl.edu GRCh37 6 135507043 135507044 + frameshift_variant Frame_Shift_Ins INS G G CA TCGA-A1-A0SB-01 TCGA-A1-A0SB-10B-01D-A142-09 36 4 50 0 ENST00000367814.4:c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 NM_001161659.1 9 ata/atAa 0 1 . c.26_27insA ENST00000341911 ENSG00000118513 . NM_001130173 c.(25-27)ATAfs HGNC 9 COSM1487247,COSM1487248 MYB Frame_Shift_Ins protein_coding MYB_HUMAN c.26_27insA NP_001123645 A 225-226/3672 9 p.I9fs MYB 2 P10242 9 YES 26-27/2286 NM_005375 c.(25-27)ATAfs p.I9fs Frame_Shift_Ins 2 MYB Transcript MYB_HUMAN ENSP00000339992 NP_005366 CCDS47481.1 16-Feb 9 16-Feb P10242 -MYB 4602 genome.wustl.edu GRCh37 6 135507043 135507044 + frameshift_variant Frame_Shift_Ins INS CA CA G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10B-01D-A142-09 36 4 50 0 ENST00000367814.4:c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 NM_001161659.1 9 ata/atAa 0 1 . c.26_27insA ENST00000341911 ENSG00000118513 . NM_001130173 c.(25-27)ATAfs HGNC 9 COSM1487247,COSM1487248 MYB Frame_Shift_Ins protein_coding MYB_HUMAN c.26_27insA NP_001123645 A 225-226/3672 9 p.I9fs MYB 2 P10242 9 YES 26-27/2286 NM_005375 c.(25-27)ATAfs p.I9fs Frame_Shift_Ins 2 MYB Transcript MYB_HUMAN ENSP00000339992 NP_005366 CCDS47481.1 16-Feb 9 16-Feb P10242 diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_custom_tiers_column_more_than_50_characters.maf b/core/src/test/scripts/test_data/mutations/data_mutations_custom_tiers_column_more_than_50_characters.maf deleted file mode 100644 index 8a1b0401232..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_custom_tiers_column_more_than_50_characters.maf +++ /dev/null @@ -1,4 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.pdb SWISSPROT cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -HSPG2 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 22078087 22078087 Missense_Mutation D820N neutral mutationassessor.org/?cm=msa&ty=f&p=PGBM_HUMAN&rb=814&re=869&var=D820N PGBM_HUMAN Putative_Passenger Passenger mutation 012345678901234567890123456789012345678901234567890 test1 -CSMD2 114784 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 34085156 34085156 Missense_Mutation V277I low mutationassessor.org/?cm=msa&ty=f&p=CSMD2_HUMAN&rb=202&re=303&var=V277I mutationassessor.org/pdb.php?prot=CSMD2_HUMAN&from=202&to=303&var=V277I CSMD2_HUMAN Putative_Driver Driver mutation 01234567890123456789012345678901234567890123456789 test2 -CLSPN 63967 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 35989584 35989584 Missense_Mutation F628L mutationassessor.org/?cm=msa&ty=f&p=CLSPN_HUMAN&rb=601&re=800&var=F628L CLSPN_HUMAN Putative_Passenger Passenger mutation test2 test2 diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_empty_custom_annotation_fields.maf b/core/src/test/scripts/test_data/mutations/data_mutations_empty_custom_annotation_fields.maf deleted file mode 100644 index 3681b139153..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_empty_custom_annotation_fields.maf +++ /dev/null @@ -1,7 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.pdb SWISSPROT cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -HSPG2 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 22078087 22078087dwerg Missense_Mutation D820N neutral mutationassessor.org/?cm=msa&ty=f&p=PGBM_HUMAN&rb=814&re=869&var=D820N PGBM_HUMAN Putative_Passenger Passenger Mutation -CSMD2 114784 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 34085156 34085156 Missense_Mutation V277I low mutationassessor.org/?cm=msa&ty=f&p=CSMD2_HUMAN&rb=202&re=303&var=V277I mutationassessor.org/pdb.php?prot=CSMD2_HUMAN&from=202&to=303&var=V277I CSMD2_HUMAN Putative_Passenger Putative Mutation Tier 2 Tier 2 -CLSPN 63967 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 35989584 35989584 Missense_Mutation F628L mutationassessor.org/?cm=msa&ty=f&p=CLSPN_HUMAN&rb=601&re=800&var=F628L CLSPN_HUMAN Putative_Driver Driver Mutation Tier 3 -CSMD2 114784 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 34085156 34085156 Missense_Mutation V277I low mutationassessor.org/?cm=msa&ty=f&p=CSMD2_HUMAN&rb=202&re=303&var=V277I mutationassessor.org/pdb.php?prot=CSMD2_HUMAN&from=202&to=303&var=V277I CSMD2_HUMAN Putative_Passenger Putative Mutation Tier 2 Tier 2 -CLSPN 63967 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 35989584 35989584 Missense_Mutation F628L mutationassessor.org/?cm=msa&ty=f&p=CLSPN_HUMAN&rb=601&re=800&var=F628L CLSPN_HUMAN Putative_Driver Tier 3 Tier 3 -HSPG2 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 22078087 22078087dwerg Splice_Site D820N neutral mutationassessor.org/?cm=msa&ty=f&p=PGBM_HUMAN&rb=814&re=869&var=D820N PGBM_HUMAN Putative_Passenger Passenger Mutation Tier 1 diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_invalid_norm_samples.maf b/core/src/test/scripts/test_data/mutations/data_mutations_invalid_norm_samples.maf deleted file mode 100644 index f5e0c30b686..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_invalid_norm_samples.maf +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer ONCOTATOR_COSMIC_OVERLAPPING ONCOTATOR_DBSNP_RS ONCOTATOR_DBSNP_VAL_STATUS ONCOTATOR_VARIANT_CLASSIFICATION HGVSp_Short SWISSPROT ONCOTATOR_REFSEQ_MRNA_ID ONCOTATOR_REFSEQ_PROT_ID ONCOTATOR_UNIPROT_ENTRY_NAME ONCOTATOR_UNIPROT_ACCESSION ONCOTATOR_CODON_CHANGE ONCOTATOR_TRANSCRIPT_CHANGE ONCOTATOR_EXON_AFFECTED ONCOTATOR_PROTEIN_POS_START ONCOTATOR_PROTEIN_POS_END ONCOTATOR_VARIANT_CLASSIFICATION_BEST_EFFECT ONCOTATOR_PROTEIN_CHANGE_BEST_EFFECT ONCOTATOR_GENE_SYMBOL_BEST_EFFECT ONCOTATOR_REFSEQ_MRNA_ID_BEST_EFFECT ONCOTATOR_REFSEQ_PROT_ID_BEST_EFFECT ONCOTATOR_UNIPROT_ENTRY_NAME_BEST_EFFECT ONCOTATOR_UNIPROT_ACCESSION_BEST_EFFECT ONCOTATOR_CODON_CHANGE_BEST_EFFECT ONCOTATOR_TRANSCRIPT_CHANGE_BEST_EFFECT ONCOTATOR_EXON_AFFECTED_BEST_EFFECT ONCOTATOR_PROTEIN_POS_START_BEST_EFFECT ONCOTATOR_PROTEIN_POS_END_BEST_EFFECT MA:FImpact MA:FIS MA:protein.change MA:link.MSA MA:link.PDB MA:link.var chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU Protein_position amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU annotation_errors_WU -A1CF 29974 genome.wustl.edu 37 10 52573692 52573692 + Missense_Mutation SNP G G T novel unknown TCGA-B6-A0RS-01 TCGA-B6-A0RS-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.D424E Q9NQ94 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(1270-1272)GAC>GAA c.1272C>A 10 424 424 Missense_Mutation p.D432E A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(1294-1296)GAC>GAA c.1296C>A 12 432 432 neutral 0.345 D424E getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=298&re=497&var=D424E NA getma.org/?cm=var&var=hg19,10,52573692,G,T&fts=all 10 52573692 52573692 G T SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.1272 p.D424E 0.768 NULL superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595854 52595854 + Missense_Mutation SNP G G A novel unknown TCGA-BH-A0HP-01 TCGA-BH-A0HP-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.A195V Q9NQ94 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(583-585)GCG>GTG c.584C>T 6 195 195 Missense_Mutation p.A203V A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(607-609)GCG>GTG c.608C>T 8 203 203 medium 2.955 A195V getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=138&re=203&var=A195V getma.org/pdb.php?prot=A1CF_HUMAN&from=138&to=203&var=A195V getma.org/?cm=var&var=hg19,10,52595854,G,A&fts=all 10 52595854 52595854 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.584 p.A195V 1.000 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595937 52595937 + Silent SNP G G A novel unknown TCGA-BH-A18P-01 TCGA-BH-A18P-11 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.I167I Q9NQ94 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(499-501)ATC>ATT c.501C>T 6 167 167 Silent p.I175I A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(523-525)ATC>ATT c.525C>T 8 175 175 NA NA NA NA NA NA 10 52595937 52595937 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed silent c.501 p.I167 0.615 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A2M 2 genome.wustl.edu 37 12 9230409 9230409 + Missense_Mutation SNP T T C novel unknown TCGA-BH-A18H-01 TCGA-BH-A18H-10 T T NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.Y1055C P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 high 3.73 Y1055C getma.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=1010&re=1266&var=Y1055C getma.org/pdb.php?prot=A2MG_HUMAN&from=1010&to=1266&var=Y1055C getma.org/?cm=var&var=hg19,12,9230409,T,C&fts=all 12 9230409 9230409 T C SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.3164 p.Y1055C 0.143 superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_A2M_comp PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9242995 9242995 + Silent SNP G G A novel unknown TCGA-C8-A138-01 TCGA-C8-A138-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.N851N P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 Silent p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 NA NA NA NA NA NA 12 9242995 9242995 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2553 p.N851 0.003 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9246090 9246090 + Silent SNP C C T novel unknown TCGA-A2-A0EY-01 TCGA-A2-A0EY-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.E737E P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 Silent p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 NA NA NA NA NA NA 12 9246090 9246090 C T SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2211 p.E737 1.000 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9251298 9251298 + Nonsense_Mutation SNP G G A novel unknown TCGA-A8-A08G-01 TCGA-A8-A08G-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Nonsense_Mutation p.R586* P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 NA 0.0 R586* NA NA getma.org/?cm=var&var=hg19,12,9251298,G,A&fts=all 12 9251298 9251298 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed nonsense c.1756 p.R586* 0.003 HMMPfam_A2M_N_2 PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_invalid_swissprot.maf b/core/src/test/scripts/test_data/mutations/data_mutations_invalid_swissprot.maf deleted file mode 100644 index aff874f34f7..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_invalid_swissprot.maf +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer ONCOTATOR_COSMIC_OVERLAPPING ONCOTATOR_DBSNP_RS ONCOTATOR_DBSNP_VAL_STATUS ONCOTATOR_VARIANT_CLASSIFICATION HGVSp_Short SWISSPROT ONCOTATOR_REFSEQ_MRNA_ID ONCOTATOR_REFSEQ_PROT_ID ONCOTATOR_UNIPROT_ENTRY_NAME ONCOTATOR_UNIPROT_ACCESSION ONCOTATOR_CODON_CHANGE ONCOTATOR_TRANSCRIPT_CHANGE ONCOTATOR_EXON_AFFECTED ONCOTATOR_PROTEIN_POS_START ONCOTATOR_PROTEIN_POS_END ONCOTATOR_VARIANT_CLASSIFICATION_BEST_EFFECT ONCOTATOR_PROTEIN_CHANGE_BEST_EFFECT ONCOTATOR_GENE_SYMBOL_BEST_EFFECT ONCOTATOR_REFSEQ_MRNA_ID_BEST_EFFECT ONCOTATOR_REFSEQ_PROT_ID_BEST_EFFECT ONCOTATOR_UNIPROT_ENTRY_NAME_BEST_EFFECT ONCOTATOR_UNIPROT_ACCESSION_BEST_EFFECT ONCOTATOR_CODON_CHANGE_BEST_EFFECT ONCOTATOR_TRANSCRIPT_CHANGE_BEST_EFFECT ONCOTATOR_EXON_AFFECTED_BEST_EFFECT ONCOTATOR_PROTEIN_POS_START_BEST_EFFECT ONCOTATOR_PROTEIN_POS_END_BEST_EFFECT MA:FImpact MA:FIS MA:protein.change MA:link.MSA MA:link.PDB MA:link.var chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU Protein_position amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU annotation_errors_WU -A1CF 29974 genome.wustl.edu 37 10 52573692 52573692 + Missense_Mutation SNP G G T novel unknown TCGA-B6-A0RS-01 TCGA-B6-A0RS-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.D424E P99999 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(1270-1272)GAC>GAA c.1272C>A 10 424 424 Missense_Mutation p.D432E A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(1294-1296)GAC>GAA c.1296C>A 12 432 432 neutral 0.345 D424E getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=298&re=497&var=D424E NA getma.org/?cm=var&var=hg19,10,52573692,G,T&fts=all 10 52573692 52573692 G T SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.1272 p.D424E 0.768 NULL superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595854 52595854 + Missense_Mutation SNP G G A novel unknown TCGA-BH-A0HP-01 TCGA-BH-A0HP-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.A195V A1CF_HUMAN NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(583-585)GCG>GTG c.584C>T 6 195 195 Missense_Mutation p.A203V A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(607-609)GCG>GTG c.608C>T 8 203 203 medium 2.955 A195V getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=138&re=203&var=A195V getma.org/pdb.php?prot=A1CF_HUMAN&from=138&to=203&var=A195V getma.org/?cm=var&var=hg19,10,52595854,G,A&fts=all 10 52595854 52595854 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.584 p.A195V 1.000 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595937 52595937 + Silent SNP G G A novel unknown TCGA-BH-A18P-01 TCGA-BH-A18P-11 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.I167I P99999 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(499-501)ATC>ATT c.501C>T 6 167 167 Silent p.I175I A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(523-525)ATC>ATT c.525C>T 8 175 175 NA NA NA NA NA NA 10 52595937 52595937 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed silent c.501 p.I167 0.615 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A2M 2 genome.wustl.edu 37 12 9230409 9230409 + Missense_Mutation SNP T T C novel unknown TCGA-BH-A18H-01 TCGA-BH-A18H-10 T T NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.Y1055C P99999,Z9ZZZ9ZZZ9 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 high 3.73 Y1055C getma.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=1010&re=1266&var=Y1055C getma.org/pdb.php?prot=A2MG_HUMAN&from=1010&to=1266&var=Y1055C getma.org/?cm=var&var=hg19,12,9230409,T,C&fts=all 12 9230409 9230409 T C SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.3164 p.Y1055C 0.143 superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_A2M_comp PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9242995 9242995 + Silent SNP G G A novel unknown TCGA-C8-A138-01 TCGA-C8-A138-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.N851N P99999 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 Silent p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 NA NA NA NA NA NA 12 9242995 9242995 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2553 p.N851 0.003 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9246090 9246090 + Silent SNP C C T novel unknown TCGA-A2-A0EY-01 TCGA-A2-A0EY-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.E737E P99999 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 Silent p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 NA NA NA NA NA NA 12 9246090 9246090 C T SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2211 p.E737 1.000 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9251298 9251298 + Nonsense_Mutation SNP G G A novel unknown TCGA-A8-A08G-01 TCGA-A8-A08G-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Nonsense_Mutation p.R586* Z9ZZZ9ZZZ9 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 NA 0.0 R586* NA NA getma.org/?cm=var&var=hg19,12,9251298,G,A&fts=all 12 9251298 9251298 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed nonsense c.1756 p.R586* 0.003 HMMPfam_A2M_N_2 PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_invalid_utf8.maf b/core/src/test/scripts/test_data/mutations/data_mutations_invalid_utf8.maf deleted file mode 100644 index 638a1768384..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_invalid_utf8.maf +++ /dev/null @@ -1,3 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Consequence Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer t_ref_count t_alt_count n_ref_count n_alt_count Amino_Acid_Change -PAX5 St. Jude Children_s Research Hospital GRCh37 9 37015005 37015005 + missense_variant Missense_Mutation SNP A A C SJINF023 Somatic Illumina HiSeq 2500 97 17 29 0 S133R -NRAS St. Jude Children_s Research Hospital GRCh37 1 115258744 115258744 + missense_variant Missense_Mutation SNP C C T SJINF024 Somatic Illumina HiSeq 2500 470 48 20 0 G13D diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_invalid_variant_classification.maf b/core/src/test/scripts/test_data/mutations/data_mutations_invalid_variant_classification.maf deleted file mode 100644 index 17917307931..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_invalid_variant_classification.maf +++ /dev/null @@ -1,15 +0,0 @@ -#version 2.4 -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All -OR11H1 genome.wustl.edu GRCh37 22 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A NA getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC ENSG00000130538 65 0 0.00 38 6 13.64 - - - 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC - - - -TMEM247 genome.wustl.edu GRCh37 2 46707888 46707888 1 Frame_Shift_Del DEL G G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 0 0 TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; - ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga COSM1408208,~rs70940616 1 TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN UPI0000366EF8 NM_001145051.2 2/3 Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 -:0.0202 -:0.0439 1,0 HIGH 1 deletion 1 1,0 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 0 0.00 7 3 30.00 - - - 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC - - - -ABLIM1 genome.wustl.edu GRCh37 10 116247760 116247760 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 0 0 ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; C ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 1 ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 1,1,1 MODERATE 1 SNV 1,1,1 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC ENSG00000099204 77 0 0.00 36 13 26.53 - - - 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC - - - -ADAMTS20 genome.wustl.edu GRCh37 12 43944926 43944926 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C NA getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.Tyr80Cys p.Y80C ENST00000389420 2/39 0 0 ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; C ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 1 ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 1,1 MODERATE 1 SNV 1,1 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC ENSG00000173157 50 0 0.00 19 17 45.95 - - - 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC - - - -CADM2 genome.wustl.edu GRCh37 3 85932472 85932472 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.R81R ENST00000407528 3/10 0 0 CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; T ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 R cgC/cgT COSM1178952,COSM1178953 1 CADM2 HGNC 29849 protein_coding CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 3/10 PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,Pfam_domain:PF07686,Gene3D:2.60.40.10,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 1,1 LOW SNV 1,1 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC ENSG00000175161 57 0 0.00 22 23 51.11 - - - 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC - - - -DTNB genome.wustl.edu GRCh37 2 25678299 25678299 -1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.125 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M NA getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144C>A p.Val382Met p.V382M ENST00000406818 11/21 0 0 DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; T ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 1 DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 hmmpanther:PTHR11915:SF227,hmmpanther:PTHR11915,PIRSF_domain:PIRSF038204 1,1 MODERATE 1 SNV 1,1 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC ENSG00000138101 35 0 0.00 9 9 50.00 - - - 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC - - - -KAT2A genome.wustl.edu GRCh37 17 40272381 40272381 -1 Silent SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.471C>T p.= p.H157H ENST00000225916 3/18 0 0 KAT2A,synonymous_variant,p.=,ENST00000225916,NM_021078.2;CTD-2132N18.3,synonymous_variant,p.=,ENST00000592574,;RAB5C,downstream_gene_variant,,ENST00000393860,NM_201434.2;RAB5C,downstream_gene_variant,,ENST00000346213,NM_004583.3;HSPB9,upstream_gene_variant,,ENST00000355067,NM_033194.2;CTD-2132N18.3,missense_variant,p.Thr150Met,ENST00000592248,;KAT2A,synonymous_variant,p.=,ENST00000465682,;CTD-2132N18.3,3_prime_UTR_variant,,ENST00000585562,;KAT2A,upstream_gene_variant,,ENST00000592310,;KAT2A,upstream_gene_variant,,ENST00000588759,; A ENSG00000108773 ENST00000225916 Transcript synonymous_variant 525/3109 471/2514 157/837 H caC/caT rs536716483,COSM1479581 1 KAT2A HGNC 4201 protein_coding YES CCDS11417.1 ENSP00000225916 KAT2A_HUMAN K7ERS6_HUMAN UPI000000D978 NM_021078.2 3/18 hmmpanther:PTHR22880:SF124,hmmpanther:PTHR22880,Pfam_domain:PF06466,PIRSF_domain:PIRSF003048 A:0.0002 A:0 A:0 A:0.001 A:0 A:0 0,1 LOW 1 SNV 0,1 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene ENSG00000267261 40 0 0.00 30 36 54.55 - - - 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene - - - -MSH3 genome.wustl.edu GRCh37 5 80024722 80024722 1 Frame_Shift_Del DEL T T - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1508delT p.Leu503TrpfsTer5 p.L503Wfs*5 ENST00000265081 10/24 0 0 MSH3,frameshift_variant,p.Leu503TrpfsTer5,ENST00000265081,NM_002439.4;MSH3,non_coding_transcript_exon_variant,,ENST00000512258,; - ENSG00000113318 ENST00000265081 Transcript frameshift_variant 1586/4092 1506/3414 502/1137 S/X tcT/tc 1 MSH3 HGNC 7326 protein_coding YES CCDS34195.1 ENSP00000265081 MSH3_HUMAN UPI0000DBEE85 NM_002439.4 10/24 Superfamily_domains:SSF53150,Gene3D:3.30.420.110,Pfam_domain:PF05188,hmmpanther:PTHR11361,hmmpanther:PTHR11361:SF34 HIGH 1 deletion 2 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC ENSG00000113318 83 0 0.00 12 2 14.29 - - - 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC - - - -MYB genome.wustl.edu GRCh37 6 135507043 135507044 1 Frame_Shift_Ins INS - - A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 - - Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 2/15 0 0 MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000341911,NM_001130173.1,NM_001161658.1,NM_001161656.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000316528,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000442647,NM_001161660.1,NM_001130172.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367814,NM_001161659.1,NM_005375.2;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525369,NM_001161657.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000527615,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528774,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534121,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533624,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534044,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000420123,;MYB,upstream_gene_variant,,ENST00000430686,;MYB,non_coding_transcript_exon_variant,,ENST00000531845,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367812,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533837,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000438901,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525477,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000463282,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000339290,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533808,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525514,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529586,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526889,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526320,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531519,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533384,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531737,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529262,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526565,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528015,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526187,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525002,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528343,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528140,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528345,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525940,;MYB,frameshift_variant,p.Tyr10Ter,ENST00000531634,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000524588,; A ENSG00000118513 ENST00000367814 Transcript frameshift_variant 212-213/3302 26-27/1923 9/640 I/IX ata/atAa COSM1487247,COSM1487248 1 MYB HGNC 7545 protein_coding CCDS5174.1 ENSP00000356788 MYB_HUMAN Q9UMI7_HUMAN,Q708J0_HUMAN,Q708E9_HUMAN,Q708E3_HUMAN UPI000012FAEA NM_001161659.1,NM_005375.2 2/15 hmmpanther:PTHR10641,hmmpanther:PTHR10641:SF454 1,1 HIGH insertion 1 1,1 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC ENSG00000118513 50 0 0.00 36 4 10.00 - - - 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC - - - -NPIPB15 genome.wustl.edu GRCh37 16 74425902 74425902 1 Missense_mUtAtioN SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx neutral 0.0 I358T getma.org/?cm=msa&ty=f&p=NPPL2_HUMAN&rb=283&re=382&var=I358T NA getma.org/?cm=var&var=hg19,16,74425902,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1256T>C p.Ile419Thr p.I419T ENST00000429990 7/7 0 0 NPIPB15,missense_variant,p.Ile419Thr,ENST00000429990,; C ENSG00000196436 ENST00000429990 Transcript missense_variant 1352/1428 1256/1332 419/443 I/T aTa/aCa rs141751158,COSM1479088,COSM1479089 1 NPIPB15 HGNC 34409 protein_coding YES ENSP00000411140 NPB15_HUMAN UPI000198C783 tolerated_low_confidence(0.06) benign(0.341) 7/7 hmmpanther:PTHR15438 0,1,1 MODERATE 1 SNV 0,1,1 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC ENSG00000196436 20 0 0.00 10 4 28.57 - - - 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC - - - -OTOR genome.wustl.edu GRCh37 20 16730581 16730581 1 SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.69 V97M getma.org/?cm=msa&ty=f&p=OTOR_HUMAN&rb=43&re=108&var=V97M getma.org/pdb.php?prot=OTOR_HUMAN&from=43&to=108&var=V97M getma.org/?cm=var&var=hg19,20,16730581,G,A&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.289G>A p.Val97Met p.V97M ENST00000246081 3/4 0 0 OTOR,missense_variant,p.Val97Met,ENST00000246081,NM_020157.3;OTOR,non_coding_transcript_exon_variant,,ENST00000486129,;OTOR,intron_variant,,ENST00000490148,; A ENSG00000125879 ENST00000246081 Transcript missense_variant 333/1477 289/387 97/128 V/M Gtg/Atg COSM1410526 1 OTOR HGNC 8517 protein_coding YES CCDS13124.1 ENSP00000246081 OTOR_HUMAN UPI0000047809 NM_020157.3 deleterious(0) benign(0.344) 3/4 hmmpanther:PTHR23158,Gene3D:2.30.30.40,Pfam_domain:PF07653,SMART_domains:SM00326,Superfamily_domains:SSF50044 1 MODERATE 1 SNV 1 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC ENSG00000125879 57 0 0.00 36 9 20.00 - - - 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC - - - -P2RY10 genome.wustl.edu GRCh37 X 78216689 78216689 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.672C>T p.= p.S224S ENST00000171757 4/4 0 0 P2RY10,synonymous_variant,p.=,ENST00000171757,NM_014499.2;P2RY10,synonymous_variant,p.=,ENST00000544091,NM_198333.1;P2RY10,downstream_gene_variant,,ENST00000475374,;P2RY10,downstream_gene_variant,,ENST00000461541,; T ENSG00000078589 ENST00000171757 Transcript synonymous_variant 952/1714 672/1020 224/339 S tcC/tcT COSM1491292 1 P2RY10 HGNC 19906 protein_coding YES CCDS14442.1 ENSP00000171757 P2Y10_HUMAN UPI0000050471 NM_014499.2 4/4 PROSITE_profiles:PS50262,hmmpanther:PTHR24232:SF6,hmmpanther:PTHR24232,Gene3D:1.20.1070.10,Pfam_domain:PF00001,Superfamily_domains:SSF81321 1 LOW 1 SNV 1 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC ENSG00000078589 65 0 0.00 46 10 17.86 - - - X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC - - - -PIEZO1 genome.wustl.edu GRCh37 16 88790292 88790292 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.18 Q1441R getma.org/?cm=msa&ty=f&p=PIEZ1_HUMAN&rb=58&re=1627&var=Q1441R NA getma.org/?cm=var&var=hg19,16,88790292,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.4322A>G p.Gln1441Arg p.Q1441R ENST00000301015 31/51 0 0 PIEZO1,missense_variant,p.Gln1441Arg,ENST00000301015,NM_001142864.2;PIEZO1,missense_variant,p.Gln115Arg,ENST00000474606,;PIEZO1,upstream_gene_variant,,ENST00000327397,;PIEZO1,upstream_gene_variant,,ENST00000466823,;RP5-1142A6.9,downstream_gene_variant,,ENST00000564984,;PIEZO1,non_coding_transcript_exon_variant,,ENST00000566414,;PIEZO1,upstream_gene_variant,,ENST00000419505,;PIEZO1,upstream_gene_variant,,ENST00000497793,;PIEZO1,upstream_gene_variant,,ENST00000495568,;PIEZO1,downstream_gene_variant,,ENST00000475586,;PIEZO1,downstream_gene_variant,,ENST00000491917,; C ENSG00000103335 ENST00000301015 Transcript missense_variant 4569/8072 4322/7566 1441/2521 Q/R cAg/cGg COSM1479166 1 PIEZO1 HGNC 28993 protein_coding YES CCDS54058.1 ENSP00000301015 PIEZ1_HUMAN UPI0001B300F3 NM_001142864.2 tolerated(0.25) possibly_damaging(0.78) 31/51 hmmpanther:PTHR13167,hmmpanther:PTHR13167:SF40 1 MODERATE 1 SNV 1 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC ENSG00000103335 37 0 0.00 20 8 28.57 - - - 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC - - - diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_missing_aa_change_column.maf b/core/src/test/scripts/test_data/mutations/data_mutations_missing_aa_change_column.maf deleted file mode 100644 index b8b3a1478a9..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_missing_aa_change_column.maf +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer ONCOTATOR_COSMIC_OVERLAPPING ONCOTATOR_DBSNP_RS ONCOTATOR_DBSNP_VAL_STATUS ONCOTATOR_VARIANT_CLASSIFICATION HGVSp_Shor SWISSPROT ONCOTATOR_REFSEQ_MRNA_ID ONCOTATOR_REFSEQ_PROT_ID ONCOTATOR_UNIPROT_ENTRY_NAME ONCOTATOR_UNIPROT_ACCESSION ONCOTATOR_CODON_CHANGE ONCOTATOR_TRANSCRIPT_CHANGE ONCOTATOR_EXON_AFFECTED ONCOTATOR_PROTEIN_POS_START ONCOTATOR_PROTEIN_POS_END ONCOTATOR_VARIANT_CLASSIFICATION_BEST_EFFECT ONCOTATOR_PROTEIN_CHANGE_BEST_EFFECT ONCOTATOR_GENE_SYMBOL_BEST_EFFECT ONCOTATOR_REFSEQ_MRNA_ID_BEST_EFFECT ONCOTATOR_REFSEQ_PROT_ID_BEST_EFFECT ONCOTATOR_UNIPROT_ENTRY_NAME_BEST_EFFECT ONCOTATOR_UNIPROT_ACCESSION_BEST_EFFECT ONCOTATOR_CODON_CHANGE_BEST_EFFECT ONCOTATOR_TRANSCRIPT_CHANGE_BEST_EFFECT ONCOTATOR_EXON_AFFECTED_BEST_EFFECT ONCOTATOR_PROTEIN_POS_START_BEST_EFFECT ONCOTATOR_PROTEIN_POS_END_BEST_EFFECT MA:FImpact MA:FIS MA:protein.change MA:link.MSA MA:link.PDB MA:link.var chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU Protein_position amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU annotation_errors_WU -A1CF 29974 genome.wustl.edu 37 10 52573692 52573692 + Missense_Mutation SNP G G T novel unknown TCGA-B6-A0RS-01 TCGA-B6-A0RS-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.D424E A1CF NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(1270-1272)GAC>GAA c.1272C>A 10 424 424 Missense_Mutation p.D432E A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(1294-1296)GAC>GAA c.1296C>A 12 432 432 neutral 0.345 D424E getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=298&re=497&var=D424E NA getma.org/?cm=var&var=hg19,10,52573692,G,T&fts=all 10 52573692 52573692 G T SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.1272 p.D424E 0.768 NULL superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595854 52595854 + Missense_Mutation SNP G G A novel unknown TCGA-BH-A0HP-01 TCGA-BH-A0HP-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.A195V A1CF NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(583-585)GCG>GTG c.584C>T 6 195 195 Missense_Mutation p.A203V A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(607-609)GCG>GTG c.608C>T 8 203 203 medium 2.955 A195V getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=138&re=203&var=A195V getma.org/pdb.php?prot=A1CF_HUMAN&from=138&to=203&var=A195V getma.org/?cm=var&var=hg19,10,52595854,G,A&fts=all 10 52595854 52595854 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.584 p.A195V 1.000 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595937 52595937 + Silent SNP G G A novel unknown TCGA-BH-A18P-01 TCGA-BH-A18P-11 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.I167I A1CF NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(499-501)ATC>ATT c.501C>T 6 167 167 Silent p.I175I A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(523-525)ATC>ATT c.525C>T 8 175 175 NA NA NA NA NA NA 10 52595937 52595937 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed silent c.501 p.I167 0.615 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A2M 2 genome.wustl.edu 37 12 9230409 9230409 + Missense_Mutation SNP T T C novel unknown TCGA-BH-A18H-01 TCGA-BH-A18H-10 T T NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 high 3.73 Y1055C getma.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=1010&re=1266&var=Y1055C getma.org/pdb.php?prot=A2MG_HUMAN&from=1010&to=1266&var=Y1055C getma.org/?cm=var&var=hg19,12,9230409,T,C&fts=all 12 9230409 9230409 T C SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.3164 p.Y1055C 0.143 superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_A2M_comp PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9242995 9242995 + Silent SNP G G A novel unknown TCGA-C8-A138-01 TCGA-C8-A138-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 Silent p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 NA NA NA NA NA NA 12 9242995 9242995 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2553 p.N851 0.003 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9246090 9246090 + Silent SNP C C T novel unknown TCGA-A2-A0EY-01 TCGA-A2-A0EY-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 Silent p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 NA NA NA NA NA NA 12 9246090 9246090 C T SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2211 p.E737 1.000 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9251298 9251298 + Nonsense_Mutation SNP G G A novel unknown TCGA-A8-A08G-01 TCGA-A8-A08G-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 NA 0.0 R586* NA NA getma.org/?cm=var&var=hg19,12,9251298,G,A&fts=all 12 9251298 9251298 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed nonsense c.1756 p.R586* 0.003 HMMPfam_A2M_N_2 PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_missing_swissprot.maf b/core/src/test/scripts/test_data/mutations/data_mutations_missing_swissprot.maf deleted file mode 100644 index f2e737be5a9..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_missing_swissprot.maf +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer ONCOTATOR_COSMIC_OVERLAPPING ONCOTATOR_DBSNP_RS ONCOTATOR_DBSNP_VAL_STATUS ONCOTATOR_VARIANT_CLASSIFICATION HGVSp_Short SchweizerPROT ONCOTATOR_REFSEQ_MRNA_ID ONCOTATOR_REFSEQ_PROT_ID ONCOTATOR_UNIPROT_ENTRY_NAME ONCOTATOR_UNIPROT_ACCESSION ONCOTATOR_CODON_CHANGE ONCOTATOR_TRANSCRIPT_CHANGE ONCOTATOR_EXON_AFFECTED ONCOTATOR_PROTEIN_POS_START ONCOTATOR_PROTEIN_POS_END ONCOTATOR_VARIANT_CLASSIFICATION_BEST_EFFECT ONCOTATOR_PROTEIN_CHANGE_BEST_EFFECT ONCOTATOR_GENE_SYMBOL_BEST_EFFECT ONCOTATOR_REFSEQ_MRNA_ID_BEST_EFFECT ONCOTATOR_REFSEQ_PROT_ID_BEST_EFFECT ONCOTATOR_UNIPROT_ENTRY_NAME_BEST_EFFECT ONCOTATOR_UNIPROT_ACCESSION_BEST_EFFECT ONCOTATOR_CODON_CHANGE_BEST_EFFECT ONCOTATOR_TRANSCRIPT_CHANGE_BEST_EFFECT ONCOTATOR_EXON_AFFECTED_BEST_EFFECT ONCOTATOR_PROTEIN_POS_START_BEST_EFFECT ONCOTATOR_PROTEIN_POS_END_BEST_EFFECT MA:FImpact MA:FIS MA:protein.change MA:link.MSA MA:link.PDB MA:link.var chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU Protein_position amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU annotation_errors_WU -A1CF 29974 genome.wustl.edu 37 10 52573692 52573692 + Missense_Mutation SNP G G T novel unknown TCGA-B6-A0RS-01 TCGA-B6-A0RS-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.D424E A1CF NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(1270-1272)GAC>GAA c.1272C>A 10 424 424 Missense_Mutation p.D432E A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(1294-1296)GAC>GAA c.1296C>A 12 432 432 neutral 0.345 D424E getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=298&re=497&var=D424E NA getma.org/?cm=var&var=hg19,10,52573692,G,T&fts=all 10 52573692 52573692 G T SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.1272 p.D424E 0.768 NULL superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595854 52595854 + Missense_Mutation SNP G G A novel unknown TCGA-BH-A0HP-01 TCGA-BH-A0HP-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.A195V A1CF NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(583-585)GCG>GTG c.584C>T 6 195 195 Missense_Mutation p.A203V A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(607-609)GCG>GTG c.608C>T 8 203 203 medium 2.955 A195V getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=138&re=203&var=A195V getma.org/pdb.php?prot=A1CF_HUMAN&from=138&to=203&var=A195V getma.org/?cm=var&var=hg19,10,52595854,G,A&fts=all 10 52595854 52595854 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.584 p.A195V 1.000 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595937 52595937 + Silent SNP G G A novel unknown TCGA-BH-A18P-01 TCGA-BH-A18P-11 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.I167I A1CF NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(499-501)ATC>ATT c.501C>T 6 167 167 Silent p.I175I A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(523-525)ATC>ATT c.525C>T 8 175 175 NA NA NA NA NA NA 10 52595937 52595937 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed silent c.501 p.I167 0.615 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A2M 2 genome.wustl.edu 37 12 9230409 9230409 + Missense_Mutation SNP T T C novel unknown TCGA-BH-A18H-01 TCGA-BH-A18H-10 T T NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 high 3.73 Y1055C getma.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=1010&re=1266&var=Y1055C getma.org/pdb.php?prot=A2MG_HUMAN&from=1010&to=1266&var=Y1055C getma.org/?cm=var&var=hg19,12,9230409,T,C&fts=all 12 9230409 9230409 T C SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.3164 p.Y1055C 0.143 superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_A2M_comp PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9242995 9242995 + Silent SNP G G A novel unknown TCGA-C8-A138-01 TCGA-C8-A138-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 Silent p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 NA NA NA NA NA NA 12 9242995 9242995 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2553 p.N851 0.003 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9246090 9246090 + Silent SNP C C T novel unknown TCGA-A2-A0EY-01 TCGA-A2-A0EY-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 Silent p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 NA NA NA NA NA NA 12 9246090 9246090 C T SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2211 p.E737 1.000 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9251298 9251298 + Nonsense_Mutation SNP G G A novel unknown TCGA-A8-A08G-01 TCGA-A8-A08G-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 NA 0.0 R586* NA NA getma.org/?cm=var&var=hg19,12,9251298,G,A&fts=all 12 9251298 9251298 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed nonsense c.1756 p.R586* 0.003 HMMPfam_A2M_N_2 PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_missing_zygosity_status_column.maf b/core/src/test/scripts/test_data/mutations/data_mutations_missing_zygosity_status_column.maf deleted file mode 100644 index 60f945f3577..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_missing_zygosity_status_column.maf +++ /dev/null @@ -1,3 +0,0 @@ -#version 2.4 -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -BRCA1 genome.wustl.edu GRCh37 17 41243581 41243581 0 Nonsense_Mutation SNP G G A rs80357262 TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A G Unknown Somatic Phase_IV Capture 1 dbGAP IlluminaGAIIx 0 getma.org/?cm=var&var=hg19,17,41243581,G,A&fts=all ENST00000357654.3:c.3967C>T p.Gln1323Ter p.Q1323* ENST00000357654 23-Oct 0 0 BRCA1,stop_gained,p.Gln1027Ter,ENST00000309486,NM_007297.3;BRCA1,stop_gained,p.Gln1323Ter,ENST00000357654,NM_007294.3;BRCA1,stop_gained,p.Gln1323Ter,ENST00000346315,;BRCA1,stop_gained,p.Gln1323Ter,ENST00000354071,;BRCA1,stop_gained,p.Gln1323Ter,ENST00000471181,NM_007300.3;BRCA1,stop_gained,p.Gln1276Ter,ENST00000493795,;BRCA1,stop_gained,p.Gln88Ter,ENST00000461574,;BRCA1,intron_variant,,ENST00000352993,;BRCA1,intron_variant,,ENST00000351666,;BRCA1,intron_variant,,ENST00000468300,NM_007299.3;BRCA1,intron_variant,,ENST00000491747,NM_007298.3;BRCA1,intron_variant,,ENST00000478531,;BRCA1,intron_variant,,ENST00000493919,;BRCA1,intron_variant,,ENST00000484087,;BRCA1,intron_variant,,ENST00000591534,;BRCA1,intron_variant,,ENST00000487825,;BRCA1,intron_variant,,ENST00000586385,;BRCA1,intron_variant,,ENST00000591849,;BRCA1,downstream_gene_variant,,ENST00000470026,;BRCA1,downstream_gene_variant,,ENST00000477152,;BRCA1,downstream_gene_variant,,ENST00000494123,;BRCA1,downstream_gene_variant,,ENST00000473961,;BRCA1,downstream_gene_variant,,ENST00000497488,;BRCA1,downstream_gene_variant,,ENST00000476777,;BRCA1,3_prime_UTR_variant,,ENST00000461221,;BRCA1,non_coding_transcript_exon_variant,,ENST00000467274,;BRCA1,downstream_gene_variant,,ENST00000492859,;BRCA1,downstream_gene_variant,,ENST00000412061,; A ENSG00000012048 ENST00000357654 Transcript stop_gained 4086/7094 3967/5592 1323 Q/* Caa/Taa rs80357262 1 BRCA1 HGNC 1100 protein_coding CCDS11453.1 ENSP00000350283 BRCA1_HUMAN Q9UE29_HUMAN,Q9NQR3_HUMAN,Q92897_HUMAN,Q7KYU6_HUMAN,Q4EW25_HUMAN,Q3YB53_HUMAN,Q3YB50_HUMAN,Q3YB49_HUMAN,Q3LRH8_HUMAN,Q3B891_HUMAN,K7EPC7_HUMAN,K4K7V3_HUMAN,K4JXS7_HUMAN,K4JUB1_HUMAN,G4V503_HUMAN,G4V502_HUMAN,G4V500_HUMAN,G4V4Z8_HUMAN,G4V4Z7_HUMAN,G1UI37_HUMAN,E9PFZ0_HUMAN,E7EWN5_HUMAN,E7EP70_HUMAN,C9IZW4_HUMAN,C4PFY7_HUMAN UPI0000126AC8 NM_007294.3 23-Oct PIRSF_domain:PIRSF001734,hmmpanther:PTHR13763,hmmpanther:PTHR13763:SF0 not_provided,pathogenic HIGH SNV 1 17 41243581 41243581 G A SNP BRCA1 NM_007294.3 human genbank 58_37c -1 reviewed nonsense c.3967 p.Q1323* 0.949 HMMPfam_BRCT|7CHMMSmart_SM00292|7Csuperfamily_BRCT domain|7CHMMSmart_SM00184|7CPatternScan_ZF_RING_1|7CHMMPfam_zf-C3HC4|7Csuperfamily_RING/U-box - 17 41243581 41243581 G A SNP BRCA1 NM_007294.3 human genbank 58_37c -1 reviewed nonsense c.3967 p.Q1323* 0.949 HMMPfam_BRCT|7CHMMSmart_SM00292|7Csuperfamily_BRCT domain|7CHMMSmart_SM00184|7CPatternScan_ZF_RING_1|7CHMMPfam_zf-C3HC4|7Csuperfamily_RING/U-box - diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_more_than_10_types_in_driver_class.maf b/core/src/test/scripts/test_data/mutations/data_mutations_more_than_10_types_in_driver_class.maf deleted file mode 100644 index 756e6619e3c..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_more_than_10_types_in_driver_class.maf +++ /dev/null @@ -1,24 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact SWISSPROT MA:link.MSA MA:link.PDB cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -HSPG2 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 22078087 22078087 Missense_Mutation D820N neutral PGBM_HUMAN mutationassessor.org/?cm=msa&ty=f&p=PGBM_HUMAN&rb=814&re=869&var=D820N Putative_Passenger Passenger mutation test1 test1 -CSMD2 114784 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 34085156 34085156 Missense_Mutation V277I low CSMD2_HUMAN mutationassessor.org/?cm=msa&ty=f&p=CSMD2_HUMAN&rb=202&re=303&var=V277I mutationassessor.org/pdb.php?prot=CSMD2_HUMAN&from=202&to=303&var=V277I Putative_Driver Driver mutation test2 test2 -CLSPN 63967 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 35989584 35989584 Missense_Mutation F628L CLSPN_HUMAN mutationassessor.org/?cm=msa&ty=f&p=CLSPN_HUMAN&rb=601&re=800&var=F628L Putative_Passenger Passenger mutation test2 test2 -RSPO1 284654 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 37867916 37867916 Missense_Mutation R2Q low RSPO1_HUMAN mutationassessor.org/?cm=msa&ty=f&p=RSPO1_HUMAN&rb=1&re=150&var=R2Q Putative_Driver Driver mutation test1 test1 -SMAP2 64744 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 40646957 40646957 Missense_Mutation A95T medium SMOC2_HUMAN mutationassessor.org/?cm=msa&ty=f&p=SMAP2_HUMAN&rb=13&re=127&var=A95T mutationassessor.org/pdb.php?prot=SMAP2_HUMAN&from=13&to=127&var=A95T Putative_Passenger Passenger mutation test3 test3 -HPDL 84842 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 45565857 45565857 Silent S150S -- HPDL_HUMAN -- -- Putative_Driver Driver mutation test3 test3 -ZYG11B 79699 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 53009534 53009534 Missense_Mutation E151K low ZY11B_HUMAN mutationassessor.org/?cm=msa&ty=f&p=ZY11B_HUMAN&rb=6&re=304&var=E151K Putative_Driver Driver mutation test2 test2 -CCBL2 56267 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 89226604 89226604 Silent R6R -- KAT3_HUMAN -- -- Putative_Passenger Passenger mutation test3 test3 -OAZ3 51686 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 150005900 150005900 Missense_Mutation P27S OAZ3_HUMAN Putative_Passenger Passenger mutation test4 test4 -HRNR 388697 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 150452666 150452666 Missense_Mutation L2688S low HORN_HUMAN mutationassessor.org/?cm=msa&ty=f&p=HORN_HUMAN&rb=91&re=2799&var=L2688S Putative_Passenger Passenger mutation test5 test5 -TTC24 164118 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 154819467 154819467 Missense_Mutation G27E TTC24_HUMAN mutationassessor.org/?cm=msa&ty=f&p=TTC24_HUMAN&rb=306&re=352&var=G307E Putative_Driver Driver mutation test6 test6 -VANGL2 57216 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 158655985 158655985 Silent T254T -- VANG2_HUMAN -- -- Putative_Driver Driver mutation test3 test3 -ASTN1 460 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 175184979 175184979 Silent D673D -- ASTN1_HUMAN -- -- Putative_Passenger Passenger mutation test2 test2 -FAM5C 339479 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 188334737 188334737 Silent D445D -- BRNP3_HUMAN -- -- Putative_Passenger Passenger mutation test1 Test 1 -G0S2 50486 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 207915844 207915844 Silent A64A -- G0S2_HUMAN -- -- Putative_Driver Driver mutation test2 test2 -RD3 343035 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid LOH Illumina GAIIx chr1 209719152 209719152 Missense_Mutation P146L low RD3_HUMAN mutationassessor.org/?cm=msa&ty=f&p=RD3_HUMAN&rb=4&re=194&var=P146L Putative_Driver Driver mutation test7 test7 -KCNK2 3776 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 213412146 213412146 Missense_Mutation A274S KCNK2_HUMAN mutationassessor.org/?cm=msa&ty=f&p=KCNK2_HUMAN&rb=233&re=313&var=A274S Putative_Driver Driver mutation test8 Test 8 -NLRP3 114548 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 245674681 245674681 Silent G982G -- NLRP3_HUMAN -- -- Putative_Passenger Passenger Mutation test6 test6 -CALML5 51806 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr10 5531064 5531064 Missense_Mutation P113L CALL5_HUMAN mutationassessor.org/?cm=msa&ty=f&p=CALL5_HUMAN&rb=78&re=113&var=P113L mutationassessor.org/pdb.php?prot=CALL5_HUMAN&from=78&to=113&var=P113L Putative_Passenger Passenger mutation test9 test9 -GDF10 2662 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr10 48048882 48048882 Missense_Mutation R337H low GDF10_HUMAN mutationassessor.org/?cm=msa&ty=f&p=BMP3B_HUMAN&rb=240&re=372&var=R337H Putative_Driver Driver mutation test10 test10 -BICC1 80114 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Wildtype Illumina GAIIx chr10 59943055 59943055 Missense_Mutation E49G low BICC1_HUMAN mutationassessor.org/?cm=msa&ty=f&p=BICC1_HUMAN&rb=1&re=200&var=E49G Putative_Driver Driver mutation test11 test11 -STOX1 219736 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Wildtype Illumina GAIIx chr10 70315066 70315066 Missense_Mutation R503Q STOX1_HUMAN mutationassessor.org/?cm=msa&ty=f&p=STOX1_HUMAN&rb=391&re=590&var=R503Q Putative_Passenger Passenger mutation test12 test12 -DLG5 9231 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr10 79246430 79246430 Nonsense_Mutation Q1304* -- DLG5_HUMAN -- -- Putative_Driver Driver mutation test13 test13 diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_more_than_80_characters_in_custom_annotation_columns.maf b/core/src/test/scripts/test_data/mutations/data_mutations_more_than_80_characters_in_custom_annotation_columns.maf deleted file mode 100644 index ad89df47f29..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_more_than_80_characters_in_custom_annotation_columns.maf +++ /dev/null @@ -1,4 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.pdb SWISSPROT cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -HSPG2 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 22078087 22078087 Missense_Mutation D820N neutral mutationassessor.org/?cm=msa&ty=f&p=PGBM_HUMAN&rb=814&re=869&var=D820N PGBM_HUMAN Putative_Passenger Passenger mutation test1 012345678901234567890123456789012345678901234567890123456789012345678901234567891 -CSMD2 114784 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 34085156 34085156 Missense_Mutation V277I low mutationassessor.org/?cm=msa&ty=f&p=CSMD2_HUMAN&rb=202&re=303&var=V277I mutationassessor.org/pdb.php?prot=CSMD2_HUMAN&from=202&to=303&var=V277I CSMD2_HUMAN Putative_Driver Driver mutation test2 01234567890123456789012345678901234567890123456789012345678901234567890123456789 -CLSPN 63967 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 35989584 35989584 Missense_Mutation F628L mutationassessor.org/?cm=msa&ty=f&p=CLSPN_HUMAN&rb=601&re=800&var=F628L CLSPN_HUMAN Putative_Passenger Passenger mutation test2 test2 diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_ms.maf b/core/src/test/scripts/test_data/mutations/data_mutations_ms.maf deleted file mode 100644 index 078b431d037..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_ms.maf +++ /dev/null @@ -1,14 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -OR11H1 genome.wustl.edu GRCh37 22 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown Untested test Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1.0 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn 0 no_errors OR11H1 HGNC ENSG00000130538 65 0 0 38 6 13.64 0 0 0 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn 0 no_errors OR11H1 HGNC 0 0 0 Putative_Driver Untested driver -TMEM247 genome.wustl.edu GRCh37 2 46707888 46707888 1 Frame_Shift_Del DEL G G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Verified Untested None Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 0 0 TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; -0 ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga COSM1408208,~rs70940616 1 TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN UPI0000366EF8 NM_001145051.2 2/3 Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 -:0.0202 -:0.0439 1 HIGH 1.0 deletion 1.0 1 2 46707888 46707888 G -0 DEL TMEM247 ENST00000434431 human ensembl 69_37n 1 known frame_shift_del c.462 p.A155fs 83 0 no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 0 0 7 3 30.0 0 0 0 2 46707888 46707888 G -0 DEL TMEM247 ENST00000434431 human ensembl 69_37n 1 known frame_shift_del c.462 p.A155fs 83 0 no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC 0 0 0 Putative_Passenger Test passenger Class 2 Class annotation -ABLIM1 genome.wustl.edu GRCh37 10 116247760 116247760 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Germline Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 0 0 ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; C ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 1 ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 1,1,1 MODERATE 1.0 SNV 1,1,1 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM 0 no_errors ABLIM1 HGNC ENSG00000099204 77 0 0 36 13 26.53 0 0 0 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM 0 no_errors ABLIM1 HGNC 0 0 0 Putative_Driver Test driver Class 1 Class annotation -ADAMTS20 genome.wustl.edu GRCh37 12 43944926 43944926 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.Tyr80Cys p.Y80C ENST00000389420 2/39 0 0 ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; C ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 1 ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 1,1 MODERATE 1.0 SNV 1,1 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B 0 no_errors ADAMTS20 HGNC ENSG00000173157 50 0 0 19 17 45.95 0 0 0 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B 0 no_errors ADAMTS20 HGNC 0 0 0 Unknown Class 4 Class annotation -CADM2 genome.wustl.edu GRCh37 3 85932472 85932472 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested LOH Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.R81R ENST00000407528 3/10 0 0 CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; T ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 R cgC/cgT COSM1178952,COSM1178953 1 CADM2 HGNC 29849 protein_coding CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 3/10 PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,Pfam_domain:PF07686,Gene3D:2.60.40.10,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 1,1 LOW SNV 1,1 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n 1 known silent c.249 p.R83 920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like 0 no_errors CADM2 HGNC ENSG00000175161 57 0 0 22 23 51.11 0 0 0 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n 1 known silent c.249 p.R83 920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like 0 no_errors CADM2 HGNC 0 0 0 Putative_Driver Test driver Class 4 Class annotation -DTNB genome.wustl.edu GRCh37 2 25678299 25678299 -1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Post-transcriptional modification Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2125.0 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144C>A p.Val382Met p.V382M ENST00000406818 11/21 0 0 DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; T ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 1 DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 hmmpanther:PTHR11915:SF227,hmmpanther:PTHR11915,PIRSF_domain:PIRSF038204 1,1 MODERATE 1.0 SNV 1,1 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ 0 no_errors DTNB HGNC ENSG00000138101 35 0 0 9 9 50.0 0 0 0 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ 0 no_errors DTNB HGNC 0 0 0 Putative_Passenger Test passenger Class 1 Class annotation -KAT2A genome.wustl.edu GRCh37 17 40272381 40272381 -1 Silent SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Unknown Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.471C>T p.= p.H157H ENST00000225916 3/18 0 0 KAT2A,synonymous_variant,p.=,ENST00000225916,NM_021078.2;CTD-2132N18.3,synonymous_variant,p.=,ENST00000592574,;RAB5C,downstream_gene_variant,,ENST00000393860,NM_201434.2;RAB5C,downstream_gene_variant,,ENST00000346213,NM_004583.3;HSPB9,upstream_gene_variant,,ENST00000355067,NM_033194.2;CTD-2132N18.3,missense_variant,p.Thr150Met,ENST00000592248,;KAT2A,synonymous_variant,p.=,ENST00000465682,;CTD-2132N18.3,3_prime_UTR_variant,,ENST00000585562,;KAT2A,upstream_gene_variant,,ENST00000592310,;KAT2A,upstream_gene_variant,,ENST00000588759,; A ENSG00000108773 ENST00000225916 Transcript synonymous_variant 525/3109 471/2514 157/837 H caC/caT rs536716483,COSM1479581 1 KAT2A HGNC 4201 protein_coding YES CCDS11417.1 ENSP00000225916 KAT2A_HUMAN K7ERS6_HUMAN UPI000000D978 NM_021078.2 3/18 hmmpanther:PTHR22880:SF124,hmmpanther:PTHR22880,Pfam_domain:PF06466,PIRSF_domain:PIRSF003048 A:0.0002 A:0 A:0 A:0.001 A:0 A:0 0,1 LOW 1.0 SNV 0,1 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom 0 no_errors CTD-2132N18.3 Clone_based_vega_gene ENSG00000267261 40 0 0 30 36 54.55 0 0 0 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom 0 no_errors CTD-2132N18.3 Clone_based_vega_gene 0 0 0 Putative_Driver Test driver Class 1 Class annotation -MSH3 genome.wustl.edu GRCh37 5 80024722 80024722 1 Frame_Shift_Del DEL T T - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Wildtype Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1508delT p.Leu503TrpfsTer5 p.L503Wfs*5 ENST00000265081 10/24 0 0 MSH3,frameshift_variant,p.Leu503TrpfsTer5,ENST00000265081,NM_002439.4;MSH3,non_coding_transcript_exon_variant,,ENST00000512258,; -0 ENSG00000113318 ENST00000265081 Transcript frameshift_variant 1586/4092 1506/3414 502/1137 S/X tcT/tc 1 MSH3 HGNC 7326 protein_coding YES CCDS34195.1 ENSP00000265081 MSH3_HUMAN UPI0000DBEE85 NM_002439.4 10/24 Superfamily_domains:SSF53150,Gene3D:3.30.420.110,Pfam_domain:PF05188,hmmpanther:PTHR11361,hmmpanther:PTHR11361:SF34 HIGH 1.0 deletion 2.0 5 80024722 80024722 T -0 DEL MSH3 ENST00000265081 human ensembl 69_37n 1 known frame_shift_del c.1506 p.L503fs 998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C 0 no_errors MSH3 HGNC ENSG00000113318 83 0 0 12 2 14.29 0 0 0 5 80024722 80024722 T -0 DEL MSH3 ENST00000265081 human ensembl 69_37n 1 known frame_shift_del c.1506 p.L503fs 998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C 0 no_errors MSH3 HGNC 0 0 0 Putative_Passenger Test passenger Class 3 Class annotation -MYB genome.wustl.edu GRCh37 6 135507043 135507044 1 Frame_Shift_Ins INS - - A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 -0 -0 Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 2/15 0 0 MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000341911,NM_001130173.1,NM_001161658.1,NM_001161656.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000316528,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000442647,NM_001161660.1,NM_001130172.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367814,NM_001161659.1,NM_005375.2;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525369,NM_001161657.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000527615,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528774,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534121,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533624,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534044,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000420123,;MYB,upstream_gene_variant,,ENST00000430686,;MYB,non_coding_transcript_exon_variant,,ENST00000531845,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367812,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533837,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000438901,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525477,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000463282,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000339290,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533808,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525514,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529586,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526889,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526320,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531519,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533384,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531737,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529262,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526565,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528015,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526187,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525002,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528343,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528140,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528345,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525940,;MYB,frameshift_variant,p.Tyr10Ter,ENST00000531634,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000524588,; A ENSG00000118513 ENST00000367814 Transcript frameshift_variant 212-213/3302 26-27/1923 9/640 I/IX ata/atAa COSM1487247,COSM1487248 1 MYB HGNC 7545 protein_coding CCDS5174.1 ENSP00000356788 MYB_HUMAN Q9UMI7_HUMAN,Q708J0_HUMAN,Q708E9_HUMAN,Q708E3_HUMAN UPI000012FAEA NM_001161659.1,NM_005375.2 2/15 hmmpanther:PTHR10641,hmmpanther:PTHR10641:SF454 1,1 HIGH insertion 1.0 1,1 6 135507043 135507044 -0 A INS MYB ENST00000341911 human ensembl 69_37n 1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom 0 no_errors MYB HGNC ENSG00000118513 50 0 0 36 4 10.0 0 0 0 6 135507043 135507044 -0 A INS MYB ENST00000341911 human ensembl 69_37n 1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom 0 no_errors MYB HGNC 0 0 0 Putative_Passenger Test passenger -NPIPB15 genome.wustl.edu GRCh37 16 74425902 74425902 1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx neutral 0.0 I358T getma.org/?cm=msa&ty=f&p=NPPL2_HUMAN&rb=283&re=382&var=I358T getma.org/?cm=var&var=hg19,16,74425902,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1256T>C p.Ile419Thr p.I419T ENST00000429990 7/7 0 0 NPIPB15,missense_variant,p.Ile419Thr,ENST00000429990,; C ENSG00000196436 ENST00000429990 Transcript missense_variant 1352/1428 1256/1332 419/443 I/T aTa/aCa rs141751158,COSM1479088,COSM1479089 1 NPIPB15 HGNC 34409 protein_coding YES ENSP00000411140 NPB15_HUMAN UPI000198C783 tolerated_low_confidence(0.06) benign(0.341) 7/7 hmmpanther:PTHR15438 0,1,1 MODERATE 1.0 SNV 0,1,1 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n 1 known missense c.1256 p.I419T 999 pfam_NPIP 0 no_errors NPIPL2 HGNC ENSG00000196436 20 0 0 10 4 28.57 0 0 0 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n 1 known missense c.1256 p.I419T 999 pfam_NPIP 0 no_errors NPIPL2 HGNC 0 0 0 Putative_Passenger Test passenger Class 1 Class annotation -OTOR genome.wustl.edu GRCh37 20 16730581 16730581 1 Missense_Mutation SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.69 V97M getma.org/?cm=msa&ty=f&p=OTOR_HUMAN&rb=43&re=108&var=V97M getma.org/pdb.php?prot=OTOR_HUMAN&from=43&to=108&var=V97M getma.org/?cm=var&var=hg19,20,16730581,G,A&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.289G>A p.Val97Met p.V97M ENST00000246081 3/4 0 0 OTOR,missense_variant,p.Val97Met,ENST00000246081,NM_020157.3;OTOR,non_coding_transcript_exon_variant,,ENST00000486129,;OTOR,intron_variant,,ENST00000490148,; A ENSG00000125879 ENST00000246081 Transcript missense_variant 333/1477 289/387 97/128 V/M Gtg/Atg COSM1410526 1 OTOR HGNC 8517 protein_coding YES CCDS13124.1 ENSP00000246081 OTOR_HUMAN UPI0000047809 NM_020157.3 deleterious(0) benign(0.344) 3/4 hmmpanther:PTHR23158,Gene3D:2.30.30.40,Pfam_domain:PF07653,SMART_domains:SM00326,Superfamily_domains:SSF50044 1 MODERATE 1.0 SNV 1 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n 1 known missense c.289 p.V97M 963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain 0 no_errors OTOR HGNC ENSG00000125879 57 0 0 36 9 20.0 0 0 0 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n 1 known missense c.289 p.V97M 963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain 0 no_errors OTOR HGNC 0 0 0 Class 2 Class annotation -P2RY10 genome.wustl.edu GRCh37 X 78216689 78216689 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.672C>T p.= p.S224S ENST00000171757 4/4 0 0 P2RY10,synonymous_variant,p.=,ENST00000171757,NM_014499.2;P2RY10,synonymous_variant,p.=,ENST00000544091,NM_198333.1;P2RY10,downstream_gene_variant,,ENST00000475374,;P2RY10,downstream_gene_variant,,ENST00000461541,; T ENSG00000078589 ENST00000171757 Transcript synonymous_variant 952/1714 672/1020 224/339 S tcC/tcT COSM1491292 1 P2RY10 HGNC 19906 protein_coding YES CCDS14442.1 ENSP00000171757 P2Y10_HUMAN UPI0000050471 NM_014499.2 4/4 PROSITE_profiles:PS50262,hmmpanther:PTHR24232:SF6,hmmpanther:PTHR24232,Gene3D:1.20.1070.10,Pfam_domain:PF00001,Superfamily_domains:SSF81321 1 LOW 1.0 SNV 1 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n 1 known silent c.672 p.S224 92 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor 0 no_errors P2RY10 HGNC ENSG00000078589 65 0 0 46 10 17.86 0 0 0 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n 1 known silent c.672 p.S224 92 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor 0 no_errors P2RY10 HGNC 0 0 0 Putative_Driver Test driver Class 3 Class annotation -PIEZO1 genome.wustl.edu GRCh37 16 88790292 88790292 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.18 Q1441R getma.org/?cm=msa&ty=f&p=PIEZ1_HUMAN&rb=58&re=1627&var=Q1441R getma.org/?cm=var&var=hg19,16,88790292,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.4322A>G p.Gln1441Arg p.Q1441R ENST00000301015 31/51 0 0 PIEZO1,missense_variant,p.Gln1441Arg,ENST00000301015,NM_001142864.2;PIEZO1,missense_variant,p.Gln115Arg,ENST00000474606,;PIEZO1,upstream_gene_variant,,ENST00000327397,;PIEZO1,upstream_gene_variant,,ENST00000466823,;RP5-1142A6.9,downstream_gene_variant,,ENST00000564984,;PIEZO1,non_coding_transcript_exon_variant,,ENST00000566414,;PIEZO1,upstream_gene_variant,,ENST00000419505,;PIEZO1,upstream_gene_variant,,ENST00000497793,;PIEZO1,upstream_gene_variant,,ENST00000495568,;PIEZO1,downstream_gene_variant,,ENST00000475586,;PIEZO1,downstream_gene_variant,,ENST00000491917,; C ENSG00000103335 ENST00000301015 Transcript missense_variant 4569/8072 4322/7566 1441/2521 Q/R cAg/cGg COSM1479166 1 PIEZO1 HGNC 28993 protein_coding YES CCDS54058.1 ENSP00000301015 PIEZ1_HUMAN UPI0001B300F3 NM_001142864.2 tolerated(0.25) possibly_damaging(0.78) 31/51 hmmpanther:PTHR13167,hmmpanther:PTHR13167:SF40 1 MODERATE 1.0 SNV 1 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1000 pfam_DUF3595 0 no_errors PIEZO1 HGNC ENSG00000103335 37 0 0 20 8 28.57 0 0 0 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1000 pfam_DUF3595 0 no_errors PIEZO1 HGNC 0 0 0 Putative_Passenger Test passenger Class 3 Class annotation diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_name_swissprot.maf b/core/src/test/scripts/test_data/mutations/data_mutations_name_swissprot.maf deleted file mode 100644 index f9dad84fe97..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_name_swissprot.maf +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer ONCOTATOR_COSMIC_OVERLAPPING ONCOTATOR_DBSNP_RS ONCOTATOR_DBSNP_VAL_STATUS ONCOTATOR_VARIANT_CLASSIFICATION HGVSp_Short SWISSPROT ONCOTATOR_REFSEQ_MRNA_ID ONCOTATOR_REFSEQ_PROT_ID ONCOTATOR_UNIPROT_ENTRY_NAME ONCOTATOR_UNIPROT_ACCESSION ONCOTATOR_CODON_CHANGE ONCOTATOR_TRANSCRIPT_CHANGE ONCOTATOR_EXON_AFFECTED ONCOTATOR_PROTEIN_POS_START ONCOTATOR_PROTEIN_POS_END ONCOTATOR_VARIANT_CLASSIFICATION_BEST_EFFECT ONCOTATOR_PROTEIN_CHANGE_BEST_EFFECT ONCOTATOR_GENE_SYMBOL_BEST_EFFECT ONCOTATOR_REFSEQ_MRNA_ID_BEST_EFFECT ONCOTATOR_REFSEQ_PROT_ID_BEST_EFFECT ONCOTATOR_UNIPROT_ENTRY_NAME_BEST_EFFECT ONCOTATOR_UNIPROT_ACCESSION_BEST_EFFECT ONCOTATOR_CODON_CHANGE_BEST_EFFECT ONCOTATOR_TRANSCRIPT_CHANGE_BEST_EFFECT ONCOTATOR_EXON_AFFECTED_BEST_EFFECT ONCOTATOR_PROTEIN_POS_START_BEST_EFFECT ONCOTATOR_PROTEIN_POS_END_BEST_EFFECT MA:FImpact MA:FIS MA:protein.change MA:link.MSA MA:link.PDB MA:link.var chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU Protein_position amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU annotation_errors_WU -A1CF 29974 genome.wustl.edu 37 10 52573692 52573692 + Missense_Mutation SNP G G T novel unknown TCGA-B6-A0RS-01 TCGA-B6-A0RS-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.D424E A1CF_HUMAN NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(1270-1272)GAC>GAA c.1272C>A 10 424 424 Missense_Mutation p.D432E A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(1294-1296)GAC>GAA c.1296C>A 12 432 432 neutral 0.345 D424E getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=298&re=497&var=D424E NA getma.org/?cm=var&var=hg19,10,52573692,G,T&fts=all 10 52573692 52573692 G T SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.1272 p.D424E 0.768 NULL superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595854 52595854 + Missense_Mutation SNP G G A novel unknown TCGA-BH-A0HP-01 TCGA-BH-A0HP-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.A195V Q9NQ94 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(583-585)GCG>GTG c.584C>T 6 195 195 Missense_Mutation p.A203V A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(607-609)GCG>GTG c.608C>T 8 203 203 medium 2.955 A195V getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=138&re=203&var=A195V getma.org/pdb.php?prot=A1CF_HUMAN&from=138&to=203&var=A195V getma.org/?cm=var&var=hg19,10,52595854,G,A&fts=all 10 52595854 52595854 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.584 p.A195V 1.000 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595937 52595937 + Silent SNP G G A novel unknown TCGA-BH-A18P-01 TCGA-BH-A18P-11 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.I167I A1CF_HUMAN NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(499-501)ATC>ATT c.501C>T 6 167 167 Silent p.I175I A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(523-525)ATC>ATT c.525C>T 8 175 175 NA NA NA NA NA NA 10 52595937 52595937 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed silent c.501 p.I167 0.615 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A2M 2 genome.wustl.edu 37 12 9230409 9230409 + Missense_Mutation SNP T T C novel unknown TCGA-BH-A18H-01 TCGA-BH-A18H-10 T T NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.Y1055C A1CF_HUMAN,HBB_YEAST NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 high 3.73 Y1055C getma.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=1010&re=1266&var=Y1055C getma.org/pdb.php?prot=A2MG_HUMAN&from=1010&to=1266&var=Y1055C getma.org/?cm=var&var=hg19,12,9230409,T,C&fts=all 12 9230409 9230409 T C SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.3164 p.Y1055C 0.143 superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_A2M_comp PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9242995 9242995 + Silent SNP G G A novel unknown TCGA-C8-A138-01 TCGA-C8-A138-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.N851N A2MG_HUMAN NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 Silent p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 NA NA NA NA NA NA 12 9242995 9242995 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2553 p.N851 0.003 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9246090 9246090 + Silent SNP C C T novel unknown TCGA-A2-A0EY-01 TCGA-A2-A0EY-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.E737E A2MG_HUMAN NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 Silent p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 NA NA NA NA NA NA 12 9246090 9246090 C T SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2211 p.E737 1.000 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9251298 9251298 + Nonsense_Mutation SNP G G A novel unknown TCGA-A8-A08G-01 TCGA-A8-A08G-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Nonsense_Mutation p.R586* HBB_YEAST NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 NA 0.0 R586* NA NA getma.org/?cm=var&var=hg19,12,9251298,G,A&fts=all 12 9251298 9251298 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed nonsense c.1756 p.R586* 0.003 HMMPfam_A2M_N_2 PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_not_loaded_ms.maf b/core/src/test/scripts/test_data/mutations/data_mutations_not_loaded_ms.maf deleted file mode 100644 index 70c7a19c070..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_not_loaded_ms.maf +++ /dev/null @@ -1,15 +0,0 @@ -#version 2.4 -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All -OR11H1 genome.wustl.edu GRCh37 22 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown Untested None Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A NA getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC ENSG00000130538 65 0 0.00 38 6 13.64 - - - 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC - - - -TMEM247 genome.wustl.edu GRCh37 2 46707888 46707888 1 Frame_Shift_Del DEL G G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 0 0 TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; - ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga COSM1408208,~rs70940616 1 TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN UPI0000366EF8 NM_001145051.2 2/3 Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 -:0.0202 -:0.0439 1,0 HIGH 1 deletion 1 1,0 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 0 0.00 7 3 30.00 - - - 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC - - - -ABLIM1 genome.wustl.edu GRCh37 10 116247760 116247760 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested loh Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 0 0 ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; C ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 1 ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 1,1,1 MODERATE 1 SNV 1,1,1 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC ENSG00000099204 77 0 0.00 36 13 26.53 - - - 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC - - - -ADAMTS20 genome.wustl.edu GRCh37 12 43944926 43944926 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Post-transcriptional modification Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C NA getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.Tyr80Cys p.Y80C ENST00000389420 2/39 0 0 ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; C ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 1 ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 1,1 MODERATE 1 SNV 1,1 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC ENSG00000173157 50 0 0.00 19 17 45.95 - - - 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC - - - -CADM2 genome.wustl.edu GRCh37 3 85932472 85932472 1 Frame_Shift_Del SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Germline Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.R81R ENST00000407528 3/10 0 0 CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; T ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 R cgC/cgT COSM1178952,COSM1178953 1 CADM2 HGNC 29849 protein_coding CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 3/10 PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,Pfam_domain:PF07686,Gene3D:2.60.40.10,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 1,1 LOW SNV 1,1 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC ENSG00000175161 57 0 0.00 22 23 51.11 - - - 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC - - - -DTNB genome.wustl.edu GRCh37 2 25678299 25678299 -1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Unknown Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.125 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M NA getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144C>A p.Val382Met p.V382M ENST00000406818 11/21 0 0 DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; T ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 1 DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 hmmpanther:PTHR11915:SF227,hmmpanther:PTHR11915,PIRSF_domain:PIRSF038204 1,1 MODERATE 1 SNV 1,1 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC ENSG00000138101 35 0 0.00 9 9 50.00 - - - 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC - - - -KAT2A genome.wustl.edu GRCh37 17 40272381 40272381 -1 Missense_Mutation SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Wildtype Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.471C>T p.= p.H157H ENST00000225916 3/18 0 0 KAT2A,synonymous_variant,p.=,ENST00000225916,NM_021078.2;CTD-2132N18.3,synonymous_variant,p.=,ENST00000592574,;RAB5C,downstream_gene_variant,,ENST00000393860,NM_201434.2;RAB5C,downstream_gene_variant,,ENST00000346213,NM_004583.3;HSPB9,upstream_gene_variant,,ENST00000355067,NM_033194.2;CTD-2132N18.3,missense_variant,p.Thr150Met,ENST00000592248,;KAT2A,synonymous_variant,p.=,ENST00000465682,;CTD-2132N18.3,3_prime_UTR_variant,,ENST00000585562,;KAT2A,upstream_gene_variant,,ENST00000592310,;KAT2A,upstream_gene_variant,,ENST00000588759,; A ENSG00000108773 ENST00000225916 Transcript synonymous_variant 525/3109 471/2514 157/837 H caC/caT rs536716483,COSM1479581 1 KAT2A HGNC 4201 protein_coding YES CCDS11417.1 ENSP00000225916 KAT2A_HUMAN K7ERS6_HUMAN UPI000000D978 NM_021078.2 3/18 hmmpanther:PTHR22880:SF124,hmmpanther:PTHR22880,Pfam_domain:PF06466,PIRSF_domain:PIRSF003048 A:0.0002 A:0 A:0 A:0.001 A:0 A:0 0,1 LOW 1 SNV 0,1 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene ENSG00000267261 40 0 0.00 30 36 54.55 - - - 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene - - - -MSH3 genome.wustl.edu GRCh37 5 80024722 80024722 1 Frame_Shift_Del DEL T T - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1508delT p.Leu503TrpfsTer5 p.L503Wfs*5 ENST00000265081 10/24 0 0 MSH3,frameshift_variant,p.Leu503TrpfsTer5,ENST00000265081,NM_002439.4;MSH3,non_coding_transcript_exon_variant,,ENST00000512258,; - ENSG00000113318 ENST00000265081 Transcript frameshift_variant 1586/4092 1506/3414 502/1137 S/X tcT/tc 1 MSH3 HGNC 7326 protein_coding YES CCDS34195.1 ENSP00000265081 MSH3_HUMAN UPI0000DBEE85 NM_002439.4 10/24 Superfamily_domains:SSF53150,Gene3D:3.30.420.110,Pfam_domain:PF05188,hmmpanther:PTHR11361,hmmpanther:PTHR11361:SF34 HIGH 1 deletion 2 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC ENSG00000113318 83 0 0.00 12 2 14.29 - - - 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC - - - -MYB genome.wustl.edu GRCh37 6 135507043 135507044 1 Frame_Shift_Ins INS - - A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 - - Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 2/15 0 0 MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000341911,NM_001130173.1,NM_001161658.1,NM_001161656.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000316528,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000442647,NM_001161660.1,NM_001130172.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367814,NM_001161659.1,NM_005375.2;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525369,NM_001161657.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000527615,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528774,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534121,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533624,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534044,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000420123,;MYB,upstream_gene_variant,,ENST00000430686,;MYB,non_coding_transcript_exon_variant,,ENST00000531845,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367812,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533837,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000438901,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525477,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000463282,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000339290,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533808,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525514,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529586,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526889,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526320,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531519,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533384,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531737,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529262,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526565,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528015,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526187,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525002,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528343,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528140,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528345,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525940,;MYB,frameshift_variant,p.Tyr10Ter,ENST00000531634,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000524588,; A ENSG00000118513 ENST00000367814 Transcript frameshift_variant 212-213/3302 26-27/1923 9/640 I/IX ata/atAa COSM1487247,COSM1487248 1 MYB HGNC 7545 protein_coding CCDS5174.1 ENSP00000356788 MYB_HUMAN Q9UMI7_HUMAN,Q708J0_HUMAN,Q708E9_HUMAN,Q708E3_HUMAN UPI000012FAEA NM_001161659.1,NM_005375.2 2/15 hmmpanther:PTHR10641,hmmpanther:PTHR10641:SF454 1,1 HIGH insertion 1 1,1 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC ENSG00000118513 50 0 0.00 36 4 10.00 - - - 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC - - - -NPIPB15 genome.wustl.edu GRCh37 16 74425902 74425902 1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx neutral 0.0 I358T getma.org/?cm=msa&ty=f&p=NPPL2_HUMAN&rb=283&re=382&var=I358T NA getma.org/?cm=var&var=hg19,16,74425902,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1256T>C p.Ile419Thr p.I419T ENST00000429990 7/7 0 0 NPIPB15,missense_variant,p.Ile419Thr,ENST00000429990,; C ENSG00000196436 ENST00000429990 Transcript missense_variant 1352/1428 1256/1332 419/443 I/T aTa/aCa rs141751158,COSM1479088,COSM1479089 1 NPIPB15 HGNC 34409 protein_coding YES ENSP00000411140 NPB15_HUMAN UPI000198C783 tolerated_low_confidence(0.06) benign(0.341) 7/7 hmmpanther:PTHR15438 0,1,1 MODERATE 1 SNV 0,1,1 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC ENSG00000196436 20 0 0.00 10 4 28.57 - - - 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC - - - -OTOR genome.wustl.edu GRCh37 20 16730581 16730581 1 Missense_Mutation SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.69 V97M getma.org/?cm=msa&ty=f&p=OTOR_HUMAN&rb=43&re=108&var=V97M getma.org/pdb.php?prot=OTOR_HUMAN&from=43&to=108&var=V97M getma.org/?cm=var&var=hg19,20,16730581,G,A&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.289G>A p.Val97Met p.V97M ENST00000246081 3/4 0 0 OTOR,missense_variant,p.Val97Met,ENST00000246081,NM_020157.3;OTOR,non_coding_transcript_exon_variant,,ENST00000486129,;OTOR,intron_variant,,ENST00000490148,; A ENSG00000125879 ENST00000246081 Transcript missense_variant 333/1477 289/387 97/128 V/M Gtg/Atg COSM1410526 1 OTOR HGNC 8517 protein_coding YES CCDS13124.1 ENSP00000246081 OTOR_HUMAN UPI0000047809 NM_020157.3 deleterious(0) benign(0.344) 3/4 hmmpanther:PTHR23158,Gene3D:2.30.30.40,Pfam_domain:PF07653,SMART_domains:SM00326,Superfamily_domains:SSF50044 1 MODERATE 1 SNV 1 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC ENSG00000125879 57 0 0.00 36 9 20.00 - - - 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC - - - -P2RY10 genome.wustl.edu GRCh37 X 78216689 78216689 1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.672C>T p.= p.S224S ENST00000171757 4/4 0 0 P2RY10,synonymous_variant,p.=,ENST00000171757,NM_014499.2;P2RY10,synonymous_variant,p.=,ENST00000544091,NM_198333.1;P2RY10,downstream_gene_variant,,ENST00000475374,;P2RY10,downstream_gene_variant,,ENST00000461541,; T ENSG00000078589 ENST00000171757 Transcript synonymous_variant 952/1714 672/1020 224/339 S tcC/tcT COSM1491292 1 P2RY10 HGNC 19906 protein_coding YES CCDS14442.1 ENSP00000171757 P2Y10_HUMAN UPI0000050471 NM_014499.2 4/4 PROSITE_profiles:PS50262,hmmpanther:PTHR24232:SF6,hmmpanther:PTHR24232,Gene3D:1.20.1070.10,Pfam_domain:PF00001,Superfamily_domains:SSF81321 1 LOW 1 SNV 1 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC ENSG00000078589 65 0 0.00 46 10 17.86 - - - X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC - - - -PIEZO1 genome.wustl.edu GRCh37 16 88790292 88790292 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.18 Q1441R getma.org/?cm=msa&ty=f&p=PIEZ1_HUMAN&rb=58&re=1627&var=Q1441R NA getma.org/?cm=var&var=hg19,16,88790292,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.4322A>G p.Gln1441Arg p.Q1441R ENST00000301015 31/51 0 0 PIEZO1,missense_variant,p.Gln1441Arg,ENST00000301015,NM_001142864.2;PIEZO1,missense_variant,p.Gln115Arg,ENST00000474606,;PIEZO1,upstream_gene_variant,,ENST00000327397,;PIEZO1,upstream_gene_variant,,ENST00000466823,;RP5-1142A6.9,downstream_gene_variant,,ENST00000564984,;PIEZO1,non_coding_transcript_exon_variant,,ENST00000566414,;PIEZO1,upstream_gene_variant,,ENST00000419505,;PIEZO1,upstream_gene_variant,,ENST00000497793,;PIEZO1,upstream_gene_variant,,ENST00000495568,;PIEZO1,downstream_gene_variant,,ENST00000475586,;PIEZO1,downstream_gene_variant,,ENST00000491917,; C ENSG00000103335 ENST00000301015 Transcript missense_variant 4569/8072 4322/7566 1441/2521 Q/R cAg/cGg COSM1479166 1 PIEZO1 HGNC 28993 protein_coding YES CCDS54058.1 ENSP00000301015 PIEZ1_HUMAN UPI0001B300F3 NM_001142864.2 tolerated(0.25) possibly_damaging(0.78) 31/51 hmmpanther:PTHR13167,hmmpanther:PTHR13167:SF40 1 MODERATE 1 SNV 1 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC ENSG00000103335 37 0 0.00 20 8 28.57 - - - 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC - - - diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_not_supported_custom_driver_annotation_values.maf b/core/src/test/scripts/test_data/mutations/data_mutations_not_supported_custom_driver_annotation_values.maf deleted file mode 100644 index 0a23c639ab9..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_not_supported_custom_driver_annotation_values.maf +++ /dev/null @@ -1,4 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center Tumor_Sample_Barcode Verification_Status Validation_Status Mutation_Status Sequencer Chromosome Start_position End_position Variant_Classification HGVSp_Short MA:FImpact MA:link.MSA MA:link.pdb SWISSPROT cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -HSPG2 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 22078087 22078087 Missense_Mutation D820N neutral mutationassessor.org/?cm=msa&ty=f&p=PGBM_HUMAN&rb=814&re=869&var=D820N PGBM_HUMAN OTHER_value Passenger mutation test1 test1 -CSMD2 114784 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 34085156 34085156 Missense_Mutation V277I low mutationassessor.org/?cm=msa&ty=f&p=CSMD2_HUMAN&rb=202&re=303&var=V277I mutationassessor.org/pdb.php?prot=CSMD2_HUMAN&from=202&to=303&var=V277I CSMD2_HUMAN Putative_Driver Driver mutation test2 test2 -CLSPN 63967 broad.mit.edu TCGA-A1-A0SB-01 Unknown valid Unknown Illumina GAIIx chr1 35989584 35989584 Missense_Mutation F628L mutationassessor.org/?cm=msa&ty=f&p=CLSPN_HUMAN&rb=601&re=800&var=F628L CLSPN_HUMAN Putative_Passenger Passenger mutation test2 test2 diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_silent_alternative.maf b/core/src/test/scripts/test_data/mutations/data_mutations_silent_alternative.maf deleted file mode 100644 index c161231ef8c..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_silent_alternative.maf +++ /dev/null @@ -1,15 +0,0 @@ -#version 2.4 -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All -OR11H1 genome.wustl.edu GRCh37 22 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A NA getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC ENSG00000130538 65 0 0.00 38 6 13.64 - - - 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC - - - -TMEM247 genome.wustl.edu GRCh37 2 46707888 46707888 1 Frame_Shift_Del DEL G G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 0 0 TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; - ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga COSM1408208,~rs70940616 1 TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN UPI0000366EF8 NM_001145051.2 2/3 Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 -:0.0202 -:0.0439 1,0 HIGH 1 deletion 1 1,0 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 0 0.00 7 3 30.00 - - - 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC - - - -ABLIM1 genome.wustl.edu GRCh37 10 116247760 116247760 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 0 0 ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; C ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 1 ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 1,1,1 MODERATE 1 SNV 1,1,1 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC ENSG00000099204 77 0 0.00 36 13 26.53 - - - 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC - - - -ADAMTS20 genome.wustl.edu GRCh37 12 43944926 43944926 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C NA getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.Tyr80Cys p.Y80C ENST00000389420 2/39 0 0 ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; C ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 1 ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 1,1 MODERATE 1 SNV 1,1 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC ENSG00000173157 50 0 0.00 19 17 45.95 - - - 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC - - - -CADM2 genome.wustl.edu GRCh37 3 85932472 85932472 1 5'Flank SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.R81R ENST00000407528 3/10 0 0 CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; T ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 R cgC/cgT COSM1178952,COSM1178953 1 CADM2 HGNC 29849 protein_coding CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 3/10 PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,Pfam_domain:PF07686,Gene3D:2.60.40.10,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 1,1 LOW SNV 1,1 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC ENSG00000175161 57 0 0.00 22 23 51.11 - - - 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC - - - -Unknown genome.wustl.edu GRCh37 2 25678299 25678299 -1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.125 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M NA getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144C>A p.Val382Met p.V382M ENST00000406818 11/21 0 0 DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; T ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 1 DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 hmmpanther:PTHR11915:SF227,hmmpanther:PTHR11915,PIRSF_domain:PIRSF038204 1,1 MODERATE 1 SNV 1,1 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC ENSG00000138101 35 0 0.00 9 9 50.00 - - - 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC - - - -Unknown 0 genome.wustl.edu GRCh37 17 40272381 40272381 -1 Silent SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.471C>T p.= p.H157H ENST00000225916 3/18 0 0 KAT2A,synonymous_variant,p.=,ENST00000225916,NM_021078.2;CTD-2132N18.3,synonymous_variant,p.=,ENST00000592574,;RAB5C,downstream_gene_variant,,ENST00000393860,NM_201434.2;RAB5C,downstream_gene_variant,,ENST00000346213,NM_004583.3;HSPB9,upstream_gene_variant,,ENST00000355067,NM_033194.2;CTD-2132N18.3,missense_variant,p.Thr150Met,ENST00000592248,;KAT2A,synonymous_variant,p.=,ENST00000465682,;CTD-2132N18.3,3_prime_UTR_variant,,ENST00000585562,;KAT2A,upstream_gene_variant,,ENST00000592310,;KAT2A,upstream_gene_variant,,ENST00000588759,; A ENSG00000108773 ENST00000225916 Transcript synonymous_variant 525/3109 471/2514 157/837 H caC/caT rs536716483,COSM1479581 1 KAT2A HGNC 4201 protein_coding YES CCDS11417.1 ENSP00000225916 KAT2A_HUMAN K7ERS6_HUMAN UPI000000D978 NM_021078.2 3/18 hmmpanther:PTHR22880:SF124,hmmpanther:PTHR22880,Pfam_domain:PF06466,PIRSF_domain:PIRSF003048 A:0.0002 A:0 A:0 A:0.001 A:0 A:0 0,1 LOW 1 SNV 0,1 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene ENSG00000267261 40 0 0.00 30 36 54.55 - - - 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene - - - -Unknown 0 genome.wustl.edu GRCh37 5 80024722 80024722 1 Frame_Shift_Del DEL T T - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1508delT p.Leu503TrpfsTer5 p.L503Wfs*5 ENST00000265081 10/24 0 0 MSH3,frameshift_variant,p.Leu503TrpfsTer5,ENST00000265081,NM_002439.4;MSH3,non_coding_transcript_exon_variant,,ENST00000512258,; - ENSG00000113318 ENST00000265081 Transcript frameshift_variant 1586/4092 1506/3414 502/1137 S/X tcT/tc 1 MSH3 HGNC 7326 protein_coding YES CCDS34195.1 ENSP00000265081 MSH3_HUMAN UPI0000DBEE85 NM_002439.4 10/24 Superfamily_domains:SSF53150,Gene3D:3.30.420.110,Pfam_domain:PF05188,hmmpanther:PTHR11361,hmmpanther:PTHR11361:SF34 HIGH 1 deletion 2 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC ENSG00000113318 83 0 0.00 12 2 14.29 - - - 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC - - - -Unknown 0 genome.wustl.edu GRCh37 6 135507043 135507044 1 IGR INS - - A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 - - Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 2/15 0 0 MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000341911,NM_001130173.1,NM_001161658.1,NM_001161656.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000316528,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000442647,NM_001161660.1,NM_001130172.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367814,NM_001161659.1,NM_005375.2;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525369,NM_001161657.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000527615,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528774,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534121,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533624,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534044,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000420123,;MYB,upstream_gene_variant,,ENST00000430686,;MYB,non_coding_transcript_exon_variant,,ENST00000531845,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367812,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533837,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000438901,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525477,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000463282,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000339290,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533808,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525514,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529586,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526889,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526320,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531519,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533384,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531737,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529262,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526565,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528015,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526187,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525002,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528343,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528140,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528345,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525940,;MYB,frameshift_variant,p.Tyr10Ter,ENST00000531634,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000524588,; A ENSG00000118513 ENST00000367814 Transcript frameshift_variant 212-213/3302 26-27/1923 9/640 I/IX ata/atAa COSM1487247,COSM1487248 1 MYB HGNC 7545 protein_coding CCDS5174.1 ENSP00000356788 MYB_HUMAN Q9UMI7_HUMAN,Q708J0_HUMAN,Q708E9_HUMAN,Q708E3_HUMAN UPI000012FAEA NM_001161659.1,NM_005375.2 2/15 hmmpanther:PTHR10641,hmmpanther:PTHR10641:SF454 1,1 HIGH insertion 1 1,1 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC ENSG00000118513 50 0 0.00 36 4 10.00 - - - 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC - - - -NPIPB15 genome.wustl.edu GRCh37 16 74425902 74425902 1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx neutral 0.0 I358T getma.org/?cm=msa&ty=f&p=NPPL2_HUMAN&rb=283&re=382&var=I358T NA getma.org/?cm=var&var=hg19,16,74425902,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1256T>C p.Ile419Thr p.I419T ENST00000429990 7/7 0 0 NPIPB15,missense_variant,p.Ile419Thr,ENST00000429990,; C ENSG00000196436 ENST00000429990 Transcript missense_variant 1352/1428 1256/1332 419/443 I/T aTa/aCa rs141751158,COSM1479088,COSM1479089 1 NPIPB15 HGNC 34409 protein_coding YES ENSP00000411140 NPB15_HUMAN UPI000198C783 tolerated_low_confidence(0.06) benign(0.341) 7/7 hmmpanther:PTHR15438 0,1,1 MODERATE 1 SNV 0,1,1 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC ENSG00000196436 20 0 0.00 10 4 28.57 - - - 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC - - - -OTOR genome.wustl.edu GRCh37 20 16730581 16730581 1 Missense_Mutation SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.69 V97M getma.org/?cm=msa&ty=f&p=OTOR_HUMAN&rb=43&re=108&var=V97M getma.org/pdb.php?prot=OTOR_HUMAN&from=43&to=108&var=V97M getma.org/?cm=var&var=hg19,20,16730581,G,A&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.289G>A p.Val97Met p.V97M ENST00000246081 3/4 0 0 OTOR,missense_variant,p.Val97Met,ENST00000246081,NM_020157.3;OTOR,non_coding_transcript_exon_variant,,ENST00000486129,;OTOR,intron_variant,,ENST00000490148,; A ENSG00000125879 ENST00000246081 Transcript missense_variant 333/1477 289/387 97/128 V/M Gtg/Atg COSM1410526 1 OTOR HGNC 8517 protein_coding YES CCDS13124.1 ENSP00000246081 OTOR_HUMAN UPI0000047809 NM_020157.3 deleterious(0) benign(0.344) 3/4 hmmpanther:PTHR23158,Gene3D:2.30.30.40,Pfam_domain:PF07653,SMART_domains:SM00326,Superfamily_domains:SSF50044 1 MODERATE 1 SNV 1 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC ENSG00000125879 57 0 0.00 36 9 20.00 - - - 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC - - - -P2RY10 genome.wustl.edu GRCh37 X 78216689 78216689 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.672C>T p.= p.S224S ENST00000171757 4/4 0 0 P2RY10,synonymous_variant,p.=,ENST00000171757,NM_014499.2;P2RY10,synonymous_variant,p.=,ENST00000544091,NM_198333.1;P2RY10,downstream_gene_variant,,ENST00000475374,;P2RY10,downstream_gene_variant,,ENST00000461541,; T ENSG00000078589 ENST00000171757 Transcript synonymous_variant 952/1714 672/1020 224/339 S tcC/tcT COSM1491292 1 P2RY10 HGNC 19906 protein_coding YES CCDS14442.1 ENSP00000171757 P2Y10_HUMAN UPI0000050471 NM_014499.2 4/4 PROSITE_profiles:PS50262,hmmpanther:PTHR24232:SF6,hmmpanther:PTHR24232,Gene3D:1.20.1070.10,Pfam_domain:PF00001,Superfamily_domains:SSF81321 1 LOW 1 SNV 1 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC ENSG00000078589 65 0 0.00 46 10 17.86 - - - X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC - - - -PIEZO1 genome.wustl.edu GRCh37 16 88790292 88790292 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.18 Q1441R getma.org/?cm=msa&ty=f&p=PIEZ1_HUMAN&rb=58&re=1627&var=Q1441R NA getma.org/?cm=var&var=hg19,16,88790292,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.4322A>G p.Gln1441Arg p.Q1441R ENST00000301015 31/51 0 0 PIEZO1,missense_variant,p.Gln1441Arg,ENST00000301015,NM_001142864.2;PIEZO1,missense_variant,p.Gln115Arg,ENST00000474606,;PIEZO1,upstream_gene_variant,,ENST00000327397,;PIEZO1,upstream_gene_variant,,ENST00000466823,;RP5-1142A6.9,downstream_gene_variant,,ENST00000564984,;PIEZO1,non_coding_transcript_exon_variant,,ENST00000566414,;PIEZO1,upstream_gene_variant,,ENST00000419505,;PIEZO1,upstream_gene_variant,,ENST00000497793,;PIEZO1,upstream_gene_variant,,ENST00000495568,;PIEZO1,downstream_gene_variant,,ENST00000475586,;PIEZO1,downstream_gene_variant,,ENST00000491917,; C ENSG00000103335 ENST00000301015 Transcript missense_variant 4569/8072 4322/7566 1441/2521 Q/R cAg/cGg COSM1479166 1 PIEZO1 HGNC 28993 protein_coding YES CCDS54058.1 ENSP00000301015 PIEZ1_HUMAN UPI0001B300F3 NM_001142864.2 tolerated(0.25) possibly_damaging(0.78) 31/51 hmmpanther:PTHR13167,hmmpanther:PTHR13167:SF40 1 MODERATE 1 SNV 1 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC ENSG00000103335 37 0 0.00 20 8 28.57 - - - 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC - - - diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_some_silent.maf b/core/src/test/scripts/test_data/mutations/data_mutations_some_silent.maf deleted file mode 100644 index 2775c855b08..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_some_silent.maf +++ /dev/null @@ -1,15 +0,0 @@ -#version 2.4 -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All -OR11H1 genome.wustl.edu GRCh37 22 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A NA getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC ENSG00000130538 65 0 0.00 38 6 13.64 - - - 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC - - - -TMEM247 genome.wustl.edu GRCh37 2 46707888 46707888 1 Frame_Shift_Del DEL G G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 0 0 TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; - ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga COSM1408208,~rs70940616 1 TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN UPI0000366EF8 NM_001145051.2 2/3 Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 -:0.0202 -:0.0439 1,0 HIGH 1 deletion 1 1,0 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 0 0.00 7 3 30.00 - - - 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC - - - -ABLIM1 genome.wustl.edu GRCh37 10 116247760 116247760 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 0 0 ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; C ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 1 ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 1,1,1 MODERATE 1 SNV 1,1,1 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC ENSG00000099204 77 0 0.00 36 13 26.53 - - - 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC - - - -ADAMTS20 genome.wustl.edu GRCh37 12 43944926 43944926 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C NA getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.Tyr80Cys p.Y80C ENST00000389420 2/39 0 0 ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; C ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 1 ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 1,1 MODERATE 1 SNV 1,1 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC ENSG00000173157 50 0 0.00 19 17 45.95 - - - 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC - - - -CADM2 genome.wustl.edu GRCh37 3 85932472 85932472 1 5'Flank SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.R81R ENST00000407528 3/10 0 0 CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; T ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 R cgC/cgT COSM1178952,COSM1178953 1 CADM2 HGNC 29849 protein_coding CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 3/10 PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,Pfam_domain:PF07686,Gene3D:2.60.40.10,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 1,1 LOW SNV 1,1 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC ENSG00000175161 57 0 0.00 22 23 51.11 - - - 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC - - - -DTNB genome.wustl.edu GRCh37 2 25678299 25678299 -1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.125 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M NA getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144C>A p.Val382Met p.V382M ENST00000406818 11/21 0 0 DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; T ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 1 DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 hmmpanther:PTHR11915:SF227,hmmpanther:PTHR11915,PIRSF_domain:PIRSF038204 1,1 MODERATE 1 SNV 1,1 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC ENSG00000138101 35 0 0.00 9 9 50.00 - - - 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC - - - -KAT2A genome.wustl.edu GRCh37 17 40272381 40272381 -1 Silent SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.471C>T p.= p.H157H ENST00000225916 3/18 0 0 KAT2A,synonymous_variant,p.=,ENST00000225916,NM_021078.2;CTD-2132N18.3,synonymous_variant,p.=,ENST00000592574,;RAB5C,downstream_gene_variant,,ENST00000393860,NM_201434.2;RAB5C,downstream_gene_variant,,ENST00000346213,NM_004583.3;HSPB9,upstream_gene_variant,,ENST00000355067,NM_033194.2;CTD-2132N18.3,missense_variant,p.Thr150Met,ENST00000592248,;KAT2A,synonymous_variant,p.=,ENST00000465682,;CTD-2132N18.3,3_prime_UTR_variant,,ENST00000585562,;KAT2A,upstream_gene_variant,,ENST00000592310,;KAT2A,upstream_gene_variant,,ENST00000588759,; A ENSG00000108773 ENST00000225916 Transcript synonymous_variant 525/3109 471/2514 157/837 H caC/caT rs536716483,COSM1479581 1 KAT2A HGNC 4201 protein_coding YES CCDS11417.1 ENSP00000225916 KAT2A_HUMAN K7ERS6_HUMAN UPI000000D978 NM_021078.2 3/18 hmmpanther:PTHR22880:SF124,hmmpanther:PTHR22880,Pfam_domain:PF06466,PIRSF_domain:PIRSF003048 A:0.0002 A:0 A:0 A:0.001 A:0 A:0 0,1 LOW 1 SNV 0,1 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene ENSG00000267261 40 0 0.00 30 36 54.55 - - - 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene - - - -MSH3 genome.wustl.edu GRCh37 5 80024722 80024722 1 Frame_Shift_Del DEL T T - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1508delT p.Leu503TrpfsTer5 p.L503Wfs*5 ENST00000265081 10/24 0 0 MSH3,frameshift_variant,p.Leu503TrpfsTer5,ENST00000265081,NM_002439.4;MSH3,non_coding_transcript_exon_variant,,ENST00000512258,; - ENSG00000113318 ENST00000265081 Transcript frameshift_variant 1586/4092 1506/3414 502/1137 S/X tcT/tc 1 MSH3 HGNC 7326 protein_coding YES CCDS34195.1 ENSP00000265081 MSH3_HUMAN UPI0000DBEE85 NM_002439.4 10/24 Superfamily_domains:SSF53150,Gene3D:3.30.420.110,Pfam_domain:PF05188,hmmpanther:PTHR11361,hmmpanther:PTHR11361:SF34 HIGH 1 deletion 2 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC ENSG00000113318 83 0 0.00 12 2 14.29 - - - 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC - - - -MYB genome.wustl.edu GRCh37 6 135507043 135507044 1 Frame_Shift_Ins INS - - A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 - - Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 2/15 0 0 MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000341911,NM_001130173.1,NM_001161658.1,NM_001161656.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000316528,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000442647,NM_001161660.1,NM_001130172.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367814,NM_001161659.1,NM_005375.2;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525369,NM_001161657.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000527615,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528774,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534121,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533624,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534044,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000420123,;MYB,upstream_gene_variant,,ENST00000430686,;MYB,non_coding_transcript_exon_variant,,ENST00000531845,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367812,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533837,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000438901,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525477,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000463282,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000339290,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533808,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525514,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529586,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526889,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526320,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531519,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533384,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531737,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529262,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526565,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528015,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526187,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525002,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528343,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528140,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528345,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525940,;MYB,frameshift_variant,p.Tyr10Ter,ENST00000531634,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000524588,; A ENSG00000118513 ENST00000367814 Transcript frameshift_variant 212-213/3302 26-27/1923 9/640 I/IX ata/atAa COSM1487247,COSM1487248 1 MYB HGNC 7545 protein_coding CCDS5174.1 ENSP00000356788 MYB_HUMAN Q9UMI7_HUMAN,Q708J0_HUMAN,Q708E9_HUMAN,Q708E3_HUMAN UPI000012FAEA NM_001161659.1,NM_005375.2 2/15 hmmpanther:PTHR10641,hmmpanther:PTHR10641:SF454 1,1 HIGH insertion 1 1,1 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC ENSG00000118513 50 0 0.00 36 4 10.00 - - - 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC - - - -NPIPB15 genome.wustl.edu GRCh37 16 74425902 74425902 1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx neutral 0.0 I358T getma.org/?cm=msa&ty=f&p=NPPL2_HUMAN&rb=283&re=382&var=I358T NA getma.org/?cm=var&var=hg19,16,74425902,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1256T>C p.Ile419Thr p.I419T ENST00000429990 7/7 0 0 NPIPB15,missense_variant,p.Ile419Thr,ENST00000429990,; C ENSG00000196436 ENST00000429990 Transcript missense_variant 1352/1428 1256/1332 419/443 I/T aTa/aCa rs141751158,COSM1479088,COSM1479089 1 NPIPB15 HGNC 34409 protein_coding YES ENSP00000411140 NPB15_HUMAN UPI000198C783 tolerated_low_confidence(0.06) benign(0.341) 7/7 hmmpanther:PTHR15438 0,1,1 MODERATE 1 SNV 0,1,1 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC ENSG00000196436 20 0 0.00 10 4 28.57 - - - 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC - - - -OTOR genome.wustl.edu GRCh37 20 16730581 16730581 1 Missense_Mutation SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.69 V97M getma.org/?cm=msa&ty=f&p=OTOR_HUMAN&rb=43&re=108&var=V97M getma.org/pdb.php?prot=OTOR_HUMAN&from=43&to=108&var=V97M getma.org/?cm=var&var=hg19,20,16730581,G,A&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.289G>A p.Val97Met p.V97M ENST00000246081 3/4 0 0 OTOR,missense_variant,p.Val97Met,ENST00000246081,NM_020157.3;OTOR,non_coding_transcript_exon_variant,,ENST00000486129,;OTOR,intron_variant,,ENST00000490148,; A ENSG00000125879 ENST00000246081 Transcript missense_variant 333/1477 289/387 97/128 V/M Gtg/Atg COSM1410526 1 OTOR HGNC 8517 protein_coding YES CCDS13124.1 ENSP00000246081 OTOR_HUMAN UPI0000047809 NM_020157.3 deleterious(0) benign(0.344) 3/4 hmmpanther:PTHR23158,Gene3D:2.30.30.40,Pfam_domain:PF07653,SMART_domains:SM00326,Superfamily_domains:SSF50044 1 MODERATE 1 SNV 1 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC ENSG00000125879 57 0 0.00 36 9 20.00 - - - 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC - - - -P2RY10 genome.wustl.edu GRCh37 X 78216689 78216689 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.672C>T p.= p.S224S ENST00000171757 4/4 0 0 P2RY10,synonymous_variant,p.=,ENST00000171757,NM_014499.2;P2RY10,synonymous_variant,p.=,ENST00000544091,NM_198333.1;P2RY10,downstream_gene_variant,,ENST00000475374,;P2RY10,downstream_gene_variant,,ENST00000461541,; T ENSG00000078589 ENST00000171757 Transcript synonymous_variant 952/1714 672/1020 224/339 S tcC/tcT COSM1491292 1 P2RY10 HGNC 19906 protein_coding YES CCDS14442.1 ENSP00000171757 P2Y10_HUMAN UPI0000050471 NM_014499.2 4/4 PROSITE_profiles:PS50262,hmmpanther:PTHR24232:SF6,hmmpanther:PTHR24232,Gene3D:1.20.1070.10,Pfam_domain:PF00001,Superfamily_domains:SSF81321 1 LOW 1 SNV 1 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC ENSG00000078589 65 0 0.00 46 10 17.86 - - - X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC - - - -PIEZO1 genome.wustl.edu GRCh37 16 88790292 88790292 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.18 Q1441R getma.org/?cm=msa&ty=f&p=PIEZ1_HUMAN&rb=58&re=1627&var=Q1441R NA getma.org/?cm=var&var=hg19,16,88790292,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.4322A>G p.Gln1441Arg p.Q1441R ENST00000301015 31/51 0 0 PIEZO1,missense_variant,p.Gln1441Arg,ENST00000301015,NM_001142864.2;PIEZO1,missense_variant,p.Gln115Arg,ENST00000474606,;PIEZO1,upstream_gene_variant,,ENST00000327397,;PIEZO1,upstream_gene_variant,,ENST00000466823,;RP5-1142A6.9,downstream_gene_variant,,ENST00000564984,;PIEZO1,non_coding_transcript_exon_variant,,ENST00000566414,;PIEZO1,upstream_gene_variant,,ENST00000419505,;PIEZO1,upstream_gene_variant,,ENST00000497793,;PIEZO1,upstream_gene_variant,,ENST00000495568,;PIEZO1,downstream_gene_variant,,ENST00000475586,;PIEZO1,downstream_gene_variant,,ENST00000491917,; C ENSG00000103335 ENST00000301015 Transcript missense_variant 4569/8072 4322/7566 1441/2521 Q/R cAg/cGg COSM1479166 1 PIEZO1 HGNC 28993 protein_coding YES CCDS54058.1 ENSP00000301015 PIEZ1_HUMAN UPI0001B300F3 NM_001142864.2 tolerated(0.25) possibly_damaging(0.78) 31/51 hmmpanther:PTHR13167,hmmpanther:PTHR13167:SF40 1 MODERATE 1 SNV 1 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC ENSG00000103335 37 0 0.00 20 8 28.57 - - - 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC - - - diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_test_variant_types.maf b/core/src/test/scripts/test_data/mutations/data_mutations_test_variant_types.maf deleted file mode 100644 index e6aee71b67d..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_test_variant_types.maf +++ /dev/null @@ -1,11 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short -INHA 3623 . GRCh37 2 220439701 220439700 + Unknown INS - - CT novel TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 - - p.L189Cfs*2 -INHA 3623 . GRCh37 2 220439700 220439701 + Unknown INS AAA - CT novel TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 CTA - p.L189Cfs*2 -MTOR 2475 . GRCh37 1 11290179 11290180 + Unknown DEL A A - rs35067541 TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A c.2779+803del p.Tr27* -MTOR 2475 . GRCh37 1 11290179 11290179 + Unknown DEL A AA - rs35067541 TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A AA c.2779+803del p.Tr27* -CHD1L 9557 . GRCh37 1 146728217 146728217 + Splice_Site SNP GG G A rs942221386 TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 GG G c.494+1G>A p.X165_splice -CHD1L 9557 . GRCh37 1 146728217 146728217 + Splice_Site SNP - G A rs942221386 TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 - G c.494+1G>A p.X165_splice -CHD1L 9557 . GRCh37 1 146728217 146728217 + Splice_Site DNP TGA TG CA novel TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 TGA TG -CHD1L 9557 . GRCh37 1 146728217 146728217 + Splice_Site TNP TGA TGAA CAA novel TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 TGA TGAA -CHD1L 9557 . GRCh37 1 146728217 146728217 + Splice_Site ONP TGA TGA CAA novel TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 TGA TGA -CHD1L 9557 . GRCh37 1 146728217 146728217 + Splice_Site ONP test AAAA AAAA novel TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 AAAA diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_too_long_hgvsp_short.maf b/core/src/test/scripts/test_data/mutations/data_mutations_too_long_hgvsp_short.maf deleted file mode 100644 index 58bfa356063..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_too_long_hgvsp_short.maf +++ /dev/null @@ -1,3 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id HGVSP_Short Variant_Classification Variant_Type Tumor_Sample_Barcode Chromosome Start_Position End_Position Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 -A1CF 29974 p.D424E Missense_Mutation SNP TCGA-A1-A0SB-01 10 52573692 52573692 G G T -FLG 2312 p.Q3631_Q3632insHQSADSSRHSGIGHGQASSAVRDSGHRGYSGSQASDSEGHSEDSDTQSVSAQGKAGPHQQSHKESARGQSGESSGRSGSFLYQVSTHEQSESTHGQSAPSTGGRQGSHYDQAQDSSRHSASQEGQDTIRGHPGPSRGGRQGSHQEQSVDRSGHSGSHHSHTTSQGRSDASRGQSGSRSASRKTYDKEQSGDGSRHSGSHHHEASSWADSSRHSLVGQGQSSGPRTSRPRGSSVSQDSDSEGHSEDSERRSGSASRNHHGSAQEQSRDGSRHPRSHHEDRAGHGHSAESSRQSGTHHAENSSGGQAASSHEQARSSAGERHGSHHQQSADSSRHSGIGHGQASSAVRDSGHRGSSGSQASDSEGHSEDSDTQSVSAHGQAGPHQQSHQESTRGRSAGRSGRSGSFLYQVSTHEQSESAHGRTGTSTGGRQGSHHKQARDSSRHSTSQEGQDTIHGHPGSSSGGRQGSHYEQLVDRSGHSGSHHSHTTSQGRSDASHGHSGSRSASRQTRNDEQSGDGSRHSGSRHHEASSRADSSGHSQVGQGQSEGPRTSRNWGSSFSQDSDSQGHSEDSERWSGSASRNHHGSAQEQLRDGSRHPRSHQEDRAGHGHSADSSRQSGTRHTQTSSGGQAASSHEQARSSAGERHGSHHQQSADSSRHSGIGHGQASSAVRDSGHRGYSGSQASDNEGHSEDSDTQSVSAHGQAGSHQQSHQESARGRSGETSGHSGSFLYQVSTHEQSESSHGWTGPSTRGRQGSRHEQAQDSSRHSASQDGQDTIRGHPGSSRGGRQGYHHEHSVDSSGHSGSHHSHTTSQGRSDASRGQSGSRSASRTTRNEEQSGDGSRHSGSRHHEASTHADISRHSQAVQGQSEGSRRSRRQGSSVSQDSDSEGHSEDSERWSGSASRNHHGSAQEQLRDGSRHPRSHQEDRAGHGHSADSSRQSGTRHTQTSSGGQAASSHEQARSSAGERHGSHHQQSADSSRHSGIGHGQASSAVRDSGHRGYSGSQASDNEGHSEDSDTQSVSAHGQAGSHQQSHQESARGRSGETSGHSGSFLYQVSTHEQSESSHGWTGPSTRGRQGSRHEQAQDSSRHSASQYGQDTIRGHPGSSRGGRQGYHHEHSVDSSGHSGSHHSHTTSQGRSDASRGQSGSRSASRTTRNEEQSGDSSRHSVSRHHEASTHADISRHSQAVQGQSEGSRRSRRQGSSVSQDSDSEGHSEDSERWSGSASRNHRGSVQEQSRHGSRHPRSHHEDRAGHGHSADRSRQSGTRHAETSSGGQAASSHEQARSSPGERHGSRHQQSADSSRHSGIPRGQASSAVRDSRHWGSSGSQASDSEGHSEESDTQSVSGHGQAGPHQQSHQESARDRSGGRSGRSGSFLYQVSTHEQSESAHGRTRTSTGRRQGSHHEQARDSSRHSASQEGQDTIRGHPGSSRRGRQGSHYEQSVDRSGHSGSHHSHTTSQGRSDASRGQSGSRSASRQTRNDEQSGDGSRHSWSHHHEASTQADSSRHSQSGQGQSAGPRTSRNQGSSVSQDSDSQGHSEDSERWSGSASRNHRGSAQEQSRDGSRHPTSHHEDRAGHGHSAESSRQSGTHHAENSSGGQAASSHEQARSSAGERHGSHHQ In_Frame_Ins DUP:TANDEM TCGA-A1-A0SB-01 1 152276466 152281329 C C CTGCTGGTGGTGGGATCCATGTCTCTCTCCTGCACTTGATCTTGCCTGTTCATGGGATGATGCAGCCTGTCCACCAGAGGAATTCTCTGCATGATGAGTGCCTGATTGTCTGGAGCTCTCTGCAGAGTGCCCGTGACCGGCTCTGTCTTCGTGATGGGACGTGGGGTGTCTGGAGCCATCTCTTGACTGCTCCTGAGCAGATCCACGATGGTTTCTGGAAGCAGACCCAGACCACCTCTCAGAGTCTTCTGAGTGTCCCTGACTGTCACTGTCCTGGCTAACACTGGATCCCTGGTTCCTGCTTGTCCTGGGCCCCGCTGATTGTCCCTGGCCGGACTGTGAGTGTCTAGAGCTGTCCGCCTGAGTGGAAGCTTCATGGTGATGCGACCATGAGTGCCTGGAGCCATCTCCTGATTGTTCGTCATTACGAGTTTGTCTGCTGGCACTTCTGGATCCTGACTGCCCACGGGAGGCATCAGACCTTCCCTGGGATGTGGTGTGGCTGTGATGGGACCCTGAGTGTCCAGACCTATCTACCGATTGCTCGTAGTGGGATCCCTGCCTTCCTCTTCTGCTTGACCCCGGGTGTCCACGAATGGTGTCCTGACCCTCTTGGGACGCTGAGTGCCTGGAGCTGTCTCGTGCCTGCTCGTGGTGGGATCCTTGTCTTCGTCCAGTGCTGGTCCTGGTCCGCCCATGGGCAGACTCAGACTGTTCATGAGTGCTCACCTGGTAGAGGAAAGACCCTGAACGTCCAGACCTTCCCCCTGACCGGTCACGTGCGGACTCTTGGTGGCTCTGCTGATGGGGCCCAGCCTGTCCATGGCCTGACACTGACTGTGTGTCTGACTCTTCTGAATGTCCCTCACTATCACTGGCCTGACTACCACTGGACCCCCAGTGTCTACTGTCTCTGACTGCAGATGAAGCTTGTCCACGCGGAATGCCTGAGTGTCTGGAGCTGTCTGCTGACTGCTGGTGGCGGGATCCGTGTCTCTCTCCTGGACTTGATCTTGCCTGTTCATGGGATGATGCAGCCTGTCCACCAGAGGAAGTCTCTGCGTGACGAGTGCCTGATTGTCTGGAGCGGTCTGCAGAGTGCCCGTGACCGGCTCTGTCTTCGTGATGGGACCTGGGGTGTCTGGAGCCGTGCCTTGACTGCTCCTGAACAGATCCACGATGGTTTCTGGAAGCAGACCCAGACCACCTCTCAGAGTCTTCTGAATGTCCCTCACTGTCACTGTCCTGGCTCACACTGGATCCCTGGCGCCTGCTTCTCCTGGACCCCTCTGATTGTCCCTGGACTGCCTGTGAGTGTCTAGAGATGTCGGCATGAGTGGAAGCTTCATGGTGACGTGACACTGAGTGCCTGGAGCTGTCTCCTGATTGTTCCTCATTACGTGTTGTTCTGCTTGCACTTCTGGATCCTGACTGCCCACGGGAGGCATCAGACCTTCCCTGGGATGTGGTGTGGCTGTGATGGGACCCTGAGTGTCCAGAGCTATCTACCGAATGCTCGTGGTGGTACCCCTGCCTTCCTCCTCTGCTTGACCCCGGGTGTCCACGAATGGTGTCCTGACCGTATTGGGATGCTGAGTGCCTGGAGCTGTCTTGTGCCTGCTCATGGCGGGATCCTTGTCTTCCTCTAGTGCTGGGCCCCGTCCATCCATGGGAGGACTCAGACTGTTCATGAGTGCTCACCTGGTAGAGGAAAGATCCTGAATGTCCAGACGTTTCCCCTGACCGGCCACGTGCGGACTCTTGGTGGCTCTGCTGATGGGACCCAGCCTGTCCGTGGGCTGACACTGACTGTGTGTCTGAGTCTTCTGAATGTCCCTCATTGTCACTGGCCTGACTACCACTGTACCCTCGGTGTCCACTGTCTCTGACTGCAGATGAAGCTTGTCCGTGCCCAATGCCTGAGTGTCTGGAGCTGTCTGCTGACTGCTGGTGGTGGGATCCATGTCTTTCTCCTGCACTTGATCTTGCCTGTTCATGGGATGATGCAGCCTGTCCACCAGAGGAAGTCTGTGTGTGACGAGTGCCTGATTGTCTGGAGCTGTCTGCAGAGTGCCCATGACCAGCTCTGTCTTCTTGATGGGACCTGGGGTGTCTGGAGCCATCTCTTAGCTGCTCCTGAGCAGATCCATGATGGTTTCTGGAAGCAGACCCAGACCACCTCTCAGAGTCTTCTGAATGTCCCTCACTGTCACTGTCCTGGCTCACACTGGATCCCTGGCGCCTGCTTCTCCTGGACCCCTCTGATTGTCCCTGGACTGCCTGTGAGTGTCTAGAGATGTCGGCATGAGTGGAAGCTTCATGGTGACGCGACCCTGAGTGCCTGGAGCCGTCTCCTGATTGTTCCTCATTACGTGTTGTTCTGCTTGCACTTCTGGATCCTGACTGCCCACGGGAGGCATCAGACCTTCCCTGGGATGTGGTGTGGCTGTGATGGGACCCTGAGTGTCCAGAGCTATCTACCGAATGCTCGTGGTGGTACCCCTGCCTTCCTCCTCTGCTTGACCCCGGGTGTCCACGAATGGTGTCCTGACCGTCTTGGGATGCTGAGTGCCTGGAGCTGTCTTGTGCCTGCTCATGGCGGGATCCTTGTCTTCCTCTAGTGCTGGGCCCCGTCCATCCATGGGAGGACTCAGACTGTTCATGAGTGCTCACCTGGTAGAGGAAAGATCCTGAATGTCCAGACGTTTCCCCTGACCGGCCACGTGCGGACTCTTGGTGGCTCTGCTGATGGGACCCAGCCTGTCCGTGGGCTGACACTGACTGTGTGTCTGAGTCTTCTGAATGTCCCTCATTGTCACTGGCCTGACTACCACTGTACCCTCGGTGTCCACTGTCTCTGACTGCAGATGAAGCTTGTCCGTGCCCAATGCCTGAGTGTCTGGAGCTGTCTGCTGACTGCTGGTGGTGGGATCCATGTCTTTCTCCTGCACTTGATCTTGCCTGTTCATGGGATGATGCAGCCTGTCCACCAGAGGAAGTCTGTGTGTGACGAGTGCCTGATTGTCTGGAGCTGTCTGCAGAGTGCCCATGACCAGCTCTGTCTTCTTGATGGGACCTGGGGTGTCTGGAGCCATCTCTTAGCTGCTCCTGAGCAGATCCATGATGGTTTCTGGAAGCAGACCCAGACCACCTCTCAGAGTCTTCTGAGTGTCCCTGACTGTCACTGTCCTGGCTAAAACTGGATCCCCAGTTCCTGCTTGTCCTGGGCCCCTCTGATTGTCCCTGGCCCACCTGCGAGTGTCCAGAGCTGTCGGCCCGAGAGGAAGCTTCATGGTGACGCGACCCTGAGTGCCTGGAGCCGTCTCCTGATTGTTCATCGTTACGAGTTTGTCTGCTTGCACTTCTGGATCCTGAGTGCCCATGGGAGGCATCAGACCTTCCCTGGGATGTGGTGTGGCTGTGATGAGACCCTGAGTGTCCAGATCTATCTACCAATTGCTCGTAGTGGGATCCCTGCCTTCCTCCACTGCTTGACCCCGGGTGTCCATGAATGGTGTCCTGACCCTCTTGGGACGTTGAGTGCCTGGAGCTGTCTCGTGCCTGCTTGTGGTGGGATCCTTGTCTTCCTCCAGTGCTGGTCCCGGTCCGTCCATGGGCGGACTCAGACTGTTCATGAGTGCTCACCTGGTAGAGGAAAGACCCTGAACGTCCAGACCTTCCTGCTGACCGGCCACGTGTGGACTCTTGGTGGCTCTGCTGATGGGGCCCAGCCTGTCCGTGGGCTGACACTGACTGTGTGTCTGAGTCTTCTGAATGTCCCTCACTGTCACTGGCCTGACTACCACTGGACCCTCGGTGTCCACTGTCTCTGACTGCAGATGAAGCTTGTCCGTGCCCAATGCCTGAGTGTCTGGAGCTGTCTGCTGACTGCTGGTGGTGGGATCCGTGTCTCTCTCCTGCACTTGATCTTGCCTGTTCATGGGATGATGCAGCCTGTCCACCAGAGGAATTCTCTGCATGATGAGTGCCTGATTGTCTGGAGCTCTCTGCAGAGTGCCCATGACCGGCTCTGTCTTCGTGATGGGACCTGGGGTGTCTGGAGCCATCTCTTGACTGCTCCTGAGCAGATCCATGATGGTTTCTGGACGCAGACCCAGACCGCCTCTCAGAATCTTCTGAGTGTCCCTCACTGTCACTGTCCTGGCTAACACTGGATCCCCGGGGCCTGCTTGTCCTGGGCCCTGATGATTGTCCCTGGCCCACCAGTGAGTGTCTAGAGCTGTCGGCCCAAGAGGAAGCTTCATGATGATGCGACCCTGAGTGCCTAGAGCCATCTCCTGATTGTTCCTTGTCATATGTTTTTCTGCTTGCACTTCTGGATCCTGACTGCCCACGGGAGGCATCAGACCTTCCCTGGGATGTGGTGTGGCTGTGATGAGACCCTGAGTGTCCAGACCTATCTACCGATTGCTCTTGGTGGGACCCCTGTCTTCCTCCTCTGCTTGGCCCCGGGTGTCCACGAATGGTGTCCTGACCCTCTTGGGATGCTGAGTGCCTGGAGCTGTCTTGTGCCTGATCATAATGGGATCCTTGTCTTCCTCCAGTGCTGGGCGCAGACTGTCCATGGGTGGACTCAGACTGTTCATGAGTGCTCACCTGGTAGAGGAAAGACCCTGAACGTCCAGAGCTTTCCCCTGACTGGCCACGTGCGGACTCTTTGTGGCTCTGCTGATGGGGCCCAGCTTTTCCCTGTGCTGACACTGACTGTGTGTCTGAGTCTTCTGAATGTCCCTCACTGTCACTGGCCTGACTACCACTGTACCCTCGGTGTCCACTGTCTCTGACTGCAGATGAAGCTTGTCCATGCCCAATGCCTGAGTGTCTGGAGCTGTCTGCTGACTGG diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_validation_status.maf b/core/src/test/scripts/test_data/mutations/data_mutations_validation_status.maf deleted file mode 100644 index a89e953da67..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_validation_status.maf +++ /dev/null @@ -1,7 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation Validation_method -OR11H1 genome.wustl.edu GRCh37 22 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A NA NA NA NA Unknown valid unknown Phase_IV WXS Sanger_PCR_WGA 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1.0 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC ENSG00000130538 65 0 0.0 38 6 13.64 - - - 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC - - - Putative_Driver Test driver Sanger_PCR_WGA -TMEM247 genome.wustl.edu GRCh37 2 46707888 46707888 1 Missense_Mutation DEL - G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G A C - X Unknown valid unknown Phase_IV WXS Sanger_PCR_WGA 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 0 0 TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; - ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga COSM1408208,~rs70940616 1 TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN UPI0000366EF8 NM_001145051.2 2/3 Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 -:0.0202 -:0.0439 1 HIGH 1.0 deletion 1.0 1 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n 1 known frame_shift_del c.462 p.A155fs 83 - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 0 0.0 7 3 30.0 - - - 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n 1 known frame_shift_del c.462 p.A155fs 83 - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC - - - Putative_Passenger Test passenger Class 2 Class annotation Sanger_PCR_WGA -ABLIM1 genome.wustl.edu GRCh37 10 116247760 116247760 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T A C - - Unknown Invalid unknown Phase_IV WXS Sanger_PCR_WGA 1 dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 0 0 ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; C ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 1 ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 1,1,1 MODERATE 1.0 SNV 1,1,1 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC ENSG00000099204 77 0 0.0 36 13 26.53 - - - 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC - - - Putative_Driver Test driver Class 1 Class annotation Sanger_PCR_WGA -ADAMTS20 genome.wustl.edu GRCh37 12 43944926 43944926 -1 Missense_Mutation SNP A T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T A A A A Unknown Invalid unknown Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.Tyr80Cys p.Y80C ENST00000389420 2/39 0 0 ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; C ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 1 ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 1,1 MODERATE 1.0 SNV 1,1 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC ENSG00000173157 50 0 0.0 19 17 45.95 - - - 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC - - - Unknown Class 4 Class annotation Sanger_PCR_WGA -CADM2 genome.wustl.edu GRCh37 3 85932472 85932472 1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C A C - C Unknown Valid Germline Phase_IV WXS Sanger_PCR_WGA 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.R81R ENST00000407528 3/10 0 0 CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; T ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 R cgC/cgT COSM1178952,COSM1178953 1 CADM2 HGNC 29849 protein_coding CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 3/10 PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,Pfam_domain:PF07686,Gene3D:2.60.40.10,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 1,1 LOW SNV 1,1 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n 1 known silent c.249 p.R83 920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC ENSG00000175161 57 0 0.0 22 23 51.11 - - - 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n 1 known silent c.249 p.R83 920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC - - - Putative_Driver Test driver Class 4 Class annotation Sanger_PCR_WGA -DTNB genome.wustl.edu GRCh37 2 25678299 25678299 -1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C A A A C Unknown Valid Somatic Phase_IV WXS Sanger_PCR_WGA 1 dbGAP Illumina GAIIx medium 2125.0 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144C>A p.Val382Met p.V382M ENST00000406818 11/21 0 0 DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; T ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 1 DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 hmmpanther:PTHR11915:SF227,hmmpanther:PTHR11915,PIRSF_domain:PIRSF038204 1,1 MODERATE 1.0 SNV 1,1 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC ENSG00000138101 35 0 0.0 9 9 50.0 - - - 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC - - - Putative_Passenger Test passenger Class 1 Class annotation Sanger_PCR_WGA diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_vs.maf b/core/src/test/scripts/test_data/mutations/data_mutations_vs.maf deleted file mode 100644 index 95378db1490..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_vs.maf +++ /dev/null @@ -1,14 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -OR11H1 genome.wustl.edu GRCh37 22 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown --- Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1.0 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn 0 no_errors OR11H1 HGNC ENSG00000130538 65 0 0 38 6 13.64 0 0 0 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn 0 no_errors OR11H1 HGNC 0 0 0 Putative_Driver Test driver -TMEM247 genome.wustl.edu GRCh37 2 46707888 46707888 1 Frame_Shift_Del DEL G G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Test Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 0 0 TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; -0 ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga COSM1408208,~rs70940616 1 TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN UPI0000366EF8 NM_001145051.2 2/3 Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 -:0.0202 -:0.0439 1 HIGH 1.0 deletion 1.0 1 2 46707888 46707888 G -0 DEL TMEM247 ENST00000434431 human ensembl 69_37n 1 known frame_shift_del c.462 p.A155fs 83 0 no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 0 0 7 3 30.0 0 0 0 2 46707888 46707888 G -0 DEL TMEM247 ENST00000434431 human ensembl 69_37n 1 known frame_shift_del c.462 p.A155fs 83 0 no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC 0 0 0 Putative_Passenger Test passenger Class 2 Class annotation -ABLIM1 genome.wustl.edu GRCh37 10 116247760 116247760 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 0 0 ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; C ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 1 ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 1,1,1 MODERATE 1.0 SNV 1,1,1 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM 0 no_errors ABLIM1 HGNC ENSG00000099204 77 0 0 36 13 26.53 0 0 0 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM 0 no_errors ABLIM1 HGNC 0 0 0 Putative_Driver Test driver Class 1 Class annotation -ADAMTS20 genome.wustl.edu GRCh37 12 43944926 43944926 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.Tyr80Cys p.Y80C ENST00000389420 2/39 0 0 ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; C ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 1 ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 1,1 MODERATE 1.0 SNV 1,1 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B 0 no_errors ADAMTS20 HGNC ENSG00000173157 50 0 0 19 17 45.95 0 0 0 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B 0 no_errors ADAMTS20 HGNC 0 0 0 Unknown Class 4 Class annotation -CADM2 genome.wustl.edu GRCh37 3 85932472 85932472 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.R81R ENST00000407528 3/10 0 0 CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; T ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 R cgC/cgT COSM1178952,COSM1178953 1 CADM2 HGNC 29849 protein_coding CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 3/10 PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,Pfam_domain:PF07686,Gene3D:2.60.40.10,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 1,1 LOW SNV 1,1 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n 1 known silent c.249 p.R83 920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like 0 no_errors CADM2 HGNC ENSG00000175161 57 0 0 22 23 51.11 0 0 0 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n 1 known silent c.249 p.R83 920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like 0 no_errors CADM2 HGNC 0 0 0 Putative_Driver Test driver Class 4 Class annotation -DTNB genome.wustl.edu GRCh37 2 25678299 25678299 -1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2125.0 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144C>A p.Val382Met p.V382M ENST00000406818 11/21 0 0 DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; T ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 1 DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 hmmpanther:PTHR11915:SF227,hmmpanther:PTHR11915,PIRSF_domain:PIRSF038204 1,1 MODERATE 1.0 SNV 1,1 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ 0 no_errors DTNB HGNC ENSG00000138101 35 0 0 9 9 50.0 0 0 0 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ 0 no_errors DTNB HGNC 0 0 0 Putative_Passenger Test passenger Class 1 Class annotation -KAT2A genome.wustl.edu GRCh37 17 40272381 40272381 -1 Silent SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.471C>T p.= p.H157H ENST00000225916 3/18 0 0 KAT2A,synonymous_variant,p.=,ENST00000225916,NM_021078.2;CTD-2132N18.3,synonymous_variant,p.=,ENST00000592574,;RAB5C,downstream_gene_variant,,ENST00000393860,NM_201434.2;RAB5C,downstream_gene_variant,,ENST00000346213,NM_004583.3;HSPB9,upstream_gene_variant,,ENST00000355067,NM_033194.2;CTD-2132N18.3,missense_variant,p.Thr150Met,ENST00000592248,;KAT2A,synonymous_variant,p.=,ENST00000465682,;CTD-2132N18.3,3_prime_UTR_variant,,ENST00000585562,;KAT2A,upstream_gene_variant,,ENST00000592310,;KAT2A,upstream_gene_variant,,ENST00000588759,; A ENSG00000108773 ENST00000225916 Transcript synonymous_variant 525/3109 471/2514 157/837 H caC/caT rs536716483,COSM1479581 1 KAT2A HGNC 4201 protein_coding YES CCDS11417.1 ENSP00000225916 KAT2A_HUMAN K7ERS6_HUMAN UPI000000D978 NM_021078.2 3/18 hmmpanther:PTHR22880:SF124,hmmpanther:PTHR22880,Pfam_domain:PF06466,PIRSF_domain:PIRSF003048 A:0.0002 A:0 A:0 A:0.001 A:0 A:0 0,1 LOW 1.0 SNV 0,1 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom 0 no_errors CTD-2132N18.3 Clone_based_vega_gene ENSG00000267261 40 0 0 30 36 54.55 0 0 0 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom 0 no_errors CTD-2132N18.3 Clone_based_vega_gene 0 0 0 Putative_Driver Test driver Class 1 Class annotation -MSH3 genome.wustl.edu GRCh37 5 80024722 80024722 1 Frame_Shift_Del DEL T T - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1508delT p.Leu503TrpfsTer5 p.L503Wfs*5 ENST00000265081 10/24 0 0 MSH3,frameshift_variant,p.Leu503TrpfsTer5,ENST00000265081,NM_002439.4;MSH3,non_coding_transcript_exon_variant,,ENST00000512258,; -0 ENSG00000113318 ENST00000265081 Transcript frameshift_variant 1586/4092 1506/3414 502/1137 S/X tcT/tc 1 MSH3 HGNC 7326 protein_coding YES CCDS34195.1 ENSP00000265081 MSH3_HUMAN UPI0000DBEE85 NM_002439.4 10/24 Superfamily_domains:SSF53150,Gene3D:3.30.420.110,Pfam_domain:PF05188,hmmpanther:PTHR11361,hmmpanther:PTHR11361:SF34 HIGH 1.0 deletion 2.0 5 80024722 80024722 T -0 DEL MSH3 ENST00000265081 human ensembl 69_37n 1 known frame_shift_del c.1506 p.L503fs 998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C 0 no_errors MSH3 HGNC ENSG00000113318 83 0 0 12 2 14.29 0 0 0 5 80024722 80024722 T -0 DEL MSH3 ENST00000265081 human ensembl 69_37n 1 known frame_shift_del c.1506 p.L503fs 998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C 0 no_errors MSH3 HGNC 0 0 0 Putative_Passenger Test passenger Class 3 Class annotation -MYB genome.wustl.edu GRCh37 6 135507043 135507044 1 Frame_Shift_Ins INS - - A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 -0 -0 Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 2/15 0 0 MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000341911,NM_001130173.1,NM_001161658.1,NM_001161656.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000316528,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000442647,NM_001161660.1,NM_001130172.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367814,NM_001161659.1,NM_005375.2;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525369,NM_001161657.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000527615,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528774,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534121,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533624,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534044,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000420123,;MYB,upstream_gene_variant,,ENST00000430686,;MYB,non_coding_transcript_exon_variant,,ENST00000531845,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367812,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533837,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000438901,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525477,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000463282,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000339290,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533808,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525514,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529586,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526889,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526320,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531519,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533384,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531737,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529262,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526565,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528015,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526187,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525002,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528343,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528140,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528345,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525940,;MYB,frameshift_variant,p.Tyr10Ter,ENST00000531634,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000524588,; A ENSG00000118513 ENST00000367814 Transcript frameshift_variant 212-213/3302 26-27/1923 9/640 I/IX ata/atAa COSM1487247,COSM1487248 1 MYB HGNC 7545 protein_coding CCDS5174.1 ENSP00000356788 MYB_HUMAN Q9UMI7_HUMAN,Q708J0_HUMAN,Q708E9_HUMAN,Q708E3_HUMAN UPI000012FAEA NM_001161659.1,NM_005375.2 2/15 hmmpanther:PTHR10641,hmmpanther:PTHR10641:SF454 1,1 HIGH insertion 1.0 1,1 6 135507043 135507044 -0 A INS MYB ENST00000341911 human ensembl 69_37n 1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom 0 no_errors MYB HGNC ENSG00000118513 50 0 0 36 4 10.0 0 0 0 6 135507043 135507044 -0 A INS MYB ENST00000341911 human ensembl 69_37n 1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom 0 no_errors MYB HGNC 0 0 0 Putative_Passenger Test passenger -NPIPB15 genome.wustl.edu GRCh37 16 74425902 74425902 1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx neutral 0.0 I358T getma.org/?cm=msa&ty=f&p=NPPL2_HUMAN&rb=283&re=382&var=I358T getma.org/?cm=var&var=hg19,16,74425902,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1256T>C p.Ile419Thr p.I419T ENST00000429990 7/7 0 0 NPIPB15,missense_variant,p.Ile419Thr,ENST00000429990,; C ENSG00000196436 ENST00000429990 Transcript missense_variant 1352/1428 1256/1332 419/443 I/T aTa/aCa rs141751158,COSM1479088,COSM1479089 1 NPIPB15 HGNC 34409 protein_coding YES ENSP00000411140 NPB15_HUMAN UPI000198C783 tolerated_low_confidence(0.06) benign(0.341) 7/7 hmmpanther:PTHR15438 0,1,1 MODERATE 1.0 SNV 0,1,1 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n 1 known missense c.1256 p.I419T 999 pfam_NPIP 0 no_errors NPIPL2 HGNC ENSG00000196436 20 0 0 10 4 28.57 0 0 0 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n 1 known missense c.1256 p.I419T 999 pfam_NPIP 0 no_errors NPIPL2 HGNC 0 0 0 Putative_Passenger Test passenger Class 1 Class annotation -OTOR genome.wustl.edu GRCh37 20 16730581 16730581 1 Missense_Mutation SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.69 V97M getma.org/?cm=msa&ty=f&p=OTOR_HUMAN&rb=43&re=108&var=V97M getma.org/pdb.php?prot=OTOR_HUMAN&from=43&to=108&var=V97M getma.org/?cm=var&var=hg19,20,16730581,G,A&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.289G>A p.Val97Met p.V97M ENST00000246081 3/4 0 0 OTOR,missense_variant,p.Val97Met,ENST00000246081,NM_020157.3;OTOR,non_coding_transcript_exon_variant,,ENST00000486129,;OTOR,intron_variant,,ENST00000490148,; A ENSG00000125879 ENST00000246081 Transcript missense_variant 333/1477 289/387 97/128 V/M Gtg/Atg COSM1410526 1 OTOR HGNC 8517 protein_coding YES CCDS13124.1 ENSP00000246081 OTOR_HUMAN UPI0000047809 NM_020157.3 deleterious(0) benign(0.344) 3/4 hmmpanther:PTHR23158,Gene3D:2.30.30.40,Pfam_domain:PF07653,SMART_domains:SM00326,Superfamily_domains:SSF50044 1 MODERATE 1.0 SNV 1 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n 1 known missense c.289 p.V97M 963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain 0 no_errors OTOR HGNC ENSG00000125879 57 0 0 36 9 20.0 0 0 0 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n 1 known missense c.289 p.V97M 963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain 0 no_errors OTOR HGNC 0 0 0 Class 2 Class annotation -P2RY10 genome.wustl.edu GRCh37 X 78216689 78216689 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.672C>T p.= p.S224S ENST00000171757 4/4 0 0 P2RY10,synonymous_variant,p.=,ENST00000171757,NM_014499.2;P2RY10,synonymous_variant,p.=,ENST00000544091,NM_198333.1;P2RY10,downstream_gene_variant,,ENST00000475374,;P2RY10,downstream_gene_variant,,ENST00000461541,; T ENSG00000078589 ENST00000171757 Transcript synonymous_variant 952/1714 672/1020 224/339 S tcC/tcT COSM1491292 1 P2RY10 HGNC 19906 protein_coding YES CCDS14442.1 ENSP00000171757 P2Y10_HUMAN UPI0000050471 NM_014499.2 4/4 PROSITE_profiles:PS50262,hmmpanther:PTHR24232:SF6,hmmpanther:PTHR24232,Gene3D:1.20.1070.10,Pfam_domain:PF00001,Superfamily_domains:SSF81321 1 LOW 1.0 SNV 1 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n 1 known silent c.672 p.S224 92 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor 0 no_errors P2RY10 HGNC ENSG00000078589 65 0 0 46 10 17.86 0 0 0 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n 1 known silent c.672 p.S224 92 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor 0 no_errors P2RY10 HGNC 0 0 0 Putative_Driver Test driver Class 3 Class annotation -PIEZO1 genome.wustl.edu GRCh37 16 88790292 88790292 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.18 Q1441R getma.org/?cm=msa&ty=f&p=PIEZ1_HUMAN&rb=58&re=1627&var=Q1441R getma.org/?cm=var&var=hg19,16,88790292,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.4322A>G p.Gln1441Arg p.Q1441R ENST00000301015 31/51 0 0 PIEZO1,missense_variant,p.Gln1441Arg,ENST00000301015,NM_001142864.2;PIEZO1,missense_variant,p.Gln115Arg,ENST00000474606,;PIEZO1,upstream_gene_variant,,ENST00000327397,;PIEZO1,upstream_gene_variant,,ENST00000466823,;RP5-1142A6.9,downstream_gene_variant,,ENST00000564984,;PIEZO1,non_coding_transcript_exon_variant,,ENST00000566414,;PIEZO1,upstream_gene_variant,,ENST00000419505,;PIEZO1,upstream_gene_variant,,ENST00000497793,;PIEZO1,upstream_gene_variant,,ENST00000495568,;PIEZO1,downstream_gene_variant,,ENST00000475586,;PIEZO1,downstream_gene_variant,,ENST00000491917,; C ENSG00000103335 ENST00000301015 Transcript missense_variant 4569/8072 4322/7566 1441/2521 Q/R cAg/cGg COSM1479166 1 PIEZO1 HGNC 28993 protein_coding YES CCDS54058.1 ENSP00000301015 PIEZ1_HUMAN UPI0001B300F3 NM_001142864.2 tolerated(0.25) possibly_damaging(0.78) 31/51 hmmpanther:PTHR13167,hmmpanther:PTHR13167:SF40 1 MODERATE 1.0 SNV 1 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1000 pfam_DUF3595 0 no_errors PIEZO1 HGNC ENSG00000103335 37 0 0 20 8 28.57 0 0 0 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1000 pfam_DUF3595 0 no_errors PIEZO1 HGNC 0 0 0 Putative_Passenger Test passenger Class 3 Class annotation diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_wrong_aa_change.maf b/core/src/test/scripts/test_data/mutations/data_mutations_wrong_aa_change.maf deleted file mode 100644 index 7cc59bc91dc..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_wrong_aa_change.maf +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer ONCOTATOR_COSMIC_OVERLAPPING ONCOTATOR_DBSNP_RS ONCOTATOR_DBSNP_VAL_STATUS ONCOTATOR_VARIANT_CLASSIFICATION Amino_Acid_Change SWISSPROT ONCOTATOR_REFSEQ_MRNA_ID ONCOTATOR_REFSEQ_PROT_ID ONCOTATOR_UNIPROT_ENTRY_NAME ONCOTATOR_UNIPROT_ACCESSION ONCOTATOR_CODON_CHANGE ONCOTATOR_TRANSCRIPT_CHANGE ONCOTATOR_EXON_AFFECTED ONCOTATOR_PROTEIN_POS_START ONCOTATOR_PROTEIN_POS_END ONCOTATOR_VARIANT_CLASSIFICATION_BEST_EFFECT ONCOTATOR_PROTEIN_CHANGE_BEST_EFFECT ONCOTATOR_GENE_SYMBOL_BEST_EFFECT ONCOTATOR_REFSEQ_MRNA_ID_BEST_EFFECT ONCOTATOR_REFSEQ_PROT_ID_BEST_EFFECT ONCOTATOR_UNIPROT_ENTRY_NAME_BEST_EFFECT ONCOTATOR_UNIPROT_ACCESSION_BEST_EFFECT ONCOTATOR_CODON_CHANGE_BEST_EFFECT ONCOTATOR_TRANSCRIPT_CHANGE_BEST_EFFECT ONCOTATOR_EXON_AFFECTED_BEST_EFFECT ONCOTATOR_PROTEIN_POS_START_BEST_EFFECT ONCOTATOR_PROTEIN_POS_END_BEST_EFFECT MA:FImpact MA:FIS MA:protein.change MA:link.MSA MA:link.PDB MA:link.var chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU Protein_position amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU annotation_errors_WU -A1CF 29974 genome.wustl.edu 37 10 52573692 52573692 + Missense_Mutation SNP G G T novel unknown TCGA-B6-A0RS-01 TCGA-B6-A0RS-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation Q9NQ94 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(1270-1272)GAC>GAA c.1272C>A 10 424 424 Missense_Mutation p.D432E A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(1294-1296)GAC>GAA c.1296C>A 12 432 432 neutral 0.345 D424E getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=298&re=497&var=D424E NA getma.org/?cm=var&var=hg19,10,52573692,G,T&fts=all 10 52573692 52573692 G T SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.1272 0.768 NULL superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595854 52595854 + Missense_Mutation SNP G G A novel unknown TCGA-BH-A0HP-01 TCGA-BH-A0HP-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.A195V;p.I167I Q9NQ94 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(583-585)GCG>GTG c.584C>T 6 195 195 Missense_Mutation p.A203V A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(607-609)GCG>GTG c.608C>T 8 203 203 medium 2.955 A195V getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=138&re=203&var=A195V getma.org/pdb.php?prot=A1CF_HUMAN&from=138&to=203&var=A195V getma.org/?cm=var&var=hg19,10,52595854,G,A&fts=all 10 52595854 52595854 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.584 p.A195V 1.000 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595937 52595937 + Silent SNP G G A novel unknown TCGA-BH-A18P-01 TCGA-BH-A18P-11 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.I167= Q9NQ94 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(499-501)ATC>ATT c.501C>T 6 167 167 Silent p.I175I A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(523-525)ATC>ATT c.525C>T 8 175 175 NA NA NA NA NA NA 10 52595937 52595937 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed silent c.501 p.I167 0.615 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A2M 2 genome.wustl.edu 37 12 9230409 9230409 + Missense_Mutation SNP T T C novel unknown TCGA-BH-A18H-01 TCGA-BH-A18H-10 T T NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.N851,Y1055delinsCC P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 high 3.73 Y1055C getma.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=1010&re=1266&var=Y1055C getma.org/pdb.php?prot=A2MG_HUMAN&from=1010&to=1266&var=Y1055C getma.org/?cm=var&var=hg19,12,9230409,T,C&fts=all 12 9230409 9230409 T C SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.3164 p.Y1055C 0.143 superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_A2M_comp PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9242995 9242995 + Missense_Mutation SNP G G A novel unknown TCGA-C8-A138-01 TCGA-C8-A138-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.[N851N];[Y1055C] P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 Missense_Mutation p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 NA NA NA NA NA NA 12 9242995 9242995 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.2553 p.N851 0.003 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9246090 9246090 + Silent SNP C C T novel unknown TCGA-A2-A0EY-01 TCGA-A2-A0EY-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.E737E P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 Silent p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 NA NA NA NA NA NA 12 9246090 9246090 C T SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2211 p.E737 1.000 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9251298 9251298 + Nonsense_Mutation SNP G G A novel unknown TCGA-A8-A08G-01 TCGA-A8-A08G-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Nonsense_Mutation NULL P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 NA 0.0 R586* NA NA getma.org/?cm=var&var=hg19,12,9251298,G,A&fts=all 12 9251298 9251298 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed nonsense c.1756 p.R586* 0.003 HMMPfam_A2M_N_2 PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors diff --git a/core/src/test/scripts/test_data/mutations/data_mutations_wrong_gene_position.maf b/core/src/test/scripts/test_data/mutations/data_mutations_wrong_gene_position.maf deleted file mode 100644 index 2bc7e152097..00000000000 --- a/core/src/test/scripts/test_data/mutations/data_mutations_wrong_gene_position.maf +++ /dev/null @@ -1,9 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS MA:protein.change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO MINIMISED ExAC_AF ExAC_AF_AFR ExAC_AF_AMR ExAC_AF_EAS ExAC_AF_FIN ExAC_AF_NFE ExAC_AF_OTH ExAC_AF_SAS GENE_PHENO FILTER chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All -OR11H1 81061 genome.wustl.edu GRCh37 22 16449539.0 16449539 -1 Missense_Mutation SNP NA NA NA [Not Available] [Not Available] TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 NA NA [Not Available] [Not Available] [Not Available] [Not Available] Unknown Untested Somatic Phase_IV WXS none NA dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A NA getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 NA NA OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; NA ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 NA [Not Available] OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN [Not Available] UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 [Not Available] Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] 0,1 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] MODERATE NA SNV [Not Available] [Not Available] 0,1 NA [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] NA 22 16449539 16449539 NA NA SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn NA no_errors OR11H1 HGNC ENSG00000130538 65 NA 0.00 38 NA 13.64 NA NA NA 22 16449539 16449539 NA NA SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn NA no_errors OR11H1 HGNC NA NA - -TMEM247 388946 genome.wustl.edu GRCh37 NA 46707888 46707888.0 NA Frame_Shift_Del DEL NA NA NA [Not Available] [Not Available] TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 NA NA [Not Available] [Not Available] [Not Available] [Not Available] Unknown Untested Somatic Phase_IV WXS none NA dbGAP Illumina GAIIx [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 NA NA TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; NA ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga rs765666900,COSM1408208 NA [Not Available] TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN [Not Available] UPI0000366EF8 NM_001145051.2 [Not Available] [Not Available] 2/3 [Not Available] Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] -:0.0202 -:0.0439 [Not Available] 0,1 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] HIGH NA deletion [Not Available] NA 0,1 NA [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] NA NA 46707888 46707888 NA NA DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL NA no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 NA 0.00 NA NA 30.00 NA NA NA NA 46707888 46707888 NA NA DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL NA no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC NA NA - -ABLIM1 3983 genome.wustl.edu GRCh37 10 116247760 -1 Missense_Mutation SNP NA NA NA [Not Available] [Not Available] TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 NA NA [Not Available] [Not Available] [Not Available] [Not Available] Unknown Untested Somatic Phase_IV WXS none NA dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 NA NA ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; NA ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 NA [Not Available] ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN [Not Available] UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 [Not Available] PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] 1,1,1 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] MODERATE NA SNV [Not Available] [Not Available] 1,1,1 NA [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] NA 10 116247760 116247760 NA NA SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM NA no_errors ABLIM1 HGNC ENSG00000099204 77 NA 0.00 36 13 26.53 NA NA NA 10 116247760 116247760 NA NA SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM NA no_errors ABLIM1 HGNC NA NA - -ADAMTS20 80070 genome.wustl.edu GRCh37 12 43944926 -1 Missense_Mutation SNP NA NA NA [Not Available] [Not Available] TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 NA NA [Not Available] [Not Available] [Not Available] [Not Available] Unknown Untested Somatic Phase_IV WXS none NA dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C NA getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.239A>G p.Tyr80Cys p.Y80C ENST00000389420 2/39 NA NA ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; NA ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 NA [Not Available] ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN [Not Available] UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 [Not Available] hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] 1,1 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] MODERATE NA SNV [Not Available] [Not Available] 1,1 NA [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] NA 12 43944926 43944926 NA NA SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B NA no_errors ADAMTS20 HGNC ENSG00000173157 50 NA 0.00 19 17 45.95 NA NA NA 12 43944926 43944926 NA NA SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B NA no_errors ADAMTS20 HGNC NA NA - -CADM2 253559 genome.wustl.edu GRCh37 NA 85932472 85932472 NA Silent SNP NA NA NA [Not Available] [Not Available] TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 NA NA [Not Available] [Not Available] [Not Available] [Not Available] Unknown Untested Somatic Phase_IV WXS none NA dbGAP Illumina GAIIx [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.243C>T p.= p.R81R ENST00000407528 3/10 NA NA CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,p.=,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; NA ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 NA cgC/cgT rs747906551,COSM1178952,COSM1178953 NA [Not Available] CADM2 HGNC 29849 protein_coding [Not Available] CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 [Not Available] [Not Available] 3/10 [Not Available] Gene3D:2.60.40.10,Pfam_domain:PF07686,PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] 0,1,1 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] LOW [Not Available] SNV [Not Available] [Not Available] 0,1,1 NA 8.24e-06 [Not Available] [Not Available] [Not Available] [Not Available] 1.54e-05 [Not Available] [Not Available] [Not Available] NA NA 85932472 85932472 NA NA SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like NA no_errors CADM2 HGNC ENSG00000175161 57 NA 0.00 22 23 51.11 NA NA NA NA 85932472 85932472 NA NA SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like NA no_errors CADM2 HGNC NA NA - -DTNB 1838 genome.wustl.edu GRCh37 NA 25678299 25678299 -1 Missense_Mutation SNP NA NA NA [Not Available] [Not Available] TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 NA NA [Not Available] [Not Available] [Not Available] [Not Available] Unknown Untested Somatic Phase_IV WXS none NA dbGAP Illumina GAIIx medium 2.125 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M NA getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144G>A p.Val382Met p.V382M ENST00000406818 11/21 NA NA DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; NA ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 NA [Not Available] DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 [Not Available] PIRSF_domain:PIRSF038204,hmmpanther:PTHR11915,hmmpanther:PTHR11915:SF227 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] 1,1 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] MODERATE NA SNV [Not Available] [Not Available] 1,1 NA [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] NA NA 25678299 25678299 NA NA SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ NA no_errors DTNB HGNC ENSG00000138101 35 NA 0.00 NA NA 50.00 NA NA NA NA 25678299 25678299 NA NA SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ NA no_errors DTNB HGNC NA NA - -KAT2A 2648 genome.wustl.edu GRCh37 17 40272381 40272381 -1 Silent SNP NA NA NA [Not Available] [Not Available] TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 NA NA [Not Available] [Not Available] [Not Available] [Not Available] Unknown Untested Somatic Phase_IV WXS none NA dbGAP Illumina GAIIx [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.471C>T p.= p.H157H ENST00000225916 3/18 NA NA KAT2A,synonymous_variant,p.=,ENST00000225916,NM_021078.2;CTD-2132N18.3,synonymous_variant,p.=,ENST00000592574,;RAB5C,downstream_gene_variant,,ENST00000393860,NM_201434.2;RAB5C,downstream_gene_variant,,ENST00000346213,NM_004583.3;HSPB9,upstream_gene_variant,,ENST00000355067,NM_033194.2;CTD-2132N18.3,missense_variant,p.Thr150Met,ENST00000592248,;KAT2A,synonymous_variant,p.=,ENST00000465682,;CTD-2132N18.3,3_prime_UTR_variant,,ENST00000585562,;KAT2A,upstream_gene_variant,,ENST00000592310,;KAT2A,upstream_gene_variant,,ENST00000588759,; NA ENSG00000108773 ENST00000225916 Transcript synonymous_variant 525/3109 471/2514 157/837 NA caC/caT rs536716483,COSM1479581 NA [Not Available] KAT2A HGNC 4201 protein_coding YES CCDS11417.1 ENSP00000225916 KAT2A_HUMAN K7ERS6_HUMAN UPI000000D978 NM_021078.2 [Not Available] [Not Available] 3/18 [Not Available] hmmpanther:PTHR22880:SF124,hmmpanther:PTHR22880,Pfam_domain:PF06466,PIRSF_domain:PIRSF003048 A:0.0002 A:0 A:0 [Not Available] A:0.001 A:0 A:0 [Not Available] [Not Available] [Not Available] 0,1 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] LOW NA SNV [Not Available] [Not Available] 0,1 NA 1.65e-05 [Not Available] [Not Available] 0.000231 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] NA 17 40272381 40272381 NA NA SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom NA no_errors CTD-2132N18.3 Clone_based_vega_gene ENSG00000267261 40 NA 0.00 30 36 54.55 NA NA NA 17 40272381 40272381 NA NA SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom NA no_errors CTD-2132N18.3 Clone_based_vega_gene NA NA - -MSH3 4437 genome.wustl.edu GRCh37 NA 80024722 80024722 NA Frame_Shift_Del DEL NA NA NA [Not Available] [Not Available] TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 NA NA [Not Available] [Not Available] [Not Available] [Not Available] Unknown Untested Somatic Phase_IV WXS none NA dbGAP Illumina GAIIx [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1508delT p.Leu503TrpfsTer5 p.L503Wfs*5 ENST00000265081 10/24 NA NA MSH3,frameshift_variant,p.Leu503TrpfsTer5,ENST00000265081,NM_002439.4;MSH3,non_coding_transcript_exon_variant,,ENST00000512258,; NA ENSG00000113318 ENST00000265081 Transcript frameshift_variant 1586/4092 1506/3414 502/1137 S/X tcT/tc [Not Available] NA [Not Available] MSH3 HGNC 7326 protein_coding YES CCDS34195.1 ENSP00000265081 MSH3_HUMAN [Not Available] UPI0000DBEE85 NM_002439.4 [Not Available] [Not Available] 10/24 [Not Available] Superfamily_domains:SSF53150,Gene3D:3.30.420.110,Pfam_domain:PF05188,hmmpanther:PTHR11361,hmmpanther:PTHR11361:SF34 [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] HIGH NA deletion [Not Available] NA [Not Available] NA [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] [Not Available] NA NA NA 80024722 80024722 NA NA DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C NA no_errors MSH3 HGNC ENSG00000113318 83 NA 0.00 12 NA 14.29 NA NA NA NA 80024722 80024722 NA NA DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C NA no_errors MSH3 HGNC NA NA - diff --git a/core/src/test/scripts/test_data/mutations/meta_mutations_invalid_swissprot_idspec.txt b/core/src/test/scripts/test_data/mutations/meta_mutations_invalid_swissprot_idspec.txt deleted file mode 100644 index fe4ec15ce93..00000000000 --- a/core/src/test/scripts/test_data/mutations/meta_mutations_invalid_swissprot_idspec.txt +++ /dev/null @@ -1,9 +0,0 @@ -cancer_study_identifier: spam -genetic_alteration_type: MUTATION_EXTENDED -datatype: MAF -stable_id: mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations -data_filename: spam.maf -swissprot_identifier: namelessly diff --git a/core/src/test/scripts/test_data/study_cancertype_two_files/cancer_type_luad.txt b/core/src/test/scripts/test_data/study_cancertype_two_files/cancer_type_luad.txt deleted file mode 100644 index fd85d7aa3c0..00000000000 --- a/core/src/test/scripts/test_data/study_cancertype_two_files/cancer_type_luad.txt +++ /dev/null @@ -1 +0,0 @@ -luad Lung Adenocarcinoma Gainsboro Lung diff --git a/core/src/test/scripts/test_data/study_cancertype_two_files/cancer_type_lung.txt b/core/src/test/scripts/test_data/study_cancertype_two_files/cancer_type_lung.txt deleted file mode 100644 index fd85d7aa3c0..00000000000 --- a/core/src/test/scripts/test_data/study_cancertype_two_files/cancer_type_lung.txt +++ /dev/null @@ -1 +0,0 @@ -luad Lung Adenocarcinoma Gainsboro Lung diff --git a/core/src/test/scripts/test_data/study_cancertype_two_files/data_samples.txt b/core/src/test/scripts/test_data/study_cancertype_two_files/data_samples.txt deleted file mode 100644 index 50f22028c97..00000000000 --- a/core/src/test/scripts/test_data/study_cancertype_two_files/data_samples.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Cancer Type Cancer Type Detailed -#Identifier to uniquely specify a patient. A unique sample identifier. Subtype description. Disease type. Cancer Type Detailed. -#STRING STRING STRING STRING STRING -#1 1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE CANCER_TYPE CANCER_TYPE_DETAILED -TEST-PAT1 TEST-PAT1-SAMPLE1 Luminal A Cancer_type20 Cancer_type20_Sub16 -TEST-PAT1 TEST-PAT1-SAMPLE2 Luminal B Cancer_type27 Cancer_type27_Sub16 -TEST-PAT1 TEST-PAT1-SAMPLE3 basal-like Cancer_type8 Cancer_type8_Sub13 -TEST-PAT1 TEST-PAT1-SAMPLE4 basal-like Cancer_type17 Cancer_type17_Sub10 -TEST-PAT1 TEST-PAT1-SAMPLE5 Her2 enriched Cancer_type27 Cancer_type27_Sub18 -TEST-PAT1 TEST-PAT1-SAMPLE6 Luminal A Cancer_type7 Cancer_type7_Sub13 -TEST-PAT2 TEST-PAT2-SAMPLE1 Luminal A Cancer_type23 Cancer_type23_Sub3 -TEST-PAT2 TEST-PAT2-SAMPLE2 basal-like Cancer_type7 Cancer_type7_Sub5 diff --git a/core/src/test/scripts/test_data/study_cancertype_two_files/meta_cancer_type_luad.txt b/core/src/test/scripts/test_data/study_cancertype_two_files/meta_cancer_type_luad.txt deleted file mode 100644 index 85307a029b2..00000000000 --- a/core/src/test/scripts/test_data/study_cancertype_two_files/meta_cancer_type_luad.txt +++ /dev/null @@ -1,3 +0,0 @@ -genetic_alteration_type: CANCER_TYPE -datatype: CANCER_TYPE -data_filename: cancer_type_luad.txt diff --git a/core/src/test/scripts/test_data/study_cancertype_two_files/meta_cancer_type_lung.txt b/core/src/test/scripts/test_data/study_cancertype_two_files/meta_cancer_type_lung.txt deleted file mode 100644 index 1eb60505ecd..00000000000 --- a/core/src/test/scripts/test_data/study_cancertype_two_files/meta_cancer_type_lung.txt +++ /dev/null @@ -1,3 +0,0 @@ -genetic_alteration_type: CANCER_TYPE -datatype: CANCER_TYPE -data_filename: cancer_type_lung.txt diff --git a/core/src/test/scripts/test_data/study_cancertype_two_files/meta_samples.txt b/core/src/test/scripts/test_data/study_cancertype_two_files/meta_samples.txt deleted file mode 100644 index 3dba005bab9..00000000000 --- a/core/src/test/scripts/test_data/study_cancertype_two_files/meta_samples.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: spam -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -data_filename: data_samples.txt diff --git a/core/src/test/scripts/test_data/study_cancertype_two_files/meta_study.txt b/core/src/test/scripts/test_data/study_cancertype_two_files/meta_study.txt deleted file mode 100644 index 8dd59a7c963..00000000000 --- a/core/src/test/scripts/test_data/study_cancertype_two_files/meta_study.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: spam -type_of_cancer: luad -name: Spam (spam) -description: Baked beans -add_global_case_list: true diff --git a/core/src/test/scripts/test_data/study_es_0/case_lists/cases_cna.txt b/core/src/test/scripts/test_data/study_es_0/case_lists/cases_cna.txt deleted file mode 100644 index 57c32924dc5..00000000000 --- a/core/src/test/scripts/test_data/study_es_0/case_lists/cases_cna.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: study_es_0 -stable_id: study_es_0_cna -case_list_name: Samples profiled for mutations -case_list_description: This is this case list that contains all samples that are profiled for mutations. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 TEST_SAMPLE_1 TEST_SAMPLE_2 TEST_SAMPLE_3 TEST_SAMPLE_4 TEST_SAMPLE_7 TEST_SAMPLE_8 TEST_SAMPLE_12 TEST_SAMPLE_13 TEST_SAMPLE_14 TEST_SAMPLE_15 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_0/data_cna_log2.txt b/core/src/test/scripts/test_data/study_es_0/data_cna_log2.txt deleted file mode 100644 index f58108baa0d..00000000000 --- a/core/src/test/scripts/test_data/study_es_0/data_cna_log2.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 -ACAP3 116983 -0.005 -0.550 -0.021 0.010 -0.045 -0.397 0.142 -0.061 0.091 -0.612 -0.360 -0.487 0.187 -0.007 0.015 0.208 -0.026 -0.904 -0.187 1.280 -0.076 0.182 0.024 0.372 -0.039 0.138 -0.006 0.006 -0.548 -0.420 -0.040 0.024 -0.633 -0.249 0.379 -0.005 -0.020 0.006 -0.436 0.036 -0.430 -0.321 0.001 0.011 -0.079 -0.452 -0.050 -0.008 -0.025 -0.020 -0.337 -0.067 0.006 -0.222 0.244 0.064 -0.079 0.135 0.070 0.994 -0.021 -0.466 0.024 -0.046 -0.449 0.050 0.005 -0.291 -0.593 -0.152 -0.249 -0.479 -0.306 0.066 0.008 -0.005 0.055 0.004 -0.097 -0.403 -0.010 0.388 -0.176 -0.015 -0.024 0.015 -0.084 -0.100 -0.647 0.024 -0.005 -0.049 -0.110 0.152 -0.012 0.064 -0.196 -0.030 -0.281 -0.019 0.280 0.053 -0.518 -0.043 -0.291 -0.382 0.149 -0.031 -0.040 -0.019 0.002 -0.127 0.132 -0.054 0.036 -0.326 -0.320 0.016 -0.840 0.576 -0.585 -0.692 -0.417 -0.307 -0.046 -0.571 -0.159 0.086 0.033 -0.722 0.125 -0.099 -0.093 0.017 -0.157 -0.026 -0.062 -0.569 0.154 -0.015 -0.521 -0.031 0.011 0.090 -0.114 -0.032 0.051 -0.006 -0.134 -0.417 -0.631 0.255 -0.379 -0.151 -0.155 -0.759 0.030 -0.030 0.093 -0.263 0.005 -0.345 -0.015 -0.011 0.045 0.043 -0.147 -0.759 -0.606 -0.245 -0.425 0.036 -0.574 -0.122 -0.709 -0.406 -0.264 -0.010 -0.400 0.134 0.106 -0.709 0.264 0.015 0.017 -0.377 0.039 -0.233 -0.034 -0.184 -0.386 0.069 -0.065 -0.138 0.018 0.004 -0.016 0.017 0.021 -0.477 -0.472 -0.414 -0.157 -0.557 -0.448 -0.142 -0.820 -0.439 -0.393 -0.726 0.042 -0.003 0.044 -0.025 -0.326 0.066 0.693 -0.343 0.950 0.038 0.035 -0.549 -0.327 -0.022 0.006 0.362 0.138 0.059 -0.149 0.027 -0.016 -0.274 -0.814 -0.659 -0.034 -0.067 -0.305 -0.016 -0.449 0.002 -0.268 0.021 -0.023 -0.020 -0.027 -0.077 -0.532 1.200 -0.249 -0.611 -0.566 0.005 -0.336 -0.465 0.016 0.013 0.059 -0.473 -0.031 -0.494 -0.757 0.024 -0.282 -0.448 -0.152 -0.096 0.096 0.183 -0.418 -0.286 -0.104 0.027 0.072 -1.152 0.014 0.004 -0.028 -0.675 -0.407 0.082 -0.694 -0.670 -0.035 0.228 0.273 -0.384 -0.021 0.025 -0.049 -0.276 -0.060 -0.179 -0.057 -0.110 0.372 0.028 -0.714 -0.891 0.013 0.603 -0.114 -0.748 0.025 1.422 0.291 0.000 -0.123 -0.061 -0.027 0.069 -0.209 -0.109 0.014 0.063 0.007 -0.034 0.382 -0.042 -0.690 -0.739 0.134 -0.432 0.144 0.017 -0.011 -0.008 0.443 -0.369 -0.582 -0.346 0.002 -0.012 -0.047 -0.029 -0.054 -0.575 0.401 -0.163 -0.328 -0.400 -0.518 -0.064 0.024 -0.461 0.000 -0.363 -0.010 -0.043 -0.202 0.033 -0.058 0.055 0.069 -0.158 -0.047 -0.173 -0.425 -0.855 0.045 0.007 -0.552 -0.075 -0.025 -0.109 -0.355 -0.019 -0.514 0.165 -0.344 0.041 0.041 -0.020 -0.380 -0.602 -0.498 -0.231 0.033 0.002 0.722 -0.011 -0.084 -0.039 -0.539 -0.507 -0.142 -0.569 -0.277 -0.453 0.114 0.035 -0.049 -0.011 -0.180 -0.380 -0.275 0.016 -0.401 -0.219 0.015 -0.017 -0.149 -0.056 -0.027 -0.056 -0.066 -0.013 -0.305 -0.009 -0.017 0.029 -0.665 -0.254 0.025 -0.094 0.206 -0.414 0.041 -0.565 -0.639 -0.493 1.405 -0.062 -0.025 -0.498 0.445 -0.004 -0.028 -0.078 -0.045 -0.012 -0.025 0.034 1.610 -0.046 0.062 -0.626 -0.182 -0.002 -0.222 -0.019 -0.159 0.249 0.024 -0.462 -0.673 0.008 -0.012 0.047 -0.013 -0.536 -0.335 0.030 0.083 -0.040 0.052 0.032 0.047 -0.723 -0.410 -0.122 -0.065 -0.410 0.117 -0.001 0.002 -0.018 -0.263 0.002 -0.054 0.005 -0.436 -0.463 -0.240 0.041 -0.102 -0.332 -0.557 -0.501 -0.132 -0.098 -0.330 0.656 -0.527 0.012 -0.019 -0.007 -0.244 2.422 0.016 0.008 -0.538 -0.151 -0.730 -0.111 0.021 -0.730 -0.092 -0.202 0.074 -0.128 -0.081 -0.011 0.002 -0.045 -0.699 -0.051 0.031 0.018 -0.048 -0.053 -0.041 -0.827 0.092 -0.128 -0.011 0.163 -0.490 -0.149 -0.055 -0.197 0.000 -0.017 -0.002 0.041 -0.254 -0.117 0.037 -0.650 -0.119 -0.277 -0.184 -0.098 -0.583 -0.156 -0.105 -0.367 -0.094 -0.040 0.000 -0.099 -0.786 -0.327 -0.348 -0.242 -0.158 -0.075 0.010 -0.639 -0.014 0.101 -0.100 -0.046 -0.505 0.015 -0.154 -0.745 -0.290 -0.856 -0.001 -0.046 -0.255 0.230 -0.008 -0.233 0.307 -0.654 -0.047 -0.789 -0.144 -0.703 -0.363 -0.369 -0.463 0.026 0.079 -0.504 -0.419 0.142 0.454 -0.770 -0.061 0.008 -0.133 -0.082 -0.124 -0.444 -0.001 -0.053 -0.491 0.002 0.022 -0.078 -0.034 0.060 -0.454 -0.758 -0.666 -0.383 -0.379 -0.076 -0.025 -0.206 -0.315 -0.309 -0.493 -0.596 -0.226 -0.073 -0.350 -0.923 -0.552 -0.418 -0.039 -0.253 -0.023 -0.571 0.002 0.729 -0.113 0.045 -0.045 0.095 -0.034 -0.040 -0.119 -0.292 -0.011 -0.269 0.150 -0.360 0.039 -0.364 -0.820 -0.061 -0.179 -0.722 -0.051 -0.101 -0.438 -0.039 0.054 -0.710 -0.027 -0.310 0.049 0.144 0.040 0.254 0.360 -0.017 -0.025 -0.526 0.007 0.005 -0.954 0.400 0.147 -0.113 -0.634 -0.026 0.008 0.073 0.006 -0.758 -0.034 0.554 0.250 0.071 0.078 -0.057 0.000 -0.096 0.015 0.016 -0.679 0.011 -0.055 -0.553 -0.364 -0.011 -0.141 -0.014 -0.124 0.076 -0.081 -0.040 -0.365 -0.381 -0.115 -0.492 -0.637 -0.551 0.530 -0.109 0.023 0.654 -0.080 -0.005 0.011 -0.262 -0.099 1.140 0.251 -0.447 -0.239 -0.018 -0.115 -0.012 -0.317 -0.263 -0.129 -0.119 0.420 -0.335 -0.100 -0.734 -0.076 0.675 0.030 0.134 -0.577 -0.026 -0.527 0.317 -0.292 -0.168 0.046 -0.451 -0.037 -0.020 -0.353 -0.419 0.080 -0.097 -0.189 -0.574 0.012 -0.122 -0.407 -0.016 -0.470 -0.029 -0.221 0.045 -0.345 -0.600 0.025 -0.151 -0.034 -0.014 0.004 -0.016 -0.116 -0.639 -0.450 -0.644 -0.047 -0.320 -0.080 -0.017 -0.018 -0.135 0.001 0.025 -0.036 0.045 -0.079 0.003 -0.003 -0.063 -0.294 -0.368 -0.009 -0.261 -0.128 -0.029 -0.951 -0.340 -AGRN 375790 -0.005 -0.550 -0.021 0.010 -0.045 -0.397 0.142 -0.061 0.091 -0.612 -0.360 -0.487 0.187 -0.007 0.015 0.208 -0.026 -0.904 -0.187 1.280 -0.076 0.182 0.024 0.372 -0.039 0.138 -0.006 0.006 -0.548 -0.420 -0.040 0.024 -0.633 -0.249 0.379 -0.005 -0.020 0.006 -0.436 0.036 -0.430 -0.321 0.001 0.011 -0.079 -0.452 -0.050 -0.008 -0.025 -0.020 -0.337 -0.067 0.006 -0.222 0.244 0.064 -0.079 0.135 0.070 0.994 -0.021 -0.466 0.024 -0.046 -0.449 0.050 0.005 -0.291 -0.593 -0.152 -0.249 -0.479 -0.306 0.066 0.008 -0.005 0.055 0.004 -0.097 -0.403 -0.010 0.388 -0.176 -0.015 -0.024 0.015 -0.084 -0.100 -0.647 0.024 -0.005 -0.049 -0.110 0.152 -0.012 0.064 -0.196 -0.030 -0.281 -0.019 0.280 0.053 -0.518 -0.043 -0.291 -0.382 0.149 -0.031 -0.040 -0.019 0.002 -0.127 0.132 -0.054 0.036 -0.326 -0.320 0.016 -0.840 0.576 -0.585 -0.692 -0.417 -0.307 -0.046 -0.571 -0.159 0.086 0.033 -0.722 0.125 -0.099 -0.093 0.017 -0.157 -0.026 -0.062 -0.569 0.154 -0.015 -0.521 -0.031 0.011 0.090 -0.114 -0.032 0.051 -0.006 -0.134 -0.417 -0.631 0.255 -0.379 -0.151 -0.155 -0.759 0.030 -0.030 0.093 -0.263 0.005 -0.345 -0.015 -0.011 0.045 0.043 -0.147 -0.759 -0.606 -0.245 -0.425 0.036 -0.574 -0.122 -0.709 -0.406 -0.264 -0.010 -0.400 0.134 0.106 -0.709 0.264 0.015 0.017 -0.377 0.039 -0.233 -0.034 -0.184 -0.386 0.069 -0.065 -0.138 0.018 0.004 -0.016 0.017 0.021 -0.477 -0.472 -0.414 -0.157 -0.557 -0.448 -0.142 -0.820 -0.439 -0.393 -0.726 0.042 -0.003 0.044 -0.025 -0.326 0.066 0.693 -0.343 0.950 0.038 0.035 -0.549 -0.327 -0.022 0.006 0.362 0.138 0.059 -0.149 0.027 -0.016 -0.274 -0.814 -0.659 -0.034 -0.067 -0.305 -0.016 -0.449 0.002 -0.268 0.021 -0.023 -0.020 -0.027 -0.077 -0.532 1.200 -0.249 -0.611 -0.566 0.005 -0.336 -0.465 0.016 0.013 0.059 -0.473 -0.031 -0.494 -0.757 0.024 -0.282 -0.448 -0.152 -0.096 0.096 0.183 -0.418 -0.286 -0.104 0.027 0.072 -1.152 0.014 0.004 -0.028 -0.675 -0.407 0.082 -0.694 -0.670 -0.035 0.228 0.273 -0.384 -0.021 0.025 -0.049 -0.276 -0.060 -0.179 -0.057 -0.110 0.372 0.028 -0.714 -0.891 0.013 0.603 -0.114 -0.748 0.025 1.422 0.291 0.000 -0.123 -0.061 -0.027 0.069 -0.209 -0.109 0.014 0.063 0.007 -0.034 0.382 -0.042 -0.690 -0.739 0.134 -0.432 0.144 0.017 -0.011 -0.008 0.443 -0.369 -0.582 -0.346 0.002 -0.012 -0.047 -0.029 -0.054 -0.575 0.401 -0.163 -0.328 -0.400 -0.518 -0.064 0.024 -0.461 0.000 -0.363 -0.010 -0.043 -0.202 0.033 -0.058 0.055 0.069 -0.158 -0.047 -0.173 -0.425 -0.855 0.045 0.007 -0.552 -0.075 -0.025 -0.109 -0.355 -0.019 -0.514 0.165 -0.344 0.041 0.041 -0.020 -0.380 -0.602 -0.498 -0.231 0.033 0.002 0.722 -0.011 -0.084 -0.039 -0.539 -0.507 -0.142 -0.569 -0.277 -0.453 0.114 0.035 -0.049 -0.011 -0.180 -0.380 -0.275 0.016 -0.401 -0.219 0.015 -0.017 -0.149 -0.056 -0.027 -0.056 -0.066 -0.013 -0.305 -0.009 -0.017 0.029 -0.665 -0.254 0.025 -0.094 0.206 -0.414 0.041 -0.565 -0.639 -0.493 1.405 -0.062 -0.025 -0.498 0.445 -0.004 -0.028 -0.078 -0.045 -0.012 -0.025 0.034 1.610 -0.046 0.062 -0.626 -0.182 -0.002 -0.222 -0.019 -0.159 0.249 0.024 -0.462 -0.673 0.008 -0.012 0.047 -0.013 -0.536 -0.335 0.030 0.083 -0.040 0.052 0.032 0.047 -0.723 -0.410 -0.122 -0.065 -0.410 0.117 -0.001 0.002 -0.018 -0.263 0.002 -0.054 0.005 -0.436 -0.463 -0.240 0.041 -0.102 -0.332 -0.557 -0.501 -0.132 -0.098 -0.330 0.656 -0.527 0.012 -0.019 -0.007 -0.244 2.422 0.016 0.008 -0.538 -0.151 -0.730 -0.111 0.021 -0.730 -0.092 -0.202 0.074 -0.128 -0.081 -0.011 0.002 -0.045 -0.699 -0.051 0.031 0.018 -0.048 -0.053 -0.041 -0.827 0.092 -0.128 -0.011 0.163 -0.490 -0.149 -0.055 -0.197 0.000 -0.017 -0.002 0.041 -0.254 -0.117 0.037 -0.650 -0.119 -0.277 -0.184 -0.098 -0.583 -0.156 -0.105 -0.367 -0.094 -0.040 0.000 -0.099 -0.786 -0.327 -0.348 -0.242 -0.158 -0.075 0.010 -0.639 -0.014 0.101 -0.100 -0.046 -0.505 0.015 -0.154 -0.745 -0.290 -0.856 -0.001 -0.046 -0.255 0.230 -0.008 -0.233 0.307 -0.654 -0.047 -0.789 -0.144 -0.703 -0.363 -0.369 -0.463 0.026 0.079 -0.504 -0.419 0.142 0.454 -0.770 -0.061 0.008 -0.133 -0.082 -0.124 -0.444 -0.001 -0.053 -0.491 0.002 0.022 -0.078 -0.034 0.060 -0.454 -0.758 -0.666 -0.383 -0.379 -0.076 -0.025 -0.206 -0.315 -0.309 -0.493 -0.596 -0.226 -0.073 -0.350 -0.923 -0.552 -0.418 -0.039 -0.253 -0.023 -0.571 0.002 0.729 -0.113 0.045 -0.045 0.095 -0.034 -0.040 -0.119 -0.292 -0.011 -0.269 0.150 -0.360 0.039 -0.364 -0.820 -0.061 -0.179 -0.722 -0.051 -0.101 -0.438 -0.039 0.054 -0.710 -0.027 -0.310 0.049 0.144 0.040 0.254 0.360 -0.017 -0.025 -0.526 0.007 0.005 -0.954 0.400 0.147 -0.113 -0.634 -0.026 0.008 0.073 0.006 -0.758 -0.034 0.554 0.250 0.071 0.078 -0.057 0.000 -0.096 0.015 0.016 -0.679 0.011 -0.055 -0.553 -0.364 -0.011 -0.141 -0.014 -0.124 0.076 -0.081 -0.040 -0.365 -0.381 -0.115 -0.492 -0.637 -0.551 0.530 -0.109 0.023 0.654 -0.080 -0.005 0.011 -0.262 -0.099 1.140 0.251 -0.447 -0.239 -0.018 -0.115 -0.012 -0.317 -0.263 -0.129 -0.119 0.420 -0.335 -0.100 -0.734 -0.076 0.675 0.030 0.134 -0.577 -0.026 -0.527 0.317 -0.292 -0.168 0.046 -0.451 -0.037 -0.020 -0.353 -0.419 0.080 -0.097 -0.189 -0.574 0.012 -0.122 -0.407 -0.016 -0.470 -0.029 -0.221 0.045 -0.345 -0.600 0.025 -0.151 -0.034 -0.014 0.004 -0.016 -0.116 -0.639 -0.450 -0.644 -0.047 -0.320 -0.080 -0.017 -0.018 -0.135 0.001 0.025 -0.036 0.045 -0.079 0.003 -0.003 -0.063 -0.294 -0.368 -0.009 -0.261 -0.128 -0.029 -0.951 -0.340 -ATAD3A 55210 -0.005 -0.550 -0.021 0.010 -0.045 -0.397 0.142 -0.061 0.091 -0.612 -0.360 -0.487 0.187 -0.007 0.015 0.208 -0.026 -0.904 -0.187 1.280 -0.076 0.182 0.024 0.372 -0.039 0.138 -0.006 0.006 -0.548 -0.420 -0.040 0.024 -0.633 -0.249 0.379 -0.005 -0.020 0.006 -0.436 0.036 -0.430 -0.321 0.001 0.011 -0.079 -0.452 -0.050 -0.008 -0.025 -0.020 -0.337 -0.067 0.006 -0.222 0.244 0.064 -0.079 0.135 0.070 0.994 -0.021 -0.466 0.024 -0.046 -0.449 0.050 0.005 -0.291 -0.593 -0.152 -0.249 -0.479 -0.306 0.066 0.008 -0.005 0.055 0.004 -0.097 -0.403 -0.010 0.388 -0.176 -0.015 -0.024 0.015 -0.084 -0.100 -0.647 0.024 -0.005 -0.049 -0.110 0.152 -0.012 0.064 -0.196 -0.030 -0.281 -0.019 0.280 0.053 -0.518 -0.043 -0.291 -0.382 0.149 -0.031 -0.040 -0.019 0.002 -0.127 0.132 -0.054 0.036 -0.326 -0.320 0.016 -0.840 0.576 -0.585 -0.692 -0.417 -0.307 -0.046 -0.571 -0.159 0.086 0.033 -0.722 0.125 -0.099 -0.093 0.017 -0.157 -0.026 -0.062 -0.569 0.154 -0.015 -0.521 -0.031 0.011 0.090 -0.114 -0.032 0.051 -0.006 -0.134 -0.417 -0.631 0.255 -0.379 -0.151 -0.155 -0.759 0.030 -0.030 0.093 -0.263 0.005 -0.345 -0.015 -0.011 0.045 0.043 -0.147 -0.759 -0.606 -0.245 -0.425 0.036 -0.574 -0.122 -0.709 -0.406 -0.264 -0.010 -0.400 0.134 0.106 -0.709 0.264 0.015 0.017 -0.377 0.039 -0.233 -0.034 -0.184 -0.386 0.069 -0.065 -0.138 0.018 0.004 -0.016 0.017 0.021 -0.477 -0.472 -0.414 -0.157 -0.557 -0.448 -0.142 -0.820 -0.439 -0.393 -0.726 0.042 -0.003 0.044 -0.025 -0.326 0.066 0.693 -0.343 0.950 0.038 0.035 -0.549 -0.327 -0.022 0.006 0.362 0.138 0.059 -0.149 0.027 -0.016 -0.274 -0.814 -0.659 -0.034 -0.067 -0.305 -0.016 -0.449 0.002 -0.268 0.021 -0.023 -0.020 -0.027 -0.077 -0.532 1.200 -0.249 -0.611 -0.566 0.005 -0.336 -0.465 0.016 0.013 0.059 -0.473 -0.031 -0.494 -0.757 0.024 -0.282 -0.448 -0.152 -0.096 0.096 0.183 -0.418 -0.286 -0.104 0.027 0.072 -1.152 0.014 0.004 -0.028 -0.675 -0.407 0.082 -0.694 -0.670 -0.035 0.228 0.273 -0.384 -0.021 0.025 -0.049 -0.276 -0.060 -0.179 -0.057 -0.110 0.372 0.028 -0.714 -0.891 0.013 0.603 -0.114 -0.748 0.025 1.422 0.291 0.000 -0.123 -0.061 -0.027 0.069 -0.209 -0.109 0.014 0.063 0.007 -0.034 0.382 -0.042 -0.690 -0.739 0.134 -0.432 0.144 0.017 -0.011 -0.008 0.443 -0.369 -0.582 -0.346 0.002 -0.012 -0.047 -0.029 -0.054 -0.575 0.401 -0.163 -0.328 -0.400 -0.518 -0.064 0.024 -0.461 0.000 -0.363 -0.010 -0.043 -0.202 0.033 -0.058 0.055 0.069 -0.158 -0.047 -0.173 -0.425 -0.855 0.045 0.007 -0.552 -0.075 -0.025 -0.109 -0.355 -0.019 -0.514 0.165 -0.344 0.041 0.041 -0.020 -0.380 -0.602 -0.498 -0.231 0.033 0.002 0.722 -0.011 -0.084 -0.039 -0.539 -0.507 -0.142 -0.569 -0.277 -0.453 0.114 0.035 -0.049 -0.011 -0.180 -0.380 -0.275 0.016 -0.401 -0.219 0.015 -0.017 -0.149 -0.056 -0.027 -0.056 -0.066 -0.013 -0.305 -0.009 -0.017 0.029 -0.665 -0.254 0.025 -0.094 0.206 -0.414 0.041 -0.565 -0.639 -0.493 1.405 -0.062 -0.025 -0.498 0.445 -0.004 -0.028 -0.078 -0.045 -0.012 -0.025 0.034 1.610 -0.046 0.062 -0.626 -0.182 -0.002 -0.222 -0.019 -0.159 0.249 0.024 -0.462 -0.673 0.008 -0.012 0.047 -0.013 -0.536 -0.335 0.030 0.083 -0.040 0.052 0.032 0.047 -0.723 -0.410 -0.122 -0.065 -0.410 0.117 -0.001 0.002 -0.018 -0.263 0.002 -0.054 0.005 -0.436 -0.463 -0.240 0.041 -0.102 -0.332 -0.557 -0.501 -0.132 -0.098 -0.330 0.656 -0.527 0.012 -0.019 -0.007 -0.244 2.422 0.016 0.008 -0.538 -0.151 -0.730 -0.111 0.021 -0.730 -0.092 -0.202 0.074 -0.128 -0.081 -0.011 0.002 -0.045 -0.699 -0.051 0.031 0.018 -0.048 -0.053 -0.041 -0.827 0.092 -0.128 -0.011 0.163 -0.490 -0.149 -0.055 -0.197 0.000 -0.017 -0.002 0.041 -0.254 -0.117 0.037 -0.650 -0.119 -0.277 -0.184 -0.098 -0.583 -0.156 -0.105 -0.367 -0.094 -0.040 0.000 -0.099 -0.786 -0.327 -0.348 -0.242 -0.158 -0.075 0.010 -0.639 -0.014 0.101 -0.100 -0.046 -0.505 0.015 -0.154 -0.745 -0.290 -0.856 -0.001 -0.046 -0.255 0.230 -0.008 -0.233 0.307 -0.654 -0.047 -0.789 -0.144 -0.703 -0.363 -0.369 -0.463 0.026 0.079 -0.504 -0.419 0.142 0.454 -0.770 -0.061 0.008 -0.133 -0.082 -0.124 -0.444 -0.001 -0.053 -0.491 0.002 0.022 -0.078 -0.034 0.060 -0.454 -0.758 -0.666 -0.383 -0.379 -0.076 -0.025 -0.206 -0.315 -0.309 -0.493 -0.596 -0.226 -0.073 -0.350 -0.923 -0.552 -0.418 -0.039 -0.253 -0.023 -0.571 0.002 0.729 -0.113 0.045 -0.045 0.095 -0.034 -0.040 -0.119 -0.292 -0.011 -0.269 0.150 -0.360 0.039 -0.364 -0.820 -0.061 -0.179 -0.722 -0.051 -0.101 -0.438 -0.039 0.054 -0.710 -0.027 -0.310 0.049 0.144 0.040 0.254 0.360 -0.017 -0.025 -0.526 0.007 0.005 -0.954 0.400 0.147 -0.113 -0.634 -0.026 0.008 0.073 0.006 -0.758 -0.034 0.554 0.250 0.071 0.078 -0.057 0.000 -0.096 0.015 0.016 -0.679 0.011 -0.055 -0.553 -0.364 -0.011 -0.141 -0.014 -0.124 0.076 -0.081 -0.040 -0.365 -0.381 -0.115 -0.492 -0.637 -0.551 0.530 -0.109 0.023 0.654 -0.080 -0.005 0.011 -0.262 -0.099 1.140 0.251 -0.447 -0.239 -0.018 -0.115 -0.012 -0.317 -0.263 -0.129 -0.119 0.420 -0.335 -0.100 -0.734 -0.076 0.675 0.030 0.134 -0.577 -0.026 -0.527 0.317 -0.292 -0.168 0.046 -0.451 -0.037 -0.020 -0.353 -0.419 0.080 -0.097 -0.189 -0.574 0.012 -0.122 -0.407 -0.016 -0.470 -0.029 -0.221 0.045 -0.345 -0.600 0.025 -0.151 -0.034 -0.014 0.004 -0.016 -0.116 -0.639 -0.450 -0.644 -0.047 -0.320 -0.080 -0.017 -0.018 -0.135 0.001 0.025 -0.036 0.045 -0.079 0.003 -0.003 -0.063 -0.294 -0.368 -0.009 -0.261 -0.128 -0.029 -0.951 -0.340 -ATAD3B 83858 -0.005 -0.550 -0.021 0.010 -0.045 -0.397 0.142 -0.061 0.091 -0.612 -0.360 -0.487 0.187 -0.007 0.015 0.208 -0.026 -0.904 -0.187 1.280 -0.076 0.182 0.024 0.372 -0.039 0.138 -0.006 0.006 -0.548 -0.420 -0.040 0.024 -0.633 -0.249 0.379 -0.005 -0.020 0.006 -0.436 0.036 -0.430 -0.321 0.001 0.011 -0.079 -0.452 -0.050 -0.008 -0.025 -0.020 -0.337 -0.067 0.006 -0.222 0.244 0.064 -0.079 0.135 0.070 0.994 -0.021 -0.466 0.024 -0.046 -0.449 0.050 0.005 -0.291 -0.593 -0.152 -0.249 -0.479 -0.306 0.066 0.008 -0.005 0.055 0.004 -0.097 -0.403 -0.010 0.388 -0.176 -0.015 -0.024 0.015 -0.084 -0.100 -0.647 0.024 -0.005 -0.049 -0.110 0.152 -0.012 0.064 -0.196 -0.030 -0.281 -0.019 0.280 0.053 -0.518 -0.043 -0.291 -0.382 0.149 -0.031 -0.040 -0.019 0.002 -0.127 0.132 -0.054 0.036 -0.326 -0.320 0.016 -0.840 0.576 -0.585 -0.692 -0.417 -0.307 -0.046 -0.571 -0.159 0.086 0.033 -0.722 0.125 -0.099 -0.093 0.017 -0.157 -0.026 -0.062 -0.569 0.154 -0.015 -0.521 -0.031 0.011 0.090 -0.114 -0.032 0.051 -0.006 -0.134 -0.417 -0.631 0.255 -0.379 -0.151 -0.155 -0.759 0.030 -0.030 0.093 -0.263 0.005 -0.345 -0.015 -0.011 0.045 0.043 -0.147 -0.759 -0.606 -0.245 -0.425 0.036 -0.574 -0.122 -0.709 -0.406 -0.264 -0.010 -0.400 0.134 0.106 -0.709 0.264 0.015 0.017 -0.377 0.039 -0.233 -0.034 -0.184 -0.386 0.069 -0.065 -0.138 0.018 0.004 -0.016 0.017 0.021 -0.477 -0.472 -0.414 -0.157 -0.557 -0.448 -0.142 -0.820 -0.439 -0.393 -0.726 0.042 -0.003 0.044 -0.025 -0.326 0.066 0.693 -0.343 0.950 0.038 0.035 -0.549 -0.327 -0.022 0.006 0.362 0.138 0.059 -0.149 0.027 -0.016 -0.274 -0.814 -0.659 -0.034 -0.067 -0.305 -0.016 -0.449 0.002 -0.268 0.021 -0.023 -0.020 -0.027 -0.077 -0.532 1.200 -0.249 -0.611 -0.566 0.005 -0.336 -0.465 0.016 0.013 0.059 -0.473 -0.031 -0.494 -0.757 0.024 -0.282 -0.448 -0.152 -0.096 0.096 0.183 -0.418 -0.286 -0.104 0.027 0.072 -1.152 0.014 0.004 -0.028 -0.675 -0.407 0.082 -0.694 -0.670 -0.035 0.228 0.273 -0.384 -0.021 0.025 -0.049 -0.276 -0.060 -0.179 -0.057 -0.110 0.372 0.028 -0.714 -0.891 0.013 0.603 -0.114 -0.748 0.025 1.422 0.291 0.000 -0.123 -0.061 -0.027 0.069 -0.209 -0.109 0.014 0.063 0.007 -0.034 0.382 -0.042 -0.690 -0.739 0.134 -0.432 0.144 0.017 -0.011 -0.008 0.443 -0.369 -0.582 -0.346 0.002 -0.012 -0.047 -0.029 -0.054 -0.575 0.401 -0.163 -0.328 -0.400 -0.518 -0.064 0.024 -0.461 0.000 -0.363 -0.010 -0.043 -0.202 0.033 -0.058 0.055 0.069 -0.158 -0.047 -0.173 -0.425 -0.855 0.045 0.007 -0.552 -0.075 -0.025 -0.109 -0.355 -0.019 -0.514 0.165 -0.344 0.041 0.041 -0.020 -0.380 -0.602 -0.498 -0.231 0.033 0.002 0.722 -0.011 -0.084 -0.039 -0.539 -0.507 -0.142 -0.569 -0.277 -0.453 0.114 0.035 -0.049 -0.011 -0.180 -0.380 -0.275 0.016 -0.401 -0.219 0.015 -0.017 -0.149 -0.056 -0.027 -0.056 -0.066 -0.013 -0.305 -0.009 -0.017 0.029 -0.665 -0.254 0.025 -0.094 0.206 -0.414 0.041 -0.565 -0.639 -0.493 1.405 -0.062 -0.025 -0.498 0.445 -0.004 -0.028 -0.078 -0.045 -0.012 -0.025 0.034 1.610 -0.046 0.062 -0.626 -0.182 -0.002 -0.222 -0.019 -0.159 0.249 0.024 -0.462 -0.673 0.008 -0.012 0.047 -0.013 -0.536 -0.335 0.030 0.083 -0.040 0.052 0.032 0.047 -0.723 -0.410 -0.122 -0.065 -0.410 0.117 -0.001 0.002 -0.018 -0.263 0.002 -0.054 0.005 -0.436 -0.463 -0.240 0.041 -0.102 -0.332 -0.557 -0.501 -0.132 -0.098 -0.330 0.656 -0.527 0.012 -0.019 -0.007 -0.244 2.422 0.016 0.008 -0.538 -0.151 -0.730 -0.111 0.021 -0.730 -0.092 -0.202 0.074 -0.128 -0.081 -0.011 0.002 -0.045 -0.699 -0.051 0.031 0.018 -0.048 -0.053 -0.041 -0.827 0.092 -0.128 -0.011 0.163 -0.490 -0.149 -0.055 -0.197 0.000 -0.017 -0.002 0.041 -0.254 -0.117 0.037 -0.650 -0.119 -0.277 -0.184 -0.098 -0.583 -0.156 -0.105 -0.367 -0.094 -0.040 0.000 -0.099 -0.786 -0.327 -0.348 -0.242 -0.158 -0.075 0.010 -0.639 -0.014 0.101 -0.100 -0.046 -0.505 0.015 -0.154 -0.745 -0.290 -0.856 -0.001 -0.046 -0.255 0.230 -0.008 -0.233 0.307 -0.654 -0.047 -0.789 -0.144 -0.703 -0.363 -0.369 -0.463 0.026 0.079 -0.504 -0.419 0.142 0.454 -0.770 -0.061 0.008 -0.133 -0.082 -0.124 -0.444 -0.001 -0.053 -0.491 0.002 0.022 -0.078 -0.034 0.060 -0.454 -0.758 -0.666 -0.383 -0.379 -0.076 -0.025 -0.206 -0.315 -0.309 -0.493 -0.596 -0.226 -0.073 -0.350 -0.923 -0.552 -0.418 -0.039 -0.253 -0.023 -0.571 0.002 0.729 -0.113 0.045 -0.045 0.095 -0.034 -0.040 -0.119 -0.292 -0.011 -0.269 0.150 -0.360 0.039 -0.364 -0.820 -0.061 -0.179 -0.722 -0.051 -0.101 -0.438 -0.039 0.054 -0.710 -0.027 -0.310 0.049 0.144 0.040 0.254 0.360 -0.017 -0.025 -0.526 0.007 0.005 -0.954 0.400 0.147 -0.113 -0.634 -0.026 0.008 0.073 0.006 -0.758 -0.034 0.554 0.250 0.071 0.078 -0.057 0.000 -0.096 0.015 0.016 -0.679 0.011 -0.055 -0.553 -0.364 -0.011 -0.141 -0.014 -0.124 0.076 -0.081 -0.040 -0.365 -0.381 -0.115 -0.492 -0.637 -0.551 0.530 -0.109 0.023 0.654 -0.080 -0.005 0.011 -0.262 -0.099 1.140 0.251 -0.447 -0.239 -0.018 -0.115 -0.012 -0.317 -0.263 -0.129 -0.119 0.420 -0.335 -0.100 -0.734 -0.076 0.675 0.030 0.134 -0.577 -0.026 -0.527 0.317 -0.292 -0.168 0.046 -0.451 -0.037 -0.020 -0.353 -0.419 0.080 -0.097 -0.189 -0.574 0.012 -0.122 -0.407 -0.016 -0.470 -0.029 -0.221 0.045 -0.345 -0.600 0.025 -0.151 -0.034 -0.014 0.004 -0.016 -0.116 -0.639 -0.450 -0.644 -0.047 -0.320 -0.080 -0.017 -0.018 -0.135 0.001 0.025 -0.036 0.045 -0.079 0.003 -0.003 -0.063 -0.294 -0.368 -0.009 -0.261 -0.128 -0.029 -0.951 -0.340 -ATAD3C 219293 -0.005 -0.550 -0.021 0.010 -0.045 -0.397 0.142 -0.061 0.091 -0.612 -0.360 -0.487 0.187 -0.007 0.015 0.208 -0.026 -0.904 -0.187 1.280 -0.076 0.182 0.024 0.372 -0.039 0.138 -0.006 0.006 -0.548 -0.420 -0.040 0.024 -0.633 -0.249 0.379 -0.005 -0.020 0.006 -0.436 0.036 -0.430 -0.321 0.001 0.011 -0.079 -0.452 -0.050 -0.008 -0.025 -0.020 -0.337 -0.067 0.006 -0.222 0.244 0.064 -0.079 0.135 0.070 0.994 -0.021 -0.466 0.024 -0.046 -0.449 0.050 0.005 -0.291 -0.593 -0.152 -0.249 -0.479 -0.306 0.066 0.008 -0.005 0.055 0.004 -0.097 -0.403 -0.010 0.388 -0.176 -0.015 -0.024 0.015 -0.084 -0.100 -0.647 0.024 -0.005 -0.049 -0.110 0.152 -0.012 0.064 -0.196 -0.030 -0.281 -0.019 0.280 0.053 -0.518 -0.043 -0.291 -0.382 0.149 -0.031 -0.040 -0.019 0.002 -0.127 0.132 -0.054 0.036 -0.326 -0.320 0.016 -0.840 0.576 -0.585 -0.692 -0.417 -0.307 -0.046 -0.571 -0.159 0.086 0.033 -0.722 0.125 -0.099 -0.093 0.017 -0.157 -0.026 -0.062 -0.569 0.154 -0.015 -0.521 -0.031 0.011 0.090 -0.114 -0.032 0.051 -0.006 -0.134 -0.417 -0.631 0.255 -0.379 -0.151 -0.155 -0.759 0.030 -0.030 0.093 -0.263 0.005 -0.345 -0.015 -0.011 0.045 0.043 -0.147 -0.759 -0.606 -0.245 -0.425 0.036 -0.574 -0.122 -0.709 -0.406 -0.264 -0.010 -0.400 0.134 0.106 -0.709 0.264 0.015 0.017 -0.377 0.039 -0.233 -0.034 -0.184 -0.386 0.069 -0.065 -0.138 0.018 0.004 -0.016 0.017 0.021 -0.477 -0.472 -0.414 -0.157 -0.557 -0.448 -0.142 -0.820 -0.439 -0.393 -0.726 0.042 -0.003 0.044 -0.025 -0.326 0.066 0.693 -0.343 0.950 0.038 0.035 -0.549 -0.327 -0.022 0.006 0.362 0.138 0.059 -0.149 0.027 -0.016 -0.274 -0.814 -0.659 -0.034 -0.067 -0.305 -0.016 -0.449 0.002 -0.268 0.021 -0.023 -0.020 -0.027 -0.077 -0.532 1.200 -0.249 -0.611 -0.566 0.005 -0.336 -0.465 0.016 0.013 0.059 -0.473 -0.031 -0.494 -0.757 0.024 -0.282 -0.448 -0.152 -0.096 0.096 0.183 -0.418 -0.286 -0.104 0.027 0.072 -1.152 0.014 0.004 -0.028 -0.675 -0.407 0.082 -0.694 -0.670 -0.035 0.228 0.273 -0.384 -0.021 0.025 -0.049 -0.276 -0.060 -0.179 -0.057 -0.110 0.372 0.028 -0.714 -0.891 0.013 0.603 -0.114 -0.748 0.025 1.422 0.291 0.000 -0.123 -0.061 -0.027 0.069 -0.209 -0.109 0.014 0.063 0.007 -0.034 0.382 -0.042 -0.690 -0.739 0.134 -0.432 0.144 0.017 -0.011 -0.008 0.443 -0.369 -0.582 -0.346 0.002 -0.012 -0.047 -0.029 -0.054 -0.575 0.401 -0.163 -0.328 -0.400 -0.518 -0.064 0.024 -0.461 0.000 -0.363 -0.010 -0.043 -0.202 0.033 -0.058 0.055 0.069 -0.158 -0.047 -0.173 -0.425 -0.855 0.045 0.007 -0.552 -0.075 -0.025 -0.109 -0.355 -0.019 -0.514 0.165 -0.344 0.041 0.041 -0.020 -0.380 -0.602 -0.498 -0.231 0.033 0.002 0.722 -0.011 -0.084 -0.039 -0.539 -0.507 -0.142 -0.569 -0.277 -0.453 0.114 0.035 -0.049 -0.011 -0.180 -0.380 -0.275 0.016 -0.401 -0.219 0.015 -0.017 -0.149 -0.056 -0.027 -0.056 -0.066 -0.013 -0.305 -0.009 -0.017 0.029 -0.665 -0.254 0.025 -0.094 0.206 -0.414 0.041 -0.565 -0.639 -0.493 1.405 -0.062 -0.025 -0.498 0.445 -0.004 -0.028 -0.078 -0.045 -0.012 -0.025 0.034 1.610 -0.046 0.062 -0.626 -0.182 -0.002 -0.222 -0.019 -0.159 0.249 0.024 -0.462 -0.673 0.008 -0.012 0.047 -0.013 -0.536 -0.335 0.030 0.083 -0.040 0.052 0.032 0.047 -0.723 -0.410 -0.122 -0.065 -0.410 0.117 -0.001 0.002 -0.018 -0.263 0.002 -0.054 0.005 -0.436 -0.463 -0.240 0.041 -0.102 -0.332 -0.557 -0.501 -0.132 -0.098 -0.330 0.656 -0.527 0.012 -0.019 -0.007 -0.244 2.422 0.016 0.008 -0.538 -0.151 -0.730 -0.111 0.021 -0.730 -0.092 -0.202 0.074 -0.128 -0.081 -0.011 0.002 -0.045 -0.699 -0.051 0.031 0.018 -0.048 -0.053 -0.041 -0.827 0.092 -0.128 -0.011 0.163 -0.490 -0.149 -0.055 -0.197 0.000 -0.017 -0.002 0.041 -0.254 -0.117 0.037 -0.650 -0.119 -0.277 -0.184 -0.098 -0.583 -0.156 -0.105 -0.367 -0.094 -0.040 0.000 -0.099 -0.786 -0.327 -0.348 -0.242 -0.158 -0.075 0.010 -0.639 -0.014 0.101 -0.100 -0.046 -0.505 0.015 -0.154 -0.745 -0.290 -0.856 -0.001 -0.046 -0.255 0.230 -0.008 -0.233 0.307 -0.654 -0.047 -0.789 -0.144 -0.703 -0.363 -0.369 -0.463 0.026 0.079 -0.504 -0.419 0.142 0.454 -0.770 -0.061 0.008 -0.133 -0.082 -0.124 -0.444 -0.001 -0.053 -0.491 0.002 0.022 -0.078 -0.034 0.060 -0.454 -0.758 -0.666 -0.383 -0.379 -0.076 -0.025 -0.206 -0.315 -0.309 -0.493 -0.596 -0.226 -0.073 -0.350 -0.923 -0.552 -0.418 -0.039 -0.253 -0.023 -0.571 0.002 0.729 -0.113 0.045 -0.045 0.095 -0.034 -0.040 -0.119 -0.292 -0.011 -0.269 0.150 -0.360 0.039 -0.364 -0.820 -0.061 -0.179 -0.722 -0.051 -0.101 -0.438 -0.039 0.054 -0.710 -0.027 -0.310 0.049 0.144 0.040 0.254 0.360 -0.017 -0.025 -0.526 0.007 0.005 -0.954 0.400 0.147 -0.113 -0.634 -0.026 0.008 0.073 0.006 -0.758 -0.034 0.554 0.250 0.071 0.078 -0.057 0.000 -0.096 0.015 0.016 -0.679 0.011 -0.055 -0.553 -0.364 -0.011 -0.141 -0.014 -0.124 0.076 -0.081 -0.040 -0.365 -0.381 -0.115 -0.492 -0.637 -0.551 0.530 -0.109 0.023 0.654 -0.080 -0.005 0.011 -0.262 -0.099 1.140 0.251 -0.447 -0.239 -0.018 -0.115 -0.012 -0.317 -0.263 -0.129 -0.119 0.420 -0.335 -0.100 -0.734 -0.076 0.675 0.030 0.134 -0.577 -0.026 -0.527 0.317 -0.292 -0.168 0.046 -0.451 -0.037 -0.020 -0.353 -0.419 0.080 -0.097 -0.189 -0.574 0.012 -0.122 -0.407 -0.016 -0.470 -0.029 -0.221 0.045 -0.345 -0.600 0.025 -0.151 -0.034 -0.014 0.004 -0.016 -0.116 -0.639 -0.450 -0.644 -0.047 -0.320 -0.080 -0.017 -0.018 -0.135 0.001 0.025 -0.036 0.045 -0.079 0.003 -0.003 -0.063 -0.294 -0.368 -0.009 -0.261 -0.128 -0.029 -0.951 -0.340 -AURKAIP1 54998 -0.005 -0.550 -0.021 0.010 -0.045 -0.397 0.142 -0.061 0.091 -0.612 -0.360 -0.487 0.187 -0.007 0.015 0.208 -0.026 -0.904 -0.187 1.280 -0.076 0.182 0.024 0.372 -0.039 0.138 -0.006 0.006 -0.548 -0.420 -0.040 0.024 -0.633 -0.249 0.379 -0.005 -0.020 0.006 -0.436 0.036 -0.430 -0.321 0.001 0.011 -0.079 -0.452 -0.050 -0.008 -0.025 -0.020 -0.337 -0.067 0.006 -0.222 0.244 0.064 -0.079 0.135 0.070 0.994 -0.021 -0.466 0.024 -0.046 -0.449 0.050 0.005 -0.291 -0.593 -0.152 -0.249 -0.479 -0.306 0.066 0.008 -0.005 0.055 0.004 -0.097 -0.403 -0.010 0.388 -0.176 -0.015 -0.024 0.015 -0.084 -0.100 -0.647 0.024 -0.005 -0.049 -0.110 0.152 -0.012 0.064 -0.196 -0.030 -0.281 -0.019 0.280 0.053 -0.518 -0.043 -0.291 -0.382 0.149 -0.031 -0.040 -0.019 0.002 -0.127 0.132 -0.054 0.036 -0.326 -0.320 0.016 -0.840 0.576 -0.585 -0.692 -0.417 -0.307 -0.046 -0.571 -0.159 0.086 0.033 -0.722 0.125 -0.099 -0.093 0.017 -0.157 -0.026 -0.062 -0.569 0.154 -0.015 -0.521 -0.031 0.011 0.090 -0.114 -0.032 0.051 -0.006 -0.134 -0.417 -0.631 0.255 -0.379 -0.151 -0.155 -0.759 0.030 -0.030 0.093 -0.263 0.005 -0.345 -0.015 -0.011 0.045 0.043 -0.147 -0.759 -0.606 -0.245 -0.425 0.036 -0.574 -0.122 -0.709 -0.406 -0.264 -0.010 -0.400 0.134 0.106 -0.709 0.264 0.015 0.017 -0.377 0.039 -0.233 -0.034 -0.184 -0.386 0.069 -0.065 -0.138 0.018 0.004 -0.016 0.017 0.021 -0.477 -0.472 -0.414 -0.157 -0.557 -0.448 -0.142 -0.820 -0.439 -0.393 -0.726 0.042 -0.003 0.044 -0.025 -0.326 0.066 0.693 -0.343 0.950 0.038 0.035 -0.549 -0.327 -0.022 0.006 0.362 0.138 0.059 -0.149 0.027 -0.016 -0.274 -0.814 -0.659 -0.034 -0.067 -0.305 -0.016 -0.449 0.002 -0.268 0.021 -0.023 -0.020 -0.027 -0.077 -0.532 1.200 -0.249 -0.611 -0.566 0.005 -0.336 -0.465 0.016 0.013 0.059 -0.473 -0.031 -0.494 -0.757 0.024 -0.282 -0.448 -0.152 -0.096 0.096 0.183 -0.418 -0.286 -0.104 0.027 0.072 -1.152 0.014 0.004 -0.028 -0.675 -0.407 0.082 -0.694 -0.670 -0.035 0.228 0.273 -0.384 -0.021 0.025 -0.049 -0.276 -0.060 -0.179 -0.057 -0.110 0.372 0.028 -0.714 -0.891 0.013 0.603 -0.114 -0.748 0.025 1.422 0.291 0.000 -0.123 -0.061 -0.027 0.069 -0.209 -0.109 0.014 0.063 0.007 -0.034 0.382 -0.042 -0.690 -0.739 0.134 -0.432 0.144 0.017 -0.011 -0.008 0.443 -0.369 -0.582 -0.346 0.002 -0.012 -0.047 -0.029 -0.054 -0.575 0.401 -0.163 -0.328 -0.400 -0.518 -0.064 0.024 -0.461 0.000 -0.363 -0.010 -0.043 -0.202 0.033 -0.058 0.055 0.069 -0.158 -0.047 -0.173 -0.425 -0.855 0.045 0.007 -0.552 -0.075 -0.025 -0.109 -0.355 -0.019 -0.514 0.165 -0.344 0.041 0.041 -0.020 -0.380 -0.602 -0.498 -0.231 0.033 0.002 0.722 -0.011 -0.084 -0.039 -0.539 -0.507 -0.142 -0.569 -0.277 -0.453 0.114 0.035 -0.049 -0.011 -0.180 -0.380 -0.275 0.016 -0.401 -0.219 0.015 -0.017 -0.149 -0.056 -0.027 -0.056 -0.066 -0.013 -0.305 -0.009 -0.017 0.029 -0.665 -0.254 0.025 -0.094 0.206 -0.414 0.041 -0.565 -0.639 -0.493 1.405 -0.062 -0.025 -0.498 0.445 -0.004 -0.028 -0.078 -0.045 -0.012 -0.025 0.034 1.610 -0.046 0.062 -0.626 -0.182 -0.002 -0.222 -0.019 -0.159 0.249 0.024 -0.462 -0.673 0.008 -0.012 0.047 -0.013 -0.536 -0.335 0.030 0.083 -0.040 0.052 0.032 0.047 -0.723 -0.410 -0.122 -0.065 -0.410 0.117 -0.001 0.002 -0.018 -0.263 0.002 -0.054 0.005 -0.436 -0.463 -0.240 0.041 -0.102 -0.332 -0.557 -0.501 -0.132 -0.098 -0.330 0.656 -0.527 0.012 -0.019 -0.007 -0.244 2.422 0.016 0.008 -0.538 -0.151 -0.730 -0.111 0.021 -0.730 -0.092 -0.202 0.074 -0.128 -0.081 -0.011 0.002 -0.045 -0.699 -0.051 0.031 0.018 -0.048 -0.053 -0.041 -0.827 0.092 -0.128 -0.011 0.163 -0.490 -0.149 -0.055 -0.197 0.000 -0.017 -0.002 0.041 -0.254 -0.117 0.037 -0.650 -0.119 -0.277 -0.184 -0.098 -0.583 -0.156 -0.105 -0.367 -0.094 -0.040 0.000 -0.099 -0.786 -0.327 -0.348 -0.242 -0.158 -0.075 0.010 -0.639 -0.014 0.101 -0.100 -0.046 -0.505 0.015 -0.154 -0.745 -0.290 -0.856 -0.001 -0.046 -0.255 0.230 -0.008 -0.233 0.307 -0.654 -0.047 -0.789 -0.144 -0.703 -0.363 -0.369 -0.463 0.026 0.079 -0.504 -0.419 0.142 0.454 -0.770 -0.061 0.008 -0.133 -0.082 -0.124 -0.444 -0.001 -0.053 -0.491 0.002 0.022 -0.078 -0.034 0.060 -0.454 -0.758 -0.666 -0.383 -0.379 -0.076 -0.025 -0.206 -0.315 -0.309 -0.493 -0.596 -0.226 -0.073 -0.350 -0.923 -0.552 -0.418 -0.039 -0.253 -0.023 -0.571 0.002 0.729 -0.113 0.045 -0.045 0.095 -0.034 -0.040 -0.119 -0.292 -0.011 -0.269 0.150 -0.360 0.039 -0.364 -0.820 -0.061 -0.179 -0.722 -0.051 -0.101 -0.438 -0.039 0.054 -0.710 -0.027 -0.310 0.049 0.144 0.040 0.254 0.360 -0.017 -0.025 -0.526 0.007 0.005 -0.954 0.400 0.147 -0.113 -0.634 -0.026 0.008 0.073 0.006 -0.758 -0.034 0.554 0.250 0.071 0.078 -0.057 0.000 -0.096 0.015 0.016 -0.679 0.011 -0.055 -0.553 -0.364 -0.011 -0.141 -0.014 -0.124 0.076 -0.081 -0.040 -0.365 -0.381 -0.115 -0.492 -0.637 -0.551 0.530 -0.109 0.023 0.654 -0.080 -0.005 0.011 -0.262 -0.099 1.140 0.251 -0.447 -0.239 -0.018 -0.115 -0.012 -0.317 -0.263 -0.129 -0.119 0.420 -0.335 -0.100 -0.734 -0.076 0.675 0.030 0.134 -0.577 -0.026 -0.527 0.317 -0.292 -0.168 0.046 -0.451 -0.037 -0.020 -0.353 -0.419 0.080 -0.097 -0.189 -0.574 0.012 -0.122 -0.407 -0.016 -0.470 -0.029 -0.221 0.045 -0.345 -0.600 0.025 -0.151 -0.034 -0.014 0.004 -0.016 -0.116 -0.639 -0.450 -0.644 -0.047 -0.320 -0.080 -0.017 -0.018 -0.135 0.001 0.025 -0.036 0.045 -0.079 0.003 -0.003 -0.063 -0.294 -0.368 -0.009 -0.261 -0.128 -0.029 -0.951 -0.340 -ERCC5|aaa 2073 -0.005 -0.550 -0.021 0.010 -0.045 -0.397 0.142 -0.061 0.091 -0.612 -0.360 -0.487 0.187 -0.007 0.015 0.208 -0.026 -0.904 -0.187 1.280 -0.076 0.182 0.024 0.372 -0.039 0.138 -0.006 0.006 -0.548 -0.420 -0.040 0.024 -0.633 -0.249 0.379 -0.005 -0.020 0.006 -0.436 0.036 -0.430 -0.321 0.001 0.011 -0.079 -0.452 -0.050 -0.008 -0.025 -0.020 -0.337 -0.067 0.006 -0.222 0.244 0.064 -0.079 0.135 0.070 0.994 -0.021 -0.466 0.024 -0.046 -0.449 0.050 0.005 -0.291 -0.593 -0.152 -0.249 -0.479 -0.306 0.066 0.008 -0.005 0.055 0.004 -0.097 -0.403 -0.010 0.388 -0.176 -0.015 -0.024 0.015 -0.084 -0.100 -0.647 0.024 -0.005 -0.049 -0.110 0.152 -0.012 0.064 -0.196 -0.030 -0.281 -0.019 0.280 0.053 -0.518 -0.043 -0.291 -0.382 0.149 -0.031 -0.040 -0.019 0.002 -0.127 0.132 -0.054 0.036 -0.326 -0.320 0.016 -0.840 0.576 -0.585 -0.692 -0.417 -0.307 -0.046 -0.571 -0.159 0.086 0.033 -0.722 0.125 -0.099 -0.093 0.017 -0.157 -0.026 -0.062 -0.569 0.154 -0.015 -0.521 -0.031 0.011 0.090 -0.114 -0.032 0.051 -0.006 -0.134 -0.417 -0.631 0.255 -0.379 -0.151 -0.155 -0.759 0.030 -0.030 0.093 -0.263 0.005 -0.345 -0.015 -0.011 0.045 0.043 -0.147 -0.759 -0.606 -0.245 -0.425 0.036 -0.574 -0.122 -0.709 -0.406 -0.264 -0.010 -0.400 0.134 0.106 -0.709 0.264 0.015 0.017 -0.377 0.039 -0.233 -0.034 -0.184 -0.386 0.069 -0.065 -0.138 0.018 0.004 -0.016 0.017 0.021 -0.477 -0.472 -0.414 -0.157 -0.557 -0.448 -0.142 -0.820 -0.439 -0.393 -0.726 0.042 -0.003 0.044 -0.025 -0.326 0.066 0.693 -0.343 0.950 0.038 0.035 -0.549 -0.327 -0.022 0.006 0.362 0.138 0.059 -0.149 0.027 -0.016 -0.274 -0.814 -0.659 -0.034 -0.067 -0.305 -0.016 -0.449 0.002 -0.268 0.021 -0.023 -0.020 -0.027 -0.077 -0.532 1.200 -0.249 -0.611 -0.566 0.005 -0.336 -0.465 0.016 0.013 0.059 -0.473 -0.031 -0.494 -0.757 0.024 -0.282 -0.448 -0.152 -0.096 0.096 0.183 -0.418 -0.286 -0.104 0.027 0.072 -1.152 0.014 0.004 -0.028 -0.675 -0.407 0.082 -0.694 -0.670 -0.035 0.228 0.273 -0.384 -0.021 0.025 -0.049 -0.276 -0.060 -0.179 -0.057 -0.110 0.372 0.028 -0.714 -0.891 0.013 0.603 -0.114 -0.748 0.025 1.422 0.291 0.000 -0.123 -0.061 -0.027 0.069 -0.209 -0.109 0.014 0.063 0.007 -0.034 0.382 -0.042 -0.690 -0.739 0.134 -0.432 0.144 0.017 -0.011 -0.008 0.443 -0.369 -0.582 -0.346 0.002 -0.012 -0.047 -0.029 -0.054 -0.575 0.401 -0.163 -0.328 -0.400 -0.518 -0.064 0.024 -0.461 0.000 -0.363 -0.010 -0.043 -0.202 0.033 -0.058 0.055 0.069 -0.158 -0.047 -0.173 -0.425 -0.855 0.045 0.007 -0.552 -0.075 -0.025 -0.109 -0.355 -0.019 -0.514 0.165 -0.344 0.041 0.041 -0.020 -0.380 -0.602 -0.498 -0.231 0.033 0.002 0.722 -0.011 -0.084 -0.039 -0.539 -0.507 -0.142 -0.569 -0.277 -0.453 0.114 0.035 -0.049 -0.011 -0.180 -0.380 -0.275 0.016 -0.401 -0.219 0.015 -0.017 -0.149 -0.056 -0.027 -0.056 -0.066 -0.013 -0.305 -0.009 -0.017 0.029 -0.665 -0.254 0.025 -0.094 0.206 -0.414 0.041 -0.565 -0.639 -0.493 1.405 -0.062 -0.025 -0.498 0.445 -0.004 -0.028 -0.078 -0.045 -0.012 -0.025 0.034 1.610 -0.046 0.062 -0.626 -0.182 -0.002 -0.222 -0.019 -0.159 0.249 0.024 -0.462 -0.673 0.008 -0.012 0.047 -0.013 -0.536 -0.335 0.030 0.083 -0.040 0.052 0.032 0.047 -0.723 -0.410 -0.122 -0.065 -0.410 0.117 -0.001 0.002 -0.018 -0.263 0.002 -0.054 0.005 -0.436 -0.463 -0.240 0.041 -0.102 -0.332 -0.557 -0.501 -0.132 -0.098 -0.330 0.656 -0.527 0.012 -0.019 -0.007 -0.244 2.422 0.016 0.008 -0.538 -0.151 -0.730 -0.111 0.021 -0.730 -0.092 -0.202 0.074 -0.128 -0.081 -0.011 0.002 -0.045 -0.699 -0.051 0.031 0.018 -0.048 -0.053 -0.041 -0.827 0.092 -0.128 -0.011 0.163 -0.490 -0.149 -0.055 -0.197 0.000 -0.017 -0.002 0.041 -0.254 -0.117 0.037 -0.650 -0.119 -0.277 -0.184 -0.098 -0.583 -0.156 -0.105 -0.367 -0.094 -0.040 0.000 -0.099 -0.786 -0.327 -0.348 -0.242 -0.158 -0.075 0.010 -0.639 -0.014 0.101 -0.100 -0.046 -0.505 0.015 -0.154 -0.745 -0.290 -0.856 -0.001 -0.046 -0.255 0.230 -0.008 -0.233 0.307 -0.654 -0.047 -0.789 -0.144 -0.703 -0.363 -0.369 -0.463 0.026 0.079 -0.504 -0.419 0.142 0.454 -0.770 -0.061 0.008 -0.133 -0.082 -0.124 -0.444 -0.001 -0.053 -0.491 0.002 0.022 -0.078 -0.034 0.060 -0.454 -0.758 -0.666 -0.383 -0.379 -0.076 -0.025 -0.206 -0.315 -0.309 -0.493 -0.596 -0.226 -0.073 -0.350 -0.923 -0.552 -0.418 -0.039 -0.253 -0.023 -0.571 0.002 0.729 -0.113 0.045 -0.045 0.095 -0.034 -0.040 -0.119 -0.292 -0.011 -0.269 0.150 -0.360 0.039 -0.364 -0.820 -0.061 -0.179 -0.722 -0.051 -0.101 -0.438 -0.039 0.054 -0.710 -0.027 -0.310 0.049 0.144 0.040 0.254 0.360 -0.017 -0.025 -0.526 0.007 0.005 -0.954 0.400 0.147 -0.113 -0.634 -0.026 0.008 0.073 0.006 -0.758 -0.034 0.554 0.250 0.071 0.078 -0.057 0.000 -0.096 0.015 0.016 -0.679 0.011 -0.055 -0.553 -0.364 -0.011 -0.141 -0.014 -0.124 0.076 -0.081 -0.040 -0.365 -0.381 -0.115 -0.492 -0.637 -0.551 0.530 -0.109 0.023 0.654 -0.080 -0.005 0.011 -0.262 -0.099 1.140 0.251 -0.447 -0.239 -0.018 -0.115 -0.012 -0.317 -0.263 -0.129 -0.119 0.420 -0.335 -0.100 -0.734 -0.076 0.675 0.030 0.134 -0.577 -0.026 -0.527 0.317 -0.292 -0.168 0.046 -0.451 -0.037 -0.020 -0.353 -0.419 0.080 -0.097 -0.189 -0.574 0.012 -0.122 -0.407 -0.016 -0.470 -0.029 -0.221 0.045 -0.345 -0.600 0.025 -0.151 -0.034 -0.014 0.004 -0.016 -0.116 -0.639 -0.450 -0.644 -0.047 -0.320 -0.080 -0.017 -0.018 -0.135 0.001 0.025 -0.036 0.045 -0.079 0.003 -0.003 -0.063 -0.294 -0.368 -0.009 -0.261 -0.128 -0.029 -0.951 -0.340 diff --git a/core/src/test/scripts/test_data/study_es_0/data_mutational_signature.txt b/core/src/test/scripts/test_data/study_es_0/data_mutational_signature.txt deleted file mode 100644 index 70f21a6d9e3..00000000000 --- a/core/src/test/scripts/test_data/study_es_0/data_mutational_signature.txt +++ /dev/null @@ -1,61 +0,0 @@ -ENTITY_STABLE_ID name description confidenceStatement TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -mean_1 mean_1 mean_1 Signature 1, the aging signature, is detected in this case. 0.370266873 0.010373016 0.005419294 0.022753384 0.037687823 0.016708976 0.100042446 0.104214723 -mean_10 mean_10 mean_10 Signature 10, the POLE signature, is detected in this case. It is associated with functions to the exonucleus domain of the POLE gene and enormous mutational burden. Oftentimes MMR signatures 6, 14,16, 20,21 and 26 co-occur with the POLE signature. 0.002709404 0.009212318 0.002650657 0.005475484 0.074175715 0.033049207 0.027323826 0.008861145 -mean_11 mean_11 mean_11 Signature 11, the Temozolomide (TMZ) signature, is detected in this case. 0.006035782 0.010095773 0.011926486 0.010637541 0.012168938 0.006641113 0.025730547 0.020463421 -mean_12 mean_12 mean_12 Signature 12 is detected in this case. We are not confident that we are able to detect signature 9 in the IMPACT cohort. In the literature it is found in liver cancer. 0.026432791 0.012953054 0.002587003 0.02225923 0.031026708 0.01642898 0.022392184 0.013437576 -mean_13 mean_13 mean_13 Signature 13, the APOBEC signature, is detected in this case. This signature often coccurs with signature 2, the other APOBEC signature. 0.002533773 0.012080707 0.06750656 0.403672528 0.011124 0.007631916 0.018970187 0.006076126 -mean_14 mean_14 mean_14 Signature 14, the signature of simultaneous MMR and POLE dysfunction is detected in this case. This signature usually occurs in cases with the POLE signature (signature 10) and other MMR signatures (6, 15, 20, 21 26). 0.006562519 0.009705064 0.005008429 0.01169992 0.02000342 0.014500145 0.034613722 0.030906098 -mean_15 mean_15 mean_15 Signature 15, a MMR signature, is detected in this case. It is usually associated with high mutational burden. 0.011970661 0.013967505 0.003583145 0.066176992 0.024139531 0.012422269 0.035150854 0.024233274 -mean_16 mean_16 mean_16 Signature 16 is detected in this case. We are not confident that we are able to detect signature 16 in the IMPACT cohort. In the literature it is associated with Liver cancer and alcohol consumption. 0.018075581 0.016174795 0.004085478 0.044836595 0.021500178 0.033960161 0.017962899 0.018849434 -mean_17 mean_17 mean_17 Signature 17 is detected in this case. The aetiology of this signature is unknown. It is predominantly found in gastric cancers. 0.004132642 0.017328434 0.001582939 0.00748642 0.018217142 0.008715209 0.029658706 0.021823903 -mean_18 mean_18 mean_18 Signature 18 is detected in this case. This signature is associated with MUTYH dysfunction and neuroblastoma. 0.005101312 0.027691339 0.078176692 0.007035636 0.016781154 0.226542324 0.030862216 0.05876765 -mean_19 mean_19 mean_19 Signature 19 is detected in this case. We are not confident that we are able to detect signature 19 in the IMPACT cohort. 0.018196853 0.016768977 0.010922822 0.014000266 0.011772131 0.011231503 0.035316214 0.094947481 -mean_2 mean_2 mean_2 Signature 2, the APOBEC signature, is detected in this case. This signature often coccurs with signature 13, the other APOBEC signature. 0.002663685 0.009194336 0.003716748 0.067693367 0.019050891 0.008820839 0.024258107 0.005814542 -mean_20 mean_20 mean_20 Signature 20 is detected in this case. This signature is associated with MMR and usually occurs in cases with the POLE signature (signature 10) and other MMR signatures (6, 14, 15, 21, 26). 0.03066836 0.012905178 0.003569324 0.014119672 0.022474579 0.014813438 0.055457368 0.030155165 -mean_21 mean_21 mean_21 Signature 21 is detected in this case. This signature is associated with MMR and usually co-occurs with other MMR signatures (6, 14, 15, 21, 26). 0.010964959 0.011272353 0.002258851 0.051853446 0.281501917 0.01281546 0.044179589 0.008190074 -mean_22 mean_22 mean_22 Signature 22 is detected in this case. We are not confident that we are able to detect signature 22 in the IMPACT cohort. In the literature it is associated with exposure to Aristolochic Acid. 0.028491957 0.010217024 0.004586289 0.011222009 0.019770493 0.008535491 0.024637853 0.020913163 -mean_23 mean_23 mean_23 Signature 23 is detected in this case. We are not confident that we are able to detect signature 23 in the IMPACT cohort. 0.00396734 0.010046981 0.01277244 0.007964559 0.011004478 0.008391836 0.034836096 0.03286779 -mean_24 mean_24 mean_24 Signature 24 is detected in this case. We are not confident that we are able to detect signature 24 in the IMPACT cohort. In the literature it is associated with aflatoxin exposure. In our cohort we believe it is detected by accident in cases with the smoking signature (signature 4). 0.032792827 0.078245387 0.066150339 0.014742662 0.017324086 0.061761186 0.017605536 0.051708779 -mean_25 mean_25 mean_25 Signature 25 is detected in this case. We are not confident that we are able to detect signature 25 in the IMPACT cohort. 0.011646217 0.048154399 0.03076214 0.013605822 0.038587852 0.013944057 0.023546505 0.037501919 -mean_26 mean_26 mean_26 Signature 26 is detected in this case. This signature is associated with MMR and usually co-occurs with other MMR signatures (6, 14, 15, 20, 21). 0.015537112 0.013825612 0.002464907 0.028813826 0.070298683 0.01999462 0.030799083 0.009143951 -mean_27 mean_27 mean_27 Signature 27 is detected in this case. We are not confident that we are able to detect signature 27 in the IMPACT cohort. 0.003465676 0.012766477 0.004909123 0.00658944 0.010038977 0.008511252 0.023474418 0.009076485 -mean_28 mean_28 mean_28 Signature 28 is detected in this case. We are not confident that we are able to detect signature 28 in the IMPACT cohort. It often co-occurs with signature 28. 0.003755223 0.011667726 0.001739293 0.005067195 0.012723938 0.007772049 0.021565925 0.007837668 -mean_29 mean_29 mean_29 Signature 29, the mutational signature of chewing tobacco is detected in this case. 0.010813509 0.013306168 0.034629865 0.011708457 0.01498353 0.042949985 0.030807758 0.04361619 -mean_3 mean_3 mean_3 Signature 3, the signature of Homologous Recombination Repair deficiency is detected in this case. This signature is most commonly associated with BRCA mutations. 0.012076334 0.399378181 0.058149399 0.024712129 0.022463858 0.069775315 0.022253226 0.023919542 -mean_30 mean_30 mean_30 Signature 30 is detected in this case. We are not confident that we are able to detect signature 30 in the IMPACT cohort. 0.021187235 0.019180665 0.007104322 0.015637667 0.021432941 0.020436345 0.036460701 0.022300431 -mean_4 mean_4 mean_4 Signature 4, the smoking signature is detected in this case. 0.02998631 0.05161966 0.066550323 0.017921856 0.016096543 0.179497941 0.024659786 0.097992724 -mean_5 mean_5 mean_5 Signature 5 is detected in this case. We are not confident that we are able to detect signature 5 in the IMPACT cohort. It is a 'flat' signature--when it is detected it is more likely to be an artefact. In the literature it is associated with age. 0.065346508 0.065105663 0.005317173 0.039082099 0.025806853 0.071908149 0.028765511 0.030413987 -mean_6 mean_6 mean_6 Signature 6, a MMR signature, is detected in this case. It is usually associated with high mutational burden. This signature often co-occurs with other MMR signatures (14, 15, 20, 21 26). 0.215904676 0.009298163 0.004855268 0.020464262 0.030032579 0.01055262 0.094946543 0.100148333 -mean_7 mean_7 mean_7 Signature 7, the UV light signature, is detected in this case. 0.008428142 0.011008883 0.009634254 0.010727403 0.037470752 0.007375711 0.036357093 0.025096172 -mean_8 mean_8 mean_8 Signature 8 is detected in this case. We are not confident that we are able to detect signature 8 in the IMPACT cohort. It is a 'flat' signature--when it is detected it is more likely to be an artefact. In the literature it is associated with HRD defects. 0.009033066 0.04154581 0.483003282 0.014265047 0.029063134 0.028977736 0.026974185 0.031083861 -mean_9 mean_9 mean_9 Signature 9 is detected in this case. We are not confident that we are able to detect signature 9 in the IMPACT cohort. In the literature it is associated with POLH. 0.011252674 0.014910352 0.004377151 0.007775086 0.021277177 0.015334168 0.020390915 0.009638392 -confidence_1 confidence_1 confidence_1 NA 0.653 0.066 0.05 0.129 0.1415 0.079 0.234 0.274 -confidence_10 confidence_10 confidence_10 NA 0.0235 0.0645 0.022 0.0465 0.2595 0.1505 0.1 0.062 -confidence_11 confidence_11 confidence_11 NA 0.0465 0.067 0.115 0.0775 0.0745 0.0535 0.0995 0.098 -confidence_12 confidence_12 confidence_12 NA 0.1375 0.068 0.024 0.1275 0.1165 0.0945 0.09 0.074 -confidence_13 confidence_13 confidence_13 NA 0.0185 0.0685 0.5655 0.936 0.0665 0.052 0.083 0.0515 -confidence_14 confidence_14 confidence_14 NA 0.054 0.067 0.0405 0.0785 0.0845 0.0755 0.119 0.1415 -confidence_15 confidence_15 confidence_15 NA 0.0745 0.0745 0.034 0.284 0.092 0.0745 0.1185 0.1215 -confidence_16 confidence_16 confidence_16 NA 0.1025 0.0795 0.031 0.196 0.1 0.139 0.0815 0.0895 -confidence_17 confidence_17 confidence_17 NA 0.036 0.0825 0.011 0.0605 0.094 0.0555 0.11 0.1105 -confidence_18 confidence_18 confidence_18 NA 0.0445 0.1105 0.297 0.0615 0.069 0.434 0.1055 0.1965 -confidence_19 confidence_19 confidence_19 NA 0.0955 0.073 0.0885 0.086 0.0725 0.065 0.114 0.2685 -confidence_2 confidence_2 confidence_2 NA 0.0235 0.0525 0.0325 0.293 0.0945 0.057 0.1015 0.0415 -confidence_20 confidence_20 confidence_20 NA 0.14 0.0745 0.0305 0.0835 0.101 0.0725 0.1505 0.1325 -confidence_21 confidence_21 confidence_21 NA 0.0725 0.072 0.0215 0.24 0.5255 0.09 0.131 0.0635 -confidence_22 confidence_22 confidence_22 NA 0.2335 0.0685 0.0415 0.09 0.0865 0.063 0.103 0.126 -confidence_23 confidence_23 confidence_23 NA 0.0365 0.0605 0.12 0.0635 0.064 0.0615 0.112 0.1525 -confidence_24 confidence_24 confidence_24 NA 0.1975 0.1925 0.297 0.0905 0.081 0.215 0.08 0.195 -confidence_25 confidence_25 confidence_25 NA 0.0695 0.134 0.132 0.083 0.123 0.079 0.094 0.1365 -confidence_26 confidence_26 confidence_26 NA 0.0955 0.073 0.023 0.1475 0.183 0.0995 0.109 0.067 -confidence_27 confidence_27 confidence_27 NA 0.0305 0.0795 0.05 0.053 0.0675 0.0605 0.0955 0.064 -confidence_28 confidence_28 confidence_28 NA 0.0325 0.077 0.0135 0.044 0.0785 0.0555 0.1 0.0605 -confidence_29 confidence_29 confidence_29 NA 0.0835 0.0725 0.172 0.074 0.08 0.138 0.111 0.164 -confidence_3 confidence_3 confidence_3 NA 0.083 0.629 0.1835 0.12 0.101 0.21 0.0845 0.1215 -confidence_30 confidence_30 confidence_30 NA 0.123 0.096 0.0625 0.091 0.0995 0.107 0.1145 0.107 -confidence_4 confidence_4 confidence_4 NA 0.1685 0.1485 0.2155 0.1005 0.08 0.382 0.0995 0.2815 -confidence_5 confidence_5 confidence_5 NA 0.218 0.1645 0.0445 0.1665 0.1045 0.187 0.114 0.1155 -confidence_6 confidence_6 confidence_6 NA 0.4325 0.062 0.043 0.1275 0.113 0.069 0.2225 0.2885 -confidence_7 confidence_7 confidence_7 NA 0.0705 0.075 0.0975 0.0765 0.137 0.0545 0.1105 0.1225 -confidence_8 confidence_8 confidence_8 NA 0.07 0.132 0.859 0.0935 0.106 0.123 0.106 0.131 -confidence_9 confidence_9 confidence_9 NA 0.081 0.0775 0.033 0.0615 0.0845 0.082 0.09 0.064 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_0/result_report.html b/core/src/test/scripts/test_data/study_es_0/result_report.html deleted file mode 100644 index 8a39412f12d..00000000000 --- a/core/src/test/scripts/test_data/study_es_0/result_report.html +++ /dev/null @@ -1,3195 +0,0 @@ - - - - - - - - - - - - - cBioPortal validation report: study in 'test_data/study_es_0/' - - - - - -
    -
    -
    -

    cBioPortal validation report

    -

    Study directory:
    test_data/study_es_0/

    -

    For details, please see the documentation on file formats supported by cBioPortal

    -

    cBioPortal version unknown -- offline instance

    -
    -
    - - -
    -
    -
    - Validation status: - - Success - -
    - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugReading portal information from test_data/api_json_system_tests/cancer-types.json
    DebugReading portal information from test_data/api_json_system_tests/genes.json
    DebugReading portal information from test_data/api_json_system_tests/genesets.json
    DebugReading portal information from test_data/api_json_system_tests/genesets_version.json
    DebugReading portal information from test_data/api_json_system_tests/gene-panels.json
    DebugReading portal information from test_data/api_json_system_tests/genesaliases.json
    DebugRetrieving chromosome lengths from '/cbioportal/core/src/main/scripts/importer/chromosome_sizes.json'
    DebugRetrieving chromosome lengths from '/cbioportal/core/src/main/scripts/importer/chromosome_sizes.json'
    DebugStudy Tag file found. It will be validated.
    DebugValidating case lists
    InfoValidation of case list folder complete
    InfoValidation complete
    -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 1 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 846 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 850 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Info154, 155, 844…6Values contained in the column cbp_driver_tiers that will appear in the "Mutation Color" menu of the OncoprintClass 2, Class 1 - See all 4 values - -
    InfoValidation of file complete
    InfoRead 6305 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 10 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 8 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 7 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 6 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Info1This column can be replaced by a 'gene_panel' property in the respective meta filegistic
    InfoValidation of file complete
    InfoRead 21 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 3 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 12 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 8 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 8 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 9 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 61 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Info4, 5, 6…164Values contained in the column cbp_driver_tiers that will appear in the "Mutation Color" menu of the OncoprintClass 2, Class 1, Class 4… - See all 11 values - -
    Info7, 9Line will not be loaded due to the variant classification filter. Filtered types: [Silent, Intron, 3'UTR, 3'Flank, 5'UTR, 5'Flank, IGR, RNA]Silent
    InfoValidation of file complete
    InfoRead 38 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 4 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 4 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 4 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 2 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Info48No Entrez gene id or gene symbol provided for site 2. Assuming either the intragenic, deletion, duplication, translocation or inversion variant
    Info49No Entrez gene id or gene symbol provided for site 1. Assuming either the intragenic, deletion, duplication, translocation or inversion variant
    InfoValidation of file complete
    InfoRead 49 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 11 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 11 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    InfoSetting reference genome to human (GRCh37, hg19)
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of study tags file
    InfoValidation of study tags file complete.
    -
    -
    -
    - - -
    -
    -
    -
    -
    -

    Legend

    -
    -
    -

    - Click on a filename below to see a table of messages about the data - in the file. The colors in the tables have the following meanings: -

    - - - - - - - - - - - - - - - - - - - -
    ErrorError: cBioPortal will not know how to load this, please revise or remove
    WarningWarning: possible cause of confusion, please check whether this is intended
    InfoInfo: this looks good, no action required
    DebugVerbose output: details on the progress of the validation script
    -
    -
    -
    - - \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_0/study_tags.yml b/core/src/test/scripts/test_data/study_es_0/study_tags.yml deleted file mode 100644 index 2d1cb9e3695..00000000000 --- a/core/src/test/scripts/test_data/study_es_0/study_tags.yml +++ /dev/null @@ -1,18 +0,0 @@ -Analyst: - name: Jack - email: jack@xyz.com -Loaded by: Jill -Load id: 34 -git id: xxqaygqertqsg98qhpughqer -Analysis Id: 7asdlnagsd98gfaqsgf -Load Date: July 12, 2018 -Data Source: Study XY123-456 -Jira Ticket: Foo-1 -Confluence URL: http://myserver/wxyz -Study sponsors: - - - name: john - email: john@@xyz.com - - - name: jane - email: jane@@xyz.com diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_cna.txt b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_cna.txt deleted file mode 100644 index 60ecd245fed..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_cna.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: study_es_0 -stable_id: study_es_0_cna -case_list_name: Samples profiled for mutations -case_list_description: This is this case list that contains all samples that are profiled for mutations. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 TEST_SAMPLE_1 TEST_SAMPLE_2 TEST_SAMPLE_3 TEST_SAMPLE_4 TEST_SAMPLE_7 TEST_SAMPLE_8 TEST_SAMPLE_12 TEST_SAMPLE_13 TEST_SAMPLE_14 TEST_SAMPLE_15 diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_custom.txt b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_custom.txt deleted file mode 100644 index 107f7180a40..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_custom.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: study_es_0 -stable_id: study_es_0_custom -case_list_name: this is an optional custom case list -case_list_description: this is an optional custom case list -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_sequenced.txt b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_sequenced.txt deleted file mode 100644 index 35914653edb..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_sequenced.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: study_es_0 -stable_id: study_es_0_sequenced -case_list_name: Samples profiled for mutations -case_list_description: This is this case list that contains all samples that are profiled for mutations. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SB-02 TCGA-A1-A0SK-01 TCGA-A2-A04P-01 TCGA-A2-A0CM-01 TCGA-AR-A1AR-01 TCGA-B6-A0I6-01 TCGA-B6-A0WX-01 TCGA-BH-A0E0-01 TCGA-BH-A0HL-01 TCGA-BH-A18K-01 TCGA-BH-A18V-01 TCGA-BH-A1F0-01 TCGA-GI-A2C8-01 TEST_SAMPLE_1 TEST_SAMPLE_2 TEST_SAMPLE_3 TEST_SAMPLE_4 TEST_SAMPLE_5 TEST_SAMPLE_6 TEST_SAMPLE_10 TEST_SAMPLE_11 TEST_SAMPLE_12 TEST_SAMPLE_13 TEST_SAMPLE_14 TEST_SAMPLE_15 TEST-A2B8-01 TEST-A2FF-01 TEST_SAMPLE_SOMATIC_HOMOZYGOUS TEST_SAMPLE_SOMATIC_HETEROZYGOUS TEST_SAMPLE_SOMATIC_UNDEFINED diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_test.txt b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_test.txt deleted file mode 100644 index e516ddbeb10..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_test.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: study_es_0 -stable_id: study_es_0_testprofiled -case_list_name: Test profiled samples -case_list_description: This case lists to test functionality of profiled/gene panels for mutations, fusions and CNA -case_list_ids: TEST_SAMPLE_1 TEST_SAMPLE_2 TEST_SAMPLE_3 TEST_SAMPLE_4 TEST_SAMPLE_5 TEST_SAMPLE_6 TEST_SAMPLE_7 TEST_SAMPLE_8 TEST_SAMPLE_9 TEST_SAMPLE_10 TEST_SAMPLE_11 TEST_SAMPLE_12 TEST_SAMPLE_13 TEST_SAMPLE_14 TEST_SAMPLE_15 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_clinical_samples.txt b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_clinical_samples.txt deleted file mode 100644 index 82a6dc99fd9..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_clinical_samples.txt +++ /dev/null @@ -1,850 +0,0 @@ -#Patient Identifier Sample Identifier Subtype -#Patient identifier Sample identifier Subtype description -#STRING STRING STRING -#1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like -TCGA-A2-A0CM TCGA-A2-A0CM-01 basal-like -TCGA-AR-A1AR TCGA-AR-A1AR-01 basal-like -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like -TCGA-B6-A0I6 TCGA-B6-A0I6-01 NA -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like -TCGA-BH-A0HL TCGA-BH-A0HL-01 NA -TCGA-BH-A0E0 TCGA-BH-A0E0-01 basal-like -TCGA-BH-A0RX TCGA-BH-A0RX-01 basal-like -TCGA-A7-A13D TCGA-A7-A13D-01 basal-like -TCGA-BH-A0E6 TCGA-BH-A0E6-01 basal-like -TCGA-AO-A0J4 TCGA-AO-A0J4-01 basal-like -TCGA-A7-A0CE TCGA-A7-A0CE-01 basal-like -TCGA-A7-A13E TCGA-A7-A13E-01 -TCGA-A7-A0DA TCGA-A7-A0DA-01 basal-like -TCGA-D8-A142 TCGA-D8-A142-01 basal-like -TCGA-D8-A143 TCGA-D8-A143-01 NA -TCGA-AQ-A04J TCGA-AQ-A04J-01 basal-like -TCGA-BH-A0HN TCGA-BH-A0HN-01 NA -TCGA-A2-A0T0 TCGA-A2-A0T0-01 basal-like -TCGA-A2-A0YE TCGA-A2-A0YE-01 NA -TCGA-A2-A0YJ TCGA-A2-A0YJ-01 NA -TCGA-A2-A0D0 TCGA-A2-A0D0-01 basal-like -TCGA-A2-A04U TCGA-A2-A04U-01 NA -TCGA-AO-A0J6 TCGA-AO-A0J6-01 basal-like -TCGA-A2-A0YM TCGA-A2-A0YM-01 basal-like -TCGA-A2-A0D2 TCGA-A2-A0D2-01 basal-like -TCGA-BH-A0B3 TCGA-BH-A0B3-01 basal-like -TCGA-A2-A04Q TCGA-A2-A04Q-01 basal-like -TCGA-A2-A0SX TCGA-A2-A0SX-01 basal-like -TCGA-AO-A0JL TCGA-AO-A0JL-01 basal-like -TCGA-AO-A12F TCGA-AO-A12F-01 basal-like -TCGA-BH-A0B9 TCGA-BH-A0B9-01 basal-like -TCGA-A2-A04T TCGA-A2-A04T-01 NA -TCGA-B6-A0RT TCGA-B6-A0RT-01 basal-like -TCGA-AO-A128 TCGA-AO-A128-01 NA -TCGA-AO-A129 TCGA-AO-A129-01 basal-like -TCGA-AO-A124 TCGA-AO-A124-01 basal-like -TCGA-B6-A0RU TCGA-B6-A0RU-01 basal-like -TCGA-B6-A0IQ TCGA-B6-A0IQ-01 basal-like -TCGA-B6-A0I2 TCGA-B6-A0I2-01 basal-like -TCGA-B6-A0IJ TCGA-B6-A0IJ-01 basal-like -TCGA-B6-A0X1 TCGA-B6-A0X1-01 NA -TCGA-B6-A0RE TCGA-B6-A0RE-01 basal-like -TCGA-A2-A0ST TCGA-A2-A0ST-01 basal-like -TCGA-AR-A0TP TCGA-AR-A0TP-01 basal-like -TCGA-A1-A0SO TCGA-A1-A0SO-01 basal-like -TCGA-A8-A07C TCGA-A8-A07C-01 basal-like -TCGA-A8-A07O TCGA-A8-A07O-01 basal-like -TCGA-A8-A07R TCGA-A8-A07R-01 basal-like -TCGA-A8-A07U TCGA-A8-A07U-01 basal-like -TCGA-A8-A08H TCGA-A8-A08H-01 basal-like -TCGA-A8-A08R TCGA-A8-A08R-01 basal-like -TCGA-AN-A04D TCGA-AN-A04D-01 basal-like -TCGA-AN-A0AL TCGA-AN-A0AL-01 basal-like -TCGA-AN-A0AR TCGA-AN-A0AR-01 basal-like -TCGA-AN-A0AT TCGA-AN-A0AT-01 NA -TCGA-AN-A0FJ TCGA-AN-A0FJ-01 basal-like -TCGA-AN-A0FL TCGA-AN-A0FL-01 basal-like -TCGA-AN-A0FX TCGA-AN-A0FX-01 basal-like -TCGA-AN-A0G0 TCGA-AN-A0G0-01 NA -TCGA-AN-A0XU TCGA-AN-A0XU-01 basal-like -TCGA-AR-A0TS TCGA-AR-A0TS-01 basal-like -TCGA-AR-A0TU TCGA-AR-A0TU-01 NA -TCGA-AR-A0U0 TCGA-AR-A0U0-01 NA -TCGA-AR-A0U1 TCGA-AR-A0U1-01 basal-like -TCGA-AR-A0U4 TCGA-AR-A0U4-01 basal-like -TCGA-AR-A1AH TCGA-AR-A1AH-01 basal-like -TCGA-AR-A1AI TCGA-AR-A1AI-01 basal-like -TCGA-AR-A1AJ TCGA-AR-A1AJ-01 basal-like -TCGA-AR-A1AQ TCGA-AR-A1AQ-01 basal-like -TCGA-AR-A1AY TCGA-AR-A1AY-01 basal-like -TCGA-BH-A0AV TCGA-BH-A0AV-01 basal-like -TCGA-BH-A0BG TCGA-BH-A0BG-01 basal-like -TCGA-BH-A0BL TCGA-BH-A0BL-01 basal-like -TCGA-BH-A0BW TCGA-BH-A0BW-01 basal-like -TCGA-BH-A0DL TCGA-BH-A0DL-01 basal-like -TCGA-BH-A0WA TCGA-BH-A0WA-01 basal-like -TCGA-BH-A18G TCGA-BH-A18G-01 NA -TCGA-C8-A12K TCGA-C8-A12K-01 basal-like -TCGA-C8-A12V TCGA-C8-A12V-01 basal-like -TCGA-C8-A131 TCGA-C8-A131-01 basal-like -TCGA-C8-A134 TCGA-C8-A134-01 basal-like -TCGA-D8-A147 TCGA-D8-A147-01 basal-like -TCGA-E2-A14N TCGA-E2-A14N-01 basal-like -TCGA-E2-A14R TCGA-E2-A14R-01 basal-like -TCGA-E2-A14X TCGA-E2-A14X-01 basal-like -TCGA-E2-A14Y TCGA-E2-A14Y-01 basal-like -TCGA-E2-A150 TCGA-E2-A150-01 basal-like -TCGA-E2-A158 TCGA-E2-A158-01 basal-like -TCGA-E2-A159 TCGA-E2-A159-01 basal-like -TCGA-E2-A1AZ TCGA-E2-A1AZ-01 NA -TCGA-E2-A1B5 TCGA-E2-A1B5-01 basal-like -TCGA-A8-A08L TCGA-A8-A08L-01 Her2 enriched -TCGA-BH-A1EV TCGA-BH-A1EV-01 Her2 enriched -TCGA-B6-A0I9 TCGA-B6-A0I9-01 Her2 enriched -TCGA-A8-A09X TCGA-A8-A09X-01 Her2 enriched -TCGA-B6-A0IK TCGA-B6-A0IK-01 Her2 enriched -TCGA-BH-A18P TCGA-BH-A18P-01 Her2 enriched -TCGA-A8-A08J TCGA-A8-A08J-01 Her2 enriched -TCGA-BH-A18R TCGA-BH-A18R-01 Her2 enriched -TCGA-AR-A1AT TCGA-AR-A1AT-01 Her2 enriched -TCGA-B6-A0RS TCGA-B6-A0RS-01 Her2 enriched -TCGA-BH-A0DZ TCGA-BH-A0DZ-01 Her2 enriched -TCGA-A2-A0T1 TCGA-A2-A0T1-01 Her2 enriched -TCGA-AO-A0J2 TCGA-AO-A0J2-01 Her2 enriched -TCGA-BH-A0AW TCGA-BH-A0AW-01 Her2 enriched -TCGA-BH-A0EE TCGA-BH-A0EE-01 Her2 enriched -TCGA-A2-A0D1 TCGA-A2-A0D1-01 Her2 enriched -TCGA-AO-A03N TCGA-AO-A03N-01 Her2 enriched -TCGA-A2-A0CY TCGA-A2-A0CY-01 Her2 enriched -TCGA-A2-A04X TCGA-A2-A04X-01 Her2 enriched -TCGA-A2-A0CX TCGA-A2-A0CX-01 Her2 enriched -TCGA-A2-A04W TCGA-A2-A04W-01 Her2 enriched -TCGA-AO-A12D TCGA-AO-A12D-01 Her2 enriched -TCGA-A2-A0CL TCGA-A2-A0CL-01 Her2 enriched -TCGA-AO-A0JE TCGA-AO-A0JE-01 Her2 enriched -TCGA-A2-A0EQ TCGA-A2-A0EQ-01 Her2 enriched -TCGA-AO-A03L TCGA-AO-A03L-01 Her2 enriched -TCGA-B6-A0RH TCGA-B6-A0RH-01 Her2 enriched -TCGA-A8-A075 TCGA-A8-A075-01 Her2 enriched -TCGA-A8-A076 TCGA-A8-A076-01 Her2 enriched -TCGA-A8-A07B TCGA-A8-A07B-01 Her2 enriched -TCGA-A8-A07I TCGA-A8-A07I-01 Her2 enriched -TCGA-A8-A081 TCGA-A8-A081-01 Her2 enriched -TCGA-A8-A08B TCGA-A8-A08B-01 Her2 enriched -TCGA-A8-A08X TCGA-A8-A08X-01 Her2 enriched -TCGA-A8-A092 TCGA-A8-A092-01 Her2 enriched -TCGA-A8-A094 TCGA-A8-A094-01 Her2 enriched -TCGA-A8-A09G TCGA-A8-A09G-01 Her2 enriched -TCGA-A8-A0A7 TCGA-A8-A0A7-01 Her2 enriched -TCGA-AN-A04C TCGA-AN-A04C-01 Her2 enriched -TCGA-AN-A0FV TCGA-AN-A0FV-01 Her2 enriched -TCGA-AR-A0TX TCGA-AR-A0TX-01 Her2 enriched -TCGA-BH-A0B7 TCGA-BH-A0B7-01 Her2 enriched -TCGA-BH-A0HY TCGA-BH-A0HY-01 Her2 enriched -TCGA-C8-A12L TCGA-C8-A12L-01 Her2 enriched -TCGA-C8-A12P TCGA-C8-A12P-01 Her2 enriched -TCGA-C8-A12Q TCGA-C8-A12Q-01 Her2 enriched -TCGA-C8-A12T TCGA-C8-A12T-01 Her2 enriched -TCGA-C8-A12Z TCGA-C8-A12Z-01 Her2 enriched -TCGA-C8-A130 TCGA-C8-A130-01 Her2 enriched -TCGA-C8-A135 TCGA-C8-A135-01 Her2 enriched -TCGA-C8-A137 TCGA-C8-A137-01 Her2 enriched -TCGA-C8-A138 TCGA-C8-A138-01 Her2 enriched -TCGA-C8-A1HF TCGA-C8-A1HF-01 Her2 enriched -TCGA-D8-A13Z TCGA-D8-A13Z-01 Her2 enriched -TCGA-E2-A14P TCGA-E2-A14P-01 Her2 enriched -TCGA-E2-A14V TCGA-E2-A14V-01 Her2 enriched -TCGA-E2-A152 TCGA-E2-A152-01 Her2 enriched -TCGA-E2-A1B0 TCGA-E2-A1B0-01 Her2 enriched -TCGA-A2-A0CU TCGA-A2-A0CU-01 Luminal A -TCGA-AR-A0TR TCGA-AR-A0TR-01 Luminal A -TCGA-BH-A18T TCGA-BH-A18T-01 Luminal A -TCGA-B6-A0I8 TCGA-B6-A0I8-01 Luminal A -TCGA-B6-A0X4 TCGA-B6-A0X4-01 Luminal A -TCGA-A8-A06U TCGA-A8-A06U-01 Luminal A -TCGA-BH-A0EA TCGA-BH-A0EA-01 Luminal A -TCGA-BH-A18N TCGA-BH-A18N-01 Luminal A -TCGA-BH-A1EU TCGA-BH-A1EU-01 Luminal A -TCGA-B6-A0X7 TCGA-B6-A0X7-01 Luminal A -TCGA-A2-A04V TCGA-A2-A04V-01 Luminal A -TCGA-BH-A18S TCGA-BH-A18S-01 Luminal A -TCGA-BH-A18M TCGA-BH-A18M-01 Luminal A -TCGA-B6-A0RM TCGA-B6-A0RM-01 Luminal A -TCGA-BH-A1ET TCGA-BH-A1ET-01 Luminal A -TCGA-B6-A0IN TCGA-B6-A0IN-01 Luminal A -TCGA-BH-A1EO TCGA-BH-A1EO-01 Luminal A -TCGA-B6-A0WS TCGA-B6-A0WS-01 Luminal A -TCGA-B6-A0RP TCGA-B6-A0RP-01 Luminal A -TCGA-B6-A0IH TCGA-B6-A0IH-01 Luminal A -TCGA-B6-A0WY TCGA-B6-A0WY-01 Luminal A -TCGA-BH-A1ES TCGA-BH-A1ES-01 Luminal A -TCGA-B6-A0X0 TCGA-B6-A0X0-01 Luminal A -TCGA-B6-A0RQ TCGA-B6-A0RQ-01 Luminal A -TCGA-B6-A0IG TCGA-B6-A0IG-01 Luminal A -TCGA-BH-A0HO TCGA-BH-A0HO-01 Luminal A -TCGA-BH-A0DS TCGA-BH-A0DS-01 Luminal A -TCGA-BH-A0DQ TCGA-BH-A0DQ-01 Luminal A -TCGA-BH-A0HK TCGA-BH-A0HK-01 Luminal A -TCGA-A7-A0CG TCGA-A7-A0CG-01 Luminal A -TCGA-A7-A0CH TCGA-A7-A0CH-01 Luminal A -TCGA-A7-A0DB TCGA-A7-A0DB-01 Luminal A -TCGA-A7-A0D9 TCGA-A7-A0D9-01 Luminal A -TCGA-AO-A0J8 TCGA-AO-A0J8-01 Luminal A -TCGA-BH-A0GZ TCGA-BH-A0GZ-01 Luminal A -TCGA-AO-A0JA TCGA-AO-A0JA-01 Luminal A -TCGA-AO-A0JF TCGA-AO-A0JF-01 Luminal A -TCGA-A7-A0CD TCGA-A7-A0CD-01 Luminal A -TCGA-D8-A145 TCGA-D8-A145-01 Luminal A -TCGA-BH-A0HP TCGA-BH-A0HP-01 Luminal A -TCGA-BH-A0DK TCGA-BH-A0DK-01 Luminal A -TCGA-BH-A0E2 TCGA-BH-A0E2-01 Luminal A -TCGA-A2-A0YI TCGA-A2-A0YI-01 Luminal A -TCGA-A2-A0YL TCGA-A2-A0YL-01 Luminal A -TCGA-AO-A0JG TCGA-AO-A0JG-01 Luminal A -TCGA-A2-A0YF TCGA-A2-A0YF-01 Luminal A -TCGA-BH-A0DP TCGA-BH-A0DP-01 Luminal A -TCGA-BH-A0E1 TCGA-BH-A0E1-01 Luminal A -TCGA-A2-A0T5 TCGA-A2-A0T5-01 Luminal A -TCGA-A2-A0T6 TCGA-A2-A0T6-01 Luminal A -TCGA-BH-A0HI TCGA-BH-A0HI-01 Luminal A -TCGA-A2-A0T7 TCGA-A2-A0T7-01 Luminal A -TCGA-BH-A0BJ TCGA-BH-A0BJ-01 Luminal A -TCGA-BH-A0H7 TCGA-BH-A0H7-01 Luminal A -TCGA-BH-A0HF TCGA-BH-A0HF-01 Luminal A -TCGA-BH-A0EB TCGA-BH-A0EB-01 Luminal A -TCGA-BH-A0H6 TCGA-BH-A0H6-01 Luminal A -TCGA-A2-A0YD TCGA-A2-A0YD-01 Luminal A -TCGA-BH-A0HB TCGA-BH-A0HB-01 Luminal A -TCGA-BH-A0HX TCGA-BH-A0HX-01 Luminal A -TCGA-AO-A12H TCGA-AO-A12H-01 Luminal A -TCGA-E2-A10E TCGA-E2-A10E-01 Luminal A -TCGA-A2-A0D3 TCGA-A2-A0D3-01 Luminal A -TCGA-E2-A10F TCGA-E2-A10F-01 Luminal A -TCGA-AO-A03V TCGA-AO-A03V-01 Luminal A -TCGA-A2-A0EW TCGA-A2-A0EW-01 Luminal A -TCGA-BH-A0GY TCGA-BH-A0GY-01 Luminal A -TCGA-A2-A0EV TCGA-A2-A0EV-01 Luminal A -TCGA-BH-A0BC TCGA-BH-A0BC-01 Luminal A -TCGA-A2-A0YC TCGA-A2-A0YC-01 Luminal A -TCGA-A2-A0EU TCGA-A2-A0EU-01 Luminal A -TCGA-A2-A0ET TCGA-A2-A0ET-01 Luminal A -TCGA-A2-A04Y TCGA-A2-A04Y-01 Luminal A -TCGA-BH-A0HQ TCGA-BH-A0HQ-01 Luminal A -TCGA-A2-A0ES TCGA-A2-A0ES-01 Luminal A -TCGA-BH-A0BA TCGA-BH-A0BA-01 Luminal A -TCGA-E2-A10B TCGA-E2-A10B-01 Luminal A -TCGA-BH-A0B1 TCGA-BH-A0B1-01 Luminal A -TCGA-BH-A0DH TCGA-BH-A0DH-01 Luminal A -TCGA-BH-A0B4 TCGA-BH-A0B4-01 Luminal A -TCGA-BH-A0H9 TCGA-BH-A0H9-01 Luminal A -TCGA-AO-A0J9 TCGA-AO-A0J9-01 Luminal A -TCGA-AO-A12G TCGA-AO-A12G-01 Luminal A -TCGA-A2-A0SY TCGA-A2-A0SY-01 Luminal A -TCGA-BH-A0E7 TCGA-BH-A0E7-01 Luminal A -TCGA-AO-A03M TCGA-AO-A03M-01 Luminal A -TCGA-BH-A0BV TCGA-BH-A0BV-01 Luminal A -TCGA-BH-A0B8 TCGA-BH-A0B8-01 Luminal A -TCGA-A2-A0CZ TCGA-A2-A0CZ-01 Luminal A -TCGA-A2-A0SU TCGA-A2-A0SU-01 Luminal A -TCGA-AO-A12E TCGA-AO-A12E-01 Luminal A -TCGA-E2-A106 TCGA-E2-A106-01 Luminal A -TCGA-A2-A0CV TCGA-A2-A0CV-01 Luminal A -TCGA-AO-A12C TCGA-AO-A12C-01 Luminal A -TCGA-B6-A0RG TCGA-B6-A0RG-01 Luminal A -TCGA-A2-A0CS TCGA-A2-A0CS-01 Luminal A -TCGA-A2-A0EO TCGA-A2-A0EO-01 Luminal A -TCGA-A2-A0CQ TCGA-A2-A0CQ-01 Luminal A -TCGA-A2-A0EN TCGA-A2-A0EN-01 Luminal A -TCGA-AO-A12A TCGA-AO-A12A-01 Luminal A -TCGA-A2-A0CP TCGA-A2-A0CP-01 Luminal A -TCGA-AO-A126 TCGA-AO-A126-01 Luminal A -TCGA-AO-A125 TCGA-AO-A125-01 Luminal A -TCGA-A2-A0EM TCGA-A2-A0EM-01 Luminal A -TCGA-A2-A04N TCGA-A2-A04N-01 Luminal A -TCGA-AQ-A04L TCGA-AQ-A04L-01 Luminal A -TCGA-B6-A0IO TCGA-B6-A0IO-01 Luminal A -TCGA-B6-A0IP TCGA-B6-A0IP-01 Luminal A -TCGA-B6-A0WZ TCGA-B6-A0WZ-01 Luminal A -TCGA-B6-A0I5 TCGA-B6-A0I5-01 Luminal A -TCGA-B6-A0RV TCGA-B6-A0RV-01 Luminal A -TCGA-B6-A0RO TCGA-B6-A0RO-01 Luminal A -TCGA-B6-A0RN TCGA-B6-A0RN-01 Luminal A -TCGA-B6-A0WT TCGA-B6-A0WT-01 Luminal A -TCGA-B6-A0IA TCGA-B6-A0IA-01 Luminal A -TCGA-B6-A0RI TCGA-B6-A0RI-01 Luminal A -TCGA-A1-A0SE TCGA-A1-A0SE-01 Luminal A -TCGA-A2-A0EX TCGA-A2-A0EX-01 Luminal A -TCGA-AO-A0JJ TCGA-AO-A0JJ-01 Luminal A -TCGA-E2-A105 TCGA-E2-A105-01 Luminal A -TCGA-A1-A0SD TCGA-A1-A0SD-01 Luminal A -TCGA-A1-A0SH TCGA-A1-A0SH-01 Luminal A -TCGA-A1-A0SJ TCGA-A1-A0SJ-01 Luminal A -TCGA-A8-A06P TCGA-A8-A06P-01 Luminal A -TCGA-A8-A06T TCGA-A8-A06T-01 Luminal A -TCGA-A8-A06Y TCGA-A8-A06Y-01 Luminal A -TCGA-A8-A07E TCGA-A8-A07E-01 Luminal A -TCGA-A8-A07F TCGA-A8-A07F-01 Luminal A -TCGA-A8-A07G TCGA-A8-A07G-01 Luminal A -TCGA-A8-A07J TCGA-A8-A07J-01 Luminal A -TCGA-A8-A07P TCGA-A8-A07P-01 Luminal A -TCGA-A8-A083 TCGA-A8-A083-01 Luminal A -TCGA-A8-A086 TCGA-A8-A086-01 Luminal A -TCGA-A8-A08A TCGA-A8-A08A-01 Luminal A -TCGA-A8-A08C TCGA-A8-A08C-01 Luminal A -TCGA-A8-A08O TCGA-A8-A08O-01 Luminal A -TCGA-A8-A08T TCGA-A8-A08T-01 Luminal A -TCGA-A8-A08Z TCGA-A8-A08Z-01 Luminal A -TCGA-A8-A090 TCGA-A8-A090-01 Luminal A -TCGA-A8-A091 TCGA-A8-A091-01 Luminal A -TCGA-A8-A093 TCGA-A8-A093-01 Luminal A -TCGA-A8-A099 TCGA-A8-A099-01 Luminal A -TCGA-A8-A09A TCGA-A8-A09A-01 Luminal A -TCGA-A8-A09B TCGA-A8-A09B-01 Luminal A -TCGA-A8-A09T TCGA-A8-A09T-01 Luminal A -TCGA-A8-A09V TCGA-A8-A09V-01 Luminal A -TCGA-A8-A0A1 TCGA-A8-A0A1-01 Luminal A -TCGA-A8-A0A2 TCGA-A8-A0A2-01 Luminal A -TCGA-A8-A0A4 TCGA-A8-A0A4-01 Luminal A -TCGA-A8-A0A6 TCGA-A8-A0A6-01 Luminal A -TCGA-A8-A0AD TCGA-A8-A0AD-01 Luminal A -TCGA-AN-A03X TCGA-AN-A03X-01 Luminal A -TCGA-AN-A046 TCGA-AN-A046-01 Luminal A -TCGA-AN-A04A TCGA-AN-A04A-01 Luminal A -TCGA-AN-A0FD TCGA-AN-A0FD-01 Luminal A -TCGA-AN-A0FN TCGA-AN-A0FN-01 Luminal A -TCGA-AN-A0FS TCGA-AN-A0FS-01 Luminal A -TCGA-AN-A0FT TCGA-AN-A0FT-01 Luminal A -TCGA-AN-A0FW TCGA-AN-A0FW-01 Luminal A -TCGA-AN-A0FZ TCGA-AN-A0FZ-01 Luminal A -TCGA-AN-A0XL TCGA-AN-A0XL-01 Luminal A -TCGA-AN-A0XN TCGA-AN-A0XN-01 Luminal A -TCGA-AN-A0XO TCGA-AN-A0XO-01 Luminal A -TCGA-AN-A0XP TCGA-AN-A0XP-01 Luminal A -TCGA-AN-A0XS TCGA-AN-A0XS-01 Luminal A -TCGA-AN-A0XT TCGA-AN-A0XT-01 Luminal A -TCGA-AN-A0XV TCGA-AN-A0XV-01 Luminal A -TCGA-AR-A0TW TCGA-AR-A0TW-01 Luminal A -TCGA-AR-A1AK TCGA-AR-A1AK-01 Luminal A -TCGA-AR-A1AL TCGA-AR-A1AL-01 Luminal A -TCGA-AR-A1AN TCGA-AR-A1AN-01 Luminal A -TCGA-AR-A1AP TCGA-AR-A1AP-01 Luminal A -TCGA-AR-A1AS TCGA-AR-A1AS-01 Luminal A -TCGA-AR-A1AU TCGA-AR-A1AU-01 Luminal A -TCGA-AR-A1AW TCGA-AR-A1AW-01 Luminal A -TCGA-AR-A1AX TCGA-AR-A1AX-01 Luminal A -TCGA-BH-A0AZ TCGA-BH-A0AZ-01 Luminal A -TCGA-BH-A0B0 TCGA-BH-A0B0-01 Luminal A -TCGA-BH-A0BM TCGA-BH-A0BM-01 Luminal A -TCGA-BH-A0BO TCGA-BH-A0BO-01 Luminal A -TCGA-BH-A0BP TCGA-BH-A0BP-01 Luminal A -TCGA-BH-A0BQ TCGA-BH-A0BQ-01 Luminal A -TCGA-BH-A0BR TCGA-BH-A0BR-01 Luminal A -TCGA-BH-A0BS TCGA-BH-A0BS-01 Luminal A -TCGA-BH-A0BT TCGA-BH-A0BT-01 Luminal A -TCGA-BH-A0C1 TCGA-BH-A0C1-01 Luminal A -TCGA-BH-A0DE TCGA-BH-A0DE-01 Luminal A -TCGA-BH-A0DG TCGA-BH-A0DG-01 Luminal A -TCGA-BH-A0DI TCGA-BH-A0DI-01 Luminal A -TCGA-BH-A0DO TCGA-BH-A0DO-01 Luminal A -TCGA-BH-A0DT TCGA-BH-A0DT-01 Luminal A -TCGA-BH-A0DX TCGA-BH-A0DX-01 Luminal A -TCGA-BH-A0E9 TCGA-BH-A0E9-01 Luminal A -TCGA-BH-A0EI TCGA-BH-A0EI-01 Luminal A -TCGA-BH-A0H3 TCGA-BH-A0H3-01 Luminal A -TCGA-BH-A0H5 TCGA-BH-A0H5-01 Luminal A -TCGA-BH-A0HA TCGA-BH-A0HA-01 Luminal A -TCGA-BH-A0W4 TCGA-BH-A0W4-01 Luminal A -TCGA-BH-A0W5 TCGA-BH-A0W5-01 Luminal A -TCGA-BH-A0W7 TCGA-BH-A0W7-01 Luminal A -TCGA-BH-A18H TCGA-BH-A18H-01 Luminal A -TCGA-BH-A18I TCGA-BH-A18I-01 Luminal A -TCGA-C8-A12N TCGA-C8-A12N-01 Luminal A -TCGA-C8-A12O TCGA-C8-A12O-01 Luminal A -TCGA-C8-A12Y TCGA-C8-A12Y-01 Luminal A -TCGA-C8-A132 TCGA-C8-A132-01 Luminal A -TCGA-C8-A133 TCGA-C8-A133-01 Luminal A -TCGA-C8-A1HI TCGA-C8-A1HI-01 Luminal A -TCGA-D8-A141 TCGA-D8-A141-01 Luminal A -TCGA-E2-A14Q TCGA-E2-A14Q-01 Luminal A -TCGA-E2-A14T TCGA-E2-A14T-01 Luminal A -TCGA-E2-A14Z TCGA-E2-A14Z-01 Luminal A -TCGA-E2-A153 TCGA-E2-A153-01 Luminal A -TCGA-E2-A154 TCGA-E2-A154-01 Luminal A -TCGA-E2-A156 TCGA-E2-A156-01 Luminal A -TCGA-E2-A15C TCGA-E2-A15C-01 Luminal A -TCGA-E2-A15D TCGA-E2-A15D-01 Luminal A -TCGA-E2-A15E TCGA-E2-A15E-01 Luminal A -TCGA-E2-A15F TCGA-E2-A15F-01 Luminal A -TCGA-E2-A15G TCGA-E2-A15G-01 Luminal A -TCGA-E2-A15H TCGA-E2-A15H-01 Luminal A -TCGA-E2-A15I TCGA-E2-A15I-01 Luminal A -TCGA-E2-A15J TCGA-E2-A15J-01 Luminal A -TCGA-E2-A15O TCGA-E2-A15O-01 Luminal A -TCGA-E2-A15P TCGA-E2-A15P-01 Luminal A -TCGA-E2-A15R TCGA-E2-A15R-01 Luminal A -TCGA-E2-A1B1 TCGA-E2-A1B1-01 Luminal A -TCGA-E2-A1B4 TCGA-E2-A1B4-01 Luminal A -TCGA-E2-A1B6 TCGA-E2-A1B6-01 Luminal A -TCGA-E2-A1BC TCGA-E2-A1BC-01 Luminal A -TCGA-E2-A1BD TCGA-E2-A1BD-01 Luminal A -TCGA-A2-A0SV TCGA-A2-A0SV-01 Luminal B -TCGA-AO-A03O TCGA-AO-A03O-01 Luminal B -TCGA-A2-A0SW TCGA-A2-A0SW-01 Luminal B -TCGA-B6-A0WW TCGA-B6-A0WW-01 Luminal B -TCGA-BH-A18J TCGA-BH-A18J-01 Luminal B -TCGA-BH-A18L TCGA-BH-A18L-01 Luminal B -TCGA-A8-A06X TCGA-A8-A06X-01 Luminal B -TCGA-B6-A0IC TCGA-B6-A0IC-01 Luminal B -TCGA-BH-A18U TCGA-BH-A18U-01 Luminal B -TCGA-BH-A1EW TCGA-BH-A1EW-01 Luminal B -TCGA-AR-A0TY TCGA-AR-A0TY-01 Luminal B -TCGA-B6-A0X5 TCGA-B6-A0X5-01 Luminal B -TCGA-B6-A0WV TCGA-B6-A0WV-01 Luminal B -TCGA-B6-A0RL TCGA-B6-A0RL-01 Luminal B -TCGA-AR-A0U2 TCGA-AR-A0U2-01 Luminal B -TCGA-B6-A0IB TCGA-B6-A0IB-01 Luminal B -TCGA-AO-A0J7 TCGA-AO-A0J7-01 Luminal B -TCGA-AO-A0J3 TCGA-AO-A0J3-01 Luminal B -TCGA-D8-A13Y TCGA-D8-A13Y-01 Luminal B -TCGA-A7-A13F TCGA-A7-A13F-01 Luminal B -TCGA-BH-A0HU TCGA-BH-A0HU-01 Luminal B -TCGA-D8-A140 TCGA-D8-A140-01 Luminal B -TCGA-A7-A0CJ TCGA-A7-A0CJ-01 Luminal B -TCGA-AQ-A04H TCGA-AQ-A04H-01 Luminal B -TCGA-BH-A0H0 TCGA-BH-A0H0-01 Luminal B -TCGA-BH-A0BD TCGA-BH-A0BD-01 Luminal B -TCGA-A2-A0T3 TCGA-A2-A0T3-01 Luminal B -TCGA-A2-A0T4 TCGA-A2-A0T4-01 Luminal B -TCGA-A2-A0YH TCGA-A2-A0YH-01 Luminal B -TCGA-A2-A0YG TCGA-A2-A0YG-01 Luminal B -TCGA-A2-A0EY TCGA-A2-A0EY-01 Luminal B -TCGA-A2-A0D4 TCGA-A2-A0D4-01 Luminal B -TCGA-BH-A0AY TCGA-BH-A0AY-01 Luminal B -TCGA-E2-A107 TCGA-E2-A107-01 Luminal B -TCGA-AO-A0JI TCGA-AO-A0JI-01 Luminal B -TCGA-E2-A10C TCGA-E2-A10C-01 Luminal B -TCGA-E2-A10A TCGA-E2-A10A-01 Luminal B -TCGA-BH-A0C0 TCGA-BH-A0C0-01 Luminal B -TCGA-E2-A109 TCGA-E2-A109-01 Luminal B -TCGA-AO-A0JC TCGA-AO-A0JC-01 Luminal B -TCGA-BH-A0HW TCGA-BH-A0HW-01 Luminal B -TCGA-AO-A0JD TCGA-AO-A0JD-01 Luminal B -TCGA-AO-A0JM TCGA-AO-A0JM-01 Luminal B -TCGA-A2-A0CW TCGA-A2-A0CW-01 Luminal B -TCGA-A2-A0ER TCGA-A2-A0ER-01 Luminal B -TCGA-A2-A0CT TCGA-A2-A0CT-01 Luminal B -TCGA-AO-A12B TCGA-AO-A12B-01 Luminal B -TCGA-A2-A04R TCGA-A2-A04R-01 Luminal B -TCGA-B6-A0IM TCGA-B6-A0IM-01 Luminal B -TCGA-AO-A03P TCGA-AO-A03P-01 Luminal B -TCGA-A1-A0SM TCGA-A1-A0SM-01 Luminal B -TCGA-A8-A06N TCGA-A8-A06N-01 Luminal B -TCGA-A8-A06O TCGA-A8-A06O-01 Luminal B -TCGA-A8-A06Q TCGA-A8-A06Q-01 Luminal B -TCGA-A8-A06R TCGA-A8-A06R-01 Luminal B -TCGA-A8-A06Z TCGA-A8-A06Z-01 Luminal B -TCGA-A8-A079 TCGA-A8-A079-01 Luminal B -TCGA-A8-A07L TCGA-A8-A07L-01 Luminal B -TCGA-A8-A07S TCGA-A8-A07S-01 Luminal B -TCGA-A8-A07W TCGA-A8-A07W-01 Luminal B -TCGA-A8-A07Z TCGA-A8-A07Z-01 Luminal B -TCGA-A8-A082 TCGA-A8-A082-01 Luminal B -TCGA-A8-A084 TCGA-A8-A084-01 Luminal B -TCGA-A8-A085 TCGA-A8-A085-01 Luminal B -TCGA-A8-A08F TCGA-A8-A08F-01 Luminal B -TCGA-A8-A08G TCGA-A8-A08G-01 Luminal B -TCGA-A8-A08I TCGA-A8-A08I-01 Luminal B -TCGA-A8-A08P TCGA-A8-A08P-01 Luminal B -TCGA-A8-A095 TCGA-A8-A095-01 Luminal B -TCGA-A8-A096 TCGA-A8-A096-01 Luminal B -TCGA-A8-A097 TCGA-A8-A097-01 Luminal B -TCGA-A8-A09C TCGA-A8-A09C-01 Luminal B -TCGA-A8-A09D TCGA-A8-A09D-01 Luminal B -TCGA-A8-A09I TCGA-A8-A09I-01 Luminal B -TCGA-A8-A09M TCGA-A8-A09M-01 Luminal B -TCGA-A8-A09N TCGA-A8-A09N-01 Luminal B -TCGA-A8-A09Q TCGA-A8-A09Q-01 Luminal B -TCGA-A8-A09R TCGA-A8-A09R-01 Luminal B -TCGA-A8-A09W TCGA-A8-A09W-01 Luminal B -TCGA-A8-A09Z TCGA-A8-A09Z-01 Luminal B -TCGA-A8-A0A9 TCGA-A8-A0A9-01 Luminal B -TCGA-A8-A0AB TCGA-A8-A0AB-01 Luminal B -TCGA-AN-A03Y TCGA-AN-A03Y-01 Luminal B -TCGA-AN-A041 TCGA-AN-A041-01 Luminal B -TCGA-AN-A049 TCGA-AN-A049-01 Luminal B -TCGA-AN-A0AJ TCGA-AN-A0AJ-01 Luminal B -TCGA-AN-A0AK TCGA-AN-A0AK-01 Luminal B -TCGA-AN-A0AM TCGA-AN-A0AM-01 Luminal B -TCGA-AN-A0AS TCGA-AN-A0AS-01 Luminal B -TCGA-AN-A0FF TCGA-AN-A0FF-01 Luminal B -TCGA-AN-A0FK TCGA-AN-A0FK-01 Luminal B -TCGA-AN-A0FY TCGA-AN-A0FY-01 Luminal B -TCGA-AN-A0XR TCGA-AN-A0XR-01 Luminal B -TCGA-AN-A0XW TCGA-AN-A0XW-01 Luminal B -TCGA-AR-A0TQ TCGA-AR-A0TQ-01 Luminal B -TCGA-AR-A0TT TCGA-AR-A0TT-01 Luminal B -TCGA-AR-A0TV TCGA-AR-A0TV-01 Luminal B -TCGA-AR-A0TZ TCGA-AR-A0TZ-01 Luminal B -TCGA-AR-A0U3 TCGA-AR-A0U3-01 Luminal B -TCGA-AR-A1AV TCGA-AR-A1AV-01 Luminal B -TCGA-BH-A0AU TCGA-BH-A0AU-01 Luminal B -TCGA-BH-A0B5 TCGA-BH-A0B5-01 Luminal B -TCGA-BH-A0BF TCGA-BH-A0BF-01 Luminal B -TCGA-BH-A0BZ TCGA-BH-A0BZ-01 Luminal B -TCGA-BH-A0C3 TCGA-BH-A0C3-01 Luminal B -TCGA-BH-A0C7 TCGA-BH-A0C7-01 Luminal B -TCGA-BH-A0DD TCGA-BH-A0DD-01 Luminal B -TCGA-BH-A0W3 TCGA-BH-A0W3-01 Luminal B -TCGA-BH-A18F TCGA-BH-A18F-01 Luminal B -TCGA-C8-A12M TCGA-C8-A12M-01 Luminal B -TCGA-C8-A12U TCGA-C8-A12U-01 Luminal B -TCGA-C8-A12W TCGA-C8-A12W-01 Luminal B -TCGA-C8-A12X TCGA-C8-A12X-01 Luminal B -TCGA-C8-A1HG TCGA-C8-A1HG-01 Luminal B -TCGA-C8-A1HL TCGA-C8-A1HL-01 Luminal B -TCGA-C8-A1HM TCGA-C8-A1HM-01 Luminal B -TCGA-C8-A1HN TCGA-C8-A1HN-01 Luminal B -TCGA-E2-A14O TCGA-E2-A14O-01 Luminal B -TCGA-E2-A14S TCGA-E2-A14S-01 Luminal B -TCGA-E2-A14W TCGA-E2-A14W-01 Luminal B -TCGA-E2-A155 TCGA-E2-A155-01 Luminal B -TCGA-E2-A15A TCGA-E2-A15A-01 Luminal B -TCGA-E2-A15K TCGA-E2-A15K-01 Luminal B -TCGA-E2-A15L TCGA-E2-A15L-01 Luminal B -TCGA-E2-A15M TCGA-E2-A15M-01 Luminal B -TCGA-E2-A15S TCGA-E2-A15S-01 Luminal B -TCGA-E2-A15T TCGA-E2-A15T-01 Luminal B -TCGA-AO-A03U TCGA-AO-A03U-01 NA -TCGA-B6-A0IE TCGA-B6-A0IE-01 NA -TCGA-A2-A0YK TCGA-A2-A0YK-01 NA -TCGA-E2-A108 TCGA-E2-A108-01 Claudin low -TCGA-AO-A0JB TCGA-AO-A0JB-01 NA -TCGA-AO-A03R TCGA-AO-A03R-01 NA -TCGA-AO-A03T TCGA-AO-A03T-01 NA -TCGA-AR-A1AO TCGA-AR-A1AO-01 Claudin low -TCGA-A2-A0YT TCGA-A2-A0YT-01 Luminal B -TCGA-AQ-A0Y5 TCGA-AQ-A0Y5-01 NA -TCGA-EW-A1P8 TCGA-EW-A1P8-01 NA -TCGA-E2-A1LK TCGA-E2-A1LK-01 NA -TCGA-BH-A1EY TCGA-BH-A1EY-01 NA -TCGA-BH-A1F8 TCGA-BH-A1F8-01 NA -TCGA-BH-A1F2 TCGA-BH-A1F2-01 NA -TCGA-BH-A1FD TCGA-BH-A1FD-01 NA -TCGA-BH-A1FH TCGA-BH-A1FH-01 NA -TCGA-BH-A203 TCGA-BH-A203-01 NA -TCGA-BH-A1FM TCGA-BH-A1FM-01 NA -TCGA-BH-A1EX TCGA-BH-A1EX-01 NA -TCGA-BH-A1FL TCGA-BH-A1FL-01 NA -TCGA-BH-A208 TCGA-BH-A208-01 NA -TCGA-GM-A2D9 TCGA-GM-A2D9-01 NA -TCGA-BH-A1FJ TCGA-BH-A1FJ-01 NA -TCGA-BH-A1EN TCGA-BH-A1EN-01 NA -TCGA-BH-A1FN TCGA-BH-A1FN-01 NA -TCGA-BH-A1FU TCGA-BH-A1FU-01 NA -TCGA-BH-A1FE TCGA-BH-A1FE-01 NA -TCGA-BH-A204 TCGA-BH-A204-01 NA -TCGA-BH-A1F5 TCGA-BH-A1F5-01 NA -TCGA-AR-A256 TCGA-AR-A256-01 NA -TCGA-BH-A1F6 TCGA-BH-A1F6-01 NA -TCGA-BH-A1FC TCGA-BH-A1FC-01 NA -TCGA-BH-A1FB TCGA-BH-A1FB-01 NA -TCGA-BH-A1FG TCGA-BH-A1FG-01 NA -TCGA-BH-A209 TCGA-BH-A209-01 NA -TCGA-BH-A1FR TCGA-BH-A1FR-01 NA -TCGA-AO-A1KS TCGA-AO-A1KS-01 NA -TCGA-A7-A13G TCGA-A7-A13G-01 NA -TCGA-D8-A1JS TCGA-D8-A1JS-01 NA -TCGA-A7-A0DC TCGA-A7-A0DC-01 Luminal A -TCGA-D8-A1JT TCGA-D8-A1JT-01 NA -TCGA-A7-A26E TCGA-A7-A26E-01 NA -TCGA-D8-A1JH TCGA-D8-A1JH-01 NA -TCGA-D8-A1JU TCGA-D8-A1JU-01 NA -TCGA-AO-A1KO TCGA-AO-A1KO-01 NA -TCGA-AO-A1KT TCGA-AO-A1KT-01 NA -TCGA-AO-A0J5 TCGA-AO-A0J5-01 Luminal A -TCGA-B6-A1KC TCGA-B6-A1KC-01 NA -TCGA-AO-A1KQ TCGA-AO-A1KQ-01 NA -TCGA-B6-A1KI TCGA-B6-A1KI-01 NA -TCGA-AO-A1KP TCGA-AO-A1KP-01 NA -TCGA-B6-A1KF TCGA-B6-A1KF-01 NA -TCGA-B6-A1KN TCGA-B6-A1KN-01 NA -TCGA-D8-A1XO TCGA-D8-A1XO-01 NA -TCGA-D8-A1XT TCGA-D8-A1XT-01 NA -TCGA-A1-A0SP TCGA-A1-A0SP-01 NA -TCGA-D8-A1J8 TCGA-D8-A1J8-01 NA -TCGA-D8-A1JF TCGA-D8-A1JF-01 NA -TCGA-D8-A1JG TCGA-D8-A1JG-01 NA -TCGA-D8-A1XS TCGA-D8-A1XS-01 NA -TCGA-A1-A0SB TCGA-A1-A0SB-01 NA -TCGA-A1-A0SB TCGA-A1-A0SB-02 NA -TCGA-A1-A0SF TCGA-A1-A0SF-01 NA -TCGA-A1-A0SG TCGA-A1-A0SG-01 NA -TCGA-A1-A0SI TCGA-A1-A0SI-01 NA -TCGA-A1-A0SN TCGA-A1-A0SN-01 NA -TCGA-A1-A0SQ TCGA-A1-A0SQ-01 NA -TCGA-A2-A1FV TCGA-A2-A1FV-01 NA -TCGA-A2-A1FW TCGA-A2-A1FW-01 NA -TCGA-A2-A1FX TCGA-A2-A1FX-01 NA -TCGA-A2-A1FZ TCGA-A2-A1FZ-01 NA -TCGA-A2-A1G0 TCGA-A2-A1G0-01 NA -TCGA-A2-A1G1 TCGA-A2-A1G1-01 NA -TCGA-A2-A1G4 TCGA-A2-A1G4-01 NA -TCGA-A2-A1G6 TCGA-A2-A1G6-01 NA -TCGA-A2-A259 TCGA-A2-A259-01 NA -TCGA-A2-A25A TCGA-A2-A25A-01 NA -TCGA-A2-A25B TCGA-A2-A25B-01 NA -TCGA-A2-A25C TCGA-A2-A25C-01 NA -TCGA-A2-A25D TCGA-A2-A25D-01 NA -TCGA-A2-A25E TCGA-A2-A25E-01 NA -TCGA-A2-A25F TCGA-A2-A25F-01 NA -TCGA-A7-A26F TCGA-A7-A26F-01 NA -TCGA-A7-A26G TCGA-A7-A26G-01 NA -TCGA-A7-A26H TCGA-A7-A26H-01 NA -TCGA-A7-A26I TCGA-A7-A26I-01 NA -TCGA-A7-A26J TCGA-A7-A26J-01 NA -TCGA-A8-A08S TCGA-A8-A08S-01 Luminal B -TCGA-A8-A09E TCGA-A8-A09E-01 Luminal B -TCGA-A8-A09K TCGA-A8-A09K-01 Luminal B -TEST-A23C TEST-A23C-01 NA -TEST-A23E TEST-A23E-01 NA -TEST-A23H TEST-A23H-01 NA -TCGA-AO-A1KR TCGA-AO-A1KR-01 NA -TCGA-AQ-A1H2 TCGA-AQ-A1H2-01 NA -TCGA-AQ-A1H3 TCGA-AQ-A1H3-01 NA -TCGA-AR-A24H TCGA-AR-A24H-01 NA -TCGA-AR-A24K TCGA-AR-A24K-01 NA -TCGA-AR-A24L TCGA-AR-A24L-01 NA -TCGA-AR-A24M TCGA-AR-A24M-01 NA -TCGA-AR-A24N TCGA-AR-A24N-01 NA -TCGA-AR-A24O TCGA-AR-A24O-01 NA -TCGA-AR-A24P TCGA-AR-A24P-01 NA -TCGA-AR-A24Q TCGA-AR-A24Q-01 NA -TCGA-AR-A24R TCGA-AR-A24R-01 NA -TCGA-AR-A24S TCGA-AR-A24S-01 NA -TCGA-AR-A24T TCGA-AR-A24T-01 NA -TCGA-AR-A24U TCGA-AR-A24U-01 NA -TCGA-AR-A24V TCGA-AR-A24V-01 NA -TCGA-AR-A24X TCGA-AR-A24X-01 NA -TCGA-AR-A24Z TCGA-AR-A24Z-01 NA -TCGA-AR-A250 TCGA-AR-A250-01 NA -TCGA-AR-A251 TCGA-AR-A251-01 NA -TCGA-AR-A252 TCGA-AR-A252-01 NA -TCGA-AR-A254 TCGA-AR-A254-01 NA -TCGA-AR-A255 TCGA-AR-A255-01 NA -TCGA-BH-A0B2 TCGA-BH-A0B2-01 Luminal A -TCGA-BH-A0DV TCGA-BH-A0DV-01 NA -TCGA-BH-A201 TCGA-BH-A201-01 NA -TCGA-BH-A202 TCGA-BH-A202-01 NA -TCGA-BH-A28Q TCGA-BH-A28Q-01 NA -TCGA-C8-A1HE TCGA-C8-A1HE-01 NA -TCGA-C8-A1HJ TCGA-C8-A1HJ-01 NA -TCGA-C8-A1HK TCGA-C8-A1HK-01 NA -TCGA-C8-A1HO TCGA-C8-A1HO-01 NA -TCGA-C8-A26V TCGA-C8-A26V-01 NA -TCGA-C8-A26W TCGA-C8-A26W-01 NA -TCGA-C8-A26X TCGA-C8-A26X-01 NA -TCGA-C8-A26Y TCGA-C8-A26Y-01 NA -TCGA-C8-A26Z TCGA-C8-A26Z-01 NA -TCGA-C8-A273 TCGA-C8-A273-01 NA -TCGA-C8-A274 TCGA-C8-A274-01 NA -TCGA-C8-A275 TCGA-C8-A275-01 NA -TCGA-C8-A278 TCGA-C8-A278-01 NA -TCGA-C8-A27A TCGA-C8-A27A-01 NA -TCGA-C8-A27B TCGA-C8-A27B-01 NA -TCGA-D8-A146 TCGA-D8-A146-01 Luminal A -TCGA-D8-A1J9 TCGA-D8-A1J9-01 NA -TCGA-D8-A1JA TCGA-D8-A1JA-01 NA -TCGA-D8-A1JB TCGA-D8-A1JB-01 NA -TCGA-D8-A1JC TCGA-D8-A1JC-01 NA -TCGA-D8-A1JD TCGA-D8-A1JD-01 NA -TCGA-D8-A1JE TCGA-D8-A1JE-01 NA -TCGA-D8-A1JI TCGA-D8-A1JI-01 NA -TCGA-D8-A1JJ TCGA-D8-A1JJ-01 NA -TCGA-D8-A1JK TCGA-D8-A1JK-01 NA -TCGA-D8-A1JL TCGA-D8-A1JL-01 NA -TCGA-D8-A1JM TCGA-D8-A1JM-01 NA -TCGA-D8-A1JN TCGA-D8-A1JN-01 NA -TCGA-D8-A1JP TCGA-D8-A1JP-01 NA -TCGA-D8-A1X5 TCGA-D8-A1X5-01 NA -TCGA-D8-A1X6 TCGA-D8-A1X6-01 NA -TCGA-D8-A1X7 TCGA-D8-A1X7-01 NA -TCGA-D8-A1X8 TCGA-D8-A1X8-01 NA -TCGA-D8-A1X9 TCGA-D8-A1X9-01 NA -TCGA-D8-A1XA TCGA-D8-A1XA-01 NA -TCGA-D8-A1XB TCGA-D8-A1XB-01 NA -TCGA-D8-A1XC TCGA-D8-A1XC-01 NA -TCGA-D8-A1XD TCGA-D8-A1XD-01 NA -TCGA-D8-A1XF TCGA-D8-A1XF-01 NA -TCGA-D8-A1XG TCGA-D8-A1XG-01 NA -TCGA-D8-A1XJ TCGA-D8-A1XJ-01 NA -TCGA-D8-A1XK TCGA-D8-A1XK-01 NA -TCGA-D8-A1XL TCGA-D8-A1XL-01 NA -TCGA-D8-A1XM TCGA-D8-A1XM-01 NA -TCGA-D8-A1XQ TCGA-D8-A1XQ-01 NA -TCGA-D8-A1XR TCGA-D8-A1XR-01 NA -TCGA-D8-A1XU TCGA-D8-A1XU-01 NA -TCGA-D8-A1XV TCGA-D8-A1XV-01 NA -TCGA-D8-A1XW TCGA-D8-A1XW-01 NA -TCGA-D8-A1XY TCGA-D8-A1XY-01 NA -TCGA-D8-A1XZ TCGA-D8-A1XZ-01 NA -TCGA-D8-A1Y0 TCGA-D8-A1Y0-01 NA -TCGA-D8-A1Y1 TCGA-D8-A1Y1-01 NA -TCGA-D8-A1Y2 TCGA-D8-A1Y2-01 NA -TCGA-D8-A1Y3 TCGA-D8-A1Y3-01 NA -TCGA-D8-A27E TCGA-D8-A27E-01 NA -TCGA-D8-A27F TCGA-D8-A27F-01 NA -TCGA-D8-A27G TCGA-D8-A27G-01 NA -TCGA-D8-A27H TCGA-D8-A27H-01 NA -TCGA-D8-A27I TCGA-D8-A27I-01 NA -TCGA-D8-A27K TCGA-D8-A27K-01 NA -TCGA-D8-A27L TCGA-D8-A27L-01 NA -TCGA-D8-A27M TCGA-D8-A27M-01 NA -TCGA-D8-A27N TCGA-D8-A27N-01 NA -TCGA-D8-A27P TCGA-D8-A27P-01 NA -TCGA-D8-A27R TCGA-D8-A27R-01 NA -TCGA-D8-A27T TCGA-D8-A27T-01 NA -TCGA-D8-A27V TCGA-D8-A27V-01 NA -TCGA-D8-A27W TCGA-D8-A27W-01 NA -TCGA-E2-A1IE TCGA-E2-A1IE-01 NA -TCGA-E2-A1IF TCGA-E2-A1IF-01 NA -TCGA-E2-A1IG TCGA-E2-A1IG-01 NA -TCGA-E2-A1IH TCGA-E2-A1IH-01 NA -TCGA-E2-A1II TCGA-E2-A1II-01 NA -TCGA-E2-A1IJ TCGA-E2-A1IJ-01 NA -TCGA-E2-A1IK TCGA-E2-A1IK-01 NA -TCGA-E2-A1IL TCGA-E2-A1IL-01 NA -TCGA-E2-A1IN TCGA-E2-A1IN-01 NA -TCGA-E2-A1IO TCGA-E2-A1IO-01 NA -TCGA-E2-A1IP TCGA-E2-A1IP-01 NA -TCGA-E2-A1IU TCGA-E2-A1IU-01 NA -TCGA-E2-A1L6 TCGA-E2-A1L6-01 NA -TCGA-E2-A1L7 TCGA-E2-A1L7-01 NA -TCGA-E2-A1L8 TCGA-E2-A1L8-01 NA -TCGA-E2-A1L9 TCGA-E2-A1L9-01 NA -TCGA-E2-A1LA TCGA-E2-A1LA-01 NA -TCGA-E2-A1LB TCGA-E2-A1LB-01 NA -TCGA-E2-A1LG TCGA-E2-A1LG-01 NA -TCGA-E2-A1LH TCGA-E2-A1LH-01 NA -TCGA-E2-A1LI TCGA-E2-A1LI-01 NA -TCGA-E2-A1LL TCGA-E2-A1LL-01 NA -TCGA-E2-A1LS TCGA-E2-A1LS-01 NA -TCGA-E9-A1N3 TCGA-E9-A1N3-01 NA -TCGA-E9-A1N4 TCGA-E9-A1N4-01 NA -TCGA-E9-A1N5 TCGA-E9-A1N5-01 NA -TCGA-E9-A1N6 TCGA-E9-A1N6-01 NA -TCGA-E9-A1N8 TCGA-E9-A1N8-01 NA -TCGA-E9-A1N9 TCGA-E9-A1N9-01 NA -TCGA-E9-A1NA TCGA-E9-A1NA-01 NA -TCGA-E9-A1NC TCGA-E9-A1NC-01 NA -TCGA-E9-A1ND TCGA-E9-A1ND-01 NA -TCGA-E9-A1NE TCGA-E9-A1NE-01 NA -TCGA-E9-A1NF TCGA-E9-A1NF-01 NA -TCGA-E9-A1NG TCGA-E9-A1NG-01 NA -TCGA-E9-A1NH TCGA-E9-A1NH-01 NA -TCGA-E9-A1NI TCGA-E9-A1NI-01 NA -TCGA-E9-A1QZ TCGA-E9-A1QZ-01 NA -TCGA-E9-A1R0 TCGA-E9-A1R0-01 NA -TCGA-E9-A1R2 TCGA-E9-A1R2-01 NA -TCGA-E9-A1R3 TCGA-E9-A1R3-01 NA -TCGA-E9-A1R4 TCGA-E9-A1R4-01 NA -TCGA-E9-A1R5 TCGA-E9-A1R5-01 NA -TCGA-E9-A1R6 TCGA-E9-A1R6-01 NA -TCGA-E9-A1R7 TCGA-E9-A1R7-01 NA -TCGA-E9-A1RA TCGA-E9-A1RA-01 NA -TCGA-E9-A1RB TCGA-E9-A1RB-01 NA -TCGA-E9-A1RC TCGA-E9-A1RC-01 NA -TCGA-E9-A1RD TCGA-E9-A1RD-01 NA -TCGA-E9-A1RE TCGA-E9-A1RE-01 NA -TCGA-E9-A1RF TCGA-E9-A1RF-01 NA -TCGA-E9-A1RG TCGA-E9-A1RG-01 NA -TCGA-E9-A1RH TCGA-E9-A1RH-01 NA -TCGA-E9-A1RI TCGA-E9-A1RI-01 NA -TCGA-E9-A226 TCGA-E9-A226-01 NA -TCGA-E9-A227 TCGA-E9-A227-01 NA -TCGA-E9-A228 TCGA-E9-A228-01 NA -TCGA-E9-A229 TCGA-E9-A229-01 NA -TCGA-E9-A22A TCGA-E9-A22A-01 NA -TCGA-E9-A22B TCGA-E9-A22B-01 NA -TCGA-E9-A22D TCGA-E9-A22D-01 NA -TCGA-E9-A22E TCGA-E9-A22E-01 NA -TCGA-E9-A22G TCGA-E9-A22G-01 NA -TCGA-E9-A22H TCGA-E9-A22H-01 NA -TCGA-E9-A243 TCGA-E9-A243-01 NA -TCGA-E9-A244 TCGA-E9-A244-01 NA -TCGA-E9-A245 TCGA-E9-A245-01 NA -TCGA-E9-A247 TCGA-E9-A247-01 NA -TCGA-E9-A248 TCGA-E9-A248-01 NA -TCGA-E9-A249 TCGA-E9-A249-01 NA -TCGA-E9-A24A TCGA-E9-A24A-01 NA -TCGA-EW-A1IW TCGA-EW-A1IW-01 NA -TCGA-EW-A1IX TCGA-EW-A1IX-01 NA -TCGA-EW-A1IY TCGA-EW-A1IY-01 NA -TCGA-EW-A1IZ TCGA-EW-A1IZ-01 NA -TCGA-EW-A1J1 TCGA-EW-A1J1-01 NA -TCGA-EW-A1J2 TCGA-EW-A1J2-01 NA -TCGA-EW-A1J3 TCGA-EW-A1J3-01 NA -TCGA-EW-A1J5 TCGA-EW-A1J5-01 NA -TCGA-EW-A1J6 TCGA-EW-A1J6-01 NA -TCGA-EW-A1OV TCGA-EW-A1OV-01 NA -TCGA-EW-A1OW TCGA-EW-A1OW-01 NA -TCGA-EW-A1OX TCGA-EW-A1OX-01 NA -TCGA-EW-A1OY TCGA-EW-A1OY-01 NA -TCGA-EW-A1OZ TCGA-EW-A1OZ-01 NA -TCGA-EW-A1P0 TCGA-EW-A1P0-01 NA -TCGA-EW-A1P1 TCGA-EW-A1P1-01 NA -TCGA-EW-A1P3 TCGA-EW-A1P3-01 NA -TCGA-EW-A1P4 TCGA-EW-A1P4-01 NA -TCGA-EW-A1P5 TCGA-EW-A1P5-01 NA -TCGA-EW-A1P6 TCGA-EW-A1P6-01 NA -TCGA-EW-A1P7 TCGA-EW-A1P7-01 NA -TCGA-EW-A1PA TCGA-EW-A1PA-01 NA -TCGA-EW-A1PB TCGA-EW-A1PB-01 NA -TCGA-EW-A1PD TCGA-EW-A1PD-01 NA -TCGA-EW-A1PE TCGA-EW-A1PE-01 NA -TCGA-EW-A1PF TCGA-EW-A1PF-01 NA -TCGA-EW-A1PG TCGA-EW-A1PG-01 NA -TCGA-EW-A1PH TCGA-EW-A1PH-01 NA -TCGA-EW-A2FS TCGA-EW-A2FS-01 NA -TCGA-EW-A2FV TCGA-EW-A2FV-01 NA -TCGA-EW-A2FW TCGA-EW-A2FW-01 NA -TCGA-GM-A2DA TCGA-GM-A2DA-01 NA -TCGA-GM-A2DB TCGA-GM-A2DB-01 NA -TCGA-GM-A2DC TCGA-GM-A2DC-01 NA -TCGA-GM-A2DD TCGA-GM-A2DD-01 NA -TCGA-GM-A2DF TCGA-GM-A2DF-01 NA -TCGA-GM-A2DH TCGA-GM-A2DH-01 NA -TCGA-GM-A2DI TCGA-GM-A2DI-01 NA -TCGA-GM-A2DK TCGA-GM-A2DK-01 NA -TCGA-GM-A2DL TCGA-GM-A2DL-01 NA -TCGA-GM-A2DM TCGA-GM-A2DM-01 NA -TCGA-GM-A2DN TCGA-GM-A2DN-01 NA -TCGA-GM-A2DO TCGA-GM-A2DO-01 NA -TCGA-AR-A24W TCGA-AR-A24W-01 NA -TEST-A2B8 TEST-A2B8-01 NA -TEST-A2FF TEST-A2FF-01 NA -TEST-A2FB TEST-A2FB-01 NA -TEST-A2FG TEST-A2FG-01 NA -TCGA-GI-A2C8 TCGA-GI-A2C8-01 NA -TCGA-E9-A295 TCGA-E9-A295-01 NA -TCGA-E2-A15E TCGA-E2-A15E-06 NA -TCGA-A2-A0T2 TCGA-A2-A0T2-01 NA -TEST_PATIENT_1 TEST_SAMPLE_1 NA -TEST_PATIENT_2 TEST_SAMPLE_2 NA -TEST_PATIENT_3 TEST_SAMPLE_3 NA -TEST_PATIENT_4 TEST_SAMPLE_4 NA -TEST_PATIENT_5 TEST_SAMPLE_5 NA -TEST_PATIENT_6 TEST_SAMPLE_6 NA -TEST_PATIENT_7 TEST_SAMPLE_7 NA -TEST_PATIENT_8 TEST_SAMPLE_8 NA -TEST_PATIENT_9 TEST_SAMPLE_9 NA -TEST_PATIENT_10 TEST_SAMPLE_10 NA -TEST_PATIENT_11 TEST_SAMPLE_11 NA -TEST_PATIENT_12 TEST_SAMPLE_12 NA -TEST_PATIENT_13 TEST_SAMPLE_13 NA -TEST_PATIENT_14 TEST_SAMPLE_14 NA -TEST_PATIENT_15 TEST_SAMPLE_15 NA -TEST_PATIENT_NAMESPACE TEST_SAMPLE_SOMATIC_HOMOZYGOUS NA -TEST_PATIENT_NAMESPACE TEST_SAMPLE_SOMATIC_HETEROZYGOUS NA -TEST_PATIENT_NAMESPACE TEST_SAMPLE_SOMATIC_UNDEFINED NA diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_cna_discrete.txt b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_cna_discrete.txt deleted file mode 100644 index 9068287db04..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_cna_discrete.txt +++ /dev/null @@ -1,9 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 TEST_SAMPLE_1 TEST_SAMPLE_2 TEST_SAMPLE_3 TEST_SAMPLE_4 TEST_SAMPLE_7 TEST_SAMPLE_8 TEST_SAMPLE_12 TEST_SAMPLE_13 TEST_SAMPLE_14 TEST_SAMPLE_15 -ACAP3 116983 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 -AGRN 375790 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 -ATAD3A 55210 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 -ATAD3B 83858 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 -ATAD3C 219293 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 -AURKAIP1 54998 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 -ERCC5 2073 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 -ACP3 55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_cna_pd_annotations.txt b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_cna_pd_annotations.txt deleted file mode 100644 index 3c91408382e..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_cna_pd_annotations.txt +++ /dev/null @@ -1,8 +0,0 @@ -SAMPLE_ID Entrez_Gene_Id cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -TCGA-A2-A04U-01 116983 Putative_Passenger Test passenger Class 2 Class annotation -TCGA-A2-A04U-01 375790 Putative_Driver Test driver Class 1 Class annotation -TCGA-A2-A04U-01 219293 Putative_Passenger Test passenger -TCGA-A2-A04U-01 2073 Putative_Driver Test driver -TCGA-A7-A26F-01 55210 Class 2 Class annotation -TCGA-A7-A26F-01 83858 Class 1 Class annotation -TCGA-A7-A26F-01 2073 Putative_Driver \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_mutations_extended.maf b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_mutations_extended.maf deleted file mode 100644 index 1aacfd5dc88..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/data_mutations_extended.maf +++ /dev/null @@ -1,3 +0,0 @@ -#version 2.4 -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation Zygosity.name Zygosity.code -OR11H1 genome.wustl.edu GRCh37 22 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC ENSG00000130538 65 0 0 38 6 13.64 - - - 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC - - - Putative_Driver Test driver diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_cna_discrete.txt b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_cna_discrete.txt deleted file mode 100644 index f6ea8bea46c..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_cna_discrete.txt +++ /dev/null @@ -1,10 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: DISCRETE -stable_id: gistic -show_profile_in_analysis_tab: true -profile_description: Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification. -profile_name: Putative copy-number alterations from GISTIC -data_filename: data_cna_discrete.txt -pd_annotations_filename: data_cna_pd_annotations.txt -namespaces: CustomNamespace diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_mutations_extended.txt b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_mutations_extended.txt deleted file mode 100644 index 94df92aa5d9..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_mutations_extended.txt +++ /dev/null @@ -1,10 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: MUTATION_EXTENDED -datatype: MAF -stable_id: mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations -data_filename: data_mutations_extended.maf -swissprot_identifier: name -namespaces: Zygosity diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_study.txt b/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_study.txt deleted file mode 100644 index 915ad2ca0bf..00000000000 --- a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_study.txt +++ /dev/null @@ -1,9 +0,0 @@ -type_of_cancer: brca-es0 -cancer_study_identifier: study_es_0 -name: Test study es_0 -description: Test study es_0 -citation: Cell 2018 -pmid: 29625048,29596782,29622463,29617662,29625055,29625050 -groups: PUBLIC;GDAC;SU2C-PI3K -add_global_case_list: true -reference_genome: hg19 diff --git a/core/src/test/scripts/test_data/study_es_1/cancer_type.txt b/core/src/test/scripts/test_data/study_es_1/cancer_type.txt deleted file mode 100644 index 9263471fe03..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/cancer_type.txt +++ /dev/null @@ -1 +0,0 @@ -brca-ben Breast Invasive Carcinoma breast,breast invasive HotPink Breast diff --git a/core/src/test/scripts/test_data/study_es_1/case_lists/cases_all.txt b/core/src/test/scripts/test_data/study_es_1/case_lists/cases_all.txt deleted file mode 100644 index 6157f734383..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/case_lists/cases_all.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_all -case_list_name: All Tumors -case_list_description: All tumor samples (825 samples) -case_list_ids: INVALID-A2-A0T2-01 TCGA-A2-A04P-01 TCGA-A1-A0SK-01 TCGA-A2-A0CM-01 TCGA-AR-A1AR-01 TCGA-B6-A0WX-01 TCGA-BH-A1F0-01 TCGA-B6-A0I6-01 TCGA-BH-A18V-01 TCGA-BH-A18Q-01 TCGA-BH-A18K-01 TCGA-BH-A0HL-01 TCGA-BH-A0E0-01 TCGA-BH-A0RX-01 TCGA-A7-A13D-01 TCGA-BH-A0E6-01 TCGA-AO-A0J4-01 TCGA-A7-A0CE-01 TCGA-A7-A13E-01 TCGA-A7-A0DA-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-AQ-A04J-01 TCGA-BH-A0HN-01 TCGA-A2-A0T0-01 TCGA-A2-A0YE-01 TCGA-A2-A0YJ-01 TCGA-A2-A0D0-01 TCGA-A2-A04U-01 TCGA-AO-A0J6-01 TCGA-A2-A0YM-01 TCGA-A2-A0D2-01 TCGA-BH-A0B3-01 TCGA-A2-A04Q-01 TCGA-A2-A0SX-01 TCGA-AO-A0JL-01 TCGA-AO-A12F-01 TCGA-BH-A0B9-01 TCGA-A2-A04T-01 TCGA-B6-A0RT-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A124-01 TCGA-B6-A0RU-01 TCGA-B6-A0IQ-01 TCGA-B6-A0I2-01 TCGA-B6-A0IJ-01 TCGA-B6-A0X1-01 TCGA-B6-A0RE-01 TCGA-A2-A0ST-01 TCGA-AR-A0TP-01 TCGA-A1-A0SO-01 TCGA-A8-A07C-01 TCGA-A8-A07O-01 TCGA-A8-A07R-01 TCGA-A8-A07U-01 TCGA-A8-A08H-01 TCGA-A8-A08R-01 TCGA-AN-A04D-01 TCGA-AN-A0AL-01 TCGA-AN-A0AR-01 TCGA-AN-A0AT-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FL-01 TCGA-AN-A0FX-01 TCGA-AN-A0G0-01 TCGA-AN-A0XU-01 TCGA-AR-A0TS-01 TCGA-AR-A0TU-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AY-01 TCGA-BH-A0AV-01 TCGA-BH-A0BG-01 TCGA-BH-A0BL-01 TCGA-BH-A0BW-01 TCGA-BH-A0DL-01 TCGA-BH-A0WA-01 TCGA-BH-A18G-01 TCGA-C8-A12K-01 TCGA-C8-A12V-01 TCGA-C8-A131-01 TCGA-C8-A134-01 TCGA-D8-A147-01 TCGA-E2-A14N-01 TCGA-E2-A14R-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A150-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B5-01 TCGA-A8-A08L-01 TCGA-BH-A1EV-01 TCGA-B6-A0I9-01 TCGA-A8-A09X-01 TCGA-B6-A0IK-01 TCGA-BH-A18P-01 TCGA-A8-A08J-01 TCGA-BH-A18R-01 TCGA-AR-A1AT-01 TCGA-B6-A0RS-01 TCGA-BH-A0DZ-01 TCGA-A2-A0T1-01 TCGA-AO-A0J2-01 TCGA-BH-A0AW-01 TCGA-BH-A0EE-01 TCGA-A2-A0D1-01 TCGA-AO-A03N-01 TCGA-A2-A0CY-01 TCGA-A2-A04X-01 TCGA-A2-A0CX-01 TCGA-A2-A04W-01 TCGA-AO-A12D-01 TCGA-A2-A0CL-01 TCGA-AO-A0JE-01 TCGA-A2-A0EQ-01 TCGA-AO-A03L-01 TCGA-B6-A0RH-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A07B-01 TCGA-A8-A07I-01 TCGA-A8-A081-01 TCGA-A8-A08B-01 TCGA-A8-A08X-01 TCGA-A8-A092-01 TCGA-A8-A094-01 TCGA-A8-A09G-01 TCGA-A8-A0A7-01 TCGA-AN-A04C-01 TCGA-AN-A0FV-01 TCGA-AR-A0TX-01 TCGA-BH-A0B7-01 TCGA-BH-A0HY-01 TCGA-C8-A12L-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HF-01 TCGA-D8-A13Z-01 TCGA-E2-A14P-01 TCGA-E2-A14V-01 TCGA-E2-A152-01 TCGA-E2-A1B0-01 TCGA-A2-A0CU-01 TCGA-AR-A0TR-01 TCGA-BH-A18T-01 TCGA-B6-A0I8-01 TCGA-B6-A0X4-01 TCGA-A8-A06U-01 TCGA-BH-A0EA-01 TCGA-BH-A18N-01 TCGA-BH-A1EU-01 TCGA-B6-A0X7-01 TCGA-A2-A04V-01 TCGA-BH-A18S-01 TCGA-BH-A18M-01 TCGA-B6-A0RM-01 TCGA-BH-A1ET-01 TCGA-B6-A0IN-01 TCGA-BH-A1EO-01 TCGA-B6-A0WS-01 TCGA-B6-A0RP-01 TCGA-B6-A0IH-01 TCGA-B6-A0WY-01 TCGA-BH-A1ES-01 TCGA-B6-A0X0-01 TCGA-B6-A0RQ-01 TCGA-B6-A0IG-01 TCGA-BH-A0HO-01 TCGA-BH-A0DS-01 TCGA-BH-A0DQ-01 TCGA-BH-A0HK-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0DB-01 TCGA-A7-A0D9-01 TCGA-AO-A0J8-01 TCGA-BH-A0GZ-01 TCGA-AO-A0JA-01 TCGA-AO-A0JF-01 TCGA-A7-A0CD-01 TCGA-D8-A145-01 TCGA-BH-A0HP-01 TCGA-BH-A0DK-01 TCGA-BH-A0E2-01 TCGA-A2-A0YI-01 TCGA-A2-A0YL-01 TCGA-AO-A0JG-01 TCGA-A2-A0YF-01 TCGA-BH-A0DP-01 TCGA-BH-A0E1-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-BH-A0HI-01 TCGA-A2-A0T7-01 TCGA-BH-A0BJ-01 TCGA-BH-A0H7-01 TCGA-BH-A0HF-01 TCGA-BH-A0EB-01 TCGA-BH-A0H6-01 TCGA-A2-A0YD-01 TCGA-BH-A0HB-01 TCGA-BH-A0HX-01 TCGA-AO-A12H-01 TCGA-E2-A10E-01 TCGA-A2-A0D3-01 TCGA-E2-A10F-01 TCGA-AO-A03V-01 TCGA-A2-A0EW-01 TCGA-BH-A0GY-01 TCGA-A2-A0EV-01 TCGA-BH-A0BC-01 TCGA-A2-A0YC-01 TCGA-A2-A0EU-01 TCGA-A2-A0ET-01 TCGA-A2-A04Y-01 TCGA-BH-A0HQ-01 TCGA-A2-A0ES-01 TCGA-BH-A0BA-01 TCGA-E2-A10B-01 TCGA-BH-A0B1-01 TCGA-BH-A0DH-01 TCGA-BH-A0B4-01 TCGA-BH-A0H9-01 TCGA-AO-A0J9-01 TCGA-AO-A12G-01 TCGA-A2-A0SY-01 TCGA-BH-A0E7-01 TCGA-AO-A03M-01 TCGA-BH-A0BV-01 TCGA-BH-A0B8-01 TCGA-A2-A0CZ-01 TCGA-A2-A0SU-01 TCGA-AO-A12E-01 TCGA-E2-A106-01 TCGA-A2-A0CV-01 TCGA-AO-A12C-01 TCGA-B6-A0RG-01 TCGA-A2-A0CS-01 TCGA-A2-A0EO-01 TCGA-A2-A0CQ-01 TCGA-A2-A0EN-01 TCGA-AO-A12A-01 TCGA-A2-A0CP-01 TCGA-AO-A126-01 TCGA-AO-A125-01 TCGA-A2-A0EM-01 TCGA-A2-A04N-01 TCGA-AQ-A04L-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0WZ-01 TCGA-B6-A0I5-01 TCGA-B6-A0RV-01 TCGA-B6-A0RO-01 TCGA-B6-A0RN-01 TCGA-B6-A0WT-01 TCGA-B6-A0IA-01 TCGA-B6-A0RI-01 TCGA-A1-A0SE-01 TCGA-A2-A0EX-01 TCGA-AO-A0JJ-01 TCGA-E2-A105-01 TCGA-A1-A0SD-01 TCGA-A1-A0SH-01 TCGA-A1-A0SJ-01 TCGA-A8-A06P-01 TCGA-A8-A06T-01 TCGA-A8-A06Y-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07J-01 TCGA-A8-A07P-01 TCGA-A8-A083-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08C-01 TCGA-A8-A08O-01 TCGA-A8-A08T-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A093-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0AD-01 TCGA-AN-A03X-01 TCGA-AN-A046-01 TCGA-AN-A04A-01 TCGA-AN-A0FD-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FW-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XP-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XV-01 TCGA-AR-A0TW-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AP-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0C1-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DI-01 TCGA-BH-A0DO-01 TCGA-BH-A0DT-01 TCGA-BH-A0DX-01 TCGA-BH-A0E9-01 TCGA-BH-A0EI-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0HA-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-C8-A12N-01 TCGA-C8-A12O-01 TCGA-C8-A12Y-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A1HI-01 TCGA-D8-A141-01 TCGA-E2-A14Q-01 TCGA-E2-A14T-01 TCGA-E2-A14Z-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A156-01 TCGA-E2-A15C-01 TCGA-E2-A15D-01 TCGA-E2-A15E-01 TCGA-E2-A15F-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-A2-A0SV-01 TCGA-AO-A03O-01 TCGA-A2-A0SW-01 TCGA-B6-A0WW-01 TCGA-BH-A18J-01 TCGA-BH-A18L-01 TCGA-A8-A06X-01 TCGA-B6-A0IC-01 TCGA-BH-A18U-01 TCGA-BH-A1EW-01 TCGA-AR-A0TY-01 TCGA-B6-A0X5-01 TCGA-B6-A0WV-01 TCGA-B6-A0RL-01 TCGA-AR-A0U2-01 TCGA-B6-A0IB-01 TCGA-AO-A0J7-01 TCGA-AO-A0J3-01 TCGA-D8-A13Y-01 TCGA-A7-A13F-01 TCGA-BH-A0HU-01 TCGA-D8-A140-01 TCGA-A7-A0CJ-01 TCGA-AQ-A04H-01 TCGA-BH-A0H0-01 TCGA-BH-A0BD-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0YH-01 TCGA-A2-A0YG-01 TCGA-A2-A0EY-01 TCGA-A2-A0D4-01 TCGA-BH-A0AY-01 TCGA-E2-A107-01 TCGA-AO-A0JI-01 TCGA-E2-A10C-01 TCGA-E2-A10A-01 TCGA-BH-A0C0-01 TCGA-E2-A109-01 TCGA-AO-A0JC-01 TCGA-BH-A0HW-01 TCGA-AO-A0JD-01 TCGA-AO-A0JM-01 TCGA-A2-A0CW-01 TCGA-A2-A0ER-01 TCGA-A2-A0CT-01 TCGA-AO-A12B-01 TCGA-A2-A04R-01 TCGA-B6-A0IM-01 TCGA-AO-A03P-01 TCGA-A1-A0SM-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06Z-01 TCGA-A8-A079-01 TCGA-A8-A07L-01 TCGA-A8-A07S-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A082-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08I-01 TCGA-A8-A08P-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09W-01 TCGA-A8-A09Z-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A049-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AM-01 TCGA-AN-A0AS-01 TCGA-AN-A0FF-01 TCGA-AN-A0FK-01 TCGA-AN-A0FY-01 TCGA-AN-A0XR-01 TCGA-AN-A0XW-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U3-01 TCGA-AR-A1AV-01 TCGA-BH-A0AU-01 TCGA-BH-A0B5-01 TCGA-BH-A0BF-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0W3-01 TCGA-BH-A18F-01 TCGA-C8-A12M-01 TCGA-C8-A12U-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A1HG-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-E2-A14O-01 TCGA-E2-A14S-01 TCGA-E2-A14W-01 TCGA-E2-A155-01 TCGA-E2-A15A-01 TCGA-E2-A15K-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15S-01 TCGA-E2-A15T-01 TCGA-AO-A03U-01 TCGA-B6-A0IE-01 TCGA-A2-A0YK-01 TCGA-E2-A108-01 TCGA-AO-A0JB-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AR-A1AO-01 TCGA-A2-A0YT-01 TCGA-AQ-A0Y5-01 TCGA-EW-A1P8-01 TCGA-E2-A1LK-01 TCGA-BH-A1EY-01 TCGA-BH-A1F8-01 TCGA-BH-A1F2-01 TCGA-BH-A1FD-01 TCGA-BH-A1FH-01 TCGA-BH-A203-01 TCGA-BH-A1FM-01 TCGA-BH-A1EX-01 TCGA-BH-A1FL-01 TCGA-BH-A208-01 TCGA-GM-A2D9-01 TCGA-BH-A1FJ-01 TCGA-BH-A1EN-01 TCGA-BH-A1FN-01 TCGA-BH-A1FU-01 TCGA-BH-A1FE-01 TCGA-BH-A204-01 TCGA-BH-A1F5-01 TCGA-AR-A256-01 TCGA-BH-A1F6-01 TCGA-BH-A1FC-01 TCGA-BH-A1FB-01 TCGA-BH-A1FG-01 TCGA-BH-A209-01 TCGA-BH-A1FR-01 TCGA-AO-A1KS-01 TCGA-A7-A13G-01 TCGA-D8-A1JS-01 TCGA-A7-A0DC-01 TCGA-D8-A1JT-01 TCGA-A7-A26E-01 TCGA-D8-A1JH-01 TCGA-D8-A1JU-01 TCGA-AO-A1KO-01 TCGA-AO-A1KT-01 TCGA-AO-A0J5-01 TCGA-B6-A1KC-01 TCGA-AO-A1KQ-01 TCGA-B6-A1KI-01 TCGA-AO-A1KP-01 TCGA-B6-A1KF-01 TCGA-B6-A1KN-01 TCGA-D8-A1XO-01 TCGA-D8-A1XT-01 TCGA-A1-A0SP-01 TCGA-D8-A1J8-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1XS-01 TCGA-A1-A0SB-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SI-01 TCGA-A1-A0SN-01 TCGA-A1-A0SQ-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A08S-01 TCGA-A8-A09E-01 TCGA-A8-A09K-01 TCGA-AC-A23C-01 TCGA-AC-A23E-01 TCGA-AC-A23H-01 TCGA-AO-A1KR-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-BH-A0B2-01 TCGA-BH-A0DV-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A28Q-01 TCGA-C8-A1HE-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A146-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IP-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LL-01 TCGA-E2-A1LS-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GM-A2DA-01 TCGA-GM-A2DB-01 TCGA-GM-A2DC-01 TCGA-GM-A2DD-01 TCGA-GM-A2DF-01 TCGA-GM-A2DH-01 TCGA-GM-A2DI-01 TCGA-GM-A2DK-01 TCGA-GM-A2DL-01 TCGA-GM-A2DM-01 TCGA-GM-A2DN-01 TCGA-GM-A2DO-01 TCGA-AR-A24W-01 TCGA-AC-A2B8-01 TCGA-AC-A2FF-01 TCGA-AC-A2FB-01 TCGA-AC-A2FG-01 TCGA-GI-A2C8-01 TCGA-E9-A295-01 diff --git a/core/src/test/scripts/test_data/study_es_1/data_expression_median.txt b/core/src/test/scripts/test_data/study_es_1/data_expression_median.txt deleted file mode 100644 index 15c7ba8bfc7..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/data_expression_median.txt +++ /dev/null @@ -1,7 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TEST2-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0CY-01 TCGA-A2-A0CZ-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07C-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09K-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0G0-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XP-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12C-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TU-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AT-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I6-01 TCGA-B6-A0I8-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IG-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B1-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B8-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HF-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HL-01 TCGA-BH-A0HN-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HQ-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0HY-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1F0-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12O-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A140-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-E2-A105-01 TCGA-E2-A106-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14T-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15D-01 TCGA-E2-A15F-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A15S-01 TCGA-E2-A15T-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 -CREB3L1 90993 1.4345 0.89075 2.25925 0.43775 -0.63725 2.58 -0.7075 0.16675 1.18425 0.9665 0.2375 0.9585 -0.33475 0.245 1.007 2.64625 2.32225 1.49375 0.48275 0.30725 1.51075 1.02225 1.94525 -0.45525 -0.358 1.0775 1.89475 0.95 2.235 1.30775 -0.25 1.56525 0.1715 0.617 1.1595 1.359 1.5575 0.88325 0.9935 1.48075 0.60725 1.45025 0.59725 0.50375 1.28775 0.73225 1.487 1.81475 1.00925 1.28875 1.132 0.36375 0.71475 0.99875 1.5635 0.7605 1.81775 1.28225 1.4765 1.1355 0.60525 0.11375 1.5675 0.02925 2.20675 1.553 0.6525 1.78475 -0.131 1.24125 0.7295 -0.15175 0.1135 1.3855 -0.60925 1.92575 1.1805 0.289 0.15275 0.622 1.24175 0.273 -0.12175 1.39375 -0.425 0.0655 0.577 0.952 1.503 0.4445 0.6555 0.0105 0.58125 -0.693 2.1165 1.62675 -0.07 1.34975 -0.3545 1.7375 1.88225 1.29375 1.75725 1.0415 0.316 0.15575 0.7305 0.15275 0.8875 0.958 0.51025 0.888 1.781 0.98575 0.81575 1.83025 0.61275 0.6095 1.08375 3.06975 0.5335 0.2215 0.63475 1.39125 -0.89025 0.84575 0.827 0.88775 0.88825 0.16475 1.209 0.79425 0.71225 1.355 0.23875 -0.24225 1.603 0.6855 1.6825 1.43475 2.12325 0.6965 1.60875 0.23275 0.7395 0.47425 1.38275 0.494 1.12325 1.9075 -1.17575 -0.0435 1.27925 0.3065 0.75325 0.99875 1.00075 1.1055 1.91575 -0.15225 0.9155 1.28275 0.2965 3.02975 1.04275 1.0815 0.5645 1.9115 1.422 -0.0035 1.17975 0.9485 0.87425 1.34925 1.0015 -0.493 1.1195 0.54825 0.59275 0.82125 -0.66525 2.876 -0.43475 0.99725 1.2855 -0.25275 2.0695 0.59775 1.92075 0.4545 2.31225 1.16375 0.51825 0.3925 0.72625 1.2555 0.2175 1.1395 1.63575 1.12225 1.72 1.32425 0.717 -0.23625 -0.232 0.89075 1.54225 1.924 0.405 3.22025 1.162 -0.15225 0.85375 0.6295 2.30925 1.5605 0.397 0.2015 0.0055 1.58275 0.685 0.69525 1.60925 2.012 1.0935 1.917 -0.51575 -0.504 1.716 0.516 0.56925 -0.41575 1.60775 1.20875 1.9795 -0.4945 1.2565 1.7765 0.64275 0.63325 1.9195 1.70725 1.18925 2.9135 0.78125 0.29875 0.39325 1.755 -0.43675 0.13425 1.43325 -0.22975 0.92025 -1.41275 -0.556 0.3445 -0.71675 0.04775 -0.3405 1.99225 0.26 1.1955 -0.1875 0.89925 1.427 1.95675 0.14175 -0.1295 0.18775 0.248 -0.273 1.9945 1.13225 1.1225 0.601 0.1075 0.61075 1.1935 2.002 0.10325 0.30125 1.62575 1.70525 0.75425 1.25825 1.592 0.5405 1.96275 0.87075 0.6815 1.8075 0.40225 0.2 2.8465 1.03925 0.11425 1.21075 1.1185 1.5025 0.657 0.80475 -0.4015 0.603 0.442 1.7575 0.709 0.624 -0.038 1.2605 1.446 1.545 -0.319 1.793 0.14575 0.547 0.8775 1.16075 1.5215 0.25625 0.976 1.27125 0.8535 1.527 1.368 1.53975 2.13725 1.997 1.2315 0.948 1.144 1.72 1.317 1.7905 2.26325 0.3255 0.6665 0.65625 0.7665 1.4275 1.23175 0.065 1.12375 0.887 0.82025 1.40175 0.57775 1.04 0.64925 2.61275 1.1205 0.6875 1.09025 1.27325 2.3835 1.17725 1.952 -0.11825 1.0545 0.534 1.99425 0.852 0.7615 -0.0245 1.042 1.99125 1.331 1.37125 1.0215 0.36825 1.94775 1.50125 1.03725 1.88875 0.4175 1.51725 1.82775 1.2905 2.56925 1.00225 0.57 0.85275 0.10275 1.20275 1.6305 1.59775 1.15725 0.99675 0.9015 -0.2805 1.76825 -0.018 1.6335 1.80375 1.5485 1.68075 0.265 1.754 1.3655 1.33875 0.54825 -0.41025 2.35425 1.6965 1.837 0.6325 -0.96875 0.16175 1.2115 0.51725 1.021 1.36775 0.25675 1.87925 0.02775 1.495 1.58625 0.8205 1.91225 1.516 0.71875 0.90825 1.32225 -0.24275 2.21275 -0.82025 0.203 1.338 2.37775 0.54975 0.14875 1.06025 0.61475 2.34625 1.31525 3.08775 0.14625 0.321 -0.05175 -0.11525 -0.9365 1.2725 1.4655 1.2845 0.755 0.862 -1.026 1.018 0.64225 1.31425 1.04875 3.00975 0.689 1.1395 0.68575 2.4265 -0.495 0.754 1.943 2.36475 1.581 0.171 0.529 2.633 0.21575 0.17375 -0.269 2.3075 -0.234 0.90625 0.2665 -0.56375 1.02675 1.81775 -0.36275 0.01325 2.12 0.3975 0.5035 0.777 1.93125 0.92225 2.021 1.89225 0.875 0.0375 1.0165 -0.42475 0.9895 -0.318 -0.43575 0.26525 2.0955 0.0605 -0.618 0.5315 1.03325 0.50375 2.011 1.423 1.39175 -0.86325 -0.54425 -0.2965 0.4765 0.511 1.11 0.0855 0.73175 0.7875 1.70175 1.37825 1.48425 1.60025 0.724 1.13775 -0.312 0.20625 0.3375 0.42825 0.96825 1.89825 1.71825 -0.07175 1.40025 1.63025 0.46525 -RPS11 6205 0.765 0.716 0.417125 0.115 0.492875 -0.525 -0.169 0.396 0.50475 0.400875 0.393125 0.9165 0.627125 0.337125 0.705 0.16425 0.325 0.11175 0.155625 0.285625 0.703 0.406625 0.136 0.02525 -0.158875 0.771125 0.446 0.164 1.2165 1.161875 -0.381125 0.592625 1.46475 0.25075 0.05725 0.60175 0.2965 0.578875 1.034625 0.195625 0.475875 0.615875 0.418 0.05625 1.202625 1.515875 0.28125 1.0045 0.51175 -0.247125 -0.14225 -0.46775 0.8855 0.65775 0.647 0.349125 1.219125 0.24375 0.935625 0.893 -0.519875 -0.21625 0.4815 0.404875 0.2785 0.02825 0.1195 0.62475 -0.688125 0.623625 0.8535 -0.047125 -0.115125 0.428625 -0.067875 1.1065 0.10175 0.347625 -0.306125 -0.528125 0.424125 1.377875 -0.077375 0.458375 0.190875 0.651375 0.524 0.42575 0.029625 -0.100625 -0.34075 -0.5165 0.477875 -0.395875 0.245 -0.425 0.3625 1.235375 0.668625 0.435375 0.055625 -0.02625 -0.337125 0.0815 0.231625 -0.359125 0.24025 0.15 0.26125 0.021375 -0.059125 0.118 0.2695 0.088875 0.173625 -0.135 0.688625 0.548125 0.435375 0.111875 0.722375 -0.26075 -0.61125 0.770875 0.082875 -0.27725 -0.701125 0.552125 0.06325 -0.550875 -0.38075 0.7395 0.456125 0.331625 -0.016375 0.20475 0.3815 0.928375 0.053 0.525125 0.717875 0.40825 -0.03925 -0.089375 -0.07675 0.4825 0.722375 0.1355 0.5345 0.083625 -0.037875 0.208125 -0.387125 1.080375 0.06425 0.34775 0.36525 0.178125 0.09575 0.618125 0.05575 0.05075 0.648125 0.4325 0.962375 0.53925 0.677 0.226 0.261125 -0.095875 -0.385875 0.77525 0.13175 0.28425 0.604125 0.163125 0.214875 0.19625 -0.073875 0.66375 1.26775 0.6305 0.6045 1.210375 0.02 1.147875 0.40325 0.898375 0.549875 0.39075 0.323 -0.165375 0.70925 1.140875 1.130375 0.042625 0.427375 0.01275 0.9345 0.65325 0.750375 0.740625 0.633625 1.632125 0.44975 0.236 0.632625 0.738125 0.448375 -0.01125 0.582875 2.193375 0.014125 -0.18275 0.917875 2.522 -0.330125 -0.334125 0.74575 0.46625 0.11375 0.877 0.419875 0.58175 0.384 1.447875 1.00025 0.713875 0.554625 0.47025 0.41775 0.838875 0.953375 0.4605 -0.26975 0.86075 0.501625 0.913125 0.722375 0.48725 1.1905 1.22575 1.728875 0.063125 0.41225 1.049875 2.340125 0.403875 -0.67475 0.294375 -0.074125 0.372625 0.347875 0.44975 0.84525 0.16 -0.016 -0.137875 0.2645 -0.121625 0.996125 -0.35725 -0.129125 0.39525 -0.3735 -0.245375 -0.017375 0.94775 0.543875 0.069375 0.72925 0.764625 1.04775 1.217125 0.47475 0.417375 0.943 0.314375 0.997625 1.243625 0.512375 0.35925 1.101 -1.025875 0.7845 0.9285 0.528375 0.335875 0.0455 0.43575 0.234125 0.416 0.234 0.51475 0.6885 0.2685 0.317875 0.4315 1.201125 0.564875 0.55675 1.1135 -0.236125 -0.23275 0.22025 0.25 -0.081 0.358625 0.540375 0.06025 0.597375 0.533125 0.820875 0.241875 1.031625 1.006125 0.18575 0.08525 0.204 -0.238625 0.08475 0.597875 1.248625 1.0245 -0.0985 0.753625 0.713625 0.54275 0.296875 0.298375 0.971875 0.148375 0.762125 0.54425 0.217375 0.306 0.538625 0.79975 0.018625 0.923875 1.100375 0.252 0.95175 0.27975 0.65725 1.045625 0.78425 0.410125 1.04275 0.2495 0.008625 0.258875 -0.297875 0.322375 0.564375 0.10325 -0.299125 0.223125 -0.2525 0.300875 0.41825 0.130125 0.930375 0.401125 0.5985 0.180125 0.541625 0.41575 -0.060625 1.115 0.898375 -0.443625 0.406375 1.01825 0.11725 0.7035 0.9775 0.44075 1.082 0.429 -0.220625 -0.12225 0.3035 0.255125 0.235125 -0.192375 0.541125 -0.56975 0.658 0.385625 1.349125 -0.03825 0.128375 -0.00649999999999999 0.7575 0.046875 0.75175 0.13675 1.8195 0.676625 -0.78175 0.857875 0.860125 0.864875 0.78025 0.890875 -0.074375 0.71825 0.367 0.43625 0.895125 0.13325 0.432375 -0.084875 0.225875 1.173625 2.4975 0.089625 0.3735 -0.6225 0.483875 0.995375 0.313875 0.47975 0.62125 0.24675 0.16325 0.29875 0.312625 -0.28925 0.85275 -0.2925 0.29375 0.550875 0.241625 0.582875 0.840375 0.60725 0.08675 0.340125 0.428375 0.045625 -0.2225 0.248 1.4685 -0.5035 0.70075 0.71875 -0.03875 0.2465 -0.053875 0.583375 0.892 -0.211125 0.695375 -0.119625 0.665625 -0.238875 -0.182625 1.026875 0.707375 -0.161875 0.236 1.429 0.548125 -0.708875 0.087375 0.6965 0.258 -0.118375 -0.285375 0.156 -0.2945 0.648875 0.8375 -0.019125 -0.178625 0.85925 0.185 -0.022375 0.531875 0.347125 0.357625 0.573625 0.116625 0.2675 0.466125 1.178 0.477375 0.489 -0.28425 0.50875 0.68675 -0.024875 0.92225 0.185875 0.166375 0.1415 0.78025 0.384625 0.119625 -0.1565 1.737125 -0.69175 0.90125 0.20975 1.413 -0.22075 0.067375 0.7555 1.042125 0.05925 0.926625 0.176375 0.06375 0.04525 -0.32875 -0.438625 0.781 0.226875 0.35225 0.326125 0.603625 1.406625 0.64975 0.60075 -PNMA1 9240 next is blank> 0.325 0.75775 0.94325 0.64175 -0.06425 0.026 0.53325 -1.72625 -0.077 1.1715 -0.6355 -0.41175 0.435 -0.76825 -0.95425 -0.702 -0.13275 0.14875 0.682 -1.308 0.38025 0.95775 1.071 -0.23325 -1.13575 -0.583 -0.3825 0.529 -0.91275 0.177 -0.26525 -0.98725 -0.008 1.265 0.32225 0.371 -0.96925 1.021 0.46025 1.361 0.8765 -0.119 0.1095 0.703 -0.46475 -0.29125 0.46525 -0.32075 -0.7435 0.14575 0.61725 -0.732 0.26225 -0.8345 0.91675 0.51125 -0.71525 0.882 0.46375 0.07425 0.48575 0.4755 0.23425 -0.21 0.86675 0.18075 -0.63725 -0.071 0.39925 0.2675 -0.398 0.269 -0.5325 -0.36375 0.0965 1.1145 -0.183 0.13025 0.46925 -0.401 -0.71575 -1.7145 1.15825 0.366 0.728 -0.78575 0.0315 -0.1675 0.30225 -0.1215 -0.1195 -0.9135 0.42075 0.4815 0.9785 0.10625 -0.37025 0.657 -0.026 0.14425 0.49575 0.2165 -0.49925 -0.94925 0.633 -0.09375 0.44875 -0.229 0.0245 0 0.14975 1.58675 -0.19775 -0.46575 -0.00425 1.01875 0.18075 0.27025 0.4275 -0.37725 0.17975 0.49225 0.688 0.338 -0.1975 0.4415 0.32275 0.51075 0.6915 0.284 -0.10075 0.8105 0.01375 1.168 0.71925 0.451 -0.69025 0.482 0.32275 -0.10525 -0.64825 0.2525 0.44825 0.4875 0.32575 -1.17075 -0.921 0.48925 0.35675 0.23975 -0.66775 0.65975 0.1795 1.0485 1.05875 -0.34875 -0.6265 -0.384 0.553 0.785 0.61675 -0.6525 -0.61775 0.51775 0.046 0.2045 0.12 0.20525 0.4635 -0.15175 0.361 0.9885 -0.4425 -1.61675 0.67975 -1.035 -1.23675 -0.74575 0.396 -0.31575 0.5125 0.4715 0.36125 -1.1295 0.44725 -1.0705 0.58575 0.61275 -0.69625 -0.0385 -0.08075 -0.10675 -0.56825 0.66125 -1.0245 0.61775 0.397 -0.1975 -0.42475 -0.121 0.44225 0.111 0.6825 -0.0085 0.03125 0.43975 0.758 -0.75875 1.00275 -0.21875 -0.34125 -0.8485 -0.45125 0.098 -1.5 1.6005 0.294 1.0505 -0.59325 1.31625 0.18175 0.04625 0.26125 -1.021 -0.31625 -0.9375 -0.03825 0.46075 0.652 1.57475 -0.02075 -0.856 0.81575 -0.982 -1.03975 -0.262 -0.9175 -1.3145 -0.25975 0.912 0.06725 -0.63575 0.5055 -0.24725 0.48475 0.50325 0.98975 -0.649 -1.026 -0.8655 0.503 0.10525 0.28125 0.01025 -0.55575 0.311 0.05175 -0.4855 0.48625 1.44225 -1.21225 -0.2415 -0.03525 0.2895 0.29825 -0.778 -0.7775 0.037 0.47125 -0.40375 -0.02275 -0.14425 -0.69875 -1.22175 0.0395 0.4135 -0.0675 -0.28475 0.09425 -0.49725 -0.44875 -0.751 -0.936 0.212 -0.68425 -0.70625 -1.2215 0.2475 1.145 0.1985 0.39225 0.1585 0.17425 -0.692 0.41775 0.32925 -0.15025 -0.1935 0.28025 -0.19025 -0.75375 0.8425 -0.74075 0.80625 0.37275 1.31975 0.738 0.43075 0.19 0.2285 0.17825 0.0175 0.29375 0.89425 0.19375 -0.288 -0.15025 0.088 0.07675 -0.20775 0.13875 -0.716 -0.88 0.59275 0.48425 0.30425 0.07025 -0.5355 -0.21925 0.5985 -0.3725 -0.36875 0.1195 -0.234 0.686 0.24425 -0.3125 0.89725 -1.05375 0.39525 0.39425 0.40125 -0.23 -0.3715 0.297 0.19 -0.634 0.368 0.29375 -0.05175 -0.52425 1.11325 0.14725 0.15775 -0.706 0.01825 0.459 -0.306 0.20175 -1.6445 0.8445 -0.0385 0.4825 0.9835 -0.04075 0.567 -0.51875 0.218 0.29425 0.694 -0.2465 0.2005 -0.366 -0.37625 -0.53025 -0.05025 -0.104 -0.23125 0.55625 0.64875 -0.36625 -0.4425 -0.2675 0.3445 0.848 0.6355 0.18425 -0.542 0.1815 0.99225 0.25925 0.83475 -0.6765 0.43325 0.16875 -0.00475 0.007 0.24925 -0.86075 -0.55875 0.20225 -0.06075 -0.07975 0.85925 -0.056 0.51125 -0.49675 0.093 0.62125 0.94575 1.23725 0.23375 0.309 -1.0355 -0.73025 0.581 0.4015 -0.99925 0.28275 0.01025 0.345 0.29425 -0.918 -0.34925 0.16725 -0.07 -0.46575 -0.11675 0.58275 0.50725 -1.16625 0.06025 0.2205 -0.4305 -0.59475 -0.91425 -0.13 0.65425 -0.44325 0.13625 0.108 -0.84625 -0.195 -0.00325 -0.088 0.061 -0.29 0.15675 -0.333 0.21675 -0.5755 -0.21475 -0.567 -0.545 -0.55475 -1.09075 1.04325 -0.24 -0.487 0.0025 -0.29025 -1.14275 -0.8345 0.81075 -0.166 0.08675 0.7985 0.45425 -0.393 0.491 0.599 -0.344 1.4005 0.14475 -0.513 0.56775 0.9455 -0.35775 0.62425 0.32775 -0.65525 0.15425 -0.965 0.0075 0.536 0.9785 -1.40525 0.295 -0.54425 -0.08125 -0.61325 -0.118 -0.527 -0.08275 0.0295 -0.2295 0.175 0.669 0.0925 0.262 -0.747 -1.132 0.73225 -0.01525 0.11075 0.1975 0.223 -0.5125 -1.2515 -0.00825 0.27225 1.41425 -0.08375 1.33525 0.14925 1.00925 -0.20925 -0.03675 0.50025 -0.3635 -1.2445 -0.42125 -0.44975 -0.20225 -MMP2 4313 1.506 0.957833333333333 2.2855 -0.0893333333333333 -1.23316666666667 1.5915 -1.3965 -0.2605 0.583 -0.716333333333333 1.62883333333333 -0.39 -0.466166666666667 -0.550666666666667 1.00166666666667 1.399 -0.4545 -0.492833333333333 0.695166666666667 0.397666666666667 0.861 -0.7395 1.26866666666667 -0.118 -0.4305 1.11283333333333 -1.00166666666667 0.502666666666667 -0.946333333333333 1.50116666666667 -0.329 -0.256333333333333 0.222666666666667 0.340166666666667 -1.264 0.028 1.38916666666667 1.208 -0.316666666666667 -0.893 1.234 -1.59766666666667 0.312333333333333 1.06416666666667 1.5815 0.735166666666667 0.1255 -0.2315 0.463333333333333 1.274 0.567166666666667 1.4875 0.687166666666667 0.992 0.92 -0.166 0.100333333333333 1.191 -0.0263333333333333 1.50483333333333 1.76866666666667 0.593166666666667 1.37283333333333 0.552333333333333 -0.428833333333333 0.177666666666667 1.31566666666667 0.7935 -0.538166666666667 0.788166666666667 1.55033333333333 -0.101333333333333 -0.132 -0.201333333333333 0.0548333333333333 0.585666666666667 1.31466666666667 -1.0005 0.195833333333333 1.5885 0.544833333333333 0.680333333333333 -0.3305 1.991 -2.05583333333333 0.1105 1.07 -1.85033333333333 1.30383333333333 -0.206 0.0506666666666667 0.919666666666667 -1.61083333333333 -1.0865 0.9315 0.822666666666667 -0.736166666666667 0.902833333333333 -0.692166666666667 1.81116666666667 0.970166666666667 1.74716666666667 0.913666666666667 1.96866666666667 0.323 0.194333333333333 -0.4055 -0.880666666666667 -0.318 0.3325 -0.285666666666667 0.0351666666666667 -1.07316666666667 0.157666666666667 -1.0005 1.20733333333333 0.0853333333333333 0.755 0.421833333333333 -0.3065 -0.283666666666667 0.4945 1.19766666666667 0.293833333333333 -1.15816666666667 0.643333333333333 -0.3865 0.822333333333333 1.02316666666667 0.348666666666667 -0.0968333333333333 -0.435833333333333 1.557 1.814 0.3535 0.144 0.5345 1.06216666666667 1.1475 0.702833333333333 1.00466666666667 1.38316666666667 0.440833333333333 0.916 0.682333333333333 -0.198833333333333 0.184166666666667 0.23 -0.378 0.563166666666667 -1.344 -1.13016666666667 0.188333333333333 -0.252833333333333 1.05183333333333 1.26333333333333 1.024 0.102833333333333 0.511666666666667 -0.893 1.185 0.764833333333333 0.6065 0.172666666666667 0.594666666666667 0.4885 -0.263166666666667 1.34866666666667 1.52316666666667 0.296333333333333 1.213 1.26133333333333 0.61 1.33483333333333 -0.913333333333333 -0.95 0.520166666666667 -0.752166666666667 0.494333333333333 0.134666666666667 -0.9765 2.2325 0.142 0.4215 -0.36 0.9545 -0.681 -1.54683333333333 2.02283333333333 0.42 0.359 1.0665 -0.515333333333333 0.156 0.579 -0.530333333333333 -0.0781666666666666 0.712333333333333 1.98316666666667 0.806833333333333 0.339833333333333 0.0591666666666666 1.1955 -0.505 0.227166666666667 1.341 1.87033333333333 0.738333333333333 0.243166666666667 0.676666666666667 -0.249833333333333 -0.148666666666667 -0.6155 -0.3835 0.4215 0.851 -0.268833333333333 -1.53233333333333 0.168833333333333 1.72783333333333 -1.18916666666667 -0.0923333333333333 0.9515 0.2415 1.11033333333333 0.0811666666666667 -0.436333333333333 -0.536166666666667 1.57283333333333 1.25 -0.0136666666666667 -1.471 0.729333333333333 -0.3 0.951833333333333 -1.3305 -2.00716666666667 1.69583333333333 -1.07183333333333 0.606333333333333 1.03533333333333 -1.4945 1.38866666666667 1.84966666666667 -0.366833333333333 -0.0553333333333333 0.4 -0.142166666666667 -0.5395 0.324333333333333 0.686166666666667 -0.994333333333333 0.208333333333333 -2.28466666666667 -0.520166666666667 0.483333333333333 -1.34816666666667 -0.476333333333333 0.137166666666667 1.02433333333333 -0.241333333333333 0.969333333333333 -0.877333333333333 0.0493333333333333 -0.0741666666666667 -0.318333333333333 0.028 0.0151666666666666 -0.348666666666667 0.467166666666667 0.328 1.80366666666667 2.0565 1.31983333333333 0.900666666666667 0.760166666666667 1.00183333333333 1.01033333333333 0.725 1.265 0.774 0.6045 1.31716666666667 1.563 -1.75483333333333 -0.642166666666667 0.303666666666667 0.4235 -0.544833333333333 -1.16883333333333 -0.892 -1.97766666666667 -0.5115 0.811166666666667 1.5105 -0.849333333333333 -0.0925 0.6835 -0.219333333333333 -0.3855 0.542666666666667 -1.30483333333333 0.446 0.710166666666667 1.56483333333333 1.3545 -2.251 -0.962333333333333 1.18416666666667 -0.727166666666667 1.12533333333333 -0.5205 0.716166666666667 0.4425 0.2785 -0.105166666666667 1.5195 1.60516666666667 0.134833333333333 0.789 1.5935 0.935166666666667 0.6675 -0.346833333333333 -1.53166666666667 -1.205 -0.910833333333333 1.15366666666667 1.19716666666667 2.45866666666667 0.505 1.0035 2.1515 2.80116666666667 1.59783333333333 1.30083333333333 0.677333333333333 1.25916666666667 1.44316666666667 0.165666666666667 -0.9985 0.9065 0.469666666666667 0.302833333333333 2.52066666666667 -0.0466666666666666 0.724166666666667 1.1205 0.478333333333333 1.7775 0.4855 1.8325 1.39516666666667 0.371666666666667 -0.753333333333333 0.577166666666667 -0.0185 1.636 -0.343166666666667 1.90883333333333 1.49 0.566666666666667 -0.200666666666667 0.871166666666667 1.14 -0.240166666666667 2.685 0.633666666666667 -0.184666666666667 0.223333333333333 0.9025 1.32266666666667 0.104 -0.0323333333333333 1.863 1.616 -0.817833333333333 -0.0816666666666667 0.0898333333333333 -0.273333333333333 -0.409333333333333 1.23783333333333 1.18716666666667 1.23666666666667 -1.33016666666667 1.30833333333333 1.32416666666667 1.16716666666667 -1.34233333333333 1.8015 -0.0686666666666667 1.55183333333333 1.70516666666667 -0.052 2.16166666666667 -0.266666666666667 1.08233333333333 0.898666666666667 0.193 -0.0773333333333333 -0.123166666666667 -0.695666666666667 0.727 0.671666666666667 -0.589166666666667 -1.86483333333333 0.420166666666667 1.05116666666667 1.467 -0.95 1.18716666666667 1.20066666666667 1.177 0.635833333333333 0.618833333333333 0.916833333333333 -0.103666666666667 1.8225 1.033 -0.130333333333333 -1.54866666666667 0.925 -0.565 0.411666666666667 -1.143 0.107666666666667 -0.408666666666667 0.973 1.6185 -0.018 1.86216666666667 1.21316666666667 0.8145 1.5585 1.54766666666667 0.588833333333333 1.49516666666667 -0.247166666666667 -0.107333333333333 -0.569666666666667 2.5045 1.08166666666667 1.15883333333333 0.697166666666667 1.70283333333333 -1.73683333333333 -0.62 0.934666666666667 0.360666666666667 0.139333333333333 0.587 0.415333333333333 1.1945 1.00733333333333 -1.27983333333333 -1.032 0.921833333333333 0.663333333333333 1.87366666666667 1.17616666666667 -0.2885 0.4495 0.628666666666667 -0.963833333333333 -0.1925 -0.941 0.9215 -0.5155 1.577 1.4225 -0.326166666666667 1.961 1.728 -0.524 -0.34 -1.01233333333333 -0.512833333333333 1.0665 -0.00666666666666669 -0.0908333333333333 0.653166666666667 -0.5795 0.105166666666667 1.34416666666667 -1.4535 0.7625 -0.4385 0.333 -1.02233333333333 -0.9625 -0.566 0.720166666666667 -0.549 0.3345 -0.728166666666667 0.519833333333333 0.304833333333333 1.6235 2.31616666666667 1.45883333333333 -1.78716666666667 -1.07483333333333 -1.68716666666667 1.19283333333333 0.494 0.813 -0.783333333333333 -0.4585 1.0045 0.668333333333333 -0.104166666666667 1.256 0.979666666666667 -0.323166666666667 0.243666666666667 -0.136333333333333 -1.5675 0.123 1.54416666666667 1.27916666666667 2.484 0.400666666666667 -1.006 -0.217166666666667 1.63716666666667 1.505 -ZHX3 23051 0.0433333333333333 -0.0436666666666667 0.4205 0.251 -1.3315 0.0598333333333333 -0.9075 -1.09066666666667 -0.183666666666667 -0.253833333333333 -0.603333333333333 -0.356666666666667 -0.549166666666667 -0.13 -0.0201666666666667 0.386333333333333 -0.450333333333333 -0.18 -0.0393333333333333 -0.471 0.08 -0.00700000000000001 -0.166166666666667 0.0711666666666667 -0.419333333333333 -0.326333333333333 -0.709 -0.234 0.416166666666667 -0.2335 -0.142166666666667 0.0315 -0.368166666666667 -0.7885 0.145333333333333 0.00833333333333335 -0.437833333333333 -0.141833333333333 -0.464 -0.333666666666667 -0.0966666666666667 -0.500166666666667 0.0106666666666667 0.478 0.00849999999999997 -0.102666666666667 0.321166666666667 -1.05916666666667 -0.432166666666667 -0.626166666666667 -0.1345 -1.35 -0.390333333333333 0.0145 -0.8165 -0.189 -1.07033333333333 -0.193166666666667 -0.361 -0.353333333333333 -0.178333333333333 -0.295 -0.419 0.382166666666667 -0.859 0.407666666666667 -0.296666666666667 -0.626666666666667 -0.0355 -0.308833333333333 -0.396833333333333 -1.23416666666667 -0.00666666666666666 -0.371166666666667 -1.482 -0.222 0.207166666666667 0.6575 -0.1385 -0.437666666666667 0.00466666666666667 0.202666666666667 -0.753 1.2275 0.019 -0.316333333333333 -0.6735 -0.2895 -0.148333333333333 0.1425 0.491333333333333 -0.359833333333333 0.406166666666667 -0.417833333333333 -0.0508333333333333 -0.0283333333333333 0.480333333333333 -0.689333333333333 -0.986 -0.198833333333333 -0.194333333333333 0.4725 -0.909333333333333 -0.2125 -0.156 -0.351166666666667 -1.45883333333333 -0.473166666666667 -0.6185 -0.2855 0.0218333333333333 0.623166666666667 0.379666666666667 -0.960333333333333 -0.493333333333333 0.108666666666667 -0.366666666666667 0.2095 0.3285 -0.454666666666667 -0.554 0.0995 0.205333333333333 0.440166666666667 -0.0261666666666667 -0.0781666666666667 -0.6125 -0.0106666666666667 -0.135666666666667 -1.07283333333333 0.555833333333333 -0.027 -0.425333333333333 -0.232 -0.0496666666666667 -0.343333333333333 0.0501666666666667 0.437666666666667 0.852833333333333 0.078 -0.673833333333333 -0.396333333333333 -0.243333333333333 0.435666666666667 0.0325 -0.0761666666666667 -0.0341666666666667 0.0371666666666667 -0.2895 0.0221666666666667 0.798166666666667 1.17716666666667 0.359666666666667 -0.562666666666667 0.228 -0.114666666666667 -0.848666666666667 -0.637166666666667 -0.447 -0.682333333333333 -0.201 0.1435 -0.728333333333333 -0.881333333333333 -0.207 -0.929833333333333 -0.139 0.186833333333333 0.247833333333333 -0.641 -0.592333333333333 -0.466166666666667 -0.4005 -0.146833333333333 -0.418833333333333 -0.798333333333333 -0.302833333333333 -0.233666666666667 -0.431333333333333 0.450833333333333 -0.354833333333333 -0.437833333333333 -0.827666666666667 -0.505833333333333 -0.678666666666667 -1.7375 -1.4125 0.333 -0.407666666666667 0.0176666666666667 -0.619666666666667 0.0193333333333334 -0.0298333333333333 -0.0976666666666667 -0.318166666666667 -0.0915 -0.814833333333333 -0.0191666666666667 -0.123666666666667 0.0315 0.383833333333333 -0.403833333333333 0.453833333333333 -0.319166666666667 -0.574833333333333 -0.221666666666667 -0.700333333333333 -1.11316666666667 -0.494333333333333 0.520333333333333 0.317833333333333 0.210833333333333 -0.389666666666667 0.7695 -0.200333333333333 -0.793333333333333 -0.166666666666667 0.1135 -0.757666666666667 -0.0121666666666667 0.662333333333333 -0.417833333333333 -0.627166666666667 0.0116666666666667 0.312333333333333 0.195666666666667 -0.819666666666667 0.104333333333333 -0.242666666666667 -0.544833333333333 -0.282333333333333 0.612833333333333 -0.486166666666667 0.596833333333333 -0.368333333333333 -1.37816666666667 0.187 0.471 -0.4125 -0.8995 -0.426 -0.62 -0.4245 -0.4465 -0.245333333333333 -0.142166666666667 0.508833333333333 0.136833333333333 0.0276666666666667 -0.5665 0.55 -0.0203333333333333 -0.637166666666667 0.170833333333333 -0.3645 -0.9975 -0.657 0.948833333333333 0.068 -0.6155 -0.562 -0.8555 -0.656333333333333 -0.260833333333333 0.304666666666667 -1.292 -0.497833333333333 0.258166666666667 -0.596666666666667 -0.317 -0.642166666666667 -0.647666666666667 -0.247333333333333 -0.127166666666667 -0.201666666666667 -0.919833333333333 -0.957666666666667 -0.0328333333333333 -0.788833333333333 -0.319666666666667 -0.761833333333333 -0.749666666666667 -0.735166666666667 -0.132166666666667 0.181666666666667 0.388166666666667 -0.299333333333333 0.282 0.428166666666667 0.477833333333333 0.248166666666667 0.156833333333333 -0.158833333333333 0.479166666666667 0.0548333333333333 -0.0673333333333333 0.1475 -0.217166666666667 0.0805 -0.1135 0.1915 -0.464333333333333 -0.0286666666666667 0.131333333333333 0.309666666666667 -0.506 0.519333333333333 -0.0186666666666667 0.0641666666666667 0.291833333333333 -0.602166666666667 -0.326333333333333 -0.636 -0.963 0.677666666666667 -0.661833333333333 -0.7665 0.0211666666666667 0.484666666666667 -0.125666666666667 -0.255333333333333 0.00966666666666667 0.566833333333333 -0.480333333333333 -0.174166666666667 0.0548333333333333 0.168833333333333 -0.246166666666667 0.358 -0.7455 -0.0595 0.319333333333333 0.0435 -0.6115 -0.391 -0.233 -0.232666666666667 -0.1275 -0.806 1.18566666666667 -1.393 -0.2595 -0.205166666666667 -0.376166666666667 -0.2425 -1.1825 -0.229333333333333 -0.5225 -0.4665 -0.391166666666667 -0.294666666666667 -0.365666666666667 -0.2735 -0.0403333333333333 -0.4205 -0.576 -0.661666666666667 -0.169333333333333 0.036 -0.320333333333333 0.167666666666667 0.056 0.00816666666666666 -0.4555 -0.306333333333333 -0.238833333333333 0.120333333333333 -1.11516666666667 0.0401666666666667 -0.826833333333333 -0.0605 -0.0683333333333333 -0.298 -0.447333333333333 -0.395333333333333 -0.43 -0.0568333333333333 -0.256333333333333 -0.357833333333333 -0.4415 0.1765 0.204666666666667 -0.205833333333333 -0.567666666666667 -1.69266666666667 0.0783333333333333 1.20216666666667 0.586166666666667 -0.755666666666667 0.1945 -0.424 -0.636333333333333 -0.0475 0.4245 -0.475166666666667 0.145333333333333 -0.006 -0.595166666666667 -0.6605 0.129333333333333 -0.566166666666667 -0.4605 -0.229 0.0978333333333333 0.102 -0.564666666666667 -0.0775 -0.418833333333333 -0.290166666666667 -0.0383333333333333 0.0245 -0.448 -0.590666666666667 -0.579833333333333 0.0601666666666667 0.212833333333333 -1.266 -0.686166666666667 -0.0358333333333333 -0.291 0.056 0.00483333333333333 0.146 0.507666666666667 0.032 -0.341333333333333 -0.598 0.291166666666667 -0.246833333333333 -1.48816666666667 -0.205333333333333 -0.4025 -0.217333333333333 0.145666666666667 0.0828333333333334 -0.658833333333333 0.118166666666667 -1.40933333333333 -0.224333333333333 -0.967333333333333 -0.284 -0.329 -0.345166666666667 -0.234166666666667 -0.558666666666667 -0.276 -0.9315 -0.6765 -1.53866666666667 0.291666666666667 -0.0246666666666667 -0.219 0.1135 -0.1135 0.176 1.15648231731787e-18 -0.538666666666667 -0.101833333333333 0.858 -0.0326666666666667 0.268166666666667 0.293 -0.408333333333333 -0.0943333333333334 -0.0911666666666667 0.743 -0.724 -0.048 -0.281166666666667 0.1775 -0.278333333333333 0.0883333333333333 -0.2 -0.181166666666667 0.5265 -1.20266666666667 -1.01283333333333 -0.1835 0.285 -1.01583333333333 0.4915 0.1485 0.3265 0.0523333333333333 -0.2865 0.333666666666667 -0.850333333333333 -0.451833333333333 -0.750166666666667 1.163 0.00866666666666667 -0.129833333333333 0.802 0.0925 -0.5065 -0.2365 -0.221166666666667 0.675833333333333 -0.04 -0.545833333333333 -0.627333333333333 -0.278333333333333 1.36166666666667 0.0543333333333333 0.103 -0.4705 -0.898 0.0783333333333333 -0.510666666666667 -0.383333333333333 -0.272833333333333 -0.0331666666666667 -0.731666666666667 -0.511 -0.272666666666667 0.9535 -0.218666666666667 -1.26566666666667 -0.342666666666667 0.1985 -0.458166666666667 0.604333333333333 -0.852833333333333 -0.569166666666667 -0.101833333333333 0.0931666666666667 -ERCC5 2073 -0.10725 -0.2385 0.00725 0.03525 0.791 -0.17725 -0.1365 -0.56675 0.46675 0.423 0.1915 -0.3015 1.1275 -0.753 0.658 0.51975 -0.09975 0.555 0.2145 -0.698 0.48725 0.68825 0.09675 -1.143 -0.43 0.027 -0.2095 0.312 0.42225 0.73025 0.0205 -0.971 0.17325 0.6425 0.05725 -0.13325 0.43375 0.17825 -0.02 0.00350000000000001 0.424 -0.029 -0.467 -0.4125 0.059 0.0275 0.50625 0.5415 -0.00225 -0.76125 -0.15025 0.432 -0.00125 0.22125 -0.389 -0.31475 0.24275 0.531 0.2065 0.10925 0.11375 0.23575 0.41175 -0.46375 0.57175 -0.425 -0.22125 -0.05325 -0.3155 0.477 0.06775 -0.17725 -1.016 -0.33 0.34225 0.29075 0.4295 -0.68175 -0.0045 0.94825 0.1835 -0.61925 -0.01225 -0.7125 -0.415 -0.65625 0.29575 0.0335 -0.55825 -0.90075 -0.6455 1.1105 0.7045 -0.2015 -0.09525 -0.32325 -0.932 -0.925 0.30525 0.01925 -0.73925 -0.4025 0.30875 0.48075 -0.82875 -1.51125 -1.3415 0.0975 0.201 -0.27675 -0.7365 -0.336 -0.23675 -0.02725 0.532 0.593 -0.8755 -0.6995 0.2845 -0.00999999999999999 0.09875 -0.416 0.37825 0.3615 0.892 0.45625 0.1975 -0.3145 -0.237 -0.5685 -0.17825 0.312 -0.691 0.1375 -0.5595 0.224 -0.92675 -0.15425 -0.30875 0.29425 0.31175 -0.01775 -0.29525 0.27025 -0.05075 0.91825 -0.11625 -0.0285 -0.26275 -0.81925 -0.209 0.4065 -0.0265 -0.77875 -0.1775 0.19425 0.39125 -0.08175 0.01025 0.72825 0.75325 -0.19625 -0.436 0.07675 0.0105 0.04075 -0.1035 -0.40025 -0.8415 0.18925 0.8825 0.06375 0.30425 -0.33125 -0.0625 1.1855 -0.84175 0.45525 0.47325 0.5185 0.4565 0.193 -0.6935 0.47525 0.286 0.58275 0.12175 0.07925 0.492 -0.096 1.23475 0.224 0.49575 0.887 0.399 -0.02225 -1.13675 0.011 -0.3955 -0.0645 0.4825 0.4785 0.43075 0.8375 -0.0495 0.12275 0.01725 -0.018 -0.246 0.12425 -0.61975 0.42975 -0.10775 0.752 0.22925 1.2405 0.104 0.06175 -0.22975 0.44 -0.792 0.449 0.46775 -0.017 0.18125 1.94175 1.2005 -0.274 -0.385 -0.2285 0.61025 -0.83925 -0.096 -0.19825 -0.36125 0.18775 0.87075 0.82475 -0.0795 0.61975 0.4035 0.000499999999999994 0.37825 0.6855 -0.446 -0.96275 -0.24075 0.92325 -0.82075 1.1945 0.000750000000000004 -0.12325 0.10025 -0.0695 -0.296 0.58575 -0.0555 -0.85825 0.05325 -0.43525 0.25675 -0.55725 -0.4905 0.4315 -0.6865 0.4325 -0.96425 -0.1055 -0.74475 -0.09975 -0.04175 1.14075 -0.039 0.03275 0.356 0.31875 -0.16775 0.2005 0.086 -0.36675 -0.041 0.0615 -0.000499999999999997 0.03525 0.27975 0.67325 0.738 -0.64125 -0.139 -0.031 0.4665 0.3335 0.03475 0.53075 0.24775 0.2905 0.53475 -0.4755 0.23175 0.99575 0.12275 -0.30425 -0.259 0.5735 0.38875 -0.0445 -0.553 -0.024 -0.06175 -0.02575 -0.3205 0.48725 0.34875 0.877 0.08825 0.029 -0.487 0.71825 -0.54225 -0.14725 -0.12375 0.15825 0.445 0.32475 -0.43975 0.53225 -0.741 0.60375 -0.26825 -0.01675 -0.1055 -0.07125 0.67575 0.26925 -0.742 -0.33375 -0.48875 0.2825 -0.26825 -0.81825 0.76625 -0.1485 -0.4765 -0.13475 0.434 0.087 -0.5675 0.06825 0.53825 -0.1995 -0.3095 0.31575 -0.3845 0.9395 -0.298 -0.236 -0.43525 -0.58375 -0.4505 -0.32075 0.41925 1.33825 -1.3815 0.5595 0.38425 -0.51075 0.18525 0.04125 0.02675 0.253 -0.1065 -0.0735 0.07025 0.16425 0.195 0.04725 0.46625 0.1325 0.86375 0.637 -0.000749999999999999 -0.0275 0.168 0.6915 0.174 -0.26475 -0.5495 -0.46175 -0.56575 0.6595 0.51725 0.36 -0.5345 -0.2325 -0.33625 -0.34775 -0.44825 0.323 0.2365 0.24525 -0.2555 -0.32225 0.4255 0.239 -0.32 0.15725 -0.57325 0.1085 -0.31 -0.26075 0.17525 0.762 -0.24475 -0.73125 0.27975 0.58575 0.09325 0.137 0.13975 -0.41125 -0.3295 -0.04375 0.126 0.23725 0.675 0.18175 -0.3285 -0.009 -0.80975 0.52325 -0.27475 0.21675 0.491 0.27025 -0.3395 -0.37875 0.08425 0.25875 0.30625 0.47025 0.25025 -0.902 -0.76775 0.41375 -0.4555 -0.1345 0.43075 -0.82575 -0.173 -0.66225 -0.00525 -0.43725 0.207 0.371 0.48325 0.40125 -0.64975 -0.00525000000000002 0.9705 0.282 -0.5695 0.1985 1.1405 0.04475 -0.418 -0.45 -0.1535 0.409 0.567 -0.51825 -0.182 -0.0695 0.012 -0.0605 -0.12925 0.0405 -0.11725 0.381 -0.281 0.205 -0.16475 0.29675 -0.164 0.095 0.065 -0.103 -0.17475 0.276 1.03675 0.17625 0.536 -0.103 0.436 0.491 -0.2995 0.065 -0.6105 -0.7055 0.5385 0.53775 -0.98125 0.168 0.2745 -0.083 0.16225 0.13575 -0.022 0.4595 0.65675 1.045 -0.124 -0.07 0.15975 -0.26125 -0.02725 -1.1205 -0.40575 -0.1075 -0.05475 -0.27925 0.903 0.7085 1.27775 0.917 0.4055 1.32325 diff --git a/core/src/test/scripts/test_data/study_es_1/data_samples.txt b/core/src/test/scripts/test_data/study_es_1/data_samples.txt deleted file mode 100644 index fa1b1f23fc9..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/data_samples.txt +++ /dev/null @@ -1,831 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Days to Sample Collection. -#Patient identifier Sample identifier Subtype description Days to sample collection. -#STRING STRING STRING STRING -#1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE DAYS_TO_COLLECTION -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like 1 -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like 1 -TCGA-A2-A0CM TCGA-A2-A0CM-01 basal-like spam -TCGA-AR-A1AR TCGA-AR-A1AR-01 basal-like 1 -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like 1 -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like 1 -TCGA-B6-A0I6 TCGA-B6-A0I6-01 NA 1 -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like 1 -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like 1 -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like 1 -TCGA-BH-A0HL TCGA-BH-A0HL-01 NA 1 -TCGA-BH-A0E0 TCGA-BH-A0E0-01 basal-like 1 -TCGA-BH-A0RX TCGA-BH-A0RX-01 basal-like 1 -TCGA-A7-A13D TCGA-A7-A13D-01 basal-like 1 -TCGA-BH-A0E6 TCGA-BH-A0E6-01 basal-like 1 -TCGA-AO-A0J4 TCGA-AO-A0J4-01 basal-like 1 -TCGA-A7-A0CE TCGA-A7-A0CE-01 basal-like 1 -TCGA-A7-A13E TCGA-A7-A13E-01 NA 1 -TCGA-A7-A0DA TCGA-A7-A0DA-01 basal-like 1 -TCGA-D8-A142 TCGA-D8-A142-01 basal-like 1 -TCGA-D8-A143 TCGA-D8-A143-01 NA 1 -TCGA-AQ-A04J TCGA-AQ-A04J-01 basal-like 1 -TCGA-BH-A0HN TCGA-BH-A0HN-01 NA 1 -TCGA-A2-A0T0 TCGA-A2-A0T0-01 basal-like 1 -TCGA-A2-A0YE TCGA-A2-A0YE-01 NA 1 -TCGA-A2-A0YJ TCGA-A2-A0YJ-01 NA 1 -TCGA-A2-A0D0 TCGA-A2-A0D0-01 basal-like 1 -TCGA-A2-A04U TCGA-A2-A04U-01 NA 1 -TCGA-AO-A0J6 TCGA-AO-A0J6-01 basal-like 1 -TCGA-A2-A0YM TCGA-A2-A0YM-01 basal-like 1 -TCGA-A2-A0D2 TCGA-A2-A0D2-01 basal-like 1 -TCGA-BH-A0B3 TCGA-BH-A0B3-01 basal-like 1 -TCGA-A2-A04Q TCGA-A2-A04Q-01 basal-like 1 -TCGA-A2-A0SX TCGA-A2-A0SX-01 basal-like 1 -TCGA-AO-A0JL TCGA-AO-A0JL-01 basal-like 1 -TCGA-AO-A12F TCGA-AO-A12F-01 basal-like 1 -TCGA-BH-A0B9 TCGA-BH-A0B9-01 basal-like 1 -TCGA-A2-A04T TCGA-A2-A04T-01 NA 1 -TCGA-B6-A0RT TCGA-B6-A0RT-01 basal-like 1 -TCGA-AO-A128 TCGA-AO-A128-01 NA 1 -TCGA-AO-A129 TCGA-AO-A129-01 basal-like 1 -TCGA-AO-A124 TCGA-AO-A124-01 basal-like 1 -TCGA-B6-A0RU TCGA-B6-A0RU-01 basal-like 1 -TCGA-B6-A0IQ TCGA-B6-A0IQ-01 basal-like 1 -TCGA-B6-A0I2 TCGA-B6-A0I2-01 basal-like 1 -TCGA-B6-A0IJ TCGA-B6-A0IJ-01 basal-like 1 -TCGA-B6-A0X1 TCGA-B6-A0X1-01 NA 1 -TCGA-B6-A0RE TCGA-B6-A0RE-01 basal-like 1 -TCGA-A2-A0ST TCGA-A2-A0ST-01 basal-like 1 -TCGA-AR-A0TP TCGA-AR-A0TP-01 basal-like 1 -TCGA-A1-A0SO TCGA-A1-A0SO-01 basal-like 1 -TCGA-A8-A07C TCGA-A8-A07C-01 basal-like 1 -TCGA-A8-A07O TCGA-A8-A07O-01 basal-like 1 -TCGA-A8-A07R TCGA-A8-A07R-01 basal-like 1 -TCGA-A8-A07U TCGA-A8-A07U-01 basal-like 1 -TCGA-A8-A08H TCGA-A8-A08H-01 basal-like 1 -TCGA-A8-A08R TCGA-A8-A08R-01 basal-like 1 -TCGA-AN-A04D TCGA-AN-A04D-01 basal-like 1 -TCGA-AN-A0AL TCGA-AN-A0AL-01 basal-like 1 -TCGA-AN-A0AR TCGA-AN-A0AR-01 basal-like 1 -TCGA-AN-A0AT TCGA-AN-A0AT-01 NA 1 -TCGA-AN-A0FJ TCGA-AN-A0FJ-01 basal-like 1 -TCGA-AN-A0FL TCGA-AN-A0FL-01 basal-like 1 -TCGA-AN-A0FX TCGA-AN-A0FX-01 basal-like 1 -TCGA-AN-A0G0 TCGA-AN-A0G0-01 NA 1 -TCGA-AN-A0XU TCGA-AN-A0XU-01 basal-like 1 -TCGA-AR-A0TS TCGA-AR-A0TS-01 basal-like 1 -TCGA-AR-A0TU TCGA-AR-A0TU-01 NA 1 -TCGA-AR-A0U0 TCGA-AR-A0U0-01 NA 1 -TCGA-AR-A0U1 TCGA-AR-A0U1-01 basal-like 1 -TCGA-AR-A0U4 TCGA-AR-A0U4-01 basal-like 1 -TCGA-AR-A1AH TCGA-AR-A1AH-01 basal-like 1 -TCGA-AR-A1AI TCGA-AR-A1AI-01 basal-like 1 -TCGA-AR-A1AJ TCGA-AR-A1AJ-01 basal-like 1 -TCGA-AR-A1AQ TCGA-AR-A1AQ-01 basal-like 1 -TCGA-AR-A1AY TCGA-AR-A1AY-01 basal-like 1 -TCGA-BH-A0AV TCGA-BH-A0AV-01 basal-like 1 -TCGA-BH-A0BG TCGA-BH-A0BG-01 basal-like 1 -TCGA-BH-A0BL TCGA-BH-A0BL-01 basal-like 1 -TCGA-BH-A0BW TCGA-BH-A0BW-01 basal-like 1 -TCGA-BH-A0DL TCGA-BH-A0DL-01 basal-like 1 -TCGA-BH-A0WA TCGA-BH-A0WA-01 basal-like 1 -TCGA-BH-A18G TCGA-BH-A18G-01 NA 1 -TCGA-C8-A12K TCGA-C8-A12K-01 basal-like 1 -TCGA-C8-A12V TCGA-C8-A12V-01 basal-like 1 -TCGA-C8-A131 TCGA-C8-A131-01 basal-like 1 -TCGA-C8-A134 TCGA-C8-A134-01 basal-like 1 -TCGA-D8-A147 TCGA-D8-A147-01 basal-like 1 -TCGA-E2-A14N TCGA-E2-A14N-01 basal-like 1 -TCGA-E2-A14R TCGA-E2-A14R-01 basal-like 1 -TCGA-E2-A14X TCGA-E2-A14X-01 basal-like 1 -TCGA-E2-A14Y TCGA-E2-A14Y-01 basal-like 1 -TCGA-E2-A150 TCGA-E2-A150-01 basal-like 1 -TCGA-E2-A158 TCGA-E2-A158-01 basal-like 1 -TCGA-E2-A159 TCGA-E2-A159-01 basal-like 1 -TCGA-E2-A1AZ TCGA-E2-A1AZ-01 NA 1 -TCGA-E2-A1B5 TCGA-E2-A1B5-01 basal-like 1 -TCGA-A8-A08L TCGA-A8-A08L-01 Her2 enriched 1 -TCGA-BH-A1EV TCGA-BH-A1EV-01 Her2 enriched 1 -TCGA-B6-A0I9 TCGA-B6-A0I9-01 Her2 enriched 1 -TCGA-A8-A09X TCGA-A8-A09X-01 Her2 enriched 1 -TCGA-B6-A0IK TCGA-B6-A0IK-01 Her2 enriched 1 -TCGA-BH-A18P TCGA-BH-A18P-01 Her2 enriched 1 -TCGA-A8-A08J TCGA-A8-A08J-01 Her2 enriched 1 -TCGA-BH-A18R TCGA-BH-A18R-01 Her2 enriched 1 -TCGA-AR-A1AT TCGA-AR-A1AT-01 Her2 enriched 1 -TCGA-B6-A0RS TCGA-B6-A0RS-01 Her2 enriched 1 -TCGA-BH-A0DZ TCGA-BH-A0DZ-01 Her2 enriched 1 -TCGA-A2-A0T1 TCGA-A2-A0T1-01 Her2 enriched 1 -TCGA-AO-A0J2 TCGA-AO-A0J2-01 Her2 enriched 1 -TCGA-BH-A0AW TCGA-BH-A0AW-01 Her2 enriched 1 -TCGA-BH-A0EE TCGA-BH-A0EE-01 Her2 enriched 1 -TCGA-A2-A0D1 TCGA-A2-A0D1-01 Her2 enriched 1 -TCGA-AO-A03N TCGA-AO-A03N-01 Her2 enriched 1 -TCGA-A2-A0CY TCGA-A2-A0CY-01 Her2 enriched 1 -TCGA-A2-A04X TCGA-A2-A04X-01 Her2 enriched 1 -TCGA-A2-A0CX TCGA-A2-A0CX-01 Her2 enriched 1 -TCGA-A2-A04W TCGA-A2-A04W-01 Her2 enriched 1 -TCGA-AO-A12D TCGA-AO-A12D-01 Her2 enriched 1 -TCGA-A2-A0CL TCGA-A2-A0CL-01 Her2 enriched 1 -TCGA-AO-A0JE TCGA-AO-A0JE-01 Her2 enriched 1 -TCGA-A2-A0EQ TCGA-A2-A0EQ-01 Her2 enriched 1 -TCGA-AO-A03L TCGA-AO-A03L-01 Her2 enriched 1 -TCGA-B6-A0RH TCGA-B6-A0RH-01 Her2 enriched 1 -TCGA-A8-A075 TCGA-A8-A075-01 Her2 enriched 1 -TCGA-A8-A076 TCGA-A8-A076-01 Her2 enriched 1 -TCGA-A8-A07B TCGA-A8-A07B-01 Her2 enriched 1 -TCGA-A8-A07I TCGA-A8-A07I-01 Her2 enriched 1 -TCGA-A8-A081 TCGA-A8-A081-01 Her2 enriched 1 -TCGA-A8-A08B TCGA-A8-A08B-01 Her2 enriched 1 -TCGA-A8-A08X TCGA-A8-A08X-01 Her2 enriched 1 -TCGA-A8-A092 TCGA-A8-A092-01 Her2 enriched 1 -TCGA-A8-A094 TCGA-A8-A094-01 Her2 enriched 1 -TCGA-A8-A09G TCGA-A8-A09G-01 Her2 enriched 1 -TCGA-A8-A0A7 TCGA-A8-A0A7-01 Her2 enriched 1 -TCGA-AN-A04C TCGA-AN-A04C-01 Her2 enriched 1 -TCGA-AN-A0FV TCGA-AN-A0FV-01 Her2 enriched 1 -TCGA-AR-A0TX TCGA-AR-A0TX-01 Her2 enriched 1 -TCGA-BH-A0B7 TCGA-BH-A0B7-01 Her2 enriched 1 -TCGA-BH-A0HY TCGA-BH-A0HY-01 Her2 enriched 1 -TCGA-C8-A12L TCGA-C8-A12L-01 Her2 enriched 1 -TCGA-C8-A12P TCGA-C8-A12P-01 Her2 enriched 1 -TCGA-C8-A12Q TCGA-C8-A12Q-01 Her2 enriched 1 -TCGA-C8-A12T TCGA-C8-A12T-01 Her2 enriched 1 -TCGA-C8-A12Z TCGA-C8-A12Z-01 Her2 enriched 1 -TCGA-C8-A130 TCGA-C8-A130-01 Her2 enriched 1 -TCGA-C8-A135 TCGA-C8-A135-01 Her2 enriched 1 -TCGA-C8-A137 TCGA-C8-A137-01 Her2 enriched 1 -TCGA-C8-A138 TCGA-C8-A138-01 Her2 enriched 1 -TCGA-C8-A1HF TCGA-C8-A1HF-01 Her2 enriched 1 -TCGA-D8-A13Z TCGA-D8-A13Z-01 Her2 enriched 1 -TCGA-E2-A14P TCGA-E2-A14P-01 Her2 enriched 1 -TCGA-E2-A14V TCGA-E2-A14V-01 Her2 enriched 1 -TCGA-E2-A152 TCGA-E2-A152-01 Her2 enriched 1 -TCGA-E2-A1B0 TCGA-E2-A1B0-01 Her2 enriched 1 -TCGA-A2-A0CU TCGA-A2-A0CU-01 Luminal A 1 -TCGA-AR-A0TR TCGA-AR-A0TR-01 Luminal A 1 -TCGA-BH-A18T TCGA-BH-A18T-01 Luminal A 1 -TCGA-B6-A0I8 TCGA-B6-A0I8-01 Luminal A 1 -TCGA-B6-A0X4 TCGA-B6-A0X4-01 Luminal A 1 -TCGA-A8-A06U TCGA-A8-A06U-01 Luminal A 1 -TCGA-BH-A0EA TCGA-BH-A0EA-01 Luminal A 1 -TCGA-BH-A18N TCGA-BH-A18N-01 Luminal A 1 -TCGA-BH-A1EU TCGA-BH-A1EU-01 Luminal A 1 -TCGA-B6-A0X7 TCGA-B6-A0X7-01 Luminal A 1 -TCGA-A2-A04V TCGA-A2-A04V-01 Luminal A 1 -TCGA-BH-A18S TCGA-BH-A18S-01 Luminal A 1 -TCGA-BH-A18M TCGA-BH-A18M-01 Luminal A 1 -TCGA-B6-A0RM TCGA-B6-A0RM-01 Luminal A 1 -TCGA-BH-A1ET TCGA-BH-A1ET-01 Luminal A 1 -TCGA-B6-A0IN TCGA-B6-A0IN-01 Luminal A 1 -TCGA-BH-A1EO TCGA-BH-A1EO-01 Luminal A 1 -TCGA-B6-A0WS TCGA-B6-A0WS-01 Luminal A 1 -TCGA-B6-A0RP TCGA-B6-A0RP-01 Luminal A 1 -TCGA-B6-A0IH TCGA-B6-A0IH-01 Luminal A 1 -TCGA-B6-A0WY TCGA-B6-A0WY-01 Luminal A 1 -TCGA-BH-A1ES TCGA-BH-A1ES-01 Luminal A 1 -TCGA-B6-A0X0 TCGA-B6-A0X0-01 Luminal A 1 -TCGA-B6-A0RQ TCGA-B6-A0RQ-01 Luminal A 1 -TCGA-B6-A0IG TCGA-B6-A0IG-01 Luminal A 1 -TCGA-BH-A0HO TCGA-BH-A0HO-01 Luminal A 1 -TCGA-BH-A0DS TCGA-BH-A0DS-01 Luminal A 1 -TCGA-BH-A0DQ TCGA-BH-A0DQ-01 Luminal A 1 -TCGA-BH-A0HK TCGA-BH-A0HK-01 Luminal A 1 -TCGA-A7-A0CG TCGA-A7-A0CG-01 Luminal A 1 -TCGA-A7-A0CH TCGA-A7-A0CH-01 Luminal A 1 -TCGA-A7-A0DB TCGA-A7-A0DB-01 Luminal A 1 -TCGA-A7-A0D9 TCGA-A7-A0D9-01 Luminal A 1 -TCGA-AO-A0J8 TCGA-AO-A0J8-01 Luminal A 1 -TCGA-BH-A0GZ TCGA-BH-A0GZ-01 Luminal A 1 -TCGA-AO-A0JA TCGA-AO-A0JA-01 Luminal A 1 -TCGA-AO-A0JF TCGA-AO-A0JF-01 Luminal A 1 -TCGA-A7-A0CD TCGA-A7-A0CD-01 Luminal A 1 -TCGA-D8-A145 TCGA-D8-A145-01 Luminal A 1 -TCGA-BH-A0HP TCGA-BH-A0HP-01 Luminal A 1 -TCGA-BH-A0DK TCGA-BH-A0DK-01 Luminal A 1 -TCGA-BH-A0E2 TCGA-BH-A0E2-01 Luminal A 1 -TCGA-A2-A0YI TCGA-A2-A0YI-01 Luminal A 1 -TCGA-A2-A0YL TCGA-A2-A0YL-01 Luminal A 1 -TCGA-AO-A0JG TCGA-AO-A0JG-01 Luminal A 1 -TCGA-A2-A0YF TCGA-A2-A0YF-01 Luminal A 1 -TCGA-BH-A0DP TCGA-BH-A0DP-01 Luminal A 1 -TCGA-BH-A0E1 TCGA-BH-A0E1-01 Luminal A 1 -TCGA-A2-A0T5 TCGA-A2-A0T5-01 Luminal A 1 -TCGA-A2-A0T6 TCGA-A2-A0T6-01 Luminal A 1 -TCGA-BH-A0HI TCGA-BH-A0HI-01 Luminal A 1 -TCGA-A2-A0T7 TCGA-A2-A0T7-01 Luminal A 1 -TCGA-BH-A0BJ TCGA-BH-A0BJ-01 Luminal A 1 -TCGA-BH-A0H7 TCGA-BH-A0H7-01 Luminal A 1 -TCGA-BH-A0HF TCGA-BH-A0HF-01 Luminal A 1 -TCGA-BH-A0EB TCGA-BH-A0EB-01 Luminal A 1 -TCGA-BH-A0H6 TCGA-BH-A0H6-01 Luminal A 1 -TCGA-A2-A0YD TCGA-A2-A0YD-01 Luminal A 1 -TCGA-BH-A0HB TCGA-BH-A0HB-01 Luminal A 1 -TCGA-BH-A0HX TCGA-BH-A0HX-01 Luminal A 1 -TCGA-AO-A12H TCGA-AO-A12H-01 Luminal A 1 -TCGA-E2-A10E TCGA-E2-A10E-01 Luminal A 1 -TCGA-A2-A0D3 TCGA-A2-A0D3-01 Luminal A 1 -TCGA-E2-A10F TCGA-E2-A10F-01 Luminal A 1 -TCGA-AO-A03V TCGA-AO-A03V-01 Luminal A 1 -TCGA-A2-A0EW TCGA-A2-A0EW-01 Luminal A 1 -TCGA-BH-A0GY TCGA-BH-A0GY-01 Luminal A 1 -TCGA-A2-A0EV TCGA-A2-A0EV-01 Luminal A 1 -TCGA-BH-A0BC TCGA-BH-A0BC-01 Luminal A 1 -TCGA-A2-A0YC TCGA-A2-A0YC-01 Luminal A 1 -TCGA-A2-A0EU TCGA-A2-A0EU-01 Luminal A 1 -TCGA-A2-A0ET TCGA-A2-A0ET-01 Luminal A 1 -TCGA-A2-A04Y TCGA-A2-A04Y-01 Luminal A 1 -TCGA-BH-A0HQ TCGA-BH-A0HQ-01 Luminal A 1 -TCGA-A2-A0ES TCGA-A2-A0ES-01 Luminal A 1 -TCGA-BH-A0BA TCGA-BH-A0BA-01 Luminal A 1 -TCGA-E2-A10B TCGA-E2-A10B-01 Luminal A 1 -TCGA-BH-A0B1 TCGA-BH-A0B1-01 Luminal A 1 -TCGA-BH-A0DH TCGA-BH-A0DH-01 Luminal A 1 -TCGA-BH-A0B4 TCGA-BH-A0B4-01 Luminal A 1 -TCGA-BH-A0H9 TCGA-BH-A0H9-01 Luminal A 1 -TCGA-AO-A0J9 TCGA-AO-A0J9-01 Luminal A 1 -TCGA-AO-A12G TCGA-AO-A12G-01 Luminal A 1 -TCGA-A2-A0SY TCGA-A2-A0SY-01 Luminal A 1 -TCGA-BH-A0E7 TCGA-BH-A0E7-01 Luminal A 1 -TCGA-AO-A03M TCGA-AO-A03M-01 Luminal A 1 -TCGA-BH-A0BV TCGA-BH-A0BV-01 Luminal A 1 -TCGA-BH-A0B8 TCGA-BH-A0B8-01 Luminal A 1 -TCGA-A2-A0CZ TCGA-A2-A0CZ-01 Luminal A 1 -TCGA-A2-A0SU TCGA-A2-A0SU-01 Luminal A 1 -TCGA-AO-A12E TCGA-AO-A12E-01 Luminal A 1 -TCGA-E2-A106 TCGA-E2-A106-01 Luminal A 1 -TCGA-A2-A0CV TCGA-A2-A0CV-01 Luminal A 1 -TCGA-AO-A12C TCGA-AO-A12C-01 Luminal A 1 -TCGA-B6-A0RG TCGA-B6-A0RG-01 Luminal A 1 -TCGA-A2-A0CS TCGA-A2-A0CS-01 Luminal A 1 -TCGA-A2-A0EO TCGA-A2-A0EO-01 Luminal A 1 -TCGA-A2-A0CQ TCGA-A2-A0CQ-01 Luminal A 1 -TCGA-A2-A0EN TCGA-A2-A0EN-01 Luminal A 1 -TCGA-AO-A12A TCGA-AO-A12A-01 Luminal A 1 -TCGA-A2-A0CP TCGA-A2-A0CP-01 Luminal A 1 -TCGA-AO-A126 TCGA-AO-A126-01 Luminal A 1 -TCGA-AO-A125 TCGA-AO-A125-01 Luminal A 1 -TCGA-A2-A0EM TCGA-A2-A0EM-01 Luminal A 1 -TCGA-A2-A04N TCGA-A2-A04N-01 Luminal A 1 -TCGA-AQ-A04L TCGA-AQ-A04L-01 Luminal A 1 -TCGA-B6-A0IO TCGA-B6-A0IO-01 Luminal A 1 -TCGA-B6-A0IP TCGA-B6-A0IP-01 Luminal A 1 -TCGA-B6-A0WZ TCGA-B6-A0WZ-01 Luminal A 1 -TCGA-B6-A0I5 TCGA-B6-A0I5-01 Luminal A 1 -TCGA-B6-A0RV TCGA-B6-A0RV-01 Luminal A 1 -TCGA-B6-A0RO TCGA-B6-A0RO-01 Luminal A 1 -TCGA-B6-A0RN TCGA-B6-A0RN-01 Luminal A 1 -TCGA-B6-A0WT TCGA-B6-A0WT-01 Luminal A 1 -TCGA-B6-A0IA TCGA-B6-A0IA-01 Luminal A 1 -TCGA-B6-A0RI TCGA-B6-A0RI-01 Luminal A 1 -TCGA-A1-A0SE TCGA-A1-A0SE-01 Luminal A 1 -TCGA-A2-A0EX TCGA-A2-A0EX-01 Luminal A 1 -TCGA-AO-A0JJ TCGA-AO-A0JJ-01 Luminal A 1 -TCGA-E2-A105 TCGA-E2-A105-01 Luminal A 1 -TCGA-A1-A0SD TCGA-A1-A0SD-01 Luminal A 1 -TCGA-A1-A0SH TCGA-A1-A0SH-01 Luminal A 1 -TCGA-A1-A0SJ TCGA-A1-A0SJ-01 Luminal A 1 -TCGA-A8-A06P TCGA-A8-A06P-01 Luminal A 1 -TCGA-A8-A06T TCGA-A8-A06T-01 Luminal A 1 -TCGA-A8-A06Y TCGA-A8-A06Y-01 Luminal A 1 -TCGA-A8-A07E TCGA-A8-A07E-01 Luminal A 1 -TCGA-A8-A07F TCGA-A8-A07F-01 Luminal A 1 -TCGA-A8-A07G TCGA-A8-A07G-01 Luminal A 1 -TCGA-A8-A07J TCGA-A8-A07J-01 Luminal A 1 -TCGA-A8-A07P TCGA-A8-A07P-01 Luminal A 1 -TCGA-A8-A083 TCGA-A8-A083-01 Luminal A 1 -TCGA-A8-A086 TCGA-A8-A086-01 Luminal A 1 -TCGA-A8-A08A TCGA-A8-A08A-01 Luminal A 1 -TCGA-A8-A08C TCGA-A8-A08C-01 Luminal A 1 -TCGA-A8-A08O TCGA-A8-A08O-01 Luminal A 1 -TCGA-A8-A08T TCGA-A8-A08T-01 Luminal A 1 -TCGA-A8-A08Z TCGA-A8-A08Z-01 Luminal A 1 -TCGA-A8-A090 TCGA-A8-A090-01 Luminal A 1 -TCGA-A8-A091 TCGA-A8-A091-01 Luminal A 1 -TCGA-A8-A093 TCGA-A8-A093-01 Luminal A 1 -TCGA-A8-A099 TCGA-A8-A099-01 Luminal A 1 -TCGA-A8-A09A TCGA-A8-A09A-01 Luminal A 1 -TCGA-A8-A09B TCGA-A8-A09B-01 Luminal A 1 -TCGA-A8-A09T TCGA-A8-A09T-01 Luminal A 1 -TCGA-A8-A09V TCGA-A8-A09V-01 Luminal A 1 -TCGA-A8-A0A1 TCGA-A8-A0A1-01 Luminal A 1 -TCGA-A8-A0A2 TCGA-A8-A0A2-01 Luminal A 1 -TCGA-A8-A0A4 TCGA-A8-A0A4-01 Luminal A 1 -TCGA-A8-A0A6 TCGA-A8-A0A6-01 Luminal A 1 -TCGA-A8-A0AD TCGA-A8-A0AD-01 Luminal A 1 -TCGA-AN-A03X TCGA-AN-A03X-01 Luminal A 1 -TCGA-AN-A046 TCGA-AN-A046-01 Luminal A 1 -TCGA-AN-A04A TCGA-AN-A04A-01 Luminal A 1 -TCGA-AN-A0FD TCGA-AN-A0FD-01 Luminal A 1 -TCGA-AN-A0FN TCGA-AN-A0FN-01 Luminal A 1 -TCGA-AN-A0FS TCGA-AN-A0FS-01 Luminal A 1 -TCGA-AN-A0FT TCGA-AN-A0FT-01 Luminal A 1 -TCGA-AN-A0FW TCGA-AN-A0FW-01 Luminal A 1 -TCGA-AN-A0FZ TCGA-AN-A0FZ-01 Luminal A 1 -TCGA-AN-A0XL TCGA-AN-A0XL-01 Luminal A 1 -TCGA-AN-A0XN TCGA-AN-A0XN-01 Luminal A 1 -TCGA-AN-A0XO TCGA-AN-A0XO-01 Luminal A 1 -TCGA-AN-A0XP TCGA-AN-A0XP-01 Luminal A 1 -TCGA-AN-A0XS TCGA-AN-A0XS-01 Luminal A 1 -TCGA-AN-A0XT TCGA-AN-A0XT-01 Luminal A 1 -TCGA-AN-A0XV TCGA-AN-A0XV-01 Luminal A 1 -TCGA-AR-A0TW TCGA-AR-A0TW-01 Luminal A 1 -TCGA-AR-A1AK TCGA-AR-A1AK-01 Luminal A 1 -TCGA-AR-A1AL TCGA-AR-A1AL-01 Luminal A 1 -TCGA-AR-A1AN TCGA-AR-A1AN-01 Luminal A 1 -TCGA-AR-A1AP TCGA-AR-A1AP-01 Luminal A 1 -TCGA-AR-A1AS TCGA-AR-A1AS-01 Luminal A 1 -TCGA-AR-A1AU TCGA-AR-A1AU-01 Luminal A 1 -TCGA-AR-A1AW TCGA-AR-A1AW-01 Luminal A 1 -TCGA-AR-A1AX TCGA-AR-A1AX-01 Luminal A 1 -TCGA-BH-A0AZ TCGA-BH-A0AZ-01 Luminal A 1 -TCGA-BH-A0B0 TCGA-BH-A0B0-01 Luminal A 1 -TCGA-BH-A0BM TCGA-BH-A0BM-01 Luminal A 1 -TCGA-BH-A0BO TCGA-BH-A0BO-01 Luminal A 1 -TCGA-BH-A0BP TCGA-BH-A0BP-01 Luminal A 1 -TCGA-BH-A0BQ TCGA-BH-A0BQ-01 Luminal A 1 -TCGA-BH-A0BR TCGA-BH-A0BR-01 Luminal A 1 -TCGA-BH-A0BS TCGA-BH-A0BS-01 Luminal A 1 -TCGA-BH-A0BT TCGA-BH-A0BT-01 Luminal A 1 -TCGA-BH-A0C1 TCGA-BH-A0C1-01 Luminal A 1 -TCGA-BH-A0DE TCGA-BH-A0DE-01 Luminal A 1 -TCGA-BH-A0DG TCGA-BH-A0DG-01 Luminal A 1 -TCGA-BH-A0DI TCGA-BH-A0DI-01 Luminal A 1 -TCGA-BH-A0DO TCGA-BH-A0DO-01 Luminal A 1 -TCGA-BH-A0DT TCGA-BH-A0DT-01 Luminal A 1 -TCGA-BH-A0DX TCGA-BH-A0DX-01 Luminal A 1 -TCGA-BH-A0E9 TCGA-BH-A0E9-01 Luminal A 1 -TCGA-BH-A0EI TCGA-BH-A0EI-01 Luminal A 1 -TCGA-BH-A0H3 TCGA-BH-A0H3-01 Luminal A 1 -TCGA-BH-A0H5 TCGA-BH-A0H5-01 Luminal A 1 -TCGA-BH-A0HA TCGA-BH-A0HA-01 Luminal A 1 -TCGA-BH-A0W4 TCGA-BH-A0W4-01 Luminal A 1 -TCGA-BH-A0W5 TCGA-BH-A0W5-01 Luminal A 1 -TCGA-BH-A0W7 TCGA-BH-A0W7-01 Luminal A 1 -TCGA-BH-A18H TCGA-BH-A18H-01 Luminal A 1 -TCGA-BH-A18I TCGA-BH-A18I-01 Luminal A 1 -TCGA-C8-A12N TCGA-C8-A12N-01 Luminal A 1 -TCGA-C8-A12O TCGA-C8-A12O-01 Luminal A 1 -TCGA-C8-A12Y TCGA-C8-A12Y-01 Luminal A 1 -TCGA-C8-A132 TCGA-C8-A132-01 Luminal A 1 -TCGA-C8-A133 TCGA-C8-A133-01 Luminal A 1 -TCGA-C8-A1HI TCGA-C8-A1HI-01 Luminal A 1 -TCGA-D8-A141 TCGA-D8-A141-01 Luminal A 1 -TCGA-E2-A14Q TCGA-E2-A14Q-01 Luminal A 1 -TCGA-E2-A14T TCGA-E2-A14T-01 Luminal A 1 -TCGA-E2-A14Z TCGA-E2-A14Z-01 Luminal A 1 -TCGA-E2-A153 TCGA-E2-A153-01 Luminal A 1 -TCGA-E2-A154 TCGA-E2-A154-01 Luminal A 1 -TCGA-E2-A156 TCGA-E2-A156-01 Luminal A 1 -TCGA-E2-A15C TCGA-E2-A15C-01 Luminal A 1 -TCGA-E2-A15D TCGA-E2-A15D-01 Luminal A 1 -TCGA-E2-A15E TCGA-E2-A15E-01 Luminal A 1 -TCGA-E2-A15F TCGA-E2-A15F-01 Luminal A 1 -TCGA-E2-A15G TCGA-E2-A15G-01 Luminal A 1 -TCGA-E2-A15H TCGA-E2-A15H-01 Luminal A 1 -TCGA-E2-A15I TCGA-E2-A15I-01 Luminal A 1 -TCGA-E2-A15J TCGA-E2-A15J-01 Luminal A 1 -TCGA-E2-A15O TCGA-E2-A15O-01 Luminal A 1 -TCGA-E2-A15P TCGA-E2-A15P-01 Luminal A 1 -TCGA-E2-A15R TCGA-E2-A15R-01 Luminal A 1 -TCGA-E2-A1B1 TCGA-E2-A1B1-01 Luminal A 1 -TCGA-E2-A1B4 TCGA-E2-A1B4-01 Luminal A 1 -TCGA-E2-A1B6 TCGA-E2-A1B6-01 Luminal A 1 -TCGA-E2-A1BC TCGA-E2-A1BC-01 Luminal A 1 -TCGA-E2-A1BD TCGA-E2-A1BD-01 Luminal A 1 -TCGA-A2-A0SV TCGA-A2-A0SV-01 Luminal B 1 -TCGA-AO-A03O TCGA-AO-A03O-01 Luminal B 1 -TCGA-A2-A0SW TCGA-A2-A0SW-01 Luminal B 1 -TCGA-B6-A0WW TCGA-B6-A0WW-01 Luminal B 1 -TCGA-BH-A18J TCGA-BH-A18J-01 Luminal B 1 -TCGA-BH-A18L TCGA-BH-A18L-01 Luminal B 1 -TCGA-A8-A06X TCGA-A8-A06X-01 Luminal B 1 -TCGA-B6-A0IC TCGA-B6-A0IC-01 Luminal B 1 -TCGA-BH-A18U TCGA-BH-A18U-01 Luminal B 1 -TCGA-BH-A1EW TCGA-BH-A1EW-01 Luminal B 1 -TCGA-AR-A0TY TCGA-AR-A0TY-01 Luminal B 1 -TCGA-B6-A0X5 TCGA-B6-A0X5-01 Luminal B 1 -TCGA-B6-A0WV TCGA-B6-A0WV-01 Luminal B 1 -TCGA-B6-A0RL TCGA-B6-A0RL-01 Luminal B 1 -TCGA-AR-A0U2 TCGA-AR-A0U2-01 Luminal B 1 -TCGA-B6-A0IB TCGA-B6-A0IB-01 Luminal B 1 -TCGA-AO-A0J7 TCGA-AO-A0J7-01 Luminal B 1 -TCGA-AO-A0J3 TCGA-AO-A0J3-01 Luminal B 1 -TCGA-D8-A13Y TCGA-D8-A13Y-01 Luminal B 1 -TCGA-A7-A13F TCGA-A7-A13F-01 Luminal B 1 -TCGA-BH-A0HU TCGA-BH-A0HU-01 Luminal B 1 -TCGA-D8-A140 TCGA-D8-A140-01 Luminal B 1 -TCGA-A7-A0CJ TCGA-A7-A0CJ-01 Luminal B 1 -TCGA-AQ-A04H TCGA-AQ-A04H-01 Luminal B 1 -TCGA-BH-A0H0 TCGA-BH-A0H0-01 Luminal B 1 -TCGA-BH-A0BD TCGA-BH-A0BD-01 Luminal B 1 -TCGA-A2-A0T3 TCGA-A2-A0T3-01 Luminal B 1 -TCGA-A2-A0T4 TCGA-A2-A0T4-01 Luminal B 1 -TCGA-A2-A0YH TCGA-A2-A0YH-01 Luminal B 1 -TCGA-A2-A0YG TCGA-A2-A0YG-01 Luminal B 1 -TCGA-A2-A0EY TCGA-A2-A0EY-01 Luminal B 1 -TCGA-A2-A0D4 TCGA-A2-A0D4-01 Luminal B 1 -TCGA-BH-A0AY TCGA-BH-A0AY-01 Luminal B 1 -TCGA-E2-A107 TCGA-E2-A107-01 Luminal B 1 -TCGA-AO-A0JI TCGA-AO-A0JI-01 Luminal B 1 -TCGA-E2-A10C TCGA-E2-A10C-01 Luminal B 1 -TCGA-E2-A10A TCGA-E2-A10A-01 Luminal B 1 -TCGA-BH-A0C0 TCGA-BH-A0C0-01 Luminal B 1 -TCGA-E2-A109 TCGA-E2-A109-01 Luminal B 1 -TCGA-AO-A0JC TCGA-AO-A0JC-01 Luminal B 1 -TCGA-BH-A0HW TCGA-BH-A0HW-01 Luminal B 1 -TCGA-AO-A0JD TCGA-AO-A0JD-01 Luminal B 1 -TCGA-AO-A0JM TCGA-AO-A0JM-01 Luminal B 1 -TCGA-A2-A0CW TCGA-A2-A0CW-01 Luminal B 1 -TCGA-A2-A0ER TCGA-A2-A0ER-01 Luminal B 1 -TCGA-A2-A0CT TCGA-A2-A0CT-01 Luminal B 1 -TCGA-AO-A12B TCGA-AO-A12B-01 Luminal B 1 -TCGA-A2-A04R TCGA-A2-A04R-01 Luminal B 1 -TCGA-B6-A0IM TCGA-B6-A0IM-01 Luminal B 1 -TCGA-AO-A03P TCGA-AO-A03P-01 Luminal B 1 -TCGA-A1-A0SM TCGA-A1-A0SM-01 Luminal B 1 -TCGA-A8-A06N TCGA-A8-A06N-01 Luminal B 1 -TCGA-A8-A06O TCGA-A8-A06O-01 Luminal B 1 -TCGA-A8-A06Q TCGA-A8-A06Q-01 Luminal B 1 -TCGA-A8-A06R TCGA-A8-A06R-01 Luminal B 1 -TCGA-A8-A06Z TCGA-A8-A06Z-01 Luminal B 1 -TCGA-A8-A079 TCGA-A8-A079-01 Luminal B 1 -TCGA-A8-A07L TCGA-A8-A07L-01 Luminal B 1 -TCGA-A8-A07S TCGA-A8-A07S-01 Luminal B 1 -TCGA-A8-A07W TCGA-A8-A07W-01 Luminal B 1 -TCGA-A8-A07Z TCGA-A8-A07Z-01 Luminal B 1 -TCGA-A8-A082 TCGA-A8-A082-01 Luminal B 1 -TCGA-A8-A084 TCGA-A8-A084-01 Luminal B 1 -TCGA-A8-A085 TCGA-A8-A085-01 Luminal B 1 -TCGA-A8-A08F TCGA-A8-A08F-01 Luminal B 1 -TCGA-A8-A08G TCGA-A8-A08G-01 Luminal B 1 -TCGA-A8-A08I TCGA-A8-A08I-01 Luminal B 1 -TCGA-A8-A08P TCGA-A8-A08P-01 Luminal B 1 -TCGA-A8-A095 TCGA-A8-A095-01 Luminal B 1 -TCGA-A8-A096 TCGA-A8-A096-01 Luminal B 1 -TCGA-A8-A097 TCGA-A8-A097-01 Luminal B 1 -TCGA-A8-A09C TCGA-A8-A09C-01 Luminal B 1 -TCGA-A8-A09D TCGA-A8-A09D-01 Luminal B 1 -TCGA-A8-A09I TCGA-A8-A09I-01 Luminal B 1 -TCGA-A8-A09M TCGA-A8-A09M-01 Luminal B 1 -TCGA-A8-A09N TCGA-A8-A09N-01 Luminal B 1 -TCGA-A8-A09Q TCGA-A8-A09Q-01 Luminal B 1 -TCGA-A8-A09R TCGA-A8-A09R-01 Luminal B 1 -TCGA-A8-A09W TCGA-A8-A09W-01 Luminal B 1 -TCGA-A8-A09Z TCGA-A8-A09Z-01 Luminal B 1 -TCGA-A8-A0A9 TCGA-A8-A0A9-01 Luminal B 1 -TCGA-A8-A0AB TCGA-A8-A0AB-01 Luminal B 1 -TCGA-AN-A03Y TCGA-AN-A03Y-01 Luminal B 1 -TCGA-AN-A041 TCGA-AN-A041-01 Luminal B 1 -TCGA-AN-A049 TCGA-AN-A049-01 Luminal B 1 -TCGA-AN-A0AJ TCGA-AN-A0AJ-01 Luminal B 1 -TCGA-AN-A0AK TCGA-AN-A0AK-01 Luminal B 1 -TCGA-AN-A0AM TCGA-AN-A0AM-01 Luminal B 1 -TCGA-AN-A0AS TCGA-AN-A0AS-01 Luminal B 1 -TCGA-AN-A0FF TCGA-AN-A0FF-01 Luminal B 1 -TCGA-AN-A0FK TCGA-AN-A0FK-01 Luminal B 1 -TCGA-AN-A0FY TCGA-AN-A0FY-01 Luminal B 1 -TCGA-AN-A0XR TCGA-AN-A0XR-01 Luminal B 1 -TCGA-AN-A0XW TCGA-AN-A0XW-01 Luminal B 1 -TCGA-AR-A0TQ TCGA-AR-A0TQ-01 Luminal B 1 -TCGA-AR-A0TT TCGA-AR-A0TT-01 Luminal B 1 -TCGA-AR-A0TV TCGA-AR-A0TV-01 Luminal B 1 -TCGA-AR-A0TZ TCGA-AR-A0TZ-01 Luminal B 1 -TCGA-AR-A0U3 TCGA-AR-A0U3-01 Luminal B 1 -TCGA-AR-A1AV TCGA-AR-A1AV-01 Luminal B 1 -TCGA-BH-A0AU TCGA-BH-A0AU-01 Luminal B 1 -TCGA-BH-A0B5 TCGA-BH-A0B5-01 Luminal B 1 -TCGA-BH-A0BF TCGA-BH-A0BF-01 Luminal B 1 -TCGA-BH-A0BZ TCGA-BH-A0BZ-01 Luminal B 1 -TCGA-BH-A0C3 TCGA-BH-A0C3-01 Luminal B 1 -TCGA-BH-A0C7 TCGA-BH-A0C7-01 Luminal B 1 -TCGA-BH-A0DD TCGA-BH-A0DD-01 Luminal B 1 -TCGA-BH-A0W3 TCGA-BH-A0W3-01 Luminal B 1 -TCGA-BH-A18F TCGA-BH-A18F-01 Luminal B 1 -TCGA-C8-A12M TCGA-C8-A12M-01 Luminal B 1 -TCGA-C8-A12U TCGA-C8-A12U-01 Luminal B 1 -TCGA-C8-A12W TCGA-C8-A12W-01 Luminal B 1 -TCGA-C8-A12X TCGA-C8-A12X-01 Luminal B 1 -TCGA-C8-A1HG TCGA-C8-A1HG-01 Luminal B 1 -TCGA-C8-A1HL TCGA-C8-A1HL-01 Luminal B 1 -TCGA-C8-A1HM TCGA-C8-A1HM-01 Luminal B 1 -TCGA-C8-A1HN TCGA-C8-A1HN-01 Luminal B 1 -TCGA-E2-A14O TCGA-E2-A14O-01 Luminal B 1 -TCGA-E2-A14S TCGA-E2-A14S-01 Luminal B 1 -TCGA-E2-A14W TCGA-E2-A14W-01 Luminal B 1 -TCGA-E2-A155 TCGA-E2-A155-01 Luminal B 1 -TCGA-E2-A15A TCGA-E2-A15A-01 Luminal B 1 -TCGA-E2-A15K TCGA-E2-A15K-01 Luminal B 1 -TCGA-E2-A15L TCGA-E2-A15L-01 Luminal B 1 -TCGA-E2-A15M TCGA-E2-A15M-01 Luminal B 1 -TCGA-E2-A15S TCGA-E2-A15S-01 Luminal B 1 -TCGA-E2-A15T TCGA-E2-A15T-01 Luminal B 1 -TCGA-AO-A03U TCGA-AO-A03U-01 NA 1 -TCGA-B6-A0IE TCGA-B6-A0IE-01 NA 1 -TCGA-A2-A0YK TCGA-A2-A0YK-01 NA 1 -TCGA-E2-A108 TCGA-E2-A108-01 Claudin low 1 -TCGA-AO-A0JB TCGA-AO-A0JB-01 NA 1 -TCGA-AO-A03R TCGA-AO-A03R-01 NA 1 -TCGA-AO-A03T TCGA-AO-A03T-01 NA 1 -TCGA-AR-A1AO TCGA-AR-A1AO-01 Claudin low 1 -TCGA-A2-A0YT TCGA-A2-A0YT-01 Luminal B 1 -TCGA-AQ-A0Y5 TCGA-AQ-A0Y5-01 NA 1 -TCGA-EW-A1P8 TCGA-EW-A1P8-01 NA 1 -TCGA-E2-A1LK TCGA-E2-A1LK-01 NA 1 -TCGA-BH-A1EY TCGA-BH-A1EY-01 NA 1 -TCGA-BH-A1F8 TCGA-BH-A1F8-01 NA 1 -TCGA-BH-A1F2 TCGA-BH-A1F2-01 NA 1 -TCGA-BH-A1FD TCGA-BH-A1FD-01 NA 1 -TCGA-BH-A1FH TCGA-BH-A1FH-01 NA 1 -TCGA-BH-A203 TCGA-BH-A203-01 NA 1 -TCGA-BH-A1FM TCGA-BH-A1FM-01 NA 1 -TCGA-BH-A1EX TCGA-BH-A1EX-01 NA 1 -TCGA-BH-A1FL TCGA-BH-A1FL-01 NA 1 -TCGA-BH-A208 TCGA-BH-A208-01 NA 1 -TCGA-GM-A2D9 TCGA-GM-A2D9-01 NA 1 -TCGA-BH-A1FJ TCGA-BH-A1FJ-01 NA 1 -TCGA-BH-A1EN TCGA-BH-A1EN-01 NA 1 -TCGA-BH-A1FN TCGA-BH-A1FN-01 NA 1 -TCGA-BH-A1FU TCGA-BH-A1FU-01 NA 1 -TCGA-BH-A1FE TCGA-BH-A1FE-01 NA 1 -TCGA-BH-A204 TCGA-BH-A204-01 NA 1 -TCGA-BH-A1F5 TCGA-BH-A1F5-01 NA 1 -TCGA-AR-A256 TCGA-AR-A256-01 NA 1 -TCGA-BH-A1F6 TCGA-BH-A1F6-01 NA 1 -TCGA-BH-A1FC TCGA-BH-A1FC-01 NA 1 -TCGA-BH-A1FB TCGA-BH-A1FB-01 NA 1 -TCGA-BH-A1FG TCGA-BH-A1FG-01 NA 1 -TCGA-BH-A209 TCGA-BH-A209-01 NA 1 -TCGA-BH-A1FR TCGA-BH-A1FR-01 NA 1 -TCGA-AO-A1KS TCGA-AO-A1KS-01 NA 1 -TCGA-A7-A13G TCGA-A7-A13G-01 NA 1 -TCGA-D8-A1JS TCGA-D8-A1JS-01 NA 1 -TCGA-A7-A0DC TCGA-A7-A0DC-01 Luminal A 1 -TCGA-D8-A1JT TCGA-D8-A1JT-01 NA 1 -TCGA-A7-A26E TCGA-A7-A26E-01 NA 1 -TCGA-D8-A1JH TCGA-D8-A1JH-01 NA 1 -TCGA-D8-A1JU TCGA-D8-A1JU-01 NA 1 -TCGA-AO-A1KO TCGA-AO-A1KO-01 NA 1 -TCGA-AO-A1KT TCGA-AO-A1KT-01 NA 1 -TCGA-AO-A0J5 TCGA-AO-A0J5-01 Luminal A 1 -TCGA-B6-A1KC TCGA-B6-A1KC-01 NA 1 -TCGA-AO-A1KQ TCGA-AO-A1KQ-01 NA 1 -TCGA-B6-A1KI TCGA-B6-A1KI-01 NA 1 -TCGA-AO-A1KP TCGA-AO-A1KP-01 NA 1 -TCGA-B6-A1KF TCGA-B6-A1KF-01 NA 1 -TCGA-B6-A1KN TCGA-B6-A1KN-01 NA 1 -TCGA-D8-A1XO TCGA-D8-A1XO-01 NA 1 -TCGA-D8-A1XT TCGA-D8-A1XT-01 NA 1 -TCGA-A1-A0SP TCGA-A1-A0SP-01 NA 1 -TCGA-D8-A1J8 TCGA-D8-A1J8-01 NA 1 -TCGA-D8-A1JF TCGA-D8-A1JF-01 NA 1 -TCGA-D8-A1JG TCGA-D8-A1JG-01 NA 1 -TCGA-D8-A1XS TCGA-D8-A1XS-01 NA 1 -TCGA-A1-A0SB TCGA-A1-A0SB-01 NA 1 -TCGA-A1-A0SF TCGA-A1-A0SF-01 NA 1 -TCGA-A1-A0SG TCGA-A1-A0SG-01 NA 1 -TCGA-A1-A0SI TCGA-A1-A0SI-01 NA 1 -TCGA-A1-A0SN TCGA-A1-A0SN-01 NA 1 -TCGA-A1-A0SQ TCGA-A1-A0SQ-01 NA 1 -TCGA-A2-A1FV TCGA-A2-A1FV-01 NA 1 -TCGA-A2-A1FW TCGA-A2-A1FW-01 NA 1 -TCGA-A2-A1FX TCGA-A2-A1FX-01 NA 1 -TCGA-A2-A1FZ TCGA-A2-A1FZ-01 NA 1 -TCGA-A2-A1G0 TCGA-A2-A1G0-01 NA 1 -TCGA-A2-A1G1 TCGA-A2-A1G1-01 NA 1 -TCGA-A2-A1G4 TCGA-A2-A1G4-01 NA 1 -TCGA-A2-A1G6 TCGA-A2-A1G6-01 NA 1 -TCGA-A2-A259 TCGA-A2-A259-01 NA 1 -TCGA-A2-A25A TCGA-A2-A25A-01 NA 1 -TCGA-A2-A25B TCGA-A2-A25B-01 NA 1 -TCGA-A2-A25C TCGA-A2-A25C-01 NA 1 -TCGA-A2-A25D TCGA-A2-A25D-01 NA 1 -TCGA-A2-A25E TCGA-A2-A25E-01 NA 1 -TCGA-A2-A25F TCGA-A2-A25F-01 NA 1 -TCGA-A7-A26F TCGA-A7-A26F-01 NA 1 -TCGA-A7-A26G TCGA-A7-A26G-01 NA 1 -TCGA-A7-A26H TCGA-A7-A26H-01 NA 1 -TCGA-A7-A26I TCGA-A7-A26I-01 NA 1 -TCGA-A7-A26J TCGA-A7-A26J-01 NA 1 -TCGA-A8-A08S TCGA-A8-A08S-01 Luminal B 1 -TCGA-A8-A09E TCGA-A8-A09E-01 Luminal B 1 -TCGA-A8-A09K TCGA-A8-A09K-01 Luminal B 1 -TCGA-AC-A23C TCGA-AC-A23C-01 NA 1 -TCGA-AC-A23E TCGA-AC-A23E-01 NA 1 -TCGA-AC-A23H TCGA-AC-A23H-01 NA 1 -TCGA-AO-A1KR TCGA-AO-A1KR-01 NA 1 -TCGA-AQ-A1H2 TCGA-AQ-A1H2-01 NA 1 -TCGA-AQ-A1H3 TCGA-AQ-A1H3-01 NA 1 -TCGA-AR-A24H TCGA-AR-A24H-01 NA 1 -TCGA-AR-A24K TCGA-AR-A24K-01 NA 1 -TCGA-AR-A24L TCGA-AR-A24L-01 NA 1 -TCGA-AR-A24M TCGA-AR-A24M-01 NA 1 -TCGA-AR-A24N TCGA-AR-A24N-01 NA 1 -TCGA-AR-A24O TCGA-AR-A24O-01 NA 1 -TCGA-AR-A24P TCGA-AR-A24P-01 NA 1 -TCGA-AR-A24Q TCGA-AR-A24Q-01 NA 1 -TCGA-AR-A24R TCGA-AR-A24R-01 NA 1 -TCGA-AR-A24S TCGA-AR-A24S-01 NA 1 -TCGA-AR-A24T TCGA-AR-A24T-01 NA 1 -TCGA-AR-A24U TCGA-AR-A24U-01 NA 1 -TCGA-AR-A24V TCGA-AR-A24V-01 NA 1 -TCGA-AR-A24X TCGA-AR-A24X-01 NA 1 -TCGA-AR-A24Z TCGA-AR-A24Z-01 NA 1 -TCGA-AR-A250 TCGA-AR-A250-01 NA 1 -TCGA-AR-A251 TCGA-AR-A251-01 NA 1 -TCGA-AR-A252 TCGA-AR-A252-01 NA 1 -TCGA-AR-A254 TCGA-AR-A254-01 NA 1 -TCGA-AR-A255 TCGA-AR-A255-01 NA 1 -TCGA-BH-A0B2 TCGA-BH-A0B2-01 Luminal A 1 -TCGA-BH-A0DV TCGA-BH-A0DV-01 NA 1 -TCGA-BH-A201 TCGA-BH-A201-01 NA 1 -TCGA-BH-A202 TCGA-BH-A202-01 NA 1 -TCGA-BH-A28Q TCGA-BH-A28Q-01 NA 1 -TCGA-C8-A1HE TCGA-C8-A1HE-01 NA 1 -TCGA-C8-A1HJ TCGA-C8-A1HJ-01 NA 1 -TCGA-C8-A1HK TCGA-C8-A1HK-01 NA 1 -TCGA-C8-A1HO TCGA-C8-A1HO-01 NA 1 -TCGA-C8-A26V TCGA-C8-A26V-01 NA 1 -TCGA-C8-A26W TCGA-C8-A26W-01 NA 1 -TCGA-C8-A26X TCGA-C8-A26X-01 NA 1 -TCGA-C8-A26Y TCGA-C8-A26Y-01 NA 1 -TCGA-C8-A26Z TCGA-C8-A26Z-01 NA 1 -TCGA-C8-A273 TCGA-C8-A273-01 NA 1 -TCGA-C8-A274 TCGA-C8-A274-01 NA 1 -TCGA-C8-A275 TCGA-C8-A275-01 NA 1 -TCGA-C8-A278 TCGA-C8-A278-01 NA 1 -TCGA-C8-A27A TCGA-C8-A27A-01 NA 1 -TCGA-C8-A27B TCGA-C8-A27B-01 NA 1 -TCGA-D8-A146 TCGA-D8-A146-01 Luminal A 1 -TCGA-D8-A1J9 TCGA-D8-A1J9-01 NA 1 -TCGA-D8-A1JA TCGA-D8-A1JA-01 NA 1 -TCGA-D8-A1JB TCGA-D8-A1JB-01 NA 1 -TCGA-D8-A1JC TCGA-D8-A1JC-01 NA 1 -TCGA-D8-A1JD TCGA-D8-A1JD-01 NA 1 -TCGA-D8-A1JE TCGA-D8-A1JE-01 NA 1 -TCGA-D8-A1JI TCGA-D8-A1JI-01 NA 1 -TCGA-D8-A1JJ TCGA-D8-A1JJ-01 NA 1 -TCGA-D8-A1JK TCGA-D8-A1JK-01 NA 1 -TCGA-D8-A1JL TCGA-D8-A1JL-01 NA 1 -TCGA-D8-A1JM TCGA-D8-A1JM-01 NA 1 -TCGA-D8-A1JN TCGA-D8-A1JN-01 NA 1 -TCGA-D8-A1JP TCGA-D8-A1JP-01 NA 1 -TCGA-D8-A1X5 TCGA-D8-A1X5-01 NA 1 -TCGA-D8-A1X6 TCGA-D8-A1X6-01 NA 1 -TCGA-D8-A1X7 TCGA-D8-A1X7-01 NA 1 -TCGA-D8-A1X8 TCGA-D8-A1X8-01 NA 1 -TCGA-D8-A1X9 TCGA-D8-A1X9-01 NA 1 -TCGA-D8-A1XA TCGA-D8-A1XA-01 NA 1 -TCGA-D8-A1XB TCGA-D8-A1XB-01 NA 1 -TCGA-D8-A1XC TCGA-D8-A1XC-01 NA 1 -TCGA-D8-A1XD TCGA-D8-A1XD-01 NA 1 -TCGA-D8-A1XF TCGA-D8-A1XF-01 NA 1 -TCGA-D8-A1XG TCGA-D8-A1XG-01 NA 1 -TCGA-D8-A1XJ TCGA-D8-A1XJ-01 NA 1 -TCGA-D8-A1XK TCGA-D8-A1XK-01 NA 1 -TCGA-D8-A1XL TCGA-D8-A1XL-01 NA 1 -TCGA-D8-A1XM TCGA-D8-A1XM-01 NA 1 -TCGA-D8-A1XQ TCGA-D8-A1XQ-01 NA 1 -TCGA-D8-A1XR TCGA-D8-A1XR-01 NA 1 -TCGA-D8-A1XU TCGA-D8-A1XU-01 NA 1 -TCGA-D8-A1XV TCGA-D8-A1XV-01 NA 1 -TCGA-D8-A1XW TCGA-D8-A1XW-01 NA 1 -TCGA-D8-A1XY TCGA-D8-A1XY-01 NA 1 -TCGA-D8-A1XZ TCGA-D8-A1XZ-01 NA 1 -TCGA-D8-A1Y0 TCGA-D8-A1Y0-01 NA 1 -TCGA-D8-A1Y1 TCGA-D8-A1Y1-01 NA 1 -TCGA-D8-A1Y2 TCGA-D8-A1Y2-01 NA 1 -TCGA-D8-A1Y3 TCGA-D8-A1Y3-01 NA 1 -TCGA-D8-A27E TCGA-D8-A27E-01 NA 1 -TCGA-D8-A27F TCGA-D8-A27F-01 NA 1 -TCGA-D8-A27G TCGA-D8-A27G-01 NA 1 -TCGA-D8-A27H TCGA-D8-A27H-01 NA 1 -TCGA-D8-A27I TCGA-D8-A27I-01 NA 1 -TCGA-D8-A27K TCGA-D8-A27K-01 NA 1 -TCGA-D8-A27L TCGA-D8-A27L-01 NA 1 -TCGA-D8-A27M TCGA-D8-A27M-01 NA 1 -TCGA-D8-A27N TCGA-D8-A27N-01 NA 1 -TCGA-D8-A27P TCGA-D8-A27P-01 NA 1 -TCGA-D8-A27R TCGA-D8-A27R-01 NA 1 -TCGA-D8-A27T TCGA-D8-A27T-01 NA 1 -TCGA-D8-A27V TCGA-D8-A27V-01 NA 1 -TCGA-D8-A27W TCGA-D8-A27W-01 NA 1 -TCGA-E2-A1IE TCGA-E2-A1IE-01 NA 1 -TCGA-E2-A1IF TCGA-E2-A1IF-01 NA 1 -TCGA-E2-A1IG TCGA-E2-A1IG-01 NA 1 -TCGA-E2-A1IH TCGA-E2-A1IH-01 NA 1 -TCGA-E2-A1II TCGA-E2-A1II-01 NA 1 -TCGA-E2-A1IJ TCGA-E2-A1IJ-01 NA 1 -TCGA-E2-A1IK TCGA-E2-A1IK-01 NA 1 -TCGA-E2-A1IL TCGA-E2-A1IL-01 NA 1 -TCGA-E2-A1IN TCGA-E2-A1IN-01 NA 1 -TCGA-E2-A1IO TCGA-E2-A1IO-01 NA 1 -TCGA-E2-A1IP TCGA-E2-A1IP-01 NA 1 -TCGA-E2-A1IU TCGA-E2-A1IU-01 NA 1 -TCGA-E2-A1L6 TCGA-E2-A1L6-01 NA 1 -TCGA-E2-A1L7 TCGA-E2-A1L7-01 NA 1 -TCGA-E2-A1L8 TCGA-E2-A1L8-01 NA 1 -TCGA-E2-A1L9 TCGA-E2-A1L9-01 NA 1 -TCGA-E2-A1LA TCGA-E2-A1LA-01 NA 1 -TCGA-E2-A1LB TCGA-E2-A1LB-01 NA 1 -TCGA-E2-A1LG TCGA-E2-A1LG-01 NA 1 -TCGA-E2-A1LH TCGA-E2-A1LH-01 NA 1 -TCGA-E2-A1LI TCGA-E2-A1LI-01 NA 1 -TCGA-E2-A1LL TCGA-E2-A1LL-01 NA 1 -TCGA-E2-A1LS TCGA-E2-A1LS-01 NA 1 -TCGA-E9-A1N3 TCGA-E9-A1N3-01 NA 1 -TCGA-E9-A1N4 TCGA-E9-A1N4-01 NA 1 -TCGA-E9-A1N5 TCGA-E9-A1N5-01 NA 1 -TCGA-E9-A1N6 TCGA-E9-A1N6-01 NA 1 -TCGA-E9-A1N8 TCGA-E9-A1N8-01 NA 1 -TCGA-E9-A1N9 TCGA-E9-A1N9-01 NA 1 -TCGA-E9-A1NA TCGA-E9-A1NA-01 NA 1 -TCGA-E9-A1NC TCGA-E9-A1NC-01 NA 1 -TCGA-E9-A1ND TCGA-E9-A1ND-01 NA 1 -TCGA-E9-A1NE TCGA-E9-A1NE-01 NA 1 -TCGA-E9-A1NF TCGA-E9-A1NF-01 NA 1 -TCGA-E9-A1NG TCGA-E9-A1NG-01 NA 1 -TCGA-E9-A1NH TCGA-E9-A1NH-01 NA 1 -TCGA-E9-A1NI TCGA-E9-A1NI-01 NA 1 -TCGA-E9-A1QZ TCGA-E9-A1QZ-01 NA 1 -TCGA-E9-A1R0 TCGA-E9-A1R0-01 NA 1 -TCGA-E9-A1R2 TCGA-E9-A1R2-01 NA 1 -TCGA-E9-A1R3 TCGA-E9-A1R3-01 NA 1 -TCGA-E9-A1R4 TCGA-E9-A1R4-01 NA 1 -TCGA-E9-A1R5 TCGA-E9-A1R5-01 NA 1 -TCGA-E9-A1R6 TCGA-E9-A1R6-01 NA 1 -TCGA-E9-A1R7 TCGA-E9-A1R7-01 NA 1 -TCGA-E9-A1RA TCGA-E9-A1RA-01 NA 1 -TCGA-E9-A1RB TCGA-E9-A1RB-01 NA 1 -TCGA-E9-A1RC TCGA-E9-A1RC-01 NA 1 -TCGA-E9-A1RD TCGA-E9-A1RD-01 NA 1 -TCGA-E9-A1RE TCGA-E9-A1RE-01 NA 1 -TCGA-E9-A1RF TCGA-E9-A1RF-01 NA 1 -TCGA-E9-A1RG TCGA-E9-A1RG-01 NA 1 -TCGA-E9-A1RH TCGA-E9-A1RH-01 NA 1 -TCGA-E9-A1RI TCGA-E9-A1RI-01 NA 1 -TCGA-E9-A226 TCGA-E9-A226-01 NA 1 -TCGA-E9-A227 TCGA-E9-A227-01 NA 1 -TCGA-E9-A228 TCGA-E9-A228-01 NA 1 -TCGA-E9-A229 TCGA-E9-A229-01 NA 1 -TCGA-E9-A22A TCGA-E9-A22A-01 NA 1 -TCGA-E9-A22B TCGA-E9-A22B-01 NA 1 -TCGA-E9-A22D TCGA-E9-A22D-01 NA 1 -TCGA-E9-A22E TCGA-E9-A22E-01 NA 1 -TCGA-E9-A22G TCGA-E9-A22G-01 NA 1 -TCGA-E9-A22H TCGA-E9-A22H-01 NA 1 -TCGA-E9-A243 TCGA-E9-A243-01 NA 1 -TCGA-E9-A244 TCGA-E9-A244-01 NA 1 -TCGA-E9-A245 TCGA-E9-A245-01 NA 1 -TCGA-E9-A247 TCGA-E9-A247-01 NA 1 -TCGA-E9-A248 TCGA-E9-A248-01 NA 1 -TCGA-E9-A249 TCGA-E9-A249-01 NA 1 -TCGA-E9-A24A TCGA-E9-A24A-01 NA 1 -TCGA-EW-A1IW TCGA-EW-A1IW-01 NA 1 -TCGA-EW-A1IX TCGA-EW-A1IX-01 NA 1 -TCGA-EW-A1IY TCGA-EW-A1IY-01 NA 1 -TCGA-EW-A1IZ TCGA-EW-A1IZ-01 NA 1 -TCGA-EW-A1J1 TCGA-EW-A1J1-01 NA 1 -TCGA-EW-A1J2 TCGA-EW-A1J2-01 NA 1 -TCGA-EW-A1J3 TCGA-EW-A1J3-01 NA 1 -TCGA-EW-A1J5 TCGA-EW-A1J5-01 NA 1 -TCGA-EW-A1J6 TCGA-EW-A1J6-01 NA 1 -TCGA-EW-A1OV TCGA-EW-A1OV-01 NA 1 -TCGA-EW-A1OW TCGA-EW-A1OW-01 NA 1 -TCGA-EW-A1OX TCGA-EW-A1OX-01 NA 1 -TCGA-EW-A1OY TCGA-EW-A1OY-01 NA 1 -TCGA-EW-A1OZ TCGA-EW-A1OZ-01 NA 1 -TCGA-EW-A1P0 TCGA-EW-A1P0-01 NA 1 -TCGA-EW-A1P1 TCGA-EW-A1P1-01 NA 1 -TCGA-EW-A1P3 TCGA-EW-A1P3-01 NA 1 -TCGA-EW-A1P4 TCGA-EW-A1P4-01 NA 1 -TCGA-EW-A1P5 TCGA-EW-A1P5-01 NA 1 -TCGA-EW-A1P6 TCGA-EW-A1P6-01 NA 1 -TCGA-EW-A1P7 TCGA-EW-A1P7-01 NA 1 -TCGA-EW-A1PA TCGA-EW-A1PA-01 NA 1 -TCGA-EW-A1PB TCGA-EW-A1PB-01 NA 1 -TCGA-EW-A1PD TCGA-EW-A1PD-01 NA 1 -TCGA-EW-A1PE TCGA-EW-A1PE-01 NA 1 -TCGA-EW-A1PF TCGA-EW-A1PF-01 NA 1 -TCGA-EW-A1PG TCGA-EW-A1PG-01 NA 1 -TCGA-EW-A1PH TCGA-EW-A1PH-01 NA 1 -TCGA-EW-A2FS TCGA-EW-A2FS-01 NA 1 -TCGA-EW-A2FV TCGA-EW-A2FV-01 NA 1 -TCGA-EW-A2FW TCGA-EW-A2FW-01 NA 1 -TCGA-GM-A2DA TCGA-GM-A2DA-01 NA 1 -TCGA-GM-A2DB TCGA-GM-A2DB-01 NA 1 -TCGA-GM-A2DC TCGA-GM-A2DC-01 NA 1 -TCGA-GM-A2DD TCGA-GM-A2DD-01 NA 1 -TCGA-GM-A2DF TCGA-GM-A2DF-01 NA 1 -TCGA-GM-A2DH TCGA-GM-A2DH-01 NA 1 -TCGA-GM-A2DI TCGA-GM-A2DI-01 NA 1 -TCGA-GM-A2DK TCGA-GM-A2DK-01 NA 1 -TCGA-GM-A2DL TCGA-GM-A2DL-01 NA 1 -TCGA-GM-A2DM TCGA-GM-A2DM-01 NA 1 -TCGA-GM-A2DN TCGA-GM-A2DN-01 NA 1 -TCGA-GM-A2DO TCGA-GM-A2DO-01 NA 1 -TCGA-AR-A24W TCGA-AR-A24W-01 NA 1 -TCGA-AC-A2B8 TCGA-AC-A2B8-01 NA 1 -TCGA-AC-A2FF TCGA-AC-A2FF-01 NA 1 -TCGA-AC-A2FB TCGA-AC-A2FB-01 NA 1 -TCGA-AC-A2FG TCGA-AC-A2FG-01 NA 1 -TCGA-GI-A2C8 TCGA-GI-A2C8-01 NA 1 -TCGA-E9-A295 TCGA-E9-A295-01 NA 1 -TCGA-E2-A15E TCGA-E2-A15E-06 NA 1 -TCGA-A2-A0T2 TCGA-A2-A0T2-01 NA 1 diff --git a/core/src/test/scripts/test_data/study_es_1/data_treatment_ec50.txt b/core/src/test/scripts/test_data/study_es_1/data_treatment_ec50.txt deleted file mode 100644 index aa610a6d896..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/data_treatment_ec50.txt +++ /dev/null @@ -1,11 +0,0 @@ -ENTITY_STABLE_ID NAME DESCRIPTION URL TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -17 AAG Name of 17-AAG Desc of 17-AAG Url of 17-AAG NAN NaN nan 0.07082279 0.150094494 0.422571242 0.1517988 0.279530227 -AEW541 Name of AEW541 Desc of AEW541 Url of AEW541 >8 2.329924107 2 0 1.736181378 4.260821819 Infinite 7.613147736 -AZD0530 Name of AZD0530 Desc of AZD0530 Url of AZD0530 >8 >8 4.597949505 3.192236662 >8 Inf 1.071310043 infinite -AZD6244 Name of AZD6244 Desc of AZD6244 Url of AZD6244 >8 >8 >8 >8 >8 >8 >8 inf -Erlotinib Name of Erlotinib Desc of Erlotinib Url of Erlotinib >8 >8 >8 2.439512491 >8 4.232964516 2 >8 -Irinotecan Name of Irinotecan Desc of Irinotecan Url of Irinotecan 0.080764666 NA 0.06704437 0.069568723 0.034992039 0.740817904 0.209220141 -L-685458 Name of L-685458 Desc of L-685458 Url of L-685458 >8 >8 3.267752409 >8 >8 0 >8 >8 -Lapatinib Name of Lapatinib Desc of Lapatinib Url of Lapatinib >8 7.847305298 >8 2.30776763 >8 0.849476227 1.057461143 7.178035259 -LBW242 Name of LBW242 Desc of LBW242 Url of LBW242 >8 >8 >8 >8 >8 >8 >8 >8 -Nilotinib Name of Nilotinib Desc of Nilotinib Url of Nilotinib NA >8 NA 7.475354671 >8 1.910434365 >8 >8 diff --git a/core/src/test/scripts/test_data/study_es_1/data_treatment_ic50.txt b/core/src/test/scripts/test_data/study_es_1/data_treatment_ic50.txt deleted file mode 100644 index 5b271f61714..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/data_treatment_ic50.txt +++ /dev/null @@ -1,10 +0,0 @@ -ENTITY_STABLE_ID NAME DESCRIPTION URL TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -17-AAG Name of 17-AAG Desc of 17-AAG Url of 17-AAG NAN NaN nan 0.07082279 0.150094494 0.422571242 0.1517988 0.279530227 -AEW541 Name of AEW541 Desc of AEW541 Url of AEW541 >8 2.329924107 2 0 1.736181378 4.260821819 Infinite 7.613147736 -AZD0530 Name of AZD0530 Desc of AZD0530 Url of AZD0530 >8 >8 4.597949505 3.192236662 >8 Inf 1.071310043 infinite -AZD6244 Name of AZD6244 Desc of AZD6244 Url of AZD6244 >8 >8 >8 >8 >8 >8 >8 inf -Erlotinib Name of Erlotinib Desc of Erlotinib Url of Erlotinib >8 >8 >8 2.439512491 >8 4.232964516 2 >8 -Irinotecan Name of Irinotecan Desc of Irinotecan Url of Irinotecan 0.080764666 NA 0.06704437 0.069568723 0.034992039 0.740817904 0.209220141 -L-685458 Name of L-685458 Desc of L-685458 Url of L-685458 >8 >8 3.267752409 >8 >8 0 >8 >8 -Lapatinib Name of Lapatinib Desc of Lapatinib Url of Lapatinib >8 7.847305298 >8 2.30776763 >8 0.849476227 1.057461143 7.178035259 -LBW242 Name of LBW242 Desc of LBW242 Url of LBW242 >~8 >8 >8 >8 >8 >8 >8 >8 diff --git a/core/src/test/scripts/test_data/study_es_1/meta_expression_median.txt b/core/src/test/scripts/test_data/study_es_1/meta_expression_median.txt deleted file mode 100644 index 9c2e8179492..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/meta_expression_median.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: MRNA_EXPRESSION -datatype: Z-SCORE -stable_id: mrna -profile_description: Expression levels (Agilent microarray). -show_profile_in_analysis_tab: false -profile_name: mRNA expression (microarray) -data_filename: data_expression_median.txt diff --git a/core/src/test/scripts/test_data/study_es_1/meta_samples.txt b/core/src/test/scripts/test_data/study_es_1/meta_samples.txt deleted file mode 100644 index 3209a7d27dd..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/meta_samples.txt +++ /dev/null @@ -1,7 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -show_profile_in_analysis_tab: false -profile_description: Sample clinical data for this study. -profile_name: Sample clinical data for brca_tcga_pub. -data_filename: data_samples.txt diff --git a/core/src/test/scripts/test_data/study_es_1/meta_study.txt b/core/src/test/scripts/test_data/study_es_1/meta_study.txt deleted file mode 100644 index c6a63249bbd..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/meta_study.txt +++ /dev/null @@ -1,7 +0,0 @@ -type_of_cancer: brca -cancer_study_identifier: brca_tcga_pub -name: Breast Invasive Carcinoma (TCGA, Nature 2012) -description: The Cancer Genome Atlas (TCGA) Breast Invasive Carcinoma project. 825 cases.
    Nature 2012. Raw data via the TCGA Data Portal. -citation: TCGA, Nature 2012 -pmid: 23000897 -groups: PUBLIC;GDAC;SU2C-PI3K diff --git a/core/src/test/scripts/test_data/study_es_1/meta_treatment_ec50.txt b/core/src/test/scripts/test_data/study_es_1/meta_treatment_ec50.txt deleted file mode 100644 index 018cbc0d0e1..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/meta_treatment_ec50.txt +++ /dev/null @@ -1,12 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: GENERIC_ASSAY -generic_assay_type: TREATMENT_RESPONSE -datatype: LIMIT-VALUE -stable_id: treatment_ec50 -profile_name: EC50 values of compounds on cellular phenotype readout -profile_description: EC50 (compound concentration resulting in half maximal activation) of compounds on cellular phenotype readout of cultured mutant cell lines. -data_filename: data_treatment_ec50.txt -show_profile_in_analysis_tab: true -pivot_threshold_value: 0.1 -value_sort_order: ASC -generic_entity_meta_properties: NAME,DESCRIPTION,URL \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_1/meta_treatment_ic50.txt b/core/src/test/scripts/test_data/study_es_1/meta_treatment_ic50.txt deleted file mode 100644 index 734b47e8c84..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/meta_treatment_ic50.txt +++ /dev/null @@ -1,12 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: GENERIC_ASSAY -generic_assay_type: TREATMENT_RESPONSE -datatype: LIMIT-VALUE -stable_id: treatment_ic50 -profile_name: IC50 values of compounds on cellular phenotype readout -profile_description: IC50 (compound concentration resulting in half maximal inhibition) of compounds on cellular phenotype readout of cultured mutant cell lines. -data_filename: data_treatment_ic50.txt -show_profile_in_analysis_tab: true -pivot_threshold_value: 0.1 -value_sort_order: ASC -generic_entity_meta_properties: NAME,DESCRIPTION,URL \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_1/report.html b/core/src/test/scripts/test_data/study_es_1/report.html deleted file mode 100644 index 15fa9285ad5..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/report.html +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - - - - - - cBioPortal validation report: study in '../../../test/scripts/test_data/study_es_1/' - - - -
    -
    -

    cBioPortal validation report

    -

    study in '../../../test/scripts/test_data/study_es_1/'

    -
    - -
    - -
    - Validation status: - - Failed - -
    - -
    -
    -

    General7

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    Requesting genes from portal at 'http://localhost:8080'
    Requesting cancertypes from portal at 'http://localhost:8080'
    Requesting clinicalattributes/patients from portal at 'http://localhost:8080'
    Requesting clinicalattributes/samples from portal at 'http://localhost:8080'
    Validating case lists
    Validation of case lists complete
    Validation complete
    -
    - - -
    -

    cases_all.txt1

    - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    Sample id not defined in clinical fileINVALID-A2-A0T2-01
    -
    - -
    -

    data_clinical2.txt2

    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    Starting validation of file
    Validation of file complete
    -
    - -
    -

    data_expression_median.txt3

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    Starting validation of file
    13Sample ID not defined in clinical fileTEST2-A1-A0SD-01
    Invalid column header, file cannot be parsed
    -
    - - -
    -
    -
    - - \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_1/result_report.html b/core/src/test/scripts/test_data/study_es_1/result_report.html deleted file mode 100644 index 38588c0123b..00000000000 --- a/core/src/test/scripts/test_data/study_es_1/result_report.html +++ /dev/null @@ -1,641 +0,0 @@ - - - - - - - - - - - - - cBioPortal validation report: study in '/home/pnp300/git/cbioportal/core/src/test/scripts/test_data/study_es_1' - - - - - -
    -
    -
    -

    cBioPortal validation report

    -

    Study directory:
    /home/pnp300/git/cbioportal/core/src/test/scripts/test_data/study_es_1

    -

    For details, please see the documentation on file formats supported by cBioPortal

    -

    cBioPortal version -- offline instance

    -
    -
    - -
    -
    -

    Legend

    -
    -
    -

    - Click on a filename below to see a table of messages about the data - in the file. The colors in the tables have the following meanings: -

    - - - - - - - - - - - - - - - - - - - -
    ErrorError: cBioPortal will not know how to load this, please revise or remove
    WarningWarning: possible cause of confusion, please check whether this is intended
    InfoInfo: this looks good, no action required
    DebugVerbose output: details on the progress of the validation script
    -
    -
    - -
    -
    -
    - Validation status: - - Failed - -
    - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of case list folder complete
    InfoValidation complete
    -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    ErrorSample id not defined in clinical fileINVALID-A2-A0T2-01
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of file complete
    InfoRead 831 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    Error2Whitespace found in feature identifier17 AAG
    Error25, 6, 7Value is NaN, therefore, not a valid response value.NAN, NaN, nan
    Warning3, 6, 87, 8, 11, (1 more)Value has no decimals and may represent an invalid response value.2, 0
    Error3, 411, 12Value cannot be interpreted as a floating point number and is not valid response value.Infinite, infinite
    Error4, 510, 12Value is infinite and, therefore, not a valid response value.Inf, inf
    Error75Blank cell found in column'' (in column 'TCGA-A1-A0SB-01')
    Error75Cell is empty. An effective concentration value is expected. Use 'NA' to indicate missing values.
    InfoValidation of file complete
    InfoRead 11 lines. Lines with warning: 3. Lines with error: 5
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    Error2Whitespace found in feature identifier17 AAG
    Error25, 6, 7Value is NaN, therefore, not a valid response value.NAN, NaN, nan
    Warning3, 6, 87, 8, 11, (1 more)Value has no decimals and may represent an invalid response value.2, 0
    Error3, 4, 1011, 12, 5Value cannot be interpreted as a floating point number and is not valid response value.Infinite, infinite, >~8
    Error4, 510, 12Value is infinite and, therefore, not a valid response value.Inf, inf
    Error75Blank cell found in column'' (in column 'TCGA-A1-A0SB-01')
    Error75Cell is empty. An effective concentration value is expected. Use 'NA' to indicate missing values.
    ErrorTreatment feature columns (`entity_stable_id`, ...) in treatment profile data files are not identical.The same set of treatments should be used across the different treatment data files for this study. Please ensure that all treatment id's of one file are present in all other treatment files.
    InfoValidation of file complete
    InfoRead 10 lines. Lines with warning: 3. Lines with error: 6
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    ErrorInvalid stable id for genetic_alteration_type 'MRNA_EXPRESSION', data_type 'Z-SCORE'; expected one of [mrna_U133_Zscores, rna_seq_mrna_median_Zscores, mrna_median_Zscores, rna_seq_v2_mrna_median_Zscores, mirna_median_Zscores, mrna_merged_median_Zscores, mrna_zbynorm, rna_seq_mrna_capture_Zscores]mrna
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    WarningUnrecognized field in meta fileshow_profile_in_analysis_tab, profile_description, profile_name
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - - -
    -
    -
    -
    - - diff --git a/core/src/test/scripts/test_data/study_es_3/cancer_type.txt b/core/src/test/scripts/test_data/study_es_3/cancer_type.txt deleted file mode 100644 index 9263471fe03..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/cancer_type.txt +++ /dev/null @@ -1 +0,0 @@ -brca-ben Breast Invasive Carcinoma breast,breast invasive HotPink Breast diff --git a/core/src/test/scripts/test_data/study_es_3/case_lists/cases_all.txt b/core/src/test/scripts/test_data/study_es_3/case_lists/cases_all.txt deleted file mode 100644 index 3f5a91cf49a..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/case_lists/cases_all.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_all -case_list_name: All Tumors -case_list_description: All tumor samples (825 samples) -case_list_ids: TCGA-A2-A0T2-01 TCGA-A2-A04P-01 TCGA-A1-A0SK-01 TCGA-A2-A0CM-01 TCGA-AR-A1AR-01 TCGA-B6-A0WX-01 TCGA-BH-A1F0-01 TCGA-B6-A0I6-01 TCGA-BH-A18V-01 TCGA-BH-A18Q-01 TCGA-BH-A18K-01 TCGA-BH-A0HL-01 TCGA-BH-A0E0-01 TCGA-BH-A0RX-01 TCGA-A7-A13D-01 TCGA-BH-A0E6-01 TCGA-AO-A0J4-01 TCGA-A7-A0CE-01 TCGA-A7-A13E-01 TCGA-A7-A0DA-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-AQ-A04J-01 TCGA-BH-A0HN-01 TCGA-A2-A0T0-01 TCGA-A2-A0YE-01 TCGA-A2-A0YJ-01 TCGA-A2-A0D0-01 TCGA-A2-A04U-01 TCGA-AO-A0J6-01 TCGA-A2-A0YM-01 TCGA-A2-A0D2-01 TCGA-BH-A0B3-01 TCGA-A2-A04Q-01 TCGA-A2-A0SX-01 TCGA-AO-A0JL-01 TCGA-AO-A12F-01 TCGA-BH-A0B9-01 TCGA-A2-A04T-01 TCGA-B6-A0RT-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A124-01 TCGA-B6-A0RU-01 TCGA-B6-A0IQ-01 TCGA-B6-A0I2-01 TCGA-B6-A0IJ-01 TCGA-B6-A0X1-01 TCGA-B6-A0RE-01 TCGA-A2-A0ST-01 TCGA-AR-A0TP-01 TCGA-A1-A0SO-01 TCGA-A8-A07C-01 TCGA-A8-A07O-01 TCGA-A8-A07R-01 TCGA-A8-A07U-01 TCGA-A8-A08H-01 TCGA-A8-A08R-01 TCGA-AN-A04D-01 TCGA-AN-A0AL-01 TCGA-AN-A0AR-01 TCGA-AN-A0AT-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FL-01 TCGA-AN-A0FX-01 TCGA-AN-A0G0-01 TCGA-AN-A0XU-01 TCGA-AR-A0TS-01 TCGA-AR-A0TU-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AY-01 TCGA-BH-A0AV-01 TCGA-BH-A0BG-01 TCGA-BH-A0BL-01 TCGA-BH-A0BW-01 TCGA-BH-A0DL-01 TCGA-BH-A0WA-01 TCGA-BH-A18G-01 TCGA-C8-A12K-01 TCGA-C8-A12V-01 TCGA-C8-A131-01 TCGA-C8-A134-01 TCGA-D8-A147-01 TCGA-E2-A14N-01 TCGA-E2-A14R-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A150-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B5-01 TCGA-A8-A08L-01 TCGA-BH-A1EV-01 TCGA-B6-A0I9-01 TCGA-A8-A09X-01 TCGA-B6-A0IK-01 TCGA-BH-A18P-01 TCGA-A8-A08J-01 TCGA-BH-A18R-01 TCGA-AR-A1AT-01 TCGA-B6-A0RS-01 TCGA-BH-A0DZ-01 TCGA-A2-A0T1-01 TCGA-AO-A0J2-01 TCGA-BH-A0AW-01 TCGA-BH-A0EE-01 TCGA-A2-A0D1-01 TCGA-AO-A03N-01 TCGA-A2-A0CY-01 TCGA-A2-A04X-01 TCGA-A2-A0CX-01 TCGA-A2-A04W-01 TCGA-AO-A12D-01 TCGA-A2-A0CL-01 TCGA-AO-A0JE-01 TCGA-A2-A0EQ-01 TCGA-AO-A03L-01 TCGA-B6-A0RH-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A07B-01 TCGA-A8-A07I-01 TCGA-A8-A081-01 TCGA-A8-A08B-01 TCGA-A8-A08X-01 TCGA-A8-A092-01 TCGA-A8-A094-01 TCGA-A8-A09G-01 TCGA-A8-A0A7-01 TCGA-AN-A04C-01 TCGA-AN-A0FV-01 TCGA-AR-A0TX-01 TCGA-BH-A0B7-01 TCGA-BH-A0HY-01 TCGA-C8-A12L-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HF-01 TCGA-D8-A13Z-01 TCGA-E2-A14P-01 TCGA-E2-A14V-01 TCGA-E2-A152-01 TCGA-E2-A1B0-01 TCGA-A2-A0CU-01 TCGA-AR-A0TR-01 TCGA-BH-A18T-01 TCGA-B6-A0I8-01 TCGA-B6-A0X4-01 TCGA-A8-A06U-01 TCGA-BH-A0EA-01 TCGA-BH-A18N-01 TCGA-BH-A1EU-01 TCGA-B6-A0X7-01 TCGA-A2-A04V-01 TCGA-BH-A18S-01 TCGA-BH-A18M-01 TCGA-B6-A0RM-01 TCGA-BH-A1ET-01 TCGA-B6-A0IN-01 TCGA-BH-A1EO-01 TCGA-B6-A0WS-01 TCGA-B6-A0RP-01 TCGA-B6-A0IH-01 TCGA-B6-A0WY-01 TCGA-BH-A1ES-01 TCGA-B6-A0X0-01 TCGA-B6-A0RQ-01 TCGA-B6-A0IG-01 TCGA-BH-A0HO-01 TCGA-BH-A0DS-01 TCGA-BH-A0DQ-01 TCGA-BH-A0HK-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0DB-01 TCGA-A7-A0D9-01 TCGA-AO-A0J8-01 TCGA-BH-A0GZ-01 TCGA-AO-A0JA-01 TCGA-AO-A0JF-01 TCGA-A7-A0CD-01 TCGA-D8-A145-01 TCGA-BH-A0HP-01 TCGA-BH-A0DK-01 TCGA-BH-A0E2-01 TCGA-A2-A0YI-01 TCGA-A2-A0YL-01 TCGA-AO-A0JG-01 TCGA-A2-A0YF-01 TCGA-BH-A0DP-01 TCGA-BH-A0E1-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-BH-A0HI-01 TCGA-A2-A0T7-01 TCGA-BH-A0BJ-01 TCGA-BH-A0H7-01 TCGA-BH-A0HF-01 TCGA-BH-A0EB-01 TCGA-BH-A0H6-01 TCGA-A2-A0YD-01 TCGA-BH-A0HB-01 TCGA-BH-A0HX-01 TCGA-AO-A12H-01 TCGA-E2-A10E-01 TCGA-A2-A0D3-01 TCGA-E2-A10F-01 TCGA-AO-A03V-01 TCGA-A2-A0EW-01 TCGA-BH-A0GY-01 TCGA-A2-A0EV-01 TCGA-BH-A0BC-01 TCGA-A2-A0YC-01 TCGA-A2-A0EU-01 TCGA-A2-A0ET-01 TCGA-A2-A04Y-01 TCGA-BH-A0HQ-01 TCGA-A2-A0ES-01 TCGA-BH-A0BA-01 TCGA-E2-A10B-01 TCGA-BH-A0B1-01 TCGA-BH-A0DH-01 TCGA-BH-A0B4-01 TCGA-BH-A0H9-01 TCGA-AO-A0J9-01 TCGA-AO-A12G-01 TCGA-A2-A0SY-01 TCGA-BH-A0E7-01 TCGA-AO-A03M-01 TCGA-BH-A0BV-01 TCGA-BH-A0B8-01 TCGA-A2-A0CZ-01 TCGA-A2-A0SU-01 TCGA-AO-A12E-01 TCGA-E2-A106-01 TCGA-A2-A0CV-01 TCGA-AO-A12C-01 TCGA-B6-A0RG-01 TCGA-A2-A0CS-01 TCGA-A2-A0EO-01 TCGA-A2-A0CQ-01 TCGA-A2-A0EN-01 TCGA-AO-A12A-01 TCGA-A2-A0CP-01 TCGA-AO-A126-01 TCGA-AO-A125-01 TCGA-A2-A0EM-01 TCGA-A2-A04N-01 TCGA-AQ-A04L-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0WZ-01 TCGA-B6-A0I5-01 TCGA-B6-A0RV-01 TCGA-B6-A0RO-01 TCGA-B6-A0RN-01 TCGA-B6-A0WT-01 TCGA-B6-A0IA-01 TCGA-B6-A0RI-01 TCGA-A1-A0SE-01 TCGA-A2-A0EX-01 TCGA-AO-A0JJ-01 TCGA-E2-A105-01 TCGA-A1-A0SD-01 TCGA-A1-A0SH-01 TCGA-A1-A0SJ-01 TCGA-A8-A06P-01 TCGA-A8-A06T-01 TCGA-A8-A06Y-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07J-01 TCGA-A8-A07P-01 TCGA-A8-A083-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08C-01 TCGA-A8-A08O-01 TCGA-A8-A08T-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A093-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0AD-01 TCGA-AN-A03X-01 TCGA-AN-A046-01 TCGA-AN-A04A-01 TCGA-AN-A0FD-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FW-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XP-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XV-01 TCGA-AR-A0TW-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AP-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0C1-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DI-01 TCGA-BH-A0DO-01 TCGA-BH-A0DT-01 TCGA-BH-A0DX-01 TCGA-BH-A0E9-01 TCGA-BH-A0EI-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0HA-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-C8-A12N-01 TCGA-C8-A12O-01 TCGA-C8-A12Y-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A1HI-01 TCGA-D8-A141-01 TCGA-E2-A14Q-01 TCGA-E2-A14T-01 TCGA-E2-A14Z-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A156-01 TCGA-E2-A15C-01 TCGA-E2-A15D-01 TCGA-E2-A15E-01 TCGA-E2-A15F-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-A2-A0SV-01 TCGA-AO-A03O-01 TCGA-A2-A0SW-01 TCGA-B6-A0WW-01 TCGA-BH-A18J-01 TCGA-BH-A18L-01 TCGA-A8-A06X-01 TCGA-B6-A0IC-01 TCGA-BH-A18U-01 TCGA-BH-A1EW-01 TCGA-AR-A0TY-01 TCGA-B6-A0X5-01 TCGA-B6-A0WV-01 TCGA-B6-A0RL-01 TCGA-AR-A0U2-01 TCGA-B6-A0IB-01 TCGA-AO-A0J7-01 TCGA-AO-A0J3-01 TCGA-D8-A13Y-01 TCGA-A7-A13F-01 TCGA-BH-A0HU-01 TCGA-D8-A140-01 TCGA-A7-A0CJ-01 TCGA-AQ-A04H-01 TCGA-BH-A0H0-01 TCGA-BH-A0BD-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0YH-01 TCGA-A2-A0YG-01 TCGA-A2-A0EY-01 TCGA-A2-A0D4-01 TCGA-BH-A0AY-01 TCGA-E2-A107-01 TCGA-AO-A0JI-01 TCGA-E2-A10C-01 TCGA-E2-A10A-01 TCGA-BH-A0C0-01 TCGA-E2-A109-01 TCGA-AO-A0JC-01 TCGA-BH-A0HW-01 TCGA-AO-A0JD-01 TCGA-AO-A0JM-01 TCGA-A2-A0CW-01 TCGA-A2-A0ER-01 TCGA-A2-A0CT-01 TCGA-AO-A12B-01 TCGA-A2-A04R-01 TCGA-B6-A0IM-01 TCGA-AO-A03P-01 TCGA-A1-A0SM-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06Z-01 TCGA-A8-A079-01 TCGA-A8-A07L-01 TCGA-A8-A07S-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A082-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08I-01 TCGA-A8-A08P-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09W-01 TCGA-A8-A09Z-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A049-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AM-01 TCGA-AN-A0AS-01 TCGA-AN-A0FF-01 TCGA-AN-A0FK-01 TCGA-AN-A0FY-01 TCGA-AN-A0XR-01 TCGA-AN-A0XW-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U3-01 TCGA-AR-A1AV-01 TCGA-BH-A0AU-01 TCGA-BH-A0B5-01 TCGA-BH-A0BF-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0W3-01 TCGA-BH-A18F-01 TCGA-C8-A12M-01 TCGA-C8-A12U-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A1HG-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-E2-A14O-01 TCGA-E2-A14S-01 TCGA-E2-A14W-01 TCGA-E2-A155-01 TCGA-E2-A15A-01 TCGA-E2-A15K-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15S-01 TCGA-E2-A15T-01 TCGA-AO-A03U-01 TCGA-B6-A0IE-01 TCGA-A2-A0YK-01 TCGA-E2-A108-01 TCGA-AO-A0JB-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AR-A1AO-01 TCGA-A2-A0YT-01 TCGA-AQ-A0Y5-01 TCGA-EW-A1P8-01 TCGA-E2-A1LK-01 TCGA-BH-A1EY-01 TCGA-BH-A1F8-01 TCGA-BH-A1F2-01 TCGA-BH-A1FD-01 TCGA-BH-A1FH-01 TCGA-BH-A203-01 TCGA-BH-A1FM-01 TCGA-BH-A1EX-01 TCGA-BH-A1FL-01 TCGA-BH-A208-01 TCGA-GM-A2D9-01 TCGA-BH-A1FJ-01 TCGA-BH-A1EN-01 TCGA-BH-A1FN-01 TCGA-BH-A1FU-01 TCGA-BH-A1FE-01 TCGA-BH-A204-01 TCGA-BH-A1F5-01 TCGA-AR-A256-01 TCGA-BH-A1F6-01 TCGA-BH-A1FC-01 TCGA-BH-A1FB-01 TCGA-BH-A1FG-01 TCGA-BH-A209-01 TCGA-BH-A1FR-01 TCGA-AO-A1KS-01 TCGA-A7-A13G-01 TCGA-D8-A1JS-01 TCGA-A7-A0DC-01 TCGA-D8-A1JT-01 TCGA-A7-A26E-01 TCGA-D8-A1JH-01 TCGA-D8-A1JU-01 TCGA-AO-A1KO-01 TCGA-AO-A1KT-01 TCGA-AO-A0J5-01 TCGA-B6-A1KC-01 TCGA-AO-A1KQ-01 TCGA-B6-A1KI-01 TCGA-AO-A1KP-01 TCGA-B6-A1KF-01 TCGA-B6-A1KN-01 TCGA-D8-A1XO-01 TCGA-D8-A1XT-01 TCGA-A1-A0SP-01 TCGA-D8-A1J8-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1XS-01 TCGA-A1-A0SB-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SI-01 TCGA-A1-A0SN-01 TCGA-A1-A0SQ-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A08S-01 TCGA-A8-A09E-01 TCGA-A8-A09K-01 TCGA-AC-A23C-01 TCGA-AC-A23E-01 TCGA-AC-A23H-01 TCGA-AO-A1KR-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-BH-A0B2-01 TCGA-BH-A0DV-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A28Q-01 TCGA-C8-A1HE-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A146-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IP-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LL-01 TCGA-E2-A1LS-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GM-A2DA-01 TCGA-GM-A2DB-01 TCGA-GM-A2DC-01 TCGA-GM-A2DD-01 TCGA-GM-A2DF-01 TCGA-GM-A2DH-01 TCGA-GM-A2DI-01 TCGA-GM-A2DK-01 TCGA-GM-A2DL-01 TCGA-GM-A2DM-01 TCGA-GM-A2DN-01 TCGA-GM-A2DO-01 TCGA-AR-A24W-01 TCGA-AC-A2B8-01 TCGA-AC-A2FF-01 TCGA-AC-A2FB-01 TCGA-AC-A2FG-01 TCGA-GI-A2C8-01 TCGA-E9-A295-01 diff --git a/core/src/test/scripts/test_data/study_es_3/data_gistic_genes_amp.txt b/core/src/test/scripts/test_data/study_es_3/data_gistic_genes_amp.txt deleted file mode 100644 index 4fed7d78499..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/data_gistic_genes_amp.txt +++ /dev/null @@ -1,5 +0,0 @@ -index chromosome region_start region_end peak_start peak_end enlarged_peak_start enlarged_peak_end n_genes_in_region genes_in_region n_genes_in_peak genes_in_peak n_genes_on_chip genes_on_chip top 3 amp cytoband q_value -8 6 105104338 108701250 107215848 107241341 107206929 107289865 1 NA 1 NA 1 6q21 8.7327e-14 -25 17 20903776 20926325 20909644 20914635 20804010 21012523 1 NA, 1 NA, 1 17p11.2 0.14805 -6 4 73398680 75049763 73931526 73935908 73825386 74269277 6 SNORA3,RNU6ATAC5P,RNU4ATAC9P,ANKRD17,COX18, 2 ANKRD17,COX18, 1 4q13.3 0.0030828 -21 14 37583259 38414817 38049107 38056423 37950983 38203446 4 SNORA42,TTC6,FOXA1,MIPOL1, 1 FOXA1, 1 14q21.1 0.001442 diff --git a/core/src/test/scripts/test_data/study_es_3/data_samples.txt b/core/src/test/scripts/test_data/study_es_3/data_samples.txt deleted file mode 100644 index ecc4aacc043..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/data_samples.txt +++ /dev/null @@ -1,831 +0,0 @@ -#Patient Identifier Sample Identifier Subtype Days to Sample Collection. -#Patient identifier Sample identifier Subtype description Days to sample collection. -#STRING STRING STRING STRING -#1 1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE DAYS_TO_COLLECTION -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like 1 -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like 1 -TCGA-A2-A0CM TCGA-A2-A0CM-01 basal-like 1 -TCGA-AR-A1AR TCGA-AR-A1AR-01 basal-like 1 -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like 1 -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like 1 -TCGA-B6-A0I6 TCGA-B6-A0I6-01 NA 1 -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like 1 -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like 1 -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like 1 -TCGA-BH-A0HL TCGA-BH-A0HL-01 NA 1 -TCGA-BH-A0E0 TCGA-BH-A0E0-01 basal-like 1 -TCGA-BH-A0RX TCGA-BH-A0RX-01 basal-like 1 -TCGA-A7-A13D TCGA-A7-A13D-01 basal-like 1 -TCGA-BH-A0E6 TCGA-BH-A0E6-01 basal-like 1 -TCGA-AO-A0J4 TCGA-AO-A0J4-01 basal-like 1 -TCGA-A7-A0CE TCGA-A7-A0CE-01 basal-like 1 -TCGA-A7-A13E TCGA-A7-A13E-01 NA 1 -TCGA-A7-A0DA TCGA-A7-A0DA-01 basal-like 1 -TCGA-D8-A142 TCGA-D8-A142-01 basal-like 1 -TCGA-D8-A143 TCGA-D8-A143-01 NA 1 -TCGA-AQ-A04J TCGA-AQ-A04J-01 basal-like 1 -TCGA-BH-A0HN TCGA-BH-A0HN-01 NA 1 -TCGA-A2-A0T0 TCGA-A2-A0T0-01 basal-like 1 -TCGA-A2-A0YE TCGA-A2-A0YE-01 NA 1 -TCGA-A2-A0YJ TCGA-A2-A0YJ-01 NA 1 -TCGA-A2-A0D0 TCGA-A2-A0D0-01 basal-like 1 -TCGA-A2-A04U TCGA-A2-A04U-01 NA 1 -TCGA-AO-A0J6 TCGA-AO-A0J6-01 basal-like 1 -TCGA-A2-A0YM TCGA-A2-A0YM-01 basal-like 1 -TCGA-A2-A0D2 TCGA-A2-A0D2-01 basal-like 1 -TCGA-BH-A0B3 TCGA-BH-A0B3-01 basal-like 1 -TCGA-A2-A04Q TCGA-A2-A04Q-01 basal-like 1 -TCGA-A2-A0SX TCGA-A2-A0SX-01 basal-like 1 -TCGA-AO-A0JL TCGA-AO-A0JL-01 basal-like 1 -TCGA-AO-A12F TCGA-AO-A12F-01 basal-like 1 -TCGA-BH-A0B9 TCGA-BH-A0B9-01 basal-like 1 -TCGA-A2-A04T TCGA-A2-A04T-01 NA 1 -TCGA-B6-A0RT TCGA-B6-A0RT-01 basal-like 1 -TCGA-AO-A128 TCGA-AO-A128-01 NA 1 -TCGA-AO-A129 TCGA-AO-A129-01 basal-like 1 -TCGA-AO-A124 TCGA-AO-A124-01 basal-like 1 -TCGA-B6-A0RU TCGA-B6-A0RU-01 basal-like 1 -TCGA-B6-A0IQ TCGA-B6-A0IQ-01 basal-like 1 -TCGA-B6-A0I2 TCGA-B6-A0I2-01 basal-like 1 -TCGA-B6-A0IJ TCGA-B6-A0IJ-01 basal-like 1 -TCGA-B6-A0X1 TCGA-B6-A0X1-01 NA 1 -TCGA-B6-A0RE TCGA-B6-A0RE-01 basal-like 1 -TCGA-A2-A0ST TCGA-A2-A0ST-01 basal-like 1 -TCGA-AR-A0TP TCGA-AR-A0TP-01 basal-like 1 -TCGA-A1-A0SO TCGA-A1-A0SO-01 basal-like 1 -TCGA-A8-A07C TCGA-A8-A07C-01 basal-like 1 -TCGA-A8-A07O TCGA-A8-A07O-01 basal-like 1 -TCGA-A8-A07R TCGA-A8-A07R-01 basal-like 1 -TCGA-A8-A07U TCGA-A8-A07U-01 basal-like 1 -TCGA-A8-A08H TCGA-A8-A08H-01 basal-like 1 -TCGA-A8-A08R TCGA-A8-A08R-01 basal-like 1 -TCGA-AN-A04D TCGA-AN-A04D-01 basal-like 1 -TCGA-AN-A0AL TCGA-AN-A0AL-01 basal-like 1 -TCGA-AN-A0AR TCGA-AN-A0AR-01 basal-like 1 -TCGA-AN-A0AT TCGA-AN-A0AT-01 NA 1 -TCGA-AN-A0FJ TCGA-AN-A0FJ-01 basal-like 1 -TCGA-AN-A0FL TCGA-AN-A0FL-01 basal-like 1 -TCGA-AN-A0FX TCGA-AN-A0FX-01 basal-like 1 -TCGA-AN-A0G0 TCGA-AN-A0G0-01 NA 1 -TCGA-AN-A0XU TCGA-AN-A0XU-01 basal-like 1 -TCGA-AR-A0TS TCGA-AR-A0TS-01 basal-like 1 -TCGA-AR-A0TU TCGA-AR-A0TU-01 NA 1 -TCGA-AR-A0U0 TCGA-AR-A0U0-01 NA 1 -TCGA-AR-A0U1 TCGA-AR-A0U1-01 basal-like 1 -TCGA-AR-A0U4 TCGA-AR-A0U4-01 basal-like 1 -TCGA-AR-A1AH TCGA-AR-A1AH-01 basal-like 1 -TCGA-AR-A1AI TCGA-AR-A1AI-01 basal-like 1 -TCGA-AR-A1AJ TCGA-AR-A1AJ-01 basal-like 1 -TCGA-AR-A1AQ TCGA-AR-A1AQ-01 basal-like 1 -TCGA-AR-A1AY TCGA-AR-A1AY-01 basal-like 1 -TCGA-BH-A0AV TCGA-BH-A0AV-01 basal-like 1 -TCGA-BH-A0BG TCGA-BH-A0BG-01 basal-like 1 -TCGA-BH-A0BL TCGA-BH-A0BL-01 basal-like 1 -TCGA-BH-A0BW TCGA-BH-A0BW-01 basal-like 1 -TCGA-BH-A0DL TCGA-BH-A0DL-01 basal-like 1 -TCGA-BH-A0WA TCGA-BH-A0WA-01 basal-like 1 -TCGA-BH-A18G TCGA-BH-A18G-01 NA 1 -TCGA-C8-A12K TCGA-C8-A12K-01 basal-like 1 -TCGA-C8-A12V TCGA-C8-A12V-01 basal-like 1 -TCGA-C8-A131 TCGA-C8-A131-01 basal-like 1 -TCGA-C8-A134 TCGA-C8-A134-01 basal-like 1 -TCGA-D8-A147 TCGA-D8-A147-01 basal-like 1 -TCGA-E2-A14N TCGA-E2-A14N-01 basal-like 1 -TCGA-E2-A14R TCGA-E2-A14R-01 basal-like 1 -TCGA-E2-A14X TCGA-E2-A14X-01 basal-like 1 -TCGA-E2-A14Y TCGA-E2-A14Y-01 basal-like 1 -TCGA-E2-A150 TCGA-E2-A150-01 basal-like 1 -TCGA-E2-A158 TCGA-E2-A158-01 basal-like 1 -TCGA-E2-A159 TCGA-E2-A159-01 basal-like 1 -TCGA-E2-A1AZ TCGA-E2-A1AZ-01 NA 1 -TCGA-E2-A1B5 TCGA-E2-A1B5-01 basal-like 1 -TCGA-A8-A08L TCGA-A8-A08L-01 Her2 enriched 1 -TCGA-BH-A1EV TCGA-BH-A1EV-01 Her2 enriched 1 -TCGA-B6-A0I9 TCGA-B6-A0I9-01 Her2 enriched 1 -TCGA-A8-A09X TCGA-A8-A09X-01 Her2 enriched 1 -TCGA-B6-A0IK TCGA-B6-A0IK-01 Her2 enriched 1 -TCGA-BH-A18P TCGA-BH-A18P-01 Her2 enriched 1 -TCGA-A8-A08J TCGA-A8-A08J-01 Her2 enriched 1 -TCGA-BH-A18R TCGA-BH-A18R-01 Her2 enriched 1 -TCGA-AR-A1AT TCGA-AR-A1AT-01 Her2 enriched 1 -TCGA-B6-A0RS TCGA-B6-A0RS-01 Her2 enriched 1 -TCGA-BH-A0DZ TCGA-BH-A0DZ-01 Her2 enriched 1 -TCGA-A2-A0T1 TCGA-A2-A0T1-01 Her2 enriched 1 -TCGA-AO-A0J2 TCGA-AO-A0J2-01 Her2 enriched 1 -TCGA-BH-A0AW TCGA-BH-A0AW-01 Her2 enriched 1 -TCGA-BH-A0EE TCGA-BH-A0EE-01 Her2 enriched 1 -TCGA-A2-A0D1 TCGA-A2-A0D1-01 Her2 enriched 1 -TCGA-AO-A03N TCGA-AO-A03N-01 Her2 enriched 1 -TCGA-A2-A0CY TCGA-A2-A0CY-01 Her2 enriched 1 -TCGA-A2-A04X TCGA-A2-A04X-01 Her2 enriched 1 -TCGA-A2-A0CX TCGA-A2-A0CX-01 Her2 enriched 1 -TCGA-A2-A04W TCGA-A2-A04W-01 Her2 enriched 1 -TCGA-AO-A12D TCGA-AO-A12D-01 Her2 enriched 1 -TCGA-A2-A0CL TCGA-A2-A0CL-01 Her2 enriched 1 -TCGA-AO-A0JE TCGA-AO-A0JE-01 Her2 enriched 1 -TCGA-A2-A0EQ TCGA-A2-A0EQ-01 Her2 enriched 1 -TCGA-AO-A03L TCGA-AO-A03L-01 Her2 enriched 1 -TCGA-B6-A0RH TCGA-B6-A0RH-01 Her2 enriched 1 -TCGA-A8-A075 TCGA-A8-A075-01 Her2 enriched 1 -TCGA-A8-A076 TCGA-A8-A076-01 Her2 enriched 1 -TCGA-A8-A07B TCGA-A8-A07B-01 Her2 enriched 1 -TCGA-A8-A07I TCGA-A8-A07I-01 Her2 enriched 1 -TCGA-A8-A081 TCGA-A8-A081-01 Her2 enriched 1 -TCGA-A8-A08B TCGA-A8-A08B-01 Her2 enriched 1 -TCGA-A8-A08X TCGA-A8-A08X-01 Her2 enriched 1 -TCGA-A8-A092 TCGA-A8-A092-01 Her2 enriched 1 -TCGA-A8-A094 TCGA-A8-A094-01 Her2 enriched 1 -TCGA-A8-A09G TCGA-A8-A09G-01 Her2 enriched 1 -TCGA-A8-A0A7 TCGA-A8-A0A7-01 Her2 enriched 1 -TCGA-AN-A04C TCGA-AN-A04C-01 Her2 enriched 1 -TCGA-AN-A0FV TCGA-AN-A0FV-01 Her2 enriched 1 -TCGA-AR-A0TX TCGA-AR-A0TX-01 Her2 enriched 1 -TCGA-BH-A0B7 TCGA-BH-A0B7-01 Her2 enriched 1 -TCGA-BH-A0HY TCGA-BH-A0HY-01 Her2 enriched 1 -TCGA-C8-A12L TCGA-C8-A12L-01 Her2 enriched 1 -TCGA-C8-A12P TCGA-C8-A12P-01 Her2 enriched 1 -TCGA-C8-A12Q TCGA-C8-A12Q-01 Her2 enriched 1 -TCGA-C8-A12T TCGA-C8-A12T-01 Her2 enriched 1 -TCGA-C8-A12Z TCGA-C8-A12Z-01 Her2 enriched 1 -TCGA-C8-A130 TCGA-C8-A130-01 Her2 enriched 1 -TCGA-C8-A135 TCGA-C8-A135-01 Her2 enriched 1 -TCGA-C8-A137 TCGA-C8-A137-01 Her2 enriched 1 -TCGA-C8-A138 TCGA-C8-A138-01 Her2 enriched 1 -TCGA-C8-A1HF TCGA-C8-A1HF-01 Her2 enriched 1 -TCGA-D8-A13Z TCGA-D8-A13Z-01 Her2 enriched 1 -TCGA-E2-A14P TCGA-E2-A14P-01 Her2 enriched 1 -TCGA-E2-A14V TCGA-E2-A14V-01 Her2 enriched 1 -TCGA-E2-A152 TCGA-E2-A152-01 Her2 enriched 1 -TCGA-E2-A1B0 TCGA-E2-A1B0-01 Her2 enriched 1 -TCGA-A2-A0CU TCGA-A2-A0CU-01 Luminal A 1 -TCGA-AR-A0TR TCGA-AR-A0TR-01 Luminal A 1 -TCGA-BH-A18T TCGA-BH-A18T-01 Luminal A 1 -TCGA-B6-A0I8 TCGA-B6-A0I8-01 Luminal A 1 -TCGA-B6-A0X4 TCGA-B6-A0X4-01 Luminal A 1 -TCGA-A8-A06U TCGA-A8-A06U-01 Luminal A 1 -TCGA-BH-A0EA TCGA-BH-A0EA-01 Luminal A 1 -TCGA-BH-A18N TCGA-BH-A18N-01 Luminal A 1 -TCGA-BH-A1EU TCGA-BH-A1EU-01 Luminal A 1 -TCGA-B6-A0X7 TCGA-B6-A0X7-01 Luminal A 1 -TCGA-A2-A04V TCGA-A2-A04V-01 Luminal A 1 -TCGA-BH-A18S TCGA-BH-A18S-01 Luminal A 1 -TCGA-BH-A18M TCGA-BH-A18M-01 Luminal A 1 -TCGA-B6-A0RM TCGA-B6-A0RM-01 Luminal A 1 -TCGA-BH-A1ET TCGA-BH-A1ET-01 Luminal A 1 -TCGA-B6-A0IN TCGA-B6-A0IN-01 Luminal A 1 -TCGA-BH-A1EO TCGA-BH-A1EO-01 Luminal A 1 -TCGA-B6-A0WS TCGA-B6-A0WS-01 Luminal A 1 -TCGA-B6-A0RP TCGA-B6-A0RP-01 Luminal A 1 -TCGA-B6-A0IH TCGA-B6-A0IH-01 Luminal A 1 -TCGA-B6-A0WY TCGA-B6-A0WY-01 Luminal A 1 -TCGA-BH-A1ES TCGA-BH-A1ES-01 Luminal A 1 -TCGA-B6-A0X0 TCGA-B6-A0X0-01 Luminal A 1 -TCGA-B6-A0RQ TCGA-B6-A0RQ-01 Luminal A 1 -TCGA-B6-A0IG TCGA-B6-A0IG-01 Luminal A 1 -TCGA-BH-A0HO TCGA-BH-A0HO-01 Luminal A 1 -TCGA-BH-A0DS TCGA-BH-A0DS-01 Luminal A 1 -TCGA-BH-A0DQ TCGA-BH-A0DQ-01 Luminal A 1 -TCGA-BH-A0HK TCGA-BH-A0HK-01 Luminal A 1 -TCGA-A7-A0CG TCGA-A7-A0CG-01 Luminal A 1 -TCGA-A7-A0CH TCGA-A7-A0CH-01 Luminal A 1 -TCGA-A7-A0DB TCGA-A7-A0DB-01 Luminal A 1 -TCGA-A7-A0D9 TCGA-A7-A0D9-01 Luminal A 1 -TCGA-AO-A0J8 TCGA-AO-A0J8-01 Luminal A 1 -TCGA-BH-A0GZ TCGA-BH-A0GZ-01 Luminal A 1 -TCGA-AO-A0JA TCGA-AO-A0JA-01 Luminal A 1 -TCGA-AO-A0JF TCGA-AO-A0JF-01 Luminal A 1 -TCGA-A7-A0CD TCGA-A7-A0CD-01 Luminal A 1 -TCGA-D8-A145 TCGA-D8-A145-01 Luminal A 1 -TCGA-BH-A0HP TCGA-BH-A0HP-01 Luminal A 1 -TCGA-BH-A0DK TCGA-BH-A0DK-01 Luminal A 1 -TCGA-BH-A0E2 TCGA-BH-A0E2-01 Luminal A 1 -TCGA-A2-A0YI TCGA-A2-A0YI-01 Luminal A 1 -TCGA-A2-A0YL TCGA-A2-A0YL-01 Luminal A 1 -TCGA-AO-A0JG TCGA-AO-A0JG-01 Luminal A 1 -TCGA-A2-A0YF TCGA-A2-A0YF-01 Luminal A 1 -TCGA-BH-A0DP TCGA-BH-A0DP-01 Luminal A 1 -TCGA-BH-A0E1 TCGA-BH-A0E1-01 Luminal A 1 -TCGA-A2-A0T5 TCGA-A2-A0T5-01 Luminal A 1 -TCGA-A2-A0T6 TCGA-A2-A0T6-01 Luminal A 1 -TCGA-BH-A0HI TCGA-BH-A0HI-01 Luminal A 1 -TCGA-A2-A0T7 TCGA-A2-A0T7-01 Luminal A 1 -TCGA-BH-A0BJ TCGA-BH-A0BJ-01 Luminal A 1 -TCGA-BH-A0H7 TCGA-BH-A0H7-01 Luminal A 1 -TCGA-BH-A0HF TCGA-BH-A0HF-01 Luminal A 1 -TCGA-BH-A0EB TCGA-BH-A0EB-01 Luminal A 1 -TCGA-BH-A0H6 TCGA-BH-A0H6-01 Luminal A 1 -TCGA-A2-A0YD TCGA-A2-A0YD-01 Luminal A 1 -TCGA-BH-A0HB TCGA-BH-A0HB-01 Luminal A 1 -TCGA-BH-A0HX TCGA-BH-A0HX-01 Luminal A 1 -TCGA-AO-A12H TCGA-AO-A12H-01 Luminal A 1 -TCGA-E2-A10E TCGA-E2-A10E-01 Luminal A 1 -TCGA-A2-A0D3 TCGA-A2-A0D3-01 Luminal A 1 -TCGA-E2-A10F TCGA-E2-A10F-01 Luminal A 1 -TCGA-AO-A03V TCGA-AO-A03V-01 Luminal A 1 -TCGA-A2-A0EW TCGA-A2-A0EW-01 Luminal A 1 -TCGA-BH-A0GY TCGA-BH-A0GY-01 Luminal A 1 -TCGA-A2-A0EV TCGA-A2-A0EV-01 Luminal A 1 -TCGA-BH-A0BC TCGA-BH-A0BC-01 Luminal A 1 -TCGA-A2-A0YC TCGA-A2-A0YC-01 Luminal A 1 -TCGA-A2-A0EU TCGA-A2-A0EU-01 Luminal A 1 -TCGA-A2-A0ET TCGA-A2-A0ET-01 Luminal A 1 -TCGA-A2-A04Y TCGA-A2-A04Y-01 Luminal A 1 -TCGA-BH-A0HQ TCGA-BH-A0HQ-01 Luminal A 1 -TCGA-A2-A0ES TCGA-A2-A0ES-01 Luminal A 1 -TCGA-BH-A0BA TCGA-BH-A0BA-01 Luminal A 1 -TCGA-E2-A10B TCGA-E2-A10B-01 Luminal A 1 -TCGA-BH-A0B1 TCGA-BH-A0B1-01 Luminal A 1 -TCGA-BH-A0DH TCGA-BH-A0DH-01 Luminal A 1 -TCGA-BH-A0B4 TCGA-BH-A0B4-01 Luminal A 1 -TCGA-BH-A0H9 TCGA-BH-A0H9-01 Luminal A 1 -TCGA-AO-A0J9 TCGA-AO-A0J9-01 Luminal A 1 -TCGA-AO-A12G TCGA-AO-A12G-01 Luminal A 1 -TCGA-A2-A0SY TCGA-A2-A0SY-01 Luminal A 1 -TCGA-BH-A0E7 TCGA-BH-A0E7-01 Luminal A 1 -TCGA-AO-A03M TCGA-AO-A03M-01 Luminal A 1 -TCGA-BH-A0BV TCGA-BH-A0BV-01 Luminal A 1 -TCGA-BH-A0B8 TCGA-BH-A0B8-01 Luminal A 1 -TCGA-A2-A0CZ TCGA-A2-A0CZ-01 Luminal A 1 -TCGA-A2-A0SU TCGA-A2-A0SU-01 Luminal A 1 -TCGA-AO-A12E TCGA-AO-A12E-01 Luminal A 1 -TCGA-E2-A106 TCGA-E2-A106-01 Luminal A 1 -TCGA-A2-A0CV TCGA-A2-A0CV-01 Luminal A 1 -TCGA-AO-A12C TCGA-AO-A12C-01 Luminal A 1 -TCGA-B6-A0RG TCGA-B6-A0RG-01 Luminal A 1 -TCGA-A2-A0CS TCGA-A2-A0CS-01 Luminal A 1 -TCGA-A2-A0EO TCGA-A2-A0EO-01 Luminal A 1 -TCGA-A2-A0CQ TCGA-A2-A0CQ-01 Luminal A 1 -TCGA-A2-A0EN TCGA-A2-A0EN-01 Luminal A 1 -TCGA-AO-A12A TCGA-AO-A12A-01 Luminal A 1 -TCGA-A2-A0CP TCGA-A2-A0CP-01 Luminal A 1 -TCGA-AO-A126 TCGA-AO-A126-01 Luminal A 1 -TCGA-AO-A125 TCGA-AO-A125-01 Luminal A 1 -TCGA-A2-A0EM TCGA-A2-A0EM-01 Luminal A 1 -TCGA-A2-A04N TCGA-A2-A04N-01 Luminal A 1 -TCGA-AQ-A04L TCGA-AQ-A04L-01 Luminal A 1 -TCGA-B6-A0IO TCGA-B6-A0IO-01 Luminal A 1 -TCGA-B6-A0IP TCGA-B6-A0IP-01 Luminal A 1 -TCGA-B6-A0WZ TCGA-B6-A0WZ-01 Luminal A 1 -TCGA-B6-A0I5 TCGA-B6-A0I5-01 Luminal A 1 -TCGA-B6-A0RV TCGA-B6-A0RV-01 Luminal A 1 -TCGA-B6-A0RO TCGA-B6-A0RO-01 Luminal A 1 -TCGA-B6-A0RN TCGA-B6-A0RN-01 Luminal A 1 -TCGA-B6-A0WT TCGA-B6-A0WT-01 Luminal A 1 -TCGA-B6-A0IA TCGA-B6-A0IA-01 Luminal A 1 -TCGA-B6-A0RI TCGA-B6-A0RI-01 Luminal A 1 -TCGA-A1-A0SE TCGA-A1-A0SE-01 Luminal A 1 -TCGA-A2-A0EX TCGA-A2-A0EX-01 Luminal A 1 -TCGA-AO-A0JJ TCGA-AO-A0JJ-01 Luminal A 1 -TCGA-E2-A105 TCGA-E2-A105-01 Luminal A 1 -TCGA-A1-A0SD TCGA-A1-A0SD-01 Luminal A 1 -TCGA-A1-A0SH TCGA-A1-A0SH-01 Luminal A 1 -TCGA-A1-A0SJ TCGA-A1-A0SJ-01 Luminal A 1 -TCGA-A8-A06P TCGA-A8-A06P-01 Luminal A 1 -TCGA-A8-A06T TCGA-A8-A06T-01 Luminal A 1 -TCGA-A8-A06Y TCGA-A8-A06Y-01 Luminal A 1 -TCGA-A8-A07E TCGA-A8-A07E-01 Luminal A 1 -TCGA-A8-A07F TCGA-A8-A07F-01 Luminal A 1 -TCGA-A8-A07G TCGA-A8-A07G-01 Luminal A 1 -TCGA-A8-A07J TCGA-A8-A07J-01 Luminal A 1 -TCGA-A8-A07P TCGA-A8-A07P-01 Luminal A 1 -TCGA-A8-A083 TCGA-A8-A083-01 Luminal A 1 -TCGA-A8-A086 TCGA-A8-A086-01 Luminal A 1 -TCGA-A8-A08A TCGA-A8-A08A-01 Luminal A 1 -TCGA-A8-A08C TCGA-A8-A08C-01 Luminal A 1 -TCGA-A8-A08O TCGA-A8-A08O-01 Luminal A 1 -TCGA-A8-A08T TCGA-A8-A08T-01 Luminal A 1 -TCGA-A8-A08Z TCGA-A8-A08Z-01 Luminal A 1 -TCGA-A8-A090 TCGA-A8-A090-01 Luminal A 1 -TCGA-A8-A091 TCGA-A8-A091-01 Luminal A 1 -TCGA-A8-A093 TCGA-A8-A093-01 Luminal A 1 -TCGA-A8-A099 TCGA-A8-A099-01 Luminal A 1 -TCGA-A8-A09A TCGA-A8-A09A-01 Luminal A 1 -TCGA-A8-A09B TCGA-A8-A09B-01 Luminal A 1 -TCGA-A8-A09T TCGA-A8-A09T-01 Luminal A 1 -TCGA-A8-A09V TCGA-A8-A09V-01 Luminal A 1 -TCGA-A8-A0A1 TCGA-A8-A0A1-01 Luminal A 1 -TCGA-A8-A0A2 TCGA-A8-A0A2-01 Luminal A 1 -TCGA-A8-A0A4 TCGA-A8-A0A4-01 Luminal A 1 -TCGA-A8-A0A6 TCGA-A8-A0A6-01 Luminal A 1 -TCGA-A8-A0AD TCGA-A8-A0AD-01 Luminal A 1 -TCGA-AN-A03X TCGA-AN-A03X-01 Luminal A 1 -TCGA-AN-A046 TCGA-AN-A046-01 Luminal A 1 -TCGA-AN-A04A TCGA-AN-A04A-01 Luminal A 1 -TCGA-AN-A0FD TCGA-AN-A0FD-01 Luminal A 1 -TCGA-AN-A0FN TCGA-AN-A0FN-01 Luminal A 1 -TCGA-AN-A0FS TCGA-AN-A0FS-01 Luminal A 1 -TCGA-AN-A0FT TCGA-AN-A0FT-01 Luminal A 1 -TCGA-AN-A0FW TCGA-AN-A0FW-01 Luminal A 1 -TCGA-AN-A0FZ TCGA-AN-A0FZ-01 Luminal A 1 -TCGA-AN-A0XL TCGA-AN-A0XL-01 Luminal A 1 -TCGA-AN-A0XN TCGA-AN-A0XN-01 Luminal A 1 -TCGA-AN-A0XO TCGA-AN-A0XO-01 Luminal A 1 -TCGA-AN-A0XP TCGA-AN-A0XP-01 Luminal A 1 -TCGA-AN-A0XS TCGA-AN-A0XS-01 Luminal A 1 -TCGA-AN-A0XT TCGA-AN-A0XT-01 Luminal A 1 -TCGA-AN-A0XV TCGA-AN-A0XV-01 Luminal A 1 -TCGA-AR-A0TW TCGA-AR-A0TW-01 Luminal A 1 -TCGA-AR-A1AK TCGA-AR-A1AK-01 Luminal A 1 -TCGA-AR-A1AL TCGA-AR-A1AL-01 Luminal A 1 -TCGA-AR-A1AN TCGA-AR-A1AN-01 Luminal A 1 -TCGA-AR-A1AP TCGA-AR-A1AP-01 Luminal A 1 -TCGA-AR-A1AS TCGA-AR-A1AS-01 Luminal A 1 -TCGA-AR-A1AU TCGA-AR-A1AU-01 Luminal A 1 -TCGA-AR-A1AW TCGA-AR-A1AW-01 Luminal A 1 -TCGA-AR-A1AX TCGA-AR-A1AX-01 Luminal A 1 -TCGA-BH-A0AZ TCGA-BH-A0AZ-01 Luminal A 1 -TCGA-BH-A0B0 TCGA-BH-A0B0-01 Luminal A 1 -TCGA-BH-A0BM TCGA-BH-A0BM-01 Luminal A 1 -TCGA-BH-A0BO TCGA-BH-A0BO-01 Luminal A 1 -TCGA-BH-A0BP TCGA-BH-A0BP-01 Luminal A 1 -TCGA-BH-A0BQ TCGA-BH-A0BQ-01 Luminal A 1 -TCGA-BH-A0BR TCGA-BH-A0BR-01 Luminal A 1 -TCGA-BH-A0BS TCGA-BH-A0BS-01 Luminal A 1 -TCGA-BH-A0BT TCGA-BH-A0BT-01 Luminal A 1 -TCGA-BH-A0C1 TCGA-BH-A0C1-01 Luminal A 1 -TCGA-BH-A0DE TCGA-BH-A0DE-01 Luminal A 1 -TCGA-BH-A0DG TCGA-BH-A0DG-01 Luminal A 1 -TCGA-BH-A0DI TCGA-BH-A0DI-01 Luminal A 1 -TCGA-BH-A0DO TCGA-BH-A0DO-01 Luminal A 1 -TCGA-BH-A0DT TCGA-BH-A0DT-01 Luminal A 1 -TCGA-BH-A0DX TCGA-BH-A0DX-01 Luminal A 1 -TCGA-BH-A0E9 TCGA-BH-A0E9-01 Luminal A 1 -TCGA-BH-A0EI TCGA-BH-A0EI-01 Luminal A 1 -TCGA-BH-A0H3 TCGA-BH-A0H3-01 Luminal A 1 -TCGA-BH-A0H5 TCGA-BH-A0H5-01 Luminal A 1 -TCGA-BH-A0HA TCGA-BH-A0HA-01 Luminal A 1 -TCGA-BH-A0W4 TCGA-BH-A0W4-01 Luminal A 1 -TCGA-BH-A0W5 TCGA-BH-A0W5-01 Luminal A 1 -TCGA-BH-A0W7 TCGA-BH-A0W7-01 Luminal A 1 -TCGA-BH-A18H TCGA-BH-A18H-01 Luminal A 1 -TCGA-BH-A18I TCGA-BH-A18I-01 Luminal A 1 -TCGA-C8-A12N TCGA-C8-A12N-01 Luminal A 1 -TCGA-C8-A12O TCGA-C8-A12O-01 Luminal A 1 -TCGA-C8-A12Y TCGA-C8-A12Y-01 Luminal A 1 -TCGA-C8-A132 TCGA-C8-A132-01 Luminal A 1 -TCGA-C8-A133 TCGA-C8-A133-01 Luminal A 1 -TCGA-C8-A1HI TCGA-C8-A1HI-01 Luminal A 1 -TCGA-D8-A141 TCGA-D8-A141-01 Luminal A 1 -TCGA-E2-A14Q TCGA-E2-A14Q-01 Luminal A 1 -TCGA-E2-A14T TCGA-E2-A14T-01 Luminal A 1 -TCGA-E2-A14Z TCGA-E2-A14Z-01 Luminal A 1 -TCGA-E2-A153 TCGA-E2-A153-01 Luminal A 1 -TCGA-E2-A154 TCGA-E2-A154-01 Luminal A 1 -TCGA-E2-A156 TCGA-E2-A156-01 Luminal A 1 -TCGA-E2-A15C TCGA-E2-A15C-01 Luminal A 1 -TCGA-E2-A15D TCGA-E2-A15D-01 Luminal A 1 -TCGA-E2-A15E TCGA-E2-A15E-01 Luminal A 1 -TCGA-E2-A15F TCGA-E2-A15F-01 Luminal A 1 -TCGA-E2-A15G TCGA-E2-A15G-01 Luminal A 1 -TCGA-E2-A15H TCGA-E2-A15H-01 Luminal A 1 -TCGA-E2-A15I TCGA-E2-A15I-01 Luminal A 1 -TCGA-E2-A15J TCGA-E2-A15J-01 Luminal A 1 -TCGA-E2-A15O TCGA-E2-A15O-01 Luminal A 1 -TCGA-E2-A15P TCGA-E2-A15P-01 Luminal A 1 -TCGA-E2-A15R TCGA-E2-A15R-01 Luminal A 1 -TCGA-E2-A1B1 TCGA-E2-A1B1-01 Luminal A 1 -TCGA-E2-A1B4 TCGA-E2-A1B4-01 Luminal A 1 -TCGA-E2-A1B6 TCGA-E2-A1B6-01 Luminal A 1 -TCGA-E2-A1BC TCGA-E2-A1BC-01 Luminal A 1 -TCGA-E2-A1BD TCGA-E2-A1BD-01 Luminal A 1 -TCGA-A2-A0SV TCGA-A2-A0SV-01 Luminal B 1 -TCGA-AO-A03O TCGA-AO-A03O-01 Luminal B 1 -TCGA-A2-A0SW TCGA-A2-A0SW-01 Luminal B 1 -TCGA-B6-A0WW TCGA-B6-A0WW-01 Luminal B 1 -TCGA-BH-A18J TCGA-BH-A18J-01 Luminal B 1 -TCGA-BH-A18L TCGA-BH-A18L-01 Luminal B 1 -TCGA-A8-A06X TCGA-A8-A06X-01 Luminal B 1 -TCGA-B6-A0IC TCGA-B6-A0IC-01 Luminal B 1 -TCGA-BH-A18U TCGA-BH-A18U-01 Luminal B 1 -TCGA-BH-A1EW TCGA-BH-A1EW-01 Luminal B 1 -TCGA-AR-A0TY TCGA-AR-A0TY-01 Luminal B 1 -TCGA-B6-A0X5 TCGA-B6-A0X5-01 Luminal B 1 -TCGA-B6-A0WV TCGA-B6-A0WV-01 Luminal B 1 -TCGA-B6-A0RL TCGA-B6-A0RL-01 Luminal B 1 -TCGA-AR-A0U2 TCGA-AR-A0U2-01 Luminal B 1 -TCGA-B6-A0IB TCGA-B6-A0IB-01 Luminal B 1 -TCGA-AO-A0J7 TCGA-AO-A0J7-01 Luminal B 1 -TCGA-AO-A0J3 TCGA-AO-A0J3-01 Luminal B 1 -TCGA-D8-A13Y TCGA-D8-A13Y-01 Luminal B 1 -TCGA-A7-A13F TCGA-A7-A13F-01 Luminal B 1 -TCGA-BH-A0HU TCGA-BH-A0HU-01 Luminal B 1 -TCGA-D8-A140 TCGA-D8-A140-01 Luminal B 1 -TCGA-A7-A0CJ TCGA-A7-A0CJ-01 Luminal B 1 -TCGA-AQ-A04H TCGA-AQ-A04H-01 Luminal B 1 -TCGA-BH-A0H0 TCGA-BH-A0H0-01 Luminal B 1 -TCGA-BH-A0BD TCGA-BH-A0BD-01 Luminal B 1 -TCGA-A2-A0T3 TCGA-A2-A0T3-01 Luminal B 1 -TCGA-A2-A0T4 TCGA-A2-A0T4-01 Luminal B 1 -TCGA-A2-A0YH TCGA-A2-A0YH-01 Luminal B 1 -TCGA-A2-A0YG TCGA-A2-A0YG-01 Luminal B 1 -TCGA-A2-A0EY TCGA-A2-A0EY-01 Luminal B 1 -TCGA-A2-A0D4 TCGA-A2-A0D4-01 Luminal B 1 -TCGA-BH-A0AY TCGA-BH-A0AY-01 Luminal B 1 -TCGA-E2-A107 TCGA-E2-A107-01 Luminal B 1 -TCGA-AO-A0JI TCGA-AO-A0JI-01 Luminal B 1 -TCGA-E2-A10C TCGA-E2-A10C-01 Luminal B 1 -TCGA-E2-A10A TCGA-E2-A10A-01 Luminal B 1 -TCGA-BH-A0C0 TCGA-BH-A0C0-01 Luminal B 1 -TCGA-E2-A109 TCGA-E2-A109-01 Luminal B 1 -TCGA-AO-A0JC TCGA-AO-A0JC-01 Luminal B 1 -TCGA-BH-A0HW TCGA-BH-A0HW-01 Luminal B 1 -TCGA-AO-A0JD TCGA-AO-A0JD-01 Luminal B 1 -TCGA-AO-A0JM TCGA-AO-A0JM-01 Luminal B 1 -TCGA-A2-A0CW TCGA-A2-A0CW-01 Luminal B 1 -TCGA-A2-A0ER TCGA-A2-A0ER-01 Luminal B 1 -TCGA-A2-A0CT TCGA-A2-A0CT-01 Luminal B 1 -TCGA-AO-A12B TCGA-AO-A12B-01 Luminal B 1 -TCGA-A2-A04R TCGA-A2-A04R-01 Luminal B 1 -TCGA-B6-A0IM TCGA-B6-A0IM-01 Luminal B 1 -TCGA-AO-A03P TCGA-AO-A03P-01 Luminal B 1 -TCGA-A1-A0SM TCGA-A1-A0SM-01 Luminal B 1 -TCGA-A8-A06N TCGA-A8-A06N-01 Luminal B 1 -TCGA-A8-A06O TCGA-A8-A06O-01 Luminal B 1 -TCGA-A8-A06Q TCGA-A8-A06Q-01 Luminal B 1 -TCGA-A8-A06R TCGA-A8-A06R-01 Luminal B 1 -TCGA-A8-A06Z TCGA-A8-A06Z-01 Luminal B 1 -TCGA-A8-A079 TCGA-A8-A079-01 Luminal B 1 -TCGA-A8-A07L TCGA-A8-A07L-01 Luminal B 1 -TCGA-A8-A07S TCGA-A8-A07S-01 Luminal B 1 -TCGA-A8-A07W TCGA-A8-A07W-01 Luminal B 1 -TCGA-A8-A07Z TCGA-A8-A07Z-01 Luminal B 1 -TCGA-A8-A082 TCGA-A8-A082-01 Luminal B 1 -TCGA-A8-A084 TCGA-A8-A084-01 Luminal B 1 -TCGA-A8-A085 TCGA-A8-A085-01 Luminal B 1 -TCGA-A8-A08F TCGA-A8-A08F-01 Luminal B 1 -TCGA-A8-A08G TCGA-A8-A08G-01 Luminal B 1 -TCGA-A8-A08I TCGA-A8-A08I-01 Luminal B 1 -TCGA-A8-A08P TCGA-A8-A08P-01 Luminal B 1 -TCGA-A8-A095 TCGA-A8-A095-01 Luminal B 1 -TCGA-A8-A096 TCGA-A8-A096-01 Luminal B 1 -TCGA-A8-A097 TCGA-A8-A097-01 Luminal B 1 -TCGA-A8-A09C TCGA-A8-A09C-01 Luminal B 1 -TCGA-A8-A09D TCGA-A8-A09D-01 Luminal B 1 -TCGA-A8-A09I TCGA-A8-A09I-01 Luminal B 1 -TCGA-A8-A09M TCGA-A8-A09M-01 Luminal B 1 -TCGA-A8-A09N TCGA-A8-A09N-01 Luminal B 1 -TCGA-A8-A09Q TCGA-A8-A09Q-01 Luminal B 1 -TCGA-A8-A09R TCGA-A8-A09R-01 Luminal B 1 -TCGA-A8-A09W TCGA-A8-A09W-01 Luminal B 1 -TCGA-A8-A09Z TCGA-A8-A09Z-01 Luminal B 1 -TCGA-A8-A0A9 TCGA-A8-A0A9-01 Luminal B 1 -TCGA-A8-A0AB TCGA-A8-A0AB-01 Luminal B 1 -TCGA-AN-A03Y TCGA-AN-A03Y-01 Luminal B 1 -TCGA-AN-A041 TCGA-AN-A041-01 Luminal B 1 -TCGA-AN-A049 TCGA-AN-A049-01 Luminal B 1 -TCGA-AN-A0AJ TCGA-AN-A0AJ-01 Luminal B 1 -TCGA-AN-A0AK TCGA-AN-A0AK-01 Luminal B 1 -TCGA-AN-A0AM TCGA-AN-A0AM-01 Luminal B 1 -TCGA-AN-A0AS TCGA-AN-A0AS-01 Luminal B 1 -TCGA-AN-A0FF TCGA-AN-A0FF-01 Luminal B 1 -TCGA-AN-A0FK TCGA-AN-A0FK-01 Luminal B 1 -TCGA-AN-A0FY TCGA-AN-A0FY-01 Luminal B 1 -TCGA-AN-A0XR TCGA-AN-A0XR-01 Luminal B 1 -TCGA-AN-A0XW TCGA-AN-A0XW-01 Luminal B 1 -TCGA-AR-A0TQ TCGA-AR-A0TQ-01 Luminal B 1 -TCGA-AR-A0TT TCGA-AR-A0TT-01 Luminal B 1 -TCGA-AR-A0TV TCGA-AR-A0TV-01 Luminal B 1 -TCGA-AR-A0TZ TCGA-AR-A0TZ-01 Luminal B 1 -TCGA-AR-A0U3 TCGA-AR-A0U3-01 Luminal B 1 -TCGA-AR-A1AV TCGA-AR-A1AV-01 Luminal B 1 -TCGA-BH-A0AU TCGA-BH-A0AU-01 Luminal B 1 -TCGA-BH-A0B5 TCGA-BH-A0B5-01 Luminal B 1 -TCGA-BH-A0BF TCGA-BH-A0BF-01 Luminal B 1 -TCGA-BH-A0BZ TCGA-BH-A0BZ-01 Luminal B 1 -TCGA-BH-A0C3 TCGA-BH-A0C3-01 Luminal B 1 -TCGA-BH-A0C7 TCGA-BH-A0C7-01 Luminal B 1 -TCGA-BH-A0DD TCGA-BH-A0DD-01 Luminal B 1 -TCGA-BH-A0W3 TCGA-BH-A0W3-01 Luminal B 1 -TCGA-BH-A18F TCGA-BH-A18F-01 Luminal B 1 -TCGA-C8-A12M TCGA-C8-A12M-01 Luminal B 1 -TCGA-C8-A12U TCGA-C8-A12U-01 Luminal B 1 -TCGA-C8-A12W TCGA-C8-A12W-01 Luminal B 1 -TCGA-C8-A12X TCGA-C8-A12X-01 Luminal B 1 -TCGA-C8-A1HG TCGA-C8-A1HG-01 Luminal B 1 -TCGA-C8-A1HL TCGA-C8-A1HL-01 Luminal B 1 -TCGA-C8-A1HM TCGA-C8-A1HM-01 Luminal B 1 -TCGA-C8-A1HN TCGA-C8-A1HN-01 Luminal B 1 -TCGA-E2-A14O TCGA-E2-A14O-01 Luminal B 1 -TCGA-E2-A14S TCGA-E2-A14S-01 Luminal B 1 -TCGA-E2-A14W TCGA-E2-A14W-01 Luminal B 1 -TCGA-E2-A155 TCGA-E2-A155-01 Luminal B 1 -TCGA-E2-A15A TCGA-E2-A15A-01 Luminal B 1 -TCGA-E2-A15K TCGA-E2-A15K-01 Luminal B 1 -TCGA-E2-A15L TCGA-E2-A15L-01 Luminal B 1 -TCGA-E2-A15M TCGA-E2-A15M-01 Luminal B 1 -TCGA-E2-A15S TCGA-E2-A15S-01 Luminal B 1 -TCGA-E2-A15T TCGA-E2-A15T-01 Luminal B 1 -TCGA-AO-A03U TCGA-AO-A03U-01 NA 1 -TCGA-B6-A0IE TCGA-B6-A0IE-01 NA 1 -TCGA-A2-A0YK TCGA-A2-A0YK-01 NA 1 -TCGA-E2-A108 TCGA-E2-A108-01 Claudin low 1 -TCGA-AO-A0JB TCGA-AO-A0JB-01 NA 1 -TCGA-AO-A03R TCGA-AO-A03R-01 NA 1 -TCGA-AO-A03T TCGA-AO-A03T-01 NA 1 -TCGA-AR-A1AO TCGA-AR-A1AO-01 Claudin low 1 -TCGA-A2-A0YT TCGA-A2-A0YT-01 Luminal B 1 -TCGA-AQ-A0Y5 TCGA-AQ-A0Y5-01 NA 1 -TCGA-EW-A1P8 TCGA-EW-A1P8-01 NA 1 -TCGA-E2-A1LK TCGA-E2-A1LK-01 NA 1 -TCGA-BH-A1EY TCGA-BH-A1EY-01 NA 1 -TCGA-BH-A1F8 TCGA-BH-A1F8-01 NA 1 -TCGA-BH-A1F2 TCGA-BH-A1F2-01 NA 1 -TCGA-BH-A1FD TCGA-BH-A1FD-01 NA 1 -TCGA-BH-A1FH TCGA-BH-A1FH-01 NA 1 -TCGA-BH-A203 TCGA-BH-A203-01 NA 1 -TCGA-BH-A1FM TCGA-BH-A1FM-01 NA 1 -TCGA-BH-A1EX TCGA-BH-A1EX-01 NA 1 -TCGA-BH-A1FL TCGA-BH-A1FL-01 NA 1 -TCGA-BH-A208 TCGA-BH-A208-01 NA 1 -TCGA-GM-A2D9 TCGA-GM-A2D9-01 NA 1 -TCGA-BH-A1FJ TCGA-BH-A1FJ-01 NA 1 -TCGA-BH-A1EN TCGA-BH-A1EN-01 NA 1 -TCGA-BH-A1FN TCGA-BH-A1FN-01 NA 1 -TCGA-BH-A1FU TCGA-BH-A1FU-01 NA 1 -TCGA-BH-A1FE TCGA-BH-A1FE-01 NA 1 -TCGA-BH-A204 TCGA-BH-A204-01 NA 1 -TCGA-BH-A1F5 TCGA-BH-A1F5-01 NA 1 -TCGA-AR-A256 TCGA-AR-A256-01 NA 1 -TCGA-BH-A1F6 TCGA-BH-A1F6-01 NA 1 -TCGA-BH-A1FC TCGA-BH-A1FC-01 NA 1 -TCGA-BH-A1FB TCGA-BH-A1FB-01 NA 1 -TCGA-BH-A1FG TCGA-BH-A1FG-01 NA 1 -TCGA-BH-A209 TCGA-BH-A209-01 NA 1 -TCGA-BH-A1FR TCGA-BH-A1FR-01 NA 1 -TCGA-AO-A1KS TCGA-AO-A1KS-01 NA 1 -TCGA-A7-A13G TCGA-A7-A13G-01 NA 1 -TCGA-D8-A1JS TCGA-D8-A1JS-01 NA 1 -TCGA-A7-A0DC TCGA-A7-A0DC-01 Luminal A 1 -TCGA-D8-A1JT TCGA-D8-A1JT-01 NA 1 -TCGA-A7-A26E TCGA-A7-A26E-01 NA 1 -TCGA-D8-A1JH TCGA-D8-A1JH-01 NA 1 -TCGA-D8-A1JU TCGA-D8-A1JU-01 NA 1 -TCGA-AO-A1KO TCGA-AO-A1KO-01 NA 1 -TCGA-AO-A1KT TCGA-AO-A1KT-01 NA 1 -TCGA-AO-A0J5 TCGA-AO-A0J5-01 Luminal A 1 -TCGA-B6-A1KC TCGA-B6-A1KC-01 NA 1 -TCGA-AO-A1KQ TCGA-AO-A1KQ-01 NA 1 -TCGA-B6-A1KI TCGA-B6-A1KI-01 NA 1 -TCGA-AO-A1KP TCGA-AO-A1KP-01 NA 1 -TCGA-B6-A1KF TCGA-B6-A1KF-01 NA 1 -TCGA-B6-A1KN TCGA-B6-A1KN-01 NA 1 -TCGA-D8-A1XO TCGA-D8-A1XO-01 NA 1 -TCGA-D8-A1XT TCGA-D8-A1XT-01 NA 1 -TCGA-A1-A0SP TCGA-A1-A0SP-01 NA 1 -TCGA-D8-A1J8 TCGA-D8-A1J8-01 NA 1 -TCGA-D8-A1JF TCGA-D8-A1JF-01 NA 1 -TCGA-D8-A1JG TCGA-D8-A1JG-01 NA 1 -TCGA-D8-A1XS TCGA-D8-A1XS-01 NA 1 -TCGA-A1-A0SB TCGA-A1-A0SB-01 NA 1 -TCGA-A1-A0SF TCGA-A1-A0SF-01 NA 1 -TCGA-A1-A0SG TCGA-A1-A0SG-01 NA 1 -TCGA-A1-A0SI TCGA-A1-A0SI-01 NA 1 -TCGA-A1-A0SN TCGA-A1-A0SN-01 NA 1 -TCGA-A1-A0SQ TCGA-A1-A0SQ-01 NA 1 -TCGA-A2-A1FV TCGA-A2-A1FV-01 NA 1 -TCGA-A2-A1FW TCGA-A2-A1FW-01 NA 1 -TCGA-A2-A1FX TCGA-A2-A1FX-01 NA 1 -TCGA-A2-A1FZ TCGA-A2-A1FZ-01 NA 1 -TCGA-A2-A1G0 TCGA-A2-A1G0-01 NA 1 -TCGA-A2-A1G1 TCGA-A2-A1G1-01 NA 1 -TCGA-A2-A1G4 TCGA-A2-A1G4-01 NA 1 -TCGA-A2-A1G6 TCGA-A2-A1G6-01 NA 1 -TCGA-A2-A259 TCGA-A2-A259-01 NA 1 -TCGA-A2-A25A TCGA-A2-A25A-01 NA 1 -TCGA-A2-A25B TCGA-A2-A25B-01 NA 1 -TCGA-A2-A25C TCGA-A2-A25C-01 NA 1 -TCGA-A2-A25D TCGA-A2-A25D-01 NA 1 -TCGA-A2-A25E TCGA-A2-A25E-01 NA 1 -TCGA-A2-A25F TCGA-A2-A25F-01 NA 1 -TCGA-A7-A26F TCGA-A7-A26F-01 NA 1 -TCGA-A7-A26G TCGA-A7-A26G-01 NA 1 -TCGA-A7-A26H TCGA-A7-A26H-01 NA 1 -TCGA-A7-A26I TCGA-A7-A26I-01 NA 1 -TCGA-A7-A26J TCGA-A7-A26J-01 NA 1 -TCGA-A8-A08S TCGA-A8-A08S-01 Luminal B 1 -TCGA-A8-A09E TCGA-A8-A09E-01 Luminal B 1 -TCGA-A8-A09K TCGA-A8-A09K-01 Luminal B 1 -TCGA-AC-A23C TCGA-AC-A23C-01 NA 1 -TCGA-AC-A23E TCGA-AC-A23E-01 NA 1 -TCGA-AC-A23H TCGA-AC-A23H-01 NA 1 -TCGA-AO-A1KR TCGA-AO-A1KR-01 NA 1 -TCGA-AQ-A1H2 TCGA-AQ-A1H2-01 NA 1 -TCGA-AQ-A1H3 TCGA-AQ-A1H3-01 NA 1 -TCGA-AR-A24H TCGA-AR-A24H-01 NA 1 -TCGA-AR-A24K TCGA-AR-A24K-01 NA 1 -TCGA-AR-A24L TCGA-AR-A24L-01 NA 1 -TCGA-AR-A24M TCGA-AR-A24M-01 NA 1 -TCGA-AR-A24N TCGA-AR-A24N-01 NA 1 -TCGA-AR-A24O TCGA-AR-A24O-01 NA 1 -TCGA-AR-A24P TCGA-AR-A24P-01 NA 1 -TCGA-AR-A24Q TCGA-AR-A24Q-01 NA 1 -TCGA-AR-A24R TCGA-AR-A24R-01 NA 1 -TCGA-AR-A24S TCGA-AR-A24S-01 NA 1 -TCGA-AR-A24T TCGA-AR-A24T-01 NA 1 -TCGA-AR-A24U TCGA-AR-A24U-01 NA 1 -TCGA-AR-A24V TCGA-AR-A24V-01 NA 1 -TCGA-AR-A24X TCGA-AR-A24X-01 NA 1 -TCGA-AR-A24Z TCGA-AR-A24Z-01 NA 1 -TCGA-AR-A250 TCGA-AR-A250-01 NA 1 -TCGA-AR-A251 TCGA-AR-A251-01 NA 1 -TCGA-AR-A252 TCGA-AR-A252-01 NA 1 -TCGA-AR-A254 TCGA-AR-A254-01 NA 1 -TCGA-AR-A255 TCGA-AR-A255-01 NA 1 -TCGA-BH-A0B2 TCGA-BH-A0B2-01 Luminal A 1 -TCGA-BH-A0DV TCGA-BH-A0DV-01 NA 1 -TCGA-BH-A201 TCGA-BH-A201-01 NA 1 -TCGA-BH-A202 TCGA-BH-A202-01 NA 1 -TCGA-BH-A28Q TCGA-BH-A28Q-01 NA 1 -TCGA-C8-A1HE TCGA-C8-A1HE-01 NA 1 -TCGA-C8-A1HJ TCGA-C8-A1HJ-01 NA 1 -TCGA-C8-A1HK TCGA-C8-A1HK-01 NA 1 -TCGA-C8-A1HO TCGA-C8-A1HO-01 NA 1 -TCGA-C8-A26V TCGA-C8-A26V-01 NA 1 -TCGA-C8-A26W TCGA-C8-A26W-01 NA 1 -TCGA-C8-A26X TCGA-C8-A26X-01 NA 1 -TCGA-C8-A26Y TCGA-C8-A26Y-01 NA 1 -TCGA-C8-A26Z TCGA-C8-A26Z-01 NA 1 -TCGA-C8-A273 TCGA-C8-A273-01 NA 1 -TCGA-C8-A274 TCGA-C8-A274-01 NA 1 -TCGA-C8-A275 TCGA-C8-A275-01 NA 1 -TCGA-C8-A278 TCGA-C8-A278-01 NA 1 -TCGA-C8-A27A TCGA-C8-A27A-01 NA 1 -TCGA-C8-A27B TCGA-C8-A27B-01 NA 1 -TCGA-D8-A146 TCGA-D8-A146-01 Luminal A 1 -TCGA-D8-A1J9 TCGA-D8-A1J9-01 NA 1 -TCGA-D8-A1JA TCGA-D8-A1JA-01 NA 1 -TCGA-D8-A1JB TCGA-D8-A1JB-01 NA 1 -TCGA-D8-A1JC TCGA-D8-A1JC-01 NA 1 -TCGA-D8-A1JD TCGA-D8-A1JD-01 NA 1 -TCGA-D8-A1JE TCGA-D8-A1JE-01 NA 1 -TCGA-D8-A1JI TCGA-D8-A1JI-01 NA 1 -TCGA-D8-A1JJ TCGA-D8-A1JJ-01 NA 1 -TCGA-D8-A1JK TCGA-D8-A1JK-01 NA 1 -TCGA-D8-A1JL TCGA-D8-A1JL-01 NA 1 -TCGA-D8-A1JM TCGA-D8-A1JM-01 NA 1 -TCGA-D8-A1JN TCGA-D8-A1JN-01 NA 1 -TCGA-D8-A1JP TCGA-D8-A1JP-01 NA 1 -TCGA-D8-A1X5 TCGA-D8-A1X5-01 NA 1 -TCGA-D8-A1X6 TCGA-D8-A1X6-01 NA 1 -TCGA-D8-A1X7 TCGA-D8-A1X7-01 NA 1 -TCGA-D8-A1X8 TCGA-D8-A1X8-01 NA 1 -TCGA-D8-A1X9 TCGA-D8-A1X9-01 NA 1 -TCGA-D8-A1XA TCGA-D8-A1XA-01 NA 1 -TCGA-D8-A1XB TCGA-D8-A1XB-01 NA 1 -TCGA-D8-A1XC TCGA-D8-A1XC-01 NA 1 -TCGA-D8-A1XD TCGA-D8-A1XD-01 NA 1 -TCGA-D8-A1XF TCGA-D8-A1XF-01 NA 1 -TCGA-D8-A1XG TCGA-D8-A1XG-01 NA 1 -TCGA-D8-A1XJ TCGA-D8-A1XJ-01 NA 1 -TCGA-D8-A1XK TCGA-D8-A1XK-01 NA 1 -TCGA-D8-A1XL TCGA-D8-A1XL-01 NA 1 -TCGA-D8-A1XM TCGA-D8-A1XM-01 NA 1 -TCGA-D8-A1XQ TCGA-D8-A1XQ-01 NA 1 -TCGA-D8-A1XR TCGA-D8-A1XR-01 NA 1 -TCGA-D8-A1XU TCGA-D8-A1XU-01 NA 1 -TCGA-D8-A1XV TCGA-D8-A1XV-01 NA 1 -TCGA-D8-A1XW TCGA-D8-A1XW-01 NA 1 -TCGA-D8-A1XY TCGA-D8-A1XY-01 NA 1 -TCGA-D8-A1XZ TCGA-D8-A1XZ-01 NA 1 -TCGA-D8-A1Y0 TCGA-D8-A1Y0-01 NA 1 -TCGA-D8-A1Y1 TCGA-D8-A1Y1-01 NA 1 -TCGA-D8-A1Y2 TCGA-D8-A1Y2-01 NA 1 -TCGA-D8-A1Y3 TCGA-D8-A1Y3-01 NA 1 -TCGA-D8-A27E TCGA-D8-A27E-01 NA 1 -TCGA-D8-A27F TCGA-D8-A27F-01 NA 1 -TCGA-D8-A27G TCGA-D8-A27G-01 NA 1 -TCGA-D8-A27H TCGA-D8-A27H-01 NA 1 -TCGA-D8-A27I TCGA-D8-A27I-01 NA 1 -TCGA-D8-A27K TCGA-D8-A27K-01 NA 1 -TCGA-D8-A27L TCGA-D8-A27L-01 NA 1 -TCGA-D8-A27M TCGA-D8-A27M-01 NA 1 -TCGA-D8-A27N TCGA-D8-A27N-01 NA 1 -TCGA-D8-A27P TCGA-D8-A27P-01 NA 1 -TCGA-D8-A27R TCGA-D8-A27R-01 NA 1 -TCGA-D8-A27T TCGA-D8-A27T-01 NA 1 -TCGA-D8-A27V TCGA-D8-A27V-01 NA 1 -TCGA-D8-A27W TCGA-D8-A27W-01 NA 1 -TCGA-E2-A1IE TCGA-E2-A1IE-01 NA 1 -TCGA-E2-A1IF TCGA-E2-A1IF-01 NA 1 -TCGA-E2-A1IG TCGA-E2-A1IG-01 NA 1 -TCGA-E2-A1IH TCGA-E2-A1IH-01 NA 1 -TCGA-E2-A1II TCGA-E2-A1II-01 NA 1 -TCGA-E2-A1IJ TCGA-E2-A1IJ-01 NA 1 -TCGA-E2-A1IK TCGA-E2-A1IK-01 NA 1 -TCGA-E2-A1IL TCGA-E2-A1IL-01 NA 1 -TCGA-E2-A1IN TCGA-E2-A1IN-01 NA 1 -TCGA-E2-A1IO TCGA-E2-A1IO-01 NA 1 -TCGA-E2-A1IP TCGA-E2-A1IP-01 NA 1 -TCGA-E2-A1IU TCGA-E2-A1IU-01 NA 1 -TCGA-E2-A1L6 TCGA-E2-A1L6-01 NA 1 -TCGA-E2-A1L7 TCGA-E2-A1L7-01 NA 1 -TCGA-E2-A1L8 TCGA-E2-A1L8-01 NA 1 -TCGA-E2-A1L9 TCGA-E2-A1L9-01 NA 1 -TCGA-E2-A1LA TCGA-E2-A1LA-01 NA 1 -TCGA-E2-A1LB TCGA-E2-A1LB-01 NA 1 -TCGA-E2-A1LG TCGA-E2-A1LG-01 NA 1 -TCGA-E2-A1LH TCGA-E2-A1LH-01 NA 1 -TCGA-E2-A1LI TCGA-E2-A1LI-01 NA 1 -TCGA-E2-A1LL TCGA-E2-A1LL-01 NA 1 -TCGA-E2-A1LS TCGA-E2-A1LS-01 NA 1 -TCGA-E9-A1N3 TCGA-E9-A1N3-01 NA 1 -TCGA-E9-A1N4 TCGA-E9-A1N4-01 NA 1 -TCGA-E9-A1N5 TCGA-E9-A1N5-01 NA 1 -TCGA-E9-A1N6 TCGA-E9-A1N6-01 NA 1 -TCGA-E9-A1N8 TCGA-E9-A1N8-01 NA 1 -TCGA-E9-A1N9 TCGA-E9-A1N9-01 NA 1 -TCGA-E9-A1NA TCGA-E9-A1NA-01 NA 1 -TCGA-E9-A1NC TCGA-E9-A1NC-01 NA 1 -TCGA-E9-A1ND TCGA-E9-A1ND-01 NA 1 -TCGA-E9-A1NE TCGA-E9-A1NE-01 NA 1 -TCGA-E9-A1NF TCGA-E9-A1NF-01 NA 1 -TCGA-E9-A1NG TCGA-E9-A1NG-01 NA 1 -TCGA-E9-A1NH TCGA-E9-A1NH-01 NA 1 -TCGA-E9-A1NI TCGA-E9-A1NI-01 NA 1 -TCGA-E9-A1QZ TCGA-E9-A1QZ-01 NA 1 -TCGA-E9-A1R0 TCGA-E9-A1R0-01 NA 1 -TCGA-E9-A1R2 TCGA-E9-A1R2-01 NA 1 -TCGA-E9-A1R3 TCGA-E9-A1R3-01 NA 1 -TCGA-E9-A1R4 TCGA-E9-A1R4-01 NA 1 -TCGA-E9-A1R5 TCGA-E9-A1R5-01 NA 1 -TCGA-E9-A1R6 TCGA-E9-A1R6-01 NA 1 -TCGA-E9-A1R7 TCGA-E9-A1R7-01 NA 1 -TCGA-E9-A1RA TCGA-E9-A1RA-01 NA 1 -TCGA-E9-A1RB TCGA-E9-A1RB-01 NA 1 -TCGA-E9-A1RC TCGA-E9-A1RC-01 NA 1 -TCGA-E9-A1RD TCGA-E9-A1RD-01 NA 1 -TCGA-E9-A1RE TCGA-E9-A1RE-01 NA 1 -TCGA-E9-A1RF TCGA-E9-A1RF-01 NA 1 -TCGA-E9-A1RG TCGA-E9-A1RG-01 NA 1 -TCGA-E9-A1RH TCGA-E9-A1RH-01 NA 1 -TCGA-E9-A1RI TCGA-E9-A1RI-01 NA 1 -TCGA-E9-A226 TCGA-E9-A226-01 NA 1 -TCGA-E9-A227 TCGA-E9-A227-01 NA 1 -TCGA-E9-A228 TCGA-E9-A228-01 NA 1 -TCGA-E9-A229 TCGA-E9-A229-01 NA 1 -TCGA-E9-A22A TCGA-E9-A22A-01 NA 1 -TCGA-E9-A22B TCGA-E9-A22B-01 NA 1 -TCGA-E9-A22D TCGA-E9-A22D-01 NA 1 -TCGA-E9-A22E TCGA-E9-A22E-01 NA 1 -TCGA-E9-A22G TCGA-E9-A22G-01 NA 1 -TCGA-E9-A22H TCGA-E9-A22H-01 NA 1 -TCGA-E9-A243 TCGA-E9-A243-01 NA 1 -TCGA-E9-A244 TCGA-E9-A244-01 NA 1 -TCGA-E9-A245 TCGA-E9-A245-01 NA 1 -TCGA-E9-A247 TCGA-E9-A247-01 NA 1 -TCGA-E9-A248 TCGA-E9-A248-01 NA 1 -TCGA-E9-A249 TCGA-E9-A249-01 NA 1 -TCGA-E9-A24A TCGA-E9-A24A-01 NA 1 -TCGA-EW-A1IW TCGA-EW-A1IW-01 NA 1 -TCGA-EW-A1IX TCGA-EW-A1IX-01 NA 1 -TCGA-EW-A1IY TCGA-EW-A1IY-01 NA 1 -TCGA-EW-A1IZ TCGA-EW-A1IZ-01 NA 1 -TCGA-EW-A1J1 TCGA-EW-A1J1-01 NA 1 -TCGA-EW-A1J2 TCGA-EW-A1J2-01 NA 1 -TCGA-EW-A1J3 TCGA-EW-A1J3-01 NA 1 -TCGA-EW-A1J5 TCGA-EW-A1J5-01 NA 1 -TCGA-EW-A1J6 TCGA-EW-A1J6-01 NA 1 -TCGA-EW-A1OV TCGA-EW-A1OV-01 NA 1 -TCGA-EW-A1OW TCGA-EW-A1OW-01 NA 1 -TCGA-EW-A1OX TCGA-EW-A1OX-01 NA 1 -TCGA-EW-A1OY TCGA-EW-A1OY-01 NA 1 -TCGA-EW-A1OZ TCGA-EW-A1OZ-01 NA 1 -TCGA-EW-A1P0 TCGA-EW-A1P0-01 NA 1 -TCGA-EW-A1P1 TCGA-EW-A1P1-01 NA 1 -TCGA-EW-A1P3 TCGA-EW-A1P3-01 NA 1 -TCGA-EW-A1P4 TCGA-EW-A1P4-01 NA 1 -TCGA-EW-A1P5 TCGA-EW-A1P5-01 NA 1 -TCGA-EW-A1P6 TCGA-EW-A1P6-01 NA 1 -TCGA-EW-A1P7 TCGA-EW-A1P7-01 NA 1 -TCGA-EW-A1PA TCGA-EW-A1PA-01 NA 1 -TCGA-EW-A1PB TCGA-EW-A1PB-01 NA 1 -TCGA-EW-A1PD TCGA-EW-A1PD-01 NA 1 -TCGA-EW-A1PE TCGA-EW-A1PE-01 NA 1 -TCGA-EW-A1PF TCGA-EW-A1PF-01 NA 1 -TCGA-EW-A1PG TCGA-EW-A1PG-01 NA 1 -TCGA-EW-A1PH TCGA-EW-A1PH-01 NA 1 -TCGA-EW-A2FS TCGA-EW-A2FS-01 NA 1 -TCGA-EW-A2FV TCGA-EW-A2FV-01 NA 1 -TCGA-EW-A2FW TCGA-EW-A2FW-01 NA 1 -TCGA-GM-A2DA TCGA-GM-A2DA-01 NA 1 -TCGA-GM-A2DB TCGA-GM-A2DB-01 NA 1 -TCGA-GM-A2DC TCGA-GM-A2DC-01 NA 1 -TCGA-GM-A2DD TCGA-GM-A2DD-01 NA 1 -TCGA-GM-A2DF TCGA-GM-A2DF-01 NA 1 -TCGA-GM-A2DH TCGA-GM-A2DH-01 NA 1 -TCGA-GM-A2DI TCGA-GM-A2DI-01 NA 1 -TCGA-GM-A2DK TCGA-GM-A2DK-01 NA 1 -TCGA-GM-A2DL TCGA-GM-A2DL-01 NA 1 -TCGA-GM-A2DM TCGA-GM-A2DM-01 NA 1 -TCGA-GM-A2DN TCGA-GM-A2DN-01 NA 1 -TCGA-GM-A2DO TCGA-GM-A2DO-01 NA 1 -TCGA-AR-A24W TCGA-AR-A24W-01 NA 1 -TCGA-AC-A2B8 TCGA-AC-A2B8-01 NA 1 -TCGA-AC-A2FF TCGA-AC-A2FF-01 NA 1 -TCGA-AC-A2FB TCGA-AC-A2FB-01 NA 1 -TCGA-AC-A2FG TCGA-AC-A2FG-01 NA 1 -TCGA-GI-A2C8 TCGA-GI-A2C8-01 NA 1 -TCGA-E9-A295 TCGA-E9-A295-01 NA 1 -TCGA-E2-A15E TCGA-E2-A15E-06 NA 1 -TCGA-A2-A0T2 TCGA-A2-A0T2-01 NA 1 diff --git a/core/src/test/scripts/test_data/study_es_3/data_treatment_ec50.txt b/core/src/test/scripts/test_data/study_es_3/data_treatment_ec50.txt deleted file mode 100644 index ef403f37ff2..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/data_treatment_ec50.txt +++ /dev/null @@ -1,11 +0,0 @@ -ENTITY_STABLE_ID NAME DESCRIPTION URL TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -17-AAG Different META:name for 17-AAG Desc of 17-AAG Url of 17-AAG 0.22807844 0.329701692 0.053038094 0.07082279 0.150094494 0.422571242 0.1517988 0.279530227 -AEW541 Name of AEW541 Desc of AEW541 Url of AEW541 >8 2.329924107 2 5.002314091 1.736181378 4.260821819 >8 7.613147736 -AZD0530 Name of AZD0530 Desc of AZD0530 Url of AZD0530 >8 >8 4.597949505 3.192236662 >8 7.261883259 1.071310043 >8 -AZD6244 Name of AZD6244 Desc of AZD6244 Url of AZD6244 >8 >8 >8 >8 >8 >8 >8 >8 -Erlotinib Name of Erlotinib Desc of Erlotinib Url of Erlotinib >8 >8 >8 2.439512491 >8 4.232964516 2 >8 -Irinotecan Name of Irinotecan Desc of Irinotecan Url of Irinotecan NA 0.080764666 NA 0.06704437 0.069568723 0.034992039 0.740817904 0.209220141 -L-685458 Name of L-685458 Desc of L-685458 Url of L-685458 >8 >8 3.267752409 >8 >8 0.332892686 >8 >8 -Lapatinib Name of Lapatinib Desc of Lapatinib Url of Lapatinib >8 7.847305298 >8 2.30776763 >8 0.849476227 1.057461143 7.178035259 -LBW242 Name of LBW242 Desc of LBW242 Url of LBW242 >8 >8 >8 >8 >8 >8 >8 >8 -Nilotinib Name of Nilotinib Desc of Nilotinib Url of Nilotinib NA >8 NA 7.475354671 >8 1.910434365 >8 >8 diff --git a/core/src/test/scripts/test_data/study_es_3/data_treatment_ic50.txt b/core/src/test/scripts/test_data/study_es_3/data_treatment_ic50.txt deleted file mode 100644 index c9b832d3280..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/data_treatment_ic50.txt +++ /dev/null @@ -1,11 +0,0 @@ -ENTITY_STABLE_ID NAME DESCRIPTION URL TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 -17-AAG Name of 17-AAG Desc of 17-AAG Url of 17-AAG 0.22807844 0.329701692 0.053038094 0.07082279 0.150094494 0.422571242 0.1517988 0.279530227 -AEW541 Name of AEW541 Desc of AEW541 Url of AEW541 >8 2.329924107 2 5.002314091 1.736181378 4.260821819 >8 7.613147736 -AZD0530 Name of AZD0530 Desc of AZD0530 Url of AZD0530 >8 >8 4.597949505 3.192236662 >8 7.261883259 1.071310043 >8 -AZD6244 Name of AZD6244 Desc of AZD6244 Url of AZD6244 >8 >8 >8 >8 >8 >8 >8 >8 -Erlotinib Name of Erlotinib Desc of Erlotinib Url of Erlotinib >8 >8 >8 2.439512491 >8 4.232964516 2 >8 -Irinotecan Name of Irinotecan Desc of Irinotecan Url of Irinotecan NA 0.080764666 NA 0.06704437 0.069568723 0.034992039 0.740817904 0.209220141 -L-685458 Name of L-685458 Desc of L-685458 Url of L-685458 >8 >8 3.267752409 >8 >8 0.332892686 >8 >8 -Lapatinib Name of Lapatinib Desc of Lapatinib Url of Lapatinib >8 7.847305298 >8 2.30776763 >8 0.849476227 1.057461143 7.178035259 -LBW242 Name of LBW242 Desc of LBW242 Url of LBW242 >8 >8 >8 >8 >8 >8 >8 >8 -Nilotinib Name of Nilotinib Desc of Nilotinib Url of Nilotinib NA >8 NA 7.475354671 >8 1.910434365 >8 >8 diff --git a/core/src/test/scripts/test_data/study_es_3/meta_gistic_genes_amp.txt b/core/src/test/scripts/test_data/study_es_3/meta_gistic_genes_amp.txt deleted file mode 100644 index f548ab4791d..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/meta_gistic_genes_amp.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: GISTIC_GENES_AMP -datatype: Q-VALUE -reference_genome_id: hg19 -data_filename: data_gistic_genes_amp.txt diff --git a/core/src/test/scripts/test_data/study_es_3/meta_samples.txt b/core/src/test/scripts/test_data/study_es_3/meta_samples.txt deleted file mode 100644 index 3209a7d27dd..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/meta_samples.txt +++ /dev/null @@ -1,7 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -show_profile_in_analysis_tab: false -profile_description: Sample clinical data for this study. -profile_name: Sample clinical data for brca_tcga_pub. -data_filename: data_samples.txt diff --git a/core/src/test/scripts/test_data/study_es_3/meta_study.txt b/core/src/test/scripts/test_data/study_es_3/meta_study.txt deleted file mode 100644 index c6a63249bbd..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/meta_study.txt +++ /dev/null @@ -1,7 +0,0 @@ -type_of_cancer: brca -cancer_study_identifier: brca_tcga_pub -name: Breast Invasive Carcinoma (TCGA, Nature 2012) -description: The Cancer Genome Atlas (TCGA) Breast Invasive Carcinoma project. 825 cases.
    Nature 2012. Raw data via the TCGA Data Portal. -citation: TCGA, Nature 2012 -pmid: 23000897 -groups: PUBLIC;GDAC;SU2C-PI3K diff --git a/core/src/test/scripts/test_data/study_es_3/meta_treatment_ec50.txt b/core/src/test/scripts/test_data/study_es_3/meta_treatment_ec50.txt deleted file mode 100644 index 018cbc0d0e1..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/meta_treatment_ec50.txt +++ /dev/null @@ -1,12 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: GENERIC_ASSAY -generic_assay_type: TREATMENT_RESPONSE -datatype: LIMIT-VALUE -stable_id: treatment_ec50 -profile_name: EC50 values of compounds on cellular phenotype readout -profile_description: EC50 (compound concentration resulting in half maximal activation) of compounds on cellular phenotype readout of cultured mutant cell lines. -data_filename: data_treatment_ec50.txt -show_profile_in_analysis_tab: true -pivot_threshold_value: 0.1 -value_sort_order: ASC -generic_entity_meta_properties: NAME,DESCRIPTION,URL \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_3/meta_treatment_ic50.txt b/core/src/test/scripts/test_data/study_es_3/meta_treatment_ic50.txt deleted file mode 100644 index 734b47e8c84..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/meta_treatment_ic50.txt +++ /dev/null @@ -1,12 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: GENERIC_ASSAY -generic_assay_type: TREATMENT_RESPONSE -datatype: LIMIT-VALUE -stable_id: treatment_ic50 -profile_name: IC50 values of compounds on cellular phenotype readout -profile_description: IC50 (compound concentration resulting in half maximal inhibition) of compounds on cellular phenotype readout of cultured mutant cell lines. -data_filename: data_treatment_ic50.txt -show_profile_in_analysis_tab: true -pivot_threshold_value: 0.1 -value_sort_order: ASC -generic_entity_meta_properties: NAME,DESCRIPTION,URL \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_3/result_report.html b/core/src/test/scripts/test_data/study_es_3/result_report.html deleted file mode 100644 index b76f3fd4e46..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/result_report.html +++ /dev/null @@ -1,511 +0,0 @@ - - - - - - - - - - - - - cBioPortal validation report: study in '/home/pnp300/git/cbioportal/core/src/test/scripts/test_data/study_es_3' - - - - - -
    -
    -
    -

    cBioPortal validation report

    -

    Study directory:
    /home/pnp300/git/cbioportal/core/src/test/scripts/test_data/study_es_3

    -

    For details, please see the documentation on file formats supported by cBioPortal

    -

    cBioPortal version unknown -- offline instance

    -
    -
    - -
    -
    -

    Legend

    -
    -
    -

    - Click on a filename below to see a table of messages about the data - in the file. The colors in the tables have the following meanings: -

    - - - - - - - - - - - - - - - - - - - -
    ErrorError: cBioPortal will not know how to load this, please revise or remove
    WarningWarning: possible cause of confusion, please check whether this is intended
    InfoInfo: this looks good, no action required
    DebugVerbose output: details on the progress of the validation script
    -
    -
    - -
    -
    -
    - Validation status: - - Please check - -
    - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of case list folder complete
    InfoValidation complete
    -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of file complete
    InfoRead 831 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    Warning2Name `Different name for 17-AAG` for treatment `17-AAG` is different from name `Name of 17-AAG` present in the cBioPortal database. Treatment names in cBioPortal always reflect treatment names in the last imported study. Different name for 17-AAG
    Warning3, 67, 11Value has no decimals and may represent an invalid response value.2
    InfoValidation of file complete
    InfoRead 11 lines. Lines with warning: 3. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    Warning3, 67, 11Value has no decimals and may represent an invalid response value.2
    InfoValidation of file complete
    InfoRead 11 lines. Lines with warning: 2. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    WarningUnrecognized field in meta fileshow_profile_in_analysis_tab, profile_description, profile_name
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - - -
    -
    -
    -
    - - \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_3/study_es_3.html b/core/src/test/scripts/test_data/study_es_3/study_es_3.html deleted file mode 100644 index 9d9ed928058..00000000000 --- a/core/src/test/scripts/test_data/study_es_3/study_es_3.html +++ /dev/null @@ -1,511 +0,0 @@ - - - - - - - - - - - - - cBioPortal validation report: study in '/home/pnp300/git/cbioportal/core/src/test/scripts/test_data/study_es_3' - - - - - -
    -
    -
    -

    cBioPortal validation report

    -

    Study directory:
    /home/pnp300/git/cbioportal/core/src/test/scripts/test_data/study_es_3

    -

    For details, please see the documentation on file formats supported by cBioPortal

    -

    cBioPortal version 1.19.0-SNAPSHOT

    -
    -
    - -
    -
    -

    Legend

    -
    -
    -

    - Click on a filename below to see a table of messages about the data - in the file. The colors in the tables have the following meanings: -

    - - - - - - - - - - - - - - - - - - - -
    ErrorError: cBioPortal will not know how to load this, please revise or remove
    WarningWarning: possible cause of confusion, please check whether this is intended
    InfoInfo: this looks good, no action required
    DebugVerbose output: details on the progress of the validation script
    -
    -
    - -
    -
    -
    - Validation status: - - Please check - -
    - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of case list folder complete
    InfoValidation complete
    -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of file complete
    InfoRead 831 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    Warning2Name `Different name for 17-AAG` for treatment `17-AAG` is different from name `Name of 17-AAG` present in the cBioPortal database. Treatment names in cBioPortal always reflect treatment names in the last imported study. Different name for 17-AAG
    Warning3, 67, 11Value has no decimals and may represent an invalid response value.2
    InfoValidation of file complete
    InfoRead 11 lines. Lines with warning: 3. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    Warning3, 67, 11Value has no decimals and may represent an invalid response value.2
    InfoValidation of file complete
    InfoRead 11 lines. Lines with warning: 2. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    WarningUnrecognized field in meta fileshow_profile_in_analysis_tab, profile_description, profile_name
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    InfoValidation of meta file complete
    -
    -
    -
    - - -
    -
    -
    -
    - - \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_metastableid/cancer_type.txt b/core/src/test/scripts/test_data/study_metastableid/cancer_type.txt deleted file mode 100644 index 45afdad1b08..00000000000 --- a/core/src/test/scripts/test_data/study_metastableid/cancer_type.txt +++ /dev/null @@ -1 +0,0 @@ -brca Invasive Breast Carcinoma breast pink breast diff --git a/core/src/test/scripts/test_data/study_metastableid/meta_CNA.txt b/core/src/test/scripts/test_data/study_metastableid/meta_CNA.txt deleted file mode 100644 index 039a9d91b6e..00000000000 --- a/core/src/test/scripts/test_data/study_metastableid/meta_CNA.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: DISCRETE -stable_id: gistic -show_profile_in_analysis_tab: true -profile_description: Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification. -profile_name: Putative copy-number alterations from GISTIC -data_filename: data_CNA.txt diff --git a/core/src/test/scripts/test_data/study_metastableid/meta_CNA2.txt b/core/src/test/scripts/test_data/study_metastableid/meta_CNA2.txt deleted file mode 100644 index 039a9d91b6e..00000000000 --- a/core/src/test/scripts/test_data/study_metastableid/meta_CNA2.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: DISCRETE -stable_id: gistic -show_profile_in_analysis_tab: true -profile_description: Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification. -profile_name: Putative copy-number alterations from GISTIC -data_filename: data_CNA.txt diff --git a/core/src/test/scripts/test_data/study_metastableid/meta_cancer_type.txt b/core/src/test/scripts/test_data/study_metastableid/meta_cancer_type.txt deleted file mode 100644 index d578a428970..00000000000 --- a/core/src/test/scripts/test_data/study_metastableid/meta_cancer_type.txt +++ /dev/null @@ -1,3 +0,0 @@ -genetic_alteration_type: CANCER_TYPE -datatype: CANCER_TYPE -data_filename: cancer_type.txt diff --git a/core/src/test/scripts/test_data/study_metastableid/meta_expression_median_correct.txt b/core/src/test/scripts/test_data/study_metastableid/meta_expression_median_correct.txt deleted file mode 100644 index 0e183047e1b..00000000000 --- a/core/src/test/scripts/test_data/study_metastableid/meta_expression_median_correct.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: MRNA_EXPRESSION -datatype: CONTINUOUS -stable_id: mrna -profile_description: Expression levels (Agilent microarray). -show_profile_in_analysis_tab: false -profile_name: mRNA expression (microarray) -data_filename: data_expression_median.txt diff --git a/core/src/test/scripts/test_data/study_metastableid/meta_expression_median_wrong.txt b/core/src/test/scripts/test_data/study_metastableid/meta_expression_median_wrong.txt deleted file mode 100644 index 377a05b54ae..00000000000 --- a/core/src/test/scripts/test_data/study_metastableid/meta_expression_median_wrong.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: MRNA_EXPRESSION -datatype: CONTINUOUS -stable_id: mrna_test -profile_description: Expression levels (Agilent microarray). -show_profile_in_analysis_tab: false -profile_name: mRNA expression (microarray) -data_filename: data_expression_median.txt diff --git a/core/src/test/scripts/test_data/study_metastableid/meta_profile_stableId_unallowedchars.txt b/core/src/test/scripts/test_data/study_metastableid/meta_profile_stableId_unallowedchars.txt deleted file mode 100644 index 2587aa5855d..00000000000 --- a/core/src/test/scripts/test_data/study_metastableid/meta_profile_stableId_unallowedchars.txt +++ /dev/null @@ -1,12 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: GENERIC_ASSAY -generic_assay_type: TREATMENT_RESPONSE -datatype: LIMIT-VALUE -stable_id: treatment ic50 -profile_name: IC50 values of compounds on cellular phenotype readout -profile_description: IC50 (compound concentration resulting in half maximal inhibition) of compounds on cellular phenotype readout of cultured mutant cell lines. -data_filename: data_treatment_ic50.txt -show_profile_in_analysis_tab: true -pivot_threshold_value: 0.1 -value_sort_order: ASC -generic_entity_meta_properties: NAME,DESCRIPTION,URL \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_metastableid/meta_samples.txt b/core/src/test/scripts/test_data/study_metastableid/meta_samples.txt deleted file mode 100644 index 2f7c8fb76d7..00000000000 --- a/core/src/test/scripts/test_data/study_metastableid/meta_samples.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -stable_id: clinical -data_filename: data_samples.txt diff --git a/core/src/test/scripts/test_data/study_metastableid/meta_study.txt b/core/src/test/scripts/test_data/study_metastableid/meta_study.txt deleted file mode 100644 index c6a63249bbd..00000000000 --- a/core/src/test/scripts/test_data/study_metastableid/meta_study.txt +++ /dev/null @@ -1,7 +0,0 @@ -type_of_cancer: brca -cancer_study_identifier: brca_tcga_pub -name: Breast Invasive Carcinoma (TCGA, Nature 2012) -description: The Cancer Genome Atlas (TCGA) Breast Invasive Carcinoma project. 825 cases.
    Nature 2012. Raw data via the TCGA Data Portal. -citation: TCGA, Nature 2012 -pmid: 23000897 -groups: PUBLIC;GDAC;SU2C-PI3K diff --git a/core/src/test/scripts/test_data/study_missing_caselists/brca_tcga_pub.maf b/core/src/test/scripts/test_data/study_missing_caselists/brca_tcga_pub.maf deleted file mode 100644 index f3421ffca90..00000000000 --- a/core/src/test/scripts/test_data/study_missing_caselists/brca_tcga_pub.maf +++ /dev/null @@ -1,33 +0,0 @@ -#version 2.4 -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All cbp_driver cbp_driver_annotation cbp_driver_tiers cbp_driver_tiers_annotation -OR11H1 genome.wustl.edu GRCh37 22 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC ENSG00000130538 65 0 0 38 6 13.64 - - - 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC - - - Putative_Driver Test driver -TMEM247 genome.wustl.edu GRCh37 2 46707888 46707888 1 Frame_Shift_Del DEL G G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 0 0 TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; - ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga COSM1408208,~rs70940616 1 TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN UPI0000366EF8 NM_001145051.2 2/3 Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 -:0.0202 -:0.0439 1 HIGH 1 deletion 1 1 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n 1 known frame_shift_del c.462 p.A155fs 83 - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 0 0 7 3 30 - - - 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n 1 known frame_shift_del c.462 p.A155fs 83 - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC - - - Putative_Passenger Test passenger Class 2 Class annotation -ABLIM1 genome.wustl.edu GRCh37 10 116247760 116247760 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 0 0 ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; C ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 1 ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 1,1,1 MODERATE 1 SNV 1,1,1 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC ENSG00000099204 77 0 0 36 13 26.53 - - - 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC - - - Putative_Driver Test driver Class 1 Class annotation -ADAMTS20 genome.wustl.edu GRCh37 12 43944926 43944926 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.Tyr80Cys p.Y80C ENST00000389420 2/39 0 0 ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; C ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 1 ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 1,1 MODERATE 1 SNV 1,1 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC ENSG00000173157 50 0 0 19 17 45.95 - - - 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC - - - Unknown Class 4 Class annotation -CADM2 genome.wustl.edu GRCh37 3 85932472 85932472 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.R81R ENST00000407528 3/10 0 0 CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; T ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 R cgC/cgT COSM1178952,COSM1178953 1 CADM2 HGNC 29849 protein_coding CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 3/10 PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,Pfam_domain:PF07686,Gene3D:2.60.40.10,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 1,1 LOW SNV 1,1 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n 1 known silent c.249 p.R83 920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC ENSG00000175161 57 0 0 22 23 51.11 - - - 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n 1 known silent c.249 p.R83 920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC - - - Putative_Driver Test driver Class 4 Class annotation -DTNB genome.wustl.edu GRCh37 2 25678299 25678299 -1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2125 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144C>A p.Val382Met p.V382M ENST00000406818 11/21 0 0 DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; T ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 1 DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 hmmpanther:PTHR11915:SF227,hmmpanther:PTHR11915,PIRSF_domain:PIRSF038204 1,1 MODERATE 1 SNV 1,1 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC ENSG00000138101 35 0 0 9 9 50 - - - 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC - - - Putative_Passenger Test passenger Class 1 Class annotation -KAT2A genome.wustl.edu GRCh37 17 40272381 40272381 -1 Silent SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.471C>T p.= p.H157H ENST00000225916 3/18 0 0 KAT2A,synonymous_variant,p.=,ENST00000225916,NM_021078.2;CTD-2132N18.3,synonymous_variant,p.=,ENST00000592574,;RAB5C,downstream_gene_variant,,ENST00000393860,NM_201434.2;RAB5C,downstream_gene_variant,,ENST00000346213,NM_004583.3;HSPB9,upstream_gene_variant,,ENST00000355067,NM_033194.2;CTD-2132N18.3,missense_variant,p.Thr150Met,ENST00000592248,;KAT2A,synonymous_variant,p.=,ENST00000465682,;CTD-2132N18.3,3_prime_UTR_variant,,ENST00000585562,;KAT2A,upstream_gene_variant,,ENST00000592310,;KAT2A,upstream_gene_variant,,ENST00000588759,; A ENSG00000108773 ENST00000225916 Transcript synonymous_variant 525/3109 471/2514 157/837 H caC/caT rs536716483,COSM1479581 1 KAT2A HGNC 4201 protein_coding YES CCDS11417.1 ENSP00000225916 KAT2A_HUMAN K7ERS6_HUMAN UPI000000D978 NM_021078.2 3/18 hmmpanther:PTHR22880:SF124,hmmpanther:PTHR22880,Pfam_domain:PF06466,PIRSF_domain:PIRSF003048 A:0.0002 A:0 A:0 A:0.001 A:0 A:0 0,1 LOW 1 SNV 0,1 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene ENSG00000267261 40 0 0 30 36 54.55 - - - 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene - - - Putative_Driver Test driver Class 1 Class annotation -MSH3 genome.wustl.edu GRCh37 5 80024722 80024722 1 Frame_Shift_Del DEL T T - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1508delT p.Leu503TrpfsTer5 p.L503Wfs*5 ENST00000265081 10/24 0 0 MSH3,frameshift_variant,p.Leu503TrpfsTer5,ENST00000265081,NM_002439.4;MSH3,non_coding_transcript_exon_variant,,ENST00000512258,; - ENSG00000113318 ENST00000265081 Transcript frameshift_variant 1586/4092 1506/3414 502/1137 S/X tcT/tc 1 MSH3 HGNC 7326 protein_coding YES CCDS34195.1 ENSP00000265081 MSH3_HUMAN UPI0000DBEE85 NM_002439.4 10/24 Superfamily_domains:SSF53150,Gene3D:3.30.420.110,Pfam_domain:PF05188,hmmpanther:PTHR11361,hmmpanther:PTHR11361:SF34 HIGH 1 deletion 2 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n 1 known frame_shift_del c.1506 p.L503fs 998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC ENSG00000113318 83 0 0 12 2 14.29 - - - 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n 1 known frame_shift_del c.1506 p.L503fs 998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC - - - Putative_Passenger Test passenger Class 3 Class annotation -MYB genome.wustl.edu GRCh37 6 135507043 135507044 1 Frame_Shift_Ins INS - - A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 - - Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 2/15 0 0 MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000341911,NM_001130173.1,NM_001161658.1,NM_001161656.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000316528,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000442647,NM_001161660.1,NM_001130172.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367814,NM_001161659.1,NM_005375.2;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525369,NM_001161657.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000527615,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528774,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534121,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533624,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534044,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000420123,;MYB,upstream_gene_variant,,ENST00000430686,;MYB,non_coding_transcript_exon_variant,,ENST00000531845,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367812,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533837,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000438901,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525477,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000463282,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000339290,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533808,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525514,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529586,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526889,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526320,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531519,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533384,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531737,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529262,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526565,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528015,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526187,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525002,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528343,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528140,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528345,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525940,;MYB,frameshift_variant,p.Tyr10Ter,ENST00000531634,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000524588,; A ENSG00000118513 ENST00000367814 Transcript frameshift_variant 212-213/3302 26-27/1923 9/640 I/IX ata/atAa COSM1487247,COSM1487248 1 MYB HGNC 7545 protein_coding CCDS5174.1 ENSP00000356788 MYB_HUMAN Q9UMI7_HUMAN,Q708J0_HUMAN,Q708E9_HUMAN,Q708E3_HUMAN UPI000012FAEA NM_001161659.1,NM_005375.2 2/15 hmmpanther:PTHR10641,hmmpanther:PTHR10641:SF454 1,1 HIGH insertion 1 1,1 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n 1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC ENSG00000118513 50 0 0 36 4 10 - - - 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n 1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC - - - Putative_Passenger Test passenger -NPIPB15 genome.wustl.edu GRCh37 16 74425902 74425902 1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx neutral 0 I358T getma.org/?cm=msa&ty=f&p=NPPL2_HUMAN&rb=283&re=382&var=I358T getma.org/?cm=var&var=hg19,16,74425902,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1256T>C p.Ile419Thr p.I419T ENST00000429990 7/7 0 0 NPIPB15,missense_variant,p.Ile419Thr,ENST00000429990,; C ENSG00000196436 ENST00000429990 Transcript missense_variant 1352/1428 1256/1332 419/443 I/T aTa/aCa rs141751158,COSM1479088,COSM1479089 1 NPIPB15 HGNC 34409 protein_coding YES ENSP00000411140 NPB15_HUMAN UPI000198C783 tolerated_low_confidence(0.06) benign(0.341) 7/7 hmmpanther:PTHR15438 0,1,1 MODERATE 1 SNV 0,1,1 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n 1 known missense c.1256 p.I419T 999 pfam_NPIP - no_errors NPIPL2 HGNC ENSG00000196436 20 0 0 10 4 28.57 - - - 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n 1 known missense c.1256 p.I419T 999 pfam_NPIP - no_errors NPIPL2 HGNC - - - Putative_Passenger Test passenger Class 1 Class annotation -OTOR genome.wustl.edu GRCh37 20 16730581 16730581 1 Missense_Mutation SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.69 V97M getma.org/?cm=msa&ty=f&p=OTOR_HUMAN&rb=43&re=108&var=V97M getma.org/pdb.php?prot=OTOR_HUMAN&from=43&to=108&var=V97M getma.org/?cm=var&var=hg19,20,16730581,G,A&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.289G>A p.Val97Met p.V97M ENST00000246081 3/4 0 0 OTOR,missense_variant,p.Val97Met,ENST00000246081,NM_020157.3;OTOR,non_coding_transcript_exon_variant,,ENST00000486129,;OTOR,intron_variant,,ENST00000490148,; A ENSG00000125879 ENST00000246081 Transcript missense_variant 333/1477 289/387 97/128 V/M Gtg/Atg COSM1410526 1 OTOR HGNC 8517 protein_coding YES CCDS13124.1 ENSP00000246081 OTOR_HUMAN UPI0000047809 NM_020157.3 deleterious(0) benign(0.344) 3/4 hmmpanther:PTHR23158,Gene3D:2.30.30.40,Pfam_domain:PF07653,SMART_domains:SM00326,Superfamily_domains:SSF50044 1 MODERATE 1 SNV 1 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n 1 known missense c.289 p.V97M 963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC ENSG00000125879 57 0 0 36 9 20 - - - 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n 1 known missense c.289 p.V97M 963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC - - - Class 2 Class annotation -P2RY10 genome.wustl.edu GRCh37 X 78216689 78216689 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.672C>T p.= p.S224S ENST00000171757 4/4 0 0 P2RY10,synonymous_variant,p.=,ENST00000171757,NM_014499.2;P2RY10,synonymous_variant,p.=,ENST00000544091,NM_198333.1;P2RY10,downstream_gene_variant,,ENST00000475374,;P2RY10,downstream_gene_variant,,ENST00000461541,; T ENSG00000078589 ENST00000171757 Transcript synonymous_variant 952/1714 672/1020 224/339 S tcC/tcT COSM1491292 1 P2RY10 HGNC 19906 protein_coding YES CCDS14442.1 ENSP00000171757 P2Y10_HUMAN UPI0000050471 NM_014499.2 4/4 PROSITE_profiles:PS50262,hmmpanther:PTHR24232:SF6,hmmpanther:PTHR24232,Gene3D:1.20.1070.10,Pfam_domain:PF00001,Superfamily_domains:SSF81321 1 LOW 1 SNV 1 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n 1 known silent c.672 p.S224 92 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC ENSG00000078589 65 0 0 46 10 17.86 - - - X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n 1 known silent c.672 p.S224 92 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC - - - Putative_Driver Test driver Class 3 Class annotation -PIEZO1 genome.wustl.edu GRCh37 16 88790292 88790292 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.18 Q1441R getma.org/?cm=msa&ty=f&p=PIEZ1_HUMAN&rb=58&re=1627&var=Q1441R getma.org/?cm=var&var=hg19,16,88790292,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.4322A>G p.Gln1441Arg p.Q1441R ENST00000301015 31/51 0 0 PIEZO1,missense_variant,p.Gln1441Arg,ENST00000301015,NM_001142864.2;PIEZO1,missense_variant,p.Gln115Arg,ENST00000474606,;PIEZO1,upstream_gene_variant,,ENST00000327397,;PIEZO1,upstream_gene_variant,,ENST00000466823,;RP5-1142A6.9,downstream_gene_variant,,ENST00000564984,;PIEZO1,non_coding_transcript_exon_variant,,ENST00000566414,;PIEZO1,upstream_gene_variant,,ENST00000419505,;PIEZO1,upstream_gene_variant,,ENST00000497793,;PIEZO1,upstream_gene_variant,,ENST00000495568,;PIEZO1,downstream_gene_variant,,ENST00000475586,;PIEZO1,downstream_gene_variant,,ENST00000491917,; C ENSG00000103335 ENST00000301015 Transcript missense_variant 4569/8072 4322/7566 1441/2521 Q/R cAg/cGg COSM1479166 1 PIEZO1 HGNC 28993 protein_coding YES CCDS54058.1 ENSP00000301015 PIEZ1_HUMAN UPI0001B300F3 NM_001142864.2 tolerated(0.25) possibly_damaging(0.78) 31/51 hmmpanther:PTHR13167,hmmpanther:PTHR13167:SF40 1 MODERATE 1 SNV 1 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1000 pfam_DUF3595 - no_errors PIEZO1 HGNC ENSG00000103335 37 0 0 20 8 28.57 - - - 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1000 pfam_DUF3595 - no_errors PIEZO1 HGNC - - - Putative_Passenger Test passenger Class 3 Class annotation -TP53 genome.wustl.edu GRCh37 17 7578253 7578253 0 Missense_Mutation SNP C C A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A C Unknown Germline Phase_IV Capture 1 dbGAP IlluminaGAIIx medium 3.005 getma.org/?cm=msa&ty=f&p=P53_HUMAN&rb=95&re=289&var=G199V getma.org/pdb.php?prot=P53_HUMAN&from=95&to=289&var=G199V getma.org/?cm=var&var=hg19,17,7578253,C,A&fts=all ENST00000269305.4:c.596G>T p.Gly199Val p.G199V ENST00000269305 11-Jun 0 0 TP53,missense_variant,p.Gly199Val,ENST00000420246,NM_001126114.2,NM_001276696.1;TP53,missense_variant,p.Gly199Val,ENST00000455263,NM_001276695.1,NM_001126113.2;TP53,missense_variant,p.Gly199Val,ENST00000269305,NM_001126112.2,NM_001276761.1,NM_001276760.1,NM_000546.5,NM_001126118.1;TP53,missense_variant,p.Gly199Val,ENST00000445888,;TP53,missense_variant,p.Gly199Val,ENST00000359597,;TP53,missense_variant,p.Gly199Val,ENST00000413465,;TP53,missense_variant,p.Gly67Val,ENST00000509690,;TP53,missense_variant,p.Gly106Val,ENST00000514944,;TP53,downstream_gene_variant,,ENST00000508793,;TP53,downstream_gene_variant,,ENST00000604348,;TP53,downstream_gene_variant,,ENST00000503591,;TP53,upstream_gene_variant,,ENST00000576024,;TP53,intron_variant,,ENST00000574684,;TP53,non_coding_transcript_exon_variant,,ENST00000510385,;TP53,non_coding_transcript_exon_variant,,ENST00000504290,;TP53,non_coding_transcript_exon_variant,,ENST00000504937,;TP53,non_coding_transcript_exon_variant,,ENST00000505014,; A ENSG00000141510 ENST00000269305 Transcript missense_variant 786/2579 596/1182 199 G/V gGa/gTa TP53_g.12665G>T,COSM44140,COSM255788,COSM255787,COSM255789,COSM3675525,COSM3675524,COSM255790 1 TP53 HGNC 11998 protein_coding YES CCDS11118.1 ENSP00000269305 P53_HUMAN S5LQU8_HUMAN,Q761V2_HUMAN,Q6IT77_HUMAN,Q1HGV1_HUMAN,Q0PKT5_HUMAN,L0ES54_HUMAN,L0EQ05_HUMAN,K7PPA8_HUMAN,H2EHT1_HUMAN,G4Y083_HUMAN,E9PCY9_HUMAN,E7ESS1_HUMAN,E7EMR6_HUMAN,B5AKF6_HUMAN,B4DNI2_HUMAN,A4GWD0_HUMAN,A4GWB8_HUMAN,A4GWB5_HUMAN,A4GW97_HUMAN,A4GW76_HUMAN,A4GW75_HUMAN,A4GW74_HUMAN,A4GW67_HUMAN,A2I9Z1_HUMAN,A2I9Z0_HUMAN UPI000002ED67 NM_001126112.2 deleterious(0) probably_damaging(1) 11-Jun Gene3D:2.60.40.720,Pfam_domain:PF00870,hmmpanther:PTHR11447,hmmpanther:PTHR11447:SF6,Superfamily_domains:SSF49417 0,1,1,1,1,1,1,1 MODERATE 1 SNV 0,1,1,1,1,1,1,1 17 7578253 7578253 C A SNP TP53 NM_000546.4 human genbank 58_37c -1 reviewed missense c.596 p.G199V 1 HMMPfam_P53|7Csuperfamily_p53-like transcription factors HMMPfam_P53_TAD|7CHMMPfam_P53|7Csuperfamily_p53-like transcription factors|7CPatternScan_P53|7CHMMPfam_P53_tetramer|7Csuperfamily_p53 tetramerization domain - 17 7578253 7578253 C A SNP TP53 NM_000546.4 human genbank 58_37c -1 reviewed missense c.596 p.G199V 1 HMMPfam_P53|7Csuperfamily_p53-like transcription factors HMMPfam_P53_TAD|7CHMMPfam_P53|7Csuperfamily_p53-like transcription factors|7CPatternScan_P53|7CHMMPfam_P53_tetramer|7Csuperfamily_p53 tetramerization domain - -TP53 genome.wustl.edu GRCh37 17 7576851 7576851 0 Splice_Site SNP A A C novel unknown TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx ENST00000269305.4:c.993+2T>G p.X331_splice ENST00000269305 0 0 TP53,splice_donor_variant,,ENST00000420246,NM_001126114.2,NM_001276696.1;TP53,splice_donor_variant,,ENST00000455263,NM_001276695.1,NM_001126113.2;TP53,splice_donor_variant,,ENST00000269305,NM_001126112.2,NM_001276761.1,NM_001276760.1,NM_000546.5,NM_001126118.1;TP53,splice_donor_variant,,ENST00000445888,;TP53,splice_donor_variant,,ENST00000359597,;TP53,splice_donor_variant,,ENST00000576024,;TP53,intron_variant,,ENST00000413465,;TP53,downstream_gene_variant,,ENST00000509690,;TP53,downstream_gene_variant,,ENST00000508793,;TP53,downstream_gene_variant,,ENST00000604348,;TP53,downstream_gene_variant,,ENST00000503591,;TP53,downstream_gene_variant,,ENST00000514944,;TP53,downstream_gene_variant,,ENST00000574684,;TP53,splice_donor_variant,,ENST00000510385,;TP53,splice_donor_variant,,ENST00000504290,;TP53,splice_donor_variant,,ENST00000504937,;TP53,downstream_gene_variant,,ENST00000505014,; C ENSG00000141510 ENST00000269305 Transcript splice_donor_variant -/2579 993/1182 TP53_g.14067T>G,COSM29774,COSM146229 1 TP53 HGNC 11998 protein_coding YES CCDS11118.1 ENSP00000269305 P53_HUMAN S5LQU8_HUMAN,Q761V2_HUMAN,Q6IT77_HUMAN,Q1HGV1_HUMAN,Q0PKT5_HUMAN,L0ES54_HUMAN,L0EQ05_HUMAN,K7PPA8_HUMAN,H2EHT1_HUMAN,G4Y083_HUMAN,E9PCY9_HUMAN,E7ESS1_HUMAN,E7EMR6_HUMAN,B5AKF6_HUMAN,B4DNI2_HUMAN,A4GWD0_HUMAN,A4GWB8_HUMAN,A4GWB5_HUMAN,A4GW97_HUMAN,A4GW76_HUMAN,A4GW75_HUMAN,A4GW74_HUMAN,A4GW67_HUMAN,A2I9Z1_HUMAN,A2I9Z0_HUMAN UPI000002ED67 NM_001126112.2 10-Sep 0,1,1 HIGH 1 SNV 0,1,1 17 7576851 7576851 A C SNP TP53 NM_000546 human genbank 57_37b -1 reviewed splice_site c.993+2 e8+2 1 - - - 17 7576851 7576851 A C SNP TP53 NM_000546 human genbank 57_37b -1 reviewed splice_site c.993+2 e8+2 1 - - - -BRCA1 genome.wustl.edu GRCh37 17 41243581 41243581 0 Nonsense_Mutation SNP G G A rs80357262 TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A G Unknown Germline Phase_IV Capture 1 dbGAP IlluminaGAIIx 0 getma.org/?cm=var&var=hg19,17,41243581,G,A&fts=all ENST00000357654.3:c.3967C>T p.Gln1323Ter p.Q1323* ENST00000357654 23-Oct 0 0 BRCA1,stop_gained,p.Gln1027Ter,ENST00000309486,NM_007297.3;BRCA1,stop_gained,p.Gln1323Ter,ENST00000357654,NM_007294.3;BRCA1,stop_gained,p.Gln1323Ter,ENST00000346315,;BRCA1,stop_gained,p.Gln1323Ter,ENST00000354071,;BRCA1,stop_gained,p.Gln1323Ter,ENST00000471181,NM_007300.3;BRCA1,stop_gained,p.Gln1276Ter,ENST00000493795,;BRCA1,stop_gained,p.Gln88Ter,ENST00000461574,;BRCA1,intron_variant,,ENST00000352993,;BRCA1,intron_variant,,ENST00000351666,;BRCA1,intron_variant,,ENST00000468300,NM_007299.3;BRCA1,intron_variant,,ENST00000491747,NM_007298.3;BRCA1,intron_variant,,ENST00000478531,;BRCA1,intron_variant,,ENST00000493919,;BRCA1,intron_variant,,ENST00000484087,;BRCA1,intron_variant,,ENST00000591534,;BRCA1,intron_variant,,ENST00000487825,;BRCA1,intron_variant,,ENST00000586385,;BRCA1,intron_variant,,ENST00000591849,;BRCA1,downstream_gene_variant,,ENST00000470026,;BRCA1,downstream_gene_variant,,ENST00000477152,;BRCA1,downstream_gene_variant,,ENST00000494123,;BRCA1,downstream_gene_variant,,ENST00000473961,;BRCA1,downstream_gene_variant,,ENST00000497488,;BRCA1,downstream_gene_variant,,ENST00000476777,;BRCA1,3_prime_UTR_variant,,ENST00000461221,;BRCA1,non_coding_transcript_exon_variant,,ENST00000467274,;BRCA1,downstream_gene_variant,,ENST00000492859,;BRCA1,downstream_gene_variant,,ENST00000412061,; A ENSG00000012048 ENST00000357654 Transcript stop_gained 4086/7094 3967/5592 1323 Q/* Caa/Taa rs80357262 1 BRCA1 HGNC 1100 protein_coding CCDS11453.1 ENSP00000350283 BRCA1_HUMAN Q9UE29_HUMAN,Q9NQR3_HUMAN,Q92897_HUMAN,Q7KYU6_HUMAN,Q4EW25_HUMAN,Q3YB53_HUMAN,Q3YB50_HUMAN,Q3YB49_HUMAN,Q3LRH8_HUMAN,Q3B891_HUMAN,K7EPC7_HUMAN,K4K7V3_HUMAN,K4JXS7_HUMAN,K4JUB1_HUMAN,G4V503_HUMAN,G4V502_HUMAN,G4V500_HUMAN,G4V4Z8_HUMAN,G4V4Z7_HUMAN,G1UI37_HUMAN,E9PFZ0_HUMAN,E7EWN5_HUMAN,E7EP70_HUMAN,C9IZW4_HUMAN,C4PFY7_HUMAN UPI0000126AC8 NM_007294.3 23-Oct PIRSF_domain:PIRSF001734,hmmpanther:PTHR13763,hmmpanther:PTHR13763:SF0 not_provided,pathogenic HIGH SNV 1 17 41243581 41243581 G A SNP BRCA1 NM_007294.3 human genbank 58_37c -1 reviewed nonsense c.3967 p.Q1323* 0.949 HMMPfam_BRCT|7CHMMSmart_SM00292|7Csuperfamily_BRCT domain|7CHMMSmart_SM00184|7CPatternScan_ZF_RING_1|7CHMMPfam_zf-C3HC4|7Csuperfamily_RING/U-box - 17 41243581 41243581 G A SNP BRCA1 NM_007294.3 human genbank 58_37c -1 reviewed nonsense c.3967 p.Q1323* 0.949 HMMPfam_BRCT|7CHMMSmart_SM00292|7Csuperfamily_BRCT domain|7CHMMSmart_SM00184|7CPatternScan_ZF_RING_1|7CHMMPfam_zf-C3HC4|7Csuperfamily_RING/U-box - -BRCA1 genome.wustl.edu GRCh37 17 41201181 41201181 0 Missense_Mutation SNP C C A rs80357069 byCluster TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx medium 2.25 getma.org/?cm=msa&ty=f&p=BRCA1_HUMAN&rb=1756&re=1842&var=G1788V getma.org/pdb.php?prot=BRCA1_HUMAN&from=1756&to=1842&var=G1788V getma.org/?cm=var&var=hg19,17,41201181,C,A&fts=all ENST00000357654.3:c.5363G>T p.Gly1788Val p.G1788V ENST00000357654 21/23 0 0 BRCA1,missense_variant,p.Gly1492Val,ENST00000309486,NM_007297.3;BRCA1,missense_variant,p.Gly1788Val,ENST00000357654,NM_007294.3;BRCA1,missense_variant,p.Gly1549Val,ENST00000346315,;BRCA1,missense_variant,p.Gly1523Val,ENST00000354071,;BRCA1,missense_variant,p.Gly1809Val,ENST00000471181,NM_007300.3;BRCA1,missense_variant,p.Gly1741Val,ENST00000493795,;BRCA1,missense_variant,p.Gly646Val,ENST00000352993,;BRCA1,missense_variant,p.Gly605Val,ENST00000351666,;BRCA1,missense_variant,p.Gly684Val,ENST00000491747,NM_007298.3;BRCA1,missense_variant,p.Gly279Val,ENST00000591534,;BRCA1,missense_variant,p.Gly98Val,ENST00000586385,;BRCA1,missense_variant,p.Gly21Val,ENST00000591849,;BRCA1,intron_variant,,ENST00000468300,NM_007299.3;BRCA1,3_prime_UTR_variant,,ENST00000461221,; A ENSG00000012048 ENST00000357654 Transcript missense_variant 5482/7094 5363/5592 1788 G/V gGt/gTt rs80357069,COSM436662 1 BRCA1 HGNC 1100 protein_coding CCDS11453.1 ENSP00000350283 BRCA1_HUMAN Q9UE29_HUMAN,Q9NQR3_HUMAN,Q92897_HUMAN,Q7KYU6_HUMAN,Q4EW25_HUMAN,Q3YB53_HUMAN,Q3YB50_HUMAN,Q3YB49_HUMAN,Q3LRH8_HUMAN,Q3B891_HUMAN,K7EPC7_HUMAN,K4K7V3_HUMAN,K4JXS7_HUMAN,K4JUB1_HUMAN,G4V503_HUMAN,G4V502_HUMAN,G4V500_HUMAN,G4V4Z8_HUMAN,G4V4Z7_HUMAN,G1UI37_HUMAN,E9PFZ0_HUMAN,E7EWN5_HUMAN,E7EP70_HUMAN,C9IZW4_HUMAN,C4PFY7_HUMAN UPI0000126AC8 NM_007294.3 deleterious(0) benign(0.031) 21/23 Gene3D:3.40.50.10190,Pfam_domain:PF00533,PIRSF_domain:PIRSF001734,Prints_domain:PR00493,PROSITE_profiles:PS50172,hmmpanther:PTHR13763,hmmpanther:PTHR13763:SF0,SMART_domains:SM00292,Superfamily_domains:SSF52113 not_provided,pathogenic 0,1 MODERATE SNV 1,1 17 41201181 41201181 C A SNP BRCA1 NM_007294 human genbank 57_37b -1 reviewed missense c.5363 p.G1788V 1 HMMPfam_BRCT,HMMSmart_SM00292,superfamily_BRCT domain superfamily_RING/U-box,HMMSmart_SM00184,HMMPfam_zf-C3HC4,PatternScan_ZF_RING_1,HMMPfam_BRCT,HMMSmart_SM00292,superfamily_BRCT domain - 17 41201181 41201181 C A SNP BRCA1 NM_007294 human genbank 57_37b -1 reviewed missense c.5363 p.G1788V 1 HMMPfam_BRCT,HMMSmart_SM00292,superfamily_BRCT domain superfamily_RING/U-box,HMMSmart_SM00184,HMMPfam_zf-C3HC4,PatternScan_ZF_RING_1,HMMPfam_BRCT,HMMSmart_SM00292,superfamily_BRCT domain - -ATM genome.wustl.edu GRCh37 11 108173702 108173702 0 Frame_Shift_Del DEL G G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 - G Unknown Germline Phase_IV Capture 1 dbGAP IlluminaGAIIx ENST00000278616.4:c.5443delG p.Asp1815ThrfsTer13 p.D1815Tfs*13 ENST00000278616 36/63 0 0 ATM,frameshift_variant,p.Asp1815ThrfsTer13,ENST00000278616,NM_000051.3;ATM,frameshift_variant,p.Asp1815ThrfsTer13,ENST00000452508,;ATM,non_coding_transcript_exon_variant,,ENST00000524792,;ATM,non_coding_transcript_exon_variant,,ENST00000533690,;ATM,non_coding_transcript_exon_variant,,ENST00000534625,;ATM,upstream_gene_variant,,ENST00000529588,; - ENSG00000149311 ENST00000278616 Transcript frameshift_variant 5827/13147 5442/9171 1814 L/X ttG/tt rs772138812 1 ATM HGNC 795 protein_coding YES CCDS31669.1 ENSP00000278616 ATM_HUMAN M0QXY8_HUMAN,E9PRG7_HUMAN,E9PIN0_HUMAN UPI0000DBEF44 NM_000051.3 36/63 hmmpanther:PTHR11139,hmmpanther:PTHR11139:SF66 HIGH 1 deletion 1 11 108173702 108173702 G - DEL ATM NM_000051.3 human genbank 58_37c 1 reviewed frame_shift_del c.5442 p.D1815fs 1 superfamily_ARM repeat superfamily_ARM repeat|7CHMMPfam_FAT|7Csuperfamily_Protein kinase-like (PK-like)|7CHMMPfam_PI3_PI4_kinase|7CHMMSmart_SM00146|7CPatternScan_PI3_4_KINASE_1|7CPatternScan_PI3_4_KINASE_2|7CHMMPfam_FATC - 11 108173702 108173702 G - DEL ATM NM_000051.3 human genbank 58_37c 1 reviewed frame_shift_del c.5442 p.D1815fs 1 superfamily_ARM repeat superfamily_ARM repeat|7CHMMPfam_FAT|7Csuperfamily_Protein kinase-like (PK-like)|7CHMMPfam_PI3_PI4_kinase|7CHMMSmart_SM00146|7CPatternScan_PI3_4_KINASE_1|7CPatternScan_PI3_4_KINASE_2|7CHMMPfam_FATC - -ATM genome.wustl.edu GRCh37 11 108106472 108106472 0 Frame_Shift_Del DEL T T - novel unknown TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Somatic Phase_IV Capture 1 dbGAP Illumina GAIIx ENST00000278616.4:c.409delT p.Tyr137ThrfsTer16 p.Y137Tfs*16 ENST00000278616 May-63 0 0 ATM,frameshift_variant,p.Tyr137ThrfsTer16,ENST00000278616,NM_000051.3;ATM,frameshift_variant,p.Tyr137ThrfsTer16,ENST00000452508,;ATM,frameshift_variant,p.Tyr137ThrfsTer16,ENST00000527805,;ATM,intron_variant,,ENST00000527891,;ATM,downstream_gene_variant,,ENST00000601453,;ATM,non_coding_transcript_exon_variant,,ENST00000530958,; - ENSG00000149311 ENST00000278616 Transcript frameshift_variant 792/13147 407/9171 136 I/X aTt/at COSM428356,COSM1474979 1 ATM HGNC 795 protein_coding YES CCDS31669.1 ENSP00000278616 ATM_HUMAN M0QXY8_HUMAN,E9PRG7_HUMAN,E9PIN0_HUMAN UPI0000DBEF44 NM_000051.3 May-63 Pfam_domain:PF11640,hmmpanther:PTHR11139,hmmpanther:PTHR11139:SF66 1,1 HIGH 1 deletion 2 1,1 11 108106472 108106472 T - DEL ATM NM_000051 human genbank 57_37b 1 reviewed frame_shift_del c.407 p.Y137fs 0.013 superfamily_ARM repeat,HMMPfam_FAT,superfamily_Protein kinase-like (PK-like),HMMPfam_PI3_PI4_kinase,HMMSmart_SM00146,PatternScan_PI3_4_KINASE_1,PatternScan_PI3_4_KINASE_2,HMMPfam_FATC (deletion:cds_exon[108106397,108106561]) 11 108106472 108106472 T - DEL ATM NM_000051 human genbank 57_37b 1 reviewed frame_shift_del c.407 p.Y137fs 0.013 superfamily_ARM repeat,HMMPfam_FAT,superfamily_Protein kinase-like (PK-like),HMMPfam_PI3_PI4_kinase,HMMSmart_SM00146,PatternScan_PI3_4_KINASE_1,PatternScan_PI3_4_KINASE_2,HMMPfam_FATC (deletion:cds_exon[108106397,108106561]) -BRCA2 genome.wustl.edu GRCh37 13 108106473 108106473 0 Nonsense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 Germline p.D191G BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106474 108106474 0 Nonsense_Mutation SNP T T C TCGA-A2-A04P-01 TCGA-A2-A04P-10 Somatic p.D191G BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106475 108106475 0 In_Frame_Del DEL T T - TCGA-A1-A0SK-01 TCGA-A1-A0SK-10 Germline p.R2659T BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106476 108106476 0 In_Frame_Del DEL T T - TCGA-A2-A0CM-01 TCGA-A2-A0CM-10 Somatic p.R2659T BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106477 108106477 0 Missense_Mutation SNP T T C TCGA-AR-A1AR-01 TCGA-AR-A1AR-10 Germline p.R2336C BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106478 108106478 0 Missense_Mutation SNP T T C TCGA-B6-A0WX-01 TCGA-B6-A0WX-10 Somatic p.R2336C BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106479 108106479 0 Nonsense_Mutation SNP T T C TCGA-BH-A1F0-01 TCGA-BH-A1F0-10 Germline p.R2000T BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106480 108106480 0 Nonsense_Mutation SNP T T C TCGA-B6-A0I6-01 TCGA-B6-A0I6-10 Somatic p.R2000T BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106481 108106481 0 In_Frame_Del DEL T T - TCGA-BH-A18V-01 TCGA-BH-A18V-10 Germline p.V1270del BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106482 108106482 0 In_Frame_Del DEL T T - TCGA-BH-A18K-01 TCGA-BH-A18K-10 Somatic p.V1270del BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106483 108106483 0 Missense_Mutation SNP T T C TCGA-BH-A0HL-01 TCGA-BH-A0HL-10 Germline p.D3073G BRCA2_HUMAN -BRCA2 genome.wustl.edu GRCh37 13 108106484 108106484 0 Missense_Mutation SNP T T C TCGA-BH-A0E0-01 TCGA-BH-A0E0-10 Somatic p.D3073G BRCA2_HUMAN diff --git a/core/src/test/scripts/test_data/study_missing_caselists/data_CNA.txt b/core/src/test/scripts/test_data/study_missing_caselists/data_CNA.txt deleted file mode 100644 index dd2b2a081b6..00000000000 --- a/core/src/test/scripts/test_data/study_missing_caselists/data_CNA.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 -ACAP3 116983 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -AGRN 375790 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ATAD3A 55210 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ATAD3B 83858 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ATAD3C 219293 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -AURKAIP1 54998 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ERCC5 2073 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 diff --git a/core/src/test/scripts/test_data/study_missing_caselists/data_samples.txt b/core/src/test/scripts/test_data/study_missing_caselists/data_samples.txt deleted file mode 100644 index 29d361e52f3..00000000000 --- a/core/src/test/scripts/test_data/study_missing_caselists/data_samples.txt +++ /dev/null @@ -1,831 +0,0 @@ -#Patient Identifier Sample Identifier Subtype -#Patient identifier Sample identifier Subtype description -#STRING STRING STRING -#1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like -TCGA-A2-A0CM TCGA-A2-A0CM-01 basal-like -TCGA-AR-A1AR TCGA-AR-A1AR-01 basal-like -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like -TCGA-B6-A0I6 TCGA-B6-A0I6-01 NA -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like -TCGA-BH-A0HL TCGA-BH-A0HL-01 NA -TCGA-BH-A0E0 TCGA-BH-A0E0-01 basal-like -TCGA-BH-A0RX TCGA-BH-A0RX-01 basal-like -TCGA-A7-A13D TCGA-A7-A13D-01 basal-like -TCGA-BH-A0E6 TCGA-BH-A0E6-01 basal-like -TCGA-AO-A0J4 TCGA-AO-A0J4-01 basal-like -TCGA-A7-A0CE TCGA-A7-A0CE-01 basal-like -TCGA-A7-A13E TCGA-A7-A13E-01 -TCGA-A7-A0DA TCGA-A7-A0DA-01 basal-like -TCGA-D8-A142 TCGA-D8-A142-01 basal-like -TCGA-D8-A143 TCGA-D8-A143-01 NA -TCGA-AQ-A04J TCGA-AQ-A04J-01 basal-like -TCGA-BH-A0HN TCGA-BH-A0HN-01 NA -TCGA-A2-A0T0 TCGA-A2-A0T0-01 basal-like -TCGA-A2-A0YE TCGA-A2-A0YE-01 NA -TCGA-A2-A0YJ TCGA-A2-A0YJ-01 NA -TCGA-A2-A0D0 TCGA-A2-A0D0-01 basal-like -TCGA-A2-A04U TCGA-A2-A04U-01 NA -TCGA-AO-A0J6 TCGA-AO-A0J6-01 basal-like -TCGA-A2-A0YM TCGA-A2-A0YM-01 basal-like -TCGA-A2-A0D2 TCGA-A2-A0D2-01 basal-like -TCGA-BH-A0B3 TCGA-BH-A0B3-01 basal-like -TCGA-A2-A04Q TCGA-A2-A04Q-01 basal-like -TCGA-A2-A0SX TCGA-A2-A0SX-01 basal-like -TCGA-AO-A0JL TCGA-AO-A0JL-01 basal-like -TCGA-AO-A12F TCGA-AO-A12F-01 basal-like -TCGA-BH-A0B9 TCGA-BH-A0B9-01 basal-like -TCGA-A2-A04T TCGA-A2-A04T-01 NA -TCGA-B6-A0RT TCGA-B6-A0RT-01 basal-like -TCGA-AO-A128 TCGA-AO-A128-01 NA -TCGA-AO-A129 TCGA-AO-A129-01 basal-like -TCGA-AO-A124 TCGA-AO-A124-01 basal-like -TCGA-B6-A0RU TCGA-B6-A0RU-01 basal-like -TCGA-B6-A0IQ TCGA-B6-A0IQ-01 basal-like -TCGA-B6-A0I2 TCGA-B6-A0I2-01 basal-like -TCGA-B6-A0IJ TCGA-B6-A0IJ-01 basal-like -TCGA-B6-A0X1 TCGA-B6-A0X1-01 NA -TCGA-B6-A0RE TCGA-B6-A0RE-01 basal-like -TCGA-A2-A0ST TCGA-A2-A0ST-01 basal-like -TCGA-AR-A0TP TCGA-AR-A0TP-01 basal-like -TCGA-A1-A0SO TCGA-A1-A0SO-01 basal-like -TCGA-A8-A07C TCGA-A8-A07C-01 basal-like -TCGA-A8-A07O TCGA-A8-A07O-01 basal-like -TCGA-A8-A07R TCGA-A8-A07R-01 basal-like -TCGA-A8-A07U TCGA-A8-A07U-01 basal-like -TCGA-A8-A08H TCGA-A8-A08H-01 basal-like -TCGA-A8-A08R TCGA-A8-A08R-01 basal-like -TCGA-AN-A04D TCGA-AN-A04D-01 basal-like -TCGA-AN-A0AL TCGA-AN-A0AL-01 basal-like -TCGA-AN-A0AR TCGA-AN-A0AR-01 basal-like -TCGA-AN-A0AT TCGA-AN-A0AT-01 NA -TCGA-AN-A0FJ TCGA-AN-A0FJ-01 basal-like -TCGA-AN-A0FL TCGA-AN-A0FL-01 basal-like -TCGA-AN-A0FX TCGA-AN-A0FX-01 basal-like -TCGA-AN-A0G0 TCGA-AN-A0G0-01 NA -TCGA-AN-A0XU TCGA-AN-A0XU-01 basal-like -TCGA-AR-A0TS TCGA-AR-A0TS-01 basal-like -TCGA-AR-A0TU TCGA-AR-A0TU-01 NA -TCGA-AR-A0U0 TCGA-AR-A0U0-01 NA -TCGA-AR-A0U1 TCGA-AR-A0U1-01 basal-like -TCGA-AR-A0U4 TCGA-AR-A0U4-01 basal-like -TCGA-AR-A1AH TCGA-AR-A1AH-01 basal-like -TCGA-AR-A1AI TCGA-AR-A1AI-01 basal-like -TCGA-AR-A1AJ TCGA-AR-A1AJ-01 basal-like -TCGA-AR-A1AQ TCGA-AR-A1AQ-01 basal-like -TCGA-AR-A1AY TCGA-AR-A1AY-01 basal-like -TCGA-BH-A0AV TCGA-BH-A0AV-01 basal-like -TCGA-BH-A0BG TCGA-BH-A0BG-01 basal-like -TCGA-BH-A0BL TCGA-BH-A0BL-01 basal-like -TCGA-BH-A0BW TCGA-BH-A0BW-01 basal-like -TCGA-BH-A0DL TCGA-BH-A0DL-01 basal-like -TCGA-BH-A0WA TCGA-BH-A0WA-01 basal-like -TCGA-BH-A18G TCGA-BH-A18G-01 NA -TCGA-C8-A12K TCGA-C8-A12K-01 basal-like -TCGA-C8-A12V TCGA-C8-A12V-01 basal-like -TCGA-C8-A131 TCGA-C8-A131-01 basal-like -TCGA-C8-A134 TCGA-C8-A134-01 basal-like -TCGA-D8-A147 TCGA-D8-A147-01 basal-like -TCGA-E2-A14N TCGA-E2-A14N-01 basal-like -TCGA-E2-A14R TCGA-E2-A14R-01 basal-like -TCGA-E2-A14X TCGA-E2-A14X-01 basal-like -TCGA-E2-A14Y TCGA-E2-A14Y-01 basal-like -TCGA-E2-A150 TCGA-E2-A150-01 basal-like -TCGA-E2-A158 TCGA-E2-A158-01 basal-like -TCGA-E2-A159 TCGA-E2-A159-01 basal-like -TCGA-E2-A1AZ TCGA-E2-A1AZ-01 NA -TCGA-E2-A1B5 TCGA-E2-A1B5-01 basal-like -TCGA-A8-A08L TCGA-A8-A08L-01 Her2 enriched -TCGA-BH-A1EV TCGA-BH-A1EV-01 Her2 enriched -TCGA-B6-A0I9 TCGA-B6-A0I9-01 Her2 enriched -TCGA-A8-A09X TCGA-A8-A09X-01 Her2 enriched -TCGA-B6-A0IK TCGA-B6-A0IK-01 Her2 enriched -TCGA-BH-A18P TCGA-BH-A18P-01 Her2 enriched -TCGA-A8-A08J TCGA-A8-A08J-01 Her2 enriched -TCGA-BH-A18R TCGA-BH-A18R-01 Her2 enriched -TCGA-AR-A1AT TCGA-AR-A1AT-01 Her2 enriched -TCGA-B6-A0RS TCGA-B6-A0RS-01 Her2 enriched -TCGA-BH-A0DZ TCGA-BH-A0DZ-01 Her2 enriched -TCGA-A2-A0T1 TCGA-A2-A0T1-01 Her2 enriched -TCGA-AO-A0J2 TCGA-AO-A0J2-01 Her2 enriched -TCGA-BH-A0AW TCGA-BH-A0AW-01 Her2 enriched -TCGA-BH-A0EE TCGA-BH-A0EE-01 Her2 enriched -TCGA-A2-A0D1 TCGA-A2-A0D1-01 Her2 enriched -TCGA-AO-A03N TCGA-AO-A03N-01 Her2 enriched -TCGA-A2-A0CY TCGA-A2-A0CY-01 Her2 enriched -TCGA-A2-A04X TCGA-A2-A04X-01 Her2 enriched -TCGA-A2-A0CX TCGA-A2-A0CX-01 Her2 enriched -TCGA-A2-A04W TCGA-A2-A04W-01 Her2 enriched -TCGA-AO-A12D TCGA-AO-A12D-01 Her2 enriched -TCGA-A2-A0CL TCGA-A2-A0CL-01 Her2 enriched -TCGA-AO-A0JE TCGA-AO-A0JE-01 Her2 enriched -TCGA-A2-A0EQ TCGA-A2-A0EQ-01 Her2 enriched -TCGA-AO-A03L TCGA-AO-A03L-01 Her2 enriched -TCGA-B6-A0RH TCGA-B6-A0RH-01 Her2 enriched -TCGA-A8-A075 TCGA-A8-A075-01 Her2 enriched -TCGA-A8-A076 TCGA-A8-A076-01 Her2 enriched -TCGA-A8-A07B TCGA-A8-A07B-01 Her2 enriched -TCGA-A8-A07I TCGA-A8-A07I-01 Her2 enriched -TCGA-A8-A081 TCGA-A8-A081-01 Her2 enriched -TCGA-A8-A08B TCGA-A8-A08B-01 Her2 enriched -TCGA-A8-A08X TCGA-A8-A08X-01 Her2 enriched -TCGA-A8-A092 TCGA-A8-A092-01 Her2 enriched -TCGA-A8-A094 TCGA-A8-A094-01 Her2 enriched -TCGA-A8-A09G TCGA-A8-A09G-01 Her2 enriched -TCGA-A8-A0A7 TCGA-A8-A0A7-01 Her2 enriched -TCGA-AN-A04C TCGA-AN-A04C-01 Her2 enriched -TCGA-AN-A0FV TCGA-AN-A0FV-01 Her2 enriched -TCGA-AR-A0TX TCGA-AR-A0TX-01 Her2 enriched -TCGA-BH-A0B7 TCGA-BH-A0B7-01 Her2 enriched -TCGA-BH-A0HY TCGA-BH-A0HY-01 Her2 enriched -TCGA-C8-A12L TCGA-C8-A12L-01 Her2 enriched -TCGA-C8-A12P TCGA-C8-A12P-01 Her2 enriched -TCGA-C8-A12Q TCGA-C8-A12Q-01 Her2 enriched -TCGA-C8-A12T TCGA-C8-A12T-01 Her2 enriched -TCGA-C8-A12Z TCGA-C8-A12Z-01 Her2 enriched -TCGA-C8-A130 TCGA-C8-A130-01 Her2 enriched -TCGA-C8-A135 TCGA-C8-A135-01 Her2 enriched -TCGA-C8-A137 TCGA-C8-A137-01 Her2 enriched -TCGA-C8-A138 TCGA-C8-A138-01 Her2 enriched -TCGA-C8-A1HF TCGA-C8-A1HF-01 Her2 enriched -TCGA-D8-A13Z TCGA-D8-A13Z-01 Her2 enriched -TCGA-E2-A14P TCGA-E2-A14P-01 Her2 enriched -TCGA-E2-A14V TCGA-E2-A14V-01 Her2 enriched -TCGA-E2-A152 TCGA-E2-A152-01 Her2 enriched -TCGA-E2-A1B0 TCGA-E2-A1B0-01 Her2 enriched -TCGA-A2-A0CU TCGA-A2-A0CU-01 Luminal A -TCGA-AR-A0TR TCGA-AR-A0TR-01 Luminal A -TCGA-BH-A18T TCGA-BH-A18T-01 Luminal A -TCGA-B6-A0I8 TCGA-B6-A0I8-01 Luminal A -TCGA-B6-A0X4 TCGA-B6-A0X4-01 Luminal A -TCGA-A8-A06U TCGA-A8-A06U-01 Luminal A -TCGA-BH-A0EA TCGA-BH-A0EA-01 Luminal A -TCGA-BH-A18N TCGA-BH-A18N-01 Luminal A -TCGA-BH-A1EU TCGA-BH-A1EU-01 Luminal A -TCGA-B6-A0X7 TCGA-B6-A0X7-01 Luminal A -TCGA-A2-A04V TCGA-A2-A04V-01 Luminal A -TCGA-BH-A18S TCGA-BH-A18S-01 Luminal A -TCGA-BH-A18M TCGA-BH-A18M-01 Luminal A -TCGA-B6-A0RM TCGA-B6-A0RM-01 Luminal A -TCGA-BH-A1ET TCGA-BH-A1ET-01 Luminal A -TCGA-B6-A0IN TCGA-B6-A0IN-01 Luminal A -TCGA-BH-A1EO TCGA-BH-A1EO-01 Luminal A -TCGA-B6-A0WS TCGA-B6-A0WS-01 Luminal A -TCGA-B6-A0RP TCGA-B6-A0RP-01 Luminal A -TCGA-B6-A0IH TCGA-B6-A0IH-01 Luminal A -TCGA-B6-A0WY TCGA-B6-A0WY-01 Luminal A -TCGA-BH-A1ES TCGA-BH-A1ES-01 Luminal A -TCGA-B6-A0X0 TCGA-B6-A0X0-01 Luminal A -TCGA-B6-A0RQ TCGA-B6-A0RQ-01 Luminal A -TCGA-B6-A0IG TCGA-B6-A0IG-01 Luminal A -TCGA-BH-A0HO TCGA-BH-A0HO-01 Luminal A -TCGA-BH-A0DS TCGA-BH-A0DS-01 Luminal A -TCGA-BH-A0DQ TCGA-BH-A0DQ-01 Luminal A -TCGA-BH-A0HK TCGA-BH-A0HK-01 Luminal A -TCGA-A7-A0CG TCGA-A7-A0CG-01 Luminal A -TCGA-A7-A0CH TCGA-A7-A0CH-01 Luminal A -TCGA-A7-A0DB TCGA-A7-A0DB-01 Luminal A -TCGA-A7-A0D9 TCGA-A7-A0D9-01 Luminal A -TCGA-AO-A0J8 TCGA-AO-A0J8-01 Luminal A -TCGA-BH-A0GZ TCGA-BH-A0GZ-01 Luminal A -TCGA-AO-A0JA TCGA-AO-A0JA-01 Luminal A -TCGA-AO-A0JF TCGA-AO-A0JF-01 Luminal A -TCGA-A7-A0CD TCGA-A7-A0CD-01 Luminal A -TCGA-D8-A145 TCGA-D8-A145-01 Luminal A -TCGA-BH-A0HP TCGA-BH-A0HP-01 Luminal A -TCGA-BH-A0DK TCGA-BH-A0DK-01 Luminal A -TCGA-BH-A0E2 TCGA-BH-A0E2-01 Luminal A -TCGA-A2-A0YI TCGA-A2-A0YI-01 Luminal A -TCGA-A2-A0YL TCGA-A2-A0YL-01 Luminal A -TCGA-AO-A0JG TCGA-AO-A0JG-01 Luminal A -TCGA-A2-A0YF TCGA-A2-A0YF-01 Luminal A -TCGA-BH-A0DP TCGA-BH-A0DP-01 Luminal A -TCGA-BH-A0E1 TCGA-BH-A0E1-01 Luminal A -TCGA-A2-A0T5 TCGA-A2-A0T5-01 Luminal A -TCGA-A2-A0T6 TCGA-A2-A0T6-01 Luminal A -TCGA-BH-A0HI TCGA-BH-A0HI-01 Luminal A -TCGA-A2-A0T7 TCGA-A2-A0T7-01 Luminal A -TCGA-BH-A0BJ TCGA-BH-A0BJ-01 Luminal A -TCGA-BH-A0H7 TCGA-BH-A0H7-01 Luminal A -TCGA-BH-A0HF TCGA-BH-A0HF-01 Luminal A -TCGA-BH-A0EB TCGA-BH-A0EB-01 Luminal A -TCGA-BH-A0H6 TCGA-BH-A0H6-01 Luminal A -TCGA-A2-A0YD TCGA-A2-A0YD-01 Luminal A -TCGA-BH-A0HB TCGA-BH-A0HB-01 Luminal A -TCGA-BH-A0HX TCGA-BH-A0HX-01 Luminal A -TCGA-AO-A12H TCGA-AO-A12H-01 Luminal A -TCGA-E2-A10E TCGA-E2-A10E-01 Luminal A -TCGA-A2-A0D3 TCGA-A2-A0D3-01 Luminal A -TCGA-E2-A10F TCGA-E2-A10F-01 Luminal A -TCGA-AO-A03V TCGA-AO-A03V-01 Luminal A -TCGA-A2-A0EW TCGA-A2-A0EW-01 Luminal A -TCGA-BH-A0GY TCGA-BH-A0GY-01 Luminal A -TCGA-A2-A0EV TCGA-A2-A0EV-01 Luminal A -TCGA-BH-A0BC TCGA-BH-A0BC-01 Luminal A -TCGA-A2-A0YC TCGA-A2-A0YC-01 Luminal A -TCGA-A2-A0EU TCGA-A2-A0EU-01 Luminal A -TCGA-A2-A0ET TCGA-A2-A0ET-01 Luminal A -TCGA-A2-A04Y TCGA-A2-A04Y-01 Luminal A -TCGA-BH-A0HQ TCGA-BH-A0HQ-01 Luminal A -TCGA-A2-A0ES TCGA-A2-A0ES-01 Luminal A -TCGA-BH-A0BA TCGA-BH-A0BA-01 Luminal A -TCGA-E2-A10B TCGA-E2-A10B-01 Luminal A -TCGA-BH-A0B1 TCGA-BH-A0B1-01 Luminal A -TCGA-BH-A0DH TCGA-BH-A0DH-01 Luminal A -TCGA-BH-A0B4 TCGA-BH-A0B4-01 Luminal A -TCGA-BH-A0H9 TCGA-BH-A0H9-01 Luminal A -TCGA-AO-A0J9 TCGA-AO-A0J9-01 Luminal A -TCGA-AO-A12G TCGA-AO-A12G-01 Luminal A -TCGA-A2-A0SY TCGA-A2-A0SY-01 Luminal A -TCGA-BH-A0E7 TCGA-BH-A0E7-01 Luminal A -TCGA-AO-A03M TCGA-AO-A03M-01 Luminal A -TCGA-BH-A0BV TCGA-BH-A0BV-01 Luminal A -TCGA-BH-A0B8 TCGA-BH-A0B8-01 Luminal A -TCGA-A2-A0CZ TCGA-A2-A0CZ-01 Luminal A -TCGA-A2-A0SU TCGA-A2-A0SU-01 Luminal A -TCGA-AO-A12E TCGA-AO-A12E-01 Luminal A -TCGA-E2-A106 TCGA-E2-A106-01 Luminal A -TCGA-A2-A0CV TCGA-A2-A0CV-01 Luminal A -TCGA-AO-A12C TCGA-AO-A12C-01 Luminal A -TCGA-B6-A0RG TCGA-B6-A0RG-01 Luminal A -TCGA-A2-A0CS TCGA-A2-A0CS-01 Luminal A -TCGA-A2-A0EO TCGA-A2-A0EO-01 Luminal A -TCGA-A2-A0CQ TCGA-A2-A0CQ-01 Luminal A -TCGA-A2-A0EN TCGA-A2-A0EN-01 Luminal A -TCGA-AO-A12A TCGA-AO-A12A-01 Luminal A -TCGA-A2-A0CP TCGA-A2-A0CP-01 Luminal A -TCGA-AO-A126 TCGA-AO-A126-01 Luminal A -TCGA-AO-A125 TCGA-AO-A125-01 Luminal A -TCGA-A2-A0EM TCGA-A2-A0EM-01 Luminal A -TCGA-A2-A04N TCGA-A2-A04N-01 Luminal A -TCGA-AQ-A04L TCGA-AQ-A04L-01 Luminal A -TCGA-B6-A0IO TCGA-B6-A0IO-01 Luminal A -TCGA-B6-A0IP TCGA-B6-A0IP-01 Luminal A -TCGA-B6-A0WZ TCGA-B6-A0WZ-01 Luminal A -TCGA-B6-A0I5 TCGA-B6-A0I5-01 Luminal A -TCGA-B6-A0RV TCGA-B6-A0RV-01 Luminal A -TCGA-B6-A0RO TCGA-B6-A0RO-01 Luminal A -TCGA-B6-A0RN TCGA-B6-A0RN-01 Luminal A -TCGA-B6-A0WT TCGA-B6-A0WT-01 Luminal A -TCGA-B6-A0IA TCGA-B6-A0IA-01 Luminal A -TCGA-B6-A0RI TCGA-B6-A0RI-01 Luminal A -TCGA-A1-A0SE TCGA-A1-A0SE-01 Luminal A -TCGA-A2-A0EX TCGA-A2-A0EX-01 Luminal A -TCGA-AO-A0JJ TCGA-AO-A0JJ-01 Luminal A -TCGA-E2-A105 TCGA-E2-A105-01 Luminal A -TCGA-A1-A0SD TCGA-A1-A0SD-01 Luminal A -TCGA-A1-A0SH TCGA-A1-A0SH-01 Luminal A -TCGA-A1-A0SJ TCGA-A1-A0SJ-01 Luminal A -TCGA-A8-A06P TCGA-A8-A06P-01 Luminal A -TCGA-A8-A06T TCGA-A8-A06T-01 Luminal A -TCGA-A8-A06Y TCGA-A8-A06Y-01 Luminal A -TCGA-A8-A07E TCGA-A8-A07E-01 Luminal A -TCGA-A8-A07F TCGA-A8-A07F-01 Luminal A -TCGA-A8-A07G TCGA-A8-A07G-01 Luminal A -TCGA-A8-A07J TCGA-A8-A07J-01 Luminal A -TCGA-A8-A07P TCGA-A8-A07P-01 Luminal A -TCGA-A8-A083 TCGA-A8-A083-01 Luminal A -TCGA-A8-A086 TCGA-A8-A086-01 Luminal A -TCGA-A8-A08A TCGA-A8-A08A-01 Luminal A -TCGA-A8-A08C TCGA-A8-A08C-01 Luminal A -TCGA-A8-A08O TCGA-A8-A08O-01 Luminal A -TCGA-A8-A08T TCGA-A8-A08T-01 Luminal A -TCGA-A8-A08Z TCGA-A8-A08Z-01 Luminal A -TCGA-A8-A090 TCGA-A8-A090-01 Luminal A -TCGA-A8-A091 TCGA-A8-A091-01 Luminal A -TCGA-A8-A093 TCGA-A8-A093-01 Luminal A -TCGA-A8-A099 TCGA-A8-A099-01 Luminal A -TCGA-A8-A09A TCGA-A8-A09A-01 Luminal A -TCGA-A8-A09B TCGA-A8-A09B-01 Luminal A -TCGA-A8-A09T TCGA-A8-A09T-01 Luminal A -TCGA-A8-A09V TCGA-A8-A09V-01 Luminal A -TCGA-A8-A0A1 TCGA-A8-A0A1-01 Luminal A -TCGA-A8-A0A2 TCGA-A8-A0A2-01 Luminal A -TCGA-A8-A0A4 TCGA-A8-A0A4-01 Luminal A -TCGA-A8-A0A6 TCGA-A8-A0A6-01 Luminal A -TCGA-A8-A0AD TCGA-A8-A0AD-01 Luminal A -TCGA-AN-A03X TCGA-AN-A03X-01 Luminal A -TCGA-AN-A046 TCGA-AN-A046-01 Luminal A -TCGA-AN-A04A TCGA-AN-A04A-01 Luminal A -TCGA-AN-A0FD TCGA-AN-A0FD-01 Luminal A -TCGA-AN-A0FN TCGA-AN-A0FN-01 Luminal A -TCGA-AN-A0FS TCGA-AN-A0FS-01 Luminal A -TCGA-AN-A0FT TCGA-AN-A0FT-01 Luminal A -TCGA-AN-A0FW TCGA-AN-A0FW-01 Luminal A -TCGA-AN-A0FZ TCGA-AN-A0FZ-01 Luminal A -TCGA-AN-A0XL TCGA-AN-A0XL-01 Luminal A -TCGA-AN-A0XN TCGA-AN-A0XN-01 Luminal A -TCGA-AN-A0XO TCGA-AN-A0XO-01 Luminal A -TCGA-AN-A0XP TCGA-AN-A0XP-01 Luminal A -TCGA-AN-A0XS TCGA-AN-A0XS-01 Luminal A -TCGA-AN-A0XT TCGA-AN-A0XT-01 Luminal A -TCGA-AN-A0XV TCGA-AN-A0XV-01 Luminal A -TCGA-AR-A0TW TCGA-AR-A0TW-01 Luminal A -TCGA-AR-A1AK TCGA-AR-A1AK-01 Luminal A -TCGA-AR-A1AL TCGA-AR-A1AL-01 Luminal A -TCGA-AR-A1AN TCGA-AR-A1AN-01 Luminal A -TCGA-AR-A1AP TCGA-AR-A1AP-01 Luminal A -TCGA-AR-A1AS TCGA-AR-A1AS-01 Luminal A -TCGA-AR-A1AU TCGA-AR-A1AU-01 Luminal A -TCGA-AR-A1AW TCGA-AR-A1AW-01 Luminal A -TCGA-AR-A1AX TCGA-AR-A1AX-01 Luminal A -TCGA-BH-A0AZ TCGA-BH-A0AZ-01 Luminal A -TCGA-BH-A0B0 TCGA-BH-A0B0-01 Luminal A -TCGA-BH-A0BM TCGA-BH-A0BM-01 Luminal A -TCGA-BH-A0BO TCGA-BH-A0BO-01 Luminal A -TCGA-BH-A0BP TCGA-BH-A0BP-01 Luminal A -TCGA-BH-A0BQ TCGA-BH-A0BQ-01 Luminal A -TCGA-BH-A0BR TCGA-BH-A0BR-01 Luminal A -TCGA-BH-A0BS TCGA-BH-A0BS-01 Luminal A -TCGA-BH-A0BT TCGA-BH-A0BT-01 Luminal A -TCGA-BH-A0C1 TCGA-BH-A0C1-01 Luminal A -TCGA-BH-A0DE TCGA-BH-A0DE-01 Luminal A -TCGA-BH-A0DG TCGA-BH-A0DG-01 Luminal A -TCGA-BH-A0DI TCGA-BH-A0DI-01 Luminal A -TCGA-BH-A0DO TCGA-BH-A0DO-01 Luminal A -TCGA-BH-A0DT TCGA-BH-A0DT-01 Luminal A -TCGA-BH-A0DX TCGA-BH-A0DX-01 Luminal A -TCGA-BH-A0E9 TCGA-BH-A0E9-01 Luminal A -TCGA-BH-A0EI TCGA-BH-A0EI-01 Luminal A -TCGA-BH-A0H3 TCGA-BH-A0H3-01 Luminal A -TCGA-BH-A0H5 TCGA-BH-A0H5-01 Luminal A -TCGA-BH-A0HA TCGA-BH-A0HA-01 Luminal A -TCGA-BH-A0W4 TCGA-BH-A0W4-01 Luminal A -TCGA-BH-A0W5 TCGA-BH-A0W5-01 Luminal A -TCGA-BH-A0W7 TCGA-BH-A0W7-01 Luminal A -TCGA-BH-A18H TCGA-BH-A18H-01 Luminal A -TCGA-BH-A18I TCGA-BH-A18I-01 Luminal A -TCGA-C8-A12N TCGA-C8-A12N-01 Luminal A -TCGA-C8-A12O TCGA-C8-A12O-01 Luminal A -TCGA-C8-A12Y TCGA-C8-A12Y-01 Luminal A -TCGA-C8-A132 TCGA-C8-A132-01 Luminal A -TCGA-C8-A133 TCGA-C8-A133-01 Luminal A -TCGA-C8-A1HI TCGA-C8-A1HI-01 Luminal A -TCGA-D8-A141 TCGA-D8-A141-01 Luminal A -TCGA-E2-A14Q TCGA-E2-A14Q-01 Luminal A -TCGA-E2-A14T TCGA-E2-A14T-01 Luminal A -TCGA-E2-A14Z TCGA-E2-A14Z-01 Luminal A -TCGA-E2-A153 TCGA-E2-A153-01 Luminal A -TCGA-E2-A154 TCGA-E2-A154-01 Luminal A -TCGA-E2-A156 TCGA-E2-A156-01 Luminal A -TCGA-E2-A15C TCGA-E2-A15C-01 Luminal A -TCGA-E2-A15D TCGA-E2-A15D-01 Luminal A -TCGA-E2-A15E TCGA-E2-A15E-01 Luminal A -TCGA-E2-A15F TCGA-E2-A15F-01 Luminal A -TCGA-E2-A15G TCGA-E2-A15G-01 Luminal A -TCGA-E2-A15H TCGA-E2-A15H-01 Luminal A -TCGA-E2-A15I TCGA-E2-A15I-01 Luminal A -TCGA-E2-A15J TCGA-E2-A15J-01 Luminal A -TCGA-E2-A15O TCGA-E2-A15O-01 Luminal A -TCGA-E2-A15P TCGA-E2-A15P-01 Luminal A -TCGA-E2-A15R TCGA-E2-A15R-01 Luminal A -TCGA-E2-A1B1 TCGA-E2-A1B1-01 Luminal A -TCGA-E2-A1B4 TCGA-E2-A1B4-01 Luminal A -TCGA-E2-A1B6 TCGA-E2-A1B6-01 Luminal A -TCGA-E2-A1BC TCGA-E2-A1BC-01 Luminal A -TCGA-E2-A1BD TCGA-E2-A1BD-01 Luminal A -TCGA-A2-A0SV TCGA-A2-A0SV-01 Luminal B -TCGA-AO-A03O TCGA-AO-A03O-01 Luminal B -TCGA-A2-A0SW TCGA-A2-A0SW-01 Luminal B -TCGA-B6-A0WW TCGA-B6-A0WW-01 Luminal B -TCGA-BH-A18J TCGA-BH-A18J-01 Luminal B -TCGA-BH-A18L TCGA-BH-A18L-01 Luminal B -TCGA-A8-A06X TCGA-A8-A06X-01 Luminal B -TCGA-B6-A0IC TCGA-B6-A0IC-01 Luminal B -TCGA-BH-A18U TCGA-BH-A18U-01 Luminal B -TCGA-BH-A1EW TCGA-BH-A1EW-01 Luminal B -TCGA-AR-A0TY TCGA-AR-A0TY-01 Luminal B -TCGA-B6-A0X5 TCGA-B6-A0X5-01 Luminal B -TCGA-B6-A0WV TCGA-B6-A0WV-01 Luminal B -TCGA-B6-A0RL TCGA-B6-A0RL-01 Luminal B -TCGA-AR-A0U2 TCGA-AR-A0U2-01 Luminal B -TCGA-B6-A0IB TCGA-B6-A0IB-01 Luminal B -TCGA-AO-A0J7 TCGA-AO-A0J7-01 Luminal B -TCGA-AO-A0J3 TCGA-AO-A0J3-01 Luminal B -TCGA-D8-A13Y TCGA-D8-A13Y-01 Luminal B -TCGA-A7-A13F TCGA-A7-A13F-01 Luminal B -TCGA-BH-A0HU TCGA-BH-A0HU-01 Luminal B -TCGA-D8-A140 TCGA-D8-A140-01 Luminal B -TCGA-A7-A0CJ TCGA-A7-A0CJ-01 Luminal B -TCGA-AQ-A04H TCGA-AQ-A04H-01 Luminal B -TCGA-BH-A0H0 TCGA-BH-A0H0-01 Luminal B -TCGA-BH-A0BD TCGA-BH-A0BD-01 Luminal B -TCGA-A2-A0T3 TCGA-A2-A0T3-01 Luminal B -TCGA-A2-A0T4 TCGA-A2-A0T4-01 Luminal B -TCGA-A2-A0YH TCGA-A2-A0YH-01 Luminal B -TCGA-A2-A0YG TCGA-A2-A0YG-01 Luminal B -TCGA-A2-A0EY TCGA-A2-A0EY-01 Luminal B -TCGA-A2-A0D4 TCGA-A2-A0D4-01 Luminal B -TCGA-BH-A0AY TCGA-BH-A0AY-01 Luminal B -TCGA-E2-A107 TCGA-E2-A107-01 Luminal B -TCGA-AO-A0JI TCGA-AO-A0JI-01 Luminal B -TCGA-E2-A10C TCGA-E2-A10C-01 Luminal B -TCGA-E2-A10A TCGA-E2-A10A-01 Luminal B -TCGA-BH-A0C0 TCGA-BH-A0C0-01 Luminal B -TCGA-E2-A109 TCGA-E2-A109-01 Luminal B -TCGA-AO-A0JC TCGA-AO-A0JC-01 Luminal B -TCGA-BH-A0HW TCGA-BH-A0HW-01 Luminal B -TCGA-AO-A0JD TCGA-AO-A0JD-01 Luminal B -TCGA-AO-A0JM TCGA-AO-A0JM-01 Luminal B -TCGA-A2-A0CW TCGA-A2-A0CW-01 Luminal B -TCGA-A2-A0ER TCGA-A2-A0ER-01 Luminal B -TCGA-A2-A0CT TCGA-A2-A0CT-01 Luminal B -TCGA-AO-A12B TCGA-AO-A12B-01 Luminal B -TCGA-A2-A04R TCGA-A2-A04R-01 Luminal B -TCGA-B6-A0IM TCGA-B6-A0IM-01 Luminal B -TCGA-AO-A03P TCGA-AO-A03P-01 Luminal B -TCGA-A1-A0SM TCGA-A1-A0SM-01 Luminal B -TCGA-A8-A06N TCGA-A8-A06N-01 Luminal B -TCGA-A8-A06O TCGA-A8-A06O-01 Luminal B -TCGA-A8-A06Q TCGA-A8-A06Q-01 Luminal B -TCGA-A8-A06R TCGA-A8-A06R-01 Luminal B -TCGA-A8-A06Z TCGA-A8-A06Z-01 Luminal B -TCGA-A8-A079 TCGA-A8-A079-01 Luminal B -TCGA-A8-A07L TCGA-A8-A07L-01 Luminal B -TCGA-A8-A07S TCGA-A8-A07S-01 Luminal B -TCGA-A8-A07W TCGA-A8-A07W-01 Luminal B -TCGA-A8-A07Z TCGA-A8-A07Z-01 Luminal B -TCGA-A8-A082 TCGA-A8-A082-01 Luminal B -TCGA-A8-A084 TCGA-A8-A084-01 Luminal B -TCGA-A8-A085 TCGA-A8-A085-01 Luminal B -TCGA-A8-A08F TCGA-A8-A08F-01 Luminal B -TCGA-A8-A08G TCGA-A8-A08G-01 Luminal B -TCGA-A8-A08I TCGA-A8-A08I-01 Luminal B -TCGA-A8-A08P TCGA-A8-A08P-01 Luminal B -TCGA-A8-A095 TCGA-A8-A095-01 Luminal B -TCGA-A8-A096 TCGA-A8-A096-01 Luminal B -TCGA-A8-A097 TCGA-A8-A097-01 Luminal B -TCGA-A8-A09C TCGA-A8-A09C-01 Luminal B -TCGA-A8-A09D TCGA-A8-A09D-01 Luminal B -TCGA-A8-A09I TCGA-A8-A09I-01 Luminal B -TCGA-A8-A09M TCGA-A8-A09M-01 Luminal B -TCGA-A8-A09N TCGA-A8-A09N-01 Luminal B -TCGA-A8-A09Q TCGA-A8-A09Q-01 Luminal B -TCGA-A8-A09R TCGA-A8-A09R-01 Luminal B -TCGA-A8-A09W TCGA-A8-A09W-01 Luminal B -TCGA-A8-A09Z TCGA-A8-A09Z-01 Luminal B -TCGA-A8-A0A9 TCGA-A8-A0A9-01 Luminal B -TCGA-A8-A0AB TCGA-A8-A0AB-01 Luminal B -TCGA-AN-A03Y TCGA-AN-A03Y-01 Luminal B -TCGA-AN-A041 TCGA-AN-A041-01 Luminal B -TCGA-AN-A049 TCGA-AN-A049-01 Luminal B -TCGA-AN-A0AJ TCGA-AN-A0AJ-01 Luminal B -TCGA-AN-A0AK TCGA-AN-A0AK-01 Luminal B -TCGA-AN-A0AM TCGA-AN-A0AM-01 Luminal B -TCGA-AN-A0AS TCGA-AN-A0AS-01 Luminal B -TCGA-AN-A0FF TCGA-AN-A0FF-01 Luminal B -TCGA-AN-A0FK TCGA-AN-A0FK-01 Luminal B -TCGA-AN-A0FY TCGA-AN-A0FY-01 Luminal B -TCGA-AN-A0XR TCGA-AN-A0XR-01 Luminal B -TCGA-AN-A0XW TCGA-AN-A0XW-01 Luminal B -TCGA-AR-A0TQ TCGA-AR-A0TQ-01 Luminal B -TCGA-AR-A0TT TCGA-AR-A0TT-01 Luminal B -TCGA-AR-A0TV TCGA-AR-A0TV-01 Luminal B -TCGA-AR-A0TZ TCGA-AR-A0TZ-01 Luminal B -TCGA-AR-A0U3 TCGA-AR-A0U3-01 Luminal B -TCGA-AR-A1AV TCGA-AR-A1AV-01 Luminal B -TCGA-BH-A0AU TCGA-BH-A0AU-01 Luminal B -TCGA-BH-A0B5 TCGA-BH-A0B5-01 Luminal B -TCGA-BH-A0BF TCGA-BH-A0BF-01 Luminal B -TCGA-BH-A0BZ TCGA-BH-A0BZ-01 Luminal B -TCGA-BH-A0C3 TCGA-BH-A0C3-01 Luminal B -TCGA-BH-A0C7 TCGA-BH-A0C7-01 Luminal B -TCGA-BH-A0DD TCGA-BH-A0DD-01 Luminal B -TCGA-BH-A0W3 TCGA-BH-A0W3-01 Luminal B -TCGA-BH-A18F TCGA-BH-A18F-01 Luminal B -TCGA-C8-A12M TCGA-C8-A12M-01 Luminal B -TCGA-C8-A12U TCGA-C8-A12U-01 Luminal B -TCGA-C8-A12W TCGA-C8-A12W-01 Luminal B -TCGA-C8-A12X TCGA-C8-A12X-01 Luminal B -TCGA-C8-A1HG TCGA-C8-A1HG-01 Luminal B -TCGA-C8-A1HL TCGA-C8-A1HL-01 Luminal B -TCGA-C8-A1HM TCGA-C8-A1HM-01 Luminal B -TCGA-C8-A1HN TCGA-C8-A1HN-01 Luminal B -TCGA-E2-A14O TCGA-E2-A14O-01 Luminal B -TCGA-E2-A14S TCGA-E2-A14S-01 Luminal B -TCGA-E2-A14W TCGA-E2-A14W-01 Luminal B -TCGA-E2-A155 TCGA-E2-A155-01 Luminal B -TCGA-E2-A15A TCGA-E2-A15A-01 Luminal B -TCGA-E2-A15K TCGA-E2-A15K-01 Luminal B -TCGA-E2-A15L TCGA-E2-A15L-01 Luminal B -TCGA-E2-A15M TCGA-E2-A15M-01 Luminal B -TCGA-E2-A15S TCGA-E2-A15S-01 Luminal B -TCGA-E2-A15T TCGA-E2-A15T-01 Luminal B -TCGA-AO-A03U TCGA-AO-A03U-01 NA -TCGA-B6-A0IE TCGA-B6-A0IE-01 NA -TCGA-A2-A0YK TCGA-A2-A0YK-01 NA -TCGA-E2-A108 TCGA-E2-A108-01 Claudin low -TCGA-AO-A0JB TCGA-AO-A0JB-01 NA -TCGA-AO-A03R TCGA-AO-A03R-01 NA -TCGA-AO-A03T TCGA-AO-A03T-01 NA -TCGA-AR-A1AO TCGA-AR-A1AO-01 Claudin low -TCGA-A2-A0YT TCGA-A2-A0YT-01 Luminal B -TCGA-AQ-A0Y5 TCGA-AQ-A0Y5-01 NA -TCGA-EW-A1P8 TCGA-EW-A1P8-01 NA -TCGA-E2-A1LK TCGA-E2-A1LK-01 NA -TCGA-BH-A1EY TCGA-BH-A1EY-01 NA -TCGA-BH-A1F8 TCGA-BH-A1F8-01 NA -TCGA-BH-A1F2 TCGA-BH-A1F2-01 NA -TCGA-BH-A1FD TCGA-BH-A1FD-01 NA -TCGA-BH-A1FH TCGA-BH-A1FH-01 NA -TCGA-BH-A203 TCGA-BH-A203-01 NA -TCGA-BH-A1FM TCGA-BH-A1FM-01 NA -TCGA-BH-A1EX TCGA-BH-A1EX-01 NA -TCGA-BH-A1FL TCGA-BH-A1FL-01 NA -TCGA-BH-A208 TCGA-BH-A208-01 NA -TCGA-GM-A2D9 TCGA-GM-A2D9-01 NA -TCGA-BH-A1FJ TCGA-BH-A1FJ-01 NA -TCGA-BH-A1EN TCGA-BH-A1EN-01 NA -TCGA-BH-A1FN TCGA-BH-A1FN-01 NA -TCGA-BH-A1FU TCGA-BH-A1FU-01 NA -TCGA-BH-A1FE TCGA-BH-A1FE-01 NA -TCGA-BH-A204 TCGA-BH-A204-01 NA -TCGA-BH-A1F5 TCGA-BH-A1F5-01 NA -TCGA-AR-A256 TCGA-AR-A256-01 NA -TCGA-BH-A1F6 TCGA-BH-A1F6-01 NA -TCGA-BH-A1FC TCGA-BH-A1FC-01 NA -TCGA-BH-A1FB TCGA-BH-A1FB-01 NA -TCGA-BH-A1FG TCGA-BH-A1FG-01 NA -TCGA-BH-A209 TCGA-BH-A209-01 NA -TCGA-BH-A1FR TCGA-BH-A1FR-01 NA -TCGA-AO-A1KS TCGA-AO-A1KS-01 NA -TCGA-A7-A13G TCGA-A7-A13G-01 NA -TCGA-D8-A1JS TCGA-D8-A1JS-01 NA -TCGA-A7-A0DC TCGA-A7-A0DC-01 Luminal A -TCGA-D8-A1JT TCGA-D8-A1JT-01 NA -TCGA-A7-A26E TCGA-A7-A26E-01 NA -TCGA-D8-A1JH TCGA-D8-A1JH-01 NA -TCGA-D8-A1JU TCGA-D8-A1JU-01 NA -TCGA-AO-A1KO TCGA-AO-A1KO-01 NA -TCGA-AO-A1KT TCGA-AO-A1KT-01 NA -TCGA-AO-A0J5 TCGA-AO-A0J5-01 Luminal A -TCGA-B6-A1KC TCGA-B6-A1KC-01 NA -TCGA-AO-A1KQ TCGA-AO-A1KQ-01 NA -TCGA-B6-A1KI TCGA-B6-A1KI-01 NA -TCGA-AO-A1KP TCGA-AO-A1KP-01 NA -TCGA-B6-A1KF TCGA-B6-A1KF-01 NA -TCGA-B6-A1KN TCGA-B6-A1KN-01 NA -TCGA-D8-A1XO TCGA-D8-A1XO-01 NA -TCGA-D8-A1XT TCGA-D8-A1XT-01 NA -TCGA-A1-A0SP TCGA-A1-A0SP-01 NA -TCGA-D8-A1J8 TCGA-D8-A1J8-01 NA -TCGA-D8-A1JF TCGA-D8-A1JF-01 NA -TCGA-D8-A1JG TCGA-D8-A1JG-01 NA -TCGA-D8-A1XS TCGA-D8-A1XS-01 NA -TCGA-A1-A0SB TCGA-A1-A0SB-01 NA -TCGA-A1-A0SF TCGA-A1-A0SF-01 NA -TCGA-A1-A0SG TCGA-A1-A0SG-01 NA -TCGA-A1-A0SI TCGA-A1-A0SI-01 NA -TCGA-A1-A0SN TCGA-A1-A0SN-01 NA -TCGA-A1-A0SQ TCGA-A1-A0SQ-01 NA -TCGA-A2-A1FV TCGA-A2-A1FV-01 NA -TCGA-A2-A1FW TCGA-A2-A1FW-01 NA -TCGA-A2-A1FX TCGA-A2-A1FX-01 NA -TCGA-A2-A1FZ TCGA-A2-A1FZ-01 NA -TCGA-A2-A1G0 TCGA-A2-A1G0-01 NA -TCGA-A2-A1G1 TCGA-A2-A1G1-01 NA -TCGA-A2-A1G4 TCGA-A2-A1G4-01 NA -TCGA-A2-A1G6 TCGA-A2-A1G6-01 NA -TCGA-A2-A259 TCGA-A2-A259-01 NA -TCGA-A2-A25A TCGA-A2-A25A-01 NA -TCGA-A2-A25B TCGA-A2-A25B-01 NA -TCGA-A2-A25C TCGA-A2-A25C-01 NA -TCGA-A2-A25D TCGA-A2-A25D-01 NA -TCGA-A2-A25E TCGA-A2-A25E-01 NA -TCGA-A2-A25F TCGA-A2-A25F-01 NA -TCGA-A7-A26F TCGA-A7-A26F-01 NA -TCGA-A7-A26G TCGA-A7-A26G-01 NA -TCGA-A7-A26H TCGA-A7-A26H-01 NA -TCGA-A7-A26I TCGA-A7-A26I-01 NA -TCGA-A7-A26J TCGA-A7-A26J-01 NA -TCGA-A8-A08S TCGA-A8-A08S-01 Luminal B -TCGA-A8-A09E TCGA-A8-A09E-01 Luminal B -TCGA-A8-A09K TCGA-A8-A09K-01 Luminal B -TEST-A23C TEST-A23C-01 NA -TEST-A23E TEST-A23E-01 NA -TEST-A23H TEST-A23H-01 NA -TCGA-AO-A1KR TCGA-AO-A1KR-01 NA -TCGA-AQ-A1H2 TCGA-AQ-A1H2-01 NA -TCGA-AQ-A1H3 TCGA-AQ-A1H3-01 NA -TCGA-AR-A24H TCGA-AR-A24H-01 NA -TCGA-AR-A24K TCGA-AR-A24K-01 NA -TCGA-AR-A24L TCGA-AR-A24L-01 NA -TCGA-AR-A24M TCGA-AR-A24M-01 NA -TCGA-AR-A24N TCGA-AR-A24N-01 NA -TCGA-AR-A24O TCGA-AR-A24O-01 NA -TCGA-AR-A24P TCGA-AR-A24P-01 NA -TCGA-AR-A24Q TCGA-AR-A24Q-01 NA -TCGA-AR-A24R TCGA-AR-A24R-01 NA -TCGA-AR-A24S TCGA-AR-A24S-01 NA -TCGA-AR-A24T TCGA-AR-A24T-01 NA -TCGA-AR-A24U TCGA-AR-A24U-01 NA -TCGA-AR-A24V TCGA-AR-A24V-01 NA -TCGA-AR-A24X TCGA-AR-A24X-01 NA -TCGA-AR-A24Z TCGA-AR-A24Z-01 NA -TCGA-AR-A250 TCGA-AR-A250-01 NA -TCGA-AR-A251 TCGA-AR-A251-01 NA -TCGA-AR-A252 TCGA-AR-A252-01 NA -TCGA-AR-A254 TCGA-AR-A254-01 NA -TCGA-AR-A255 TCGA-AR-A255-01 NA -TCGA-BH-A0B2 TCGA-BH-A0B2-01 Luminal A -TCGA-BH-A0DV TCGA-BH-A0DV-01 NA -TCGA-BH-A201 TCGA-BH-A201-01 NA -TCGA-BH-A202 TCGA-BH-A202-01 NA -TCGA-BH-A28Q TCGA-BH-A28Q-01 NA -TCGA-C8-A1HE TCGA-C8-A1HE-01 NA -TCGA-C8-A1HJ TCGA-C8-A1HJ-01 NA -TCGA-C8-A1HK TCGA-C8-A1HK-01 NA -TCGA-C8-A1HO TCGA-C8-A1HO-01 NA -TCGA-C8-A26V TCGA-C8-A26V-01 NA -TCGA-C8-A26W TCGA-C8-A26W-01 NA -TCGA-C8-A26X TCGA-C8-A26X-01 NA -TCGA-C8-A26Y TCGA-C8-A26Y-01 NA -TCGA-C8-A26Z TCGA-C8-A26Z-01 NA -TCGA-C8-A273 TCGA-C8-A273-01 NA -TCGA-C8-A274 TCGA-C8-A274-01 NA -TCGA-C8-A275 TCGA-C8-A275-01 NA -TCGA-C8-A278 TCGA-C8-A278-01 NA -TCGA-C8-A27A TCGA-C8-A27A-01 NA -TCGA-C8-A27B TCGA-C8-A27B-01 NA -TCGA-D8-A146 TCGA-D8-A146-01 Luminal A -TCGA-D8-A1J9 TCGA-D8-A1J9-01 NA -TCGA-D8-A1JA TCGA-D8-A1JA-01 NA -TCGA-D8-A1JB TCGA-D8-A1JB-01 NA -TCGA-D8-A1JC TCGA-D8-A1JC-01 NA -TCGA-D8-A1JD TCGA-D8-A1JD-01 NA -TCGA-D8-A1JE TCGA-D8-A1JE-01 NA -TCGA-D8-A1JI TCGA-D8-A1JI-01 NA -TCGA-D8-A1JJ TCGA-D8-A1JJ-01 NA -TCGA-D8-A1JK TCGA-D8-A1JK-01 NA -TCGA-D8-A1JL TCGA-D8-A1JL-01 NA -TCGA-D8-A1JM TCGA-D8-A1JM-01 NA -TCGA-D8-A1JN TCGA-D8-A1JN-01 NA -TCGA-D8-A1JP TCGA-D8-A1JP-01 NA -TCGA-D8-A1X5 TCGA-D8-A1X5-01 NA -TCGA-D8-A1X6 TCGA-D8-A1X6-01 NA -TCGA-D8-A1X7 TCGA-D8-A1X7-01 NA -TCGA-D8-A1X8 TCGA-D8-A1X8-01 NA -TCGA-D8-A1X9 TCGA-D8-A1X9-01 NA -TCGA-D8-A1XA TCGA-D8-A1XA-01 NA -TCGA-D8-A1XB TCGA-D8-A1XB-01 NA -TCGA-D8-A1XC TCGA-D8-A1XC-01 NA -TCGA-D8-A1XD TCGA-D8-A1XD-01 NA -TCGA-D8-A1XF TCGA-D8-A1XF-01 NA -TCGA-D8-A1XG TCGA-D8-A1XG-01 NA -TCGA-D8-A1XJ TCGA-D8-A1XJ-01 NA -TCGA-D8-A1XK TCGA-D8-A1XK-01 NA -TCGA-D8-A1XL TCGA-D8-A1XL-01 NA -TCGA-D8-A1XM TCGA-D8-A1XM-01 NA -TCGA-D8-A1XQ TCGA-D8-A1XQ-01 NA -TCGA-D8-A1XR TCGA-D8-A1XR-01 NA -TCGA-D8-A1XU TCGA-D8-A1XU-01 NA -TCGA-D8-A1XV TCGA-D8-A1XV-01 NA -TCGA-D8-A1XW TCGA-D8-A1XW-01 NA -TCGA-D8-A1XY TCGA-D8-A1XY-01 NA -TCGA-D8-A1XZ TCGA-D8-A1XZ-01 NA -TCGA-D8-A1Y0 TCGA-D8-A1Y0-01 NA -TCGA-D8-A1Y1 TCGA-D8-A1Y1-01 NA -TCGA-D8-A1Y2 TCGA-D8-A1Y2-01 NA -TCGA-D8-A1Y3 TCGA-D8-A1Y3-01 NA -TCGA-D8-A27E TCGA-D8-A27E-01 NA -TCGA-D8-A27F TCGA-D8-A27F-01 NA -TCGA-D8-A27G TCGA-D8-A27G-01 NA -TCGA-D8-A27H TCGA-D8-A27H-01 NA -TCGA-D8-A27I TCGA-D8-A27I-01 NA -TCGA-D8-A27K TCGA-D8-A27K-01 NA -TCGA-D8-A27L TCGA-D8-A27L-01 NA -TCGA-D8-A27M TCGA-D8-A27M-01 NA -TCGA-D8-A27N TCGA-D8-A27N-01 NA -TCGA-D8-A27P TCGA-D8-A27P-01 NA -TCGA-D8-A27R TCGA-D8-A27R-01 NA -TCGA-D8-A27T TCGA-D8-A27T-01 NA -TCGA-D8-A27V TCGA-D8-A27V-01 NA -TCGA-D8-A27W TCGA-D8-A27W-01 NA -TCGA-E2-A1IE TCGA-E2-A1IE-01 NA -TCGA-E2-A1IF TCGA-E2-A1IF-01 NA -TCGA-E2-A1IG TCGA-E2-A1IG-01 NA -TCGA-E2-A1IH TCGA-E2-A1IH-01 NA -TCGA-E2-A1II TCGA-E2-A1II-01 NA -TCGA-E2-A1IJ TCGA-E2-A1IJ-01 NA -TCGA-E2-A1IK TCGA-E2-A1IK-01 NA -TCGA-E2-A1IL TCGA-E2-A1IL-01 NA -TCGA-E2-A1IN TCGA-E2-A1IN-01 NA -TCGA-E2-A1IO TCGA-E2-A1IO-01 NA -TCGA-E2-A1IP TCGA-E2-A1IP-01 NA -TCGA-E2-A1IU TCGA-E2-A1IU-01 NA -TCGA-E2-A1L6 TCGA-E2-A1L6-01 NA -TCGA-E2-A1L7 TCGA-E2-A1L7-01 NA -TCGA-E2-A1L8 TCGA-E2-A1L8-01 NA -TCGA-E2-A1L9 TCGA-E2-A1L9-01 NA -TCGA-E2-A1LA TCGA-E2-A1LA-01 NA -TCGA-E2-A1LB TCGA-E2-A1LB-01 NA -TCGA-E2-A1LG TCGA-E2-A1LG-01 NA -TCGA-E2-A1LH TCGA-E2-A1LH-01 NA -TCGA-E2-A1LI TCGA-E2-A1LI-01 NA -TCGA-E2-A1LL TCGA-E2-A1LL-01 NA -TCGA-E2-A1LS TCGA-E2-A1LS-01 NA -TCGA-E9-A1N3 TCGA-E9-A1N3-01 NA -TCGA-E9-A1N4 TCGA-E9-A1N4-01 NA -TCGA-E9-A1N5 TCGA-E9-A1N5-01 NA -TCGA-E9-A1N6 TCGA-E9-A1N6-01 NA -TCGA-E9-A1N8 TCGA-E9-A1N8-01 NA -TCGA-E9-A1N9 TCGA-E9-A1N9-01 NA -TCGA-E9-A1NA TCGA-E9-A1NA-01 NA -TCGA-E9-A1NC TCGA-E9-A1NC-01 NA -TCGA-E9-A1ND TCGA-E9-A1ND-01 NA -TCGA-E9-A1NE TCGA-E9-A1NE-01 NA -TCGA-E9-A1NF TCGA-E9-A1NF-01 NA -TCGA-E9-A1NG TCGA-E9-A1NG-01 NA -TCGA-E9-A1NH TCGA-E9-A1NH-01 NA -TCGA-E9-A1NI TCGA-E9-A1NI-01 NA -TCGA-E9-A1QZ TCGA-E9-A1QZ-01 NA -TCGA-E9-A1R0 TCGA-E9-A1R0-01 NA -TCGA-E9-A1R2 TCGA-E9-A1R2-01 NA -TCGA-E9-A1R3 TCGA-E9-A1R3-01 NA -TCGA-E9-A1R4 TCGA-E9-A1R4-01 NA -TCGA-E9-A1R5 TCGA-E9-A1R5-01 NA -TCGA-E9-A1R6 TCGA-E9-A1R6-01 NA -TCGA-E9-A1R7 TCGA-E9-A1R7-01 NA -TCGA-E9-A1RA TCGA-E9-A1RA-01 NA -TCGA-E9-A1RB TCGA-E9-A1RB-01 NA -TCGA-E9-A1RC TCGA-E9-A1RC-01 NA -TCGA-E9-A1RD TCGA-E9-A1RD-01 NA -TCGA-E9-A1RE TCGA-E9-A1RE-01 NA -TCGA-E9-A1RF TCGA-E9-A1RF-01 NA -TCGA-E9-A1RG TCGA-E9-A1RG-01 NA -TCGA-E9-A1RH TCGA-E9-A1RH-01 NA -TCGA-E9-A1RI TCGA-E9-A1RI-01 NA -TCGA-E9-A226 TCGA-E9-A226-01 NA -TCGA-E9-A227 TCGA-E9-A227-01 NA -TCGA-E9-A228 TCGA-E9-A228-01 NA -TCGA-E9-A229 TCGA-E9-A229-01 NA -TCGA-E9-A22A TCGA-E9-A22A-01 NA -TCGA-E9-A22B TCGA-E9-A22B-01 NA -TCGA-E9-A22D TCGA-E9-A22D-01 NA -TCGA-E9-A22E TCGA-E9-A22E-01 NA -TCGA-E9-A22G TCGA-E9-A22G-01 NA -TCGA-E9-A22H TCGA-E9-A22H-01 NA -TCGA-E9-A243 TCGA-E9-A243-01 NA -TCGA-E9-A244 TCGA-E9-A244-01 NA -TCGA-E9-A245 TCGA-E9-A245-01 NA -TCGA-E9-A247 TCGA-E9-A247-01 NA -TCGA-E9-A248 TCGA-E9-A248-01 NA -TCGA-E9-A249 TCGA-E9-A249-01 NA -TCGA-E9-A24A TCGA-E9-A24A-01 NA -TCGA-EW-A1IW TCGA-EW-A1IW-01 NA -TCGA-EW-A1IX TCGA-EW-A1IX-01 NA -TCGA-EW-A1IY TCGA-EW-A1IY-01 NA -TCGA-EW-A1IZ TCGA-EW-A1IZ-01 NA -TCGA-EW-A1J1 TCGA-EW-A1J1-01 NA -TCGA-EW-A1J2 TCGA-EW-A1J2-01 NA -TCGA-EW-A1J3 TCGA-EW-A1J3-01 NA -TCGA-EW-A1J5 TCGA-EW-A1J5-01 NA -TCGA-EW-A1J6 TCGA-EW-A1J6-01 NA -TCGA-EW-A1OV TCGA-EW-A1OV-01 NA -TCGA-EW-A1OW TCGA-EW-A1OW-01 NA -TCGA-EW-A1OX TCGA-EW-A1OX-01 NA -TCGA-EW-A1OY TCGA-EW-A1OY-01 NA -TCGA-EW-A1OZ TCGA-EW-A1OZ-01 NA -TCGA-EW-A1P0 TCGA-EW-A1P0-01 NA -TCGA-EW-A1P1 TCGA-EW-A1P1-01 NA -TCGA-EW-A1P3 TCGA-EW-A1P3-01 NA -TCGA-EW-A1P4 TCGA-EW-A1P4-01 NA -TCGA-EW-A1P5 TCGA-EW-A1P5-01 NA -TCGA-EW-A1P6 TCGA-EW-A1P6-01 NA -TCGA-EW-A1P7 TCGA-EW-A1P7-01 NA -TCGA-EW-A1PA TCGA-EW-A1PA-01 NA -TCGA-EW-A1PB TCGA-EW-A1PB-01 NA -TCGA-EW-A1PD TCGA-EW-A1PD-01 NA -TCGA-EW-A1PE TCGA-EW-A1PE-01 NA -TCGA-EW-A1PF TCGA-EW-A1PF-01 NA -TCGA-EW-A1PG TCGA-EW-A1PG-01 NA -TCGA-EW-A1PH TCGA-EW-A1PH-01 NA -TCGA-EW-A2FS TCGA-EW-A2FS-01 NA -TCGA-EW-A2FV TCGA-EW-A2FV-01 NA -TCGA-EW-A2FW TCGA-EW-A2FW-01 NA -TCGA-GM-A2DA TCGA-GM-A2DA-01 NA -TCGA-GM-A2DB TCGA-GM-A2DB-01 NA -TCGA-GM-A2DC TCGA-GM-A2DC-01 NA -TCGA-GM-A2DD TCGA-GM-A2DD-01 NA -TCGA-GM-A2DF TCGA-GM-A2DF-01 NA -TCGA-GM-A2DH TCGA-GM-A2DH-01 NA -TCGA-GM-A2DI TCGA-GM-A2DI-01 NA -TCGA-GM-A2DK TCGA-GM-A2DK-01 NA -TCGA-GM-A2DL TCGA-GM-A2DL-01 NA -TCGA-GM-A2DM TCGA-GM-A2DM-01 NA -TCGA-GM-A2DN TCGA-GM-A2DN-01 NA -TCGA-GM-A2DO TCGA-GM-A2DO-01 NA -TCGA-AR-A24W TCGA-AR-A24W-01 NA -TEST-A2B8 TEST-A2B8-01 NA -TEST-A2FF TEST-A2FF-01 NA -TEST-A2FB TEST-A2FB-01 NA -TEST-A2FG TEST-A2FG-01 NA -TCGA-GI-A2C8 TCGA-GI-A2C8-01 NA -TCGA-E9-A295 TCGA-E9-A295-01 NA -TCGA-E2-A15E TCGA-E2-A15E-06 NA -TCGA-A2-A0T2 TCGA-A2-A0T2-01 NA diff --git a/core/src/test/scripts/test_data/study_missing_caselists/meta_CNA.txt b/core/src/test/scripts/test_data/study_missing_caselists/meta_CNA.txt deleted file mode 100644 index 5a08b73f26b..00000000000 --- a/core/src/test/scripts/test_data/study_missing_caselists/meta_CNA.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: spam -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: DISCRETE -stable_id: gistic -show_profile_in_analysis_tab: true -profile_description: Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification. -profile_name: Putative copy-number alterations from GISTIC -data_filename: data_CNA.txt diff --git a/core/src/test/scripts/test_data/study_missing_caselists/meta_mutations_extended.txt b/core/src/test/scripts/test_data/study_missing_caselists/meta_mutations_extended.txt deleted file mode 100644 index 3430315eea3..00000000000 --- a/core/src/test/scripts/test_data/study_missing_caselists/meta_mutations_extended.txt +++ /dev/null @@ -1,9 +0,0 @@ -cancer_study_identifier: spam -genetic_alteration_type: MUTATION_EXTENDED -datatype: MAF -stable_id: mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations -data_filename: brca_tcga_pub.maf -swissprot_identifier: name diff --git a/core/src/test/scripts/test_data/study_missing_caselists/meta_samples.txt b/core/src/test/scripts/test_data/study_missing_caselists/meta_samples.txt deleted file mode 100644 index 3dba005bab9..00000000000 --- a/core/src/test/scripts/test_data/study_missing_caselists/meta_samples.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: spam -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -data_filename: data_samples.txt diff --git a/core/src/test/scripts/test_data/study_missing_caselists/meta_study.txt b/core/src/test/scripts/test_data/study_missing_caselists/meta_study.txt deleted file mode 100644 index 3e5e429b8f0..00000000000 --- a/core/src/test/scripts/test_data/study_missing_caselists/meta_study.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: spam -type_of_cancer: brca -name: Spam (spam) -description: Baked beans diff --git a/core/src/test/scripts/test_data/study_oncokb_import/case_lists/cases_cnaseq.txt b/core/src/test/scripts/test_data/study_oncokb_import/case_lists/cases_cnaseq.txt deleted file mode 100644 index d7b40ebe9fd..00000000000 --- a/core/src/test/scripts/test_data/study_oncokb_import/case_lists/cases_cnaseq.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: study_es_0 -stable_id: study_es_0_cnaseq -case_list_name: Samples profiled for mutations and CNA -case_list_description: This is this case list that contains all samples that are profiled for mutations and CNA. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 TCGA-B6-A0I6-01 TCGA-BH-A0HL-01 TEST_SAMPLE_1 TEST_SAMPLE_2 TEST_SAMPLE_3 TEST_SAMPLE_4 TEST_SAMPLE_12 TEST_SAMPLE_13 TEST_SAMPLE_14 TEST_SAMPLE_15 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_oncokb_import/data_clinical_patients.txt b/core/src/test/scripts/test_data/study_oncokb_import/data_clinical_patients.txt deleted file mode 100644 index bcee4c63dfc..00000000000 --- a/core/src/test/scripts/test_data/study_oncokb_import/data_clinical_patients.txt +++ /dev/null @@ -1,845 +0,0 @@ -#Patient Identifier Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient identifier Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING NUMBER STRING NUMBER -#1 1 1 1 1 -PATIENT_ID OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TCGA-A2-A04P 1:Recurred/Progressed [Not Available] -TCGA-A1-A0SK 1:DECEASED 31.77 [Not Available] -TCGA-A2-A0CM 1:DECEASED 24.77 1:Recurred/Progressed [Not Available] -TCGA-AR-A1AR 1:DECEASED 17.18 [Not Available] [Not Available] -TCGA-B6-A0WX 1:DECEASED 21.45 1:Recurred/Progressed [Not Available] -TCGA-BH-A1F0 1:DECEASED 25.79 1:Recurred/Progressed [Not Available] -TCGA-B6-A0I6 1:DECEASED 32.56 1:Recurred/Progressed [Not Available] -TCGA-BH-A18V 1:DECEASED 51.09 [Not Available] [Not Available] -TCGA-BH-A18Q 1:DECEASED 55.59 [Not Available] [Not Available] -TCGA-BH-A18K 1:DECEASED 90.74 1:Recurred/Progressed [Not Available] -TCGA-BH-A0HL 0:LIVING 2.37 0:DiseaseFree 2.37 -TCGA-BH-A0E0 0:LIVING 4.37 0:DiseaseFree 4.37 -TCGA-BH-A0RX 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-A7-A13D 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-BH-A0E6 0:LIVING 9.59 0:DiseaseFree 9.59 -TCGA-AO-A0J4 0:LIVING 9.66 0:DiseaseFree 9.66 -TCGA-A7-A0CE 0:LIVING 8.31 0:DiseaseFree 8.31 -TCGA-A7-A13E 0:LIVING 9.43 0:DiseaseFree 9.43 -TCGA-A7-A0DA 0:LIVING 12.25 0:DiseaseFree 12.25 -TCGA-D8-A142 0:LIVING 2 0:DiseaseFree 2 -TCGA-D8-A143 0:LIVING 5.65 0:DiseaseFree 5.65 -TCGA-AQ-A04J 0:LIVING 5.22 0:DiseaseFree 5.22 -TCGA-BH-A0HN 0:LIVING 16.95 0:DiseaseFree 16.95 -TCGA-A2-A0T0 0:LIVING 11.07 0:DiseaseFree 11.07 -TCGA-A2-A0YE 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-A2-A0YJ 0:LIVING 10.71 0:DiseaseFree 10.71 -TCGA-A2-A0D0 0:LIVING 21.12 0:DiseaseFree 21.12 -TCGA-A2-A04U 0:LIVING 22.01 0:DiseaseFree 22.01 -TCGA-AO-A0J6 0:LIVING 25.46 0:DiseaseFree 25.46 -TCGA-A2-A0YM 0:LIVING 21.72 0:DiseaseFree 21.72 -TCGA-A2-A0D2 0:LIVING 25 0:DiseaseFree 25 -TCGA-BH-A0B3 0:LIVING 39.52 0:DiseaseFree 39.52 -TCGA-A2-A04Q 0:LIVING 41.89 0:DiseaseFree 41.89 -TCGA-A2-A0SX 0:LIVING 42.32 1:Recurred/Progressed [Not Available] -TCGA-AO-A0JL 0:LIVING 43.33 0:DiseaseFree 43.33 -TCGA-AO-A12F 0:LIVING 48.33 0:DiseaseFree 48.33 -TCGA-BH-A0B9 0:LIVING 51.65 0:DiseaseFree 51.65 -TCGA-A2-A04T 0:LIVING 64.06 0:DiseaseFree 64.06 -TCGA-B6-A0RT 0:LIVING 89.39 0:DiseaseFree 89.39 -TCGA-AO-A128 0:LIVING 94.52 0:DiseaseFree 94.52 -TCGA-AO-A129 0:LIVING 96.03 0:DiseaseFree 96.03 -TCGA-AO-A124 0:LIVING 102.47 0:DiseaseFree 102.47 -TCGA-B6-A0RU 0:LIVING 131.12 0:DiseaseFree 131.12 -TCGA-B6-A0IQ 0:LIVING 127.18 0:DiseaseFree 127.18 -TCGA-B6-A0I2 0:LIVING 125.7 0:DiseaseFree 125.7 -TCGA-B6-A0IJ 0:LIVING 176.85 0:DiseaseFree 176.85 -TCGA-B6-A0X1 0:LIVING 186.31 0:DiseaseFree 186.31 -TCGA-B6-A0RE 0:LIVING 211.38 0:DiseaseFree 211.38 -TCGA-A2-A0ST 0:LIVING 53.98 0:DiseaseFree 53.98 -TCGA-AR-A0TP 0:LIVING 78.59 0:DiseaseFree 78.59 -TCGA-A1-A0SO 0:LIVING 27.99 0:DiseaseFree 27.99 -TCGA-A8-A07C 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A07O 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A07R 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-A8-A07U 0:LIVING 9.95 0:DiseaseFree 9.95 -TCGA-A8-A08H 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A08R 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-AN-A04D 0:LIVING 1.71 0:DiseaseFree 1.71 -TCGA-AN-A0AL 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-AN-A0AR 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0AT 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0FJ 0:LIVING 7.92 0:DiseaseFree 7.92 -TCGA-AN-A0FL 0:LIVING 7.56 0:DiseaseFree 7.56 -TCGA-AN-A0FX 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0G0 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-AN-A0XU 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AR-A0TS 0:LIVING 37.39 0:DiseaseFree 37.39 -TCGA-AR-A0TU 0:LIVING 11.83 0:DiseaseFree 11.83 -TCGA-AR-A0U0 0:LIVING 0.26 0:DiseaseFree 0.26 -TCGA-AR-A0U1 0:LIVING 6.08 0:DiseaseFree 6.08 -TCGA-AR-A0U4 0:LIVING 53.45 0:DiseaseFree 53.45 -TCGA-AR-A1AH 0:LIVING 75.5 0:DiseaseFree 75.5 -TCGA-AR-A1AI 0:LIVING 61.8 0:DiseaseFree 61.8 -TCGA-AR-A1AJ 0:LIVING 52.7 0:DiseaseFree 52.7 -TCGA-AR-A1AQ 0:LIVING 43.01 0:DiseaseFree 43.01 -TCGA-AR-A1AY 0:LIVING 20.17 0:DiseaseFree 20.17 -TCGA-BH-A0AV 0:LIVING 38.77 0:DiseaseFree 38.77 -TCGA-BH-A0BG 0:LIVING 24.84 0:DiseaseFree 24.84 -TCGA-BH-A0BL 0:LIVING 43.99 0:DiseaseFree 43.99 -TCGA-BH-A0BW 0:LIVING 11.66 0:DiseaseFree 11.66 -TCGA-BH-A0DL 0:LIVING 48.2 0:DiseaseFree 48.2 -TCGA-BH-A0WA 0:LIVING 12.22 0:DiseaseFree 12.22 -TCGA-BH-A18G 0:LIVING 2 0:DiseaseFree 2 -TCGA-C8-A12K 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12V 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A131 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A134 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A147 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-E2-A14N 0:LIVING 44.35 0:DiseaseFree 44.35 -TCGA-E2-A14R 0:LIVING 27.76 0:DiseaseFree 27.76 -TCGA-E2-A14X 0:LIVING 22.73 0:DiseaseFree 22.73 -TCGA-E2-A14Y 0:LIVING 22.6 0:DiseaseFree 22.6 -TCGA-E2-A150 0:LIVING 19.42 0:DiseaseFree 19.42 -TCGA-E2-A158 0:LIVING 14.78 0:DiseaseFree 14.78 -TCGA-E2-A159 0:LIVING 16.92 0:DiseaseFree 16.92 -TCGA-E2-A1AZ 0:LIVING 64.52 0:DiseaseFree 64.52 -TCGA-E2-A1B5 0:LIVING 25.43 0:DiseaseFree 25.43 -TCGA-A8-A08L 1:DECEASED 9.99 [Not Available] [Not Available] -TCGA-BH-A1EV 1:DECEASED 11.99 1:Recurred/Progressed [Not Available] -TCGA-B6-A0I9 1:DECEASED 12.12 1:Recurred/Progressed [Not Available] -TCGA-A8-A09X 1:DECEASED 14 [Not Available] [Not Available] -TCGA-B6-A0IK 1:DECEASED 18.76 1:Recurred/Progressed [Not Available] -TCGA-BH-A18P 1:DECEASED 30.26 1:Recurred/Progressed [Not Available] -TCGA-A8-A08J 1:DECEASED 37.03 [Not Available] [Not Available] -TCGA-BH-A18R 1:DECEASED 37.49 0:DiseaseFree 36.11 -TCGA-AR-A1AT 1:DECEASED 41.79 [Not Available] [Not Available] -TCGA-B6-A0RS 1:DECEASED 100.6 1:Recurred/Progressed [Not Available] -TCGA-BH-A0DZ 0:LIVING 16.26 0:DiseaseFree 16.26 -TCGA-A2-A0T1 0:LIVING 10.58 0:DiseaseFree 10.58 -TCGA-AO-A0J2 0:LIVING 19.22 0:DiseaseFree 19.22 -TCGA-BH-A0AW 0:LIVING 20.43 0:DiseaseFree 20.43 -TCGA-BH-A0EE 0:LIVING 30.98 0:DiseaseFree 30.98 -TCGA-A2-A0D1 0:LIVING 25.82 0:DiseaseFree 25.82 -TCGA-AO-A03N 0:LIVING 54.04 1:Recurred/Progressed [Not Available] -TCGA-A2-A0CY 0:LIVING 42.32 0:DiseaseFree 42.32 -TCGA-A2-A04X 0:LIVING 44.32 0:DiseaseFree 44.32 -TCGA-A2-A0CX 0:LIVING 42.81 0:DiseaseFree 42.81 -TCGA-A2-A04W 0:LIVING 63.01 0:DiseaseFree 63.01 -TCGA-AO-A12D 0:LIVING 64 0:DiseaseFree 64 -TCGA-A2-A0CL 0:LIVING 60.02 0:DiseaseFree 60.02 -TCGA-AO-A0JE 0:LIVING 64.56 0:DiseaseFree 64.56 -TCGA-A2-A0EQ 0:LIVING 67.45 0:DiseaseFree 67.45 -TCGA-AO-A03L 0:LIVING 80.23 0:DiseaseFree 80.23 -TCGA-B6-A0RH 0:LIVING 188.84 0:DiseaseFree 188.84 -TCGA-A8-A075 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-A8-A076 0:LIVING 53.91 0:DiseaseFree 53.91 -TCGA-A8-A07B 0:LIVING 32.98 0:DiseaseFree 32.98 -TCGA-A8-A07I 0:LIVING 14 0:DiseaseFree 14 -TCGA-A8-A081 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A08B 0:LIVING 23.06 0:DiseaseFree 23.06 -TCGA-A8-A08X 0:LIVING 33.97 0:DiseaseFree 33.97 -TCGA-A8-A092 0:LIVING 17.02 0:DiseaseFree 17.02 -TCGA-A8-A094 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A09G 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A0A7 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-AN-A04C 0:LIVING 1.77 0:DiseaseFree 1.77 -TCGA-AN-A0FV 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AR-A0TX 0:LIVING 0.49 0:DiseaseFree 0.49 -TCGA-BH-A0B7 0:LIVING 56.93 0:DiseaseFree 56.93 -TCGA-BH-A0HY 0:LIVING 28.48 0:DiseaseFree 28.48 -TCGA-C8-A12L 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12P 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Q 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12T 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Z 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A130 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A135 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A137 0:LIVING 0.1 0:DiseaseFree 0.1 -TCGA-C8-A138 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A1HF 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A13Z 0:LIVING 6.9 0:DiseaseFree 6.9 -TCGA-E2-A14P 0:LIVING 16 0:DiseaseFree 16 -TCGA-E2-A14V 0:LIVING 24.57 0:DiseaseFree 24.57 -TCGA-E2-A152 0:LIVING 19.32 1:Recurred/Progressed [Not Available] -TCGA-E2-A1B0 0:LIVING 41.76 0:DiseaseFree 41.76 -TCGA-A2-A0CU 1:DECEASED 5.16 0:DiseaseFree 4.57 -TCGA-AR-A0TR 1:DECEASED 5.26 [Not Available] [Not Available] -TCGA-BH-A18T 1:DECEASED 7.36 1:Recurred/Progressed [Not Available] -TCGA-B6-A0I8 1:DECEASED 24.61 1:Recurred/Progressed [Not Available] -TCGA-B6-A0X4 1:DECEASED 28.22 1:Recurred/Progressed [Not Available] -TCGA-A8-A06U 1:DECEASED 28.98 [Not Available] [Not Available] -TCGA-BH-A0EA 1:DECEASED 32.62 0:DiseaseFree 27.3 -TCGA-BH-A18N 1:DECEASED 37.72 [Not Available] [Not Available] -TCGA-BH-A1EU 1:DECEASED 42.25 0:DiseaseFree [Not Available] -TCGA-B6-A0X7 1:DECEASED 58.84 [Not Available] [Not Available] -TCGA-A2-A04V 1:DECEASED 63.08 1:Recurred/Progressed [Not Available] -TCGA-BH-A18S 1:DECEASED 66 0:DiseaseFree 66 -TCGA-BH-A18M 1:DECEASED 72.51 [Not Available] [Not Available] -TCGA-B6-A0RM 1:DECEASED 77.96 0:DiseaseFree 77.96 -TCGA-BH-A1ET 1:DECEASED 82.79 0:DiseaseFree [Not Available] -TCGA-B6-A0IN 1:DECEASED 84.53 1:Recurred/Progressed [Not Available] -TCGA-BH-A1EO 1:DECEASED 91.92 0:DiseaseFree [Not Available] -TCGA-B6-A0WS 1:DECEASED 97.41 0:DiseaseFree [Not Available] -TCGA-B6-A0RP 1:DECEASED 102.7 [Not Available] [Not Available] -TCGA-B6-A0IH 1:DECEASED 112.29 [Not Available] [Not Available] -TCGA-B6-A0WY 1:DECEASED 113.67 1:Recurred/Progressed [Not Available] -TCGA-BH-A1ES 1:DECEASED 113.74 1:Recurred/Progressed [Not Available] -TCGA-B6-A0X0 1:DECEASED 129.61 [Not Available] [Not Available] -TCGA-B6-A0RQ 1:DECEASED 140.38 0:DiseaseFree [Not Available] -TCGA-B6-A0IG 1:DECEASED 146.39 1:Recurred/Progressed [Not Available] -TCGA-BH-A0HO 0:LIVING 2.5 0:DiseaseFree 2.5 -TCGA-BH-A0DS 0:LIVING 2.53 0:DiseaseFree 2.53 -TCGA-BH-A0DQ 0:LIVING 3.22 0:DiseaseFree 3.22 -TCGA-BH-A0HK 0:LIVING 5.85 0:DiseaseFree 5.85 -TCGA-A7-A0CG 0:LIVING 5.45 0:DiseaseFree 5.45 -TCGA-A7-A0CH 0:LIVING 5.29 0:DiseaseFree 5.29 -TCGA-A7-A0DB 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-A7-A0D9 0:LIVING 5.22 0:DiseaseFree 5.22 -TCGA-AO-A0J8 0:LIVING 9.1 0:DiseaseFree 9.1 -TCGA-BH-A0GZ 0:LIVING 10.78 0:DiseaseFree 10.78 -TCGA-AO-A0JA 0:LIVING 11.37 1:Recurred/Progressed [Not Available] -TCGA-AO-A0JF 0:LIVING 11.63 0:DiseaseFree 11.63 -TCGA-A7-A0CD 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-D8-A145 0:LIVING 1.61 0:DiseaseFree 1.61 -TCGA-BH-A0HP 0:LIVING 13.6 0:DiseaseFree 13.6 -TCGA-BH-A0DK 0:LIVING 13.9 0:DiseaseFree 13.9 -TCGA-BH-A0E2 0:LIVING 12.35 0:DiseaseFree 12.35 -TCGA-A2-A0YI 0:LIVING 11.76 0:DiseaseFree 11.76 -TCGA-A2-A0YL 0:LIVING 8.8 0:DiseaseFree 8.8 -TCGA-AO-A0JG 0:LIVING 14.75 0:DiseaseFree 14.75 -TCGA-A2-A0YF 0:LIVING 9.49 0:DiseaseFree 9.49 -TCGA-BH-A0DP 0:LIVING 15.64 0:DiseaseFree 15.64 -TCGA-BH-A0E1 0:LIVING 15.67 0:DiseaseFree 15.67 -TCGA-A2-A0T5 0:LIVING 10.55 0:DiseaseFree 10.55 -TCGA-A2-A0T6 0:LIVING 11.3 0:DiseaseFree 11.3 -TCGA-BH-A0HI 0:LIVING 20.34 0:DiseaseFree 20.34 -TCGA-A2-A0T7 0:LIVING 13.04 0:DiseaseFree 13.04 -TCGA-BH-A0BJ 0:LIVING 21.68 0:DiseaseFree 21.68 -TCGA-BH-A0H7 0:LIVING 23.03 0:DiseaseFree 23.03 -TCGA-BH-A0HF 0:LIVING 23.88 0:DiseaseFree 23.88 -TCGA-BH-A0EB 0:LIVING 24.48 0:DiseaseFree 24.48 -TCGA-BH-A0H6 0:LIVING 24.54 0:DiseaseFree 24.54 -TCGA-A2-A0YD 0:LIVING 18.07 0:DiseaseFree 18.07 -TCGA-BH-A0HB 0:LIVING 26.48 0:DiseaseFree 26.48 -TCGA-BH-A0HX 0:LIVING 27.24 0:DiseaseFree 27.24 -TCGA-AO-A12H 0:LIVING 28.32 0:DiseaseFree 28.32 -TCGA-E2-A10E 0:LIVING 13.73 0:DiseaseFree 13.73 -TCGA-A2-A0D3 0:LIVING 24.18 0:DiseaseFree 24.18 -TCGA-E2-A10F 0:LIVING 11.83 0:DiseaseFree 11.83 -TCGA-AO-A03V 0:LIVING 29.11 0:DiseaseFree 29.11 -TCGA-A2-A0EW 0:LIVING 25.3 0:DiseaseFree 25.3 -TCGA-BH-A0GY 0:LIVING 30.13 0:DiseaseFree 30.13 -TCGA-A2-A0EV 0:LIVING 17.91 0:DiseaseFree 17.91 -TCGA-BH-A0BC 0:LIVING 32 0:DiseaseFree 32 -TCGA-A2-A0YC 0:LIVING 21.12 0:DiseaseFree 21.12 -TCGA-A2-A0EU 0:LIVING 24.08 0:DiseaseFree 24.08 -TCGA-A2-A0ET 0:LIVING 26.51 0:DiseaseFree 26.51 -TCGA-A2-A04Y 0:LIVING 25.07 0:DiseaseFree 25.07 -TCGA-BH-A0HQ 0:LIVING 36.83 0:DiseaseFree 36.83 -TCGA-A2-A0ES 0:LIVING 32.89 0:DiseaseFree 32.89 -TCGA-BH-A0BA 0:LIVING 37.19 0:DiseaseFree 37.19 -TCGA-E2-A10B 0:LIVING 24.57 0:DiseaseFree 24.57 -TCGA-BH-A0B1 0:LIVING 37.72 0:DiseaseFree 37.72 -TCGA-BH-A0DH 0:LIVING 37.98 0:DiseaseFree 37.98 -TCGA-BH-A0B4 0:LIVING 39.13 0:DiseaseFree 39.13 -TCGA-BH-A0H9 0:LIVING 40.97 0:DiseaseFree 40.97 -TCGA-AO-A0J9 0:LIVING 41.23 1:Recurred/Progressed [Not Available] -TCGA-AO-A12G 0:LIVING 41.56 0:DiseaseFree 41.56 -TCGA-A2-A0SY 0:LIVING 37.91 0:DiseaseFree 37.91 -TCGA-BH-A0E7 0:LIVING 44.75 0:DiseaseFree 44.75 -TCGA-AO-A03M 0:LIVING 47.8 0:DiseaseFree 47.8 -TCGA-BH-A0BV 0:LIVING 49.9 0:DiseaseFree 49.9 -TCGA-BH-A0B8 0:LIVING 51.55 0:DiseaseFree 51.55 -TCGA-A2-A0CZ 0:LIVING 43.96 0:DiseaseFree 43.96 -TCGA-A2-A0SU 0:LIVING 44.38 0:DiseaseFree 44.38 -TCGA-AO-A12E 0:LIVING 57.23 0:DiseaseFree 57.23 -TCGA-E2-A106 0:LIVING 51.09 0:DiseaseFree 51.09 -TCGA-A2-A0CV 0:LIVING 61.44 0:DiseaseFree 61.44 -TCGA-AO-A12C 0:LIVING 65.48 0:DiseaseFree 65.48 -TCGA-B6-A0RG 0:LIVING 68.4 0:DiseaseFree 68.4 -TCGA-A2-A0CS 0:LIVING 75.5 0:DiseaseFree 75.5 -TCGA-A2-A0EO 0:LIVING 71.65 0:DiseaseFree 71.65 -TCGA-A2-A0CQ 0:LIVING 78.59 0:DiseaseFree 78.59 -TCGA-A2-A0EN 0:LIVING 82.63 0:DiseaseFree 82.63 -TCGA-AO-A12A 0:LIVING 90.48 0:DiseaseFree 90.48 -TCGA-A2-A0CP 0:LIVING 81.97 0:DiseaseFree 81.97 -TCGA-AO-A126 0:LIVING 93.63 0:DiseaseFree 93.63 -TCGA-AO-A125 0:LIVING 99.15 0:DiseaseFree 99.15 -TCGA-A2-A0EM 0:LIVING 90.58 0:DiseaseFree 90.58 -TCGA-A2-A04N 0:LIVING 103.59 0:DiseaseFree 103.59 -TCGA-AQ-A04L 0:LIVING 109.86 0:DiseaseFree 109.86 -TCGA-B6-A0IO 0:LIVING 110.06 0:DiseaseFree 110.06 -TCGA-B6-A0IP 0:LIVING 110.85 0:DiseaseFree 110.85 -TCGA-B6-A0WZ 0:LIVING 129.48 0:DiseaseFree 129.48 -TCGA-B6-A0I5 0:LIVING 149.45 0:DiseaseFree 149.45 -TCGA-B6-A0RV 0:LIVING 157.3 0:DiseaseFree 157.3 -TCGA-B6-A0RO 0:LIVING 161.9 0:DiseaseFree 161.9 -TCGA-B6-A0RN 0:LIVING 172.84 0:DiseaseFree 172.84 -TCGA-B6-A0WT 0:LIVING 177.28 0:DiseaseFree 177.28 -TCGA-B6-A0IA 0:LIVING 220.71 0:DiseaseFree 220.71 -TCGA-B6-A0RI 0:LIVING 223.24 1:Recurred/Progressed [Not Available] -TCGA-A1-A0SE 0:LIVING 43.37 0:DiseaseFree 43.37 -TCGA-A2-A0EX 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-AO-A0JJ 0:LIVING 49.67 0:DiseaseFree 49.67 -TCGA-E2-A105 0:LIVING 38.21 0:DiseaseFree 38.21 -TCGA-A1-A0SD 0:LIVING 14.36 0:DiseaseFree 14.36 -TCGA-A1-A0SH 0:LIVING 47.21 0:DiseaseFree 47.21 -TCGA-A1-A0SJ 0:LIVING 14 0:DiseaseFree 14 -TCGA-A8-A06P 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A06T 0:LIVING 41.03 0:DiseaseFree 41.03 -TCGA-A8-A06Y 0:LIVING 25.99 0:DiseaseFree 25.99 -TCGA-A8-A07E 0:LIVING 19.97 0:DiseaseFree 19.97 -TCGA-A8-A07F 0:LIVING 18.92 0:DiseaseFree 18.92 -TCGA-A8-A07G 0:LIVING 18.92 0:DiseaseFree 18.92 -TCGA-A8-A07J 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A07P 0:LIVING 10.97 0:DiseaseFree 10.97 -TCGA-A8-A083 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A086 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A08A 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-A8-A08C 0:LIVING 19.94 0:DiseaseFree 19.94 -TCGA-A8-A08O 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A08T 0:LIVING 92.97 0:DiseaseFree 92.97 -TCGA-A8-A08Z 0:LIVING 39.98 0:DiseaseFree 39.98 -TCGA-A8-A090 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A091 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A093 0:LIVING 17.91 0:DiseaseFree 17.91 -TCGA-A8-A099 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A09A 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A09B 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A09T 0:LIVING 18.99 0:DiseaseFree 18.99 -TCGA-A8-A09V 0:LIVING 15.01 0:DiseaseFree 15.01 -TCGA-A8-A0A1 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A0A2 0:LIVING 18.99 0:DiseaseFree 18.99 -TCGA-A8-A0A4 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A0A6 0:LIVING 21.03 0:DiseaseFree 21.03 -TCGA-A8-A0AD 0:LIVING 38.01 0:DiseaseFree 38.01 -TCGA-AN-A03X 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A046 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A04A 0:LIVING 2.92 0:DiseaseFree 2.92 -TCGA-AN-A0FD 0:LIVING 6.41 0:DiseaseFree 6.41 -TCGA-AN-A0FN 0:LIVING 7.16 0:DiseaseFree 7.16 -TCGA-AN-A0FS 0:LIVING 6.27 0:DiseaseFree 6.27 -TCGA-AN-A0FT 0:LIVING 6.01 0:DiseaseFree 6.01 -TCGA-AN-A0FW 0:LIVING 0.36 0:DiseaseFree 0.36 -TCGA-AN-A0FZ 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XL 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XN 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XO 0:LIVING 12.32 0:DiseaseFree 12.32 -TCGA-AN-A0XP 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0XS 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XT 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XV 0:LIVING 5.32 0:DiseaseFree 5.32 -TCGA-AR-A0TW 0:LIVING 24.28 0:DiseaseFree 24.28 -TCGA-AR-A1AK 0:LIVING 51.19 0:DiseaseFree 51.19 -TCGA-AR-A1AL 0:LIVING 48.79 0:DiseaseFree 48.79 -TCGA-AR-A1AN 0:LIVING 43.66 0:DiseaseFree 43.66 -TCGA-AR-A1AP 0:LIVING 39.92 0:DiseaseFree 39.92 -TCGA-AR-A1AS 0:LIVING 40.8 0:DiseaseFree 40.8 -TCGA-AR-A1AU 0:LIVING 46.29 0:DiseaseFree 46.29 -TCGA-AR-A1AW 0:LIVING 35.22 0:DiseaseFree 35.22 -TCGA-AR-A1AX 0:LIVING 36.24 0:DiseaseFree 36.24 -TCGA-BH-A0AZ 0:LIVING 28.48 0:DiseaseFree 28.48 -TCGA-BH-A0B0 0:LIVING 46.88 0:DiseaseFree 46.88 -TCGA-BH-A0BM 0:LIVING 36.7 0:DiseaseFree 36.7 -TCGA-BH-A0BO 0:LIVING 35.65 0:DiseaseFree 35.65 -TCGA-BH-A0BP 0:LIVING 48.66 0:DiseaseFree 48.66 -TCGA-BH-A0BQ 0:LIVING 27.14 0:DiseaseFree 27.14 -TCGA-BH-A0BR 0:LIVING 53.62 0:DiseaseFree 53.62 -TCGA-BH-A0BS 0:LIVING 53.88 0:DiseaseFree 53.88 -TCGA-BH-A0BT 0:LIVING 45.53 0:DiseaseFree 45.53 -TCGA-BH-A0C1 0:LIVING 43.96 0:DiseaseFree 43.96 -TCGA-BH-A0DE 0:LIVING 31.14 0:DiseaseFree 31.14 -TCGA-BH-A0DG 0:LIVING 23.42 0:DiseaseFree 23.42 -TCGA-BH-A0DI 0:LIVING 22.11 0:DiseaseFree 22.11 -TCGA-BH-A0DO 0:LIVING 17.25 0:DiseaseFree 17.25 -TCGA-BH-A0DT 0:LIVING 38.44 0:DiseaseFree 38.44 -TCGA-BH-A0DX 0:LIVING 47.37 0:DiseaseFree 47.37 -TCGA-BH-A0E9 0:LIVING 46.16 0:DiseaseFree 46.16 -TCGA-BH-A0EI 0:LIVING 24.41 0:DiseaseFree 24.41 -TCGA-BH-A0H3 0:LIVING 37.75 0:DiseaseFree 37.75 -TCGA-BH-A0H5 0:LIVING 35.48 0:DiseaseFree 35.48 -TCGA-BH-A0HA 0:LIVING 28.12 0:DiseaseFree 28.12 -TCGA-BH-A0W4 0:LIVING 5.75 0:DiseaseFree 5.75 -TCGA-BH-A0W5 0:LIVING 17.84 0:DiseaseFree 17.84 -TCGA-BH-A0W7 0:LIVING 18.33 0:DiseaseFree 18.33 -TCGA-BH-A18H 0:LIVING 0 0:DiseaseFree 0 -TCGA-BH-A18I 0:LIVING 7.23 0:DiseaseFree 7.23 -TCGA-C8-A12N 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12O 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Y 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A132 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A133 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HI 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-D8-A141 0:LIVING 3.71 0:DiseaseFree 3.71 -TCGA-E2-A14Q 0:LIVING 32 0:DiseaseFree 32 -TCGA-E2-A14T 0:LIVING 29.24 0:DiseaseFree 29.24 -TCGA-E2-A14Z 0:LIVING 17.02 1:Recurred/Progressed [Not Available] -TCGA-E2-A153 0:LIVING 19.25 0:DiseaseFree 19.25 -TCGA-E2-A154 0:LIVING 10.68 0:DiseaseFree 10.68 -TCGA-E2-A156 0:LIVING 15.8 0:DiseaseFree 15.8 -TCGA-E2-A15C 0:LIVING 16.3 0:DiseaseFree 16.3 -TCGA-E2-A15D 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15E 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-E2-A15F 0:LIVING 15.38 0:DiseaseFree 15.38 -TCGA-E2-A15G 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15H 0:LIVING 1.38 0:DiseaseFree 1.38 -TCGA-E2-A15I 0:LIVING 13.5 0:DiseaseFree 13.5 -TCGA-E2-A15J 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-E2-A15O 0:LIVING 12.98 0:DiseaseFree 12.98 -TCGA-E2-A15P 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15R 0:LIVING 10.84 0:DiseaseFree 10.84 -TCGA-E2-A1B1 0:LIVING 44.71 0:DiseaseFree 44.71 -TCGA-E2-A1B4 0:LIVING 29.93 0:DiseaseFree 29.93 -TCGA-E2-A1B6 0:LIVING 11.1 0:DiseaseFree 11.1 -TCGA-E2-A1BC 0:LIVING 9.76 0:DiseaseFree 9.76 -TCGA-E2-A1BD 0:LIVING 10.41 0:DiseaseFree 10.41 -TCGA-A2-A0SV 1:DECEASED 27.1 1:Recurred/Progressed [Not Available] -TCGA-AO-A03O 1:DECEASED 81.57 0:DiseaseFree 32.62 -TCGA-A2-A0SW 1:DECEASED 44.81 1:Recurred/Progressed [Not Available] -TCGA-B6-A0WW 1:DECEASED 18.3 1:Recurred/Progressed [Not Available] -TCGA-BH-A18J 1:DECEASED 20.07 1:Recurred/Progressed [Not Available] -TCGA-BH-A18L 1:DECEASED 26.64 [Not Available] [Not Available] -TCGA-A8-A06X 1:DECEASED 30.98 [Not Available] [Not Available] -TCGA-B6-A0IC 1:DECEASED 50.66 [Not Available] [Not Available] -TCGA-BH-A18U 1:DECEASED 51.35 0:DiseaseFree 43.27 -TCGA-BH-A1EW 1:DECEASED 55.65 1:Recurred/Progressed [Not Available] -TCGA-AR-A0TY 1:DECEASED 55.82 [Not Available] [Not Available] -TCGA-B6-A0X5 1:DECEASED 68.89 1:Recurred/Progressed [Not Available] -TCGA-B6-A0WV 1:DECEASED 79.57 0:DiseaseFree 79.57 -TCGA-B6-A0RL 1:DECEASED 81.11 0:DiseaseFree 81.11 -TCGA-AR-A0U2 1:DECEASED 83.81 1:Recurred/Progressed [Not Available] -TCGA-B6-A0IB 1:DECEASED 129.48 1:Recurred/Progressed [Not Available] -TCGA-AO-A0J7 0:LIVING 8.54 0:DiseaseFree 8.54 -TCGA-AO-A0J3 0:LIVING 9.92 0:DiseaseFree 9.92 -TCGA-D8-A13Y 0:LIVING 8.67 0:DiseaseFree 8.67 -TCGA-A7-A13F 0:LIVING 6.44 0:DiseaseFree 6.44 -TCGA-BH-A0HU 0:LIVING 12.88 0:DiseaseFree 12.88 -TCGA-D8-A140 0:LIVING 0.89 0:DiseaseFree 0.89 -TCGA-A7-A0CJ 0:LIVING 6.18 0:DiseaseFree 6.18 -TCGA-AQ-A04H 0:LIVING 14.42 0:DiseaseFree 14.42 -TCGA-BH-A0H0 0:LIVING 15.15 0:DiseaseFree 15.15 -TCGA-BH-A0BD 0:LIVING 18.2 0:DiseaseFree 18.2 -TCGA-A2-A0T3 0:LIVING 14.98 0:DiseaseFree 14.98 -TCGA-A2-A0T4 0:LIVING 12.98 0:DiseaseFree 12.98 -TCGA-A2-A0YH 0:LIVING 12.45 0:DiseaseFree 12.45 -TCGA-A2-A0YG 0:LIVING 13.27 0:DiseaseFree 13.27 -TCGA-A2-A0EY 0:LIVING 15.93 0:DiseaseFree 15.93 -TCGA-A2-A0D4 0:LIVING 16.3 0:DiseaseFree 16.3 -TCGA-BH-A0AY 0:LIVING 25.53 0:DiseaseFree 25.53 -TCGA-E2-A107 0:LIVING 25.07 1:Recurred/Progressed [Not Available] -TCGA-AO-A0JI 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-E2-A10C 0:LIVING 28.02 0:DiseaseFree 28.02 -TCGA-E2-A10A 0:LIVING 11.56 1:Recurred/Progressed [Not Available] -TCGA-BH-A0C0 0:LIVING 41.72 0:DiseaseFree 41.72 -TCGA-E2-A109 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-AO-A0JC 0:LIVING 50.82 0:DiseaseFree 50.82 -TCGA-BH-A0HW 0:LIVING 51.25 0:DiseaseFree 51.25 -TCGA-AO-A0JD 0:LIVING 59.56 0:DiseaseFree 59.56 -TCGA-AO-A0JM 0:LIVING 59.99 0:DiseaseFree 59.99 -TCGA-A2-A0CW 0:LIVING 57.49 0:DiseaseFree 57.49 -TCGA-A2-A0ER 0:LIVING 62.49 0:DiseaseFree 62.49 -TCGA-A2-A0CT 0:LIVING 62.98 0:DiseaseFree 62.98 -TCGA-AO-A12B 0:LIVING 77.5 0:DiseaseFree 77.5 -TCGA-A2-A04R 0:LIVING 77.67 0:DiseaseFree 77.67 -TCGA-B6-A0IM 0:LIVING 126.03 0:DiseaseFree 126.03 -TCGA-AO-A03P 0:LIVING 84.63 1:Recurred/Progressed [Not Available] -TCGA-A1-A0SM 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-A8-A06N 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A06O 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A06Q 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A06R 0:LIVING 17.94 0:DiseaseFree 17.94 -TCGA-A8-A06Z 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A079 0:LIVING 9 0:DiseaseFree 9 -TCGA-A8-A07L 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-A8-A07S 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-A8-A07W 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A07Z 0:LIVING 28.02 0:DiseaseFree 28.02 -TCGA-A8-A082 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-A8-A084 0:LIVING 15.05 0:DiseaseFree 15.05 -TCGA-A8-A085 0:LIVING 36.93 0:DiseaseFree 36.93 -TCGA-A8-A08F 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-A8-A08G 0:LIVING 19.91 0:DiseaseFree 19.91 -TCGA-A8-A08I 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A08P 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A095 0:LIVING 41.92 0:DiseaseFree 41.92 -TCGA-A8-A096 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A097 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A09C 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A09D 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A09I 0:LIVING 33.05 0:DiseaseFree 33.05 -TCGA-A8-A09M 0:LIVING 15.01 0:DiseaseFree 15.01 -TCGA-A8-A09N 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A09Q 0:LIVING 25 0:DiseaseFree 25 -TCGA-A8-A09R 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-A8-A09W 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-A8-A09Z 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A0A9 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A0AB 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-AN-A03Y 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A041 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-AN-A049 0:LIVING 0.62 0:DiseaseFree 0.62 -TCGA-AN-A0AJ 0:LIVING 7.98 0:DiseaseFree 7.98 -TCGA-AN-A0AK 0:LIVING 7.33 0:DiseaseFree 7.33 -TCGA-AN-A0AM 0:LIVING 0.16 0:DiseaseFree 0.16 -TCGA-AN-A0AS 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0FF 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-AN-A0FK 0:LIVING 6.96 0:DiseaseFree 6.96 -TCGA-AN-A0FY 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XR 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XW 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-AR-A0TQ 0:LIVING 49.28 0:DiseaseFree 49.28 -TCGA-AR-A0TT 0:LIVING 55.16 0:DiseaseFree 55.16 -TCGA-AR-A0TV 0:LIVING 29.7 0:DiseaseFree 29.7 -TCGA-AR-A0TZ 0:LIVING 43.14 0:DiseaseFree 43.14 -TCGA-AR-A0U3 0:LIVING 74.35 0:DiseaseFree 74.35 -TCGA-AR-A1AV 0:LIVING 42.55 0:DiseaseFree 42.55 -TCGA-BH-A0AU 0:LIVING 24.51 0:DiseaseFree 24.51 -TCGA-BH-A0B5 0:LIVING 48.33 0:DiseaseFree 48.33 -TCGA-BH-A0BF 0:LIVING 25.66 0:DiseaseFree 25.66 -TCGA-BH-A0BZ 0:LIVING 49.02 0:DiseaseFree 49.02 -TCGA-BH-A0C3 0:LIVING 48.1 0:DiseaseFree 48.1 -TCGA-BH-A0C7 0:LIVING 42.87 0:DiseaseFree 42.87 -TCGA-BH-A0DD 0:LIVING 45.76 0:DiseaseFree 45.76 -TCGA-BH-A0W3 0:LIVING 5.91 0:DiseaseFree 5.91 -TCGA-BH-A18F 0:LIVING 8.8 0:DiseaseFree 8.8 -TCGA-C8-A12M 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12U 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12W 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12X 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HG 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HL 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-C8-A1HM 0:LIVING 0.2 0:DiseaseFree 0.2 -TCGA-C8-A1HN 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-E2-A14O 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-E2-A14S 0:LIVING 27.4 0:DiseaseFree 27.4 -TCGA-E2-A14W 0:LIVING 27.37 0:DiseaseFree 27.37 -TCGA-E2-A155 0:LIVING 18.17 0:DiseaseFree 18.17 -TCGA-E2-A15A 0:LIVING 16.49 0:DiseaseFree 16.49 -TCGA-E2-A15K 0:LIVING 1.12 0:DiseaseFree 1.12 -TCGA-E2-A15L 0:LIVING 10.87 0:DiseaseFree 10.87 -TCGA-E2-A15M 0:LIVING 7.69 0:DiseaseFree 7.69 -TCGA-E2-A15S 0:LIVING 9 0:DiseaseFree 9 -TCGA-E2-A15T 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-AO-A03U 1:DECEASED 59 0:DiseaseFree 56.74 -TCGA-B6-A0IE 1:DECEASED 65.64 1:Recurred/Progressed [Not Available] -TCGA-A2-A0YK 0:LIVING 10.97 0:DiseaseFree 10.97 -TCGA-E2-A108 0:LIVING 4.07 0:DiseaseFree 4.07 -TCGA-AO-A0JB 0:LIVING 37.78 0:DiseaseFree 37.78 -TCGA-AO-A03R 0:LIVING 56.08 0:DiseaseFree 56.08 -TCGA-AO-A03T 0:LIVING 39 0:DiseaseFree 39 -TCGA-AR-A1AO 0:LIVING 43.5 0:DiseaseFree 43.5 -TCGA-A2-A0YT 1:DECEASED 23.75 0:DiseaseFree 21.98 -TCGA-AQ-A0Y5 1:DECEASED 5.29 0:DiseaseFree [Not Available] -TCGA-EW-A1P8 1:DECEASED 7.85 1:Recurred/Progressed [Not Available] -TCGA-E2-A1LK 1:DECEASED 8.74 1:Recurred/Progressed [Not Available] -TCGA-BH-A1EY 1:DECEASED 17.68 1:Recurred/Progressed [Not Available] -TCGA-BH-A1F8 1:DECEASED 24.61 1:Recurred/Progressed [Not Available] -TCGA-BH-A1F2 1:DECEASED 31.51 0:DiseaseFree [Not Available] -TCGA-BH-A1FD 1:DECEASED 33.12 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FH 1:DECEASED 36.89 1:Recurred/Progressed [Not Available] -TCGA-BH-A203 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-BH-A1FM 1:DECEASED 45.6 [Not Available] [Not Available] -TCGA-BH-A1EX 1:DECEASED 49.54 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FL 1:DECEASED 54.96 1:Recurred/Progressed [Not Available] -TCGA-BH-A208 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-GM-A2D9 1:DECEASED 59.53 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FJ 1:DECEASED 63.31 [Not Available] [Not Available] -TCGA-BH-A1EN 1:DECEASED 67.42 0:DiseaseFree [Not Available] -TCGA-BH-A1FN 1:DECEASED 72.01 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FU 1:DECEASED 72.01 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FE 1:DECEASED 74.68 1:Recurred/Progressed [Not Available] -TCGA-BH-A204 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-BH-A1F5 1:DECEASED 89.1 0:DiseaseFree [Not Available] -TCGA-AR-A256 1:DECEASED 93.76 [Not Available] [Not Available] -TCGA-BH-A1F6 1:DECEASED 97.41 [Not Available] [Not Available] -TCGA-BH-A1FC 1:DECEASED 114.03 0:DiseaseFree [Not Available] -TCGA-BH-A1FB 1:DECEASED 120.54 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FG 1:DECEASED 122.81 [Not Available] [Not Available] -TCGA-BH-A209 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-BH-A1FR 1:DECEASED 144.49 1:Recurred/Progressed [Not Available] -TCGA-AO-A1KS 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-A7-A13G 0:LIVING 6.83 0:DiseaseFree 6.83 -TCGA-D8-A1JS 0:LIVING 3.45 0:DiseaseFree 3.45 -TCGA-A7-A0DC 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-D8-A1JT 0:LIVING 4.04 0:DiseaseFree 4.04 -TCGA-A7-A26E 0:LIVING 13.83 0:DiseaseFree 13.83 -TCGA-D8-A1JH 0:LIVING 9.33 0:DiseaseFree 9.33 -TCGA-D8-A1JU 0:LIVING 3.48 0:DiseaseFree 3.48 -TCGA-AO-A1KO 0:LIVING 14.72 0:DiseaseFree 14.72 -TCGA-AO-A1KT 0:LIVING 17.77 0:DiseaseFree 17.77 -TCGA-AO-A0J5 0:LIVING 24.15 1:Recurred/Progressed [Not Available] -TCGA-B6-A1KC 0:LIVING 43.56 0:DiseaseFree 43.56 -TCGA-AO-A1KQ 0:LIVING 49.9 0:DiseaseFree 49.9 -TCGA-B6-A1KI 0:LIVING 48.06 0:DiseaseFree 48.06 -TCGA-AO-A1KP 0:LIVING 82.56 0:DiseaseFree 82.56 -TCGA-B6-A1KF 0:LIVING 101.45 0:DiseaseFree 101.45 -TCGA-B6-A1KN 0:LIVING 109.4 0:DiseaseFree 109.4 -TCGA-D8-A1XO 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-D8-A1XT 0:LIVING 6.34 0:DiseaseFree 6.34 -TCGA-A1-A0SP 0:LIVING 19.15 0:DiseaseFree 19.15 -TCGA-D8-A1J8 0:LIVING 8.41 0:DiseaseFree 8.41 -TCGA-D8-A1JF 0:LIVING 3.15 0:DiseaseFree 3.15 -TCGA-D8-A1JG 0:LIVING 6.14 0:DiseaseFree 6.14 -TCGA-D8-A1XS 0:LIVING 0.59 0:DiseaseFree 0.59 -TCGA-A1-A0SB 0:LIVING 8.51 0:DiseaseFree 8.51 -TCGA-A1-A0SF 0:LIVING 48.06 0:DiseaseFree 48.06 -TCGA-A1-A0SG 0:LIVING 14.23 0:DiseaseFree 14.23 -TCGA-A1-A0SI 0:LIVING 20.83 0:DiseaseFree 20.83 -TCGA-A1-A0SN 0:LIVING 39.29 0:DiseaseFree 39.29 -TCGA-A1-A0SQ 0:LIVING 18.17 0:DiseaseFree 18.17 -TCGA-A2-A1FV 0:LIVING 15.11 0:DiseaseFree 15.11 -TCGA-A2-A1FW 0:LIVING 7.26 0:DiseaseFree 7.26 -TCGA-A2-A1FX 0:LIVING 30.72 0:DiseaseFree 30.72 -TCGA-A2-A1FZ 0:LIVING 13.44 0:DiseaseFree 13.44 -TCGA-A2-A1G0 0:LIVING 12.48 0:DiseaseFree 12.48 -TCGA-A2-A1G1 0:LIVING 12.19 0:DiseaseFree 12.19 -TCGA-A2-A1G4 0:LIVING 12.22 0:DiseaseFree 12.22 -TCGA-A2-A1G6 0:LIVING 4.34 0:DiseaseFree 4.34 -TCGA-A2-A259 0:LIVING 42.22 0:DiseaseFree 42.22 -TCGA-A2-A25A 0:LIVING 97.51 0:DiseaseFree 97.51 -TCGA-A2-A25B 0:LIVING 8.48 0:DiseaseFree 8.48 -TCGA-A2-A25C 0:LIVING 9.36 0:DiseaseFree 9.36 -TCGA-A2-A25D 0:LIVING 7.98 0:DiseaseFree 7.98 -TCGA-A2-A25E 0:LIVING 82.49 0:DiseaseFree 82.49 -TCGA-A2-A25F 0:LIVING 3.71 0:DiseaseFree 3.71 -TCGA-A7-A26F 0:LIVING 8.44 0:DiseaseFree 8.44 -TCGA-A7-A26G 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-A7-A26H 0:LIVING 2.1 0:DiseaseFree 2.1 -TCGA-A7-A26I 0:LIVING 4.01 0:DiseaseFree 4.01 -TCGA-A7-A26J 0:LIVING 2.2 1:Recurred/Progressed [Not Available] -TCGA-A8-A08S 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A09E 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A09K 0:LIVING 29.93 0:DiseaseFree 29.93 -TEST-A23C 0:LIVING 0.95 0:DiseaseFree 0.95 -TEST-A23E 0:LIVING 2.37 0:DiseaseFree 2.37 -TEST-A23H 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-AO-A1KR 0:LIVING 70.31 0:DiseaseFree 70.31 -TCGA-AQ-A1H2 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-AQ-A1H3 0:LIVING 4.53 0:DiseaseFree 4.53 -TCGA-AR-A24H 0:LIVING 109.5 0:DiseaseFree 109.5 -TCGA-AR-A24K 0:LIVING 50.86 0:DiseaseFree 50.86 -TCGA-AR-A24L 0:LIVING 72.97 0:DiseaseFree 72.97 -TCGA-AR-A24M 0:LIVING 65.38 0:DiseaseFree 65.38 -TCGA-AR-A24N 0:LIVING 68.14 0:DiseaseFree 68.14 -TCGA-AR-A24O 0:LIVING 65.61 0:DiseaseFree 65.61 -TCGA-AR-A24P 0:LIVING 0.85 0:DiseaseFree 0.85 -TCGA-AR-A24Q 0:LIVING 65.97 0:DiseaseFree 65.97 -TCGA-AR-A24R 0:LIVING 57.33 0:DiseaseFree 57.33 -TCGA-AR-A24S 0:LIVING 62.03 0:DiseaseFree 62.03 -TCGA-AR-A24T 0:LIVING 53.22 0:DiseaseFree 53.22 -TCGA-AR-A24U 0:LIVING 53.32 0:DiseaseFree 53.32 -TCGA-AR-A24V 0:LIVING 54.14 0:DiseaseFree 54.14 -TCGA-AR-A24X 0:LIVING 48.13 0:DiseaseFree 48.13 -TCGA-AR-A24Z 0:LIVING 51.71 0:DiseaseFree 51.71 -TCGA-AR-A250 0:LIVING 56.08 0:DiseaseFree 56.08 -TCGA-AR-A251 0:LIVING 45.11 0:DiseaseFree 45.11 -TCGA-AR-A252 0:LIVING 40.61 0:DiseaseFree 40.61 -TCGA-AR-A254 0:LIVING 39.82 0:DiseaseFree 39.82 -TCGA-AR-A255 0:LIVING 34.76 0:DiseaseFree 34.76 -TCGA-BH-A0B2 0:LIVING 40.8 0:DiseaseFree 40.8 -TCGA-BH-A0DV 0:LIVING 45.14 0:DiseaseFree 45.14 -TCGA-BH-A201 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-BH-A202 0:LIVING 0.72 0:DiseaseFree 0.72 -TCGA-BH-A28Q [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-C8-A1HE 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HJ 0:LIVING 0.16 0:DiseaseFree 0.16 -TCGA-C8-A1HK 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A1HO 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A26V 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-C8-A26W 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A26X 0:LIVING 0.36 0:DiseaseFree 0.36 -TCGA-C8-A26Y 0:LIVING 0.43 0:DiseaseFree 0.43 -TCGA-C8-A26Z 0:LIVING 0.13 0:DiseaseFree 0.13 -TCGA-C8-A273 0:LIVING 0.2 0:DiseaseFree 0.2 -TCGA-C8-A274 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A275 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A278 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A27A 0:LIVING 12.19 0:DiseaseFree 12.19 -TCGA-C8-A27B 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-D8-A146 0:LIVING 11.3 0:DiseaseFree 11.3 -TCGA-D8-A1J9 0:LIVING 8.15 0:DiseaseFree 8.15 -TCGA-D8-A1JA 0:LIVING 0.59 0:DiseaseFree 0.59 -TCGA-D8-A1JB 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A1JC 0:LIVING 5.85 0:DiseaseFree 5.85 -TCGA-D8-A1JD 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-D8-A1JE 0:LIVING 1.87 0:DiseaseFree 1.87 -TCGA-D8-A1JI 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-D8-A1JJ 0:LIVING 9 0:DiseaseFree 9 -TCGA-D8-A1JK 0:LIVING 3.58 0:DiseaseFree 3.58 -TCGA-D8-A1JL 0:LIVING 8.71 0:DiseaseFree 8.71 -TCGA-D8-A1JM 0:LIVING 7.82 0:DiseaseFree 7.82 -TCGA-D8-A1JN 0:LIVING 7.13 0:DiseaseFree 7.13 -TCGA-D8-A1JP 0:LIVING 5.49 0:DiseaseFree 5.49 -TCGA-D8-A1X5 0:LIVING 5.62 0:DiseaseFree 5.62 -TCGA-D8-A1X6 0:LIVING 7.75 0:DiseaseFree 7.75 -TCGA-D8-A1X7 0:LIVING 2.79 0:DiseaseFree 2.79 -TCGA-D8-A1X8 0:LIVING 8.94 0:DiseaseFree 8.94 -TCGA-D8-A1X9 0:LIVING 12.48 0:DiseaseFree 12.48 -TCGA-D8-A1XA 0:LIVING 9 0:DiseaseFree 9 -TCGA-D8-A1XB 0:LIVING 6.6 0:DiseaseFree 6.6 -TCGA-D8-A1XC 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-D8-A1XD 0:LIVING 5.09 0:DiseaseFree 5.09 -TCGA-D8-A1XF 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-D8-A1XG 0:LIVING 6.44 0:DiseaseFree 6.44 -TCGA-D8-A1XJ 0:LIVING 11.56 0:DiseaseFree 11.56 -TCGA-D8-A1XK 0:LIVING 10.71 0:DiseaseFree 10.71 -TCGA-D8-A1XL 0:LIVING 10.48 0:DiseaseFree 10.48 -TCGA-D8-A1XM 0:LIVING 7.16 0:DiseaseFree 7.16 -TCGA-D8-A1XQ 0:LIVING 5.82 0:DiseaseFree 5.82 -TCGA-D8-A1XR 0:LIVING 5.52 0:DiseaseFree 5.52 -TCGA-D8-A1XU 0:LIVING 4.9 0:DiseaseFree 4.9 -TCGA-D8-A1XV 0:LIVING 4.8 0:DiseaseFree 4.8 -TCGA-D8-A1XW 0:LIVING 3.84 0:DiseaseFree 3.84 -TCGA-D8-A1XY 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-D8-A1XZ 0:LIVING 3.94 0:DiseaseFree 3.94 -TCGA-D8-A1Y0 0:LIVING 5.45 0:DiseaseFree 5.45 -TCGA-D8-A1Y1 0:LIVING 3.78 0:DiseaseFree 3.78 -TCGA-D8-A1Y2 0:LIVING 2.37 0:DiseaseFree 2.37 -TCGA-D8-A1Y3 0:LIVING 4.07 0:DiseaseFree 4.07 -TCGA-D8-A27E 0:LIVING 5.98 0:DiseaseFree 5.98 -TCGA-D8-A27F 0:LIVING 7.46 0:DiseaseFree 7.46 -TCGA-D8-A27G 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-D8-A27H 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-D8-A27I 0:LIVING 6.08 0:DiseaseFree 6.08 -TCGA-D8-A27K 0:LIVING 3.88 0:DiseaseFree 3.88 -TCGA-D8-A27L 0:LIVING 4.11 0:DiseaseFree 4.11 -TCGA-D8-A27M 0:LIVING 4.73 0:DiseaseFree 4.73 -TCGA-D8-A27N 0:LIVING 4.76 0:DiseaseFree 4.76 -TCGA-D8-A27P 0:LIVING 0.72 0:DiseaseFree 0.72 -TCGA-D8-A27R 0:LIVING 2.96 0:DiseaseFree 2.96 -TCGA-D8-A27T 0:LIVING 4.44 0:DiseaseFree 4.44 -TCGA-D8-A27V 0:LIVING 2.4 0:DiseaseFree 2.4 -TCGA-D8-A27W 0:LIVING 0.49 0:DiseaseFree 0.49 -TCGA-E2-A1IE 0:LIVING 32.29 0:DiseaseFree 32.29 -TCGA-E2-A1IF 0:LIVING 31.41 0:DiseaseFree 31.41 -TCGA-E2-A1IG 0:LIVING 24.8 0:DiseaseFree 24.8 -TCGA-E2-A1IH 0:LIVING 21.62 0:DiseaseFree 21.62 -TCGA-E2-A1II 0:LIVING 27.93 0:DiseaseFree 27.93 -TCGA-E2-A1IJ 0:LIVING 23.82 0:DiseaseFree 23.82 -TCGA-E2-A1IK 0:LIVING 17.02 0:DiseaseFree 17.02 -TCGA-E2-A1IL 0:LIVING 0.46 0:DiseaseFree 0.46 -TCGA-E2-A1IN 0:LIVING 12.88 0:DiseaseFree 12.88 -TCGA-E2-A1IO 0:LIVING 14.72 0:DiseaseFree 14.72 -TCGA-E2-A1IP 0:LIVING 14.03 0:DiseaseFree 14.03 -TCGA-E2-A1IU 0:LIVING 4.17 0:DiseaseFree 4.17 -TCGA-E2-A1L6 0:LIVING 43.1 0:DiseaseFree 43.1 -TCGA-E2-A1L7 0:LIVING 20.8 0:DiseaseFree 20.8 -TCGA-E2-A1L8 0:LIVING 33.35 0:DiseaseFree 33.35 -TCGA-E2-A1L9 0:LIVING 12.75 0:DiseaseFree 12.75 -TCGA-E2-A1LA 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-E2-A1LB 0:LIVING 31.93 0:DiseaseFree 31.93 -TCGA-E2-A1LG 0:LIVING 11.5 0:DiseaseFree 11.5 -TCGA-E2-A1LH 0:LIVING 94.45 0:DiseaseFree 94.45 -TCGA-E2-A1LI 0:LIVING 90.35 0:DiseaseFree 90.35 -TCGA-E2-A1LL 0:LIVING 33.31 0:DiseaseFree 33.31 -TCGA-E2-A1LS 0:LIVING 7.85 0:DiseaseFree 7.85 -TCGA-E9-A1N3 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N4 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N5 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N6 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N8 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N9 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NA 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NC 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1ND 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NE 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NF 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NG 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NH 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NI 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1QZ 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1R0 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1R2 0:LIVING 0.62 0:DiseaseFree 0.62 -TCGA-E9-A1R3 0:LIVING 2.1 0:DiseaseFree 2.1 -TCGA-E9-A1R4 0:LIVING 0.95 0:DiseaseFree 0.95 -TCGA-E9-A1R5 0:LIVING 1.38 0:DiseaseFree 1.38 -TCGA-E9-A1R6 0:LIVING 2.76 0:DiseaseFree 2.76 -TCGA-E9-A1R7 0:LIVING 1.12 0:DiseaseFree 1.12 -TCGA-E9-A1RA 0:LIVING 0.95 0:DiseaseFree 0.95 -TCGA-E9-A1RB 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-E9-A1RC 0:LIVING 40.34 0:DiseaseFree 40.34 -TCGA-E9-A1RD 0:LIVING 0.66 0:DiseaseFree 0.66 -TCGA-E9-A1RE 0:LIVING 1.54 0:DiseaseFree 1.54 -TCGA-E9-A1RF 0:LIVING 1.25 0:DiseaseFree 1.25 -TCGA-E9-A1RG 0:LIVING 1.15 0:DiseaseFree 1.15 -TCGA-E9-A1RH 0:LIVING 0.46 0:DiseaseFree 0.46 -TCGA-E9-A1RI 0:LIVING 1.58 0:DiseaseFree 1.58 -TCGA-E9-A226 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-E9-A227 0:LIVING 0.79 0:DiseaseFree 0.79 -TCGA-E9-A228 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A229 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22A 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22B 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22D 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22E 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22G 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22H 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A243 0:LIVING 1.41 0:DiseaseFree 1.41 -TCGA-E9-A244 0:LIVING 0.66 0:DiseaseFree 0.66 -TCGA-E9-A245 0:LIVING 0.82 0:DiseaseFree 0.82 -TCGA-E9-A247 0:LIVING 0.39 0:DiseaseFree 0.39 -TCGA-E9-A248 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-E9-A249 0:LIVING 0.92 0:DiseaseFree 0.92 -TCGA-E9-A24A 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-EW-A1IW 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-EW-A1IX 0:LIVING 35.55 0:DiseaseFree 35.55 -TCGA-EW-A1IY 0:LIVING 8.48 0:DiseaseFree 8.48 -TCGA-EW-A1IZ 0:LIVING 8.54 0:DiseaseFree 8.54 -TCGA-EW-A1J1 0:LIVING 9.26 0:DiseaseFree 9.26 -TCGA-EW-A1J2 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1J3 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-EW-A1J5 0:LIVING 7.46 0:DiseaseFree 7.46 -TCGA-EW-A1J6 0:LIVING 19.55 0:DiseaseFree 19.55 -TCGA-EW-A1OV 0:LIVING 17.15 0:DiseaseFree 17.15 -TCGA-EW-A1OW 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-EW-A1OX 0:LIVING 18.46 0:DiseaseFree 18.46 -TCGA-EW-A1OY 0:LIVING 19.48 0:DiseaseFree 19.48 -TCGA-EW-A1OZ 0:LIVING 30.91 0:DiseaseFree 30.91 -TCGA-EW-A1P0 0:LIVING 36.83 1:Recurred/Progressed [Not Available] -TCGA-EW-A1P1 0:LIVING 30.19 1:Recurred/Progressed [Not Available] -TCGA-EW-A1P3 0:LIVING 32.43 0:DiseaseFree 32.43 -TCGA-EW-A1P4 0:LIVING 16.46 0:DiseaseFree 16.46 -TCGA-EW-A1P5 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-EW-A1P6 0:LIVING 10.25 0:DiseaseFree 10.25 -TCGA-EW-A1P7 0:LIVING 20.86 0:DiseaseFree 20.86 -TCGA-EW-A1PA 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-EW-A1PB 0:LIVING 19.97 0:DiseaseFree 19.97 -TCGA-EW-A1PD 0:LIVING 5.72 0:DiseaseFree 5.72 -TCGA-EW-A1PE 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1PF 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1PG 0:LIVING 28.75 0:DiseaseFree 28.75 -TCGA-EW-A1PH 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A2FS [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-EW-A2FV [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-EW-A2FW [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-GM-A2DA 0:LIVING 194.13 1:Recurred/Progressed [Not Available] -TCGA-GM-A2DB 0:LIVING 53.06 0:DiseaseFree 53.06 -TCGA-GM-A2DC 0:LIVING 53.49 0:DiseaseFree 53.49 -TCGA-GM-A2DD 0:LIVING 43.01 0:DiseaseFree 43.01 -TCGA-GM-A2DF 0:LIVING 42.68 0:DiseaseFree 42.68 -TCGA-GM-A2DH 0:LIVING 42.25 0:DiseaseFree 42.25 -TCGA-GM-A2DI 0:LIVING 61.86 0:DiseaseFree 61.86 -TCGA-GM-A2DK 0:LIVING 62.29 0:DiseaseFree 62.29 -TCGA-GM-A2DL 0:LIVING 90.74 0:DiseaseFree 90.74 -TCGA-GM-A2DM 0:LIVING 76.58 0:DiseaseFree 76.58 -TCGA-GM-A2DN 0:LIVING 77.27 0:DiseaseFree 77.27 -TCGA-GM-A2DO 0:LIVING 53.29 0:DiseaseFree 53.29 -TCGA-AR-A24W [Not Available] [Not Available] [Not Available] [Not Available] -TEST-A2B8 [Not Available] [Not Available] [Not Available] [Not Available] -TEST-A2FF [Not Available] [Not Available] [Not Available] [Not Available] -TEST-A2FB [Not Available] [Not Available] [Not Available] [Not Available] -TEST-A2FG [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-GI-A2C8 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-E9-A295 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-A2-A0T2 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_1 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_2 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_3 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_4 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_5 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_6 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_7 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_8 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_9 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_10 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_11 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_12 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_13 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_14 [Not Available] [Not Available] [Not Available] [Not Available] -TEST_PATIENT_15 [Not Available] [Not Available] [Not Available] [Not Available] diff --git a/core/src/test/scripts/test_data/study_oncokb_import/data_clinical_samples.txt b/core/src/test/scripts/test_data/study_oncokb_import/data_clinical_samples.txt deleted file mode 100644 index 7550e963d09..00000000000 --- a/core/src/test/scripts/test_data/study_oncokb_import/data_clinical_samples.txt +++ /dev/null @@ -1,846 +0,0 @@ -#Patient Identifier Sample Identifier Subtype -#Patient identifier Sample identifier Subtype description -#STRING STRING STRING -#1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like -TCGA-A2-A0CM TCGA-A2-A0CM-01 basal-like -TCGA-AR-A1AR TCGA-AR-A1AR-01 basal-like -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like -TCGA-B6-A0I6 TCGA-B6-A0I6-01 NA -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like -TCGA-BH-A0HL TCGA-BH-A0HL-01 NA -TCGA-BH-A0E0 TCGA-BH-A0E0-01 basal-like -TCGA-BH-A0RX TCGA-BH-A0RX-01 basal-like -TCGA-A7-A13D TCGA-A7-A13D-01 basal-like -TCGA-BH-A0E6 TCGA-BH-A0E6-01 basal-like -TCGA-AO-A0J4 TCGA-AO-A0J4-01 basal-like -TCGA-A7-A0CE TCGA-A7-A0CE-01 basal-like -TCGA-A7-A13E TCGA-A7-A13E-01 -TCGA-A7-A0DA TCGA-A7-A0DA-01 basal-like -TCGA-D8-A142 TCGA-D8-A142-01 basal-like -TCGA-D8-A143 TCGA-D8-A143-01 NA -TCGA-AQ-A04J TCGA-AQ-A04J-01 basal-like -TCGA-BH-A0HN TCGA-BH-A0HN-01 NA -TCGA-A2-A0T0 TCGA-A2-A0T0-01 basal-like -TCGA-A2-A0YE TCGA-A2-A0YE-01 NA -TCGA-A2-A0YJ TCGA-A2-A0YJ-01 NA -TCGA-A2-A0D0 TCGA-A2-A0D0-01 basal-like -TCGA-A2-A04U TCGA-A2-A04U-01 NA -TCGA-AO-A0J6 TCGA-AO-A0J6-01 basal-like -TCGA-A2-A0YM TCGA-A2-A0YM-01 basal-like -TCGA-A2-A0D2 TCGA-A2-A0D2-01 basal-like -TCGA-BH-A0B3 TCGA-BH-A0B3-01 basal-like -TCGA-A2-A04Q TCGA-A2-A04Q-01 basal-like -TCGA-A2-A0SX TCGA-A2-A0SX-01 basal-like -TCGA-AO-A0JL TCGA-AO-A0JL-01 basal-like -TCGA-AO-A12F TCGA-AO-A12F-01 basal-like -TCGA-BH-A0B9 TCGA-BH-A0B9-01 basal-like -TCGA-A2-A04T TCGA-A2-A04T-01 NA -TCGA-B6-A0RT TCGA-B6-A0RT-01 basal-like -TCGA-AO-A128 TCGA-AO-A128-01 NA -TCGA-AO-A129 TCGA-AO-A129-01 basal-like -TCGA-AO-A124 TCGA-AO-A124-01 basal-like -TCGA-B6-A0RU TCGA-B6-A0RU-01 basal-like -TCGA-B6-A0IQ TCGA-B6-A0IQ-01 basal-like -TCGA-B6-A0I2 TCGA-B6-A0I2-01 basal-like -TCGA-B6-A0IJ TCGA-B6-A0IJ-01 basal-like -TCGA-B6-A0X1 TCGA-B6-A0X1-01 NA -TCGA-B6-A0RE TCGA-B6-A0RE-01 basal-like -TCGA-A2-A0ST TCGA-A2-A0ST-01 basal-like -TCGA-AR-A0TP TCGA-AR-A0TP-01 basal-like -TCGA-A1-A0SO TCGA-A1-A0SO-01 basal-like -TCGA-A8-A07C TCGA-A8-A07C-01 basal-like -TCGA-A8-A07O TCGA-A8-A07O-01 basal-like -TCGA-A8-A07R TCGA-A8-A07R-01 basal-like -TCGA-A8-A07U TCGA-A8-A07U-01 basal-like -TCGA-A8-A08H TCGA-A8-A08H-01 basal-like -TCGA-A8-A08R TCGA-A8-A08R-01 basal-like -TCGA-AN-A04D TCGA-AN-A04D-01 basal-like -TCGA-AN-A0AL TCGA-AN-A0AL-01 basal-like -TCGA-AN-A0AR TCGA-AN-A0AR-01 basal-like -TCGA-AN-A0AT TCGA-AN-A0AT-01 NA -TCGA-AN-A0FJ TCGA-AN-A0FJ-01 basal-like -TCGA-AN-A0FL TCGA-AN-A0FL-01 basal-like -TCGA-AN-A0FX TCGA-AN-A0FX-01 basal-like -TCGA-AN-A0G0 TCGA-AN-A0G0-01 NA -TCGA-AN-A0XU TCGA-AN-A0XU-01 basal-like -TCGA-AR-A0TS TCGA-AR-A0TS-01 basal-like -TCGA-AR-A0TU TCGA-AR-A0TU-01 NA -TCGA-AR-A0U0 TCGA-AR-A0U0-01 NA -TCGA-AR-A0U1 TCGA-AR-A0U1-01 basal-like -TCGA-AR-A0U4 TCGA-AR-A0U4-01 basal-like -TCGA-AR-A1AH TCGA-AR-A1AH-01 basal-like -TCGA-AR-A1AI TCGA-AR-A1AI-01 basal-like -TCGA-AR-A1AJ TCGA-AR-A1AJ-01 basal-like -TCGA-AR-A1AQ TCGA-AR-A1AQ-01 basal-like -TCGA-AR-A1AY TCGA-AR-A1AY-01 basal-like -TCGA-BH-A0AV TCGA-BH-A0AV-01 basal-like -TCGA-BH-A0BG TCGA-BH-A0BG-01 basal-like -TCGA-BH-A0BL TCGA-BH-A0BL-01 basal-like -TCGA-BH-A0BW TCGA-BH-A0BW-01 basal-like -TCGA-BH-A0DL TCGA-BH-A0DL-01 basal-like -TCGA-BH-A0WA TCGA-BH-A0WA-01 basal-like -TCGA-BH-A18G TCGA-BH-A18G-01 NA -TCGA-C8-A12K TCGA-C8-A12K-01 basal-like -TCGA-C8-A12V TCGA-C8-A12V-01 basal-like -TCGA-C8-A131 TCGA-C8-A131-01 basal-like -TCGA-C8-A134 TCGA-C8-A134-01 basal-like -TCGA-D8-A147 TCGA-D8-A147-01 basal-like -TCGA-E2-A14N TCGA-E2-A14N-01 basal-like -TCGA-E2-A14R TCGA-E2-A14R-01 basal-like -TCGA-E2-A14X TCGA-E2-A14X-01 basal-like -TCGA-E2-A14Y TCGA-E2-A14Y-01 basal-like -TCGA-E2-A150 TCGA-E2-A150-01 basal-like -TCGA-E2-A158 TCGA-E2-A158-01 basal-like -TCGA-E2-A159 TCGA-E2-A159-01 basal-like -TCGA-E2-A1AZ TCGA-E2-A1AZ-01 NA -TCGA-E2-A1B5 TCGA-E2-A1B5-01 basal-like -TCGA-A8-A08L TCGA-A8-A08L-01 Her2 enriched -TCGA-BH-A1EV TCGA-BH-A1EV-01 Her2 enriched -TCGA-B6-A0I9 TCGA-B6-A0I9-01 Her2 enriched -TCGA-A8-A09X TCGA-A8-A09X-01 Her2 enriched -TCGA-B6-A0IK TCGA-B6-A0IK-01 Her2 enriched -TCGA-BH-A18P TCGA-BH-A18P-01 Her2 enriched -TCGA-A8-A08J TCGA-A8-A08J-01 Her2 enriched -TCGA-BH-A18R TCGA-BH-A18R-01 Her2 enriched -TCGA-AR-A1AT TCGA-AR-A1AT-01 Her2 enriched -TCGA-B6-A0RS TCGA-B6-A0RS-01 Her2 enriched -TCGA-BH-A0DZ TCGA-BH-A0DZ-01 Her2 enriched -TCGA-A2-A0T1 TCGA-A2-A0T1-01 Her2 enriched -TCGA-AO-A0J2 TCGA-AO-A0J2-01 Her2 enriched -TCGA-BH-A0AW TCGA-BH-A0AW-01 Her2 enriched -TCGA-BH-A0EE TCGA-BH-A0EE-01 Her2 enriched -TCGA-A2-A0D1 TCGA-A2-A0D1-01 Her2 enriched -TCGA-AO-A03N TCGA-AO-A03N-01 Her2 enriched -TCGA-A2-A0CY TCGA-A2-A0CY-01 Her2 enriched -TCGA-A2-A04X TCGA-A2-A04X-01 Her2 enriched -TCGA-A2-A0CX TCGA-A2-A0CX-01 Her2 enriched -TCGA-A2-A04W TCGA-A2-A04W-01 Her2 enriched -TCGA-AO-A12D TCGA-AO-A12D-01 Her2 enriched -TCGA-A2-A0CL TCGA-A2-A0CL-01 Her2 enriched -TCGA-AO-A0JE TCGA-AO-A0JE-01 Her2 enriched -TCGA-A2-A0EQ TCGA-A2-A0EQ-01 Her2 enriched -TCGA-AO-A03L TCGA-AO-A03L-01 Her2 enriched -TCGA-B6-A0RH TCGA-B6-A0RH-01 Her2 enriched -TCGA-A8-A075 TCGA-A8-A075-01 Her2 enriched -TCGA-A8-A076 TCGA-A8-A076-01 Her2 enriched -TCGA-A8-A07B TCGA-A8-A07B-01 Her2 enriched -TCGA-A8-A07I TCGA-A8-A07I-01 Her2 enriched -TCGA-A8-A081 TCGA-A8-A081-01 Her2 enriched -TCGA-A8-A08B TCGA-A8-A08B-01 Her2 enriched -TCGA-A8-A08X TCGA-A8-A08X-01 Her2 enriched -TCGA-A8-A092 TCGA-A8-A092-01 Her2 enriched -TCGA-A8-A094 TCGA-A8-A094-01 Her2 enriched -TCGA-A8-A09G TCGA-A8-A09G-01 Her2 enriched -TCGA-A8-A0A7 TCGA-A8-A0A7-01 Her2 enriched -TCGA-AN-A04C TCGA-AN-A04C-01 Her2 enriched -TCGA-AN-A0FV TCGA-AN-A0FV-01 Her2 enriched -TCGA-AR-A0TX TCGA-AR-A0TX-01 Her2 enriched -TCGA-BH-A0B7 TCGA-BH-A0B7-01 Her2 enriched -TCGA-BH-A0HY TCGA-BH-A0HY-01 Her2 enriched -TCGA-C8-A12L TCGA-C8-A12L-01 Her2 enriched -TCGA-C8-A12P TCGA-C8-A12P-01 Her2 enriched -TCGA-C8-A12Q TCGA-C8-A12Q-01 Her2 enriched -TCGA-C8-A12T TCGA-C8-A12T-01 Her2 enriched -TCGA-C8-A12Z TCGA-C8-A12Z-01 Her2 enriched -TCGA-C8-A130 TCGA-C8-A130-01 Her2 enriched -TCGA-C8-A135 TCGA-C8-A135-01 Her2 enriched -TCGA-C8-A137 TCGA-C8-A137-01 Her2 enriched -TCGA-C8-A138 TCGA-C8-A138-01 Her2 enriched -TCGA-C8-A1HF TCGA-C8-A1HF-01 Her2 enriched -TCGA-D8-A13Z TCGA-D8-A13Z-01 Her2 enriched -TCGA-E2-A14P TCGA-E2-A14P-01 Her2 enriched -TCGA-E2-A14V TCGA-E2-A14V-01 Her2 enriched -TCGA-E2-A152 TCGA-E2-A152-01 Her2 enriched -TCGA-E2-A1B0 TCGA-E2-A1B0-01 Her2 enriched -TCGA-A2-A0CU TCGA-A2-A0CU-01 Luminal A -TCGA-AR-A0TR TCGA-AR-A0TR-01 Luminal A -TCGA-BH-A18T TCGA-BH-A18T-01 Luminal A -TCGA-B6-A0I8 TCGA-B6-A0I8-01 Luminal A -TCGA-B6-A0X4 TCGA-B6-A0X4-01 Luminal A -TCGA-A8-A06U TCGA-A8-A06U-01 Luminal A -TCGA-BH-A0EA TCGA-BH-A0EA-01 Luminal A -TCGA-BH-A18N TCGA-BH-A18N-01 Luminal A -TCGA-BH-A1EU TCGA-BH-A1EU-01 Luminal A -TCGA-B6-A0X7 TCGA-B6-A0X7-01 Luminal A -TCGA-A2-A04V TCGA-A2-A04V-01 Luminal A -TCGA-BH-A18S TCGA-BH-A18S-01 Luminal A -TCGA-BH-A18M TCGA-BH-A18M-01 Luminal A -TCGA-B6-A0RM TCGA-B6-A0RM-01 Luminal A -TCGA-BH-A1ET TCGA-BH-A1ET-01 Luminal A -TCGA-B6-A0IN TCGA-B6-A0IN-01 Luminal A -TCGA-BH-A1EO TCGA-BH-A1EO-01 Luminal A -TCGA-B6-A0WS TCGA-B6-A0WS-01 Luminal A -TCGA-B6-A0RP TCGA-B6-A0RP-01 Luminal A -TCGA-B6-A0IH TCGA-B6-A0IH-01 Luminal A -TCGA-B6-A0WY TCGA-B6-A0WY-01 Luminal A -TCGA-BH-A1ES TCGA-BH-A1ES-01 Luminal A -TCGA-B6-A0X0 TCGA-B6-A0X0-01 Luminal A -TCGA-B6-A0RQ TCGA-B6-A0RQ-01 Luminal A -TCGA-B6-A0IG TCGA-B6-A0IG-01 Luminal A -TCGA-BH-A0HO TCGA-BH-A0HO-01 Luminal A -TCGA-BH-A0DS TCGA-BH-A0DS-01 Luminal A -TCGA-BH-A0DQ TCGA-BH-A0DQ-01 Luminal A -TCGA-BH-A0HK TCGA-BH-A0HK-01 Luminal A -TCGA-A7-A0CG TCGA-A7-A0CG-01 Luminal A -TCGA-A7-A0CH TCGA-A7-A0CH-01 Luminal A -TCGA-A7-A0DB TCGA-A7-A0DB-01 Luminal A -TCGA-A7-A0D9 TCGA-A7-A0D9-01 Luminal A -TCGA-AO-A0J8 TCGA-AO-A0J8-01 Luminal A -TCGA-BH-A0GZ TCGA-BH-A0GZ-01 Luminal A -TCGA-AO-A0JA TCGA-AO-A0JA-01 Luminal A -TCGA-AO-A0JF TCGA-AO-A0JF-01 Luminal A -TCGA-A7-A0CD TCGA-A7-A0CD-01 Luminal A -TCGA-D8-A145 TCGA-D8-A145-01 Luminal A -TCGA-BH-A0HP TCGA-BH-A0HP-01 Luminal A -TCGA-BH-A0DK TCGA-BH-A0DK-01 Luminal A -TCGA-BH-A0E2 TCGA-BH-A0E2-01 Luminal A -TCGA-A2-A0YI TCGA-A2-A0YI-01 Luminal A -TCGA-A2-A0YL TCGA-A2-A0YL-01 Luminal A -TCGA-AO-A0JG TCGA-AO-A0JG-01 Luminal A -TCGA-A2-A0YF TCGA-A2-A0YF-01 Luminal A -TCGA-BH-A0DP TCGA-BH-A0DP-01 Luminal A -TCGA-BH-A0E1 TCGA-BH-A0E1-01 Luminal A -TCGA-A2-A0T5 TCGA-A2-A0T5-01 Luminal A -TCGA-A2-A0T6 TCGA-A2-A0T6-01 Luminal A -TCGA-BH-A0HI TCGA-BH-A0HI-01 Luminal A -TCGA-A2-A0T7 TCGA-A2-A0T7-01 Luminal A -TCGA-BH-A0BJ TCGA-BH-A0BJ-01 Luminal A -TCGA-BH-A0H7 TCGA-BH-A0H7-01 Luminal A -TCGA-BH-A0HF TCGA-BH-A0HF-01 Luminal A -TCGA-BH-A0EB TCGA-BH-A0EB-01 Luminal A -TCGA-BH-A0H6 TCGA-BH-A0H6-01 Luminal A -TCGA-A2-A0YD TCGA-A2-A0YD-01 Luminal A -TCGA-BH-A0HB TCGA-BH-A0HB-01 Luminal A -TCGA-BH-A0HX TCGA-BH-A0HX-01 Luminal A -TCGA-AO-A12H TCGA-AO-A12H-01 Luminal A -TCGA-E2-A10E TCGA-E2-A10E-01 Luminal A -TCGA-A2-A0D3 TCGA-A2-A0D3-01 Luminal A -TCGA-E2-A10F TCGA-E2-A10F-01 Luminal A -TCGA-AO-A03V TCGA-AO-A03V-01 Luminal A -TCGA-A2-A0EW TCGA-A2-A0EW-01 Luminal A -TCGA-BH-A0GY TCGA-BH-A0GY-01 Luminal A -TCGA-A2-A0EV TCGA-A2-A0EV-01 Luminal A -TCGA-BH-A0BC TCGA-BH-A0BC-01 Luminal A -TCGA-A2-A0YC TCGA-A2-A0YC-01 Luminal A -TCGA-A2-A0EU TCGA-A2-A0EU-01 Luminal A -TCGA-A2-A0ET TCGA-A2-A0ET-01 Luminal A -TCGA-A2-A04Y TCGA-A2-A04Y-01 Luminal A -TCGA-BH-A0HQ TCGA-BH-A0HQ-01 Luminal A -TCGA-A2-A0ES TCGA-A2-A0ES-01 Luminal A -TCGA-BH-A0BA TCGA-BH-A0BA-01 Luminal A -TCGA-E2-A10B TCGA-E2-A10B-01 Luminal A -TCGA-BH-A0B1 TCGA-BH-A0B1-01 Luminal A -TCGA-BH-A0DH TCGA-BH-A0DH-01 Luminal A -TCGA-BH-A0B4 TCGA-BH-A0B4-01 Luminal A -TCGA-BH-A0H9 TCGA-BH-A0H9-01 Luminal A -TCGA-AO-A0J9 TCGA-AO-A0J9-01 Luminal A -TCGA-AO-A12G TCGA-AO-A12G-01 Luminal A -TCGA-A2-A0SY TCGA-A2-A0SY-01 Luminal A -TCGA-BH-A0E7 TCGA-BH-A0E7-01 Luminal A -TCGA-AO-A03M TCGA-AO-A03M-01 Luminal A -TCGA-BH-A0BV TCGA-BH-A0BV-01 Luminal A -TCGA-BH-A0B8 TCGA-BH-A0B8-01 Luminal A -TCGA-A2-A0CZ TCGA-A2-A0CZ-01 Luminal A -TCGA-A2-A0SU TCGA-A2-A0SU-01 Luminal A -TCGA-AO-A12E TCGA-AO-A12E-01 Luminal A -TCGA-E2-A106 TCGA-E2-A106-01 Luminal A -TCGA-A2-A0CV TCGA-A2-A0CV-01 Luminal A -TCGA-AO-A12C TCGA-AO-A12C-01 Luminal A -TCGA-B6-A0RG TCGA-B6-A0RG-01 Luminal A -TCGA-A2-A0CS TCGA-A2-A0CS-01 Luminal A -TCGA-A2-A0EO TCGA-A2-A0EO-01 Luminal A -TCGA-A2-A0CQ TCGA-A2-A0CQ-01 Luminal A -TCGA-A2-A0EN TCGA-A2-A0EN-01 Luminal A -TCGA-AO-A12A TCGA-AO-A12A-01 Luminal A -TCGA-A2-A0CP TCGA-A2-A0CP-01 Luminal A -TCGA-AO-A126 TCGA-AO-A126-01 Luminal A -TCGA-AO-A125 TCGA-AO-A125-01 Luminal A -TCGA-A2-A0EM TCGA-A2-A0EM-01 Luminal A -TCGA-A2-A04N TCGA-A2-A04N-01 Luminal A -TCGA-AQ-A04L TCGA-AQ-A04L-01 Luminal A -TCGA-B6-A0IO TCGA-B6-A0IO-01 Luminal A -TCGA-B6-A0IP TCGA-B6-A0IP-01 Luminal A -TCGA-B6-A0WZ TCGA-B6-A0WZ-01 Luminal A -TCGA-B6-A0I5 TCGA-B6-A0I5-01 Luminal A -TCGA-B6-A0RV TCGA-B6-A0RV-01 Luminal A -TCGA-B6-A0RO TCGA-B6-A0RO-01 Luminal A -TCGA-B6-A0RN TCGA-B6-A0RN-01 Luminal A -TCGA-B6-A0WT TCGA-B6-A0WT-01 Luminal A -TCGA-B6-A0IA TCGA-B6-A0IA-01 Luminal A -TCGA-B6-A0RI TCGA-B6-A0RI-01 Luminal A -TCGA-A1-A0SE TCGA-A1-A0SE-01 Luminal A -TCGA-A2-A0EX TCGA-A2-A0EX-01 Luminal A -TCGA-AO-A0JJ TCGA-AO-A0JJ-01 Luminal A -TCGA-E2-A105 TCGA-E2-A105-01 Luminal A -TCGA-A1-A0SD TCGA-A1-A0SD-01 Luminal A -TCGA-A1-A0SH TCGA-A1-A0SH-01 Luminal A -TCGA-A1-A0SJ TCGA-A1-A0SJ-01 Luminal A -TCGA-A8-A06P TCGA-A8-A06P-01 Luminal A -TCGA-A8-A06T TCGA-A8-A06T-01 Luminal A -TCGA-A8-A06Y TCGA-A8-A06Y-01 Luminal A -TCGA-A8-A07E TCGA-A8-A07E-01 Luminal A -TCGA-A8-A07F TCGA-A8-A07F-01 Luminal A -TCGA-A8-A07G TCGA-A8-A07G-01 Luminal A -TCGA-A8-A07J TCGA-A8-A07J-01 Luminal A -TCGA-A8-A07P TCGA-A8-A07P-01 Luminal A -TCGA-A8-A083 TCGA-A8-A083-01 Luminal A -TCGA-A8-A086 TCGA-A8-A086-01 Luminal A -TCGA-A8-A08A TCGA-A8-A08A-01 Luminal A -TCGA-A8-A08C TCGA-A8-A08C-01 Luminal A -TCGA-A8-A08O TCGA-A8-A08O-01 Luminal A -TCGA-A8-A08T TCGA-A8-A08T-01 Luminal A -TCGA-A8-A08Z TCGA-A8-A08Z-01 Luminal A -TCGA-A8-A090 TCGA-A8-A090-01 Luminal A -TCGA-A8-A091 TCGA-A8-A091-01 Luminal A -TCGA-A8-A093 TCGA-A8-A093-01 Luminal A -TCGA-A8-A099 TCGA-A8-A099-01 Luminal A -TCGA-A8-A09A TCGA-A8-A09A-01 Luminal A -TCGA-A8-A09B TCGA-A8-A09B-01 Luminal A -TCGA-A8-A09T TCGA-A8-A09T-01 Luminal A -TCGA-A8-A09V TCGA-A8-A09V-01 Luminal A -TCGA-A8-A0A1 TCGA-A8-A0A1-01 Luminal A -TCGA-A8-A0A2 TCGA-A8-A0A2-01 Luminal A -TCGA-A8-A0A4 TCGA-A8-A0A4-01 Luminal A -TCGA-A8-A0A6 TCGA-A8-A0A6-01 Luminal A -TCGA-A8-A0AD TCGA-A8-A0AD-01 Luminal A -TCGA-AN-A03X TCGA-AN-A03X-01 Luminal A -TCGA-AN-A046 TCGA-AN-A046-01 Luminal A -TCGA-AN-A04A TCGA-AN-A04A-01 Luminal A -TCGA-AN-A0FD TCGA-AN-A0FD-01 Luminal A -TCGA-AN-A0FN TCGA-AN-A0FN-01 Luminal A -TCGA-AN-A0FS TCGA-AN-A0FS-01 Luminal A -TCGA-AN-A0FT TCGA-AN-A0FT-01 Luminal A -TCGA-AN-A0FW TCGA-AN-A0FW-01 Luminal A -TCGA-AN-A0FZ TCGA-AN-A0FZ-01 Luminal A -TCGA-AN-A0XL TCGA-AN-A0XL-01 Luminal A -TCGA-AN-A0XN TCGA-AN-A0XN-01 Luminal A -TCGA-AN-A0XO TCGA-AN-A0XO-01 Luminal A -TCGA-AN-A0XP TCGA-AN-A0XP-01 Luminal A -TCGA-AN-A0XS TCGA-AN-A0XS-01 Luminal A -TCGA-AN-A0XT TCGA-AN-A0XT-01 Luminal A -TCGA-AN-A0XV TCGA-AN-A0XV-01 Luminal A -TCGA-AR-A0TW TCGA-AR-A0TW-01 Luminal A -TCGA-AR-A1AK TCGA-AR-A1AK-01 Luminal A -TCGA-AR-A1AL TCGA-AR-A1AL-01 Luminal A -TCGA-AR-A1AN TCGA-AR-A1AN-01 Luminal A -TCGA-AR-A1AP TCGA-AR-A1AP-01 Luminal A -TCGA-AR-A1AS TCGA-AR-A1AS-01 Luminal A -TCGA-AR-A1AU TCGA-AR-A1AU-01 Luminal A -TCGA-AR-A1AW TCGA-AR-A1AW-01 Luminal A -TCGA-AR-A1AX TCGA-AR-A1AX-01 Luminal A -TCGA-BH-A0AZ TCGA-BH-A0AZ-01 Luminal A -TCGA-BH-A0B0 TCGA-BH-A0B0-01 Luminal A -TCGA-BH-A0BM TCGA-BH-A0BM-01 Luminal A -TCGA-BH-A0BO TCGA-BH-A0BO-01 Luminal A -TCGA-BH-A0BP TCGA-BH-A0BP-01 Luminal A -TCGA-BH-A0BQ TCGA-BH-A0BQ-01 Luminal A -TCGA-BH-A0BR TCGA-BH-A0BR-01 Luminal A -TCGA-BH-A0BS TCGA-BH-A0BS-01 Luminal A -TCGA-BH-A0BT TCGA-BH-A0BT-01 Luminal A -TCGA-BH-A0C1 TCGA-BH-A0C1-01 Luminal A -TCGA-BH-A0DE TCGA-BH-A0DE-01 Luminal A -TCGA-BH-A0DG TCGA-BH-A0DG-01 Luminal A -TCGA-BH-A0DI TCGA-BH-A0DI-01 Luminal A -TCGA-BH-A0DO TCGA-BH-A0DO-01 Luminal A -TCGA-BH-A0DT TCGA-BH-A0DT-01 Luminal A -TCGA-BH-A0DX TCGA-BH-A0DX-01 Luminal A -TCGA-BH-A0E9 TCGA-BH-A0E9-01 Luminal A -TCGA-BH-A0EI TCGA-BH-A0EI-01 Luminal A -TCGA-BH-A0H3 TCGA-BH-A0H3-01 Luminal A -TCGA-BH-A0H5 TCGA-BH-A0H5-01 Luminal A -TCGA-BH-A0HA TCGA-BH-A0HA-01 Luminal A -TCGA-BH-A0W4 TCGA-BH-A0W4-01 Luminal A -TCGA-BH-A0W5 TCGA-BH-A0W5-01 Luminal A -TCGA-BH-A0W7 TCGA-BH-A0W7-01 Luminal A -TCGA-BH-A18H TCGA-BH-A18H-01 Luminal A -TCGA-BH-A18I TCGA-BH-A18I-01 Luminal A -TCGA-C8-A12N TCGA-C8-A12N-01 Luminal A -TCGA-C8-A12O TCGA-C8-A12O-01 Luminal A -TCGA-C8-A12Y TCGA-C8-A12Y-01 Luminal A -TCGA-C8-A132 TCGA-C8-A132-01 Luminal A -TCGA-C8-A133 TCGA-C8-A133-01 Luminal A -TCGA-C8-A1HI TCGA-C8-A1HI-01 Luminal A -TCGA-D8-A141 TCGA-D8-A141-01 Luminal A -TCGA-E2-A14Q TCGA-E2-A14Q-01 Luminal A -TCGA-E2-A14T TCGA-E2-A14T-01 Luminal A -TCGA-E2-A14Z TCGA-E2-A14Z-01 Luminal A -TCGA-E2-A153 TCGA-E2-A153-01 Luminal A -TCGA-E2-A154 TCGA-E2-A154-01 Luminal A -TCGA-E2-A156 TCGA-E2-A156-01 Luminal A -TCGA-E2-A15C TCGA-E2-A15C-01 Luminal A -TCGA-E2-A15D TCGA-E2-A15D-01 Luminal A -TCGA-E2-A15E TCGA-E2-A15E-01 Luminal A -TCGA-E2-A15F TCGA-E2-A15F-01 Luminal A -TCGA-E2-A15G TCGA-E2-A15G-01 Luminal A -TCGA-E2-A15H TCGA-E2-A15H-01 Luminal A -TCGA-E2-A15I TCGA-E2-A15I-01 Luminal A -TCGA-E2-A15J TCGA-E2-A15J-01 Luminal A -TCGA-E2-A15O TCGA-E2-A15O-01 Luminal A -TCGA-E2-A15P TCGA-E2-A15P-01 Luminal A -TCGA-E2-A15R TCGA-E2-A15R-01 Luminal A -TCGA-E2-A1B1 TCGA-E2-A1B1-01 Luminal A -TCGA-E2-A1B4 TCGA-E2-A1B4-01 Luminal A -TCGA-E2-A1B6 TCGA-E2-A1B6-01 Luminal A -TCGA-E2-A1BC TCGA-E2-A1BC-01 Luminal A -TCGA-E2-A1BD TCGA-E2-A1BD-01 Luminal A -TCGA-A2-A0SV TCGA-A2-A0SV-01 Luminal B -TCGA-AO-A03O TCGA-AO-A03O-01 Luminal B -TCGA-A2-A0SW TCGA-A2-A0SW-01 Luminal B -TCGA-B6-A0WW TCGA-B6-A0WW-01 Luminal B -TCGA-BH-A18J TCGA-BH-A18J-01 Luminal B -TCGA-BH-A18L TCGA-BH-A18L-01 Luminal B -TCGA-A8-A06X TCGA-A8-A06X-01 Luminal B -TCGA-B6-A0IC TCGA-B6-A0IC-01 Luminal B -TCGA-BH-A18U TCGA-BH-A18U-01 Luminal B -TCGA-BH-A1EW TCGA-BH-A1EW-01 Luminal B -TCGA-AR-A0TY TCGA-AR-A0TY-01 Luminal B -TCGA-B6-A0X5 TCGA-B6-A0X5-01 Luminal B -TCGA-B6-A0WV TCGA-B6-A0WV-01 Luminal B -TCGA-B6-A0RL TCGA-B6-A0RL-01 Luminal B -TCGA-AR-A0U2 TCGA-AR-A0U2-01 Luminal B -TCGA-B6-A0IB TCGA-B6-A0IB-01 Luminal B -TCGA-AO-A0J7 TCGA-AO-A0J7-01 Luminal B -TCGA-AO-A0J3 TCGA-AO-A0J3-01 Luminal B -TCGA-D8-A13Y TCGA-D8-A13Y-01 Luminal B -TCGA-A7-A13F TCGA-A7-A13F-01 Luminal B -TCGA-BH-A0HU TCGA-BH-A0HU-01 Luminal B -TCGA-D8-A140 TCGA-D8-A140-01 Luminal B -TCGA-A7-A0CJ TCGA-A7-A0CJ-01 Luminal B -TCGA-AQ-A04H TCGA-AQ-A04H-01 Luminal B -TCGA-BH-A0H0 TCGA-BH-A0H0-01 Luminal B -TCGA-BH-A0BD TCGA-BH-A0BD-01 Luminal B -TCGA-A2-A0T3 TCGA-A2-A0T3-01 Luminal B -TCGA-A2-A0T4 TCGA-A2-A0T4-01 Luminal B -TCGA-A2-A0YH TCGA-A2-A0YH-01 Luminal B -TCGA-A2-A0YG TCGA-A2-A0YG-01 Luminal B -TCGA-A2-A0EY TCGA-A2-A0EY-01 Luminal B -TCGA-A2-A0D4 TCGA-A2-A0D4-01 Luminal B -TCGA-BH-A0AY TCGA-BH-A0AY-01 Luminal B -TCGA-E2-A107 TCGA-E2-A107-01 Luminal B -TCGA-AO-A0JI TCGA-AO-A0JI-01 Luminal B -TCGA-E2-A10C TCGA-E2-A10C-01 Luminal B -TCGA-E2-A10A TCGA-E2-A10A-01 Luminal B -TCGA-BH-A0C0 TCGA-BH-A0C0-01 Luminal B -TCGA-E2-A109 TCGA-E2-A109-01 Luminal B -TCGA-AO-A0JC TCGA-AO-A0JC-01 Luminal B -TCGA-BH-A0HW TCGA-BH-A0HW-01 Luminal B -TCGA-AO-A0JD TCGA-AO-A0JD-01 Luminal B -TCGA-AO-A0JM TCGA-AO-A0JM-01 Luminal B -TCGA-A2-A0CW TCGA-A2-A0CW-01 Luminal B -TCGA-A2-A0ER TCGA-A2-A0ER-01 Luminal B -TCGA-A2-A0CT TCGA-A2-A0CT-01 Luminal B -TCGA-AO-A12B TCGA-AO-A12B-01 Luminal B -TCGA-A2-A04R TCGA-A2-A04R-01 Luminal B -TCGA-B6-A0IM TCGA-B6-A0IM-01 Luminal B -TCGA-AO-A03P TCGA-AO-A03P-01 Luminal B -TCGA-A1-A0SM TCGA-A1-A0SM-01 Luminal B -TCGA-A8-A06N TCGA-A8-A06N-01 Luminal B -TCGA-A8-A06O TCGA-A8-A06O-01 Luminal B -TCGA-A8-A06Q TCGA-A8-A06Q-01 Luminal B -TCGA-A8-A06R TCGA-A8-A06R-01 Luminal B -TCGA-A8-A06Z TCGA-A8-A06Z-01 Luminal B -TCGA-A8-A079 TCGA-A8-A079-01 Luminal B -TCGA-A8-A07L TCGA-A8-A07L-01 Luminal B -TCGA-A8-A07S TCGA-A8-A07S-01 Luminal B -TCGA-A8-A07W TCGA-A8-A07W-01 Luminal B -TCGA-A8-A07Z TCGA-A8-A07Z-01 Luminal B -TCGA-A8-A082 TCGA-A8-A082-01 Luminal B -TCGA-A8-A084 TCGA-A8-A084-01 Luminal B -TCGA-A8-A085 TCGA-A8-A085-01 Luminal B -TCGA-A8-A08F TCGA-A8-A08F-01 Luminal B -TCGA-A8-A08G TCGA-A8-A08G-01 Luminal B -TCGA-A8-A08I TCGA-A8-A08I-01 Luminal B -TCGA-A8-A08P TCGA-A8-A08P-01 Luminal B -TCGA-A8-A095 TCGA-A8-A095-01 Luminal B -TCGA-A8-A096 TCGA-A8-A096-01 Luminal B -TCGA-A8-A097 TCGA-A8-A097-01 Luminal B -TCGA-A8-A09C TCGA-A8-A09C-01 Luminal B -TCGA-A8-A09D TCGA-A8-A09D-01 Luminal B -TCGA-A8-A09I TCGA-A8-A09I-01 Luminal B -TCGA-A8-A09M TCGA-A8-A09M-01 Luminal B -TCGA-A8-A09N TCGA-A8-A09N-01 Luminal B -TCGA-A8-A09Q TCGA-A8-A09Q-01 Luminal B -TCGA-A8-A09R TCGA-A8-A09R-01 Luminal B -TCGA-A8-A09W TCGA-A8-A09W-01 Luminal B -TCGA-A8-A09Z TCGA-A8-A09Z-01 Luminal B -TCGA-A8-A0A9 TCGA-A8-A0A9-01 Luminal B -TCGA-A8-A0AB TCGA-A8-A0AB-01 Luminal B -TCGA-AN-A03Y TCGA-AN-A03Y-01 Luminal B -TCGA-AN-A041 TCGA-AN-A041-01 Luminal B -TCGA-AN-A049 TCGA-AN-A049-01 Luminal B -TCGA-AN-A0AJ TCGA-AN-A0AJ-01 Luminal B -TCGA-AN-A0AK TCGA-AN-A0AK-01 Luminal B -TCGA-AN-A0AM TCGA-AN-A0AM-01 Luminal B -TCGA-AN-A0AS TCGA-AN-A0AS-01 Luminal B -TCGA-AN-A0FF TCGA-AN-A0FF-01 Luminal B -TCGA-AN-A0FK TCGA-AN-A0FK-01 Luminal B -TCGA-AN-A0FY TCGA-AN-A0FY-01 Luminal B -TCGA-AN-A0XR TCGA-AN-A0XR-01 Luminal B -TCGA-AN-A0XW TCGA-AN-A0XW-01 Luminal B -TCGA-AR-A0TQ TCGA-AR-A0TQ-01 Luminal B -TCGA-AR-A0TT TCGA-AR-A0TT-01 Luminal B -TCGA-AR-A0TV TCGA-AR-A0TV-01 Luminal B -TCGA-AR-A0TZ TCGA-AR-A0TZ-01 Luminal B -TCGA-AR-A0U3 TCGA-AR-A0U3-01 Luminal B -TCGA-AR-A1AV TCGA-AR-A1AV-01 Luminal B -TCGA-BH-A0AU TCGA-BH-A0AU-01 Luminal B -TCGA-BH-A0B5 TCGA-BH-A0B5-01 Luminal B -TCGA-BH-A0BF TCGA-BH-A0BF-01 Luminal B -TCGA-BH-A0BZ TCGA-BH-A0BZ-01 Luminal B -TCGA-BH-A0C3 TCGA-BH-A0C3-01 Luminal B -TCGA-BH-A0C7 TCGA-BH-A0C7-01 Luminal B -TCGA-BH-A0DD TCGA-BH-A0DD-01 Luminal B -TCGA-BH-A0W3 TCGA-BH-A0W3-01 Luminal B -TCGA-BH-A18F TCGA-BH-A18F-01 Luminal B -TCGA-C8-A12M TCGA-C8-A12M-01 Luminal B -TCGA-C8-A12U TCGA-C8-A12U-01 Luminal B -TCGA-C8-A12W TCGA-C8-A12W-01 Luminal B -TCGA-C8-A12X TCGA-C8-A12X-01 Luminal B -TCGA-C8-A1HG TCGA-C8-A1HG-01 Luminal B -TCGA-C8-A1HL TCGA-C8-A1HL-01 Luminal B -TCGA-C8-A1HM TCGA-C8-A1HM-01 Luminal B -TCGA-C8-A1HN TCGA-C8-A1HN-01 Luminal B -TCGA-E2-A14O TCGA-E2-A14O-01 Luminal B -TCGA-E2-A14S TCGA-E2-A14S-01 Luminal B -TCGA-E2-A14W TCGA-E2-A14W-01 Luminal B -TCGA-E2-A155 TCGA-E2-A155-01 Luminal B -TCGA-E2-A15A TCGA-E2-A15A-01 Luminal B -TCGA-E2-A15K TCGA-E2-A15K-01 Luminal B -TCGA-E2-A15L TCGA-E2-A15L-01 Luminal B -TCGA-E2-A15M TCGA-E2-A15M-01 Luminal B -TCGA-E2-A15S TCGA-E2-A15S-01 Luminal B -TCGA-E2-A15T TCGA-E2-A15T-01 Luminal B -TCGA-AO-A03U TCGA-AO-A03U-01 NA -TCGA-B6-A0IE TCGA-B6-A0IE-01 NA -TCGA-A2-A0YK TCGA-A2-A0YK-01 NA -TCGA-E2-A108 TCGA-E2-A108-01 Claudin low -TCGA-AO-A0JB TCGA-AO-A0JB-01 NA -TCGA-AO-A03R TCGA-AO-A03R-01 NA -TCGA-AO-A03T TCGA-AO-A03T-01 NA -TCGA-AR-A1AO TCGA-AR-A1AO-01 Claudin low -TCGA-A2-A0YT TCGA-A2-A0YT-01 Luminal B -TCGA-AQ-A0Y5 TCGA-AQ-A0Y5-01 NA -TCGA-EW-A1P8 TCGA-EW-A1P8-01 NA -TCGA-E2-A1LK TCGA-E2-A1LK-01 NA -TCGA-BH-A1EY TCGA-BH-A1EY-01 NA -TCGA-BH-A1F8 TCGA-BH-A1F8-01 NA -TCGA-BH-A1F2 TCGA-BH-A1F2-01 NA -TCGA-BH-A1FD TCGA-BH-A1FD-01 NA -TCGA-BH-A1FH TCGA-BH-A1FH-01 NA -TCGA-BH-A203 TCGA-BH-A203-01 NA -TCGA-BH-A1FM TCGA-BH-A1FM-01 NA -TCGA-BH-A1EX TCGA-BH-A1EX-01 NA -TCGA-BH-A1FL TCGA-BH-A1FL-01 NA -TCGA-BH-A208 TCGA-BH-A208-01 NA -TCGA-GM-A2D9 TCGA-GM-A2D9-01 NA -TCGA-BH-A1FJ TCGA-BH-A1FJ-01 NA -TCGA-BH-A1EN TCGA-BH-A1EN-01 NA -TCGA-BH-A1FN TCGA-BH-A1FN-01 NA -TCGA-BH-A1FU TCGA-BH-A1FU-01 NA -TCGA-BH-A1FE TCGA-BH-A1FE-01 NA -TCGA-BH-A204 TCGA-BH-A204-01 NA -TCGA-BH-A1F5 TCGA-BH-A1F5-01 NA -TCGA-AR-A256 TCGA-AR-A256-01 NA -TCGA-BH-A1F6 TCGA-BH-A1F6-01 NA -TCGA-BH-A1FC TCGA-BH-A1FC-01 NA -TCGA-BH-A1FB TCGA-BH-A1FB-01 NA -TCGA-BH-A1FG TCGA-BH-A1FG-01 NA -TCGA-BH-A209 TCGA-BH-A209-01 NA -TCGA-BH-A1FR TCGA-BH-A1FR-01 NA -TCGA-AO-A1KS TCGA-AO-A1KS-01 NA -TCGA-A7-A13G TCGA-A7-A13G-01 NA -TCGA-D8-A1JS TCGA-D8-A1JS-01 NA -TCGA-A7-A0DC TCGA-A7-A0DC-01 Luminal A -TCGA-D8-A1JT TCGA-D8-A1JT-01 NA -TCGA-A7-A26E TCGA-A7-A26E-01 NA -TCGA-D8-A1JH TCGA-D8-A1JH-01 NA -TCGA-D8-A1JU TCGA-D8-A1JU-01 NA -TCGA-AO-A1KO TCGA-AO-A1KO-01 NA -TCGA-AO-A1KT TCGA-AO-A1KT-01 NA -TCGA-AO-A0J5 TCGA-AO-A0J5-01 Luminal A -TCGA-B6-A1KC TCGA-B6-A1KC-01 NA -TCGA-AO-A1KQ TCGA-AO-A1KQ-01 NA -TCGA-B6-A1KI TCGA-B6-A1KI-01 NA -TCGA-AO-A1KP TCGA-AO-A1KP-01 NA -TCGA-B6-A1KF TCGA-B6-A1KF-01 NA -TCGA-B6-A1KN TCGA-B6-A1KN-01 NA -TCGA-D8-A1XO TCGA-D8-A1XO-01 NA -TCGA-D8-A1XT TCGA-D8-A1XT-01 NA -TCGA-A1-A0SP TCGA-A1-A0SP-01 NA -TCGA-D8-A1J8 TCGA-D8-A1J8-01 NA -TCGA-D8-A1JF TCGA-D8-A1JF-01 NA -TCGA-D8-A1JG TCGA-D8-A1JG-01 NA -TCGA-D8-A1XS TCGA-D8-A1XS-01 NA -TCGA-A1-A0SB TCGA-A1-A0SB-01 NA -TCGA-A1-A0SF TCGA-A1-A0SF-01 NA -TCGA-A1-A0SG TCGA-A1-A0SG-01 NA -TCGA-A1-A0SI TCGA-A1-A0SI-01 NA -TCGA-A1-A0SN TCGA-A1-A0SN-01 NA -TCGA-A1-A0SQ TCGA-A1-A0SQ-01 NA -TCGA-A2-A1FV TCGA-A2-A1FV-01 NA -TCGA-A2-A1FW TCGA-A2-A1FW-01 NA -TCGA-A2-A1FX TCGA-A2-A1FX-01 NA -TCGA-A2-A1FZ TCGA-A2-A1FZ-01 NA -TCGA-A2-A1G0 TCGA-A2-A1G0-01 NA -TCGA-A2-A1G1 TCGA-A2-A1G1-01 NA -TCGA-A2-A1G4 TCGA-A2-A1G4-01 NA -TCGA-A2-A1G6 TCGA-A2-A1G6-01 NA -TCGA-A2-A259 TCGA-A2-A259-01 NA -TCGA-A2-A25A TCGA-A2-A25A-01 NA -TCGA-A2-A25B TCGA-A2-A25B-01 NA -TCGA-A2-A25C TCGA-A2-A25C-01 NA -TCGA-A2-A25D TCGA-A2-A25D-01 NA -TCGA-A2-A25E TCGA-A2-A25E-01 NA -TCGA-A2-A25F TCGA-A2-A25F-01 NA -TCGA-A7-A26F TCGA-A7-A26F-01 NA -TCGA-A7-A26G TCGA-A7-A26G-01 NA -TCGA-A7-A26H TCGA-A7-A26H-01 NA -TCGA-A7-A26I TCGA-A7-A26I-01 NA -TCGA-A7-A26J TCGA-A7-A26J-01 NA -TCGA-A8-A08S TCGA-A8-A08S-01 Luminal B -TCGA-A8-A09E TCGA-A8-A09E-01 Luminal B -TCGA-A8-A09K TCGA-A8-A09K-01 Luminal B -TEST-A23C TEST-A23C-01 NA -TEST-A23E TEST-A23E-01 NA -TEST-A23H TEST-A23H-01 NA -TCGA-AO-A1KR TCGA-AO-A1KR-01 NA -TCGA-AQ-A1H2 TCGA-AQ-A1H2-01 NA -TCGA-AQ-A1H3 TCGA-AQ-A1H3-01 NA -TCGA-AR-A24H TCGA-AR-A24H-01 NA -TCGA-AR-A24K TCGA-AR-A24K-01 NA -TCGA-AR-A24L TCGA-AR-A24L-01 NA -TCGA-AR-A24M TCGA-AR-A24M-01 NA -TCGA-AR-A24N TCGA-AR-A24N-01 NA -TCGA-AR-A24O TCGA-AR-A24O-01 NA -TCGA-AR-A24P TCGA-AR-A24P-01 NA -TCGA-AR-A24Q TCGA-AR-A24Q-01 NA -TCGA-AR-A24R TCGA-AR-A24R-01 NA -TCGA-AR-A24S TCGA-AR-A24S-01 NA -TCGA-AR-A24T TCGA-AR-A24T-01 NA -TCGA-AR-A24U TCGA-AR-A24U-01 NA -TCGA-AR-A24V TCGA-AR-A24V-01 NA -TCGA-AR-A24X TCGA-AR-A24X-01 NA -TCGA-AR-A24Z TCGA-AR-A24Z-01 NA -TCGA-AR-A250 TCGA-AR-A250-01 NA -TCGA-AR-A251 TCGA-AR-A251-01 NA -TCGA-AR-A252 TCGA-AR-A252-01 NA -TCGA-AR-A254 TCGA-AR-A254-01 NA -TCGA-AR-A255 TCGA-AR-A255-01 NA -TCGA-BH-A0B2 TCGA-BH-A0B2-01 Luminal A -TCGA-BH-A0DV TCGA-BH-A0DV-01 NA -TCGA-BH-A201 TCGA-BH-A201-01 NA -TCGA-BH-A202 TCGA-BH-A202-01 NA -TCGA-BH-A28Q TCGA-BH-A28Q-01 NA -TCGA-C8-A1HE TCGA-C8-A1HE-01 NA -TCGA-C8-A1HJ TCGA-C8-A1HJ-01 NA -TCGA-C8-A1HK TCGA-C8-A1HK-01 NA -TCGA-C8-A1HO TCGA-C8-A1HO-01 NA -TCGA-C8-A26V TCGA-C8-A26V-01 NA -TCGA-C8-A26W TCGA-C8-A26W-01 NA -TCGA-C8-A26X TCGA-C8-A26X-01 NA -TCGA-C8-A26Y TCGA-C8-A26Y-01 NA -TCGA-C8-A26Z TCGA-C8-A26Z-01 NA -TCGA-C8-A273 TCGA-C8-A273-01 NA -TCGA-C8-A274 TCGA-C8-A274-01 NA -TCGA-C8-A275 TCGA-C8-A275-01 NA -TCGA-C8-A278 TCGA-C8-A278-01 NA -TCGA-C8-A27A TCGA-C8-A27A-01 NA -TCGA-C8-A27B TCGA-C8-A27B-01 NA -TCGA-D8-A146 TCGA-D8-A146-01 Luminal A -TCGA-D8-A1J9 TCGA-D8-A1J9-01 NA -TCGA-D8-A1JA TCGA-D8-A1JA-01 NA -TCGA-D8-A1JB TCGA-D8-A1JB-01 NA -TCGA-D8-A1JC TCGA-D8-A1JC-01 NA -TCGA-D8-A1JD TCGA-D8-A1JD-01 NA -TCGA-D8-A1JE TCGA-D8-A1JE-01 NA -TCGA-D8-A1JI TCGA-D8-A1JI-01 NA -TCGA-D8-A1JJ TCGA-D8-A1JJ-01 NA -TCGA-D8-A1JK TCGA-D8-A1JK-01 NA -TCGA-D8-A1JL TCGA-D8-A1JL-01 NA -TCGA-D8-A1JM TCGA-D8-A1JM-01 NA -TCGA-D8-A1JN TCGA-D8-A1JN-01 NA -TCGA-D8-A1JP TCGA-D8-A1JP-01 NA -TCGA-D8-A1X5 TCGA-D8-A1X5-01 NA -TCGA-D8-A1X6 TCGA-D8-A1X6-01 NA -TCGA-D8-A1X7 TCGA-D8-A1X7-01 NA -TCGA-D8-A1X8 TCGA-D8-A1X8-01 NA -TCGA-D8-A1X9 TCGA-D8-A1X9-01 NA -TCGA-D8-A1XA TCGA-D8-A1XA-01 NA -TCGA-D8-A1XB TCGA-D8-A1XB-01 NA -TCGA-D8-A1XC TCGA-D8-A1XC-01 NA -TCGA-D8-A1XD TCGA-D8-A1XD-01 NA -TCGA-D8-A1XF TCGA-D8-A1XF-01 NA -TCGA-D8-A1XG TCGA-D8-A1XG-01 NA -TCGA-D8-A1XJ TCGA-D8-A1XJ-01 NA -TCGA-D8-A1XK TCGA-D8-A1XK-01 NA -TCGA-D8-A1XL TCGA-D8-A1XL-01 NA -TCGA-D8-A1XM TCGA-D8-A1XM-01 NA -TCGA-D8-A1XQ TCGA-D8-A1XQ-01 NA -TCGA-D8-A1XR TCGA-D8-A1XR-01 NA -TCGA-D8-A1XU TCGA-D8-A1XU-01 NA -TCGA-D8-A1XV TCGA-D8-A1XV-01 NA -TCGA-D8-A1XW TCGA-D8-A1XW-01 NA -TCGA-D8-A1XY TCGA-D8-A1XY-01 NA -TCGA-D8-A1XZ TCGA-D8-A1XZ-01 NA -TCGA-D8-A1Y0 TCGA-D8-A1Y0-01 NA -TCGA-D8-A1Y1 TCGA-D8-A1Y1-01 NA -TCGA-D8-A1Y2 TCGA-D8-A1Y2-01 NA -TCGA-D8-A1Y3 TCGA-D8-A1Y3-01 NA -TCGA-D8-A27E TCGA-D8-A27E-01 NA -TCGA-D8-A27F TCGA-D8-A27F-01 NA -TCGA-D8-A27G TCGA-D8-A27G-01 NA -TCGA-D8-A27H TCGA-D8-A27H-01 NA -TCGA-D8-A27I TCGA-D8-A27I-01 NA -TCGA-D8-A27K TCGA-D8-A27K-01 NA -TCGA-D8-A27L TCGA-D8-A27L-01 NA -TCGA-D8-A27M TCGA-D8-A27M-01 NA -TCGA-D8-A27N TCGA-D8-A27N-01 NA -TCGA-D8-A27P TCGA-D8-A27P-01 NA -TCGA-D8-A27R TCGA-D8-A27R-01 NA -TCGA-D8-A27T TCGA-D8-A27T-01 NA -TCGA-D8-A27V TCGA-D8-A27V-01 NA -TCGA-D8-A27W TCGA-D8-A27W-01 NA -TCGA-E2-A1IE TCGA-E2-A1IE-01 NA -TCGA-E2-A1IF TCGA-E2-A1IF-01 NA -TCGA-E2-A1IG TCGA-E2-A1IG-01 NA -TCGA-E2-A1IH TCGA-E2-A1IH-01 NA -TCGA-E2-A1II TCGA-E2-A1II-01 NA -TCGA-E2-A1IJ TCGA-E2-A1IJ-01 NA -TCGA-E2-A1IK TCGA-E2-A1IK-01 NA -TCGA-E2-A1IL TCGA-E2-A1IL-01 NA -TCGA-E2-A1IN TCGA-E2-A1IN-01 NA -TCGA-E2-A1IO TCGA-E2-A1IO-01 NA -TCGA-E2-A1IP TCGA-E2-A1IP-01 NA -TCGA-E2-A1IU TCGA-E2-A1IU-01 NA -TCGA-E2-A1L6 TCGA-E2-A1L6-01 NA -TCGA-E2-A1L7 TCGA-E2-A1L7-01 NA -TCGA-E2-A1L8 TCGA-E2-A1L8-01 NA -TCGA-E2-A1L9 TCGA-E2-A1L9-01 NA -TCGA-E2-A1LA TCGA-E2-A1LA-01 NA -TCGA-E2-A1LB TCGA-E2-A1LB-01 NA -TCGA-E2-A1LG TCGA-E2-A1LG-01 NA -TCGA-E2-A1LH TCGA-E2-A1LH-01 NA -TCGA-E2-A1LI TCGA-E2-A1LI-01 NA -TCGA-E2-A1LL TCGA-E2-A1LL-01 NA -TCGA-E2-A1LS TCGA-E2-A1LS-01 NA -TCGA-E9-A1N3 TCGA-E9-A1N3-01 NA -TCGA-E9-A1N4 TCGA-E9-A1N4-01 NA -TCGA-E9-A1N5 TCGA-E9-A1N5-01 NA -TCGA-E9-A1N6 TCGA-E9-A1N6-01 NA -TCGA-E9-A1N8 TCGA-E9-A1N8-01 NA -TCGA-E9-A1N9 TCGA-E9-A1N9-01 NA -TCGA-E9-A1NA TCGA-E9-A1NA-01 NA -TCGA-E9-A1NC TCGA-E9-A1NC-01 NA -TCGA-E9-A1ND TCGA-E9-A1ND-01 NA -TCGA-E9-A1NE TCGA-E9-A1NE-01 NA -TCGA-E9-A1NF TCGA-E9-A1NF-01 NA -TCGA-E9-A1NG TCGA-E9-A1NG-01 NA -TCGA-E9-A1NH TCGA-E9-A1NH-01 NA -TCGA-E9-A1NI TCGA-E9-A1NI-01 NA -TCGA-E9-A1QZ TCGA-E9-A1QZ-01 NA -TCGA-E9-A1R0 TCGA-E9-A1R0-01 NA -TCGA-E9-A1R2 TCGA-E9-A1R2-01 NA -TCGA-E9-A1R3 TCGA-E9-A1R3-01 NA -TCGA-E9-A1R4 TCGA-E9-A1R4-01 NA -TCGA-E9-A1R5 TCGA-E9-A1R5-01 NA -TCGA-E9-A1R6 TCGA-E9-A1R6-01 NA -TCGA-E9-A1R7 TCGA-E9-A1R7-01 NA -TCGA-E9-A1RA TCGA-E9-A1RA-01 NA -TCGA-E9-A1RB TCGA-E9-A1RB-01 NA -TCGA-E9-A1RC TCGA-E9-A1RC-01 NA -TCGA-E9-A1RD TCGA-E9-A1RD-01 NA -TCGA-E9-A1RE TCGA-E9-A1RE-01 NA -TCGA-E9-A1RF TCGA-E9-A1RF-01 NA -TCGA-E9-A1RG TCGA-E9-A1RG-01 NA -TCGA-E9-A1RH TCGA-E9-A1RH-01 NA -TCGA-E9-A1RI TCGA-E9-A1RI-01 NA -TCGA-E9-A226 TCGA-E9-A226-01 NA -TCGA-E9-A227 TCGA-E9-A227-01 NA -TCGA-E9-A228 TCGA-E9-A228-01 NA -TCGA-E9-A229 TCGA-E9-A229-01 NA -TCGA-E9-A22A TCGA-E9-A22A-01 NA -TCGA-E9-A22B TCGA-E9-A22B-01 NA -TCGA-E9-A22D TCGA-E9-A22D-01 NA -TCGA-E9-A22E TCGA-E9-A22E-01 NA -TCGA-E9-A22G TCGA-E9-A22G-01 NA -TCGA-E9-A22H TCGA-E9-A22H-01 NA -TCGA-E9-A243 TCGA-E9-A243-01 NA -TCGA-E9-A244 TCGA-E9-A244-01 NA -TCGA-E9-A245 TCGA-E9-A245-01 NA -TCGA-E9-A247 TCGA-E9-A247-01 NA -TCGA-E9-A248 TCGA-E9-A248-01 NA -TCGA-E9-A249 TCGA-E9-A249-01 NA -TCGA-E9-A24A TCGA-E9-A24A-01 NA -TCGA-EW-A1IW TCGA-EW-A1IW-01 NA -TCGA-EW-A1IX TCGA-EW-A1IX-01 NA -TCGA-EW-A1IY TCGA-EW-A1IY-01 NA -TCGA-EW-A1IZ TCGA-EW-A1IZ-01 NA -TCGA-EW-A1J1 TCGA-EW-A1J1-01 NA -TCGA-EW-A1J2 TCGA-EW-A1J2-01 NA -TCGA-EW-A1J3 TCGA-EW-A1J3-01 NA -TCGA-EW-A1J5 TCGA-EW-A1J5-01 NA -TCGA-EW-A1J6 TCGA-EW-A1J6-01 NA -TCGA-EW-A1OV TCGA-EW-A1OV-01 NA -TCGA-EW-A1OW TCGA-EW-A1OW-01 NA -TCGA-EW-A1OX TCGA-EW-A1OX-01 NA -TCGA-EW-A1OY TCGA-EW-A1OY-01 NA -TCGA-EW-A1OZ TCGA-EW-A1OZ-01 NA -TCGA-EW-A1P0 TCGA-EW-A1P0-01 NA -TCGA-EW-A1P1 TCGA-EW-A1P1-01 NA -TCGA-EW-A1P3 TCGA-EW-A1P3-01 NA -TCGA-EW-A1P4 TCGA-EW-A1P4-01 NA -TCGA-EW-A1P5 TCGA-EW-A1P5-01 NA -TCGA-EW-A1P6 TCGA-EW-A1P6-01 NA -TCGA-EW-A1P7 TCGA-EW-A1P7-01 NA -TCGA-EW-A1PA TCGA-EW-A1PA-01 NA -TCGA-EW-A1PB TCGA-EW-A1PB-01 NA -TCGA-EW-A1PD TCGA-EW-A1PD-01 NA -TCGA-EW-A1PE TCGA-EW-A1PE-01 NA -TCGA-EW-A1PF TCGA-EW-A1PF-01 NA -TCGA-EW-A1PG TCGA-EW-A1PG-01 NA -TCGA-EW-A1PH TCGA-EW-A1PH-01 NA -TCGA-EW-A2FS TCGA-EW-A2FS-01 NA -TCGA-EW-A2FV TCGA-EW-A2FV-01 NA -TCGA-EW-A2FW TCGA-EW-A2FW-01 NA -TCGA-GM-A2DA TCGA-GM-A2DA-01 NA -TCGA-GM-A2DB TCGA-GM-A2DB-01 NA -TCGA-GM-A2DC TCGA-GM-A2DC-01 NA -TCGA-GM-A2DD TCGA-GM-A2DD-01 NA -TCGA-GM-A2DF TCGA-GM-A2DF-01 NA -TCGA-GM-A2DH TCGA-GM-A2DH-01 NA -TCGA-GM-A2DI TCGA-GM-A2DI-01 NA -TCGA-GM-A2DK TCGA-GM-A2DK-01 NA -TCGA-GM-A2DL TCGA-GM-A2DL-01 NA -TCGA-GM-A2DM TCGA-GM-A2DM-01 NA -TCGA-GM-A2DN TCGA-GM-A2DN-01 NA -TCGA-GM-A2DO TCGA-GM-A2DO-01 NA -TCGA-AR-A24W TCGA-AR-A24W-01 NA -TEST-A2B8 TEST-A2B8-01 NA -TEST-A2FF TEST-A2FF-01 NA -TEST-A2FB TEST-A2FB-01 NA -TEST-A2FG TEST-A2FG-01 NA -TCGA-GI-A2C8 TCGA-GI-A2C8-01 NA -TCGA-E9-A295 TCGA-E9-A295-01 NA -TCGA-E2-A15E TCGA-E2-A15E-06 NA -TCGA-A2-A0T2 TCGA-A2-A0T2-01 NA -TEST_PATIENT_1 TEST_SAMPLE_1 NA -TEST_PATIENT_2 TEST_SAMPLE_2 NA -TEST_PATIENT_3 TEST_SAMPLE_3 NA -TEST_PATIENT_4 TEST_SAMPLE_4 NA -TEST_PATIENT_5 TEST_SAMPLE_5 NA -TEST_PATIENT_6 TEST_SAMPLE_6 NA -TEST_PATIENT_7 TEST_SAMPLE_7 NA -TEST_PATIENT_8 TEST_SAMPLE_8 NA -TEST_PATIENT_9 TEST_SAMPLE_9 NA -TEST_PATIENT_10 TEST_SAMPLE_10 NA -TEST_PATIENT_11 TEST_SAMPLE_11 NA -TEST_PATIENT_12 TEST_SAMPLE_12 NA -TEST_PATIENT_13 TEST_SAMPLE_13 NA -TEST_PATIENT_14 TEST_SAMPLE_14 NA -TEST_PATIENT_15 TEST_SAMPLE_15 NA diff --git a/core/src/test/scripts/test_data/study_oncokb_import/meta_clinical_samples.txt b/core/src/test/scripts/test_data/study_oncokb_import/meta_clinical_samples.txt deleted file mode 100644 index 7e4f674161b..00000000000 --- a/core/src/test/scripts/test_data/study_oncokb_import/meta_clinical_samples.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -data_filename: data_clinical_samples.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/meta_clinical_patients.txt b/core/src/test/scripts/test_data/study_oncokb_update/meta_clinical_patients.txt deleted file mode 100644 index 5ff93a44ed1..00000000000 --- a/core/src/test/scripts/test_data/study_oncokb_update/meta_clinical_patients.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: CLINICAL -datatype: PATIENT_ATTRIBUTES -data_filename: data_clinical_patients.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/meta_clinical_samples.txt b/core/src/test/scripts/test_data/study_oncokb_update/meta_clinical_samples.txt deleted file mode 100644 index 7e4f674161b..00000000000 --- a/core/src/test/scripts/test_data/study_oncokb_update/meta_clinical_samples.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -data_filename: data_clinical_samples.txt diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/brca_tcga_data_cna_hg19.seg b/core/src/test/scripts/test_data/study_portal_mismatch/brca_tcga_data_cna_hg19.seg deleted file mode 100644 index b94453050c5..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/brca_tcga_data_cna_hg19.seg +++ /dev/null @@ -1,10 +0,0 @@ -ID chrom loc.start loc.end num.mark seg.mean -TCGA-A2-A04P-01 1 3218610 95674710 53225 0.0055 -TCGA-A2-A04P-01 1 95676511 95676518 2 -1.6636 -TCGA-A2-A04P-01 1 95680124 167057183 24886 0.0053 -TCGA-A2-A04P-01 1 167057495 167059336 3 -1.0999 -TCGA-A2-A04P-01 1 167059760 181602002 9213 -8e-04 -TCGA-A2-A04P-01 1 181603120 181609567 6 -1.2009 -TCGA-A2-A04P-01 1 181610685 201473647 12002 0.0055 -TCGA-A2-A04P-01 1 201474400 201474544 2 -1.4235 -TCGA-A2-A04P-01 1 201475220 247813706 29781 -4e-04 diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/brca_tcga_meta_cna_hg19_seg.txt b/core/src/test/scripts/test_data/study_portal_mismatch/brca_tcga_meta_cna_hg19_seg.txt deleted file mode 100644 index 646aae7a075..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/brca_tcga_meta_cna_hg19_seg.txt +++ /dev/null @@ -1,6 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: SEG -reference_genome_id: hg19 -description: Somatic CNA data (copy number ratio from tumor samples minus ratio from matched normals) from TCGA. -data_filename: brca_tcga_data_cna_hg19.seg diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/brca_tcga_pub.maf b/core/src/test/scripts/test_data/study_portal_mismatch/brca_tcga_pub.maf deleted file mode 100644 index ad5ca140890..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/brca_tcga_pub.maf +++ /dev/null @@ -1,15 +0,0 @@ -#version 2.4 -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All -OR11H1 genome.wustl.edu GRCh37 22 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A NA getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC ENSG00000130538 65 0 0.00 38 6 13.64 - - - 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC - - - -TMEM247 genome.wustl.edu GRCh37 2 46707888 46707888 1 Frame_Shift_Del DEL G G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 0 0 TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; - ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga COSM1408208,~rs70940616 1 TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN UPI0000366EF8 NM_001145051.2 2/3 Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 -:0.0202 -:0.0439 1,0 HIGH 1 deletion 1 1,0 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 0 0.00 7 3 30.00 - - - 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC - - - -ABLIM1 genome.wustl.edu GRCh37 10 116247760 116247760 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 0 0 ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; C ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 1 ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 1,1,1 MODERATE 1 SNV 1,1,1 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC ENSG00000099204 77 0 0.00 36 13 26.53 - - - 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC - - - -ADAMTS20 genome.wustl.edu GRCh37 12 43944926 43944926 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C NA getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.Tyr80Cys p.Y80C ENST00000389420 2/39 0 0 ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; C ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 1 ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 1,1 MODERATE 1 SNV 1,1 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC ENSG00000173157 50 0 0.00 19 17 45.95 - - - 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC - - - -CADM2 genome.wustl.edu GRCh37 3 85932472 85932472 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.R81R ENST00000407528 3/10 0 0 CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; T ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 R cgC/cgT COSM1178952,COSM1178953 1 CADM2 HGNC 29849 protein_coding CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 3/10 PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,Pfam_domain:PF07686,Gene3D:2.60.40.10,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 1,1 LOW SNV 1,1 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC ENSG00000175161 57 0 0.00 22 23 51.11 - - - 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC - - - -DTNB genome.wustl.edu GRCh37 2 25678299 25678299 -1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.125 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M NA getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144C>A p.Val382Met p.V382M ENST00000406818 11/21 0 0 DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; T ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 1 DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 hmmpanther:PTHR11915:SF227,hmmpanther:PTHR11915,PIRSF_domain:PIRSF038204 1,1 MODERATE 1 SNV 1,1 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC ENSG00000138101 35 0 0.00 9 9 50.00 - - - 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC - - - -KAT2A genome.wustl.edu GRCh37 17 40272381 40272381 -1 Silent SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.471C>T p.= p.H157H ENST00000225916 3/18 0 0 KAT2A,synonymous_variant,p.=,ENST00000225916,NM_021078.2;CTD-2132N18.3,synonymous_variant,p.=,ENST00000592574,;RAB5C,downstream_gene_variant,,ENST00000393860,NM_201434.2;RAB5C,downstream_gene_variant,,ENST00000346213,NM_004583.3;HSPB9,upstream_gene_variant,,ENST00000355067,NM_033194.2;CTD-2132N18.3,missense_variant,p.Thr150Met,ENST00000592248,;KAT2A,synonymous_variant,p.=,ENST00000465682,;CTD-2132N18.3,3_prime_UTR_variant,,ENST00000585562,;KAT2A,upstream_gene_variant,,ENST00000592310,;KAT2A,upstream_gene_variant,,ENST00000588759,; A ENSG00000108773 ENST00000225916 Transcript synonymous_variant 525/3109 471/2514 157/837 H caC/caT rs536716483,COSM1479581 1 KAT2A HGNC 4201 protein_coding YES CCDS11417.1 ENSP00000225916 KAT2A_HUMAN K7ERS6_HUMAN UPI000000D978 NM_021078.2 3/18 hmmpanther:PTHR22880:SF124,hmmpanther:PTHR22880,Pfam_domain:PF06466,PIRSF_domain:PIRSF003048 A:0.0002 A:0 A:0 A:0.001 A:0 A:0 0,1 LOW 1 SNV 0,1 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene ENSG00000267261 40 0 0.00 30 36 54.55 - - - 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene - - - -MSH3 genome.wustl.edu GRCh37 5 80024722 80024722 1 Frame_Shift_Del DEL T T - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1508delT p.Leu503TrpfsTer5 p.L503Wfs*5 ENST00000265081 10/24 0 0 MSH3,frameshift_variant,p.Leu503TrpfsTer5,ENST00000265081,NM_002439.4;MSH3,non_coding_transcript_exon_variant,,ENST00000512258,; - ENSG00000113318 ENST00000265081 Transcript frameshift_variant 1586/4092 1506/3414 502/1137 S/X tcT/tc 1 MSH3 HGNC 7326 protein_coding YES CCDS34195.1 ENSP00000265081 MSH3_HUMAN UPI0000DBEE85 NM_002439.4 10/24 Superfamily_domains:SSF53150,Gene3D:3.30.420.110,Pfam_domain:PF05188,hmmpanther:PTHR11361,hmmpanther:PTHR11361:SF34 HIGH 1 deletion 2 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC ENSG00000113318 83 0 0.00 12 2 14.29 - - - 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC - - - -MYB genome.wustl.edu GRCh37 6 135507043 135507044 1 Frame_Shift_Ins INS - - A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 - - Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 2/15 0 0 MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000341911,NM_001130173.1,NM_001161658.1,NM_001161656.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000316528,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000442647,NM_001161660.1,NM_001130172.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367814,NM_001161659.1,NM_005375.2;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525369,NM_001161657.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000527615,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528774,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534121,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533624,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534044,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000420123,;MYB,upstream_gene_variant,,ENST00000430686,;MYB,non_coding_transcript_exon_variant,,ENST00000531845,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367812,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533837,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000438901,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525477,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000463282,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000339290,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533808,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525514,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529586,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526889,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526320,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531519,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533384,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531737,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529262,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526565,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528015,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526187,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525002,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528343,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528140,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528345,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525940,;MYB,frameshift_variant,p.Tyr10Ter,ENST00000531634,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000524588,; A ENSG00000118513 ENST00000367814 Transcript frameshift_variant 212-213/3302 26-27/1923 9/640 I/IX ata/atAa COSM1487247,COSM1487248 1 MYB HGNC 7545 protein_coding CCDS5174.1 ENSP00000356788 MYB_HUMAN Q9UMI7_HUMAN,Q708J0_HUMAN,Q708E9_HUMAN,Q708E3_HUMAN UPI000012FAEA NM_001161659.1,NM_005375.2 2/15 hmmpanther:PTHR10641,hmmpanther:PTHR10641:SF454 1,1 HIGH insertion 1 1,1 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC ENSG00000118513 50 0 0.00 36 4 10.00 - - - 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC - - - -NPIPB15 genome.wustl.edu GRCh37 16 74425902 74425902 1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx neutral 0.0 I358T getma.org/?cm=msa&ty=f&p=NPPL2_HUMAN&rb=283&re=382&var=I358T NA getma.org/?cm=var&var=hg19,16,74425902,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1256T>C p.Ile419Thr p.I419T ENST00000429990 7/7 0 0 NPIPB15,missense_variant,p.Ile419Thr,ENST00000429990,; C ENSG00000196436 ENST00000429990 Transcript missense_variant 1352/1428 1256/1332 419/443 I/T aTa/aCa rs141751158,COSM1479088,COSM1479089 1 NPIPB15 HGNC 34409 protein_coding YES ENSP00000411140 NPB15_HUMAN UPI000198C783 tolerated_low_confidence(0.06) benign(0.341) 7/7 hmmpanther:PTHR15438 0,1,1 MODERATE 1 SNV 0,1,1 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC ENSG00000196436 20 0 0.00 10 4 28.57 - - - 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC - - - -OTOR genome.wustl.edu GRCh37 20 16730581 16730581 1 Missense_Mutation SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.69 V97M getma.org/?cm=msa&ty=f&p=OTOR_HUMAN&rb=43&re=108&var=V97M getma.org/pdb.php?prot=OTOR_HUMAN&from=43&to=108&var=V97M getma.org/?cm=var&var=hg19,20,16730581,G,A&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.289G>A p.Val97Met p.V97M ENST00000246081 3/4 0 0 OTOR,missense_variant,p.Val97Met,ENST00000246081,NM_020157.3;OTOR,non_coding_transcript_exon_variant,,ENST00000486129,;OTOR,intron_variant,,ENST00000490148,; A ENSG00000125879 ENST00000246081 Transcript missense_variant 333/1477 289/387 97/128 V/M Gtg/Atg COSM1410526 1 OTOR HGNC 8517 protein_coding YES CCDS13124.1 ENSP00000246081 OTOR_HUMAN UPI0000047809 NM_020157.3 deleterious(0) benign(0.344) 3/4 hmmpanther:PTHR23158,Gene3D:2.30.30.40,Pfam_domain:PF07653,SMART_domains:SM00326,Superfamily_domains:SSF50044 1 MODERATE 1 SNV 1 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC ENSG00000125879 57 0 0.00 36 9 20.00 - - - 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC - - - -P2RY10 genome.wustl.edu GRCh37 X 78216689 78216689 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.672C>T p.= p.S224S ENST00000171757 4/4 0 0 P2RY10,synonymous_variant,p.=,ENST00000171757,NM_014499.2;P2RY10,synonymous_variant,p.=,ENST00000544091,NM_198333.1;P2RY10,downstream_gene_variant,,ENST00000475374,;P2RY10,downstream_gene_variant,,ENST00000461541,; T ENSG00000078589 ENST00000171757 Transcript synonymous_variant 952/1714 672/1020 224/339 S tcC/tcT COSM1491292 1 P2RY10 HGNC 19906 protein_coding YES CCDS14442.1 ENSP00000171757 P2Y10_HUMAN UPI0000050471 NM_014499.2 4/4 PROSITE_profiles:PS50262,hmmpanther:PTHR24232:SF6,hmmpanther:PTHR24232,Gene3D:1.20.1070.10,Pfam_domain:PF00001,Superfamily_domains:SSF81321 1 LOW 1 SNV 1 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC ENSG00000078589 65 0 0.00 46 10 17.86 - - - X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC - - - -PIEZO1 genome.wustl.edu GRCh37 16 88790292 88790292 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.18 Q1441R getma.org/?cm=msa&ty=f&p=PIEZ1_HUMAN&rb=58&re=1627&var=Q1441R NA getma.org/?cm=var&var=hg19,16,88790292,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.4322A>G p.Gln1441Arg p.Q1441R ENST00000301015 31/51 0 0 PIEZO1,missense_variant,p.Gln1441Arg,ENST00000301015,NM_001142864.2;PIEZO1,missense_variant,p.Gln115Arg,ENST00000474606,;PIEZO1,upstream_gene_variant,,ENST00000327397,;PIEZO1,upstream_gene_variant,,ENST00000466823,;RP5-1142A6.9,downstream_gene_variant,,ENST00000564984,;PIEZO1,non_coding_transcript_exon_variant,,ENST00000566414,;PIEZO1,upstream_gene_variant,,ENST00000419505,;PIEZO1,upstream_gene_variant,,ENST00000497793,;PIEZO1,upstream_gene_variant,,ENST00000495568,;PIEZO1,downstream_gene_variant,,ENST00000475586,;PIEZO1,downstream_gene_variant,,ENST00000491917,; C ENSG00000103335 ENST00000301015 Transcript missense_variant 4569/8072 4322/7566 1441/2521 Q/R cAg/cGg COSM1479166 1 PIEZO1 HGNC 28993 protein_coding YES CCDS54058.1 ENSP00000301015 PIEZ1_HUMAN UPI0001B300F3 NM_001142864.2 tolerated(0.25) possibly_damaging(0.78) 31/51 hmmpanther:PTHR13167,hmmpanther:PTHR13167:SF40 1 MODERATE 1 SNV 1 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC ENSG00000103335 37 0 0.00 20 8 28.57 - - - 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC - - - diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/cancer_type.txt b/core/src/test/scripts/test_data/study_portal_mismatch/cancer_type.txt deleted file mode 100644 index 3ca8226bedf..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/cancer_type.txt +++ /dev/null @@ -1 +0,0 @@ -brca Invasive Breast Carcinoma PaleGreen Breast diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_cna.txt b/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_cna.txt deleted file mode 100644 index 1f485bbfd17..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_cna.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_cna -case_list_name: Samples profiled for mutations -case_list_description: This is this case list that contains all samples that are profiled for mutations. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_cnaseq.txt b/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_cnaseq.txt deleted file mode 100644 index 5009c8b15d1..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_cnaseq.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_cnaseq -case_list_name: Samples profiled for mutations and CNA -case_list_description: This is this case list that contains all samples that are profiled for mutations and CNA. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_custom.txt b/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_custom.txt deleted file mode 100644 index 839e0cba2d8..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_custom.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_custom -case_list_name: this is an optional custom case list -case_list_description: this is an optional custom case list -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TCGA-AC-A23C-01 TCGA-AC-A23E-01 TCGA-AC-A23H-01 TCGA-AC-A2B8-01 TCGA-AC-A2FB-01 TCGA-AC-A2FF-01 TCGA-AC-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_sequenced.txt b/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_sequenced.txt deleted file mode 100644 index 3f95de9e7ef..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/case_lists/cases_sequenced.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_sequenced -case_list_name: Samples profiled for mutations -case_list_description: This is this case list that contains all samples that are profiled for mutations. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SK-01 TCGA-A2-A04P-01 TCGA-A2-A0CM-01 TCGA-B6-A0WX-01 TCGA-BH-A0E0-01 TCGA-BH-A0HL-01 TCGA-BH-A18K-01 TCGA-BH-A18V-01 TCGA-BH-A1F0-01 TCGA-GI-A2C8-01 diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/data_CNA.txt b/core/src/test/scripts/test_data/study_portal_mismatch/data_CNA.txt deleted file mode 100644 index f5629339b28..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/data_CNA.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TCGA-AC-A23C-01 TCGA-AC-A23E-01 TCGA-AC-A23H-01 TCGA-AC-A2B8-01 TCGA-AC-A2FB-01 TCGA-AC-A2FF-01 TCGA-AC-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 -ACAP3 116983 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -CERAMI 375790 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ATAD3A 55210 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ATAD3B 83859 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ATAD3C 219293 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -AURKAIP1 54998 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -B3GALT6 126792 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/data_samples.txt b/core/src/test/scripts/test_data/study_portal_mismatch/data_samples.txt deleted file mode 100644 index af1e447989d..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/data_samples.txt +++ /dev/null @@ -1,831 +0,0 @@ -#Patient Identifier Sample Identifier Subtype -#Patient identifier Sample identifier Subtype description -#STRING STRING STRING -#1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like -TCGA-A2-A0CM TCGA-A2-A0CM-01 basal-like -TCGA-AR-A1AR TCGA-AR-A1AR-01 basal-like -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like -TCGA-B6-A0I6 TCGA-B6-A0I6-01 NA -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like -TCGA-BH-A0HL TCGA-BH-A0HL-01 NA -TCGA-BH-A0E0 TCGA-BH-A0E0-01 basal-like -TCGA-BH-A0RX TCGA-BH-A0RX-01 basal-like -TCGA-A7-A13D TCGA-A7-A13D-01 basal-like -TCGA-BH-A0E6 TCGA-BH-A0E6-01 basal-like -TCGA-AO-A0J4 TCGA-AO-A0J4-01 basal-like -TCGA-A7-A0CE TCGA-A7-A0CE-01 basal-like -TCGA-A7-A13E TCGA-A7-A13E-01 NA -TCGA-A7-A0DA TCGA-A7-A0DA-01 basal-like -TCGA-D8-A142 TCGA-D8-A142-01 basal-like -TCGA-D8-A143 TCGA-D8-A143-01 NA -TCGA-AQ-A04J TCGA-AQ-A04J-01 basal-like -TCGA-BH-A0HN TCGA-BH-A0HN-01 NA -TCGA-A2-A0T0 TCGA-A2-A0T0-01 basal-like -TCGA-A2-A0YE TCGA-A2-A0YE-01 NA -TCGA-A2-A0YJ TCGA-A2-A0YJ-01 NA -TCGA-A2-A0D0 TCGA-A2-A0D0-01 basal-like -TCGA-A2-A04U TCGA-A2-A04U-01 NA -TCGA-AO-A0J6 TCGA-AO-A0J6-01 basal-like -TCGA-A2-A0YM TCGA-A2-A0YM-01 basal-like -TCGA-A2-A0D2 TCGA-A2-A0D2-01 basal-like -TCGA-BH-A0B3 TCGA-BH-A0B3-01 basal-like -TCGA-A2-A04Q TCGA-A2-A04Q-01 basal-like -TCGA-A2-A0SX TCGA-A2-A0SX-01 basal-like -TCGA-AO-A0JL TCGA-AO-A0JL-01 basal-like -TCGA-AO-A12F TCGA-AO-A12F-01 basal-like -TCGA-BH-A0B9 TCGA-BH-A0B9-01 basal-like -TCGA-A2-A04T TCGA-A2-A04T-01 NA -TCGA-B6-A0RT TCGA-B6-A0RT-01 basal-like -TCGA-AO-A128 TCGA-AO-A128-01 NA -TCGA-AO-A129 TCGA-AO-A129-01 basal-like -TCGA-AO-A124 TCGA-AO-A124-01 basal-like -TCGA-B6-A0RU TCGA-B6-A0RU-01 basal-like -TCGA-B6-A0IQ TCGA-B6-A0IQ-01 basal-like -TCGA-B6-A0I2 TCGA-B6-A0I2-01 basal-like -TCGA-B6-A0IJ TCGA-B6-A0IJ-01 basal-like -TCGA-B6-A0X1 TCGA-B6-A0X1-01 NA -TCGA-B6-A0RE TCGA-B6-A0RE-01 basal-like -TCGA-A2-A0ST TCGA-A2-A0ST-01 basal-like -TCGA-AR-A0TP TCGA-AR-A0TP-01 basal-like -TCGA-A1-A0SO TCGA-A1-A0SO-01 basal-like -TCGA-A8-A07C TCGA-A8-A07C-01 basal-like -TCGA-A8-A07O TCGA-A8-A07O-01 basal-like -TCGA-A8-A07R TCGA-A8-A07R-01 basal-like -TCGA-A8-A07U TCGA-A8-A07U-01 basal-like -TCGA-A8-A08H TCGA-A8-A08H-01 basal-like -TCGA-A8-A08R TCGA-A8-A08R-01 basal-like -TCGA-AN-A04D TCGA-AN-A04D-01 basal-like -TCGA-AN-A0AL TCGA-AN-A0AL-01 basal-like -TCGA-AN-A0AR TCGA-AN-A0AR-01 basal-like -TCGA-AN-A0AT TCGA-AN-A0AT-01 NA -TCGA-AN-A0FJ TCGA-AN-A0FJ-01 basal-like -TCGA-AN-A0FL TCGA-AN-A0FL-01 basal-like -TCGA-AN-A0FX TCGA-AN-A0FX-01 basal-like -TCGA-AN-A0G0 TCGA-AN-A0G0-01 NA -TCGA-AN-A0XU TCGA-AN-A0XU-01 basal-like -TCGA-AR-A0TS TCGA-AR-A0TS-01 basal-like -TCGA-AR-A0TU TCGA-AR-A0TU-01 NA -TCGA-AR-A0U0 TCGA-AR-A0U0-01 NA -TCGA-AR-A0U1 TCGA-AR-A0U1-01 basal-like -TCGA-AR-A0U4 TCGA-AR-A0U4-01 basal-like -TCGA-AR-A1AH TCGA-AR-A1AH-01 basal-like -TCGA-AR-A1AI TCGA-AR-A1AI-01 basal-like -TCGA-AR-A1AJ TCGA-AR-A1AJ-01 basal-like -TCGA-AR-A1AQ TCGA-AR-A1AQ-01 basal-like -TCGA-AR-A1AY TCGA-AR-A1AY-01 basal-like -TCGA-BH-A0AV TCGA-BH-A0AV-01 basal-like -TCGA-BH-A0BG TCGA-BH-A0BG-01 basal-like -TCGA-BH-A0BL TCGA-BH-A0BL-01 basal-like -TCGA-BH-A0BW TCGA-BH-A0BW-01 basal-like -TCGA-BH-A0DL TCGA-BH-A0DL-01 basal-like -TCGA-BH-A0WA TCGA-BH-A0WA-01 basal-like -TCGA-BH-A18G TCGA-BH-A18G-01 NA -TCGA-C8-A12K TCGA-C8-A12K-01 basal-like -TCGA-C8-A12V TCGA-C8-A12V-01 basal-like -TCGA-C8-A131 TCGA-C8-A131-01 basal-like -TCGA-C8-A134 TCGA-C8-A134-01 basal-like -TCGA-D8-A147 TCGA-D8-A147-01 basal-like -TCGA-E2-A14N TCGA-E2-A14N-01 basal-like -TCGA-E2-A14R TCGA-E2-A14R-01 basal-like -TCGA-E2-A14X TCGA-E2-A14X-01 basal-like -TCGA-E2-A14Y TCGA-E2-A14Y-01 basal-like -TCGA-E2-A150 TCGA-E2-A150-01 basal-like -TCGA-E2-A158 TCGA-E2-A158-01 basal-like -TCGA-E2-A159 TCGA-E2-A159-01 basal-like -TCGA-E2-A1AZ TCGA-E2-A1AZ-01 NA -TCGA-E2-A1B5 TCGA-E2-A1B5-01 basal-like -TCGA-A8-A08L TCGA-A8-A08L-01 Her2 enriched -TCGA-BH-A1EV TCGA-BH-A1EV-01 Her2 enriched -TCGA-B6-A0I9 TCGA-B6-A0I9-01 Her2 enriched -TCGA-A8-A09X TCGA-A8-A09X-01 Her2 enriched -TCGA-B6-A0IK TCGA-B6-A0IK-01 Her2 enriched -TCGA-BH-A18P TCGA-BH-A18P-01 Her2 enriched -TCGA-A8-A08J TCGA-A8-A08J-01 Her2 enriched -TCGA-BH-A18R TCGA-BH-A18R-01 Her2 enriched -TCGA-AR-A1AT TCGA-AR-A1AT-01 Her2 enriched -TCGA-B6-A0RS TCGA-B6-A0RS-01 Her2 enriched -TCGA-BH-A0DZ TCGA-BH-A0DZ-01 Her2 enriched -TCGA-A2-A0T1 TCGA-A2-A0T1-01 Her2 enriched -TCGA-AO-A0J2 TCGA-AO-A0J2-01 Her2 enriched -TCGA-BH-A0AW TCGA-BH-A0AW-01 Her2 enriched -TCGA-BH-A0EE TCGA-BH-A0EE-01 Her2 enriched -TCGA-A2-A0D1 TCGA-A2-A0D1-01 Her2 enriched -TCGA-AO-A03N TCGA-AO-A03N-01 Her2 enriched -TCGA-A2-A0CY TCGA-A2-A0CY-01 Her2 enriched -TCGA-A2-A04X TCGA-A2-A04X-01 Her2 enriched -TCGA-A2-A0CX TCGA-A2-A0CX-01 Her2 enriched -TCGA-A2-A04W TCGA-A2-A04W-01 Her2 enriched -TCGA-AO-A12D TCGA-AO-A12D-01 Her2 enriched -TCGA-A2-A0CL TCGA-A2-A0CL-01 Her2 enriched -TCGA-AO-A0JE TCGA-AO-A0JE-01 Her2 enriched -TCGA-A2-A0EQ TCGA-A2-A0EQ-01 Her2 enriched -TCGA-AO-A03L TCGA-AO-A03L-01 Her2 enriched -TCGA-B6-A0RH TCGA-B6-A0RH-01 Her2 enriched -TCGA-A8-A075 TCGA-A8-A075-01 Her2 enriched -TCGA-A8-A076 TCGA-A8-A076-01 Her2 enriched -TCGA-A8-A07B TCGA-A8-A07B-01 Her2 enriched -TCGA-A8-A07I TCGA-A8-A07I-01 Her2 enriched -TCGA-A8-A081 TCGA-A8-A081-01 Her2 enriched -TCGA-A8-A08B TCGA-A8-A08B-01 Her2 enriched -TCGA-A8-A08X TCGA-A8-A08X-01 Her2 enriched -TCGA-A8-A092 TCGA-A8-A092-01 Her2 enriched -TCGA-A8-A094 TCGA-A8-A094-01 Her2 enriched -TCGA-A8-A09G TCGA-A8-A09G-01 Her2 enriched -TCGA-A8-A0A7 TCGA-A8-A0A7-01 Her2 enriched -TCGA-AN-A04C TCGA-AN-A04C-01 Her2 enriched -TCGA-AN-A0FV TCGA-AN-A0FV-01 Her2 enriched -TCGA-AR-A0TX TCGA-AR-A0TX-01 Her2 enriched -TCGA-BH-A0B7 TCGA-BH-A0B7-01 Her2 enriched -TCGA-BH-A0HY TCGA-BH-A0HY-01 Her2 enriched -TCGA-C8-A12L TCGA-C8-A12L-01 Her2 enriched -TCGA-C8-A12P TCGA-C8-A12P-01 Her2 enriched -TCGA-C8-A12Q TCGA-C8-A12Q-01 Her2 enriched -TCGA-C8-A12T TCGA-C8-A12T-01 Her2 enriched -TCGA-C8-A12Z TCGA-C8-A12Z-01 Her2 enriched -TCGA-C8-A130 TCGA-C8-A130-01 Her2 enriched -TCGA-C8-A135 TCGA-C8-A135-01 Her2 enriched -TCGA-C8-A137 TCGA-C8-A137-01 Her2 enriched -TCGA-C8-A138 TCGA-C8-A138-01 Her2 enriched -TCGA-C8-A1HF TCGA-C8-A1HF-01 Her2 enriched -TCGA-D8-A13Z TCGA-D8-A13Z-01 Her2 enriched -TCGA-E2-A14P TCGA-E2-A14P-01 Her2 enriched -TCGA-E2-A14V TCGA-E2-A14V-01 Her2 enriched -TCGA-E2-A152 TCGA-E2-A152-01 Her2 enriched -TCGA-E2-A1B0 TCGA-E2-A1B0-01 Her2 enriched -TCGA-A2-A0CU TCGA-A2-A0CU-01 Luminal A -TCGA-AR-A0TR TCGA-AR-A0TR-01 Luminal A -TCGA-BH-A18T TCGA-BH-A18T-01 Luminal A -TCGA-B6-A0I8 TCGA-B6-A0I8-01 Luminal A -TCGA-B6-A0X4 TCGA-B6-A0X4-01 Luminal A -TCGA-A8-A06U TCGA-A8-A06U-01 Luminal A -TCGA-BH-A0EA TCGA-BH-A0EA-01 Luminal A -TCGA-BH-A18N TCGA-BH-A18N-01 Luminal A -TCGA-BH-A1EU TCGA-BH-A1EU-01 Luminal A -TCGA-B6-A0X7 TCGA-B6-A0X7-01 Luminal A -TCGA-A2-A04V TCGA-A2-A04V-01 Luminal A -TCGA-BH-A18S TCGA-BH-A18S-01 Luminal A -TCGA-BH-A18M TCGA-BH-A18M-01 Luminal A -TCGA-B6-A0RM TCGA-B6-A0RM-01 Luminal A -TCGA-BH-A1ET TCGA-BH-A1ET-01 Luminal A -TCGA-B6-A0IN TCGA-B6-A0IN-01 Luminal A -TCGA-BH-A1EO TCGA-BH-A1EO-01 Luminal A -TCGA-B6-A0WS TCGA-B6-A0WS-01 Luminal A -TCGA-B6-A0RP TCGA-B6-A0RP-01 Luminal A -TCGA-B6-A0IH TCGA-B6-A0IH-01 Luminal A -TCGA-B6-A0WY TCGA-B6-A0WY-01 Luminal A -TCGA-BH-A1ES TCGA-BH-A1ES-01 Luminal A -TCGA-B6-A0X0 TCGA-B6-A0X0-01 Luminal A -TCGA-B6-A0RQ TCGA-B6-A0RQ-01 Luminal A -TCGA-B6-A0IG TCGA-B6-A0IG-01 Luminal A -TCGA-BH-A0HO TCGA-BH-A0HO-01 Luminal A -TCGA-BH-A0DS TCGA-BH-A0DS-01 Luminal A -TCGA-BH-A0DQ TCGA-BH-A0DQ-01 Luminal A -TCGA-BH-A0HK TCGA-BH-A0HK-01 Luminal A -TCGA-A7-A0CG TCGA-A7-A0CG-01 Luminal A -TCGA-A7-A0CH TCGA-A7-A0CH-01 Luminal A -TCGA-A7-A0DB TCGA-A7-A0DB-01 Luminal A -TCGA-A7-A0D9 TCGA-A7-A0D9-01 Luminal A -TCGA-AO-A0J8 TCGA-AO-A0J8-01 Luminal A -TCGA-BH-A0GZ TCGA-BH-A0GZ-01 Luminal A -TCGA-AO-A0JA TCGA-AO-A0JA-01 Luminal A -TCGA-AO-A0JF TCGA-AO-A0JF-01 Luminal A -TCGA-A7-A0CD TCGA-A7-A0CD-01 Luminal A -TCGA-D8-A145 TCGA-D8-A145-01 Luminal A -TCGA-BH-A0HP TCGA-BH-A0HP-01 Luminal A -TCGA-BH-A0DK TCGA-BH-A0DK-01 Luminal A -TCGA-BH-A0E2 TCGA-BH-A0E2-01 Luminal A -TCGA-A2-A0YI TCGA-A2-A0YI-01 Luminal A -TCGA-A2-A0YL TCGA-A2-A0YL-01 Luminal A -TCGA-AO-A0JG TCGA-AO-A0JG-01 Luminal A -TCGA-A2-A0YF TCGA-A2-A0YF-01 Luminal A -TCGA-BH-A0DP TCGA-BH-A0DP-01 Luminal A -TCGA-BH-A0E1 TCGA-BH-A0E1-01 Luminal A -TCGA-A2-A0T5 TCGA-A2-A0T5-01 Luminal A -TCGA-A2-A0T6 TCGA-A2-A0T6-01 Luminal A -TCGA-BH-A0HI TCGA-BH-A0HI-01 Luminal A -TCGA-A2-A0T7 TCGA-A2-A0T7-01 Luminal A -TCGA-BH-A0BJ TCGA-BH-A0BJ-01 Luminal A -TCGA-BH-A0H7 TCGA-BH-A0H7-01 Luminal A -TCGA-BH-A0HF TCGA-BH-A0HF-01 Luminal A -TCGA-BH-A0EB TCGA-BH-A0EB-01 Luminal A -TCGA-BH-A0H6 TCGA-BH-A0H6-01 Luminal A -TCGA-A2-A0YD TCGA-A2-A0YD-01 Luminal A -TCGA-BH-A0HB TCGA-BH-A0HB-01 Luminal A -TCGA-BH-A0HX TCGA-BH-A0HX-01 Luminal A -TCGA-AO-A12H TCGA-AO-A12H-01 Luminal A -TCGA-E2-A10E TCGA-E2-A10E-01 Luminal A -TCGA-A2-A0D3 TCGA-A2-A0D3-01 Luminal A -TCGA-E2-A10F TCGA-E2-A10F-01 Luminal A -TCGA-AO-A03V TCGA-AO-A03V-01 Luminal A -TCGA-A2-A0EW TCGA-A2-A0EW-01 Luminal A -TCGA-BH-A0GY TCGA-BH-A0GY-01 Luminal A -TCGA-A2-A0EV TCGA-A2-A0EV-01 Luminal A -TCGA-BH-A0BC TCGA-BH-A0BC-01 Luminal A -TCGA-A2-A0YC TCGA-A2-A0YC-01 Luminal A -TCGA-A2-A0EU TCGA-A2-A0EU-01 Luminal A -TCGA-A2-A0ET TCGA-A2-A0ET-01 Luminal A -TCGA-A2-A04Y TCGA-A2-A04Y-01 Luminal A -TCGA-BH-A0HQ TCGA-BH-A0HQ-01 Luminal A -TCGA-A2-A0ES TCGA-A2-A0ES-01 Luminal A -TCGA-BH-A0BA TCGA-BH-A0BA-01 Luminal A -TCGA-E2-A10B TCGA-E2-A10B-01 Luminal A -TCGA-BH-A0B1 TCGA-BH-A0B1-01 Luminal A -TCGA-BH-A0DH TCGA-BH-A0DH-01 Luminal A -TCGA-BH-A0B4 TCGA-BH-A0B4-01 Luminal A -TCGA-BH-A0H9 TCGA-BH-A0H9-01 Luminal A -TCGA-AO-A0J9 TCGA-AO-A0J9-01 Luminal A -TCGA-AO-A12G TCGA-AO-A12G-01 Luminal A -TCGA-A2-A0SY TCGA-A2-A0SY-01 Luminal A -TCGA-BH-A0E7 TCGA-BH-A0E7-01 Luminal A -TCGA-AO-A03M TCGA-AO-A03M-01 Luminal A -TCGA-BH-A0BV TCGA-BH-A0BV-01 Luminal A -TCGA-BH-A0B8 TCGA-BH-A0B8-01 Luminal A -TCGA-A2-A0CZ TCGA-A2-A0CZ-01 Luminal A -TCGA-A2-A0SU TCGA-A2-A0SU-01 Luminal A -TCGA-AO-A12E TCGA-AO-A12E-01 Luminal A -TCGA-E2-A106 TCGA-E2-A106-01 Luminal A -TCGA-A2-A0CV TCGA-A2-A0CV-01 Luminal A -TCGA-AO-A12C TCGA-AO-A12C-01 Luminal A -TCGA-B6-A0RG TCGA-B6-A0RG-01 Luminal A -TCGA-A2-A0CS TCGA-A2-A0CS-01 Luminal A -TCGA-A2-A0EO TCGA-A2-A0EO-01 Luminal A -TCGA-A2-A0CQ TCGA-A2-A0CQ-01 Luminal A -TCGA-A2-A0EN TCGA-A2-A0EN-01 Luminal A -TCGA-AO-A12A TCGA-AO-A12A-01 Luminal A -TCGA-A2-A0CP TCGA-A2-A0CP-01 Luminal A -TCGA-AO-A126 TCGA-AO-A126-01 Luminal A -TCGA-AO-A125 TCGA-AO-A125-01 Luminal A -TCGA-A2-A0EM TCGA-A2-A0EM-01 Luminal A -TCGA-A2-A04N TCGA-A2-A04N-01 Luminal A -TCGA-AQ-A04L TCGA-AQ-A04L-01 Luminal A -TCGA-B6-A0IO TCGA-B6-A0IO-01 Luminal A -TCGA-B6-A0IP TCGA-B6-A0IP-01 Luminal A -TCGA-B6-A0WZ TCGA-B6-A0WZ-01 Luminal A -TCGA-B6-A0I5 TCGA-B6-A0I5-01 Luminal A -TCGA-B6-A0RV TCGA-B6-A0RV-01 Luminal A -TCGA-B6-A0RO TCGA-B6-A0RO-01 Luminal A -TCGA-B6-A0RN TCGA-B6-A0RN-01 Luminal A -TCGA-B6-A0WT TCGA-B6-A0WT-01 Luminal A -TCGA-B6-A0IA TCGA-B6-A0IA-01 Luminal A -TCGA-B6-A0RI TCGA-B6-A0RI-01 Luminal A -TCGA-A1-A0SE TCGA-A1-A0SE-01 Luminal A -TCGA-A2-A0EX TCGA-A2-A0EX-01 Luminal A -TCGA-AO-A0JJ TCGA-AO-A0JJ-01 Luminal A -TCGA-E2-A105 TCGA-E2-A105-01 Luminal A -TCGA-A1-A0SD TCGA-A1-A0SD-01 Luminal A -TCGA-A1-A0SH TCGA-A1-A0SH-01 Luminal A -TCGA-A1-A0SJ TCGA-A1-A0SJ-01 Luminal A -TCGA-A8-A06P TCGA-A8-A06P-01 Luminal A -TCGA-A8-A06T TCGA-A8-A06T-01 Luminal A -TCGA-A8-A06Y TCGA-A8-A06Y-01 Luminal A -TCGA-A8-A07E TCGA-A8-A07E-01 Luminal A -TCGA-A8-A07F TCGA-A8-A07F-01 Luminal A -TCGA-A8-A07G TCGA-A8-A07G-01 Luminal A -TCGA-A8-A07J TCGA-A8-A07J-01 Luminal A -TCGA-A8-A07P TCGA-A8-A07P-01 Luminal A -TCGA-A8-A083 TCGA-A8-A083-01 Luminal A -TCGA-A8-A086 TCGA-A8-A086-01 Luminal A -TCGA-A8-A08A TCGA-A8-A08A-01 Luminal A -TCGA-A8-A08C TCGA-A8-A08C-01 Luminal A -TCGA-A8-A08O TCGA-A8-A08O-01 Luminal A -TCGA-A8-A08T TCGA-A8-A08T-01 Luminal A -TCGA-A8-A08Z TCGA-A8-A08Z-01 Luminal A -TCGA-A8-A090 TCGA-A8-A090-01 Luminal A -TCGA-A8-A091 TCGA-A8-A091-01 Luminal A -TCGA-A8-A093 TCGA-A8-A093-01 Luminal A -TCGA-A8-A099 TCGA-A8-A099-01 Luminal A -TCGA-A8-A09A TCGA-A8-A09A-01 Luminal A -TCGA-A8-A09B TCGA-A8-A09B-01 Luminal A -TCGA-A8-A09T TCGA-A8-A09T-01 Luminal A -TCGA-A8-A09V TCGA-A8-A09V-01 Luminal A -TCGA-A8-A0A1 TCGA-A8-A0A1-01 Luminal A -TCGA-A8-A0A2 TCGA-A8-A0A2-01 Luminal A -TCGA-A8-A0A4 TCGA-A8-A0A4-01 Luminal A -TCGA-A8-A0A6 TCGA-A8-A0A6-01 Luminal A -TCGA-A8-A0AD TCGA-A8-A0AD-01 Luminal A -TCGA-AN-A03X TCGA-AN-A03X-01 Luminal A -TCGA-AN-A046 TCGA-AN-A046-01 Luminal A -TCGA-AN-A04A TCGA-AN-A04A-01 Luminal A -TCGA-AN-A0FD TCGA-AN-A0FD-01 Luminal A -TCGA-AN-A0FN TCGA-AN-A0FN-01 Luminal A -TCGA-AN-A0FS TCGA-AN-A0FS-01 Luminal A -TCGA-AN-A0FT TCGA-AN-A0FT-01 Luminal A -TCGA-AN-A0FW TCGA-AN-A0FW-01 Luminal A -TCGA-AN-A0FZ TCGA-AN-A0FZ-01 Luminal A -TCGA-AN-A0XL TCGA-AN-A0XL-01 Luminal A -TCGA-AN-A0XN TCGA-AN-A0XN-01 Luminal A -TCGA-AN-A0XO TCGA-AN-A0XO-01 Luminal A -TCGA-AN-A0XP TCGA-AN-A0XP-01 Luminal A -TCGA-AN-A0XS TCGA-AN-A0XS-01 Luminal A -TCGA-AN-A0XT TCGA-AN-A0XT-01 Luminal A -TCGA-AN-A0XV TCGA-AN-A0XV-01 Luminal A -TCGA-AR-A0TW TCGA-AR-A0TW-01 Luminal A -TCGA-AR-A1AK TCGA-AR-A1AK-01 Luminal A -TCGA-AR-A1AL TCGA-AR-A1AL-01 Luminal A -TCGA-AR-A1AN TCGA-AR-A1AN-01 Luminal A -TCGA-AR-A1AP TCGA-AR-A1AP-01 Luminal A -TCGA-AR-A1AS TCGA-AR-A1AS-01 Luminal A -TCGA-AR-A1AU TCGA-AR-A1AU-01 Luminal A -TCGA-AR-A1AW TCGA-AR-A1AW-01 Luminal A -TCGA-AR-A1AX TCGA-AR-A1AX-01 Luminal A -TCGA-BH-A0AZ TCGA-BH-A0AZ-01 Luminal A -TCGA-BH-A0B0 TCGA-BH-A0B0-01 Luminal A -TCGA-BH-A0BM TCGA-BH-A0BM-01 Luminal A -TCGA-BH-A0BO TCGA-BH-A0BO-01 Luminal A -TCGA-BH-A0BP TCGA-BH-A0BP-01 Luminal A -TCGA-BH-A0BQ TCGA-BH-A0BQ-01 Luminal A -TCGA-BH-A0BR TCGA-BH-A0BR-01 Luminal A -TCGA-BH-A0BS TCGA-BH-A0BS-01 Luminal A -TCGA-BH-A0BT TCGA-BH-A0BT-01 Luminal A -TCGA-BH-A0C1 TCGA-BH-A0C1-01 Luminal A -TCGA-BH-A0DE TCGA-BH-A0DE-01 Luminal A -TCGA-BH-A0DG TCGA-BH-A0DG-01 Luminal A -TCGA-BH-A0DI TCGA-BH-A0DI-01 Luminal A -TCGA-BH-A0DO TCGA-BH-A0DO-01 Luminal A -TCGA-BH-A0DT TCGA-BH-A0DT-01 Luminal A -TCGA-BH-A0DX TCGA-BH-A0DX-01 Luminal A -TCGA-BH-A0E9 TCGA-BH-A0E9-01 Luminal A -TCGA-BH-A0EI TCGA-BH-A0EI-01 Luminal A -TCGA-BH-A0H3 TCGA-BH-A0H3-01 Luminal A -TCGA-BH-A0H5 TCGA-BH-A0H5-01 Luminal A -TCGA-BH-A0HA TCGA-BH-A0HA-01 Luminal A -TCGA-BH-A0W4 TCGA-BH-A0W4-01 Luminal A -TCGA-BH-A0W5 TCGA-BH-A0W5-01 Luminal A -TCGA-BH-A0W7 TCGA-BH-A0W7-01 Luminal A -TCGA-BH-A18H TCGA-BH-A18H-01 Luminal A -TCGA-BH-A18I TCGA-BH-A18I-01 Luminal A -TCGA-C8-A12N TCGA-C8-A12N-01 Luminal A -TCGA-C8-A12O TCGA-C8-A12O-01 Luminal A -TCGA-C8-A12Y TCGA-C8-A12Y-01 Luminal A -TCGA-C8-A132 TCGA-C8-A132-01 Luminal A -TCGA-C8-A133 TCGA-C8-A133-01 Luminal A -TCGA-C8-A1HI TCGA-C8-A1HI-01 Luminal A -TCGA-D8-A141 TCGA-D8-A141-01 Luminal A -TCGA-E2-A14Q TCGA-E2-A14Q-01 Luminal A -TCGA-E2-A14T TCGA-E2-A14T-01 Luminal A -TCGA-E2-A14Z TCGA-E2-A14Z-01 Luminal A -TCGA-E2-A153 TCGA-E2-A153-01 Luminal A -TCGA-E2-A154 TCGA-E2-A154-01 Luminal A -TCGA-E2-A156 TCGA-E2-A156-01 Luminal A -TCGA-E2-A15C TCGA-E2-A15C-01 Luminal A -TCGA-E2-A15D TCGA-E2-A15D-01 Luminal A -TCGA-E2-A15E TCGA-E2-A15E-01 Luminal A -TCGA-E2-A15F TCGA-E2-A15F-01 Luminal A -TCGA-E2-A15G TCGA-E2-A15G-01 Luminal A -TCGA-E2-A15H TCGA-E2-A15H-01 Luminal A -TCGA-E2-A15I TCGA-E2-A15I-01 Luminal A -TCGA-E2-A15J TCGA-E2-A15J-01 Luminal A -TCGA-E2-A15O TCGA-E2-A15O-01 Luminal A -TCGA-E2-A15P TCGA-E2-A15P-01 Luminal A -TCGA-E2-A15R TCGA-E2-A15R-01 Luminal A -TCGA-E2-A1B1 TCGA-E2-A1B1-01 Luminal A -TCGA-E2-A1B4 TCGA-E2-A1B4-01 Luminal A -TCGA-E2-A1B6 TCGA-E2-A1B6-01 Luminal A -TCGA-E2-A1BC TCGA-E2-A1BC-01 Luminal A -TCGA-E2-A1BD TCGA-E2-A1BD-01 Luminal A -TCGA-A2-A0SV TCGA-A2-A0SV-01 Luminal B -TCGA-AO-A03O TCGA-AO-A03O-01 Luminal B -TCGA-A2-A0SW TCGA-A2-A0SW-01 Luminal B -TCGA-B6-A0WW TCGA-B6-A0WW-01 Luminal B -TCGA-BH-A18J TCGA-BH-A18J-01 Luminal B -TCGA-BH-A18L TCGA-BH-A18L-01 Luminal B -TCGA-A8-A06X TCGA-A8-A06X-01 Luminal B -TCGA-B6-A0IC TCGA-B6-A0IC-01 Luminal B -TCGA-BH-A18U TCGA-BH-A18U-01 Luminal B -TCGA-BH-A1EW TCGA-BH-A1EW-01 Luminal B -TCGA-AR-A0TY TCGA-AR-A0TY-01 Luminal B -TCGA-B6-A0X5 TCGA-B6-A0X5-01 Luminal B -TCGA-B6-A0WV TCGA-B6-A0WV-01 Luminal B -TCGA-B6-A0RL TCGA-B6-A0RL-01 Luminal B -TCGA-AR-A0U2 TCGA-AR-A0U2-01 Luminal B -TCGA-B6-A0IB TCGA-B6-A0IB-01 Luminal B -TCGA-AO-A0J7 TCGA-AO-A0J7-01 Luminal B -TCGA-AO-A0J3 TCGA-AO-A0J3-01 Luminal B -TCGA-D8-A13Y TCGA-D8-A13Y-01 Luminal B -TCGA-A7-A13F TCGA-A7-A13F-01 Luminal B -TCGA-BH-A0HU TCGA-BH-A0HU-01 Luminal B -TCGA-D8-A140 TCGA-D8-A140-01 Luminal B -TCGA-A7-A0CJ TCGA-A7-A0CJ-01 Luminal B -TCGA-AQ-A04H TCGA-AQ-A04H-01 Luminal B -TCGA-BH-A0H0 TCGA-BH-A0H0-01 Luminal B -TCGA-BH-A0BD TCGA-BH-A0BD-01 Luminal B -TCGA-A2-A0T3 TCGA-A2-A0T3-01 Luminal B -TCGA-A2-A0T4 TCGA-A2-A0T4-01 Luminal B -TCGA-A2-A0YH TCGA-A2-A0YH-01 Luminal B -TCGA-A2-A0YG TCGA-A2-A0YG-01 Luminal B -TCGA-A2-A0EY TCGA-A2-A0EY-01 Luminal B -TCGA-A2-A0D4 TCGA-A2-A0D4-01 Luminal B -TCGA-BH-A0AY TCGA-BH-A0AY-01 Luminal B -TCGA-E2-A107 TCGA-E2-A107-01 Luminal B -TCGA-AO-A0JI TCGA-AO-A0JI-01 Luminal B -TCGA-E2-A10C TCGA-E2-A10C-01 Luminal B -TCGA-E2-A10A TCGA-E2-A10A-01 Luminal B -TCGA-BH-A0C0 TCGA-BH-A0C0-01 Luminal B -TCGA-E2-A109 TCGA-E2-A109-01 Luminal B -TCGA-AO-A0JC TCGA-AO-A0JC-01 Luminal B -TCGA-BH-A0HW TCGA-BH-A0HW-01 Luminal B -TCGA-AO-A0JD TCGA-AO-A0JD-01 Luminal B -TCGA-AO-A0JM TCGA-AO-A0JM-01 Luminal B -TCGA-A2-A0CW TCGA-A2-A0CW-01 Luminal B -TCGA-A2-A0ER TCGA-A2-A0ER-01 Luminal B -TCGA-A2-A0CT TCGA-A2-A0CT-01 Luminal B -TCGA-AO-A12B TCGA-AO-A12B-01 Luminal B -TCGA-A2-A04R TCGA-A2-A04R-01 Luminal B -TCGA-B6-A0IM TCGA-B6-A0IM-01 Luminal B -TCGA-AO-A03P TCGA-AO-A03P-01 Luminal B -TCGA-A1-A0SM TCGA-A1-A0SM-01 Luminal B -TCGA-A8-A06N TCGA-A8-A06N-01 Luminal B -TCGA-A8-A06O TCGA-A8-A06O-01 Luminal B -TCGA-A8-A06Q TCGA-A8-A06Q-01 Luminal B -TCGA-A8-A06R TCGA-A8-A06R-01 Luminal B -TCGA-A8-A06Z TCGA-A8-A06Z-01 Luminal B -TCGA-A8-A079 TCGA-A8-A079-01 Luminal B -TCGA-A8-A07L TCGA-A8-A07L-01 Luminal B -TCGA-A8-A07S TCGA-A8-A07S-01 Luminal B -TCGA-A8-A07W TCGA-A8-A07W-01 Luminal B -TCGA-A8-A07Z TCGA-A8-A07Z-01 Luminal B -TCGA-A8-A082 TCGA-A8-A082-01 Luminal B -TCGA-A8-A084 TCGA-A8-A084-01 Luminal B -TCGA-A8-A085 TCGA-A8-A085-01 Luminal B -TCGA-A8-A08F TCGA-A8-A08F-01 Luminal B -TCGA-A8-A08G TCGA-A8-A08G-01 Luminal B -TCGA-A8-A08I TCGA-A8-A08I-01 Luminal B -TCGA-A8-A08P TCGA-A8-A08P-01 Luminal B -TCGA-A8-A095 TCGA-A8-A095-01 Luminal B -TCGA-A8-A096 TCGA-A8-A096-01 Luminal B -TCGA-A8-A097 TCGA-A8-A097-01 Luminal B -TCGA-A8-A09C TCGA-A8-A09C-01 Luminal B -TCGA-A8-A09D TCGA-A8-A09D-01 Luminal B -TCGA-A8-A09I TCGA-A8-A09I-01 Luminal B -TCGA-A8-A09M TCGA-A8-A09M-01 Luminal B -TCGA-A8-A09N TCGA-A8-A09N-01 Luminal B -TCGA-A8-A09Q TCGA-A8-A09Q-01 Luminal B -TCGA-A8-A09R TCGA-A8-A09R-01 Luminal B -TCGA-A8-A09W TCGA-A8-A09W-01 Luminal B -TCGA-A8-A09Z TCGA-A8-A09Z-01 Luminal B -TCGA-A8-A0A9 TCGA-A8-A0A9-01 Luminal B -TCGA-A8-A0AB TCGA-A8-A0AB-01 Luminal B -TCGA-AN-A03Y TCGA-AN-A03Y-01 Luminal B -TCGA-AN-A041 TCGA-AN-A041-01 Luminal B -TCGA-AN-A049 TCGA-AN-A049-01 Luminal B -TCGA-AN-A0AJ TCGA-AN-A0AJ-01 Luminal B -TCGA-AN-A0AK TCGA-AN-A0AK-01 Luminal B -TCGA-AN-A0AM TCGA-AN-A0AM-01 Luminal B -TCGA-AN-A0AS TCGA-AN-A0AS-01 Luminal B -TCGA-AN-A0FF TCGA-AN-A0FF-01 Luminal B -TCGA-AN-A0FK TCGA-AN-A0FK-01 Luminal B -TCGA-AN-A0FY TCGA-AN-A0FY-01 Luminal B -TCGA-AN-A0XR TCGA-AN-A0XR-01 Luminal B -TCGA-AN-A0XW TCGA-AN-A0XW-01 Luminal B -TCGA-AR-A0TQ TCGA-AR-A0TQ-01 Luminal B -TCGA-AR-A0TT TCGA-AR-A0TT-01 Luminal B -TCGA-AR-A0TV TCGA-AR-A0TV-01 Luminal B -TCGA-AR-A0TZ TCGA-AR-A0TZ-01 Luminal B -TCGA-AR-A0U3 TCGA-AR-A0U3-01 Luminal B -TCGA-AR-A1AV TCGA-AR-A1AV-01 Luminal B -TCGA-BH-A0AU TCGA-BH-A0AU-01 Luminal B -TCGA-BH-A0B5 TCGA-BH-A0B5-01 Luminal B -TCGA-BH-A0BF TCGA-BH-A0BF-01 Luminal B -TCGA-BH-A0BZ TCGA-BH-A0BZ-01 Luminal B -TCGA-BH-A0C3 TCGA-BH-A0C3-01 Luminal B -TCGA-BH-A0C7 TCGA-BH-A0C7-01 Luminal B -TCGA-BH-A0DD TCGA-BH-A0DD-01 Luminal B -TCGA-BH-A0W3 TCGA-BH-A0W3-01 Luminal B -TCGA-BH-A18F TCGA-BH-A18F-01 Luminal B -TCGA-C8-A12M TCGA-C8-A12M-01 Luminal B -TCGA-C8-A12U TCGA-C8-A12U-01 Luminal B -TCGA-C8-A12W TCGA-C8-A12W-01 Luminal B -TCGA-C8-A12X TCGA-C8-A12X-01 Luminal B -TCGA-C8-A1HG TCGA-C8-A1HG-01 Luminal B -TCGA-C8-A1HL TCGA-C8-A1HL-01 Luminal B -TCGA-C8-A1HM TCGA-C8-A1HM-01 Luminal B -TCGA-C8-A1HN TCGA-C8-A1HN-01 Luminal B -TCGA-E2-A14O TCGA-E2-A14O-01 Luminal B -TCGA-E2-A14S TCGA-E2-A14S-01 Luminal B -TCGA-E2-A14W TCGA-E2-A14W-01 Luminal B -TCGA-E2-A155 TCGA-E2-A155-01 Luminal B -TCGA-E2-A15A TCGA-E2-A15A-01 Luminal B -TCGA-E2-A15K TCGA-E2-A15K-01 Luminal B -TCGA-E2-A15L TCGA-E2-A15L-01 Luminal B -TCGA-E2-A15M TCGA-E2-A15M-01 Luminal B -TCGA-E2-A15S TCGA-E2-A15S-01 Luminal B -TCGA-E2-A15T TCGA-E2-A15T-01 Luminal B -TCGA-AO-A03U TCGA-AO-A03U-01 NA -TCGA-B6-A0IE TCGA-B6-A0IE-01 NA -TCGA-A2-A0YK TCGA-A2-A0YK-01 NA -TCGA-E2-A108 TCGA-E2-A108-01 Claudin low -TCGA-AO-A0JB TCGA-AO-A0JB-01 NA -TCGA-AO-A03R TCGA-AO-A03R-01 NA -TCGA-AO-A03T TCGA-AO-A03T-01 NA -TCGA-AR-A1AO TCGA-AR-A1AO-01 Claudin low -TCGA-A2-A0YT TCGA-A2-A0YT-01 Luminal B -TCGA-AQ-A0Y5 TCGA-AQ-A0Y5-01 NA -TCGA-EW-A1P8 TCGA-EW-A1P8-01 NA -TCGA-E2-A1LK TCGA-E2-A1LK-01 NA -TCGA-BH-A1EY TCGA-BH-A1EY-01 NA -TCGA-BH-A1F8 TCGA-BH-A1F8-01 NA -TCGA-BH-A1F2 TCGA-BH-A1F2-01 NA -TCGA-BH-A1FD TCGA-BH-A1FD-01 NA -TCGA-BH-A1FH TCGA-BH-A1FH-01 NA -TCGA-BH-A203 TCGA-BH-A203-01 NA -TCGA-BH-A1FM TCGA-BH-A1FM-01 NA -TCGA-BH-A1EX TCGA-BH-A1EX-01 NA -TCGA-BH-A1FL TCGA-BH-A1FL-01 NA -TCGA-BH-A208 TCGA-BH-A208-01 NA -TCGA-GM-A2D9 TCGA-GM-A2D9-01 NA -TCGA-BH-A1FJ TCGA-BH-A1FJ-01 NA -TCGA-BH-A1EN TCGA-BH-A1EN-01 NA -TCGA-BH-A1FN TCGA-BH-A1FN-01 NA -TCGA-BH-A1FU TCGA-BH-A1FU-01 NA -TCGA-BH-A1FE TCGA-BH-A1FE-01 NA -TCGA-BH-A204 TCGA-BH-A204-01 NA -TCGA-BH-A1F5 TCGA-BH-A1F5-01 NA -TCGA-AR-A256 TCGA-AR-A256-01 NA -TCGA-BH-A1F6 TCGA-BH-A1F6-01 NA -TCGA-BH-A1FC TCGA-BH-A1FC-01 NA -TCGA-BH-A1FB TCGA-BH-A1FB-01 NA -TCGA-BH-A1FG TCGA-BH-A1FG-01 NA -TCGA-BH-A209 TCGA-BH-A209-01 NA -TCGA-BH-A1FR TCGA-BH-A1FR-01 NA -TCGA-AO-A1KS TCGA-AO-A1KS-01 NA -TCGA-A7-A13G TCGA-A7-A13G-01 NA -TCGA-D8-A1JS TCGA-D8-A1JS-01 NA -TCGA-A7-A0DC TCGA-A7-A0DC-01 Luminal A -TCGA-D8-A1JT TCGA-D8-A1JT-01 NA -TCGA-A7-A26E TCGA-A7-A26E-01 NA -TCGA-D8-A1JH TCGA-D8-A1JH-01 NA -TCGA-D8-A1JU TCGA-D8-A1JU-01 NA -TCGA-AO-A1KO TCGA-AO-A1KO-01 NA -TCGA-AO-A1KT TCGA-AO-A1KT-01 NA -TCGA-AO-A0J5 TCGA-AO-A0J5-01 Luminal A -TCGA-B6-A1KC TCGA-B6-A1KC-01 NA -TCGA-AO-A1KQ TCGA-AO-A1KQ-01 NA -TCGA-B6-A1KI TCGA-B6-A1KI-01 NA -TCGA-AO-A1KP TCGA-AO-A1KP-01 NA -TCGA-B6-A1KF TCGA-B6-A1KF-01 NA -TCGA-B6-A1KN TCGA-B6-A1KN-01 NA -TCGA-D8-A1XO TCGA-D8-A1XO-01 NA -TCGA-D8-A1XT TCGA-D8-A1XT-01 NA -TCGA-A1-A0SP TCGA-A1-A0SP-01 NA -TCGA-D8-A1J8 TCGA-D8-A1J8-01 NA -TCGA-D8-A1JF TCGA-D8-A1JF-01 NA -TCGA-D8-A1JG TCGA-D8-A1JG-01 NA -TCGA-D8-A1XS TCGA-D8-A1XS-01 NA -TCGA-A1-A0SB TCGA-A1-A0SB-01 NA -TCGA-A1-A0SF TCGA-A1-A0SF-01 NA -TCGA-A1-A0SG TCGA-A1-A0SG-01 NA -TCGA-A1-A0SI TCGA-A1-A0SI-01 NA -TCGA-A1-A0SN TCGA-A1-A0SN-01 NA -TCGA-A1-A0SQ TCGA-A1-A0SQ-01 NA -TCGA-A2-A1FV TCGA-A2-A1FV-01 NA -TCGA-A2-A1FW TCGA-A2-A1FW-01 NA -TCGA-A2-A1FX TCGA-A2-A1FX-01 NA -TCGA-A2-A1FZ TCGA-A2-A1FZ-01 NA -TCGA-A2-A1G0 TCGA-A2-A1G0-01 NA -TCGA-A2-A1G1 TCGA-A2-A1G1-01 NA -TCGA-A2-A1G4 TCGA-A2-A1G4-01 NA -TCGA-A2-A1G6 TCGA-A2-A1G6-01 NA -TCGA-A2-A259 TCGA-A2-A259-01 NA -TCGA-A2-A25A TCGA-A2-A25A-01 NA -TCGA-A2-A25B TCGA-A2-A25B-01 NA -TCGA-A2-A25C TCGA-A2-A25C-01 NA -TCGA-A2-A25D TCGA-A2-A25D-01 NA -TCGA-A2-A25E TCGA-A2-A25E-01 NA -TCGA-A2-A25F TCGA-A2-A25F-01 NA -TCGA-A7-A26F TCGA-A7-A26F-01 NA -TCGA-A7-A26G TCGA-A7-A26G-01 NA -TCGA-A7-A26H TCGA-A7-A26H-01 NA -TCGA-A7-A26I TCGA-A7-A26I-01 NA -TCGA-A7-A26J TCGA-A7-A26J-01 NA -TCGA-A8-A08S TCGA-A8-A08S-01 Luminal B -TCGA-A8-A09E TCGA-A8-A09E-01 Luminal B -TCGA-A8-A09K TCGA-A8-A09K-01 Luminal B -TCGA-AC-A23C TCGA-AC-A23C-01 NA -TCGA-AC-A23E TCGA-AC-A23E-01 NA -TCGA-AC-A23H TCGA-AC-A23H-01 NA -TCGA-AO-A1KR TCGA-AO-A1KR-01 NA -TCGA-AQ-A1H2 TCGA-AQ-A1H2-01 NA -TCGA-AQ-A1H3 TCGA-AQ-A1H3-01 NA -TCGA-AR-A24H TCGA-AR-A24H-01 NA -TCGA-AR-A24K TCGA-AR-A24K-01 NA -TCGA-AR-A24L TCGA-AR-A24L-01 NA -TCGA-AR-A24M TCGA-AR-A24M-01 NA -TCGA-AR-A24N TCGA-AR-A24N-01 NA -TCGA-AR-A24O TCGA-AR-A24O-01 NA -TCGA-AR-A24P TCGA-AR-A24P-01 NA -TCGA-AR-A24Q TCGA-AR-A24Q-01 NA -TCGA-AR-A24R TCGA-AR-A24R-01 NA -TCGA-AR-A24S TCGA-AR-A24S-01 NA -TCGA-AR-A24T TCGA-AR-A24T-01 NA -TCGA-AR-A24U TCGA-AR-A24U-01 NA -TCGA-AR-A24V TCGA-AR-A24V-01 NA -TCGA-AR-A24X TCGA-AR-A24X-01 NA -TCGA-AR-A24Z TCGA-AR-A24Z-01 NA -TCGA-AR-A250 TCGA-AR-A250-01 NA -TCGA-AR-A251 TCGA-AR-A251-01 NA -TCGA-AR-A252 TCGA-AR-A252-01 NA -TCGA-AR-A254 TCGA-AR-A254-01 NA -TCGA-AR-A255 TCGA-AR-A255-01 NA -TCGA-BH-A0B2 TCGA-BH-A0B2-01 Luminal A -TCGA-BH-A0DV TCGA-BH-A0DV-01 NA -TCGA-BH-A201 TCGA-BH-A201-01 NA -TCGA-BH-A202 TCGA-BH-A202-01 NA -TCGA-BH-A28Q TCGA-BH-A28Q-01 NA -TCGA-C8-A1HE TCGA-C8-A1HE-01 NA -TCGA-C8-A1HJ TCGA-C8-A1HJ-01 NA -TCGA-C8-A1HK TCGA-C8-A1HK-01 NA -TCGA-C8-A1HO TCGA-C8-A1HO-01 NA -TCGA-C8-A26V TCGA-C8-A26V-01 NA -TCGA-C8-A26W TCGA-C8-A26W-01 NA -TCGA-C8-A26X TCGA-C8-A26X-01 NA -TCGA-C8-A26Y TCGA-C8-A26Y-01 NA -TCGA-C8-A26Z TCGA-C8-A26Z-01 NA -TCGA-C8-A273 TCGA-C8-A273-01 NA -TCGA-C8-A274 TCGA-C8-A274-01 NA -TCGA-C8-A275 TCGA-C8-A275-01 NA -TCGA-C8-A278 TCGA-C8-A278-01 NA -TCGA-C8-A27A TCGA-C8-A27A-01 NA -TCGA-C8-A27B TCGA-C8-A27B-01 NA -TCGA-D8-A146 TCGA-D8-A146-01 Luminal A -TCGA-D8-A1J9 TCGA-D8-A1J9-01 NA -TCGA-D8-A1JA TCGA-D8-A1JA-01 NA -TCGA-D8-A1JB TCGA-D8-A1JB-01 NA -TCGA-D8-A1JC TCGA-D8-A1JC-01 NA -TCGA-D8-A1JD TCGA-D8-A1JD-01 NA -TCGA-D8-A1JE TCGA-D8-A1JE-01 NA -TCGA-D8-A1JI TCGA-D8-A1JI-01 NA -TCGA-D8-A1JJ TCGA-D8-A1JJ-01 NA -TCGA-D8-A1JK TCGA-D8-A1JK-01 NA -TCGA-D8-A1JL TCGA-D8-A1JL-01 NA -TCGA-D8-A1JM TCGA-D8-A1JM-01 NA -TCGA-D8-A1JN TCGA-D8-A1JN-01 NA -TCGA-D8-A1JP TCGA-D8-A1JP-01 NA -TCGA-D8-A1X5 TCGA-D8-A1X5-01 NA -TCGA-D8-A1X6 TCGA-D8-A1X6-01 NA -TCGA-D8-A1X7 TCGA-D8-A1X7-01 NA -TCGA-D8-A1X8 TCGA-D8-A1X8-01 NA -TCGA-D8-A1X9 TCGA-D8-A1X9-01 NA -TCGA-D8-A1XA TCGA-D8-A1XA-01 NA -TCGA-D8-A1XB TCGA-D8-A1XB-01 NA -TCGA-D8-A1XC TCGA-D8-A1XC-01 NA -TCGA-D8-A1XD TCGA-D8-A1XD-01 NA -TCGA-D8-A1XF TCGA-D8-A1XF-01 NA -TCGA-D8-A1XG TCGA-D8-A1XG-01 NA -TCGA-D8-A1XJ TCGA-D8-A1XJ-01 NA -TCGA-D8-A1XK TCGA-D8-A1XK-01 NA -TCGA-D8-A1XL TCGA-D8-A1XL-01 NA -TCGA-D8-A1XM TCGA-D8-A1XM-01 NA -TCGA-D8-A1XQ TCGA-D8-A1XQ-01 NA -TCGA-D8-A1XR TCGA-D8-A1XR-01 NA -TCGA-D8-A1XU TCGA-D8-A1XU-01 NA -TCGA-D8-A1XV TCGA-D8-A1XV-01 NA -TCGA-D8-A1XW TCGA-D8-A1XW-01 NA -TCGA-D8-A1XY TCGA-D8-A1XY-01 NA -TCGA-D8-A1XZ TCGA-D8-A1XZ-01 NA -TCGA-D8-A1Y0 TCGA-D8-A1Y0-01 NA -TCGA-D8-A1Y1 TCGA-D8-A1Y1-01 NA -TCGA-D8-A1Y2 TCGA-D8-A1Y2-01 NA -TCGA-D8-A1Y3 TCGA-D8-A1Y3-01 NA -TCGA-D8-A27E TCGA-D8-A27E-01 NA -TCGA-D8-A27F TCGA-D8-A27F-01 NA -TCGA-D8-A27G TCGA-D8-A27G-01 NA -TCGA-D8-A27H TCGA-D8-A27H-01 NA -TCGA-D8-A27I TCGA-D8-A27I-01 NA -TCGA-D8-A27K TCGA-D8-A27K-01 NA -TCGA-D8-A27L TCGA-D8-A27L-01 NA -TCGA-D8-A27M TCGA-D8-A27M-01 NA -TCGA-D8-A27N TCGA-D8-A27N-01 NA -TCGA-D8-A27P TCGA-D8-A27P-01 NA -TCGA-D8-A27R TCGA-D8-A27R-01 NA -TCGA-D8-A27T TCGA-D8-A27T-01 NA -TCGA-D8-A27V TCGA-D8-A27V-01 NA -TCGA-D8-A27W TCGA-D8-A27W-01 NA -TCGA-E2-A1IE TCGA-E2-A1IE-01 NA -TCGA-E2-A1IF TCGA-E2-A1IF-01 NA -TCGA-E2-A1IG TCGA-E2-A1IG-01 NA -TCGA-E2-A1IH TCGA-E2-A1IH-01 NA -TCGA-E2-A1II TCGA-E2-A1II-01 NA -TCGA-E2-A1IJ TCGA-E2-A1IJ-01 NA -TCGA-E2-A1IK TCGA-E2-A1IK-01 NA -TCGA-E2-A1IL TCGA-E2-A1IL-01 NA -TCGA-E2-A1IN TCGA-E2-A1IN-01 NA -TCGA-E2-A1IO TCGA-E2-A1IO-01 NA -TCGA-E2-A1IP TCGA-E2-A1IP-01 NA -TCGA-E2-A1IU TCGA-E2-A1IU-01 NA -TCGA-E2-A1L6 TCGA-E2-A1L6-01 NA -TCGA-E2-A1L7 TCGA-E2-A1L7-01 NA -TCGA-E2-A1L8 TCGA-E2-A1L8-01 NA -TCGA-E2-A1L9 TCGA-E2-A1L9-01 NA -TCGA-E2-A1LA TCGA-E2-A1LA-01 NA -TCGA-E2-A1LB TCGA-E2-A1LB-01 NA -TCGA-E2-A1LG TCGA-E2-A1LG-01 NA -TCGA-E2-A1LH TCGA-E2-A1LH-01 NA -TCGA-E2-A1LI TCGA-E2-A1LI-01 NA -TCGA-E2-A1LL TCGA-E2-A1LL-01 NA -TCGA-E2-A1LS TCGA-E2-A1LS-01 NA -TCGA-E9-A1N3 TCGA-E9-A1N3-01 NA -TCGA-E9-A1N4 TCGA-E9-A1N4-01 NA -TCGA-E9-A1N5 TCGA-E9-A1N5-01 NA -TCGA-E9-A1N6 TCGA-E9-A1N6-01 NA -TCGA-E9-A1N8 TCGA-E9-A1N8-01 NA -TCGA-E9-A1N9 TCGA-E9-A1N9-01 NA -TCGA-E9-A1NA TCGA-E9-A1NA-01 NA -TCGA-E9-A1NC TCGA-E9-A1NC-01 NA -TCGA-E9-A1ND TCGA-E9-A1ND-01 NA -TCGA-E9-A1NE TCGA-E9-A1NE-01 NA -TCGA-E9-A1NF TCGA-E9-A1NF-01 NA -TCGA-E9-A1NG TCGA-E9-A1NG-01 NA -TCGA-E9-A1NH TCGA-E9-A1NH-01 NA -TCGA-E9-A1NI TCGA-E9-A1NI-01 NA -TCGA-E9-A1QZ TCGA-E9-A1QZ-01 NA -TCGA-E9-A1R0 TCGA-E9-A1R0-01 NA -TCGA-E9-A1R2 TCGA-E9-A1R2-01 NA -TCGA-E9-A1R3 TCGA-E9-A1R3-01 NA -TCGA-E9-A1R4 TCGA-E9-A1R4-01 NA -TCGA-E9-A1R5 TCGA-E9-A1R5-01 NA -TCGA-E9-A1R6 TCGA-E9-A1R6-01 NA -TCGA-E9-A1R7 TCGA-E9-A1R7-01 NA -TCGA-E9-A1RA TCGA-E9-A1RA-01 NA -TCGA-E9-A1RB TCGA-E9-A1RB-01 NA -TCGA-E9-A1RC TCGA-E9-A1RC-01 NA -TCGA-E9-A1RD TCGA-E9-A1RD-01 NA -TCGA-E9-A1RE TCGA-E9-A1RE-01 NA -TCGA-E9-A1RF TCGA-E9-A1RF-01 NA -TCGA-E9-A1RG TCGA-E9-A1RG-01 NA -TCGA-E9-A1RH TCGA-E9-A1RH-01 NA -TCGA-E9-A1RI TCGA-E9-A1RI-01 NA -TCGA-E9-A226 TCGA-E9-A226-01 NA -TCGA-E9-A227 TCGA-E9-A227-01 NA -TCGA-E9-A228 TCGA-E9-A228-01 NA -TCGA-E9-A229 TCGA-E9-A229-01 NA -TCGA-E9-A22A TCGA-E9-A22A-01 NA -TCGA-E9-A22B TCGA-E9-A22B-01 NA -TCGA-E9-A22D TCGA-E9-A22D-01 NA -TCGA-E9-A22E TCGA-E9-A22E-01 NA -TCGA-E9-A22G TCGA-E9-A22G-01 NA -TCGA-E9-A22H TCGA-E9-A22H-01 NA -TCGA-E9-A243 TCGA-E9-A243-01 NA -TCGA-E9-A244 TCGA-E9-A244-01 NA -TCGA-E9-A245 TCGA-E9-A245-01 NA -TCGA-E9-A247 TCGA-E9-A247-01 NA -TCGA-E9-A248 TCGA-E9-A248-01 NA -TCGA-E9-A249 TCGA-E9-A249-01 NA -TCGA-E9-A24A TCGA-E9-A24A-01 NA -TCGA-EW-A1IW TCGA-EW-A1IW-01 NA -TCGA-EW-A1IX TCGA-EW-A1IX-01 NA -TCGA-EW-A1IY TCGA-EW-A1IY-01 NA -TCGA-EW-A1IZ TCGA-EW-A1IZ-01 NA -TCGA-EW-A1J1 TCGA-EW-A1J1-01 NA -TCGA-EW-A1J2 TCGA-EW-A1J2-01 NA -TCGA-EW-A1J3 TCGA-EW-A1J3-01 NA -TCGA-EW-A1J5 TCGA-EW-A1J5-01 NA -TCGA-EW-A1J6 TCGA-EW-A1J6-01 NA -TCGA-EW-A1OV TCGA-EW-A1OV-01 NA -TCGA-EW-A1OW TCGA-EW-A1OW-01 NA -TCGA-EW-A1OX TCGA-EW-A1OX-01 NA -TCGA-EW-A1OY TCGA-EW-A1OY-01 NA -TCGA-EW-A1OZ TCGA-EW-A1OZ-01 NA -TCGA-EW-A1P0 TCGA-EW-A1P0-01 NA -TCGA-EW-A1P1 TCGA-EW-A1P1-01 NA -TCGA-EW-A1P3 TCGA-EW-A1P3-01 NA -TCGA-EW-A1P4 TCGA-EW-A1P4-01 NA -TCGA-EW-A1P5 TCGA-EW-A1P5-01 NA -TCGA-EW-A1P6 TCGA-EW-A1P6-01 NA -TCGA-EW-A1P7 TCGA-EW-A1P7-01 NA -TCGA-EW-A1PA TCGA-EW-A1PA-01 NA -TCGA-EW-A1PB TCGA-EW-A1PB-01 NA -TCGA-EW-A1PD TCGA-EW-A1PD-01 NA -TCGA-EW-A1PE TCGA-EW-A1PE-01 NA -TCGA-EW-A1PF TCGA-EW-A1PF-01 NA -TCGA-EW-A1PG TCGA-EW-A1PG-01 NA -TCGA-EW-A1PH TCGA-EW-A1PH-01 NA -TCGA-EW-A2FS TCGA-EW-A2FS-01 NA -TCGA-EW-A2FV TCGA-EW-A2FV-01 NA -TCGA-EW-A2FW TCGA-EW-A2FW-01 NA -TCGA-GM-A2DA TCGA-GM-A2DA-01 NA -TCGA-GM-A2DB TCGA-GM-A2DB-01 NA -TCGA-GM-A2DC TCGA-GM-A2DC-01 NA -TCGA-GM-A2DD TCGA-GM-A2DD-01 NA -TCGA-GM-A2DF TCGA-GM-A2DF-01 NA -TCGA-GM-A2DH TCGA-GM-A2DH-01 NA -TCGA-GM-A2DI TCGA-GM-A2DI-01 NA -TCGA-GM-A2DK TCGA-GM-A2DK-01 NA -TCGA-GM-A2DL TCGA-GM-A2DL-01 NA -TCGA-GM-A2DM TCGA-GM-A2DM-01 NA -TCGA-GM-A2DN TCGA-GM-A2DN-01 NA -TCGA-GM-A2DO TCGA-GM-A2DO-01 NA -TCGA-AR-A24W TCGA-AR-A24W-01 NA -TCGA-AC-A2B8 TCGA-AC-A2B8-01 NA -TCGA-AC-A2FF TCGA-AC-A2FF-01 NA -TCGA-AC-A2FB TCGA-AC-A2FB-01 NA -TCGA-AC-A2FG TCGA-AC-A2FG-01 NA -TCGA-GI-A2C8 TCGA-GI-A2C8-01 NA -TCGA-E9-A295 TCGA-E9-A295-01 NA -TCGA-E2-A15E TCGA-E2-A15E-06 NA -TCGA-A2-A0T2 TCGA-A2-A0T2-01 NA diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/meta_CNA.txt b/core/src/test/scripts/test_data/study_portal_mismatch/meta_CNA.txt deleted file mode 100644 index 039a9d91b6e..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/meta_CNA.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: DISCRETE -stable_id: gistic -show_profile_in_analysis_tab: true -profile_description: Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification. -profile_name: Putative copy-number alterations from GISTIC -data_filename: data_CNA.txt diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/meta_cancer_type.txt b/core/src/test/scripts/test_data/study_portal_mismatch/meta_cancer_type.txt deleted file mode 100644 index d578a428970..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/meta_cancer_type.txt +++ /dev/null @@ -1,3 +0,0 @@ -genetic_alteration_type: CANCER_TYPE -datatype: CANCER_TYPE -data_filename: cancer_type.txt diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/meta_mutations_extended.txt b/core/src/test/scripts/test_data/study_portal_mismatch/meta_mutations_extended.txt deleted file mode 100644 index b312d2c50e5..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/meta_mutations_extended.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: MUTATION_EXTENDED -datatype: MAF -stable_id: mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations -data_filename: brca_tcga_pub.maf diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/meta_samples.txt b/core/src/test/scripts/test_data/study_portal_mismatch/meta_samples.txt deleted file mode 100644 index 7f19d43c7f2..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/meta_samples.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -data_filename: data_samples.txt diff --git a/core/src/test/scripts/test_data/study_portal_mismatch/meta_study.txt b/core/src/test/scripts/test_data/study_portal_mismatch/meta_study.txt deleted file mode 100644 index 0eb440c781e..00000000000 --- a/core/src/test/scripts/test_data/study_portal_mismatch/meta_study.txt +++ /dev/null @@ -1,8 +0,0 @@ -type_of_cancer: brca -cancer_study_identifier: brca_tcga_pub -name: Breast Invasive Carcinoma (TCGA, Nature 2012) -description: The Cancer Genome Atlas (TCGA) Breast Invasive Carcinoma project. 825 cases.
    Nature 2012. Raw data via the TCGA Data Portal. -citation: TCGA, Nature 2012 -pmid: 23000897 -groups: PUBLIC;GDAC;SU2C-PI3K -add_global_case_list: true diff --git a/core/src/test/scripts/test_data/study_quotes/brca_tcga_pub.maf b/core/src/test/scripts/test_data/study_quotes/brca_tcga_pub.maf deleted file mode 100644 index 66315271f8f..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/brca_tcga_pub.maf +++ /dev/null @@ -1,15 +0,0 @@ -#version 2.4 -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer MA:FImpact MA:FIS Amino_Acid_Change MA:link.MSA MA:link.PDB MA:link.var Tumor_Sample_UUID Matched_Norm_Sample_UUID HGVSc HGVSp HGVSp_Short Transcript_ID Exon_Number t_depth t_ref_count t_alt_count n_depth n_ref_count n_alt_count all_effects Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation ALLELE_NUM DISTANCE SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC RefSeq SIFT PolyPhen EXON INTRON DOMAINS GMAF AFR_MAF AMR_MAF ASN_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE IMPACT PICK VARIANT_CLASS TSL HGVS_OFFSET PHENO chromosome_name_wu start_wu stop_wu reference_wu variant_wu type_wu gene_name_wu transcript_name_wu transcript_species_wu transcript_source_wu transcript_version_wu strand_wu transcript_status_wu trv_type_wu c_position_wu amino_acid_change_wu ucsc_cons_wu domain_wu all_domains_wu deletion_substructures_wu transcript_error_wu default_gene_name_wu gene_name_source_wu ensembl_gene_id normal_ref_reads normal_var_reads normal_vaf tumor_ref_reads tumors_var_reads tumor_vaf evs_ea evs_aa evs_all chromosome_name_WU start_WU stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU transcript_error_WU default_gene_name_WU gene_name_source_WU EVS_EA EVS_AA EVS_All -OR11H1 genome.wustl.edu GRCh37 "22" 16449539 16449539 -1 Missense_Mutation SNP A A G TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 A A Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.49 V89A getma.org/?cm=msa&ty=f&p=O11H1_HUMAN&rb=1&re=154&var=V89A NA getma.org/?cm=var&var=hg19,22,16449539,A,G&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.266T>C p.Val89Ala p.V89A ENST00000252835 1/1 0 0 OR11H1,missense_variant,p.Val89Ala,ENST00000252835,NM_001005239.1; G ENSG00000130538 ENST00000252835 Transcript missense_variant 267/982 266/981 89/326 V/A gTc/gCc rs199856986,COSM1484040 1 OR11H1 HGNC 15404 protein_coding YES CCDS33594.1 ENSP00000252835 O11H1_HUMAN UPI000004B1CF NM_001005239.1 deleterious(0.02) possibly_damaging(0.589) 1/1 Transmembrane_helices:TMhelix,PROSITE_profiles:PS50262,hmmpanther:PTHR24242:SF201,hmmpanther:PTHR24242,Gene3D:1.20.1070.10,Superfamily_domains:SSF81321 0,1 MODERATE 1 SNV 0,1 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC ENSG00000130538 65 0 0.00 38 6 13.64 - - - 22 16449539 16449539 A G SNP OR11H1 ENST00000252835 human ensembl 69_37n -1 known missense c.266 p.V89A 0.234 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_Olfact_rcpt,prints_7TM_GPCR_Rhodpsn - no_errors OR11H1 HGNC - - - -TMEM247 genome.wustl.edu GRCh37 2 46707888 "46707888 1 Frame_Shift_Del DEL G G - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.463delG p.Ala155ArgfsTer59 p.A155Rfs*59 ENST00000434431 2/3 0 0 TMEM247,frameshift_variant,p.Ala155ArgfsTer59,ENST00000434431,NM_001145051.2;TMEM247,intron_variant,,ENST00000432241,; - ENSG00000187600 ENST00000434431 Transcript frameshift_variant 462/659 462/659 154/219 E/X gaG/ga COSM1408208,~rs70940616 1 TMEM247 HGNC 42967 protein_coding YES CCDS56117.1 ENSP00000388684 TM247_HUMAN UPI0000366EF8 NM_001145051.2 2/3 Coiled-coils_(Ncoils):Coil,Pfam_domain:PF15444 -:0.0202 -:0.0439 1,0 HIGH 1 deletion 1 1,0 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC ENSG00000187600 20 0 0.00 7 3 30.00 - - - 2 46707888 46707888 G - DEL TMEM247 ENST00000434431 human ensembl 69_37n +1 known frame_shift_del c.462 p.A155fs 0.083 NULL NULL - no_stop_codon:bad_bp_length_for_coding_region TMEM247 HGNC - - - -ABLIM1 genome.wustl.edu GRCh37 10 116247760 "116247760" -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 3.39 H333R getma.org/?cm=msa&ty=f&p=ABLM1_HUMAN&rb=285&re=339&var=H333R getma.org/pdb.php?prot=ABLM1_HUMAN&from=285&to=339&var=H333R getma.org/?cm=var&var=hg19,10,116247760,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.998A>G p.His333Arg p.H333R ENST00000277895 8/23 0 0 ABLIM1,missense_variant,p.His273Arg,ENST00000533213,;ABLIM1,missense_variant,p.His273Arg,ENST00000369252,NM_001003408.1,NM_001003407.1;ABLIM1,missense_variant,p.His17Arg,ENST00000392952,NM_006720.3;ABLIM1,missense_variant,p.His17Arg,ENST00000369266,;ABLIM1,missense_variant,p.His333Arg,ENST00000277895,NM_002313.5;ABLIM1,missense_variant,p.His17Arg,ENST00000369253,;ABLIM1,missense_variant,p.His17Arg,ENST00000428430,;ABLIM1,upstream_gene_variant,,ENST00000440467,;ABLIM1,missense_variant,p.His273Arg,ENST00000392955,;ABLIM1,missense_variant,p.His273Arg,ENST00000369256,; C ENSG00000099204 ENST00000277895 Transcript missense_variant 1096/2657 998/2337 333/778 H/R cAt/cGt COSM1474374,COSM1474373,COSM1474375 1 ABLIM1 HGNC 78 protein_coding YES CCDS7590.1 ENSP00000277895 ABLM1_HUMAN UPI0000418D06 NM_002313.5 deleterious(0) probably_damaging(0.988) 8/23 PROSITE_profiles:PS50023,hmmpanther:PTHR24213:SF18,hmmpanther:PTHR24213,Gene3D:2.10.110.10,SMART_domains:SM00132,Superfamily_domains:SSF57716 1,1,1 MODERATE 1 SNV 1,1,1 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC ENSG00000099204 77 0 0.00 36 13 26.53 - - - 10 116247760 116247760 T C SNP ABLIM1 ENST00000277895 human ensembl 69_37n -1 known missense c.998 p.H333R 1.000 smart_Znf_LIM pfam_Znf_LIM,pfam_Villin_headpiece,superfamily_Villin_headpiece,smart_Znf_LIM,smart_Villin_headpiece,pfscan_Villin_headpiece,pfscan_Znf_LIM - no_errors ABLIM1 HGNC - - - -ADAMTS20 genome.wustl.edu GRCh37 12 43944926 43944926 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.85 Y80C getma.org/?cm=msa&ty=f&p=ATS20_HUMAN&rb=40&re=186&var=Y80C NA getma.org/?cm=var&var=hg19,12,43944926,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.Tyr80Cys p.Y80C ENST00000389420 2/39 0 0 ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000389420,NM_025003.3;ADAMTS20,missense_variant,p.Tyr80Cys,ENST00000553158,; C ENSG00000173157 ENST00000389420 Transcript missense_variant 239/6076 239/5733 80/1910 Y/C tAt/tGt COSM1476552,COSM1476551 1 ADAMTS20 HGNC 17178 protein_coding YES CCDS31778.2 ENSP00000374071 ATS20_HUMAN UPI00004565F4 NM_025003.3 deleterious(0) probably_damaging(1) 2/39 hmmpanther:PTHR13723,hmmpanther:PTHR13723:SF165,Pfam_domain:PF01562 1,1 MODERATE 1 SNV 1,1 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC ENSG00000173157 50 0 0.00 19 17 45.95 - - - 12 43944926 43944926 T C SNP ADAMTS20 ENST00000389420 human ensembl 69_37n -1 known missense c.239 p.Y80C 1.000 pfam_Peptidase_M12B_N pfam_Pept_M12B_GON-ADAMTSs,pfam_Thrombospondin_1_rpt,pfam_Peptidase_M12B_N,pfam_ADAM_spacer1,pfam_Peptidase_M12B,superfamily_Thrombospondin_1_rpt,smart_Thrombospondin_1_rpt,prints_Peptidase_M12B_ADAM-TS,pfscan_Pept_M12B_GON-ADAMTSs,pfscan_Thrombospondin_1_rpt,pfscan_Peptidase_M12B - no_errors ADAMTS20 HGNC - - - -CADM2 genome.wustl.edu GRCh37 3 85932472 85932472 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 p.R81R ENST00000407528 3/10 0 0 CADM2,synonymous_variant,p.=,ENST00000383699,NM_001167675.1,NM_001256504.1,NM_001256505.1;CADM2,synonymous_variant,,ENST00000407528,NM_001167674.1;CADM2,synonymous_variant,p.=,ENST00000405615,NM_153184.3; T ENSG00000175161 ENST00000407528 Transcript synonymous_variant 305/1422 243/1308 81/435 R cgC/cgT COSM1178952,COSM1178953 1 CADM2 HGNC 29849 protein_coding CCDS54614.1 ENSP00000384575 CADM2_HUMAN G3XHN8_HUMAN UPI000006DE82 NM_001167674.1 3/10 PROSITE_profiles:PS50835,hmmpanther:PTHR23277,hmmpanther:PTHR23277:SF56,Pfam_domain:PF07686,Gene3D:2.60.40.10,SMART_domains:SM00408,SMART_domains:SM00409,Superfamily_domains:SSF48726 1,1 LOW SNV 1,1 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC ENSG00000175161 57 0 0.00 22 23 51.11 - - - 3 85932472 85932472 C T SNP CADM2 ENST00000405615 human ensembl 69_37n +1 known silent c.249 p.R83 0.920 pfam_Ig_I-set,pfam_Immunoglobulin,pfam_Ig_V-set,smart_Ig_sub,smart_Ig_sub2,pfscan_Ig-like pfam_Ig_I-set,pfam_Immunoglobulin,pfam_CD80_C2-set,pfam_Ig_V-set,pfam_Ig_C1-set,smart_Ig_sub,smart_Ig_sub2,smart_Neurexin-like,pfscan_Ig-like - no_errors CADM2 HGNC - - - -DTNB genome.wustl.edu GRCh37" 2 25678299 25678299 -1 Missense_Mutation SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C "Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.125 V382M getma.org/?cm=msa&ty=f&p=DTNB_HUMAN&rb=283&re=473&var=V382M NA getma.org/?cm=var&var=hg19,2,25678299,C,T&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1144C>A p.Val382Met p.V382M ENST00000406818 11/21 0 0 DTNB,missense_variant,p.Val382Met,ENST00000406818,NM_001256303.1,NM_021907.4;DTNB,missense_variant,p.Val382Met,ENST00000407661,NM_183360.2,NM_001256304.1;DTNB,missense_variant,p.Val382Met,ENST00000404103,NM_033147.3;DTNB,missense_variant,p.Val382Met,ENST00000288642,;DTNB,missense_variant,p.Val325Met,ENST00000496972,NM_001256308.1;DTNB,missense_variant,p.Val178Met,ENST00000545439,;DTNB,intron_variant,,ENST00000407038,NM_033148.3;DTNB,intron_variant,,ENST00000407186,;DTNB,intron_variant,,ENST00000405222,NM_183361.2;DTNB,intron_variant,,ENST00000489756,;DTNB,intron_variant,,ENST00000481841,;DTNB,intron_variant,,ENST00000486555,;DTNB,3_prime_UTR_variant,,ENST00000398951,;DTNB,non_coding_transcript_exon_variant,,ENST00000485845,;DTNB,non_coding_transcript_exon_variant,,ENST00000479898,;DTNB,intron_variant,,ENST00000356599,;DTNB,intron_variant,,ENST00000482145,; T ENSG00000138101 ENST00000406818 Transcript missense_variant 1394/2474 1144/1884 382/627 V/M Gtg/Atg COSM3839175,COSM3839176 1 DTNB HGNC 3058 protein_coding YES CCDS46237.1 ENSP00000384084 DTNB_HUMAN Q53TC8_HUMAN,Q53T51_HUMAN,Q53SF9_HUMAN,Q53QV1_HUMAN,F8W9U0_HUMAN,E9PE76_HUMAN,E7ES64_HUMAN UPI0000129949 NM_001256303.1,NM_021907.4 deleterious(0.03) benign(0.379) 11/21 hmmpanther:PTHR11915:SF227,hmmpanther:PTHR11915,PIRSF_domain:PIRSF038204 1,1 MODERATE 1 SNV 1,1 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC ENSG00000138101 35 0 0.00 9 9 50.00 - - - 2 25678299 25678299 C T SNP DTNB ENST00000406818 human ensembl 69_37n -1 known missense c.1144 p.V382M 1.000 pirsf_Distrobrevin pfam_EF-hand_dom_typ1,pfam_EF-hand_dom_typ2,pfam_Znf_ZZ,smart_Znf_ZZ,pirsf_Distrobrevin,pfscan_Znf_ZZ - no_errors DTNB HGNC - - - -KAT2A genome.wustl.edu GRCh37 17 40272381 40272381 -1 Silent SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.471C>T p.= p.H157H ENST00000225916 3/18 0 0 KAT2A,synonymous_variant,p.=,ENST00000225916,NM_021078.2;CTD-2132N18.3,synonymous_variant,p.=,ENST00000592574,;RAB5C,downstream_gene_variant,,ENST00000393860,NM_201434.2;RAB5C,downstream_gene_variant,,ENST00000346213,NM_004583.3;HSPB9,upstream_gene_variant,,ENST00000355067,NM_033194.2;CTD-2132N18.3,missense_variant,p.Thr150Met,ENST00000592248,;KAT2A,synonymous_variant,p.=,ENST00000465682,;CTD-2132N18.3,3_prime_UTR_variant,,ENST00000585562,;KAT2A,upstream_gene_variant,,ENST00000592310,;KAT2A,upstream_gene_variant,,ENST00000588759,; A ENSG00000108773 ENST00000225916 Transcript synonymous_variant 525/3109 471/2514 157/837 H caC/caT rs536716483,COSM1479581 1 KAT2A HGNC 4201 protein_coding YES CCDS11417.1 ENSP00000225916 KAT2A_HUMAN K7ERS6_HUMAN UPI000000D978 NM_021078.2 3/18 hmmpanther:PTHR22880:SF124,hmmpanther:PTHR22880,Pfam_domain:PF06466,PIRSF_domain:PIRSF003048 A:0.0002 A:0 A:0 A:0.001 A:0 A:0 0,1 LOW 1 SNV 0,1 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene ENSG00000267261 40 0 0.00 30 36 54.55 - - - 17 40272381 40272381 G A SNP ENSG00000267261 ENST00000592248 human ensembl 69_37n -1 known missense c.449 p.T150M 0.486 smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho pfam_Small_GTPase,pfam_MIRO-like,pfam_Small_GTPase_ARF/SAR,pfam_Gtr1_RagA,smart_Small_GTPase_Ras,smart_Small_GTPase_Rab_type,smart_Small_GTPase_Rho,prints_Small_GTPase,tigrfam_Small_GTP-bd_dom - no_errors CTD-2132N18.3 Clone_based_vega_gene - - - -MSH3 genome.wustl.edu GRCh37 5 80024722 80024722 1 Frame_Shift_Del DEL T T - TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1508delT p.Leu503TrpfsTer5 p.L503Wfs*5 ENST00000265081 10/24 0 0 MSH3,frameshift_variant,p.Leu503TrpfsTer5,ENST00000265081,NM_002439.4;MSH3,non_coding_transcript_exon_variant,,ENST00000512258,; - ENSG00000113318 ENST00000265081 Transcript frameshift_variant 1586/4092 1506/3414 502/1137 S/X tcT/tc 1 MSH3 HGNC 7326 protein_coding YES CCDS34195.1 ENSP00000265081 MSH3_HUMAN UPI0000DBEE85 NM_002439.4 10/24 Superfamily_domains:SSF53150,Gene3D:3.30.420.110,Pfam_domain:PF05188,hmmpanther:PTHR11361,hmmpanther:PTHR11361:SF34 HIGH 1 deletion 2 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC ENSG00000113318 83 0 0.00 12 2 14.29 - - - 5 80024722 80024722 T - DEL MSH3 ENST00000265081 human ensembl 69_37n +1 known frame_shift_del c.1506 p.L503fs 0.998 pfam_DNA_mismatch_repair_MutS_connt,superfamily_DNA_mismatch_repair_MutS_connt pfam_DNA_mismatch_repair_MutS_C,pfam_DNA_mismatch_repair_MutS_core,pfam_DNA_mismatch_repair_MutS_connt,pfam_DNA_mismatch_repair_MutS-lik_N,pfam_DNA_mismatch_repair_MutS_clamp,superfamily_DNA_mismatch_repair_MutS_core,superfamily_DNA_mismatch_repair_MutS_N,superfamily_DNA_mismatch_repair_MutS_connt,smart_DNA_mismatch_repair_MutS_core,smart_DNA_mismatch_repair_MutS_C - no_errors MSH3 HGNC - - - -MYB genome.wustl.edu GRCh37 6 135507043 135507044 1 Frame_Shift_Ins INS - - A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 - - Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.27dupA p.Tyr10IlefsTer2 p.Y10Ifs*2 ENST00000367814 2/15 0 0 MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000341911,NM_001130173.1,NM_001161658.1,NM_001161656.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000316528,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000442647,NM_001161660.1,NM_001130172.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367814,NM_001161659.1,NM_005375.2;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525369,NM_001161657.1;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000527615,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528774,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534121,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533624,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000534044,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000420123,;MYB,upstream_gene_variant,,ENST00000430686,;MYB,non_coding_transcript_exon_variant,,ENST00000531845,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000367812,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533837,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000438901,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525477,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000463282,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000339290,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533808,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525514,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529586,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526889,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526320,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531519,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000533384,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000531737,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000529262,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526565,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528015,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000526187,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525002,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528343,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528140,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000528345,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000525940,;MYB,frameshift_variant,p.Tyr10Ter,ENST00000531634,;MYB,frameshift_variant,p.Tyr10IlefsTer2,ENST00000524588,; A ENSG00000118513 ENST00000367814 Transcript frameshift_variant 212-213/3302 26-27/1923 9/640 I/IX ata/atAa COSM1487247,COSM1487248 1 MYB HGNC 7545 protein_coding CCDS5174.1 ENSP00000356788 MYB_HUMAN Q9UMI7_HUMAN,Q708J0_HUMAN,Q708E9_HUMAN,Q708E3_HUMAN UPI000012FAEA NM_001161659.1,NM_005375.2 2/15 hmmpanther:PTHR10641,hmmpanther:PTHR10641:SF454 1,1 HIGH insertion 1 1,1 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC ENSG00000118513 50 0 0.00 36 4 10.00 - - - 6 135507043 135507044 - A INS MYB ENST00000341911 human ensembl 69_37n +1 known frame_shift_ins c.26_27 p.Y10fs 1.000:0.997 NULL pfam_C-myb_C,pfam_SANT/Myb,pfam_Tscrpt_reg_Wos2-domain,superfamily_Homeodomain-like,smart_SANT/Myb,pfscan_Myb-like_dom - no_errors MYB HGNC - - - -NPIPB15 genome.wustl.edu GRCh37 16 74425902 74425902 1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx neutral 0.0 I358T getma.org/?cm=msa&ty=f&p=NPPL2_HUMAN&rb=283&re=382&var=I358T NA getma.org/?cm=var&var=hg19,16,74425902,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.1256T>C p.Ile419Thr p.I419T ENST00000429990 7/7 0 0 NPIPB15,missense_variant,p.Ile419Thr,ENST00000429990,; C ENSG00000196436 ENST00000429990 Transcript missense_variant 1352/1428 1256/1332 419/443 I/T aTa/aCa rs141751158,COSM1479088,COSM1479089 1 NPIPB15 HGNC 34409 protein_coding YES ENSP00000411140 NPB15_HUMAN UPI000198C783 tolerated_low_confidence(0.06) benign(0.341) 7/7 hmmpanther:PTHR15438 0,1,1 MODERATE 1 SNV 0,1,1 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC ENSG00000196436 20 0 0.00 10 4 28.57 - - - 16 74425902 74425902 T C SNP NPIPL2 ENST00000429990 human ensembl 69_37n +1 known missense c.1256 p.I419T 0.999 NULL pfam_NPIP - no_errors NPIPL2 HGNC - - - -OTOR genome.wustl.edu GRCh37 20 16730581 16730581 1 Missense_Mutation SNP G G A TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 G G Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx medium 2.69 V97M getma.org/?cm=msa&ty=f&p=OTOR_HUMAN&rb=43&re=108&var=V97M getma.org/pdb.php?prot=OTOR_HUMAN&from=43&to=108&var=V97M getma.org/?cm=var&var=hg19,20,16730581,G,A&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.289G>A p.Val97Met p.V97M ENST00000246081 3/4 0 0 OTOR,missense_variant,p.Val97Met,ENST00000246081,NM_020157.3;OTOR,non_coding_transcript_exon_variant,,ENST00000486129,;OTOR,intron_variant,,ENST00000490148,; A ENSG00000125879 ENST00000246081 Transcript missense_variant 333/1477 289/387 97/128 V/M Gtg/Atg COSM1410526 1 OTOR HGNC 8517 protein_coding YES CCDS13124.1 ENSP00000246081 OTOR_HUMAN UPI0000047809 NM_020157.3 deleterious(0) benign(0.344) 3/4 hmmpanther:PTHR23158,Gene3D:2.30.30.40,Pfam_domain:PF07653,SMART_domains:SM00326,Superfamily_domains:SSF50044 1 MODERATE 1 SNV 1 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC ENSG00000125879 57 0 0.00 36 9 20.00 - - - 20 16730581 16730581 G A SNP OTOR ENST00000246081 human ensembl 69_37n +1 known missense c.289 p.V97M 0.963 pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain pfam_SH3_2,superfamily_SH3_domain,smart_SH3_domain - no_errors OTOR HGNC - - - -P2RY10 genome.wustl.edu GRCh37 X 78216689 78216689 1 Silent SNP C C T TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 C C Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx NA db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.672C>T p.= p.S224S ENST00000171757 4/4 0 0 P2RY10,synonymous_variant,p.=,ENST00000171757,NM_014499.2;P2RY10,synonymous_variant,p.=,ENST00000544091,NM_198333.1;P2RY10,downstream_gene_variant,,ENST00000475374,;P2RY10,downstream_gene_variant,,ENST00000461541,; T ENSG00000078589 ENST00000171757 Transcript synonymous_variant 952/1714 672/1020 224/339 S tcC/tcT COSM1491292 1 P2RY10 HGNC 19906 protein_coding YES CCDS14442.1 ENSP00000171757 P2Y10_HUMAN UPI0000050471 NM_014499.2 4/4 PROSITE_profiles:PS50262,hmmpanther:PTHR24232:SF6,hmmpanther:PTHR24232,Gene3D:1.20.1070.10,Pfam_domain:PF00001,Superfamily_domains:SSF81321 1 LOW 1 SNV 1 X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC ENSG00000078589 65 0 0.00 46 10 17.86 - - - X 78216689 78216689 C T SNP P2RY10 ENST00000171757 human ensembl 69_37n +1 known silent c.672 p.S224 0.092 pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam pfam_7TM_GPCR_Rhodpsn,pfscan_GPCR_Rhodpsn_supfam,prints_7TM_GPCR_Rhodpsn,prints_P2_purnocptor - no_errors P2RY10 HGNC - - - -PIEZO1 genome.wustl.edu GRCh37 16 88790292 88790292 -1 Missense_Mutation SNP T T C TCGA-A1-A0SB-01 TCGA-A1-A0SB-10 T T Unknown Untested Somatic Phase_IV WXS none 1 dbGAP Illumina GAIIx low 1.18 Q1441R getma.org/?cm=msa&ty=f&p=PIEZ1_HUMAN&rb=58&re=1627&var=Q1441R NA getma.org/?cm=var&var=hg19,16,88790292,T,C&fts=all db9d40fb-bfce-4c3b-a6c2-41c5c88982f1 a3254f8e-3bbd-42fc-abea-a5f25b7648b3 c.4322A>G p.Gln1441Arg p.Q1441R ENST00000301015 31/51 0 0 PIEZO1,missense_variant,p.Gln1441Arg,ENST00000301015,NM_001142864.2;PIEZO1,missense_variant,p.Gln115Arg,ENST00000474606,;PIEZO1,upstream_gene_variant,,ENST00000327397,;PIEZO1,upstream_gene_variant,,ENST00000466823,;RP5-1142A6.9,downstream_gene_variant,,ENST00000564984,;PIEZO1,non_coding_transcript_exon_variant,,ENST00000566414,;PIEZO1,upstream_gene_variant,,ENST00000419505,;PIEZO1,upstream_gene_variant,,ENST00000497793,;PIEZO1,upstream_gene_variant,,ENST00000495568,;PIEZO1,downstream_gene_variant,,ENST00000475586,;PIEZO1,downstream_gene_variant,,ENST00000491917,; C ENSG00000103335 ENST00000301015 Transcript missense_variant 4569/8072 4322/7566 1441/2521 Q/R cAg/cGg COSM1479166 1 PIEZO1 HGNC 28993 protein_coding YES CCDS54058.1 ENSP00000301015 PIEZ1_HUMAN UPI0001B300F3 NM_001142864.2 tolerated(0.25) possibly_damaging(0.78) 31/51 hmmpanther:PTHR13167,hmmpanther:PTHR13167:SF40 1 MODERATE 1 SNV 1 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC ENSG00000103335 37 0 0.00 20 8 28.57 - - - 16 88790292 88790292 T C SNP PIEZO1 ENST00000301015 human ensembl 69_37n -1 novel missense c.4322 p.Q1441R 1.000 NULL pfam_DUF3595 - no_errors PIEZO1 HGNC - - - diff --git a/core/src/test/scripts/test_data/study_quotes/case_lists/cases_cna.txt b/core/src/test/scripts/test_data/study_quotes/case_lists/cases_cna.txt deleted file mode 100644 index 89017f557c2..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/case_lists/cases_cna.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: study_es_0 -stable_id: study_es_0_cna -case_list_name: Samples profiled for mutations -case_list_description: This is this case list that contains all samples that are profiled for mutations. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_quotes/case_lists/cases_cnaseq.txt b/core/src/test/scripts/test_data/study_quotes/case_lists/cases_cnaseq.txt deleted file mode 100644 index 7e04801124f..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/case_lists/cases_cnaseq.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: study_es_0 -stable_id: study_es_0_cnaseq -case_list_name: Samples profiled for mutations and CNA -case_list_description: This is this case list that contains all samples that are profiled for mutations and CNA. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-BH-A0HL-01 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_quotes/case_lists/cases_custom.txt b/core/src/test/scripts/test_data/study_quotes/case_lists/cases_custom.txt deleted file mode 100644 index ccd642963b9..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/case_lists/cases_custom.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: study_es_0 -stable_id: study_es_0_custom -case_list_name: this is an optional custom case list -case_list_description: this is an optional custom case list -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 "TCGA-A1-A0SE-01" "TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 diff --git a/core/src/test/scripts/test_data/study_quotes/case_lists/cases_sequenced.txt b/core/src/test/scripts/test_data/study_quotes/case_lists/cases_sequenced.txt deleted file mode 100644 index 2eb5bf57b79..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/case_lists/cases_sequenced.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: study_es_0 -stable_id: study_es_0_sequenced -case_list_name: Samples profiled for mutations -case_list_description: This is this case list that contains all samples that are profiled for mutations. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SK-01 TCGA-A2-A04P-01 TCGA-A2-A0CM-01 TCGA-B6-A0WX-01 TCGA-BH-A0E0-01 TCGA-BH-A0HL-01 TCGA-BH-A18K-01 TCGA-BH-A18V-01 TCGA-BH-A1F0-01 TCGA-GI-A2C8-01 diff --git a/core/src/test/scripts/test_data/study_quotes/data_CNA.txt b/core/src/test/scripts/test_data/study_quotes/data_CNA.txt deleted file mode 100644 index e584d4d13b7..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/data_CNA.txt +++ /dev/null @@ -1,8 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TEST-A23C-01 TEST-A23E-01 TEST-A23H-01 TEST-A2B8-01 TEST-A2FB-01 TEST-A2FF-01 TEST-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 -ACAP3 116983 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -AGRN 375790 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ATAD3A 55210 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ATAD3B 83858 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ATAD3C" 219293 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -"AURKAIP1 54998 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 0 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 -ERCC5 2073 0 -1 0 0 0 -1 0 0 0 -1 -1 -1 0 0 0 0 0 -1 "0" 2 0 0 0 1 0 0 0 0 -1 -1 0 0 -1 0 1 0 0 0 -1 0 -1 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 1 -1 -1 -1 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 -1 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0 0 0 0 -1 0 2 -1 1 0 0 -1 -1 0 0 1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 -1 1 0 -1 -1 0 -1 -1 0 0 0 -1 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 -1 -1 0 1 0 -1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 -1 0 0 0 0 1 -1 -1 -1 0 0 0 0 0 -1 1 0 -1 -1 -1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 -1 0 -1 0 -1 0 0 0 -1 -1 -1 0 0 0 1 0 0 0 -1 -1 0 -1 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 -1 -1 -1 2 0 0 -1 1 0 0 0 0 0 0 0 2 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 -1 0 0 0 -1 -1 -1 0 0 -1 1 -1 0 0 0 0 2 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 0 0 -1 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 -1 0 -1 0 0 0 0 0 0 1 -1 0 -1 0 -1 -1 -1 -1 0 0 -1 -1 0 1 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 -1 -1 -1 -1 0 0 -1 -2 -1 -1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 0 0 1 0 0 -1 0 0 -1 1 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 -1 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 0 -1 -1 -1 1 0 0 2 0 0 0 0 0 1 0 -1 0 0 0 0 -1 0 0 0 1 -1 0 -1 0 1 0 0 -1 0 -1 1 0 0 0 -1 0 0 -1 -1 0 0 0 -1 0 0 -1 0 -1 0 0 0 -1 -1 0 0 0 0 0 0 0 -1 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 -1 diff --git a/core/src/test/scripts/test_data/study_quotes/data_patients.txt b/core/src/test/scripts/test_data/study_quotes/data_patients.txt deleted file mode 100644 index a51b6e91b31..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/data_patients.txt +++ /dev/null @@ -1,830 +0,0 @@ -#Patient Identifier Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient identifier Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING NUMBER STRING NUMBER -#1 1 1 1 1 -PATIENT_ID OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TCGA-A2-A04P 1:DECEASED 17.97 1:Recurred/Progressed [Not Available] -TCGA-A1-A0SK 1:DECEASED 31.77 [Not Available] -TCGA-A2-A0CM 1:DECEASED 24.77 1:Recurred/Progressed [Not Available] -TCGA-AR-A1AR 1:DECEASED 17.18 [Not Available] [Not Available] -TCGA-B6-A0WX 1:DECEASED 21.45 1:Recurred/Progressed [Not Available] -TCGA-BH-A1F0 1:DECEASED 25.79 1:Recurred/Progressed [Not Available] -TCGA-B6-A0I6 1:DECEASED 32.56 1:Recurred/Progressed [Not Available] -TCGA-BH-A18V 1:DECEASED 51.09 [Not Available] [Not Available] -TCGA-BH-A18Q 1:DECEASED 55.59 [Not Available] [Not Available] -TCGA-BH-A18K 1:DECEASED 90.74 1:Recurred/Progressed [Not Available] -TCGA-BH-A0HL 0:LIVING 2.37 0:DiseaseFree 2.37 -TCGA-BH-A0E0 0:LIVING 4.37 0:DiseaseFree 4.37 -TCGA-BH-A0RX 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-A7-A13D 0:LIVING "8.77" 0:DiseaseFree 8.77 -TCGA-BH-A0E6 0:LIVING 9.59 0:DiseaseFree 9.59 -TCGA-AO-A0J4 0:LIVING 9.66 0:DiseaseFree 9.66 -TCGA-A7-A0CE 0:LIVING 8.31 0:DiseaseFree 8.31 -TCGA-A7-A13E 0:LIVING 9.43 0:DiseaseFree 9.43 -TCGA-A7-A0DA 0:LIVING "12.25 0:DiseaseFree 12.25" -TCGA-D8-A142 0:LIVING 2 0:DiseaseFree 2 -TCGA-D8-A143 0:LIVING 5.65 0:DiseaseFree 5.65 -TCGA-AQ-A04J 0:LIVING 5.22 0:DiseaseFree 5.22 -TCGA-BH-A0HN 0:LIVING 16.95 0:DiseaseFree 16.95 -TCGA-A2-A0T0 0:LIVING 11.07 0:DiseaseFree 11.07 -TCGA-A2-A0YE 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-A2-A0YJ 0:LIVING 10.71 0:DiseaseFree 10.71 -TCGA-A2-A0D0 0:LIVING 21.12 0:DiseaseFree 21.12 -TCGA-A2-A04U 0:LIVING 22.01 0:DiseaseFree 22.01 -TCGA-AO-A0J6 0:LIVING 25.46 0:DiseaseFree 25.46 -TCGA-A2-A0YM 0:LIVING 21.72 0:DiseaseFree 21.72 -TCGA-A2-A0D2 0:LIVING 25 0:DiseaseFree 25 -TCGA-BH-A0B3 0:LIVING 39.52 0:DiseaseFree 39.52 -TCGA-A2-A04Q 0:LIVING 41.89 0:DiseaseFree 41.89 -TCGA-A2-A0SX 0:LIVING 42.32 1:Recurred/Progressed [Not Available] -TCGA-AO-A0JL 0:LIVING 43.33 0:DiseaseFree 43.33 -TCGA-AO-A12F 0:LIVING 48.33 0:DiseaseFree 48.33 -TCGA-BH-A0B9 0:LIVING 51.65 0:DiseaseFree 51.65 -TCGA-A2-A04T 0:LIVING 64.06 0:DiseaseFree 64.06 -TCGA-B6-A0RT 0:LIVING 89.39 0:DiseaseFree 89.39 -TCGA-AO-A128 0:LIVING 94.52 0:DiseaseFree 94.52 -TCGA-AO-A129 0:LIVING 96.03 0:DiseaseFree 96.03 -TCGA-AO-A124 0:LIVING 102.47 0:DiseaseFree 102.47 -TCGA-B6-A0RU 0:LIVING 131.12 0:DiseaseFree 131.12 -TCGA-B6-A0IQ 0:LIVING 127.18 0:DiseaseFree 127.18 -TCGA-B6-A0I2 0:LIVING 125.7 0:DiseaseFree 125.7 -TCGA-B6-A0IJ 0:LIVING 176.85 0:DiseaseFree 176.85 -TCGA-B6-A0X1 0:LIVING 186.31 0:DiseaseFree 186.31 -TCGA-B6-A0RE 0:LIVING 211.38 0:DiseaseFree 211.38 -TCGA-A2-A0ST 0:LIVING 53.98 0:DiseaseFree 53.98 -TCGA-AR-A0TP 0:LIVING 78.59 0:DiseaseFree 78.59 -TCGA-A1-A0SO 0:LIVING 27.99 0:DiseaseFree 27.99 -TCGA-A8-A07C 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A07O 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A07R 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-A8-A07U 0:LIVING 9.95 0:DiseaseFree 9.95 -TCGA-A8-A08H 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A08R 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-AN-A04D 0:LIVING 1.71 0:DiseaseFree 1.71 -TCGA-AN-A0AL 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-AN-A0AR 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0AT 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0FJ 0:LIVING 7.92 0:DiseaseFree 7.92 -TCGA-AN-A0FL 0:LIVING 7.56 0:DiseaseFree 7.56 -TCGA-AN-A0FX 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0G0 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-AN-A0XU 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AR-A0TS 0:LIVING 37.39 0:DiseaseFree 37.39 -TCGA-AR-A0TU 0:LIVING 11.83 0:DiseaseFree 11.83 -TCGA-AR-A0U0 0:LIVING 0.26 0:DiseaseFree 0.26 -TCGA-AR-A0U1 0:LIVING 6.08 0:DiseaseFree 6.08 -TCGA-AR-A0U4 0:LIVING 53.45 0:DiseaseFree 53.45 -TCGA-AR-A1AH 0:LIVING 75.5 0:DiseaseFree 75.5 -TCGA-AR-A1AI 0:LIVING 61.8 0:DiseaseFree 61.8 -TCGA-AR-A1AJ 0:LIVING 52.7 0:DiseaseFree 52.7 -TCGA-AR-A1AQ 0:LIVING 43.01 0:DiseaseFree 43.01 -TCGA-AR-A1AY 0:LIVING 20.17 0:DiseaseFree 20.17 -TCGA-BH-A0AV 0:LIVING 38.77 0:DiseaseFree 38.77 -TCGA-BH-A0BG 0:LIVING 24.84 0:DiseaseFree 24.84 -TCGA-BH-A0BL 0:LIVING 43.99 0:DiseaseFree 43.99 -TCGA-BH-A0BW 0:LIVING 11.66 0:DiseaseFree 11.66 -TCGA-BH-A0DL 0:LIVING 48.2 0:DiseaseFree 48.2 -TCGA-BH-A0WA 0:LIVING 12.22 0:DiseaseFree 12.22 -TCGA-BH-A18G 0:LIVING 2 0:DiseaseFree 2 -TCGA-C8-A12K 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12V 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A131 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A134 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A147 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-E2-A14N 0:LIVING 44.35 0:DiseaseFree 44.35 -TCGA-E2-A14R 0:LIVING 27.76 0:DiseaseFree 27.76 -TCGA-E2-A14X 0:LIVING 22.73 0:DiseaseFree 22.73 -TCGA-E2-A14Y 0:LIVING 22.6 0:DiseaseFree 22.6 -TCGA-E2-A150 0:LIVING 19.42 0:DiseaseFree 19.42 -TCGA-E2-A158 0:LIVING 14.78 0:DiseaseFree 14.78 -TCGA-E2-A159 0:LIVING 16.92 0:DiseaseFree 16.92 -TCGA-E2-A1AZ 0:LIVING 64.52 0:DiseaseFree 64.52 -TCGA-E2-A1B5 0:LIVING 25.43 0:DiseaseFree 25.43 -TCGA-A8-A08L 1:DECEASED 9.99 [Not Available] [Not Available] -TCGA-BH-A1EV 1:DECEASED 11.99 1:Recurred/Progressed [Not Available] -TCGA-B6-A0I9 1:DECEASED 12.12 1:Recurred/Progressed [Not Available] -TCGA-A8-A09X 1:DECEASED 14 [Not Available] [Not Available] -TCGA-B6-A0IK 1:DECEASED 18.76 1:Recurred/Progressed [Not Available] -TCGA-BH-A18P 1:DECEASED 30.26 1:Recurred/Progressed [Not Available] -TCGA-A8-A08J 1:DECEASED 37.03 [Not Available] [Not Available] -TCGA-BH-A18R 1:DECEASED 37.49 0:DiseaseFree 36.11 -TCGA-AR-A1AT 1:DECEASED 41.79 [Not Available] [Not Available] -TCGA-B6-A0RS 1:DECEASED 100.6 1:Recurred/Progressed [Not Available] -TCGA-BH-A0DZ 0:LIVING 16.26 0:DiseaseFree 16.26 -TCGA-A2-A0T1 0:LIVING 10.58 0:DiseaseFree 10.58 -TCGA-AO-A0J2 0:LIVING 19.22 0:DiseaseFree 19.22 -TCGA-BH-A0AW 0:LIVING 20.43 0:DiseaseFree 20.43 -TCGA-BH-A0EE 0:LIVING 30.98 0:DiseaseFree 30.98 -TCGA-A2-A0D1 0:LIVING 25.82 0:DiseaseFree 25.82 -TCGA-AO-A03N 0:LIVING 54.04 1:Recurred/Progressed [Not Available] -TCGA-A2-A0CY 0:LIVING 42.32 0:DiseaseFree 42.32 -TCGA-A2-A04X 0:LIVING 44.32 0:DiseaseFree 44.32 -TCGA-A2-A0CX 0:LIVING 42.81 0:DiseaseFree 42.81 -TCGA-A2-A04W 0:LIVING 63.01 0:DiseaseFree 63.01 -TCGA-AO-A12D 0:LIVING 64 0:DiseaseFree 64 -TCGA-A2-A0CL 0:LIVING 60.02 0:DiseaseFree 60.02 -TCGA-AO-A0JE 0:LIVING 64.56 0:DiseaseFree 64.56 -TCGA-A2-A0EQ 0:LIVING 67.45 0:DiseaseFree 67.45 -TCGA-AO-A03L 0:LIVING 80.23 0:DiseaseFree 80.23 -TCGA-B6-A0RH 0:LIVING 188.84 0:DiseaseFree 188.84 -TCGA-A8-A075 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-A8-A076 0:LIVING 53.91 0:DiseaseFree 53.91 -TCGA-A8-A07B 0:LIVING 32.98 0:DiseaseFree 32.98 -TCGA-A8-A07I 0:LIVING 14 0:DiseaseFree 14 -TCGA-A8-A081 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A08B 0:LIVING 23.06 0:DiseaseFree 23.06 -TCGA-A8-A08X 0:LIVING 33.97 0:DiseaseFree 33.97 -TCGA-A8-A092 0:LIVING 17.02 0:DiseaseFree 17.02 -TCGA-A8-A094 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A09G 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A0A7 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-AN-A04C 0:LIVING 1.77 0:DiseaseFree 1.77 -TCGA-AN-A0FV 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AR-A0TX 0:LIVING 0.49 0:DiseaseFree 0.49 -TCGA-BH-A0B7 0:LIVING 56.93 0:DiseaseFree 56.93 -TCGA-BH-A0HY 0:LIVING 28.48 0:DiseaseFree 28.48 -TCGA-C8-A12L 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12P 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Q 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12T 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Z 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A130 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A135 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A137 0:LIVING 0.1 0:DiseaseFree 0.1 -TCGA-C8-A138 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A1HF 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A13Z 0:LIVING 6.9 0:DiseaseFree 6.9 -TCGA-E2-A14P 0:LIVING 16 0:DiseaseFree 16 -TCGA-E2-A14V 0:LIVING 24.57 0:DiseaseFree 24.57 -TCGA-E2-A152 0:LIVING 19.32 1:Recurred/Progressed [Not Available] -TCGA-E2-A1B0 0:LIVING 41.76 0:DiseaseFree 41.76 -TCGA-A2-A0CU 1:DECEASED 5.16 0:DiseaseFree 4.57 -TCGA-AR-A0TR 1:DECEASED 5.26 [Not Available] [Not Available] -TCGA-BH-A18T 1:DECEASED 7.36 1:Recurred/Progressed [Not Available] -TCGA-B6-A0I8 1:DECEASED 24.61 1:Recurred/Progressed [Not Available] -TCGA-B6-A0X4 1:DECEASED 28.22 1:Recurred/Progressed [Not Available] -TCGA-A8-A06U 1:DECEASED 28.98 [Not Available] [Not Available] -TCGA-BH-A0EA 1:DECEASED 32.62 0:DiseaseFree 27.3 -TCGA-BH-A18N 1:DECEASED 37.72 [Not Available] [Not Available] -TCGA-BH-A1EU 1:DECEASED 42.25 0:DiseaseFree [Not Available] -TCGA-B6-A0X7 1:DECEASED 58.84 [Not Available] [Not Available] -TCGA-A2-A04V 1:DECEASED 63.08 1:Recurred/Progressed [Not Available] -TCGA-BH-A18S 1:DECEASED 66 0:DiseaseFree 66 -TCGA-BH-A18M 1:DECEASED 72.51 [Not Available] [Not Available] -TCGA-B6-A0RM 1:DECEASED 77.96 0:DiseaseFree 77.96 -TCGA-BH-A1ET 1:DECEASED 82.79 0:DiseaseFree [Not Available] -TCGA-B6-A0IN 1:DECEASED 84.53 1:Recurred/Progressed [Not Available] -TCGA-BH-A1EO 1:DECEASED 91.92 0:DiseaseFree [Not Available] -TCGA-B6-A0WS 1:DECEASED 97.41 0:DiseaseFree [Not Available] -TCGA-B6-A0RP 1:DECEASED 102.7 [Not Available] [Not Available] -TCGA-B6-A0IH 1:DECEASED 112.29 [Not Available] [Not Available] -TCGA-B6-A0WY 1:DECEASED 113.67 1:Recurred/Progressed [Not Available] -TCGA-BH-A1ES 1:DECEASED 113.74 1:Recurred/Progressed [Not Available] -TCGA-B6-A0X0 1:DECEASED 129.61 [Not Available] [Not Available] -TCGA-B6-A0RQ 1:DECEASED 140.38 0:DiseaseFree [Not Available] -TCGA-B6-A0IG 1:DECEASED 146.39 1:Recurred/Progressed [Not Available] -TCGA-BH-A0HO 0:LIVING 2.5 0:DiseaseFree 2.5 -TCGA-BH-A0DS 0:LIVING 2.53 0:DiseaseFree 2.53 -TCGA-BH-A0DQ 0:LIVING 3.22 0:DiseaseFree 3.22 -TCGA-BH-A0HK 0:LIVING 5.85 0:DiseaseFree 5.85 -TCGA-A7-A0CG 0:LIVING 5.45 0:DiseaseFree 5.45 -TCGA-A7-A0CH 0:LIVING 5.29 0:DiseaseFree 5.29 -TCGA-A7-A0DB 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-A7-A0D9 0:LIVING 5.22 0:DiseaseFree 5.22 -TCGA-AO-A0J8 0:LIVING 9.1 0:DiseaseFree 9.1 -TCGA-BH-A0GZ 0:LIVING 10.78 0:DiseaseFree 10.78 -TCGA-AO-A0JA 0:LIVING 11.37 1:Recurred/Progressed [Not Available] -TCGA-AO-A0JF 0:LIVING 11.63 0:DiseaseFree 11.63 -TCGA-A7-A0CD 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-D8-A145 0:LIVING 1.61 0:DiseaseFree 1.61 -TCGA-BH-A0HP 0:LIVING 13.6 0:DiseaseFree 13.6 -TCGA-BH-A0DK 0:LIVING 13.9 0:DiseaseFree 13.9 -TCGA-BH-A0E2 0:LIVING 12.35 0:DiseaseFree 12.35 -TCGA-A2-A0YI 0:LIVING 11.76 0:DiseaseFree 11.76 -TCGA-A2-A0YL 0:LIVING 8.8 0:DiseaseFree 8.8 -TCGA-AO-A0JG 0:LIVING 14.75 0:DiseaseFree 14.75 -TCGA-A2-A0YF 0:LIVING 9.49 0:DiseaseFree 9.49 -TCGA-BH-A0DP 0:LIVING 15.64 0:DiseaseFree 15.64 -TCGA-BH-A0E1 0:LIVING 15.67 0:DiseaseFree 15.67 -TCGA-A2-A0T5 0:LIVING 10.55 0:DiseaseFree 10.55 -TCGA-A2-A0T6 0:LIVING 11.3 0:DiseaseFree 11.3 -TCGA-BH-A0HI 0:LIVING 20.34 0:DiseaseFree 20.34 -TCGA-A2-A0T7 0:LIVING 13.04 0:DiseaseFree 13.04 -TCGA-BH-A0BJ 0:LIVING 21.68 0:DiseaseFree 21.68 -TCGA-BH-A0H7 0:LIVING 23.03 0:DiseaseFree 23.03 -TCGA-BH-A0HF 0:LIVING 23.88 0:DiseaseFree 23.88 -TCGA-BH-A0EB 0:LIVING 24.48 0:DiseaseFree 24.48 -TCGA-BH-A0H6 0:LIVING 24.54 0:DiseaseFree 24.54 -TCGA-A2-A0YD 0:LIVING 18.07 0:DiseaseFree 18.07 -TCGA-BH-A0HB 0:LIVING 26.48 0:DiseaseFree 26.48 -TCGA-BH-A0HX 0:LIVING 27.24 0:DiseaseFree 27.24 -TCGA-AO-A12H 0:LIVING 28.32 0:DiseaseFree 28.32 -TCGA-E2-A10E 0:LIVING 13.73 0:DiseaseFree 13.73 -TCGA-A2-A0D3 0:LIVING 24.18 0:DiseaseFree 24.18 -TCGA-E2-A10F 0:LIVING 11.83 0:DiseaseFree 11.83 -TCGA-AO-A03V 0:LIVING 29.11 0:DiseaseFree 29.11 -TCGA-A2-A0EW 0:LIVING 25.3 0:DiseaseFree 25.3 -TCGA-BH-A0GY 0:LIVING 30.13 0:DiseaseFree 30.13 -TCGA-A2-A0EV 0:LIVING 17.91 0:DiseaseFree 17.91 -TCGA-BH-A0BC 0:LIVING 32 0:DiseaseFree 32 -TCGA-A2-A0YC 0:LIVING 21.12 0:DiseaseFree 21.12 -TCGA-A2-A0EU 0:LIVING 24.08 0:DiseaseFree 24.08 -TCGA-A2-A0ET 0:LIVING 26.51 0:DiseaseFree 26.51 -TCGA-A2-A04Y 0:LIVING 25.07 0:DiseaseFree 25.07 -TCGA-BH-A0HQ 0:LIVING 36.83 0:DiseaseFree 36.83 -TCGA-A2-A0ES 0:LIVING 32.89 0:DiseaseFree 32.89 -TCGA-BH-A0BA 0:LIVING 37.19 0:DiseaseFree 37.19 -TCGA-E2-A10B 0:LIVING 24.57 0:DiseaseFree 24.57 -TCGA-BH-A0B1 0:LIVING 37.72 0:DiseaseFree 37.72 -TCGA-BH-A0DH 0:LIVING 37.98 0:DiseaseFree 37.98 -TCGA-BH-A0B4 0:LIVING 39.13 0:DiseaseFree 39.13 -TCGA-BH-A0H9 0:LIVING 40.97 0:DiseaseFree 40.97 -TCGA-AO-A0J9 0:LIVING 41.23 1:Recurred/Progressed [Not Available] -TCGA-AO-A12G 0:LIVING 41.56 0:DiseaseFree 41.56 -TCGA-A2-A0SY 0:LIVING 37.91 0:DiseaseFree 37.91 -TCGA-BH-A0E7 0:LIVING 44.75 0:DiseaseFree 44.75 -TCGA-AO-A03M 0:LIVING 47.8 0:DiseaseFree 47.8 -TCGA-BH-A0BV 0:LIVING 49.9 0:DiseaseFree 49.9 -TCGA-BH-A0B8 0:LIVING 51.55 0:DiseaseFree 51.55 -TCGA-A2-A0CZ 0:LIVING 43.96 0:DiseaseFree 43.96 -TCGA-A2-A0SU 0:LIVING 44.38 0:DiseaseFree 44.38 -TCGA-AO-A12E 0:LIVING 57.23 0:DiseaseFree 57.23 -TCGA-E2-A106 0:LIVING 51.09 0:DiseaseFree 51.09 -TCGA-A2-A0CV 0:LIVING 61.44 0:DiseaseFree 61.44 -TCGA-AO-A12C 0:LIVING 65.48 0:DiseaseFree 65.48 -TCGA-B6-A0RG 0:LIVING 68.4 0:DiseaseFree 68.4 -TCGA-A2-A0CS 0:LIVING 75.5 0:DiseaseFree 75.5 -TCGA-A2-A0EO 0:LIVING 71.65 0:DiseaseFree 71.65 -TCGA-A2-A0CQ 0:LIVING 78.59 0:DiseaseFree 78.59 -TCGA-A2-A0EN 0:LIVING 82.63 0:DiseaseFree 82.63 -TCGA-AO-A12A 0:LIVING 90.48 0:DiseaseFree 90.48 -TCGA-A2-A0CP 0:LIVING 81.97 0:DiseaseFree 81.97 -TCGA-AO-A126 0:LIVING 93.63 0:DiseaseFree 93.63 -TCGA-AO-A125 0:LIVING 99.15 0:DiseaseFree 99.15 -TCGA-A2-A0EM 0:LIVING 90.58 0:DiseaseFree 90.58 -TCGA-A2-A04N 0:LIVING 103.59 0:DiseaseFree 103.59 -TCGA-AQ-A04L 0:LIVING 109.86 0:DiseaseFree 109.86 -TCGA-B6-A0IO 0:LIVING 110.06 0:DiseaseFree 110.06 -TCGA-B6-A0IP 0:LIVING 110.85 0:DiseaseFree 110.85 -TCGA-B6-A0WZ 0:LIVING 129.48 0:DiseaseFree 129.48 -TCGA-B6-A0I5 0:LIVING 149.45 0:DiseaseFree 149.45 -TCGA-B6-A0RV 0:LIVING 157.3 0:DiseaseFree 157.3 -TCGA-B6-A0RO 0:LIVING 161.9 0:DiseaseFree 161.9 -TCGA-B6-A0RN 0:LIVING 172.84 0:DiseaseFree 172.84 -TCGA-B6-A0WT 0:LIVING 177.28 0:DiseaseFree 177.28 -TCGA-B6-A0IA 0:LIVING 220.71 0:DiseaseFree 220.71 -TCGA-B6-A0RI 0:LIVING 223.24 1:Recurred/Progressed [Not Available] -TCGA-A1-A0SE 0:LIVING 43.37 0:DiseaseFree 43.37 -TCGA-A2-A0EX 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-AO-A0JJ 0:LIVING 49.67 0:DiseaseFree 49.67 -TCGA-E2-A105 0:LIVING 38.21 0:DiseaseFree 38.21 -TCGA-A1-A0SD 0:LIVING 14.36 0:DiseaseFree 14.36 -TCGA-A1-A0SH 0:LIVING 47.21 0:DiseaseFree 47.21 -TCGA-A1-A0SJ 0:LIVING 14 0:DiseaseFree 14 -TCGA-A8-A06P 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A06T 0:LIVING 41.03 0:DiseaseFree 41.03 -TCGA-A8-A06Y 0:LIVING 25.99 0:DiseaseFree 25.99 -TCGA-A8-A07E 0:LIVING 19.97 0:DiseaseFree 19.97 -TCGA-A8-A07F 0:LIVING 18.92 0:DiseaseFree 18.92 -TCGA-A8-A07G 0:LIVING 18.92 0:DiseaseFree 18.92 -TCGA-A8-A07J 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A07P 0:LIVING 10.97 0:DiseaseFree 10.97 -TCGA-A8-A083 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A086 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A08A 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-A8-A08C 0:LIVING 19.94 0:DiseaseFree 19.94 -TCGA-A8-A08O 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A08T 0:LIVING 92.97 0:DiseaseFree 92.97 -TCGA-A8-A08Z 0:LIVING 39.98 0:DiseaseFree 39.98 -TCGA-A8-A090 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A091 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A093 0:LIVING 17.91 0:DiseaseFree 17.91 -TCGA-A8-A099 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A09A 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A09B 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A09T 0:LIVING 18.99 0:DiseaseFree 18.99 -TCGA-A8-A09V 0:LIVING 15.01 0:DiseaseFree 15.01 -TCGA-A8-A0A1 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A0A2 0:LIVING 18.99 0:DiseaseFree 18.99 -TCGA-A8-A0A4 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A0A6 0:LIVING 21.03 0:DiseaseFree 21.03 -TCGA-A8-A0AD 0:LIVING 38.01 0:DiseaseFree 38.01 -TCGA-AN-A03X 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A046 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A04A 0:LIVING 2.92 0:DiseaseFree 2.92 -TCGA-AN-A0FD 0:LIVING 6.41 0:DiseaseFree 6.41 -TCGA-AN-A0FN 0:LIVING 7.16 0:DiseaseFree 7.16 -TCGA-AN-A0FS 0:LIVING 6.27 0:DiseaseFree 6.27 -TCGA-AN-A0FT 0:LIVING 6.01 0:DiseaseFree 6.01 -TCGA-AN-A0FW 0:LIVING 0.36 0:DiseaseFree 0.36 -TCGA-AN-A0FZ 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XL 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XN 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XO 0:LIVING 12.32 0:DiseaseFree 12.32 -TCGA-AN-A0XP 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0XS 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XT 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XV 0:LIVING 5.32 0:DiseaseFree 5.32 -TCGA-AR-A0TW 0:LIVING 24.28 0:DiseaseFree 24.28 -TCGA-AR-A1AK 0:LIVING 51.19 0:DiseaseFree 51.19 -TCGA-AR-A1AL 0:LIVING 48.79 0:DiseaseFree 48.79 -TCGA-AR-A1AN 0:LIVING 43.66 0:DiseaseFree 43.66 -TCGA-AR-A1AP 0:LIVING 39.92 0:DiseaseFree 39.92 -TCGA-AR-A1AS 0:LIVING 40.8 0:DiseaseFree 40.8 -TCGA-AR-A1AU 0:LIVING 46.29 0:DiseaseFree 46.29 -TCGA-AR-A1AW 0:LIVING 35.22 0:DiseaseFree 35.22 -TCGA-AR-A1AX 0:LIVING 36.24 0:DiseaseFree 36.24 -TCGA-BH-A0AZ 0:LIVING 28.48 0:DiseaseFree 28.48 -TCGA-BH-A0B0 0:LIVING 46.88 0:DiseaseFree 46.88 -TCGA-BH-A0BM 0:LIVING 36.7 0:DiseaseFree 36.7 -TCGA-BH-A0BO 0:LIVING 35.65 0:DiseaseFree 35.65 -TCGA-BH-A0BP 0:LIVING 48.66 0:DiseaseFree 48.66 -TCGA-BH-A0BQ 0:LIVING 27.14 0:DiseaseFree 27.14 -TCGA-BH-A0BR 0:LIVING 53.62 0:DiseaseFree 53.62 -TCGA-BH-A0BS 0:LIVING 53.88 0:DiseaseFree 53.88 -TCGA-BH-A0BT 0:LIVING 45.53 0:DiseaseFree 45.53 -TCGA-BH-A0C1 0:LIVING 43.96 0:DiseaseFree 43.96 -TCGA-BH-A0DE 0:LIVING 31.14 0:DiseaseFree 31.14 -TCGA-BH-A0DG 0:LIVING 23.42 0:DiseaseFree 23.42 -TCGA-BH-A0DI 0:LIVING 22.11 0:DiseaseFree 22.11 -TCGA-BH-A0DO 0:LIVING 17.25 0:DiseaseFree 17.25 -TCGA-BH-A0DT 0:LIVING 38.44 0:DiseaseFree 38.44 -TCGA-BH-A0DX 0:LIVING 47.37 0:DiseaseFree 47.37 -TCGA-BH-A0E9 0:LIVING 46.16 0:DiseaseFree 46.16 -TCGA-BH-A0EI 0:LIVING 24.41 0:DiseaseFree 24.41 -TCGA-BH-A0H3 0:LIVING 37.75 0:DiseaseFree 37.75 -TCGA-BH-A0H5 0:LIVING 35.48 0:DiseaseFree 35.48 -TCGA-BH-A0HA 0:LIVING 28.12 0:DiseaseFree 28.12 -TCGA-BH-A0W4 0:LIVING 5.75 0:DiseaseFree 5.75 -TCGA-BH-A0W5 0:LIVING 17.84 0:DiseaseFree 17.84 -TCGA-BH-A0W7 0:LIVING 18.33 0:DiseaseFree 18.33 -TCGA-BH-A18H 0:LIVING 0 0:DiseaseFree 0 -TCGA-BH-A18I 0:LIVING 7.23 0:DiseaseFree 7.23 -TCGA-C8-A12N 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12O 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Y 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A132 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A133 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HI 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-D8-A141 0:LIVING 3.71 0:DiseaseFree 3.71 -TCGA-E2-A14Q 0:LIVING 32 0:DiseaseFree 32 -TCGA-E2-A14T 0:LIVING 29.24 0:DiseaseFree 29.24 -TCGA-E2-A14Z 0:LIVING 17.02 1:Recurred/Progressed [Not Available] -TCGA-E2-A153 0:LIVING 19.25 0:DiseaseFree 19.25 -TCGA-E2-A154 0:LIVING 10.68 0:DiseaseFree 10.68 -TCGA-E2-A156 0:LIVING 15.8 0:DiseaseFree 15.8 -TCGA-E2-A15C 0:LIVING 16.3 0:DiseaseFree 16.3 -TCGA-E2-A15D 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15E 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-E2-A15F 0:LIVING 15.38 0:DiseaseFree 15.38 -TCGA-E2-A15G 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15H 0:LIVING 1.38 0:DiseaseFree 1.38 -TCGA-E2-A15I 0:LIVING 13.5 0:DiseaseFree 13.5 -TCGA-E2-A15J 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-E2-A15O 0:LIVING 12.98 0:DiseaseFree 12.98 -TCGA-E2-A15P 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15R 0:LIVING 10.84 0:DiseaseFree 10.84 -TCGA-E2-A1B1 0:LIVING 44.71 0:DiseaseFree 44.71 -TCGA-E2-A1B4 0:LIVING 29.93 0:DiseaseFree 29.93 -TCGA-E2-A1B6 0:LIVING 11.1 0:DiseaseFree 11.1 -TCGA-E2-A1BC 0:LIVING 9.76 0:DiseaseFree 9.76 -TCGA-E2-A1BD 0:LIVING 10.41 0:DiseaseFree 10.41 -TCGA-A2-A0SV 1:DECEASED 27.1 1:Recurred/Progressed [Not Available] -TCGA-AO-A03O 1:DECEASED 81.57 0:DiseaseFree 32.62 -TCGA-A2-A0SW 1:DECEASED 44.81 1:Recurred/Progressed [Not Available] -TCGA-B6-A0WW 1:DECEASED 18.3 1:Recurred/Progressed [Not Available] -TCGA-BH-A18J 1:DECEASED 20.07 1:Recurred/Progressed [Not Available] -TCGA-BH-A18L 1:DECEASED 26.64 [Not Available] [Not Available] -TCGA-A8-A06X 1:DECEASED 30.98 [Not Available] [Not Available] -TCGA-B6-A0IC 1:DECEASED 50.66 [Not Available] [Not Available] -TCGA-BH-A18U 1:DECEASED 51.35 0:DiseaseFree 43.27 -TCGA-BH-A1EW 1:DECEASED 55.65 1:Recurred/Progressed [Not Available] -TCGA-AR-A0TY 1:DECEASED 55.82 [Not Available] [Not Available] -TCGA-B6-A0X5 1:DECEASED 68.89 1:Recurred/Progressed [Not Available] -TCGA-B6-A0WV 1:DECEASED 79.57 0:DiseaseFree 79.57 -TCGA-B6-A0RL 1:DECEASED 81.11 0:DiseaseFree 81.11 -TCGA-AR-A0U2 1:DECEASED 83.81 1:Recurred/Progressed [Not Available] -TCGA-B6-A0IB 1:DECEASED 129.48 1:Recurred/Progressed [Not Available] -TCGA-AO-A0J7 0:LIVING 8.54 0:DiseaseFree 8.54 -TCGA-AO-A0J3 0:LIVING 9.92 0:DiseaseFree 9.92 -TCGA-D8-A13Y 0:LIVING 8.67 0:DiseaseFree 8.67 -TCGA-A7-A13F 0:LIVING 6.44 0:DiseaseFree 6.44 -TCGA-BH-A0HU 0:LIVING 12.88 0:DiseaseFree 12.88 -TCGA-D8-A140 0:LIVING 0.89 0:DiseaseFree 0.89 -TCGA-A7-A0CJ 0:LIVING 6.18 0:DiseaseFree 6.18 -TCGA-AQ-A04H 0:LIVING 14.42 0:DiseaseFree 14.42 -TCGA-BH-A0H0 0:LIVING 15.15 0:DiseaseFree 15.15 -TCGA-BH-A0BD 0:LIVING 18.2 0:DiseaseFree 18.2 -TCGA-A2-A0T3 0:LIVING 14.98 0:DiseaseFree 14.98 -TCGA-A2-A0T4 0:LIVING 12.98 0:DiseaseFree 12.98 -TCGA-A2-A0YH 0:LIVING 12.45 0:DiseaseFree 12.45 -TCGA-A2-A0YG 0:LIVING 13.27 0:DiseaseFree 13.27 -TCGA-A2-A0EY 0:LIVING 15.93 0:DiseaseFree 15.93 -TCGA-A2-A0D4 0:LIVING 16.3 0:DiseaseFree 16.3 -TCGA-BH-A0AY 0:LIVING 25.53 0:DiseaseFree 25.53 -TCGA-E2-A107 0:LIVING 25.07 1:Recurred/Progressed [Not Available] -TCGA-AO-A0JI 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-E2-A10C 0:LIVING 28.02 0:DiseaseFree 28.02 -TCGA-E2-A10A 0:LIVING 11.56 1:Recurred/Progressed [Not Available] -TCGA-BH-A0C0 0:LIVING 41.72 0:DiseaseFree 41.72 -TCGA-E2-A109 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-AO-A0JC 0:LIVING 50.82 0:DiseaseFree 50.82 -"TCGA-BH-A0HW" 0:LIVING 51.25 0:DiseaseFree 51.25 -TCGA-AO-A0JD 0:LIVING 59.56 0:DiseaseFree 59.56 -TCGA-AO-A0JM 0:LIVING 59.99 0:DiseaseFree 59.99 -TCGA-A2-A0CW 0:LIVING 57.49 0:DiseaseFree 57.49 -TCGA-A2-A0ER 0:LIVING 62.49 0:DiseaseFree 62.49 -TCGA-A2-A0CT 0:LIVING 62.98 0:DiseaseFree 62.98 -TCGA-AO-A12B 0:LIVING 77.5 0:DiseaseFree 77.5 -TCGA-A2-A04R 0:LIVING 77.67 0:DiseaseFree 77.67 -TCGA-B6-A0IM 0:LIVING 126.03 0:DiseaseFree 126.03 -TCGA-AO-A03P 0:LIVING 84.63 1:Recurred/Progressed [Not Available] -TCGA-A1-A0SM 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-A8-A06N 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A06O 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A06Q 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A06R 0:LIVING 17.94 0:DiseaseFree 17.94 -TCGA-A8-A06Z 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A079 0:LIVING 9 0:DiseaseFree 9 -TCGA-A8-A07L 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-A8-A07S 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-A8-A07W 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A07Z 0:LIVING 28.02 0:DiseaseFree 28.02 -TCGA-A8-A082 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-A8-A084 0:LIVING 15.05 0:DiseaseFree 15.05 -TCGA-A8-A085 0:LIVING 36.93 0:DiseaseFree 36.93 -TCGA-A8-A08F 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-A8-A08G 0:LIVING 19.91 0:DiseaseFree 19.91 -TCGA-A8-A08I 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A08P 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A095 0:LIVING 41.92 0:DiseaseFree 41.92 -TCGA-A8-A096 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A097 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A09C 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A09D 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A09I 0:LIVING 33.05 0:DiseaseFree 33.05 -TCGA-A8-A09M 0:LIVING 15.01 0:DiseaseFree 15.01 -TCGA-A8-A09N 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A09Q 0:LIVING 25 0:DiseaseFree 25 -TCGA-A8-A09R 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-A8-A09W 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-A8-A09Z 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A0A9 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A0AB 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-AN-A03Y 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A041 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-AN-A049 0:LIVING 0.62 0:DiseaseFree 0.62 -TCGA-AN-A0AJ 0:LIVING 7.98 0:DiseaseFree 7.98 -TCGA-AN-A0AK 0:LIVING 7.33 0:DiseaseFree 7.33 -TCGA-AN-A0AM 0:LIVING 0.16 0:DiseaseFree 0.16 -TCGA-AN-A0AS 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0FF 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-AN-A0FK 0:LIVING 6.96 0:DiseaseFree 6.96 -TCGA-AN-A0FY 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XR 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XW 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-AR-A0TQ 0:LIVING 49.28 0:DiseaseFree 49.28 -TCGA-AR-A0TT 0:LIVING 55.16 0:DiseaseFree 55.16 -TCGA-AR-A0TV 0:LIVING 29.7 0:DiseaseFree 29.7 -TCGA-AR-A0TZ 0:LIVING 43.14 0:DiseaseFree 43.14 -TCGA-AR-A0U3 0:LIVING 74.35 0:DiseaseFree 74.35 -TCGA-AR-A1AV 0:LIVING 42.55 0:DiseaseFree 42.55 -TCGA-BH-A0AU 0:LIVING 24.51 0:DiseaseFree 24.51 -TCGA-BH-A0B5 0:LIVING 48.33 0:DiseaseFree 48.33 -TCGA-BH-A0BF 0:LIVING 25.66 0:DiseaseFree 25.66 -TCGA-BH-A0BZ 0:LIVING 49.02 0:DiseaseFree 49.02 -TCGA-BH-A0C3 0:LIVING 48.1 0:DiseaseFree 48.1 -TCGA-BH-A0C7 0:LIVING 42.87 0:DiseaseFree 42.87 -TCGA-BH-A0DD 0:LIVING 45.76 0:DiseaseFree 45.76 -TCGA-BH-A0W3 0:LIVING 5.91 0:DiseaseFree 5.91 -TCGA-BH-A18F 0:LIVING 8.8 0:DiseaseFree 8.8 -TCGA-C8-A12M 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12U 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12W 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12X 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HG 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HL 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-C8-A1HM 0:LIVING 0.2 0:DiseaseFree 0.2 -TCGA-C8-A1HN 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-E2-A14O 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-E2-A14S 0:LIVING 27.4 0:DiseaseFree 27.4 -TCGA-E2-A14W 0:LIVING 27.37 0:DiseaseFree 27.37 -TCGA-E2-A155 0:LIVING 18.17 0:DiseaseFree 18.17 -TCGA-E2-A15A 0:LIVING 16.49 0:DiseaseFree 16.49 -TCGA-E2-A15K 0:LIVING 1.12 0:DiseaseFree 1.12 -TCGA-E2-A15L 0:LIVING 10.87 0:DiseaseFree 10.87 -TCGA-E2-A15M 0:LIVING 7.69 0:DiseaseFree 7.69 -TCGA-E2-A15S 0:LIVING 9 0:DiseaseFree 9 -TCGA-E2-A15T 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-AO-A03U 1:DECEASED 59 0:DiseaseFree 56.74 -TCGA-B6-A0IE 1:DECEASED 65.64 1:Recurred/Progressed [Not Available] -TCGA-A2-A0YK 0:LIVING 10.97 0:DiseaseFree 10.97 -TCGA-E2-A108 0:LIVING 4.07 0:DiseaseFree 4.07 -TCGA-AO-A0JB 0:LIVING 37.78 0:DiseaseFree 37.78 -TCGA-AO-A03R 0:LIVING 56.08 0:DiseaseFree 56.08 -TCGA-AO-A03T 0:LIVING 39 0:DiseaseFree 39 -TCGA-AR-A1AO 0:LIVING 43.5 0:DiseaseFree 43.5 -TCGA-A2-A0YT 1:DECEASED 23.75 0:DiseaseFree 21.98 -TCGA-AQ-A0Y5 1:DECEASED 5.29 0:DiseaseFree [Not Available] -TCGA-EW-A1P8 1:DECEASED 7.85 1:Recurred/Progressed [Not Available] -TCGA-E2-A1LK 1:DECEASED 8.74 1:Recurred/Progressed [Not Available] -TCGA-BH-A1EY 1:DECEASED 17.68 1:Recurred/Progressed [Not Available] -TCGA-BH-A1F8 1:DECEASED 24.61 1:Recurred/Progressed [Not Available] -TCGA-BH-A1F2 1:DECEASED 31.51 0:DiseaseFree [Not Available] -TCGA-BH-A1FD 1:DECEASED 33.12 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FH 1:DECEASED 36.89 1:Recurred/Progressed [Not Available] -TCGA-BH-A203 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-BH-A1FM 1:DECEASED 45.6 [Not Available] [Not Available] -TCGA-BH-A1EX 1:DECEASED 49.54 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FL 1:DECEASED 54.96 1:Recurred/Progressed [Not Available] -TCGA-BH-A208 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-GM-A2D9 1:DECEASED 59.53 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FJ 1:DECEASED 63.31 [Not Available] [Not Available] -TCGA-BH-A1EN 1:DECEASED 67.42 0:DiseaseFree [Not Available] -TCGA-BH-A1FN 1:DECEASED 72.01 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FU 1:DECEASED 72.01 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FE 1:DECEASED 74.68 1:Recurred/Progressed [Not Available] -TCGA-BH-A204 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-BH-A1F5 1:DECEASED 89.1 0:DiseaseFree [Not Available] -TCGA-AR-A256 1:DECEASED 93.76 [Not Available] [Not Available] -TCGA-BH-A1F6 1:DECEASED 97.41 [Not Available] [Not Available] -TCGA-BH-A1FC 1:DECEASED 114.03 0:DiseaseFree [Not Available] -TCGA-BH-A1FB 1:DECEASED 120.54 1:Recurred/Progressed [Not Available] -TCGA-BH-A1FG 1:DECEASED 122.81 [Not Available] [Not Available] -TCGA-BH-A209 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-BH-A1FR 1:DECEASED 144.49 1:Recurred/Progressed [Not Available] -TCGA-AO-A1KS 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-A7-A13G 0:LIVING 6.83 0:DiseaseFree 6.83 -TCGA-D8-A1JS 0:LIVING 3.45 0:DiseaseFree 3.45 -TCGA-A7-A0DC 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-D8-A1JT 0:LIVING 4.04 0:DiseaseFree 4.04 -TCGA-A7-A26E 0:LIVING 13.83 0:DiseaseFree 13.83 -TCGA-D8-A1JH 0:LIVING 9.33 0:DiseaseFree 9.33 -TCGA-D8-A1JU 0:LIVING 3.48 0:DiseaseFree 3.48 -TCGA-AO-A1KO 0:LIVING 14.72 0:DiseaseFree 14.72 -TCGA-AO-A1KT 0:LIVING 17.77 0:DiseaseFree 17.77 -TCGA-AO-A0J5 0:LIVING 24.15 1:Recurred/Progressed [Not Available] -TCGA-B6-A1KC 0:LIVING 43.56 0:DiseaseFree 43.56 -TCGA-AO-A1KQ 0:LIVING 49.9 0:DiseaseFree 49.9 -TCGA-B6-A1KI 0:LIVING 48.06 0:DiseaseFree 48.06 -TCGA-AO-A1KP 0:LIVING 82.56 0:DiseaseFree 82.56 -TCGA-B6-A1KF 0:LIVING 101.45 0:DiseaseFree 101.45 -TCGA-B6-A1KN 0:LIVING 109.4 0:DiseaseFree 109.4 -TCGA-D8-A1XO 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-D8-A1XT 0:LIVING 6.34 0:DiseaseFree 6.34 -TCGA-A1-A0SP 0:LIVING 19.15 0:DiseaseFree 19.15 -TCGA-D8-A1J8 0:LIVING 8.41 0:DiseaseFree 8.41 -TCGA-D8-A1JF 0:LIVING 3.15 0:DiseaseFree 3.15 -TCGA-D8-A1JG 0:LIVING 6.14 0:DiseaseFree 6.14 -TCGA-D8-A1XS 0:LIVING 0.59 0:DiseaseFree 0.59 -TCGA-A1-A0SB 0:LIVING 8.51 0:DiseaseFree 8.51 -TCGA-A1-A0SF 0:LIVING 48.06 0:DiseaseFree 48.06 -TCGA-A1-A0SG 0:LIVING 14.23 0:DiseaseFree 14.23 -TCGA-A1-A0SI 0:LIVING 20.83 0:DiseaseFree 20.83 -TCGA-A1-A0SN 0:LIVING 39.29 0:DiseaseFree 39.29 -TCGA-A1-A0SQ 0:LIVING 18.17 0:DiseaseFree 18.17 -TCGA-A2-A1FV 0:LIVING 15.11 0:DiseaseFree 15.11 -TCGA-A2-A1FW 0:LIVING 7.26 0:DiseaseFree 7.26 -TCGA-A2-A1FX 0:LIVING 30.72 0:DiseaseFree 30.72 -TCGA-A2-A1FZ 0:LIVING 13.44 0:DiseaseFree 13.44 -TCGA-A2-A1G0 0:LIVING 12.48 0:DiseaseFree 12.48 -TCGA-A2-A1G1 0:LIVING 12.19 0:DiseaseFree 12.19 -TCGA-A2-A1G4 0:LIVING 12.22 0:DiseaseFree 12.22 -TCGA-A2-A1G6 0:LIVING 4.34 0:DiseaseFree 4.34 -TCGA-A2-A259 0:LIVING 42.22 0:DiseaseFree 42.22 -TCGA-A2-A25A 0:LIVING 97.51 0:DiseaseFree 97.51 -TCGA-A2-A25B 0:LIVING 8.48 0:DiseaseFree 8.48 -TCGA-A2-A25C 0:LIVING 9.36 0:DiseaseFree 9.36 -TCGA-A2-A25D 0:LIVING 7.98 0:DiseaseFree 7.98 -TCGA-A2-A25E 0:LIVING 82.49 0:DiseaseFree 82.49 -TCGA-A2-A25F 0:LIVING 3.71 0:DiseaseFree 3.71 -TCGA-A7-A26F 0:LIVING 8.44 0:DiseaseFree 8.44 -TCGA-A7-A26G 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-A7-A26H 0:LIVING 2.1 0:DiseaseFree 2.1 -TCGA-A7-A26I 0:LIVING 4.01 0:DiseaseFree 4.01 -TCGA-A7-A26J 0:LIVING 2.2 1:Recurred/Progressed [Not Available] -TCGA-A8-A08S 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A09E 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A09K 0:LIVING 29.93 0:DiseaseFree 29.93 -TEST-A23C 0:LIVING 0.95 0:DiseaseFree 0.95 -TEST-A23E 0:LIVING 2.37 0:DiseaseFree 2.37 -TEST-A23H 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-AO-A1KR 0:LIVING 70.31 0:DiseaseFree 70.31 -TCGA-AQ-A1H2 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-AQ-A1H3 0:LIVING 4.53 0:DiseaseFree 4.53 -TCGA-AR-A24H 0:LIVING 109.5 0:DiseaseFree 109.5 -TCGA-AR-A24K 0:LIVING 50.86 0:DiseaseFree 50.86 -TCGA-AR-A24L 0:LIVING 72.97 0:DiseaseFree 72.97 -TCGA-AR-A24M 0:LIVING 65.38 0:DiseaseFree 65.38 -TCGA-AR-A24N 0:LIVING 68.14 0:DiseaseFree 68.14 -TCGA-AR-A24O 0:LIVING 65.61 0:DiseaseFree 65.61 -TCGA-AR-A24P 0:LIVING 0.85 0:DiseaseFree 0.85 -TCGA-AR-A24Q 0:LIVING 65.97 0:DiseaseFree 65.97 -TCGA-AR-A24R 0:LIVING 57.33 0:DiseaseFree 57.33 -TCGA-AR-A24S 0:LIVING 62.03 0:DiseaseFree 62.03 -TCGA-AR-A24T 0:LIVING 53.22 0:DiseaseFree 53.22 -TCGA-AR-A24U 0:LIVING 53.32 0:DiseaseFree 53.32 -TCGA-AR-A24V 0:LIVING 54.14 0:DiseaseFree 54.14 -TCGA-AR-A24X 0:LIVING 48.13 0:DiseaseFree 48.13 -TCGA-AR-A24Z 0:LIVING 51.71 0:DiseaseFree 51.71 -TCGA-AR-A250 0:LIVING 56.08 0:DiseaseFree 56.08 -TCGA-AR-A251 0:LIVING 45.11 0:DiseaseFree 45.11 -TCGA-AR-A252 0:LIVING 40.61 0:DiseaseFree 40.61 -TCGA-AR-A254 0:LIVING 39.82 0:DiseaseFree 39.82 -TCGA-AR-A255 0:LIVING 34.76 0:DiseaseFree 34.76 -TCGA-BH-A0B2 0:LIVING 40.8 0:DiseaseFree 40.8 -TCGA-BH-A0DV 0:LIVING 45.14 0:DiseaseFree 45.14 -TCGA-BH-A201 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-BH-A202 0:LIVING 0.72 0:DiseaseFree 0.72 -TCGA-BH-A28Q [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-C8-A1HE 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HJ 0:LIVING 0.16 0:DiseaseFree 0.16 -TCGA-C8-A1HK 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A1HO 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A26V 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-C8-A26W 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A26X 0:LIVING 0.36 0:DiseaseFree 0.36 -TCGA-C8-A26Y 0:LIVING 0.43 0:DiseaseFree 0.43 -TCGA-C8-A26Z 0:LIVING 0.13 0:DiseaseFree 0.13 -TCGA-C8-A273 0:LIVING 0.2 0:DiseaseFree 0.2 -TCGA-C8-A274 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A275 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A278 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A27A 0:LIVING 12.19 0:DiseaseFree 12.19 -TCGA-C8-A27B 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-D8-A146 0:LIVING 11.3 0:DiseaseFree 11.3 -TCGA-D8-A1J9 0:LIVING 8.15 0:DiseaseFree 8.15 -TCGA-D8-A1JA 0:LIVING 0.59 0:DiseaseFree 0.59 -TCGA-D8-A1JB 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A1JC 0:LIVING 5.85 0:DiseaseFree 5.85 -TCGA-D8-A1JD 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-D8-A1JE 0:LIVING 1.87 0:DiseaseFree 1.87 -TCGA-D8-A1JI 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-D8-A1JJ 0:LIVING 9 0:DiseaseFree 9 -TCGA-D8-A1JK 0:LIVING 3.58 0:DiseaseFree 3.58 -TCGA-D8-A1JL 0:LIVING 8.71 0:DiseaseFree 8.71 -TCGA-D8-A1JM 0:LIVING 7.82 0:DiseaseFree 7.82 -TCGA-D8-A1JN 0:LIVING 7.13 0:DiseaseFree 7.13 -TCGA-D8-A1JP 0:LIVING 5.49 0:DiseaseFree 5.49 -TCGA-D8-A1X5 0:LIVING 5.62 0:DiseaseFree 5.62 -TCGA-D8-A1X6 0:LIVING 7.75 0:DiseaseFree 7.75 -TCGA-D8-A1X7 0:LIVING 2.79 0:DiseaseFree 2.79 -TCGA-D8-A1X8 0:LIVING 8.94 0:DiseaseFree 8.94 -TCGA-D8-A1X9 0:LIVING 12.48 0:DiseaseFree 12.48 -TCGA-D8-A1XA 0:LIVING 9 0:DiseaseFree 9 -TCGA-D8-A1XB 0:LIVING 6.6 0:DiseaseFree 6.6 -TCGA-D8-A1XC 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-D8-A1XD 0:LIVING 5.09 0:DiseaseFree 5.09 -TCGA-D8-A1XF 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-D8-A1XG 0:LIVING 6.44 0:DiseaseFree 6.44 -TCGA-D8-A1XJ 0:LIVING 11.56 0:DiseaseFree 11.56 -TCGA-D8-A1XK 0:LIVING 10.71 0:DiseaseFree 10.71 -TCGA-D8-A1XL 0:LIVING 10.48 0:DiseaseFree 10.48 -TCGA-D8-A1XM 0:LIVING 7.16 0:DiseaseFree 7.16 -TCGA-D8-A1XQ 0:LIVING 5.82 0:DiseaseFree 5.82 -TCGA-D8-A1XR 0:LIVING 5.52 0:DiseaseFree 5.52 -TCGA-D8-A1XU 0:LIVING 4.9 0:DiseaseFree 4.9 -TCGA-D8-A1XV 0:LIVING 4.8 0:DiseaseFree 4.8 -TCGA-D8-A1XW 0:LIVING 3.84 0:DiseaseFree 3.84 -TCGA-D8-A1XY 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-D8-A1XZ 0:LIVING 3.94 0:DiseaseFree 3.94 -TCGA-D8-A1Y0 0:LIVING 5.45 0:DiseaseFree 5.45 -TCGA-D8-A1Y1 0:LIVING 3.78 0:DiseaseFree 3.78 -TCGA-D8-A1Y2 0:LIVING 2.37 0:DiseaseFree 2.37 -TCGA-D8-A1Y3 0:LIVING 4.07 0:DiseaseFree 4.07 -TCGA-D8-A27E 0:LIVING 5.98 0:DiseaseFree 5.98 -TCGA-D8-A27F 0:LIVING 7.46 0:DiseaseFree 7.46 -TCGA-D8-A27G 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-D8-A27H 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-D8-A27I 0:LIVING 6.08 0:DiseaseFree 6.08 -TCGA-D8-A27K 0:LIVING 3.88 0:DiseaseFree 3.88 -TCGA-D8-A27L 0:LIVING 4.11 0:DiseaseFree 4.11 -TCGA-D8-A27M 0:LIVING 4.73 0:DiseaseFree 4.73 -TCGA-D8-A27N 0:LIVING 4.76 0:DiseaseFree 4.76 -TCGA-D8-A27P 0:LIVING 0.72 0:DiseaseFree 0.72 -TCGA-D8-A27R 0:LIVING 2.96 0:DiseaseFree 2.96 -TCGA-D8-A27T 0:LIVING 4.44 0:DiseaseFree 4.44 -TCGA-D8-A27V 0:LIVING 2.4 0:DiseaseFree 2.4 -TCGA-D8-A27W 0:LIVING 0.49 0:DiseaseFree 0.49 -TCGA-E2-A1IE 0:LIVING 32.29 0:DiseaseFree 32.29 -TCGA-E2-A1IF 0:LIVING 31.41 0:DiseaseFree 31.41 -TCGA-E2-A1IG 0:LIVING 24.8 0:DiseaseFree 24.8 -TCGA-E2-A1IH 0:LIVING 21.62 0:DiseaseFree 21.62 -TCGA-E2-A1II 0:LIVING 27.93 0:DiseaseFree 27.93 -TCGA-E2-A1IJ 0:LIVING 23.82 0:DiseaseFree 23.82 -TCGA-E2-A1IK 0:LIVING 17.02 0:DiseaseFree 17.02 -TCGA-E2-A1IL 0:LIVING 0.46 0:DiseaseFree 0.46 -TCGA-E2-A1IN 0:LIVING 12.88 0:DiseaseFree 12.88 -TCGA-E2-A1IO 0:LIVING 14.72 0:DiseaseFree 14.72 -TCGA-E2-A1IP 0:LIVING 14.03 0:DiseaseFree 14.03 -TCGA-E2-A1IU 0:LIVING 4.17 0:DiseaseFree 4.17 -TCGA-E2-A1L6 0:LIVING 43.1 0:DiseaseFree 43.1 -TCGA-E2-A1L7 0:LIVING 20.8 0:DiseaseFree 20.8 -TCGA-E2-A1L8 0:LIVING 33.35 0:DiseaseFree 33.35 -TCGA-E2-A1L9 0:LIVING 12.75 0:DiseaseFree 12.75 -TCGA-E2-A1LA 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-E2-A1LB 0:LIVING 31.93 0:DiseaseFree 31.93 -TCGA-E2-A1LG 0:LIVING 11.5 0:DiseaseFree 11.5 -TCGA-E2-A1LH 0:LIVING 94.45 0:DiseaseFree 94.45 -TCGA-E2-A1LI 0:LIVING 90.35 0:DiseaseFree 90.35 -TCGA-E2-A1LL 0:LIVING 33.31 0:DiseaseFree 33.31 -TCGA-E2-A1LS 0:LIVING 7.85 0:DiseaseFree 7.85 -TCGA-E9-A1N3 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N4 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N5 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N6 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N8 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N9 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NA 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NC 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1ND 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NE 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NF 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NG 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NH 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NI 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1QZ 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1R0 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1R2 0:LIVING 0.62 0:DiseaseFree 0.62 -TCGA-E9-A1R3 0:LIVING 2.1 0:DiseaseFree 2.1 -TCGA-E9-A1R4 0:LIVING 0.95 0:DiseaseFree 0.95 -TCGA-E9-A1R5 0:LIVING 1.38 0:DiseaseFree 1.38 -TCGA-E9-A1R6 0:LIVING 2.76 0:DiseaseFree 2.76 -TCGA-E9-A1R7 0:LIVING 1.12 0:DiseaseFree 1.12 -TCGA-E9-A1RA 0:LIVING 0.95 0:DiseaseFree 0.95 -TCGA-E9-A1RB 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-E9-A1RC 0:LIVING 40.34 0:DiseaseFree 40.34 -TCGA-E9-A1RD 0:LIVING 0.66 0:DiseaseFree 0.66 -TCGA-E9-A1RE 0:LIVING 1.54 0:DiseaseFree 1.54 -TCGA-E9-A1RF 0:LIVING 1.25 0:DiseaseFree 1.25 -TCGA-E9-A1RG 0:LIVING 1.15 0:DiseaseFree 1.15 -TCGA-E9-A1RH 0:LIVING 0.46 0:DiseaseFree 0.46 -TCGA-E9-A1RI 0:LIVING 1.58 0:DiseaseFree 1.58 -TCGA-E9-A226 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-E9-A227 0:LIVING 0.79 0:DiseaseFree 0.79 -TCGA-E9-A228 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A229 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22A 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22B 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22D 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22E 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22G 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22H 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A243 0:LIVING 1.41 0:DiseaseFree 1.41 -TCGA-E9-A244 0:LIVING 0.66 0:DiseaseFree 0.66 -TCGA-E9-A245 0:LIVING 0.82 0:DiseaseFree 0.82 -TCGA-E9-A247 0:LIVING 0.39 0:DiseaseFree 0.39 -TCGA-E9-A248 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-E9-A249 0:LIVING 0.92 0:DiseaseFree 0.92 -TCGA-E9-A24A 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-EW-A1IW 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-EW-A1IX 0:LIVING 35.55 0:DiseaseFree 35.55 -TCGA-EW-A1IY 0:LIVING 8.48 0:DiseaseFree 8.48 -TCGA-EW-A1IZ 0:LIVING 8.54 0:DiseaseFree 8.54 -TCGA-EW-A1J1 0:LIVING 9.26 0:DiseaseFree 9.26 -TCGA-EW-A1J2 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1J3 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-EW-A1J5 0:LIVING 7.46 0:DiseaseFree 7.46 -TCGA-EW-A1J6 0:LIVING 19.55 0:DiseaseFree 19.55 -TCGA-EW-A1OV 0:LIVING 17.15 0:DiseaseFree 17.15 -TCGA-EW-A1OW 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-EW-A1OX 0:LIVING 18.46 0:DiseaseFree 18.46 -TCGA-EW-A1OY 0:LIVING 19.48 0:DiseaseFree 19.48 -TCGA-EW-A1OZ 0:LIVING 30.91 0:DiseaseFree 30.91 -TCGA-EW-A1P0 0:LIVING 36.83 1:Recurred/Progressed [Not Available] -TCGA-EW-A1P1 0:LIVING 30.19 1:Recurred/Progressed [Not Available] -TCGA-EW-A1P3 0:LIVING 32.43 0:DiseaseFree 32.43 -TCGA-EW-A1P4 0:LIVING 16.46 0:DiseaseFree 16.46 -TCGA-EW-A1P5 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-EW-A1P6 0:LIVING 10.25 0:DiseaseFree 10.25 -TCGA-EW-A1P7 0:LIVING 20.86 0:DiseaseFree 20.86 -TCGA-EW-A1PA 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-EW-A1PB 0:LIVING 19.97 0:DiseaseFree 19.97 -TCGA-EW-A1PD 0:LIVING 5.72 0:DiseaseFree 5.72 -TCGA-EW-A1PE 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1PF 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1PG 0:LIVING 28.75 0:DiseaseFree 28.75 -TCGA-EW-A1PH 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A2FS [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-EW-A2FV [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-EW-A2FW [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-GM-A2DA 0:LIVING 194.13 1:Recurred/Progressed [Not Available] -TCGA-GM-A2DB 0:LIVING 53.06 0:DiseaseFree 53.06 -TCGA-GM-A2DC 0:LIVING 53.49 0:DiseaseFree 53.49 -TCGA-GM-A2DD 0:LIVING 43.01 0:DiseaseFree 43.01 -TCGA-GM-A2DF 0:LIVING 42.68 0:DiseaseFree 42.68 -TCGA-GM-A2DH 0:LIVING 42.25 0:DiseaseFree 42.25 -TCGA-GM-A2DI 0:LIVING 61.86 0:DiseaseFree 61.86 -TCGA-GM-A2DK 0:LIVING 62.29 0:DiseaseFree 62.29 -TCGA-GM-A2DL 0:LIVING 90.74 0:DiseaseFree 90.74 -TCGA-GM-A2DM 0:LIVING 76.58 0:DiseaseFree 76.58 -TCGA-GM-A2DN 0:LIVING 77.27 0:DiseaseFree 77.27 -TCGA-GM-A2DO 0:LIVING 53.29 0:DiseaseFree 53.29 -TCGA-AR-A24W [Not Available] [Not Available] [Not Available] [Not Available] -TEST-A2B8 [Not Available] [Not Available] [Not Available] [Not Available] -TEST-A2FF [Not Available] [Not Available] [Not Available] [Not Available] -TEST-A2FB [Not Available] [Not Available] [Not Available] [Not Available] -TEST-A2FG [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-GI-A2C8 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-E9-A295 [Not Available] [Not Available] [Not Available] [Not Available] -TCGA-A2-A0T2 [Not Available] [Not Available] [Not Available] [Not Available] diff --git a/core/src/test/scripts/test_data/study_quotes/data_samples.txt b/core/src/test/scripts/test_data/study_quotes/data_samples.txt deleted file mode 100644 index 29643ea2998..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/data_samples.txt +++ /dev/null @@ -1,831 +0,0 @@ -#Patient Identifier Sample Identifier Subtype -#Patient identifier Sample identifier Subtype description -#STRING STRING STRING -#1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE -TCGA-A2-A04P TCGA-A2-A04P-01 bas"al-like -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like" -TCGA-A2-A0CM TCGA-A2-A0CM-01 "basal-like -TCGA-AR-A1AR "TCGA-AR-A1AR-01" basal-like -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like -TCGA-B6-A0I6 "TCGA-B6-A0I6-01 "NA" -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like -TCGA-BH-A0HL TCGA-BH-A0HL-01 NA -TCGA-BH-A0E0 TCGA-BH-A0E0-01 basal-like -TCGA-BH-A0RX TCGA-BH-A0RX-01 basal-like -TCGA-A7-A13D TCGA-A7-A13D-01 basal-like -TCGA-BH-A0E6 TCGA-BH-A0E6-01 basal-like -TCGA-AO-A0J4 TCGA-AO-A0J4-01 basal-like -TCGA-A7-A0CE TCGA-A7-A0CE-01 basal-like -TCGA-A7-A13E TCGA-A7-A13E-01 -TCGA-A7-A0DA TCGA-A7-A0DA-01 basal-like -TCGA-D8-A142 TCGA-D8-A142-01 basal-like -TCGA-D8-A143 TCGA-D8-A143-01 NA -TCGA-AQ-A04J TCGA-AQ-A04J-01 basal-like -TCGA-BH-A0HN TCGA-BH-A0HN-01 NA -TCGA-A2-A0T0 TCGA-A2-A0T0-01 basal-like -TCGA-A2-A0YE TCGA-A2-A0YE-01 NA -TCGA-A2-A0YJ TCGA-A2-A0YJ-01 NA -TCGA-A2-A0D0 TCGA-A2-A0D0-01 basal-like -TCGA-A2-A04U TCGA-A2-A04U-01 NA -TCGA-AO-A0J6 TCGA-AO-A0J6-01 basal-like -TCGA-A2-A0YM TCGA-A2-A0YM-01 basal-like -TCGA-A2-A0D2 TCGA-A2-A0D2-01 basal-like -TCGA-BH-A0B3 TCGA-BH-A0B3-01 basal-like -TCGA-A2-A04Q TCGA-A2-A04Q-01 basal-like -TCGA-A2-A0SX TCGA-A2-A0SX-01 basal-like -TCGA-AO-A0JL TCGA-AO-A0JL-01 basal-like -TCGA-AO-A12F TCGA-AO-A12F-01 basal-like -TCGA-BH-A0B9 TCGA-BH-A0B9-01 basal-like -TCGA-A2-A04T TCGA-A2-A04T-01 NA -TCGA-B6-A0RT TCGA-B6-A0RT-01 basal-like -TCGA-AO-A128 TCGA-AO-A128-01 NA -TCGA-AO-A129 TCGA-AO-A129-01 basal-like -TCGA-AO-A124 TCGA-AO-A124-01 basal-like -TCGA-B6-A0RU TCGA-B6-A0RU-01 basal-like -TCGA-B6-A0IQ TCGA-B6-A0IQ-01 basal-like -TCGA-B6-A0I2 TCGA-B6-A0I2-01 basal-like -TCGA-B6-A0IJ TCGA-B6-A0IJ-01 basal-like -TCGA-B6-A0X1 TCGA-B6-A0X1-01 NA -TCGA-B6-A0RE TCGA-B6-A0RE-01 basal-like -TCGA-A2-A0ST TCGA-A2-A0ST-01 basal-like -TCGA-AR-A0TP TCGA-AR-A0TP-01 basal-like -TCGA-A1-A0SO TCGA-A1-A0SO-01 basal-like -TCGA-A8-A07C TCGA-A8-A07C-01 basal-like -TCGA-A8-A07O TCGA-A8-A07O-01 basal-like -TCGA-A8-A07R TCGA-A8-A07R-01 basal-like -TCGA-A8-A07U TCGA-A8-A07U-01 basal-like -TCGA-A8-A08H TCGA-A8-A08H-01 basal-like -TCGA-A8-A08R TCGA-A8-A08R-01 basal-like -TCGA-AN-A04D TCGA-AN-A04D-01 basal-like -TCGA-AN-A0AL TCGA-AN-A0AL-01 basal-like -TCGA-AN-A0AR TCGA-AN-A0AR-01 basal-like -TCGA-AN-A0AT TCGA-AN-A0AT-01 NA -TCGA-AN-A0FJ TCGA-AN-A0FJ-01 basal-like -TCGA-AN-A0FL TCGA-AN-A0FL-01 basal-like -TCGA-AN-A0FX TCGA-AN-A0FX-01 basal-like -TCGA-AN-A0G0 TCGA-AN-A0G0-01 NA -TCGA-AN-A0XU TCGA-AN-A0XU-01 basal-like -TCGA-AR-A0TS TCGA-AR-A0TS-01 basal-like -TCGA-AR-A0TU TCGA-AR-A0TU-01 NA -TCGA-AR-A0U0 TCGA-AR-A0U0-01 NA -TCGA-AR-A0U1 TCGA-AR-A0U1-01 basal-like -TCGA-AR-A0U4 TCGA-AR-A0U4-01 basal-like -TCGA-AR-A1AH TCGA-AR-A1AH-01 basal-like -TCGA-AR-A1AI TCGA-AR-A1AI-01 basal-like -TCGA-AR-A1AJ TCGA-AR-A1AJ-01 basal-like -TCGA-AR-A1AQ TCGA-AR-A1AQ-01 basal-like -TCGA-AR-A1AY TCGA-AR-A1AY-01 basal-like -TCGA-BH-A0AV TCGA-BH-A0AV-01 basal-like -TCGA-BH-A0BG TCGA-BH-A0BG-01 basal-like -TCGA-BH-A0BL TCGA-BH-A0BL-01 basal-like -TCGA-BH-A0BW TCGA-BH-A0BW-01 basal-like -TCGA-BH-A0DL TCGA-BH-A0DL-01 basal-like -TCGA-BH-A0WA TCGA-BH-A0WA-01 basal-like -TCGA-BH-A18G TCGA-BH-A18G-01 NA -TCGA-C8-A12K TCGA-C8-A12K-01 basal-like -TCGA-C8-A12V TCGA-C8-A12V-01 basal-like -TCGA-C8-A131 TCGA-C8-A131-01 basal-like -TCGA-C8-A134 TCGA-C8-A134-01 basal-like -TCGA-D8-A147 TCGA-D8-A147-01 basal-like -TCGA-E2-A14N TCGA-E2-A14N-01 basal-like -TCGA-E2-A14R TCGA-E2-A14R-01 basal-like -TCGA-E2-A14X TCGA-E2-A14X-01 basal-like -TCGA-E2-A14Y TCGA-E2-A14Y-01 basal-like -TCGA-E2-A150 TCGA-E2-A150-01 basal-like -TCGA-E2-A158 TCGA-E2-A158-01 basal-like -TCGA-E2-A159 TCGA-E2-A159-01 basal-like -TCGA-E2-A1AZ TCGA-E2-A1AZ-01 NA -TCGA-E2-A1B5 TCGA-E2-A1B5-01 basal-like -TCGA-A8-A08L TCGA-A8-A08L-01 Her2 enriched -TCGA-BH-A1EV TCGA-BH-A1EV-01 Her2 enriched -TCGA-B6-A0I9 TCGA-B6-A0I9-01 Her2 enriched -TCGA-A8-A09X TCGA-A8-A09X-01 Her2 enriched -TCGA-B6-A0IK TCGA-B6-A0IK-01 Her2 enriched -TCGA-BH-A18P TCGA-BH-A18P-01 Her2 enriched -TCGA-A8-A08J TCGA-A8-A08J-01 Her2 enriched -TCGA-BH-A18R TCGA-BH-A18R-01 Her2 enriched -TCGA-AR-A1AT TCGA-AR-A1AT-01 Her2 enriched -TCGA-B6-A0RS TCGA-B6-A0RS-01 Her2 enriched -TCGA-BH-A0DZ TCGA-BH-A0DZ-01 Her2 enriched -TCGA-A2-A0T1 TCGA-A2-A0T1-01 Her2 enriched -TCGA-AO-A0J2 TCGA-AO-A0J2-01 Her2 enriched -TCGA-BH-A0AW TCGA-BH-A0AW-01 Her2 enriched -TCGA-BH-A0EE TCGA-BH-A0EE-01 Her2 enriched -TCGA-A2-A0D1 TCGA-A2-A0D1-01 Her2 enriched -TCGA-AO-A03N TCGA-AO-A03N-01 Her2 enriched -TCGA-A2-A0CY TCGA-A2-A0CY-01 Her2 enriched -TCGA-A2-A04X TCGA-A2-A04X-01 Her2 enriched -TCGA-A2-A0CX TCGA-A2-A0CX-01 Her2 enriched -TCGA-A2-A04W TCGA-A2-A04W-01 Her2 enriched -TCGA-AO-A12D TCGA-AO-A12D-01 Her2 enriched -TCGA-A2-A0CL TCGA-A2-A0CL-01 Her2 enriched -TCGA-AO-A0JE TCGA-AO-A0JE-01 Her2 enriched -TCGA-A2-A0EQ TCGA-A2-A0EQ-01 Her2 enriched -TCGA-AO-A03L TCGA-AO-A03L-01 Her2 enriched -TCGA-B6-A0RH TCGA-B6-A0RH-01 Her2 enriched -TCGA-A8-A075 TCGA-A8-A075-01 Her2 enriched -TCGA-A8-A076 TCGA-A8-A076-01 Her2 enriched -TCGA-A8-A07B TCGA-A8-A07B-01 Her2 enriched -TCGA-A8-A07I TCGA-A8-A07I-01 Her2 enriched -TCGA-A8-A081 TCGA-A8-A081-01 Her2 enriched -TCGA-A8-A08B TCGA-A8-A08B-01 Her2 enriched -TCGA-A8-A08X TCGA-A8-A08X-01 Her2 enriched -TCGA-A8-A092 TCGA-A8-A092-01 Her2 enriched -TCGA-A8-A094 TCGA-A8-A094-01 Her2 enriched -TCGA-A8-A09G TCGA-A8-A09G-01 Her2 enriched -TCGA-A8-A0A7 TCGA-A8-A0A7-01 Her2 enriched -TCGA-AN-A04C TCGA-AN-A04C-01 Her2 enriched -TCGA-AN-A0FV TCGA-AN-A0FV-01 Her2 enriched -TCGA-AR-A0TX TCGA-AR-A0TX-01 Her2 enriched -TCGA-BH-A0B7 TCGA-BH-A0B7-01 Her2 enriched -TCGA-BH-A0HY TCGA-BH-A0HY-01 Her2 enriched -TCGA-C8-A12L TCGA-C8-A12L-01 Her2 enriched -TCGA-C8-A12P TCGA-C8-A12P-01 Her2 enriched -TCGA-C8-A12Q TCGA-C8-A12Q-01 Her2 enriched -TCGA-C8-A12T TCGA-C8-A12T-01 Her2 enriched -TCGA-C8-A12Z TCGA-C8-A12Z-01 Her2 enriched -TCGA-C8-A130 TCGA-C8-A130-01 Her2 enriched -TCGA-C8-A135 TCGA-C8-A135-01 Her2 enriched -TCGA-C8-A137 TCGA-C8-A137-01 Her2 enriched -TCGA-C8-A138 TCGA-C8-A138-01 Her2 enriched -TCGA-C8-A1HF TCGA-C8-A1HF-01 Her2 enriched -TCGA-D8-A13Z TCGA-D8-A13Z-01 Her2 enriched -TCGA-E2-A14P TCGA-E2-A14P-01 Her2 enriched -TCGA-E2-A14V TCGA-E2-A14V-01 Her2 enriched -TCGA-E2-A152 TCGA-E2-A152-01 Her2 enriched -TCGA-E2-A1B0 TCGA-E2-A1B0-01 Her2 enriched -TCGA-A2-A0CU TCGA-A2-A0CU-01 Luminal A -TCGA-AR-A0TR TCGA-AR-A0TR-01 Luminal A -TCGA-BH-A18T TCGA-BH-A18T-01 Luminal A -TCGA-B6-A0I8 TCGA-B6-A0I8-01 Luminal A -TCGA-B6-A0X4 TCGA-B6-A0X4-01 Luminal A -TCGA-A8-A06U TCGA-A8-A06U-01 Luminal A -TCGA-BH-A0EA TCGA-BH-A0EA-01 Luminal A -TCGA-BH-A18N TCGA-BH-A18N-01 Luminal A -TCGA-BH-A1EU TCGA-BH-A1EU-01 Luminal A -TCGA-B6-A0X7 TCGA-B6-A0X7-01 Luminal A -TCGA-A2-A04V TCGA-A2-A04V-01 Luminal A -TCGA-BH-A18S TCGA-BH-A18S-01 Luminal A -TCGA-BH-A18M TCGA-BH-A18M-01 Luminal A -TCGA-B6-A0RM TCGA-B6-A0RM-01 Luminal A -TCGA-BH-A1ET TCGA-BH-A1ET-01 Luminal A -TCGA-B6-A0IN TCGA-B6-A0IN-01 Luminal A -TCGA-BH-A1EO TCGA-BH-A1EO-01 Luminal A -TCGA-B6-A0WS TCGA-B6-A0WS-01 Luminal A -TCGA-B6-A0RP TCGA-B6-A0RP-01 Luminal A -TCGA-B6-A0IH TCGA-B6-A0IH-01 Luminal A -TCGA-B6-A0WY TCGA-B6-A0WY-01 Luminal A -TCGA-BH-A1ES TCGA-BH-A1ES-01 Luminal A -TCGA-B6-A0X0 TCGA-B6-A0X0-01 Luminal A -TCGA-B6-A0RQ TCGA-B6-A0RQ-01 Luminal A -TCGA-B6-A0IG TCGA-B6-A0IG-01 Luminal A -TCGA-BH-A0HO TCGA-BH-A0HO-01 Luminal A -TCGA-BH-A0DS TCGA-BH-A0DS-01 Luminal A -TCGA-BH-A0DQ TCGA-BH-A0DQ-01 Luminal A -TCGA-BH-A0HK TCGA-BH-A0HK-01 Luminal A -TCGA-A7-A0CG TCGA-A7-A0CG-01 Luminal A -TCGA-A7-A0CH TCGA-A7-A0CH-01 Luminal A -TCGA-A7-A0DB TCGA-A7-A0DB-01 Luminal A -TCGA-A7-A0D9 TCGA-A7-A0D9-01 Luminal A -TCGA-AO-A0J8 TCGA-AO-A0J8-01 Luminal A -TCGA-BH-A0GZ TCGA-BH-A0GZ-01 Luminal A -TCGA-AO-A0JA TCGA-AO-A0JA-01 Luminal A -TCGA-AO-A0JF TCGA-AO-A0JF-01 Luminal A -TCGA-A7-A0CD TCGA-A7-A0CD-01 Luminal A -TCGA-D8-A145 TCGA-D8-A145-01 Luminal A -TCGA-BH-A0HP TCGA-BH-A0HP-01 Luminal A -TCGA-BH-A0DK TCGA-BH-A0DK-01 Luminal A -TCGA-BH-A0E2 TCGA-BH-A0E2-01 Luminal A -TCGA-A2-A0YI TCGA-A2-A0YI-01 Luminal A -TCGA-A2-A0YL TCGA-A2-A0YL-01 Luminal A -TCGA-AO-A0JG TCGA-AO-A0JG-01 Luminal A -TCGA-A2-A0YF TCGA-A2-A0YF-01 Luminal A -TCGA-BH-A0DP TCGA-BH-A0DP-01 Luminal A -TCGA-BH-A0E1 TCGA-BH-A0E1-01 Luminal A -TCGA-A2-A0T5 TCGA-A2-A0T5-01 Luminal A -TCGA-A2-A0T6 TCGA-A2-A0T6-01 Luminal A -TCGA-BH-A0HI TCGA-BH-A0HI-01 Luminal A -TCGA-A2-A0T7 TCGA-A2-A0T7-01 Luminal A -TCGA-BH-A0BJ TCGA-BH-A0BJ-01 Luminal A -TCGA-BH-A0H7 TCGA-BH-A0H7-01 Luminal A -TCGA-BH-A0HF TCGA-BH-A0HF-01 Luminal A -TCGA-BH-A0EB TCGA-BH-A0EB-01 Luminal A -TCGA-BH-A0H6 TCGA-BH-A0H6-01 Luminal A -TCGA-A2-A0YD TCGA-A2-A0YD-01 Luminal A -TCGA-BH-A0HB TCGA-BH-A0HB-01 Luminal A -TCGA-BH-A0HX TCGA-BH-A0HX-01 Luminal A -TCGA-AO-A12H TCGA-AO-A12H-01 Luminal A -TCGA-E2-A10E TCGA-E2-A10E-01 Luminal A -TCGA-A2-A0D3 TCGA-A2-A0D3-01 Luminal A -TCGA-E2-A10F TCGA-E2-A10F-01 Luminal A -TCGA-AO-A03V TCGA-AO-A03V-01 Luminal A -TCGA-A2-A0EW TCGA-A2-A0EW-01 Luminal A -TCGA-BH-A0GY TCGA-BH-A0GY-01 Luminal A -TCGA-A2-A0EV TCGA-A2-A0EV-01 Luminal A -TCGA-BH-A0BC TCGA-BH-A0BC-01 Luminal A -TCGA-A2-A0YC TCGA-A2-A0YC-01 Luminal A -TCGA-A2-A0EU TCGA-A2-A0EU-01 Luminal A -TCGA-A2-A0ET TCGA-A2-A0ET-01 Luminal A -TCGA-A2-A04Y TCGA-A2-A04Y-01 Luminal A -TCGA-BH-A0HQ TCGA-BH-A0HQ-01 Luminal A -TCGA-A2-A0ES TCGA-A2-A0ES-01 Luminal A -TCGA-BH-A0BA TCGA-BH-A0BA-01 Luminal A -TCGA-E2-A10B TCGA-E2-A10B-01 Luminal A -TCGA-BH-A0B1 TCGA-BH-A0B1-01 Luminal A -TCGA-BH-A0DH TCGA-BH-A0DH-01 Luminal A -TCGA-BH-A0B4 TCGA-BH-A0B4-01 Luminal A -TCGA-BH-A0H9 TCGA-BH-A0H9-01 Luminal A -TCGA-AO-A0J9 TCGA-AO-A0J9-01 Luminal A -TCGA-AO-A12G TCGA-AO-A12G-01 Luminal A -TCGA-A2-A0SY TCGA-A2-A0SY-01 Luminal A -TCGA-BH-A0E7 TCGA-BH-A0E7-01 Luminal A -TCGA-AO-A03M TCGA-AO-A03M-01 Luminal A -TCGA-BH-A0BV TCGA-BH-A0BV-01 Luminal A -TCGA-BH-A0B8 TCGA-BH-A0B8-01 Luminal A -TCGA-A2-A0CZ TCGA-A2-A0CZ-01 Luminal A -TCGA-A2-A0SU TCGA-A2-A0SU-01 Luminal A -TCGA-AO-A12E TCGA-AO-A12E-01 Luminal A -TCGA-E2-A106 TCGA-E2-A106-01 Luminal A -TCGA-A2-A0CV TCGA-A2-A0CV-01 Luminal A -TCGA-AO-A12C TCGA-AO-A12C-01 Luminal A -TCGA-B6-A0RG TCGA-B6-A0RG-01 Luminal A -TCGA-A2-A0CS TCGA-A2-A0CS-01 Luminal A -TCGA-A2-A0EO TCGA-A2-A0EO-01 Luminal A -TCGA-A2-A0CQ TCGA-A2-A0CQ-01 Luminal A -TCGA-A2-A0EN TCGA-A2-A0EN-01 Luminal A -TCGA-AO-A12A TCGA-AO-A12A-01 Luminal A -TCGA-A2-A0CP TCGA-A2-A0CP-01 Luminal A -TCGA-AO-A126 TCGA-AO-A126-01 Luminal A -TCGA-AO-A125 TCGA-AO-A125-01 Luminal A -TCGA-A2-A0EM TCGA-A2-A0EM-01 Luminal A -TCGA-A2-A04N TCGA-A2-A04N-01 Luminal A -TCGA-AQ-A04L TCGA-AQ-A04L-01 Luminal A -TCGA-B6-A0IO TCGA-B6-A0IO-01 Luminal A -TCGA-B6-A0IP TCGA-B6-A0IP-01 Luminal A -TCGA-B6-A0WZ TCGA-B6-A0WZ-01 Luminal A -TCGA-B6-A0I5 TCGA-B6-A0I5-01 Luminal A -TCGA-B6-A0RV TCGA-B6-A0RV-01 Luminal A -TCGA-B6-A0RO TCGA-B6-A0RO-01 Luminal A -TCGA-B6-A0RN TCGA-B6-A0RN-01 Luminal A -TCGA-B6-A0WT TCGA-B6-A0WT-01 Luminal A -TCGA-B6-A0IA TCGA-B6-A0IA-01 Luminal A -TCGA-B6-A0RI TCGA-B6-A0RI-01 Luminal A -TCGA-A1-A0SE TCGA-A1-A0SE-01 Luminal A -TCGA-A2-A0EX TCGA-A2-A0EX-01 Luminal A -TCGA-AO-A0JJ TCGA-AO-A0JJ-01 Luminal A -TCGA-E2-A105 TCGA-E2-A105-01 Luminal A -TCGA-A1-A0SD TCGA-A1-A0SD-01 Luminal A -TCGA-A1-A0SH TCGA-A1-A0SH-01 Luminal A -TCGA-A1-A0SJ TCGA-A1-A0SJ-01 Luminal A -TCGA-A8-A06P TCGA-A8-A06P-01 Luminal A -TCGA-A8-A06T TCGA-A8-A06T-01 Luminal A -TCGA-A8-A06Y TCGA-A8-A06Y-01 Luminal A -TCGA-A8-A07E TCGA-A8-A07E-01 Luminal A -TCGA-A8-A07F TCGA-A8-A07F-01 Luminal A -TCGA-A8-A07G TCGA-A8-A07G-01 Luminal A -TCGA-A8-A07J TCGA-A8-A07J-01 Luminal A -TCGA-A8-A07P TCGA-A8-A07P-01 Luminal A -TCGA-A8-A083 TCGA-A8-A083-01 Luminal A -TCGA-A8-A086 TCGA-A8-A086-01 Luminal A -TCGA-A8-A08A TCGA-A8-A08A-01 Luminal A -TCGA-A8-A08C TCGA-A8-A08C-01 Luminal A -TCGA-A8-A08O TCGA-A8-A08O-01 Luminal A -TCGA-A8-A08T TCGA-A8-A08T-01 Luminal A -TCGA-A8-A08Z TCGA-A8-A08Z-01 Luminal A -TCGA-A8-A090 TCGA-A8-A090-01 Luminal A -TCGA-A8-A091 TCGA-A8-A091-01 Luminal A -TCGA-A8-A093 TCGA-A8-A093-01 Luminal A -TCGA-A8-A099 TCGA-A8-A099-01 Luminal A -TCGA-A8-A09A TCGA-A8-A09A-01 Luminal A -TCGA-A8-A09B TCGA-A8-A09B-01 Luminal A -TCGA-A8-A09T TCGA-A8-A09T-01 Luminal A -TCGA-A8-A09V TCGA-A8-A09V-01 Luminal A -TCGA-A8-A0A1 TCGA-A8-A0A1-01 Luminal A -TCGA-A8-A0A2 TCGA-A8-A0A2-01 Luminal A -TCGA-A8-A0A4 TCGA-A8-A0A4-01 Luminal A -TCGA-A8-A0A6 TCGA-A8-A0A6-01 Luminal A -TCGA-A8-A0AD TCGA-A8-A0AD-01 Luminal A -TCGA-AN-A03X TCGA-AN-A03X-01 Luminal A -TCGA-AN-A046 TCGA-AN-A046-01 Luminal A -TCGA-AN-A04A TCGA-AN-A04A-01 Luminal A -TCGA-AN-A0FD TCGA-AN-A0FD-01 Luminal A -TCGA-AN-A0FN TCGA-AN-A0FN-01 Luminal A -TCGA-AN-A0FS TCGA-AN-A0FS-01 Luminal A -TCGA-AN-A0FT TCGA-AN-A0FT-01 Luminal A -TCGA-AN-A0FW TCGA-AN-A0FW-01 Luminal A -TCGA-AN-A0FZ TCGA-AN-A0FZ-01 Luminal A -TCGA-AN-A0XL TCGA-AN-A0XL-01 Luminal A -TCGA-AN-A0XN TCGA-AN-A0XN-01 Luminal A -TCGA-AN-A0XO TCGA-AN-A0XO-01 Luminal A -TCGA-AN-A0XP TCGA-AN-A0XP-01 Luminal A -TCGA-AN-A0XS TCGA-AN-A0XS-01 Luminal A -TCGA-AN-A0XT TCGA-AN-A0XT-01 Luminal A -TCGA-AN-A0XV TCGA-AN-A0XV-01 Luminal A -TCGA-AR-A0TW TCGA-AR-A0TW-01 Luminal A -TCGA-AR-A1AK TCGA-AR-A1AK-01 Luminal A -TCGA-AR-A1AL TCGA-AR-A1AL-01 Luminal A -TCGA-AR-A1AN TCGA-AR-A1AN-01 Luminal A -TCGA-AR-A1AP TCGA-AR-A1AP-01 Luminal A -TCGA-AR-A1AS TCGA-AR-A1AS-01 Luminal A -TCGA-AR-A1AU TCGA-AR-A1AU-01 Luminal A -TCGA-AR-A1AW TCGA-AR-A1AW-01 Luminal A -TCGA-AR-A1AX TCGA-AR-A1AX-01 Luminal A -TCGA-BH-A0AZ TCGA-BH-A0AZ-01 Luminal A -TCGA-BH-A0B0 TCGA-BH-A0B0-01 Luminal A -TCGA-BH-A0BM TCGA-BH-A0BM-01 Luminal A -TCGA-BH-A0BO TCGA-BH-A0BO-01 Luminal A -TCGA-BH-A0BP TCGA-BH-A0BP-01 Luminal A -TCGA-BH-A0BQ TCGA-BH-A0BQ-01 Luminal A -TCGA-BH-A0BR TCGA-BH-A0BR-01 Luminal A -TCGA-BH-A0BS TCGA-BH-A0BS-01 Luminal A -TCGA-BH-A0BT TCGA-BH-A0BT-01 Luminal A -TCGA-BH-A0C1 TCGA-BH-A0C1-01 Luminal A -TCGA-BH-A0DE TCGA-BH-A0DE-01 Luminal A -TCGA-BH-A0DG TCGA-BH-A0DG-01 Luminal A -TCGA-BH-A0DI TCGA-BH-A0DI-01 Luminal A -TCGA-BH-A0DO TCGA-BH-A0DO-01 Luminal A -TCGA-BH-A0DT TCGA-BH-A0DT-01 Luminal A -TCGA-BH-A0DX TCGA-BH-A0DX-01 Luminal A -TCGA-BH-A0E9 TCGA-BH-A0E9-01 Luminal A -TCGA-BH-A0EI TCGA-BH-A0EI-01 Luminal A -TCGA-BH-A0H3 TCGA-BH-A0H3-01 Luminal A -TCGA-BH-A0H5 TCGA-BH-A0H5-01 Luminal A -TCGA-BH-A0HA TCGA-BH-A0HA-01 Luminal A -TCGA-BH-A0W4 TCGA-BH-A0W4-01 Luminal A -TCGA-BH-A0W5 TCGA-BH-A0W5-01 Luminal A -TCGA-BH-A0W7 TCGA-BH-A0W7-01 Luminal A -TCGA-BH-A18H TCGA-BH-A18H-01 Luminal A -TCGA-BH-A18I TCGA-BH-A18I-01 Luminal A -TCGA-C8-A12N TCGA-C8-A12N-01 Luminal A -TCGA-C8-A12O TCGA-C8-A12O-01 Luminal A -TCGA-C8-A12Y TCGA-C8-A12Y-01 Luminal A -TCGA-C8-A132 TCGA-C8-A132-01 Luminal A -TCGA-C8-A133 TCGA-C8-A133-01 Luminal A -TCGA-C8-A1HI TCGA-C8-A1HI-01 Luminal A -TCGA-D8-A141 TCGA-D8-A141-01 Luminal A -TCGA-E2-A14Q TCGA-E2-A14Q-01 Luminal A -TCGA-E2-A14T TCGA-E2-A14T-01 Luminal A -TCGA-E2-A14Z TCGA-E2-A14Z-01 Luminal A -TCGA-E2-A153 TCGA-E2-A153-01 Luminal A -TCGA-E2-A154 TCGA-E2-A154-01 Luminal A -TCGA-E2-A156 TCGA-E2-A156-01 Luminal A -TCGA-E2-A15C TCGA-E2-A15C-01 Luminal A -TCGA-E2-A15D TCGA-E2-A15D-01 Luminal A -TCGA-E2-A15E TCGA-E2-A15E-01 Luminal A -TCGA-E2-A15F TCGA-E2-A15F-01 Luminal A -TCGA-E2-A15G TCGA-E2-A15G-01 Luminal A -TCGA-E2-A15H TCGA-E2-A15H-01 Luminal A -TCGA-E2-A15I TCGA-E2-A15I-01 Luminal A -TCGA-E2-A15J TCGA-E2-A15J-01 Luminal A -TCGA-E2-A15O TCGA-E2-A15O-01 Luminal A -TCGA-E2-A15P TCGA-E2-A15P-01 Luminal A -TCGA-E2-A15R TCGA-E2-A15R-01 Luminal A -TCGA-E2-A1B1 TCGA-E2-A1B1-01 Luminal A -TCGA-E2-A1B4 TCGA-E2-A1B4-01 Luminal A -TCGA-E2-A1B6 TCGA-E2-A1B6-01 Luminal A -TCGA-E2-A1BC TCGA-E2-A1BC-01 Luminal A -TCGA-E2-A1BD TCGA-E2-A1BD-01 Luminal A -TCGA-A2-A0SV TCGA-A2-A0SV-01 Luminal B -TCGA-AO-A03O TCGA-AO-A03O-01 Luminal B -TCGA-A2-A0SW TCGA-A2-A0SW-01 Luminal B -TCGA-B6-A0WW TCGA-B6-A0WW-01 Luminal B -TCGA-BH-A18J TCGA-BH-A18J-01 Luminal B -TCGA-BH-A18L TCGA-BH-A18L-01 Luminal B -TCGA-A8-A06X TCGA-A8-A06X-01 Luminal B -TCGA-B6-A0IC TCGA-B6-A0IC-01 Luminal B -TCGA-BH-A18U TCGA-BH-A18U-01 Luminal B -TCGA-BH-A1EW TCGA-BH-A1EW-01 Luminal B -TCGA-AR-A0TY TCGA-AR-A0TY-01 Luminal B -TCGA-B6-A0X5 TCGA-B6-A0X5-01 Luminal B -TCGA-B6-A0WV TCGA-B6-A0WV-01 Luminal B -TCGA-B6-A0RL TCGA-B6-A0RL-01 Luminal B -TCGA-AR-A0U2 TCGA-AR-A0U2-01 Luminal B -TCGA-B6-A0IB TCGA-B6-A0IB-01 Luminal B -TCGA-AO-A0J7 TCGA-AO-A0J7-01 Luminal B -TCGA-AO-A0J3 TCGA-AO-A0J3-01 Luminal B -TCGA-D8-A13Y TCGA-D8-A13Y-01 Luminal B -TCGA-A7-A13F TCGA-A7-A13F-01 Luminal B -TCGA-BH-A0HU TCGA-BH-A0HU-01 Luminal B -TCGA-D8-A140 TCGA-D8-A140-01 Luminal B -TCGA-A7-A0CJ TCGA-A7-A0CJ-01 Luminal B -TCGA-AQ-A04H TCGA-AQ-A04H-01 Luminal B -TCGA-BH-A0H0 TCGA-BH-A0H0-01 Luminal B -TCGA-BH-A0BD TCGA-BH-A0BD-01 Luminal B -TCGA-A2-A0T3 TCGA-A2-A0T3-01 Luminal B -TCGA-A2-A0T4 TCGA-A2-A0T4-01 Luminal B -TCGA-A2-A0YH TCGA-A2-A0YH-01 Luminal B -TCGA-A2-A0YG TCGA-A2-A0YG-01 Luminal B -TCGA-A2-A0EY TCGA-A2-A0EY-01 Luminal B -TCGA-A2-A0D4 TCGA-A2-A0D4-01 Luminal B -TCGA-BH-A0AY TCGA-BH-A0AY-01 Luminal B -TCGA-E2-A107 TCGA-E2-A107-01 Luminal B -TCGA-AO-A0JI TCGA-AO-A0JI-01 Luminal B -TCGA-E2-A10C TCGA-E2-A10C-01 Luminal B -TCGA-E2-A10A TCGA-E2-A10A-01 Luminal B -TCGA-BH-A0C0 TCGA-BH-A0C0-01 Luminal B -TCGA-E2-A109 TCGA-E2-A109-01 Luminal B -TCGA-AO-A0JC TCGA-AO-A0JC-01 Luminal B -TCGA-BH-A0HW TCGA-BH-A0HW-01 Luminal B -TCGA-AO-A0JD TCGA-AO-A0JD-01 Luminal B -TCGA-AO-A0JM TCGA-AO-A0JM-01 Luminal B -TCGA-A2-A0CW TCGA-A2-A0CW-01 Luminal B -TCGA-A2-A0ER TCGA-A2-A0ER-01 Luminal B -TCGA-A2-A0CT TCGA-A2-A0CT-01 Luminal B -TCGA-AO-A12B TCGA-AO-A12B-01 Luminal B -TCGA-A2-A04R TCGA-A2-A04R-01 Luminal B -TCGA-B6-A0IM TCGA-B6-A0IM-01 Luminal B -TCGA-AO-A03P TCGA-AO-A03P-01 Luminal B -TCGA-A1-A0SM TCGA-A1-A0SM-01 Luminal B -TCGA-A8-A06N TCGA-A8-A06N-01 Luminal B -TCGA-A8-A06O TCGA-A8-A06O-01 Luminal B -TCGA-A8-A06Q TCGA-A8-A06Q-01 Luminal B -TCGA-A8-A06R TCGA-A8-A06R-01 Luminal B -TCGA-A8-A06Z TCGA-A8-A06Z-01 Luminal B -TCGA-A8-A079 TCGA-A8-A079-01 Luminal B -TCGA-A8-A07L TCGA-A8-A07L-01 Luminal B -TCGA-A8-A07S TCGA-A8-A07S-01 Luminal B -TCGA-A8-A07W TCGA-A8-A07W-01 Luminal B -TCGA-A8-A07Z TCGA-A8-A07Z-01 Luminal B -TCGA-A8-A082 TCGA-A8-A082-01 Luminal B -TCGA-A8-A084 TCGA-A8-A084-01 Luminal B -TCGA-A8-A085 TCGA-A8-A085-01 Luminal B -TCGA-A8-A08F TCGA-A8-A08F-01 Luminal B -TCGA-A8-A08G TCGA-A8-A08G-01 Luminal B -TCGA-A8-A08I TCGA-A8-A08I-01 Luminal B -TCGA-A8-A08P TCGA-A8-A08P-01 Luminal B -TCGA-A8-A095 TCGA-A8-A095-01 Luminal B -TCGA-A8-A096 TCGA-A8-A096-01 Luminal B -TCGA-A8-A097 TCGA-A8-A097-01 Luminal B -TCGA-A8-A09C TCGA-A8-A09C-01 Luminal B -TCGA-A8-A09D TCGA-A8-A09D-01 Luminal B -TCGA-A8-A09I TCGA-A8-A09I-01 Luminal B -TCGA-A8-A09M TCGA-A8-A09M-01 Luminal B -TCGA-A8-A09N TCGA-A8-A09N-01 Luminal B -TCGA-A8-A09Q TCGA-A8-A09Q-01 Luminal B -TCGA-A8-A09R TCGA-A8-A09R-01 Luminal B -TCGA-A8-A09W TCGA-A8-A09W-01 Luminal B -TCGA-A8-A09Z TCGA-A8-A09Z-01 Luminal B -TCGA-A8-A0A9 TCGA-A8-A0A9-01 Luminal B -TCGA-A8-A0AB TCGA-A8-A0AB-01 Luminal B -TCGA-AN-A03Y TCGA-AN-A03Y-01 Luminal B -TCGA-AN-A041 TCGA-AN-A041-01 Luminal B -TCGA-AN-A049 TCGA-AN-A049-01 Luminal B -TCGA-AN-A0AJ TCGA-AN-A0AJ-01 Luminal B -TCGA-AN-A0AK TCGA-AN-A0AK-01 Luminal B -TCGA-AN-A0AM TCGA-AN-A0AM-01 Luminal B -TCGA-AN-A0AS TCGA-AN-A0AS-01 Luminal B -TCGA-AN-A0FF TCGA-AN-A0FF-01 Luminal B -TCGA-AN-A0FK TCGA-AN-A0FK-01 Luminal B -TCGA-AN-A0FY TCGA-AN-A0FY-01 Luminal B -TCGA-AN-A0XR TCGA-AN-A0XR-01 Luminal B -TCGA-AN-A0XW TCGA-AN-A0XW-01 Luminal B -TCGA-AR-A0TQ TCGA-AR-A0TQ-01 Luminal B -TCGA-AR-A0TT TCGA-AR-A0TT-01 Luminal B -TCGA-AR-A0TV TCGA-AR-A0TV-01 Luminal B -TCGA-AR-A0TZ TCGA-AR-A0TZ-01 Luminal B -TCGA-AR-A0U3 TCGA-AR-A0U3-01 Luminal B -TCGA-AR-A1AV TCGA-AR-A1AV-01 Luminal B -TCGA-BH-A0AU TCGA-BH-A0AU-01 Luminal B -TCGA-BH-A0B5 TCGA-BH-A0B5-01 Luminal B -TCGA-BH-A0BF TCGA-BH-A0BF-01 Luminal B -TCGA-BH-A0BZ TCGA-BH-A0BZ-01 Luminal B -TCGA-BH-A0C3 TCGA-BH-A0C3-01 Luminal B -TCGA-BH-A0C7 TCGA-BH-A0C7-01 Luminal B -TCGA-BH-A0DD TCGA-BH-A0DD-01 Luminal B -TCGA-BH-A0W3 TCGA-BH-A0W3-01 Luminal B -TCGA-BH-A18F TCGA-BH-A18F-01 Luminal B -TCGA-C8-A12M TCGA-C8-A12M-01 Luminal B -TCGA-C8-A12U TCGA-C8-A12U-01 Luminal B -TCGA-C8-A12W TCGA-C8-A12W-01 Luminal B -TCGA-C8-A12X TCGA-C8-A12X-01 Luminal B -TCGA-C8-A1HG TCGA-C8-A1HG-01 Luminal B -TCGA-C8-A1HL TCGA-C8-A1HL-01 Luminal B -TCGA-C8-A1HM TCGA-C8-A1HM-01 Luminal B -TCGA-C8-A1HN TCGA-C8-A1HN-01 Luminal B -TCGA-E2-A14O TCGA-E2-A14O-01 Luminal B -TCGA-E2-A14S TCGA-E2-A14S-01 Luminal B -TCGA-E2-A14W TCGA-E2-A14W-01 Luminal B -TCGA-E2-A155 TCGA-E2-A155-01 Luminal B -TCGA-E2-A15A TCGA-E2-A15A-01 Luminal B -TCGA-E2-A15K TCGA-E2-A15K-01 Luminal B -TCGA-E2-A15L TCGA-E2-A15L-01 Luminal B -TCGA-E2-A15M TCGA-E2-A15M-01 Luminal B -TCGA-E2-A15S TCGA-E2-A15S-01 Luminal B -TCGA-E2-A15T TCGA-E2-A15T-01 Luminal B -TCGA-AO-A03U TCGA-AO-A03U-01 NA -TCGA-B6-A0IE TCGA-B6-A0IE-01 NA -TCGA-A2-A0YK TCGA-A2-A0YK-01 NA -TCGA-E2-A108 TCGA-E2-A108-01 Claudin low -TCGA-AO-A0JB TCGA-AO-A0JB-01 NA -TCGA-AO-A03R TCGA-AO-A03R-01 NA -TCGA-AO-A03T TCGA-AO-A03T-01 NA -TCGA-AR-A1AO TCGA-AR-A1AO-01 Claudin low -TCGA-A2-A0YT TCGA-A2-A0YT-01 Luminal B -TCGA-AQ-A0Y5 TCGA-AQ-A0Y5-01 NA -TCGA-EW-A1P8 TCGA-EW-A1P8-01 NA -TCGA-E2-A1LK TCGA-E2-A1LK-01 NA -TCGA-BH-A1EY TCGA-BH-A1EY-01 NA -TCGA-BH-A1F8 TCGA-BH-A1F8-01 NA -TCGA-BH-A1F2 TCGA-BH-A1F2-01 NA -TCGA-BH-A1FD TCGA-BH-A1FD-01 NA -TCGA-BH-A1FH TCGA-BH-A1FH-01 NA -TCGA-BH-A203 TCGA-BH-A203-01 NA -TCGA-BH-A1FM TCGA-BH-A1FM-01 NA -TCGA-BH-A1EX TCGA-BH-A1EX-01 NA -TCGA-BH-A1FL TCGA-BH-A1FL-01 NA -TCGA-BH-A208 TCGA-BH-A208-01 NA -TCGA-GM-A2D9 TCGA-GM-A2D9-01 NA -TCGA-BH-A1FJ TCGA-BH-A1FJ-01 NA -TCGA-BH-A1EN TCGA-BH-A1EN-01 NA -TCGA-BH-A1FN TCGA-BH-A1FN-01 NA -TCGA-BH-A1FU TCGA-BH-A1FU-01 NA -TCGA-BH-A1FE TCGA-BH-A1FE-01 NA -TCGA-BH-A204 TCGA-BH-A204-01 NA -TCGA-BH-A1F5 TCGA-BH-A1F5-01 NA -TCGA-AR-A256 TCGA-AR-A256-01 NA -TCGA-BH-A1F6 TCGA-BH-A1F6-01 NA -TCGA-BH-A1FC TCGA-BH-A1FC-01 NA -TCGA-BH-A1FB TCGA-BH-A1FB-01 NA -TCGA-BH-A1FG TCGA-BH-A1FG-01 NA -TCGA-BH-A209 TCGA-BH-A209-01 NA -TCGA-BH-A1FR TCGA-BH-A1FR-01 NA -TCGA-AO-A1KS TCGA-AO-A1KS-01 NA -TCGA-A7-A13G TCGA-A7-A13G-01 NA -TCGA-D8-A1JS TCGA-D8-A1JS-01 NA -TCGA-A7-A0DC TCGA-A7-A0DC-01 Luminal A -TCGA-D8-A1JT TCGA-D8-A1JT-01 NA -TCGA-A7-A26E TCGA-A7-A26E-01 NA -TCGA-D8-A1JH TCGA-D8-A1JH-01 NA -TCGA-D8-A1JU TCGA-D8-A1JU-01 NA -TCGA-AO-A1KO TCGA-AO-A1KO-01 NA -TCGA-AO-A1KT TCGA-AO-A1KT-01 NA -TCGA-AO-A0J5 TCGA-AO-A0J5-01 Luminal A -TCGA-B6-A1KC TCGA-B6-A1KC-01 NA -TCGA-AO-A1KQ TCGA-AO-A1KQ-01 NA -TCGA-B6-A1KI TCGA-B6-A1KI-01 NA -TCGA-AO-A1KP TCGA-AO-A1KP-01 NA -TCGA-B6-A1KF TCGA-B6-A1KF-01 NA -TCGA-B6-A1KN TCGA-B6-A1KN-01 NA -TCGA-D8-A1XO TCGA-D8-A1XO-01 NA -TCGA-D8-A1XT TCGA-D8-A1XT-01 NA -TCGA-A1-A0SP TCGA-A1-A0SP-01 NA -TCGA-D8-A1J8 TCGA-D8-A1J8-01 NA -TCGA-D8-A1JF TCGA-D8-A1JF-01 NA -TCGA-D8-A1JG TCGA-D8-A1JG-01 NA -TCGA-D8-A1XS TCGA-D8-A1XS-01 NA -TCGA-A1-A0SB TCGA-A1-A0SB-01 NA -TCGA-A1-A0SF TCGA-A1-A0SF-01 NA -TCGA-A1-A0SG TCGA-A1-A0SG-01 NA -TCGA-A1-A0SI TCGA-A1-A0SI-01 NA -TCGA-A1-A0SN TCGA-A1-A0SN-01 NA -TCGA-A1-A0SQ TCGA-A1-A0SQ-01 NA -TCGA-A2-A1FV TCGA-A2-A1FV-01 NA -TCGA-A2-A1FW TCGA-A2-A1FW-01 NA -TCGA-A2-A1FX TCGA-A2-A1FX-01 NA -TCGA-A2-A1FZ TCGA-A2-A1FZ-01 NA -TCGA-A2-A1G0 TCGA-A2-A1G0-01 NA -TCGA-A2-A1G1 TCGA-A2-A1G1-01 NA -TCGA-A2-A1G4 TCGA-A2-A1G4-01 NA -TCGA-A2-A1G6 TCGA-A2-A1G6-01 NA -TCGA-A2-A259 TCGA-A2-A259-01 NA -TCGA-A2-A25A TCGA-A2-A25A-01 NA -TCGA-A2-A25B TCGA-A2-A25B-01 NA -TCGA-A2-A25C TCGA-A2-A25C-01 NA -TCGA-A2-A25D TCGA-A2-A25D-01 NA -TCGA-A2-A25E TCGA-A2-A25E-01 NA -TCGA-A2-A25F TCGA-A2-A25F-01 NA -TCGA-A7-A26F TCGA-A7-A26F-01 NA -TCGA-A7-A26G TCGA-A7-A26G-01 NA -TCGA-A7-A26H TCGA-A7-A26H-01 NA -TCGA-A7-A26I TCGA-A7-A26I-01 NA -TCGA-A7-A26J TCGA-A7-A26J-01 NA -TCGA-A8-A08S TCGA-A8-A08S-01 Luminal B -TCGA-A8-A09E TCGA-A8-A09E-01 Luminal B -TCGA-A8-A09K TCGA-A8-A09K-01 Luminal B -TEST-A23C TEST-A23C-01 NA -TEST-A23E TEST-A23E-01 NA -TEST-A23H TEST-A23H-01 NA -TCGA-AO-A1KR TCGA-AO-A1KR-01 NA -TCGA-AQ-A1H2 TCGA-AQ-A1H2-01 NA -TCGA-AQ-A1H3 TCGA-AQ-A1H3-01 NA -TCGA-AR-A24H TCGA-AR-A24H-01 NA -TCGA-AR-A24K TCGA-AR-A24K-01 NA -TCGA-AR-A24L TCGA-AR-A24L-01 NA -TCGA-AR-A24M TCGA-AR-A24M-01 NA -TCGA-AR-A24N TCGA-AR-A24N-01 NA -TCGA-AR-A24O TCGA-AR-A24O-01 NA -TCGA-AR-A24P TCGA-AR-A24P-01 NA -TCGA-AR-A24Q TCGA-AR-A24Q-01 NA -TCGA-AR-A24R TCGA-AR-A24R-01 NA -TCGA-AR-A24S TCGA-AR-A24S-01 NA -TCGA-AR-A24T TCGA-AR-A24T-01 NA -TCGA-AR-A24U TCGA-AR-A24U-01 NA -TCGA-AR-A24V TCGA-AR-A24V-01 NA -TCGA-AR-A24X TCGA-AR-A24X-01 NA -TCGA-AR-A24Z TCGA-AR-A24Z-01 NA -TCGA-AR-A250 TCGA-AR-A250-01 NA -TCGA-AR-A251 TCGA-AR-A251-01 NA -TCGA-AR-A252 TCGA-AR-A252-01 NA -TCGA-AR-A254 TCGA-AR-A254-01 NA -TCGA-AR-A255 TCGA-AR-A255-01 NA -TCGA-BH-A0B2 TCGA-BH-A0B2-01 Luminal A -TCGA-BH-A0DV TCGA-BH-A0DV-01 NA -TCGA-BH-A201 TCGA-BH-A201-01 NA -TCGA-BH-A202 TCGA-BH-A202-01 NA -TCGA-BH-A28Q TCGA-BH-A28Q-01 NA -TCGA-C8-A1HE TCGA-C8-A1HE-01 NA -TCGA-C8-A1HJ TCGA-C8-A1HJ-01 NA -TCGA-C8-A1HK TCGA-C8-A1HK-01 NA -TCGA-C8-A1HO TCGA-C8-A1HO-01 NA -TCGA-C8-A26V TCGA-C8-A26V-01 NA -TCGA-C8-A26W TCGA-C8-A26W-01 NA -TCGA-C8-A26X TCGA-C8-A26X-01 NA -TCGA-C8-A26Y TCGA-C8-A26Y-01 NA -TCGA-C8-A26Z TCGA-C8-A26Z-01 NA -TCGA-C8-A273 TCGA-C8-A273-01 NA -TCGA-C8-A274 TCGA-C8-A274-01 NA -TCGA-C8-A275 TCGA-C8-A275-01 NA -TCGA-C8-A278 TCGA-C8-A278-01 NA -TCGA-C8-A27A TCGA-C8-A27A-01 NA -TCGA-C8-A27B TCGA-C8-A27B-01 NA -TCGA-D8-A146 TCGA-D8-A146-01 Luminal A -TCGA-D8-A1J9 TCGA-D8-A1J9-01 NA -TCGA-D8-A1JA TCGA-D8-A1JA-01 NA -TCGA-D8-A1JB TCGA-D8-A1JB-01 NA -TCGA-D8-A1JC TCGA-D8-A1JC-01 NA -TCGA-D8-A1JD TCGA-D8-A1JD-01 NA -TCGA-D8-A1JE TCGA-D8-A1JE-01 NA -TCGA-D8-A1JI TCGA-D8-A1JI-01 NA -TCGA-D8-A1JJ TCGA-D8-A1JJ-01 NA -TCGA-D8-A1JK TCGA-D8-A1JK-01 NA -TCGA-D8-A1JL TCGA-D8-A1JL-01 NA -TCGA-D8-A1JM TCGA-D8-A1JM-01 NA -TCGA-D8-A1JN TCGA-D8-A1JN-01 NA -TCGA-D8-A1JP TCGA-D8-A1JP-01 NA -TCGA-D8-A1X5 TCGA-D8-A1X5-01 NA -TCGA-D8-A1X6 TCGA-D8-A1X6-01 NA -TCGA-D8-A1X7 TCGA-D8-A1X7-01 NA -TCGA-D8-A1X8 TCGA-D8-A1X8-01 NA -TCGA-D8-A1X9 TCGA-D8-A1X9-01 NA -TCGA-D8-A1XA TCGA-D8-A1XA-01 NA -TCGA-D8-A1XB TCGA-D8-A1XB-01 NA -TCGA-D8-A1XC TCGA-D8-A1XC-01 NA -TCGA-D8-A1XD TCGA-D8-A1XD-01 NA -TCGA-D8-A1XF TCGA-D8-A1XF-01 NA -TCGA-D8-A1XG TCGA-D8-A1XG-01 NA -TCGA-D8-A1XJ TCGA-D8-A1XJ-01 NA -TCGA-D8-A1XK TCGA-D8-A1XK-01 NA -TCGA-D8-A1XL TCGA-D8-A1XL-01 NA -TCGA-D8-A1XM TCGA-D8-A1XM-01 NA -TCGA-D8-A1XQ TCGA-D8-A1XQ-01 NA -TCGA-D8-A1XR TCGA-D8-A1XR-01 NA -TCGA-D8-A1XU TCGA-D8-A1XU-01 NA -TCGA-D8-A1XV TCGA-D8-A1XV-01 NA -TCGA-D8-A1XW TCGA-D8-A1XW-01 NA -TCGA-D8-A1XY TCGA-D8-A1XY-01 NA -TCGA-D8-A1XZ TCGA-D8-A1XZ-01 NA -TCGA-D8-A1Y0 TCGA-D8-A1Y0-01 NA -TCGA-D8-A1Y1 TCGA-D8-A1Y1-01 NA -TCGA-D8-A1Y2 TCGA-D8-A1Y2-01 NA -TCGA-D8-A1Y3 TCGA-D8-A1Y3-01 NA -TCGA-D8-A27E TCGA-D8-A27E-01 NA -TCGA-D8-A27F TCGA-D8-A27F-01 NA -TCGA-D8-A27G TCGA-D8-A27G-01 NA -TCGA-D8-A27H TCGA-D8-A27H-01 NA -TCGA-D8-A27I TCGA-D8-A27I-01 NA -TCGA-D8-A27K TCGA-D8-A27K-01 NA -TCGA-D8-A27L TCGA-D8-A27L-01 NA -TCGA-D8-A27M TCGA-D8-A27M-01 NA -TCGA-D8-A27N TCGA-D8-A27N-01 NA -TCGA-D8-A27P TCGA-D8-A27P-01 NA -TCGA-D8-A27R TCGA-D8-A27R-01 NA -TCGA-D8-A27T TCGA-D8-A27T-01 NA -TCGA-D8-A27V TCGA-D8-A27V-01 NA -TCGA-D8-A27W TCGA-D8-A27W-01 NA -TCGA-E2-A1IE TCGA-E2-A1IE-01 NA -TCGA-E2-A1IF TCGA-E2-A1IF-01 NA -TCGA-E2-A1IG TCGA-E2-A1IG-01 NA -TCGA-E2-A1IH TCGA-E2-A1IH-01 NA -TCGA-E2-A1II TCGA-E2-A1II-01 NA -TCGA-E2-A1IJ TCGA-E2-A1IJ-01 NA -TCGA-E2-A1IK TCGA-E2-A1IK-01 NA -TCGA-E2-A1IL TCGA-E2-A1IL-01 NA -TCGA-E2-A1IN TCGA-E2-A1IN-01 NA -TCGA-E2-A1IO TCGA-E2-A1IO-01 NA -TCGA-E2-A1IP TCGA-E2-A1IP-01 NA -TCGA-E2-A1IU TCGA-E2-A1IU-01 NA -TCGA-E2-A1L6 TCGA-E2-A1L6-01 NA -TCGA-E2-A1L7 TCGA-E2-A1L7-01 NA -TCGA-E2-A1L8 TCGA-E2-A1L8-01 NA -TCGA-E2-A1L9 TCGA-E2-A1L9-01 NA -TCGA-E2-A1LA TCGA-E2-A1LA-01 NA -TCGA-E2-A1LB TCGA-E2-A1LB-01 NA -TCGA-E2-A1LG TCGA-E2-A1LG-01 NA -TCGA-E2-A1LH TCGA-E2-A1LH-01 NA -TCGA-E2-A1LI TCGA-E2-A1LI-01 NA -TCGA-E2-A1LL TCGA-E2-A1LL-01 NA -TCGA-E2-A1LS TCGA-E2-A1LS-01 NA -TCGA-E9-A1N3 TCGA-E9-A1N3-01 NA -TCGA-E9-A1N4 TCGA-E9-A1N4-01 NA -TCGA-E9-A1N5 TCGA-E9-A1N5-01 NA -TCGA-E9-A1N6 TCGA-E9-A1N6-01 NA -TCGA-E9-A1N8 TCGA-E9-A1N8-01 NA -TCGA-E9-A1N9 TCGA-E9-A1N9-01 NA -TCGA-E9-A1NA TCGA-E9-A1NA-01 NA -TCGA-E9-A1NC TCGA-E9-A1NC-01 NA -TCGA-E9-A1ND TCGA-E9-A1ND-01 NA -TCGA-E9-A1NE TCGA-E9-A1NE-01 NA -TCGA-E9-A1NF TCGA-E9-A1NF-01 NA -TCGA-E9-A1NG TCGA-E9-A1NG-01 NA -TCGA-E9-A1NH TCGA-E9-A1NH-01 NA -TCGA-E9-A1NI TCGA-E9-A1NI-01 NA -TCGA-E9-A1QZ TCGA-E9-A1QZ-01 NA -TCGA-E9-A1R0 TCGA-E9-A1R0-01 NA -TCGA-E9-A1R2 TCGA-E9-A1R2-01 NA -TCGA-E9-A1R3 TCGA-E9-A1R3-01 NA -TCGA-E9-A1R4 TCGA-E9-A1R4-01 NA -TCGA-E9-A1R5 TCGA-E9-A1R5-01 NA -TCGA-E9-A1R6 TCGA-E9-A1R6-01 NA -TCGA-E9-A1R7 TCGA-E9-A1R7-01 NA -TCGA-E9-A1RA TCGA-E9-A1RA-01 NA -TCGA-E9-A1RB TCGA-E9-A1RB-01 NA -TCGA-E9-A1RC TCGA-E9-A1RC-01 NA -TCGA-E9-A1RD TCGA-E9-A1RD-01 NA -TCGA-E9-A1RE TCGA-E9-A1RE-01 NA -TCGA-E9-A1RF TCGA-E9-A1RF-01 NA -TCGA-E9-A1RG TCGA-E9-A1RG-01 NA -TCGA-E9-A1RH TCGA-E9-A1RH-01 NA -TCGA-E9-A1RI TCGA-E9-A1RI-01 NA -TCGA-E9-A226 TCGA-E9-A226-01 NA -TCGA-E9-A227 TCGA-E9-A227-01 NA -TCGA-E9-A228 TCGA-E9-A228-01 NA -TCGA-E9-A229 TCGA-E9-A229-01 NA -TCGA-E9-A22A TCGA-E9-A22A-01 NA -TCGA-E9-A22B TCGA-E9-A22B-01 NA -TCGA-E9-A22D TCGA-E9-A22D-01 NA -TCGA-E9-A22E TCGA-E9-A22E-01 NA -TCGA-E9-A22G TCGA-E9-A22G-01 NA -TCGA-E9-A22H TCGA-E9-A22H-01 NA -TCGA-E9-A243 TCGA-E9-A243-01 NA -TCGA-E9-A244 TCGA-E9-A244-01 NA -TCGA-E9-A245 TCGA-E9-A245-01 NA -TCGA-E9-A247 TCGA-E9-A247-01 NA -TCGA-E9-A248 TCGA-E9-A248-01 NA -TCGA-E9-A249 TCGA-E9-A249-01 NA -TCGA-E9-A24A TCGA-E9-A24A-01 NA -TCGA-EW-A1IW TCGA-EW-A1IW-01 NA -TCGA-EW-A1IX TCGA-EW-A1IX-01 NA -TCGA-EW-A1IY TCGA-EW-A1IY-01 NA -TCGA-EW-A1IZ TCGA-EW-A1IZ-01 NA -TCGA-EW-A1J1 TCGA-EW-A1J1-01 NA -TCGA-EW-A1J2 TCGA-EW-A1J2-01 NA -TCGA-EW-A1J3 TCGA-EW-A1J3-01 NA -TCGA-EW-A1J5 TCGA-EW-A1J5-01 NA -TCGA-EW-A1J6 TCGA-EW-A1J6-01 NA -TCGA-EW-A1OV TCGA-EW-A1OV-01 NA -TCGA-EW-A1OW TCGA-EW-A1OW-01 NA -TCGA-EW-A1OX TCGA-EW-A1OX-01 NA -TCGA-EW-A1OY TCGA-EW-A1OY-01 NA -TCGA-EW-A1OZ TCGA-EW-A1OZ-01 NA -TCGA-EW-A1P0 TCGA-EW-A1P0-01 NA -TCGA-EW-A1P1 TCGA-EW-A1P1-01 NA -TCGA-EW-A1P3 TCGA-EW-A1P3-01 NA -TCGA-EW-A1P4 TCGA-EW-A1P4-01 NA -TCGA-EW-A1P5 TCGA-EW-A1P5-01 NA -TCGA-EW-A1P6 TCGA-EW-A1P6-01 NA -TCGA-EW-A1P7 TCGA-EW-A1P7-01 NA -TCGA-EW-A1PA TCGA-EW-A1PA-01 NA -TCGA-EW-A1PB TCGA-EW-A1PB-01 NA -TCGA-EW-A1PD TCGA-EW-A1PD-01 NA -TCGA-EW-A1PE TCGA-EW-A1PE-01 NA -TCGA-EW-A1PF TCGA-EW-A1PF-01 NA -TCGA-EW-A1PG TCGA-EW-A1PG-01 NA -TCGA-EW-A1PH TCGA-EW-A1PH-01 NA -TCGA-EW-A2FS TCGA-EW-A2FS-01 NA -TCGA-EW-A2FV TCGA-EW-A2FV-01 NA -TCGA-EW-A2FW TCGA-EW-A2FW-01 NA -TCGA-GM-A2DA TCGA-GM-A2DA-01 NA -TCGA-GM-A2DB TCGA-GM-A2DB-01 NA -TCGA-GM-A2DC TCGA-GM-A2DC-01 NA -TCGA-GM-A2DD TCGA-GM-A2DD-01 NA -TCGA-GM-A2DF TCGA-GM-A2DF-01 NA -TCGA-GM-A2DH TCGA-GM-A2DH-01 NA -TCGA-GM-A2DI TCGA-GM-A2DI-01 NA -TCGA-GM-A2DK TCGA-GM-A2DK-01 NA -TCGA-GM-A2DL TCGA-GM-A2DL-01 NA -TCGA-GM-A2DM TCGA-GM-A2DM-01 NA -TCGA-GM-A2DN TCGA-GM-A2DN-01 NA -TCGA-GM-A2DO TCGA-GM-A2DO-01 NA -TCGA-AR-A24W TCGA-AR-A24W-01 NA -TEST-A2B8 TEST-A2B8-01 NA -TEST-A2FF TEST-A2FF-01 NA -TEST-A2FB TEST-A2FB-01 NA -TEST-A2FG TEST-A2FG-01 NA -TCGA-GI-A2C8 TCGA-GI-A2C8-01 NA -TCGA-E9-A295 TCGA-E9-A295-01 NA -TCGA-E2-A15E TCGA-E2-A15E-06 NA -TCGA-A2-A0T2 TCGA-A2-A0T2-01 NA diff --git a/core/src/test/scripts/test_data/study_quotes/meta_CNA.txt b/core/src/test/scripts/test_data/study_quotes/meta_CNA.txt deleted file mode 100644 index e8499af064a..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/meta_CNA.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: COPY_NUMBER_ALTERATION -datatype: DISCRETE -stable_id: gistic -show_profile_in_analysis_tab: true -profile_description: Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification. -profile_name: Putative copy-number alterations from GISTIC -data_filename: data_CNA.txt diff --git a/core/src/test/scripts/test_data/study_quotes/meta_mutations_extended.txt b/core/src/test/scripts/test_data/study_quotes/meta_mutations_extended.txt deleted file mode 100644 index 813510be072..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/meta_mutations_extended.txt +++ /dev/null @@ -1,9 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: MUTATION_EXTENDED -datatype: MAF -stable_id: mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations -data_filename: brca_tcga_pub.maf -swissprot_identifier: name diff --git a/core/src/test/scripts/test_data/study_quotes/meta_patients.txt b/core/src/test/scripts/test_data/study_quotes/meta_patients.txt deleted file mode 100644 index 678f148707d..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/meta_patients.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: CLINICAL -datatype: PATIENT_ATTRIBUTES -data_filename: data_patients.txt diff --git a/core/src/test/scripts/test_data/study_quotes/meta_samples.txt b/core/src/test/scripts/test_data/study_quotes/meta_samples.txt deleted file mode 100644 index 4ec275f30d4..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/meta_samples.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: study_es_0 -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -data_filename: data_samples.txt diff --git a/core/src/test/scripts/test_data/study_quotes/meta_study.txt b/core/src/test/scripts/test_data/study_quotes/meta_study.txt deleted file mode 100644 index a6cfc9cc22f..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/meta_study.txt +++ /dev/null @@ -1,8 +0,0 @@ -type_of_cancer: brca -cancer_study_identifier: study_es_0 -name: Test study es_0 -description: Test study es_0 -citation: The Hyve -pmid: 23000897 -groups: PUBLIC;GDAC;SU2C-PI3K -add_global_case_list: true \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_quotes/result_report.html b/core/src/test/scripts/test_data/study_quotes/result_report.html deleted file mode 100644 index 76c1ad842e6..00000000000 --- a/core/src/test/scripts/test_data/study_quotes/result_report.html +++ /dev/null @@ -1,990 +0,0 @@ - - - - - - - - - - - - - cBioPortal validation report: study in 'test_data/study_quotes/' - - - - - -
    -
    -
    -

    cBioPortal validation report

    -

    Study directory:
    test_data/study_quotes/

    -

    For details, please see the documentation on file formats supported by cBioPortal

    -

    cBioPortal version unknown -- offline instance

    -
    -
    - - -
    -
    -
    - Validation status: - - Failed - -
    - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugReading portal information from test_data/api_json_system_tests/cancer-types.json
    DebugReading portal information from test_data/api_json_system_tests/genes.json
    DebugReading portal information from test_data/api_json_system_tests/genesets.json
    DebugReading portal information from test_data/api_json_system_tests/genesets_version.json
    DebugReading portal information from test_data/api_json_system_tests/gene-panels.json
    DebugReading portal information from test_data/api_json_system_tests/genesaliases.json
    DebugValidating case lists
    InfoValidation of case list folder complete
    InfoValidation complete
    -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    WarningFound quotation marks around field(s) in the first rows of the file. Fields and values surrounded by quotation marks might be incorrectly loaded (i.e. with the quotation marks included as part of the value)quotation marks of type: ["]
    Error4, 56The end position of this variant is not an integer"46707888, "116247760"
    Info7, 9, 14Line will not be loaded due to the variant classification filter. Filtered types: [Silent, Intron, 3'UTR, 3'Flank, 5'UTR, 5'Flank, IGR, RNA]Silent
    Error84The reference genome in column NCBI_Build does not correspond with the reference genome specified for this study (GRCh37)GRCh37"
    Warning8Value in 'Verification_Status' not in MAF format"Unknown
    InfoValidation of file complete
    InfoRead 15 lines. Lines with warning: 1. Lines with error: 3
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    ErrorSample ID not defined in clinical file"TCGA-A1-A0SE-01", "TCGA-A1-A0SF-01, TCGA-AR-A1AR-01
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    WarningFound quotation marks around field(s) in the first rows of the file. Fields and values surrounded by quotation marks might be incorrectly loaded (i.e. with the quotation marks included as part of the value)quotation marks of type: ["]
    Error1315Sample ID not defined in clinical fileTCGA-AR-A1AR-01
    ErrorInvalid column header, file cannot be parsed
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Error19, 243, 5
    Column names: OS_MONTHS, DFS_MONTHS
    Value of numeric attribute is not a real number"8.77", "12.25, 12.25"
    Error4321PATIENT_ID and SAMPLE_ID can only contain letters, numbers, points, underscores and/or hyphens"TCGA-BH-A0HW"
    Warning4321Clinical data defined for a patient with no samples"TCGA-BH-A0HW"
    WarningMissing clinical data for a patient associated with samplesTCGA-BH-A0HW
    InfoValidation of file complete
    InfoRead 830 lines. Lines with warning: 1. Lines with error: 3
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    WarningFound quotation marks around field(s) in the first rows of the file. Fields and values surrounded by quotation marks might be incorrectly loaded (i.e. with the quotation marks included as part of the value)quotation marks of type: ["]
    Error9, 122PATIENT_ID and SAMPLE_ID can only contain letters, numbers, points, underscores and/or hyphens"TCGA-AR-A1AR-01", "TCGA-B6-A0I6-01
    InfoValidation of file complete
    InfoRead 831 lines. Lines with warning: 0. Lines with error: 2
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    InfoNo reference genome specified -- using default (hg19)
    -
    -
    -
    - - -
    -
    -
    -
    -
    -

    Legend

    -
    -
    -

    - Click on a filename below to see a table of messages about the data - in the file. The colors in the tables have the following meanings: -

    - - - - - - - - - - - - - - - - - - - -
    ErrorError: cBioPortal will not know how to load this, please revise or remove
    WarningWarning: possible cause of confusion, please check whether this is intended
    InfoInfo: this looks good, no action required
    DebugVerbose output: details on the progress of the validation script
    -
    -
    -
    - - \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_various_issues/brca_tcga_pub.maf b/core/src/test/scripts/test_data/study_various_issues/brca_tcga_pub.maf deleted file mode 100644 index 10cbf4ea306..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/brca_tcga_pub.maf +++ /dev/null @@ -1,16 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id Center NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 dbSNP_RS dbSNP_Val_Status Tumor_Sample_Barcode Matched_Norm_Sample_Barcode Match_Norm_Seq_Allele1 Match_Norm_Seq_Allele2 Tumor_Validation_Allele1 Tumor_Validation_Allele2 Match_Norm_Validation_Allele1 Match_Norm_Validation_Allele2 Verification_Status Validation_Status Mutation_Status Sequencing_Phase Sequence_Source Validation_Method Score BAM_File Sequencer ONCOTATOR_COSMIC_OVERLAPPING ONCOTATOR_DBSNP_RS ONCOTATOR_DBSNP_VAL_STATUS ONCOTATOR_VARIANT_CLASSIFICATION HGVSp_Short SWISSPROT ONCOTATOR_REFSEQ_MRNA_ID ONCOTATOR_REFSEQ_PROT_ID ONCOTATOR_UNIPROT_ENTRY_NAME ONCOTATOR_UNIPROT_ACCESSION ONCOTATOR_CODON_CHANGE ONCOTATOR_TRANSCRIPT_CHANGE ONCOTATOR_EXON_AFFECTED ONCOTATOR_PROTEIN_POS_START ONCOTATOR_PROTEIN_POS_END ONCOTATOR_VARIANT_CLASSIFICATION_BEST_EFFECT ONCOTATOR_PROTEIN_CHANGE_BEST_EFFECT ONCOTATOR_GENE_SYMBOL_BEST_EFFECT ONCOTATOR_REFSEQ_MRNA_ID_BEST_EFFECT ONCOTATOR_REFSEQ_PROT_ID_BEST_EFFECT ONCOTATOR_UNIPROT_ENTRY_NAME_BEST_EFFECT ONCOTATOR_UNIPROT_ACCESSION_BEST_EFFECT ONCOTATOR_CODON_CHANGE_BEST_EFFECT ONCOTATOR_TRANSCRIPT_CHANGE_BEST_EFFECT ONCOTATOR_EXON_AFFECTED_BEST_EFFECT ONCOTATOR_PROTEIN_POS_START_BEST_EFFECT ONCOTATOR_PROTEIN_POS_END_BEST_EFFECT MA:FImpact MA:FIS MA:protein.change MA:link.MSA MA:link.PDB MA:link.var chromosome_name_WU Protein_position stop_WU reference_WU variant_WU type_WU gene_name_WU transcript_name_WU transcript_species_WU transcript_source_WU transcript_version_WU strand_WU transcript_status_WU trv_type_WU c_position_WU amino_acid_change_WU ucsc_cons_WU domain_WU all_domains_WU deletion_substructures_WU annotation_errors_WU -A1CF 29974 genome.wustl.edu 37 10 52573692 52573692 + Missense_Mutation SNP G G T novel unknown TCGA-B6-A0RS-01 TCGA-B6-A0RS-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.D424E Q9NQ94 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(1270-1272)GAC>GAA c.1272C>A 10 424 424 Missense_Mutation p.D432E A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(1294-1296)GAC>GAA c.1296C>A 12 432 432 neutral 0.345 D424E getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=298&re=497&var=D424E NA getma.org/?cm=var&var=hg19,10,52573692,G,T&fts=all 10 52573692 52573692 G T SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.1272 p.D424E 0.768 NULL superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595854 52595854 + Missense_Mutation SNP G G A novel unknown TCGA-BH-A0HP-01 TCGA-BH-A0HP-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.A195V Q9NQ94 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(583-585)GCG>GTG c.584C>T 6 195 195 Missense_Mutation p.A203V A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(607-609)GCG>GTG c.608C>T 8 203 203 medium 2.955 A195V getma.org/?cm=msa&ty=f&p=A1CF_HUMAN&rb=138&re=203&var=A195V getma.org/pdb.php?prot=A1CF_HUMAN&from=138&to=203&var=A195V getma.org/?cm=var&var=hg19,10,52595854,G,A&fts=all 10 52595854 52595854 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed missense c.584 p.A195V 1.000 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A1CF 29974 genome.wustl.edu 37 10 52595937 52595937 + Silent SNP G G A novel unknown TCGA-BH-A18P-01 TCGA-BH-A18P-11 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.I167I Q9NQ94 NM_138932 NP_620310 A1CF_HUMAN Q9NQ94 c.(499-501)ATC>ATT c.501C>T 6 167 167 Silent p.I175I A1CF NM_138933 NP_620311 A1CF_HUMAN Q9NQ94 c.(523-525)ATC>ATT c.525C>T 8 175 175 NA NA NA NA NA NA 10 52595937 52595937 G A SNP A1CF NM_138932 human genbank 57_37b -1 reviewed silent c.501 p.I167 0.615 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1 superfamily_RNA-binding domain RBD,HMMSmart_SM00360,HMMPfam_RRM_1,superfamily_dsRNA-binding domain-like - no_errors -A2M 2 genome.wustl.edu 37 12 9230409 9230409 + Missense_Mutation SNP T T C novel unknown TCGA-BH-A18H-01 TCGA-BH-A18H-10 T T NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.Y1055C P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 Missense_Mutation p.Y1055C A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(3163-3165)TAC>TGC c.3164A>G 26 1055 1055 high 3.73 Y1055C getma.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=1010&re=1266&var=Y1055C getma.org/pdb.php?prot=A2MG_HUMAN&from=1010&to=1266&var=Y1055C getma.org/?cm=var&var=hg19,12,9230409,T,C&fts=all 12 9230409 9230409 T C SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.3164 p.Y1055C 0.143 superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_A2M_comp PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9242995 9242995 + Silent SNP G G A novel unknown TCGA-C8-A138-01 TCGA-C8-A138-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.N851N P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 Silent p.N851N A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2551-2553)AAC>AAT c.2553C>T 20 851 851 NA NA NA NA NA NA 12 9242995 9242995 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2553 p.N851 0.003 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9246090 9246090 + Silent SNP C C T novel unknown TCGA-A2-A0EY-01 TCGA-A2-A0EY-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.E737E P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 Silent p.E737E A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(2209-2211)GAG>GAA c.2211G>A 18 737 737 NA NA NA NA NA NA 12 9246090 9246090 C T SNP A2M NM_000014 human genbank 57_37b -1 reviewed silent c.2211 p.E737 1.000 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9251298 9251298 + Nonsense_Mutation SNP G G A novel unknown TCGA-A8-A08G-01 TCGA-A8-A08G-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Nonsense_Mutation p.R586* P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 Nonsense_Mutation p.R586* A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1756-1758)CGA>TGA c.1756C>T 15 586 586 NA 0.0 R586* NA NA getma.org/?cm=var&var=hg19,12,9251298,G,A&fts=all 12 9251298 9251298 G A SNP A2M NM_000014 human genbank 57_37b -1 reviewed nonsense c.1756 p.R586* 0.003 HMMPfam_A2M_N_2 PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2M 2 genome.wustl.edu 37 12 9256962 9256962 + Missense_Mutation SNP G G T novel unknown TCGA-B6-A0IQ-01 TCGA-B6-A0IQ-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.P380Q P01023 NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1138-1140)CCA>CAA c.1139C>A 11 380 380 Missense_Mutation p.P380Q A2M NM_000014 NP_000005 A2MG_HUMAN P01023 c.(1138-1140)CCA>CAA c.1139C>A 11 380 380 medium 2.625 P380Q getma.org/?cm=msa&ty=f&p=A2MG_HUMAN&rb=222&re=421&var=P380Q getma.org/pdb.php?prot=A2MG_HUMAN&from=222&to=421&var=P380Q getma.org/?cm=var&var=hg19,12,9256962,G,T&fts=all 12 9256962 9256962 G T SNP A2M NM_000014 human genbank 57_37b -1 reviewed missense c.1139 p.P380Q 0.957 NULL PatternScan_TONB_DEPENDENT_REC_1,HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2ML1 144568 genome.wustl.edu 37 12 8975820 8975820 + Silent SNP C C A novel unknown TCGA-C8-A12Y-01 TCGA-C8-A12Y-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.S35S A8K2U0 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(103-105)TCC>TCA c.105C>A 2 35 35 Silent p.S35S A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(103-105)TCC>TCA c.105C>A 2 35 35 NA NA NA NA NA NA 12 8975820 8975820 C A SNP A2ML1 NM_144670 human genbank 57_37b +1 validated silent c.105 p.S35 0.801 HMMPfam_A2M_N HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2ML1 144568 genome.wustl.edu 37 12 8994108 8994108 + Missense_Mutation SNP G G C novel unknown TCGA-A1-A0SO-01 TCGA-A1-A0SO-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.W408C A8K2U0 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1222-1224)TGG>TGC c.1224G>C 11 408 408 Missense_Mutation p.W408C A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1222-1224)TGG>TGC c.1224G>C 11 408 408 medium 2.005 W408C getma.org/?cm=msa&ty=f&p=A2ML1_HUMAN&rb=239&re=438&var=W408C getma.org/pdb.php?prot=A2ML1_HUMAN&from=239&to=438&var=W408C getma.org/?cm=var&var=hg19,12,8994108,G,C&fts=all 12 8994108 8994108 G C SNP A2ML1 NM_144670 human genbank 57_37b +1 validated missense c.1224 p.W408C 0.995 NULL HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2ML1 144568 genome.wustl.edu 37 12 8995779 8995779 + Missense_Mutation SNP G G A novel unknown TCGA-A8-A08P-01 TCGA-A8-A08P-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.R433H A8K2U0 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1297-1299)CGT>CAT c.1298G>A 12 433 433 Missense_Mutation p.R433H A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1297-1299)CGT>CAT c.1298G>A 12 433 433 neutral 0.255 R433H getma.org/?cm=msa&ty=f&p=A2ML1_HUMAN&rb=239&re=438&var=R433H getma.org/pdb.php?prot=A2ML1_HUMAN&from=239&to=438&var=R433H getma.org/?cm=var&var=hg19,12,8995779,G,A&fts=all 12 8995779 8995779 G A SNP A2ML1 NM_144670 human genbank 57_37b +1 validated missense c.1298 p.R433H 0.108 NULL HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2ML1 144568 genome.wustl.edu 37 12 8995942 8995942 + Silent SNP C C T novel unknown TCGA-C8-A12T-01 TCGA-C8-A12T-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.I487I A8K2U0 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1459-1461)ATC>ATT c.1461C>T 12 487 487 Silent p.I487I A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1459-1461)ATC>ATT c.1461C>T 12 487 487 NA NA NA NA NA NA 12 8995942 8995942 C T SNP A2ML1 NM_144670 human genbank 57_37b +1 validated silent c.1461 p.I487 0.040 HMMPfam_A2M_N_2 HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2ML1 144568 genome.wustl.edu 37 12 8998791 8998791 + Silent SNP C C T novel unknown TCGA-BH-A0AV-01 TCGA-BH-A0AV-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.F552F A8K2U0 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1654-1656)TTC>TTT c.1656C>T 14 552 552 Silent p.F552F A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1654-1656)TTC>TTT c.1656C>T 14 552 552 NA NA NA NA NA NA 12 8998791 8998791 C T SNP A2ML1 NM_144670 human genbank 57_37b +1 validated silent c.1656 p.F552 0.669 HMMPfam_A2M_N_2 HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2ML1 144568 genome.wustl.edu 37 12 9000231 9000231 + Silent SNP G G A novel unknown TCGA-AN-A0FT-01 TCGA-AN-A0FT-10 G G NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Silent p.A590A A8K2U0 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1768-1770)GCG>GCA c.1770G>A 15 590 590 Silent p.A590A A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1768-1770)GCG>GCA c.1770G>A 15 590 590 NA NA NA NA NA NA 12 9000231 9000231 G A SNP A2ML1 NM_144670 human genbank 57_37b +1 validated silent c.1770 p.A590 0.000 HMMPfam_A2M_N_2 HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors -A2ML1 144568 genome.wustl.edu 37 12 9001389 9001389 + Missense_mUtAtioN SNP C C G novel unknown TCGA-BH-A0HP-01 TCGA-BH-A0HP-10 C C NA NA NA NA Unknown Untested Somatic Phase_IV Capture NA 1 dbGAP Illumina GAIIx NA NA NA Missense_Mutation p.S636C A8K2U0 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1906-1908)TCT>TGT c.1907C>G 16 636 636 Missense_Mutation p.S636C A2ML1 NM_144670 NP_653271 A2ML1_HUMAN A8K2U0 c.(1906-1908)TCT>TGT c.1907C>G 16 636 636 neutral -0.22 S636C getma.org/?cm=msa&ty=f&p=A2ML1_HUMAN&rb=602&re=735&var=S636C getma.org/pdb.php?prot=A2ML1_HUMAN&from=602&to=735&var=S636C getma.org/?cm=var&var=hg19,12,9001389,C,G&fts=all 12 9001389 9001389 C G SNP A2ML1 NM_144670 human genbank 57_37b +1 validated missense c.1907 p.S636C 0.165 NULL HMMPfam_A2M_N,HMMPfam_A2M_N_2,HMMPfam_A2M,superfamily_Terpenoid cyclases/Protein prenyltransferases,HMMPfam_Thiol-ester_cl,PatternScan_ALPHA_2_MACROGLOBULIN,HMMPfam_A2M_comp,superfamily_Alpha-macroglobulin receptor domain,HMMPfam_A2M_recep - no_errors diff --git a/core/src/test/scripts/test_data/study_various_issues/case_lists/cases_custom.txt b/core/src/test/scripts/test_data/study_various_issues/case_lists/cases_custom.txt deleted file mode 100644 index 839e0cba2d8..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/case_lists/cases_custom.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_custom -case_list_name: this is an optional custom case list -case_list_description: this is an optional custom case list -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SF-01 TCGA-A1-A0SG-01 TCGA-A1-A0SH-01 TCGA-A1-A0SI-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SN-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A1-A0SQ-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A2-A1FV-01 TCGA-A2-A1FW-01 TCGA-A2-A1FX-01 TCGA-A2-A1FZ-01 TCGA-A2-A1G0-01 TCGA-A2-A1G1-01 TCGA-A2-A1G4-01 TCGA-A2-A1G6-01 TCGA-A2-A259-01 TCGA-A2-A25A-01 TCGA-A2-A25B-01 TCGA-A2-A25C-01 TCGA-A2-A25D-01 TCGA-A2-A25E-01 TCGA-A2-A25F-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A7-A13G-01 TCGA-A7-A26E-01 TCGA-A7-A26F-01 TCGA-A7-A26G-01 TCGA-A7-A26H-01 TCGA-A7-A26I-01 TCGA-A7-A26J-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TCGA-AC-A23C-01 TCGA-AC-A23E-01 TCGA-AC-A23H-01 TCGA-AC-A2B8-01 TCGA-AC-A2FB-01 TCGA-AC-A2FF-01 TCGA-AC-A2FG-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AO-A1KO-01 TCGA-AO-A1KP-01 TCGA-AO-A1KQ-01 TCGA-AO-A1KR-01 TCGA-AO-A1KS-01 TCGA-AO-A1KT-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AQ-A0Y5-01 TCGA-AQ-A1H2-01 TCGA-AQ-A1H3-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-AR-A24H-01 TCGA-AR-A24K-01 TCGA-AR-A24L-01 TCGA-AR-A24M-01 TCGA-AR-A24N-01 TCGA-AR-A24O-01 TCGA-AR-A24P-01 TCGA-AR-A24Q-01 TCGA-AR-A24R-01 TCGA-AR-A24S-01 TCGA-AR-A24T-01 TCGA-AR-A24U-01 TCGA-AR-A24V-01 TCGA-AR-A24W-01 TCGA-AR-A24X-01 TCGA-AR-A24Z-01 TCGA-AR-A250-01 TCGA-AR-A251-01 TCGA-AR-A252-01 TCGA-AR-A254-01 TCGA-AR-A255-01 TCGA-AR-A256-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-B6-A1KC-01 TCGA-B6-A1KF-01 TCGA-B6-A1KI-01 TCGA-B6-A1KN-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DV-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EN-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1EX-01 TCGA-BH-A1EY-01 TCGA-BH-A1F0-01 TCGA-BH-A1F2-01 TCGA-BH-A1F5-01 TCGA-BH-A1F6-01 TCGA-BH-A1F8-01 TCGA-BH-A1FB-01 TCGA-BH-A1FC-01 TCGA-BH-A1FD-01 TCGA-BH-A1FE-01 TCGA-BH-A1FG-01 TCGA-BH-A1FH-01 TCGA-BH-A1FJ-01 TCGA-BH-A1FL-01 TCGA-BH-A1FM-01 TCGA-BH-A1FN-01 TCGA-BH-A1FR-01 TCGA-BH-A1FU-01 TCGA-BH-A201-01 TCGA-BH-A202-01 TCGA-BH-A203-01 TCGA-BH-A204-01 TCGA-BH-A208-01 TCGA-BH-A209-01 TCGA-BH-A28Q-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HE-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HJ-01 TCGA-C8-A1HK-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-C8-A1HO-01 TCGA-C8-A26V-01 TCGA-C8-A26W-01 TCGA-C8-A26X-01 TCGA-C8-A26Y-01 TCGA-C8-A26Z-01 TCGA-C8-A273-01 TCGA-C8-A274-01 TCGA-C8-A275-01 TCGA-C8-A278-01 TCGA-C8-A27A-01 TCGA-C8-A27B-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-D8-A1J8-01 TCGA-D8-A1J9-01 TCGA-D8-A1JA-01 TCGA-D8-A1JB-01 TCGA-D8-A1JC-01 TCGA-D8-A1JD-01 TCGA-D8-A1JE-01 TCGA-D8-A1JF-01 TCGA-D8-A1JG-01 TCGA-D8-A1JH-01 TCGA-D8-A1JI-01 TCGA-D8-A1JJ-01 TCGA-D8-A1JK-01 TCGA-D8-A1JL-01 TCGA-D8-A1JM-01 TCGA-D8-A1JN-01 TCGA-D8-A1JP-01 TCGA-D8-A1JS-01 TCGA-D8-A1JT-01 TCGA-D8-A1JU-01 TCGA-D8-A1X5-01 TCGA-D8-A1X6-01 TCGA-D8-A1X7-01 TCGA-D8-A1X8-01 TCGA-D8-A1X9-01 TCGA-D8-A1XA-01 TCGA-D8-A1XB-01 TCGA-D8-A1XC-01 TCGA-D8-A1XD-01 TCGA-D8-A1XF-01 TCGA-D8-A1XG-01 TCGA-D8-A1XJ-01 TCGA-D8-A1XK-01 TCGA-D8-A1XL-01 TCGA-D8-A1XM-01 TCGA-D8-A1XO-01 TCGA-D8-A1XQ-01 TCGA-D8-A1XR-01 TCGA-D8-A1XS-01 TCGA-D8-A1XT-01 TCGA-D8-A1XU-01 TCGA-D8-A1XV-01 TCGA-D8-A1XW-01 TCGA-D8-A1XY-01 TCGA-D8-A1XZ-01 TCGA-D8-A1Y0-01 TCGA-D8-A1Y1-01 TCGA-D8-A1Y2-01 TCGA-D8-A1Y3-01 TCGA-D8-A27E-01 TCGA-D8-A27F-01 TCGA-D8-A27G-01 TCGA-D8-A27H-01 TCGA-D8-A27I-01 TCGA-D8-A27K-01 TCGA-D8-A27L-01 TCGA-D8-A27M-01 TCGA-D8-A27N-01 TCGA-D8-A27P-01 TCGA-D8-A27R-01 TCGA-D8-A27T-01 TCGA-D8-A27V-01 TCGA-D8-A27W-01 TCGA-E2-A105-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 TCGA-E2-A1IE-01 TCGA-E2-A1IF-01 TCGA-E2-A1IG-01 TCGA-E2-A1IH-01 TCGA-E2-A1II-01 TCGA-E2-A1IJ-01 TCGA-E2-A1IK-01 TCGA-E2-A1IL-01 TCGA-E2-A1IN-01 TCGA-E2-A1IO-01 TCGA-E2-A1IU-01 TCGA-E2-A1L6-01 TCGA-E2-A1L7-01 TCGA-E2-A1L8-01 TCGA-E2-A1L9-01 TCGA-E2-A1LA-01 TCGA-E2-A1LB-01 TCGA-E2-A1LG-01 TCGA-E2-A1LH-01 TCGA-E2-A1LI-01 TCGA-E2-A1LK-01 TCGA-E2-A1LL-01 TCGA-E9-A1N3-01 TCGA-E9-A1N4-01 TCGA-E9-A1N5-01 TCGA-E9-A1N6-01 TCGA-E9-A1N8-01 TCGA-E9-A1N9-01 TCGA-E9-A1NA-01 TCGA-E9-A1NC-01 TCGA-E9-A1ND-01 TCGA-E9-A1NE-01 TCGA-E9-A1NF-01 TCGA-E9-A1NG-01 TCGA-E9-A1NH-01 TCGA-E9-A1NI-01 TCGA-E9-A1QZ-01 TCGA-E9-A1R0-01 TCGA-E9-A1R2-01 TCGA-E9-A1R3-01 TCGA-E9-A1R4-01 TCGA-E9-A1R5-01 TCGA-E9-A1R6-01 TCGA-E9-A1R7-01 TCGA-E9-A1RA-01 TCGA-E9-A1RB-01 TCGA-E9-A1RC-01 TCGA-E9-A1RD-01 TCGA-E9-A1RE-01 TCGA-E9-A1RF-01 TCGA-E9-A1RG-01 TCGA-E9-A1RH-01 TCGA-E9-A1RI-01 TCGA-E9-A226-01 TCGA-E9-A227-01 TCGA-E9-A228-01 TCGA-E9-A229-01 TCGA-E9-A22A-01 TCGA-E9-A22B-01 TCGA-E9-A22D-01 TCGA-E9-A22E-01 TCGA-E9-A22G-01 TCGA-E9-A22H-01 TCGA-E9-A243-01 TCGA-E9-A244-01 TCGA-E9-A245-01 TCGA-E9-A247-01 TCGA-E9-A248-01 TCGA-E9-A249-01 TCGA-E9-A24A-01 TCGA-E9-A295-01 TCGA-EW-A1IW-01 TCGA-EW-A1IX-01 TCGA-EW-A1IY-01 TCGA-EW-A1IZ-01 TCGA-EW-A1J1-01 TCGA-EW-A1J2-01 TCGA-EW-A1J3-01 TCGA-EW-A1J5-01 TCGA-EW-A1J6-01 TCGA-EW-A1OV-01 TCGA-EW-A1OW-01 TCGA-EW-A1OX-01 TCGA-EW-A1OY-01 TCGA-EW-A1OZ-01 TCGA-EW-A1P0-01 TCGA-EW-A1P1-01 TCGA-EW-A1P3-01 TCGA-EW-A1P4-01 TCGA-EW-A1P5-01 TCGA-EW-A1P6-01 TCGA-EW-A1P7-01 TCGA-EW-A1P8-01 TCGA-EW-A1PA-01 TCGA-EW-A1PB-01 TCGA-EW-A1PD-01 TCGA-EW-A1PE-01 TCGA-EW-A1PF-01 TCGA-EW-A1PG-01 TCGA-EW-A1PH-01 TCGA-EW-A2FS-01 TCGA-EW-A2FV-01 TCGA-EW-A2FW-01 TCGA-GI-A2C8-01 diff --git a/core/src/test/scripts/test_data/study_various_issues/case_lists/cases_sequenced.txt b/core/src/test/scripts/test_data/study_various_issues/case_lists/cases_sequenced.txt deleted file mode 100644 index b7cfa08483e..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/case_lists/cases_sequenced.txt +++ /dev/null @@ -1,5 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -stable_id: brca_tcga_pub_sequenced -case_list_name: Samples profiled for mutations -case_list_description: This is this case list that contains all samples that are profiled for mutations. -case_list_ids: TCGA-A1-A0SB-01 TCGA-A1-A0SK-01 TCGA-A2-A04P-01 TCGA-A2-A0CM-01 TCGA-B6-A0WX-01 TCGA-BH-A0E0-01 TCGA-BH-A0HL-01 TCGA-BH-A18K-01 TCGA-BH-A18V-01 TCGA-BH-A1F0-01 TCGA-GI-A2C8-01 TCGA-A8-A08P-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-A8-A08G-01 TCGA-B6-A0IQ-01 TCGA-BH-A18H-01 TCGA-A1-A0SO-01 diff --git a/core/src/test/scripts/test_data/study_various_issues/data_patients.txt b/core/src/test/scripts/test_data/study_various_issues/data_patients.txt deleted file mode 100644 index 7c4fd4b7bb7..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/data_patients.txt +++ /dev/null @@ -1,829 +0,0 @@ -#Patient Identifier Overall Survival Status Overall Survival (Months) Disease Free Status Disease Free (Months) -#Patient identifier Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING NUMBER STRING STRING -#1 1 1 1 1 -PATIENT_ID OS_STATUS OS_MONTHS DFS_STATUS DFS_MONTHS -TCGA-A2-A04P 1:DECEASED 17.97 1:Recurred/Progressed NA -TCGA-A1-A0SK 1:DECEASED 31.77 NA NA -TCGA-A2-A0CM 1:DECEASED 24.77 1:Recurred/Progressed TEST -TCGA-AR-A1AR 1:DECEASED 17.18 NA NA -TCGA-B6-A0WX 1:DECEASED 21.45 1:Recurred/Progressed TEST -TCGA-BH-A1F0 1:DECEASED 25.79 1:Recurred/Progressed NA -TCGA-B6-A0I6 1:DECEASED 32.56 1:Recurred/Progressed NA -TCGA-BH-A18V 1:DECEASED 51.09 NA NA -TCGA-BH-A18Q 1:DECEASED 55.59 NA NA -TCGA-BH-A18K 1:DECEASED 90.74 1:Recurred/Progressed NA -TCGA-BH-A0HL 0:LIVING 2.37 0:DiseaseFree 2.37 -TCGA-BH-A0E0 0:LIVING 4.37 0:DiseaseFree 4.37 -TCGA-BH-A0RX 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-A7-A13D 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-BH-A0E6 0:LIVING 9.59 0:DiseaseFree 9.59 -TCGA-AO-A0J4 0:LIVING 9.66 0:DiseaseFree 9.66 -TCGA-A7-A0CE 0:LIVING 8.31 0:DiseaseFree 8.31 -TCGA-A7-A13E 0:LIVING 9.43 0:DiseaseFree 9.43 -TCGA-A7-A0DA 0:LIVING 12.25 0:DiseaseFree 12.25 -TCGA-D8-A142 0:LIVING 2 0:DiseaseFree 2 -TCGA-D8-A143 0:LIVING 5.65 0:DiseaseFree 5.65 -TCGA-AQ-A04J 0:LIVING 5.22 0:DiseaseFree 5.22 -TCGA-BH-A0HN 0:LIVING 16.95 0:DiseaseFree 16.95 -TCGA-A2-A0T0 0:LIVING 11.07 0:DiseaseFree 11.07 -TCGA-A2-A0YE 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-A2-A0YJ 0:LIVING 10.71 0:DiseaseFree 10.71 -TCGA-A2-A0D0 0:LIVING 21.12 0:DiseaseFree 21.12 -TCGA-A2-A04U 0:LIVING 22.01 0:DiseaseFree 22.01 -TCGA-AO-A0J6 0:LIVING 25.46 0:DiseaseFree 25.46 -TCGA-A2-A0YM 0:LIVING 21.72 0:DiseaseFree 21.72 -TCGA-A2-A0D2 0:LIVING 25 0:DiseaseFree 25 -TCGA-BH-A0B3 0:LIVING 39.52 0:DiseaseFree 39.52 -TCGA-A2-A04Q 0:LIVING 41.89 0:DiseaseFree 41.89 -TCGA-A2-A0SX 0:LIVING 42.32 1:Recurred/Progressed NA -TCGA-AO-A0JL 0:LIVING 43.33 0:DiseaseFree 43.33 -TCGA-AO-A12F 0:LIVING 48.33 0:DiseaseFree 48.33 -TCGA-BH-A0B9 0:LIVING 51.65 0:DiseaseFree 51.65 -TCGA-A2-A04T 0:LIVING 64.06 0:DiseaseFree 64.06 -TCGA-B6-A0RT 0:LIVING 89.39 0:DiseaseFree 89.39 -TCGA-AO-A128 0:LIVING 94.52 0:DiseaseFree 94.52 -TCGA-AO-A129 0:LIVING 96.03 0:DiseaseFree 96.03 -TCGA-AO-A124 0:LIVING 102.47 0:DiseaseFree 102.47 -TCGA-B6-A0RU 0:LIVING 131.12 0:DiseaseFree 131.12 -TCGA-B6-A0IQ 0:LIVING 127.18 0:DiseaseFree 127.18 -TCGA-B6-A0I2 0:LIVING 125.7 0:DiseaseFree 125.7 -TCGA-B6-A0IJ 0:LIVING 176.85 0:DiseaseFree 176.85 -TCGA-B6-A0X1 0:LIVING 186.31 0:DiseaseFree 186.31 -TCGA-B6-A0RE 0:LIVING 211.38 0:DiseaseFree 211.38 -TCGA-A2-A0ST 0:LIVING 53.98 0:DiseaseFree 53.98 -TCGA-AR-A0TP 0:LIVING 78.59 0:DiseaseFree 78.59 -TCGA-A1-A0SO 0:LIVING 27.99 0:DiseaseFree 27.99 -TCGA-A8-A07C 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A07O 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A07R 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-A8-A07U 0:LIVING 9.95 0:DiseaseFree 9.95 -TCGA-A8-A08H 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A08R 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-AN-A04D 0:LIVING 1.71 0:DiseaseFree 1.71 -TCGA-AN-A0AL 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-AN-A0AR 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0AT 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0FJ 0:LIVING 7.92 0:DiseaseFree 7.92 -TCGA-AN-A0FL 0:LIVING 7.56 0:DiseaseFree 7.56 -TCGA-AN-A0FX 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0G0 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-AN-A0XU 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AR-A0TS 0:LIVING 37.39 0:DiseaseFree 37.39 -TCGA-AR-A0TU 0:LIVING 11.83 0:DiseaseFree 11.83 -TCGA-AR-A0U0 0:LIVING 0.26 0:DiseaseFree 0.26 -TCGA-AR-A0U1 0:LIVING 6.08 0:DiseaseFree 6.08 -TCGA-AR-A0U4 0:LIVING 53.45 0:DiseaseFree 53.45 -TCGA-AR-A1AH 0:LIVING 75.5 0:DiseaseFree 75.5 -TCGA-AR-A1AI 0:LIVING 61.8 0:DiseaseFree 61.8 -TCGA-AR-A1AJ 0:LIVING 52.7 0:DiseaseFree 52.7 -TCGA-AR-A1AQ 0:LIVING 43.01 0:DiseaseFree 43.01 -TCGA-AR-A1AY 0:LIVING 20.17 0:DiseaseFree 20.17 -TCGA-BH-A0AV 0:LIVING 38.77 0:DiseaseFree 38.77 -TCGA-BH-A0BG 0:LIVING 24.84 0:DiseaseFree 24.84 -TCGA-BH-A0BL 0:LIVING 43.99 0:DiseaseFree 43.99 -TCGA-BH-A0BW 0:LIVING 11.66 0:DiseaseFree 11.66 -TCGA-BH-A0DL 0:LIVING 48.2 0:DiseaseFree 48.2 -TCGA-BH-A0WA 0:LIVING 12.22 0:DiseaseFree 12.22 -TCGA-BH-A18G 0:LIVING 2 0:DiseaseFree 2 -TCGA-C8-A12K 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12V 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A131 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A134 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A147 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-E2-A14N 0:LIVING 44.35 0:DiseaseFree 44.35 -TCGA-E2-A14R 0:LIVING 27.76 0:DiseaseFree 27.76 -TCGA-E2-A14X 0:LIVING 22.73 0:DiseaseFree 22.73 -TCGA-E2-A14Y 0:LIVING 22.6 0:DiseaseFree 22.6 -TCGA-E2-A150 0:LIVING 19.42 0:DiseaseFree 19.42 -TCGA-E2-A158 0:LIVING 14.78 0:DiseaseFree 14.78 -TCGA-E2-A159 0:LIVING 16.92 0:DiseaseFree 16.92 -TCGA-E2-A1AZ 0:LIVING 64.52 0:DiseaseFree 64.52 -TCGA-E2-A1B5 0:LIVING 25.43 0:DiseaseFree 25.43 -TCGA-A8-A08L 1:DECEASED 9.99 NA NA -TCGA-BH-A1EV 1:DECEASED 11.99 1:Recurred/Progressed NA -TCGA-B6-A0I9 1:DECEASED 12.12 1:Recurred/Progressed NA -TCGA-A8-A09X 1:DECEASED 14 NA NA -TCGA-B6-A0IK 1:DECEASED 18.76 1:Recurred/Progressed NA -TCGA-BH-A18P 1:DECEASED 30.26 1:Recurred/Progressed NA -TCGA-A8-A08J 1:DECEASED 37.03 NA NA -TCGA-BH-A18R 1:DECEASED 37.49 0:DiseaseFree 36.11 -TCGA-AR-A1AT 1:DECEASED 41.79 NA NA -TCGA-B6-A0RS 1:DECEASED 100.6 1:Recurred/Progressed NA -TCGA-BH-A0DZ 0:LIVING 16.26 0:DiseaseFree 16.26 -TCGA-A2-A0T1 0:LIVING 10.58 0:DiseaseFree 10.58 -TCGA-AO-A0J2 0:LIVING 19.22 0:DiseaseFree 19.22 -TCGA-BH-A0AW 0:LIVING 20.43 0:DiseaseFree 20.43 -TCGA-BH-A0EE 0:LIVING 30.98 0:DiseaseFree 30.98 -TCGA-A2-A0D1 0:LIVING 25.82 0:DiseaseFree 25.82 -TCGA-AO-A03N 0:LIVING 54.04 1:Recurred/Progressed NA -TCGA-A2-A0CY 0:LIVING 42.32 0:DiseaseFree 42.32 -TCGA-A2-A04X 0:LIVING 44.32 0:DiseaseFree 44.32 -TCGA-A2-A0CX 0:LIVING 42.81 0:DiseaseFree 42.81 -TCGA-A2-A04W 0:LIVING 63.01 0:DiseaseFree 63.01 -TCGA-AO-A12D 0:LIVING 64 0:DiseaseFree 64 -TCGA-A2-A0CL 0:LIVING 60.02 0:DiseaseFree 60.02 -TCGA-AO-A0JE 0:LIVING 64.56 0:DiseaseFree 64.56 -TCGA-A2-A0EQ 0:LIVING 67.45 0:DiseaseFree 67.45 -TCGA-AO-A03L 0:LIVING 80.23 0:DiseaseFree 80.23 -TCGA-B6-A0RH 0:LIVING 188.84 0:DiseaseFree 188.84 -TCGA-A8-A075 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-A8-A076 0:LIVING 53.91 0:DiseaseFree 53.91 -TCGA-A8-A07B 0:LIVING 32.98 0:DiseaseFree 32.98 -TCGA-A8-A07I 0:LIVING 14 0:DiseaseFree 14 -TCGA-A8-A081 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A08B 0:LIVING 23.06 0:DiseaseFree 23.06 -TCGA-A8-A08X 0:LIVING 33.97 0:DiseaseFree 33.97 -TCGA-A8-A092 0:LIVING 17.02 0:DiseaseFree 17.02 -TCGA-A8-A094 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A09G 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A0A7 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-AN-A04C 0:LIVING 1.77 0:DiseaseFree 1.77 -TCGA-AN-A0FV 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AR-A0TX 0:LIVING 0.49 0:DiseaseFree 0.49 -TCGA-BH-A0B7 0:LIVING 56.93 0:DiseaseFree 56.93 -TCGA-BH-A0HY 0:LIVING 28.48 0:DiseaseFree 28.48 -TCGA-C8-A12L 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12P 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Q 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12T 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Z 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A130 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A135 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A137 0:LIVING 0.1 0:DiseaseFree 0.1 -TCGA-C8-A138 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A1HF 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A13Z 0:LIVING 6.9 0:DiseaseFree 6.9 -TCGA-E2-A14P 0:LIVING 16 0:DiseaseFree 16 -TCGA-E2-A14V 0:LIVING 24.57 0:DiseaseFree 24.57 -TCGA-E2-A152 0:LIVING 19.32 1:Recurred/Progressed NA -TCGA-E2-A1B0 0:LIVING 41.76 0:DiseaseFree 41.76 -TCGA-A2-A0CU 1:DECEASED 5.16 0:DiseaseFree 4.57 -TCGA-AR-A0TR 1:DECEASED 5.26 NA NA -TCGA-BH-A18T 1:DECEASED 7.36 1:Recurred/Progressed NA -TCGA-B6-A0I8 1:DECEASED 24.61 1:Recurred/Progressed NA -TCGA-B6-A0X4 1:DECEASED 28.22 1:Recurred/Progressed NA -TCGA-A8-A06U 1:DECEASED 28.98 NA NA -TCGA-BH-A0EA 1:DECEASED 32.62 0:DiseaseFree 27.3 -TCGA-BH-A18N 1:DECEASED 37.72 NA NA -TCGA-BH-A1EU 1:DECEASED 42.25 0:DiseaseFree NA -TCGA-B6-A0X7 1:DECEASED 58.84 NA NA -TCGA-A2-A04V 1:DECEASED 63.08 1:Recurred/Progressed NA -TCGA-BH-A18S 1:DECEASED 66 0:DiseaseFree 66 -TCGA-BH-A18M 1:DECEASED 72.51 NA NA -TCGA-B6-A0RM 1:DECEASED 77.96 0:DiseaseFree 77.96 -TCGA-BH-A1ET 1:DECEASED 82.79 0:DiseaseFree NA -TCGA-B6-A0IN 1:DECEASED 84.53 1:Recurred/Progressed NA -TCGA-BH-A1EO 1:DECEASED 91.92 0:DiseaseFree NA -TCGA-B6-A0WS 1:DECEASED 97.41 0:DiseaseFree NA -TCGA-B6-A0RP 1:DECEASED 102.7 NA NA -TCGA-B6-A0IH 1:DECEASED 112.29 NA NA -TCGA-B6-A0WY 1:DECEASED 113.67 1:Recurred/Progressed NA -TCGA-BH-A1ES 1:DECEASED 113.74 1:Recurred/Progressed NA -TCGA-B6-A0X0 1:DECEASED 129.61 NA NA -TCGA-B6-A0RQ 1:DECEASED 140.38 0:DiseaseFree NA -TCGA-B6-A0IG 1:DECEASED 146.39 1:Recurred/Progressed NA -TCGA-BH-A0HO 0:LIVING 2.5 0:DiseaseFree 2.5 -TCGA-BH-A0DS 0:LIVING 2.53 0:DiseaseFree 2.53 -TCGA-BH-A0DQ 0:LIVING 3.22 0:DiseaseFree 3.22 -TCGA-BH-A0HK 0:LIVING 5.85 0:DiseaseFree 5.85 -TCGA-A7-A0CG 0:LIVING 5.45 0:DiseaseFree 5.45 -TCGA-A7-A0CH 0:LIVING 5.29 0:DiseaseFree 5.29 -TCGA-A7-A0DB 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-A7-A0D9 0:LIVING 5.22 0:DiseaseFree 5.22 -TCGA-AO-A0J8 0:LIVING 9.1 0:DiseaseFree 9.1 -TCGA-BH-A0GZ 0:LIVING 10.78 0:DiseaseFree 10.78 -TCGA-AO-A0JA 0:LIVING 11.37 1:Recurred/Progressed NA -TCGA-AO-A0JF 0:LIVING 11.63 0:DiseaseFree 11.63 -TCGA-A7-A0CD 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-D8-A145 0:LIVING 1.61 0:DiseaseFree 1.61 -TCGA-BH-A0HP 0:LIVING 13.6 0:DiseaseFree 13.6 -TCGA-BH-A0DK 0:LIVING 13.9 0:DiseaseFree 13.9 -TCGA-BH-A0E2 0:LIVING 12.35 0:DiseaseFree 12.35 -TCGA-A2-A0YI 0:LIVING 11.76 0:DiseaseFree 11.76 -TCGA-A2-A0YL 0:LIVING 8.8 0:DiseaseFree 8.8 -TCGA-AO-A0JG 0:LIVING 14.75 0:DiseaseFree 14.75 -TCGA-A2-A0YF 0:LIVING 9.49 0:DiseaseFree 9.49 -TCGA-BH-A0DP 0:LIVING 15.64 0:DiseaseFree 15.64 -TCGA-BH-A0E1 0:LIVING 15.67 0:DiseaseFree 15.67 -TCGA-A2-A0T5 0:LIVING 10.55 0:DiseaseFree 10.55 -TCGA-A2-A0T6 0:LIVING 11.3 0:DiseaseFree 11.3 -TCGA-BH-A0HI 0:LIVING 20.34 0:DiseaseFree 20.34 -TCGA-A2-A0T7 0:LIVING 13.04 0:DiseaseFree 13.04 -TCGA-BH-A0BJ 0:LIVING 21.68 0:DiseaseFree 21.68 -TCGA-BH-A0H7 0:LIVING 23.03 0:DiseaseFree 23.03 -TCGA-BH-A0HF 0:LIVING 23.88 0:DiseaseFree 23.88 -TCGA-BH-A0EB 0:LIVING 24.48 0:DiseaseFree 24.48 -TCGA-BH-A0H6 0:LIVING 24.54 0:DiseaseFree 24.54 -TCGA-A2-A0YD 0:LIVING 18.07 0:DiseaseFree 18.07 -TCGA-BH-A0HB 0:LIVING 26.48 0:DiseaseFree 26.48 -TCGA-BH-A0HX 0:LIVING 27.24 0:DiseaseFree 27.24 -TCGA-AO-A12H 0:LIVING 28.32 0:DiseaseFree 28.32 -TCGA-E2-A10E 0:LIVING 13.73 0:DiseaseFree 13.73 -TCGA-A2-A0D3 0:LIVING 24.18 0:DiseaseFree 24.18 -TCGA-E2-A10F 0:LIVING 11.83 0:DiseaseFree 11.83 -TCGA-AO-A03V 0:LIVING 29.11 0:DiseaseFree 29.11 -TCGA-A2-A0EW 0:LIVING 25.3 0:DiseaseFree 25.3 -TCGA-BH-A0GY 0:LIVING 30.13 0:DiseaseFree 30.13 -TCGA-A2-A0EV 0:LIVING 17.91 0:DiseaseFree 17.91 -TCGA-BH-A0BC 0:LIVING 32 0:DiseaseFree 32 -TCGA-A2-A0YC 0:LIVING 21.12 0:DiseaseFree 21.12 -TCGA-A2-A0EU 0:LIVING 24.08 0:DiseaseFree 24.08 -TCGA-A2-A0ET 0:LIVING 26.51 0:DiseaseFree 26.51 -TCGA-A2-A04Y 0:LIVING 25.07 0:DiseaseFree 25.07 -TCGA-BH-A0HQ 0:LIVING 36.83 0:DiseaseFree 36.83 -TCGA-A2-A0ES 0:LIVING 32.89 0:DiseaseFree 32.89 -TCGA-BH-A0BA 0:LIVING 37.19 0:DiseaseFree 37.19 -TCGA-E2-A10B 0:LIVING 24.57 0:DiseaseFree 24.57 -TCGA-BH-A0B1 0:LIVING 37.72 0:DiseaseFree 37.72 -TCGA-BH-A0DH 0:LIVING 37.98 0:DiseaseFree 37.98 -TCGA-BH-A0B4 0:LIVING 39.13 0:DiseaseFree 39.13 -TCGA-BH-A0H9 0:LIVING 40.97 0:DiseaseFree 40.97 -TCGA-AO-A0J9 0:LIVING 41.23 1:Recurred/Progressed NA -TCGA-AO-A12G 0:LIVING 41.56 0:DiseaseFree 41.56 -TCGA-A2-A0SY 0:LIVING 37.91 0:DiseaseFree 37.91 -TCGA-BH-A0E7 0:LIVING 44.75 0:DiseaseFree 44.75 -TCGA-AO-A03M 0:LIVING 47.8 0:DiseaseFree 47.8 -TCGA-BH-A0BV 0:LIVING 49.9 0:DiseaseFree 49.9 -TCGA-BH-A0B8 0:LIVING 51.55 0:DiseaseFree 51.55 -TCGA-A2-A0CZ 0:LIVING 43.96 0:DiseaseFree 43.96 -TCGA-A2-A0SU 0:LIVING 44.38 0:DiseaseFree 44.38 -TCGA-AO-A12E 0:LIVING 57.23 0:DiseaseFree 57.23 -TCGA-E2-A106 0:LIVING 51.09 0:DiseaseFree 51.09 -TCGA-A2-A0CV 0:LIVING 61.44 0:DiseaseFree 61.44 -TCGA-AO-A12C 0:LIVING 65.48 0:DiseaseFree 65.48 -TCGA-B6-A0RG 0:LIVING 68.4 0:DiseaseFree 68.4 -TCGA-A2-A0CS 0:LIVING 75.5 0:DiseaseFree 75.5 -TCGA-A2-A0EO 0:LIVING 71.65 0:DiseaseFree 71.65 -TCGA-A2-A0CQ 0:LIVING 78.59 0:DiseaseFree 78.59 -TCGA-A2-A0EN 0:LIVING 82.63 0:DiseaseFree 82.63 -TCGA-AO-A12A 0:LIVING 90.48 0:DiseaseFree 90.48 -TCGA-A2-A0CP 0:LIVING 81.97 0:DiseaseFree 81.97 -TCGA-AO-A126 0:LIVING 93.63 0:DiseaseFree 93.63 -TCGA-AO-A125 0:LIVING 99.15 0:DiseaseFree 99.15 -TCGA-A2-A0EM 0:LIVING 90.58 0:DiseaseFree 90.58 -TCGA-A2-A04N 0:LIVING 103.59 0:DiseaseFree 103.59 -TCGA-AQ-A04L 0:LIVING 109.86 0:DiseaseFree 109.86 -TCGA-B6-A0IO 0:LIVING 110.06 0:DiseaseFree 110.06 -TCGA-B6-A0IP 0:LIVING 110.85 0:DiseaseFree 110.85 -TCGA-B6-A0WZ 0:LIVING 129.48 0:DiseaseFree 129.48 -TCGA-B6-A0I5 0:LIVING 149.45 0:DiseaseFree 149.45 -TCGA-B6-A0RV 0:LIVING 157.3 0:DiseaseFree 157.3 -TCGA-B6-A0RO 0:LIVING 161.9 0:DiseaseFree 161.9 -TCGA-B6-A0RN 0:LIVING 172.84 0:DiseaseFree 172.84 -TCGA-B6-A0WT 0:LIVING 177.28 0:DiseaseFree 177.28 -TCGA-B6-A0IA 0:LIVING 220.71 0:DiseaseFree 220.71 -TCGA-B6-A0RI 0:LIVING 223.24 1:Recurred/Progressed NA -TCGA-A1-A0SE 0:LIVING 43.37 0:DiseaseFree 43.37 -TCGA-A2-A0EX 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-AO-A0JJ 0:LIVING 49.67 0:DiseaseFree 49.67 -TCGA-E2-A105 0:LIVING 38.21 0:DiseaseFree 38.21 -TCGA-A1-A0SD 0:LIVING 14.36 0:DiseaseFree 14.36 -TCGA-A1-A0SH 0:LIVING 47.21 0:DiseaseFree 47.21 -TCGA-A1-A0SJ 0:LIVING 14 0:DiseaseFree 14 -TCGA-A8-A06P 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A06T 0:LIVING 41.03 0:DiseaseFree 41.03 -TCGA-A8-A06Y 0:LIVING 25.99 0:DiseaseFree 25.99 -TCGA-A8-A07E 0:LIVING 19.97 0:DiseaseFree 19.97 -TCGA-A8-A07F 0:LIVING 18.92 0:DiseaseFree 18.92 -TCGA-A8-A07G 0:LIVING 18.92 0:DiseaseFree 18.92 -TCGA-A8-A07J 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A07P 0:LIVING 10.97 0:DiseaseFree 10.97 -TCGA-A8-A083 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A086 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A08A 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-A8-A08C 0:LIVING 19.94 0:DiseaseFree 19.94 -TCGA-A8-A08O 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A08T 0:LIVING 92.97 0:DiseaseFree 92.97 -TCGA-A8-A08Z 0:LIVING 39.98 0:DiseaseFree 39.98 -TCGA-A8-A090 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A091 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A093 0:LIVING 17.91 0:DiseaseFree 17.91 -TCGA-A8-A099 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A09A 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A09B 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A09T 0:LIVING 18.99 0:DiseaseFree 18.99 -TCGA-A8-A09V 0:LIVING 15.01 0:DiseaseFree 15.01 -TCGA-A8-A0A1 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A0A2 0:LIVING 18.99 0:DiseaseFree 18.99 -TCGA-A8-A0A4 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A0A6 0:LIVING 21.03 0:DiseaseFree 21.03 -TCGA-A8-A0AD 0:LIVING 38.01 0:DiseaseFree 38.01 -TCGA-AN-A03X 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A046 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A04A 0:LIVING 2.92 0:DiseaseFree 2.92 -TCGA-AN-A0FD 0:LIVING 6.41 0:DiseaseFree 6.41 -TCGA-AN-A0FN 0:LIVING 7.16 0:DiseaseFree 7.16 -TCGA-AN-A0FS 0:LIVING 6.27 0:DiseaseFree 6.27 -TCGA-AN-A0FT 0:LIVING 6.01 0:DiseaseFree 6.01 -TCGA-AN-A0FW 0:LIVING 0.36 0:DiseaseFree 0.36 -TCGA-AN-A0FZ 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XL 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XN 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XO 0:LIVING 12.32 0:DiseaseFree 12.32 -TCGA-AN-A0XP 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0XS 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XT 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XV 0:LIVING 5.32 0:DiseaseFree 5.32 -TCGA-AR-A0TW 0:LIVING 24.28 0:DiseaseFree 24.28 -TCGA-AR-A1AK 0:LIVING 51.19 0:DiseaseFree 51.19 -TCGA-AR-A1AL 0:LIVING 48.79 0:DiseaseFree 48.79 -TCGA-AR-A1AN 0:LIVING 43.66 0:DiseaseFree 43.66 -TCGA-AR-A1AP 0:LIVING 39.92 0:DiseaseFree 39.92 -TCGA-AR-A1AS 0:LIVING 40.8 0:DiseaseFree 40.8 -TCGA-AR-A1AU 0:LIVING 46.29 0:DiseaseFree 46.29 -TCGA-AR-A1AW 0:LIVING 35.22 0:DiseaseFree 35.22 -TCGA-AR-A1AX 0:LIVING 36.24 0:DiseaseFree 36.24 -TCGA-BH-A0AZ 0:LIVING 28.48 0:DiseaseFree 28.48 -TCGA-BH-A0B0 0:LIVING 46.88 0:DiseaseFree 46.88 -TCGA-BH-A0BM 0:LIVING 36.7 0:DiseaseFree 36.7 -TCGA-BH-A0BO 0:LIVING 35.65 0:DiseaseFree 35.65 -TCGA-BH-A0BP 0:LIVING 48.66 0:DiseaseFree 48.66 -TCGA-BH-A0BQ 0:LIVING 27.14 0:DiseaseFree 27.14 -TCGA-BH-A0BR 0:LIVING 53.62 0:DiseaseFree 53.62 -TCGA-BH-A0BS 0:LIVING 53.88 0:DiseaseFree 53.88 -TCGA-BH-A0BT 0:LIVING 45.53 0:DiseaseFree 45.53 -TCGA-BH-A0C1 0:LIVING 43.96 0:DiseaseFree 43.96 -TCGA-BH-A0DE 0:LIVING 31.14 0:DiseaseFree 31.14 -TCGA-BH-A0DG 0:LIVING 23.42 0:DiseaseFree 23.42 -TCGA-BH-A0DI 0:LIVING 22.11 0:DiseaseFree 22.11 -TCGA-BH-A0DO 0:LIVING 17.25 0:DiseaseFree 17.25 -TCGA-BH-A0DT 0:LIVING 38.44 0:DiseaseFree 38.44 -TCGA-BH-A0DX 0:LIVING 47.37 0:DiseaseFree 47.37 -TCGA-BH-A0E9 0:LIVING 46.16 0:DiseaseFree 46.16 -TCGA-BH-A0EI 0:LIVING 24.41 0:DiseaseFree 24.41 -TCGA-BH-A0H3 0:LIVING 37.75 0:DiseaseFree 37.75 -TCGA-BH-A0H5 0:LIVING 35.48 0:DiseaseFree 35.48 -TCGA-BH-A0HA 0:LIVING 28.12 0:DiseaseFree 28.12 -TCGA-BH-A0W4 0:LIVING 5.75 0:DiseaseFree 5.75 -TCGA-BH-A0W5 0:LIVING 17.84 0:DiseaseFree 17.84 -TCGA-BH-A0W7 0:LIVING 18.33 0:DiseaseFree 18.33 -TCGA-BH-A18H 0:LIVING 0 0:DiseaseFree 0 -TCGA-BH-A18I 0:LIVING 7.23 0:DiseaseFree 7.23 -TCGA-C8-A12N 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12O 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Y 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A132 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A133 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HI 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-D8-A141 0:LIVING 3.71 0:DiseaseFree 3.71 -TCGA-E2-A14Q 0:LIVING 32 0:DiseaseFree 32 -TCGA-E2-A14T 0:LIVING 29.24 0:DiseaseFree 29.24 -TCGA-E2-A14Z 0:LIVING 17.02 1:Recurred/Progressed NA -TCGA-E2-A153 0:LIVING 19.25 0:DiseaseFree 19.25 -TCGA-E2-A154 0:LIVING 10.68 0:DiseaseFree 10.68 -TCGA-E2-A156 0:LIVING 15.8 0:DiseaseFree 15.8 -TCGA-E2-A15C 0:LIVING 16.3 0:DiseaseFree 16.3 -TCGA-E2-A15D 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15E 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-E2-A15F 0:LIVING 15.38 0:DiseaseFree 15.38 -TCGA-E2-A15G 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15H 0:LIVING 1.38 0:DiseaseFree 1.38 -TCGA-E2-A15I 0:LIVING 13.5 0:DiseaseFree 13.5 -TCGA-E2-A15J 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-E2-A15O 0:LIVING 12.98 0:DiseaseFree 12.98 -TCGA-E2-A15P 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15R 0:LIVING 10.84 0:DiseaseFree 10.84 -TCGA-E2-A1B1 0:LIVING 44.71 0:DiseaseFree 44.71 -TCGA-E2-A1B4 0:LIVING 29.93 0:DiseaseFree 29.93 -TCGA-E2-A1B6 0:LIVING 11.1 0:DiseaseFree 11.1 -TCGA-E2-A1BC 0:LIVING 9.76 0:DiseaseFree 9.76 -TCGA-E2-A1BD 0:LIVING 10.41 0:DiseaseFree 10.41 -TCGA-A2-A0SV 1:DECEASED 27.1 1:Recurred/Progressed NA -TCGA-AO-A03O 1:DECEASED 81.57 0:DiseaseFree 32.62 -TCGA-A2-A0SW 1:DECEASED 44.81 1:Recurred/Progressed NA -TCGA-B6-A0WW 1:DECEASED 18.3 1:Recurred/Progressed NA -TCGA-BH-A18J 1:DECEASED 20.07 1:Recurred/Progressed NA -TCGA-BH-A18L 1:DECEASED 26.64 NA NA -TCGA-A8-A06X 1:DECEASED 30.98 NA NA -TCGA-B6-A0IC 1:DECEASED 50.66 NA NA -TCGA-BH-A18U 1:DECEASED 51.35 0:DiseaseFree 43.27 -TCGA-BH-A1EW 1:DECEASED 55.65 1:Recurred/Progressed NA -TCGA-AR-A0TY 1:DECEASED 55.82 NA NA -TCGA-B6-A0X5 1:DECEASED 68.89 1:Recurred/Progressed NA -TCGA-B6-A0WV 1:DECEASED 79.57 0:DiseaseFree 79.57 -TCGA-B6-A0RL 1:DECEASED 81.11 0:DiseaseFree 81.11 -TCGA-AR-A0U2 1:DECEASED 83.81 1:Recurred/Progressed NA -TCGA-B6-A0IB 1:DECEASED 129.48 1:Recurred/Progressed NA -TCGA-AO-A0J7 0:LIVING 8.54 0:DiseaseFree 8.54 -TCGA-AO-A0J3 0:LIVING 9.92 0:DiseaseFree 9.92 -TCGA-D8-A13Y 0:LIVING 8.67 0:DiseaseFree 8.67 -TCGA-A7-A13F 0:LIVING 6.44 0:DiseaseFree 6.44 -TCGA-BH-A0HU 0:LIVING 12.88 0:DiseaseFree 12.88 -TCGA-D8-A140 0:LIVING 0.89 0:DiseaseFree 0.89 -TCGA-A7-A0CJ 0:LIVING 6.18 0:DiseaseFree 6.18 -TCGA-AQ-A04H 0:LIVING 14.42 0:DiseaseFree 14.42 -TCGA-BH-A0H0 0:LIVING 15.15 0:DiseaseFree 15.15 -TCGA-BH-A0BD 0:LIVING 18.2 0:DiseaseFree 18.2 -TCGA-A2-A0T3 0:LIVING 14.98 0:DiseaseFree 14.98 -TCGA-A2-A0T4 0:LIVING 12.98 0:DiseaseFree 12.98 -TCGA-A2-A0YH 0:LIVING 12.45 0:DiseaseFree 12.45 -TCGA-A2-A0YG 0:LIVING 13.27 0:DiseaseFree 13.27 -TCGA-A2-A0EY 0:LIVING 15.93 0:DiseaseFree 15.93 -TCGA-A2-A0D4 0:LIVING 16.3 0:DiseaseFree 16.3 -TCGA-BH-A0AY 0:LIVING 25.53 0:DiseaseFree 25.53 -TCGA-E2-A107 0:LIVING 25.07 1:Recurred/Progressed NA -TCGA-AO-A0JI 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-E2-A10C 0:LIVING 28.02 0:DiseaseFree 28.02 -TCGA-E2-A10A 0:LIVING 11.56 1:Recurred/Progressed NA -TCGA-BH-A0C0 0:LIVING 41.72 0:DiseaseFree 41.72 -TCGA-E2-A109 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-AO-A0JC 0:LIVING 50.82 0:DiseaseFree 50.82 -TCGA-BH-A0HW 0:LIVING 51.25 0:DiseaseFree 51.25 -TCGA-AO-A0JD 0:LIVING 59.56 0:DiseaseFree 59.56 -TCGA-AO-A0JM 0:LIVING 59.99 0:DiseaseFree 59.99 -TCGA-A2-A0CW 0:LIVING 57.49 0:DiseaseFree 57.49 -TCGA-A2-A0ER 0:LIVING 62.49 0:DiseaseFree 62.49 -TCGA-A2-A0CT 0:LIVING 62.98 0:DiseaseFree 62.98 -TCGA-AO-A12B 0:LIVING 77.5 0:DiseaseFree 77.5 -TCGA-A2-A04R 0:LIVING 77.67 0:DiseaseFree 77.67 -TCGA-B6-A0IM 0:LIVING 126.03 0:DiseaseFree 126.03 -TCGA-AO-A03P 0:LIVING 84.63 1:Recurred/Progressed NA -TCGA-A1-A0SM 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-A8-A06N 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A06O 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A06Q 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A06R 0:LIVING 17.94 0:DiseaseFree 17.94 -TCGA-A8-A06Z 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A079 0:LIVING 9 0:DiseaseFree 9 -TCGA-A8-A07L 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-A8-A07S 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-A8-A07W 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A07Z 0:LIVING 28.02 0:DiseaseFree 28.02 -TCGA-A8-A082 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-A8-A084 0:LIVING 15.05 0:DiseaseFree 15.05 -TCGA-A8-A085 0:LIVING 36.93 0:DiseaseFree 36.93 -TCGA-A8-A08F 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-A8-A08G 0:LIVING 19.91 0:DiseaseFree 19.91 -TCGA-A8-A08I 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A08P 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A095 0:LIVING 41.92 0:DiseaseFree 41.92 -TCGA-A8-A096 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A097 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A09C 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A09D 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A09I 0:LIVING 33.05 0:DiseaseFree 33.05 -TCGA-A8-A09M 0:LIVING 15.01 0:DiseaseFree 15.01 -TCGA-A8-A09N 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A09Q 0:LIVING 25 0:DiseaseFree 25 -TCGA-A8-A09R 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-A8-A09W 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-A8-A09Z 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A0A9 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A0AB 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-AN-A03Y 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A041 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-AN-A049 0:LIVING 0.62 0:DiseaseFree 0.62 -TCGA-AN-A0AJ 0:LIVING 7.98 0:DiseaseFree 7.98 -TCGA-AN-A0AK 0:LIVING 7.33 0:DiseaseFree 7.33 -TCGA-AN-A0AM 0:LIVING 0.16 0:DiseaseFree 0.16 -TCGA-AN-A0AS 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0FF 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-AN-A0FK 0:LIVING 6.96 0:DiseaseFree 6.96 -TCGA-AN-A0FY 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XR 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XW 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-AR-A0TQ 0:LIVING 49.28 0:DiseaseFree 49.28 -TCGA-AR-A0TT 0:LIVING 55.16 0:DiseaseFree 55.16 -TCGA-AR-A0TV 0:LIVING 29.7 0:DiseaseFree 29.7 -TCGA-AR-A0TZ 0:LIVING 43.14 0:DiseaseFree 43.14 -TCGA-AR-A0U3 0:LIVING 74.35 0:DiseaseFree 74.35 -TCGA-AR-A1AV 0:LIVING 42.55 0:DiseaseFree 42.55 -TCGA-BH-A0AU 0:LIVING 24.51 0:DiseaseFree 24.51 -TCGA-BH-A0B5 0:LIVING 48.33 0:DiseaseFree 48.33 -TCGA-BH-A0BF 0:LIVING 25.66 0:DiseaseFree 25.66 -TCGA-BH-A0BZ 0:LIVING 49.02 0:DiseaseFree 49.02 -TCGA-BH-A0C3 0:LIVING 48.1 0:DiseaseFree 48.1 -TCGA-BH-A0C7 0:LIVING 42.87 0:DiseaseFree 42.87 -TCGA-BH-A0DD 0:LIVING 45.76 0:DiseaseFree 45.76 -TCGA-BH-A0W3 0:LIVING 5.91 0:DiseaseFree 5.91 -TCGA-BH-A18F 0:LIVING 8.8 0:DiseaseFree 8.8 -TCGA-C8-A12M 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12U 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12W 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12X 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HG 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HL 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-C8-A1HM 0:LIVING 0.2 0:DiseaseFree 0.2 -TCGA-C8-A1HN 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-E2-A14O 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-E2-A14S 0:LIVING 27.4 0:DiseaseFree 27.4 -TCGA-E2-A14W 0:LIVING 27.37 0:DiseaseFree 27.37 -TCGA-E2-A155 0:LIVING 18.17 0:DiseaseFree 18.17 -TCGA-E2-A15A 0:LIVING 16.49 0:DiseaseFree 16.49 -TCGA-E2-A15K 0:LIVING 1.12 0:DiseaseFree 1.12 -TCGA-E2-A15L 0:LIVING 10.87 0:DiseaseFree 10.87 -TCGA-E2-A15M 0:LIVING 7.69 0:DiseaseFree 7.69 -TCGA-E2-A15S 0:LIVING 9 0:DiseaseFree 9 -TCGA-E2-A15T 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-AO-A03U 1:DECEASED 59 0:DiseaseFree 56.74 -TCGA-B6-A0IE 1:DECEASED 65.64 1:Recurred/Progressed NA -TCGA-A2-A0YK 0:LIVING 10.97 0:DiseaseFree 10.97 -TCGA-E2-A108 0:LIVING 4.07 0:DiseaseFree 4.07 -TCGA-AO-A0JB 0:LIVING 37.78 0:DiseaseFree 37.78 -TCGA-AO-A03R 0:LIVING 56.08 0:DiseaseFree 56.08 -TCGA-AO-A03T 0:LIVING 39 0:DiseaseFree 39 -TCGA-AR-A1AO 0:LIVING 43.5 0:DiseaseFree 43.5 -TCGA-A2-A0YT 1:DECEASED 23.75 0:DiseaseFree 21.98 -TCGA-AQ-A0Y5 1:DECEASED 5.29 0:DiseaseFree NA -TCGA-EW-A1P8 1:DECEASED 7.85 1:Recurred/Progressed NA -TCGA-E2-A1LK 1:DECEASED 8.74 1:Recurred/Progressed NA -TCGA-BH-A1EY 1:DECEASED 17.68 1:Recurred/Progressed NA -TCGA-BH-A1F8 1:DECEASED 24.61 1:Recurred/Progressed NA -TCGA-BH-A1F2 1:DECEASED 31.51 0:DiseaseFree NA -TCGA-BH-A1FD 1:DECEASED 33.12 1:Recurred/Progressed NA -TCGA-BH-A1FH 1:DECEASED 36.89 1:Recurred/Progressed NA -TCGA-BH-A203 NA TEST NA NA -TCGA-BH-A1FM 1:DECEASED 45.6 NA NA -TCGA-BH-A1EX 1:DECEASED 49.54 1:Recurred/Progressed NA -TCGA-BH-A1FL 1:DECEASED 54.96 1:Recurred/Progressed NA -TCGA-BH-A208 NA TEST NA NA -TCGA-GM-A2D9 1:DECEASED 59.53 1:Recurred/Progressed NA -TCGA-BH-A1FJ 1:DECEASED 63.31 NA NA -TCGA-BH-A1EN 1:DECEASED 67.42 0:DiseaseFree NA -TCGA-BH-A1FN 1:DECEASED 72.01 1:Recurred/Progressed NA -TCGA-BH-A1FU 1:DECEASED 72.01 1:Recurred/Progressed NA -TCGA-BH-A1FE 1:DECEASED 74.68 1:Recurred/Progressed NA -TCGA-BH-A204 NA NA NA NA -TCGA-BH-A1F5 1:DECEASED 89.1 0:DiseaseFree NA -TCGA-AR-A256 1:DECEASED 93.76 NA NA -TCGA-BH-A1F6 1:DECEASED 97.41 NA NA -TCGA-BH-A1FC 1:DECEASED 114.03 0:DiseaseFree NA -TCGA-BH-A1FB 1:DECEASED 120.54 1:Recurred/Progressed NA -TCGA-BH-A1FG 1:DECEASED 122.81 NA NA -TCGA-BH-A209 NA NA NA NA -TCGA-BH-A1FR 1:DECEASED 144.49 1:Recurred/Progressed NA -TCGA-AO-A1KS 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-A7-A13G 0:LIVING 6.83 0:DiseaseFree 6.83 -TCGA-D8-A1JS 0:LIVING 3.45 0:DiseaseFree 3.45 -TCGA-A7-A0DC 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-D8-A1JT 0:LIVING 4.04 0:DiseaseFree 4.04 -TCGA-A7-A26E 0:LIVING 13.83 0:DiseaseFree 13.83 -TCGA-D8-A1JH 0:LIVING 9.33 0:DiseaseFree 9.33 -TCGA-D8-A1JU 0:LIVING 3.48 0:DiseaseFree 3.48 -TCGA-AO-A1KO 0:LIVING 14.72 0:DiseaseFree 14.72 -TCGA-AO-A1KT 0:LIVING 17.77 0:DiseaseFree 17.77 -TCGA-AO-A0J5 0:LIVING 24.15 1:Recurred/Progressed NA -TCGA-B6-A1KC 0:LIVING 43.56 0:DiseaseFree 43.56 -TCGA-AO-A1KQ 0:LIVING 49.9 0:DiseaseFree 49.9 -TCGA-B6-A1KI 0:LIVING 48.06 0:DiseaseFree 48.06 -TCGA-AO-A1KP 0:LIVING 82.56 0:DiseaseFree 82.56 -TCGA-B6-A1KF 0:LIVING 101.45 0:DiseaseFree 101.45 -TCGA-B6-A1KN 0:LIVING 109.4 0:DiseaseFree 109.4 -TCGA-D8-A1XO 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-D8-A1XT 0:LIVING 6.34 0:DiseaseFree 6.34 -TCGA-A1-A0SP 0:LIVING 19.15 0:DiseaseFree 19.15 -TCGA-D8-A1J8 0:LIVING 8.41 0:DiseaseFree 8.41 -TCGA-D8-A1JF 0:LIVING 3.15 0:DiseaseFree 3.15 -TCGA-D8-A1JG 0:LIVING 6.14 0:DiseaseFree 6.14 -TCGA-D8-A1XS 0:LIVING 0.59 0:DiseaseFree 0.59 -TCGA-A1-A0SB 0:LIVING 8.51 0:DiseaseFree 8.51 -TCGA-A1-A0SF 0:LIVING 48.06 0:DiseaseFree 48.06 -TCGA-A1-A0SG 0:LIVING 14.23 0:DiseaseFree 14.23 -TCGA-A1-A0SI 0:LIVING 20.83 0:DiseaseFree 20.83 -TCGA-A1-A0SN 0:LIVING 39.29 0:DiseaseFree 39.29 -TCGA-A1-A0SQ 0:LIVING 18.17 0:DiseaseFree 18.17 -TCGA-A2-A1FV 0:LIVING 15.11 0:DiseaseFree 15.11 -TCGA-A2-A1FW 0:LIVING 7.26 0:DiseaseFree 7.26 -TCGA-A2-A1FX 0:LIVING 30.72 0:DiseaseFree 30.72 -TCGA-A2-A1FZ 0:LIVING 13.44 0:DiseaseFree 13.44 -TCGA-A2-A1G0 0:LIVING 12.48 0:DiseaseFree 12.48 -TCGA-A2-A1G1 0:LIVING 12.19 0:DiseaseFree 12.19 -TCGA-A2-A1G4 0:LIVING 12.22 0:DiseaseFree 12.22 -TCGA-A2-A1G6 0:LIVING 4.34 0:DiseaseFree 4.34 -TCGA-A2-A259 0:LIVING 42.22 0:DiseaseFree 42.22 -TCGA-A2-A25A 0:LIVING 97.51 0:DiseaseFree 97.51 -TCGA-A2-A25B 0:LIVING 8.48 0:DiseaseFree 8.48 -TCGA-A2-A25C 0:LIVING 9.36 0:DiseaseFree 9.36 -TCGA-A2-A25D 0:LIVING 7.98 0:DiseaseFree 7.98 -TCGA-A2-A25E 0:LIVING 82.49 0:DiseaseFree 82.49 -TCGA-A2-A25F 0:LIVING 3.71 0:DiseaseFree 3.71 -TCGA-A7-A26F 0:LIVING 8.44 0:DiseaseFree 8.44 -TCGA-A7-A26G 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-A7-A26H 0:LIVING 2.1 0:DiseaseFree 2.1 -TCGA-A7-A26I 0:LIVING 4.01 0:DiseaseFree 4.01 -TCGA-A7-A26J 0:LIVING 2.2 1:Recurred/Progressed NA -TCGA-A8-A08S 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A09E 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A09K 0:LIVING 29.93 0:DiseaseFree 29.93 -TCGA-AC-A23C 0:LIVING 0.95 0:DiseaseFree 0.95 -TCGA-AC-A23E 0:LIVING 2.37 0:DiseaseFree 2.37 -TCGA-AC-A23H 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-AO-A1KR 0:LIVING 70.31 0:DiseaseFree 70.31 -TCGA-AQ-A1H2 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-AQ-A1H3 0:LIVING 4.53 0:DiseaseFree 4.53 -TCGA-AR-A24H 0:LIVING 109.5 0:DiseaseFree 109.5 -TCGA-AR-A24K 0:LIVING 50.86 0:DiseaseFree 50.86 -TCGA-AR-A24L 0:LIVING 72.97 0:DiseaseFree 72.97 -TCGA-AR-A24M 0:LIVING 65.38 0:DiseaseFree 65.38 -TCGA-AR-A24N 0:LIVING 68.14 0:DiseaseFree 68.14 -TCGA-AR-A24O 0:LIVING 65.61 0:DiseaseFree 65.61 -TCGA-AR-A24P 0:LIVING 0.85 0:DiseaseFree 0.85 -TCGA-AR-A24Q 0:LIVING 65.97 0:DiseaseFree 65.97 -TCGA-AR-A24R 0:LIVING 57.33 0:DiseaseFree 57.33 -TCGA-AR-A24S 0:LIVING 62.03 0:DiseaseFree 62.03 -TCGA-AR-A24T 0:LIVING 53.22 0:DiseaseFree 53.22 -TCGA-AR-A24U 0:LIVING 53.32 0:DiseaseFree 53.32 -TCGA-AR-A24V 0:LIVING 54.14 0:DiseaseFree 54.14 -TCGA-AR-A24X 0:LIVING 48.13 0:DiseaseFree 48.13 -TCGA-AR-A24Z 0:LIVING 51.71 0:DiseaseFree 51.71 -TCGA-AR-A250 0:LIVING 56.08 0:DiseaseFree 56.08 -TCGA-AR-A251 0:LIVING 45.11 0:DiseaseFree 45.11 -TCGA-AR-A252 0:LIVING 40.61 0:DiseaseFree 40.61 -TCGA-AR-A254 0:LIVING 39.82 0:DiseaseFree 39.82 -TCGA-AR-A255 0:LIVING 34.76 0:DiseaseFree 34.76 -TCGA-BH-A0B2 0:LIVING 40.8 0:DiseaseFree 40.8 -TCGA-BH-A0DV 0:LIVING 45.14 0:DiseaseFree 45.14 -TCGA-BH-A201 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-BH-A202 0:LIVING 0.72 0:DiseaseFree 0.72 -TCGA-BH-A28Q NA NA NA NA -TCGA-C8-A1HE 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HJ 0:LIVING 0.16 0:DiseaseFree 0.16 -TCGA-C8-A1HK 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A1HO 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A26V 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-C8-A26W 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A26X 0:LIVING 0.36 0:DiseaseFree 0.36 -TCGA-C8-A26Y 0:LIVING 0.43 0:DiseaseFree 0.43 -TCGA-C8-A26Z 0:LIVING 0.13 0:DiseaseFree 0.13 -TCGA-C8-A273 0:LIVING 0.2 0:DiseaseFree 0.2 -TCGA-C8-A274 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A275 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A278 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A27A 0:LIVING 12.19 0:DiseaseFree 12.19 -TCGA-C8-A27B 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-D8-A146 0:LIVING 11.3 0:DiseaseFree 11.3 -TCGA-D8-A1J9 0:LIVING 8.15 0:DiseaseFree 8.15 -TCGA-D8-A1JA 0:LIVING 0.59 0:DiseaseFree 0.59 -TCGA-D8-A1JB 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A1JC 0:LIVING 5.85 0:DiseaseFree 5.85 -TCGA-D8-A1JD 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-D8-A1JE 0:LIVING 1.87 0:DiseaseFree 1.87 -TCGA-D8-A1JI 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-D8-A1JJ 0:LIVING 9 0:DiseaseFree 9 -TCGA-D8-A1JK 0:LIVING 3.58 0:DiseaseFree 3.58 -TCGA-D8-A1JL 0:LIVING 8.71 0:DiseaseFree 8.71 -TCGA-D8-A1JM 0:LIVING 7.82 0:DiseaseFree 7.82 -TCGA-D8-A1JN 0:LIVING 7.13 0:DiseaseFree 7.13 -TCGA-D8-A1JP 0:LIVING 5.49 0:DiseaseFree 5.49 -TCGA-D8-A1X5 0:LIVING 5.62 0:DiseaseFree 5.62 -TCGA-D8-A1X6 0:LIVING 7.75 0:DiseaseFree 7.75 -TCGA-D8-A1X7 0:LIVING 2.79 0:DiseaseFree 2.79 -TCGA-D8-A1X8 0:LIVING 8.94 0:DiseaseFree 8.94 -TCGA-D8-A1X9 0:LIVING 12.48 0:DiseaseFree 12.48 -TCGA-D8-A1XA 0:LIVING 9 0:DiseaseFree 9 -TCGA-D8-A1XB 0:LIVING 6.6 0:DiseaseFree 6.6 -TCGA-D8-A1XC 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-D8-A1XD 0:LIVING 5.09 0:DiseaseFree 5.09 -TCGA-D8-A1XF 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-D8-A1XG 0:LIVING 6.44 0:DiseaseFree 6.44 -TCGA-D8-A1XJ 0:LIVING 11.56 0:DiseaseFree 11.56 -TCGA-D8-A1XK 0:LIVING 10.71 0:DiseaseFree 10.71 -TCGA-D8-A1XL 0:LIVING 10.48 0:DiseaseFree 10.48 -TCGA-D8-A1XM 0:LIVING 7.16 0:DiseaseFree 7.16 -TCGA-D8-A1XQ 0:LIVING 5.82 0:DiseaseFree 5.82 -TCGA-D8-A1XR 0:LIVING 5.52 0:DiseaseFree 5.52 -TCGA-D8-A1XU 0:LIVING 4.9 0:DiseaseFree 4.9 -TCGA-D8-A1XV 0:LIVING 4.8 0:DiseaseFree 4.8 -TCGA-D8-A1XW 0:LIVING 3.84 0:DiseaseFree 3.84 -TCGA-D8-A1XY 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-D8-A1XZ 0:LIVING 3.94 0:DiseaseFree 3.94 -TCGA-D8-A1Y0 0:LIVING 5.45 0:DiseaseFree 5.45 -TCGA-D8-A1Y1 0:LIVING 3.78 0:DiseaseFree 3.78 -TCGA-D8-A1Y2 0:LIVING 2.37 0:DiseaseFree 2.37 -TCGA-D8-A1Y3 0:LIVING 4.07 0:DiseaseFree 4.07 -TCGA-D8-A27E 0:LIVING 5.98 0:DiseaseFree 5.98 -TCGA-D8-A27F 0:LIVING 7.46 0:DiseaseFree 7.46 -TCGA-D8-A27G 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-D8-A27H 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-D8-A27I 0:LIVING 6.08 0:DiseaseFree 6.08 -TCGA-D8-A27K 0:LIVING 3.88 0:DiseaseFree 3.88 -TCGA-D8-A27L 0:LIVING 4.11 0:DiseaseFree 4.11 -TCGA-D8-A27M 0:LIVING 4.73 0:DiseaseFree 4.73 -TCGA-D8-A27N 0:LIVING 4.76 0:DiseaseFree 4.76 -TCGA-D8-A27P 0:LIVING 0.72 0:DiseaseFree 0.72 -TCGA-D8-A27R 0:LIVING 2.96 0:DiseaseFree 2.96 -TCGA-D8-A27T 0:LIVING 4.44 0:DiseaseFree 4.44 -TCGA-D8-A27V 0:LIVING 2.4 0:DiseaseFree 2.4 -TCGA-D8-A27W 0:LIVING 0.49 0:DiseaseFree 0.49 -TCGA-E2-A1IE 0:LIVING 32.29 0:DiseaseFree 32.29 -TCGA-E2-A1IF 0:LIVING 31.41 0:DiseaseFree 31.41 -TCGA-E2-A1IG 0:LIVING 24.8 0:DiseaseFree 24.8 -TCGA-E2-A1IH 0:LIVING 21.62 0:DiseaseFree 21.62 -TCGA-E2-A1II 0:LIVING 27.93 0:DiseaseFree 27.93 -TCGA-E2-A1IJ 0:LIVING 23.82 0:DiseaseFree 23.82 -TCGA-E2-A1IK 0:LIVING 17.02 0:DiseaseFree 17.02 -TCGA-E2-A1IL 0:LIVING 0.46 0:DiseaseFree 0.46 -TCGA-E2-A1IN 0:LIVING 12.88 0:DiseaseFree 12.88 -TCGA-E2-A1IO 0:LIVING 14.72 0:DiseaseFree 14.72 -TCGA-E2-A1IP 0:LIVING 14.03 0:DiseaseFree 14.03 -TCGA-E2-A1IU 0:LIVING 4.17 0:DiseaseFree 4.17 -TCGA-E2-A1L6 0:LIVING 43.1 0:DiseaseFree 43.1 -TCGA-E2-A1L7 0:LIVING 20.8 0:DiseaseFree 20.8 -TCGA-E2-A1L8 0:LIVING 33.35 0:DiseaseFree 33.35 -TCGA-E2-A1L9 0:LIVING 12.75 0:DiseaseFree 12.75 -TCGA-E2-A1LA 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-E2-A1LB 0:LIVING 31.93 0:DiseaseFree 31.93 -TCGA-E2-A1LG 0:LIVING 11.5 0:DiseaseFree 11.5 -TCGA-E2-A1LH 0:LIVING 94.45 0:DiseaseFree 94.45 -TCGA-E2-A1LI 0:LIVING 90.35 0:DiseaseFree 90.35 -TCGA-E2-A1LL 0:LIVING 33.31 0:DiseaseFree 33.31 -TCGA-E2-A1LS 0:LIVING 7.85 0:DiseaseFree 7.85 -TCGA-E9-A1N3 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N4 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N5 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N6 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N8 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N9 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NA 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NC 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1ND 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NE 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NF 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NG 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NH 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NI 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1QZ 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1R0 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1R2 0:LIVING 0.62 0:DiseaseFree 0.62 -TCGA-E9-A1R3 0:LIVING 2.1 0:DiseaseFree 2.1 -TCGA-E9-A1R4 0:LIVING 0.95 0:DiseaseFree 0.95 -TCGA-E9-A1R5 0:LIVING 1.38 0:DiseaseFree 1.38 -TCGA-E9-A1R6 0:LIVING 2.76 0:DiseaseFree 2.76 -TCGA-E9-A1R7 0:LIVING 1.12 0:DiseaseFree 1.12 -TCGA-E9-A1RA 0:LIVING 0.95 0:DiseaseFree 0.95 -TCGA-E9-A1RB 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-E9-A1RC 0:LIVING 40.34 0:DiseaseFree 40.34 -TCGA-E9-A1RD 0:LIVING 0.66 0:DiseaseFree 0.66 -TCGA-E9-A1RE 0:LIVING 1.54 0:DiseaseFree 1.54 -TCGA-E9-A1RF 0:LIVING 1.25 0:DiseaseFree 1.25 -TCGA-E9-A1RG 0:LIVING 1.15 0:DiseaseFree 1.15 -TCGA-E9-A1RH 0:LIVING 0.46 0:DiseaseFree 0.46 -TCGA-E9-A1RI 0:LIVING 1.58 0:DiseaseFree 1.58 -TCGA-E9-A226 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-E9-A227 0:LIVING 0.79 0:DiseaseFree 0.79 -TCGA-E9-A228 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A229 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22A 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22B 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22D 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22E 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22G 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22H 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A243 0:LIVING 1.41 0:DiseaseFree 1.41 -TCGA-E9-A244 0:LIVING 0.66 0:DiseaseFree 0.66 -TCGA-E9-A245 0:LIVING 0.82 0:DiseaseFree 0.82 -TCGA-E9-A247 0:LIVING 0.39 0:DiseaseFree 0.39 -TCGA-E9-A248 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-E9-A249 0:LIVING 0.92 0:DiseaseFree 0.92 -TCGA-E9-A24A 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-EW-A1IW 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-EW-A1IX 0:LIVING 35.55 0:DiseaseFree 35.55 -TCGA-EW-A1IY 0:LIVING 8.48 0:DiseaseFree 8.48 -TCGA-EW-A1IZ 0:LIVING 8.54 0:DiseaseFree 8.54 -TCGA-EW-A1J1 0:LIVING 9.26 0:DiseaseFree 9.26 -TCGA-EW-A1J2 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1J3 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-EW-A1J5 0:LIVING 7.46 0:DiseaseFree 7.46 -TCGA-EW-A1J6 0:LIVING 19.55 0:DiseaseFree 19.55 -TCGA-EW-A1OV 0:LIVING 17.15 0:DiseaseFree 17.15 -TCGA-EW-A1OW 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-EW-A1OX 0:LIVING 18.46 0:DiseaseFree 18.46 -TCGA-EW-A1OY 0:LIVING 19.48 0:DiseaseFree 19.48 -TCGA-EW-A1OZ 0:LIVING 30.91 0:DiseaseFree 30.91 -TCGA-EW-A1P0 0:LIVING 36.83 1:Recurred/Progressed NA -TCGA-EW-A1P1 0:LIVING 30.19 1:Recurred/Progressed NA -TCGA-EW-A1P3 0:LIVING 32.43 0:DiseaseFree 32.43 -TCGA-EW-A1P4 0:LIVING 16.46 0:DiseaseFree 16.46 -TCGA-EW-A1P5 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-EW-A1P6 0:LIVING 10.25 0:DiseaseFree 10.25 -TCGA-EW-A1P7 0:LIVING 20.86 0:DiseaseFree 20.86 -TCGA-EW-A1PA 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-EW-A1PB 0:LIVING 19.97 0:DiseaseFree 19.97 -TCGA-EW-A1PD 0:LIVING 5.72 0:DiseaseFree 5.72 -TCGA-EW-A1PE 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1PF 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1PG 0:LIVING 28.75 0:DiseaseFree 28.75 -TCGA-EW-A1PH 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A2FS NA NA NA NA -TCGA-EW-A2FV NA NA NA NA -TCGA-EW-A2FW NA NA NA NA -TCGA-GM-A2DA 0:LIVING 194.13 1:Recurred/Progressed NA -TCGA-GM-A2DB 0:LIVING 53.06 0:DiseaseFree 53.06 -TCGA-GM-A2DC 0:LIVING 53.49 0:DiseaseFree 53.49 -TCGA-GM-A2DD 0:LIVING 43.01 0:DiseaseFree 43.01 -TCGA-GM-A2DF 0:LIVING 42.68 0:DiseaseFree 42.68 -TCGA-GM-A2DH 0:LIVING 42.25 0:DiseaseFree 42.25 -TCGA-GM-A2DI 0:LIVING 61.86 0:DiseaseFree 61.86 -TCGA-GM-A2DK 0:LIVING 62.29 0:DiseaseFree 62.29 -TCGA-GM-A2DL 0:LIVING 90.74 0:DiseaseFree 90.74 -TCGA-GM-A2DM 0:LIVING 76.58 0:DiseaseFree 76.58 -TCGA-GM-A2DN 0:LIVING 77.27 0:DiseaseFree 77.27 -TCGA-GM-A2DO 0:LIVING 53.29 0:DiseaseFree 53.29 -TCGA-AR-A24W NA NA NA NA -TCGA-AC-A2B8 NA NA NA NA -TCGA-AC-A2FF NA NA NA NA -TCGA-AC-A2FB NA NA NA NA -TCGA-AC-A2FG NA NA NA NA -TCGA-GI-A2C8 NA NA NA NA -TCGA-E9-A295 NA NA NA NA diff --git a/core/src/test/scripts/test_data/study_various_issues/data_samples.txt b/core/src/test/scripts/test_data/study_various_issues/data_samples.txt deleted file mode 100644 index af1e447989d..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/data_samples.txt +++ /dev/null @@ -1,831 +0,0 @@ -#Patient Identifier Sample Identifier Subtype -#Patient identifier Sample identifier Subtype description -#STRING STRING STRING -#1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like -TCGA-A2-A0CM TCGA-A2-A0CM-01 basal-like -TCGA-AR-A1AR TCGA-AR-A1AR-01 basal-like -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like -TCGA-B6-A0I6 TCGA-B6-A0I6-01 NA -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like -TCGA-BH-A0HL TCGA-BH-A0HL-01 NA -TCGA-BH-A0E0 TCGA-BH-A0E0-01 basal-like -TCGA-BH-A0RX TCGA-BH-A0RX-01 basal-like -TCGA-A7-A13D TCGA-A7-A13D-01 basal-like -TCGA-BH-A0E6 TCGA-BH-A0E6-01 basal-like -TCGA-AO-A0J4 TCGA-AO-A0J4-01 basal-like -TCGA-A7-A0CE TCGA-A7-A0CE-01 basal-like -TCGA-A7-A13E TCGA-A7-A13E-01 NA -TCGA-A7-A0DA TCGA-A7-A0DA-01 basal-like -TCGA-D8-A142 TCGA-D8-A142-01 basal-like -TCGA-D8-A143 TCGA-D8-A143-01 NA -TCGA-AQ-A04J TCGA-AQ-A04J-01 basal-like -TCGA-BH-A0HN TCGA-BH-A0HN-01 NA -TCGA-A2-A0T0 TCGA-A2-A0T0-01 basal-like -TCGA-A2-A0YE TCGA-A2-A0YE-01 NA -TCGA-A2-A0YJ TCGA-A2-A0YJ-01 NA -TCGA-A2-A0D0 TCGA-A2-A0D0-01 basal-like -TCGA-A2-A04U TCGA-A2-A04U-01 NA -TCGA-AO-A0J6 TCGA-AO-A0J6-01 basal-like -TCGA-A2-A0YM TCGA-A2-A0YM-01 basal-like -TCGA-A2-A0D2 TCGA-A2-A0D2-01 basal-like -TCGA-BH-A0B3 TCGA-BH-A0B3-01 basal-like -TCGA-A2-A04Q TCGA-A2-A04Q-01 basal-like -TCGA-A2-A0SX TCGA-A2-A0SX-01 basal-like -TCGA-AO-A0JL TCGA-AO-A0JL-01 basal-like -TCGA-AO-A12F TCGA-AO-A12F-01 basal-like -TCGA-BH-A0B9 TCGA-BH-A0B9-01 basal-like -TCGA-A2-A04T TCGA-A2-A04T-01 NA -TCGA-B6-A0RT TCGA-B6-A0RT-01 basal-like -TCGA-AO-A128 TCGA-AO-A128-01 NA -TCGA-AO-A129 TCGA-AO-A129-01 basal-like -TCGA-AO-A124 TCGA-AO-A124-01 basal-like -TCGA-B6-A0RU TCGA-B6-A0RU-01 basal-like -TCGA-B6-A0IQ TCGA-B6-A0IQ-01 basal-like -TCGA-B6-A0I2 TCGA-B6-A0I2-01 basal-like -TCGA-B6-A0IJ TCGA-B6-A0IJ-01 basal-like -TCGA-B6-A0X1 TCGA-B6-A0X1-01 NA -TCGA-B6-A0RE TCGA-B6-A0RE-01 basal-like -TCGA-A2-A0ST TCGA-A2-A0ST-01 basal-like -TCGA-AR-A0TP TCGA-AR-A0TP-01 basal-like -TCGA-A1-A0SO TCGA-A1-A0SO-01 basal-like -TCGA-A8-A07C TCGA-A8-A07C-01 basal-like -TCGA-A8-A07O TCGA-A8-A07O-01 basal-like -TCGA-A8-A07R TCGA-A8-A07R-01 basal-like -TCGA-A8-A07U TCGA-A8-A07U-01 basal-like -TCGA-A8-A08H TCGA-A8-A08H-01 basal-like -TCGA-A8-A08R TCGA-A8-A08R-01 basal-like -TCGA-AN-A04D TCGA-AN-A04D-01 basal-like -TCGA-AN-A0AL TCGA-AN-A0AL-01 basal-like -TCGA-AN-A0AR TCGA-AN-A0AR-01 basal-like -TCGA-AN-A0AT TCGA-AN-A0AT-01 NA -TCGA-AN-A0FJ TCGA-AN-A0FJ-01 basal-like -TCGA-AN-A0FL TCGA-AN-A0FL-01 basal-like -TCGA-AN-A0FX TCGA-AN-A0FX-01 basal-like -TCGA-AN-A0G0 TCGA-AN-A0G0-01 NA -TCGA-AN-A0XU TCGA-AN-A0XU-01 basal-like -TCGA-AR-A0TS TCGA-AR-A0TS-01 basal-like -TCGA-AR-A0TU TCGA-AR-A0TU-01 NA -TCGA-AR-A0U0 TCGA-AR-A0U0-01 NA -TCGA-AR-A0U1 TCGA-AR-A0U1-01 basal-like -TCGA-AR-A0U4 TCGA-AR-A0U4-01 basal-like -TCGA-AR-A1AH TCGA-AR-A1AH-01 basal-like -TCGA-AR-A1AI TCGA-AR-A1AI-01 basal-like -TCGA-AR-A1AJ TCGA-AR-A1AJ-01 basal-like -TCGA-AR-A1AQ TCGA-AR-A1AQ-01 basal-like -TCGA-AR-A1AY TCGA-AR-A1AY-01 basal-like -TCGA-BH-A0AV TCGA-BH-A0AV-01 basal-like -TCGA-BH-A0BG TCGA-BH-A0BG-01 basal-like -TCGA-BH-A0BL TCGA-BH-A0BL-01 basal-like -TCGA-BH-A0BW TCGA-BH-A0BW-01 basal-like -TCGA-BH-A0DL TCGA-BH-A0DL-01 basal-like -TCGA-BH-A0WA TCGA-BH-A0WA-01 basal-like -TCGA-BH-A18G TCGA-BH-A18G-01 NA -TCGA-C8-A12K TCGA-C8-A12K-01 basal-like -TCGA-C8-A12V TCGA-C8-A12V-01 basal-like -TCGA-C8-A131 TCGA-C8-A131-01 basal-like -TCGA-C8-A134 TCGA-C8-A134-01 basal-like -TCGA-D8-A147 TCGA-D8-A147-01 basal-like -TCGA-E2-A14N TCGA-E2-A14N-01 basal-like -TCGA-E2-A14R TCGA-E2-A14R-01 basal-like -TCGA-E2-A14X TCGA-E2-A14X-01 basal-like -TCGA-E2-A14Y TCGA-E2-A14Y-01 basal-like -TCGA-E2-A150 TCGA-E2-A150-01 basal-like -TCGA-E2-A158 TCGA-E2-A158-01 basal-like -TCGA-E2-A159 TCGA-E2-A159-01 basal-like -TCGA-E2-A1AZ TCGA-E2-A1AZ-01 NA -TCGA-E2-A1B5 TCGA-E2-A1B5-01 basal-like -TCGA-A8-A08L TCGA-A8-A08L-01 Her2 enriched -TCGA-BH-A1EV TCGA-BH-A1EV-01 Her2 enriched -TCGA-B6-A0I9 TCGA-B6-A0I9-01 Her2 enriched -TCGA-A8-A09X TCGA-A8-A09X-01 Her2 enriched -TCGA-B6-A0IK TCGA-B6-A0IK-01 Her2 enriched -TCGA-BH-A18P TCGA-BH-A18P-01 Her2 enriched -TCGA-A8-A08J TCGA-A8-A08J-01 Her2 enriched -TCGA-BH-A18R TCGA-BH-A18R-01 Her2 enriched -TCGA-AR-A1AT TCGA-AR-A1AT-01 Her2 enriched -TCGA-B6-A0RS TCGA-B6-A0RS-01 Her2 enriched -TCGA-BH-A0DZ TCGA-BH-A0DZ-01 Her2 enriched -TCGA-A2-A0T1 TCGA-A2-A0T1-01 Her2 enriched -TCGA-AO-A0J2 TCGA-AO-A0J2-01 Her2 enriched -TCGA-BH-A0AW TCGA-BH-A0AW-01 Her2 enriched -TCGA-BH-A0EE TCGA-BH-A0EE-01 Her2 enriched -TCGA-A2-A0D1 TCGA-A2-A0D1-01 Her2 enriched -TCGA-AO-A03N TCGA-AO-A03N-01 Her2 enriched -TCGA-A2-A0CY TCGA-A2-A0CY-01 Her2 enriched -TCGA-A2-A04X TCGA-A2-A04X-01 Her2 enriched -TCGA-A2-A0CX TCGA-A2-A0CX-01 Her2 enriched -TCGA-A2-A04W TCGA-A2-A04W-01 Her2 enriched -TCGA-AO-A12D TCGA-AO-A12D-01 Her2 enriched -TCGA-A2-A0CL TCGA-A2-A0CL-01 Her2 enriched -TCGA-AO-A0JE TCGA-AO-A0JE-01 Her2 enriched -TCGA-A2-A0EQ TCGA-A2-A0EQ-01 Her2 enriched -TCGA-AO-A03L TCGA-AO-A03L-01 Her2 enriched -TCGA-B6-A0RH TCGA-B6-A0RH-01 Her2 enriched -TCGA-A8-A075 TCGA-A8-A075-01 Her2 enriched -TCGA-A8-A076 TCGA-A8-A076-01 Her2 enriched -TCGA-A8-A07B TCGA-A8-A07B-01 Her2 enriched -TCGA-A8-A07I TCGA-A8-A07I-01 Her2 enriched -TCGA-A8-A081 TCGA-A8-A081-01 Her2 enriched -TCGA-A8-A08B TCGA-A8-A08B-01 Her2 enriched -TCGA-A8-A08X TCGA-A8-A08X-01 Her2 enriched -TCGA-A8-A092 TCGA-A8-A092-01 Her2 enriched -TCGA-A8-A094 TCGA-A8-A094-01 Her2 enriched -TCGA-A8-A09G TCGA-A8-A09G-01 Her2 enriched -TCGA-A8-A0A7 TCGA-A8-A0A7-01 Her2 enriched -TCGA-AN-A04C TCGA-AN-A04C-01 Her2 enriched -TCGA-AN-A0FV TCGA-AN-A0FV-01 Her2 enriched -TCGA-AR-A0TX TCGA-AR-A0TX-01 Her2 enriched -TCGA-BH-A0B7 TCGA-BH-A0B7-01 Her2 enriched -TCGA-BH-A0HY TCGA-BH-A0HY-01 Her2 enriched -TCGA-C8-A12L TCGA-C8-A12L-01 Her2 enriched -TCGA-C8-A12P TCGA-C8-A12P-01 Her2 enriched -TCGA-C8-A12Q TCGA-C8-A12Q-01 Her2 enriched -TCGA-C8-A12T TCGA-C8-A12T-01 Her2 enriched -TCGA-C8-A12Z TCGA-C8-A12Z-01 Her2 enriched -TCGA-C8-A130 TCGA-C8-A130-01 Her2 enriched -TCGA-C8-A135 TCGA-C8-A135-01 Her2 enriched -TCGA-C8-A137 TCGA-C8-A137-01 Her2 enriched -TCGA-C8-A138 TCGA-C8-A138-01 Her2 enriched -TCGA-C8-A1HF TCGA-C8-A1HF-01 Her2 enriched -TCGA-D8-A13Z TCGA-D8-A13Z-01 Her2 enriched -TCGA-E2-A14P TCGA-E2-A14P-01 Her2 enriched -TCGA-E2-A14V TCGA-E2-A14V-01 Her2 enriched -TCGA-E2-A152 TCGA-E2-A152-01 Her2 enriched -TCGA-E2-A1B0 TCGA-E2-A1B0-01 Her2 enriched -TCGA-A2-A0CU TCGA-A2-A0CU-01 Luminal A -TCGA-AR-A0TR TCGA-AR-A0TR-01 Luminal A -TCGA-BH-A18T TCGA-BH-A18T-01 Luminal A -TCGA-B6-A0I8 TCGA-B6-A0I8-01 Luminal A -TCGA-B6-A0X4 TCGA-B6-A0X4-01 Luminal A -TCGA-A8-A06U TCGA-A8-A06U-01 Luminal A -TCGA-BH-A0EA TCGA-BH-A0EA-01 Luminal A -TCGA-BH-A18N TCGA-BH-A18N-01 Luminal A -TCGA-BH-A1EU TCGA-BH-A1EU-01 Luminal A -TCGA-B6-A0X7 TCGA-B6-A0X7-01 Luminal A -TCGA-A2-A04V TCGA-A2-A04V-01 Luminal A -TCGA-BH-A18S TCGA-BH-A18S-01 Luminal A -TCGA-BH-A18M TCGA-BH-A18M-01 Luminal A -TCGA-B6-A0RM TCGA-B6-A0RM-01 Luminal A -TCGA-BH-A1ET TCGA-BH-A1ET-01 Luminal A -TCGA-B6-A0IN TCGA-B6-A0IN-01 Luminal A -TCGA-BH-A1EO TCGA-BH-A1EO-01 Luminal A -TCGA-B6-A0WS TCGA-B6-A0WS-01 Luminal A -TCGA-B6-A0RP TCGA-B6-A0RP-01 Luminal A -TCGA-B6-A0IH TCGA-B6-A0IH-01 Luminal A -TCGA-B6-A0WY TCGA-B6-A0WY-01 Luminal A -TCGA-BH-A1ES TCGA-BH-A1ES-01 Luminal A -TCGA-B6-A0X0 TCGA-B6-A0X0-01 Luminal A -TCGA-B6-A0RQ TCGA-B6-A0RQ-01 Luminal A -TCGA-B6-A0IG TCGA-B6-A0IG-01 Luminal A -TCGA-BH-A0HO TCGA-BH-A0HO-01 Luminal A -TCGA-BH-A0DS TCGA-BH-A0DS-01 Luminal A -TCGA-BH-A0DQ TCGA-BH-A0DQ-01 Luminal A -TCGA-BH-A0HK TCGA-BH-A0HK-01 Luminal A -TCGA-A7-A0CG TCGA-A7-A0CG-01 Luminal A -TCGA-A7-A0CH TCGA-A7-A0CH-01 Luminal A -TCGA-A7-A0DB TCGA-A7-A0DB-01 Luminal A -TCGA-A7-A0D9 TCGA-A7-A0D9-01 Luminal A -TCGA-AO-A0J8 TCGA-AO-A0J8-01 Luminal A -TCGA-BH-A0GZ TCGA-BH-A0GZ-01 Luminal A -TCGA-AO-A0JA TCGA-AO-A0JA-01 Luminal A -TCGA-AO-A0JF TCGA-AO-A0JF-01 Luminal A -TCGA-A7-A0CD TCGA-A7-A0CD-01 Luminal A -TCGA-D8-A145 TCGA-D8-A145-01 Luminal A -TCGA-BH-A0HP TCGA-BH-A0HP-01 Luminal A -TCGA-BH-A0DK TCGA-BH-A0DK-01 Luminal A -TCGA-BH-A0E2 TCGA-BH-A0E2-01 Luminal A -TCGA-A2-A0YI TCGA-A2-A0YI-01 Luminal A -TCGA-A2-A0YL TCGA-A2-A0YL-01 Luminal A -TCGA-AO-A0JG TCGA-AO-A0JG-01 Luminal A -TCGA-A2-A0YF TCGA-A2-A0YF-01 Luminal A -TCGA-BH-A0DP TCGA-BH-A0DP-01 Luminal A -TCGA-BH-A0E1 TCGA-BH-A0E1-01 Luminal A -TCGA-A2-A0T5 TCGA-A2-A0T5-01 Luminal A -TCGA-A2-A0T6 TCGA-A2-A0T6-01 Luminal A -TCGA-BH-A0HI TCGA-BH-A0HI-01 Luminal A -TCGA-A2-A0T7 TCGA-A2-A0T7-01 Luminal A -TCGA-BH-A0BJ TCGA-BH-A0BJ-01 Luminal A -TCGA-BH-A0H7 TCGA-BH-A0H7-01 Luminal A -TCGA-BH-A0HF TCGA-BH-A0HF-01 Luminal A -TCGA-BH-A0EB TCGA-BH-A0EB-01 Luminal A -TCGA-BH-A0H6 TCGA-BH-A0H6-01 Luminal A -TCGA-A2-A0YD TCGA-A2-A0YD-01 Luminal A -TCGA-BH-A0HB TCGA-BH-A0HB-01 Luminal A -TCGA-BH-A0HX TCGA-BH-A0HX-01 Luminal A -TCGA-AO-A12H TCGA-AO-A12H-01 Luminal A -TCGA-E2-A10E TCGA-E2-A10E-01 Luminal A -TCGA-A2-A0D3 TCGA-A2-A0D3-01 Luminal A -TCGA-E2-A10F TCGA-E2-A10F-01 Luminal A -TCGA-AO-A03V TCGA-AO-A03V-01 Luminal A -TCGA-A2-A0EW TCGA-A2-A0EW-01 Luminal A -TCGA-BH-A0GY TCGA-BH-A0GY-01 Luminal A -TCGA-A2-A0EV TCGA-A2-A0EV-01 Luminal A -TCGA-BH-A0BC TCGA-BH-A0BC-01 Luminal A -TCGA-A2-A0YC TCGA-A2-A0YC-01 Luminal A -TCGA-A2-A0EU TCGA-A2-A0EU-01 Luminal A -TCGA-A2-A0ET TCGA-A2-A0ET-01 Luminal A -TCGA-A2-A04Y TCGA-A2-A04Y-01 Luminal A -TCGA-BH-A0HQ TCGA-BH-A0HQ-01 Luminal A -TCGA-A2-A0ES TCGA-A2-A0ES-01 Luminal A -TCGA-BH-A0BA TCGA-BH-A0BA-01 Luminal A -TCGA-E2-A10B TCGA-E2-A10B-01 Luminal A -TCGA-BH-A0B1 TCGA-BH-A0B1-01 Luminal A -TCGA-BH-A0DH TCGA-BH-A0DH-01 Luminal A -TCGA-BH-A0B4 TCGA-BH-A0B4-01 Luminal A -TCGA-BH-A0H9 TCGA-BH-A0H9-01 Luminal A -TCGA-AO-A0J9 TCGA-AO-A0J9-01 Luminal A -TCGA-AO-A12G TCGA-AO-A12G-01 Luminal A -TCGA-A2-A0SY TCGA-A2-A0SY-01 Luminal A -TCGA-BH-A0E7 TCGA-BH-A0E7-01 Luminal A -TCGA-AO-A03M TCGA-AO-A03M-01 Luminal A -TCGA-BH-A0BV TCGA-BH-A0BV-01 Luminal A -TCGA-BH-A0B8 TCGA-BH-A0B8-01 Luminal A -TCGA-A2-A0CZ TCGA-A2-A0CZ-01 Luminal A -TCGA-A2-A0SU TCGA-A2-A0SU-01 Luminal A -TCGA-AO-A12E TCGA-AO-A12E-01 Luminal A -TCGA-E2-A106 TCGA-E2-A106-01 Luminal A -TCGA-A2-A0CV TCGA-A2-A0CV-01 Luminal A -TCGA-AO-A12C TCGA-AO-A12C-01 Luminal A -TCGA-B6-A0RG TCGA-B6-A0RG-01 Luminal A -TCGA-A2-A0CS TCGA-A2-A0CS-01 Luminal A -TCGA-A2-A0EO TCGA-A2-A0EO-01 Luminal A -TCGA-A2-A0CQ TCGA-A2-A0CQ-01 Luminal A -TCGA-A2-A0EN TCGA-A2-A0EN-01 Luminal A -TCGA-AO-A12A TCGA-AO-A12A-01 Luminal A -TCGA-A2-A0CP TCGA-A2-A0CP-01 Luminal A -TCGA-AO-A126 TCGA-AO-A126-01 Luminal A -TCGA-AO-A125 TCGA-AO-A125-01 Luminal A -TCGA-A2-A0EM TCGA-A2-A0EM-01 Luminal A -TCGA-A2-A04N TCGA-A2-A04N-01 Luminal A -TCGA-AQ-A04L TCGA-AQ-A04L-01 Luminal A -TCGA-B6-A0IO TCGA-B6-A0IO-01 Luminal A -TCGA-B6-A0IP TCGA-B6-A0IP-01 Luminal A -TCGA-B6-A0WZ TCGA-B6-A0WZ-01 Luminal A -TCGA-B6-A0I5 TCGA-B6-A0I5-01 Luminal A -TCGA-B6-A0RV TCGA-B6-A0RV-01 Luminal A -TCGA-B6-A0RO TCGA-B6-A0RO-01 Luminal A -TCGA-B6-A0RN TCGA-B6-A0RN-01 Luminal A -TCGA-B6-A0WT TCGA-B6-A0WT-01 Luminal A -TCGA-B6-A0IA TCGA-B6-A0IA-01 Luminal A -TCGA-B6-A0RI TCGA-B6-A0RI-01 Luminal A -TCGA-A1-A0SE TCGA-A1-A0SE-01 Luminal A -TCGA-A2-A0EX TCGA-A2-A0EX-01 Luminal A -TCGA-AO-A0JJ TCGA-AO-A0JJ-01 Luminal A -TCGA-E2-A105 TCGA-E2-A105-01 Luminal A -TCGA-A1-A0SD TCGA-A1-A0SD-01 Luminal A -TCGA-A1-A0SH TCGA-A1-A0SH-01 Luminal A -TCGA-A1-A0SJ TCGA-A1-A0SJ-01 Luminal A -TCGA-A8-A06P TCGA-A8-A06P-01 Luminal A -TCGA-A8-A06T TCGA-A8-A06T-01 Luminal A -TCGA-A8-A06Y TCGA-A8-A06Y-01 Luminal A -TCGA-A8-A07E TCGA-A8-A07E-01 Luminal A -TCGA-A8-A07F TCGA-A8-A07F-01 Luminal A -TCGA-A8-A07G TCGA-A8-A07G-01 Luminal A -TCGA-A8-A07J TCGA-A8-A07J-01 Luminal A -TCGA-A8-A07P TCGA-A8-A07P-01 Luminal A -TCGA-A8-A083 TCGA-A8-A083-01 Luminal A -TCGA-A8-A086 TCGA-A8-A086-01 Luminal A -TCGA-A8-A08A TCGA-A8-A08A-01 Luminal A -TCGA-A8-A08C TCGA-A8-A08C-01 Luminal A -TCGA-A8-A08O TCGA-A8-A08O-01 Luminal A -TCGA-A8-A08T TCGA-A8-A08T-01 Luminal A -TCGA-A8-A08Z TCGA-A8-A08Z-01 Luminal A -TCGA-A8-A090 TCGA-A8-A090-01 Luminal A -TCGA-A8-A091 TCGA-A8-A091-01 Luminal A -TCGA-A8-A093 TCGA-A8-A093-01 Luminal A -TCGA-A8-A099 TCGA-A8-A099-01 Luminal A -TCGA-A8-A09A TCGA-A8-A09A-01 Luminal A -TCGA-A8-A09B TCGA-A8-A09B-01 Luminal A -TCGA-A8-A09T TCGA-A8-A09T-01 Luminal A -TCGA-A8-A09V TCGA-A8-A09V-01 Luminal A -TCGA-A8-A0A1 TCGA-A8-A0A1-01 Luminal A -TCGA-A8-A0A2 TCGA-A8-A0A2-01 Luminal A -TCGA-A8-A0A4 TCGA-A8-A0A4-01 Luminal A -TCGA-A8-A0A6 TCGA-A8-A0A6-01 Luminal A -TCGA-A8-A0AD TCGA-A8-A0AD-01 Luminal A -TCGA-AN-A03X TCGA-AN-A03X-01 Luminal A -TCGA-AN-A046 TCGA-AN-A046-01 Luminal A -TCGA-AN-A04A TCGA-AN-A04A-01 Luminal A -TCGA-AN-A0FD TCGA-AN-A0FD-01 Luminal A -TCGA-AN-A0FN TCGA-AN-A0FN-01 Luminal A -TCGA-AN-A0FS TCGA-AN-A0FS-01 Luminal A -TCGA-AN-A0FT TCGA-AN-A0FT-01 Luminal A -TCGA-AN-A0FW TCGA-AN-A0FW-01 Luminal A -TCGA-AN-A0FZ TCGA-AN-A0FZ-01 Luminal A -TCGA-AN-A0XL TCGA-AN-A0XL-01 Luminal A -TCGA-AN-A0XN TCGA-AN-A0XN-01 Luminal A -TCGA-AN-A0XO TCGA-AN-A0XO-01 Luminal A -TCGA-AN-A0XP TCGA-AN-A0XP-01 Luminal A -TCGA-AN-A0XS TCGA-AN-A0XS-01 Luminal A -TCGA-AN-A0XT TCGA-AN-A0XT-01 Luminal A -TCGA-AN-A0XV TCGA-AN-A0XV-01 Luminal A -TCGA-AR-A0TW TCGA-AR-A0TW-01 Luminal A -TCGA-AR-A1AK TCGA-AR-A1AK-01 Luminal A -TCGA-AR-A1AL TCGA-AR-A1AL-01 Luminal A -TCGA-AR-A1AN TCGA-AR-A1AN-01 Luminal A -TCGA-AR-A1AP TCGA-AR-A1AP-01 Luminal A -TCGA-AR-A1AS TCGA-AR-A1AS-01 Luminal A -TCGA-AR-A1AU TCGA-AR-A1AU-01 Luminal A -TCGA-AR-A1AW TCGA-AR-A1AW-01 Luminal A -TCGA-AR-A1AX TCGA-AR-A1AX-01 Luminal A -TCGA-BH-A0AZ TCGA-BH-A0AZ-01 Luminal A -TCGA-BH-A0B0 TCGA-BH-A0B0-01 Luminal A -TCGA-BH-A0BM TCGA-BH-A0BM-01 Luminal A -TCGA-BH-A0BO TCGA-BH-A0BO-01 Luminal A -TCGA-BH-A0BP TCGA-BH-A0BP-01 Luminal A -TCGA-BH-A0BQ TCGA-BH-A0BQ-01 Luminal A -TCGA-BH-A0BR TCGA-BH-A0BR-01 Luminal A -TCGA-BH-A0BS TCGA-BH-A0BS-01 Luminal A -TCGA-BH-A0BT TCGA-BH-A0BT-01 Luminal A -TCGA-BH-A0C1 TCGA-BH-A0C1-01 Luminal A -TCGA-BH-A0DE TCGA-BH-A0DE-01 Luminal A -TCGA-BH-A0DG TCGA-BH-A0DG-01 Luminal A -TCGA-BH-A0DI TCGA-BH-A0DI-01 Luminal A -TCGA-BH-A0DO TCGA-BH-A0DO-01 Luminal A -TCGA-BH-A0DT TCGA-BH-A0DT-01 Luminal A -TCGA-BH-A0DX TCGA-BH-A0DX-01 Luminal A -TCGA-BH-A0E9 TCGA-BH-A0E9-01 Luminal A -TCGA-BH-A0EI TCGA-BH-A0EI-01 Luminal A -TCGA-BH-A0H3 TCGA-BH-A0H3-01 Luminal A -TCGA-BH-A0H5 TCGA-BH-A0H5-01 Luminal A -TCGA-BH-A0HA TCGA-BH-A0HA-01 Luminal A -TCGA-BH-A0W4 TCGA-BH-A0W4-01 Luminal A -TCGA-BH-A0W5 TCGA-BH-A0W5-01 Luminal A -TCGA-BH-A0W7 TCGA-BH-A0W7-01 Luminal A -TCGA-BH-A18H TCGA-BH-A18H-01 Luminal A -TCGA-BH-A18I TCGA-BH-A18I-01 Luminal A -TCGA-C8-A12N TCGA-C8-A12N-01 Luminal A -TCGA-C8-A12O TCGA-C8-A12O-01 Luminal A -TCGA-C8-A12Y TCGA-C8-A12Y-01 Luminal A -TCGA-C8-A132 TCGA-C8-A132-01 Luminal A -TCGA-C8-A133 TCGA-C8-A133-01 Luminal A -TCGA-C8-A1HI TCGA-C8-A1HI-01 Luminal A -TCGA-D8-A141 TCGA-D8-A141-01 Luminal A -TCGA-E2-A14Q TCGA-E2-A14Q-01 Luminal A -TCGA-E2-A14T TCGA-E2-A14T-01 Luminal A -TCGA-E2-A14Z TCGA-E2-A14Z-01 Luminal A -TCGA-E2-A153 TCGA-E2-A153-01 Luminal A -TCGA-E2-A154 TCGA-E2-A154-01 Luminal A -TCGA-E2-A156 TCGA-E2-A156-01 Luminal A -TCGA-E2-A15C TCGA-E2-A15C-01 Luminal A -TCGA-E2-A15D TCGA-E2-A15D-01 Luminal A -TCGA-E2-A15E TCGA-E2-A15E-01 Luminal A -TCGA-E2-A15F TCGA-E2-A15F-01 Luminal A -TCGA-E2-A15G TCGA-E2-A15G-01 Luminal A -TCGA-E2-A15H TCGA-E2-A15H-01 Luminal A -TCGA-E2-A15I TCGA-E2-A15I-01 Luminal A -TCGA-E2-A15J TCGA-E2-A15J-01 Luminal A -TCGA-E2-A15O TCGA-E2-A15O-01 Luminal A -TCGA-E2-A15P TCGA-E2-A15P-01 Luminal A -TCGA-E2-A15R TCGA-E2-A15R-01 Luminal A -TCGA-E2-A1B1 TCGA-E2-A1B1-01 Luminal A -TCGA-E2-A1B4 TCGA-E2-A1B4-01 Luminal A -TCGA-E2-A1B6 TCGA-E2-A1B6-01 Luminal A -TCGA-E2-A1BC TCGA-E2-A1BC-01 Luminal A -TCGA-E2-A1BD TCGA-E2-A1BD-01 Luminal A -TCGA-A2-A0SV TCGA-A2-A0SV-01 Luminal B -TCGA-AO-A03O TCGA-AO-A03O-01 Luminal B -TCGA-A2-A0SW TCGA-A2-A0SW-01 Luminal B -TCGA-B6-A0WW TCGA-B6-A0WW-01 Luminal B -TCGA-BH-A18J TCGA-BH-A18J-01 Luminal B -TCGA-BH-A18L TCGA-BH-A18L-01 Luminal B -TCGA-A8-A06X TCGA-A8-A06X-01 Luminal B -TCGA-B6-A0IC TCGA-B6-A0IC-01 Luminal B -TCGA-BH-A18U TCGA-BH-A18U-01 Luminal B -TCGA-BH-A1EW TCGA-BH-A1EW-01 Luminal B -TCGA-AR-A0TY TCGA-AR-A0TY-01 Luminal B -TCGA-B6-A0X5 TCGA-B6-A0X5-01 Luminal B -TCGA-B6-A0WV TCGA-B6-A0WV-01 Luminal B -TCGA-B6-A0RL TCGA-B6-A0RL-01 Luminal B -TCGA-AR-A0U2 TCGA-AR-A0U2-01 Luminal B -TCGA-B6-A0IB TCGA-B6-A0IB-01 Luminal B -TCGA-AO-A0J7 TCGA-AO-A0J7-01 Luminal B -TCGA-AO-A0J3 TCGA-AO-A0J3-01 Luminal B -TCGA-D8-A13Y TCGA-D8-A13Y-01 Luminal B -TCGA-A7-A13F TCGA-A7-A13F-01 Luminal B -TCGA-BH-A0HU TCGA-BH-A0HU-01 Luminal B -TCGA-D8-A140 TCGA-D8-A140-01 Luminal B -TCGA-A7-A0CJ TCGA-A7-A0CJ-01 Luminal B -TCGA-AQ-A04H TCGA-AQ-A04H-01 Luminal B -TCGA-BH-A0H0 TCGA-BH-A0H0-01 Luminal B -TCGA-BH-A0BD TCGA-BH-A0BD-01 Luminal B -TCGA-A2-A0T3 TCGA-A2-A0T3-01 Luminal B -TCGA-A2-A0T4 TCGA-A2-A0T4-01 Luminal B -TCGA-A2-A0YH TCGA-A2-A0YH-01 Luminal B -TCGA-A2-A0YG TCGA-A2-A0YG-01 Luminal B -TCGA-A2-A0EY TCGA-A2-A0EY-01 Luminal B -TCGA-A2-A0D4 TCGA-A2-A0D4-01 Luminal B -TCGA-BH-A0AY TCGA-BH-A0AY-01 Luminal B -TCGA-E2-A107 TCGA-E2-A107-01 Luminal B -TCGA-AO-A0JI TCGA-AO-A0JI-01 Luminal B -TCGA-E2-A10C TCGA-E2-A10C-01 Luminal B -TCGA-E2-A10A TCGA-E2-A10A-01 Luminal B -TCGA-BH-A0C0 TCGA-BH-A0C0-01 Luminal B -TCGA-E2-A109 TCGA-E2-A109-01 Luminal B -TCGA-AO-A0JC TCGA-AO-A0JC-01 Luminal B -TCGA-BH-A0HW TCGA-BH-A0HW-01 Luminal B -TCGA-AO-A0JD TCGA-AO-A0JD-01 Luminal B -TCGA-AO-A0JM TCGA-AO-A0JM-01 Luminal B -TCGA-A2-A0CW TCGA-A2-A0CW-01 Luminal B -TCGA-A2-A0ER TCGA-A2-A0ER-01 Luminal B -TCGA-A2-A0CT TCGA-A2-A0CT-01 Luminal B -TCGA-AO-A12B TCGA-AO-A12B-01 Luminal B -TCGA-A2-A04R TCGA-A2-A04R-01 Luminal B -TCGA-B6-A0IM TCGA-B6-A0IM-01 Luminal B -TCGA-AO-A03P TCGA-AO-A03P-01 Luminal B -TCGA-A1-A0SM TCGA-A1-A0SM-01 Luminal B -TCGA-A8-A06N TCGA-A8-A06N-01 Luminal B -TCGA-A8-A06O TCGA-A8-A06O-01 Luminal B -TCGA-A8-A06Q TCGA-A8-A06Q-01 Luminal B -TCGA-A8-A06R TCGA-A8-A06R-01 Luminal B -TCGA-A8-A06Z TCGA-A8-A06Z-01 Luminal B -TCGA-A8-A079 TCGA-A8-A079-01 Luminal B -TCGA-A8-A07L TCGA-A8-A07L-01 Luminal B -TCGA-A8-A07S TCGA-A8-A07S-01 Luminal B -TCGA-A8-A07W TCGA-A8-A07W-01 Luminal B -TCGA-A8-A07Z TCGA-A8-A07Z-01 Luminal B -TCGA-A8-A082 TCGA-A8-A082-01 Luminal B -TCGA-A8-A084 TCGA-A8-A084-01 Luminal B -TCGA-A8-A085 TCGA-A8-A085-01 Luminal B -TCGA-A8-A08F TCGA-A8-A08F-01 Luminal B -TCGA-A8-A08G TCGA-A8-A08G-01 Luminal B -TCGA-A8-A08I TCGA-A8-A08I-01 Luminal B -TCGA-A8-A08P TCGA-A8-A08P-01 Luminal B -TCGA-A8-A095 TCGA-A8-A095-01 Luminal B -TCGA-A8-A096 TCGA-A8-A096-01 Luminal B -TCGA-A8-A097 TCGA-A8-A097-01 Luminal B -TCGA-A8-A09C TCGA-A8-A09C-01 Luminal B -TCGA-A8-A09D TCGA-A8-A09D-01 Luminal B -TCGA-A8-A09I TCGA-A8-A09I-01 Luminal B -TCGA-A8-A09M TCGA-A8-A09M-01 Luminal B -TCGA-A8-A09N TCGA-A8-A09N-01 Luminal B -TCGA-A8-A09Q TCGA-A8-A09Q-01 Luminal B -TCGA-A8-A09R TCGA-A8-A09R-01 Luminal B -TCGA-A8-A09W TCGA-A8-A09W-01 Luminal B -TCGA-A8-A09Z TCGA-A8-A09Z-01 Luminal B -TCGA-A8-A0A9 TCGA-A8-A0A9-01 Luminal B -TCGA-A8-A0AB TCGA-A8-A0AB-01 Luminal B -TCGA-AN-A03Y TCGA-AN-A03Y-01 Luminal B -TCGA-AN-A041 TCGA-AN-A041-01 Luminal B -TCGA-AN-A049 TCGA-AN-A049-01 Luminal B -TCGA-AN-A0AJ TCGA-AN-A0AJ-01 Luminal B -TCGA-AN-A0AK TCGA-AN-A0AK-01 Luminal B -TCGA-AN-A0AM TCGA-AN-A0AM-01 Luminal B -TCGA-AN-A0AS TCGA-AN-A0AS-01 Luminal B -TCGA-AN-A0FF TCGA-AN-A0FF-01 Luminal B -TCGA-AN-A0FK TCGA-AN-A0FK-01 Luminal B -TCGA-AN-A0FY TCGA-AN-A0FY-01 Luminal B -TCGA-AN-A0XR TCGA-AN-A0XR-01 Luminal B -TCGA-AN-A0XW TCGA-AN-A0XW-01 Luminal B -TCGA-AR-A0TQ TCGA-AR-A0TQ-01 Luminal B -TCGA-AR-A0TT TCGA-AR-A0TT-01 Luminal B -TCGA-AR-A0TV TCGA-AR-A0TV-01 Luminal B -TCGA-AR-A0TZ TCGA-AR-A0TZ-01 Luminal B -TCGA-AR-A0U3 TCGA-AR-A0U3-01 Luminal B -TCGA-AR-A1AV TCGA-AR-A1AV-01 Luminal B -TCGA-BH-A0AU TCGA-BH-A0AU-01 Luminal B -TCGA-BH-A0B5 TCGA-BH-A0B5-01 Luminal B -TCGA-BH-A0BF TCGA-BH-A0BF-01 Luminal B -TCGA-BH-A0BZ TCGA-BH-A0BZ-01 Luminal B -TCGA-BH-A0C3 TCGA-BH-A0C3-01 Luminal B -TCGA-BH-A0C7 TCGA-BH-A0C7-01 Luminal B -TCGA-BH-A0DD TCGA-BH-A0DD-01 Luminal B -TCGA-BH-A0W3 TCGA-BH-A0W3-01 Luminal B -TCGA-BH-A18F TCGA-BH-A18F-01 Luminal B -TCGA-C8-A12M TCGA-C8-A12M-01 Luminal B -TCGA-C8-A12U TCGA-C8-A12U-01 Luminal B -TCGA-C8-A12W TCGA-C8-A12W-01 Luminal B -TCGA-C8-A12X TCGA-C8-A12X-01 Luminal B -TCGA-C8-A1HG TCGA-C8-A1HG-01 Luminal B -TCGA-C8-A1HL TCGA-C8-A1HL-01 Luminal B -TCGA-C8-A1HM TCGA-C8-A1HM-01 Luminal B -TCGA-C8-A1HN TCGA-C8-A1HN-01 Luminal B -TCGA-E2-A14O TCGA-E2-A14O-01 Luminal B -TCGA-E2-A14S TCGA-E2-A14S-01 Luminal B -TCGA-E2-A14W TCGA-E2-A14W-01 Luminal B -TCGA-E2-A155 TCGA-E2-A155-01 Luminal B -TCGA-E2-A15A TCGA-E2-A15A-01 Luminal B -TCGA-E2-A15K TCGA-E2-A15K-01 Luminal B -TCGA-E2-A15L TCGA-E2-A15L-01 Luminal B -TCGA-E2-A15M TCGA-E2-A15M-01 Luminal B -TCGA-E2-A15S TCGA-E2-A15S-01 Luminal B -TCGA-E2-A15T TCGA-E2-A15T-01 Luminal B -TCGA-AO-A03U TCGA-AO-A03U-01 NA -TCGA-B6-A0IE TCGA-B6-A0IE-01 NA -TCGA-A2-A0YK TCGA-A2-A0YK-01 NA -TCGA-E2-A108 TCGA-E2-A108-01 Claudin low -TCGA-AO-A0JB TCGA-AO-A0JB-01 NA -TCGA-AO-A03R TCGA-AO-A03R-01 NA -TCGA-AO-A03T TCGA-AO-A03T-01 NA -TCGA-AR-A1AO TCGA-AR-A1AO-01 Claudin low -TCGA-A2-A0YT TCGA-A2-A0YT-01 Luminal B -TCGA-AQ-A0Y5 TCGA-AQ-A0Y5-01 NA -TCGA-EW-A1P8 TCGA-EW-A1P8-01 NA -TCGA-E2-A1LK TCGA-E2-A1LK-01 NA -TCGA-BH-A1EY TCGA-BH-A1EY-01 NA -TCGA-BH-A1F8 TCGA-BH-A1F8-01 NA -TCGA-BH-A1F2 TCGA-BH-A1F2-01 NA -TCGA-BH-A1FD TCGA-BH-A1FD-01 NA -TCGA-BH-A1FH TCGA-BH-A1FH-01 NA -TCGA-BH-A203 TCGA-BH-A203-01 NA -TCGA-BH-A1FM TCGA-BH-A1FM-01 NA -TCGA-BH-A1EX TCGA-BH-A1EX-01 NA -TCGA-BH-A1FL TCGA-BH-A1FL-01 NA -TCGA-BH-A208 TCGA-BH-A208-01 NA -TCGA-GM-A2D9 TCGA-GM-A2D9-01 NA -TCGA-BH-A1FJ TCGA-BH-A1FJ-01 NA -TCGA-BH-A1EN TCGA-BH-A1EN-01 NA -TCGA-BH-A1FN TCGA-BH-A1FN-01 NA -TCGA-BH-A1FU TCGA-BH-A1FU-01 NA -TCGA-BH-A1FE TCGA-BH-A1FE-01 NA -TCGA-BH-A204 TCGA-BH-A204-01 NA -TCGA-BH-A1F5 TCGA-BH-A1F5-01 NA -TCGA-AR-A256 TCGA-AR-A256-01 NA -TCGA-BH-A1F6 TCGA-BH-A1F6-01 NA -TCGA-BH-A1FC TCGA-BH-A1FC-01 NA -TCGA-BH-A1FB TCGA-BH-A1FB-01 NA -TCGA-BH-A1FG TCGA-BH-A1FG-01 NA -TCGA-BH-A209 TCGA-BH-A209-01 NA -TCGA-BH-A1FR TCGA-BH-A1FR-01 NA -TCGA-AO-A1KS TCGA-AO-A1KS-01 NA -TCGA-A7-A13G TCGA-A7-A13G-01 NA -TCGA-D8-A1JS TCGA-D8-A1JS-01 NA -TCGA-A7-A0DC TCGA-A7-A0DC-01 Luminal A -TCGA-D8-A1JT TCGA-D8-A1JT-01 NA -TCGA-A7-A26E TCGA-A7-A26E-01 NA -TCGA-D8-A1JH TCGA-D8-A1JH-01 NA -TCGA-D8-A1JU TCGA-D8-A1JU-01 NA -TCGA-AO-A1KO TCGA-AO-A1KO-01 NA -TCGA-AO-A1KT TCGA-AO-A1KT-01 NA -TCGA-AO-A0J5 TCGA-AO-A0J5-01 Luminal A -TCGA-B6-A1KC TCGA-B6-A1KC-01 NA -TCGA-AO-A1KQ TCGA-AO-A1KQ-01 NA -TCGA-B6-A1KI TCGA-B6-A1KI-01 NA -TCGA-AO-A1KP TCGA-AO-A1KP-01 NA -TCGA-B6-A1KF TCGA-B6-A1KF-01 NA -TCGA-B6-A1KN TCGA-B6-A1KN-01 NA -TCGA-D8-A1XO TCGA-D8-A1XO-01 NA -TCGA-D8-A1XT TCGA-D8-A1XT-01 NA -TCGA-A1-A0SP TCGA-A1-A0SP-01 NA -TCGA-D8-A1J8 TCGA-D8-A1J8-01 NA -TCGA-D8-A1JF TCGA-D8-A1JF-01 NA -TCGA-D8-A1JG TCGA-D8-A1JG-01 NA -TCGA-D8-A1XS TCGA-D8-A1XS-01 NA -TCGA-A1-A0SB TCGA-A1-A0SB-01 NA -TCGA-A1-A0SF TCGA-A1-A0SF-01 NA -TCGA-A1-A0SG TCGA-A1-A0SG-01 NA -TCGA-A1-A0SI TCGA-A1-A0SI-01 NA -TCGA-A1-A0SN TCGA-A1-A0SN-01 NA -TCGA-A1-A0SQ TCGA-A1-A0SQ-01 NA -TCGA-A2-A1FV TCGA-A2-A1FV-01 NA -TCGA-A2-A1FW TCGA-A2-A1FW-01 NA -TCGA-A2-A1FX TCGA-A2-A1FX-01 NA -TCGA-A2-A1FZ TCGA-A2-A1FZ-01 NA -TCGA-A2-A1G0 TCGA-A2-A1G0-01 NA -TCGA-A2-A1G1 TCGA-A2-A1G1-01 NA -TCGA-A2-A1G4 TCGA-A2-A1G4-01 NA -TCGA-A2-A1G6 TCGA-A2-A1G6-01 NA -TCGA-A2-A259 TCGA-A2-A259-01 NA -TCGA-A2-A25A TCGA-A2-A25A-01 NA -TCGA-A2-A25B TCGA-A2-A25B-01 NA -TCGA-A2-A25C TCGA-A2-A25C-01 NA -TCGA-A2-A25D TCGA-A2-A25D-01 NA -TCGA-A2-A25E TCGA-A2-A25E-01 NA -TCGA-A2-A25F TCGA-A2-A25F-01 NA -TCGA-A7-A26F TCGA-A7-A26F-01 NA -TCGA-A7-A26G TCGA-A7-A26G-01 NA -TCGA-A7-A26H TCGA-A7-A26H-01 NA -TCGA-A7-A26I TCGA-A7-A26I-01 NA -TCGA-A7-A26J TCGA-A7-A26J-01 NA -TCGA-A8-A08S TCGA-A8-A08S-01 Luminal B -TCGA-A8-A09E TCGA-A8-A09E-01 Luminal B -TCGA-A8-A09K TCGA-A8-A09K-01 Luminal B -TCGA-AC-A23C TCGA-AC-A23C-01 NA -TCGA-AC-A23E TCGA-AC-A23E-01 NA -TCGA-AC-A23H TCGA-AC-A23H-01 NA -TCGA-AO-A1KR TCGA-AO-A1KR-01 NA -TCGA-AQ-A1H2 TCGA-AQ-A1H2-01 NA -TCGA-AQ-A1H3 TCGA-AQ-A1H3-01 NA -TCGA-AR-A24H TCGA-AR-A24H-01 NA -TCGA-AR-A24K TCGA-AR-A24K-01 NA -TCGA-AR-A24L TCGA-AR-A24L-01 NA -TCGA-AR-A24M TCGA-AR-A24M-01 NA -TCGA-AR-A24N TCGA-AR-A24N-01 NA -TCGA-AR-A24O TCGA-AR-A24O-01 NA -TCGA-AR-A24P TCGA-AR-A24P-01 NA -TCGA-AR-A24Q TCGA-AR-A24Q-01 NA -TCGA-AR-A24R TCGA-AR-A24R-01 NA -TCGA-AR-A24S TCGA-AR-A24S-01 NA -TCGA-AR-A24T TCGA-AR-A24T-01 NA -TCGA-AR-A24U TCGA-AR-A24U-01 NA -TCGA-AR-A24V TCGA-AR-A24V-01 NA -TCGA-AR-A24X TCGA-AR-A24X-01 NA -TCGA-AR-A24Z TCGA-AR-A24Z-01 NA -TCGA-AR-A250 TCGA-AR-A250-01 NA -TCGA-AR-A251 TCGA-AR-A251-01 NA -TCGA-AR-A252 TCGA-AR-A252-01 NA -TCGA-AR-A254 TCGA-AR-A254-01 NA -TCGA-AR-A255 TCGA-AR-A255-01 NA -TCGA-BH-A0B2 TCGA-BH-A0B2-01 Luminal A -TCGA-BH-A0DV TCGA-BH-A0DV-01 NA -TCGA-BH-A201 TCGA-BH-A201-01 NA -TCGA-BH-A202 TCGA-BH-A202-01 NA -TCGA-BH-A28Q TCGA-BH-A28Q-01 NA -TCGA-C8-A1HE TCGA-C8-A1HE-01 NA -TCGA-C8-A1HJ TCGA-C8-A1HJ-01 NA -TCGA-C8-A1HK TCGA-C8-A1HK-01 NA -TCGA-C8-A1HO TCGA-C8-A1HO-01 NA -TCGA-C8-A26V TCGA-C8-A26V-01 NA -TCGA-C8-A26W TCGA-C8-A26W-01 NA -TCGA-C8-A26X TCGA-C8-A26X-01 NA -TCGA-C8-A26Y TCGA-C8-A26Y-01 NA -TCGA-C8-A26Z TCGA-C8-A26Z-01 NA -TCGA-C8-A273 TCGA-C8-A273-01 NA -TCGA-C8-A274 TCGA-C8-A274-01 NA -TCGA-C8-A275 TCGA-C8-A275-01 NA -TCGA-C8-A278 TCGA-C8-A278-01 NA -TCGA-C8-A27A TCGA-C8-A27A-01 NA -TCGA-C8-A27B TCGA-C8-A27B-01 NA -TCGA-D8-A146 TCGA-D8-A146-01 Luminal A -TCGA-D8-A1J9 TCGA-D8-A1J9-01 NA -TCGA-D8-A1JA TCGA-D8-A1JA-01 NA -TCGA-D8-A1JB TCGA-D8-A1JB-01 NA -TCGA-D8-A1JC TCGA-D8-A1JC-01 NA -TCGA-D8-A1JD TCGA-D8-A1JD-01 NA -TCGA-D8-A1JE TCGA-D8-A1JE-01 NA -TCGA-D8-A1JI TCGA-D8-A1JI-01 NA -TCGA-D8-A1JJ TCGA-D8-A1JJ-01 NA -TCGA-D8-A1JK TCGA-D8-A1JK-01 NA -TCGA-D8-A1JL TCGA-D8-A1JL-01 NA -TCGA-D8-A1JM TCGA-D8-A1JM-01 NA -TCGA-D8-A1JN TCGA-D8-A1JN-01 NA -TCGA-D8-A1JP TCGA-D8-A1JP-01 NA -TCGA-D8-A1X5 TCGA-D8-A1X5-01 NA -TCGA-D8-A1X6 TCGA-D8-A1X6-01 NA -TCGA-D8-A1X7 TCGA-D8-A1X7-01 NA -TCGA-D8-A1X8 TCGA-D8-A1X8-01 NA -TCGA-D8-A1X9 TCGA-D8-A1X9-01 NA -TCGA-D8-A1XA TCGA-D8-A1XA-01 NA -TCGA-D8-A1XB TCGA-D8-A1XB-01 NA -TCGA-D8-A1XC TCGA-D8-A1XC-01 NA -TCGA-D8-A1XD TCGA-D8-A1XD-01 NA -TCGA-D8-A1XF TCGA-D8-A1XF-01 NA -TCGA-D8-A1XG TCGA-D8-A1XG-01 NA -TCGA-D8-A1XJ TCGA-D8-A1XJ-01 NA -TCGA-D8-A1XK TCGA-D8-A1XK-01 NA -TCGA-D8-A1XL TCGA-D8-A1XL-01 NA -TCGA-D8-A1XM TCGA-D8-A1XM-01 NA -TCGA-D8-A1XQ TCGA-D8-A1XQ-01 NA -TCGA-D8-A1XR TCGA-D8-A1XR-01 NA -TCGA-D8-A1XU TCGA-D8-A1XU-01 NA -TCGA-D8-A1XV TCGA-D8-A1XV-01 NA -TCGA-D8-A1XW TCGA-D8-A1XW-01 NA -TCGA-D8-A1XY TCGA-D8-A1XY-01 NA -TCGA-D8-A1XZ TCGA-D8-A1XZ-01 NA -TCGA-D8-A1Y0 TCGA-D8-A1Y0-01 NA -TCGA-D8-A1Y1 TCGA-D8-A1Y1-01 NA -TCGA-D8-A1Y2 TCGA-D8-A1Y2-01 NA -TCGA-D8-A1Y3 TCGA-D8-A1Y3-01 NA -TCGA-D8-A27E TCGA-D8-A27E-01 NA -TCGA-D8-A27F TCGA-D8-A27F-01 NA -TCGA-D8-A27G TCGA-D8-A27G-01 NA -TCGA-D8-A27H TCGA-D8-A27H-01 NA -TCGA-D8-A27I TCGA-D8-A27I-01 NA -TCGA-D8-A27K TCGA-D8-A27K-01 NA -TCGA-D8-A27L TCGA-D8-A27L-01 NA -TCGA-D8-A27M TCGA-D8-A27M-01 NA -TCGA-D8-A27N TCGA-D8-A27N-01 NA -TCGA-D8-A27P TCGA-D8-A27P-01 NA -TCGA-D8-A27R TCGA-D8-A27R-01 NA -TCGA-D8-A27T TCGA-D8-A27T-01 NA -TCGA-D8-A27V TCGA-D8-A27V-01 NA -TCGA-D8-A27W TCGA-D8-A27W-01 NA -TCGA-E2-A1IE TCGA-E2-A1IE-01 NA -TCGA-E2-A1IF TCGA-E2-A1IF-01 NA -TCGA-E2-A1IG TCGA-E2-A1IG-01 NA -TCGA-E2-A1IH TCGA-E2-A1IH-01 NA -TCGA-E2-A1II TCGA-E2-A1II-01 NA -TCGA-E2-A1IJ TCGA-E2-A1IJ-01 NA -TCGA-E2-A1IK TCGA-E2-A1IK-01 NA -TCGA-E2-A1IL TCGA-E2-A1IL-01 NA -TCGA-E2-A1IN TCGA-E2-A1IN-01 NA -TCGA-E2-A1IO TCGA-E2-A1IO-01 NA -TCGA-E2-A1IP TCGA-E2-A1IP-01 NA -TCGA-E2-A1IU TCGA-E2-A1IU-01 NA -TCGA-E2-A1L6 TCGA-E2-A1L6-01 NA -TCGA-E2-A1L7 TCGA-E2-A1L7-01 NA -TCGA-E2-A1L8 TCGA-E2-A1L8-01 NA -TCGA-E2-A1L9 TCGA-E2-A1L9-01 NA -TCGA-E2-A1LA TCGA-E2-A1LA-01 NA -TCGA-E2-A1LB TCGA-E2-A1LB-01 NA -TCGA-E2-A1LG TCGA-E2-A1LG-01 NA -TCGA-E2-A1LH TCGA-E2-A1LH-01 NA -TCGA-E2-A1LI TCGA-E2-A1LI-01 NA -TCGA-E2-A1LL TCGA-E2-A1LL-01 NA -TCGA-E2-A1LS TCGA-E2-A1LS-01 NA -TCGA-E9-A1N3 TCGA-E9-A1N3-01 NA -TCGA-E9-A1N4 TCGA-E9-A1N4-01 NA -TCGA-E9-A1N5 TCGA-E9-A1N5-01 NA -TCGA-E9-A1N6 TCGA-E9-A1N6-01 NA -TCGA-E9-A1N8 TCGA-E9-A1N8-01 NA -TCGA-E9-A1N9 TCGA-E9-A1N9-01 NA -TCGA-E9-A1NA TCGA-E9-A1NA-01 NA -TCGA-E9-A1NC TCGA-E9-A1NC-01 NA -TCGA-E9-A1ND TCGA-E9-A1ND-01 NA -TCGA-E9-A1NE TCGA-E9-A1NE-01 NA -TCGA-E9-A1NF TCGA-E9-A1NF-01 NA -TCGA-E9-A1NG TCGA-E9-A1NG-01 NA -TCGA-E9-A1NH TCGA-E9-A1NH-01 NA -TCGA-E9-A1NI TCGA-E9-A1NI-01 NA -TCGA-E9-A1QZ TCGA-E9-A1QZ-01 NA -TCGA-E9-A1R0 TCGA-E9-A1R0-01 NA -TCGA-E9-A1R2 TCGA-E9-A1R2-01 NA -TCGA-E9-A1R3 TCGA-E9-A1R3-01 NA -TCGA-E9-A1R4 TCGA-E9-A1R4-01 NA -TCGA-E9-A1R5 TCGA-E9-A1R5-01 NA -TCGA-E9-A1R6 TCGA-E9-A1R6-01 NA -TCGA-E9-A1R7 TCGA-E9-A1R7-01 NA -TCGA-E9-A1RA TCGA-E9-A1RA-01 NA -TCGA-E9-A1RB TCGA-E9-A1RB-01 NA -TCGA-E9-A1RC TCGA-E9-A1RC-01 NA -TCGA-E9-A1RD TCGA-E9-A1RD-01 NA -TCGA-E9-A1RE TCGA-E9-A1RE-01 NA -TCGA-E9-A1RF TCGA-E9-A1RF-01 NA -TCGA-E9-A1RG TCGA-E9-A1RG-01 NA -TCGA-E9-A1RH TCGA-E9-A1RH-01 NA -TCGA-E9-A1RI TCGA-E9-A1RI-01 NA -TCGA-E9-A226 TCGA-E9-A226-01 NA -TCGA-E9-A227 TCGA-E9-A227-01 NA -TCGA-E9-A228 TCGA-E9-A228-01 NA -TCGA-E9-A229 TCGA-E9-A229-01 NA -TCGA-E9-A22A TCGA-E9-A22A-01 NA -TCGA-E9-A22B TCGA-E9-A22B-01 NA -TCGA-E9-A22D TCGA-E9-A22D-01 NA -TCGA-E9-A22E TCGA-E9-A22E-01 NA -TCGA-E9-A22G TCGA-E9-A22G-01 NA -TCGA-E9-A22H TCGA-E9-A22H-01 NA -TCGA-E9-A243 TCGA-E9-A243-01 NA -TCGA-E9-A244 TCGA-E9-A244-01 NA -TCGA-E9-A245 TCGA-E9-A245-01 NA -TCGA-E9-A247 TCGA-E9-A247-01 NA -TCGA-E9-A248 TCGA-E9-A248-01 NA -TCGA-E9-A249 TCGA-E9-A249-01 NA -TCGA-E9-A24A TCGA-E9-A24A-01 NA -TCGA-EW-A1IW TCGA-EW-A1IW-01 NA -TCGA-EW-A1IX TCGA-EW-A1IX-01 NA -TCGA-EW-A1IY TCGA-EW-A1IY-01 NA -TCGA-EW-A1IZ TCGA-EW-A1IZ-01 NA -TCGA-EW-A1J1 TCGA-EW-A1J1-01 NA -TCGA-EW-A1J2 TCGA-EW-A1J2-01 NA -TCGA-EW-A1J3 TCGA-EW-A1J3-01 NA -TCGA-EW-A1J5 TCGA-EW-A1J5-01 NA -TCGA-EW-A1J6 TCGA-EW-A1J6-01 NA -TCGA-EW-A1OV TCGA-EW-A1OV-01 NA -TCGA-EW-A1OW TCGA-EW-A1OW-01 NA -TCGA-EW-A1OX TCGA-EW-A1OX-01 NA -TCGA-EW-A1OY TCGA-EW-A1OY-01 NA -TCGA-EW-A1OZ TCGA-EW-A1OZ-01 NA -TCGA-EW-A1P0 TCGA-EW-A1P0-01 NA -TCGA-EW-A1P1 TCGA-EW-A1P1-01 NA -TCGA-EW-A1P3 TCGA-EW-A1P3-01 NA -TCGA-EW-A1P4 TCGA-EW-A1P4-01 NA -TCGA-EW-A1P5 TCGA-EW-A1P5-01 NA -TCGA-EW-A1P6 TCGA-EW-A1P6-01 NA -TCGA-EW-A1P7 TCGA-EW-A1P7-01 NA -TCGA-EW-A1PA TCGA-EW-A1PA-01 NA -TCGA-EW-A1PB TCGA-EW-A1PB-01 NA -TCGA-EW-A1PD TCGA-EW-A1PD-01 NA -TCGA-EW-A1PE TCGA-EW-A1PE-01 NA -TCGA-EW-A1PF TCGA-EW-A1PF-01 NA -TCGA-EW-A1PG TCGA-EW-A1PG-01 NA -TCGA-EW-A1PH TCGA-EW-A1PH-01 NA -TCGA-EW-A2FS TCGA-EW-A2FS-01 NA -TCGA-EW-A2FV TCGA-EW-A2FV-01 NA -TCGA-EW-A2FW TCGA-EW-A2FW-01 NA -TCGA-GM-A2DA TCGA-GM-A2DA-01 NA -TCGA-GM-A2DB TCGA-GM-A2DB-01 NA -TCGA-GM-A2DC TCGA-GM-A2DC-01 NA -TCGA-GM-A2DD TCGA-GM-A2DD-01 NA -TCGA-GM-A2DF TCGA-GM-A2DF-01 NA -TCGA-GM-A2DH TCGA-GM-A2DH-01 NA -TCGA-GM-A2DI TCGA-GM-A2DI-01 NA -TCGA-GM-A2DK TCGA-GM-A2DK-01 NA -TCGA-GM-A2DL TCGA-GM-A2DL-01 NA -TCGA-GM-A2DM TCGA-GM-A2DM-01 NA -TCGA-GM-A2DN TCGA-GM-A2DN-01 NA -TCGA-GM-A2DO TCGA-GM-A2DO-01 NA -TCGA-AR-A24W TCGA-AR-A24W-01 NA -TCGA-AC-A2B8 TCGA-AC-A2B8-01 NA -TCGA-AC-A2FF TCGA-AC-A2FF-01 NA -TCGA-AC-A2FB TCGA-AC-A2FB-01 NA -TCGA-AC-A2FG TCGA-AC-A2FG-01 NA -TCGA-GI-A2C8 TCGA-GI-A2C8-01 NA -TCGA-E9-A295 TCGA-E9-A295-01 NA -TCGA-E2-A15E TCGA-E2-A15E-06 NA -TCGA-A2-A0T2 TCGA-A2-A0T2-01 NA diff --git a/core/src/test/scripts/test_data/study_various_issues/error_file.txt b/core/src/test/scripts/test_data/study_various_issues/error_file.txt deleted file mode 100644 index dfe0d086222..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/error_file.txt +++ /dev/null @@ -1,10 +0,0 @@ ->data_patients.txt | ERROR: datatype definition for attribute 'DFS_MONTHS' must be NUMBER -3 ->data_patients.txt | ERROR: Value of numeric attribute is not a real number -536,540 ->brca_tcga_pub.maf | WARNING: Entrez gene id not known to the cBioPortal instance. This record will not be loaded. Might be new or deprecated Entrez gene id. -2,3,5,8,9,11,12,16 ->brca_tcga_pub.maf | ERROR: Normal sample id not in list of sample ids configured in corresponding metafile. Please check your metafile field 'normal_samples_list'. -8,9,11,12 ->brca_tcga_pub.maf | WARNING: Given value for Variant_Classification column is not one of the expected values. This can result in mapping issues and subsequent missing features in the mutation view UI, such as missing COSMIC information. -16 diff --git a/core/src/test/scripts/test_data/study_various_issues/meta_mutations_extended.txt b/core/src/test/scripts/test_data/study_various_issues/meta_mutations_extended.txt deleted file mode 100644 index bb41d75e38f..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/meta_mutations_extended.txt +++ /dev/null @@ -1,10 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: MUTATION_EXTENDED -datatype: MAF -stable_id: mutations -show_profile_in_analysis_tab: true -profile_description: Mutation data from whole exome sequencing. -profile_name: Mutations -data_filename: brca_tcga_pub.maf -normal_samples_list: TCGA-B6-A0RS-10,TCGA-BH-A0HP-10,TCGA-BH-A18P-11,TCGA-BH-A18H-10,TCGA-C8-A138-10,TCGA-BH-A0HP-10 -swissprot_identifier: accession diff --git a/core/src/test/scripts/test_data/study_various_issues/meta_patients.txt b/core/src/test/scripts/test_data/study_various_issues/meta_patients.txt deleted file mode 100644 index bc956265f29..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/meta_patients.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: CLINICAL -datatype: PATIENT_ATTRIBUTES -stable_id: clinical -show_profile_in_analysis_tab: false -profile_description: Sample clinical data for this study. -profile_name: Sample clinical data for brca_tcga_pub. -data_filename: data_patients.txt diff --git a/core/src/test/scripts/test_data/study_various_issues/meta_samples.txt b/core/src/test/scripts/test_data/study_various_issues/meta_samples.txt deleted file mode 100644 index 7f19d43c7f2..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/meta_samples.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: CLINICAL -datatype: SAMPLE_ATTRIBUTES -data_filename: data_samples.txt diff --git a/core/src/test/scripts/test_data/study_various_issues/meta_study.txt b/core/src/test/scripts/test_data/study_various_issues/meta_study.txt deleted file mode 100644 index c6a63249bbd..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/meta_study.txt +++ /dev/null @@ -1,7 +0,0 @@ -type_of_cancer: brca -cancer_study_identifier: brca_tcga_pub -name: Breast Invasive Carcinoma (TCGA, Nature 2012) -description: The Cancer Genome Atlas (TCGA) Breast Invasive Carcinoma project. 825 cases.
    Nature 2012. Raw data via the TCGA Data Portal. -citation: TCGA, Nature 2012 -pmid: 23000897 -groups: PUBLIC;GDAC;SU2C-PI3K diff --git a/core/src/test/scripts/test_data/study_various_issues/result_report.html b/core/src/test/scripts/test_data/study_various_issues/result_report.html deleted file mode 100644 index 336b2fbd2bc..00000000000 --- a/core/src/test/scripts/test_data/study_various_issues/result_report.html +++ /dev/null @@ -1,969 +0,0 @@ - - - - - - - - - - - - - cBioPortal validation report: study in 'test_data/study_various_issues/' - - - - - -
    -
    -
    -

    cBioPortal validation report

    -

    Study directory:
    test_data/study_various_issues/

    -

    For details, please see the documentation on file formats supported by cBioPortal

    -

    cBioPortal version unknown -- offline instance

    -
    -
    - - -
    -
    -
    - Validation status: - - Failed - -
    - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugReading portal information from test_data/api_json_system_tests/cancer-types.json
    DebugReading portal information from test_data/api_json_system_tests/genes.json
    DebugReading portal information from test_data/api_json_system_tests/genesets.json
    DebugReading portal information from test_data/api_json_system_tests/genesets_version.json
    DebugReading portal information from test_data/api_json_system_tests/gene-panels.json
    DebugReading portal information from test_data/api_json_system_tests/genesaliases.json
    DebugValidating case lists
    InfoValidation of case list folder complete
    ErrorNo case list found with stable_id 'brca_tcga_pub_all', consider adding 'add_global_case_list: true' to the meta_study.txt file
    InfoValidation complete
    -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Warning2, 3, 5…Entrez gene id not known to the cBioPortal instance. This record will not be loaded. Might be new or deprecated Entrez gene id.29974, 2, 144568 - See all 8 values - -
    Info4, 6, 7…Line will not be loaded due to the variant classification filter. Filtered types: [Silent, Intron, 3'UTR, 3'Flank, 5'UTR, 5'Flank, IGR, RNA]Silent - See all 7 values - -
    Error8, 9, 11…17Normal sample id not in list of sample ids configured in corresponding metafile. Please check your metafile field 'normal_samples_list'.TCGA-A8-A08G-10, TCGA-B6-A0IQ-10, TCGA-A1-A0SO-10… - See all 4 values - -
    Warning16Given value for Variant_Classification column is not one of the expected values. This can result in mapping issues and subsequent missing features in the mutation view UI, such as missing COSMIC information.Missense_mUtAtioN
    InfoValidation of file complete
    InfoRead 16 lines. Lines with warning: 8. Lines with error: 4
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Error35datatype definition for attribute 'DFS_MONTHS' must be NUMBERSTRING
    Error536, 5403
    Column names: OS_MONTHS
    Value of numeric attribute is not a real numberTEST
    WarningMissing clinical data for a patient associated with samplesTCGA-A2-A0T2
    InfoValidation of file complete
    InfoRead 829 lines. Lines with warning: 0. Lines with error: 3
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 831 lines. Lines with warning: 0. Lines with error: 0
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    WarningUnrecognized field in meta filestable_id, show_profile_in_analysis_tab, profile_description… - See all 4 values - -
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    InfoNo reference genome specified -- using default (hg19)
    -
    -
    -
    - - -
    -
    -
    -
    -
    -

    Legend

    -
    -
    -

    - Click on a filename below to see a table of messages about the data - in the file. The colors in the tables have the following meanings: -

    - - - - - - - - - - - - - - - - - - - -
    ErrorError: cBioPortal will not know how to load this, please revise or remove
    WarningWarning: possible cause of confusion, please check whether this is intended
    InfoInfo: this looks good, no action required
    DebugVerbose output: details on the progress of the validation script
    -
    -
    -
    - - \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_wr_clin/cancer_type.txt b/core/src/test/scripts/test_data/study_wr_clin/cancer_type.txt deleted file mode 100644 index 938ccf6d632..00000000000 --- a/core/src/test/scripts/test_data/study_wr_clin/cancer_type.txt +++ /dev/null @@ -1 +0,0 @@ -brca-ben Breast Invasive Carcinoma HotPink Breast diff --git a/core/src/test/scripts/test_data/study_wr_clin/data_expression_median.txt b/core/src/test/scripts/test_data/study_wr_clin/data_expression_median.txt deleted file mode 100644 index 15c7ba8bfc7..00000000000 --- a/core/src/test/scripts/test_data/study_wr_clin/data_expression_median.txt +++ /dev/null @@ -1,7 +0,0 @@ -Hugo_Symbol Entrez_Gene_Id TEST2-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A1-A0SJ-01 TCGA-A1-A0SK-01 TCGA-A1-A0SM-01 TCGA-A1-A0SO-01 TCGA-A1-A0SP-01 TCGA-A2-A04N-01 TCGA-A2-A04P-01 TCGA-A2-A04Q-01 TCGA-A2-A04R-01 TCGA-A2-A04T-01 TCGA-A2-A04U-01 TCGA-A2-A04V-01 TCGA-A2-A04W-01 TCGA-A2-A04X-01 TCGA-A2-A04Y-01 TCGA-A2-A0CL-01 TCGA-A2-A0CM-01 TCGA-A2-A0CP-01 TCGA-A2-A0CQ-01 TCGA-A2-A0CS-01 TCGA-A2-A0CT-01 TCGA-A2-A0CU-01 TCGA-A2-A0CV-01 TCGA-A2-A0CW-01 TCGA-A2-A0CX-01 TCGA-A2-A0CY-01 TCGA-A2-A0CZ-01 TCGA-A2-A0D0-01 TCGA-A2-A0D1-01 TCGA-A2-A0D2-01 TCGA-A2-A0D3-01 TCGA-A2-A0D4-01 TCGA-A2-A0EM-01 TCGA-A2-A0EN-01 TCGA-A2-A0EO-01 TCGA-A2-A0EQ-01 TCGA-A2-A0ER-01 TCGA-A2-A0ES-01 TCGA-A2-A0ET-01 TCGA-A2-A0EU-01 TCGA-A2-A0EV-01 TCGA-A2-A0EW-01 TCGA-A2-A0EX-01 TCGA-A2-A0EY-01 TCGA-A2-A0ST-01 TCGA-A2-A0SU-01 TCGA-A2-A0SV-01 TCGA-A2-A0SW-01 TCGA-A2-A0SX-01 TCGA-A2-A0SY-01 TCGA-A2-A0T0-01 TCGA-A2-A0T1-01 TCGA-A2-A0T2-01 TCGA-A2-A0T3-01 TCGA-A2-A0T4-01 TCGA-A2-A0T5-01 TCGA-A2-A0T6-01 TCGA-A2-A0T7-01 TCGA-A2-A0YC-01 TCGA-A2-A0YD-01 TCGA-A2-A0YE-01 TCGA-A2-A0YF-01 TCGA-A2-A0YG-01 TCGA-A2-A0YH-01 TCGA-A2-A0YI-01 TCGA-A2-A0YJ-01 TCGA-A2-A0YK-01 TCGA-A2-A0YL-01 TCGA-A2-A0YM-01 TCGA-A2-A0YT-01 TCGA-A7-A0CD-01 TCGA-A7-A0CE-01 TCGA-A7-A0CG-01 TCGA-A7-A0CH-01 TCGA-A7-A0CJ-01 TCGA-A7-A0D9-01 TCGA-A7-A0DA-01 TCGA-A7-A0DB-01 TCGA-A7-A13D-01 TCGA-A7-A13E-01 TCGA-A7-A13F-01 TCGA-A8-A06N-01 TCGA-A8-A06O-01 TCGA-A8-A06P-01 TCGA-A8-A06Q-01 TCGA-A8-A06R-01 TCGA-A8-A06T-01 TCGA-A8-A06U-01 TCGA-A8-A06X-01 TCGA-A8-A06Y-01 TCGA-A8-A06Z-01 TCGA-A8-A075-01 TCGA-A8-A076-01 TCGA-A8-A079-01 TCGA-A8-A07B-01 TCGA-A8-A07C-01 TCGA-A8-A07E-01 TCGA-A8-A07F-01 TCGA-A8-A07G-01 TCGA-A8-A07I-01 TCGA-A8-A07J-01 TCGA-A8-A07L-01 TCGA-A8-A07O-01 TCGA-A8-A07P-01 TCGA-A8-A07R-01 TCGA-A8-A07S-01 TCGA-A8-A07U-01 TCGA-A8-A07W-01 TCGA-A8-A07Z-01 TCGA-A8-A081-01 TCGA-A8-A082-01 TCGA-A8-A083-01 TCGA-A8-A084-01 TCGA-A8-A085-01 TCGA-A8-A086-01 TCGA-A8-A08A-01 TCGA-A8-A08B-01 TCGA-A8-A08C-01 TCGA-A8-A08F-01 TCGA-A8-A08G-01 TCGA-A8-A08H-01 TCGA-A8-A08I-01 TCGA-A8-A08J-01 TCGA-A8-A08L-01 TCGA-A8-A08O-01 TCGA-A8-A08P-01 TCGA-A8-A08R-01 TCGA-A8-A08S-01 TCGA-A8-A08T-01 TCGA-A8-A08X-01 TCGA-A8-A08Z-01 TCGA-A8-A090-01 TCGA-A8-A091-01 TCGA-A8-A092-01 TCGA-A8-A093-01 TCGA-A8-A094-01 TCGA-A8-A095-01 TCGA-A8-A096-01 TCGA-A8-A097-01 TCGA-A8-A099-01 TCGA-A8-A09A-01 TCGA-A8-A09B-01 TCGA-A8-A09C-01 TCGA-A8-A09D-01 TCGA-A8-A09E-01 TCGA-A8-A09G-01 TCGA-A8-A09I-01 TCGA-A8-A09K-01 TCGA-A8-A09M-01 TCGA-A8-A09N-01 TCGA-A8-A09Q-01 TCGA-A8-A09R-01 TCGA-A8-A09T-01 TCGA-A8-A09V-01 TCGA-A8-A09W-01 TCGA-A8-A09X-01 TCGA-A8-A09Z-01 TCGA-A8-A0A1-01 TCGA-A8-A0A2-01 TCGA-A8-A0A4-01 TCGA-A8-A0A6-01 TCGA-A8-A0A7-01 TCGA-A8-A0A9-01 TCGA-A8-A0AB-01 TCGA-A8-A0AD-01 TCGA-AN-A03X-01 TCGA-AN-A03Y-01 TCGA-AN-A041-01 TCGA-AN-A046-01 TCGA-AN-A049-01 TCGA-AN-A04A-01 TCGA-AN-A04C-01 TCGA-AN-A04D-01 TCGA-AN-A0AJ-01 TCGA-AN-A0AK-01 TCGA-AN-A0AL-01 TCGA-AN-A0AM-01 TCGA-AN-A0AR-01 TCGA-AN-A0AS-01 TCGA-AN-A0AT-01 TCGA-AN-A0FD-01 TCGA-AN-A0FF-01 TCGA-AN-A0FJ-01 TCGA-AN-A0FK-01 TCGA-AN-A0FL-01 TCGA-AN-A0FN-01 TCGA-AN-A0FS-01 TCGA-AN-A0FT-01 TCGA-AN-A0FV-01 TCGA-AN-A0FW-01 TCGA-AN-A0FX-01 TCGA-AN-A0FY-01 TCGA-AN-A0FZ-01 TCGA-AN-A0G0-01 TCGA-AN-A0XL-01 TCGA-AN-A0XN-01 TCGA-AN-A0XO-01 TCGA-AN-A0XP-01 TCGA-AN-A0XR-01 TCGA-AN-A0XS-01 TCGA-AN-A0XT-01 TCGA-AN-A0XU-01 TCGA-AN-A0XV-01 TCGA-AN-A0XW-01 TCGA-AO-A03L-01 TCGA-AO-A03M-01 TCGA-AO-A03N-01 TCGA-AO-A03O-01 TCGA-AO-A03P-01 TCGA-AO-A03R-01 TCGA-AO-A03T-01 TCGA-AO-A03U-01 TCGA-AO-A03V-01 TCGA-AO-A0J2-01 TCGA-AO-A0J3-01 TCGA-AO-A0J4-01 TCGA-AO-A0J5-01 TCGA-AO-A0J6-01 TCGA-AO-A0J7-01 TCGA-AO-A0J8-01 TCGA-AO-A0J9-01 TCGA-AO-A0JA-01 TCGA-AO-A0JB-01 TCGA-AO-A0JC-01 TCGA-AO-A0JD-01 TCGA-AO-A0JE-01 TCGA-AO-A0JF-01 TCGA-AO-A0JG-01 TCGA-AO-A0JI-01 TCGA-AO-A0JJ-01 TCGA-AO-A0JL-01 TCGA-AO-A0JM-01 TCGA-AO-A124-01 TCGA-AO-A125-01 TCGA-AO-A126-01 TCGA-AO-A128-01 TCGA-AO-A129-01 TCGA-AO-A12A-01 TCGA-AO-A12B-01 TCGA-AO-A12C-01 TCGA-AO-A12D-01 TCGA-AO-A12E-01 TCGA-AO-A12F-01 TCGA-AO-A12G-01 TCGA-AO-A12H-01 TCGA-AQ-A04H-01 TCGA-AQ-A04J-01 TCGA-AQ-A04L-01 TCGA-AR-A0TP-01 TCGA-AR-A0TQ-01 TCGA-AR-A0TR-01 TCGA-AR-A0TS-01 TCGA-AR-A0TT-01 TCGA-AR-A0TU-01 TCGA-AR-A0TV-01 TCGA-AR-A0TW-01 TCGA-AR-A0TX-01 TCGA-AR-A0TY-01 TCGA-AR-A0TZ-01 TCGA-AR-A0U0-01 TCGA-AR-A0U1-01 TCGA-AR-A0U2-01 TCGA-AR-A0U3-01 TCGA-AR-A0U4-01 TCGA-AR-A1AH-01 TCGA-AR-A1AI-01 TCGA-AR-A1AJ-01 TCGA-AR-A1AK-01 TCGA-AR-A1AL-01 TCGA-AR-A1AN-01 TCGA-AR-A1AO-01 TCGA-AR-A1AP-01 TCGA-AR-A1AQ-01 TCGA-AR-A1AR-01 TCGA-AR-A1AS-01 TCGA-AR-A1AT-01 TCGA-AR-A1AU-01 TCGA-AR-A1AV-01 TCGA-AR-A1AW-01 TCGA-AR-A1AX-01 TCGA-AR-A1AY-01 TCGA-B6-A0I2-01 TCGA-B6-A0I5-01 TCGA-B6-A0I6-01 TCGA-B6-A0I8-01 TCGA-B6-A0I9-01 TCGA-B6-A0IA-01 TCGA-B6-A0IB-01 TCGA-B6-A0IC-01 TCGA-B6-A0IE-01 TCGA-B6-A0IG-01 TCGA-B6-A0IH-01 TCGA-B6-A0IJ-01 TCGA-B6-A0IK-01 TCGA-B6-A0IM-01 TCGA-B6-A0IN-01 TCGA-B6-A0IO-01 TCGA-B6-A0IP-01 TCGA-B6-A0IQ-01 TCGA-B6-A0RE-01 TCGA-B6-A0RG-01 TCGA-B6-A0RH-01 TCGA-B6-A0RI-01 TCGA-B6-A0RL-01 TCGA-B6-A0RM-01 TCGA-B6-A0RN-01 TCGA-B6-A0RO-01 TCGA-B6-A0RP-01 TCGA-B6-A0RQ-01 TCGA-B6-A0RS-01 TCGA-B6-A0RT-01 TCGA-B6-A0RU-01 TCGA-B6-A0RV-01 TCGA-B6-A0WS-01 TCGA-B6-A0WT-01 TCGA-B6-A0WV-01 TCGA-B6-A0WW-01 TCGA-B6-A0WX-01 TCGA-B6-A0WY-01 TCGA-B6-A0WZ-01 TCGA-B6-A0X0-01 TCGA-B6-A0X1-01 TCGA-B6-A0X4-01 TCGA-B6-A0X5-01 TCGA-B6-A0X7-01 TCGA-BH-A0AU-01 TCGA-BH-A0AV-01 TCGA-BH-A0AW-01 TCGA-BH-A0AY-01 TCGA-BH-A0AZ-01 TCGA-BH-A0B0-01 TCGA-BH-A0B1-01 TCGA-BH-A0B3-01 TCGA-BH-A0B4-01 TCGA-BH-A0B5-01 TCGA-BH-A0B7-01 TCGA-BH-A0B8-01 TCGA-BH-A0B9-01 TCGA-BH-A0BA-01 TCGA-BH-A0BC-01 TCGA-BH-A0BD-01 TCGA-BH-A0BF-01 TCGA-BH-A0BG-01 TCGA-BH-A0BJ-01 TCGA-BH-A0BL-01 TCGA-BH-A0BM-01 TCGA-BH-A0BO-01 TCGA-BH-A0BP-01 TCGA-BH-A0BQ-01 TCGA-BH-A0BR-01 TCGA-BH-A0BS-01 TCGA-BH-A0BT-01 TCGA-BH-A0BV-01 TCGA-BH-A0BW-01 TCGA-BH-A0BZ-01 TCGA-BH-A0C0-01 TCGA-BH-A0C1-01 TCGA-BH-A0C3-01 TCGA-BH-A0C7-01 TCGA-BH-A0DD-01 TCGA-BH-A0DE-01 TCGA-BH-A0DG-01 TCGA-BH-A0DH-01 TCGA-BH-A0DI-01 TCGA-BH-A0DK-01 TCGA-BH-A0DL-01 TCGA-BH-A0DO-01 TCGA-BH-A0DP-01 TCGA-BH-A0DQ-01 TCGA-BH-A0DS-01 TCGA-BH-A0DT-01 TCGA-BH-A0DX-01 TCGA-BH-A0DZ-01 TCGA-BH-A0E0-01 TCGA-BH-A0E1-01 TCGA-BH-A0E2-01 TCGA-BH-A0E6-01 TCGA-BH-A0E7-01 TCGA-BH-A0E9-01 TCGA-BH-A0EA-01 TCGA-BH-A0EB-01 TCGA-BH-A0EE-01 TCGA-BH-A0EI-01 TCGA-BH-A0GY-01 TCGA-BH-A0GZ-01 TCGA-BH-A0H0-01 TCGA-BH-A0H3-01 TCGA-BH-A0H5-01 TCGA-BH-A0H6-01 TCGA-BH-A0H7-01 TCGA-BH-A0H9-01 TCGA-BH-A0HA-01 TCGA-BH-A0HB-01 TCGA-BH-A0HF-01 TCGA-BH-A0HI-01 TCGA-BH-A0HK-01 TCGA-BH-A0HL-01 TCGA-BH-A0HN-01 TCGA-BH-A0HO-01 TCGA-BH-A0HP-01 TCGA-BH-A0HQ-01 TCGA-BH-A0HU-01 TCGA-BH-A0HW-01 TCGA-BH-A0HX-01 TCGA-BH-A0HY-01 TCGA-BH-A0RX-01 TCGA-BH-A0W3-01 TCGA-BH-A0W4-01 TCGA-BH-A0W5-01 TCGA-BH-A0W7-01 TCGA-BH-A0WA-01 TCGA-BH-A18F-01 TCGA-BH-A18G-01 TCGA-BH-A18H-01 TCGA-BH-A18I-01 TCGA-BH-A18J-01 TCGA-BH-A18K-01 TCGA-BH-A18L-01 TCGA-BH-A18M-01 TCGA-BH-A18N-01 TCGA-BH-A18P-01 TCGA-BH-A18Q-01 TCGA-BH-A18R-01 TCGA-BH-A18S-01 TCGA-BH-A18T-01 TCGA-BH-A18U-01 TCGA-BH-A18V-01 TCGA-BH-A1EO-01 TCGA-BH-A1ES-01 TCGA-BH-A1ET-01 TCGA-BH-A1EU-01 TCGA-BH-A1EV-01 TCGA-BH-A1EW-01 TCGA-BH-A1F0-01 TCGA-C8-A12K-01 TCGA-C8-A12L-01 TCGA-C8-A12M-01 TCGA-C8-A12N-01 TCGA-C8-A12O-01 TCGA-C8-A12P-01 TCGA-C8-A12Q-01 TCGA-C8-A12T-01 TCGA-C8-A12U-01 TCGA-C8-A12V-01 TCGA-C8-A12W-01 TCGA-C8-A12X-01 TCGA-C8-A12Y-01 TCGA-C8-A12Z-01 TCGA-C8-A130-01 TCGA-C8-A131-01 TCGA-C8-A132-01 TCGA-C8-A133-01 TCGA-C8-A134-01 TCGA-C8-A135-01 TCGA-C8-A137-01 TCGA-C8-A138-01 TCGA-C8-A1HF-01 TCGA-C8-A1HG-01 TCGA-C8-A1HI-01 TCGA-C8-A1HL-01 TCGA-C8-A1HM-01 TCGA-C8-A1HN-01 TCGA-D8-A13Y-01 TCGA-D8-A13Z-01 TCGA-D8-A140-01 TCGA-D8-A141-01 TCGA-D8-A142-01 TCGA-D8-A143-01 TCGA-D8-A145-01 TCGA-D8-A146-01 TCGA-D8-A147-01 TCGA-E2-A105-01 TCGA-E2-A106-01 TCGA-E2-A107-01 TCGA-E2-A108-01 TCGA-E2-A109-01 TCGA-E2-A10A-01 TCGA-E2-A10B-01 TCGA-E2-A10C-01 TCGA-E2-A10E-01 TCGA-E2-A10F-01 TCGA-E2-A14N-01 TCGA-E2-A14O-01 TCGA-E2-A14P-01 TCGA-E2-A14Q-01 TCGA-E2-A14R-01 TCGA-E2-A14S-01 TCGA-E2-A14T-01 TCGA-E2-A14V-01 TCGA-E2-A14W-01 TCGA-E2-A14X-01 TCGA-E2-A14Y-01 TCGA-E2-A14Z-01 TCGA-E2-A150-01 TCGA-E2-A152-01 TCGA-E2-A153-01 TCGA-E2-A154-01 TCGA-E2-A155-01 TCGA-E2-A156-01 TCGA-E2-A158-01 TCGA-E2-A159-01 TCGA-E2-A15C-01 TCGA-E2-A15D-01 TCGA-E2-A15F-01 TCGA-E2-A15G-01 TCGA-E2-A15H-01 TCGA-E2-A15I-01 TCGA-E2-A15J-01 TCGA-E2-A15L-01 TCGA-E2-A15M-01 TCGA-E2-A15O-01 TCGA-E2-A15P-01 TCGA-E2-A15R-01 TCGA-E2-A15S-01 TCGA-E2-A15T-01 TCGA-E2-A1AZ-01 TCGA-E2-A1B0-01 TCGA-E2-A1B1-01 TCGA-E2-A1B4-01 TCGA-E2-A1B5-01 TCGA-E2-A1B6-01 TCGA-E2-A1BC-01 TCGA-E2-A1BD-01 -CREB3L1 90993 1.4345 0.89075 2.25925 0.43775 -0.63725 2.58 -0.7075 0.16675 1.18425 0.9665 0.2375 0.9585 -0.33475 0.245 1.007 2.64625 2.32225 1.49375 0.48275 0.30725 1.51075 1.02225 1.94525 -0.45525 -0.358 1.0775 1.89475 0.95 2.235 1.30775 -0.25 1.56525 0.1715 0.617 1.1595 1.359 1.5575 0.88325 0.9935 1.48075 0.60725 1.45025 0.59725 0.50375 1.28775 0.73225 1.487 1.81475 1.00925 1.28875 1.132 0.36375 0.71475 0.99875 1.5635 0.7605 1.81775 1.28225 1.4765 1.1355 0.60525 0.11375 1.5675 0.02925 2.20675 1.553 0.6525 1.78475 -0.131 1.24125 0.7295 -0.15175 0.1135 1.3855 -0.60925 1.92575 1.1805 0.289 0.15275 0.622 1.24175 0.273 -0.12175 1.39375 -0.425 0.0655 0.577 0.952 1.503 0.4445 0.6555 0.0105 0.58125 -0.693 2.1165 1.62675 -0.07 1.34975 -0.3545 1.7375 1.88225 1.29375 1.75725 1.0415 0.316 0.15575 0.7305 0.15275 0.8875 0.958 0.51025 0.888 1.781 0.98575 0.81575 1.83025 0.61275 0.6095 1.08375 3.06975 0.5335 0.2215 0.63475 1.39125 -0.89025 0.84575 0.827 0.88775 0.88825 0.16475 1.209 0.79425 0.71225 1.355 0.23875 -0.24225 1.603 0.6855 1.6825 1.43475 2.12325 0.6965 1.60875 0.23275 0.7395 0.47425 1.38275 0.494 1.12325 1.9075 -1.17575 -0.0435 1.27925 0.3065 0.75325 0.99875 1.00075 1.1055 1.91575 -0.15225 0.9155 1.28275 0.2965 3.02975 1.04275 1.0815 0.5645 1.9115 1.422 -0.0035 1.17975 0.9485 0.87425 1.34925 1.0015 -0.493 1.1195 0.54825 0.59275 0.82125 -0.66525 2.876 -0.43475 0.99725 1.2855 -0.25275 2.0695 0.59775 1.92075 0.4545 2.31225 1.16375 0.51825 0.3925 0.72625 1.2555 0.2175 1.1395 1.63575 1.12225 1.72 1.32425 0.717 -0.23625 -0.232 0.89075 1.54225 1.924 0.405 3.22025 1.162 -0.15225 0.85375 0.6295 2.30925 1.5605 0.397 0.2015 0.0055 1.58275 0.685 0.69525 1.60925 2.012 1.0935 1.917 -0.51575 -0.504 1.716 0.516 0.56925 -0.41575 1.60775 1.20875 1.9795 -0.4945 1.2565 1.7765 0.64275 0.63325 1.9195 1.70725 1.18925 2.9135 0.78125 0.29875 0.39325 1.755 -0.43675 0.13425 1.43325 -0.22975 0.92025 -1.41275 -0.556 0.3445 -0.71675 0.04775 -0.3405 1.99225 0.26 1.1955 -0.1875 0.89925 1.427 1.95675 0.14175 -0.1295 0.18775 0.248 -0.273 1.9945 1.13225 1.1225 0.601 0.1075 0.61075 1.1935 2.002 0.10325 0.30125 1.62575 1.70525 0.75425 1.25825 1.592 0.5405 1.96275 0.87075 0.6815 1.8075 0.40225 0.2 2.8465 1.03925 0.11425 1.21075 1.1185 1.5025 0.657 0.80475 -0.4015 0.603 0.442 1.7575 0.709 0.624 -0.038 1.2605 1.446 1.545 -0.319 1.793 0.14575 0.547 0.8775 1.16075 1.5215 0.25625 0.976 1.27125 0.8535 1.527 1.368 1.53975 2.13725 1.997 1.2315 0.948 1.144 1.72 1.317 1.7905 2.26325 0.3255 0.6665 0.65625 0.7665 1.4275 1.23175 0.065 1.12375 0.887 0.82025 1.40175 0.57775 1.04 0.64925 2.61275 1.1205 0.6875 1.09025 1.27325 2.3835 1.17725 1.952 -0.11825 1.0545 0.534 1.99425 0.852 0.7615 -0.0245 1.042 1.99125 1.331 1.37125 1.0215 0.36825 1.94775 1.50125 1.03725 1.88875 0.4175 1.51725 1.82775 1.2905 2.56925 1.00225 0.57 0.85275 0.10275 1.20275 1.6305 1.59775 1.15725 0.99675 0.9015 -0.2805 1.76825 -0.018 1.6335 1.80375 1.5485 1.68075 0.265 1.754 1.3655 1.33875 0.54825 -0.41025 2.35425 1.6965 1.837 0.6325 -0.96875 0.16175 1.2115 0.51725 1.021 1.36775 0.25675 1.87925 0.02775 1.495 1.58625 0.8205 1.91225 1.516 0.71875 0.90825 1.32225 -0.24275 2.21275 -0.82025 0.203 1.338 2.37775 0.54975 0.14875 1.06025 0.61475 2.34625 1.31525 3.08775 0.14625 0.321 -0.05175 -0.11525 -0.9365 1.2725 1.4655 1.2845 0.755 0.862 -1.026 1.018 0.64225 1.31425 1.04875 3.00975 0.689 1.1395 0.68575 2.4265 -0.495 0.754 1.943 2.36475 1.581 0.171 0.529 2.633 0.21575 0.17375 -0.269 2.3075 -0.234 0.90625 0.2665 -0.56375 1.02675 1.81775 -0.36275 0.01325 2.12 0.3975 0.5035 0.777 1.93125 0.92225 2.021 1.89225 0.875 0.0375 1.0165 -0.42475 0.9895 -0.318 -0.43575 0.26525 2.0955 0.0605 -0.618 0.5315 1.03325 0.50375 2.011 1.423 1.39175 -0.86325 -0.54425 -0.2965 0.4765 0.511 1.11 0.0855 0.73175 0.7875 1.70175 1.37825 1.48425 1.60025 0.724 1.13775 -0.312 0.20625 0.3375 0.42825 0.96825 1.89825 1.71825 -0.07175 1.40025 1.63025 0.46525 -RPS11 6205 0.765 0.716 0.417125 0.115 0.492875 -0.525 -0.169 0.396 0.50475 0.400875 0.393125 0.9165 0.627125 0.337125 0.705 0.16425 0.325 0.11175 0.155625 0.285625 0.703 0.406625 0.136 0.02525 -0.158875 0.771125 0.446 0.164 1.2165 1.161875 -0.381125 0.592625 1.46475 0.25075 0.05725 0.60175 0.2965 0.578875 1.034625 0.195625 0.475875 0.615875 0.418 0.05625 1.202625 1.515875 0.28125 1.0045 0.51175 -0.247125 -0.14225 -0.46775 0.8855 0.65775 0.647 0.349125 1.219125 0.24375 0.935625 0.893 -0.519875 -0.21625 0.4815 0.404875 0.2785 0.02825 0.1195 0.62475 -0.688125 0.623625 0.8535 -0.047125 -0.115125 0.428625 -0.067875 1.1065 0.10175 0.347625 -0.306125 -0.528125 0.424125 1.377875 -0.077375 0.458375 0.190875 0.651375 0.524 0.42575 0.029625 -0.100625 -0.34075 -0.5165 0.477875 -0.395875 0.245 -0.425 0.3625 1.235375 0.668625 0.435375 0.055625 -0.02625 -0.337125 0.0815 0.231625 -0.359125 0.24025 0.15 0.26125 0.021375 -0.059125 0.118 0.2695 0.088875 0.173625 -0.135 0.688625 0.548125 0.435375 0.111875 0.722375 -0.26075 -0.61125 0.770875 0.082875 -0.27725 -0.701125 0.552125 0.06325 -0.550875 -0.38075 0.7395 0.456125 0.331625 -0.016375 0.20475 0.3815 0.928375 0.053 0.525125 0.717875 0.40825 -0.03925 -0.089375 -0.07675 0.4825 0.722375 0.1355 0.5345 0.083625 -0.037875 0.208125 -0.387125 1.080375 0.06425 0.34775 0.36525 0.178125 0.09575 0.618125 0.05575 0.05075 0.648125 0.4325 0.962375 0.53925 0.677 0.226 0.261125 -0.095875 -0.385875 0.77525 0.13175 0.28425 0.604125 0.163125 0.214875 0.19625 -0.073875 0.66375 1.26775 0.6305 0.6045 1.210375 0.02 1.147875 0.40325 0.898375 0.549875 0.39075 0.323 -0.165375 0.70925 1.140875 1.130375 0.042625 0.427375 0.01275 0.9345 0.65325 0.750375 0.740625 0.633625 1.632125 0.44975 0.236 0.632625 0.738125 0.448375 -0.01125 0.582875 2.193375 0.014125 -0.18275 0.917875 2.522 -0.330125 -0.334125 0.74575 0.46625 0.11375 0.877 0.419875 0.58175 0.384 1.447875 1.00025 0.713875 0.554625 0.47025 0.41775 0.838875 0.953375 0.4605 -0.26975 0.86075 0.501625 0.913125 0.722375 0.48725 1.1905 1.22575 1.728875 0.063125 0.41225 1.049875 2.340125 0.403875 -0.67475 0.294375 -0.074125 0.372625 0.347875 0.44975 0.84525 0.16 -0.016 -0.137875 0.2645 -0.121625 0.996125 -0.35725 -0.129125 0.39525 -0.3735 -0.245375 -0.017375 0.94775 0.543875 0.069375 0.72925 0.764625 1.04775 1.217125 0.47475 0.417375 0.943 0.314375 0.997625 1.243625 0.512375 0.35925 1.101 -1.025875 0.7845 0.9285 0.528375 0.335875 0.0455 0.43575 0.234125 0.416 0.234 0.51475 0.6885 0.2685 0.317875 0.4315 1.201125 0.564875 0.55675 1.1135 -0.236125 -0.23275 0.22025 0.25 -0.081 0.358625 0.540375 0.06025 0.597375 0.533125 0.820875 0.241875 1.031625 1.006125 0.18575 0.08525 0.204 -0.238625 0.08475 0.597875 1.248625 1.0245 -0.0985 0.753625 0.713625 0.54275 0.296875 0.298375 0.971875 0.148375 0.762125 0.54425 0.217375 0.306 0.538625 0.79975 0.018625 0.923875 1.100375 0.252 0.95175 0.27975 0.65725 1.045625 0.78425 0.410125 1.04275 0.2495 0.008625 0.258875 -0.297875 0.322375 0.564375 0.10325 -0.299125 0.223125 -0.2525 0.300875 0.41825 0.130125 0.930375 0.401125 0.5985 0.180125 0.541625 0.41575 -0.060625 1.115 0.898375 -0.443625 0.406375 1.01825 0.11725 0.7035 0.9775 0.44075 1.082 0.429 -0.220625 -0.12225 0.3035 0.255125 0.235125 -0.192375 0.541125 -0.56975 0.658 0.385625 1.349125 -0.03825 0.128375 -0.00649999999999999 0.7575 0.046875 0.75175 0.13675 1.8195 0.676625 -0.78175 0.857875 0.860125 0.864875 0.78025 0.890875 -0.074375 0.71825 0.367 0.43625 0.895125 0.13325 0.432375 -0.084875 0.225875 1.173625 2.4975 0.089625 0.3735 -0.6225 0.483875 0.995375 0.313875 0.47975 0.62125 0.24675 0.16325 0.29875 0.312625 -0.28925 0.85275 -0.2925 0.29375 0.550875 0.241625 0.582875 0.840375 0.60725 0.08675 0.340125 0.428375 0.045625 -0.2225 0.248 1.4685 -0.5035 0.70075 0.71875 -0.03875 0.2465 -0.053875 0.583375 0.892 -0.211125 0.695375 -0.119625 0.665625 -0.238875 -0.182625 1.026875 0.707375 -0.161875 0.236 1.429 0.548125 -0.708875 0.087375 0.6965 0.258 -0.118375 -0.285375 0.156 -0.2945 0.648875 0.8375 -0.019125 -0.178625 0.85925 0.185 -0.022375 0.531875 0.347125 0.357625 0.573625 0.116625 0.2675 0.466125 1.178 0.477375 0.489 -0.28425 0.50875 0.68675 -0.024875 0.92225 0.185875 0.166375 0.1415 0.78025 0.384625 0.119625 -0.1565 1.737125 -0.69175 0.90125 0.20975 1.413 -0.22075 0.067375 0.7555 1.042125 0.05925 0.926625 0.176375 0.06375 0.04525 -0.32875 -0.438625 0.781 0.226875 0.35225 0.326125 0.603625 1.406625 0.64975 0.60075 -PNMA1 9240 next is blank> 0.325 0.75775 0.94325 0.64175 -0.06425 0.026 0.53325 -1.72625 -0.077 1.1715 -0.6355 -0.41175 0.435 -0.76825 -0.95425 -0.702 -0.13275 0.14875 0.682 -1.308 0.38025 0.95775 1.071 -0.23325 -1.13575 -0.583 -0.3825 0.529 -0.91275 0.177 -0.26525 -0.98725 -0.008 1.265 0.32225 0.371 -0.96925 1.021 0.46025 1.361 0.8765 -0.119 0.1095 0.703 -0.46475 -0.29125 0.46525 -0.32075 -0.7435 0.14575 0.61725 -0.732 0.26225 -0.8345 0.91675 0.51125 -0.71525 0.882 0.46375 0.07425 0.48575 0.4755 0.23425 -0.21 0.86675 0.18075 -0.63725 -0.071 0.39925 0.2675 -0.398 0.269 -0.5325 -0.36375 0.0965 1.1145 -0.183 0.13025 0.46925 -0.401 -0.71575 -1.7145 1.15825 0.366 0.728 -0.78575 0.0315 -0.1675 0.30225 -0.1215 -0.1195 -0.9135 0.42075 0.4815 0.9785 0.10625 -0.37025 0.657 -0.026 0.14425 0.49575 0.2165 -0.49925 -0.94925 0.633 -0.09375 0.44875 -0.229 0.0245 0 0.14975 1.58675 -0.19775 -0.46575 -0.00425 1.01875 0.18075 0.27025 0.4275 -0.37725 0.17975 0.49225 0.688 0.338 -0.1975 0.4415 0.32275 0.51075 0.6915 0.284 -0.10075 0.8105 0.01375 1.168 0.71925 0.451 -0.69025 0.482 0.32275 -0.10525 -0.64825 0.2525 0.44825 0.4875 0.32575 -1.17075 -0.921 0.48925 0.35675 0.23975 -0.66775 0.65975 0.1795 1.0485 1.05875 -0.34875 -0.6265 -0.384 0.553 0.785 0.61675 -0.6525 -0.61775 0.51775 0.046 0.2045 0.12 0.20525 0.4635 -0.15175 0.361 0.9885 -0.4425 -1.61675 0.67975 -1.035 -1.23675 -0.74575 0.396 -0.31575 0.5125 0.4715 0.36125 -1.1295 0.44725 -1.0705 0.58575 0.61275 -0.69625 -0.0385 -0.08075 -0.10675 -0.56825 0.66125 -1.0245 0.61775 0.397 -0.1975 -0.42475 -0.121 0.44225 0.111 0.6825 -0.0085 0.03125 0.43975 0.758 -0.75875 1.00275 -0.21875 -0.34125 -0.8485 -0.45125 0.098 -1.5 1.6005 0.294 1.0505 -0.59325 1.31625 0.18175 0.04625 0.26125 -1.021 -0.31625 -0.9375 -0.03825 0.46075 0.652 1.57475 -0.02075 -0.856 0.81575 -0.982 -1.03975 -0.262 -0.9175 -1.3145 -0.25975 0.912 0.06725 -0.63575 0.5055 -0.24725 0.48475 0.50325 0.98975 -0.649 -1.026 -0.8655 0.503 0.10525 0.28125 0.01025 -0.55575 0.311 0.05175 -0.4855 0.48625 1.44225 -1.21225 -0.2415 -0.03525 0.2895 0.29825 -0.778 -0.7775 0.037 0.47125 -0.40375 -0.02275 -0.14425 -0.69875 -1.22175 0.0395 0.4135 -0.0675 -0.28475 0.09425 -0.49725 -0.44875 -0.751 -0.936 0.212 -0.68425 -0.70625 -1.2215 0.2475 1.145 0.1985 0.39225 0.1585 0.17425 -0.692 0.41775 0.32925 -0.15025 -0.1935 0.28025 -0.19025 -0.75375 0.8425 -0.74075 0.80625 0.37275 1.31975 0.738 0.43075 0.19 0.2285 0.17825 0.0175 0.29375 0.89425 0.19375 -0.288 -0.15025 0.088 0.07675 -0.20775 0.13875 -0.716 -0.88 0.59275 0.48425 0.30425 0.07025 -0.5355 -0.21925 0.5985 -0.3725 -0.36875 0.1195 -0.234 0.686 0.24425 -0.3125 0.89725 -1.05375 0.39525 0.39425 0.40125 -0.23 -0.3715 0.297 0.19 -0.634 0.368 0.29375 -0.05175 -0.52425 1.11325 0.14725 0.15775 -0.706 0.01825 0.459 -0.306 0.20175 -1.6445 0.8445 -0.0385 0.4825 0.9835 -0.04075 0.567 -0.51875 0.218 0.29425 0.694 -0.2465 0.2005 -0.366 -0.37625 -0.53025 -0.05025 -0.104 -0.23125 0.55625 0.64875 -0.36625 -0.4425 -0.2675 0.3445 0.848 0.6355 0.18425 -0.542 0.1815 0.99225 0.25925 0.83475 -0.6765 0.43325 0.16875 -0.00475 0.007 0.24925 -0.86075 -0.55875 0.20225 -0.06075 -0.07975 0.85925 -0.056 0.51125 -0.49675 0.093 0.62125 0.94575 1.23725 0.23375 0.309 -1.0355 -0.73025 0.581 0.4015 -0.99925 0.28275 0.01025 0.345 0.29425 -0.918 -0.34925 0.16725 -0.07 -0.46575 -0.11675 0.58275 0.50725 -1.16625 0.06025 0.2205 -0.4305 -0.59475 -0.91425 -0.13 0.65425 -0.44325 0.13625 0.108 -0.84625 -0.195 -0.00325 -0.088 0.061 -0.29 0.15675 -0.333 0.21675 -0.5755 -0.21475 -0.567 -0.545 -0.55475 -1.09075 1.04325 -0.24 -0.487 0.0025 -0.29025 -1.14275 -0.8345 0.81075 -0.166 0.08675 0.7985 0.45425 -0.393 0.491 0.599 -0.344 1.4005 0.14475 -0.513 0.56775 0.9455 -0.35775 0.62425 0.32775 -0.65525 0.15425 -0.965 0.0075 0.536 0.9785 -1.40525 0.295 -0.54425 -0.08125 -0.61325 -0.118 -0.527 -0.08275 0.0295 -0.2295 0.175 0.669 0.0925 0.262 -0.747 -1.132 0.73225 -0.01525 0.11075 0.1975 0.223 -0.5125 -1.2515 -0.00825 0.27225 1.41425 -0.08375 1.33525 0.14925 1.00925 -0.20925 -0.03675 0.50025 -0.3635 -1.2445 -0.42125 -0.44975 -0.20225 -MMP2 4313 1.506 0.957833333333333 2.2855 -0.0893333333333333 -1.23316666666667 1.5915 -1.3965 -0.2605 0.583 -0.716333333333333 1.62883333333333 -0.39 -0.466166666666667 -0.550666666666667 1.00166666666667 1.399 -0.4545 -0.492833333333333 0.695166666666667 0.397666666666667 0.861 -0.7395 1.26866666666667 -0.118 -0.4305 1.11283333333333 -1.00166666666667 0.502666666666667 -0.946333333333333 1.50116666666667 -0.329 -0.256333333333333 0.222666666666667 0.340166666666667 -1.264 0.028 1.38916666666667 1.208 -0.316666666666667 -0.893 1.234 -1.59766666666667 0.312333333333333 1.06416666666667 1.5815 0.735166666666667 0.1255 -0.2315 0.463333333333333 1.274 0.567166666666667 1.4875 0.687166666666667 0.992 0.92 -0.166 0.100333333333333 1.191 -0.0263333333333333 1.50483333333333 1.76866666666667 0.593166666666667 1.37283333333333 0.552333333333333 -0.428833333333333 0.177666666666667 1.31566666666667 0.7935 -0.538166666666667 0.788166666666667 1.55033333333333 -0.101333333333333 -0.132 -0.201333333333333 0.0548333333333333 0.585666666666667 1.31466666666667 -1.0005 0.195833333333333 1.5885 0.544833333333333 0.680333333333333 -0.3305 1.991 -2.05583333333333 0.1105 1.07 -1.85033333333333 1.30383333333333 -0.206 0.0506666666666667 0.919666666666667 -1.61083333333333 -1.0865 0.9315 0.822666666666667 -0.736166666666667 0.902833333333333 -0.692166666666667 1.81116666666667 0.970166666666667 1.74716666666667 0.913666666666667 1.96866666666667 0.323 0.194333333333333 -0.4055 -0.880666666666667 -0.318 0.3325 -0.285666666666667 0.0351666666666667 -1.07316666666667 0.157666666666667 -1.0005 1.20733333333333 0.0853333333333333 0.755 0.421833333333333 -0.3065 -0.283666666666667 0.4945 1.19766666666667 0.293833333333333 -1.15816666666667 0.643333333333333 -0.3865 0.822333333333333 1.02316666666667 0.348666666666667 -0.0968333333333333 -0.435833333333333 1.557 1.814 0.3535 0.144 0.5345 1.06216666666667 1.1475 0.702833333333333 1.00466666666667 1.38316666666667 0.440833333333333 0.916 0.682333333333333 -0.198833333333333 0.184166666666667 0.23 -0.378 0.563166666666667 -1.344 -1.13016666666667 0.188333333333333 -0.252833333333333 1.05183333333333 1.26333333333333 1.024 0.102833333333333 0.511666666666667 -0.893 1.185 0.764833333333333 0.6065 0.172666666666667 0.594666666666667 0.4885 -0.263166666666667 1.34866666666667 1.52316666666667 0.296333333333333 1.213 1.26133333333333 0.61 1.33483333333333 -0.913333333333333 -0.95 0.520166666666667 -0.752166666666667 0.494333333333333 0.134666666666667 -0.9765 2.2325 0.142 0.4215 -0.36 0.9545 -0.681 -1.54683333333333 2.02283333333333 0.42 0.359 1.0665 -0.515333333333333 0.156 0.579 -0.530333333333333 -0.0781666666666666 0.712333333333333 1.98316666666667 0.806833333333333 0.339833333333333 0.0591666666666666 1.1955 -0.505 0.227166666666667 1.341 1.87033333333333 0.738333333333333 0.243166666666667 0.676666666666667 -0.249833333333333 -0.148666666666667 -0.6155 -0.3835 0.4215 0.851 -0.268833333333333 -1.53233333333333 0.168833333333333 1.72783333333333 -1.18916666666667 -0.0923333333333333 0.9515 0.2415 1.11033333333333 0.0811666666666667 -0.436333333333333 -0.536166666666667 1.57283333333333 1.25 -0.0136666666666667 -1.471 0.729333333333333 -0.3 0.951833333333333 -1.3305 -2.00716666666667 1.69583333333333 -1.07183333333333 0.606333333333333 1.03533333333333 -1.4945 1.38866666666667 1.84966666666667 -0.366833333333333 -0.0553333333333333 0.4 -0.142166666666667 -0.5395 0.324333333333333 0.686166666666667 -0.994333333333333 0.208333333333333 -2.28466666666667 -0.520166666666667 0.483333333333333 -1.34816666666667 -0.476333333333333 0.137166666666667 1.02433333333333 -0.241333333333333 0.969333333333333 -0.877333333333333 0.0493333333333333 -0.0741666666666667 -0.318333333333333 0.028 0.0151666666666666 -0.348666666666667 0.467166666666667 0.328 1.80366666666667 2.0565 1.31983333333333 0.900666666666667 0.760166666666667 1.00183333333333 1.01033333333333 0.725 1.265 0.774 0.6045 1.31716666666667 1.563 -1.75483333333333 -0.642166666666667 0.303666666666667 0.4235 -0.544833333333333 -1.16883333333333 -0.892 -1.97766666666667 -0.5115 0.811166666666667 1.5105 -0.849333333333333 -0.0925 0.6835 -0.219333333333333 -0.3855 0.542666666666667 -1.30483333333333 0.446 0.710166666666667 1.56483333333333 1.3545 -2.251 -0.962333333333333 1.18416666666667 -0.727166666666667 1.12533333333333 -0.5205 0.716166666666667 0.4425 0.2785 -0.105166666666667 1.5195 1.60516666666667 0.134833333333333 0.789 1.5935 0.935166666666667 0.6675 -0.346833333333333 -1.53166666666667 -1.205 -0.910833333333333 1.15366666666667 1.19716666666667 2.45866666666667 0.505 1.0035 2.1515 2.80116666666667 1.59783333333333 1.30083333333333 0.677333333333333 1.25916666666667 1.44316666666667 0.165666666666667 -0.9985 0.9065 0.469666666666667 0.302833333333333 2.52066666666667 -0.0466666666666666 0.724166666666667 1.1205 0.478333333333333 1.7775 0.4855 1.8325 1.39516666666667 0.371666666666667 -0.753333333333333 0.577166666666667 -0.0185 1.636 -0.343166666666667 1.90883333333333 1.49 0.566666666666667 -0.200666666666667 0.871166666666667 1.14 -0.240166666666667 2.685 0.633666666666667 -0.184666666666667 0.223333333333333 0.9025 1.32266666666667 0.104 -0.0323333333333333 1.863 1.616 -0.817833333333333 -0.0816666666666667 0.0898333333333333 -0.273333333333333 -0.409333333333333 1.23783333333333 1.18716666666667 1.23666666666667 -1.33016666666667 1.30833333333333 1.32416666666667 1.16716666666667 -1.34233333333333 1.8015 -0.0686666666666667 1.55183333333333 1.70516666666667 -0.052 2.16166666666667 -0.266666666666667 1.08233333333333 0.898666666666667 0.193 -0.0773333333333333 -0.123166666666667 -0.695666666666667 0.727 0.671666666666667 -0.589166666666667 -1.86483333333333 0.420166666666667 1.05116666666667 1.467 -0.95 1.18716666666667 1.20066666666667 1.177 0.635833333333333 0.618833333333333 0.916833333333333 -0.103666666666667 1.8225 1.033 -0.130333333333333 -1.54866666666667 0.925 -0.565 0.411666666666667 -1.143 0.107666666666667 -0.408666666666667 0.973 1.6185 -0.018 1.86216666666667 1.21316666666667 0.8145 1.5585 1.54766666666667 0.588833333333333 1.49516666666667 -0.247166666666667 -0.107333333333333 -0.569666666666667 2.5045 1.08166666666667 1.15883333333333 0.697166666666667 1.70283333333333 -1.73683333333333 -0.62 0.934666666666667 0.360666666666667 0.139333333333333 0.587 0.415333333333333 1.1945 1.00733333333333 -1.27983333333333 -1.032 0.921833333333333 0.663333333333333 1.87366666666667 1.17616666666667 -0.2885 0.4495 0.628666666666667 -0.963833333333333 -0.1925 -0.941 0.9215 -0.5155 1.577 1.4225 -0.326166666666667 1.961 1.728 -0.524 -0.34 -1.01233333333333 -0.512833333333333 1.0665 -0.00666666666666669 -0.0908333333333333 0.653166666666667 -0.5795 0.105166666666667 1.34416666666667 -1.4535 0.7625 -0.4385 0.333 -1.02233333333333 -0.9625 -0.566 0.720166666666667 -0.549 0.3345 -0.728166666666667 0.519833333333333 0.304833333333333 1.6235 2.31616666666667 1.45883333333333 -1.78716666666667 -1.07483333333333 -1.68716666666667 1.19283333333333 0.494 0.813 -0.783333333333333 -0.4585 1.0045 0.668333333333333 -0.104166666666667 1.256 0.979666666666667 -0.323166666666667 0.243666666666667 -0.136333333333333 -1.5675 0.123 1.54416666666667 1.27916666666667 2.484 0.400666666666667 -1.006 -0.217166666666667 1.63716666666667 1.505 -ZHX3 23051 0.0433333333333333 -0.0436666666666667 0.4205 0.251 -1.3315 0.0598333333333333 -0.9075 -1.09066666666667 -0.183666666666667 -0.253833333333333 -0.603333333333333 -0.356666666666667 -0.549166666666667 -0.13 -0.0201666666666667 0.386333333333333 -0.450333333333333 -0.18 -0.0393333333333333 -0.471 0.08 -0.00700000000000001 -0.166166666666667 0.0711666666666667 -0.419333333333333 -0.326333333333333 -0.709 -0.234 0.416166666666667 -0.2335 -0.142166666666667 0.0315 -0.368166666666667 -0.7885 0.145333333333333 0.00833333333333335 -0.437833333333333 -0.141833333333333 -0.464 -0.333666666666667 -0.0966666666666667 -0.500166666666667 0.0106666666666667 0.478 0.00849999999999997 -0.102666666666667 0.321166666666667 -1.05916666666667 -0.432166666666667 -0.626166666666667 -0.1345 -1.35 -0.390333333333333 0.0145 -0.8165 -0.189 -1.07033333333333 -0.193166666666667 -0.361 -0.353333333333333 -0.178333333333333 -0.295 -0.419 0.382166666666667 -0.859 0.407666666666667 -0.296666666666667 -0.626666666666667 -0.0355 -0.308833333333333 -0.396833333333333 -1.23416666666667 -0.00666666666666666 -0.371166666666667 -1.482 -0.222 0.207166666666667 0.6575 -0.1385 -0.437666666666667 0.00466666666666667 0.202666666666667 -0.753 1.2275 0.019 -0.316333333333333 -0.6735 -0.2895 -0.148333333333333 0.1425 0.491333333333333 -0.359833333333333 0.406166666666667 -0.417833333333333 -0.0508333333333333 -0.0283333333333333 0.480333333333333 -0.689333333333333 -0.986 -0.198833333333333 -0.194333333333333 0.4725 -0.909333333333333 -0.2125 -0.156 -0.351166666666667 -1.45883333333333 -0.473166666666667 -0.6185 -0.2855 0.0218333333333333 0.623166666666667 0.379666666666667 -0.960333333333333 -0.493333333333333 0.108666666666667 -0.366666666666667 0.2095 0.3285 -0.454666666666667 -0.554 0.0995 0.205333333333333 0.440166666666667 -0.0261666666666667 -0.0781666666666667 -0.6125 -0.0106666666666667 -0.135666666666667 -1.07283333333333 0.555833333333333 -0.027 -0.425333333333333 -0.232 -0.0496666666666667 -0.343333333333333 0.0501666666666667 0.437666666666667 0.852833333333333 0.078 -0.673833333333333 -0.396333333333333 -0.243333333333333 0.435666666666667 0.0325 -0.0761666666666667 -0.0341666666666667 0.0371666666666667 -0.2895 0.0221666666666667 0.798166666666667 1.17716666666667 0.359666666666667 -0.562666666666667 0.228 -0.114666666666667 -0.848666666666667 -0.637166666666667 -0.447 -0.682333333333333 -0.201 0.1435 -0.728333333333333 -0.881333333333333 -0.207 -0.929833333333333 -0.139 0.186833333333333 0.247833333333333 -0.641 -0.592333333333333 -0.466166666666667 -0.4005 -0.146833333333333 -0.418833333333333 -0.798333333333333 -0.302833333333333 -0.233666666666667 -0.431333333333333 0.450833333333333 -0.354833333333333 -0.437833333333333 -0.827666666666667 -0.505833333333333 -0.678666666666667 -1.7375 -1.4125 0.333 -0.407666666666667 0.0176666666666667 -0.619666666666667 0.0193333333333334 -0.0298333333333333 -0.0976666666666667 -0.318166666666667 -0.0915 -0.814833333333333 -0.0191666666666667 -0.123666666666667 0.0315 0.383833333333333 -0.403833333333333 0.453833333333333 -0.319166666666667 -0.574833333333333 -0.221666666666667 -0.700333333333333 -1.11316666666667 -0.494333333333333 0.520333333333333 0.317833333333333 0.210833333333333 -0.389666666666667 0.7695 -0.200333333333333 -0.793333333333333 -0.166666666666667 0.1135 -0.757666666666667 -0.0121666666666667 0.662333333333333 -0.417833333333333 -0.627166666666667 0.0116666666666667 0.312333333333333 0.195666666666667 -0.819666666666667 0.104333333333333 -0.242666666666667 -0.544833333333333 -0.282333333333333 0.612833333333333 -0.486166666666667 0.596833333333333 -0.368333333333333 -1.37816666666667 0.187 0.471 -0.4125 -0.8995 -0.426 -0.62 -0.4245 -0.4465 -0.245333333333333 -0.142166666666667 0.508833333333333 0.136833333333333 0.0276666666666667 -0.5665 0.55 -0.0203333333333333 -0.637166666666667 0.170833333333333 -0.3645 -0.9975 -0.657 0.948833333333333 0.068 -0.6155 -0.562 -0.8555 -0.656333333333333 -0.260833333333333 0.304666666666667 -1.292 -0.497833333333333 0.258166666666667 -0.596666666666667 -0.317 -0.642166666666667 -0.647666666666667 -0.247333333333333 -0.127166666666667 -0.201666666666667 -0.919833333333333 -0.957666666666667 -0.0328333333333333 -0.788833333333333 -0.319666666666667 -0.761833333333333 -0.749666666666667 -0.735166666666667 -0.132166666666667 0.181666666666667 0.388166666666667 -0.299333333333333 0.282 0.428166666666667 0.477833333333333 0.248166666666667 0.156833333333333 -0.158833333333333 0.479166666666667 0.0548333333333333 -0.0673333333333333 0.1475 -0.217166666666667 0.0805 -0.1135 0.1915 -0.464333333333333 -0.0286666666666667 0.131333333333333 0.309666666666667 -0.506 0.519333333333333 -0.0186666666666667 0.0641666666666667 0.291833333333333 -0.602166666666667 -0.326333333333333 -0.636 -0.963 0.677666666666667 -0.661833333333333 -0.7665 0.0211666666666667 0.484666666666667 -0.125666666666667 -0.255333333333333 0.00966666666666667 0.566833333333333 -0.480333333333333 -0.174166666666667 0.0548333333333333 0.168833333333333 -0.246166666666667 0.358 -0.7455 -0.0595 0.319333333333333 0.0435 -0.6115 -0.391 -0.233 -0.232666666666667 -0.1275 -0.806 1.18566666666667 -1.393 -0.2595 -0.205166666666667 -0.376166666666667 -0.2425 -1.1825 -0.229333333333333 -0.5225 -0.4665 -0.391166666666667 -0.294666666666667 -0.365666666666667 -0.2735 -0.0403333333333333 -0.4205 -0.576 -0.661666666666667 -0.169333333333333 0.036 -0.320333333333333 0.167666666666667 0.056 0.00816666666666666 -0.4555 -0.306333333333333 -0.238833333333333 0.120333333333333 -1.11516666666667 0.0401666666666667 -0.826833333333333 -0.0605 -0.0683333333333333 -0.298 -0.447333333333333 -0.395333333333333 -0.43 -0.0568333333333333 -0.256333333333333 -0.357833333333333 -0.4415 0.1765 0.204666666666667 -0.205833333333333 -0.567666666666667 -1.69266666666667 0.0783333333333333 1.20216666666667 0.586166666666667 -0.755666666666667 0.1945 -0.424 -0.636333333333333 -0.0475 0.4245 -0.475166666666667 0.145333333333333 -0.006 -0.595166666666667 -0.6605 0.129333333333333 -0.566166666666667 -0.4605 -0.229 0.0978333333333333 0.102 -0.564666666666667 -0.0775 -0.418833333333333 -0.290166666666667 -0.0383333333333333 0.0245 -0.448 -0.590666666666667 -0.579833333333333 0.0601666666666667 0.212833333333333 -1.266 -0.686166666666667 -0.0358333333333333 -0.291 0.056 0.00483333333333333 0.146 0.507666666666667 0.032 -0.341333333333333 -0.598 0.291166666666667 -0.246833333333333 -1.48816666666667 -0.205333333333333 -0.4025 -0.217333333333333 0.145666666666667 0.0828333333333334 -0.658833333333333 0.118166666666667 -1.40933333333333 -0.224333333333333 -0.967333333333333 -0.284 -0.329 -0.345166666666667 -0.234166666666667 -0.558666666666667 -0.276 -0.9315 -0.6765 -1.53866666666667 0.291666666666667 -0.0246666666666667 -0.219 0.1135 -0.1135 0.176 1.15648231731787e-18 -0.538666666666667 -0.101833333333333 0.858 -0.0326666666666667 0.268166666666667 0.293 -0.408333333333333 -0.0943333333333334 -0.0911666666666667 0.743 -0.724 -0.048 -0.281166666666667 0.1775 -0.278333333333333 0.0883333333333333 -0.2 -0.181166666666667 0.5265 -1.20266666666667 -1.01283333333333 -0.1835 0.285 -1.01583333333333 0.4915 0.1485 0.3265 0.0523333333333333 -0.2865 0.333666666666667 -0.850333333333333 -0.451833333333333 -0.750166666666667 1.163 0.00866666666666667 -0.129833333333333 0.802 0.0925 -0.5065 -0.2365 -0.221166666666667 0.675833333333333 -0.04 -0.545833333333333 -0.627333333333333 -0.278333333333333 1.36166666666667 0.0543333333333333 0.103 -0.4705 -0.898 0.0783333333333333 -0.510666666666667 -0.383333333333333 -0.272833333333333 -0.0331666666666667 -0.731666666666667 -0.511 -0.272666666666667 0.9535 -0.218666666666667 -1.26566666666667 -0.342666666666667 0.1985 -0.458166666666667 0.604333333333333 -0.852833333333333 -0.569166666666667 -0.101833333333333 0.0931666666666667 -ERCC5 2073 -0.10725 -0.2385 0.00725 0.03525 0.791 -0.17725 -0.1365 -0.56675 0.46675 0.423 0.1915 -0.3015 1.1275 -0.753 0.658 0.51975 -0.09975 0.555 0.2145 -0.698 0.48725 0.68825 0.09675 -1.143 -0.43 0.027 -0.2095 0.312 0.42225 0.73025 0.0205 -0.971 0.17325 0.6425 0.05725 -0.13325 0.43375 0.17825 -0.02 0.00350000000000001 0.424 -0.029 -0.467 -0.4125 0.059 0.0275 0.50625 0.5415 -0.00225 -0.76125 -0.15025 0.432 -0.00125 0.22125 -0.389 -0.31475 0.24275 0.531 0.2065 0.10925 0.11375 0.23575 0.41175 -0.46375 0.57175 -0.425 -0.22125 -0.05325 -0.3155 0.477 0.06775 -0.17725 -1.016 -0.33 0.34225 0.29075 0.4295 -0.68175 -0.0045 0.94825 0.1835 -0.61925 -0.01225 -0.7125 -0.415 -0.65625 0.29575 0.0335 -0.55825 -0.90075 -0.6455 1.1105 0.7045 -0.2015 -0.09525 -0.32325 -0.932 -0.925 0.30525 0.01925 -0.73925 -0.4025 0.30875 0.48075 -0.82875 -1.51125 -1.3415 0.0975 0.201 -0.27675 -0.7365 -0.336 -0.23675 -0.02725 0.532 0.593 -0.8755 -0.6995 0.2845 -0.00999999999999999 0.09875 -0.416 0.37825 0.3615 0.892 0.45625 0.1975 -0.3145 -0.237 -0.5685 -0.17825 0.312 -0.691 0.1375 -0.5595 0.224 -0.92675 -0.15425 -0.30875 0.29425 0.31175 -0.01775 -0.29525 0.27025 -0.05075 0.91825 -0.11625 -0.0285 -0.26275 -0.81925 -0.209 0.4065 -0.0265 -0.77875 -0.1775 0.19425 0.39125 -0.08175 0.01025 0.72825 0.75325 -0.19625 -0.436 0.07675 0.0105 0.04075 -0.1035 -0.40025 -0.8415 0.18925 0.8825 0.06375 0.30425 -0.33125 -0.0625 1.1855 -0.84175 0.45525 0.47325 0.5185 0.4565 0.193 -0.6935 0.47525 0.286 0.58275 0.12175 0.07925 0.492 -0.096 1.23475 0.224 0.49575 0.887 0.399 -0.02225 -1.13675 0.011 -0.3955 -0.0645 0.4825 0.4785 0.43075 0.8375 -0.0495 0.12275 0.01725 -0.018 -0.246 0.12425 -0.61975 0.42975 -0.10775 0.752 0.22925 1.2405 0.104 0.06175 -0.22975 0.44 -0.792 0.449 0.46775 -0.017 0.18125 1.94175 1.2005 -0.274 -0.385 -0.2285 0.61025 -0.83925 -0.096 -0.19825 -0.36125 0.18775 0.87075 0.82475 -0.0795 0.61975 0.4035 0.000499999999999994 0.37825 0.6855 -0.446 -0.96275 -0.24075 0.92325 -0.82075 1.1945 0.000750000000000004 -0.12325 0.10025 -0.0695 -0.296 0.58575 -0.0555 -0.85825 0.05325 -0.43525 0.25675 -0.55725 -0.4905 0.4315 -0.6865 0.4325 -0.96425 -0.1055 -0.74475 -0.09975 -0.04175 1.14075 -0.039 0.03275 0.356 0.31875 -0.16775 0.2005 0.086 -0.36675 -0.041 0.0615 -0.000499999999999997 0.03525 0.27975 0.67325 0.738 -0.64125 -0.139 -0.031 0.4665 0.3335 0.03475 0.53075 0.24775 0.2905 0.53475 -0.4755 0.23175 0.99575 0.12275 -0.30425 -0.259 0.5735 0.38875 -0.0445 -0.553 -0.024 -0.06175 -0.02575 -0.3205 0.48725 0.34875 0.877 0.08825 0.029 -0.487 0.71825 -0.54225 -0.14725 -0.12375 0.15825 0.445 0.32475 -0.43975 0.53225 -0.741 0.60375 -0.26825 -0.01675 -0.1055 -0.07125 0.67575 0.26925 -0.742 -0.33375 -0.48875 0.2825 -0.26825 -0.81825 0.76625 -0.1485 -0.4765 -0.13475 0.434 0.087 -0.5675 0.06825 0.53825 -0.1995 -0.3095 0.31575 -0.3845 0.9395 -0.298 -0.236 -0.43525 -0.58375 -0.4505 -0.32075 0.41925 1.33825 -1.3815 0.5595 0.38425 -0.51075 0.18525 0.04125 0.02675 0.253 -0.1065 -0.0735 0.07025 0.16425 0.195 0.04725 0.46625 0.1325 0.86375 0.637 -0.000749999999999999 -0.0275 0.168 0.6915 0.174 -0.26475 -0.5495 -0.46175 -0.56575 0.6595 0.51725 0.36 -0.5345 -0.2325 -0.33625 -0.34775 -0.44825 0.323 0.2365 0.24525 -0.2555 -0.32225 0.4255 0.239 -0.32 0.15725 -0.57325 0.1085 -0.31 -0.26075 0.17525 0.762 -0.24475 -0.73125 0.27975 0.58575 0.09325 0.137 0.13975 -0.41125 -0.3295 -0.04375 0.126 0.23725 0.675 0.18175 -0.3285 -0.009 -0.80975 0.52325 -0.27475 0.21675 0.491 0.27025 -0.3395 -0.37875 0.08425 0.25875 0.30625 0.47025 0.25025 -0.902 -0.76775 0.41375 -0.4555 -0.1345 0.43075 -0.82575 -0.173 -0.66225 -0.00525 -0.43725 0.207 0.371 0.48325 0.40125 -0.64975 -0.00525000000000002 0.9705 0.282 -0.5695 0.1985 1.1405 0.04475 -0.418 -0.45 -0.1535 0.409 0.567 -0.51825 -0.182 -0.0695 0.012 -0.0605 -0.12925 0.0405 -0.11725 0.381 -0.281 0.205 -0.16475 0.29675 -0.164 0.095 0.065 -0.103 -0.17475 0.276 1.03675 0.17625 0.536 -0.103 0.436 0.491 -0.2995 0.065 -0.6105 -0.7055 0.5385 0.53775 -0.98125 0.168 0.2745 -0.083 0.16225 0.13575 -0.022 0.4595 0.65675 1.045 -0.124 -0.07 0.15975 -0.26125 -0.02725 -1.1205 -0.40575 -0.1075 -0.05475 -0.27925 0.903 0.7085 1.27775 0.917 0.4055 1.32325 diff --git a/core/src/test/scripts/test_data/study_wr_clin/data_patients.txt b/core/src/test/scripts/test_data/study_wr_clin/data_patients.txt deleted file mode 100644 index ba3c8160d8a..00000000000 --- a/core/src/test/scripts/test_data/study_wr_clin/data_patients.txt +++ /dev/null @@ -1,829 +0,0 @@ -#Patient Identifier Overall Survival Status Overall Survival (Months) DiseaseXXX Free Status Disease Free (Months) -#Patient identifier Overall survival status Overall survival in months since diagnosis Disease free status Disease free in months since treatment -#STRING STRING NUMBER STRING NUMBER -#1 1 1 1 1 -PATIENT_ID OS_STATUS OS_MONTHS DFS_STATUS spam -TCGA-A2-A04P 1:DECEASED 17.97 1:Recurred/Progressed NA -TCGA-A1-A0SK 1:DECEASED 31.77 NA NA -TCGA-A2-A0CM 1:DECEASED 24.77 1:Recurred/Progressed NA -TCGA-AR-A1AR 1:DECEASED 17.18 NA NA -TCGA-B6-A0WX 1:DECEASED 21.45 1:Recurred/Progressed NA -TCGA-BH-A1F0 1:DECEASED 25.79 1:Recurred/Progressed NA -TCGA-B6-A0I6 1:DECEASED 32.56 1:Recurred/Progressed NA -TCGA-BH-A18V 1:DECEASED 51.09 NA NA -TCGA-BH-A18Q 1:DECEASED 55.59 NA NA -TCGA-BH-A18K 1:DECEASED 90.74 1:Recurred/Progressed NA -TCGA-BH-A0HL 0:LIVING 2.37 0:DiseaseFree 2.37 -TCGA-BH-A0E0 0:LIVING 4.37 0:DiseaseFree 4.37 -TCGA-BH-A0RX 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-A7-A13D 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-BH-A0E6 0:LIVING 9.59 0:DiseaseFree 9.59 -TCGA-AO-A0J4 0:LIVING 9.66 0:DiseaseFree 9.66 -TCGA-A7-A0CE 0:LIVING 8.31 0:DiseaseFree 8.31 -TCGA-A7-A13E 0:LIVING 9.43 0:DiseaseFree 9.43 -TCGA-A7-A0DA 0:LIVING 12.25 0:DiseaseFree 12.25 -TCGA-D8-A142 0:LIVING 2 0:DiseaseFree 2 -TCGA-D8-A143 0:LIVING 5.65 0:DiseaseFree 5.65 -TCGA-AQ-A04J 0:LIVING 5.22 0:DiseaseFree 5.22 -TCGA-BH-A0HN 0:LIVING 16.95 0:DiseaseFree 16.95 -TCGA-A2-A0T0 0:LIVING 11.07 0:DiseaseFree 11.07 -TCGA-A2-A0YE 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-A2-A0YJ 0:LIVING 10.71 0:DiseaseFree 10.71 -TCGA-A2-A0D0 0:LIVING 21.12 0:DiseaseFree 21.12 -TCGA-A2-A04U 0:LIVING 22.01 0:DiseaseFree 22.01 -TCGA-AO-A0J6 0:LIVING 25.46 0:DiseaseFree 25.46 -TCGA-A2-A0YM 0:LIVING 21.72 0:DiseaseFree 21.72 -TCGA-A2-A0D2 0:LIVING 25 0:DiseaseFree 25 -TCGA-BH-A0B3 0:LIVING 39.52 0:DiseaseFree 39.52 -TCGA-A2-A04Q 0:LIVING 41.89 0:DiseaseFree 41.89 -TCGA-A2-A0SX 0:LIVING 42.32 1:Recurred/Progressed NA -TCGA-AO-A0JL 0:LIVING 43.33 0:DiseaseFree 43.33 -TCGA-AO-A12F 0:LIVING 48.33 0:DiseaseFree 48.33 -TCGA-BH-A0B9 0:LIVING 51.65 0:DiseaseFree 51.65 -TCGA-A2-A04T 0:LIVING 64.06 0:DiseaseFree 64.06 -TCGA-B6-A0RT 0:LIVING 89.39 0:DiseaseFree 89.39 -TCGA-AO-A128 0:LIVING 94.52 0:DiseaseFree 94.52 -TCGA-AO-A129 0:LIVING 96.03 0:DiseaseFree 96.03 -TCGA-AO-A124 0:LIVING 102.47 0:DiseaseFree 102.47 -TCGA-B6-A0RU 0:LIVING 131.12 0:DiseaseFree 131.12 -TCGA-B6-A0IQ 0:LIVING 127.18 0:DiseaseFree 127.18 -TCGA-B6-A0I2 0:LIVING 125.7 0:DiseaseFree 125.7 -TCGA-B6-A0IJ 0:LIVING 176.85 0:DiseaseFree 176.85 -TCGA-B6-A0X1 0:LIVING 186.31 0:DiseaseFree 186.31 -TCGA-B6-A0RE 0:LIVING 211.38 0:DiseaseFree 211.38 -TCGA-A2-A0ST 0:LIVING 53.98 0:DiseaseFree 53.98 -TCGA-AR-A0TP 0:LIVING 78.59 0:DiseaseFree 78.59 -TCGA-A1-A0SO 0:LIVING 27.99 0:DiseaseFree 27.99 -TCGA-A8-A07C 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A07O 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A07R 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-A8-A07U 0:LIVING 9.95 0:DiseaseFree 9.95 -TCGA-A8-A08H 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A08R 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-AN-A04D 0:LIVING 1.71 0:DiseaseFree 1.71 -TCGA-AN-A0AL 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-AN-A0AR 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0AT 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0FJ 0:LIVING 7.92 0:DiseaseFree 7.92 -TCGA-AN-A0FL 0:LIVING 7.56 0:DiseaseFree 7.56 -TCGA-AN-A0FX 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0G0 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-AN-A0XU 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AR-A0TS 0:LIVING 37.39 0:DiseaseFree 37.39 -TCGA-AR-A0TU 0:LIVING 11.83 0:DiseaseFree 11.83 -TCGA-AR-A0U0 0:LIVING 0.26 0:DiseaseFree 0.26 -TCGA-AR-A0U1 0:LIVING 6.08 0:DiseaseFree 6.08 -TCGA-AR-A0U4 0:LIVING 53.45 0:DiseaseFree 53.45 -TCGA-AR-A1AH 0:LIVING 75.5 0:DiseaseFree 75.5 -TCGA-AR-A1AI 0:LIVING 61.8 0:DiseaseFree 61.8 -TCGA-AR-A1AJ 0:LIVING 52.7 0:DiseaseFree 52.7 -TCGA-AR-A1AQ 0:LIVING 43.01 0:DiseaseFree 43.01 -TCGA-AR-A1AY 0:LIVING 20.17 0:DiseaseFree 20.17 -TCGA-BH-A0AV 0:LIVING 38.77 0:DiseaseFree 38.77 -TCGA-BH-A0BG 0:LIVING 24.84 0:DiseaseFree 24.84 -TCGA-BH-A0BL 0:LIVING 43.99 0:DiseaseFree 43.99 -TCGA-BH-A0BW 0:LIVING 11.66 0:DiseaseFree 11.66 -TCGA-BH-A0DL 0:LIVING 48.2 0:DiseaseFree 48.2 -TCGA-BH-A0WA 0:LIVING 12.22 0:DiseaseFree 12.22 -TCGA-BH-A18G 0:LIVING 2 0:DiseaseFree 2 -TCGA-C8-A12K 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12V 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A131 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A134 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A147 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-E2-A14N 0:LIVING 44.35 0:DiseaseFree 44.35 -TCGA-E2-A14R 0:LIVING 27.76 0:DiseaseFree 27.76 -TCGA-E2-A14X 0:LIVING 22.73 0:DiseaseFree 22.73 -TCGA-E2-A14Y 0:LIVING 22.6 0:DiseaseFree 22.6 -TCGA-E2-A150 0:LIVING 19.42 0:DiseaseFree 19.42 -TCGA-E2-A158 0:LIVING 14.78 0:DiseaseFree 14.78 -TCGA-E2-A159 0:LIVING 16.92 0:DiseaseFree 16.92 -TCGA-E2-A1AZ 0:LIVING 64.52 0:DiseaseFree 64.52 -TCGA-E2-A1B5 0:LIVING 25.43 0:DiseaseFree 25.43 -TCGA-A8-A08L 1:DECEASED 9.99 NA NA -TCGA-BH-A1EV 1:DECEASED 11.99 1:Recurred/Progressed NA -TCGA-B6-A0I9 1:DECEASED 12.12 1:Recurred/Progressed NA -TCGA-A8-A09X 1:DECEASED 14 NA NA -TCGA-B6-A0IK 1:DECEASED 18.76 1:Recurred/Progressed NA -TCGA-BH-A18P 1:DECEASED 30.26 1:Recurred/Progressed NA -TCGA-A8-A08J 1:DECEASED 37.03 NA NA -TCGA-BH-A18R 1:DECEASED 37.49 0:DiseaseFree 36.11 -TCGA-AR-A1AT 1:DECEASED 41.79 NA NA -TCGA-B6-A0RS 1:DECEASED 100.6 1:Recurred/Progressed NA -TCGA-BH-A0DZ 0:LIVING 16.26 0:DiseaseFree 16.26 -TCGA-A2-A0T1 0:LIVING 10.58 0:DiseaseFree 10.58 -TCGA-AO-A0J2 0:LIVING 19.22 0:DiseaseFree 19.22 -TCGA-BH-A0AW 0:LIVING 20.43 0:DiseaseFree 20.43 -TCGA-BH-A0EE 0:LIVING 30.98 0:DiseaseFree 30.98 -TCGA-A2-A0D1 0:LIVING 25.82 0:DiseaseFree 25.82 -TCGA-AO-A03N 0:LIVING 54.04 1:Recurred/Progressed NA -TCGA-A2-A0CY 0:LIVING 42.32 0:DiseaseFree 42.32 -TCGA-A2-A04X 0:LIVING 44.32 0:DiseaseFree 44.32 -TCGA-A2-A0CX 0:LIVING 42.81 0:DiseaseFree 42.81 -TCGA-A2-A04W 0:LIVING 63.01 0:DiseaseFree 63.01 -TCGA-AO-A12D 0:LIVING 64 0:DiseaseFree 64 -TCGA-A2-A0CL 0:LIVING 60.02 0:DiseaseFree 60.02 -TCGA-AO-A0JE 0:LIVING 64.56 0:DiseaseFree 64.56 -TCGA-A2-A0EQ 0:LIVING 67.45 0:DiseaseFree 67.45 -TCGA-AO-A03L 0:LIVING 80.23 0:DiseaseFree 80.23 -TCGA-B6-A0RH 0:LIVING 188.84 0:DiseaseFree 188.84 -TCGA-A8-A075 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-A8-A076 0:LIVING 53.91 0:DiseaseFree 53.91 -TCGA-A8-A07B 0:LIVING 32.98 0:DiseaseFree 32.98 -TCGA-A8-A07I 0:LIVING 14 0:DiseaseFree 14 -TCGA-A8-A081 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A08B 0:LIVING 23.06 0:DiseaseFree 23.06 -TCGA-A8-A08X 0:LIVING 33.97 0:DiseaseFree 33.97 -TCGA-A8-A092 0:LIVING 17.02 0:DiseaseFree 17.02 -TCGA-A8-A094 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A09G 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A0A7 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-AN-A04C 0:LIVING 1.77 0:DiseaseFree 1.77 -TCGA-AN-A0FV 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AR-A0TX 0:LIVING 0.49 0:DiseaseFree 0.49 -TCGA-BH-A0B7 0:LIVING 56.93 0:DiseaseFree 56.93 -TCGA-BH-A0HY 0:LIVING 28.48 0:DiseaseFree 28.48 -TCGA-C8-A12L 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12P 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Q 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12T 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Z 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A130 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A135 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A137 0:LIVING 0.1 0:DiseaseFree 0.1 -TCGA-C8-A138 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A1HF 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A13Z 0:LIVING 6.9 0:DiseaseFree 6.9 -TCGA-E2-A14P 0:LIVING 16 0:DiseaseFree 16 -TCGA-E2-A14V 0:LIVING 24.57 0:DiseaseFree 24.57 -TCGA-E2-A152 0:LIVING 19.32 1:Recurred/Progressed NA -TCGA-E2-A1B0 0:LIVING 41.76 0:DiseaseFree 41.76 -TCGA-A2-A0CU 1:DECEASED 5.16 0:DiseaseFree 4.57 -TCGA-AR-A0TR 1:DECEASED 5.26 NA NA -TCGA-BH-A18T 1:DECEASED 7.36 1:Recurred/Progressed NA -TCGA-B6-A0I8 1:DECEASED 24.61 1:Recurred/Progressed NA -TCGA-B6-A0X4 1:DECEASED 28.22 1:Recurred/Progressed NA -TCGA-A8-A06U 1:DECEASED 28.98 NA NA -TCGA-BH-A0EA 1:DECEASED 32.62 0:DiseaseFree 27.3 -TCGA-BH-A18N 1:DECEASED 37.72 NA NA -TCGA-BH-A1EU 1:DECEASED 42.25 0:DiseaseFree NA -TCGA-B6-A0X7 1:DECEASED 58.84 NA NA -TCGA-A2-A04V 1:DECEASED 63.08 1:Recurred/Progressed NA -TCGA-BH-A18S 1:DECEASED 66 0:DiseaseFree 66 -TCGA-BH-A18M 1:DECEASED 72.51 NA NA -TCGA-B6-A0RM 1:DECEASED 77.96 0:DiseaseFree 77.96 -TCGA-BH-A1ET 1:DECEASED 82.79 0:DiseaseFree NA -TCGA-B6-A0IN 1:DECEASED 84.53 1:Recurred/Progressed NA -TCGA-BH-A1EO 1:DECEASED 91.92 0:DiseaseFree NA -TCGA-B6-A0WS 1:DECEASED 97.41 0:DiseaseFree NA -TCGA-B6-A0RP 1:DECEASED 102.7 NA NA -TCGA-B6-A0IH 1:DECEASED 112.29 NA NA -TCGA-B6-A0WY 1:DECEASED 113.67 1:Recurred/Progressed NA -TCGA-BH-A1ES 1:DECEASED 113.74 1:Recurred/Progressed NA -TCGA-B6-A0X0 1:DECEASED 129.61 NA NA -TCGA-B6-A0RQ 1:DECEASED 140.38 0:DiseaseFree NA -TCGA-B6-A0IG 1:DECEASED 146.39 1:Recurred/Progressed NA -TCGA-BH-A0HO 0:LIVING 2.5 0:DiseaseFree 2.5 -TCGA-BH-A0DS 0:LIVING 2.53 0:DiseaseFree 2.53 -TCGA-BH-A0DQ 0:LIVING 3.22 0:DiseaseFree 3.22 -TCGA-BH-A0HK 0:LIVING 5.85 0:DiseaseFree 5.85 -TCGA-A7-A0CG 0:LIVING 5.45 0:DiseaseFree 5.45 -TCGA-A7-A0CH 0:LIVING 5.29 0:DiseaseFree 5.29 -TCGA-A7-A0DB 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-A7-A0D9 0:LIVING 5.22 0:DiseaseFree 5.22 -TCGA-AO-A0J8 0:LIVING 9.1 0:DiseaseFree 9.1 -TCGA-BH-A0GZ 0:LIVING 10.78 0:DiseaseFree 10.78 -TCGA-AO-A0JA 0:LIVING 11.37 1:Recurred/Progressed NA -TCGA-AO-A0JF 0:LIVING 11.63 0:DiseaseFree 11.63 -TCGA-A7-A0CD 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-D8-A145 0:LIVING 1.61 0:DiseaseFree 1.61 -TCGA-BH-A0HP 0:LIVING 13.6 0:DiseaseFree 13.6 -TCGA-BH-A0DK 0:LIVING 13.9 0:DiseaseFree 13.9 -TCGA-BH-A0E2 0:LIVING 12.35 0:DiseaseFree 12.35 -TCGA-A2-A0YI 0:LIVING 11.76 0:DiseaseFree 11.76 -TCGA-A2-A0YL 0:LIVING 8.8 0:DiseaseFree 8.8 -TCGA-AO-A0JG 0:LIVING 14.75 0:DiseaseFree 14.75 -TCGA-A2-A0YF 0:LIVING 9.49 0:DiseaseFree 9.49 -TCGA-BH-A0DP 0:LIVING 15.64 0:DiseaseFree 15.64 -TCGA-BH-A0E1 0:LIVING 15.67 0:DiseaseFree 15.67 -TCGA-A2-A0T5 0:LIVING 10.55 0:DiseaseFree 10.55 -TCGA-A2-A0T6 0:LIVING 11.3 0:DiseaseFree 11.3 -TCGA-BH-A0HI 0:LIVING 20.34 0:DiseaseFree 20.34 -TCGA-A2-A0T7 0:LIVING 13.04 0:DiseaseFree 13.04 -TCGA-BH-A0BJ 0:LIVING 21.68 0:DiseaseFree 21.68 -TCGA-BH-A0H7 0:LIVING 23.03 0:DiseaseFree 23.03 -TCGA-BH-A0HF 0:LIVING 23.88 0:DiseaseFree 23.88 -TCGA-BH-A0EB 0:LIVING 24.48 0:DiseaseFree 24.48 -TCGA-BH-A0H6 0:LIVING 24.54 0:DiseaseFree 24.54 -TCGA-A2-A0YD 0:LIVING 18.07 0:DiseaseFree 18.07 -TCGA-BH-A0HB 0:LIVING 26.48 0:DiseaseFree 26.48 -TCGA-BH-A0HX 0:LIVING 27.24 0:DiseaseFree 27.24 -TCGA-AO-A12H 0:LIVING 28.32 0:DiseaseFree 28.32 -TCGA-E2-A10E 0:LIVING 13.73 0:DiseaseFree 13.73 -TCGA-A2-A0D3 0:LIVING 24.18 0:DiseaseFree 24.18 -TCGA-E2-A10F 0:LIVING 11.83 0:DiseaseFree 11.83 -TCGA-AO-A03V 0:LIVING 29.11 0:DiseaseFree 29.11 -TCGA-A2-A0EW 0:LIVING 25.3 0:DiseaseFree 25.3 -TCGA-BH-A0GY 0:LIVING 30.13 0:DiseaseFree 30.13 -TCGA-A2-A0EV 0:LIVING 17.91 0:DiseaseFree 17.91 -TCGA-BH-A0BC 0:LIVING 32 0:DiseaseFree 32 -TCGA-A2-A0YC 0:LIVING 21.12 0:DiseaseFree 21.12 -TCGA-A2-A0EU 0:LIVING 24.08 0:DiseaseFree 24.08 -TCGA-A2-A0ET 0:LIVING 26.51 0:DiseaseFree 26.51 -TCGA-A2-A04Y 0:LIVING 25.07 0:DiseaseFree 25.07 -TCGA-BH-A0HQ 0:LIVING 36.83 0:DiseaseFree 36.83 -TCGA-A2-A0ES 0:LIVING 32.89 0:DiseaseFree 32.89 -TCGA-BH-A0BA 0:LIVING 37.19 0:DiseaseFree 37.19 -TCGA-E2-A10B 0:LIVING 24.57 0:DiseaseFree 24.57 -TCGA-BH-A0B1 0:LIVING 37.72 0:DiseaseFree 37.72 -TCGA-BH-A0DH 0:LIVING 37.98 0:DiseaseFree 37.98 -TCGA-BH-A0B4 0:LIVING 39.13 0:DiseaseFree 39.13 -TCGA-BH-A0H9 0:LIVING 40.97 0:DiseaseFree 40.97 -TCGA-AO-A0J9 0:LIVING 41.23 1:Recurred/Progressed NA -TCGA-AO-A12G 0:LIVING 41.56 0:DiseaseFree 41.56 -TCGA-A2-A0SY 0:LIVING 37.91 0:DiseaseFree 37.91 -TCGA-BH-A0E7 0:LIVING 44.75 0:DiseaseFree 44.75 -TCGA-AO-A03M 0:LIVING 47.8 0:DiseaseFree 47.8 -TCGA-BH-A0BV 0:LIVING 49.9 0:DiseaseFree 49.9 -TCGA-BH-A0B8 0:LIVING 51.55 0:DiseaseFree 51.55 -TCGA-A2-A0CZ 0:LIVING 43.96 0:DiseaseFree 43.96 -TCGA-A2-A0SU 0:LIVING 44.38 0:DiseaseFree 44.38 -TCGA-AO-A12E 0:LIVING 57.23 0:DiseaseFree 57.23 -TCGA-E2-A106 0:LIVING 51.09 0:DiseaseFree 51.09 -TCGA-A2-A0CV 0:LIVING 61.44 0:DiseaseFree 61.44 -TCGA-AO-A12C 0:LIVING 65.48 0:DiseaseFree 65.48 -TCGA-B6-A0RG 0:LIVING 68.4 0:DiseaseFree 68.4 -TCGA-A2-A0CS 0:LIVING 75.5 0:DiseaseFree 75.5 -TCGA-A2-A0EO 0:LIVING 71.65 0:DiseaseFree 71.65 -TCGA-A2-A0CQ 0:LIVING 78.59 0:DiseaseFree 78.59 -TCGA-A2-A0EN 0:LIVING 82.63 0:DiseaseFree 82.63 -TCGA-AO-A12A 0:LIVING 90.48 0:DiseaseFree 90.48 -TCGA-A2-A0CP 0:LIVING 81.97 0:DiseaseFree 81.97 -TCGA-AO-A126 0:LIVING 93.63 0:DiseaseFree 93.63 -TCGA-AO-A125 0:LIVING 99.15 0:DiseaseFree 99.15 -TCGA-A2-A0EM 0:LIVING 90.58 0:DiseaseFree 90.58 -TCGA-A2-A04N 0:LIVING 103.59 0:DiseaseFree 103.59 -TCGA-AQ-A04L 0:LIVING 109.86 0:DiseaseFree 109.86 -TCGA-B6-A0IO 0:LIVING 110.06 0:DiseaseFree 110.06 -TCGA-B6-A0IP 0:LIVING 110.85 0:DiseaseFree 110.85 -TCGA-B6-A0WZ 0:LIVING 129.48 0:DiseaseFree 129.48 -TCGA-B6-A0I5 0:LIVING 149.45 0:DiseaseFree 149.45 -TCGA-B6-A0RV 0:LIVING 157.3 0:DiseaseFree 157.3 -TCGA-B6-A0RO 0:LIVING 161.9 0:DiseaseFree 161.9 -TCGA-B6-A0RN 0:LIVING 172.84 0:DiseaseFree 172.84 -TCGA-B6-A0WT 0:LIVING 177.28 0:DiseaseFree 177.28 -TCGA-B6-A0IA 0:LIVING 220.71 0:DiseaseFree 220.71 -TCGA-B6-A0RI 0:LIVING 223.24 1:Recurred/Progressed NA -TCGA-A1-A0SE 0:LIVING 43.37 0:DiseaseFree 43.37 -TCGA-A2-A0EX 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-AO-A0JJ 0:LIVING 49.67 0:DiseaseFree 49.67 -TCGA-E2-A105 0:LIVING 38.21 0:DiseaseFree 38.21 -TCGA-A1-A0SD 0:LIVING 14.36 0:DiseaseFree 14.36 -TCGA-A1-A0SH 0:LIVING 47.21 0:DiseaseFree 47.21 -TCGA-A1-A0SJ 0:LIVING 14 0:DiseaseFree 14 -TCGA-A8-A06P 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A06T 0:LIVING 41.03 0:DiseaseFree 41.03 -TCGA-A8-A06Y 0:LIVING 25.99 0:DiseaseFree 25.99 -TCGA-A8-A07E 0:LIVING 19.97 0:DiseaseFree 19.97 -TCGA-A8-A07F 0:LIVING 18.92 0:DiseaseFree 18.92 -TCGA-A8-A07G 0:LIVING 18.92 0:DiseaseFree 18.92 -TCGA-A8-A07J 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A07P 0:LIVING 10.97 0:DiseaseFree 10.97 -TCGA-A8-A083 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A086 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A08A 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-A8-A08C 0:LIVING 19.94 0:DiseaseFree 19.94 -TCGA-A8-A08O 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A08T 0:LIVING 92.97 0:DiseaseFree 92.97 -TCGA-A8-A08Z 0:LIVING 39.98 0:DiseaseFree 39.98 -TCGA-A8-A090 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A091 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A093 0:LIVING 17.91 0:DiseaseFree 17.91 -TCGA-A8-A099 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A09A 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A09B 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A09T 0:LIVING 18.99 0:DiseaseFree 18.99 -TCGA-A8-A09V 0:LIVING 15.01 0:DiseaseFree 15.01 -TCGA-A8-A0A1 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A0A2 0:LIVING 18.99 0:DiseaseFree 18.99 -TCGA-A8-A0A4 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A0A6 0:LIVING 21.03 0:DiseaseFree 21.03 -TCGA-A8-A0AD 0:LIVING 38.01 0:DiseaseFree 38.01 -TCGA-AN-A03X 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A046 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A04A 0:LIVING 2.92 0:DiseaseFree 2.92 -TCGA-AN-A0FD 0:LIVING 6.41 0:DiseaseFree 6.41 -TCGA-AN-A0FN 0:LIVING 7.16 0:DiseaseFree 7.16 -TCGA-AN-A0FS 0:LIVING 6.27 0:DiseaseFree 6.27 -TCGA-AN-A0FT 0:LIVING 6.01 0:DiseaseFree 6.01 -TCGA-AN-A0FW 0:LIVING 0.36 0:DiseaseFree 0.36 -TCGA-AN-A0FZ 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XL 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XN 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XO 0:LIVING 12.32 0:DiseaseFree 12.32 -TCGA-AN-A0XP 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0XS 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XT 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XV 0:LIVING 5.32 0:DiseaseFree 5.32 -TCGA-AR-A0TW 0:LIVING 24.28 0:DiseaseFree 24.28 -TCGA-AR-A1AK 0:LIVING 51.19 0:DiseaseFree 51.19 -TCGA-AR-A1AL 0:LIVING 48.79 0:DiseaseFree 48.79 -TCGA-AR-A1AN 0:LIVING 43.66 0:DiseaseFree 43.66 -TCGA-AR-A1AP 0:LIVING 39.92 0:DiseaseFree 39.92 -TCGA-AR-A1AS 0:LIVING 40.8 0:DiseaseFree 40.8 -TCGA-AR-A1AU 0:LIVING 46.29 0:DiseaseFree 46.29 -TCGA-AR-A1AW 0:LIVING 35.22 0:DiseaseFree 35.22 -TCGA-AR-A1AX 0:LIVING 36.24 0:DiseaseFree 36.24 -TCGA-BH-A0AZ 0:LIVING 28.48 0:DiseaseFree 28.48 -TCGA-BH-A0B0 0:LIVING 46.88 0:DiseaseFree 46.88 -TCGA-BH-A0BM 0:LIVING 36.7 0:DiseaseFree 36.7 -TCGA-BH-A0BO 0:LIVING 35.65 0:DiseaseFree 35.65 -TCGA-BH-A0BP 0:LIVING 48.66 0:DiseaseFree 48.66 -TCGA-BH-A0BQ 0:LIVING 27.14 0:DiseaseFree 27.14 -TCGA-BH-A0BR 0:LIVING 53.62 0:DiseaseFree 53.62 -TCGA-BH-A0BS 0:LIVING 53.88 0:DiseaseFree 53.88 -TCGA-BH-A0BT 0:LIVING 45.53 0:DiseaseFree 45.53 -TCGA-BH-A0C1 0:LIVING 43.96 0:DiseaseFree 43.96 -TCGA-BH-A0DE 0:LIVING 31.14 0:DiseaseFree 31.14 -TCGA-BH-A0DG 0:LIVING 23.42 0:DiseaseFree 23.42 -TCGA-BH-A0DI 0:LIVING 22.11 0:DiseaseFree 22.11 -TCGA-BH-A0DO 0:LIVING 17.25 0:DiseaseFree 17.25 -TCGA-BH-A0DT 0:LIVING 38.44 0:DiseaseFree 38.44 -TCGA-BH-A0DX 0:LIVING 47.37 0:DiseaseFree 47.37 -TCGA-BH-A0E9 0:LIVING 46.16 0:DiseaseFree 46.16 -TCGA-BH-A0EI 0:LIVING 24.41 0:DiseaseFree 24.41 -TCGA-BH-A0H3 0:LIVING 37.75 0:DiseaseFree 37.75 -TCGA-BH-A0H5 0:LIVING 35.48 0:DiseaseFree 35.48 -TCGA-BH-A0HA 0:LIVING 28.12 0:DiseaseFree 28.12 -TCGA-BH-A0W4 0:LIVING 5.75 0:DiseaseFree 5.75 -TCGA-BH-A0W5 0:LIVING 17.84 0:DiseaseFree 17.84 -TCGA-BH-A0W7 0:LIVING 18.33 0:DiseaseFree 18.33 -TCGA-BH-A18H 0:LIVING 0 0:DiseaseFree 0 -TCGA-BH-A18I 0:LIVING 7.23 0:DiseaseFree 7.23 -TCGA-C8-A12N 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12O 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12Y 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A132 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A133 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HI 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-D8-A141 0:LIVING 3.71 0:DiseaseFree 3.71 -TCGA-E2-A14Q 0:LIVING 32 0:DiseaseFree 32 -TCGA-E2-A14T 0:LIVING 29.24 0:DiseaseFree 29.24 -TCGA-E2-A14Z 0:LIVING 17.02 1:Recurred/Progressed NA -TCGA-E2-A153 0:LIVING 19.25 0:DiseaseFree 19.25 -TCGA-E2-A154 0:LIVING 10.68 0:DiseaseFree 10.68 -TCGA-E2-A156 0:LIVING 15.8 0:DiseaseFree 15.8 -TCGA-E2-A15C 0:LIVING 16.3 0:DiseaseFree 16.3 -TCGA-E2-A15D 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15E 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-E2-A15F 0:LIVING 15.38 0:DiseaseFree 15.38 -TCGA-E2-A15G 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15H 0:LIVING 1.38 0:DiseaseFree 1.38 -TCGA-E2-A15I 0:LIVING 13.5 0:DiseaseFree 13.5 -TCGA-E2-A15J 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-E2-A15O 0:LIVING 12.98 0:DiseaseFree 12.98 -TCGA-E2-A15P 0:LIVING 10.35 0:DiseaseFree 10.35 -TCGA-E2-A15R 0:LIVING 10.84 0:DiseaseFree 10.84 -TCGA-E2-A1B1 0:LIVING 44.71 0:DiseaseFree 44.71 -TCGA-E2-A1B4 0:LIVING 29.93 0:DiseaseFree 29.93 -TCGA-E2-A1B6 0:LIVING 11.1 0:DiseaseFree 11.1 -TCGA-E2-A1BC 0:LIVING 9.76 0:DiseaseFree 9.76 -TCGA-E2-A1BD 0:LIVING 10.41 0:DiseaseFree 10.41 -TCGA-A2-A0SV 1:DECEASED 27.1 1:Recurred/Progressed NA -TCGA-AO-A03O 1:DECEASED 81.57 0:DiseaseFree 32.62 -TCGA-A2-A0SW 1:DECEASED 44.81 1:Recurred/Progressed NA -TCGA-B6-A0WW 1:DECEASED 18.3 1:Recurred/Progressed NA -TCGA-BH-A18J 1:DECEASED 20.07 1:Recurred/Progressed NA -TCGA-BH-A18L 1:DECEASED 26.64 NA NA -TCGA-A8-A06X 1:DECEASED 30.98 NA NA -TCGA-B6-A0IC 1:DECEASED 50.66 NA NA -TCGA-BH-A18U 1:DECEASED 51.35 0:DiseaseFree 43.27 -TCGA-BH-A1EW 1:DECEASED 55.65 1:Recurred/Progressed NA -TCGA-AR-A0TY 1:DECEASED 55.82 NA NA -TCGA-B6-A0X5 1:DECEASED 68.89 1:Recurred/Progressed NA -TCGA-B6-A0WV 1:DECEASED 79.57 0:DiseaseFree 79.57 -TCGA-B6-A0RL 1:DECEASED 81.11 0:DiseaseFree 81.11 -TCGA-AR-A0U2 1:DECEASED 83.81 1:Recurred/Progressed NA -TCGA-B6-A0IB 1:DECEASED 129.48 1:Recurred/Progressed NA -TCGA-AO-A0J7 0:LIVING 8.54 0:DiseaseFree 8.54 -TCGA-AO-A0J3 0:LIVING 9.92 0:DiseaseFree 9.92 -TCGA-D8-A13Y 0:LIVING 8.67 0:DiseaseFree 8.67 -TCGA-A7-A13F 0:LIVING 6.44 0:DiseaseFree 6.44 -TCGA-BH-A0HU 0:LIVING 12.88 0:DiseaseFree 12.88 -TCGA-D8-A140 0:LIVING 0.89 0:DiseaseFree 0.89 -TCGA-A7-A0CJ 0:LIVING 6.18 0:DiseaseFree 6.18 -TCGA-AQ-A04H 0:LIVING 14.42 0:DiseaseFree 14.42 -TCGA-BH-A0H0 0:LIVING 15.15 0:DiseaseFree 15.15 -TCGA-BH-A0BD 0:LIVING 18.2 0:DiseaseFree 18.2 -TCGA-A2-A0T3 0:LIVING 14.98 0:DiseaseFree 14.98 -TCGA-A2-A0T4 0:LIVING 12.98 0:DiseaseFree 12.98 -TCGA-A2-A0YH 0:LIVING 12.45 0:DiseaseFree 12.45 -TCGA-A2-A0YG 0:LIVING 13.27 0:DiseaseFree 13.27 -TCGA-A2-A0EY 0:LIVING 15.93 0:DiseaseFree 15.93 -TCGA-A2-A0D4 0:LIVING 16.3 0:DiseaseFree 16.3 -TCGA-BH-A0AY 0:LIVING 25.53 0:DiseaseFree 25.53 -TCGA-E2-A107 0:LIVING 25.07 1:Recurred/Progressed NA -TCGA-AO-A0JI 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-E2-A10C 0:LIVING 28.02 0:DiseaseFree 28.02 -TCGA-E2-A10A 0:LIVING 11.56 1:Recurred/Progressed NA -TCGA-BH-A0C0 0:LIVING 41.72 0:DiseaseFree 41.72 -TCGA-E2-A109 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-AO-A0JC 0:LIVING 50.82 0:DiseaseFree 50.82 -TCGA-BH-A0HW 0:LIVING 51.25 0:DiseaseFree 51.25 -TCGA-AO-A0JD 0:LIVING 59.56 0:DiseaseFree 59.56 -TCGA-AO-A0JM 0:LIVING 59.99 0:DiseaseFree 59.99 -TCGA-A2-A0CW 0:LIVING 57.49 0:DiseaseFree 57.49 -TCGA-A2-A0ER 0:LIVING 62.49 0:DiseaseFree 62.49 -TCGA-A2-A0CT 0:LIVING 62.98 0:DiseaseFree 62.98 -TCGA-AO-A12B 0:LIVING 77.5 0:DiseaseFree 77.5 -TCGA-A2-A04R 0:LIVING 77.67 0:DiseaseFree 77.67 -TCGA-B6-A0IM 0:LIVING 126.03 0:DiseaseFree 126.03 -TCGA-AO-A03P 0:LIVING 84.63 1:Recurred/Progressed NA -TCGA-A1-A0SM 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-A8-A06N 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A06O 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A06Q 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A06R 0:LIVING 17.94 0:DiseaseFree 17.94 -TCGA-A8-A06Z 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A079 0:LIVING 9 0:DiseaseFree 9 -TCGA-A8-A07L 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-A8-A07S 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-A8-A07W 0:LIVING 9.99 0:DiseaseFree 9.99 -TCGA-A8-A07Z 0:LIVING 28.02 0:DiseaseFree 28.02 -TCGA-A8-A082 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-A8-A084 0:LIVING 15.05 0:DiseaseFree 15.05 -TCGA-A8-A085 0:LIVING 36.93 0:DiseaseFree 36.93 -TCGA-A8-A08F 0:LIVING 18.04 0:DiseaseFree 18.04 -TCGA-A8-A08G 0:LIVING 19.91 0:DiseaseFree 19.91 -TCGA-A8-A08I 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A08P 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A095 0:LIVING 41.92 0:DiseaseFree 41.92 -TCGA-A8-A096 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A097 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-A8-A09C 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A09D 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A09I 0:LIVING 33.05 0:DiseaseFree 33.05 -TCGA-A8-A09M 0:LIVING 15.01 0:DiseaseFree 15.01 -TCGA-A8-A09N 0:LIVING 1.02 0:DiseaseFree 1.02 -TCGA-A8-A09Q 0:LIVING 25 0:DiseaseFree 25 -TCGA-A8-A09R 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-A8-A09W 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-A8-A09Z 0:LIVING 0 0:DiseaseFree 0 -TCGA-A8-A0A9 0:LIVING 13.01 0:DiseaseFree 13.01 -TCGA-A8-A0AB 0:LIVING 16.99 0:DiseaseFree 16.99 -TCGA-AN-A03Y 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A041 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-AN-A049 0:LIVING 0.62 0:DiseaseFree 0.62 -TCGA-AN-A0AJ 0:LIVING 7.98 0:DiseaseFree 7.98 -TCGA-AN-A0AK 0:LIVING 7.33 0:DiseaseFree 7.33 -TCGA-AN-A0AM 0:LIVING 0.16 0:DiseaseFree 0.16 -TCGA-AN-A0AS 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-AN-A0FF 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-AN-A0FK 0:LIVING 6.96 0:DiseaseFree 6.96 -TCGA-AN-A0FY 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XR 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-AN-A0XW 0:LIVING 5.59 0:DiseaseFree 5.59 -TCGA-AR-A0TQ 0:LIVING 49.28 0:DiseaseFree 49.28 -TCGA-AR-A0TT 0:LIVING 55.16 0:DiseaseFree 55.16 -TCGA-AR-A0TV 0:LIVING 29.7 0:DiseaseFree 29.7 -TCGA-AR-A0TZ 0:LIVING 43.14 0:DiseaseFree 43.14 -TCGA-AR-A0U3 0:LIVING 74.35 0:DiseaseFree 74.35 -TCGA-AR-A1AV 0:LIVING 42.55 0:DiseaseFree 42.55 -TCGA-BH-A0AU 0:LIVING 24.51 0:DiseaseFree 24.51 -TCGA-BH-A0B5 0:LIVING 48.33 0:DiseaseFree 48.33 -TCGA-BH-A0BF 0:LIVING 25.66 0:DiseaseFree 25.66 -TCGA-BH-A0BZ 0:LIVING 49.02 0:DiseaseFree 49.02 -TCGA-BH-A0C3 0:LIVING 48.1 0:DiseaseFree 48.1 -TCGA-BH-A0C7 0:LIVING 42.87 0:DiseaseFree 42.87 -TCGA-BH-A0DD 0:LIVING 45.76 0:DiseaseFree 45.76 -TCGA-BH-A0W3 0:LIVING 5.91 0:DiseaseFree 5.91 -TCGA-BH-A18F 0:LIVING 8.8 0:DiseaseFree 8.8 -TCGA-C8-A12M 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12U 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12W 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A12X 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HG 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HL 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-C8-A1HM 0:LIVING 0.2 0:DiseaseFree 0.2 -TCGA-C8-A1HN 0:LIVING 0.07 0:DiseaseFree 0.07 -TCGA-E2-A14O 0:LIVING 38.5 0:DiseaseFree 38.5 -TCGA-E2-A14S 0:LIVING 27.4 0:DiseaseFree 27.4 -TCGA-E2-A14W 0:LIVING 27.37 0:DiseaseFree 27.37 -TCGA-E2-A155 0:LIVING 18.17 0:DiseaseFree 18.17 -TCGA-E2-A15A 0:LIVING 16.49 0:DiseaseFree 16.49 -TCGA-E2-A15K 0:LIVING 1.12 0:DiseaseFree 1.12 -TCGA-E2-A15L 0:LIVING 10.87 0:DiseaseFree 10.87 -TCGA-E2-A15M 0:LIVING 7.69 0:DiseaseFree 7.69 -TCGA-E2-A15S 0:LIVING 9 0:DiseaseFree 9 -TCGA-E2-A15T 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-AO-A03U 1:DECEASED 59 0:DiseaseFree 56.74 -TCGA-B6-A0IE 1:DECEASED 65.64 1:Recurred/Progressed NA -TCGA-A2-A0YK 0:LIVING 10.97 0:DiseaseFree 10.97 -TCGA-E2-A108 0:LIVING 4.07 0:DiseaseFree 4.07 -TCGA-AO-A0JB 0:LIVING 37.78 0:DiseaseFree 37.78 -TCGA-AO-A03R 0:LIVING 56.08 0:DiseaseFree 56.08 -TCGA-AO-A03T 0:LIVING 39 0:DiseaseFree 39 -TCGA-AR-A1AO 0:LIVING 43.5 0:DiseaseFree 43.5 -TCGA-A2-A0YT 1:DECEASED 23.75 0:DiseaseFree 21.98 -TCGA-AQ-A0Y5 1:DECEASED 5.29 0:DiseaseFree NA -TCGA-EW-A1P8 1:DECEASED 7.85 1:Recurred/Progressed NA -TCGA-E2-A1LK 1:DECEASED 8.74 1:Recurred/Progressed NA -TCGA-BH-A1EY 1:DECEASED 17.68 1:Recurred/Progressed NA -TCGA-BH-A1F8 1:DECEASED 24.61 1:Recurred/Progressed NA -TCGA-BH-A1F2 1:DECEASED 31.51 0:DiseaseFree NA -TCGA-BH-A1FD 1:DECEASED 33.12 1:Recurred/Progressed NA -TCGA-BH-A1FH 1:DECEASED 36.89 1:Recurred/Progressed NA -TCGA-BH-A203 NA NA NA NA -TCGA-BH-A1FM 1:DECEASED 45.6 NA NA -TCGA-BH-A1EX 1:DECEASED 49.54 1:Recurred/Progressed NA -TCGA-BH-A1FL 1:DECEASED 54.96 1:Recurred/Progressed NA -TCGA-BH-A208 NA NA NA NA -TCGA-GM-A2D9 1:DECEASED 59.53 1:Recurred/Progressed NA -TCGA-BH-A1FJ 1:DECEASED 63.31 NA NA -TCGA-BH-A1EN 1:DECEASED 67.42 0:DiseaseFree NA -TCGA-BH-A1FN 1:DECEASED 72.01 1:Recurred/Progressed NA -TCGA-BH-A1FU 1:DECEASED 72.01 1:Recurred/Progressed NA -TCGA-BH-A1FE 1:DECEASED 74.68 1:Recurred/Progressed NA -TCGA-BH-A204 NA NA NA NA -TCGA-BH-A1F5 1:DECEASED 89.1 0:DiseaseFree NA -TCGA-AR-A256 1:DECEASED 93.76 NA NA -TCGA-BH-A1F6 1:DECEASED 97.41 NA NA -TCGA-BH-A1FC 1:DECEASED 114.03 0:DiseaseFree NA -TCGA-BH-A1FB 1:DECEASED 120.54 1:Recurred/Progressed NA -TCGA-BH-A1FG 1:DECEASED 122.81 NA NA -TCGA-BH-A209 NA NA NA NA -TCGA-BH-A1FR 1:DECEASED 144.49 1:Recurred/Progressed NA -TCGA-AO-A1KS 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-A7-A13G 0:LIVING 6.83 0:DiseaseFree 6.83 -TCGA-D8-A1JS 0:LIVING 3.45 0:DiseaseFree 3.45 -TCGA-A7-A0DC 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-D8-A1JT 0:LIVING 4.04 0:DiseaseFree 4.04 -TCGA-A7-A26E 0:LIVING 13.83 0:DiseaseFree 13.83 -TCGA-D8-A1JH 0:LIVING 9.33 0:DiseaseFree 9.33 -TCGA-D8-A1JU 0:LIVING 3.48 0:DiseaseFree 3.48 -TCGA-AO-A1KO 0:LIVING 14.72 0:DiseaseFree 14.72 -TCGA-AO-A1KT 0:LIVING 17.77 0:DiseaseFree 17.77 -TCGA-AO-A0J5 0:LIVING 24.15 1:Recurred/Progressed NA -TCGA-B6-A1KC 0:LIVING 43.56 0:DiseaseFree 43.56 -TCGA-AO-A1KQ 0:LIVING 49.9 0:DiseaseFree 49.9 -TCGA-B6-A1KI 0:LIVING 48.06 0:DiseaseFree 48.06 -TCGA-AO-A1KP 0:LIVING 82.56 0:DiseaseFree 82.56 -TCGA-B6-A1KF 0:LIVING 101.45 0:DiseaseFree 101.45 -TCGA-B6-A1KN 0:LIVING 109.4 0:DiseaseFree 109.4 -TCGA-D8-A1XO 0:LIVING 7.95 0:DiseaseFree 7.95 -TCGA-D8-A1XT 0:LIVING 6.34 0:DiseaseFree 6.34 -TCGA-A1-A0SP 0:LIVING 19.15 0:DiseaseFree 19.15 -TCGA-D8-A1J8 0:LIVING 8.41 0:DiseaseFree 8.41 -TCGA-D8-A1JF 0:LIVING 3.15 0:DiseaseFree 3.15 -TCGA-D8-A1JG 0:LIVING 6.14 0:DiseaseFree 6.14 -TCGA-D8-A1XS 0:LIVING 0.59 0:DiseaseFree 0.59 -TCGA-A1-A0SB 0:LIVING 8.51 0:DiseaseFree 8.51 -TCGA-A1-A0SF 0:LIVING 48.06 0:DiseaseFree 48.06 -TCGA-A1-A0SG 0:LIVING 14.23 0:DiseaseFree 14.23 -TCGA-A1-A0SI 0:LIVING 20.83 0:DiseaseFree 20.83 -TCGA-A1-A0SN 0:LIVING 39.29 0:DiseaseFree 39.29 -TCGA-A1-A0SQ 0:LIVING 18.17 0:DiseaseFree 18.17 -TCGA-A2-A1FV 0:LIVING 15.11 0:DiseaseFree 15.11 -TCGA-A2-A1FW 0:LIVING 7.26 0:DiseaseFree 7.26 -TCGA-A2-A1FX 0:LIVING 30.72 0:DiseaseFree 30.72 -TCGA-A2-A1FZ 0:LIVING 13.44 0:DiseaseFree 13.44 -TCGA-A2-A1G0 0:LIVING 12.48 0:DiseaseFree 12.48 -TCGA-A2-A1G1 0:LIVING 12.19 0:DiseaseFree 12.19 -TCGA-A2-A1G4 0:LIVING 12.22 0:DiseaseFree 12.22 -TCGA-A2-A1G6 0:LIVING 4.34 0:DiseaseFree 4.34 -TCGA-A2-A259 0:LIVING 42.22 0:DiseaseFree 42.22 -TCGA-A2-A25A 0:LIVING 97.51 0:DiseaseFree 97.51 -TCGA-A2-A25B 0:LIVING 8.48 0:DiseaseFree 8.48 -TCGA-A2-A25C 0:LIVING 9.36 0:DiseaseFree 9.36 -TCGA-A2-A25D 0:LIVING 7.98 0:DiseaseFree 7.98 -TCGA-A2-A25E 0:LIVING 82.49 0:DiseaseFree 82.49 -TCGA-A2-A25F 0:LIVING 3.71 0:DiseaseFree 3.71 -TCGA-A7-A26F 0:LIVING 8.44 0:DiseaseFree 8.44 -TCGA-A7-A26G 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-A7-A26H 0:LIVING 2.1 0:DiseaseFree 2.1 -TCGA-A7-A26I 0:LIVING 4.01 0:DiseaseFree 4.01 -TCGA-A7-A26J 0:LIVING 2.2 1:Recurred/Progressed NA -TCGA-A8-A08S 0:LIVING 19.05 0:DiseaseFree 19.05 -TCGA-A8-A09E 0:LIVING 30.95 0:DiseaseFree 30.95 -TCGA-A8-A09K 0:LIVING 29.93 0:DiseaseFree 29.93 -TCGA-AC-A23C 0:LIVING 0.95 0:DiseaseFree 0.95 -TCGA-AC-A23E 0:LIVING 2.37 0:DiseaseFree 2.37 -TCGA-AC-A23H 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-AO-A1KR 0:LIVING 70.31 0:DiseaseFree 70.31 -TCGA-AQ-A1H2 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-AQ-A1H3 0:LIVING 4.53 0:DiseaseFree 4.53 -TCGA-AR-A24H 0:LIVING 109.5 0:DiseaseFree 109.5 -TCGA-AR-A24K 0:LIVING 50.86 0:DiseaseFree 50.86 -TCGA-AR-A24L 0:LIVING 72.97 0:DiseaseFree 72.97 -TCGA-AR-A24M 0:LIVING 65.38 0:DiseaseFree 65.38 -TCGA-AR-A24N 0:LIVING 68.14 0:DiseaseFree 68.14 -TCGA-AR-A24O 0:LIVING 65.61 0:DiseaseFree 65.61 -TCGA-AR-A24P 0:LIVING 0.85 0:DiseaseFree 0.85 -TCGA-AR-A24Q 0:LIVING 65.97 0:DiseaseFree 65.97 -TCGA-AR-A24R 0:LIVING 57.33 0:DiseaseFree 57.33 -TCGA-AR-A24S 0:LIVING 62.03 0:DiseaseFree 62.03 -TCGA-AR-A24T 0:LIVING 53.22 0:DiseaseFree 53.22 -TCGA-AR-A24U 0:LIVING 53.32 0:DiseaseFree 53.32 -TCGA-AR-A24V 0:LIVING 54.14 0:DiseaseFree 54.14 -TCGA-AR-A24X 0:LIVING 48.13 0:DiseaseFree 48.13 -TCGA-AR-A24Z 0:LIVING 51.71 0:DiseaseFree 51.71 -TCGA-AR-A250 0:LIVING 56.08 0:DiseaseFree 56.08 -TCGA-AR-A251 0:LIVING 45.11 0:DiseaseFree 45.11 -TCGA-AR-A252 0:LIVING 40.61 0:DiseaseFree 40.61 -TCGA-AR-A254 0:LIVING 39.82 0:DiseaseFree 39.82 -TCGA-AR-A255 0:LIVING 34.76 0:DiseaseFree 34.76 -TCGA-BH-A0B2 0:LIVING 40.8 0:DiseaseFree 40.8 -TCGA-BH-A0DV 0:LIVING 45.14 0:DiseaseFree 45.14 -TCGA-BH-A201 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-BH-A202 0:LIVING 0.72 0:DiseaseFree 0.72 -TCGA-BH-A28Q NA NA NA NA -TCGA-C8-A1HE 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A1HJ 0:LIVING 0.16 0:DiseaseFree 0.16 -TCGA-C8-A1HK 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A1HO 0:LIVING 0 0:DiseaseFree 0 -TCGA-C8-A26V 0:LIVING 0.3 0:DiseaseFree 0.3 -TCGA-C8-A26W 0:LIVING 0.23 0:DiseaseFree 0.23 -TCGA-C8-A26X 0:LIVING 0.36 0:DiseaseFree 0.36 -TCGA-C8-A26Y 0:LIVING 0.43 0:DiseaseFree 0.43 -TCGA-C8-A26Z 0:LIVING 0.13 0:DiseaseFree 0.13 -TCGA-C8-A273 0:LIVING 0.2 0:DiseaseFree 0.2 -TCGA-C8-A274 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A275 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A278 0:LIVING 0.03 0:DiseaseFree 0.03 -TCGA-C8-A27A 0:LIVING 12.19 0:DiseaseFree 12.19 -TCGA-C8-A27B 0:LIVING 0.99 0:DiseaseFree 0.99 -TCGA-D8-A146 0:LIVING 11.3 0:DiseaseFree 11.3 -TCGA-D8-A1J9 0:LIVING 8.15 0:DiseaseFree 8.15 -TCGA-D8-A1JA 0:LIVING 0.59 0:DiseaseFree 0.59 -TCGA-D8-A1JB 0:LIVING 0 0:DiseaseFree 0 -TCGA-D8-A1JC 0:LIVING 5.85 0:DiseaseFree 5.85 -TCGA-D8-A1JD 0:LIVING 8.97 0:DiseaseFree 8.97 -TCGA-D8-A1JE 0:LIVING 1.87 0:DiseaseFree 1.87 -TCGA-D8-A1JI 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-D8-A1JJ 0:LIVING 9 0:DiseaseFree 9 -TCGA-D8-A1JK 0:LIVING 3.58 0:DiseaseFree 3.58 -TCGA-D8-A1JL 0:LIVING 8.71 0:DiseaseFree 8.71 -TCGA-D8-A1JM 0:LIVING 7.82 0:DiseaseFree 7.82 -TCGA-D8-A1JN 0:LIVING 7.13 0:DiseaseFree 7.13 -TCGA-D8-A1JP 0:LIVING 5.49 0:DiseaseFree 5.49 -TCGA-D8-A1X5 0:LIVING 5.62 0:DiseaseFree 5.62 -TCGA-D8-A1X6 0:LIVING 7.75 0:DiseaseFree 7.75 -TCGA-D8-A1X7 0:LIVING 2.79 0:DiseaseFree 2.79 -TCGA-D8-A1X8 0:LIVING 8.94 0:DiseaseFree 8.94 -TCGA-D8-A1X9 0:LIVING 12.48 0:DiseaseFree 12.48 -TCGA-D8-A1XA 0:LIVING 9 0:DiseaseFree 9 -TCGA-D8-A1XB 0:LIVING 6.6 0:DiseaseFree 6.6 -TCGA-D8-A1XC 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-D8-A1XD 0:LIVING 5.09 0:DiseaseFree 5.09 -TCGA-D8-A1XF 0:LIVING 6.47 0:DiseaseFree 6.47 -TCGA-D8-A1XG 0:LIVING 6.44 0:DiseaseFree 6.44 -TCGA-D8-A1XJ 0:LIVING 11.56 0:DiseaseFree 11.56 -TCGA-D8-A1XK 0:LIVING 10.71 0:DiseaseFree 10.71 -TCGA-D8-A1XL 0:LIVING 10.48 0:DiseaseFree 10.48 -TCGA-D8-A1XM 0:LIVING 7.16 0:DiseaseFree 7.16 -TCGA-D8-A1XQ 0:LIVING 5.82 0:DiseaseFree 5.82 -TCGA-D8-A1XR 0:LIVING 5.52 0:DiseaseFree 5.52 -TCGA-D8-A1XU 0:LIVING 4.9 0:DiseaseFree 4.9 -TCGA-D8-A1XV 0:LIVING 4.8 0:DiseaseFree 4.8 -TCGA-D8-A1XW 0:LIVING 3.84 0:DiseaseFree 3.84 -TCGA-D8-A1XY 0:LIVING 2.66 0:DiseaseFree 2.66 -TCGA-D8-A1XZ 0:LIVING 3.94 0:DiseaseFree 3.94 -TCGA-D8-A1Y0 0:LIVING 5.45 0:DiseaseFree 5.45 -TCGA-D8-A1Y1 0:LIVING 3.78 0:DiseaseFree 3.78 -TCGA-D8-A1Y2 0:LIVING 2.37 0:DiseaseFree 2.37 -TCGA-D8-A1Y3 0:LIVING 4.07 0:DiseaseFree 4.07 -TCGA-D8-A27E 0:LIVING 5.98 0:DiseaseFree 5.98 -TCGA-D8-A27F 0:LIVING 7.46 0:DiseaseFree 7.46 -TCGA-D8-A27G 0:LIVING 6.87 0:DiseaseFree 6.87 -TCGA-D8-A27H 0:LIVING 4.6 0:DiseaseFree 4.6 -TCGA-D8-A27I 0:LIVING 6.08 0:DiseaseFree 6.08 -TCGA-D8-A27K 0:LIVING 3.88 0:DiseaseFree 3.88 -TCGA-D8-A27L 0:LIVING 4.11 0:DiseaseFree 4.11 -TCGA-D8-A27M 0:LIVING 4.73 0:DiseaseFree 4.73 -TCGA-D8-A27N 0:LIVING 4.76 0:DiseaseFree 4.76 -TCGA-D8-A27P 0:LIVING 0.72 0:DiseaseFree 0.72 -TCGA-D8-A27R 0:LIVING 2.96 0:DiseaseFree 2.96 -TCGA-D8-A27T 0:LIVING 4.44 0:DiseaseFree 4.44 -TCGA-D8-A27V 0:LIVING 2.4 0:DiseaseFree 2.4 -TCGA-D8-A27W 0:LIVING 0.49 0:DiseaseFree 0.49 -TCGA-E2-A1IE 0:LIVING 32.29 0:DiseaseFree 32.29 -TCGA-E2-A1IF 0:LIVING 31.41 0:DiseaseFree 31.41 -TCGA-E2-A1IG 0:LIVING 24.8 0:DiseaseFree 24.8 -TCGA-E2-A1IH 0:LIVING 21.62 0:DiseaseFree 21.62 -TCGA-E2-A1II 0:LIVING 27.93 0:DiseaseFree 27.93 -TCGA-E2-A1IJ 0:LIVING 23.82 0:DiseaseFree 23.82 -TCGA-E2-A1IK 0:LIVING 17.02 0:DiseaseFree 17.02 -TCGA-E2-A1IL 0:LIVING 0.46 0:DiseaseFree 0.46 -TCGA-E2-A1IN 0:LIVING 12.88 0:DiseaseFree 12.88 -TCGA-E2-A1IO 0:LIVING 14.72 0:DiseaseFree 14.72 -TCGA-E2-A1IP 0:LIVING 14.03 0:DiseaseFree 14.03 -TCGA-E2-A1IU 0:LIVING 4.17 0:DiseaseFree 4.17 -TCGA-E2-A1L6 0:LIVING 43.1 0:DiseaseFree 43.1 -TCGA-E2-A1L7 0:LIVING 20.8 0:DiseaseFree 20.8 -TCGA-E2-A1L8 0:LIVING 33.35 0:DiseaseFree 33.35 -TCGA-E2-A1L9 0:LIVING 12.75 0:DiseaseFree 12.75 -TCGA-E2-A1LA 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-E2-A1LB 0:LIVING 31.93 0:DiseaseFree 31.93 -TCGA-E2-A1LG 0:LIVING 11.5 0:DiseaseFree 11.5 -TCGA-E2-A1LH 0:LIVING 94.45 0:DiseaseFree 94.45 -TCGA-E2-A1LI 0:LIVING 90.35 0:DiseaseFree 90.35 -TCGA-E2-A1LL 0:LIVING 33.31 0:DiseaseFree 33.31 -TCGA-E2-A1LS 0:LIVING 7.85 0:DiseaseFree 7.85 -TCGA-E9-A1N3 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N4 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N5 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N6 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N8 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1N9 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NA 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NC 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1ND 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NE 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NF 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NG 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NH 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1NI 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1QZ 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1R0 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A1R2 0:LIVING 0.62 0:DiseaseFree 0.62 -TCGA-E9-A1R3 0:LIVING 2.1 0:DiseaseFree 2.1 -TCGA-E9-A1R4 0:LIVING 0.95 0:DiseaseFree 0.95 -TCGA-E9-A1R5 0:LIVING 1.38 0:DiseaseFree 1.38 -TCGA-E9-A1R6 0:LIVING 2.76 0:DiseaseFree 2.76 -TCGA-E9-A1R7 0:LIVING 1.12 0:DiseaseFree 1.12 -TCGA-E9-A1RA 0:LIVING 0.95 0:DiseaseFree 0.95 -TCGA-E9-A1RB 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-E9-A1RC 0:LIVING 40.34 0:DiseaseFree 40.34 -TCGA-E9-A1RD 0:LIVING 0.66 0:DiseaseFree 0.66 -TCGA-E9-A1RE 0:LIVING 1.54 0:DiseaseFree 1.54 -TCGA-E9-A1RF 0:LIVING 1.25 0:DiseaseFree 1.25 -TCGA-E9-A1RG 0:LIVING 1.15 0:DiseaseFree 1.15 -TCGA-E9-A1RH 0:LIVING 0.46 0:DiseaseFree 0.46 -TCGA-E9-A1RI 0:LIVING 1.58 0:DiseaseFree 1.58 -TCGA-E9-A226 0:LIVING 0.53 0:DiseaseFree 0.53 -TCGA-E9-A227 0:LIVING 0.79 0:DiseaseFree 0.79 -TCGA-E9-A228 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A229 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22A 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22B 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22D 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22E 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22G 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A22H 0:LIVING 0 0:DiseaseFree 0 -TCGA-E9-A243 0:LIVING 1.41 0:DiseaseFree 1.41 -TCGA-E9-A244 0:LIVING 0.66 0:DiseaseFree 0.66 -TCGA-E9-A245 0:LIVING 0.82 0:DiseaseFree 0.82 -TCGA-E9-A247 0:LIVING 0.39 0:DiseaseFree 0.39 -TCGA-E9-A248 0:LIVING 0.69 0:DiseaseFree 0.69 -TCGA-E9-A249 0:LIVING 0.92 0:DiseaseFree 0.92 -TCGA-E9-A24A 0:LIVING 0.33 0:DiseaseFree 0.33 -TCGA-EW-A1IW 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-EW-A1IX 0:LIVING 35.55 0:DiseaseFree 35.55 -TCGA-EW-A1IY 0:LIVING 8.48 0:DiseaseFree 8.48 -TCGA-EW-A1IZ 0:LIVING 8.54 0:DiseaseFree 8.54 -TCGA-EW-A1J1 0:LIVING 9.26 0:DiseaseFree 9.26 -TCGA-EW-A1J2 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1J3 0:LIVING 8.28 0:DiseaseFree 8.28 -TCGA-EW-A1J5 0:LIVING 7.46 0:DiseaseFree 7.46 -TCGA-EW-A1J6 0:LIVING 19.55 0:DiseaseFree 19.55 -TCGA-EW-A1OV 0:LIVING 17.15 0:DiseaseFree 17.15 -TCGA-EW-A1OW 0:LIVING 15.21 0:DiseaseFree 15.21 -TCGA-EW-A1OX 0:LIVING 18.46 0:DiseaseFree 18.46 -TCGA-EW-A1OY 0:LIVING 19.48 0:DiseaseFree 19.48 -TCGA-EW-A1OZ 0:LIVING 30.91 0:DiseaseFree 30.91 -TCGA-EW-A1P0 0:LIVING 36.83 1:Recurred/Progressed NA -TCGA-EW-A1P1 0:LIVING 30.19 1:Recurred/Progressed NA -TCGA-EW-A1P3 0:LIVING 32.43 0:DiseaseFree 32.43 -TCGA-EW-A1P4 0:LIVING 16.46 0:DiseaseFree 16.46 -TCGA-EW-A1P5 0:LIVING 11.99 0:DiseaseFree 11.99 -TCGA-EW-A1P6 0:LIVING 10.25 0:DiseaseFree 10.25 -TCGA-EW-A1P7 0:LIVING 20.86 0:DiseaseFree 20.86 -TCGA-EW-A1PA 0:LIVING 8.77 0:DiseaseFree 8.77 -TCGA-EW-A1PB 0:LIVING 19.97 0:DiseaseFree 19.97 -TCGA-EW-A1PD 0:LIVING 5.72 0:DiseaseFree 5.72 -TCGA-EW-A1PE 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1PF 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A1PG 0:LIVING 28.75 0:DiseaseFree 28.75 -TCGA-EW-A1PH 0:LIVING 4.57 0:DiseaseFree 4.57 -TCGA-EW-A2FS NA NA NA NA -TCGA-EW-A2FV NA NA NA NA -TCGA-EW-A2FW NA NA NA NA -TCGA-GM-A2DA 0:LIVING 194.13 1:Recurred/Progressed NA -TCGA-GM-A2DB 0:LIVING 53.06 0:DiseaseFree 53.06 -TCGA-GM-A2DC 0:LIVING 53.49 0:DiseaseFree 53.49 -TCGA-GM-A2DD 0:LIVING 43.01 0:DiseaseFree 43.01 -TCGA-GM-A2DF 0:LIVING 42.68 0:DiseaseFree 42.68 -TCGA-GM-A2DH 0:LIVING 42.25 0:DiseaseFree 42.25 -TCGA-GM-A2DI 0:LIVING 61.86 0:DiseaseFree 61.86 -TCGA-GM-A2DK 0:LIVING 62.29 0:DiseaseFree 62.29 -TCGA-GM-A2DL 0:LIVING 90.74 0:DiseaseFree 90.74 -TCGA-GM-A2DM 0:LIVING 76.58 0:DiseaseFree 76.58 -TCGA-GM-A2DN 0:LIVING 77.27 0:DiseaseFree 77.27 -TCGA-GM-A2DO 0:LIVING 53.29 0:DiseaseFree 53.29 -TCGA-AR-A24W NA NA NA NA -TCGA-AC-A2B8 NA NA NA NA -TCGA-AC-A2FF NA NA NA NA -TCGA-AC-A2FB NA NA NA NA -TCGA-AC-A2FG NA NA NA NA -TCGA-GI-A2C8 NA NA NA NA -TCGA-E9-A295 NA NA NA NA diff --git a/core/src/test/scripts/test_data/study_wr_clin/data_samples.txt b/core/src/test/scripts/test_data/study_wr_clin/data_samples.txt deleted file mode 100644 index 17140a1b567..00000000000 --- a/core/src/test/scripts/test_data/study_wr_clin/data_samples.txt +++ /dev/null @@ -1,833 +0,0 @@ -## -## -#Patient Identifier Sample Identifier Subtype -#Patient identifier Sample identifier Subtype description -#STRING STRING STRING -#1 1 1 -PATIENT_ID SAMPLE_ID SUBTYPE -TCGA-A2-A04P TCGA-A2-A04P-01 basal-like -TCGA-A1-A0SK TCGA-A1-A0SK-01 basal-like -TCGA-A2-A0CM TCGA-A2-A0CM-01 basal-like -TCGA-AR-A1AR TCGA-AR-A1AR-01 basal-like -TCGA-B6-A0WX TCGA-B6-A0WX-01 basal-like -TCGA-BH-A1F0 TCGA-BH-A1F0-01 basal-like -TCGA-B6-A0I6 TCGA-B6-A0I6-01 NA -TCGA-BH-A18V TCGA-BH-A18V-01 basal-like -TCGA-BH-A18Q TCGA-BH-A18Q-01 basal-like -TCGA-BH-A18K TCGA-BH-A18K-01 basal-like -TCGA-BH-A0HL TCGA-BH-A0HL-01 NA -TCGA-BH-A0E0 TCGA-BH-A0E0-01 basal-like -TCGA-BH-A0RX TCGA-BH-A0RX-01 basal-like -TCGA-A7-A13D TCGA-A7-A13D-01 basal-like -TCGA-BH-A0E6 TCGA-BH-A0E6-01 basal-like -TCGA-AO-A0J4 TCGA-AO-A0J4-01 basal-like -TCGA-A7-A0CE TCGA-A7-A0CE-01 basal-like -TCGA-A7-A13E TCGA-A7-A13E-01 NA -TCGA-A7-A0DA TCGA-A7-A0DA-01 basal-like -TCGA-D8-A142 TCGA-D8-A142-01 basal-like -TCGA-D8-A143 TCGA-D8-A143-01 NA -TCGA-AQ-A04J TCGA-AQ-A04J-01 basal-like -TCGA-BH-A0HN TCGA-BH-A0HN-01 NA -TCGA-A2-A0T0 TCGA-A2-A0T0-01 basal-like -TCGA-A2-A0YE TCGA-A2-A0YE-01 NA -TCGA-A2-A0YJ TCGA-A2-A0YJ-01 NA -TCGA-A2-A0D0 TCGA-A2-A0D0-01 basal-like -TCGA-A2-A04U TCGA-A2-A04U-01 NA -TCGA-AO-A0J6 TCGA-AO-A0J6-01 basal-like -TCGA-A2-A0YM TCGA-A2-A0YM-01 basal-like -TCGA-A2-A0D2 TCGA-A2-A0D2-01 basal-like -TCGA-BH-A0B3 TCGA-BH-A0B3-01 basal-like -TCGA-A2-A04Q TCGA-A2-A04Q-01 basal-like -TCGA-A2-A0SX TCGA-A2-A0SX-01 basal-like -TCGA-AO-A0JL TCGA-AO-A0JL-01 basal-like -TCGA-AO-A12F TCGA-AO-A12F-01 basal-like -TCGA-BH-A0B9 TCGA-BH-A0B9-01 basal-like -TCGA-A2-A04T TCGA-A2-A04T-01 NA -TCGA-B6-A0RT TCGA-B6-A0RT-01 basal-like -TCGA-AO-A128 TCGA-AO-A128-01 NA -TCGA-AO-A129 TCGA-AO-A129-01 basal-like -TCGA-AO-A124 TCGA-AO-A124-01 basal-like -TCGA-B6-A0RU TCGA-B6-A0RU-01 basal-like -TCGA-B6-A0IQ TCGA-B6-A0IQ-01 basal-like -TCGA-B6-A0I2 TCGA-B6-A0I2-01 basal-like -TCGA-B6-A0IJ TCGA-B6-A0IJ-01 basal-like -TCGA-B6-A0X1 TCGA-B6-A0X1-01 NA -TCGA-B6-A0RE TCGA-B6-A0RE-01 basal-like -TCGA-A2-A0ST TCGA-A2-A0ST-01 basal-like -TCGA-AR-A0TP TCGA-AR-A0TP-01 basal-like -TCGA-A1-A0SO TCGA-A1-A0SO-01 basal-like -TCGA-A8-A07C TCGA-A8-A07C-01 basal-like -TCGA-A8-A07O TCGA-A8-A07O-01 basal-like -TCGA-A8-A07R TCGA-A8-A07R-01 basal-like -TCGA-A8-A07U TCGA-A8-A07U-01 basal-like -TCGA-A8-A08H TCGA-A8-A08H-01 basal-like -TCGA-A8-A08R TCGA-A8-A08R-01 basal-like -TCGA-AN-A04D TCGA-AN-A04D-01 basal-like -TCGA-AN-A0AL TCGA-AN-A0AL-01 basal-like -TCGA-AN-A0AR TCGA-AN-A0AR-01 basal-like -TCGA-AN-A0AT TCGA-AN-A0AT-01 NA -TCGA-AN-A0FJ TCGA-AN-A0FJ-01 basal-like -TCGA-AN-A0FL TCGA-AN-A0FL-01 basal-like -TCGA-AN-A0FX TCGA-AN-A0FX-01 basal-like -TCGA-AN-A0G0 TCGA-AN-A0G0-01 NA -TCGA-AN-A0XU TCGA-AN-A0XU-01 basal-like -TCGA-AR-A0TS TCGA-AR-A0TS-01 basal-like -TCGA-AR-A0TU TCGA-AR-A0TU-01 NA -TCGA-AR-A0U0 TCGA-AR-A0U0-01 NA -TCGA-AR-A0U1 TCGA-AR-A0U1-01 basal-like -TCGA-AR-A0U4 TCGA-AR-A0U4-01 basal-like -TCGA-AR-A1AH TCGA-AR-A1AH-01 basal-like -TCGA-AR-A1AI TCGA-AR-A1AI-01 basal-like -TCGA-AR-A1AJ TCGA-AR-A1AJ-01 basal-like -TCGA-AR-A1AQ TCGA-AR-A1AQ-01 basal-like -TCGA-AR-A1AY TCGA-AR-A1AY-01 basal-like -TCGA-BH-A0AV TCGA-BH-A0AV-01 basal-like -TCGA-BH-A0BG TCGA-BH-A0BG-01 basal-like -TCGA-BH-A0BL TCGA-BH-A0BL-01 basal-like -TCGA-BH-A0BW TCGA-BH-A0BW-01 basal-like -TCGA-BH-A0DL TCGA-BH-A0DL-01 basal-like -TCGA-BH-A0WA TCGA-BH-A0WA-01 basal-like -TCGA-BH-A18G TCGA-BH-A18G-01 NA -TCGA-C8-A12K TCGA-C8-A12K-01 basal-like -TCGA-C8-A12V TCGA-C8-A12V-01 basal-like -TCGA-C8-A131 TCGA-C8-A131-01 basal-like -TCGA-C8-A134 TCGA-C8-A134-01 basal-like -TCGA-D8-A147 TCGA-D8-A147-01 basal-like -TCGA-E2-A14N TCGA-E2-A14N-01 basal-like -TCGA-E2-A14R TCGA-E2-A14R-01 basal-like -TCGA-E2-A14X TCGA-E2-A14X-01 basal-like -TCGA-E2-A14Y TCGA-E2-A14Y-01 basal-like -TCGA-E2-A150 TCGA-E2-A150-01 basal-like -TCGA-E2-A158 TCGA-E2-A158-01 basal-like -TCGA-E2-A159 TCGA-E2-A159-01 basal-like -TCGA-E2-A1AZ TCGA-E2-A1AZ-01 NA -TCGA-E2-A1B5 TCGA-E2-A1B5-01 basal-like -TCGA-A8-A08L TCGA-A8-A08L-01 Her2 enriched -TCGA-BH-A1EV TCGA-BH-A1EV-01 Her2 enriched -TCGA-B6-A0I9 TCGA-B6-A0I9-01 Her2 enriched -TCGA-A8-A09X TCGA-A8-A09X-01 Her2 enriched -TCGA-B6-A0IK TCGA-B6-A0IK-01 Her2 enriched -TCGA-BH-A18P TCGA-BH-A18P-01 Her2 enriched -TCGA-A8-A08J TCGA-A8-A08J-01 Her2 enriched -TCGA-BH-A18R TCGA-BH-A18R-01 Her2 enriched -TCGA-AR-A1AT TCGA-AR-A1AT-01 Her2 enriched -TCGA-B6-A0RS TCGA-B6-A0RS-01 Her2 enriched -TCGA-BH-A0DZ TCGA-BH-A0DZ-01 Her2 enriched -TCGA-A2-A0T1 TCGA-A2-A0T1-01 Her2 enriched -TCGA-AO-A0J2 TCGA-AO-A0J2-01 Her2 enriched -TCGA-BH-A0AW TCGA-BH-A0AW-01 Her2 enriched -TCGA-BH-A0EE TCGA-BH-A0EE-01 Her2 enriched -TCGA-A2-A0D1 TCGA-A2-A0D1-01 Her2 enriched -TCGA-AO-A03N TCGA-AO-A03N-01 Her2 enriched -TCGA-A2-A0CY TCGA-A2-A0CY-01 Her2 enriched -TCGA-A2-A04X TCGA-A2-A04X-01 Her2 enriched -TCGA-A2-A0CX TCGA-A2-A0CX-01 Her2 enriched -TCGA-A2-A04W TCGA-A2-A04W-01 Her2 enriched -TCGA-AO-A12D TCGA-AO-A12D-01 Her2 enriched -TCGA-A2-A0CL TCGA-A2-A0CL-01 Her2 enriched -TCGA-AO-A0JE TCGA-AO-A0JE-01 Her2 enriched -TCGA-A2-A0EQ TCGA-A2-A0EQ-01 Her2 enriched -TCGA-AO-A03L TCGA-AO-A03L-01 Her2 enriched -TCGA-B6-A0RH TCGA-B6-A0RH-01 Her2 enriched -TCGA-A8-A075 TCGA-A8-A075-01 Her2 enriched -TCGA-A8-A076 TCGA-A8-A076-01 Her2 enriched -TCGA-A8-A07B TCGA-A8-A07B-01 Her2 enriched -TCGA-A8-A07I TCGA-A8-A07I-01 Her2 enriched -TCGA-A8-A081 TCGA-A8-A081-01 Her2 enriched -TCGA-A8-A08B TCGA-A8-A08B-01 Her2 enriched -TCGA-A8-A08X TCGA-A8-A08X-01 Her2 enriched -TCGA-A8-A092 TCGA-A8-A092-01 Her2 enriched -TCGA-A8-A094 TCGA-A8-A094-01 Her2 enriched -TCGA-A8-A09G TCGA-A8-A09G-01 Her2 enriched -TCGA-A8-A0A7 TCGA-A8-A0A7-01 Her2 enriched -TCGA-AN-A04C TCGA-AN-A04C-01 Her2 enriched -TCGA-AN-A0FV TCGA-AN-A0FV-01 Her2 enriched -TCGA-AR-A0TX TCGA-AR-A0TX-01 Her2 enriched -TCGA-BH-A0B7 TCGA-BH-A0B7-01 Her2 enriched -TCGA-BH-A0HY TCGA-BH-A0HY-01 Her2 enriched -TCGA-C8-A12L TCGA-C8-A12L-01 Her2 enriched -TCGA-C8-A12P TCGA-C8-A12P-01 Her2 enriched -TCGA-C8-A12Q TCGA-C8-A12Q-01 Her2 enriched -TCGA-C8-A12T TCGA-C8-A12T-01 Her2 enriched -TCGA-C8-A12Z TCGA-C8-A12Z-01 Her2 enriched -TCGA-C8-A130 TCGA-C8-A130-01 Her2 enriched -TCGA-C8-A135 TCGA-C8-A135-01 Her2 enriched -TCGA-C8-A137 TCGA-C8-A137-01 Her2 enriched -TCGA-C8-A138 TCGA-C8-A138-01 Her2 enriched -TCGA-C8-A1HF TCGA-C8-A1HF-01 Her2 enriched -TCGA-D8-A13Z TCGA-D8-A13Z-01 Her2 enriched -TCGA-E2-A14P TCGA-E2-A14P-01 Her2 enriched -TCGA-E2-A14V TCGA-E2-A14V-01 Her2 enriched -TCGA-E2-A152 TCGA-E2-A152-01 Her2 enriched -TCGA-E2-A1B0 TCGA-E2-A1B0-01 Her2 enriched -TCGA-A2-A0CU TCGA-A2-A0CU-01 Luminal A -TCGA-AR-A0TR TCGA-AR-A0TR-01 Luminal A -TCGA-BH-A18T TCGA-BH-A18T-01 Luminal A -TCGA-B6-A0I8 TCGA-B6-A0I8-01 Luminal A -TCGA-B6-A0X4 TCGA-B6-A0X4-01 Luminal A -TCGA-A8-A06U TCGA-A8-A06U-01 Luminal A -TCGA-BH-A0EA TCGA-BH-A0EA-01 Luminal A -TCGA-BH-A18N TCGA-BH-A18N-01 Luminal A -TCGA-BH-A1EU TCGA-BH-A1EU-01 Luminal A -TCGA-B6-A0X7 TCGA-B6-A0X7-01 Luminal A -TCGA-A2-A04V TCGA-A2-A04V-01 Luminal A -TCGA-BH-A18S TCGA-BH-A18S-01 Luminal A -TCGA-BH-A18M TCGA-BH-A18M-01 Luminal A -TCGA-B6-A0RM TCGA-B6-A0RM-01 Luminal A -TCGA-BH-A1ET TCGA-BH-A1ET-01 Luminal A -TCGA-B6-A0IN TCGA-B6-A0IN-01 Luminal A -TCGA-BH-A1EO TCGA-BH-A1EO-01 Luminal A -TCGA-B6-A0WS TCGA-B6-A0WS-01 Luminal A -TCGA-B6-A0RP TCGA-B6-A0RP-01 Luminal A -TCGA-B6-A0IH TCGA-B6-A0IH-01 Luminal A -TCGA-B6-A0WY TCGA-B6-A0WY-01 Luminal A -TCGA-BH-A1ES TCGA-BH-A1ES-01 Luminal A -TCGA-B6-A0X0 TCGA-B6-A0X0-01 Luminal A -TCGA-B6-A0RQ TCGA-B6-A0RQ-01 Luminal A -TCGA-B6-A0IG TCGA-B6-A0IG-01 Luminal A -TCGA-BH-A0HO TCGA-BH-A0HO-01 Luminal A -TCGA-BH-A0DS TCGA-BH-A0DS-01 Luminal A -TCGA-BH-A0DQ TCGA-BH-A0DQ-01 Luminal A -TCGA-BH-A0HK TCGA-BH-A0HK-01 Luminal A -TCGA-A7-A0CG TCGA-A7-A0CG-01 Luminal A -TCGA-A7-A0CH TCGA-A7-A0CH-01 Luminal A -TCGA-A7-A0DB TCGA-A7-A0DB-01 Luminal A -TCGA-A7-A0D9 TCGA-A7-A0D9-01 Luminal A -TCGA-AO-A0J8 TCGA-AO-A0J8-01 Luminal A -TCGA-BH-A0GZ TCGA-BH-A0GZ-01 Luminal A -TCGA-AO-A0JA TCGA-AO-A0JA-01 Luminal A -TCGA-AO-A0JF TCGA-AO-A0JF-01 Luminal A -TCGA-A7-A0CD TCGA-A7-A0CD-01 Luminal A -TCGA-D8-A145 TCGA-D8-A145-01 Luminal A -TCGA-BH-A0HP TCGA-BH-A0HP-01 Luminal A -TCGA-BH-A0DK TCGA-BH-A0DK-01 Luminal A -TCGA-BH-A0E2 TCGA-BH-A0E2-01 Luminal A -TCGA-A2-A0YI TCGA-A2-A0YI-01 Luminal A -TCGA-A2-A0YL TCGA-A2-A0YL-01 Luminal A -TCGA-AO-A0JG TCGA-AO-A0JG-01 Luminal A -TCGA-A2-A0YF TCGA-A2-A0YF-01 Luminal A -TCGA-BH-A0DP TCGA-BH-A0DP-01 Luminal A -TCGA-BH-A0E1 TCGA-BH-A0E1-01 Luminal A -TCGA-A2-A0T5 TCGA-A2-A0T5-01 Luminal A -TCGA-A2-A0T6 TCGA-A2-A0T6-01 Luminal A -TCGA-BH-A0HI TCGA-BH-A0HI-01 Luminal A -TCGA-A2-A0T7 TCGA-A2-A0T7-01 Luminal A -TCGA-BH-A0BJ TCGA-BH-A0BJ-01 Luminal A -TCGA-BH-A0H7 TCGA-BH-A0H7-01 Luminal A -TCGA-BH-A0HF TCGA-BH-A0HF-01 Luminal A -TCGA-BH-A0EB TCGA-BH-A0EB-01 Luminal A -TCGA-BH-A0H6 TCGA-BH-A0H6-01 Luminal A -TCGA-A2-A0YD TCGA-A2-A0YD-01 Luminal A -TCGA-BH-A0HB TCGA-BH-A0HB-01 Luminal A -TCGA-BH-A0HX TCGA-BH-A0HX-01 Luminal A -TCGA-AO-A12H TCGA-AO-A12H-01 Luminal A -TCGA-E2-A10E TCGA-E2-A10E-01 Luminal A -TCGA-A2-A0D3 TCGA-A2-A0D3-01 Luminal A -TCGA-E2-A10F TCGA-E2-A10F-01 Luminal A -TCGA-AO-A03V TCGA-AO-A03V-01 Luminal A -TCGA-A2-A0EW TCGA-A2-A0EW-01 Luminal A -TCGA-BH-A0GY TCGA-BH-A0GY-01 Luminal A -TCGA-A2-A0EV TCGA-A2-A0EV-01 Luminal A -TCGA-BH-A0BC TCGA-BH-A0BC-01 Luminal A -TCGA-A2-A0YC TCGA-A2-A0YC-01 Luminal A -TCGA-A2-A0EU TCGA-A2-A0EU-01 Luminal A -TCGA-A2-A0ET TCGA-A2-A0ET-01 Luminal A -TCGA-A2-A04Y TCGA-A2-A04Y-01 Luminal A -TCGA-BH-A0HQ TCGA-BH-A0HQ-01 Luminal A -TCGA-A2-A0ES TCGA-A2-A0ES-01 Luminal A -TCGA-BH-A0BA TCGA-BH-A0BA-01 Luminal A -TCGA-E2-A10B TCGA-E2-A10B-01 Luminal A -TCGA-BH-A0B1 TCGA-BH-A0B1-01 Luminal A -TCGA-BH-A0DH TCGA-BH-A0DH-01 Luminal A -TCGA-BH-A0B4 TCGA-BH-A0B4-01 Luminal A -TCGA-BH-A0H9 TCGA-BH-A0H9-01 Luminal A -TCGA-AO-A0J9 TCGA-AO-A0J9-01 Luminal A -TCGA-AO-A12G TCGA-AO-A12G-01 Luminal A -TCGA-A2-A0SY TCGA-A2-A0SY-01 Luminal A -TCGA-BH-A0E7 TCGA-BH-A0E7-01 Luminal A -TCGA-AO-A03M TCGA-AO-A03M-01 Luminal A -TCGA-BH-A0BV TCGA-BH-A0BV-01 Luminal A -TCGA-BH-A0B8 TCGA-BH-A0B8-01 Luminal A -TCGA-A2-A0CZ TCGA-A2-A0CZ-01 Luminal A -TCGA-A2-A0SU TCGA-A2-A0SU-01 Luminal A -TCGA-AO-A12E TCGA-AO-A12E-01 Luminal A -TCGA-E2-A106 TCGA-E2-A106-01 Luminal A -TCGA-A2-A0CV TCGA-A2-A0CV-01 Luminal A -TCGA-AO-A12C TCGA-AO-A12C-01 Luminal A -TCGA-B6-A0RG TCGA-B6-A0RG-01 Luminal A -TCGA-A2-A0CS TCGA-A2-A0CS-01 Luminal A -TCGA-A2-A0EO TCGA-A2-A0EO-01 Luminal A -TCGA-A2-A0CQ TCGA-A2-A0CQ-01 Luminal A -TCGA-A2-A0EN TCGA-A2-A0EN-01 Luminal A -TCGA-AO-A12A TCGA-AO-A12A-01 Luminal A -TCGA-A2-A0CP TCGA-A2-A0CP-01 Luminal A -TCGA-AO-A126 TCGA-AO-A126-01 Luminal A -TCGA-AO-A125 TCGA-AO-A125-01 Luminal A -TCGA-A2-A0EM TCGA-A2-A0EM-01 Luminal A -TCGA-A2-A04N TCGA-A2-A04N-01 Luminal A -TCGA-AQ-A04L TCGA-AQ-A04L-01 Luminal A -TCGA-B6-A0IO TCGA-B6-A0IO-01 Luminal A -TCGA-B6-A0IP TCGA-B6-A0IP-01 Luminal A -TCGA-B6-A0WZ TCGA-B6-A0WZ-01 Luminal A -TCGA-B6-A0I5 TCGA-B6-A0I5-01 Luminal A -TCGA-B6-A0RV TCGA-B6-A0RV-01 Luminal A -TCGA-B6-A0RO TCGA-B6-A0RO-01 Luminal A -TCGA-B6-A0RN TCGA-B6-A0RN-01 Luminal A -TCGA-B6-A0WT TCGA-B6-A0WT-01 Luminal A -TCGA-B6-A0IA TCGA-B6-A0IA-01 Luminal A -TCGA-B6-A0RI TCGA-B6-A0RI-01 Luminal A -TCGA-A1-A0SE TCGA-A1-A0SE-01 Luminal A -TCGA-A2-A0EX TCGA-A2-A0EX-01 Luminal A -TCGA-AO-A0JJ TCGA-AO-A0JJ-01 Luminal A -TCGA-E2-A105 TCGA-E2-A105-01 Luminal A -TCGA-A1-A0SD TCGA-A1-A0SD-01 Luminal A -TCGA-A1-A0SH TCGA-A1-A0SH-01 Luminal A -TCGA-A1-A0SJ TCGA-A1-A0SJ-01 Luminal A -TCGA-A8-A06P TCGA-A8-A06P-01 Luminal A -TCGA-A8-A06T TCGA-A8-A06T-01 Luminal A -TCGA-A8-A06Y TCGA-A8-A06Y-01 Luminal A -TCGA-A8-A07E TCGA-A8-A07E-01 Luminal A -TCGA-A8-A07F TCGA-A8-A07F-01 Luminal A -TCGA-A8-A07G TCGA-A8-A07G-01 Luminal A -TCGA-A8-A07J TCGA-A8-A07J-01 Luminal A -TCGA-A8-A07P TCGA-A8-A07P-01 Luminal A -TCGA-A8-A083 TCGA-A8-A083-01 Luminal A -TCGA-A8-A086 TCGA-A8-A086-01 Luminal A -TCGA-A8-A08A TCGA-A8-A08A-01 Luminal A -TCGA-A8-A08C TCGA-A8-A08C-01 Luminal A -TCGA-A8-A08O TCGA-A8-A08O-01 Luminal A -TCGA-A8-A08T TCGA-A8-A08T-01 Luminal A -TCGA-A8-A08Z TCGA-A8-A08Z-01 Luminal A -TCGA-A8-A090 TCGA-A8-A090-01 Luminal A -TCGA-A8-A091 TCGA-A8-A091-01 Luminal A -TCGA-A8-A093 TCGA-A8-A093-01 Luminal A -TCGA-A8-A099 TCGA-A8-A099-01 Luminal A -TCGA-A8-A09A TCGA-A8-A09A-01 Luminal A -TCGA-A8-A09B TCGA-A8-A09B-01 Luminal A -TCGA-A8-A09T TCGA-A8-A09T-01 Luminal A -TCGA-A8-A09V TCGA-A8-A09V-01 Luminal A -TCGA-A8-A0A1 TCGA-A8-A0A1-01 Luminal A -TCGA-A8-A0A2 TCGA-A8-A0A2-01 Luminal A -TCGA-A8-A0A4 TCGA-A8-A0A4-01 Luminal A -TCGA-A8-A0A6 TCGA-A8-A0A6-01 Luminal A -TCGA-A8-A0AD TCGA-A8-A0AD-01 Luminal A -TCGA-AN-A03X TCGA-AN-A03X-01 Luminal A -TCGA-AN-A046 TCGA-AN-A046-01 Luminal A -TCGA-AN-A04A TCGA-AN-A04A-01 Luminal A -TCGA-AN-A0FD TCGA-AN-A0FD-01 Luminal A -TCGA-AN-A0FN TCGA-AN-A0FN-01 Luminal A -TCGA-AN-A0FS TCGA-AN-A0FS-01 Luminal A -TCGA-AN-A0FT TCGA-AN-A0FT-01 Luminal A -TCGA-AN-A0FW TCGA-AN-A0FW-01 Luminal A -TCGA-AN-A0FZ TCGA-AN-A0FZ-01 Luminal A -TCGA-AN-A0XL TCGA-AN-A0XL-01 Luminal A -TCGA-AN-A0XN TCGA-AN-A0XN-01 Luminal A -TCGA-AN-A0XO TCGA-AN-A0XO-01 Luminal A -TCGA-AN-A0XP TCGA-AN-A0XP-01 Luminal A -TCGA-AN-A0XS TCGA-AN-A0XS-01 Luminal A -TCGA-AN-A0XT TCGA-AN-A0XT-01 Luminal A -TCGA-AN-A0XV TCGA-AN-A0XV-01 Luminal A -TCGA-AR-A0TW TCGA-AR-A0TW-01 Luminal A -TCGA-AR-A1AK TCGA-AR-A1AK-01 Luminal A -TCGA-AR-A1AL TCGA-AR-A1AL-01 Luminal A -TCGA-AR-A1AN TCGA-AR-A1AN-01 Luminal A -TCGA-AR-A1AP TCGA-AR-A1AP-01 Luminal A -TCGA-AR-A1AS TCGA-AR-A1AS-01 Luminal A -TCGA-AR-A1AU TCGA-AR-A1AU-01 Luminal A -TCGA-AR-A1AW TCGA-AR-A1AW-01 Luminal A -TCGA-AR-A1AX TCGA-AR-A1AX-01 Luminal A -TCGA-BH-A0AZ TCGA-BH-A0AZ-01 Luminal A -TCGA-BH-A0B0 TCGA-BH-A0B0-01 Luminal A -TCGA-BH-A0BM TCGA-BH-A0BM-01 Luminal A -TCGA-BH-A0BO TCGA-BH-A0BO-01 Luminal A -TCGA-BH-A0BP TCGA-BH-A0BP-01 Luminal A -TCGA-BH-A0BQ TCGA-BH-A0BQ-01 Luminal A -TCGA-BH-A0BR TCGA-BH-A0BR-01 Luminal A -TCGA-BH-A0BS TCGA-BH-A0BS-01 Luminal A -TCGA-BH-A0BT TCGA-BH-A0BT-01 Luminal A -TCGA-BH-A0C1 TCGA-BH-A0C1-01 Luminal A -TCGA-BH-A0DE TCGA-BH-A0DE-01 Luminal A -TCGA-BH-A0DG TCGA-BH-A0DG-01 Luminal A -TCGA-BH-A0DI TCGA-BH-A0DI-01 Luminal A -TCGA-BH-A0DO TCGA-BH-A0DO-01 Luminal A -TCGA-BH-A0DT TCGA-BH-A0DT-01 Luminal A -TCGA-BH-A0DX TCGA-BH-A0DX-01 Luminal A -TCGA-BH-A0E9 TCGA-BH-A0E9-01 Luminal A -TCGA-BH-A0EI TCGA-BH-A0EI-01 Luminal A -TCGA-BH-A0H3 TCGA-BH-A0H3-01 Luminal A -TCGA-BH-A0H5 TCGA-BH-A0H5-01 Luminal A -TCGA-BH-A0HA TCGA-BH-A0HA-01 Luminal A -TCGA-BH-A0W4 TCGA-BH-A0W4-01 Luminal A -TCGA-BH-A0W5 TCGA-BH-A0W5-01 Luminal A -TCGA-BH-A0W7 TCGA-BH-A0W7-01 Luminal A -TCGA-BH-A18H TCGA-BH-A18H-01 Luminal A -TCGA-BH-A18I TCGA-BH-A18I-01 Luminal A -TCGA-C8-A12N TCGA-C8-A12N-01 Luminal A -TCGA-C8-A12O TCGA-C8-A12O-01 Luminal A -TCGA-C8-A12Y TCGA-C8-A12Y-01 Luminal A -TCGA-C8-A132 TCGA-C8-A132-01 Luminal A -TCGA-C8-A133 TCGA-C8-A133-01 Luminal A -TCGA-C8-A1HI TCGA-C8-A1HI-01 Luminal A -TCGA-D8-A141 TCGA-D8-A141-01 Luminal A -TCGA-E2-A14Q TCGA-E2-A14Q-01 Luminal A -TCGA-E2-A14T TCGA-E2-A14T-01 Luminal A -TCGA-E2-A14Z TCGA-E2-A14Z-01 Luminal A -TCGA-E2-A153 TCGA-E2-A153-01 Luminal A -TCGA-E2-A154 TCGA-E2-A154-01 Luminal A -TCGA-E2-A156 TCGA-E2-A156-01 Luminal A -TCGA-E2-A15C TCGA-E2-A15C-01 Luminal A -TCGA-E2-A15D TCGA-E2-A15D-01 Luminal A -TCGA-E2-A15E TCGA-E2-A15E-01 Luminal A -TCGA-E2-A15F TCGA-E2-A15F-01 Luminal A -TCGA-E2-A15G TCGA-E2-A15G-01 Luminal A -TCGA-E2-A15H TCGA-E2-A15H-01 Luminal A -TCGA-E2-A15I TCGA-E2-A15I-01 Luminal A -TCGA-E2-A15J TCGA-E2-A15J-01 Luminal A -TCGA-E2-A15O TCGA-E2-A15O-01 Luminal A -TCGA-E2-A15P TCGA-E2-A15P-01 Luminal A -TCGA-E2-A15R TCGA-E2-A15R-01 Luminal A -TCGA-E2-A1B1 TCGA-E2-A1B1-01 Luminal A -TCGA-E2-A1B4 TCGA-E2-A1B4-01 Luminal A -TCGA-E2-A1B6 TCGA-E2-A1B6-01 Luminal A -TCGA-E2-A1BC TCGA-E2-A1BC-01 Luminal A -TCGA-E2-A1BD TCGA-E2-A1BD-01 Luminal A -TCGA-A2-A0SV TCGA-A2-A0SV-01 Luminal B -TCGA-AO-A03O TCGA-AO-A03O-01 Luminal B -TCGA-A2-A0SW TCGA-A2-A0SW-01 Luminal B -TCGA-B6-A0WW TCGA-B6-A0WW-01 Luminal B -TCGA-BH-A18J TCGA-BH-A18J-01 Luminal B -TCGA-BH-A18L TCGA-BH-A18L-01 Luminal B -TCGA-A8-A06X TCGA-A8-A06X-01 Luminal B -TCGA-B6-A0IC TCGA-B6-A0IC-01 Luminal B -TCGA-BH-A18U TCGA-BH-A18U-01 Luminal B -TCGA-BH-A1EW TCGA-BH-A1EW-01 Luminal B -TCGA-AR-A0TY TCGA-AR-A0TY-01 Luminal B -TCGA-B6-A0X5 TCGA-B6-A0X5-01 Luminal B -TCGA-B6-A0WV TCGA-B6-A0WV-01 Luminal B -TCGA-B6-A0RL TCGA-B6-A0RL-01 Luminal B -TCGA-AR-A0U2 TCGA-AR-A0U2-01 Luminal B -TCGA-B6-A0IB TCGA-B6-A0IB-01 Luminal B -TCGA-AO-A0J7 TCGA-AO-A0J7-01 Luminal B -TCGA-AO-A0J3 TCGA-AO-A0J3-01 Luminal B -TCGA-D8-A13Y TCGA-D8-A13Y-01 Luminal B -TCGA-A7-A13F TCGA-A7-A13F-01 Luminal B -TCGA-BH-A0HU TCGA-BH-A0HU-01 Luminal B -TCGA-D8-A140 TCGA-D8-A140-01 Luminal B -TCGA-A7-A0CJ TCGA-A7-A0CJ-01 Luminal B -TCGA-AQ-A04H TCGA-AQ-A04H-01 Luminal B -TCGA-BH-A0H0 TCGA-BH-A0H0-01 Luminal B -TCGA-BH-A0BD TCGA-BH-A0BD-01 Luminal B -TCGA-A2-A0T3 TCGA-A2-A0T3-01 Luminal B -TCGA-A2-A0T4 TCGA-A2-A0T4-01 Luminal B -TCGA-A2-A0YH TCGA-A2-A0YH-01 Luminal B -TCGA-A2-A0YG TCGA-A2-A0YG-01 Luminal B -TCGA-A2-A0EY TCGA-A2-A0EY-01 Luminal B -TCGA-A2-A0D4 TCGA-A2-A0D4-01 Luminal B -TCGA-BH-A0AY TCGA-BH-A0AY-01 Luminal B -TCGA-E2-A107 TCGA-E2-A107-01 Luminal B -TCGA-AO-A0JI TCGA-AO-A0JI-01 Luminal B -TCGA-E2-A10C TCGA-E2-A10C-01 Luminal B -TCGA-E2-A10A TCGA-E2-A10A-01 Luminal B -TCGA-BH-A0C0 TCGA-BH-A0C0-01 Luminal B -TCGA-E2-A109 TCGA-E2-A109-01 Luminal B -TCGA-AO-A0JC TCGA-AO-A0JC-01 Luminal B -TCGA-BH-A0HW TCGA-BH-A0HW-01 Luminal B -TCGA-AO-A0JD TCGA-AO-A0JD-01 Luminal B -TCGA-AO-A0JM TCGA-AO-A0JM-01 Luminal B -TCGA-A2-A0CW TCGA-A2-A0CW-01 Luminal B -TCGA-A2-A0ER TCGA-A2-A0ER-01 Luminal B -TCGA-A2-A0CT TCGA-A2-A0CT-01 Luminal B -TCGA-AO-A12B TCGA-AO-A12B-01 Luminal B -TCGA-A2-A04R TCGA-A2-A04R-01 Luminal B -TCGA-B6-A0IM TCGA-B6-A0IM-01 Luminal B -TCGA-AO-A03P TCGA-AO-A03P-01 Luminal B -TCGA-A1-A0SM TCGA-A1-A0SM-01 Luminal B -TCGA-A8-A06N TCGA-A8-A06N-01 Luminal B -TCGA-A8-A06O TCGA-A8-A06O-01 Luminal B -TCGA-A8-A06Q TCGA-A8-A06Q-01 Luminal B -TCGA-A8-A06R TCGA-A8-A06R-01 Luminal B -TCGA-A8-A06Z TCGA-A8-A06Z-01 Luminal B -TCGA-A8-A079 TCGA-A8-A079-01 Luminal B -TCGA-A8-A07L TCGA-A8-A07L-01 Luminal B -TCGA-A8-A07S TCGA-A8-A07S-01 Luminal B -TCGA-A8-A07W TCGA-A8-A07W-01 Luminal B -TCGA-A8-A07Z TCGA-A8-A07Z-01 Luminal B -TCGA-A8-A082 TCGA-A8-A082-01 Luminal B -TCGA-A8-A084 TCGA-A8-A084-01 Luminal B -TCGA-A8-A085 TCGA-A8-A085-01 Luminal B -TCGA-A8-A08F TCGA-A8-A08F-01 Luminal B -TCGA-A8-A08G TCGA-A8-A08G-01 Luminal B -TCGA-A8-A08I TCGA-A8-A08I-01 Luminal B -TCGA-A8-A08P TCGA-A8-A08P-01 Luminal B -TCGA-A8-A095 TCGA-A8-A095-01 Luminal B -TCGA-A8-A096 TCGA-A8-A096-01 Luminal B -TCGA-A8-A097 TCGA-A8-A097-01 Luminal B -TCGA-A8-A09C TCGA-A8-A09C-01 Luminal B -TCGA-A8-A09D TCGA-A8-A09D-01 Luminal B -TCGA-A8-A09I TCGA-A8-A09I-01 Luminal B -TCGA-A8-A09M TCGA-A8-A09M-01 Luminal B -TCGA-A8-A09N TCGA-A8-A09N-01 Luminal B -TCGA-A8-A09Q TCGA-A8-A09Q-01 Luminal B -TCGA-A8-A09R TCGA-A8-A09R-01 Luminal B -TCGA-A8-A09W TCGA-A8-A09W-01 Luminal B -TCGA-A8-A09Z TCGA-A8-A09Z-01 Luminal B -TCGA-A8-A0A9 TCGA-A8-A0A9-01 Luminal B -TCGA-A8-A0AB TCGA-A8-A0AB-01 Luminal B -TCGA-AN-A03Y TCGA-AN-A03Y-01 Luminal B -TCGA-AN-A041 TCGA-AN-A041-01 Luminal B -TCGA-AN-A049 TCGA-AN-A049-01 Luminal B -TCGA-AN-A0AJ TCGA-AN-A0AJ-01 Luminal B -TCGA-AN-A0AK TCGA-AN-A0AK-01 Luminal B -TCGA-AN-A0AM TCGA-AN-A0AM-01 Luminal B -TCGA-AN-A0AS TCGA-AN-A0AS-01 Luminal B -TCGA-AN-A0FF TCGA-AN-A0FF-01 Luminal B -TCGA-AN-A0FK TCGA-AN-A0FK-01 Luminal B -TCGA-AN-A0FY TCGA-AN-A0FY-01 Luminal B -TCGA-AN-A0XR TCGA-AN-A0XR-01 Luminal B -TCGA-AN-A0XW TCGA-AN-A0XW-01 Luminal B -TCGA-AR-A0TQ TCGA-AR-A0TQ-01 Luminal B -TCGA-AR-A0TT TCGA-AR-A0TT-01 Luminal B -TCGA-AR-A0TV TCGA-AR-A0TV-01 Luminal B -TCGA-AR-A0TZ TCGA-AR-A0TZ-01 Luminal B -TCGA-AR-A0U3 TCGA-AR-A0U3-01 Luminal B -TCGA-AR-A1AV TCGA-AR-A1AV-01 Luminal B -TCGA-BH-A0AU TCGA-BH-A0AU-01 Luminal B -TCGA-BH-A0B5 TCGA-BH-A0B5-01 Luminal B -TCGA-BH-A0BF TCGA-BH-A0BF-01 Luminal B -TCGA-BH-A0BZ TCGA-BH-A0BZ-01 Luminal B -TCGA-BH-A0C3 TCGA-BH-A0C3-01 Luminal B -TCGA-BH-A0C7 TCGA-BH-A0C7-01 Luminal B -TCGA-BH-A0DD TCGA-BH-A0DD-01 Luminal B -TCGA-BH-A0W3 TCGA-BH-A0W3-01 Luminal B -TCGA-BH-A18F TCGA-BH-A18F-01 Luminal B -TCGA-C8-A12M TCGA-C8-A12M-01 Luminal B -TCGA-C8-A12U TCGA-C8-A12U-01 Luminal B -TCGA-C8-A12W TCGA-C8-A12W-01 Luminal B -TCGA-C8-A12X TCGA-C8-A12X-01 Luminal B -TCGA-C8-A1HG TCGA-C8-A1HG-01 Luminal B -TCGA-C8-A1HL TCGA-C8-A1HL-01 Luminal B -TCGA-C8-A1HM TCGA-C8-A1HM-01 Luminal B -TCGA-C8-A1HN TCGA-C8-A1HN-01 Luminal B -TCGA-E2-A14O TCGA-E2-A14O-01 Luminal B -TCGA-E2-A14S TCGA-E2-A14S-01 Luminal B -TCGA-E2-A14W TCGA-E2-A14W-01 Luminal B -TCGA-E2-A155 TCGA-E2-A155-01 Luminal B -TCGA-E2-A15A TCGA-E2-A15A-01 Luminal B -TCGA-E2-A15K TCGA-E2-A15K-01 Luminal B -TCGA-E2-A15L TCGA-E2-A15L-01 Luminal B -TCGA-E2-A15M TCGA-E2-A15M-01 Luminal B -TCGA-E2-A15S TCGA-E2-A15S-01 Luminal B -TCGA-E2-A15T TCGA-E2-A15T-01 Luminal B -TCGA-AO-A03U TCGA-AO-A03U-01 NA -TCGA-B6-A0IE TCGA-B6-A0IE-01 NA -TCGA-A2-A0YK TCGA-A2-A0YK-01 NA -TCGA-E2-A108 TCGA-E2-A108-01 Claudin low -TCGA-AO-A0JB TCGA-AO-A0JB-01 NA -TCGA-AO-A03R TCGA-AO-A03R-01 NA -TCGA-AO-A03T TCGA-AO-A03T-01 NA -TCGA-AR-A1AO TCGA-AR-A1AO-01 Claudin low -TCGA-A2-A0YT TCGA-A2-A0YT-01 Luminal B -TCGA-AQ-A0Y5 TCGA-AQ-A0Y5-01 NA -TCGA-EW-A1P8 TCGA-EW-A1P8-01 NA -TCGA-E2-A1LK TCGA-E2-A1LK-01 NA -TCGA-BH-A1EY TCGA-BH-A1EY-01 NA -TCGA-BH-A1F8 TCGA-BH-A1F8-01 NA -TCGA-BH-A1F2 TCGA-BH-A1F2-01 NA -TCGA-BH-A1FD TCGA-BH-A1FD-01 NA -TCGA-BH-A1FH TCGA-BH-A1FH-01 NA -TCGA-BH-A203 TCGA-BH-A203-01 NA -TCGA-BH-A1FM TCGA-BH-A1FM-01 NA -TCGA-BH-A1EX TCGA-BH-A1EX-01 NA -TCGA-BH-A1FL TCGA-BH-A1FL-01 NA -TCGA-BH-A208 TCGA-BH-A208-01 NA -TCGA-GM-A2D9 TCGA-GM-A2D9-01 NA -TCGA-BH-A1FJ TCGA-BH-A1FJ-01 NA -TCGA-BH-A1EN TCGA-BH-A1EN-01 NA -TCGA-BH-A1FN TCGA-BH-A1FN-01 NA -TCGA-BH-A1FU TCGA-BH-A1FU-01 NA -TCGA-BH-A1FE TCGA-BH-A1FE-01 NA -TCGA-BH-A204 TCGA-BH-A204-01 NA -TCGA-BH-A1F5 TCGA-BH-A1F5-01 NA -TCGA-AR-A256 TCGA-AR-A256-01 NA -TCGA-BH-A1F6 TCGA-BH-A1F6-01 NA -TCGA-BH-A1FC TCGA-BH-A1FC-01 NA -TCGA-BH-A1FB TCGA-BH-A1FB-01 NA -TCGA-BH-A1FG TCGA-BH-A1FG-01 NA -TCGA-BH-A209 TCGA-BH-A209-01 NA -TCGA-BH-A1FR TCGA-BH-A1FR-01 NA -TCGA-AO-A1KS TCGA-AO-A1KS-01 NA -TCGA-A7-A13G TCGA-A7-A13G-01 NA -TCGA-D8-A1JS TCGA-D8-A1JS-01 NA -TCGA-A7-A0DC TCGA-A7-A0DC-01 Luminal A -TCGA-D8-A1JT TCGA-D8-A1JT-01 NA -TCGA-A7-A26E TCGA-A7-A26E-01 NA -TCGA-D8-A1JH TCGA-D8-A1JH-01 NA -TCGA-D8-A1JU TCGA-D8-A1JU-01 NA -TCGA-AO-A1KO TCGA-AO-A1KO-01 NA -TCGA-AO-A1KT TCGA-AO-A1KT-01 NA -TCGA-AO-A0J5 TCGA-AO-A0J5-01 Luminal A -TCGA-B6-A1KC TCGA-B6-A1KC-01 NA -TCGA-AO-A1KQ TCGA-AO-A1KQ-01 NA -TCGA-B6-A1KI TCGA-B6-A1KI-01 NA -TCGA-AO-A1KP TCGA-AO-A1KP-01 NA -TCGA-B6-A1KF TCGA-B6-A1KF-01 NA -TCGA-B6-A1KN TCGA-B6-A1KN-01 NA -TCGA-D8-A1XO TCGA-D8-A1XO-01 NA -TCGA-D8-A1XT TCGA-D8-A1XT-01 NA -TCGA-A1-A0SP TCGA-A1-A0SP-01 NA -TCGA-D8-A1J8 TCGA-D8-A1J8-01 NA -TCGA-D8-A1JF TCGA-D8-A1JF-01 NA -TCGA-D8-A1JG TCGA-D8-A1JG-01 NA -TCGA-D8-A1XS TCGA-D8-A1XS-01 NA -TCGA-A1-A0SB TCGA-A1-A0SB-01 NA -TCGA-A1-A0SF TCGA-A1-A0SF-01 NA -TCGA-A1-A0SG TCGA-A1-A0SG-01 NA -TCGA-A1-A0SI TCGA-A1-A0SI-01 NA -TCGA-A1-A0SN TCGA-A1-A0SN-01 NA -TCGA-A1-A0SQ TCGA-A1-A0SQ-01 NA -TCGA-A2-A1FV TCGA-A2-A1FV-01 NA -TCGA-A2-A1FW TCGA-A2-A1FW-01 NA -TCGA-A2-A1FX TCGA-A2-A1FX-01 NA -TCGA-A2-A1FZ TCGA-A2-A1FZ-01 NA -TCGA-A2-A1G0 TCGA-A2-A1G0-01 NA -TCGA-A2-A1G1 TCGA-A2-A1G1-01 NA -TCGA-A2-A1G4 TCGA-A2-A1G4-01 NA -TCGA-A2-A1G6 TCGA-A2-A1G6-01 NA -TCGA-A2-A259 TCGA-A2-A259-01 NA -TCGA-A2-A25A TCGA-A2-A25A-01 NA -TCGA-A2-A25B TCGA-A2-A25B-01 NA -TCGA-A2-A25C TCGA-A2-A25C-01 NA -TCGA-A2-A25D TCGA-A2-A25D-01 NA -TCGA-A2-A25E TCGA-A2-A25E-01 NA -TCGA-A2-A25F TCGA-A2-A25F-01 NA -TCGA-A7-A26F TCGA-A7-A26F-01 NA -TCGA-A7-A26G TCGA-A7-A26G-01 NA -TCGA-A7-A26H TCGA-A7-A26H-01 NA -TCGA-A7-A26I TCGA-A7-A26I-01 NA -TCGA-A7-A26J TCGA-A7-A26J-01 NA -TCGA-A8-A08S TCGA-A8-A08S-01 Luminal B -TCGA-A8-A09E TCGA-A8-A09E-01 Luminal B -TCGA-A8-A09K TCGA-A8-A09K-01 Luminal B -TCGA-AC-A23C TCGA-AC-A23C-01 NA -TCGA-AC-A23E TCGA-AC-A23E-01 NA -TCGA-AC-A23H TCGA-AC-A23H-01 NA -TCGA-AO-A1KR TCGA-AO-A1KR-01 NA -TCGA-AQ-A1H2 TCGA-AQ-A1H2-01 NA -TCGA-AQ-A1H3 TCGA-AQ-A1H3-01 NA -TCGA-AR-A24H TCGA-AR-A24H-01 NA -TCGA-AR-A24K TCGA-AR-A24K-01 NA -TCGA-AR-A24L TCGA-AR-A24L-01 NA -TCGA-AR-A24M TCGA-AR-A24M-01 NA -TCGA-AR-A24N TCGA-AR-A24N-01 NA -TCGA-AR-A24O TCGA-AR-A24O-01 NA -TCGA-AR-A24P TCGA-AR-A24P-01 NA -TCGA-AR-A24Q TCGA-AR-A24Q-01 NA -TCGA-AR-A24R TCGA-AR-A24R-01 NA -TCGA-AR-A24S TCGA-AR-A24S-01 NA -TCGA-AR-A24T TCGA-AR-A24T-01 NA -TCGA-AR-A24U TCGA-AR-A24U-01 NA -TCGA-AR-A24V TCGA-AR-A24V-01 NA -TCGA-AR-A24X TCGA-AR-A24X-01 NA -TCGA-AR-A24Z TCGA-AR-A24Z-01 NA -TCGA-AR-A250 TCGA-AR-A250-01 NA -TCGA-AR-A251 TCGA-AR-A251-01 NA -TCGA-AR-A252 TCGA-AR-A252-01 NA -TCGA-AR-A254 TCGA-AR-A254-01 NA -TCGA-AR-A255 TCGA-AR-A255-01 NA -TCGA-BH-A0B2 TCGA-BH-A0B2-01 Luminal A -TCGA-BH-A0DV TCGA-BH-A0DV-01 NA -TCGA-BH-A201 TCGA-BH-A201-01 NA -TCGA-BH-A202 TCGA-BH-A202-01 NA -TCGA-BH-A28Q TCGA-BH-A28Q-01 NA -TCGA-C8-A1HE TCGA-C8-A1HE-01 NA -TCGA-C8-A1HJ TCGA-C8-A1HJ-01 NA -TCGA-C8-A1HK TCGA-C8-A1HK-01 NA -TCGA-C8-A1HO TCGA-C8-A1HO-01 NA -TCGA-C8-A26V TCGA-C8-A26V-01 NA -TCGA-C8-A26W TCGA-C8-A26W-01 NA -TCGA-C8-A26X TCGA-C8-A26X-01 NA -TCGA-C8-A26Y TCGA-C8-A26Y-01 NA -TCGA-C8-A26Z TCGA-C8-A26Z-01 NA -TCGA-C8-A273 TCGA-C8-A273-01 NA -TCGA-C8-A274 TCGA-C8-A274-01 NA -TCGA-C8-A275 TCGA-C8-A275-01 NA -TCGA-C8-A278 TCGA-C8-A278-01 NA -TCGA-C8-A27A TCGA-C8-A27A-01 NA -TCGA-C8-A27B TCGA-C8-A27B-01 NA -TCGA-D8-A146 TCGA-D8-A146-01 Luminal A -TCGA-D8-A1J9 TCGA-D8-A1J9-01 NA -TCGA-D8-A1JA TCGA-D8-A1JA-01 NA -TCGA-D8-A1JB TCGA-D8-A1JB-01 NA -TCGA-D8-A1JC TCGA-D8-A1JC-01 NA -TCGA-D8-A1JD TCGA-D8-A1JD-01 NA -TCGA-D8-A1JE TCGA-D8-A1JE-01 NA -TCGA-D8-A1JI TCGA-D8-A1JI-01 NA -TCGA-D8-A1JJ TCGA-D8-A1JJ-01 NA -TCGA-D8-A1JK TCGA-D8-A1JK-01 NA -TCGA-D8-A1JL TCGA-D8-A1JL-01 NA -TCGA-D8-A1JM TCGA-D8-A1JM-01 NA -TCGA-D8-A1JN TCGA-D8-A1JN-01 NA -TCGA-D8-A1JP TCGA-D8-A1JP-01 NA -TCGA-D8-A1X5 TCGA-D8-A1X5-01 NA -TCGA-D8-A1X6 TCGA-D8-A1X6-01 NA -TCGA-D8-A1X7 TCGA-D8-A1X7-01 NA -TCGA-D8-A1X8 TCGA-D8-A1X8-01 NA -TCGA-D8-A1X9 TCGA-D8-A1X9-01 NA -TCGA-D8-A1XA TCGA-D8-A1XA-01 NA -TCGA-D8-A1XB TCGA-D8-A1XB-01 NA -TCGA-D8-A1XC TCGA-D8-A1XC-01 NA -TCGA-D8-A1XD TCGA-D8-A1XD-01 NA -TCGA-D8-A1XF TCGA-D8-A1XF-01 NA -TCGA-D8-A1XG TCGA-D8-A1XG-01 NA -TCGA-D8-A1XJ TCGA-D8-A1XJ-01 NA -TCGA-D8-A1XK TCGA-D8-A1XK-01 NA -TCGA-D8-A1XL TCGA-D8-A1XL-01 NA -TCGA-D8-A1XM TCGA-D8-A1XM-01 NA -TCGA-D8-A1XQ TCGA-D8-A1XQ-01 NA -TCGA-D8-A1XR TCGA-D8-A1XR-01 NA -TCGA-D8-A1XU TCGA-D8-A1XU-01 NA -TCGA-D8-A1XV TCGA-D8-A1XV-01 NA -TCGA-D8-A1XW TCGA-D8-A1XW-01 NA -TCGA-D8-A1XY TCGA-D8-A1XY-01 NA -TCGA-D8-A1XZ TCGA-D8-A1XZ-01 NA -TCGA-D8-A1Y0 TCGA-D8-A1Y0-01 NA -TCGA-D8-A1Y1 TCGA-D8-A1Y1-01 NA -TCGA-D8-A1Y2 TCGA-D8-A1Y2-01 NA -TCGA-D8-A1Y3 TCGA-D8-A1Y3-01 NA -TCGA-D8-A27E TCGA-D8-A27E-01 NA -TCGA-D8-A27F TCGA-D8-A27F-01 NA -TCGA-D8-A27G TCGA-D8-A27G-01 NA -TCGA-D8-A27H TCGA-D8-A27H-01 NA -TCGA-D8-A27I TCGA-D8-A27I-01 NA -TCGA-D8-A27K TCGA-D8-A27K-01 NA -TCGA-D8-A27L TCGA-D8-A27L-01 NA -TCGA-D8-A27M TCGA-D8-A27M-01 NA -TCGA-D8-A27N TCGA-D8-A27N-01 NA -TCGA-D8-A27P TCGA-D8-A27P-01 NA -TCGA-D8-A27R TCGA-D8-A27R-01 NA -TCGA-D8-A27T TCGA-D8-A27T-01 NA -TCGA-D8-A27V TCGA-D8-A27V-01 NA -TCGA-D8-A27W TCGA-D8-A27W-01 NA -TCGA-E2-A1IE TCGA-E2-A1IE-01 NA -TCGA-E2-A1IF TCGA-E2-A1IF-01 NA -TCGA-E2-A1IG TCGA-E2-A1IG-01 NA -TCGA-E2-A1IH TCGA-E2-A1IH-01 NA -TCGA-E2-A1II TCGA-E2-A1II-01 NA -TCGA-E2-A1IJ TCGA-E2-A1IJ-01 NA -TCGA-E2-A1IK TCGA-E2-A1IK-01 NA -TCGA-E2-A1IL TCGA-E2-A1IL-01 NA -TCGA-E2-A1IN TCGA-E2-A1IN-01 NA -TCGA-E2-A1IO TCGA-E2-A1IO-01 NA -TCGA-E2-A1IP TCGA-E2-A1IP-01 NA -TCGA-E2-A1IU TCGA-E2-A1IU-01 NA -TCGA-E2-A1L6 TCGA-E2-A1L6-01 NA -TCGA-E2-A1L7 TCGA-E2-A1L7-01 NA -TCGA-E2-A1L8 TCGA-E2-A1L8-01 NA -TCGA-E2-A1L9 TCGA-E2-A1L9-01 NA -TCGA-E2-A1LA TCGA-E2-A1LA-01 NA -TCGA-E2-A1LB TCGA-E2-A1LB-01 NA -TCGA-E2-A1LG TCGA-E2-A1LG-01 NA -TCGA-E2-A1LH TCGA-E2-A1LH-01 NA -TCGA-E2-A1LI TCGA-E2-A1LI-01 NA -TCGA-E2-A1LL TCGA-E2-A1LL-01 NA -TCGA-E2-A1LS TCGA-E2-A1LS-01 NA -TCGA-E9-A1N3 TCGA-E9-A1N3-01 NA -TCGA-E9-A1N4 TCGA-E9-A1N4-01 NA -TCGA-E9-A1N5 TCGA-E9-A1N5-01 NA -TCGA-E9-A1N6 TCGA-E9-A1N6-01 NA -TCGA-E9-A1N8 TCGA-E9-A1N8-01 NA -TCGA-E9-A1N9 TCGA-E9-A1N9-01 NA -TCGA-E9-A1NA TCGA-E9-A1NA-01 NA -TCGA-E9-A1NC TCGA-E9-A1NC-01 NA -TCGA-E9-A1ND TCGA-E9-A1ND-01 NA -TCGA-E9-A1NE TCGA-E9-A1NE-01 NA -TCGA-E9-A1NF TCGA-E9-A1NF-01 NA -TCGA-E9-A1NG TCGA-E9-A1NG-01 NA -TCGA-E9-A1NH TCGA-E9-A1NH-01 NA -TCGA-E9-A1NI TCGA-E9-A1NI-01 NA -TCGA-E9-A1QZ TCGA-E9-A1QZ-01 NA -TCGA-E9-A1R0 TCGA-E9-A1R0-01 NA -TCGA-E9-A1R2 TCGA-E9-A1R2-01 NA -TCGA-E9-A1R3 TCGA-E9-A1R3-01 NA -TCGA-E9-A1R4 TCGA-E9-A1R4-01 NA -TCGA-E9-A1R5 TCGA-E9-A1R5-01 NA -TCGA-E9-A1R6 TCGA-E9-A1R6-01 NA -TCGA-E9-A1R7 TCGA-E9-A1R7-01 NA -TCGA-E9-A1RA TCGA-E9-A1RA-01 NA -TCGA-E9-A1RB TCGA-E9-A1RB-01 NA -TCGA-E9-A1RC TCGA-E9-A1RC-01 NA -TCGA-E9-A1RD TCGA-E9-A1RD-01 NA -TCGA-E9-A1RE TCGA-E9-A1RE-01 NA -TCGA-E9-A1RF TCGA-E9-A1RF-01 NA -TCGA-E9-A1RG TCGA-E9-A1RG-01 NA -TCGA-E9-A1RH TCGA-E9-A1RH-01 NA -TCGA-E9-A1RI TCGA-E9-A1RI-01 NA -TCGA-E9-A226 TCGA-E9-A226-01 NA -TCGA-E9-A227 TCGA-E9-A227-01 NA -TCGA-E9-A228 TCGA-E9-A228-01 NA -TCGA-E9-A229 TCGA-E9-A229-01 NA -TCGA-E9-A22A TCGA-E9-A22A-01 NA -TCGA-E9-A22B TCGA-E9-A22B-01 NA -TCGA-E9-A22D TCGA-E9-A22D-01 NA -TCGA-E9-A22E TCGA-E9-A22E-01 NA -TCGA-E9-A22G TCGA-E9-A22G-01 NA -TCGA-E9-A22H TCGA-E9-A22H-01 NA -TCGA-E9-A243 TCGA-E9-A243-01 NA -TCGA-E9-A244 TCGA-E9-A244-01 NA -TCGA-E9-A245 TCGA-E9-A245-01 NA -TCGA-E9-A247 TCGA-E9-A247-01 NA -TCGA-E9-A248 TCGA-E9-A248-01 NA -TCGA-E9-A249 TCGA-E9-A249-01 NA -TCGA-E9-A24A TCGA-E9-A24A-01 NA -TCGA-EW-A1IW TCGA-EW-A1IW-01 NA -TCGA-EW-A1IX TCGA-EW-A1IX-01 NA -TCGA-EW-A1IY TCGA-EW-A1IY-01 NA -TCGA-EW-A1IZ TCGA-EW-A1IZ-01 NA -TCGA-EW-A1J1 TCGA-EW-A1J1-01 NA -TCGA-EW-A1J2 TCGA-EW-A1J2-01 NA -TCGA-EW-A1J3 TCGA-EW-A1J3-01 NA -TCGA-EW-A1J5 TCGA-EW-A1J5-01 NA -TCGA-EW-A1J6 TCGA-EW-A1J6-01 NA -TCGA-EW-A1OV TCGA-EW-A1OV-01 NA -TCGA-EW-A1OW TCGA-EW-A1OW-01 NA -TCGA-EW-A1OX TCGA-EW-A1OX-01 NA -TCGA-EW-A1OY TCGA-EW-A1OY-01 NA -TCGA-EW-A1OZ TCGA-EW-A1OZ-01 NA -TCGA-EW-A1P0 TCGA-EW-A1P0-01 NA -TCGA-EW-A1P1 TCGA-EW-A1P1-01 NA -TCGA-EW-A1P3 TCGA-EW-A1P3-01 NA -TCGA-EW-A1P4 TCGA-EW-A1P4-01 NA -TCGA-EW-A1P5 TCGA-EW-A1P5-01 NA -TCGA-EW-A1P6 TCGA-EW-A1P6-01 NA -TCGA-EW-A1P7 TCGA-EW-A1P7-01 NA -TCGA-EW-A1PA TCGA-EW-A1PA-01 NA -TCGA-EW-A1PB TCGA-EW-A1PB-01 NA -TCGA-EW-A1PD TCGA-EW-A1PD-01 NA -TCGA-EW-A1PE TCGA-EW-A1PE-01 NA -TCGA-EW-A1PF TCGA-EW-A1PF-01 NA -TCGA-EW-A1PG TCGA-EW-A1PG-01 NA -TCGA-EW-A1PH TCGA-EW-A1PH-01 NA -TCGA-EW-A2FS TCGA-EW-A2FS-01 NA -TCGA-EW-A2FV TCGA-EW-A2FV-01 NA -TCGA-EW-A2FW TCGA-EW-A2FW-01 NA -TCGA-GM-A2DA TCGA-GM-A2DA-01 NA -TCGA-GM-A2DB TCGA-GM-A2DB-01 NA -TCGA-GM-A2DC TCGA-GM-A2DC-01 NA -TCGA-GM-A2DD TCGA-GM-A2DD-01 NA -TCGA-GM-A2DF TCGA-GM-A2DF-01 NA -TCGA-GM-A2DH TCGA-GM-A2DH-01 NA -TCGA-GM-A2DI TCGA-GM-A2DI-01 NA -TCGA-GM-A2DK TCGA-GM-A2DK-01 NA -TCGA-GM-A2DL TCGA-GM-A2DL-01 NA -TCGA-GM-A2DM TCGA-GM-A2DM-01 NA -TCGA-GM-A2DN TCGA-GM-A2DN-01 NA -TCGA-GM-A2DO TCGA-GM-A2DO-01 NA -TCGA-AR-A24W TCGA-AR-A24W-01 NA -TCGA-AC-A2B8 TCGA-AC-A2B8-01 NA -TCGA-AC-A2FF TCGA-AC-A2FF-01 NA -TCGA-AC-A2FB TCGA-AC-A2FB-01 NA -TCGA-AC-A2FG TCGA-AC-A2FG-01 NA -TCGA-GI-A2C8 TCGA-GI-A2C8-01 NA -TCGA-E9-A295 TCGA-E9-A295-01 NA -TCGA-E2-A15E TCGA-E2-A15E-06 NA -TCGA-A2-A0T2 TCGA-A2-A0T2-01 NA diff --git a/core/src/test/scripts/test_data/study_wr_clin/meta_expression_median.txt b/core/src/test/scripts/test_data/study_wr_clin/meta_expression_median.txt deleted file mode 100644 index 9c2e8179492..00000000000 --- a/core/src/test/scripts/test_data/study_wr_clin/meta_expression_median.txt +++ /dev/null @@ -1,8 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: MRNA_EXPRESSION -datatype: Z-SCORE -stable_id: mrna -profile_description: Expression levels (Agilent microarray). -show_profile_in_analysis_tab: false -profile_name: mRNA expression (microarray) -data_filename: data_expression_median.txt diff --git a/core/src/test/scripts/test_data/study_wr_clin/meta_patients.txt b/core/src/test/scripts/test_data/study_wr_clin/meta_patients.txt deleted file mode 100644 index 8a479ddc618..00000000000 --- a/core/src/test/scripts/test_data/study_wr_clin/meta_patients.txt +++ /dev/null @@ -1,4 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: CLINICAL -datatype: PATIENT_ATTRIBUTES -data_filename: data_patients.txt diff --git a/core/src/test/scripts/test_data/study_wr_clin/meta_samples.txt b/core/src/test/scripts/test_data/study_wr_clin/meta_samples.txt deleted file mode 100644 index 2b6b0e1f0bd..00000000000 --- a/core/src/test/scripts/test_data/study_wr_clin/meta_samples.txt +++ /dev/null @@ -1,7 +0,0 @@ -cancer_study_identifier: brca_tcga_pub -genetic_alteration_type: CLINICAL -datatype: FREE-FORM -show_profile_in_analysis_tab: false -profile_description: Sample clinical data for this study. -profile_name: Sample clinical data for brca_tcga_pub. -data_filename: data_samples.txt diff --git a/core/src/test/scripts/test_data/study_wr_clin/meta_study.txt b/core/src/test/scripts/test_data/study_wr_clin/meta_study.txt deleted file mode 100644 index c6a63249bbd..00000000000 --- a/core/src/test/scripts/test_data/study_wr_clin/meta_study.txt +++ /dev/null @@ -1,7 +0,0 @@ -type_of_cancer: brca -cancer_study_identifier: brca_tcga_pub -name: Breast Invasive Carcinoma (TCGA, Nature 2012) -description: The Cancer Genome Atlas (TCGA) Breast Invasive Carcinoma project. 825 cases.
    Nature 2012. Raw data via the TCGA Data Portal. -citation: TCGA, Nature 2012 -pmid: 23000897 -groups: PUBLIC;GDAC;SU2C-PI3K diff --git a/core/src/test/scripts/test_data/study_wr_clin/result_report.html b/core/src/test/scripts/test_data/study_wr_clin/result_report.html deleted file mode 100644 index 4ceb7a29ead..00000000000 --- a/core/src/test/scripts/test_data/study_wr_clin/result_report.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - - - - - - - - cBioPortal validation report: study in 'test_data/study_wr_clin/' - - - - - -
    -
    -
    -

    cBioPortal validation report

    -

    Study directory:
    test_data/study_wr_clin/

    -

    For details, please see the documentation on file formats supported by cBioPortal

    -

    cBioPortal version unknown -- offline instance

    -
    -
    - - -
    -
    -
    - Validation status: - - Failed - -
    - -
    -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugReading portal information from test_data/api_json_system_tests/cancer-types.json
    DebugReading portal information from test_data/api_json_system_tests/genes.json
    DebugReading portal information from test_data/api_json_system_tests/genesets.json
    DebugReading portal information from test_data/api_json_system_tests/genesets_version.json
    DebugReading portal information from test_data/api_json_system_tests/gene-panels.json
    DebugReading portal information from test_data/api_json_system_tests/genesaliases.json
    ErrorNo sample attribute file detected
    -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    ErrorInvalid stable id for genetic_alteration_type 'MRNA_EXPRESSION', data_type 'Z-SCORE'; expected one of [mrna_U133_Zscores, rna_seq_mrna_median_Zscores, mrna_median_Zscores, rna_seq_v2_mrna_median_Zscores, rna_seq_v2_mrna_median_normals_Zscores, mirna_median_Zscores, mrna_merged_median_Zscores, mrna_zbynorm, mrna_seq_tpm_Zscores, mrna_seq_cpm_Zscores, rna_seq_mrna_capture_Zscores, mrna_seq_fpkm_capture_Zscores, mrna_seq_fpkm_polya_Zscores, mrna_U133_all_sample_Zscores, mrna_all_sample_Zscores, rna_seq_mrna_median_all_sample_Zscores, mrna_median_all_sample_Zscores, rna_seq_v2_mrna_median_all_sample_Zscores, rna_seq_v2_mrna_median_all_sample_ref_normal_Zscores, mrna_seq_cpm_all_sample_Zscores, mrna_seq_tpm_all_sample_Zscores, rna_seq_mrna_capture_all_sample_Zscores, mrna_seq_fpkm_capture_all_sample_Zscores, mrna_seq_fpkm_polya_all_sample_Zscores, mrna_seq_fpkm_Zscores, mrna_seq_fpkm_all_sample_Zscores]mrna
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    ErrorCould not determine the file type. Please check your meta files for correct configuration.genetic_alteration_type: CLINICAL, datatype: FREE-FORM
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    InfoNo reference genome specified -- using default (hg19)
    -
    -
    -
    - - -
    -
    -
    -
    -
    -

    Legend

    -
    -
    -

    - Click on a filename below to see a table of messages about the data - in the file. The colors in the tables have the following meanings: -

    - - - - - - - - - - - - - - - - - - - -
    ErrorError: cBioPortal will not know how to load this, please revise or remove
    WarningWarning: possible cause of confusion, please check whether this is intended
    InfoInfo: this looks good, no action required
    DebugVerbose output: details on the progress of the validation script
    -
    -
    -
    - - \ No newline at end of file diff --git a/core/src/test/scripts/test_data/test.xml b/core/src/test/scripts/test_data/test.xml deleted file mode 100644 index f29c23074d2..00000000000 --- a/core/src/test/scripts/test_data/test.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - 4.0.0 - org.mskcc.cbio - master - pom - Portal Master - unknown - master maven module - diff --git a/core/src/test/scripts/unit_tests_validate_data.py b/core/src/test/scripts/unit_tests_validate_data.py deleted file mode 100755 index 3048a821d7d..00000000000 --- a/core/src/test/scripts/unit_tests_validate_data.py +++ /dev/null @@ -1,3091 +0,0 @@ -#!/usr/bin/env python3 - -""" -Copyright (c) 2016 The Hyve B.V. -This code is licensed under the GNU Affero General Public License (AGPL), -version 3, or (at your option) any later version. -""" - -import unittest -from unittest.mock import Mock -import sys -import logging.handlers -import textwrap -from pathlib import Path -from contextlib import contextmanager, suppress -from tempfile import TemporaryDirectory - -from importer import cbioportal_common -from importer import validateData - - -# globals for mock data used throughout the module -DEFINED_SAMPLE_IDS = None -DEFINED_SAMPLE_ATTRIBUTES = None -PATIENTS_WITH_SAMPLES = None -PORTAL_INSTANCE = None -prior_validated_sample_ids = None -prior_validated_geneset_ids = None -mutation_sample_ids = None - -def setUpModule(): - """Initialise mock data used throughout the module.""" - global DEFINED_SAMPLE_IDS - global DEFINED_SAMPLE_ATTRIBUTES - global PATIENTS_WITH_SAMPLES - global PORTAL_INSTANCE - global mutation_sample_ids - # mock information parsed from the sample attribute file - DEFINED_SAMPLE_IDS = ["TCGA-A1-A0SB-01", "TCGA-A1-A0SD-01", "TCGA-A1-A0SE-01", "TCGA-A1-A0SH-01", "TCGA-A2-A04U-01", - "TCGA-B6-A0RS-01", "TCGA-BH-A0HP-01", "TCGA-BH-A18P-01", "TCGA-BH-A18H-01", "TCGA-C8-A138-01", - "TCGA-A2-A0EY-01", "TCGA-A8-A08G-01", "TCGA-A2-A04P-01"] - DEFINED_SAMPLE_ATTRIBUTES = {'PATIENT_ID', 'SAMPLE_ID', 'SUBTYPE', 'CANCER_TYPE', 'CANCER_TYPE_DETAILED'} - PATIENTS_WITH_SAMPLES = set("TEST-PAT{}".format(num) for - num in list(range(1, 10)) if - num != 8) - mutation_sample_ids = ["TCGA-A1-A0SB-01", "TCGA-A1-A0SD-01"] - logger = logging.getLogger(__name__) - # parse mock API results from a local directory - PORTAL_INSTANCE = validateData.load_portal_info('test_data/api_json_unit_tests', - logger, - offline=True) - - -@contextmanager -def temp_inputfolder(file_dict): - """Context manager that creates the specified files in a temporary folder. - - The keys of the dictionary (pathlikes or strings) are used as the file - names, and the values as the corresponding file contents. - """ - with TemporaryDirectory() as study_dir_name: - study_dir = Path(study_dir_name) - for filename, contents in file_dict.items(): - # create the directory to make the file in, if it's not there yet - file_directory = (study_dir / filename).parent - with suppress(FileExistsError): - file_directory.mkdir(parents=True) - # write the contents to the file - with (study_dir / filename).open('w', encoding='utf-8') as f: - f.write(contents) - yield str(study_dir) - - -class LogBufferTestCase(unittest.TestCase): - - """Superclass for testcases that want to capture log records emitted. - - Defines a self.logger to log to, and a method get_log_records() to - collect the list of LogRecords emitted by this logger. In addition, - defines a function print_log_records to format a list of LogRecords - to standard output. - """ - - def setUp(self): - """Set up a logger with a buffering handler.""" - self.logger = logging.getLogger(self.__class__.__name__) - self.logger.setLevel(logging.DEBUG) - # add a handler to buffer log records for validation - self.buffer_handler = logging.handlers.BufferingHandler(capacity=1e6) - self.logger.addHandler(self.buffer_handler) - # add a handler to pretty-print log messages to the output - self.output_handler = logging.StreamHandler(sys.stdout) - self.output_handler.setFormatter( - cbioportal_common.LogfileStyleFormatter( - 'test_data/')) - self.logger.addHandler(self.output_handler) - - def tearDown(self): - """Remove the logger handlers (and any buffers they may have).""" - self.logger.removeHandler(self.output_handler) - self.logger.removeHandler(self.buffer_handler) - - def get_log_records(self): - """Get the log records written to the logger since the last call.""" - recs = [rec for rec in self.buffer_handler.buffer] - self.buffer_handler.flush() - return recs - - -class DataFileTestCase(LogBufferTestCase): - - """Superclass for testcases validating a particular data file. - - Provides a validate() method to validate the data file with a - particular validator class and collect the log records emitted. - """ - - def validate(self, data_filename, validator_class, - extra_meta_fields=None, - relaxed_mode=False, strict_maf_checks=False, - *, portal_instance=None): - """Validate a file with a Validator and return the log records.""" - if portal_instance is None: - portal_instance = PORTAL_INSTANCE - meta_dict = {'data_filename': data_filename} - if extra_meta_fields is not None: - meta_dict.update(extra_meta_fields) - validator = validator_class('test_data', meta_dict, - portal_instance, - self.logger, relaxed_mode, - strict_maf_checks) - validator.validate() - return self.get_log_records() - - -class PostClinicalDataFileTestCase(DataFileTestCase): - - """Superclass for validating data files to be read after sample attr files. - - I.e. DEFINED_SAMPLE_IDS will be initialised with a list of sample - identifiers defined in the study. - """ - - def setUp(self): - """Prepare for validating a file by setting the samples defined.""" - super(PostClinicalDataFileTestCase, self).setUp() - self.orig_defined_sample_ids = validateData.DEFINED_SAMPLE_IDS - validateData.DEFINED_SAMPLE_IDS = DEFINED_SAMPLE_IDS - self.orig_defined_sample_attributes = validateData.DEFINED_SAMPLE_IDS - validateData.DEFINED_SAMPLE_ATTRIBUTES = DEFINED_SAMPLE_ATTRIBUTES - self.orig_patients_with_samples = validateData.PATIENTS_WITH_SAMPLES - validateData.PATIENTS_WITH_SAMPLES = PATIENTS_WITH_SAMPLES - - # Prepare global variables related to gene sets - self.orig_prior_validated_sample_ids = validateData.prior_validated_sample_ids - validateData.prior_validated_sample_ids = prior_validated_sample_ids - self.orig_prior_validated_geneset_ids = validateData.prior_validated_geneset_ids - validateData.prior_validated_geneset_ids = prior_validated_geneset_ids - - # Prepare global variables related to sample profiled for mutations and gene panels - self.mutation_sample_ids = validateData.mutation_sample_ids - validateData.mutation_sample_ids = mutation_sample_ids - - - def tearDown(self): - """Restore the environment to before setUp() was called.""" - validateData.DEFINED_SAMPLE_IDS = self.orig_defined_sample_ids - validateData.DEFINED_SAMPLE_ATTRIBUTES = self.orig_defined_sample_attributes - validateData.PATIENTS_WITH_SAMPLES = self.orig_patients_with_samples - validateData.prior_validated_sample_ids = self.orig_prior_validated_sample_ids - validateData.prior_validated_geneset_ids = self.orig_prior_validated_geneset_ids - validateData.mutation_sample_ids = self.mutation_sample_ids - super(PostClinicalDataFileTestCase, self).tearDown() - - -# ---------------------------------------------------------------------------- -# Test cases for the various Validator classes found in validateData script - -class ColumnOrderTestCase(DataFileTestCase): - - """Test if column order requirements are appropriately validated.""" - - def test_column_order_validation_SegValidator(self): - """seg validator needs its columns in a specific order. - - Here we serve a file with wrong order and expect validator to log this: - """ - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_seg_wrong_order.txt', - validateData.SegValidator, - extra_meta_fields={'reference_genome_id': - 'hg19'}) - # we expect 2 errors about columns in wrong order, - # and one about the file not being parseable: - self.assertEqual(3, len(record_list)) - # check if both messages come from checkOrderedRequiredColumns: - for error in record_list[:2]: - self.assertEqual("ERROR", error.levelname) - self.assertEqual("_checkOrderedRequiredColumns", error.funcName) - - def test_column_order_validation_ClinicalValidator(self): - """Sample attributes do NOT need their columns in a specific order. - - Here we serve files with different order and no errors or warnings - """ - # set level according to this test case: - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_clin_order1.txt', - validateData.SampleClinicalValidator) - # we expect no errors or warnings - self.assertEqual(0, len(record_list)) - # if the file has another order, this is also OK: - record_list = self.validate('data_clin_order2.txt', - validateData.SampleClinicalValidator) - # again, we expect no errors or warnings - self.assertEqual(0, len(record_list)) - -class UniqueColumnTestCase(PostClinicalDataFileTestCase): - - # create dummy class from FeaturewiseFileValidator - # set the `name` column to be validated for uniqueness - class DummyFeaturewiseFileValidator(validateData.FeaturewiseFileValidator): - REQUIRED_HEADERS = ['id'] - OPTIONAL_HEADERS = ['name'] - def parseFeatureColumns(self, nonsample_col_vals): - return - def checkValue(self, value, column_index): - return - - def test_uniquecolumns_are_accepted(self): - self.logger.setLevel(logging.ERROR) - UniqueColumnTestCase.DummyFeaturewiseFileValidator.UNIQUE_COLUMNS = ['id'] - record_list = self.validate('data_unique_column_test.txt', UniqueColumnTestCase.DummyFeaturewiseFileValidator) - self.assertEqual(0, len(record_list)) - - def test_uniquecolumns_(self): - self.logger.setLevel(logging.ERROR) - UniqueColumnTestCase.DummyFeaturewiseFileValidator.UNIQUE_COLUMNS = ['name'] - record_list = self.validate('data_unique_column_test.txt', UniqueColumnTestCase.DummyFeaturewiseFileValidator) - self.assertEqual(1, len(record_list)) - -class ClinicalColumnDefsTestCase(PostClinicalDataFileTestCase): - - """Tests for validations of the column definitions in a clinical file.""" - - def test_correct_definitions(self): - """Test when all record definitions match with expectations.""" - record_list = self.validate('data_clin_coldefs_correct.txt', - validateData.PatientClinicalValidator) - # expecting only status messages about the file being validated - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_invalid_definitions(self): - """Test when attributes are defined with unparseable properties.""" - record_list = self.validate('data_clin_coldefs_invalid_priority.txt', - validateData.PatientClinicalValidator) - # expecting an info message followed by the error, and another error as - # the rest of the file cannot be parsed - self.assertEqual(3, len(record_list)) - # error about the non-numeric priority of the SAUSAGE column - self.assertEqual(logging.ERROR, record_list[1].levelno) - self.assertEqual(4, record_list[1].line_number) - self.assertEqual(6, record_list[1].column_number) - - def test_lowercase_attribute(self): - """Test when attribute is in lower case.""" - record_list = self.validate('data_clin_coldefs_lowercase_attribute.txt', - validateData.PatientClinicalValidator) - # expecting an debug message followed by the error, and rest 2 info messages - self.assertEqual(4, len(record_list)) - # error about the lowercase value of sausage column - self.assertEqual(logging.ERROR, record_list[1].levelno) - self.assertEqual(5, record_list[1].line_number) - self.assertEqual(6, record_list[1].column_number) - self.assertIn('Attribute name not in upper case', record_list[1].getMessage()) - - def test_hardcoded_attributes(self): - - """Test requirements on the data type or level of some attributes.""" - - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_clin_coldefs_hardcoded_attrs.txt', - validateData.PatientClinicalValidator) - self.assertEqual(3, len(record_list)) - record_iterator = iter(record_list) - - # Expect error for OS_MONTHS being a STRING instead of NUMBER - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(3, record.line_number) - self.assertEqual(2, record.column_number) - self.assertIn(record.cause, 'STRING') - - # Expect error for sample attribute in patient clinical data - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(5, record.line_number) - self.assertEqual(6, record.column_number) - self.assertIn(record.cause, 'OTHER_SAMPLE_ID') - - # Expect warning for sample attribute in patient clinical data - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(5, record.line_number) - self.assertEqual(7, record.column_number) - self.assertIn(record.cause, 'METASTATIC_SITE') - - def test_banned_attribute(self): - """Test when attribute is is not allowed.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_clin_coldefs_banned_attribute.txt', - validateData.PatientClinicalValidator) - # expecting 1 error message - self.assertEqual(1, len(record_list)) - record_iterator = iter(record_list) - record = next(record_iterator) - - # error about the banned value of mutation count column - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(5, record.line_number) - self.assertEqual(6, record.column_number) - self.assertIn('MUTATION_COUNT and FRACTION_GENOME_ALTERED are calculated in cBioPortal', - record.getMessage()) - -class ClinicalValuesTestCase(DataFileTestCase): - - """Tests for validations on the values of clinical attributes.""" - - def test_sample_twice_in_one_file(self): - """Test when a sample is defined twice in the same file.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_clin_repeated_sample.txt', - validateData.SampleClinicalValidator) - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(record.line_number, 11) - self.assertEqual(2, record.column_number) - - def test_tcga_sample_twice_in_one_file(self): - """Test when a TCGA sample is defined twice in the same file.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_clin_repeated_tcga_sample.txt', - validateData.SampleClinicalValidator) - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(record.line_number, 11) - self.assertEqual(2, record.column_number) - - def test_sample_with_invalid_characters_in_sample_id(self): - """Test when a invalid characters are found in SAMPLE_ID.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_clin_wrong_ids.txt', - validateData.SampleClinicalValidator) - self.assertEqual(6, len(record_list)) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(6, record.line_number) - self.assertIn('can only contain letters, numbers, points, underscores and/or hyphens', record.getMessage()) - # last one: - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(record.line_number, 12) - self.assertIn('can only contain letters, numbers, points, underscores and/or hyphens', record.getMessage()) - - - -class PatientAttrFileTestCase(PostClinicalDataFileTestCase): - - """Tests for validation of values specific to patient attribute files.""" - - def test_patient_without_samples(self): - """Test if a warning is issued for patients absent in the sample file.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_clin_patient_without_samples.txt', - validateData.PatientClinicalValidator) - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(record.line_number, 10) - self.assertEqual('CASPER', record.cause) - self.assertIn('sample', record.getMessage().lower()) - - def test_patient_without_attributes(self): - """Test if a warning is issued for patients absent in the patient file.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_clin_missing_patient.txt', - validateData.PatientClinicalValidator) - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertFalse(hasattr(record, 'line_number'), - 'logrecord is about a specific line') - self.assertEqual('TEST-PAT4', record.cause) - self.assertIn('missing', record.getMessage().lower()) - - def test_hardcoded_attr_values(self): - """Test if attributes with set meanings have recognized values.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_clin_hardcoded_attr_vals.txt', - validateData.PatientClinicalValidator) - self.assertEqual(6, len(record_list)) - record_iterator = iter(record_list) - # OS_STATUS not 0:LIVING - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(6, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('0:ALIVE', record.cause) - # DFS_STATUS having an OS_STATUS value - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(7, record.line_number) - self.assertEqual(5, record.column_number) - self.assertEqual('0:LIVING', record.cause) - # PFS_STATUS not start with 0 / 1 - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(8, record.line_number) - self.assertEqual(7, record.column_number) - self.assertEqual('PROGRESSION', record.cause) - # wrong casing for OS_STATUS - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(9, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('0:living', record.cause) - # DFS_STATUS not 1:Recurred/Progressed - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(record.line_number, 11) - self.assertEqual(5, record.column_number) - self.assertEqual('1:recurred/progressed', record.cause) - # unspecified OS_MONTHS while OS_STATUS is 1:DECEASED - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(record.line_number, 13) - self.assertIn('OS_MONTHS is not specified for deceased patient. Patient ' - 'will be excluded from survival curve and month of death ' - 'will not be shown on patient view timeline.', - record.getMessage()) - - def test_patient_with_invalid_characters_in_patient_id(self): - """Test when a invalid characters are found in PATIENT_ID.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_clin_wrong_patient_id.txt', - validateData.PatientClinicalValidator) - self.assertEqual(len(record_list), 24) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(6, record.line_number) - self.assertIn('can only contain letters, numbers, points, underscores and/or hyphens', record.getMessage()) - - def test_date_in_nondate_column(self): - """Test when a sample is defined twice in the same file.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_clin_date_in_nondate_column.txt', - validateData.PatientClinicalValidator) - self.assertEqual(2, len(record_list)) - record_iterator = iter(record_list) - # First record contains 'Jan-14' - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(8, record.line_number) - self.assertEqual(6, record.column_number) - self.assertEqual('Jan-14', record.cause) - self.assertIn('Date found when no date was expected', record.getMessage()) - # Second record contains '4-Oct' - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(9, record.line_number) - self.assertEqual(6, record.column_number) - self.assertEqual('4-Oct', record.cause) - self.assertIn('Date found when no date was expected', record.getMessage()) - - -class TimelineValuesDataValidationTest(DataFileTestCase): - - """Test values specific to timeline files are appropriately validated.""" - - def test_start_date_validation_TimelineValidator(self): - """timeline validator requires START_DATE in timeline values to - have a non-'NA' value. - """ - - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_timeline_invalid_start_date.txt', - validateData.TimelineValidator) - self.assertEqual(2, len(record_list)) - for error in record_list: - self.assertEqual("ERROR", error.levelname) - self.assertIn("Invalid START_DATE", error.getMessage()) - - -# TODO: make tests in this testcase check the number of properly defined types -class CancerTypeFileValidationTestCase(DataFileTestCase): - - """Tests for validations of cancer type files in a study.""" - - def test_new_cancer_type(self): - """Test when a study defines a new cancer type.""" - # {"id":"luad","name":"Lung Adenocarcinoma","color":"Gainsboro"} - self.logger.setLevel(logging.INFO) - record_list = self.validate('data_cancertype_lung.txt', - validateData.CancerTypeValidator) - # expecting an info message being about a new cancer type being added - self.assertEqual(3, len(record_list)) - record = record_list.pop() - record = record_list.pop() - record = record_list.pop() - self.assertEqual(logging.INFO, record.levelno) - self.assertEqual('luad', record.cause) - self.assertIn('will be added', record.getMessage().lower()) - - def test_cancer_type_missing_column(self): - """Test when a new cancer type file misses a column.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cancertype_missing_color_col.txt', - validateData.CancerTypeValidator) - # expecting an error about the number of columns - self.assertEqual(2, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('columns', record.getMessage()) - - def test_cancer_type_missing_value(self): - """Test when a new cancer type has a blank required field.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cancertype_blank_color_col.txt', - validateData.CancerTypeValidator) - # expecting an error about the missing value - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(3, record.column_number) - self.assertIn('blank', record.getMessage().lower()) - - def test_cancer_type_undefined_parent(self): - """Test when a new cancer type's parent cancer type is not known.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cancertype_undefined_parent.txt', - validateData.CancerTypeValidator) - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(4, record.column_number) - - def test_cancer_type_invalid_color(self): - """Test error if a cancer type's color is not a web color name.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cancertype_invalid_color.txt', - validateData.CancerTypeValidator) - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(3, record.column_number) - - def test_cancer_type_matching_portal(self): - """Test when an existing cancer type is defined exactly as known.""" - record_list = self.validate('data_cancertype_confirming_existing.txt', - validateData.CancerTypeValidator) - # expecting only status messages about the file being validated - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_cancer_type_disagreeing_with_portal(self): - """Test when an existing cancer type is redefined by a study.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cancertype_redefining.txt', - validateData.CancerTypeValidator) - # expecting an error message about the cancer type file - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(2, record.column_number) - self.assertEqual('Breast Cancer', record.cause) - - def test_cancer_type_defined_twice(self): - """Test when a study defines the same cancer type id twice. - - No difference is assumed between matching and disagreeing definitions; - this validation just fails as it never makes sense to do this. - """ - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cancertype_lung_twice.txt', - validateData.CancerTypeValidator) - # expecting an error message about the doubly-defined cancer type - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual('luad', record.cause) - self.assertIn('defined a second time', record.getMessage()) - - -class GeneIdColumnsTestCase(PostClinicalDataFileTestCase): - - """Tests validating gene-wise files with different combinations of gene id columns, - now with invalid Entrez ID and/or Hugo names """ - - def test_both_name_and_entrez(self): - """Test when a file has both the Hugo name and Entrez ID columns.""" - record_list = self.validate('data_cna_genecol_presence_both.txt', - validateData.CNADiscreteValidator) - # expecting only status messages about the file being validated - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_name_only(self): - """Test when a file has a Hugo name column but none for Entrez IDs.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_cna_genecol_presence_hugo_only.txt', - validateData.CNADiscreteValidator) - # expecting 1 warning - self.assertEqual(1, len(record_list)) - for record in record_list: - self.assertEqual(logging.WARNING, record.levelno) - - def test_entrez_only(self): - """Test when a file has an Entrez ID column but none for Hugo names.""" - record_list = self.validate('data_cna_genecol_presence_entrez_only.txt', - validateData.CNADiscreteValidator) - # expecting only status messages about the file being validated - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_neither_name_nor_entrez(self): - """Test when a file lacks both the Entrez ID and Hugo name columns.""" - record_list = self.validate('data_cna_genecol_presence_neither.txt', - validateData.CNADiscreteValidator) - # two errors after the info: the first makes the file unparsable - self.assertEqual(3, len(record_list)) - for record in record_list[1:]: - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(1, record_list[1].line_number) - - # Tests validating gene-wise files with different combinations of gene id columns, - # now with invalid Entrez ID and/or Hugo names """ - - def test_both_name_and_entrez_but_invalid_hugo(self): - """Test when a file has both the Hugo name and Entrez ID columns, but hugo is invalid.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_cna_genecol_presence_both_invalid_hugo.txt', - validateData.CNADiscreteValidator) - # expecting two error messages: - self.assertEqual(2, len(record_list)) - for record in record_list: - self.assertEqual(logging.WARNING, record.levelno) - # expecting these to be the cause: - self.assertEqual('XXACAP3', record_list[0].cause) - self.assertEqual('XXAGRN', record_list[1].cause) - - def test_both_name_and_entrez_but_hugo_starts_with_integer(self): - """Test when gene symbol is invalid because starts with integer. - - Test when a file has both the Hugo name and Entrez ID columns, but gene symbol is invalid because it starts with - an integer. Also '20MER2', '3.8-1.4' and "5'URS" are added to this dataset, which are some of the few exceptions - that are allowed to start with an integer. This validation step was added to catch unintentional gene conversion - by Excel, for example SEPT9 -> 9-Sep - """ - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cna_genecol_presence_both_invalid_hugo_integer.txt', - validateData.CNADiscreteValidator, - extra_meta_fields={'meta_file_type': 'CNA_DISCRETE'}) - # expecting two error messages: - self.assertEqual(0, len(record_list)) - for record in record_list: - self.assertEqual(logging.WARNING, record.levelno) - # expecting these to be the cause: - #self.assertEqual('1-ACAP3', record_list[0].cause) - #self.assertEqual('9-SEP', record_list[1].cause) - - def test_both_name_and_entrez_but_invalid_entrez(self): - """Test when a file has both the Hugo name and Entrez ID columns, but entrez is invalid.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_cna_genecol_presence_both_invalid_entrez.txt', - validateData.CNADiscreteValidator) - # expecting two warning messages: - self.assertEqual(2, len(record_list)) - for record in record_list: - self.assertEqual(logging.WARNING, record.levelno) - # expecting these to be the cause: - self.assertEqual('999999999', record_list[0].cause) - self.assertEqual('888888888', record_list[1].cause) - - def test_both_name_and_entrez_but_invalid_couple(self): - """Test when a file has both the Hugo name and Entrez ID columns, both valid, but association is invalid.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_cna_genecol_presence_both_invalid_couple.txt', - validateData.CNADiscreteValidator) - # expecting two error messages: - self.assertEqual(2, len(record_list)) - for record in record_list: - self.assertEqual(logging.WARNING, record.levelno) - # expecting these to be the cause: - self.assertIn('ACAP3', record_list[0].cause) - self.assertIn('116983', record_list[1].cause) - - def test_name_only_but_invalid(self): - """Test when a file has a Hugo name column but none for Entrez IDs, and hugo is wrong.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_cna_genecol_presence_hugo_only_invalid.txt', - validateData.CNADiscreteValidator) - # expecting two warning messages: - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertEqual(logging.WARNING, record.levelno) - # expecting these to be the cause: - self.assertIn('The recommended column Entrez_Gene_Id', record_list[0].message) - self.assertEqual('XXATAD3A', record_list[1].cause) - self.assertEqual('XXATAD3B', record_list[2].cause) - - def test_name_only_but_ambiguous(self): - """Test when a file has a Hugo name column but none for Entrez IDs, and hugo maps to multiple Entrez ids. - This test is also an indirect test of the aliases functionality as this is now the only place - where ambiguity could arise (in gene table Hugo symbol is now unique)""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_cna_genecol_presence_hugo_only_ambiguous.txt', - validateData.CNADiscreteValidator) - # expecting one error message - self.assertEqual(2, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - # expecting this gene to be the cause - self.assertEqual('TRAPPC2P1', record.cause) - - def test_entrez_only_but_invalid(self): - """Test when a file has an Entrez ID column but none for Hugo names, and entrez is wrong.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_cna_genecol_presence_entrez_only_invalid.txt', - validateData.CNADiscreteValidator) - # expecting two warning messages: - self.assertEqual(2, len(record_list)) - for record in record_list: - self.assertEqual(logging.WARNING, record.levelno) - # expecting these to be the cause: - self.assertEqual('1073741824', record_list[0].cause) - self.assertEqual('2147483647', record_list[1].cause) - - def test_unambiguous_hugo_also_used_as_alias(self): - """Test referencing a gene by a Hugo symbol occurring as an alias too. - - This should yield a warning, as the gene for which it is an alias - might be the gene intended by the user. - """ - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_cna_genecol_presence_hugo_only_possible_alias.txt', - validateData.CNADiscreteValidator) - # expecting one error message - self.assertEqual(2, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - # expecting this gene to be the cause - self.assertEqual('ACT', record.cause) - - def test_blank_column_heading(self): - """Test whether an error is issued if a column has a blank name.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cna_blank_heading.txt', - validateData.CNADiscreteValidator) - self.assertEqual(4, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(1, record.line_number) - self.assertEqual(2, record.column_number) - self.assertEqual('', record.cause) - record = next(record_iterator) - self.assertEqual(1, record.line_number) - self.assertEqual(8, record.column_number) - self.assertEqual(' ', record.cause) - record = next(record_iterator) - self.assertIn('white space in sample_id', record.getMessage().lower()) - record = next(record_iterator) - self.assertIn('cannot be parsed', record.getMessage().lower()) - - def test_cytoband_column(self): - """Test that the validator will not fail for a column for Cytoband. This column is default outputted by GISTIC2 - and ignored in the importer.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_cna_cytoband.txt', - validateData.CNADiscreteValidator) - # expecting zero warning messages: - self.assertEqual(0, len(record_list)) - - # TODO - add extra unit tests for the genesaliases scenarios (now only test_name_only_but_ambiguous tests part of this) - - -class FeatureWiseValuesTestCase(PostClinicalDataFileTestCase): - - """Verify that values are being checked in feature/sample matrix files.""" - - def test_valid_discrete_cna(self): - """Check a valid discrete CNA file that should yield no errors.""" - self.logger.setLevel(logging.DEBUG) - record_list = self.validate('data_cna_genecol_presence_both.txt', - validateData.CNADiscreteValidator) - # expecting only status messages about the file being validated - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_repeated_gene(self): - """Test if a warning is issued and the line is skipped if duplicate. - - In the test data, the Entrez ID in line 6 is removed. Therefore the gene symbol and gene alias table will be - used to look up this gene in the database. ENTB5 is an alias for Entrez 116983 (ACAP3). This gene was defined - earlier in the file, so the CENTB5 entry will be skipped. There are invalid values in this row, but because the - entry is skipped, the values should not be validated.""" - - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_cna_duplicate_gene.txt', - validateData.CNADiscreteValidator) - # expecting a warning about the duplicate gene, - # but no errors about values - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(6, record.line_number) - self.assertTrue(record.cause.startswith('116983')) - - def test_invalid_discrete_cna(self): - """Check a discrete CNA file with values that should yield errors.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cna_invalid_values.txt', - validateData.CNADiscreteValidator) - # expecting various errors about data values, about one per line - self.assertEqual(6, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(3, record.line_number) - self.assertEqual(7, record.column_number) - # self.assertEqual(' ', record.cause) if blank cells had a 'cause' - record = next(record_iterator) - self.assertEqual(5, record.line_number) - self.assertEqual(4, record.column_number) - # self.assertEqual('', record.cause) if blank cells had a 'cause' - record = next(record_iterator) - self.assertEqual(6, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('3', record.cause) - record = next(record_iterator) - self.assertEqual(7, record.line_number) - self.assertEqual(6, record.column_number) - self.assertEqual('AURKAIP1', record.cause) - # Only "NA" is supported, anything else should be an error: - record = next(record_iterator) - self.assertEqual(8, record.line_number) - self.assertEqual(5, record.column_number) - self.assertEqual('[Not Available]', record.cause) - # Only -2, -1.5, -1, 0, 1, 2 are supported, anything else should be an error: - record = next(record_iterator) - self.assertEqual(9, record.line_number) - self.assertEqual(6, record.column_number) - self.assertEqual('1.5', record.cause) - - def test_valid_rppa(self): - """Check a valid RPPA file that should yield no errors.""" - self.logger.setLevel(logging.DEBUG) - record_list = self.validate('data_rppa_valid.txt', - validateData.ProteinLevelValidator) - # expecting only status messages about the file being validated - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_invalid_rppa(self): - """Check an RPPA file with values that should yield errors.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_rppa_invalid_values.txt', - validateData.ProteinLevelValidator) - # expecting several errors - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(3, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('spam', record.cause) - record = next(record_iterator) - self.assertEqual(6, record.line_number) - self.assertEqual(5, record.column_number) - self.assertEqual('', record.cause) - record = next(record_iterator) - self.assertEqual(9, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual(' ', record.cause) - - def test_repeated_rppa_entry(self): - """Test if a warning is issued and the line is skipped if duplicate.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_rppa_duplicate_entries.txt', - validateData.ProteinLevelValidator) - # expecting only a warning - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(record.line_number, 14) - self.assertTrue(record.cause.startswith('B-Raf')) - - def test_na_gene_in_rppa(self): - """Test if a warning is issued if the gene symbol NA occurs in RPPA.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_rppa_na_gene.txt', - validateData.ProteinLevelValidator) - # expecting only a warning for each NA line - self.assertEqual(9, len(record_list)) - for record in record_list: - self.assertEqual(logging.WARNING, record.levelno) - for record, expected_line in zip(record_list, list(range(14, 23))): - self.assertEqual(record.line_number, expected_line) - self.assertEqual(1, record.column_number) - self.assertIn('NA', record.getMessage()) - - def test_gsva_range_gsva_scores(self): - """Test if an error is issued if the score is outside GSVA scoring range""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_gsva_scores_outrange.txt', - validateData.GsvaScoreValidator) - # expecting an error for each line that contains value not within -1 and 1 - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(2, record.line_number) - self.assertEqual(5, record.column_number) - self.assertEqual('1.5', record.cause) - record = next(record_iterator) - self.assertEqual(5, record.line_number) - self.assertEqual(2, record.column_number) - self.assertEqual('2.371393691351566', record.cause) - record = next(record_iterator) - self.assertEqual(7, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('-12', record.cause) - - - def test_range_gsva_pvalues(self): - """Test if an error is issued if the score is outside pvalue range""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_gsva_pvalues_outrange.txt', - validateData.GsvaPvalueValidator) - # expecting an error for each line that contains value not within 0 and 1 - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(4, record.line_number) - self.assertEqual(2, record.column_number) - self.assertEqual('1.5', record.cause) - record = next(record_iterator) - self.assertEqual(6, record.line_number) - self.assertEqual(4, record.column_number) - self.assertEqual('1e3', record.cause) - record = next(record_iterator) - self.assertEqual(8, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('-0.00000000000000005', record.cause) - return - - def test_missing_column_gsva(self): - #Test if an error is issued if the score and pvalue tables do not have same header - self.logger.setLevel(logging.ERROR) - - ### Error should appear when the second file is validated - record_list1 = self.validate('data_gsva_pvalues_missing_column.txt', - validateData.GsvaPvalueValidator) - - record_list2 = self.validate('data_gsva_scores_missing_column.txt', - validateData.GsvaScoreValidator) - self.assertEqual(0, len(record_list1)) - self.assertEqual(2, len(record_list2)) - for record in record_list2: - self.assertEqual(logging.ERROR, record.levelno) - record_iterator = iter(record_list2) - record = next(record_iterator) - self.assertEqual(1, record.line_number) - self.assertIn('headers', record.getMessage().lower()) - self.assertIn('different', record.getMessage().lower()) - record = next(record_iterator) - self.assertIn('invalid', record.getMessage().lower()) - self.assertIn('column', record.getMessage().lower()) - return - - def test_missing_row_gsva(self): - #Test if an error is issued if the score and pvalue table does not have same rownames - self.logger.setLevel(logging.ERROR) - - ### Error should appear when the second file is validated - record_list1 = self.validate('data_gsva_pvalues_missing_row.txt', - validateData.GsvaPvalueValidator) - - record_list2 = self.validate('data_gsva_scores_missing_row.txt', - validateData.GsvaScoreValidator) - self.assertEqual(0, len(record_list1)) - self.assertEqual(1, len(record_list2)) - for record in record_list2: - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual("Gene sets column in score and p-value file are not equal. The same set of gene sets should be used in the score and p-value files for this study. Please ensure that all gene set id's of one file are present in the other gene set data file.", record.getMessage()) - return - - -class CNADiscreteLongFormatValidatorTestCase(PostClinicalDataFileTestCase): - def test_all_columns(self): - """ - Test when a file has all compulsory columns (Hugo_Symbol, Entrez_Gene_Id, Sample_Id, Value, cbp_driver, - cbp_driver_annotation, cbp_driver_tiers, and cbp_driver_tiers_annotation). - """ - record_list = self.validate('data_cna_long_genecol_presence_all.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # expecting only status messages about the file being validated - self.assertEqual(5, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_hugo_only(self): - """Test when a file has a Hugo Symbol column but none for Entrez IDs.""" - record_list = self.validate('data_cna_long_genecol_presence_hugo_only.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # expecting only status messages about the file being validated - self.assertEqual(5, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_entrez_only(self): - """Test when a file has an Entrez ID column but none for Hugo names.""" - record_list = self.validate('data_cna_long_genecol_presence_entrez_only.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # expecting only status messages about the file being validated - self.assertEqual(5, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_neither_genic_columns(self): - """Test when a file lacks the Entrez ID and Hugo name columns.""" - record_list = self.validate('data_cna_long_genecol_presence_neither_genic.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # two errors after the info: the first makes the file unparsable - self.assertEqual(3, len(record_list)) - #First message is a debug message - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(record.levelno, logging.DEBUG) - self.assertEqual(record.getMessage(), - 'Starting validation of file') - #Second message is an error - record = next(record_iterator) - self.assertEqual(record.levelno, logging.ERROR) - self.assertEqual(record.getMessage(), - 'Hugo_Symbol or Entrez_Gene_Id column needs to be present in the file.') - #Third message is an error - record = next(record_iterator) - self.assertEqual(record.levelno, logging.ERROR) - self.assertEqual(record.getMessage(), - 'Invalid column header, file cannot be parsed') - - def test_missing_sample_column(self): - """Test when a file do not have the Sample_Id column.""" - record_list = self.validate('data_cna_long_genecol_no_sample_id.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # two errors after the info: the first makes the file unparsable - self.assertEqual(3, len(record_list)) - #First message is a debug message - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(record.levelno, logging.DEBUG) - self.assertEqual(record.getMessage(), - 'Starting validation of file') - #Second message is an error - record = next(record_iterator) - self.assertEqual(record.levelno, logging.ERROR) - self.assertEqual(record.getMessage(), - 'Missing column: Sample_Id') - #Third message is an error - record = next(record_iterator) - self.assertEqual(record.levelno, logging.ERROR) - self.assertEqual(record.getMessage(), - 'Invalid column header, file cannot be parsed') - def test_missing_value_column(self): - """Test when a file do not have the Value column.""" - record_list = self.validate('data_cna_long_genecol_no_value.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # two errors after the info: the first makes the file unparsable - self.assertEqual(3, len(record_list)) - #First message is a debug message - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(record.levelno, logging.DEBUG) - self.assertEqual(record.getMessage(), - 'Starting validation of file') - #Second message is an error - record = next(record_iterator) - self.assertEqual(record.levelno, logging.ERROR) - self.assertEqual(record.getMessage(), - 'Missing column: Value') - #Third message is an error - record = next(record_iterator) - self.assertEqual(record.levelno, logging.ERROR) - self.assertEqual(record.getMessage(), - 'Invalid column header, file cannot be parsed') - - def test_missing_custom_driver_annotation_columns(self): - """Test when a file do not have the custom driver annotation columns.""" - record_list = self.validate('data_cna_long_genecol_no_custom_driver.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # expecting only status messages about the file being validated - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_missing_namespace_column(self): - - """Test error is raised when namespace defined, but the corresponding column is not present""" - self.logger.setLevel(logging.INFO) - record_list = self.validate('data_cna_long_genecol_no_namespace.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'Test'}) - self.assertEqual(len(record_list), 2) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(record.levelno, logging.ERROR) - self.assertEqual(record.getMessage(), - 'test namespace defined but the file does not have any matching columns') - - def test_valid_discrete_long_cna(self): - """Check a valid discrete CNA Long file that should yield no errors.""" - self.logger.setLevel(logging.DEBUG) - record_list = self.validate('data_cna_long_genecol_presence_all.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # expecting only status messages about the file being validated - self.assertEqual(5, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_duplicated_genes_same_sample(self): - """Test if a errors are issued when two exact genes are mapped to the same sample.""" - - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cna_long_duplicated_gene.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # Expecting 1 error due to a duplicated gene - self.assertEqual(1, len(record_list)) - # The message is an error - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(record.levelno, logging.ERROR) - self.assertEqual(record.getMessage(), - 'Duplicated gene found within the same sample.') - - def test_two_hugos_same_entrez(self): - """Test if a errors are issued when two Hugo Symbols map to the same Entrez Gene Id. - - In the test data, CENTB5 is introduced in 5 lines without an Entrez Gene Id. CENTB5 is an alias for - Entrez 116983 (ACAP3). Both genes are present 5 times, in 5 different samples. Therefore, we should expect - errors due to two Hugo Symbols mapping to the same Entrez Gene Id.""" - - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cna_long_two_hugos_same_gene.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # Expecting 5 error messages - self.assertEqual(5, len(record_list)) - for record in record_list[1:]: - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(record.getMessage(), - 'Two different Hugo Symbols that map to the same Entrez Gene Id found within the same sample.') - - def test_one_hugo_same_entrez(self): - """Test if a errors are issued when one Hugo Symbol map to an entry with the same Entrez Gene Id. This - happens 5 times in the file, one per sample.""" - - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cna_long_one_hugo_same_gene.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # Expecting 5 error messages - self.assertEqual(5, len(record_list)) - for record in record_list[1:]: - self.assertEqual(logging.ERROR, record.levelno) - - def test_duplicated_entrez_same_sample(self): - """Test if a errors are issued when two genes with the same Entrez are mapped to the same sample.""" - - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cna_long_duplicated_entrez.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # Expecting 1 error due to a duplicated entrez - self.assertEqual(1, len(record_list)) - # The message is an error - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(record.levelno, logging.ERROR) - self.assertEqual(record.getMessage(), - 'Duplicated Entrez Gene Id found within the same sample.') - - def test_invalid_long_discrete_cna(self): - """Check a discrete CNA long file with values that should yield errors.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_cna_long_invalid_values.txt', - validateData.CNADiscreteLongValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - # expecting various errors about data values, about one per line - self.assertEqual(5, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(record.getMessage(), - 'Invalid CNA value: possible values are [-2, -1.5, -1, 0, 1, 2, NA]') - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(7, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('[Not Available]', record.cause) - record = next(record_iterator) - self.assertEqual(12, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('ATAD3B', record.cause) - record = next(record_iterator) - self.assertEqual(18, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('N/A', record.cause) - record = next(record_iterator) - self.assertEqual(24, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('1.5', record.cause) - record = next(record_iterator) - self.assertEqual(33, record.line_number) - self.assertEqual(3, record.column_number) - self.assertEqual('3', record.cause) - -class MultipleDataFileValidatorTestCase(unittest.TestCase): - - def feature_id_is_accepted(self): - mockval = Mock() - validateData.MultipleDataFileValidator.parseFeatureColumns(mockval, ["id-without_whitespace"]) - mockval.logger.error.assert_not_called() - mockval.logger.warning.assert_not_called() - - def test_illegal_character_in_feature_id_issues_error(self): - mockval = Mock() - validateData.MultipleDataFileValidator.parseFeatureColumns(mockval, ["id with whitespace"]) - mockval.logger.error.assert_called() - - def test_comma_in_feature_id_issues_error(self): - mockval = Mock() - validateData.MultipleDataFileValidator.parseFeatureColumns(mockval, ["id,with-comma"]) - mockval.logger.error.assert_called() - - -class ContinuousValuesTestCase(PostClinicalDataFileTestCase): - - """Verify that values are being checked in feature/sample matrix files with float values.""" - - def test_invalid_methylation(self): - """Check an invalid methylation file that should yield errors.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_methylation_invalid_values.txt', - validateData.ContinuousValuesValidator) - # expecting 3 errors - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual('n.a.', record.cause) - record = next(record_iterator) - self.assertEqual('', record.cause) - record = next(record_iterator) - self.assertEqual('Na', record.cause) - - -class MutationsSpecialCasesTestCase(PostClinicalDataFileTestCase): - - def test_normal_samples_list_in_maf(self): - ''' - For mutations MAF files there is a column called "Matched_Norm_Sample_Barcode". - In the respective meta file it is possible to give a list of sample codes against which this - column "Matched_Norm_Sample_Barcode" is validated. Here we test if this - validation works well. - ''' - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('mutations/data_mutations_invalid_norm_samples.maf', - validateData.MutationsExtendedValidator, - {'normal_samples_list': - 'TCGA-BH-A18H-10,' - 'TCGA-B6-A0RS-10,' - '' # TCGA-BH-A0HP-10 - 'TCGA-BH-A18P-11, ' - 'TCGA-C8-A138-10' - 'TCGA-A2-A0EY-10,' - '', # TCGA-A8-A08G-10 - 'swissprot_identifier': 'accession'}) - # we expect 2 errors about invalid normal samples - self.assertEqual(2, len(record_list)) - # check if both messages come from printDataInvalidStatement: - found_one_of_the_expected = False - for error in record_list: - self.assertEqual("ERROR", error.levelname) - self.assertEqual("printDataInvalidStatement", error.funcName) - if error.cause == 'TCGA-BH-A0HP-10': - found_one_of_the_expected = True - self.assertTrue(found_one_of_the_expected) - - def test_missing_aa_change_column(self): - """One of Amino_Acid_Change or HGVSp_Short is required, so - there should be a warning if both Amino_Acid_Change and HGVSp_Short are missing""" - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('mutations/data_mutations_missing_aa_change_column.maf', - validateData.MutationsExtendedValidator) - # we expect 2 errors, something like: - # ERROR: data_mutations_missing_aa_change_column.maf: line 1: At least one of the columns HGVSp_Short or Amino_Acid_Change needs to be present. - # ERROR: data_mutations_missing_aa_change_column.maf: Invalid column header, file cannot be parsed - self.assertEqual(2, len(record_list)) - # check if both messages come from printDataInvalidStatement: - self.assertIn("hgvsp_short", record_list[0].getMessage().lower()) - self.assertIn("invalid column header", record_list[1].getMessage().lower()) - - def test_maf_file_checks(self): - """Test errors for MAF file which is not according MAF file checks #6, #10 and #11""" - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - # Test file is a variant on test_output.custom_isoforms.maf from vcf2maf - record_list = self.validate('mutations/data_mutations_test_variant_types.maf', - validateData.MutationsExtendedValidator, None, True, True) - # we expect 11 errors - self.assertEqual(len(record_list), 11) - record_iterator = iter(record_list) - # expect error for bigger start than end position - record = next(record_iterator) - self.assertEqual(2, record.line_number) - self.assertIn('Start_Position should be smaller than or equal to End_Position.', record.getMessage()) - # expect error for not correct start and end position in INS - record = next(record_iterator) - self.assertEqual(2, record.line_number) - self.assertIn('Variant_Type indicates insertion, but difference in Start_Position and End_Position does ' - 'not equal to 1 or the length or the Reference_Allele.', record.getMessage()) - # expect error for incorrect length of reference allele with variant_type INS - record = next(record_iterator) - self.assertEqual(3, record.line_number) - self.assertIn('Variant_Type indicates insertion, but length of Reference_Allele is bigger than the length ' - 'of the Tumor_Seq_Allele1 and/or 2 and therefore indicates deletion.', record.getMessage()) - # expect error for not correct start and end position in DEL - record = next(record_iterator) - self.assertEqual(4, record.line_number) - self.assertIn('Variant_Type indicates deletion, but the difference between Start_Position and End_Position ' - 'are not equal to the length of the Reference_Allele.', record.getMessage()) - # expect error for incorrect length of allele with variant_type DEL - record = next(record_iterator) - self.assertEqual(5, record.line_number) - self.assertIn('Variant_Type indicates deletion, but length of Reference_Allele is smaller than the length ' - 'of Tumor_Seq_Allele1 and/or Tumor_Seq_Allele2, indicating an insertion.', record.getMessage()) - # expect error for incorrect length of allele with variant_type SNP - record = next(record_iterator) - self.assertEqual(6, record.line_number) - self.assertIn('Variant_Type indicates a SNP, but length of Reference_Allele, Tumor_Seq_Allele1 ' - 'and/or Tumor_Seq_Allele2 do not equal 1.', record.getMessage()) - # expect error for incorrect Allele with variant_type SNP - record = next(record_iterator) - self.assertEqual(7, record.line_number) - self.assertIn('Variant_Type indicates a SNP, but Reference_Allele, Tumor_Seq_Allele1 ' - 'and/or Tumor_Seq_Allele2 contain deletion (-).', record.getMessage()) - # expect error for incorrect length of allele with variant_type DNP - record = next(record_iterator) - self.assertEqual(8, record.line_number) - self.assertIn('Variant_Type indicates a DNP, but length of Reference_Allele, Tumor_Seq_Allele1 ' - 'and/or Tumor_Seq_Allele2 do not equal 2.', record.getMessage()) - # expect error for incorrect length of allele with variant_type TNP - record = next(record_iterator) - self.assertEqual(9, record.line_number) - self.assertIn('Variant_Type indicates a TNP, but length of Reference_Allele, Tumor_Seq_Allele1 ' - 'and/or Tumor_Seq_Allele2 do not equal 3.', record.getMessage()) - # expect error for incorrect length of allele with variant_type ONP - record = next(record_iterator) - self.assertEqual(record.line_number, 10) - self.assertIn('Variant_Type indicates a ONP, but length of Reference_Allele, ' - 'Tumor_Seq_Allele1 and 2 are not bigger than 3 or are of unequal lengths.', record.getMessage()) - record = next(record_iterator) - self.assertEqual(record.line_number, 11) - self.assertIn('Allele Based column Reference_Allele contains invalid character.', record.getMessage()) - - def test_special_allele_cases(self): - """Test errors in mutation file which contain special cases of the Allele Based columns""" - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - # Test file is a variant on test_output.custom_isoforms.maf from vcf2maf - record_list = self.validate('mutations/data_mutations_check_special_cases_allele.maf', - validateData.MutationsExtendedValidator, None, True, True) - - # We expect 3 errors - self.assertEqual(3, len(record_list)) - record_iterator = iter(record_list) - # expect error for the same values in Reference_Allele, Tumor_Seq_Allele1 and Tumor_Seq_Allele2 columns - record = next(record_iterator) - self.assertEqual(2, record.line_number) - self.assertIn('All Values in columns Reference_Allele, Tumor_Seq_Allele1 and Tumor_Seq_Allele2 are equal.', - record.getMessage()) - # expect error for deletion, Tumor Seq allele columns do not contain - - # even though the lengths of the sequences are equal - record = next(record_iterator) - self.assertEqual(4, record.line_number) - self.assertIn('Variant_Type indicates a deletion, Allele based columns are the same length, ' - 'but Tumor_Seq_Allele columns do not contain -, indicating a SNP.', record.getMessage()) - # expect error for ONP, lengths of sequences in Reference_Allele, - # Tumor_Seq_Allele1 and Tumor_Seq_Allele2 are not equal - record = next(record_iterator) - self.assertEqual(5, record.line_number) - self.assertIn('Variant_Type indicates a ONP, but length of Reference_Allele, ' - 'Tumor_Seq_Allele1 and 2 are not bigger than 3 or are of unequal lengths.', record.getMessage()) - - def test_validation_status_MAF_checks(self): - """Test errors for MAF file which is not according MAF file checks #7, #8, #9 and #13""" - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - # Test file is a variant on mutation file from study_es_0 - record_list = self.validate('mutations/data_mutations_validation_status.maf', - validateData.MutationsExtendedValidator, None, True, True) - - # We expect 6 errors - self.assertEqual(6, len(record_list)) - record_iterator = iter(record_list) - # expect error for empty validation allele columns - record = next(record_iterator) - self.assertEqual(2, record.line_number) - self.assertIn('Validation Status is valid, but Validation Allele columns are empty.', record.getMessage()) - # expect error for invalid character in allele based column - record = next(record_iterator) - self.assertEqual(3, record.line_number) - self.assertIn('At least one of the Validation Allele Based columns (Tumor_Validation_Allele1, ' - 'Tumor_Validation_Allele2, Match_Norm_Validation_Allele1, Match_Norm_Validation_Allele2) ' - 'contains invalid character.', record.getMessage()) - # expect error for not equal tumor and normal allele columns when Validation_Status is invalid - record = next(record_iterator) - self.assertEqual(4, record.line_number) - self.assertIn('When Validation_Status is invalid the Tumor_Validation_Allele and Match_Norm_' - 'Validation_Allele columns should be equal.', record.getMessage()) - # expect error for undefined Validation_Method when Validation_Status is valid or invalid - record = next(record_iterator) - self.assertEqual(5, record.line_number) - self.assertIn('Validation Status is invalid, but Validation_Method is not defined.', record.getMessage()) - # expect error for incorrect Validation Allele Columns when Mutation_Status is Germline - record = next(record_iterator) - self.assertEqual(6, record.line_number) - self.assertIn('When Validation_Status is valid and Mutation_Status is Germline, the Tumor_Validation_Allele ' - 'should be equal to the Match_Norm_Validation_Allele.', record.getMessage()) - # expect error for incorrect Validation Allele Columns when Mutation_Status is Germline - record = next(record_iterator) - self.assertEqual(7, record.line_number) - self.assertIn('When Validation_Status is valid and Mutation_Status is Somatic, the Match_Norm_Validation_Allele' - ' columns should be equal to the Reference Allele and one of the Tumor_Validation_Allele columns' - ' should not be.', record.getMessage()) - - def test_warning_for_missing_SWISSPROT(self): - """If SWISSPROT is missing (or present and empty), user should be warned about it""" - # set level according to this test case: - self.logger.setLevel(logging.WARNING) - record_list = self.validate('mutations/data_mutations_missing_swissprot.maf', - validateData.MutationsExtendedValidator) - # we expect 1 warning, something like - # WARNING: data_mutations_missing_swissprot.maf: line 1: SWISSPROT column is recommended if you want to make sure that a specific isoform is used for the PFAM domains drawing in the mutations view.; wrong value: 'SWISSPROT column not found' - self.assertEqual(1, len(record_list)) - # check if both messages come from printDataInvalidStatement: - self.assertIn("swissprot column is recommended", - record_list[0].getMessage().lower()) - - def test_unknown_or_invalid_swissprot(self): - """Test warnings for invalid and unknown accessions under SWISSPROT.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate( - 'mutations/data_mutations_invalid_swissprot.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'accession'}) - self.assertEqual(2, len(record_list)) - record_iterator = iter(record_list) - # used a name instead of an accession - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(3, record.line_number) - self.assertEqual('A1CF_HUMAN', record.cause) - self.assertNotIn('portal', record.getMessage().lower()) - # neither a name nor an accession - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(5, record.line_number) - self.assertEqual('P99999,Z9ZZZ9ZZZ9', record.cause) - self.assertNotIn('portal', record.getMessage().lower()) - - def test_name_as_swissprot_identifier(self): - """Test if the SWISSPROT column is parsed as a name if meta says so.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate( - 'mutations/data_mutations_name_swissprot.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={'swissprot_identifier': 'name'}) - # the same errors as in test_implicit_name_as_swissprot_identifier() - self.assert_swissprotname_validated(record_list) - - def test_implicit_name_as_swissprot_identifier(self): - """Test if the SWISSPROT column is parsed as a name if unspecified.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate( - 'mutations/data_mutations_name_swissprot.maf', - validateData.MutationsExtendedValidator) - # warning about the implicit Swiss-Prot identifier type - record = record_list[0] - self.assertEqual(logging.WARNING, record.levelno) - self.assertIn('swissprot_identifier', record.getMessage()) - # the same errors as in test_name_as_swissprot_identifier() - self.assert_swissprotname_validated(record_list[1:]) - - def assert_swissprotname_validated(self, record_list): - """Assert names are validated in data_mutations_name_swissprot.maf.""" - self.assertEqual(2, len(record_list)) - record_iterator = iter(record_list) - # used an accession instead of a name - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(3, record.line_number) - self.assertEqual('Q9NQ94', record.cause) - self.assertNotIn('portal', record.getMessage().lower()) - # neither a name nor an accession - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(5, record.line_number) - self.assertEqual('A1CF_HUMAN,HBB_YEAST', record.cause) - self.assertNotIn('portal', record.getMessage().lower()) - - def test_invalid_swissprot_identifier_type(self): - """Test if the validator rejects files with nonsensical id types.""" - self.logger.setLevel(logging.ERROR) - meta_dictionary = validateData.cbioportal_common.parse_metadata_file( - 'test_data/mutations/meta_mutations_invalid_swissprot_idspec.txt', - self.logger, - study_id='spam') - record_list = self.get_log_records() - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual('namelessly', record.cause) - self.assertIsNone(meta_dictionary['meta_file_type'], 'metadata file was not rejected as invalid') - - def test_isValidAminoAcidChange(self): - """Test if proper warnings are given for wrong/blank AA change vals.""" - # set level according to this test case: - self.logger.setLevel(logging.WARNING) - record_list = self.validate( - 'mutations/data_mutations_wrong_aa_change.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={'swissprot_identifier': 'accession'}) - self.assertEqual(5, len(record_list)) - record_iterator = iter(record_list) - # empty field (and no HGVSp_Short column) - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertIn('Amino_Acid_Change', record.getMessage()) - self.assertIn('HGVSp_Short', record.getMessage()) - self.assertEqual(2, record.line_number) - # multiple specifications - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('p.', record.getMessage()) - self.assertEqual('p.A195V;p.I167I', record.cause) - # comma in the string - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('comma', record.getMessage().lower()) - self.assertEqual('p.N851,Y1055delinsCC', record.cause) - # haplotype specification of multiple mutations - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('allele', record.getMessage().lower()) - self.assertEqual('p.[N851N];[Y1055C]', record.cause) - # NULL (and no HGVSp_Short column) - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertIn('Amino_Acid_Change', record.getMessage()) - self.assertIn('HGVSp_Short', record.getMessage()) - self.assertEqual(8, record.line_number) - - def throw_error_if_hgvsp_short_is_too_long(self): - """Test that an error is thrown if HGVSp_Short value is too long.""" - # set level according to this test case: - self.logger.setLevel(logging.WARNING) - record_list = self.validate( - 'mutations/data_mutations_too_long_hgvsp_short.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={'swissprot_identifier': 'accession'}) - self.assertEqual(1, len(record_list)) - record_iterator = iter(record_list) - # expect an error for the second entry, first one should not throw any message - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('HGVSp_Short', record.getMessage()) - self.assertEqual(2, record.line_number) - - def test_isValidVariantClassification(self): - """Test if proper warnings/errors are given for wrong/blank Variant_Classification change vals.""" - # set level according to this test case: - self.logger.setLevel(logging.WARNING) - record_list = self.validate( - 'mutations/data_mutations_invalid_variant_classification.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={'swissprot_identifier': 'name'}) - # we expect 1 warning and 1 error: - self.assertEqual(2, len(record_list)) - record_iterator = iter(record_list) - # first is a warning about wrong value: - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertIn('not one of the expected values', record.getMessage()) - # second is an error about empty value (not allowed): - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('is invalid', record.getMessage()) - - def test_silent_mutation_skipped(self): - """Test if silent mutations are skipped with a message. - - Silent mutations being ones that have no direct effect on amino acid - sequence, which is predicted in the Variant_Classification column. - """ - # set level according to this test case: - self.logger.setLevel(logging.INFO) - record_list = self.validate('mutations/data_mutations_some_silent.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'name'}) - # we expect 5 infos: 3 about silent mutations, 2 general info messages: - self.assertEqual(5, len(record_list)) - # First 3 INFO messages should be something like: "Validation of line skipped due to cBioPortal's filtering. Filtered types:" - for record in record_list[:3]: - self.assertIn("filtered types", record.getMessage().lower()) - - - def test_alternative_notation_for_intergenic_mutation(self): - """Test alternative 'notation' for intergenic mutations. - - The MAF specification documents the use of the 'gene' Unknown / 0 for - intergenic mutations, and since the Variant_Classification column is - often invalid, cBioPortal assumes it to mean that and skips it. - (even if the Entrez column is absent). - Here we test whether the 'gene' Unknown / 0 records are skipped - with a warning when Variant_Classification!='IGR' - """ - # set level according to this test case: - self.logger.setLevel(logging.INFO) - record_list = self.validate('mutations/data_mutations_silent_alternative.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'name'}) - # we expect 1 ERROR, 2 WARNINGs and 5 INFO: - self.assertEqual(8, len(record_list)) - - # ERROR should be something like: "No Entrez id or gene symbol provided for gene" - self.assertIn("no entrez gene id or gene symbol provided", record_list[1].getMessage().lower()) - self.assertEqual(logging.ERROR, record_list[1].levelno) - # WARNING should be something like: "Gene specification for this mutation implies intergenic..." - self.assertIn("implies intergenic", record_list[2].getMessage().lower()) - self.assertEqual(logging.WARNING, record_list[2].levelno) - self.assertIn("implies intergenic", record_list[3].getMessage().lower()) - self.assertEqual(logging.WARNING, record_list[3].levelno) - # INFO should be: "this variant (gene symbol 'unknown', entrez gene id 0) will be filtered out" - self.assertIn("this variant (gene symbol 'unknown', entrez gene id 0) will be filtered out", record_list[4].getMessage().lower()) - self.assertEqual(logging.INFO, record_list[4].levelno) - - def test_customized_variants_skipped(self): - - """Test if customized mutations are skipped with a message.""" - # set level according to this test case: - self.logger.setLevel(logging.INFO) - old_variant_types = validateData.MutationsExtendedValidator.SKIP_VARIANT_TYPES - validateData.MutationsExtendedValidator.SKIP_VARIANT_TYPES = ["5'Flank", "Frame_Shift_Del", "Frame_Shift_Ins"] - record_list = self.validate('mutations/data_mutations_some_silent.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'name'}) - # we expect 6 infos: 4 about filtered mutations, 2 general info messages: - self.assertEqual(6, len(record_list)) - # First 3 INFO messages should be something like: "Line will not be loaded due to the variant classification filter. Filtered types:" - for record in record_list[:4]: - self.assertIn("filtered types", record.getMessage().lower()) - - # restore the default skipped variant types - validateData.MutationsExtendedValidator.SKIP_VARIANT_TYPES = old_variant_types - - def test_isValidGenePosition(self): - """Test if proper warnings/errors are given for wrong/blank gene positions - (Start_Position and End_Position) change vals.""" - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate( - 'mutations/data_mutations_wrong_gene_position.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={'swissprot_identifier': 'name'}) - # we expect 2 errors: - self.assertEqual(2, len(record_list)) - record_iterator = iter(record_list) - # first is an error about wrong value in Start_Position: - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('The start position of this variant is not ' - 'an integer', record.getMessage()) - # second is an error about wrong value in End_Position: - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('The end position of this variant is not ' - 'an integer', record.getMessage()) - - def test_absence_custom_values_columns_when_custom_annotation_columns(self): - """Test that the validator raises an error when the - cbp_driver_annotation and the cbp_driver_tiers_annotation - columns are present but the cbp_driver and the - cbp_driver_tiers columns are not. - """ - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('mutations/data_mutations_absence_custom_values_columns_when_custom_annotation_columns.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'name'}) - # we expect 5 ERRORs : - self.assertEqual(3, len(record_list)) - - # First 2 ERRORs should be something like: "Column X found without any X column" - self.assertIn("Column cbp_driver_annotation found without any cbp_driver column.", record_list[0].getMessage()) - self.assertEqual(logging.ERROR, record_list[0].levelno) - self.assertIn("Column cbp_driver_tiers_annotation found without any cbp_driver_tiers column.", record_list[1].getMessage()) - self.assertEqual(logging.ERROR, record_list[1].levelno) - - def test_absence_custom_annotation_columns_when_custom_values_columns(self): - """Test that the validator raises an error when the - cbp_driver and the cbp_driver_tiers columns are present - but the cbp_driver_annotation and the - cbp_driver_tiers_annotation columns are not. - """ - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('mutations/data_mutations_absence_custom_annotation_columns_when_custom_values_columns.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'name'}) - # we expect 5 ERRORs : - self.assertEqual(3, len(record_list)) - - # First 2 ERRORs should be something like: "Column X found without any Y column" - self.assertIn('Column cbp_driver found without any cbp_driver_annotation column.', record_list[0].getMessage()) - self.assertEqual(logging.ERROR, record_list[0].levelno) - self.assertIn('Column cbp_driver_tiers found without any cbp_driver_tiers_annotation column.', record_list[1].getMessage()) - self.assertEqual(logging.ERROR, record_list[1].levelno) - - def test_empty_custom_annotation_fields(self): - """Test that the validator raises errors when one multiclass - column is empty and the other is full, and that the binary - annotation column is full when the binary label column contains - "Putative_Driver" or "Putative_Passenger". - """ - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('mutations/data_mutations_empty_custom_annotation_fields.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'name'}) - self.assertEqual(1, len(record_list)) - record = record_list[0] - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('This line has no value for cbp_driver_tiers and a value for cbp_driver_tiers_annotation. Please, fill the cbp_driver_tiers column.', record.getMessage()) - - def test_warning_more_than_10_types_in_driver_class(self): - """Test that the validator raises a warning when the column - cbp_driver_tiers contains more than 10 types. - """ - # set level according to this test case: - self.logger.setLevel(logging.WARNING) - record_list = self.validate('mutations/data_mutations_more_than_10_types_in_driver_class.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'name'}) - # we expect 3 WARNINGs : - self.assertEqual(3, len(record_list)) - - # WARNINGs should be something like: "cbp_driver_tiers contains more than 10 different values" - self.assertIn("cbp_driver_tiers contains more than 10 different tiers.", record_list[0].getMessage().lower()) - self.assertEqual(logging.WARNING, record_list[0].levelno) - self.assertIn("cbp_driver_tiers contains more than 10 different tiers.", record_list[1].getMessage().lower()) - self.assertEqual(logging.WARNING, record_list[1].levelno) - self.assertIn("cbp_driver_tiers contains more than 10 different tiers.", record_list[2].getMessage().lower()) - self.assertEqual(logging.WARNING, record_list[2].levelno) - - def test_annotation_more_than_80_characters_in_custom_annotation_columns(self): - """Test if the validator raises an error if any value of the annotation - columns has more than 80 characters. - """ - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('mutations/data_mutations_more_than_80_characters_in_custom_annotation_columns.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'name'}) - # we expect 1 ERROR : - self.assertEqual(1, len(record_list)) - - # ERROR should be something like: "cbp_driver_annotation and cbp_driver_tiers_annotation columns do not support annotations longer than 80 characters" - self.assertIn("columns do not support annotations longer than 80 characters", record_list[0].getMessage().lower()) - self.assertEqual(logging.ERROR, record_list[0].levelno) - - def test_not_supported_custom_driver_annotation_values(self): - """Test if the validator raises an error if any value of the - cbp_driver is not Putative_Passenger or - Putative_Driver. - """ - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('mutations/data_mutations_not_supported_custom_driver_annotation_values.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'name'}) - # we expect 1 ERROR : - self.assertEqual(1, len(record_list)) - - # ERROR should be something like: "Only "Putative_Passenger", "Putative_Driver", "NA", "Unknown" and "" (empty) are allowed." - self.assertIn('only "putative_passenger", "putative_driver", "na", "unknown" and "" (empty) are allowed.', record_list[0].getMessage().lower()) - self.assertEqual(logging.ERROR, record_list[0].levelno) - - def test_custom_driver_column_more_than_50_characters(self): - """Test if the validator raises an error if any value of the - cbp_driver_tiers column has more than 50 characters. - """ - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('mutations/data_mutations_custom_tiers_column_more_than_50_characters.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={ - 'swissprot_identifier': 'name'}) - # we expect 1 ERROR : - self.assertEqual(1, len(record_list)) - - # ERROR should be something like: "cbp_driver_tiers column does not support values longer than 50 characters" - self.assertIn("does not support values longer than 50 characters", record_list[0].getMessage().lower()) - self.assertEqual(logging.ERROR, record_list[0].levelno) - - def test_validation_verification_status(self): - - """Assert names are validated in data_mutations_vs.maf.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('mutations/data_mutations_vs.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={'swissprot_identifier': 'name'}) - - # we expect 2 errors: - self.assertEqual(2, len(record_list)) - - record_iterator = iter(record_list) - # Validation Status error - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(2, record.line_number) - self.assertEqual('---', record.cause) - self.assertEqual("Value in 'Validation_Status' not in MAF format", record.getMessage()) - # Verification status error - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(3, record.line_number) - self.assertEqual('Test', record.cause) - self.assertEqual("Value in 'Verification_Status' not in MAF format", record.getMessage()) - - def test_validation_ms(self): - - """Test if warning is given when Mutation_Status column in mutation - file contains other than allowed values from MAF format or Wildtype.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('mutations/data_mutations_ms.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={'swissprot_identifier': 'name'}) - # we expect 1 warning - self.assertEqual(1, len(record_list)) - - # Check warning message - self.assertEqual(logging.WARNING, record_list[0].levelno) - self.assertEqual(2, record_list[0].line_number) - self.assertEqual('test', record_list[0].cause) - self.assertEqual("Mutation_Status value is not in MAF format", record_list[0].getMessage()) - - def test_mutation_not_loaded_ms(self): - - """Test if info message is given when Mutation_Status columns have either - LOH, None or Wildtype. In these cases the mutation is not loaded in cBioPortal.""" - self.logger.setLevel(logging.INFO) - record_list = self.validate('mutations/data_mutations_not_loaded_ms.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={'swissprot_identifier': 'name'}) - - # We expect 5 info messages, 3 from not loaded mutations and 2 general lines - self.assertEqual(5, len(record_list)) - record_iterator = iter(record_list) - # Expected info message due to value "None" in Mutation_Status - record = next(record_iterator) - self.assertEqual(logging.INFO, record.levelno) - self.assertEqual(3, record.line_number) - self.assertEqual('None', record.cause) - self.assertEqual("Mutation will not be loaded due to value in Mutation_Status", record.getMessage()) - # Expected info message due to value "loh" in Mutation_Status - record = next(record_iterator) - self.assertEqual(logging.INFO, record.levelno) - self.assertEqual(5, record.line_number) - self.assertEqual('loh', record.cause) - self.assertEqual("Mutation will not be loaded due to value in Mutation_Status", record.getMessage()) - # Expected info message due to value "Wildtype" in Mutation_Status - record = next(record_iterator) - self.assertEqual(logging.INFO, record.levelno) - self.assertEqual(9, record.line_number) - self.assertEqual('Wildtype', record.cause) - self.assertEqual("Mutation will not be loaded due to value in Mutation_Status", record.getMessage()) - - def test_mutation_invalid_utf8(self): - """Test that the validator raises an error when a data file contains invalid UTF-8 bytes". - """ - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('mutations/data_mutations_invalid_utf8.maf', - validateData.MutationsExtendedValidator) - # we expect 1 ERROR: - self.assertEqual(1, len(record_list)) - - # The ERROR should be: "UTF-8 codec can't decode byte" - self.assertIn("File contains invalid UTF-8 bytes. Please check values in file", record_list[0].getMessage()) - self.assertEqual(logging.ERROR, record_list[0].levelno) - - def test_zygosity_column_enforced_with_namespace_defined(self): - - """Test error is raised when namespace defined, but the corresponding column is not present""" - self.logger.setLevel(logging.INFO) - record_list = self.validate('mutations/data_mutations_missing_zygosity_status_column.maf', - validateData.MutationsExtendedValidator, - extra_meta_fields={'swissprot_identifier': 'name', - 'namespaces': 'ZYGOSITY'}) - self.assertEqual(len(record_list), 3) - print(record_list) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(record.levelno, logging.ERROR) - self.assertEqual(record.getMessage(), 'Namespace defined but MAF is missing required column.') - -class StructuralVariantValidationTestCase(PostClinicalDataFileTestCase): - """Tests for the various validations of data in structural variant data files.""" - - def test_missing_columns(self): - """Test whether the required fields are present""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_structural_variants_missing_columns.txt', - validateData.StructuralVariantValidator, - extra_meta_fields={'namespaces': 'MyNamespace'}) - self.assertEqual(4, len(record_list)) - record_iterator = iter(record_list) - - # Expected ERROR message due to missing SV_Status column - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(1, record.line_number) - self.assertEqual('Missing column: SV_Status', record.message) - - # Expected ERROR message due to no columns having the namespace defined in the meta file - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual('mynamespace namespace defined but the file does not have any matching columns', - record.message) - - # Expected ERROR message due to missing Entrez gene id and Hugo symbol column - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(1, record.line_number) - self.assertEqual('Structural variant event requires Site2_Entrez_Gene_Id and/or Site2_Hugo_Symbol ' - 'column', record.message) - - # Expected generic ERROR message due to invalid column header - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual('Invalid column header, file cannot be parsed', record.message) - - def test_missing_values(self): - """Test whether the entrez gene id and hugo symbols are found in both the sites""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_structural_variants_missing_values.txt', - validateData.StructuralVariantValidator) - self.assertEqual(2, len(record_list)) - record_iterator = iter(record_list) - - # Expected ERROR message due to missing Entrez gene id and/or gene symbol at site 1 and site 2 - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(3, record.line_number) - self.assertIn("No Entrez gene id or gene symbol provided for site 1 and site 2", record.message) - - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(8, record.line_number) - self.assertIn("No Entrez gene id or gene symbol provided for site 1 and site 2", record.message) - - def test_duplicate_line(self): - """Test if duplicate lines are detected""" - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_structural_variants_duplicate_entry.txt', - validateData.StructuralVariantValidator) - - self.assertEqual(1, len(record_list)) - self.assertIn("duplicate entry in structural variant data", record_list[0].getMessage().lower()) - -class SegFileValidationTestCase(PostClinicalDataFileTestCase): - - """Tests for the various validations of data in segment CNA data files.""" - - @classmethod - def setUpClass(cls): - """Override a static method to skip a UCSC HTTP query in each test.""" - super(SegFileValidationTestCase, cls).setUpClass() - @staticmethod - def load_chromosome_lengths(genome_build, _): - if genome_build == 'hg19': - return {'1': 249250621, '10': 135534747, '11': 135006516, - '12': 133851895, '13': 115169878, '14': 107349540, - '15': 102531392, '16': 90354753, '17': 81195210, - '18': 78077248, '19': 59128983, '2': 243199373, - '20': 63025520, '21': 48129895, '22': 51304566, - '3': 198022430, '4': 191154276, '5': 180915260, - '6': 171115067, '7': 159138663, '8': 146364022, - '9': 141213431, 'X': 155270560, 'Y': 59373566} - else: - raise ValueError( - "load_chromosome_lengths() called with genome build '{}'".format( - genome_build)) - cls.orig_chromlength_method = validateData.SegValidator.load_chromosome_lengths - validateData.SegValidator.load_chromosome_lengths = load_chromosome_lengths - - @classmethod - def tearDownClass(cls): - """Restore the environment to before setUpClass() was called.""" - validateData.SegValidator.load_chromosome_lengths = cls.orig_chromlength_method - super(SegFileValidationTestCase, cls).tearDownClass() - - def test_valid_seg(self): - """Validate a segment file without file format errors.""" - record_list = self.validate('data_seg_valid.seg', - validateData.SegValidator, - extra_meta_fields={'reference_genome_id': - 'hg19'}) - # expecting only status messages about the file being validated - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_invalid_ref_genome_hg18(self): - """Test validation of a segment file which has hg18 data but is submitted as hg19""" - self.logger.setLevel(logging.ERROR) - - # The input file contains a genomic position from hg18 (chr19, 63811651) - record_list = self.validate('data_seg_invalid_hg18.seg', - validateData.SegValidator, - extra_meta_fields={'reference_genome_id': - 'hg19'}) - # Expect 1 error - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertLessEqual(record.levelno, logging.ERROR) - self.assertEqual('63811651', record.cause) - self.assertEqual('Genomic position beyond end of chromosome (chr19:0-59128983)', record.message) - - def test_unparsable_seg_columns(self): - """Validate .seg files with non-numeric values and an unsupported chromosome.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_seg_nonsense_values.seg', - validateData.SegValidator, - extra_meta_fields={'reference_genome_id': - 'hg19'}) - self.assertEqual(3, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(record.line_number, 28) - # unknown chromosome - self.assertEqual(2, record_list[0].column_number) - # non-integral start position - self.assertEqual(3, record_list[1].column_number) - # non-rational mean copy number - self.assertEqual(6, record_list[2].column_number) - - def test_negative_length_segment(self): - """Validate a .seg where a start position is no higher than its end.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_seg_end_before_start.seg', - validateData.SegValidator, - extra_meta_fields={'reference_genome_id': - 'hg19'}) - self.assertEqual(2, len(record_list)) - record_iterator = iter(record_list) - # negative-length segment - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(record.line_number, 11) - # zero-length segment - record = next(record_iterator) - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(record.line_number, 31) - - def test_out_of_bounds_coordinates(self): - """Validate .seg files with regions spanning outside of the chromosome.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_seg_out_of_bounds.seg', - validateData.SegValidator, - extra_meta_fields={'reference_genome_id': - 'hg19'}) - self.assertEqual(2, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - # start position before start of chromosome - self.assertEqual(record_list[0].line_number, 36) - self.assertEqual(3, record_list[0].column_number) - # end position after end of chromosome - self.assertEqual(record_list[1].line_number, 41) - self.assertEqual(4, record_list[1].column_number) - - def test_blank_line(self): - """Validate a .seg with a blank data line.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_seg_blank_line.seg', - validateData.SegValidator, - extra_meta_fields={'reference_genome_id': - 'hg19'}) - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertEqual(record.line_number, 35) - self.assertIn('blank', record.getMessage().lower()) - - -class GisticGenesValidationTestCase(PostClinicalDataFileTestCase): - - """Tests for validations of data in aggregated GISTIC genes files. - - See validateData.GisticGenesValidator for more information. - """ - - def test_valid_amp_file(self): - """Test validation of an amp file that should yield no warnings.""" - self.logger.setLevel(logging.DEBUG) - record_list = self.validate( - 'data_gisticgenes_amp_valid.txt', - validateData.GisticGenesValidator, - extra_meta_fields={ - 'genetic_alteration_type': 'GISTIC_GENES_AMP', - 'reference_genome_id': 'hg19'}) - # expecting only status messages about the file being validated - self.assertEqual(4, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_valid_del_file(self): - """Test validation of a del file that should yield no warnings.""" - self.logger.setLevel(logging.DEBUG) - record_list = self.validate( - 'data_gisticgenes_del_valid.txt', - validateData.GisticGenesValidator, - extra_meta_fields={ - 'genetic_alteration_type': 'GISTIC_GENES_DEL', - 'reference_genome_id': 'hg19'}) - # expecting only status messages about the file being validated - self.assertEqual(4, len(record_list)) - for record in record_list: - self.assertLessEqual(record.levelno, logging.INFO) - - def test_region_without_genes(self): - """Test validation of regions with no genes.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate( - 'data_gisticgenes_del_region_without_genes.txt', - validateData.GisticGenesValidator, - extra_meta_fields={ - 'genetic_alteration_type': 'GISTIC_GENES_DEL', - 'reference_genome_id': 'hg19'}) - # expecting warnings about the empty gene lists on two lines - self.assertEqual(2, len(record_list)) - for record in record_list: - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(5, record.column_number) - self.assertEqual(4, record_list[0].line_number) - self.assertEqual(5, record_list[1].line_number) - - def test_zero_length_peak(self): - """Test validation of a zero-bases-short peak.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate( - 'data_gisticgenes_del_zero_length_peak.txt', - validateData.GisticGenesValidator, - extra_meta_fields={ - 'genetic_alteration_type': 'GISTIC_GENES_DEL', - 'reference_genome_id': 'hg19'}) - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual(5, record.line_number) - self.assertIn('242476062', record.cause) - - def test_format_errors(self): - """Test validation of a file with genome-unspecific errors.""" - self.logger.setLevel(logging.WARNING) - record_list = self.validate( - 'data_gisticgenes_del_format_errors.txt', - validateData.GisticGenesValidator, - extra_meta_fields={ - 'genetic_alteration_type': 'GISTIC_GENES_DEL', - 'reference_genome_id': 'hg19'}) - # expecting various errors, about two per line - self.assertEqual(9, len(record_list)) - for record in record_list[:8]: - self.assertEqual(logging.ERROR, record.levelno) - record_iterator = iter(record_list) - # invalid 'amp' value - record = next(record_iterator) - self.assertEqual(2, record.line_number) - self.assertEqual(6, record.column_number) - # mismatch between chromosome number in chromosome and cytoband cols - record = next(record_iterator) - self.assertEqual(2, record.line_number) - self.assertEqual('(1p36.13, 2)', record.cause) - # q-value not a real number - record = next(record_iterator) - self.assertEqual(3, record.line_number) - self.assertEqual(8, record.column_number) - # reversed start and end positions - record = next(record_iterator) - self.assertEqual(3, record.line_number) - self.assertIn('not lower', record.getMessage()) - # incorrect 'amp' value - record = next(record_iterator) - self.assertEqual(4, record.line_number) - self.assertEqual(6, record.column_number) - # no p or q in cytoband - record = next(record_iterator) - self.assertEqual(4, record.line_number) - self.assertEqual(7, record.column_number) - # missing chromosome - record = next(record_iterator) - self.assertEqual(5, record.line_number) - self.assertEqual(2, record.column_number) - # missing chromosome in cytoband - record = next(record_iterator) - self.assertEqual(5, record.line_number) - self.assertEqual(7, record.column_number) - # blank gene in list - record = next(record_iterator) - self.assertEqual(6, record.line_number) - self.assertEqual(logging.WARNING, record.levelno) - self.assertEqual('', record.cause) - -class GenePanelMatrixValidationTestCase(PostClinicalDataFileTestCase): - - """Test for validations in Gene Panel Matrix.""" - - def test_duplicate_sample(self): - """Test if duplicate samples are detected""" - # set level according to this test case: - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_gene_matrix_duplicate_sample.txt', - validateData.GenePanelMatrixValidator) - - self.assertEqual(1, len(record_list)) - self.assertIn("duplicated sample id.", record_list[0].getMessage().lower()) - -class StudyCompositionTestCase(LogBufferTestCase): - - """Tests for validations of the number of files of certain types.""" - - def setUp(self): - """Store validateData globals changed by running validate_study().""" - super(StudyCompositionTestCase, self).setUp() - self.orig_defined_cancer_types = validateData.DEFINED_CANCER_TYPES - self.orig_defined_sample_ids = validateData.DEFINED_SAMPLE_IDS - - def tearDown(self): - """Restore the environment to before setUp() was called.""" - validateData.DEFINED_CANCER_TYPES = self.orig_defined_cancer_types - validateData.DEFINED_SAMPLE_IDS = self.orig_defined_sample_ids - super(StudyCompositionTestCase, self).tearDown() - - # TODO test whether proper metadata files generate only INFO and DEBUG messages - - def test_double_cancer_type_file(self): - """Check behavior when two cancer type files are supplied.""" - self.logger.setLevel(logging.ERROR) - validateData.validate_study( - 'test_data/study_cancertype_two_files', - PORTAL_INSTANCE, - self.logger, False, False) - record_list = self.get_log_records() - # expecting two errors: one about the two cancer type files, and - # about the cancer type of the study not having been defined - self.assertEqual(2, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - # compare filenames mentioned in the 1st error independent of ordering - filenames_in_cause_string = set(record_list[0].cause.split(', ', 1)) - self.assertEqual(filenames_in_cause_string, - {'cancer_type_luad.txt', 'cancer_type_lung.txt'}) - # assert that the second error complains about the cancer type - self.assertEqual('luad', record_list[1].cause) - - def test_invalid_tags_file(self): - """Test if an error is reported when giving a study tags file with wrong format.""" - with temp_inputfolder({ - 'meta_study.txt': textwrap.dedent('''\ - cancer_study_identifier: spam - type_of_cancer: brca - name: Spam (spam) - description: Baked beans - add_global_case_list: true - tags_file: study_tags.yml - '''), - 'meta_samples.txt': textwrap.dedent('''\ - cancer_study_identifier: spam - genetic_alteration_type: CLINICAL - datatype: SAMPLE_ATTRIBUTES - data_filename: data_samples.txt - '''), - 'data_samples.txt': textwrap.dedent('''\ - #Patient Identifier\tSample Identifier - #PatID\tSampId - #STRING\tSTRING - #1\t1 - PATIENT_ID\tSAMPLE_ID - Patient1\tPatient1-Sample1 - '''), - 'study_tags.yml': textwrap.dedent('''\ - Invalid: - { - ''') - }) as study_dir: - self.logger.setLevel(logging.WARNING) - validateData.validate_study( - study_dir, - PORTAL_INSTANCE, - self.logger, - relaxed_mode=False, - strict_maf_checks=False) - record_list = self.get_log_records() - self.assertEqual(1, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('yaml', record.getMessage().lower()) - - def test_valid_JSON_tags_file(self): - """Test if no errors are reported when giving a study tags file in JSON format.""" - with temp_inputfolder({ - 'meta_study.txt': textwrap.dedent('''\ - cancer_study_identifier: spam - type_of_cancer: brca - name: Spam (spam) - description: Baked beans - add_global_case_list: true - tags_file: study_tags.yml - '''), - 'meta_samples.txt': textwrap.dedent('''\ - cancer_study_identifier: spam - genetic_alteration_type: CLINICAL - datatype: SAMPLE_ATTRIBUTES - data_filename: data_samples.txt - '''), - 'data_samples.txt': textwrap.dedent('''\ - #Patient Identifier\tSample Identifier - #PatID\tSampId - #STRING\tSTRING - #1\t1 - PATIENT_ID\tSAMPLE_ID - Patient1\tPatient1-Sample1 - '''), - 'study_tags.yml': textwrap.dedent('''\ - { name: study_name } - ''') - }) as study_dir: - self.logger.setLevel(logging.WARNING) - validateData.validate_study( - study_dir, - PORTAL_INSTANCE, - self.logger, - relaxed_mode=False, - strict_maf_checks=False) - record_list = self.get_log_records() - self.assertEqual(0, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - - def test_valid_YAML_tags_file(self): - """Test if no errors are reported when giving a study tags file in YAML format.""" - with temp_inputfolder({ - 'meta_study.txt': textwrap.dedent('''\ - cancer_study_identifier: spam - type_of_cancer: brca - name: Spam (spam) - description: Baked beans - add_global_case_list: true - tags_file: study_tags.yml - '''), - 'meta_samples.txt': textwrap.dedent('''\ - cancer_study_identifier: spam - genetic_alteration_type: CLINICAL - datatype: SAMPLE_ATTRIBUTES - data_filename: data_samples.txt - '''), - 'data_samples.txt': textwrap.dedent('''\ - #Patient Identifier\tSample Identifier - #PatID\tSampId - #STRING\tSTRING - #1\t1 - PATIENT_ID\tSAMPLE_ID - Patient1\tPatient1-Sample1 - '''), - 'study_tags.yml': textwrap.dedent('''\ - name: study_name - ''') - }) as study_dir: - self.logger.setLevel(logging.WARNING) - validateData.validate_study( - study_dir, - PORTAL_INSTANCE, - self.logger, - relaxed_mode=False, - strict_maf_checks=False) - record_list = self.get_log_records() - self.assertEqual(0, len(record_list)) - for record in record_list: - self.assertEqual(logging.ERROR, record.levelno) - -class CaseListDirTestCase(PostClinicalDataFileTestCase): - - """Test validations of the case list directory.""" - - def test_duplicated_stable_id(self): - """Test if an error is issued when two lists have the same id.""" - self.logger.setLevel(logging.ERROR) - validateData.processCaseListDirectory( - 'test_data/case_lists_duplicated', - 'brca_tcga_pub', - self.logger) - record_list = self.get_log_records() - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('multiple', record.getMessage().lower()) - self.assertTrue(record.cause.startswith('brca_tcga_pub_all'), - "Error is not about the id 'brca_tcga_pub_all'") - - def test_duplicated_sample_id(self): - """Test if an warning is issued when one list has duplicate sample id""" - self.logger.setLevel(logging.WARNING) - validateData.processCaseListDirectory( - 'test_data/case_lists_duplicated_sampleid', - 'brca_tcga_pub', - self.logger) - record_list = self.get_log_records() - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertIn('duplicate', record.getMessage().lower()) - - def test_invalid_category(self): - """Test if an error is issued for an invalid case list category""" - self.logger.setLevel(logging.ERROR) - validateData.processCaseListDirectory( - 'test_data/case_lists_invalid_category', - 'brca_tcga_pub', - self.logger) - record_list = self.get_log_records() - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('invalid', record.getMessage().lower()) - - def test_duplicate_category(self): - """Test if an error is issued for an duplicate case list category""" - self.logger.setLevel(logging.WARNING) - validateData.processCaseListDirectory( - 'test_data/case_lists_duplicate_category', - 'brca_tcga_pub', - self.logger) - record_list = self.get_log_records() - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertIn('used in other case list', record.getMessage().lower()) - - def test_missing_caselists(self): - """Test if errors are issued if certain case lists are not defined.""" - self.logger.setLevel(logging.ERROR) - validateData.validate_study( - 'test_data/study_missing_caselists', - PORTAL_INSTANCE, - self.logger, - False, False) - record_list = self.get_log_records() - - # Test if there are 3 warnings, for 3 missing case lists - self.assertEqual(3, len(record_list)) - record_iterator = iter(record_list) - - # Test the missing global case list - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('spam_all', record.getMessage()) - self.assertIn('add_global_case_list', record.getMessage()) - - # Test the missing global _sequenced list - record = next(record_iterator) - self.assertIn('spam_sequenced', record.getMessage()) - self.assertIn('please add this case list', record.getMessage()) - - # Test the missing global _cna list - record = next(record_iterator) - self.assertIn('spam_cna', record.getMessage()) - self.assertIn('please add this case list', record.getMessage()) - - def test_undefined_cases_listed_in_file_order(self): - """Test if undefined cases are reported in the order encountered.""" - with temp_inputfolder({ - 'meta_study.txt': textwrap.dedent('''\ - cancer_study_identifier: spam - type_of_cancer: brca - name: Spam (spam) - description: Baked beans - '''), - 'meta_samples.txt': textwrap.dedent('''\ - cancer_study_identifier: spam - genetic_alteration_type: CLINICAL - datatype: SAMPLE_ATTRIBUTES - data_filename: data_samples.txt - '''), - 'data_samples.txt': textwrap.dedent('''\ - #Patient Identifier\tSample Identifier - #PatID\tSampId - #STRING\tSTRING - #1\t1 - PATIENT_ID\tSAMPLE_ID - Patient1\tPatient1-Sample1 - '''), - Path('case_lists', 'cases_all.txt'): textwrap.dedent('''\ - cancer_study_identifier: spam - stable_id: spam_all - case_list_name: All tumors - case_list_description: All tumor samples (4 samples) - case_list_ids: Patient0-Sample1\tPatient2-Sample3\tPatient1-Sample1\tPatient1-Sample2 - ''') - }) as study_dir: - self.logger.setLevel(logging.WARNING) - validateData.validate_study( - study_dir, - PORTAL_INSTANCE, - self.logger, - relaxed_mode=False, - strict_maf_checks=False) - record_list = self.get_log_records() - reported_sample_ids = [record.cause for record in record_list] - self.assertEqual( - reported_sample_ids, - ['Patient0-Sample1', 'Patient2-Sample3', 'Patient1-Sample2']) - -class MetaFilesTestCase(LogBufferTestCase): - - """Tests for the contents of the meta files.""" - - def test_unnecessary_and_wrong_stable_id(self): - """Tests to check behavior when stable_id is not needed (warning) or wrong(error).""" - self.logger.setLevel(logging.WARNING) - validateData.process_metadata_files( - 'test_data/study_metastableid', - PORTAL_INSTANCE, - self.logger, False, False) - record_list = self.get_log_records() - # expecting 1 warning, 3 errors: - self.assertEqual(4, len(record_list)) - # get both into a variable to avoid dependency on order: - errors = [] - for record in record_list: - if record.levelno == logging.ERROR: - errors.append(record.cause) - else: - warning = record - - # expecting one error about wrong stable_id in meta_expression: - self.assertEqual(3, len(errors)) - self.assertIn('mrna_test', errors) - self.assertIn('gistic', errors) - self.assertIn('treatment ic50', errors) - - # expecting one warning about stable_id not being recognized in _samples - self.assertEqual(logging.WARNING, warning.levelno) - self.assertEqual('stable_id', warning.cause) - - def test_invalid_pmid_values(self): - """Test to check whether the validator throws an error for invalid PMID values in meta_study.txt.""" - self.logger.setLevel(logging.ERROR) - validateData.process_metadata_files( - 'test_data/meta_study/invalid_pmid_values', - PORTAL_INSTANCE, - self.logger, False, False) - - # expecting three errors about invalid PMID - record_list = self.get_log_records() - self.assertEqual(3, len(record_list)) - record = record_list.pop() - self.assertEqual('The PMID field in meta_study should be a comma separated list of integers', record.getMessage()) - self.assertEqual('29617662 29625055', record.cause) - record = record_list.pop() - self.assertEqual('The PMID field in meta_study should be a comma separated list of integers', record.getMessage()) - self.assertEqual('29622463A', record.cause) - record = record_list.pop() - self.assertEqual('The PMID field in meta_study should not contain any embedded whitespace', record.getMessage()) - self.assertEqual('29625048, 29596782, 29622463A, 29617662 29625055, 29625050', record.cause) - - def test_show_profile_setting_for_cna(self): - """Test the `show_profile_in_analysis_tab: false` setting for continuous CNA data""" - self.logger.setLevel(logging.ERROR) - validateData.process_metadata_files( - 'test_data/meta_study/invalid_show_profile_setting_cna', - PORTAL_INSTANCE, - self.logger, False, False) - record_list = self.get_log_records() - # expecting 1 error: - self.assertEqual(1, len(record_list)) - - # Should raise an error when show_profile_in_analysis_tab is not false for non-discrete CNA metafile - record = record_list.pop() - self.assertEqual("The 'show_profile_in_analysis_tab' setting must be 'false', as this is only applicable for CNA data of the DISCRETE type.", record.getMessage()) - -class HeaderlessClinicalDataValidationTest(PostClinicalDataFileTestCase): - - """Tests for validation of clinical data files without metadata headers. - - When the script is run in relaxed mode, files with incorrect - attribute metadata headers should be validated until the end - rather than considered unparseable from the header on. - """ - - def test_headerless_clinical_sample(self): - """Test relaxed validation of sample attr files without metadata.""" - self.logger.setLevel(logging.INFO) - record_list = self.validate('data_clinical_sam_no_hdr.txt', - validateData.SampleClinicalValidator, None, True) - # we expect a list of records ending in an info message about all lines - # being parsed -- if the file had been declared unparseable before the - # header it would have issued an error instead. - final_record = record_list[-1] - self.assertEqual(logging.INFO, final_record.levelno) - self.assertTrue(final_record.getMessage().lower().startswith( - 'read 13 lines')) - - def test_nonrelaxed_headerless_clinical_sample(self): - """Test regular validation of sample attr files without metadata.""" - self.logger.setLevel(logging.INFO) - record_list = self.validate('data_clinical_sam_no_hdr.txt', - validateData.SampleClinicalValidator, None, False) - # test if the list of records logged ends in an error about the file - # being unparseable, rather than an info about it being read to the end - final_record = record_list[-1] - self.assertEqual(logging.ERROR, final_record.levelno) - self.assertIn('cannot be parsed', final_record.getMessage().lower()) - - def test_headerless_clinical_patient(self): - """Test relaxed validation of patient attr files without metadata.""" - self.logger.setLevel(logging.INFO) - record_list = self.validate('data_clinical_pat_no_hdr.txt', - validateData.PatientClinicalValidator, None, True) - # we expect a list of records ending in an info message about all lines - # being parsed -- if the file had been declared unparseable before the - # header it would have issued an error instead. - final_record = record_list[-1] - self.assertEqual(logging.INFO, final_record.levelno) - self.assertTrue(final_record.getMessage().lower().startswith( - 'read 13 lines')) - - def test_nonrelaxed_headerless_clinical_patient(self): - """Test regular validation of patient attr files without metadata.""" - self.logger.setLevel(logging.INFO) - record_list = self.validate('data_clinical_pat_no_hdr.txt', - validateData.PatientClinicalValidator, None, False) - # test if the list of records logged ends in an error about the file - # being unparseable, rather than an info about it being read to the end - final_record = record_list[-1] - self.assertEqual(logging.ERROR, final_record.levelno) - self.assertIn('cannot be parsed', final_record.getMessage().lower()) - -class DataFileIOTestCase(PostClinicalDataFileTestCase): - """Test if the right behavior occurs if study files cannot be read.""" - - def test_missing_datafile(self): - """Test the error if files referenced from meta files do not exist.""" - self.logger.setLevel(logging.ERROR) - record_list = self.validate('filename-that-does-not-exist.txt', - validateData.ContinuousValuesValidator) - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('file', record.getMessage().lower()) - -def _resetMultipleFileHandlerClassVars(): - """Reset the state of classes that check mulitple files of the same type. - - GsvaWiseFileValidator classes check - consistency between multiple data files by collecting information in class variables. - This implementation is not consistent with the unit test environment that simulates - different studies to be loaded. To ensure real-world fucntionality the class variables - should be reset before each unit test that tests multi file consistency.""" - - for c in [ validateData.GsvaWiseFileValidator ]: - c.prior_validated_sample_ids = None - c.prior_validated_feature_ids = None - c.prior_validated_header = None - -# --------------------------- resources wise test ------------------------------ - -class ResourceDefinitionWiseTestCase(PostClinicalDataFileTestCase): - - def test_resource_definition_missing_resourceId(self): - - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_resource_definition_missing_resourceId.txt', - validateData.ResourceDefinitionValidator) - - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Missing RESOURCE_ID', record.getMessage()) - -class ResourceWiseTestCase(PostClinicalDataFileTestCase): - def test_resource_is_not_url(self): - # set RESOURCE_DEFINITION_DICTIONARY (which should be initialized before validate resource data) - validateData.RESOURCE_DEFINITION_DICTIONARY = {'PATHOLOGY_SLIDE': ['SAMPLE']} - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_resource_is_not_url.txt', - validateData.ResourceValidator) - - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('not an url', record.getMessage()) - # reset RESOURCE_DEFINITION_DICTIONARY - validateData.RESOURCE_DEFINITION_DICTIONARY = {} - - # sample resources tests - def test_sample_resource_should_have_definition(self): - # reset RESOURCE_DEFINITION_DICTIONARY - validateData.RESOURCE_DEFINITION_DICTIONARY = {} - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_resource_sample_valid.txt', - validateData.SampleResourceValidator) - - self.assertEqual(6, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('sample resource is not defined correctly', record.getMessage()) - - def test_sample_resource_has_definition_in_different_type(self): - # set RESOURCE_DEFINITION_DICTIONARY (which should be initialized before validate resource data) - # PATHOLOGY_SLIDE is duplicated in SAMPLE and PATIENT - validateData.RESOURCE_DEFINITION_DICTIONARY = {'PATHOLOGY_SLIDE': ['SAMPLE', 'PATIENT']} - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_resource_sample_valid.txt', - validateData.SampleResourceValidator) - - self.assertEqual(3, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertIn('sample resource has been used by more than one RESOURCE_TYPE', record.getMessage()) - - def test_sample_resource_has_duplication(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_resource_sample_duplicate.txt', - validateData.SampleResourceValidator) - - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Duplicated resources found', record.getMessage()) - - # patient resources tests - def test_patient_resource_should_have_definition(self): - # reset global variables - validateData.RESOURCE_DEFINITION_DICTIONARY = {} - validateData.RESOURCE_PATIENTS_WITH_SAMPLES = set(["TCGA-A2-A04P", "TCGA-A1-A0SK", "TCGA-A2-A0CM"]) - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_resource_patient_valid.txt', - validateData.PatientResourceValidator) - - self.assertEqual(6, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('patient resource is not defined correctly', record.getMessage()) - - # reset global variables - validateData.RESOURCE_PATIENTS_WITH_SAMPLES = None - - def test_patient_resource_has_definition_in_different_type(self): - # set RESOURCE_DEFINITION_DICTIONARY (which should be initialized before validate resource data) - # PATHOLOGY_SLIDE is duplicated in SAMPLE and PATIENT - validateData.RESOURCE_DEFINITION_DICTIONARY = {'PATIENT_NOTES': ['SAMPLE', 'PATIENT']} - validateData.RESOURCE_PATIENTS_WITH_SAMPLES = set(["TCGA-A2-A04P", "TCGA-A1-A0SK", "TCGA-A2-A0CM"]) - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_resource_patient_valid.txt', - validateData.PatientResourceValidator) - - self.assertEqual(3, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertIn('patient resource has been used by more than one RESOURCE_TYPE', record.getMessage()) - - # reset global variables - validateData.RESOURCE_PATIENTS_WITH_SAMPLES = None - - def test_patient_resource_has_duplication(self): - validateData.RESOURCE_PATIENTS_WITH_SAMPLES = set(["TCGA-A2-A04P", "TCGA-A1-A0SK", "TCGA-A2-A0CM"]) - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_resource_patient_duplicate.txt', - validateData.PatientResourceValidator) - - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Duplicated resources found', record.getMessage()) - - # reset global variables - validateData.RESOURCE_PATIENTS_WITH_SAMPLES = None - - # study resources tests - def test_study_resource_should_have_definition(self): - # reset global variables - validateData.RESOURCE_DEFINITION_DICTIONARY = {} - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_resource_study_valid.txt', - validateData.StudyResourceValidator) - - self.assertEqual(4, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('study resource is not defined correctly', record.getMessage()) - - def test_study_resource_has_definition_in_different_type(self): - # set RESOURCE_DEFINITION_DICTIONARY (which should be initialized before validate resource data) - # PATHOLOGY_SLIDE is duplicated in SAMPLE and STUDY - validateData.RESOURCE_DEFINITION_DICTIONARY = {'STUDY_SPONSORS': ['STUDY', 'SAMPLE']} - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_resource_study_valid.txt', - validateData.StudyResourceValidator) - - self.assertEqual(2, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.WARNING, record.levelno) - self.assertIn('study resource has been used by more than one RESOURCE_TYPE', record.getMessage()) - - def test_study_resource_has_duplication(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_resource_study_duplicate.txt', - validateData.StudyResourceValidator) - - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Duplicated resources found', record.getMessage()) -# -------------------------- end resource definition wise test ---------------------------- - -# --------------------------- generic assay test ------------------------------ -class GenericAssayWiseTestCase(PostClinicalDataFileTestCase): - def test_generic_assay_missing_entity_id_column(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_generic_assay_without_entity_id_column.txt', - validateData.GenericAssayWiseFileValidator, - extra_meta_fields={ - 'generic_entity_meta_properties': 'name,description,url'}) - - self.assertEqual(2, len(record_list)) - record_iterator = iter(record_list) - # Missing column: ENTITY_STABLE_ID - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Missing column: ENTITY_STABLE_ID', record.getMessage()) - # Invalid column header - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Invalid column header', record.getMessage()) - - def test_sample_generic_assay_sample_not_defined(self): - self.logger.setLevel(logging.WARNING) - record_list = self.validate('data_generic_assay_sample_not_defined.txt', - validateData.GenericAssayWiseFileValidator, - extra_meta_fields={ - 'generic_entity_meta_properties': 'name,description,url', - 'patient_level': 'false'}) - - self.assertEqual(2, len(record_list)) - record_iterator = iter(record_list) - # Sample not defined - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Sample ID not defined in clinical file', record.getMessage()) - # Invalid column header - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Invalid column header', record.getMessage()) - - def test_patient_generic_assay_patient_not_defined(self): - self.logger.setLevel(logging.ERROR) - validateData.PATIENTS_WITH_SAMPLES = set(["TCGA-A1-A0SB", "TCGA-A1-A0SD", "TCGA-A1-A0SE", "TCGA-A2-A04U", "TCGA-B6-A0RS", "TCGA-BH-A0HP", "TCGA-BH-A18P"]) - record_list = self.validate('data_generic_assay_patient_not_defined.txt', - validateData.GenericAssayWiseFileValidator, - extra_meta_fields={ - 'generic_entity_meta_properties': 'name,description,url', - 'patient_level': 'true'}) - - self.assertEqual(2, len(record_list)) - record_iterator = iter(record_list) - # Patient not defined - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Patient ID not defined in clinical file', record.getMessage()) - # Invalid column header - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Invalid column header', record.getMessage()) - -class GenericAssayContinuousTestCase(PostClinicalDataFileTestCase): - def test_generic_assay_with_valid_continuous_data(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_generic_assay_valid_continuous.txt', - validateData.GenericAssayContinuousValidator, - extra_meta_fields={ - 'generic_entity_meta_properties': 'name,description,url'}) - - self.assertEqual(0, len(record_list)) - - def test_generic_assay_with_non_numerical_data(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_generic_assay_with_non_numerical_data.txt', - validateData.GenericAssayContinuousValidator, - extra_meta_fields={ - 'generic_entity_meta_properties': 'name,description,url'}) - - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn(record.cause, 'NON_NUMERIC') - -class GenericAssayCategoricalTestCase(PostClinicalDataFileTestCase): - def test_generic_assay_with_valid_categorical_data(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_generic_assay_valid_categorical.txt', - validateData.GenericAssayCategoricalValidator, - extra_meta_fields={ - 'generic_entity_meta_properties': 'name,description,url'}) - - self.assertEqual(0, len(record_list)) - - def test_generic_assay_with_enpty_cell_data(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_generic_assay_empty_cell.txt', - validateData.GenericAssayCategoricalValidator, - extra_meta_fields={ - 'generic_entity_meta_properties': 'name,description,url'}) - - self.assertEqual(0, len(record_list)) - - def test_generic_assay_predefined_datatype_with_invalid_data_value(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_generic_assay_categorical_invalid_predefined_data.txt', - validateData.GenericAssayCategoricalValidator, - extra_meta_fields={ - 'generic_assay_type': 'ARMLEVEL_CNA', - 'generic_entity_meta_properties': 'name,description'}) - - self.assertEqual(8, len(record_list)) - record_iterator = iter(record_list) - record = next(record_iterator) - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('possible values are [Gain, Loss, Unchanged]', record.getMessage()) - - def test_generic_assay_predefined_datatype_with_valid_data_value(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_generic_assay_categorical_valid_predefined_data.txt', - validateData.GenericAssayCategoricalValidator, - extra_meta_fields={ - 'generic_assay_type': 'ARMLEVEL_CNA', - 'generic_entity_meta_properties': 'name,description'}) - - self.assertEqual(0, len(record_list)) - -class GenericAssayBinaryTestCase(PostClinicalDataFileTestCase): - def test_generic_assay_with_with_valid_binary_data(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_generic_assay_valid_binary.txt', - validateData.GenericAssayBinaryValidator, - extra_meta_fields={ - 'generic_entity_meta_properties': 'name,description,url'}) - - self.assertEqual(0, len(record_list)) - - def test_generic_assay_with_not_defined_data(self): - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_generic_assay_with_not_defined_data.txt', - validateData.GenericAssayBinaryValidator, - extra_meta_fields={ - 'generic_entity_meta_properties': 'name,description,url'}) - - self.assertEqual(1, len(record_list)) - record = record_list.pop() - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn(record.cause, 'NOT_DEFINED') -# -------------------------- end generic assay test ---------------------------- - -class CNADiscretePDAAnnotationsValidatorTestCase(PostClinicalDataFileTestCase): - - def test_required_gene_columns(self): - - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_pd_annotation_missing_col_gene_ids.txt', - validateData.CNADiscretePDAAnnotationsValidator) - - self.assertEqual(2, len(record_list)) - record = record_list[0] - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Hugo_Symbol or Entrez_Gene_Id column needs to be present in the file.', record.getMessage()) - - def test_required_sample_columns(self): - - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_pd_annotation_missing_col_sampleid.txt', - validateData.CNADiscretePDAAnnotationsValidator) - - self.assertEqual(2, len(record_list)) - record = record_list[0] - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Missing column: SAMPLE_ID', record.getMessage()) - - def test_required_driver_columns(self): - - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_pd_annotation_missing_col_driver.txt', - validateData.CNADiscretePDAAnnotationsValidator) - - self.assertEqual(2, len(record_list)) - record = record_list[0] - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('Column cbp_driver_annotation found without any cbp_driver column.', record.getMessage()) - - def test_required_field_permutations(self): - - self.logger.setLevel(logging.ERROR) - record_list = self.validate('data_pd_annotation_missing_fields.txt', - validateData.CNADiscretePDAAnnotationsValidator) - - self.assertEqual(3, len(record_list)) - record = record_list[0] - self.assertIn('Only "Putative_Passenger", "Putative_Driver", "NA", "Unknown" and "" (empty) are allowed.', record.getMessage()) - self.assertEqual(logging.ERROR, record.levelno) - record = record_list[1] - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('No Entrez gene id or gene symbol provided for gene.', record.getMessage()) - record = record_list[2] - self.assertEqual(logging.ERROR, record.levelno) - self.assertIn('This line has no value for cbp_driver_tiers and a value for cbp_driver_tiers_annotation. Please, fill the cbp_driver_tiers column.', record.getMessage()) - -if __name__ == '__main__': - unittest.main(buffer=True) diff --git a/db-scripts/pom.xml b/db-scripts/pom.xml deleted file mode 100644 index c0c29b8f7c8..00000000000 --- a/db-scripts/pom.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - master - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - - db-scripts - diff --git a/db-scripts/src/main/resources/gen-cgds-test-schema.sh b/db-scripts/src/main/resources/gen-cgds-test-schema.sh deleted file mode 100755 index cd2548dc60c..00000000000 --- a/db-scripts/src/main/resources/gen-cgds-test-schema.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -# The purpose of this script is to create a test version of the database schema to load in: -# `./persistence/persistence-mybatis/src/test/resources/testContextDatabase.xml` -# -# The only difference between the production version of `./db-scripts/src/main/resources/cgds.sql` and the -# version loaded for testing is the dropping of the partial index on `mutation_event`.`TUMOR_SEQ_ALLELE`. -# -# This is done to accommodate the H2 MySQL driver since the latest version (1.4.197) does not yet -# support partial indexing. -# -# When the H2 MySQL driver finally does support partial indexing, this script can be removed and the production -# version can be used for testing again. -# -# author: ochoaa -# last update: 2019/02/13 - -CGDS_SCHEMA_FILE=$(find . -type f -name "cgds.sql" | grep -v target) -DIR=$(dirname $CGDS_SCHEMA_FILE) -CGDS_TEST_SCHEMA_FILE=$DIR/cgds-test.sql -grep -v "KEY_MUTATION_EVENT_DETAILS" $CGDS_SCHEMA_FILE > $CGDS_TEST_SCHEMA_FILE -sed -i.bak 's/ JSON,/ TEXT,/g' $CGDS_TEST_SCHEMA_FILE -rm $CGDS_TEST_SCHEMA_FILE.bak diff --git a/docker/web-and-data/Dockerfile b/docker/web-and-data/Dockerfile index 410cf122b46..5252f98b4d9 100644 --- a/docker/web-and-data/Dockerfile +++ b/docker/web-and-data/Dockerfile @@ -11,34 +11,22 @@ # NOTE: the .git folder is included in the build stage, but excluded # from the final image. No confidential information is exposed. # (see: stackoverflow.com/questions/56278325) -FROM maven:3-eclipse-temurin-11 as build +FROM maven:3-eclipse-temurin-21 as build # download maven dependencies first to take advantage of docker caching -COPY pom.xml /cbioportal/ -COPY version.sh /cbioportal/ +COPY pom.xml /cbioportal/ +COPY version.sh /cbioportal/ WORKDIR /cbioportal -COPY core/pom.xml core/ -COPY db-scripts/pom.xml db-scripts/ -COPY model/pom.xml model/ -COPY persistence/pom.xml persistence/ -COPY persistence/persistence-api/pom.xml persistence/persistence-api/ -COPY persistence/persistence-connections/pom.xml persistence/persistence-connections/ -COPY persistence/persistence-mybatis/pom.xml persistence/persistence-mybatis/ -COPY scripts/pom.xml scripts/ -COPY security/pom.xml security/ -COPY security/security-spring/pom.xml security/security-spring/ -COPY service/pom.xml service/ -COPY web/pom.xml web/ -RUN for subproject in */.; do cp version.sh "$subproject"; cd "$subproject"; mvn dependency:go-offline --fail-never; cd ..; done -COPY portal/pom.xml portal/ +# RUN for subproject in */.; do cp version.sh "$subproject"; cd "$subproject"; mvn dependency:go-offline --fail-never; cd ..; done + RUN mvn dependency:go-offline --fail-never COPY $PWD /cbioportal -# Use quite output so we can see the build steps easily -RUN mvn -DskipTests clean install -q +RUN mvn install package -DskipTests -q +RUN mkdir -p target/dependency && (cd target/dependency; jar -xf ../*-exec.jar) -FROM eclipse-temurin:11 +FROM eclipse-temurin:21 # download system dependencies first to take advantage of docker caching RUN apt-get update; apt-get install -y --no-install-recommends \ @@ -50,33 +38,41 @@ RUN apt-get update; apt-get install -y --no-install-recommends \ python3-dev \ python3-pip \ unzip \ - && rm -rf /var/lib/apt/lists/* \ + && rm -rf /var/lib/apt/lists/* \ && pip3 install wheel -ENV PORTAL_WEB_HOME=/cbioportal-webapp - +# copy over core files and data-related scripts RUN mkdir -p /cbioportal -COPY --from=build /cbioportal/portal/target/cbioportal*.war /app.war -COPY --from=build /cbioportal/portal/target/dependency/webapp-runner.jar /webapp-runner.jar -# copy over core jar and scripts -COPY --from=build /cbioportal/core /cbioportal/core -COPY --from=build /cbioportal/scripts /cbioportal/scripts -COPY --from=build /cbioportal/db-scripts /cbioportal/db-scripts + +#Download core files +RUN wget https://github.com/cBioPortal/cbioportal-core/releases/download/1.0.4/core-1.0.4.jar -P core/ ; cd core ; jar -xf core-1.0.4.jar scripts/ ; chmod -R a+x scripts/ ; cd ..; + + +COPY --from=build /cbioportal/src/main/resources/db-scripts /cbioportal/db-scripts COPY --from=build /cbioportal/requirements.txt /cbioportal/requirements.txt # install build and runtime dependencies -# ignore update failures +# ignore update failure980[1298[01 w2308s RUN pip3 install -r /cbioportal/requirements.txt # add importer scripts to PATH for easy running in containers -RUN find /cbioportal/core/src/main/scripts/ -type f -executable \! -name '*.pl' -print0 | xargs -0 -- ln -st /usr/local/bin +RUN find /core/scripts/ -type f -executable \! -name '*.pl' -print0 | xargs -0 -- ln -st /usr/local/bin # put config files in this folder if you want to override config +ENV PORTAL_WEB_HOME=/cbioportal-webapp ENV PORTAL_HOME=/cbioportal +ENV JAVA_OPTS="-Xms2G -Xmx8G" +ENV WEBAPP_OPTS= +# add exploded Spring Boot jar contents to image +# See: https://spring.io/guides/topicals/spring-boot-docker/ +ARG DEPENDENCY=/cbioportal/target/dependency RUN mkdir -p $PORTAL_WEB_HOME -RUN unzip /app.war -d $PORTAL_WEB_HOME +COPY --from=build ${DEPENDENCY}/BOOT-INF/lib $PORTAL_WEB_HOME/lib/ +COPY --from=build ${DEPENDENCY}/META-INF $PORTAL_WEB_HOME/META-INF/ +COPY --from=build ${DEPENDENCY}/BOOT-INF/classes $PORTAL_WEB_HOME/ # add entrypoint COPY --from=build /cbioportal/docker/web-and-data/docker-entrypoint.sh /usr/local/bin/ ENTRYPOINT ["docker-entrypoint.sh"] +CMD ["sh", "-c", "java $(echo $JAVA_OPTS) -cp /cbioportal-webapp:/cbioportal-webapp/lib/* org.cbioportal.PortalApplication $(echo $WEBAPP_OPTS)"] \ No newline at end of file diff --git a/docker/web-and-data/docker-entrypoint.sh b/docker/web-and-data/docker-entrypoint.sh index b474a216d5b..5c78c46ac53 100755 --- a/docker/web-and-data/docker-entrypoint.sh +++ b/docker/web-and-data/docker-entrypoint.sh @@ -2,8 +2,8 @@ set -eo pipefail shopt -s nullglob -BAKED_IN_WAR_CONFIG_FILE=/cbioportal-webapp/WEB-INF/classes/portal.properties -CUSTOM_PROPERTIES_FILE=cbioportal/portal.properties +BAKED_IN_WAR_CONFIG_FILE=/cbioportal-webapp/WEB-INF/classes/application.properties +CUSTOM_PROPERTIES_FILE="$PORTAL_HOME/application.properties" # check to see if this file is being run or sourced from another script _is_sourced() { @@ -100,16 +100,33 @@ migrate_db() { POTENTIAL_DB_PARAMS=$@ if [[ -f $CUSTOM_PROPERTIES_FILE ]]; then - python3 /cbioportal/core/src/main/scripts/migrate_db.py -y -p $CUSTOM_PROPERTIES_FILE -s /cbioportal/db-scripts/src/main/resources/migration.sql + python3 /core/scripts/migrate_db.py -y -p $CUSTOM_PROPERTIES_FILE -s /cbioportal/db-scripts/migration.sql else - python3 /cbioportal/core/src/main/scripts/migrate_db.py -y -p <(parse_db_params_from_config_and_command_line $POTENTIAL_DB_PARAMS) -s /cbioportal/db-scripts/src/main/resources/migration.sql + python3 /core/migrate_db.py -y -p <(parse_db_params_from_config_and_command_line $POTENTIAL_DB_PARAMS) -s /cbioportal/db-scripts/migration.sql fi } _main() { # when running the webapp, check db and do migration first # check if command is something like "java -jar webapp-runner.jar" - if [[ "$@" == *java* ]] && [[ "$@" == *-jar* ]] && [[ "$@" == *webapp-runner.jar* ]]; then + + # Define the regex pattern + pattern1='(java)*(org\.cbioportal\.PortalApplication)' + pattern2='(java)*(-jar)*(cbioportal-exec.jar)' + found=false + + # Loop through all arguments + for arg in "$@"; do + if [[ "$arg" =~ $pattern1 ]] || [[ "$arg" =~ $pattern2 ]]; then + found=true + break + fi + done + + # Check if the application is found in the arguments + if [ "$found" = true ]; then + echo "Running Migrate DB Script" + # Custom logic to handle the case when "org.cbioportal.PortalApplication" is present # Parse database config. Use command line parameters (e.g. -Ddb.host) if # available, otherwise use portal.properties if [ -n "$SHOW_DEBUG_INFO" ] && [ "$SHOW_DEBUG_INFO" != "false" ]; then diff --git a/docker/web/Dockerfile b/docker/web/Dockerfile index 7179acb1441..8e1bccaf32c 100644 --- a/docker/web/Dockerfile +++ b/docker/web/Dockerfile @@ -13,21 +13,15 @@ # # WARNING: the shendoah image is a nightly, untested, experimental build. If # you want to use an official openjdk image instead use the web-and-data image. -FROM maven:3-eclipse-temurin-11 as build +FROM maven:3-eclipse-temurin-21 as build COPY $PWD /cbioportal WORKDIR /cbioportal ARG MAVEN_OPTS=-DskipTests # Use quite output so we can see the build steps easily RUN mvn ${MAVEN_OPTS} clean install -q - -FROM eclipse-temurin:11 +FROM eclipse-temurin:21 ENV PORTAL_WEB_HOME=/cbioportal-webapp - -COPY --from=build /cbioportal/portal/target/cbioportal*.war /app.war -COPY --from=build /cbioportal/portal/target/dependency/webapp-runner.jar /webapp-runner.jar - RUN mkdir -p $PORTAL_WEB_HOME -RUN cd $PORTAL_WEB_HOME && jar -xvf /app.war - -CMD ["java", "${JAVA_OPTS} -jar /webapp-runner.jar ${WEBAPP_OPTS} ${PORTAL_WEB_HOME}"] +COPY --from=build /cbioportal/target/*-exec.jar ${PORTAL_WEB_HOME}/app.jar +CMD ["java ${JAVA_OPTS}", "-jar", "${PORTAL_WEB_HOME}/app.jar"] diff --git a/docs/Migration-Guide.md b/docs/Migration-Guide.md index 624124f75fc..b1ebc1b3d37 100644 --- a/docs/Migration-Guide.md +++ b/docs/Migration-Guide.md @@ -1,6 +1,27 @@ # Migration Guide -This page describes various changes deployers will need to make as they deploy newer versions of the portal. - +This page describes various changes deployers will need to make as they deploy newer versions of the portal. + +## v5 -> v6 + +- Override Spring Application Properties: + - The process of overriding properties has been updated for example previously users could do the following `java -Xms2g -Xmx4g -Dauthenticate=saml -jar webapp-runner.jar`. + Now users must pass Spring Application properties after the `.jar` and replace `-Dauthenticate=false` with `--authenticate=false`. + For example `java -Xms2g -Xmx4g -jar cbioportal/target/cbioportal-exec.jar --spring.config.location=cbioportal/application.properties --authenticate=false` +- `portal.properties` migration needed: + - `portal.properties` has been renamed to `application.properties`. This is the Spring Boot default name + - `authenticate` values of `googleplus`, `social_auth_google` and `social_auth_microsoft` have been replaced by `optional_oauth2` + - If you used this property before without authorization (unlikely, only the public cBioPortal instance uses this), add the property `always_show_study_group=PUBLIC` and confirm that all studies in your database you'd like to be be public have `GROUPS` values set to `PUBLIC` +- `Redis HTTP Session` + - To disable redis session (Must be disabled if redis is not setup) `spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration` + - To enable `spring.data.redis.host=localhost` `spring.data.redis.port=6379` +- `Security` changes: + - Properties used to configure Security have changed see [security.properties.EXAMPLE](deployment/customization/security.properties-Reference.md) + - `SAML` changes: + - need to generate new keys (`.jks` no longer works) + - if you have an existing client, update saml keys with newly generate keys + - if you have an existing client, update redirect_uri to be without port 443 + - You can now use a URL here, instead of metadata XML: `spring.security.saml2.relyingparty.registration.cbio-saml-idp.assertingparty.metadata-uri` ## v5.3 -> v5.4 diff --git a/docs/deployment/authorization-and-authentication/Authenticating-Users-via-SAML.md b/docs/deployment/authorization-and-authentication/Authenticating-Users-via-SAML.md index 6a9ef088061..ebcab3d5e51 100644 --- a/docs/deployment/authorization-and-authentication/Authenticating-Users-via-SAML.md +++ b/docs/deployment/authorization-and-authentication/Authenticating-Users-via-SAML.md @@ -195,7 +195,7 @@ adding your own version of the `SAMLUserDetailsService` class. Next, please read the Wiki page on [User Authorization](User-Authorization.md), and add user rights for a single user. -## Configuring the Login.jsp Page (not applicable to most external IDPs) +## Configuring the Login.html Page (not applicable to most external IDPs) The login page is configurable via the `portal.properties` properties `skin.authorization_message` and `skin.login.saml.registration_htm`. For example in `skin.authorization_message` you can be set to something like this: diff --git a/docs/deployment/customization/security.properties-Reference.md b/docs/deployment/customization/security.properties-Reference.md new file mode 100644 index 00000000000..1eede866e94 --- /dev/null +++ b/docs/deployment/customization/security.properties-Reference.md @@ -0,0 +1,103 @@ +# Application Properties + +The following are the properties for configuring authentication and authorization in the application. + +## Authentication Configuration + +### General Authentication Settings + +```properties +# authentication (available options: [false, oauth2, optional_oauth2, saml]) +authenticate=false +``` +### OAUTH2 +#### Google OAuth2 Client/Login Configuration + +#### Example of utilizing google client for oAuth2 (Authentication) +```properties +spring.security.oauth2.client.registration.google.clientId= +spring.security.oauth2.client.registration.google.clientSecret= +``` +#### Custom OAUTH2 Client Configuration + +```properties +# For OIDC clients the issuer-uri is sufficient to autoconfigure the provider (via .well-known endpoint) +spring.security.oauth2.client.provider.cbio-idp.issuer-uri=http://localhost:8080/realms/cbioportal +spring.security.oauth2.client.provider.cbio-idp.user-name-attribute=email +# Required Scopes [openid, email, roles] +spring.security.oauth2.client.registration.cbio-idp.scope=openid,email,roles +spring.security.oauth2.client.registration.cbio-idp.client-id= +spring.security.oauth2.client.registration.cbio-idp.client-secret= +``` + +##### Configuring the individual settings below is not recommended. +```properties +# spring.security.oauth2.client.provider.cbio-idp.authorization-uri= +# spring.security.oauth2.client.provider.cbio-idp.token-uri= +# TODO update docs, the user info endpoint must expose the roles !! +# spring.security.oauth2.client.provider.cbio-idp.user-info-uri= +# spring.security.oauth2.client.provider.cbio-idp.jwk-set-uri= +# spring.security.oauth2.client.provider.cbio-idp.logout-uri= # NOTE: this is not an official property. +# TODO Can be authorization_code, ... +#spring.security.oauth2.client.registration.cbio-idp.authorization-grant-type= +# TODO Can be client_secret_post, ... +#spring.security.oauth2.client.registration.cbio-idp.client-authentication-method= +#spring.security.oauth2.client.registration.cbio-idp.redirect-uri=/login/oauth2/authorization/ +``` + +### SAML Configuration + +```properties + +# For SAML 2.0 +## SAML settings +# TODO add options for auto- and manual config to docs +# TODO add to docs: metadata-uri can be both URL or metadata xml file +spring.security.saml2.relyingparty.registration.cbio-saml-idp.assertingparty.metadata-uri=classpath:/client-tailored-saml-idp-metadata.xml +#spring.security.saml2.relyingparty.registration.cbio-saml-idp.assertingparty.metadata-uri=http://localhost:8080/realms/cbioportal/protocol/saml/descriptor +spring.security.saml2.relyingparty.registration.cbio-saml-idp.entity-id=cbioportal-saml +spring.security.saml2.relyingparty.registration.cbio-saml-idp.signing.credentials[0].certificate-location=classpath:/local.crt +spring.security.saml2.relyingparty.registration.cbio-saml-idp.signing.credentials[0].private-key-location=classpath:/local.key +spring.security.saml2.relyingparty.registration.cbio-saml-idp.singlelogout.binding=POST +# TODO add to docs (in minutes; default 1) +spring.security.oauth2.allowed-clock-skew= +``` +### Data Access Token Settings + +```properties + +## data access token settings +## Resource Server issuer-uri for Data Access Token +#spring.security.oauth2.resourceserver.jwt.issuer-uri=http://localhost:8080/realms/cbioportal +# TODO: Currently Dat.method has only been tested with oauth2 +dat.unauth_users= +dat.method=oauth2 +dat.ttl_seconds=2592000 +dat.uuid.max_number_per_user=1 +dat.jwt.secret_key= +dat.filter_user_role= + +# OAuth2 token data access settings (If using OAuth2 for Login can copy setting here) +## TODO: Reuse OAUTH2 Spring settings defined above +dat.oauth2.clientId= +dat.oauth2.clientSecret= +dat.oauth2.issuer= +dat.oauth2.accessTokenUri=/.../token +dat.oauth2.userAuthorizationUri=/.../auth +dat.oauth2.jwkUrl=/.../certs +dat.oauth2.redirectUri=/.../api/data-access-token/oauth2 +``` +### Authorization Configuration/Study View Settings + +```properties + +## Authorization +## study view settings +## always show studies with this group +always_show_study_group=PUBLIC +## Should the permissions for groups and users be filtered by this instance's app.name? +## (true means the system only handles "CBIOPORTAL:someGroupPermission" groups, false means "someGroupPermission" works) +filter_groups_by_appname=false +# Can disable authorization +security.method_authorization_enabled=true +``` \ No newline at end of file diff --git a/heroku/.profile.d/cbioportal.sh b/heroku/.profile.d/cbioportal.sh deleted file mode 100644 index b554e14e06e..00000000000 --- a/heroku/.profile.d/cbioportal.sh +++ /dev/null @@ -1 +0,0 @@ -export PORTAL_HOME=/app diff --git a/heroku/Procfile b/heroku/Procfile deleted file mode 100644 index a270e87aedc..00000000000 --- a/heroku/Procfile +++ /dev/null @@ -1 +0,0 @@ -web: java $JAVA_OPTS $SPRING_OPTS -jar portal/target/dependency/webapp-runner.jar ${WEBAPP_RUNNER_OPTIONS} --port $PORT portal/target/cbioportal.war diff --git a/jitpack.yml b/jitpack.yml new file mode 100644 index 00000000000..4d456953698 --- /dev/null +++ b/jitpack.yml @@ -0,0 +1,2 @@ +before_install: + - cp src/main/resources/application.properties.EXAMPLE src/main/resources/application.properties \ No newline at end of file diff --git a/maf/pom.xml b/maf/pom.xml deleted file mode 100644 index 19a4d32db99..00000000000 --- a/maf/pom.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - master - org.mskcc.cbio - 0-unknown-version-SNAPSHOT - - 4.0.0 - maf - Portal utils - Utility classes for the Mutation Annotation Format (MAF) - - - net.sf.jopt-simple - jopt-simple - - - com.fasterxml.jackson.core - jackson-databind - - - - \ No newline at end of file diff --git a/maf/src/main/java/org/mskcc/cbio/maf/MafHeaderUtil.java b/maf/src/main/java/org/mskcc/cbio/maf/MafHeaderUtil.java deleted file mode 100644 index 416689d5cb9..00000000000 --- a/maf/src/main/java/org/mskcc/cbio/maf/MafHeaderUtil.java +++ /dev/null @@ -1,99 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.maf; - -import java.io.BufferedReader; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; - -/** - * Class to process comment lines (meta data) of a standard text file. - * Default comment line indicator is # - * - * @author Selcuk Onur Sumer - */ -public class MafHeaderUtil -{ - public static final String DEFAULT_COMMENT_CHAR = "#"; - - private String headerLine; - private List comments; - private String commentChar; - - public MafHeaderUtil(String commentChar) - { - this.comments = new ArrayList(); - this.headerLine = null; - this.commentChar = commentChar; - } - - public MafHeaderUtil() - { - this(DEFAULT_COMMENT_CHAR); - } - - public String extractHeader(BufferedReader reader) throws IOException - { - String line; - boolean done = false; - - while (!done) - { - line = reader.readLine(); - - if (line == null || - (line.trim().length() > 0) && !line.trim().startsWith(this.commentChar)) - { - done = true; - this.headerLine = line; - } - else - { - this.comments.add(line); - } - } - - return this.headerLine; - } - - public List getComments() - { - return comments; - } - - public String getHeaderLine() - { - return headerLine; - } -} diff --git a/maf/src/main/java/org/mskcc/cbio/maf/MafRecord.java b/maf/src/main/java/org/mskcc/cbio/maf/MafRecord.java deleted file mode 100644 index 673faf0cd3a..00000000000 --- a/maf/src/main/java/org/mskcc/cbio/maf/MafRecord.java +++ /dev/null @@ -1,657 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.maf; - -import java.util.Map; - -/** - * Encapsulates Details Regarding a Single MAF Record. - */ -public class MafRecord { - // standard MAF cols - private String chr; - private String ncbiBuild; - private long startPosition; - private long endPosition; - private String hugoGeneSymbol; - // store the literal value of the gene ID column for later parsing - private String givenEntrezGeneId; - private String referenceAllele; - private String variantClassification; // mutation type - private String variantType; - private String center; // sequencing center - private String strand; - private String tumorSeqAllele1; - private String tumorSeqAllele2; - private String dbSNP_RS; - private String tumorSampleID; - private String mutationStatus; - private String validationStatus; - private String sequencer; - private String dbSnpValStatus; - private String matchedNormSampleBarcode; - private String matchNormSeqAllele1; - private String matchNormSeqAllele2; - private String tumorValidationAllele1; - private String tumorValidationAllele2; - private String matchNormValidationAllele1; - private String matchNormValidationAllele2; - private String verificationStatus; - private String sequencingPhase; - private String sequenceSource; - private String validationMethod; - private String score; - private String bamFile; - - private String aminoAcidChange; - - // allele frequency cols - private int tumorAltCount; - private int tumorRefCount; - private int normalAltCount; - private int normalRefCount; - private int tTotCov; - private int tVarCov; - private int nTotCov; - private int nVarCov; - private int tumorDepth; - private float tumorVaf; - private int normalDepth; - private float normalVaf; - - // custom annotator columns - private String proteinChange; - private String codons; - private String refSeq; - private String swissprot; - private String proteinPosition; - - // Mutation Assessor cols - private String maFuncImpact; - private float maFIS; - private String maLinkVar; - private String maLinkMsa; - private String maLinkPdb; - - // Oncotator columns are renamed to maf columns - private String mafDbSnpValStatus; - private String mafVariantClassification; - private String mafRefseqMrnaId; - private String mafUniprotAccession; - private String mafCodonChange; - private int mafProteinPosStart; - private int mafProteinPosEnd; - - // custom filtering of passenger and driver mutations cols - private String driverFilter; - private String driverFilterAnn; - private String driverTiersFilter; - private String driverTiersFilterAnn; - private Map> namespacesMap; - - public String getChr() { - return chr; - } - - public void setChr(String chr) { - this.chr = chr; - } - - public String getNcbiBuild() { - return ncbiBuild; - } - - public void setNcbiBuild(String ncbiBuild) { - this.ncbiBuild = ncbiBuild; - } - - public long getStartPosition() { - return startPosition; - } - - public void setStartPosition(long startPosition) { - this.startPosition = startPosition; - } - - public long getEndPosition() { - return endPosition; - } - - public void setEndPosition(long endPosition) { - this.endPosition = endPosition; - } - - public String getHugoGeneSymbol() { - return hugoGeneSymbol; - } - - public void setHugoGeneSymbol(String hugoGeneSymbol) { - this.hugoGeneSymbol = hugoGeneSymbol; - } - - public String getGivenEntrezGeneId() { - return this.givenEntrezGeneId; - } - - public void setGivenEntrezGeneId(String entrezGeneIdAsString) { - this.givenEntrezGeneId = entrezGeneIdAsString; - } - - public String getReferenceAllele() { - return referenceAllele; - } - - public void setReferenceAllele(String referenceAllele) { - this.referenceAllele = referenceAllele; - } - - public String getVariantClassification() { - return variantClassification; - } - - public void setVariantClassification(String variantClassification) { - this.variantClassification = variantClassification; - } - - public String getVariantType() { - return variantType; - } - - public void setVariantType(String variantType) { - this.variantType = variantType; - } - - public String getCenter() { - return center; - } - - public void setCenter(String center) { - this.center = center; - } - - public String getStrand() { - return strand; - } - - public void setStrand(String strand) { - this.strand = strand; - } - - public String getTumorSeqAllele1() { - return tumorSeqAllele1; - } - - public void setTumorSeqAllele1(String tumorSeqAllele1) { - this.tumorSeqAllele1 = tumorSeqAllele1; - } - - public String getTumorSeqAllele2() { - return tumorSeqAllele2; - } - - public void setTumorSeqAllele2(String tumorSeqAllele2) { - this.tumorSeqAllele2 = tumorSeqAllele2; - } - - public String getDbSNP_RS() { - return dbSNP_RS; - } - - public void setDbSNP_RS(String dbSNP_RS) { - this.dbSNP_RS = dbSNP_RS; - } - - public String getTumorSampleID() { - return tumorSampleID; - } - - public void setTumorSampleID(String tumorSampleID) { - this.tumorSampleID = tumorSampleID; - } - - public String getMutationStatus() { - return mutationStatus; - } - - public void setMutationStatus(String mutationStatus) { - this.mutationStatus = mutationStatus; - } - - public String getValidationStatus() { - return validationStatus; - } - - public void setValidationStatus(String validationStatus) { - this.validationStatus = validationStatus; - } - - public String getSequencer() { - return sequencer; - } - - public void setSequencer(String sequencer) { - this.sequencer = sequencer; - } - - public String getDbSnpValStatus() { - return dbSnpValStatus; - } - - public void setDbSnpValStatus(String dbSnpValStatus) { - this.dbSnpValStatus = dbSnpValStatus; - } - - public String getMatchedNormSampleBarcode() { - return matchedNormSampleBarcode; - } - - public void setMatchedNormSampleBarcode(String matchedNormSampleBarcode) { - this.matchedNormSampleBarcode = matchedNormSampleBarcode; - } - - public String getMatchNormSeqAllele1() { - return matchNormSeqAllele1; - } - - public void setMatchNormSeqAllele1(String matchNormSeqAllele1) { - this.matchNormSeqAllele1 = matchNormSeqAllele1; - } - - public String getMatchNormSeqAllele2() { - return matchNormSeqAllele2; - } - - public void setMatchNormSeqAllele2(String matchNormSeqAllele2) { - this.matchNormSeqAllele2 = matchNormSeqAllele2; - } - - public String getTumorValidationAllele1() { - return tumorValidationAllele1; - } - - public void setTumorValidationAllele1(String tumorValidationAllele1) { - this.tumorValidationAllele1 = tumorValidationAllele1; - } - - public String getTumorValidationAllele2() { - return tumorValidationAllele2; - } - - public void setTumorValidationAllele2(String tumorValidationAllele2) { - this.tumorValidationAllele2 = tumorValidationAllele2; - } - - public String getMatchNormValidationAllele1() { - return matchNormValidationAllele1; - } - - public void setMatchNormValidationAllele1(String matchNormValidationAllele1) { - this.matchNormValidationAllele1 = matchNormValidationAllele1; - } - - public String getMatchNormValidationAllele2() { - return matchNormValidationAllele2; - } - - public void setMatchNormValidationAllele2(String matchNormValidationAllele2) { - this.matchNormValidationAllele2 = matchNormValidationAllele2; - } - - public String getVerificationStatus() { - return verificationStatus; - } - - public void setVerificationStatus(String verificationStatus) { - this.verificationStatus = verificationStatus; - } - - public String getSequencingPhase() { - return sequencingPhase; - } - - public void setSequencingPhase(String sequencingPhase) { - this.sequencingPhase = sequencingPhase; - } - - public String getSequenceSource() { - return sequenceSource; - } - - public void setSequenceSource(String sequenceSource) { - this.sequenceSource = sequenceSource; - } - - public String getValidationMethod() { - return validationMethod; - } - - public void setValidationMethod(String validationMethod) { - this.validationMethod = validationMethod; - } - - public String getScore() { - return score; - } - - public void setScore(String score) { - this.score = score; - } - - public String getAminoAcidChange() { - return aminoAcidChange; - } - - public void setAminoAcidChange(String aminoAcidChange) { - this.aminoAcidChange = aminoAcidChange; - } - - public String getBamFile() { - return bamFile; - } - - public void setBamFile(String bamFile) { - this.bamFile = bamFile; - } - - public int getTumorAltCount() { - return tumorAltCount; - } - - public void setTumorAltCount(int tumorAltCount) { - this.tumorAltCount = tumorAltCount; - } - - public int getTumorRefCount() { - return tumorRefCount; - } - - public void setTumorRefCount(int tumorRefCount) { - this.tumorRefCount = tumorRefCount; - } - - public int getNormalAltCount() { - return normalAltCount; - } - - public void setNormalAltCount(int normalAltCount) { - this.normalAltCount = normalAltCount; - } - - public int getNormalRefCount() { - return normalRefCount; - } - - public void setNormalRefCount(int normalRefCount) { - this.normalRefCount = normalRefCount; - } - - public int getTTotCov() { - return tTotCov; - } - - public void setTTotCov(int tTotCov) { - this.tTotCov = tTotCov; - } - - public int getTVarCov() { - return tVarCov; - } - - public void setTVarCov(int tVarCov) { - this.tVarCov = tVarCov; - } - - public int getNTotCov() { - return nTotCov; - } - - public void setNTotCov(int nTotCov) { - this.nTotCov = nTotCov; - } - - public int getNVarCov() { - return nVarCov; - } - - public void setNVarCov(int nVarCov) { - this.nVarCov = nVarCov; - } - - public int getTumorDepth() { - return tumorDepth; - } - - public void setTumorDepth(int tumorDepth) { - this.tumorDepth = tumorDepth; - } - - public float getTumorVaf() { - return tumorVaf; - } - - public void setTumorVaf(float tumorVaf) { - this.tumorVaf = tumorVaf; - } - - public int getNormalDepth() { - return normalDepth; - } - - public void setNormalDepth(int normalDepth) { - this.normalDepth = normalDepth; - } - - public float getNormalVaf() { - return normalVaf; - } - - public void setNormalVaf(float normalVaf) { - this.normalVaf = normalVaf; - } - - public String getProteinChange() { - return proteinChange; - } - - public void setProteinChange(String proteinChange) { - this.proteinChange = proteinChange; - } - - public String getCodons() { - return codons; - } - - public void setCodons(String codons) { - this.codons = codons; - } - - public String getRefSeq() { - return refSeq; - } - - public void setRefSeq(String refSeq) { - this.refSeq = refSeq; - } - - public String getSwissprot() { - return swissprot; - } - - public void setSwissprot(String swissprot) { - this.swissprot = swissprot; - } - - public String getProteinPosition() { - return proteinPosition; - } - - public void setProteinPosition(String proteinPosition) { - this.proteinPosition = proteinPosition; - } - - public String getMafVariantClassification() { - return mafVariantClassification; - } - - public void setMafVariantClassification(String mafVariantClassification) { - this.mafVariantClassification = mafVariantClassification; - } - - public String getMafDbSnpValStatus() { - return mafDbSnpValStatus; - } - - public void setMafDbSnpValStatus(String mafDbSnpValStatus) { - this.mafDbSnpValStatus = mafDbSnpValStatus; - } - - public String getMafRefseqMrnaId() { - return mafRefseqMrnaId; - } - - public void setMafRefseqMrnaId(String mafRefseqMrnaId) { - this.mafRefseqMrnaId = mafRefseqMrnaId; - } - - public String getMafUniprotAccession() { - return mafUniprotAccession; - } - - public void setMafUniprotAccession(String mafUniprotAccession) { - this.mafUniprotAccession = mafUniprotAccession; - } - - public String getMafCodonChange() { - return mafCodonChange; - } - - public void setMafCodonChange(String mafCodonChange) { - this.mafCodonChange = mafCodonChange; - } - - public int getMafProteinPosStart() { - return mafProteinPosStart; - } - - public void setMafProteinPosStart(int mafProteinPosStart) { - this.mafProteinPosStart = mafProteinPosStart; - } - - public int getMafProteinPosEnd() { - return mafProteinPosEnd; - } - - public void setMafProteinPosEnd(int mafProteinPosEnd) { - this.mafProteinPosEnd = mafProteinPosEnd; - } - - public String getMaFuncImpact() { - return maFuncImpact; - } - - public void setMaFuncImpact(String maFuncImpact) { - this.maFuncImpact = maFuncImpact; - } - - public float getMaFIS() { - return maFIS; - } - - public void setMaFIS(float maFIS) { - this.maFIS = maFIS; - } - - public String getMaLinkVar() { - return maLinkVar; - } - - public void setMaLinkVar(String maLinkVar) { - this.maLinkVar = maLinkVar; - } - - public String getMaLinkMsa() { - return maLinkMsa; - } - - public void setMaLinkMsa(String maLinkMsa) { - this.maLinkMsa = maLinkMsa; - } - - public String getMaLinkPdb() { - return maLinkPdb; - } - - public void setMaLinkPdb(String maLinkPdb) { - this.maLinkPdb = maLinkPdb; - } - - public String getDriverFilter() { - return driverFilter; - } - - public void setDriverFilter(String driverFilter) { - this.driverFilter = driverFilter; - } - - public String getDriverFilterAnn() { - return driverFilterAnn; - } - - public void setDriverFilterAnn(String driverFilterAnn) { - this.driverFilterAnn = driverFilterAnn; - } - - public String getDriverTiersFilter() { - return driverTiersFilter; - } - - public void setDriverTiersFilter(String driverTiersFilter) { - this.driverTiersFilter = driverTiersFilter; - } - - public String getDriverTiersFilterAnn() { - return driverTiersFilterAnn; - } - - public void setDriverTiersFilterAnn(String driverTiersFilterAnn) { - this.driverTiersFilterAnn = driverTiersFilterAnn; - } - - public Map> getNamespacesMap() { - return namespacesMap; - } - - public void setNamespacesMap(Map> namespacesMap) { - this.namespacesMap = namespacesMap; - } -} diff --git a/maf/src/main/java/org/mskcc/cbio/maf/MafUtil.java b/maf/src/main/java/org/mskcc/cbio/maf/MafUtil.java deleted file mode 100644 index 356ecbf470f..00000000000 --- a/maf/src/main/java/org/mskcc/cbio/maf/MafUtil.java +++ /dev/null @@ -1,781 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.maf; - - -import java.util.*; -import java.util.regex.Pattern; - -import joptsimple.internal.Strings; - -/** - * Utility Class for Parsing MAF Files. - * - * This utility class handles variable columns and column orderings within MAF Files. - */ -public class MafUtil { - private static final Pattern validNucleotidesPattern = Pattern.compile("^([ATGC]*)$"); - // standard header column names - public static final String HUGO_SYMBOL = "Hugo_Symbol"; - public static final String ENTREZ_GENE_ID = "Entrez_Gene_Id"; - public static final String CENTER = "Center"; - public static final String NCBI_BUILD = "NCBI_Build"; - public static final String CHROMOSOME = "Chromosome"; - public static final String START_POSITION = "Start_Position"; - public static final String END_POSITION = "End_Position"; - public static final String STRAND = "Strand"; - public static final String VARIANT_CLASSIFICATION = "Variant_Classification"; - public static final String VARIANT_TYPE = "Variant_Type"; - public static final String REFERENCE_ALLELE = "Reference_Allele"; - public static final String TUMOR_SEQ_ALLELE_1 = "Tumor_Seq_Allele1"; - public static final String TUMOR_SEQ_ALLELE_2 = "Tumor_Seq_Allele2"; - public static final String DBSNP_RS = "dbSNP_RS"; - public static final String DBSNP_VAL_STATUS = "dbSNP_Val_Status"; - public static final String TUMOR_SAMPLE_BARCODE = "Tumor_Sample_Barcode"; - public static final String MATCHED_NORM_SAMPLE_BARCODE = "Matched_Norm_Sample_Barcode"; - public static final String MATCH_NORM_SEQ_ALLELE1 = "Match_Norm_Seq_Allele1"; - public static final String MATCH_NORM_SEQ_ALLELE2 = "Match_Norm_Seq_Allele2"; - public static final String TUMOR_VALIDATION_ALLELE1 = "Tumor_Validation_Allele1"; - public static final String TUMOR_VALIDATION_ALLELE2 = "Tumor_Validation_Allele2"; - public static final String MATCH_NORM_VALIDATION_ALLELE1 = "Match_Norm_Validation_Allele1"; - public static final String MATCH_NORM_VALIDATION_ALLELE2 = "Match_Norm_Validation_Allele2"; - public static final String VERIFICATION_STATUS = "Verification_Status"; - public static final String VALIDATION_STATUS = "Validation_Status"; - public static final String MUTATION_STATUS = "Mutation_Status"; - public static final String SEQUENCING_PHASE = "Sequencing_Phase"; - public static final String SEQUENCE_SOURCE = "Sequence_Source"; - public static final String VALIDATION_METHOD = "Validation_Method"; - public static final String SCORE = "Score"; - public static final String BAM_FILE = "BAM_File"; - public static final String SEQUENCER = "Sequencer"; - - // non-standard columns - public static final String AMINO_ACID_CHANGE = "Amino_Acid_Change"; - - // allele frequency columns (non-standard) - public static final String T_REF_COUNT = "t_ref_count"; - public static final String T_ALT_COUNT = "t_alt_count"; - public static final String N_REF_COUNT = "n_ref_count"; - public static final String N_ALT_COUNT = "n_alt_count"; - public static final String I_T_REF_COUNT = "i_t_ref_count"; - public static final String AD_REF = "AD_Ref"; - public static final String I_T_ALT_COUNT = "i_t_alt_count"; - public static final String AD_ALT = "AD_Alt"; - public static final String NORM_AD_REF = "Norm_AD_Ref"; - public static final String NORM_AD_ALT = "Norm_AD_Alt"; - public static final String T_TOT_COV = "TTotCov"; - public static final String T_VAR_COV = "TVarCov"; - public static final String N_TOT_COV = "NTotCov"; - public static final String N_VAR_COV = "NVarCov"; - public static final String TUMOR_DEPTH = "tumor_depth"; - public static final String TUMOR_VAF = "tumor_vaf"; - public static final String NORMAL_DEPTH = "normal_depth"; - public static final String NORMAL_VAF = "normal_vaf"; - - // custom annotator column names - public static final String PROTEIN_CHANGE = "HGVSp_Short"; - public static final String CODONS = "Codons"; - public static final String SWISSPROT = "SWISSPROT"; - public static final String REFSEQ = "RefSeq"; - public static final String PROTEIN_POSITION = "Protein_position"; - - // oncotator column names - public static final String ONCOTATOR_VARIANT_CLASSIFICATION = "ONCOTATOR_VARIANT_CLASSIFICATION"; - public static final String ONCOTATOR_REFSEQ_MRNA_ID = "ONCOTATOR_REFSEQ_MRNA_ID"; - public static final String ONCOTATOR_UNIPROT_ACCESSION = "ONCOTATOR_UNIPROT_ACCESSION"; - public static final String ONCOTATOR_CODON_CHANGE = "ONCOTATOR_CODON_CHANGE"; - public static final String ONCOTATOR_PROTEIN_POS_START = "ONCOTATOR_PROTEIN_POS_START"; - public static final String ONCOTATOR_PROTEIN_POS_END = "ONCOTATOR_PROTEIN_POS_END"; - - // custom filtering of passenger and driver mutations column names - public static final String DRIVER_FILTER = "cbp_driver"; - public static final String DRIVER_FILTER_ANNOTATION = "cbp_driver_annotation"; - public static final String DRIVER_TIERS_FILTER = "cbp_driver_tiers"; - public static final String DRIVER_TIERS_FILTER_ANNOTATION = "cbp_driver_tiers_annotation"; - - // standard MAF column indices - private int chrIndex = -1; // CHR - private int ncbiIndex = -1; // NCBI_BUILD - private int startPositionIndex = -1; // START_POSITION - private int endPositionIndex = -1; // END_POSITION - private int hugoGeneSymbolIndex = -1; - private int entrezGeneIdIndex = -1; // ENTREZ_GENE_ID - private int referenceAlleleIndex = -1; // REFERENCE_ALLELE - private int variantClassificationIndex = -1; // MUTATION_TYPE - private int variantTypeIndex = -1; // VARIANT_TYPE - private int centerIndex = -1; // CENTER - private int strandIndex = -1; // STRAND - private int tumorSeqAllele1Index = -1; // TUMOR_SEQ_ALLELE1 - private int tumorSeqAllele2Index = -1; // TUMOR_SEQ_ALLELE1 - private int dbSNPIndex = -1; // DB_SNP_RS - private int tumorSampleIndex = -1; - private int mutationStatusIndex = -1; // MUTATION_STATUS - private int validationStatusIndex = -1; // VALIDATION_STATUS - private int sequencerIndex = -1; // SEQUENCER - private int dbSnpValStatusIndex = -1; // DB_SNP_VAL_STATUS - private int matchedNormSampleBarcodeIndex = -1; // MATCHED_NORM_SAMPLE_BARCODE - private int matchNormSeqAllele1Index = -1; // MATCH_NORM_SEQ_ALLELE1 - private int matchNormSeqAllele2Index = -1; // MATCH_NORM_SEQ_ALLELE2 - private int tumorValidationAllele1Index = -1; // TUMOR_VALIDATION_ALLELE1 - private int tumorValidationAllele2Index = -1; // TUMOR_VALIDATION_ALLELE2 - private int matchNormValidationAllele1Index = -1; // MATCH_NORM_VALIDATION_ALLELE1 - private int matchNormValidationAllele2Index = -1; // MATCH_NORM_VALIDATION_ALLELE2 - private int verificationStatusIndex = -1; // VERIFICATION_STATUS - private int sequencingPhaseIndex = -1; // SEQUENCING_PHASE - private int sequenceSourceIndex = -1; // SEQUENCE_SOURCE - private int validationMethodIndex = -1; // VALIDATION_METHOD - private int scoreIndex = -1; // SCORE - private int bamFileIndex = -1; // BAM_FILE - private int aminoAcidChangeIndex = -1; - - // Allele Frequency Columns - private int tumorAltCountIndex = -1; // TUMOR_ALT_COUNT - private int tumorRefCountIndex = -1; // TUMOR_REF_COUNT - private int normalAltCountIndex = -1; // NORMAL_ALT_COUNT - private int normalRefCountIndex = -1; // NORMAL_REF_COUNT - private int tTotCovIndex = -1; - private int tVarCovIndex = -1; - private int nTotCovIndex = -1; - private int nVarCovIndex = -1; - private int tumorDepthIndex = -1; - private int tumorVafIndex = -1; - private int normalDepthIndex = -1; - private int normalVafIndex = -1; - - // default Oncotator column indices - private int oncoVariantClassificationIndex = -1; - private int oncoRefseqMrnaIdIndex = -1; - private int oncoUniprotAccessionIndex = -1; - private int oncoCodonChangeIndex = -1; - private int oncoProteinPosStartIndex = -1; - private int oncoProteinPosEndIndex = -1; - - // Mutation Assessor column indices - private int maFImpactIndex = -1; // MA:FImpact - private int maFisIndex = -1; // MA:FIS - private int maLinkVarIndex = -1; // MA:link.var - private int maLinkMsaIndex = -1; // MA:link.MSA - private int maLinkPdbIndex = -1; // MA:link.PDB - - // custom filtering of passenger and driver mutations column indices - private int driverIndex = -1; //cbp_driver - private int driverAnnIndex = -1; //cbp_driver_annotation - private int driverTiersIndex = -1; //cbp_driver_tiers - private int driverTiersAnnIndex = -1; //cbp_driver_tiers_annotation - - // number of headers in the header line - private int headerCount; - - // mapping for all column names (both standard and custom columns) - private HashMap columnIndexMap; - private final NamespaceColumnParser namespaceColumnParser; - - public MafUtil(String headerLine) { - this(headerLine, null); - } - /** - * Constructor. - * - * @param headerLine Header Line. - */ - public MafUtil(String headerLine, Set namespaces) { - - // init column index map - this.columnIndexMap = new HashMap(); - - // split header names - String[] parts = headerLine.split("\t"); - - // update header count - this.headerCount = parts.length; - - // find required header indices - for (int i=0; i> getNamespaceIndexMap() { - return this.namespaceColumnParser.getNamespaceColumnIndexMap(); - } - - private void fixEndPointForInsertion(MafRecord record) { - if (record.getReferenceAllele().equals("-")) { - record.setEndPosition(record.getStartPosition()+1); - } - } - - public int getChrIndex() { - return chrIndex; - } - - public int getNcbiIndex() { - return ncbiIndex; - } - - public int getStartPositionIndex() { - return startPositionIndex; - } - - public int getEndPositionIndex() { - return endPositionIndex; - } - - public int getHugoGeneSymbolIndex() { - return hugoGeneSymbolIndex; - } - - public int getEntrezGeneIdIndex() { - return entrezGeneIdIndex; - } - - public int getReferenceAlleleIndex() { - return referenceAlleleIndex; - } - - public int getVariantClassificationIndex() { - return variantClassificationIndex; - } - - public int getVariantTypeIndex() { - return variantTypeIndex; - } - - public int getCenterIndex() { - return centerIndex; - } - - public int getStrandIndex() { - return strandIndex; - } - - public int getTumorSeqAllele1Index() { - return tumorSeqAllele1Index; - } - - public int getTumorSeqAllele2Index() { - return tumorSeqAllele2Index; - } - - public int getDbSNPIndex() { - return dbSNPIndex; - } - - public int getTumorSampleIndex() { - return tumorSampleIndex; - } - - public int getMutationStatusIndex() { - return mutationStatusIndex; - } - - public int getValidationStatusIndex() { - return validationStatusIndex; - } - - public int getSequencerIndex() { - return sequencerIndex; - } - - public int getDbSnpValStatusIndex() { - return dbSnpValStatusIndex; - } - - public int getMatchedNormSampleBarcodeIndex() { - return matchedNormSampleBarcodeIndex; - } - - public int getMatchNormSeqAllele1Index() { - return matchNormSeqAllele1Index; - } - - public int getMatchNormSeqAllele2Index() { - return matchNormSeqAllele2Index; - } - - public int getTumorValidationAllele1Index() { - return tumorValidationAllele1Index; - } - - public int getTumorValidationAllele2Index() { - return tumorValidationAllele2Index; - } - - public int getMatchNormValidationAllele1Index() { - return matchNormValidationAllele1Index; - } - - public int getMatchNormValidationAllele2Index() { - return matchNormValidationAllele2Index; - } - - public int getVerificationStatusIndex() { - return verificationStatusIndex; - } - - public int getSequencingPhaseIndex() { - return sequencingPhaseIndex; - } - - public int getSequenceSourceIndex() { - return sequenceSourceIndex; - } - - public int getValidationMethodIndex() { - return validationMethodIndex; - } - - public int getScoreIndex() { - return scoreIndex; - } - - public int getBamFileIndex() { - return bamFileIndex; - } - - public int getAminoAcidChange() { - return aminoAcidChangeIndex; - } - - public int getTumorAltCountIndex() { - return tumorAltCountIndex; - } - - public int getTumorRefCountIndex() { - return tumorRefCountIndex; - } - - public int getNormalAltCountIndex() { - return normalAltCountIndex; - } - - public int getNormalRefCountIndex() { - return normalRefCountIndex; - } - - public int getTumorTotCovIndex() { - return tTotCovIndex; - } - - public int getTumorVarCovIndex() { - return tVarCovIndex; - } - - public int getOncoVariantClassificationIndex() { - return oncoVariantClassificationIndex; - } - - public int getMaFImpactIndex() { - return maFImpactIndex; - } - - public int getMaFisIndex() { - return maFisIndex; - } - - public int getMaLinkVarIndex() { - return maLinkVarIndex; - } - - public int getMaLinkMsaIndex() { - return maLinkMsaIndex; - } - - public int getMaLinkPdbIndex() { - return maLinkPdbIndex; - } - - public int getOncoRefseqMrnaIdIndex() { - return oncoRefseqMrnaIdIndex; - } - - public int getOncoCodonChangeIndex() { - return oncoCodonChangeIndex; - } - - public int getOncoUniprotAccessionIndex() { - return oncoUniprotAccessionIndex; - } - - public int getOncoProteinPosStartIndex() { - return oncoProteinPosStartIndex; - } - - public int getOncoProteinPosEndIndex() { - return oncoProteinPosEndIndex; - } - - public int getDriverIndex() { - return driverIndex; - } - - public int getDriverAnnIndex() { - return driverAnnIndex; - } - - public int getDriverTiersIndex() { - return driverTiersIndex; - } - - public int getDriverTiersAnnIndex() { - return driverTiersAnnIndex; - } - - public int getColumnIndex(String colName) { - Integer index = this.columnIndexMap.get(colName.toLowerCase()); - - if (index == null) { - index = -1; - } - - return index; - } - - public int getHeaderCount() { - return headerCount; - } - - - // Static Utility Methods - - /** - * Generates a key for the given MAF record. The generated key - * is in the form of : - * [chromosome]_[startPosition]_[endPosition]_[referenceAllele]_[tumorAllele] - * - * This method returns null, if tumor allele cannot be determined for the - * given record. - * - * @param record MAF record representing a single line in a MAF - * @return key for the given record - */ - public static String generateKey(MafRecord record) { - // According to the MAF specification a chromosome number - // should not have "chr" prefix. But this is not the case in practice, - // so get rid of the starting "chr". - String chr = record.getChr().replaceAll("chr", ""); - - Long start = record.getStartPosition(); - Long end = record.getEndPosition(); - String refAllele = record.getReferenceAllele(); - String tumAllele = null; - - // determine tumor allele: take the one that is different from - // the reference allele - if (!refAllele.equalsIgnoreCase(record.getTumorSeqAllele1())) { - tumAllele = record.getTumorSeqAllele1(); - } else if (!refAllele.equalsIgnoreCase(record.getTumorSeqAllele2())) { - tumAllele = record.getTumorSeqAllele2(); - } - - String key = null; - - // update key if tumor allele is valid - if (tumAllele != null) { - key = chr + "_" + start + "_" + end + "_" + refAllele + "_" + tumAllele; - } - - return key; - } - - /** - * Resolve tumor seq allele given a reference allele, tumor seq allele1, and tumor seq allele2. - * Valid nucleotide patterns will be preferred over "-" in cases where there is ambiguity over which tumor seq allele value (1 or 2) to use. - * @param referenceAllele - * @param tumorSeqAllele1 - * @param tumorSeqAllele2 - * @return - * - * @author angelicaochoa - */ - public static String resolveTumorSeqAllele(String referenceAllele, String tumorSeqAllele1, String tumorSeqAllele2) { - // sanity check tumor seq allele 1 and 2 for valid/non-null values - if ((Strings.isNullOrEmpty(tumorSeqAllele1) || tumorSeqAllele1.equalsIgnoreCase("NA")) && (Strings.isNullOrEmpty(tumorSeqAllele2) || tumorSeqAllele2.equalsIgnoreCase("NA"))) { - return ""; // cannot resolve this case - } - if (Strings.isNullOrEmpty(tumorSeqAllele1) || tumorSeqAllele1.equals("NA") || tumorSeqAllele1.equals(referenceAllele)) { - return tumorSeqAllele2; - } else if (Strings.isNullOrEmpty(tumorSeqAllele2) || tumorSeqAllele2.equals("NA") || tumorSeqAllele2.equals(referenceAllele)) { - return tumorSeqAllele1; - } else if (variantContainsAmbiguousTumorSeqAllele(referenceAllele, tumorSeqAllele1, tumorSeqAllele2)) { - return tumorSeqAllele2.equals("-") ? tumorSeqAllele1 : tumorSeqAllele2; - } else { - return tumorSeqAllele1; - } - } - - /** - * Determines where record contains both a valid nucleotide pattern and "-". - * Helper function for resolveTumorSeqAllele(...) - * @param referenceAllele - * @param tumorSeqAllele1 - * @param tumorSeqAllele2 - * @return - * - * @author angelicaochoa - */ - public static boolean variantContainsAmbiguousTumorSeqAllele(String referenceAllele, String tumorSeqAllele1, String tumorSeqAllele2) { - // tumor seq allele 1 or 2 is null type or equal to ref allele - return false - if ((Strings.isNullOrEmpty(tumorSeqAllele1) || tumorSeqAllele1.equals("NA") || tumorSeqAllele1.equals(referenceAllele)) || - (Strings.isNullOrEmpty(tumorSeqAllele2) || tumorSeqAllele2.equals("NA") || tumorSeqAllele2.equals(referenceAllele))) { - return false; - } - // returns true if both '-' and a valid nucleotide pattern present in allele 1 and 2 - return ((tumorSeqAllele1.equals("-") || tumorSeqAllele2.equals("-")) && - (validNucleotidesPattern.matcher(tumorSeqAllele1.toUpperCase()).matches() || validNucleotidesPattern.matcher(tumorSeqAllele2.toUpperCase()).matches())); - } - - public NamespaceColumnParser getNamespaceColumnParser() { - return namespaceColumnParser; - } - -} - diff --git a/maf/src/main/java/org/mskcc/cbio/maf/NamespaceColumnParser.java b/maf/src/main/java/org/mskcc/cbio/maf/NamespaceColumnParser.java deleted file mode 100644 index 574c71b88f9..00000000000 --- a/maf/src/main/java/org/mskcc/cbio/maf/NamespaceColumnParser.java +++ /dev/null @@ -1,106 +0,0 @@ -package org.mskcc.cbio.maf; - -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.*; - -import java.util.*; - -import static org.mskcc.cbio.maf.ValueTypeUtil.isDouble; -import static org.mskcc.cbio.maf.ValueTypeUtil.isFloat; -import static org.mskcc.cbio.maf.ValueTypeUtil.isInt; - -public class NamespaceColumnParser { - - public static final String NAMESPACE_DELIMITER = "."; - public static final String NAMESPACE_DELIMITER_REGEX = "\\."; - - private Map> namespaceIndexMap; - private static ObjectMapper mapper; - - public NamespaceColumnParser(Set namespaces, String[] parts) { - this.namespaceIndexMap = new HashMap<>(); - this.mapper = new ObjectMapper(); - findNamespaceHeaders(namespaces, parts); - } - - public Map> getNamespaceColumnIndexMap() { - return namespaceIndexMap; - } - - private void findNamespaceHeaders( - Set namespaces, - String[] parts - ) { - // find required header indices - for (int i = 0; i < parts.length; i++) { - String header = parts[i]; - if (namespaces == null || namespaces.isEmpty()) { - continue; - } - int columnIndex = i; - namespaces - .stream() - // Perform a case-insensitive match of namespace in meta file with the column name. - .filter(namespace -> header.toLowerCase().startsWith(namespace.toLowerCase( - Locale.ROOT) + NAMESPACE_DELIMITER)) - .findFirst() - .ifPresent(namespace -> { - String columnName = header.split(NAMESPACE_DELIMITER_REGEX)[1]; - // For legacy reasons perform lower-case transformation for ASCN column names. - if (namespace.equalsIgnoreCase("ascn")) { - columnName = columnName.toLowerCase(); - } - // Key the namespaces with the format (upper-/lowercase) specified in the meta file. - Map nsKeyIndexMap = this.namespaceIndexMap.getOrDefault(namespace, new HashMap<>()); - nsKeyIndexMap.put(columnName, columnIndex); - this.namespaceIndexMap.put(namespace, nsKeyIndexMap); - }); - } - } - - public Map> parseCustomNamespaces(String[] parts) { - // extract namespace key-value pairs for json annotation support - Map> recordNamespaceAnnotationJsonMap = new HashMap<>(); - if (this.namespaceIndexMap.isEmpty()) { - return null; - } - for (Map.Entry> nsKeyIndexMap : namespaceIndexMap.entrySet()) { - String namespace = nsKeyIndexMap.getKey(); - // construct map of the key-value pairs from the record - Map namespaceKeyValueMappings = new HashMap<>(); - for (Map.Entry nsKeyIndexPairs : nsKeyIndexMap.getValue().entrySet()) { - String keyName = nsKeyIndexPairs.getKey(); - Integer keyIndex = nsKeyIndexPairs.getValue(); - String stringValue = TabDelimitedFileUtil.getPartStringAllowEmptyAndNA(keyIndex, parts); - namespaceKeyValueMappings.put(keyName, parseNamespaceValue(stringValue)); - } - // update namespace map with the key-value pairs extracted from record - recordNamespaceAnnotationJsonMap.put(namespace, namespaceKeyValueMappings); - } - return recordNamespaceAnnotationJsonMap; - } - - public static Object parseNamespaceValue(String stringValue) { - if (stringValue == null || stringValue.isEmpty()) { - return null; - } else if (isInt(stringValue)) { - return Integer.parseInt(stringValue); - } else if (isFloat(stringValue)) { - return Float.parseFloat(stringValue); - } else if (isDouble(stringValue)) { - return Double.parseDouble(stringValue); - } - return stringValue; - } - - /** - * Map to string, or return `null` (instead of `"null"`) when null - */ - public String writeValueAsString(Map> namespaces) throws JsonProcessingException { - if (namespaces == null || namespaces.isEmpty()) { - return null; - } - return NamespaceColumnParser.mapper.writeValueAsString(namespaces); - } - -} diff --git a/maf/src/main/java/org/mskcc/cbio/maf/TabDelimitedFileUtil.java b/maf/src/main/java/org/mskcc/cbio/maf/TabDelimitedFileUtil.java deleted file mode 100644 index 18e1f1648da..00000000000 --- a/maf/src/main/java/org/mskcc/cbio/maf/TabDelimitedFileUtil.java +++ /dev/null @@ -1,245 +0,0 @@ -/* - * Copyright (c) 2015 - 2022 Memorial Sloan Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.mskcc.cbio.maf; - -/** - * Generic utility class providing simple utility functions for tab - * delimited data files. - * - * @author Selcuk Onur Sumer - */ -public class TabDelimitedFileUtil -{ - public final static String NA_STRING = "NA"; - public final static long NA_LONG = Long.MIN_VALUE; - // TODO use MIN instead of -1, we may have fields with negative values - public final static int NA_INT = -1; - public final static float NA_FLOAT = -1; - - /** - * If field is not found in header or data line, or is empty, it just returns empty - * field value "NA". - * - * @param index: index of the column to parse. Can be set to -1 if the column was not found in - * header. This method will return "NA" in this case. - * @param parts: the data line parts, i.e. the line split by separator. - * @return : the value as is, or "NA" if column was empty, not present in file (indicated by index=-1), - * or not present in data line (parts parameter above). - */ - public static String getPartString(int index, String[] parts) - { - try - { - if (parts[index].length() == 0) - { - return NA_STRING; - } - else - { - return parts[index]; - } - } - catch (ArrayIndexOutOfBoundsException e) - { - return NA_STRING; - } - } - - /** - * Return the trimmed string from the column, or an empty string if -1. - * - * Require the column to exist before the end of the data line. This can - * be used instead of getPartString() if NA may be a meaningful value and - * the file is expected to have been validated. - * - * @param index : index of the column to parse. May be set to -1 if the - * column was not found in header, to return "". - * @param parts: the data line parts, i.e. the line split by separator. - * - * @return : the value as is, or "" if the index is -1. - */ - public static String getPartStringAllowEmpty(int index, String[] parts) - { - try - { - if (index < 0) { - //return empty string: - return ""; - } - //else just return as is, trimmed version: - return parts[index].trim(); - } - catch (ArrayIndexOutOfBoundsException e) - { - // all lines must have the same number of columns, and the - // validation script should never allow this to reach the loader - throw new RuntimeException( - "Unexpected error while parsing column nr: " + (index+1), - e); - } - } - - /** - * Return the trimmed string from the column, or an empty string if -1 - * or "NA". - * - * Require the column to exist before the end of the data line. - * - * @param index : index of the column to parse. May be set to -1 if the - * column was not found in header, to return "". - * @param parts: the data line parts, i.e. the line split by separator. - * - * @return : the value as is, or "" if the index is -1. - */ - public static String getPartStringAllowEmptyAndNA(int index, String[] parts) - { - String value = getPartStringAllowEmpty(index, parts); - if (value.equals(NA_STRING)) { - value = ""; - } - return value; -} - - public static Long getPartLong(int index, String[] parts) { - try { - String part = parts[index]; - return Long.parseLong(part); - } catch (ArrayIndexOutOfBoundsException e) { - return NA_LONG; - } catch (NumberFormatException e) { - return NA_LONG; - } - } - - // This method does not call Integer.parseInt() as one might expect. - // Presumably this is to allow the convertion of strings like "6.2" to "6". - // The method previously called (int)Float.parseFloat() but floats - // reserve 23 bits for the mantissa and ints are 32 bits so precision - // was lost parsing "138536968" which was converted to 138536960. - // Now we call (int)Double.parseDouble() because double allocates - // 52 bits for the mantissa. Note getPartLong calls Long.parseLong() - // when this does not call Integer.parseInt() which seems inconsistent. - public static Integer getPartInt(int index, String[] parts) - { - try { - String part = parts[index]; - return (int)(Double.parseDouble(part)); - } catch (ArrayIndexOutOfBoundsException e) { - return NA_INT; - } catch (NumberFormatException e) { - return NA_INT; - } - } - - public static Float getPartPercentage(int index, String[] parts) - { - try { - float result = NA_FLOAT; - String part = parts[index]; - if (part.contains("%")) { - result = Float.parseFloat(part.replace("%", "")) / Float.parseFloat("100"); - } else { - result = Float.parseFloat(part); - } - return result; - } catch (ArrayIndexOutOfBoundsException e) { - return NA_FLOAT; - } catch (NumberFormatException e) { - return NA_FLOAT; - } - } - - public static Float getPartFloat(int index, String[] parts) - { - try { - String part = parts[index]; - return Float.parseFloat(part); - } catch (ArrayIndexOutOfBoundsException e) { - return NA_FLOAT; - } catch (NumberFormatException e) { - return NA_FLOAT; - } - } - - // returning MIN_VALUE instead of NA_FLOAT - // use this one if -1 is not a safe "NA" value. - public static Float getPartFloat2(int index, String[] parts) - { - try { - String part = parts[index]; - return Float.parseFloat(part); - } catch (ArrayIndexOutOfBoundsException e) { - return Float.MIN_VALUE; - } catch (NumberFormatException e) { - return Float.MIN_VALUE; - } - } - - public static String adjustDataLine(String dataLine, - int headerCount) - { - String line = dataLine; - String[] parts = line.split("\t", -1); - - // diff should be zero if (# of headers == # of data cols) - int diff = headerCount - parts.length; - - // number of header columns are more than number of data columns - if (diff > 0) - { - // append appropriate number of tabs - for (int i = 0; i < diff; i++) - { - line += "\t"; - } - } - // number of data columns are more than number of header columns - else if (diff < 0) - { - line = ""; - - // just truncate the data (discard the trailing columns) - for (int i = 0; i < headerCount; i++) - { - line += parts[i]; - - if (i < headerCount - 1) - { - line += "\t"; - } - } - } - - return line; - } -} diff --git a/maf/src/main/java/org/mskcc/cbio/maf/ValueTypeUtil.java b/maf/src/main/java/org/mskcc/cbio/maf/ValueTypeUtil.java deleted file mode 100644 index 476b171460a..00000000000 --- a/maf/src/main/java/org/mskcc/cbio/maf/ValueTypeUtil.java +++ /dev/null @@ -1,89 +0,0 @@ -package org.mskcc.cbio.maf; - -public class ValueTypeUtil { - - private ValueTypeUtil() { - throw new IllegalStateException("This is a utility class. Do not instantiate."); - } - - public static boolean isInt(String value) { - if (value == null) { - return false; - } - try { - Integer.parseInt(value); - } catch (NumberFormatException e) { - return false; - } - return true; - } - - public static boolean isFloat(String value) { - if (value == null) { - return false; - } - try { - Float.parseFloat(value); - } catch (NumberFormatException e) { - return false; - } - return true; - } - - public static boolean isDouble(String value) { - if (value == null) { - return false; - } - try { - Double.parseDouble(value); - } catch (NumberFormatException e) { - return false; - } - return true; - } - - public static Float toFloat(Object value) { - if (value == null) { - return null; - } - if (value instanceof Integer) { - return ((Integer) value).floatValue(); - } - if (value instanceof Float) { - return (Float) value; - } - if (value instanceof Long) { - return ((Long) value).floatValue(); - } - if (value instanceof Double) { - return ((Double) value).floatValue(); - } - if (value instanceof String) { - return Float.parseFloat((String) value); - } - throw new RuntimeException("Object type not covered by toFloat method. Value is: " + value.toString()); - } - - public static Integer toInt(Object value) { - if (value == null) { - return null; - } - if (value instanceof Integer) { - return (Integer) value; - } - if (value instanceof Float) { - return Math.round((Float) value); - } - if (value instanceof Long) { - return ((Long) value).intValue(); - } - if (value instanceof Double) { - return Math.toIntExact(Math.round((Double) value)); - } - if (value instanceof String) { - return Integer.parseInt((String) value); - } - throw new RuntimeException("Object type not covered by toInt method. Value is: " + value.toString()); - } - -} diff --git a/model/pom.xml b/model/pom.xml deleted file mode 100644 index 65ac7e41ba9..00000000000 --- a/model/pom.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - master - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - - model - - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - io.springfox - springfox-oas - - - org.hibernate - hibernate-validator - - - - diff --git a/model/src/main/java/org/cbioportal/model/CancerStudy.java b/model/src/main/java/org/cbioportal/model/CancerStudy.java deleted file mode 100644 index 4d0b7b94935..00000000000 --- a/model/src/main/java/org/cbioportal/model/CancerStudy.java +++ /dev/null @@ -1,242 +0,0 @@ -package org.cbioportal.model; - -import java.io.Serializable; -import java.util.Date; -import javax.validation.constraints.NotNull; - -public class CancerStudy implements ReadPermission, Serializable { - - private Integer cancerStudyId; - @NotNull - private String cancerStudyIdentifier; - private String typeOfCancerId; - private String name; - private String description; - private Boolean publicStudy; - private String pmid; - private String citation; - private String groups; - private Integer status; - private Date importDate; - private TypeOfCancer typeOfCancer; - private Integer allSampleCount; - private Integer sequencedSampleCount; - private Integer cnaSampleCount; - private Integer mrnaRnaSeqSampleCount; - private Integer mrnaRnaSeqV2SampleCount; - private Integer mrnaMicroarraySampleCount; - private Integer miRnaSampleCount; - private Integer methylationHm27SampleCount; - private Integer rppaSampleCount; - private Integer massSpectrometrySampleCount; - private Integer completeSampleCount; - private String referenceGenome; - private Boolean readPermission = true; - private Integer treatmentCount; - - public Integer getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(Integer cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public String getCancerStudyIdentifier() { - return cancerStudyIdentifier; - } - - public void setCancerStudyIdentifier(String cancerStudyIdentifier) { - this.cancerStudyIdentifier = cancerStudyIdentifier; - } - - public String getTypeOfCancerId() { - return typeOfCancerId; - } - - public void setTypeOfCancerId(String typeOfCancerId) { - this.typeOfCancerId = typeOfCancerId; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public Boolean getPublicStudy() { - return publicStudy; - } - - public void setPublicStudy(Boolean publicStudy) { - this.publicStudy = publicStudy; - } - - public String getPmid() { - return pmid; - } - - public void setPmid(String pmid) { - this.pmid = pmid; - } - - public String getCitation() { - return citation; - } - - public void setCitation(String citation) { - this.citation = citation; - } - - public String getGroups() { - return groups; - } - - public void setGroups(String groups) { - this.groups = groups; - } - - public Integer getStatus() { - return status; - } - - public void setStatus(Integer status) { - this.status = status; - } - - public Date getImportDate() { - return importDate; - } - - public void setImportDate(Date importDate) { - this.importDate = importDate; - } - - public TypeOfCancer getTypeOfCancer() { - return typeOfCancer; - } - - public void setTypeOfCancer(TypeOfCancer typeOfCancer) { - this.typeOfCancer = typeOfCancer; - } - - public Integer getAllSampleCount() { - return allSampleCount; - } - - public void setAllSampleCount(Integer allSampleCount) { - this.allSampleCount = allSampleCount; - } - - public Integer getSequencedSampleCount() { - return sequencedSampleCount; - } - - public void setSequencedSampleCount(Integer sequencedSampleCount) { - this.sequencedSampleCount = sequencedSampleCount; - } - - public Integer getCnaSampleCount() { - return cnaSampleCount; - } - - public void setCnaSampleCount(Integer cnaSampleCount) { - this.cnaSampleCount = cnaSampleCount; - } - - public Integer getMrnaRnaSeqSampleCount() { - return mrnaRnaSeqSampleCount; - } - - public void setMrnaRnaSeqSampleCount(Integer mrnaRnaSeqSampleCount) { - this.mrnaRnaSeqSampleCount = mrnaRnaSeqSampleCount; - } - - public Integer getMrnaRnaSeqV2SampleCount() { - return mrnaRnaSeqV2SampleCount; - } - - public void setMrnaRnaSeqV2SampleCount(Integer mrnaRnaSeqV2SampleCount) { - this.mrnaRnaSeqV2SampleCount = mrnaRnaSeqV2SampleCount; - } - - public Integer getMrnaMicroarraySampleCount() { - return mrnaMicroarraySampleCount; - } - - public void setMrnaMicroarraySampleCount(Integer mrnaMicroarraySampleCount) { - this.mrnaMicroarraySampleCount = mrnaMicroarraySampleCount; - } - - public Integer getMiRnaSampleCount() { - return miRnaSampleCount; - } - - public void setMiRnaSampleCount(Integer miRnaSampleCount) { - this.miRnaSampleCount = miRnaSampleCount; - } - - public Integer getMethylationHm27SampleCount() { - return methylationHm27SampleCount; - } - - public void setMethylationHm27SampleCount(Integer methylationHm27SampleCount) { - this.methylationHm27SampleCount = methylationHm27SampleCount; - } - - public Integer getRppaSampleCount() { - return rppaSampleCount; - } - - public void setRppaSampleCount(Integer rppaSampleCount) { - this.rppaSampleCount = rppaSampleCount; - } - - public Integer getCompleteSampleCount() { - return completeSampleCount; - } - - public void setCompleteSampleCount(Integer completeSampleCount) { - this.completeSampleCount = completeSampleCount; - } - - public Integer getMassSpectrometrySampleCount() { - return massSpectrometrySampleCount; - } - - public void setMassSpectrometrySampleCount(Integer massSpectrometrySampleCount) { - this.massSpectrometrySampleCount = massSpectrometrySampleCount; - } - - public String getReferenceGenome() { return referenceGenome; } - - public void setReferenceGenome(String referenceGenome) { this.referenceGenome = referenceGenome; } - - @Override - public void setReadPermission(Boolean permission) { - this.readPermission = permission; - } - - @Override - public Boolean getReadPermission() { - return readPermission; - } - - public Integer getTreatmentCount() { - return treatmentCount; - } - - public void setTreatmentCount(Integer treatmentCount) { - this.treatmentCount = treatmentCount; - } -} diff --git a/model/src/main/java/org/cbioportal/model/ClinicalAttribute.java b/model/src/main/java/org/cbioportal/model/ClinicalAttribute.java deleted file mode 100644 index 9dfe2cb0302..00000000000 --- a/model/src/main/java/org/cbioportal/model/ClinicalAttribute.java +++ /dev/null @@ -1,85 +0,0 @@ -package org.cbioportal.model; - -import java.io.Serializable; -import javax.validation.constraints.NotNull; - -public class ClinicalAttribute implements Serializable { - - @NotNull - private String attrId; - @NotNull - private String displayName; - private String description; - private String datatype; - @NotNull - private Boolean patientAttribute; - private String priority; - private Integer cancerStudyId; - @NotNull - private String cancerStudyIdentifier; - - public String getAttrId() { - return attrId; - } - - public void setAttrId(String attrId) { - this.attrId = attrId; - } - - public String getDisplayName() { - return displayName; - } - - public void setDisplayName(String displayName) { - this.displayName = displayName; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public String getDatatype() { - return datatype; - } - - public void setDatatype(String datatype) { - this.datatype = datatype; - } - - public Boolean getPatientAttribute() { - return patientAttribute; - } - - public void setPatientAttribute(Boolean patientAttribute) { - this.patientAttribute = patientAttribute; - } - - public String getPriority() { - return priority; - } - - public void setPriority(String priority) { - this.priority = priority; - } - - public Integer getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(Integer cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public String getCancerStudyIdentifier() { - return cancerStudyIdentifier; - } - - public void setCancerStudyIdentifier(String cancerStudyIdentifier) { - this.cancerStudyIdentifier = cancerStudyIdentifier; - } - -} diff --git a/model/src/main/java/org/cbioportal/model/ClinicalData.java b/model/src/main/java/org/cbioportal/model/ClinicalData.java deleted file mode 100644 index b7118588297..00000000000 --- a/model/src/main/java/org/cbioportal/model/ClinicalData.java +++ /dev/null @@ -1,80 +0,0 @@ -package org.cbioportal.model; - -import javax.validation.constraints.NotNull; - -public class ClinicalData extends UniqueKeyBase implements Binnable { - - private Integer internalId; - private String sampleId; - @NotNull - private String patientId; - @NotNull - private String studyId; - @NotNull - private String attrId; - private String attrValue; - private ClinicalAttribute clinicalAttribute; - - public Integer getInternalId() { - return internalId; - } - - public void setInternalId(Integer internalId) { - this.internalId = internalId; - } - - public String getSampleId() { - return sampleId; - } - - public void setSampleId(String sampleId) { - this.sampleId = sampleId; - } - - public String getPatientId() { - return patientId; - } - - public void setPatientId(String patientId) { - this.patientId = patientId; - } - - public String getStudyId() { - return studyId; - } - - public void setStudyId(String studyId) { - this.studyId = studyId; - } - - public String getAttrId() { - return attrId; - } - - public Boolean isPatientAttribute() { - if(clinicalAttribute == null) { - return null; - } - return this.clinicalAttribute.getPatientAttribute(); - } - - public void setAttrId(String attrId) { - this.attrId = attrId; - } - - public String getAttrValue() { - return attrValue; - } - - public void setAttrValue(String attrValue) { - this.attrValue = attrValue; - } - - public ClinicalAttribute getClinicalAttribute() { - return clinicalAttribute; - } - - public void setClinicalAttribute(ClinicalAttribute clinicalAttribute) { - this.clinicalAttribute = clinicalAttribute; - } -} diff --git a/model/src/main/java/org/cbioportal/model/ClinicalEvent.java b/model/src/main/java/org/cbioportal/model/ClinicalEvent.java deleted file mode 100644 index 6decf0b5415..00000000000 --- a/model/src/main/java/org/cbioportal/model/ClinicalEvent.java +++ /dev/null @@ -1,74 +0,0 @@ -package org.cbioportal.model; - -import java.util.List; -import javax.validation.constraints.NotNull; - -public class ClinicalEvent extends UniqueKeyBase { - - private Integer clinicalEventId; - @NotNull - private String studyId; - @NotNull - private String patientId; - @NotNull - private String eventType; - private Integer startDate; - private Integer stopDate; - private List attributes; - - public Integer getClinicalEventId() { - return clinicalEventId; - } - - public void setClinicalEventId(Integer clinicalEventId) { - this.clinicalEventId = clinicalEventId; - } - - public String getStudyId() { - return studyId; - } - - public void setStudyId(String studyId) { - this.studyId = studyId; - } - - public String getPatientId() { - return patientId; - } - - public void setPatientId(String patientId) { - this.patientId = patientId; - } - - public String getEventType() { - return eventType; - } - - public void setEventType(String eventType) { - this.eventType = eventType; - } - - public Integer getStartDate() { - return startDate; - } - - public void setStartDate(Integer startDate) { - this.startDate = startDate; - } - - public Integer getStopDate() { - return stopDate; - } - - public void setStopDate(Integer stopDate) { - this.stopDate = stopDate; - } - - public List getAttributes() { - return attributes; - } - - public void setAttributes(List attributes) { - this.attributes = attributes; - } -} diff --git a/model/src/main/java/org/cbioportal/model/DiscreteCopyNumberData.java b/model/src/main/java/org/cbioportal/model/DiscreteCopyNumberData.java deleted file mode 100644 index cbeb2862d16..00000000000 --- a/model/src/main/java/org/cbioportal/model/DiscreteCopyNumberData.java +++ /dev/null @@ -1,33 +0,0 @@ -package org.cbioportal.model; - -import com.fasterxml.jackson.annotation.JsonRawValue; -import io.swagger.annotations.ApiModelProperty; - -import java.io.Serializable; -import javax.validation.constraints.NotNull; - -public class DiscreteCopyNumberData extends Alteration implements Serializable { - @NotNull - private Integer alteration; - - @JsonRawValue - @ApiModelProperty(dataType = "java.util.Map") - private String annotationJson; - - public Integer getAlteration() { - return alteration; - } - - public void setAlteration(Integer alteration) { - this.alteration = alteration; - } - - public String getAnnotationJson() { - return annotationJson; - } - - public void setAnnotationJson(String annotationJson) { - this.annotationJson = annotationJson; - } - -} diff --git a/model/src/main/java/org/cbioportal/model/Gene.java b/model/src/main/java/org/cbioportal/model/Gene.java deleted file mode 100644 index 751dc7593fe..00000000000 --- a/model/src/main/java/org/cbioportal/model/Gene.java +++ /dev/null @@ -1,43 +0,0 @@ -package org.cbioportal.model; - -import java.io.Serializable; -import javax.validation.constraints.NotNull; - -public class Gene implements Serializable { - - @NotNull - private Integer geneticEntityId; - @NotNull - private Integer entrezGeneId; - @NotNull - private String hugoGeneSymbol; - private String type; - - public Integer getGeneticEntityId() { return geneticEntityId; } - - public void setGeneticEntityId(Integer geneticEntityId) { this.geneticEntityId = geneticEntityId; } - - public Integer getEntrezGeneId() { - return entrezGeneId; - } - - public void setEntrezGeneId(Integer entrezGeneId) { - this.entrezGeneId = entrezGeneId; - } - - public String getHugoGeneSymbol() { - return hugoGeneSymbol; - } - - public void setHugoGeneSymbol(String hugoGeneSymbol) { - this.hugoGeneSymbol = hugoGeneSymbol; - } - - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } -} diff --git a/model/src/main/java/org/cbioportal/model/GenePanel.java b/model/src/main/java/org/cbioportal/model/GenePanel.java deleted file mode 100644 index 3cbe1c58fa5..00000000000 --- a/model/src/main/java/org/cbioportal/model/GenePanel.java +++ /dev/null @@ -1,46 +0,0 @@ -package org.cbioportal.model; - -import java.io.Serializable; -import java.util.List; -import javax.validation.constraints.NotNull; - -public class GenePanel implements Serializable { - - private Integer internalId; - @NotNull - private String stableId; - private String description; - private List genes; - - public Integer getInternalId() { - return internalId; - } - - public void setInternalId(Integer internalId) { - this.internalId = internalId; - } - - public String getStableId() { - return stableId; - } - - public void setStableId(String stableId) { - this.stableId = stableId; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public List getGenes() { - return genes; - } - - public void setGenes(List genes) { - this.genes = genes; - } -} diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayCategoricalEnrichment.java b/model/src/main/java/org/cbioportal/model/GenericAssayCategoricalEnrichment.java deleted file mode 100644 index 2fdb661cf38..00000000000 --- a/model/src/main/java/org/cbioportal/model/GenericAssayCategoricalEnrichment.java +++ /dev/null @@ -1,18 +0,0 @@ -package org.cbioportal.model; - -import javax.validation.constraints.NotNull; -import java.math.BigDecimal; - -public class GenericAssayCategoricalEnrichment extends GenericAssayEnrichment { - @NotNull - private BigDecimal qValue; - - public BigDecimal getqValue() { - return qValue; - } - - public void setqValue(BigDecimal qValue) { - this.qValue = qValue; - } - -} diff --git a/model/src/main/java/org/cbioportal/model/Gistic.java b/model/src/main/java/org/cbioportal/model/Gistic.java deleted file mode 100644 index 39b65fc7b5c..00000000000 --- a/model/src/main/java/org/cbioportal/model/Gistic.java +++ /dev/null @@ -1,98 +0,0 @@ -package org.cbioportal.model; - -import java.io.Serializable; -import java.math.BigDecimal; -import java.util.List; -import javax.validation.constraints.NotNull; - -public class Gistic implements Serializable { - - private Long gisticRoiId; - @NotNull - private String cancerStudyId; - @NotNull - private Integer chromosome; - @NotNull - private String cytoband; - @NotNull - private Integer widePeakStart; - @NotNull - private Integer widePeakEnd; - @NotNull - private BigDecimal qValue; - @NotNull - private Boolean amp; - private List genes; - - public Long getGisticRoiId() { - return gisticRoiId; - } - - public void setGisticRoiId(Long gisticRoiId) { - this.gisticRoiId = gisticRoiId; - } - - public String getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(String cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public Integer getChromosome() { - return chromosome; - } - - public void setChromosome(Integer chromosome) { - this.chromosome = chromosome; - } - - public String getCytoband() { - return cytoband; - } - - public void setCytoband(String cytoband) { - this.cytoband = cytoband; - } - - public Integer getWidePeakStart() { - return widePeakStart; - } - - public void setWidePeakStart(Integer widePeakStart) { - this.widePeakStart = widePeakStart; - } - - public Integer getWidePeakEnd() { - return widePeakEnd; - } - - public void setWidePeakEnd(Integer widePeakEnd) { - this.widePeakEnd = widePeakEnd; - } - - public BigDecimal getqValue() { - return qValue; - } - - public void setqValue(BigDecimal qValue) { - this.qValue = qValue; - } - - public Boolean getAmp() { - return amp; - } - - public void setAmp(Boolean amp) { - this.amp = amp; - } - - public List getGenes() { - return genes; - } - - public void setGenes(List genes) { - this.genes = genes; - } -} \ No newline at end of file diff --git a/model/src/main/java/org/cbioportal/model/MutSig.java b/model/src/main/java/org/cbioportal/model/MutSig.java deleted file mode 100644 index a668131e6d9..00000000000 --- a/model/src/main/java/org/cbioportal/model/MutSig.java +++ /dev/null @@ -1,97 +0,0 @@ -package org.cbioportal.model; - -import java.io.Serializable; -import java.math.BigDecimal; -import javax.validation.constraints.NotNull; - -public class MutSig implements Serializable { - - private Integer cancerStudyId; - @NotNull - private String cancerStudyIdentifier; - @NotNull - private Integer entrezGeneId; - @NotNull - private String hugoGeneSymbol; - @NotNull - private Integer rank; - private Integer numbasescovered; - @NotNull - private Integer nummutations; - @NotNull - private BigDecimal pValue; - @NotNull - private BigDecimal qValue; - - public Integer getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(Integer cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public String getCancerStudyIdentifier() { - return cancerStudyIdentifier; - } - - public void setCancerStudyIdentifier(String cancerStudyIdentifier) { - this.cancerStudyIdentifier = cancerStudyIdentifier; - } - - public Integer getEntrezGeneId() { - return entrezGeneId; - } - - public void setEntrezGeneId(Integer entrezGeneId) { - this.entrezGeneId = entrezGeneId; - } - - public String getHugoGeneSymbol() { - return hugoGeneSymbol; - } - - public void setHugoGeneSymbol(String hugoGeneSymbol) { - this.hugoGeneSymbol = hugoGeneSymbol; - } - - public Integer getRank() { - return rank; - } - - public void setRank(Integer rank) { - this.rank = rank; - } - - public Integer getNumbasescovered() { - return numbasescovered; - } - - public void setNumbasescovered(Integer numbasescovered) { - this.numbasescovered = numbasescovered; - } - - public Integer getNummutations() { - return nummutations; - } - - public void setNummutations(Integer nummutations) { - this.nummutations = nummutations; - } - - public BigDecimal getpValue() { - return pValue; - } - - public void setpValue(BigDecimal pValue) { - this.pValue = pValue; - } - - public BigDecimal getqValue() { - return qValue; - } - - public void setqValue(BigDecimal qValue) { - this.qValue = qValue; - } -} \ No newline at end of file diff --git a/model/src/main/java/org/cbioportal/model/Patient.java b/model/src/main/java/org/cbioportal/model/Patient.java deleted file mode 100644 index deaa9ebfea5..00000000000 --- a/model/src/main/java/org/cbioportal/model/Patient.java +++ /dev/null @@ -1,54 +0,0 @@ -package org.cbioportal.model; - -import javax.validation.constraints.NotNull; - -public class Patient extends UniqueKeyBase { - - private Integer internalId; - @NotNull - private String stableId; - private Integer cancerStudyId; - @NotNull - private String cancerStudyIdentifier; - private CancerStudy cancerStudy; - - public Integer getInternalId() { - return internalId; - } - - public void setInternalId(Integer internalId) { - this.internalId = internalId; - } - - public String getStableId() { - return stableId; - } - - public void setStableId(String stableId) { - this.stableId = stableId; - } - - public Integer getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(Integer cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public String getCancerStudyIdentifier() { - return cancerStudyIdentifier; - } - - public void setCancerStudyIdentifier(String cancerStudyIdentifier) { - this.cancerStudyIdentifier = cancerStudyIdentifier; - } - - public CancerStudy getCancerStudy() { - return cancerStudy; - } - - public void setCancerStudy(CancerStudy cancerStudy) { - this.cancerStudy = cancerStudy; - } -} \ No newline at end of file diff --git a/model/src/main/java/org/cbioportal/model/ReferenceGenomeGene.java b/model/src/main/java/org/cbioportal/model/ReferenceGenomeGene.java deleted file mode 100644 index f58398e0210..00000000000 --- a/model/src/main/java/org/cbioportal/model/ReferenceGenomeGene.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.cbioportal.model; - -import java.io.Serializable; -import java.net.Inet4Address; -import javax.validation.constraints.NotNull; - -/** - * Class to wrap Reference Genome Gene. - * @author Kelsey Zhu - */ -public class ReferenceGenomeGene implements Serializable { - @NotNull - private Integer referenceGenomeId; - @NotNull - private Integer entrezGeneId; - private String hugoGeneSymbol; - private String chromosome; - private String cytoband; - private Long start; - private Long end; - - public void setReferenceGenomeId(Integer referenceGenomeId) { this.referenceGenomeId = referenceGenomeId; } - - public Integer getReferenceGenomeId() { - return referenceGenomeId; - } - - public Integer getEntrezGeneId() { return entrezGeneId; } - - public void setEntrezGeneId(Integer entrezGeneId) { this.entrezGeneId = entrezGeneId; } - - public String getHugoGeneSymbol() { - return hugoGeneSymbol; - } - - public void setHugoGeneSymbol(String hugoGeneSymbol) { - this.hugoGeneSymbol = hugoGeneSymbol; - } - - public String getChromosome() { - return chromosome; - } - - public void setChromosome(String chromosome) { - this.chromosome = chromosome; - } - - public String getCytoband() { - return cytoband; - } - - public void setCytoband(String cytoband) { - this.cytoband = cytoband; - } - - public Long getStart() { return this.start; } - - public void setStart(Long start) { this.start = start; } - - public Long getEnd() { return this.end = end; } - - public void setEnd(Long end) { this.end = end; } - -} diff --git a/model/src/main/java/org/cbioportal/model/ResourceDefinition.java b/model/src/main/java/org/cbioportal/model/ResourceDefinition.java deleted file mode 100644 index 6efc8eab024..00000000000 --- a/model/src/main/java/org/cbioportal/model/ResourceDefinition.java +++ /dev/null @@ -1,76 +0,0 @@ -package org.cbioportal.model; - -import java.io.Serializable; -import javax.validation.constraints.NotNull; - -public class ResourceDefinition implements Serializable { - - @NotNull - private String resourceId; - @NotNull - private String displayName; - private String description; - @NotNull - private ResourceType resourceType; - private String priority; - private Boolean openByDefault; - @NotNull - private String cancerStudyIdentifier; - - public String getResourceId() { - return resourceId; - } - - public void setResourceId(String resourceId) { - this.resourceId = resourceId; - } - - public String getDisplayName() { - return displayName; - } - - public void setDisplayName(String displayName) { - this.displayName = displayName; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public ResourceType getResourceType() { - return resourceType; - } - - public void setResourceType(ResourceType resourceType) { - this.resourceType = resourceType; - } - - public String getPriority() { - return priority; - } - - public void setPriority(String priority) { - this.priority = priority; - } - - public Boolean getOpenByDefault() { - return openByDefault; - } - - public void setOpenByDefault(Boolean openByDefault) { - this.openByDefault = openByDefault; - } - - public String getCancerStudyIdentifier() { - return cancerStudyIdentifier; - } - - public void setCancerStudyIdentifier(String cancerStudyIdentifier) { - this.cancerStudyIdentifier = cancerStudyIdentifier; - } - -} diff --git a/model/src/main/java/org/cbioportal/model/Sample.java b/model/src/main/java/org/cbioportal/model/Sample.java deleted file mode 100644 index ec9f6165dc6..00000000000 --- a/model/src/main/java/org/cbioportal/model/Sample.java +++ /dev/null @@ -1,141 +0,0 @@ -package org.cbioportal.model; - -import javax.validation.constraints.NotNull; -import java.util.Objects; - -public class Sample extends UniqueKeyBase { - - public enum SampleType { - - PRIMARY_SOLID_TUMOR("Primary Solid Tumor"), - RECURRENT_SOLID_TUMOR("Recurrent Solid Tumor"), - PRIMARY_BLOOD_TUMOR("Primary Blood Tumor"), - RECURRENT_BLOOD_TUMOR("Recurrent Blood Tumor"), - METASTATIC("Metastatic"), - BLOOD_NORMAL("Blood Derived Normal"), - SOLID_NORMAL("Solid Tissues Normal"); - - private String value; - - SampleType(String value) { - this.value = value; - } - - public String getValue() { - return value; - } - - public static SampleType fromString(String value) { - - if (value != null) { - for (SampleType sampleType : SampleType.values()) { - if (value.equalsIgnoreCase(sampleType.value)) { - return sampleType; - } - } - } - return null; - } - - @Override - public String toString() { - return value; - } - } - - private Integer internalId; - @NotNull - private String stableId; - private SampleType sampleType; - private Integer patientId; - @NotNull - private String patientStableId; - private Patient patient; - @NotNull - private String cancerStudyIdentifier; - private Boolean sequenced; - private Boolean copyNumberSegmentPresent; - - public Integer getInternalId() { - return internalId; - } - - public void setInternalId(Integer internalId) { - this.internalId = internalId; - } - - public String getStableId() { - return stableId; - } - - public void setStableId(String stableId) { - this.stableId = stableId; - } - - public SampleType getSampleType() { - return sampleType; - } - - public void setSampleType(SampleType sampleType) { - this.sampleType = sampleType; - } - - public Integer getPatientId() { - return patientId; - } - - public void setPatientId(Integer patientId) { - this.patientId = patientId; - } - - public String getPatientStableId() { - return patientStableId; - } - - public void setPatientStableId(String patientStableId) { - this.patientStableId = patientStableId; - } - - public Patient getPatient() { - return patient; - } - - public void setPatient(Patient patient) { - this.patient = patient; - } - - public String getCancerStudyIdentifier() { - return cancerStudyIdentifier; - } - - public void setCancerStudyIdentifier(String cancerStudyIdentifier) { - this.cancerStudyIdentifier = cancerStudyIdentifier; - } - - public Boolean getSequenced() { - return sequenced; - } - - public void setSequenced(Boolean sequenced) { - this.sequenced = sequenced; - } - - public Boolean getCopyNumberSegmentPresent() { return copyNumberSegmentPresent; } - - public void setCopyNumberSegmentPresent(Boolean copyNumberSegmentPresent) { - this.copyNumberSegmentPresent = copyNumberSegmentPresent; - } - - @Override - public boolean equals(Object o) { - if (this == o) return true; - if (!(o instanceof Sample)) return false; - Sample sample = (Sample) o; - return getStableId().equals(sample.getStableId()) && getCancerStudyIdentifier().equals(sample.getCancerStudyIdentifier()); - } - - @Override - public int hashCode() { - return Objects.hash(getStableId(), getCancerStudyIdentifier()); - } -} diff --git a/model/src/main/java/org/cbioportal/model/SampleList.java b/model/src/main/java/org/cbioportal/model/SampleList.java deleted file mode 100644 index 9c3a067ecdd..00000000000 --- a/model/src/main/java/org/cbioportal/model/SampleList.java +++ /dev/null @@ -1,101 +0,0 @@ -package org.cbioportal.model; - -import java.io.Serializable; -import java.util.List; - -import javax.validation.constraints.NotNull; - -public class SampleList implements Serializable { - - private Integer listId; - @NotNull - private String stableId; - private String category; - private Integer cancerStudyId; - private String cancerStudyIdentifier; - private CancerStudy cancerStudy; - private String name; - private String description; - private Integer sampleCount; - private List sampleIds; - - public Integer getListId() { - return listId; - } - - public void setListId(Integer listId) { - this.listId = listId; - } - - public String getStableId() { - return stableId; - } - - public void setStableId(String stableId) { - this.stableId = stableId; - } - - public String getCategory() { - return category; - } - - public void setCategory(String category) { - this.category = category; - } - - public Integer getCancerStudyId() { - return cancerStudyId; - } - - public void setCancerStudyId(Integer cancerStudyId) { - this.cancerStudyId = cancerStudyId; - } - - public String getCancerStudyIdentifier() { - return cancerStudyIdentifier; - } - - public void setCancerStudyIdentifier(String cancerStudyIdentifier) { - this.cancerStudyIdentifier = cancerStudyIdentifier; - } - - public CancerStudy getCancerStudy() { - return cancerStudy; - } - - public void setCancerStudy(CancerStudy cancerStudy) { - this.cancerStudy = cancerStudy; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public Integer getSampleCount() { - return sampleCount; - } - - public void setSampleCount(Integer sampleCount) { - this.sampleCount = sampleCount; - } - - public List getSampleIds() { - return sampleIds; - } - - public void setSampleIds(List sampleIds) { - this.sampleIds = sampleIds; - } -} diff --git a/model/src/main/java/org/cbioportal/model/StructuralVariant.java b/model/src/main/java/org/cbioportal/model/StructuralVariant.java deleted file mode 100644 index 4d486c189f0..00000000000 --- a/model/src/main/java/org/cbioportal/model/StructuralVariant.java +++ /dev/null @@ -1,460 +0,0 @@ -/* - * Copyright (c) 2018 - 2022 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.cbioportal.model; - -import com.fasterxml.jackson.annotation.*; -import io.swagger.annotations.*; -import org.cbioportal.model.UniqueKeyBase; - -import java.io.Serializable; - -public class StructuralVariant extends UniqueKeyBase implements Serializable { - - private String molecularProfileId; - private String sampleId; - private String patientId; - private String studyId; - private Integer site1EntrezGeneId; - private String site1HugoSymbol; - private String site1EnsemblTranscriptId; - private String site1Chromosome; - private Integer site1Position; - private String site1Contig; - private String site1Region; - private Integer site1RegionNumber; - private String site1Description; - private Integer site2EntrezGeneId; - private String site2HugoSymbol; - private String site2EnsemblTranscriptId; - private String site2Chromosome; - private Integer site2Position; - private String site2Contig; - private String site2Region; - private Integer site2RegionNumber; - private String site2Description; - private String site2EffectOnFrame; - private String ncbiBuild; - private String dnaSupport; - private String rnaSupport; - private Integer normalReadCount; - private Integer tumorReadCount; - private Integer normalVariantCount; - private Integer tumorVariantCount; - private Integer normalPairedEndReadCount; - private Integer tumorPairedEndReadCount; - private Integer normalSplitReadCount; - private Integer tumorSplitReadCount; - private String annotation; - private String breakpointType; - private String connectionType; - private String eventInfo; - private String variantClass; - private Integer length; - private String comments; - private String driverFilter; - private String driverFilterAnn; - private String driverTiersFilter; - private String driverTiersFilterAnn; - private String svStatus; - - @JsonRawValue - @ApiModelProperty(dataType = "java.util.Map") - private String annotationJson; - - public String getMolecularProfileId() { - return molecularProfileId; - } - - public void setMolecularProfileId(String molecularProfileId) { - this.molecularProfileId = molecularProfileId; - } - - public String getSampleId() { - return sampleId; - } - - public void setSampleId(String tumorSampleBarcode) { - this.sampleId = tumorSampleBarcode; - } - - public String getPatientId() { - return patientId; - } - - public void setPatientId(String patientId) { - this.patientId = patientId; - } - - public String getStudyId() { - return studyId; - } - - public void setStudyId(String studyId) { - this.studyId = studyId; - } - - public Integer getSite1EntrezGeneId() { - return site1EntrezGeneId; - } - - public void setSite1EntrezGeneId(Integer site1EntrezGeneId) { - this.site1EntrezGeneId = site1EntrezGeneId; - } - - public String getSite1HugoSymbol() { - return site1HugoSymbol; - } - - public void setSite1HugoSymbol(String site1HugoSymbol) { - this.site1HugoSymbol = site1HugoSymbol; - } - - public String getSite1EnsemblTranscriptId() { - return site1EnsemblTranscriptId; - } - - public void setSite1EnsemblTranscriptId(String site1TranscriptId) { - this.site1EnsemblTranscriptId = site1TranscriptId; - } - - public String getSite1Chromosome() { - return site1Chromosome; - } - - public void setSite1Chromosome(String site1Chrom) { - this.site1Chromosome = site1Chrom; - } - - public Integer getSite1Position() { - return site1Position; - } - - public void setSite1Position(Integer site1Pos) { - this.site1Position = site1Pos; - } - - public String getSite1Description() { - return site1Description; - } - - public void setSite1Description(String site1Desc) { - this.site1Description = site1Desc; - } - - public Integer getSite2EntrezGeneId() { - return site2EntrezGeneId; - } - - public void setSite2EntrezGeneId(Integer site2EntrezGeneId) { - this.site2EntrezGeneId = site2EntrezGeneId; - } - - public String getSite2HugoSymbol() { - return site2HugoSymbol; - } - - public void setSite2HugoSymbol(String site2HugoSymbol) { - this.site2HugoSymbol = site2HugoSymbol; - } - - public String getSite2EnsemblTranscriptId() { - return site2EnsemblTranscriptId; - } - - public void setSite2EnsemblTranscriptId(String site2TranscriptId) { - this.site2EnsemblTranscriptId = site2TranscriptId; - } - - public String getSite2Chromosome() { - return site2Chromosome; - } - - public void setSite2Chromosome(String site2Chrom) { - this.site2Chromosome = site2Chrom; - } - - public Integer getSite2Position() { - return site2Position; - } - - public void setSite2Position(Integer site2Pos) { - this.site2Position = site2Pos; - } - - public String getSite2Description() { - return site2Description; - } - - public void setSite2Description(String site2Desc) { - this.site2Description = site2Desc; - } - - public String getSite2EffectOnFrame() { - return site2EffectOnFrame; - } - - public void setSite2EffectOnFrame(String site2EffectOnFrame) { - this.site2EffectOnFrame = site2EffectOnFrame; - } - - public String getNcbiBuild() { - return ncbiBuild; - } - - public void setNcbiBuild(String ncbiBuild) { - this.ncbiBuild = ncbiBuild; - } - - public String getDnaSupport() { - return dnaSupport; - } - - public void setDnaSupport(String dnaSupport) { - this.dnaSupport = dnaSupport; - } - - public String getRnaSupport() { - return rnaSupport; - } - - public void setRnaSupport(String rnaSupport) { - this.rnaSupport = rnaSupport; - } - - public Integer getNormalReadCount() { - return normalReadCount; - } - - public void setNormalReadCount(Integer normalReadCount) { - this.normalReadCount = normalReadCount; - } - - public Integer getTumorReadCount() { - return tumorReadCount; - } - - public void setTumorReadCount(Integer tumorReadCount) { - this.tumorReadCount = tumorReadCount; - } - - public Integer getNormalVariantCount() { - return normalVariantCount; - } - - public void setNormalVariantCount(Integer normalVariantCount) { - this.normalVariantCount = normalVariantCount; - } - - public Integer getTumorVariantCount() { - return tumorVariantCount; - } - - public void setTumorVariantCount(Integer tumorVariantCount) { - this.tumorVariantCount = tumorVariantCount; - } - - public Integer getNormalPairedEndReadCount() { - return normalPairedEndReadCount; - } - - public void setNormalPairedEndReadCount(Integer normalPairedEndReadCount) { - this.normalPairedEndReadCount = normalPairedEndReadCount; - } - - public Integer getTumorPairedEndReadCount() { - return tumorPairedEndReadCount; - } - - public void setTumorPairedEndReadCount(Integer tumorPairedEndReadCount) { - this.tumorPairedEndReadCount = tumorPairedEndReadCount; - } - - public Integer getNormalSplitReadCount() { - return normalSplitReadCount; - } - - public void setNormalSplitReadCount(Integer normalSplitReadCount) { - this.normalSplitReadCount = normalSplitReadCount; - } - - public Integer getTumorSplitReadCount() { - return tumorSplitReadCount; - } - - public void setTumorSplitReadCount(Integer tumorSplitReadCount) { - this.tumorSplitReadCount = tumorSplitReadCount; - } - - public String getAnnotation() { - return annotation; - } - - public void setAnnotation(String annotation) { - this.annotation = annotation; - } - - public String getBreakpointType() { - return breakpointType; - } - - public void setBreakpointType(String breakpointType) { - this.breakpointType = breakpointType; - } - - public String getConnectionType() { - return connectionType; - } - - public void setConnectionType(String connectionType) { - this.connectionType = connectionType; - } - - public String getEventInfo() { - return eventInfo; - } - - public void setEventInfo(String eventInfo) { - this.eventInfo = eventInfo; - } - - public String getVariantClass() { - return variantClass; - } - - public void setVariantClass(String variantClass) { - this.variantClass = variantClass; - } - - public Integer getLength() { - return length; - } - - public void setLength(Integer length) { - this.length = length; - } - - public String getComments() { - return comments; - } - - public void setComments(String comments) { - this.comments = comments; - } - - public String getDriverFilter() { - return driverFilter; - } - - public void setDriverFilter(String driverFilter) { - this.driverFilter = driverFilter; - } - - public String getDriverFilterAnn() { - return driverFilterAnn; - } - - public void setDriverFilterAnn(String driverFilterAnn) { - this.driverFilterAnn = driverFilterAnn; - } - - public String getDriverTiersFilter() { - return driverTiersFilter; - } - - public void setDriverTiersFilter(String driverTiersFilter) { - this.driverTiersFilter = driverTiersFilter; - } - - public String getDriverTiersFilterAnn() { - return driverTiersFilterAnn; - } - - public void setDriverTiersFilterAnn(String driverTiersFilterAnn) { - this.driverTiersFilterAnn = driverTiersFilterAnn; - } - - public String getSvStatus() { - return svStatus; - } - - public void setSvStatus(String svStatus) { - this.svStatus = svStatus; - } - - public String getSite1Contig() { - return site1Contig; - } - - public void setSite1Contig(String site1Contig) { - this.site1Contig = site1Contig; - } - - public String getSite1Region() { - return site1Region; - } - - public void setSite1Region(String site1Region) { - this.site1Region = site1Region; - } - - public Integer getSite1RegionNumber() { - return site1RegionNumber; - } - - public void setSite1RegionNumber(Integer site1RegionNumber) { - this.site1RegionNumber = site1RegionNumber; - } - - public String getSite2Contig() { - return site2Contig; - } - - public void setSite2Contig(String site2Contig) { - this.site2Contig = site2Contig; - } - - public String getSite2Region() { - return site2Region; - } - - public void setSite2Region(String site2Region) { - this.site2Region = site2Region; - } - - public Integer getSite2RegionNumber() { - return site2RegionNumber; - } - - public void setSite2RegionNumber(Integer site2RegionNumber) { - this.site2RegionNumber = site2RegionNumber; - } - - public String getAnnotationJson() { - return annotationJson; - } - - public void setAnnotationJson(String annotationJson) { - this.annotationJson = annotationJson; - } -} diff --git a/model/src/main/java/org/cbioportal/model/TypeOfCancer.java b/model/src/main/java/org/cbioportal/model/TypeOfCancer.java deleted file mode 100644 index c57f5226789..00000000000 --- a/model/src/main/java/org/cbioportal/model/TypeOfCancer.java +++ /dev/null @@ -1,54 +0,0 @@ -package org.cbioportal.model; - -import java.io.Serializable; -import javax.validation.constraints.NotNull; - -public class TypeOfCancer implements Serializable { - - @NotNull - private String typeOfCancerId; - private String name; - private String dedicatedColor; - private String shortName; - private String parent; - - public String getTypeOfCancerId() { - return typeOfCancerId; - } - - public void setTypeOfCancerId(String typeOfCancerId) { - this.typeOfCancerId = typeOfCancerId; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getDedicatedColor() { - return dedicatedColor; - } - - public void setDedicatedColor(String dedicatedColor) { - this.dedicatedColor = dedicatedColor; - } - - public String getShortName() { - return shortName; - } - - public void setShortName(String shortName) { - this.shortName = shortName; - } - - public String getParent() { - return parent; - } - - public void setParent(String parent) { - this.parent = parent; - } -} \ No newline at end of file diff --git a/persistence/persistence-api/pom.xml b/persistence/persistence-api/pom.xml deleted file mode 100644 index 71dd419e688..00000000000 --- a/persistence/persistence-api/pom.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - persistence - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - - persistence-api - - - - org.mskcc.cbio - model - - - org.mskcc.cbio - utils - - - javax.cache - cache-api - - - org.ehcache - ehcache - - - org.redisson - redisson - 3.13.2 - - - commons-io - commons-io - - - - - - - ../../src/main/resources/portal.properties - - - - src/main/resources - true - - - - - diff --git a/persistence/persistence-api/src/main/resources/ehcache.xml b/persistence/persistence-api/src/main/resources/ehcache.xml deleted file mode 100644 index a180cd36758..00000000000 --- a/persistence/persistence-api/src/main/resources/ehcache.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - org.cbioportal.persistence.util.CacheEventLogger - ASYNCHRONOUS - UNORDERED - CREATED - REMOVED - EXPIRED - EVICTED - UPDATED - - - - - diff --git a/persistence/persistence-connections/pom.xml b/persistence/persistence-connections/pom.xml deleted file mode 100644 index a3b6ce71197..00000000000 --- a/persistence/persistence-connections/pom.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - 4.0.0 - - persistence - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - - persistence-connections - - - - - maven-remote-resources-plugin - - - - bundle - - - - - - **/*.xml - - - - - - diff --git a/persistence/persistence-connections/src/main/resources/applicationContext-persistenceConnections.xml b/persistence/persistence-connections/src/main/resources/applicationContext-persistenceConnections.xml deleted file mode 100644 index 1259e8621cf..00000000000 --- a/persistence/persistence-connections/src/main/resources/applicationContext-persistenceConnections.xml +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - classpath:/portal.properties - file:///#{systemEnvironment['PORTAL_HOME']}/portal.properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - mysql - h2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/persistence/persistence-mybatis/pom.xml b/persistence/persistence-mybatis/pom.xml deleted file mode 100644 index 0f0f865aa87..00000000000 --- a/persistence/persistence-mybatis/pom.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - persistence - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - - persistence-mybatis - - - - org.mskcc.cbio - persistence-api - - - org.mskcc.cbio - db-scripts - test - - - org.mskcc.cbio - utils - - - junit - junit - - - org.springframework - spring-test - test - - - com.h2database - h2 - - - org.apache.commons - commons-dbcp2 - - - org.springframework - spring-jdbc - - - org.mybatis - mybatis-spring - - - org.apache.commons - commons-math3 - - - org.mockito - mockito-core - - - diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/VariantCountMyBatisRepositoryTest.java b/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/VariantCountMyBatisRepositoryTest.java deleted file mode 100644 index f77f1ce02a1..00000000000 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/VariantCountMyBatisRepositoryTest.java +++ /dev/null @@ -1,43 +0,0 @@ -package org.cbioportal.persistence.mybatis; - -import org.cbioportal.model.VariantCount; -import org.junit.Assert; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; - -import java.util.Arrays; -import java.util.List; - -@RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable -public class VariantCountMyBatisRepositoryTest { - - @Autowired - private VariantCountMyBatisRepository variantCountMyBatisRepository; - - @Test - public void fetchVariantCounts() throws Exception { - - List result = variantCountMyBatisRepository.fetchVariantCounts("study_tcga_pub_mutations", - Arrays.asList(207, 207, 369), Arrays.asList("AKT1 truncating", null, "ARAF G1513 missense")); - - Assert.assertEquals(3, result.size()); - VariantCount variantCount1 = result.get(0); - Assert.assertEquals("study_tcga_pub_mutations", variantCount1.getMolecularProfileId()); - Assert.assertEquals((Integer) 207, variantCount1.getEntrezGeneId()); - Assert.assertEquals(null, variantCount1.getKeyword()); - Assert.assertEquals((Integer) 21, variantCount1.getNumberOfSamplesWithKeyword()); - Assert.assertEquals((Integer) 22, variantCount1.getNumberOfSamplesWithMutationInGene()); - VariantCount variantCount2 = result.get(1); - Assert.assertEquals("study_tcga_pub_mutations", variantCount2.getMolecularProfileId()); - Assert.assertEquals((Integer) 207, variantCount2.getEntrezGeneId()); - Assert.assertEquals("AKT1 truncating", variantCount2.getKeyword()); - Assert.assertEquals((Integer) 54, variantCount2.getNumberOfSamplesWithKeyword()); - Assert.assertEquals((Integer) 64, variantCount2.getNumberOfSamplesWithMutationInGene()); - } -} diff --git a/persistence/persistence-mybatis/src/test/resources/logback.xml b/persistence/persistence-mybatis/src/test/resources/logback.xml deleted file mode 100644 index 9d21a927c45..00000000000 --- a/persistence/persistence-mybatis/src/test/resources/logback.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n - - - - - - - - - - - \ No newline at end of file diff --git a/persistence/pom.xml b/persistence/pom.xml deleted file mode 100644 index 45b409ac61c..00000000000 --- a/persistence/pom.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - master - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - - - - org.osgi - org.osgi.service.component.annotations - - - javax.annotation - javax.annotation-api - - - org.mybatis - mybatis - - - org.springframework - spring-beans - - - org.springframework - spring-context-support - - - org.springframework - spring-tx - - - - persistence - pom - - persistence-api - persistence-mybatis - persistence-connections - - - diff --git a/pom.xml b/pom.xml index 828ec726cec..575da41b367 100644 --- a/pom.xml +++ b/pom.xml @@ -1,1247 +1,540 @@ - - - 4.0.0 - org.mskcc.cbio - master - pom - Portal Master - - 0-unknown-version-SNAPSHOT - master maven module + + 4.0.0 - - scm:git:https://github.com/cBioPortal/cbioportal.git - + + org.springframework.boot + spring-boot-starter-parent + 3.1.4 + - - - alfresco - Alfresco - https://artifacts.alfresco.com/nexus/content/repositories/public/ - - false - - - - jitpack.io - https://jitpack.io - - - - - jitpack.io - https://jitpack.io - - + org.cbioportal + cbioportal + 6.0.0-SNAPSHOT - - - - true - - - org.mskcc.cbio.importer.Admin - - - - - com.github.cbioportal.maven-external-version - maven-external-version-plugin - f09c2b9608 - true - - - - - - - - org.jacoco - jacoco-maven-plugin - 0.8.5 - - - - pre-unit-test - process-test-classes - - prepare-agent - - - - ${project.build.directory}/coverage-reports/jacoco-ut.exec - - argLine - - - - - post-unit-test - test - - report - - - - ${project.build.directory}/coverage-reports/jacoco-ut.exec - - ${project.build.directory}/coverage-reports/jacoco-ut - - - - - - - maven-antrun-plugin - 1.8 - - false - - - validate - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ant-contrib - ant-contrib - 1.0b3 - - - ant - ant - - - - - org.apache.ant - ant-nodeps - 1.8.1 - - - - - - exec-maven-plugin - org.codehaus.mojo - 1.6.0 - false - - - Generate Test DB schema - integration-test - - exec - - - ${basedir}/db-scripts/src/main/resources/gen-cgds-test-schema.sh - - - - - - pl.project13.maven - git-commit-id-plugin - 2.2.4 - - - get-the-git-infos - - revision - - - initialize - - - validate-the-git-infos - - validateRevision - - - package - - - - true - - true - - - - - - - - external - - org.mskcc.cbio.importer.PortalImporterTool - cbioportal - - - - heroku + cBioPortal for Cancer Genomics - - - - - org.apache.maven.plugins - maven-resources-plugin - - false - 2.7 - - - org.apache.maven.shared - maven-filtering - 1.3 - - - - - copy-resources - validate - - copy-resources - - - . - - - heroku/ - true - - - - - - - - - pl.project13.maven - git-commit-id-plugin - - - get-the-git-infos - none - - - validate-the-git-infos - none - - - - - - - + + 21 + 21 - - v5.4.10 - com.github.cbioportal - 5.2.20.RELEASE - 5.3.0.RELEASE - 5.3.1.RELEASE - 1.1.6.RELEASE - 2.13.0 - 5.1.48 - 8.5.61.0 - 1.7.32 - 1.2.10 - 3.0.0 + yyyyMMdd-HHmm + ${maven.build.timestamp} + + com.github.cbioportal + v5.4.9 - UTF-8 - UTF-8 - org.mskcc - org.mskcc.mondrian - ${maven.build.timestamp} - yyyyMMdd-HHmm + + 2.13.1 - cBioPortal_cbioportal - ${project.groupId}:${project.artifactId} - cbioportal - https://sonarcloud.io + + + 1.1.6.RELEASE - cbioportal - com.mysql.jdbc.Driver - - jdbc:mysql://127.0.0.1:3306/cgds_test?useSSL=false&sessionVariables=default_storage_engine=InnoDB&allowLoadLocalInfile=true&allowPublicKeyRetrieval=true - cbio_user - somepassword + 2.12.5 + 5.1.48 + 3.0.0 + UTF-8 + UTF-8 - - provided - 720 + + cBioPortal_cbioportal + ${project.groupId}:${project.artifactId} + cbioportal + https://sonarcloud.io - - 2.13.1 - + + com.mysql.jdbc.Driver + + + jdbc:mysql://127.0.0.1:3306/cgds_test?sessionVariables=default_storage_engine=InnoDB&allowLoadLocalInfile=true + cbio_user + somepassword - - portal - - - core - web - model - persistence - service - scripts - db-scripts - security - utils - maf - + + provided + 720 - - - - org.slf4j - slf4j-api - - - ch.qos.logback - logback-core - - - ch.qos.logback - logback-classic - - - pl.pragmatists - JUnitParams - 1.1.0 - test - - - - - + + 1.6.3 + 3.0.2 + 1.16.2 + 5.8.0 + 4.1.1 - - org.mskcc.cbio - portal - ${project.version} - - - org.mskcc.cbio - core - ${project.version} - - - org.mskcc.cbio - web - ${project.version} - - - org.mskcc.cbio - model - ${project.version} - - - org.mskcc.cbio - persistence - ${project.version} - - - org.mskcc.cbio - persistence-api - ${project.version} - - - org.mskcc.cbio - persistence-connections - ${project.version} - - - org.mskcc.cbio - persistence-mybatis - ${project.version} - - - org.mskcc.cbio - service - ${project.version} - - - org.mskcc.cbio - scripts - ${project.version} - - - org.mskcc.cbio - db-scripts - ${project.version} - - - org.mskcc.cbio - security - ${project.version} - - - org.mskcc.cbio - security-spring - ${project.version} - - - org.mskcc.cbio - permission-evaluator - ${project.version} - - - org.mongodb - mongo-java-driver - 3.12.9 - - - org.mskcc.cbio - utils - ${project.version} - - - com.github.cbioportal - session-service - model - v0.5.0 - - - - - mysql - mysql-connector-java - ${mysql-connector.version} - - - - org.apache.commons - commons-lang3 - 3.11 - - - org.apache.commons - commons-text - 1.10.0 - - - org.apache.commons - commons-math3 - 3.6.1 - - - commons-beanutils - commons-beanutils - 1.9.4 - - - commons-cli - commons-cli - 1.4 - - - org.apache.commons - commons-collections4 - 4.4 - - - org.apache.geronimo.bundles - commons-discovery - 0.4_1 - runtime - - - org.apache.commons - commons-dbcp2 - 2.8.0 - - - commons-fileupload - commons-fileupload - 1.4 - - - commons-io - commons-io - 2.8.0 - - - commons-codec - commons-codec - 1.15 - - - - org.apache.httpcomponents - httpclient - 4.3.6 - - - org.apache.httpcomponents - httpcore - 4.3.2 - - - commons-httpclient - commons-httpclient - 3.1 - - - - javax.annotation - javax.annotation-api - 1.3.2 - - - javax.el - javax.el-api - 3.0.0 - - - org.glassfish.web - javax.el - 2.2.6 - - - - org.hibernate - hibernate-validator - 5.3.4.Final - - - - org.mockito - mockito-core - 3.3.3 - test - - - hamcrest-core - org.hamcrest - - - - - - com.vlkan.hrrs - hrrs-servlet-filter-base64 - 0.5 - - - - com.google.guava - guava - 29.0-jre - - - - org.mybatis - mybatis-spring - 2.0.4 - - - org.mybatis - mybatis - 3.5.7 - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - ch.qos.logback - logback-core - ${logback.version} - - - ch.qos.logback - logback-classic - ${logback.version} - + + 3.13.2 + 3.6.1 + 2.2.0 + 4.4 + 0.11.2 + 4.11.0 + 32.1.3-jre + 1.16.0 + 1.7 + 1.1 + 3.7.1 + 1.1.1 + 3.12.14 + 0.8.2 + 5.1.48 + 1.8.1 + 3.14.0 - - - org.springframework - spring-core - ${spring.version} - - - org.springframework - spring-expression - ${spring.version} - - - org.springframework - spring-beans - ${spring.version} - - - org.springframework - spring-aop - ${spring.version} - - - org.springframework - spring-context - ${spring.version} - - - org.springframework - spring-context-support - 5.2.6.RELEASE - - - org.springframework.integration - spring-integration-core - ${spring.integration.version} - - - org.springframework.integration - spring-integration-sftp - ${spring.integration.version} - - - org.springframework - spring-tx - ${spring.version} - - - org.springframework - spring-orm - ${spring.version} - - - org.springframework - spring-jdbc - ${spring.version} - - - org.springframework - spring-webmvc - ${spring.version} - - - org.springframework - spring-web - ${spring.version} - - - org.springframework - spring-test - ${spring.version} - test - - - io.reactivex.rxjava2 - rxjava - 2.2.19 - - - - org.springframework.security - spring-security-core - ${spring.security.version} - - - org.springframework.security - spring-security-config - ${spring.security.version} - - - org.springframework.security - spring-security-web - ${spring.security.version} - - - org.springframework.security - spring-security-test - ${spring.security.version} - - - org.springframework.security - spring-security-ldap - ${spring.security.version} - - - org.springframework.security - spring-security-openid - ${spring.security.version} - - - org.springframework.security - spring-security-taglibs - ${spring.security.version} - runtime - - - org.springframework.security - spring-security-acl - ${spring.security.version} - - - org.springframework.security - spring-security-jwt - 1.0.11.RELEASE - - - org.bouncycastle - bcprov-jdk15on - - - - - org.springframework.security.oauth - spring-security-oauth2 - 2.2.5.RELEASE - - - org.springframework.security.extensions - spring-security-saml2-core - 1.0.3.RELEASE - - - - org.springframework.social - spring-social-config - ${spring.social.version} - - - org.springframework.social - spring-social-core - ${spring.social.version} - - - org.springframework.social - spring-social-security - ${spring.social.version} - - - org.springframework.social - spring-social-web - ${spring.social.version} - - - - com.github.spring-social - spring-social-google - 1.1.3 - - - - com.github.cbioportal - spring-social-live - 40100de1ad80e2865c834f2b64b32bb6c2b368ce - - - javax.servlet - servlet-api - - - - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version} - - - - junit - junit - 4.12 - test - - - - com.h2database - h2 - 1.4.197 - test - - - - javax.cache - cache-api - 1.1.0 - - - org.ehcache - ehcache - 3.7.1 - - - - com.google.inject - guice - 2.0 - - - - javax.servlet - javax.servlet-api - 3.0.1 - - - - io.jsonwebtoken - jjwt-api - 0.10.5 - - - io.jsonwebtoken - jjwt-impl - 0.10.5 - runtime - - - io.jsonwebtoken - jjwt-jackson - 0.10.5 - runtime - - - - jstl - jstl - 1.2 - runtime - - - - org.apache.tomcat - tomcat-catalina - 7.0.68 - - ${tomcat.catalina.scope} - - - - org.osgi - org.osgi.service.component.annotations - 1.4.0 - provided - - - cglib - cglib - 2.2 - - - com.googlecode.json-simple - json-simple - 1.1 - - - io.springfox - springfox-bean-validators - ${springfox.version} - - - io.springfox - springfox-boot-starter - ${springfox.version} - - - io.springfox - springfox-oas - ${springfox.version} - - - io.springfox - springfox-spring-web - ${springfox.version} - - - org.mapstruct - mapstruct - 1.0.0.Final - - - com.jayway.jsonpath - json-path-assert - 2.4.0 - test - - - com.github.romain-warnan - simple-java-bitly - 1.1 - - - commons-validator - commons-validator - 1.6 - - - io.sentry - sentry-spring - 1.7.2 - - - org.aspectj - aspectjweaver - 1.8.12 - - - com.datumbox - datumbox-framework-lib - 0.8.1 - - - org.owasp - antisamy - 1.4 - - - org.antlr - antlr-runtime - 3.2 - - - net.sf.jopt-simple - jopt-simple - 3.0-rc2 - - - net.sf.jung - jung-api - 2.0.1 - - - net.sf.jung - jung-graph-impl - 2.0.1 - - - net.sf.opencsv - opencsv - 2.3 - - - batik - batik - 1.5 - - - batik - batik-rasterizer - 1.5 - - - org.apache.xmlgraphics - batik-codec - 1.7 - - - xalan - xalan - - - - - org.apache.xmlgraphics - fop - 1.0 - - - xerces - xercesImpl - 2.12.0-alfresco-patched-20191004 - - - - dom4j - dom4j - 1.6.1 - - - jaxen - jaxen - 1.1.6 - - - org.easymock - easymock - 3.2 - test - - - cglib - cglib-nodep - - - - - com.auth0 - jwks-rsa - 0.9.0 - - - + + org.mskcc + org.mskcc.mondrian + - - - - src/main/resources - true - - **/portal.properties - **/maven.properties - **/git.properties - - - - src/main/resources - false - - **/portal.properties - **/maven.properties - **/git.properties - - - - - - - org.apache.maven.plugins - maven-resources-plugin - - - org.apache.maven.plugins - maven-site-plugin - - - org.apache.maven.plugins - maven-release-plugin - - + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-test + test + + + org.junit.vintage + junit-vintage-engine + test + + + org.slf4j + slf4j-api + + + ch.qos.logback + logback-core + + + ch.qos.logback + logback-classic + + + pl.pragmatists + JUnitParams + 1.1.0 + test + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-validation + + + org.mybatis.spring.boot + mybatis-spring-boot-starter + ${mybatis.starter.version} + + + org.redisson + redisson + ${redisson.version} + + + org.apache.commons + commons-math3 + ${commons-math3.version} + + + org.springdoc + springdoc-openapi-starter-webmvc-ui + ${springdoc.version} + + + org.springframework.security + spring-security-core + + + org.apache.commons + commons-collections4 + ${apache-commons-collections.version} + + + io.jsonwebtoken + jjwt-api + ${io-jsonwebtoken.version} + + + io.jsonwebtoken + jjwt-impl + ${io-jsonwebtoken.version} + + + io.jsonwebtoken + jjwt-jackson + ${io-jsonwebtoken.version} + + + org.springframework.boot + spring-boot-starter-data-mongodb + + + org.mongodb + bson + ${mongodb_bson.version} + + + com.google.guava + guava + ${google_guava.version} + + + commons-codec + commons-codec + ${commons_codec.version} + + + commons-validator + commons-validator + ${commons_validator.version} + + + com.github.romain-warnan + simple-java-bitly + ${simple_java_bitly.version} + + + org.ehcache + ehcache + ${ehcache.version} + + + com.googlecode.json-simple + json-simple + ${json_simple.version} + + + org.springframework.boot + spring-boot-starter-cache + + + org.mongodb + mongo-java-driver + ${mongo_java_driver.version} + + + com.datumbox + datumbox-framework-lib + ${datumbox.version} + + + org.springframework.security + spring-security-config + + + org.springframework.security + spring-security-web + + + mysql + mysql-connector-java + ${mysql_driver.version} + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + com.github.dasniko + testcontainers-keycloak + ${dasniko-testcontainer-keycload.version} + test + + + org.springframework.security + spring-security-test + test + + + org.seleniumhq.selenium + selenium-chrome-driver + ${selenium_chrome_driver.version} + test + + + org.testcontainers + testcontainers + test + + + org.testcontainers + mysql + test + + + org.testcontainers + selenium + test + + + com.h2database + h2 + test + - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 1.8 - 1.8 - - -parameters - - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.2 - - - org.apache.maven.plugins - maven-dependency-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-war-plugin - 3.3.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - org.apache.maven.plugins - maven-shade-plugin - 3.2.4 - - - maven-failsafe-plugin - 3.0.0-M4 - - - org.codehaus.mojo - tomcat-maven-plugin - 1.1 - - - org.codehaus.mojo - sql-maven-plugin - 1.5 - - - mysql - mysql-connector-java - ${mysql-connector.version} - - - - - org.apache.maven.plugins - maven-invoker-plugin - 3.2.1 - - - maven-remote-resources-plugin - 1.7.0 - - - maven-clean-plugin - 3.1.0 - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.codehaus.mojo - sql-maven-plugin - - execute - - - - - - - - - - - - - + + + com.github.jitpack + maven-simple + 0.1 + + + + org.springframework.boot + spring-boot-starter-oauth2-client + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + + + org.springframework.security + spring-security-saml2-service-provider + + + org.springframework.session + spring-session-data-redis + + + org.springframework.boot + spring-boot-starter-data-redis + + + org.springframework.boot + spring-boot-devtools + runtime + true + + - - - - org.apache.maven.plugins - maven-javadoc-plugin - - org.umlgraph.doclet.UmlGraphDoc - - org.umlgraph - umlgraph - 5.6 - - -views -all - true - - - - org.apache.maven.plugins - maven-jxr-plugin - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - + + cbioportal + + + + org.apache.maven.plugins + maven-wrapper-plugin + 3.2.0 + + + + + + src/main/resources/application.properties + src/main/resources/maven.properties + + + + + + src/main/resources + true + + artwork/** + content/** + tutorials/** + webapp/** + templates/** + *.pdf + db-scripts/** + + + + + src/main/resources + false + + webapp/** + templates/** + + + + + src/main/resources/db-scripts + db-scripts + false + + cgds.sql + migration.sql + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + repackage + + exec + + + + + + + + io.github.git-commit-id + git-commit-id-maven-plugin + 5.0.0 + + + get-the-git-infos + initialize + + revision + + + + validate-the-git-infos + package + + validateRevision + + + + + ${project.basedir}/.git + true + + ${project.build.outputDirectory}/git.properties + full + + + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack + prepare-package + + unpack + + + + + ${frontend.groupId} + cbioportal-frontend + ${frontend.version} + jar + + ${project.build.directory}/classes + *index* + true + + + + + + + + org.apache.maven.plugins + maven-wrapper-plugin + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + org.umlgraph.doclet.UmlGraphDoc + + org.umlgraph + umlgraph + 5.6 + + -views -all + true + + + + + + + + + jboss-third-party + + https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/ + + + maven-snapshots + https://repository.apache.org/content/repositories/snapshots/ + + + maven-shade-plugin + + https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-shade-plugin + + + + + + + jitpack.io + https://jitpack.io + + + + jboss-third-party + + https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/ + + + + shiboleth + + https://build.shibboleth.net/nexus/content/repositories/releases/ + + + + maven-central + https://repo1.maven.org/maven2/ + + + + + + default + + true + + + false + + true + + + + integration-test + + true + + false + + + - - - portal.snapshots - cBio Portal Snapshots Repository - ${portal.snapshot.url} - - - portal.releases - cBio Portal Releases Repository - ${portal.release.url} - - diff --git a/portal/package.json b/portal/package.json deleted file mode 100644 index 524cbdb977a..00000000000 --- a/portal/package.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "cbioportal", - "version": "1.0.0", - "description": "The cBioPortal for Cancer Genomics provides visualization, analysis, and download of large-scale cancer genomics data sets. The cBioPortal is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3, as published by the Free Software Foundation.", - "main": "index.js", - "directories": { - "doc": "docs", - "test": "test" - }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/cBioPortal/cbioportal.git" - }, - "author": "", - "license": "ISC", - "bugs": { - "url": "https://github.com/cBioPortal/cbioportal/issues" - }, - "homepage": "https://github.com/cBioPortal/cbioportal#readme", - "dependencies": { - "chai": "^3.5.0", - "mocha": "^3.1.2", - "underscore": "^1.8.3" - } -} diff --git a/portal/pom.xml b/portal/pom.xml deleted file mode 100644 index 863d73a87d9..00000000000 --- a/portal/pom.xml +++ /dev/null @@ -1,330 +0,0 @@ - - - - - master - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - cbioportal - war - cBioPortal - http://maven.apache.org - - - - ch.qos.logback - logback-classic - 1.2.10 - - - ch.qos.logback - logback-core - 1.2.10 - - - org.springframework.security - spring-security-taglibs - - - org.springframework.security.extensions - spring-security-saml2-core - - - - jstl - jstl - - - - org.mskcc.cbio - core - - - - org.mskcc.cbio - web - - - org.apache.tomcat - tomcat-catalina - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - package - - copy - - - - - com.heroku - webapp-runner - ${webapp-runner.version} - webapp-runner.jar - - - - - - - unpack - prepare-package - - unpack - - - - - ${frontend.groupId} - cbioportal-frontend - ${frontend.version} - jar - . - *index* - true - - - - - - - - - org.apache.maven.plugins - maven-war-plugin - - ${exclude.redisson} - ${final.war.name} - ${project.build.directory}/portal - true - \ - - - ${project.parent.basedir}/persistence/persistence-connections/src/main/resources - WEB-INF/classes - - false - - - ${project.parent.basedir}/web/src/main/resources - WEB-INF/classes - true - - - src/main/webapp/WEB-INF/jsp/global - footer.jsp - WEB-INF/jsp/global - true - - - src/main/webapp/WEB-INF - - **/web.xml - - WEB-INF - true - - - reactapp - reactapp - - - ${project.parent.basedir}/db-scripts/src/main/resources - db-scripts - true - - - - - - - org.codehaus.mojo - tomcat-maven-plugin - - localhost - http://localhost:8080/manager/text - - - - - org.apache.maven.plugins - maven-resources-plugin - - - copy-parent-resources - process-sources - - copy-resources - - - ${project.build.directory}/classes - - - ${project.parent.basedir}/src/main/resources - true - - **/*.properties - - - **/portal.properties.* - **/logback.xml.* - **/maven.properties.* - **/git.properties.* - **/*.EXAMPLE - - - - - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - src/integration-tests - - */pom.xml - - ${project.build.directory}/integration-tests - ${skipTests} - ${skipTests} - - clean - verify - - - ${project.build.directory}/cbioportal.war - - ${db.test.username} - ${db.test.password} - ${db.test.url} - - - - - integration-test - - integration-test - verify - - - - - - - - ../src/main/resources/portal.properties - ../src/main/resources/maven.properties - - - - - - src/main/resources - true - - **/*.jks - artwork/** - content/** - tutorials/** - - - - src/main/resources - false - - **/*.jks - **/applicationContext-security.xml - - - - src/main/webapp/WEB-INF - true - - **/web.xml - - - - src/main/webapp/WEB-INF - false - - **/web.xml - - - - - - - ${maven.build.timestamp} - yyyyMMdd-HHmm - Tomcat - - - - - - heroku - - - - maven-clean-plugin - - - clean-jar-artifacts - install - - clean - - - true - - - ${project.parent.basedir}/portal/target - - *.war - dependency/webapp-runner.jar - - - - - - - - - - - - - exclude-redisson - - WEB-INF/lib/redisson-*.jar - - - - exclude-redisson - - - - - diff --git a/portal/runSpecJS.sh b/portal/runSpecJS.sh deleted file mode 100644 index 4fcffdaa48d..00000000000 --- a/portal/runSpecJS.sh +++ /dev/null @@ -1 +0,0 @@ -find ./src/main/webapp/js/src -name "*.spec.js" | xargs node_modules/mocha/bin/mocha diff --git a/portal/src/integration-tests/README.md b/portal/src/integration-tests/README.md deleted file mode 100644 index ec705dd0eaa..00000000000 --- a/portal/src/integration-tests/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Integration tests - -This folder contains maven projects that test particular functionality of `cbioportal.war` started under different settings. - -These tests get called by `maven-invoker-plugin` that is declared in the `portal` maven module of the project. - -Keeping tests as separate maven projects liberate us from the application dependencies and unnecessary conflicts between them and test dependencies. \ No newline at end of file diff --git a/portal/src/integration-tests/saml-oauth2-setup/README.md b/portal/src/integration-tests/saml-oauth2-setup/README.md deleted file mode 100644 index 550b71b45dd..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# saml-oauth2-setup - -Tests oauth2 security workflow of the API with SAML authentication method for the UI. - -- `OfflineTokenDownloadIntegrationTests` tests downloading an offline token to gain access to cbioportal API. -- `Oauth2ResourceServerIntegrationTests` tests API access by different type of users (anonymous, non authorized and authorized). - -## Start mysql server for integration tests - -database name: cgds_test -username: cbio_user -password: somepassword -port: 3306 - -## Start web container with cbioportal and saml IDP - -You can start tomcat to play with the setup with the following command (replace with your values): - -```$bash -cd portal/src/integration-tests/saml-oauth2-setup -CBIO_TEST_DB_USR=cbio_user \ - CBIO_TEST_DB_PSW=somepassword \ - CBIO_TEST_DB_HOST=127.0.0.1:3306 \ - CBIO_TEST_DB_NAME=cgds_test \ - CBIO_TEST_DB_CONNECTION_STRING=jdbc:mysql://127.0.0.1:3306/cgds_test?sessionVariables=default_storage_engine=InnoDB \ - CBIO_WAR_LOCATION=../../../target/cbioportal.war \ - mvn org.codehaus.cargo:cargo-maven2-plugin:run --non-recursive -``` - -## Run integration tests only - -After starting the tomcat server above, you can run all tests with: - -```$bash -cd portal/src/integration-tests/saml-oauth2-setup -mvn test failsafe:integration-test -``` diff --git a/portal/src/integration-tests/saml-oauth2-setup/pom.xml b/portal/src/integration-tests/saml-oauth2-setup/pom.xml deleted file mode 100644 index 2db22342264..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/pom.xml +++ /dev/null @@ -1,166 +0,0 @@ - - - 4.0.0 - org.mskcc.cbio - saml-oauth2-setup - 0.0.1-SNAPSHOT - pom - - - saml-idp - - - - - junit - junit - 4.12 - test - - - org.mock-server - mockserver-netty - 5.8.0 - test - - - org.mock-server - mockserver-client-java - 5.8.0 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.5.1 - - 1.8 - 1.8 - - -parameters - - - - - - testCompile - - - - - - org.codehaus.cargo - cargo-maven2-plugin - 1.7.8 - - - tomcat8x - embedded - - saml - oauth2 - - ${env.CBIO_TEST_DB_USR} - ${env.CBIO_TEST_DB_PSW} - ${env.CBIO_TEST_DB_CONNECTION_STRING} - - file://${project.basedir}/testSamlKeystore.jks - - 123456 - secure-key - 654321 - secure-key - - file://${project.basedir}/saml-idp-metadata.xml - - - specificBinding - bindings:HTTP-Redirect - #{null} - cbioportal - spring.security.saml.idp.id - User.email - - org.cbioportal.security.spring.authentication.saml.SAMLUserDetailsServiceImpl - - false - - false - / - client_id - client_secret - token_issuer - http://localhost:8443/auth/realms/cbio/token - http://localhost:8080/api/data-access-token/oauth2 - http://localhost:8443/auth/realms/cbio/auth - http://localhost:8443/auth/realms/cbio/jwkUrl - resource_access::cbioportal::roles - - - - - 8080 - - -Xms2g - -Xmx4g - - - - false - - - org.mskcc.cbio - cbioportal - war - ${env.CBIO_WAR_LOCATION} - - - org.mskcc.cbio - saml-idp - war - ${project.basedir}/saml-idp/target/saml-idp.war - - - - - - start-server - pre-integration-test - - start - - - - stop-server - post-integration-test - - stop - - - - - - maven-failsafe-plugin - 3.0.0-M4 - - - **/*IntegrationTests - - false - - - - - integration-test - verify - - - - - - - diff --git a/portal/src/integration-tests/saml-oauth2-setup/saml-idp-metadata.xml b/portal/src/integration-tests/saml-oauth2-setup/saml-idp-metadata.xml deleted file mode 100644 index ec59378d8bd..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/saml-idp-metadata.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - MIIChTCCAe4CCQDo0wjPUK8sMDANBgkqhkiG9w0BAQsFADCBhjELMAkGA1UEBhMCVVMxEzARBgNV - BAgMCldhc2hpbmd0b24xEjAQBgNVBAcMCVZhbmNvdXZlcjEdMBsGA1UECgwUU3ByaW5nIFNlY3Vy - aXR5IFNBTUwxDDAKBgNVBAsMA2lkcDEhMB8GA1UEAwwYaWRwLnNwcmluZy5zZWN1cml0eS5zYW1s - MB4XDTE4MDUxNDE0NTUyMVoXDTI4MDUxMTE0NTUyMVowgYYxCzAJBgNVBAYTAlVTMRMwEQYDVQQI - DApXYXNoaW5ndG9uMRIwEAYDVQQHDAlWYW5jb3V2ZXIxHTAbBgNVBAoMFFNwcmluZyBTZWN1cml0 - eSBTQU1MMQwwCgYDVQQLDANpZHAxITAfBgNVBAMMGGlkcC5zcHJpbmcuc2VjdXJpdHkuc2FtbDCB - nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA2EuygAucRBWtYifgEH/ErVUive4dZdqo72Bze4Mb - kPuTKLrMCLB6IXxt1p5lu+tr0JxOiRO3KFVOO3D0l+j9zOow4g+JdoMQsjSzA6HtL/D9ZjXP6iUx - FCYx+qmnVl3X9ipBD/HVKOBlzIqeXTSa5D17uxPQVxK64UDOI3CyY4cCAwEAATANBgkqhkiG9w0B - AQsFAAOBgQAj+6b6dlA6SitTfz44LdnFSW9mYaeimwPP8ZtU7/3EJCzLd5eq7N/0kYPNVclZvB45 - I0UMT77AHWrNyScm56MTcEpSuHhJHAqRAgJKbciCTNsFI928EqiWSmu//w0ASBN3bVa8nv8/rafu - utCq3RskTkHVZnbT5Xa6ITEZxSncow== - - - - - - - - MIIChTCCAe4CCQDo0wjPUK8sMDANBgkqhkiG9w0BAQsFADCBhjELMAkGA1UEBhMCVVMxEzARBgNV - BAgMCldhc2hpbmd0b24xEjAQBgNVBAcMCVZhbmNvdXZlcjEdMBsGA1UECgwUU3ByaW5nIFNlY3Vy - aXR5IFNBTUwxDDAKBgNVBAsMA2lkcDEhMB8GA1UEAwwYaWRwLnNwcmluZy5zZWN1cml0eS5zYW1s - MB4XDTE4MDUxNDE0NTUyMVoXDTI4MDUxMTE0NTUyMVowgYYxCzAJBgNVBAYTAlVTMRMwEQYDVQQI - DApXYXNoaW5ndG9uMRIwEAYDVQQHDAlWYW5jb3V2ZXIxHTAbBgNVBAoMFFNwcmluZyBTZWN1cml0 - eSBTQU1MMQwwCgYDVQQLDANpZHAxITAfBgNVBAMMGGlkcC5zcHJpbmcuc2VjdXJpdHkuc2FtbDCB - nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA2EuygAucRBWtYifgEH/ErVUive4dZdqo72Bze4Mb - kPuTKLrMCLB6IXxt1p5lu+tr0JxOiRO3KFVOO3D0l+j9zOow4g+JdoMQsjSzA6HtL/D9ZjXP6iUx - FCYx+qmnVl3X9ipBD/HVKOBlzIqeXTSa5D17uxPQVxK64UDOI3CyY4cCAwEAATANBgkqhkiG9w0B - AQsFAAOBgQAj+6b6dlA6SitTfz44LdnFSW9mYaeimwPP8ZtU7/3EJCzLd5eq7N/0kYPNVclZvB45 - I0UMT77AHWrNyScm56MTcEpSuHhJHAqRAgJKbciCTNsFI928EqiWSmu//w0ASBN3bVa8nv8/rafu - utCq3RskTkHVZnbT5Xa6ITEZxSncow== - - - - - urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress - - - - \ No newline at end of file diff --git a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/README.md b/portal/src/integration-tests/saml-oauth2-setup/saml-idp/README.md deleted file mode 100644 index dde9bc388ce..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/README.md +++ /dev/null @@ -1,18 +0,0 @@ -# saml-idp - -A test SAML Identity Provider. It is used by cbioportal integration tests. -It's modified version of [a saml IDP sample code](https://github.com/spring-projects/spring-security-saml/tree/develop/samples/boot/simple-identity-provider) of the spring security. -`application.yml` specify a test user email that is added to assertions. - -## License - -The sample code is distributed under Apache License, Version 2.0. - -## Known limitations - -- The IDP does not sign assertions. That's why we had to set the following flag for the test cbioportal application: - -```$xml - - false -``` diff --git a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/pom.xml b/portal/src/integration-tests/saml-oauth2-setup/saml-idp/pom.xml deleted file mode 100644 index 2cc5d6386c8..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/pom.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - 4.0.0 - org.mskcc.cbio - saml-idp - 0.0.1-SNAPSHOT - war - - - - org.springframework.security.extensions - spring-security-saml2-core - 2.0.0.M31 - - - org.springframework.boot - spring-boot-starter-web - 2.2.0.RELEASE - - - org.slf4j - jul-to-slf4j - - - - - org.springframework.boot - spring-boot-starter-tomcat - provided - 2.2.0.RELEASE - - - - - saml-idp - - - maven-war-plugin - 2.2 - - false - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.5.1 - - 1.8 - 1.8 - - -parameters - - - - - - \ No newline at end of file diff --git a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/SimpleIdentityProviderApplication.java b/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/SimpleIdentityProviderApplication.java deleted file mode 100644 index ad7c9f4f5ba..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/SimpleIdentityProviderApplication.java +++ /dev/null @@ -1,8 +0,0 @@ -package sample; - -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; - -@SpringBootApplication -public class SimpleIdentityProviderApplication extends SpringBootServletInitializer { -} diff --git a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/config/AppConfig.java b/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/config/AppConfig.java deleted file mode 100644 index e9b6720af07..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/config/AppConfig.java +++ /dev/null @@ -1,10 +0,0 @@ -package sample.config; - -import org.springframework.boot.context.properties.ConfigurationProperties; -import org.springframework.context.annotation.Configuration; -import org.springframework.security.saml.provider.SamlServerConfiguration; - -@ConfigurationProperties(prefix = "spring.security.saml2") -@Configuration -public class AppConfig extends SamlServerConfiguration { -} diff --git a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/config/BeanConfig.java b/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/config/BeanConfig.java deleted file mode 100644 index ee5d8639e13..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/config/BeanConfig.java +++ /dev/null @@ -1,48 +0,0 @@ -package sample.config; - -import org.springframework.beans.factory.annotation.Value; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.security.core.userdetails.User; -import org.springframework.security.core.userdetails.UserDetails; -import org.springframework.security.core.userdetails.UserDetailsService; -import org.springframework.security.provisioning.InMemoryUserDetailsManager; -import org.springframework.security.saml.provider.SamlServerConfiguration; -import org.springframework.security.saml.provider.identity.AssertionEnhancer; -import org.springframework.security.saml.provider.identity.config.SamlIdentityProviderServerBeanConfiguration; -import org.springframework.security.saml.saml2.attribute.Attribute; - -@Configuration -public class BeanConfig extends SamlIdentityProviderServerBeanConfiguration { - private final AppConfig config; - - public BeanConfig(AppConfig config) { - this.config = config; - } - - @Override - protected SamlServerConfiguration getDefaultHostSamlServerConfiguration() { - return config; - } - - @Bean(name = "samlAssertionEnhancer") - public AssertionEnhancer samlAssertionEnhancer(@Value("${user.email}") String testEmail) { - return assertion -> { - Attribute emailAttribute = new Attribute(); - emailAttribute.setName("User.email"); - emailAttribute.addValues(testEmail); - assertion.addAttribute(emailAttribute); - return assertion; - }; - } - - @Bean - public UserDetailsService userDetailsService() { - UserDetails userDetails = User.withDefaultPasswordEncoder() - .username("user") - .password("password") - .roles("USER") - .build(); - return new InMemoryUserDetailsManager(userDetails); - } -} diff --git a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/config/SecurityConfiguration.java b/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/config/SecurityConfiguration.java deleted file mode 100644 index dab73280bb4..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/config/SecurityConfiguration.java +++ /dev/null @@ -1,59 +0,0 @@ -package sample.config; - -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.context.annotation.Configuration; -import org.springframework.core.annotation.Order; -import org.springframework.security.config.annotation.web.builders.HttpSecurity; -import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; -import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; -import org.springframework.security.saml.provider.identity.config.SamlIdentityProviderSecurityConfiguration; - -import static org.springframework.security.saml.provider.identity.config.SamlIdentityProviderSecurityDsl.identityProvider; - -@EnableWebSecurity -public class SecurityConfiguration { - - @Configuration - @Order(1) - public static class SamlSecurity extends SamlIdentityProviderSecurityConfiguration { - - private final AppConfig appConfig; - private final BeanConfig beanConfig; - - public SamlSecurity(BeanConfig beanConfig, @Qualifier("appConfig") AppConfig appConfig) { - super("/saml/idp/", beanConfig); - this.appConfig = appConfig; - this.beanConfig = beanConfig; - } - - @Override - protected void configure(HttpSecurity http) throws Exception { - super.configure(http); - http.csrf().disable() - .userDetailsService(beanConfig.userDetailsService()).formLogin(); - http.apply(identityProvider()) - .configure(appConfig); - } - } - - @Configuration - public static class AppSecurity extends WebSecurityConfigurerAdapter { - - private final BeanConfig beanConfig; - - public AppSecurity(BeanConfig beanConfig) { - this.beanConfig = beanConfig; - } - - @Override - protected void configure(HttpSecurity http) throws Exception { - http.csrf().disable() - .antMatcher("/**") - .authorizeRequests() - .antMatchers("/**").authenticated() - .and() - .userDetailsService(beanConfig.userDetailsService()).formLogin() - ; - } - } -} diff --git a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/web/IdentityProviderController.java b/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/web/IdentityProviderController.java deleted file mode 100644 index 86ad38e435e..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/java/sample/web/IdentityProviderController.java +++ /dev/null @@ -1,20 +0,0 @@ -package sample.web; - -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.RequestMapping; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; - -@Controller -public class IdentityProviderController { - private static final Log logger = LogFactory.getLog(IdentityProviderController.class); - - @RequestMapping(value = {"/"}) - public String selectProvider() { - logger.info("Sample IDP Application - Select an SP to log into!"); - return "redirect:/saml/idp/select"; - } - - -} diff --git a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/resources/application.yml b/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/resources/application.yml deleted file mode 100644 index cbd40b1cb8e..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/saml-idp/src/main/resources/application.yml +++ /dev/null @@ -1,78 +0,0 @@ -server: - port: 8081 - servlet: - context-path: /sample-idp - -logging: - level: - root: INFO - org.springframework.web: INFO - org.springframework.security: INFO - org.springframework.security.saml: INFO - -user.email: jami@gmail.com - -spring: - thymeleaf: - cache: false - security: - saml2: - network: - read-timeout: 8000 - connect-timeout: 4000 - identity-provider: - entity-id: spring.security.saml.idp.id - alias: boot-sample-idp - sign-metadata: false - sign-assertions: true - want-requests-signed: true - signing-algorithm: RSA_SHA256 - digest-method: SHA256 - single-logout-enabled: false - name-ids: - - urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress - - keys: - active: - name: active-idp-key - private-key: | - -----BEGIN RSA PRIVATE KEY----- - Proc-Type: 4,ENCRYPTED - DEK-Info: DES-EDE3-CBC,DD358F733FD89EA1 - - e/vEctkYs/saPsrQ57djWbW9YZRQFVVAYH9i9yX9DjxmDuAZGjGVxwS4GkdYqiUs - f3jdeT96HJPKBVwj88dYaFFO8g4L6CP+ZRN3uiKXGvb606ONp1BtJBvN0b94xGaQ - K9q2MlqZgCLAXJZJ7Z5k7aQ2NWE7u+1GZchQSVo308ynsIptxpgqlpMZsh9oS21m - V5SKs03mNyk2h+VdJtch8nWwfIHYcHn9c0pDphbaN3eosnvtWxPfSLjo274R+zhw - RA3KNp2bdyfidluTXj40GOYObjfcm1g3sSMgZZqpY3EQUc8DEokfXQZghfBvoEe/ - GB0k/+StrFNl0qAdOrA6PBndlySp6STwQVAsKsKlJneRO3nAHMlZ7kenHgPunACI - IYKIPqPKGVTm1k2FuEPDuwsneEStiThtlvQ4Nu+k6hbuplaKlZ8C2xsubzVQ3rFU - KNEhU65DagDH9wR9FzEXpTYUgwrr2vNRyd0TqcSxUpUx4Ra0f3gp5/kojufD8i1y - Fs88e8L3g1to1hCsz8yIYIiFjYNf8CuH8myDd2KjqJlyL8svKi+M2pPYl9vY1m8L - u4/3ZPMrGUvtAKixBZNzj95HPX0UtmC2kPMAvdvgzaPlDeH5Ee0rzPxnHI21lmyd - O6Sb3tc/DM9xbCCQVN8OKy/pgv1PpHMKwEE7ELpDRoVWS8DzZ43Xfy1Rm8afADAv - 39oj4Gs08FblaHnOSP8WOr4r9SZbF1qmlMw7QkHeaF+MJzmG3d0t2XsDzKfc510m - gEbiD/L3Z8czwXM5g2HciAMOEVhZQJvK62KwMyOmNqBnEThBN+apsQ== - -----END RSA PRIVATE KEY----- - passphrase: idppassword - certificate: | - -----BEGIN CERTIFICATE----- - MIIChTCCAe4CCQDo0wjPUK8sMDANBgkqhkiG9w0BAQsFADCBhjELMAkGA1UEBhMC - VVMxEzARBgNVBAgMCldhc2hpbmd0b24xEjAQBgNVBAcMCVZhbmNvdXZlcjEdMBsG - A1UECgwUU3ByaW5nIFNlY3VyaXR5IFNBTUwxDDAKBgNVBAsMA2lkcDEhMB8GA1UE - AwwYaWRwLnNwcmluZy5zZWN1cml0eS5zYW1sMB4XDTE4MDUxNDE0NTUyMVoXDTI4 - MDUxMTE0NTUyMVowgYYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApXYXNoaW5ndG9u - MRIwEAYDVQQHDAlWYW5jb3V2ZXIxHTAbBgNVBAoMFFNwcmluZyBTZWN1cml0eSBT - QU1MMQwwCgYDVQQLDANpZHAxITAfBgNVBAMMGGlkcC5zcHJpbmcuc2VjdXJpdHku - c2FtbDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA2EuygAucRBWtYifgEH/E - rVUive4dZdqo72Bze4MbkPuTKLrMCLB6IXxt1p5lu+tr0JxOiRO3KFVOO3D0l+j9 - zOow4g+JdoMQsjSzA6HtL/D9ZjXP6iUxFCYx+qmnVl3X9ipBD/HVKOBlzIqeXTSa - 5D17uxPQVxK64UDOI3CyY4cCAwEAATANBgkqhkiG9w0BAQsFAAOBgQAj+6b6dlA6 - SitTfz44LdnFSW9mYaeimwPP8ZtU7/3EJCzLd5eq7N/0kYPNVclZvB45I0UMT77A - HWrNyScm56MTcEpSuHhJHAqRAgJKbciCTNsFI928EqiWSmu//w0ASBN3bVa8nv8/ - rafuutCq3RskTkHVZnbT5Xa6ITEZxSncow== - -----END CERTIFICATE----- - providers: - - alias: cbioportal - metadata: http://localhost:8080/cbioportal/saml/metadata - linktext: CBioPortal diff --git a/portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/Oauth2ResourceServerIntegrationTests.java b/portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/Oauth2ResourceServerIntegrationTests.java deleted file mode 100644 index d11d7d01c9a..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/Oauth2ResourceServerIntegrationTests.java +++ /dev/null @@ -1,118 +0,0 @@ -/* - * Copyright (c) 2019 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal; - - -import org.json.JSONArray; -import org.json.JSONException; -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.junit.Test; -import org.mockserver.client.MockServerClient; -import org.mockserver.integration.ClientAndServer; - -import java.io.IOException; -import java.net.URLEncoder; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; -import static org.mockserver.integration.ClientAndServer.startClientAndServer; -import static org.mockserver.model.HttpRequest.request; -import static org.mockserver.model.HttpResponse.response; -import static org.mockserver.model.StringBody.subString; -import static org.mskcc.cbio.portal.TokenHelper.encodeWithoutSigning; - - -/** - * Tests protection of API endpoints - */ -public class Oauth2ResourceServerIntegrationTests { - - private static final String HOST = "http://localhost:8080/cbioportal"; - private static final int IDP_PORT = 8443; - - @Test - public void testAccessForbiddenForAnonymousUser() throws IOException { - HttpHelper.HttpResponse response = HttpHelper.sendGetRequest(HOST + "/api/studies", null, null); - assertEquals(401, response.code); - } - - @Test - public void testAccessForbiddenForFakeBearerToken() throws IOException { - String offlineToken = "{\"sub\": \"0000000000\"}"; - String encodedOfflineToken = encodeWithoutSigning(offlineToken); - new MockServerClient("localhost", IDP_PORT).when( - request() - .withMethod("POST") - .withPath("/auth/realms/cbio/token") - .withBody(subString("refresh_token=" + URLEncoder.encode(encodedOfflineToken, "UTF-8")))) - .respond(response().withStatusCode(401)); - - HttpHelper.HttpResponse response = HttpHelper.sendGetRequest(HOST + "/api/studies", encodedOfflineToken, null); - - assertEquals(401, response.code); - } - - @Test - public void testAccessForValidBearerToken() throws IOException, JSONException { - String offlineTokenClaims = "{\"sub\": \"1234567890\"}"; - String encodedOfflineToken = encodeWithoutSigning(offlineTokenClaims); - String accessTokenClaims = "{" + - "\"sub\": \"1234567890\"," + - "\"name\": \"John Doe\"," + - "\"resource_access\": {\"cbioportal\": {\"roles\": [\"cbioportal:study_tcga_pub\"]}}" + - "}"; - new MockServerClient("localhost", IDP_PORT).when( - request() - .withMethod("POST") - .withPath("/auth/realms/cbio/token") - .withBody(subString("refresh_token=" + URLEncoder.encode(encodedOfflineToken, "UTF-8")))) - .respond( - response() - .withBody("{\"access_token\": \"" - + encodeWithoutSigning(accessTokenClaims) - + "\"}")); - - HttpHelper.HttpResponse response = HttpHelper.sendGetRequest(HOST + "/api/studies", encodedOfflineToken, null); - - assertEquals(200, response.code); - assertTrue(response.body != null && !response.body.isEmpty()); - JSONArray studies = new JSONArray(response.body); - assertEquals(1, studies.length()); - studies.getJSONObject(0).getString("studyId"); - assertEquals("study_tcga_pub", studies.getJSONObject(0).getString("studyId")); - } - - private static ClientAndServer mockServer; - - @BeforeClass - public static void startServer() { - mockServer = startClientAndServer(IDP_PORT); - } - - @AfterClass - public static void stopServer() { - mockServer.stop(); - } -} diff --git a/portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/OfflineTokenDownloadIntegrationTests.java b/portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/OfflineTokenDownloadIntegrationTests.java deleted file mode 100644 index cc3acb73bef..00000000000 --- a/portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/OfflineTokenDownloadIntegrationTests.java +++ /dev/null @@ -1,175 +0,0 @@ -/* - * Copyright (c) 2019 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package org.mskcc.cbio.portal; - - -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.junit.FixMethodOrder; -import org.junit.Test; -import org.junit.runners.MethodSorters; -import org.mockserver.client.MockServerClient; -import org.mockserver.integration.ClientAndServer; - -import java.io.IOException; -import java.net.URLEncoder; - -import static org.junit.Assert.*; -import static org.mockserver.integration.ClientAndServer.startClientAndServer; -import static org.mockserver.model.HttpRequest.request; -import static org.mockserver.model.HttpResponse.response; -import static org.mockserver.model.StringBody.subString; -import static org.mskcc.cbio.portal.TokenHelper.encodeWithoutSigning; - - -/** - * Tests SAML authentication and offline token download - */ -@FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class OfflineTokenDownloadIntegrationTests { - - private static final String HOST = "http://localhost:8080"; - private static final String CBIO_URL = HOST + "/cbioportal"; - private static final String IDP_URL = HOST + "/saml-idp"; - - private static final int IDP_PORT = 8443; - - private static String cbioCookie; - //FIXME Endpoints to download offline token do not initiate login with saml, their simply return 401 http code. Should it be this way? Add tests - - @Test - public void A_testReachHomePageOnlyAfterLogInWithSamlIdp() throws IOException { - //1. When we try to reach cbioportal - String cbioPageUrl = CBIO_URL + "/"; - HttpHelper.HttpResponse discoveryEndpointRedirect = HttpHelper.sendGetRequest(cbioPageUrl, null, null); - //1. Then we get redirect to the discovery page - assertEquals(302, discoveryEndpointRedirect.code); - String discoveryEndpointLocation = discoveryEndpointRedirect.headers.get("Location").get(0); - assertEquals(CBIO_URL + "/saml/discovery?entityID=cbioportal&returnIDParam=idp", discoveryEndpointLocation); - //1. And we set the session cookie - String cbioSetCookie = discoveryEndpointRedirect.headers.get("Set-Cookie").get(0); - assertTrue(cbioSetCookie.startsWith("JSESSIONID=")); - cbioCookie = cbioSetCookie.split(";")[0]; - - //2. When we make a request to the discovery endpoint - HttpHelper.HttpResponse cbioIdpLoginRedirect = HttpHelper.sendGetRequest(discoveryEndpointLocation, null, cbioCookie); - //2. Then it redirects us to the saml idp login screen of the cbioportal - assertEquals(302, cbioIdpLoginRedirect.code); - String cbioIdpLoginLocation = cbioIdpLoginRedirect.headers.get("Location").get(0); - assertEquals(CBIO_URL + "/saml/login?disco=true&idp=spring.security.saml.idp.id", cbioIdpLoginLocation); - - //3. When we make a request to the cbio login page - HttpHelper.HttpResponse idpRedirect = HttpHelper.sendGetRequest(cbioIdpLoginLocation, null, cbioCookie); - //3. Then we get redirected to the saml idp site - assertEquals(302, idpRedirect.code); - String idpLocation = idpRedirect.headers.get("Location").get(0); - assertTrue(idpLocation.startsWith(IDP_URL + "/saml/idp/SSO/alias/boot-sample-idp?")); - - //4. When we make a request to the idp page - HttpHelper.HttpResponse idpLoginRedirect = HttpHelper.sendGetRequest(idpLocation, null, null); - //4. Then we get redirected to the saml idp login page - assertEquals(302, idpLoginRedirect.code); - String idpLoginLocation = idpLoginRedirect.headers.get("Location").get(0); - assertTrue(idpLoginLocation.startsWith(IDP_URL + "/login")); - //4. And we set the idp session cookie - String idpSetCookie = idpLoginRedirect.headers.get("Set-Cookie").get(0); - assertTrue(idpSetCookie.startsWith("JSESSIONID=")); - String idpCookie = idpSetCookie.split(";")[0]; - - // We skipped requesting the login page for the brevity - - //5. When we submit the login form - HttpHelper.HttpResponse idpLoginRepsonse = HttpHelper.sendPostRequest(idpLoginLocation, null, idpCookie, "username=user&password=password"); - //5. Then we get redirected to the saml idp site - assertEquals(302, idpLoginRepsonse.code); - String jumpToServiceProviderPageLocation = idpLoginRepsonse.headers.get("Location").get(0); - assertTrue(jumpToServiceProviderPageLocation.startsWith(IDP_URL + "/saml/idp/SSO/alias/boot-sample-idp?")); - //5. And we set the idp session cookie - idpSetCookie = idpLoginRepsonse.headers.get("Set-Cookie").get(0); - assertTrue(idpSetCookie.startsWith("JSESSIONID=")); - idpCookie = idpSetCookie.split(";")[0]; - - //6. When we reach the jump page - HttpHelper.HttpResponse jumpToServiceProviderPageRepsonse = HttpHelper.sendGetRequest(jumpToServiceProviderPageLocation, null, idpCookie); - //6. Then we get html page with javascript that redirects us to the service provider - assertEquals(200, jumpToServiceProviderPageRepsonse.code); - String jumpPage = jumpToServiceProviderPageRepsonse.body; - assertTrue(jumpPage.contains("form action=\"" + CBIO_URL + "/saml/SSO\"")); - String samlResponseValueStart = "name=\"SAMLResponse\" value=\""; - assertTrue(jumpPage.contains(samlResponseValueStart)); - int start = jumpPage.indexOf(samlResponseValueStart); - int end = jumpPage.indexOf("\"", start + samlResponseValueStart.length()); - String samlResponse = jumpPage.substring(start + samlResponseValueStart.length(), end); - - //7. When we submit the assertions to the consumer - HttpHelper.HttpResponse requestAssertionsConsumerRepsonse = HttpHelper - .sendPostRequest(CBIO_URL + "/saml/SSO", null, cbioCookie, - "SAMLResponse=" + URLEncoder.encode(samlResponse, "UTF-8")); - //7. Then we get redirected to originally requested page - assertEquals(302, requestAssertionsConsumerRepsonse.code); - String dataAccessTokenLocation = requestAssertionsConsumerRepsonse.headers.get("Location").get(0); - - assertEquals("/cbioportal/restore?key=login-redirect", dataAccessTokenLocation); - - //8. Finally we can reach the home page - HttpHelper.HttpResponse homePageResponse = HttpHelper.sendGetRequest(cbioPageUrl, null, cbioCookie); - assertEquals(200, homePageResponse.code); - assertFalse(homePageResponse.body.isEmpty()); - - } - - @Test - public void B_testDownloadOfflineToken() throws IOException { - String offlineTokenClaims = "{\"sub\": \"1234567890\"}"; - String encodedOfflineTokenClaims = encodeWithoutSigning(offlineTokenClaims); - new MockServerClient("localhost", IDP_PORT).when( - request() - .withMethod("POST") - .withPath("/auth/realms/cbio/token") - .withBody(subString("code=code1"))) - .respond( - response() - .withBody("{\"refresh_token\": \"" - + encodedOfflineTokenClaims - + "\"}")); - - HttpHelper.HttpResponse offlineTokenResponse = HttpHelper.sendGetRequest(CBIO_URL + "/api/data-access-token/oauth2?code=code1", null, cbioCookie); - - assertEquals(200, offlineTokenResponse.code); - assertTrue(offlineTokenResponse.headers.get("Content-Disposition").get(0).startsWith("attachment; filename=")); - assertEquals("token: " + encodedOfflineTokenClaims, offlineTokenResponse.body); - } - - private static ClientAndServer mockServer; - - @BeforeClass - public static void startServer() { - mockServer = startClientAndServer(IDP_PORT); - } - - @AfterClass - public static void stopServer() { - mockServer.stop(); - } -} diff --git a/portal/src/integration-tests/saml-oauth2-setup/testSamlKeystore.jks b/portal/src/integration-tests/saml-oauth2-setup/testSamlKeystore.jks deleted file mode 100644 index d11200252ed..00000000000 Binary files a/portal/src/integration-tests/saml-oauth2-setup/testSamlKeystore.jks and /dev/null differ diff --git a/portal/src/main/webapp/META-INF/context.xml b/portal/src/main/webapp/META-INF/context.xml deleted file mode 100644 index 095c6ecfc06..00000000000 --- a/portal/src/main/webapp/META-INF/context.xml +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/portal/src/main/webapp/WEB-INF/web.xml b/portal/src/main/webapp/WEB-INF/web.xml deleted file mode 100755 index 320a84a1676..00000000000 --- a/portal/src/main/webapp/WEB-INF/web.xml +++ /dev/null @@ -1,685 +0,0 @@ - - - - - - - - ${tomcat.session.timeout} - COOKIE - - - wsdl - text/xml - - - index.jsp - - Cancer Genomics Portal - - - - - spring.profiles.active - \${dbconnector:dbcp},\${authenticate},\${google.analytics.tracking:ga-api-tracking-disabled} - - - spring.liveBeansView.mbeanDomain - \${dbconnector:dbcp},\${authenticate} - - - - contextConfigLocation - classpath:applicationContext-persistenceConnections.xml classpath:applicationContext-security.xml classpath:applicationContext-logging.xml - - - - webAppRootKey - \${app.name}.${timestamp} - - - - - org.springframework.web.context.ContextLoaderListener - - - - - org.apache.commons.fileupload.servlet.FileCleanerCleanup - - - - - - org.cbioportal.web.config.WebServletContextListener - - - - - - - - requestBodyGZipFilter - org.springframework.web.filter.DelegatingFilterProxy - - - requestBodyGZipFilter - /* - - - urlParamFilter - org.mskcc.cbio.portal.util.UrlParamFilter - - - urlParamFilter - /* - - - - CorsFilter - org.apache.catalina.filters.CorsFilter - - cors.allowed.origins - * - - - cors.allowed.methods - GET,POST,HEAD,OPTIONS - - - cors.allowed.headers - Origin,Accept,X-Requested-With,Content-Type,Access-Control-Request-Method,Access-Control-Request-Headers,Content-Encoding,X-Proxy-User-Agreement - - - - cors.exposed.headers - total-count,sample-count - - - cors.support.credentials - false - - - cors.preflight.maxage - 1800 - - - cors.request.decorate - true - - - - - CorsFilter - /* - - - - DebugHrrsFilter - org.mskcc.cbio.portal.util.DebugHrrsFilter - - - - DebugHrrsFilter - * - - - - springSecurityFilterChain - org.springframework.web.filter.DelegatingFilterProxy - - - - springSecurityFilterChain - /* - - - - - httpHeaderSecurity - org.apache.catalina.filters.HttpHeaderSecurityFilter - true - - antiClickJackingOption - SAMEORIGIN - - - - - httpHeaderSecurity - /* - - - - FileUpload - File Upload - - Applied to file upload requests. - Wraps the request, allowing it to be used as a regular request, - 'as if' it were parsed by the Servlet API. - - org.mskcc.cbio.portal.util.FileUploadFilter - - - - FileUpload - /netviz.jsp - - - - FileUpload - /oncoprint_converter.svg - - - - SessionServiceFilter - Session Service Filter - - This intercepts the request and puts a wrapper around it. If - session_id is a request parameter, then it is used to look up - the stored session using the session-service REST API, and - the stored session request parameters are then returned by the - wrapper on all calls to getParameter/getParameterMap/etc. If - session_id is not a request parameter, then this returns the current - request parameters as normal. - - org.mskcc.cbio.portal.util.SessionServiceFilter - - - - SessionServiceFilter - /data_download - /cross_cancer.do - - - - ResettableHttpServletRequestFilter - Reusable Http Servlet RequestFilter - This allows body of a request to be read multiple times. - org.cbioportal.web.util.ResettableHttpServletRequestFilter - - - ResettableHttpServletRequestFilter - /api/* - - - - - XssFilter - Xss Filter - - Applied to all requests to filter out malicious XSS attacks. - Wraps the request, allowing it to be used as a regular request, - 'as if' it were parsed by the Servlet API. - - org.mskcc.cbio.portal.util.XssFilter - - - - XssFilter - /* - - - - - - default - /js/* - /reactapp/* - /images/* - /css/* - - - - url_shortener - org.springframework.web.servlet.DispatcherServlet - - contextConfigLocation - classpath:applicationContext-url-shortener.xml - - 1 - - - url_shortener - /api/url-shortener - - - - api - org.springframework.web.servlet.DispatcherServlet - - contextConfigLocation - classpath:applicationContext-web.xml classpath:applicationContext-logging.xml - - 1 - - - api - /api/* - - - - proxy - org.springframework.web.servlet.DispatcherServlet - - contextConfigLocation - classpath:applicationContext-proxy.xml - - 1 - - - proxy - /proxy/* - - - - query_builder - org.mskcc.cbio.portal.servlet.QueryBuilder - - pathway_commons_url - ${pathway_commons.url} - - 1 - - - query_builder - /data_download - - - - webservice - org.mskcc.cbio.portal.servlet.WebService - - - webservice - /webservice.do - - - - portal_meta_data_json - org.mskcc.cbio.portal.servlet.PortalMetaDataJSON - - - portal_meta_data_json - /portal_meta_data.json - - - - portal_meta_data - org.mskcc.cbio.portal.servlet.PortalMetaData - - - portal_meta_data - /portalMetadata.json - - - - network_sbgn - org.mskcc.cbio.portal.servlet.NetworkSbgnServlet - - - network_sbgn - /networkSbgn.do - - - - bioGeneQuery - org.mskcc.cbio.portal.servlet.BioGeneServlet - - - bioGeneQuery - /bioGeneQuery.do - - - - CheckGeneSymbolJSON - org.mskcc.cbio.portal.servlet.CheckGeneSymbolJSON - - - CheckGeneSymbolJSON - /CheckGeneSymbol.json - - - - ClinicalFreeFormJSON - org.mskcc.cbio.portal.servlet.ClinicalFreeFormJSON - - - ClinicalFreeFormJSON - /ClinicalFreeForm.json - - - - oma_redirect - org.mskcc.cbio.portal.servlet.OmaRedirectServlet - - - oma_redirect - /omaRedirect.do - - - - mutation_aligner_json - org.mskcc.cbio.portal.servlet.MutationAlignerServlet - - - mutation_aligner_json - /getMutationAligner.json - - - - oncoprint_converter - org.mskcc.cbio.portal.servlet.OncoPrintConverter - - - oncoprint_converter - /oncoprint_converter.svg - - - - MutSigJSON - org.mskcc.cbio.portal.servlet.MutSigJSON - - - MutSigJSON - /MutSig.json - - - - GisticJSON - org.mskcc.cbio.portal.servlet.GisticJSON - - - GisticJSON - /Gistic.json - - - - PancancerMutationsJSON - org.mskcc.cbio.portal.servlet.PancancerMutationsJSON - - - PancancerMutationsJSON - /pancancerMutations.json - - - - EchoFile - org.mskcc.cbio.portal.servlet.EchoFile - - - EchoFile - /echofile - - - - ClinicalJSON - org.mskcc.cbio.portal.servlet.ClinicalJSON - - - ClinicalJSON - /clinical.json - - - - ClinicalAttributesServlet - org.mskcc.cbio.portal.servlet.ClinicalAttributesServlet - - - ClinicalAttributesServlet - /clinicalAttributes.json - - - - ClinicalTimelineData - org.mskcc.cbio.portal.servlet.ClinicalTimelineData - - - ClinicalTimelineData - /clinical_timeline_data.json - - - - patient_view - org.mskcc.cbio.portal.servlet.PatientView - - - - CrossCancerJSON - org.mskcc.cbio.portal.servlet.CrossCancerJSON - - - CrossCancerJSON - /crosscancerquery.json - - - - CheckDarwinAccessServlet - org.mskcc.cbio.portal.servlet.CheckDarwinAccessServlet - - - CheckDarwinAccessServlet - /checkDarwinAccess.do - - - - CnaJSON - org.mskcc.cbio.portal.servlet.CnaJSON - - - CnaJSON - /cna.json - - - - SVGtoPDFConverter - org.mskcc.cbio.portal.servlet.SvgConverter - - - SVGtoPDFConverter - /svgtopdf.do - - - - SimilarPatientsJSON - org.mskcc.cbio.portal.servlet.SimilarPatientsJSON - - - SimilarPatientsJSON - /similar_patients.json - - - - - GetProteinArrayDataJSON - org.mskcc.cbio.portal.servlet.GetProteinArrayDataJSON - - - GetProteinArrayDataJSON - /getProteinArrayData.json - - - - GetSurvivalDataJSON - org.mskcc.cbio.portal.servlet.GetSurvivalDataJSON - - - GetSurvivalDataJSON - /getSurvivalData.json - - - - IGVLinkingJSON - org.mskcc.cbio.portal.servlet.IGVLinkingJSON - - - IGVLinkingJSON - /igvlinking.json - - - - CalcChiDistribution - org.mskcc.cbio.portal.servlet.SurvivalChiSquareDistributionCalc - - - CalcChiDistribution - /calcPval.do - - - - GetCoExpJson - org.mskcc.cbio.portal.servlet.GetCoExpressionJSON - - - GetCoExpJson - /getCoExp.do - - - - calcCoExp - org.mskcc.cbio.portal.servlet.CalcCoExp - - - calcCoExp - /calcCoExp.do - - - - calcFisherExactTest - org.mskcc.cbio.portal.servlet.CalcFisherExactTest - - - calcFisherExactTest - /calcFisherExact.do - - - - - - LoginJSP - /login.jsp - - - LoginJSP - /login.jsp - - - NetworksJSP - /networks.jsp - - - NetworksJSP - /networks.jsp - - - ReleaseNotesMutationMapperJSP - /release_notes_mutation_mapper.jsp - - - ReleaseNotesMutationMapperJSP - /release_notes_mutation_mapper.jsp - - - ReleaseNotesOncoprinterJSP - /release_notes_oncoprinter.jsp - - - ReleaseNotesOncoprinterJSP - /release_notes_oncoprinter.jsp - - - RestfulLoginJSP - /restful_login.jsp - - - RestfulLoginJSP - /restful_login.jsp - - - SciSignalReprintJSP - /sci_signal_reprint.jsp - - - SciSignalReprintJSP - /sci_signal_reprint.jsp - - - TrackingIncludeJSP - /tracking_include.jsp - - - TrackingIncludeJSP - /tracking_include.jsp - - - - SinglePageApplication - /index.jsp - - - - SinglePageApplication - /results/* - /patient/* - /study/* - /mutation_mapper/* - /index.do/* - /case.do/* - /study.do/* - /loading/* - /comparison/* - /restore - / - - - - SiteMapIndex - /sitemap_index.jsp - - - - SiteMapIndex - /sitemap_index.xml - - - - SiteMapStudy - /sitemap_study.jsp - - - SiteMapStudy - /sitemap_study.xml - - - - RobotsIndex - /robots.jsp - - - RobotsIndex - /robots.txt - - - - SiteConfiguration - /config_service.jsp - - - SiteConfiguration - /config_service.json - - - - org.springframework.security.web.firewall.RequestRejectedException - /error.html - - - diff --git a/portal/src/main/webapp/images/msk_logo_transparent_2023.png b/portal/src/main/webapp/images/msk_logo_transparent_2023.png deleted file mode 100644 index 25f0bd706bb..00000000000 Binary files a/portal/src/main/webapp/images/msk_logo_transparent_2023.png and /dev/null differ diff --git a/portal/src/main/webapp/images/msk_logo_transparent_black_2023.png b/portal/src/main/webapp/images/msk_logo_transparent_black_2023.png deleted file mode 100644 index 5c87ff7dc72..00000000000 Binary files a/portal/src/main/webapp/images/msk_logo_transparent_black_2023.png and /dev/null differ diff --git a/portal/src/org/mskcc/cgds/dao/DaoOncotatorCache.java b/portal/src/org/mskcc/cgds/dao/DaoOncotatorCache.java deleted file mode 100644 index 8a71b00e792..00000000000 --- a/portal/src/org/mskcc/cgds/dao/DaoOncotatorCache.java +++ /dev/null @@ -1,131 +0,0 @@ -package org.mskcc.cgds.dao; - -import org.mskcc.portal.oncotator.OncotatorRecord; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; - -/** - * DAO for Oncotator Cache Table. - * - */ -public class DaoOncotatorCache { - // use a MySQLbulkLoader instead of SQL "INSERT" statements to load data into table - private static MySQLbulkLoader myMySQLbulkLoader = null; - private static DaoOncotatorCache daoOncotatorCache; - - private DaoOncotatorCache() { - } - - /** - * Gets Singleton Instance. - * @return DaoOncotator Object. - */ - public static DaoOncotatorCache getInstance() { - if (daoOncotatorCache == null) { - daoOncotatorCache = new DaoOncotatorCache(); - } - - if (myMySQLbulkLoader == null) { - myMySQLbulkLoader = new MySQLbulkLoader("oncotator_cache"); - } - return daoOncotatorCache; - } - - /* - * Adds a new Cache Record to the Database. - * - * @param mutSig Mut Sig Object. - * @return number of records successfully added. - * @throws DaoException Database Error. - */ - - public int put(OncotatorRecord record) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - MySQLbulkLoader.bulkLoadOff(); - try { - if (MySQLbulkLoader.isBulkLoad()) { - // write to the temp file maintained by the MySQLbulkLoader - myMySQLbulkLoader.insertRecord(record.getKey(), - record.getGene(), record.getGenomeChange(), - record.getProteinChange(), record.getVariantClassification(), - Integer.toString(record.getExonAffected()), - record.getCosmicOverlappingMutations(), record.getDbSnpRs()); - // return 1 because normal insert will return 1 if no error occurs - return 1; - } else { - con = JdbcUtil.getDbConnection(); - pstmt = con.prepareStatement - ("INSERT INTO oncotator_cache (`CACHE_KEY`,`GENE_SYMBOL`, `GENOME_CHANGE`, `PROTEIN_CHANGE`," + - " `VARIANT_CLASSIFICATION`," + - " `EXON_AFFECTED`, `COSMIC_OVERLAP`, `DB_SNP_RS`)" + - " VALUES (?,?,?,?,?,?,?,?)"); - pstmt.setString(1, record.getKey()); - pstmt.setString(2, record.getGene()); - pstmt.setString(3, record.getGenomeChange()); - pstmt.setString(4, record.getProteinChange()); - pstmt.setString(5, record.getVariantClassification()); - pstmt.setInt(6, record.getExonAffected()); - pstmt.setString(7, record.getCosmicOverlappingMutations()); - pstmt.setString(8, record.getDbSnpRs()); - int rows = pstmt.executeUpdate(); - return rows; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(con, pstmt, rs); - } - } - - //getMutSig from a hugoGeneSymbol - - public OncotatorRecord get(String key) throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(); - pstmt = con.prepareStatement - ("SELECT * FROM oncotator_cache WHERE CACHE_KEY = ?"); - pstmt.setString(1, key); - rs = pstmt.executeQuery(); - if (rs.next()) { - OncotatorRecord record = new OncotatorRecord(rs.getString("CACHE_KEY")); - record.setGene(rs.getString("GENE_SYMBOL")); - record.setGenomeChange(rs.getString("GENOME_CHANGE")); - record.setProteinChange(rs.getString("PROTEIN_CHANGE")); - record.setVariantClassification(rs.getString("VARIANT_CLASSIFICATION")); - record.setCosmicOverlappingMutations(rs.getString("COSMIC_OVERLAP")); - record.setExonAffected(rs.getInt("EXON_AFFECTED")); - record.setDbSnpRs(rs.getString("DB_SNP_RS")); - return record; - } else { - return null; - } - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(con, pstmt, rs); - } - } - - public void deleteAllRecords() throws DaoException { - Connection con = null; - PreparedStatement pstmt = null; - ResultSet rs = null; - try { - con = JdbcUtil.getDbConnection(); - pstmt = con.prepareStatement("TRUNCATE TABLE oncotator_cache"); - pstmt.executeUpdate(); - } catch (SQLException e) { - throw new DaoException(e); - } finally { - JdbcUtil.closeAll(con, pstmt, rs); - } - } -} \ No newline at end of file diff --git a/portal/src/org/mskcc/cgds/scripts/PostLiftOver.java b/portal/src/org/mskcc/cgds/scripts/PostLiftOver.java deleted file mode 100644 index dc6c7bfd673..00000000000 --- a/portal/src/org/mskcc/cgds/scripts/PostLiftOver.java +++ /dev/null @@ -1,398 +0,0 @@ -package org.mskcc.cgds.scripts; - -import java.io.BufferedReader; -import java.io.BufferedWriter; -import java.io.FileReader; -import java.io.FileWriter; -import java.io.IOException; - -import org.mskcc.portal.model.MafRecord; -import org.mskcc.portal.util.MafUtil; - -/** - * Post-process class for the lift over tool. Updates coordinates of each - * mutation in the input MAF file by using the output files created by the - * left over tool. - * - * @author Selcuk Onur Sumer - * - */ -public class PostLiftOver -{ - - /** - * Arguments: - * 1) original input (MAF) file. - * 2) mapped file created by the liftOver tool. - * 3) unmapped file created by the liftOver tool. - * 4) name of the new output file to be created. - */ - public static void main(String[] args) - { - String originialFile = args[0]; - String mappedFile = args[1]; - String unmappedFile = args[2]; - String auxFile = args[3]; - String outputMaf = args[4]; - - try - { - // sanity check: assert (# of entries in original file) == - // (total # of entries in both mapped & unmapped file) - // if not, then it means there is an error during lift over process - if (sizeMismatch(originialFile, - mappedFile, - unmappedFile)) - { - System.out.println("Input sizes do not match! Error while lifting over?"); - } - else - { - updatePositions(originialFile, - mappedFile, - unmappedFile, - auxFile, - outputMaf); - } - - } - catch (IOException e) - { - System.out.println("Error while processing files: " + e.getMessage()); - e.printStackTrace(); - } - } - - /** - * Updates the positions of the source input file by using mapped and - * unmapped outputs. Writes the results to the given output file. This - * function assumes that liftOver script runs without any problems. - * In other words, this function works correctly if the number of entries - * in the input file is equal to the total number of entries in the - * mapped and unmapped files. Otherwise resulting output MAF file may - * contain incorrect information. - * - * @param inputFile original input MAF file - * @param mappedFile mapped file created by liftOver - * @param unmappedFile unmapped file created by liftOver - * @param outputFile output file with updated coordinates - * @param auxFile aux file containing info of position-adjusted rows - * @throws IOException if an IO error occurs - */ - public static void updatePositions(String inputFile, - String mappedFile, - String unmappedFile, - String auxFile, - String outputFile) throws IOException - { - BufferedReader sourceIn = new BufferedReader( - new FileReader(inputFile)); - BufferedReader mappedIn = new BufferedReader( - new FileReader(mappedFile)); - BufferedReader unmappedIn = new BufferedReader( - new FileReader(unmappedFile)); - BufferedReader auxIn = new BufferedReader( - new FileReader(auxFile)); - - BufferedWriter bufWriter = new BufferedWriter( - new FileWriter(outputFile)); - - String headerLine = sourceIn.readLine(); - MafUtil util = new MafUtil(headerLine); - String sourceLine; - String mappedLine = mappedIn.readLine(); - String unmappedLine = getUnmappedLine(unmappedIn); - Integer modifiedRow = getNextModRow(auxIn); - MafRecord record; - - // for tracking purposes - int sourceRow = 2; // (including header) - int mappedRow = 1; - int unmappedRow = 1; - boolean modified; - - // write the header line to the output - bufWriter.write(headerLine); - bufWriter.newLine(); - - while ((sourceLine = sourceIn.readLine()) != null) - { - // get a single record per line - record = util.parseRecord(sourceLine); - - // check if positions of current record is modified by PreLiftOver - if (modifiedRow != null && - sourceRow == modifiedRow) - { - modified = true; - modifiedRow = getNextModRow(auxIn); - } - else - { - modified = false; - } - - // check if current record matches the unmapped file - if (unmappedLine != null && - isUnmapped(record, unmappedLine)) - { - System.out.println("[warning] cannot lift over (line:" + sourceRow + "): " + - "[gene:" + record.getHugoGeneSymbol() + "] " + unmappedLine); - - // skip unmapped lines (do not include in the output file) - // bufWriter.write(sourceLine); - - // get next line from unmapped file - unmappedLine = getUnmappedLine(unmappedIn); - - unmappedRow++; - } - // record is lifted over successfully, update the positions - else - { - String[] mappedParts = mappedLine.split("\\s"); - - String sourceChr = record.getChr(); - - if (sourceChr.equals("MT")) - { - sourceChr = "M"; - } - - StringBuffer buffer = new StringBuffer(); - - long startPos = Long.parseLong(mappedParts[1]); - long endPos = Long.parseLong(mappedParts[2]); - boolean chrChanged = false; - - if (!mappedParts[0].equals("chr" + sourceChr)) - { - // print a warning message about the chromosome number change.. - System.out.println("[warning] chromosome numbers mismatch (gene:" + record.getHugoGeneSymbol() + ")"); - System.out.println("source(line:" + sourceRow + "): chr" + sourceChr + " " + - record.getStartPosition() + " " + - record.getEndPosition()); - System.out.println("mapped(line:" + mappedRow + "): " + mappedLine); - - chrChanged = true; - } - - // re-adjust start & end positions (to be compatible with oncotator) - if (modified) - { - startPos++; - } - - // below condition check may also work for all records, - // but using modified row number is the safest way. -// if (startPos == endPos - 1 && -// !record.getReferenceAllele().equals("-") && -// record.getReferenceAllele().length() == 1) -// { -// startPos++; -// } - - String sourceParts[] = sourceLine.split("\t", -1); - - // update start & end positions - for (int i = 0; i < sourceParts.length; i++) - { - if (util.getStartPositionIndex() == i) - { - // replace with new start position - buffer.append(startPos); - } - else if (util.getEndPositionIndex() == i) - { - // replace with new end position - buffer.append(endPos); - } - else if (chrChanged && - util.getChrIndex() == i) - { - // replace with new chr number - buffer.append(mappedParts[0].replaceAll("chr", "")); - } - else if (util.getNcbiIndex() == i) - { - // also update the build from 18 to 19 (36 to 37) - buffer.append(record.getNcbiBuild().replace( - "18", "19").replace("36.1", "37").replace( - "36", "37")); - } - else - { - // just copy the original content - buffer.append(sourceParts[i]); - } - - if (i < sourceParts.length - 1) - { - buffer.append("\t"); - } - } - - // update record and write to output - bufWriter.write(buffer.toString()); - bufWriter.newLine(); - - // get next line from mapped file - mappedLine = mappedIn.readLine(); - - mappedRow++; - } - - sourceRow++; - } - - sourceIn.close(); - mappedIn.close(); - unmappedIn.close(); - auxIn.close(); - bufWriter.close(); - } - - /** - * Compares original input file to the two output files created by - * the liftOver tool to verify that number of entries in the original - * input file is equal to total number of entries in both the mapped - * and the unmapped files. - * - * @param inputFile original input - * @param mappedFile mapped file (created by liftOver) - * @param unmappedFile unmapped file (created by liftOver) - * @return true if sizes mismatch, false otherwise - * @throws IOException if an IO error occurs - */ - private static boolean sizeMismatch(String inputFile, - String mappedFile, - String unmappedFile) throws IOException - { - BufferedReader sourceIn = new BufferedReader( - new FileReader(inputFile)); - BufferedReader mappedIn = new BufferedReader( - new FileReader(mappedFile)); - BufferedReader unmappedIn = new BufferedReader( - new FileReader(unmappedFile)); - - int sourceCount = 0; - int mappedCount = 0; - int unmappedCount = 0; - - while (sourceIn.readLine() != null) - { - sourceCount++; - } - - sourceIn.close(); - - while (mappedIn.readLine() != null) - { - mappedCount++; - } - - mappedIn.close(); - - while (getUnmappedLine(unmappedIn) != null) - { - unmappedCount++; - } - - unmappedIn.close(); - - - boolean mismatch = true; - - if (sourceCount - 1 == mappedCount + unmappedCount) - { - mismatch = false; - } - - return mismatch; - } - - /** - * Checks if the given record is in the unmapped file (created by liftOver). - * - * @param record record to be checked - * @param unmappedLine a line from the unmapped file - * @return true if the record is unmapped, false otherwise - */ - private static boolean isUnmapped(MafRecord record, - String unmappedLine) - { - boolean unmapped = false; - String[] parts = unmappedLine.split("\\s"); - - // adjust startPos & chr to match liftOver output - // (because they are adjusted in PreLiftOver to create an input - // compatible with liftOver tool) - - long startPos = record.getStartPosition(); - long endPos = record.getEndPosition(); - - if (startPos == endPos) - { - startPos--; - } - - String chr = record.getChr(); - - if (chr.equals("MT")) - { - chr = "M"; - } - - // compare chr, start & end positions - if (parts[0].equals("chr" + chr) && - startPos == Long.parseLong(parts[1]) && - endPos == Long.parseLong(parts[2])) - { - unmapped = true; - } - - return unmapped; - } - - /** - * Skips any comment lines and retrieves a data line from the unmapped file - * (created by liftOver). - * - * @param unmappedIn input reader for the unmapped file - * @return a data line from the unmapped file, or null if EOF - * @throws IOException if an IO error occurs - */ - private static String getUnmappedLine(BufferedReader unmappedIn) throws IOException - { - String unmappedLine = unmappedIn.readLine(); - - while (unmappedLine != null && - unmappedLine.trim().startsWith("#")) - { - unmappedLine = unmappedIn.readLine(); - } - - return unmappedLine; - } - - /** - * Retrieves the next modified row (record) number from the aux file. - * If there is no more row number, then returns null. - * - * @param auxIn aux file reader - * @return next modified row number - * @throws IOException if an IO error occurs - */ - private static Integer getNextModRow(BufferedReader auxIn) throws IOException - { - String line = auxIn.readLine(); - Integer row = null; - - if (line != null) - { - row = Integer.parseInt(line); - } - - return row; - } -} diff --git a/portal/src/org/mskcc/cgds/scripts/PreLiftOver.java b/portal/src/org/mskcc/cgds/scripts/PreLiftOver.java deleted file mode 100644 index 39b7dd27262..00000000000 --- a/portal/src/org/mskcc/cgds/scripts/PreLiftOver.java +++ /dev/null @@ -1,111 +0,0 @@ -package org.mskcc.cgds.scripts; - -import java.io.BufferedReader; -import java.io.BufferedWriter; -import java.io.FileReader; -import java.io.FileWriter; -import java.io.IOException; - -import org.mskcc.portal.model.MafRecord; -import org.mskcc.portal.util.MafUtil; - -/** - * Pre-process class for the lift over tool. Extracts information from and input MAF file, - * and creates an output file compatible with the lift over tool. - * Each line of the output file represents a mutation: - * chr# chr_start chr_end - * - * @author Selcuk Onur Sumer - * - */ -public class PreLiftOver -{ - public static void main(String[] args) - { - String inputMaf = args[0]; - - try - { - extractPositions(inputMaf, "oldfile.txt", "auxfile.txt"); - } - catch (IOException e) - { - System.out.println("Error while processing input: " + - e.getMessage()); - - e.printStackTrace(); - } - } - - /** - * Extracts start & end position information from the given input (MAF) - * file and creates the main output file. Also, creates an aux file - * to store the row number with adjusted positions (for lift over) - * - * @param inputFile - * @param outputFile - * @param auxFile - * @throws IOException - */ - public static void extractPositions(String inputFile, - String outputFile, - String auxFile) throws IOException - { - BufferedReader bufReader = new BufferedReader( - new FileReader(inputFile)); - BufferedWriter bufWriter = new BufferedWriter( - new FileWriter(outputFile)); - BufferedWriter auxWriter = new BufferedWriter( - new FileWriter(auxFile)); - - String headerLine = bufReader.readLine(); - MafUtil util = new MafUtil(headerLine); - String line; - MafRecord record; - - long startPos, endPos; - String chr; - int row = 2; // including header - - while ((line = bufReader.readLine()) != null) - { - record = util.parseRecord(line); - startPos = record.getStartPosition(); - endPos = record.getEndPosition(); - - // if start&end pos are the same, then the coordinate range - // in BED format specifies a region of size 0. - // BED coordinates are zero-based, half-open. See: - // http://genome.ucsc.edu/FAQ/FAQformat.html#format1 - // and - // http://genomewiki.ucsc.edu/index.php/Coordinate_Transforms - if (startPos == endPos) - { - // adjust start position - startPos--; - - // write line number to the aux file for reference in PostLiftOver - // to the adjusted lines - auxWriter.write(Integer.toString(row)); - auxWriter.newLine(); - } - - chr = record.getChr(); - - // chrMT is not recognized so replace it with M - if (chr.equals("MT")) - { - chr = "M"; - } - - bufWriter.write("chr" + chr + "\t" + startPos + "\t" + endPos); - bufWriter.newLine(); - - row++; - } - - bufReader.close(); - bufWriter.close(); - auxWriter.close(); - } -} diff --git a/portal/src/org/mskcc/cgds/test/dao/TestDaoOncotatorCache.java b/portal/src/org/mskcc/cgds/test/dao/TestDaoOncotatorCache.java deleted file mode 100644 index 69696c106a9..00000000000 --- a/portal/src/org/mskcc/cgds/test/dao/TestDaoOncotatorCache.java +++ /dev/null @@ -1,49 +0,0 @@ -package org.mskcc.cgds.test.dao; - -import junit.framework.TestCase; -import org.mskcc.cgds.dao.DaoException; -import org.mskcc.cgds.dao.DaoGeneOptimized; -import org.mskcc.cgds.dao.DaoMutSig; -import org.mskcc.cgds.dao.DaoOncotatorCache; -import org.mskcc.cgds.model.CanonicalGene; -import org.mskcc.cgds.model.MutSig; -import org.mskcc.cgds.scripts.ResetDatabase; -import org.mskcc.portal.oncotator.OncotatorRecord; - -/** - * Tests the DaoOncotator Cache. - */ -public class TestDaoOncotatorCache extends TestCase { - - /** - * Tests DaoOncotator. - * - */ - public void testDaoOncotator() throws DaoException { - ResetDatabase.resetDatabase(); - - OncotatorRecord record = new OncotatorRecord("cbio_123"); - record.setCosmicOverlappingMutations("cosmic"); - record.setExonAffected(2); - record.setGene("TP53"); - record.setGenomeChange("genomic"); - record.setProteinChange("protein"); - record.setVariantClassification("missense"); - record.setDbSnpRs("db_snp"); - DaoOncotatorCache cache = DaoOncotatorCache.getInstance(); - int numRecords = cache.put(record); - assertEquals(1, numRecords); - - record = cache.get("cbio_123"); - assertEquals("cbio_123", record.getKey()); - assertEquals("cosmic", record.getCosmicOverlappingMutations()); - assertEquals("TP53", record.getGene()); - assertEquals("genomic", record.getGenomeChange()); - assertEquals("protein", record.getProteinChange()); - assertEquals("missense", record.getVariantClassification()); - assertEquals("db_snp", record.getDbSnpRs()); - } - -} - - diff --git a/portal/src/org/mskcc/portal/model/MafRecord.java b/portal/src/org/mskcc/portal/model/MafRecord.java deleted file mode 100644 index 78cef29dfd6..00000000000 --- a/portal/src/org/mskcc/portal/model/MafRecord.java +++ /dev/null @@ -1,377 +0,0 @@ -package org.mskcc.portal.model; - -/** - * Encapsulates Details Regarding a Single MAF Record. - */ -public class MafRecord { - public final static String NA_STRING = "NA"; - public final static long NA_LONG = -1L; - public final static int NA_INT = -1; - - private String chr; - private String ncbiBuild; - private long startPosition; - private long endPosition; - private String hugoGeneSymbol; - private long entrezGeneId; - private String referenceAllele; - private String variantClassification; // mutation type - private String variantType; - private String center; // sequencing center - private String strand; - private String tumorSeqAllele1; - private String tumorSeqAllele2; - private String dbSNP_RS; - private String tumorSampleID; - private String mutationStatus; - private String validationStatus; - - private String sequencer; - private String dbSnpValStatus; - private String matchedNormSampleBarcode; - private String matchNormSeqAllele1; - private String matchNormSeqAllele2; - private String tumorValidationAllele1; - private String tumorValidationAllele2; - private String matchNormValidationAllele1; - private String matchNormValidationAllele2; - private String verificationStatus; - private String sequencingPhase; - private String sequenceSource; - private String validationMethod; - private String score; - private String bamFile; - - private int tumorAltCount; - private int tumorRefCount; - private int normalAltCount; - private int normalRefCount; - - private String mafProteinChange; - private String mafVariantClassification; - private String mafCosmicOverlapping; - private String mafDbSnpRs; - - public String getChr() { - return chr; - } - - public void setChr(String chr) { - this.chr = chr; - } - - public String getNcbiBuild() { - return ncbiBuild; - } - - public void setNcbiBuild(String ncbiBuild) { - this.ncbiBuild = ncbiBuild; - } - - public long getStartPosition() { - return startPosition; - } - - public void setStartPosition(long startPosition) { - this.startPosition = startPosition; - } - - public long getEndPosition() { - return endPosition; - } - - public void setEndPosition(long endPosition) { - this.endPosition = endPosition; - } - - public String getHugoGeneSymbol() { - return hugoGeneSymbol; - } - - public void setHugoGeneSymbol(String hugoGeneSymbol) { - this.hugoGeneSymbol = hugoGeneSymbol; - } - - public long getEntrezGeneId() { - return entrezGeneId; - } - - public void setEntrezGeneId(long entrezGeneId) { - this.entrezGeneId = entrezGeneId; - } - - public String getReferenceAllele() { - return referenceAllele; - } - - public void setReferenceAllele(String referenceAllele) { - this.referenceAllele = referenceAllele; - } - - public String getVariantClassification() { - return variantClassification; - } - - public void setVariantClassification(String variantClassification) { - this.variantClassification = variantClassification; - } - - public String getVariantType() { - return variantType; - } - - public void setVariantType(String variantType) { - this.variantType = variantType; - } - - public String getCenter() { - return center; - } - - public void setCenter(String center) { - this.center = center; - } - - public String getStrand() { - return strand; - } - - public void setStrand(String strand) { - this.strand = strand; - } - - public String getTumorSeqAllele1() { - return tumorSeqAllele1; - } - - public void setTumorSeqAllele1(String tumorSeqAllele1) { - this.tumorSeqAllele1 = tumorSeqAllele1; - } - - public String getTumorSeqAllele2() { - return tumorSeqAllele2; - } - - public void setTumorSeqAllele2(String tumorSeqAllele2) { - this.tumorSeqAllele2 = tumorSeqAllele2; - } - - public String getDbSNP_RS() { - return dbSNP_RS; - } - - public void setDbSNP_RS(String dbSNP_RS) { - this.dbSNP_RS = dbSNP_RS; - } - - public String getTumorSampleID() { - return tumorSampleID; - } - - public void setTumorSampleID(String tumorSampleID) { - this.tumorSampleID = tumorSampleID; - } - - public String getMutationStatus() { - return mutationStatus; - } - - public void setMutationStatus(String mutationStatus) { - this.mutationStatus = mutationStatus; - } - - public String getValidationStatus() { - return validationStatus; - } - - public void setValidationStatus(String validationStatus) { - this.validationStatus = validationStatus; - } - - public String getSequencer() { - return sequencer; - } - - public void setSequencer(String sequencer) { - this.sequencer = sequencer; - } - - public String getDbSnpValStatus() { - return dbSnpValStatus; - } - - public void setDbSnpValStatus(String dbSnpValStatus) { - this.dbSnpValStatus = dbSnpValStatus; - } - - public String getMatchedNormSampleBarcode() { - return matchedNormSampleBarcode; - } - - public void setMatchedNormSampleBarcode(String matchedNormSampleBarcode) { - this.matchedNormSampleBarcode = matchedNormSampleBarcode; - } - - public String getMatchNormSeqAllele1() { - return matchNormSeqAllele1; - } - - public void setMatchNormSeqAllele1(String matchNormSeqAllele1) { - this.matchNormSeqAllele1 = matchNormSeqAllele1; - } - - public String getMatchNormSeqAllele2() { - return matchNormSeqAllele2; - } - - public void setMatchNormSeqAllele2(String matchNormSeqAllele2) { - this.matchNormSeqAllele2 = matchNormSeqAllele2; - } - - public String getTumorValidationAllele1() { - return tumorValidationAllele1; - } - - public void setTumorValidationAllele1(String tumorValidationAllele1) { - this.tumorValidationAllele1 = tumorValidationAllele1; - } - - public String getTumorValidationAllele2() { - return tumorValidationAllele2; - } - - public void setTumorValidationAllele2(String tumorValidationAllele2) { - this.tumorValidationAllele2 = tumorValidationAllele2; - } - - public String getMatchNormValidationAllele1() { - return matchNormValidationAllele1; - } - - public void setMatchNormValidationAllele1(String matchNormValidationAllele1) { - this.matchNormValidationAllele1 = matchNormValidationAllele1; - } - - public String getMatchNormValidationAllele2() { - return matchNormValidationAllele2; - } - - public void setMatchNormValidationAllele2(String matchNormValidationAllele2) { - this.matchNormValidationAllele2 = matchNormValidationAllele2; - } - - public String getVerificationStatus() { - return verificationStatus; - } - - public void setVerificationStatus(String verificationStatus) { - this.verificationStatus = verificationStatus; - } - - public String getSequencingPhase() { - return sequencingPhase; - } - - public void setSequencingPhase(String sequencingPhase) { - this.sequencingPhase = sequencingPhase; - } - - public String getSequenceSource() { - return sequenceSource; - } - - public void setSequenceSource(String sequenceSource) { - this.sequenceSource = sequenceSource; - } - - public String getValidationMethod() { - return validationMethod; - } - - public void setValidationMethod(String validationMethod) { - this.validationMethod = validationMethod; - } - - public String getScore() { - return score; - } - - public void setScore(String score) { - this.score = score; - } - - public String getBamFile() { - return bamFile; - } - - public void setBamFile(String bamFile) { - this.bamFile = bamFile; - } - - public int getTumorAltCount() { - return tumorAltCount; - } - - public void setTumorAltCount(int tumorAltCount) { - this.tumorAltCount = tumorAltCount; - } - - public int getTumorRefCount() { - return tumorRefCount; - } - - public void setTumorRefCount(int tumorRefCount) { - this.tumorRefCount = tumorRefCount; - } - - public int getNormalAltCount() { - return normalAltCount; - } - - public void setNormalAltCount(int normalAltCount) { - this.normalAltCount = normalAltCount; - } - - public int getNormalRefCount() { - return normalRefCount; - } - - public void setNormalRefCount(int normalRefCount) { - this.normalRefCount = normalRefCount; - } - - public String getMafProteinChange() { - return mafProteinChange; - } - - public void setMafProteinChange(String mafProteinChange) { - this.mafProteinChange = mafProteinChange; - } - - public String getMafVariantClassification() { - return mafVariantClassification; - } - - public void setMafVariantClassification( - String mafVariantClassification) { - this.mafVariantClassification = mafVariantClassification; - } - - public String getMafCosmicOverlapping() { - return mafCosmicOverlapping; - } - - public void setMafCosmicOverlapping(String mafCosmicOverlapping) { - this.mafCosmicOverlapping = mafCosmicOverlapping; - } - - public String getMafDbSnpRs() { - return mafDbSnpRs; - } - - public void setMafDbSnpRs(String mafDbSnpRs) { - this.mafDbSnpRs = mafDbSnpRs; - } - - -} diff --git a/portal/src/org/mskcc/portal/oncotator/OncotateTool.java b/portal/src/org/mskcc/portal/oncotator/OncotateTool.java deleted file mode 100644 index 0076122cc6e..00000000000 --- a/portal/src/org/mskcc/portal/oncotator/OncotateTool.java +++ /dev/null @@ -1,261 +0,0 @@ -package org.mskcc.portal.oncotator; - -import org.mskcc.cgds.dao.DaoException; -import org.mskcc.portal.model.MafRecord; -import org.mskcc.portal.util.MafUtil; - -import java.io.*; -import java.util.Date; -import java.util.HashMap; - -/** - * Command Line Tool to Oncotate a Single MAF File. - */ -public class OncotateTool { - private final static String TAB = "\t"; - private int buildNumErrors = 0; - private OncotatorService oncotatorService = OncotatorService.getInstance(); - private static int MAX_NUM_RECORDS_TO_PROCESS = -1; - private static int ONCO_HEADERS_COUNT = 5; - private HashMap genomicCountMap = new HashMap(); - - public OncotateTool(File inputMafFile, File outputMafFile) throws IOException, DaoException { - outputFileNames(inputMafFile, outputMafFile); - FileReader reader = new FileReader(inputMafFile); - BufferedReader bufReader = new BufferedReader(reader); - String headerLine = bufReader.readLine(); - MafUtil mafUtil = new MafUtil(headerLine); - String dataLine = bufReader.readLine(); - - int numRecordsProcessed = 0; - FileWriter writer = new FileWriter(outputMafFile); - - writeHeaders(headerLine, writer); - - while (dataLine != null) - { - MafRecord mafRecord = mafUtil.parseRecord(dataLine); - String variantClassification = mafRecord.getVariantClassification(); - - // adjust data line before writing to make sure the consistency - // among the lines - writer.write(this.adjustDataLine(dataLine, mafUtil)); - - // Skip Silent Mutations - if (!variantClassification.equalsIgnoreCase("Silent")) { - conditionallyOncotateRecord(mafRecord, writer); - numRecordsProcessed++; - conditionallyAbort(numRecordsProcessed); - } else { - writeEmptyDataFields(writer); - } - writer.write("\n"); - dataLine = bufReader.readLine(); - } - - System.out.println("Total Number of Records Processed: " + numRecordsProcessed); - for (String coords: genomicCountMap.keySet()) { - Integer count = genomicCountMap.get(coords); - if (count > 1) { - System.out.println(coords + "\t" + (count-1)); - } - } - - reader.close(); - writer.close(); - } - - private void outputFileNames(File inputMafFile, File outputMafFile) { - System.out.println("Reading MAF From: " + inputMafFile.getAbsolutePath()); - System.out.println("Writing new MAF To: " + outputMafFile.getAbsolutePath()); - } - - private void conditionallyAbort(int numRecordsProcessed) { - if (MAX_NUM_RECORDS_TO_PROCESS > 0 && numRecordsProcessed > MAX_NUM_RECORDS_TO_PROCESS) { - throw new IllegalStateException("Aborting at " + MAX_NUM_RECORDS_TO_PROCESS + " records"); - } - } - - private void writeEmptyDataFields(FileWriter writer) throws IOException { - for (int i=0; i 10) { - abortDueToBuildNumErrors(); - } - } else { - oncotateRecord(mafRecord, writer); - } - } - - private void abortDueToBuildNumErrors() { - System.out.println("Too many records with wrong build #. Aborting..."); - System.exit(1); - } - - private void outputBuildNumErrorMessage(String ncbiBuild) { - System.out.println("Record uses NCBI Build: " + ncbiBuild); - System.out.println("--> Oncotator only works with Build 37/hg19."); - } - - private void oncotateRecord(MafRecord mafRecord, FileWriter writer) throws IOException, DaoException { - String chr = mafRecord.getChr(); - long start = mafRecord.getStartPosition(); - long end = mafRecord.getEndPosition(); - String refAllele = mafRecord.getReferenceAllele(); - String tumorAllele = determineTumorAllele(mafRecord, refAllele); - if (tumorAllele != null) { - String coords = createCoordinates(chr, start, end, refAllele, tumorAllele); - System.out.println(coords); - if (genomicCountMap.containsKey(coords)) { - Integer count = genomicCountMap.get(coords); - genomicCountMap.put(coords, count+1); - } else { - genomicCountMap.put(coords, 1); - } - OncotatorRecord oncotatorRecord = - oncotatorService.getOncotatorRecord(chr, start, end, refAllele,tumorAllele); - writeOncotatorResults(writer, oncotatorRecord); - } else { - writeEmptyDataFields(writer); - } - } - - private String determineTumorAllele(MafRecord mafRecord, String refAllele) { - String tumorAllel1 = mafRecord.getTumorSeqAllele1(); - String tumorAllel2 = mafRecord.getTumorSeqAllele2(); - String tumorAllele = null; - if (!refAllele.equals(tumorAllel1)) { - tumorAllele = tumorAllel1; - } else if(!refAllele.equalsIgnoreCase(tumorAllel2)) { - tumorAllele = tumorAllel2; - } - return tumorAllele; - } - - private void writeOncotatorResults(Writer writer, OncotatorRecord oncotatorRecord) throws IOException { - String proteinChange = oncotatorRecord.getProteinChange(); - String cosmicOverlapping = oncotatorRecord.getCosmicOverlappingMutations(); - String dbSnpRs = oncotatorRecord.getDbSnpRs(); - String variantClassification = oncotatorRecord.getVariantClassification(); - String geneSymbol = oncotatorRecord.getGene(); - writer.write(TAB + outputField(variantClassification)); - writer.write(TAB + outputField(proteinChange)); - writer.write(TAB + outputField(cosmicOverlapping)); - writer.write(TAB + outputField(dbSnpRs)); - writer.write(TAB + outputField(geneSymbol)); - } - - private String outputField(String field) { - if (field == null) { - return ""; - } else { - return field; - } - } - - private String createCoordinates(String chr, long start, long end, - String refAllele, String tumorAllele) { - return chr + "_" + start + "_" + end + "_" + refAllele - + "_" + tumorAllele; - } - - /** - * Adjusts the data line for consistency. - * - * If the data is already oncotated removes last ONCO_HEADERS_COUNT columns - * to enable re-oncotation. Otherwise adjusts the data line to have columns - * exactly the same as the number of column headers to prevent incorrect - * oncotating. - * - * @param dataLine line to be adjusted - * @param util MAF util containing header information - * @return adjusted data line - */ - private String adjustDataLine(String dataLine, MafUtil util) - { - //String line = dataLine.trim(); - String line = new String(dataLine); - String[] parts = line.split(TAB, -1); - - // diff should be zero if (# of headers == # of data cols) - int diff = util.getHeaderCount() - parts.length; - - // check if already oncotated - boolean oncotated = (util.getOncoVariantClassificationIndex() != -1); - - // file already oncotated - if (oncotated) - { - line = new String(); - - // remove last ONCO_HEADERS_COUNT data columns - // (to enable overwrite instead of appending new cols to the end) - for (int i = 0; i < parts.length - ONCO_HEADERS_COUNT; i++) - { - line += parts[i]; - - if (i != parts.length - ONCO_HEADERS_COUNT - 1) - { - line += TAB; - } - - } - } - // not oncotated, but header and data mismatch - else if (diff > 0) - { - // append appropriate number of tabs - for (int i = 0; i < diff; i++) - { - line += TAB; - } - } - - return line; - } - - public static void main(String[] args) { - if (args.length < 2) { - System.out.println("command line usage: oncotateMaf.pl "); - System.exit(1); - } - Date start = new Date(); - try { - OncotateTool tool = new OncotateTool(new File(args[0]), new File(args[1])); - } catch (Exception e) { - System.out.println("Error occurred: " + e.getMessage()); - e.printStackTrace(); - } finally { - Date end = new Date(); - double timeElapsed = (end.getTime() - start.getTime()) / 1000.0; - System.out.println("Total time: " + timeElapsed + " seconds."); - } - } -} \ No newline at end of file diff --git a/portal/src/org/mskcc/portal/oncotator/OncotatorParser.java b/portal/src/org/mskcc/portal/oncotator/OncotatorParser.java deleted file mode 100644 index d5f93e7c4b6..00000000000 --- a/portal/src/org/mskcc/portal/oncotator/OncotatorParser.java +++ /dev/null @@ -1,75 +0,0 @@ -package org.mskcc.portal.oncotator; - -import com.fasterxml.jackson.databind.JsonNode; -import com.fasterxml.jackson.databind.ObjectMapper; - -import java.io.IOException; - -/** - * Parses JSON Retrieved from Oncotator. - */ -public class OncotatorParser -{ - - /** - * Parses the JSON returned by the oncotator web service, and returns - * the information as a new OncotateRecord instance. - * - * @param key chr#_start_end_allele1_allele2 - * @param json JSON object returned by the web service - * @return new OncotatorRecord, or null if JSON has an error - * @throws IOException - */ - public static OncotatorRecord parseJSON (String key, String json) throws IOException - { - ObjectMapper m = new ObjectMapper(); - JsonNode rootNode = m.readValue(json, JsonNode.class); - - OncotatorRecord oncotator = new OncotatorRecord(key); - - // check if JSON has an ERROR - - JsonNode errorNode = rootNode.path("ERROR"); - if (!errorNode.isMissingNode()) - { - System.out.println("JSON parse error for " + key + ": " + errorNode.getTextValue()); - return null; - } - - // proceed in case of no JSON error - - JsonNode genomeChange = rootNode.path("genome_change"); - if (!genomeChange.isMissingNode()) { - oncotator.setGenomeChange(genomeChange.getTextValue()); - } - - JsonNode cosmic = rootNode.path("Cosmic_overlapping_mutations"); - if (!cosmic.isMissingNode()) { - oncotator.setCosmicOverlappingMutations(cosmic.getTextValue()); - } - - JsonNode dbSnpRs = rootNode.path("dbSNP_RS"); - if (!dbSnpRs.isMissingNode()) { - oncotator.setDbSnpRs(dbSnpRs.getTextValue()); - } - - JsonNode bestTranscriptIndexNode = rootNode.path("best_canonical_transcript"); - - if (!bestTranscriptIndexNode.isMissingNode()) { - int transcriptIndex = bestTranscriptIndexNode.getIntValue(); - JsonNode transcriptsNode = rootNode.path("transcripts"); - JsonNode bestTranscriptNode = transcriptsNode.get(transcriptIndex); - - String variantClassification = bestTranscriptNode.path("variant_classification").getTextValue(); - String proteinChange = bestTranscriptNode.path("protein_change").getTextValue(); - String geneSymbol = bestTranscriptNode.path("gene").getTextValue(); - int exonAffected = bestTranscriptNode.path("exon_affected").getIntValue(); - oncotator.setVariantClassification(variantClassification); - oncotator.setProteinChange(proteinChange); - oncotator.setGene(geneSymbol); - oncotator.setExonAffected(exonAffected); - } - - return oncotator; - } -} diff --git a/portal/src/org/mskcc/portal/oncotator/OncotatorRecord.java b/portal/src/org/mskcc/portal/oncotator/OncotatorRecord.java deleted file mode 100644 index 05e81852cd0..00000000000 --- a/portal/src/org/mskcc/portal/oncotator/OncotatorRecord.java +++ /dev/null @@ -1,79 +0,0 @@ -package org.mskcc.portal.oncotator; - -/** - * Encapsulate a Single Record from Oncotator. - */ -public class OncotatorRecord { - private String key; - private String gene; - private String genomeChange; - private String proteinChange; - private String variantClassification; - private int exonAffected; - private String cosmicOverlappingMutations; - private String dbSnpRs; - - public OncotatorRecord (String key) { - this.key = key; - } - - public String getKey() { - return key; - } - - public String getProteinChange() { - return proteinChange; - } - - public void setProteinChange(String proteinChange) { - this.proteinChange = proteinChange; - } - - public String getVariantClassification() { - return variantClassification; - } - - public void setVariantClassification(String variantClassification) { - this.variantClassification = variantClassification; - } - - public String getGene() { - return gene; - } - - public void setGene(String gene) { - this.gene = gene; - } - - public String getGenomeChange() { - return genomeChange; - } - - public void setGenomeChange(String genomeChange) { - this.genomeChange = genomeChange; - } - - public int getExonAffected() { - return exonAffected; - } - - public void setExonAffected(int exonAffected) { - this.exonAffected = exonAffected; - } - - public String getCosmicOverlappingMutations() { - return cosmicOverlappingMutations; - } - - public void setCosmicOverlappingMutations(String cosmicOverlappingMutations) { - this.cosmicOverlappingMutations = cosmicOverlappingMutations; - } - - public String getDbSnpRs() { - return dbSnpRs; - } - - public void setDbSnpRs(String dbSnpRs) { - this.dbSnpRs = dbSnpRs; - } -} diff --git a/portal/src/org/mskcc/portal/oncotator/OncotatorService.java b/portal/src/org/mskcc/portal/oncotator/OncotatorService.java deleted file mode 100644 index f20246d8517..00000000000 --- a/portal/src/org/mskcc/portal/oncotator/OncotatorService.java +++ /dev/null @@ -1,94 +0,0 @@ -package org.mskcc.portal.oncotator; - -import org.mskcc.cgds.dao.DaoException; -import org.mskcc.cgds.dao.DaoOncotatorCache; -import org.mskcc.portal.util.WebFileConnect; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.io.IOException; -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.net.URL; - -/** - * Connects to Oncotator and Retrieves Details on a Single Mutation. - */ -public class OncotatorService { - private static OncotatorService oncotatorService; - private final static String ONCOTATOR_BASE_URL = "http://www.broadinstitute.org/oncotator/mutation/"; - private static final Logger logger = Logger.getLogger(OncotatorService.class); - private DaoOncotatorCache cache; - private final static long SLEEP_PERIOD = 0; // in ms - - private OncotatorService () { - cache = DaoOncotatorCache.getInstance(); - } - - public static OncotatorService getInstance() { - if (oncotatorService == null) { - oncotatorService = new OncotatorService(); - } - return oncotatorService; - } - - public OncotatorRecord getOncotatorRecord(String chr, long start, long end, String referenceAllele, - String observedAllele) throws IOException, DaoException { - String key = createKey(chr, start, end, referenceAllele, observedAllele); - - BufferedReader in = null; - InputStream inputStream = null; - try - { - OncotatorRecord record = cache.get(key); - - // if record is null, then it is not cached yet - if (record == null) - { - try { - // Must go to sleep; otherwise, we trigger the Broad's Limit. - Thread.sleep(SLEEP_PERIOD); - } catch (InterruptedException e) { - e.printStackTrace(); - } - - URL url = new URL(ONCOTATOR_BASE_URL + key); - inputStream = url.openStream(); - in = new BufferedReader(new InputStreamReader(inputStream)); - String content = WebFileConnect.readFile(in); - record = OncotatorParser.parseJSON(key, content); - - // if record is null, then there is an error with JSON parsing - if (record != null) - { - cache.put(record); - } - else - { - record = new OncotatorRecord(key); - } - - return record; - } - else - { - return record; - } - } catch (IOException e) { - System.out.println("Got IO Error: " + e.getMessage()); - return new OncotatorRecord(key); - } finally { - // Must close input stream! Otherwise, we maintain too many open connections - // to the Broad. - if (inputStream != null) { - inputStream.close(); - } - } - } - - public static String createKey(String chr, long start, long end, String referenceAllele, - String observedAllele) { - return chr + "_" + start + "_" + end + "_" + referenceAllele + "_" + observedAllele; - } -} \ No newline at end of file diff --git a/portal/src/org/mskcc/portal/test/oncotator/TestOncotatorParser.java b/portal/src/org/mskcc/portal/test/oncotator/TestOncotatorParser.java deleted file mode 100644 index 08aa31d933e..00000000000 --- a/portal/src/org/mskcc/portal/test/oncotator/TestOncotatorParser.java +++ /dev/null @@ -1,27 +0,0 @@ -package org.mskcc.portal.test.oncotator; - -import junit.framework.TestCase; -import org.mskcc.portal.oncotator.OncotatorParser; -import org.mskcc.portal.oncotator.OncotatorRecord; -import org.mskcc.portal.util.WebFileConnect; - -import java.io.BufferedReader; -import java.io.FileReader; - -/** - * Unit test for OncotatorParser. - */ -public class TestOncotatorParser extends TestCase { - - public void testParser() throws Exception { - FileReader reader = new FileReader("test_data/oncotator0.json"); - BufferedReader bufReader = new BufferedReader(reader); - String content = WebFileConnect.readFile(bufReader); - OncotatorRecord oncotator = OncotatorParser.parseJSON("key", content); - assertEquals("PTEN", oncotator.getGene()); - assertEquals("g.chr10:89653820G>T", oncotator.getGenomeChange()); - assertEquals("p.E40*", oncotator.getProteinChange()); - assertEquals("Nonsense_Mutation", oncotator.getVariantClassification()); - assertEquals("rs121434568", oncotator.getDbSnpRs()); - } -} diff --git a/portal/src/org/mskcc/portal/test/util/TestMafUtil.java b/portal/src/org/mskcc/portal/test/util/TestMafUtil.java deleted file mode 100644 index 9ca742d5f77..00000000000 --- a/portal/src/org/mskcc/portal/test/util/TestMafUtil.java +++ /dev/null @@ -1,100 +0,0 @@ -package org.mskcc.portal.test.util; - -import junit.framework.TestCase; -import org.mskcc.portal.model.MafRecord; -import org.mskcc.portal.util.MafUtil; - -/** - * JUnit Tests for MAF Util. - * -*/ -public class TestMafUtil extends TestCase { - - public void testMafUtil1() { - String headerLine = "BAM_file\tCenter\tChromosome\tEnd_position\tEntrez_Gene_Id\tHugo_Symbol" + - "\tMatch_Norm_Seq_Allele1\tMatch_Norm_Seq_Allele2\tMatch_Norm_Validation_Allele1" + - "\tMatch_Norm_Validation_Allele2\tMatched_Norm_Sample_Barcode\tMutation_Status" + - "\tNCBI_Build\tReference_Allele\tScore\tSequence_Source\tSequencer\tSequencing_Phase" + - "\tStart_position\tStrand\tTumor_Sample_Barcode\tTumor_Seq_Allele1\tTumor_Seq_Allele2" + - "\tTumor_Validation_Allele1\tTumor_Validation_Allele2\tValidation_Method" + - "\tValidation_Status\tVariant_Classification\tVariant_Type\tVerification_Status" + - "\tdataset\tdbSNP_RS\tdbSNP_Val_Status\tpatient\ttype\tclassification" + - "\tstart\tend\tgene\tchr\tref_allele\ttum_allele1\ttum_allele2\tnewbase" + - "\tcontext_orig\tcontext65\tgene_name"; - MafUtil mafUtil = new MafUtil(headerLine); - assertEquals(1, mafUtil.getCenterIndex()); - assertEquals(2, mafUtil.getChrIndex()); - assertEquals(3, mafUtil.getEndPositionIndex()); - assertEquals(4, mafUtil.getEntrezGeneIdIndex()); - assertEquals(5, mafUtil.getHugoGeneSymbolIndex()); - assertEquals(11, mafUtil.getMutationStatusIndex()); - assertEquals(12, mafUtil.getNcbiIndex()); - assertEquals(13, mafUtil.getReferenceAlleleIndex()); - assertEquals(18, mafUtil.getStartPositionIndex()); - assertEquals(19, mafUtil.getStrandIndex()); - assertEquals(20, mafUtil.getTumorSampleIndex()); - assertEquals(27, mafUtil.getVariantClassificationIndex()); - assertEquals(28, mafUtil.getVariantTypeIndex()); - } - - public void testMafUtil2() { - String headerLine = "Hugo_Symbol\tEntrez_Gene_Id\tCenter\tNCBI_Build\tChromosome\tStart_position" + - "\tEnd_position\tStrand\tVariant_Classification\tVariant_Type\tReference_Allele" + - "\tTumor_Seq_Allele1\tTumor_Seq_Allele2\tdbSNP_RS\tdbSNP_Val_Status\tTumor_Sample_Barcode" + - "\tMatched_Norm_Sample_Barcode\tMatch_Norm_Seq_Allele1\tMatch_Norm_Seq_Allele2" + - "\tTumor_Validation_Allele1\tTumor_Validation_Allele2\tMatch_Norm_Validation_Allele1" + - "\tMatch_Norm_Validation_Allele2\tVerification_Status\tValidation_Status\tMutation_Status" + - "\tSequencing_Phase\tSequence_Source\tValidation_Method\tScore\tBAM_file\tSequencer" + - "\tchromosome_name\tstart\tstop\treference\tvariant\ttype\tgene_name\ttranscript_name" + - "\ttranscript_species\ttranscript_source\ttranscript_version\tstrand\ttranscript_status" + - "\ttrv_type\tc_position\tamino_acid_change\tucsc_cons\tdomain\tall_domains" + - "\tdeletion_substructures\ttranscript_error comment\tMA:variant\tMA:GE.rank\tMA:CNA" + - "\tMA:OV.variant.samples\tMA:OV.gene.samples\tMA:mapping.issue\tMA:FImpact" + - "\tMA:FI.score\tMA:Func.region\tMA:bindsite.protein\tMA:bindsite.DNA/RNA" + - "\tMA:bindsite.sm.mol\tMA:CancerGenes\tMA:TS\tMA:OG\tMA:COSMIC.mutations" + - "\tMA:COSMIC.cancers\tMA:Uniprot.regions\tMA:TS.interacts\tMA:OG.interacts" + - "\tMA:Pfam.domain\tMA:link.var\tMA:link.MSA\tMA:link.PDB"; - MafUtil mafUtil = new MafUtil(headerLine); - assertEquals(0, mafUtil.getHugoGeneSymbolIndex()); - assertEquals(1, mafUtil.getEntrezGeneIdIndex()); - assertEquals(2, mafUtil.getCenterIndex()); - assertEquals(3, mafUtil.getNcbiIndex()); - assertEquals(4, mafUtil.getChrIndex()); - assertEquals(5, mafUtil.getStartPositionIndex()); - assertEquals(6, mafUtil.getEndPositionIndex()); - assertEquals(7, mafUtil.getStrandIndex()); - assertEquals(8, mafUtil.getVariantClassificationIndex()); - assertEquals(9, mafUtil.getVariantTypeIndex()); - assertEquals(10, mafUtil.getReferenceAlleleIndex()); - assertEquals(15, mafUtil.getTumorSampleIndex()); - assertEquals(25, mafUtil.getMutationStatusIndex()); - - String dataLine = "AGL\t178\tgenome.wustl.edu\t36\t1\t100122272\t100122272\t+\tMissense_Mutation\tSNP" + - "\tG\tG\tA\tnovel\tUnknown\tTCGA-13-1405-01A-01W-0494-09\tTCGA-13-1405-10A-01W-0495-09" + - "\tG\tG\tG\tA\tG\tG\tUnknown\tValid\tSomatic\t4\tCapture\t454_PCR_WGA\t1\tdbGAP\tIllumina GAIIx" + - "\t1\t100122272\t100122272\tG\tA\tSNP\tAGL\tNM_000028\thuman\tgenbank\t54_36p\t1\tvalidated" + - "\tmissense\tc.2317\tp.E773K\t1" + - "\tNULL\tsuperfamily_(Trans)glycosidases,HMMPfam_GDE_C,superfamily_Six-hairpin glycosidases" + - "\t-\tno_errors\t1,100122272,G,A\t0.5081\t0\t1\t1\t\tlow\t1.24\t\t\t\t\tEntrez Query :: Stability" + - "\t\t\t\t\t\t\t\t\thttp://mutationassessor.org?cm=var&var=1,100122272,G,A&fts=all" + - "\thttp://mutationassessor.org/?cm=msa&ty=f&p=GDE_HUMAN&rb=601&re=800&var=E773K\t"; - MafRecord record = mafUtil.parseRecord(dataLine); - assertEquals("AGL", record.getHugoGeneSymbol()); - assertEquals(178L, record.getEntrezGeneId()); - assertEquals("genome.wustl.edu", record.getCenter()); - assertEquals("36", record.getNcbiBuild()); - assertEquals("1", record.getChr()); - assertEquals(100122272, record.getStartPosition()); - assertEquals(100122272, record.getEndPosition()); - assertEquals("+", record.getStrand()); - assertEquals("Missense_Mutation", record.getVariantClassification()); - assertEquals("SNP", record.getVariantType()); - assertEquals("G", record.getReferenceAllele()); - assertEquals("G", record.getTumorSeqAllele1()); - assertEquals("A", record.getTumorSeqAllele2()); - assertEquals("novel", record.getDbSNP_RS()); - assertEquals("TCGA-13-1405-01A-01W-0494-09", record.getTumorSampleID()); - assertEquals("Valid", record.getValidationStatus()); - assertEquals("Somatic", record.getMutationStatus()); - } -} diff --git a/scripts/pom.xml b/scripts/pom.xml deleted file mode 100644 index aad01899e2c..00000000000 --- a/scripts/pom.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - - master - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - scripts - Portal Scripts - Scripts Package for Portal - - - - org.mskcc.cbio - core - - - javax.servlet - javax.servlet-api - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - - - copy-parent-resources - process-sources - - copy-resources - - - ${project.build.directory}/classes - - - ${PORTAL_HOME}/src/main/resources - true - - **/*.properties - - - **/portal.properties.* - **/logback.xml.* - **/maven.properties.* - **/*.EXAMPLE - - - - ${PORTAL_HOME}/portal/src/main/webapp/WEB-INF - true - - logback.xml - - - - - - - - - - org.apache.maven.plugins - maven-shade-plugin - - - package - - shade - - - false - - - org.bouncycastle:bcprov-jdk15 - - - - - META-INF/spring.handlers - - - META-INF/spring.schemas - - - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - - - - - - - - - diff --git a/security/permission-evaluator/pom.xml b/security/permission-evaluator/pom.xml deleted file mode 100644 index c36188ba8a3..00000000000 --- a/security/permission-evaluator/pom.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - security - org.mskcc.cbio - 0-unknown-version-SNAPSHOT - - 4.0.0 - - permission-evaluator - - - org.springframework.security - spring-security-core - - - org.mskcc.cbio - persistence-mybatis - - - - \ No newline at end of file diff --git a/security/pom.xml b/security/pom.xml deleted file mode 100644 index 5a3073b65e6..00000000000 --- a/security/pom.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - master - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - - security - pom - - security-spring - permission-evaluator - - - - - - com.fasterxml.jackson.core - jackson-core - - - com.fasterxml.jackson.core - jackson-databind - - - io.jsonwebtoken - jjwt-api - - - io.jsonwebtoken - jjwt-impl - - - io.jsonwebtoken - jjwt-jackson - - - com.auth0 - jwks-rsa - - - org.mockito - mockito-core - - - com.google.guava - guava - - - - diff --git a/security/security-spring/pom.xml b/security/security-spring/pom.xml deleted file mode 100644 index 07f909d4d44..00000000000 --- a/security/security-spring/pom.xml +++ /dev/null @@ -1,123 +0,0 @@ - - - - security - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - - security-spring - - - - org.mskcc.cbio - service - - - org.mskcc.cbio - utils - - - org.springframework - spring-test - - - - org.springframework.security - spring-security-acl - - - org.springframework.security - spring-security-jwt - - - org.springframework.security.oauth - spring-security-oauth2 - - - org.springframework.security - spring-security-config - - - org.springframework.security - spring-security-core - - - org.springframework.security - spring-security-ldap - - - org.springframework.security - spring-security-openid - - - org.springframework.security.extensions - spring-security-saml2-core - - - org.springframework.security - spring-security-taglibs - - - org.springframework.security - spring-security-web - - - - org.springframework.social - spring-social-config - - - org.springframework.social - spring-social-core - - - org.springframework.social - spring-social-security - - - org.springframework.social - spring-social-web - - - - com.github.spring-social - spring-social-google - - - - com.google.inject - guice - - - - javax.servlet - javax.servlet-api - - - - com.github.cbioportal - spring-social-live - - - - com.fasterxml.jackson.core - jackson-core - - - com.fasterxml.jackson.core - jackson-databind - - - com.fasterxml.jackson.core - jackson-annotations - - - junit - junit - - - diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/PortalSavedRequestAwareAuthenticationSuccessHandler.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/PortalSavedRequestAwareAuthenticationSuccessHandler.java deleted file mode 100644 index 374623ffb93..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/PortalSavedRequestAwareAuthenticationSuccessHandler.java +++ /dev/null @@ -1,149 +0,0 @@ -/* - * Copyright (c) 2017 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * Copyright 2002-2016 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring; - -import java.io.IOException; -import java.net.URI; -import java.net.URISyntaxException; - -import javax.servlet.ServletException; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import org.springframework.security.core.Authentication; -import org.springframework.security.web.authentication.SimpleUrlAuthenticationSuccessHandler; -import org.springframework.security.web.savedrequest.SavedRequest; -import org.springframework.security.web.savedrequest.RequestCache; -import org.springframework.security.web.savedrequest.HttpSessionRequestCache; -import org.springframework.util.StringUtils; -import org.springframework.util.Assert; - -/** - * A reimplementation of SavedRequestAwareAuthenticationSuccessHandler that checks for - * targetUrlParameter on the SavedRequest rather than on the current request. - * - * @author Manda Wilson - * @see SavedRequestAwareAuthenticationSuccessHandler - */ -class PortalSavedRequestAwareAuthenticationSuccessHandler extends SimpleUrlAuthenticationSuccessHandler { - - protected static final Logger log = LoggerFactory.getLogger(PortalSavedRequestAwareAuthenticationSuccessHandler.class); - - private RequestCache requestCache = new HttpSessionRequestCache(); - - @Override - public void onAuthenticationSuccess(HttpServletRequest request, - HttpServletResponse response, Authentication authentication) - throws ServletException, IOException { - SavedRequest savedRequest = requestCache.getRequest(request, response); - - if (savedRequest == null) { - super.onAuthenticationSuccess(request, response, authentication); - - return; - } - - if (isAlwaysUseDefaultTargetUrl()) { - requestCache.removeRequest(request, response); - super.onAuthenticationSuccess(request, response, authentication); - - return; - } - - String targetUrlParameter = getTargetUrlParameter(); - String targetUrl = null; - String[] targetUrlParameterValues = savedRequest.getParameterValues(targetUrlParameter); - - if (targetUrlParameter != null - && targetUrlParameterValues != null - && targetUrlParameterValues.length > 0 - && StringUtils.hasText(targetUrlParameterValues[0])) { - requestCache.removeRequest(request, response); - // force this to be relative - targetUrl = getRelativeURI(request, savedRequest.getParameterValues(targetUrlParameter)[0]); - Assert.notNull(targetUrl, "'" + savedRequest.getParameterValues(targetUrlParameter)[0] + "' could not be turned into a valid relative URI"); - Assert.isTrue(StringUtils.hasText(targetUrl), "'" + savedRequest.getParameterValues(targetUrlParameter)[0] + "' could not be turned into a valid relative URI"); - } else { - clearAuthenticationAttributes(request); - // Use the DefaultSavedRequest URL - targetUrl = savedRequest.getRedirectUrl(); - } - - logger.debug("Redirecting to Url: " + targetUrl); - getRedirectStrategy().sendRedirect(request, response, targetUrl); - } - - public void setRequestCache(RequestCache requestCache) { - this.requestCache = requestCache; - } - - private String getRelativeURI(HttpServletRequest request, String targetURI) { - String relativeURI = null; - try { - URI originalURI = new URI(targetURI); - logger.debug("getRelativeURI(): request.getServletContext() = '" + request.getServletContext() + "'"); - logger.debug("getRelativeURI(): testing '" + new URI(request.getContextPath()) + "'"); - // URI(String scheme, String authority, String path, String query, String fragment) - // use relativize so we do not include context path e.g. /cbioportal/ - // use resolve to make sure we have a "/" at the front - relativeURI = new URI("/").resolve(new URI(request.getContextPath()).relativize(new URI(null, - null, - originalURI.getRawPath(), - originalURI.getRawQuery(), - originalURI.getRawFragment()))).toString(); - logger.debug("getRelativeURI(): changing '" + targetURI + "' to '" + relativeURI + "'"); - } catch (URISyntaxException e) { - return null; - } - return relativeURI; - } -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/PortalUserDetails.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/PortalUserDetails.java deleted file mode 100644 index c84e4b44bb7..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/PortalUserDetails.java +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication; - -import org.springframework.security.core.GrantedAuthority; -import org.springframework.security.core.userdetails.User; - -import java.util.Collection; - -/** - * A class which extends User and provides - * methods to set and get properties obtained - * via an authentication protocol. - * - * @author Benjamin Gross - */ -public class PortalUserDetails extends User { - - private String email; - private String userName; - - /** - * Constructor. - * - * @param username String - * @param authorities Collection - * - * Username is what is presented to the authentication provider. - * Authorities is what should be granted to the caller. - */ - public PortalUserDetails(String username, Collection authorities) { - super(username, "unused", authorities); - } - - // accessors - public String getEmail() { return email; } - public void setEmail(String email) {this.email = email; } - public String getUserName() { return userName; } - public void setUserName(String userName) { this.userName = userName; } -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/googleplus/GoogleplusConnectionFactory.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/googleplus/GoogleplusConnectionFactory.java deleted file mode 100644 index f40256881bb..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/googleplus/GoogleplusConnectionFactory.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.googleplus; - -import org.springframework.social.connect.support.OAuth2ConnectionFactory; -import org.springframework.social.google.api.Google; -import org.springframework.social.google.connect.GoogleAdapter; -import org.springframework.social.google.connect.GoogleServiceProvider; -import org.springframework.social.oauth2.AccessGrant; -import org.springframework.social.google.api.oauth2.OAuth2Operations; - -/** - * @author criscuof - * - */ -public class GoogleplusConnectionFactory extends OAuth2ConnectionFactory { - - public GoogleplusConnectionFactory(String clientId, String clientSecret) { - super("google", new GoogleServiceProvider(clientId, clientSecret), - new GoogleAdapter()); - } - - /** - * modification of original factory class to support using the user's email address as his/her id - * original method utilized the google id, a numeric string - */ - @Override - protected String extractProviderUserId(AccessGrant accessGrant) { - Google api = ((GoogleServiceProvider)getServiceProvider()).getApi(accessGrant.getAccessToken()); - OAuth2Operations op = api.oauth2Operations(); - return op.getUserinfo().getEmail(); - } - -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/googleplus/GoogleplusUserDetailsService.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/googleplus/GoogleplusUserDetailsService.java deleted file mode 100644 index 61de18c25b1..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/googleplus/GoogleplusUserDetailsService.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.googleplus; - -import com.google.common.base.Preconditions; -import com.google.common.base.Strings; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.dao.DataAccessException; -import org.springframework.security.core.userdetails.UserDetails; -import org.springframework.security.core.userdetails.UserDetailsService; -import org.springframework.security.core.userdetails.UsernameNotFoundException; -import org.springframework.social.security.SocialUser; -import org.springframework.social.security.SocialUserDetailsService; - - - - - - -public class GoogleplusUserDetailsService implements SocialUserDetailsService { - - private static final Logger LOGGER = LoggerFactory.getLogger(GoogleplusUserDetailsService.class); - - private UserDetailsService userDetailsService; - - public GoogleplusUserDetailsService(UserDetailsService userDetailsService) { - this.userDetailsService = userDetailsService; - - } - - /** - * Loads the username by using the account ID of the user. - * @param userId The account ID of the requested user. - * @return The information of the requested user. - * @throws UsernameNotFoundException Thrown if no user is found. - * @throws DataAccessException - */ - - - @Override - public org.springframework.social.security.SocialUserDetails loadUserByUserId(String userId) throws UsernameNotFoundException, DataAccessException { - Preconditions.checkArgument(!Strings.isNullOrEmpty(userId), "A userid is required"); - LOGGER.debug("Loading user by user id: {}", userId); - - UserDetails ud = userDetailsService.loadUserByUsername(userId); - LOGGER.debug("Found user details: " +ud.getUsername()); - /** - * Map Spring Security UserDetails implementation to a Spring Social SocialUser instance - */ - return new SocialUser(ud.getUsername(), - ud.getPassword(), - ud.isEnabled(), - ud.isAccountNonExpired(), - ud.isCredentialsNonExpired(), - ud.isAccountNonLocked(), - ud.getAuthorities()); - - - } - - -} - diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/keycloak/SAMLUserDetailsServiceImpl.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/keycloak/SAMLUserDetailsServiceImpl.java deleted file mode 100644 index ea0ad3fd004..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/keycloak/SAMLUserDetailsServiceImpl.java +++ /dev/null @@ -1,152 +0,0 @@ -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.keycloak; - -import java.util.ArrayList; -import java.util.List; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; - -import org.cbioportal.security.spring.authentication.PortalUserDetails; - -import org.opensaml.saml2.core.Attribute; - -import org.opensaml.xml.XMLObject; -import org.opensaml.xml.schema.XSString; -import org.opensaml.xml.schema.impl.XSAnyImpl; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.security.core.authority.AuthorityUtils; -import org.springframework.security.saml.SAMLCredential; -import org.springframework.security.saml.userdetails.SAMLUserDetailsService; -import org.springframework.stereotype.Service; - -/** - * Implements spring security SAMLUserDetailsService interface: - * Instantiates PortalUserDetails object from SAML assertion received from - * keycloak identity provide. Creates Spring Security GrantedAuthority list - * based on cancer study roles included in the assertion during authentication - * - * @author Kelsey Zhu - */ - -@Service -public class SAMLUserDetailsServiceImpl implements SAMLUserDetailsService -{ - private static final Log log = LogFactory.getLog(SAMLUserDetailsServiceImpl.class); - - @Value("${saml.idp.metadata.attribute.email:}") - private String SAML_IDP_METADATA_EMAIL_ATTR_NAME; - - @Value("${saml.idp.metadata.attribute.userName:username}") - private String SAML_IDP_METADATA_USERNAME_ATTR_NAME; - - @Value("${saml.idp.metadata.attribute.role:}") - private String SAML_IDP_METADATA_ROLE_ATTR_NAME; - - @Value("${app.name:}") - private String APP_NAME; - - - /** - * Default no_arg Constructor. - */ - public SAMLUserDetailsServiceImpl() { - } - - /** - * - * @param attributeValue - * @return String type attribute value - */ - private String getAttributeValue(XMLObject attributeValue) - { - return attributeValue == null ? - null : - attributeValue instanceof XSString ? - ((XSString) attributeValue).getValue() : - attributeValue instanceof XSAnyImpl ? - ((XSAnyImpl) attributeValue).getTextContent() : - attributeValue.toString(); - } - - /** - * Implementation of {@code SAMLUserDetailsService}. - * Instantiate PortalUserDetails object from - * SAML assertion received from keycloak Identity Provider - */ - @Override - public Object loadUserBySAML(SAMLCredential credential) - { - PortalUserDetails userDetailsObj = null; - String email = null; - String userName = null; - List userRoles = new ArrayList(); - - // get email, userName and roles: iterate over attributes searching for "email", "userName" and "roles": - for (Attribute cAttribute : credential.getAttributes()) { - String attrName = cAttribute.getName(); - log.debug("loadUserBySAML(), parsing attribute -" + attrName); - - - if (email == null && attrName.equals(SAML_IDP_METADATA_EMAIL_ATTR_NAME)) { - email = credential.getAttributeAsString(attrName); - log.debug(email); - } - - if (userName == null && attrName.equals(SAML_IDP_METADATA_USERNAME_ATTR_NAME)) { - userName = credential.getAttributeAsString(attrName); - log.debug(userName); - } - if (attrName.equals(SAML_IDP_METADATA_ROLE_ATTR_NAME)) { - List attributeValues = cAttribute.getAttributeValues(); - if (!attributeValues.isEmpty()) { - for (XMLObject attributeValueXml : attributeValues) { - userRoles.add(getAttributeValue(attributeValueXml)); - } - } - } - } - - try { - - if (email == null) { - - String errorMsg = "loadUserBySAML(), can not instantiate PortalUserDetails from SAML assertion." - + " Expected 'email' attribute was not found or has no values. "; - log.error(errorMsg); - throw new Exception(errorMsg); - } - - log.debug("loadUserBySAML(), IDP successfully authenticated user, username: " + userName +", email: " + email); - - //add granted authorities: - if (userRoles.size() > 0) userDetailsObj = new PortalUserDetails(email, - AuthorityUtils.createAuthorityList(userRoles.toArray(new String[userRoles.size()]))); - else - userDetailsObj = new PortalUserDetails(email, AuthorityUtils.createAuthorityList(new String[0])); - userDetailsObj.setEmail(email); - userDetailsObj.setUserName(userName); - return userDetailsObj; - } - catch (Exception e) { - throw new RuntimeException("Error occurs during authentication: " + e.getMessage()); - } - } -} - diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/live/LiveConnectionFactory.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/live/LiveConnectionFactory.java deleted file mode 100644 index 0b40d37d9ef..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/live/LiveConnectionFactory.java +++ /dev/null @@ -1,28 +0,0 @@ -package org.cbioportal.security.spring.authentication.live; - -import org.springframework.social.connect.UserProfile; -import org.springframework.social.connect.support.OAuth2ConnectionFactory; -import org.springframework.social.live.api.Live; -import org.springframework.social.live.connect.LiveAdapter; -import org.springframework.social.live.connect.LiveServiceProvider; -import org.springframework.social.oauth2.AccessGrant; - -public class LiveConnectionFactory extends OAuth2ConnectionFactory { - - public LiveConnectionFactory(String clientId, String clientSecret) { - super("live", new LiveServiceProvider(clientId, clientSecret), new LiveAdapter()); - } - - /* - * modification of original factory class to support using the user's email - * address as his/her id original method utilized the google id, a numeric - * string - */ - @Override - protected String extractProviderUserId(AccessGrant accessGrant) { - Live live = ((LiveServiceProvider) getServiceProvider()).getApi(accessGrant.getAccessToken()); - UserProfile userProfile = getApiAdapter().fetchUserProfile(live); - return userProfile.getEmail(); - } - -} \ No newline at end of file diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/openID/PortalUserDetailsService.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/openID/PortalUserDetailsService.java deleted file mode 100644 index bd668a0f005..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/openID/PortalUserDetailsService.java +++ /dev/null @@ -1,191 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.openID; - -// imports -import org.cbioportal.model.User; -import org.cbioportal.model.UserAuthorities; -import org.cbioportal.persistence.SecurityRepository; -import org.cbioportal.security.spring.authentication.PortalUserDetails; - -import org.springframework.beans.factory.annotation.Autowired; - -import org.springframework.security.openid.*; - -import org.springframework.security.core.userdetails.*; -import org.springframework.security.core.GrantedAuthority; -import org.springframework.security.core.authority.AuthorityUtils; - -import org.springframework.stereotype.Service; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.List; - -/** - * Custom UserDetailsService which authenticates - * OpenID user against backend cgds database. - * - * @author Benjamin Gross - */ -@Service -public class PortalUserDetailsService - implements UserDetailsService, AuthenticationUserDetailsService { - - // logger - private static final Logger log = LoggerFactory.getLogger(PortalUserDetailsService.class); - - @Autowired - private SecurityRepository securityRepository; - - /** - * Constructor. - * - */ - public PortalUserDetailsService() { - } - - - /** - * Implementation of {@code UserDetailsService}. - * We only need this to satisfy the {@code RememberMeServices} requirements. - */ - public UserDetails loadUserByUsername(String id) throws UsernameNotFoundException { - throw new UnsupportedOperationException(); - } - - /** - * Implementation of {@code AuthenticationUserDetailsService} - * which allows full access to the submitted {@code Authentication} object. - * Used by the OpenIDAuthenticationProvider. - */ - public UserDetails loadUserDetails(OpenIDAuthenticationToken token) throws UsernameNotFoundException { - - // what we return - PortalUserDetails toReturn = null; - - // get open id - String id = token.getIdentityUrl(); - id = id.toLowerCase(); - - // grab other open id attributes - String email = null; - String firstName = null; - String lastName = null; - String fullName = null; - - // myopenid does not return attributes in the token - if (id.indexOf("myopenid") != -1) { - email = id; - fullName = id; - } - else { - try { - List attributes = token.getAttributes(); - for (OpenIDAttribute attribute : attributes) { - if (attribute.getName().equals("email")) { - email = attribute.getValues().get(0); - email = email.toLowerCase(); - } - if (attribute.getName().equals("firstname")) { - firstName = attribute.getValues().get(0); - } - if (attribute.getName().equals("lastname")) { - lastName = attribute.getValues().get(0); - } - if (attribute.getName().equals("fullname")) { - fullName = attribute.getValues().get(0); - } - } - if (fullName == null) { - StringBuilder fullNameBldr = new StringBuilder(); - if (firstName != null) { - fullNameBldr.append(firstName); - } - if (lastName != null) { - fullNameBldr.append(" ").append(lastName); - } - fullName = fullNameBldr.toString(); - } - } - catch (NullPointerException ex) { - log.warn("Attribute exchange failed using OpenID "+token.getIdentityUrl()+" for everything"); - fullName = email = token.getIdentityUrl(); - } - } - - // check if this user exists in our backend db - try { - if (log.isDebugEnabled()) { - log.debug("loadUserDetails(), attempting to fetch portal user, email: " + email); - } - User user = securityRepository.getPortalUser(email); - if (user != null && user.isEnabled()) { - if (log.isDebugEnabled()) { - log.debug("loadUserDetails(), attempting to fetch portal user authorities, email: " + email); - } - UserAuthorities authorities = securityRepository.getPortalUserAuthorities(email); - if (authorities != null) { - List grantedAuthorities = - AuthorityUtils.createAuthorityList(authorities.getAuthorities().toArray(new String[authorities.getAuthorities().size()])); - toReturn = new PortalUserDetails(id, grantedAuthorities); - toReturn.setEmail(email); - toReturn.setUserName(fullName); - } - } - } - catch (Exception e) { - if (log.isDebugEnabled()) { - log.debug(e.getMessage()); - } - else { - e.printStackTrace(); - } - } - - // outta here - if (toReturn == null) { - if (log.isDebugEnabled()) { - log.debug("loadUserDetails(), user and/or user authorities is null, email: " + email); - } - throw new UsernameNotFoundException("Error: Unknown user or account disabled"); - } - else { - if (log.isDebugEnabled()) { - log.debug("loadUserDetails(), successfully authenticated user, email: " + email); - } - return toReturn; - } - } -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/saml/BasicRestfulAuthenticationSuccessHandler.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/saml/BasicRestfulAuthenticationSuccessHandler.java deleted file mode 100644 index fa191d2a3e1..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/saml/BasicRestfulAuthenticationSuccessHandler.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Copyright (c) 2016-2021 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.saml; - -import java.io.IOException; - -import javax.servlet.http.*; -import javax.servlet.ServletException; - -import org.springframework.security.web.*; -import org.springframework.security.core.Authentication; -import org.springframework.security.web.authentication.AuthenticationSuccessHandler; - -public class BasicRestfulAuthenticationSuccessHandler implements AuthenticationSuccessHandler { - private RedirectStrategy redirectStrategy = new DefaultRedirectStrategy(); - - @Override - public void onAuthenticationSuccess(HttpServletRequest request, - HttpServletResponse response, Authentication authentication) throws IOException, ServletException { - HttpSession session = request.getSession(); - session.setAttribute("user_id", request.getParameter("user_id")); - redirectStrategy.sendRedirect(request, response, "/restful_login.jsp"); - } - - public RedirectStrategy getRedirectStrategy() { - return redirectStrategy; - } - - public void setRedirectStrategy(RedirectStrategy redirectStrategy) { - this.redirectStrategy = redirectStrategy; - } -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/saml/SAMLBootstrapRSA256.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/saml/SAMLBootstrapRSA256.java deleted file mode 100644 index d3184e39949..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/saml/SAMLBootstrapRSA256.java +++ /dev/null @@ -1,18 +0,0 @@ -package org.cbioportal.security.spring.authentication.saml; - -import org.opensaml.Configuration; -import org.opensaml.xml.security.BasicSecurityConfiguration; -import org.opensaml.xml.signature.SignatureConstants; -import org.springframework.beans.BeansException; -import org.springframework.beans.factory.config.ConfigurableListableBeanFactory; -import org.springframework.security.saml.SAMLBootstrap; - -public class SAMLBootstrapRSA256 extends SAMLBootstrap { - @Override - public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException { - super.postProcessBeanFactory(beanFactory); - BasicSecurityConfiguration config = (BasicSecurityConfiguration) Configuration.getGlobalSecurityConfiguration(); - config.registerSignatureAlgorithmURI("RSA", SignatureConstants.ALGO_ID_SIGNATURE_RSA_SHA256); - config.setSignatureReferenceDigestMethod(SignatureConstants.ALGO_ID_DIGEST_SHA256); - } -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/saml/SAMLUserDetailsServiceImpl.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/saml/SAMLUserDetailsServiceImpl.java deleted file mode 100644 index 79d8f37d9d3..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/saml/SAMLUserDetailsServiceImpl.java +++ /dev/null @@ -1,162 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.saml; - -import java.util.List; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; - -import org.cbioportal.model.User; -import org.cbioportal.model.UserAuthorities; -import org.cbioportal.persistence.SecurityRepository; -import org.cbioportal.security.spring.authentication.PortalUserDetails; - -import org.opensaml.saml2.core.Attribute; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.dao.EmptyResultDataAccessException; -import org.springframework.security.core.GrantedAuthority; -import org.springframework.security.core.authority.AuthorityUtils; -import org.springframework.security.core.userdetails.UsernameNotFoundException; -import org.springframework.security.saml.SAMLCredential; -import org.springframework.security.saml.userdetails.SAMLUserDetailsService; -import org.springframework.stereotype.Service; - -/** - * Custom UserDetailsService which parses SAML messages and checks authorization of - * user against cbioportal's `authorities` configuration. Authentication is done by the SAML IDP. - * - * @author Pieter Lukasse - */ -@Service -public class SAMLUserDetailsServiceImpl implements SAMLUserDetailsService -{ - private static final Log log = LogFactory.getLog(SAMLUserDetailsServiceImpl.class); - - private static String samlIdpMetadataEmailAttributeName; - @Value("${saml.idp.metadata.attribute.email:mail}") - public void setSamlIdpMetadataEmailAttributeName(String property) { this.samlIdpMetadataEmailAttributeName = property; } - - private static String samlIdpMetadataUserNameAttributeName; - @Value("${saml.idp.metadata.attribute.userName:username}") - public void setsamlIdpMetadataUserNameAttributeName(String property) { this.samlIdpMetadataUserNameAttributeName = property; } - - @Autowired - private SecurityRepository securityRepository; - - /** - * Constructor. - */ - public SAMLUserDetailsServiceImpl() { - } - - /** - * Implementation of {@code SAMLUserDetailsService}. Parses user details from given - * SAML credential object. - */ - @Override - public Object loadUserBySAML(SAMLCredential credential) - { - PortalUserDetails toReturn = null; - - String email = null; - String userName = null; - // get userid and name: iterate over attributes searching for "mail" and "displayName": - for (Attribute cAttribute : credential.getAttributes()) { - String attrName = cAttribute.getName(); - log.debug("loadUserBySAML(), parsing attribute: " + cAttribute.getName() + "=" + credential.getAttributeAsString(attrName)); - if (email == null && attrName.equals(samlIdpMetadataEmailAttributeName)) - { - email = credential.getAttributeAsString(attrName); - } - if (userName == null && attrName.equals(samlIdpMetadataUserNameAttributeName)) - { - userName = credential.getAttributeAsString(attrName); - } - } - - //check if this user exists in our DB - try { - //validate parsing: - if (email == null) { - String errorMessage = "loadUserBySAML(), Could not parse the user details from credential message. Expected '" + samlIdpMetadataEmailAttributeName + "' attribute, but attribute was not found. " - + " Previous debug messages show which attributes were found and parsed."; - log.error(errorMessage); - throw new Exception(errorMessage); - } - - log.debug("loadUserBySAML(), IDP successfully authenticated user, username: " + userName +", email: " + email); - log.debug("loadUserBySAML(), now attempting to fetch portal user authorities for user with username: " + userName +", email: " + email); - - //try to find user in DB - User user = securityRepository.getPortalUser(email); - if (user != null && user.isEnabled()) { - log.debug("loadUserBySAML(), user is enabled; attempting to fetch portal user authorities, for user with username: " + userName +", email: " + email); - - UserAuthorities authorities = securityRepository.getPortalUserAuthorities(email); - if (authorities != null) { - List grantedAuthorities = - AuthorityUtils.createAuthorityList(authorities.getAuthorities().toArray(new String[authorities.getAuthorities().size()])); - //add granted authorities: - toReturn = new PortalUserDetails(email, grantedAuthorities); - toReturn.setEmail(email); - toReturn.setUserName(userName); - } - } else if (user == null) { // new user - log.debug("loadUserBySAML(), user authorities is null, for user, with username: " + userName +", email: " + email + ". Depending on property always_show_study_group, " - + "he could still have default access (to PUBLIC studies)"); - toReturn = new PortalUserDetails(email, getInitialEmptyAuthoritiesList()); - toReturn.setEmail(email); - toReturn.setUserName(userName); - } else { - //user WAS found in DB but has been actively disabled: - throw new UsernameNotFoundException("Error: Your user access to cBioPortal has been disabled"); - } - return toReturn; - } - catch (UsernameNotFoundException unnf) { - //throw this exception, so that the user gets redirected to the error HTML page: - throw unnf; - } - catch (Exception e) { - //other (unexpected) errors: just throw (will result in http 500 page with error message): - log.error(e.getMessage()); - e.printStackTrace(); - throw new RuntimeException("Error during authentication parsing: " + e.getMessage()); - } - } - - /** - * Returns an initial empty authorities list. - * - * @return - */ - private List getInitialEmptyAuthoritiesList() - { - return AuthorityUtils.createAuthorityList(new String[0]); - } -} - diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/social/CustomUserDetailsService.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/social/CustomUserDetailsService.java deleted file mode 100644 index 893244de9da..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/social/CustomUserDetailsService.java +++ /dev/null @@ -1,43 +0,0 @@ -package org.cbioportal.security.spring.authentication.social; - -import java.util.ArrayList; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.security.core.GrantedAuthority; -import org.springframework.social.security.SocialUser; -import org.springframework.social.security.SocialUserDetailsService; - -import com.google.common.base.Preconditions; -import com.google.common.base.Strings; -import org.springframework.security.core.userdetails.User; -import org.springframework.security.core.userdetails.UserDetails; -import org.springframework.security.core.userdetails.UserDetailsService; -import org.springframework.security.core.userdetails.UsernameNotFoundException; - -public class CustomUserDetailsService implements SocialUserDetailsService, UserDetailsService { - - private static final Logger LOGGER = LoggerFactory.getLogger(CustomUserDetailsService.class); - - /** - * Loads the username by using the account ID of the user. - * @param userId The account ID of the requested user. - * @return The information of the requested user. - */ - - // TO-DO: remove SocialUserDetails? - - @Override - public org.springframework.social.security.SocialUserDetails loadUserByUserId(String userId) { - Preconditions.checkArgument(!Strings.isNullOrEmpty(userId), "A userid is required"); - LOGGER.debug("Loading user by user id: {}", userId); - - return new SocialUser(userId, "unused", new ArrayList()); - - } - - @Override - public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { - return new User(username, "unused", new ArrayList()); - } -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/social/PortalUserDetailsService.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/social/PortalUserDetailsService.java deleted file mode 100644 index 70d9aa90afe..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/social/PortalUserDetailsService.java +++ /dev/null @@ -1,126 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.social; - -import org.cbioportal.model.User; -import org.cbioportal.model.UserAuthorities; -import org.cbioportal.persistence.SecurityRepository; -import org.cbioportal.security.spring.authentication.PortalUserDetails; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import com.google.common.base.*; - -import org.springframework.beans.factory.annotation.Autowired; - -import org.springframework.security.core.userdetails.*; -import org.springframework.security.core.GrantedAuthority; -import org.springframework.security.core.authority.AuthorityUtils; - -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * Responsible for verifying that a social site user name has been registered in the - * portal database For registered users, an instance of GoogleplusUserDetails is - * completed and returned. Null is returned for non-registered users - * - * Implementation based on code in OpenIDUserDetailsService - * - * @author criscuof - */ -public class PortalUserDetailsService implements UserDetailsService { - - private static final Logger log = LoggerFactory.getLogger(PortalUserDetailsService.class); - - @Autowired - private SecurityRepository securityRepository; - - /** - * Constructor. - * - */ - public PortalUserDetailsService() { - } - - @Override - public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { - Preconditions.checkArgument(!Strings.isNullOrEmpty(username), "A username is required"); - // set the username into the global state so other components can find out who - // logged in or tried to log in most recently - if (log.isDebugEnabled()) { - log.debug("loadUserByUsername(), attempting to fetch portal user, email: " + username); - } - PortalUserDetails toReturn = null; - User user = null; - try { - user = securityRepository.getPortalUser(username); - } catch (Exception e ){ - log.debug("User " +username +" was not found in the cbio users table"); - log.debug("Error:" + e); - } - if (user != null && user.isEnabled()) { - if (log.isDebugEnabled()) { - log.debug("loadUserByUsername(), attempting to fetch portal user authorities, username: " + username); - } - UserAuthorities authorities = securityRepository.getPortalUserAuthorities(username); - if (authorities != null) { - List grantedAuthorities - = AuthorityUtils.createAuthorityList( - authorities.getAuthorities().toArray(new String[authorities.getAuthorities().size()])); - toReturn = new PortalUserDetails(username, grantedAuthorities); - toReturn.setEmail(user.getEmail()); - toReturn.setUserName(user.getName()); - - - } - } - - // outta here - if (toReturn == null) { - if (log.isDebugEnabled()) { - log.debug("loadUserByUsername(), user and/or user authorities is null, user name: " +username); - } - // use the Exception message to attache the username to the request object - throw new UsernameNotFoundException(username); - } - else { - if (log.isDebugEnabled()) { - log.debug("loadUserByUsername(), successfully authenticated user, user name: " + username); - } - return toReturn; - } - } -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/social/SocialConnectionSignUp.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/social/SocialConnectionSignUp.java deleted file mode 100644 index 598260be248..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/social/SocialConnectionSignUp.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.social; - -import org.springframework.social.connect.Connection; -import org.springframework.social.connect.ConnectionSignUp; - -import com.google.common.base.Preconditions; -import com.google.common.base.Strings; - -/** - * provide an implementation of a ConnectionSignup that facilitates finding a user id in - * the user connection repository - * @author criscuof - * - */ -public final class SocialConnectionSignUp implements ConnectionSignUp { - - /* (non-Javadoc) - * @see org.springframework.social.connect.ConnectionSignUp#execute(org.springframework.social.connect.Connection) - */ - @Override - public String execute(Connection connection) { - Preconditions.checkArgument(null!=connection, "A Connection property is required"); - Preconditions.checkArgument(null != connection.getKey(), "The Connection must have a key"); - Preconditions.checkArgument(!Strings.isNullOrEmpty(connection.getKey().getProviderUserId()), "The Connection key must have a provider user id"); - return connection.getKey().getProviderUserId(); - - } - -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationFilter.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationFilter.java deleted file mode 100644 index 7820e0c3284..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationFilter.java +++ /dev/null @@ -1,127 +0,0 @@ -/* - * Copyright (c) 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token; - -import static com.google.common.net.HttpHeaders.AUTHORIZATION; - -import java.io.IOException; - -import javax.servlet.FilterChain; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.cbioportal.service.DataAccessTokenService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.security.authentication.BadCredentialsException; -import org.springframework.security.core.Authentication; -import org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter; -import org.springframework.stereotype.Component; -import org.springframework.util.StringUtils; - -/** - * - * @author Manda Wilson - */ -@Component -public class TokenAuthenticationFilter extends AbstractAuthenticationProcessingFilter { - - @Autowired - private DataAccessTokenService tokenService; - - private static final String BEARER = "Bearer"; - - private static final Logger LOG = LoggerFactory.getLogger(TokenAuthenticationFilter.class); - - public TokenAuthenticationFilter() { - // allow any request to contain an authorization header - super("/**"); - } - - @Override - protected boolean requiresAuthentication(HttpServletRequest request, HttpServletResponse response) { - // only required if we do see an authorization header - String param = request.getHeader(AUTHORIZATION); - if (param == null) { - LOG.debug("attemptAuthentication(), authorization header is null, continue on to other security filters"); - return false; - } - return true; - } - - @Override - public Authentication attemptAuthentication ( - final HttpServletRequest request, - final HttpServletResponse response) { - - String token = extractHeaderToken(request); - - if (token == null) { - LOG.error("No token was found in request header."); - throw new BadCredentialsException("No token was found in request header."); - } - - Authentication auth = tokenService.createAuthenticationRequest(token); - - return getAuthenticationManager().authenticate(auth); - } - - @Override - protected void successfulAuthentication ( - final HttpServletRequest request, - final HttpServletResponse response, - final FilterChain chain, - final Authentication authResult) throws IOException, ServletException { - super.successfulAuthentication(request, response, chain, authResult); - chain.doFilter(request, response); - } - - /** - * Extract the bearer token from a header. - * - * @param request - * @return The token, or null if no authorization header was supplied - */ - protected String extractHeaderToken(HttpServletRequest request) { - String authorizationHeader = request.getHeader(AUTHORIZATION); - if (!StringUtils.isEmpty(authorizationHeader)) { - if ((authorizationHeader.toLowerCase().startsWith(BEARER.toLowerCase()))) { - return authorizationHeader.substring(BEARER.length()).trim(); - } - } - - return null; - } -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationSuccessHandler.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationSuccessHandler.java deleted file mode 100644 index f2941a8dd33..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationSuccessHandler.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.springframework.security.core.Authentication; -import org.springframework.security.web.authentication.AuthenticationSuccessHandler; - -public class TokenAuthenticationSuccessHandler implements AuthenticationSuccessHandler { - - @Override - public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) { - // We do not need to do anything extra on REST authentication success, because there is no page to redirect to - } - -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/TokenUserDetailsAuthenticationProvider.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/TokenUserDetailsAuthenticationProvider.java deleted file mode 100644 index c320f93d508..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/TokenUserDetailsAuthenticationProvider.java +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright (c) 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.cbioportal.security.spring.authentication.social.PortalUserDetailsService; -import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; -import org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider; -import org.springframework.security.core.AuthenticationException; -import org.springframework.security.core.userdetails.UserDetails; - -/** - * - * @author Manda Wilson - */ -public class TokenUserDetailsAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider { - - private static final Logger LOG = LoggerFactory.getLogger(TokenUserDetailsAuthenticationProvider.class); - - private PortalUserDetailsService userDetailsService; - - public TokenUserDetailsAuthenticationProvider(PortalUserDetailsService userDetailsService) { - this.userDetailsService = userDetailsService; - } - - @Override - public boolean supports(Class authentication) { - return authentication.isAssignableFrom(UsernamePasswordAuthenticationToken.class); - } - - @Override - protected void additionalAuthenticationChecks(UserDetails userDetails, UsernamePasswordAuthenticationToken authentication) - throws AuthenticationException { - } - - @Override - protected UserDetails retrieveUser(String username, UsernamePasswordAuthenticationToken authentication) - throws AuthenticationException { - LOG.debug("retrieveUser(), username - " + username); - return this.userDetailsService.loadUserByUsername(username); - } - -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/config/DataAccessTokenConfig.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/config/DataAccessTokenConfig.java deleted file mode 100644 index e984a261276..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/config/DataAccessTokenConfig.java +++ /dev/null @@ -1,68 +0,0 @@ -package org.cbioportal.security.spring.authentication.token.config; - -import org.cbioportal.security.spring.authentication.social.PortalUserDetailsService; -import org.cbioportal.security.spring.authentication.token.TokenUserDetailsAuthenticationProvider; -import org.cbioportal.security.spring.authentication.token.oauth2.OAuth2DataAccessTokenServiceImpl; -import org.cbioportal.security.spring.authentication.token.oauth2.OAuth2TokenAuthenticationProvider; -import org.cbioportal.service.impl.JwtDataAccessTokenServiceImpl; -import org.cbioportal.service.impl.UnauthDataAccessTokenServiceImpl; -import org.cbioportal.service.impl.UuidDataAccessTokenServiceImpl; -import org.cbioportal.utils.config.annotation.ConditionalOnProperty; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.PropertySource; -import org.springframework.context.annotation.PropertySources; - -@Configuration -@PropertySources({ - @PropertySource(value="classpath:portal.properties", ignoreResourceNotFound=true), - @PropertySource(value="file:///${PORTAL_HOME}/portal.properties", ignoreResourceNotFound=true) -}) -public class DataAccessTokenConfig { - - // provider - @Bean("tokenAuthenticationProvider") - @ConditionalOnProperty(name = "dat.method", havingValue = "oauth2") - public OAuth2TokenAuthenticationProvider oauth2TokenAuthenticationProvider() { - return new OAuth2TokenAuthenticationProvider(); - } - - @Bean("tokenAuthenticationProvider") - @ConditionalOnProperty(name = "dat.method", havingValue = "oauth2", isNot = true) - public TokenUserDetailsAuthenticationProvider userDetailsTokenAuthenticationProvider() { - return new TokenUserDetailsAuthenticationProvider(tokenUserDetailsService()); - } - - @Bean - @ConditionalOnProperty(name = "dat.method", havingValue = "oauth2", isNot = true) - public PortalUserDetailsService tokenUserDetailsService() { - return new PortalUserDetailsService(); - } - - - // service - @Bean("dataAccessTokenService") - @ConditionalOnProperty(name = "dat.method", havingValue = "oauth2") - public OAuth2DataAccessTokenServiceImpl oauth2DataAccessTokenService() { - return new OAuth2DataAccessTokenServiceImpl(); - } - - @Bean("dataAccessTokenService") - @ConditionalOnProperty(name = "dat.method", havingValue = "none", matchIfMissing = true) - public UnauthDataAccessTokenServiceImpl unauthDataAccessTokenService() { - return new UnauthDataAccessTokenServiceImpl(); - } - - @Bean("dataAccessTokenService") - @ConditionalOnProperty(name = "dat.method", havingValue = "uuid") - public UuidDataAccessTokenServiceImpl uuidDataAccessTokenService() { - return new UuidDataAccessTokenServiceImpl(); - } - - @Bean("dataAccessTokenService") - @ConditionalOnProperty(name = "dat.method", havingValue = "jwt") - public JwtDataAccessTokenServiceImpl jwtDataAccessTokenService() { - return new JwtDataAccessTokenServiceImpl(); - } - -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/JwtTokenVerifierBuilder.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/JwtTokenVerifierBuilder.java deleted file mode 100644 index 87a3745fc6e..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/JwtTokenVerifierBuilder.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ -package org.cbioportal.security.spring.authentication.token.oauth2; - -import java.net.MalformedURLException; -import java.net.URL; -import java.security.interfaces.RSAPublicKey; - -import com.auth0.jwk.Jwk; -import com.auth0.jwk.JwkException; -import com.auth0.jwk.JwkProvider; -import com.auth0.jwk.UrlJwkProvider; - -import org.springframework.beans.factory.annotation.Value; -import org.springframework.security.jwt.crypto.sign.RsaVerifier; -import org.springframework.stereotype.Component; - -// This bean is defined here so -// that it can be stubbed in tests. -@Component -public class JwtTokenVerifierBuilder { - - @Value("${dat.oauth2.jwkUrl:}") - private String jwkUrl; - - public JwtTokenVerifierBuilder() {} - - public RsaVerifier build(final String kid) throws MalformedURLException, JwkException { - final JwkProvider provider = new UrlJwkProvider(new URL(jwkUrl)); - final Jwk jwk = provider.get(kid); - final RSAPublicKey publicKey = (RSAPublicKey) jwk.getPublicKey(); - return new RsaVerifier(publicKey, "SHA512withRSA"); - } - -} \ No newline at end of file diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2BearerAuthenticationToken.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2BearerAuthenticationToken.java deleted file mode 100644 index d65f4d82537..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2BearerAuthenticationToken.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import java.util.Collection; -import java.util.HashSet; - -import org.springframework.security.authentication.AbstractAuthenticationToken; -import org.springframework.security.core.GrantedAuthority; - -/** - * OAuth2BearerAuthenticationToken - */ -public class OAuth2BearerAuthenticationToken extends AbstractAuthenticationToken { - - private static final long serialVersionUID = 1L; - private final String accessToken; - private final Object principal; - - public OAuth2BearerAuthenticationToken(String accessToken) { - super(new HashSet<>()); - this.principal = null; - this.accessToken = accessToken; - } - - public OAuth2BearerAuthenticationToken(Object principal, String accessToken) { - super(new HashSet<>()); - this.accessToken = accessToken; - this.principal = principal; - } - - public OAuth2BearerAuthenticationToken(Object principal, Collection authorities) { - super(authorities); - accessToken = null; - this.principal = principal; - setAuthenticated(true); - } - - @Override - public Object getCredentials() { - return accessToken; - } - - @Override - public Object getPrincipal() { - return principal; - } - - -} \ No newline at end of file diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenAuthenticationProvider.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenAuthenticationProvider.java deleted file mode 100644 index 2ee9f8fa440..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenAuthenticationProvider.java +++ /dev/null @@ -1,130 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import org.codehaus.jackson.JsonNode; -import org.codehaus.jackson.map.ObjectMapper; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.security.authentication.AuthenticationProvider; -import org.springframework.security.authentication.BadCredentialsException; -import org.springframework.security.core.Authentication; -import org.springframework.security.core.AuthenticationException; -import org.springframework.security.core.GrantedAuthority; -import org.springframework.security.core.authority.SimpleGrantedAuthority; -import org.springframework.security.jwt.Jwt; -import org.springframework.security.jwt.JwtHelper; - -import java.io.IOException; -import java.util.Set; -import java.util.stream.Collectors; -import java.util.stream.StreamSupport; - -public class OAuth2TokenAuthenticationProvider implements AuthenticationProvider { - - @Value("${dat.oauth2.jwtRolesPath:resource_access::cbioportal::roles}") - private String jwtRolesPath; - - @Autowired - OAuth2TokenRefreshRestTemplate tokenRefreshRestTemplate; - - @Override - public boolean supports(Class authentication) { - return authentication.isAssignableFrom(OAuth2BearerAuthenticationToken.class); - } - - @Override - public Authentication authenticate(Authentication authentication) throws AuthenticationException { - - String offlineToken = (String) ((OAuth2BearerAuthenticationToken) authentication).getCredentials(); - - // Note: validity of the offline token is not checked in cBioPortal - // backend, is handeled by the OAuth2 authentication server. - - // request an access token from the OAuth2 identity provider - final String accessToken = tokenRefreshRestTemplate.getAccessToken(offlineToken); - - Set authorities = extractAuthorities(accessToken); - String username = getUsername(accessToken); - - return new OAuth2BearerAuthenticationToken(username, authorities); - } - - // Read roles/authorities from JWT token. - private Set extractAuthorities(final String token) throws BadCredentialsException { - try { - final Jwt tokenDecoded = JwtHelper.decode(token); - final String claims = tokenDecoded.getClaims(); - JsonNode claimsMap = new ObjectMapper().readTree(claims); - JsonNode rolesArrayCursor = claimsMap; - for (String keyName: jwtRolesPath.split("::")) { - if (rolesArrayCursor.has(keyName)) { - rolesArrayCursor = rolesArrayCursor.get(keyName); - } else { - throw new BadCredentialsException("Cannot find user roles in JWT access token with path '" - + jwtRolesPath + "''. Please ensure the dat.oauth2.jwtRolesPath property is correct."); - } - } - final JsonNode rolesArrayPointer = rolesArrayCursor; - final Iterable roles = () -> rolesArrayPointer.getElements(); - - return StreamSupport.stream(roles.spliterator(), false) - .map(role -> role.toString().replaceAll("\"", "")) - .map(role -> new SimpleGrantedAuthority(role)) - .collect(Collectors.toSet()); - - } catch (Exception e) { - throw new BadCredentialsException("Authorities could not be extracted from access token."); - } - } - - private String getUsername(final String token) { - - final Jwt tokenDecoded = JwtHelper.decode(token); - - final String claims = tokenDecoded.getClaims(); - JsonNode claimsMap; - try { - claimsMap = new ObjectMapper().readTree(claims); - } catch (IOException e) { - throw new BadCredentialsException("User name could not be found in access token."); - } - - if (! claimsMap.has("sub")) { - throw new BadCredentialsException("User name could not be found in access token."); - } - - return claimsMap.get("sub").asText(); - } - -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenDataAccessConfiguration.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenDataAccessConfiguration.java deleted file mode 100644 index eae6acd0f84..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenDataAccessConfiguration.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.web.client.RestTemplate; - -@Configuration -public class OAuth2TokenDataAccessConfiguration { - - @Bean - // This bean is defined here so - // that it can be stubbed in tests. - public RestTemplate restTemplate() { - return new RestTemplate(); - } - -} \ No newline at end of file diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenRefreshRestTemplate.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenRefreshRestTemplate.java deleted file mode 100644 index 5c9e1347381..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenRefreshRestTemplate.java +++ /dev/null @@ -1,92 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import com.fasterxml.jackson.databind.ObjectMapper; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.http.HttpEntity; -import org.springframework.http.HttpHeaders; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.authentication.BadCredentialsException; -import org.springframework.stereotype.Component; -import org.springframework.util.LinkedMultiValueMap; -import org.springframework.util.MultiValueMap; -import org.springframework.web.client.RestTemplate; - -@Component -public class OAuth2TokenRefreshRestTemplate { - - private final Logger logger = LoggerFactory.getLogger(getClass()); - - @Value("${dat.oauth2.clientId:}") - private String clientId; - - @Value("${dat.oauth2.clientSecret:}") - private String clientSecret; - - @Value("${dat.oauth2.accessTokenUri:}") - private String accessTokenUri; - - @Autowired - private RestTemplate template; - - public String getAccessToken(String offline_token) throws BadCredentialsException { - HttpHeaders headers = new HttpHeaders(); - headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED); - - MultiValueMap map = new LinkedMultiValueMap<>(); - map.add("grant_type", "refresh_token"); - map.add("client_id", clientId); - map.add("client_secret", clientSecret); - map.add("refresh_token", offline_token); - - HttpEntity> request = new HttpEntity<>(map, headers); - - ResponseEntity response = null; - try { - response = template.postForEntity(accessTokenUri, request, String.class); - String accessToken = new ObjectMapper().readTree(response.getBody()).get("access_token").asText(); - logger.debug("Recieved access token from authentication server:\n" + accessToken); - return accessToken; - } catch (Exception e) { - logger.error("Authentication server did not return an access token. Server response:\n" + response); - throw new BadCredentialsException("Authentication server did not return an access token."); - } - - } - -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/sessionservice/RestAuthenticationEntryPoint.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/sessionservice/RestAuthenticationEntryPoint.java deleted file mode 100644 index 856e4de23d8..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/sessionservice/RestAuthenticationEntryPoint.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.sessionservice; - -import java.io.IOException; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.springframework.security.core.AuthenticationException; -import org.springframework.security.web.AuthenticationEntryPoint; -import org.springframework.stereotype.Component; - -@Component -public class RestAuthenticationEntryPoint implements AuthenticationEntryPoint{ - - @Override - public void commence( HttpServletRequest request, HttpServletResponse response, - AuthenticationException authException ) throws IOException{ - response.sendError( HttpServletResponse.SC_UNAUTHORIZED, "Unauthorized" ); - } -} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/sessionservice/SessionServiceSecurity.java b/security/security-spring/src/main/java/org/cbioportal/security/spring/sessionservice/SessionServiceSecurity.java deleted file mode 100644 index 759bd7945f4..00000000000 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/sessionservice/SessionServiceSecurity.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ -package org.cbioportal.security.spring.sessionservice; - -import javax.servlet.http.HttpServletRequest; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -public class SessionServiceSecurity { - - private static String NUM_SESSION_SERVICE_REQ = "count_session_requests"; - private static int MAX_SESSION_SERVICE_REQ = 1000; - - private static Logger LOG = LoggerFactory.getLogger(SessionServiceSecurity.class); - - public boolean checkRead(HttpServletRequest request) { - return request.getSession(false) != null; - } - - public boolean checkWrite(HttpServletRequest request) { - if (request.getSession(false) == null) { - return false; - } - - Integer countRequests = (Integer) request.getSession().getAttribute(NUM_SESSION_SERVICE_REQ); - int count = 0; - if (countRequests == null) { - count = 1; - } else { - count = countRequests.intValue(); - count += 1; - } - LOG.debug("SessionServiceSecurity.check() -- " + count + - " session service API requests made by this session (MAX_SESSION_SERVICE_REQ = " + - MAX_SESSION_SERVICE_REQ + ")"); - request.getSession().setAttribute(NUM_SESSION_SERVICE_REQ, Integer.valueOf(count)); - if (MAX_SESSION_SERVICE_REQ < count) { - LOG.warn("SessionServiceSecurity.check() -- too many requests (" + count + - ") made by this session to the session service API (MAX_SESSION_SERVICE_REQ = " + - MAX_SESSION_SERVICE_REQ + ")"); - return false; - } - return true; - } -} diff --git a/security/security-spring/src/main/resources/applicationContext-security.xml b/security/security-spring/src/main/resources/applicationContext-security.xml deleted file mode 100644 index ba581665c25..00000000000 --- a/security/security-spring/src/main/resources/applicationContext-security.xml +++ /dev/null @@ -1,1026 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - classpath:portal.properties - file:///#{systemEnvironment['PORTAL_HOME']}/portal.properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${saml.idp.metadata.location} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${saml.idp.metadata.location} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - file:///${PORTAL_HOME}/portal.properties - classpath:portal.properties - classpath:maven.properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationFilterTest.java b/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationFilterTest.java deleted file mode 100644 index c343c47a018..00000000000 --- a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationFilterTest.java +++ /dev/null @@ -1,122 +0,0 @@ -/* - * Copyright (c) 2018-2019 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.cbioportal.service.util.JwtUtils; -import org.junit.Assert; -import org.junit.runner.RunWith; -import org.junit.Test; -import org.mockito.ArgumentMatchers; -import org.mockito.Mockito; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.security.authentication.BadCredentialsException; -import org.springframework.security.core.Authentication; -import org.springframework.security.core.userdetails.UserDetails; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringRunner; -import org.springframework.test.context.TestPropertySource; - -@TestPropertySource( - properties = { "dat.jwt.secret_key = +NbopXzb/AIQNrVEGzxzP5CF42e5drvrXTQot3gfW/s=", - "dat.ttl_seconds = 60", // this will be the default expiration for tokens - "dat.method = jwt" - }, - inheritLocations = false -) -@ContextConfiguration(classes=TokenAuthenticationFilterTestConfiguration.class) -@RunWith(SpringRunner.class) -public class TokenAuthenticationFilterTest { - - @Autowired - private JwtUtils jwtUtils; - - @Autowired - private HttpServletRequest request; - - @Autowired - private HttpServletResponse response; - - @Autowired - private TokenAuthenticationFilter tokenAuthenticationFilter; - - private static final int TEST_TOKEN_EXPIRATION_SECONDS = 1; - - private static final Logger LOG = LoggerFactory.getLogger(TokenAuthenticationFilterTest.class); - - // TODO: test requiresValidation() function maybe - - @Test - public void testAttemptAuthentication_success() { - String token = jwtUtils.createToken(TokenAuthenticationFilterTestConfiguration.TEST_SUBJECT).getToken(); - LOG.debug("testAttemptAuthentication_success() token = " + token); - Mockito.reset(request); - Mockito.when(request.getHeader(ArgumentMatchers.anyString())).thenReturn("Bearer " + token); - // response object is autowired above - Authentication authentication = tokenAuthenticationFilter.attemptAuthentication(request, response); - UserDetails userDetails = (UserDetails) authentication.getPrincipal(); - // userDetails is mocked and hard coded to return TokenAuthenticationFilterTestConfiguration.TEST_SUBJECT - // but we will only get TokenAuthenticationFilterTestConfiguration.TEST_SUBJECT if the token is valid and - // the authority provider (not mocked) successfully authenticated - // if the token is invalid or the authentication provider fails then exceptions are thrown - if (userDetails == null || userDetails.getUsername() == null || !userDetails.getUsername().equalsIgnoreCase(TokenAuthenticationFilterTestConfiguration.TEST_SUBJECT)) { - Assert.fail("principal username returned by authentication filter (" + userDetails == null ? "null" : userDetails.getUsername() + ") does not match token user : (" + TokenAuthenticationFilterTestConfiguration.TEST_SUBJECT +")"); - } - Mockito.reset(request); - } - - @Test(expected = BadCredentialsException.class) - public void testAttemptAuthentication_nullToken() { - Mockito.reset(request); - Mockito.when(request.getHeader(ArgumentMatchers.anyString())).thenReturn(null); - // response object is autowired above - tokenAuthenticationFilter.attemptAuthentication(request, response); - // make sure we call Mockito.reset(request) in other methods - } - - @Test(expected = BadCredentialsException.class) - public void testAttemptAuthentication_expiredToken() throws InterruptedException { - String token = jwtUtils.createToken(TokenAuthenticationFilterTestConfiguration.TEST_SUBJECT, TEST_TOKEN_EXPIRATION_SECONDS).getToken(); - LOG.debug("testAttemptAuthentication_expiredToken() token = " + token); - Mockito.reset(request); - Mockito.when(request.getHeader(ArgumentMatchers.anyString())).thenReturn("Bearer " + token); - Thread.sleep((TEST_TOKEN_EXPIRATION_SECONDS * 1000L) + 10L); // NOTE: sleep time must be adequate to allow created token to expire - // response object is autowired above - tokenAuthenticationFilter.attemptAuthentication(request, response); - // make sure we call Mockito.reset(request) in other methods - } - -} diff --git a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationFilterTestConfiguration.java b/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationFilterTestConfiguration.java deleted file mode 100644 index eb75a7663bb..00000000000 --- a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/TokenAuthenticationFilterTestConfiguration.java +++ /dev/null @@ -1,115 +0,0 @@ -/* - * Copyright (c) 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * Copyright 2002-2018 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token; - -import org.cbioportal.security.spring.authentication.social.PortalUserDetailsService; -import org.cbioportal.service.DataAccessTokenService; -import org.cbioportal.service.impl.JwtDataAccessTokenServiceImpl; -import org.cbioportal.service.util.JwtUtils; -import org.mockito.ArgumentMatchers; -import org.mockito.Mockito; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.security.authentication.AuthenticationProvider; -import org.springframework.security.authentication.ProviderManager; -import org.springframework.security.core.userdetails.UserDetails; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.util.ArrayList; -import java.util.List; - -@Configuration -public class TokenAuthenticationFilterTestConfiguration { - - public static final String TEST_SUBJECT = "testSubject"; - - @Bean ProviderManager authenticationManager() { - List authenticationProviderList = new ArrayList(); - PortalUserDetailsService userDetailsService = Mockito.mock(PortalUserDetailsService.class); - UserDetails userDetails = Mockito.mock(UserDetails.class); - // See: https://github.com/spring-projects/spring-security/blob/master/core/src/main/java/org/springframework/security/authentication/dao/AbstractUserDetailsAuthenticationProvider.java#L350 - Mockito.when(userDetails.isAccountNonLocked()).thenReturn(true); - Mockito.when(userDetails.isEnabled()).thenReturn(true); - Mockito.when(userDetails.isAccountNonExpired()).thenReturn(true); - Mockito.when(userDetails.isCredentialsNonExpired()).thenReturn(true); - Mockito.when(userDetails.getUsername()).thenReturn(TEST_SUBJECT); - Mockito.when(userDetailsService.loadUserByUsername(ArgumentMatchers.anyString())).thenReturn(userDetails); - TokenUserDetailsAuthenticationProvider authenticationProvider = new TokenUserDetailsAuthenticationProvider(userDetailsService); - authenticationProviderList.add(authenticationProvider); - return new ProviderManager(authenticationProviderList); - } - - @Bean - public TokenAuthenticationFilter tokenAuthenticationFilter() { - TokenAuthenticationFilter filter = new TokenAuthenticationFilter(); - filter.setAuthenticationManager(authenticationManager()); - return filter; - } - - @Bean - public DataAccessTokenService tokenService() { - return new JwtDataAccessTokenServiceImpl(); - } - - @Bean - public JwtUtils jwtUtils() { - return new JwtUtils(); - } - - @Bean - public HttpServletRequest request() { - return Mockito.mock(HttpServletRequest.class); - } - - @Bean - public HttpServletResponse response() { - return Mockito.mock(HttpServletResponse.class); - } -} diff --git a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2DataAccessTokenServiceImplTest.java b/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2DataAccessTokenServiceImplTest.java deleted file mode 100644 index 80f8751360d..00000000000 --- a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2DataAccessTokenServiceImplTest.java +++ /dev/null @@ -1,152 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import static org.cbioportal.security.spring.authentication.token.oauth2.OAuth2TokenTestUtils.createJwt; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; - -import org.cbioportal.model.DataAccessToken; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.security.authentication.BadCredentialsException; -import org.springframework.security.core.Authentication; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.TestPropertySource; -import org.springframework.test.context.junit4.SpringRunner; - - -@TestPropertySource( - properties = { - "dat.method = oauth2", - "dat.oauth2.issuer = my_issuer", - "dat.oauth2.clientId = my_client_id" - } -) -@ContextConfiguration(classes=OAuth2DataAccessTokenServiceImplTestConfiguration.class) -@RunWith(SpringRunner.class) -public class OAuth2DataAccessTokenServiceImplTest { - - static final String ACCESS_CODE_VALID = "dummy_valid_access_code"; - static final String ACCESS_CODE_INVALID = "dummy_invalid_access_code"; - static final String ACCESS_TOKEN = "dummy_access_token"; - - @Value("${dat.oauth2.issuer:}") - private String issuer; - - @Value("${dat.oauth2.clientId:}") - private String clientId; - - @Autowired - OAuth2DataAccessTokenServiceImpl service; - - @Test - public void testCreateDataAccessTokenSuccess() { - DataAccessToken accessToken = service.createDataAccessToken(ACCESS_CODE_VALID); - assertEquals(accessToken.getToken(), ACCESS_TOKEN); - } - - @Test(expected = BadCredentialsException.class) - public void testCreateDataAccessTokenFailure() { - service.createDataAccessToken(ACCESS_CODE_INVALID); - } - - @Test - public void testGetUsernameSuccess() { - String token = createJwt("{\"sub\":\"me\"}"); - assertEquals(service.getUsername(token), "me"); - } - - @Test(expected = BadCredentialsException.class) - public void testGetUsernameFailure() { - String token = createJwt("{}"); - service.getUsername(token); - } - - @Test - public void testCreateAuthenticationRequestSuccess() { - String token = createJwt("{\"sub\":\"me\"}"); - Authentication auth = service.createAuthenticationRequest(token); - assertEquals(auth.getCredentials(), token); - } - - @Test - public void testGetExpirationReturnsNull() { - assertNull(service.getExpiration("dummy_token")); - } - - @Test - public void testIsValidSuccess() { - String json = new StringBuilder() - .append("{") - .append("\"aud\":\"").append(clientId).append("\",") - .append("\"iss\":\"").append(issuer).append("\"") - .append("}") - .toString(); - - String token = createJwt(json); - - assert(service.isValid(token)); - } - - @Test(expected = BadCredentialsException.class) - public void testIsValidFailureAud() { - String json = new StringBuilder() - .append("{") - .append("\"aud\":\"").append("invalid_client_id").append("\",") - .append("\"iss\":\"").append(issuer).append("\"") - .append("}") - .toString(); - - String token = createJwt(json); - - service.isValid(token); - } - - @Test(expected = BadCredentialsException.class) - public void testIsValidFailureIss() { - String json = new StringBuilder() - .append("{") - .append("\"aud\":\"").append(clientId).append("\",") - .append("\"iss\":\"").append("invalid_issuer").append("\"") - .append("}") - .toString(); - - String token = createJwt(json); - - service.isValid(token); - } - -} \ No newline at end of file diff --git a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2DataAccessTokenServiceImplTestConfiguration.java b/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2DataAccessTokenServiceImplTestConfiguration.java deleted file mode 100644 index d948603397c..00000000000 --- a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2DataAccessTokenServiceImplTestConfiguration.java +++ /dev/null @@ -1,99 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.anyString; -import static org.mockito.Matchers.eq; -import static org.mockito.Mockito.doNothing; -import static org.mockito.Mockito.mock; - -import org.mockito.Mockito; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.http.HttpEntity; -import org.springframework.http.HttpStatus; -import org.springframework.http.ResponseEntity; -import org.springframework.security.jwt.crypto.sign.RsaVerifier; -import org.springframework.util.LinkedMultiValueMap; -import org.springframework.web.client.RestTemplate; - -@Configuration -public class OAuth2DataAccessTokenServiceImplTestConfiguration { - - @Bean - public OAuth2DataAccessTokenServiceImpl dataAccessTokenService() { - return new OAuth2DataAccessTokenServiceImpl(); - } - - @Bean - public RestTemplate template() { - RestTemplate template = mock(RestTemplate.class); - - String jsonSuccess = "{\"refresh_token\":\"" + OAuth2DataAccessTokenServiceImplTest.ACCESS_TOKEN + "\"}"; - ResponseEntity responseSuccess = new ResponseEntity(jsonSuccess, HttpStatus.OK); - - String jsonFailure = "{\"error\":\"invalid_grant\"}"; - ResponseEntity responseFailure = new ResponseEntity(jsonFailure, HttpStatus.UNAUTHORIZED); - - Mockito.doAnswer(invocation -> { - @SuppressWarnings("unchecked") - HttpEntity> httpEntity = (HttpEntity>) invocation.getArguments()[1]; - String code = (String) httpEntity.getBody().get("code").get(0); - if (code.equals(OAuth2DataAccessTokenServiceImplTest.ACCESS_CODE_VALID)) { - return responseSuccess; - } - return responseFailure; - }).when(template).postForEntity(anyString(), any(HttpEntity.class), eq(String.class)); - - return template; - } - - @Bean - public JwtTokenVerifierBuilder jwtTokenVerifierBuilder() { - - // create a verifier that always returns true, - // i.e., does not throw an exception. - RsaVerifier verifier = mock(RsaVerifier.class); - doNothing().when(verifier).verify(any(), any()); - - // create a builder that returns the verifier - JwtTokenVerifierBuilder builder = mock(JwtTokenVerifierBuilder.class); - try { - Mockito.when(builder.build(anyString())).thenReturn(verifier); - } catch (Exception e) {} - - return builder; - } - -} diff --git a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenAuthenticationProviderTest.java b/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenAuthenticationProviderTest.java deleted file mode 100644 index 1287c79691d..00000000000 --- a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenAuthenticationProviderTest.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import static org.junit.Assert.assertArrayEquals; -import static org.junit.Assert.assertEquals; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.security.authentication.BadCredentialsException; -import org.springframework.security.core.Authentication; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringRunner; - -@ContextConfiguration(classes = OAuth2TokenAuthenticationProviderTestConfiguration.class) -@RunWith(SpringRunner.class) -public class OAuth2TokenAuthenticationProviderTest { - - public static String USER_ROLE_1 = "dummy_role_1"; - public static String USER_ROLE_2 = "dummy_role_2"; - public static String OFFLINE_TOKEN_VALID = "my_valid_offline_token"; - public static String OFFLINE_TOKEN_MALFORMED_JSON = "dummy_malformed_json_response"; - - @Autowired - private OAuth2TokenAuthenticationProvider provider; - - @Test - public void testAuthenticateSuccess() { - - Authentication authRequest = new OAuth2BearerAuthenticationToken(OFFLINE_TOKEN_VALID); - Authentication authGranted = provider.authenticate(authRequest); - - String[] authorities = authGranted.getAuthorities().stream() - .map(a -> a.toString()) - .toArray(String[]::new); - - assertEquals(authGranted.getPrincipal(), "username"); - assertArrayEquals(authorities, new String[] {USER_ROLE_1, USER_ROLE_2}); - } - - @Test(expected = BadCredentialsException.class) - public void testAuthenticateFailureMalformedJson() { - Authentication authRequest = new OAuth2BearerAuthenticationToken(OFFLINE_TOKEN_MALFORMED_JSON); - provider.authenticate(authRequest); - } - -} \ No newline at end of file diff --git a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenAuthenticationProviderTestConfiguration.java b/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenAuthenticationProviderTestConfiguration.java deleted file mode 100644 index 49a26f68dc4..00000000000 --- a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenAuthenticationProviderTestConfiguration.java +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import static org.cbioportal.security.spring.authentication.token.oauth2.OAuth2TokenTestUtils.createJwt; -import static org.mockito.Matchers.anyString; -import static org.mockito.Mockito.mock; - -import org.mockito.Mockito; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.web.client.RestTemplate; - -@Configuration -public class OAuth2TokenAuthenticationProviderTestConfiguration { - - @Bean - public OAuth2TokenAuthenticationProvider provider() { - return new OAuth2TokenAuthenticationProvider(); - } - - @Bean - public OAuth2TokenRefreshRestTemplate tokenRefreshRestTemplate() { - - String jsonSuccess = new StringBuilder() - .append("{") - .append("\"resource_access\":") - .append("{") - .append("\"cbioportal\":") - .append("{") - .append("\"roles\": [") - .append("\"").append(OAuth2TokenAuthenticationProviderTest.USER_ROLE_1).append("\",") - .append("\"").append(OAuth2TokenAuthenticationProviderTest.USER_ROLE_2).append("\"") - .append("]") - .append("}") - .append("}") - .append(",\"sub\": \"username\"") - .append("}") - .toString(); - - - String accessTokenSuccess = createJwt(jsonSuccess); - - String jsonMalformedJson = new StringBuilder() - .append("{") - .append("\"resource_access\":") - .append("{}") - .append("}") - .toString(); - - String accessTokenMalformedJson = createJwt(jsonMalformedJson); - - OAuth2TokenRefreshRestTemplate template = mock(OAuth2TokenRefreshRestTemplate.class); - Mockito.doAnswer(invocation -> { - String offlineToken = (String) invocation.getArguments()[0]; - if (offlineToken.equals(OAuth2TokenAuthenticationProviderTest.OFFLINE_TOKEN_MALFORMED_JSON)) { - return accessTokenMalformedJson; - } - return accessTokenSuccess; - }).when(template).getAccessToken(anyString()); - - return template; - } - - @Bean - public RestTemplate restTemplate() { - return new RestTemplate(); - } - -} \ No newline at end of file diff --git a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenRefreshTemplateTest.java b/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenRefreshTemplateTest.java deleted file mode 100644 index 0b928a6d870..00000000000 --- a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenRefreshTemplateTest.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import static org.junit.Assert.assertEquals; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.security.authentication.BadCredentialsException; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringRunner; - -@ContextConfiguration(classes = OAuth2TokenRefreshTemplateTestConfiguration.class) -@RunWith(SpringRunner.class) -public class OAuth2TokenRefreshTemplateTest { - - public static String ACCESS_TOKEN = "dummy_access_token"; - public static String OFFLINE_TOKEN_VALID = "dummy_valid_offline_token"; - public static String OFFLINE_TOKEN_INVALID = "dummy_invalid_offline_token"; - - @Autowired - private OAuth2TokenRefreshRestTemplate tokenRefreshTemplate; - - @Test - public void testGetAccessTokenSuccess() { - String accessToken = tokenRefreshTemplate.getAccessToken(OFFLINE_TOKEN_VALID); - assertEquals(accessToken, ACCESS_TOKEN); - } - - @Test(expected = BadCredentialsException.class) - public void testGetAccessTokenFailure() { - tokenRefreshTemplate.getAccessToken(OFFLINE_TOKEN_INVALID); - } - -} diff --git a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenRefreshTemplateTestConfiguration.java b/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenRefreshTemplateTestConfiguration.java deleted file mode 100644 index b990f96fa6f..00000000000 --- a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenRefreshTemplateTestConfiguration.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.anyString; -import static org.mockito.Matchers.eq; -import static org.mockito.Mockito.mock; - -import org.mockito.Mockito; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.http.HttpEntity; -import org.springframework.http.HttpStatus; -import org.springframework.http.ResponseEntity; -import org.springframework.util.LinkedMultiValueMap; -import org.springframework.web.client.RestTemplate; - -@Configuration -public class OAuth2TokenRefreshTemplateTestConfiguration { - - @Bean - public OAuth2TokenRefreshRestTemplate tokenRefreshTemplate() { - return new OAuth2TokenRefreshRestTemplate(); - } - - @Bean - public RestTemplate template() { - final RestTemplate template = mock(RestTemplate.class); - - final String jsonSuccess = "{\"access_token\":\"" + OAuth2TokenRefreshTemplateTest.ACCESS_TOKEN + "\"}"; - final ResponseEntity responseSuccess = new ResponseEntity(jsonSuccess, HttpStatus.OK); - - final String jsonFailure = "{\"error\":\"invalid_grant\"}"; - final ResponseEntity responseFailure = new ResponseEntity(jsonFailure, HttpStatus.UNAUTHORIZED); - - Mockito.doAnswer(invocation -> { - @SuppressWarnings("unchecked") - final - HttpEntity> httpEntity = (HttpEntity>) invocation.getArguments()[1]; - final String code = (String) httpEntity.getBody().get("refresh_token").get(0); - if (code.equals(OAuth2TokenRefreshTemplateTest.OFFLINE_TOKEN_VALID)) { - return responseSuccess; - } - return responseFailure; - }).when(template).postForEntity(anyString(), any(HttpEntity.class), eq(String.class)); - - return template; - } - -} diff --git a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenTestUtils.java b/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenTestUtils.java deleted file mode 100644 index abb2286ca44..00000000000 --- a/security/security-spring/src/test/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2TokenTestUtils.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.security.spring.authentication.token.oauth2; - -import org.springframework.security.jwt.JwtHelper; -import org.springframework.security.jwt.crypto.sign.MacSigner; - -import java.util.HashMap; -import java.util.Map; - -public class OAuth2TokenTestUtils { - - public static String createJwt(String claimsJson) { - MacSigner signer = new MacSigner("dummy_private_key"); - Map header = new HashMap<>(); - header.put("kid", "my_token_id"); - return JwtHelper.encode(claimsJson, signer, header).getEncoded(); - } - -} \ No newline at end of file diff --git a/security/security-spring/src/test/resources/logback.xml b/security/security-spring/src/test/resources/logback.xml deleted file mode 100644 index 9d21a927c45..00000000000 --- a/security/security-spring/src/test/resources/logback.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n - - - - - - - - - - - \ No newline at end of file diff --git a/service/pom.xml b/service/pom.xml deleted file mode 100644 index a46d74484dc..00000000000 --- a/service/pom.xml +++ /dev/null @@ -1,113 +0,0 @@ - - - - master - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - - service - - - - org.mskcc.cbio - persistence-mybatis - - - org.mskcc.cbio - model - - - org.mskcc.cbio - permission-evaluator - - - com.github.cbioportal - session-service - model - - - org.apache.logging.log4j - log4j-to-slf4j - - - ch.qos.logback - logback-classic - - - spring-boot-starter-web - org.springframework.boot - - - spring-boot-starter-data-mongodb - org.springframework.boot - - - - - org.springframework - spring-test - test - - - io.jsonwebtoken - jjwt-api - - - io.jsonwebtoken - jjwt-impl - - - io.jsonwebtoken - jjwt-jackson - - - mysql - mysql-connector-java - - - org.apache.commons - commons-lang3 - - - org.apache.commons - commons-math3 - - - org.apache.commons - commons-collections4 - - - commons-codec - commons-codec - - - org.mockito - mockito-core - - - org.mybatis - mybatis-spring - - - commons-beanutils - commons-beanutils - - - org.springframework.security - spring-security-config - - - org.springframework - spring-web - - - junit - junit - - - - diff --git a/service/src/main/java/org/cbioportal/service/util/AppConfig.java b/service/src/main/java/org/cbioportal/service/util/AppConfig.java deleted file mode 100644 index 09b37f5f2df..00000000000 --- a/service/src/main/java/org/cbioportal/service/util/AppConfig.java +++ /dev/null @@ -1,30 +0,0 @@ -package org.cbioportal.service.util; - -import org.springframework.core.env.Environment; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Configuration; -import org.springframework.scheduling.annotation.EnableAsync; -import org.springframework.scheduling.annotation.AsyncConfigurer; -import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; - -import java.lang.Runtime; -import java.util.concurrent.Executor; - -@Configuration -@EnableAsync -public class AppConfig implements AsyncConfigurer { - - @Autowired - private Environment env; - - @Override - public Executor getAsyncExecutor() { - ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); - int corePoolSize = env.getProperty("multithread.core_pool_size", int.class, Runtime.getRuntime().availableProcessors()); - executor.setCorePoolSize(corePoolSize); - executor.setThreadNamePrefix("ThreadPoolTaskExecutor-"); - executor.initialize(); - return executor; - } - -} diff --git a/service/src/test/resources/logback.xml b/service/src/test/resources/logback.xml deleted file mode 100644 index 9d21a927c45..00000000000 --- a/service/src/test/resources/logback.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/etc/jetty-cbioportal.xml b/src/main/etc/jetty-cbioportal.xml deleted file mode 100644 index 36866c0c094..00000000000 --- a/src/main/etc/jetty-cbioportal.xml +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - 32768 - 8192 - 8192 - - - - - - - org.eclipse.jetty.webapp.FragmentConfiguration - - - org.eclipse.jetty.plus.webapp.EnvConfiguration - org.eclipse.jetty.plus.webapp.PlusConfiguration - - - - - - - - - - - - - - - - - - - - - - - - - - file:///src/main/etc/override-web.xml - - / - - - - - java.io.tmpdir - - - - - embedded-jetty-jsp - - - - javax.servlet.context.tempdir - - - - - - org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern - .*/[^/]*servlet-api-[^/]*\.jar$|.*/javax.servlet.jsp.jstl-.*\.jar$|.*/.*taglibs.*\.jar$ - - - org.apache.tomcat.InstanceManager - - - - - spring.profiles.active - default,dbcp - - - - - - - - - true - - - - - - file:///portal/target/portal - - - - - - - - - - org.eclipse.jetty.containerInitializers - - - - - - - - - - - - - - - - - - - default - - - org.eclipse.jetty.servlet.DefaultServlet - - - resourceBase - dirAllowedtrue - - - / - - - - - - - jsp - - - org.eclipse.jetty.jsp.JettyJspServlet - - - 0 - logVerbosityLevelDEBUG - forkfalse - xpoweredByfalse - compilerTargetVM1.7 - compilerSourceVM1.7 - keepgeneratedtrue - - - *.jsp - - - - ca.uhnresearch.pughlab.tracker.server.httpd.EmbeddedJettyServer - - - - - - - - - - - - - - - - - jdbc/cbioportal - - - com.mysql.jdbc.Driver - jdbc:mysql://localhost/cbioportal - cbioportal - cbioportal - true - SELECT 1 - - - - - - - - - - true - - - - - diff --git a/src/main/etc/override-web.xml b/src/main/etc/override-web.xml deleted file mode 100644 index 27979f92451..00000000000 --- a/src/main/etc/override-web.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - jdbc/cbioportal - javax.sql.DataSource - Container - - - diff --git a/src/main/java/org/cbioportal/AsyncConfig.java b/src/main/java/org/cbioportal/AsyncConfig.java new file mode 100644 index 00000000000..a1e5b3041a4 --- /dev/null +++ b/src/main/java/org/cbioportal/AsyncConfig.java @@ -0,0 +1,31 @@ +package org.cbioportal; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.core.env.Environment; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.scheduling.annotation.EnableAsync; +import org.springframework.scheduling.annotation.AsyncConfigurer; +import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; + +import java.lang.Runtime; +import java.util.concurrent.Executor; + +@Configuration +@EnableAsync +public class AsyncConfig implements AsyncConfigurer { + + + @Value("${multithread.core_pool_size:#{T(java.lang.Runtime).getRuntime().availableProcessors()}}") + private int corePoolSize; + + @Override + public Executor getAsyncExecutor() { + ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); + executor.setCorePoolSize(corePoolSize); + executor.setThreadNamePrefix("ThreadPoolTaskExecutor-"); + executor.initialize(); + return executor; + } + +} diff --git a/src/main/java/org/cbioportal/PortalApplication.java b/src/main/java/org/cbioportal/PortalApplication.java new file mode 100644 index 00000000000..5aded5fa465 --- /dev/null +++ b/src/main/java/org/cbioportal/PortalApplication.java @@ -0,0 +1,24 @@ +package org.cbioportal; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration; +import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration; +import org.springframework.context.annotation.PropertySource; +import org.springframework.context.annotation.PropertySources; + +@SpringBootApplication(exclude = { + MongoAutoConfiguration.class, + MongoDataAutoConfiguration.class +}) +@PropertySources({ + @PropertySource(ignoreResourceNotFound = true, value = "classpath:portal.properties"), + @PropertySource(ignoreResourceNotFound = true, value = "classpath:security.properties"), + @PropertySource(ignoreResourceNotFound = true, value = "classpath:maven.properties"), + @PropertySource(ignoreResourceNotFound = true, value = "classpath:git.properties") +}) +public class PortalApplication { + public static void main(String[] args) { + SpringApplication.run(PortalApplication.class, args); + } +} diff --git a/src/main/java/org/cbioportal/WebAppConfig.java b/src/main/java/org/cbioportal/WebAppConfig.java new file mode 100644 index 00000000000..612884dad51 --- /dev/null +++ b/src/main/java/org/cbioportal/WebAppConfig.java @@ -0,0 +1,64 @@ +package org.cbioportal; + +import org.cbioportal.web.util.InvolvedCancerStudyExtractorInterceptor; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.servlet.HandlerInterceptor; +import org.springframework.web.servlet.config.annotation.InterceptorRegistry; +import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; +import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; + +// TODO Consider creating separate DispatcherServlets as in the original web.xml +// See: https://stackoverflow.com/a/30686733/11651683 +@Configuration +//@EnableAspectJAutoProxy // TODO no idea what this does; is this logging aspect still useful? +public class WebAppConfig implements WebMvcConfigurer { + + private static final String SINGLE_PAGE_APP_ROOT = "forward:/"; + + @Override + public void addResourceHandlers(ResourceHandlerRegistry registry) { + registry.addResourceHandler("/images/**").addResourceLocations("classpath:/webapp/images/"); + registry.addResourceHandler("/reactapp/**").addResourceLocations("classpath:/reactapp/"); + registry.addResourceHandler("/js/**").addResourceLocations("classpath:/js/"); + } + + @Override + public void addViewControllers(ViewControllerRegistry registry) { + registry.addRedirectViewController("/api", "/swagger-ui.html"); + + + // Redirects for single page app + registry.addViewController("/results/*").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/results**").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/patient/*").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/patient**").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/study/*").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/study").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/mutation_mapper/*").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/mutation_mapper").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/index.do/*").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/case.do/*").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/loading/*").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/comparison").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/comparison/*").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/restore").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/index.do**").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/oncoprinter**").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/encodedRedirect").setViewName(SINGLE_PAGE_APP_ROOT); + registry.addViewController("/datasets**").setViewName(SINGLE_PAGE_APP_ROOT); + + } + + @Bean + public HandlerInterceptor involvedCancerStudyExtractorInterceptor() { + return new InvolvedCancerStudyExtractorInterceptor(); + } + + @Override + public void addInterceptors(InterceptorRegistry registry) { + registry.addInterceptor(involvedCancerStudyExtractorInterceptor()); + } + +} diff --git a/web/src/main/java/org/cbioportal/documentation/ExternalPageController.java b/src/main/java/org/cbioportal/documentation/ExternalPageController.java similarity index 95% rename from web/src/main/java/org/cbioportal/documentation/ExternalPageController.java rename to src/main/java/org/cbioportal/documentation/ExternalPageController.java index 2b414207422..c8a246d38ed 100644 --- a/web/src/main/java/org/cbioportal/documentation/ExternalPageController.java +++ b/src/main/java/org/cbioportal/documentation/ExternalPageController.java @@ -25,7 +25,7 @@ public class ExternalPageController { // available via GET method // sourceURL is required @Transactional - @RequestMapping(value = "/getexternalpage.json", method = {RequestMethod.GET}) + @RequestMapping(value = "/api/getexternalpage.json", method = {RequestMethod.GET}) public @ResponseBody Map getExternalPage(@RequestParam(required = true) String sourceURL) throws IOException { String decodedString, pageText = ""; diff --git a/model/src/main/java/org/cbioportal/model/AlleleSpecificCopyNumber.java b/src/main/java/org/cbioportal/model/AlleleSpecificCopyNumber.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/AlleleSpecificCopyNumber.java rename to src/main/java/org/cbioportal/model/AlleleSpecificCopyNumber.java diff --git a/model/src/main/java/org/cbioportal/model/Alteration.java b/src/main/java/org/cbioportal/model/Alteration.java similarity index 98% rename from model/src/main/java/org/cbioportal/model/Alteration.java rename to src/main/java/org/cbioportal/model/Alteration.java index 42883990246..1e7e6e96cde 100644 --- a/model/src/main/java/org/cbioportal/model/Alteration.java +++ b/src/main/java/org/cbioportal/model/Alteration.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class Alteration extends UniqueKeyBase { diff --git a/model/src/main/java/org/cbioportal/model/AlterationCountBase.java b/src/main/java/org/cbioportal/model/AlterationCountBase.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/AlterationCountBase.java rename to src/main/java/org/cbioportal/model/AlterationCountBase.java diff --git a/model/src/main/java/org/cbioportal/model/AlterationCountByGene.java b/src/main/java/org/cbioportal/model/AlterationCountByGene.java similarity index 94% rename from model/src/main/java/org/cbioportal/model/AlterationCountByGene.java rename to src/main/java/org/cbioportal/model/AlterationCountByGene.java index d3a6ecf3d62..0c09a79351f 100644 --- a/model/src/main/java/org/cbioportal/model/AlterationCountByGene.java +++ b/src/main/java/org/cbioportal/model/AlterationCountByGene.java @@ -1,5 +1,7 @@ package org.cbioportal.model; +import com.fasterxml.jackson.annotation.JsonProperty; + import java.math.BigDecimal; public class AlterationCountByGene extends AlterationCountBase { @@ -33,6 +35,7 @@ public void setNumberOfAlteredCases(Integer numberOfAlteredCases) { this.numberOfAlteredCases = numberOfAlteredCases; } + @JsonProperty("qValue") public BigDecimal getqValue() { return qValue; } diff --git a/model/src/main/java/org/cbioportal/model/AlterationCountByStructuralVariant.java b/src/main/java/org/cbioportal/model/AlterationCountByStructuralVariant.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/AlterationCountByStructuralVariant.java rename to src/main/java/org/cbioportal/model/AlterationCountByStructuralVariant.java diff --git a/model/src/main/java/org/cbioportal/model/AlterationDriverAnnotation.java b/src/main/java/org/cbioportal/model/AlterationDriverAnnotation.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/AlterationDriverAnnotation.java rename to src/main/java/org/cbioportal/model/AlterationDriverAnnotation.java diff --git a/model/src/main/java/org/cbioportal/model/AlterationEnrichment.java b/src/main/java/org/cbioportal/model/AlterationEnrichment.java similarity index 90% rename from model/src/main/java/org/cbioportal/model/AlterationEnrichment.java rename to src/main/java/org/cbioportal/model/AlterationEnrichment.java index 9c1d4cbda29..d1fdbc4ba34 100644 --- a/model/src/main/java/org/cbioportal/model/AlterationEnrichment.java +++ b/src/main/java/org/cbioportal/model/AlterationEnrichment.java @@ -4,7 +4,8 @@ import java.math.BigDecimal; import java.util.List; -import javax.validation.constraints.NotNull; +import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.validation.constraints.NotNull; public class AlterationEnrichment implements Serializable { @@ -41,6 +42,7 @@ public void setCytoband(String cytoband) { this.cytoband = cytoband; } + @JsonProperty("pValue") public BigDecimal getpValue() { return pValue; } diff --git a/model/src/main/java/org/cbioportal/model/AlterationFilter.java b/src/main/java/org/cbioportal/model/AlterationFilter.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/AlterationFilter.java rename to src/main/java/org/cbioportal/model/AlterationFilter.java diff --git a/model/src/main/java/org/cbioportal/model/AlterationType.java b/src/main/java/org/cbioportal/model/AlterationType.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/AlterationType.java rename to src/main/java/org/cbioportal/model/AlterationType.java diff --git a/model/src/main/java/org/cbioportal/model/BaseAlterationFilter.java b/src/main/java/org/cbioportal/model/BaseAlterationFilter.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/BaseAlterationFilter.java rename to src/main/java/org/cbioportal/model/BaseAlterationFilter.java diff --git a/model/src/main/java/org/cbioportal/model/Binnable.java b/src/main/java/org/cbioportal/model/Binnable.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/Binnable.java rename to src/main/java/org/cbioportal/model/Binnable.java diff --git a/model/src/main/java/org/cbioportal/model/CNA.java b/src/main/java/org/cbioportal/model/CNA.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/CNA.java rename to src/main/java/org/cbioportal/model/CNA.java diff --git a/src/main/java/org/cbioportal/model/CancerStudy.java b/src/main/java/org/cbioportal/model/CancerStudy.java new file mode 100644 index 00000000000..48ed6103abb --- /dev/null +++ b/src/main/java/org/cbioportal/model/CancerStudy.java @@ -0,0 +1,242 @@ +package org.cbioportal.model; + +import java.io.Serializable; +import java.util.Date; +import jakarta.validation.constraints.NotNull; + +public class CancerStudy implements ReadPermission, Serializable { + + private Integer cancerStudyId; + @NotNull + private String cancerStudyIdentifier; + private String typeOfCancerId; + private String name; + private String description; + private Boolean publicStudy; + private String pmid; + private String citation; + private String groups; + private Integer status; + private Date importDate; + private TypeOfCancer typeOfCancer; + private Integer allSampleCount; + private Integer sequencedSampleCount; + private Integer cnaSampleCount; + private Integer mrnaRnaSeqSampleCount; + private Integer mrnaRnaSeqV2SampleCount; + private Integer mrnaMicroarraySampleCount; + private Integer miRnaSampleCount; + private Integer methylationHm27SampleCount; + private Integer rppaSampleCount; + private Integer massSpectrometrySampleCount; + private Integer completeSampleCount; + private String referenceGenome; + private Boolean readPermission = true; + private Integer treatmentCount; + + public Integer getCancerStudyId() { + return cancerStudyId; + } + + public void setCancerStudyId(Integer cancerStudyId) { + this.cancerStudyId = cancerStudyId; + } + + public String getCancerStudyIdentifier() { + return cancerStudyIdentifier; + } + + public void setCancerStudyIdentifier(String cancerStudyIdentifier) { + this.cancerStudyIdentifier = cancerStudyIdentifier; + } + + public String getTypeOfCancerId() { + return typeOfCancerId; + } + + public void setTypeOfCancerId(String typeOfCancerId) { + this.typeOfCancerId = typeOfCancerId; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public Boolean getPublicStudy() { + return publicStudy; + } + + public void setPublicStudy(Boolean publicStudy) { + this.publicStudy = publicStudy; + } + + public String getPmid() { + return pmid; + } + + public void setPmid(String pmid) { + this.pmid = pmid; + } + + public String getCitation() { + return citation; + } + + public void setCitation(String citation) { + this.citation = citation; + } + + public String getGroups() { + return groups; + } + + public void setGroups(String groups) { + this.groups = groups; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Date getImportDate() { + return importDate; + } + + public void setImportDate(Date importDate) { + this.importDate = importDate; + } + + public TypeOfCancer getTypeOfCancer() { + return typeOfCancer; + } + + public void setTypeOfCancer(TypeOfCancer typeOfCancer) { + this.typeOfCancer = typeOfCancer; + } + + public Integer getAllSampleCount() { + return allSampleCount; + } + + public void setAllSampleCount(Integer allSampleCount) { + this.allSampleCount = allSampleCount; + } + + public Integer getSequencedSampleCount() { + return sequencedSampleCount; + } + + public void setSequencedSampleCount(Integer sequencedSampleCount) { + this.sequencedSampleCount = sequencedSampleCount; + } + + public Integer getCnaSampleCount() { + return cnaSampleCount; + } + + public void setCnaSampleCount(Integer cnaSampleCount) { + this.cnaSampleCount = cnaSampleCount; + } + + public Integer getMrnaRnaSeqSampleCount() { + return mrnaRnaSeqSampleCount; + } + + public void setMrnaRnaSeqSampleCount(Integer mrnaRnaSeqSampleCount) { + this.mrnaRnaSeqSampleCount = mrnaRnaSeqSampleCount; + } + + public Integer getMrnaRnaSeqV2SampleCount() { + return mrnaRnaSeqV2SampleCount; + } + + public void setMrnaRnaSeqV2SampleCount(Integer mrnaRnaSeqV2SampleCount) { + this.mrnaRnaSeqV2SampleCount = mrnaRnaSeqV2SampleCount; + } + + public Integer getMrnaMicroarraySampleCount() { + return mrnaMicroarraySampleCount; + } + + public void setMrnaMicroarraySampleCount(Integer mrnaMicroarraySampleCount) { + this.mrnaMicroarraySampleCount = mrnaMicroarraySampleCount; + } + + public Integer getMiRnaSampleCount() { + return miRnaSampleCount; + } + + public void setMiRnaSampleCount(Integer miRnaSampleCount) { + this.miRnaSampleCount = miRnaSampleCount; + } + + public Integer getMethylationHm27SampleCount() { + return methylationHm27SampleCount; + } + + public void setMethylationHm27SampleCount(Integer methylationHm27SampleCount) { + this.methylationHm27SampleCount = methylationHm27SampleCount; + } + + public Integer getRppaSampleCount() { + return rppaSampleCount; + } + + public void setRppaSampleCount(Integer rppaSampleCount) { + this.rppaSampleCount = rppaSampleCount; + } + + public Integer getCompleteSampleCount() { + return completeSampleCount; + } + + public void setCompleteSampleCount(Integer completeSampleCount) { + this.completeSampleCount = completeSampleCount; + } + + public Integer getMassSpectrometrySampleCount() { + return massSpectrometrySampleCount; + } + + public void setMassSpectrometrySampleCount(Integer massSpectrometrySampleCount) { + this.massSpectrometrySampleCount = massSpectrometrySampleCount; + } + + public String getReferenceGenome() { return referenceGenome; } + + public void setReferenceGenome(String referenceGenome) { this.referenceGenome = referenceGenome; } + + @Override + public void setReadPermission(Boolean permission) { + this.readPermission = permission; + } + + @Override + public Boolean getReadPermission() { + return readPermission; + } + + public Integer getTreatmentCount() { + return treatmentCount; + } + + public void setTreatmentCount(Integer treatmentCount) { + this.treatmentCount = treatmentCount; + } +} diff --git a/model/src/main/java/org/cbioportal/model/CancerStudyTags.java b/src/main/java/org/cbioportal/model/CancerStudyTags.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/CancerStudyTags.java rename to src/main/java/org/cbioportal/model/CancerStudyTags.java diff --git a/model/src/main/java/org/cbioportal/model/CaseListDataCount.java b/src/main/java/org/cbioportal/model/CaseListDataCount.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/CaseListDataCount.java rename to src/main/java/org/cbioportal/model/CaseListDataCount.java diff --git a/src/main/java/org/cbioportal/model/ClinicalAttribute.java b/src/main/java/org/cbioportal/model/ClinicalAttribute.java new file mode 100644 index 00000000000..ef1d10e9026 --- /dev/null +++ b/src/main/java/org/cbioportal/model/ClinicalAttribute.java @@ -0,0 +1,85 @@ +package org.cbioportal.model; + +import java.io.Serializable; +import jakarta.validation.constraints.NotNull; + +public class ClinicalAttribute implements Serializable { + + @NotNull + private String attrId; + @NotNull + private String displayName; + private String description; + private String datatype; + @NotNull + private Boolean patientAttribute; + private String priority; + private Integer cancerStudyId; + @NotNull + private String cancerStudyIdentifier; + + public String getAttrId() { + return attrId; + } + + public void setAttrId(String attrId) { + this.attrId = attrId; + } + + public String getDisplayName() { + return displayName; + } + + public void setDisplayName(String displayName) { + this.displayName = displayName; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getDatatype() { + return datatype; + } + + public void setDatatype(String datatype) { + this.datatype = datatype; + } + + public Boolean getPatientAttribute() { + return patientAttribute; + } + + public void setPatientAttribute(Boolean patientAttribute) { + this.patientAttribute = patientAttribute; + } + + public String getPriority() { + return priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public Integer getCancerStudyId() { + return cancerStudyId; + } + + public void setCancerStudyId(Integer cancerStudyId) { + this.cancerStudyId = cancerStudyId; + } + + public String getCancerStudyIdentifier() { + return cancerStudyIdentifier; + } + + public void setCancerStudyIdentifier(String cancerStudyIdentifier) { + this.cancerStudyIdentifier = cancerStudyIdentifier; + } + +} diff --git a/model/src/main/java/org/cbioportal/model/ClinicalAttributeCount.java b/src/main/java/org/cbioportal/model/ClinicalAttributeCount.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalAttributeCount.java rename to src/main/java/org/cbioportal/model/ClinicalAttributeCount.java diff --git a/src/main/java/org/cbioportal/model/ClinicalData.java b/src/main/java/org/cbioportal/model/ClinicalData.java new file mode 100644 index 00000000000..553a4b57899 --- /dev/null +++ b/src/main/java/org/cbioportal/model/ClinicalData.java @@ -0,0 +1,80 @@ +package org.cbioportal.model; + +import jakarta.validation.constraints.NotNull; + +public class ClinicalData extends UniqueKeyBase implements Binnable { + + private Integer internalId; + private String sampleId; + @NotNull + private String patientId; + @NotNull + private String studyId; + @NotNull + private String attrId; + private String attrValue; + private ClinicalAttribute clinicalAttribute; + + public Integer getInternalId() { + return internalId; + } + + public void setInternalId(Integer internalId) { + this.internalId = internalId; + } + + public String getSampleId() { + return sampleId; + } + + public void setSampleId(String sampleId) { + this.sampleId = sampleId; + } + + public String getPatientId() { + return patientId; + } + + public void setPatientId(String patientId) { + this.patientId = patientId; + } + + public String getStudyId() { + return studyId; + } + + public void setStudyId(String studyId) { + this.studyId = studyId; + } + + public String getAttrId() { + return attrId; + } + + public Boolean isPatientAttribute() { + if(clinicalAttribute == null) { + return null; + } + return this.clinicalAttribute.getPatientAttribute(); + } + + public void setAttrId(String attrId) { + this.attrId = attrId; + } + + public String getAttrValue() { + return attrValue; + } + + public void setAttrValue(String attrValue) { + this.attrValue = attrValue; + } + + public ClinicalAttribute getClinicalAttribute() { + return clinicalAttribute; + } + + public void setClinicalAttribute(ClinicalAttribute clinicalAttribute) { + this.clinicalAttribute = clinicalAttribute; + } +} diff --git a/model/src/main/java/org/cbioportal/model/ClinicalDataBin.java b/src/main/java/org/cbioportal/model/ClinicalDataBin.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalDataBin.java rename to src/main/java/org/cbioportal/model/ClinicalDataBin.java diff --git a/model/src/main/java/org/cbioportal/model/ClinicalDataCollection.java b/src/main/java/org/cbioportal/model/ClinicalDataCollection.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalDataCollection.java rename to src/main/java/org/cbioportal/model/ClinicalDataCollection.java diff --git a/model/src/main/java/org/cbioportal/model/ClinicalDataCount.java b/src/main/java/org/cbioportal/model/ClinicalDataCount.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalDataCount.java rename to src/main/java/org/cbioportal/model/ClinicalDataCount.java diff --git a/model/src/main/java/org/cbioportal/model/ClinicalDataCountItem.java b/src/main/java/org/cbioportal/model/ClinicalDataCountItem.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalDataCountItem.java rename to src/main/java/org/cbioportal/model/ClinicalDataCountItem.java diff --git a/model/src/main/java/org/cbioportal/model/ClinicalDataEnrichment.java b/src/main/java/org/cbioportal/model/ClinicalDataEnrichment.java similarity index 88% rename from model/src/main/java/org/cbioportal/model/ClinicalDataEnrichment.java rename to src/main/java/org/cbioportal/model/ClinicalDataEnrichment.java index 734d46fc706..10c13ac2242 100644 --- a/model/src/main/java/org/cbioportal/model/ClinicalDataEnrichment.java +++ b/src/main/java/org/cbioportal/model/ClinicalDataEnrichment.java @@ -3,7 +3,8 @@ import java.io.Serializable; import java.math.BigDecimal; -import javax.validation.constraints.NotNull; +import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.validation.constraints.NotNull; public class ClinicalDataEnrichment implements Serializable { @@ -40,6 +41,7 @@ public void setMethod(String method) { this.method = method; } + @JsonProperty("pValue") public BigDecimal getpValue() { return pValue; } diff --git a/src/main/java/org/cbioportal/model/ClinicalEvent.java b/src/main/java/org/cbioportal/model/ClinicalEvent.java new file mode 100644 index 00000000000..679dfed37c3 --- /dev/null +++ b/src/main/java/org/cbioportal/model/ClinicalEvent.java @@ -0,0 +1,74 @@ +package org.cbioportal.model; + +import java.util.List; +import jakarta.validation.constraints.NotNull; + +public class ClinicalEvent extends UniqueKeyBase { + + private Integer clinicalEventId; + @NotNull + private String studyId; + @NotNull + private String patientId; + @NotNull + private String eventType; + private Integer startDate; + private Integer stopDate; + private List attributes; + + public Integer getClinicalEventId() { + return clinicalEventId; + } + + public void setClinicalEventId(Integer clinicalEventId) { + this.clinicalEventId = clinicalEventId; + } + + public String getStudyId() { + return studyId; + } + + public void setStudyId(String studyId) { + this.studyId = studyId; + } + + public String getPatientId() { + return patientId; + } + + public void setPatientId(String patientId) { + this.patientId = patientId; + } + + public String getEventType() { + return eventType; + } + + public void setEventType(String eventType) { + this.eventType = eventType; + } + + public Integer getStartDate() { + return startDate; + } + + public void setStartDate(Integer startDate) { + this.startDate = startDate; + } + + public Integer getStopDate() { + return stopDate; + } + + public void setStopDate(Integer stopDate) { + this.stopDate = stopDate; + } + + public List getAttributes() { + return attributes; + } + + public void setAttributes(List attributes) { + this.attributes = attributes; + } +} diff --git a/model/src/main/java/org/cbioportal/model/ClinicalEventData.java b/src/main/java/org/cbioportal/model/ClinicalEventData.java similarity index 93% rename from model/src/main/java/org/cbioportal/model/ClinicalEventData.java rename to src/main/java/org/cbioportal/model/ClinicalEventData.java index a6658d91a3e..6430954af39 100644 --- a/model/src/main/java/org/cbioportal/model/ClinicalEventData.java +++ b/src/main/java/org/cbioportal/model/ClinicalEventData.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class ClinicalEventData implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/ClinicalEventKeyCode.java b/src/main/java/org/cbioportal/model/ClinicalEventKeyCode.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalEventKeyCode.java rename to src/main/java/org/cbioportal/model/ClinicalEventKeyCode.java diff --git a/model/src/main/java/org/cbioportal/model/ClinicalEventSample.java b/src/main/java/org/cbioportal/model/ClinicalEventSample.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalEventSample.java rename to src/main/java/org/cbioportal/model/ClinicalEventSample.java diff --git a/model/src/main/java/org/cbioportal/model/ClinicalEventTypeCount.java b/src/main/java/org/cbioportal/model/ClinicalEventTypeCount.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalEventTypeCount.java rename to src/main/java/org/cbioportal/model/ClinicalEventTypeCount.java diff --git a/model/src/main/java/org/cbioportal/model/ClinicalViolinPlotBoxData.java b/src/main/java/org/cbioportal/model/ClinicalViolinPlotBoxData.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalViolinPlotBoxData.java rename to src/main/java/org/cbioportal/model/ClinicalViolinPlotBoxData.java diff --git a/model/src/main/java/org/cbioportal/model/ClinicalViolinPlotData.java b/src/main/java/org/cbioportal/model/ClinicalViolinPlotData.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalViolinPlotData.java rename to src/main/java/org/cbioportal/model/ClinicalViolinPlotData.java diff --git a/model/src/main/java/org/cbioportal/model/ClinicalViolinPlotIndividualPoint.java b/src/main/java/org/cbioportal/model/ClinicalViolinPlotIndividualPoint.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalViolinPlotIndividualPoint.java rename to src/main/java/org/cbioportal/model/ClinicalViolinPlotIndividualPoint.java diff --git a/model/src/main/java/org/cbioportal/model/ClinicalViolinPlotRowData.java b/src/main/java/org/cbioportal/model/ClinicalViolinPlotRowData.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ClinicalViolinPlotRowData.java rename to src/main/java/org/cbioportal/model/ClinicalViolinPlotRowData.java diff --git a/model/src/main/java/org/cbioportal/model/CoExpression.java b/src/main/java/org/cbioportal/model/CoExpression.java similarity index 89% rename from model/src/main/java/org/cbioportal/model/CoExpression.java rename to src/main/java/org/cbioportal/model/CoExpression.java index 8d5aa008b8a..22fdec80784 100644 --- a/model/src/main/java/org/cbioportal/model/CoExpression.java +++ b/src/main/java/org/cbioportal/model/CoExpression.java @@ -2,7 +2,9 @@ import java.io.Serializable; import java.math.BigDecimal; -import javax.validation.constraints.NotNull; + +import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.validation.constraints.NotNull; public class CoExpression implements Serializable { @@ -39,6 +41,7 @@ public void setSpearmansCorrelation(BigDecimal spearmansCorrelation) { this.spearmansCorrelation = spearmansCorrelation; } + @JsonProperty("pValue") public BigDecimal getpValue() { return pValue; } diff --git a/model/src/main/java/org/cbioportal/model/CopyNumberCount.java b/src/main/java/org/cbioportal/model/CopyNumberCount.java similarity index 96% rename from model/src/main/java/org/cbioportal/model/CopyNumberCount.java rename to src/main/java/org/cbioportal/model/CopyNumberCount.java index ff4bcccbeee..3748da9228c 100644 --- a/model/src/main/java/org/cbioportal/model/CopyNumberCount.java +++ b/src/main/java/org/cbioportal/model/CopyNumberCount.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class CopyNumberCount implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/CopyNumberCountByGene.java b/src/main/java/org/cbioportal/model/CopyNumberCountByGene.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/CopyNumberCountByGene.java rename to src/main/java/org/cbioportal/model/CopyNumberCountByGene.java diff --git a/model/src/main/java/org/cbioportal/model/CopyNumberSeg.java b/src/main/java/org/cbioportal/model/CopyNumberSeg.java similarity index 98% rename from model/src/main/java/org/cbioportal/model/CopyNumberSeg.java rename to src/main/java/org/cbioportal/model/CopyNumberSeg.java index f9519fe48ea..ea304052666 100644 --- a/model/src/main/java/org/cbioportal/model/CopyNumberSeg.java +++ b/src/main/java/org/cbioportal/model/CopyNumberSeg.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.math.BigDecimal; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class CopyNumberSeg extends UniqueKeyBase { diff --git a/model/src/main/java/org/cbioportal/model/CosmicMutation.java b/src/main/java/org/cbioportal/model/CosmicMutation.java similarity index 95% rename from model/src/main/java/org/cbioportal/model/CosmicMutation.java rename to src/main/java/org/cbioportal/model/CosmicMutation.java index 07151b75a60..2656205c146 100644 --- a/model/src/main/java/org/cbioportal/model/CosmicMutation.java +++ b/src/main/java/org/cbioportal/model/CosmicMutation.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class CosmicMutation implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/CountSummary.java b/src/main/java/org/cbioportal/model/CountSummary.java similarity index 94% rename from model/src/main/java/org/cbioportal/model/CountSummary.java rename to src/main/java/org/cbioportal/model/CountSummary.java index 44d8e342c21..3466117a2ba 100644 --- a/model/src/main/java/org/cbioportal/model/CountSummary.java +++ b/src/main/java/org/cbioportal/model/CountSummary.java @@ -2,7 +2,7 @@ import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; /** * diff --git a/model/src/main/java/org/cbioportal/model/CustomDriverAnnotationReport.java b/src/main/java/org/cbioportal/model/CustomDriverAnnotationReport.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/CustomDriverAnnotationReport.java rename to src/main/java/org/cbioportal/model/CustomDriverAnnotationReport.java diff --git a/model/src/main/java/org/cbioportal/model/DataAccessToken.java b/src/main/java/org/cbioportal/model/DataAccessToken.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/DataAccessToken.java rename to src/main/java/org/cbioportal/model/DataAccessToken.java diff --git a/model/src/main/java/org/cbioportal/model/DataBin.java b/src/main/java/org/cbioportal/model/DataBin.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/DataBin.java rename to src/main/java/org/cbioportal/model/DataBin.java diff --git a/model/src/main/java/org/cbioportal/model/DensityPlotBin.java b/src/main/java/org/cbioportal/model/DensityPlotBin.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/DensityPlotBin.java rename to src/main/java/org/cbioportal/model/DensityPlotBin.java diff --git a/model/src/main/java/org/cbioportal/model/DensityPlotData.java b/src/main/java/org/cbioportal/model/DensityPlotData.java similarity index 94% rename from model/src/main/java/org/cbioportal/model/DensityPlotData.java rename to src/main/java/org/cbioportal/model/DensityPlotData.java index c5df3dd0beb..06adc10bca5 100644 --- a/model/src/main/java/org/cbioportal/model/DensityPlotData.java +++ b/src/main/java/org/cbioportal/model/DensityPlotData.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; import java.io.Serializable; import java.math.BigDecimal; import java.util.ArrayList; diff --git a/src/main/java/org/cbioportal/model/DiscreteCopyNumberData.java b/src/main/java/org/cbioportal/model/DiscreteCopyNumberData.java new file mode 100644 index 00000000000..11c20fe6068 --- /dev/null +++ b/src/main/java/org/cbioportal/model/DiscreteCopyNumberData.java @@ -0,0 +1,34 @@ +package org.cbioportal.model; + +import com.fasterxml.jackson.annotation.JsonRawValue; + +import java.io.Serializable; + +import io.swagger.v3.oas.annotations.media.Schema; +import jakarta.validation.constraints.NotNull; + +public class DiscreteCopyNumberData extends Alteration implements Serializable { + @NotNull + private Integer alteration; + + @JsonRawValue + @Schema(type = "java.util.Map") + private Object annotationJson; + + public Integer getAlteration() { + return alteration; + } + + public void setAlteration(Integer alteration) { + this.alteration = alteration; + } + + public Object getAnnotationJson() { + return annotationJson; + } + + public void setAnnotationJson(String annotationJson) { + this.annotationJson = annotationJson; + } + +} diff --git a/model/src/main/java/org/cbioportal/model/EnrichmentType.java b/src/main/java/org/cbioportal/model/EnrichmentType.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/EnrichmentType.java rename to src/main/java/org/cbioportal/model/EnrichmentType.java diff --git a/model/src/main/java/org/cbioportal/model/EntityType.java b/src/main/java/org/cbioportal/model/EntityType.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/EntityType.java rename to src/main/java/org/cbioportal/model/EntityType.java diff --git a/model/src/main/java/org/cbioportal/model/ExpressionEnrichment.java b/src/main/java/org/cbioportal/model/ExpressionEnrichment.java similarity index 77% rename from model/src/main/java/org/cbioportal/model/ExpressionEnrichment.java rename to src/main/java/org/cbioportal/model/ExpressionEnrichment.java index 57e6df2a5db..c6c562c4b64 100644 --- a/model/src/main/java/org/cbioportal/model/ExpressionEnrichment.java +++ b/src/main/java/org/cbioportal/model/ExpressionEnrichment.java @@ -4,7 +4,8 @@ import java.math.BigDecimal; import java.util.List; -import javax.validation.constraints.NotNull; +import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.validation.constraints.NotNull; public class ExpressionEnrichment implements Serializable { @@ -21,7 +22,8 @@ public void setGroupsStatistics(List groupsStatistics) { this.groupsStatistics = groupsStatistics; } - public BigDecimal getpValue() { + @JsonProperty("pValue") + public BigDecimal getpValue() { return pValue; } diff --git a/model/src/main/java/org/cbioportal/model/FractionGenomeAltered.java b/src/main/java/org/cbioportal/model/FractionGenomeAltered.java similarity index 95% rename from model/src/main/java/org/cbioportal/model/FractionGenomeAltered.java rename to src/main/java/org/cbioportal/model/FractionGenomeAltered.java index 3f88552d893..f9e3d67fcdb 100644 --- a/model/src/main/java/org/cbioportal/model/FractionGenomeAltered.java +++ b/src/main/java/org/cbioportal/model/FractionGenomeAltered.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.math.BigDecimal; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class FractionGenomeAltered extends UniqueKeyBase { diff --git a/src/main/java/org/cbioportal/model/Gene.java b/src/main/java/org/cbioportal/model/Gene.java new file mode 100644 index 00000000000..a2325da6856 --- /dev/null +++ b/src/main/java/org/cbioportal/model/Gene.java @@ -0,0 +1,43 @@ +package org.cbioportal.model; + +import java.io.Serializable; +import jakarta.validation.constraints.NotNull; + +public class Gene implements Serializable { + + @NotNull + private Integer geneticEntityId; + @NotNull + private Integer entrezGeneId; + @NotNull + private String hugoGeneSymbol; + private String type; + + public Integer getGeneticEntityId() { return geneticEntityId; } + + public void setGeneticEntityId(Integer geneticEntityId) { this.geneticEntityId = geneticEntityId; } + + public Integer getEntrezGeneId() { + return entrezGeneId; + } + + public void setEntrezGeneId(Integer entrezGeneId) { + this.entrezGeneId = entrezGeneId; + } + + public String getHugoGeneSymbol() { + return hugoGeneSymbol; + } + + public void setHugoGeneSymbol(String hugoGeneSymbol) { + this.hugoGeneSymbol = hugoGeneSymbol; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } +} diff --git a/model/src/main/java/org/cbioportal/model/GeneAlias.java b/src/main/java/org/cbioportal/model/GeneAlias.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GeneAlias.java rename to src/main/java/org/cbioportal/model/GeneAlias.java diff --git a/model/src/main/java/org/cbioportal/model/GeneFilter.java b/src/main/java/org/cbioportal/model/GeneFilter.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GeneFilter.java rename to src/main/java/org/cbioportal/model/GeneFilter.java diff --git a/model/src/main/java/org/cbioportal/model/GeneFilterQuery.java b/src/main/java/org/cbioportal/model/GeneFilterQuery.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GeneFilterQuery.java rename to src/main/java/org/cbioportal/model/GeneFilterQuery.java diff --git a/model/src/main/java/org/cbioportal/model/GeneMolecularAlteration.java b/src/main/java/org/cbioportal/model/GeneMolecularAlteration.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GeneMolecularAlteration.java rename to src/main/java/org/cbioportal/model/GeneMolecularAlteration.java diff --git a/model/src/main/java/org/cbioportal/model/GeneMolecularData.java b/src/main/java/org/cbioportal/model/GeneMolecularData.java similarity index 92% rename from model/src/main/java/org/cbioportal/model/GeneMolecularData.java rename to src/main/java/org/cbioportal/model/GeneMolecularData.java index 52dcea07b55..6ce9e1cef68 100644 --- a/model/src/main/java/org/cbioportal/model/GeneMolecularData.java +++ b/src/main/java/org/cbioportal/model/GeneMolecularData.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class GeneMolecularData extends MolecularData implements Serializable { diff --git a/src/main/java/org/cbioportal/model/GenePanel.java b/src/main/java/org/cbioportal/model/GenePanel.java new file mode 100644 index 00000000000..6c47f89016d --- /dev/null +++ b/src/main/java/org/cbioportal/model/GenePanel.java @@ -0,0 +1,46 @@ +package org.cbioportal.model; + +import java.io.Serializable; +import java.util.List; +import jakarta.validation.constraints.NotNull; + +public class GenePanel implements Serializable { + + private Integer internalId; + @NotNull + private String stableId; + private String description; + private List genes; + + public Integer getInternalId() { + return internalId; + } + + public void setInternalId(Integer internalId) { + this.internalId = internalId; + } + + public String getStableId() { + return stableId; + } + + public void setStableId(String stableId) { + this.stableId = stableId; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public List getGenes() { + return genes; + } + + public void setGenes(List genes) { + this.genes = genes; + } +} diff --git a/model/src/main/java/org/cbioportal/model/GenePanelData.java b/src/main/java/org/cbioportal/model/GenePanelData.java similarity index 96% rename from model/src/main/java/org/cbioportal/model/GenePanelData.java rename to src/main/java/org/cbioportal/model/GenePanelData.java index 1529d09f762..ac1bfbf78b4 100644 --- a/model/src/main/java/org/cbioportal/model/GenePanelData.java +++ b/src/main/java/org/cbioportal/model/GenePanelData.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class GenePanelData extends UniqueKeyBase { diff --git a/model/src/main/java/org/cbioportal/model/GenePanelToGene.java b/src/main/java/org/cbioportal/model/GenePanelToGene.java similarity index 94% rename from model/src/main/java/org/cbioportal/model/GenePanelToGene.java rename to src/main/java/org/cbioportal/model/GenePanelToGene.java index bf6d80e9c9c..b09698966f3 100644 --- a/model/src/main/java/org/cbioportal/model/GenePanelToGene.java +++ b/src/main/java/org/cbioportal/model/GenePanelToGene.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class GenePanelToGene implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayAdditionalProperty.java b/src/main/java/org/cbioportal/model/GenericAssayAdditionalProperty.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenericAssayAdditionalProperty.java rename to src/main/java/org/cbioportal/model/GenericAssayAdditionalProperty.java diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayBinaryEnrichment.java b/src/main/java/org/cbioportal/model/GenericAssayBinaryEnrichment.java similarity index 89% rename from model/src/main/java/org/cbioportal/model/GenericAssayBinaryEnrichment.java rename to src/main/java/org/cbioportal/model/GenericAssayBinaryEnrichment.java index f7ccbc7c3b5..24e84145227 100644 --- a/model/src/main/java/org/cbioportal/model/GenericAssayBinaryEnrichment.java +++ b/src/main/java/org/cbioportal/model/GenericAssayBinaryEnrichment.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; import java.math.BigDecimal; import java.util.List; diff --git a/src/main/java/org/cbioportal/model/GenericAssayCategoricalEnrichment.java b/src/main/java/org/cbioportal/model/GenericAssayCategoricalEnrichment.java new file mode 100644 index 00000000000..afc72993136 --- /dev/null +++ b/src/main/java/org/cbioportal/model/GenericAssayCategoricalEnrichment.java @@ -0,0 +1,20 @@ +package org.cbioportal.model; + +import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.validation.constraints.NotNull; +import java.math.BigDecimal; + +public class GenericAssayCategoricalEnrichment extends GenericAssayEnrichment { + @NotNull + private BigDecimal qValue; + + @JsonProperty("qValue") + public BigDecimal getqValue() { + return qValue; + } + + public void setqValue(BigDecimal qValue) { + this.qValue = qValue; + } + +} diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayCountSummary.java b/src/main/java/org/cbioportal/model/GenericAssayCountSummary.java similarity index 93% rename from model/src/main/java/org/cbioportal/model/GenericAssayCountSummary.java rename to src/main/java/org/cbioportal/model/GenericAssayCountSummary.java index 2f24ed760ba..49edb224e4a 100644 --- a/model/src/main/java/org/cbioportal/model/GenericAssayCountSummary.java +++ b/src/main/java/org/cbioportal/model/GenericAssayCountSummary.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; import java.io.Serializable; public class GenericAssayCountSummary implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayData.java b/src/main/java/org/cbioportal/model/GenericAssayData.java similarity index 93% rename from model/src/main/java/org/cbioportal/model/GenericAssayData.java rename to src/main/java/org/cbioportal/model/GenericAssayData.java index 85a262219bc..3fd08f55e77 100644 --- a/model/src/main/java/org/cbioportal/model/GenericAssayData.java +++ b/src/main/java/org/cbioportal/model/GenericAssayData.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class GenericAssayData extends MolecularData implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayDataBin.java b/src/main/java/org/cbioportal/model/GenericAssayDataBin.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenericAssayDataBin.java rename to src/main/java/org/cbioportal/model/GenericAssayDataBin.java diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayDataCount.java b/src/main/java/org/cbioportal/model/GenericAssayDataCount.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenericAssayDataCount.java rename to src/main/java/org/cbioportal/model/GenericAssayDataCount.java diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayDataCountItem.java b/src/main/java/org/cbioportal/model/GenericAssayDataCountItem.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenericAssayDataCountItem.java rename to src/main/java/org/cbioportal/model/GenericAssayDataCountItem.java diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayEnrichment.java b/src/main/java/org/cbioportal/model/GenericAssayEnrichment.java similarity index 90% rename from model/src/main/java/org/cbioportal/model/GenericAssayEnrichment.java rename to src/main/java/org/cbioportal/model/GenericAssayEnrichment.java index 02491c2221b..9116783494a 100644 --- a/model/src/main/java/org/cbioportal/model/GenericAssayEnrichment.java +++ b/src/main/java/org/cbioportal/model/GenericAssayEnrichment.java @@ -4,7 +4,8 @@ import java.math.BigDecimal; import java.util.HashMap; -import javax.validation.constraints.NotNull; +import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.validation.constraints.NotNull; public class GenericAssayEnrichment extends ExpressionEnrichment implements Serializable { @@ -40,7 +41,8 @@ public HashMap getGenericEntityMetaProperties() { public void setGenericEntityMetaProperties(HashMap genericEntityMetaProperties) { this.genericEntityMetaProperties = genericEntityMetaProperties; } - + + @JsonProperty("qValue") public BigDecimal getqValue() { return qValue; } diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayMolecularAlteration.java b/src/main/java/org/cbioportal/model/GenericAssayMolecularAlteration.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenericAssayMolecularAlteration.java rename to src/main/java/org/cbioportal/model/GenericAssayMolecularAlteration.java diff --git a/model/src/main/java/org/cbioportal/model/GenericEntityProperty.java b/src/main/java/org/cbioportal/model/GenericEntityProperty.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenericEntityProperty.java rename to src/main/java/org/cbioportal/model/GenericEntityProperty.java diff --git a/model/src/main/java/org/cbioportal/model/Geneset.java b/src/main/java/org/cbioportal/model/Geneset.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/Geneset.java rename to src/main/java/org/cbioportal/model/Geneset.java diff --git a/model/src/main/java/org/cbioportal/model/GenesetCorrelation.java b/src/main/java/org/cbioportal/model/GenesetCorrelation.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenesetCorrelation.java rename to src/main/java/org/cbioportal/model/GenesetCorrelation.java diff --git a/model/src/main/java/org/cbioportal/model/GenesetHierarchyInfo.java b/src/main/java/org/cbioportal/model/GenesetHierarchyInfo.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenesetHierarchyInfo.java rename to src/main/java/org/cbioportal/model/GenesetHierarchyInfo.java diff --git a/model/src/main/java/org/cbioportal/model/GenesetMolecularAlteration.java b/src/main/java/org/cbioportal/model/GenesetMolecularAlteration.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenesetMolecularAlteration.java rename to src/main/java/org/cbioportal/model/GenesetMolecularAlteration.java diff --git a/model/src/main/java/org/cbioportal/model/GenesetMolecularData.java b/src/main/java/org/cbioportal/model/GenesetMolecularData.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenesetMolecularData.java rename to src/main/java/org/cbioportal/model/GenesetMolecularData.java diff --git a/model/src/main/java/org/cbioportal/model/GeneticEntity.java b/src/main/java/org/cbioportal/model/GeneticEntity.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GeneticEntity.java rename to src/main/java/org/cbioportal/model/GeneticEntity.java diff --git a/model/src/main/java/org/cbioportal/model/GenomicDataBin.java b/src/main/java/org/cbioportal/model/GenomicDataBin.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenomicDataBin.java rename to src/main/java/org/cbioportal/model/GenomicDataBin.java diff --git a/model/src/main/java/org/cbioportal/model/GenomicDataCount.java b/src/main/java/org/cbioportal/model/GenomicDataCount.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenomicDataCount.java rename to src/main/java/org/cbioportal/model/GenomicDataCount.java diff --git a/model/src/main/java/org/cbioportal/model/GenomicDataCountItem.java b/src/main/java/org/cbioportal/model/GenomicDataCountItem.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/GenomicDataCountItem.java rename to src/main/java/org/cbioportal/model/GenomicDataCountItem.java diff --git a/model/src/main/java/org/cbioportal/model/GenomicEnrichment.java b/src/main/java/org/cbioportal/model/GenomicEnrichment.java similarity index 93% rename from model/src/main/java/org/cbioportal/model/GenomicEnrichment.java rename to src/main/java/org/cbioportal/model/GenomicEnrichment.java index 16a63c6a7ea..a4442cf1cf1 100644 --- a/model/src/main/java/org/cbioportal/model/GenomicEnrichment.java +++ b/src/main/java/org/cbioportal/model/GenomicEnrichment.java @@ -2,7 +2,7 @@ import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class GenomicEnrichment extends ExpressionEnrichment implements Serializable { diff --git a/src/main/java/org/cbioportal/model/Gistic.java b/src/main/java/org/cbioportal/model/Gistic.java new file mode 100644 index 00000000000..66a8646e2d3 --- /dev/null +++ b/src/main/java/org/cbioportal/model/Gistic.java @@ -0,0 +1,100 @@ +package org.cbioportal.model; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.List; + +import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.validation.constraints.NotNull; + +public class Gistic implements Serializable { + + private Long gisticRoiId; + @NotNull + private String cancerStudyId; + @NotNull + private Integer chromosome; + @NotNull + private String cytoband; + @NotNull + private Integer widePeakStart; + @NotNull + private Integer widePeakEnd; + @NotNull + private BigDecimal qValue; + @NotNull + private Boolean amp; + private List genes; + + public Long getGisticRoiId() { + return gisticRoiId; + } + + public void setGisticRoiId(Long gisticRoiId) { + this.gisticRoiId = gisticRoiId; + } + + public String getCancerStudyId() { + return cancerStudyId; + } + + public void setCancerStudyId(String cancerStudyId) { + this.cancerStudyId = cancerStudyId; + } + + public Integer getChromosome() { + return chromosome; + } + + public void setChromosome(Integer chromosome) { + this.chromosome = chromosome; + } + + public String getCytoband() { + return cytoband; + } + + public void setCytoband(String cytoband) { + this.cytoband = cytoband; + } + + public Integer getWidePeakStart() { + return widePeakStart; + } + + public void setWidePeakStart(Integer widePeakStart) { + this.widePeakStart = widePeakStart; + } + + public Integer getWidePeakEnd() { + return widePeakEnd; + } + + public void setWidePeakEnd(Integer widePeakEnd) { + this.widePeakEnd = widePeakEnd; + } + @JsonProperty("qValue") + public BigDecimal getqValue() { + return qValue; + } + + public void setqValue(BigDecimal qValue) { + this.qValue = qValue; + } + + public Boolean getAmp() { + return amp; + } + + public void setAmp(Boolean amp) { + this.amp = amp; + } + + public List getGenes() { + return genes; + } + + public void setGenes(List genes) { + this.genes = genes; + } +} \ No newline at end of file diff --git a/model/src/main/java/org/cbioportal/model/GisticToGene.java b/src/main/java/org/cbioportal/model/GisticToGene.java similarity index 94% rename from model/src/main/java/org/cbioportal/model/GisticToGene.java rename to src/main/java/org/cbioportal/model/GisticToGene.java index b030f83c631..49593eedaf9 100644 --- a/model/src/main/java/org/cbioportal/model/GisticToGene.java +++ b/src/main/java/org/cbioportal/model/GisticToGene.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class GisticToGene implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/GroupStatistics.java b/src/main/java/org/cbioportal/model/GroupStatistics.java similarity index 94% rename from model/src/main/java/org/cbioportal/model/GroupStatistics.java rename to src/main/java/org/cbioportal/model/GroupStatistics.java index ce5222c9633..df0950caf02 100644 --- a/model/src/main/java/org/cbioportal/model/GroupStatistics.java +++ b/src/main/java/org/cbioportal/model/GroupStatistics.java @@ -3,7 +3,7 @@ import java.io.Serializable; import java.math.BigDecimal; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class GroupStatistics implements Serializable{ diff --git a/model/src/main/java/org/cbioportal/model/Info.java b/src/main/java/org/cbioportal/model/Info.java similarity index 98% rename from model/src/main/java/org/cbioportal/model/Info.java rename to src/main/java/org/cbioportal/model/Info.java index cfad9b4e095..beee09b26d7 100644 --- a/model/src/main/java/org/cbioportal/model/Info.java +++ b/src/main/java/org/cbioportal/model/Info.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class Info implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/MolecularAlteration.java b/src/main/java/org/cbioportal/model/MolecularAlteration.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/MolecularAlteration.java rename to src/main/java/org/cbioportal/model/MolecularAlteration.java diff --git a/model/src/main/java/org/cbioportal/model/MolecularData.java b/src/main/java/org/cbioportal/model/MolecularData.java similarity index 96% rename from model/src/main/java/org/cbioportal/model/MolecularData.java rename to src/main/java/org/cbioportal/model/MolecularData.java index d91164e9da8..260f20d9e34 100644 --- a/model/src/main/java/org/cbioportal/model/MolecularData.java +++ b/src/main/java/org/cbioportal/model/MolecularData.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public abstract class MolecularData extends UniqueKeyBase { diff --git a/model/src/main/java/org/cbioportal/model/MolecularProfile.java b/src/main/java/org/cbioportal/model/MolecularProfile.java similarity index 98% rename from model/src/main/java/org/cbioportal/model/MolecularProfile.java rename to src/main/java/org/cbioportal/model/MolecularProfile.java index 3fc68a66f5a..da172984a56 100644 --- a/model/src/main/java/org/cbioportal/model/MolecularProfile.java +++ b/src/main/java/org/cbioportal/model/MolecularProfile.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class MolecularProfile implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/MolecularProfileCaseIdentifier.java b/src/main/java/org/cbioportal/model/MolecularProfileCaseIdentifier.java similarity index 97% rename from model/src/main/java/org/cbioportal/model/MolecularProfileCaseIdentifier.java rename to src/main/java/org/cbioportal/model/MolecularProfileCaseIdentifier.java index c67e3c70979..743fee3cb0d 100644 --- a/model/src/main/java/org/cbioportal/model/MolecularProfileCaseIdentifier.java +++ b/src/main/java/org/cbioportal/model/MolecularProfileCaseIdentifier.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; import java.io.Serializable; public class MolecularProfileCaseIdentifier implements Serializable, Comparable { diff --git a/model/src/main/java/org/cbioportal/model/MolecularProfileSamples.java b/src/main/java/org/cbioportal/model/MolecularProfileSamples.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/MolecularProfileSamples.java rename to src/main/java/org/cbioportal/model/MolecularProfileSamples.java diff --git a/model/src/main/java/org/cbioportal/model/MrnaPercentile.java b/src/main/java/org/cbioportal/model/MrnaPercentile.java similarity index 92% rename from model/src/main/java/org/cbioportal/model/MrnaPercentile.java rename to src/main/java/org/cbioportal/model/MrnaPercentile.java index 3fdfe9b7d60..278e65eb61b 100644 --- a/model/src/main/java/org/cbioportal/model/MrnaPercentile.java +++ b/src/main/java/org/cbioportal/model/MrnaPercentile.java @@ -1,7 +1,9 @@ package org.cbioportal.model; import java.math.BigDecimal; -import javax.validation.constraints.NotNull; + +import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.validation.constraints.NotNull; public class MrnaPercentile extends UniqueKeyBase { @@ -68,6 +70,7 @@ public void setPercentile(BigDecimal percentile) { this.percentile = percentile; } + @JsonProperty("zScore") public BigDecimal getzScore() { return zScore; } diff --git a/src/main/java/org/cbioportal/model/MutSig.java b/src/main/java/org/cbioportal/model/MutSig.java new file mode 100644 index 00000000000..1d60c06e801 --- /dev/null +++ b/src/main/java/org/cbioportal/model/MutSig.java @@ -0,0 +1,101 @@ +package org.cbioportal.model; + +import java.io.Serializable; +import java.math.BigDecimal; + +import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.validation.constraints.NotNull; + +public class MutSig implements Serializable { + + private Integer cancerStudyId; + @NotNull + private String cancerStudyIdentifier; + @NotNull + private Integer entrezGeneId; + @NotNull + private String hugoGeneSymbol; + @NotNull + private Integer rank; + private Integer numbasescovered; + @NotNull + private Integer nummutations; + @NotNull + private BigDecimal pValue; + @NotNull + private BigDecimal qValue; + + public Integer getCancerStudyId() { + return cancerStudyId; + } + + public void setCancerStudyId(Integer cancerStudyId) { + this.cancerStudyId = cancerStudyId; + } + + public String getCancerStudyIdentifier() { + return cancerStudyIdentifier; + } + + public void setCancerStudyIdentifier(String cancerStudyIdentifier) { + this.cancerStudyIdentifier = cancerStudyIdentifier; + } + + public Integer getEntrezGeneId() { + return entrezGeneId; + } + + public void setEntrezGeneId(Integer entrezGeneId) { + this.entrezGeneId = entrezGeneId; + } + + public String getHugoGeneSymbol() { + return hugoGeneSymbol; + } + + public void setHugoGeneSymbol(String hugoGeneSymbol) { + this.hugoGeneSymbol = hugoGeneSymbol; + } + + public Integer getRank() { + return rank; + } + + public void setRank(Integer rank) { + this.rank = rank; + } + + public Integer getNumbasescovered() { + return numbasescovered; + } + + public void setNumbasescovered(Integer numbasescovered) { + this.numbasescovered = numbasescovered; + } + + public Integer getNummutations() { + return nummutations; + } + + public void setNummutations(Integer nummutations) { + this.nummutations = nummutations; + } + + @JsonProperty("pValue") + public BigDecimal getpValue() { + return pValue; + } + + public void setpValue(BigDecimal pValue) { + this.pValue = pValue; + } + + @JsonProperty("qValue") + public BigDecimal getqValue() { + return qValue; + } + + public void setqValue(BigDecimal qValue) { + this.qValue = qValue; + } +} \ No newline at end of file diff --git a/model/src/main/java/org/cbioportal/model/Mutation.java b/src/main/java/org/cbioportal/model/Mutation.java similarity index 96% rename from model/src/main/java/org/cbioportal/model/Mutation.java rename to src/main/java/org/cbioportal/model/Mutation.java index 62fc787e288..3ddae915587 100644 --- a/model/src/main/java/org/cbioportal/model/Mutation.java +++ b/src/main/java/org/cbioportal/model/Mutation.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import com.fasterxml.jackson.annotation.JsonRawValue; -import io.swagger.annotations.ApiModelProperty; +import io.swagger.v3.oas.annotations.media.Schema; import java.io.Serializable; import java.math.BigDecimal; @@ -31,8 +31,8 @@ public class Mutation extends Alteration implements Serializable { private String keyword; private AlleleSpecificCopyNumber alleleSpecificCopyNumber; @JsonRawValue - @ApiModelProperty(dataType = "java.util.Map") - private String annotationJSON; + @Schema(type = "java.util.Map") + private Object annotationJSON; public String getCenter() { return center; @@ -205,7 +205,7 @@ public void setAlleleSpecificCopyNumber(AlleleSpecificCopyNumber alleleSpecificC this.alleleSpecificCopyNumber = alleleSpecificCopyNumber; } - public String getAnnotationJSON() { + public Object getAnnotationJSON() { return annotationJSON; } diff --git a/model/src/main/java/org/cbioportal/model/MutationCountByGene.java b/src/main/java/org/cbioportal/model/MutationCountByGene.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/MutationCountByGene.java rename to src/main/java/org/cbioportal/model/MutationCountByGene.java diff --git a/model/src/main/java/org/cbioportal/model/MutationCountByPosition.java b/src/main/java/org/cbioportal/model/MutationCountByPosition.java similarity index 95% rename from model/src/main/java/org/cbioportal/model/MutationCountByPosition.java rename to src/main/java/org/cbioportal/model/MutationCountByPosition.java index b7dde3cc841..f92b2fb1d17 100644 --- a/model/src/main/java/org/cbioportal/model/MutationCountByPosition.java +++ b/src/main/java/org/cbioportal/model/MutationCountByPosition.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class MutationCountByPosition implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/MutationEventType.java b/src/main/java/org/cbioportal/model/MutationEventType.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/MutationEventType.java rename to src/main/java/org/cbioportal/model/MutationEventType.java diff --git a/model/src/main/java/org/cbioportal/model/MutationSpectrum.java b/src/main/java/org/cbioportal/model/MutationSpectrum.java similarity index 97% rename from model/src/main/java/org/cbioportal/model/MutationSpectrum.java rename to src/main/java/org/cbioportal/model/MutationSpectrum.java index 9843e942be5..f130728b86d 100644 --- a/model/src/main/java/org/cbioportal/model/MutationSpectrum.java +++ b/src/main/java/org/cbioportal/model/MutationSpectrum.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class MutationSpectrum extends UniqueKeyBase { diff --git a/model/src/main/java/org/cbioportal/model/NumericGeneMolecularData.java b/src/main/java/org/cbioportal/model/NumericGeneMolecularData.java similarity index 97% rename from model/src/main/java/org/cbioportal/model/NumericGeneMolecularData.java rename to src/main/java/org/cbioportal/model/NumericGeneMolecularData.java index 5f8d9339f16..3e519807477 100644 --- a/model/src/main/java/org/cbioportal/model/NumericGeneMolecularData.java +++ b/src/main/java/org/cbioportal/model/NumericGeneMolecularData.java @@ -2,7 +2,7 @@ import java.math.BigDecimal; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class NumericGeneMolecularData extends UniqueKeyBase { diff --git a/src/main/java/org/cbioportal/model/Patient.java b/src/main/java/org/cbioportal/model/Patient.java new file mode 100644 index 00000000000..4d2a2f1d9a6 --- /dev/null +++ b/src/main/java/org/cbioportal/model/Patient.java @@ -0,0 +1,54 @@ +package org.cbioportal.model; + +import jakarta.validation.constraints.NotNull; + +public class Patient extends UniqueKeyBase { + + private Integer internalId; + @NotNull + private String stableId; + private Integer cancerStudyId; + @NotNull + private String cancerStudyIdentifier; + private CancerStudy cancerStudy; + + public Integer getInternalId() { + return internalId; + } + + public void setInternalId(Integer internalId) { + this.internalId = internalId; + } + + public String getStableId() { + return stableId; + } + + public void setStableId(String stableId) { + this.stableId = stableId; + } + + public Integer getCancerStudyId() { + return cancerStudyId; + } + + public void setCancerStudyId(Integer cancerStudyId) { + this.cancerStudyId = cancerStudyId; + } + + public String getCancerStudyIdentifier() { + return cancerStudyIdentifier; + } + + public void setCancerStudyIdentifier(String cancerStudyIdentifier) { + this.cancerStudyIdentifier = cancerStudyIdentifier; + } + + public CancerStudy getCancerStudy() { + return cancerStudy; + } + + public void setCancerStudy(CancerStudy cancerStudy) { + this.cancerStudy = cancerStudy; + } +} \ No newline at end of file diff --git a/model/src/main/java/org/cbioportal/model/PatientTreatmentRow.java b/src/main/java/org/cbioportal/model/PatientTreatmentRow.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/PatientTreatmentRow.java rename to src/main/java/org/cbioportal/model/PatientTreatmentRow.java diff --git a/model/src/main/java/org/cbioportal/model/QueryElement.java b/src/main/java/org/cbioportal/model/QueryElement.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/QueryElement.java rename to src/main/java/org/cbioportal/model/QueryElement.java diff --git a/model/src/main/java/org/cbioportal/model/ReadPermission.java b/src/main/java/org/cbioportal/model/ReadPermission.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ReadPermission.java rename to src/main/java/org/cbioportal/model/ReadPermission.java diff --git a/model/src/main/java/org/cbioportal/model/ReferenceGenome.java b/src/main/java/org/cbioportal/model/ReferenceGenome.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ReferenceGenome.java rename to src/main/java/org/cbioportal/model/ReferenceGenome.java diff --git a/src/main/java/org/cbioportal/model/ReferenceGenomeGene.java b/src/main/java/org/cbioportal/model/ReferenceGenomeGene.java new file mode 100644 index 00000000000..34ff3d82c9f --- /dev/null +++ b/src/main/java/org/cbioportal/model/ReferenceGenomeGene.java @@ -0,0 +1,81 @@ +/* + * This file is part of cBioPortal. + * + * cBioPortal is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package org.cbioportal.model; + +import java.io.Serializable; +import java.net.Inet4Address; +import jakarta.validation.constraints.NotNull; + +/** + * Class to wrap Reference Genome Gene. + * @author Kelsey Zhu + */ +public class ReferenceGenomeGene implements Serializable { + @NotNull + private Integer referenceGenomeId; + @NotNull + private Integer entrezGeneId; + private String hugoGeneSymbol; + private String chromosome; + private String cytoband; + private Long start; + private Long end; + + public void setReferenceGenomeId(Integer referenceGenomeId) { this.referenceGenomeId = referenceGenomeId; } + + public Integer getReferenceGenomeId() { + return referenceGenomeId; + } + + public Integer getEntrezGeneId() { return entrezGeneId; } + + public void setEntrezGeneId(Integer entrezGeneId) { this.entrezGeneId = entrezGeneId; } + + public String getHugoGeneSymbol() { + return hugoGeneSymbol; + } + + public void setHugoGeneSymbol(String hugoGeneSymbol) { + this.hugoGeneSymbol = hugoGeneSymbol; + } + + public String getChromosome() { + return chromosome; + } + + public void setChromosome(String chromosome) { + this.chromosome = chromosome; + } + + public String getCytoband() { + return cytoband; + } + + public void setCytoband(String cytoband) { + this.cytoband = cytoband; + } + + public Long getStart() { return this.start; } + + public void setStart(Long start) { this.start = start; } + + public Long getEnd() { return this.end; } + + public void setEnd(Long end) { this.end = end; } + +} diff --git a/model/src/main/java/org/cbioportal/model/ResourceData.java b/src/main/java/org/cbioportal/model/ResourceData.java similarity index 96% rename from model/src/main/java/org/cbioportal/model/ResourceData.java rename to src/main/java/org/cbioportal/model/ResourceData.java index a1de2182599..243b86af47c 100644 --- a/model/src/main/java/org/cbioportal/model/ResourceData.java +++ b/src/main/java/org/cbioportal/model/ResourceData.java @@ -2,7 +2,7 @@ import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class ResourceData extends UniqueKeyBase implements Serializable { diff --git a/src/main/java/org/cbioportal/model/ResourceDefinition.java b/src/main/java/org/cbioportal/model/ResourceDefinition.java new file mode 100644 index 00000000000..73eacd6f287 --- /dev/null +++ b/src/main/java/org/cbioportal/model/ResourceDefinition.java @@ -0,0 +1,76 @@ +package org.cbioportal.model; + +import java.io.Serializable; +import jakarta.validation.constraints.NotNull; + +public class ResourceDefinition implements Serializable { + + @NotNull + private String resourceId; + @NotNull + private String displayName; + private String description; + @NotNull + private ResourceType resourceType; + private String priority; + private Boolean openByDefault; + @NotNull + private String cancerStudyIdentifier; + + public String getResourceId() { + return resourceId; + } + + public void setResourceId(String resourceId) { + this.resourceId = resourceId; + } + + public String getDisplayName() { + return displayName; + } + + public void setDisplayName(String displayName) { + this.displayName = displayName; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public ResourceType getResourceType() { + return resourceType; + } + + public void setResourceType(ResourceType resourceType) { + this.resourceType = resourceType; + } + + public String getPriority() { + return priority; + } + + public void setPriority(String priority) { + this.priority = priority; + } + + public Boolean getOpenByDefault() { + return openByDefault; + } + + public void setOpenByDefault(Boolean openByDefault) { + this.openByDefault = openByDefault; + } + + public String getCancerStudyIdentifier() { + return cancerStudyIdentifier; + } + + public void setCancerStudyIdentifier(String cancerStudyIdentifier) { + this.cancerStudyIdentifier = cancerStudyIdentifier; + } + +} diff --git a/model/src/main/java/org/cbioportal/model/ResourceType.java b/src/main/java/org/cbioportal/model/ResourceType.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/ResourceType.java rename to src/main/java/org/cbioportal/model/ResourceType.java diff --git a/src/main/java/org/cbioportal/model/Sample.java b/src/main/java/org/cbioportal/model/Sample.java new file mode 100644 index 00000000000..a3d72e955ce --- /dev/null +++ b/src/main/java/org/cbioportal/model/Sample.java @@ -0,0 +1,141 @@ +package org.cbioportal.model; + +import jakarta.validation.constraints.NotNull; +import java.util.Objects; + +public class Sample extends UniqueKeyBase { + + public enum SampleType { + + PRIMARY_SOLID_TUMOR("Primary Solid Tumor"), + RECURRENT_SOLID_TUMOR("Recurrent Solid Tumor"), + PRIMARY_BLOOD_TUMOR("Primary Blood Tumor"), + RECURRENT_BLOOD_TUMOR("Recurrent Blood Tumor"), + METASTATIC("Metastatic"), + BLOOD_NORMAL("Blood Derived Normal"), + SOLID_NORMAL("Solid Tissues Normal"); + + private String value; + + SampleType(String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + public static SampleType fromString(String value) { + + if (value != null) { + for (SampleType sampleType : SampleType.values()) { + if (value.equalsIgnoreCase(sampleType.value)) { + return sampleType; + } + } + } + return null; + } + + @Override + public String toString() { + return value; + } + } + + private Integer internalId; + @NotNull + private String stableId; + private SampleType sampleType; + private Integer patientId; + @NotNull + private String patientStableId; + private Patient patient; + @NotNull + private String cancerStudyIdentifier; + private Boolean sequenced; + private Boolean copyNumberSegmentPresent; + + public Integer getInternalId() { + return internalId; + } + + public void setInternalId(Integer internalId) { + this.internalId = internalId; + } + + public String getStableId() { + return stableId; + } + + public void setStableId(String stableId) { + this.stableId = stableId; + } + + public SampleType getSampleType() { + return sampleType; + } + + public void setSampleType(SampleType sampleType) { + this.sampleType = sampleType; + } + + public Integer getPatientId() { + return patientId; + } + + public void setPatientId(Integer patientId) { + this.patientId = patientId; + } + + public String getPatientStableId() { + return patientStableId; + } + + public void setPatientStableId(String patientStableId) { + this.patientStableId = patientStableId; + } + + public Patient getPatient() { + return patient; + } + + public void setPatient(Patient patient) { + this.patient = patient; + } + + public String getCancerStudyIdentifier() { + return cancerStudyIdentifier; + } + + public void setCancerStudyIdentifier(String cancerStudyIdentifier) { + this.cancerStudyIdentifier = cancerStudyIdentifier; + } + + public Boolean getSequenced() { + return sequenced; + } + + public void setSequenced(Boolean sequenced) { + this.sequenced = sequenced; + } + + public Boolean getCopyNumberSegmentPresent() { return copyNumberSegmentPresent; } + + public void setCopyNumberSegmentPresent(Boolean copyNumberSegmentPresent) { + this.copyNumberSegmentPresent = copyNumberSegmentPresent; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (!(o instanceof Sample)) return false; + Sample sample = (Sample) o; + return getStableId().equals(sample.getStableId()) && getCancerStudyIdentifier().equals(sample.getCancerStudyIdentifier()); + } + + @Override + public int hashCode() { + return Objects.hash(getStableId(), getCancerStudyIdentifier()); + } +} diff --git a/src/main/java/org/cbioportal/model/SampleList.java b/src/main/java/org/cbioportal/model/SampleList.java new file mode 100644 index 00000000000..bda4d2fc681 --- /dev/null +++ b/src/main/java/org/cbioportal/model/SampleList.java @@ -0,0 +1,101 @@ +package org.cbioportal.model; + +import java.io.Serializable; +import java.util.List; + +import jakarta.validation.constraints.NotNull; + +public class SampleList implements Serializable { + + private Integer listId; + @NotNull + private String stableId; + private String category; + private Integer cancerStudyId; + private String cancerStudyIdentifier; + private CancerStudy cancerStudy; + private String name; + private String description; + private Integer sampleCount; + private List sampleIds; + + public Integer getListId() { + return listId; + } + + public void setListId(Integer listId) { + this.listId = listId; + } + + public String getStableId() { + return stableId; + } + + public void setStableId(String stableId) { + this.stableId = stableId; + } + + public String getCategory() { + return category; + } + + public void setCategory(String category) { + this.category = category; + } + + public Integer getCancerStudyId() { + return cancerStudyId; + } + + public void setCancerStudyId(Integer cancerStudyId) { + this.cancerStudyId = cancerStudyId; + } + + public String getCancerStudyIdentifier() { + return cancerStudyIdentifier; + } + + public void setCancerStudyIdentifier(String cancerStudyIdentifier) { + this.cancerStudyIdentifier = cancerStudyIdentifier; + } + + public CancerStudy getCancerStudy() { + return cancerStudy; + } + + public void setCancerStudy(CancerStudy cancerStudy) { + this.cancerStudy = cancerStudy; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public Integer getSampleCount() { + return sampleCount; + } + + public void setSampleCount(Integer sampleCount) { + this.sampleCount = sampleCount; + } + + public List getSampleIds() { + return sampleIds; + } + + public void setSampleIds(List sampleIds) { + this.sampleIds = sampleIds; + } +} diff --git a/model/src/main/java/org/cbioportal/model/SampleListToSampleId.java b/src/main/java/org/cbioportal/model/SampleListToSampleId.java similarity index 91% rename from model/src/main/java/org/cbioportal/model/SampleListToSampleId.java rename to src/main/java/org/cbioportal/model/SampleListToSampleId.java index 3cd7b659984..bfbdb9f548b 100644 --- a/model/src/main/java/org/cbioportal/model/SampleListToSampleId.java +++ b/src/main/java/org/cbioportal/model/SampleListToSampleId.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class SampleListToSampleId implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/SampleTreatmentRow.java b/src/main/java/org/cbioportal/model/SampleTreatmentRow.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/SampleTreatmentRow.java rename to src/main/java/org/cbioportal/model/SampleTreatmentRow.java diff --git a/src/main/java/org/cbioportal/model/StructuralVariant.java b/src/main/java/org/cbioportal/model/StructuralVariant.java new file mode 100644 index 00000000000..3c803a1b337 --- /dev/null +++ b/src/main/java/org/cbioportal/model/StructuralVariant.java @@ -0,0 +1,460 @@ +/* + * Copyright (c) 2018 - 2022 The Hyve B.V. + * This code is licensed under the GNU Affero General Public License (AGPL), + * version 3, or (at your option) any later version. + */ + +/* + * This file is part of cBioPortal. + * + * cBioPortal is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package org.cbioportal.model; + +import com.fasterxml.jackson.annotation.*; +import io.swagger.v3.oas.annotations.media.Schema; +import org.cbioportal.model.UniqueKeyBase; + +import java.io.Serializable; + +public class StructuralVariant extends UniqueKeyBase implements Serializable { + + private String molecularProfileId; + private String sampleId; + private String patientId; + private String studyId; + private Integer site1EntrezGeneId; + private String site1HugoSymbol; + private String site1EnsemblTranscriptId; + private String site1Chromosome; + private Integer site1Position; + private String site1Contig; + private String site1Region; + private Integer site1RegionNumber; + private String site1Description; + private Integer site2EntrezGeneId; + private String site2HugoSymbol; + private String site2EnsemblTranscriptId; + private String site2Chromosome; + private Integer site2Position; + private String site2Contig; + private String site2Region; + private Integer site2RegionNumber; + private String site2Description; + private String site2EffectOnFrame; + private String ncbiBuild; + private String dnaSupport; + private String rnaSupport; + private Integer normalReadCount; + private Integer tumorReadCount; + private Integer normalVariantCount; + private Integer tumorVariantCount; + private Integer normalPairedEndReadCount; + private Integer tumorPairedEndReadCount; + private Integer normalSplitReadCount; + private Integer tumorSplitReadCount; + private String annotation; + private String breakpointType; + private String connectionType; + private String eventInfo; + private String variantClass; + private Integer length; + private String comments; + private String driverFilter; + private String driverFilterAnn; + private String driverTiersFilter; + private String driverTiersFilterAnn; + private String svStatus; + + @JsonRawValue + @Schema(type = "java.util.Map") + private Object annotationJson; + + public String getMolecularProfileId() { + return molecularProfileId; + } + + public void setMolecularProfileId(String molecularProfileId) { + this.molecularProfileId = molecularProfileId; + } + + public String getSampleId() { + return sampleId; + } + + public void setSampleId(String tumorSampleBarcode) { + this.sampleId = tumorSampleBarcode; + } + + public String getPatientId() { + return patientId; + } + + public void setPatientId(String patientId) { + this.patientId = patientId; + } + + public String getStudyId() { + return studyId; + } + + public void setStudyId(String studyId) { + this.studyId = studyId; + } + + public Integer getSite1EntrezGeneId() { + return site1EntrezGeneId; + } + + public void setSite1EntrezGeneId(Integer site1EntrezGeneId) { + this.site1EntrezGeneId = site1EntrezGeneId; + } + + public String getSite1HugoSymbol() { + return site1HugoSymbol; + } + + public void setSite1HugoSymbol(String site1HugoSymbol) { + this.site1HugoSymbol = site1HugoSymbol; + } + + public String getSite1EnsemblTranscriptId() { + return site1EnsemblTranscriptId; + } + + public void setSite1EnsemblTranscriptId(String site1TranscriptId) { + this.site1EnsemblTranscriptId = site1TranscriptId; + } + + public String getSite1Chromosome() { + return site1Chromosome; + } + + public void setSite1Chromosome(String site1Chrom) { + this.site1Chromosome = site1Chrom; + } + + public Integer getSite1Position() { + return site1Position; + } + + public void setSite1Position(Integer site1Pos) { + this.site1Position = site1Pos; + } + + public String getSite1Description() { + return site1Description; + } + + public void setSite1Description(String site1Desc) { + this.site1Description = site1Desc; + } + + public Integer getSite2EntrezGeneId() { + return site2EntrezGeneId; + } + + public void setSite2EntrezGeneId(Integer site2EntrezGeneId) { + this.site2EntrezGeneId = site2EntrezGeneId; + } + + public String getSite2HugoSymbol() { + return site2HugoSymbol; + } + + public void setSite2HugoSymbol(String site2HugoSymbol) { + this.site2HugoSymbol = site2HugoSymbol; + } + + public String getSite2EnsemblTranscriptId() { + return site2EnsemblTranscriptId; + } + + public void setSite2EnsemblTranscriptId(String site2TranscriptId) { + this.site2EnsemblTranscriptId = site2TranscriptId; + } + + public String getSite2Chromosome() { + return site2Chromosome; + } + + public void setSite2Chromosome(String site2Chrom) { + this.site2Chromosome = site2Chrom; + } + + public Integer getSite2Position() { + return site2Position; + } + + public void setSite2Position(Integer site2Pos) { + this.site2Position = site2Pos; + } + + public String getSite2Description() { + return site2Description; + } + + public void setSite2Description(String site2Desc) { + this.site2Description = site2Desc; + } + + public String getSite2EffectOnFrame() { + return site2EffectOnFrame; + } + + public void setSite2EffectOnFrame(String site2EffectOnFrame) { + this.site2EffectOnFrame = site2EffectOnFrame; + } + + public String getNcbiBuild() { + return ncbiBuild; + } + + public void setNcbiBuild(String ncbiBuild) { + this.ncbiBuild = ncbiBuild; + } + + public String getDnaSupport() { + return dnaSupport; + } + + public void setDnaSupport(String dnaSupport) { + this.dnaSupport = dnaSupport; + } + + public String getRnaSupport() { + return rnaSupport; + } + + public void setRnaSupport(String rnaSupport) { + this.rnaSupport = rnaSupport; + } + + public Integer getNormalReadCount() { + return normalReadCount; + } + + public void setNormalReadCount(Integer normalReadCount) { + this.normalReadCount = normalReadCount; + } + + public Integer getTumorReadCount() { + return tumorReadCount; + } + + public void setTumorReadCount(Integer tumorReadCount) { + this.tumorReadCount = tumorReadCount; + } + + public Integer getNormalVariantCount() { + return normalVariantCount; + } + + public void setNormalVariantCount(Integer normalVariantCount) { + this.normalVariantCount = normalVariantCount; + } + + public Integer getTumorVariantCount() { + return tumorVariantCount; + } + + public void setTumorVariantCount(Integer tumorVariantCount) { + this.tumorVariantCount = tumorVariantCount; + } + + public Integer getNormalPairedEndReadCount() { + return normalPairedEndReadCount; + } + + public void setNormalPairedEndReadCount(Integer normalPairedEndReadCount) { + this.normalPairedEndReadCount = normalPairedEndReadCount; + } + + public Integer getTumorPairedEndReadCount() { + return tumorPairedEndReadCount; + } + + public void setTumorPairedEndReadCount(Integer tumorPairedEndReadCount) { + this.tumorPairedEndReadCount = tumorPairedEndReadCount; + } + + public Integer getNormalSplitReadCount() { + return normalSplitReadCount; + } + + public void setNormalSplitReadCount(Integer normalSplitReadCount) { + this.normalSplitReadCount = normalSplitReadCount; + } + + public Integer getTumorSplitReadCount() { + return tumorSplitReadCount; + } + + public void setTumorSplitReadCount(Integer tumorSplitReadCount) { + this.tumorSplitReadCount = tumorSplitReadCount; + } + + public String getAnnotation() { + return annotation; + } + + public void setAnnotation(String annotation) { + this.annotation = annotation; + } + + public String getBreakpointType() { + return breakpointType; + } + + public void setBreakpointType(String breakpointType) { + this.breakpointType = breakpointType; + } + + public String getConnectionType() { + return connectionType; + } + + public void setConnectionType(String connectionType) { + this.connectionType = connectionType; + } + + public String getEventInfo() { + return eventInfo; + } + + public void setEventInfo(String eventInfo) { + this.eventInfo = eventInfo; + } + + public String getVariantClass() { + return variantClass; + } + + public void setVariantClass(String variantClass) { + this.variantClass = variantClass; + } + + public Integer getLength() { + return length; + } + + public void setLength(Integer length) { + this.length = length; + } + + public String getComments() { + return comments; + } + + public void setComments(String comments) { + this.comments = comments; + } + + public String getDriverFilter() { + return driverFilter; + } + + public void setDriverFilter(String driverFilter) { + this.driverFilter = driverFilter; + } + + public String getDriverFilterAnn() { + return driverFilterAnn; + } + + public void setDriverFilterAnn(String driverFilterAnn) { + this.driverFilterAnn = driverFilterAnn; + } + + public String getDriverTiersFilter() { + return driverTiersFilter; + } + + public void setDriverTiersFilter(String driverTiersFilter) { + this.driverTiersFilter = driverTiersFilter; + } + + public String getDriverTiersFilterAnn() { + return driverTiersFilterAnn; + } + + public void setDriverTiersFilterAnn(String driverTiersFilterAnn) { + this.driverTiersFilterAnn = driverTiersFilterAnn; + } + + public String getSvStatus() { + return svStatus; + } + + public void setSvStatus(String svStatus) { + this.svStatus = svStatus; + } + + public String getSite1Contig() { + return site1Contig; + } + + public void setSite1Contig(String site1Contig) { + this.site1Contig = site1Contig; + } + + public String getSite1Region() { + return site1Region; + } + + public void setSite1Region(String site1Region) { + this.site1Region = site1Region; + } + + public Integer getSite1RegionNumber() { + return site1RegionNumber; + } + + public void setSite1RegionNumber(Integer site1RegionNumber) { + this.site1RegionNumber = site1RegionNumber; + } + + public String getSite2Contig() { + return site2Contig; + } + + public void setSite2Contig(String site2Contig) { + this.site2Contig = site2Contig; + } + + public String getSite2Region() { + return site2Region; + } + + public void setSite2Region(String site2Region) { + this.site2Region = site2Region; + } + + public Integer getSite2RegionNumber() { + return site2RegionNumber; + } + + public void setSite2RegionNumber(Integer site2RegionNumber) { + this.site2RegionNumber = site2RegionNumber; + } + + public Object getAnnotationJson() { + return annotationJson; + } + + public void setAnnotationJson(String annotationJson) { + this.annotationJson = annotationJson; + } +} diff --git a/model/src/main/java/org/cbioportal/model/StructuralVariantFilterQuery.java b/src/main/java/org/cbioportal/model/StructuralVariantFilterQuery.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/StructuralVariantFilterQuery.java rename to src/main/java/org/cbioportal/model/StructuralVariantFilterQuery.java diff --git a/model/src/main/java/org/cbioportal/model/StructuralVariantGeneSubQuery.java b/src/main/java/org/cbioportal/model/StructuralVariantGeneSubQuery.java similarity index 97% rename from model/src/main/java/org/cbioportal/model/StructuralVariantGeneSubQuery.java rename to src/main/java/org/cbioportal/model/StructuralVariantGeneSubQuery.java index e393e0c2d58..224ba6bec2a 100644 --- a/model/src/main/java/org/cbioportal/model/StructuralVariantGeneSubQuery.java +++ b/src/main/java/org/cbioportal/model/StructuralVariantGeneSubQuery.java @@ -3,7 +3,7 @@ import com.fasterxml.jackson.annotation.JsonIgnore; import org.springframework.lang.Nullable; -import javax.validation.constraints.AssertTrue; +import jakarta.validation.constraints.AssertTrue; import java.io.Serializable; public class StructuralVariantGeneSubQuery implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/StructuralVariantQuery.java b/src/main/java/org/cbioportal/model/StructuralVariantQuery.java similarity index 96% rename from model/src/main/java/org/cbioportal/model/StructuralVariantQuery.java rename to src/main/java/org/cbioportal/model/StructuralVariantQuery.java index a6ba42decf8..6dc8856869e 100644 --- a/model/src/main/java/org/cbioportal/model/StructuralVariantQuery.java +++ b/src/main/java/org/cbioportal/model/StructuralVariantQuery.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.Valid; +import jakarta.validation.Valid; import java.io.Serializable; public class StructuralVariantQuery implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/StructuralVariantSpecialValue.java b/src/main/java/org/cbioportal/model/StructuralVariantSpecialValue.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/StructuralVariantSpecialValue.java rename to src/main/java/org/cbioportal/model/StructuralVariantSpecialValue.java diff --git a/model/src/main/java/org/cbioportal/model/StudyViewStructuralVariantFilter.java b/src/main/java/org/cbioportal/model/StudyViewStructuralVariantFilter.java similarity index 98% rename from model/src/main/java/org/cbioportal/model/StudyViewStructuralVariantFilter.java rename to src/main/java/org/cbioportal/model/StudyViewStructuralVariantFilter.java index 84584fb7a59..d4ae0879873 100644 --- a/model/src/main/java/org/cbioportal/model/StudyViewStructuralVariantFilter.java +++ b/src/main/java/org/cbioportal/model/StudyViewStructuralVariantFilter.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.constraints.AssertTrue; +import jakarta.validation.constraints.AssertTrue; import java.io.Serializable; import java.util.List; import java.util.Set; diff --git a/model/src/main/java/org/cbioportal/model/TableTimestampPair.java b/src/main/java/org/cbioportal/model/TableTimestampPair.java similarity index 91% rename from model/src/main/java/org/cbioportal/model/TableTimestampPair.java rename to src/main/java/org/cbioportal/model/TableTimestampPair.java index 5d00e428c72..1587bfc8e85 100644 --- a/model/src/main/java/org/cbioportal/model/TableTimestampPair.java +++ b/src/main/java/org/cbioportal/model/TableTimestampPair.java @@ -1,6 +1,6 @@ package org.cbioportal.model; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; import java.io.Serializable; public class TableTimestampPair implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/TemporalRelation.java b/src/main/java/org/cbioportal/model/TemporalRelation.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/TemporalRelation.java rename to src/main/java/org/cbioportal/model/TemporalRelation.java diff --git a/model/src/main/java/org/cbioportal/model/Treatment.java b/src/main/java/org/cbioportal/model/Treatment.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/Treatment.java rename to src/main/java/org/cbioportal/model/Treatment.java diff --git a/model/src/main/java/org/cbioportal/model/TreatmentRow.java b/src/main/java/org/cbioportal/model/TreatmentRow.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/TreatmentRow.java rename to src/main/java/org/cbioportal/model/TreatmentRow.java diff --git a/src/main/java/org/cbioportal/model/TypeOfCancer.java b/src/main/java/org/cbioportal/model/TypeOfCancer.java new file mode 100644 index 00000000000..6c564c3e37a --- /dev/null +++ b/src/main/java/org/cbioportal/model/TypeOfCancer.java @@ -0,0 +1,54 @@ +package org.cbioportal.model; + +import java.io.Serializable; +import jakarta.validation.constraints.NotNull; + +public class TypeOfCancer implements Serializable { + + @NotNull + private String typeOfCancerId; + private String name; + private String dedicatedColor; + private String shortName; + private String parent; + + public String getTypeOfCancerId() { + return typeOfCancerId; + } + + public void setTypeOfCancerId(String typeOfCancerId) { + this.typeOfCancerId = typeOfCancerId; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getDedicatedColor() { + return dedicatedColor; + } + + public void setDedicatedColor(String dedicatedColor) { + this.dedicatedColor = dedicatedColor; + } + + public String getShortName() { + return shortName; + } + + public void setShortName(String shortName) { + this.shortName = shortName; + } + + public String getParent() { + return parent; + } + + public void setParent(String parent) { + this.parent = parent; + } +} \ No newline at end of file diff --git a/model/src/main/java/org/cbioportal/model/UniqueKeyBase.java b/src/main/java/org/cbioportal/model/UniqueKeyBase.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/UniqueKeyBase.java rename to src/main/java/org/cbioportal/model/UniqueKeyBase.java diff --git a/model/src/main/java/org/cbioportal/model/User.java b/src/main/java/org/cbioportal/model/User.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/User.java rename to src/main/java/org/cbioportal/model/User.java diff --git a/model/src/main/java/org/cbioportal/model/UserAuthorities.java b/src/main/java/org/cbioportal/model/UserAuthorities.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/UserAuthorities.java rename to src/main/java/org/cbioportal/model/UserAuthorities.java diff --git a/model/src/main/java/org/cbioportal/model/VariantCount.java b/src/main/java/org/cbioportal/model/VariantCount.java similarity index 97% rename from model/src/main/java/org/cbioportal/model/VariantCount.java rename to src/main/java/org/cbioportal/model/VariantCount.java index bf7cec87798..fdc43b721cb 100644 --- a/model/src/main/java/org/cbioportal/model/VariantCount.java +++ b/src/main/java/org/cbioportal/model/VariantCount.java @@ -1,7 +1,7 @@ package org.cbioportal.model; import java.io.Serializable; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; public class VariantCount implements Serializable { diff --git a/model/src/main/java/org/cbioportal/model/meta/BaseMeta.java b/src/main/java/org/cbioportal/model/meta/BaseMeta.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/meta/BaseMeta.java rename to src/main/java/org/cbioportal/model/meta/BaseMeta.java diff --git a/model/src/main/java/org/cbioportal/model/meta/GenericAssayMeta.java b/src/main/java/org/cbioportal/model/meta/GenericAssayMeta.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/meta/GenericAssayMeta.java rename to src/main/java/org/cbioportal/model/meta/GenericAssayMeta.java diff --git a/model/src/main/java/org/cbioportal/model/meta/MutationMeta.java b/src/main/java/org/cbioportal/model/meta/MutationMeta.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/meta/MutationMeta.java rename to src/main/java/org/cbioportal/model/meta/MutationMeta.java diff --git a/model/src/main/java/org/cbioportal/model/util/QueryElement.java b/src/main/java/org/cbioportal/model/util/QueryElement.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/util/QueryElement.java rename to src/main/java/org/cbioportal/model/util/QueryElement.java diff --git a/model/src/main/java/org/cbioportal/model/util/Select.java b/src/main/java/org/cbioportal/model/util/Select.java similarity index 100% rename from model/src/main/java/org/cbioportal/model/util/Select.java rename to src/main/java/org/cbioportal/model/util/Select.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/AlterationDriverAnnotationRepository.java b/src/main/java/org/cbioportal/persistence/AlterationDriverAnnotationRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/AlterationDriverAnnotationRepository.java rename to src/main/java/org/cbioportal/persistence/AlterationDriverAnnotationRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/AlterationRepository.java b/src/main/java/org/cbioportal/persistence/AlterationRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/AlterationRepository.java rename to src/main/java/org/cbioportal/persistence/AlterationRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/CacheEnabledConfig.java b/src/main/java/org/cbioportal/persistence/CacheEnabledConfig.java similarity index 97% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/CacheEnabledConfig.java rename to src/main/java/org/cbioportal/persistence/CacheEnabledConfig.java index a233b203ddc..af04bac392c 100644 --- a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/CacheEnabledConfig.java +++ b/src/main/java/org/cbioportal/persistence/CacheEnabledConfig.java @@ -1,11 +1,11 @@ package org.cbioportal.persistence; +import jakarta.annotation.PostConstruct; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; -import javax.annotation.PostConstruct; import java.util.ArrayList; import java.util.Arrays; diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/CancerTypeRepository.java b/src/main/java/org/cbioportal/persistence/CancerTypeRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/CancerTypeRepository.java rename to src/main/java/org/cbioportal/persistence/CancerTypeRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/ClinicalAttributeRepository.java b/src/main/java/org/cbioportal/persistence/ClinicalAttributeRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/ClinicalAttributeRepository.java rename to src/main/java/org/cbioportal/persistence/ClinicalAttributeRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/ClinicalDataRepository.java b/src/main/java/org/cbioportal/persistence/ClinicalDataRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/ClinicalDataRepository.java rename to src/main/java/org/cbioportal/persistence/ClinicalDataRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/ClinicalEventRepository.java b/src/main/java/org/cbioportal/persistence/ClinicalEventRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/ClinicalEventRepository.java rename to src/main/java/org/cbioportal/persistence/ClinicalEventRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/CopyNumberSegmentRepository.java b/src/main/java/org/cbioportal/persistence/CopyNumberSegmentRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/CopyNumberSegmentRepository.java rename to src/main/java/org/cbioportal/persistence/CopyNumberSegmentRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/CosmicCountRepository.java b/src/main/java/org/cbioportal/persistence/CosmicCountRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/CosmicCountRepository.java rename to src/main/java/org/cbioportal/persistence/CosmicCountRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/DataAccessTokenRepository.java b/src/main/java/org/cbioportal/persistence/DataAccessTokenRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/DataAccessTokenRepository.java rename to src/main/java/org/cbioportal/persistence/DataAccessTokenRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/DiscreteCopyNumberRepository.java b/src/main/java/org/cbioportal/persistence/DiscreteCopyNumberRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/DiscreteCopyNumberRepository.java rename to src/main/java/org/cbioportal/persistence/DiscreteCopyNumberRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/GenePanelRepository.java b/src/main/java/org/cbioportal/persistence/GenePanelRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/GenePanelRepository.java rename to src/main/java/org/cbioportal/persistence/GenePanelRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/GeneRepository.java b/src/main/java/org/cbioportal/persistence/GeneRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/GeneRepository.java rename to src/main/java/org/cbioportal/persistence/GeneRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/GenericAssayRepository.java b/src/main/java/org/cbioportal/persistence/GenericAssayRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/GenericAssayRepository.java rename to src/main/java/org/cbioportal/persistence/GenericAssayRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/GenesetHierarchyRepository.java b/src/main/java/org/cbioportal/persistence/GenesetHierarchyRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/GenesetHierarchyRepository.java rename to src/main/java/org/cbioportal/persistence/GenesetHierarchyRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/GenesetRepository.java b/src/main/java/org/cbioportal/persistence/GenesetRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/GenesetRepository.java rename to src/main/java/org/cbioportal/persistence/GenesetRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/MolecularDataRepository.java b/src/main/java/org/cbioportal/persistence/MolecularDataRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/MolecularDataRepository.java rename to src/main/java/org/cbioportal/persistence/MolecularDataRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/MolecularProfileRepository.java b/src/main/java/org/cbioportal/persistence/MolecularProfileRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/MolecularProfileRepository.java rename to src/main/java/org/cbioportal/persistence/MolecularProfileRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/MutationRepository.java b/src/main/java/org/cbioportal/persistence/MutationRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/MutationRepository.java rename to src/main/java/org/cbioportal/persistence/MutationRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/PatientRepository.java b/src/main/java/org/cbioportal/persistence/PatientRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/PatientRepository.java rename to src/main/java/org/cbioportal/persistence/PatientRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/PersistenceConstants.java b/src/main/java/org/cbioportal/persistence/PersistenceConstants.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/PersistenceConstants.java rename to src/main/java/org/cbioportal/persistence/PersistenceConstants.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/ReferenceGenomeGeneRepository.java b/src/main/java/org/cbioportal/persistence/ReferenceGenomeGeneRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/ReferenceGenomeGeneRepository.java rename to src/main/java/org/cbioportal/persistence/ReferenceGenomeGeneRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/ResourceDataRepository.java b/src/main/java/org/cbioportal/persistence/ResourceDataRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/ResourceDataRepository.java rename to src/main/java/org/cbioportal/persistence/ResourceDataRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/ResourceDefinitionRepository.java b/src/main/java/org/cbioportal/persistence/ResourceDefinitionRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/ResourceDefinitionRepository.java rename to src/main/java/org/cbioportal/persistence/ResourceDefinitionRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/SampleListRepository.java b/src/main/java/org/cbioportal/persistence/SampleListRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/SampleListRepository.java rename to src/main/java/org/cbioportal/persistence/SampleListRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/SampleRepository.java b/src/main/java/org/cbioportal/persistence/SampleRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/SampleRepository.java rename to src/main/java/org/cbioportal/persistence/SampleRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/SecurityRepository.java b/src/main/java/org/cbioportal/persistence/SecurityRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/SecurityRepository.java rename to src/main/java/org/cbioportal/persistence/SecurityRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/SignificantCopyNumberRegionRepository.java b/src/main/java/org/cbioportal/persistence/SignificantCopyNumberRegionRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/SignificantCopyNumberRegionRepository.java rename to src/main/java/org/cbioportal/persistence/SignificantCopyNumberRegionRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/SignificantlyMutatedGeneRepository.java b/src/main/java/org/cbioportal/persistence/SignificantlyMutatedGeneRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/SignificantlyMutatedGeneRepository.java rename to src/main/java/org/cbioportal/persistence/SignificantlyMutatedGeneRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/StaticDataTimeStampRepository.java b/src/main/java/org/cbioportal/persistence/StaticDataTimeStampRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/StaticDataTimeStampRepository.java rename to src/main/java/org/cbioportal/persistence/StaticDataTimeStampRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/StructuralVariantRepository.java b/src/main/java/org/cbioportal/persistence/StructuralVariantRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/StructuralVariantRepository.java rename to src/main/java/org/cbioportal/persistence/StructuralVariantRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/StudyRepository.java b/src/main/java/org/cbioportal/persistence/StudyRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/StudyRepository.java rename to src/main/java/org/cbioportal/persistence/StudyRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/TreatmentRepository.java b/src/main/java/org/cbioportal/persistence/TreatmentRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/TreatmentRepository.java rename to src/main/java/org/cbioportal/persistence/TreatmentRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/VariantCountRepository.java b/src/main/java/org/cbioportal/persistence/VariantCountRepository.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/VariantCountRepository.java rename to src/main/java/org/cbioportal/persistence/VariantCountRepository.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/CacheMapBuilder.java b/src/main/java/org/cbioportal/persistence/cachemaputil/CacheMapBuilder.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/CacheMapBuilder.java rename to src/main/java/org/cbioportal/persistence/cachemaputil/CacheMapBuilder.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/CacheMapUtil.java b/src/main/java/org/cbioportal/persistence/cachemaputil/CacheMapUtil.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/CacheMapUtil.java rename to src/main/java/org/cbioportal/persistence/cachemaputil/CacheMapUtil.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/InactiveCacheMapUtil.java b/src/main/java/org/cbioportal/persistence/cachemaputil/InactiveCacheMapUtil.java similarity index 93% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/InactiveCacheMapUtil.java rename to src/main/java/org/cbioportal/persistence/cachemaputil/InactiveCacheMapUtil.java index 07fe7f94c37..58d8d2d1744 100644 --- a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/InactiveCacheMapUtil.java +++ b/src/main/java/org/cbioportal/persistence/cachemaputil/InactiveCacheMapUtil.java @@ -36,12 +36,10 @@ import org.cbioportal.model.CancerStudy; import org.cbioportal.model.MolecularProfile; import org.cbioportal.model.SampleList; -import org.cbioportal.utils.config.annotation.ConditionalOnExpression; import org.springframework.stereotype.Component; @Component // This implementation of the CacheMapUtils is instantiated on portals where all uses can access any study. -@ConditionalOnExpression("! T(org.cbioportal.utils.security.PortalSecurityConfig).userAuthorizationEnabled('${authenticate}')") public class InactiveCacheMapUtil implements CacheMapUtil { // Since user-permission evaluation is not needed when this bean is present, throw an error when it is accessed. diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/SpringManagedCacheMapUtil.java b/src/main/java/org/cbioportal/persistence/cachemaputil/SpringManagedCacheMapUtil.java similarity index 92% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/SpringManagedCacheMapUtil.java rename to src/main/java/org/cbioportal/persistence/cachemaputil/SpringManagedCacheMapUtil.java index 46feef1f226..5eae44a6812 100644 --- a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/SpringManagedCacheMapUtil.java +++ b/src/main/java/org/cbioportal/persistence/cachemaputil/SpringManagedCacheMapUtil.java @@ -32,23 +32,20 @@ package org.cbioportal.persistence.cachemaputil; +import jakarta.annotation.PostConstruct; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.MolecularProfile; import org.cbioportal.model.SampleList; -import org.cbioportal.utils.config.annotation.ConditionalOnExpression; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.cache.annotation.Cacheable; -import org.springframework.stereotype.Component; -import javax.annotation.PostConstruct; import java.util.Map; -@Component +//@Component // Instantiate when user authorization is active and spring-managed implementation is needed -@ConditionalOnExpression("T(org.cbioportal.utils.security.PortalSecurityConfig).userAuthorizationEnabled('${authenticate}') && T(Boolean).parseBoolean('${cache.cache-map-utils.spring-managed}')") public class SpringManagedCacheMapUtil implements CacheMapUtil { private static final Logger LOG = LoggerFactory.getLogger(SpringManagedCacheMapUtil.class); diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/StaticRefCacheMapUtil.java b/src/main/java/org/cbioportal/persistence/cachemaputil/StaticRefCacheMapUtil.java similarity index 92% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/StaticRefCacheMapUtil.java rename to src/main/java/org/cbioportal/persistence/cachemaputil/StaticRefCacheMapUtil.java index 56f46b23deb..ce598fbbbd1 100644 --- a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/cachemaputil/StaticRefCacheMapUtil.java +++ b/src/main/java/org/cbioportal/persistence/cachemaputil/StaticRefCacheMapUtil.java @@ -32,21 +32,19 @@ package org.cbioportal.persistence.cachemaputil; +import jakarta.annotation.PostConstruct; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.MolecularProfile; import org.cbioportal.model.SampleList; -import org.cbioportal.utils.config.annotation.ConditionalOnExpression; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; -import javax.annotation.PostConstruct; import java.util.Map; @Component // Instantiate when user authorization is active and spring-managed implementation is not needed -@ConditionalOnExpression("T(org.cbioportal.utils.security.PortalSecurityConfig).userAuthorizationEnabled('${authenticate}') && ! T(Boolean).parseBoolean('${cache.cache-map-utils.spring-managed}')") public class StaticRefCacheMapUtil implements CacheMapUtil { private static final Logger LOG = LoggerFactory.getLogger(StaticRefCacheMapUtil.class); diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/config/EhCacheConfig.java b/src/main/java/org/cbioportal/persistence/config/EhCacheConfig.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/config/EhCacheConfig.java rename to src/main/java/org/cbioportal/persistence/config/EhCacheConfig.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/config/RedisConfig.java b/src/main/java/org/cbioportal/persistence/config/RedisConfig.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/config/RedisConfig.java rename to src/main/java/org/cbioportal/persistence/config/RedisConfig.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/AlterationCountsMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/AlterationCountsMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/AlterationCountsMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/AlterationCountsMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/AlterationMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/AlterationMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/AlterationMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/AlterationMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CancerTypeMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/CancerTypeMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CancerTypeMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/CancerTypeMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CancerTypeMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/CancerTypeMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CancerTypeMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/CancerTypeMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalDataMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/ClinicalDataMapper.java similarity index 97% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalDataMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/ClinicalDataMapper.java index 1f4209deffb..501bbe18444 100644 --- a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalDataMapper.java +++ b/src/main/java/org/cbioportal/persistence/mybatis/ClinicalDataMapper.java @@ -15,7 +15,7 @@ List getSampleClinicalData(List studyIds, List sam BaseMeta getMetaSampleClinicalData(List studyIds, List sampleIds, List attributeIds); List getPatientClinicalData(List studyIds, List patientIds, List attributeIds, - String projection, Integer limit, Integer offset, String sortby, + String projection, Integer limit, Integer offset, String sortBy, String direction); List getSampleClinicalTable(List studyIds, List sampleIds, String projection, diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalDataMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/ClinicalDataMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalDataMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/ClinicalDataMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalEventMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/ClinicalEventMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalEventMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/ClinicalEventMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalEventMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/ClinicalEventMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ClinicalEventMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/ClinicalEventMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CosmicCountMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/CosmicCountMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CosmicCountMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/CosmicCountMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CosmicCountMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/CosmicCountMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/CosmicCountMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/CosmicCountMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/DataAccessTokenMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/DataAccessTokenMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/DataAccessTokenMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/DataAccessTokenMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/DataAccessTokenMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/DataAccessTokenMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/DataAccessTokenMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/DataAccessTokenMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GeneMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/GeneMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GeneMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/GeneMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GeneMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/GeneMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GeneMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/GeneMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenePanelMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/GenePanelMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenePanelMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/GenePanelMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenePanelMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/GenePanelMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenePanelMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/GenePanelMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenericAssayMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/GenericAssayMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenericAssayMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/GenericAssayMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenericAssayMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/GenericAssayMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenericAssayMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/GenericAssayMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenesetMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/GenesetMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenesetMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/GenesetMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenesetMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/GenesetMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/GenesetMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/GenesetMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MolecularDataMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/MolecularDataMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MolecularDataMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/MolecularDataMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MolecularDataMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/MolecularDataMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MolecularDataMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/MolecularDataMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MolecularProfileMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/MolecularProfileMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MolecularProfileMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/MolecularProfileMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MolecularProfileMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/MolecularProfileMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MolecularProfileMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/MolecularProfileMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MutationMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/MutationMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MutationMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/MutationMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MutationMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/MutationMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/MutationMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/MutationMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/PatientMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/PatientMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/PatientMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/PatientMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/PatientMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/PatientMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/PatientMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/PatientMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ResourceDataMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/ResourceDataMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ResourceDataMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/ResourceDataMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ResourceDataMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/ResourceDataMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ResourceDataMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/ResourceDataMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ResourceDefinitionMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/ResourceDefinitionMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ResourceDefinitionMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/ResourceDefinitionMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ResourceDefinitionMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/ResourceDefinitionMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/ResourceDefinitionMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/ResourceDefinitionMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SampleListMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/SampleListMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SampleListMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/SampleListMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SampleListMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/SampleListMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SampleListMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/SampleListMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SampleMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/SampleMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SampleMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/SampleMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SampleMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/SampleMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SampleMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/SampleMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SecurityMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/SecurityMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SecurityMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/SecurityMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SecurityMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/SecurityMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SecurityMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/SecurityMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StaticDataTimeStampMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/StaticDataTimeStampMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StaticDataTimeStampMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/StaticDataTimeStampMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StaticDataTimestampMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/StaticDataTimestampMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StaticDataTimestampMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/StaticDataTimestampMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StructuralVariantMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/StructuralVariantMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StructuralVariantMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/StructuralVariantMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StructuralVariantMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/StructuralVariantMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StructuralVariantMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/StructuralVariantMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StudyMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/StudyMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StudyMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/StudyMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StudyMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/StudyMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/StudyMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/StudyMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/TreatmentMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/TreatmentMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/TreatmentMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/TreatmentMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/TreatmentMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/TreatmentMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/TreatmentMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/TreatmentMyBatisRepository.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/VariantCountMapper.java b/src/main/java/org/cbioportal/persistence/mybatis/VariantCountMapper.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/VariantCountMapper.java rename to src/main/java/org/cbioportal/persistence/mybatis/VariantCountMapper.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/VariantCountMyBatisRepository.java b/src/main/java/org/cbioportal/persistence/mybatis/VariantCountMyBatisRepository.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/VariantCountMyBatisRepository.java rename to src/main/java/org/cbioportal/persistence/mybatis/VariantCountMyBatisRepository.java diff --git a/src/main/java/org/cbioportal/persistence/mybatis/config/PersistenceConfig.java b/src/main/java/org/cbioportal/persistence/mybatis/config/PersistenceConfig.java new file mode 100644 index 00000000000..86a604875a5 --- /dev/null +++ b/src/main/java/org/cbioportal/persistence/mybatis/config/PersistenceConfig.java @@ -0,0 +1,47 @@ +package org.cbioportal.persistence.mybatis.config; + +import org.apache.ibatis.session.SqlSessionFactory; +import org.cbioportal.model.Sample; +import org.cbioportal.persistence.mybatis.typehandler.SampleTypeTypeHandler; +import org.mybatis.spring.SqlSessionFactoryBean; +import org.mybatis.spring.annotation.MapperScan; +import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.core.io.Resource; +import org.springframework.core.io.support.PathMatchingResourcePatternResolver; + +import javax.sql.DataSource; + + +@Configuration +@MapperScan("org.cbioportal.persistence.mybatis") +public class PersistenceConfig { + + // This is the only way I was able to register the SampleType TypeHandler to MyBatis. + // The bean-based approach described in the MyBatis docs for mybatis-spring-boot-autoconfigure + // did not work in my hands (See: https://mybatis.org/spring-boot-starter/mybatis-spring-boot-autoconfigure#Detecting_MyBatis_components). + @Bean + ConfigurationCustomizer mybatisConfigurationCustomizer() { + return new ConfigurationCustomizer() { + @Override + public void customize(org.apache.ibatis.session.Configuration configuration) { + configuration.getTypeHandlerRegistry().register(Sample.SampleType.class, new SampleTypeTypeHandler()); + } + }; + } + + @Bean + public SqlSessionFactoryBean sqlSessionFactory(DataSource dataSource) throws Exception { + SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean(); + sessionFactory.setDataSource(dataSource); + // Specify the location of your mapper XML files in the 'mappers' directory + Resource[] resources = new PathMatchingResourcePatternResolver() + .getResources("classpath:org/cbioportal/persistence/mybatis/*.xml"); + + sessionFactory.setMapperLocations(resources); + sessionFactory.setTypeHandlers(new SampleTypeTypeHandler()); + return sessionFactory; + } + +} diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/typehandler/SampleTypeTypeHandler.java b/src/main/java/org/cbioportal/persistence/mybatis/typehandler/SampleTypeTypeHandler.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/typehandler/SampleTypeTypeHandler.java rename to src/main/java/org/cbioportal/persistence/mybatis/typehandler/SampleTypeTypeHandler.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/util/CustomMyBatisObjectFactory.java b/src/main/java/org/cbioportal/persistence/mybatis/util/CustomMyBatisObjectFactory.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/util/CustomMyBatisObjectFactory.java rename to src/main/java/org/cbioportal/persistence/mybatis/util/CustomMyBatisObjectFactory.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/util/LimitedPermissionArrayList.java b/src/main/java/org/cbioportal/persistence/mybatis/util/LimitedPermissionArrayList.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/util/LimitedPermissionArrayList.java rename to src/main/java/org/cbioportal/persistence/mybatis/util/LimitedPermissionArrayList.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/util/MolecularProfileCaseIdentifierUtil.java b/src/main/java/org/cbioportal/persistence/mybatis/util/MolecularProfileCaseIdentifierUtil.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/util/MolecularProfileCaseIdentifierUtil.java rename to src/main/java/org/cbioportal/persistence/mybatis/util/MolecularProfileCaseIdentifierUtil.java diff --git a/persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/util/OffsetCalculator.java b/src/main/java/org/cbioportal/persistence/mybatis/util/OffsetCalculator.java similarity index 100% rename from persistence/persistence-mybatis/src/main/java/org/cbioportal/persistence/mybatis/util/OffsetCalculator.java rename to src/main/java/org/cbioportal/persistence/mybatis/util/OffsetCalculator.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CacheEventLogger.java b/src/main/java/org/cbioportal/persistence/util/CacheEventLogger.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CacheEventLogger.java rename to src/main/java/org/cbioportal/persistence/util/CacheEventLogger.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CacheUtils.java b/src/main/java/org/cbioportal/persistence/util/CacheUtils.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CacheUtils.java rename to src/main/java/org/cbioportal/persistence/util/CacheUtils.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomEhcachingProvider.java b/src/main/java/org/cbioportal/persistence/util/CustomEhcachingProvider.java similarity index 97% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomEhcachingProvider.java rename to src/main/java/org/cbioportal/persistence/util/CustomEhcachingProvider.java index 39d70f55c64..b4591cc3600 100644 --- a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomEhcachingProvider.java +++ b/src/main/java/org/cbioportal/persistence/util/CustomEhcachingProvider.java @@ -197,13 +197,21 @@ public void detectCacheConfigurationErrorsAndLog() { .append(") but this resource is not available to the classloader"); } else { boolean readable = false; + InputStream configFileInputStream = null; try { - InputStream configFileInputStream = configFileURL.openStream(); + configFileInputStream = configFileURL.openStream(); configFileInputStream.read(); configFileInputStream.close(); readable = true; } catch (IOException e) { + } finally { + try { + configFileInputStream.close(); + } catch (IOException e) { + LOG.error("UNABLE TO CLOSE configFileURLInputStream"); + } } + if (!readable) { messages.append("\n property ehcache.xml_configuration has value (") .append(xmlConfigurationFile) diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomKeyGenerator.java b/src/main/java/org/cbioportal/persistence/util/CustomKeyGenerator.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomKeyGenerator.java rename to src/main/java/org/cbioportal/persistence/util/CustomKeyGenerator.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomRedisCache.java b/src/main/java/org/cbioportal/persistence/util/CustomRedisCache.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomRedisCache.java rename to src/main/java/org/cbioportal/persistence/util/CustomRedisCache.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomRedisCacheManager.java b/src/main/java/org/cbioportal/persistence/util/CustomRedisCacheManager.java similarity index 97% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomRedisCacheManager.java rename to src/main/java/org/cbioportal/persistence/util/CustomRedisCacheManager.java index 5519c40b2da..0c5cdb93dcd 100644 --- a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomRedisCacheManager.java +++ b/src/main/java/org/cbioportal/persistence/util/CustomRedisCacheManager.java @@ -1,5 +1,6 @@ package org.cbioportal.persistence.util; +import jakarta.validation.constraints.NotNull; import org.redisson.api.RedissonClient; import org.springframework.cache.Cache; import org.springframework.cache.CacheManager; @@ -8,7 +9,6 @@ import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; -import javax.validation.constraints.NotNull; public class CustomRedisCacheManager implements CacheManager { private final ConcurrentMap caches = new ConcurrentHashMap<>(); diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomRedisCachingProvider.java b/src/main/java/org/cbioportal/persistence/util/CustomRedisCachingProvider.java similarity index 88% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomRedisCachingProvider.java rename to src/main/java/org/cbioportal/persistence/util/CustomRedisCachingProvider.java index c0feaf5e5fe..88b6aaa79c3 100644 --- a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/CustomRedisCachingProvider.java +++ b/src/main/java/org/cbioportal/persistence/util/CustomRedisCachingProvider.java @@ -38,6 +38,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Value; +import org.springframework.cache.Cache; import org.springframework.cache.CacheManager; public class CustomRedisCachingProvider { @@ -88,8 +89,15 @@ public CacheManager getCacheManager(RedissonClient redissonClient) { CustomRedisCacheManager manager = new CustomRedisCacheManager(redissonClient, expiryMins); if (clearOnStartup) { - manager.getCache(redisName + "GeneralRepositoryCache").clear(); - manager.getCache(redisName + "StaticRepositoryCacheOne").clear(); + Cache generalCache = manager.getCache(redisName + "GeneralRepositoryCache"); + if(generalCache != null) { + generalCache.clear(); + } + + Cache staticRepositoryCache = manager.getCache(redisName + "StaticRepositoryCacheOne"); + if(staticRepositoryCache != null) { + staticRepositoryCache.clear(); + } } return manager; } diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/EhCacheUtils.java b/src/main/java/org/cbioportal/persistence/util/EhCacheUtils.java similarity index 97% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/EhCacheUtils.java rename to src/main/java/org/cbioportal/persistence/util/EhCacheUtils.java index 1b1ff3ab67c..b8226ec0f80 100644 --- a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/EhCacheUtils.java +++ b/src/main/java/org/cbioportal/persistence/util/EhCacheUtils.java @@ -1,11 +1,11 @@ package org.cbioportal.persistence.util; +import jakarta.annotation.PostConstruct; import org.cbioportal.utils.config.annotation.ConditionalOnProperty; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; -import javax.annotation.PostConstruct; import javax.cache.CacheManager; import java.util.ArrayList; import java.util.List; diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/EhcacheStatistics.java b/src/main/java/org/cbioportal/persistence/util/EhcacheStatistics.java similarity index 99% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/EhcacheStatistics.java rename to src/main/java/org/cbioportal/persistence/util/EhcacheStatistics.java index 239b00f87b1..bbf5d273ed9 100644 --- a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/EhcacheStatistics.java +++ b/src/main/java/org/cbioportal/persistence/util/EhcacheStatistics.java @@ -32,6 +32,7 @@ package org.cbioportal.persistence.util; +import jakarta.annotation.PostConstruct; import org.cbioportal.utils.config.annotation.ConditionalOnProperty; import org.ehcache.core.statistics.*; import org.ehcache.config.ResourceType; @@ -41,7 +42,6 @@ import org.springframework.stereotype.Component; import java.util.Map; -import javax.annotation.PostConstruct; @Component @ConditionalOnProperty(name = "persistence.cache_type", havingValue = {"ehcache-heap", "ehcache-disk", "ehcache-hybrid"}) diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/LoggingCacheErrorHandler.java b/src/main/java/org/cbioportal/persistence/util/LoggingCacheErrorHandler.java similarity index 100% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/LoggingCacheErrorHandler.java rename to src/main/java/org/cbioportal/persistence/util/LoggingCacheErrorHandler.java diff --git a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/RedisCacheUtils.java b/src/main/java/org/cbioportal/persistence/util/RedisCacheUtils.java similarity index 79% rename from persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/RedisCacheUtils.java rename to src/main/java/org/cbioportal/persistence/util/RedisCacheUtils.java index 6d9cabdb1a0..67639dc75b5 100644 --- a/persistence/persistence-api/src/main/java/org/cbioportal/persistence/util/RedisCacheUtils.java +++ b/src/main/java/org/cbioportal/persistence/util/RedisCacheUtils.java @@ -23,9 +23,13 @@ public class RedisCacheUtils implements CacheUtils { @Override public List getKeys(String cacheName) { Cache cache = cacheManager.getCache(cacheName); - Object nativeCache = cache.getNativeCache(); - if (nativeCache instanceof RedissonClient) { - return ((RedissonClient)nativeCache) + + if(cache == null) { + throw new RuntimeException("Native cache not of class RedissonCache!!!"); + } + + if (cache.getNativeCache() instanceof RedissonClient) { + return ((RedissonClient)cache.getNativeCache()) .getKeys() .getKeysStream() .filter(k -> k.startsWith(cache.getName() + DELIMITER)) @@ -38,6 +42,8 @@ public List getKeys(String cacheName) { @Override public void evictByPattern(String cacheName, String pattern) { Cache cache = cacheManager.getCache(cacheName); - cache.evict(pattern); + if(cache != null) { + cache.evict(pattern); + } } } diff --git a/src/main/java/org/cbioportal/properties/PortalProperties.java b/src/main/java/org/cbioportal/properties/PortalProperties.java new file mode 100644 index 00000000000..fbb8f3a876f --- /dev/null +++ b/src/main/java/org/cbioportal/properties/PortalProperties.java @@ -0,0 +1,24 @@ +package org.cbioportal.properties; + +import org.cbioportal.utils.validation.AllowedValues; +import org.springframework.boot.context.properties.ConfigurationProperties; +import org.springframework.context.annotation.Configuration; +import org.springframework.validation.annotation.Validated; + +@Validated +@Configuration +@ConfigurationProperties +public class PortalProperties { + + @AllowedValues(values = {"false", "saml", "oauth2", + "optional_oauth2", "social_oauth"}) + private String authenticate; + + public void setAuthenticate(String authenticate) { + this.authenticate = authenticate; + } + + public String getAuthenticate() { + return authenticate; + } +} diff --git a/web/src/main/java/org/cbioportal/proxy/LegacyProxyController.java b/src/main/java/org/cbioportal/proxy/LegacyProxyController.java similarity index 92% rename from web/src/main/java/org/cbioportal/proxy/LegacyProxyController.java rename to src/main/java/org/cbioportal/proxy/LegacyProxyController.java index c6eb8f36380..a2403f22f86 100644 --- a/web/src/main/java/org/cbioportal/proxy/LegacyProxyController.java +++ b/src/main/java/org/cbioportal/proxy/LegacyProxyController.java @@ -38,10 +38,9 @@ import java.util.HashMap; import java.util.Map; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import org.json.simple.JSONObject; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import org.springframework.beans.factory.annotation.Value; import org.springframework.http.HttpEntity; import org.springframework.http.HttpMethod; @@ -56,7 +55,7 @@ import org.springframework.web.client.RestTemplate; @Controller -@RequestMapping("/proxy") +@RequestMapping("/api/proxy") public class LegacyProxyController { private String bitlyURL; @@ -87,8 +86,8 @@ public void setEnableOncokb(Boolean property) { // Created by Hongxin @RequestMapping(value="/{path}") public @ResponseBody String getProxyURL(@PathVariable String path, - @RequestBody(required = false) String body, HttpMethod method, - HttpServletRequest request, HttpServletResponse response) throws URISyntaxException, IOException { + @RequestBody(required = false) String body, HttpMethod method, + HttpServletRequest request, HttpServletResponse response) throws URISyntaxException, IOException { Map pathToUrl = new HashMap<>(); pathToUrl.put("bitly", bitlyURL); diff --git a/web/src/main/java/org/cbioportal/proxy/Monkifier.java b/src/main/java/org/cbioportal/proxy/Monkifier.java similarity index 97% rename from web/src/main/java/org/cbioportal/proxy/Monkifier.java rename to src/main/java/org/cbioportal/proxy/Monkifier.java index c75b64a1a63..b50d6da4dfb 100644 --- a/web/src/main/java/org/cbioportal/proxy/Monkifier.java +++ b/src/main/java/org/cbioportal/proxy/Monkifier.java @@ -1,11 +1,11 @@ package org.cbioportal.proxy; +import jakarta.servlet.http.HttpServletRequest; import org.apache.commons.codec.binary.Base64; import org.springframework.stereotype.Component; import org.springframework.util.CollectionUtils; import org.springframework.web.util.UriComponentsBuilder; -import javax.servlet.http.HttpServletRequest; import java.util.Arrays; import java.util.List; import java.util.Map; diff --git a/src/main/java/org/cbioportal/proxy/ProxyController.java b/src/main/java/org/cbioportal/proxy/ProxyController.java new file mode 100644 index 00000000000..36e670c3ca9 --- /dev/null +++ b/src/main/java/org/cbioportal/proxy/ProxyController.java @@ -0,0 +1,251 @@ +package org.cbioportal.proxy; + +import jakarta.servlet.http.HttpServletRequest; +import org.apache.commons.lang3.StringUtils; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.http.*; +import org.springframework.http.converter.StringHttpMessageConverter; +import org.springframework.util.ObjectUtils; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseStatus; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.client.RestTemplate; + + +import java.io.*; +import java.net.URI; +import java.net.URISyntaxException; +import java.nio.charset.StandardCharsets; +import java.util.Properties; + +// TODO Consider creating separate DispatcherServlets as in the original web.xml +// See: https://stackoverflow.com/a/30686733/11651683 + +@RestController +@RequestMapping("/proxy") +public class ProxyController { + private static final String DEFAULT_ONCOKB_URL = "https://public.api.oncokb.org/api/v1"; + private Properties properties; + + private Logger LOG = LoggerFactory.getLogger(ProxyController.class); + + @Autowired + private Monkifier monkifier; + + @Value("${oncokb.token:}") + private String oncokbToken; + + @Value("${oncokb.public_api.url:https://public.api.oncokb.org/api/v1}") + private String oncokbApiUrl; + + @Value("${show.oncokb:false}") + private Boolean showOncokb; + + @RequestMapping("/**") + public String proxy(@RequestBody(required = false) String body, HttpMethod method, HttpServletRequest request) + throws URISyntaxException { + HttpHeaders httpHeaders = initHeaders(request); + + // TODO when reimplemeting different dispatcherservlets with different context roots + // reset this to 'String requestPathInfo = request.getPathInfo();' + String requestPathInfo = request.getPathInfo() == null? request.getServletPath() : request.getPathInfo(); + + return exchangeData(body, + buildUri(requestPathInfo, request.getQueryString(), false), + method, + httpHeaders, + String.class + ).getBody(); + } + //TODO: Hey figure out if we need this + @RequestMapping("/legacy/proxy/oncokb/**") + public String legacyProxyOncokb( + @RequestBody(required = false) String body, + HttpMethod method, + HttpServletRequest request + ) throws URISyntaxException { + String token = request.getHeader("X-Proxy-User-Agreement"); + token = (token == null || token.isEmpty()) ? "NA": token; + + return exchangeOncokbData( + body, + request.getPathInfo().replaceFirst("/oncokb", ""), + request.getQueryString(), + method, + getOncokbHeaders(request, token) + ); + } + + @RequestMapping("/A8F74CD7851BDEE8DCD2E86AB4E2A711/**") + public String proxyEncodedOncokb( + @RequestBody(required = false) String body, + HttpMethod method, + HttpServletRequest request + ) throws URISyntaxException, UnsupportedEncodingException { + // make sure that the custom Proxy User Agreement header exists + String proxyUserAgreement = request.getHeader("X-Proxy-User-Agreement"); + if (proxyUserAgreement == null || !proxyUserAgreement.equals( + "I/We do NOT use this obfuscated proxy to programmatically obtain private OncoKB data. " + + "I/We know that I/we should get a valid data access token by registering at https://www.oncokb.org/account/register." + )) { + throw new OncoKBProxyUserAgreementException(); + } + + String decodedBody = body == null ? null: this.monkifier.decodeBase64(body); + String encodedPath = request.getRequestURI().replaceFirst("/proxy/A8F74CD7851BDEE8DCD2E86AB4E2A711/", ""); + String decodedPath = this.monkifier.decodeBase64(encodedPath); + String decodedQueryString = this.monkifier.decodeQueryString(request); + + String response = exchangeOncokbData( + decodedBody, + decodedPath, + decodedQueryString, + method, + getOncokbHeaders(request) + ); + + return "\"" + this.monkifier.encodeBase64(response) + "\""; + } + + private String exchangeOncokbData( + String body, + String pathInfo, + String queryString, + HttpMethod method, + HttpHeaders httpHeaders + ) throws URISyntaxException { + return exchangeData( + body, + buildUri(this.oncokbApiUrl + pathInfo, queryString), + method, + httpHeaders, + String.class + ).getBody(); + } + + private HttpHeaders getOncokbHeaders(HttpServletRequest request) { + return this.getOncokbHeaders(request, null); + } + + private HttpHeaders getOncokbHeaders(HttpServletRequest request, String token) { + String oncokbToken = token == null ? this.oncokbToken : token; + + if (!this.showOncokb) { + throw new OncoKBServiceIsDisabledException(); + } + + HttpHeaders httpHeaders = initHeaders(request); + + if (!StringUtils.isEmpty(oncokbToken)) { + httpHeaders.add("Authorization", "Bearer " + oncokbToken); + } + + return httpHeaders; + } + + //TODO: Figure out what is different (Rebased from Spring Boot Branch) + @RequestMapping("/proxy/oncokb/**") + public String proxyOncokb(@RequestBody(required = false) String body, HttpMethod method, HttpServletRequest request) + throws URISyntaxException { + + if (!this.showOncokb) { + throw new OncoKBServiceIsDisabledException(); + } + + HttpHeaders httpHeaders = initHeaders(request); + + if (!ObjectUtils.isEmpty(this.oncokbToken)) { + httpHeaders.add("Authorization", "Bearer " + this.oncokbToken); + } + + // TODO when reimplemeting different dispatcherservlets with different context roots + // reset this to 'String requestPathInfo = request.getPathInfo();' + String requestPathInfo = request.getPathInfo() == null? request.getServletPath() : request.getPathInfo(); + String replaceString = request.getPathInfo() == null? "/proxy/oncokb" : "/oncokb"; + return exchangeData(body, + buildUri(this.oncokbApiUrl + requestPathInfo.replaceFirst(replaceString, ""), request.getQueryString()), + method, + httpHeaders, + String.class).getBody(); + } + + private HttpHeaders initHeaders(HttpServletRequest request) { + HttpHeaders httpHeaders = new HttpHeaders(); + + String contentType = request.getHeader("Content-Type"); + if (contentType != null) { + httpHeaders.setContentType(MediaType.valueOf(contentType)); + } + + return httpHeaders; + } + + private URI buildUri(String path, String queryString, boolean useSecureProtocol) throws URISyntaxException { + return buildUri((useSecureProtocol ? "https" : "http") + ":/" + path, queryString); + } + + private URI buildUri(String path, String queryString) throws URISyntaxException { + return new URI(path + (queryString == null ? "" : "?" + queryString)); + } + + private ResponseEntity exchangeData(String body, URI uri, HttpMethod method, HttpHeaders httpHeaders, Class responseType) { + RestTemplate restTemplate = new RestTemplate(); + restTemplate.getMessageConverters().add(0, new StringHttpMessageConverter(StandardCharsets.UTF_8)); + return restTemplate.exchange(uri, method, new HttpEntity<>(body, httpHeaders), responseType); + } + + + private InputStream getResourceStream(String propertiesFileName) + { + String resourceFilename = null; + InputStream resourceFIS = null; + + try { + String home = System.getenv("PORTAL_HOME"); + if (home != null) { + resourceFilename = + home + File.separator + propertiesFileName; + resourceFIS = new FileInputStream(resourceFilename); + } + } catch (FileNotFoundException e) { + } + + if (resourceFIS == null) { + resourceFIS = this.getClass().getClassLoader(). + getResourceAsStream(propertiesFileName); + } + + return resourceFIS; + } + private Properties loadProperties(InputStream resourceInputStream) + { + Properties properties = new Properties(); + + try { + properties.load(resourceInputStream); + resourceInputStream.close(); + } + catch (IOException e) { + System.out.println("Error loading properties file: " + e.getMessage()); + } + + return properties; + } + + @ResponseStatus(code = HttpStatus.NOT_FOUND, reason = "OncoKB service is disabled") + public class OncoKBServiceIsDisabledException extends RuntimeException { + } + + @ResponseStatus(code = HttpStatus.FORBIDDEN, reason = "No OncoKB access token is provided") + public class NoOncoKBTokenProvidedException extends RuntimeException { + } + + @ResponseStatus(code = HttpStatus.BAD_REQUEST, reason = "Fair Usage Agreement is missing") + public class OncoKBProxyUserAgreementException extends RuntimeException { + } + +} \ No newline at end of file diff --git a/security/permission-evaluator/src/main/java/org/cbioportal/security/CancerStudyPermissionEvaluator.java b/src/main/java/org/cbioportal/security/CancerStudyPermissionEvaluator.java similarity index 91% rename from security/permission-evaluator/src/main/java/org/cbioportal/security/CancerStudyPermissionEvaluator.java rename to src/main/java/org/cbioportal/security/CancerStudyPermissionEvaluator.java index e383f795857..7947c204e5d 100644 --- a/security/permission-evaluator/src/main/java/org/cbioportal/security/CancerStudyPermissionEvaluator.java +++ b/src/main/java/org/cbioportal/security/CancerStudyPermissionEvaluator.java @@ -34,12 +34,17 @@ import java.io.Serializable; import java.util.*; +import java.util.stream.Collectors; + +import org.cbioportal.model.CancerStudy; +import org.cbioportal.model.MolecularProfile; +import org.cbioportal.model.Patient; +import org.cbioportal.model.SampleList; +import org.cbioportal.persistence.cachemaputil.CacheMapUtil; +import org.cbioportal.utils.security.AccessLevel; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.cbioportal.model.*; -import org.cbioportal.persistence.cachemaputil.CacheMapUtil; import org.springframework.beans.factory.annotation.*; -import org.cbioportal.utils.security.AccessLevel; import org.springframework.security.access.PermissionEvaluator; import org.springframework.security.core.Authentication; import org.springframework.security.core.authority.AuthorityUtils; @@ -54,8 +59,7 @@ */ public class CancerStudyPermissionEvaluator implements PermissionEvaluator { - @Autowired - private CacheMapUtil cacheMapUtil; + private final CacheMapUtil cacheMapUtil; private static final String ALL_CANCER_STUDIES_ID = "all"; private static final String ALL_TCGA_CANCER_STUDIES_ID = "all_tcga"; @@ -68,27 +72,31 @@ public class CancerStudyPermissionEvaluator implements PermissionEvaluator { private static final String TARGET_TYPE_COLLECTION_OF_CANCER_STUDY_IDS = "Collection"; private static final String TARGET_TYPE_COLLECTION_OF_MOLECULAR_PROFILE_IDS = "Collection"; private static final String TARGET_TYPE_COLLECTION_OF_GENETIC_PROFILE_IDS = "Collection"; - private static Logger log = LoggerFactory.getLogger(CancerStudyPermissionEvaluator.class); + private static final Logger log = LoggerFactory.getLogger(CancerStudyPermissionEvaluator.class); - @Value("${app.name:}") - private String APP_NAME; + private final String APP_NAME; private String DEFAULT_APP_NAME = "public_portal"; - @Value("${filter_groups_by_appname:true}") - private String FILTER_GROUPS_BY_APP_NAME; + private final String FILTER_GROUPS_BY_APP_NAME; - private static String PUBLIC_CANCER_STUDIES_GROUP; - @Value("${always_show_study_group:}") - private void setPublicCancerStudiesGroup(String property) { - PUBLIC_CANCER_STUDIES_GROUP = property; - if (log.isDebugEnabled()) { - log.debug("setPublicCancerStudiesGroup(), always_show_study_group = " + ((property == null) ? "null" : property)); - } - if (property != null && property.trim().isEmpty()) { - PUBLIC_CANCER_STUDIES_GROUP = null; - } + private final String PUBLIC_CANCER_STUDIES_GROUP; +// @Value("${always_show_study_group:}") +// private void setPublicCancerStudiesGroup(String property) { +// PUBLIC_CANCER_STUDIES_GROUP = property; +// if (log.isDebugEnabled()) { +// log.debug("setPublicCancerStudiesGroup(), always_show_study_group = " + ((property == null) ? "null" : property)); +// } +// if (property != null && property.trim().isEmpty()) { +// PUBLIC_CANCER_STUDIES_GROUP = null; +// } +// } + + public CancerStudyPermissionEvaluator(final String appName, final String doFilterGroupsByAppName, final String alwaysShowCancerStudyGroup, final CacheMapUtil cacheMapUtil ) { + this.APP_NAME = appName; + this.FILTER_GROUPS_BY_APP_NAME = doFilterGroupsByAppName; + this.PUBLIC_CANCER_STUDIES_GROUP = alwaysShowCancerStudyGroup; + this.cacheMapUtil = cacheMapUtil; } - /** * Implementation of {@code PermissionEvaluator}. * this method handles the direct evaluation of user access to individual instances from the data model. @@ -127,7 +135,7 @@ public boolean hasPermission(Authentication authentication, Object targetDomainO // authentication will always have authorities. Object user = authentication.getPrincipal(); if (user != null) { - return hasAccessToCancerStudy(authentication, cancerStudy, (AccessLevel) permission); + return hasAccessToCancerStudy(authentication, cancerStudy, (AccessLevel) permission); } else { return false; } @@ -221,13 +229,12 @@ private CancerStudy getRelevantCancerStudyFromTarget(Object targetDomainObject) /** * Helper function to determine if given user has access to given cancer study. * - * @param authentication Spring Authentication object of the logged-in user. * @param cancerStudy cancer study to check for - * @param permission requested permission level (can be org.cbioportal.utils.security.AccessLevel.READ or org.cbioportal.utils.security.AccessLevel.LIST) + * @param authentication Spring Authentication of the logged-in user. * @return boolean */ private boolean hasAccessToCancerStudy(Authentication authentication, CancerStudy cancerStudy, AccessLevel permission) { - + // The 'list' permission is only requested by the /api/studies endpoint of StudyController. This permission is // requested by the Study Overview page when the portal instance is configured to show all studies (with non- // authorized study options greyed out), instead of only showing authorized studies. @@ -235,7 +242,7 @@ private boolean hasAccessToCancerStudy(Authentication authentication, CancerStud if (AccessLevel.LIST == permission) { return true; } - + Set grantedAuthorities = getGrantedAuthorities(authentication); String stableStudyID = cancerStudy.getCancerStudyIdentifier(); if (log.isDebugEnabled()) { @@ -356,7 +363,10 @@ private boolean hasAccessToSampleLists(Authentication authentication, Collection private Set getGrantedAuthorities(Authentication authentication) { String appName = getAppName().toUpperCase(); - Set allAuthorities = AuthorityUtils.authorityListToSet(authentication.getAuthorities()); + Set allAuthorities = AuthorityUtils.authorityListToSet(authentication.getAuthorities()) + .stream() + .map(authority -> authority.replaceAll("^ROLE_", "")) + .collect(Collectors.toSet()); Set grantedAuthorities = new HashSet<>(); if (filterGroupsByAppName()) { for (String au : allAuthorities) { diff --git a/src/main/java/org/cbioportal/security/CustomJwtGrantedAuthoritiesConverter.java b/src/main/java/org/cbioportal/security/CustomJwtGrantedAuthoritiesConverter.java new file mode 100644 index 00000000000..0d3f8f9b06c --- /dev/null +++ b/src/main/java/org/cbioportal/security/CustomJwtGrantedAuthoritiesConverter.java @@ -0,0 +1,37 @@ +package org.cbioportal.security; + +import org.cbioportal.security.util.GrantedAuthorityUtil; +import org.cbioportal.security.util.ClaimRoleExtractorUtil; +import org.springframework.core.convert.converter.Converter; +import org.springframework.security.core.GrantedAuthority; +import org.springframework.security.oauth2.jwt.Jwt; + +import java.util.Collection; +import java.util.Objects; + +/** + * Custom JWT GrantedAuthorities Converter to extract roles from JWT token. + * Claims should equal resource_access:clientId:roles + */ +public class CustomJwtGrantedAuthoritiesConverter implements Converter> { + private static final String DEFAULT_CLIENT_ID = "cbioportal"; + + private String jwtRolePathClientId; + + @Override + public Collection convert(Jwt jwt) { + return GrantedAuthorityUtil.generateGrantedAuthoritiesFromRoles(getAuthorities(jwt)); + } + + private Collection getAuthorities(Jwt jwt) { + return ClaimRoleExtractorUtil.extractClientRoles(this.getJwtRolePathClientId(), jwt.getClaims()); + } + + private String getJwtRolePathClientId() { + return Objects.isNull(jwtRolePathClientId) ? DEFAULT_CLIENT_ID : jwtRolePathClientId; + } + + public void setClientId(String clientId) { + this.jwtRolePathClientId = clientId; + } +} diff --git a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2DataAccessTokenServiceImpl.java b/src/main/java/org/cbioportal/security/OAuth2DataAccessTokenServiceImpl.java similarity index 78% rename from security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2DataAccessTokenServiceImpl.java rename to src/main/java/org/cbioportal/security/OAuth2DataAccessTokenServiceImpl.java index 3bc2f5156db..796028fe89f 100644 --- a/security/security-spring/src/main/java/org/cbioportal/security/spring/authentication/token/oauth2/OAuth2DataAccessTokenServiceImpl.java +++ b/src/main/java/org/cbioportal/security/OAuth2DataAccessTokenServiceImpl.java @@ -30,31 +30,31 @@ * along with this program. If not, see . */ -package org.cbioportal.security.spring.authentication.token.oauth2; +package org.cbioportal.security; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.ObjectMapper; import org.cbioportal.model.DataAccessToken; import org.cbioportal.service.DataAccessTokenService; -import org.codehaus.jackson.JsonNode; -import org.codehaus.jackson.map.ObjectMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.http.HttpEntity; import org.springframework.http.HttpHeaders; import org.springframework.http.ResponseEntity; import org.springframework.security.authentication.BadCredentialsException; import org.springframework.security.core.Authentication; -import org.springframework.security.jwt.Jwt; -import org.springframework.security.jwt.JwtHelper; +import org.springframework.stereotype.Component; import org.springframework.util.LinkedMultiValueMap; import org.springframework.util.MultiValueMap; import org.springframework.web.client.RestTemplate; -import java.io.IOException; import java.util.Date; import java.util.List; +@Component +@ConditionalOnProperty(value = "dat.method", havingValue = "oauth2") public class OAuth2DataAccessTokenServiceImpl implements DataAccessTokenService { - @Value("${dat.oauth2.issuer}") private String issuer; @@ -73,18 +73,13 @@ public class OAuth2DataAccessTokenServiceImpl implements DataAccessTokenService @Value("${dat.oauth2.redirectUri}") private String redirectUri; - @Autowired - private RestTemplate template; - - @Autowired - private JwtTokenVerifierBuilder jwtTokenVerifierBuilder; - @Override // request offline token from authentication server via back channel public DataAccessToken createDataAccessToken(final String accessCode) { HttpHeaders headers = new HttpHeaders(); - + RestTemplate template = new RestTemplate(); + MultiValueMap map = new LinkedMultiValueMap<>(); map.add("grant_type", "authorization_code"); map.add("code", accessCode); @@ -100,7 +95,7 @@ public DataAccessToken createDataAccessToken(final String accessCode) { String offlineToken = ""; try { JsonNode json = new ObjectMapper().readTree(response.getBody()); - offlineToken = json.get("refresh_token").asText(); + offlineToken = json.get("access_token").asText(); } catch (Exception e) { throw new BadCredentialsException("Offline token could not be retrieved using access_code: "+ accessCode ); } @@ -140,41 +135,12 @@ public void revokeDataAccessToken(final String token) { @Override public Boolean isValid(final String token) { - final String kid = JwtHelper.headers(token).get("kid"); - try { - - final Jwt tokenDecoded = JwtHelper.decodeAndVerify(token, jwtTokenVerifierBuilder.build(kid)); - final String claims = tokenDecoded.getClaims(); - final JsonNode claimsMap = new ObjectMapper().readTree(claims); - - hasValidIssuer(claimsMap); - hasValidClientId(claimsMap); - - } catch (Exception e) { - throw new BadCredentialsException("Token is not valid (wrong key, issuer, or audience)."); - } - return true; + return false; } @Override public String getUsername(final String token) { - - final Jwt tokenDecoded = JwtHelper.decode(token); - - final String claims = tokenDecoded.getClaims(); - JsonNode claimsMap; - try { - claimsMap = new ObjectMapper().readTree(claims); - } catch (IOException e) { - throw new BadCredentialsException("User name could not be found in offline token."); - } - - if (! claimsMap.has("sub")) { - throw new BadCredentialsException("User name could not be found in offline token."); - } - - String userName = claimsMap.get("sub").asText(); - return userName; + return "noop"; } @Override @@ -197,7 +163,7 @@ private void hasValidClientId(final JsonNode claimsMap) throws BadCredentialsExc @Override public Authentication createAuthenticationRequest(String offlineToken) { // validity of the offline token is checked by the OAuth2 authentication server - return new OAuth2BearerAuthenticationToken(offlineToken); + throw new UnsupportedOperationException("this implementation of (pure) Data Access Tokens does not allow retrieval of stored tokens"); } } diff --git a/src/main/java/org/cbioportal/security/config/MethodSecurityConfig.java b/src/main/java/org/cbioportal/security/config/MethodSecurityConfig.java new file mode 100644 index 00000000000..f347bf832e9 --- /dev/null +++ b/src/main/java/org/cbioportal/security/config/MethodSecurityConfig.java @@ -0,0 +1,42 @@ +package org.cbioportal.security.config; + +import org.cbioportal.persistence.cachemaputil.CacheMapUtil; +import org.cbioportal.security.CancerStudyPermissionEvaluator; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler; +import org.springframework.security.access.expression.method.MethodSecurityExpressionHandler; +import org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity; + +@Configuration +@EnableMethodSecurity(prePostEnabled = true) +@ConditionalOnExpression("{'oauth2','saml','optional_oauth2'}.contains('${authenticate}')") +//TODO: Potentially Delete after import pipeline fixed +@ConditionalOnProperty(name = "security.method_authorization_enabled", havingValue = "true") +public class MethodSecurityConfig { + @Value("${app.name:}") + private String appName; + + @Value("${filter_groups_by_appname:true}") + private String doFilterGroupsByAppName; + + @Value("${always_show_study_group:}") + private String alwaysShowCancerStudyGroup; + + @Qualifier("staticRefCacheMapUtil") + @Autowired + private CacheMapUtil cacheMapUtil; + + @Bean + public MethodSecurityExpressionHandler createExpressionHandler() { + DefaultMethodSecurityExpressionHandler expressionHandler = + new DefaultMethodSecurityExpressionHandler(); + expressionHandler.setPermissionEvaluator(new CancerStudyPermissionEvaluator(appName, doFilterGroupsByAppName, alwaysShowCancerStudyGroup, cacheMapUtil)); + return expressionHandler; + } +} \ No newline at end of file diff --git a/src/main/java/org/cbioportal/security/config/NoSecurityConfig.java b/src/main/java/org/cbioportal/security/config/NoSecurityConfig.java new file mode 100644 index 00000000000..8e7741a81db --- /dev/null +++ b/src/main/java/org/cbioportal/security/config/NoSecurityConfig.java @@ -0,0 +1,24 @@ +package org.cbioportal.security.config; + +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; +import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer; +import org.springframework.security.web.SecurityFilterChain; + +@Configuration +@EnableWebSecurity +@ConditionalOnProperty(value = "authenticate", havingValue = "false", matchIfMissing = true) +public class NoSecurityConfig { + @Bean + public SecurityFilterChain filterChain(HttpSecurity http) throws Exception{ + return http.authorizeHttpRequests(auth -> auth + .requestMatchers("/").permitAll() + .anyRequest().permitAll() + ) + .csrf(AbstractHttpConfigurer::disable) + .build(); + } +} \ No newline at end of file diff --git a/src/main/java/org/cbioportal/security/config/OAuth2SecurityConfig.java b/src/main/java/org/cbioportal/security/config/OAuth2SecurityConfig.java new file mode 100644 index 00000000000..4a8801029a0 --- /dev/null +++ b/src/main/java/org/cbioportal/security/config/OAuth2SecurityConfig.java @@ -0,0 +1,110 @@ +package org.cbioportal.security.config; + +import org.cbioportal.security.CustomJwtGrantedAuthoritiesConverter; +import org.cbioportal.security.util.ClaimRoleExtractorUtil; +import org.cbioportal.security.util.GrantedAuthorityUtil; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.boot.autoconfigure.security.SecurityProperties; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.core.annotation.Order; +import org.springframework.http.HttpStatus; +import org.springframework.security.config.Customizer; +import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; +import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer; +import org.springframework.security.config.annotation.web.configurers.oauth2.server.resource.OAuth2ResourceServerConfigurer; +import org.springframework.security.core.GrantedAuthority; +import org.springframework.security.core.authority.mapping.GrantedAuthoritiesMapper; +import org.springframework.security.oauth2.core.oidc.user.OidcUserAuthority; +import org.springframework.security.oauth2.core.user.OAuth2UserAuthority; +import org.springframework.security.oauth2.server.resource.authentication.JwtAuthenticationConverter; +import org.springframework.security.web.SecurityFilterChain; +import org.springframework.security.web.authentication.HttpStatusEntryPoint; +import org.springframework.security.web.util.matcher.AntPathRequestMatcher; + +import java.util.HashSet; +import java.util.Map; +import java.util.Objects; +import java.util.Set; + + +@Configuration +@EnableWebSecurity +// add new chain after api-filter chain (at position -2), but before the default fallback chain +@Order(SecurityProperties.BASIC_AUTH_ORDER - 1) +public class OAuth2SecurityConfig { + + + @Value("${spring.security.oauth2.roles-path.client-id:}") + private String clientId; + + @Value("${spring.security.oauth2.resourceserver.jwt.issuer-uri:}") + private String jwtResourceServerUri; + + @Bean + @ConditionalOnProperty(value = "authenticate", havingValue = "oauth2") + public SecurityFilterChain oAuth2filterChain(HttpSecurity http) throws Exception { + + http.authorizeHttpRequests(auth -> + auth.requestMatchers("/api/health", "/login", "/images/**").permitAll() + .anyRequest().authenticated()) + .oauth2Login(oauth -> oauth.loginPage("/login")) + .logout((logout) -> logout.logoutSuccessUrl("/login?logout_success")) + .exceptionHandling(eh -> + eh.defaultAuthenticationEntryPointFor(new HttpStatusEntryPoint(HttpStatus.UNAUTHORIZED), AntPathRequestMatcher.antMatcher("/api/**"))) + .csrf(AbstractHttpConfigurer::disable); + + if(!Objects.isNull(this.jwtResourceServerUri) && !this.jwtResourceServerUri.isEmpty()) { + http.oauth2ResourceServer(OAuth2ResourceServerConfigurer::jwt); + } + return http.build(); + } + + @Bean + @ConditionalOnProperty(value = "authenticate", havingValue = "optional_oauth2") + public SecurityFilterChain optionalOAuth2filterChain(HttpSecurity http) throws Exception { + return http + .oauth2Login(oauth -> oauth.loginPage("/login")) + .authorizeHttpRequests(auth -> auth + .requestMatchers("/").permitAll() + .anyRequest().permitAll()) + .csrf(AbstractHttpConfigurer::disable) + .logout((logout) -> logout.logoutSuccessUrl("/")) + .build(); + } + + @Bean + public GrantedAuthoritiesMapper userAuthoritiesMapper() { + return (authorities) -> { + Set mappedAuthorities = new HashSet<>(); + + authorities.forEach(authority -> { + Map claims = null; + if (authority instanceof OidcUserAuthority oidcUserAuthority && !Objects.isNull(oidcUserAuthority.getUserInfo())) { + claims = oidcUserAuthority.getUserInfo().getClaims(); + } else if (authority instanceof OAuth2UserAuthority oauth2UserAuthority) { + claims = oauth2UserAuthority.getAttributes(); + } + if(!Objects.isNull(claims)) { + var roles = ClaimRoleExtractorUtil.extractClientRoles(this.clientId, claims); + mappedAuthorities.addAll(GrantedAuthorityUtil.generateGrantedAuthoritiesFromRoles(roles)); + } + }); + + return mappedAuthorities; + }; + } + + @Bean + public JwtAuthenticationConverter jwtAuthenticationConverter() { + CustomJwtGrantedAuthoritiesConverter grantedAuthoritiesConverter = new CustomJwtGrantedAuthoritiesConverter(); + grantedAuthoritiesConverter.setClientId(this.clientId); + + JwtAuthenticationConverter jwtAuthenticationConverter = new JwtAuthenticationConverter(); + jwtAuthenticationConverter.setJwtGrantedAuthoritiesConverter(grantedAuthoritiesConverter); + return jwtAuthenticationConverter; + } + +} diff --git a/src/main/java/org/cbioportal/security/config/Saml2SecurityConfig.java b/src/main/java/org/cbioportal/security/config/Saml2SecurityConfig.java new file mode 100644 index 00000000000..a7fada979b7 --- /dev/null +++ b/src/main/java/org/cbioportal/security/config/Saml2SecurityConfig.java @@ -0,0 +1,65 @@ +package org.cbioportal.security.config; + +import org.cbioportal.security.util.GrantedAuthorityUtil; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.core.convert.converter.Converter; +import org.springframework.http.HttpStatus; +import org.springframework.security.authentication.ProviderManager; +import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; +import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer; +import org.springframework.security.core.GrantedAuthority; +import org.springframework.security.saml2.provider.service.authentication.OpenSaml4AuthenticationProvider; +import org.springframework.security.saml2.provider.service.authentication.Saml2AuthenticatedPrincipal; +import org.springframework.security.saml2.provider.service.authentication.Saml2Authentication; +import org.springframework.security.web.SecurityFilterChain; +import org.springframework.security.web.authentication.HttpStatusEntryPoint; +import org.springframework.security.web.util.matcher.AntPathRequestMatcher; + +import java.util.Collection; +import java.util.HashSet; +import java.util.Objects; +import java.util.Set; + +@Configuration +@EnableWebSecurity +public class Saml2SecurityConfig { + @Bean + @ConditionalOnProperty(value = "authenticate", havingValue = "saml") + public SecurityFilterChain samlFilterChain(HttpSecurity http) throws Exception { + OpenSaml4AuthenticationProvider authenticationProvider = new OpenSaml4AuthenticationProvider(); + authenticationProvider.setResponseAuthenticationConverter(rolesConverter()); + + return http.authorizeHttpRequests(auth -> + auth.requestMatchers("/api/health", "/login", "/images/**" ).permitAll() + .anyRequest().authenticated()) + .exceptionHandling(eh -> + eh.defaultAuthenticationEntryPointFor(new HttpStatusEntryPoint(HttpStatus.UNAUTHORIZED), AntPathRequestMatcher.antMatcher("/api/**"))) + .saml2Login(saml2 -> saml2 + .authenticationManager(new ProviderManager(authenticationProvider))) + .logout(logout -> logout.logoutSuccessUrl("/login?logout_success")) + .csrf(AbstractHttpConfigurer::disable) + .build(); + } + + private Converter rolesConverter() { + + Converter delegate = + OpenSaml4AuthenticationProvider.createDefaultResponseAuthenticationConverter(); + + return (responseToken) -> { + Saml2Authentication authentication = delegate.convert(responseToken); + var principal = (Saml2AuthenticatedPrincipal) Objects.requireNonNull(authentication).getPrincipal(); + Collection roles = principal.getAttribute("Role"); + Set mappedAuthorities = new HashSet<>(); + if (!Objects.isNull(roles)) { + mappedAuthorities.addAll(GrantedAuthorityUtil.generateGrantedAuthoritiesFromRoles(roles)); + } else { + mappedAuthorities.addAll(authentication.getAuthorities()); + } + return new Saml2Authentication(principal, authentication.getSaml2Response(), mappedAuthorities); + }; + } +} diff --git a/src/main/java/org/cbioportal/security/util/ClaimRoleExtractorUtil.java b/src/main/java/org/cbioportal/security/util/ClaimRoleExtractorUtil.java new file mode 100644 index 00000000000..d6ea2a59c21 --- /dev/null +++ b/src/main/java/org/cbioportal/security/util/ClaimRoleExtractorUtil.java @@ -0,0 +1,28 @@ +package org.cbioportal.security.util; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.util.Collection; +import java.util.Collections; +import java.util.Map; + +public class ClaimRoleExtractorUtil { + private static final Logger log = LoggerFactory.getLogger(ClaimRoleExtractorUtil.class); + private static final String CLAIM_RESOURCE_ACCESS = "resource_access"; + private static final String CLAIM_ROLES = "roles"; + + public static Collection extractClientRoles(final String clientId, final Map claims) { + try { + if(claims.containsKey(CLAIM_RESOURCE_ACCESS)) { + var realmAccess = (Map) claims.get(CLAIM_RESOURCE_ACCESS); + var clientIdAccess = (Map) realmAccess.get(clientId); + return (clientIdAccess.containsKey(CLAIM_ROLES)) ? (Collection) clientIdAccess.get(CLAIM_ROLES) : Collections.emptyList(); + } + } catch (Exception e) { + log.error("Error Grabbing Client Roles from OIDC User Info: Realm roles must follow the convention resource_access:client_id:roles"); + } + return Collections.emptyList(); + } + +} diff --git a/src/main/java/org/cbioportal/security/util/GrantedAuthorityUtil.java b/src/main/java/org/cbioportal/security/util/GrantedAuthorityUtil.java new file mode 100644 index 00000000000..372cd12f13b --- /dev/null +++ b/src/main/java/org/cbioportal/security/util/GrantedAuthorityUtil.java @@ -0,0 +1,14 @@ +package org.cbioportal.security.util; + +import org.springframework.security.core.GrantedAuthority; +import org.springframework.security.core.authority.SimpleGrantedAuthority; + +import java.util.Collection; +import java.util.stream.Collectors; + +public class GrantedAuthorityUtil { + private static final String PREFIX_RESOURCE_ROLE = "ROLE_"; + public static Collection generateGrantedAuthoritiesFromRoles(Collection roles) { + return roles.stream().map(role -> new SimpleGrantedAuthority(PREFIX_RESOURCE_ROLE + role)).collect(Collectors.toList()); + } +} diff --git a/service/src/main/java/org/cbioportal/service/AlterationCountService.java b/src/main/java/org/cbioportal/service/AlterationCountService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/AlterationCountService.java rename to src/main/java/org/cbioportal/service/AlterationCountService.java diff --git a/service/src/main/java/org/cbioportal/service/AlterationDriverAnnotationService.java b/src/main/java/org/cbioportal/service/AlterationDriverAnnotationService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/AlterationDriverAnnotationService.java rename to src/main/java/org/cbioportal/service/AlterationDriverAnnotationService.java diff --git a/service/src/main/java/org/cbioportal/service/AlterationEnrichmentService.java b/src/main/java/org/cbioportal/service/AlterationEnrichmentService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/AlterationEnrichmentService.java rename to src/main/java/org/cbioportal/service/AlterationEnrichmentService.java diff --git a/service/src/main/java/org/cbioportal/service/AttributeByStudyService.java b/src/main/java/org/cbioportal/service/AttributeByStudyService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/AttributeByStudyService.java rename to src/main/java/org/cbioportal/service/AttributeByStudyService.java diff --git a/service/src/main/java/org/cbioportal/service/CacheService.java b/src/main/java/org/cbioportal/service/CacheService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/CacheService.java rename to src/main/java/org/cbioportal/service/CacheService.java diff --git a/service/src/main/java/org/cbioportal/service/CacheStatisticsService.java b/src/main/java/org/cbioportal/service/CacheStatisticsService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/CacheStatisticsService.java rename to src/main/java/org/cbioportal/service/CacheStatisticsService.java diff --git a/service/src/main/java/org/cbioportal/service/CancerTypeService.java b/src/main/java/org/cbioportal/service/CancerTypeService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/CancerTypeService.java rename to src/main/java/org/cbioportal/service/CancerTypeService.java diff --git a/service/src/main/java/org/cbioportal/service/ClinicalAttributeService.java b/src/main/java/org/cbioportal/service/ClinicalAttributeService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/ClinicalAttributeService.java rename to src/main/java/org/cbioportal/service/ClinicalAttributeService.java diff --git a/service/src/main/java/org/cbioportal/service/ClinicalDataService.java b/src/main/java/org/cbioportal/service/ClinicalDataService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/ClinicalDataService.java rename to src/main/java/org/cbioportal/service/ClinicalDataService.java diff --git a/service/src/main/java/org/cbioportal/service/ClinicalEventService.java b/src/main/java/org/cbioportal/service/ClinicalEventService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/ClinicalEventService.java rename to src/main/java/org/cbioportal/service/ClinicalEventService.java diff --git a/service/src/main/java/org/cbioportal/service/CoExpressionService.java b/src/main/java/org/cbioportal/service/CoExpressionService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/CoExpressionService.java rename to src/main/java/org/cbioportal/service/CoExpressionService.java diff --git a/service/src/main/java/org/cbioportal/service/CopyNumberSegmentService.java b/src/main/java/org/cbioportal/service/CopyNumberSegmentService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/CopyNumberSegmentService.java rename to src/main/java/org/cbioportal/service/CopyNumberSegmentService.java diff --git a/service/src/main/java/org/cbioportal/service/CosmicCountService.java b/src/main/java/org/cbioportal/service/CosmicCountService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/CosmicCountService.java rename to src/main/java/org/cbioportal/service/CosmicCountService.java diff --git a/service/src/main/java/org/cbioportal/service/CustomDataService.java b/src/main/java/org/cbioportal/service/CustomDataService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/CustomDataService.java rename to src/main/java/org/cbioportal/service/CustomDataService.java diff --git a/service/src/main/java/org/cbioportal/service/DataAccessTokenService.java b/src/main/java/org/cbioportal/service/DataAccessTokenService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/DataAccessTokenService.java rename to src/main/java/org/cbioportal/service/DataAccessTokenService.java diff --git a/service/src/main/java/org/cbioportal/service/DiscreteCopyNumberService.java b/src/main/java/org/cbioportal/service/DiscreteCopyNumberService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/DiscreteCopyNumberService.java rename to src/main/java/org/cbioportal/service/DiscreteCopyNumberService.java diff --git a/service/src/main/java/org/cbioportal/service/ExpressionEnrichmentService.java b/src/main/java/org/cbioportal/service/ExpressionEnrichmentService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/ExpressionEnrichmentService.java rename to src/main/java/org/cbioportal/service/ExpressionEnrichmentService.java diff --git a/src/main/java/org/cbioportal/service/FrontendPropertiesService.java b/src/main/java/org/cbioportal/service/FrontendPropertiesService.java new file mode 100644 index 00000000000..a965eaf40d1 --- /dev/null +++ b/src/main/java/org/cbioportal/service/FrontendPropertiesService.java @@ -0,0 +1,10 @@ +package org.cbioportal.service; + +import java.util.Map; + +public interface FrontendPropertiesService { + + String getFrontendProperty(FrontendPropertiesServiceImpl.FrontendProperty property); + Map getFrontendProperties(); + +} diff --git a/src/main/java/org/cbioportal/service/FrontendPropertiesServiceImpl.java b/src/main/java/org/cbioportal/service/FrontendPropertiesServiceImpl.java new file mode 100644 index 00000000000..151f016d355 --- /dev/null +++ b/src/main/java/org/cbioportal/service/FrontendPropertiesServiceImpl.java @@ -0,0 +1,345 @@ +package org.cbioportal.service; + +import java.io.BufferedReader; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.Arrays; +import java.util.HashMap; +import java.util.Map; +import java.util.stream.Collectors; + +import jakarta.annotation.PostConstruct; +import org.cbioportal.service.util.MskWholeSlideViewerTokenGenerator; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.core.env.Environment; +import org.springframework.security.core.Authentication; +import org.springframework.security.core.context.SecurityContextHolder; +import org.springframework.stereotype.Service; + + +// Class adapted from legacy config_service.jsp and GlobalProperties.java +@Service +public class FrontendPropertiesServiceImpl implements FrontendPropertiesService { + + private final Logger log = LoggerFactory.getLogger(FrontendPropertiesServiceImpl.class); + + // This enum holds properties exposed to the frontend reactapp. + // Format: ("", "") + // There are some properties that require processing before being exposed to the frontend. + public enum FrontendProperty { + dat_method("dat.method", null), + oncoprint_custom_driver_annotation_binary_menu_label( + "oncoprint.custom_driver_annotation.binary.menu_label", null), + disabled_tabs("disabled_tabs", null), + civic_url("civic.url", null), + oncoprint_custom_driver_annotation_binary_default( + "oncoprint.custom_driver_annotation.binary.default", null), + oncoprint_oncokb_default("oncoprint.oncokb.default", null), + oncoprint_hotspots_default("oncoprint.hotspots.default", null), + oncoprint_clustered_default("oncoprint.clustered.default", null), + oncokb_merge_icons_by_default("oncokb.merge_icons_by_default", null), + oncoprint_clinical_tracks_config_json("oncoprint.clinical_tracks.config_json", null), + genomenexus_url("genomenexus.url", null), + genomenexus_url_grch38("genomenexus.url.grch38", null), + genomenexus_isoform_override_source("genomenexus.isoform_override_source", null), + google_analytics_profile_id("google_analytics_profile_id", null), + analytics_report_url("analytics_report_url", null), + oncoprint_hide_vus_default("oncoprint.hide_vus.default", null), + mycancergenome_show("mycancergenome.show", null), + oncokb_public_api_url("oncokb.public_api.url", null), + digitalslidearchive_iframe_url("digitalslidearchive.iframe.url", null), + digitalslidearchive_meta_url("digitalslidearchive.meta.url", null), + mdacc_heatmap_meta_url("mdacc.heatmap.meta.url", null), + mdacc_heatmap_patient_url("mdacc.heatmap.patient.url", null), + mdacc_heatmap_study_meta_url("mdacc.heatmap.study.meta.url", null), + mdacc_heatmap_study_url("mdacc.heatmap.study.url", null), + show_mdacc_heatmap("show.mdacc.heatmap", null), + oncoprint_custom_driver_annotation_tiers_menu_label( + "oncoprint.custom_driver_annotation.tiers.menu_label", null), + patient_view_use_legacy_timeline("patient_view.use_legacy_timeline", null), + installation_map_url("installation_map_url", null), + priority_studies("priority_studies", null), + show_hotspot("show.hotspot", null), + show_oncokb("show.oncokb", null), + show_civic("show.civic", null), + show_genomenexus("show.genomenexus", null), + show_genomenexus_annotation_sources("show.genomenexus.annotation_sources", null), + show_mutation_mappert_tool_grch38("show.mutation_mappert_tool.grch38", null), + show_transcript_dropdown("show.transcript_dropdown", null), + show_signal("show.signal", null), + show_cbioportal("show.cbioportal", null), + show_cosmic("show.cosmic", null), + show_ndex("show.ndex", null), + survival_show_p_q_values_in_survival_type_table( + "survival.show_p_q_values_in_survival_type_table", null), + survival_min_group_threshold("survival.min_group_threshold", null), + survival_initial_x_axis_limit("survival.initial_x_axis_limit", null), + skin_documentation_about("skin.documentation.about", null), + skin_documentation_baseurl("skin.documentation.baseurl", null), + skin_example_study_queries("skin.example_study_queries", null), + skin_blurb("skin.blurb", null), + skin_custom_header_tabs("skin.custom_header_tabs", null), + skin_data_sets_footer("skin.data_sets_footer", null), + skin_data_sets_header("skin.data_sets_header", null), + skin_documentation_markdown("skin.documentation.markdown", null), + skin_email_contact("skin.email_contact", null), + skin_examples_right_column_html("skin.examples_right_column_html", null), + skin_documentation_faq("skin.documentation.faq", null), + skin_footer("skin.footer", null), + skin_footer_show_dev("skin.footer_show_dev", null), + skin_login_contact_html("skin.login.contact_html", null), + skin_login_saml_registration_html("skin.login.saml.registration_html", null), + skin_documentation_news("skin.documentation.news", null), + skin_documentation_oql("skin.documentation.oql", null), + skin_query_max_tree_depth("skin.query.max_tree_depth", null), + skin_quick_select_buttons("skin.quick_select_buttons", null), + skin_right_logo("skin.right_logo", null), + skin_left_logo("skin.left_logo", null), + skin_right_nav_show_data_sets("skin.right_nav.show_data_sets", null), + skin_right_nav_show_examples("skin.right_nav.show_examples", null), + skin_right_nav_show_testimonials("skin.right_nav.show_testimonials", null), + skin_right_nav_show_whats_new("skin.right_nav.show_whats_new", null), + skin_right_nav_show_twitter("skin.right_nav.show_twitter", null), + skin_right_nav_whats_new_blurb("skin.right_nav.whats_new_blurb", null), + skin_show_about_tab("skin.show_about_tab", null), + skin_show_data_tab("skin.show_data_tab", null), + skin_show_faqs_tab("skin.show_faqs_tab", null), + skin_show_news_tab("skin.show_news_tab", null), + skin_show_r_matlab_tab("skin.show_r_matlab_tab", null), + skin_show_tools_tab("skin.show_tools_tab", null), + skin_show_tutorials_tab("skin.show_tutorials_tab", null), + skin_show_web_api_tab("skin.show_web_api_tab", null), + skin_show_tweet_button("skin.show_tweet_button", null), + skin_show_study_help_button("skin.show_study_help_button", null), + skin_patientview_filter_genes_profiled_all_samples( + "skin.patientview.filter_genes_profiled_all_samples", null), + skin_patientview_show_mskcc_slide_viewer("skin.patientview.show_mskcc_slide_viewer", null), + skin_show_settings_menu("skin.show_settings_menu", null), + skin_hide_logout_button("skin.hide_logout_button", null), + quick_search_enabled("quick_search.enabled", null), + default_cross_cancer_study_session_id("default_cross_cancer_study_session_id", null), + default_cross_cancer_study_list("default_cross_cancer_study_list", null), + default_cross_cancer_study_list_name("default_cross_cancer_study_list_name", null), + skin_description("skin.description", null), + skin_title("skin.title", null), + skin_authorization_message("skin.authorization_message", null), + session_url_length_threshold("session.url_length_threshold", null), + bitly_api_key("bitly.api_key", null), + bitly_user("bitly.user", null), + bitly_access_token("bitly.access.token", null), + oncoprint_custom_driver_annotation_tiers_default( + "oncoprint.custom_driver_annotation.tiers.default", null), + ensembl_transcript_url("ensembl.transcript_url", null), + enable_persistent_cache("enable_persistent_cache", null), + enable_request_body_gzip_compression("enable_request_body_gzip_compression", null), + query_product_limit("query_product_limit", null), + skin_show_gsva("skin.show_gsva", null), + saml_idp_metadata_entityid("saml.idp.metadata.entityid", null), + saml_logout_local("saml.logout.local", null), + skin_citation_rule_text("skin.citation_rule_text", null), + skin_geneset_hierarchy_default_p_value("skin.geneset_hierarchy.default_p_value", null), + skin_geneset_hierarchy_default_gsva_score("skin.geneset_hierarchy.default_gsva_score", null), + app_version("app.version", null), + frontendSentryEndpoint("sentryjs.frontend_project_endpoint", null), + + // These properties require additional processing. + // Names refer to the property that requires processing. + frontendConfigOverride("frontend.config", null), + query_sets_of_genes("querypage.setsofgenes.location", null), + authenticationMethod("authenticate", "false"), + mskWholeSlideViewerToken("msk.whole.slide.viewer.secret.key", null), + oncoprintOncoKbHotspotsDefault("oncoprint.oncokb_hotspots.default", "true"), + oncoKbTokenDefined("oncokb.token", ""), + sessionServiceEnabled("session.service.url", ""), + frontendUrl("frontend.url", null), + skin_hide_download_controls("skin.hide_download_controls", "show"), + study_download_url("study_download_url", "https://cbioportal-datahub.s3.amazonaws.com/"), + enable_cross_study_expression("enable_cross_study_expression", ""), + studyview_max_samples_selected("studyview.max_samples_selected", null), + skin_home_page_show_reference_genome("skin.home_page.show_reference_genome", null), + vaf_sequential_mode_default("vaf.sequential_mode.default", null), + vaf_log_scale_default("vaf.log_scale.default", null), + skin_patient_view_custom_sample_type_colors_json("skin.patient_view.custom_sample_type_colors_json", null), + skin_study_view_show_sv_table("skin.study_view.show_sv_table", null), + skin_home_page_show_unauthorized_studies("skin.home_page.show_unauthorized_studies", null), + skin_home_page_unauthorized_studies_global_message("skin.home_page.unauthorized_studies_global_message", null), + skin_mutation_table_namespace_column_show_by_default("skin.mutation_table.namespace_column.show_by_default", null), + skin_geneset_hierarchy_collapse_by_default("skin.geneset_hierarchy.collapse_by_default", null), + skin_patient_view_mutation_table_columns_show_on_init("skin.patient_view.mutation_table.columns.show_on_init", null), + skin_results_view_mutation_table_columns_show_on_init("skin.results_view.mutation_table.columns.show_on_init", null), + skin_patient_view_copy_number_table_columns_show_on_init("skin.patient_view.copy_number_table.columns.show_on_init", null), + skin_patient_view_structural_variant_table_columns_show_on_init("skin.patient_view.structural_variant_table.columns.show_on_init", null), + enable_treatment_groups("enable_treatment_groups", null), + comparison_categorical_na_values("comparison.categorical_na_values", null), + clinical_attribute_product_limit("clinical_attribute_product_limit", null), + skin_right_nav_show_web_tours("skin.right_nav.show_web_tours", "false"); + + private final String propertyName; + private final String defaultValue; + + FrontendProperty(String name, String defaultValue) { + this.propertyName = name; + this.defaultValue = defaultValue; + } + + public String getPropertyName() { + return propertyName; + } + + public String getFrontendName() { + return this.name(); + } + + public String getDefaultValue() { + return defaultValue; + } + } + + @Autowired + private Environment env; + + private static Map serverConfigProperties; + + @PostConstruct + public void init() { + serverConfigProperties = Arrays.stream(FrontendProperty.values()) + // do not use toMap here because null values are problematic + .collect( + HashMap::new, + (out, property) -> out.put(property.getFrontendName(), getPropertyValue(property)), + HashMap::putAll + ); + } + + private String getPropertyValue(FrontendProperty property) { + String propertyValue = env.getProperty(property.getPropertyName(), property.getDefaultValue()); + if (propertyValue != null) + propertyValue = propertyValue.trim(); + switch (property.getFrontendName()) { + // First, add properties that require pre-processing. + case "frontendConfigOverride": + case "query_sets_of_genes": + case "skin.patient_view.custom_sample_type_colors_json": + case "oncoprint.clinical_tracks.config_json": + return readFile(propertyValue); + case "mskWholeSlideViewerToken": + return getMskWholeSlideViewerToken(propertyValue); + case "oncoprintOncoKbHotspotsDefault": + return enableOncoKBandHotspotsParamValue(propertyValue); + case "oncoKbTokenDefined": + case "sessionServiceEnabled": + return String.valueOf(!propertyValue.isEmpty()); + case "frontendUrl": + return getFrontendUrl(propertyValue); + // For others, just return the value in the properties file. + default: + return propertyValue; + } + } + + private String getMskWholeSlideViewerToken(String secretKey) { + // this token is for the msk portal + // the token is generated based on users' timestamp to let the slide viewer know whether the token is expired and then decide whether to allow the user to login the viewer + // every time when we refresh the page or goto the new page, a new token should be generated + Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); + String timeStamp = String.valueOf(System.currentTimeMillis()); + + if (authentication != null && authentication.isAuthenticated() && secretKey != null && + !secretKey.isEmpty()) { + return "{ \"token\":\"" + MskWholeSlideViewerTokenGenerator.generateTokenByHmacSHA256( + authentication.getName(), secretKey, timeStamp) + "\", \"time\":\"" + timeStamp + + "\"}"; + } else { + return null; + } + } + + private String enableOncoKBandHotspots(String enableOncoKBandHotspots) { + if (enableOncoKBandHotspots.equalsIgnoreCase("custom")) { + return "custom"; + } else if (enableOncoKBandHotspots.equalsIgnoreCase("false")) { + return "false"; + } + return "true"; + } + + private String enableOncoKBandHotspotsParamValue(String enableOncoKBandHotspots) { + switch (enableOncoKBandHotspots(enableOncoKBandHotspots)) { + case "true": + return "undefined"; + case "false": + return "\"disable\""; + case "custom": + return "\"custom\""; + } + return null; + } + + public String getFrontendProperty(FrontendProperty property) { + return serverConfigProperties.get(property.getFrontendName()); + } + + public Map getFrontendProperties() { + // Make sure that requests work on individual instances of this data. + return cloneProperties(); + } + + private Map cloneProperties() { + return serverConfigProperties.entrySet().stream() + .collect( + HashMap::new, + (out, entry) -> out.put(entry.getKey(), entry.getValue()), + HashMap::putAll + ); + } + + private String readFile(String fileName) { + if (fileName != null && !fileName.isEmpty()) { + try (BufferedReader br = Files.newBufferedReader(Paths.get(fileName))) { + return br.lines().map(String::trim).collect(Collectors.joining("")); + } catch (Exception e) { + log.error("Error reading frontend config file: {}", e.getMessage()); + return null; + } + } + return null; + } + + public String getFrontendUrl(String propertyValue) { + String frontendUrlRuntime = env.getProperty("frontend.url.runtime", ""); + if (frontendUrlRuntime.length() > 0) { + try { + String url = parseUrl(Files.readString(Paths.get(frontendUrlRuntime)).replaceAll("[\\r\\n]+", "")); + if (log.isInfoEnabled()) { + log.info("Using frontend from {}: {}", frontendUrlRuntime, url); + } + return url; + } catch (IOException e) { + // error reading file, use existing frontendUrl + if (log.isErrorEnabled()) { + log.error("Can't read frontend.url.runtime: {}", frontendUrlRuntime); + } + } + } + return propertyValue; + } + + /* + * Trim whitespace of url and append / if it does not exist. Return empty + * string otherwise. + */ + public static String parseUrl(String url) { + String rv = ""; + if (url != null && !url.isEmpty()) { + rv = url.trim(); + if (!rv.endsWith("/")) { + rv += "/"; + } + } + return rv; + } + +} diff --git a/service/src/main/java/org/cbioportal/service/GeneMemoizerService.java b/src/main/java/org/cbioportal/service/GeneMemoizerService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/GeneMemoizerService.java rename to src/main/java/org/cbioportal/service/GeneMemoizerService.java diff --git a/service/src/main/java/org/cbioportal/service/GenePanelService.java b/src/main/java/org/cbioportal/service/GenePanelService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/GenePanelService.java rename to src/main/java/org/cbioportal/service/GenePanelService.java diff --git a/service/src/main/java/org/cbioportal/service/GeneService.java b/src/main/java/org/cbioportal/service/GeneService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/GeneService.java rename to src/main/java/org/cbioportal/service/GeneService.java diff --git a/service/src/main/java/org/cbioportal/service/GenericAssayService.java b/src/main/java/org/cbioportal/service/GenericAssayService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/GenericAssayService.java rename to src/main/java/org/cbioportal/service/GenericAssayService.java diff --git a/service/src/main/java/org/cbioportal/service/GenesetCorrelationService.java b/src/main/java/org/cbioportal/service/GenesetCorrelationService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/GenesetCorrelationService.java rename to src/main/java/org/cbioportal/service/GenesetCorrelationService.java diff --git a/service/src/main/java/org/cbioportal/service/GenesetDataService.java b/src/main/java/org/cbioportal/service/GenesetDataService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/GenesetDataService.java rename to src/main/java/org/cbioportal/service/GenesetDataService.java diff --git a/service/src/main/java/org/cbioportal/service/GenesetHierarchyService.java b/src/main/java/org/cbioportal/service/GenesetHierarchyService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/GenesetHierarchyService.java rename to src/main/java/org/cbioportal/service/GenesetHierarchyService.java diff --git a/service/src/main/java/org/cbioportal/service/GenesetService.java b/src/main/java/org/cbioportal/service/GenesetService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/GenesetService.java rename to src/main/java/org/cbioportal/service/GenesetService.java diff --git a/service/src/main/java/org/cbioportal/service/MolecularDataService.java b/src/main/java/org/cbioportal/service/MolecularDataService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/MolecularDataService.java rename to src/main/java/org/cbioportal/service/MolecularDataService.java diff --git a/service/src/main/java/org/cbioportal/service/MolecularProfileService.java b/src/main/java/org/cbioportal/service/MolecularProfileService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/MolecularProfileService.java rename to src/main/java/org/cbioportal/service/MolecularProfileService.java diff --git a/service/src/main/java/org/cbioportal/service/MrnaPercentileService.java b/src/main/java/org/cbioportal/service/MrnaPercentileService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/MrnaPercentileService.java rename to src/main/java/org/cbioportal/service/MrnaPercentileService.java diff --git a/service/src/main/java/org/cbioportal/service/MutationService.java b/src/main/java/org/cbioportal/service/MutationService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/MutationService.java rename to src/main/java/org/cbioportal/service/MutationService.java diff --git a/service/src/main/java/org/cbioportal/service/MutationSpectrumService.java b/src/main/java/org/cbioportal/service/MutationSpectrumService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/MutationSpectrumService.java rename to src/main/java/org/cbioportal/service/MutationSpectrumService.java diff --git a/service/src/main/java/org/cbioportal/service/PatientService.java b/src/main/java/org/cbioportal/service/PatientService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/PatientService.java rename to src/main/java/org/cbioportal/service/PatientService.java diff --git a/service/src/main/java/org/cbioportal/service/ReadPermissionService.java b/src/main/java/org/cbioportal/service/ReadPermissionService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/ReadPermissionService.java rename to src/main/java/org/cbioportal/service/ReadPermissionService.java diff --git a/service/src/main/java/org/cbioportal/service/ReferenceGenomeGeneService.java b/src/main/java/org/cbioportal/service/ReferenceGenomeGeneService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/ReferenceGenomeGeneService.java rename to src/main/java/org/cbioportal/service/ReferenceGenomeGeneService.java diff --git a/service/src/main/java/org/cbioportal/service/ResourceDataService.java b/src/main/java/org/cbioportal/service/ResourceDataService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/ResourceDataService.java rename to src/main/java/org/cbioportal/service/ResourceDataService.java diff --git a/service/src/main/java/org/cbioportal/service/ResourceDefinitionService.java b/src/main/java/org/cbioportal/service/ResourceDefinitionService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/ResourceDefinitionService.java rename to src/main/java/org/cbioportal/service/ResourceDefinitionService.java diff --git a/service/src/main/java/org/cbioportal/service/SampleListService.java b/src/main/java/org/cbioportal/service/SampleListService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/SampleListService.java rename to src/main/java/org/cbioportal/service/SampleListService.java diff --git a/service/src/main/java/org/cbioportal/service/SampleService.java b/src/main/java/org/cbioportal/service/SampleService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/SampleService.java rename to src/main/java/org/cbioportal/service/SampleService.java diff --git a/service/src/main/java/org/cbioportal/service/ServerStatusService.java b/src/main/java/org/cbioportal/service/ServerStatusService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/ServerStatusService.java rename to src/main/java/org/cbioportal/service/ServerStatusService.java diff --git a/service/src/main/java/org/cbioportal/service/SignificantCopyNumberRegionService.java b/src/main/java/org/cbioportal/service/SignificantCopyNumberRegionService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/SignificantCopyNumberRegionService.java rename to src/main/java/org/cbioportal/service/SignificantCopyNumberRegionService.java diff --git a/service/src/main/java/org/cbioportal/service/SignificantlyMutatedGeneService.java b/src/main/java/org/cbioportal/service/SignificantlyMutatedGeneService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/SignificantlyMutatedGeneService.java rename to src/main/java/org/cbioportal/service/SignificantlyMutatedGeneService.java diff --git a/service/src/main/java/org/cbioportal/service/StaticDataTimestampService.java b/src/main/java/org/cbioportal/service/StaticDataTimestampService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/StaticDataTimestampService.java rename to src/main/java/org/cbioportal/service/StaticDataTimestampService.java diff --git a/service/src/main/java/org/cbioportal/service/StructuralVariantService.java b/src/main/java/org/cbioportal/service/StructuralVariantService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/StructuralVariantService.java rename to src/main/java/org/cbioportal/service/StructuralVariantService.java diff --git a/service/src/main/java/org/cbioportal/service/StudyService.java b/src/main/java/org/cbioportal/service/StudyService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/StudyService.java rename to src/main/java/org/cbioportal/service/StudyService.java diff --git a/service/src/main/java/org/cbioportal/service/StudyViewService.java b/src/main/java/org/cbioportal/service/StudyViewService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/StudyViewService.java rename to src/main/java/org/cbioportal/service/StudyViewService.java diff --git a/service/src/main/java/org/cbioportal/service/TreatmentService.java b/src/main/java/org/cbioportal/service/TreatmentService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/TreatmentService.java rename to src/main/java/org/cbioportal/service/TreatmentService.java diff --git a/service/src/main/java/org/cbioportal/service/VariantCountService.java b/src/main/java/org/cbioportal/service/VariantCountService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/VariantCountService.java rename to src/main/java/org/cbioportal/service/VariantCountService.java diff --git a/service/src/main/java/org/cbioportal/service/ViolinPlotService.java b/src/main/java/org/cbioportal/service/ViolinPlotService.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/ViolinPlotService.java rename to src/main/java/org/cbioportal/service/ViolinPlotService.java diff --git a/service/src/main/java/org/cbioportal/service/exception/CacheNotFoundException.java b/src/main/java/org/cbioportal/service/exception/CacheNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/CacheNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/CacheNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/CacheOperationException.java b/src/main/java/org/cbioportal/service/exception/CacheOperationException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/CacheOperationException.java rename to src/main/java/org/cbioportal/service/exception/CacheOperationException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/CancerTypeNotFoundException.java b/src/main/java/org/cbioportal/service/exception/CancerTypeNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/CancerTypeNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/CancerTypeNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/ClinicalAttributeNotFoundException.java b/src/main/java/org/cbioportal/service/exception/ClinicalAttributeNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/ClinicalAttributeNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/ClinicalAttributeNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/DataAccessTokenNoUserIdentityException.java b/src/main/java/org/cbioportal/service/exception/DataAccessTokenNoUserIdentityException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/DataAccessTokenNoUserIdentityException.java rename to src/main/java/org/cbioportal/service/exception/DataAccessTokenNoUserIdentityException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/DataAccessTokenProhibitedUserException.java b/src/main/java/org/cbioportal/service/exception/DataAccessTokenProhibitedUserException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/DataAccessTokenProhibitedUserException.java rename to src/main/java/org/cbioportal/service/exception/DataAccessTokenProhibitedUserException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/GeneNotFoundException.java b/src/main/java/org/cbioportal/service/exception/GeneNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/GeneNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/GeneNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/GenePanelNotFoundException.java b/src/main/java/org/cbioportal/service/exception/GenePanelNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/GenePanelNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/GenePanelNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/GeneWithMultipleEntrezIdsException.java b/src/main/java/org/cbioportal/service/exception/GeneWithMultipleEntrezIdsException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/GeneWithMultipleEntrezIdsException.java rename to src/main/java/org/cbioportal/service/exception/GeneWithMultipleEntrezIdsException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/GenericAssayNotFoundException.java b/src/main/java/org/cbioportal/service/exception/GenericAssayNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/GenericAssayNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/GenericAssayNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/GenesetNotFoundException.java b/src/main/java/org/cbioportal/service/exception/GenesetNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/GenesetNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/GenesetNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/InvalidDataAccessTokenException.java b/src/main/java/org/cbioportal/service/exception/InvalidDataAccessTokenException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/InvalidDataAccessTokenException.java rename to src/main/java/org/cbioportal/service/exception/InvalidDataAccessTokenException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/MolecularProfileNotFoundException.java b/src/main/java/org/cbioportal/service/exception/MolecularProfileNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/MolecularProfileNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/MolecularProfileNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/PatientNotFoundException.java b/src/main/java/org/cbioportal/service/exception/PatientNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/PatientNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/PatientNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/ResourceDefinitionNotFoundException.java b/src/main/java/org/cbioportal/service/exception/ResourceDefinitionNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/ResourceDefinitionNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/ResourceDefinitionNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/SampleListNotFoundException.java b/src/main/java/org/cbioportal/service/exception/SampleListNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/SampleListNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/SampleListNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/SampleNotFoundException.java b/src/main/java/org/cbioportal/service/exception/SampleNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/SampleNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/SampleNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/StudyNotFoundException.java b/src/main/java/org/cbioportal/service/exception/StudyNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/StudyNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/StudyNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/exception/TokenNotFoundException.java b/src/main/java/org/cbioportal/service/exception/TokenNotFoundException.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/exception/TokenNotFoundException.java rename to src/main/java/org/cbioportal/service/exception/TokenNotFoundException.java diff --git a/service/src/main/java/org/cbioportal/service/impl/AlterationCountServiceImpl.java b/src/main/java/org/cbioportal/service/impl/AlterationCountServiceImpl.java similarity index 98% rename from service/src/main/java/org/cbioportal/service/impl/AlterationCountServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/AlterationCountServiceImpl.java index 0e5484abf2d..4175ce3cf10 100644 --- a/service/src/main/java/org/cbioportal/service/impl/AlterationCountServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/AlterationCountServiceImpl.java @@ -264,10 +264,10 @@ private Pair, Long> getAlterationGeneCou alterationCountByGene.setNumberOfAlteredCases(alterationCountByGene.getNumberOfAlteredCases() + datum.getNumberOfAlteredCases()); alterationCountByGene.setNumberOfProfiledCases(alterationCountByGene.getNumberOfProfiledCases() + datum.getNumberOfProfiledCases()); Set matchingGenePanelIds = new HashSet<>(); - if (CollectionUtils.isNotEmpty(alterationCountByGene.getMatchingGenePanelIds())) { + if (!alterationCountByGene.getMatchingGenePanelIds().isEmpty()) { matchingGenePanelIds.addAll(alterationCountByGene.getMatchingGenePanelIds()); } - if (CollectionUtils.isNotEmpty(datum.getMatchingGenePanelIds())) { + if (!datum.getMatchingGenePanelIds().isEmpty()) { matchingGenePanelIds.addAll(datum.getMatchingGenePanelIds()); } alterationCountByGene.setMatchingGenePanelIds(matchingGenePanelIds); diff --git a/service/src/main/java/org/cbioportal/service/impl/AlterationDriverAnnotationServiceImpl.java b/src/main/java/org/cbioportal/service/impl/AlterationDriverAnnotationServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/AlterationDriverAnnotationServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/AlterationDriverAnnotationServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/AlterationEnrichmentServiceImpl.java b/src/main/java/org/cbioportal/service/impl/AlterationEnrichmentServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/AlterationEnrichmentServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/AlterationEnrichmentServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/CacheServiceImpl.java b/src/main/java/org/cbioportal/service/impl/CacheServiceImpl.java similarity index 97% rename from service/src/main/java/org/cbioportal/service/impl/CacheServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/CacheServiceImpl.java index 17fd0bb56d4..6e0de479f55 100644 --- a/service/src/main/java/org/cbioportal/service/impl/CacheServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/CacheServiceImpl.java @@ -10,6 +10,7 @@ import org.cbioportal.service.CacheService; import org.cbioportal.service.exception.CacheOperationException; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.cache.CacheManager; import org.springframework.stereotype.Component; @@ -24,6 +25,7 @@ public class CacheServiceImpl implements CacheService { @Autowired(required = false) private CacheManager cacheManager; + @Qualifier("staticRefCacheMapUtil") @Autowired private CacheMapUtil cacheMapUtil; diff --git a/service/src/main/java/org/cbioportal/service/impl/CacheStatisticsServiceImpl.java b/src/main/java/org/cbioportal/service/impl/CacheStatisticsServiceImpl.java similarity index 94% rename from service/src/main/java/org/cbioportal/service/impl/CacheStatisticsServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/CacheStatisticsServiceImpl.java index 8b8cf7254ca..f5f74f15e23 100644 --- a/service/src/main/java/org/cbioportal/service/impl/CacheStatisticsServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/CacheStatisticsServiceImpl.java @@ -1,15 +1,14 @@ package org.cbioportal.service.impl; +import jakarta.annotation.PostConstruct; import org.cbioportal.persistence.util.CustomEhcachingProvider; import org.cbioportal.service.CacheStatisticsService; import org.cbioportal.service.exception.CacheNotFoundException; import org.cbioportal.utils.config.annotation.ConditionalOnProperty; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; -import org.springframework.security.access.AccessDeniedException; import org.springframework.stereotype.Service; -import javax.annotation.PostConstruct; import javax.cache.Cache; import java.util.ArrayList; import java.util.HashMap; @@ -36,7 +35,8 @@ public void initializeStatisticsService () { protected void checkIfCacheStatisticsEndpointEnabled() { if (!cacheStatisticsEndpointEnabled) { - throw new AccessDeniedException("Cache statistics is not enabled for this instance of the portal."); + // TODO re-implement Service module level Exception? + throw new RuntimeException("Cache statistics is not enabled for this instance of the portal."); } } diff --git a/service/src/main/java/org/cbioportal/service/impl/CancerTypeServiceImpl.java b/src/main/java/org/cbioportal/service/impl/CancerTypeServiceImpl.java similarity index 97% rename from service/src/main/java/org/cbioportal/service/impl/CancerTypeServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/CancerTypeServiceImpl.java index f3c05f856d3..e039b58eaab 100644 --- a/service/src/main/java/org/cbioportal/service/impl/CancerTypeServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/CancerTypeServiceImpl.java @@ -1,5 +1,6 @@ package org.cbioportal.service.impl; +import jakarta.annotation.PostConstruct; import org.cbioportal.model.TypeOfCancer; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.persistence.CancerTypeRepository; @@ -12,7 +13,6 @@ import java.util.List; import java.util.Map; -import javax.annotation.PostConstruct; @Service public class CancerTypeServiceImpl implements CancerTypeService { @@ -71,8 +71,8 @@ private TypeOfCancer getParent(List allCancerTypes, TypeOfCancer t if (typeOfCancer.getParent().equals(TISSUE)) { return typeOfCancer; } - - return getParent(allCancerTypes, allCancerTypes.stream().filter(c -> + + return getParent(allCancerTypes, allCancerTypes.stream().filter(c -> c.getTypeOfCancerId().equals(typeOfCancer.getParent())).findFirst().get()); } } diff --git a/service/src/main/java/org/cbioportal/service/impl/ClinicalAttributeServiceImpl.java b/src/main/java/org/cbioportal/service/impl/ClinicalAttributeServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/ClinicalAttributeServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/ClinicalAttributeServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/ClinicalDataServiceImpl.java b/src/main/java/org/cbioportal/service/impl/ClinicalDataServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/ClinicalDataServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/ClinicalDataServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/ClinicalEventServiceImpl.java b/src/main/java/org/cbioportal/service/impl/ClinicalEventServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/ClinicalEventServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/ClinicalEventServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/CoExpressionServiceImpl.java b/src/main/java/org/cbioportal/service/impl/CoExpressionServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/CoExpressionServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/CoExpressionServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/CopyNumberSegmentServiceImpl.java b/src/main/java/org/cbioportal/service/impl/CopyNumberSegmentServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/CopyNumberSegmentServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/CopyNumberSegmentServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/CosmicCountServiceImpl.java b/src/main/java/org/cbioportal/service/impl/CosmicCountServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/CosmicCountServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/CosmicCountServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/CustomDataServiceImpl.java b/src/main/java/org/cbioportal/service/impl/CustomDataServiceImpl.java similarity index 95% rename from service/src/main/java/org/cbioportal/service/impl/CustomDataServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/CustomDataServiceImpl.java index ef7c11c4889..3d339efb176 100644 --- a/service/src/main/java/org/cbioportal/service/impl/CustomDataServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/CustomDataServiceImpl.java @@ -4,7 +4,7 @@ import org.cbioportal.service.CustomDataService; import org.cbioportal.service.util.CustomDataSession; import org.cbioportal.service.util.SessionServiceRequestHandler; -import org.cbioportal.session_service.domain.SessionType; +import org.cbioportal.utils.removeme.Session; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -34,7 +34,7 @@ public Map getCustomDataSessions(List customA attributeId -> CompletableFuture.supplyAsync(() -> { try { String customDataSessionJson = sessionServiceRequestHandler.getSessionDataJson( - SessionType.custom_data, + Session.SessionType.custom_data, attributeId ); return sessionServiceObjectMapper.readValue(customDataSessionJson, CustomDataSession.class); diff --git a/service/src/main/java/org/cbioportal/service/impl/DiscreteCopyNumberServiceImpl.java b/src/main/java/org/cbioportal/service/impl/DiscreteCopyNumberServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/DiscreteCopyNumberServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/DiscreteCopyNumberServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/EhcacheStatisticsServiceImpl.java b/src/main/java/org/cbioportal/service/impl/EhcacheStatisticsServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/EhcacheStatisticsServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/EhcacheStatisticsServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImpl.java b/src/main/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImpl.java similarity index 99% rename from service/src/main/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImpl.java index 45eb9ae478e..849983cbd3c 100644 --- a/service/src/main/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImpl.java @@ -101,7 +101,7 @@ public List getGenericAssayNumericalEnrichments(String m // Build sampleIdToPatientIdMap to quick find if a sample has shared patientId with other samples List sampleIds = molecularProfileCaseSets.values().stream().flatMap(Collection::stream).map(MolecularProfileCaseIdentifier::getCaseId).collect(Collectors.toList()); List studyIds = Collections.nCopies(sampleIds.size(), molecularProfile.getCancerStudyIdentifier()); - List samples = sampleService.fetchSamples(studyIds, sampleIds, "ID"); + List samples = sampleService.fetchSamples(studyIds, sampleIds, "SUMMARY"); Map sampleIdToPatientIdMap = samples.stream().collect(Collectors.toMap(Sample::getStableId, Sample::getPatientId)); // Build filteredMolecularProfileCaseSets filteredMolecularProfileCaseSets = new HashMap<>(); diff --git a/service/src/main/java/org/cbioportal/service/impl/GeneMemoizerServiceImpl.java b/src/main/java/org/cbioportal/service/impl/GeneMemoizerServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/GeneMemoizerServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/GeneMemoizerServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/GenePanelServiceImpl.java b/src/main/java/org/cbioportal/service/impl/GenePanelServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/GenePanelServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/GenePanelServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/GeneServiceImpl.java b/src/main/java/org/cbioportal/service/impl/GeneServiceImpl.java similarity index 90% rename from service/src/main/java/org/cbioportal/service/impl/GeneServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/GeneServiceImpl.java index 263e4a66238..a8ae132a090 100644 --- a/service/src/main/java/org/cbioportal/service/impl/GeneServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/GeneServiceImpl.java @@ -1,5 +1,6 @@ package org.cbioportal.service.impl; +import jakarta.annotation.PostConstruct; import org.cbioportal.model.Gene; import org.cbioportal.model.GeneAlias; import org.cbioportal.model.meta.BaseMeta; @@ -7,17 +8,14 @@ import org.cbioportal.service.GeneService; import org.cbioportal.service.exception.GeneNotFoundException; import org.cbioportal.service.exception.GeneWithMultipleEntrezIdsException; -import org.mybatis.spring.MyBatisSystemException; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; -import javax.annotation.PostConstruct; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; -import java.util.function.Function; import java.util.stream.Collectors; import static java.util.stream.Collectors.*; @@ -90,19 +88,16 @@ public Gene getGene(String geneId) throws GeneNotFoundException, GeneWithMultipl Gene gene; - try { - if (isInteger(geneId)) { - gene = geneRepository.getGeneByEntrezGeneId(Integer.valueOf(geneId)); - } else { - gene = geneRepository.getGeneByHugoGeneSymbol(geneId); - } - if (gene == null) { - throw new GeneNotFoundException(geneId); - } - return gene; - } catch (MyBatisSystemException e) { - throw new GeneWithMultipleEntrezIdsException(geneId); + if (isInteger(geneId)) { + gene = geneRepository.getGeneByEntrezGeneId(Integer.valueOf(geneId)); + } else { + gene = geneRepository.getGeneByHugoGeneSymbol(geneId); } + if (gene == null) { + throw new GeneNotFoundException(geneId); + } + return gene; + } @Override diff --git a/service/src/main/java/org/cbioportal/service/impl/GenericAssayServiceImpl.java b/src/main/java/org/cbioportal/service/impl/GenericAssayServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/GenericAssayServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/GenericAssayServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/GenesetCorrelationServiceImpl.java b/src/main/java/org/cbioportal/service/impl/GenesetCorrelationServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/GenesetCorrelationServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/GenesetCorrelationServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/GenesetDataServiceImpl.java b/src/main/java/org/cbioportal/service/impl/GenesetDataServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/GenesetDataServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/GenesetDataServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/GenesetHierarchyServiceImpl.java b/src/main/java/org/cbioportal/service/impl/GenesetHierarchyServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/GenesetHierarchyServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/GenesetHierarchyServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/GenesetServiceImpl.java b/src/main/java/org/cbioportal/service/impl/GenesetServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/GenesetServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/GenesetServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/JwtDataAccessTokenServiceImpl.java b/src/main/java/org/cbioportal/service/impl/JwtDataAccessTokenServiceImpl.java similarity index 96% rename from service/src/main/java/org/cbioportal/service/impl/JwtDataAccessTokenServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/JwtDataAccessTokenServiceImpl.java index e0e523bc5d7..f3fbbe3b21f 100644 --- a/service/src/main/java/org/cbioportal/service/impl/JwtDataAccessTokenServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/JwtDataAccessTokenServiceImpl.java @@ -38,6 +38,7 @@ import org.cbioportal.service.DataAccessTokenService; import org.cbioportal.service.exception.InvalidDataAccessTokenException; import org.cbioportal.service.util.JwtUtils; +import org.cbioportal.utils.config.annotation.ConditionalOnProperty; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.authentication.BadCredentialsException; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; @@ -45,7 +46,10 @@ import java.util.Date; import java.util.List; +import org.springframework.stereotype.Component; +@Component +@ConditionalOnProperty(name = "dat.method", havingValue = "jwt") public class JwtDataAccessTokenServiceImpl implements DataAccessTokenService { @Autowired diff --git a/service/src/main/java/org/cbioportal/service/impl/MolecularDataServiceImpl.java b/src/main/java/org/cbioportal/service/impl/MolecularDataServiceImpl.java similarity index 99% rename from service/src/main/java/org/cbioportal/service/impl/MolecularDataServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/MolecularDataServiceImpl.java index 786e19186b2..57be74b44d3 100644 --- a/service/src/main/java/org/cbioportal/service/impl/MolecularDataServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/MolecularDataServiceImpl.java @@ -126,7 +126,7 @@ public Iterable getMolecularAlterations(String molecula throws MolecularProfileNotFoundException { validateMolecularProfile(molecularProfileId); - if ((entrezGeneIds == null || entrezGeneIds.isEmpty()) && projection == "SUMMARY") { + if ((entrezGeneIds == null || entrezGeneIds.isEmpty()) && projection.equals("SUMMARY")) { return molecularDataRepository.getGeneMolecularAlterationsIterableFast(molecularProfileId); } return molecularDataRepository.getGeneMolecularAlterationsIterable(molecularProfileId, entrezGeneIds, projection); diff --git a/service/src/main/java/org/cbioportal/service/impl/MolecularProfileServiceImpl.java b/src/main/java/org/cbioportal/service/impl/MolecularProfileServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/MolecularProfileServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/MolecularProfileServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/MrnaPercentileServiceImpl.java b/src/main/java/org/cbioportal/service/impl/MrnaPercentileServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/MrnaPercentileServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/MrnaPercentileServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/MutationServiceImpl.java b/src/main/java/org/cbioportal/service/impl/MutationServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/MutationServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/MutationServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/MutationSpectrumServiceImpl.java b/src/main/java/org/cbioportal/service/impl/MutationSpectrumServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/MutationSpectrumServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/MutationSpectrumServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/PatientServiceImpl.java b/src/main/java/org/cbioportal/service/impl/PatientServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/PatientServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/PatientServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/ReadPermissionServiceImpl.java b/src/main/java/org/cbioportal/service/impl/ReadPermissionServiceImpl.java similarity index 99% rename from service/src/main/java/org/cbioportal/service/impl/ReadPermissionServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/ReadPermissionServiceImpl.java index 17a54387c2a..0662008422b 100644 --- a/service/src/main/java/org/cbioportal/service/impl/ReadPermissionServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/ReadPermissionServiceImpl.java @@ -28,4 +28,4 @@ public void setReadPermission(Collection entities, Aut }); } -} +} \ No newline at end of file diff --git a/service/src/main/java/org/cbioportal/service/impl/RedisCacheStatisticsServiceImpl.java b/src/main/java/org/cbioportal/service/impl/RedisCacheStatisticsServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/RedisCacheStatisticsServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/RedisCacheStatisticsServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/ReferenceGenomeGeneServiceImpl.java b/src/main/java/org/cbioportal/service/impl/ReferenceGenomeGeneServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/ReferenceGenomeGeneServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/ReferenceGenomeGeneServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/ResourceDataServiceImpl.java b/src/main/java/org/cbioportal/service/impl/ResourceDataServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/ResourceDataServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/ResourceDataServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/ResourceDefinitionServiceImpl.java b/src/main/java/org/cbioportal/service/impl/ResourceDefinitionServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/ResourceDefinitionServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/ResourceDefinitionServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/SampleListServiceImpl.java b/src/main/java/org/cbioportal/service/impl/SampleListServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/SampleListServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/SampleListServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/SampleServiceImpl.java b/src/main/java/org/cbioportal/service/impl/SampleServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/SampleServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/SampleServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/ServerStatusServiceImpl.java b/src/main/java/org/cbioportal/service/impl/ServerStatusServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/ServerStatusServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/ServerStatusServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/SignificantCopyNumberRegionServiceImpl.java b/src/main/java/org/cbioportal/service/impl/SignificantCopyNumberRegionServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/SignificantCopyNumberRegionServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/SignificantCopyNumberRegionServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/SignificantlyMutatedGeneServiceImpl.java b/src/main/java/org/cbioportal/service/impl/SignificantlyMutatedGeneServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/SignificantlyMutatedGeneServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/SignificantlyMutatedGeneServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/StaticDataTimestampServiceImpl.java b/src/main/java/org/cbioportal/service/impl/StaticDataTimestampServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/StaticDataTimestampServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/StaticDataTimestampServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/StructuralVariantServiceImpl.java b/src/main/java/org/cbioportal/service/impl/StructuralVariantServiceImpl.java similarity index 92% rename from service/src/main/java/org/cbioportal/service/impl/StructuralVariantServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/StructuralVariantServiceImpl.java index bbb420b2b2d..07222ad3ee6 100644 --- a/service/src/main/java/org/cbioportal/service/impl/StructuralVariantServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/StructuralVariantServiceImpl.java @@ -32,6 +32,12 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; +import java.util.*; +import java.util.stream.Collectors; +import java.util.stream.Stream; +import org.cbioportal.model.MolecularProfile; +import org.cbioportal.persistence.MolecularProfileRepository; +import org.springframework.util.CollectionUtils; @Service public class StructuralVariantServiceImpl implements StructuralVariantService { diff --git a/service/src/main/java/org/cbioportal/service/impl/StudyServiceImpl.java b/src/main/java/org/cbioportal/service/impl/StudyServiceImpl.java similarity index 99% rename from service/src/main/java/org/cbioportal/service/impl/StudyServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/StudyServiceImpl.java index 066067a2203..a2209fe38d9 100644 --- a/service/src/main/java/org/cbioportal/service/impl/StudyServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/StudyServiceImpl.java @@ -41,7 +41,6 @@ public List getAllStudies(String keyword, String projection, Intege List allStudies = studyRepository.getAllStudies(keyword, projection, pageSize, pageNumber, sortBy, direction); Map sortedAllStudiesByCancerStudyIdentifier = allStudies.stream().collect(Collectors.toMap(c -> c.getCancerStudyIdentifier(), c -> c, (e1, e2) -> e2, LinkedHashMap::new)); - if (keyword != null && (pageSize == null || allStudies.size() < pageSize)) { List primarySiteMatchingStudies = findPrimarySiteMatchingStudies(keyword); for (CancerStudy cancerStudy : primarySiteMatchingStudies) { diff --git a/service/src/main/java/org/cbioportal/service/impl/StudyViewServiceImpl.java b/src/main/java/org/cbioportal/service/impl/StudyViewServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/StudyViewServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/StudyViewServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/TreatmentServiceImpl.java b/src/main/java/org/cbioportal/service/impl/TreatmentServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/TreatmentServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/TreatmentServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/UnauthDataAccessTokenServiceImpl.java b/src/main/java/org/cbioportal/service/impl/UnauthDataAccessTokenServiceImpl.java similarity index 94% rename from service/src/main/java/org/cbioportal/service/impl/UnauthDataAccessTokenServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/UnauthDataAccessTokenServiceImpl.java index c445bf5b39b..527f7ef74b6 100644 --- a/service/src/main/java/org/cbioportal/service/impl/UnauthDataAccessTokenServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/UnauthDataAccessTokenServiceImpl.java @@ -34,17 +34,21 @@ import org.cbioportal.model.DataAccessToken; import org.cbioportal.service.DataAccessTokenService; +import org.cbioportal.utils.config.annotation.ConditionalOnProperty; import org.springframework.security.access.AccessDeniedException; import org.springframework.security.core.Authentication; import java.util.Date; import java.util.List; +import org.springframework.stereotype.Component; /** * * @author ochoaa */ +@Component +@ConditionalOnProperty(name = "authenticate", havingValue = "none", matchIfMissing = true) public class UnauthDataAccessTokenServiceImpl implements DataAccessTokenService { @Override diff --git a/service/src/main/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImpl.java b/src/main/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImpl.java similarity index 97% rename from service/src/main/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImpl.java index 01027a9bf81..b1c977edb75 100644 --- a/service/src/main/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImpl.java +++ b/src/main/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImpl.java @@ -38,6 +38,7 @@ import org.cbioportal.persistence.DataAccessTokenRepository; import org.cbioportal.service.DataAccessTokenService; import org.cbioportal.service.exception.TokenNotFoundException; +import org.cbioportal.utils.config.annotation.ConditionalOnProperty; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.security.authentication.BadCredentialsException; @@ -48,7 +49,10 @@ import java.util.Date; import java.util.List; import java.util.UUID; +import org.springframework.stereotype.Component; +@Component +@ConditionalOnProperty(name = "dat.method", havingValue = "uuid") public class UuidDataAccessTokenServiceImpl implements DataAccessTokenService { @Autowired diff --git a/service/src/main/java/org/cbioportal/service/impl/VariantCountServiceImpl.java b/src/main/java/org/cbioportal/service/impl/VariantCountServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/VariantCountServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/VariantCountServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/impl/ViolinPlotServiceImpl.java b/src/main/java/org/cbioportal/service/impl/ViolinPlotServiceImpl.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/impl/ViolinPlotServiceImpl.java rename to src/main/java/org/cbioportal/service/impl/ViolinPlotServiceImpl.java diff --git a/service/src/main/java/org/cbioportal/service/util/AlterationEnrichmentUtil.java b/src/main/java/org/cbioportal/service/util/AlterationEnrichmentUtil.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/util/AlterationEnrichmentUtil.java rename to src/main/java/org/cbioportal/service/util/AlterationEnrichmentUtil.java diff --git a/service/src/main/java/org/cbioportal/service/util/BinnableCustomDataValue.java b/src/main/java/org/cbioportal/service/util/BinnableCustomDataValue.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/util/BinnableCustomDataValue.java rename to src/main/java/org/cbioportal/service/util/BinnableCustomDataValue.java diff --git a/service/src/main/java/org/cbioportal/service/util/ChromosomeCalculator.java b/src/main/java/org/cbioportal/service/util/ChromosomeCalculator.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/util/ChromosomeCalculator.java rename to src/main/java/org/cbioportal/service/util/ChromosomeCalculator.java diff --git a/service/src/main/java/org/cbioportal/service/util/ClinicalAttributeUtil.java b/src/main/java/org/cbioportal/service/util/ClinicalAttributeUtil.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/util/ClinicalAttributeUtil.java rename to src/main/java/org/cbioportal/service/util/ClinicalAttributeUtil.java diff --git a/service/src/main/java/org/cbioportal/service/util/CoExpressionAsyncMethods.java b/src/main/java/org/cbioportal/service/util/CoExpressionAsyncMethods.java similarity index 95% rename from service/src/main/java/org/cbioportal/service/util/CoExpressionAsyncMethods.java rename to src/main/java/org/cbioportal/service/util/CoExpressionAsyncMethods.java index 5f8bac02849..6e07ab2c1a9 100644 --- a/service/src/main/java/org/cbioportal/service/util/CoExpressionAsyncMethods.java +++ b/src/main/java/org/cbioportal/service/util/CoExpressionAsyncMethods.java @@ -3,8 +3,6 @@ import org.springframework.stereotype.Component; import org.springframework.scheduling.annotation.Async; import org.cbioportal.model.CoExpression; -import org.cbioportal.service.exception.GeneNotFoundException; -import org.cbioportal.service.exception.GenesetNotFoundException; import org.apache.commons.lang3.math.NumberUtils; import org.apache.commons.math3.linear.Array2DRowRealMatrix; import org.apache.commons.math3.linear.RealMatrix; diff --git a/service/src/main/java/org/cbioportal/service/util/CustomAttributeWithData.java b/src/main/java/org/cbioportal/service/util/CustomAttributeWithData.java similarity index 98% rename from service/src/main/java/org/cbioportal/service/util/CustomAttributeWithData.java rename to src/main/java/org/cbioportal/service/util/CustomAttributeWithData.java index 65b7758d573..ce7e5bcd159 100644 --- a/service/src/main/java/org/cbioportal/service/util/CustomAttributeWithData.java +++ b/src/main/java/org/cbioportal/service/util/CustomAttributeWithData.java @@ -7,9 +7,9 @@ import java.util.Set; import java.util.stream.Collectors; -import javax.validation.constraints.NotNull; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import jakarta.validation.constraints.NotNull; @JsonIgnoreProperties(ignoreUnknown = true) public class CustomAttributeWithData implements Serializable { diff --git a/service/src/main/java/org/cbioportal/service/util/CustomDataSession.java b/src/main/java/org/cbioportal/service/util/CustomDataSession.java similarity index 90% rename from service/src/main/java/org/cbioportal/service/util/CustomDataSession.java rename to src/main/java/org/cbioportal/service/util/CustomDataSession.java index cd25a4ea471..151af9b4227 100644 --- a/service/src/main/java/org/cbioportal/service/util/CustomDataSession.java +++ b/src/main/java/org/cbioportal/service/util/CustomDataSession.java @@ -4,9 +4,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.cbioportal.session_service.domain.Session; -import org.cbioportal.session_service.domain.SessionType; - +import org.cbioportal.utils.removeme.Session; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/service/src/main/java/org/cbioportal/service/util/CustomDataValue.java b/src/main/java/org/cbioportal/service/util/CustomDataValue.java similarity index 95% rename from service/src/main/java/org/cbioportal/service/util/CustomDataValue.java rename to src/main/java/org/cbioportal/service/util/CustomDataValue.java index a0cb95c42a6..9e9343a7e2a 100644 --- a/service/src/main/java/org/cbioportal/service/util/CustomDataValue.java +++ b/src/main/java/org/cbioportal/service/util/CustomDataValue.java @@ -2,9 +2,9 @@ import java.io.Serializable; -import javax.validation.constraints.NotNull; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import jakarta.validation.constraints.NotNull; @JsonIgnoreProperties(ignoreUnknown = true) public class CustomDataValue implements Serializable { diff --git a/service/src/main/java/org/cbioportal/service/util/ExpressionEnrichmentUtil.java b/src/main/java/org/cbioportal/service/util/ExpressionEnrichmentUtil.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/util/ExpressionEnrichmentUtil.java rename to src/main/java/org/cbioportal/service/util/ExpressionEnrichmentUtil.java diff --git a/service/src/main/java/org/cbioportal/service/util/FisherExactTestCalculator.java b/src/main/java/org/cbioportal/service/util/FisherExactTestCalculator.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/util/FisherExactTestCalculator.java rename to src/main/java/org/cbioportal/service/util/FisherExactTestCalculator.java diff --git a/service/src/main/java/org/cbioportal/service/util/JwtUtils.java b/src/main/java/org/cbioportal/service/util/JwtUtils.java similarity index 94% rename from service/src/main/java/org/cbioportal/service/util/JwtUtils.java rename to src/main/java/org/cbioportal/service/util/JwtUtils.java index feebce52286..e7022de31a7 100644 --- a/service/src/main/java/org/cbioportal/service/util/JwtUtils.java +++ b/src/main/java/org/cbioportal/service/util/JwtUtils.java @@ -48,7 +48,6 @@ package org.cbioportal.service.util; -import com.mysql.jdbc.StringUtils; import org.cbioportal.model.DataAccessToken; import org.cbioportal.service.exception.InvalidDataAccessTokenException; @@ -73,7 +72,7 @@ public class JwtUtils { private byte[] decodedSecretKey; @Value("${dat.jwt.secret_key:none}") // default value is none private void setDecodedSecretKey(String secretKey) { - if (!StringUtils.isNullOrEmpty(secretKey) && !secretKey.equalsIgnoreCase("none")) { + if (!secretKey.isEmpty() && !secretKey.equalsIgnoreCase("none")) { this.decodedSecretKey = Decoders.BASE64.decode(secretKey); } } @@ -145,17 +144,11 @@ public static String createNewSecretKey() { } public static void main(String[] args) { - if (args.length < 1 || args.length > 1) { - usage(); - } - if (args[0].equals("--make-key")) { + if (args.length == 1 && args[0].equals("--make-key")) { System.out.println("Creating new secret key for JWTS token signing:"); System.out.println(createNewSecretKey()); + } else { + System.out.println("usage: JwtUtils --make-key"); } } - - public static void usage() { - System.out.println("usage: JwtUtils --make-key"); - } - } diff --git a/service/src/main/java/org/cbioportal/service/util/MolecularProfileUtil.java b/src/main/java/org/cbioportal/service/util/MolecularProfileUtil.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/util/MolecularProfileUtil.java rename to src/main/java/org/cbioportal/service/util/MolecularProfileUtil.java diff --git a/src/main/java/org/cbioportal/service/util/MskWholeSlideViewerTokenGenerator.java b/src/main/java/org/cbioportal/service/util/MskWholeSlideViewerTokenGenerator.java new file mode 100644 index 00000000000..22ac7e776ae --- /dev/null +++ b/src/main/java/org/cbioportal/service/util/MskWholeSlideViewerTokenGenerator.java @@ -0,0 +1,37 @@ + +package org.cbioportal.service.util; + +import java.util.Base64; +import javax.crypto.Mac; +import javax.crypto.spec.SecretKeySpec; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class MskWholeSlideViewerTokenGenerator { + // ~ Static fields + // ======================================================================================================== + + private final static Logger logger = LoggerFactory.getLogger(MskWholeSlideViewerTokenGenerator.class); + private static final String PORTAL_NAME = "cbioportal"; + + // ~ Methods + // ======================================================================================================== + + public static String generateTokenByHmacSHA256(String username, String secretKey, String timeStamp) { + try { + String message = PORTAL_NAME + "?" + "user=" + username + "&t=" + timeStamp; + + Mac sha256_HMAC = Mac.getInstance("HmacSHA256"); + SecretKeySpec secret_key = new SecretKeySpec(secretKey.getBytes(), "HmacSHA256"); + sha256_HMAC.init(secret_key); + String hash = Base64.getEncoder().encodeToString(sha256_HMAC.doFinal(message.getBytes())); + return hash; + } + catch (Exception e) { + if (logger.isErrorEnabled()) { + logger.error("Error generate msk Whole slide viewer token: " + e.getMessage()); + } + return null; + } + } +} diff --git a/service/src/main/java/org/cbioportal/service/util/ProfiledCasesCounter.java b/src/main/java/org/cbioportal/service/util/ProfiledCasesCounter.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/util/ProfiledCasesCounter.java rename to src/main/java/org/cbioportal/service/util/ProfiledCasesCounter.java diff --git a/service/src/main/java/org/cbioportal/service/util/SessionServiceConfig.java b/src/main/java/org/cbioportal/service/util/SessionServiceConfig.java similarity index 100% rename from service/src/main/java/org/cbioportal/service/util/SessionServiceConfig.java rename to src/main/java/org/cbioportal/service/util/SessionServiceConfig.java diff --git a/service/src/main/java/org/cbioportal/service/util/SessionServiceRequestHandler.java b/src/main/java/org/cbioportal/service/util/SessionServiceRequestHandler.java similarity index 97% rename from service/src/main/java/org/cbioportal/service/util/SessionServiceRequestHandler.java rename to src/main/java/org/cbioportal/service/util/SessionServiceRequestHandler.java index cabe6cfa934..c408f2f2139 100644 --- a/service/src/main/java/org/cbioportal/service/util/SessionServiceRequestHandler.java +++ b/src/main/java/org/cbioportal/service/util/SessionServiceRequestHandler.java @@ -1,10 +1,12 @@ package org.cbioportal.service.util; +import static org.cbioportal.utils.removeme.Session.*; + + import java.nio.charset.Charset; import org.apache.commons.codec.binary.Base64; import org.apache.commons.lang3.StringUtils; -import org.cbioportal.session_service.domain.SessionType; import org.springframework.beans.factory.annotation.Value; import org.springframework.http.HttpEntity; import org.springframework.http.HttpHeaders; diff --git a/web/src/main/java/org/cbioportal/url_shortener/URLShortenerController.java b/src/main/java/org/cbioportal/url_shortener/URLShortenerController.java similarity index 83% rename from web/src/main/java/org/cbioportal/url_shortener/URLShortenerController.java rename to src/main/java/org/cbioportal/url_shortener/URLShortenerController.java index d266cedd7ce..00804ca9769 100644 --- a/web/src/main/java/org/cbioportal/url_shortener/URLShortenerController.java +++ b/src/main/java/org/cbioportal/url_shortener/URLShortenerController.java @@ -12,6 +12,8 @@ import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; +// TODO Consider creating separate DispatcherServlets as in the original web.xml +// See: https://stackoverflow.com/a/30686733/11651683 @RestController public class URLShortenerController { @@ -21,7 +23,7 @@ public class URLShortenerController { private Bitly bitly ; private UrlValidator urlValidator = new UrlValidator(); - @RequestMapping(method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @RequestMapping(path = "/api/url-shortener", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity urlShortener(@RequestParam String url) { if (urlValidator.isValid(url)) { diff --git a/web/src/main/java/org/cbioportal/url_shortener/URLShortenerResponse.java b/src/main/java/org/cbioportal/url_shortener/URLShortenerResponse.java similarity index 100% rename from web/src/main/java/org/cbioportal/url_shortener/URLShortenerResponse.java rename to src/main/java/org/cbioportal/url_shortener/URLShortenerResponse.java diff --git a/utils/src/main/java/org/cbioportal/utils/config/PropertyCondition.java b/src/main/java/org/cbioportal/utils/config/PropertyCondition.java similarity index 97% rename from utils/src/main/java/org/cbioportal/utils/config/PropertyCondition.java rename to src/main/java/org/cbioportal/utils/config/PropertyCondition.java index f19da2e365d..679343e0801 100644 --- a/utils/src/main/java/org/cbioportal/utils/config/PropertyCondition.java +++ b/src/main/java/org/cbioportal/utils/config/PropertyCondition.java @@ -42,7 +42,7 @@ import java.util.stream.Stream; @PropertySources({ - @PropertySource(value="classpath:portal.properties", ignoreResourceNotFound=true), + @PropertySource(value="classpath:application.properties", ignoreResourceNotFound=true), @PropertySource(value="file:///${PORTAL_HOME}/portal.properties", ignoreResourceNotFound=true) }) // Adapted from Spring Boot diff --git a/utils/src/main/java/org/cbioportal/utils/config/annotation/ConditionalOnProperty.java b/src/main/java/org/cbioportal/utils/config/annotation/ConditionalOnProperty.java similarity index 100% rename from utils/src/main/java/org/cbioportal/utils/config/annotation/ConditionalOnProperty.java rename to src/main/java/org/cbioportal/utils/config/annotation/ConditionalOnProperty.java diff --git a/src/main/java/org/cbioportal/utils/removeme/Session.java b/src/main/java/org/cbioportal/utils/removeme/Session.java new file mode 100644 index 00000000000..6d12df58d79 --- /dev/null +++ b/src/main/java/org/cbioportal/utils/removeme/Session.java @@ -0,0 +1,90 @@ +package org.cbioportal.utils.removeme; + +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonView; +import jakarta.validation.constraints.NotNull; +import jakarta.validation.constraints.Size; +import org.bson.Document; +import org.springframework.data.annotation.Id; +import org.springframework.util.DigestUtils; + +// TODO this class was taken from session service. The session service dependency had to be dropped +// since it forced cbioportal into autoconfiguration of mongoDB connections. +// When session service is updated reinstate the correct session service dependency. + +@JsonInclude(JsonInclude.Include.NON_NULL) +public class Session { + + public enum SessionType { + main_session, + virtual_study, + group, + comparison_session, + settings, + custom_data, + genomic_chart, + custom_gene_list + } + + @Id + private String id; + @NotNull + private String checksum; + @NotNull + private Object data; + @NotNull + @Size(min=3, message="source has a minimum length of 3") + private String source; + @NotNull + private SessionType type; + + + @JsonView(Session.Views.IdOnly.class) + public String getId() { + return id; + } + + public String getChecksum() { + return checksum; + } + + public void setData(Object data) { + if(data instanceof String) { + this.data = Document.parse((String)data); + } else { + this.data = data; + } + this.checksum = DigestUtils.md5DigestAsHex(this.data.toString().getBytes()); + } + + @JsonView(Session.Views.Full.class) + public Object getData() { + return data; + } + + public void setType(SessionType type) { + this.type = type; + } + + @JsonView(org.cbioportal.utils.removeme.Session.Views.Full.class) + public SessionType getType() { + return type; + } + + public void setSource(String source) { + this.source = source; + } + + @JsonView(Session.Views.Full.class) + public String getSource() { + return source; + } + + public static final class Views { + // show only id + public interface IdOnly {} + + // show all data + public interface Full extends Session.Views.IdOnly {} + } +} diff --git a/utils/src/main/java/org/cbioportal/utils/security/AccessLevel.java b/src/main/java/org/cbioportal/utils/security/AccessLevel.java similarity index 100% rename from utils/src/main/java/org/cbioportal/utils/security/AccessLevel.java rename to src/main/java/org/cbioportal/utils/security/AccessLevel.java diff --git a/src/main/java/org/cbioportal/utils/security/PortalSecurityConfig.java b/src/main/java/org/cbioportal/utils/security/PortalSecurityConfig.java new file mode 100644 index 00000000000..068a1641d68 --- /dev/null +++ b/src/main/java/org/cbioportal/utils/security/PortalSecurityConfig.java @@ -0,0 +1,12 @@ +package org.cbioportal.utils.security; + +public class PortalSecurityConfig { + + // This method is the equivalent of GlobalProperties.usersMustAuthenticate() + // method in the org.mskcc.cbio.portal.util package. Update both when changes are needed. + public static boolean userAuthorizationEnabled(String authenticate) { + return authenticate != null + && !authenticate.equals("false"); + } + +} diff --git a/src/main/java/org/cbioportal/utils/validation/AllowedValues.java b/src/main/java/org/cbioportal/utils/validation/AllowedValues.java new file mode 100644 index 00000000000..b42d3b0679b --- /dev/null +++ b/src/main/java/org/cbioportal/utils/validation/AllowedValues.java @@ -0,0 +1,27 @@ +package org.cbioportal.utils.validation; + +import jakarta.validation.Constraint; +import jakarta.validation.Payload; +import jakarta.validation.ReportAsSingleViolation; +import jakarta.validation.constraints.NotNull; + +import java.lang.annotation.Documented; +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Documented +@Constraint(validatedBy = AllowedValuesValidatorImpl.class) +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.FIELD) +@NotNull(message = "Value cannot be null") +@ReportAsSingleViolation +public @interface AllowedValues { + + String[] values() default {}; + String message() default "Value is not valid"; + Class[] groups() default {}; + Class[] payload() default {}; + +} \ No newline at end of file diff --git a/src/main/java/org/cbioportal/utils/validation/AllowedValuesValidatorImpl.java b/src/main/java/org/cbioportal/utils/validation/AllowedValuesValidatorImpl.java new file mode 100644 index 00000000000..08eb9800b5c --- /dev/null +++ b/src/main/java/org/cbioportal/utils/validation/AllowedValuesValidatorImpl.java @@ -0,0 +1,31 @@ +package org.cbioportal.utils.validation; + +import jakarta.validation.ConstraintValidator; +import jakarta.validation.ConstraintValidatorContext; + +import java.util.Arrays; +import java.util.stream.Collectors; + +public class AllowedValuesValidatorImpl implements ConstraintValidator { + + String[] valueList; + + @Override + public boolean isValid(String value, ConstraintValidatorContext context) { + boolean isValid = Arrays.stream(valueList) + .anyMatch(allowedValue -> allowedValue.equals(value)); + if (!isValid) { + context.disableDefaultConstraintViolation(); + context.buildConstraintViolationWithTemplate("Allowed values are: " + + Arrays.stream(valueList).collect(Collectors.joining(", "))) + .addConstraintViolation(); + } + return isValid; + } + + @Override + public void initialize(AllowedValues constraintAnnotation) { + valueList = constraintAnnotation.values(); + } + +} \ No newline at end of file diff --git a/src/main/java/org/cbioportal/web/AlterationDriverAnnotationController.java b/src/main/java/org/cbioportal/web/AlterationDriverAnnotationController.java new file mode 100644 index 00000000000..35880303b77 --- /dev/null +++ b/src/main/java/org/cbioportal/web/AlterationDriverAnnotationController.java @@ -0,0 +1,51 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import org.cbioportal.model.CustomDriverAnnotationReport; +import org.cbioportal.service.AlterationDriverAnnotationService; +import org.cbioportal.web.config.annotation.InternalApi; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Custom driver annotations", description = " ") +public class AlterationDriverAnnotationController { + + @Autowired + private AlterationDriverAnnotationService alterationDriverAnnotationService; + + @PreAuthorize("hasPermission(#molecularProfileIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/custom-driver-annotation-report/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(summary = "Return availability of custom driver annotations for molecular profiles") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = CustomDriverAnnotationReport.class))) + public ResponseEntity fetchAlterationDriverAnnotationReport( + @Parameter(required = true, description = "List of Molecular Profile Ids") + @RequestBody List molecularProfileIds) { + + CustomDriverAnnotationReport customDriverAnnotationReport = alterationDriverAnnotationService.getCustomDriverAnnotationProps(molecularProfileIds); + + return new ResponseEntity<>(customDriverAnnotationReport, HttpStatus.OK); + } +} + diff --git a/src/main/java/org/cbioportal/web/AlterationEnrichmentController.java b/src/main/java/org/cbioportal/web/AlterationEnrichmentController.java new file mode 100644 index 00000000000..2d635e1e3e9 --- /dev/null +++ b/src/main/java/org/cbioportal/web/AlterationEnrichmentController.java @@ -0,0 +1,80 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import org.cbioportal.model.AlterationEnrichment; +import org.cbioportal.model.AlterationFilter; +import org.cbioportal.model.EnrichmentType; +import org.cbioportal.model.MolecularProfileCaseIdentifier; +import org.cbioportal.service.AlterationEnrichmentService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.MolecularProfileCasesGroupAndAlterationTypeFilter; +import org.cbioportal.web.parameter.MolecularProfileCasesGroupFilter; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.Collection; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Alteration Enrichments", description = " ") +public class AlterationEnrichmentController { + + @Autowired + private AlterationEnrichmentService alterationEnrichmentService; + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/alteration-enrichments/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(summary ="Fetch alteration enrichments in molecular profiles") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = AlterationEnrichment.class)))) + public ResponseEntity> fetchAlterationEnrichments( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) + // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedMolecularProfileCasesGroupFilters") List interceptedMolecularProfileCasesGroupFilters, + @Parameter(hidden = true) + @Valid @RequestAttribute(required = false, value = "alterationEventTypes") AlterationFilter alterationEventTypes, + @Parameter(description = "Type of the enrichment e.g. SAMPLE or PATIENT") + @RequestParam(defaultValue = "SAMPLE") EnrichmentType enrichmentType, + @Parameter(required = true, description = "List of groups containing sample identifiers and list of Alteration Types") + @Valid @RequestBody(required = false) MolecularProfileCasesGroupAndAlterationTypeFilter groupsAndAlterationTypes) throws MolecularProfileNotFoundException { + + Map> groupCaseIdentifierSet = interceptedMolecularProfileCasesGroupFilters.stream() + .collect(Collectors.toMap(MolecularProfileCasesGroupFilter::getName, + MolecularProfileCasesGroupFilter::getMolecularProfileCaseIdentifiers)); + + List alterationEnrichments = alterationEnrichmentService.getAlterationEnrichments( + groupCaseIdentifierSet, + enrichmentType, + alterationEventTypes); + + return new ResponseEntity<>(alterationEnrichments, HttpStatus.OK); + } +} + diff --git a/src/main/java/org/cbioportal/web/CacheController.java b/src/main/java/org/cbioportal/web/CacheController.java new file mode 100644 index 00000000000..b739ef2b575 --- /dev/null +++ b/src/main/java/org/cbioportal/web/CacheController.java @@ -0,0 +1,82 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import org.cbioportal.service.CacheService; +import org.cbioportal.service.exception.CacheOperationException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestHeader; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + + +@RestController +@Validated +@InternalApi +@Tag(name = "Cache") +public class CacheController { + + @Autowired + private CacheService cacheService; + + @Value("${cache.endpoint.api-key:not set}") + private String requiredApiKey; + + @Value("${cache.endpoint.enabled:false}") + private boolean cacheEndpointEnabled; + + @RequestMapping(value = "/api/cache", method = RequestMethod.DELETE, produces = MediaType.TEXT_PLAIN_VALUE) + @Operation(summary ="Clear and reinitialize caches") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = String.class))) + public ResponseEntity clearAllCaches( + @Parameter(description = "Secret API key passed in HTTP header. The key is configured in portal.properties of the portal instance.") + @RequestHeader(value = "X-API-KEY") String providedApiKey, + @Parameter(description = "Clear Spring-managed caches") + @RequestParam(defaultValue = "true", required = false) final boolean springManagedCache) + throws CacheOperationException { + if (!cacheEndpointEnabled) { + return new ResponseEntity<>("Cache endpoint is disabled for this instance.", HttpStatus.NOT_FOUND); + } + if ("not set".equals(requiredApiKey) || ! requiredApiKey.equals(providedApiKey)) { + return new ResponseEntity<>("", HttpStatus.UNAUTHORIZED); + } + cacheService.clearCaches(springManagedCache); + return new ResponseEntity<>("Flushed all caches!!!", HttpStatus.OK); + } + + @RequestMapping(value = "/cache/{studyId}", method = RequestMethod.DELETE, produces = MediaType.TEXT_PLAIN_VALUE) + @Operation(summary ="Clear and reinitialize caches after import/removal/update of a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = String.class))) + public ResponseEntity clearCachesForStudy( + @Parameter(description = "Secret API key passed in HTTP header. The key is configured in portal.properties of the portal instance.") + @RequestHeader(value = "X-API-KEY") String providedApiKey, + @PathVariable String studyId, + @Parameter(description = "Clear Spring-managed caches") + @RequestParam(defaultValue = "true", required = false) final boolean springManagedCache) + throws CacheOperationException { + if (!cacheEndpointEnabled) { + return new ResponseEntity<>("Cache endpoint is disabled for this instance.", HttpStatus.NOT_FOUND); + } + if ("not set".equals(requiredApiKey) || ! requiredApiKey.equals(providedApiKey)) { + return new ResponseEntity<>("", HttpStatus.UNAUTHORIZED); + } + + cacheService.clearCachesForStudy(studyId, springManagedCache); + return new ResponseEntity<>("Flushed "+ studyId +" caches!!!", HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/CacheStatsController.java b/src/main/java/org/cbioportal/web/CacheStatsController.java new file mode 100644 index 00000000000..abcdff97a9d --- /dev/null +++ b/src/main/java/org/cbioportal/web/CacheStatsController.java @@ -0,0 +1,65 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Hidden; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import org.cbioportal.service.CacheStatisticsService; +import org.cbioportal.service.exception.CacheNotFoundException; +import org.cbioportal.utils.config.annotation.ConditionalOnProperty; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@RestController +@Validated +@Tag(name = "CacheStats", description = " ") +@Hidden +@ConditionalOnProperty(name = "persistence.cache_type", havingValue = {"ehcache-heap", "ehcache-disk", "ehcache-hybrid", "redis"}) +public class CacheStatsController { + + @Autowired + public CacheStatisticsService cacheStatisticsService; + + @RequestMapping(value = "/api/{cache}/keysInCache", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get list of keys in cache") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = String.class)))) + public ResponseEntity> getKeysInCache( + @Parameter(required = true, description = "Cache name") + @PathVariable String cache) throws CacheNotFoundException { + List strings = cacheStatisticsService.getKeysInCache(cache); + return new ResponseEntity<>(strings, HttpStatus.OK); + } + + @RequestMapping(value = "/api/{cache}/keyCountsPerClass", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get counts of keys per repository class") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = String.class)))) + public ResponseEntity> getKeyCountsPerClass( + @Parameter(required = true, description = "Cache name") + @PathVariable String cache) throws CacheNotFoundException { + List strings = cacheStatisticsService.getKeyCountsPerClass(cache); + return new ResponseEntity<>(strings, HttpStatus.OK); + } + + @RequestMapping(value = "/api/cacheStatistics", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get general cache statistics") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = String.class))) + public ResponseEntity getCacheStatistics() throws CacheNotFoundException { + return new ResponseEntity<>(cacheStatisticsService.getCacheStatistics(), HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/CancerTypeController.java b/src/main/java/org/cbioportal/web/CancerTypeController.java new file mode 100644 index 00000000000..3ea034f775a --- /dev/null +++ b/src/main/java/org/cbioportal/web/CancerTypeController.java @@ -0,0 +1,86 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.TypeOfCancer; +import org.cbioportal.service.CancerTypeService; +import org.cbioportal.service.exception.CancerTypeNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.CancerTypeSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@PublicApi +@RestController +@Validated +@Tag(name = PublicApiTags.CANCER_TYPES, description = " ") +public class CancerTypeController { + + @Autowired + private CancerTypeService cancerTypeService; + + @RequestMapping(value = "/api/cancer-types", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all cancer types") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = TypeOfCancer.class)))) + public ResponseEntity> getAllCancerTypes( + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") final Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) final Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) final Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) final CancerTypeSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") final Direction direction) { + + if (projection == Projection.META) { + final HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, cancerTypeService.getMetaCancerTypes().getTotalCount() + .toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + cancerTypeService.getAllCancerTypes(projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @RequestMapping(value = "/api/cancer-types/{cancerTypeId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get a cancer type") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = String.class))) + public ResponseEntity getCancerType( + @Parameter(required = true, description = "Cancer Type ID e.g. acc") + @PathVariable final String cancerTypeId) throws CancerTypeNotFoundException { + return new ResponseEntity<>(cancerTypeService.getCancerType(cancerTypeId), HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/ClinicalAttributeController.java b/src/main/java/org/cbioportal/web/ClinicalAttributeController.java new file mode 100644 index 00000000000..730b8925810 --- /dev/null +++ b/src/main/java/org/cbioportal/web/ClinicalAttributeController.java @@ -0,0 +1,159 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.ClinicalAttribute; +import org.cbioportal.service.ClinicalAttributeService; +import org.cbioportal.service.exception.ClinicalAttributeNotFoundException; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.ClinicalAttributeSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@PublicApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.CLINICAL_ATTRIBUTES, description = " ") +public class ClinicalAttributeController { + + @Autowired + private ClinicalAttributeService clinicalAttributeService; + + @RequestMapping(value = "/clinical-attributes", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all clinical attributes") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalAttribute.class)))) + public ResponseEntity> getAllClinicalAttributes( + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ClinicalAttributeSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalAttributeService.getMetaClinicalAttributes() + .getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + clinicalAttributeService.getAllClinicalAttributes(projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/clinical-attributes", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all clinical attributes in the specified study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalAttribute.class)))) + public ResponseEntity> getAllClinicalAttributesInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ClinicalAttributeSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalAttributeService + .getMetaClinicalAttributesInStudy(studyId).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + clinicalAttributeService.getAllClinicalAttributesInStudy(studyId, projection.name(), pageSize, + pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), + HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/clinical-attributes/{clinicalAttributeId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get specified clinical attribute") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = ClinicalAttribute.class))) + public ResponseEntity getClinicalAttributeInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(required = true, description= "Clinical Attribute ID e.g. CANCER_TYPE") + @PathVariable String clinicalAttributeId) + throws ClinicalAttributeNotFoundException, StudyNotFoundException { + + return new ResponseEntity<>(clinicalAttributeService.getClinicalAttribute(studyId, clinicalAttributeId), + HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#studyIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/clinical-attributes/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch clinical attributes") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalAttribute.class)))) + public ResponseEntity> fetchClinicalAttributes( + @Parameter(required = true, description = "List of Study IDs") + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + @RequestBody List studyIds, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalAttributeService.fetchMetaClinicalAttributes( + studyIds).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>(clinicalAttributeService.fetchClinicalAttributes(studyIds, projection.name()), + HttpStatus.OK); + } + } + +} diff --git a/src/main/java/org/cbioportal/web/ClinicalAttributeCountController.java b/src/main/java/org/cbioportal/web/ClinicalAttributeCountController.java new file mode 100644 index 00000000000..7bf96005675 --- /dev/null +++ b/src/main/java/org/cbioportal/web/ClinicalAttributeCountController.java @@ -0,0 +1,74 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import org.cbioportal.model.ClinicalAttributeCount; +import org.cbioportal.service.ClinicalAttributeService; +import org.cbioportal.web.config.InternalApiTags; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.ClinicalAttributeCountFilter; +import org.cbioportal.web.parameter.SampleIdentifier; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = InternalApiTags.CLINICAL_ATTRIBUTES_COUNT, description = " ") +public class ClinicalAttributeCountController { + + @Autowired + private ClinicalAttributeService clinicalAttributeService; + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/clinical-attributes/counts/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get counts for clinical attributes according to their data availability for selected samples/patients") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalAttributeCount.class)))) + public ResponseEntity> getClinicalAttributeCounts( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedClinicalAttributeCountFilter") ClinicalAttributeCountFilter interceptedClinicalAttributeCountFilter, + @Parameter(required = true, description = "List of SampleIdentifiers or Sample List ID") + @Valid @RequestBody(required = false) ClinicalAttributeCountFilter clinicalAttributeCountFilter) { + + List clinicalAttributeCountList; + if (interceptedClinicalAttributeCountFilter.getSampleListId() != null) { + clinicalAttributeCountList = clinicalAttributeService.getClinicalAttributeCountsBySampleListId( + interceptedClinicalAttributeCountFilter.getSampleListId()); + } else { + List sampleIdentifiers = interceptedClinicalAttributeCountFilter.getSampleIdentifiers(); + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + for (SampleIdentifier sampleIdentifier : sampleIdentifiers) { + studyIds.add(sampleIdentifier.getStudyId()); + sampleIds.add(sampleIdentifier.getSampleId()); + } + clinicalAttributeCountList = clinicalAttributeService.getClinicalAttributeCountsBySampleIds(studyIds, sampleIds); + } + + return new ResponseEntity<>(clinicalAttributeCountList, HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/ClinicalDataController.java b/src/main/java/org/cbioportal/web/ClinicalDataController.java new file mode 100644 index 00000000000..1831c3b5689 --- /dev/null +++ b/src/main/java/org/cbioportal/web/ClinicalDataController.java @@ -0,0 +1,251 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.CancerStudy; +import org.cbioportal.model.ClinicalData; +import org.cbioportal.service.ClinicalDataService; +import org.cbioportal.service.exception.PatientNotFoundException; +import org.cbioportal.service.exception.SampleNotFoundException; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.ClinicalDataIdentifier; +import org.cbioportal.web.parameter.ClinicalDataMultiStudyFilter; +import org.cbioportal.web.parameter.ClinicalDataSingleStudyFilter; +import org.cbioportal.web.parameter.ClinicalDataType; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.ClinicalDataSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; + +@PublicApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.CLINICAL_DATA, description = " ") +public class ClinicalDataController { + + public static final int CLINICAL_DATA_MAX_PAGE_SIZE = 10000000; + private static final String CLINICAL_DATA_DEFAULT_PAGE_SIZE = "10000000"; + + @Autowired + private ClinicalDataService clinicalDataService; + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/samples/{sampleId}/clinical-data", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all clinical data of a sample in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalData.class)))) + public ResponseEntity> getAllClinicalDataOfSampleInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(required = true, description = "Sample ID e.g. TCGA-OR-A5J2-01") + @PathVariable String sampleId, + @Parameter(description = "Attribute ID e.g. CANCER_TYPE") + @RequestParam(required = false) String attributeId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(CLINICAL_DATA_MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = CLINICAL_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ClinicalDataSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws SampleNotFoundException, + StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalDataService.getMetaSampleClinicalData( + studyId, sampleId, attributeId).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + clinicalDataService.getAllClinicalDataOfSampleInStudy( + studyId, sampleId, attributeId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/patients/{patientId}/clinical-data", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all clinical data of a patient in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalData.class)))) + public ResponseEntity> getAllClinicalDataOfPatientInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(required = true, description = "Patient ID e.g. TCGA-OR-A5J2") + @PathVariable String patientId, + @Parameter(description = "Attribute ID e.g. AGE") + @RequestParam(required = false) String attributeId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(CLINICAL_DATA_MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = CLINICAL_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ClinicalDataSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws PatientNotFoundException, + StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalDataService.getMetaPatientClinicalData( + studyId, patientId, attributeId).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + clinicalDataService.getAllClinicalDataOfPatientInStudy( + studyId, patientId, attributeId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/clinical-data", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all clinical data in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalData.class)))) + public ResponseEntity> getAllClinicalDataInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Attribute ID e.g. CANCER_TYPE") + @RequestParam(required = false) String attributeId, + @Parameter(description = "Type of the clinical data") + @RequestParam(defaultValue = "SAMPLE") ClinicalDataType clinicalDataType, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(CLINICAL_DATA_MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = CLINICAL_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ClinicalDataSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalDataService.getMetaAllClinicalData(studyId, + attributeId, clinicalDataType.name()).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + clinicalDataService.getAllClinicalDataInStudy(studyId, attributeId, + clinicalDataType.name(), projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/clinical-data/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch clinical data by patient IDs or sample IDs (specific study)") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalData.class)))) + public ResponseEntity> fetchAllClinicalDataInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Type of the clinical data") + @RequestParam(defaultValue = "SAMPLE") ClinicalDataType clinicalDataType, + @Parameter(required = true, description = "List of patient or sample IDs and attribute IDs") + @Valid @RequestBody ClinicalDataSingleStudyFilter clinicalDataSingleStudyFilter, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) throws StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalDataService.fetchMetaClinicalDataInStudy( + studyId, clinicalDataSingleStudyFilter.getIds(), clinicalDataSingleStudyFilter.getAttributeIds(), + clinicalDataType.name()).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + clinicalDataService.fetchAllClinicalDataInStudy(studyId, clinicalDataSingleStudyFilter.getIds(), + clinicalDataSingleStudyFilter.getAttributeIds(), clinicalDataType.name(), projection.name()), + HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/clinical-data/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch clinical data by patient IDs or sample IDs (all studies)") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalData.class)))) + public ResponseEntity> fetchClinicalData( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedClinicalDataMultiStudyFilter") ClinicalDataMultiStudyFilter interceptedClinicalDataMultiStudyFilter, + @Parameter(description = "Type of the clinical data") + @RequestParam(defaultValue = "SAMPLE") ClinicalDataType clinicalDataType, + @Parameter(required = true, description = "List of patient or sample identifiers and attribute IDs") + @Valid @RequestBody(required = false) ClinicalDataMultiStudyFilter clinicalDataMultiStudyFilter, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) { + + List studyIds = new ArrayList<>(); + List ids = new ArrayList<>(); + + for (ClinicalDataIdentifier identifier : interceptedClinicalDataMultiStudyFilter.getIdentifiers()) { + studyIds.add(identifier.getStudyId()); + ids.add(identifier.getEntityId()); + } + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalDataService.fetchMetaClinicalData(studyIds, ids, + interceptedClinicalDataMultiStudyFilter.getAttributeIds(), clinicalDataType.name()).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + clinicalDataService.fetchClinicalData(studyIds, ids, interceptedClinicalDataMultiStudyFilter.getAttributeIds(), + clinicalDataType.name(), projection.name()), HttpStatus.OK); + } + } +} diff --git a/web/src/main/java/org/cbioportal/web/ClinicalDataEnrichmentController.java b/src/main/java/org/cbioportal/web/ClinicalDataEnrichmentController.java similarity index 82% rename from web/src/main/java/org/cbioportal/web/ClinicalDataEnrichmentController.java rename to src/main/java/org/cbioportal/web/ClinicalDataEnrichmentController.java index ffc5e754c82..7e880875916 100644 --- a/web/src/main/java/org/cbioportal/web/ClinicalDataEnrichmentController.java +++ b/src/main/java/org/cbioportal/web/ClinicalDataEnrichmentController.java @@ -1,14 +1,13 @@ package org.cbioportal.web; -import java.util.ArrayList; -import java.util.Collection; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.stream.Collectors; - -import javax.validation.Valid; - +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; import org.apache.commons.collections4.map.MultiKeyMap; import org.cbioportal.model.ClinicalAttribute; import org.cbioportal.model.ClinicalDataEnrichment; @@ -32,15 +31,18 @@ import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import springfox.documentation.annotations.ApiIgnore; +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.stream.Collectors; @InternalApi @RestController +@RequestMapping("/api") @Validated -@Api(tags = "Clinical Data Enrichments", description = " ") +@Tag(name = "Clinical Data Enrichments", description = " ") public class ClinicalDataEnrichmentController { @Autowired @@ -54,13 +56,15 @@ public class ClinicalDataEnrichmentController { @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/clinical-data-enrichments/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch clinical data enrichments for the sample groups") + @Operation(description = "Fetch clinical data enrichments for the sample groups") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalDataEnrichment.class)))) public ResponseEntity> fetchClinicalEnrichments( - @ApiParam(required = true, value = "List of altered and unaltered Sample/Patient IDs") + @Parameter(required = true, description = "List of altered and unaltered Sample/Patient IDs") @Valid @RequestBody(required = false) GroupFilter groupFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. @Valid @RequestAttribute(required = false, value = "interceptedGroupFilter") GroupFilter interceptedGroupFilter) { List studyIds = interceptedGroupFilter.getGroups().stream() diff --git a/src/main/java/org/cbioportal/web/ClinicalEventController.java b/src/main/java/org/cbioportal/web/ClinicalEventController.java new file mode 100644 index 00000000000..08ff9a60357 --- /dev/null +++ b/src/main/java/org/cbioportal/web/ClinicalEventController.java @@ -0,0 +1,123 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.ClinicalEvent; +import org.cbioportal.service.ClinicalEventService; +import org.cbioportal.service.exception.PatientNotFoundException; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.InternalApiTags; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.ClinicalEventSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = InternalApiTags.CLINICAL_EVENTS, description = " ") +public class ClinicalEventController { + + @Autowired + private ClinicalEventService clinicalEventService; + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/patients/{patientId}/clinical-events", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all clinical events of a patient in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalEvent.class)))) + public ResponseEntity> getAllClinicalEventsOfPatientInStudy( + @Parameter(required = true, description = "Study ID e.g. lgg_ucsf_2014") + @PathVariable String studyId, + @Parameter(required = true, description = "Patient ID e.g. P01") + @PathVariable String patientId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ClinicalEventSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws PatientNotFoundException, + StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalEventService.getMetaPatientClinicalEvents( + studyId, patientId).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + clinicalEventService.getAllClinicalEventsOfPatientInStudy( + studyId, patientId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/clinical-events", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all clinical events in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalEvent.class)))) + public ResponseEntity> getAllClinicalEventsInStudy( + @Parameter(required = true, description = "Study ID e.g. lgg_ucsf_2014") + @PathVariable String studyId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ClinicalEventSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws PatientNotFoundException, + StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalEventService.getMetaClinicalEvents( + studyId).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + clinicalEventService.getAllClinicalEventsInStudy( + studyId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } +} diff --git a/src/main/java/org/cbioportal/web/CoExpressionController.java b/src/main/java/org/cbioportal/web/CoExpressionController.java new file mode 100644 index 00000000000..fd71a7fabc7 --- /dev/null +++ b/src/main/java/org/cbioportal/web/CoExpressionController.java @@ -0,0 +1,82 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import org.cbioportal.model.CoExpression; +import org.cbioportal.model.EntityType; +import org.cbioportal.service.CoExpressionService; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.CoExpressionFilter; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Co-Expressions", description = " ") +public class CoExpressionController { + + @Autowired + private CoExpressionService coExpressionService; + + // requires permission to access both molecularProfileIdA and molecularProfileIdB because service layer does not enforce requirement that both profiles are in the same study + @PreAuthorize("hasPermission(#molecularProfileIdA, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ) and hasPermission(#molecularProfileIdB, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/molecular-profiles/co-expressions/fetch", + method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Calculates correlations between a genetic entity from a specific profile and another profile from the same study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CoExpression.class)))) + public ResponseEntity> fetchCoExpressions( + @Parameter(required = true, description = "Molecular Profile ID from the Genetic Entity referenced in the co-expression filter e.g. acc_tcga_rna_seq_v2_mrna") + @RequestParam String molecularProfileIdA, + @Parameter(required = true, description = "Molecular Profile ID (can be the same as molecularProfileIdA) e.g. acc_tcga_rna_seq_v2_mrna") + @RequestParam String molecularProfileIdB, + @Parameter(required = true, description = "List of Sample IDs/Sample List ID and Entrez Gene ID/Gene set ID") + @Valid @RequestBody CoExpressionFilter coExpressionFilter, + @Parameter(description = "Threshold") + @RequestParam(defaultValue = "0.3") Double threshold) throws Exception { + + List coExpressionList; + String geneticEntityId = null; + EntityType geneticEntityType = null; + + if (coExpressionFilter.getEntrezGeneId() != null) { + geneticEntityId = coExpressionFilter.getEntrezGeneId().toString(); + geneticEntityType = EntityType.GENE; + } else { + geneticEntityId = coExpressionFilter.getGenesetId(); + geneticEntityType = EntityType.GENESET; + } + + if (coExpressionFilter.getSampleListId() != null) { + coExpressionList = coExpressionService.getCoExpressions(geneticEntityId, + geneticEntityType, coExpressionFilter.getSampleListId(), molecularProfileIdA, molecularProfileIdB, + threshold); + } else { + coExpressionList = coExpressionService.fetchCoExpressions(geneticEntityId, + geneticEntityType, coExpressionFilter.getSampleIds(), molecularProfileIdA, molecularProfileIdB, + threshold); + } + + return new ResponseEntity<>(coExpressionList, HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/CopyNumberSegmentController.java b/src/main/java/org/cbioportal/web/CopyNumberSegmentController.java new file mode 100644 index 00000000000..c16406066f1 --- /dev/null +++ b/src/main/java/org/cbioportal/web/CopyNumberSegmentController.java @@ -0,0 +1,136 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.CopyNumberSeg; +import org.cbioportal.service.CopyNumberSegmentService; +import org.cbioportal.service.exception.SampleNotFoundException; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.SampleIdentifier; +import org.cbioportal.web.parameter.sort.CopyNumberSegmentSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; + +@PublicApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.COPY_NUMBER_SEGMENTS, description = " ") +public class CopyNumberSegmentController { + + private static final int COPY_NUMBER_SEGMENT_MAX_PAGE_SIZE = 20000; + private static final String COPY_NUMBER_SEGMENT_DEFAULT_PAGE_SIZE = "20000"; + + @Autowired + private CopyNumberSegmentService copyNumberSegmentService; + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/samples/{sampleId}/copy-number-segments", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get copy number segments in a sample in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CopyNumberSeg.class)))) + public ResponseEntity> getCopyNumberSegmentsInSampleInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(required = true, description = "Sample ID e.g. TCGA-OR-A5J2-01") + @PathVariable String sampleId, + @Parameter(description = "Chromosome") + @RequestParam(required = false) String chromosome, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(COPY_NUMBER_SEGMENT_MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = COPY_NUMBER_SEGMENT_DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) CopyNumberSegmentSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws SampleNotFoundException, + StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, copyNumberSegmentService + .getMetaCopyNumberSegmentsInSampleInStudy(studyId, sampleId, chromosome).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + copyNumberSegmentService.getCopyNumberSegmentsInSampleInStudy(studyId, sampleId, chromosome, + projection.name(), pageSize, pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), + direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/copy-number-segments/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch copy number segments by sample ID") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CopyNumberSeg.class)))) + public ResponseEntity> fetchCopyNumberSegments( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @RequestAttribute(required = false, value = "interceptedSampleIdentifiers") List interceptedSampleIdentifiers, + @Parameter(required = true, description = "List of sample identifiers") + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + @RequestBody(required = false) List sampleIdentifiers, + @Parameter(description = "Chromosome") + @RequestParam(required = false) String chromosome, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) { + + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + + for (SampleIdentifier sampleIdentifier : interceptedSampleIdentifiers) { + studyIds.add(sampleIdentifier.getStudyId()); + sampleIds.add(sampleIdentifier.getSampleId()); + } + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, copyNumberSegmentService + .fetchMetaCopyNumberSegments(studyIds, sampleIds, chromosome).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + copyNumberSegmentService.fetchCopyNumberSegments(studyIds, sampleIds, chromosome, projection.name()), + HttpStatus.OK); + } + } +} diff --git a/src/main/java/org/cbioportal/web/CosmicCountController.java b/src/main/java/org/cbioportal/web/CosmicCountController.java new file mode 100644 index 00000000000..b696179554a --- /dev/null +++ b/src/main/java/org/cbioportal/web/CosmicCountController.java @@ -0,0 +1,49 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.CosmicMutation; +import org.cbioportal.service.CosmicCountService; +import org.cbioportal.web.config.annotation.InternalApi; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController +@Validated +@Tag(name = "Cosmic Counts", description = " ") +public class CosmicCountController { + + private static final int COSMIC_COUNT_MAX_PAGE_SIZE = 50000; + + @Autowired + private CosmicCountService cosmicCountService; + + @RequestMapping(value = "/api/cosmic-counts/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get counts within the COSMIC database by keywords") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CosmicMutation.class)))) + public ResponseEntity> fetchCosmicCounts( + @Parameter(required = true, description = "List of keywords") + @Size(min = 1, max = COSMIC_COUNT_MAX_PAGE_SIZE) + @RequestBody List keywords) { + + return new ResponseEntity<>(cosmicCountService.fetchCosmicCountsByKeywords(keywords), HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/DataAccessTokenController.java b/src/main/java/org/cbioportal/web/DataAccessTokenController.java new file mode 100644 index 00000000000..fb39a98b326 --- /dev/null +++ b/src/main/java/org/cbioportal/web/DataAccessTokenController.java @@ -0,0 +1,121 @@ +/* +* This file is part of cBioPortal. +* +* cBioPortal is free software: you can redistribute it and/or modify +* it under the terms of the GNU Affero General Public License as +* published by the Free Software Foundation, either version 3 of the +* License. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU Affero General Public License for more details. +* +* You should have received a copy of the GNU Affero General Public License +* along with this program. If not, see . +*/ + +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import org.apache.commons.lang3.StringUtils; +import org.cbioportal.model.DataAccessToken; +import org.cbioportal.service.DataAccessTokenService; +import org.cbioportal.service.exception.DataAccessTokenNoUserIdentityException; +import org.cbioportal.service.exception.DataAccessTokenProhibitedUserException; +import org.cbioportal.utils.config.annotation.ConditionalOnProperty; +import org.cbioportal.web.config.annotation.InternalApi; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.core.Authentication; +import org.springframework.security.core.authority.SimpleGrantedAuthority; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.client.HttpClientErrorException; + +import java.io.IOException; +import java.util.Arrays; +import java.util.HashSet; +import java.util.List; +import java.util.Set; + +@InternalApi +@Validated +@RestController +@ConditionalOnProperty(name = "dat.method", havingValue = "oauth2", isNot = true, matchIfMissing = true) +@Tag(name = "Data Access Tokens", description = " ") +public class DataAccessTokenController { + + @RequestMapping(method = RequestMethod.GET, value = "/api/data-access-token") + @Operation(description = "Create a new data access token") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = String.class))) + public ResponseEntity downloadDataAccessToken(Authentication authentication, + HttpServletRequest request, HttpServletResponse response) throws IOException { + throw new UnsupportedOperationException("this endpoint is only enabled when dat is set to oauth2."); + } + + // retrieve and trigger download OAuth2 offline token + @RequestMapping(method = RequestMethod.GET, value = "/api/data-access-token/oauth2") + @Parameter(hidden = true) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = String.class))) + public ResponseEntity downloadOAuth2DataAccessToken(HttpServletRequest request, HttpServletResponse response) throws IOException { + throw new UnsupportedOperationException("this endpoint is only enabled when dat is set to oauth2."); + } + + @RequestMapping(method = RequestMethod.POST, value = "/api/data-access-tokens", produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all data access tokens") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = DataAccessToken.class))) + public ResponseEntity createDataAccessToken(Authentication authentication) throws HttpClientErrorException { + throw new UnsupportedOperationException("this endpoint is only enabled when dat is set to oauth2."); + } + + @RequestMapping(method = RequestMethod.GET, value = "/api/data-access-tokens") + @Operation(description = "Retrieve all data access tokens") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = DataAccessToken.class)))) + public ResponseEntity> getAllDataAccessTokens(HttpServletRequest request, + Authentication authentication) { + throw new UnsupportedOperationException("this endpoint is only enabled when dat is set to oauth2."); + } + + @RequestMapping(method = RequestMethod.GET, value = "/api/data-access-tokens/{token}") + @Operation(description = "Retrieve an existing data access token") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = DataAccessToken.class))) + public ResponseEntity getDataAccessToken( + @Parameter(required = true, description = "token") @PathVariable String token) { + throw new UnsupportedOperationException("this endpoint is only enabled when dat is set to oauth2."); + + } + + @RequestMapping(method = RequestMethod.DELETE, value = "/api/data-access-tokens") + @Operation(description = "Delete all data access tokens") + public void revokeAllDataAccessTokens(Authentication authentication) { + throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); + } + + @RequestMapping(method = RequestMethod.DELETE, value = "/api/data-access-tokens/{token}") + @Operation(description = "Delete a data access token") + public void revokeDataAccessToken(@Parameter(required = true, description = "token") @PathVariable String token) { + throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); + } +} diff --git a/web/src/main/java/org/cbioportal/web/DiscreteCopyNumberController.java b/src/main/java/org/cbioportal/web/DiscreteCopyNumberController.java similarity index 77% rename from web/src/main/java/org/cbioportal/web/DiscreteCopyNumberController.java rename to src/main/java/org/cbioportal/web/DiscreteCopyNumberController.java index 83d842ed9cd..5a865c054a0 100644 --- a/web/src/main/java/org/cbioportal/web/DiscreteCopyNumberController.java +++ b/src/main/java/org/cbioportal/web/DiscreteCopyNumberController.java @@ -1,16 +1,19 @@ package org.cbioportal.web; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.CopyNumberCount; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; import org.cbioportal.model.DiscreteCopyNumberData; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.DiscreteCopyNumberService; import org.cbioportal.service.exception.MolecularProfileNotFoundException; import org.cbioportal.web.config.PublicApiTags; import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.CopyNumberCountIdentifier; import org.cbioportal.web.parameter.DiscreteCopyNumberEventType; import org.cbioportal.web.parameter.DiscreteCopyNumberFilter; import org.cbioportal.web.parameter.HeaderKeyConstants; @@ -20,6 +23,7 @@ import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; @@ -27,17 +31,14 @@ import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; -import javax.validation.Valid; -import javax.validation.constraints.Size; -import java.util.ArrayList; import java.util.List; @PublicApi -@RestController +@RestController() +@RequestMapping("/api") @Validated -@Api(tags = PublicApiTags.DISCRETE_COPY_NUMBER_ALTERATIONS, description = " ") +@Tag(name = PublicApiTags.DISCRETE_COPY_NUMBER_ALTERATIONS, description = " ") public class DiscreteCopyNumberController { @Autowired @@ -46,15 +47,17 @@ public class DiscreteCopyNumberController { @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/discrete-copy-number", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get discrete copy number alterations in a molecular profile") + @Operation(description = "Get discrete copy number alterations in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = DiscreteCopyNumberData.class)))) public ResponseEntity> getDiscreteCopyNumbersInMolecularProfile( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_gistic") + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_gistic") @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "Sample List ID e.g. acc_tcga_all") + @Parameter(required = true, description = "Sample List ID e.g. acc_tcga_all") @RequestParam String sampleListId, - @ApiParam("Type of the copy number event") + @Parameter(description = "Type of the copy number event") @RequestParam(defaultValue = "HOMDEL_AND_AMP") DiscreteCopyNumberEventType discreteCopyNumberEventType, - @ApiParam("Level of detail of the response") + @Parameter(description = "Level of detail of the response") @RequestParam(defaultValue = "SUMMARY") Projection projection) throws MolecularProfileNotFoundException { if (projection == Projection.META) { @@ -75,15 +78,17 @@ public ResponseEntity> getDiscreteCopyNumbersInMole @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/discrete-copy-number/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch discrete copy number alterations in a molecular profile by sample ID") + @Operation(description = "Fetch discrete copy number alterations in a molecular profile by sample ID") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = DiscreteCopyNumberData.class)))) public ResponseEntity> fetchDiscreteCopyNumbersInMolecularProfile( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_gistic") + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_gistic") @PathVariable String molecularProfileId, - @ApiParam("Type of the copy number event") + @Parameter(description = "Type of the copy number event") @RequestParam(defaultValue = "HOMDEL_AND_AMP") DiscreteCopyNumberEventType discreteCopyNumberEventType, - @ApiParam(required = true, value = "List of Sample IDs/Sample List ID and Entrez Gene IDs") + @Parameter(required = true, description = "List of Sample IDs/Sample List ID and Entrez Gene IDs") @Valid @RequestBody DiscreteCopyNumberFilter discreteCopyNumberFilter, - @ApiParam("Level of detail of the response") + @Parameter(description = "Level of detail of the response") @RequestParam(defaultValue = "SUMMARY") Projection projection) throws MolecularProfileNotFoundException { diff --git a/src/main/java/org/cbioportal/web/DiscreteCopyNumberCountController.java b/src/main/java/org/cbioportal/web/DiscreteCopyNumberCountController.java new file mode 100644 index 00000000000..da8952d57ee --- /dev/null +++ b/src/main/java/org/cbioportal/web/DiscreteCopyNumberCountController.java @@ -0,0 +1,71 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.CopyNumberCount; +import org.cbioportal.service.DiscreteCopyNumberService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.web.config.InternalApiTags; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.CopyNumberCountIdentifier; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = InternalApiTags.DISCRETE_COPY_NUMBER_ALTERATION_COUNTS, description = " ") +public class DiscreteCopyNumberCountController { + + private static final int COPY_NUMBER_COUNT_MAX_PAGE_SIZE = 50000; + + @Autowired + private DiscreteCopyNumberService discreteCopyNumberService; + + @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/discrete-copy-number-counts/fetch", + method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get counts of specific genes and alterations within a CNA molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CopyNumberCount.class)))) + public ResponseEntity> fetchCopyNumberCounts( + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_gistic") + @PathVariable String molecularProfileId, + @Parameter(required = true, description = "List of copy number count identifiers") + @Size(min = 1, max = COPY_NUMBER_COUNT_MAX_PAGE_SIZE) + @RequestBody List copyNumberCountIdentifiers) + throws MolecularProfileNotFoundException { + + List entrezGeneIds = new ArrayList<>(); + List alterations = new ArrayList<>(); + + for (CopyNumberCountIdentifier copyNumberCountIdentifier : copyNumberCountIdentifiers) { + + entrezGeneIds.add(copyNumberCountIdentifier.getEntrezGeneId()); + alterations.add(copyNumberCountIdentifier.getAlteration()); + } + + return new ResponseEntity<>(discreteCopyNumberService.fetchCopyNumberCounts(molecularProfileId, entrezGeneIds, + alterations), HttpStatus.OK); + } +} diff --git a/web/src/main/java/org/cbioportal/web/DocRedirectController.java b/src/main/java/org/cbioportal/web/DocRedirectController.java similarity index 94% rename from web/src/main/java/org/cbioportal/web/DocRedirectController.java rename to src/main/java/org/cbioportal/web/DocRedirectController.java index d99c780a540a..e04443556f0 100644 --- a/web/src/main/java/org/cbioportal/web/DocRedirectController.java +++ b/src/main/java/org/cbioportal/web/DocRedirectController.java @@ -1,12 +1,11 @@ package org.cbioportal.web; -import org.springframework.stereotype.Controller; +import jakarta.servlet.http.HttpServletRequest; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.servlet.mvc.support.RedirectAttributes; import org.springframework.web.servlet.view.RedirectView; -import javax.servlet.http.HttpServletRequest; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -15,7 +14,7 @@ * This redirect puts the api-doc json in the specified path so that the swagger UI works * and the frontend can pull the json. */ -@Controller +//@Controller public class DocRedirectController { @GetMapping("/api-docs") public RedirectView docRedirect( diff --git a/src/main/java/org/cbioportal/web/ExpressionEnrichmentController.java b/src/main/java/org/cbioportal/web/ExpressionEnrichmentController.java new file mode 100644 index 00000000000..a32ffd37a1d --- /dev/null +++ b/src/main/java/org/cbioportal/web/ExpressionEnrichmentController.java @@ -0,0 +1,120 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import org.cbioportal.model.EnrichmentType; +import org.cbioportal.model.ExpressionEnrichment; +import org.cbioportal.model.GenericAssayEnrichment; +import org.cbioportal.model.GenomicEnrichment; +import org.cbioportal.model.MolecularProfileCaseIdentifier; +import org.cbioportal.service.ExpressionEnrichmentService; +import org.cbioportal.service.exception.GenericAssayNotFoundException; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.MolecularProfileCasesGroupFilter; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.Collection; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.stream.Collectors; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Enrichments", description = " ") +public class ExpressionEnrichmentController { + @Autowired + private ExpressionEnrichmentService expressionEnrichmentService; + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/expression-enrichments/fetch", + method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch genomic enrichments in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenomicEnrichment.class)))) + public ResponseEntity> fetchGenomicEnrichments( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(description = "Type of the enrichment e.g. SAMPLE or PATIENT") + @RequestParam(defaultValue = "SAMPLE") EnrichmentType enrichmentType, + @Parameter(required = true, description = "List of groups containing sample and molecular profile identifiers") + @Valid @RequestBody(required = false) List groups, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedMolecularProfileCasesGroupFilters") List interceptedMolecularProfileCasesGroupFilters) throws MolecularProfileNotFoundException { + + return new ResponseEntity<>( + fetchExpressionEnrichments(enrichmentType, interceptedMolecularProfileCasesGroupFilters, false), + HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/generic-assay-enrichments/fetch", + method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch generic assay enrichments in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayEnrichment.class)))) + public ResponseEntity> fetchGenericAssayEnrichments( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(description = "Type of the enrichment e.g. SAMPLE or PATIENT") + @RequestParam(defaultValue = "SAMPLE") EnrichmentType enrichmentType, + @Parameter(required = true, description = "List of groups containing sample and molecular profile identifiers") + @Valid @RequestBody(required = false) List groups, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedMolecularProfileCasesGroupFilters") List interceptedMolecularProfileCasesGroupFilters) + throws MolecularProfileNotFoundException, UnsupportedOperationException, GenericAssayNotFoundException { + + return new ResponseEntity<>( + fetchExpressionEnrichments(enrichmentType, interceptedMolecularProfileCasesGroupFilters, true), + HttpStatus.OK); + } + + private List fetchExpressionEnrichments(EnrichmentType enrichmentType, + List interceptedMolecularProfileCasesGroupFilters, + Boolean isRequestForGenericAssayEnrichments) throws MolecularProfileNotFoundException { + + Map> groupCaseIdentifierSet = interceptedMolecularProfileCasesGroupFilters + .stream().collect(Collectors.toMap(MolecularProfileCasesGroupFilter::getName, + MolecularProfileCasesGroupFilter::getMolecularProfileCaseIdentifiers)); + + Set molecularProfileIds = groupCaseIdentifierSet.values().stream() + .flatMap(molecularProfileCaseSet -> molecularProfileCaseSet.stream() + .map(MolecularProfileCaseIdentifier::getMolecularProfileId)) + .collect(Collectors.toSet()); + + if (molecularProfileIds.size() > 1) { + throw new UnsupportedOperationException("Multi-study expression enrichments is not yet implemented"); + } + + if (isRequestForGenericAssayEnrichments) { + return (List) expressionEnrichmentService.getGenericAssayNumericalEnrichments( + molecularProfileIds.iterator().next(), groupCaseIdentifierSet, enrichmentType); + } + + return (List) expressionEnrichmentService.getGenomicEnrichments(molecularProfileIds.iterator().next(), + groupCaseIdentifierSet, enrichmentType); + + } +} diff --git a/src/main/java/org/cbioportal/web/GeneController.java b/src/main/java/org/cbioportal/web/GeneController.java new file mode 100644 index 00000000000..51774d20bfa --- /dev/null +++ b/src/main/java/org/cbioportal/web/GeneController.java @@ -0,0 +1,130 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.Gene; +import org.cbioportal.service.GeneService; +import org.cbioportal.service.exception.GeneNotFoundException; +import org.cbioportal.service.exception.GeneWithMultipleEntrezIdsException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.GeneIdType; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.GeneSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@PublicApi +@RestController +@Validated +@Tag(name = PublicApiTags.GENES, description = " ") +public class GeneController { + + @Autowired + private GeneService geneService; + + @RequestMapping(value = "/api/genes", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all genes") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Gene.class)))) + public ResponseEntity> getAllGenes( + @Parameter(description = "Search keyword that applies to hugo gene symbol of the genes") + @RequestParam(required = false) String keyword, + @Parameter(description = "Alias of the gene") + @RequestParam(required = false) String alias, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) GeneSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, geneService.getMetaGenes(keyword, alias).getTotalCount() + .toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + geneService.getAllGenes(keyword, alias, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @RequestMapping(value = "/api/genes/{geneId}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get a gene") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Gene.class))) + public ResponseEntity getGene( + @Parameter(required = true, description = "Entrez Gene ID or Hugo Gene Symbol e.g. 1 or A1BG") + @PathVariable String geneId) throws GeneNotFoundException, GeneWithMultipleEntrezIdsException { + + return new ResponseEntity<>(geneService.getGene(geneId), HttpStatus.OK); + } + + @RequestMapping(value = "/api/genes/{geneId}/aliases", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get aliases of a gene") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = String.class)))) + public ResponseEntity> getAliasesOfGene( + @Parameter(required = true, description = "Entrez Gene ID or Hugo Gene Symbol e.g. 1 or A1BG") + @PathVariable String geneId) throws GeneNotFoundException, GeneWithMultipleEntrezIdsException { + + return new ResponseEntity<>(geneService.getAliasesOfGene(geneId), HttpStatus.OK); + } + + @RequestMapping(value = "/api/genes/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch genes by ID") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Gene.class)))) + public ResponseEntity> fetchGenes( + @RequestParam(defaultValue = "ENTREZ_GENE_ID") GeneIdType geneIdType, + @Parameter(required = true, description = "List of Gene IDs") + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + @RequestBody List geneIds, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, geneService.fetchMetaGenes(geneIds, geneIdType.name()) + .getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>(geneService.fetchGenes(geneIds, geneIdType.name(), projection.name()), + HttpStatus.OK); + } + } +} diff --git a/src/main/java/org/cbioportal/web/GenePanelController.java b/src/main/java/org/cbioportal/web/GenePanelController.java new file mode 100644 index 00000000000..9bd73ff27bd --- /dev/null +++ b/src/main/java/org/cbioportal/web/GenePanelController.java @@ -0,0 +1,127 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Hidden; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.extensions.Extension; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.ExampleObject; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.GenePanel; +import org.cbioportal.service.GenePanelService; +import org.cbioportal.service.exception.GenePanelNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.GenePanelSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@PublicApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.GENE_PANELS, description = " ") +public class GenePanelController { + + @Autowired + private GenePanelService genePanelService; + + @Hidden + @RequestMapping(value = "/gene-panels/", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + public ResponseEntity> getAllGenePanels_trailing( + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @RequestParam(required = false) GenePanelSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) { + return getAllGenePanels(projection, pageSize, pageNumber, sortBy, direction); + } + + @RequestMapping(value = "/gene-panels", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all gene panels") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenePanel.class)))) + public ResponseEntity> getAllGenePanels( + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) GenePanelSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, genePanelService.getMetaGenePanels() + .getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + genePanelService.getAllGenePanels(projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @RequestMapping(value = "/gene-panels/{genePanelId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get gene panel") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = GenePanel.class))) + public ResponseEntity getGenePanel( + @Parameter(required = true, description = "Gene Panel ID e.g. NSCLC_UNITO_2016_PANEL") + @PathVariable String genePanelId) throws GenePanelNotFoundException { + + return new ResponseEntity<>(genePanelService.getGenePanel(genePanelId), HttpStatus.OK); + } + + @RequestMapping(value = "/gene-panels/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get gene panel") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenePanel.class)))) + public ResponseEntity> fetchGenePanels( + @Parameter(required = true, description = "List of Gene Panel IDs") + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + @RequestBody List genePanelIds, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) { + + return new ResponseEntity<>(genePanelService.fetchGenePanels(genePanelIds, projection.name()), HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/GenePanelDataController.java b/src/main/java/org/cbioportal/web/GenePanelDataController.java new file mode 100644 index 00000000000..6864a6c5db3 --- /dev/null +++ b/src/main/java/org/cbioportal/web/GenePanelDataController.java @@ -0,0 +1,105 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import org.cbioportal.model.GenePanelData; +import org.cbioportal.model.MolecularProfileCaseIdentifier; +import org.cbioportal.service.GenePanelService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.GenePanelDataFilter; +import org.cbioportal.web.parameter.GenePanelDataMultipleStudyFilter; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.util.CollectionUtils; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.Collection; +import java.util.HashSet; +import java.util.List; +import java.util.stream.Collectors; + +@PublicApi +@RestController +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.GENE_PANEL_DATA, description = " ") +public class GenePanelDataController { + + @Autowired + private GenePanelService genePanelService; + + @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/gene-panel-data/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get gene panel data") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenePanelData.class)))) + public ResponseEntity> getGenePanelData( + @Parameter(required = true, description = "Molecular Profile ID e.g. nsclc_unito_2016_mutations") + @PathVariable String molecularProfileId, + @Parameter(required = true, description = "List of Sample IDs/Sample List ID and Entrez Gene IDs") + @Valid @RequestBody GenePanelDataFilter genePanelDataFilter) throws MolecularProfileNotFoundException { + + List genePanelDataList; + if (genePanelDataFilter.getSampleListId() != null) { + genePanelDataList = genePanelService.getGenePanelData(molecularProfileId, + genePanelDataFilter.getSampleListId()); + } else { + genePanelDataList = genePanelService.fetchGenePanelData(molecularProfileId, + genePanelDataFilter.getSampleIds()); + } + + return new ResponseEntity<>(genePanelDataList, HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/gene-panel-data/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch gene panel data") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenePanelData.class)))) + public ResponseEntity> fetchGenePanelDataInMultipleMolecularProfiles( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedGenePanelDataMultipleStudyFilter") GenePanelDataMultipleStudyFilter interceptedGenePanelDataMultipleStudyFilter, + @Parameter(required = true, description = "Gene panel data filter object") + @RequestBody(required = false) GenePanelDataMultipleStudyFilter genePanelDataMultipleStudyFilter) { + + List genePanelDataList; + if(CollectionUtils.isEmpty(interceptedGenePanelDataMultipleStudyFilter.getMolecularProfileIds())) { + List molecularProfileSampleIdentifiers = interceptedGenePanelDataMultipleStudyFilter.getSampleMolecularIdentifiers() + .stream() + .map(sampleMolecularIdentifier -> { + MolecularProfileCaseIdentifier profileCaseIdentifier = new MolecularProfileCaseIdentifier(); + profileCaseIdentifier.setMolecularProfileId(sampleMolecularIdentifier.getMolecularProfileId()); + profileCaseIdentifier.setCaseId(sampleMolecularIdentifier.getSampleId()); + return profileCaseIdentifier; + }) + .collect(Collectors.toList()); + + genePanelDataList = genePanelService.fetchGenePanelDataInMultipleMolecularProfiles(molecularProfileSampleIdentifiers); + } else { + genePanelDataList = genePanelService.fetchGenePanelDataByMolecularProfileIds(new HashSet<>(interceptedGenePanelDataMultipleStudyFilter.getMolecularProfileIds())); + } + + return new ResponseEntity<>(genePanelDataList, HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/GenericAssayController.java b/src/main/java/org/cbioportal/web/GenericAssayController.java new file mode 100644 index 00000000000..ae10b64c88b --- /dev/null +++ b/src/main/java/org/cbioportal/web/GenericAssayController.java @@ -0,0 +1,101 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import org.cbioportal.model.meta.GenericAssayMeta; +import org.cbioportal.service.GenericAssayService; +import org.cbioportal.service.exception.GenericAssayNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.GenericAssayMetaFilter; +import org.cbioportal.web.parameter.Projection; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.Arrays; +import java.util.List; + +@PublicApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.GENERIC_ASSAYS, description = " ") +public class GenericAssayController { + + @Autowired + private GenericAssayService genericAssayService; + + // PreAuthorize is removed for performance reason + @RequestMapping(value = "/generic_assay_meta/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch meta data for generic-assay by ID") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayMeta.class)))) + public ResponseEntity> fetchGenericAssayMeta( + @Parameter(required = true, description = "List of Molecular Profile ID or List of Stable ID") + @Valid @RequestBody GenericAssayMetaFilter genericAssayMetaFilter, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) throws GenericAssayNotFoundException { + List result; + + if (genericAssayMetaFilter.getGenericAssayStableIds() == null) { + result = genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(null, genericAssayMetaFilter.getMolecularProfileIds(), projection.name()); + } else if (genericAssayMetaFilter.getMolecularProfileIds() == null) { + result = genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(genericAssayMetaFilter.getGenericAssayStableIds(), null, projection.name()); + } else { + result = genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(genericAssayMetaFilter.getGenericAssayStableIds(), genericAssayMetaFilter.getMolecularProfileIds(), projection.name()); + } + return new ResponseEntity<>(result, HttpStatus.OK); + } + + // PreAuthorize is removed for performance reason + @RequestMapping(value = "/generic-assay-meta/{molecularProfileId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch meta data for generic-assay by ID") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayMeta.class)))) + public ResponseEntity> getGenericAssayMeta( + @Parameter(required = true, description = "Molecular Profile ID") + @PathVariable String molecularProfileId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) throws GenericAssayNotFoundException { + List result; + + result = genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(null, Arrays.asList(molecularProfileId), projection.name()); + + return new ResponseEntity<>(result, HttpStatus.OK); + } + + @RequestMapping(value = "/generic-assay-meta/generic-assay/{genericAssayStableId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch meta data for generic-assay by ID") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayMeta.class)))) + public ResponseEntity> getGenericAssayMeta_ga( + @Parameter(required = false, description = "Generic Assay stable ID") + @PathVariable String genericAssayStableId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) throws GenericAssayNotFoundException { + List result; + result = genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(Arrays.asList(genericAssayStableId), null, projection.name()); + + return new ResponseEntity<>(result, HttpStatus.OK); + } + + +} diff --git a/src/main/java/org/cbioportal/web/GenericAssayDataController.java b/src/main/java/org/cbioportal/web/GenericAssayDataController.java new file mode 100644 index 00000000000..8cfc55bdb7a --- /dev/null +++ b/src/main/java/org/cbioportal/web/GenericAssayDataController.java @@ -0,0 +1,165 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import org.apache.commons.lang3.StringUtils; +import org.cbioportal.model.GenericAssayData; +import org.cbioportal.service.GenericAssayService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.GenericAssayDataMultipleStudyFilter; +import org.cbioportal.web.parameter.GenericAssayFilter; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.SampleMolecularIdentifier; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; +import java.util.stream.Collectors; + +@PublicApi +@RestController +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.GENERIC_ASSAY_DATA, description = " ") +public class GenericAssayDataController { + + @Autowired + private GenericAssayService genericAssayService; + + @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/generic-assay-data/{molecularProfileId}/generic-assay/{genericAssayStableId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get generic_assay_data in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayData.class)))) + public ResponseEntity> getGenericAssayDataInMolecularProfile( + @Parameter(required = true, description = "Molecular Profile ID") + @PathVariable String molecularProfileId, + @Parameter(required = true, description = "Generic Assay stable ID") + @PathVariable String genericAssayStableId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) throws MolecularProfileNotFoundException { + + List result; + result = filterEmptyGenericAssayData(genericAssayService.fetchGenericAssayData(molecularProfileId, + null, Arrays.asList(genericAssayStableId) , projection.name())); + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, String.valueOf(result.size())); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>(result, HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/generic_assay_data/{molecularProfileId}/fetch", + method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "fetch generic_assay_data in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayData.class)))) + public ResponseEntity> fetchGenericAssayDataInMolecularProfile( + @Parameter(required = true, description = "Molecular Profile ID") + @PathVariable String molecularProfileId, + @Parameter(required = true, description = "List of Sample IDs/Sample List ID and Generic Assay IDs") + @Valid @RequestBody GenericAssayFilter genericAssayDataFilter, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) throws MolecularProfileNotFoundException { + + List result; + if (genericAssayDataFilter.getSampleListId() != null) { + result = filterEmptyGenericAssayData(genericAssayService.getGenericAssayData(molecularProfileId, + genericAssayDataFilter.getSampleListId(), genericAssayDataFilter.getGenericAssayStableIds(), projection.name())); + } else { + result = filterEmptyGenericAssayData(genericAssayService.fetchGenericAssayData(molecularProfileId, + genericAssayDataFilter.getSampleIds(), genericAssayDataFilter.getGenericAssayStableIds(), projection.name())); + } + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, String.valueOf(result.size())); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>(result, HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/generic_assay_data/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch generic_assay_data") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayData.class)))) + public ResponseEntity> fetchGenericAssayDataInMultipleMolecularProfiles( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @RequestAttribute(required = false, value = "interceptedGenericAssayDataMultipleStudyFilter") GenericAssayDataMultipleStudyFilter interceptedGenericAssayDataMultipleStudyFilter, + @Parameter(required = true, description = "List of Molecular Profile ID and Sample ID pairs or List of Molecular" + + "Profile IDs and Generic Assay IDs") + @Valid @RequestBody(required = false) GenericAssayDataMultipleStudyFilter genericAssayDataMultipleStudyFilter, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) throws MolecularProfileNotFoundException { + + List result; + if (interceptedGenericAssayDataMultipleStudyFilter.getMolecularProfileIds() != null) { + result = filterEmptyGenericAssayData(genericAssayService.fetchGenericAssayData( + interceptedGenericAssayDataMultipleStudyFilter.getMolecularProfileIds(), null, + interceptedGenericAssayDataMultipleStudyFilter.getGenericAssayStableIds(), projection.name())); + } else { + + List molecularProfileIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + extractMolecularProfileAndSampleIds(interceptedGenericAssayDataMultipleStudyFilter, molecularProfileIds, sampleIds); + result = filterEmptyGenericAssayData(genericAssayService.fetchGenericAssayData(molecularProfileIds, + sampleIds, interceptedGenericAssayDataMultipleStudyFilter.getGenericAssayStableIds(), projection.name())); + } + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, String.valueOf(result.size())); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>(result, HttpStatus.OK); + } + } + + private void extractMolecularProfileAndSampleIds(GenericAssayDataMultipleStudyFilter molecularDataMultipleStudyFilter, List molecularProfileIds, List sampleIds) { + for (SampleMolecularIdentifier sampleMolecularIdentifier : molecularDataMultipleStudyFilter.getSampleMolecularIdentifiers()) { + molecularProfileIds.add(sampleMolecularIdentifier.getMolecularProfileId()); + sampleIds.add(sampleMolecularIdentifier.getSampleId()); + } + } + + private List filterEmptyGenericAssayData(List genericAssayDataList) { + return genericAssayDataList.stream() + .filter(g -> StringUtils.isNotEmpty(g.getValue()) && !g.getValue().equals("NA")) + .collect(Collectors.toList()); + } +} diff --git a/web/src/main/java/org/cbioportal/web/GenericAssayEnrichmentController.java b/src/main/java/org/cbioportal/web/GenericAssayEnrichmentController.java similarity index 77% rename from web/src/main/java/org/cbioportal/web/GenericAssayEnrichmentController.java rename to src/main/java/org/cbioportal/web/GenericAssayEnrichmentController.java index 294c580582e..8959681e09b 100644 --- a/web/src/main/java/org/cbioportal/web/GenericAssayEnrichmentController.java +++ b/src/main/java/org/cbioportal/web/GenericAssayEnrichmentController.java @@ -1,8 +1,13 @@ package org.cbioportal.web; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; import org.cbioportal.model.EnrichmentType; import org.cbioportal.model.GenericAssayBinaryEnrichment; import org.cbioportal.model.GenericAssayCategoricalEnrichment; @@ -17,15 +22,13 @@ import org.springframework.http.ResponseEntity; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.RequestAttribute; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RequestAttribute; -import springfox.documentation.annotations.ApiIgnore; +import org.springframework.web.bind.annotation.RestController; -import javax.validation.Valid; import java.util.Collection; import java.util.List; import java.util.Map; @@ -35,24 +38,26 @@ @InternalApi @RestController @Validated -@Api(tags = "Generic Assay Enrichment Data", description = " ") +@Tag(name = "Generic Assay Enrichment Data", description = " ") public class GenericAssayEnrichmentController { @Autowired private ExpressionEnrichmentService expressionEnrichmentService; @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/generic-assay-categorical-enrichments/fetch", + @RequestMapping(value = "/api/generic-assay-categorical-enrichments/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch generic assay categorical data enrichments in a molecular profile") + @Operation(description = "Fetch generic assay categorical data enrichments in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayCategoricalEnrichment.class)))) public ResponseEntity> fetchGenericAssayCategoricalDataEnrichmentInMultipleMolecularProfiles( - @ApiIgnore + @Parameter(hidden = true) @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiParam("Type of the enrichment e.g. SAMPLE or PATIENT") + @Parameter(description = "Type of the enrichment e.g. SAMPLE or PATIENT") @RequestParam(defaultValue = "SAMPLE") EnrichmentType enrichmentType, - @ApiParam(required = true, value = "List of groups containing sample and molecular profile identifiers") + @Parameter(required = true, description = "List of groups containing sample and molecular profile identifiers") @Valid @RequestBody(required = false) List groups, - @ApiIgnore + @Parameter(hidden = true) @Valid @RequestAttribute(required = false, value = "interceptedMolecularProfileCasesGroupFilters") List interceptedMolecularProfileCasesGroupFilters) throws MolecularProfileNotFoundException, UnsupportedOperationException { @@ -61,18 +66,20 @@ public ResponseEntity> fetchGenericAssay } @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/generic-assay-binary-enrichments/fetch", + @RequestMapping(value = "/api/generic-assay-binary-enrichments/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch generic assay binary data enrichments in a molecular profile") + @Operation(description = "Fetch generic assay binary data enrichments in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayBinaryEnrichment.class)))) public ResponseEntity> fetchGenericAssayBinaryDataEnrichmentInMultipleMolecularProfiles( - @ApiIgnore + @Parameter(hidden = true) @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiParam("Type of the enrichment e.g. SAMPLE or PATIENT") + @Parameter(description = "Type of the enrichment e.g. SAMPLE or PATIENT") @RequestParam(defaultValue = "SAMPLE") EnrichmentType enrichmentType, - @ApiParam(required = true, value = "List of groups containing sample and molecular profile identifiers") + @Parameter(required = true, description = "List of groups containing sample and molecular profile identifiers") @Valid @RequestBody(required = false) List groups, - @ApiIgnore + @Parameter(hidden = true) @Valid @RequestAttribute(required = false, value = "interceptedMolecularProfileCasesGroupFilters") List interceptedMolecularProfileCasesGroupFilters) throws MolecularProfileNotFoundException, UnsupportedOperationException { diff --git a/src/main/java/org/cbioportal/web/GenesetController.java b/src/main/java/org/cbioportal/web/GenesetController.java new file mode 100644 index 00000000000..0e4eeb56bcc --- /dev/null +++ b/src/main/java/org/cbioportal/web/GenesetController.java @@ -0,0 +1,102 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.Geneset; +import org.cbioportal.service.GenesetService; +import org.cbioportal.service.exception.GenesetNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController +@Validated +@Tag(name = "Gene Sets", description = " ") +public class GenesetController { + + @Autowired + private GenesetService genesetService; + + @RequestMapping(value = "/api/genesets", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all gene sets") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Geneset.class)))) + public ResponseEntity> getAllGenesets( + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(Integer.MAX_VALUE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber) { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, genesetService.getMetaGenesets().getTotalCount() + .toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + genesetService.getAllGenesets(projection.name(), pageSize, pageNumber), HttpStatus.OK); + } + } + + @RequestMapping(value = "/api/genesets/{genesetId}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get a gene set") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Geneset.class))) + public ResponseEntity getGeneset( + @Parameter(required = true, description = "Gene set ID e.g. GNF2_ZAP70") + @PathVariable String genesetId) throws GenesetNotFoundException { + + return new ResponseEntity<>(genesetService.getGeneset(genesetId), HttpStatus.OK); + } + + @RequestMapping(value = "/api/genesets/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch gene sets by ID") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Geneset.class)))) + public ResponseEntity> fetchGenesets( + @Parameter(required = true, description = "List of Geneset IDs") + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + @RequestBody List genesetIds) { + + return new ResponseEntity<>(genesetService.fetchGenesets(genesetIds), HttpStatus.OK); + } + + @RequestMapping(value = "/api/genesets/version", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get the geneset version") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = String.class))) + public ResponseEntity getGenesetVersion() { + + return new ResponseEntity<>("\""+genesetService.getGenesetVersion() +"\"", HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/GenesetCorrelationController.java b/src/main/java/org/cbioportal/web/GenesetCorrelationController.java new file mode 100644 index 00000000000..1859079bbbe --- /dev/null +++ b/src/main/java/org/cbioportal/web/GenesetCorrelationController.java @@ -0,0 +1,103 @@ +/* + * Copyright (c) 2016 The Hyve B.V. + * This code is licensed under the GNU Affero General Public License (AGPL), + * version 3, or (at your option) any later version. + */ + +/* + * This file is part of cBioPortal. + * + * cBioPortal is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.GenesetCorrelation; +import org.cbioportal.service.GenesetCorrelationService; +import org.cbioportal.service.exception.GenesetNotFoundException; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.service.exception.SampleListNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Gene Set Correlation", description = " ") +public class GenesetCorrelationController { + + @Autowired + private GenesetCorrelationService genesetCorrelationService; + + @PreAuthorize("hasPermission(#geneticProfileId, 'GeneticProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/genesets/{genesetId}/expression-correlation/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get the genes in a gene set that have expression correlated to the gene set scores (calculated using Spearman's correlation)") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenesetCorrelation.class)))) + public ResponseEntity> fetchCorrelatedGenes( + @Parameter(required = true, description = "Gene set ID, e.g. HINATA_NFKB_MATRIX.") + @PathVariable String genesetId, + @Parameter(required = true, description = "Genetic Profile ID e.g. gbm_tcga_gsva_scores") + @RequestParam String geneticProfileId, + @Parameter(description = "Correlation threshold (for absolute correlation value, Spearman correlation)") + @Max(1) + @Min(0) + @RequestParam(defaultValue = "0.3") Double correlationThreshold, + @Parameter(description = "Identifier of pre-defined sample list with samples to query, e.g. brca_tcga_all") + @RequestParam(required = false) String sampleListId, + @Parameter(description = "Fill this one if you want to specify a subset of samples:" + + " sampleIds: custom list of samples or patients to query, e.g. [\"TCGA-A1-A0SD-01\", \"TCGA-A1-A0SE-01\"]") + @RequestBody(required = false) List sampleIds) + throws MolecularProfileNotFoundException, SampleListNotFoundException, GenesetNotFoundException { + + if (sampleListId != null && sampleListId.trim().length() > 0) { + return new ResponseEntity<>( + genesetCorrelationService.fetchCorrelatedGenes(genesetId, geneticProfileId, sampleListId, correlationThreshold.doubleValue()), + HttpStatus.OK); + } + if (sampleIds != null && sampleIds.size() > 0) { + return new ResponseEntity<>( + genesetCorrelationService.fetchCorrelatedGenes(genesetId, geneticProfileId, sampleIds, correlationThreshold.doubleValue()), + HttpStatus.OK); + } else { + return new ResponseEntity<>( + genesetCorrelationService.fetchCorrelatedGenes(genesetId, geneticProfileId, correlationThreshold.doubleValue()), + HttpStatus.OK); + } + } +} diff --git a/src/main/java/org/cbioportal/web/GenesetDataController.java b/src/main/java/org/cbioportal/web/GenesetDataController.java new file mode 100644 index 00000000000..9c911d8d18e --- /dev/null +++ b/src/main/java/org/cbioportal/web/GenesetDataController.java @@ -0,0 +1,68 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import org.cbioportal.model.GenesetMolecularData; +import org.cbioportal.service.GenesetDataService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.service.exception.SampleListNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.GenesetDataFilterCriteria; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Gene Set Scores", description = " ") +public class GenesetDataController { + + + @Autowired + private GenesetDataService genesetDataService; + + @PreAuthorize("hasPermission(#geneticProfileId, 'GeneticProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/genetic-profiles/{geneticProfileId}/geneset-genetic-data/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch gene set \"genetic data\" items (gene set scores) by profile Id, gene set ids and sample ids") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenesetMolecularData.class)))) + public ResponseEntity> fetchGeneticDataItems( + @Parameter(required = true, description = "Genetic profile ID, e.g. gbm_tcga_gsva_scores") + @PathVariable String geneticProfileId, + @Parameter(required = true, description = "Search criteria to return the values for a given set of samples and gene set items. " + + "genesetIds: The list of identifiers for the gene sets of interest, e.g. HINATA_NFKB_MATRIX. " + + "Use one of these if you want to specify a subset of samples:" + + "(1) sampleListId: Identifier of pre-defined sample list with samples to query, e.g. brca_tcga_all " + + "or (2) sampleIds: custom list of samples or patients to query, e.g. TCGA-BH-A1EO-01, TCGA-AR-A1AR-01") + @RequestBody GenesetDataFilterCriteria genesetDataFilterCriteria) throws MolecularProfileNotFoundException, SampleListNotFoundException { + + if (genesetDataFilterCriteria.getSampleListId() != null && genesetDataFilterCriteria.getSampleListId().trim().length() > 0) { + return new ResponseEntity<>( + genesetDataService.fetchGenesetData(geneticProfileId, genesetDataFilterCriteria.getSampleListId(), + genesetDataFilterCriteria.getGenesetIds()), HttpStatus.OK); + } else { + return new ResponseEntity<>( + genesetDataService.fetchGenesetData(geneticProfileId, genesetDataFilterCriteria.getSampleIds(), + genesetDataFilterCriteria.getGenesetIds()), HttpStatus.OK); + } + } + +} diff --git a/src/main/java/org/cbioportal/web/GenesetHierarchyController.java b/src/main/java/org/cbioportal/web/GenesetHierarchyController.java new file mode 100644 index 00000000000..1efd7019138 --- /dev/null +++ b/src/main/java/org/cbioportal/web/GenesetHierarchyController.java @@ -0,0 +1,108 @@ +/* + * Copyright (c) 2016 The Hyve B.V. + * This code is licensed under the GNU Affero General Public License (AGPL), + * version 3, or (at your option) any later version. + */ + +/* + * This file is part of cBioPortal. + * + * cBioPortal is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.GenesetHierarchyInfo; +import org.cbioportal.service.GenesetHierarchyService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.service.exception.SampleListNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Gene Set Hierarchy", description = " ") +public class GenesetHierarchyController { + + @Autowired + private GenesetHierarchyService genesetHierarchyService; + + @PreAuthorize("hasPermission(#geneticProfileId, 'GeneticProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/geneset-hierarchy/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get gene set hierarchical organization information. I.e. how different gene sets relate to other gene sets, in a hierarchy") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenesetHierarchyInfo.class)))) + public ResponseEntity> fetchGenesetHierarchyInfo( + @Parameter(required = true, description = "Genetic Profile ID e.g. gbm_tcga_gsva_scores. The final hierarchy " + + " will only include gene sets scored in the specified profile.") + @RequestParam String geneticProfileId, + @Parameter(description = "Percentile (for score calculation). Which percentile to use when determining the *representative score*") + @Max(100) + @Min(1) + @RequestParam(defaultValue = "75") Integer percentile, + @Parameter(description = "Gene set score threshold (for absolute score value). Filters out gene sets where the GSVA(like) *representative score* is under this threshold.") + @Max(1) + @Min(0) + @RequestParam(defaultValue = "0.4") Double scoreThreshold, + @Parameter(description = "p-value threshold. Filters out gene sets for which the score p-value is higher than this threshold.") + @Max(1) + @Min(0) + @RequestParam(defaultValue = "0.05") Double pvalueThreshold, + @Parameter(description = "Identifier of pre-defined sample list with samples to query, e.g. brca_tcga_all") + @RequestParam(required = false) String sampleListId, + @Parameter(description = "Fill this one if you want to specify a subset of samples:" + + " sampleIds: custom list of samples or patients to query, e.g. [\"TCGA-A1-A0SD-01\", \"TCGA-A1-A0SE-01\"]") + @RequestBody(required = false) List sampleIds) + throws MolecularProfileNotFoundException, SampleListNotFoundException { + + if (sampleListId != null && sampleListId.trim().length() > 0) { + return new ResponseEntity<>( + genesetHierarchyService.fetchGenesetHierarchyInfo(geneticProfileId, percentile, scoreThreshold, pvalueThreshold, sampleListId), + HttpStatus.OK); + } else if (sampleIds != null && sampleIds.size() > 0){ + return new ResponseEntity<>( + genesetHierarchyService.fetchGenesetHierarchyInfo(geneticProfileId, percentile, scoreThreshold, pvalueThreshold, sampleIds), + HttpStatus.OK); + } else { + return new ResponseEntity<>( + genesetHierarchyService.fetchGenesetHierarchyInfo(geneticProfileId, percentile, scoreThreshold, pvalueThreshold), + HttpStatus.OK); + } + + } +} diff --git a/src/main/java/org/cbioportal/web/IndexPageController.java b/src/main/java/org/cbioportal/web/IndexPageController.java new file mode 100644 index 00000000000..5c432ef6b17 --- /dev/null +++ b/src/main/java/org/cbioportal/web/IndexPageController.java @@ -0,0 +1,107 @@ +package org.cbioportal.web; + +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.JsonSerializer; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.module.SimpleModule; +import jakarta.servlet.http.HttpServletRequest; +import org.cbioportal.service.FrontendPropertiesService; +import org.cbioportal.web.util.HttpRequestUtils; +import org.json.simple.JSONObject; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.core.Authentication; +import org.springframework.security.oauth2.client.registration.ClientRegistration; +import org.springframework.security.oauth2.client.registration.ClientRegistrationRepository; +import org.springframework.security.oauth2.client.registration.InMemoryClientRegistrationRepository; +import org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestMapping; + +import java.io.IOException; +import java.util.Arrays; +import java.util.HashMap; +import java.util.Iterator; +import java.util.Map; + +import static org.cbioportal.service.FrontendPropertiesServiceImpl.FrontendProperty; + +@Controller +public class IndexPageController { + private static final Logger log = LoggerFactory.getLogger(IndexPageController.class); + + @Autowired + private FrontendPropertiesService frontendPropertiesService; + + @Autowired + private HttpRequestUtils requestUtils; + + @Value("${authenticate}") + private String[] authenticate; + + @Value("${saml.idp.metadata.entityid:not_defined_in_portalproperties}") + private String samlIdpEntityId; + + private final ObjectMapper mapper = new ObjectMapper(); + + private Map getFrontendProperties(HttpServletRequest request, Authentication authentication) { + String baseUrl = requestUtils.getBaseUrl(request); + Map properties = frontendPropertiesService.getFrontendProperties(); + properties.put("base_url", baseUrl); + properties.put("user_email_address", authentication != null ? authentication.getName(): "anonymousUser"); + // TODO: Support skin.user_display_name + properties.put("user_display_name", authentication != null ? authentication.getName(): "anonymousUser"); + return properties; + } + + @RequestMapping({"/", "/index", "/index.html", "/study/summary", "/results" }) + public String showIndexPage(HttpServletRequest request, Authentication authentication, Model model) + throws JsonProcessingException { + + SimpleModule simpleModule = new SimpleModule(); + simpleModule.addSerializer(String.class, new CustomFrontendPropertiesSerializer()); + mapper.registerModule(simpleModule); + + String baseUrl = requestUtils.getBaseUrl(request); + JSONObject postData = requestUtils.getPostData(request); + + model.addAttribute("propertiesJson", mapper.writeValueAsString(getFrontendProperties(request, authentication))); + model.addAttribute("frontendUrl", frontendPropertiesService.getFrontendProperty(FrontendProperty.frontendUrl)); + model.addAttribute("baseUrl", baseUrl); + model.addAttribute("contextPath", request.getContextPath()); + model.addAttribute("appVersion", frontendPropertiesService.getFrontendProperty(FrontendProperty.app_version)); + model.addAttribute("postData", postData.isEmpty() ? "undefined" : postData); + + return "index"; + } + + @GetMapping("/config_service") + public ResponseEntity getConfigService(HttpServletRequest request, Authentication authentication) { + return ResponseEntity.ok(getFrontendProperties(request, authentication)); + } + + public FrontendPropertiesService getFrontendPropertiesService() { + return frontendPropertiesService; + } + + public static class CustomFrontendPropertiesSerializer extends JsonSerializer { + @Override + public void serialize(String value, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException { + if ("true".equalsIgnoreCase(value) || "false".equalsIgnoreCase((value))) { + jsonGenerator.writeBoolean("true".equalsIgnoreCase(value)); + } else if (value != null) { + jsonGenerator.writeString(value); + } else { + jsonGenerator.writeNull(); + } + } + } +} diff --git a/web/src/main/java/org/cbioportal/web/InfoController.java b/src/main/java/org/cbioportal/web/InfoController.java similarity index 77% rename from web/src/main/java/org/cbioportal/web/InfoController.java rename to src/main/java/org/cbioportal/web/InfoController.java index 567771176e5..dbb36c8f640 100644 --- a/web/src/main/java/org/cbioportal/web/InfoController.java +++ b/src/main/java/org/cbioportal/web/InfoController.java @@ -1,7 +1,10 @@ package org.cbioportal.web; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; import org.cbioportal.model.Info; import org.cbioportal.web.config.PublicApiTags; import org.cbioportal.web.config.annotation.PublicApi; @@ -17,7 +20,7 @@ @PublicApi @RestController @Validated -@Api(tags = PublicApiTags.INFO, description = " ") +@Tag(name = PublicApiTags.INFO, description = " ") public class InfoController { @Value("${portal.version}") @@ -29,7 +32,7 @@ public class InfoController { @Value("${git.branch}") private String gitBranch; - @Value("${git.commit.id}") + @Value("${git.commit.id.full}") private String gitCommitId; @Value("${git.commit.id.abbrev}") @@ -56,8 +59,10 @@ public class InfoController { @Value("${git.dirty}") private String gitDirty; - @RequestMapping(value = "/info", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get information about the running instance") + @RequestMapping(value = "/api/info", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get information about the running instance") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Info.class))) public ResponseEntity getInfo() { Info info = new Info(); diff --git a/src/main/java/org/cbioportal/web/LoginPageController.java b/src/main/java/org/cbioportal/web/LoginPageController.java new file mode 100644 index 00000000000..4ffe9050e73 --- /dev/null +++ b/src/main/java/org/cbioportal/web/LoginPageController.java @@ -0,0 +1,71 @@ +package org.cbioportal.web; + +import jakarta.servlet.http.HttpServletRequest; +import org.apache.commons.collections.map.HashedMap; +import org.cbioportal.service.FrontendPropertiesService; +import org.cbioportal.service.FrontendPropertiesServiceImpl; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; +import org.springframework.http.MediaType; +import org.springframework.security.core.Authentication; +import org.springframework.security.oauth2.client.registration.ClientRegistration; +import org.springframework.security.oauth2.client.registration.InMemoryClientRegistrationRepository; +import org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; + +import java.util.Arrays; +import java.util.HashMap; +import java.util.Map; +import java.util.Objects; + +@Controller +@ConditionalOnExpression("{'oauth2','saml','optional_oauth2'}.contains('${authenticate}')") +public class LoginPageController { + private static final Logger log = LoggerFactory.getLogger(LoginPageController.class); + + @Autowired + private FrontendPropertiesService frontendPropertiesService; + + @Autowired(required = false) + private InMemoryClientRegistrationRepository clientRegistrationRepository; + + @Value("${authenticate}") + private String authenticate; + + @GetMapping(value = "/login", produces = MediaType.APPLICATION_JSON_VALUE) + public String showLoginPage(HttpServletRequest request, Authentication authentication, Model model) { + + Map oauth2AuthenticationUrls = getOauth2AuthenticationUrls(); + + model.addAttribute("oauth_urls", oauth2AuthenticationUrls); + + model.addAttribute("skin_title", frontendPropertiesService.getFrontendProperty(FrontendPropertiesServiceImpl.FrontendProperty.skin_title)); + model.addAttribute("skin_authorization_message", frontendPropertiesService.getFrontendProperty(FrontendPropertiesServiceImpl.FrontendProperty.skin_authorization_message)); + model.addAttribute("skin_login_contact_html", frontendPropertiesService.getFrontendProperty(FrontendPropertiesServiceImpl.FrontendProperty.skin_login_contact_html)); + model.addAttribute("skin_login_saml_registration_html", frontendPropertiesService.getFrontendProperty(FrontendPropertiesServiceImpl.FrontendProperty.skin_login_saml_registration_html)); + model.addAttribute("saml_idp_metadata_entityid", frontendPropertiesService.getFrontendProperty(FrontendPropertiesServiceImpl.FrontendProperty.saml_idp_metadata_entityid)); + model.addAttribute("logout_success", request.getParameterMap().containsKey("logout_success")); + model.addAttribute("login_error", Boolean.parseBoolean(request.getParameter("login_error"))); + model.addAttribute("show_saml", frontendPropertiesService.getFrontendProperty(FrontendPropertiesServiceImpl.FrontendProperty.authenticationMethod).equals("saml")); + model.addAttribute("show_google", Arrays.asList(authenticate).contains("social_auth") || Arrays.asList(authenticate).contains("social_auth_google") ); + model.addAttribute("show_microsoft", Arrays.asList(authenticate).contains("social_auth_microsoft")); + + return "login"; + } + + private Map getOauth2AuthenticationUrls() { + Map oauth2AuthenticationUrls = new HashMap<>(); + if(!Objects.isNull(clientRegistrationRepository) && !Objects.equals(authenticate, "saml")) { + for (ClientRegistration clientRegistration : clientRegistrationRepository) { + oauth2AuthenticationUrls.put(clientRegistration.getRegistrationId(), + OAuth2AuthorizationRequestRedirectFilter.DEFAULT_AUTHORIZATION_REQUEST_BASE_URI + "/" + clientRegistration.getRegistrationId()); + } + } + return oauth2AuthenticationUrls; + } +} diff --git a/src/main/java/org/cbioportal/web/MatchMinerController.java b/src/main/java/org/cbioportal/web/MatchMinerController.java new file mode 100644 index 00000000000..3b1ad15f694 --- /dev/null +++ b/src/main/java/org/cbioportal/web/MatchMinerController.java @@ -0,0 +1,80 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import jakarta.servlet.http.HttpServletRequest; +import org.apache.commons.codec.binary.Base64; +import org.json.simple.JSONObject; +import org.json.simple.parser.JSONParser; +import org.json.simple.parser.ParseException; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpMethod; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.http.converter.StringHttpMessageConverter; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.client.RestTemplate; + +import java.net.URI; +import java.net.URISyntaxException; +import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; + +@RestController +@RequestMapping("/api/matchminer") +public class MatchMinerController { + + private static final Logger LOG = LoggerFactory.getLogger( MatchMinerController.class); + + @Value("${matchminer.url:}") + private String url; + + @Value("${matchminer.token:}") + private String token; + + @RequestMapping(value = "/api/**", produces = "application/json") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Object.class))) + public ResponseEntity proxy(@RequestBody(required = false) JSONObject body, HttpMethod method, HttpServletRequest request) { + try { + // TODO when reimplemeting different dispatcherservlets with different context roots + // reset this to 'String requestPathInfo = request.getPathInfo();' + String requestPathInfo = request.getPathInfo() == null? request.getServletPath() : request.getPathInfo(); + String path = requestPathInfo.replace("/matchminer", ""); + URI uri = new URI(this.url + path); + + HttpHeaders httpHeaders = new HttpHeaders(); + String contentType = request.getHeader("Content-Type"); + if (contentType != null) { + httpHeaders.setContentType(MediaType.valueOf(contentType)); + } + if (!this.token.equals("")) { + String auth = this.token + ":"; + byte[] encodedAuth = Base64.encodeBase64(auth.getBytes(Charset.forName("US-ASCII"))); + String authHeader = "Basic " + new String(encodedAuth); + httpHeaders.set("Authorization", authHeader); + } + + RestTemplate restTemplate = new RestTemplate(); + restTemplate.getMessageConverters().add(0, new StringHttpMessageConverter(StandardCharsets.UTF_8)); + ResponseEntity responseEntity = restTemplate.exchange(uri, method, new HttpEntity<>(body, httpHeaders), String.class); + // The response might be a json object or a json array, so I return Object to cover both cases. + Object response = new JSONParser().parse(responseEntity.getBody()); + return new ResponseEntity<>(response, responseEntity.getStatusCode()); + } catch (URISyntaxException e) { + LOG.error("Error occurred", e); + return new ResponseEntity<>(HttpStatus.BAD_REQUEST); + } catch (ParseException e) { + LOG.error("Error occurred", e); + return new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR); + } + } +} \ No newline at end of file diff --git a/web/src/main/java/org/cbioportal/web/MolecularDataController.java b/src/main/java/org/cbioportal/web/MolecularDataController.java similarity index 77% rename from web/src/main/java/org/cbioportal/web/MolecularDataController.java rename to src/main/java/org/cbioportal/web/MolecularDataController.java index ac6576fc1c1..69ed27f83bf 100644 --- a/web/src/main/java/org/cbioportal/web/MolecularDataController.java +++ b/src/main/java/org/cbioportal/web/MolecularDataController.java @@ -1,13 +1,18 @@ package org.cbioportal.web; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; import org.apache.commons.lang3.math.NumberUtils; import org.cbioportal.model.GeneMolecularData; import org.cbioportal.model.NumericGeneMolecularData; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; import org.cbioportal.service.MolecularDataService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; import org.cbioportal.web.config.PublicApiTags; import org.cbioportal.web.config.annotation.PublicApi; import org.cbioportal.web.parameter.HeaderKeyConstants; @@ -29,16 +34,18 @@ import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; -import javax.validation.Valid; import java.math.BigDecimal; -import java.util.*; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; @PublicApi -@RestController +@RestController() +@RequestMapping("/api") @Validated -@Api(tags = PublicApiTags.MOLECULAR_DATA, description = " ") +@Tag(name = PublicApiTags.MOLECULAR_DATA, description = " ") public class MolecularDataController { @Autowired @@ -47,15 +54,17 @@ public class MolecularDataController { @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/molecular-data", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all molecular data in a molecular profile") + @Operation(description = "Get all molecular data in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = NumericGeneMolecularData.class)))) public ResponseEntity> getAllMolecularDataInMolecularProfile( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_rna_seq_v2_mrna") + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_rna_seq_v2_mrna") @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "Sample List ID e.g. acc_tcga_all") + @Parameter(required = true, description = "Sample List ID e.g. acc_tcga_all") @RequestParam String sampleListId, - @ApiParam(required = true, value = "Entrez Gene ID e.g. 1") + @Parameter(required = true, description = "Entrez Gene ID e.g. 1") @RequestParam Integer entrezGeneId, - @ApiParam("Level of detail of the response") + @Parameter(description = "Level of detail of the response") @RequestParam(defaultValue = "SUMMARY") Projection projection) throws MolecularProfileNotFoundException { List result = filterNonNumberMolecularData(molecularDataService.getMolecularData( @@ -74,13 +83,15 @@ public ResponseEntity> getAllMolecularDataInMolec @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/molecular-data/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch molecular data in a molecular profile") + @Operation(description = "Fetch molecular data in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = NumericGeneMolecularData.class)))) public ResponseEntity> fetchAllMolecularDataInMolecularProfile( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_rna_seq_v2_mrna") + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_rna_seq_v2_mrna") @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "List of Sample IDs/Sample List ID and Entrez Gene IDs") + @Parameter(required = true, description = "List of Sample IDs/Sample List ID and Entrez Gene IDs") @Valid @RequestBody MolecularDataFilter molecularDataFilter, - @ApiParam("Level of detail of the response") + @Parameter(description = "Level of detail of the response") @RequestParam(defaultValue = "SUMMARY") Projection projection) throws MolecularProfileNotFoundException { List result; @@ -104,16 +115,18 @@ public ResponseEntity> fetchAllMolecularDataInMol @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/molecular-data/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch molecular data") + @Operation(description = "Fetch molecular data") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = NumericGeneMolecularData.class)))) public ResponseEntity> fetchMolecularDataInMultipleMolecularProfiles( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. @Valid @RequestAttribute(required = false, value = "interceptedMolecularDataMultipleStudyFilter") MolecularDataMultipleStudyFilter interceptedMolecularDataMultipleStudyFilter, - @ApiParam(required = true, value = "List of Molecular Profile ID and Sample ID pairs or List of Molecular" + + @Parameter(required = true, description = "List of Molecular Profile ID and Sample ID pairs or List of Molecular" + "Profile IDs and Entrez Gene IDs") @Valid @RequestBody(required = false) MolecularDataMultipleStudyFilter molecularDataMultipleStudyFilter, - @ApiParam("Level of detail of the response") + @Parameter(description = "Level of detail of the response") @RequestParam(defaultValue = "SUMMARY") Projection projection) { List result; diff --git a/src/main/java/org/cbioportal/web/MolecularProfileController.java b/src/main/java/org/cbioportal/web/MolecularProfileController.java new file mode 100644 index 00000000000..ee887e13eff --- /dev/null +++ b/src/main/java/org/cbioportal/web/MolecularProfileController.java @@ -0,0 +1,175 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.MolecularProfile; +import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.service.MolecularProfileService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.MolecularProfileFilter; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.MolecularProfileSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.Collection; +import java.util.List; + +@PublicApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.MOLECULAR_PROFILES, description = " ") +public class MolecularProfileController { + + @Autowired + private MolecularProfileService molecularProfileService; + + @RequestMapping(value = "/molecular-profiles", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all molecular profiles") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = MolecularProfile.class)))) + public ResponseEntity> getAllMolecularProfiles( + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) MolecularProfileSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, molecularProfileService.getMetaMolecularProfiles() + .getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + molecularProfileService.getAllMolecularProfiles(projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/molecular-profiles/{molecularProfileId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = MolecularProfile.class))) + public ResponseEntity getMolecularProfile( + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_mutations") + @PathVariable String molecularProfileId) throws MolecularProfileNotFoundException { + + return new ResponseEntity<>(molecularProfileService.getMolecularProfile(molecularProfileId), HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/molecular-profiles", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all molecular profiles in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = MolecularProfile.class)))) + public ResponseEntity> getAllMolecularProfilesInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) MolecularProfileSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, molecularProfileService + .getMetaMolecularProfilesInStudy(studyId).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + molecularProfileService.getAllMolecularProfilesInStudy(studyId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/molecular-profiles/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch molecular profiles") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = MolecularProfile.class)))) + public ResponseEntity> fetchMolecularProfiles( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedMolecularProfileFilter") MolecularProfileFilter interceptedMolecularProfileFilter, + @Parameter(required = true, description = "List of Molecular Profile IDs or List of Study IDs") + @Valid @RequestBody(required = false) MolecularProfileFilter molecularProfileFilter, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + BaseMeta baseMeta; + + if (interceptedMolecularProfileFilter.getStudyIds() != null) { + baseMeta = molecularProfileService.getMetaMolecularProfilesInStudies( + interceptedMolecularProfileFilter.getStudyIds()); + } else { + baseMeta = molecularProfileService.getMetaMolecularProfiles( + interceptedMolecularProfileFilter.getMolecularProfileIds()); + } + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, baseMeta.getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + List molecularProfiles; + if (interceptedMolecularProfileFilter.getStudyIds() != null) { + molecularProfiles = molecularProfileService.getMolecularProfilesInStudies( + interceptedMolecularProfileFilter.getStudyIds(), projection.name()); + } else { + molecularProfiles = molecularProfileService.getMolecularProfiles( + interceptedMolecularProfileFilter.getMolecularProfileIds(), projection.name()); + } + return new ResponseEntity<>(molecularProfiles, HttpStatus.OK); + } + } +} diff --git a/src/main/java/org/cbioportal/web/MrnaPercentileController.java b/src/main/java/org/cbioportal/web/MrnaPercentileController.java new file mode 100644 index 00000000000..816da438e08 --- /dev/null +++ b/src/main/java/org/cbioportal/web/MrnaPercentileController.java @@ -0,0 +1,61 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.MrnaPercentile; +import org.cbioportal.service.MrnaPercentileService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.PagingConstants; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "mRNA Percentile", description = " ") +public class MrnaPercentileController { + + @Autowired + private MrnaPercentileService mrnaPercentileService; + + @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/mrna-percentile/fetch", + method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get mRNA expression percentiles for list of genes for a sample") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = MrnaPercentile.class)))) + public ResponseEntity> fetchMrnaPercentile( + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_rna_seq_v2_mrna") + @PathVariable String molecularProfileId, + @Parameter(required = true, description = "Sample ID e.g. TCGA-OR-A5J2-01") + @RequestParam String sampleId, + @Parameter(required = true, description = "List of Entrez Gene IDs") + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + @RequestBody List entrezGeneIds) + throws MolecularProfileNotFoundException { + + return new ResponseEntity<>( + mrnaPercentileService.fetchMrnaPercentile(molecularProfileId, sampleId, entrezGeneIds), HttpStatus.OK); + } +} diff --git a/web/src/main/java/org/cbioportal/web/MskEntityTranslationController.java b/src/main/java/org/cbioportal/web/MskEntityTranslationController.java similarity index 96% rename from web/src/main/java/org/cbioportal/web/MskEntityTranslationController.java rename to src/main/java/org/cbioportal/web/MskEntityTranslationController.java index 0217438aa3a..d4a9063a514 100644 --- a/web/src/main/java/org/cbioportal/web/MskEntityTranslationController.java +++ b/src/main/java/org/cbioportal/web/MskEntityTranslationController.java @@ -32,22 +32,27 @@ package org.cbioportal.web; -import java.util.HashMap; -import java.util.regex.*; -import org.cbioportal.service.SampleService; import org.cbioportal.service.PatientService; +import org.cbioportal.service.SampleService; import org.cbioportal.service.exception.PatientNotFoundException; import org.cbioportal.service.exception.SampleNotFoundException; import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.utils.config.annotation.ConditionalOnProperty; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.PropertySource; +import org.springframework.context.annotation.PropertySources; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; -import org.springframework.web.bind.annotation.*; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.servlet.ModelAndView; -import org.springframework.context.annotation.PropertySource; -import org.springframework.context.annotation.PropertySources; -import org.cbioportal.utils.config.annotation.ConditionalOnProperty; + +import java.util.HashMap; +import java.util.regex.Matcher; +import java.util.regex.Pattern; /** * This class checks for the existence and location of entities {samples, patients} diff --git a/web/src/main/java/org/cbioportal/web/MutationController.java b/src/main/java/org/cbioportal/web/MutationController.java similarity index 77% rename from web/src/main/java/org/cbioportal/web/MutationController.java rename to src/main/java/org/cbioportal/web/MutationController.java index ccbc8b88809..fc9c0b91ba0 100644 --- a/web/src/main/java/org/cbioportal/web/MutationController.java +++ b/src/main/java/org/cbioportal/web/MutationController.java @@ -1,20 +1,25 @@ package org.cbioportal.web; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.meta.MutationMeta; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; import org.cbioportal.model.Mutation; -import org.cbioportal.model.MutationCountByPosition; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.model.meta.MutationMeta; import org.cbioportal.service.MutationService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; import org.cbioportal.web.config.PublicApiTags; import org.cbioportal.web.config.annotation.PublicApi; import org.cbioportal.web.parameter.Direction; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.cbioportal.web.parameter.MutationFilter; import org.cbioportal.web.parameter.MutationMultipleStudyFilter; -import org.cbioportal.web.parameter.MutationPositionIdentifier; import org.cbioportal.web.parameter.PagingConstants; import org.cbioportal.web.parameter.Projection; import org.cbioportal.web.parameter.SampleMolecularIdentifier; @@ -33,18 +38,17 @@ import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; -import javax.validation.Valid; -import java.util.*; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; @PublicApi -@RestController +@RestController() +@RequestMapping("/api") @Validated -@Api(tags = PublicApiTags.MUTATIONS, description = " ") +@Tag(name = PublicApiTags.MUTATIONS, description = " ") public class MutationController { @Autowired @@ -53,26 +57,28 @@ public class MutationController { @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/mutations", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get mutations in a molecular profile by Sample List ID") + @Operation(description = "Get mutations in a molecular profile by Sample List ID") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Mutation.class)))) public ResponseEntity> getMutationsInMolecularProfileBySampleListId( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_mutations") + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_mutations") @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "Sample List ID e.g. acc_tcga_all") + @Parameter(required = true, description = "Sample List ID e.g. acc_tcga_all") @RequestParam String sampleListId, - @ApiParam("Entrez Gene ID") + @Parameter(description = "Entrez Gene ID") @RequestParam(required = false) Integer entrezGeneId, - @ApiParam("Level of detail of the response") + @Parameter(description = "Level of detail of the response") @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") + @Parameter(description = "Page size of the result list") @Max(PagingConstants.MAX_PAGE_SIZE) @Min(PagingConstants.MIN_PAGE_SIZE) @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") + @Parameter(description = "Page number of the result list") @Min(PagingConstants.MIN_PAGE_NUMBER) @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") + @Parameter(description = "Name of the property that the result list is sorted by") @RequestParam(required = false) MutationSortBy sortBy, - @ApiParam("Direction of the sort") + @Parameter(description = "Direction of the sort") @RequestParam(defaultValue = "ASC") Direction direction) throws MolecularProfileNotFoundException { if (projection == Projection.META) { @@ -93,24 +99,26 @@ public ResponseEntity> getMutationsInMolecularProfileBySampleList @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/mutations/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch mutations in a molecular profile") + @Operation(description = "Fetch mutations in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Mutation.class)))) public ResponseEntity> fetchMutationsInMolecularProfile( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_mutations") + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_mutations") @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "List of Sample IDs/Sample List ID and Entrez Gene IDs") + @Parameter(required = true, description = "List of Sample IDs/Sample List ID and Entrez Gene IDs") @Valid @RequestBody MutationFilter mutationFilter, - @ApiParam("Level of detail of the response") + @Parameter(description = "Level of detail of the response") @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") + @Parameter(description = "Page size of the result list") @Max(PagingConstants.MAX_PAGE_SIZE) @Min(PagingConstants.MIN_PAGE_SIZE) @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") + @Parameter(description = "Page number of the result list") @Min(PagingConstants.MIN_PAGE_NUMBER) @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") + @Parameter(description = "Name of the property that the result list is sorted by") @RequestParam(required = false) MutationSortBy sortBy, - @ApiParam("Direction of the sort") + @Parameter(description = "Direction of the sort") @RequestParam(defaultValue = "ASC") Direction direction) throws MolecularProfileNotFoundException { if (projection == Projection.META) { @@ -146,27 +154,29 @@ public ResponseEntity> fetchMutationsInMolecularProfile( @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/mutations/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch mutations in multiple molecular profiles by sample IDs") + @Operation(description = "Fetch mutations in multiple molecular profiles by sample IDs") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Mutation.class)))) public ResponseEntity> fetchMutationsInMultipleMolecularProfiles( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. @Valid @RequestAttribute(required = false, value = "interceptedMutationMultipleStudyFilter") MutationMultipleStudyFilter interceptedMutationMultipleStudyFilter, - @ApiParam(required = true, value = "List of Molecular Profile IDs or List of Molecular Profile ID / Sample ID pairs," + + @Parameter(required = true, description = "List of Molecular Profile IDs or List of Molecular Profile ID / Sample ID pairs," + " and List of Entrez Gene IDs") @Valid @RequestBody(required = false) MutationMultipleStudyFilter mutationMultipleStudyFilter, - @ApiParam("Level of detail of the response") + @Parameter(description = "Level of detail of the response") @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") + @Parameter(description = "Page size of the result list") @Max(PagingConstants.MAX_PAGE_SIZE) @Min(PagingConstants.MIN_PAGE_SIZE) @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") + @Parameter(description = "Page number of the result list") @Min(PagingConstants.MIN_PAGE_NUMBER) @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") + @Parameter(description = "Name of the property that the result list is sorted by") @RequestParam(required = false) MutationSortBy sortBy, - @ApiParam("Direction of the sort") + @Parameter(description = "Direction of the sort") @RequestParam(defaultValue = "ASC") Direction direction) { if (projection == Projection.META) { diff --git a/src/main/java/org/cbioportal/web/MutationCountController.java b/src/main/java/org/cbioportal/web/MutationCountController.java new file mode 100644 index 00000000000..7450c7fe131 --- /dev/null +++ b/src/main/java/org/cbioportal/web/MutationCountController.java @@ -0,0 +1,65 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.MutationCountByPosition; +import org.cbioportal.service.MutationService; +import org.cbioportal.web.config.InternalApiTags; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.MutationPositionIdentifier; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.List; + +@InternalApi +@RestController +@Validated +@Tag(name = InternalApiTags.MUTATIONS_COUNT, description = " ") +public class MutationCountController { + + public static final int MUTATION_MAX_PAGE_SIZE = 10000000; + + @Autowired + private MutationService mutationService; + + @RequestMapping(value = "/api/mutation-counts-by-position/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch mutation counts in all studies by gene and position") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = MutationCountByPosition.class)))) + public ResponseEntity> fetchMutationCountsByPosition( + @Parameter(required = true, description = "List of Mutation Position Identifiers") + @Size(min = 1, max = MUTATION_MAX_PAGE_SIZE) + @RequestBody List mutationPositionIdentifiers) { + + List entrezGeneIds = new ArrayList<>(); + List proteinPosStarts = new ArrayList<>(); + List proteinPosEnds = new ArrayList<>(); + for (MutationPositionIdentifier mutationPositionIdentifier : mutationPositionIdentifiers) { + + entrezGeneIds.add(mutationPositionIdentifier.getEntrezGeneId()); + proteinPosStarts.add(mutationPositionIdentifier.getProteinPosStart()); + proteinPosEnds.add(mutationPositionIdentifier.getProteinPosEnd()); + } + + return new ResponseEntity<>(mutationService.fetchMutationCountsByPosition(entrezGeneIds, proteinPosStarts, + proteinPosEnds), HttpStatus.OK); + } + + +} diff --git a/src/main/java/org/cbioportal/web/MutationSpectrumController.java b/src/main/java/org/cbioportal/web/MutationSpectrumController.java new file mode 100644 index 00000000000..c6c8a28b718 --- /dev/null +++ b/src/main/java/org/cbioportal/web/MutationSpectrumController.java @@ -0,0 +1,64 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import org.cbioportal.model.MutationSpectrum; +import org.cbioportal.service.MutationSpectrumService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.MutationSpectrumFilter; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Mutation Spectrums", description = " ") +public class MutationSpectrumController { + + @Autowired + private MutationSpectrumService mutationSpectrumService; + + @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/mutation-spectrums/fetch", + method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch mutation spectrums in a molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = MutationSpectrum.class)))) + public ResponseEntity> fetchMutationSpectrums( + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_mutations") + @PathVariable String molecularProfileId, + @Parameter(required = true, description = "List of Sample IDs/Sample List ID") + @Valid @RequestBody MutationSpectrumFilter mutationSpectrumFilter) throws MolecularProfileNotFoundException { + + List mutationSpectrums; + if (mutationSpectrumFilter.getSampleListId() != null) { + mutationSpectrums = mutationSpectrumService.getMutationSpectrums(molecularProfileId, + mutationSpectrumFilter.getSampleListId()); + } else { + mutationSpectrums = mutationSpectrumService.fetchMutationSpectrums(molecularProfileId, + mutationSpectrumFilter.getSampleIds()); + } + + return new ResponseEntity<>(mutationSpectrums, HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/OAuth2DataAccessTokenController.java b/src/main/java/org/cbioportal/web/OAuth2DataAccessTokenController.java new file mode 100644 index 00000000000..94df3e2f7da --- /dev/null +++ b/src/main/java/org/cbioportal/web/OAuth2DataAccessTokenController.java @@ -0,0 +1,195 @@ +/* + * Copyright (c) 2020 The Hyve B.V. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS + * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder + * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no + * obligations to provide maintenance, support, updates, enhancements or + * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be + * liable to any party for direct, indirect, special, incidental or + * consequential damages, including lost profits, arising out of the use of this + * software and its documentation, even if Memorial Sloan-Kettering Cancer + * Center has been advised of the possibility of such damage. + */ + +/* + * This file is part of cBioPortal. + * + * cBioPortal is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.annotation.PostConstruct; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import org.apache.commons.lang3.StringUtils; +import org.cbioportal.model.DataAccessToken; +import org.cbioportal.service.DataAccessTokenService; +import org.cbioportal.service.exception.DataAccessTokenNoUserIdentityException; +import org.cbioportal.service.exception.DataAccessTokenProhibitedUserException; +import org.cbioportal.utils.config.annotation.ConditionalOnProperty; +import org.cbioportal.web.config.annotation.InternalApi; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.core.Authentication; +import org.springframework.security.core.authority.SimpleGrantedAuthority; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.client.HttpClientErrorException; + +import java.io.IOException; +import java.io.UnsupportedEncodingException; +import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; +import java.util.List; + +@InternalApi +@Validated +@Tag(name = "Data Access Tokens", description = " ") +@RestController +@ConditionalOnProperty(name = "dat.method", havingValue = "oauth2") +public class OAuth2DataAccessTokenController { + + @Value("${dat.oauth2.userAuthorizationUri}") + private String userAuthorizationUri; + + @Value("${dat.oauth2.redirectUri}") + private String redirectUri; + + @Value("${dat.oauth2.clientId}") + private String clientId; + + @Value("${dat.filter_user_role:}") // default is empty string + private String userRoleToAccessToken; + + @Autowired + private DataAccessTokenService tokenService; + private String authorizationUrl; + private String fileName = "cbioportal_data_access_token.txt"; + + @PostConstruct + public void postConstruct() throws UnsupportedEncodingException { + + String scopeEncoded = URLEncoder.encode("openid offline_access", StandardCharsets.UTF_8.toString()); + String clientIdEncoded = URLEncoder.encode(clientId, StandardCharsets.UTF_8.toString()); + String redirUriEncode = URLEncoder.encode(redirectUri, StandardCharsets.UTF_8.toString()); + + authorizationUrl = String.format("%s?response_type=%s&scope=%s&client_id=%s&redirect_uri=%s", userAuthorizationUri, "code", scopeEncoded, clientIdEncoded, redirUriEncode); + } + + // This is the entrypoint for the cBioPortal frontend to download a single user token. + // Redirect the browser to the authorizationUrl. + @RequestMapping(method = RequestMethod.GET, value = "/api/data-access-token") + @Operation(description = "Create a new data access token") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = String.class))) + public ResponseEntity downloadDataAccessToken(Authentication authentication, + HttpServletRequest request, HttpServletResponse response) throws IOException { + + isUserAuthorizedToAccess(authentication); + + // redirect to authentication endpoint + HttpHeaders headers = new HttpHeaders(); + headers.add("Location", authorizationUrl); + return new ResponseEntity<>(headers, HttpStatus.FOUND); + + } + + // retrieve and trigger download OAuth2 offline token + @RequestMapping(method = RequestMethod.GET, value = "/api/data-access-token/oauth2") + @Parameter(hidden = true) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = String.class))) + public ResponseEntity downloadOAuth2DataAccessToken(HttpServletRequest request, HttpServletResponse response) throws IOException { + + String accessCode = request.getParameter("code"); + DataAccessToken offlineToken = tokenService.createDataAccessToken(accessCode); + + if (offlineToken == null) { + throw new DataAccessTokenProhibitedUserException(); + } + + // add header to trigger download of the token by the browser + response.setHeader("Content-Disposition", "attachment; filename=" + fileName); + + return new ResponseEntity<>(offlineToken.toString(), HttpStatus.OK); + } + + @RequestMapping(method = RequestMethod.POST, value = "/api/data-access-tokens", produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all data access tokens") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = DataAccessToken.class))) + public ResponseEntity createDataAccessToken(Authentication authentication) throws HttpClientErrorException { + throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); + } + + @RequestMapping(method = RequestMethod.GET, value = "/api/data-access-tokens") + @Operation(description = "Retrieve all data access tokens") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = DataAccessToken.class)))) + public ResponseEntity> getAllDataAccessTokens(HttpServletRequest request, + Authentication authentication) { + throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); + } + + @RequestMapping(method = RequestMethod.GET, value = "/api/data-access-tokens/{token}") + @Operation(description = "Retrieve an existing data access token") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = DataAccessToken.class))) + public ResponseEntity getDataAccessToken( + @Parameter(required = true, description = "token") @PathVariable String token) { + throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); + + } + + @RequestMapping(method = RequestMethod.DELETE, value = "/api/data-access-tokens") + @Operation(description = "Delete all data access tokens") + public void revokeAllDataAccessTokens(Authentication authentication) { + throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); + } + + @RequestMapping(method = RequestMethod.DELETE, value = "/api/data-access-tokens/{token}") + @Operation(description = "Delete a data access token") + public void revokeDataAccessToken(@Parameter(required = true, description = "token") @PathVariable String token) { + throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); + } + + private void isUserAuthorizedToAccess(Authentication authentication) { + if (authentication == null || !authentication.isAuthenticated()) { + throw new DataAccessTokenNoUserIdentityException(); + } + + if(StringUtils.isNotEmpty(userRoleToAccessToken) && + !authentication.getAuthorities().contains(new SimpleGrantedAuthority(userRoleToAccessToken))) { + throw new DataAccessTokenProhibitedUserException(); + } + } + +} diff --git a/src/main/java/org/cbioportal/web/PatientController.java b/src/main/java/org/cbioportal/web/PatientController.java new file mode 100644 index 00000000000..e1f4d37ca55 --- /dev/null +++ b/src/main/java/org/cbioportal/web/PatientController.java @@ -0,0 +1,190 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.Patient; +import org.cbioportal.service.PatientService; +import org.cbioportal.service.exception.PatientNotFoundException; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.PatientFilter; +import org.cbioportal.web.parameter.PatientIdentifier; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.PatientSortBy; +import org.cbioportal.web.util.UniqueKeyExtractor; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; + +@PublicApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.PATIENTS, description = " ") +public class PatientController { + + @Autowired + private PatientService patientService; + + @Autowired + private UniqueKeyExtractor uniqueKeyExtractor; + + @RequestMapping(value = "/patients", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all patients") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Patient.class)))) + public ResponseEntity> getAllPatients( + @Parameter(description = "Search keyword that applies to ID of the patients") + @RequestParam(required = false) String keyword, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) PatientSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, patientService.getMetaPatients(keyword) + .getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + patientService.getAllPatients(keyword, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/patients", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all patients in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Patient.class)))) + public ResponseEntity> getAllPatientsInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) PatientSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, patientService.getMetaPatientsInStudy(studyId) + .getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + patientService.getAllPatientsInStudy(studyId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/patients/{patientId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get a patient in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Patient.class))) + public ResponseEntity getPatientInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(required = true, description = "Patient ID e.g. TCGA-OR-A5J2") + @PathVariable String patientId) throws PatientNotFoundException, StudyNotFoundException { + + return new ResponseEntity<>(patientService.getPatientInStudy(studyId, patientId), HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/patients/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Patient.class)))) + public ResponseEntity> fetchPatients( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedPatientFilter") PatientFilter interceptedPatientFilter, + @Parameter(required = true, description = "List of patient identifiers") + @Valid @RequestBody(required = false) PatientFilter patientFilter, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) { + + List studyIds = new ArrayList<>(); + List patientIds = new ArrayList<>(); + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + if (interceptedPatientFilter.getPatientIdentifiers() != null) { + extractStudyAndPatientIds(interceptedPatientFilter, studyIds, patientIds); + } else { + uniqueKeyExtractor.extractUniqueKeys(interceptedPatientFilter.getUniquePatientKeys(), studyIds, patientIds); + } + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, patientService.fetchMetaPatients(studyIds, patientIds) + .getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + if (interceptedPatientFilter.getPatientIdentifiers() != null) { + extractStudyAndPatientIds(interceptedPatientFilter, studyIds, patientIds); + } else { + uniqueKeyExtractor.extractUniqueKeys(interceptedPatientFilter.getUniquePatientKeys(), studyIds, patientIds); + } + //TODO: since we are already extracting the studyIds in the interceptor, we might not need to use the service here + return new ResponseEntity<>( + patientService.fetchPatients(studyIds, patientIds, projection.name()), HttpStatus.OK); + } + } + + private void extractStudyAndPatientIds(PatientFilter patientFilter, List studyIds, List patientIds) { + + for (PatientIdentifier patientIdentifier : patientFilter.getPatientIdentifiers()) { + studyIds.add(patientIdentifier.getStudyId()); + patientIds.add(patientIdentifier.getPatientId()); + } + } +} diff --git a/src/main/java/org/cbioportal/web/ReferenceGenomeGeneController.java b/src/main/java/org/cbioportal/web/ReferenceGenomeGeneController.java new file mode 100644 index 00000000000..5273ba1a165 --- /dev/null +++ b/src/main/java/org/cbioportal/web/ReferenceGenomeGeneController.java @@ -0,0 +1,111 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.ReferenceGenomeGene; +import org.cbioportal.service.GeneMemoizerService; +import org.cbioportal.service.ReferenceGenomeGeneService; +import org.cbioportal.service.exception.GeneNotFoundException; +import org.cbioportal.web.config.InternalApiTags; +import org.cbioportal.web.config.annotation.InternalApi; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; +import java.util.stream.Collectors; + +@InternalApi +@RestController +@Validated +@Tag(name = InternalApiTags.REFERENCE_GENOME_GENES, description = " ") +public class ReferenceGenomeGeneController { + private static final int GENE_MAX_PAGE_SIZE = 100000; + private static final String GENE_DEFAULT_PAGE_SIZE = "100000"; + + @Autowired + private ReferenceGenomeGeneService referenceGenomeGeneService; + + @Autowired + private GeneMemoizerService geneMemoizerService; + + /** + * The memoization logic in this method is a temporary fix to make this work until + * Ehcache is working correctly on cbioportal.org. + * This endpoint creates a large response and seems to bloat the webserver's heap + * size, leading to poor performance and crashes. The caching seems to improve + * processor load, heap size and response time. + */ + @RequestMapping(value = "/api/reference-genome-genes/{genomeName}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all reference genes") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ReferenceGenomeGene.class)))) + public ResponseEntity> getAllReferenceGenomeGenes( + @Parameter(required = true, description = "Name of Reference Genome hg19") + @PathVariable String genomeName) { + + List genes = geneMemoizerService.fetchGenes(genomeName); + if (genes == null) { + genes = referenceGenomeGeneService.fetchAllReferenceGenomeGenes(genomeName); + geneMemoizerService.cacheGenes(genes, genomeName); + } + return new ResponseEntity<>(genes, HttpStatus.OK); + } + + @RequestMapping(value = "/api/reference-genome-genes/{genomeName}/{geneId}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get a gene of a reference genome of interest") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = ReferenceGenomeGene.class))) + public ResponseEntity getReferenceGenomeGene( + @Parameter(required = true, description = "Name of Reference Genome hg19") + @PathVariable String genomeName, + @Parameter(required = true, description = "Entrez Gene ID 207") + @PathVariable Integer geneId) throws GeneNotFoundException { + + return new ResponseEntity<>(referenceGenomeGeneService.getReferenceGenomeGene(geneId, genomeName), HttpStatus.OK); + } + + @RequestMapping(value = "/api/reference-genome-genes/{genomeName}/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch genes of reference genome of interest") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ReferenceGenomeGene.class)))) + public ResponseEntity> fetchReferenceGenomeGenes( + @Parameter(required = true, description = "Name of Reference Genome hg19") + @PathVariable String genomeName, + @Parameter(required = true, description = "List of Gene IDs") + @Size(min = 1, max = GENE_MAX_PAGE_SIZE) + @RequestBody List geneIds) { + + if (isInteger(geneIds.get(0))) { + List newIds = geneIds.stream().map(s -> Integer.parseInt(s)).collect(Collectors.toList()); + return new ResponseEntity<>(referenceGenomeGeneService.fetchGenesByGenomeName(newIds, genomeName), HttpStatus.OK); + } else { + return new ResponseEntity<>(referenceGenomeGeneService.fetchGenesByHugoGeneSymbolsAndGenomeName( + geneIds, genomeName), HttpStatus.OK); + } + } + + private boolean isInteger(String s) { + try { + Integer.parseInt(s); + } catch(NumberFormatException | NullPointerException e) { + return false; + } + return true; + } +} + diff --git a/src/main/java/org/cbioportal/web/ResourceDataController.java b/src/main/java/org/cbioportal/web/ResourceDataController.java new file mode 100644 index 00000000000..4b5e1e43502 --- /dev/null +++ b/src/main/java/org/cbioportal/web/ResourceDataController.java @@ -0,0 +1,160 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.ResourceData; +import org.cbioportal.service.ResourceDataService; +import org.cbioportal.service.exception.PatientNotFoundException; +import org.cbioportal.service.exception.SampleNotFoundException; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.InternalApiTags; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.ResourceDataSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = InternalApiTags.RESOURCE_DATA, description = " ") +public class ResourceDataController { + + public static final int RESOURCE_DATA_MAX_PAGE_SIZE = 10000000; + private static final String RESOURCE_DATA_DEFAULT_PAGE_SIZE = "10000000"; + + @Autowired + private ResourceDataService resourceDataService; + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/samples/{sampleId}/resource-data", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all resource data of a sample in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ResourceData.class)))) + public ResponseEntity> getAllResourceDataOfSampleInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(required = true, description = "Sample ID e.g. TCGA-OR-A5J2-01") + @PathVariable String sampleId, + @Parameter(description = "Resource ID") + @RequestParam(required = false) String resourceId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(RESOURCE_DATA_MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = RESOURCE_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ResourceDataSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws SampleNotFoundException, + StudyNotFoundException { + + if (projection == Projection.META) { + throw new UnsupportedOperationException("Requested API is not implemented yet"); + } else { + return new ResponseEntity<>( + resourceDataService.getAllResourceDataOfSampleInStudy( + studyId, sampleId, resourceId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/patients/{patientId}/resource-data", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all resource data of a patient in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ResourceData.class)))) + public ResponseEntity> getAllResourceDataOfPatientInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(required = true, description = "Patient ID e.g. TCGA-OR-A5J2") + @PathVariable String patientId, + @Parameter(description = "Resource ID") + @RequestParam(required = false) String resourceId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(RESOURCE_DATA_MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = RESOURCE_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ResourceDataSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws PatientNotFoundException, + StudyNotFoundException { + + if (projection == Projection.META) { + throw new UnsupportedOperationException("Requested API is not implemented yet"); + } else { + return new ResponseEntity<>( + resourceDataService.getAllResourceDataOfPatientInStudy( + studyId, patientId, resourceId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/resource-data", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all resource data for a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ResourceData.class)))) + public ResponseEntity> getAllStudyResourceDataInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Resource ID") + @RequestParam(required = false) String resourceId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(RESOURCE_DATA_MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = RESOURCE_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ResourceDataSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + throw new UnsupportedOperationException("Requested API is not implemented yet"); + } else { + return new ResponseEntity<>( + resourceDataService.getAllResourceDataForStudy(studyId, resourceId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + +} diff --git a/src/main/java/org/cbioportal/web/ResourceDefinitionController.java b/src/main/java/org/cbioportal/web/ResourceDefinitionController.java new file mode 100644 index 00000000000..4f4658166c8 --- /dev/null +++ b/src/main/java/org/cbioportal/web/ResourceDefinitionController.java @@ -0,0 +1,114 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.ResourceDefinition; +import org.cbioportal.service.ResourceDefinitionService; +import org.cbioportal.service.exception.ResourceDefinitionNotFoundException; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.InternalApiTags; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.ResourceDefinitionSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = InternalApiTags.RESOURCE_DEFINITIONS, description = " ") +public class ResourceDefinitionController { + + @Autowired + private ResourceDefinitionService resourceDefinitionService; + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/resource-definitions", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all resource definitions in the specified study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ResourceDefinition.class)))) + public ResponseEntity> getAllResourceDefinitionsInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) ResourceDefinitionSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + throw new UnsupportedOperationException("Requested API is not implemented yet"); + } else { + return new ResponseEntity<>( + resourceDefinitionService.getAllResourceDefinitionsInStudy(studyId, projection.name(), pageSize, + pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), + HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/resource-definitions/{resourceId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get specified resource definition") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = ResourceDefinition.class))) + public ResponseEntity getResourceDefinitionInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(required = true, description= "Resource ID") + @PathVariable String resourceId) + throws StudyNotFoundException, ResourceDefinitionNotFoundException { + + return new ResponseEntity<>(resourceDefinitionService.getResourceDefinition(studyId, resourceId), + HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#studyIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/resource-definitions/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all resource definitions for specified studies") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ResourceDefinition.class)))) + public ResponseEntity> fetchResourceDefinitions( + @Parameter(required = true, description = "List of Study IDs") + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + @RequestBody List studyIds, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) throws StudyNotFoundException { + + return new ResponseEntity<>(resourceDefinitionService.fetchResourceDefinitions(studyIds, projection.name()), + HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/SampleController.java b/src/main/java/org/cbioportal/web/SampleController.java new file mode 100644 index 00000000000..74fc6ad34b7 --- /dev/null +++ b/src/main/java/org/cbioportal/web/SampleController.java @@ -0,0 +1,315 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.CancerStudy; +import org.cbioportal.model.Sample; +import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.service.SampleListService; +import org.cbioportal.service.SampleService; +import org.cbioportal.service.StudyService; +import org.cbioportal.service.exception.PatientNotFoundException; +import org.cbioportal.service.exception.SampleListNotFoundException; +import org.cbioportal.service.exception.SampleNotFoundException; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.utils.security.AccessLevel; +import org.cbioportal.utils.security.PortalSecurityConfig; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.SampleFilter; +import org.cbioportal.web.parameter.SampleIdentifier; +import org.cbioportal.web.parameter.sort.SampleSortBy; +import org.cbioportal.web.util.UniqueKeyExtractor; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; +import java.util.stream.Collectors; + +@PublicApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.SAMPLES, description = " ") +public class SampleController { + + public static final int SAMPLE_MAX_PAGE_SIZE = 10000000; + private static final String SAMPLE_DEFAULT_PAGE_SIZE = "10000000"; + + @Value("${authenticate}") + private String authenticate; + + @Autowired + private SampleService sampleService; + + @Autowired + private SampleListService sampleListService; + + @Autowired + private StudyService studyService; + + @Autowired + private UniqueKeyExtractor uniqueKeyExtractor; + + private boolean usingAuth() { + return !authenticate.isEmpty() + && !authenticate.equals("false") + && !authenticate.contains("optional_oauth2"); + } + + @RequestMapping(value = "/samples", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all samples matching keyword") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Sample.class)))) + public ResponseEntity> getSamplesByKeyword( + @Parameter(description = "Search keyword that applies to the study ID") + @RequestParam(required = false) String keyword, + + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) SampleSortBy sortBy, + + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction + ) { + String sort = sortBy == null ? null : sortBy.getOriginalValue(); + List studyIds = null; + if (PortalSecurityConfig.userAuthorizationEnabled(authenticate)) { + /* + If using auth, filter the list of samples returned using the list of study ids the + user has access to. If the user has access to no studies, the endpoint should not 403, + but instead return an empty list. + */ + studyIds = studyService + .getAllStudies( + null, + Projection.SUMMARY.name(), // force to summary so that post filter doesn't NPE + PagingConstants.MAX_PAGE_SIZE, + 0, + null, + direction.name(), + null, + AccessLevel.READ + ) + .stream() + .map(CancerStudy::getCancerStudyIdentifier) + .collect(Collectors.toList()); + } + + if (projection == Projection.META) { + HttpHeaders httpHeaders = new HttpHeaders(); + httpHeaders.add( + HeaderKeyConstants.TOTAL_COUNT, + sampleService.getMetaSamples(keyword, studyIds).getTotalCount().toString()); + return new ResponseEntity<>(httpHeaders, HttpStatus.OK); + } + return new ResponseEntity<>( + sampleService.getAllSamples(keyword, studyIds, projection.name(), pageSize, pageNumber, sort, direction.name()), + HttpStatus.OK + ); + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/samples", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all samples in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Sample.class)))) + public ResponseEntity> getAllSamplesInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(SAMPLE_MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = SAMPLE_DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) SampleSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, sampleService.getMetaSamplesInStudy(studyId) + .getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + sampleService.getAllSamplesInStudy(studyId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/samples/{sampleId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get a sample in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Sample.class))) + public ResponseEntity getSampleInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(required = true, description = "Sample ID e.g. TCGA-OR-A5J2-01") + @PathVariable String sampleId) throws SampleNotFoundException, StudyNotFoundException { + + return new ResponseEntity<>(sampleService.getSampleInStudy(studyId, sampleId), HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/patients/{patientId}/samples", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all samples of a patient in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Sample.class)))) + public ResponseEntity> getAllSamplesOfPatientInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(required = true, description = "Patient ID e.g. TCGA-OR-A5J2") + @PathVariable String patientId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(SAMPLE_MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = SAMPLE_DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) SampleSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws PatientNotFoundException, + StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, + sampleService.getMetaSamplesOfPatientInStudy(studyId, patientId).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + sampleService.getAllSamplesOfPatientInStudy(studyId, patientId, projection.name(), pageSize, + pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/samples/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch samples by ID") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Sample.class)))) + public ResponseEntity> fetchSamples( + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedSampleFilter") SampleFilter interceptedSampleFilter, + @Parameter(required = true, description = "List of sample identifiers") + @Valid @RequestBody(required = false) SampleFilter sampleFilter, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) throws SampleListNotFoundException { + + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + BaseMeta baseMeta; + + if (interceptedSampleFilter.getSampleListIds() != null) { + baseMeta = sampleService.fetchMetaSamples(interceptedSampleFilter.getSampleListIds()); + } else { + if (interceptedSampleFilter.getSampleIdentifiers() != null) { + extractStudyAndSampleIds(interceptedSampleFilter, studyIds, sampleIds); + } else { + uniqueKeyExtractor.extractUniqueKeys(interceptedSampleFilter.getUniqueSampleKeys(), studyIds, sampleIds); + } + baseMeta = sampleService.fetchMetaSamples(studyIds, sampleIds); + } + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, baseMeta.getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + List samples; + if (interceptedSampleFilter.getSampleListIds() != null) { + List sampleListIds = interceptedSampleFilter.getSampleListIds(); + + samples = new ArrayList(); + + for (String sampleListId : sampleListIds) { + // check that all sample lists exist (this method throws an exception if one does not) + sampleListService.getSampleList(sampleListId); + } + + for (String sampleListId : sampleListIds) { + // fetch by sampleId so that we get cache at level of id instead list of ids + samples.addAll( + sampleService.fetchSamples(Arrays.asList(sampleListId), projection.name()) + ); + } + + //samples = sampleService.fetchSamples(sampleListIds, projection.name()); + + } else { + if (interceptedSampleFilter.getSampleIdentifiers() != null) { + extractStudyAndSampleIds(interceptedSampleFilter, studyIds, sampleIds); + } else { + uniqueKeyExtractor.extractUniqueKeys(interceptedSampleFilter.getUniqueSampleKeys(), studyIds, sampleIds); + } + samples = sampleService.fetchSamples(studyIds, sampleIds, projection.name()); + } + + return new ResponseEntity<>(samples, HttpStatus.OK); + } + } + + private void extractStudyAndSampleIds(SampleFilter sampleFilter, List studyIds, List sampleIds) { + + for (SampleIdentifier sampleIdentifier : sampleFilter.getSampleIdentifiers()) { + studyIds.add(sampleIdentifier.getStudyId()); + sampleIds.add(sampleIdentifier.getSampleId()); + } + } +} diff --git a/src/main/java/org/cbioportal/web/SampleListController.java b/src/main/java/org/cbioportal/web/SampleListController.java new file mode 100644 index 00000000000..ce1e82eff1c --- /dev/null +++ b/src/main/java/org/cbioportal/web/SampleListController.java @@ -0,0 +1,158 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.SampleList; +import org.cbioportal.service.SampleListService; +import org.cbioportal.service.exception.SampleListNotFoundException; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.PublicApiTags; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.SampleListSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@PublicApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = PublicApiTags.SAMPLE_LISTS, description = " ") +public class SampleListController { + + @Autowired + private SampleListService sampleListService; + + @RequestMapping(value = "/sample-lists", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all sample lists") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = SampleList.class)))) + public ResponseEntity> getAllSampleLists( + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) SampleListSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, sampleListService.getMetaSampleLists() + .getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + sampleListService.getAllSampleLists(projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#sampleListId, 'SampleListId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/sample-lists/{sampleListId}", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get sample list") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = SampleList.class))) + public ResponseEntity getSampleList( + @Parameter(required = true, description = "Sample List ID e.g. acc_tcga_all") + @PathVariable String sampleListId) throws SampleListNotFoundException { + + return new ResponseEntity<>(sampleListService.getSampleList(sampleListId), HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/sample-lists", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all sample lists in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = SampleList.class)))) + public ResponseEntity> getAllSampleListsInStudy( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) SampleListSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, sampleListService + .getMetaSampleListsInStudy(studyId).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + sampleListService.getAllSampleListsInStudy(studyId, projection.name(), pageSize, pageNumber, + sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } + + @PreAuthorize("hasPermission(#sampleListId, 'SampleListId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/sample-lists/{sampleListId}/sample-ids", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all sample IDs in a sample list") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = String.class)))) + public ResponseEntity> getAllSampleIdsInSampleList( + @Parameter(required = true, description = "Sample List ID e.g. acc_tcga_all") + @PathVariable String sampleListId) throws SampleListNotFoundException { + + return new ResponseEntity<>(sampleListService.getAllSampleIdsInSampleList(sampleListId), HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#sampleListIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/sample-lists/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch sample lists by ID") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = SampleList.class)))) + public ResponseEntity> fetchSampleLists( + @Parameter(required = true, description = "List of sample list IDs") + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + @RequestBody List sampleListIds, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection) { + + return new ResponseEntity<>(sampleListService.fetchSampleLists(sampleListIds, projection.name()), HttpStatus.OK); + } +} diff --git a/src/main/java/org/cbioportal/web/ServerStatusController.java b/src/main/java/org/cbioportal/web/ServerStatusController.java new file mode 100644 index 00000000000..4aa7963a63b --- /dev/null +++ b/src/main/java/org/cbioportal/web/ServerStatusController.java @@ -0,0 +1,38 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import org.cbioportal.service.ServerStatusService; +import org.cbioportal.service.impl.ServerStatusServiceImpl.ServerStatusMessage; +import org.cbioportal.web.config.annotation.PublicApi; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + + +@PublicApi +@RestController +@Validated +@Tag(name = "Server running status", description = "This end point does not require authentication") +public class ServerStatusController { + + @Autowired + private ServerStatusService serverStatusService; + + @RequestMapping(value = "/api/health", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get the running status of the server") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = ServerStatusMessage.class))) + public ResponseEntity getServerStatus() { + return new ResponseEntity<>(serverStatusService.getServerStatus(), HttpStatus.OK); + } + +} diff --git a/web/src/main/java/org/cbioportal/web/SessionServiceController.java b/src/main/java/org/cbioportal/web/SessionServiceController.java similarity index 81% rename from web/src/main/java/org/cbioportal/web/SessionServiceController.java rename to src/main/java/org/cbioportal/web/SessionServiceController.java index 576f44a9c6d..689dc971afe 100644 --- a/web/src/main/java/org/cbioportal/web/SessionServiceController.java +++ b/src/main/java/org/cbioportal/web/SessionServiceController.java @@ -1,32 +1,48 @@ package org.cbioportal.web; -import java.io.IOException; -import java.util.*; -import java.util.regex.Pattern; - -import javax.servlet.http.HttpServletResponse; -import javax.validation.constraints.Size; - +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.DeserializationFeature; +import com.fasterxml.jackson.databind.ObjectMapper; import com.google.common.collect.ImmutableMap; +import com.mongodb.BasicDBObject; +import com.mongodb.QueryOperators; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.validation.constraints.Size; import org.cbioportal.service.util.CustomAttributeWithData; import org.cbioportal.service.util.CustomDataSession; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.cbioportal.web.parameter.*; import org.cbioportal.service.util.SessionServiceRequestHandler; -import org.cbioportal.session_service.domain.Session; -import org.cbioportal.session_service.domain.SessionType; +import org.cbioportal.utils.removeme.Session; +import org.cbioportal.web.parameter.CustomGeneList; +import org.cbioportal.web.parameter.CustomGeneListData; +import org.cbioportal.web.parameter.PageSettings; +import org.cbioportal.web.parameter.PageSettingsData; +import org.cbioportal.web.parameter.PageSettingsIdentifier; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.ResultsPageSettings; +import org.cbioportal.web.parameter.SessionPage; +import org.cbioportal.web.parameter.StudyPageSettings; +import org.cbioportal.web.parameter.VirtualStudy; +import org.cbioportal.web.parameter.VirtualStudyData; import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; import org.json.simple.parser.ParseException; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.core.ParameterizedTypeReference; -import org.springframework.http.*; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpMethod; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; import org.springframework.security.authentication.AnonymousAuthenticationToken; import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContextHolder; -import org.springframework.security.core.userdetails.UserDetails; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; @@ -34,15 +50,17 @@ import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.client.RestTemplate; -import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.DeserializationFeature; -import com.fasterxml.jackson.databind.ObjectMapper; -import com.mongodb.BasicDBObject; -import com.mongodb.QueryOperators; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import java.util.Optional; +import java.util.Set; +import java.util.regex.Pattern; @Controller -@RequestMapping("/session") +@RequestMapping("/api/session") public class SessionServiceController { private static final Logger LOG = LoggerFactory.getLogger(SessionServiceController.class); @@ -62,18 +80,15 @@ public class SessionServiceController { ); private boolean isAuthorized() { - Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); return !(authentication == null || (authentication instanceof AnonymousAuthenticationToken)); } private String userName() { - - return ((UserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal()).getUsername(); + return SecurityContextHolder.getContext().getAuthentication().getName(); } private boolean sameOrigin(Set set1, Set set2) { - if (set1 == null || set2 == null) { return false; } @@ -90,7 +105,7 @@ private PageSettings getRecentlyUpdatePageSettings(String query) { HttpEntity httpEntity = new HttpEntity(query, sessionServiceRequestHandler.getHttpHeaders()); ResponseEntity> responseEntity = restTemplate.exchange( - sessionServiceURL + SessionType.settings + "/query/fetch", + sessionServiceURL + Session.SessionType.settings + "/query/fetch", HttpMethod.POST, httpEntity, new ParameterizedTypeReference>() {}); @@ -105,27 +120,27 @@ private PageSettings getRecentlyUpdatePageSettings(String query) { } private ResponseEntity addSession( - SessionType type, + Session.SessionType type, Optional operation, JSONObject body ) { try { HttpEntity httpEntity; - if (type.equals(SessionType.virtual_study) || type.equals(SessionType.group)) { + if (type.equals(Session.SessionType.virtual_study) || type.equals(Session.SessionType.group)) { // JSON from file to Object VirtualStudyData virtualStudyData = sessionServiceObjectMapper.readValue(body.toString(), VirtualStudyData.class); if (isAuthorized()) { virtualStudyData.setOwner(userName()); if ((operation.isPresent() && operation.get().equals(SessionOperation.save)) - || type.equals(SessionType.group)) { + || type.equals(Session.SessionType.group)) { virtualStudyData.setUsers(Collections.singleton(userName())); } } // use basic authentication for session service if set httpEntity = new HttpEntity<>(virtualStudyData, sessionServiceRequestHandler.getHttpHeaders()); - } else if (type.equals(SessionType.settings)) { + } else if (type.equals(Session.SessionType.settings)) { if (!(isAuthorized())) { return new ResponseEntity<>(HttpStatus.SERVICE_UNAVAILABLE); } @@ -139,7 +154,7 @@ private ResponseEntity addSession( pageSettings.setOwner(userName()); httpEntity = new HttpEntity<>(pageSettings, sessionServiceRequestHandler.getHttpHeaders()); - } else if(type.equals(SessionType.custom_data)) { + } else if(type.equals(Session.SessionType.custom_data)) { // JSON from file to Object CustomAttributeWithData customData = sessionServiceObjectMapper.readValue(body.toString(), CustomAttributeWithData.class); @@ -150,7 +165,7 @@ private ResponseEntity addSession( // use basic authentication for session service if set httpEntity = new HttpEntity<>(customData, sessionServiceRequestHandler.getHttpHeaders()); - } else if (type.equals(SessionType.custom_gene_list)) { + } else if (type.equals(Session.SessionType.custom_gene_list)) { if (!(isAuthorized())) { return new ResponseEntity<>(HttpStatus.SERVICE_UNAVAILABLE); } @@ -177,7 +192,9 @@ private ResponseEntity addSession( } @RequestMapping(value = "/{type}/{id}", method = RequestMethod.GET) - public ResponseEntity getSession(@PathVariable SessionType type, @PathVariable String id) { + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Session.class))) + public ResponseEntity getSession(@PathVariable Session.SessionType type, @PathVariable String id) { try { String sessionDataJson = sessionServiceRequestHandler.getSessionDataJson(type, id); @@ -206,6 +223,8 @@ public ResponseEntity getSession(@PathVariable SessionType type, @PathV } @RequestMapping(value = "/virtual_study", method = RequestMethod.GET) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = VirtualStudy.class)))) public ResponseEntity> getUserStudies() throws JsonProcessingException { if (sessionServiceRequestHandler.isSessionServiceEnabled() && isAuthorized()) { @@ -219,7 +238,7 @@ public ResponseEntity> getUserStudies() throws JsonProcessing HttpEntity httpEntity = new HttpEntity<>(basicDBObject.toString(), sessionServiceRequestHandler.getHttpHeaders()); ResponseEntity> responseEntity = restTemplate.exchange( - sessionServiceURL + SessionType.virtual_study + "/query/fetch", + sessionServiceURL + Session.SessionType.virtual_study + "/query/fetch", HttpMethod.POST, httpEntity, new ParameterizedTypeReference>() {}); @@ -234,25 +253,29 @@ public ResponseEntity> getUserStudies() throws JsonProcessing } @RequestMapping(value = "/{type}", method = RequestMethod.POST) - public ResponseEntity addSession(@PathVariable SessionType type, @RequestBody JSONObject body) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Session.class))) + public ResponseEntity addSession(@PathVariable Session.SessionType type, @RequestBody JSONObject body) throws IOException { return addSession(type, Optional.empty(), body); } @RequestMapping(value = "/virtual_study/save", method = RequestMethod.POST) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Session.class))) public ResponseEntity addUserSavedVirtualStudy(@RequestBody JSONObject body) throws IOException { - return addSession(SessionType.virtual_study, Optional.of(SessionOperation.save), body); + return addSession(Session.SessionType.virtual_study, Optional.of(SessionOperation.save), body); } @RequestMapping(value = "/{type:virtual_study|group|custom_data|custom_gene_list}/{operation}/{id}", method = RequestMethod.GET) - public void updateUsersInSession(@PathVariable SessionType type, @PathVariable String id, - @PathVariable Operation operation, HttpServletResponse response) throws IOException { + public void updateUsersInSession(@PathVariable Session.SessionType type, @PathVariable String id, + @PathVariable Operation operation, HttpServletResponse response) throws IOException { if (sessionServiceRequestHandler.isSessionServiceEnabled() && isAuthorized()) { HttpEntity httpEntity; - if (type.equals(SessionType.custom_data)) { + if (type.equals(Session.SessionType.custom_data)) { String virtualStudyStr = sessionServiceObjectMapper.writeValueAsString(getSession(type, id).getBody()); CustomDataSession customDataSession = sessionServiceObjectMapper.readValue(virtualStudyStr, CustomDataSession.class); CustomAttributeWithData customAttributeWithData = customDataSession.getData(); @@ -260,7 +283,7 @@ public void updateUsersInSession(@PathVariable SessionType type, @PathVariable S updateUserList(operation, users); customAttributeWithData.setUsers(users); httpEntity = new HttpEntity<>(customAttributeWithData, sessionServiceRequestHandler.getHttpHeaders()); - } else if (type.equals(SessionType.custom_gene_list)) { + } else if (type.equals(Session.SessionType.custom_gene_list)) { String customGeneListStr = sessionServiceObjectMapper.writeValueAsString(getSession(type, id).getBody()); CustomGeneList customGeneList = sessionServiceObjectMapper.readValue(customGeneListStr, CustomGeneList.class); CustomGeneListData customGeneListData = customGeneList.getData(); @@ -302,6 +325,8 @@ private void updateUserList(Operation operation, Set users) { } @RequestMapping(value = "/groups/fetch", method = RequestMethod.POST) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = VirtualStudy.class)))) public ResponseEntity> fetchUserGroups( @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) @RequestBody List studyIds) throws IOException { @@ -323,7 +348,7 @@ public ResponseEntity> fetchUserGroups( HttpEntity httpEntity = new HttpEntity<>(queryDBObject.toString(), sessionServiceRequestHandler.getHttpHeaders()); ResponseEntity> responseEntity = restTemplate.exchange( - sessionServiceURL + SessionType.group + "/query/fetch", + sessionServiceURL + Session.SessionType.group + "/query/fetch", HttpMethod.POST, httpEntity, new ParameterizedTypeReference>() {}); @@ -345,7 +370,7 @@ public void updateUserPageSettings(@RequestBody PageSettingsData settingsData, H List basicDBObjects = new ArrayList<>(); basicDBObjects - .add(new BasicDBObject("data.owner", Pattern.compile(userName(), Pattern.CASE_INSENSITIVE))); + .add(new BasicDBObject("data.owner", Pattern.compile(userName(), Pattern.CASE_INSENSITIVE))); basicDBObjects.add(new BasicDBObject("data.origin", new BasicDBObject(QueryOperators.ALL, settingsData.getOrigin()))); basicDBObjects.add(new BasicDBObject("data.origin", @@ -360,7 +385,7 @@ public void updateUserPageSettings(@RequestBody PageSettingsData settingsData, H JSONObject jsonObject = (JSONObject) parser.parse(objectMapper.writeValueAsString(settingsData)); if (pageSettings == null) { - addSession(SessionType.settings, Optional.empty(), jsonObject); + addSession(Session.SessionType.settings, Optional.empty(), jsonObject); } else { updatedPageSettingSession(pageSettings, settingsData, response); } @@ -394,8 +419,9 @@ private void updatedPageSettingSession( RestTemplate restTemplate = new RestTemplate(); HttpEntity httpEntity = new HttpEntity<>(body, sessionServiceRequestHandler.getHttpHeaders()); - - restTemplate.put(sessionServiceURL + pageSettings.getType() + "/" + pageSettings.getId(), httpEntity); + + Session.SessionType type = pageSettings.getType() == null ? Session.SessionType.settings : pageSettings.getType(); + restTemplate.put(sessionServiceURL + type + "/" + pageSettings.getId(), httpEntity); response.setStatus(HttpStatus.OK.value()); } else { response.setStatus(HttpStatus.UNAUTHORIZED.value()); @@ -406,6 +432,8 @@ private void updatedPageSettingSession( } @RequestMapping(value = "/settings/fetch", method = RequestMethod.POST) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = PageSettingsData.class))) public ResponseEntity getPageSettings(@RequestBody PageSettingsIdentifier pageSettingsIdentifier) { try { @@ -413,7 +441,7 @@ public ResponseEntity getPageSettings(@RequestBody PageSetting List basicDBObjects = new ArrayList<>(); basicDBObjects - .add(new BasicDBObject("data.owner", Pattern.compile(userName(), Pattern.CASE_INSENSITIVE))); + .add(new BasicDBObject("data.owner", Pattern.compile(userName(), Pattern.CASE_INSENSITIVE))); basicDBObjects.add(new BasicDBObject("data.origin", new BasicDBObject(QueryOperators.ALL, pageSettingsIdentifier.getOrigin()))); basicDBObjects.add(new BasicDBObject("data.origin", @@ -434,6 +462,8 @@ public ResponseEntity getPageSettings(@RequestBody PageSetting } @RequestMapping(value = "/custom_data/fetch", method = RequestMethod.POST) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CustomDataSession.class)))) public ResponseEntity> fetchCustomProperties( @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) @RequestBody List studyIds) throws IOException { @@ -452,7 +482,7 @@ public ResponseEntity> fetchCustomProperties( sessionServiceRequestHandler.getHttpHeaders()); ResponseEntity> responseEntity = restTemplate.exchange( - sessionServiceURL + SessionType.custom_data + "/query/fetch", + sessionServiceURL + Session.SessionType.custom_data + "/query/fetch", HttpMethod.POST, httpEntity, new ParameterizedTypeReference>() {}); @@ -464,11 +494,15 @@ public ResponseEntity> fetchCustomProperties( } @RequestMapping(value = "/custom_gene_list/save", method = RequestMethod.POST) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Session.class))) public ResponseEntity addUserSavedCustomGeneList(@RequestBody JSONObject body) throws IOException { - return addSession(SessionType.custom_gene_list, Optional.of(SessionOperation.save), body); + return addSession(Session.SessionType.custom_gene_list, Optional.of(SessionOperation.save), body); } @RequestMapping(value = "/custom_gene_list", method = RequestMethod.GET) + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CustomGeneList.class)))) public ResponseEntity> fetchCustomGeneList() throws IOException { if (sessionServiceRequestHandler.isSessionServiceEnabled() && isAuthorized()) { @@ -481,7 +515,7 @@ public ResponseEntity> fetchCustomGeneList() throws IOExcep HttpEntity httpEntity = new HttpEntity<>(basicDBObject.toString(), sessionServiceRequestHandler.getHttpHeaders()); ResponseEntity> responseEntity = restTemplate.exchange( - sessionServiceURL + SessionType.custom_gene_list + "/query/fetch", + sessionServiceURL + Session.SessionType.custom_gene_list + "/query/fetch", HttpMethod.POST, httpEntity, new ParameterizedTypeReference>() {}); diff --git a/src/main/java/org/cbioportal/web/SignificantCopyNumberRegionController.java b/src/main/java/org/cbioportal/web/SignificantCopyNumberRegionController.java new file mode 100644 index 00000000000..48c4919003a --- /dev/null +++ b/src/main/java/org/cbioportal/web/SignificantCopyNumberRegionController.java @@ -0,0 +1,81 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.Gistic; +import org.cbioportal.service.SignificantCopyNumberRegionService; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.SignificantCopyNumberRegionSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Significant Copy Number Regions", description = " ") +public class SignificantCopyNumberRegionController { + + @Autowired + private SignificantCopyNumberRegionService significantCopyNumberRegionService; + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/significant-copy-number-regions", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get significant copy number alteration regions in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Gistic.class)))) + public ResponseEntity> getSignificantCopyNumberRegions( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) SignificantCopyNumberRegionSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, + significantCopyNumberRegionService.getMetaSignificantCopyNumberRegions(studyId).getTotalCount() + .toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + significantCopyNumberRegionService.getSignificantCopyNumberRegions(studyId, projection.name(), pageSize, + pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } +} diff --git a/src/main/java/org/cbioportal/web/SignificantlyMutatedGenesController.java b/src/main/java/org/cbioportal/web/SignificantlyMutatedGenesController.java new file mode 100644 index 00000000000..3a661feeae2 --- /dev/null +++ b/src/main/java/org/cbioportal/web/SignificantlyMutatedGenesController.java @@ -0,0 +1,80 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.cbioportal.model.MutSig; +import org.cbioportal.service.SignificantlyMutatedGeneService; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.sort.SignificantlyMutatedGeneSortBy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Significantly Mutated Genes", description = " ") +public class SignificantlyMutatedGenesController { + + @Autowired + private SignificantlyMutatedGeneService significantlyMutatedGeneService; + + @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/studies/{studyId}/significantly-mutated-genes", method = RequestMethod.GET, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get significantly mutated genes in a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = MutSig.class)))) + public ResponseEntity> getSignificantlyMutatedGenes( + @Parameter(required = true, description = "Study ID e.g. acc_tcga") + @PathVariable String studyId, + @Parameter(description = "Level of detail of the response") + @RequestParam(defaultValue = "SUMMARY") Projection projection, + @Parameter(description = "Page size of the result list") + @Max(PagingConstants.MAX_PAGE_SIZE) + @Min(PagingConstants.MIN_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, + @Parameter(description = "Name of the property that the result list is sorted by") + @RequestParam(required = false) SignificantlyMutatedGeneSortBy sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { + + if (projection == Projection.META) { + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, + significantlyMutatedGeneService.getMetaSignificantlyMutatedGenes(studyId).getTotalCount().toString()); + return new ResponseEntity<>(responseHeaders, HttpStatus.OK); + } else { + return new ResponseEntity<>( + significantlyMutatedGeneService.getSignificantlyMutatedGenes(studyId, projection.name(), pageSize, + pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); + } + } +} diff --git a/src/main/java/org/cbioportal/web/StaticDataTimestampController.java b/src/main/java/org/cbioportal/web/StaticDataTimestampController.java new file mode 100644 index 00000000000..39f3d5da978 --- /dev/null +++ b/src/main/java/org/cbioportal/web/StaticDataTimestampController.java @@ -0,0 +1,40 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import org.cbioportal.service.StaticDataTimestampService; +import org.cbioportal.web.config.annotation.InternalApi; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.Arrays; +import java.util.List; +import java.util.Map; + +@InternalApi +@RestController +@Validated +@Tag(name = "Timestamps", description = " ") +public class StaticDataTimestampController { + public static final List TIMESTAMP_TABLES = Arrays.asList("gene", "reference_genome_gene"); + @Autowired + private StaticDataTimestampService service; + + @RequestMapping(value = "/api/timestamps", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get the last time each static resource was updated") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Object.class))) + public ResponseEntity> getAllTimestamps() { + return new ResponseEntity<>(service.getTimestamps(TIMESTAMP_TABLES), HttpStatus.OK); + } + +} diff --git a/web/src/main/java/org/cbioportal/web/StructuralVariantController.java b/src/main/java/org/cbioportal/web/StructuralVariantController.java similarity index 75% rename from web/src/main/java/org/cbioportal/web/StructuralVariantController.java rename to src/main/java/org/cbioportal/web/StructuralVariantController.java index b7b4af4d267..69e03bf3303 100644 --- a/web/src/main/java/org/cbioportal/web/StructuralVariantController.java +++ b/src/main/java/org/cbioportal/web/StructuralVariantController.java @@ -23,37 +23,40 @@ package org.cbioportal.web; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; import org.cbioportal.model.StructuralVariant; import org.cbioportal.service.StructuralVariantService; -import org.cbioportal.web.parameter.StructuralVariantFilter; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; - import org.cbioportal.web.config.InternalApiTags; import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.StructuralVariantFilter; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.util.Assert; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; -import org.springframework.web.bind.annotation.RequestBody; -import springfox.documentation.annotations.ApiIgnore; -import javax.validation.Valid; -import java.util.*; +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; @InternalApi -@RestController +@RestController() +@RequestMapping("/api") @Validated -@Api(tags = InternalApiTags.STRUCTURAL_VARIANTS, description = " ") +@Tag(name = InternalApiTags.STRUCTURAL_VARIANTS, description = " ") public class StructuralVariantController { @Autowired private StructuralVariantService structuralVariantService; @@ -61,13 +64,15 @@ public class StructuralVariantController { @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/structural-variant/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch structural variants for entrezGeneIds and molecularProfileIds or sampleMolecularIdentifiers") + @Operation(description = "Fetch structural variants for entrezGeneIds and molecularProfileIds or sampleMolecularIdentifiers") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = StructuralVariant.class)))) public ResponseEntity> fetchStructuralVariants( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface @Valid @RequestAttribute(required = false, value = "interceptedStructuralVariantFilter") StructuralVariantFilter interceptedStructuralVariantFilter, - @ApiParam(required = true, value = "List of entrezGeneIds, structural variant queries and molecularProfileIds or sampleMolecularIdentifiers") + @Parameter(required = true, description = "List of entrezGeneIds, structural variant queries and molecularProfileIds or sampleMolecularIdentifiers") @Valid @RequestBody(required = false) StructuralVariantFilter structuralVariantFilter) { List molecularProfileIds = new ArrayList<>(); diff --git a/web/src/main/java/org/cbioportal/web/StudyController.java b/src/main/java/org/cbioportal/web/StudyController.java similarity index 76% rename from web/src/main/java/org/cbioportal/web/StudyController.java rename to src/main/java/org/cbioportal/web/StudyController.java index faf514f645f..d3cf9bc9b39 100644 --- a/web/src/main/java/org/cbioportal/web/StudyController.java +++ b/src/main/java/org/cbioportal/web/StudyController.java @@ -1,8 +1,19 @@ package org.cbioportal.web; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; +import com.fasterxml.jackson.core.JsonParseException; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.annotation.PostConstruct; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import jakarta.validation.constraints.Size; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.CancerStudyTags; import org.cbioportal.service.StudyService; @@ -22,6 +33,7 @@ import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.validation.annotation.Validated; @@ -32,26 +44,16 @@ import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; -import com.fasterxml.jackson.core.JsonParseException; -import com.fasterxml.jackson.databind.JsonMappingException; -import com.fasterxml.jackson.databind.ObjectMapper; - -import org.springframework.security.access.prepost.PreAuthorize; - -import javax.annotation.PostConstruct; -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; - import java.io.IOException; import java.util.HashMap; import java.util.List; import java.util.Map; @PublicApi -@RestController +@RestController() +@RequestMapping("/api") @Validated -@Api(tags = PublicApiTags.STUDIES, description = " ") +@Tag(name = PublicApiTags.STUDIES, description = " ") public class StudyController { @Value("${app.name:unknown}") @@ -83,22 +85,24 @@ private void warmDefaultResponseCache() { } @RequestMapping(value = "/studies", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all studies") + @Operation(description = "Get all studies") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CancerStudy.class)))) public ResponseEntity> getAllStudies( - @ApiParam("Search keyword that applies to name and cancer type of the studies") + @Parameter(description = "Search keyword that applies to name and cancer type of the studies") @RequestParam(required = false) String keyword, - @ApiParam("Level of detail of the response") + @Parameter(description = "Level of detail of the response") @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") + @Parameter(description = "Page size of the result list") @Max(PagingConstants.MAX_PAGE_SIZE) @Min(PagingConstants.MIN_PAGE_SIZE) @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") + @Parameter(description = "Page number of the result list") @Min(PagingConstants.MIN_PAGE_NUMBER) @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") + @Parameter(description = "Name of the property that the result list is sorted by") @RequestParam(required = false) StudySortBy sortBy, - @ApiParam("Direction of the sort") + @Parameter(description = "Direction of the sort") @RequestParam(defaultValue = "ASC") Direction direction) { @@ -134,9 +138,11 @@ public ResponseEntity> getAllStudies( @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/studies/{studyId}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get a study") + @Operation(description = "Get a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content( schema = @Schema(implementation = CancerStudy.class))) public ResponseEntity getStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") + @Parameter(required = true, description = "Study ID e.g. acc_tcga") @PathVariable String studyId) throws StudyNotFoundException { return new ResponseEntity<>(studyService.getStudy(studyId), HttpStatus.OK); @@ -145,12 +151,14 @@ public ResponseEntity getStudy( @PreAuthorize("hasPermission(#studyIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/studies/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch studies by IDs") + @Operation(description = "Fetch studies by IDs") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CancerStudy.class)))) public ResponseEntity> fetchStudies( - @ApiParam(required = true, value = "List of Study IDs") + @Parameter(required = true, description = "List of Study IDs") @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) @RequestBody List studyIds, - @ApiParam("Level of detail of the response") + @Parameter(description = "Level of detail of the response") @RequestParam(defaultValue = "SUMMARY") Projection projection) { if (projection == Projection.META) { @@ -167,9 +175,11 @@ public ResponseEntity> fetchStudies( @RequestMapping(value = "/studies/{studyId}/tags", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get the tags of a study") + @Operation(description = "Get the tags of a study") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Object.class))) public ResponseEntity getTags( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") + @Parameter(required = true, description = "Study ID e.g. acc_tcga") @PathVariable String studyId) throws JsonParseException, JsonMappingException, IOException { @@ -186,9 +196,11 @@ public ResponseEntity getTags( @PreAuthorize("hasPermission(#studyIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/studies/tags/fetch", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get the study tags by IDs") + @Operation(description = "Get the study tags by IDs") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CancerStudyTags.class)))) public ResponseEntity> getTagsForMultipleStudies( - @ApiParam(required = true, value = "List of Study IDs") + @Parameter(required = true, description = "List of Study IDs") @RequestBody List studyIds ) { diff --git a/src/main/java/org/cbioportal/web/StudyViewController.java b/src/main/java/org/cbioportal/web/StudyViewController.java new file mode 100644 index 00000000000..6ff98aa3ba1 --- /dev/null +++ b/src/main/java/org/cbioportal/web/StudyViewController.java @@ -0,0 +1,1170 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import jakarta.validation.constraints.Max; +import jakarta.validation.constraints.Min; +import org.apache.commons.collections4.CollectionUtils; +import org.apache.commons.lang3.math.NumberUtils; +import org.apache.commons.lang3.tuple.ImmutablePair; +import org.apache.commons.math3.stat.correlation.PearsonsCorrelation; +import org.apache.commons.math3.stat.correlation.SpearmansCorrelation; +import org.apache.commons.math3.util.Pair; +import org.cbioportal.model.AlterationCountByGene; +import org.cbioportal.model.AlterationCountByStructuralVariant; +import org.cbioportal.model.AlterationFilter; +import org.cbioportal.model.CaseListDataCount; +import org.cbioportal.model.ClinicalAttribute; +import org.cbioportal.model.ClinicalData; +import org.cbioportal.model.ClinicalDataBin; +import org.cbioportal.model.ClinicalDataCollection; +import org.cbioportal.model.ClinicalDataCountItem; +import org.cbioportal.model.ClinicalEventTypeCount; +import org.cbioportal.model.ClinicalViolinPlotData; +import org.cbioportal.model.CopyNumberCountByGene; +import org.cbioportal.model.DensityPlotBin; +import org.cbioportal.model.DensityPlotData; +import org.cbioportal.model.GenericAssayDataBin; +import org.cbioportal.model.GenericAssayDataCountItem; +import org.cbioportal.model.GenomicDataBin; +import org.cbioportal.model.GenomicDataCount; +import org.cbioportal.model.GenomicDataCountItem; +import org.cbioportal.model.Patient; +import org.cbioportal.model.Sample; +import org.cbioportal.model.SampleList; +import org.cbioportal.service.ClinicalAttributeService; +import org.cbioportal.service.ClinicalDataService; +import org.cbioportal.service.ClinicalEventService; +import org.cbioportal.service.PatientService; +import org.cbioportal.service.SampleListService; +import org.cbioportal.service.SampleService; +import org.cbioportal.service.StudyViewService; +import org.cbioportal.service.ViolinPlotService; +import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.service.util.ClinicalAttributeUtil; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.ClinicalDataBinCountFilter; +import org.cbioportal.web.parameter.ClinicalDataBinFilter; +import org.cbioportal.web.parameter.ClinicalDataCountFilter; +import org.cbioportal.web.parameter.ClinicalDataFilter; +import org.cbioportal.web.parameter.ClinicalDataType; +import org.cbioportal.web.parameter.DataBinMethod; +import org.cbioportal.web.parameter.Direction; +import org.cbioportal.web.parameter.GenericAssayDataBinCountFilter; +import org.cbioportal.web.parameter.GenericAssayDataCountFilter; +import org.cbioportal.web.parameter.GenericAssayDataFilter; +import org.cbioportal.web.parameter.GenomicDataBinCountFilter; +import org.cbioportal.web.parameter.GenomicDataCountFilter; +import org.cbioportal.web.parameter.GenomicDataFilter; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.Projection; +import org.cbioportal.web.parameter.SampleIdentifier; +import org.cbioportal.web.parameter.StudyViewFilter; +import org.cbioportal.web.util.ClinicalDataBinUtil; +import org.cbioportal.web.util.ClinicalDataFetcher; +import org.cbioportal.web.util.StudyViewFilterApplier; +import org.cbioportal.web.util.StudyViewFilterUtil; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.cache.annotation.Cacheable; +import org.springframework.context.ApplicationContext; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import java.util.function.Function; +import java.util.stream.Collectors; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Study View", description = " ") +public class StudyViewController { + + public static final int CLINICAL_TAB_MAX_PAGE_SIZE = 1000000; + + @Autowired + private ApplicationContext applicationContext; + StudyViewController instance; + + @Autowired + private StudyViewFilterApplier studyViewFilterApplier; + @Autowired + private ClinicalDataService clinicalDataService; + @Autowired + private ClinicalDataFetcher clinicalDataFetcher; + @Autowired + private SampleService sampleService; + @Autowired + private PatientService patientService; + @Autowired + private StudyViewFilterUtil studyViewFilterUtil; + @Autowired + private ClinicalAttributeService clinicalAttributeService; + @Autowired + private ViolinPlotService violinPlotService; + @Autowired + private ClinicalAttributeUtil clinicalAttributeUtil; + @Autowired + private SampleListService sampleListService; + @Autowired + private StudyViewService studyViewService; + @Autowired + private ClinicalDataBinUtil clinicalDataBinUtil; + @Autowired + private ClinicalEventService clinicalEventService; + + private StudyViewController getInstance() { + if (Objects.isNull(instance)) { + instance = applicationContext.getBean(StudyViewController.class); + } + return instance; + } + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/clinical-data-counts/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch clinical data counts by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalDataCountItem.class)))) + public ResponseEntity> fetchClinicalDataCounts( + @Parameter(required = true, description = "Clinical data count filter") + @Valid @RequestBody(required = false) ClinicalDataCountFilter clinicalDataCountFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedClinicalDataCountFilter") ClinicalDataCountFilter interceptedClinicalDataCountFilter) { + + List attributes = interceptedClinicalDataCountFilter.getAttributes(); + StudyViewFilter studyViewFilter = interceptedClinicalDataCountFilter.getStudyViewFilter(); + + if (attributes.size() == 1) { + studyViewFilterUtil.removeSelfFromFilter(attributes.get(0).getAttributeId(), studyViewFilter); + } + boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(studyViewFilter); + List result = + this.getInstance().cachedClinicalDataCounts(interceptedClinicalDataCountFilter,singleStudyUnfiltered); + return new ResponseEntity<>(result, HttpStatus.OK); + + } + + @Cacheable( + cacheResolver = "staticRepositoryCacheOneResolver", + condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" + ) + public List cachedClinicalDataCounts( + ClinicalDataCountFilter interceptedClinicalDataCountFilter, boolean singleStudyUnfiltered + ) { + List attributes = interceptedClinicalDataCountFilter.getAttributes(); + StudyViewFilter studyViewFilter = interceptedClinicalDataCountFilter.getStudyViewFilter(); + if (attributes.size() == 1) { + studyViewFilterUtil.removeSelfFromFilter(attributes.get(0).getAttributeId(), studyViewFilter); + } + List filteredSampleIdentifiers = studyViewFilterApplier.apply(studyViewFilter); + + if (filteredSampleIdentifiers.isEmpty()) { + return new ArrayList<>(); + } + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, studyIds, sampleIds); + + List result = clinicalDataService.fetchClinicalDataCounts( + studyIds, sampleIds, attributes.stream().map(a -> a.getAttributeId()).collect(Collectors.toList())); + + return result; + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/clinical-data-bin-counts/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch clinical data bin counts by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalDataBin.class)))) + public ResponseEntity> fetchClinicalDataBinCounts( + @Parameter(description = "Method for data binning") + @RequestParam(defaultValue = "DYNAMIC") DataBinMethod dataBinMethod, + @Parameter(required = true, description = "Clinical data bin count filter") + @Valid @RequestBody(required = false) ClinicalDataBinCountFilter clinicalDataBinCountFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedClinicalDataBinCountFilter") ClinicalDataBinCountFilter interceptedClinicalDataBinCountFilter + ) { + StudyViewFilter studyViewFilter = clinicalDataBinUtil.removeSelfFromFilter(interceptedClinicalDataBinCountFilter); + boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(studyViewFilter); + List clinicalDataBins = + this.getInstance().cachableFetchClinicalDataBinCounts(dataBinMethod, interceptedClinicalDataBinCountFilter, singleStudyUnfiltered); + + return new ResponseEntity<>(clinicalDataBins, HttpStatus.OK); + } + + @Cacheable( + cacheResolver = "staticRepositoryCacheOneResolver", + condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" + ) + public List cachableFetchClinicalDataBinCounts( + DataBinMethod dataBinMethod, + ClinicalDataBinCountFilter interceptedClinicalDataBinCountFilter, + boolean singleStudyUnfiltered + ) { + return clinicalDataBinUtil.fetchClinicalDataBinCounts( + dataBinMethod, + interceptedClinicalDataBinCountFilter, + // we don't need to remove filter again since we already did it in the previous step + false + ); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/custom-data-bin-counts/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch custom data bin counts by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalDataBin.class)))) + public ResponseEntity> fetchCustomDataBinCounts( + @Parameter(description = "Method for data binning") + @RequestParam(defaultValue = "DYNAMIC") DataBinMethod dataBinMethod, + @Parameter(required = true, description = "Clinical data bin count filter") + @Valid @RequestBody(required = false) ClinicalDataBinCountFilter clinicalDataBinCountFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedClinicalDataBinCountFilter") ClinicalDataBinCountFilter interceptedClinicalDataBinCountFilter + ) { + // TODO code shared with ClinicalDataController.fetchCustomDataCounts + List attributes = interceptedClinicalDataBinCountFilter.getAttributes(); + StudyViewFilter studyViewFilter = interceptedClinicalDataBinCountFilter.getStudyViewFilter(); + if (attributes.size() == 1) { + studyViewFilterUtil.removeSelfCustomDataFromFilter(attributes.get(0).getAttributeId(), studyViewFilter); + } + List filteredSampleIdentifiers = studyViewFilterApplier.apply(studyViewFilter); + + if (filteredSampleIdentifiers.isEmpty()) { + return new ResponseEntity<>(new ArrayList<>(), HttpStatus.OK); + } + + final List clinicalDataBins = clinicalDataBinUtil.fetchCustomDataBinCounts(dataBinMethod, interceptedClinicalDataBinCountFilter, false); + + return new ResponseEntity<>(clinicalDataBins, HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection',T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/mutated-genes/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch mutated genes by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = AlterationCountByGene.class)))) + public ResponseEntity> fetchMutatedGenes( + @Parameter(required = true, description = "Study view filter") + @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter + ) throws StudyNotFoundException { + boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); + List alterationCountByGenes = this.getInstance().cachedFetchMutatedGenes(interceptedStudyViewFilter, singleStudyUnfiltered); + return new ResponseEntity<>(alterationCountByGenes, HttpStatus.OK); + } + + @Cacheable( + cacheResolver = "staticRepositoryCacheOneResolver", + condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" + ) + public List cachedFetchMutatedGenes( + StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered + ) throws StudyNotFoundException { + AlterationFilter annotationFilters = interceptedStudyViewFilter.getAlterationFilter(); + + List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); + List alterationCountByGenes = new ArrayList<>(); + if(CollectionUtils.isNotEmpty(sampleIdentifiers)) { + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + studyViewFilterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); + alterationCountByGenes = studyViewService.getMutationAlterationCountByGenes(studyIds, sampleIds, annotationFilters); + } + return alterationCountByGenes; + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/structuralvariant-genes/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch structural variant genes by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = AlterationCountByGene.class)))) + public ResponseEntity> fetchStructuralVariantGenes( + @Parameter(required = true, description = "Study view filter") + @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. This attribute is needed for the @PreAuthorize tag above. + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. + @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter + ) throws StudyNotFoundException { + + boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); + List alterationCountByGenes = + this.getInstance().cacheableFetchStructuralVariantGenes(interceptedStudyViewFilter, singleStudyUnfiltered); + return new ResponseEntity<>(alterationCountByGenes, HttpStatus.OK); + } + + @Cacheable( + cacheResolver = "staticRepositoryCacheOneResolver", + condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" + ) + public List cacheableFetchStructuralVariantGenes( + StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered + ) throws StudyNotFoundException { + AlterationFilter annotationFilters = interceptedStudyViewFilter.getAlterationFilter(); + + List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); + List alterationCountByGenes = new ArrayList<>(); + if(CollectionUtils.isNotEmpty(sampleIdentifiers)) { + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + studyViewFilterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); + alterationCountByGenes = studyViewService.getStructuralVariantAlterationCountByGenes(studyIds, sampleIds, annotationFilters); + } + return alterationCountByGenes; + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/structuralvariant-counts/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch structural variant genes by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = AlterationCountByStructuralVariant.class)))) + public ResponseEntity> fetchStructuralVariantCounts( + @Parameter(required = true, description = "Study view filter") + @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. This attribute is needed for the @PreAuthorize tag above. + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. + @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter + ) throws StudyNotFoundException { + + boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); + List alterationCountByStructuralVariants = + this.getInstance().cacheableFetchStructuralVariantCounts(interceptedStudyViewFilter, singleStudyUnfiltered); + return new ResponseEntity<>(alterationCountByStructuralVariants, HttpStatus.OK); + } + + @Cacheable( + cacheResolver = "staticRepositoryCacheOneResolver", + condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" + ) + public List cacheableFetchStructuralVariantCounts( + StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered + ) throws StudyNotFoundException { + + List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); + if(CollectionUtils.isNotEmpty(sampleIdentifiers)) { + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + studyViewFilterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); + return studyViewService.getStructuralVariantAlterationCounts(studyIds, sampleIds, interceptedStudyViewFilter.getAlterationFilter()); + } + return new ArrayList<>(); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/cna-genes/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch CNA genes by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = CopyNumberCountByGene.class)))) + public ResponseEntity> fetchCNAGenes( + @Parameter(required = true, description = "Study view filter") + @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter + ) throws StudyNotFoundException { + boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); + List copyNumberCountByGenes = this.getInstance().cacheableFetchCNAGenes(interceptedStudyViewFilter, singleStudyUnfiltered); + return new ResponseEntity<>(copyNumberCountByGenes, HttpStatus.OK); + } + + @Cacheable( + cacheResolver = "staticRepositoryCacheOneResolver", + condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" + ) + public List cacheableFetchCNAGenes(StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered) throws StudyNotFoundException { + AlterationFilter alterationFilter = interceptedStudyViewFilter.getAlterationFilter(); + + List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); + List copyNumberCountByGenes = new ArrayList<>(); + if(CollectionUtils.isNotEmpty(sampleIdentifiers)) { + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + studyViewFilterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); + copyNumberCountByGenes = studyViewService.getCNAAlterationCountByGenes(studyIds, sampleIds, alterationFilter); + } + return copyNumberCountByGenes; + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/filtered-samples/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch sample IDs by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = Sample.class)))) + public ResponseEntity> fetchFilteredSamples( + @Parameter(description = "Whether to negate the study view filters") + @RequestParam(defaultValue = "false") Boolean negateFilters, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter, + @Parameter(required = true, description = "Study view filter") + @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter) { + + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + + studyViewFilterUtil.extractStudyAndSampleIds( + studyViewFilterApplier.apply(interceptedStudyViewFilter, negateFilters), studyIds, sampleIds); + + List result = new ArrayList<>(); + if (!sampleIds.isEmpty()) { + result = sampleService.fetchSamples(studyIds, sampleIds, Projection.ID.name()); + } + return new ResponseEntity<>(result, HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/molecular-profile-sample-counts/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch sample counts by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenomicDataCount.class)))) + public ResponseEntity> fetchMolecularProfileSampleCounts( + @Parameter(required = true, description = "Study view filter") + @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter + ) + { + boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); + List sampleCounts = this.getInstance().cacheableFetchMolecularProfileSampleCounts(interceptedStudyViewFilter, singleStudyUnfiltered); + return new ResponseEntity<>(sampleCounts, HttpStatus.OK); + } + + @Cacheable( + cacheResolver = "staticRepositoryCacheOneResolver", + condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" + ) + public List cacheableFetchMolecularProfileSampleCounts( + StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered + ) { + List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); + List genomicDataCounts = new ArrayList<>(); + if(CollectionUtils.isNotEmpty(sampleIdentifiers)) { + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + studyViewFilterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); + genomicDataCounts = studyViewService.getGenomicDataCounts(studyIds, sampleIds); + } + return genomicDataCounts; + } + + private static boolean isLogScalePossibleForAttribute(String clinicalAttributeId) { + return clinicalAttributeId.equals("MUTATION_COUNT"); + } + + private static double logScale(double val) { + return Math.log(1+val); + } + + private static double parseValueLog(ClinicalData c) { + return StudyViewController.logScale(Double.parseDouble(c.getAttrValue())); + } + + private static double parseValueLinear(ClinicalData c) { + return Double.parseDouble(c.getAttrValue()); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/clinical-data-density-plot/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch clinical data density plot bins by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = DensityPlotData.class))) + @Validated + public ResponseEntity fetchClinicalDataDensityPlot( + @Parameter(required = true, description = "Clinical Attribute ID of the X axis") + @RequestParam String xAxisAttributeId, + @Parameter(description = "Number of the bins in X axis") + @RequestParam(defaultValue = "50") Integer xAxisBinCount, + @Parameter(description = "Starting point of the X axis, if different than smallest value") + @RequestParam(required = false) BigDecimal xAxisStart, + @Parameter(description = "Starting point of the X axis, if different than largest value") + @RequestParam(required = false) BigDecimal xAxisEnd, + @Parameter(required = true, description = "Clinical Attribute ID of the Y axis") + @RequestParam String yAxisAttributeId, + @Parameter(description = "Number of the bins in Y axis") + @RequestParam(defaultValue = "50") Integer yAxisBinCount, + @Parameter(description = "Starting point of the Y axis, if different than smallest value") + @RequestParam(required = false) BigDecimal yAxisStart, + @Parameter(description = "Starting point of the Y axis, if different than largest value") + @RequestParam(required = false) BigDecimal yAxisEnd, + @Parameter(description="Use log scale for X axis") + @RequestParam(required = false, defaultValue = "false") Boolean xAxisLogScale, + @Schema(defaultValue = "false") + @Parameter(description="Use log scale for Y axis") + @RequestParam(required = false, defaultValue = "false") Boolean yAxisLogScale, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter, + @Parameter(required = true, description = "Study view filter") + @RequestBody(required = false) StudyViewFilter studyViewFilter) { + + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + studyViewFilterUtil.extractStudyAndSampleIds(studyViewFilterApplier.apply(interceptedStudyViewFilter), studyIds, sampleIds); + DensityPlotData result = new DensityPlotData(); + result.setBins(new ArrayList<>()); + if (sampleIds.isEmpty()) { + return new ResponseEntity<>(result, HttpStatus.OK); + } + + List sampleAttributeIds = new ArrayList<>(); + List patientAttributeIds = new ArrayList<>(); + + List clinicalAttributes = clinicalAttributeService + .getClinicalAttributesByStudyIdsAndAttributeIds(studyIds, + Arrays.asList(xAxisAttributeId, yAxisAttributeId)); + + clinicalAttributeUtil.extractCategorizedClinicalAttributes(clinicalAttributes, sampleAttributeIds, patientAttributeIds, patientAttributeIds); + + List patientIds = new ArrayList<>(); + List studyIdsOfPatients = new ArrayList<>(); + Map>> patientToSamples = null; + + + if (CollectionUtils.isNotEmpty(patientAttributeIds)) { + List samples = sampleService.fetchSamples(studyIds, sampleIds, Projection.DETAILED.name()); + List patients = patientService.getPatientsOfSamples(studyIds, sampleIds); + patientIds = patients.stream().map(Patient::getStableId).collect(Collectors.toList()); + studyIdsOfPatients = patients.stream().map(Patient::getCancerStudyIdentifier).collect(Collectors.toList()); + patientToSamples = samples.stream().collect( + Collectors.groupingBy(Sample::getPatientStableId, Collectors.groupingBy(Sample::getCancerStudyIdentifier)) + ); + } + + List clinicalDataList = clinicalDataFetcher.fetchClinicalData( + studyIds, sampleIds, patientIds, studyIdsOfPatients, sampleAttributeIds, patientAttributeIds, null + ); + + List sampleClinicalDataList; + // put all clinical data into sample form + if (CollectionUtils.isNotEmpty(patientAttributeIds)) { + sampleClinicalDataList = new ArrayList<>(); + for (ClinicalData d: clinicalDataList) { + if (d.getSampleId() == null) { + // null sample id means its a patient data, + // we need to distribute the value to samples + List samplesForPatient = patientToSamples.get( + d.getPatientId() + ).get(d.getStudyId()); + if (samplesForPatient != null) { + for (Sample s: samplesForPatient) { + ClinicalData newData = new ClinicalData(); + newData.setAttrId(d.getAttrId()); + newData.setPatientId(d.getPatientId()); + newData.setStudyId(d.getStudyId()); + newData.setAttrValue(d.getAttrValue()); + newData.setSampleId(s.getStableId()); + sampleClinicalDataList.add(newData); + } + } else { + // patient has no samples - this shouldn't happen and could affect the integrity + // of the data analysis + return new ResponseEntity<>(null, HttpStatus.INTERNAL_SERVER_ERROR); + } + } else { + // if its a sample data, just add it to the list + sampleClinicalDataList.add(d); + } + } + } else { + sampleClinicalDataList = clinicalDataList; + } + + // clinicalDataMap is a map sampleId->studyId->data + Map>> clinicalDataMap = sampleClinicalDataList.stream().collect(Collectors.groupingBy(ClinicalData::getSampleId, + Collectors.groupingBy(ClinicalData::getStudyId))); + + List filteredClinicalDataList = new ArrayList<>(); + clinicalDataMap.forEach((k, v) -> v.forEach((m, n) -> { + if ( + // n.size() == 2 means we have clinical data for the sample for both of the queried attributes + n.size() == 2 && + // check if both of the sample data are numerical + NumberUtils.isCreatable(n.get(0).getAttrValue()) && NumberUtils.isCreatable(n.get(1).getAttrValue())) { + filteredClinicalDataList.addAll(n); + } + })); + if (filteredClinicalDataList.isEmpty()) { + return new ResponseEntity<>(result, HttpStatus.OK); + } + + Map> partition = filteredClinicalDataList.stream().collect( + Collectors.partitioningBy(c -> c.getAttrId().equals(xAxisAttributeId))); + + boolean useXLogScale = xAxisLogScale && StudyViewController.isLogScalePossibleForAttribute(xAxisAttributeId); + boolean useYLogScale = yAxisLogScale && StudyViewController.isLogScalePossibleForAttribute(yAxisAttributeId); + + double[] xValues = partition.get(true).stream().mapToDouble( + useXLogScale ? StudyViewController::parseValueLog : StudyViewController::parseValueLinear + ).toArray(); + double[] yValues = partition.get(false).stream().mapToDouble( + useYLogScale ? StudyViewController::parseValueLog : StudyViewController::parseValueLinear + ).toArray(); + double[] xValuesCopy = Arrays.copyOf(xValues, xValues.length); + double[] yValuesCopy = Arrays.copyOf(yValues, yValues.length); + Arrays.sort(xValuesCopy); + Arrays.sort(yValuesCopy); + + double xAxisStartValue = xAxisStart == null ? xValuesCopy[0] : + (useXLogScale ? StudyViewController.logScale(xAxisStart.doubleValue()) : xAxisStart.doubleValue()); + double xAxisEndValue = xAxisEnd == null ? xValuesCopy[xValuesCopy.length - 1] : + (useXLogScale ? StudyViewController.logScale(xAxisEnd.doubleValue()) : xAxisEnd.doubleValue()); + double yAxisStartValue = yAxisStart == null ? yValuesCopy[0] : + (useYLogScale ? StudyViewController.logScale(yAxisStart.doubleValue()) : yAxisStart.doubleValue()); + double yAxisEndValue = yAxisEnd == null ? yValuesCopy[yValuesCopy.length - 1] : + (useYLogScale ? StudyViewController.logScale(yAxisEnd.doubleValue()) : yAxisEnd.doubleValue()); + double xAxisBinInterval = (xAxisEndValue - xAxisStartValue) / xAxisBinCount; + double yAxisBinInterval = (yAxisEndValue - yAxisStartValue) / yAxisBinCount; + List bins = result.getBins(); + for (int i = 0; i < xAxisBinCount; i++) { + for (int j = 0; j < yAxisBinCount; j++) { + DensityPlotBin densityPlotBin = new DensityPlotBin(); + densityPlotBin.setBinX(BigDecimal.valueOf(xAxisStartValue + (i * xAxisBinInterval))); + densityPlotBin.setBinY(BigDecimal.valueOf(yAxisStartValue + (j * yAxisBinInterval))); + densityPlotBin.setCount(0); + bins.add(densityPlotBin); + } + } + + for (int i = 0; i < xValues.length; i++) { + double xValue = xValues[i]; + double yValue = yValues[i]; + int xBinIndex = (int) ((xValue - xAxisStartValue) / xAxisBinInterval); + int yBinIndex = (int) ((yValue - yAxisStartValue) / yAxisBinInterval); + int index = (int) (((xBinIndex - (xBinIndex == xAxisBinCount ? 1 : 0)) * yAxisBinCount) + + (yBinIndex - (yBinIndex == yAxisBinCount ? 1 : 0))); + DensityPlotBin densityPlotBin = bins.get(index); + densityPlotBin.setCount(densityPlotBin.getCount() + 1); + BigDecimal xValueBigDecimal = BigDecimal.valueOf(xValue); + BigDecimal yValueBigDecimal = BigDecimal.valueOf(yValue); + if (densityPlotBin.getMinX() != null) { + if (densityPlotBin.getMinX().compareTo(xValueBigDecimal) > 0) { + densityPlotBin.setMinX(xValueBigDecimal); + } + } else { + densityPlotBin.setMinX(xValueBigDecimal); + } + if (densityPlotBin.getMaxX() != null) { + if (densityPlotBin.getMaxX().compareTo(xValueBigDecimal) < 0) { + densityPlotBin.setMaxX(xValueBigDecimal); + } + } else { + densityPlotBin.setMaxX(xValueBigDecimal); + } + if (densityPlotBin.getMinY() != null) { + if (densityPlotBin.getMinY().compareTo(yValueBigDecimal) > 0) { + densityPlotBin.setMinY(yValueBigDecimal); + } + } else { + densityPlotBin.setMinY(yValueBigDecimal); + } + if (densityPlotBin.getMaxY() != null) { + if (densityPlotBin.getMaxY().compareTo(yValueBigDecimal) < 0) { + densityPlotBin.setMaxY(yValueBigDecimal); + } + } else { + densityPlotBin.setMaxY(yValueBigDecimal); + } + } + + if (xValues.length > 1) { + // need at least 2 entries in each to compute correlation + result.setPearsonCorr(new PearsonsCorrelation().correlation(xValues, yValues)); + result.setSpearmanCorr(new SpearmansCorrelation().correlation(xValues, yValues)); + } else { + // if less than 1 entry, just set 0 correlation + result.setSpearmanCorr(0.0); + result.setPearsonCorr(0.0); + } + + // filter out empty bins + result.setBins(result.getBins().stream().filter((bin)->(bin.getCount() > 0)).collect(Collectors.toList())); + + return new ResponseEntity<>(result, HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/clinical-data-violin-plots/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch violin plot curves per categorical clinical data value, filtered by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = ClinicalViolinPlotData.class))) + public ResponseEntity fetchClinicalDataViolinPlots( + @Parameter(required = true, description = "Clinical Attribute ID of the categorical attribute") + @RequestParam String categoricalAttributeId, + @Parameter(required = true, description = "Clinical Attribute ID of the numerical attribute") + @RequestParam String numericalAttributeId, + @Parameter(description = "Starting point of the violin plot axis, if different than smallest value") + @RequestParam(required = false) BigDecimal axisStart, + @Parameter(description = "Ending point of the violin plot axis, if different than largest value") + @RequestParam(required = false) BigDecimal axisEnd, + @Parameter(description = "Number of points in the curve") + @RequestParam(required = false, defaultValue = "100") BigDecimal numCurvePoints, + @Parameter(description="Use log scale for the numerical attribute") + @RequestParam(required = false, defaultValue = "false") Boolean logScale, + @Parameter(description="Sigma stepsize multiplier") + @RequestParam(required = false, defaultValue = "1") BigDecimal sigmaMultiplier, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter, + @Parameter(required = true, description = "Study view filter") + @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter) { + + ClinicalViolinPlotData result = new ClinicalViolinPlotData(); + + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + // first get samples that are filtered by all current filters - this will give us + // the by-row sample counts + studyViewFilterUtil.extractStudyAndSampleIds(studyViewFilterApplier.apply(interceptedStudyViewFilter), studyIds, sampleIds); + List filteredSamples = sampleService.fetchSamples(studyIds, sampleIds, Projection.DETAILED.name()); + + List studyIdsWithoutNumericalFilter = new ArrayList<>(); + List sampleIdsWithoutNumericalFilter = new ArrayList<>(); + // next, get samples that are filtered without the numerical filter - this will + // give us the violin plot data + if (interceptedStudyViewFilter.getClinicalDataFilters() != null) { + // Remove numerical clinical data filter, if there is one + interceptedStudyViewFilter.getClinicalDataFilters().stream() + .filter(f->f.getAttributeId().equals(numericalAttributeId)) + .findAny() + .ifPresent(f->interceptedStudyViewFilter.getClinicalDataFilters().remove(f)); + } + studyViewFilterUtil.extractStudyAndSampleIds( + studyViewFilterApplier.apply(interceptedStudyViewFilter), + studyIdsWithoutNumericalFilter, + sampleIdsWithoutNumericalFilter + ); + + if (sampleIds.isEmpty()) { + return new ResponseEntity<>(result, HttpStatus.OK); + } + + List sampleAttributeIds = new ArrayList<>(); + List patientAttributeIds = new ArrayList<>(); + + List clinicalAttributes = clinicalAttributeService + .getClinicalAttributesByStudyIdsAndAttributeIds(studyIds, + Arrays.asList(categoricalAttributeId, numericalAttributeId)); + + clinicalAttributeUtil.extractCategorizedClinicalAttributes(clinicalAttributes, sampleAttributeIds, patientAttributeIds, patientAttributeIds); + + List patientIds = new ArrayList<>(); + List studyIdsOfPatients = new ArrayList<>(); + Map>> patientToSamples = null; + + if (CollectionUtils.isNotEmpty(patientAttributeIds)) { + List samplesWithoutNumericalFilter = sampleService.fetchSamples(studyIdsWithoutNumericalFilter, sampleIdsWithoutNumericalFilter, Projection.DETAILED.name()); + List patients = patientService.getPatientsOfSamples(studyIdsWithoutNumericalFilter, sampleIdsWithoutNumericalFilter); + patientIds = patients.stream().map(Patient::getStableId).collect(Collectors.toList()); + studyIdsOfPatients = patients.stream().map(Patient::getCancerStudyIdentifier).collect(Collectors.toList()); + patientToSamples = samplesWithoutNumericalFilter.stream().collect( + Collectors.groupingBy(Sample::getPatientStableId, Collectors.groupingBy(Sample::getCancerStudyIdentifier)) + ); + } + + List clinicalDataList = clinicalDataFetcher.fetchClinicalData( + studyIdsWithoutNumericalFilter, sampleIdsWithoutNumericalFilter, patientIds, studyIdsOfPatients, sampleAttributeIds, patientAttributeIds, null + ); + + List sampleClinicalDataList; + // put all clinical data into sample form + if (CollectionUtils.isNotEmpty(patientAttributeIds)) { + sampleClinicalDataList = new ArrayList<>(); + for (ClinicalData d: clinicalDataList) { + if (d.getSampleId() == null) { + // null sample id means its a patient data, + // we need to distribute the value to samples + List samplesForPatient = patientToSamples.get(d.getPatientId()).get(d.getStudyId()); + if (samplesForPatient != null) { + for (Sample s: samplesForPatient) { + ClinicalData newData = new ClinicalData(); + newData.setInternalId(s.getInternalId()); + newData.setAttrId(d.getAttrId()); + newData.setPatientId(d.getPatientId()); + newData.setStudyId(d.getStudyId()); + newData.setAttrValue(d.getAttrValue()); + newData.setSampleId(s.getStableId()); + sampleClinicalDataList.add(newData); + } + } else { + // patient has no samples - this shouldn't happen and could affect the integrity + // of the data analysis + return new ResponseEntity<>(null, HttpStatus.INTERNAL_SERVER_ERROR); + } + } else { + // if its a sample data, just add it to the list + sampleClinicalDataList.add(d); + } + } + } else { + sampleClinicalDataList = clinicalDataList; + } + + boolean useLogScale = logScale && StudyViewController.isLogScalePossibleForAttribute(numericalAttributeId); + + + result = violinPlotService.getClinicalViolinPlotData( + sampleClinicalDataList, + filteredSamples, + axisStart, + axisEnd, + numCurvePoints, + useLogScale, + sigmaMultiplier + ); + + return new ResponseEntity<>(result, HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/sample-lists-counts/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch case list sample counts by study view filter") + public List fetchCaseListCounts( + @Parameter(required = true, description = "Study view filter") + @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter) { + + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + List filteredSampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); + studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, studyIds, sampleIds); + List sampleLists = sampleListService.getAllSampleListsInStudies(studyIds, + Projection.DETAILED.name()); + + HashMap sampleCountBySampleListId = new HashMap(); + + Map filteredSampleSet = filteredSampleIdentifiers.stream() + .collect(Collectors.toMap(sampleidentifier -> studyViewFilterUtil + .getCaseUniqueKey(sampleidentifier.getStudyId(), sampleidentifier.getSampleId()), + Function.identity())); + + for (SampleList sampleList : sampleLists) { + for (String sampleId : sampleList.getSampleIds()) { + if (filteredSampleSet.containsKey( + studyViewFilterUtil.getCaseUniqueKey(sampleList.getCancerStudyIdentifier(), sampleId))) { + Integer count = sampleCountBySampleListId.getOrDefault(sampleList.getStableId(), 0); + sampleCountBySampleListId.put(sampleList.getStableId(), count + 1); + } + } + } + + return studyViewFilterUtil + .categorizeSampleLists(sampleLists) + .entrySet() + .stream() + .map(entry -> { + CaseListDataCount dataCount = new CaseListDataCount(); + dataCount.setValue(entry.getKey()); + + Integer count = entry.getValue().stream().mapToInt(sampleList -> { + return sampleCountBySampleListId.getOrDefault(sampleList.getStableId(), 0); + }).sum(); + + dataCount.setCount(count); + dataCount.setLabel(entry.getValue().get(0).getName()); + + return dataCount; + }) + .filter(dataCount -> dataCount.getCount() > 0) + .collect(Collectors.toList()); + + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/genomic-data-bin-counts/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch genomic data bin counts by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenomicDataBin.class)))) + public ResponseEntity> fetchGenomicDataBinCounts( + @Parameter(description = "Method for data binning") @RequestParam(defaultValue = "DYNAMIC") DataBinMethod dataBinMethod, + @Parameter(required = true, description = "Genomic data bin count filter") @Valid @RequestBody(required = false) GenomicDataBinCountFilter genomicDataBinCountFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this + // attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedGenomicDataBinCountFilter") GenomicDataBinCountFilter interceptedGenomicDataBinCountFilter) { + + return new ResponseEntity<>(studyViewFilterApplier.getDataBins(dataBinMethod, interceptedGenomicDataBinCountFilter), HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/genomic-data-counts/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch genomic data counts by GenomicDataCountFilter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenomicDataCountItem.class)))) + public ResponseEntity> fetchGenomicDataCounts( + @Parameter(required = true, description = "Genomic data count filter") @Valid @RequestBody(required = false) GenomicDataCountFilter genomicDataCountFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(required = true, description = "Intercepted Genomic Data Count Filter") + @Valid @RequestAttribute(required = false, value = "interceptedGenomicDataCountFilter") GenomicDataCountFilter interceptedGenomicDataCountFilter + ) throws StudyNotFoundException { + List gdFilters = interceptedGenomicDataCountFilter.getGenomicDataFilters(); + StudyViewFilter studyViewFilter = interceptedGenomicDataCountFilter.getStudyViewFilter(); + // when there is only one filter, it means study view is doing a single chart filter operation + // remove filter from studyViewFilter to return all data counts + // the reason we do this is to make sure after chart get filtered, user can still see unselected portion of the chart + if (gdFilters.size() == 1) { + studyViewFilterUtil.removeSelfFromGenomicDataFilter( + gdFilters.get(0).getHugoGeneSymbol(), + gdFilters.get(0).getProfileType(), + studyViewFilter); + } + List filteredSampleIdentifiers = studyViewFilterApplier.apply(studyViewFilter); + + if (filteredSampleIdentifiers.isEmpty()) { + return new ResponseEntity<>(new ArrayList<>(), HttpStatus.OK); + } + + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, studyIds, sampleIds); + + List result = studyViewService.getCNAAlterationCountsByGeneSpecific( + studyIds, + sampleIds, + gdFilters.stream().map(gdFilter -> new Pair<>(gdFilter.getHugoGeneSymbol(), gdFilter.getProfileType())).collect(Collectors.toList())); + + return new ResponseEntity<>(result, HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/generic-assay-data-counts/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch generic assay data counts by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayDataCountItem.class)))) + public ResponseEntity> fetchGenericAssayDataCounts( + @Parameter(required = true, description = "Generic assay data count filter") @Valid @RequestBody(required = false) GenericAssayDataCountFilter genericAssayDataCountFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this + // attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedGenericAssayDataCountFilter") GenericAssayDataCountFilter interceptedGenericAssayDataCountFilter) { + + List gaFilters = interceptedGenericAssayDataCountFilter.getGenericAssayDataFilters(); + StudyViewFilter studyViewFilter = interceptedGenericAssayDataCountFilter.getStudyViewFilter(); + // when there is only one filter, it means study view is doing a single chart filter operation + // remove filter from studyViewFilter to return all data counts + // the reason we do this is to make sure after chart get filtered, user can still see unselected portion of the chart + if (gaFilters.size() == 1) { + studyViewFilterUtil.removeSelfFromGenericAssayFilter(gaFilters.get(0).getStableId(), studyViewFilter); + } + List filteredSampleIdentifiers = studyViewFilterApplier.apply(studyViewFilter); + + if (filteredSampleIdentifiers.isEmpty()) { + return new ResponseEntity<>(new ArrayList<>(), HttpStatus.OK); + } + + List studyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, studyIds, sampleIds); + + List result = studyViewService.fetchGenericAssayDataCounts( + sampleIds, + studyIds, + gaFilters.stream().map(GenericAssayDataFilter::getStableId).collect(Collectors.toList()), + gaFilters.stream().map(GenericAssayDataFilter::getProfileType).collect(Collectors.toList())); + + return new ResponseEntity<>(result, HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/generic-assay-data-bin-counts/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch generic assay data bin counts by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenericAssayDataBin.class)))) + public ResponseEntity> fetchGenericAssayDataBinCounts( + @Parameter(description = "Method for data binning") @RequestParam(defaultValue = "DYNAMIC") DataBinMethod dataBinMethod, + @Parameter(required = true, description = "Generic assay data bin count filter") @Valid @RequestBody(required = false) GenericAssayDataBinCountFilter genericAssayDataBinCountFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this + // attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedGenericAssayDataBinCountFilter") GenericAssayDataBinCountFilter interceptedGenericAssayDataBinCountFilter) { + + return new ResponseEntity<>(studyViewFilterApplier.getDataBins(dataBinMethod, interceptedGenericAssayDataBinCountFilter), HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/clinical-data-table/fetch", method = RequestMethod.POST, + consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Fetch clinical data for the Clinical Tab of Study View") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = ClinicalDataCollection.class))) + public ResponseEntity fetchClinicalDataClinicalTable( + @Parameter(required = true, description = "Study view filter") + @Valid @RequestBody(required = false) + StudyViewFilter studyViewFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") + Collection involvedCancerStudies, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") + StudyViewFilter interceptedStudyViewFilter, + @Parameter(description = "Page size of the result list") + @Max(CLINICAL_TAB_MAX_PAGE_SIZE) + @Min(PagingConstants.NO_PAGING_PAGE_SIZE) + @RequestParam(defaultValue = PagingConstants.DEFAULT_NO_PAGING_PAGE_SIZE) + Integer pageSize, + @Parameter(description = "Page number of the result list") + @Min(PagingConstants.MIN_PAGE_NUMBER) + @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) + Integer pageNumber, + @Parameter(description = "Search term to filter sample rows. Samples are returned " + + "with a partial match to the search term for any sample clinical attribute.") + @RequestParam(defaultValue = "") + String searchTerm, + @Parameter(description = "sampleId, patientId, or the ATTR_ID to sorted by") + @RequestParam(required = false) + // TODO: Can we narrow down this string to a specific enum? + String sortBy, + @Parameter(description = "Direction of the sort") + @RequestParam(defaultValue = "ASC") + Direction direction + ) { + List sampleStudyIds = new ArrayList<>(); + List sampleIds = new ArrayList<>(); + List filteredSampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); + studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, sampleStudyIds, sampleIds); + + List sampleClinicalData = clinicalDataService.fetchSampleClinicalTable( + sampleStudyIds, + sampleIds, + pageSize, + pageNumber, + searchTerm, + sortBy, + direction.name() + ); + Integer total = clinicalDataService.fetchSampleClinicalTableCount( + sampleStudyIds, + sampleIds, + searchTerm, + sortBy, + direction.name() + ); + + // Return empty when possible. + if (sampleClinicalData.isEmpty()) { + return new ResponseEntity<>(new ClinicalDataCollection(), HttpStatus.OK); + } + + // Resolve for which patient clinical data should be included. + final List> patientIdentifiers = sampleClinicalData.stream() + .map(d -> new ImmutablePair<>(d.getStudyId(), d.getPatientId())) + .distinct() + .collect(Collectors.toList()); + List patientStudyIds = patientIdentifiers.stream().map(p -> p.getLeft()).collect(Collectors.toList()); + List patientIds = patientIdentifiers.stream().map(p -> p.getRight()).collect(Collectors.toList()); + + + List searchAllAttributes = null; + final List patientClinicalData = clinicalDataService.fetchClinicalData(patientStudyIds, patientIds, + searchAllAttributes, ClinicalDataType.PATIENT.name(), Projection.SUMMARY.name()); + + final ClinicalDataCollection clinicalDataCollection = new ClinicalDataCollection(); + clinicalDataCollection.setSampleClinicalData(sampleClinicalData); + clinicalDataCollection.setPatientClinicalData(patientClinicalData); + + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, total.toString()); + return new ResponseEntity<>(clinicalDataCollection, responseHeaders, HttpStatus.OK); + } + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/clinical-event-type-counts/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get Counts of Clinical Event Types by Study View Filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalEventTypeCount.class)))) + public ResponseEntity> getClinicalEventTypeCounts( + @Parameter(required = true, description = "Study view filter") + @Valid + @RequestBody(required = false) + StudyViewFilter studyViewFilter, + + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") + Collection involvedCancerStudies, + + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid + @RequestAttribute(required = false, value = "interceptedStudyViewFilter") + StudyViewFilter interceptedStudyViewFilter + ) { + boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); + List eventTypeCounts = this.getInstance().cachedClinicalEventTypeCounts(interceptedStudyViewFilter, singleStudyUnfiltered); + return new ResponseEntity<>(eventTypeCounts, HttpStatus.OK); + } + + @Cacheable( + cacheResolver = "staticRepositoryCacheOneResolver", + condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" + ) + public List cachedClinicalEventTypeCounts( + StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered + ){ + List filteredSampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); + List sampleIds = new ArrayList<>(); + List studyIds = new ArrayList<>(); + studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, studyIds, sampleIds); + return clinicalEventService.getClinicalEventTypeCounts(studyIds, sampleIds); + } +} diff --git a/src/main/java/org/cbioportal/web/TestController.java b/src/main/java/org/cbioportal/web/TestController.java new file mode 100644 index 00000000000..3c227e7a97b --- /dev/null +++ b/src/main/java/org/cbioportal/web/TestController.java @@ -0,0 +1,14 @@ +package org.cbioportal.web; + +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +public class TestController { + + @GetMapping("/api/hello") + public String index() { + return "Greetings from Spring Boot!"; + } + +} diff --git a/src/main/java/org/cbioportal/web/TreatmentController.java b/src/main/java/org/cbioportal/web/TreatmentController.java new file mode 100644 index 00000000000..4beaababa9e --- /dev/null +++ b/src/main/java/org/cbioportal/web/TreatmentController.java @@ -0,0 +1,213 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.ClinicalEventKeyCode; +import org.cbioportal.model.PatientTreatmentRow; +import org.cbioportal.model.SampleTreatmentRow; +import org.cbioportal.service.TreatmentService; +import org.cbioportal.web.config.annotation.PublicApi; +import org.cbioportal.web.parameter.PagingConstants; +import org.cbioportal.web.parameter.SampleIdentifier; +import org.cbioportal.web.parameter.StudyViewFilter; +import org.cbioportal.web.util.StudyViewFilterApplier; +import org.cbioportal.web.util.StudyViewFilterUtil; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.cache.annotation.Cacheable; +import org.springframework.context.ApplicationContext; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.RequestAttribute; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; +import java.util.Objects; +import java.util.Set; + +@PublicApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Treatments", description = " ") +public class TreatmentController { + @Autowired + private ApplicationContext applicationContext; + TreatmentController instance; + + + @Autowired + private StudyViewFilterUtil studyViewFilterUtil; + @Autowired + private StudyViewFilterUtil filterUtil; + + @Autowired + private TreatmentService treatmentService; + + @Autowired + private StudyViewFilterApplier studyViewFilterApplier; + + private TreatmentController getInstance() { + if (Objects.isNull(instance)) { + instance = applicationContext.getBean(TreatmentController.class); + } + return instance; + } + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/treatments/patient", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all patient level treatments") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = PatientTreatmentRow.class)))) + public ResponseEntity> getAllPatientTreatments( + @Parameter(required = false ) + @RequestParam(name = "tier", required = false, defaultValue = "Agent") + ClinicalEventKeyCode tier, + + @Parameter(required = true, description = "Study view filter") + @Valid + @RequestBody(required = false) + StudyViewFilter studyViewFilter, + + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") + Collection involvedCancerStudies, + + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid + @RequestAttribute(required = false, value = "interceptedStudyViewFilter") + StudyViewFilter interceptedStudyViewFilter + ) { + boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); + List treatments = + this.getInstance().cachableGetAllPatientTreatments(tier, interceptedStudyViewFilter, singleStudyUnfiltered); + return new ResponseEntity<>(treatments, HttpStatus.OK); + } + + @Cacheable( + cacheResolver = "staticRepositoryCacheOneResolver", + condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" + ) + public List cachableGetAllPatientTreatments( + ClinicalEventKeyCode tier, StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered + ) { + List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); + List sampleIds = new ArrayList<>(); + List studyIds = new ArrayList<>(); + filterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); + + return treatmentService.getAllPatientTreatmentRows(sampleIds, studyIds, tier); + } + + + @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/treatments/sample", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get all sample level treatments") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = SampleTreatmentRow.class)))) + public ResponseEntity> getAllSampleTreatments( + @Schema(defaultValue = "Agent") + @Parameter(required = false) + @RequestParam(name = "tier", required = false, defaultValue = "Agent") + ClinicalEventKeyCode tier, + + @Parameter(required = true, description = "Study view filter") + @Valid + @RequestBody(required = false) + StudyViewFilter studyViewFilter, + + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface + @RequestAttribute(required = false, value = "involvedCancerStudies") + Collection involvedCancerStudies, + + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. + @Valid + @RequestAttribute(required = false, value = "interceptedStudyViewFilter") + StudyViewFilter interceptedStudyViewFilter + ) { + boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); + List treatments = + this.getInstance().cacheableGetAllSampleTreatments(tier, interceptedStudyViewFilter, singleStudyUnfiltered); + return new ResponseEntity<>(treatments, HttpStatus.OK); + } + + @Cacheable( + cacheResolver = "staticRepositoryCacheOneResolver", + condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" + ) + public List cacheableGetAllSampleTreatments( + ClinicalEventKeyCode tier, StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered + ) { + List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); + List sampleIds = new ArrayList<>(); + List studyIds = new ArrayList<>(); + filterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); + + return treatmentService.getAllSampleTreatmentRows(sampleIds, studyIds, tier); + } + + @PreAuthorize("hasPermission(#studyIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/treatments/display-patient", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Should patient level treatments be displayed") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Boolean.class))) + public ResponseEntity getContainsTreatmentData( + @Schema(defaultValue = "Agent") + @Parameter(required = false) + @RequestParam(name = "tier", required = false, defaultValue = "Agent") + ClinicalEventKeyCode tier, + + @Parameter(required = true, description = "List of Study IDs") + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + @RequestBody + Set studyIds + ) { + Boolean containsTreatmentData = this.getInstance().cacheableGetContainsTreatmentData(studyIds, tier); + return new ResponseEntity<>(containsTreatmentData, HttpStatus.OK); + } + + // Caching enabled for any number of studies as the requests contains only studyIds and the response is a boolean + @Cacheable(cacheResolver = "generalRepositoryCacheResolver", condition = "@cacheEnabledConfig.getEnabled()") + public Boolean cacheableGetContainsTreatmentData(Set studyIds, ClinicalEventKeyCode tier) { + return treatmentService.containsTreatmentData(new ArrayList<>(studyIds), tier); + } + + @PreAuthorize("hasPermission(#studyIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/treatments/display-sample", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Should sample level treatments be displayed") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(schema = @Schema(implementation = Boolean.class))) + public ResponseEntity getContainsSampleTreatmentData( + @Schema(defaultValue = "Agent") + @Parameter(required = false) + @RequestParam(name = "tier", required = false, defaultValue = "Agent") + ClinicalEventKeyCode tier, + + @Parameter(required = true, description = "List of Study IDs") + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + @RequestBody + Set studyIds + ) { + Boolean containsTreatmentData = this.getInstance().cacheableGetContainsSampleTreatmentData(studyIds, tier); + return new ResponseEntity<>(containsTreatmentData, HttpStatus.OK); + } + + @Cacheable(cacheResolver = "generalRepositoryCacheResolver", condition = "@cacheEnabledConfig.getEnabled()") + public Boolean cacheableGetContainsSampleTreatmentData(Set studyIds, ClinicalEventKeyCode tier) { + return treatmentService.containsSampleTreatmentData(new ArrayList<>(studyIds), tier); + } +} diff --git a/src/main/java/org/cbioportal/web/VariantCountController.java b/src/main/java/org/cbioportal/web/VariantCountController.java new file mode 100644 index 00000000000..cff905808e4 --- /dev/null +++ b/src/main/java/org/cbioportal/web/VariantCountController.java @@ -0,0 +1,69 @@ +package org.cbioportal.web; + +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.constraints.Size; +import org.cbioportal.model.VariantCount; +import org.cbioportal.service.VariantCountService; +import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.parameter.VariantCountIdentifier; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.List; + +@InternalApi +@RestController() +@RequestMapping("/api") +@Validated +@Tag(name = "Variant Counts", description = " ") +public class VariantCountController { + + private static final int VARIANT_COUNT_MAX_PAGE_SIZE = 50000; + + @Autowired + private VariantCountService variantCountService; + + @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") + @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/variant-counts/fetch", + method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(description = "Get counts of specific variants within a mutation molecular profile") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = VariantCount.class)))) + public ResponseEntity> fetchVariantCounts( + @Parameter(required = true, description = "Molecular Profile ID e.g. acc_tcga_mutations") + @PathVariable String molecularProfileId, + @Parameter(required = true, description = "List of variant count identifiers") + @Size(min = 1, max = VARIANT_COUNT_MAX_PAGE_SIZE) + @RequestBody List variantCountIdentifiers) throws MolecularProfileNotFoundException { + + List entrezGeneIds = new ArrayList<>(); + List keywords = new ArrayList<>(); + + for (VariantCountIdentifier variantCountIdentifier : variantCountIdentifiers) { + + entrezGeneIds.add(variantCountIdentifier.getEntrezGeneId()); + keywords.add(variantCountIdentifier.getKeyword()); + } + + return new ResponseEntity<>(variantCountService.fetchVariantCounts(molecularProfileId, entrezGeneIds, keywords), + HttpStatus.OK); + } +} diff --git a/web/src/main/java/org/cbioportal/web/config/CustomObjectMapper.java b/src/main/java/org/cbioportal/web/config/CustomObjectMapper.java similarity index 96% rename from web/src/main/java/org/cbioportal/web/config/CustomObjectMapper.java rename to src/main/java/org/cbioportal/web/config/CustomObjectMapper.java index 740a73dbb81..d5853d58218 100644 --- a/web/src/main/java/org/cbioportal/web/config/CustomObjectMapper.java +++ b/src/main/java/org/cbioportal/web/config/CustomObjectMapper.java @@ -32,13 +32,9 @@ package org.cbioportal.web.config; -import java.util.HashMap; -import java.util.Map; - import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; - import org.cbioportal.model.CancerStudy; import org.cbioportal.model.ClinicalAttribute; import org.cbioportal.model.ClinicalAttributeCount; @@ -67,7 +63,9 @@ import org.cbioportal.model.SampleList; import org.cbioportal.model.StructuralVariant; import org.cbioportal.model.TypeOfCancer; -import org.cbioportal.session_service.domain.Session; +import org.cbioportal.service.util.CustomAttributeWithData; +import org.cbioportal.service.util.CustomDataSession; +import org.cbioportal.utils.removeme.Session; import org.cbioportal.web.mixin.CancerStudyMixin; import org.cbioportal.web.mixin.ClinicalAttributeCountMixin; import org.cbioportal.web.mixin.ClinicalAttributeMixin; @@ -98,18 +96,21 @@ import org.cbioportal.web.mixin.SessionMixin; import org.cbioportal.web.mixin.StructuralVariantMixin; import org.cbioportal.web.mixin.TypeOfCancerMixin; -import org.cbioportal.service.util.CustomDataSession; import org.cbioportal.web.parameter.PageSettings; import org.cbioportal.web.parameter.PageSettingsData; import org.cbioportal.web.parameter.StudyPageSettings; import org.cbioportal.web.parameter.VirtualStudy; import org.cbioportal.web.parameter.VirtualStudyData; -import org.cbioportal.service.util.CustomAttributeWithData; +import java.util.HashMap; +import java.util.Map; + +// This bean automatically registers with MappingJackson2HttpMessageConverter +// By marking it @Primary it will displace the default ObjectMapper +// See: https://www.baeldung.com/spring-boot-customize-jackson-objectmapper#1-objectmapper public class CustomObjectMapper extends ObjectMapper { public CustomObjectMapper() { - super.setSerializationInclusion(JsonInclude.Include.NON_NULL); super.enable(SerializationFeature.WRITE_ENUMS_USING_TO_STRING); Map, Class> mixinMap = new HashMap<>(); diff --git a/core/src/main/scripts/importer/__init__.py b/src/main/java/org/cbioportal/web/config/DataAccessTokenConfig.java similarity index 100% rename from core/src/main/scripts/importer/__init__.py rename to src/main/java/org/cbioportal/web/config/DataAccessTokenConfig.java diff --git a/web/src/main/java/org/cbioportal/web/config/InternalApiTags.java b/src/main/java/org/cbioportal/web/config/InternalApiTags.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/config/InternalApiTags.java rename to src/main/java/org/cbioportal/web/config/InternalApiTags.java diff --git a/src/main/java/org/cbioportal/web/config/JacksonConfig.java b/src/main/java/org/cbioportal/web/config/JacksonConfig.java new file mode 100644 index 00000000000..6e0c7a00247 --- /dev/null +++ b/src/main/java/org/cbioportal/web/config/JacksonConfig.java @@ -0,0 +1,15 @@ +package org.cbioportal.web.config; + +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.Primary; + +@Configuration +public class JacksonConfig { + @Bean + @Primary + public ObjectMapper objectMapper() { + return new CustomObjectMapper(); + } +} diff --git a/src/main/java/org/cbioportal/web/config/MethodValidationConfig.java b/src/main/java/org/cbioportal/web/config/MethodValidationConfig.java new file mode 100644 index 00000000000..52ec3c80cfb --- /dev/null +++ b/src/main/java/org/cbioportal/web/config/MethodValidationConfig.java @@ -0,0 +1,23 @@ +package org.cbioportal.web.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.validation.beanvalidation.LocalValidatorFactoryBean; +import org.springframework.validation.beanvalidation.MethodValidationPostProcessor; + +@Configuration +public class MethodValidationConfig { + + @Bean + public MethodValidationPostProcessor methodValidationPostProcessor() { + MethodValidationPostProcessor processor = new MethodValidationPostProcessor(); + processor.setValidator(validatorFactoryBean()); + return processor; + } + + @Bean + public LocalValidatorFactoryBean validatorFactoryBean() { + return new LocalValidatorFactoryBean(); + } + +} diff --git a/web/src/main/java/org/cbioportal/web/config/PublicApiTags.java b/src/main/java/org/cbioportal/web/config/PublicApiTags.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/config/PublicApiTags.java rename to src/main/java/org/cbioportal/web/config/PublicApiTags.java diff --git a/src/main/java/org/cbioportal/web/config/SwaggerConfig.java b/src/main/java/org/cbioportal/web/config/SwaggerConfig.java new file mode 100644 index 00000000000..1c3b485865a --- /dev/null +++ b/src/main/java/org/cbioportal/web/config/SwaggerConfig.java @@ -0,0 +1,86 @@ +package org.cbioportal.web.config; + +import com.fasterxml.jackson.databind.ObjectMapper; +import io.swagger.v3.core.converter.ModelConverters; +import io.swagger.v3.core.jackson.ModelResolver; +import io.swagger.v3.oas.models.ExternalDocumentation; +import io.swagger.v3.oas.models.OpenAPI; +import io.swagger.v3.oas.models.info.Contact; +import io.swagger.v3.oas.models.info.Info; +import io.swagger.v3.oas.models.info.License; +import org.cbioportal.web.config.annotation.InternalApi; +import org.cbioportal.web.config.annotation.PublicApi; +import org.springdoc.core.customizers.OperationCustomizer; +import org.springdoc.core.models.GroupedOpenApi; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.method.HandlerMethod; + +import java.lang.annotation.Annotation; +import java.util.stream.Stream; + + +@Configuration +public class SwaggerConfig { + + @Bean + public GroupedOpenApi publicApi() { + return GroupedOpenApi.builder() + .group("public") + .addOpenApiMethodFilter(method -> method.getDeclaringClass().isAnnotationPresent(PublicApi.class)) + .addOperationCustomizer(customizeOperation()) + .pathsToMatch("/api/**") + .build(); + } + + @Bean + public GroupedOpenApi internalApi() { + return GroupedOpenApi.builder() + .group("internal") + .addOpenApiMethodFilter(method -> method.getDeclaringClass().isAnnotationPresent(InternalApi.class)) + .addOperationCustomizer(customizeOperation()) + .pathsToMatch("/api/**") + .build(); + } + + @Bean + public OpenAPI springShopOpenAPI(ObjectMapper customObjectMapper) { + ModelConverters.getInstance().addConverter(new ModelResolver(customObjectMapper)); + return new OpenAPI() + .info(new Info().title("cBioPortal web Public API [Alpha]") + .description("A web service for supplying JSON formatted data to cBioPortal clients. " + + "Please note that this API is currently in beta and subject to change.") + .version("1.0 (beta). Backwards compatibility will be maintained (after 1.0 release)") + .license(new License().name("License").url("https://github.com/cBioPortal/cbioportal/blob/master/LICENSE")) + .contact(new Contact().name("cbioportal").url("https://www.cbioportal.org").email("cbioportal@googlegroups.com"))) + .externalDocs(new ExternalDocumentation() + .description("SpringShop Wiki Documentation") + .url("https://springshop.wiki.github.org/docs")); + } + + @Bean + public OperationCustomizer customizeOperation() { + return (operation, handlerMethod) -> { + // TODO: Add HTTP Action to EndPoint should remove eventually + String httpMethod = extractHttpMethod(handlerMethod); + String originalOperationId = operation.getOperationId(); + String newOperationId = originalOperationId + "Using" + httpMethod; + + operation.setOperationId(newOperationId); + return operation; + }; + } + + private String extractHttpMethod(HandlerMethod handlerMethod) { + Annotation[] declaredAnnotations = handlerMethod.getMethod().getDeclaredAnnotations(); + for (var annotation : declaredAnnotations) { + if (annotation instanceof RequestMapping requestMapping) { + return Stream.of(requestMapping.method()).findFirst().map(RequestMethod::toString).orElse(""); + } + } + return ""; + } + +} diff --git a/web/src/main/java/org/cbioportal/web/config/WebServletContextListener.java b/src/main/java/org/cbioportal/web/config/WebServletContextListener.java similarity index 91% rename from web/src/main/java/org/cbioportal/web/config/WebServletContextListener.java rename to src/main/java/org/cbioportal/web/config/WebServletContextListener.java index d4a2b8eb4ce..b05ec7b710f 100644 --- a/web/src/main/java/org/cbioportal/web/config/WebServletContextListener.java +++ b/src/main/java/org/cbioportal/web/config/WebServletContextListener.java @@ -1,12 +1,12 @@ package org.cbioportal.web.config; -import org.apache.commons.lang3.StringUtils; +import jakarta.servlet.ServletContextEvent; +import jakarta.servlet.ServletContextListener; import org.springframework.beans.factory.InitializingBean; -import javax.servlet.ServletContextEvent; -import javax.servlet.ServletContextListener; import java.io.*; import java.util.Properties; +import org.springframework.util.ObjectUtils; /** * Created by Hongxin Zhang on 11/15/19. @@ -46,13 +46,13 @@ public void afterPropertiesSet() throws Exception { } private void checkOncokbInfo() { - if(StringUtils.isEmpty(this.oncokbToken) && (StringUtils.isEmpty(this.oncokbURL) || this.oncokbURL.equalsIgnoreCase(DEFAULT_ONCOKB_URL))) { - System.out.println("\n----------------------------------------------------------------------------------------------------------------"); + if(ObjectUtils.isEmpty(this.oncokbToken) && (ObjectUtils.isEmpty(this.oncokbURL) || this.oncokbURL.equalsIgnoreCase(DEFAULT_ONCOKB_URL))) { + System.out.println("----------------------------------------------------------------------------------------------------------------"); // oncokb.org is deprecated, www.oncokb.org should be used System.out.println("-- You are connecting to the OncoKB public instance which does not include any therapeutic information."); System.out.println("-- Please consider obtaining a license to support future OncoKB development by following https://docs.cbioportal.org/2.4-integration-with-other-webservices/oncokb-data-access."); System.out.println("-- Thank you."); - System.out.println("----------------------------------------------------------------------------------------------------------------\n"); + System.out.println("----------------------------------------------------------------------------------------------------------------"); } } diff --git a/web/src/main/java/org/cbioportal/web/config/annotation/InternalApi.java b/src/main/java/org/cbioportal/web/config/annotation/InternalApi.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/config/annotation/InternalApi.java rename to src/main/java/org/cbioportal/web/config/annotation/InternalApi.java diff --git a/web/src/main/java/org/cbioportal/web/config/annotation/PublicApi.java b/src/main/java/org/cbioportal/web/config/annotation/PublicApi.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/config/annotation/PublicApi.java rename to src/main/java/org/cbioportal/web/config/annotation/PublicApi.java diff --git a/web/src/main/java/org/cbioportal/web/error/ErrorResponse.java b/src/main/java/org/cbioportal/web/error/ErrorResponse.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/error/ErrorResponse.java rename to src/main/java/org/cbioportal/web/error/ErrorResponse.java diff --git a/web/src/main/java/org/cbioportal/web/error/GlobalExceptionHandler.java b/src/main/java/org/cbioportal/web/error/GlobalExceptionHandler.java similarity index 96% rename from web/src/main/java/org/cbioportal/web/error/GlobalExceptionHandler.java rename to src/main/java/org/cbioportal/web/error/GlobalExceptionHandler.java index b5737b3fd4c..75bc5c55e6e 100644 --- a/web/src/main/java/org/cbioportal/web/error/GlobalExceptionHandler.java +++ b/src/main/java/org/cbioportal/web/error/GlobalExceptionHandler.java @@ -1,5 +1,9 @@ package org.cbioportal.web.error; +import jakarta.validation.ConstraintViolation; +import jakarta.validation.ConstraintViolationException; +import jakarta.validation.ElementKind; +import jakarta.validation.Path; import org.cbioportal.service.exception.*; import org.springframework.beans.TypeMismatchException; import org.springframework.http.HttpStatus; @@ -13,12 +17,12 @@ import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; -import javax.validation.ConstraintViolation; -import javax.validation.ConstraintViolationException; -import javax.validation.ElementKind; -import javax.validation.Path; import java.util.Iterator; + +// TODO +// - consider extending extends ResponseEntityExceptionHandler +// - check controllers for not catching exceptions themselves @ControllerAdvice("org.cbioportal.web") public class GlobalExceptionHandler { diff --git a/web/src/main/java/org/cbioportal/web/interceptor/UniqueKeyInterceptor.java b/src/main/java/org/cbioportal/web/interceptor/UniqueKeyInterceptor.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/interceptor/UniqueKeyInterceptor.java rename to src/main/java/org/cbioportal/web/interceptor/UniqueKeyInterceptor.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/CancerStudyMixin.java b/src/main/java/org/cbioportal/web/mixin/CancerStudyMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/CancerStudyMixin.java rename to src/main/java/org/cbioportal/web/mixin/CancerStudyMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/ClinicalAttributeCountMixin.java b/src/main/java/org/cbioportal/web/mixin/ClinicalAttributeCountMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/ClinicalAttributeCountMixin.java rename to src/main/java/org/cbioportal/web/mixin/ClinicalAttributeCountMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/ClinicalAttributeMixin.java b/src/main/java/org/cbioportal/web/mixin/ClinicalAttributeMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/ClinicalAttributeMixin.java rename to src/main/java/org/cbioportal/web/mixin/ClinicalAttributeMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/ClinicalDataCountMixin.java b/src/main/java/org/cbioportal/web/mixin/ClinicalDataCountMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/ClinicalDataCountMixin.java rename to src/main/java/org/cbioportal/web/mixin/ClinicalDataCountMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/ClinicalDataMixin.java b/src/main/java/org/cbioportal/web/mixin/ClinicalDataMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/ClinicalDataMixin.java rename to src/main/java/org/cbioportal/web/mixin/ClinicalDataMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/ClinicalEventDataMixin.java b/src/main/java/org/cbioportal/web/mixin/ClinicalEventDataMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/ClinicalEventDataMixin.java rename to src/main/java/org/cbioportal/web/mixin/ClinicalEventDataMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/ClinicalEventMixin.java b/src/main/java/org/cbioportal/web/mixin/ClinicalEventMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/ClinicalEventMixin.java rename to src/main/java/org/cbioportal/web/mixin/ClinicalEventMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/CopyNumberSegMixin.java b/src/main/java/org/cbioportal/web/mixin/CopyNumberSegMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/CopyNumberSegMixin.java rename to src/main/java/org/cbioportal/web/mixin/CopyNumberSegMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/DataAccessTokenMixin.java b/src/main/java/org/cbioportal/web/mixin/DataAccessTokenMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/DataAccessTokenMixin.java rename to src/main/java/org/cbioportal/web/mixin/DataAccessTokenMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/DiscreteCopyNumberDataMixin.java b/src/main/java/org/cbioportal/web/mixin/DiscreteCopyNumberDataMixin.java similarity index 83% rename from web/src/main/java/org/cbioportal/web/mixin/DiscreteCopyNumberDataMixin.java rename to src/main/java/org/cbioportal/web/mixin/DiscreteCopyNumberDataMixin.java index 310633fa732..ef9a17f3871 100644 --- a/web/src/main/java/org/cbioportal/web/mixin/DiscreteCopyNumberDataMixin.java +++ b/src/main/java/org/cbioportal/web/mixin/DiscreteCopyNumberDataMixin.java @@ -5,5 +5,5 @@ public class DiscreteCopyNumberDataMixin { @JsonProperty("namespaceColumns") - private String annotationJson; + private Object annotationJson; } \ No newline at end of file diff --git a/web/src/main/java/org/cbioportal/web/mixin/GeneMixin.java b/src/main/java/org/cbioportal/web/mixin/GeneMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/GeneMixin.java rename to src/main/java/org/cbioportal/web/mixin/GeneMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/GenePanelMixin.java b/src/main/java/org/cbioportal/web/mixin/GenePanelMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/GenePanelMixin.java rename to src/main/java/org/cbioportal/web/mixin/GenePanelMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/GenePanelToGeneMixin.java b/src/main/java/org/cbioportal/web/mixin/GenePanelToGeneMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/GenePanelToGeneMixin.java rename to src/main/java/org/cbioportal/web/mixin/GenePanelToGeneMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/GenesetCorrelationMixin.java b/src/main/java/org/cbioportal/web/mixin/GenesetCorrelationMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/GenesetCorrelationMixin.java rename to src/main/java/org/cbioportal/web/mixin/GenesetCorrelationMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/GenesetMixin.java b/src/main/java/org/cbioportal/web/mixin/GenesetMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/GenesetMixin.java rename to src/main/java/org/cbioportal/web/mixin/GenesetMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/GenesetMolecularDataMixin.java b/src/main/java/org/cbioportal/web/mixin/GenesetMolecularDataMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/GenesetMolecularDataMixin.java rename to src/main/java/org/cbioportal/web/mixin/GenesetMolecularDataMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/GisticMixin.java b/src/main/java/org/cbioportal/web/mixin/GisticMixin.java similarity index 90% rename from web/src/main/java/org/cbioportal/web/mixin/GisticMixin.java rename to src/main/java/org/cbioportal/web/mixin/GisticMixin.java index fa0f22f38ec..5913c07dbb5 100644 --- a/web/src/main/java/org/cbioportal/web/mixin/GisticMixin.java +++ b/src/main/java/org/cbioportal/web/mixin/GisticMixin.java @@ -3,6 +3,8 @@ import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; +import java.math.BigDecimal; + public class GisticMixin { @JsonIgnore diff --git a/web/src/main/java/org/cbioportal/web/mixin/GisticToGeneMixin.java b/src/main/java/org/cbioportal/web/mixin/GisticToGeneMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/GisticToGeneMixin.java rename to src/main/java/org/cbioportal/web/mixin/GisticToGeneMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/MolecularProfileMixin.java b/src/main/java/org/cbioportal/web/mixin/MolecularProfileMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/MolecularProfileMixin.java rename to src/main/java/org/cbioportal/web/mixin/MolecularProfileMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/MutSigMixin.java b/src/main/java/org/cbioportal/web/mixin/MutSigMixin.java similarity index 93% rename from web/src/main/java/org/cbioportal/web/mixin/MutSigMixin.java rename to src/main/java/org/cbioportal/web/mixin/MutSigMixin.java index e0973756ef0..f837ef99240 100644 --- a/web/src/main/java/org/cbioportal/web/mixin/MutSigMixin.java +++ b/src/main/java/org/cbioportal/web/mixin/MutSigMixin.java @@ -3,6 +3,8 @@ import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; +import java.math.BigDecimal; + public class MutSigMixin { @JsonIgnore diff --git a/src/main/java/org/cbioportal/web/mixin/MutationMixin.java b/src/main/java/org/cbioportal/web/mixin/MutationMixin.java new file mode 100644 index 00000000000..36e59eaba4e --- /dev/null +++ b/src/main/java/org/cbioportal/web/mixin/MutationMixin.java @@ -0,0 +1,23 @@ +package org.cbioportal.web.mixin; + +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonRawValue; +import io.swagger.v3.oas.annotations.media.Schema; + +public class MutationMixin { + + @JsonProperty("variantAllele") + private String tumorSeqAllele; + @JsonProperty("refseqMrnaId") + private String refseqMrnaId; + @JsonProperty("proteinPosStart") + private Integer proteinPosStart; + @JsonProperty("proteinPosEnd") + private Integer proteinPosEnd; + @JsonProperty("chr") + private String chr; + + @Schema(type = "java.util.Map") + @JsonProperty("namespaceColumns") + private Object annotationJSON; +} diff --git a/web/src/main/java/org/cbioportal/web/mixin/MutationSpectrumMixin.java b/src/main/java/org/cbioportal/web/mixin/MutationSpectrumMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/MutationSpectrumMixin.java rename to src/main/java/org/cbioportal/web/mixin/MutationSpectrumMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/PatientMixin.java b/src/main/java/org/cbioportal/web/mixin/PatientMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/PatientMixin.java rename to src/main/java/org/cbioportal/web/mixin/PatientMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/ReferenceGenomeGeneMixin.java b/src/main/java/org/cbioportal/web/mixin/ReferenceGenomeGeneMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/ReferenceGenomeGeneMixin.java rename to src/main/java/org/cbioportal/web/mixin/ReferenceGenomeGeneMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/ResourceDefinitionMixin.java b/src/main/java/org/cbioportal/web/mixin/ResourceDefinitionMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/ResourceDefinitionMixin.java rename to src/main/java/org/cbioportal/web/mixin/ResourceDefinitionMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/SampleListMixin.java b/src/main/java/org/cbioportal/web/mixin/SampleListMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/SampleListMixin.java rename to src/main/java/org/cbioportal/web/mixin/SampleListMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/SampleMixin.java b/src/main/java/org/cbioportal/web/mixin/SampleMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/SampleMixin.java rename to src/main/java/org/cbioportal/web/mixin/SampleMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/SessionDataMixin.java b/src/main/java/org/cbioportal/web/mixin/SessionDataMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/SessionDataMixin.java rename to src/main/java/org/cbioportal/web/mixin/SessionDataMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/SessionMixin.java b/src/main/java/org/cbioportal/web/mixin/SessionMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/SessionMixin.java rename to src/main/java/org/cbioportal/web/mixin/SessionMixin.java diff --git a/web/src/main/java/org/cbioportal/web/mixin/StructuralVariantMixin.java b/src/main/java/org/cbioportal/web/mixin/StructuralVariantMixin.java similarity index 81% rename from web/src/main/java/org/cbioportal/web/mixin/StructuralVariantMixin.java rename to src/main/java/org/cbioportal/web/mixin/StructuralVariantMixin.java index 54e5283640e..a0d840ed5ff 100644 --- a/web/src/main/java/org/cbioportal/web/mixin/StructuralVariantMixin.java +++ b/src/main/java/org/cbioportal/web/mixin/StructuralVariantMixin.java @@ -5,5 +5,5 @@ public class StructuralVariantMixin { @JsonProperty("namespaceColumns") - private String annotationJson; + private Object annotationJson; } \ No newline at end of file diff --git a/web/src/main/java/org/cbioportal/web/mixin/TypeOfCancerMixin.java b/src/main/java/org/cbioportal/web/mixin/TypeOfCancerMixin.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/mixin/TypeOfCancerMixin.java rename to src/main/java/org/cbioportal/web/mixin/TypeOfCancerMixin.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/BinsGeneratorConfig.java b/src/main/java/org/cbioportal/web/parameter/BinsGeneratorConfig.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/BinsGeneratorConfig.java rename to src/main/java/org/cbioportal/web/parameter/BinsGeneratorConfig.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/ClinicalAttributeCountFilter.java b/src/main/java/org/cbioportal/web/parameter/ClinicalAttributeCountFilter.java similarity index 90% rename from web/src/main/java/org/cbioportal/web/parameter/ClinicalAttributeCountFilter.java rename to src/main/java/org/cbioportal/web/parameter/ClinicalAttributeCountFilter.java index 8bf16750665..63e59aa5944 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/ClinicalAttributeCountFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/ClinicalAttributeCountFilter.java @@ -1,7 +1,7 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import java.util.List; import java.io.Serializable; diff --git a/web/src/main/java/org/cbioportal/web/parameter/ClinicalDataBinCountFilter.java b/src/main/java/org/cbioportal/web/parameter/ClinicalDataBinCountFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/ClinicalDataBinCountFilter.java rename to src/main/java/org/cbioportal/web/parameter/ClinicalDataBinCountFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/ClinicalDataBinFilter.java b/src/main/java/org/cbioportal/web/parameter/ClinicalDataBinFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/ClinicalDataBinFilter.java rename to src/main/java/org/cbioportal/web/parameter/ClinicalDataBinFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/ClinicalDataCountFilter.java b/src/main/java/org/cbioportal/web/parameter/ClinicalDataCountFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/ClinicalDataCountFilter.java rename to src/main/java/org/cbioportal/web/parameter/ClinicalDataCountFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/ClinicalDataFilter.java b/src/main/java/org/cbioportal/web/parameter/ClinicalDataFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/ClinicalDataFilter.java rename to src/main/java/org/cbioportal/web/parameter/ClinicalDataFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/ClinicalDataIdentifier.java b/src/main/java/org/cbioportal/web/parameter/ClinicalDataIdentifier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/ClinicalDataIdentifier.java rename to src/main/java/org/cbioportal/web/parameter/ClinicalDataIdentifier.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/ClinicalDataMultiStudyFilter.java b/src/main/java/org/cbioportal/web/parameter/ClinicalDataMultiStudyFilter.java similarity index 95% rename from web/src/main/java/org/cbioportal/web/parameter/ClinicalDataMultiStudyFilter.java rename to src/main/java/org/cbioportal/web/parameter/ClinicalDataMultiStudyFilter.java index 098141b0abf..784331533e7 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/ClinicalDataMultiStudyFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/ClinicalDataMultiStudyFilter.java @@ -2,7 +2,7 @@ import org.cbioportal.web.ClinicalDataController; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.Size; import java.util.List; import java.io.Serializable; diff --git a/web/src/main/java/org/cbioportal/web/parameter/ClinicalDataSingleStudyFilter.java b/src/main/java/org/cbioportal/web/parameter/ClinicalDataSingleStudyFilter.java similarity index 94% rename from web/src/main/java/org/cbioportal/web/parameter/ClinicalDataSingleStudyFilter.java rename to src/main/java/org/cbioportal/web/parameter/ClinicalDataSingleStudyFilter.java index a80fab8a0df..f76f9daf0b7 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/ClinicalDataSingleStudyFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/ClinicalDataSingleStudyFilter.java @@ -1,8 +1,8 @@ package org.cbioportal.web.parameter; +import jakarta.validation.constraints.Size; import org.cbioportal.web.ClinicalDataController; -import javax.validation.constraints.Size; import java.util.List; import static org.cbioportal.web.parameter.PagingConstants.MAX_PAGE_SIZE; diff --git a/web/src/main/java/org/cbioportal/web/parameter/ClinicalDataType.java b/src/main/java/org/cbioportal/web/parameter/ClinicalDataType.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/ClinicalDataType.java rename to src/main/java/org/cbioportal/web/parameter/ClinicalDataType.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/ClinicalTrackConfig.java b/src/main/java/org/cbioportal/web/parameter/ClinicalTrackConfig.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/ClinicalTrackConfig.java rename to src/main/java/org/cbioportal/web/parameter/ClinicalTrackConfig.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/CoExpressionFilter.java b/src/main/java/org/cbioportal/web/parameter/CoExpressionFilter.java similarity index 93% rename from web/src/main/java/org/cbioportal/web/parameter/CoExpressionFilter.java rename to src/main/java/org/cbioportal/web/parameter/CoExpressionFilter.java index 9f5f06894c4..0bc03751278 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/CoExpressionFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/CoExpressionFilter.java @@ -1,7 +1,7 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import java.util.List; public class CoExpressionFilter { diff --git a/web/src/main/java/org/cbioportal/web/parameter/CopyNumberCountIdentifier.java b/src/main/java/org/cbioportal/web/parameter/CopyNumberCountIdentifier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/CopyNumberCountIdentifier.java rename to src/main/java/org/cbioportal/web/parameter/CopyNumberCountIdentifier.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/CustomGeneList.java b/src/main/java/org/cbioportal/web/parameter/CustomGeneList.java similarity index 90% rename from web/src/main/java/org/cbioportal/web/parameter/CustomGeneList.java rename to src/main/java/org/cbioportal/web/parameter/CustomGeneList.java index 5dd85d5d964..ae762277a51 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/CustomGeneList.java +++ b/src/main/java/org/cbioportal/web/parameter/CustomGeneList.java @@ -3,10 +3,9 @@ import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.databind.ObjectMapper; +import org.cbioportal.utils.removeme.Session; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.cbioportal.session_service.domain.Session; -import org.cbioportal.session_service.domain.SessionType; import java.io.IOException; diff --git a/web/src/main/java/org/cbioportal/web/parameter/CustomGeneListData.java b/src/main/java/org/cbioportal/web/parameter/CustomGeneListData.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/CustomGeneListData.java rename to src/main/java/org/cbioportal/web/parameter/CustomGeneListData.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/DataBinCountFilter.java b/src/main/java/org/cbioportal/web/parameter/DataBinCountFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/DataBinCountFilter.java rename to src/main/java/org/cbioportal/web/parameter/DataBinCountFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/DataBinFilter.java b/src/main/java/org/cbioportal/web/parameter/DataBinFilter.java similarity index 93% rename from web/src/main/java/org/cbioportal/web/parameter/DataBinFilter.java rename to src/main/java/org/cbioportal/web/parameter/DataBinFilter.java index a5d23c0b964..4011b5547a4 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/DataBinFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/DataBinFilter.java @@ -4,7 +4,7 @@ import java.math.BigDecimal; import java.util.List; -import javax.validation.constraints.AssertTrue; +import jakarta.validation.constraints.AssertTrue; import org.springframework.validation.annotation.Validated; @Validated @@ -85,11 +85,11 @@ private boolean rangeIsCoveringCustomBins() { if (this.customBins != null && (start != null || end != null)) { boolean valid = true; for (BigDecimal bin : this.customBins) { - if (start != null && start.compareTo(bin) == 1) { + if (start != null && start.compareTo(bin) > 0) { valid = false; break; } - if (end != null && end.compareTo(bin) == -1) { + if (end != null && end.compareTo(bin) < 0) { valid = false; break; } diff --git a/web/src/main/java/org/cbioportal/web/parameter/DataBinMethod.java b/src/main/java/org/cbioportal/web/parameter/DataBinMethod.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/DataBinMethod.java rename to src/main/java/org/cbioportal/web/parameter/DataBinMethod.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/DataFilter.java b/src/main/java/org/cbioportal/web/parameter/DataFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/DataFilter.java rename to src/main/java/org/cbioportal/web/parameter/DataFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/DataFilterValue.java b/src/main/java/org/cbioportal/web/parameter/DataFilterValue.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/DataFilterValue.java rename to src/main/java/org/cbioportal/web/parameter/DataFilterValue.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/Direction.java b/src/main/java/org/cbioportal/web/parameter/Direction.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/Direction.java rename to src/main/java/org/cbioportal/web/parameter/Direction.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/DiscreteCopyNumberEventType.java b/src/main/java/org/cbioportal/web/parameter/DiscreteCopyNumberEventType.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/DiscreteCopyNumberEventType.java rename to src/main/java/org/cbioportal/web/parameter/DiscreteCopyNumberEventType.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/DiscreteCopyNumberFilter.java b/src/main/java/org/cbioportal/web/parameter/DiscreteCopyNumberFilter.java similarity index 92% rename from web/src/main/java/org/cbioportal/web/parameter/DiscreteCopyNumberFilter.java rename to src/main/java/org/cbioportal/web/parameter/DiscreteCopyNumberFilter.java index ad75c81172a..859575119c4 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/DiscreteCopyNumberFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/DiscreteCopyNumberFilter.java @@ -1,7 +1,7 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import java.util.List; public class DiscreteCopyNumberFilter { diff --git a/web/src/main/java/org/cbioportal/web/parameter/EnrichmentFilter.java b/src/main/java/org/cbioportal/web/parameter/EnrichmentFilter.java similarity index 86% rename from web/src/main/java/org/cbioportal/web/parameter/EnrichmentFilter.java rename to src/main/java/org/cbioportal/web/parameter/EnrichmentFilter.java index 9fd10cd4033..571f086a951 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/EnrichmentFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/EnrichmentFilter.java @@ -1,7 +1,8 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.NotNull; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.NotNull; +import jakarta.validation.constraints.Size; + import java.util.List; public class EnrichmentFilter { diff --git a/web/src/main/java/org/cbioportal/web/parameter/GeneFilter.java b/src/main/java/org/cbioportal/web/parameter/GeneFilter.java similarity index 98% rename from web/src/main/java/org/cbioportal/web/parameter/GeneFilter.java rename to src/main/java/org/cbioportal/web/parameter/GeneFilter.java index dc650928df5..a956f5a63c7 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/GeneFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/GeneFilter.java @@ -5,8 +5,8 @@ import java.util.regex.Matcher; import java.util.regex.Pattern; import java.util.stream.Collectors; -import javax.validation.constraints.AssertTrue; +import jakarta.validation.constraints.AssertTrue; import org.apache.commons.collections4.CollectionUtils; import org.cbioportal.model.CNA; import com.fasterxml.jackson.annotation.JsonIgnore; diff --git a/web/src/main/java/org/cbioportal/web/parameter/GeneIdType.java b/src/main/java/org/cbioportal/web/parameter/GeneIdType.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/GeneIdType.java rename to src/main/java/org/cbioportal/web/parameter/GeneIdType.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenePanelDataFilter.java b/src/main/java/org/cbioportal/web/parameter/GenePanelDataFilter.java similarity index 88% rename from web/src/main/java/org/cbioportal/web/parameter/GenePanelDataFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenePanelDataFilter.java index a2337f14349..9b28bf8c510 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/GenePanelDataFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/GenePanelDataFilter.java @@ -1,7 +1,7 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import java.util.List; public class GenePanelDataFilter { diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenePanelDataMultipleStudyFilter.java b/src/main/java/org/cbioportal/web/parameter/GenePanelDataMultipleStudyFilter.java similarity index 92% rename from web/src/main/java/org/cbioportal/web/parameter/GenePanelDataMultipleStudyFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenePanelDataMultipleStudyFilter.java index 5f8b7a741ef..f4e70978c6b 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/GenePanelDataMultipleStudyFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/GenePanelDataMultipleStudyFilter.java @@ -1,7 +1,7 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import java.util.List; import java.io.Serializable; diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataBinCountFilter.java b/src/main/java/org/cbioportal/web/parameter/GenericAssayDataBinCountFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataBinCountFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenericAssayDataBinCountFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataBinFilter.java b/src/main/java/org/cbioportal/web/parameter/GenericAssayDataBinFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataBinFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenericAssayDataBinFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataCountFilter.java b/src/main/java/org/cbioportal/web/parameter/GenericAssayDataCountFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataCountFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenericAssayDataCountFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataFilter.java b/src/main/java/org/cbioportal/web/parameter/GenericAssayDataFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenericAssayDataFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataMultipleStudyFilter.java b/src/main/java/org/cbioportal/web/parameter/GenericAssayDataMultipleStudyFilter.java similarity index 94% rename from web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataMultipleStudyFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenericAssayDataMultipleStudyFilter.java index 080c4870a81..35a1afb390f 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/GenericAssayDataMultipleStudyFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/GenericAssayDataMultipleStudyFilter.java @@ -1,7 +1,7 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import java.util.List; import java.io.Serializable; diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenericAssayFilter.java b/src/main/java/org/cbioportal/web/parameter/GenericAssayFilter.java similarity index 91% rename from web/src/main/java/org/cbioportal/web/parameter/GenericAssayFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenericAssayFilter.java index 009dca1634f..c0f4a75998c 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/GenericAssayFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/GenericAssayFilter.java @@ -1,7 +1,7 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import java.util.List; public class GenericAssayFilter { diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenericAssayMetaFilter.java b/src/main/java/org/cbioportal/web/parameter/GenericAssayMetaFilter.java similarity index 95% rename from web/src/main/java/org/cbioportal/web/parameter/GenericAssayMetaFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenericAssayMetaFilter.java index f0d69e81a2a..f877912b2a2 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/GenericAssayMetaFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/GenericAssayMetaFilter.java @@ -1,6 +1,6 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.Size; import java.util.List; import java.io.Serializable; diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenesetDataFilterCriteria.java b/src/main/java/org/cbioportal/web/parameter/GenesetDataFilterCriteria.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/GenesetDataFilterCriteria.java rename to src/main/java/org/cbioportal/web/parameter/GenesetDataFilterCriteria.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenomicDataBinCountFilter.java b/src/main/java/org/cbioportal/web/parameter/GenomicDataBinCountFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/GenomicDataBinCountFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenomicDataBinCountFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenomicDataBinFilter.java b/src/main/java/org/cbioportal/web/parameter/GenomicDataBinFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/GenomicDataBinFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenomicDataBinFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenomicDataCountFilter.java b/src/main/java/org/cbioportal/web/parameter/GenomicDataCountFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/GenomicDataCountFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenomicDataCountFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/GenomicDataFilter.java b/src/main/java/org/cbioportal/web/parameter/GenomicDataFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/GenomicDataFilter.java rename to src/main/java/org/cbioportal/web/parameter/GenomicDataFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/Group.java b/src/main/java/org/cbioportal/web/parameter/Group.java similarity index 93% rename from web/src/main/java/org/cbioportal/web/parameter/Group.java rename to src/main/java/org/cbioportal/web/parameter/Group.java index bb4183525f4..ae9e8c184e9 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/Group.java +++ b/src/main/java/org/cbioportal/web/parameter/Group.java @@ -1,9 +1,10 @@ package org.cbioportal.web.parameter; +import jakarta.validation.constraints.Size; + import java.io.Serializable; import java.util.List; -import javax.validation.constraints.Size; public class Group implements Serializable { diff --git a/web/src/main/java/org/cbioportal/web/parameter/GroupFilter.java b/src/main/java/org/cbioportal/web/parameter/GroupFilter.java similarity index 82% rename from web/src/main/java/org/cbioportal/web/parameter/GroupFilter.java rename to src/main/java/org/cbioportal/web/parameter/GroupFilter.java index 45679ace77a..8cfcba4859b 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/GroupFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/GroupFilter.java @@ -1,10 +1,11 @@ package org.cbioportal.web.parameter; +import jakarta.validation.Valid; +import jakarta.validation.constraints.Size; + import java.io.Serializable; import java.util.List; -import javax.validation.Valid; -import javax.validation.constraints.Size; public class GroupFilter implements Serializable { diff --git a/web/src/main/java/org/cbioportal/web/parameter/HeaderKeyConstants.java b/src/main/java/org/cbioportal/web/parameter/HeaderKeyConstants.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/HeaderKeyConstants.java rename to src/main/java/org/cbioportal/web/parameter/HeaderKeyConstants.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/MolecularDataFilter.java b/src/main/java/org/cbioportal/web/parameter/MolecularDataFilter.java similarity index 91% rename from web/src/main/java/org/cbioportal/web/parameter/MolecularDataFilter.java rename to src/main/java/org/cbioportal/web/parameter/MolecularDataFilter.java index e340c9aa06d..d8765076905 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/MolecularDataFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/MolecularDataFilter.java @@ -1,7 +1,8 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; + import java.util.List; public class MolecularDataFilter { diff --git a/web/src/main/java/org/cbioportal/web/parameter/MolecularDataMultipleStudyFilter.java b/src/main/java/org/cbioportal/web/parameter/MolecularDataMultipleStudyFilter.java similarity index 93% rename from web/src/main/java/org/cbioportal/web/parameter/MolecularDataMultipleStudyFilter.java rename to src/main/java/org/cbioportal/web/parameter/MolecularDataMultipleStudyFilter.java index 537d7d28015..3527ca674c1 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/MolecularDataMultipleStudyFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/MolecularDataMultipleStudyFilter.java @@ -1,7 +1,7 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import java.util.List; import java.io.Serializable; diff --git a/web/src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupAndAlterationTypeFilter.java b/src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupAndAlterationTypeFilter.java similarity index 88% rename from web/src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupAndAlterationTypeFilter.java rename to src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupAndAlterationTypeFilter.java index 0c643ae04e2..a8d991ca95e 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupAndAlterationTypeFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupAndAlterationTypeFilter.java @@ -1,18 +1,18 @@ package org.cbioportal.web.parameter; -import io.swagger.annotations.ApiModelProperty; +import io.swagger.v3.oas.annotations.media.Schema; import org.cbioportal.model.AlterationFilter; import java.util.List; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.Size; public class MolecularProfileCasesGroupAndAlterationTypeFilter { private AlterationFilter alterationEventTypes; @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @ApiModelProperty(required = true) + @Schema private List molecularProfileCasesGroupFilter; diff --git a/web/src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupFilter.java b/src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupFilter.java similarity index 95% rename from web/src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupFilter.java rename to src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupFilter.java index cd5656ef6da..decdc4748e5 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/MolecularProfileCasesGroupFilter.java @@ -4,8 +4,8 @@ import java.util.HashSet; import java.util.List; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.Size; import org.cbioportal.model.MolecularProfileCaseIdentifier; public class MolecularProfileCasesGroupFilter { diff --git a/web/src/main/java/org/cbioportal/web/parameter/MolecularProfileFilter.java b/src/main/java/org/cbioportal/web/parameter/MolecularProfileFilter.java similarity index 90% rename from web/src/main/java/org/cbioportal/web/parameter/MolecularProfileFilter.java rename to src/main/java/org/cbioportal/web/parameter/MolecularProfileFilter.java index 27e439a92ae..bc5a460dc9b 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/MolecularProfileFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/MolecularProfileFilter.java @@ -1,7 +1,7 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import java.util.List; import java.io.Serializable; import java.util.Set; diff --git a/src/main/java/org/cbioportal/web/parameter/MutationFilter.java b/src/main/java/org/cbioportal/web/parameter/MutationFilter.java new file mode 100644 index 00000000000..f9d10a3fccd --- /dev/null +++ b/src/main/java/org/cbioportal/web/parameter/MutationFilter.java @@ -0,0 +1,43 @@ +package org.cbioportal.web.parameter; + +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; +import java.util.List; + +public class MutationFilter { + + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + private List sampleIds; + private String sampleListId; + @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) + private List entrezGeneIds; + + @AssertTrue + private boolean isEitherSampleListIdOrSampleIdsPresent() { + return sampleListId != null ^ sampleIds != null; + } + + public List getSampleIds() { + return sampleIds; + } + + public void setSampleIds(List sampleIds) { + this.sampleIds = sampleIds; + } + + public String getSampleListId() { + return sampleListId; + } + + public void setSampleListId(String sampleListId) { + this.sampleListId = sampleListId; + } + + public List getEntrezGeneIds() { + return entrezGeneIds; + } + + public void setEntrezGeneIds(List entrezGeneIds) { + this.entrezGeneIds = entrezGeneIds; + } +} diff --git a/web/src/main/java/org/cbioportal/web/parameter/MutationMultipleStudyFilter.java b/src/main/java/org/cbioportal/web/parameter/MutationMultipleStudyFilter.java similarity index 93% rename from web/src/main/java/org/cbioportal/web/parameter/MutationMultipleStudyFilter.java rename to src/main/java/org/cbioportal/web/parameter/MutationMultipleStudyFilter.java index b59f67dfaaf..c487cf754fa 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/MutationMultipleStudyFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/MutationMultipleStudyFilter.java @@ -1,7 +1,8 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; + import java.util.List; import java.io.Serializable; diff --git a/web/src/main/java/org/cbioportal/web/parameter/MutationPositionIdentifier.java b/src/main/java/org/cbioportal/web/parameter/MutationPositionIdentifier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/MutationPositionIdentifier.java rename to src/main/java/org/cbioportal/web/parameter/MutationPositionIdentifier.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/MutationSpectrumFilter.java b/src/main/java/org/cbioportal/web/parameter/MutationSpectrumFilter.java similarity index 88% rename from web/src/main/java/org/cbioportal/web/parameter/MutationSpectrumFilter.java rename to src/main/java/org/cbioportal/web/parameter/MutationSpectrumFilter.java index 08cfbe3c05d..8d97f0b85f8 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/MutationSpectrumFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/MutationSpectrumFilter.java @@ -1,7 +1,7 @@ package org.cbioportal.web.parameter; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import java.util.List; public class MutationSpectrumFilter { diff --git a/web/src/main/java/org/cbioportal/web/parameter/PageSettings.java b/src/main/java/org/cbioportal/web/parameter/PageSettings.java similarity index 90% rename from web/src/main/java/org/cbioportal/web/parameter/PageSettings.java rename to src/main/java/org/cbioportal/web/parameter/PageSettings.java index 4d7b37ab00f..0d9c32dfe00 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/PageSettings.java +++ b/src/main/java/org/cbioportal/web/parameter/PageSettings.java @@ -2,10 +2,9 @@ import java.io.IOException; +import org.cbioportal.utils.removeme.Session; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.cbioportal.session_service.domain.Session; -import org.cbioportal.session_service.domain.SessionType; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; diff --git a/web/src/main/java/org/cbioportal/web/parameter/PageSettingsData.java b/src/main/java/org/cbioportal/web/parameter/PageSettingsData.java similarity index 97% rename from web/src/main/java/org/cbioportal/web/parameter/PageSettingsData.java rename to src/main/java/org/cbioportal/web/parameter/PageSettingsData.java index 8fb217a7fdb..2a22e333bf8 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/PageSettingsData.java +++ b/src/main/java/org/cbioportal/web/parameter/PageSettingsData.java @@ -3,7 +3,7 @@ import java.io.Serializable; import java.util.Set; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/web/src/main/java/org/cbioportal/web/parameter/PageSettingsIdentifier.java b/src/main/java/org/cbioportal/web/parameter/PageSettingsIdentifier.java similarity index 87% rename from web/src/main/java/org/cbioportal/web/parameter/PageSettingsIdentifier.java rename to src/main/java/org/cbioportal/web/parameter/PageSettingsIdentifier.java index 9f2e8cdfc64..6dbd479e2ad 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/PageSettingsIdentifier.java +++ b/src/main/java/org/cbioportal/web/parameter/PageSettingsIdentifier.java @@ -3,8 +3,8 @@ import java.io.Serializable; import java.util.Set; -import javax.validation.constraints.NotNull; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.NotNull; +import jakarta.validation.constraints.Size; public class PageSettingsIdentifier implements Serializable { diff --git a/web/src/main/java/org/cbioportal/web/parameter/PagingConstants.java b/src/main/java/org/cbioportal/web/parameter/PagingConstants.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/PagingConstants.java rename to src/main/java/org/cbioportal/web/parameter/PagingConstants.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/PatientFilter.java b/src/main/java/org/cbioportal/web/parameter/PatientFilter.java similarity index 91% rename from web/src/main/java/org/cbioportal/web/parameter/PatientFilter.java rename to src/main/java/org/cbioportal/web/parameter/PatientFilter.java index 8155bb7da1d..7f69fb048de 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/PatientFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/PatientFilter.java @@ -2,8 +2,8 @@ import java.io.Serializable; import java.util.List; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; public class PatientFilter implements Serializable { diff --git a/web/src/main/java/org/cbioportal/web/parameter/PatientIdentifier.java b/src/main/java/org/cbioportal/web/parameter/PatientIdentifier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/PatientIdentifier.java rename to src/main/java/org/cbioportal/web/parameter/PatientIdentifier.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/Projection.java b/src/main/java/org/cbioportal/web/parameter/Projection.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/Projection.java rename to src/main/java/org/cbioportal/web/parameter/Projection.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/ResultsPageSettings.java b/src/main/java/org/cbioportal/web/parameter/ResultsPageSettings.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/ResultsPageSettings.java rename to src/main/java/org/cbioportal/web/parameter/ResultsPageSettings.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/SampleFilter.java b/src/main/java/org/cbioportal/web/parameter/SampleFilter.java similarity index 93% rename from web/src/main/java/org/cbioportal/web/parameter/SampleFilter.java rename to src/main/java/org/cbioportal/web/parameter/SampleFilter.java index ed4957be3ab..701dc6181ac 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/SampleFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/SampleFilter.java @@ -1,9 +1,9 @@ package org.cbioportal.web.parameter; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import org.cbioportal.web.SampleController; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; import java.util.List; import java.io.Serializable; diff --git a/web/src/main/java/org/cbioportal/web/parameter/SampleIdentifier.java b/src/main/java/org/cbioportal/web/parameter/SampleIdentifier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/SampleIdentifier.java rename to src/main/java/org/cbioportal/web/parameter/SampleIdentifier.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/SampleMolecularIdentifier.java b/src/main/java/org/cbioportal/web/parameter/SampleMolecularIdentifier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/SampleMolecularIdentifier.java rename to src/main/java/org/cbioportal/web/parameter/SampleMolecularIdentifier.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/SessionPage.java b/src/main/java/org/cbioportal/web/parameter/SessionPage.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/SessionPage.java rename to src/main/java/org/cbioportal/web/parameter/SessionPage.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/StructuralVariantFilter.java b/src/main/java/org/cbioportal/web/parameter/StructuralVariantFilter.java similarity index 95% rename from web/src/main/java/org/cbioportal/web/parameter/StructuralVariantFilter.java rename to src/main/java/org/cbioportal/web/parameter/StructuralVariantFilter.java index b79a29a9509..7d3c831196c 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/StructuralVariantFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/StructuralVariantFilter.java @@ -23,10 +23,9 @@ package org.cbioportal.web.parameter; -import javax.validation.Valid; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; - +import jakarta.validation.Valid; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import org.apache.commons.collections4.CollectionUtils; import org.cbioportal.model.StructuralVariantQuery; diff --git a/web/src/main/java/org/cbioportal/web/parameter/StudyPageSettings.java b/src/main/java/org/cbioportal/web/parameter/StudyPageSettings.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/StudyPageSettings.java rename to src/main/java/org/cbioportal/web/parameter/StudyPageSettings.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/StudyViewFilter.java b/src/main/java/org/cbioportal/web/parameter/StudyViewFilter.java similarity index 98% rename from web/src/main/java/org/cbioportal/web/parameter/StudyViewFilter.java rename to src/main/java/org/cbioportal/web/parameter/StudyViewFilter.java index 6a9e8c9b5a0..b7354ed9b6c 100644 --- a/web/src/main/java/org/cbioportal/web/parameter/StudyViewFilter.java +++ b/src/main/java/org/cbioportal/web/parameter/StudyViewFilter.java @@ -4,13 +4,13 @@ import java.util.List; import java.util.Objects; -import javax.validation.Valid; -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import jakarta.validation.Valid; +import jakarta.validation.constraints.AssertTrue; +import jakarta.validation.constraints.Size; import org.cbioportal.model.AlterationFilter; import org.cbioportal.model.GeneFilter; import org.cbioportal.model.StudyViewStructuralVariantFilter; diff --git a/web/src/main/java/org/cbioportal/web/parameter/VariantCountIdentifier.java b/src/main/java/org/cbioportal/web/parameter/VariantCountIdentifier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/VariantCountIdentifier.java rename to src/main/java/org/cbioportal/web/parameter/VariantCountIdentifier.java diff --git a/src/main/java/org/cbioportal/web/parameter/VirtualStudy.java b/src/main/java/org/cbioportal/web/parameter/VirtualStudy.java new file mode 100644 index 00000000000..d5613860982 --- /dev/null +++ b/src/main/java/org/cbioportal/web/parameter/VirtualStudy.java @@ -0,0 +1,46 @@ +package org.cbioportal.web.parameter; + +import java.io.IOException; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.cbioportal.utils.removeme.Session; + +@JsonIgnoreProperties(ignoreUnknown = true) +public class VirtualStudy extends Session { + + private final Logger LOG = LoggerFactory.getLogger(VirtualStudy.class); + private VirtualStudyData data; + + @Override + public void setData(Object data) { + ObjectMapper mapper = new ObjectMapper(); + try { + this.data = mapper.readValue(mapper.writeValueAsString(data), VirtualStudyData.class); + } catch (IOException e) { + LOG.error("Error occurred", e); + } + } + + @Override + public VirtualStudyData getData() { + return data; + } + + @JsonIgnore + @Override + public String getSource() { + return super.getSource(); + } + + @JsonIgnore + @Override + public SessionType getType() { + return super.getType(); + } + +} diff --git a/web/src/main/java/org/cbioportal/web/parameter/VirtualStudyData.java b/src/main/java/org/cbioportal/web/parameter/VirtualStudyData.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/VirtualStudyData.java rename to src/main/java/org/cbioportal/web/parameter/VirtualStudyData.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/VirtualStudySamples.java b/src/main/java/org/cbioportal/web/parameter/VirtualStudySamples.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/VirtualStudySamples.java rename to src/main/java/org/cbioportal/web/parameter/VirtualStudySamples.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/filter/AndedPatientTreatmentFilters.java b/src/main/java/org/cbioportal/web/parameter/filter/AndedPatientTreatmentFilters.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/filter/AndedPatientTreatmentFilters.java rename to src/main/java/org/cbioportal/web/parameter/filter/AndedPatientTreatmentFilters.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/filter/AndedSampleTreatmentFilters.java b/src/main/java/org/cbioportal/web/parameter/filter/AndedSampleTreatmentFilters.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/filter/AndedSampleTreatmentFilters.java rename to src/main/java/org/cbioportal/web/parameter/filter/AndedSampleTreatmentFilters.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/filter/OredPatientTreatmentFilters.java b/src/main/java/org/cbioportal/web/parameter/filter/OredPatientTreatmentFilters.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/filter/OredPatientTreatmentFilters.java rename to src/main/java/org/cbioportal/web/parameter/filter/OredPatientTreatmentFilters.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/filter/OredSampleTreatmentFilters.java b/src/main/java/org/cbioportal/web/parameter/filter/OredSampleTreatmentFilters.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/filter/OredSampleTreatmentFilters.java rename to src/main/java/org/cbioportal/web/parameter/filter/OredSampleTreatmentFilters.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/filter/PatientTreatmentFilter.java b/src/main/java/org/cbioportal/web/parameter/filter/PatientTreatmentFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/filter/PatientTreatmentFilter.java rename to src/main/java/org/cbioportal/web/parameter/filter/PatientTreatmentFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/filter/SampleTreatmentFilter.java b/src/main/java/org/cbioportal/web/parameter/filter/SampleTreatmentFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/filter/SampleTreatmentFilter.java rename to src/main/java/org/cbioportal/web/parameter/filter/SampleTreatmentFilter.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/CancerTypeSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/CancerTypeSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/CancerTypeSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/CancerTypeSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/ClinicalAttributeSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/ClinicalAttributeSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/ClinicalAttributeSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/ClinicalAttributeSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/ClinicalDataSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/ClinicalDataSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/ClinicalDataSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/ClinicalDataSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/ClinicalEventSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/ClinicalEventSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/ClinicalEventSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/ClinicalEventSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/CopyNumberSegmentSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/CopyNumberSegmentSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/CopyNumberSegmentSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/CopyNumberSegmentSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/DiscreteCopyNumberSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/DiscreteCopyNumberSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/DiscreteCopyNumberSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/DiscreteCopyNumberSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/GenePanelSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/GenePanelSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/GenePanelSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/GenePanelSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/GeneSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/GeneSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/GeneSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/GeneSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/MolecularProfileSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/MolecularProfileSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/MolecularProfileSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/MolecularProfileSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/MutationSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/MutationSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/MutationSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/MutationSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/PatientSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/PatientSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/PatientSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/PatientSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/ResourceDataSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/ResourceDataSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/ResourceDataSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/ResourceDataSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/ResourceDefinitionSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/ResourceDefinitionSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/ResourceDefinitionSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/ResourceDefinitionSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/SampleListSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/SampleListSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/SampleListSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/SampleListSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/SampleSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/SampleSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/SampleSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/SampleSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/SignificantCopyNumberRegionSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/SignificantCopyNumberRegionSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/SignificantCopyNumberRegionSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/SignificantCopyNumberRegionSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/SignificantlyMutatedGeneSortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/SignificantlyMutatedGeneSortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/SignificantlyMutatedGeneSortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/SignificantlyMutatedGeneSortBy.java diff --git a/web/src/main/java/org/cbioportal/web/parameter/sort/StudySortBy.java b/src/main/java/org/cbioportal/web/parameter/sort/StudySortBy.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/parameter/sort/StudySortBy.java rename to src/main/java/org/cbioportal/web/parameter/sort/StudySortBy.java diff --git a/web/src/main/java/org/cbioportal/web/studyview/CustomDataController.java b/src/main/java/org/cbioportal/web/studyview/CustomDataController.java similarity index 81% rename from web/src/main/java/org/cbioportal/web/studyview/CustomDataController.java rename to src/main/java/org/cbioportal/web/studyview/CustomDataController.java index 85e14eb5baa..9df5f7acf14 100644 --- a/web/src/main/java/org/cbioportal/web/studyview/CustomDataController.java +++ b/src/main/java/org/cbioportal/web/studyview/CustomDataController.java @@ -1,22 +1,22 @@ package org.cbioportal.web.studyview; -import java.util.ArrayList; -import java.util.Collection; -import java.util.List; -import java.util.Map; -import java.util.function.Function; -import java.util.stream.Collectors; - -import javax.validation.Valid; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.ArraySchema; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.tags.Tag; +import jakarta.validation.Valid; import org.cbioportal.model.ClinicalDataCountItem; import org.cbioportal.model.Patient; import org.cbioportal.service.CustomDataService; import org.cbioportal.service.PatientService; +import org.cbioportal.service.util.CustomDataSession; import org.cbioportal.web.config.annotation.InternalApi; import org.cbioportal.web.parameter.ClinicalDataCountFilter; import org.cbioportal.web.parameter.ClinicalDataFilter; -import org.cbioportal.service.util.CustomDataSession; import org.cbioportal.web.parameter.SampleIdentifier; import org.cbioportal.web.parameter.StudyViewFilter; import org.cbioportal.web.util.StudyViewFilterApplier; @@ -33,15 +33,18 @@ import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import springfox.documentation.annotations.ApiIgnore; +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; +import java.util.Map; +import java.util.function.Function; +import java.util.stream.Collectors; @InternalApi -@RestController +@RestController() +@RequestMapping("/api") @Validated -@Api(tags = "Study View", description = " ") +@Tag(name = "Study View", description = " ") public class CustomDataController { @Autowired @@ -55,13 +58,15 @@ public class CustomDataController { @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") @RequestMapping(value = "/custom-data-counts/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch custom data counts by study view filter") + @Operation(description = "Fetch custom data counts by study view filter") + @ApiResponse(responseCode = "200", description = "OK", + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ClinicalDataCountItem.class)))) public ResponseEntity> fetchCustomDataCounts( - @ApiParam(required = true, value = "Custom data count filter") @Valid @RequestBody(required = false) ClinicalDataCountFilter clinicalDataCountFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui + @Parameter(required = true, description = "Custom data count filter") @Valid @RequestBody(required = false) ClinicalDataCountFilter clinicalDataCountFilter, + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui // interface @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui + @Parameter(hidden = true) // prevent reference to this attribute in the swagger-ui // interface. this attribute is needed for the // @PreAuthorize tag above. @Valid @RequestAttribute(required = false, value = "interceptedClinicalDataCountFilter") ClinicalDataCountFilter interceptedClinicalDataCountFilter) { diff --git a/web/src/main/java/org/cbioportal/web/util/BinningData.java b/src/main/java/org/cbioportal/web/util/BinningData.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/BinningData.java rename to src/main/java/org/cbioportal/web/util/BinningData.java diff --git a/web/src/main/java/org/cbioportal/web/util/BinningIds.java b/src/main/java/org/cbioportal/web/util/BinningIds.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/BinningIds.java rename to src/main/java/org/cbioportal/web/util/BinningIds.java diff --git a/web/src/main/java/org/cbioportal/web/util/ClinicalDataBinUtil.java b/src/main/java/org/cbioportal/web/util/ClinicalDataBinUtil.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/ClinicalDataBinUtil.java rename to src/main/java/org/cbioportal/web/util/ClinicalDataBinUtil.java diff --git a/web/src/main/java/org/cbioportal/web/util/ClinicalDataEnrichmentUtil.java b/src/main/java/org/cbioportal/web/util/ClinicalDataEnrichmentUtil.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/ClinicalDataEnrichmentUtil.java rename to src/main/java/org/cbioportal/web/util/ClinicalDataEnrichmentUtil.java diff --git a/web/src/main/java/org/cbioportal/web/util/ClinicalDataEqualityFilterApplier.java b/src/main/java/org/cbioportal/web/util/ClinicalDataEqualityFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/ClinicalDataEqualityFilterApplier.java rename to src/main/java/org/cbioportal/web/util/ClinicalDataEqualityFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/ClinicalDataFetcher.java b/src/main/java/org/cbioportal/web/util/ClinicalDataFetcher.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/ClinicalDataFetcher.java rename to src/main/java/org/cbioportal/web/util/ClinicalDataFetcher.java diff --git a/web/src/main/java/org/cbioportal/web/util/ClinicalDataFilterApplier.java b/src/main/java/org/cbioportal/web/util/ClinicalDataFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/ClinicalDataFilterApplier.java rename to src/main/java/org/cbioportal/web/util/ClinicalDataFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/ClinicalDataIntervalFilterApplier.java b/src/main/java/org/cbioportal/web/util/ClinicalDataIntervalFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/ClinicalDataIntervalFilterApplier.java rename to src/main/java/org/cbioportal/web/util/ClinicalDataIntervalFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/CustomDataFilterApplier.java b/src/main/java/org/cbioportal/web/util/CustomDataFilterApplier.java similarity index 98% rename from web/src/main/java/org/cbioportal/web/util/CustomDataFilterApplier.java rename to src/main/java/org/cbioportal/web/util/CustomDataFilterApplier.java index 447a0e5d691..bf4985f15fb 100644 --- a/web/src/main/java/org/cbioportal/web/util/CustomDataFilterApplier.java +++ b/src/main/java/org/cbioportal/web/util/CustomDataFilterApplier.java @@ -1,5 +1,8 @@ package org.cbioportal.web.util; +import static org.cbioportal.utils.removeme.Session.*; + + import org.apache.commons.collections4.map.MultiKeyMap; import org.cbioportal.service.CustomDataService; import org.cbioportal.service.util.CustomDataSession; diff --git a/web/src/main/java/org/cbioportal/web/util/CustomDatatype.java b/src/main/java/org/cbioportal/web/util/CustomDatatype.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/CustomDatatype.java rename to src/main/java/org/cbioportal/web/util/CustomDatatype.java diff --git a/web/src/main/java/org/cbioportal/web/util/DataBinHelper.java b/src/main/java/org/cbioportal/web/util/DataBinHelper.java similarity index 97% rename from web/src/main/java/org/cbioportal/web/util/DataBinHelper.java rename to src/main/java/org/cbioportal/web/util/DataBinHelper.java index 803d98f98b3..6e50f437f5d 100644 --- a/web/src/main/java/org/cbioportal/web/util/DataBinHelper.java +++ b/src/main/java/org/cbioportal/web/util/DataBinHelper.java @@ -1,9 +1,8 @@ package org.cbioportal.web.util; -import com.google.common.collect.Range; import org.cbioportal.model.DataBin; import org.springframework.stereotype.Component; - +import com.google.common.collect.Range; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.*; @@ -23,7 +22,7 @@ public DataBin calcUpperOutlierBin(List gteValues, List // no special outlier min = null; value = ">"; - } else if (gtMin == null || (gteMin != null && gteMin.compareTo(gtMin) == -1)) { + } else if (gtMin == null || (gteMin != null && gteMin.compareTo(gtMin) < 0)) { min = gteMin; value = ">="; } else { @@ -49,7 +48,7 @@ public DataBin calcLowerOutlierBin(List lteValues, List if (ltMax == null && lteMax == null) { max = null; specialValue = "<="; - } else if (lteMax == null || (ltMax != null && lteMax.compareTo(ltMax) == -1)) { + } else if (lteMax == null || (ltMax != null && lteMax.compareTo(ltMax) < 0)) { max = ltMax; specialValue = "<"; } else { @@ -115,12 +114,12 @@ public Range calcBoxRange(List sortedValues) { // we simply set min and max to the same value minValue = sortedValues.get(0); maxValue = minValue; - } else if (q3.compareTo(new BigDecimal("0.001")) != -1 && q3.compareTo(new BigDecimal("1")) == -1) { + } else if (q3.compareTo(new BigDecimal("0.001")) != -1 && q3.compareTo(new BigDecimal("1")) < 0) { //maxValue = Number((q3 + iqr * 1.5).toFixed(3)); //minValue = Number((q1 - iqr * 1.5).toFixed(3)); maxValue = q3upperBoundry.setScale(3, BigDecimal.ROUND_HALF_UP); minValue = q1LowerBoundry.setScale(3, BigDecimal.ROUND_HALF_UP); - } else if (q3.compareTo(BigDecimal.valueOf(0.001)) == -1) { + } else if (q3.compareTo(BigDecimal.valueOf(0.001)) < 0) { // get IQR for very small number(<0.001) maxValue = q3upperBoundry; minValue = q1LowerBoundry; @@ -129,11 +128,11 @@ public Range calcBoxRange(List sortedValues) { minValue = q1LowerBoundry.setScale(1, RoundingMode.FLOOR); } - if (minValue.compareTo(sortedValues.get(0)) == -1) { + if (minValue.compareTo(sortedValues.get(0)) < 0) { minValue = sortedValues.get(0); } - if (maxValue.compareTo(sortedValues.get(sortedValues.size() - 1)) == 1) { + if (maxValue.compareTo(sortedValues.get(sortedValues.size() - 1)) > 0) { maxValue = sortedValues.get(sortedValues.size() - 1); } @@ -152,7 +151,7 @@ public Range calcInterquartileRangeApproximation(List so if (q1.compareTo(q3) == 0 && max.compareTo(q3) == 0) { // filter out max and try again iqr = this.calcInterquartileRangeApproximation( - sortedValues.stream().filter(d -> d.compareTo(max) == -1).collect(Collectors.toList())); + sortedValues.stream().filter(d -> d.compareTo(max) < 0).collect(Collectors.toList())); } // if range is still empty use the original q1 and q3 values @@ -218,7 +217,7 @@ public BigDecimal valueCloseToQ3(List sortedValues) { public List filterIntervals(List intervals, BigDecimal lowerOutlier, BigDecimal upperOutlier) { // remove values that fall outside the lower and upper outlier limits return intervals.stream() - .filter(d -> (lowerOutlier == null || d.compareTo(lowerOutlier) == 1 ) && (upperOutlier == null || d.compareTo(upperOutlier) == -1)) + .filter(d -> (lowerOutlier == null || d.compareTo(lowerOutlier) > 0 ) && (upperOutlier == null || d.compareTo(upperOutlier) < 0)) .collect(Collectors.toList()); } @@ -331,7 +330,7 @@ public boolean isNA(String value) { public boolean isSmallData(List sortedValues) { BigDecimal median = sortedValues.get((int) Math.ceil((sortedValues.size() * (1.0 / 2.0)))); - return median.compareTo(new BigDecimal("0.001")) == -1&& median.compareTo(new BigDecimal("-0.001")) == 1 && median.compareTo(new BigDecimal("0")) != 0; + return median.compareTo(new BigDecimal("0.001")) < 0 && median.compareTo(new BigDecimal("-0.001")) > 0 && median.compareTo(new BigDecimal("0")) != 0; } public String extractOperator(String value) { diff --git a/web/src/main/java/org/cbioportal/web/util/DataBinner.java b/src/main/java/org/cbioportal/web/util/DataBinner.java similarity index 99% rename from web/src/main/java/org/cbioportal/web/util/DataBinner.java rename to src/main/java/org/cbioportal/web/util/DataBinner.java index e478bd61aa4..6002f2df9b6 100644 --- a/web/src/main/java/org/cbioportal/web/util/DataBinner.java +++ b/src/main/java/org/cbioportal/web/util/DataBinner.java @@ -3,8 +3,6 @@ import com.google.common.collect.Range; import org.apache.commons.lang3.math.NumberUtils; import org.cbioportal.model.Binnable; -import org.cbioportal.model.ClinicalData; -import org.cbioportal.model.ClinicalData; import org.cbioportal.model.DataBin; import org.cbioportal.web.parameter.BinsGeneratorConfig; import org.cbioportal.web.parameter.ClinicalDataBinFilter; @@ -17,7 +15,6 @@ import java.util.*; import java.util.function.Predicate; import java.util.stream.Collectors; -import java.util.stream.Stream; @Component public class DataBinner { diff --git a/web/src/main/java/org/cbioportal/web/util/DataFilterApplier.java b/src/main/java/org/cbioportal/web/util/DataFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/DataFilterApplier.java rename to src/main/java/org/cbioportal/web/util/DataFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/DiscreteDataBinner.java b/src/main/java/org/cbioportal/web/util/DiscreteDataBinner.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/DiscreteDataBinner.java rename to src/main/java/org/cbioportal/web/util/DiscreteDataBinner.java diff --git a/src/main/java/org/cbioportal/web/util/GoogleAnalyticsInterceptor.java b/src/main/java/org/cbioportal/web/util/GoogleAnalyticsInterceptor.java new file mode 100644 index 00000000000..540e8f2ab79 --- /dev/null +++ b/src/main/java/org/cbioportal/web/util/GoogleAnalyticsInterceptor.java @@ -0,0 +1,117 @@ +package org.cbioportal.web.util; + +import java.util.Arrays; +import java.util.concurrent.CompletableFuture; + +import jakarta.annotation.PostConstruct; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; +import org.springframework.http.*; +import org.springframework.stereotype.Component; +import org.springframework.util.LinkedMultiValueMap; +import org.springframework.web.client.RestClientException; +import org.springframework.web.client.RestTemplate; +import org.springframework.web.servlet.HandlerInterceptor; + +// TODO: Double check, needed to convert HandlerInterceptorAdapter to HandlerInterceptor +@Component +@ConditionalOnExpression("!'${google.analytics.tracking.code.api:}'.isEmpty() || !'${google.analytics.application.client.id:}'.isEmpty()") +public class GoogleAnalyticsInterceptor implements HandlerInterceptor { + + private static final Logger LOG = LoggerFactory.getLogger(GoogleAnalyticsInterceptor.class); + + @Value("${google.analytics.tracking.code.api:}") + private String trackingId; + + @Value("${google.analytics.application.client.id:}") + private String clientId; + + private static HttpHeaders defaultHeaders; + private static LinkedMultiValueMap globalURIVariables; + private boolean missingGoogleAnalyticsCredentials; + + @PostConstruct + private void initializeDefaultParams() { + + missingGoogleAnalyticsCredentials = trackingId.isEmpty() || clientId.isEmpty(); + if (missingGoogleAnalyticsCredentials) { + if (LOG.isInfoEnabled()) { + LOG.info("@PostContruct:"); + LOG.info("Google Analytics tracking id: {}", trackingId); + LOG.info("Google Analytics client id: {}", clientId); + } + return; + } + + defaultHeaders = new HttpHeaders(); + defaultHeaders.setAccept(Arrays.asList(MediaType.ALL)); + defaultHeaders.setContentType(MediaType.APPLICATION_FORM_URLENCODED); + defaultHeaders.set(HttpHeaders.USER_AGENT, "cBioPortal API Reporting/1.0 via org.cbioportal.web.util.GoogleAnalyticsInterceptor"); + + globalURIVariables = new LinkedMultiValueMap<>(); + globalURIVariables.add("v", "1"); + globalURIVariables.add("dt", "request logged by GoogleAnalyticsInterceptor"); + globalURIVariables.add("t", "pageview"); + globalURIVariables.add("tid", trackingId); + globalURIVariables.add("cid", clientId); + globalURIVariables.add("dh", "cbioportal.org"); + } + + @Override + public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) { + + if (invalidAfterCompletionArgs(response)) { + return; + } + + CompletableFuture.runAsync(() -> { + LinkedMultiValueMap thisTasksURIVariables = new LinkedMultiValueMap<>(); + thisTasksURIVariables.putAll(globalURIVariables); + thisTasksURIVariables.add("dp", request.getRequestURI()); + HttpEntity> requestEntity = + new HttpEntity<>(thisTasksURIVariables, defaultHeaders); + try { + RestTemplate restTemplate = new RestTemplate(); + ResponseEntity responseEntity = + restTemplate.exchange("https://www.google-analytics.com/collect", HttpMethod.POST, requestEntity, String.class); + HttpStatusCode responseStatus = responseEntity.getStatusCode(); + if (responseStatus.is2xxSuccessful()) { + if (LOG.isInfoEnabled()) { + LOG.info("CompletableFuture.runAsync(): POST request successfully sent to Google Analytics: "); + LOG.info(requestEntity.toString()); + } + } + else { + if (LOG.isInfoEnabled()) { + LOG.info("CompletableFuture.runAsync(): POST request to Google Analytics failed. HTTP status code: " + + Integer.toString(responseStatus.value())); + } + } + } + catch(RestClientException e) { + e.printStackTrace(); + } + }); + } + + // TODO I think this bean should not be created when no Google analytics are configured. + private boolean invalidAfterCompletionArgs(HttpServletResponse response) { + if (missingGoogleAnalyticsCredentials || response.getHeader("referer") != null) { + if (LOG.isInfoEnabled()) { + LOG.info("afterCompletion() cannot be completed:"); + if (missingGoogleAnalyticsCredentials) { + LOG.info("Invalid Google Analytics credentials (see @PostConstruct log entry)"); + } + else { + LOG.info("Response referer is not null"); + } + } + return true; + } + return false; + } +} diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/GzippedInputStreamRequestWrapper.java b/src/main/java/org/cbioportal/web/util/GzippedInputStreamRequestWrapper.java similarity index 84% rename from core/src/main/java/org/mskcc/cbio/portal/util/GzippedInputStreamRequestWrapper.java rename to src/main/java/org/cbioportal/web/util/GzippedInputStreamRequestWrapper.java index c3c9b3f2ddf..2d8b4bc9b90 100644 --- a/core/src/main/java/org/mskcc/cbio/portal/util/GzippedInputStreamRequestWrapper.java +++ b/src/main/java/org/cbioportal/web/util/GzippedInputStreamRequestWrapper.java @@ -1,8 +1,10 @@ -package org.mskcc.cbio.portal.util; +package org.cbioportal.web.util; + +import jakarta.servlet.ReadListener; +import jakarta.servlet.ServletInputStream; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletRequestWrapper; -import javax.servlet.ServletInputStream; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletRequestWrapper; import java.io.*; import java.util.zip.GZIPInputStream; @@ -15,35 +17,6 @@ public class GzippedInputStreamRequestWrapper extends HttpServletRequestWrapper inputStream = inflate(request.getInputStream(), maxInflatedRequestBodySize); } - /** - * Inflates the compressed input stream all at once. Previously, we wrapped the compressed ServletInputStream - * stream with a GZIPInputStream, and read from that gradually. For some reason, that approach resulted in - * very long inflation times. By reading out everything from the GZIPInputStream here in the constructor, we - * managed to get down to the sub second performance you would expect with gzipping. - */ - private ByteArrayInputStream inflate(ServletInputStream requestStream, int maxInflatedRequestBodySize) throws IOException { - GZIPInputStream gzipInputStream = new GZIPInputStream(requestStream, BUFFER_SIZE); - ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); - byte[] buffer = new byte[BUFFER_SIZE]; - int len; - long byteCount = 0; - - while((len = gzipInputStream.read(buffer)) > 0) { - outputStream.write(buffer, 0, len); - byteCount += BUFFER_SIZE; - - if (byteCount > maxInflatedRequestBodySize) { - throw new IOException( - "Inflated request body too large (> " - + maxInflatedRequestBodySize - + " bytes)" - ); - } - } - - return new ByteArrayInputStream(outputStream.toByteArray()); - } - @Override public ServletInputStream getInputStream() throws IOException { return new ServletInputStream() { @@ -57,6 +30,21 @@ public int readLine(byte[] b, int off, int len) throws IOException { return super.readLine(b, off, len); } + @Override + public boolean isFinished() { + return true; + } + + @Override + public boolean isReady() { + return false; + } + + @Override + public void setReadListener(ReadListener readListener) { + + } + @Override public int read(byte[] bytes) throws IOException { return super.read(bytes); @@ -79,4 +67,34 @@ public void close() throws IOException { public BufferedReader getReader() throws IOException { return new BufferedReader(new InputStreamReader(getInputStream())); } -} + + /** + * Inflates the compressed input stream all at once. Previously, we wrapped the compressed ServletInputStream + * stream with a GZIPInputStream, and read from that gradually. For some reason, that approach resulted in + * very long inflation times. By reading out everything from the GZIPInputStream here in the constructor, we + * managed to get down to the sub second performance you would expect with gzipping. + */ + private ByteArrayInputStream inflate(ServletInputStream requestStream, int maxInflatedRequestBodySize) throws IOException { + GZIPInputStream gzipInputStream = new GZIPInputStream(requestStream, BUFFER_SIZE); + ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); + byte[] buffer = new byte[BUFFER_SIZE]; + int len; + long byteCount = 0; + + while((len = gzipInputStream.read(buffer)) > 0) { + outputStream.write(buffer, 0, len); + byteCount += BUFFER_SIZE; + + if (byteCount > maxInflatedRequestBodySize) { + throw new IOException( + "Inflated request body too large (> " + + maxInflatedRequestBodySize + + " bytes)" + ); + } + } + + return new ByteArrayInputStream(outputStream.toByteArray()); + } + +} \ No newline at end of file diff --git a/src/main/java/org/cbioportal/web/util/HttpRequestUtils.java b/src/main/java/org/cbioportal/web/util/HttpRequestUtils.java new file mode 100644 index 00000000000..325a5cf35bf --- /dev/null +++ b/src/main/java/org/cbioportal/web/util/HttpRequestUtils.java @@ -0,0 +1,33 @@ +package org.cbioportal.web.util; + +import java.util.Enumeration; + +import jakarta.servlet.http.HttpServletRequest; +import org.json.simple.JSONObject; +import org.springframework.stereotype.Component; + +@Component +public class HttpRequestUtils { + + public JSONObject getPostData(HttpServletRequest request) { + // To support posted query data (when data would exceed URL length), + // write all post params to json on page where it can be consumed. + JSONObject paramsJson = new JSONObject(); + if (request.getMethod().equals("POST")) { + Enumeration parameterNames = request.getParameterNames(); + while (parameterNames.hasMoreElements()) { + String parameterName = parameterNames.nextElement(); + paramsJson.put(parameterName, request.getParameter(parameterName)); + } + } + return paramsJson; + } + + public String getBaseUrl(HttpServletRequest request) { + String currentUrl = request.getRequestURL().toString(); + String contextPath = request.getContextPath(); + String baseURL = currentUrl.substring(0, currentUrl.length() - request.getRequestURI().length()) + contextPath; + return baseURL.replaceAll("https?://", ""); + } + +} diff --git a/web/src/main/java/org/cbioportal/web/util/IdPopulator.java b/src/main/java/org/cbioportal/web/util/IdPopulator.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/IdPopulator.java rename to src/main/java/org/cbioportal/web/util/IdPopulator.java diff --git a/web/src/main/java/org/cbioportal/web/util/InvolvedCancerStudyExtractorInterceptor.java b/src/main/java/org/cbioportal/web/util/InvolvedCancerStudyExtractorInterceptor.java similarity index 93% rename from web/src/main/java/org/cbioportal/web/util/InvolvedCancerStudyExtractorInterceptor.java rename to src/main/java/org/cbioportal/web/util/InvolvedCancerStudyExtractorInterceptor.java index 91720ee1f81..7e500845fb1 100644 --- a/web/src/main/java/org/cbioportal/web/util/InvolvedCancerStudyExtractorInterceptor.java +++ b/src/main/java/org/cbioportal/web/util/InvolvedCancerStudyExtractorInterceptor.java @@ -33,32 +33,60 @@ package org.cbioportal.web.util; import com.fasterxml.jackson.databind.ObjectMapper; -import java.util.*; -import java.util.stream.Collectors; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.HashSet; +import java.util.List; +import java.util.Set; +import java.util.stream.Collectors; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import org.cbioportal.model.AlterationFilter; import org.cbioportal.model.MolecularProfile; import org.cbioportal.model.MolecularProfileCaseIdentifier; import org.cbioportal.model.SampleList; import org.cbioportal.persistence.cachemaputil.CacheMapUtil; -import org.cbioportal.web.parameter.*; +import org.cbioportal.web.parameter.ClinicalAttributeCountFilter; +import org.cbioportal.web.parameter.ClinicalDataBinCountFilter; +import org.cbioportal.web.parameter.ClinicalDataCountFilter; +import org.cbioportal.web.parameter.ClinicalDataIdentifier; +import org.cbioportal.web.parameter.ClinicalDataMultiStudyFilter; +import org.cbioportal.web.parameter.GenePanelDataMultipleStudyFilter; +import org.cbioportal.web.parameter.GenericAssayDataBinCountFilter; +import org.cbioportal.web.parameter.GenericAssayDataCountFilter; +import org.cbioportal.web.parameter.GenericAssayDataMultipleStudyFilter; +import org.cbioportal.web.parameter.GenomicDataBinCountFilter; +import org.cbioportal.web.parameter.GenomicDataCountFilter; +import org.cbioportal.web.parameter.GroupFilter; +import org.cbioportal.web.parameter.MolecularDataMultipleStudyFilter; +import org.cbioportal.web.parameter.MolecularProfileCasesGroupAndAlterationTypeFilter; +import org.cbioportal.web.parameter.MolecularProfileCasesGroupFilter; +import org.cbioportal.web.parameter.MolecularProfileFilter; +import org.cbioportal.web.parameter.MutationMultipleStudyFilter; +import org.cbioportal.web.parameter.PatientFilter; +import org.cbioportal.web.parameter.PatientIdentifier; +import org.cbioportal.web.parameter.SampleFilter; +import org.cbioportal.web.parameter.SampleIdentifier; +import org.cbioportal.web.parameter.SampleMolecularIdentifier; +import org.cbioportal.web.parameter.StructuralVariantFilter; +import org.cbioportal.web.parameter.StudyViewFilter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Component; -import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.web.servlet.HandlerInterceptor; -@Component -public class InvolvedCancerStudyExtractorInterceptor extends HandlerInterceptorAdapter { +public class InvolvedCancerStudyExtractorInterceptor implements HandlerInterceptor { @Autowired private UniqueKeyExtractor uniqueKeyExtractor; private ObjectMapper objectMapper = new ObjectMapper(); + @Qualifier("staticRefCacheMapUtil") @Autowired private CacheMapUtil cacheMapUtil; @@ -106,11 +134,14 @@ public class InvolvedCancerStudyExtractorInterceptor extends HandlerInterceptorA public static final String GENERIC_ASSAY_BINARY_ENRICHMENT_FETCH_PATH = "/generic-assay-binary-enrichments/fetch"; public static final String CLINICAL_EVENT_TYPE_COUNT_FETCH_PATH = "/clinical-event-type-counts/fetch"; - @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { + @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) { if (!request.getMethod().equals("POST")) { return true; // no attribute extraction needed because all user supplied filter objects are in POST requests } - String requestPathInfo = request.getPathInfo(); + // TODO when reimplemeting different dispatcherservlets with different context roots + // reset this to 'String requestPathInfo = request.getPathInfo();' + String requestPathInfo = request.getPathInfo() == null? request.getServletPath() : request.getPathInfo(); + requestPathInfo = requestPathInfo.replaceFirst("^/api", ""); if (requestPathInfo.equals(PATIENT_FETCH_PATH)) { return extractAttributesFromPatientFilter(request); } else if (requestPathInfo.equals(SAMPLE_FETCH_PATH)) { @@ -187,7 +218,7 @@ private boolean extractAttributesFromPatientFilter(HttpServletRequest request) { private Collection extractCancerStudyIdsFromPatientFilter(PatientFilter patientFilter) { // use hashset as the study list in the patientFilter will usually be populated with many duplicate values - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); if (patientFilter.getPatientIdentifiers() != null) { for (PatientIdentifier patientIdentifier : patientFilter.getPatientIdentifiers()) { studyIdSet.add(patientIdentifier.getStudyId()); @@ -218,7 +249,7 @@ private boolean extractAttributesFromSampleFilter(HttpServletRequest request) { private Collection extractCancerStudyIdsFromSampleFilter(SampleFilter sampleFilter) { // use hashset as the study list in the sampleFilter will usually be populated with many duplicate values - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); if (sampleFilter.getSampleListIds() != null) { extractCancerStudyIdsFromSampleListIds(sampleFilter.getSampleListIds(), studyIdSet); } else if (sampleFilter.getSampleIdentifiers() != null) { @@ -249,7 +280,7 @@ private boolean extractAttributesFromMolecularProfileFilter(HttpServletRequest r private Collection extractCancerStudyIdsFromMolecularProfileFilter(MolecularProfileFilter molecularProfileFilter) { // use hashset as the study list in the molecularProfileFilter may be populated with many duplicate values - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); if (molecularProfileFilter.getStudyIds() != null) { studyIdSet.addAll(molecularProfileFilter.getStudyIds()); } else { @@ -278,7 +309,7 @@ private boolean extractAttributesFromClinicalAttributeCountFilter(HttpServletReq private Collection extractCancerStudyIdsFromClinicalAttributeCountFilter(ClinicalAttributeCountFilter clinicalAttributeCountFilter) { // use hashset as the study list in the clinicalAttributeCountFilter may be populated with many duplicate values - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); if (clinicalAttributeCountFilter.getSampleListId() != null) { extractCancerStudyIdsFromSampleListIds(Arrays.asList(clinicalAttributeCountFilter.getSampleListId()), studyIdSet); } else { @@ -307,7 +338,7 @@ private boolean extractAttributesFromClinicalDataMultiStudyFilter(HttpServletReq private Collection extractCancerStudyIdsFromClinicalDataMultiStudyFilter(ClinicalDataMultiStudyFilter clinicalDataMultiStudyFilter) { // use hashset as the study list in the clinicalDataMultiStudyFilter may be populated with many duplicate values - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); for(ClinicalDataIdentifier clinicalDataIdentifier : clinicalDataMultiStudyFilter.getIdentifiers()) { studyIdSet.add(clinicalDataIdentifier.getStudyId()); } @@ -333,7 +364,7 @@ private boolean extractAttributesFromGenePanelDataMultipleStudyFilter(HttpServle } private Collection extractCancerStudyIdsFromGenePanelDataMultipleStudyFilter(GenePanelDataMultipleStudyFilter genePanelDataMultipleStudyFilter) { - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); if (genePanelDataMultipleStudyFilter.getMolecularProfileIds() != null) { extractCancerStudyIdsFromMolecularProfileIds(genePanelDataMultipleStudyFilter.getMolecularProfileIds(), studyIdSet); } else { @@ -361,7 +392,7 @@ private boolean extractAttributesFromMolecularDataMultipleStudyFilter(HttpServle } private Collection extractCancerStudyIdsFromMolecularDataMultipleStudyFilter(MolecularDataMultipleStudyFilter molecularDataMultipleStudyFilter) { - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); if (molecularDataMultipleStudyFilter.getMolecularProfileIds() != null) { extractCancerStudyIdsFromMolecularProfileIds(molecularDataMultipleStudyFilter.getMolecularProfileIds(), studyIdSet); } else { @@ -389,7 +420,7 @@ private boolean extractAttributesFromGenericAssayDataMultipleStudyFilter(HttpSer } private Collection extractCancerStudyIdsFromGenericAssayDataMultipleStudyFilter(GenericAssayDataMultipleStudyFilter genericAssayDataMultipleStudyFilter) { - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); if (genericAssayDataMultipleStudyFilter.getMolecularProfileIds() != null) { extractCancerStudyIdsFromMolecularProfileIds(genericAssayDataMultipleStudyFilter.getMolecularProfileIds(), studyIdSet); } else { @@ -417,7 +448,7 @@ private boolean extractAttributesFromMutationMultipleStudyFilter(HttpServletRequ } private Set extractCancerStudyIdsFromMutationMultipleStudyFilter(MutationMultipleStudyFilter mutationMultipleStudyFilter) { - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); if (mutationMultipleStudyFilter.getMolecularProfileIds() != null) { extractCancerStudyIdsFromMolecularProfileIds(mutationMultipleStudyFilter.getMolecularProfileIds(), studyIdSet); } else { @@ -685,7 +716,7 @@ private boolean extractAttributesFromStructuralVariantFilter(HttpServletRequest } private Collection extractCancerStudyIdsFromStructuralVariantFilter(StructuralVariantFilter structuralVariantFilter) { - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); if (structuralVariantFilter.getSampleMolecularIdentifiers() != null) { // controller handler will preferentially use SampleMolecularIdentifiers if they are present in the filter extractCancerStudyIdsFromSampleMolecularIdentifiers(structuralVariantFilter.getSampleMolecularIdentifiers(), studyIdSet); @@ -699,7 +730,7 @@ private Collection extractCancerStudyIdsFromStructuralVariantFilter(Stru } private Set extractCancerStudyIdsFromSampleIdentifiers(Collection sampleIdentifiers) { - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); extractCancerStudyIdsFromSampleIdentifiers(sampleIdentifiers, studyIdSet); return studyIdSet; } @@ -726,7 +757,7 @@ private void extractCancerStudyIdsFromMolecularProfileIds(Collection mol private void extractCancerStudyIdsFromSampleMolecularIdentifiers(List sampleMolecularIdentifiers, Set studyIdSet) { // use hashset as the study list in sampleMolecularIdentifiers may be populated with duplicate values - Set molecularProfileIds = new HashSet(); + Set molecularProfileIds = new HashSet<>(); for (SampleMolecularIdentifier sampleMolecularIdentifier: sampleMolecularIdentifiers) { molecularProfileIds.add(sampleMolecularIdentifier.getMolecularProfileId()); } @@ -738,7 +769,7 @@ private Set extractCancerStudyIdsFromClinicalDataBinCountFilter( if (clinicalDataBinCountFilter.getStudyViewFilter() != null) { return extractCancerStudyIdsFromStudyViewFilter(clinicalDataBinCountFilter.getStudyViewFilter()); } - return new HashSet(); + return new HashSet<>(); } private Set extractCancerStudyIdsFromGenomicDataBinCountFilter( @@ -746,7 +777,7 @@ private Set extractCancerStudyIdsFromGenomicDataBinCountFilter( if (genomicDataBinCountFilter.getStudyViewFilter() != null) { return extractCancerStudyIdsFromStudyViewFilter(genomicDataBinCountFilter.getStudyViewFilter()); } - return new HashSet(); + return new HashSet<>(); } private Set extractCancerStudyIdsFromGenomicDataCountFilter( @@ -762,7 +793,7 @@ private Set extractCancerStudyIdsFromGenericAssayDataBinCountFilter( if (genericAssayDataBinCountFilter.getStudyViewFilter() != null) { return extractCancerStudyIdsFromStudyViewFilter(genericAssayDataBinCountFilter.getStudyViewFilter()); } - return new HashSet(); + return new HashSet<>(); } private Set extractCancerStudyIdsFromGenericAssayDataCountFilter( @@ -770,7 +801,7 @@ private Set extractCancerStudyIdsFromGenericAssayDataCountFilter( if (genericAssayDataCountFilter.getStudyViewFilter() != null) { return extractCancerStudyIdsFromStudyViewFilter(genericAssayDataCountFilter.getStudyViewFilter()); } - return new HashSet(); + return new HashSet<>(); } private Set extractCancerStudyIdsFromClinicalDataCountFilter( @@ -778,11 +809,11 @@ private Set extractCancerStudyIdsFromClinicalDataCountFilter( if (clinicalDataCountFilter.getStudyViewFilter() != null) { return extractCancerStudyIdsFromStudyViewFilter(clinicalDataCountFilter.getStudyViewFilter()); } - return new HashSet(); + return new HashSet<>(); } private Set extractCancerStudyIdsFromStudyViewFilter(StudyViewFilter studyViewFilter) { - Set studyIdSet = new HashSet(); + Set studyIdSet = new HashSet<>(); if (studyViewFilter.getSampleIdentifiers() != null && !studyViewFilter.getSampleIdentifiers().isEmpty()) { extractCancerStudyIdsFromSampleIdentifiers(studyViewFilter.getSampleIdentifiers(), studyIdSet); } else { diff --git a/web/src/main/java/org/cbioportal/web/util/LinearDataBinner.java b/src/main/java/org/cbioportal/web/util/LinearDataBinner.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/LinearDataBinner.java rename to src/main/java/org/cbioportal/web/util/LinearDataBinner.java diff --git a/web/src/main/java/org/cbioportal/web/util/LogScaleDataBinner.java b/src/main/java/org/cbioportal/web/util/LogScaleDataBinner.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/LogScaleDataBinner.java rename to src/main/java/org/cbioportal/web/util/LogScaleDataBinner.java diff --git a/core/src/main/java/org/mskcc/cbio/portal/util/RequestBodyGZipFilter.java b/src/main/java/org/cbioportal/web/util/RequestBodyGZipFilter.java similarity index 90% rename from core/src/main/java/org/mskcc/cbio/portal/util/RequestBodyGZipFilter.java rename to src/main/java/org/cbioportal/web/util/RequestBodyGZipFilter.java index c1f9461a17e..7c68698c38c 100644 --- a/core/src/main/java/org/mskcc/cbio/portal/util/RequestBodyGZipFilter.java +++ b/src/main/java/org/cbioportal/web/util/RequestBodyGZipFilter.java @@ -1,12 +1,12 @@ -package org.mskcc.cbio.portal.util; +package org.cbioportal.web.util; -import com.google.common.net.HttpHeaders; +import jakarta.servlet.*; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import org.springframework.beans.factory.annotation.Value; +import org.springframework.http.HttpHeaders; import org.springframework.stereotype.Component; -import javax.servlet.*; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; import java.io.IOException; @Component("requestBodyGZipFilter") @@ -19,7 +19,7 @@ public class RequestBodyGZipFilter implements Filter { */ @Value("${request_gzip_body_size_bytes:80000000}") private int maxInflatedRequestBodySize; - + @Value("${enable_request_body_gzip_compression:false}") private boolean enabled; @@ -61,8 +61,8 @@ public final void doFilter( if (!requestTypeSupported) { throw new IllegalStateException( "Received request with a Content-Encoding: gzip header and a request method of: " + - request.getMethod() - + " Only POST requests are supported." + request.getMethod() + + " Only POST requests are supported." ); } @@ -71,7 +71,7 @@ public final void doFilter( chain.doFilter(request, response); } - + @Override public final void destroy() { // Nothing to destroy (Sonar asks you to comment if you leave a method empty) diff --git a/src/main/java/org/cbioportal/web/util/ResettableHttpServletRequestFilter.java b/src/main/java/org/cbioportal/web/util/ResettableHttpServletRequestFilter.java new file mode 100644 index 00000000000..b34fe2eaaab --- /dev/null +++ b/src/main/java/org/cbioportal/web/util/ResettableHttpServletRequestFilter.java @@ -0,0 +1,41 @@ +package org.cbioportal.web.util; + +import java.io.IOException; + +import jakarta.servlet.*; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import org.slf4j.LoggerFactory; +import org.slf4j.Logger; +import org.springframework.stereotype.Component; +import org.springframework.web.util.ContentCachingRequestWrapper; +import org.springframework.web.util.ContentCachingResponseWrapper; + + +/** + * + * @author ochoaa + * + */ +@Component +public class ResettableHttpServletRequestFilter implements Filter { + private Logger LOG = LoggerFactory.getLogger(ResettableHttpServletRequestFilter.class); + + @Override + public void init(FilterConfig aChain) throws ServletException { + // do nothing + } + + @Override + public void doFilter(ServletRequest request, ServletResponse response, FilterChain filterChain) throws IOException, ServletException { + ContentCachingRequestWrapper wrappedRequest = new ContentCachingRequestWrapper((HttpServletRequest) request); + ContentCachingResponseWrapper wrappedResponse = new ContentCachingResponseWrapper((HttpServletResponse) response); + filterChain.doFilter(wrappedRequest, wrappedResponse); + wrappedResponse.copyBodyToResponse(); + } + + @Override + public void destroy() { + // do nothing + } +} diff --git a/web/src/main/java/org/cbioportal/web/util/ScientificSmallDataBinner.java b/src/main/java/org/cbioportal/web/util/ScientificSmallDataBinner.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/ScientificSmallDataBinner.java rename to src/main/java/org/cbioportal/web/util/ScientificSmallDataBinner.java diff --git a/web/src/main/java/org/cbioportal/web/util/StudyViewFilterApplier.java b/src/main/java/org/cbioportal/web/util/StudyViewFilterApplier.java similarity index 99% rename from web/src/main/java/org/cbioportal/web/util/StudyViewFilterApplier.java rename to src/main/java/org/cbioportal/web/util/StudyViewFilterApplier.java index 0b97b6df954..de4e5440e10 100644 --- a/web/src/main/java/org/cbioportal/web/util/StudyViewFilterApplier.java +++ b/src/main/java/org/cbioportal/web/util/StudyViewFilterApplier.java @@ -19,13 +19,11 @@ import org.springframework.context.ApplicationContext; import org.springframework.stereotype.Component; -import javax.annotation.PostConstruct; @Component public class StudyViewFilterApplier { @Autowired private ApplicationContext applicationContext; - StudyViewFilterApplier instance; // This gets initialized and overwritten. We do this because Spring's unit tests // don't know how to autowire this, even though production Spring does. If we @@ -33,10 +31,6 @@ public class StudyViewFilterApplier { @Autowired private List subFilterAppliers = new ArrayList<>(); - @PostConstruct - private void init() { - instance = applicationContext.getBean(StudyViewFilterApplier.class); - } @Autowired private SampleService sampleService; @@ -84,7 +78,7 @@ public SampleIdentifier apply(Sample sample) { }; public List apply(StudyViewFilter studyViewFilter) { - return (instance == null ? this : instance).cachedApply(studyViewFilter); + return this.cachedApply(studyViewFilter); } @Cacheable( diff --git a/web/src/main/java/org/cbioportal/web/util/StudyViewFilterUtil.java b/src/main/java/org/cbioportal/web/util/StudyViewFilterUtil.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/StudyViewFilterUtil.java rename to src/main/java/org/cbioportal/web/util/StudyViewFilterUtil.java diff --git a/web/src/main/java/org/cbioportal/web/util/UniqueKeyExtractor.java b/src/main/java/org/cbioportal/web/util/UniqueKeyExtractor.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/UniqueKeyExtractor.java rename to src/main/java/org/cbioportal/web/util/UniqueKeyExtractor.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/AbstractPatientTreatmentFilter.java b/src/main/java/org/cbioportal/web/util/appliers/AbstractPatientTreatmentFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/AbstractPatientTreatmentFilter.java rename to src/main/java/org/cbioportal/web/util/appliers/AbstractPatientTreatmentFilter.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/AbstractSampleTreatmentFilter.java b/src/main/java/org/cbioportal/web/util/appliers/AbstractSampleTreatmentFilter.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/AbstractSampleTreatmentFilter.java rename to src/main/java/org/cbioportal/web/util/appliers/AbstractSampleTreatmentFilter.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/ClinicalEventFilterApplier.java b/src/main/java/org/cbioportal/web/util/appliers/ClinicalEventFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/ClinicalEventFilterApplier.java rename to src/main/java/org/cbioportal/web/util/appliers/ClinicalEventFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentFilterApplier.java b/src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentFilterApplier.java rename to src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentGroupFilterApplier.java b/src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentGroupFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentGroupFilterApplier.java rename to src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentGroupFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentTargetFilterApplier.java b/src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentTargetFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentTargetFilterApplier.java rename to src/main/java/org/cbioportal/web/util/appliers/PatientTreatmentTargetFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentFilterApplier.java b/src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentFilterApplier.java rename to src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentGroupFilterApplier.java b/src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentGroupFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentGroupFilterApplier.java rename to src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentGroupFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentTargetFilterApplier.java b/src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentTargetFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentTargetFilterApplier.java rename to src/main/java/org/cbioportal/web/util/appliers/SampleTreatmentTargetFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/StructuralVariantSubFilterApplier.java b/src/main/java/org/cbioportal/web/util/appliers/StructuralVariantSubFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/StructuralVariantSubFilterApplier.java rename to src/main/java/org/cbioportal/web/util/appliers/StructuralVariantSubFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/StudyViewSubFilterApplier.java b/src/main/java/org/cbioportal/web/util/appliers/StudyViewSubFilterApplier.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/StudyViewSubFilterApplier.java rename to src/main/java/org/cbioportal/web/util/appliers/StudyViewSubFilterApplier.java diff --git a/web/src/main/java/org/cbioportal/web/util/appliers/TreatmentRowExtractor.java b/src/main/java/org/cbioportal/web/util/appliers/TreatmentRowExtractor.java similarity index 100% rename from web/src/main/java/org/cbioportal/web/util/appliers/TreatmentRowExtractor.java rename to src/main/java/org/cbioportal/web/util/appliers/TreatmentRowExtractor.java diff --git a/portal/src/main/resources/antisamy.xml b/src/main/resources/antisamy.xml similarity index 100% rename from portal/src/main/resources/antisamy.xml rename to src/main/resources/antisamy.xml diff --git a/src/main/resources/application.properties.EXAMPLE b/src/main/resources/application.properties.EXAMPLE new file mode 100644 index 00000000000..673eb86ba6f --- /dev/null +++ b/src/main/resources/application.properties.EXAMPLE @@ -0,0 +1,406 @@ +# app name +app.name=cbioportal + +# Spring Boot Properties 2.7.14 +spring.mvc.pathmatch.matching-strategy = ANT_PATH_MATCHER + +# database +spring.datasource.url=jdbc:mysql://localhost:3306/cbioportal?useSSL=false +spring.datasource.username=cbio +spring.datasource.password=P@ssword1 +spring.datasource.driver-class-name=com.mysql.jdbc.Driver +spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect + +# this should normally be set to false. In some cases you could set this to true (e.g. for testing a feature of a newer release that is not related to the schema change in expected db version above): +db.suppress_schema_version_mismatch_errors=false + +# Enable compression on responses +server.compression.enabled=true + +# set tomcat_resource_name when using dbconnector=jndi instead of the default +# dbconnector=dbcp. Note that dbconnector needs to be set in CATLINA_OPTS when +# using Tomcat (CATALINA_OPTS="-Ddbconnector=jndi"). It does not get picked up +# from the properties file +# (https://github.com/cBioPortal/cbioportal/issues/6148). +# +# db.tomcat_resource_name=jdbc/cbioportal + +# web page cosmetics +skin.title=cBioPortal for Cancer Genomics +skin.email_contact=cbioportal at googlegroups dot com +skin.authorization_message=Access to this portal is only available to authorized users at Memorial Sloan Kettering Cancer Center. [Request Access]. +skin.example_study_queries=tcga\ntcga -provisional\ntcga -moratorium\ntcga OR icgc\n-"cell line"\nprostate mskcc\nesophageal OR stomach\nserous\nbreast +skin.data_sets_header=The portal currently contains data from the following cancer genomics studies. The table below lists the number of available samples per data type and tumor. +skin.data_sets_footer=Data sets of TCGA studies were downloaded from Broad Firehose (http://gdac.broadinstitute.org) and updated monthly. In some studies, data sets were from the TCGA working groups directly. +#skin.examples_right_column_html= + +# documentation pages +skin.documentation.baseurl=https://raw.githubusercontent.com/cBioPortal/cbioportal/master/docs/ +skin.documentation.markdown=true +skin.documentation.faq=user-guide/faq.md +skin.documentation.about=About-Us.md +skin.documentation.news=News.md +skin.documentation.oql=Onco-Query-Language.md +skin.documentation.dat=Authenticating-Users-via-Tokens.md + +# setting controlling the logos +skin.right_logo= +skin.tag_line_image=tag_line.png + +# setting controlling which tabs to hide. +skin.show_news_tab=true +skin.show_data_tab=true +skin.show_web_api_tab=true +skin.show_r_matlab_tab=true +skin.show_tutorials_tab=true +skin.show_faqs_tab=true +skin.show_tools_tab=true +skin.show_about_tab=true + +# settings controlling the whats new blurb +skin.right_nav.whats_new_blurb=

    New data and features released
    New tools released

        Sign up for low-volume email news alerts:
        
        Or follow us @cbioportal on Twitter + +# setting controlling the blurb +skin.blurb=The cBioPortal for Cancer Genomics provides visualization, analysis and download of large-scale cancer genomics data sets.

    Please adhere to the TCGA publication guidelines when using TCGA data in your publications.

    Please cite Gao et al. Sci. Signal. 2013 & Cerami et al. Cancer Discov. 2012 when publishing results based on cBioPortal.

    + +# setting controlling the citation below the blurb +# skin.citation_rule_text=Please cite: Cerami et al., 2012 & Gao et al., 2013 + +# setting controlling the footer +skin.footer= | MSKCC | TCGA +# setting controlling listing the development channels in the site's footer section +#skin.footer_show_dev=false + +# setting controlling html for the contact +skin.login.contact_html=If you think you have received this message in error, please contact us at cbioportal-access@cbio.mskcc.org + +# setting controlling the saml registration +skin.login.saml.registration_html=Sign in with MSK + +# settings controlling what to show in the right navigation bar +skin.right_nav.show_data_sets=true +skin.right_nav.show_examples=true +skin.right_nav.show_testimonials=true +skin.right_nav.show_whats_new=true +#skin.right_nav.show_twitter=false + +# settings controlling what to show in the right navigation bar +skin.study_view.link_text=To build your own case set, try out our enhanced Study View. + +# setting controlling the default setting for filtering genes in patient view +# skin.patientview.filter_genes_profiled_all_samples=false + +# settings controlling the appearance of the annotation filter menu in study view and group comparison +# skin.show_settings_menu=false + +# controls the appearance the logout button on a portal with user authentication +# skin.hide_logout_button=false + +# controls whether namespace columns of the MAF file are immediately visible in mutation tables (default is 'false') +# skin.mutation_table.namespace_column.show_by_default=true + +# controls which columns from the mutation tables are immediately visible in mutation tables +# skin.results_view.mutation_table.columns.show_on_init=Sample Id,Protein Change,Annotation,Mutation Type,Copy #,Cosmic,# Mut in Sample +# skin.patient_view.mutation_table.columns.show_on_init=Gene,Protein Change,Annotation,Mutation Type,Copy #,Cosmic,# Mut in Sample +# skin.patient_view.copy_number_table.columns.show_on_init=Gene,CNA,Annotation,Cytoband,Cohort +# skin.patient_view.structural_variant_table.columns.show_on_init=Gene 1,Gene2,Status,Annotation,Variant Class,Event Info,Connection Type + +# setting controlling the home page +## enable this to show studies for which the user does not have permission (will appear greyed out and cannot be analyzed in study view or results view). +# skin.home_page.show_unauthorized_studies=false +## enable this to configure a global message for the studies that are unauthorized; the message can contain placecards like {$.Owner.email} for the studies that have the information in the study tags +# skin.home_page.unauthorized_studies_global_message=The study is unauthorized. You need to request access. +## enable this to show reference genome next to the samples +# skin.home_page.show_reference_genome=false + +## setting controlling whether Download tabs and download/copy-to-clipboard controls should be shown +# skin.hide_download_controls=false + +## setting controlling which name should be used to display the authenticated user (email, or username) +# skin.user_display_name=email + +## enable and set this property to specify a study group to be used to identify public studies for which no specific authorization entries are needed in the `authorities` table +# always_show_study_group= + +## enable expression data in multi-study queries (oncoprint and plots tab) +# true | false | (studies)=>{ return true } +enable_cross_study_expression=(studies)=>studies.filter(s=>/pan_can_atlas/.test(s.studyId) === false).length === 0 + +## Combined Study View Comparison Limits +# Any Number | Disabled when not set +# studyview.max_samples_selected= + +# multithreading configuration +multithread.core_pool_size=16 + +# mdacc heatmap integration +#show.mdacc.heatmap=true + +# patient view settings +patient_view_placeholder=false +digitalslidearchive.iframe.url=http://cancer.digitalslidearchive.net/index_mskcc.php?slide_name= +digitalslidearchive.meta.url=http://cancer.digitalslidearchive.net/local_php/get_slide_list_from_db_groupid_not_needed.php?slide_name_filter= +tumor_image.url=http://cbio.mskcc.org/cancergenomics/tcga-tumor-images/ +tcga_path_report.url=https://github.com/cbioportal/datahub/raw/master/tcga/pathology_reports/pathology_reports.txt + +# various url's +segfile.url=http://cbio.mskcc.org/cancergenomics/gdac-portal/seg/ + + +# The default OncoKB instance, the portal is connecting to, does not include any therapeutic information and the token is not required. +# If you wish to include such information, please consider obtaining a license to support future OncoKB development by following +# https://docs.cbioportal.org/2.4-integration-with-other-webservices/oncokb-data-access. + +# Enable OncoKB annotation (true, false) +show.oncokb=true + +# The URL of the OncoKB instance to connect to. +# The default address does not require authentication and is freely to use. +oncokb.public_api.url=https://public.api.oncokb.org/api/v1 + +# Your OncoKB Token which an be found under https://www.oncokb.org/account/settings +oncokb.token= + +# Enable merging of OncoKB icons by default +# oncokb.merge_icons_by_default=true + +# Enable "cBioPortal>=" driver annotation sources in the settings menu of Results View (true, false) +show.cbioportal=true +# Enable "COSMIC>=" driver annotation sources in the settings menu of Results View (true, false) +show.cosmic=true + +# Enable Chang's hotspot list (true, false) +show.hotspot=true + +# Enable Civic variant annotation (true, false) +show.civic=true + +# Link to My Cancer Genome. Please disable (set to false) when using cBioPortal with patient identifiable data due My Cancer Genome license restrictions. +mycancergenome.show=true + +# Enable transcript switch dropdown (true, false) +# show.transcript_dropdown=false + +# Show/hide p- and q-values in survival types table (default is true) +# survival.show_p_q_values_in_survival_type_table=false + +# Set initial x-axis limit for survival plot (by default, initial limit will be the latest event in the data) +# survival.initial_x_axis_limit=120 + +# Set Genome Nexus annotation sources, please list all sources name with comma-separated. +# Available sources: mutation_assessor +# show.genomenexus.annotation_sources=mutation_assessor + +# Choose Genome Nexus default set of isoforms. Read more at +# https://docs.cbioportal.org. (Options are uniprot or mskcc, default is mskcc) +# genomenexus.isoform_override_source=mskcc + +# Enable SIGNAL column in mutations table(true, false) +# show.signal=false + +# Enable NDex pathways integration (true, false) +# show.ndex=false + +# igv bam linking +igv.bam.linking= +# colon delimited +igv.bam.linking.studies= +openssl.binary= +signature.key= +encryption.key= +broad.bam.url= +broad.bam.checking.url= + +# pathway settings +include_networks=true +pathway_commons.url=http://www.pathwaycommons.org/pc2 + +# the new API uses the v3 of bitly API, and a java library to make the API call, so you only need to provide the access token +bitly.access.token= + +# google analytics +google_analytics_profile_id= + +# genomespace linking +genomespace=true + +# session-service url: http://[host]:[port]/[session_service_app]/api/sessions/[portal_instance]/ +# example session-service url: http://localhost:8080/session_service/api/sessions/public_portal/ +# see: https://github.com/cBioPortal/session-service +# excluding this value or setting it to an empty string will revert to the previous bookmarking method +# WARNING: do not use session service with -Dauthenticate=false +# either use authentication or change to -Dauthenticate=noauthsessionservice +session.service.url=https://cbioportal-session-service.herokuapp.com/session_service/api/sessions/heroku_portal/ +# if basic authentication is enabled on session service one should set: +#session.service.user= +#session.service.password= + +# disabled tabs, | delimited +# possible values: cancer_types_summary, mutual_exclusivity, comparison, plots, mutations, co_expression, enrichments, survival, network, download, bookmark, IGV +disabled_tabs= + +# study ids and categories to force to top of study selector +# format is category1#study1a,study1b,study1c;category2#study2 +priority_studies= + +# species and genomic information +species=human +ncbi.build=37 +ucsc.build=hg19 + +# default view in oncoprint (sample, patient (default)) +oncoprint.defaultview=patient + +# OncoPrint driver mutation annotations +# oncoprint.custom_driver_annotation.binary.menu_label=Custom driver annotation +# oncoprint.custom_driver_annotation.tiers.menu_label=Custom driver tiers +# oncoprint.custom_driver_annotation.binary.default=true +# oncoprint.custom_driver_annotation.tiers.default=true +oncoprint.oncokb.default=true +oncoprint.hotspots.default=true +# oncoprint.hide_vus.default=true +# oncoprint.clinical_tracks.config_json=classpath:/oncoprint-default-tracks.json +# oncoprint.clustered.default=true + +# Custom gene sets +# querypage.setsofgenes.location=file:/ + +# valid cache types are (ehcache-heap, ehcache-disk, ehcache-hybrid, redis), or use 'no-cache' to disable caching +# caution 1: the 'redis' caching option will likely cause a conflict when installing the portal in a tomcat installation which uses redisson for session management +# caution 2: this configuration needs to be set both at compile time and run time. See also https://github.com/cBioPortal/cbioportal/issues/8629 +persistence.cache_type=no-cache +# Enable cache statistics endpoint for cache monitoring +#cache.statistics_endpoint_enabled=false +# Turn cache management endpoint on or off (default) +# cache.endpoint.enabled=true +# API key for access to cache management endpoint +# cache.endpoint.api-key=fd15f1ae-66f2-4b8a-8d54-fb899b03557e +# Externalize the study data used for user authorization evaluation to Spring-managed caches such as EHCache or Redis. +# Enabling this might simplify cache-invalidation strategies (via /api/cache endpoint) because it allows for invalidation +# a central caching solution shared among cBioPortal containers in a single instance. It comes at the cost of extra calls +# to the caching provider. Default is 'false' meaning that cBioPortal will use a faster local HashMap-based cache for fast +# lookup of sample/patient/profile to cancer study relationships. +#cache.cache-map-utils.spring-managed=false + +# Redis properties +# Unique name for each portal instance, used for distinguishing caches +#redis.name= +#redis.leader_address= +#redis.follower_address= +#redis.database= +#redis.password= +#redis.ttl_mins=10000 +#redis.clear_on_startup=true + +# Ehcache properties +#ehcache.xml_configuration=/ehcache.xml + +# Properties for specifying cache size constraints +# - Zero is not an accepted value, will break deployment +# - disk size (if used) must be greater than heap size + +#ehcache.general_repository_cache.max_mega_bytes_heap=1024 +#ehcache.static_repository_cache_one.max_mega_bytes_heap=30 + +#ehcache.persistence_path=/tmp +#ehcache.general_repository_cache.max_mega_bytes_local_disk=4096 +#ehcache.static_repository_cache_one.max_mega_bytes_local_disk=32 + +# Default cross cancer study query +# query this session id when not specifying a study for +# linkout links e.g. /ln?q=TP53:MUT or when querying a single gene in quick +# search +# +# default_cross_cancer_study_session_id= +# +# if session service is not enabled, specify a comma separated list of studies +# here instead e.g.: +# +# default_cross_cancer_study_list=mixed_pipseq_2017,cellline_nci60 +# default_cross_cancer_study_list_name=My list of studies + +# Enable/Disable quick search (currently in beta, default is false) +# quick_search.enabled=true + +# enable/disable hrrs logging +# hrrs can be used for debugging - when enabled incoming web requests +# will be logged into the specified directory +# logs must be decrypted for more in-depth information +# see: https://github.com/vy/hrrs/blob/master/README.md +#hrrs.logging.filepath= +#hrrs.enable.logging=false + +# enable/disable aspectj logging +# if active, all enter/exits to methods in web, service-impl, +# and mybatis packages are logged +#aspect.enable.logging=false + +# ensembl URL template for transcript lookup in Mutations tab. Default is http://grch37.ensembl.org/homo_sapiens/Transcript/Summary?t=<%= transcriptId %> +#ensembl.transcript_url=http://ensembl.org/homo_sapiens/Transcript/Summary?t=<%= transcriptId %> + +# Enable/disable Persistent Cache (true, false) +# The Persistent Cache is a frontend feature that is used to cache semi static +# data produced by APIs. It uses IndexedDB as a means for persistent storage. +# This feature is disabled by default. +# enable_persistent_cache=true + +# Limit the size of gene queries (number). gene count * sample count < query_product_limit +# This limit is enforced on the frontend. +# query_product_limit=1000000 + +# Limit the size of samples in clinical tab in study view page. clinical attribute count * sample count < clinical_attribute_product_limit +# This limit is enforced on the frontend. +# clinical_attribute_product_limit=6500000 + +# Enable gsva to query +# skin.show_gsva=true +# Set default thresholds for geneset hierarchy +# skin.geneset_hierarchy.default_gsva_score=0.5 +# skin.geneset_hierarchy.default_p_value=0.05 +# Collapse the tree widget of the gsva hierarchy dialog on init +# skin.geneset_hierarchy.collapse_by_default=true + +# Compress some particularly large request bodies. enable_request_body_gzip_compression enables the feature, and +# request_gzip_body_size_bytes sets the maximum allowable uncompressed request body size in bytes. Requests larger than +# this value will be rejected. If unset, the default value will be 50000000, or 50 Mb. +# enable_request_body_gzip_compression=true +# request_gzip_body_size_bytes=80000000 + +# Installation map URL for installation map iframes. +# If blank or commented out, no map will be shown and that page will be hidden. +# installation_map_url=https://installationmap.netlify.app/ + +# Feature flag for treatment groups +# enable_treatment_groups=false + +# Set comparison categorical "NA" value (not case sensitive), separated by "|" +# comparison.categorical_na_values=NA|unknown + +# Set StudyDownloadLinkUrl +# Allows download links within DataSets Tab (See Portal.Properties documentation for more info) +# study_download_url= + +# download_group= + +## Set Logging Level +## Warning DEBUG level with security is not recommended +logging.level.root=INFO + +# vaf.sequential_mode.default=false +# vaf.log_scale.default=false + +## Redis HTTP Session Store +# Redis Session +## Comment out the line below to enable redis caching +spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration +#spring.data.redis.host=localhost +#spring.data.redis.port=6379 + +server.tomcat.connection-timeout=20000 +server.tomcat.max-http-response-header-size=16384 +server.max-http-request-header-size=16384 + +## Enable Study Help Button on Study View Page +#skin.show_study_help_button=true + +# EOL - Do not delete the following lines diff --git a/portal/src/main/resources/artwork/logo.ai b/src/main/resources/artwork/logo.ai similarity index 100% rename from portal/src/main/resources/artwork/logo.ai rename to src/main/resources/artwork/logo.ai diff --git a/portal/src/main/resources/artwork/step_1.ai b/src/main/resources/artwork/step_1.ai similarity index 100% rename from portal/src/main/resources/artwork/step_1.ai rename to src/main/resources/artwork/step_1.ai diff --git a/portal/src/main/resources/artwork/step_2.ai b/src/main/resources/artwork/step_2.ai similarity index 100% rename from portal/src/main/resources/artwork/step_2.ai rename to src/main/resources/artwork/step_2.ai diff --git a/portal/src/main/resources/artwork/step_3.ai b/src/main/resources/artwork/step_3.ai similarity index 100% rename from portal/src/main/resources/artwork/step_3.ai rename to src/main/resources/artwork/step_3.ai diff --git a/portal/src/main/resources/artwork/step_4.ai b/src/main/resources/artwork/step_4.ai similarity index 100% rename from portal/src/main/resources/artwork/step_4.ai rename to src/main/resources/artwork/step_4.ai diff --git a/portal/src/main/resources/content/README.txt b/src/main/resources/content/README.txt similarity index 100% rename from portal/src/main/resources/content/README.txt rename to src/main/resources/content/README.txt diff --git a/portal/src/main/resources/content/TCGA_data_table.pl b/src/main/resources/content/TCGA_data_table.pl similarity index 100% rename from portal/src/main/resources/content/TCGA_data_table.pl rename to src/main/resources/content/TCGA_data_table.pl diff --git a/portal/src/main/resources/content/about_us.markdown b/src/main/resources/content/about_us.markdown similarity index 100% rename from portal/src/main/resources/content/about_us.markdown rename to src/main/resources/content/about_us.markdown diff --git a/portal/src/main/resources/content/about_us_prostate.markdown b/src/main/resources/content/about_us_prostate.markdown similarity index 100% rename from portal/src/main/resources/content/about_us_prostate.markdown rename to src/main/resources/content/about_us_prostate.markdown diff --git a/portal/src/main/resources/content/about_us_su2c.markdown b/src/main/resources/content/about_us_su2c.markdown similarity index 100% rename from portal/src/main/resources/content/about_us_su2c.markdown rename to src/main/resources/content/about_us_su2c.markdown diff --git a/portal/src/main/resources/content/about_us_target.markdown b/src/main/resources/content/about_us_target.markdown similarity index 100% rename from portal/src/main/resources/content/about_us_target.markdown rename to src/main/resources/content/about_us_target.markdown diff --git a/portal/src/main/resources/content/cgds_r.markdown b/src/main/resources/content/cgds_r.markdown similarity index 100% rename from portal/src/main/resources/content/cgds_r.markdown rename to src/main/resources/content/cgds_r.markdown diff --git a/portal/src/main/resources/content/data_sets.markdown b/src/main/resources/content/data_sets.markdown similarity index 100% rename from portal/src/main/resources/content/data_sets.markdown rename to src/main/resources/content/data_sets.markdown diff --git a/portal/src/main/resources/content/data_sets_public_right_column.markdown b/src/main/resources/content/data_sets_public_right_column.markdown similarity index 100% rename from portal/src/main/resources/content/data_sets_public_right_column.markdown rename to src/main/resources/content/data_sets_public_right_column.markdown diff --git a/portal/src/main/resources/content/data_sets_right_column.markdown b/src/main/resources/content/data_sets_right_column.markdown similarity index 100% rename from portal/src/main/resources/content/data_sets_right_column.markdown rename to src/main/resources/content/data_sets_right_column.markdown diff --git a/portal/src/main/resources/content/data_sets_su2c.html b/src/main/resources/content/data_sets_su2c.html similarity index 100% rename from portal/src/main/resources/content/data_sets_su2c.html rename to src/main/resources/content/data_sets_su2c.html diff --git a/portal/src/main/resources/content/data_sets_su2c_right_column.markdown b/src/main/resources/content/data_sets_su2c_right_column.markdown similarity index 100% rename from portal/src/main/resources/content/data_sets_su2c_right_column.markdown rename to src/main/resources/content/data_sets_su2c_right_column.markdown diff --git a/portal/src/main/resources/content/data_sets_tcga.html b/src/main/resources/content/data_sets_tcga.html similarity index 100% rename from portal/src/main/resources/content/data_sets_tcga.html rename to src/main/resources/content/data_sets_tcga.html diff --git a/portal/src/main/resources/content/data_sets_tcga_right_column.markdown b/src/main/resources/content/data_sets_tcga_right_column.markdown similarity index 100% rename from portal/src/main/resources/content/data_sets_tcga_right_column.markdown rename to src/main/resources/content/data_sets_tcga_right_column.markdown diff --git a/portal/src/main/resources/content/email.txt b/src/main/resources/content/email.txt similarity index 100% rename from portal/src/main/resources/content/email.txt rename to src/main/resources/content/email.txt diff --git a/portal/src/main/resources/content/examples.markdown b/src/main/resources/content/examples.markdown similarity index 100% rename from portal/src/main/resources/content/examples.markdown rename to src/main/resources/content/examples.markdown diff --git a/portal/src/main/resources/content/examples_acc.markdown b/src/main/resources/content/examples_acc.markdown similarity index 100% rename from portal/src/main/resources/content/examples_acc.markdown rename to src/main/resources/content/examples_acc.markdown diff --git a/portal/src/main/resources/content/examples_genie.markdown b/src/main/resources/content/examples_genie.markdown similarity index 100% rename from portal/src/main/resources/content/examples_genie.markdown rename to src/main/resources/content/examples_genie.markdown diff --git a/portal/src/main/resources/content/examples_glioma.markdown b/src/main/resources/content/examples_glioma.markdown similarity index 100% rename from portal/src/main/resources/content/examples_glioma.markdown rename to src/main/resources/content/examples_glioma.markdown diff --git a/portal/src/main/resources/content/examples_kras.markdown b/src/main/resources/content/examples_kras.markdown similarity index 100% rename from portal/src/main/resources/content/examples_kras.markdown rename to src/main/resources/content/examples_kras.markdown diff --git a/portal/src/main/resources/content/examples_prostate.markdown b/src/main/resources/content/examples_prostate.markdown similarity index 100% rename from portal/src/main/resources/content/examples_prostate.markdown rename to src/main/resources/content/examples_prostate.markdown diff --git a/portal/src/main/resources/content/examples_su2c.markdown b/src/main/resources/content/examples_su2c.markdown similarity index 100% rename from portal/src/main/resources/content/examples_su2c.markdown rename to src/main/resources/content/examples_su2c.markdown diff --git a/portal/src/main/resources/content/examples_target.markdown b/src/main/resources/content/examples_target.markdown similarity index 100% rename from portal/src/main/resources/content/examples_target.markdown rename to src/main/resources/content/examples_target.markdown diff --git a/portal/src/main/resources/content/examples_tcga.markdown b/src/main/resources/content/examples_tcga.markdown similarity index 100% rename from portal/src/main/resources/content/examples_tcga.markdown rename to src/main/resources/content/examples_tcga.markdown diff --git a/portal/src/main/resources/content/faqs.markdown b/src/main/resources/content/faqs.markdown similarity index 100% rename from portal/src/main/resources/content/faqs.markdown rename to src/main/resources/content/faqs.markdown diff --git a/portal/src/main/resources/content/faqs_prostate.markdown b/src/main/resources/content/faqs_prostate.markdown similarity index 100% rename from portal/src/main/resources/content/faqs_prostate.markdown rename to src/main/resources/content/faqs_prostate.markdown diff --git a/portal/src/main/resources/content/faqs_su2c.markdown b/src/main/resources/content/faqs_su2c.markdown similarity index 100% rename from portal/src/main/resources/content/faqs_su2c.markdown rename to src/main/resources/content/faqs_su2c.markdown diff --git a/portal/src/main/resources/content/faqs_target.markdown b/src/main/resources/content/faqs_target.markdown similarity index 100% rename from portal/src/main/resources/content/faqs_target.markdown rename to src/main/resources/content/faqs_target.markdown diff --git a/portal/src/main/resources/content/faqs_tcga.markdown b/src/main/resources/content/faqs_tcga.markdown similarity index 100% rename from portal/src/main/resources/content/faqs_tcga.markdown rename to src/main/resources/content/faqs_tcga.markdown diff --git a/portal/src/main/resources/content/networks.markdown b/src/main/resources/content/networks.markdown similarity index 100% rename from portal/src/main/resources/content/networks.markdown rename to src/main/resources/content/networks.markdown diff --git a/portal/src/main/resources/content/news.markdown b/src/main/resources/content/news.markdown similarity index 100% rename from portal/src/main/resources/content/news.markdown rename to src/main/resources/content/news.markdown diff --git a/portal/src/main/resources/content/news_prostate.markdown b/src/main/resources/content/news_prostate.markdown similarity index 100% rename from portal/src/main/resources/content/news_prostate.markdown rename to src/main/resources/content/news_prostate.markdown diff --git a/portal/src/main/resources/content/news_su2c.markdown b/src/main/resources/content/news_su2c.markdown similarity index 100% rename from portal/src/main/resources/content/news_su2c.markdown rename to src/main/resources/content/news_su2c.markdown diff --git a/portal/src/main/resources/content/news_target.markdown b/src/main/resources/content/news_target.markdown similarity index 100% rename from portal/src/main/resources/content/news_target.markdown rename to src/main/resources/content/news_target.markdown diff --git a/portal/src/main/resources/content/news_tcga.markdown b/src/main/resources/content/news_tcga.markdown similarity index 100% rename from portal/src/main/resources/content/news_tcga.markdown rename to src/main/resources/content/news_tcga.markdown diff --git a/portal/src/main/resources/content/onco_spec_lang_desc.markdown b/src/main/resources/content/onco_spec_lang_desc.markdown similarity index 100% rename from portal/src/main/resources/content/onco_spec_lang_desc.markdown rename to src/main/resources/content/onco_spec_lang_desc.markdown diff --git a/portal/src/main/resources/content/process.sh b/src/main/resources/content/process.sh similarity index 100% rename from portal/src/main/resources/content/process.sh rename to src/main/resources/content/process.sh diff --git a/portal/src/main/resources/content/release_notes_mutation_mapper.markdown b/src/main/resources/content/release_notes_mutation_mapper.markdown similarity index 100% rename from portal/src/main/resources/content/release_notes_mutation_mapper.markdown rename to src/main/resources/content/release_notes_mutation_mapper.markdown diff --git a/portal/src/main/resources/content/release_notes_oncoprinter.markdown b/src/main/resources/content/release_notes_oncoprinter.markdown similarity index 100% rename from portal/src/main/resources/content/release_notes_oncoprinter.markdown rename to src/main/resources/content/release_notes_oncoprinter.markdown diff --git a/portal/src/main/resources/content/testing_api.markdown b/src/main/resources/content/testing_api.markdown similarity index 100% rename from portal/src/main/resources/content/testing_api.markdown rename to src/main/resources/content/testing_api.markdown diff --git a/portal/src/main/resources/content/visualize_your_data.markdown b/src/main/resources/content/visualize_your_data.markdown similarity index 100% rename from portal/src/main/resources/content/visualize_your_data.markdown rename to src/main/resources/content/visualize_your_data.markdown diff --git a/portal/src/main/resources/content/web_api.markdown b/src/main/resources/content/web_api.markdown similarity index 100% rename from portal/src/main/resources/content/web_api.markdown rename to src/main/resources/content/web_api.markdown diff --git a/db-scripts/src/main/resources/cbioportal-er-diagram.mwb b/src/main/resources/db-scripts/cbioportal-er-diagram.mwb similarity index 100% rename from db-scripts/src/main/resources/cbioportal-er-diagram.mwb rename to src/main/resources/db-scripts/cbioportal-er-diagram.mwb diff --git a/db-scripts/src/main/resources/cbioportal-er-diagram.pdf b/src/main/resources/db-scripts/cbioportal-er-diagram.pdf similarity index 100% rename from db-scripts/src/main/resources/cbioportal-er-diagram.pdf rename to src/main/resources/db-scripts/cbioportal-er-diagram.pdf diff --git a/db-scripts/src/main/resources/cbioportal-er-diagram.png b/src/main/resources/db-scripts/cbioportal-er-diagram.png similarity index 100% rename from db-scripts/src/main/resources/cbioportal-er-diagram.png rename to src/main/resources/db-scripts/cbioportal-er-diagram.png diff --git a/db-scripts/src/main/resources/cgds.sql b/src/main/resources/db-scripts/cgds.sql similarity index 100% rename from db-scripts/src/main/resources/cgds.sql rename to src/main/resources/db-scripts/cgds.sql diff --git a/db-scripts/src/main/resources/migration.sql b/src/main/resources/db-scripts/migration.sql similarity index 100% rename from db-scripts/src/main/resources/migration.sql rename to src/main/resources/db-scripts/migration.sql diff --git a/portal/src/main/webapp/js/src/load-frontend.js b/src/main/resources/js/load-frontend.js similarity index 100% rename from portal/src/main/webapp/js/src/load-frontend.js rename to src/main/resources/js/load-frontend.js diff --git a/src/main/resources/log4j.properties.EXAMPLE b/src/main/resources/log4j.properties.EXAMPLE new file mode 100644 index 00000000000..d3786f5c130 --- /dev/null +++ b/src/main/resources/log4j.properties.EXAMPLE @@ -0,0 +1,19 @@ +# Change INFO to DEBUG, if you want to see debugging info on underlying libraries we use. +log4j.rootLogger=INFO, a + +# Change INFO to DEBUG, if you want see debugging info on our packages only. +log4j.category.org.mskcc=INFO +#log4j.category.org.springframework=ALL + +## IMPORTANT - THRESHOLD SHOULD NOT BE DEBUG FOR PRODUCTION, CREDENTIALS CAN BE DISPLAYED! +#log4j.logger.org.springframework.security=DEBUG +#log4j.logger.org.springframework.integration=DEBUG + +log4j.appender.a = org.apache.log4j.ConsoleAppender +log4j.appender.a.target=System.out +log4j.appender.a.immediateFlush=true +log4j.appender.a.encoding=UTF-8 +log4j.appender.a.threshold=Error + +log4j.appender.a.layout = org.apache.log4j.PatternLayout +log4j.appender.a.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss} [%t] %-5p %c - %m%n diff --git a/portal/src/main/resources/logging.properties b/src/main/resources/logging.properties similarity index 100% rename from portal/src/main/resources/logging.properties rename to src/main/resources/logging.properties diff --git a/src/main/resources/maven.properties b/src/main/resources/maven.properties index 6ec279c1ec1..24e2bf7fc5a 100644 --- a/src/main/resources/maven.properties +++ b/src/main/resources/maven.properties @@ -1,4 +1,4 @@ -app.version=${timestamp} -portal.version=${project.version} +app.version=@maven.build.timestamp@ +portal.version=@project.version@ # this is the *expected* DB version (expected by the code). Don't set it manually, it is filled by maven: -db.version=${db.version} \ No newline at end of file +db.version=@db.version@ \ No newline at end of file diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/AlterationCountsMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/AlterationCountsMapper.xml similarity index 95% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/AlterationCountsMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/AlterationCountsMapper.xml index 01ed5f7bae7..f9e53a35b08 100644 --- a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/AlterationCountsMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/AlterationCountsMapper.xml @@ -5,10 +5,10 @@ SELECT @@ -22,7 +21,7 @@ FROM type_of_cancer - ORDER BY ${sortBy} ${direction} + ORDER BY "${sortBy}" ${direction} ORDER BY type_of_cancer.TYPE_OF_CANCER_ID ASC @@ -34,7 +33,7 @@ diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/ClinicalAttributeMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/ClinicalAttributeMapper.xml similarity index 94% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/ClinicalAttributeMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/ClinicalAttributeMapper.xml index 36e898ebaa9..8dbdbc9a942 100644 --- a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/ClinicalAttributeMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/ClinicalAttributeMapper.xml @@ -2,7 +2,6 @@ - clinical_attribute_meta.ATTR_ID AS "${prefix}attrId", @@ -81,7 +80,7 @@ - ORDER BY ${sortBy} ${direction} + ORDER BY "${sortBy}" ${direction} ORDER BY clinical_attribute_meta.ATTR_ID ASC @@ -93,7 +92,7 @@ SELECT - COUNT(*) AS totalCount + COUNT(*) AS "totalCount" @@ -162,7 +162,7 @@ INNER JOIN type_of_cancer ON cancer_study.TYPE_OF_CANCER_ID = type_of_cancer.TYPE_OF_CANCER_ID - + ORDER BY ${sortBy} ${direction} @@ -200,7 +200,7 @@ @@ -244,7 +244,7 @@ INNER JOIN ( SELECT DISTINCT clinical_sample.INTERNAL_ID - + , sample.STABLE_ID AS SORT_BY @@ -263,11 +263,11 @@ - + AND clinical_sample.ATTR_VALUE LIKE CONCAT('%', #{searchTerm}, '%') - + diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/ClinicalEventMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/ClinicalEventMapper.xml similarity index 94% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/ClinicalEventMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/ClinicalEventMapper.xml index 44f8083bf2e..58cd60d098f 100644 --- a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/ClinicalEventMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/ClinicalEventMapper.xml @@ -4,14 +4,14 @@ - clinical_event.CLINICAL_EVENT_ID AS clinicalEventId, - clinical_event.EVENT_TYPE AS eventType, - patient.STABLE_ID AS patientId, - cancer_study.CANCER_STUDY_IDENTIFIER AS studyId + clinical_event.CLINICAL_EVENT_ID AS "clinicalEventId", + clinical_event.EVENT_TYPE AS "eventType", + patient.STABLE_ID AS "patientId", + cancer_study.CANCER_STUDY_IDENTIFIER AS "studyId" , - clinical_event.START_DATE AS startDate, - clinical_event.STOP_DATE AS stopDate + clinical_event.START_DATE AS "startDate", + clinical_event.STOP_DATE AS "stopDate" @@ -40,7 +40,7 @@ - ORDER BY ${sortBy} ${direction} + ORDER BY "${sortBy}" ${direction} ORDER BY clinical_event.PATIENT_ID ASC @@ -79,7 +79,7 @@ - ORDER BY ${sortBy} ${direction} + ORDER BY "${sortBy}" ${direction} ORDER BY clinical_event.PATIENT_ID ASC @@ -105,7 +105,7 @@ from sample Inner Join patient on sample.PATIENT_ID = patient.INTERNAL_ID Inner join clinical_event on clinical_event.PATIENT_ID = patient.INTERNAL_ID - Inner Join cancer_study on cancer_study.CANCER_STUDY_ID = patient.cancer_STUDY_ID + Inner Join cancer_study on cancer_study.CANCER_STUDY_ID = patient.CANCER_STUDY_ID cancer_study.CANCER_STUDY_IDENTIFIER IN diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/CopyNumberSegmentMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/CopyNumberSegmentMapper.xml similarity index 85% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/CopyNumberSegmentMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/CopyNumberSegmentMapper.xml index db0e5e6f34c..58e2a37da07 100644 --- a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/CopyNumberSegmentMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/CopyNumberSegmentMapper.xml @@ -3,19 +3,18 @@ - - copy_number_seg.SEG_ID AS segId, - copy_number_seg.CANCER_STUDY_ID AS cancerStudyId, - cancer_study.CANCER_STUDY_IDENTIFIER AS cancerStudyIdentifier, - copy_number_seg.SAMPLE_ID AS sampleId, - patient.STABLE_ID AS patientId, - sample.STABLE_ID AS sampleStableId, - copy_number_seg.CHR AS chr, - copy_number_seg.START AS start, - copy_number_seg.END AS end, - copy_number_seg.NUM_PROBES AS numProbes, - copy_number_seg.SEGMENT_MEAN AS segmentMean + copy_number_seg.SEG_ID AS "segId", + copy_number_seg.CANCER_STUDY_ID AS "cancerStudyId", + cancer_study.CANCER_STUDY_IDENTIFIER AS "cancerStudyIdentifier", + copy_number_seg.SAMPLE_ID AS "sampleId", + patient.STABLE_ID AS "patientId", + sample.STABLE_ID AS "sampleStableId", + copy_number_seg.CHR AS "chr", + copy_number_seg.START AS "start", + copy_number_seg.END AS "end", + copy_number_seg.NUM_PROBES AS "numProbes", + copy_number_seg.SEGMENT_MEAN AS "segmentMean" @@ -60,7 +59,7 @@ AND copy_number_seg.CHR=#{chromosome} - ORDER BY ${sortBy} ${direction} + ORDER BY "${sortBy}" ${direction} ORDER BY copy_number_seg.CHR ASC diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/CosmicCountMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/CosmicCountMapper.xml similarity index 76% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/CosmicCountMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/CosmicCountMapper.xml index 9e177f5bb46..df0fe7e0fe3 100644 --- a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/CosmicCountMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/CosmicCountMapper.xml @@ -3,13 +3,12 @@ - SELECT - COUNT(*) AS totalCount + COUNT(*) AS "totalCount" @@ -242,17 +242,17 @@ SELECT - COUNT(*) AS totalCount + COUNT(*) AS "totalCount" @@ -103,8 +102,8 @@ @@ -129,7 +128,7 @@ SELECT genetic_entity.STABLE_ID as stableId, genetic_entity.ENTITY_TYPE as entityType diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/GenesetHierarchyMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/GenesetHierarchyMapper.xml similarity index 98% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/GenesetHierarchyMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/GenesetHierarchyMapper.xml index cb747f37e62..6ed4252ada4 100644 --- a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/GenesetHierarchyMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/GenesetHierarchyMapper.xml @@ -2,7 +2,6 @@ - a.NODE_ID AS nodeId, @@ -43,8 +42,7 @@ ) ORDER BY b.NODE_NAME, a.NODE_NAME - - + SELECT - genetic_profile.STABLE_ID AS molecularProfileId, + genetic_profile.STABLE_ID AS "molecularProfileId", genetic_profile_samples.ORDERED_SAMPLE_LIST AS "commaSeparatedSampleIds" FROM genetic_profile_samples INNER JOIN genetic_profile ON genetic_profile_samples.GENETIC_PROFILE_ID = genetic_profile.GENETIC_PROFILE_ID @@ -39,8 +39,8 @@ SELECT - gene.ENTREZ_GENE_ID AS entrezGeneId, - genetic_alteration.VALUES AS "values" + gene.ENTREZ_GENE_ID AS "entrezGeneId", + genetic_alteration.`VALUES` AS "values" , @@ -94,8 +94,8 @@ SELECT - gene.ENTREZ_GENE_ID AS entrezGeneId, - genetic_alteration.VALUES AS "values", - genetic_profile.STABLE_ID AS molecularProfileId + gene.ENTREZ_GENE_ID AS "entrezGeneId", + genetic_alteration.`VALUES` AS "values", + genetic_profile.STABLE_ID AS "molecularProfileId" , @@ -128,7 +128,7 @@ NULL AS "values" - genetic_alteration.VALUES AS "values" + genetic_alteration.`VALUES` AS "values" FROM genetic_alteration INNER JOIN genetic_profile ON genetic_alteration.GENETIC_PROFILE_ID = genetic_profile.GENETIC_PROFILE_ID @@ -153,7 +153,7 @@ NULL AS "values" - genetic_alteration.VALUES AS "values" + genetic_alteration.`VALUES` AS "values" FROM genetic_alteration INNER JOIN genetic_profile ON genetic_alteration.GENETIC_PROFILE_ID = genetic_profile.GENETIC_PROFILE_ID @@ -183,7 +183,7 @@ NULL AS "values" - genetic_alteration.VALUES AS "values" + genetic_alteration.`VALUES` AS "values" FROM genetic_alteration INNER JOIN genetic_profile ON genetic_alteration.GENETIC_PROFILE_ID = genetic_profile.GENETIC_PROFILE_ID diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/MolecularProfileMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/MolecularProfileMapper.xml similarity index 99% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/MolecularProfileMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/MolecularProfileMapper.xml index 6ef0f9842c7..b51a2f9b5ab 100644 --- a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/MolecularProfileMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/MolecularProfileMapper.xml @@ -2,7 +2,6 @@ - genetic_profile.GENETIC_PROFILE_ID AS "${prefix}molecularProfileId", @@ -49,7 +48,7 @@ - ORDER BY ${sortBy} ${direction} + ORDER BY "${sortBy}" ${direction} ORDER BY genetic_profile.STABLE_ID ASC diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/MutationMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/MutationMapper.xml similarity index 87% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/MutationMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/MutationMapper.xml index 9f85171b615..bc74b1c98dc 100644 --- a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/MutationMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/MutationMapper.xml @@ -4,39 +4,39 @@ - genetic_profile.STABLE_ID AS molecularProfileId, - sample.STABLE_ID AS sampleId, - patient.STABLE_ID AS patientId, - mutation.ENTREZ_GENE_ID as entrezGeneId, - cancer_study.CANCER_STUDY_IDENTIFIER AS studyId + genetic_profile.STABLE_ID AS "molecularProfileId", + sample.STABLE_ID AS "sampleId", + patient.STABLE_ID AS "patientId", + mutation.ENTREZ_GENE_ID AS "entrezGeneId", + cancer_study.CANCER_STUDY_IDENTIFIER AS "studyId" , - mutation.CENTER AS center, - mutation.MUTATION_STATUS AS mutationStatus, - mutation.VALIDATION_STATUS AS validationStatus, - mutation.TUMOR_ALT_COUNT AS tumorAltCount, - mutation.TUMOR_REF_COUNT AS tumorRefCount, - mutation.NORMAL_ALT_COUNT AS normalAltCount, - mutation.NORMAL_REF_COUNT AS normalRefCount, - mutation.AMINO_ACID_CHANGE AS aminoAcidChange, - mutation_event.CHR as chr, - mutation_event.START_POSITION AS startPosition, - mutation_event.END_POSITION AS endPosition, - mutation_event.REFERENCE_ALLELE AS referenceAllele, - mutation_event.TUMOR_SEQ_ALLELE AS tumorSeqAllele, - mutation_event.PROTEIN_CHANGE AS proteinChange, - mutation_event.MUTATION_TYPE AS mutationType, - mutation_event.NCBI_BUILD AS ncbiBuild, - mutation_event.VARIANT_TYPE AS variantType, - mutation_event.REFSEQ_MRNA_ID AS refseqMrnaId, - mutation_event.PROTEIN_POS_START AS proteinPosStart, - mutation_event.PROTEIN_POS_END AS proteinPosEnd, - mutation_event.KEYWORD AS keyword, - mutation.ANNOTATION_JSON as annotationJSON, - alteration_driver_annotation.DRIVER_FILTER as driverFilter, - alteration_driver_annotation.DRIVER_FILTER_ANNOTATION as driverFilterAnnotation, - alteration_driver_annotation.DRIVER_TIERS_FILTER as driverTiersFilter, - alteration_driver_annotation.DRIVER_TIERS_FILTER_ANNOTATION as driverTiersFilterAnnotation + mutation.CENTER AS "center", + mutation.MUTATION_STATUS AS "mutationStatus", + mutation.VALIDATION_STATUS AS "validationStatus", + mutation.TUMOR_ALT_COUNT AS "tumorAltCount", + mutation.TUMOR_REF_COUNT AS "tumorRefCount", + mutation.NORMAL_ALT_COUNT AS "normalAltCount", + mutation.NORMAL_REF_COUNT AS "normalRefCount", + mutation.AMINO_ACID_CHANGE AS "aminoAcidChange", + mutation_event.CHR AS "chr", + mutation_event.START_POSITION AS "startPosition", + mutation_event.END_POSITION AS "endPosition", + mutation_event.REFERENCE_ALLELE AS "referenceAllele", + mutation_event.TUMOR_SEQ_ALLELE AS "tumorSeqAllele", + mutation_event.PROTEIN_CHANGE AS "proteinChange", + mutation_event.MUTATION_TYPE AS "mutationType", + mutation_event.NCBI_BUILD AS "ncbiBuild", + mutation_event.VARIANT_TYPE AS "variantType", + mutation_event.REFSEQ_MRNA_ID AS "refseqMrnaId", + mutation_event.PROTEIN_POS_START AS "proteinPosStart", + mutation_event.PROTEIN_POS_END AS "proteinPosEnd", + mutation_event.KEYWORD AS "keyword", + mutation.ANNOTATION_JSON AS "annotationJSON", + alteration_driver_annotation.DRIVER_FILTER AS "driverFilter", + alteration_driver_annotation.DRIVER_FILTER_ANNOTATION AS "driverFilterAnnotation", + alteration_driver_annotation.DRIVER_TIERS_FILTER AS "driverTiersFilter", + alteration_driver_annotation.DRIVER_TIERS_FILTER_ANNOTATION as "driverTiersFilterAnnotation" , @@ -52,7 +52,7 @@ - ORDER BY ${sortBy} ${direction} + ORDER BY "${sortBy}" ${direction} ORDER BY genetic_profile.STABLE_ID ASC, sample.STABLE_ID ASC, mutation.ENTREZ_GENE_ID ASC @@ -286,7 +286,7 @@ - ORDER BY ${sortBy} ${direction} + ORDER BY "${sortBy}" ${direction} ORDER BY genetic_profile.STABLE_ID ASC, sample.STABLE_ID ASC, mutation.ENTREZ_GENE_ID ASC @@ -298,8 +298,8 @@ SELECT - COUNT(*) AS totalCount, - COUNT(DISTINCT(mutation.SAMPLE_ID)) AS sampleCount + COUNT(*) AS "totalCount", + COUNT(DISTINCT(mutation.SAMPLE_ID)) AS "sampleCount" INNER JOIN mutation_event ON mutation.MUTATION_EVENT_ID = mutation_event.MUTATION_EVENT_ID @@ -342,8 +342,8 @@ SELECT - mutation.ENTREZ_GENE_ID AS entrezGeneId, - gene.HUGO_GENE_SYMBOL AS hugoGeneSymbol, - COUNT(*) AS totalCount, - COUNT(DISTINCT(mutation.SAMPLE_ID)) AS numberOfAlteredCases + mutation.ENTREZ_GENE_ID AS "entrezGeneId", + gene.HUGO_GENE_SYMBOL AS "hugoGeneSymbol", + COUNT(*) AS "totalCount", + COUNT(DISTINCT(mutation.SAMPLE_ID)) AS "numberOfAlteredCases" FROM mutation INNER JOIN mutation_event ON mutation_event.MUTATION_EVENT_ID = mutation.MUTATION_EVENT_ID INNER JOIN genetic_profile ON mutation.GENETIC_PROFILE_ID = genetic_profile.GENETIC_PROFILE_ID @@ -366,10 +366,10 @@ - + SELECT - COUNT(*) AS totalCount + COUNT(*) AS "totalCount" SELECT - TABLE_NAME AS tableName, - COALESCE(UPDATE_TIME, CREATE_TIME) AS updateTime + TABLE_NAME AS "tableName", + COALESCE(UPDATE_TIME, CREATE_TIME) AS "updateTime" FROM information_schema.tables WHERE TABLE_SCHEMA=#{dbName} diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/StructuralVariantMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/StructuralVariantMapper.xml similarity index 100% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/StructuralVariantMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/StructuralVariantMapper.xml diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/StudyMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/StudyMapper.xml similarity index 98% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/StudyMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/StudyMapper.xml index e79ba8c2ae5..76f7dfed0dd 100644 --- a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/StudyMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/StudyMapper.xml @@ -2,7 +2,6 @@ - cancer_study.CANCER_STUDY_ID AS "${prefix}cancerStudyId", @@ -22,6 +21,7 @@ + , COUNT(CASE WHEN sample_list.STABLE_ID = CONCAT(cancer_study.CANCER_STUDY_IDENTIFIER,'_sequenced') THEN 1 ELSE NULL END) AS sequencedSampleCount, @@ -34,7 +34,7 @@ COUNT(CASE WHEN sample_list.STABLE_ID = CONCAT(cancer_study.CANCER_STUDY_IDENTIFIER,'_rppa') THEN 1 ELSE NULL END) AS rppaSampleCount, COUNT(CASE WHEN sample_list.STABLE_ID = CONCAT(cancer_study.CANCER_STUDY_IDENTIFIER,'_protein_quantification') THEN 1 ELSE NULL END) AS massSpectrometrySampleCount, COUNT(CASE WHEN sample_list.STABLE_ID = CONCAT(cancer_study.CANCER_STUDY_IDENTIFIER,'_3way_complete') THEN 1 ELSE NULL END) AS completeSampleCount, - IFNULL(treatment.count, 0 ) as treatmentCount, + IFNULL(treatment.count, 0 ) as treatmentCount, @@ -95,7 +95,7 @@ GROUP BY cancer_study.CANCER_STUDY_ID - ORDER BY ${sortBy} ${direction} + ORDER BY "${sortBy}" ${direction} ORDER BY cancer_study.CANCER_STUDY_IDENTIFIER ASC diff --git a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/TreatmentMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/TreatmentMapper.xml similarity index 99% rename from persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/TreatmentMapper.xml rename to src/main/resources/org/cbioportal/persistence/mybatis/TreatmentMapper.xml index de633ab7f55..58c93613077 100644 --- a/persistence/persistence-mybatis/src/main/resources/org/cbioportal/persistence/mybatis/TreatmentMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/TreatmentMapper.xml @@ -2,6 +2,7 @@ + SELECT genetic_profile.STABLE_ID AS molecularProfileId, diff --git a/src/main/resources/portal.properties.EXAMPLE b/src/main/resources/portal.properties.EXAMPLE index 35f21d3264d..dcb354c620a 100644 --- a/src/main/resources/portal.properties.EXAMPLE +++ b/src/main/resources/portal.properties.EXAMPLE @@ -1,11 +1,24 @@ # app name app.name=cbioportal +# Spring Properties + +spring.mvc.pathmatch.matching-strategy = ANT_PATH_MATCHER + # database -db.user=cbio_user -db.password=somepassword -db.driver=com.mysql.jdbc.Driver -db.connection_string=jdbc:mysql://localhost:3306/cbioportal?useSSL=false +spring.datasource.url=jdbc:mysql://localhost:3306/cbioportal?useSSL=false +spring.datasource.username=cbio +spring.datasource.password=P@ssword1 +spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect +#spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver +spring.datasource.driver-class-name=com.mysql.jdbc.Driver + +# this should normally be set to false. In some cases you could set this to true (e.g. for testing a feature of a newer release that is not related to the schema change in expected db version above): +db.suppress_schema_version_mismatch_errors=false + +# authentication +authenticate=saml + # set tomcat_resource_name when using dbconnector=jndi instead of the default # dbconnector=dbcp. Note that dbconnector needs to be set in CATLINA_OPTS when # using Tomcat (CATALINA_OPTS="-Ddbconnector=jndi"). It does not get picked up @@ -14,9 +27,6 @@ db.connection_string=jdbc:mysql://localhost:3306/cbioportal?useSSL=false # # db.tomcat_resource_name=jdbc/cbioportal -# this should normally be set to false. In some cases you could set this to true (e.g. for testing a feature of a newer release that is not related to the schema change in expected db version above): -db.suppress_schema_version_mismatch_errors=false - # web page cosmetics skin.title=cBioPortal for Cancer Genomics skin.email_contact=cbioportal at googlegroups dot com @@ -80,9 +90,6 @@ skin.right_nav.show_whats_new=true # settings controlling what to show in the right navigation bar skin.study_view.link_text=To build your own case set, try out our enhanced Study View. -# setting controlling whether to show the structural variants table widget on study view -skin.study_view.show_sv_table=false - # setting controlling the default setting for filtering genes in patient view # skin.patientview.filter_genes_profiled_all_samples=false @@ -141,6 +148,56 @@ microsoftlive.consumer.key= microsoftlive.consumer.secret= ## SAML settings +# TODO add options for auto- and manual config to docs +# TODO add to docs: metadata-uri can be both URL or metadata xml file +# Providing the SAML2 IDP metadata is sufficient to autoconfigure the provider. The 'metadata-uri' property can point to +# and HTTP endpoint or a metadata xml file on the file system. +#spring.security.saml2.relyingparty.registration.cbio-idp.identityprovider.metadata-uri=classpath:/client-tailored-saml-idp-metadata.xml +spring.security.saml2.relyingparty.registration.cbio-idp.identityprovider.metadata-uri=http://localhost:8082/auth/realms/cbio/protocol/saml/descriptor +spring.security.saml2.relyingparty.registration.cbio-idp.identityprovider.entity-id=http://localhost:8082/auth/realms/cbio +spring.security.saml2.relyingparty.registration.cbio-idp.entity-id=cbioportal +spring.security.saml2.relyingparty.registration.cbio-idp.signing.credentials[0].certificate-location=classpath:/cert.pem +spring.security.saml2.relyingparty.registration.cbio-idp.signing.credentials[0].private-key-location=classpath:/key.pem + +saml.idp.metadata.attribute.email= +saml.idp.metadata.attribute.role= +# TODO document: 'When true, study roles will be retrieved from the cBioPortal database and added to the roles provided by the IDP (default 'false').' +saml.roles-from-database= + +# Change this to configure to configure a custom logout URL: (default: /saml/logout) +saml.logout.url=/saml/logout + +# OAuth2 settings +# Provider information +# A number of wel known IDP are supported as preconfigured CommonOAuth2Providers. +# See: https://docs.spring.io/spring-security/site/docs/5.5.x/reference/html5/#oauth2login-common-oauth2-provider +# For custom IDPs see: https://docs.spring.io/spring-security/site/docs/5.5.x/reference/html5/#oauth2login-custom-provider-properties + +# For OAuth2 Client/Login +# TODO add options for auto- and manual config to docs +# For OIDC clients the issuer-uri is sufficient to autoconfigure the provider (via .well-known endpoint) +spring.security.oauth2.client.provider.cbio-idp.issuer-uri= +spring.security.oauth2.client.provider.cbio-idp.user-name-attribute= +# Configuring the individual settings below is not recommended. + # spring.security.oauth2.client.provider.cbio-idp.authorization-uri= + # spring.security.oauth2.client.provider.cbio-idp.token-uri= + # TODO update docs, the user info endpoint must expose the roles !! + # spring.security.oauth2.client.provider.cbio-idp.user-info-uri= + # spring.security.oauth2.client.provider.cbio-idp.jwk-set-uri= + # spring.security.oauth2.client.provider.cbio-idp.logout-uri= # NOTE: this is not an official property. +spring.security.oauth2.client.registration.cbio-idp.client-id= +spring.security.oauth2.client.registration.cbio-idp.client-secret= +# TODO Can be authorization_code, ... +spring.security.oauth2.client.registration.cbio-idp.authorization-grant-type= +# TODO Can be client_secret_post, ... +spring.security.oauth2.client.registration.cbio-idp.client-authentication-method= +spring.security.oauth2.client.registration.cbio-idp.redirect-uri=/login/oauth2/authorization/ +# Scope must include 'oidc' for SSO logout to work. +spring.security.oauth2.client.registration.cbio-idp.scope=oidc,email,roles +# TODO add to docs (in minutes; default 1) +spring.security.oauth2.allowed-clock-skew= +# TODO add to docs +spring.security.oauth2.logout-url= saml.sp.metadata.entityid= # change this url if behind reverse proxy that handles SSL, see docs/Authenticating-Users-via-SAML.md saml.sp.metadata.entitybaseurl=#{null} diff --git a/src/main/resources/security.properties.EXAMPLE b/src/main/resources/security.properties.EXAMPLE new file mode 100644 index 00000000000..fdedb60d6bb --- /dev/null +++ b/src/main/resources/security.properties.EXAMPLE @@ -0,0 +1,83 @@ + +# authentication (available options: [false, oauth2, optional_oauth2, saml]) +authenticate=false + +# For OAuth2 Client/Login +## Example to use just Google for Optional OAuth2 +#spring.security.oauth2.client.registration.google.clientId= +#spring.security.oauth2.client.registration.google.clientSecret= + +# TODO add options for auto- and manual config to docs +# For OIDC clients the issuer-uri is sufficient to autoconfigure the provider (via .well-known endpoint) +# TODO add to docs + +## Role Path Client ID. JWT Role Path should be resource_access:client-id:roles +#spring.security.oauth2.roles-path.client-id= + +# change this url if behind reverse proxy that handles SSL, see docs/Authenticating-Users-via-SAML.md +#spring.security.oauth2.client.provider.cbio-idp.issuer-uri=http://localhost:8080/realms/cbioportal +#spring.security.oauth2.client.provider.cbio-idp.user-name-attribute=email +## Configuring the individual settings below is not recommended. + # spring.security.oauth2.client.provider.cbio-idp.authorization-uri= + # spring.security.oauth2.client.provider.cbio-idp.token-uri= + # TODO update docs, the user info endpoint must expose the roles !! + # spring.security.oauth2.client.provider.cbio-idp.user-info-uri= + # spring.security.oauth2.client.provider.cbio-idp.jwk-set-uri= + # spring.security.oauth2.client.provider.cbio-idp.logout-uri= # NOTE: this is not an official property. + +#spring.security.oauth2.client.registration.cbio-idp.client-id= +#spring.security.oauth2.client.registration.cbio-idp.client-secret= + +# TODO Can be authorization_code, ... +#spring.security.oauth2.client.registration.cbio-idp.authorization-grant-type= +# TODO Can be client_secret_post, ... +#spring.security.oauth2.client.registration.cbio-idp.client-authentication-method= +#spring.security.oauth2.client.registration.cbio-idp.redirect-uri=/login/oauth2/authorization/ +# Scope must include 'oidc' for SSO logout to work. +# Required Scopes [openid, email, roles] +#spring.security.oauth2.client.registration.cbio-idp.scope=openid,email,roles + +# For SAML 2.0 +## SAML settings +# TODO add options for auto- and manual config to docs +# TODO add to docs: metadata-uri can be both URL or metadata xml file +# Providing the SAML2 IDP metadata is sufficient to autoconfigure the provider. The 'metadata-uri' property can point to +# and HTTP endpoint or a metadata xml file on the file system. +#spring.security.saml2.relyingparty.registration.cbio-saml-idp.assertingparty.metadata-uri=classpath:/client-tailored-saml-idp-metadata.xml +#spring.security.saml2.relyingparty.registration.cbio-saml-idp.assertingparty.metadata-uri=http://localhost:8080/realms/cbioportal/protocol/saml/descriptor +#spring.security.saml2.relyingparty.registration.cbio-saml-idp.entity-id=cbioportal-saml +#spring.security.saml2.relyingparty.registration.cbio-saml-idp.signing.credentials[0].certificate-location=classpath:/local.crt +#spring.security.saml2.relyingparty.registration.cbio-saml-idp.signing.credentials[0].private-key-location=classpath:/local.key +#spring.security.saml2.relyingparty.registration.cbio-saml-idp.singlelogout.binding=POST +#spring.security.saml2.relyingparty.registration.cbio-saml-idp.singlelogout.response-url=http://localhost:8080/logout/saml2/slo +# TODO add to docs (in minutes; default 1) +spring.security.oauth2.allowed-clock-skew= + +## data access token settings +## Resource Server issuer-uri for Data Access Token +#spring.security.oauth2.resourceserver.jwt.issuer-uri=http://localhost:8080/realms/cbioportal +# TODO: Currently Dat.method has only been tested with oauth2 +dat.unauth_users= +dat.method=none +dat.ttl_seconds=2592000 +dat.uuid.max_number_per_user=1 +dat.jwt.secret_key= +dat.filter_user_role= + +# OAuth2 token data access settings (If using OAuth2 for Login can copy setting here) +## TODO: Reuse OAUTH2 Spring settings defined above +#dat.oauth2.clientId= +#dat.oauth2.clientSecret= +#dat.oauth2.issuer= +#dat.oauth2.accessTokenUri=/.../token +#dat.oauth2.userAuthorizationUri=/.../auth +#dat.oauth2.jwkUrl=/.../certs +#dat.oauth2.redirectUri=/.../api/data-access-token/oauth2 + +## Authorization +## study view settings +## always show studies with this group +always_show_study_group=PUBLIC +## Should the permissions for groups and users be filtered by this instance's app.name? +## (true means the system only handles "CBIOPORTAL:someGroupPermission" groups, false means "someGroupPermission" works) +filter_groups_by_appname=false \ No newline at end of file diff --git a/portal/src/main/webapp/content/release_note_mutation_mapper.html b/src/main/resources/templates/config_service.html similarity index 100% rename from portal/src/main/webapp/content/release_note_mutation_mapper.html rename to src/main/resources/templates/config_service.html diff --git a/portal/src/main/webapp/error.html b/src/main/resources/templates/error.html similarity index 100% rename from portal/src/main/webapp/error.html rename to src/main/resources/templates/error.html diff --git a/src/main/resources/templates/footer.html b/src/main/resources/templates/footer.html new file mode 100644 index 00000000000..c6eaf8c0fe6 --- /dev/null +++ b/src/main/resources/templates/footer.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html new file mode 100644 index 00000000000..34cb24cc2f3 --- /dev/null +++ b/src/main/resources/templates/index.html @@ -0,0 +1,80 @@ + + + + + + + cBioPortal for Cancer Genomics + + + + + + + +
    + + + + + + + + +
    + + + diff --git a/src/main/resources/templates/login.html b/src/main/resources/templates/login.html new file mode 100644 index 00000000000..58f4a63201b --- /dev/null +++ b/src/main/resources/templates/login.html @@ -0,0 +1,98 @@ + + + + + + + +
    + + + \ No newline at end of file diff --git a/src/main/resources/templates/login_options.html b/src/main/resources/templates/login_options.html new file mode 100644 index 00000000000..5bf84292873 --- /dev/null +++ b/src/main/resources/templates/login_options.html @@ -0,0 +1,56 @@ + + + + +
    +

    + +

    + + +
    + +
    +

    + +

    + +
    + +
    +

    + +

    + +
    + + + + \ No newline at end of file diff --git a/src/main/resources/templates/tracking_include.html b/src/main/resources/templates/tracking_include.html new file mode 100644 index 00000000000..6c0f1070639 --- /dev/null +++ b/src/main/resources/templates/tracking_include.html @@ -0,0 +1,6 @@ + diff --git a/portal/src/main/resources/tutorials/getting_started.pptx b/src/main/resources/tutorials/getting_started.pptx similarity index 100% rename from portal/src/main/resources/tutorials/getting_started.pptx rename to src/main/resources/tutorials/getting_started.pptx diff --git a/portal/src/main/resources/tutorials/network_view.pptx b/src/main/resources/tutorials/network_view.pptx similarity index 100% rename from portal/src/main/resources/tutorials/network_view.pptx rename to src/main/resources/tutorials/network_view.pptx diff --git a/portal/src/main/webapp/Data/data_clinical.json b/src/main/resources/webapp/Data/data_clinical.json similarity index 96% rename from portal/src/main/webapp/Data/data_clinical.json rename to src/main/resources/webapp/Data/data_clinical.json index 0bba2bbdc72..509d99b216f 100644 --- a/portal/src/main/webapp/Data/data_clinical.json +++ b/src/main/resources/webapp/Data/data_clinical.json @@ -1,9700 +1,9700 @@ -[ - { - "CASE_ID":"TCGA-A5-A0G1", - "SUBTYPE":"NA", - "AGE":67, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.891767554", - "CASE_ID":"TCGA-A5-A0G1", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"106.8113163", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"106.8113163" - }, - { - "CASE_ID":"TCGA-A5-A0G2", - "SUBTYPE":"NA", - "AGE":57, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.882469449", - "CASE_ID":"TCGA-A5-A0G2", - "OS_STATUS":"", - "OS_MONTHS":"NA", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-A5-A0G3", - "SUBTYPE":"NA", - "AGE":61, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"N", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"NA", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-A5-A0G3", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"46.91681319", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"26.1196544" - }, - { - "CASE_ID":"TCGA-A5-A0G5", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":73, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-A5-A0G5", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"36.99463001", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"36.99463001" - }, - { - "CASE_ID":"TCGA-A5-A0G9", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":79, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-A5-A0G9", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"83.45147445", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"83.45147445" - }, - { - "CASE_ID":"TCGA-A5-A0GA", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-A5-A0GA", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"17.84021678", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-A5-A0GB", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":65, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-A5-A0GB", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"32.75634647", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"32.75634647" - }, - { - "CASE_ID":"TCGA-A5-A0GD", - "SUBTYPE":"NA", - "AGE":75, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"N", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"NA", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.795833159", - "CASE_ID":"TCGA-A5-A0GD", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"112.4295061", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"112.4295061" - }, - { - "CASE_ID":"TCGA-A5-A0GE", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":38, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.8681518", - "CASE_ID":"TCGA-A5-A0GE", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"105.2999904", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"105.2999904" - }, - { - "CASE_ID":"TCGA-A5-A0GG", - "SUBTYPE":"NA", - "AGE":76, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-A5-A0GG", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"87.26264415", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"87.26264415" - }, - { - "CASE_ID":"TCGA-A5-A0GH", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":57, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-A5-A0GH", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"74.02211493", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"74.02211493" - }, - { - "CASE_ID":"TCGA-A5-A0GI", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.869799717", - "CASE_ID":"TCGA-A5-A0GI", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"57.4960946", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"57.4960946" - }, - { - "CASE_ID":"TCGA-A5-A0GJ", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":44, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.888897494", - "CASE_ID":"TCGA-A5-A0GJ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"65.7098224", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"0.394258934" - }, - { - "CASE_ID":"TCGA-A5-A0GM", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":53, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.769037046", - "CASE_ID":"TCGA-A5-A0GM", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"60.45303661", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"60.45303661" - }, - { - "CASE_ID":"TCGA-A5-A0GN", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":65, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-A5-A0GN", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"60.48589152", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"60.48589152" - }, - { - "CASE_ID":"TCGA-A5-A0GP", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.751790929", - "CASE_ID":"TCGA-A5-A0GP", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"46.52255426", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"46.52255426" - }, - { - "CASE_ID":"TCGA-A5-A0GQ", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":76, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-A5-A0GQ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"38.34168137", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"38.34168137" - }, - { - "CASE_ID":"TCGA-A5-A0GR", - "SUBTYPE":"NA", - "AGE":69, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.86844934", - "CASE_ID":"TCGA-A5-A0GR", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"36.79750054", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"36.79750054" - }, - { - "CASE_ID":"TCGA-A5-A0GU", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-A5-A0GU", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"28.22236872", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"28.22236872" - }, - { - "CASE_ID":"TCGA-A5-A0GV", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-A5-A0GV", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"20.79715879", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"9.987893005" - }, - { - "CASE_ID":"TCGA-A5-A0GW", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":46, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.79763473", - "CASE_ID":"TCGA-A5-A0GW", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"23.19556731", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"23.19556731" - }, - { - "CASE_ID":"TCGA-A5-A0GX", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":53, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-A5-A0GX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"68.56819967", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"68.56819967" - }, - { - "CASE_ID":"TCGA-A5-A0R6", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.836740624", - "CASE_ID":"TCGA-A5-A0R6", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.9429311", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"19.9429311" - }, - { - "CASE_ID":"TCGA-A5-A0R7", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":55, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-A5-A0R7", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"17.54452258", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"17.54452258" - }, - { - "CASE_ID":"TCGA-A5-A0R8", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":81, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.71082576", - "CASE_ID":"TCGA-A5-A0R8", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.54867216", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"1.37990627" - }, - { - "CASE_ID":"TCGA-A5-A0R9", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":51, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-A5-A0R9", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"24.60832849", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"24.60832849" - }, - { - "CASE_ID":"TCGA-A5-A0RA", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":68, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-A5-A0RA", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"29.01088659", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"29.01088659" - }, - { - "CASE_ID":"TCGA-A5-A0VO", - "SUBTYPE":"NA", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"N", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"NA", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.70262485", - "CASE_ID":"TCGA-A5-A0VO", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"11.95918768", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"11.95918768" - }, - { - "CASE_ID":"TCGA-A5-A0VP", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":74, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.874537804", - "CASE_ID":"TCGA-A5-A0VP", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"42.28427071", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"42.28427071" - }, - { - "CASE_ID":"TCGA-A5-A0VQ", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":62, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-A5-A0VQ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"15.93463193", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"15.93463193" - }, - { - "CASE_ID":"TCGA-A5-A1OF", - "SUBTYPE":"NA", - "AGE":47, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-A5-A1OF", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"7.918033599", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"7.918033599" - }, - { - "CASE_ID":"TCGA-A5-A1OG", - "SUBTYPE":"NA", - "AGE":65, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-A5-A1OG", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"11.4335091", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"11.07210507" - }, - { - "CASE_ID":"TCGA-A5-A1OJ", - "SUBTYPE":"NA", - "AGE":31, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.890025216", - "CASE_ID":"TCGA-A5-A1OJ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"9.59363407", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"9.59363407" - }, - { - "CASE_ID":"TCGA-A5-A1OK", - "SUBTYPE":"NA", - "AGE":63, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-A5-A1OK", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"7.983743422", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"7.983743422" - }, - { - "CASE_ID":"TCGA-AJ-A23M", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":61, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.835714286", - "CASE_ID":"TCGA-AJ-A23M", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.018502247", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AJ-A23O", - "SUBTYPE":"NA", - "AGE":69, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.908260689", - "CASE_ID":"TCGA-AJ-A23O", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"10.25073229", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AP-A051", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":69, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AP-A051", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"83.615749", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"83.615749" - }, - { - "CASE_ID":"TCGA-AP-A052", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":59, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-AP-A052", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"21.97993559", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"12.9119801" - }, - { - "CASE_ID":"TCGA-AP-A053", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":90, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-AP-A053", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"5.946738927", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"5.946738927" - }, - { - "CASE_ID":"TCGA-AP-A054", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-AP-A054", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"23.29413204", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"18.59587974" - }, - { - "CASE_ID":"TCGA-AP-A056", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-AP-A056", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"86.01415752", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"86.01415752" - }, - { - "CASE_ID":"TCGA-AP-A059", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":69, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-AP-A059", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"8.2137278", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"8.2137278" - }, - { - "CASE_ID":"TCGA-AP-A05A", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":81, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-AP-A05A", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"63.83709246", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"63.83709246" - }, - { - "CASE_ID":"TCGA-AP-A05D", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-AP-A05D", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"57.75893389", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"57.75893389" - }, - { - "CASE_ID":"TCGA-AP-A05H", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":75, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-AP-A05H", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"45.50405201", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"45.50405201" - }, - { - "CASE_ID":"TCGA-AP-A05J", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":66, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-AP-A05J", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"36.86321037", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"36.86321037" - }, - { - "CASE_ID":"TCGA-AP-A05N", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-AP-A05N", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"23.85266553", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"23.85266553" - }, - { - "CASE_ID":"TCGA-AP-A05O", - "SUBTYPE":"NA", - "AGE":68, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-AP-A05O", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"12.18917206", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"11.17066981" - }, - { - "CASE_ID":"TCGA-AP-A05P", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":54, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-AP-A05P", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"20.89572352", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"20.89572352" - }, - { - "CASE_ID":"TCGA-AP-A0L8", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":70, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-AP-A0L8", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"48.75668822", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"47.70533106" - }, - { - "CASE_ID":"TCGA-AP-A0L9", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":71, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.888897494", - "CASE_ID":"TCGA-AP-A0L9", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"125.3086313", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"125.3086313" - }, - { - "CASE_ID":"TCGA-AP-A0LD", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.790575691", - "CASE_ID":"TCGA-AP-A0LD", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"117.9162763", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"117.9162763" - }, - { - "CASE_ID":"TCGA-AP-A0LE", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":57, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AP-A0LE", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"110.2939369", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"110.2939369" - }, - { - "CASE_ID":"TCGA-AP-A0LF", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":82, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877755907", - "CASE_ID":"TCGA-AP-A0LF", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"3.384055854", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AP-A0LG", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":54, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AP-A0LG", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"63.11428442", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"63.11428442" - }, - { - "CASE_ID":"TCGA-AP-A0LH", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-AP-A0LH", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"36.33753179", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"9.889328271" - }, - { - "CASE_ID":"TCGA-AP-A0LI", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-AP-A0LI", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"97.64479609", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"97.64479609" - }, - { - "CASE_ID":"TCGA-AP-A0LJ", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":42, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-AP-A0LJ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"31.70498931", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"31.70498931" - }, - { - "CASE_ID":"TCGA-AP-A0LL", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":56, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AP-A0LL", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"83.9114432", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"25.95537985" - }, - { - "CASE_ID":"TCGA-AP-A0LM", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":33, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-AP-A0LM", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"27.10530174", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"27.10530174" - }, - { - "CASE_ID":"TCGA-AP-A0LN", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":56, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.460983716", - "CASE_ID":"TCGA-AP-A0LN", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"82.46582711", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"82.46582711" - }, - { - "CASE_ID":"TCGA-AP-A0LO", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":45, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-AP-A0LO", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"33.38058978", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"16.95313418" - }, - { - "CASE_ID":"TCGA-AP-A0LP", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":76, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-AP-A0LP", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"61.6029585", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"61.6029585" - }, - { - "CASE_ID":"TCGA-AP-A0LQ", - "SUBTYPE":"NA", - "AGE":59, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-AP-A0LQ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"80.72451682", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"80.72451682" - }, - { - "CASE_ID":"TCGA-AP-A0LS", - "SUBTYPE":"NA", - "AGE":63, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-AP-A0LS", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"63.01571968", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"63.01571968" - }, - { - "CASE_ID":"TCGA-AP-A0LT", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":57, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AP-A0LT", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"49.18380207", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"49.18380207" - }, - { - "CASE_ID":"TCGA-AP-A0LV", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":39, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-AP-A0LV", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"25.06829725", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"25.06829725" - }, - { - "CASE_ID":"TCGA-AP-A1DH", - "SUBTYPE":"NA", - "AGE":62, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-AP-A1DH", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"71.62370642", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"71.62370642" - }, - { - "CASE_ID":"TCGA-AP-A1DK", - "SUBTYPE":"NA", - "AGE":53, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-AP-A1DK", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"60.32161696", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"60.32161696" - }, - { - "CASE_ID":"TCGA-AP-A1DM", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AP-A1DM", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"55.85334904", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"55.85334904" - }, - { - "CASE_ID":"TCGA-AP-A1DO", - "SUBTYPE":"NA", - "AGE":62, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AP-A1DO", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"30.98218126", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"30.98218126" - }, - { - "CASE_ID":"TCGA-AP-A1DP", - "SUBTYPE":"NA", - "AGE":70, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AP-A1DP", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"35.51615901", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"27.2695763" - }, - { - "CASE_ID":"TCGA-AP-A1DQ", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":76, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.652238476", - "CASE_ID":"TCGA-AP-A1DQ", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"46.75253864", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"29.70083972" - }, - { - "CASE_ID":"TCGA-AP-A1DR", - "SUBTYPE":"NA", - "AGE":59, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.80219575", - "CASE_ID":"TCGA-AP-A1DR", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"49.11809224", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"49.11809224" - }, - { - "CASE_ID":"TCGA-AP-A1DV", - "SUBTYPE":"NA", - "AGE":59, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.898513296", - "CASE_ID":"TCGA-AP-A1DV", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"6.702401885", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"6.702401885" - }, - { - "CASE_ID":"TCGA-AP-A1E0", - "SUBTYPE":"NA", - "AGE":40, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-AP-A1E0", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"30.88361653", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"30.88361653" - }, - { - "CASE_ID":"TCGA-AP-A1E1", - "SUBTYPE":"NA", - "AGE":74, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AP-A1E1", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"10.41500685", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"10.41500685" - }, - { - "CASE_ID":"TCGA-AP-A1E3", - "SUBTYPE":"NA", - "AGE":45, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-AP-A1E3", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"27.82810979", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AP-A1E4", - "SUBTYPE":"NA", - "AGE":54, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-AP-A1E4", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"16.23032613", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"5.19107597" - }, - { - "CASE_ID":"TCGA-AW-A1PO", - "SUBTYPE":"NA", - "AGE":66, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-AW-A1PO", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"0.55853349", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"0.55853349" - }, - { - "CASE_ID":"TCGA-AX-A05S", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":81, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.909932648", - "CASE_ID":"TCGA-AX-A05S", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"13.56907833", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"11.07210507" - }, - { - "CASE_ID":"TCGA-AX-A05T", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":82, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.890025216", - "CASE_ID":"TCGA-AX-A05T", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.81151145", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"19.81151145" - }, - { - "CASE_ID":"TCGA-AX-A05U", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":56, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-AX-A05U", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"29.6351299", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"29.6351299" - }, - { - "CASE_ID":"TCGA-AX-A05W", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-AX-A05W", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"68.27250547", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"68.27250547" - }, - { - "CASE_ID":"TCGA-AX-A05Y", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":57, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-AX-A05Y", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"71.98511044", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"6.340997862" - }, - { - "CASE_ID":"TCGA-AX-A05Z", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":37, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.842435138", - "CASE_ID":"TCGA-AX-A05Z", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"46.42398953", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"46.42398953" - }, - { - "CASE_ID":"TCGA-AX-A060", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":77, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AX-A060", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"35.31902954", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"35.31902954" - }, - { - "CASE_ID":"TCGA-AX-A062", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":53, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-AX-A062", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"45.93116586", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"45.93116586" - }, - { - "CASE_ID":"TCGA-AX-A063", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AX-A063", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"66.49834027", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"66.49834027" - }, - { - "CASE_ID":"TCGA-AX-A064", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":81, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-AX-A064", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"34.95762552", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"34.95762552" - }, - { - "CASE_ID":"TCGA-AX-A06B", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":72, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-AX-A06B", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"53.84919946", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"53.84919946" - }, - { - "CASE_ID":"TCGA-AX-A06D", - "SUBTYPE":"NA", - "AGE":82, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-AX-A06D", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"12.25488188", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"8.312292534" - }, - { - "CASE_ID":"TCGA-AX-A06F", - "SUBTYPE":"NA", - "AGE":59, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.914765853", - "CASE_ID":"TCGA-AX-A06F", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"51.056532", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"51.056532" - }, - { - "CASE_ID":"TCGA-AX-A06H", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":60, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-AX-A06H", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"27.36814103", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"27.36814103" - }, - { - "CASE_ID":"TCGA-AX-A06J", - "SUBTYPE":"NA", - "AGE":71, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.828806248", - "CASE_ID":"TCGA-AX-A06J", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"29.99653393", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"29.99653393" - }, - { - "CASE_ID":"TCGA-AX-A06L", - "SUBTYPE":"NA", - "AGE":63, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-AX-A06L", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"60.58445625", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"60.58445625" - }, - { - "CASE_ID":"TCGA-AX-A0IS", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":52, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.843520432", - "CASE_ID":"TCGA-AX-A0IS", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"34.99048043", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"14.71900022" - }, - { - "CASE_ID":"TCGA-AX-A0IU", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":79, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.452596592", - "CASE_ID":"TCGA-AX-A0IU", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"28.51806292", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"28.51806292" - }, - { - "CASE_ID":"TCGA-AX-A0IW", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-AX-A0IW", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"37.71743806", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"37.71743806" - }, - { - "CASE_ID":"TCGA-AX-A0IZ", - "SUBTYPE":"NA", - "AGE":53, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.912165907", - "CASE_ID":"TCGA-AX-A0IZ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"43.79559663", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"43.79559663" - }, - { - "CASE_ID":"TCGA-AX-A0J0", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":47, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-AX-A0J0", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"40.05013675", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"40.05013675" - }, - { - "CASE_ID":"TCGA-AX-A0J1", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":80, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.876855817", - "CASE_ID":"TCGA-AX-A0J1", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"65.84124204", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"65.84124204" - }, - { - "CASE_ID":"TCGA-AX-A1C4", - "SUBTYPE":"NA", - "AGE":52, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-AX-A1C4", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"13.27338412", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AX-A1C5", - "SUBTYPE":"NA", - "AGE":47, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.390770931", - "CASE_ID":"TCGA-AX-A1C5", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.18726814", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AX-A1C7", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":77, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.840372671", - "CASE_ID":"TCGA-AX-A1C7", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"16.92027927", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"12.81341537" - }, - { - "CASE_ID":"TCGA-AX-A1C8", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":77, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-AX-A1C8", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"13.53622341", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AX-A1C9", - "SUBTYPE":"NA", - "AGE":73, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.911154351", - "CASE_ID":"TCGA-AX-A1C9", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"15.2446788", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"15.2446788" - }, - { - "CASE_ID":"TCGA-AX-A1CA", - "SUBTYPE":"NA", - "AGE":70, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"Indeterminant", - "MSI_STATUS_5_MARKER_CALL":"Indeterminant", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.877057267", - "CASE_ID":"TCGA-AX-A1CA", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"20.27148021", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"20.27148021" - }, - { - "CASE_ID":"TCGA-AX-A1CC", - "SUBTYPE":"NA", - "AGE":65, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.891243726", - "CASE_ID":"TCGA-AX-A1CC", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"12.41915643", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"12.41915643" - }, - { - "CASE_ID":"TCGA-AX-A1CE", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.802482844", - "CASE_ID":"TCGA-AX-A1CE", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"20.04149583", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AX-A1CF", - "SUBTYPE":"NA", - "AGE":69, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.596528", - "CASE_ID":"TCGA-AX-A1CF", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"76.78192747", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"28.7480473" - }, - { - "CASE_ID":"TCGA-AX-A1CI", - "SUBTYPE":"NA", - "AGE":61, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.894790354", - "CASE_ID":"TCGA-AX-A1CI", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"72.51078902", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"72.51078902" - }, - { - "CASE_ID":"TCGA-AX-A1CJ", - "SUBTYPE":"NA", - "AGE":59, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"Indeterminant", - "MSI_STATUS_5_MARKER_CALL":"Indeterminant", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-AX-A1CJ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"54.04632892", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"54.04632892" - }, - { - "CASE_ID":"TCGA-AX-A1CK", - "SUBTYPE":"NA", - "AGE":58, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.829517277", - "CASE_ID":"TCGA-AX-A1CK", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"67.41827778", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AX-A1CN", - "SUBTYPE":"NA", - "AGE":54, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-AX-A1CN", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"25.10115216", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"25.10115216" - }, - { - "CASE_ID":"TCGA-AX-A1CP", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":84, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-AX-A1CP", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"36.3703867", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"23.72124589" - }, - { - "CASE_ID":"TCGA-AX-A1CR", - "SUBTYPE":"NA", - "AGE":70, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-AX-A1CR", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"11.07210507", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"11.07210507" - }, - { - "CASE_ID":"TCGA-AX-A2H5", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.871917175", - "CASE_ID":"TCGA-AX-A2H5", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"71.19659257", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AX-A2H8", - "SUBTYPE":"NA", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-AX-A2H8", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"61.14298974", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"61.14298974" - }, - { - "CASE_ID":"TCGA-AX-A2HC", - "SUBTYPE":"NA", - "AGE":53, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-AX-A2HC", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"33.38058978", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-AX-A2HD", - "SUBTYPE":"NA", - "AGE":69, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.842998833", - "CASE_ID":"TCGA-AX-A2HD", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"40.4772506", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"40.4772506" - }, - { - "CASE_ID":"TCGA-AX-A2HF", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.840372671", - "CASE_ID":"TCGA-AX-A2HF", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"16.06605158", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"16.06605158" - }, - { - "CASE_ID":"TCGA-AX-A2HG", - "SUBTYPE":"NA", - "AGE":56, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-AX-A2HG", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"21.68424139", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"21.68424139" - }, - { - "CASE_ID":"TCGA-AX-A2HH", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-AX-A2HH", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"17.70879714", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"17.70879714" - }, - { - "CASE_ID":"TCGA-AX-A2HJ", - "SUBTYPE":"NA", - "AGE":35, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-AX-A2HJ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"27.30243121", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"27.30243121" - }, - { - "CASE_ID":"TCGA-AX-A2HK", - "SUBTYPE":"NA", - "AGE":77, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-AX-A2HK", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"2.956942008", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-B5-A0JN", - "SUBTYPE":"NA", - "AGE":84, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-B5-A0JN", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"80.33025788", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"80.33025788" - }, - { - "CASE_ID":"TCGA-B5-A0JR", - "SUBTYPE":"NA", - "AGE":73, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-B5-A0JR", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"56.87185129", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"56.87185129" - }, - { - "CASE_ID":"TCGA-B5-A0JS", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":54, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A0JS", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"46.71968373", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"46.71968373" - }, - { - "CASE_ID":"TCGA-B5-A0JT", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-B5-A0JT", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"43.10564349", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"43.10564349" - }, - { - "CASE_ID":"TCGA-B5-A0JU", - "SUBTYPE":"NA", - "AGE":57, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-B5-A0JU", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"48.72383331", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"48.72383331" - }, - { - "CASE_ID":"TCGA-B5-A0JV", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-B5-A0JV", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"40.64152515", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"22.93272802" - }, - { - "CASE_ID":"TCGA-B5-A0JX", - "SUBTYPE":"NA", - "AGE":62, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-B5-A0JX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"44.68267923", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"44.68267923" - }, - { - "CASE_ID":"TCGA-B5-A0JY", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":50, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-B5-A0JY", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"32.95347593", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"32.95347593" - }, - { - "CASE_ID":"TCGA-B5-A0JZ", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":60, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.930343034", - "CASE_ID":"TCGA-B5-A0JZ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"28.61662766", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"11.69634839" - }, - { - "CASE_ID":"TCGA-B5-A0K0", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":48, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.890025216", - "CASE_ID":"TCGA-B5-A0K0", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"28.32093345", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"28.32093345" - }, - { - "CASE_ID":"TCGA-B5-A0K1", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":69, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A0K1", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"30.48935759", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"30.48935759" - }, - { - "CASE_ID":"TCGA-B5-A0K2", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":54, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.78035969", - "CASE_ID":"TCGA-B5-A0K2", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"25.88967003", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"25.88967003" - }, - { - "CASE_ID":"TCGA-B5-A0K3", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":62, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-B5-A0K3", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"27.23672138", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"7.95088851" - }, - { - "CASE_ID":"TCGA-B5-A0K4", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":51, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A0K4", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"17.87307169", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"17.87307169" - }, - { - "CASE_ID":"TCGA-B5-A0K6", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-B5-A0K6", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"13.99619217", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"13.99619217" - }, - { - "CASE_ID":"TCGA-B5-A0K7", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.756697585", - "CASE_ID":"TCGA-B5-A0K7", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"17.05169891", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"10.5464265" - }, - { - "CASE_ID":"TCGA-B5-A0K8", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":71, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A0K8", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"17.80736187", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"17.80736187" - }, - { - "CASE_ID":"TCGA-B5-A0K9", - "SUBTYPE":"NA", - "AGE":88, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.913841183", - "CASE_ID":"TCGA-B5-A0K9", - "OS_STATUS":"", - "OS_MONTHS":"NA", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-B5-A0KB", - "SUBTYPE":"NA", - "AGE":62, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-B5-A0KB", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"4.074008989", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"4.074008989" - }, - { - "CASE_ID":"TCGA-B5-A11E", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":53, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-B5-A11E", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"8.706551468", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"8.706551468" - }, - { - "CASE_ID":"TCGA-B5-A11F", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":55, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A11F", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"185.6302483", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"52.89640703" - }, - { - "CASE_ID":"TCGA-B5-A11G", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":71, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.480973374", - "CASE_ID":"TCGA-B5-A11G", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"113.2508789", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-B5-A11H", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A11H", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"88.28114639", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"88.28114639" - }, - { - "CASE_ID":"TCGA-B5-A11I", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":65, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-B5-A11I", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"75.66486049", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"22.96558293" - }, - { - "CASE_ID":"TCGA-B5-A11J", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A11J", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"54.40773295", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"54.40773295" - }, - { - "CASE_ID":"TCGA-B5-A11L", - "SUBTYPE":"NA", - "AGE":71, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-B5-A11L", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"45.86545604", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"45.86545604" - }, - { - "CASE_ID":"TCGA-B5-A11M", - "SUBTYPE":"NA", - "AGE":43, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"N", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"NA", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.820773525", - "CASE_ID":"TCGA-B5-A11M", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"44.71553414", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"44.71553414" - }, - { - "CASE_ID":"TCGA-B5-A11N", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":69, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"NA", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-B5-A11N", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"43.92701627", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"43.92701627" - }, - { - "CASE_ID":"TCGA-B5-A11O", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":62, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.879877208", - "CASE_ID":"TCGA-B5-A11O", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"40.90436444", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"40.90436444" - }, - { - "CASE_ID":"TCGA-B5-A11P", - "SUBTYPE":"NA", - "AGE":87, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A11P", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"36.79750054", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"36.79750054" - }, - { - "CASE_ID":"TCGA-B5-A11Q", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A11Q", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"32.03353842", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"32.03353842" - }, - { - "CASE_ID":"TCGA-B5-A11R", - "SUBTYPE":"NA", - "AGE":51, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.366698565", - "CASE_ID":"TCGA-B5-A11R", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"33.47915451", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"33.47915451" - }, - { - "CASE_ID":"TCGA-B5-A11S", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A11S", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"27.30243121", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"1.314196448" - }, - { - "CASE_ID":"TCGA-B5-A11U", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":74, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-B5-A11U", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"16.7231498", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"16.7231498" - }, - { - "CASE_ID":"TCGA-B5-A11V", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.762721706", - "CASE_ID":"TCGA-B5-A11V", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.51581725", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"19.51581725" - }, - { - "CASE_ID":"TCGA-B5-A11W", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":61, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-B5-A11W", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.45010743", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"19.45010743" - }, - { - "CASE_ID":"TCGA-B5-A11X", - "SUBTYPE":"NA", - "AGE":66, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"N", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"NA", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.888897494", - "CASE_ID":"TCGA-B5-A11X", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.54867216", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"13.01054484" - }, - { - "CASE_ID":"TCGA-B5-A11Y", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":59, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.921320947", - "CASE_ID":"TCGA-B5-A11Y", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"18.36589536", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"18.36589536" - }, - { - "CASE_ID":"TCGA-B5-A11Z", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":61, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-B5-A11Z", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"17.34739311", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"17.34739311" - }, - { - "CASE_ID":"TCGA-B5-A121", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":57, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-B5-A121", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"16.55887524", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"16.55887524" - }, - { - "CASE_ID":"TCGA-B5-A1MR", - "SUBTYPE":"NA", - "AGE":65, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-B5-A1MR", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"191.7084069", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"191.7084069" - }, - { - "CASE_ID":"TCGA-B5-A1MU", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":79, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.912165907", - "CASE_ID":"TCGA-B5-A1MU", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"50.82654763", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"44.84695379" - }, - { - "CASE_ID":"TCGA-B5-A1MV", - "SUBTYPE":"NA", - "AGE":84, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-B5-A1MV", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"14.39045111", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"14.39045111" - }, - { - "CASE_ID":"TCGA-B5-A1MW", - "SUBTYPE":"NA", - "AGE":55, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-B5-A1MW", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"14.68614531", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"10.21787738" - }, - { - "CASE_ID":"TCGA-B5-A1MX", - "SUBTYPE":"NA", - "AGE":47, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-B5-A1MX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"11.66349348", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"11.66349348" - }, - { - "CASE_ID":"TCGA-B5-A1MY", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":62, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.86844934", - "CASE_ID":"TCGA-B5-A1MY", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"11.86062294", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"10.94068543" - }, - { - "CASE_ID":"TCGA-B5-A1MZ", - "SUBTYPE":"NA", - "AGE":54, - "TUMOR_STAGE_2009":"Unknown", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-B5-A1MZ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"15.27753371", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"15.27753371" - }, - { - "CASE_ID":"TCGA-B5-A1N2", - "SUBTYPE":"NA", - "AGE":70, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-B5-A1N2", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"12.78056046", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-BG-A0LW", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":47, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-BG-A0LW", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"18.56302483", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"18.56302483" - }, - { - "CASE_ID":"TCGA-BG-A0LX", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":57, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-BG-A0LX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"20.14006057", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"20.14006057" - }, - { - "CASE_ID":"TCGA-BG-A0M0", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":66, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BG-A0M0", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.28583287", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"19.28583287" - }, - { - "CASE_ID":"TCGA-BG-A0M2", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":62, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BG-A0M2", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"20.89572352", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"20.89572352" - }, - { - "CASE_ID":"TCGA-BG-A0M3", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":74, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.396873131", - "CASE_ID":"TCGA-BG-A0M3", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"35.1876099", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"35.1876099" - }, - { - "CASE_ID":"TCGA-BG-A0M4", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-BG-A0M4", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"34.95762552", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"34.95762552" - }, - { - "CASE_ID":"TCGA-BG-A0M6", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":73, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.757451043", - "CASE_ID":"TCGA-BG-A0M6", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"22.04564542", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"22.04564542" - }, - { - "CASE_ID":"TCGA-BG-A0M7", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":60, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.190161319", - "CASE_ID":"TCGA-BG-A0M7", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"38.34168137", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"38.34168137" - }, - { - "CASE_ID":"TCGA-BG-A0M8", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":50, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.900667706", - "CASE_ID":"TCGA-BG-A0M8", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"36.46895143", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"36.46895143" - }, - { - "CASE_ID":"TCGA-BG-A0M9", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":73, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.576051552", - "CASE_ID":"TCGA-BG-A0M9", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"28.25522363", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"28.25522363" - }, - { - "CASE_ID":"TCGA-BG-A0MA", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BG-A0MA", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"10.71070105", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"2.792667452" - }, - { - "CASE_ID":"TCGA-BG-A0MC", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":74, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.739984154", - "CASE_ID":"TCGA-BG-A0MC", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"41.49575285", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"41.49575285" - }, - { - "CASE_ID":"TCGA-BG-A0MG", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":73, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.798974359", - "CASE_ID":"TCGA-BG-A0MG", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"48.52670384", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"48.52670384" - }, - { - "CASE_ID":"TCGA-BG-A0MH", - "SUBTYPE":"NA", - "AGE":61, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"N", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"NA", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.867965161", - "CASE_ID":"TCGA-BG-A0MH", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"44.05843592", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-BG-A0MI", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":83, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-BG-A0MI", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"23.4584066", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"23.4584066" - }, - { - "CASE_ID":"TCGA-BG-A0MO", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.900509523", - "CASE_ID":"TCGA-BG-A0MO", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"42.97422385", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-BG-A0MQ", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":71, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-BG-A0MQ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"39.2944738", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"39.2944738" - }, - { - "CASE_ID":"TCGA-BG-A0MS", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":53, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-BG-A0MS", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"30.78505179", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"30.78505179" - }, - { - "CASE_ID":"TCGA-BG-A0MT", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BG-A0MT", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"21.15856281", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"18.56302483" - }, - { - "CASE_ID":"TCGA-BG-A0MU", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":78, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-BG-A0MU", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"7.589484487", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"7.589484487" - }, - { - "CASE_ID":"TCGA-BG-A0RY", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":68, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.875250932", - "CASE_ID":"TCGA-BG-A0RY", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"15.40895335", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"15.40895335" - }, - { - "CASE_ID":"TCGA-BG-A0VT", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":56, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.930343034", - "CASE_ID":"TCGA-BG-A0VT", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"7.359500109", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"7.359500109" - }, - { - "CASE_ID":"TCGA-BG-A0VV", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":53, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BG-A0VV", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"8.542276912", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"8.542276912" - }, - { - "CASE_ID":"TCGA-BG-A0VW", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":77, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BG-A0VW", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"4.303993367", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"4.303993367" - }, - { - "CASE_ID":"TCGA-BG-A0VX", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.918013002", - "CASE_ID":"TCGA-BG-A0VX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"16.09890649", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"16.09890649" - }, - { - "CASE_ID":"TCGA-BG-A0VZ", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BG-A0VZ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"28.51806292", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-BG-A0W1", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":89, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BG-A0W1", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"29.79940446", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"29.79940446" - }, - { - "CASE_ID":"TCGA-BG-A0W2", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":57, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BG-A0W2", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"37.81600279", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"37.81600279" - }, - { - "CASE_ID":"TCGA-BG-A0YU", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":37, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-BG-A0YU", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"14.81756495", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"14.81756495" - }, - { - "CASE_ID":"TCGA-BG-A0YV", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-BG-A0YV", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"12.55057608", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"12.55057608" - }, - { - "CASE_ID":"TCGA-BG-A186", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":61, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-BG-A186", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"13.76620779", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"13.76620779" - }, - { - "CASE_ID":"TCGA-BG-A187", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":65, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BG-A187", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"14.71900022", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"14.71900022" - }, - { - "CASE_ID":"TCGA-BG-A18A", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":74, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-BG-A18A", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"13.99619217", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"13.99619217" - }, - { - "CASE_ID":"TCGA-BG-A18B", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":53, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.807377395", - "CASE_ID":"TCGA-BG-A18B", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"15.44180826", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"15.44180826" - }, - { - "CASE_ID":"TCGA-BG-A18C", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":72, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.45957569", - "CASE_ID":"TCGA-BG-A18C", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"15.44180826", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"15.44180826" - }, - { - "CASE_ID":"TCGA-BG-A220", - "SUBTYPE":"NA", - "AGE":69, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-BG-A220", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"14.25903146", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"14.25903146" - }, - { - "CASE_ID":"TCGA-BG-A221", - "SUBTYPE":"NA", - "AGE":84, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-BG-A221", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.807020116", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.807020116" - }, - { - "CASE_ID":"TCGA-BG-A222", - "SUBTYPE":"NA", - "AGE":49, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-BG-A222", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"9.560779159", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"9.560779159" - }, - { - "CASE_ID":"TCGA-BG-A2AD", - "SUBTYPE":"NA", - "AGE":63, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-BG-A2AD", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"0", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-BG-A2AE", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":57, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.822827613", - "CASE_ID":"TCGA-BG-A2AE", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"0.525678579", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-BK-A0C9", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":57, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BK-A0C9", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"12.68199572", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-BK-A0CA", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":61, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-BK-A0CA", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"12.18917206", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"12.18917206" - }, - { - "CASE_ID":"TCGA-BK-A0CB", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":60, - "TUMOR_STAGE_2009":"Unknown", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"NA", - "MICRO_RNA_SCORE":"NA", - "CASE_ID":"TCGA-BK-A0CB", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"6.176723306", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"6.176723306" - }, - { - "CASE_ID":"TCGA-BK-A0CC", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":69, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-BK-A0CC", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"10.21787738", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"10.21787738" - }, - { - "CASE_ID":"TCGA-BK-A139", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":74, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-BK-A139", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"10.15216756", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"10.15216756" - }, - { - "CASE_ID":"TCGA-BK-A13C", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":47, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BK-A13C", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"13.53622341", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"13.53622341" - }, - { - "CASE_ID":"TCGA-BK-A26L", - "SUBTYPE":"NA", - "AGE":71, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-BK-A26L", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"11.92633277", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"11.92633277" - }, - { - "CASE_ID":"TCGA-BS-A0T9", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":39, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-BS-A0T9", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"46.91681319", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"20.79715879" - }, - { - "CASE_ID":"TCGA-BS-A0TA", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-BS-A0TA", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"23.4584066", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"12.94483501" - }, - { - "CASE_ID":"TCGA-BS-A0TC", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":69, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-BS-A0TC", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"74.25209931", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"74.25209931" - }, - { - "CASE_ID":"TCGA-BS-A0TD", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":65, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-BS-A0TD", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"65.77553222", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"65.77553222" - }, - { - "CASE_ID":"TCGA-BS-A0TE", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":35, - "TUMOR_STAGE_2009":"Unknown", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.930343034", - "CASE_ID":"TCGA-BS-A0TE", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"4.796817035", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"1.90558485" - }, - { - "CASE_ID":"TCGA-BS-A0TG", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-BS-A0TG", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"61.76723306", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-BS-A0TI", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.909680147", - "CASE_ID":"TCGA-BS-A0TI", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"47.40963686", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"47.40963686" - }, - { - "CASE_ID":"TCGA-BS-A0TJ", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":59, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.840372671", - "CASE_ID":"TCGA-BS-A0TJ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"49.74233556", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"49.74233556" - }, - { - "CASE_ID":"TCGA-BS-A0U5", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":76, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.869465256", - "CASE_ID":"TCGA-BS-A0U5", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"72.41222428", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"72.41222428" - }, - { - "CASE_ID":"TCGA-BS-A0U7", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.920652251", - "CASE_ID":"TCGA-BS-A0U7", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"30.68648706", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"30.68648706" - }, - { - "CASE_ID":"TCGA-BS-A0U8", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":55, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-BS-A0U8", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"85.61989859", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"85.61989859" - }, - { - "CASE_ID":"TCGA-BS-A0U9", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":59, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-BS-A0U9", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"57.46323969", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"57.46323969" - }, - { - "CASE_ID":"TCGA-BS-A0UA", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":68, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-BS-A0UA", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"83.45147445", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"17.05169891" - }, - { - "CASE_ID":"TCGA-BS-A0UF", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":65, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"-0.14185334", - "CASE_ID":"TCGA-BS-A0UF", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"60.55160134", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"60.55160134" - }, - { - "CASE_ID":"TCGA-BS-A0UJ", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":68, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BS-A0UJ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"0.887082602", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"0.887082602" - }, - { - "CASE_ID":"TCGA-BS-A0UL", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":54, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-BS-A0UL", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.182776803", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.182776803" - }, - { - "CASE_ID":"TCGA-BS-A0UM", - "SUBTYPE":"NA", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"N", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"NA", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.928732873", - "CASE_ID":"TCGA-BS-A0UM", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"71.98511044", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"47.77104088" - }, - { - "CASE_ID":"TCGA-BS-A0UT", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":62, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.81473312", - "CASE_ID":"TCGA-BS-A0UT", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.54867216", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"19.54867216" - }, - { - "CASE_ID":"TCGA-BS-A0UV", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":55, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-BS-A0UV", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"4.895381769", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"4.895381769" - }, - { - "CASE_ID":"TCGA-BS-A0V4", - "SUBTYPE":"NA", - "AGE":56, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.930343034", - "CASE_ID":"TCGA-BS-A0V4", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.018502247", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.018502247" - }, - { - "CASE_ID":"TCGA-BS-A0V6", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":55, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.936305291", - "CASE_ID":"TCGA-BS-A0V6", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"54.21060348", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"54.21060348" - }, - { - "CASE_ID":"TCGA-BS-A0V7", - "SUBTYPE":"NA", - "AGE":48, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-BS-A0V7", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"46.9496681", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"46.9496681" - }, - { - "CASE_ID":"TCGA-BS-A0V8", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":68, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-BS-A0V8", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"49.51235118", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"49.51235118" - }, - { - "CASE_ID":"TCGA-BS-A0VI", - "SUBTYPE":"NA", - "AGE":58, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.890025216", - "CASE_ID":"TCGA-BS-A0VI", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"54.5720075", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"54.5720075" - }, - { - "CASE_ID":"TCGA-BS-A0WQ", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":55, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-BS-A0WQ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"39.65587782", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"39.65587782" - }, - { - "CASE_ID":"TCGA-D1-A0ZN", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.677581832", - "CASE_ID":"TCGA-D1-A0ZN", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"16.82171453", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"14.71900022" - }, - { - "CASE_ID":"TCGA-D1-A0ZO", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":75, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A0ZO", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.77865654", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"19.77865654" - }, - { - "CASE_ID":"TCGA-D1-A0ZP", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":59, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-D1-A0ZP", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"29.9308241", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"20.66573914" - }, - { - "CASE_ID":"TCGA-D1-A0ZQ", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":90, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A0ZQ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"8.542276912", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"8.542276912" - }, - { - "CASE_ID":"TCGA-D1-A0ZR", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":57, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.770817643", - "CASE_ID":"TCGA-D1-A0ZR", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"0.55853349", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"0.55853349" - }, - { - "CASE_ID":"TCGA-D1-A0ZS", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":54, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.9151894", - "CASE_ID":"TCGA-D1-A0ZS", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"4.829671946", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"4.829671946" - }, - { - "CASE_ID":"TCGA-D1-A0ZU", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":34, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A0ZU", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"28.64948257", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"28.64948257" - }, - { - "CASE_ID":"TCGA-D1-A0ZV", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-D1-A0ZV", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"23.91837535", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"23.91837535" - }, - { - "CASE_ID":"TCGA-D1-A0ZZ", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":80, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"NA", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-D1-A0ZZ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"22.50561417", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"22.50561417" - }, - { - "CASE_ID":"TCGA-D1-A101", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A101", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.741310294", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.741310294" - }, - { - "CASE_ID":"TCGA-D1-A102", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":49, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"NA", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.887382298", - "CASE_ID":"TCGA-D1-A102", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"4.435413012", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"4.435413012" - }, - { - "CASE_ID":"TCGA-D1-A103", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":87, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.877018213", - "CASE_ID":"TCGA-D1-A103", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"21.97993559", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"21.97993559" - }, - { - "CASE_ID":"TCGA-D1-A15V", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":68, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-D1-A15V", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"39.45874835", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"39.45874835" - }, - { - "CASE_ID":"TCGA-D1-A15W", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A15W", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"30.06224375", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"30.06224375" - }, - { - "CASE_ID":"TCGA-D1-A15X", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":45, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.921320947", - "CASE_ID":"TCGA-D1-A15X", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"29.86511428", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"29.86511428" - }, - { - "CASE_ID":"TCGA-D1-A15Z", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":72, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-D1-A15Z", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"1.90558485", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.90558485" - }, - { - "CASE_ID":"TCGA-D1-A160", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":70, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-D1-A160", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"3.679750054", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"3.679750054" - }, - { - "CASE_ID":"TCGA-D1-A161", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":78, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A161", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"29.30658079", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"29.30658079" - }, - { - "CASE_ID":"TCGA-D1-A162", - "SUBTYPE":"NA", - "AGE":69, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"N", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"NA", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.88209171", - "CASE_ID":"TCGA-D1-A162", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"37.61887332", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"37.61887332" - }, - { - "CASE_ID":"TCGA-D1-A163", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":50, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-D1-A163", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"32.559217", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"7.326645198" - }, - { - "CASE_ID":"TCGA-D1-A165", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A165", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"0.657098224", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"0.657098224" - }, - { - "CASE_ID":"TCGA-D1-A167", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":70, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.93181747", - "CASE_ID":"TCGA-D1-A167", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"15.70464755", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"15.70464755" - }, - { - "CASE_ID":"TCGA-D1-A168", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.788513777", - "CASE_ID":"TCGA-D1-A168", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"36.0746925", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"36.0746925" - }, - { - "CASE_ID":"TCGA-D1-A169", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.905982296", - "CASE_ID":"TCGA-D1-A169", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"37.29032421", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"17.05169891" - }, - { - "CASE_ID":"TCGA-D1-A16B", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-D1-A16B", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"36.33753179", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"36.33753179" - }, - { - "CASE_ID":"TCGA-D1-A16D", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":49, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-D1-A16D", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"37.48745368", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"37.48745368" - }, - { - "CASE_ID":"TCGA-D1-A16E", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":73, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A16E", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"36.76464563", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"36.76464563" - }, - { - "CASE_ID":"TCGA-D1-A16F", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"N", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"NA", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.519368529", - "CASE_ID":"TCGA-D1-A16F", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"2.628392896", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"2.628392896" - }, - { - "CASE_ID":"TCGA-D1-A16G", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":74, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-D1-A16G", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"27.40099594", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"21.09285299" - }, - { - "CASE_ID":"TCGA-D1-A16I", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":62, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A16I", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"11.46636401", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"11.46636401" - }, - { - "CASE_ID":"TCGA-D1-A16J", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":61, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.891829399", - "CASE_ID":"TCGA-D1-A16J", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"29.86511428", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"29.86511428" - }, - { - "CASE_ID":"TCGA-D1-A16N", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":51, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.819387387", - "CASE_ID":"TCGA-D1-A16N", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"31.04789108", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"31.04789108" - }, - { - "CASE_ID":"TCGA-D1-A16O", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":44, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.667510536", - "CASE_ID":"TCGA-D1-A16O", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"33.57771925", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"33.57771925" - }, - { - "CASE_ID":"TCGA-D1-A16Q", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":54, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.837571802", - "CASE_ID":"TCGA-D1-A16Q", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"10.64499123", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"10.64499123" - }, - { - "CASE_ID":"TCGA-D1-A16R", - "SUBTYPE":"NA", - "AGE":39, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"N", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"NA", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-D1-A16R", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"0.689953135", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"0.689953135" - }, - { - "CASE_ID":"TCGA-D1-A16S", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":70, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.784111389", - "CASE_ID":"TCGA-D1-A16S", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"18.66158956", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"18.66158956" - }, - { - "CASE_ID":"TCGA-D1-A16V", - "SUBTYPE":"NA", - "AGE":78, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"-0.102733132", - "CASE_ID":"TCGA-D1-A16V", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"3.942589344", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-D1-A16X", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":54, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.890025216", - "CASE_ID":"TCGA-D1-A16X", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"3.646895143", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"3.646895143" - }, - { - "CASE_ID":"TCGA-D1-A16Y", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":56, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-D1-A16Y", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"17.47881276", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"17.47881276" - }, - { - "CASE_ID":"TCGA-D1-A174", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":51, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.887382298", - "CASE_ID":"TCGA-D1-A174", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.51581725", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"19.51581725" - }, - { - "CASE_ID":"TCGA-D1-A175", - "SUBTYPE":"NA", - "AGE":48, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-D1-A175", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"6.636692062", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"6.636692062" - }, - { - "CASE_ID":"TCGA-D1-A176", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.594277483", - "CASE_ID":"TCGA-D1-A176", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"30.12795357", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"30.12795357" - }, - { - "CASE_ID":"TCGA-D1-A177", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":70, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.930343034", - "CASE_ID":"TCGA-D1-A177", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"18.00449134", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"11.40065419" - }, - { - "CASE_ID":"TCGA-D1-A179", - "SUBTYPE":"NA", - "AGE":76, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.469920802", - "CASE_ID":"TCGA-D1-A179", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"14.71900022", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"14.02904708" - }, - { - "CASE_ID":"TCGA-D1-A17A", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":59, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-D1-A17A", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.577035738", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.577035738" - }, - { - "CASE_ID":"TCGA-D1-A17B", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":69, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-D1-A17B", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"6.965241174", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"6.965241174" - }, - { - "CASE_ID":"TCGA-D1-A17C", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":78, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A17C", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"0.985647336", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"0.985647336" - }, - { - "CASE_ID":"TCGA-D1-A17D", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.85566506", - "CASE_ID":"TCGA-D1-A17D", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"30.42364777", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"30.42364777" - }, - { - "CASE_ID":"TCGA-D1-A17F", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":68, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-D1-A17F", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.281341537", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.281341537" - }, - { - "CASE_ID":"TCGA-D1-A17H", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":61, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-D1-A17H", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"27.99238434", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"27.99238434" - }, - { - "CASE_ID":"TCGA-D1-A17K", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":74, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.888897494", - "CASE_ID":"TCGA-D1-A17K", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"28.05809416", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"26.77675263" - }, - { - "CASE_ID":"TCGA-D1-A17L", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":81, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-D1-A17L", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"26.34963878", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"26.34963878" - }, - { - "CASE_ID":"TCGA-D1-A17M", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":56, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-D1-A17M", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"10.21787738", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"10.21787738" - }, - { - "CASE_ID":"TCGA-D1-A17N", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":46, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.837730267", - "CASE_ID":"TCGA-D1-A17N", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.511325915", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.511325915" - }, - { - "CASE_ID":"TCGA-D1-A17Q", - "SUBTYPE":"POLE (Ultra-mutated)", - "AGE":54, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"3_HIGHEST", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.888581036", - "CASE_ID":"TCGA-D1-A17Q", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.774165205", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.774165205" - }, - { - "CASE_ID":"TCGA-D1-A17R", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.932869329", - "CASE_ID":"TCGA-D1-A17R", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"11.1378149", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"11.1378149" - }, - { - "CASE_ID":"TCGA-D1-A17S", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":59, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-D1-A17S", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"24.27977938", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"24.27977938" - }, - { - "CASE_ID":"TCGA-D1-A17T", - "SUBTYPE":"Copy-number low (Endometriod)", - "AGE":67, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.807152783", - "CASE_ID":"TCGA-D1-A17T", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"2.299843784", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"2.299843784" - }, - { - "CASE_ID":"TCGA-D1-A17U", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":53, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.908260689", - "CASE_ID":"TCGA-D1-A17U", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"22.89987311", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"22.89987311" - }, - { - "CASE_ID":"TCGA-D1-A1NS", - "SUBTYPE":"NA", - "AGE":53, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-D1-A1NS", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.412761182", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.412761182" - }, - { - "CASE_ID":"TCGA-D1-A1NU", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":74, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-D1-A1NU", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"13.2076743", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"13.2076743" - }, - { - "CASE_ID":"TCGA-D1-A1NW", - "SUBTYPE":"NA", - "AGE":72, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.736696762", - "CASE_ID":"TCGA-D1-A1NW", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"0.722808046", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"0.722808046" - }, - { - "CASE_ID":"TCGA-D1-A1NX", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":66, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-D1-A1NX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"18.23447572", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"15.63893773" - }, - { - "CASE_ID":"TCGA-D1-A1NY", - "SUBTYPE":"NA", - "AGE":67, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.706422825", - "CASE_ID":"TCGA-D1-A1NY", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"16.85456945", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"16.85456945" - }, - { - "CASE_ID":"TCGA-D1-A1NZ", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-D1-A1NZ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"18.00449134", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"18.00449134" - }, - { - "CASE_ID":"TCGA-D1-A1O0", - "SUBTYPE":"NA", - "AGE":77, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-D1-A1O0", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"2.069859406", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"2.069859406" - }, - { - "CASE_ID":"TCGA-D1-A1O5", - "SUBTYPE":"NA", - "AGE":61, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-D1-A1O5", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"15.04754933", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"15.04754933" - }, - { - "CASE_ID":"TCGA-D1-A1O7", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-D1-A1O7", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.051357158", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"1.051357158" - }, - { - "CASE_ID":"TCGA-D1-A1O8", - "SUBTYPE":"NA", - "AGE":70, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.883397264", - "CASE_ID":"TCGA-D1-A1O8", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"5.651044726", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"5.651044726" - }, - { - "CASE_ID":"TCGA-D1-A2G0", - "SUBTYPE":"NA", - "AGE":70, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-D1-A2G0", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"3.515475498", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"3.515475498" - }, - { - "CASE_ID":"TCGA-D1-A2G5", - "SUBTYPE":"NA", - "AGE":50, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-D1-A2G5", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"41.39718811", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-D1-A2G6", - "SUBTYPE":"NA", - "AGE":53, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.912165907", - "CASE_ID":"TCGA-D1-A2G6", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"8.47656709", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-DI-A0WH", - "SUBTYPE":"MSI (Hyper-mutated)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.900244534", - "CASE_ID":"TCGA-DI-A0WH", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"16.26318104", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-DI-A1BU", - "SUBTYPE":"NA", - "AGE":55, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.930343034", - "CASE_ID":"TCGA-DI-A1BU", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"39.26161888", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-DI-A1BY", - "SUBTYPE":"NA", - "AGE":63, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.934636502", - "CASE_ID":"TCGA-DI-A1BY", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"36.60037108", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-DI-A1C3", - "SUBTYPE":"NA", - "AGE":38, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-DI-A1C3", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"24.27977938", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-DI-A1NN", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-DI-A1NN", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"35.35188445", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"33.57771925" - }, - { - "CASE_ID":"TCGA-DI-A1NO", - "SUBTYPE":"NA", - "AGE":68, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.840372671", - "CASE_ID":"TCGA-DI-A1NO", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"9.363649692", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-E6-A1LX", - "SUBTYPE":"NA", - "AGE":40, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.757451043", - "CASE_ID":"TCGA-E6-A1LX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"23.35984186", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"23.35984186" - }, - { - "CASE_ID":"TCGA-E6-A1LZ", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":76, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-E6-A1LZ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"48.32957438", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"48.32957438" - }, - { - "CASE_ID":"TCGA-E6-A1M0", - "SUBTYPE":"NA", - "AGE":56, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.811767884", - "CASE_ID":"TCGA-E6-A1M0", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"17.018844", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"17.018844" - }, - { - "CASE_ID":"TCGA-EC-A1NJ", - "SUBTYPE":"NA", - "AGE":73, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-EC-A1NJ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"8.575131823", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"8.575131823" - }, - { - "CASE_ID":"TCGA-EC-A1QX", - "SUBTYPE":"NA", - "AGE":71, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-EC-A1QX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"7.326645198", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"7.162370642" - }, - { - "CASE_ID":"TCGA-EC-A24G", - "SUBTYPE":"NA", - "AGE":57, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-EC-A24G", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"1.511325915", - "DFS_STATUS":"", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-EO-A1Y5", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":63, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-EO-A1Y5", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"10.90783052", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"10.90783052" - }, - { - "CASE_ID":"TCGA-EO-A1Y7", - "SUBTYPE":"NA", - "AGE":65, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-EO-A1Y7", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"7.983743422", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"7.983743422" - }, - { - "CASE_ID":"TCGA-EO-A1Y8", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":87, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.777473716", - "CASE_ID":"TCGA-EO-A1Y8", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"10.77641087", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"10.77641087" - }, - { - "CASE_ID":"TCGA-EY-A1G7", - "SUBTYPE":"NA", - "AGE":86, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.872298235", - "CASE_ID":"TCGA-EY-A1G7", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"6.209578217", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"3.121216564" - }, - { - "CASE_ID":"TCGA-EY-A1G8", - "SUBTYPE":"NA", - "AGE":83, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.77520147", - "CASE_ID":"TCGA-EY-A1G8", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"14.9489846", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"14.9489846" - }, - { - "CASE_ID":"TCGA-EY-A1GC", - "SUBTYPE":"NA", - "AGE":62, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.858645969", - "CASE_ID":"TCGA-EY-A1GC", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"4.533977746", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"4.533977746" - }, - { - "CASE_ID":"TCGA-EY-A1GD", - "SUBTYPE":"NA", - "AGE":51, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.641019608", - "CASE_ID":"TCGA-EY-A1GD", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"8.148017978", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"8.148017978" - }, - { - "CASE_ID":"TCGA-EY-A1GE", - "SUBTYPE":"NA", - "AGE":67, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.930343034", - "CASE_ID":"TCGA-EY-A1GE", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"24.3454892", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"24.3454892" - }, - { - "CASE_ID":"TCGA-EY-A1GF", - "SUBTYPE":"NA", - "AGE":75, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.694269048", - "CASE_ID":"TCGA-EY-A1GF", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"27.13815665", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"27.13815665" - }, - { - "CASE_ID":"TCGA-EY-A1GH", - "SUBTYPE":"NA", - "AGE":70, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.435212832", - "CASE_ID":"TCGA-EY-A1GH", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"23.29413204", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"23.29413204" - }, - { - "CASE_ID":"TCGA-EY-A1GI", - "SUBTYPE":"NA", - "AGE":52, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-EY-A1GI", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"23.29413204", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"23.29413204" - }, - { - "CASE_ID":"TCGA-EY-A1GJ", - "SUBTYPE":"NA", - "AGE":73, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-EY-A1GJ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"23.88552044", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"23.88552044" - }, - { - "CASE_ID":"TCGA-EY-A1GK", - "SUBTYPE":"NA", - "AGE":74, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.32464941", - "CASE_ID":"TCGA-EY-A1GK", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"22.76845346", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"22.76845346" - }, - { - "CASE_ID":"TCGA-EY-A1GL", - "SUBTYPE":"NA", - "AGE":51, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.907347869", - "CASE_ID":"TCGA-EY-A1GL", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"13.93048235", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"13.93048235" - }, - { - "CASE_ID":"TCGA-EY-A1GM", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.888897494", - "CASE_ID":"TCGA-EY-A1GM", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"6.866676441", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"6.866676441" - }, - { - "CASE_ID":"TCGA-EY-A1GO", - "SUBTYPE":"NA", - "AGE":65, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.875629713", - "CASE_ID":"TCGA-EY-A1GO", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.25297796", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"16.98598909" - }, - { - "CASE_ID":"TCGA-EY-A1GP", - "SUBTYPE":"NA", - "AGE":54, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.918650794", - "CASE_ID":"TCGA-EY-A1GP", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"18.82586412", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"18.82586412" - }, - { - "CASE_ID":"TCGA-EY-A1GQ", - "SUBTYPE":"NA", - "AGE":76, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.953263868", - "CASE_ID":"TCGA-EY-A1GQ", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"17.87307169", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"10.97354034" - }, - { - "CASE_ID":"TCGA-EY-A1GR", - "SUBTYPE":"NA", - "AGE":67, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-EY-A1GR", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"17.6102324", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"17.6102324" - }, - { - "CASE_ID":"TCGA-EY-A1GS", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":71, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"2_HIGH", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-EY-A1GS", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"15.08040424", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-EY-A1GT", - "SUBTYPE":"NA", - "AGE":68, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 1", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.877287726", - "CASE_ID":"TCGA-EY-A1GT", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"16.09890649", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"16.09890649" - }, - { - "CASE_ID":"TCGA-EY-A1GU", - "SUBTYPE":"NA", - "AGE":66, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"0.910202499", - "CASE_ID":"TCGA-EY-A1GU", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"12.41915643", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"12.41915643" - }, - { - "CASE_ID":"TCGA-EY-A1GV", - "SUBTYPE":"NA", - "AGE":75, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"3", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-EY-A1GV", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"15.80321229", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"15.80321229" - }, - { - "CASE_ID":"TCGA-EY-A1GW", - "SUBTYPE":"NA", - "AGE":73, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":2, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.866569291", - "CASE_ID":"TCGA-EY-A1GW", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"11.07210507", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"6.242433128" - }, - { - "CASE_ID":"TCGA-EY-A1GX", - "SUBTYPE":"NA", - "AGE":76, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"5", - "MICRO_RNA_SCORE":"-0.164556962", - "CASE_ID":"TCGA-EY-A1GX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"6.472417506", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"6.472417506" - }, - { - "CASE_ID":"TCGA-EY-A1H0", - "SUBTYPE":"NA", - "AGE":57, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 2", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-EY-A1H0", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"19.31868779", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"14.71900022" - }, - { - "CASE_ID":"TCGA-EY-A210", - "SUBTYPE":"NA", - "AGE":82, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-L", - "MSI_STATUS_5_MARKER_CALL":"MSI-L", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.888897494", - "CASE_ID":"TCGA-EY-A210", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"12.58343099", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"12.58343099" - }, - { - "CASE_ID":"TCGA-EY-A212", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":83, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.774263515", - "CASE_ID":"TCGA-EY-A212", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"9.955038094", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-EY-A214", - "SUBTYPE":"NA", - "AGE":66, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-EY-A214", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"14.39045111", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"14.39045111" - }, - { - "CASE_ID":"TCGA-EY-A215", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"N", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"NA", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-EY-A215", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"18.85871903", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"18.85871903" - }, - { - "CASE_ID":"TCGA-FI-A2CX", - "SUBTYPE":"NA", - "AGE":82, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-FI-A2CX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"39.98442693", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"39.98442693" - }, - { - "CASE_ID":"TCGA-FI-A2CY", - "SUBTYPE":"NA", - "AGE":60, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.921856623", - "CASE_ID":"TCGA-FI-A2CY", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"34.95762552", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"34.95762552" - }, - { - "CASE_ID":"TCGA-FI-A2D0", - "SUBTYPE":"NA", - "AGE":55, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-FI-A2D0", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"33.97197818", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"33.97197818" - }, - { - "CASE_ID":"TCGA-FI-A2D2", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":66, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Mixed", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.853878533", - "CASE_ID":"TCGA-FI-A2D2", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"35.97612776", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"35.97612776" - }, - { - "CASE_ID":"TCGA-FI-A2D4", - "SUBTYPE":"NA", - "AGE":44, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"3", - "MICRO_RNA_SCORE":"0.897648505", - "CASE_ID":"TCGA-FI-A2D4", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"7.95088851", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-FI-A2D5", - "SUBTYPE":"NA", - "AGE":56, - "TUMOR_STAGE_2009":"Stage IV", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":4, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"1", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"2", - "MICRO_RNA_SCORE":"0.912165907", - "CASE_ID":"TCGA-FI-A2D5", - "OS_STATUS":"1:DECEASED", - "OS_MONTHS":"13.99619217", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-FI-A2D6", - "SUBTYPE":"NA", - "AGE":74, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"2", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"1", - "MICRO_RNA_SCORE":"0.739874405", - "CASE_ID":"TCGA-FI-A2D6", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"8.969390758", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"8.969390758" - }, - { - "CASE_ID":"TCGA-FI-A2EU", - "SUBTYPE":"NA", - "AGE":68, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.923555802", - "CASE_ID":"TCGA-FI-A2EU", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"84.01000794", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"84.01000794" - }, - { - "CASE_ID":"TCGA-FI-A2EW", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":71, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"Indeterminant", - "MSI_STATUS_5_MARKER_CALL":"Indeterminant", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-FI-A2EW", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"58.9745656", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-FI-A2EX", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":58, - "TUMOR_STAGE_2009":"Stage III", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"4", - "MICRO_RNA_SCORE":"0.886489497", - "CASE_ID":"TCGA-FI-A2EX", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"9.067955491", - "DFS_STATUS":"Recurred", - "DFS_MONTHS":"NA" - }, - { - "CASE_ID":"TCGA-FI-A2F4", - "SUBTYPE":"NA", - "AGE":64, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSI-H", - "MSI_STATUS_5_MARKER_CALL":"MSI-H", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"2", - "METHYLATION_CLUSTER":1, - "MLH1_SILENCING":"1", - "CNA_CLUSTER_K4":"3", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-FI-A2F4", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"28.91232186", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"28.91232186" - }, - { - "CASE_ID":"TCGA-FI-A2F8", - "SUBTYPE":"Copy-number high (Serous-like)", - "AGE":64, - "TUMOR_STAGE_2009":"Stage II", - "HISTOLOGY":"Serous", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"Y", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"Y", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"1_LOW", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"0.936182815", - "CASE_ID":"TCGA-FI-A2F8", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"25.00258742", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"25.00258742" - }, - { - "CASE_ID":"TCGA-FI-A2F9", - "SUBTYPE":"NA", - "AGE":79, - "TUMOR_STAGE_2009":"Stage I", - "HISTOLOGY":"Endometrioid", - "TUMOR_GRADE":"Grade 3", - "MSI_STATUS_7_MARKER_CALL":"MSS", - "MSI_STATUS_5_MARKER_CALL":"MSS", - "DATA_MAF":"N", - "DATA_GISTIC":"Y", - "DATA_RNASEQ":"Y", - "DATA_CORE_SAMPLE":"N", - "MRNA_EXPRESSION_CLUSTER":"1", - "METHYLATION_CLUSTER":3, - "MLH1_SILENCING":"0", - "CNA_CLUSTER_K4":"4", - "MUTATION_RATE_CLUSTER":"NA", - "MICRO_RNA_CLUSTER":"6", - "MICRO_RNA_SCORE":"-0.061109725", - "CASE_ID":"TCGA-FI-A2F9", - "OS_STATUS":"0:LIVING", - "OS_MONTHS":"25.98823476", - "DFS_STATUS":"0:DiseaseFree", - "DFS_MONTHS":"25.98823476" - } +[ + { + "CASE_ID":"TCGA-A5-A0G1", + "SUBTYPE":"NA", + "AGE":67, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.891767554", + "CASE_ID":"TCGA-A5-A0G1", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"106.8113163", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"106.8113163" + }, + { + "CASE_ID":"TCGA-A5-A0G2", + "SUBTYPE":"NA", + "AGE":57, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.882469449", + "CASE_ID":"TCGA-A5-A0G2", + "OS_STATUS":"", + "OS_MONTHS":"NA", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-A5-A0G3", + "SUBTYPE":"NA", + "AGE":61, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"N", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"NA", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-A5-A0G3", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"46.91681319", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"26.1196544" + }, + { + "CASE_ID":"TCGA-A5-A0G5", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":73, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-A5-A0G5", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"36.99463001", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"36.99463001" + }, + { + "CASE_ID":"TCGA-A5-A0G9", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":79, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-A5-A0G9", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"83.45147445", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"83.45147445" + }, + { + "CASE_ID":"TCGA-A5-A0GA", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-A5-A0GA", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"17.84021678", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-A5-A0GB", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":65, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-A5-A0GB", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"32.75634647", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"32.75634647" + }, + { + "CASE_ID":"TCGA-A5-A0GD", + "SUBTYPE":"NA", + "AGE":75, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"N", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"NA", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.795833159", + "CASE_ID":"TCGA-A5-A0GD", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"112.4295061", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"112.4295061" + }, + { + "CASE_ID":"TCGA-A5-A0GE", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":38, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.8681518", + "CASE_ID":"TCGA-A5-A0GE", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"105.2999904", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"105.2999904" + }, + { + "CASE_ID":"TCGA-A5-A0GG", + "SUBTYPE":"NA", + "AGE":76, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-A5-A0GG", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"87.26264415", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"87.26264415" + }, + { + "CASE_ID":"TCGA-A5-A0GH", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":57, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-A5-A0GH", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"74.02211493", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"74.02211493" + }, + { + "CASE_ID":"TCGA-A5-A0GI", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.869799717", + "CASE_ID":"TCGA-A5-A0GI", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"57.4960946", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"57.4960946" + }, + { + "CASE_ID":"TCGA-A5-A0GJ", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":44, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.888897494", + "CASE_ID":"TCGA-A5-A0GJ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"65.7098224", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"0.394258934" + }, + { + "CASE_ID":"TCGA-A5-A0GM", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":53, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.769037046", + "CASE_ID":"TCGA-A5-A0GM", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"60.45303661", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"60.45303661" + }, + { + "CASE_ID":"TCGA-A5-A0GN", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":65, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-A5-A0GN", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"60.48589152", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"60.48589152" + }, + { + "CASE_ID":"TCGA-A5-A0GP", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.751790929", + "CASE_ID":"TCGA-A5-A0GP", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"46.52255426", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"46.52255426" + }, + { + "CASE_ID":"TCGA-A5-A0GQ", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":76, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-A5-A0GQ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"38.34168137", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"38.34168137" + }, + { + "CASE_ID":"TCGA-A5-A0GR", + "SUBTYPE":"NA", + "AGE":69, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.86844934", + "CASE_ID":"TCGA-A5-A0GR", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"36.79750054", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"36.79750054" + }, + { + "CASE_ID":"TCGA-A5-A0GU", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-A5-A0GU", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"28.22236872", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"28.22236872" + }, + { + "CASE_ID":"TCGA-A5-A0GV", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-A5-A0GV", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"20.79715879", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"9.987893005" + }, + { + "CASE_ID":"TCGA-A5-A0GW", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":46, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.79763473", + "CASE_ID":"TCGA-A5-A0GW", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"23.19556731", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"23.19556731" + }, + { + "CASE_ID":"TCGA-A5-A0GX", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":53, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-A5-A0GX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"68.56819967", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"68.56819967" + }, + { + "CASE_ID":"TCGA-A5-A0R6", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.836740624", + "CASE_ID":"TCGA-A5-A0R6", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.9429311", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"19.9429311" + }, + { + "CASE_ID":"TCGA-A5-A0R7", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":55, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-A5-A0R7", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"17.54452258", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"17.54452258" + }, + { + "CASE_ID":"TCGA-A5-A0R8", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":81, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.71082576", + "CASE_ID":"TCGA-A5-A0R8", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.54867216", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"1.37990627" + }, + { + "CASE_ID":"TCGA-A5-A0R9", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":51, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-A5-A0R9", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"24.60832849", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"24.60832849" + }, + { + "CASE_ID":"TCGA-A5-A0RA", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":68, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-A5-A0RA", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"29.01088659", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"29.01088659" + }, + { + "CASE_ID":"TCGA-A5-A0VO", + "SUBTYPE":"NA", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"N", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"NA", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.70262485", + "CASE_ID":"TCGA-A5-A0VO", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"11.95918768", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"11.95918768" + }, + { + "CASE_ID":"TCGA-A5-A0VP", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":74, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.874537804", + "CASE_ID":"TCGA-A5-A0VP", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"42.28427071", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"42.28427071" + }, + { + "CASE_ID":"TCGA-A5-A0VQ", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":62, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-A5-A0VQ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"15.93463193", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"15.93463193" + }, + { + "CASE_ID":"TCGA-A5-A1OF", + "SUBTYPE":"NA", + "AGE":47, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-A5-A1OF", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"7.918033599", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"7.918033599" + }, + { + "CASE_ID":"TCGA-A5-A1OG", + "SUBTYPE":"NA", + "AGE":65, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-A5-A1OG", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"11.4335091", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"11.07210507" + }, + { + "CASE_ID":"TCGA-A5-A1OJ", + "SUBTYPE":"NA", + "AGE":31, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.890025216", + "CASE_ID":"TCGA-A5-A1OJ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"9.59363407", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"9.59363407" + }, + { + "CASE_ID":"TCGA-A5-A1OK", + "SUBTYPE":"NA", + "AGE":63, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-A5-A1OK", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"7.983743422", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"7.983743422" + }, + { + "CASE_ID":"TCGA-AJ-A23M", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":61, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.835714286", + "CASE_ID":"TCGA-AJ-A23M", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.018502247", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AJ-A23O", + "SUBTYPE":"NA", + "AGE":69, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.908260689", + "CASE_ID":"TCGA-AJ-A23O", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"10.25073229", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AP-A051", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":69, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AP-A051", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"83.615749", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"83.615749" + }, + { + "CASE_ID":"TCGA-AP-A052", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":59, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-AP-A052", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"21.97993559", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"12.9119801" + }, + { + "CASE_ID":"TCGA-AP-A053", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":90, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-AP-A053", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"5.946738927", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"5.946738927" + }, + { + "CASE_ID":"TCGA-AP-A054", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-AP-A054", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"23.29413204", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"18.59587974" + }, + { + "CASE_ID":"TCGA-AP-A056", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-AP-A056", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"86.01415752", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"86.01415752" + }, + { + "CASE_ID":"TCGA-AP-A059", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":69, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-AP-A059", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"8.2137278", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"8.2137278" + }, + { + "CASE_ID":"TCGA-AP-A05A", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":81, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-AP-A05A", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"63.83709246", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"63.83709246" + }, + { + "CASE_ID":"TCGA-AP-A05D", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-AP-A05D", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"57.75893389", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"57.75893389" + }, + { + "CASE_ID":"TCGA-AP-A05H", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":75, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-AP-A05H", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"45.50405201", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"45.50405201" + }, + { + "CASE_ID":"TCGA-AP-A05J", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":66, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-AP-A05J", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"36.86321037", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"36.86321037" + }, + { + "CASE_ID":"TCGA-AP-A05N", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-AP-A05N", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"23.85266553", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"23.85266553" + }, + { + "CASE_ID":"TCGA-AP-A05O", + "SUBTYPE":"NA", + "AGE":68, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-AP-A05O", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"12.18917206", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"11.17066981" + }, + { + "CASE_ID":"TCGA-AP-A05P", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":54, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-AP-A05P", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"20.89572352", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"20.89572352" + }, + { + "CASE_ID":"TCGA-AP-A0L8", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":70, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-AP-A0L8", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"48.75668822", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"47.70533106" + }, + { + "CASE_ID":"TCGA-AP-A0L9", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":71, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.888897494", + "CASE_ID":"TCGA-AP-A0L9", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"125.3086313", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"125.3086313" + }, + { + "CASE_ID":"TCGA-AP-A0LD", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.790575691", + "CASE_ID":"TCGA-AP-A0LD", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"117.9162763", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"117.9162763" + }, + { + "CASE_ID":"TCGA-AP-A0LE", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":57, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AP-A0LE", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"110.2939369", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"110.2939369" + }, + { + "CASE_ID":"TCGA-AP-A0LF", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":82, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877755907", + "CASE_ID":"TCGA-AP-A0LF", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"3.384055854", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AP-A0LG", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":54, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AP-A0LG", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"63.11428442", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"63.11428442" + }, + { + "CASE_ID":"TCGA-AP-A0LH", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-AP-A0LH", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"36.33753179", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"9.889328271" + }, + { + "CASE_ID":"TCGA-AP-A0LI", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-AP-A0LI", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"97.64479609", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"97.64479609" + }, + { + "CASE_ID":"TCGA-AP-A0LJ", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":42, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-AP-A0LJ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"31.70498931", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"31.70498931" + }, + { + "CASE_ID":"TCGA-AP-A0LL", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":56, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AP-A0LL", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"83.9114432", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"25.95537985" + }, + { + "CASE_ID":"TCGA-AP-A0LM", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":33, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-AP-A0LM", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"27.10530174", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"27.10530174" + }, + { + "CASE_ID":"TCGA-AP-A0LN", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":56, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.460983716", + "CASE_ID":"TCGA-AP-A0LN", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"82.46582711", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"82.46582711" + }, + { + "CASE_ID":"TCGA-AP-A0LO", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":45, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-AP-A0LO", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"33.38058978", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"16.95313418" + }, + { + "CASE_ID":"TCGA-AP-A0LP", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":76, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-AP-A0LP", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"61.6029585", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"61.6029585" + }, + { + "CASE_ID":"TCGA-AP-A0LQ", + "SUBTYPE":"NA", + "AGE":59, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-AP-A0LQ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"80.72451682", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"80.72451682" + }, + { + "CASE_ID":"TCGA-AP-A0LS", + "SUBTYPE":"NA", + "AGE":63, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-AP-A0LS", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"63.01571968", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"63.01571968" + }, + { + "CASE_ID":"TCGA-AP-A0LT", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":57, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AP-A0LT", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"49.18380207", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"49.18380207" + }, + { + "CASE_ID":"TCGA-AP-A0LV", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":39, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-AP-A0LV", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"25.06829725", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"25.06829725" + }, + { + "CASE_ID":"TCGA-AP-A1DH", + "SUBTYPE":"NA", + "AGE":62, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-AP-A1DH", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"71.62370642", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"71.62370642" + }, + { + "CASE_ID":"TCGA-AP-A1DK", + "SUBTYPE":"NA", + "AGE":53, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-AP-A1DK", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"60.32161696", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"60.32161696" + }, + { + "CASE_ID":"TCGA-AP-A1DM", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AP-A1DM", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"55.85334904", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"55.85334904" + }, + { + "CASE_ID":"TCGA-AP-A1DO", + "SUBTYPE":"NA", + "AGE":62, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AP-A1DO", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"30.98218126", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"30.98218126" + }, + { + "CASE_ID":"TCGA-AP-A1DP", + "SUBTYPE":"NA", + "AGE":70, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AP-A1DP", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"35.51615901", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"27.2695763" + }, + { + "CASE_ID":"TCGA-AP-A1DQ", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":76, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.652238476", + "CASE_ID":"TCGA-AP-A1DQ", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"46.75253864", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"29.70083972" + }, + { + "CASE_ID":"TCGA-AP-A1DR", + "SUBTYPE":"NA", + "AGE":59, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.80219575", + "CASE_ID":"TCGA-AP-A1DR", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"49.11809224", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"49.11809224" + }, + { + "CASE_ID":"TCGA-AP-A1DV", + "SUBTYPE":"NA", + "AGE":59, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.898513296", + "CASE_ID":"TCGA-AP-A1DV", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"6.702401885", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"6.702401885" + }, + { + "CASE_ID":"TCGA-AP-A1E0", + "SUBTYPE":"NA", + "AGE":40, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-AP-A1E0", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"30.88361653", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"30.88361653" + }, + { + "CASE_ID":"TCGA-AP-A1E1", + "SUBTYPE":"NA", + "AGE":74, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AP-A1E1", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"10.41500685", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"10.41500685" + }, + { + "CASE_ID":"TCGA-AP-A1E3", + "SUBTYPE":"NA", + "AGE":45, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-AP-A1E3", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"27.82810979", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AP-A1E4", + "SUBTYPE":"NA", + "AGE":54, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-AP-A1E4", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"16.23032613", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"5.19107597" + }, + { + "CASE_ID":"TCGA-AW-A1PO", + "SUBTYPE":"NA", + "AGE":66, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-AW-A1PO", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"0.55853349", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"0.55853349" + }, + { + "CASE_ID":"TCGA-AX-A05S", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":81, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.909932648", + "CASE_ID":"TCGA-AX-A05S", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"13.56907833", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"11.07210507" + }, + { + "CASE_ID":"TCGA-AX-A05T", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":82, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.890025216", + "CASE_ID":"TCGA-AX-A05T", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.81151145", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"19.81151145" + }, + { + "CASE_ID":"TCGA-AX-A05U", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":56, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-AX-A05U", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"29.6351299", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"29.6351299" + }, + { + "CASE_ID":"TCGA-AX-A05W", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-AX-A05W", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"68.27250547", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"68.27250547" + }, + { + "CASE_ID":"TCGA-AX-A05Y", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":57, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-AX-A05Y", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"71.98511044", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"6.340997862" + }, + { + "CASE_ID":"TCGA-AX-A05Z", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":37, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.842435138", + "CASE_ID":"TCGA-AX-A05Z", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"46.42398953", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"46.42398953" + }, + { + "CASE_ID":"TCGA-AX-A060", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":77, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AX-A060", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"35.31902954", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"35.31902954" + }, + { + "CASE_ID":"TCGA-AX-A062", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":53, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-AX-A062", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"45.93116586", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"45.93116586" + }, + { + "CASE_ID":"TCGA-AX-A063", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AX-A063", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"66.49834027", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"66.49834027" + }, + { + "CASE_ID":"TCGA-AX-A064", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":81, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-AX-A064", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"34.95762552", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"34.95762552" + }, + { + "CASE_ID":"TCGA-AX-A06B", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":72, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-AX-A06B", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"53.84919946", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"53.84919946" + }, + { + "CASE_ID":"TCGA-AX-A06D", + "SUBTYPE":"NA", + "AGE":82, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-AX-A06D", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"12.25488188", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"8.312292534" + }, + { + "CASE_ID":"TCGA-AX-A06F", + "SUBTYPE":"NA", + "AGE":59, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.914765853", + "CASE_ID":"TCGA-AX-A06F", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"51.056532", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"51.056532" + }, + { + "CASE_ID":"TCGA-AX-A06H", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":60, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-AX-A06H", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"27.36814103", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"27.36814103" + }, + { + "CASE_ID":"TCGA-AX-A06J", + "SUBTYPE":"NA", + "AGE":71, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.828806248", + "CASE_ID":"TCGA-AX-A06J", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"29.99653393", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"29.99653393" + }, + { + "CASE_ID":"TCGA-AX-A06L", + "SUBTYPE":"NA", + "AGE":63, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-AX-A06L", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"60.58445625", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"60.58445625" + }, + { + "CASE_ID":"TCGA-AX-A0IS", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":52, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.843520432", + "CASE_ID":"TCGA-AX-A0IS", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"34.99048043", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"14.71900022" + }, + { + "CASE_ID":"TCGA-AX-A0IU", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":79, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.452596592", + "CASE_ID":"TCGA-AX-A0IU", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"28.51806292", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"28.51806292" + }, + { + "CASE_ID":"TCGA-AX-A0IW", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-AX-A0IW", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"37.71743806", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"37.71743806" + }, + { + "CASE_ID":"TCGA-AX-A0IZ", + "SUBTYPE":"NA", + "AGE":53, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.912165907", + "CASE_ID":"TCGA-AX-A0IZ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"43.79559663", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"43.79559663" + }, + { + "CASE_ID":"TCGA-AX-A0J0", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":47, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-AX-A0J0", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"40.05013675", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"40.05013675" + }, + { + "CASE_ID":"TCGA-AX-A0J1", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":80, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.876855817", + "CASE_ID":"TCGA-AX-A0J1", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"65.84124204", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"65.84124204" + }, + { + "CASE_ID":"TCGA-AX-A1C4", + "SUBTYPE":"NA", + "AGE":52, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-AX-A1C4", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"13.27338412", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AX-A1C5", + "SUBTYPE":"NA", + "AGE":47, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.390770931", + "CASE_ID":"TCGA-AX-A1C5", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.18726814", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AX-A1C7", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":77, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.840372671", + "CASE_ID":"TCGA-AX-A1C7", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"16.92027927", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"12.81341537" + }, + { + "CASE_ID":"TCGA-AX-A1C8", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":77, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-AX-A1C8", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"13.53622341", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AX-A1C9", + "SUBTYPE":"NA", + "AGE":73, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.911154351", + "CASE_ID":"TCGA-AX-A1C9", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"15.2446788", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"15.2446788" + }, + { + "CASE_ID":"TCGA-AX-A1CA", + "SUBTYPE":"NA", + "AGE":70, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"Indeterminant", + "MSI_STATUS_5_MARKER_CALL":"Indeterminant", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.877057267", + "CASE_ID":"TCGA-AX-A1CA", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"20.27148021", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"20.27148021" + }, + { + "CASE_ID":"TCGA-AX-A1CC", + "SUBTYPE":"NA", + "AGE":65, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.891243726", + "CASE_ID":"TCGA-AX-A1CC", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"12.41915643", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"12.41915643" + }, + { + "CASE_ID":"TCGA-AX-A1CE", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.802482844", + "CASE_ID":"TCGA-AX-A1CE", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"20.04149583", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AX-A1CF", + "SUBTYPE":"NA", + "AGE":69, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.596528", + "CASE_ID":"TCGA-AX-A1CF", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"76.78192747", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"28.7480473" + }, + { + "CASE_ID":"TCGA-AX-A1CI", + "SUBTYPE":"NA", + "AGE":61, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.894790354", + "CASE_ID":"TCGA-AX-A1CI", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"72.51078902", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"72.51078902" + }, + { + "CASE_ID":"TCGA-AX-A1CJ", + "SUBTYPE":"NA", + "AGE":59, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"Indeterminant", + "MSI_STATUS_5_MARKER_CALL":"Indeterminant", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-AX-A1CJ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"54.04632892", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"54.04632892" + }, + { + "CASE_ID":"TCGA-AX-A1CK", + "SUBTYPE":"NA", + "AGE":58, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.829517277", + "CASE_ID":"TCGA-AX-A1CK", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"67.41827778", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AX-A1CN", + "SUBTYPE":"NA", + "AGE":54, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-AX-A1CN", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"25.10115216", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"25.10115216" + }, + { + "CASE_ID":"TCGA-AX-A1CP", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":84, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-AX-A1CP", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"36.3703867", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"23.72124589" + }, + { + "CASE_ID":"TCGA-AX-A1CR", + "SUBTYPE":"NA", + "AGE":70, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-AX-A1CR", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"11.07210507", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"11.07210507" + }, + { + "CASE_ID":"TCGA-AX-A2H5", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.871917175", + "CASE_ID":"TCGA-AX-A2H5", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"71.19659257", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AX-A2H8", + "SUBTYPE":"NA", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-AX-A2H8", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"61.14298974", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"61.14298974" + }, + { + "CASE_ID":"TCGA-AX-A2HC", + "SUBTYPE":"NA", + "AGE":53, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-AX-A2HC", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"33.38058978", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-AX-A2HD", + "SUBTYPE":"NA", + "AGE":69, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.842998833", + "CASE_ID":"TCGA-AX-A2HD", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"40.4772506", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"40.4772506" + }, + { + "CASE_ID":"TCGA-AX-A2HF", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.840372671", + "CASE_ID":"TCGA-AX-A2HF", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"16.06605158", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"16.06605158" + }, + { + "CASE_ID":"TCGA-AX-A2HG", + "SUBTYPE":"NA", + "AGE":56, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-AX-A2HG", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"21.68424139", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"21.68424139" + }, + { + "CASE_ID":"TCGA-AX-A2HH", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-AX-A2HH", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"17.70879714", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"17.70879714" + }, + { + "CASE_ID":"TCGA-AX-A2HJ", + "SUBTYPE":"NA", + "AGE":35, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-AX-A2HJ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"27.30243121", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"27.30243121" + }, + { + "CASE_ID":"TCGA-AX-A2HK", + "SUBTYPE":"NA", + "AGE":77, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-AX-A2HK", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"2.956942008", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-B5-A0JN", + "SUBTYPE":"NA", + "AGE":84, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-B5-A0JN", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"80.33025788", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"80.33025788" + }, + { + "CASE_ID":"TCGA-B5-A0JR", + "SUBTYPE":"NA", + "AGE":73, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-B5-A0JR", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"56.87185129", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"56.87185129" + }, + { + "CASE_ID":"TCGA-B5-A0JS", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":54, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A0JS", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"46.71968373", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"46.71968373" + }, + { + "CASE_ID":"TCGA-B5-A0JT", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-B5-A0JT", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"43.10564349", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"43.10564349" + }, + { + "CASE_ID":"TCGA-B5-A0JU", + "SUBTYPE":"NA", + "AGE":57, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-B5-A0JU", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"48.72383331", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"48.72383331" + }, + { + "CASE_ID":"TCGA-B5-A0JV", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-B5-A0JV", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"40.64152515", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"22.93272802" + }, + { + "CASE_ID":"TCGA-B5-A0JX", + "SUBTYPE":"NA", + "AGE":62, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-B5-A0JX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"44.68267923", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"44.68267923" + }, + { + "CASE_ID":"TCGA-B5-A0JY", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":50, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-B5-A0JY", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"32.95347593", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"32.95347593" + }, + { + "CASE_ID":"TCGA-B5-A0JZ", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":60, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.930343034", + "CASE_ID":"TCGA-B5-A0JZ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"28.61662766", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"11.69634839" + }, + { + "CASE_ID":"TCGA-B5-A0K0", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":48, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.890025216", + "CASE_ID":"TCGA-B5-A0K0", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"28.32093345", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"28.32093345" + }, + { + "CASE_ID":"TCGA-B5-A0K1", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":69, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A0K1", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"30.48935759", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"30.48935759" + }, + { + "CASE_ID":"TCGA-B5-A0K2", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":54, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.78035969", + "CASE_ID":"TCGA-B5-A0K2", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"25.88967003", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"25.88967003" + }, + { + "CASE_ID":"TCGA-B5-A0K3", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":62, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-B5-A0K3", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"27.23672138", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"7.95088851" + }, + { + "CASE_ID":"TCGA-B5-A0K4", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":51, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A0K4", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"17.87307169", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"17.87307169" + }, + { + "CASE_ID":"TCGA-B5-A0K6", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-B5-A0K6", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"13.99619217", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"13.99619217" + }, + { + "CASE_ID":"TCGA-B5-A0K7", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.756697585", + "CASE_ID":"TCGA-B5-A0K7", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"17.05169891", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"10.5464265" + }, + { + "CASE_ID":"TCGA-B5-A0K8", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":71, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A0K8", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"17.80736187", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"17.80736187" + }, + { + "CASE_ID":"TCGA-B5-A0K9", + "SUBTYPE":"NA", + "AGE":88, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.913841183", + "CASE_ID":"TCGA-B5-A0K9", + "OS_STATUS":"", + "OS_MONTHS":"NA", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-B5-A0KB", + "SUBTYPE":"NA", + "AGE":62, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-B5-A0KB", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"4.074008989", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"4.074008989" + }, + { + "CASE_ID":"TCGA-B5-A11E", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":53, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-B5-A11E", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"8.706551468", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"8.706551468" + }, + { + "CASE_ID":"TCGA-B5-A11F", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":55, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A11F", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"185.6302483", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"52.89640703" + }, + { + "CASE_ID":"TCGA-B5-A11G", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":71, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.480973374", + "CASE_ID":"TCGA-B5-A11G", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"113.2508789", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-B5-A11H", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A11H", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"88.28114639", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"88.28114639" + }, + { + "CASE_ID":"TCGA-B5-A11I", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":65, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-B5-A11I", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"75.66486049", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"22.96558293" + }, + { + "CASE_ID":"TCGA-B5-A11J", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A11J", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"54.40773295", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"54.40773295" + }, + { + "CASE_ID":"TCGA-B5-A11L", + "SUBTYPE":"NA", + "AGE":71, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-B5-A11L", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"45.86545604", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"45.86545604" + }, + { + "CASE_ID":"TCGA-B5-A11M", + "SUBTYPE":"NA", + "AGE":43, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"N", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"NA", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.820773525", + "CASE_ID":"TCGA-B5-A11M", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"44.71553414", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"44.71553414" + }, + { + "CASE_ID":"TCGA-B5-A11N", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":69, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"NA", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-B5-A11N", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"43.92701627", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"43.92701627" + }, + { + "CASE_ID":"TCGA-B5-A11O", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":62, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.879877208", + "CASE_ID":"TCGA-B5-A11O", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"40.90436444", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"40.90436444" + }, + { + "CASE_ID":"TCGA-B5-A11P", + "SUBTYPE":"NA", + "AGE":87, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A11P", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"36.79750054", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"36.79750054" + }, + { + "CASE_ID":"TCGA-B5-A11Q", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A11Q", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"32.03353842", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"32.03353842" + }, + { + "CASE_ID":"TCGA-B5-A11R", + "SUBTYPE":"NA", + "AGE":51, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.366698565", + "CASE_ID":"TCGA-B5-A11R", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"33.47915451", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"33.47915451" + }, + { + "CASE_ID":"TCGA-B5-A11S", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A11S", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"27.30243121", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"1.314196448" + }, + { + "CASE_ID":"TCGA-B5-A11U", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":74, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-B5-A11U", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"16.7231498", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"16.7231498" + }, + { + "CASE_ID":"TCGA-B5-A11V", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.762721706", + "CASE_ID":"TCGA-B5-A11V", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.51581725", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"19.51581725" + }, + { + "CASE_ID":"TCGA-B5-A11W", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":61, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-B5-A11W", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.45010743", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"19.45010743" + }, + { + "CASE_ID":"TCGA-B5-A11X", + "SUBTYPE":"NA", + "AGE":66, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"N", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"NA", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.888897494", + "CASE_ID":"TCGA-B5-A11X", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.54867216", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"13.01054484" + }, + { + "CASE_ID":"TCGA-B5-A11Y", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":59, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.921320947", + "CASE_ID":"TCGA-B5-A11Y", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"18.36589536", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"18.36589536" + }, + { + "CASE_ID":"TCGA-B5-A11Z", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":61, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-B5-A11Z", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"17.34739311", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"17.34739311" + }, + { + "CASE_ID":"TCGA-B5-A121", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":57, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-B5-A121", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"16.55887524", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"16.55887524" + }, + { + "CASE_ID":"TCGA-B5-A1MR", + "SUBTYPE":"NA", + "AGE":65, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-B5-A1MR", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"191.7084069", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"191.7084069" + }, + { + "CASE_ID":"TCGA-B5-A1MU", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":79, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.912165907", + "CASE_ID":"TCGA-B5-A1MU", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"50.82654763", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"44.84695379" + }, + { + "CASE_ID":"TCGA-B5-A1MV", + "SUBTYPE":"NA", + "AGE":84, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-B5-A1MV", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"14.39045111", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"14.39045111" + }, + { + "CASE_ID":"TCGA-B5-A1MW", + "SUBTYPE":"NA", + "AGE":55, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-B5-A1MW", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"14.68614531", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"10.21787738" + }, + { + "CASE_ID":"TCGA-B5-A1MX", + "SUBTYPE":"NA", + "AGE":47, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-B5-A1MX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"11.66349348", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"11.66349348" + }, + { + "CASE_ID":"TCGA-B5-A1MY", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":62, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.86844934", + "CASE_ID":"TCGA-B5-A1MY", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"11.86062294", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"10.94068543" + }, + { + "CASE_ID":"TCGA-B5-A1MZ", + "SUBTYPE":"NA", + "AGE":54, + "TUMOR_STAGE_2009":"Unknown", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-B5-A1MZ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"15.27753371", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"15.27753371" + }, + { + "CASE_ID":"TCGA-B5-A1N2", + "SUBTYPE":"NA", + "AGE":70, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-B5-A1N2", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"12.78056046", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-BG-A0LW", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":47, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-BG-A0LW", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"18.56302483", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"18.56302483" + }, + { + "CASE_ID":"TCGA-BG-A0LX", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":57, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-BG-A0LX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"20.14006057", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"20.14006057" + }, + { + "CASE_ID":"TCGA-BG-A0M0", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":66, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BG-A0M0", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.28583287", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"19.28583287" + }, + { + "CASE_ID":"TCGA-BG-A0M2", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":62, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BG-A0M2", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"20.89572352", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"20.89572352" + }, + { + "CASE_ID":"TCGA-BG-A0M3", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":74, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.396873131", + "CASE_ID":"TCGA-BG-A0M3", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"35.1876099", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"35.1876099" + }, + { + "CASE_ID":"TCGA-BG-A0M4", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-BG-A0M4", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"34.95762552", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"34.95762552" + }, + { + "CASE_ID":"TCGA-BG-A0M6", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":73, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.757451043", + "CASE_ID":"TCGA-BG-A0M6", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"22.04564542", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"22.04564542" + }, + { + "CASE_ID":"TCGA-BG-A0M7", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":60, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.190161319", + "CASE_ID":"TCGA-BG-A0M7", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"38.34168137", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"38.34168137" + }, + { + "CASE_ID":"TCGA-BG-A0M8", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":50, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.900667706", + "CASE_ID":"TCGA-BG-A0M8", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"36.46895143", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"36.46895143" + }, + { + "CASE_ID":"TCGA-BG-A0M9", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":73, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.576051552", + "CASE_ID":"TCGA-BG-A0M9", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"28.25522363", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"28.25522363" + }, + { + "CASE_ID":"TCGA-BG-A0MA", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BG-A0MA", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"10.71070105", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"2.792667452" + }, + { + "CASE_ID":"TCGA-BG-A0MC", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":74, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.739984154", + "CASE_ID":"TCGA-BG-A0MC", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"41.49575285", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"41.49575285" + }, + { + "CASE_ID":"TCGA-BG-A0MG", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":73, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.798974359", + "CASE_ID":"TCGA-BG-A0MG", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"48.52670384", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"48.52670384" + }, + { + "CASE_ID":"TCGA-BG-A0MH", + "SUBTYPE":"NA", + "AGE":61, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"N", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"NA", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.867965161", + "CASE_ID":"TCGA-BG-A0MH", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"44.05843592", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-BG-A0MI", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":83, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-BG-A0MI", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"23.4584066", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"23.4584066" + }, + { + "CASE_ID":"TCGA-BG-A0MO", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.900509523", + "CASE_ID":"TCGA-BG-A0MO", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"42.97422385", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-BG-A0MQ", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":71, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-BG-A0MQ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"39.2944738", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"39.2944738" + }, + { + "CASE_ID":"TCGA-BG-A0MS", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":53, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-BG-A0MS", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"30.78505179", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"30.78505179" + }, + { + "CASE_ID":"TCGA-BG-A0MT", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BG-A0MT", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"21.15856281", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"18.56302483" + }, + { + "CASE_ID":"TCGA-BG-A0MU", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":78, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-BG-A0MU", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"7.589484487", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"7.589484487" + }, + { + "CASE_ID":"TCGA-BG-A0RY", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":68, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.875250932", + "CASE_ID":"TCGA-BG-A0RY", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"15.40895335", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"15.40895335" + }, + { + "CASE_ID":"TCGA-BG-A0VT", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":56, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.930343034", + "CASE_ID":"TCGA-BG-A0VT", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"7.359500109", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"7.359500109" + }, + { + "CASE_ID":"TCGA-BG-A0VV", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":53, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BG-A0VV", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"8.542276912", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"8.542276912" + }, + { + "CASE_ID":"TCGA-BG-A0VW", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":77, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BG-A0VW", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"4.303993367", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"4.303993367" + }, + { + "CASE_ID":"TCGA-BG-A0VX", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.918013002", + "CASE_ID":"TCGA-BG-A0VX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"16.09890649", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"16.09890649" + }, + { + "CASE_ID":"TCGA-BG-A0VZ", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BG-A0VZ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"28.51806292", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-BG-A0W1", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":89, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BG-A0W1", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"29.79940446", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"29.79940446" + }, + { + "CASE_ID":"TCGA-BG-A0W2", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":57, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BG-A0W2", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"37.81600279", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"37.81600279" + }, + { + "CASE_ID":"TCGA-BG-A0YU", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":37, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-BG-A0YU", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"14.81756495", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"14.81756495" + }, + { + "CASE_ID":"TCGA-BG-A0YV", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-BG-A0YV", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"12.55057608", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"12.55057608" + }, + { + "CASE_ID":"TCGA-BG-A186", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":61, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-BG-A186", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"13.76620779", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"13.76620779" + }, + { + "CASE_ID":"TCGA-BG-A187", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":65, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BG-A187", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"14.71900022", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"14.71900022" + }, + { + "CASE_ID":"TCGA-BG-A18A", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":74, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-BG-A18A", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"13.99619217", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"13.99619217" + }, + { + "CASE_ID":"TCGA-BG-A18B", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":53, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.807377395", + "CASE_ID":"TCGA-BG-A18B", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"15.44180826", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"15.44180826" + }, + { + "CASE_ID":"TCGA-BG-A18C", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":72, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.45957569", + "CASE_ID":"TCGA-BG-A18C", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"15.44180826", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"15.44180826" + }, + { + "CASE_ID":"TCGA-BG-A220", + "SUBTYPE":"NA", + "AGE":69, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-BG-A220", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"14.25903146", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"14.25903146" + }, + { + "CASE_ID":"TCGA-BG-A221", + "SUBTYPE":"NA", + "AGE":84, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-BG-A221", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.807020116", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.807020116" + }, + { + "CASE_ID":"TCGA-BG-A222", + "SUBTYPE":"NA", + "AGE":49, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-BG-A222", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"9.560779159", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"9.560779159" + }, + { + "CASE_ID":"TCGA-BG-A2AD", + "SUBTYPE":"NA", + "AGE":63, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-BG-A2AD", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"0", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-BG-A2AE", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":57, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.822827613", + "CASE_ID":"TCGA-BG-A2AE", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"0.525678579", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-BK-A0C9", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":57, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BK-A0C9", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"12.68199572", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-BK-A0CA", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":61, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-BK-A0CA", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"12.18917206", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"12.18917206" + }, + { + "CASE_ID":"TCGA-BK-A0CB", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":60, + "TUMOR_STAGE_2009":"Unknown", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"NA", + "MICRO_RNA_SCORE":"NA", + "CASE_ID":"TCGA-BK-A0CB", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"6.176723306", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"6.176723306" + }, + { + "CASE_ID":"TCGA-BK-A0CC", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":69, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-BK-A0CC", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"10.21787738", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"10.21787738" + }, + { + "CASE_ID":"TCGA-BK-A139", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":74, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-BK-A139", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"10.15216756", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"10.15216756" + }, + { + "CASE_ID":"TCGA-BK-A13C", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":47, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BK-A13C", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"13.53622341", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"13.53622341" + }, + { + "CASE_ID":"TCGA-BK-A26L", + "SUBTYPE":"NA", + "AGE":71, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-BK-A26L", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"11.92633277", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"11.92633277" + }, + { + "CASE_ID":"TCGA-BS-A0T9", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":39, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-BS-A0T9", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"46.91681319", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"20.79715879" + }, + { + "CASE_ID":"TCGA-BS-A0TA", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-BS-A0TA", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"23.4584066", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"12.94483501" + }, + { + "CASE_ID":"TCGA-BS-A0TC", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":69, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-BS-A0TC", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"74.25209931", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"74.25209931" + }, + { + "CASE_ID":"TCGA-BS-A0TD", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":65, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-BS-A0TD", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"65.77553222", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"65.77553222" + }, + { + "CASE_ID":"TCGA-BS-A0TE", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":35, + "TUMOR_STAGE_2009":"Unknown", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.930343034", + "CASE_ID":"TCGA-BS-A0TE", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"4.796817035", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"1.90558485" + }, + { + "CASE_ID":"TCGA-BS-A0TG", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-BS-A0TG", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"61.76723306", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-BS-A0TI", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.909680147", + "CASE_ID":"TCGA-BS-A0TI", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"47.40963686", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"47.40963686" + }, + { + "CASE_ID":"TCGA-BS-A0TJ", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":59, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.840372671", + "CASE_ID":"TCGA-BS-A0TJ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"49.74233556", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"49.74233556" + }, + { + "CASE_ID":"TCGA-BS-A0U5", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":76, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.869465256", + "CASE_ID":"TCGA-BS-A0U5", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"72.41222428", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"72.41222428" + }, + { + "CASE_ID":"TCGA-BS-A0U7", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.920652251", + "CASE_ID":"TCGA-BS-A0U7", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"30.68648706", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"30.68648706" + }, + { + "CASE_ID":"TCGA-BS-A0U8", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":55, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-BS-A0U8", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"85.61989859", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"85.61989859" + }, + { + "CASE_ID":"TCGA-BS-A0U9", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":59, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-BS-A0U9", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"57.46323969", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"57.46323969" + }, + { + "CASE_ID":"TCGA-BS-A0UA", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":68, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-BS-A0UA", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"83.45147445", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"17.05169891" + }, + { + "CASE_ID":"TCGA-BS-A0UF", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":65, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"-0.14185334", + "CASE_ID":"TCGA-BS-A0UF", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"60.55160134", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"60.55160134" + }, + { + "CASE_ID":"TCGA-BS-A0UJ", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":68, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BS-A0UJ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"0.887082602", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"0.887082602" + }, + { + "CASE_ID":"TCGA-BS-A0UL", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":54, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-BS-A0UL", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.182776803", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.182776803" + }, + { + "CASE_ID":"TCGA-BS-A0UM", + "SUBTYPE":"NA", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"N", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"NA", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.928732873", + "CASE_ID":"TCGA-BS-A0UM", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"71.98511044", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"47.77104088" + }, + { + "CASE_ID":"TCGA-BS-A0UT", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":62, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.81473312", + "CASE_ID":"TCGA-BS-A0UT", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.54867216", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"19.54867216" + }, + { + "CASE_ID":"TCGA-BS-A0UV", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":55, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-BS-A0UV", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"4.895381769", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"4.895381769" + }, + { + "CASE_ID":"TCGA-BS-A0V4", + "SUBTYPE":"NA", + "AGE":56, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.930343034", + "CASE_ID":"TCGA-BS-A0V4", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.018502247", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.018502247" + }, + { + "CASE_ID":"TCGA-BS-A0V6", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":55, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.936305291", + "CASE_ID":"TCGA-BS-A0V6", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"54.21060348", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"54.21060348" + }, + { + "CASE_ID":"TCGA-BS-A0V7", + "SUBTYPE":"NA", + "AGE":48, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-BS-A0V7", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"46.9496681", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"46.9496681" + }, + { + "CASE_ID":"TCGA-BS-A0V8", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":68, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-BS-A0V8", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"49.51235118", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"49.51235118" + }, + { + "CASE_ID":"TCGA-BS-A0VI", + "SUBTYPE":"NA", + "AGE":58, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.890025216", + "CASE_ID":"TCGA-BS-A0VI", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"54.5720075", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"54.5720075" + }, + { + "CASE_ID":"TCGA-BS-A0WQ", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":55, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-BS-A0WQ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"39.65587782", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"39.65587782" + }, + { + "CASE_ID":"TCGA-D1-A0ZN", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.677581832", + "CASE_ID":"TCGA-D1-A0ZN", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"16.82171453", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"14.71900022" + }, + { + "CASE_ID":"TCGA-D1-A0ZO", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":75, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A0ZO", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.77865654", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"19.77865654" + }, + { + "CASE_ID":"TCGA-D1-A0ZP", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":59, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-D1-A0ZP", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"29.9308241", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"20.66573914" + }, + { + "CASE_ID":"TCGA-D1-A0ZQ", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":90, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A0ZQ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"8.542276912", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"8.542276912" + }, + { + "CASE_ID":"TCGA-D1-A0ZR", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":57, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.770817643", + "CASE_ID":"TCGA-D1-A0ZR", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"0.55853349", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"0.55853349" + }, + { + "CASE_ID":"TCGA-D1-A0ZS", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":54, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.9151894", + "CASE_ID":"TCGA-D1-A0ZS", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"4.829671946", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"4.829671946" + }, + { + "CASE_ID":"TCGA-D1-A0ZU", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":34, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A0ZU", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"28.64948257", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"28.64948257" + }, + { + "CASE_ID":"TCGA-D1-A0ZV", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-D1-A0ZV", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"23.91837535", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"23.91837535" + }, + { + "CASE_ID":"TCGA-D1-A0ZZ", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":80, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"NA", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-D1-A0ZZ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"22.50561417", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"22.50561417" + }, + { + "CASE_ID":"TCGA-D1-A101", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A101", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.741310294", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.741310294" + }, + { + "CASE_ID":"TCGA-D1-A102", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":49, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"NA", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.887382298", + "CASE_ID":"TCGA-D1-A102", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"4.435413012", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"4.435413012" + }, + { + "CASE_ID":"TCGA-D1-A103", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":87, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.877018213", + "CASE_ID":"TCGA-D1-A103", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"21.97993559", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"21.97993559" + }, + { + "CASE_ID":"TCGA-D1-A15V", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":68, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-D1-A15V", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"39.45874835", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"39.45874835" + }, + { + "CASE_ID":"TCGA-D1-A15W", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A15W", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"30.06224375", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"30.06224375" + }, + { + "CASE_ID":"TCGA-D1-A15X", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":45, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.921320947", + "CASE_ID":"TCGA-D1-A15X", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"29.86511428", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"29.86511428" + }, + { + "CASE_ID":"TCGA-D1-A15Z", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":72, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-D1-A15Z", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"1.90558485", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.90558485" + }, + { + "CASE_ID":"TCGA-D1-A160", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":70, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-D1-A160", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"3.679750054", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"3.679750054" + }, + { + "CASE_ID":"TCGA-D1-A161", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":78, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A161", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"29.30658079", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"29.30658079" + }, + { + "CASE_ID":"TCGA-D1-A162", + "SUBTYPE":"NA", + "AGE":69, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"N", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"NA", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.88209171", + "CASE_ID":"TCGA-D1-A162", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"37.61887332", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"37.61887332" + }, + { + "CASE_ID":"TCGA-D1-A163", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":50, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-D1-A163", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"32.559217", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"7.326645198" + }, + { + "CASE_ID":"TCGA-D1-A165", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A165", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"0.657098224", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"0.657098224" + }, + { + "CASE_ID":"TCGA-D1-A167", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":70, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.93181747", + "CASE_ID":"TCGA-D1-A167", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"15.70464755", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"15.70464755" + }, + { + "CASE_ID":"TCGA-D1-A168", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.788513777", + "CASE_ID":"TCGA-D1-A168", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"36.0746925", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"36.0746925" + }, + { + "CASE_ID":"TCGA-D1-A169", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.905982296", + "CASE_ID":"TCGA-D1-A169", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"37.29032421", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"17.05169891" + }, + { + "CASE_ID":"TCGA-D1-A16B", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-D1-A16B", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"36.33753179", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"36.33753179" + }, + { + "CASE_ID":"TCGA-D1-A16D", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":49, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-D1-A16D", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"37.48745368", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"37.48745368" + }, + { + "CASE_ID":"TCGA-D1-A16E", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":73, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A16E", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"36.76464563", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"36.76464563" + }, + { + "CASE_ID":"TCGA-D1-A16F", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"N", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"NA", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.519368529", + "CASE_ID":"TCGA-D1-A16F", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"2.628392896", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"2.628392896" + }, + { + "CASE_ID":"TCGA-D1-A16G", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":74, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-D1-A16G", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"27.40099594", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"21.09285299" + }, + { + "CASE_ID":"TCGA-D1-A16I", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":62, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A16I", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"11.46636401", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"11.46636401" + }, + { + "CASE_ID":"TCGA-D1-A16J", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":61, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.891829399", + "CASE_ID":"TCGA-D1-A16J", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"29.86511428", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"29.86511428" + }, + { + "CASE_ID":"TCGA-D1-A16N", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":51, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.819387387", + "CASE_ID":"TCGA-D1-A16N", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"31.04789108", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"31.04789108" + }, + { + "CASE_ID":"TCGA-D1-A16O", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":44, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.667510536", + "CASE_ID":"TCGA-D1-A16O", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"33.57771925", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"33.57771925" + }, + { + "CASE_ID":"TCGA-D1-A16Q", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":54, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.837571802", + "CASE_ID":"TCGA-D1-A16Q", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"10.64499123", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"10.64499123" + }, + { + "CASE_ID":"TCGA-D1-A16R", + "SUBTYPE":"NA", + "AGE":39, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"N", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"NA", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-D1-A16R", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"0.689953135", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"0.689953135" + }, + { + "CASE_ID":"TCGA-D1-A16S", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":70, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.784111389", + "CASE_ID":"TCGA-D1-A16S", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"18.66158956", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"18.66158956" + }, + { + "CASE_ID":"TCGA-D1-A16V", + "SUBTYPE":"NA", + "AGE":78, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"-0.102733132", + "CASE_ID":"TCGA-D1-A16V", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"3.942589344", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-D1-A16X", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":54, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.890025216", + "CASE_ID":"TCGA-D1-A16X", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"3.646895143", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"3.646895143" + }, + { + "CASE_ID":"TCGA-D1-A16Y", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":56, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-D1-A16Y", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"17.47881276", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"17.47881276" + }, + { + "CASE_ID":"TCGA-D1-A174", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":51, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.887382298", + "CASE_ID":"TCGA-D1-A174", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.51581725", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"19.51581725" + }, + { + "CASE_ID":"TCGA-D1-A175", + "SUBTYPE":"NA", + "AGE":48, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-D1-A175", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"6.636692062", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"6.636692062" + }, + { + "CASE_ID":"TCGA-D1-A176", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.594277483", + "CASE_ID":"TCGA-D1-A176", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"30.12795357", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"30.12795357" + }, + { + "CASE_ID":"TCGA-D1-A177", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":70, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.930343034", + "CASE_ID":"TCGA-D1-A177", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"18.00449134", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"11.40065419" + }, + { + "CASE_ID":"TCGA-D1-A179", + "SUBTYPE":"NA", + "AGE":76, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.469920802", + "CASE_ID":"TCGA-D1-A179", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"14.71900022", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"14.02904708" + }, + { + "CASE_ID":"TCGA-D1-A17A", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":59, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-D1-A17A", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.577035738", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.577035738" + }, + { + "CASE_ID":"TCGA-D1-A17B", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":69, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-D1-A17B", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"6.965241174", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"6.965241174" + }, + { + "CASE_ID":"TCGA-D1-A17C", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":78, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A17C", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"0.985647336", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"0.985647336" + }, + { + "CASE_ID":"TCGA-D1-A17D", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.85566506", + "CASE_ID":"TCGA-D1-A17D", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"30.42364777", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"30.42364777" + }, + { + "CASE_ID":"TCGA-D1-A17F", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":68, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-D1-A17F", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.281341537", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.281341537" + }, + { + "CASE_ID":"TCGA-D1-A17H", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":61, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-D1-A17H", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"27.99238434", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"27.99238434" + }, + { + "CASE_ID":"TCGA-D1-A17K", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":74, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.888897494", + "CASE_ID":"TCGA-D1-A17K", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"28.05809416", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"26.77675263" + }, + { + "CASE_ID":"TCGA-D1-A17L", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":81, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-D1-A17L", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"26.34963878", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"26.34963878" + }, + { + "CASE_ID":"TCGA-D1-A17M", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":56, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-D1-A17M", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"10.21787738", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"10.21787738" + }, + { + "CASE_ID":"TCGA-D1-A17N", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":46, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.837730267", + "CASE_ID":"TCGA-D1-A17N", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.511325915", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.511325915" + }, + { + "CASE_ID":"TCGA-D1-A17Q", + "SUBTYPE":"POLE (Ultra-mutated)", + "AGE":54, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"3_HIGHEST", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.888581036", + "CASE_ID":"TCGA-D1-A17Q", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.774165205", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.774165205" + }, + { + "CASE_ID":"TCGA-D1-A17R", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.932869329", + "CASE_ID":"TCGA-D1-A17R", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"11.1378149", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"11.1378149" + }, + { + "CASE_ID":"TCGA-D1-A17S", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":59, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-D1-A17S", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"24.27977938", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"24.27977938" + }, + { + "CASE_ID":"TCGA-D1-A17T", + "SUBTYPE":"Copy-number low (Endometriod)", + "AGE":67, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.807152783", + "CASE_ID":"TCGA-D1-A17T", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"2.299843784", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"2.299843784" + }, + { + "CASE_ID":"TCGA-D1-A17U", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":53, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.908260689", + "CASE_ID":"TCGA-D1-A17U", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"22.89987311", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"22.89987311" + }, + { + "CASE_ID":"TCGA-D1-A1NS", + "SUBTYPE":"NA", + "AGE":53, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-D1-A1NS", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.412761182", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.412761182" + }, + { + "CASE_ID":"TCGA-D1-A1NU", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":74, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-D1-A1NU", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"13.2076743", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"13.2076743" + }, + { + "CASE_ID":"TCGA-D1-A1NW", + "SUBTYPE":"NA", + "AGE":72, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.736696762", + "CASE_ID":"TCGA-D1-A1NW", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"0.722808046", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"0.722808046" + }, + { + "CASE_ID":"TCGA-D1-A1NX", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":66, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-D1-A1NX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"18.23447572", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"15.63893773" + }, + { + "CASE_ID":"TCGA-D1-A1NY", + "SUBTYPE":"NA", + "AGE":67, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.706422825", + "CASE_ID":"TCGA-D1-A1NY", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"16.85456945", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"16.85456945" + }, + { + "CASE_ID":"TCGA-D1-A1NZ", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-D1-A1NZ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"18.00449134", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"18.00449134" + }, + { + "CASE_ID":"TCGA-D1-A1O0", + "SUBTYPE":"NA", + "AGE":77, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-D1-A1O0", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"2.069859406", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"2.069859406" + }, + { + "CASE_ID":"TCGA-D1-A1O5", + "SUBTYPE":"NA", + "AGE":61, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-D1-A1O5", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"15.04754933", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"15.04754933" + }, + { + "CASE_ID":"TCGA-D1-A1O7", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-D1-A1O7", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.051357158", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"1.051357158" + }, + { + "CASE_ID":"TCGA-D1-A1O8", + "SUBTYPE":"NA", + "AGE":70, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.883397264", + "CASE_ID":"TCGA-D1-A1O8", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"5.651044726", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"5.651044726" + }, + { + "CASE_ID":"TCGA-D1-A2G0", + "SUBTYPE":"NA", + "AGE":70, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-D1-A2G0", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"3.515475498", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"3.515475498" + }, + { + "CASE_ID":"TCGA-D1-A2G5", + "SUBTYPE":"NA", + "AGE":50, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-D1-A2G5", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"41.39718811", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-D1-A2G6", + "SUBTYPE":"NA", + "AGE":53, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.912165907", + "CASE_ID":"TCGA-D1-A2G6", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"8.47656709", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-DI-A0WH", + "SUBTYPE":"MSI (Hyper-mutated)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.900244534", + "CASE_ID":"TCGA-DI-A0WH", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"16.26318104", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-DI-A1BU", + "SUBTYPE":"NA", + "AGE":55, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.930343034", + "CASE_ID":"TCGA-DI-A1BU", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"39.26161888", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-DI-A1BY", + "SUBTYPE":"NA", + "AGE":63, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.934636502", + "CASE_ID":"TCGA-DI-A1BY", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"36.60037108", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-DI-A1C3", + "SUBTYPE":"NA", + "AGE":38, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-DI-A1C3", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"24.27977938", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-DI-A1NN", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-DI-A1NN", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"35.35188445", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"33.57771925" + }, + { + "CASE_ID":"TCGA-DI-A1NO", + "SUBTYPE":"NA", + "AGE":68, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.840372671", + "CASE_ID":"TCGA-DI-A1NO", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"9.363649692", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-E6-A1LX", + "SUBTYPE":"NA", + "AGE":40, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.757451043", + "CASE_ID":"TCGA-E6-A1LX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"23.35984186", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"23.35984186" + }, + { + "CASE_ID":"TCGA-E6-A1LZ", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":76, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-E6-A1LZ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"48.32957438", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"48.32957438" + }, + { + "CASE_ID":"TCGA-E6-A1M0", + "SUBTYPE":"NA", + "AGE":56, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.811767884", + "CASE_ID":"TCGA-E6-A1M0", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"17.018844", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"17.018844" + }, + { + "CASE_ID":"TCGA-EC-A1NJ", + "SUBTYPE":"NA", + "AGE":73, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-EC-A1NJ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"8.575131823", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"8.575131823" + }, + { + "CASE_ID":"TCGA-EC-A1QX", + "SUBTYPE":"NA", + "AGE":71, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-EC-A1QX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"7.326645198", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"7.162370642" + }, + { + "CASE_ID":"TCGA-EC-A24G", + "SUBTYPE":"NA", + "AGE":57, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-EC-A24G", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"1.511325915", + "DFS_STATUS":"", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-EO-A1Y5", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":63, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-EO-A1Y5", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"10.90783052", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"10.90783052" + }, + { + "CASE_ID":"TCGA-EO-A1Y7", + "SUBTYPE":"NA", + "AGE":65, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-EO-A1Y7", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"7.983743422", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"7.983743422" + }, + { + "CASE_ID":"TCGA-EO-A1Y8", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":87, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.777473716", + "CASE_ID":"TCGA-EO-A1Y8", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"10.77641087", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"10.77641087" + }, + { + "CASE_ID":"TCGA-EY-A1G7", + "SUBTYPE":"NA", + "AGE":86, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.872298235", + "CASE_ID":"TCGA-EY-A1G7", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"6.209578217", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"3.121216564" + }, + { + "CASE_ID":"TCGA-EY-A1G8", + "SUBTYPE":"NA", + "AGE":83, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.77520147", + "CASE_ID":"TCGA-EY-A1G8", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"14.9489846", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"14.9489846" + }, + { + "CASE_ID":"TCGA-EY-A1GC", + "SUBTYPE":"NA", + "AGE":62, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.858645969", + "CASE_ID":"TCGA-EY-A1GC", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"4.533977746", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"4.533977746" + }, + { + "CASE_ID":"TCGA-EY-A1GD", + "SUBTYPE":"NA", + "AGE":51, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.641019608", + "CASE_ID":"TCGA-EY-A1GD", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"8.148017978", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"8.148017978" + }, + { + "CASE_ID":"TCGA-EY-A1GE", + "SUBTYPE":"NA", + "AGE":67, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.930343034", + "CASE_ID":"TCGA-EY-A1GE", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"24.3454892", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"24.3454892" + }, + { + "CASE_ID":"TCGA-EY-A1GF", + "SUBTYPE":"NA", + "AGE":75, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.694269048", + "CASE_ID":"TCGA-EY-A1GF", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"27.13815665", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"27.13815665" + }, + { + "CASE_ID":"TCGA-EY-A1GH", + "SUBTYPE":"NA", + "AGE":70, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.435212832", + "CASE_ID":"TCGA-EY-A1GH", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"23.29413204", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"23.29413204" + }, + { + "CASE_ID":"TCGA-EY-A1GI", + "SUBTYPE":"NA", + "AGE":52, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-EY-A1GI", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"23.29413204", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"23.29413204" + }, + { + "CASE_ID":"TCGA-EY-A1GJ", + "SUBTYPE":"NA", + "AGE":73, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-EY-A1GJ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"23.88552044", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"23.88552044" + }, + { + "CASE_ID":"TCGA-EY-A1GK", + "SUBTYPE":"NA", + "AGE":74, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.32464941", + "CASE_ID":"TCGA-EY-A1GK", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"22.76845346", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"22.76845346" + }, + { + "CASE_ID":"TCGA-EY-A1GL", + "SUBTYPE":"NA", + "AGE":51, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.907347869", + "CASE_ID":"TCGA-EY-A1GL", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"13.93048235", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"13.93048235" + }, + { + "CASE_ID":"TCGA-EY-A1GM", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.888897494", + "CASE_ID":"TCGA-EY-A1GM", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"6.866676441", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"6.866676441" + }, + { + "CASE_ID":"TCGA-EY-A1GO", + "SUBTYPE":"NA", + "AGE":65, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.875629713", + "CASE_ID":"TCGA-EY-A1GO", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.25297796", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"16.98598909" + }, + { + "CASE_ID":"TCGA-EY-A1GP", + "SUBTYPE":"NA", + "AGE":54, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.918650794", + "CASE_ID":"TCGA-EY-A1GP", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"18.82586412", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"18.82586412" + }, + { + "CASE_ID":"TCGA-EY-A1GQ", + "SUBTYPE":"NA", + "AGE":76, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.953263868", + "CASE_ID":"TCGA-EY-A1GQ", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"17.87307169", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"10.97354034" + }, + { + "CASE_ID":"TCGA-EY-A1GR", + "SUBTYPE":"NA", + "AGE":67, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-EY-A1GR", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"17.6102324", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"17.6102324" + }, + { + "CASE_ID":"TCGA-EY-A1GS", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":71, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"2_HIGH", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-EY-A1GS", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"15.08040424", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-EY-A1GT", + "SUBTYPE":"NA", + "AGE":68, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 1", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.877287726", + "CASE_ID":"TCGA-EY-A1GT", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"16.09890649", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"16.09890649" + }, + { + "CASE_ID":"TCGA-EY-A1GU", + "SUBTYPE":"NA", + "AGE":66, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"0.910202499", + "CASE_ID":"TCGA-EY-A1GU", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"12.41915643", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"12.41915643" + }, + { + "CASE_ID":"TCGA-EY-A1GV", + "SUBTYPE":"NA", + "AGE":75, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"3", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-EY-A1GV", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"15.80321229", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"15.80321229" + }, + { + "CASE_ID":"TCGA-EY-A1GW", + "SUBTYPE":"NA", + "AGE":73, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":2, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.866569291", + "CASE_ID":"TCGA-EY-A1GW", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"11.07210507", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"6.242433128" + }, + { + "CASE_ID":"TCGA-EY-A1GX", + "SUBTYPE":"NA", + "AGE":76, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"5", + "MICRO_RNA_SCORE":"-0.164556962", + "CASE_ID":"TCGA-EY-A1GX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"6.472417506", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"6.472417506" + }, + { + "CASE_ID":"TCGA-EY-A1H0", + "SUBTYPE":"NA", + "AGE":57, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 2", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-EY-A1H0", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"19.31868779", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"14.71900022" + }, + { + "CASE_ID":"TCGA-EY-A210", + "SUBTYPE":"NA", + "AGE":82, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-L", + "MSI_STATUS_5_MARKER_CALL":"MSI-L", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.888897494", + "CASE_ID":"TCGA-EY-A210", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"12.58343099", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"12.58343099" + }, + { + "CASE_ID":"TCGA-EY-A212", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":83, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.774263515", + "CASE_ID":"TCGA-EY-A212", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"9.955038094", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-EY-A214", + "SUBTYPE":"NA", + "AGE":66, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-EY-A214", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"14.39045111", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"14.39045111" + }, + { + "CASE_ID":"TCGA-EY-A215", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"N", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"NA", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-EY-A215", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"18.85871903", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"18.85871903" + }, + { + "CASE_ID":"TCGA-FI-A2CX", + "SUBTYPE":"NA", + "AGE":82, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-FI-A2CX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"39.98442693", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"39.98442693" + }, + { + "CASE_ID":"TCGA-FI-A2CY", + "SUBTYPE":"NA", + "AGE":60, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.921856623", + "CASE_ID":"TCGA-FI-A2CY", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"34.95762552", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"34.95762552" + }, + { + "CASE_ID":"TCGA-FI-A2D0", + "SUBTYPE":"NA", + "AGE":55, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-FI-A2D0", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"33.97197818", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"33.97197818" + }, + { + "CASE_ID":"TCGA-FI-A2D2", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":66, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Mixed", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.853878533", + "CASE_ID":"TCGA-FI-A2D2", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"35.97612776", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"35.97612776" + }, + { + "CASE_ID":"TCGA-FI-A2D4", + "SUBTYPE":"NA", + "AGE":44, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"3", + "MICRO_RNA_SCORE":"0.897648505", + "CASE_ID":"TCGA-FI-A2D4", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"7.95088851", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-FI-A2D5", + "SUBTYPE":"NA", + "AGE":56, + "TUMOR_STAGE_2009":"Stage IV", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":4, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"1", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"2", + "MICRO_RNA_SCORE":"0.912165907", + "CASE_ID":"TCGA-FI-A2D5", + "OS_STATUS":"1:DECEASED", + "OS_MONTHS":"13.99619217", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-FI-A2D6", + "SUBTYPE":"NA", + "AGE":74, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"2", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"1", + "MICRO_RNA_SCORE":"0.739874405", + "CASE_ID":"TCGA-FI-A2D6", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"8.969390758", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"8.969390758" + }, + { + "CASE_ID":"TCGA-FI-A2EU", + "SUBTYPE":"NA", + "AGE":68, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.923555802", + "CASE_ID":"TCGA-FI-A2EU", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"84.01000794", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"84.01000794" + }, + { + "CASE_ID":"TCGA-FI-A2EW", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":71, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"Indeterminant", + "MSI_STATUS_5_MARKER_CALL":"Indeterminant", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-FI-A2EW", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"58.9745656", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-FI-A2EX", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":58, + "TUMOR_STAGE_2009":"Stage III", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"4", + "MICRO_RNA_SCORE":"0.886489497", + "CASE_ID":"TCGA-FI-A2EX", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"9.067955491", + "DFS_STATUS":"Recurred", + "DFS_MONTHS":"NA" + }, + { + "CASE_ID":"TCGA-FI-A2F4", + "SUBTYPE":"NA", + "AGE":64, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSI-H", + "MSI_STATUS_5_MARKER_CALL":"MSI-H", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"2", + "METHYLATION_CLUSTER":1, + "MLH1_SILENCING":"1", + "CNA_CLUSTER_K4":"3", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-FI-A2F4", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"28.91232186", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"28.91232186" + }, + { + "CASE_ID":"TCGA-FI-A2F8", + "SUBTYPE":"Copy-number high (Serous-like)", + "AGE":64, + "TUMOR_STAGE_2009":"Stage II", + "HISTOLOGY":"Serous", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"Y", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"Y", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"1_LOW", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"0.936182815", + "CASE_ID":"TCGA-FI-A2F8", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"25.00258742", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"25.00258742" + }, + { + "CASE_ID":"TCGA-FI-A2F9", + "SUBTYPE":"NA", + "AGE":79, + "TUMOR_STAGE_2009":"Stage I", + "HISTOLOGY":"Endometrioid", + "TUMOR_GRADE":"Grade 3", + "MSI_STATUS_7_MARKER_CALL":"MSS", + "MSI_STATUS_5_MARKER_CALL":"MSS", + "DATA_MAF":"N", + "DATA_GISTIC":"Y", + "DATA_RNASEQ":"Y", + "DATA_CORE_SAMPLE":"N", + "MRNA_EXPRESSION_CLUSTER":"1", + "METHYLATION_CLUSTER":3, + "MLH1_SILENCING":"0", + "CNA_CLUSTER_K4":"4", + "MUTATION_RATE_CLUSTER":"NA", + "MICRO_RNA_CLUSTER":"6", + "MICRO_RNA_SCORE":"-0.061109725", + "CASE_ID":"TCGA-FI-A2F9", + "OS_STATUS":"0:LIVING", + "OS_MONTHS":"25.98823476", + "DFS_STATUS":"0:DiseaseFree", + "DFS_MONTHS":"25.98823476" + } ] \ No newline at end of file diff --git a/portal/src/main/webapp/config_service.jsp b/src/main/resources/webapp/config_service.jsp similarity index 87% rename from portal/src/main/webapp/config_service.jsp rename to src/main/resources/webapp/config_service.jsp index e6b0ae33495..d2b1ce2bee9 100644 --- a/portal/src/main/webapp/config_service.jsp +++ b/src/main/resources/webapp/config_service.jsp @@ -1,28 +1,3 @@ -<%@ page import="org.apache.commons.lang3.StringUtils" %> -<%@ page import="org.mskcc.cbio.portal.servlet.CheckDarwinAccessServlet" %> -<%@ page import="org.mskcc.cbio.portal.util.GlobalProperties" %> -<%@ page import="org.json.simple.JSONArray" %> -<%@ page import="org.json.simple.JSONObject" %> - -// an empty string means the property is listed but not assigned to in portal.props -// a null value means it was entirely missing - -// this jsp can either be included in index.jsp or called as a jsonp service (by decoupled frontends not using jsps) -// if there is a callback url param, we respond as jsonp callback(data), otherwise, we assign to variable - -<% - String callback = request.getParameter("callback"); - - // this is to avoid CORB blocking when jsonp is called across domain - if (callback != null) { - response.setContentType("text/javascript; charset=UTF-8"); - } - -%> - -<%= (callback==null ? "window.rawServerConfig = " : "callback" ) %>( - - <% // Set API root variable for cbioportal-frontend repo String currentUrl = request.getRequestURL().toString(); String baseURL = currentUrl.substring(0, currentUrl.length() - request.getRequestURI().length()) + request.getContextPath(); @@ -206,9 +181,9 @@ obj.put("oncoprintOncoKbHotspotsDefault",enableOncoKBandHotspots); - obj.put("oncoKbTokenDefined", !StringUtils.isEmpty(GlobalProperties.getOncoKbToken())); + obj.put("oncoKbTokenDefined", !ObjectUtils.isEmpty(GlobalProperties.getOncoKbToken())); - obj.put("sessionServiceEnabled", !StringUtils.isEmpty(GlobalProperties.getSessionServiceUrl())); + obj.put("sessionServiceEnabled", !ObjectUtils.isEmpty(GlobalProperties.getSessionServiceUrl())); obj.put("skin_hide_download_controls", GlobalProperties.getDownloadControl()); diff --git a/portal/src/main/webapp/content/README.txt b/src/main/resources/webapp/content/README.txt similarity index 100% rename from portal/src/main/webapp/content/README.txt rename to src/main/resources/webapp/content/README.txt diff --git a/portal/src/main/webapp/content/about_us.html b/src/main/resources/webapp/content/about_us.html similarity index 100% rename from portal/src/main/webapp/content/about_us.html rename to src/main/resources/webapp/content/about_us.html diff --git a/portal/src/main/webapp/content/about_us_prostate.html b/src/main/resources/webapp/content/about_us_prostate.html similarity index 100% rename from portal/src/main/webapp/content/about_us_prostate.html rename to src/main/resources/webapp/content/about_us_prostate.html diff --git a/portal/src/main/webapp/content/about_us_su2c.html b/src/main/resources/webapp/content/about_us_su2c.html similarity index 100% rename from portal/src/main/webapp/content/about_us_su2c.html rename to src/main/resources/webapp/content/about_us_su2c.html diff --git a/portal/src/main/webapp/content/about_us_target.html b/src/main/resources/webapp/content/about_us_target.html similarity index 100% rename from portal/src/main/webapp/content/about_us_target.html rename to src/main/resources/webapp/content/about_us_target.html diff --git a/portal/src/main/webapp/content/cgds_r.html b/src/main/resources/webapp/content/cgds_r.html similarity index 100% rename from portal/src/main/webapp/content/cgds_r.html rename to src/main/resources/webapp/content/cgds_r.html diff --git a/portal/src/main/webapp/content/data_sets.html b/src/main/resources/webapp/content/data_sets.html similarity index 100% rename from portal/src/main/webapp/content/data_sets.html rename to src/main/resources/webapp/content/data_sets.html diff --git a/portal/src/main/webapp/content/faq.html b/src/main/resources/webapp/content/faq.html similarity index 100% rename from portal/src/main/webapp/content/faq.html rename to src/main/resources/webapp/content/faq.html diff --git a/portal/src/main/webapp/content/faq_prostate.html b/src/main/resources/webapp/content/faq_prostate.html similarity index 100% rename from portal/src/main/webapp/content/faq_prostate.html rename to src/main/resources/webapp/content/faq_prostate.html diff --git a/portal/src/main/webapp/content/faq_su2c.html b/src/main/resources/webapp/content/faq_su2c.html similarity index 100% rename from portal/src/main/webapp/content/faq_su2c.html rename to src/main/resources/webapp/content/faq_su2c.html diff --git a/portal/src/main/webapp/content/faq_target.html b/src/main/resources/webapp/content/faq_target.html similarity index 100% rename from portal/src/main/webapp/content/faq_target.html rename to src/main/resources/webapp/content/faq_target.html diff --git a/portal/src/main/webapp/content/faq_tcga.html b/src/main/resources/webapp/content/faq_tcga.html similarity index 100% rename from portal/src/main/webapp/content/faq_tcga.html rename to src/main/resources/webapp/content/faq_tcga.html diff --git a/portal/src/main/webapp/content/networks.html b/src/main/resources/webapp/content/networks.html similarity index 100% rename from portal/src/main/webapp/content/networks.html rename to src/main/resources/webapp/content/networks.html diff --git a/portal/src/main/webapp/content/news.html b/src/main/resources/webapp/content/news.html similarity index 100% rename from portal/src/main/webapp/content/news.html rename to src/main/resources/webapp/content/news.html diff --git a/portal/src/main/webapp/content/news_genie.html b/src/main/resources/webapp/content/news_genie.html similarity index 100% rename from portal/src/main/webapp/content/news_genie.html rename to src/main/resources/webapp/content/news_genie.html diff --git a/portal/src/main/webapp/content/news_prostate.html b/src/main/resources/webapp/content/news_prostate.html similarity index 100% rename from portal/src/main/webapp/content/news_prostate.html rename to src/main/resources/webapp/content/news_prostate.html diff --git a/portal/src/main/webapp/content/news_su2c.html b/src/main/resources/webapp/content/news_su2c.html similarity index 100% rename from portal/src/main/webapp/content/news_su2c.html rename to src/main/resources/webapp/content/news_su2c.html diff --git a/portal/src/main/webapp/content/news_target.html b/src/main/resources/webapp/content/news_target.html similarity index 100% rename from portal/src/main/webapp/content/news_target.html rename to src/main/resources/webapp/content/news_target.html diff --git a/portal/src/main/webapp/content/news_tcga.html b/src/main/resources/webapp/content/news_tcga.html similarity index 100% rename from portal/src/main/webapp/content/news_tcga.html rename to src/main/resources/webapp/content/news_tcga.html diff --git a/portal/src/main/webapp/content/onco_spec_lang_desc.html b/src/main/resources/webapp/content/onco_spec_lang_desc.html similarity index 100% rename from portal/src/main/webapp/content/onco_spec_lang_desc.html rename to src/main/resources/webapp/content/onco_spec_lang_desc.html diff --git a/portal/src/main/webapp/content/release_note_oncoprinter.html b/src/main/resources/webapp/content/release_note_mutation_mapper.html similarity index 100% rename from portal/src/main/webapp/content/release_note_oncoprinter.html rename to src/main/resources/webapp/content/release_note_mutation_mapper.html diff --git a/src/main/resources/webapp/content/release_note_oncoprinter.html b/src/main/resources/webapp/content/release_note_oncoprinter.html new file mode 100644 index 00000000000..e69de29bb2d diff --git a/portal/src/main/webapp/content/release_notes_mutation_mapper.html b/src/main/resources/webapp/content/release_notes_mutation_mapper.html similarity index 100% rename from portal/src/main/webapp/content/release_notes_mutation_mapper.html rename to src/main/resources/webapp/content/release_notes_mutation_mapper.html diff --git a/portal/src/main/webapp/content/release_notes_oncoprinter.html b/src/main/resources/webapp/content/release_notes_oncoprinter.html similarity index 100% rename from portal/src/main/webapp/content/release_notes_oncoprinter.html rename to src/main/resources/webapp/content/release_notes_oncoprinter.html diff --git a/portal/src/main/webapp/content/visualize_your_data.html b/src/main/resources/webapp/content/visualize_your_data.html similarity index 100% rename from portal/src/main/webapp/content/visualize_your_data.html rename to src/main/resources/webapp/content/visualize_your_data.html diff --git a/portal/src/main/webapp/content/web_api.html b/src/main/resources/webapp/content/web_api.html similarity index 100% rename from portal/src/main/webapp/content/web_api.html rename to src/main/resources/webapp/content/web_api.html diff --git a/src/main/resources/webapp/error.html b/src/main/resources/webapp/error.html new file mode 100644 index 00000000000..c47d63ada36 --- /dev/null +++ b/src/main/resources/webapp/error.html @@ -0,0 +1,13 @@ + + + + + +
    +

    + Error 400: Invalid Request +

    +
    + + + \ No newline at end of file diff --git a/portal/src/main/webapp/fonts/FontAwesome.otf b/src/main/resources/webapp/fonts/FontAwesome.otf similarity index 100% rename from portal/src/main/webapp/fonts/FontAwesome.otf rename to src/main/resources/webapp/fonts/FontAwesome.otf diff --git a/portal/src/main/webapp/fonts/fontawesome-webfont.eot b/src/main/resources/webapp/fonts/fontawesome-webfont.eot similarity index 100% rename from portal/src/main/webapp/fonts/fontawesome-webfont.eot rename to src/main/resources/webapp/fonts/fontawesome-webfont.eot diff --git a/portal/src/main/webapp/fonts/fontawesome-webfont.svg b/src/main/resources/webapp/fonts/fontawesome-webfont.svg similarity index 100% rename from portal/src/main/webapp/fonts/fontawesome-webfont.svg rename to src/main/resources/webapp/fonts/fontawesome-webfont.svg diff --git a/portal/src/main/webapp/fonts/fontawesome-webfont.ttf b/src/main/resources/webapp/fonts/fontawesome-webfont.ttf similarity index 100% rename from portal/src/main/webapp/fonts/fontawesome-webfont.ttf rename to src/main/resources/webapp/fonts/fontawesome-webfont.ttf diff --git a/portal/src/main/webapp/fonts/fontawesome-webfont.woff b/src/main/resources/webapp/fonts/fontawesome-webfont.woff similarity index 100% rename from portal/src/main/webapp/fonts/fontawesome-webfont.woff rename to src/main/resources/webapp/fonts/fontawesome-webfont.woff diff --git a/portal/src/main/webapp/fonts/fontawesome-webfont.woff2 b/src/main/resources/webapp/fonts/fontawesome-webfont.woff2 similarity index 100% rename from portal/src/main/webapp/fonts/fontawesome-webfont.woff2 rename to src/main/resources/webapp/fonts/fontawesome-webfont.woff2 diff --git a/portal/src/main/webapp/fonts/glyphicons-halflings-regular.eot b/src/main/resources/webapp/fonts/glyphicons-halflings-regular.eot similarity index 100% rename from portal/src/main/webapp/fonts/glyphicons-halflings-regular.eot rename to src/main/resources/webapp/fonts/glyphicons-halflings-regular.eot diff --git a/portal/src/main/webapp/fonts/glyphicons-halflings-regular.svg b/src/main/resources/webapp/fonts/glyphicons-halflings-regular.svg similarity index 100% rename from portal/src/main/webapp/fonts/glyphicons-halflings-regular.svg rename to src/main/resources/webapp/fonts/glyphicons-halflings-regular.svg diff --git a/portal/src/main/webapp/fonts/glyphicons-halflings-regular.ttf b/src/main/resources/webapp/fonts/glyphicons-halflings-regular.ttf similarity index 100% rename from portal/src/main/webapp/fonts/glyphicons-halflings-regular.ttf rename to src/main/resources/webapp/fonts/glyphicons-halflings-regular.ttf diff --git a/portal/src/main/webapp/fonts/glyphicons-halflings-regular.woff b/src/main/resources/webapp/fonts/glyphicons-halflings-regular.woff similarity index 100% rename from portal/src/main/webapp/fonts/glyphicons-halflings-regular.woff rename to src/main/resources/webapp/fonts/glyphicons-halflings-regular.woff diff --git a/portal/src/main/webapp/fonts/glyphicons-halflings-regular.woff2 b/src/main/resources/webapp/fonts/glyphicons-halflings-regular.woff2 similarity index 100% rename from portal/src/main/webapp/fonts/glyphicons-halflings-regular.woff2 rename to src/main/resources/webapp/fonts/glyphicons-halflings-regular.woff2 diff --git a/portal/src/main/webapp/gfx/popeye/bg1.png b/src/main/resources/webapp/gfx/popeye/bg1.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/bg1.png rename to src/main/resources/webapp/gfx/popeye/bg1.png diff --git a/portal/src/main/webapp/gfx/popeye/compact1.png b/src/main/resources/webapp/gfx/popeye/compact1.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/compact1.png rename to src/main/resources/webapp/gfx/popeye/compact1.png diff --git a/portal/src/main/webapp/gfx/popeye/compact2.png b/src/main/resources/webapp/gfx/popeye/compact2.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/compact2.png rename to src/main/resources/webapp/gfx/popeye/compact2.png diff --git a/portal/src/main/webapp/gfx/popeye/compact3.png b/src/main/resources/webapp/gfx/popeye/compact3.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/compact3.png rename to src/main/resources/webapp/gfx/popeye/compact3.png diff --git a/portal/src/main/webapp/gfx/popeye/compact4.png b/src/main/resources/webapp/gfx/popeye/compact4.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/compact4.png rename to src/main/resources/webapp/gfx/popeye/compact4.png diff --git a/portal/src/main/webapp/gfx/popeye/compact4_small.png b/src/main/resources/webapp/gfx/popeye/compact4_small.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/compact4_small.png rename to src/main/resources/webapp/gfx/popeye/compact4_small.png diff --git a/portal/src/main/webapp/gfx/popeye/enlarge1.png b/src/main/resources/webapp/gfx/popeye/enlarge1.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/enlarge1.png rename to src/main/resources/webapp/gfx/popeye/enlarge1.png diff --git a/portal/src/main/webapp/gfx/popeye/enlarge2.png b/src/main/resources/webapp/gfx/popeye/enlarge2.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/enlarge2.png rename to src/main/resources/webapp/gfx/popeye/enlarge2.png diff --git a/portal/src/main/webapp/gfx/popeye/enlarge3.png b/src/main/resources/webapp/gfx/popeye/enlarge3.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/enlarge3.png rename to src/main/resources/webapp/gfx/popeye/enlarge3.png diff --git a/portal/src/main/webapp/gfx/popeye/enlarge4.png b/src/main/resources/webapp/gfx/popeye/enlarge4.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/enlarge4.png rename to src/main/resources/webapp/gfx/popeye/enlarge4.png diff --git a/portal/src/main/webapp/gfx/popeye/enlarge4_small.png b/src/main/resources/webapp/gfx/popeye/enlarge4_small.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/enlarge4_small.png rename to src/main/resources/webapp/gfx/popeye/enlarge4_small.png diff --git a/portal/src/main/webapp/gfx/popeye/loading1.gif b/src/main/resources/webapp/gfx/popeye/loading1.gif similarity index 100% rename from portal/src/main/webapp/gfx/popeye/loading1.gif rename to src/main/resources/webapp/gfx/popeye/loading1.gif diff --git a/portal/src/main/webapp/gfx/popeye/loading2.gif b/src/main/resources/webapp/gfx/popeye/loading2.gif similarity index 100% rename from portal/src/main/webapp/gfx/popeye/loading2.gif rename to src/main/resources/webapp/gfx/popeye/loading2.gif diff --git a/portal/src/main/webapp/gfx/popeye/loading3.gif b/src/main/resources/webapp/gfx/popeye/loading3.gif similarity index 100% rename from portal/src/main/webapp/gfx/popeye/loading3.gif rename to src/main/resources/webapp/gfx/popeye/loading3.gif diff --git a/portal/src/main/webapp/gfx/popeye/next1.png b/src/main/resources/webapp/gfx/popeye/next1.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/next1.png rename to src/main/resources/webapp/gfx/popeye/next1.png diff --git a/portal/src/main/webapp/gfx/popeye/next3.png b/src/main/resources/webapp/gfx/popeye/next3.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/next3.png rename to src/main/resources/webapp/gfx/popeye/next3.png diff --git a/portal/src/main/webapp/gfx/popeye/next3_small.png b/src/main/resources/webapp/gfx/popeye/next3_small.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/next3_small.png rename to src/main/resources/webapp/gfx/popeye/next3_small.png diff --git a/portal/src/main/webapp/gfx/popeye/prev1.png b/src/main/resources/webapp/gfx/popeye/prev1.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/prev1.png rename to src/main/resources/webapp/gfx/popeye/prev1.png diff --git a/portal/src/main/webapp/gfx/popeye/prev3.png b/src/main/resources/webapp/gfx/popeye/prev3.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/prev3.png rename to src/main/resources/webapp/gfx/popeye/prev3.png diff --git a/portal/src/main/webapp/gfx/popeye/prev3_small.png b/src/main/resources/webapp/gfx/popeye/prev3_small.png similarity index 100% rename from portal/src/main/webapp/gfx/popeye/prev3_small.png rename to src/main/resources/webapp/gfx/popeye/prev3_small.png diff --git a/portal/src/main/webapp/gfx/site/bg.jpg b/src/main/resources/webapp/gfx/site/bg.jpg similarity index 100% rename from portal/src/main/webapp/gfx/site/bg.jpg rename to src/main/resources/webapp/gfx/site/bg.jpg diff --git a/portal/src/main/webapp/images/3d-hotspots.svg b/src/main/resources/webapp/images/3d-hotspots.svg similarity index 100% rename from portal/src/main/webapp/images/3d-hotspots.svg rename to src/main/resources/webapp/images/3d-hotspots.svg diff --git a/portal/src/main/webapp/images/IGVlogo.png b/src/main/resources/webapp/images/IGVlogo.png similarity index 100% rename from portal/src/main/webapp/images/IGVlogo.png rename to src/main/resources/webapp/images/IGVlogo.png diff --git a/portal/src/main/webapp/images/SU2C-PCF-logo.png b/src/main/resources/webapp/images/SU2C-PCF-logo.png similarity index 100% rename from portal/src/main/webapp/images/SU2C-PCF-logo.png rename to src/main/resources/webapp/images/SU2C-PCF-logo.png diff --git a/portal/src/main/webapp/images/Sorting icons.psd b/src/main/resources/webapp/images/Sorting icons.psd similarity index 100% rename from portal/src/main/webapp/images/Sorting icons.psd rename to src/main/resources/webapp/images/Sorting icons.psd diff --git a/portal/src/main/webapp/images/ajax-loader-no-text.gif b/src/main/resources/webapp/images/ajax-loader-no-text.gif similarity index 100% rename from portal/src/main/webapp/images/ajax-loader-no-text.gif rename to src/main/resources/webapp/images/ajax-loader-no-text.gif diff --git a/portal/src/main/webapp/images/ajax-loader.gif b/src/main/resources/webapp/images/ajax-loader.gif similarity index 100% rename from portal/src/main/webapp/images/ajax-loader.gif rename to src/main/resources/webapp/images/ajax-loader.gif diff --git a/portal/src/main/webapp/images/ajax-loader2.gif b/src/main/resources/webapp/images/ajax-loader2.gif similarity index 100% rename from portal/src/main/webapp/images/ajax-loader2.gif rename to src/main/resources/webapp/images/ajax-loader2.gif diff --git a/portal/src/main/webapp/images/allele-freq-thumbnail.jpg b/src/main/resources/webapp/images/allele-freq-thumbnail.jpg similarity index 100% rename from portal/src/main/webapp/images/allele-freq-thumbnail.jpg rename to src/main/resources/webapp/images/allele-freq-thumbnail.jpg diff --git a/portal/src/main/webapp/images/altered.gif b/src/main/resources/webapp/images/altered.gif similarity index 100% rename from portal/src/main/webapp/images/altered.gif rename to src/main/resources/webapp/images/altered.gif diff --git a/portal/src/main/webapp/images/arrow-down.svg b/src/main/resources/webapp/images/arrow-down.svg similarity index 100% rename from portal/src/main/webapp/images/arrow-down.svg rename to src/main/resources/webapp/images/arrow-down.svg diff --git a/portal/src/main/webapp/images/arrow-up.svg b/src/main/resources/webapp/images/arrow-up.svg similarity index 100% rename from portal/src/main/webapp/images/arrow-up.svg rename to src/main/resources/webapp/images/arrow-up.svg diff --git a/portal/src/main/webapp/images/arrow_bottom.png b/src/main/resources/webapp/images/arrow_bottom.png similarity index 100% rename from portal/src/main/webapp/images/arrow_bottom.png rename to src/main/resources/webapp/images/arrow_bottom.png diff --git a/portal/src/main/webapp/images/arrow_studyview.png b/src/main/resources/webapp/images/arrow_studyview.png similarity index 100% rename from portal/src/main/webapp/images/arrow_studyview.png rename to src/main/resources/webapp/images/arrow_studyview.png diff --git a/portal/src/main/webapp/images/arrow_top.png b/src/main/resources/webapp/images/arrow_top.png similarity index 100% rename from portal/src/main/webapp/images/arrow_top.png rename to src/main/resources/webapp/images/arrow_top.png diff --git a/portal/src/main/webapp/images/back_disabled.jpg b/src/main/resources/webapp/images/back_disabled.jpg similarity index 100% rename from portal/src/main/webapp/images/back_disabled.jpg rename to src/main/resources/webapp/images/back_disabled.jpg diff --git a/portal/src/main/webapp/images/back_enabled.jpg b/src/main/resources/webapp/images/back_enabled.jpg similarity index 100% rename from portal/src/main/webapp/images/back_enabled.jpg rename to src/main/resources/webapp/images/back_enabled.jpg diff --git a/portal/src/main/webapp/images/blank.svg b/src/main/resources/webapp/images/blank.svg similarity index 100% rename from portal/src/main/webapp/images/blank.svg rename to src/main/resources/webapp/images/blank.svg diff --git a/portal/src/main/webapp/images/bullseye.ai b/src/main/resources/webapp/images/bullseye.ai similarity index 100% rename from portal/src/main/webapp/images/bullseye.ai rename to src/main/resources/webapp/images/bullseye.ai diff --git a/portal/src/main/webapp/images/bullseye.gif b/src/main/resources/webapp/images/bullseye.gif similarity index 100% rename from portal/src/main/webapp/images/bullseye.gif rename to src/main/resources/webapp/images/bullseye.gif diff --git a/portal/src/main/webapp/images/bullseye.png b/src/main/resources/webapp/images/bullseye.png similarity index 100% rename from portal/src/main/webapp/images/bullseye.png rename to src/main/resources/webapp/images/bullseye.png diff --git a/portal/src/main/webapp/images/cancer-hotspots.svg b/src/main/resources/webapp/images/cancer-hotspots.svg similarity index 100% rename from portal/src/main/webapp/images/cancer-hotspots.svg rename to src/main/resources/webapp/images/cancer-hotspots.svg diff --git a/portal/src/main/webapp/images/cbioLogo.png b/src/main/resources/webapp/images/cbioLogo.png similarity index 100% rename from portal/src/main/webapp/images/cbioLogo.png rename to src/main/resources/webapp/images/cbioLogo.png diff --git a/portal/src/main/webapp/images/cbioportal_icon.png b/src/main/resources/webapp/images/cbioportal_icon.png similarity index 100% rename from portal/src/main/webapp/images/cbioportal_icon.png rename to src/main/resources/webapp/images/cbioportal_icon.png diff --git a/portal/src/main/webapp/images/cbioportal_logo.png b/src/main/resources/webapp/images/cbioportal_logo.png similarity index 100% rename from portal/src/main/webapp/images/cbioportal_logo.png rename to src/main/resources/webapp/images/cbioportal_logo.png diff --git a/portal/src/main/webapp/images/check.gif b/src/main/resources/webapp/images/check.gif similarity index 100% rename from portal/src/main/webapp/images/check.gif rename to src/main/resources/webapp/images/check.gif diff --git a/portal/src/main/webapp/images/chosen-sprite.png b/src/main/resources/webapp/images/chosen-sprite.png similarity index 100% rename from portal/src/main/webapp/images/chosen-sprite.png rename to src/main/resources/webapp/images/chosen-sprite.png diff --git a/portal/src/main/webapp/images/civic-logo-disabled.png b/src/main/resources/webapp/images/civic-logo-disabled.png similarity index 100% rename from portal/src/main/webapp/images/civic-logo-disabled.png rename to src/main/resources/webapp/images/civic-logo-disabled.png diff --git a/portal/src/main/webapp/images/civic-logo.png b/src/main/resources/webapp/images/civic-logo.png similarity index 100% rename from portal/src/main/webapp/images/civic-logo.png rename to src/main/resources/webapp/images/civic-logo.png diff --git a/portal/src/main/webapp/images/civic_text_logo.png b/src/main/resources/webapp/images/civic_text_logo.png similarity index 100% rename from portal/src/main/webapp/images/civic_text_logo.png rename to src/main/resources/webapp/images/civic_text_logo.png diff --git a/portal/src/main/webapp/images/close.svg b/src/main/resources/webapp/images/close.svg similarity index 100% rename from portal/src/main/webapp/images/close.svg rename to src/main/resources/webapp/images/close.svg diff --git a/portal/src/main/webapp/images/closequote.png b/src/main/resources/webapp/images/closequote.png similarity index 100% rename from portal/src/main/webapp/images/closequote.png rename to src/main/resources/webapp/images/closequote.png diff --git a/portal/src/main/webapp/images/cohort.png b/src/main/resources/webapp/images/cohort.png similarity index 100% rename from portal/src/main/webapp/images/cohort.png rename to src/main/resources/webapp/images/cohort.png diff --git a/portal/src/main/webapp/images/colormutations.svg b/src/main/resources/webapp/images/colormutations.svg similarity index 100% rename from portal/src/main/webapp/images/colormutations.svg rename to src/main/resources/webapp/images/colormutations.svg diff --git a/portal/src/main/webapp/images/contract.svg b/src/main/resources/webapp/images/contract.svg similarity index 100% rename from portal/src/main/webapp/images/contract.svg rename to src/main/resources/webapp/images/contract.svg diff --git a/portal/src/main/webapp/images/cool.svg b/src/main/resources/webapp/images/cool.svg similarity index 100% rename from portal/src/main/webapp/images/cool.svg rename to src/main/resources/webapp/images/cool.svg diff --git a/portal/src/main/webapp/images/cool2.svg b/src/main/resources/webapp/images/cool2.svg similarity index 100% rename from portal/src/main/webapp/images/cool2.svg rename to src/main/resources/webapp/images/cool2.svg diff --git a/portal/src/main/webapp/images/cosmic.gif b/src/main/resources/webapp/images/cosmic.gif similarity index 100% rename from portal/src/main/webapp/images/cosmic.gif rename to src/main/resources/webapp/images/cosmic.gif diff --git a/portal/src/main/webapp/images/crosshair.gif b/src/main/resources/webapp/images/crosshair.gif similarity index 100% rename from portal/src/main/webapp/images/crosshair.gif rename to src/main/resources/webapp/images/crosshair.gif diff --git a/portal/src/main/webapp/images/crosshair.jpg b/src/main/resources/webapp/images/crosshair.jpg similarity index 100% rename from portal/src/main/webapp/images/crosshair.jpg rename to src/main/resources/webapp/images/crosshair.jpg diff --git a/portal/src/main/webapp/images/ctd2-dashboard-logo.png b/src/main/resources/webapp/images/ctd2-dashboard-logo.png similarity index 100% rename from portal/src/main/webapp/images/ctd2-dashboard-logo.png rename to src/main/resources/webapp/images/ctd2-dashboard-logo.png diff --git a/portal/src/main/webapp/images/darwin_logo.png b/src/main/resources/webapp/images/darwin_logo.png similarity index 100% rename from portal/src/main/webapp/images/darwin_logo.png rename to src/main/resources/webapp/images/darwin_logo.png diff --git a/portal/src/main/webapp/images/dashboard/ajax-loader.gif b/src/main/resources/webapp/images/dashboard/ajax-loader.gif similarity index 100% rename from portal/src/main/webapp/images/dashboard/ajax-loader.gif rename to src/main/resources/webapp/images/dashboard/ajax-loader.gif diff --git a/portal/src/main/webapp/images/dashboard/in.svg b/src/main/resources/webapp/images/dashboard/in.svg similarity index 100% rename from portal/src/main/webapp/images/dashboard/in.svg rename to src/main/resources/webapp/images/dashboard/in.svg diff --git a/portal/src/main/webapp/images/dashboard/move.svg b/src/main/resources/webapp/images/dashboard/move.svg similarity index 100% rename from portal/src/main/webapp/images/dashboard/move.svg rename to src/main/resources/webapp/images/dashboard/move.svg diff --git a/portal/src/main/webapp/images/dashboard/pie.svg b/src/main/resources/webapp/images/dashboard/pie.svg similarity index 100% rename from portal/src/main/webapp/images/dashboard/pie.svg rename to src/main/resources/webapp/images/dashboard/pie.svg diff --git a/portal/src/main/webapp/images/dashboard/reload-alt.svg b/src/main/resources/webapp/images/dashboard/reload-alt.svg similarity index 100% rename from portal/src/main/webapp/images/dashboard/reload-alt.svg rename to src/main/resources/webapp/images/dashboard/reload-alt.svg diff --git a/portal/src/main/webapp/images/dashboard/remove_breadcrumb_icon.png b/src/main/resources/webapp/images/dashboard/remove_breadcrumb_icon.png similarity index 100% rename from portal/src/main/webapp/images/dashboard/remove_breadcrumb_icon.png rename to src/main/resources/webapp/images/dashboard/remove_breadcrumb_icon.png diff --git a/portal/src/main/webapp/images/dashboard/survival_icon.svg b/src/main/resources/webapp/images/dashboard/survival_icon.svg similarity index 100% rename from portal/src/main/webapp/images/dashboard/survival_icon.svg rename to src/main/resources/webapp/images/dashboard/survival_icon.svg diff --git a/portal/src/main/webapp/images/dashboard/table.svg b/src/main/resources/webapp/images/dashboard/table.svg similarity index 100% rename from portal/src/main/webapp/images/dashboard/table.svg rename to src/main/resources/webapp/images/dashboard/table.svg diff --git a/portal/src/main/webapp/images/decreaseSort.svg b/src/main/resources/webapp/images/decreaseSort.svg similarity index 100% rename from portal/src/main/webapp/images/decreaseSort.svg rename to src/main/resources/webapp/images/decreaseSort.svg diff --git a/portal/src/main/webapp/images/details_close.png b/src/main/resources/webapp/images/details_close.png similarity index 100% rename from portal/src/main/webapp/images/details_close.png rename to src/main/resources/webapp/images/details_close.png diff --git a/portal/src/main/webapp/images/details_open.png b/src/main/resources/webapp/images/details_open.png similarity index 100% rename from portal/src/main/webapp/images/details_open.png rename to src/main/resources/webapp/images/details_open.png diff --git a/portal/src/main/webapp/images/down-rppa-white.png b/src/main/resources/webapp/images/down-rppa-white.png similarity index 100% rename from portal/src/main/webapp/images/down-rppa-white.png rename to src/main/resources/webapp/images/down-rppa-white.png diff --git a/portal/src/main/webapp/images/down-rppa.png b/src/main/resources/webapp/images/down-rppa.png similarity index 100% rename from portal/src/main/webapp/images/down-rppa.png rename to src/main/resources/webapp/images/down-rppa.png diff --git a/portal/src/main/webapp/images/down1.png b/src/main/resources/webapp/images/down1.png similarity index 100% rename from portal/src/main/webapp/images/down1.png rename to src/main/resources/webapp/images/down1.png diff --git a/portal/src/main/webapp/images/down2-white.png b/src/main/resources/webapp/images/down2-white.png similarity index 100% rename from portal/src/main/webapp/images/down2-white.png rename to src/main/resources/webapp/images/down2-white.png diff --git a/portal/src/main/webapp/images/down2.png b/src/main/resources/webapp/images/down2.png similarity index 100% rename from portal/src/main/webapp/images/down2.png rename to src/main/resources/webapp/images/down2.png diff --git a/portal/src/main/webapp/images/download.gif b/src/main/resources/webapp/images/download.gif similarity index 100% rename from portal/src/main/webapp/images/download.gif rename to src/main/resources/webapp/images/download.gif diff --git a/portal/src/main/webapp/images/driver.png b/src/main/resources/webapp/images/driver.png similarity index 100% rename from portal/src/main/webapp/images/driver.png rename to src/main/resources/webapp/images/driver.png diff --git a/portal/src/main/webapp/images/driver_tiers.png b/src/main/resources/webapp/images/driver_tiers.png similarity index 100% rename from portal/src/main/webapp/images/driver_tiers.png rename to src/main/resources/webapp/images/driver_tiers.png diff --git a/portal/src/main/webapp/images/drug.png b/src/main/resources/webapp/images/drug.png similarity index 100% rename from portal/src/main/webapp/images/drug.png rename to src/main/resources/webapp/images/drug.png diff --git a/portal/src/main/webapp/images/example_oncoPrint_for_instructions_1.png b/src/main/resources/webapp/images/example_oncoPrint_for_instructions_1.png similarity index 100% rename from portal/src/main/webapp/images/example_oncoPrint_for_instructions_1.png rename to src/main/resources/webapp/images/example_oncoPrint_for_instructions_1.png diff --git a/portal/src/main/webapp/images/example_oncoPrint_for_instructions_2.png b/src/main/resources/webapp/images/example_oncoPrint_for_instructions_2.png similarity index 100% rename from portal/src/main/webapp/images/example_oncoPrint_for_instructions_2.png rename to src/main/resources/webapp/images/example_oncoPrint_for_instructions_2.png diff --git a/portal/src/main/webapp/images/expand.svg b/src/main/resources/webapp/images/expand.svg similarity index 100% rename from portal/src/main/webapp/images/expand.svg rename to src/main/resources/webapp/images/expand.svg diff --git a/portal/src/main/webapp/images/external-link-ltr-icon.png b/src/main/resources/webapp/images/external-link-ltr-icon.png similarity index 100% rename from portal/src/main/webapp/images/external-link-ltr-icon.png rename to src/main/resources/webapp/images/external-link-ltr-icon.png diff --git a/portal/src/main/webapp/images/favicon.ico b/src/main/resources/webapp/images/favicon.ico similarity index 100% rename from portal/src/main/webapp/images/favicon.ico rename to src/main/resources/webapp/images/favicon.ico diff --git a/portal/src/main/webapp/images/file.svg b/src/main/resources/webapp/images/file.svg similarity index 100% rename from portal/src/main/webapp/images/file.svg rename to src/main/resources/webapp/images/file.svg diff --git a/portal/src/main/webapp/images/fitalteredcases.svg b/src/main/resources/webapp/images/fitalteredcases.svg similarity index 98% rename from portal/src/main/webapp/images/fitalteredcases.svg rename to src/main/resources/webapp/images/fitalteredcases.svg index 429e6c48e8f..a7e0fe16816 100644 --- a/portal/src/main/webapp/images/fitalteredcases.svg +++ b/src/main/resources/webapp/images/fitalteredcases.svg @@ -1,12 +1,12 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/portal/src/main/webapp/images/forward_disabled.jpg b/src/main/resources/webapp/images/forward_disabled.jpg similarity index 100% rename from portal/src/main/webapp/images/forward_disabled.jpg rename to src/main/resources/webapp/images/forward_disabled.jpg diff --git a/portal/src/main/webapp/images/forward_enabled.jpg b/src/main/resources/webapp/images/forward_enabled.jpg similarity index 100% rename from portal/src/main/webapp/images/forward_enabled.jpg rename to src/main/resources/webapp/images/forward_enabled.jpg diff --git a/portal/src/main/webapp/images/gistic.png b/src/main/resources/webapp/images/gistic.png similarity index 100% rename from portal/src/main/webapp/images/gistic.png rename to src/main/resources/webapp/images/gistic.png diff --git a/portal/src/main/webapp/images/google_groups.png b/src/main/resources/webapp/images/google_groups.png similarity index 100% rename from portal/src/main/webapp/images/google_groups.png rename to src/main/resources/webapp/images/google_groups.png diff --git a/portal/src/main/webapp/images/header_bg_su2c.png b/src/main/resources/webapp/images/header_bg_su2c.png similarity index 100% rename from portal/src/main/webapp/images/header_bg_su2c.png rename to src/main/resources/webapp/images/header_bg_su2c.png diff --git a/portal/src/main/webapp/images/help.png b/src/main/resources/webapp/images/help.png similarity index 100% rename from portal/src/main/webapp/images/help.png rename to src/main/resources/webapp/images/help.png diff --git a/portal/src/main/webapp/images/help1.png b/src/main/resources/webapp/images/help1.png similarity index 100% rename from portal/src/main/webapp/images/help1.png rename to src/main/resources/webapp/images/help1.png diff --git a/portal/src/main/webapp/images/help2.png b/src/main/resources/webapp/images/help2.png similarity index 100% rename from portal/src/main/webapp/images/help2.png rename to src/main/resources/webapp/images/help2.png diff --git a/portal/src/main/webapp/images/help3.png b/src/main/resources/webapp/images/help3.png similarity index 100% rename from portal/src/main/webapp/images/help3.png rename to src/main/resources/webapp/images/help3.png diff --git a/portal/src/main/webapp/images/hidelegend.svg b/src/main/resources/webapp/images/hidelegend.svg similarity index 100% rename from portal/src/main/webapp/images/hidelegend.svg rename to src/main/resources/webapp/images/hidelegend.svg diff --git a/portal/src/main/webapp/images/icomoon-0140-enlarge2.svg b/src/main/resources/webapp/images/icomoon-0140-enlarge2.svg similarity index 100% rename from portal/src/main/webapp/images/icomoon-0140-enlarge2.svg rename to src/main/resources/webapp/images/icomoon-0140-enlarge2.svg diff --git a/portal/src/main/webapp/images/in.svg b/src/main/resources/webapp/images/in.svg similarity index 100% rename from portal/src/main/webapp/images/in.svg rename to src/main/resources/webapp/images/in.svg diff --git a/portal/src/main/webapp/images/increaseSort copy.svg b/src/main/resources/webapp/images/increaseSort copy.svg similarity index 100% rename from portal/src/main/webapp/images/increaseSort copy.svg rename to src/main/resources/webapp/images/increaseSort copy.svg diff --git a/portal/src/main/webapp/images/increaseSort.svg b/src/main/resources/webapp/images/increaseSort.svg similarity index 100% rename from portal/src/main/webapp/images/increaseSort.svg rename to src/main/resources/webapp/images/increaseSort.svg diff --git a/portal/src/main/webapp/images/info.png b/src/main/resources/webapp/images/info.png similarity index 100% rename from portal/src/main/webapp/images/info.png rename to src/main/resources/webapp/images/info.png diff --git a/portal/src/main/webapp/images/info.svg b/src/main/resources/webapp/images/info.svg similarity index 100% rename from portal/src/main/webapp/images/info.svg rename to src/main/resources/webapp/images/info.svg diff --git a/portal/src/main/webapp/images/institutes/AACR.png b/src/main/resources/webapp/images/institutes/AACR.png similarity index 100% rename from portal/src/main/webapp/images/institutes/AACR.png rename to src/main/resources/webapp/images/institutes/AACR.png diff --git a/portal/src/main/webapp/images/institutes/ACCRF.gif b/src/main/resources/webapp/images/institutes/ACCRF.gif similarity index 100% rename from portal/src/main/webapp/images/institutes/ACCRF.gif rename to src/main/resources/webapp/images/institutes/ACCRF.gif diff --git a/portal/src/main/webapp/images/institutes/BIDMC.gif b/src/main/resources/webapp/images/institutes/BIDMC.gif similarity index 100% rename from portal/src/main/webapp/images/institutes/BIDMC.gif rename to src/main/resources/webapp/images/institutes/BIDMC.gif diff --git a/portal/src/main/webapp/images/institutes/Broad.jpg b/src/main/resources/webapp/images/institutes/Broad.jpg similarity index 100% rename from portal/src/main/webapp/images/institutes/Broad.jpg rename to src/main/resources/webapp/images/institutes/Broad.jpg diff --git a/portal/src/main/webapp/images/institutes/DFCI.gif b/src/main/resources/webapp/images/institutes/DFCI.gif similarity index 100% rename from portal/src/main/webapp/images/institutes/DFCI.gif rename to src/main/resources/webapp/images/institutes/DFCI.gif diff --git a/portal/src/main/webapp/images/institutes/GENIE.png b/src/main/resources/webapp/images/institutes/GENIE.png similarity index 100% rename from portal/src/main/webapp/images/institutes/GENIE.png rename to src/main/resources/webapp/images/institutes/GENIE.png diff --git a/portal/src/main/webapp/images/institutes/GRAIL.png b/src/main/resources/webapp/images/institutes/GRAIL.png similarity index 100% rename from portal/src/main/webapp/images/institutes/GRAIL.png rename to src/main/resources/webapp/images/institutes/GRAIL.png diff --git a/portal/src/main/webapp/images/institutes/ICR.jpg b/src/main/resources/webapp/images/institutes/ICR.jpg similarity index 100% rename from portal/src/main/webapp/images/institutes/ICR.jpg rename to src/main/resources/webapp/images/institutes/ICR.jpg diff --git a/portal/src/main/webapp/images/institutes/IVY.jpg b/src/main/resources/webapp/images/institutes/IVY.jpg similarity index 100% rename from portal/src/main/webapp/images/institutes/IVY.jpg rename to src/main/resources/webapp/images/institutes/IVY.jpg diff --git a/portal/src/main/webapp/images/institutes/MSKCC.jpg b/src/main/resources/webapp/images/institutes/MSKCC.jpg similarity index 100% rename from portal/src/main/webapp/images/institutes/MSKCC.jpg rename to src/main/resources/webapp/images/institutes/MSKCC.jpg diff --git a/portal/src/main/webapp/images/institutes/PDX_BCRF.png b/src/main/resources/webapp/images/institutes/PDX_BCRF.png similarity index 100% rename from portal/src/main/webapp/images/institutes/PDX_BCRF.png rename to src/main/resources/webapp/images/institutes/PDX_BCRF.png diff --git a/portal/src/main/webapp/images/institutes/RM.png b/src/main/resources/webapp/images/institutes/RM.png similarity index 100% rename from portal/src/main/webapp/images/institutes/RM.png rename to src/main/resources/webapp/images/institutes/RM.png diff --git a/portal/src/main/webapp/images/institutes/UM.jpg b/src/main/resources/webapp/images/institutes/UM.jpg similarity index 100% rename from portal/src/main/webapp/images/institutes/UM.jpg rename to src/main/resources/webapp/images/institutes/UM.jpg diff --git a/portal/src/main/webapp/images/institutes/UW.jpg b/src/main/resources/webapp/images/institutes/UW.jpg similarity index 100% rename from portal/src/main/webapp/images/institutes/UW.jpg rename to src/main/resources/webapp/images/institutes/UW.jpg diff --git a/portal/src/main/webapp/images/institutes/WC.jpg b/src/main/resources/webapp/images/institutes/WC.jpg similarity index 100% rename from portal/src/main/webapp/images/institutes/WC.jpg rename to src/main/resources/webapp/images/institutes/WC.jpg diff --git a/portal/src/main/webapp/images/jmol.png b/src/main/resources/webapp/images/jmol.png similarity index 100% rename from portal/src/main/webapp/images/jmol.png rename to src/main/resources/webapp/images/jmol.png diff --git a/portal/src/main/webapp/images/legend.png b/src/main/resources/webapp/images/legend.png similarity index 100% rename from portal/src/main/webapp/images/legend.png rename to src/main/resources/webapp/images/legend.png diff --git a/portal/src/main/webapp/images/levels_colors_v2_09302016.png b/src/main/resources/webapp/images/levels_colors_v2_09302016.png similarity index 100% rename from portal/src/main/webapp/images/levels_colors_v2_09302016.png rename to src/main/resources/webapp/images/levels_colors_v2_09302016.png diff --git a/portal/src/main/webapp/images/loader.gif b/src/main/resources/webapp/images/loader.gif similarity index 100% rename from portal/src/main/webapp/images/loader.gif rename to src/main/resources/webapp/images/loader.gif diff --git a/portal/src/main/webapp/images/login/googleplus_signin.png b/src/main/resources/webapp/images/login/googleplus_signin.png similarity index 100% rename from portal/src/main/webapp/images/login/googleplus_signin.png rename to src/main/resources/webapp/images/login/googleplus_signin.png diff --git a/portal/src/main/webapp/images/login/images.large/aol.gif b/src/main/resources/webapp/images/login/images.large/aol.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/aol.gif rename to src/main/resources/webapp/images/login/images.large/aol.gif diff --git a/portal/src/main/webapp/images/login/images.large/facebook.gif b/src/main/resources/webapp/images/login/images.large/facebook.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/facebook.gif rename to src/main/resources/webapp/images/login/images.large/facebook.gif diff --git a/portal/src/main/webapp/images/login/images.large/google.gif b/src/main/resources/webapp/images/login/images.large/google.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/google.gif rename to src/main/resources/webapp/images/login/images.large/google.gif diff --git a/portal/src/main/webapp/images/login/images.large/google_dna.gif b/src/main/resources/webapp/images/login/images.large/google_dna.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/google_dna.gif rename to src/main/resources/webapp/images/login/images.large/google_dna.gif diff --git a/portal/src/main/webapp/images/login/images.large/googleplus_button.png b/src/main/resources/webapp/images/login/images.large/googleplus_button.png similarity index 100% rename from portal/src/main/webapp/images/login/images.large/googleplus_button.png rename to src/main/resources/webapp/images/login/images.large/googleplus_button.png diff --git a/portal/src/main/webapp/images/login/images.large/mailru.gif b/src/main/resources/webapp/images/login/images.large/mailru.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/mailru.gif rename to src/main/resources/webapp/images/login/images.large/mailru.gif diff --git a/portal/src/main/webapp/images/login/images.large/myopenid.gif b/src/main/resources/webapp/images/login/images.large/myopenid.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/myopenid.gif rename to src/main/resources/webapp/images/login/images.large/myopenid.gif diff --git a/portal/src/main/webapp/images/login/images.large/openid.gif b/src/main/resources/webapp/images/login/images.large/openid.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/openid.gif rename to src/main/resources/webapp/images/login/images.large/openid.gif diff --git a/portal/src/main/webapp/images/login/images.large/rambler.gif b/src/main/resources/webapp/images/login/images.large/rambler.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/rambler.gif rename to src/main/resources/webapp/images/login/images.large/rambler.gif diff --git a/portal/src/main/webapp/images/login/images.large/verisign.gif b/src/main/resources/webapp/images/login/images.large/verisign.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/verisign.gif rename to src/main/resources/webapp/images/login/images.large/verisign.gif diff --git a/portal/src/main/webapp/images/login/images.large/vkontakte.gif b/src/main/resources/webapp/images/login/images.large/vkontakte.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/vkontakte.gif rename to src/main/resources/webapp/images/login/images.large/vkontakte.gif diff --git a/portal/src/main/webapp/images/login/images.large/yahoo.gif b/src/main/resources/webapp/images/login/images.large/yahoo.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/yahoo.gif rename to src/main/resources/webapp/images/login/images.large/yahoo.gif diff --git a/portal/src/main/webapp/images/login/images.large/yandex.gif b/src/main/resources/webapp/images/login/images.large/yandex.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.large/yandex.gif rename to src/main/resources/webapp/images/login/images.large/yandex.gif diff --git a/portal/src/main/webapp/images/login/images.small/aol.ico b/src/main/resources/webapp/images/login/images.small/aol.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/aol.ico rename to src/main/resources/webapp/images/login/images.small/aol.ico diff --git a/portal/src/main/webapp/images/login/images.small/aol.ico.gif b/src/main/resources/webapp/images/login/images.small/aol.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/aol.ico.gif rename to src/main/resources/webapp/images/login/images.small/aol.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/aol.ico.png b/src/main/resources/webapp/images/login/images.small/aol.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/aol.ico.png rename to src/main/resources/webapp/images/login/images.small/aol.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/blogger.ico b/src/main/resources/webapp/images/login/images.small/blogger.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/blogger.ico rename to src/main/resources/webapp/images/login/images.small/blogger.ico diff --git a/portal/src/main/webapp/images/login/images.small/blogger.ico.gif b/src/main/resources/webapp/images/login/images.small/blogger.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/blogger.ico.gif rename to src/main/resources/webapp/images/login/images.small/blogger.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/blogger.ico.png b/src/main/resources/webapp/images/login/images.small/blogger.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/blogger.ico.png rename to src/main/resources/webapp/images/login/images.small/blogger.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/claimid.ico b/src/main/resources/webapp/images/login/images.small/claimid.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/claimid.ico rename to src/main/resources/webapp/images/login/images.small/claimid.ico diff --git a/portal/src/main/webapp/images/login/images.small/claimid.ico.gif b/src/main/resources/webapp/images/login/images.small/claimid.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/claimid.ico.gif rename to src/main/resources/webapp/images/login/images.small/claimid.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/claimid.ico.png b/src/main/resources/webapp/images/login/images.small/claimid.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/claimid.ico.png rename to src/main/resources/webapp/images/login/images.small/claimid.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/clickpass.ico b/src/main/resources/webapp/images/login/images.small/clickpass.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/clickpass.ico rename to src/main/resources/webapp/images/login/images.small/clickpass.ico diff --git a/portal/src/main/webapp/images/login/images.small/clickpass.ico.gif b/src/main/resources/webapp/images/login/images.small/clickpass.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/clickpass.ico.gif rename to src/main/resources/webapp/images/login/images.small/clickpass.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/clickpass.ico.png b/src/main/resources/webapp/images/login/images.small/clickpass.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/clickpass.ico.png rename to src/main/resources/webapp/images/login/images.small/clickpass.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/facebook.ico b/src/main/resources/webapp/images/login/images.small/facebook.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/facebook.ico rename to src/main/resources/webapp/images/login/images.small/facebook.ico diff --git a/portal/src/main/webapp/images/login/images.small/facebook.ico.gif b/src/main/resources/webapp/images/login/images.small/facebook.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/facebook.ico.gif rename to src/main/resources/webapp/images/login/images.small/facebook.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/facebook.ico.png b/src/main/resources/webapp/images/login/images.small/facebook.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/facebook.ico.png rename to src/main/resources/webapp/images/login/images.small/facebook.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/flickr.ico b/src/main/resources/webapp/images/login/images.small/flickr.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/flickr.ico rename to src/main/resources/webapp/images/login/images.small/flickr.ico diff --git a/portal/src/main/webapp/images/login/images.small/flickr.ico.gif b/src/main/resources/webapp/images/login/images.small/flickr.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/flickr.ico.gif rename to src/main/resources/webapp/images/login/images.small/flickr.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/flickr.ico.png b/src/main/resources/webapp/images/login/images.small/flickr.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/flickr.ico.png rename to src/main/resources/webapp/images/login/images.small/flickr.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/google.ico b/src/main/resources/webapp/images/login/images.small/google.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/google.ico rename to src/main/resources/webapp/images/login/images.small/google.ico diff --git a/portal/src/main/webapp/images/login/images.small/google.ico.gif b/src/main/resources/webapp/images/login/images.small/google.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/google.ico.gif rename to src/main/resources/webapp/images/login/images.small/google.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/google.ico.png b/src/main/resources/webapp/images/login/images.small/google.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/google.ico.png rename to src/main/resources/webapp/images/login/images.small/google.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/google_profile.ico b/src/main/resources/webapp/images/login/images.small/google_profile.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/google_profile.ico rename to src/main/resources/webapp/images/login/images.small/google_profile.ico diff --git a/portal/src/main/webapp/images/login/images.small/google_profile.ico.gif b/src/main/resources/webapp/images/login/images.small/google_profile.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/google_profile.ico.gif rename to src/main/resources/webapp/images/login/images.small/google_profile.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/google_profile.ico.png b/src/main/resources/webapp/images/login/images.small/google_profile.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/google_profile.ico.png rename to src/main/resources/webapp/images/login/images.small/google_profile.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/launchpad.ico b/src/main/resources/webapp/images/login/images.small/launchpad.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/launchpad.ico rename to src/main/resources/webapp/images/login/images.small/launchpad.ico diff --git a/portal/src/main/webapp/images/login/images.small/launchpad.ico.gif b/src/main/resources/webapp/images/login/images.small/launchpad.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/launchpad.ico.gif rename to src/main/resources/webapp/images/login/images.small/launchpad.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/launchpad.ico.png b/src/main/resources/webapp/images/login/images.small/launchpad.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/launchpad.ico.png rename to src/main/resources/webapp/images/login/images.small/launchpad.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/linkedin.ico b/src/main/resources/webapp/images/login/images.small/linkedin.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/linkedin.ico rename to src/main/resources/webapp/images/login/images.small/linkedin.ico diff --git a/portal/src/main/webapp/images/login/images.small/linkedin.ico.gif b/src/main/resources/webapp/images/login/images.small/linkedin.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/linkedin.ico.gif rename to src/main/resources/webapp/images/login/images.small/linkedin.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/linkedin.ico.png b/src/main/resources/webapp/images/login/images.small/linkedin.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/linkedin.ico.png rename to src/main/resources/webapp/images/login/images.small/linkedin.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/livejournal.ico b/src/main/resources/webapp/images/login/images.small/livejournal.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/livejournal.ico rename to src/main/resources/webapp/images/login/images.small/livejournal.ico diff --git a/portal/src/main/webapp/images/login/images.small/livejournal.ico.gif b/src/main/resources/webapp/images/login/images.small/livejournal.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/livejournal.ico.gif rename to src/main/resources/webapp/images/login/images.small/livejournal.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/livejournal.ico.png b/src/main/resources/webapp/images/login/images.small/livejournal.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/livejournal.ico.png rename to src/main/resources/webapp/images/login/images.small/livejournal.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/mailru.ico b/src/main/resources/webapp/images/login/images.small/mailru.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/mailru.ico rename to src/main/resources/webapp/images/login/images.small/mailru.ico diff --git a/portal/src/main/webapp/images/login/images.small/mailru.ico.gif b/src/main/resources/webapp/images/login/images.small/mailru.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/mailru.ico.gif rename to src/main/resources/webapp/images/login/images.small/mailru.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/mailru.ico.png b/src/main/resources/webapp/images/login/images.small/mailru.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/mailru.ico.png rename to src/main/resources/webapp/images/login/images.small/mailru.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/myopenid.ico b/src/main/resources/webapp/images/login/images.small/myopenid.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/myopenid.ico rename to src/main/resources/webapp/images/login/images.small/myopenid.ico diff --git a/portal/src/main/webapp/images/login/images.small/myopenid.ico.gif b/src/main/resources/webapp/images/login/images.small/myopenid.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/myopenid.ico.gif rename to src/main/resources/webapp/images/login/images.small/myopenid.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/myopenid.ico.png b/src/main/resources/webapp/images/login/images.small/myopenid.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/myopenid.ico.png rename to src/main/resources/webapp/images/login/images.small/myopenid.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/openid.ico b/src/main/resources/webapp/images/login/images.small/openid.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/openid.ico rename to src/main/resources/webapp/images/login/images.small/openid.ico diff --git a/portal/src/main/webapp/images/login/images.small/openid.ico.gif b/src/main/resources/webapp/images/login/images.small/openid.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/openid.ico.gif rename to src/main/resources/webapp/images/login/images.small/openid.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/openid.ico.png b/src/main/resources/webapp/images/login/images.small/openid.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/openid.ico.png rename to src/main/resources/webapp/images/login/images.small/openid.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/rambler.ico b/src/main/resources/webapp/images/login/images.small/rambler.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/rambler.ico rename to src/main/resources/webapp/images/login/images.small/rambler.ico diff --git a/portal/src/main/webapp/images/login/images.small/rambler.ico.gif b/src/main/resources/webapp/images/login/images.small/rambler.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/rambler.ico.gif rename to src/main/resources/webapp/images/login/images.small/rambler.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/rambler.ico.png b/src/main/resources/webapp/images/login/images.small/rambler.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/rambler.ico.png rename to src/main/resources/webapp/images/login/images.small/rambler.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/technorati.ico b/src/main/resources/webapp/images/login/images.small/technorati.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/technorati.ico rename to src/main/resources/webapp/images/login/images.small/technorati.ico diff --git a/portal/src/main/webapp/images/login/images.small/technorati.ico.gif b/src/main/resources/webapp/images/login/images.small/technorati.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/technorati.ico.gif rename to src/main/resources/webapp/images/login/images.small/technorati.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/technorati.ico.png b/src/main/resources/webapp/images/login/images.small/technorati.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/technorati.ico.png rename to src/main/resources/webapp/images/login/images.small/technorati.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/twitter.ico b/src/main/resources/webapp/images/login/images.small/twitter.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/twitter.ico rename to src/main/resources/webapp/images/login/images.small/twitter.ico diff --git a/portal/src/main/webapp/images/login/images.small/twitter.ico.gif b/src/main/resources/webapp/images/login/images.small/twitter.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/twitter.ico.gif rename to src/main/resources/webapp/images/login/images.small/twitter.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/twitter.ico.png b/src/main/resources/webapp/images/login/images.small/twitter.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/twitter.ico.png rename to src/main/resources/webapp/images/login/images.small/twitter.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/verisign.ico b/src/main/resources/webapp/images/login/images.small/verisign.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/verisign.ico rename to src/main/resources/webapp/images/login/images.small/verisign.ico diff --git a/portal/src/main/webapp/images/login/images.small/verisign.ico.gif b/src/main/resources/webapp/images/login/images.small/verisign.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/verisign.ico.gif rename to src/main/resources/webapp/images/login/images.small/verisign.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/verisign.ico.png b/src/main/resources/webapp/images/login/images.small/verisign.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/verisign.ico.png rename to src/main/resources/webapp/images/login/images.small/verisign.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/vidoop.ico b/src/main/resources/webapp/images/login/images.small/vidoop.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/vidoop.ico rename to src/main/resources/webapp/images/login/images.small/vidoop.ico diff --git a/portal/src/main/webapp/images/login/images.small/vidoop.ico.gif b/src/main/resources/webapp/images/login/images.small/vidoop.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/vidoop.ico.gif rename to src/main/resources/webapp/images/login/images.small/vidoop.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/vidoop.ico.png b/src/main/resources/webapp/images/login/images.small/vidoop.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/vidoop.ico.png rename to src/main/resources/webapp/images/login/images.small/vidoop.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/vkontakte.ico b/src/main/resources/webapp/images/login/images.small/vkontakte.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/vkontakte.ico rename to src/main/resources/webapp/images/login/images.small/vkontakte.ico diff --git a/portal/src/main/webapp/images/login/images.small/vkontakte.ico.gif b/src/main/resources/webapp/images/login/images.small/vkontakte.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/vkontakte.ico.gif rename to src/main/resources/webapp/images/login/images.small/vkontakte.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/vkontakte.ico.png b/src/main/resources/webapp/images/login/images.small/vkontakte.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/vkontakte.ico.png rename to src/main/resources/webapp/images/login/images.small/vkontakte.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/winliveid.ico b/src/main/resources/webapp/images/login/images.small/winliveid.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/winliveid.ico rename to src/main/resources/webapp/images/login/images.small/winliveid.ico diff --git a/portal/src/main/webapp/images/login/images.small/winliveid.ico.gif b/src/main/resources/webapp/images/login/images.small/winliveid.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/winliveid.ico.gif rename to src/main/resources/webapp/images/login/images.small/winliveid.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/winliveid.ico.png b/src/main/resources/webapp/images/login/images.small/winliveid.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/winliveid.ico.png rename to src/main/resources/webapp/images/login/images.small/winliveid.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/wordpress.ico b/src/main/resources/webapp/images/login/images.small/wordpress.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/wordpress.ico rename to src/main/resources/webapp/images/login/images.small/wordpress.ico diff --git a/portal/src/main/webapp/images/login/images.small/wordpress.ico.gif b/src/main/resources/webapp/images/login/images.small/wordpress.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/wordpress.ico.gif rename to src/main/resources/webapp/images/login/images.small/wordpress.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/wordpress.ico.png b/src/main/resources/webapp/images/login/images.small/wordpress.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/wordpress.ico.png rename to src/main/resources/webapp/images/login/images.small/wordpress.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/yahoo.ico b/src/main/resources/webapp/images/login/images.small/yahoo.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/yahoo.ico rename to src/main/resources/webapp/images/login/images.small/yahoo.ico diff --git a/portal/src/main/webapp/images/login/images.small/yahoo.ico.gif b/src/main/resources/webapp/images/login/images.small/yahoo.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/yahoo.ico.gif rename to src/main/resources/webapp/images/login/images.small/yahoo.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/yahoo.ico.png b/src/main/resources/webapp/images/login/images.small/yahoo.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/yahoo.ico.png rename to src/main/resources/webapp/images/login/images.small/yahoo.ico.png diff --git a/portal/src/main/webapp/images/login/images.small/yandex.ico b/src/main/resources/webapp/images/login/images.small/yandex.ico similarity index 100% rename from portal/src/main/webapp/images/login/images.small/yandex.ico rename to src/main/resources/webapp/images/login/images.small/yandex.ico diff --git a/portal/src/main/webapp/images/login/images.small/yandex.ico.gif b/src/main/resources/webapp/images/login/images.small/yandex.ico.gif similarity index 100% rename from portal/src/main/webapp/images/login/images.small/yandex.ico.gif rename to src/main/resources/webapp/images/login/images.small/yandex.ico.gif diff --git a/portal/src/main/webapp/images/login/images.small/yandex.ico.png b/src/main/resources/webapp/images/login/images.small/yandex.ico.png similarity index 100% rename from portal/src/main/webapp/images/login/images.small/yandex.ico.png rename to src/main/resources/webapp/images/login/images.small/yandex.ico.png diff --git a/portal/src/main/webapp/images/login/images/openid-inputicon.gif b/src/main/resources/webapp/images/login/images/openid-inputicon.gif similarity index 100% rename from portal/src/main/webapp/images/login/images/openid-inputicon.gif rename to src/main/resources/webapp/images/login/images/openid-inputicon.gif diff --git a/portal/src/main/webapp/images/login/images/openid-providers-en.png b/src/main/resources/webapp/images/login/images/openid-providers-en.png similarity index 100% rename from portal/src/main/webapp/images/login/images/openid-providers-en.png rename to src/main/resources/webapp/images/login/images/openid-providers-en.png diff --git a/portal/src/main/webapp/images/login/microsoft_signin.png b/src/main/resources/webapp/images/login/microsoft_signin.png similarity index 100% rename from portal/src/main/webapp/images/login/microsoft_signin.png rename to src/main/resources/webapp/images/login/microsoft_signin.png diff --git a/portal/src/main/webapp/images/lollipop_example.png b/src/main/resources/webapp/images/lollipop_example.png similarity index 100% rename from portal/src/main/webapp/images/lollipop_example.png rename to src/main/resources/webapp/images/lollipop_example.png diff --git a/portal/src/main/webapp/images/ma.png b/src/main/resources/webapp/images/ma.png similarity index 100% rename from portal/src/main/webapp/images/ma.png rename to src/main/resources/webapp/images/ma.png diff --git a/portal/src/main/webapp/images/mcg_logo.png b/src/main/resources/webapp/images/mcg_logo.png similarity index 100% rename from portal/src/main/webapp/images/mcg_logo.png rename to src/main/resources/webapp/images/mcg_logo.png diff --git a/portal/src/main/webapp/images/menu-icomoon.svg b/src/main/resources/webapp/images/menu-icomoon.svg similarity index 100% rename from portal/src/main/webapp/images/menu-icomoon.svg rename to src/main/resources/webapp/images/menu-icomoon.svg diff --git a/portal/src/main/webapp/images/menu.svg b/src/main/resources/webapp/images/menu.svg similarity index 100% rename from portal/src/main/webapp/images/menu.svg rename to src/main/resources/webapp/images/menu.svg diff --git a/portal/src/main/webapp/images/menudots.svg b/src/main/resources/webapp/images/menudots.svg similarity index 98% rename from portal/src/main/webapp/images/menudots.svg rename to src/main/resources/webapp/images/menudots.svg index 45c55e2c1de..6cc0544bfa8 100644 --- a/portal/src/main/webapp/images/menudots.svg +++ b/src/main/resources/webapp/images/menudots.svg @@ -1,9 +1,9 @@ - - - - - - - - + + + + + + + + diff --git a/portal/src/main/webapp/images/more_12px.jpg b/src/main/resources/webapp/images/more_12px.jpg similarity index 100% rename from portal/src/main/webapp/images/more_12px.jpg rename to src/main/resources/webapp/images/more_12px.jpg diff --git a/portal/src/main/webapp/images/move.svg b/src/main/resources/webapp/images/move.svg similarity index 100% rename from portal/src/main/webapp/images/move.svg rename to src/main/resources/webapp/images/move.svg diff --git a/portal/src/main/webapp/images/msa.png b/src/main/resources/webapp/images/msa.png similarity index 100% rename from portal/src/main/webapp/images/msa.png rename to src/main/resources/webapp/images/msa.png diff --git a/portal/src/main/webapp/images/msk_logo.png b/src/main/resources/webapp/images/msk_logo.png similarity index 100% rename from portal/src/main/webapp/images/msk_logo.png rename to src/main/resources/webapp/images/msk_logo.png diff --git a/portal/src/main/webapp/images/msk_logo_old.png b/src/main/resources/webapp/images/msk_logo_old.png similarity index 100% rename from portal/src/main/webapp/images/msk_logo_old.png rename to src/main/resources/webapp/images/msk_logo_old.png diff --git a/portal/src/main/webapp/images/msk_logo_transparent_black.png b/src/main/resources/webapp/images/msk_logo_transparent_black.png similarity index 100% rename from portal/src/main/webapp/images/msk_logo_transparent_black.png rename to src/main/resources/webapp/images/msk_logo_transparent_black.png diff --git a/portal/src/main/webapp/images/mskcc_logo_3d_grey.jpg b/src/main/resources/webapp/images/mskcc_logo_3d_grey.jpg similarity index 100% rename from portal/src/main/webapp/images/mskcc_logo_3d_grey.jpg rename to src/main/resources/webapp/images/mskcc_logo_3d_grey.jpg diff --git a/portal/src/main/webapp/images/mutationcolorsort.svg b/src/main/resources/webapp/images/mutationcolorsort.svg similarity index 100% rename from portal/src/main/webapp/images/mutationcolorsort.svg rename to src/main/resources/webapp/images/mutationcolorsort.svg diff --git a/portal/src/main/webapp/images/mutsig.png b/src/main/resources/webapp/images/mutsig.png similarity index 100% rename from portal/src/main/webapp/images/mutsig.png rename to src/main/resources/webapp/images/mutsig.png diff --git a/portal/src/main/webapp/images/na_status.gif b/src/main/resources/webapp/images/na_status.gif similarity index 100% rename from portal/src/main/webapp/images/na_status.gif rename to src/main/resources/webapp/images/na_status.gif diff --git a/portal/src/main/webapp/images/network/altered_node.png b/src/main/resources/webapp/images/network/altered_node.png similarity index 100% rename from portal/src/main/webapp/images/network/altered_node.png rename to src/main/resources/webapp/images/network/altered_node.png diff --git a/portal/src/main/webapp/images/network/drug_legend.png b/src/main/resources/webapp/images/network/drug_legend.png similarity index 100% rename from portal/src/main/webapp/images/network/drug_legend.png rename to src/main/resources/webapp/images/network/drug_legend.png diff --git a/portal/src/main/webapp/images/network/gene_legend.png b/src/main/resources/webapp/images/network/gene_legend.png similarity index 100% rename from portal/src/main/webapp/images/network/gene_legend.png rename to src/main/resources/webapp/images/network/gene_legend.png diff --git a/portal/src/main/webapp/images/network/gene_legend.svg b/src/main/resources/webapp/images/network/gene_legend.svg similarity index 100% rename from portal/src/main/webapp/images/network/gene_legend.svg rename to src/main/resources/webapp/images/network/gene_legend.svg diff --git a/portal/src/main/webapp/images/network/interaction_legend.png b/src/main/resources/webapp/images/network/interaction_legend.png similarity index 100% rename from portal/src/main/webapp/images/network/interaction_legend.png rename to src/main/resources/webapp/images/network/interaction_legend.png diff --git a/portal/src/main/webapp/images/network/linker_node.png b/src/main/resources/webapp/images/network/linker_node.png similarity index 100% rename from portal/src/main/webapp/images/network/linker_node.png rename to src/main/resources/webapp/images/network/linker_node.png diff --git a/portal/src/main/webapp/images/network/not_altered_node.png b/src/main/resources/webapp/images/network/not_altered_node.png similarity index 100% rename from portal/src/main/webapp/images/network/not_altered_node.png rename to src/main/resources/webapp/images/network/not_altered_node.png diff --git a/portal/src/main/webapp/images/network/seed_node.png b/src/main/resources/webapp/images/network/seed_node.png similarity index 100% rename from portal/src/main/webapp/images/network/seed_node.png rename to src/main/resources/webapp/images/network/seed_node.png diff --git a/portal/src/main/webapp/images/new.png b/src/main/resources/webapp/images/new.png similarity index 100% rename from portal/src/main/webapp/images/new.png rename to src/main/resources/webapp/images/new.png diff --git a/portal/src/main/webapp/images/next_button.gif b/src/main/resources/webapp/images/next_button.gif similarity index 100% rename from portal/src/main/webapp/images/next_button.gif rename to src/main/resources/webapp/images/next_button.gif diff --git a/portal/src/main/webapp/images/nonSort.svg b/src/main/resources/webapp/images/nonSort.svg similarity index 100% rename from portal/src/main/webapp/images/nonSort.svg rename to src/main/resources/webapp/images/nonSort.svg diff --git a/portal/src/main/webapp/images/oncoPrint/Gained-downRegulated-mutated.png b/src/main/resources/webapp/images/oncoPrint/Gained-downRegulated-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/Gained-downRegulated-mutated.png rename to src/main/resources/webapp/images/oncoPrint/Gained-downRegulated-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/Gained-downRegulated-normal.png b/src/main/resources/webapp/images/oncoPrint/Gained-downRegulated-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/Gained-downRegulated-normal.png rename to src/main/resources/webapp/images/oncoPrint/Gained-downRegulated-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/Gained-notShown-mutated.png b/src/main/resources/webapp/images/oncoPrint/Gained-notShown-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/Gained-notShown-mutated.png rename to src/main/resources/webapp/images/oncoPrint/Gained-notShown-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/Gained-notShown-normal.png b/src/main/resources/webapp/images/oncoPrint/Gained-notShown-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/Gained-notShown-normal.png rename to src/main/resources/webapp/images/oncoPrint/Gained-notShown-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/Gained-upRegulated-mutated.png b/src/main/resources/webapp/images/oncoPrint/Gained-upRegulated-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/Gained-upRegulated-mutated.png rename to src/main/resources/webapp/images/oncoPrint/Gained-upRegulated-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/Gained-upRegulated-normal.png b/src/main/resources/webapp/images/oncoPrint/Gained-upRegulated-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/Gained-upRegulated-normal.png rename to src/main/resources/webapp/images/oncoPrint/Gained-upRegulated-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-downRegulated-mutated.png b/src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-downRegulated-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-downRegulated-mutated.png rename to src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-downRegulated-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-downRegulated-normal.png b/src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-downRegulated-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-downRegulated-normal.png rename to src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-downRegulated-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-notShown-mutated.png b/src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-notShown-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-notShown-mutated.png rename to src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-notShown-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-notShown-normal.png b/src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-notShown-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-notShown-normal.png rename to src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-notShown-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-upRegulated-mutated.png b/src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-upRegulated-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-upRegulated-mutated.png rename to src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-upRegulated-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-upRegulated-normal.png b/src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-upRegulated-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/HemizygouslyDeleted-upRegulated-normal.png rename to src/main/resources/webapp/images/oncoPrint/HemizygouslyDeleted-upRegulated-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/amplified-downRegulated-mutated.png b/src/main/resources/webapp/images/oncoPrint/amplified-downRegulated-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/amplified-downRegulated-mutated.png rename to src/main/resources/webapp/images/oncoPrint/amplified-downRegulated-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/amplified-downRegulated-normal.png b/src/main/resources/webapp/images/oncoPrint/amplified-downRegulated-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/amplified-downRegulated-normal.png rename to src/main/resources/webapp/images/oncoPrint/amplified-downRegulated-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/amplified-notShown-mutated.png b/src/main/resources/webapp/images/oncoPrint/amplified-notShown-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/amplified-notShown-mutated.png rename to src/main/resources/webapp/images/oncoPrint/amplified-notShown-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/amplified-notShown-normal.png b/src/main/resources/webapp/images/oncoPrint/amplified-notShown-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/amplified-notShown-normal.png rename to src/main/resources/webapp/images/oncoPrint/amplified-notShown-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/amplified-upRegulated-mutated.png b/src/main/resources/webapp/images/oncoPrint/amplified-upRegulated-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/amplified-upRegulated-mutated.png rename to src/main/resources/webapp/images/oncoPrint/amplified-upRegulated-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/amplified-upRegulated-normal.png b/src/main/resources/webapp/images/oncoPrint/amplified-upRegulated-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/amplified-upRegulated-normal.png rename to src/main/resources/webapp/images/oncoPrint/amplified-upRegulated-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/diploid-downRegulated-mutated.png b/src/main/resources/webapp/images/oncoPrint/diploid-downRegulated-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/diploid-downRegulated-mutated.png rename to src/main/resources/webapp/images/oncoPrint/diploid-downRegulated-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/diploid-downRegulated-normal.png b/src/main/resources/webapp/images/oncoPrint/diploid-downRegulated-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/diploid-downRegulated-normal.png rename to src/main/resources/webapp/images/oncoPrint/diploid-downRegulated-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/diploid-notShown-mutated.png b/src/main/resources/webapp/images/oncoPrint/diploid-notShown-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/diploid-notShown-mutated.png rename to src/main/resources/webapp/images/oncoPrint/diploid-notShown-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/diploid-notShown-normal.png b/src/main/resources/webapp/images/oncoPrint/diploid-notShown-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/diploid-notShown-normal.png rename to src/main/resources/webapp/images/oncoPrint/diploid-notShown-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/diploid-upRegulated-mutated.png b/src/main/resources/webapp/images/oncoPrint/diploid-upRegulated-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/diploid-upRegulated-mutated.png rename to src/main/resources/webapp/images/oncoPrint/diploid-upRegulated-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/diploid-upRegulated-normal.png b/src/main/resources/webapp/images/oncoPrint/diploid-upRegulated-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/diploid-upRegulated-normal.png rename to src/main/resources/webapp/images/oncoPrint/diploid-upRegulated-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/homoDeleted-downRegulated-mutated.png b/src/main/resources/webapp/images/oncoPrint/homoDeleted-downRegulated-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/homoDeleted-downRegulated-mutated.png rename to src/main/resources/webapp/images/oncoPrint/homoDeleted-downRegulated-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/homoDeleted-downRegulated-normal.png b/src/main/resources/webapp/images/oncoPrint/homoDeleted-downRegulated-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/homoDeleted-downRegulated-normal.png rename to src/main/resources/webapp/images/oncoPrint/homoDeleted-downRegulated-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/homoDeleted-notShown-mutated.png b/src/main/resources/webapp/images/oncoPrint/homoDeleted-notShown-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/homoDeleted-notShown-mutated.png rename to src/main/resources/webapp/images/oncoPrint/homoDeleted-notShown-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/homoDeleted-notShown-normal.png b/src/main/resources/webapp/images/oncoPrint/homoDeleted-notShown-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/homoDeleted-notShown-normal.png rename to src/main/resources/webapp/images/oncoPrint/homoDeleted-notShown-normal.png diff --git a/portal/src/main/webapp/images/oncoPrint/homoDeleted-upRegulated-mutated.png b/src/main/resources/webapp/images/oncoPrint/homoDeleted-upRegulated-mutated.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/homoDeleted-upRegulated-mutated.png rename to src/main/resources/webapp/images/oncoPrint/homoDeleted-upRegulated-mutated.png diff --git a/portal/src/main/webapp/images/oncoPrint/homoDeleted-upRegulated-normal.png b/src/main/resources/webapp/images/oncoPrint/homoDeleted-upRegulated-normal.png similarity index 100% rename from portal/src/main/webapp/images/oncoPrint/homoDeleted-upRegulated-normal.png rename to src/main/resources/webapp/images/oncoPrint/homoDeleted-upRegulated-normal.png diff --git a/portal/src/main/webapp/images/oncogenic_v2_09302016.png b/src/main/resources/webapp/images/oncogenic_v2_09302016.png similarity index 100% rename from portal/src/main/webapp/images/oncogenic_v2_09302016.png rename to src/main/resources/webapp/images/oncogenic_v2_09302016.png diff --git a/portal/src/main/webapp/images/oncokb-oncogenic-1.svg b/src/main/resources/webapp/images/oncokb-oncogenic-1.svg similarity index 100% rename from portal/src/main/webapp/images/oncokb-oncogenic-1.svg rename to src/main/resources/webapp/images/oncokb-oncogenic-1.svg diff --git a/portal/src/main/webapp/images/oncokb-oncogenic-2.svg b/src/main/resources/webapp/images/oncokb-oncogenic-2.svg similarity index 100% rename from portal/src/main/webapp/images/oncokb-oncogenic-2.svg rename to src/main/resources/webapp/images/oncokb-oncogenic-2.svg diff --git a/portal/src/main/webapp/images/oncokb-oncogenic-3.svg b/src/main/resources/webapp/images/oncokb-oncogenic-3.svg similarity index 100% rename from portal/src/main/webapp/images/oncokb-oncogenic-3.svg rename to src/main/resources/webapp/images/oncokb-oncogenic-3.svg diff --git a/portal/src/main/webapp/images/oncokb.png b/src/main/resources/webapp/images/oncokb.png similarity index 100% rename from portal/src/main/webapp/images/oncokb.png rename to src/main/resources/webapp/images/oncokb.png diff --git a/portal/src/main/webapp/images/oncoprint_example.png b/src/main/resources/webapp/images/oncoprint_example.png similarity index 100% rename from portal/src/main/webapp/images/oncoprint_example.png rename to src/main/resources/webapp/images/oncoprint_example.png diff --git a/portal/src/main/webapp/images/oncoprint_example_small.png b/src/main/resources/webapp/images/oncoprint_example_small.png similarity index 100% rename from portal/src/main/webapp/images/oncoprint_example_small.png rename to src/main/resources/webapp/images/oncoprint_example_small.png diff --git a/portal/src/main/webapp/images/openquote.png b/src/main/resources/webapp/images/openquote.png similarity index 100% rename from portal/src/main/webapp/images/openquote.png rename to src/main/resources/webapp/images/openquote.png diff --git a/portal/src/main/webapp/images/pdb.png b/src/main/resources/webapp/images/pdb.png similarity index 100% rename from portal/src/main/webapp/images/pdb.png rename to src/main/resources/webapp/images/pdb.png diff --git a/portal/src/main/webapp/images/pie.svg b/src/main/resources/webapp/images/pie.svg similarity index 100% rename from portal/src/main/webapp/images/pie.svg rename to src/main/resources/webapp/images/pie.svg diff --git a/portal/src/main/webapp/images/plot_na.graffle b/src/main/resources/webapp/images/plot_na.graffle similarity index 100% rename from portal/src/main/webapp/images/plot_na.graffle rename to src/main/resources/webapp/images/plot_na.graffle diff --git a/portal/src/main/webapp/images/plots_na.pdf b/src/main/resources/webapp/images/plots_na.pdf similarity index 100% rename from portal/src/main/webapp/images/plots_na.pdf rename to src/main/resources/webapp/images/plots_na.pdf diff --git a/portal/src/main/webapp/images/plots_na.png b/src/main/resources/webapp/images/plots_na.png similarity index 100% rename from portal/src/main/webapp/images/plots_na.png rename to src/main/resources/webapp/images/plots_na.png diff --git a/portal/src/main/webapp/images/plots_na.psd b/src/main/resources/webapp/images/plots_na.psd similarity index 100% rename from portal/src/main/webapp/images/plots_na.psd rename to src/main/resources/webapp/images/plots_na.psd diff --git a/portal/src/main/webapp/images/plus.svg b/src/main/resources/webapp/images/plus.svg similarity index 100% rename from portal/src/main/webapp/images/plus.svg rename to src/main/resources/webapp/images/plus.svg diff --git a/portal/src/main/webapp/images/poetic-logo.png b/src/main/resources/webapp/images/poetic-logo.png similarity index 100% rename from portal/src/main/webapp/images/poetic-logo.png rename to src/main/resources/webapp/images/poetic-logo.png diff --git a/portal/src/main/webapp/images/previews/PIK3R1_structural_mutation_view_GBM.png b/src/main/resources/webapp/images/previews/PIK3R1_structural_mutation_view_GBM.png similarity index 100% rename from portal/src/main/webapp/images/previews/PIK3R1_structural_mutation_view_GBM.png rename to src/main/resources/webapp/images/previews/PIK3R1_structural_mutation_view_GBM.png diff --git a/portal/src/main/webapp/images/previews/TP53_mutations_OV.png b/src/main/resources/webapp/images/previews/TP53_mutations_OV.png similarity index 100% rename from portal/src/main/webapp/images/previews/TP53_mutations_OV.png rename to src/main/resources/webapp/images/previews/TP53_mutations_OV.png diff --git a/portal/src/main/webapp/images/previews/brca1_meth.png b/src/main/resources/webapp/images/previews/brca1_meth.png similarity index 100% rename from portal/src/main/webapp/images/previews/brca1_meth.png rename to src/main/resources/webapp/images/previews/brca1_meth.png diff --git a/portal/src/main/webapp/images/previews/cna_mrna.png b/src/main/resources/webapp/images/previews/cna_mrna.png similarity index 100% rename from portal/src/main/webapp/images/previews/cna_mrna.png rename to src/main/resources/webapp/images/previews/cna_mrna.png diff --git a/portal/src/main/webapp/images/previews/cross_cancer.png b/src/main/resources/webapp/images/previews/cross_cancer.png similarity index 100% rename from portal/src/main/webapp/images/previews/cross_cancer.png rename to src/main/resources/webapp/images/previews/cross_cancer.png diff --git a/portal/src/main/webapp/images/previews/fusion-in-oncoprint.png b/src/main/resources/webapp/images/previews/fusion-in-oncoprint.png similarity index 100% rename from portal/src/main/webapp/images/previews/fusion-in-oncoprint.png rename to src/main/resources/webapp/images/previews/fusion-in-oncoprint.png diff --git a/portal/src/main/webapp/images/previews/gbm_network.png b/src/main/resources/webapp/images/previews/gbm_network.png similarity index 100% rename from portal/src/main/webapp/images/previews/gbm_network.png rename to src/main/resources/webapp/images/previews/gbm_network.png diff --git a/portal/src/main/webapp/images/previews/gbm_oncoprint.png b/src/main/resources/webapp/images/previews/gbm_oncoprint.png similarity index 100% rename from portal/src/main/webapp/images/previews/gbm_oncoprint.png rename to src/main/resources/webapp/images/previews/gbm_oncoprint.png diff --git a/portal/src/main/webapp/images/previews/multi-clinical-track-oncoprint.png b/src/main/resources/webapp/images/previews/multi-clinical-track-oncoprint.png similarity index 100% rename from portal/src/main/webapp/images/previews/multi-clinical-track-oncoprint.png rename to src/main/resources/webapp/images/previews/multi-clinical-track-oncoprint.png diff --git a/portal/src/main/webapp/images/previews/multitumor-and-timeline.png b/src/main/resources/webapp/images/previews/multitumor-and-timeline.png similarity index 100% rename from portal/src/main/webapp/images/previews/multitumor-and-timeline.png rename to src/main/resources/webapp/images/previews/multitumor-and-timeline.png diff --git a/portal/src/main/webapp/images/previews/news_3d_coexp.png b/src/main/resources/webapp/images/previews/news_3d_coexp.png similarity index 100% rename from portal/src/main/webapp/images/previews/news_3d_coexp.png rename to src/main/resources/webapp/images/previews/news_3d_coexp.png diff --git a/portal/src/main/webapp/images/previews/oncoprint_clinical_track.png b/src/main/resources/webapp/images/previews/oncoprint_clinical_track.png similarity index 100% rename from portal/src/main/webapp/images/previews/oncoprint_clinical_track.png rename to src/main/resources/webapp/images/previews/oncoprint_clinical_track.png diff --git a/portal/src/main/webapp/images/previews/ova_network.png b/src/main/resources/webapp/images/previews/ova_network.png similarity index 100% rename from portal/src/main/webapp/images/previews/ova_network.png rename to src/main/resources/webapp/images/previews/ova_network.png diff --git a/portal/src/main/webapp/images/previews/ova_survival.png b/src/main/resources/webapp/images/previews/ova_survival.png similarity index 100% rename from portal/src/main/webapp/images/previews/ova_survival.png rename to src/main/resources/webapp/images/previews/ova_survival.png diff --git a/portal/src/main/webapp/images/previews/ova_survival_60_percent.png b/src/main/resources/webapp/images/previews/ova_survival_60_percent.png similarity index 100% rename from portal/src/main/webapp/images/previews/ova_survival_60_percent.png rename to src/main/resources/webapp/images/previews/ova_survival_60_percent.png diff --git a/portal/src/main/webapp/images/previews/patient_view.png b/src/main/resources/webapp/images/previews/patient_view.png similarity index 100% rename from portal/src/main/webapp/images/previews/patient_view.png rename to src/main/resources/webapp/images/previews/patient_view.png diff --git a/portal/src/main/webapp/images/previews/study_view.png b/src/main/resources/webapp/images/previews/study_view.png similarity index 100% rename from portal/src/main/webapp/images/previews/study_view.png rename to src/main/resources/webapp/images/previews/study_view.png diff --git a/portal/src/main/webapp/images/previews/study_view_alt_frequencies.png b/src/main/resources/webapp/images/previews/study_view_alt_frequencies.png similarity index 100% rename from portal/src/main/webapp/images/previews/study_view_alt_frequencies.png rename to src/main/resources/webapp/images/previews/study_view_alt_frequencies.png diff --git a/portal/src/main/webapp/images/previews/thumb_PIK3R1_structural_mutation_view_GBM.png b/src/main/resources/webapp/images/previews/thumb_PIK3R1_structural_mutation_view_GBM.png similarity index 100% rename from portal/src/main/webapp/images/previews/thumb_PIK3R1_structural_mutation_view_GBM.png rename to src/main/resources/webapp/images/previews/thumb_PIK3R1_structural_mutation_view_GBM.png diff --git a/portal/src/main/webapp/images/previews/thumb_TP53_mutations_OV.png b/src/main/resources/webapp/images/previews/thumb_TP53_mutations_OV.png similarity index 100% rename from portal/src/main/webapp/images/previews/thumb_TP53_mutations_OV.png rename to src/main/resources/webapp/images/previews/thumb_TP53_mutations_OV.png diff --git a/portal/src/main/webapp/images/previews/thumb_brca1_meth.png b/src/main/resources/webapp/images/previews/thumb_brca1_meth.png similarity index 100% rename from portal/src/main/webapp/images/previews/thumb_brca1_meth.png rename to src/main/resources/webapp/images/previews/thumb_brca1_meth.png diff --git a/portal/src/main/webapp/images/previews/thumb_cna_mrna.png b/src/main/resources/webapp/images/previews/thumb_cna_mrna.png similarity index 100% rename from portal/src/main/webapp/images/previews/thumb_cna_mrna.png rename to src/main/resources/webapp/images/previews/thumb_cna_mrna.png diff --git a/portal/src/main/webapp/images/previews/thumb_cross_cancer.png b/src/main/resources/webapp/images/previews/thumb_cross_cancer.png similarity index 100% rename from portal/src/main/webapp/images/previews/thumb_cross_cancer.png rename to src/main/resources/webapp/images/previews/thumb_cross_cancer.png diff --git a/portal/src/main/webapp/images/previews/thumb_gbm_network.png b/src/main/resources/webapp/images/previews/thumb_gbm_network.png similarity index 100% rename from portal/src/main/webapp/images/previews/thumb_gbm_network.png rename to src/main/resources/webapp/images/previews/thumb_gbm_network.png diff --git a/portal/src/main/webapp/images/previews/thumb_gbm_oncoprint.png b/src/main/resources/webapp/images/previews/thumb_gbm_oncoprint.png similarity index 100% rename from portal/src/main/webapp/images/previews/thumb_gbm_oncoprint.png rename to src/main/resources/webapp/images/previews/thumb_gbm_oncoprint.png diff --git a/portal/src/main/webapp/images/previews/thumb_ova_network.png b/src/main/resources/webapp/images/previews/thumb_ova_network.png similarity index 100% rename from portal/src/main/webapp/images/previews/thumb_ova_network.png rename to src/main/resources/webapp/images/previews/thumb_ova_network.png diff --git a/portal/src/main/webapp/images/previews/thumb_ova_survival.png b/src/main/resources/webapp/images/previews/thumb_ova_survival.png similarity index 100% rename from portal/src/main/webapp/images/previews/thumb_ova_survival.png rename to src/main/resources/webapp/images/previews/thumb_ova_survival.png diff --git a/portal/src/main/webapp/images/previews/thumb_patient_view.png b/src/main/resources/webapp/images/previews/thumb_patient_view.png similarity index 100% rename from portal/src/main/webapp/images/previews/thumb_patient_view.png rename to src/main/resources/webapp/images/previews/thumb_patient_view.png diff --git a/portal/src/main/webapp/images/previews/tp53_mutations.png b/src/main/resources/webapp/images/previews/tp53_mutations.png similarity index 100% rename from portal/src/main/webapp/images/previews/tp53_mutations.png rename to src/main/resources/webapp/images/previews/tp53_mutations.png diff --git a/portal/src/main/webapp/images/pushpin.svg b/src/main/resources/webapp/images/pushpin.svg similarity index 100% rename from portal/src/main/webapp/images/pushpin.svg rename to src/main/resources/webapp/images/pushpin.svg diff --git a/portal/src/main/webapp/images/question.svg b/src/main/resources/webapp/images/question.svg similarity index 100% rename from portal/src/main/webapp/images/question.svg rename to src/main/resources/webapp/images/question.svg diff --git a/portal/src/main/webapp/images/refresh_12px.jpg b/src/main/resources/webapp/images/refresh_12px.jpg similarity index 100% rename from portal/src/main/webapp/images/refresh_12px.jpg rename to src/main/resources/webapp/images/refresh_12px.jpg diff --git a/portal/src/main/webapp/images/reload-alt.svg b/src/main/resources/webapp/images/reload-alt.svg similarity index 100% rename from portal/src/main/webapp/images/reload-alt.svg rename to src/main/resources/webapp/images/reload-alt.svg diff --git a/portal/src/main/webapp/images/removeUCases.svg b/src/main/resources/webapp/images/removeUCases.svg similarity index 100% rename from portal/src/main/webapp/images/removeUCases.svg rename to src/main/resources/webapp/images/removeUCases.svg diff --git a/portal/src/main/webapp/images/removeWhitespace.svg b/src/main/resources/webapp/images/removeWhitespace.svg similarity index 100% rename from portal/src/main/webapp/images/removeWhitespace.svg rename to src/main/resources/webapp/images/removeWhitespace.svg diff --git a/portal/src/main/webapp/images/remove_breadcrumb_icon.png b/src/main/resources/webapp/images/remove_breadcrumb_icon.png similarity index 100% rename from portal/src/main/webapp/images/remove_breadcrumb_icon.png rename to src/main/resources/webapp/images/remove_breadcrumb_icon.png diff --git a/portal/src/main/webapp/images/sanger.png b/src/main/resources/webapp/images/sanger.png similarity index 100% rename from portal/src/main/webapp/images/sanger.png rename to src/main/resources/webapp/images/sanger.png diff --git a/portal/src/main/webapp/images/sclc-logo.png b/src/main/resources/webapp/images/sclc-logo.png similarity index 100% rename from portal/src/main/webapp/images/sclc-logo.png rename to src/main/resources/webapp/images/sclc-logo.png diff --git a/portal/src/main/webapp/images/search.svg b/src/main/resources/webapp/images/search.svg similarity index 100% rename from portal/src/main/webapp/images/search.svg rename to src/main/resources/webapp/images/search.svg diff --git a/portal/src/main/webapp/images/send-to-gs.png b/src/main/resources/webapp/images/send-to-gs.png similarity index 100% rename from portal/src/main/webapp/images/send-to-gs.png rename to src/main/resources/webapp/images/send-to-gs.png diff --git a/portal/src/main/webapp/images/showlegend.svg b/src/main/resources/webapp/images/showlegend.svg similarity index 100% rename from portal/src/main/webapp/images/showlegend.svg rename to src/main/resources/webapp/images/showlegend.svg diff --git a/portal/src/main/webapp/images/side_bg.gif b/src/main/resources/webapp/images/side_bg.gif similarity index 100% rename from portal/src/main/webapp/images/side_bg.gif rename to src/main/resources/webapp/images/side_bg.gif diff --git a/portal/src/main/webapp/images/side_bg_su2c.png b/src/main/resources/webapp/images/side_bg_su2c.png similarity index 100% rename from portal/src/main/webapp/images/side_bg_su2c.png rename to src/main/resources/webapp/images/side_bg_su2c.png diff --git a/portal/src/main/webapp/images/sort_asc.png b/src/main/resources/webapp/images/sort_asc.png similarity index 100% rename from portal/src/main/webapp/images/sort_asc.png rename to src/main/resources/webapp/images/sort_asc.png diff --git a/portal/src/main/webapp/images/sort_asc_disabled.png b/src/main/resources/webapp/images/sort_asc_disabled.png similarity index 100% rename from portal/src/main/webapp/images/sort_asc_disabled.png rename to src/main/resources/webapp/images/sort_asc_disabled.png diff --git a/portal/src/main/webapp/images/sort_both.png b/src/main/resources/webapp/images/sort_both.png similarity index 100% rename from portal/src/main/webapp/images/sort_both.png rename to src/main/resources/webapp/images/sort_both.png diff --git a/portal/src/main/webapp/images/sort_desc.png b/src/main/resources/webapp/images/sort_desc.png similarity index 100% rename from portal/src/main/webapp/images/sort_desc.png rename to src/main/resources/webapp/images/sort_desc.png diff --git a/portal/src/main/webapp/images/sort_desc_disabled.png b/src/main/resources/webapp/images/sort_desc_disabled.png similarity index 100% rename from portal/src/main/webapp/images/sort_desc_disabled.png rename to src/main/resources/webapp/images/sort_desc_disabled.png diff --git a/portal/src/main/webapp/images/su2c-kras.png b/src/main/resources/webapp/images/su2c-kras.png similarity index 100% rename from portal/src/main/webapp/images/su2c-kras.png rename to src/main/resources/webapp/images/su2c-kras.png diff --git a/portal/src/main/webapp/images/su2c-logo.png b/src/main/resources/webapp/images/su2c-logo.png similarity index 100% rename from portal/src/main/webapp/images/su2c-logo.png rename to src/main/resources/webapp/images/su2c-logo.png diff --git a/portal/src/main/webapp/images/survival.png b/src/main/resources/webapp/images/survival.png similarity index 100% rename from portal/src/main/webapp/images/survival.png rename to src/main/resources/webapp/images/survival.png diff --git a/portal/src/main/webapp/images/survival_icon.png b/src/main/resources/webapp/images/survival_icon.png similarity index 100% rename from portal/src/main/webapp/images/survival_icon.png rename to src/main/resources/webapp/images/survival_icon.png diff --git a/portal/src/main/webapp/images/survival_icon.svg b/src/main/resources/webapp/images/survival_icon.svg similarity index 100% rename from portal/src/main/webapp/images/survival_icon.svg rename to src/main/resources/webapp/images/survival_icon.svg diff --git a/portal/src/main/webapp/images/swap.png b/src/main/resources/webapp/images/swap.png similarity index 100% rename from portal/src/main/webapp/images/swap.png rename to src/main/resources/webapp/images/swap.png diff --git a/portal/src/main/webapp/images/table.svg b/src/main/resources/webapp/images/table.svg similarity index 100% rename from portal/src/main/webapp/images/table.svg rename to src/main/resources/webapp/images/table.svg diff --git a/portal/src/main/webapp/images/tag_line.png b/src/main/resources/webapp/images/tag_line.png similarity index 100% rename from portal/src/main/webapp/images/tag_line.png rename to src/main/resources/webapp/images/tag_line.png diff --git a/portal/src/main/webapp/images/target-logo.gif b/src/main/resources/webapp/images/target-logo.gif similarity index 100% rename from portal/src/main/webapp/images/target-logo.gif rename to src/main/resources/webapp/images/target-logo.gif diff --git a/portal/src/main/webapp/images/transfer.svg b/src/main/resources/webapp/images/transfer.svg similarity index 100% rename from portal/src/main/webapp/images/transfer.svg rename to src/main/resources/webapp/images/transfer.svg diff --git a/portal/src/main/webapp/images/twitter-b.png b/src/main/resources/webapp/images/twitter-b.png similarity index 100% rename from portal/src/main/webapp/images/twitter-b.png rename to src/main/resources/webapp/images/twitter-b.png diff --git a/portal/src/main/webapp/images/ui-bg_glass_100_f8f8f8_1x400.png b/src/main/resources/webapp/images/ui-bg_glass_100_f8f8f8_1x400.png similarity index 100% rename from portal/src/main/webapp/images/ui-bg_glass_100_f8f8f8_1x400.png rename to src/main/resources/webapp/images/ui-bg_glass_100_f8f8f8_1x400.png diff --git a/portal/src/main/webapp/images/ui-bg_glass_35_dddddd_1x400.png b/src/main/resources/webapp/images/ui-bg_glass_35_dddddd_1x400.png similarity index 100% rename from portal/src/main/webapp/images/ui-bg_glass_35_dddddd_1x400.png rename to src/main/resources/webapp/images/ui-bg_glass_35_dddddd_1x400.png diff --git a/portal/src/main/webapp/images/ui-bg_glass_60_eeeeee_1x400.png b/src/main/resources/webapp/images/ui-bg_glass_60_eeeeee_1x400.png similarity index 100% rename from portal/src/main/webapp/images/ui-bg_glass_60_eeeeee_1x400.png rename to src/main/resources/webapp/images/ui-bg_glass_60_eeeeee_1x400.png diff --git a/portal/src/main/webapp/images/uncolormutations.svg b/src/main/resources/webapp/images/uncolormutations.svg similarity index 100% rename from portal/src/main/webapp/images/uncolormutations.svg rename to src/main/resources/webapp/images/uncolormutations.svg diff --git a/portal/src/main/webapp/images/undo.svg b/src/main/resources/webapp/images/undo.svg similarity index 100% rename from portal/src/main/webapp/images/undo.svg rename to src/main/resources/webapp/images/undo.svg diff --git a/portal/src/main/webapp/images/unremoveUCases.svg b/src/main/resources/webapp/images/unremoveUCases.svg similarity index 100% rename from portal/src/main/webapp/images/unremoveUCases.svg rename to src/main/resources/webapp/images/unremoveUCases.svg diff --git a/portal/src/main/webapp/images/unremoveWhitespace.svg b/src/main/resources/webapp/images/unremoveWhitespace.svg similarity index 100% rename from portal/src/main/webapp/images/unremoveWhitespace.svg rename to src/main/resources/webapp/images/unremoveWhitespace.svg diff --git a/portal/src/main/webapp/images/up-rppa.png b/src/main/resources/webapp/images/up-rppa.png similarity index 100% rename from portal/src/main/webapp/images/up-rppa.png rename to src/main/resources/webapp/images/up-rppa.png diff --git a/portal/src/main/webapp/images/up1.png b/src/main/resources/webapp/images/up1.png similarity index 100% rename from portal/src/main/webapp/images/up1.png rename to src/main/resources/webapp/images/up1.png diff --git a/portal/src/main/webapp/images/up2.png b/src/main/resources/webapp/images/up2.png similarity index 100% rename from portal/src/main/webapp/images/up2.png rename to src/main/resources/webapp/images/up2.png diff --git a/portal/src/main/webapp/images/update_12px.jpg b/src/main/resources/webapp/images/update_12px.jpg similarity index 100% rename from portal/src/main/webapp/images/update_12px.jpg rename to src/main/resources/webapp/images/update_12px.jpg diff --git a/portal/src/main/webapp/images/warning.gif b/src/main/resources/webapp/images/warning.gif similarity index 100% rename from portal/src/main/webapp/images/warning.gif rename to src/main/resources/webapp/images/warning.gif diff --git a/portal/src/main/webapp/images/webstart.jpg b/src/main/resources/webapp/images/webstart.jpg similarity index 100% rename from portal/src/main/webapp/images/webstart.jpg rename to src/main/resources/webapp/images/webstart.jpg diff --git a/portal/src/main/webapp/images/zoom-in.svg b/src/main/resources/webapp/images/zoom-in.svg similarity index 100% rename from portal/src/main/webapp/images/zoom-in.svg rename to src/main/resources/webapp/images/zoom-in.svg diff --git a/portal/src/main/webapp/images/zoom-out.svg b/src/main/resources/webapp/images/zoom-out.svg similarity index 98% rename from portal/src/main/webapp/images/zoom-out.svg rename to src/main/resources/webapp/images/zoom-out.svg index 5a3dd18b491..a8faf5e8ee6 100644 --- a/portal/src/main/webapp/images/zoom-out.svg +++ b/src/main/resources/webapp/images/zoom-out.svg @@ -1,14 +1,14 @@ - - - - - - - - + + + + + + + + diff --git a/portal/src/main/webapp/images/zoom-to-fit.svg b/src/main/resources/webapp/images/zoom-to-fit.svg similarity index 98% rename from portal/src/main/webapp/images/zoom-to-fit.svg rename to src/main/resources/webapp/images/zoom-to-fit.svg index 508320c431b..34c94879e77 100755 --- a/portal/src/main/webapp/images/zoom-to-fit.svg +++ b/src/main/resources/webapp/images/zoom-to-fit.svg @@ -1,12 +1,12 @@ - - - - - - - - + + + + + + + + diff --git a/portal/src/main/webapp/index.jsp b/src/main/resources/webapp/index.jsp similarity index 100% rename from portal/src/main/webapp/index.jsp rename to src/main/resources/webapp/index.jsp diff --git a/src/main/resources/webapp/js/src/load-frontend.js b/src/main/resources/webapp/js/src/load-frontend.js new file mode 100644 index 00000000000..27b3ca57435 --- /dev/null +++ b/src/main/resources/webapp/js/src/load-frontend.js @@ -0,0 +1,104 @@ + +function clearDevState(e){ + localStorage.removeItem('localdev'); + localStorage.removeItem('localdist'); + localStorage.removeItem('netlify'); + window.location.reload(); +} + +function showFrontendPopup(url) { + document.addEventListener("DOMContentLoaded", function(event) { + var newDiv = document.createElement("div"); + newDiv.setAttribute('class', 'local-dev-banner') + newDiv.setAttribute('style', 'position: fixed; z-index:100; top: 0; left: 0; width: 100%'); + document.body.appendChild(newDiv); + newDiv.innerHTML = '
    ' + + '
    ' + + '' + + 'cbioportal-frontend dev mode, using ' + url + ' clear' + + '
    ' + + '
    '; + newDiv.onclick=function(){ + document.body.removeChild(this); + } + }); +} + +function GetIEVersion() { + var sAgent = window.navigator.userAgent; + var Idx = sAgent.indexOf("MSIE"); + + // If IE, return version number. + if (Idx > 0) + return parseInt(sAgent.substring(Idx+ 5, sAgent.indexOf(".", Idx))); + + // If IE 11 then look for Updated user agent string. + else if (!!navigator.userAgent.match(/Trident\/7\./)) + return 11; + + else + return 0; //It is not IE +} + +const unsupportedBrowser = + '
    ' + + '

    Apologies, we no longer support your browser

    ' + + '

    Visit list of supported browsers

    ' + + '
    '; + +window.loadReactApp = function(config) { + // Set frontend route to /patient + window.defaultRoute = '/' + config.defaultRoute; + + // if any version of Internet Explorer, show unsupported browser message + if (GetIEVersion() > 0) { + var div = document.createElement("div"); + div.innerHTML = unsupportedBrowser; + document.body.appendChild(div); + return; + } + + if (window.frontendConfig.frontendUrl === undefined) { + // this should never happen + if (console.error) { + console.error('ERROR: No frontend URL defined, should at least be empty string'); + } else { + console.log('ERROR: No frontend URL defined, should at least be empty string'); + } + } + if (window.localdev || window.localdist || localStorage.netlify) { + showFrontendPopup(window.frontendConfig.frontendUrl); + } + document.write(' diff --git a/portal/src/main/webapp/WEB-INF/jsp/mutation_details.jsp b/src/main/resources/webapp/jsp/mutation_details.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/mutation_details.jsp rename to src/main/resources/webapp/jsp/mutation_details.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/mutation_views.jsp b/src/main/resources/webapp/jsp/mutation_views.jsp similarity index 94% rename from portal/src/main/webapp/WEB-INF/jsp/mutation_views.jsp rename to src/main/resources/webapp/jsp/mutation_views.jsp index 2cbca18573b..4c40c313c7b 100644 --- a/portal/src/main/webapp/WEB-INF/jsp/mutation_views.jsp +++ b/src/main/resources/webapp/jsp/mutation_views.jsp @@ -30,4 +30,4 @@ - along with this program. If not, see . --%> -<%@ include file="mutation/mutationMapperTemplates.html" %> +<%@ include file="src/main/webapp/jsp/mutation/mutationMapperTemplates.html" %> diff --git a/portal/src/main/webapp/WEB-INF/jsp/mutex_tab.jsp b/src/main/resources/webapp/jsp/mutex_tab.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/mutex_tab.jsp rename to src/main/resources/webapp/jsp/mutex_tab.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/network_div.jsp b/src/main/resources/webapp/jsp/network_div.jsp similarity index 93% rename from portal/src/main/webapp/WEB-INF/jsp/network_div.jsp rename to src/main/resources/webapp/jsp/network_div.jsp index 28eba01a027..5f6f28abe42 100644 --- a/portal/src/main/webapp/WEB-INF/jsp/network_div.jsp +++ b/src/main/resources/webapp/jsp/network_div.jsp @@ -35,7 +35,7 @@ @@ -46,7 +46,7 @@ diff --git a/portal/src/main/webapp/WEB-INF/jsp/network_help.jsp b/src/main/resources/webapp/jsp/network_help.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/network_help.jsp rename to src/main/resources/webapp/jsp/network_help.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/network_menu.jsp b/src/main/resources/webapp/jsp/network_menu.jsp similarity index 97% rename from portal/src/main/webapp/WEB-INF/jsp/network_menu.jsp rename to src/main/resources/webapp/jsp/network_menu.jsp index 8fd595ffbf7..b4b48850d16 100644 --- a/portal/src/main/webapp/WEB-INF/jsp/network_menu.jsp +++ b/src/main/resources/webapp/jsp/network_menu.jsp @@ -30,129 +30,129 @@ - along with this program. If not, see . --%> -<% -Boolean includeNetLegend = (Boolean)request.getAttribute("include_network_legend"); -if (includeNetLegend==null) { - includeNetLegend = Boolean.TRUE; -} -%> - - -
    - -
    +<% +Boolean includeNetLegend = (Boolean)request.getAttribute("include_network_legend"); +if (includeNetLegend==null) { + includeNetLegend = Boolean.TRUE; +} +%> + + +
    + +
    diff --git a/portal/src/main/webapp/WEB-INF/jsp/network_tabs.jsp b/src/main/resources/webapp/jsp/network_tabs.jsp old mode 100755 new mode 100644 similarity index 98% rename from portal/src/main/webapp/WEB-INF/jsp/network_tabs.jsp rename to src/main/resources/webapp/jsp/network_tabs.jsp index fcc0ac36764..38af7adf8d2 --- a/portal/src/main/webapp/WEB-INF/jsp/network_tabs.jsp +++ b/src/main/resources/webapp/jsp/network_tabs.jsp @@ -157,7 +157,7 @@ if (includeHelpTab==null) { <%if(includeHelpTab){%>
    - +
    <%}%> diff --git a/portal/src/main/webapp/WEB-INF/jsp/network_views.jsp b/src/main/resources/webapp/jsp/network_views.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/network_views.jsp rename to src/main/resources/webapp/jsp/network_views.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/networks.jsp b/src/main/resources/webapp/jsp/networks.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/networks.jsp rename to src/main/resources/webapp/jsp/networks.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/oncokb/oncokb-card-template.html b/src/main/resources/webapp/jsp/oncokb/oncokb-card-template.html similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/oncokb/oncokb-card-template.html rename to src/main/resources/webapp/jsp/oncokb/oncokb-card-template.html diff --git a/portal/src/main/webapp/WEB-INF/jsp/oncoprint/cna-file-example.txt b/src/main/resources/webapp/jsp/oncoprint/cna-file-example.txt similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/oncoprint/cna-file-example.txt rename to src/main/resources/webapp/jsp/oncoprint/cna-file-example.txt diff --git a/portal/src/main/webapp/WEB-INF/jsp/oncoprint/controls-templates.jsp b/src/main/resources/webapp/jsp/oncoprint/controls-templates.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/oncoprint/controls-templates.jsp rename to src/main/resources/webapp/jsp/oncoprint/controls-templates.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/oncoprint/example-clinic-events.txt b/src/main/resources/webapp/jsp/oncoprint/example-clinic-events.txt similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/oncoprint/example-clinic-events.txt rename to src/main/resources/webapp/jsp/oncoprint/example-clinic-events.txt diff --git a/portal/src/main/webapp/WEB-INF/jsp/oncoprint/example-genomic-events.txt b/src/main/resources/webapp/jsp/oncoprint/example-genomic-events.txt similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/oncoprint/example-genomic-events.txt rename to src/main/resources/webapp/jsp/oncoprint/example-genomic-events.txt diff --git a/portal/src/main/webapp/WEB-INF/jsp/oncoprint/legend-template.jsp b/src/main/resources/webapp/jsp/oncoprint/legend-template.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/oncoprint/legend-template.jsp rename to src/main/resources/webapp/jsp/oncoprint/legend-template.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/oncoprint/main.jsp b/src/main/resources/webapp/jsp/oncoprint/main.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/oncoprint/main.jsp rename to src/main/resources/webapp/jsp/oncoprint/main.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/oncoprint/mutation-file-example.txt b/src/main/resources/webapp/jsp/oncoprint/mutation-file-example.txt similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/oncoprint/mutation-file-example.txt rename to src/main/resources/webapp/jsp/oncoprint/mutation-file-example.txt diff --git a/portal/src/main/webapp/WEB-INF/jsp/pancancer_study_summary.jsp b/src/main/resources/webapp/jsp/pancancer_study_summary.jsp old mode 100755 new mode 100644 similarity index 97% rename from portal/src/main/webapp/WEB-INF/jsp/pancancer_study_summary.jsp rename to src/main/resources/webapp/jsp/pancancer_study_summary.jsp index d225e3241cb..e291b791f14 --- a/portal/src/main/webapp/WEB-INF/jsp/pancancer_study_summary.jsp +++ b/src/main/resources/webapp/jsp/pancancer_study_summary.jsp @@ -40,7 +40,7 @@ -<%@ include file="pancancer_study_summary/pancancer_study_summary_templates.html" %> +<%@ include file="src/main/webapp/jsp/pancancer_study_summary/pancancer_study_summary_templates.html" %> diff --git a/portal/src/main/webapp/WEB-INF/jsp/pancancer_study_summary/pancancer_study_summary_templates.html b/src/main/resources/webapp/jsp/pancancer_study_summary/pancancer_study_summary_templates.html old mode 100755 new mode 100644 similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/pancancer_study_summary/pancancer_study_summary_templates.html rename to src/main/resources/webapp/jsp/pancancer_study_summary/pancancer_study_summary_templates.html diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/clinical_timeline.jsp b/src/main/resources/webapp/jsp/patient_view/clinical_timeline.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/clinical_timeline.jsp rename to src/main/resources/webapp/jsp/patient_view/clinical_timeline.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/cna.jsp b/src/main/resources/webapp/jsp/patient_view/cna.jsp similarity index 99% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/cna.jsp rename to src/main/resources/webapp/jsp/patient_view/cna.jsp index b3fa9161395..9e30f255ed4 100644 --- a/portal/src/main/webapp/WEB-INF/jsp/patient_view/cna.jsp +++ b/src/main/resources/webapp/jsp/patient_view/cna.jsp @@ -589,7 +589,7 @@
    diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/cna_table_template.jsp b/src/main/resources/webapp/jsp/patient_view/cna_table_template.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/cna_table_template.jsp rename to src/main/resources/webapp/jsp/patient_view/cna_table_template.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/drugs.jsp b/src/main/resources/webapp/jsp/patient_view/drugs.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/drugs.jsp rename to src/main/resources/webapp/jsp/patient_view/drugs.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/mdacc_patient_heatmap_viewer.jsp b/src/main/resources/webapp/jsp/patient_view/mdacc_patient_heatmap_viewer.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/mdacc_patient_heatmap_viewer.jsp rename to src/main/resources/webapp/jsp/patient_view/mdacc_patient_heatmap_viewer.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/mutations.jsp b/src/main/resources/webapp/jsp/patient_view/mutations.jsp similarity index 99% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/mutations.jsp rename to src/main/resources/webapp/jsp/patient_view/mutations.jsp index 5f29f98210b..4b25b3421f6 100644 --- a/portal/src/main/webapp/WEB-INF/jsp/patient_view/mutations.jsp +++ b/src/main/resources/webapp/jsp/patient_view/mutations.jsp @@ -1314,7 +1314,7 @@ diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/mutations_table_template.jsp b/src/main/resources/webapp/jsp/patient_view/mutations_table_template.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/mutations_table_template.jsp rename to src/main/resources/webapp/jsp/patient_view/mutations_table_template.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/path_report.jsp b/src/main/resources/webapp/jsp/patient_view/path_report.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/path_report.jsp rename to src/main/resources/webapp/jsp/patient_view/path_report.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/pathways.jsp b/src/main/resources/webapp/jsp/patient_view/pathways.jsp similarity index 98% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/pathways.jsp rename to src/main/resources/webapp/jsp/patient_view/pathways.jsp index 89d3790bce8..1bd3c6c58a6 100644 --- a/portal/src/main/webapp/WEB-INF/jsp/patient_view/pathways.jsp +++ b/src/main/resources/webapp/jsp/patient_view/pathways.jsp @@ -73,4 +73,4 @@ request.setAttribute("include_network_legend", Boolean.FALSE); ); - + diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/patient_view.jsp b/src/main/resources/webapp/jsp/patient_view/patient_view.jsp similarity index 97% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/patient_view.jsp rename to src/main/resources/webapp/jsp/patient_view/patient_view.jsp index 70e038e4846..3e3dcbdb99c 100644 --- a/portal/src/main/webapp/WEB-INF/jsp/patient_view/patient_view.jsp +++ b/src/main/resources/webapp/jsp/patient_view/patient_view.jsp @@ -49,7 +49,7 @@ <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %> - + <%@taglib prefix="t" tagdir="/WEB-INF/tags" %> diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/samples_table.jsp b/src/main/resources/webapp/jsp/patient_view/samples_table.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/samples_table.jsp rename to src/main/resources/webapp/jsp/patient_view/samples_table.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/similar_patients.jsp b/src/main/resources/webapp/jsp/patient_view/similar_patients.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/similar_patients.jsp rename to src/main/resources/webapp/jsp/patient_view/similar_patients.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/summary.jsp b/src/main/resources/webapp/jsp/patient_view/summary.jsp similarity index 97% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/summary.jsp rename to src/main/resources/webapp/jsp/patient_view/summary.jsp index 59e67d2379e..d1dc8ff3905 100644 --- a/portal/src/main/webapp/WEB-INF/jsp/patient_view/summary.jsp +++ b/src/main/resources/webapp/jsp/patient_view/summary.jsp @@ -125,7 +125,7 @@ <%if(showTimeline){%> - +
    <%}%> @@ -268,7 +268,7 @@
    @@ -284,7 +284,7 @@ diff --git a/portal/src/main/webapp/WEB-INF/jsp/patient_view/tissue_images.jsp b/src/main/resources/webapp/jsp/patient_view/tissue_images.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/patient_view/tissue_images.jsp rename to src/main/resources/webapp/jsp/patient_view/tissue_images.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/plots_tab.jsp b/src/main/resources/webapp/jsp/plots_tab.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/plots_tab.jsp rename to src/main/resources/webapp/jsp/plots_tab.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/preview.jsp b/src/main/resources/webapp/jsp/preview.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/preview.jsp rename to src/main/resources/webapp/jsp/preview.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/preview_su2c.jsp b/src/main/resources/webapp/jsp/preview_su2c.jsp similarity index 100% rename from portal/src/main/webapp/WEB-INF/jsp/preview_su2c.jsp rename to src/main/resources/webapp/jsp/preview_su2c.jsp diff --git a/portal/src/main/webapp/WEB-INF/jsp/query_form.jsp b/src/main/resources/webapp/jsp/query_form.jsp similarity index 96% rename from portal/src/main/webapp/WEB-INF/jsp/query_form.jsp rename to src/main/resources/webapp/jsp/query_form.jsp index 218b7e7fcf1..de1a36df7fc 100644 --- a/portal/src/main/webapp/WEB-INF/jsp/query_form.jsp +++ b/src/main/resources/webapp/jsp/query_form.jsp @@ -163,11 +163,11 @@
    - <%@ include file="step1_json.jsp" %> - <%@ include file="step2_json.jsp" %> - <%@ include file="step3_json.jsp" %> - <%@ include file="step4_json.jsp" %> - <%@ include file="step5_json.jsp" %> + <%@ include file="src/main/webapp/jsp/step1_json.jsp" %> + <%@ include file="src/main/webapp/jsp/step2_json.jsp" %> + <%@ include file="src/main/webapp/jsp/step3_json.jsp" %> + <%@ include file="src/main/webapp/jsp/step4_json.jsp" %> + <%@ include file="src/main/webapp/jsp/step5_json.jsp" %> - + -<%@ include file="global/global_variables.jsp" %> - +<%@ include file="src/main/webapp/jsp/global/global_variables.jsp" %> + - +
    - +
    - +
    - <%@ include file="cna_table_template.jsp"%> + <%@ include file="src/main/webapp/jsp/patient_view/cna_table_template.jsp"%>
    - <%@ include file="mutations_table_template.jsp"%> + <%@ include file="src/main/webapp/jsp/patient_view/mutations_table_template.jsp"%>
    - <%@ include file="mutations_table_template.jsp"%> + <%@ include file="src/main/webapp/jsp/patient_view/mutations_table_template.jsp"%>
    - <%@ include file="cna_table_template.jsp"%> + <%@ include file="src/main/webapp/jsp/patient_view/cna_table_template.jsp"%>
    @@ -203,7 +203,7 @@ if (graphml!=null&&!graphml.isEmpty()) { }); - + <% } else { %> diff --git a/portal/src/main/webapp/networks.jsp b/src/main/resources/webapp/networks.jsp similarity index 88% rename from portal/src/main/webapp/networks.jsp rename to src/main/resources/webapp/networks.jsp index 9c89eb1ab5c..0222f6f004d 100644 --- a/portal/src/main/webapp/networks.jsp +++ b/src/main/resources/webapp/networks.jsp @@ -39,7 +39,7 @@ <% request.setAttribute(QueryBuilder.HTML_TITLE, siteTitle+"::What's New"); %> - +
    @@ -57,18 +57,18 @@
    - +
    - +
    - + diff --git a/portal/src/main/webapp/release_notes_mutation_mapper.jsp b/src/main/resources/webapp/release_notes_mutation_mapper.jsp similarity index 96% rename from portal/src/main/webapp/release_notes_mutation_mapper.jsp rename to src/main/resources/webapp/release_notes_mutation_mapper.jsp index 1e4f4125b9c..361992b76a6 100644 --- a/portal/src/main/webapp/release_notes_mutation_mapper.jsp +++ b/src/main/resources/webapp/release_notes_mutation_mapper.jsp @@ -49,7 +49,7 @@

    <%@ include file="content/release_notes_mutation_mapper.html" %>

    - + diff --git a/portal/src/main/webapp/release_notes_oncoprinter.jsp b/src/main/resources/webapp/release_notes_oncoprinter.jsp similarity index 96% rename from portal/src/main/webapp/release_notes_oncoprinter.jsp rename to src/main/resources/webapp/release_notes_oncoprinter.jsp index 37c06cdda4e..39a2756d9d1 100644 --- a/portal/src/main/webapp/release_notes_oncoprinter.jsp +++ b/src/main/resources/webapp/release_notes_oncoprinter.jsp @@ -49,7 +49,7 @@

    <%@ include file="content/release_notes_oncoprinter.html" %>

    - + diff --git a/portal/src/main/webapp/restful_login.jsp b/src/main/resources/webapp/restful_login.jsp similarity index 91% rename from portal/src/main/webapp/restful_login.jsp rename to src/main/resources/webapp/restful_login.jsp index fbf85d5195f..3a8ee434293 100644 --- a/portal/src/main/webapp/restful_login.jsp +++ b/src/main/resources/webapp/restful_login.jsp @@ -45,7 +45,7 @@ } %> - +

    Connecting to the MSK cBioPortal...

    @@ -54,13 +54,13 @@ - + - + diff --git a/portal/src/main/webapp/robots.jsp b/src/main/resources/webapp/robots.jsp similarity index 100% rename from portal/src/main/webapp/robots.jsp rename to src/main/resources/webapp/robots.jsp diff --git a/portal/src/main/webapp/sbgn-view.html b/src/main/resources/webapp/sbgn-view.html similarity index 100% rename from portal/src/main/webapp/sbgn-view.html rename to src/main/resources/webapp/sbgn-view.html diff --git a/portal/src/main/webapp/sci_signal_reprint.jsp b/src/main/resources/webapp/sci_signal_reprint.jsp similarity index 100% rename from portal/src/main/webapp/sci_signal_reprint.jsp rename to src/main/resources/webapp/sci_signal_reprint.jsp diff --git a/portal/src/main/webapp/sitemap_index.jsp b/src/main/resources/webapp/sitemap_index.jsp similarity index 97% rename from portal/src/main/webapp/sitemap_index.jsp rename to src/main/resources/webapp/sitemap_index.jsp index f2f616fb636..5ef33976207 100644 --- a/portal/src/main/webapp/sitemap_index.jsp +++ b/src/main/resources/webapp/sitemap_index.jsp @@ -5,7 +5,6 @@ <%@ page import="org.json.simple.JSONObject" %> <%@ page import="org.json.simple.parser.*" %> <%@ page import="java.util.*" %> -<%@ page import="javax.servlet.http.*" %> <%@ page import="org.mskcc.cbio.portal.util.GlobalProperties" %> <% diff --git a/portal/src/main/webapp/sitemap_study.jsp b/src/main/resources/webapp/sitemap_study.jsp similarity index 100% rename from portal/src/main/webapp/sitemap_study.jsp rename to src/main/resources/webapp/sitemap_study.jsp diff --git a/portal/src/main/webapp/swf/CytoscapeWeb.swf b/src/main/resources/webapp/swf/CytoscapeWeb.swf similarity index 100% rename from portal/src/main/webapp/swf/CytoscapeWeb.swf rename to src/main/resources/webapp/swf/CytoscapeWeb.swf diff --git a/portal/src/main/webapp/swf/copy_csv_xls_pdf.swf b/src/main/resources/webapp/swf/copy_csv_xls_pdf.swf similarity index 100% rename from portal/src/main/webapp/swf/copy_csv_xls_pdf.swf rename to src/main/resources/webapp/swf/copy_csv_xls_pdf.swf diff --git a/portal/src/main/webapp/swf/playerProductInstall.swf b/src/main/resources/webapp/swf/playerProductInstall.swf similarity index 100% rename from portal/src/main/webapp/swf/playerProductInstall.swf rename to src/main/resources/webapp/swf/playerProductInstall.swf diff --git a/portal/src/main/webapp/swf/src/ApplicationFacade.as b/src/main/resources/webapp/swf/src/ApplicationFacade.as similarity index 100% rename from portal/src/main/webapp/swf/src/ApplicationFacade.as rename to src/main/resources/webapp/swf/src/ApplicationFacade.as diff --git a/portal/src/main/webapp/swf/src/CBioEdgeRenderer.as b/src/main/resources/webapp/swf/src/CBioEdgeRenderer.as similarity index 100% rename from portal/src/main/webapp/swf/src/CBioEdgeRenderer.as rename to src/main/resources/webapp/swf/src/CBioEdgeRenderer.as diff --git a/portal/src/main/webapp/swf/src/CBioHandleHoverCommand.as b/src/main/resources/webapp/swf/src/CBioHandleHoverCommand.as similarity index 96% rename from portal/src/main/webapp/swf/src/CBioHandleHoverCommand.as rename to src/main/resources/webapp/swf/src/CBioHandleHoverCommand.as index dc3dbc00bd6..92577005f8d 100644 --- a/portal/src/main/webapp/swf/src/CBioHandleHoverCommand.as +++ b/src/main/resources/webapp/swf/src/CBioHandleHoverCommand.as @@ -1,66 +1,66 @@ -package org.cytoscapeweb.controller -{ - import flare.vis.data.DataSprite; - import flare.vis.data.EdgeSprite; - import flare.vis.data.NodeSprite; - - import org.cytoscapeweb.ApplicationFacade; - import org.cytoscapeweb.model.converters.ExternalObjectConverter; - import org.cytoscapeweb.util.Edges; - import org.cytoscapeweb.util.ExternalFunctions; - import org.cytoscapeweb.util.Groups; - import org.cytoscapeweb.view.render.CBioNodeRenderer; - import org.puremvc.as3.interfaces.INotification; - - public class CBioHandleHoverCommand extends HandleHoverCommand - { - public function CBioHandleHoverCommand() - { - super(); - } - - override public function execute(notification:INotification):void { - super.execute(notification); - - var ds:DataSprite = notification.getBody() as DataSprite; - var action:String = notification.getName(); - var group:String = Groups.groupOf(ds); - - var type:String = action === ApplicationFacade.ROLLOVER_EVENT ? "mouseover" : "mouseout"; - var previousDs:DataSprite; - - switch (action) { - case ApplicationFacade.ROLLOVER_EVENT: - // For the hovered node added prop.detailFlag true to show the details. - if (ds is NodeSprite) { - ds.props.detailFlag = true; - NodeSprite(ds).visitEdges(function(e:EdgeSprite):Boolean { - graphMediator.resetDataSprite(e); - return false; - }); - - graphMediator.updateLabels(); - } else if (ds is EdgeSprite) { - - } - break; - case ApplicationFacade.ROLLOUT_EVENT: - if (ds is NodeSprite) { - // If the node is selected rollout do not cause details go off - if(ds.props.$selected) - ds.props.detailFlag = true; - else - ds.props.detailFlag = false; - NodeSprite(ds).visitEdges(function(e:EdgeSprite):Boolean { - graphMediator.resetDataSprite(e); - return false; - }); - - graphMediator.updateLabels(); - } else if (ds is EdgeSprite) { - - } - } - } - } +package org.cytoscapeweb.controller +{ + import flare.vis.data.DataSprite; + import flare.vis.data.EdgeSprite; + import flare.vis.data.NodeSprite; + + import org.cytoscapeweb.ApplicationFacade; + import org.cytoscapeweb.model.converters.ExternalObjectConverter; + import org.cytoscapeweb.util.Edges; + import org.cytoscapeweb.util.ExternalFunctions; + import org.cytoscapeweb.util.Groups; + import org.cytoscapeweb.view.render.CBioNodeRenderer; + import org.puremvc.as3.interfaces.INotification; + + public class CBioHandleHoverCommand extends HandleHoverCommand + { + public function CBioHandleHoverCommand() + { + super(); + } + + override public function execute(notification:INotification):void { + super.execute(notification); + + var ds:DataSprite = notification.getBody() as DataSprite; + var action:String = notification.getName(); + var group:String = Groups.groupOf(ds); + + var type:String = action === ApplicationFacade.ROLLOVER_EVENT ? "mouseover" : "mouseout"; + var previousDs:DataSprite; + + switch (action) { + case ApplicationFacade.ROLLOVER_EVENT: + // For the hovered node added prop.detailFlag true to show the details. + if (ds is NodeSprite) { + ds.props.detailFlag = true; + NodeSprite(ds).visitEdges(function(e:EdgeSprite):Boolean { + graphMediator.resetDataSprite(e); + return false; + }); + + graphMediator.updateLabels(); + } else if (ds is EdgeSprite) { + + } + break; + case ApplicationFacade.ROLLOUT_EVENT: + if (ds is NodeSprite) { + // If the node is selected rollout do not cause details go off + if(ds.props.$selected) + ds.props.detailFlag = true; + else + ds.props.detailFlag = false; + NodeSprite(ds).visitEdges(function(e:EdgeSprite):Boolean { + graphMediator.resetDataSprite(e); + return false; + }); + + graphMediator.updateLabels(); + } else if (ds is EdgeSprite) { + + } + } + } + } } \ No newline at end of file diff --git a/portal/src/main/webapp/swf/src/CBioNodeRenderer.as b/src/main/resources/webapp/swf/src/CBioNodeRenderer.as similarity index 100% rename from portal/src/main/webapp/swf/src/CBioNodeRenderer.as rename to src/main/resources/webapp/swf/src/CBioNodeRenderer.as diff --git a/portal/src/main/webapp/swf/src/DeselectCommand.as b/src/main/resources/webapp/swf/src/DeselectCommand.as similarity index 100% rename from portal/src/main/webapp/swf/src/DeselectCommand.as rename to src/main/resources/webapp/swf/src/DeselectCommand.as diff --git a/portal/src/main/webapp/swf/src/Edges.as b/src/main/resources/webapp/swf/src/Edges.as similarity index 99% rename from portal/src/main/webapp/swf/src/Edges.as rename to src/main/resources/webapp/swf/src/Edges.as index 067eae8d909..b6119c11b4f 100644 --- a/portal/src/main/webapp/swf/src/Edges.as +++ b/src/main/resources/webapp/swf/src/Edges.as @@ -39,7 +39,7 @@ package org.cytoscapeweb.util { import org.cytoscapeweb.model.ConfigProxy; import org.cytoscapeweb.model.data.VisualStyleVO; import org.cytoscapeweb.view.render.CBioEdgeRenderer; - import org.cytoscapeweb.view.render.EdgeRenderer; + import org.cytoscapeweb.view.render.EdgeRenderer; public class Edges { diff --git a/portal/src/main/webapp/swf/src/ExternalMediator.as b/src/main/resources/webapp/swf/src/ExternalMediator.as similarity index 100% rename from portal/src/main/webapp/swf/src/ExternalMediator.as rename to src/main/resources/webapp/swf/src/ExternalMediator.as diff --git a/portal/src/main/webapp/swf/src/Nodes.as b/src/main/resources/webapp/swf/src/Nodes.as similarity index 100% rename from portal/src/main/webapp/swf/src/Nodes.as rename to src/main/resources/webapp/swf/src/Nodes.as diff --git a/portal/src/main/webapp/swf/src/README.txt b/src/main/resources/webapp/swf/src/README.txt similarity index 100% rename from portal/src/main/webapp/swf/src/README.txt rename to src/main/resources/webapp/swf/src/README.txt diff --git a/portal/src/main/webapp/swf/src/SelectCommand.as b/src/main/resources/webapp/swf/src/SelectCommand.as similarity index 100% rename from portal/src/main/webapp/swf/src/SelectCommand.as rename to src/main/resources/webapp/swf/src/SelectCommand.as diff --git a/portal/src/main/webapp/swf/src/ShowProfileDataCommand.as b/src/main/resources/webapp/swf/src/ShowProfileDataCommand.as similarity index 97% rename from portal/src/main/webapp/swf/src/ShowProfileDataCommand.as rename to src/main/resources/webapp/swf/src/ShowProfileDataCommand.as index 4b02739d518..6bbf8bc992a 100644 --- a/portal/src/main/webapp/swf/src/ShowProfileDataCommand.as +++ b/src/main/resources/webapp/swf/src/ShowProfileDataCommand.as @@ -1,19 +1,19 @@ -package org.cytoscapeweb.controller { - import org.puremvc.as3.interfaces.INotification; - import org.cytoscapeweb.view.render.CBioNodeRenderer; - - /** - * Handle enable and disable of whether profile data should always be shown. - */ - public class ShowProfileDataCommand extends BaseSimpleCommand { - - override public function execute(notification:INotification):void { - var show:Boolean = notification.getBody() as Boolean; - - if (show != CBioNodeRenderer.instance.detailFlag) { - CBioNodeRenderer.instance.detailFlag = show; - graphMediator.updateView(); - } - } - } +package org.cytoscapeweb.controller { + import org.puremvc.as3.interfaces.INotification; + import org.cytoscapeweb.view.render.CBioNodeRenderer; + + /** + * Handle enable and disable of whether profile data should always be shown. + */ + public class ShowProfileDataCommand extends BaseSimpleCommand { + + override public function execute(notification:INotification):void { + var show:Boolean = notification.getBody() as Boolean; + + if (show != CBioNodeRenderer.instance.detailFlag) { + CBioNodeRenderer.instance.detailFlag = show; + graphMediator.updateView(); + } + } + } } \ No newline at end of file diff --git a/portal/src/main/webapp/swf/src/cytoscapeweb.js b/src/main/resources/webapp/swf/src/cytoscapeweb.js similarity index 100% rename from portal/src/main/webapp/swf/src/cytoscapeweb.js rename to src/main/resources/webapp/swf/src/cytoscapeweb.js diff --git a/portal/src/main/webapp/WEB-INF/tags/template.tag b/src/main/resources/webapp/tags/template.tag similarity index 100% rename from portal/src/main/webapp/WEB-INF/tags/template.tag rename to src/main/resources/webapp/tags/template.tag diff --git a/portal/src/main/webapp/tracking_include.jsp b/src/main/resources/webapp/tracking_include.jsp similarity index 100% rename from portal/src/main/webapp/tracking_include.jsp rename to src/main/resources/webapp/tracking_include.jsp diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMyBatisRepositoryTest.java similarity index 89% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMyBatisRepositoryTest.java index cb880fe0190..242103d2f1d 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/AlterationDriverAnnotationMyBatisRepositoryTest.java @@ -1,22 +1,18 @@ package org.cbioportal.persistence.mybatis; +import java.util.Arrays; +import java.util.List; import org.cbioportal.model.AlterationDriverAnnotation; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.Arrays; -import java.util.List; - -import static org.junit.Assert.*; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {AlterationDriverAnnotationMyBatisRepository.class, TestConfig.class}) public class AlterationDriverAnnotationMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/AlterationMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/AlterationMyBatisRepositoryTest.java similarity index 98% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/AlterationMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/AlterationMyBatisRepositoryTest.java index 3ea53acf77e..440624b753b 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/AlterationMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/AlterationMyBatisRepositoryTest.java @@ -1,21 +1,33 @@ package org.cbioportal.persistence.mybatis; -import org.cbioportal.model.*; +import java.sql.SQLException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashSet; +import java.util.List; +import java.util.Set; +import java.util.TreeSet; +import org.cbioportal.model.AlterationCountByGene; +import org.cbioportal.model.AlterationCountByStructuralVariant; +import org.cbioportal.model.AlterationFilter; +import org.cbioportal.model.CNA; +import org.cbioportal.model.CopyNumberCountByGene; +import org.cbioportal.model.MolecularProfileCaseIdentifier; +import org.cbioportal.model.MutationEventType; +import org.cbioportal.model.QueryElement; import org.cbioportal.model.util.Select; +import org.cbioportal.persistence.mybatis.config.TestConfig; +import org.h2.tools.Server; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.*; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {AlterationMyBatisRepository.class, MolecularProfileMyBatisRepository.class, TestConfig.class}) public class AlterationMyBatisRepositoryTest { // mutation and cna events in testSql.sql diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/CancerTypeMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/CancerTypeMyBatisRepositoryTest.java similarity index 94% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/CancerTypeMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/CancerTypeMyBatisRepositoryTest.java index 8ab1a4b6040..bb071cb76bb 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/CancerTypeMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/CancerTypeMyBatisRepositoryTest.java @@ -1,20 +1,18 @@ package org.cbioportal.persistence.mybatis; +import java.util.List; import org.cbioportal.model.TypeOfCancer; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {CancerTypeMyBatisRepository.class, TestConfig.class}) public class CancerTypeMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMyBatisRepositoryTest.java similarity index 86% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMyBatisRepositoryTest.java index a69bffcfee9..2166b2d0ab1 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/ClinicalAttributeMyBatisRepositoryTest.java @@ -1,22 +1,22 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Optional; import org.cbioportal.model.ClinicalAttribute; import org.cbioportal.model.ClinicalAttributeCount; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {ClinicalAttributeMyBatisRepository.class, TestConfig.class}) public class ClinicalAttributeMyBatisRepositoryTest { @Autowired @@ -60,8 +60,10 @@ public void getAllClinicalAttributesDetailedProjection() throws Exception { null, null, null); Assert.assertEquals(28, result.size()); - ClinicalAttribute clinicalAttribute = result.get(0); - Assert.assertEquals("RETROSPECTIVE_COLLECTION", clinicalAttribute.getAttrId()); + Optional clinicalAttributeOptional = + result.stream().filter(r -> r.getAttrId().equals("RETROSPECTIVE_COLLECTION")).findAny(); + Assert.assertTrue(clinicalAttributeOptional.isPresent()); + ClinicalAttribute clinicalAttribute = clinicalAttributeOptional.get(); Assert.assertEquals("study_tcga_pub", clinicalAttribute.getCancerStudyIdentifier()); Assert.assertEquals((Integer) 1, clinicalAttribute.getCancerStudyId()); Assert.assertEquals("STRING", clinicalAttribute.getDatatype()); @@ -137,8 +139,10 @@ public void getAllClinicalAttributesInStudySummaryProjection() throws Exception "study_tcga_pub", "SUMMARY", null, null, null, null); Assert.assertEquals(14, result.size()); - ClinicalAttribute clinicalAttribute = result.get(0); - Assert.assertEquals("RETROSPECTIVE_COLLECTION", clinicalAttribute.getAttrId()); + Optional clinicalAttributeOptional = + result.stream().filter(r -> r.getAttrId().equals("RETROSPECTIVE_COLLECTION")).findAny(); + Assert.assertTrue(clinicalAttributeOptional.isPresent()); + ClinicalAttribute clinicalAttribute = clinicalAttributeOptional.get(); Assert.assertEquals("study_tcga_pub", clinicalAttribute.getCancerStudyIdentifier()); Assert.assertEquals((Integer) 1, clinicalAttribute.getCancerStudyId()); Assert.assertEquals("STRING", clinicalAttribute.getDatatype()); @@ -198,9 +202,10 @@ public void getClinicalAttributeCountsBySampleIds() throws Exception { .getClinicalAttributeCountsBySampleIds(studyId, sampleIds); Assert.assertEquals(10, result.size()); - ClinicalAttributeCount clinicalAttributeCount= result.get(0); - Assert.assertEquals("RETROSPECTIVE_COLLECTION", clinicalAttributeCount.getAttrId()); - Assert.assertEquals((Integer) 1, clinicalAttributeCount.getCount()); + Optional clinicalAttributeCountOptional = + result.stream().filter(r -> r.getAttrId().equals("RETROSPECTIVE_COLLECTION")).findAny(); + Assert.assertTrue(clinicalAttributeCountOptional.isPresent()); + Assert.assertEquals((Integer) 1, clinicalAttributeCountOptional.get().getCount()); } @Test @@ -217,7 +222,9 @@ public void getClinicalAttributeCountsBySampleListId() throws Exception { Assert.assertEquals(10, result.size()); ClinicalAttributeCount clinicalAttributeCount = result.get(1); - Assert.assertEquals("OTHER_SAMPLE_ID", clinicalAttributeCount.getAttrId()); - Assert.assertEquals((Integer) 1, clinicalAttributeCount.getCount()); + Optional clinicalAttributeCountOptional = + result.stream().filter(r -> r.getAttrId().equals("OTHER_SAMPLE_ID")).findAny(); + Assert.assertTrue(clinicalAttributeCountOptional.isPresent()); + Assert.assertEquals((Integer) 1, clinicalAttributeCountOptional.get().getCount()); } } diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ClinicalDataMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/ClinicalDataMyBatisRepositoryTest.java similarity index 88% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ClinicalDataMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/ClinicalDataMyBatisRepositoryTest.java index 406e830c8fb..641d3399c56 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ClinicalDataMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/ClinicalDataMyBatisRepositoryTest.java @@ -1,27 +1,27 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Optional; +import java.util.stream.Collectors; + import org.cbioportal.model.ClinicalData; import org.cbioportal.model.ClinicalDataCount; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.persistence.PersistenceConstants; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; -import java.util.Optional; -import java.util.stream.Collectors; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {ClinicalDataMyBatisRepository.class, PatientMyBatisRepository.class, TestConfig.class}) public class ClinicalDataMyBatisRepositoryTest { private static int noPaging = 0; @@ -59,11 +59,14 @@ public void getAllClinicalDataOfSampleInStudyNullAttributeSummaryProjection() { "TCGA-A1-A0SB-01", null, "SUMMARY", null, null, null, null); Assert.assertEquals(4, result.size()); - ClinicalData data = result.get(0); - Assert.assertEquals("DAYS_TO_COLLECTION", data.getAttrId()); - Assert.assertEquals("276", data.getAttrValue()); - Assert.assertEquals((Integer) 1, data.getInternalId()); - Assert.assertNull(data.getClinicalAttribute()); + Optional clinicalDataOptional = + result.stream().filter(r -> r.getAttrId().equals("DAYS_TO_COLLECTION")).findAny(); + Assert.assertTrue(clinicalDataOptional.isPresent()); + ClinicalData clinicalAttribute = clinicalDataOptional.get(); + + Assert.assertEquals("276", clinicalAttribute.getAttrValue()); + Assert.assertEquals((Integer) 1, clinicalAttribute.getInternalId()); + Assert.assertNull(clinicalAttribute.getClinicalAttribute()); } @Test @@ -143,11 +146,15 @@ public void getAllClinicalDataOfPatientInStudyNullAttributeSummaryProjection() { "TCGA-A1-A0SB", null, "SUMMARY", null, null, null, null); Assert.assertEquals(3, result.size()); - ClinicalData data = result.get(0); - Assert.assertEquals("FORM_COMPLETION_DATE", data.getAttrId()); - Assert.assertEquals("2013-12-5", data.getAttrValue()); - Assert.assertEquals((Integer) 1, data.getInternalId()); - Assert.assertNull(data.getClinicalAttribute()); + + Optional clinicalDataOptional = + result.stream().filter(r -> r.getAttrId().equals("FORM_COMPLETION_DATE")).findAny(); + Assert.assertTrue(clinicalDataOptional.isPresent()); + ClinicalData clinicalAttribute = clinicalDataOptional.get(); + + Assert.assertEquals("2013-12-5", clinicalAttribute.getAttrValue()); + Assert.assertEquals((Integer) 1, clinicalAttribute.getInternalId()); + Assert.assertNull(clinicalAttribute.getClinicalAttribute()); } @Test @@ -226,7 +233,10 @@ public void getAllClinicalDataInStudyNullAttributeSummaryProjection() { null, PersistenceConstants.SAMPLE_CLINICAL_DATA_TYPE, "SUMMARY", null, null, null, null); Assert.assertEquals(8, result.size()); - ClinicalData data = result.get(0); + Optional clinicalDataOptional = + result.stream().filter(r -> r.getAttrId().equals("DAYS_TO_COLLECTION")).findAny(); + Assert.assertTrue(clinicalDataOptional.isPresent()); + ClinicalData data = clinicalDataOptional.get(); Assert.assertEquals("DAYS_TO_COLLECTION", data.getAttrId()); Assert.assertEquals("276", data.getAttrValue()); Assert.assertEquals((Integer) 1, data.getInternalId()); @@ -321,11 +331,14 @@ public void fetchAllClinicalDataInStudy() { PersistenceConstants.SAMPLE_CLINICAL_DATA_TYPE, "SUMMARY"); Assert.assertEquals(8, result.size()); - ClinicalData data = result.get(0); - Assert.assertEquals("DAYS_TO_COLLECTION", data.getAttrId()); - Assert.assertEquals("276", data.getAttrValue()); - Assert.assertEquals((Integer) 1, data.getInternalId()); - Assert.assertNull(data.getClinicalAttribute()); + Optional clinicalDataOptional = + result.stream().filter(r -> r.getAttrId().equals("DAYS_TO_COLLECTION")).findAny(); + Assert.assertTrue(clinicalDataOptional.isPresent()); + ClinicalData clinicalAttribute = clinicalDataOptional.get(); + + Assert.assertEquals("276", clinicalAttribute.getAttrValue()); + Assert.assertEquals((Integer) 1, clinicalAttribute.getInternalId()); + Assert.assertNull(clinicalAttribute.getClinicalAttribute()); } @Test @@ -344,11 +357,14 @@ public void fetchClinicalDataNullAttributeSummaryProjection() { PersistenceConstants.SAMPLE_CLINICAL_DATA_TYPE, "SUMMARY"); Assert.assertEquals(8, result.size()); - ClinicalData data = result.get(0); - Assert.assertEquals("DAYS_TO_COLLECTION", data.getAttrId()); - Assert.assertEquals("276", data.getAttrValue()); - Assert.assertEquals((Integer) 1, data.getInternalId()); - Assert.assertNull(data.getClinicalAttribute()); + Optional clinicalDataOptional = + result.stream().filter(r -> r.getAttrId().equals("DAYS_TO_COLLECTION")).findAny(); + Assert.assertTrue(clinicalDataOptional.isPresent()); + ClinicalData clinicalAttribute = clinicalDataOptional.get(); + + Assert.assertEquals("276", clinicalAttribute.getAttrValue()); + Assert.assertEquals((Integer) 1, clinicalAttribute.getInternalId()); + Assert.assertNull(clinicalAttribute.getClinicalAttribute()); } @Test diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ClinicalEventMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/ClinicalEventMyBatisRepositoryTest.java similarity index 81% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ClinicalEventMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/ClinicalEventMyBatisRepositoryTest.java index d44814115e9..90fe8046a9e 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ClinicalEventMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/ClinicalEventMyBatisRepositoryTest.java @@ -1,14 +1,18 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.List; +import java.util.Optional; import org.cbioportal.model.ClinicalEvent; import org.cbioportal.model.ClinicalEventData; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; +import org.cbioportal.persistence.mybatis.util.MolecularProfileCaseIdentifierUtil; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import java.util.ArrayList; @@ -21,8 +25,7 @@ import static java.util.stream.Collectors.groupingBy; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {ClinicalEventMyBatisRepository.class, MolecularProfileCaseIdentifierUtil.class, TestConfig.class}) public class ClinicalEventMyBatisRepositoryTest { @Autowired @@ -35,8 +38,12 @@ public void getAllClinicalEventsOfPatientInStudyIdProjection() throws Exception "study_tcga_pub", "TCGA-A1-A0SB", "ID", null, null, null, null); Assert.assertEquals(2, result.size()); - ClinicalEvent clinicalEvent = result.get(0); - Assert.assertEquals((Integer) 2, clinicalEvent.getClinicalEventId()); + + Optional clinicalEventOptional = + result.stream().filter(r -> r.getClinicalEventId() == 2).findAny(); + Assert.assertTrue(clinicalEventOptional.isPresent()); + ClinicalEvent clinicalEvent = clinicalEventOptional.get(); + Assert.assertEquals("study_tcga_pub", clinicalEvent.getStudyId()); Assert.assertEquals("TCGA-A1-A0SB", clinicalEvent.getPatientId()); Assert.assertEquals("SPECIMEN", clinicalEvent.getEventType()); @@ -49,8 +56,12 @@ public void getAllClinicalEventsOfPatientInStudySummaryProjection() throws Excep "study_tcga_pub", "TCGA-A1-A0SB", "SUMMARY", null, null, null, null); Assert.assertEquals(2, result.size()); - ClinicalEvent clinicalEvent = result.get(0); - Assert.assertEquals((Integer) 2, clinicalEvent.getClinicalEventId()); + + Optional clinicalEventOptional = + result.stream().filter(r -> r.getClinicalEventId() == 2).findAny(); + Assert.assertTrue(clinicalEventOptional.isPresent()); + ClinicalEvent clinicalEvent = clinicalEventOptional.get(); + Assert.assertEquals("study_tcga_pub", clinicalEvent.getStudyId()); Assert.assertEquals("TCGA-A1-A0SB", clinicalEvent.getPatientId()); Assert.assertEquals("SPECIMEN", clinicalEvent.getEventType()); @@ -65,8 +76,12 @@ public void getAllClinicalEventsOfPatientInStudyDetailedProjection() throws Exce "study_tcga_pub", "TCGA-A1-A0SB", "DETAILED", null, null, null, null); Assert.assertEquals(2, result.size()); - ClinicalEvent clinicalEvent = result.get(0); - Assert.assertEquals((Integer) 2, clinicalEvent.getClinicalEventId()); + + Optional clinicalEventOptional = + result.stream().filter(r -> r.getClinicalEventId() == 2).findAny(); + Assert.assertTrue(clinicalEventOptional.isPresent()); + ClinicalEvent clinicalEvent = clinicalEventOptional.get(); + Assert.assertEquals("study_tcga_pub", clinicalEvent.getStudyId()); Assert.assertEquals("TCGA-A1-A0SB", clinicalEvent.getPatientId()); Assert.assertEquals("SPECIMEN", clinicalEvent.getEventType()); @@ -131,7 +146,12 @@ public void getAllClinicalEventsInStudyIdProjection() throws Exception { "study_tcga_pub", "ID", null, null, null, null); Assert.assertEquals(4, result.size()); - ClinicalEvent clinicalEvent = result.get(0); + + Optional clinicalEventOptional = + result.stream().filter(r -> r.getClinicalEventId() == 2).findAny(); + Assert.assertTrue(clinicalEventOptional.isPresent()); + ClinicalEvent clinicalEvent = clinicalEventOptional.get(); + Assert.assertEquals((Integer) 2, clinicalEvent.getClinicalEventId()); Assert.assertEquals("study_tcga_pub", clinicalEvent.getStudyId()); Assert.assertEquals("SPECIMEN", clinicalEvent.getEventType()); @@ -144,8 +164,12 @@ public void getAllClinicalEventsInStudySummaryProjection() throws Exception { "study_tcga_pub", "SUMMARY", null, null, null, null); Assert.assertEquals(4, result.size()); - ClinicalEvent clinicalEvent = result.get(0); - Assert.assertEquals((Integer) 2, clinicalEvent.getClinicalEventId()); + + Optional clinicalEventOptional = + result.stream().filter(r -> r.getClinicalEventId() == 2).findAny(); + Assert.assertTrue(clinicalEventOptional.isPresent()); + ClinicalEvent clinicalEvent = clinicalEventOptional.get(); + Assert.assertEquals("study_tcga_pub", clinicalEvent.getStudyId()); Assert.assertEquals("SPECIMEN", clinicalEvent.getEventType()); Assert.assertEquals((Integer) 233, clinicalEvent.getStartDate()); @@ -159,8 +183,12 @@ public void getAllClinicalEventsInStudyDetailedProjection() throws Exception { "study_tcga_pub", "DETAILED", null, null, null, null); Assert.assertEquals(4, result.size()); - ClinicalEvent clinicalEvent = result.get(0); - Assert.assertEquals((Integer) 2, clinicalEvent.getClinicalEventId()); + + Optional clinicalEventOptional = + result.stream().filter(r -> r.getClinicalEventId() == 2).findAny(); + Assert.assertTrue(clinicalEventOptional.isPresent()); + ClinicalEvent clinicalEvent = clinicalEventOptional.get(); + Assert.assertEquals("study_tcga_pub", clinicalEvent.getStudyId()); Assert.assertEquals("SPECIMEN", clinicalEvent.getEventType()); Assert.assertEquals((Integer) 233, clinicalEvent.getStartDate()); diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMyBatisRepositoryTest.java similarity index 96% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMyBatisRepositoryTest.java index 8b91b96ae35..38a7720a823 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/CopyNumberSegmentMyBatisRepositoryTest.java @@ -1,22 +1,20 @@ package org.cbioportal.persistence.mybatis; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.CopyNumberSeg; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {CopyNumberSegmentMyBatisRepository.class, TestConfig.class}) public class CopyNumberSegmentMyBatisRepositoryTest { @Autowired @@ -89,15 +87,15 @@ public void fetchSamplesWithCopyNumberSegments() throws Exception { ); Assert.assertEquals(2, result0.size()); - Assert.assertEquals((Integer)1, result0.get(0)); - Assert.assertEquals((Integer)15, result0.get(1)); + Assert.assertEquals((Integer)1, result0.get(1)); + Assert.assertEquals((Integer)15, result0.get(0)); Assert.assertEquals(1, result1.size()); Assert.assertEquals((Integer)1, result1.get(0)); Assert.assertEquals(2, result2.size()); - Assert.assertEquals((Integer)1, result2.get(0)); - Assert.assertEquals((Integer)15, result2.get(1)); + Assert.assertEquals((Integer)1, result2.get(1)); + Assert.assertEquals((Integer)15, result2.get(0)); Assert.assertEquals(0, result3.size()); } diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/CosmicCountMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/CosmicCountMyBatisRepositoryTest.java similarity index 88% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/CosmicCountMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/CosmicCountMyBatisRepositoryTest.java index b6c299e24d2..585463834d3 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/CosmicCountMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/CosmicCountMyBatisRepositoryTest.java @@ -2,19 +2,17 @@ import java.util.ArrayList; import java.util.List; - import org.cbioportal.model.CosmicMutation; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {CosmicCountMyBatisRepository.class, TestConfig.class}) public class CosmicCountMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/DataAccessTokenMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/DataAccessTokenMyBatisRepositoryTest.java similarity index 90% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/DataAccessTokenMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/DataAccessTokenMyBatisRepositoryTest.java index 1a285539d93..1bce1c32c8a 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/DataAccessTokenMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/DataAccessTokenMyBatisRepositoryTest.java @@ -1,23 +1,21 @@ package org.cbioportal.persistence.mybatis; +import java.util.Calendar; +import java.util.Date; +import java.util.List; +import java.util.UUID; import org.cbioportal.model.DataAccessToken; -import org.cbioportal.model.ClinicalDataCount; -import org.cbioportal.model.meta.BaseMeta; -import org.cbioportal.persistence.PersistenceConstants; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; -import org.springframework.transaction.annotation.Transactional; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.concurrent.TimeUnit; -import java.util.*; +import org.springframework.transaction.annotation.Transactional; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {DataAccessTokenMyBatisRepository.class, TestConfig.class}) public class DataAccessTokenMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMyBatisRepositoryTest.java similarity index 99% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMyBatisRepositoryTest.java index 89a3fe0dbbf..ef098188c8c 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/DiscreteCopyNumberMyBatisRepositoryTest.java @@ -1,5 +1,9 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Comparator; +import java.util.List; import org.cbioportal.model.CNA; import org.cbioportal.model.CopyNumberCountByGene; import org.cbioportal.model.DiscreteCopyNumberData; @@ -8,23 +12,17 @@ import org.cbioportal.model.ReferenceGenomeGene; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.model.util.Select; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Comparator; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {DiscreteCopyNumberMyBatisRepository.class, ReferenceGenomeGeneMyBatisRepository.class, TestConfig.class}) public class DiscreteCopyNumberMyBatisRepositoryTest { // mutation, cna and struct var events in testSql.sql diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GeneMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/GeneMyBatisRepositoryTest.java similarity index 97% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GeneMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/GeneMyBatisRepositoryTest.java index 9d3aff17b74..796bb0348aa 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GeneMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/GeneMyBatisRepositoryTest.java @@ -32,22 +32,20 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.Gene; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.ArrayList; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {GeneMyBatisRepository.class, TestConfig.class}) public class GeneMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenePanelMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/GenePanelMyBatisRepositoryTest.java similarity index 96% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenePanelMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/GenePanelMyBatisRepositoryTest.java index 8f32d861c9e..3e51b7bf9e5 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenePanelMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/GenePanelMyBatisRepositoryTest.java @@ -1,25 +1,23 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; import org.cbioportal.model.GenePanel; import org.cbioportal.model.GenePanelData; import org.cbioportal.model.GenePanelToGene; import org.cbioportal.model.MolecularProfileCaseIdentifier; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {GenePanelMyBatisRepository.class, TestConfig.class}) public class GenePanelMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenericAssayMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/GenericAssayMyBatisRepositoryTest.java similarity index 90% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenericAssayMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/GenericAssayMyBatisRepositoryTest.java index ccff2d375c6..98dcdb0c8d6 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenericAssayMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/GenericAssayMyBatisRepositoryTest.java @@ -3,20 +3,18 @@ import java.util.Arrays; import java.util.List; - import org.cbioportal.model.GenericAssayAdditionalProperty; import org.cbioportal.model.meta.GenericAssayMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {GenericAssayMyBatisRepository.class, TestConfig.class}) public class GenericAssayMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMyBatisRepositoryTest.java similarity index 95% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMyBatisRepositoryTest.java index bc1e76ee8d4..8b27fe13768 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/GenesetHierarchyMyBatisRepositoryTest.java @@ -2,20 +2,18 @@ import java.util.Arrays; import java.util.List; - import org.cbioportal.model.Geneset; import org.cbioportal.model.GenesetHierarchyInfo; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {GenesetHierarchyMyBatisRepository.class, TestConfig.class}) public class GenesetHierarchyMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenesetMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/GenesetMyBatisRepositoryTest.java similarity index 96% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenesetMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/GenesetMyBatisRepositoryTest.java index 710463f4678..7580baf8393 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/GenesetMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/GenesetMyBatisRepositoryTest.java @@ -32,24 +32,22 @@ package org.cbioportal.persistence.mybatis; +import java.util.Arrays; +import java.util.List; import org.cbioportal.model.Gene; import org.cbioportal.model.Geneset; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.persistence.PersistenceConstants; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.Arrays; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {GenesetMyBatisRepository.class, TestConfig.class}) public class GenesetMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/MolecularDataMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/MolecularDataMyBatisRepositoryTest.java similarity index 96% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/MolecularDataMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/MolecularDataMyBatisRepositoryTest.java index 9e6593791d3..d3241bcd6cd 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/MolecularDataMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/MolecularDataMyBatisRepositoryTest.java @@ -1,24 +1,24 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; +import java.util.stream.Stream; import org.cbioportal.model.GeneMolecularAlteration; import org.cbioportal.model.GenesetMolecularAlteration; import org.cbioportal.model.MolecularProfileSamples; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.transaction.annotation.Transactional; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; - -import java.util.*; -import java.util.stream.Collectors; -import java.util.stream.Stream; +import org.springframework.transaction.annotation.Transactional; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {MolecularDataMyBatisRepository.class, TestConfig.class}) public class MolecularDataMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/MolecularProfileMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/MolecularProfileMyBatisRepositoryTest.java similarity index 98% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/MolecularProfileMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/MolecularProfileMyBatisRepositoryTest.java index 986c734c89d..2b4db775c3d 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/MolecularProfileMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/MolecularProfileMyBatisRepositoryTest.java @@ -1,26 +1,24 @@ package org.cbioportal.persistence.mybatis; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; +import java.util.stream.Stream; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.MolecularProfile; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.Arrays; -import java.util.List; -import java.util.stream.Collectors; -import java.util.stream.Stream; - import static org.junit.Assert.assertArrayEquals; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {MolecularProfileMyBatisRepository.class, TestConfig.class}) public class MolecularProfileMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/MutationMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/MutationMyBatisRepositoryTest.java similarity index 93% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/MutationMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/MutationMyBatisRepositoryTest.java index 6f13f7b9ff3..4919a9e4a8f 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/MutationMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/MutationMyBatisRepositoryTest.java @@ -1,5 +1,11 @@ package org.cbioportal.persistence.mybatis; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Optional; +import java.util.stream.Collectors; import org.cbioportal.model.AlleleSpecificCopyNumber; import org.cbioportal.model.Gene; import org.cbioportal.model.GeneFilterQuery; @@ -7,13 +13,14 @@ import org.cbioportal.model.MutationCountByPosition; import org.cbioportal.model.meta.MutationMeta; import org.cbioportal.model.util.Select; +import org.cbioportal.persistence.mybatis.config.TestConfig; +import org.cbioportal.persistence.mybatis.util.MolecularProfileCaseIdentifierUtil; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import java.util.ArrayList; @@ -21,8 +28,7 @@ import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {MutationMyBatisRepository.class, MolecularProfileCaseIdentifierUtil.class, TestConfig.class}) public class MutationMyBatisRepositoryTest { // mutation, cna and struct var events in testSql.sql @@ -114,9 +120,13 @@ public void getMutationsInMolecularProfileBySampleListIdSummaryProjection() thro "study_tcga_pub_mutations", "study_tcga_pub_all", null, null, "SUMMARY", null, null, null, null); Assert.assertEquals(8, result.size()); - Mutation mutation = result.get(0); + + Optional mutationOptional = + result.stream().filter(r -> r.getSampleId().equals("TCGA-A1-A0SB-01")).findAny(); + Assert.assertTrue(mutationOptional.isPresent()); + Mutation mutation = mutationOptional.get(); + Assert.assertEquals("study_tcga_pub_mutations", mutation.getMolecularProfileId()); - Assert.assertEquals("TCGA-A1-A0SB-01", mutation.getSampleId()); Assert.assertEquals((Integer) 207, mutation.getEntrezGeneId()); Assert.assertEquals("cyclases/Protein", mutation.getAminoAcidChange()); Assert.assertEquals("genome.wustl.edu", mutation.getCenter()); @@ -155,7 +165,11 @@ public void getMutationsInMolecularProfileBySampleListIdAndEntrezGeneIdsSummaryP "study_tcga_pub_mutations", "study_tcga_pub_all", entrezGeneIds, null, "SUMMARY", null, null, null, null); Assert.assertEquals(3, result.size()); - Mutation mutation = result.get(0); + Optional mutationOptional = + result.stream().filter(r -> r.getSampleId().equals("TCGA-A1-A0SB-01")).findAny(); + Assert.assertTrue(mutationOptional.isPresent()); + Mutation mutation = mutationOptional.get(); + Assert.assertEquals("study_tcga_pub_mutations", mutation.getMolecularProfileId()); Assert.assertEquals("TCGA-A1-A0SB-01", mutation.getSampleId()); Assert.assertEquals((Integer) 207, mutation.getEntrezGeneId()); @@ -192,7 +206,12 @@ public void getMutationsInMolecularProfileBySampleListIdDetailedProjection() thr "study_tcga_pub_mutations", "study_tcga_pub_all", null, null, "DETAILED", null, null, null, null); Assert.assertEquals(8, result.size()); - Mutation mutation = result.get(0); + + Optional mutationOptional = + result.stream().filter(r -> r.getSampleId().equals("TCGA-A1-A0SB-01")).findAny(); + Assert.assertTrue(mutationOptional.isPresent()); + Mutation mutation = mutationOptional.get(); + Assert.assertEquals("study_tcga_pub_mutations", mutation.getMolecularProfileId()); Assert.assertEquals("TCGA-A1-A0SB-01", mutation.getSampleId()); Assert.assertEquals((Integer) 207, mutation.getEntrezGeneId()); @@ -297,15 +316,16 @@ public void getMutationsInMultipleMolecularProfiles() throws Exception { Assert.assertEquals(3, result.size()); - Mutation mutation1 = result.get(2); - Assert.assertEquals("study_tcga_pub_mutations", mutation1.getMolecularProfileId()); - Assert.assertEquals("TCGA-A1-A0SH-01", mutation1.getSampleId()); - Mutation mutation2 = result.get(1); - Assert.assertEquals("study_tcga_pub_mutations", mutation2.getMolecularProfileId()); - Assert.assertEquals("TCGA-A1-A0SH-01", mutation2.getSampleId()); - Mutation mutation3 = result.get(0); - Assert.assertEquals("acc_tcga_mutations", mutation3.getMolecularProfileId()); - Assert.assertEquals("TCGA-A1-B0SO-01", mutation3.getSampleId()); + Optional sampleOmutationOptional = + result.stream().filter(r -> r.getSampleId().equals("TCGA-A1-B0SO-01") && r.getMolecularProfileId().equals("acc_tcga_mutations")).findAny(); + + List sampleHmutations = result.stream().filter( + r -> r.getSampleId().equals("TCGA-A1-A0SH-01") && + r.getMolecularProfileId().equals("study_tcga_pub_mutations")).collect( + Collectors.toList()); + + Assert.assertEquals(2, sampleHmutations.size()); + Assert.assertTrue(sampleOmutationOptional.isPresent()); } @Test @@ -404,7 +424,7 @@ public void getMutationsInMultipleMolecularProfilesByGeneQueriesIncludeOnlyDrive Assert.assertEquals(4, result.size()); List expectedSampleIds = Arrays.asList("TCGA-A1-A0SB-01", "TCGA-A1-A0SH-01", "TCGA-A1-A0SI-01", "TCGA-A1-A0SP-01"); - assert(result.stream().allMatch(r -> expectedSampleIds.contains(r.getSampleId()))); + Assert.assertTrue(result.stream().allMatch(r -> expectedSampleIds.contains(r.getSampleId()))); } @Test @@ -426,7 +446,7 @@ public void getMutationsInMultipleMolecularProfilesByGeneQueriesIncludeOnlyVUS() Assert.assertEquals(4, result.size()); List expectedSampleIds = Arrays.asList("TCGA-A1-A0SD-01", "TCGA-A1-A0SE-01", "TCGA-A1-A0SH-01", "TCGA-A1-A0SO-01"); - assert(result.stream().allMatch(r -> expectedSampleIds.contains(r.getSampleId()))); + Assert.assertTrue(result.stream().allMatch(r -> expectedSampleIds.contains(r.getSampleId()))); } @Test @@ -468,7 +488,7 @@ public void getMutationsInMultipleMolecularProfilesByGeneQueriesFilterTiers() th Assert.assertEquals(3, result.size()); List expectedSampleIds = Arrays.asList("TCGA-A1-A0SD-01", "TCGA-A1-A0SH-01", "TCGA-A1-A0SI-01"); - assert(result.stream().allMatch(r -> expectedSampleIds.contains(r.getSampleId()))); + Assert.assertTrue(result.stream().allMatch(r -> expectedSampleIds.contains(r.getSampleId()))); } @Test @@ -490,7 +510,7 @@ public void getMutationsInMultipleMolecularProfilesByGeneQueriesMixed() throws E Assert.assertEquals(3, result.size()); List expectedSampleIds = Arrays.asList("TCGA-A1-A0SB-01", "TCGA-A1-A0SH-01", "TCGA-A1-A0SO-01"); - assert(result.stream().allMatch(r -> expectedSampleIds.contains(r.getSampleId()))); + Assert.assertTrue(result.stream().allMatch(r -> expectedSampleIds.contains(r.getSampleId()))); } @Test diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/PatientMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/PatientMyBatisRepositoryTest.java similarity index 95% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/PatientMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/PatientMyBatisRepositoryTest.java index b51906aca22..3661a80043e 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/PatientMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/PatientMyBatisRepositoryTest.java @@ -1,25 +1,23 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.List; +import java.util.stream.Collectors; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.Patient; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; -import java.util.List; -import java.util.stream.Collectors; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {PatientMyBatisRepository.class, TestConfig.class}) public class PatientMyBatisRepositoryTest { @Autowired @@ -213,7 +211,9 @@ public void getPatientIdsOfSamples() throws Exception { Arrays.asList("TCGA-A1-A0SB-01", "TCGA-A1-A0SD-01", "TCGA-A1-A0SB-02")); Assert.assertEquals(2, result.size()); - Assert.assertEquals("TCGA-A1-A0SD", result.get(0).getStableId()); - Assert.assertEquals("TCGA-A1-A0SB", result.get(1).getStableId()); + List stableIds = + result.stream().map(r -> r.getStableId()).collect(Collectors.toList()); + Assert.assertTrue(stableIds.contains("TCGA-A1-A0SD")); + Assert.assertTrue(stableIds.contains("TCGA-A1-A0SB")); } } diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMyBatisRepositoryTest.java similarity index 92% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMyBatisRepositoryTest.java index 448fd58c6f3..939548f1135 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/ReferenceGenomeGeneMyBatisRepositoryTest.java @@ -1,22 +1,20 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.List; +import org.cbioportal.model.Gene; import org.cbioportal.model.ReferenceGenome; import org.cbioportal.model.ReferenceGenomeGene; -import org.cbioportal.model.Gene; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.ArrayList; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {ReferenceGenomeGeneMyBatisRepository.class, GeneMyBatisRepository.class, TestConfig.class}) public class ReferenceGenomeGeneMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SampleListMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/SampleListMyBatisRepositoryTest.java similarity index 98% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SampleListMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/SampleListMyBatisRepositoryTest.java index f4a9f43d2eb..9103ba5fc7d 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SampleListMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/SampleListMyBatisRepositoryTest.java @@ -1,22 +1,20 @@ package org.cbioportal.persistence.mybatis; +import java.util.Arrays; +import java.util.List; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.SampleList; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.Arrays; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {SampleListMyBatisRepository.class, TestConfig.class}) public class SampleListMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SampleMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/SampleMyBatisRepositoryTest.java similarity index 98% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SampleMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/SampleMyBatisRepositoryTest.java index 31cbb307f00..1d4614cecd4 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SampleMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/SampleMyBatisRepositoryTest.java @@ -1,26 +1,24 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.List; +import java.util.stream.Collectors; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.Patient; import org.cbioportal.model.Sample; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; -import java.util.List; -import java.util.stream.Collectors; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {SampleMyBatisRepository.class, TestConfig.class}) public class SampleMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMyBatisRepositoryTest.java similarity index 95% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMyBatisRepositoryTest.java index fe9b2419e5e..197afb2dc6b 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/SignificantCopyNumberRegionMyBatisRepositoryTest.java @@ -1,23 +1,21 @@ package org.cbioportal.persistence.mybatis; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.Gistic; import org.cbioportal.model.GisticToGene; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {SignificantCopyNumberRegionMyBatisRepository.class, TestConfig.class}) public class SignificantCopyNumberRegionMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMyBatisRepositoryTest.java similarity index 95% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMyBatisRepositoryTest.java index 77185e15e6a..3d92ac2ff52 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/SignificantlyMutatedGeneMyBatisRepositoryTest.java @@ -1,21 +1,19 @@ package org.cbioportal.persistence.mybatis; +import java.math.BigDecimal; +import java.util.List; import org.cbioportal.model.MutSig; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.math.BigDecimal; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {SignificantlyMutatedGeneMyBatisRepository.class, TestConfig.class}) public class SignificantlyMutatedGeneMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/StructuralVariantMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/StructuralVariantMyBatisRepositoryTest.java similarity index 98% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/StructuralVariantMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/StructuralVariantMyBatisRepositoryTest.java index 72f882290e4..149d2327f01 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/StructuralVariantMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/StructuralVariantMyBatisRepositoryTest.java @@ -23,6 +23,10 @@ package org.cbioportal.persistence.mybatis; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; import org.cbioportal.model.GeneFilterQuery; import org.cbioportal.model.StructuralVariantFilterQuery; import org.cbioportal.model.StructuralVariant; @@ -30,13 +34,14 @@ import org.cbioportal.model.StructuralVariantQuery; import org.cbioportal.model.StructuralVariantSpecialValue; import org.cbioportal.model.util.Select; +import org.cbioportal.persistence.mybatis.config.TestConfig; +import org.cbioportal.persistence.mybatis.util.MolecularProfileCaseIdentifierUtil; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import java.util.ArrayList; @@ -47,8 +52,8 @@ import java.util.stream.Collectors; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {StructuralVariantMyBatisRepository.class, StructuralVariantMapper.class, + MolecularProfileCaseIdentifierUtil.class, TestConfig.class}) public class StructuralVariantMyBatisRepositoryTest { // struct var events in testSql.sql diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/StudyMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/StudyMyBatisRepositoryTest.java similarity index 98% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/StudyMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/StudyMyBatisRepositoryTest.java index 86a194942b3..f3bd2772229 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/StudyMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/StudyMyBatisRepositoryTest.java @@ -1,25 +1,23 @@ package org.cbioportal.persistence.mybatis; +import java.text.SimpleDateFormat; +import java.util.Arrays; +import java.util.List; +import java.util.TimeZone; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.CancerStudyTags; import org.cbioportal.model.TypeOfCancer; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.text.SimpleDateFormat; -import java.util.Arrays; -import java.util.List; -import java.util.TimeZone; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {StudyMyBatisRepository.class, TestConfig.class}) public class StudyMyBatisRepositoryTest { @Autowired diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/TreatmentMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/TreatmentMyBatisRepositoryTest.java similarity index 94% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/TreatmentMyBatisRepositoryTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/TreatmentMyBatisRepositoryTest.java index e61e23cb807..99f518f9a27 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/TreatmentMyBatisRepositoryTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/TreatmentMyBatisRepositoryTest.java @@ -1,23 +1,26 @@ package org.cbioportal.persistence.mybatis; +import java.util.Arrays; +import java.util.Collections; +import java.util.HashMap; +import java.util.List; +import java.util.Map; import org.cbioportal.model.ClinicalEventSample; import org.cbioportal.model.Treatment; import org.cbioportal.model.ClinicalEventKeyCode; import org.cbioportal.persistence.TreatmentRepository; +import org.cbioportal.persistence.mybatis.config.TestConfig; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Configurable; -import org.springframework.test.context.ContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import java.util.*; - @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration("/testContextDatabase.xml") -@Configurable +@SpringBootTest(classes = {TreatmentMyBatisRepository.class, TestConfig.class}) public class TreatmentMyBatisRepositoryTest { + @Autowired TreatmentRepository treatmentRepository; diff --git a/src/test/java/org/cbioportal/persistence/mybatis/VariantCountMyBatisRepositoryTest.java b/src/test/java/org/cbioportal/persistence/mybatis/VariantCountMyBatisRepositoryTest.java new file mode 100644 index 00000000000..1dd6b241105 --- /dev/null +++ b/src/test/java/org/cbioportal/persistence/mybatis/VariantCountMyBatisRepositoryTest.java @@ -0,0 +1,50 @@ +package org.cbioportal.persistence.mybatis; + +import java.util.Arrays; +import java.util.List; +import java.util.Optional; +import org.cbioportal.model.VariantCount; +import org.cbioportal.persistence.mybatis.config.TestConfig; +import org.junit.Assert; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; + +@RunWith(SpringJUnit4ClassRunner.class) +@SpringBootTest(classes = {VariantCountMyBatisRepository.class, TestConfig.class}) +public class VariantCountMyBatisRepositoryTest { + + @Autowired + private VariantCountMyBatisRepository variantCountMyBatisRepository; + + @Test + public void fetchVariantCounts() throws Exception { + + List result = variantCountMyBatisRepository.fetchVariantCounts("study_tcga_pub_mutations", + Arrays.asList(207, 207, 369), Arrays.asList("AKT1 truncating", null, "ARAF G1513 missense")); + + Assert.assertEquals(3, result.size()); + + Optional variantCountOptional = + result.stream().filter(r -> r.getKeyword() == null).findAny(); + Assert.assertTrue(variantCountOptional.isPresent()); + VariantCount variantCount1 = variantCountOptional.get(); + + Assert.assertEquals("study_tcga_pub_mutations", variantCount1.getMolecularProfileId()); + Assert.assertEquals((Integer) 207, variantCount1.getEntrezGeneId()); + Assert.assertEquals((Integer) 21, variantCount1.getNumberOfSamplesWithKeyword()); + Assert.assertEquals((Integer) 22, variantCount1.getNumberOfSamplesWithMutationInGene()); + + variantCountOptional = + result.stream().filter(r -> r.getKeyword().equals("AKT1 truncating")).findAny(); + Assert.assertTrue(variantCountOptional.isPresent()); + VariantCount variantCount2 = variantCountOptional.get(); + + Assert.assertEquals("study_tcga_pub_mutations", variantCount2.getMolecularProfileId()); + Assert.assertEquals((Integer) 207, variantCount2.getEntrezGeneId()); + Assert.assertEquals((Integer) 54, variantCount2.getNumberOfSamplesWithKeyword()); + Assert.assertEquals((Integer) 64, variantCount2.getNumberOfSamplesWithMutationInGene()); + } +} diff --git a/src/test/java/org/cbioportal/persistence/mybatis/config/TestConfig.java b/src/test/java/org/cbioportal/persistence/mybatis/config/TestConfig.java new file mode 100644 index 00000000000..91d75324a18 --- /dev/null +++ b/src/test/java/org/cbioportal/persistence/mybatis/config/TestConfig.java @@ -0,0 +1,68 @@ +package org.cbioportal.persistence.mybatis.config; + +import javax.sql.DataSource; + +import org.apache.ibatis.io.Resources; +import org.apache.ibatis.mapping.DatabaseIdProvider; +import org.apache.ibatis.mapping.VendorDatabaseIdProvider; +import org.apache.ibatis.session.SqlSessionFactory; +import org.cbioportal.persistence.mybatis.typehandler.SampleTypeTypeHandler; +import org.cbioportal.persistence.mybatis.util.OffsetCalculator; +import org.mybatis.spring.SqlSessionFactoryBean; +import org.mybatis.spring.annotation.MapperScan; +import org.springframework.boot.test.context.TestConfiguration; +import org.springframework.context.annotation.Bean; +import org.springframework.jdbc.datasource.DataSourceTransactionManager; +import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder; +import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType; +import org.springframework.transaction.PlatformTransactionManager; + +import java.io.InputStream; +import java.util.Properties; + +@TestConfiguration +@MapperScan("org.cbioportal.persistence.mybatis") +public class TestConfig { + + @Bean + public DataSource dataSource() { + return new EmbeddedDatabaseBuilder() + .setType(EmbeddedDatabaseType.H2) + .setName("testdb;DATABASE_TO_UPPER=false;MODE=MYSQL;NON_KEYWORDS=END,KEY,VALUE") + .addScript("cgds-h2.sql") + .addScript("testSql.sql") + .build(); + } + + @Bean + public SqlSessionFactory sqlSessionFactory() throws Exception { + SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean(); + factoryBean.setDataSource(dataSource()); + // mapper that mediate string to enum conversions + factoryBean.setTypeHandlers(new SampleTypeTypeHandler()); + // Create a MyBatis Configuration object + org.apache.ibatis.session.Configuration configuration = new org.apache.ibatis.session.Configuration(); + + // Set your custom DatabaseIdProvider + DatabaseIdProvider databaseIdProvider = new VendorDatabaseIdProvider(); + Properties properties = new Properties(); + // Set your database-to-databaseId mapping in the properties + properties.setProperty("MySQL", "mysql"); + properties.setProperty("H2", "h2"); + // Add more mappings as needed + databaseIdProvider.setProperties(properties); + factoryBean.setDatabaseIdProvider(databaseIdProvider); + return factoryBean.getObject(); + } + + @Bean + public OffsetCalculator offsetCalculator() { + return new OffsetCalculator(); + } + + @Bean + public PlatformTransactionManager platformTransactionManager() { + return new DataSourceTransactionManager(dataSource()); + } + +} diff --git a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/util/MolecularProfileCaseIdentifierUtilTest.java b/src/test/java/org/cbioportal/persistence/mybatis/util/MolecularProfileCaseIdentifierUtilTest.java similarity index 99% rename from persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/util/MolecularProfileCaseIdentifierUtilTest.java rename to src/test/java/org/cbioportal/persistence/mybatis/util/MolecularProfileCaseIdentifierUtilTest.java index 954932657a8..7163f5300db 100644 --- a/persistence/persistence-mybatis/src/test/java/org/cbioportal/persistence/mybatis/util/MolecularProfileCaseIdentifierUtilTest.java +++ b/src/test/java/org/cbioportal/persistence/mybatis/util/MolecularProfileCaseIdentifierUtilTest.java @@ -1,16 +1,15 @@ package org.cbioportal.persistence.mybatis.util; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Map; +import java.util.Set; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.junit.MockitoJUnitRunner; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Map; -import java.util.Set; - @RunWith(MockitoJUnitRunner.class) public class MolecularProfileCaseIdentifierUtilTest { @InjectMocks diff --git a/web/src/test/java/org/cbioportal/persistence/util/CustomKeyGeneratorTest.java b/src/test/java/org/cbioportal/persistence/util/CustomKeyGeneratorTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/persistence/util/CustomKeyGeneratorTest.java rename to src/test/java/org/cbioportal/persistence/util/CustomKeyGeneratorTest.java diff --git a/web/src/test/java/org/cbioportal/persistence/util/CustomRedisCacheIntegrationTest.java b/src/test/java/org/cbioportal/persistence/util/CustomRedisCacheIntegrationTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/persistence/util/CustomRedisCacheIntegrationTest.java rename to src/test/java/org/cbioportal/persistence/util/CustomRedisCacheIntegrationTest.java diff --git a/web/src/test/java/org/cbioportal/persistence/util/CustomRedisCacheManagerTest.java b/src/test/java/org/cbioportal/persistence/util/CustomRedisCacheManagerTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/persistence/util/CustomRedisCacheManagerTest.java rename to src/test/java/org/cbioportal/persistence/util/CustomRedisCacheManagerTest.java diff --git a/web/src/test/java/org/cbioportal/persistence/util/CustomRedisCacheTest.java b/src/test/java/org/cbioportal/persistence/util/CustomRedisCacheTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/persistence/util/CustomRedisCacheTest.java rename to src/test/java/org/cbioportal/persistence/util/CustomRedisCacheTest.java diff --git a/web/src/test/java/org/cbioportal/persistence/util/EhCacheUtilsTest.java b/src/test/java/org/cbioportal/persistence/util/EhCacheUtilsTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/persistence/util/EhCacheUtilsTest.java rename to src/test/java/org/cbioportal/persistence/util/EhCacheUtilsTest.java diff --git a/web/src/test/java/org/cbioportal/persistence/util/RedisCacheUtilsTest.java b/src/test/java/org/cbioportal/persistence/util/RedisCacheUtilsTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/persistence/util/RedisCacheUtilsTest.java rename to src/test/java/org/cbioportal/persistence/util/RedisCacheUtilsTest.java diff --git a/web/src/test/java/org/cbioportal/persistence/util/fakeclient/MockInMemoryRedissonClient.java b/src/test/java/org/cbioportal/persistence/util/fakeclient/MockInMemoryRedissonClient.java similarity index 100% rename from web/src/test/java/org/cbioportal/persistence/util/fakeclient/MockInMemoryRedissonClient.java rename to src/test/java/org/cbioportal/persistence/util/fakeclient/MockInMemoryRedissonClient.java diff --git a/web/src/test/java/org/cbioportal/persistence/util/fakeclient/MockRBucket.java b/src/test/java/org/cbioportal/persistence/util/fakeclient/MockRBucket.java similarity index 100% rename from web/src/test/java/org/cbioportal/persistence/util/fakeclient/MockRBucket.java rename to src/test/java/org/cbioportal/persistence/util/fakeclient/MockRBucket.java diff --git a/web/src/test/java/org/cbioportal/persistence/util/fakeclient/MockRKeys.java b/src/test/java/org/cbioportal/persistence/util/fakeclient/MockRKeys.java similarity index 100% rename from web/src/test/java/org/cbioportal/persistence/util/fakeclient/MockRKeys.java rename to src/test/java/org/cbioportal/persistence/util/fakeclient/MockRKeys.java diff --git a/web/src/test/java/org/cbioportal/proxy/MonkifierTest.java b/src/test/java/org/cbioportal/proxy/MonkifierTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/proxy/MonkifierTest.java rename to src/test/java/org/cbioportal/proxy/MonkifierTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/AlterationCountServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/AlterationCountServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/AlterationCountServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/AlterationCountServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/AlterationDriverAnnotationServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/AlterationDriverAnnotationServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/AlterationDriverAnnotationServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/AlterationDriverAnnotationServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/AlterationEnrichmentServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/AlterationEnrichmentServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/AlterationEnrichmentServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/AlterationEnrichmentServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/BaseServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/BaseServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/BaseServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/BaseServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/CacheServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/CacheServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/CacheServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/CacheServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/CancerTypeServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/CancerTypeServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/CancerTypeServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/CancerTypeServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/ClinicalAttributeServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/ClinicalAttributeServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/ClinicalAttributeServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/ClinicalAttributeServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/ClinicalDataServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/ClinicalDataServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/ClinicalDataServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/ClinicalDataServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/ClinicalEventServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/ClinicalEventServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/ClinicalEventServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/ClinicalEventServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/CoExpressionServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/CoExpressionServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/CoExpressionServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/CoExpressionServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/CopyNumberSegmentServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/CopyNumberSegmentServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/CopyNumberSegmentServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/CopyNumberSegmentServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/CosmicCountServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/CosmicCountServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/CosmicCountServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/CosmicCountServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/DiscreteCopyNumberServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/DiscreteCopyNumberServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/DiscreteCopyNumberServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/DiscreteCopyNumberServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImplTest.java similarity index 99% rename from service/src/test/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImplTest.java index a777176e26a..280cd706adf 100644 --- a/service/src/test/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImplTest.java +++ b/src/test/java/org/cbioportal/service/impl/ExpressionEnrichmentServiceImplTest.java @@ -299,7 +299,7 @@ public void getGenericAssayPatientLevelEnrichments() throws Exception { sample5.setPatientId(4); samples.add(sample5); - Mockito.when(sampleService.fetchSamples(Arrays.asList(STUDY_ID, STUDY_ID, STUDY_ID, STUDY_ID, STUDY_ID), Arrays.asList(SAMPLE_ID3, SAMPLE_ID4, SAMPLE_ID5, SAMPLE_ID1, SAMPLE_ID2), "ID")).thenReturn(samples); + Mockito.when(sampleService.fetchSamples(Arrays.asList(STUDY_ID, STUDY_ID, STUDY_ID, STUDY_ID, STUDY_ID), Arrays.asList(SAMPLE_ID3, SAMPLE_ID4, SAMPLE_ID5, SAMPLE_ID1, SAMPLE_ID2), "SUMMARY")).thenReturn(samples); List result = enrichmentServiceImpl.getGenericAssayNumericalEnrichments(MOLECULAR_PROFILE_ID, molecularProfilePatientLevelCaseSets, EnrichmentType.SAMPLE); diff --git a/service/src/test/java/org/cbioportal/service/impl/GeneMemoizerServiceTest.java b/src/test/java/org/cbioportal/service/impl/GeneMemoizerServiceTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/GeneMemoizerServiceTest.java rename to src/test/java/org/cbioportal/service/impl/GeneMemoizerServiceTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/GenePanelServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/GenePanelServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/GenePanelServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/GenePanelServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/GeneServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/GeneServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/GeneServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/GeneServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/GenericAssayEnrichmentServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/GenericAssayEnrichmentServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/GenericAssayEnrichmentServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/GenericAssayEnrichmentServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/GenericAssayServiceImpTest.java b/src/test/java/org/cbioportal/service/impl/GenericAssayServiceImpTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/GenericAssayServiceImpTest.java rename to src/test/java/org/cbioportal/service/impl/GenericAssayServiceImpTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/GenesetCorrelationServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/GenesetCorrelationServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/GenesetCorrelationServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/GenesetCorrelationServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/GenesetDataServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/GenesetDataServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/GenesetDataServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/GenesetDataServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/GenesetHierarchyServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/GenesetHierarchyServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/GenesetHierarchyServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/GenesetHierarchyServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/GenesetServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/GenesetServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/GenesetServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/GenesetServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/MolecularDataServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/MolecularDataServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/MolecularDataServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/MolecularDataServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/MolecularProfileServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/MolecularProfileServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/MolecularProfileServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/MolecularProfileServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/MrnaPercentileServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/MrnaPercentileServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/MrnaPercentileServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/MrnaPercentileServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/MutationServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/MutationServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/MutationServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/MutationServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/MutationSpectrumServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/MutationSpectrumServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/MutationSpectrumServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/MutationSpectrumServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/PatientServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/PatientServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/PatientServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/PatientServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/ReadPermissionServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/ReadPermissionServiceImplTest.java similarity index 99% rename from service/src/test/java/org/cbioportal/service/impl/ReadPermissionServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/ReadPermissionServiceImplTest.java index 59de0fcbf37..5f781f0d9ce 100644 --- a/service/src/test/java/org/cbioportal/service/impl/ReadPermissionServiceImplTest.java +++ b/src/test/java/org/cbioportal/service/impl/ReadPermissionServiceImplTest.java @@ -29,10 +29,10 @@ public class ReadPermissionServiceImplTest { @Mock private CancerStudyPermissionEvaluator cancerStudyPermissionEvaluator; - + Authentication authentication; List cancerStudies; - + @Before public void init() { CancerStudy cancerStudy1 = new CancerStudy(); @@ -43,14 +43,14 @@ public void init() { authentication = mock(Authentication.class); when(cancerStudyPermissionEvaluator.hasPermission(any(), any(), eq(AccessLevel.READ))).thenReturn(false, true); } - + @Test public void setReadPermissionSuccess() { readPermissionService.setReadPermission(cancerStudies, authentication); Assert.assertFalse(cancerStudies.get(0).getReadPermission()); Assert.assertTrue(cancerStudies.get(1).getReadPermission()); } - + @Test public void setReadPermissionUnAuthenticatedPortal() { ReflectionTestUtils.setField(readPermissionService, "cancerStudyPermissionEvaluator", null); @@ -59,7 +59,7 @@ public void setReadPermissionUnAuthenticatedPortal() { Assert.assertTrue(cancerStudies.get(1).getReadPermission()); ReflectionTestUtils.setField(readPermissionService, "cancerStudyPermissionEvaluator", cancerStudyPermissionEvaluator); } - + @Test public void setReadPermissionNoAuthObject() { readPermissionService.setReadPermission(cancerStudies, null); diff --git a/service/src/test/java/org/cbioportal/service/impl/ReferenceGenomeGeneServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/ReferenceGenomeGeneServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/ReferenceGenomeGeneServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/ReferenceGenomeGeneServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/SampleListServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/SampleListServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/SampleListServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/SampleListServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/SampleServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/SampleServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/SampleServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/SampleServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/ServerStatusServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/ServerStatusServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/ServerStatusServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/ServerStatusServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/SignificantCopyNumberRegionServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/SignificantCopyNumberRegionServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/SignificantCopyNumberRegionServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/SignificantCopyNumberRegionServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/SignificantlyMutatedGeneServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/SignificantlyMutatedGeneServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/SignificantlyMutatedGeneServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/SignificantlyMutatedGeneServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/StaticDataTimestampServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/StaticDataTimestampServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/StaticDataTimestampServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/StaticDataTimestampServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/StructuralVariantServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/StructuralVariantServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/StructuralVariantServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/StructuralVariantServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/StudyServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/StudyServiceImplTest.java similarity index 95% rename from service/src/test/java/org/cbioportal/service/impl/StudyServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/StudyServiceImplTest.java index 138a6d50a25..ae97ac38e4c 100644 --- a/service/src/test/java/org/cbioportal/service/impl/StudyServiceImplTest.java +++ b/src/test/java/org/cbioportal/service/impl/StudyServiceImplTest.java @@ -20,8 +20,6 @@ import java.util.List; import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.*; -import static org.mockito.Mockito.times; import static org.mockito.Mockito.when; @RunWith(MockitoJUnitRunner.class) @@ -29,13 +27,14 @@ public class StudyServiceImplTest extends BaseServiceImplTest { @InjectMocks private StudyServiceImpl studyService; + + @Mock + private ReadPermissionService readPermissionService; @Mock private StudyRepository studyRepository; @Mock private CancerTypeService cancerTypeService; - @Mock - private ReadPermissionService readPermissionService; @Test public void getAllStudies() throws Exception { @@ -52,7 +51,6 @@ public void getAllStudies() throws Exception { List result = studyService.getAllStudies(KEYWORD, PROJECTION, PAGE_SIZE, PAGE_NUMBER, SORT, DIRECTION, null, AccessLevel.READ); Assert.assertEquals(expectedCancerStudyList.get(0), result.get(0)); - verify(readPermissionService, times(1)).setReadPermission(any(), any()); } @Test diff --git a/service/src/test/java/org/cbioportal/service/impl/StudyViewServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/StudyViewServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/StudyViewServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/StudyViewServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/TreatmentServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/TreatmentServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/TreatmentServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/TreatmentServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTestConfiguration.java b/src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTestConfiguration.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTestConfiguration.java rename to src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTestConfiguration.java diff --git a/service/src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTestFiveTokenLimit.java b/src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTestFiveTokenLimit.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTestFiveTokenLimit.java rename to src/test/java/org/cbioportal/service/impl/UuidDataAccessTokenServiceImplTestFiveTokenLimit.java diff --git a/service/src/test/java/org/cbioportal/service/impl/VariantCountServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/VariantCountServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/VariantCountServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/VariantCountServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/impl/ViolinPlotServiceImplTest.java b/src/test/java/org/cbioportal/service/impl/ViolinPlotServiceImplTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/impl/ViolinPlotServiceImplTest.java rename to src/test/java/org/cbioportal/service/impl/ViolinPlotServiceImplTest.java diff --git a/service/src/test/java/org/cbioportal/service/util/AlterationEnrichmentUtilTest.java b/src/test/java/org/cbioportal/service/util/AlterationEnrichmentUtilTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/util/AlterationEnrichmentUtilTest.java rename to src/test/java/org/cbioportal/service/util/AlterationEnrichmentUtilTest.java diff --git a/service/src/test/java/org/cbioportal/service/util/CoExpressionAsyncMethodsTest.java b/src/test/java/org/cbioportal/service/util/CoExpressionAsyncMethodsTest.java similarity index 98% rename from service/src/test/java/org/cbioportal/service/util/CoExpressionAsyncMethodsTest.java rename to src/test/java/org/cbioportal/service/util/CoExpressionAsyncMethodsTest.java index 0ba9b0be032..28fb4c43c13 100644 --- a/service/src/test/java/org/cbioportal/service/util/CoExpressionAsyncMethodsTest.java +++ b/src/test/java/org/cbioportal/service/util/CoExpressionAsyncMethodsTest.java @@ -1,7 +1,6 @@ package org.cbioportal.service.util; import org.cbioportal.model.CoExpression; -import org.cbioportal.service.util.CoExpressionAsyncMethods; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; diff --git a/service/src/test/java/org/cbioportal/service/util/JwtUtilsTest.java b/src/test/java/org/cbioportal/service/util/JwtUtilsTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/util/JwtUtilsTest.java rename to src/test/java/org/cbioportal/service/util/JwtUtilsTest.java diff --git a/service/src/test/java/org/cbioportal/service/util/JwtUtilsTestConfiguration.java b/src/test/java/org/cbioportal/service/util/JwtUtilsTestConfiguration.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/util/JwtUtilsTestConfiguration.java rename to src/test/java/org/cbioportal/service/util/JwtUtilsTestConfiguration.java diff --git a/service/src/test/java/org/cbioportal/service/util/MolecularProfileUtilTest.java b/src/test/java/org/cbioportal/service/util/MolecularProfileUtilTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/util/MolecularProfileUtilTest.java rename to src/test/java/org/cbioportal/service/util/MolecularProfileUtilTest.java diff --git a/service/src/test/java/org/cbioportal/service/util/ProfiledCasesCounterTest.java b/src/test/java/org/cbioportal/service/util/ProfiledCasesCounterTest.java similarity index 100% rename from service/src/test/java/org/cbioportal/service/util/ProfiledCasesCounterTest.java rename to src/test/java/org/cbioportal/service/util/ProfiledCasesCounterTest.java diff --git a/src/test/java/org/cbioportal/test/integration/MysqlInitializer.java b/src/test/java/org/cbioportal/test/integration/MysqlInitializer.java new file mode 100644 index 00000000000..716df444763 --- /dev/null +++ b/src/test/java/org/cbioportal/test/integration/MysqlInitializer.java @@ -0,0 +1,19 @@ +package org.cbioportal.test.integration; + +import org.springframework.boot.test.util.TestPropertyValues; +import org.springframework.context.ApplicationContextInitializer; +import org.springframework.context.ConfigurableApplicationContext; + +public abstract class MysqlInitializer implements + ApplicationContextInitializer { + + public void initializeImpl(ConfigurableApplicationContext configurableApplicationContext, + SharedMysqlContainer mysqlContainer) { + TestPropertyValues values = TestPropertyValues.of( + String.format("spring.datasource.url=%s", mysqlContainer.getJdbcUrl()), + String.format("spring.datasource.username=%s", mysqlContainer.getUsername()), + String.format("spring.datasource.password=%s", mysqlContainer.getPassword()) + ); + values.applyTo(configurableApplicationContext); + } +} diff --git a/src/test/java/org/cbioportal/test/integration/OAuth2KeycloakInitializer.java b/src/test/java/org/cbioportal/test/integration/OAuth2KeycloakInitializer.java new file mode 100644 index 00000000000..600f0327756 --- /dev/null +++ b/src/test/java/org/cbioportal/test/integration/OAuth2KeycloakInitializer.java @@ -0,0 +1,64 @@ +package org.cbioportal.test.integration; + +import dasniko.testcontainers.keycloak.KeycloakContainer; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.boot.test.util.TestPropertyValues; +import org.springframework.context.ApplicationContextInitializer; +import org.springframework.context.ConfigurableApplicationContext; + +public abstract class OAuth2KeycloakInitializer implements + ApplicationContextInitializer { + + private static final Logger log = LoggerFactory.getLogger(OAuth2KeycloakInitializer.class); + + public void initializeImpl(ConfigurableApplicationContext configurableApplicationContext, + KeycloakContainer keycloakContainer) { + + try { + + String keycloakUrlForCBioportal = keycloakContainer.getAuthServerUrl(); + String keycloakUrlForBrowser = "http://keycloak:8080/auth"; + + TestPropertyValues values = TestPropertyValues.of( + + // These urls are from the perspective of cBioPortal application (port on host system). + String.format( + "spring.security.oauth2.client.provider.cbio-idp.issuer=%s/realms/cbio", + keycloakUrlForCBioportal), + String.format( + "spring.security.oauth2.client.provider.cbio-idp.token-uri=%s/realms/cbio/protocol/openid-connect/token", + keycloakUrlForCBioportal), + String.format( + "spring.security.oauth2.client.provider.cbio-idp.user-info-uri=%s/realms/cbio/protocol/openid-connect/userinfo", + keycloakUrlForCBioportal), + String.format( + "spring.security.oauth2.client.provider.cbio-idp.jwk-set-uri=%s/realms/cbio/protocol/openid-connect/certs", + keycloakUrlForCBioportal), + String.format( + "dat.oauth2.accessTokenUri=%s/realms/cbio/protocol/openid-connect/token", + keycloakUrlForCBioportal), + String.format("dat.oauth2.jwkUrl=%s/realms/cbio/protocol/openid-connect/certs", + keycloakUrlForCBioportal), + + // This url is from the perspective of the browser. + String.format( + "spring.security.oauth2.client.provider.cbio-idp.authorization-uri=%s/realms/cbio/protocol/openid-connect/auth", + keycloakUrlForBrowser), + String.format( + "spring.security.oauth2.client.provider.cbio-idp.logout-uri=%s/realms/cbio/protocol/openid-connect/logout", + keycloakUrlForBrowser), + String.format( + "dat.oauth2.userAuthorizationUri=%s/realms/cbio/protocol/openid-connect/auth", + keycloakUrlForBrowser), + String.format("dat.oauth2.issuer=%s/realms/cbio", keycloakUrlForBrowser) + + ); + values.applyTo(configurableApplicationContext); + + } catch (Exception e) { + log.error("Error initializing keycloak container" + e.getMessage()); + } + } + +} diff --git a/src/test/java/org/cbioportal/test/integration/SamlKeycloakInitializer.java b/src/test/java/org/cbioportal/test/integration/SamlKeycloakInitializer.java new file mode 100644 index 00000000000..fe813a548a3 --- /dev/null +++ b/src/test/java/org/cbioportal/test/integration/SamlKeycloakInitializer.java @@ -0,0 +1,56 @@ +package org.cbioportal.test.integration; + +import dasniko.testcontainers.keycloak.KeycloakContainer; +import java.io.BufferedWriter; +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.boot.test.util.TestPropertyValues; +import org.springframework.context.ApplicationContextInitializer; +import org.springframework.context.ConfigurableApplicationContext; + +public abstract class SamlKeycloakInitializer implements + ApplicationContextInitializer { + + private static final Logger log = LoggerFactory.getLogger(SamlKeycloakInitializer.class); + + public void initializeImpl(ConfigurableApplicationContext configurableApplicationContext, + KeycloakContainer keycloakContainer) { + + try { + + String keycloakUrlForCBioportal = keycloakContainer.getAuthServerUrl(); + String keycloakUrlForBrowser = "http://keycloak:8080/auth"; + + TestPropertyValues values = TestPropertyValues.of( + // Should match the id in the generated idp metadata xml (samlIdpMetadata) + String.format("spring.security.saml2.relyingparty.registration.cbio-idp.identityprovider.entity-id=%s/realms/cbio", + keycloakUrlForBrowser), + + // These urls are from the perspective of cBioPortal application (port on host system) + String.format( + "spring.security.saml2.relyingparty.registration.cbio-idp.identityprovider.metadata-uri=%s/realms/cbio/protocol/saml/descriptor", + keycloakUrlForCBioportal), + String.format( + "dat.oauth2.accessTokenUri=%s/realms/cbio/protocol/openid-connect/token", + keycloakUrlForCBioportal), + String.format("dat.oauth2.jwkUrl=%s/realms/cbio/protocol/openid-connect/certs", + keycloakUrlForCBioportal), + + // This url is from the perspective of the browser + String.format( + "dat.oauth2.userAuthorizationUri=%s/realms/cbio/protocol/openid-connect/auth", + keycloakUrlForBrowser), + String.format("dat.oauth2.issuer=%s/realms/cbio", keycloakUrlForBrowser) + + ); + values.applyTo(configurableApplicationContext); + + } catch (Exception e) { + log.error("Error initializing keycloak container" + e.getMessage()); + } + } + +} diff --git a/src/test/java/org/cbioportal/test/integration/SharedChromeContainer.java b/src/test/java/org/cbioportal/test/integration/SharedChromeContainer.java new file mode 100644 index 00000000000..3e57f5e01bf --- /dev/null +++ b/src/test/java/org/cbioportal/test/integration/SharedChromeContainer.java @@ -0,0 +1,47 @@ +package org.cbioportal.test.integration; + +import static org.testcontainers.containers.BrowserWebDriverContainer.VncRecordingMode.RECORD_ALL; + + +import java.io.File; +import java.util.HashMap; +import java.util.Map; +import org.openqa.selenium.chrome.ChromeOptions; +import org.testcontainers.containers.BrowserWebDriverContainer; + +public class SharedChromeContainer extends BrowserWebDriverContainer { + + public final static String DOWNLOAD_FOLDER = "/tmp/browser_downloads"; + + private static BrowserWebDriverContainer container; + + private SharedChromeContainer() { + super(); + } + + // For test development a VNC viewer can be connected to the selenium container. + // Make sure to connect to exposed port on host system connected to internal + // port 5900 of the browser container. The password is 'secret'. + + public static BrowserWebDriverContainer getInstance() { + if (container == null) { + + ChromeOptions options = new ChromeOptions(); + Map prefs = new HashMap(); + prefs.put("download.default_directory", DOWNLOAD_FOLDER); + prefs.put("profile.default_content_settings.popups", 0); + prefs.put("download.prompt_for_download", "false"); + prefs.put("download.directory_upgrade", "true"); + options.setExperimentalOption("prefs", prefs); + + container = new BrowserWebDriverContainer<>() + // activate this to record movies of the tests (greate for debugging) + .withRecordingMode(RECORD_ALL, new File("/home/pnp300")) + .withNetwork(SharedKeycloakContainer.keycloakNetwork) + .withAccessToHost(true) + .withCapabilities(options); + } + return container; + } + +} diff --git a/src/test/java/org/cbioportal/test/integration/SharedKeycloakContainer.java b/src/test/java/org/cbioportal/test/integration/SharedKeycloakContainer.java new file mode 100644 index 00000000000..e69d81718c2 --- /dev/null +++ b/src/test/java/org/cbioportal/test/integration/SharedKeycloakContainer.java @@ -0,0 +1,34 @@ +package org.cbioportal.test.integration; + +import dasniko.testcontainers.keycloak.KeycloakContainer; +import org.testcontainers.containers.Network; + +public class SharedKeycloakContainer extends KeycloakContainer { + + private static final String IMAGE_VERSION = "jboss/keycloak:15.0.2"; + private static String kcAdminName = "admin"; + private static String kcAdminPassword = "admin"; + public static final Network keycloakNetwork = Network.newNetwork(); + private static KeycloakContainer container; + + private SharedKeycloakContainer() { + super(IMAGE_VERSION); + } + + public static KeycloakContainer getInstance() { + if (container == null) { + container = new KeycloakContainer() + .withRealmImportFile("security/keycloak-configuration-generated.json") + .withAdminUsername(kcAdminName) + .withAdminPassword(kcAdminPassword) + .withNetwork(keycloakNetwork) + .withNetworkAliases("keycloak") + // Needed because cBioPortal and Chrome use differnt urls to Keycloak container + // Causes mismatch of 'issuer' field in JWT. + // See: https://stackoverflow.com/a/65848717/11651683 + .withEnv("KEYCLOAK_FRONTEND_URL", "http://keycloak:8080/auth"); + } + return container; + } + +} diff --git a/src/test/java/org/cbioportal/test/integration/SharedMysqlContainer.java b/src/test/java/org/cbioportal/test/integration/SharedMysqlContainer.java new file mode 100644 index 00000000000..78ad92024bd --- /dev/null +++ b/src/test/java/org/cbioportal/test/integration/SharedMysqlContainer.java @@ -0,0 +1,36 @@ +package org.cbioportal.test.integration; + +import java.io.File; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.time.Duration; +import org.testcontainers.containers.BindMode; +import org.testcontainers.containers.MySQLContainer; + +public class SharedMysqlContainer extends MySQLContainer { + + private static final String IMAGE_VERSION = "mysql:5.7"; + private static SharedMysqlContainer container; + + private SharedMysqlContainer() { + super(IMAGE_VERSION); + } + + public static SharedMysqlContainer getInstance() { + if (container == null) { + container = new SharedMysqlContainer() + .withClasspathResourceMapping("cgds.sql", "/docker-entrypoint-initdb.d/a_schema.sql", BindMode.READ_ONLY) + .withClasspathResourceMapping("seed_mini.sql", "/docker-entrypoint-initdb.d/b_seed.sql", BindMode.READ_ONLY) + .withStartupTimeout(Duration.ofMinutes(10)); + } + return container; + } + + /** + * @param path path to file or directory from the root of the maven project + * @return Absolute path to file + */ + private static Path absolutePath(String path) { + return Paths.get(new File("../" + path).getAbsolutePath()); + } +} diff --git a/src/test/java/org/cbioportal/test/integration/security/OAuth2AuthIntegrationTest.java b/src/test/java/org/cbioportal/test/integration/security/OAuth2AuthIntegrationTest.java new file mode 100644 index 00000000000..1fd90a7ebbc --- /dev/null +++ b/src/test/java/org/cbioportal/test/integration/security/OAuth2AuthIntegrationTest.java @@ -0,0 +1,203 @@ +package org.cbioportal.test.integration.security; + +import static org.cbioportal.test.integration.security.OAuth2AuthIntegrationTest.*; +import static org.testcontainers.shaded.org.awaitility.Awaitility.await; + + +import dasniko.testcontainers.keycloak.KeycloakContainer; +import java.io.IOException; +import java.time.Duration; +import java.util.concurrent.Callable; +import javax.annotation.Nonnull; +import org.cbioportal.PortalApplication; +import org.cbioportal.test.integration.MysqlInitializer; +import org.cbioportal.test.integration.OAuth2KeycloakInitializer; +import org.cbioportal.test.integration.SharedChromeContainer; +import org.cbioportal.test.integration.SharedKeycloakContainer; +import org.cbioportal.test.integration.SharedMysqlContainer; +import org.junit.ClassRule; +import org.junit.Ignore; +import org.junit.Test; +import org.junit.jupiter.api.Assertions; +import org.junit.runner.RunWith; +import org.openqa.selenium.By; +import org.openqa.selenium.NoSuchElementException; +import org.openqa.selenium.WebElement; +import org.openqa.selenium.remote.RemoteWebDriver; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.web.context.WebServerInitializedEvent; +import org.springframework.context.ApplicationContext; +import org.springframework.context.ApplicationContextInitializer; +import org.springframework.context.ApplicationListener; +import org.springframework.context.ConfigurableApplicationContext; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.TestPropertySource; +import org.springframework.test.context.junit4.SpringRunner; +import org.springframework.util.Assert; +import org.testcontainers.Testcontainers; +import org.testcontainers.containers.BrowserWebDriverContainer; +import org.testcontainers.containers.Container; +import org.testcontainers.containers.GenericContainer; + +@RunWith(SpringRunner.class) +@SpringBootTest( + webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT, + classes = {PortalApplication.class} +) +@TestPropertySource( + properties = { + "app.name=cbioportal", + "server.port=8080", + "filter_groups_by_appname=false", + "authenticate=oauth2", + "dat.method=oauth2", + // DB settings (also see MysqlInitializer) + "spring.datasource.driverClassName=com.mysql.jdbc.Driver", + "spring.jpa.database-platform=org.hibernate.dialect.MySQL5Dialect", + // OAuth2 settings + "spring.security.oauth2.client.registration.cbio-idp.redirect-uri=http://host.testcontainers.internal:8080/login/oauth2/code/cbio-idp", + "spring.security.oauth2.client.provider.cbio-idp.user-name-attribute=email", + "spring.security.oauth2.client.registration.cbio-idp.client-name=cbioportal_oauth2", + "spring.security.oauth2.client.registration.cbio-idp.client-id=cbioportal_oauth2", + "spring.security.oauth2.client.registration.cbio-idp.client-secret=client_secret", + "spring.security.oauth2.client.registration.cbio-idp.authorization-grant-type=authorization_code", + "spring.security.oauth2.client.registration.cbio-idp.client-authentication-method=client_secret_post", + "spring.security.oauth2.client.registration.cbio-idp.scope=openid,email,roles", + "spring.security.oauth2.client.user-info-roles-path=resource_access::cbioportal::roles", + // Keycloak host settings (also see KeycloakInitializer) + "dat.oauth2.clientId=cbioportal_oauth2", + "dat.oauth2.clientSecret=client_secret", + // Redirect URL to cBiopPortal application from perspective of browser + "dat.oauth2.redirectUri=http://host.testcontainers.internal:8080/api/data-access-token/oauth2", + "dat.oauth2.jwtRolesPath=resource_access::cbioportal::roles" + } +) +@ContextConfiguration(initializers = { + MyMysqlInitializer.class, + MyKeycloakInitializer.class, + PortInitializer.class +}) +@Ignore +public class OAuth2AuthIntegrationTest { + + private final static int CBIO_PORT = 8080; + public final static String CBIO_URL_FROM_BROWSER = + String.format("http://host.testcontainers.internal:%d", CBIO_PORT); + + @Autowired + private ApplicationContext context; + + @ClassRule + public static SharedMysqlContainer mysqlContainer = SharedMysqlContainer.getInstance(); + + @ClassRule + public static KeycloakContainer keycloakContainer = SharedKeycloakContainer.getInstance(); + + @ClassRule + public static BrowserWebDriverContainer chrome = SharedChromeContainer.getInstance(); + + // Update application properties with connection info on Keycloak container + public static class MyKeycloakInitializer extends OAuth2KeycloakInitializer { + @Override + public void initialize( + ConfigurableApplicationContext configurableApplicationContext) { + super.initializeImpl(configurableApplicationContext, keycloakContainer); + } + } + + // Update application properties with connection info on Mysql container + public static class MyMysqlInitializer extends MysqlInitializer { + @Override + public void initialize( + ConfigurableApplicationContext configurableApplicationContext) { + super.initializeImpl(configurableApplicationContext, mysqlContainer); + } + } + + // Expose the ports for the cBioPortal Spring application and keycloak inside + // the Chrome container. Each address is available on http://host.testcontainers.internal: + // in the browser container. + public static class PortInitializer implements + ApplicationContextInitializer { + @Override + public void initialize(ConfigurableApplicationContext applicationContext) { + applicationContext.addApplicationListener( + (ApplicationListener) event -> { + Testcontainers.exposeHostPorts(CBIO_PORT, keycloakContainer.getHttpPort()); + }); + } + } + + @Test + public void loginSuccess() { + RemoteWebDriver driver = performLogin(); + WebElement loggedInButton = driver.findElement(By.id("dat-dropdown")); + Assertions.assertEquals("Logged in as testuser@thehyve.nl", loggedInButton.getText()); + Assertions.assertDoesNotThrow( + () -> driver.findElement(By.xpath("//span[.='Breast Invasive Carcinoma (TCGA,Nature 2012)']")), + "Study could not be found on the landing page. Permissions are not correctly passed from IDP to client."); + } + + @Test + public void downloadOfflineToken() throws Exception { + RemoteWebDriver driver = performLogin(); + Assertions.assertDoesNotThrow( + () -> driver.findElement(By.id("dat-dropdown")).click(), + "Logged-in menu could not be found on the page."); + driver.findElement(By.linkText("Data Access Token")).click(); + driver.findElement(By.xpath("//button[text()='Download Token']")).click(); + + await().atMost(Duration.ofSeconds(2)).until(downloadedFile()); + + Assertions.assertTrue(downloadedFile().call()); + } + + @Test + public void logoutSuccess() { + RemoteWebDriver driver = performLogin(); + Assertions.assertDoesNotThrow( + () -> driver.findElement(By.id("dat-dropdown")).click(), + "Logout menu could not be found on the page."); + driver.findElement(By.linkText("Sign out")).click(); + Assertions.assertDoesNotThrow( + () -> driver.findElement(By.id("username")), + "IDP login screen not visible on the page. Logout did not work correctly." + ); + } + + private RemoteWebDriver performLogin() { + RemoteWebDriver driver = chrome.getWebDriver(); + driver.get(CBIO_URL_FROM_BROWSER); + try { + // when the cbioportal logo is visible, skip login + driver.findElement(By.id("cbioportal-logo")); + } catch (NoSuchElementException e) { + WebElement userNameInput = driver.findElement(By.id("username")); + WebElement passwordInput = driver.findElement(By.id("password")); + WebElement loginButton = driver.findElement(By.id("kc-login")); + userNameInput.sendKeys("testuser"); + passwordInput.sendKeys("P@ssword1"); + loginButton.click(); + } + return driver; + } + + private boolean containerFileExists( + @Nonnull final GenericContainer container, @Nonnull String path) + throws IOException, InterruptedException { + Assert.notNull(container, "Containers is null"); + Assert.isTrue(!path.isEmpty(), "Path string is empty"); + Container.ExecResult r = container.execInContainer("/bin/sh", "-c", + "if [ -f " + path + + " ] ; then echo '0' ; else (>&2 echo '1') ; fi"); + return !r.getStderr().contains("1"); + } + + private Callable downloadedFile() { + return () -> containerFileExists(chrome, + String.format("%s/cbioportal_data_access_token.txt", + SharedChromeContainer.DOWNLOAD_FOLDER)); + } + +} \ No newline at end of file diff --git a/src/test/java/org/cbioportal/test/integration/security/Oauth2ResourceServerIntegrationTest.java b/src/test/java/org/cbioportal/test/integration/security/Oauth2ResourceServerIntegrationTest.java new file mode 100644 index 00000000000..acd4c36d97c --- /dev/null +++ b/src/test/java/org/cbioportal/test/integration/security/Oauth2ResourceServerIntegrationTest.java @@ -0,0 +1,181 @@ +/* + * Copyright (c) 2019 The Hyve B.V. + * This code is licensed under the GNU Affero General Public License (AGPL), + * version 3, or (at your option) any later version. + */ + +/* + * This file is part of cBioPortal. + * + * cBioPortal is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package org.cbioportal.test.integration.security; + + +import static org.cbioportal.test.integration.security.Oauth2ResourceServerIntegrationTest.*; +import static org.cbioportal.test.integration.security.util.TokenHelper.encodeWithoutSigning; +import static org.junit.Assert.assertEquals; + + +import java.io.IOException; +import java.net.URLEncoder; +import org.cbioportal.PortalApplication; +import org.cbioportal.test.integration.MysqlInitializer; +import org.cbioportal.test.integration.SharedMysqlContainer; +import org.cbioportal.test.integration.security.util.HttpHelper; +import org.json.JSONArray; +import org.json.JSONException; +import org.junit.*; +import org.junit.jupiter.api.Assertions; +import org.junit.runner.RunWith; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.context.ConfigurableApplicationContext; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.TestPropertySource; +import org.springframework.test.context.junit4.SpringRunner; + + +/** + * Tests protection of API endpoints by SAML auth + */ +// This starts a live portal instance on a random port (imported via @LocalServerPort) +@RunWith(SpringRunner.class) +@SpringBootTest( + webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT, + classes = {PortalApplication.class} +) +@TestPropertySource( + properties = { + "app.name=cbioportal", + "server.port=8080", + "filter_groups_by_appname=true", + "authenticate=saml", + "dat.method=oauth2", + // DB settings + "spring.datasource.driverClassName=com.mysql.jdbc.Driver", + "spring.jpa.database-platform=org.hibernate.dialect.MySQL5Dialect", + // SAML settings + "saml.keystore.location=classpath:/security/samlKeystore.jks", + "saml.keystore.password=P@ssword1", + "saml.keystore.private-key.key=secure-key", + "saml.keystore.private-key.password=P@ssword1", + "saml.keystore.default-key=secure-key", + "saml.idp.metadata.location=classpath:/security/saml-idp-metadata.xml", + // I had to use specificBinding because of this bug https://github.com/spring-projects/spring-security-saml/issues/460 + "saml.idp.comm.binding.settings=specificBinding", + "saml.idp.comm.binding.type=bindings:HTTP-Redirect", + "saml.sp.metadata.entitybaseurl=#{null}", + "saml.sp.metadata.entityid=cbioportal", + "saml.idp.metadata.entityid=spring.security.saml.idp.id", + "saml.idp.metadata.attribute.email=User.email", + "saml.custom.userservice.class=org.cbioportal.security.spring.authentication.saml.SAMLUserDetailsServiceImpl", + "saml.logout.local=false", + // FIXME Our test saml idp does not sign assertions for some reason + "saml.sp.metadata.wantassertionsigned=false", + "dat.oauth2.clientId=client_id", + "dat.oauth2.clientSecret=client_secret", + "dat.oauth2.issuer=token_issuer", + "dat.oauth2.accessTokenUri=http://localhost:8443/auth/realms/cbio/token", + "dat.oauth2.redirectUri=http://localhost:8080/api/data-access-token/oauth2", + "dat.oauth2.userAuthorizationUri=http://localhost:8443/auth/realms/cbio/auth", + "dat.oauth2.jwkUrl=http://localhost:8443/auth/realms/cbio/jwkUrl", + "dat.oauth2.jwtRolesPath=resource_access::cbioportal::roles" + } +) +@ContextConfiguration(initializers = { + MyMysqlInitializer.class, +}) +@Ignore +public class Oauth2ResourceServerIntegrationTest { + + private static String HOST = "http://localhost:8080"; + private static final int IDP_PORT = 8443; + + @ClassRule + public static SharedMysqlContainer mysqlContainer = SharedMysqlContainer.getInstance(); + + // Update application properties with connection info on Mysql container + public static class MyMysqlInitializer extends MysqlInitializer { + @Override + public void initialize( + ConfigurableApplicationContext configurableApplicationContext) { + super.initializeImpl(configurableApplicationContext, mysqlContainer); + } + } + + @Test + public void testAccessForbiddenForAnonymousUser() throws IOException { + HttpHelper.HttpResponse response = HttpHelper.sendGetRequest(HOST + "/api/studies", null, null); + assertEquals(401, response.code); + } + + @Test + public void testAccessForbiddenForFakeBearerToken() throws IOException { + String offlineToken = "{\"sub\": \"0000000000\"}"; + String encodedOfflineToken = encodeWithoutSigning(offlineToken); +// new MockServerClient("localhost", IDP_PORT).when( +// HttpRequest.request() +// .withMethod("POST") +// .withPath("/auth/realms/cbio/token") +// .withBody(StringBody.subString("refresh_token=" + URLEncoder.encode(encodedOfflineToken, "UTF-8")))) +// .respond(HttpResponse.response().withStatusCode(401)); + + HttpHelper.HttpResponse response = HttpHelper.sendGetRequest(HOST + "/api/studies", encodedOfflineToken, null); + + assertEquals(401, response.code); + } + + @Test + public void testAccessForValidBearerToken() throws IOException, JSONException { + String offlineTokenClaims = "{\"sub\": \"1234567890\"}"; + String encodedOfflineToken = encodeWithoutSigning(offlineTokenClaims); + String accessTokenClaims = "{" + + "\"sub\": \"1234567890\"," + + "\"name\": \"John Doe\"," + + "\"resource_access\": {\"cbioportal\": {\"roles\": [\"cbioportal:study_tcga_pub\"]}}" + + "}"; +// new MockServerClient("localhost", IDP_PORT).when( +// HttpRequest.request() +// .withMethod("POST") +// .withPath("/auth/realms/cbio/token") +// .withBody(StringBody.subString("refresh_token=" + URLEncoder.encode(encodedOfflineToken, "UTF-8")))) +// .respond( +// HttpResponse.response() +// .withBody("{\"access_token\": \"" +// + encodeWithoutSigning(accessTokenClaims) +// + "\"}")); + + HttpHelper.HttpResponse response = HttpHelper.sendGetRequest(HOST + "/api/studies", encodedOfflineToken, null); + + assertEquals(200, response.code); + Assertions.assertTrue(response.body != null && !response.body.isEmpty()); + JSONArray studies = new JSONArray(response.body); + Assertions.assertEquals(1, studies.length()); + studies.getJSONObject(0).getString("studyId"); + Assertions.assertEquals("study_tcga_pub", studies.getJSONObject(0).getString("studyId")); + } + + //private static ClientAndServer mockServer; + + //@BeforeClass + //public static void startServer() { + // mockServer = ClientAndServer.startClientAndServer(IDP_PORT); + //} + + //@AfterClass + //public static void stopServer() { + // mockServer.stop(); + //} +} diff --git a/src/test/java/org/cbioportal/test/integration/security/SamlAuthIntegrationTest.java b/src/test/java/org/cbioportal/test/integration/security/SamlAuthIntegrationTest.java new file mode 100644 index 00000000000..abbf256d725 --- /dev/null +++ b/src/test/java/org/cbioportal/test/integration/security/SamlAuthIntegrationTest.java @@ -0,0 +1,196 @@ +package org.cbioportal.test.integration.security; + +import static org.cbioportal.test.integration.security.SamlAuthIntegrationTest.MySamlKeycloakInitializer; +import static org.cbioportal.test.integration.security.SamlAuthIntegrationTest.MyMysqlInitializer; +import static org.cbioportal.test.integration.security.SamlAuthIntegrationTest.PortInitializer; +import static org.testcontainers.shaded.org.awaitility.Awaitility.await; + + +import dasniko.testcontainers.keycloak.KeycloakContainer; +import java.io.IOException; +import java.time.Duration; +import java.util.concurrent.Callable; +import javax.annotation.Nonnull; +import org.cbioportal.PortalApplication; +import org.cbioportal.test.integration.SamlKeycloakInitializer; +import org.cbioportal.test.integration.MysqlInitializer; +import org.cbioportal.test.integration.SharedChromeContainer; +import org.cbioportal.test.integration.SharedKeycloakContainer; +import org.cbioportal.test.integration.SharedMysqlContainer; +import org.junit.ClassRule; +import org.junit.Ignore; +import org.junit.Test; +import org.junit.jupiter.api.Assertions; +import org.junit.runner.RunWith; +import org.openqa.selenium.By; +import org.openqa.selenium.NoSuchElementException; +import org.openqa.selenium.WebElement; +import org.openqa.selenium.remote.RemoteWebDriver; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.web.context.WebServerInitializedEvent; +import org.springframework.context.ApplicationContextInitializer; +import org.springframework.context.ApplicationListener; +import org.springframework.context.ConfigurableApplicationContext; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.TestPropertySource; +import org.springframework.test.context.junit4.SpringRunner; +import org.springframework.util.Assert; +import org.testcontainers.Testcontainers; +import org.testcontainers.containers.BrowserWebDriverContainer; +import org.testcontainers.containers.Container; +import org.testcontainers.containers.GenericContainer; + +@RunWith(SpringRunner.class) +@SpringBootTest( + webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT, + classes = {PortalApplication.class} +) +@TestPropertySource( + properties = { + "app.name=cbioportal", + "server.port=8080", + "filter_groups_by_appname=false", + "authenticate=saml", + "dat.method=oauth2", + // DB settings (also see MysqlInitializer) + "spring.datasource.driverClassName=com.mysql.jdbc.Driver", + "spring.jpa.database-platform=org.hibernate.dialect.MySQL5Dialect", + // SAML settings + "spring.security.saml2.relyingparty.registration.cbio-idp.entity-id=cbioportal", + "spring.security.saml2.relyingparty.registration.cbio-idp.signing.credentials[0].certificate-location=classpath:/security/signing-cert.pem", + "spring.security.saml2.relyingparty.registration.cbio-idp.signing.credentials[0].private-key-location=classpath:/security/signing-key.pem", + "saml.idp.metadata.attribute.email=email", + "saml.idp.metadata.attribute.role=Role", + // Keycloak host settings (also see KeycloakInitializer) + "dat.oauth2.clientId=cbioportal_oauth2", + "dat.oauth2.clientSecret=client_secret", + // Redirect URL to cBiopPortal application from perspective of browser + "dat.oauth2.redirectUri=http://host.testcontainers.internal:8080/api/data-access-token/oauth2", + "dat.oauth2.jwtRolesPath=resource_access::cbioportal::roles" + } +) +@ContextConfiguration(initializers = { + MyMysqlInitializer.class, + MySamlKeycloakInitializer.class, + PortInitializer.class +}) +@Ignore +public class SamlAuthIntegrationTest { + + private final static int CBIO_PORT = 8080; + public final static String CBIO_URL_FROM_BROWSER = + String.format("http://host.testcontainers.internal:%d", CBIO_PORT); + + @ClassRule + public static SharedMysqlContainer mysqlContainer = SharedMysqlContainer.getInstance(); + + @ClassRule + public static KeycloakContainer keycloakContainer = SharedKeycloakContainer.getInstance(); + + @ClassRule + public static BrowserWebDriverContainer chrome = SharedChromeContainer.getInstance(); + + // Update application properties with connection info on Keycloak container + public static class MySamlKeycloakInitializer extends SamlKeycloakInitializer { + @Override + public void initialize( + ConfigurableApplicationContext configurableApplicationContext) { + super.initializeImpl(configurableApplicationContext, keycloakContainer); + } + } + + // Update application properties with connection info on Mysql container + public static class MyMysqlInitializer extends MysqlInitializer { + @Override + public void initialize( + ConfigurableApplicationContext configurableApplicationContext) { + super.initializeImpl(configurableApplicationContext, mysqlContainer); + } + } + + // Expose the ports for the cBioPortal Spring application and keycloak inside + // the Chrome container. Each address is available on http://host.testcontainers.internal: + // in the browser container. + public static class PortInitializer implements + ApplicationContextInitializer { + @Override + public void initialize(ConfigurableApplicationContext applicationContext) { + applicationContext.addApplicationListener( + (ApplicationListener) event -> { + Testcontainers.exposeHostPorts(CBIO_PORT, keycloakContainer.getHttpPort()); + }); + } + } + + @Test + public void loginSuccess() { + RemoteWebDriver driver = performLogin(); + WebElement loggedInButton = driver.findElement(By.id("dat-dropdown")); + Assertions.assertEquals("Logged in as testuser@thehyve.nl", loggedInButton.getText()); + Assertions.assertDoesNotThrow( + () -> driver.findElement(By.xpath("//span[.='Breast Invasive Carcinoma (TCGA,Nature 2012)']")), + "Study could not be found on the landing page. Permissions are not correctly passed from IDP to client."); + } + + @Test + public void downloadOfflineToken() throws Exception { + RemoteWebDriver driver = performLogin(); + Assertions.assertDoesNotThrow( + () -> driver.findElement(By.id("dat-dropdown")).click(), + "Logged-in menu could not be found on the page."); + driver.findElement(By.linkText("Data Access Token")).click(); + driver.findElement(By.xpath("//button[text()='Download Token']")).click(); + + await().atMost(Duration.ofSeconds(5)).until(downloadedFile()); + + Assertions.assertTrue(downloadedFile().call()); + } + + @Test + public void logoutSuccess() { + RemoteWebDriver driver = performLogin(); + Assertions.assertDoesNotThrow( + () -> driver.findElement(By.id("dat-dropdown")).click(), + "Logout menu could not be found on the page."); + driver.findElement(By.linkText("Sign out")).click(); + Assertions.assertDoesNotThrow( + () -> driver.findElement(By.id("username")), + "IDP login screen not visible on the page. Logout did not work correctly." + ); + } + + private RemoteWebDriver performLogin() { + RemoteWebDriver driver = chrome.getWebDriver(); + driver.get(CBIO_URL_FROM_BROWSER); + try { + // when the cbioportal logo is visible, skip login + driver.findElement(By.id("cbioportal-logo")); + } catch (NoSuchElementException e) { + WebElement userNameInput = driver.findElement(By.id("username")); + WebElement passwordInput = driver.findElement(By.id("password")); + WebElement loginButton = driver.findElement(By.id("kc-login")); + userNameInput.sendKeys("testuser"); + passwordInput.sendKeys("P@ssword1"); + loginButton.click(); + } + return driver; + } + + private boolean containerFileExists( + @Nonnull final GenericContainer container, @Nonnull String path) + throws IOException, InterruptedException { + Assert.notNull(container, "Containers is null"); + Assert.isTrue(!path.isEmpty(), "Path string is empty"); + Container.ExecResult r = container.execInContainer("/bin/sh", "-c", + "if [ -f " + path + + " ] ; then echo '0' ; else (>&2 echo '1') ; fi"); + return !r.getStderr().contains("1"); + } + + private Callable downloadedFile() { + return () -> containerFileExists(chrome, + String.format("%s/cbioportal_data_access_token.txt", + SharedChromeContainer.DOWNLOAD_FOLDER)); + } + +} \ No newline at end of file diff --git a/portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/HttpHelper.java b/src/test/java/org/cbioportal/test/integration/security/util/HttpHelper.java similarity index 85% rename from portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/HttpHelper.java rename to src/test/java/org/cbioportal/test/integration/security/util/HttpHelper.java index 8a2543f45b0..8358a28bae9 100644 --- a/portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/HttpHelper.java +++ b/src/test/java/org/cbioportal/test/integration/security/util/HttpHelper.java @@ -21,7 +21,7 @@ * along with this program. If not, see . */ -package org.mskcc.cbio.portal; +package org.cbioportal.test.integration.security.util; import java.io.*; import java.net.HttpURLConnection; @@ -29,12 +29,12 @@ import java.util.List; import java.util.Map; -class HttpHelper { +public class HttpHelper { - static class HttpResponse { - final String body; - final int code; - final Map> headers; + public static class HttpResponse { + public final String body; + public final int code; + public final Map> headers; private HttpResponse(int code, String body, Map> headers) { this.code = code; @@ -43,7 +43,7 @@ private HttpResponse(int code, String body, Map> headers) { } } - static HttpResponse sendGetRequest(String url, String bearerToken, String cookie) throws IOException { + public static HttpResponse sendGetRequest(String url, String bearerToken, String cookie) throws IOException { HttpURLConnection.setFollowRedirects(false); HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection(); if (bearerToken != null) { @@ -58,12 +58,14 @@ static HttpResponse sendGetRequest(String url, String bearerToken, String cookie Map> headers = connection.getHeaderFields(); InputStream inputStream = getInputStream(connection); - String bodyContent = readString(inputStream); + + String bodyContent = inputStream != null ? readString(inputStream) : null; return new HttpResponse(responseCode, bodyContent, headers); } - static HttpResponse sendPostRequest(String url, String bearerToken, String cookie, String body) throws IOException { + public static HttpResponse sendPostRequest(String url, String bearerToken, String cookie, + String body) throws IOException { HttpURLConnection.setFollowRedirects(false); HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection(); if (bearerToken != null) { diff --git a/portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/TokenHelper.java b/src/test/java/org/cbioportal/test/integration/security/util/TokenHelper.java similarity index 91% rename from portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/TokenHelper.java rename to src/test/java/org/cbioportal/test/integration/security/util/TokenHelper.java index c74e779e821..a30661b4862 100644 --- a/portal/src/integration-tests/saml-oauth2-setup/src/test/java/org/mskcc/cbio/portal/TokenHelper.java +++ b/src/test/java/org/cbioportal/test/integration/security/util/TokenHelper.java @@ -21,7 +21,7 @@ * along with this program. If not, see . */ -package org.mskcc.cbio.portal; +package org.cbioportal.test.integration.security.util; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; @@ -29,7 +29,7 @@ public class TokenHelper { - static String encodeWithoutSigning(String claims) { + public static String encodeWithoutSigning(String claims) { Base64.Encoder urlEncoder = Base64.getUrlEncoder(); Charset charset = StandardCharsets.UTF_8; diff --git a/utils/src/test/java/org/cbioportal/utils/config/PropertyConditionTest.java b/src/test/java/org/cbioportal/utils/config/PropertyConditionTest.java similarity index 98% rename from utils/src/test/java/org/cbioportal/utils/config/PropertyConditionTest.java rename to src/test/java/org/cbioportal/utils/config/PropertyConditionTest.java index 9b6657f9307..79dd1ba5e48 100644 --- a/utils/src/test/java/org/cbioportal/utils/config/PropertyConditionTest.java +++ b/src/test/java/org/cbioportal/utils/config/PropertyConditionTest.java @@ -29,7 +29,7 @@ public class PropertyConditionTest { @Before public void init() { - attributes = new HashMap(); + attributes = new HashMap(); attributes.put("name", "requested_prop"); attributes.put("havingValue", "requested_value"); attributes.put("matchIfMissing", false); diff --git a/web/src/test/java/org/cbioportal/web/AlterationDriverAnnotationControllerTest.java b/src/test/java/org/cbioportal/web/AlterationDriverAnnotationControllerTest.java similarity index 75% rename from web/src/test/java/org/cbioportal/web/AlterationDriverAnnotationControllerTest.java rename to src/test/java/org/cbioportal/web/AlterationDriverAnnotationControllerTest.java index 16b879e21e7..cfa208c397f 100644 --- a/web/src/test/java/org/cbioportal/web/AlterationDriverAnnotationControllerTest.java +++ b/src/test/java/org/cbioportal/web/AlterationDriverAnnotationControllerTest.java @@ -1,59 +1,55 @@ package org.cbioportal.web; +import static org.mockito.ArgumentMatchers.anyList; +import static org.mockito.Mockito.when; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.HashSet; +import java.util.List; import org.cbioportal.model.CustomDriverAnnotationReport; import org.cbioportal.service.AlterationDriverAnnotationService; +import org.cbioportal.web.config.TestConfig; import org.hamcrest.Matchers; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.*; - -import static org.mockito.ArgumentMatchers.anyList; -import static org.mockito.Mockito.when; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest(AlterationDriverAnnotationController.class) +@ContextConfiguration(classes={AlterationDriverAnnotationController.class, TestConfig.class}) public class AlterationDriverAnnotationControllerTest { private ObjectMapper objectMapper = new ObjectMapper(); - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private AlterationDriverAnnotationService alterationDriverAnnotationService; + @Autowired private MockMvc mockMvc; - @Bean - public AlterationDriverAnnotationService alterationDriverAnnotationService() { - return Mockito.mock(AlterationDriverAnnotationService.class); - } - @Before - public void setUp() throws Exception { + public void setUp() { Mockito.reset(alterationDriverAnnotationService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); } @Test + @WithMockUser public void fetchCustomDriverAnnotationReport() throws Exception { CustomDriverAnnotationReport report = new CustomDriverAnnotationReport(true, new HashSet<>(Arrays.asList("a", "b"))); when(alterationDriverAnnotationService.getCustomDriverAnnotationProps( @@ -62,7 +58,7 @@ public void fetchCustomDriverAnnotationReport() throws Exception { List body = new ArrayList<>(Collections.singletonList("molecularProfileId1")); mockMvc.perform(MockMvcRequestBuilders.post( - "/custom-driver-annotation-report/fetch") + "/api/custom-driver-annotation-report/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(body))) diff --git a/web/src/test/java/org/cbioportal/web/AlterationEnrichmentControllerTest.java b/src/test/java/org/cbioportal/web/AlterationEnrichmentControllerTest.java similarity index 95% rename from web/src/test/java/org/cbioportal/web/AlterationEnrichmentControllerTest.java rename to src/test/java/org/cbioportal/web/AlterationEnrichmentControllerTest.java index 04d56ecf7ad..54ab0b76405 100644 --- a/web/src/test/java/org/cbioportal/web/AlterationEnrichmentControllerTest.java +++ b/src/test/java/org/cbioportal/web/AlterationEnrichmentControllerTest.java @@ -8,6 +8,7 @@ import org.cbioportal.model.MolecularProfileCaseIdentifier; import org.cbioportal.model.MutationEventType; import org.cbioportal.service.AlterationEnrichmentService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.MolecularProfileCasesGroupAndAlterationTypeFilter; import org.cbioportal.web.parameter.MolecularProfileCasesGroupFilter; import org.cbioportal.web.util.AlterationFilterMockitoArgumentMatcher; @@ -18,18 +19,15 @@ import org.mockito.ArgumentMatcher; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.TestPropertySource; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; import java.math.BigDecimal; import java.util.ArrayList; @@ -41,11 +39,11 @@ import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.argThat; import static org.mockito.Mockito.when; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest(AlterationEnrichmentControllerTest.class) +@ContextConfiguration(classes={AlterationEnrichmentController.class, TestConfig.class}) public class AlterationEnrichmentControllerTest { private static final int TEST_ENTREZ_GENE_ID_1 = 1; @@ -63,24 +61,17 @@ public class AlterationEnrichmentControllerTest { private static final int TEST_NUMBER_OF_SAMPLES_PROFILED_IN_SET_1 = 1; private static final int TEST_NUMBER_OF_SAMPLES_PROFILED_IN_SET_2 = 1; - @Autowired - private WebApplicationContext wac; + @MockBean + private AlterationEnrichmentService alterationEnrichmentService; @Autowired - private AlterationEnrichmentService alterationEnrichmentService; + private MockMvc mockMvc; private ObjectMapper objectMapper = new ObjectMapper(); - - private MockMvc mockMvc; private ArrayList alterationEnrichments; Map mutationTypes; Map cnaTypes; - @Bean - public AlterationEnrichmentService alterationEnrichmentService() { - return Mockito.mock(AlterationEnrichmentService.class); - } - private MolecularProfileCasesGroupAndAlterationTypeFilter filter; private static class caseIdMatcher implements ArgumentMatcher { @@ -149,14 +140,12 @@ public void setUp() throws Exception { filter.setAlterationEventTypes(new AlterationFilter()); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - mutationTypes = new HashMap<>(); cnaTypes = new HashMap<>(); - } @Test + @WithMockUser public void fetchAlterationEnrichmentsAllTypes() throws Exception { when(alterationEnrichmentService.getAlterationEnrichments( @@ -173,7 +162,7 @@ public void fetchAlterationEnrichmentsAllTypes() throws Exception { filter.getAlterationEventTypes().setCopyNumberAlterationEventTypes(cnaTypes); mockMvc.perform(MockMvcRequestBuilders.post( - "/alteration-enrichments/fetch") + "/api/alteration-enrichments/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(filter))) @@ -199,6 +188,7 @@ public void fetchAlterationEnrichmentsAllTypes() throws Exception { } @Test + @WithMockUser public void fetchAlterationEnrichmentsNoTypes() throws Exception { when(alterationEnrichmentService.getAlterationEnrichments( @@ -215,7 +205,7 @@ public void fetchAlterationEnrichmentsNoTypes() throws Exception { filter.getAlterationEventTypes().setCopyNumberAlterationEventTypes(cnaTypes); mockMvc.perform(MockMvcRequestBuilders.post( - "/alteration-enrichments/fetch") + "/api/alteration-enrichments/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(filter))) @@ -241,6 +231,7 @@ public void fetchAlterationEnrichmentsNoTypes() throws Exception { } @Test + @WithMockUser public void fetchAlterationEnrichmentsAllMutationTypesDeselected() throws Exception { when(alterationEnrichmentService.getAlterationEnrichments( @@ -258,7 +249,7 @@ public void fetchAlterationEnrichmentsAllMutationTypesDeselected() throws Except filter.getAlterationEventTypes().setCopyNumberAlterationEventTypes(cnaTypes); mockMvc.perform(MockMvcRequestBuilders.post( - "/alteration-enrichments/fetch") + "/api/alteration-enrichments/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(filter))) @@ -284,6 +275,7 @@ public void fetchAlterationEnrichmentsAllMutationTypesDeselected() throws Except } @Test + @WithMockUser public void fetchAlterationEnrichmentsAllCnaTypesDeselected() throws Exception { when(alterationEnrichmentService.getAlterationEnrichments( @@ -301,7 +293,7 @@ public void fetchAlterationEnrichmentsAllCnaTypesDeselected() throws Exception { filter.getAlterationEventTypes().setCopyNumberAlterationEventTypes(cnaTypes); mockMvc.perform(MockMvcRequestBuilders.post( - "/alteration-enrichments/fetch") + "/api/alteration-enrichments/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(filter))) @@ -311,6 +303,7 @@ public void fetchAlterationEnrichmentsAllCnaTypesDeselected() throws Exception { } @Test + @WithMockUser public void fetchAlterationEnrichmentsSubsetTypes() throws Exception { when(alterationEnrichmentService.getAlterationEnrichments( @@ -327,7 +320,7 @@ public void fetchAlterationEnrichmentsSubsetTypes() throws Exception { filter.getAlterationEventTypes().setCopyNumberAlterationEventTypes(cnaTypes); mockMvc.perform(MockMvcRequestBuilders.post( - "/alteration-enrichments/fetch") + "/api/alteration-enrichments/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(filter))) diff --git a/src/test/java/org/cbioportal/web/CacheControllerTest.java b/src/test/java/org/cbioportal/web/CacheControllerTest.java new file mode 100644 index 00000000000..cf40aee1d37 --- /dev/null +++ b/src/test/java/org/cbioportal/web/CacheControllerTest.java @@ -0,0 +1,101 @@ +package org.cbioportal.web; + +import static org.mockito.ArgumentMatchers.anyBoolean; +import static org.mockito.ArgumentMatchers.anyString; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.doThrow; +import static org.mockito.Mockito.never; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + +import org.cbioportal.service.CacheService; +import org.cbioportal.service.exception.CacheOperationException; +import org.junit.Ignore; +import org.cbioportal.web.config.TestConfig; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.TestPropertySource; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.util.ReflectionTestUtils; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import org.springframework.test.web.servlet.result.MockMvcResultMatchers; + +@RunWith(SpringJUnit4ClassRunner.class) +@WebMvcTest(CacheController.class) +@ContextConfiguration(classes = {CacheController.class, TestConfig.class}) +@TestPropertySource( + properties = { + "cache.endpoint.enabled=true", + "cache.endpoint.api-key=correct-key" + } +) +public class CacheControllerTest { + + @Autowired + private MockMvc mockMvc; + + @MockBean + private CacheService cacheService; + + @Autowired + private CacheController cacheController; + + @Test + @WithMockUser + public void clearAllCachesNoKeyProvided() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.delete("/api/cache").with(csrf())) + .andExpect(MockMvcResultMatchers.status().isBadRequest()); + verify(cacheService, never()).clearCaches(true); + } + + @Test + @WithMockUser + public void clearAllCachesUnauthorized() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.delete("/api/cache").with(csrf()) + .header("X-API-KEY", "incorrect-key")) + .andExpect(MockMvcResultMatchers.status().isUnauthorized()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); + verify(cacheService, never()).clearCaches(true); + } + + @Test + @WithMockUser + public void clearAllCachesSuccess() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.delete("/api/cache").with(csrf()) + .header("X-API-KEY", "correct-key")) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); + verify(cacheService, times(1)).clearCaches(true); + } + + @Test + @WithMockUser + public void clearAllCachesDisabled() throws Exception { + ReflectionTestUtils.setField(cacheController, "cacheEndpointEnabled", false); + mockMvc.perform(MockMvcRequestBuilders.delete("/api/cache").with(csrf()) + .header("X-API-KEY", "correct-key")) + .andExpect(MockMvcResultMatchers.status().isNotFound()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); + verify(cacheService, never()).clearCaches(true); + ReflectionTestUtils.setField(cacheController, "cacheEndpointEnabled", true); + } + + @Test + @WithMockUser + public void clearAllCachesSkipSpringManaged() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.delete("/api/cache").param("springManagedCache", "false").with(csrf()) + .header("X-API-KEY", "correct-key")) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); + verify(cacheService, times(1)).clearCaches(false); + } +} diff --git a/src/test/java/org/cbioportal/web/CacheStatsControllerTest.java b/src/test/java/org/cbioportal/web/CacheStatsControllerTest.java new file mode 100644 index 00000000000..904b76f8d03 --- /dev/null +++ b/src/test/java/org/cbioportal/web/CacheStatsControllerTest.java @@ -0,0 +1,102 @@ +package org.cbioportal.web; + +import org.cbioportal.service.CacheStatisticsService; +import org.cbioportal.service.exception.CacheNotFoundException; +import org.cbioportal.web.config.TestConfig; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.mockito.invocation.InvocationOnMock; +import org.mockito.stubbing.Answer; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.TestPropertySource; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import org.springframework.test.web.servlet.result.MockMvcResultMatchers; + +import java.util.ArrayList; +import java.util.List; + +@RunWith(SpringJUnit4ClassRunner.class) +@WebMvcTest +@ContextConfiguration(classes = {CacheStatsController.class, TestConfig.class}) +@TestPropertySource( + properties = "persistence.cache_type=redis" +) +public class CacheStatsControllerTest { + + public static final String VALID_CACHE_ALIAS = "GeneralRepositoryCache"; + public static final String INVALID_CACHE_ALIAS = "InvalidCacheForTesting"; + + @Autowired + private MockMvc mockMvc; + + @MockBean + public CacheStatisticsService cacheStatisticsService; + + @Before + public void setUp() throws Exception { + Mockito.when(cacheStatisticsService.getKeyCountsPerClass(Mockito.anyString())).thenAnswer(new Answer>() { + public List answer(InvocationOnMock invocation) throws CacheNotFoundException { + Object[] args = invocation.getArguments(); + String cacheAlias = (String)args[0]; + if (VALID_CACHE_ALIAS.equals(cacheAlias)) { + return new ArrayList(); + } + throw new CacheNotFoundException(cacheAlias); + } + }); + Mockito.when(cacheStatisticsService.getKeysInCache(Mockito.anyString())).thenAnswer(new Answer>() { + public List answer(InvocationOnMock invocation) throws CacheNotFoundException { + Object[] args = invocation.getArguments(); + String cacheAlias = (String)args[0]; + if (VALID_CACHE_ALIAS.equals(cacheAlias)) { + return new ArrayList(); + } + throw new CacheNotFoundException(cacheAlias); + } + }); + } + + @Test + @WithMockUser + public void testGetKeysInCache() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/api/" + VALID_CACHE_ALIAS + "/keysInCache") + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)); + } + + @Test + @WithMockUser + public void testGetKeysInInvalidCache() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/api/" + INVALID_CACHE_ALIAS + "/keysInCache") + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isNotFound()); + } + + @Test + @WithMockUser + public void testGetKeyCountsPerClass() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/api/" + VALID_CACHE_ALIAS + "/keyCountsPerClass") + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)); + } + + @Test + @WithMockUser + public void testGetKeyCountsPerClassInvalidCache() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/api/" + INVALID_CACHE_ALIAS + "/keyCountsPerClass") + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isNotFound()); + } + +} diff --git a/web/src/test/java/org/cbioportal/web/CancerTypeControllerTest.java b/src/test/java/org/cbioportal/web/CancerTypeControllerTest.java similarity index 85% rename from web/src/test/java/org/cbioportal/web/CancerTypeControllerTest.java rename to src/test/java/org/cbioportal/web/CancerTypeControllerTest.java index 3accfce4a3d..fb53ae94c76 100644 --- a/web/src/test/java/org/cbioportal/web/CancerTypeControllerTest.java +++ b/src/test/java/org/cbioportal/web/CancerTypeControllerTest.java @@ -1,35 +1,31 @@ package org.cbioportal.web; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.TypeOfCancer; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.CancerTypeService; import org.cbioportal.service.exception.CancerTypeNotFoundException; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {CancerTypeController.class, TestConfig.class}) public class CancerTypeControllerTest { private static final String TEST_TYPE_OF_CANCER_ID_1 = "test_type_of_cancer_id_1"; @@ -44,26 +40,13 @@ public class CancerTypeControllerTest { private static final String TEST_PARENT_2 = "test_parent_2"; @Autowired - private WebApplicationContext wac; - - @Autowired - private CancerTypeService cancerTypeService; - private MockMvc mockMvc; - @Bean - public CancerTypeService cancerTypeService() { - return Mockito.mock(CancerTypeService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(cancerTypeService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } + @MockBean + public CancerTypeService cancerTypeService; @Test + @WithMockUser public void getAllCancerTypesDefaultProjection() throws Exception { List typeOfCancerList = new ArrayList<>(); @@ -85,7 +68,7 @@ public void getAllCancerTypesDefaultProjection() throws Exception { Mockito.when(cancerTypeService.getAllCancerTypes(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(typeOfCancerList); - mockMvc.perform(MockMvcRequestBuilders.get("/cancer-types") + mockMvc.perform(MockMvcRequestBuilders.get("/api/cancer-types") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -103,6 +86,7 @@ public void getAllCancerTypesDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllCancerTypesMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -110,25 +94,27 @@ public void getAllCancerTypesMetaProjection() throws Exception { Mockito.when(cancerTypeService.getMetaCancerTypes()).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/cancer-types") + mockMvc.perform(MockMvcRequestBuilders.get("/api/cancer-types") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getCancerTypeNotFound() throws Exception { Mockito.when(cancerTypeService.getCancerType(Mockito.anyString())) .thenThrow(new CancerTypeNotFoundException("cancer_type_id")); - mockMvc.perform(MockMvcRequestBuilders.get("/cancer-types/cancer_type_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/cancer-types/cancer_type_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isNotFound()) .andExpect(MockMvcResultMatchers.jsonPath("$.message").value("Cancer type not found: cancer_type_id")); } @Test + @WithMockUser public void getCancerType() throws Exception { TypeOfCancer typeOfCancer = new TypeOfCancer(); @@ -140,7 +126,7 @@ public void getCancerType() throws Exception { Mockito.when(cancerTypeService.getCancerType(Mockito.anyString())).thenReturn(typeOfCancer); - mockMvc.perform(MockMvcRequestBuilders.get("/cancer-types/cancer_type_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/cancer-types/cancer_type_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) diff --git a/src/test/java/org/cbioportal/web/ClinicalAttributeControllerTest.java b/src/test/java/org/cbioportal/web/ClinicalAttributeControllerTest.java new file mode 100644 index 00000000000..8433b5018fa --- /dev/null +++ b/src/test/java/org/cbioportal/web/ClinicalAttributeControllerTest.java @@ -0,0 +1,273 @@ +package org.cbioportal.web; + +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + +import com.fasterxml.jackson.databind.ObjectMapper; +import org.cbioportal.model.ClinicalAttribute; +import org.cbioportal.model.ClinicalAttributeCount; +import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.service.ClinicalAttributeService; +import org.cbioportal.service.exception.ClinicalAttributeNotFoundException; +import org.cbioportal.web.config.TestConfig; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.ClinicalAttributeCountFilter; +import org.cbioportal.web.parameter.SampleIdentifier; +import org.hamcrest.Matchers; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import org.springframework.test.web.servlet.result.MockMvcResultMatchers; +import java.util.ArrayList; +import java.util.List; + +@RunWith(SpringJUnit4ClassRunner.class) +@WebMvcTest +@ContextConfiguration(classes = {ClinicalAttributeController.class, TestConfig.class}) +public class ClinicalAttributeControllerTest { + + private static final String TEST_ATTR_ID_1 = "test_attr_id_1"; + private static final int TEST_CANCER_STUDY_ID_1 = 1; + private static final String TEST_CANCER_STUDY_IDENTIFIER_1 = "test_study_1"; + private static final String TEST_SAMPLE_ID_1 = "test_sample_id_1"; + private static final String TEST_DATATYPE_1 = "test_datatype_1"; + private static final String TEST_DESCRIPTION_1 = "test_description_1"; + private static final String TEST_DISPLAY_NAME_1 = "test_display_name_1"; + private static final boolean TEST_PATIENT_ATTRIBUTE_1 = true; + private static final String TEST_PRIORITY_1 = "test_priority_1"; + private static final Integer TEST_ATTRIBUTE_COUNT_1 = 3; + private static final String TEST_ATTR_ID_2 = "test_attr_id_2"; + private static final int TEST_CANCER_STUDY_ID_2 = 2; + private static final String TEST_CANCER_STUDY_IDENTIFIER_2 = "test_study_2"; + private static final String TEST_SAMPLE_ID_2 = "test_sample_id_2"; + private static final String TEST_DATATYPE_2 = "test_datatype_2"; + private static final String TEST_DESCRIPTION_2 = "test_description_2"; + private static final String TEST_DISPLAY_NAME_2 = "test_display_name_2"; + private static final boolean TEST_PATIENT_ATTRIBUTE_2 = false; + private static final String TEST_PRIORITY_2 = "test_priority_2"; + private static final Integer TEST_ATTRIBUTE_COUNT_2 = 1; + + @MockBean + private ClinicalAttributeService clinicalAttributeService; + + private ObjectMapper objectMapper = new ObjectMapper(); + + @Autowired + private MockMvc mockMvc; + + @Test + @WithMockUser + public void getAllClinicalAttributesDefaultProjection() throws Exception { + + List clinicalAttributes = createExampleClinicalAttributes(); + + Mockito.when(clinicalAttributeService.getAllClinicalAttributes(Mockito.any(), Mockito.any(), + Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(clinicalAttributes); + + mockMvc.perform(MockMvcRequestBuilders.get("/api/clinical-attributes") + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].cancerStudyId").doesNotExist()) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].clinicalAttributeId").value(TEST_ATTR_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].datatype").value(TEST_DATATYPE_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].displayName").value(TEST_DISPLAY_NAME_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].description").value(TEST_DESCRIPTION_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].priority").value(TEST_PRIORITY_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].cancerStudyId").doesNotExist()) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].clinicalAttributeId").value(TEST_ATTR_ID_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].datatype").value(TEST_DATATYPE_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].displayName").value(TEST_DISPLAY_NAME_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].description").value(TEST_DESCRIPTION_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].priority").value(TEST_PRIORITY_2)); + } + + @Test + @WithMockUser + public void getAllClinicalAttributesMetaProjection() throws Exception { + + BaseMeta baseMeta = new BaseMeta(); + baseMeta.setTotalCount(2); + + Mockito.when(clinicalAttributeService.getMetaClinicalAttributes()).thenReturn(baseMeta); + + mockMvc.perform(MockMvcRequestBuilders.get("/api/clinical-attributes") + .param("projection", "META")) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); + } + + @Test + @WithMockUser + public void getAllClinicalAttributesInStudyDefaultProjection() throws Exception { + + List clinicalAttributes = createExampleClinicalAttributes(); + + Mockito.when(clinicalAttributeService.getAllClinicalAttributesInStudy(Mockito.any(), Mockito.any(), + Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())) + .thenReturn(clinicalAttributes); + + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/clinical-attributes") + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].cancerStudyId").doesNotExist()) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].clinicalAttributeId").value(TEST_ATTR_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].datatype").value(TEST_DATATYPE_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].displayName").value(TEST_DISPLAY_NAME_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].description").value(TEST_DESCRIPTION_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].priority").value(TEST_PRIORITY_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].cancerStudyId").doesNotExist()) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].clinicalAttributeId").value(TEST_ATTR_ID_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].datatype").value(TEST_DATATYPE_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].displayName").value(TEST_DISPLAY_NAME_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].description").value(TEST_DESCRIPTION_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].priority").value(TEST_PRIORITY_2)); + } + + @Test + @WithMockUser + public void getAllClinicalAttributesInStudyMetaProjection() throws Exception { + + BaseMeta baseMeta = new BaseMeta(); + baseMeta.setTotalCount(2); + + Mockito.when(clinicalAttributeService.getMetaClinicalAttributesInStudy(Mockito.anyString())) + .thenReturn(baseMeta); + + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/clinical-attributes") + .param("projection", "META")) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); + } + + @Test + @WithMockUser + public void getClinicalAttributeInStudyNotFound() throws Exception { + + Mockito.when(clinicalAttributeService.getClinicalAttribute(Mockito.anyString(), Mockito.anyString())).thenThrow( + new ClinicalAttributeNotFoundException("test_study_id", "test_clinical_attribute_id")); + + mockMvc.perform(MockMvcRequestBuilders + .get("/api/studies/test_study_id/clinical-attributes/test_clinical_attribute_id") + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isNotFound()) + .andExpect(MockMvcResultMatchers.jsonPath("$.message") + .value("Clinical attribute not found in study test_study_id: test_clinical_attribute_id")); + } + + @Test + @WithMockUser + public void getClinicalAttributeInStudy() throws Exception { + + ClinicalAttribute clinicalAttribute = new ClinicalAttribute(); + clinicalAttribute.setAttrId(TEST_ATTR_ID_1); + clinicalAttribute.setCancerStudyId(TEST_CANCER_STUDY_ID_1); + clinicalAttribute.setCancerStudyIdentifier(TEST_CANCER_STUDY_IDENTIFIER_1); + clinicalAttribute.setDatatype(TEST_DATATYPE_1); + clinicalAttribute.setDescription(TEST_DESCRIPTION_1); + clinicalAttribute.setDisplayName(TEST_DISPLAY_NAME_1); + clinicalAttribute.setPatientAttribute(TEST_PATIENT_ATTRIBUTE_1); + clinicalAttribute.setPriority(TEST_PRIORITY_1); + + Mockito.when(clinicalAttributeService.getClinicalAttribute(Mockito.anyString(), Mockito.anyString())) + .thenReturn(clinicalAttribute); + + mockMvc.perform(MockMvcRequestBuilders + .get("/api/studies/test_study_id/clinical-attributes/test_clinical_attribute_id") + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$.cancerStudyId").doesNotExist()) + .andExpect(MockMvcResultMatchers.jsonPath("$.clinicalAttributeId").value(TEST_ATTR_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$.studyId").value(TEST_CANCER_STUDY_IDENTIFIER_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$.datatype").value(TEST_DATATYPE_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$.displayName").value(TEST_DISPLAY_NAME_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$.patientAttribute").value(TEST_PATIENT_ATTRIBUTE_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$.description").value(TEST_DESCRIPTION_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$.priority").value(TEST_PRIORITY_1)); + } + + @Test + @WithMockUser + public void fetchClinicalAttributes() throws Exception { + + List clinicalAttributes = createExampleClinicalAttributes(); + + Mockito.when(clinicalAttributeService.fetchClinicalAttributes(Mockito.anyList(), Mockito.anyString())) + .thenReturn(clinicalAttributes); + + List studyIds = new ArrayList<>(); + studyIds.add("study_id_1"); + studyIds.add("study_id_2"); + + mockMvc.perform(MockMvcRequestBuilders.post("/api/clinical-attributes/fetch").with(csrf()) + .accept(MediaType.APPLICATION_JSON) + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(studyIds))) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].cancerStudyId").doesNotExist()) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].clinicalAttributeId").value(TEST_ATTR_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].datatype").value(TEST_DATATYPE_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].displayName").value(TEST_DISPLAY_NAME_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].description").value(TEST_DESCRIPTION_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].priority").value(TEST_PRIORITY_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].cancerStudyId").doesNotExist()) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].clinicalAttributeId").value(TEST_ATTR_ID_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].datatype").value(TEST_DATATYPE_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].displayName").value(TEST_DISPLAY_NAME_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].description").value(TEST_DESCRIPTION_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].priority").value(TEST_PRIORITY_2)); + } + + private List createExampleClinicalAttributes() { + + List clinicalAttributeList = new ArrayList<>(); + ClinicalAttribute clinicalAttribute1 = new ClinicalAttribute(); + clinicalAttribute1.setAttrId(TEST_ATTR_ID_1); + clinicalAttribute1.setCancerStudyId(TEST_CANCER_STUDY_ID_1); + clinicalAttribute1.setCancerStudyIdentifier(TEST_CANCER_STUDY_IDENTIFIER_1); + clinicalAttribute1.setDatatype(TEST_DATATYPE_1); + clinicalAttribute1.setDescription(TEST_DESCRIPTION_1); + clinicalAttribute1.setDisplayName(TEST_DISPLAY_NAME_1); + clinicalAttribute1.setPatientAttribute(TEST_PATIENT_ATTRIBUTE_1); + clinicalAttribute1.setPriority(TEST_PRIORITY_1); + clinicalAttributeList.add(clinicalAttribute1); + ClinicalAttribute clinicalAttribute2 = new ClinicalAttribute(); + clinicalAttribute2.setAttrId(TEST_ATTR_ID_2); + clinicalAttribute2.setCancerStudyId(TEST_CANCER_STUDY_ID_2); + clinicalAttribute2.setCancerStudyIdentifier(TEST_CANCER_STUDY_IDENTIFIER_2); + clinicalAttribute2.setDatatype(TEST_DATATYPE_2); + clinicalAttribute2.setDescription(TEST_DESCRIPTION_2); + clinicalAttribute2.setDisplayName(TEST_DISPLAY_NAME_2); + clinicalAttribute2.setPatientAttribute(TEST_PATIENT_ATTRIBUTE_2); + clinicalAttribute2.setPriority(TEST_PRIORITY_2); + clinicalAttributeList.add(clinicalAttribute2); + return clinicalAttributeList; + } +} diff --git a/src/test/java/org/cbioportal/web/ClinicalAttributeCountControllerTest.java b/src/test/java/org/cbioportal/web/ClinicalAttributeCountControllerTest.java new file mode 100644 index 00000000000..e59b46f760e --- /dev/null +++ b/src/test/java/org/cbioportal/web/ClinicalAttributeCountControllerTest.java @@ -0,0 +1,129 @@ +package org.cbioportal.web; + +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + +import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; +import org.cbioportal.model.ClinicalAttribute; +import org.cbioportal.model.ClinicalAttributeCount; +import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.service.ClinicalAttributeService; +import org.cbioportal.service.exception.ClinicalAttributeNotFoundException; +import org.cbioportal.web.config.TestConfig; +import org.cbioportal.web.parameter.ClinicalAttributeCountFilter; +import org.cbioportal.web.parameter.HeaderKeyConstants; +import org.cbioportal.web.parameter.SampleIdentifier; +import org.hamcrest.Matchers; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import org.springframework.test.web.servlet.result.MockMvcResultMatchers; + +@RunWith(SpringJUnit4ClassRunner.class) +@WebMvcTest +@ContextConfiguration(classes = {ClinicalAttributeCountController.class, TestConfig.class}) +public class ClinicalAttributeCountControllerTest { + + private static final String TEST_ATTR_ID_1 = "test_attr_id_1"; + private static final String TEST_CANCER_STUDY_IDENTIFIER_1 = "test_study_1"; + private static final String TEST_SAMPLE_ID_1 = "test_sample_id_1"; + private static final Integer TEST_ATTRIBUTE_COUNT_1 = 3; + private static final String TEST_ATTR_ID_2 = "test_attr_id_2"; + private static final String TEST_SAMPLE_ID_2 = "test_sample_id_2"; + private static final Integer TEST_ATTRIBUTE_COUNT_2 = 1; + + @MockBean + private ClinicalAttributeService clinicalAttributeService; + + private ObjectMapper objectMapper = new ObjectMapper(); + + @Autowired + private MockMvc mockMvc; + + @Test + @WithMockUser + public void getClinicalAttributeCountsBySampleIds() throws Exception { + + List clinicalAttributes = new ArrayList<>(); + ClinicalAttributeCount clinicalAttributeCount1 = new ClinicalAttributeCount(); + clinicalAttributeCount1.setAttrId(TEST_ATTR_ID_1); + clinicalAttributeCount1.setCount(TEST_ATTRIBUTE_COUNT_1); + clinicalAttributes.add(clinicalAttributeCount1); + ClinicalAttributeCount clinicalAttributeCount2 = new ClinicalAttributeCount(); + clinicalAttributeCount2.setAttrId(TEST_ATTR_ID_2); + clinicalAttributeCount2.setCount(TEST_ATTRIBUTE_COUNT_2); + clinicalAttributes.add(clinicalAttributeCount2); + + Mockito.when(clinicalAttributeService.getClinicalAttributeCountsBySampleIds(Mockito.any(), + Mockito.any())).thenReturn(clinicalAttributes); + + ClinicalAttributeCountFilter clinicalAttributeCountFilter = new ClinicalAttributeCountFilter(); + List sampleIdentifierList = new ArrayList<>(); + SampleIdentifier sampleIdentifier1 = new SampleIdentifier(); + sampleIdentifier1.setSampleId(TEST_SAMPLE_ID_1); + sampleIdentifier1.setStudyId(TEST_CANCER_STUDY_IDENTIFIER_1); + sampleIdentifierList.add(sampleIdentifier1); + SampleIdentifier sampleIdentifier2 = new SampleIdentifier(); + sampleIdentifier2.setSampleId(TEST_SAMPLE_ID_2); + sampleIdentifier2.setStudyId(TEST_CANCER_STUDY_IDENTIFIER_1); + sampleIdentifierList.add(sampleIdentifier2); + clinicalAttributeCountFilter.setSampleIdentifiers(sampleIdentifierList); + + mockMvc.perform(MockMvcRequestBuilders.post("/api/clinical-attributes/counts/fetch").with(csrf()) + .accept(MediaType.APPLICATION_JSON) + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(clinicalAttributeCountFilter))) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].clinicalAttributeId").value(TEST_ATTR_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].count").value(TEST_ATTRIBUTE_COUNT_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].clinicalAttributeId").value(TEST_ATTR_ID_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].count").value(TEST_ATTRIBUTE_COUNT_2)); + } + + @Test + @WithMockUser + public void getClinicalAttributeCountsBySampleListId() throws Exception { + + List clinicalAttributes = new ArrayList<>(); + ClinicalAttributeCount clinicalAttributeCount1 = new ClinicalAttributeCount(); + clinicalAttributeCount1.setAttrId(TEST_ATTR_ID_1); + clinicalAttributeCount1.setCount(TEST_ATTRIBUTE_COUNT_1); + clinicalAttributes.add(clinicalAttributeCount1); + ClinicalAttributeCount clinicalAttributeCount2 = new ClinicalAttributeCount(); + clinicalAttributeCount2.setAttrId(TEST_ATTR_ID_2); + clinicalAttributeCount2.setCount(TEST_ATTRIBUTE_COUNT_2); + clinicalAttributes.add(clinicalAttributeCount2); + + Mockito.when(clinicalAttributeService.getClinicalAttributeCountsBySampleListId(Mockito.anyString())).thenReturn(clinicalAttributes); + + ClinicalAttributeCountFilter clinicalAttributeCountFilter = new ClinicalAttributeCountFilter(); + clinicalAttributeCountFilter.setSampleListId("test_sample_list_id"); + + mockMvc.perform(MockMvcRequestBuilders.post("/api/clinical-attributes/counts/fetch").with(csrf()) + .accept(MediaType.APPLICATION_JSON) + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(clinicalAttributeCountFilter)) + .param("projection", "DETAILED")) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].clinicalAttributeId").value(TEST_ATTR_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].count").value(TEST_ATTRIBUTE_COUNT_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].clinicalAttributeId").value(TEST_ATTR_ID_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].count").value(TEST_ATTRIBUTE_COUNT_2)); + } + +} diff --git a/web/src/test/java/org/cbioportal/web/ClinicalDataControllerTest.java b/src/test/java/org/cbioportal/web/ClinicalDataControllerTest.java similarity index 91% rename from web/src/test/java/org/cbioportal/web/ClinicalDataControllerTest.java rename to src/test/java/org/cbioportal/web/ClinicalDataControllerTest.java index 71efb782ab9..86d56d7accb 100644 --- a/web/src/test/java/org/cbioportal/web/ClinicalDataControllerTest.java +++ b/src/test/java/org/cbioportal/web/ClinicalDataControllerTest.java @@ -1,40 +1,39 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.ClinicalData; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.ClinicalDataService; import org.cbioportal.web.config.CustomObjectMapper; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.ClinicalDataIdentifier; import org.cbioportal.web.parameter.ClinicalDataMultiStudyFilter; import org.cbioportal.web.parameter.ClinicalDataSingleStudyFilter; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.List; import static org.mockito.Mockito.*; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {ClinicalDataController.class, TestConfig.class}) public class ClinicalDataControllerTest { private static final String TEST_ATTR_ID_1 = "test_attr_id_1"; @@ -44,28 +43,17 @@ public class ClinicalDataControllerTest { private static final String TEST_ATTR_VALUE_2 = "test_attr_value_2"; private static final int TEST_INTERNAL_ID_2 = 2; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private ClinicalDataService clinicalDataService; private ObjectMapper objectMapper = new CustomObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public ClinicalDataService clinicalDataService() { - return mock(ClinicalDataService.class); - } - - @Before - public void setUp() throws Exception { - reset(clinicalDataService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } @Test + @WithMockUser public void getAllClinicalDataOfSampleInStudyDefaultProjection() throws Exception { List sampleClinicalDataList = new ArrayList<>(); @@ -83,7 +71,7 @@ public void getAllClinicalDataOfSampleInStudyDefaultProjection() throws Exceptio any(), any(), any(), any(), any(), any())).thenReturn(sampleClinicalDataList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/samples/test_sample_id/clinical-data") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/samples/test_sample_id/clinical-data") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -101,6 +89,7 @@ public void getAllClinicalDataOfSampleInStudyDefaultProjection() throws Exceptio } @Test + @WithMockUser public void getAllClinicalDataOfSampleInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -109,13 +98,14 @@ public void getAllClinicalDataOfSampleInStudyMetaProjection() throws Exception { when(clinicalDataService.getMetaSampleClinicalData(any(), any(), any())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/samples/test_sample_id/clinical-data") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/samples/test_sample_id/clinical-data") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getAllClinicalDataOfPatientInStudyDefaultProjection() throws Exception { List patientClinicalDataList = new ArrayList<>(); @@ -133,7 +123,7 @@ public void getAllClinicalDataOfPatientInStudyDefaultProjection() throws Excepti any(), any(), any(), any(), any(), any())).thenReturn(patientClinicalDataList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients/test_patient_id/clinical-data") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients/test_patient_id/clinical-data") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -151,6 +141,7 @@ public void getAllClinicalDataOfPatientInStudyDefaultProjection() throws Excepti } @Test + @WithMockUser public void getAllClinicalDataOfPatientInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -159,13 +150,14 @@ public void getAllClinicalDataOfPatientInStudyMetaProjection() throws Exception when(clinicalDataService.getMetaPatientClinicalData(any(), any(), any())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients/test_patient_id/clinical-data") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients/test_patient_id/clinical-data") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getAllClinicalDataInStudyDefaultProjection() throws Exception { List patientClinicalDataList = new ArrayList<>(); @@ -183,7 +175,7 @@ public void getAllClinicalDataInStudyDefaultProjection() throws Exception { any(), any(), any(), any(), any(), any(), any(), any())).thenReturn(patientClinicalDataList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/clinical-data") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/clinical-data") .param("clinicalDataType", "PATIENT") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) @@ -202,6 +194,7 @@ public void getAllClinicalDataInStudyDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllClinicalDataInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -210,7 +203,7 @@ public void getAllClinicalDataInStudyMetaProjection() throws Exception { when(clinicalDataService.getMetaAllClinicalData(any(), any(), any())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/clinical-data") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/clinical-data") .param("projection", "META") .param("clinicalDataType", "PATIENT")) .andExpect(MockMvcResultMatchers.status().isOk()) @@ -219,6 +212,7 @@ public void getAllClinicalDataInStudyMetaProjection() throws Exception { @Test + @WithMockUser public void fetchClinicalDataInStudyDefaultProjection() throws Exception { List patientClinicalDataList = new ArrayList<>(); @@ -242,7 +236,7 @@ public void fetchClinicalDataInStudyDefaultProjection() throws Exception { ClinicalDataSingleStudyFilter clinicalDataSingleStudyFilter = new ClinicalDataSingleStudyFilter(); clinicalDataSingleStudyFilter.setIds(ids); - mockMvc.perform(MockMvcRequestBuilders.post("/studies/test_study_id/clinical-data/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/studies/test_study_id/clinical-data/fetch").with(csrf()) .param("clinicalDataType", "SAMPLE") .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) @@ -263,6 +257,7 @@ public void fetchClinicalDataInStudyDefaultProjection() throws Exception { } @Test + @WithMockUser public void fetchClinicalDataInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -278,7 +273,7 @@ public void fetchClinicalDataInStudyMetaProjection() throws Exception { ClinicalDataSingleStudyFilter clinicalDataSingleStudyFilter = new ClinicalDataSingleStudyFilter(); clinicalDataSingleStudyFilter.setIds(ids); - mockMvc.perform(MockMvcRequestBuilders.post("/studies/test_study_id/clinical-data/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/studies/test_study_id/clinical-data/fetch").with(csrf()) .param("projection", "META") .param("clinicalDataType", "SAMPLE") .contentType(MediaType.APPLICATION_JSON) @@ -288,6 +283,7 @@ public void fetchClinicalDataInStudyMetaProjection() throws Exception { } @Test + @WithMockUser public void fetchClinicalDataDefaultProjection() throws Exception { List patientClinicalDataList = new ArrayList<>(); @@ -316,7 +312,7 @@ public void fetchClinicalDataDefaultProjection() throws Exception { ClinicalDataMultiStudyFilter clinicalDataMultiStudyFilter = new ClinicalDataMultiStudyFilter(); clinicalDataMultiStudyFilter.setIdentifiers(clinicalDataIdentifiers); - mockMvc.perform(MockMvcRequestBuilders.post("/clinical-data/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/clinical-data/fetch").with(csrf()) .param("clinicalDataType", "PATIENT") .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) @@ -337,6 +333,7 @@ public void fetchClinicalDataDefaultProjection() throws Exception { } @Test + @WithMockUser public void fetchClinicalDataMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -357,7 +354,7 @@ public void fetchClinicalDataMetaProjection() throws Exception { ClinicalDataMultiStudyFilter clinicalDataMultiStudyFilter = new ClinicalDataMultiStudyFilter(); clinicalDataMultiStudyFilter.setIdentifiers(clinicalDataIdentifiers); - mockMvc.perform(MockMvcRequestBuilders.post("/clinical-data/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/clinical-data/fetch").with(csrf()) .param("projection", "META") .param("clinicalDataType", "PATIENT") .contentType(MediaType.APPLICATION_JSON) diff --git a/web/src/test/java/org/cbioportal/web/ClinicalDataEnrichmentControllerTest.java b/src/test/java/org/cbioportal/web/ClinicalDataEnrichmentControllerTest.java similarity index 86% rename from web/src/test/java/org/cbioportal/web/ClinicalDataEnrichmentControllerTest.java rename to src/test/java/org/cbioportal/web/ClinicalDataEnrichmentControllerTest.java index bb9c9333476..8e9ab0fa5ef 100644 --- a/web/src/test/java/org/cbioportal/web/ClinicalDataEnrichmentControllerTest.java +++ b/src/test/java/org/cbioportal/web/ClinicalDataEnrichmentControllerTest.java @@ -1,5 +1,8 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import java.math.BigDecimal; import java.util.ArrayList; import java.util.Arrays; @@ -10,35 +13,31 @@ import org.cbioportal.model.Sample; import org.cbioportal.service.ClinicalAttributeService; import org.cbioportal.service.SampleService; -import org.cbioportal.service.util.ClinicalAttributeUtil; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.Group; import org.cbioportal.web.parameter.GroupFilter; import org.cbioportal.web.parameter.SampleIdentifier; import org.cbioportal.web.util.ClinicalDataEnrichmentUtil; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; import com.fasterxml.jackson.databind.ObjectMapper; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {ClinicalDataEnrichmentController.class, TestConfig.class}) public class ClinicalDataEnrichmentControllerTest { public static final String STUDY_ID1 = "study_id1"; @@ -59,46 +58,22 @@ public class ClinicalDataEnrichmentControllerTest { public static final String CLINICAL_ATTRIBUTE_ID_3 = "attribute_id3"; public static final String CLINICAL_ATTRIBUTE_ID_4 = "attribute_id4"; - @Bean - public ClinicalAttributeUtil clinicalAttributeUtil() { - return new ClinicalAttributeUtil(); - } - - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private ClinicalDataEnrichmentUtil clinicalDataEnrichmentUtil; - @Autowired + @MockBean private ClinicalAttributeService clinicalAttributeService; - @Autowired + @MockBean private SampleService sampleService; + + @Autowired private MockMvc mockMvc; private ObjectMapper objectMapper = new ObjectMapper(); - @Bean - public SampleService sampleService() { - return Mockito.mock(SampleService.class); - } - - @Bean - public ClinicalDataEnrichmentUtil clinicalDataEnrichmentUtil() { - return Mockito.mock(ClinicalDataEnrichmentUtil.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(sampleService); - Mockito.reset(clinicalAttributeService); - Mockito.reset(clinicalDataEnrichmentUtil); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void fetchClinicalDataCounts() throws Exception { SampleIdentifier sampleIdentifier1 = new SampleIdentifier(); @@ -167,7 +142,7 @@ public void fetchClinicalDataCounts() throws Exception { groupFilter.setGroups(groups); mockMvc.perform( - MockMvcRequestBuilders.post("/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON) + MockMvcRequestBuilders.post("/api/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON).with(csrf()) .contentType(MediaType.APPLICATION_JSON).content(objectMapper.writeValueAsString(groupFilter))) .andExpect(MockMvcResultMatchers.status().isBadRequest()).andExpect(MockMvcResultMatchers .jsonPath("$.message").value("interceptedGroupFilter size must be between 2 and 2147483647")); @@ -180,13 +155,13 @@ public void fetchClinicalDataCounts() throws Exception { // "groups[0].sampleIdentifiers size must be between 1 and 10000000" mockMvc.perform( - MockMvcRequestBuilders.post("/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON) + MockMvcRequestBuilders.post("/api/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON).with(csrf()) .contentType(MediaType.APPLICATION_JSON).content(objectMapper.writeValueAsString(groupFilter))) .andExpect(MockMvcResultMatchers.status().isBadRequest()); // "groups size must be between 2 and 2147483647" mockMvc.perform( - MockMvcRequestBuilders.post("/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON) + MockMvcRequestBuilders.post("/api/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON).with(csrf()) .contentType(MediaType.APPLICATION_JSON).content(objectMapper.writeValueAsString(groupFilter))) .andExpect(MockMvcResultMatchers.status().isBadRequest()); @@ -199,7 +174,7 @@ public void fetchClinicalDataCounts() throws Exception { group1.setSampleIdentifiers(Arrays.asList(sampleIdentifier1, sampleIdentifier2)); mockMvc.perform( - MockMvcRequestBuilders.post("/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON) + MockMvcRequestBuilders.post("/api/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON).with(csrf()) .contentType(MediaType.APPLICATION_JSON).content(objectMapper.writeValueAsString(groupFilter))) .andExpect(MockMvcResultMatchers.status().isBadRequest()) .andExpect(MockMvcResultMatchers.jsonPath("$.message") @@ -210,7 +185,7 @@ public void fetchClinicalDataCounts() throws Exception { // when all are invalid samples mockMvc.perform( - MockMvcRequestBuilders.post("/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON) + MockMvcRequestBuilders.post("/api/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON).with(csrf()) .contentType(MediaType.APPLICATION_JSON).content(objectMapper.writeValueAsString(groupFilter))) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(0))); @@ -254,7 +229,7 @@ public void fetchClinicalDataCounts() throws Exception { .thenReturn(Arrays.asList(clinicalDataEnrichment)); mockMvc.perform( - MockMvcRequestBuilders.post("/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON) + MockMvcRequestBuilders.post("/api/clinical-data-enrichments/fetch").accept(MediaType.APPLICATION_JSON).with(csrf()) .contentType(MediaType.APPLICATION_JSON).content(objectMapper.writeValueAsString(groupFilter))) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) diff --git a/web/src/test/java/org/cbioportal/web/ClinicalEventControllerTest.java b/src/test/java/org/cbioportal/web/ClinicalEventControllerTest.java similarity index 90% rename from web/src/test/java/org/cbioportal/web/ClinicalEventControllerTest.java rename to src/test/java/org/cbioportal/web/ClinicalEventControllerTest.java index 4a433c8fd69..acd87275ada 100644 --- a/web/src/test/java/org/cbioportal/web/ClinicalEventControllerTest.java +++ b/src/test/java/org/cbioportal/web/ClinicalEventControllerTest.java @@ -4,32 +4,29 @@ import org.cbioportal.model.ClinicalEventData; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.ClinicalEventService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; import java.util.ArrayList; import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {ClinicalEventController.class, TestConfig.class}) public class ClinicalEventControllerTest { private static final int TEST_CLINICAL_EVENT_ID_1 = 1; @@ -52,27 +49,14 @@ public class ClinicalEventControllerTest { private static final String TEST_KEY_4 = "test_key_4"; private static final String TEST_VALUE_4 = "test_value_4"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private ClinicalEventService clinicalEventService; + @Autowired private MockMvc mockMvc; - @Bean - public ClinicalEventService clinicalEventService() { - return Mockito.mock(ClinicalEventService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(clinicalEventService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllClinicalEventsOfPatientInStudy() throws Exception { List clinicalEventList = createExampleClinicalEventList(); @@ -81,7 +65,7 @@ public void getAllClinicalEventsOfPatientInStudy() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())) .thenReturn(clinicalEventList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients/test_patient_id/clinical-events") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients/test_patient_id/clinical-events") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -109,6 +93,7 @@ public void getAllClinicalEventsOfPatientInStudy() throws Exception { } @Test + @WithMockUser public void getAllClinicalEventsOfPatientInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -117,13 +102,14 @@ public void getAllClinicalEventsOfPatientInStudyMetaProjection() throws Exceptio Mockito.when(clinicalEventService.getMetaPatientClinicalEvents(Mockito.anyString(), Mockito.anyString())) .thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients/test_patient_id/clinical-events") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients/test_patient_id/clinical-events") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getAllClinicalEventsInStudy() throws Exception { List clinicalEventList = createExampleClinicalEventList(); @@ -132,7 +118,7 @@ public void getAllClinicalEventsInStudy() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())) .thenReturn(clinicalEventList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/clinical-events") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/clinical-events") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -160,6 +146,7 @@ public void getAllClinicalEventsInStudy() throws Exception { } @Test + @WithMockUser public void getAllClinicalEventsInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -168,7 +155,7 @@ public void getAllClinicalEventsInStudyMetaProjection() throws Exception { Mockito.when(clinicalEventService.getMetaClinicalEvents(Mockito.anyString())) .thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/clinical-events") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/clinical-events") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); diff --git a/web/src/test/java/org/cbioportal/web/CoExpressionControllerTest.java b/src/test/java/org/cbioportal/web/CoExpressionControllerTest.java similarity index 82% rename from web/src/test/java/org/cbioportal/web/CoExpressionControllerTest.java rename to src/test/java/org/cbioportal/web/CoExpressionControllerTest.java index 66a191ab3e9..ae97e59d1d6 100644 --- a/web/src/test/java/org/cbioportal/web/CoExpressionControllerTest.java +++ b/src/test/java/org/cbioportal/web/CoExpressionControllerTest.java @@ -1,37 +1,36 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; import org.cbioportal.model.CoExpression; import org.cbioportal.model.EntityType; import org.cbioportal.service.CoExpressionService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.CoExpressionFilter; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {CoExpressionController.class, TestConfig.class}) public class CoExpressionControllerTest { private static final String TEST_ENTREZ_GENE_ID_1 = "1"; @@ -41,29 +40,16 @@ public class CoExpressionControllerTest { private static final BigDecimal TEST_SPEARMANS_CORRELATION_2 = new BigDecimal(4.1); private static final BigDecimal TEST_P_VALUE_2 = new BigDecimal(0.66); - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private CoExpressionService coExpressionService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public CoExpressionService coExpressionService() { - return Mockito.mock(CoExpressionService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(coExpressionService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void fetchMolecularProfileCoExpressions() throws Exception { List coExpressionList = new ArrayList<>(); @@ -89,7 +75,7 @@ public void fetchMolecularProfileCoExpressions() throws Exception { coExpressionFilter.setEntrezGeneId(1); mockMvc.perform(MockMvcRequestBuilders.post( - "/molecular-profiles/co-expressions/fetch") + "/api/molecular-profiles/co-expressions/fetch").with(csrf()) .param("molecularProfileIdA", "test_molecular_profile_id") .param("molecularProfileIdB", "test_molecular_profile_id") .accept(MediaType.APPLICATION_JSON) diff --git a/web/src/test/java/org/cbioportal/web/CopyNumberSegmentControllerTest.java b/src/test/java/org/cbioportal/web/CopyNumberSegmentControllerTest.java similarity index 90% rename from web/src/test/java/org/cbioportal/web/CopyNumberSegmentControllerTest.java rename to src/test/java/org/cbioportal/web/CopyNumberSegmentControllerTest.java index 5664fe09cf8..88e10e11eaa 100644 --- a/web/src/test/java/org/cbioportal/web/CopyNumberSegmentControllerTest.java +++ b/src/test/java/org/cbioportal/web/CopyNumberSegmentControllerTest.java @@ -1,37 +1,37 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.CopyNumberSeg; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.CopyNumberSegmentService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.cbioportal.web.parameter.SampleIdentifier; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.web.context.WebApplicationContext; -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; - @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {CopyNumberSegmentController.class, TestConfig.class}) public class CopyNumberSegmentControllerTest { private static final int TEST_SAMPLE_ID_1 = 1; @@ -55,30 +55,18 @@ public class CopyNumberSegmentControllerTest { private static final Integer TEST_NUM_PROBES_2 = 5; private static final BigDecimal TEST_SEGMENT_MEAN_2 = new BigDecimal(0.4); - - @Autowired private WebApplicationContext wac; - @Autowired + @MockBean private CopyNumberSegmentService copyNumberSegmentService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public CopyNumberSegmentService copyNumberSegmentService() { - return Mockito.mock(CopyNumberSegmentService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(copyNumberSegmentService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getCopyNumberSegmentsInSampleInStudyDefaultProjection() throws Exception { List copyNumberSegList = createExampleCopyNumberSegs(); @@ -87,7 +75,7 @@ public void getCopyNumberSegmentsInSampleInStudyDefaultProjection() throws Excep Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(copyNumberSegList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/samples/test_sample_id/copy-number-segments") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/samples/test_sample_id/copy-number-segments") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -111,6 +99,7 @@ public void getCopyNumberSegmentsInSampleInStudyDefaultProjection() throws Excep } @Test + @WithMockUser public void getCopyNumberSegmentsInSampleInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -119,13 +108,14 @@ public void getCopyNumberSegmentsInSampleInStudyMetaProjection() throws Exceptio Mockito.when(copyNumberSegmentService.getMetaCopyNumberSegmentsInSampleInStudy(Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/samples/test_sample_id/copy-number-segments") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/samples/test_sample_id/copy-number-segments") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void fetchCopyNumberSegmentsDefaultProjection() throws Exception { List copyNumberSegList = createExampleCopyNumberSegs(); @@ -143,7 +133,7 @@ public void fetchCopyNumberSegmentsDefaultProjection() throws Exception { sampleIdentifier2.setSampleId(TEST_SAMPLE_STABLE_ID_2); sampleIdentifiers.add(sampleIdentifier2); - mockMvc.perform(MockMvcRequestBuilders.post("/copy-number-segments/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/copy-number-segments/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(sampleIdentifiers))) @@ -169,6 +159,7 @@ public void fetchCopyNumberSegmentsDefaultProjection() throws Exception { } @Test + @WithMockUser public void fetchCopyNumberSegmentsMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -187,7 +178,7 @@ public void fetchCopyNumberSegmentsMetaProjection() throws Exception { sampleIdentifier2.setSampleId(TEST_SAMPLE_STABLE_ID_2); sampleIdentifiers.add(sampleIdentifier2); - mockMvc.perform(MockMvcRequestBuilders.post("/copy-number-segments/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/copy-number-segments/fetch").with(csrf()) .param("projection", "META") .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(sampleIdentifiers))) diff --git a/web/src/test/java/org/cbioportal/web/CosmicCountControllerTest.java b/src/test/java/org/cbioportal/web/CosmicCountControllerTest.java similarity index 82% rename from web/src/test/java/org/cbioportal/web/CosmicCountControllerTest.java rename to src/test/java/org/cbioportal/web/CosmicCountControllerTest.java index 643147cc164..e1cd3cb52e3 100644 --- a/web/src/test/java/org/cbioportal/web/CosmicCountControllerTest.java +++ b/src/test/java/org/cbioportal/web/CosmicCountControllerTest.java @@ -1,33 +1,32 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.CosmicMutation; import org.cbioportal.service.CosmicCountService; +import org.cbioportal.web.config.TestConfig; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {CosmicCountController.class, TestConfig.class}) public class CosmicCountControllerTest { private static final String TEST_COSMIC_MUTATION_ID_1 = "test_cosmic_mutation_id_1"; @@ -38,29 +37,17 @@ public class CosmicCountControllerTest { private static final String TEST_PROTEIN_CHANGE_2 = "test_protein_change_2"; private static final String TEST_KEYWORD_2 = "test_keyword_2"; private static final int TEST_COUNT_2 = 2; - @Autowired - private WebApplicationContext wac; - @Autowired + @MockBean private CosmicCountService cosmicCountService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public CosmicCountService cosmicCountService() { - return Mockito.mock(CosmicCountService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(cosmicCountService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void fetchCosmicCounts() throws Exception { List cosmicMutationList = new ArrayList<>(); @@ -84,7 +71,7 @@ public void fetchCosmicCounts() throws Exception { keywords.add(TEST_KEYWORD_1); keywords.add(TEST_KEYWORD_2); - mockMvc.perform(MockMvcRequestBuilders.post("/cosmic-counts/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/cosmic-counts/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(keywords))) diff --git a/web/src/test/java/org/cbioportal/web/DataAccessTokenControllerTest.java b/src/test/java/org/cbioportal/web/DataAccessTokenControllerTest.java similarity index 79% rename from web/src/test/java/org/cbioportal/web/DataAccessTokenControllerTest.java rename to src/test/java/org/cbioportal/web/DataAccessTokenControllerTest.java index b7155e59921..0240050b039 100644 --- a/web/src/test/java/org/cbioportal/web/DataAccessTokenControllerTest.java +++ b/src/test/java/org/cbioportal/web/DataAccessTokenControllerTest.java @@ -17,12 +17,19 @@ package org.cbioportal.web; +import static org.mockito.Mockito.*; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import jakarta.servlet.http.HttpSession; import org.cbioportal.model.DataAccessToken; import org.cbioportal.service.DataAccessTokenService; import org.cbioportal.service.exception.TokenNotFoundException; +import org.cbioportal.web.config.DataAccessTokenControllerTestConfig; +import org.cbioportal.web.config.TestConfig; import org.junit.Assert; -import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.ArgumentMatchers; @@ -30,27 +37,24 @@ import org.mockito.invocation.InvocationOnMock; import org.mockito.stubbing.Answer; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; import org.springframework.mock.web.MockHttpSession; -import org.springframework.security.web.FilterChainProxy; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.util.ReflectionTestUtils; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.MvcResult; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import javax.servlet.http.HttpSession; @RunWith(SpringJUnit4ClassRunner.class) -@ContextConfiguration(locations={"/applicationContext-web-test.xml", "/applicationContext-security-test.xml"}) -@WebAppConfiguration -public class DataAccessTokenControllerTest { +@WebMvcTest +@ContextConfiguration(classes = {DataAccessTokenController.class, TestConfig.class, DataAccessTokenControllerTestConfig.class }) +@Ignore +public class DataAccessTokenControllerTest { public static final String MOCK_USER = "MOCK_USER"; public static final String MOCK_PASSWORD = "MOCK_PASSWORD"; @@ -59,37 +63,21 @@ public class DataAccessTokenControllerTest { public static final String NOT_FOUND_ERROR_MESSAGE = "Specified token cannot be found"; public static final DataAccessToken MOCK_TOKEN_INFO = new DataAccessToken(VALID_TOKEN_STRING); - public String receivedArgument = null; - - @Bean - public DataAccessTokenService tokenService() { - DataAccessTokenService tokenService = Mockito.mock(DataAccessTokenService.class); - return tokenService; - } - - private MockMvc mockMvc; private ObjectMapper objectMapper = new ObjectMapper(); - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private DataAccessTokenService tokenService; @Autowired - private FilterChainProxy filterChainProxy; - - @Before - public void setUp() throws Exception { - mockMvc = MockMvcBuilders.webAppContextSetup(wac).addFilter(filterChainProxy).build(); - } + private MockMvc mockMvc; + public String receivedArgument = null; public void resetReceivedArgument() { this.receivedArgument = null; } private HttpSession getSession(String user, String password) throws Exception { - return mockMvc.perform(MockMvcRequestBuilders.post("/j_spring_security_check") + return mockMvc.perform(MockMvcRequestBuilders.post("/j_spring_security_check").with(csrf()) .param("j_username", user) .param("j_password", password)) .andExpect(MockMvcResultMatchers.status().isOk()) @@ -97,14 +85,16 @@ private HttpSession getSession(String user, String password) throws Exception { .getRequest() .getSession(); } + /* Tests mapping for GET /data-access-tokens/{token} * Test for valid token - checks returned response type is 200 success */ @Test + @WithMockUser() public void getTokenInfoForValidTokenTest() throws Exception { - Mockito.when(tokenService.getDataAccessTokenInfo(VALID_TOKEN_STRING)).thenReturn(MOCK_TOKEN_INFO); + when(tokenService.getDataAccessTokenInfo(VALID_TOKEN_STRING)).thenReturn(MOCK_TOKEN_INFO); HttpSession session = getSession(MOCK_USER, MOCK_PASSWORD); - MvcResult result = mockMvc.perform(MockMvcRequestBuilders.get("/data-access-tokens/" + VALID_TOKEN_STRING) + mockMvc.perform(MockMvcRequestBuilders.get("/api/data-access-tokens/" + VALID_TOKEN_STRING) .session((MockHttpSession) session) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) @@ -117,10 +107,11 @@ public void getTokenInfoForValidTokenTest() throws Exception { * Checks response for correct error message */ @Test + @WithMockUser public void getTokenInfoForNonexistentTokenTest() throws Exception { - Mockito.doThrow(new TokenNotFoundException()).when(tokenService).getDataAccessTokenInfo(NONEXISTENT_TOKEN_STRING); + doThrow(new TokenNotFoundException()).when(tokenService).getDataAccessTokenInfo(NONEXISTENT_TOKEN_STRING); HttpSession session = getSession(MOCK_USER, MOCK_PASSWORD); - MvcResult result = mockMvc.perform(MockMvcRequestBuilders.get("/data-access-tokens/" + NONEXISTENT_TOKEN_STRING) + MvcResult result = mockMvc.perform(MockMvcRequestBuilders.get("/api/data-access-tokens/" + NONEXISTENT_TOKEN_STRING) .session((MockHttpSession) session) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) @@ -135,6 +126,7 @@ public void getTokenInfoForNonexistentTokenTest() throws Exception { * Test that proper service method was called */ @Test + @WithMockUser public void revokeValidTokenTest() throws Exception { resetReceivedArgument(); Answer tokenServiceRevokeTokenAnswer = new Answer() { @@ -143,9 +135,9 @@ public Void answer(InvocationOnMock revokeTokenInvocation) { return null; } }; - Mockito.doAnswer(tokenServiceRevokeTokenAnswer).when(tokenService).revokeDataAccessToken(ArgumentMatchers.anyString()); + doAnswer(tokenServiceRevokeTokenAnswer).when(tokenService).revokeDataAccessToken(ArgumentMatchers.anyString()); HttpSession session = getSession(MOCK_USER, MOCK_PASSWORD); - MvcResult result = mockMvc.perform(MockMvcRequestBuilders.delete("/data-access-tokens/" + VALID_TOKEN_STRING) + MvcResult result = mockMvc.perform(MockMvcRequestBuilders.delete("/api/data-access-tokens/" + VALID_TOKEN_STRING).with(csrf()) .session((MockHttpSession) session) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) @@ -161,11 +153,12 @@ public Void answer(InvocationOnMock revokeTokenInvocation) { * Checks response for correct error message */ @Test + @WithMockUser public void revokeNonexistentTokenTest() throws Exception { resetReceivedArgument(); - Mockito.doThrow(new TokenNotFoundException()).when(tokenService).revokeDataAccessToken(NONEXISTENT_TOKEN_STRING);; + doThrow(new TokenNotFoundException()).when(tokenService).revokeDataAccessToken(NONEXISTENT_TOKEN_STRING);; HttpSession session = getSession(MOCK_USER, MOCK_PASSWORD); - MvcResult result = mockMvc.perform(MockMvcRequestBuilders.delete("/data-access-tokens/" + NONEXISTENT_TOKEN_STRING) + MvcResult result = mockMvc.perform(MockMvcRequestBuilders.delete("/api/data-access-tokens/" + NONEXISTENT_TOKEN_STRING).with(csrf()) .session((MockHttpSession) session) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) @@ -180,10 +173,11 @@ public void revokeNonexistentTokenTest() throws Exception { * Tests for 201 (CREATED) response code */ @Test + @WithMockUser public void createTokenValidUserTest() throws Exception { - Mockito.when(tokenService.createDataAccessToken(ArgumentMatchers.anyString())).thenReturn(MOCK_TOKEN_INFO); + when(tokenService.createDataAccessToken(ArgumentMatchers.anyString())).thenReturn(MOCK_TOKEN_INFO); HttpSession session = getSession(MOCK_USER, MOCK_PASSWORD); - MvcResult result = mockMvc.perform(MockMvcRequestBuilders.post("/data-access-tokens") + MvcResult result = mockMvc.perform(MockMvcRequestBuilders.post("/api/data-access-tokens").with(csrf()) .session((MockHttpSession) session) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) @@ -192,11 +186,12 @@ public void createTokenValidUserTest() throws Exception { } @Test + @WithMockUser(username = MOCK_USER, password = MOCK_PASSWORD, authorities = "PLACEHOLDER_ROLE") public void createTokenValidUserTestWithUserRole() throws Exception { ReflectionTestUtils.setField(DataAccessTokenController.class, "userRoleToAccessToken", "PLACEHOLDER_ROLE"); - Mockito.when(tokenService.createDataAccessToken(ArgumentMatchers.anyString())).thenReturn(MOCK_TOKEN_INFO); + when(tokenService.createDataAccessToken(ArgumentMatchers.anyString())).thenReturn(MOCK_TOKEN_INFO); HttpSession session = getSession(MOCK_USER, MOCK_PASSWORD); - MvcResult result = mockMvc.perform(MockMvcRequestBuilders.post("/data-access-tokens") + MvcResult result = mockMvc.perform(MockMvcRequestBuilders.post("/api/data-access-tokens").with(csrf()) .session((MockHttpSession) session) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) @@ -205,11 +200,13 @@ public void createTokenValidUserTestWithUserRole() throws Exception { } @Test + @WithMockUser public void createTokenUnauthorizedUserTestWithUserRole() throws Exception { ReflectionTestUtils.setField(DataAccessTokenController.class, "userRoleToAccessToken", "TEST"); - Mockito.when(tokenService.createDataAccessToken(ArgumentMatchers.anyString())).thenReturn(MOCK_TOKEN_INFO); + when(tokenService.createDataAccessToken(ArgumentMatchers.anyString())).thenReturn(MOCK_TOKEN_INFO); HttpSession session = getSession(MOCK_USER, MOCK_PASSWORD); - MvcResult result = mockMvc.perform(MockMvcRequestBuilders.post("/data-access-tokens") + MvcResult result = mockMvc.perform(MockMvcRequestBuilders.post("/api/data-access-tokens") + .with(csrf()) .session((MockHttpSession) session) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) @@ -222,6 +219,7 @@ public void createTokenUnauthorizedUserTestWithUserRole() throws Exception { * Checks that correct username argument is passed to service class */ @Test + @WithMockUser(username = MOCK_USER, password = MOCK_PASSWORD) public void revokeAllTokensForUserTest() throws Exception { resetReceivedArgument(); Answer tokenServiceRevokeAllTokensAnswer = new Answer() { @@ -230,9 +228,9 @@ public Void answer(InvocationOnMock revokeAllTokensInvocation) { return null; } }; - Mockito.doAnswer(tokenServiceRevokeAllTokensAnswer).when(tokenService).revokeAllDataAccessTokens(ArgumentMatchers.anyString()); + doAnswer(tokenServiceRevokeAllTokensAnswer).when(tokenService).revokeAllDataAccessTokens(ArgumentMatchers.anyString()); HttpSession session = getSession(MOCK_USER, MOCK_PASSWORD); - MvcResult result = mockMvc.perform(MockMvcRequestBuilders.delete("/data-access-tokens") + MvcResult result = mockMvc.perform(MockMvcRequestBuilders.delete("/api/data-access-tokens").with(csrf()) .session((MockHttpSession) session) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) @@ -248,6 +246,7 @@ public Void answer(InvocationOnMock revokeAllTokensInvocation) { * Checks that correct username argument is passed to service class */ @Test + @WithMockUser(username = MOCK_USER, password = MOCK_PASSWORD) public void getAllTokensForUserTest() throws Exception { resetReceivedArgument(); Answer tokenServiceGetAllTokensAnswer = new Answer() { @@ -256,9 +255,9 @@ public Void answer(InvocationOnMock getAllTokensInvocation) { return null; } }; - Mockito.doAnswer(tokenServiceGetAllTokensAnswer).when(tokenService).getAllDataAccessTokens(ArgumentMatchers.anyString()); + doAnswer(tokenServiceGetAllTokensAnswer).when(tokenService).getAllDataAccessTokens(ArgumentMatchers.anyString()); HttpSession session = getSession(MOCK_USER, MOCK_PASSWORD); - MvcResult result = mockMvc.perform(MockMvcRequestBuilders.get("/data-access-tokens") + MvcResult result = mockMvc.perform(MockMvcRequestBuilders.get("/api/data-access-tokens") .session((MockHttpSession) session) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) @@ -271,8 +270,9 @@ public Void answer(InvocationOnMock getAllTokensInvocation) { @Test public void createTokenNotLoggedIn() throws Exception { - Mockito.when(tokenService.createDataAccessToken(ArgumentMatchers.anyString())).thenReturn(MOCK_TOKEN_INFO); - MvcResult result = mockMvc.perform(MockMvcRequestBuilders.post("/data-access-tokens") + when(tokenService.createDataAccessToken(ArgumentMatchers.anyString())).thenReturn(MOCK_TOKEN_INFO); + MvcResult result = mockMvc.perform(MockMvcRequestBuilders.post("/api/data-access-tokens") + .with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isUnauthorized()) diff --git a/web/src/test/java/org/cbioportal/web/DiscreteCopyNumberControllerTest.java b/src/test/java/org/cbioportal/web/DiscreteCopyNumberControllerTest.java similarity index 76% rename from web/src/test/java/org/cbioportal/web/DiscreteCopyNumberControllerTest.java rename to src/test/java/org/cbioportal/web/DiscreteCopyNumberControllerTest.java index da53f3137dd..126c183c204 100644 --- a/web/src/test/java/org/cbioportal/web/DiscreteCopyNumberControllerTest.java +++ b/src/test/java/org/cbioportal/web/DiscreteCopyNumberControllerTest.java @@ -1,40 +1,39 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.CopyNumberCount; import org.cbioportal.model.DiscreteCopyNumberData; import org.cbioportal.model.Gene; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.DiscreteCopyNumberService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.CopyNumberCountIdentifier; import org.cbioportal.web.parameter.DiscreteCopyNumberEventType; import org.cbioportal.web.parameter.DiscreteCopyNumberFilter; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {DiscreteCopyNumberController.class, TestConfig.class}) public class DiscreteCopyNumberControllerTest { private static final String TEST_MOLECULAR_PROFILE_STABLE_ID_1 = "test_molecular_profile_stable_id_1"; @@ -60,29 +59,16 @@ public class DiscreteCopyNumberControllerTest { private static final int TEST_NUMBER_OF_SAMPLES_2 = 10; private static final int TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_2 = 8; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private DiscreteCopyNumberService discreteCopyNumberService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public DiscreteCopyNumberService discreteCopyNumberService() { - return Mockito.mock(DiscreteCopyNumberService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(discreteCopyNumberService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getDiscreteCopyNumbersInMolecularProfileBySampleListIdDefaultProjection() throws Exception { List discreteCopyNumberDataList = createExampleDiscreteCopyNumberData(); @@ -91,7 +77,7 @@ public void getDiscreteCopyNumbersInMolecularProfileBySampleListIdDefaultProject Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(discreteCopyNumberDataList); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id/discrete-copy-number") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id/discrete-copy-number") .param("sampleListId", TEST_SAMPLE_LIST_ID) .param("discreteCopyNumberEventType", DiscreteCopyNumberEventType.HOMDEL_AND_AMP.name()) .accept(MediaType.APPLICATION_JSON)) @@ -114,6 +100,7 @@ public void getDiscreteCopyNumbersInMolecularProfileBySampleListIdDefaultProject } @Test + @WithMockUser public void getDiscreteCopyNumbersWithoutAnnotationJson() throws Exception { List discreteCopyNumberDataList = createExampleDiscreteCopyNumberData(); @@ -122,7 +109,7 @@ public void getDiscreteCopyNumbersWithoutAnnotationJson() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(discreteCopyNumberDataList); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id/discrete-copy-number") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id/discrete-copy-number") .param("sampleListId", TEST_SAMPLE_LIST_ID) .param("discreteCopyNumberEventType", DiscreteCopyNumberEventType.HOMDEL_AND_AMP.name()) .accept(MediaType.APPLICATION_JSON)) @@ -133,6 +120,7 @@ public void getDiscreteCopyNumbersWithoutAnnotationJson() throws Exception { } @Test + @WithMockUser public void getDiscreteCopyNumbersInMolecularProfileBySampleListIdDetailedProjection() throws Exception { List discreteCopyNumberDataList = createExampleDiscreteCopyNumberDataWithGenes(); @@ -141,7 +129,7 @@ public void getDiscreteCopyNumbersInMolecularProfileBySampleListIdDetailedProjec Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(discreteCopyNumberDataList); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id/discrete-copy-number") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id/discrete-copy-number") .param("sampleListId", TEST_SAMPLE_LIST_ID) .param("discreteCopyNumberEventType", DiscreteCopyNumberEventType.HOMDEL_AND_AMP.name()) .param("projection", "DETAILED") @@ -168,6 +156,7 @@ public void getDiscreteCopyNumbersInMolecularProfileBySampleListIdDetailedProjec } @Test + @WithMockUser public void getDiscreteCopyNumbersInMolecularProfileBySampleListIdMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -177,7 +166,7 @@ public void getDiscreteCopyNumbersInMolecularProfileBySampleListIdMetaProjection Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id/discrete-copy-number") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id/discrete-copy-number") .param("sampleListId", TEST_SAMPLE_LIST_ID) .param("discreteCopyNumberEventType", DiscreteCopyNumberEventType.HOMDEL_AND_AMP.name()) .param("projection", "META")) @@ -186,6 +175,7 @@ public void getDiscreteCopyNumbersInMolecularProfileBySampleListIdMetaProjection } @Test + @WithMockUser public void fetchDiscreteCopyNumbersInMolecularProfileDefaultProjection() throws Exception { List discreteCopyNumberDataList = createExampleDiscreteCopyNumberData(); @@ -197,7 +187,7 @@ public void fetchDiscreteCopyNumbersInMolecularProfileDefaultProjection() throws DiscreteCopyNumberFilter discreteCopyNumberFilter = createDiscreteCopyNumberFilter(); mockMvc.perform(MockMvcRequestBuilders - .post("/molecular-profiles/test_molecular_profile_id/discrete-copy-number/fetch") + .post("/api/molecular-profiles/test_molecular_profile_id/discrete-copy-number/fetch").with(csrf()) .param("discreteCopyNumberEventType", DiscreteCopyNumberEventType.HOMDEL_AND_AMP.name()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) @@ -218,6 +208,7 @@ public void fetchDiscreteCopyNumbersInMolecularProfileDefaultProjection() throws } @Test + @WithMockUser public void fetchDiscreteCopyNumbersInMolecularProfileDetailedProjection() throws Exception { List discreteCopyNumberDataList = createExampleDiscreteCopyNumberDataWithGenes(); @@ -230,7 +221,7 @@ public void fetchDiscreteCopyNumbersInMolecularProfileDetailedProjection() throw DiscreteCopyNumberFilter discreteCopyNumberFilter = createDiscreteCopyNumberFilter(); mockMvc.perform(MockMvcRequestBuilders - .post("/molecular-profiles/test_molecular_profile_id/discrete-copy-number/fetch") + .post("/api/molecular-profiles/test_molecular_profile_id/discrete-copy-number/fetch").with(csrf()) .param("discreteCopyNumberEventType", DiscreteCopyNumberEventType.HOMDEL_AND_AMP.name()) .param("projection", "DETAILED") .accept(MediaType.APPLICATION_JSON) @@ -258,6 +249,7 @@ public void fetchDiscreteCopyNumbersInMolecularProfileDetailedProjection() throw } @Test + @WithMockUser public void fetchDiscreteCopyNumbersInMolecularProfileMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -269,8 +261,7 @@ public void fetchDiscreteCopyNumbersInMolecularProfileMetaProjection() throws Ex DiscreteCopyNumberFilter discreteCopyNumberFilter = createDiscreteCopyNumberFilter(); - mockMvc.perform(MockMvcRequestBuilders. - post("/molecular-profiles/test_molecular_profile_id/discrete-copy-number/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/molecular-profiles/test_molecular_profile_id/discrete-copy-number/fetch").with(csrf()) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(discreteCopyNumberFilter)) .param("discreteCopyNumberEventType", DiscreteCopyNumberEventType.HOMDEL_AND_AMP.name()) @@ -279,62 +270,6 @@ public void fetchDiscreteCopyNumbersInMolecularProfileMetaProjection() throws Ex .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } - @Test - public void fetchCopyNumberCounts() throws Exception { - - List copyNumberCountList = new ArrayList<>(); - CopyNumberCount copyNumberCount1 = new CopyNumberCount(); - copyNumberCount1.setMolecularProfileId(TEST_MOLECULAR_PROFILE_STABLE_ID_1); - copyNumberCount1.setEntrezGeneId(TEST_ENTREZ_GENE_ID_1); - copyNumberCount1.setAlteration(TEST_ALTERATION_1); - copyNumberCount1.setNumberOfSamples(TEST_NUMBER_OF_SAMPLES_1); - copyNumberCount1.setNumberOfSamplesWithAlterationInGene(TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_1); - copyNumberCountList.add(copyNumberCount1); - CopyNumberCount copyNumberCount2 = new CopyNumberCount(); - copyNumberCount2.setMolecularProfileId(TEST_MOLECULAR_PROFILE_STABLE_ID_1); - copyNumberCount2.setEntrezGeneId(TEST_ENTREZ_GENE_ID_2); - copyNumberCount2.setAlteration(TEST_ALTERATION_2); - copyNumberCount2.setNumberOfSamples(TEST_NUMBER_OF_SAMPLES_2); - copyNumberCount2.setNumberOfSamplesWithAlterationInGene(TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_2); - copyNumberCountList.add(copyNumberCount2); - - Mockito.when(discreteCopyNumberService.fetchCopyNumberCounts(Mockito.anyString(), - Mockito.anyList(), Mockito.anyList())).thenReturn(copyNumberCountList); - - List copyNumberCountIdentifiers = new ArrayList<>(); - CopyNumberCountIdentifier copyNumberCountIdentifier1 = new CopyNumberCountIdentifier(); - copyNumberCountIdentifier1.setEntrezGeneId(TEST_ENTREZ_GENE_ID_1); - copyNumberCountIdentifier1.setAlteration(TEST_ALTERATION_1); - copyNumberCountIdentifiers.add(copyNumberCountIdentifier1); - CopyNumberCountIdentifier copyNumberCountIdentifier2 = new CopyNumberCountIdentifier(); - copyNumberCountIdentifier2.setEntrezGeneId(TEST_ENTREZ_GENE_ID_2); - copyNumberCountIdentifier2.setAlteration(TEST_ALTERATION_2); - copyNumberCountIdentifiers.add(copyNumberCountIdentifier2); - - mockMvc.perform(MockMvcRequestBuilders - .post("/molecular-profiles/test_molecular_profile_id/discrete-copy-number-counts/fetch") - .accept(MediaType.APPLICATION_JSON) - .contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(copyNumberCountIdentifiers))) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].entrezGeneId").value(TEST_ENTREZ_GENE_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].molecularProfileId") - .value(TEST_MOLECULAR_PROFILE_STABLE_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].alteration").value(TEST_ALTERATION_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].numberOfSamples").value(TEST_NUMBER_OF_SAMPLES_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].numberOfSamplesWithAlterationInGene") - .value(TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].entrezGeneId").value(TEST_ENTREZ_GENE_ID_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].molecularProfileId") - .value(TEST_MOLECULAR_PROFILE_STABLE_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].alteration").value(TEST_ALTERATION_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].numberOfSamples").value(TEST_NUMBER_OF_SAMPLES_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].numberOfSamplesWithAlterationInGene") - .value(TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_2)); - } - private DiscreteCopyNumberFilter createDiscreteCopyNumberFilter() { List sampleIds = new ArrayList<>(); diff --git a/src/test/java/org/cbioportal/web/DiscreteCopyNumberCountControllerTest.java b/src/test/java/org/cbioportal/web/DiscreteCopyNumberCountControllerTest.java new file mode 100644 index 00000000000..e90866f12f8 --- /dev/null +++ b/src/test/java/org/cbioportal/web/DiscreteCopyNumberCountControllerTest.java @@ -0,0 +1,119 @@ +package org.cbioportal.web; + +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + +import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; +import org.cbioportal.model.CopyNumberCount; +import org.cbioportal.service.DiscreteCopyNumberService; +import org.cbioportal.web.config.TestConfig; +import org.cbioportal.web.parameter.CopyNumberCountIdentifier; +import org.hamcrest.Matchers; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import org.springframework.test.web.servlet.result.MockMvcResultMatchers; + +@RunWith(SpringJUnit4ClassRunner.class) +@WebMvcTest +@ContextConfiguration(classes = {DiscreteCopyNumberCountController.class, TestConfig.class}) +public class DiscreteCopyNumberCountControllerTest { + + private static final String TEST_MOLECULAR_PROFILE_STABLE_ID_1 = "test_molecular_profile_stable_id_1"; + private static final String TEST_SAMPLE_STABLE_ID_1 = "test_sample_stable_id_1"; + private static final int TEST_ENTREZ_GENE_ID_1 = 1; + private static final int TEST_ALTERATION_1 = 1; + private static final String TEST_HUGO_GENE_SYMBOL_1 = "test_hugo_gene_symbol_1"; + private static final String TEST_TYPE_1 = "test_type_1"; + private static final String TEST_CYTOBAND_1 = "test_cytoband_1"; + private static final String TEST_CHROMOSOME_1 = "test_chromosome_1"; + private static final String TEST_MOLECULAR_PROFILE_STABLE_ID_2 = "test_molecular_profile_stable_id_2"; + private static final String TEST_SAMPLE_STABLE_ID_2 = "test_sample_stable_id_2"; + private static final int TEST_ENTREZ_GENE_ID_2 = 2; + private static final int TEST_ALTERATION_2 = 2; + private static final String TEST_HUGO_GENE_SYMBOL_2 = "test_hugo_gene_symbol_2"; + private static final String TEST_TYPE_2 = "test_type_2"; + private static final String TEST_CYTOBAND_2 = "test_cytoband_2"; + private static final String TEST_CHROMOSOME_2 = "test_chromosome_2"; + private static final String TEST_SAMPLE_LIST_ID = "test_sample_list_id"; + private static final int TEST_NUMBER_OF_SAMPLES_1 = 6; + private static final int TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_1 = 4; + private static final int TEST_NUMBER_OF_SAMPLES_2 = 10; + private static final int TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_2 = 8; + + @MockBean + private DiscreteCopyNumberService discreteCopyNumberService; + + private ObjectMapper objectMapper = new ObjectMapper(); + + @Autowired + private MockMvc mockMvc; + + @Test + @WithMockUser + public void fetchCopyNumberCounts() throws Exception { + + List copyNumberCountList = new ArrayList<>(); + CopyNumberCount copyNumberCount1 = new CopyNumberCount(); + copyNumberCount1.setMolecularProfileId(TEST_MOLECULAR_PROFILE_STABLE_ID_1); + copyNumberCount1.setEntrezGeneId(TEST_ENTREZ_GENE_ID_1); + copyNumberCount1.setAlteration(TEST_ALTERATION_1); + copyNumberCount1.setNumberOfSamples(TEST_NUMBER_OF_SAMPLES_1); + copyNumberCount1.setNumberOfSamplesWithAlterationInGene(TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_1); + copyNumberCountList.add(copyNumberCount1); + CopyNumberCount copyNumberCount2 = new CopyNumberCount(); + copyNumberCount2.setMolecularProfileId(TEST_MOLECULAR_PROFILE_STABLE_ID_1); + copyNumberCount2.setEntrezGeneId(TEST_ENTREZ_GENE_ID_2); + copyNumberCount2.setAlteration(TEST_ALTERATION_2); + copyNumberCount2.setNumberOfSamples(TEST_NUMBER_OF_SAMPLES_2); + copyNumberCount2.setNumberOfSamplesWithAlterationInGene(TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_2); + copyNumberCountList.add(copyNumberCount2); + + Mockito.when(discreteCopyNumberService.fetchCopyNumberCounts(Mockito.anyString(), + Mockito.anyList(), Mockito.anyList())).thenReturn(copyNumberCountList); + + List copyNumberCountIdentifiers = new ArrayList<>(); + CopyNumberCountIdentifier copyNumberCountIdentifier1 = new CopyNumberCountIdentifier(); + copyNumberCountIdentifier1.setEntrezGeneId(TEST_ENTREZ_GENE_ID_1); + copyNumberCountIdentifier1.setAlteration(TEST_ALTERATION_1); + copyNumberCountIdentifiers.add(copyNumberCountIdentifier1); + CopyNumberCountIdentifier copyNumberCountIdentifier2 = new CopyNumberCountIdentifier(); + copyNumberCountIdentifier2.setEntrezGeneId(TEST_ENTREZ_GENE_ID_2); + copyNumberCountIdentifier2.setAlteration(TEST_ALTERATION_2); + copyNumberCountIdentifiers.add(copyNumberCountIdentifier2); + + mockMvc.perform(MockMvcRequestBuilders + .post("/api/molecular-profiles/test_molecular_profile_id/discrete-copy-number-counts/fetch").with(csrf()) + .accept(MediaType.APPLICATION_JSON) + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(copyNumberCountIdentifiers))) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].entrezGeneId").value(TEST_ENTREZ_GENE_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].molecularProfileId") + .value(TEST_MOLECULAR_PROFILE_STABLE_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].alteration").value(TEST_ALTERATION_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].numberOfSamples").value(TEST_NUMBER_OF_SAMPLES_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].numberOfSamplesWithAlterationInGene") + .value(TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].entrezGeneId").value(TEST_ENTREZ_GENE_ID_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].molecularProfileId") + .value(TEST_MOLECULAR_PROFILE_STABLE_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].alteration").value(TEST_ALTERATION_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].numberOfSamples").value(TEST_NUMBER_OF_SAMPLES_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].numberOfSamplesWithAlterationInGene") + .value(TEST_NUMBER_OF_SAMPLES_WITH_ALTERATION_IN_GENE_2)); + } +} diff --git a/web/src/test/java/org/cbioportal/web/DocRedirectControllerTest.java b/src/test/java/org/cbioportal/web/DocRedirectControllerTest.java similarity index 88% rename from web/src/test/java/org/cbioportal/web/DocRedirectControllerTest.java rename to src/test/java/org/cbioportal/web/DocRedirectControllerTest.java index 6cda2d3c8e1..3765936985d 100644 --- a/web/src/test/java/org/cbioportal/web/DocRedirectControllerTest.java +++ b/src/test/java/org/cbioportal/web/DocRedirectControllerTest.java @@ -3,11 +3,14 @@ import com.fasterxml.jackson.databind.ObjectMapper; import junit.framework.TestCase; import org.cbioportal.service.DiscreteCopyNumberService; +import org.cbioportal.web.config.TestConfig; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.test.context.ContextConfiguration; @@ -20,9 +23,10 @@ import org.springframework.web.context.WebApplicationContext; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {DocRedirectController.class, TestConfig.class}) +@Ignore +// TODO: Had to disable docredirect Controller public class DocRedirectControllerTest { @Autowired private WebApplicationContext wac; diff --git a/web/src/test/java/org/cbioportal/web/ExpressionEnrichmentControllerTest.java b/src/test/java/org/cbioportal/web/ExpressionEnrichmentControllerTest.java similarity index 93% rename from web/src/test/java/org/cbioportal/web/ExpressionEnrichmentControllerTest.java rename to src/test/java/org/cbioportal/web/ExpressionEnrichmentControllerTest.java index 0abe4a9e3ca..2f73e1ca80b 100644 --- a/web/src/test/java/org/cbioportal/web/ExpressionEnrichmentControllerTest.java +++ b/src/test/java/org/cbioportal/web/ExpressionEnrichmentControllerTest.java @@ -1,36 +1,35 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; - import org.cbioportal.model.EnrichmentType; import org.cbioportal.model.GenericAssayEnrichment; import org.cbioportal.model.GenomicEnrichment; import org.cbioportal.model.GroupStatistics; import org.cbioportal.service.ExpressionEnrichmentService; +import org.cbioportal.web.config.TestConfig; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {ExpressionEnrichmentController.class, TestConfig.class}) public class ExpressionEnrichmentControllerTest { private static final int TEST_ENTREZ_GENE_ID_1 = 1; @@ -50,27 +49,14 @@ public class ExpressionEnrichmentControllerTest { private static final BigDecimal TEST_STANDARD_DEVIATION_IN_UNALTERED_GROUP_2 = new BigDecimal(3.1); private static final BigDecimal TEST_P_VALUE_2 = new BigDecimal(2.1); - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private ExpressionEnrichmentService expressionEnrichmentService; + @Autowired private MockMvc mockMvc; - @Bean - public ExpressionEnrichmentService expressionEnrichmentService() { - return Mockito.mock(ExpressionEnrichmentService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(expressionEnrichmentService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void fetchGenomicEnrichments() throws Exception { List expressionEnrichments = new ArrayList<>(); @@ -115,7 +101,7 @@ public void fetchGenomicEnrichments() throws Exception { Mockito.when(expressionEnrichmentService.getGenomicEnrichments(Mockito.anyString(), Mockito.anyMap(), Mockito.any(EnrichmentType.class))).thenReturn(expressionEnrichments); - mockMvc.perform(MockMvcRequestBuilders.post("/expression-enrichments/fetch").accept(MediaType.APPLICATION_JSON) + mockMvc.perform(MockMvcRequestBuilders.post("/api/expression-enrichments/fetch").accept(MediaType.APPLICATION_JSON).with(csrf()) .contentType(MediaType.APPLICATION_JSON).content( "[{\"molecularProfileCaseIdentifiers\":[{\"caseId\":\"TCGA-OR-A5JH-01\",\"molecularProfileId\":\"acc_tcga_pan_can_atlas_2018_rna_seq_v2_mrna\"},{\"caseId\":\"TCGA-OR-A5K2-01\",\"molecularProfileId\":\"acc_tcga_pan_can_atlas_2018_rna_seq_v2_mrna\"}],\"name\":\"altered\"}," + "{\"molecularProfileCaseIdentifiers\":[{\"caseId\":\"TCGA-OR-A5LN-01\",\"molecularProfileId\":\"acc_tcga_pan_can_atlas_2018_rna_seq_v2_mrna\"},{\"caseId\":\"TCGA-OR-A5LS-01\",\"molecularProfileId\":\"acc_tcga_pan_can_atlas_2018_rna_seq_v2_mrna\"}],\"name\":\"unaltered\"}]")) @@ -149,6 +135,7 @@ public void fetchGenomicEnrichments() throws Exception { } @Test + @WithMockUser public void fetchGenericAssayEnrichments() throws Exception { List genericAssayEnrichments = new ArrayList<>(); @@ -189,7 +176,7 @@ public void fetchGenericAssayEnrichments() throws Exception { Mockito.when(expressionEnrichmentService.getGenericAssayNumericalEnrichments(Mockito.anyString(), Mockito.anyMap(), Mockito.any(EnrichmentType.class))).thenReturn(genericAssayEnrichments); - mockMvc.perform(MockMvcRequestBuilders.post("/generic-assay-enrichments/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/generic-assay-enrichments/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON).contentType(MediaType.APPLICATION_JSON).content( "[{\"molecularProfileCaseIdentifiers\":[{\"caseId\":\"TCGA-OR-A5JH-01\",\"molecularProfileId\":\"acc_tcga_pan_can_atlas_2018_rna_seq_v2_mrna\"},{\"caseId\":\"TCGA-OR-A5K2-01\",\"molecularProfileId\":\"acc_tcga_pan_can_atlas_2018_rna_seq_v2_mrna\"}],\"name\":\"altered\"}," + "{\"molecularProfileCaseIdentifiers\":[{\"caseId\":\"TCGA-OR-A5LN-01\",\"molecularProfileId\":\"acc_tcga_pan_can_atlas_2018_rna_seq_v2_mrna\"},{\"caseId\":\"TCGA-OR-A5LS-01\",\"molecularProfileId\":\"acc_tcga_pan_can_atlas_2018_rna_seq_v2_mrna\"}],\"name\":\"unaltered\"}]")) diff --git a/web/src/test/java/org/cbioportal/web/GeneControllerTest.java b/src/test/java/org/cbioportal/web/GeneControllerTest.java similarity index 85% rename from web/src/test/java/org/cbioportal/web/GeneControllerTest.java rename to src/test/java/org/cbioportal/web/GeneControllerTest.java index b7699c3b917..c4b78fb7fde 100644 --- a/web/src/test/java/org/cbioportal/web/GeneControllerTest.java +++ b/src/test/java/org/cbioportal/web/GeneControllerTest.java @@ -1,36 +1,37 @@ package org.cbioportal.web; +import static org.mockito.ArgumentMatchers.eq; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.Gene; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.GeneService; import org.cbioportal.service.exception.GeneNotFoundException; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.hamcrest.Matchers; -import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes={GeneService.class, GeneController.class, TestConfig.class}) public class GeneControllerTest { public static final int ENTREZ_GENE_ID_1 = 1; @@ -46,29 +47,16 @@ public class GeneControllerTest { public static final String ALIAS_1 = "alias_1"; public static final String ALIAS_2 = "alias_2"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private GeneService geneService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public GeneService geneService() { - return Mockito.mock(GeneService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(geneService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllGenesDefaultProjection() throws Exception { List geneList = createGeneList(); @@ -76,7 +64,7 @@ public void getAllGenesDefaultProjection() throws Exception { Mockito.when(geneService.getAllGenes(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(geneList); - mockMvc.perform(MockMvcRequestBuilders.get("/genes") + mockMvc.perform(MockMvcRequestBuilders.get("/api/genes") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -91,6 +79,7 @@ public void getAllGenesDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllGenesMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -98,24 +87,26 @@ public void getAllGenesMetaProjection() throws Exception { Mockito.when(geneService.getMetaGenes(Mockito.any(), Mockito.any())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/genes") + mockMvc.perform(MockMvcRequestBuilders.get("/api/genes") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getGeneNotFound() throws Exception { - Mockito.when(geneService.getGene(Mockito.anyString())).thenThrow(new GeneNotFoundException("test_gene_id")); + Mockito.when(geneService.getGene(eq("test_gene_id"))).thenThrow(new GeneNotFoundException("test_gene_id")); - mockMvc.perform(MockMvcRequestBuilders.get("/genes/test_gene_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/genes/test_gene_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isNotFound()) .andExpect(MockMvcResultMatchers.jsonPath("$.message").value("Gene not found: test_gene_id")); } @Test + @WithMockUser public void getGene() throws Exception { List geneList = new ArrayList<>(); @@ -127,7 +118,7 @@ public void getGene() throws Exception { Mockito.when(geneService.getGene(Mockito.anyString())).thenReturn(gene); - mockMvc.perform(MockMvcRequestBuilders.get("/genes/test_gene_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/genes/test_gene_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -137,6 +128,7 @@ public void getGene() throws Exception { } @Test + @WithMockUser public void getAliasesOfGene() throws Exception { List aliasList = new ArrayList<>(); @@ -145,7 +137,7 @@ public void getAliasesOfGene() throws Exception { Mockito.when(geneService.getAliasesOfGene(Mockito.anyString())).thenReturn(aliasList); - mockMvc.perform(MockMvcRequestBuilders.get("/genes/test_gene_id/aliases") + mockMvc.perform(MockMvcRequestBuilders.get("/api/genes/test_gene_id/aliases") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -155,6 +147,7 @@ public void getAliasesOfGene() throws Exception { } @Test + @WithMockUser public void fetchGenesDefaultProjection() throws Exception { List geneList = createGeneList(); @@ -166,7 +159,7 @@ public void fetchGenesDefaultProjection() throws Exception { geneIds.add(Integer.toString(ENTREZ_GENE_ID_1)); geneIds.add(HUGO_GENE_SYMBOL_2); - mockMvc.perform(MockMvcRequestBuilders.post("/genes/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/genes/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(geneIds))) @@ -182,6 +175,7 @@ public void fetchGenesDefaultProjection() throws Exception { } @Test + @WithMockUser public void fetchGenesMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -194,7 +188,7 @@ public void fetchGenesMetaProjection() throws Exception { geneIds.add(Integer.toString(ENTREZ_GENE_ID_1)); geneIds.add(HUGO_GENE_SYMBOL_2); - mockMvc.perform(MockMvcRequestBuilders.post("/genes/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/genes/fetch").with(csrf()) .param("projection", "META") .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(geneIds))) diff --git a/web/src/test/java/org/cbioportal/web/GenePanelControllerTest.java b/src/test/java/org/cbioportal/web/GenePanelControllerTest.java similarity index 90% rename from web/src/test/java/org/cbioportal/web/GenePanelControllerTest.java rename to src/test/java/org/cbioportal/web/GenePanelControllerTest.java index bc30903590c..50a5a7f09a5 100644 --- a/web/src/test/java/org/cbioportal/web/GenePanelControllerTest.java +++ b/src/test/java/org/cbioportal/web/GenePanelControllerTest.java @@ -1,42 +1,40 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.GenePanel; import org.cbioportal.model.GenePanelData; import org.cbioportal.model.GenePanelToGene; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.GenePanelService; import org.cbioportal.service.exception.GenePanelNotFoundException; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.GenePanelDataFilter; import org.cbioportal.web.parameter.GenePanelDataMultipleStudyFilter; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.cbioportal.web.parameter.SampleMolecularIdentifier; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {GenePanelController.class, TestConfig.class}) public class GenePanelControllerTest { private static final String TEST_GENE_PANEL_ID_1 = "test_gene_panel_id_1"; @@ -63,29 +61,16 @@ public class GenePanelControllerTest { private static final String TEST_HUGO_GENE_SYMBOL_4 = "test_hugo_gene_symbol_4"; private static final String TEST_SAMPLE_LIST_ID = "test_sample_list_id"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private GenePanelService genePanelService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public GenePanelService genePanelService() { - return Mockito.mock(GenePanelService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(genePanelService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllGenePanelsDetailedProjection() throws Exception { List genePanelList = new ArrayList<>(); @@ -128,7 +113,7 @@ public void getAllGenePanelsDetailedProjection() throws Exception { Mockito.when(genePanelService.getAllGenePanels(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(genePanelList); - mockMvc.perform(MockMvcRequestBuilders.get("/gene-panels") + mockMvc.perform(MockMvcRequestBuilders.get("/api/gene-panels/") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -152,6 +137,7 @@ public void getAllGenePanelsDetailedProjection() throws Exception { } @Test + @WithMockUser public void getAllGenePanelsMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -159,19 +145,20 @@ public void getAllGenePanelsMetaProjection() throws Exception { Mockito.when(genePanelService.getMetaGenePanels()).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/gene-panels") + mockMvc.perform(MockMvcRequestBuilders.get("/api/gene-panels/") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getGenePanelNotFound() throws Exception { Mockito.when(genePanelService.getGenePanel(Mockito.anyString())).thenThrow( new GenePanelNotFoundException("test_gene_panel_id")); - mockMvc.perform(MockMvcRequestBuilders.get("/gene-panels/test_gene_panel_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/gene-panels/test_gene_panel_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isNotFound()) .andExpect(MockMvcResultMatchers.jsonPath("$.message") @@ -179,6 +166,7 @@ public void getGenePanelNotFound() throws Exception { } @Test + @WithMockUser public void getGenePanel() throws Exception { GenePanel genePanel = new GenePanel(); @@ -200,7 +188,7 @@ public void getGenePanel() throws Exception { Mockito.when(genePanelService.getGenePanel(Mockito.anyString())).thenReturn(genePanel); - mockMvc.perform(MockMvcRequestBuilders.get("/gene-panels/test_gene_panel_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/gene-panels/test_gene_panel_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -213,5 +201,4 @@ public void getGenePanel() throws Exception { .andExpect(MockMvcResultMatchers.jsonPath("$.genes[1].entrezGeneId").value(TEST_ENTREZ_GENE_ID_2)) .andExpect(MockMvcResultMatchers.jsonPath("$.genes[1].hugoGeneSymbol").value(TEST_HUGO_GENE_SYMBOL_2)); } - } diff --git a/web/src/test/java/org/cbioportal/web/GenePanelDataControllerTest.java b/src/test/java/org/cbioportal/web/GenePanelDataControllerTest.java similarity index 94% rename from web/src/test/java/org/cbioportal/web/GenePanelDataControllerTest.java rename to src/test/java/org/cbioportal/web/GenePanelDataControllerTest.java index a2ded39c3ae..824223ef8a9 100644 --- a/web/src/test/java/org/cbioportal/web/GenePanelDataControllerTest.java +++ b/src/test/java/org/cbioportal/web/GenePanelDataControllerTest.java @@ -7,6 +7,7 @@ import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.GenePanelService; import org.cbioportal.service.exception.GenePanelNotFoundException; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.GenePanelDataFilter; import org.cbioportal.web.parameter.GenePanelDataMultipleStudyFilter; import org.cbioportal.web.parameter.HeaderKeyConstants; @@ -17,9 +18,12 @@ import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.web.WebAppConfiguration; @@ -34,9 +38,8 @@ import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {GenePanelDataController.class, TestConfig.class}) public class GenePanelDataControllerTest { private static final String TEST_GENE_PANEL_ID_1 = "test_gene_panel_id_1"; @@ -66,7 +69,7 @@ public class GenePanelDataControllerTest { @Autowired private WebApplicationContext wac; - @Autowired + @MockBean private GenePanelService genePanelService; private ObjectMapper objectMapper = new ObjectMapper(); @@ -81,6 +84,7 @@ public void setUp() throws Exception { } @Test + @WithMockUser public void getGenePanelData() throws Exception { List genePanelDataList = createExampleGenePanelData(); @@ -91,7 +95,7 @@ public void getGenePanelData() throws Exception { genePanelDataFilter.setSampleListId(TEST_SAMPLE_LIST_ID); mockMvc.perform(MockMvcRequestBuilders.post( - "/molecular-profiles/test_molecular_profile_id/gene-panel-data/fetch") + "/api/molecular-profiles/test_molecular_profile_id/gene-panel-data/fetch") .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(genePanelDataFilter))) @@ -113,6 +117,7 @@ public void getGenePanelData() throws Exception { } @Test + @WithMockUser public void fetchGenePanelData() throws Exception { List genePanelDataList = createExampleGenePanelData(); @@ -132,7 +137,7 @@ public void fetchGenePanelData() throws Exception { genePanelDataMultipleStudyFilter.setSampleMolecularIdentifiers(sampleMolecularIdentifiers); mockMvc.perform(MockMvcRequestBuilders.post( - "/gene-panel-data/fetch") + "/api/gene-panel-data/fetch") .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(genePanelDataMultipleStudyFilter))) diff --git a/src/test/java/org/cbioportal/web/GenericAssayControllerTest.java b/src/test/java/org/cbioportal/web/GenericAssayControllerTest.java new file mode 100644 index 00000000000..a3f81f70a38 --- /dev/null +++ b/src/test/java/org/cbioportal/web/GenericAssayControllerTest.java @@ -0,0 +1,157 @@ +package org.cbioportal.web; + +import com.fasterxml.jackson.databind.ObjectMapper; +import org.cbioportal.model.meta.GenericAssayMeta; +import org.cbioportal.service.GenericAssayService; +import org.cbioportal.web.config.TestConfig; +import org.cbioportal.web.parameter.GenericAssayMetaFilter; +import org.hamcrest.Matchers; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import org.springframework.test.web.servlet.result.MockMvcResultMatchers; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashMap; +import java.util.List; + +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + +@RunWith(SpringJUnit4ClassRunner.class) +@WebMvcTest +@ContextConfiguration(classes = {GenericAssayController.class, TestConfig.class}) +public class GenericAssayControllerTest { + + private static final String PROF_ID = "test_prof_id"; + private static final String ENTITY_TYPE = "test_type"; + public static final String GENERIC_ASSAY_STABLE_ID_1 = "genericAssayStableId1"; + public static final String GENERIC_ASSAY_STABLE_ID_2 = "genericAssayStableId2"; + public static final String GENERIC_ASSAY_STABLE_ID_3 = "genericAssayStableId3"; + public static final String GENERIC_ASSAY_STABLE_ID_4 = "genericAssayStableId4"; + private static final String SAMPLE_ID = "test_sample_stable_id_1"; + private static final String VALUE_1 = "0.25"; + private static final String VALUE_2 = "-0.75"; + private static final String VALUE_3 = ""; + private static final String VALUE_4 = "NA"; + private static final String TEST_NAME = "name"; + private static final String TEST_NAME_VALUE = "test_name"; + private static final String TEST_DESCRIPTION = "description"; + private static final String TEST_DESCRIPTION_VALUE = "test_description"; + private static final HashMap GENERIC_ENTITY_META_PROPERTIES = new HashMap() {{ + put(TEST_NAME,TEST_NAME_VALUE); + put(TEST_DESCRIPTION,TEST_DESCRIPTION_VALUE); + }}; + + @MockBean + private GenericAssayService genericAssayService; + + @Autowired + private MockMvc mockMvc; + + private ObjectMapper objectMapper = new ObjectMapper(); + + + @Test + @WithMockUser + public void testGenericAssayMetaGetMolecularProfileId() throws Exception { + List genericAssayMetaItems = createGenericAssayMetaItemsList(); + + Mockito.when(genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(genericAssayMetaItems); + + mockMvc.perform(MockMvcRequestBuilders.get("/api/generic-assay-meta/" + PROF_ID) + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].entityType").value(ENTITY_TYPE)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].stableId").value(GENERIC_ASSAY_STABLE_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].entityType").value(ENTITY_TYPE)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].stableId").value(GENERIC_ASSAY_STABLE_ID_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasKey(TEST_NAME))) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasValue(TEST_NAME_VALUE))) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasKey(TEST_DESCRIPTION))) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasValue(TEST_DESCRIPTION_VALUE))); + } + + + @Test + @WithMockUser + public void testGenericAssayMetaGetGenericAssayStableId() throws Exception { + List genericAssayMetaSingleItem = createGenericAssayMetaSingleItem(); + + Mockito.when(genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(genericAssayMetaSingleItem); + + mockMvc.perform(MockMvcRequestBuilders.get("/api/generic-assay-meta/generic-assay/" + GENERIC_ASSAY_STABLE_ID_2) + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(1))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].entityType").value(ENTITY_TYPE)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].stableId").value(GENERIC_ASSAY_STABLE_ID_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].genericEntityMetaProperties", Matchers.hasKey(TEST_NAME))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].genericEntityMetaProperties", Matchers.hasValue(TEST_NAME_VALUE))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].genericEntityMetaProperties", Matchers.hasKey(TEST_DESCRIPTION))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].genericEntityMetaProperties", Matchers.hasValue(TEST_DESCRIPTION_VALUE))); + } + + @Test + @WithMockUser + public void testGenericAssayMetaFetch() throws Exception { + List genericAssayMetaItems = createGenericAssayMetaItemsList(); + List genericAssayStableIds = Arrays.asList(GENERIC_ASSAY_STABLE_ID_1, GENERIC_ASSAY_STABLE_ID_2); + GenericAssayMetaFilter genericAssayMetaFilter = new GenericAssayMetaFilter(); + genericAssayMetaFilter.setGenericAssayStableIds(genericAssayStableIds); + + Mockito.when(genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(genericAssayMetaItems); + + mockMvc.perform(MockMvcRequestBuilders.post("/api/generic_assay_meta/fetch").with(csrf()) + .accept(MediaType.APPLICATION_JSON) + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(genericAssayMetaFilter))) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].entityType").value(ENTITY_TYPE)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].stableId").value(GENERIC_ASSAY_STABLE_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].entityType").value(ENTITY_TYPE)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].stableId").value(GENERIC_ASSAY_STABLE_ID_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasKey(TEST_NAME))) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasValue(TEST_NAME_VALUE))) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasKey(TEST_DESCRIPTION))) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasValue(TEST_DESCRIPTION_VALUE))); + } + + private List createGenericAssayMetaSingleItem() { + + List genericAssayMetaItems = new ArrayList<>(); + + GenericAssayMeta item2 = new GenericAssayMeta(ENTITY_TYPE, GENERIC_ASSAY_STABLE_ID_2, GENERIC_ENTITY_META_PROPERTIES); + genericAssayMetaItems.add(item2); + + return genericAssayMetaItems; + } + + private List createGenericAssayMetaItemsList() { + + List genericAssayMetaItems = new ArrayList<>(); + + GenericAssayMeta item1 = new GenericAssayMeta(ENTITY_TYPE, GENERIC_ASSAY_STABLE_ID_1); + genericAssayMetaItems.add(item1); + + GenericAssayMeta item2 = new GenericAssayMeta(ENTITY_TYPE, GENERIC_ASSAY_STABLE_ID_2, GENERIC_ENTITY_META_PROPERTIES); + genericAssayMetaItems.add(item2); + + return genericAssayMetaItems; + } +} \ No newline at end of file diff --git a/web/src/test/java/org/cbioportal/web/GenericAssayDataControllerTest.java b/src/test/java/org/cbioportal/web/GenericAssayDataControllerTest.java similarity index 94% rename from web/src/test/java/org/cbioportal/web/GenericAssayDataControllerTest.java rename to src/test/java/org/cbioportal/web/GenericAssayDataControllerTest.java index be24576b747..ee7fc0d285c 100644 --- a/web/src/test/java/org/cbioportal/web/GenericAssayDataControllerTest.java +++ b/src/test/java/org/cbioportal/web/GenericAssayDataControllerTest.java @@ -4,6 +4,7 @@ import org.cbioportal.model.GenericAssayData; import org.cbioportal.model.meta.GenericAssayMeta; import org.cbioportal.service.GenericAssayService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.GenericAssayDataMultipleStudyFilter; import org.cbioportal.web.parameter.GenericAssayFilter; import org.cbioportal.web.parameter.GenericAssayMetaFilter; @@ -14,6 +15,8 @@ import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.http.MediaType; @@ -32,9 +35,8 @@ import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {GenericAssayDataController.class, TestConfig.class}) public class GenericAssayDataControllerTest { private static final String PROF_ID = "test_prof_id"; @@ -60,8 +62,9 @@ public class GenericAssayDataControllerTest { @Autowired private WebApplicationContext wac; - @Autowired + @MockBean private GenericAssayService genericAssayService; + @Autowired private MockMvc mockMvc; private ObjectMapper objectMapper = new ObjectMapper(); @@ -83,7 +86,7 @@ public void testGenericAssayDataFetch() throws Exception { genericAssayDataFilter.setSampleIds(Arrays.asList(SAMPLE_ID)); genericAssayDataFilter.setGenericAssayStableIds(Arrays.asList(GENERIC_ASSAY_STABLE_ID_1, GENERIC_ASSAY_STABLE_ID_2, GENERIC_ASSAY_STABLE_ID_3, GENERIC_ASSAY_STABLE_ID_4)); - mockMvc.perform(MockMvcRequestBuilders.post("/generic_assay_data/" + PROF_ID + "/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/generic_assay_data/" + PROF_ID + "/fetch") .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(genericAssayDataFilter))) @@ -109,7 +112,7 @@ public void testGenericAssayDataFetchInMultipleMolecularProfiles() throws Except Mockito.when(genericAssayService.fetchGenericAssayData(Mockito.anyList(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(genericAssayDataItems); - mockMvc.perform(MockMvcRequestBuilders.post("/generic_assay_data/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/generic_assay_data/fetch") .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(genericAssayDataMultipleStudyFilter))) @@ -131,7 +134,7 @@ public void testGenericAssayDataGet() throws Exception { Mockito.when(genericAssayService.fetchGenericAssayData(Mockito.anyString(), Mockito.anyList(), Mockito.anyList(), Mockito.anyString())).thenReturn(genericAssayDataItems); - mockMvc.perform(MockMvcRequestBuilders.get("/generic-assay-data/" + PROF_ID + "/generic-assay/" + GENERIC_ASSAY_STABLE_ID_1) + mockMvc.perform(MockMvcRequestBuilders.get("/api/generic-assay-data/" + PROF_ID + "/generic-assay/" + GENERIC_ASSAY_STABLE_ID_1) .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) diff --git a/web/src/test/java/org/cbioportal/web/GenesetControllerTest.java b/src/test/java/org/cbioportal/web/GenesetControllerTest.java similarity index 84% rename from web/src/test/java/org/cbioportal/web/GenesetControllerTest.java rename to src/test/java/org/cbioportal/web/GenesetControllerTest.java index b9e5114e1e1..e58da5d8fa0 100644 --- a/web/src/test/java/org/cbioportal/web/GenesetControllerTest.java +++ b/src/test/java/org/cbioportal/web/GenesetControllerTest.java @@ -5,28 +5,25 @@ import org.cbioportal.model.Geneset; import org.cbioportal.service.GenesetService; +import org.cbioportal.web.config.TestConfig; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {GenesetController.class, TestConfig.class}) public class GenesetControllerTest { public static final String GENESET_ID_1 = "geneset_id_1"; @@ -38,34 +35,21 @@ public class GenesetControllerTest { private static final String DESCRIPTION_2 = "description 2"; private static final String REF_LINK_2 = "http://link2"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private GenesetService genesetService; + @Autowired private MockMvc mockMvc; - @Bean - public GenesetService genesetService() { - return Mockito.mock(GenesetService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(genesetService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllGenesets() throws Exception { List genesetList = createGenesetList(); Mockito.when(genesetService.getAllGenesets(Mockito.anyString(), Mockito.anyInt(), Mockito.anyInt())).thenReturn(genesetList); - mockMvc.perform(MockMvcRequestBuilders.get("/genesets") + mockMvc.perform(MockMvcRequestBuilders.get("/api/genesets") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -85,13 +69,14 @@ public void getAllGenesets() throws Exception { } @Test + @WithMockUser public void getGeneset() throws Exception { Geneset geneset = createGenesetList().get(0); Mockito.when(genesetService.getGeneset(Mockito.anyString())).thenReturn(geneset); //test /genesets/{genesetId} - mockMvc.perform(MockMvcRequestBuilders.get("/genesets/test_geneset_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/genesets/test_geneset_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) diff --git a/web/src/test/java/org/cbioportal/web/GenesetCorrelationControllerTest.java b/src/test/java/org/cbioportal/web/GenesetCorrelationControllerTest.java similarity index 81% rename from web/src/test/java/org/cbioportal/web/GenesetCorrelationControllerTest.java rename to src/test/java/org/cbioportal/web/GenesetCorrelationControllerTest.java index 2d3656a0c97..a0bc3244d65 100644 --- a/web/src/test/java/org/cbioportal/web/GenesetCorrelationControllerTest.java +++ b/src/test/java/org/cbioportal/web/GenesetCorrelationControllerTest.java @@ -1,32 +1,31 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import java.util.ArrayList; import java.util.List; - import org.cbioportal.model.GenesetCorrelation; import org.cbioportal.service.GenesetCorrelationService; +import org.cbioportal.web.config.TestConfig; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {GenesetCorrelationController.class, TestConfig.class}) public class GenesetCorrelationControllerTest { private static final String PROF_ID = "test_prof_id"; @@ -41,33 +40,20 @@ public class GenesetCorrelationControllerTest { private static final String ZSCORE_PROF_ID = "zscore_prof_id1"; @Autowired - private WebApplicationContext wac; - - @Autowired - private GenesetCorrelationService genesetCorrelationService; - private MockMvc mockMvc; - @Bean - public GenesetCorrelationService genesetCorrelationService() { - return Mockito.mock(GenesetCorrelationService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(genesetCorrelationService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } + @MockBean + public GenesetCorrelationService genesetCorrelationService; @Test + @WithMockUser public void fetchCorrelatedGenes() throws Exception { List correlationsForGeneset = createGenesetCorrelationList(); Mockito.when(genesetCorrelationService.fetchCorrelatedGenes(Mockito.anyString(), Mockito.anyString(), Mockito.anyDouble())).thenReturn(correlationsForGeneset); - mockMvc.perform(MockMvcRequestBuilders.post("/genesets/" + QUERY_GENESET_ID + "/expression-correlation/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/genesets/" + QUERY_GENESET_ID + "/expression-correlation/fetch").with(csrf()) .param("geneticProfileId", PROF_ID) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) diff --git a/web/src/test/java/org/cbioportal/web/GenesetDataControllerTest.java b/src/test/java/org/cbioportal/web/GenesetDataControllerTest.java similarity index 87% rename from web/src/test/java/org/cbioportal/web/GenesetDataControllerTest.java rename to src/test/java/org/cbioportal/web/GenesetDataControllerTest.java index b47287a62fb..843d3aaa771 100644 --- a/web/src/test/java/org/cbioportal/web/GenesetDataControllerTest.java +++ b/src/test/java/org/cbioportal/web/GenesetDataControllerTest.java @@ -1,36 +1,34 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + +import com.fasterxml.jackson.databind.ObjectMapper; import java.util.ArrayList; import java.util.Arrays; import java.util.List; - import org.cbioportal.model.GenesetMolecularData; import org.cbioportal.service.GenesetDataService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.GenesetDataFilterCriteria; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import com.fasterxml.jackson.databind.ObjectMapper; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {GenesetDataController.class, TestConfig.class}) public class GenesetDataControllerTest { private static final String PROF_ID = "test_prof_id"; @@ -41,29 +39,17 @@ public class GenesetDataControllerTest { public static final String GENESET_ID_2 = "geneset_id_2"; private static final String VALUE_2 = "-0.457"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private GenesetDataService genesetDataService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public GenesetDataService genesetDataService() { - return Mockito.mock(GenesetDataService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(genesetDataService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } @Test + @WithMockUser public void fetchGeneticDataItemsWithSampleIds() throws Exception { List genesetDataItems = createGenesetDataItemsList(); @@ -81,7 +67,7 @@ public void fetchGeneticDataItemsWithSampleIds() throws Exception { genesetDataFilterCriteria.setSampleIds(sampleIds); genesetDataFilterCriteria.setGenesetIds(genesetIds); - mockMvc.perform(MockMvcRequestBuilders.post("/genetic-profiles/" + geneticProfileId + "/geneset-genetic-data/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/genetic-profiles/" + geneticProfileId + "/geneset-genetic-data/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(genesetDataFilterCriteria))) @@ -99,6 +85,7 @@ public void fetchGeneticDataItemsWithSampleIds() throws Exception { } @Test + @WithMockUser public void fetchGeneticDataItemsWithSampleListId() throws Exception { List genesetDataItems = createGenesetDataItemsList(); genesetDataItems.addAll(createGenesetDataItemsList()); @@ -117,7 +104,7 @@ public void fetchGeneticDataItemsWithSampleListId() throws Exception { genesetDataFilterCriteria.setSampleListId(sampleListId); genesetDataFilterCriteria.setGenesetIds(genesetIds); - mockMvc.perform(MockMvcRequestBuilders.post("/genetic-profiles/" + geneticProfileId + "/geneset-genetic-data/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/genetic-profiles/" + geneticProfileId + "/geneset-genetic-data/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(genesetDataFilterCriteria))) diff --git a/web/src/test/java/org/cbioportal/web/GenesetHierarchyControllerTest.java b/src/test/java/org/cbioportal/web/GenesetHierarchyControllerTest.java similarity index 88% rename from web/src/test/java/org/cbioportal/web/GenesetHierarchyControllerTest.java rename to src/test/java/org/cbioportal/web/GenesetHierarchyControllerTest.java index a580a1fb201..e9a951ce15d 100644 --- a/web/src/test/java/org/cbioportal/web/GenesetHierarchyControllerTest.java +++ b/src/test/java/org/cbioportal/web/GenesetHierarchyControllerTest.java @@ -1,67 +1,53 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import java.util.ArrayList; import java.util.Arrays; import java.util.List; - import org.cbioportal.model.Geneset; import org.cbioportal.model.GenesetHierarchyInfo; import org.cbioportal.service.GenesetHierarchyService; +import org.cbioportal.web.config.TestConfig; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {GenesetHierarchyController.class, TestConfig.class}) public class GenesetHierarchyControllerTest { private static final String PROF_ID = "test_prof_id"; public static final String GENESET_ID1 = "geneset_id1"; public static final String GENESET_ID2 = "geneset_id2"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private GenesetHierarchyService genesetHierarchyService; + @Autowired private MockMvc mockMvc; - @Bean - public GenesetHierarchyService genesetHierarchyService() { - return Mockito.mock(GenesetHierarchyService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(genesetHierarchyService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void fetchGenesetHierarchyInfo() throws Exception { List genesetHierarchyInfoList = createGenesetHierarchyInfoList(); Mockito.when(genesetHierarchyService.fetchGenesetHierarchyInfo(Mockito.anyString(), Mockito.anyInt(), Mockito.anyDouble(), Mockito.anyDouble())).thenReturn(genesetHierarchyInfoList); - mockMvc.perform(MockMvcRequestBuilders.post("/geneset-hierarchy/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/geneset-hierarchy/fetch").with(csrf()) .param("geneticProfileId", PROF_ID) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON)) diff --git a/src/test/java/org/cbioportal/web/InfoControllerTest.java b/src/test/java/org/cbioportal/web/InfoControllerTest.java new file mode 100644 index 00000000000..af78e860bb1 --- /dev/null +++ b/src/test/java/org/cbioportal/web/InfoControllerTest.java @@ -0,0 +1,40 @@ +package org.cbioportal.web; + +import org.cbioportal.web.config.TestConfig; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.TestPropertySource; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import org.springframework.test.web.servlet.result.MockMvcResultMatchers; + +@RunWith(SpringJUnit4ClassRunner.class) +@WebMvcTest +@ContextConfiguration(classes = {InfoController.class, TestConfig.class}) +@TestPropertySource(properties = { + "portal.version=test_portal_version", + "db.version=test_db_version" +}) +public class InfoControllerTest { + + @Autowired + private MockMvc mockMvc; + + @Test + @WithMockUser + public void getInfo() throws Exception { + + mockMvc.perform(MockMvcRequestBuilders.get("/api/info") + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$.portalVersion").value("test_portal_version")) + .andExpect(MockMvcResultMatchers.jsonPath("$.dbVersion").value("test_db_version")); + } +} diff --git a/web/src/test/java/org/cbioportal/web/MolecularDataControllerTest.java b/src/test/java/org/cbioportal/web/MolecularDataControllerTest.java similarity index 90% rename from web/src/test/java/org/cbioportal/web/MolecularDataControllerTest.java rename to src/test/java/org/cbioportal/web/MolecularDataControllerTest.java index 1500e9eb0c1..3793079fe80 100644 --- a/web/src/test/java/org/cbioportal/web/MolecularDataControllerTest.java +++ b/src/test/java/org/cbioportal/web/MolecularDataControllerTest.java @@ -1,37 +1,36 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; import org.cbioportal.model.GeneMolecularData; import org.cbioportal.service.MolecularDataService; +import org.cbioportal.web.config.TestConfig; +import org.cbioportal.web.parameter.HeaderKeyConstants; import org.cbioportal.web.parameter.MolecularDataFilter; import org.cbioportal.web.parameter.MolecularDataMultipleStudyFilter; -import org.cbioportal.web.parameter.HeaderKeyConstants; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {MolecularDataController.class, TestConfig.class}) public class MolecularDataControllerTest { private static final String TEST_MOLECULAR_PROFILE_STABLE_ID_1 = "test_molecular_profile_stable_id_1"; @@ -44,29 +43,16 @@ public class MolecularDataControllerTest { private static final String TEST_VALUE_2 = "2.4"; private static final String TEST_SAMPLE_LIST_ID = "test_sample_list_id"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private MolecularDataService molecularDataService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public MolecularDataService molecularDataService() { - return Mockito.mock(MolecularDataService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(molecularDataService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllMolecularDataInMolecularProfileSummaryProjection() throws Exception { List geneMolecularDataList = createExampleMolecularData(); @@ -75,7 +61,7 @@ public void getAllMolecularDataInMolecularProfileSummaryProjection() throws Exce Mockito.anyString(), Mockito.anyList(), Mockito.anyString())) .thenReturn(geneMolecularDataList); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id/molecular-data") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id/molecular-data") .param("sampleListId", TEST_SAMPLE_LIST_ID) .param("entrezGeneId", "1") .accept(MediaType.APPLICATION_JSON)) @@ -97,6 +83,7 @@ public void getAllMolecularDataInMolecularProfileSummaryProjection() throws Exce } @Test + @WithMockUser public void getAllMolecularDataInMolecularProfileMetaProjection() throws Exception { List geneMolecularDataList = createExampleMolecularData(); @@ -108,7 +95,7 @@ public void getAllMolecularDataInMolecularProfileMetaProjection() throws Excepti Mockito.when(molecularDataService.getMolecularData(Mockito.anyString(), Mockito.anyString(), Mockito.anyList(), Mockito.anyString())).thenReturn(geneMolecularDataList); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id/molecular-data") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id/molecular-data") .param("sampleListId", TEST_SAMPLE_LIST_ID) .param("entrezGeneId", "1") .param("projection", "META")) @@ -117,6 +104,7 @@ public void getAllMolecularDataInMolecularProfileMetaProjection() throws Excepti } @Test + @WithMockUser public void fetchAllMolecularDataInMolecularProfileSummaryProjection() throws Exception { List geneMolecularDataList = createExampleMolecularData(); @@ -128,7 +116,7 @@ public void fetchAllMolecularDataInMolecularProfileSummaryProjection() throws Ex MolecularDataFilter molecularDataFilter = createMolecularDataFilter(); mockMvc.perform(MockMvcRequestBuilders - .post("/molecular-profiles/test_molecular_profile_id/molecular-data/fetch") + .post("/api/molecular-profiles/test_molecular_profile_id/molecular-data/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(molecularDataFilter))) @@ -150,6 +138,7 @@ public void fetchAllMolecularDataInMolecularProfileSummaryProjection() throws Ex } @Test + @WithMockUser public void fetchAllMolecularDataInMolecularProfileMetaProjection() throws Exception { List geneMolecularDataList = createExampleMolecularData(); @@ -164,7 +153,7 @@ public void fetchAllMolecularDataInMolecularProfileMetaProjection() throws Excep MolecularDataFilter molecularDataFilter = createMolecularDataFilter(); mockMvc.perform(MockMvcRequestBuilders - .post("/molecular-profiles/test_molecular_profile_id/molecular-data/fetch") + .post("/api/molecular-profiles/test_molecular_profile_id/molecular-data/fetch").with(csrf()) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(molecularDataFilter)) .param("projection", "META")) @@ -173,6 +162,7 @@ public void fetchAllMolecularDataInMolecularProfileMetaProjection() throws Excep } @Test + @WithMockUser public void fetchMolecularDataInMultipleMolecularProfiles() throws Exception { List geneMolecularDataList = createExampleMolecularData(); @@ -187,7 +177,7 @@ public void fetchMolecularDataInMultipleMolecularProfiles() throws Exception { molecularDataMultipleStudyFilter.setEntrezGeneIds(Arrays.asList(TEST_ENTREZ_GENE_ID_1, TEST_ENTREZ_GENE_ID_2)); mockMvc.perform(MockMvcRequestBuilders - .post("/molecular-data/fetch") + .post("/api/molecular-data/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(molecularDataMultipleStudyFilter))) diff --git a/web/src/test/java/org/cbioportal/web/MolecularProfileControllerTest.java b/src/test/java/org/cbioportal/web/MolecularProfileControllerTest.java similarity index 93% rename from web/src/test/java/org/cbioportal/web/MolecularProfileControllerTest.java rename to src/test/java/org/cbioportal/web/MolecularProfileControllerTest.java index 59bf4435b4e..b999ec5ebe8 100644 --- a/web/src/test/java/org/cbioportal/web/MolecularProfileControllerTest.java +++ b/src/test/java/org/cbioportal/web/MolecularProfileControllerTest.java @@ -1,38 +1,38 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + +import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.MolecularProfile; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.MolecularProfileService; import org.cbioportal.service.exception.MolecularProfileNotFoundException; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.cbioportal.web.parameter.MolecularProfileFilter; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; -import com.fasterxml.jackson.databind.ObjectMapper; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {MolecularProfileController.class, TestConfig.class}) public class MolecularProfileControllerTest { private static final int TEST_MOLECULAR_PROFILE_ID_1 = 1; @@ -68,29 +68,16 @@ public class MolecularProfileControllerTest { private static final String TEST_STUDY_SORTORDER_2 = "DESC"; private static final String TEST_GENERIC_ASSAY_TYPE_2 = "test_generic_assay_type_2"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private MolecularProfileService molecularProfileService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public MolecularProfileService molecularProfileService() { - return Mockito.mock(MolecularProfileService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(molecularProfileService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllMolecularProfilesDefaultProjection() throws Exception { List molecularProfileList = createExampleMolecularProfiles(); @@ -98,7 +85,7 @@ public void getAllMolecularProfilesDefaultProjection() throws Exception { Mockito.when(molecularProfileService.getAllMolecularProfiles(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(molecularProfileList); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -134,6 +121,7 @@ public void getAllMolecularProfilesDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllMolecularProfilesMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -141,19 +129,20 @@ public void getAllMolecularProfilesMetaProjection() throws Exception { Mockito.when(molecularProfileService.getMetaMolecularProfiles()).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getMolecularProfileNotFound() throws Exception { Mockito.when(molecularProfileService.getMolecularProfile(Mockito.anyString())).thenThrow( new MolecularProfileNotFoundException("test_molecular_profile_id")); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isNotFound()) .andExpect(MockMvcResultMatchers.jsonPath("$.message") @@ -161,6 +150,7 @@ public void getMolecularProfileNotFound() throws Exception { } @Test + @WithMockUser public void getMolecularProfile() throws Exception { MolecularProfile molecularProfile = new MolecularProfile(); @@ -186,7 +176,7 @@ public void getMolecularProfile() throws Exception { Mockito.when(molecularProfileService.getMolecularProfile(Mockito.anyString())).thenReturn(molecularProfile); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -213,6 +203,7 @@ public void getMolecularProfile() throws Exception { } @Test + @WithMockUser public void getAllMolecularProfilesInStudyDefaultProjection() throws Exception { List molecularProfileList = createExampleMolecularProfiles(); @@ -221,7 +212,7 @@ public void getAllMolecularProfilesInStudyDefaultProjection() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())) .thenReturn(molecularProfileList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/molecular-profiles") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/molecular-profiles") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -255,6 +246,7 @@ public void getAllMolecularProfilesInStudyDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllMolecularProfilesInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -262,13 +254,14 @@ public void getAllMolecularProfilesInStudyMetaProjection() throws Exception { Mockito.when(molecularProfileService.getMetaMolecularProfilesInStudy(Mockito.anyString())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/molecular-profiles") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/molecular-profiles") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void fetchMolecularProfiles() throws Exception { List molecularProfileList = createExampleMolecularProfiles(); @@ -280,7 +273,7 @@ public void fetchMolecularProfiles() throws Exception { molecularProfileFilter.setStudyIds(Arrays.asList(TEST_STUDY_IDENTIFIER_1, TEST_STUDY_IDENTIFIER_2)); mockMvc.perform(MockMvcRequestBuilders - .post("/molecular-profiles/fetch") + .post("/api/molecular-profiles/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(molecularProfileFilter))) diff --git a/web/src/test/java/org/cbioportal/web/MrnaPercentileControllerTest.java b/src/test/java/org/cbioportal/web/MrnaPercentileControllerTest.java similarity index 83% rename from web/src/test/java/org/cbioportal/web/MrnaPercentileControllerTest.java rename to src/test/java/org/cbioportal/web/MrnaPercentileControllerTest.java index b2773e43210..1056c2d0336 100644 --- a/web/src/test/java/org/cbioportal/web/MrnaPercentileControllerTest.java +++ b/src/test/java/org/cbioportal/web/MrnaPercentileControllerTest.java @@ -1,34 +1,33 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.MrnaPercentile; import org.cbioportal.service.MrnaPercentileService; +import org.cbioportal.web.config.TestConfig; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {MrnaPercentileController.class, TestConfig.class}) public class MrnaPercentileControllerTest { private static final String TEST_MOLECULAR_PROFILE_STABLE_ID = "test_molecular_profile_stable_id_1"; @@ -40,29 +39,16 @@ public class MrnaPercentileControllerTest { private static final BigDecimal TEST_Z_SCORE_2 = new BigDecimal(0.2); private static final BigDecimal TEST_PERCENTILE_2 = new BigDecimal(80.01); - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private MrnaPercentileService mrnaPercentileService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public MrnaPercentileService mrnaPercentileService() { - return Mockito.mock(MrnaPercentileService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(mrnaPercentileService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void fetchMrnaPercentile() throws Exception { List mrnaPercentileList = new ArrayList<>(); @@ -89,7 +75,7 @@ public void fetchMrnaPercentile() throws Exception { entrezGeneIds.add(TEST_ENTREZ_GENE_ID_2); mockMvc.perform(MockMvcRequestBuilders - .post("/molecular-profiles/test_molecular_profile_id/mrna-percentile/fetch") + .post("/api/molecular-profiles/test_molecular_profile_id/mrna-percentile/fetch").with(csrf()) .param("sampleId", TEST_SAMPLE_STABLE_ID) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) diff --git a/web/src/test/java/org/cbioportal/web/MutationControllerTest.java b/src/test/java/org/cbioportal/web/MutationControllerTest.java similarity index 97% rename from web/src/test/java/org/cbioportal/web/MutationControllerTest.java rename to src/test/java/org/cbioportal/web/MutationControllerTest.java index 7f9018d0e85..9485d91ad70 100644 --- a/web/src/test/java/org/cbioportal/web/MutationControllerTest.java +++ b/src/test/java/org/cbioportal/web/MutationControllerTest.java @@ -1,42 +1,42 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.AlleleSpecificCopyNumber; import org.cbioportal.model.Gene; import org.cbioportal.model.Mutation; import org.cbioportal.model.MutationCountByPosition; import org.cbioportal.model.meta.MutationMeta; import org.cbioportal.service.MutationService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.cbioportal.web.parameter.MutationFilter; import org.cbioportal.web.parameter.MutationMultipleStudyFilter; import org.cbioportal.web.parameter.MutationPositionIdentifier; import org.cbioportal.web.parameter.SampleMolecularIdentifier; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {MutationController.class, MutationCountController.class, TestConfig.class}) public class MutationControllerTest { private static final String TEST_MOLECULAR_PROFILE_STABLE_ID_1 = "test_molecular_profile_stable_id_1"; @@ -125,29 +125,16 @@ public class MutationControllerTest { private static final int TEST_TOTAL_COPY_NUMBER_2 = 2; private static final String NAME_SPACE_COLUMNS = "{\"columnName\":{\"fieldName\":\"fieldValue\"}}"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private MutationService mutationService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public MutationService mutationService() { - return Mockito.mock(MutationService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(mutationService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getMutationsInMolecularProfileBySampleListIdDefaultProjection() throws Exception { List mutationList = createExampleMutations(); @@ -156,7 +143,7 @@ public void getMutationsInMolecularProfileBySampleListIdDefaultProjection() thro Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(mutationList); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id/mutations") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id/mutations") .param("sampleListId", TEST_SAMPLE_LIST_ID) .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) @@ -225,6 +212,7 @@ public void getMutationsInMolecularProfileBySampleListIdDefaultProjection() thro } @Test + @WithMockUser public void getMutationsInMolecularProfileBySampleListIdDetailedProjection() throws Exception { List mutationList = createExampleMutationsWithGeneAndAlleleSpecificCopyNumber(); @@ -233,7 +221,7 @@ public void getMutationsInMolecularProfileBySampleListIdDetailedProjection() thr Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(mutationList); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id/mutations") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id/mutations") .param("sampleListId", TEST_SAMPLE_LIST_ID) .param("projection", "DETAILED") .accept(MediaType.APPLICATION_JSON)) @@ -320,6 +308,7 @@ public void getMutationsInMolecularProfileBySampleListIdDetailedProjection() thr } @Test + @WithMockUser public void getMutationsInMolecularProfileBySampleListIdMetaProjection() throws Exception { MutationMeta mutationMeta = new MutationMeta(); @@ -329,7 +318,7 @@ public void getMutationsInMolecularProfileBySampleListIdMetaProjection() throws Mockito.when(mutationService.getMetaMutationsInMolecularProfileBySampleListId(Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(mutationMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/molecular-profiles/test_molecular_profile_id/mutations") + mockMvc.perform(MockMvcRequestBuilders.get("/api/molecular-profiles/test_molecular_profile_id/mutations") .param("sampleListId", TEST_SAMPLE_LIST_ID) .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) @@ -338,6 +327,7 @@ public void getMutationsInMolecularProfileBySampleListIdMetaProjection() throws } @Test + @WithMockUser public void fetchMutationsInMultipleMolecularProfiles() throws Exception { List mutationList = createExampleMutations(); @@ -358,7 +348,7 @@ public void fetchMutationsInMultipleMolecularProfiles() throws Exception { MutationMultipleStudyFilter mutationMultipleStudyFilter = new MutationMultipleStudyFilter(); mutationMultipleStudyFilter.setSampleMolecularIdentifiers(sampleMolecularIdentifiers); - mockMvc.perform(MockMvcRequestBuilders.post("/mutations/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/mutations/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(mutationMultipleStudyFilter))) @@ -426,6 +416,7 @@ public void fetchMutationsInMultipleMolecularProfiles() throws Exception { } @Test + @WithMockUser public void fetchMutationsInMolecularProfileDefaultProjection() throws Exception { List mutationList = createExampleMutations(); @@ -441,7 +432,7 @@ public void fetchMutationsInMolecularProfileDefaultProjection() throws Exception MutationFilter mutationFilter = new MutationFilter(); mutationFilter.setSampleIds(sampleIds); - mockMvc.perform(MockMvcRequestBuilders.post("/molecular-profiles/test_molecular_profile_id/mutations/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/molecular-profiles/test_molecular_profile_id/mutations/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(mutationFilter))) @@ -509,6 +500,7 @@ public void fetchMutationsInMolecularProfileDefaultProjection() throws Exception } @Test + @WithMockUser public void fetchMutationsInMolecularProfileDetailedProjection() throws Exception { List mutationList = createExampleMutationsWithGeneAndAlleleSpecificCopyNumber(); @@ -524,7 +516,7 @@ public void fetchMutationsInMolecularProfileDetailedProjection() throws Exceptio MutationFilter mutationFilter = new MutationFilter(); mutationFilter.setSampleIds(sampleIds); - mockMvc.perform(MockMvcRequestBuilders.post("/molecular-profiles/test_molecular_profile_id/mutations/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/molecular-profiles/test_molecular_profile_id/mutations/fetch").with(csrf()) .param("projection", "DETAILED") .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) @@ -613,6 +605,7 @@ public void fetchMutationsInMolecularProfileDetailedProjection() throws Exceptio } @Test + @WithMockUser public void fetchMutationsInMolecularProfileMetaProjection() throws Exception { MutationMeta mutationMeta = new MutationMeta(); @@ -628,7 +621,7 @@ public void fetchMutationsInMolecularProfileMetaProjection() throws Exception { MutationFilter mutationFilter = new MutationFilter(); mutationFilter.setSampleIds(sampleIds); - mockMvc.perform(MockMvcRequestBuilders.post("/molecular-profiles/test_molecular_profile_id/mutations/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/molecular-profiles/test_molecular_profile_id/mutations/fetch").with(csrf()) .param("projection", "META") .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(mutationFilter))) @@ -638,6 +631,7 @@ public void fetchMutationsInMolecularProfileMetaProjection() throws Exception { } @Test + @WithMockUser public void fetchMutationCountsByPosition() throws Exception { List mutationCountByPositionList = new ArrayList<>(); @@ -670,7 +664,7 @@ public void fetchMutationCountsByPosition() throws Exception { mutationPositionIdentifier2.setProteinPosEnd(TEST_MUTATION_PROTEIN_POS_END_2); mutationPositionIdentifiers.add(mutationPositionIdentifier2); - mockMvc.perform(MockMvcRequestBuilders.post("/mutation-counts-by-position/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/mutation-counts-by-position/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(mutationPositionIdentifiers))) diff --git a/src/test/java/org/cbioportal/web/MutationCountControllerTest.java b/src/test/java/org/cbioportal/web/MutationCountControllerTest.java new file mode 100644 index 00000000000..26607dd2827 --- /dev/null +++ b/src/test/java/org/cbioportal/web/MutationCountControllerTest.java @@ -0,0 +1,101 @@ +package org.cbioportal.web; + +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + +import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; +import org.cbioportal.model.MutationCountByPosition; +import org.cbioportal.service.MutationService; +import org.cbioportal.web.config.TestConfig; +import org.cbioportal.web.parameter.MutationPositionIdentifier; +import org.hamcrest.Matchers; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import org.springframework.test.web.servlet.result.MockMvcResultMatchers; + +@RunWith(SpringJUnit4ClassRunner.class) +@WebMvcTest +@ContextConfiguration(classes = {MutationCountController.class, TestConfig.class}) +public class MutationCountControllerTest { + + private static final int TEST_ENTREZ_GENE_ID_1 = 1; + private static final int TEST_ONCOTATOR_PROTEIN_POS_START_1 = 1; + private static final int TEST_ONCOTATOR_PROTEIN_POS_END_1 = 1; + private static final int TEST_ENTREZ_GENE_ID_2 = 2; + private static final int TEST_ONCOTATOR_PROTEIN_POS_START_2 = 2; + private static final int TEST_ONCOTATOR_PROTEIN_POS_END_2 = 2; + private static final int TEST_MUTATION_COUNT_1 = 100; + private static final int TEST_MUTATION_COUNT_2 = 200; + + @MockBean + private MutationService mutationService; + + private ObjectMapper objectMapper = new ObjectMapper(); + + @Autowired + private MockMvc mockMvc; + + @Test + @WithMockUser + public void fetchMutationCountsByPosition() throws Exception { + + List mutationCountByPositionList = new ArrayList<>(); + MutationCountByPosition mutationCountByPosition1 = new MutationCountByPosition(); + mutationCountByPosition1.setEntrezGeneId(TEST_ENTREZ_GENE_ID_1); + mutationCountByPosition1.setProteinPosStart(TEST_ONCOTATOR_PROTEIN_POS_START_1); + mutationCountByPosition1.setProteinPosEnd(TEST_ONCOTATOR_PROTEIN_POS_END_1); + mutationCountByPosition1.setCount(TEST_MUTATION_COUNT_1); + mutationCountByPositionList.add(mutationCountByPosition1); + MutationCountByPosition mutationCountByPosition2 = new MutationCountByPosition(); + mutationCountByPosition2.setEntrezGeneId(TEST_ENTREZ_GENE_ID_2); + mutationCountByPosition2.setProteinPosStart(TEST_ONCOTATOR_PROTEIN_POS_START_2); + mutationCountByPosition2.setProteinPosEnd(TEST_ONCOTATOR_PROTEIN_POS_END_2); + mutationCountByPosition2.setCount(TEST_MUTATION_COUNT_2); + mutationCountByPositionList.add(mutationCountByPosition2); + + Mockito.when(mutationService.fetchMutationCountsByPosition(Mockito.anyList(), + Mockito.anyList(), Mockito.anyList())) + .thenReturn(mutationCountByPositionList); + + List mutationPositionIdentifiers = new ArrayList<>(); + MutationPositionIdentifier mutationPositionIdentifier1 = new MutationPositionIdentifier(); + mutationPositionIdentifier1.setEntrezGeneId(TEST_ENTREZ_GENE_ID_1); + mutationPositionIdentifier1.setProteinPosStart(TEST_ONCOTATOR_PROTEIN_POS_START_1); + mutationPositionIdentifier1.setProteinPosEnd(TEST_ONCOTATOR_PROTEIN_POS_END_1); + mutationPositionIdentifiers.add(mutationPositionIdentifier1); + MutationPositionIdentifier mutationPositionIdentifier2 = new MutationPositionIdentifier(); + mutationPositionIdentifier2.setEntrezGeneId(TEST_ENTREZ_GENE_ID_2); + mutationPositionIdentifier2.setProteinPosStart(TEST_ONCOTATOR_PROTEIN_POS_START_2); + mutationPositionIdentifier2.setProteinPosEnd(TEST_ONCOTATOR_PROTEIN_POS_END_2); + mutationPositionIdentifiers.add(mutationPositionIdentifier2); + + mockMvc.perform(MockMvcRequestBuilders.post("/api/mutation-counts-by-position/fetch").with(csrf()) + .accept(MediaType.APPLICATION_JSON) + .contentType(MediaType.APPLICATION_JSON) + .content(objectMapper.writeValueAsString(mutationPositionIdentifiers))) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].entrezGeneId").value(TEST_ENTREZ_GENE_ID_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].proteinPosStart").value(TEST_ONCOTATOR_PROTEIN_POS_START_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].proteinPosEnd").value(TEST_ONCOTATOR_PROTEIN_POS_END_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[0].count").value(TEST_MUTATION_COUNT_1)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].entrezGeneId").value(TEST_ENTREZ_GENE_ID_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].proteinPosStart").value(TEST_ONCOTATOR_PROTEIN_POS_START_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].proteinPosEnd").value(TEST_ONCOTATOR_PROTEIN_POS_END_2)) + .andExpect(MockMvcResultMatchers.jsonPath("$[1].count").value(TEST_MUTATION_COUNT_2)); + } + +} diff --git a/web/src/test/java/org/cbioportal/web/MutationSpectrumControllerTest.java b/src/test/java/org/cbioportal/web/MutationSpectrumControllerTest.java similarity index 86% rename from web/src/test/java/org/cbioportal/web/MutationSpectrumControllerTest.java rename to src/test/java/org/cbioportal/web/MutationSpectrumControllerTest.java index 94f339ef359..84b562c6a4e 100644 --- a/web/src/test/java/org/cbioportal/web/MutationSpectrumControllerTest.java +++ b/src/test/java/org/cbioportal/web/MutationSpectrumControllerTest.java @@ -1,35 +1,34 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; import org.cbioportal.model.MutationSpectrum; import org.cbioportal.service.MutationSpectrumService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.MutationSpectrumFilter; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {MutationSpectrumController.class, TestConfig.class}) public class MutationSpectrumControllerTest { private static final String TEST_MOLECULAR_PROFILE_ID = "test_molecular_profile_id"; @@ -48,29 +47,16 @@ public class MutationSpectrumControllerTest { private static final int TEST_T_TO_C_2 = 1; private static final int TEST_T_TO_G_2 = 2; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private MutationSpectrumService mutationSpectrumService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public MutationSpectrumService mutationSpectrumService() { - return Mockito.mock(MutationSpectrumService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(mutationSpectrumService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void fetchMutationSpectrums() throws Exception { List mutationSpectrumList = new ArrayList<>(); @@ -102,7 +88,7 @@ public void fetchMutationSpectrums() throws Exception { mutationSpectrumFilter.setSampleIds(Arrays.asList(TEST_SAMPLE_ID_1, TEST_SAMPLE_ID_2)); mockMvc.perform(MockMvcRequestBuilders.post( - "/molecular-profiles/test_molecular_profile_id/mutation-spectrums/fetch") + "/api/molecular-profiles/test_molecular_profile_id/mutation-spectrums/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(mutationSpectrumFilter))) diff --git a/web/src/test/java/org/cbioportal/web/PatientControllerTest.java b/src/test/java/org/cbioportal/web/PatientControllerTest.java similarity index 90% rename from web/src/test/java/org/cbioportal/web/PatientControllerTest.java rename to src/test/java/org/cbioportal/web/PatientControllerTest.java index b5cb3f5b126..906e8df119e 100644 --- a/web/src/test/java/org/cbioportal/web/PatientControllerTest.java +++ b/src/test/java/org/cbioportal/web/PatientControllerTest.java @@ -1,39 +1,38 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.Patient; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.PatientService; import org.cbioportal.service.exception.PatientNotFoundException; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.cbioportal.web.parameter.PatientFilter; import org.cbioportal.web.parameter.PatientIdentifier; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {PatientController.class, TestConfig.class}) public class PatientControllerTest { private static final int TEST_INTERNAL_ID_1 = 1; @@ -49,29 +48,16 @@ public class PatientControllerTest { private static final String TEST_SHORT_NAME_1 = "test_short_name_1"; private static final String TEST_DESCRIPTION_1 = "test_description_1"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private PatientService patientService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public PatientService patientService() { - return Mockito.mock(PatientService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(patientService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllPatientsDefaultProjection() throws Exception { List patientList = createExamplePatients(); @@ -79,7 +65,7 @@ public void getAllPatientsDefaultProjection() throws Exception { Mockito.when(patientService.getAllPatients(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(patientList); - mockMvc.perform(MockMvcRequestBuilders.get("/patients") + mockMvc.perform(MockMvcRequestBuilders.get("/api/patients") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -97,6 +83,7 @@ public void getAllPatientsDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllPatientsMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -104,13 +91,14 @@ public void getAllPatientsMetaProjection() throws Exception { Mockito.when(patientService.getMetaPatients(Mockito.any())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/patients") + mockMvc.perform(MockMvcRequestBuilders.get("/api/patients") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getAllPatientsInStudyDefaultProjection() throws Exception { List patientList = createExamplePatients(); @@ -118,7 +106,7 @@ public void getAllPatientsInStudyDefaultProjection() throws Exception { Mockito.when(patientService.getAllPatientsInStudy(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(patientList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -136,6 +124,7 @@ public void getAllPatientsInStudyDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllPatientsInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -143,19 +132,20 @@ public void getAllPatientsInStudyMetaProjection() throws Exception { Mockito.when(patientService.getMetaPatientsInStudy(Mockito.anyString())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getPatientInStudyNotFound() throws Exception { Mockito.when(patientService.getPatientInStudy(Mockito.anyString(), Mockito.anyString())).thenThrow( new PatientNotFoundException("test_study_id", "test_patient_id")); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients/test_patient_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients/test_patient_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isNotFound()) .andExpect(MockMvcResultMatchers.jsonPath("$.message") @@ -163,6 +153,7 @@ public void getPatientInStudyNotFound() throws Exception { } @Test + @WithMockUser public void getPatientInStudy() throws Exception { Patient patient = new Patient(); @@ -180,7 +171,7 @@ public void getPatientInStudy() throws Exception { Mockito.when(patientService.getPatientInStudy(Mockito.anyString(), Mockito.anyString())).thenReturn(patient); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients/test_patient_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients/test_patient_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -191,6 +182,7 @@ public void getPatientInStudy() throws Exception { } @Test + @WithMockUser public void fetchPatientsDefaultProjection() throws Exception { List patientList = createExamplePatients(); @@ -210,7 +202,7 @@ public void fetchPatientsDefaultProjection() throws Exception { patientIdentifiers.add(patientIdentifier2); patientFilter.setPatientIdentifiers(patientIdentifiers); - mockMvc.perform(MockMvcRequestBuilders.post("/patients/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/patients/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(patientFilter))) @@ -230,6 +222,7 @@ public void fetchPatientsDefaultProjection() throws Exception { } @Test + @WithMockUser public void fetchPatientsByUniquePatientKeysDefaultProjection() throws Exception { List patientList = createExamplePatients(); @@ -243,7 +236,7 @@ public void fetchPatientsByUniquePatientKeysDefaultProjection() throws Exception uniquePatientKeys.add("dGVzdF9zdGFibGVfaWRfMjp0ZXN0X3N0dWR5XzI"); patientFilter.setUniquePatientKeys(uniquePatientKeys); - mockMvc.perform(MockMvcRequestBuilders.post("/patients/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/patients/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(patientFilter))) @@ -263,6 +256,7 @@ public void fetchPatientsByUniquePatientKeysDefaultProjection() throws Exception } @Test + @WithMockUser public void fetchPatientsMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -283,7 +277,7 @@ public void fetchPatientsMetaProjection() throws Exception { patientIdentifiers.add(patientIdentifier2); patientFilter.setPatientIdentifiers(patientIdentifiers); - mockMvc.perform(MockMvcRequestBuilders.post("/patients/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/patients/fetch").with(csrf()) .param("projection", "META") .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(patientFilter))) diff --git a/web/src/test/java/org/cbioportal/web/ReferenceGenomeGeneControllerTest.java b/src/test/java/org/cbioportal/web/ReferenceGenomeGeneControllerTest.java similarity index 85% rename from web/src/test/java/org/cbioportal/web/ReferenceGenomeGeneControllerTest.java rename to src/test/java/org/cbioportal/web/ReferenceGenomeGeneControllerTest.java index 229b4e9722c..958f4643ee4 100644 --- a/web/src/test/java/org/cbioportal/web/ReferenceGenomeGeneControllerTest.java +++ b/src/test/java/org/cbioportal/web/ReferenceGenomeGeneControllerTest.java @@ -1,37 +1,35 @@ package org.cbioportal.web; +import static org.mockito.Mockito.times; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; import org.cbioportal.model.ReferenceGenomeGene; import org.cbioportal.service.GeneMemoizerService; import org.cbioportal.service.ReferenceGenomeGeneService; +import org.cbioportal.web.config.TestConfig; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.Collections; -import java.util.List; - -import static org.mockito.Mockito.times; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {ReferenceGenomeGeneController.class, TestConfig.class}) public class ReferenceGenomeGeneControllerTest { public static final String CYTOBAND_1 = "cytoband_1"; @@ -52,43 +50,25 @@ public class ReferenceGenomeGeneControllerTest { gene.setChromosome(CHROMOSOME_1); } - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private ReferenceGenomeGeneService referenceGenomeGeneService; - @Autowired + @MockBean private GeneMemoizerService geneMemoizerService; - + private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - - @Bean - public ReferenceGenomeGeneService referenceGenomeGeneService() { - return Mockito.mock(ReferenceGenomeGeneService.class); - } - - @Bean - public GeneMemoizerService geneMemoizerService() { - return Mockito.mock(GeneMemoizerService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(referenceGenomeGeneService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } @Test + @WithMockUser public void getAllReferenceGenesFromCache() throws Exception { Mockito.when(geneMemoizerService.fetchGenes(Mockito.anyString())).thenReturn(Collections.singletonList(gene)); Mockito.when(referenceGenomeGeneService.fetchAllReferenceGenomeGenes(Mockito.anyString())) .thenReturn(Collections.singletonList(gene)); - mockMvc.perform(MockMvcRequestBuilders.get("/reference-genome-genes/hg19") + mockMvc.perform(MockMvcRequestBuilders.get("/api/reference-genome-genes/hg19") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -105,12 +85,13 @@ public void getAllReferenceGenesFromCache() throws Exception { } @Test + @WithMockUser public void getAllReferenceGenesNoCache() throws Exception { Mockito.when(geneMemoizerService.fetchGenes(Mockito.anyString())).thenReturn(null); Mockito.when(referenceGenomeGeneService.fetchAllReferenceGenomeGenes(Mockito.anyString())) .thenReturn(Collections.singletonList(gene)); - mockMvc.perform(MockMvcRequestBuilders.get("/reference-genome-genes/hg19") + mockMvc.perform(MockMvcRequestBuilders.get("/api/reference-genome-genes/hg19") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -126,10 +107,11 @@ public void getAllReferenceGenesNoCache() throws Exception { } @Test + @WithMockUser public void getGene() throws Exception { Mockito.when(referenceGenomeGeneService.getReferenceGenomeGene(Mockito.anyInt(), Mockito.anyString())).thenReturn(gene); - mockMvc.perform(MockMvcRequestBuilders.get("/reference-genome-genes/hg19/1") + mockMvc.perform(MockMvcRequestBuilders.get("/api/reference-genome-genes/hg19/1") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -141,6 +123,7 @@ public void getGene() throws Exception { @Test + @WithMockUser public void fetchGenesDefaultProjection() throws Exception { List geneList = createGeneList(); @@ -152,7 +135,7 @@ public void fetchGenesDefaultProjection() throws Exception { geneIds.add(Integer.toString(ENTREZ_GENE_ID_1)); geneIds.add(Integer.toString(ENTREZ_GENE_ID_2)); - mockMvc.perform(MockMvcRequestBuilders.post("/reference-genome-genes/hg19/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/reference-genome-genes/hg19/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(geneIds))) diff --git a/web/src/test/java/org/cbioportal/web/ResourceDataControllerTest.java b/src/test/java/org/cbioportal/web/ResourceDataControllerTest.java similarity index 83% rename from web/src/test/java/org/cbioportal/web/ResourceDataControllerTest.java rename to src/test/java/org/cbioportal/web/ResourceDataControllerTest.java index 624e168752e..c5fb2af22a2 100644 --- a/web/src/test/java/org/cbioportal/web/ResourceDataControllerTest.java +++ b/src/test/java/org/cbioportal/web/ResourceDataControllerTest.java @@ -1,59 +1,41 @@ package org.cbioportal.web; +import com.fasterxml.jackson.databind.ObjectMapper; import java.util.Arrays; import java.util.List; - import org.cbioportal.model.ResourceData; import org.cbioportal.service.ResourceDataService; +import org.cbioportal.web.config.TestConfig; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import com.fasterxml.jackson.databind.ObjectMapper; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {ResourceDataController.class, TestConfig.class}) public class ResourceDataControllerTest { - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private ResourceDataService resourceDataService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public ResourceDataService resourceDataService() { - return Mockito.mock(ResourceDataService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(resourceDataService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllResourceDataOfSampleInStudy() throws Exception { String resourceDatasJson = "[" + @@ -73,7 +55,7 @@ public void getAllResourceDataOfSampleInStudy() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(resourceDataList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/samples/test_sample_id/resource-data") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/samples/test_sample_id/resource-data") .accept(MediaType.APPLICATION_JSON)).andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(1))) @@ -85,6 +67,7 @@ public void getAllResourceDataOfSampleInStudy() throws Exception { } @Test + @WithMockUser public void getAllResourceDataOfPatientInStudy() throws Exception { String resourceDatasJson = "[" + @@ -103,7 +86,7 @@ public void getAllResourceDataOfPatientInStudy() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(resourceDataList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients/test_sample_id/resource-data") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients/test_sample_id/resource-data") .accept(MediaType.APPLICATION_JSON)).andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(1))) @@ -114,6 +97,7 @@ public void getAllResourceDataOfPatientInStudy() throws Exception { } @Test + @WithMockUser public void getAllClinicalDataInStudy() throws Exception { String resourceDatasJson = "[" + @@ -132,7 +116,7 @@ public void getAllClinicalDataInStudy() throws Exception { .thenReturn(resourceDataList); mockMvc.perform( - MockMvcRequestBuilders.get("/studies/test_study_id/resource-data").accept(MediaType.APPLICATION_JSON)) + MockMvcRequestBuilders.get("/api/studies/test_study_id/resource-data").accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(1))) diff --git a/web/src/test/java/org/cbioportal/web/ResourceDefinitionControllerTest.java b/src/test/java/org/cbioportal/web/ResourceDefinitionControllerTest.java similarity index 84% rename from web/src/test/java/org/cbioportal/web/ResourceDefinitionControllerTest.java rename to src/test/java/org/cbioportal/web/ResourceDefinitionControllerTest.java index 3a17cb99783..d76045645d2 100644 --- a/web/src/test/java/org/cbioportal/web/ResourceDefinitionControllerTest.java +++ b/src/test/java/org/cbioportal/web/ResourceDefinitionControllerTest.java @@ -7,55 +7,39 @@ import org.cbioportal.model.ResourceDefinition; import org.cbioportal.service.ResourceDefinitionService; +import org.cbioportal.web.config.TestConfig; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; import com.fasterxml.jackson.databind.ObjectMapper; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {ResourceDefinitionController.class, TestConfig.class}) public class ResourceDefinitionControllerTest { - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private ResourceDefinitionService resourceDefinitionService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public ResourceDefinitionService resourceDefinitionService() { - return Mockito.mock(ResourceDefinitionService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(resourceDefinitionService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllResourceDefinitionsInStudy() throws Exception { String resourceDefinitionsJson = "[" + @@ -95,7 +79,7 @@ public void getAllResourceDefinitionsInStudy() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())) .thenReturn(resourceDefinitions); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/resource-definitions") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/resource-definitions") .accept(MediaType.APPLICATION_JSON)).andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) .andExpect(status().isOk()).andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(3))) @@ -110,6 +94,7 @@ public void getAllResourceDefinitionsInStudy() throws Exception { } @Test + @WithMockUser public void getResourceDefinitionInStudy() throws Exception { String resourceDefinition = "{" + @@ -127,7 +112,7 @@ public void getResourceDefinitionInStudy() throws Exception { Mockito.when(resourceDefinitionService.getResourceDefinition(Mockito.anyString(), Mockito.anyString())) .thenReturn(resourceDefinitions); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/resource-definitions/PATHOLOGY_SLIDE") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/resource-definitions/PATHOLOGY_SLIDE") .accept(MediaType.APPLICATION_JSON)).andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) .andExpect(status().isOk()) diff --git a/web/src/test/java/org/cbioportal/web/SampleControllerTest.java b/src/test/java/org/cbioportal/web/SampleControllerTest.java similarity index 91% rename from web/src/test/java/org/cbioportal/web/SampleControllerTest.java rename to src/test/java/org/cbioportal/web/SampleControllerTest.java index 9c1d64670cd..7756f33acdf 100644 --- a/web/src/test/java/org/cbioportal/web/SampleControllerTest.java +++ b/src/test/java/org/cbioportal/web/SampleControllerTest.java @@ -1,37 +1,39 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.Sample; import org.cbioportal.model.meta.BaseMeta; +import org.cbioportal.service.SampleListService; import org.cbioportal.service.SampleService; +import org.cbioportal.service.StudyService; import org.cbioportal.service.exception.SampleNotFoundException; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.cbioportal.web.parameter.SampleFilter; import org.cbioportal.web.parameter.SampleIdentifier; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {SampleController.class, TestConfig.class}) public class SampleControllerTest { private static final int TEST_INTERNAL_ID_1 = 1; @@ -44,24 +46,22 @@ public class SampleControllerTest { private static final int TEST_PATIENT_ID_2 = 2; private static final String TEST_PATIENT_STABLE_ID_2 = "test_patient_stable_id_2"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private SampleService sampleService; + + @MockBean + private SampleListService sampleListService; + + @MockBean + private StudyService studyService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Before - public void setUp() throws Exception { - - Mockito.reset(sampleService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllSamplesInStudyDefaultProjection() throws Exception { List sampleList = createExampleSamples(); @@ -69,7 +69,7 @@ public void getAllSamplesInStudyDefaultProjection() throws Exception { Mockito.when(sampleService.getAllSamplesInStudy(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(sampleList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/samples") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/samples") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -93,6 +93,7 @@ public void getAllSamplesInStudyDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllSamplesInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -100,19 +101,20 @@ public void getAllSamplesInStudyMetaProjection() throws Exception { Mockito.when(sampleService.getMetaSamplesInStudy(Mockito.anyString())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/samples") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/samples") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getSampleInStudyNotFound() throws Exception { Mockito.when(sampleService.getSampleInStudy(Mockito.anyString(), Mockito.anyString())).thenThrow( new SampleNotFoundException("test_study_id", "test_sample_id")); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/samples/test_sample_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/samples/test_sample_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isNotFound()) .andExpect(MockMvcResultMatchers.jsonPath("$.message") @@ -120,6 +122,7 @@ public void getSampleInStudyNotFound() throws Exception { } @Test + @WithMockUser public void getAllSamples() throws Exception { List samples = createExampleSamples(); @@ -130,7 +133,7 @@ public void getAllSamples() throws Exception { )).thenReturn(samples); mockMvc.perform( - MockMvcRequestBuilders.get("/samples").accept(MediaType.APPLICATION_JSON)) + MockMvcRequestBuilders.get("/api/samples").accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) @@ -153,6 +156,7 @@ public void getAllSamples() throws Exception { } @Test + @WithMockUser public void getSampleInStudy() throws Exception { Sample sample = new Sample(); @@ -165,7 +169,7 @@ public void getSampleInStudy() throws Exception { Mockito.when(sampleService.getSampleInStudy(Mockito.anyString(), Mockito.anyString())).thenReturn(sample); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/samples/test_sample_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/samples/test_sample_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -180,6 +184,7 @@ public void getSampleInStudy() throws Exception { } @Test + @WithMockUser public void getAllSamplesOfPatientInStudyDefaultProjection() throws Exception { List sampleList = createExampleSamples(); @@ -188,7 +193,7 @@ public void getAllSamplesOfPatientInStudyDefaultProjection() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())) .thenReturn(sampleList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients/test_patient_id/samples") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients/test_patient_id/samples") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -212,6 +217,7 @@ public void getAllSamplesOfPatientInStudyDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllSamplesOfPatientInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -220,13 +226,14 @@ public void getAllSamplesOfPatientInStudyMetaProjection() throws Exception { Mockito.when(sampleService.getMetaSamplesOfPatientInStudy(Mockito.anyString(), Mockito.anyString())) .thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/patients/test_patient_id/samples") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/patients/test_patient_id/samples") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void fetchSamplesDefaultProjection() throws Exception { List sampleList = createExampleSamples(); @@ -246,7 +253,7 @@ public void fetchSamplesDefaultProjection() throws Exception { sampleIdentifiers.add(sampleIdentifier2); sampleFilter.setSampleIdentifiers(sampleIdentifiers); - mockMvc.perform(MockMvcRequestBuilders.post("/samples/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/samples/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(sampleFilter))) @@ -272,6 +279,7 @@ public void fetchSamplesDefaultProjection() throws Exception { } @Test + @WithMockUser public void fetchSamplesByUniqueSampleKeysDefaultProjection() throws Exception { List sampleList = createExampleSamples(); @@ -285,7 +293,7 @@ public void fetchSamplesByUniqueSampleKeysDefaultProjection() throws Exception { uniqueSampleKeys.add("dGVzdF9zdGFibGVfaWRfMjp0ZXN0X3N0dWR5XzE"); sampleFilter.setUniqueSampleKeys(uniqueSampleKeys); - mockMvc.perform(MockMvcRequestBuilders.post("/samples/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/samples/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(sampleFilter))) @@ -311,6 +319,7 @@ public void fetchSamplesByUniqueSampleKeysDefaultProjection() throws Exception { } @Test + @WithMockUser public void fetchSamplesMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -331,7 +340,7 @@ public void fetchSamplesMetaProjection() throws Exception { sampleIdentifiers.add(sampleIdentifier2); sampleFilter.setSampleIdentifiers(sampleIdentifiers); - mockMvc.perform(MockMvcRequestBuilders.post("/samples/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/samples/fetch").with(csrf()) .param("projection", "META") .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(sampleFilter))) diff --git a/web/src/test/java/org/cbioportal/web/SampleListControllerTest.java b/src/test/java/org/cbioportal/web/SampleListControllerTest.java similarity index 91% rename from web/src/test/java/org/cbioportal/web/SampleListControllerTest.java rename to src/test/java/org/cbioportal/web/SampleListControllerTest.java index 3f096b14121..5f2900fb057 100644 --- a/web/src/test/java/org/cbioportal/web/SampleListControllerTest.java +++ b/src/test/java/org/cbioportal/web/SampleListControllerTest.java @@ -1,37 +1,37 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import org.cbioportal.model.CancerStudy; import org.cbioportal.model.SampleList; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.SampleListService; import org.cbioportal.service.exception.SampleListNotFoundException; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; import com.fasterxml.jackson.databind.ObjectMapper; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {SampleListController.class, TestConfig.class}) public class SampleListControllerTest { private static final int TEST_LIST_ID_1 = 1; @@ -57,29 +57,16 @@ public class SampleListControllerTest { private static final String TEST_SAMPLE_ID_1 = "test_sample_id_1"; private static final String TEST_SAMPLE_ID_2 = "test_sample_id_2"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private SampleListService sampleListService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public SampleListService sampleListService() { - return Mockito.mock(SampleListService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(sampleListService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllSampleListsDefaultProjection() throws Exception { List sampleLists = createExampleSampleLists(); @@ -87,7 +74,7 @@ public void getAllSampleListsDefaultProjection() throws Exception { Mockito.when(sampleListService.getAllSampleLists(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(sampleLists); - mockMvc.perform(MockMvcRequestBuilders.get("/sample-lists") + mockMvc.perform(MockMvcRequestBuilders.get("/api/sample-lists") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -107,6 +94,7 @@ public void getAllSampleListsDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllSampleListsDetailedProjection() throws Exception { List sampleLists = new ArrayList<>(); @@ -115,7 +103,7 @@ public void getAllSampleListsDetailedProjection() throws Exception { Mockito.when(sampleListService.getAllSampleLists(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(sampleLists); - mockMvc.perform(MockMvcRequestBuilders.get("/sample-lists") + mockMvc.perform(MockMvcRequestBuilders.get("/api/sample-lists") .param("projection", "DETAILED") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) @@ -131,6 +119,7 @@ public void getAllSampleListsDetailedProjection() throws Exception { } @Test + @WithMockUser public void getAllSampleListsMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -138,19 +127,20 @@ public void getAllSampleListsMetaProjection() throws Exception { Mockito.when(sampleListService.getMetaSampleLists()).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/sample-lists") + mockMvc.perform(MockMvcRequestBuilders.get("/api/sample-lists") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getSampleListNotFound() throws Exception { Mockito.when(sampleListService.getSampleList(Mockito.anyString())).thenThrow( new SampleListNotFoundException("test_sample_list_id")); - mockMvc.perform(MockMvcRequestBuilders.get("/sample-lists/test_sample_list_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/sample-lists/test_sample_list_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isNotFound()) .andExpect(MockMvcResultMatchers.jsonPath("$.message") @@ -158,13 +148,14 @@ public void getSampleListNotFound() throws Exception { } @Test + @WithMockUser public void getSampleList() throws Exception { SampleList sampleList = createExampleSampleListWithStudy(); Mockito.when(sampleListService.getSampleList(Mockito.anyString())).thenReturn(sampleList); - mockMvc.perform(MockMvcRequestBuilders.get("/sample-lists/test_sample_list_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/sample-lists/test_sample_list_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -178,6 +169,7 @@ public void getSampleList() throws Exception { } @Test + @WithMockUser public void getAllSampleListsInStudyDefaultProjection() throws Exception { List sampleLists = createExampleSampleLists(); @@ -186,7 +178,7 @@ public void getAllSampleListsInStudyDefaultProjection() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())) .thenReturn(sampleLists); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/sample-lists") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/sample-lists") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -206,6 +198,7 @@ public void getAllSampleListsInStudyDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllSampleListsInStudyDetailedProjection() throws Exception { List sampleLists = new ArrayList<>(); @@ -214,7 +207,7 @@ public void getAllSampleListsInStudyDetailedProjection() throws Exception { Mockito.when(sampleListService.getAllSampleListsInStudy(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(sampleLists); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/sample-lists") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/sample-lists") .param("projection", "DETAILED") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) @@ -230,6 +223,7 @@ public void getAllSampleListsInStudyDetailedProjection() throws Exception { } @Test + @WithMockUser public void getAllSampleListsInStudyMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -237,13 +231,14 @@ public void getAllSampleListsInStudyMetaProjection() throws Exception { Mockito.when(sampleListService.getMetaSampleListsInStudy(Mockito.anyString())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/sample-lists") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/sample-lists") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getAllSampleIdsInSampleList() throws Exception { List sampleIds = new ArrayList<>(); @@ -252,7 +247,7 @@ public void getAllSampleIdsInSampleList() throws Exception { Mockito.when(sampleListService.getAllSampleIdsInSampleList(Mockito.anyString())).thenReturn(sampleIds); - mockMvc.perform(MockMvcRequestBuilders.get("/sample-lists/test_sample_list_id/sample-ids") + mockMvc.perform(MockMvcRequestBuilders.get("/api/sample-lists/test_sample_list_id/sample-ids") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -262,6 +257,7 @@ public void getAllSampleIdsInSampleList() throws Exception { } @Test + @WithMockUser public void fetchSampleLists() throws Exception { List sampleLists = createExampleSampleLists(); @@ -269,7 +265,7 @@ public void fetchSampleLists() throws Exception { Mockito.when(sampleListService.fetchSampleLists(Mockito.anyList(), Mockito.anyString())) .thenReturn(sampleLists); - mockMvc.perform(MockMvcRequestBuilders.post("/sample-lists/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/sample-lists/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(Arrays.asList(TEST_STABLE_ID_1, TEST_STABLE_ID_2)))) diff --git a/web/src/test/java/org/cbioportal/web/ServerStatusControllerTest.java b/src/test/java/org/cbioportal/web/ServerStatusControllerTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/ServerStatusControllerTest.java rename to src/test/java/org/cbioportal/web/ServerStatusControllerTest.java diff --git a/web/src/test/java/org/cbioportal/web/SignificantCopyNumberRegionControllerTest.java b/src/test/java/org/cbioportal/web/SignificantCopyNumberRegionControllerTest.java similarity index 89% rename from web/src/test/java/org/cbioportal/web/SignificantCopyNumberRegionControllerTest.java rename to src/test/java/org/cbioportal/web/SignificantCopyNumberRegionControllerTest.java index 23b176d406b..f91c5aaa539 100644 --- a/web/src/test/java/org/cbioportal/web/SignificantCopyNumberRegionControllerTest.java +++ b/src/test/java/org/cbioportal/web/SignificantCopyNumberRegionControllerTest.java @@ -1,36 +1,32 @@ package org.cbioportal.web; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.Gistic; import org.cbioportal.model.GisticToGene; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.SignificantCopyNumberRegionService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {SignificantCopyNumberRegionController.class, TestConfig.class}) public class SignificantCopyNumberRegionControllerTest { private static final Long TEST_GISTIC_ROI_ID_1 = 1L; @@ -57,27 +53,14 @@ public class SignificantCopyNumberRegionControllerTest { private static final int TEST_ENTREZ_GENE_ID_4 = 4; private static final String TEST_HUGO_GENE_SYMBOL_4 = "test_hugo_gene_symbol_4"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private SignificantCopyNumberRegionService significantCopyNumberRegionService; + @Autowired private MockMvc mockMvc; - @Bean - public SignificantCopyNumberRegionService significantCopyNumberRegionService() { - return Mockito.mock(SignificantCopyNumberRegionService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(significantCopyNumberRegionService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getSignificantCopyNumberRegions() throws Exception { List gisticList = new ArrayList<>(); @@ -130,7 +113,7 @@ public void getSignificantCopyNumberRegions() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())) .thenReturn(gisticList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/significant-copy-number-regions") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/significant-copy-number-regions") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -162,6 +145,7 @@ public void getSignificantCopyNumberRegions() throws Exception { } @Test + @WithMockUser public void getSignificantCopyNumberRegionsMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -170,7 +154,7 @@ public void getSignificantCopyNumberRegionsMetaProjection() throws Exception { Mockito.when(significantCopyNumberRegionService.getMetaSignificantCopyNumberRegions(Mockito.anyString())) .thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/significant-copy-number-regions") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/significant-copy-number-regions") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); diff --git a/web/src/test/java/org/cbioportal/web/SignificantlyMutatedGenesControllerTest.java b/src/test/java/org/cbioportal/web/SignificantlyMutatedGenesControllerTest.java similarity index 85% rename from web/src/test/java/org/cbioportal/web/SignificantlyMutatedGenesControllerTest.java rename to src/test/java/org/cbioportal/web/SignificantlyMutatedGenesControllerTest.java index 3685221e0a7..a8bd79a8fe2 100644 --- a/web/src/test/java/org/cbioportal/web/SignificantlyMutatedGenesControllerTest.java +++ b/src/test/java/org/cbioportal/web/SignificantlyMutatedGenesControllerTest.java @@ -1,35 +1,31 @@ package org.cbioportal.web; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.MutSig; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.SignificantlyMutatedGeneService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {SignificantlyMutatedGenesController.class, TestConfig.class}) public class SignificantlyMutatedGenesControllerTest { private static final int TEST_CANCER_STUDY_ID_1 = 1; @@ -49,27 +45,14 @@ public class SignificantlyMutatedGenesControllerTest { private static final BigDecimal TEST_P_VALUE_2 = new BigDecimal(0.2); private static final BigDecimal TEST_Q_VALUE_2 = new BigDecimal(0.2); - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private SignificantlyMutatedGeneService significantlyMutatedGeneService; + @Autowired private MockMvc mockMvc; - @Bean - public SignificantlyMutatedGeneService significantlyMutatedGeneService() { - return Mockito.mock(SignificantlyMutatedGeneService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(significantlyMutatedGeneService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getSignificantlyMutatedGenesDefaultProjection() throws Exception { List mutSigList = new ArrayList<>(); @@ -100,7 +83,7 @@ public void getSignificantlyMutatedGenesDefaultProjection() throws Exception { Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())) .thenReturn(mutSigList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/significantly-mutated-genes") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/significantly-mutated-genes") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -128,6 +111,7 @@ public void getSignificantlyMutatedGenesDefaultProjection() throws Exception { } @Test + @WithMockUser public void getSignificantlyMutatedGenesMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -136,7 +120,7 @@ public void getSignificantlyMutatedGenesMetaProjection() throws Exception { Mockito.when(significantlyMutatedGeneService.getMetaSignificantlyMutatedGenes(Mockito.anyString())) .thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/significantly-mutated-genes") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/significantly-mutated-genes") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); diff --git a/src/test/java/org/cbioportal/web/StaticDataTimestampControllerTest.java b/src/test/java/org/cbioportal/web/StaticDataTimestampControllerTest.java new file mode 100644 index 00000000000..1b555c2fbce --- /dev/null +++ b/src/test/java/org/cbioportal/web/StaticDataTimestampControllerTest.java @@ -0,0 +1,43 @@ +package org.cbioportal.web; + +import java.util.HashMap; +import org.cbioportal.service.StaticDataTimestampService; +import org.cbioportal.web.config.TestConfig; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import org.springframework.test.web.servlet.result.MockMvcResultMatchers; + +@RunWith(SpringJUnit4ClassRunner.class) +@WebMvcTest +@ContextConfiguration(classes = {StaticDataTimestampController.class, TestConfig.class}) +public class StaticDataTimestampControllerTest { + + @MockBean + private StaticDataTimestampService service; + + @Autowired + private MockMvc mockMvc; + + @Test + @WithMockUser + public void getAllTimestamps() throws Exception { + HashMap pairs = new HashMap<>(); + pairs.put("gene", "1997-08-13 22:00:00"); + Mockito.when(service.getTimestamps(Mockito.anyList())).thenReturn(pairs); + + mockMvc.perform(MockMvcRequestBuilders.get("/api/timestamps") + .accept(MediaType.APPLICATION_JSON)) + .andExpect(MockMvcResultMatchers.status().isOk()) + .andExpect(MockMvcResultMatchers.jsonPath("$.gene").value("1997-08-13 22:00:00")); + } +} \ No newline at end of file diff --git a/web/src/test/java/org/cbioportal/web/StructuralVariantControllerTest.java b/src/test/java/org/cbioportal/web/StructuralVariantControllerTest.java similarity index 96% rename from web/src/test/java/org/cbioportal/web/StructuralVariantControllerTest.java rename to src/test/java/org/cbioportal/web/StructuralVariantControllerTest.java index 3a8dcb8f3b1..0be3faf380a 100644 --- a/web/src/test/java/org/cbioportal/web/StructuralVariantControllerTest.java +++ b/src/test/java/org/cbioportal/web/StructuralVariantControllerTest.java @@ -23,6 +23,10 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + +import com.fasterxml.jackson.databind.ObjectMapper; import java.util.ArrayList; import java.util.List; @@ -32,10 +36,9 @@ import org.cbioportal.model.StructuralVariantQuery; import org.cbioportal.model.StructuralVariantSpecialValue; import org.cbioportal.service.StructuralVariantService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.SampleMolecularIdentifier; import org.cbioportal.web.parameter.StructuralVariantFilter; - -import com.fasterxml.jackson.databind.ObjectMapper; import org.hamcrest.Matchers; import org.junit.Assert; import org.junit.Before; @@ -44,22 +47,21 @@ import org.mockito.ArgumentCaptor; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.*; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {StructuralVariantController.class, TestConfig.class}) public class StructuralVariantControllerTest { private static final String TEST_GENETIC_PROFILE_STABLE_ID_1 = "test_genetic_profile_stable_id_1"; @@ -115,28 +117,16 @@ public class StructuralVariantControllerTest { private static final String TEST_SV_STATUS = "SOMATIC"; private static final String TEST_ANNOTATION_JSON_1 = "{\"columnName\":{\"fieldName\":\"fieldValue\"}}"; - @Autowired - private WebApplicationContext wac; + @MockBean + private StructuralVariantService structuralVariantService; @Autowired - private StructuralVariantService structuralVariantService; private MockMvc mockMvc; private ObjectMapper objectMapper = new ObjectMapper(); - @Bean - public StructuralVariantService structuralVariantService() { - return Mockito.mock(StructuralVariantService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(structuralVariantService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void fetchStructuralVariantsMolecularProfileId() throws Exception { List structuralVariant = createExampleStructuralVariant(); @@ -146,7 +136,7 @@ public void fetchStructuralVariantsMolecularProfileId() throws Exception { StructuralVariantFilter structuralVariantFilter = createStructuralVariantFilterMolecularProfileId(); - mockMvc.perform(MockMvcRequestBuilders.post("/structural-variant/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/structural-variant/fetch").with(csrf()) .accept(MediaType.parseMediaType("application/json;charset=UTF-8")) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(structuralVariantFilter))) @@ -204,6 +194,7 @@ public void fetchStructuralVariantsMolecularProfileId() throws Exception { } @Test + @WithMockUser public void fetchStructuralVariantsSampleMolecularIdentifier() throws Exception { List structuralVariant = createExampleStructuralVariant(); @@ -213,7 +204,7 @@ public void fetchStructuralVariantsSampleMolecularIdentifier() throws Exception StructuralVariantFilter structuralVariantFilter = createStructuralVariantFilterSampleMolecularIdentifier(); - mockMvc.perform(MockMvcRequestBuilders.post("/structural-variant/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/structural-variant/fetch").with(csrf()) .accept(MediaType.parseMediaType("application/json;charset=UTF-8")) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(structuralVariantFilter))) @@ -272,6 +263,7 @@ public void fetchStructuralVariantsSampleMolecularIdentifier() throws Exception } @Test + @WithMockUser public void fetchStructuralVariantsBothMolecularProfileIdAndSampleMolecularIdentifier() throws Exception { List structuralVariant = createExampleStructuralVariant(); @@ -281,7 +273,7 @@ public void fetchStructuralVariantsBothMolecularProfileIdAndSampleMolecularIdent StructuralVariantFilter structuralVariantFilter = createStructuralVariantFilterMolecularProfileIdAndSampleMolecularIdentifier(); - mockMvc.perform(MockMvcRequestBuilders.post("/structural-variant/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/structural-variant/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(structuralVariantFilter))) @@ -291,9 +283,10 @@ public void fetchStructuralVariantsBothMolecularProfileIdAndSampleMolecularIdent } @Test + @WithMockUser public void fetchStructuralVariantsWithBothEntrezIdsAndStructVariantIdsReturnsStatusOk() throws Exception { String structuralVariantFilter = createStructuralVariantFilterWithEntrezIdAndStructuralVariantJson(); - mockMvc.perform(MockMvcRequestBuilders.post("/structural-variant/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/structural-variant/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(structuralVariantFilter)) @@ -301,6 +294,7 @@ public void fetchStructuralVariantsWithBothEntrezIdsAndStructVariantIdsReturnsSt } @Test + @WithMockUser public void fetchStructuralVariantsWithStructuralVariantSpecialQueryValues() throws Exception { List structuralVariant = createExampleStructuralVariant(); @@ -311,7 +305,7 @@ public void fetchStructuralVariantsWithStructuralVariantSpecialQueryValues() thr )).thenReturn(structuralVariant); String structuralVariantFilterJson = createStructuralVariantFilterWithStructuralVariantWildcard(); - mockMvc.perform(MockMvcRequestBuilders.post("/structural-variant/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/structural-variant/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(structuralVariantFilterJson)) @@ -336,6 +330,7 @@ public void fetchStructuralVariantsWithStructuralVariantSpecialQueryValues() thr } @Test + @WithMockUser public void fetchStructuralVariantsWithStructuralVariantIdWithNoIdAndSpecialValueReturnsBadRequest() throws Exception { List structuralVariant = createExampleStructuralVariant(); @@ -345,7 +340,7 @@ public void fetchStructuralVariantsWithStructuralVariantIdWithNoIdAndSpecialValu )).thenReturn(structuralVariant); String structuralVariantFilterJson = createStructuralVariantFilterWithEmptyStructuralVariantId(); - mockMvc.perform(MockMvcRequestBuilders.post("/structural-variant/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/structural-variant/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(structuralVariantFilterJson)) diff --git a/web/src/test/java/org/cbioportal/web/StudyControllerTest.java b/src/test/java/org/cbioportal/web/StudyControllerTest.java similarity index 93% rename from web/src/test/java/org/cbioportal/web/StudyControllerTest.java rename to src/test/java/org/cbioportal/web/StudyControllerTest.java index b8dcf795ecf..1540bf6244c 100644 --- a/web/src/test/java/org/cbioportal/web/StudyControllerTest.java +++ b/src/test/java/org/cbioportal/web/StudyControllerTest.java @@ -1,22 +1,33 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + +import com.fasterxml.jackson.databind.ObjectMapper; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.TimeZone; import org.cbioportal.model.CancerStudy; import org.cbioportal.model.CancerStudyTags; import org.cbioportal.model.TypeOfCancer; import org.cbioportal.model.meta.BaseMeta; import org.cbioportal.service.StudyService; import org.cbioportal.service.exception.StudyNotFoundException; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.utils.security.AccessLevel; import org.cbioportal.web.parameter.HeaderKeyConstants; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.web.WebAppConfiguration; @@ -24,22 +35,12 @@ import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; -import com.fasterxml.jackson.databind.ObjectMapper; -import java.text.ParseException; -import java.text.SimpleDateFormat; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; -import java.util.TimeZone; import static org.mockito.ArgumentMatchers.eq; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {StudyController.class, TestConfig.class}) public class StudyControllerTest { private static final int TEST_CANCER_STUDY_ID_1 = 1; @@ -72,10 +73,7 @@ public class StudyControllerTest { private static final String TEST_PARENT = "test_parent"; private static final String TEST_TAGS_3 = "{\"Analyst\":{\"Name\":\"Frank\",\"Email\":\"frank@something.com\"},\"Load id\":43}"; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private StudyService studyService; @Autowired @@ -83,21 +81,11 @@ public class StudyControllerTest { private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public StudyService studyService() { - return Mockito.mock(StudyService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(studyService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getAllStudiesDefaultProjection() throws Exception { List cancerStudyList = createExampleStudies(); @@ -105,7 +93,7 @@ public void getAllStudiesDefaultProjection() throws Exception { Mockito.when(studyService.getAllStudies(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(cancerStudyList); - mockMvc.perform(MockMvcRequestBuilders.get("/studies") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -138,19 +126,21 @@ public void getAllStudiesDefaultProjection() throws Exception { } @Test + @WithMockUser public void getAllStudiesSetAccessLevelReadIsDefault() throws Exception { AccessLevel expectedAccessLevel = AccessLevel.READ; Mockito.when(studyService.getAllStudies(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), eq(expectedAccessLevel))).thenReturn(new ArrayList<>()); - mockMvc.perform(MockMvcRequestBuilders.get("/studies") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()); } @Test + @WithMockUser public void getAllStudiesSetAccessLevelListConditionally() throws Exception { ReflectionTestUtils.setField(studyController, "showUnauthorizedStudiesOnHomePage", true); @@ -159,7 +149,7 @@ public void getAllStudiesSetAccessLevelListConditionally() throws Exception { Mockito.when(studyService.getAllStudies(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), eq(expectedAccessLevel))).thenReturn(new ArrayList<>()); - mockMvc.perform(MockMvcRequestBuilders.get("/studies") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()); @@ -167,6 +157,7 @@ public void getAllStudiesSetAccessLevelListConditionally() throws Exception { } @Test + @WithMockUser public void getAllStudiesMetaProjection() throws Exception { BaseMeta baseMeta = new BaseMeta(); @@ -174,24 +165,26 @@ public void getAllStudiesMetaProjection() throws Exception { Mockito.when(studyService.getMetaStudies(Mockito.any())).thenReturn(baseMeta); - mockMvc.perform(MockMvcRequestBuilders.get("/studies") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies") .param("projection", "META")) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); } @Test + @WithMockUser public void getStudyNotFound() throws Exception { Mockito.when(studyService.getStudy(Mockito.anyString())).thenThrow(new StudyNotFoundException("test_study_id")); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isNotFound()) .andExpect(MockMvcResultMatchers.jsonPath("$.message").value("Study not found: test_study_id")); } @Test + @WithMockUser public void getStudy() throws Exception { SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); @@ -219,7 +212,7 @@ public void getStudy() throws Exception { Mockito.when(studyService.getStudy(Mockito.anyString())).thenReturn(cancerStudy); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -244,6 +237,7 @@ public void getStudy() throws Exception { } @Test + @WithMockUser public void fetchStudies() throws Exception { List cancerStudyList = createExampleStudies(); @@ -251,7 +245,7 @@ public void fetchStudies() throws Exception { Mockito.when(studyService.fetchStudies(Mockito.anyList(), Mockito.anyString())) .thenReturn(cancerStudyList); - mockMvc.perform(MockMvcRequestBuilders.post("/studies/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/studies/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(Arrays.asList(TEST_CANCER_STUDY_IDENTIFIER_1, @@ -286,6 +280,7 @@ public void fetchStudies() throws Exception { } @Test + @WithMockUser public void getTags() throws Exception { AccessLevel expectedAccessLevel = AccessLevel.READ; CancerStudyTags cancerStudyTags = new CancerStudyTags(); @@ -293,7 +288,7 @@ public void getTags() throws Exception { Mockito.when(studyService.getTags(Mockito.anyString(), Mockito.eq(expectedAccessLevel))).thenReturn(cancerStudyTags); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/tags") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/tags") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -301,11 +296,12 @@ public void getTags() throws Exception { } @Test + @WithMockUser public void getEmptyTags() throws Exception { AccessLevel expectedAccessLevel = AccessLevel.READ; Mockito.when(studyService.getTags(Mockito.anyString(), Mockito.eq(expectedAccessLevel))).thenReturn(null); - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/tags") + mockMvc.perform(MockMvcRequestBuilders.get("/api/studies/test_study_id/tags") .accept(MediaType.APPLICATION_JSON)) .andExpect(MockMvcResultMatchers.status().isOk()) .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) @@ -313,6 +309,7 @@ public void getEmptyTags() throws Exception { } @Test + @WithMockUser public void getAllTags() throws Exception { List cancerStudyTagsList = new ArrayList<>(); @@ -328,7 +325,7 @@ public void getAllTags() throws Exception { Mockito.when(studyService.getTagsForMultipleStudies(Mockito.anyList())).thenReturn(cancerStudyTagsList); - mockMvc.perform(MockMvcRequestBuilders.post("/studies/tags/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/studies/tags/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(Arrays.asList(TEST_CANCER_STUDY_IDENTIFIER_1, diff --git a/web/src/test/java/org/cbioportal/web/StudyViewControllerTest.java b/src/test/java/org/cbioportal/web/StudyViewControllerTest.java similarity index 84% rename from web/src/test/java/org/cbioportal/web/StudyViewControllerTest.java rename to src/test/java/org/cbioportal/web/StudyViewControllerTest.java index 3951e57b963..2dd141225a8 100644 --- a/web/src/test/java/org/cbioportal/web/StudyViewControllerTest.java +++ b/src/test/java/org/cbioportal/web/StudyViewControllerTest.java @@ -1,43 +1,98 @@ package org.cbioportal.web; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.anyList; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.anyString; +import static org.mockito.Mockito.when; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; -import org.cbioportal.model.*; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.List; +import org.cbioportal.model.AlterationCountByGene; +import org.cbioportal.model.AlterationFilter; +import org.cbioportal.model.ClinicalAttribute; +import org.cbioportal.model.ClinicalData; +import org.cbioportal.model.ClinicalDataCount; +import org.cbioportal.model.ClinicalDataCountItem; +import org.cbioportal.model.ClinicalEventTypeCount; +import org.cbioportal.model.CopyNumberCountByGene; +import org.cbioportal.model.GenericAssayDataCount; +import org.cbioportal.model.GenericAssayDataCountItem; +import org.cbioportal.model.GenomicDataCount; +import org.cbioportal.model.GenomicDataCountItem; +import org.cbioportal.model.Sample; +import org.cbioportal.model.StructuralVariantFilterQuery; +import org.cbioportal.model.StructuralVariantSpecialValue; +import org.cbioportal.model.StudyViewStructuralVariantFilter; import org.cbioportal.model.util.Select; import org.cbioportal.persistence.AlterationRepository; -import org.cbioportal.service.*; +import org.cbioportal.service.AlterationCountService; +import org.cbioportal.service.ClinicalAttributeService; +import org.cbioportal.service.ClinicalDataService; +import org.cbioportal.service.ClinicalEventService; +import org.cbioportal.service.CustomDataService; +import org.cbioportal.service.DiscreteCopyNumberService; +import org.cbioportal.service.GenePanelService; +import org.cbioportal.service.GeneService; +import org.cbioportal.service.MolecularProfileService; +import org.cbioportal.service.PatientService; +import org.cbioportal.service.SampleListService; +import org.cbioportal.service.SampleService; +import org.cbioportal.service.StudyViewService; +import org.cbioportal.service.TreatmentService; +import org.cbioportal.service.ViolinPlotService; +import org.cbioportal.service.util.ClinicalAttributeUtil; import org.cbioportal.service.util.MolecularProfileUtil; -import org.cbioportal.web.config.CustomObjectMapper; -import org.cbioportal.web.parameter.*; +import org.cbioportal.web.config.TestConfig; +import org.cbioportal.web.parameter.ClinicalDataBinCountFilter; +import org.cbioportal.web.parameter.ClinicalDataBinFilter; +import org.cbioportal.web.parameter.ClinicalDataCountFilter; +import org.cbioportal.web.parameter.ClinicalDataFilter; +import org.cbioportal.web.parameter.GenericAssayDataCountFilter; +import org.cbioportal.web.parameter.GenericAssayDataFilter; +import org.cbioportal.web.parameter.GenomicDataCountFilter; +import org.cbioportal.web.parameter.GenomicDataFilter; +import org.cbioportal.web.parameter.SampleIdentifier; +import org.cbioportal.web.parameter.StudyViewFilter; +import org.cbioportal.web.util.ClinicalDataBinUtil; +import org.cbioportal.web.util.ClinicalDataFetcher; +import org.cbioportal.web.util.DataBinHelper; +import org.cbioportal.web.util.DataBinner; +import org.cbioportal.web.util.DiscreteDataBinner; +import org.cbioportal.web.util.LinearDataBinner; +import org.cbioportal.web.util.LogScaleDataBinner; +import org.cbioportal.web.util.ScientificSmallDataBinner; import org.cbioportal.web.util.StudyViewFilterApplier; import org.junit.Before; import org.junit.Ignore; +import org.cbioportal.web.util.StudyViewFilterUtil; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; -import java.util.List; import static org.mockito.ArgumentMatchers.*; -import static org.mockito.Mockito.*; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +// TODO clean up dependencies for this test (use Mocks better) +// TODO Rework to accurately test StudyViewController +@ContextConfiguration(classes = {StudyViewController.class, StudyViewFilterUtil.class, MolecularProfileUtil.class, ClinicalDataBinUtil.class, DataBinner.class, + DiscreteDataBinner.class, LinearDataBinner.class, ScientificSmallDataBinner.class, LogScaleDataBinner.class, ClinicalDataBinUtil.class, + DataBinHelper.class, TestConfig.class}) public class StudyViewControllerTest { private static final String TEST_STUDY_ID = "test_study_id"; @@ -71,75 +126,71 @@ public class StudyViewControllerTest { private List filteredSampleIdentifiers = new ArrayList<>(); private List clinicalData = new ArrayList<>(); - @Autowired - private WebApplicationContext wac; + private ObjectMapper objectMapper = new ObjectMapper(); - @Autowired + @MockBean private StudyViewFilterApplier studyViewFilterApplier; - @Autowired + @MockBean private ClinicalDataService clinicalDataService; - @Autowired + @MockBean private DiscreteCopyNumberService discreteCopyNumberService; - @Autowired + @MockBean private SampleService sampleService; - @Autowired - private StudyViewService studyViewService; - @Autowired + @MockBean private GenePanelService genePanelService; - @Autowired + @MockBean private ClinicalAttributeService clinicalAttributeService; - @Autowired + @MockBean private PatientService patientService; - @Autowired - private ClinicalEventService clinicalEventService; - private ObjectMapper objectMapper = new CustomObjectMapper(); + @MockBean + public MolecularProfileUtil molecularProfileUtil; - private MockMvc mockMvc; + @MockBean + public TreatmentService treatmentService; - private AlterationFilter alterationFilter = new AlterationFilter(); + @MockBean + public AlterationCountService alterationCountService; - @Bean - public MolecularProfileUtil molecularProfileUtil() { - return new MolecularProfileUtil(); - } + @MockBean + public StudyViewService studyViewService; - @Bean - public StudyViewFilterApplier studyViewFilterApplier() { - return mock(StudyViewFilterApplier.class); - } - - @Bean - public TreatmentService treatmentService() { - return mock(TreatmentService.class); - } - - @Bean - public AlterationCountService alterationCountService() { - return mock(AlterationCountService.class); - } + @MockBean + public AlterationRepository alterationRepository; - @Bean - public StudyViewService studyViewService() { - return mock(StudyViewService.class); - } - - @Bean - public AlterationRepository alterationRepository() { - return mock(AlterationRepository.class); - } + @MockBean + private ClinicalDataFetcher clinicalDataFetcher; - @Bean - public ViolinPlotService violinPlotService() { - return mock(ViolinPlotService.class); - } + @MockBean + private ClinicalAttributeUtil clinicalAttributeUtil; + @MockBean + private SampleListService sampleListService; - private ArrayList filteredSamples = new ArrayList<>(); + @MockBean + private MolecularProfileService molecularProfileService; + + @MockBean + private ClinicalEventService clinicalEventService; + + @MockBean + private GeneService geneService; + + @MockBean + private ViolinPlotService violinPlotService; + + @MockBean + private ClinicalDataBinUtil clinicalDataBinUtil; + + @Autowired + private MockMvc mockMvc; + private AlterationFilter alterationFilter = new AlterationFilter(); + + private ArrayList filteredSamples = new ArrayList<>(); + @Before public void setUp() throws Exception { - SampleIdentifier sampleIdentifier = new SampleIdentifier(); sampleIdentifier.setSampleId(TEST_SAMPLE_ID_1); sampleIdentifier.setStudyId(TEST_STUDY_ID); @@ -163,7 +214,7 @@ public void setUp() throws Exception { clinicalData1.setSampleId(TEST_SAMPLE_ID_1); clinicalData1.setPatientId(TEST_PATIENT_ID_1); clinicalData.add(clinicalData1); - + ClinicalData clinicalData2 = new ClinicalData(); clinicalData2.setAttrId(TEST_ATTRIBUTE_ID); clinicalData2.setAttrValue(TEST_CLINICAL_DATA_VALUE_2); @@ -171,7 +222,7 @@ public void setUp() throws Exception { clinicalData2.setSampleId(TEST_SAMPLE_ID_2); clinicalData2.setPatientId(TEST_PATIENT_ID_2); clinicalData.add(clinicalData2); - + ClinicalData clinicalData3 = new ClinicalData(); clinicalData3.setAttrId(TEST_ATTRIBUTE_ID); clinicalData3.setAttrValue(TEST_CLINICAL_DATA_VALUE_3); @@ -179,21 +230,17 @@ public void setUp() throws Exception { clinicalData3.setSampleId(TEST_SAMPLE_ID_3); clinicalData3.setPatientId(TEST_PATIENT_ID_3); clinicalData.add(clinicalData3); - - reset(studyViewFilterApplier); - reset(clinicalDataService); - reset(discreteCopyNumberService); - reset(sampleService); - reset(genePanelService); - reset(sampleService); - reset(clinicalAttributeService); - reset(patientService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); } @Test + @WithMockUser public void fetchClinicalDataCounts() throws Exception { + List filteredSampleIdentifiers = new ArrayList<>(); + SampleIdentifier sampleIdentifier = new SampleIdentifier(); + sampleIdentifier.setSampleId(TEST_SAMPLE_ID_1); + sampleIdentifier.setStudyId(TEST_STUDY_ID); + filteredSampleIdentifiers.add(sampleIdentifier); when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); List clinicalDataCountItems = new ArrayList<>(); @@ -213,7 +260,7 @@ public void fetchClinicalDataCounts() throws Exception { clinicalDataCountItem.setCounts(clinicalDataCounts); clinicalDataCountItems.add(clinicalDataCountItem); - when(clinicalDataService.fetchClinicalDataCounts(anyList(), anyList(), + when(clinicalDataService.fetchClinicalDataCounts(anyList(), anyList(), anyList())).thenReturn(clinicalDataCountItems); ClinicalDataCountFilter clinicalDataCountFilter = new ClinicalDataCountFilter(); @@ -224,7 +271,7 @@ public void fetchClinicalDataCounts() throws Exception { studyViewFilter.setStudyIds(Arrays.asList(TEST_STUDY_ID)); clinicalDataCountFilter.setStudyViewFilter(studyViewFilter); - mockMvc.perform(MockMvcRequestBuilders.post("/clinical-data-counts/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/clinical-data-counts/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(clinicalDataCountFilter))) @@ -240,11 +287,42 @@ public void fetchClinicalDataCounts() throws Exception { } @Test + @WithMockUser + @Ignore + //TODO: Update Test currently out of scope of StudyViewController (need to make a new unit test to test ClinicalDataBinUtil) public void fetchClinicalDataBinCounts() throws Exception { + List filteredSampleIdentifiers = new ArrayList<>(); + SampleIdentifier sampleIdentifier = new SampleIdentifier(); + sampleIdentifier.setSampleId(TEST_SAMPLE_ID_1); + sampleIdentifier.setStudyId(TEST_STUDY_ID); + filteredSampleIdentifiers.add(sampleIdentifier); when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); + + List clinicalData = new ArrayList<>(); + ClinicalData clinicalData1 = new ClinicalData(); + clinicalData1.setAttrId(TEST_ATTRIBUTE_ID); + clinicalData1.setAttrValue(TEST_CLINICAL_DATA_VALUE_1); + clinicalData1.setStudyId(TEST_STUDY_ID); + clinicalData1.setSampleId(TEST_SAMPLE_ID_1); + clinicalData1.setPatientId(TEST_PATIENT_ID_1); + clinicalData.add(clinicalData1); + ClinicalData clinicalData2 = new ClinicalData(); + clinicalData2.setAttrId(TEST_ATTRIBUTE_ID); + clinicalData2.setAttrValue(TEST_CLINICAL_DATA_VALUE_2); + clinicalData2.setStudyId(TEST_STUDY_ID); + clinicalData2.setSampleId(TEST_SAMPLE_ID_2); + clinicalData2.setPatientId(TEST_PATIENT_ID_2); + clinicalData.add(clinicalData2); + ClinicalData clinicalData3 = new ClinicalData(); + clinicalData3.setAttrId(TEST_ATTRIBUTE_ID); + clinicalData3.setAttrValue(TEST_CLINICAL_DATA_VALUE_3); + clinicalData3.setStudyId(TEST_STUDY_ID); + clinicalData3.setSampleId(TEST_SAMPLE_ID_3); + clinicalData.add(clinicalData3); + when(clinicalDataService.fetchClinicalData(anyList(), anyList(), - anyList(), anyString(), anyString())).thenReturn(clinicalData); + anyList(), any(String.class), any(String.class))).thenReturn(clinicalData); ClinicalAttribute clinicalAttribute1 =new ClinicalAttribute(); clinicalAttribute1.setAttrId(TEST_ATTRIBUTE_ID); @@ -264,8 +342,10 @@ public void fetchClinicalDataBinCounts() throws Exception StudyViewFilter studyViewFilter = new StudyViewFilter(); studyViewFilter.setStudyIds(Collections.singletonList(TEST_STUDY_ID)); clinicalDataBinCountFilter.setStudyViewFilter(studyViewFilter); + + when(clinicalDataBinUtil.removeSelfFromFilter(any())).thenReturn(studyViewFilter); - mockMvc.perform(MockMvcRequestBuilders.post("/clinical-data-bin-counts/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/clinical-data-bin-counts/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(clinicalDataBinCountFilter))) @@ -289,8 +369,14 @@ public void fetchClinicalDataBinCounts() throws Exception } @Test + @WithMockUser public void fetchMutatedGenes() throws Exception { + List filteredSampleIdentifiers = new ArrayList<>(); + SampleIdentifier sampleIdentifier = new SampleIdentifier(); + sampleIdentifier.setSampleId(TEST_SAMPLE_ID_1); + sampleIdentifier.setStudyId(TEST_STUDY_ID); + filteredSampleIdentifiers.add(sampleIdentifier); when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); List mutationCounts = new ArrayList<>(); @@ -316,7 +402,7 @@ public void fetchMutatedGenes() throws Exception { any(AlterationFilter.class))) .thenReturn(mutationCounts); - mockMvc.perform(MockMvcRequestBuilders.post("/mutated-genes/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/mutated-genes/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) @@ -333,8 +419,14 @@ public void fetchMutatedGenes() throws Exception { } @Test - public void fetchStructuralVariantGenes() throws Exception { + @WithMockUser + public void fetchFusionGenes() throws Exception { + List filteredSampleIdentifiers = new ArrayList<>(); + SampleIdentifier sampleIdentifier = new SampleIdentifier(); + sampleIdentifier.setSampleId(TEST_SAMPLE_ID_1); + sampleIdentifier.setStudyId(TEST_STUDY_ID); + filteredSampleIdentifiers.add(sampleIdentifier); when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); List structuralVariantCounts = new ArrayList<>(); @@ -360,7 +452,7 @@ public void fetchStructuralVariantGenes() throws Exception { StudyViewFilter studyViewFilter = new StudyViewFilter(); studyViewFilter.setStudyIds(Arrays.asList(TEST_STUDY_ID)); - mockMvc.perform(MockMvcRequestBuilders.post("/structuralvariant-genes/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/structuralvariant-genes/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) @@ -377,8 +469,14 @@ public void fetchStructuralVariantGenes() throws Exception { } @Test + @WithMockUser public void fetchCNAGenes() throws Exception { + List filteredSampleIdentifiers = new ArrayList<>(); + SampleIdentifier sampleIdentifier = new SampleIdentifier(); + sampleIdentifier.setSampleId(TEST_SAMPLE_ID_1); + sampleIdentifier.setStudyId(TEST_STUDY_ID); + filteredSampleIdentifiers.add(sampleIdentifier); when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); List cnaCounts = new ArrayList<>(); @@ -406,7 +504,7 @@ public void fetchCNAGenes() throws Exception { StudyViewFilter studyViewFilter = new StudyViewFilter(); studyViewFilter.setStudyIds(Arrays.asList(TEST_STUDY_ID)); - mockMvc.perform(MockMvcRequestBuilders.post("/cna-genes/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/cna-genes/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) @@ -427,8 +525,15 @@ public void fetchCNAGenes() throws Exception { } @Test + @WithMockUser public void fetchSampleIds() throws Exception { + List filteredSampleIdentifiers = new ArrayList<>(); + SampleIdentifier sampleIdentifier = new SampleIdentifier(); + sampleIdentifier.setSampleId(TEST_SAMPLE_ID_1); + sampleIdentifier.setStudyId(TEST_STUDY_ID); + filteredSampleIdentifiers.add(sampleIdentifier); + when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); when(studyViewFilterApplier.apply(any(), eq(false))).thenReturn(filteredSampleIdentifiers); @@ -450,7 +555,7 @@ public void fetchSampleIds() throws Exception { StudyViewFilter studyViewFilter = new StudyViewFilter(); studyViewFilter.setStudyIds(Arrays.asList(TEST_STUDY_ID)); - mockMvc.perform(MockMvcRequestBuilders.post("/filtered-samples/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/filtered-samples/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) @@ -465,6 +570,7 @@ public void fetchSampleIds() throws Exception { } @Test + @WithMockUser public void fetchSampleCounts() throws Exception { SampleIdentifier sampleIdentifier2 = new SampleIdentifier(); @@ -475,7 +581,6 @@ public void fetchSampleCounts() throws Exception { sampleIdentifier3.setSampleId(TEST_SAMPLE_ID_3); sampleIdentifier3.setStudyId(TEST_STUDY_ID); filteredSampleIdentifiers.add(sampleIdentifier3); - when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); StudyViewFilter studyViewFilter = new StudyViewFilter(); @@ -497,7 +602,7 @@ public void fetchSampleCounts() throws Exception { Arrays.asList(TEST_SAMPLE_ID_1, TEST_SAMPLE_ID_2, TEST_SAMPLE_ID_3))) .thenReturn(genomicDataCounts); - mockMvc.perform(MockMvcRequestBuilders.post("/molecular-profile-sample-counts/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/molecular-profile-sample-counts/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) @@ -513,6 +618,7 @@ public void fetchSampleCounts() throws Exception { @Test + @WithMockUser public void fetchGenomicDataCounts() throws Exception { when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); @@ -573,7 +679,7 @@ public void fetchGenomicDataCounts() throws Exception { studyViewFilter.setStudyIds(Arrays.asList(TEST_STUDY_ID)); genomicDataCountFilter.setStudyViewFilter(studyViewFilter); - mockMvc.perform(MockMvcRequestBuilders.post("/genomic-data-counts/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/genomic-data-counts/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(genomicDataCountFilter))) @@ -599,8 +705,14 @@ public void fetchGenomicDataCounts() throws Exception { @Ignore("Skip StudyViewControllerTest.fetchClinicalDataDensityPlot due to assertion errors") @Test + @WithMockUser public void fetchClinicalDataDensityPlot() throws Exception { + List filteredSampleIdentifiers = new ArrayList<>(); + SampleIdentifier sampleIdentifier = new SampleIdentifier(); + sampleIdentifier.setSampleId(TEST_SAMPLE_ID_1); + sampleIdentifier.setStudyId(TEST_STUDY_ID); + filteredSampleIdentifiers.add(sampleIdentifier); when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); ClinicalAttribute clinicalAttribute1 =new ClinicalAttribute(); @@ -653,13 +765,13 @@ public void fetchClinicalDataDensityPlot() throws Exception { clinicalData6.setSampleId(TEST_SAMPLE_ID_3); clinicalData.add(clinicalData6); - when(clinicalDataService.fetchClinicalData(anyList(), anyList(), + when(clinicalDataService.fetchClinicalData(anyList(), anyList(), anyList(), anyString(), anyString())).thenReturn(clinicalData); StudyViewFilter studyViewFilter = new StudyViewFilter(); studyViewFilter.setStudyIds(Arrays.asList(TEST_STUDY_ID)); - mockMvc.perform(MockMvcRequestBuilders.post("/clinical-data-density-plot/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/clinical-data-density-plot/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter)) @@ -826,8 +938,14 @@ public void fetchClinicalDataDensityPlot() throws Exception { } @Test + @WithMockUser public void fetchGenericAssayDataCounts() throws Exception { + List filteredSampleIdentifiers = new ArrayList<>(); + SampleIdentifier sampleIdentifier = new SampleIdentifier(); + sampleIdentifier.setSampleId(TEST_SAMPLE_ID_1); + sampleIdentifier.setStudyId(TEST_STUDY_ID); + filteredSampleIdentifiers.add(sampleIdentifier); when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); List genericAssayDataCountItems = new ArrayList<>(); @@ -845,8 +963,8 @@ public void fetchGenericAssayDataCounts() throws Exception { genericAssayDataCountItem.setCounts(genericAssayDataCounts); genericAssayDataCountItems.add(genericAssayDataCountItem); - when(studyViewService.fetchGenericAssayDataCounts(anyList(), anyList(), anyList(), - anyList())).thenReturn(genericAssayDataCountItems); + when(studyViewService.fetchGenericAssayDataCounts(anyList(), anyList(), + anyList(), anyList())).thenReturn(genericAssayDataCountItems); GenericAssayDataCountFilter genericAssayDataCountFilter = new GenericAssayDataCountFilter(); GenericAssayDataFilter genericAssayDataFilter = new GenericAssayDataFilter(); @@ -856,7 +974,7 @@ public void fetchGenericAssayDataCounts() throws Exception { studyViewFilter.setStudyIds(Arrays.asList(TEST_STUDY_ID)); genericAssayDataCountFilter.setStudyViewFilter(studyViewFilter); - mockMvc.perform(MockMvcRequestBuilders.post("/generic-assay-data-counts/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/generic-assay-data-counts/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(genericAssayDataCountFilter))) @@ -870,6 +988,7 @@ public void fetchGenericAssayDataCounts() throws Exception { } @Test + @WithMockUser public void fetchClinicalDataClinicalTable() throws Exception { // For this sake of this test the sample clinical data and patient clinical data are identical. when(clinicalDataService.fetchSampleClinicalTable(anyList(), anyList(), @@ -882,7 +1001,7 @@ public void fetchClinicalDataClinicalTable() throws Exception { when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); - mockMvc.perform(MockMvcRequestBuilders.post("/clinical-data-table/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/clinical-data-table/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) @@ -904,6 +1023,7 @@ public void fetchClinicalDataClinicalTable() throws Exception { } @Test + @WithMockUser public void fetchClinicalEventTypeCounts() throws Exception { List testEventTypeCounts = Arrays.asList(new ClinicalEventTypeCount(TEST_CLINICAL_EVENT_TYPE, TEST_CLINICAL_EVENT_TYPE_COUNT)); @@ -915,7 +1035,7 @@ public void fetchClinicalEventTypeCounts() throws Exception StudyViewFilter studyViewFilter = new StudyViewFilter(); studyViewFilter.setStudyIds(Collections.singletonList(TEST_STUDY_ID)); - mockMvc.perform(MockMvcRequestBuilders.post("/clinical-event-type-counts/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/clinical-event-type-counts/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) @@ -926,6 +1046,7 @@ public void fetchClinicalEventTypeCounts() throws Exception } @Test + @WithMockUser public void validateStructVarFilter() throws Exception { when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); @@ -960,13 +1081,14 @@ public void validateStructVarFilter() throws Exception { structVarFilterQuery.getGene1Query().setSpecialValue(StructuralVariantSpecialValue.ANY_GENE); structVarFilterQuery.getGene2Query().setSpecialValue(StructuralVariantSpecialValue.ANY_GENE); - mockMvc.perform(MockMvcRequestBuilders.post("/filtered-samples/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/filtered-samples/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) .andExpect(MockMvcResultMatchers.status().isBadRequest()); } @Test + @WithMockUser public void validateStructVarFilterBothAnyGene() throws Exception { when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); @@ -987,7 +1109,7 @@ public void validateStructVarFilterBothAnyGene() throws Exception { structVarFilterQuery.getGene1Query().setSpecialValue(StructuralVariantSpecialValue.ANY_GENE); structVarFilterQuery.getGene2Query().setSpecialValue(StructuralVariantSpecialValue.ANY_GENE); - mockMvc.perform(MockMvcRequestBuilders.post("/filtered-samples/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/filtered-samples/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) @@ -995,6 +1117,7 @@ public void validateStructVarFilterBothAnyGene() throws Exception { } @Test + @WithMockUser public void validateStructVarFilterBothNoGene() throws Exception { when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); @@ -1015,7 +1138,7 @@ public void validateStructVarFilterBothNoGene() throws Exception { structVarFilterQuery.getGene1Query().setSpecialValue(StructuralVariantSpecialValue.NO_GENE); structVarFilterQuery.getGene2Query().setSpecialValue(StructuralVariantSpecialValue.NO_GENE); - mockMvc.perform(MockMvcRequestBuilders.post("/filtered-samples/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/filtered-samples/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) @@ -1023,6 +1146,7 @@ public void validateStructVarFilterBothNoGene() throws Exception { } @Test + @WithMockUser public void validateStructVarFilterBothNoGeneId() throws Exception { when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); @@ -1041,7 +1165,7 @@ public void validateStructVarFilterBothNoGeneId() throws Exception { structuralVariantFilter.setStructVarQueries(Arrays.asList(Arrays.asList(structVarFilterQuery))); studyViewFilter.setStructuralVariantFilters(Arrays.asList(structuralVariantFilter)); - mockMvc.perform(MockMvcRequestBuilders.post("/filtered-samples/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/filtered-samples/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) @@ -1049,6 +1173,7 @@ public void validateStructVarFilterBothNoGeneId() throws Exception { } @Test + @WithMockUser public void validateStructVarFilterBothGeneIdAndSpecialValueNull() throws Exception { when(studyViewFilterApplier.apply(any())).thenReturn(filteredSampleIdentifiers); @@ -1068,7 +1193,7 @@ public void validateStructVarFilterBothGeneIdAndSpecialValueNull() throws Except structuralVariantFilter.setStructVarQueries(Arrays.asList(Arrays.asList(structVarFilterQuery))); studyViewFilter.setStructuralVariantFilters(Arrays.asList(structuralVariantFilter)); - mockMvc.perform(MockMvcRequestBuilders.post("/filtered-samples/fetch") + mockMvc.perform(MockMvcRequestBuilders.post("/api/filtered-samples/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) diff --git a/web/src/test/java/org/cbioportal/web/TreatmentControllerTest.java b/src/test/java/org/cbioportal/web/TreatmentControllerTest.java similarity index 87% rename from web/src/test/java/org/cbioportal/web/TreatmentControllerTest.java rename to src/test/java/org/cbioportal/web/TreatmentControllerTest.java index ac437d90c7e..85ba345b6fb 100644 --- a/web/src/test/java/org/cbioportal/web/TreatmentControllerTest.java +++ b/src/test/java/org/cbioportal/web/TreatmentControllerTest.java @@ -1,62 +1,57 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + +import com.fasterxml.jackson.databind.ObjectMapper; import java.util.Arrays; import java.util.List; - import org.cbioportal.model.PatientTreatmentRow; import org.cbioportal.model.SampleTreatmentRow; import org.cbioportal.model.TemporalRelation; import org.cbioportal.service.TreatmentService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.SampleIdentifier; import org.cbioportal.web.parameter.StudyViewFilter; import org.cbioportal.web.util.StudyViewFilterApplier; -import org.junit.Before; +import org.cbioportal.web.util.StudyViewFilterUtil; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import com.fasterxml.jackson.databind.ObjectMapper; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {TreatmentController.class, TestConfig.class}) public class TreatmentControllerTest { + private final List sampleIdentifiers; private final List studies; private final StudyViewFilter studyViewFilter; private ObjectMapper objectMapper = new ObjectMapper(); - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private StudyViewFilterApplier studyViewFilterApplier; + + @MockBean + private StudyViewFilterUtil studyViewFilterUtil; - @Autowired + @MockBean private TreatmentService treatmentService; + @Autowired private MockMvc mockMvc; - - @Before - public void setUp() throws Exception { - Mockito.reset(treatmentService); - Mockito.reset(studyViewFilterApplier); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - + public TreatmentControllerTest() { SampleIdentifier sampleIdentifier = new SampleIdentifier(); String STUDY_A = "study_0"; @@ -78,6 +73,7 @@ public TreatmentControllerTest() { } @Test + @WithMockUser public void getAllPatientTreatments() throws Exception { Mockito .when(studyViewFilterApplier.apply(Mockito.any())) @@ -92,7 +88,7 @@ public void getAllPatientTreatments() throws Exception { .thenReturn(treatmentRows); mockMvc.perform(MockMvcRequestBuilders.post( - "/treatments/patient") + "/api/treatments/patient").with(csrf()) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) .andExpect(MockMvcResultMatchers.status().isOk()) @@ -103,6 +99,7 @@ public void getAllPatientTreatments() throws Exception { } @Test + @WithMockUser public void getAllSampleTreatments() throws Exception { Mockito .when(studyViewFilterApplier.apply(Mockito.any())) @@ -119,7 +116,7 @@ public void getAllSampleTreatments() throws Exception { .thenReturn(sampleTreatmentRows); mockMvc.perform(MockMvcRequestBuilders.post( - "/treatments/sample") + "/api/treatments/sample").with(csrf()) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studyViewFilter))) .andExpect(MockMvcResultMatchers.status().isOk()) @@ -138,6 +135,7 @@ public void getAllSampleTreatments() throws Exception { } @Test + @WithMockUser public void getContainsTreatmentData() throws Exception { List studies = Arrays.asList("study_0", "study_1"); Mockito @@ -148,7 +146,7 @@ public void getContainsTreatmentData() throws Exception { .when(treatmentService.containsTreatmentData(Mockito.anyList(), Mockito.any())) .thenReturn(true); - mockMvc.perform(MockMvcRequestBuilders.post("/treatments/display-patient") + mockMvc.perform(MockMvcRequestBuilders.post("/api/treatments/display-patient").with(csrf()) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(studies))) .andExpect(MockMvcResultMatchers.status().isOk()) diff --git a/web/src/test/java/org/cbioportal/web/VariantCountControllerTest.java b/src/test/java/org/cbioportal/web/VariantCountControllerTest.java similarity index 87% rename from web/src/test/java/org/cbioportal/web/VariantCountControllerTest.java rename to src/test/java/org/cbioportal/web/VariantCountControllerTest.java index 54da683a08a..34a0f8753f2 100644 --- a/web/src/test/java/org/cbioportal/web/VariantCountControllerTest.java +++ b/src/test/java/org/cbioportal/web/VariantCountControllerTest.java @@ -1,34 +1,33 @@ package org.cbioportal.web; +import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; + + import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.ArrayList; +import java.util.List; import org.cbioportal.model.VariantCount; import org.cbioportal.service.VariantCountService; +import org.cbioportal.web.config.TestConfig; import org.cbioportal.web.parameter.VariantCountIdentifier; import org.hamcrest.Matchers; -import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; +import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.List; @RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration +@WebMvcTest +@ContextConfiguration(classes = {VariantCountController.class, TestConfig.class}) public class VariantCountControllerTest { private static final String TEST_MOLECULAR_PROFILE_STABLE_ID = "test_molecular_profile_stable_id"; @@ -43,29 +42,16 @@ public class VariantCountControllerTest { private static final int TEST_NUMBER_OF_SAMPLES_WITH_MUTATION_IN_GENE_2 = 8; private static final int TEST_NUMBER_OF_SAMPLES_WITH_KEYWORD_2 = 2; - @Autowired - private WebApplicationContext wac; - - @Autowired + @MockBean private VariantCountService variantCountService; private ObjectMapper objectMapper = new ObjectMapper(); + @Autowired private MockMvc mockMvc; - @Bean - public VariantCountService variantCountService() { - return Mockito.mock(VariantCountService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(variantCountService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - @Test + @WithMockUser public void getVariantCounts() throws Exception { List variantCountList = new ArrayList<>(); @@ -100,7 +86,7 @@ public void getVariantCounts() throws Exception { variantCountIdentifiers.add(variantCountIdentifier2); mockMvc.perform(MockMvcRequestBuilders - .post("/molecular-profiles/test_molecular_profile_id/variant-counts/fetch") + .post("/api/molecular-profiles/test_molecular_profile_id/variant-counts/fetch").with(csrf()) .accept(MediaType.APPLICATION_JSON) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(variantCountIdentifiers))) diff --git a/web/src/test/java/org/cbioportal/web/config/CacheMapUtilConfig.java b/src/test/java/org/cbioportal/web/config/CacheMapUtilConfig.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/config/CacheMapUtilConfig.java rename to src/test/java/org/cbioportal/web/config/CacheMapUtilConfig.java diff --git a/web/src/test/java/org/cbioportal/web/config/DataAccessTokenControllerConfig.java b/src/test/java/org/cbioportal/web/config/DataAccessTokenControllerConfig.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/config/DataAccessTokenControllerConfig.java rename to src/test/java/org/cbioportal/web/config/DataAccessTokenControllerConfig.java diff --git a/src/test/java/org/cbioportal/web/config/DataAccessTokenControllerTestConfig.java b/src/test/java/org/cbioportal/web/config/DataAccessTokenControllerTestConfig.java new file mode 100644 index 00000000000..484ab71b742 --- /dev/null +++ b/src/test/java/org/cbioportal/web/config/DataAccessTokenControllerTestConfig.java @@ -0,0 +1,70 @@ +package org.cbioportal.web.config; + +import org.springframework.boot.test.context.TestConfiguration; +import org.springframework.context.annotation.Bean; +import org.springframework.security.authentication.AuthenticationManager; +import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer; +import org.springframework.security.core.userdetails.User; +import org.springframework.security.core.userdetails.UserDetails; +import org.springframework.security.crypto.password.NoOpPasswordEncoder; +import org.springframework.security.provisioning.InMemoryUserDetailsManager; +import org.springframework.security.web.SecurityFilterChain; +import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter; + +@TestConfiguration +public class DataAccessTokenControllerTestConfig { + + @Bean + protected SecurityFilterChain filterChain(HttpSecurity http) throws Exception { + http.authorizeHttpRequests((authz) -> authz + .anyRequest().authenticated()) + .apply(new TestFilterDsl()) + .and() + .httpBasic() + .authenticationEntryPoint(restAuthenticationEntryPoint()); + return http.build(); + } + + @Bean + public InMemoryUserDetailsManager userDetailsService() { + UserDetails user = User + .withUsername("MOCK_USER") + .password(noopPasswordEncoder().encode("MOCK_PASSWORD")) + .roles("PLACEHOLDER_ROLE") + .build(); + return new InMemoryUserDetailsManager(user); + } + + @Bean + public static NoOpPasswordEncoder noopPasswordEncoder() { + return (NoOpPasswordEncoder) NoOpPasswordEncoder.getInstance(); + } + + private class TestFilterDsl extends AbstractHttpConfigurer { + @Override + public void configure(HttpSecurity http) { + AuthenticationManager authenticationManager = http.getSharedObject(AuthenticationManager.class); + UsernamePasswordAuthenticationFilter filter = + new UsernamePasswordAuthenticationFilter(); + filter.setPostOnly(false); + filter.setFilterProcessesUrl("/j_spring_security_check"); + filter.setUsernameParameter("j_username"); + filter.setPasswordParameter("j_password"); + filter.setAuthenticationManager(authenticationManager); + filter.setAuthenticationSuccessHandler(tokenAuthenticationSuccessHandler()); + http.addFilter(filter); + } + } + + @Bean + public RestAuthenticationEntryPoint restAuthenticationEntryPoint() { + return new RestAuthenticationEntryPoint(); + } + + @Bean + public TokenAuthenticationSuccessHandler tokenAuthenticationSuccessHandler() { + return new TokenAuthenticationSuccessHandler(); + } + +} diff --git a/src/test/java/org/cbioportal/web/config/RestAuthenticationEntryPoint.java b/src/test/java/org/cbioportal/web/config/RestAuthenticationEntryPoint.java new file mode 100644 index 00000000000..ee90a9b3549 --- /dev/null +++ b/src/test/java/org/cbioportal/web/config/RestAuthenticationEntryPoint.java @@ -0,0 +1,54 @@ +/* + * Copyright (c) 2018 Memorial Sloan-Kettering Cancer Center. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS + * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder + * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no + * obligations to provide maintenance, support, updates, enhancements or + * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be + * liable to any party for direct, indirect, special, incidental or + * consequential damages, including lost profits, arising out of the use of this + * software and its documentation, even if Memorial Sloan-Kettering Cancer + * Center has been advised of the possibility of such damage. + */ + +/* + * This file is part of cBioPortal. + * + * cBioPortal is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + +package org.cbioportal.web.config; + +import java.io.IOException; + + +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import org.springframework.security.core.AuthenticationException; +import org.springframework.security.web.AuthenticationEntryPoint; +import org.springframework.stereotype.Component; + +@Component +public class RestAuthenticationEntryPoint implements AuthenticationEntryPoint { + + @Override + public void commence(HttpServletRequest request, HttpServletResponse response, + AuthenticationException authException ) throws IOException{ + response.sendError( HttpServletResponse.SC_UNAUTHORIZED, "Unauthorized" ); + } + + +} diff --git a/src/test/java/org/cbioportal/web/config/TestConfig.java b/src/test/java/org/cbioportal/web/config/TestConfig.java new file mode 100644 index 00000000000..dd4fa4b3a21 --- /dev/null +++ b/src/test/java/org/cbioportal/web/config/TestConfig.java @@ -0,0 +1,55 @@ +package org.cbioportal.web.config; + +import org.cbioportal.persistence.cachemaputil.CacheMapUtil; +import org.cbioportal.web.error.GlobalExceptionHandler; +import org.cbioportal.web.util.InvolvedCancerStudyExtractorInterceptor; +import org.cbioportal.web.util.UniqueKeyExtractor; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.TestConfiguration; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.context.annotation.Bean; +import org.springframework.stereotype.Component; +import org.springframework.web.servlet.HandlerInterceptor; +import org.springframework.web.servlet.config.annotation.InterceptorRegistry; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; + +@TestConfiguration +public class TestConfig { + + // -- configure preauthorize security + @MockBean(name = "staticRefCacheMapUtil") + private CacheMapUtil cacheMapUtil; + + @MockBean + private UniqueKeyExtractor uniqueKeyExtractor; + + @Bean + public InvolvedCancerStudyExtractorInterceptor involvedCancerStudyExtractorInterceptor() { + return new InvolvedCancerStudyExtractorInterceptor(); + } + + @Component + public class InterceptorAppConfig implements WebMvcConfigurer { + + @Autowired + private HandlerInterceptor involvedCancerStudyExtractorInterceptor; + + @Override + public void addInterceptors(InterceptorRegistry registry) { + registry.addInterceptor(involvedCancerStudyExtractorInterceptor) + .addPathPatterns("/api/**"); + } + } + + // -- register mixins + @Bean + public CustomObjectMapper customObjectMapper() { + return new CustomObjectMapper(); + } + + // -- handle exceptions + @Bean + public GlobalExceptionHandler globalExceptionHandler() { + return new GlobalExceptionHandler(); + } +} diff --git a/src/test/java/org/cbioportal/web/config/TokenAuthenticationSuccessHandler.java b/src/test/java/org/cbioportal/web/config/TokenAuthenticationSuccessHandler.java new file mode 100644 index 00000000000..4fdadbc0c13 --- /dev/null +++ b/src/test/java/org/cbioportal/web/config/TokenAuthenticationSuccessHandler.java @@ -0,0 +1,53 @@ +/* + * Copyright (c) 2018 Memorial Sloan-Kettering Cancer Center. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS + * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder + * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no + * obligations to provide maintenance, support, updates, enhancements or + * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be + * liable to any party for direct, indirect, special, incidental or + * consequential damages, including lost profits, arising out of the use of this + * software and its documentation, even if Memorial Sloan-Kettering Cancer + * Center has been advised of the possibility of such damage. + */ + +/* + * This file is part of cBioPortal. + * + * cBioPortal is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + +package org.cbioportal.web.config; + + +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import org.springframework.security.core.Authentication; +import org.springframework.security.web.authentication.AuthenticationSuccessHandler; + +import java.io.IOException; + +public class TokenAuthenticationSuccessHandler implements AuthenticationSuccessHandler { + + @Override + public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws IOException { + response.setStatus(HttpServletResponse.SC_OK); + response.getWriter().write("Authentication successful"); + response.getWriter().flush(); + // We do not need to do anything extra on REST authentication success, because there is no page to redirect to + } + +} diff --git a/web/src/test/java/org/cbioportal/web/util/AlterationFilterMockitoArgumentMatcher.java b/src/test/java/org/cbioportal/web/util/AlterationFilterMockitoArgumentMatcher.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/util/AlterationFilterMockitoArgumentMatcher.java rename to src/test/java/org/cbioportal/web/util/AlterationFilterMockitoArgumentMatcher.java diff --git a/web/src/test/java/org/cbioportal/web/util/ClinicalDataBinUtilTest.java b/src/test/java/org/cbioportal/web/util/ClinicalDataBinUtilTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/util/ClinicalDataBinUtilTest.java rename to src/test/java/org/cbioportal/web/util/ClinicalDataBinUtilTest.java diff --git a/web/src/test/java/org/cbioportal/web/util/ClinicalDataEnrichmentUtilTest.java b/src/test/java/org/cbioportal/web/util/ClinicalDataEnrichmentUtilTest.java similarity index 99% rename from web/src/test/java/org/cbioportal/web/util/ClinicalDataEnrichmentUtilTest.java rename to src/test/java/org/cbioportal/web/util/ClinicalDataEnrichmentUtilTest.java index 6f051096c61..cc4cc5cf5d7 100644 --- a/web/src/test/java/org/cbioportal/web/util/ClinicalDataEnrichmentUtilTest.java +++ b/src/test/java/org/cbioportal/web/util/ClinicalDataEnrichmentUtilTest.java @@ -19,7 +19,6 @@ import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.Mock; -import org.mockito.Mockito; import org.mockito.Spy; import org.mockito.junit.MockitoJUnitRunner; diff --git a/web/src/test/java/org/cbioportal/web/util/DataBinHelperTest.java b/src/test/java/org/cbioportal/web/util/DataBinHelperTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/util/DataBinHelperTest.java rename to src/test/java/org/cbioportal/web/util/DataBinHelperTest.java diff --git a/web/src/test/java/org/cbioportal/web/util/DataBinnerMocker.java b/src/test/java/org/cbioportal/web/util/DataBinnerMocker.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/util/DataBinnerMocker.java rename to src/test/java/org/cbioportal/web/util/DataBinnerMocker.java diff --git a/web/src/test/java/org/cbioportal/web/util/DataBinnerTest.java b/src/test/java/org/cbioportal/web/util/DataBinnerTest.java similarity index 98% rename from web/src/test/java/org/cbioportal/web/util/DataBinnerTest.java rename to src/test/java/org/cbioportal/web/util/DataBinnerTest.java index 590ae85c8e6..b6fe1f81688 100644 --- a/web/src/test/java/org/cbioportal/web/util/DataBinnerTest.java +++ b/src/test/java/org/cbioportal/web/util/DataBinnerTest.java @@ -1,5 +1,14 @@ package org.cbioportal.web.util; +import java.math.BigDecimal; +import java.math.MathContext; +import java.math.RoundingMode; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; +import java.util.stream.Stream; import static org.cbioportal.web.parameter.DataBinFilter.*; @@ -8,6 +17,8 @@ import org.cbioportal.model.Binnable; import org.cbioportal.model.ClinicalData; import org.cbioportal.model.DataBin; +import org.cbioportal.service.GeneService; +import org.cbioportal.service.util.MolecularProfileUtil; import org.cbioportal.web.parameter.BinsGeneratorConfig; import org.cbioportal.web.parameter.ClinicalDataBinFilter; import org.cbioportal.web.parameter.ClinicalDataType; @@ -15,49 +26,43 @@ import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.mockito.InjectMocks; import org.mockito.MockitoAnnotations; import org.mockito.Spy; import org.mockito.internal.matchers.apachecommons.ReflectionEquals; import org.mockito.junit.MockitoJUnitRunner; -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; -import java.util.Map; -import java.util.stream.Collectors; -import java.util.stream.Stream; - -@RunWith(MockitoJUnitRunner.class) +@RunWith(SpringJUnit4ClassRunner.class) +@SpringBootTest +@ContextConfiguration(classes = { + DataBinner.class, + DataBinHelper.class, + DiscreteDataBinner.class, + LogScaleDataBinner.class, + LinearDataBinner.class, + ScientificSmallDataBinner.class, + StudyViewFilterUtil.class + }) public class DataBinnerTest { + private Map mockData; - @InjectMocks + + @Autowired private DataBinner dataBinner; - @Spy - @InjectMocks + + @Autowired private StudyViewFilterUtil studyViewFilterUtil; - @Spy - @InjectMocks - private DataBinHelper dataBinHelper; - @Spy - @InjectMocks - private DiscreteDataBinner discreteDataBinner; - @Spy - @InjectMocks - private LinearDataBinner linearDataBinner; - @Spy - @InjectMocks - private ScientificSmallDataBinner scientificSmallDataBinner; - @Spy - @InjectMocks - private LogScaleDataBinner logScaleDataBinner; - @Before - public void setup() { - mockData = DataBinnerMocker.mockData(); - MockitoAnnotations.initMocks(this); - } + @MockBean + private MolecularProfileUtil molecularProfileUtil; + + @MockBean + private GeneService geneService; private List getCaseIds(List unfilteredClinicalData, boolean getPatientIds) { return unfilteredClinicalData @@ -67,6 +72,11 @@ private List getCaseIds(List unfilteredClinicalData, boolean g .collect(Collectors.toList()); } + @Before + public void setup() { + mockData = DataBinnerMocker.mockData(); + } + @Test public void testLinearDataBinner() { String studyId = "blca_tcga"; @@ -77,7 +87,7 @@ public void testLinearDataBinner() { List clinicalData = mockClinicalData(attributeId, studyId, values); List patientIds = getCaseIds(clinicalData, true); - + List dataBins = dataBinner.calculateDataBins(clinicalDataBinFilter, ClinicalDataType.PATIENT, clinicalData, patientIds); Assert.assertEquals(11, dataBins.size()); @@ -377,7 +387,7 @@ public void testLinearDataBinnerWithNumberOfPetOrPetCtScans() { clinicalDataBinFilter, ClinicalDataType.PATIENT, clinicalData, patientIds); Assert.assertEquals(4, dataBins.size()); - + Assert.assertEquals("<=", dataBins.get(0).getSpecialValue()); Assert.assertEquals(1, dataBins.get(0).getEnd().intValue()); @@ -390,7 +400,7 @@ public void testLinearDataBinnerWithNumberOfPetOrPetCtScans() { Assert.assertEquals(">", dataBins.get(3).getSpecialValue()); Assert.assertEquals(3, dataBins.get(3).getStart().intValue()); } - + @Test public void testLinearDataBinnerWithNumberOfBoneScans() { String studyId = "genie"; @@ -420,7 +430,7 @@ public void testLinearDataBinnerWithNumberOfBoneScans() { clinicalDataBinFilter, ClinicalDataType.PATIENT, clinicalData, patientIds, 5); Assert.assertEquals(2, dataBinsWithThreshold5.size()); - + Assert.assertEquals(0, dataBinsWithThreshold5.get(0).getStart().intValue()); Assert.assertEquals(0, dataBinsWithThreshold5.get(0).getEnd().intValue()); @@ -428,7 +438,7 @@ public void testLinearDataBinnerWithNumberOfBoneScans() { Assert.assertEquals(0, dataBinsWithThreshold5.get(1).getStart().intValue()); Assert.assertNull(dataBinsWithThreshold5.get(1).getEnd()); } - + @Test public void testLinearDataBinnerWithAgeAtWhichSequencingWasReported() { String studyId = "genie_public"; @@ -437,7 +447,7 @@ public void testLinearDataBinnerWithAgeAtWhichSequencingWasReported() { List clinicalData = mockClinicalData(attributeId, studyId, values); List patientIds = getCaseIds(clinicalData, true); - + ClinicalDataBinFilter clinicalDataBinFilter = new ClinicalDataBinFilter(); clinicalDataBinFilter.setAttributeId(attributeId); clinicalDataBinFilter.setBinMethod(BinMethod.CUSTOM); @@ -467,7 +477,7 @@ public void testLinearDataBinnerWithAgeAtWhichSequencingWasReported() { Assert.assertEquals("Unknown", dataBins1.get(4).getSpecialValue()); Assert.assertEquals(10, dataBins1.get(4).getCount().intValue()); - + clinicalDataBinFilter.setCustomBins( Stream.of(40.0, 55.0).map(BigDecimal::valueOf).collect(Collectors.toList()) @@ -518,7 +528,7 @@ public void testLinearDataBinnerWithAgeAtWhichSequencingWasReported() { Assert.assertEquals("Unknown", dataBins3.get(3).getSpecialValue()); Assert.assertEquals(10, dataBins3.get(3).getCount().intValue()); } - + @Test public void testLinearDataBinnerWithPediatricAge() { String studyId = "skcm_broad"; @@ -1043,11 +1053,11 @@ public void testScientificDataBinner() { Assert.assertEquals(16, dataBins.get(1).getCount().intValue()); Assert.assertEquals(new BigDecimal("1.0e-6"), dataBins.get(2).getStart()); - Assert.assertEquals(new BigDecimal("1.0e-5"), dataBins.get(2).getEnd()); + Assert.assertEquals(new BigDecimal("1.0e-5").compareTo(dataBins.get(2).getEnd().round(new MathContext(5, RoundingMode.CEILING))), 0); Assert.assertEquals(32, dataBins.get(2).getCount().intValue()); Assert.assertEquals(">", dataBins.get(3).getSpecialValue()); - Assert.assertEquals(new BigDecimal("1.0e-5"), dataBins.get(3).getStart()); + Assert.assertEquals(new BigDecimal("1.0e-5").compareTo(dataBins.get(3).getStart().round(new MathContext(5, RoundingMode.CEILING))), 0); Assert.assertEquals(1, dataBins.get(3).getCount().intValue()); Assert.assertEquals("NA", dataBins.get(4).getSpecialValue()); diff --git a/web/src/test/java/org/cbioportal/web/util/SelectMockitoArgumentMatcher.java b/src/test/java/org/cbioportal/web/util/SelectMockitoArgumentMatcher.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/util/SelectMockitoArgumentMatcher.java rename to src/test/java/org/cbioportal/web/util/SelectMockitoArgumentMatcher.java diff --git a/web/src/test/java/org/cbioportal/web/util/StudyViewFilterApplierTest.java b/src/test/java/org/cbioportal/web/util/StudyViewFilterApplierTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/util/StudyViewFilterApplierTest.java rename to src/test/java/org/cbioportal/web/util/StudyViewFilterApplierTest.java diff --git a/web/src/test/java/org/cbioportal/web/util/appliers/PatientTreatmentFilterApplierTest.java b/src/test/java/org/cbioportal/web/util/appliers/PatientTreatmentFilterApplierTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/util/appliers/PatientTreatmentFilterApplierTest.java rename to src/test/java/org/cbioportal/web/util/appliers/PatientTreatmentFilterApplierTest.java diff --git a/web/src/test/java/org/cbioportal/web/util/appliers/SampleTreatmentFilterApplierTest.java b/src/test/java/org/cbioportal/web/util/appliers/SampleTreatmentFilterApplierTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/util/appliers/SampleTreatmentFilterApplierTest.java rename to src/test/java/org/cbioportal/web/util/appliers/SampleTreatmentFilterApplierTest.java diff --git a/web/src/test/java/org/cbioportal/web/util/appliers/StructuralVariantSubFilterApplierTest.java b/src/test/java/org/cbioportal/web/util/appliers/StructuralVariantSubFilterApplierTest.java similarity index 100% rename from web/src/test/java/org/cbioportal/web/util/appliers/StructuralVariantSubFilterApplierTest.java rename to src/test/java/org/cbioportal/web/util/appliers/StructuralVariantSubFilterApplierTest.java diff --git a/web/src/test/resources/categorical-custom-dataset-filter-applier.json b/src/test/resources/categorical-custom-dataset-filter-applier.json similarity index 100% rename from web/src/test/resources/categorical-custom-dataset-filter-applier.json rename to src/test/resources/categorical-custom-dataset-filter-applier.json diff --git a/src/test/resources/cgds-h2.sql b/src/test/resources/cgds-h2.sql new file mode 100644 index 00000000000..6ecf3d51560 --- /dev/null +++ b/src/test/resources/cgds-h2.sql @@ -0,0 +1,759 @@ +-- +-- Copyright (c) 2016 - 2022 Memorial Sloan Kettering Cancer Center. +-- +-- This library is distributed in the hope that it will be useful, but WITHOUT +-- ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS +-- FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder +-- is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no +-- obligations to provide maintenance, support, updates, enhancements or +-- modifications. In no event shall Memorial Sloan Kettering Cancer Center be +-- liable to any party for direct, indirect, special, incidental or +-- consequential damages, including lost profits, arising out of the use of this +-- software and its documentation, even if Memorial Sloan Kettering Cancer +-- Center has been advised of the possibility of such damage. +-- +-- This file is part of cBioPortal. +-- +-- cBioPortal is free software: you can redistribute it and/or modify +-- it under the terms of the GNU Affero General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU Affero General Public License for more details. +-- +-- You should have received a copy of the GNU Affero General Public License +-- along with this program. If not, see . +-- ---------------------------------------------------------------------------- +-- +-- Database: `cgds` +-- +-- -------------------------------------------------------- +-- Database table schemas and version number +-- -------------------------------------------------------- +-- The order of the following DROP TABLE statements is +-- significant. If a table has a FOREIGN_KEY referring to +-- another table, then it should be dropped before the +-- other table is dropped. The approach taken here is to +-- order the CREATE TABLE statements so that refererenced +-- tables are created before referring tables. +-- DROP TABLE statements are here in the reverse order. +-- -------------------------------------------------------- + +DROP TABLE IF EXISTS `info`; +DROP TABLE IF EXISTS `clinical_event_data`; +DROP TABLE IF EXISTS `clinical_event`; +DROP TABLE IF EXISTS `pdb_uniprot_residue_mapping`; +DROP TABLE IF EXISTS `pdb_uniprot_alignment`; +DROP TABLE IF EXISTS `cosmic_mutation`; +DROP TABLE IF EXISTS `copy_number_seg_file`; +DROP TABLE IF EXISTS `copy_number_seg`; +DROP TABLE IF EXISTS `sample_cna_event`; +DROP TABLE IF EXISTS `cna_event`; +DROP TABLE IF EXISTS `gistic_to_gene`; +DROP TABLE IF EXISTS `gistic`; +DROP TABLE IF EXISTS `mut_sig`; +DROP TABLE IF EXISTS `clinical_attribute_meta`; +DROP TABLE IF EXISTS `clinical_sample`; +DROP TABLE IF EXISTS `clinical_patient`; +DROP TABLE IF EXISTS `resource_definition`; +DROP TABLE IF EXISTS `resource_sample`; +DROP TABLE IF EXISTS `resource_patient`; +DROP TABLE IF EXISTS `resource_study`; +DROP TABLE IF EXISTS `mutation_count_by_keyword`; +DROP TABLE IF EXISTS `allele_specific_copy_number`; +DROP TABLE IF EXISTS `mutation`; +DROP TABLE IF EXISTS `mutation_event`; +DROP TABLE IF EXISTS `structural_variant`; +DROP TABLE IF EXISTS `sample_profile`; +DROP TABLE IF EXISTS `gene_panel_list`; +DROP TABLE IF EXISTS `gene_panel`; +DROP TABLE IF EXISTS `genetic_profile_samples`; +DROP TABLE IF EXISTS `genetic_alteration`; +DROP TABLE IF EXISTS `genetic_profile_link`; +DROP TABLE IF EXISTS `alteration_driver_annotation`; +DROP TABLE IF EXISTS `genetic_profile`; +DROP TABLE IF EXISTS `gene_alias`; +DROP TABLE IF EXISTS `geneset_gene`; +DROP TABLE IF EXISTS `reference_genome_gene`; +DROP TABLE IF EXISTS `gene`; +DROP TABLE IF EXISTS `sample_list_list`; +DROP TABLE IF EXISTS `sample_list`; +DROP TABLE IF EXISTS `sample`; +DROP TABLE IF EXISTS `patient`; +DROP TABLE IF EXISTS `authorities`; +DROP TABLE IF EXISTS `data_access_tokens`; +DROP TABLE IF EXISTS `users`; +DROP TABLE IF EXISTS `cancer_study_tags`; +DROP TABLE IF EXISTS `cancer_study`; +DROP TABLE IF EXISTS `type_of_cancer`; +DROP TABLE IF EXISTS `geneset_hierarchy_leaf`; +DROP TABLE IF EXISTS `geneset_hierarchy_node`; +DROP TABLE IF EXISTS `geneset`; +DROP TABLE IF EXISTS `generic_entity_properties`; +DROP TABLE IF EXISTS `genetic_entity`; +DROP TABLE IF EXISTS `reference_genome`; + +-- -------------------------------------------------------- +CREATE TABLE `type_of_cancer` ( + `TYPE_OF_CANCER_ID` varchar(63) NOT NULL, + `NAME` varchar(255) NOT NULL, + `DEDICATED_COLOR` char(31) NOT NULL, + `SHORT_NAME` varchar(127), + `PARENT` varchar(63), + PRIMARY KEY (`TYPE_OF_CANCER_ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `reference_genome` ( + `REFERENCE_GENOME_ID` int(4) NOT NULL AUTO_INCREMENT, + `SPECIES` varchar(64) NOT NULL, + `NAME` varchar(64) NOT NULL, + `BUILD_NAME` varchar(64) NOT NULL, + `GENOME_SIZE` bigint(20) NULL, + `URL` varchar(256) NOT NULL, + `RELEASE_DATE` datetime DEFAULT NULL, + PRIMARY KEY (`REFERENCE_GENOME_ID`), + UNIQUE INDEX `BUILD_NAME_UNIQUE` (`BUILD_NAME` ASC) +); + +-- -------------------------------------------------------- +CREATE TABLE `cancer_study` ( + `CANCER_STUDY_ID` int(11) NOT NULL auto_increment, + `CANCER_STUDY_IDENTIFIER` varchar(255), + `TYPE_OF_CANCER_ID` varchar(63) NOT NULL, + `NAME` varchar(255) NOT NULL, + `DESCRIPTION` varchar(1024) NOT NULL, + `PUBLIC` BOOLEAN NOT NULL, + `PMID` varchar(1024) DEFAULT NULL, + `CITATION` varchar(200) DEFAULT NULL, + `GROUPS` varchar(200) DEFAULT NULL, + `STATUS` int(1) DEFAULT NULL, + `IMPORT_DATE` datetime DEFAULT NULL, + `REFERENCE_GENOME_ID` int(4) DEFAULT 1, + PRIMARY KEY (`CANCER_STUDY_ID`), + UNIQUE (`CANCER_STUDY_IDENTIFIER`), + FOREIGN KEY (`TYPE_OF_CANCER_ID`) REFERENCES `type_of_cancer` (`TYPE_OF_CANCER_ID`), + FOREIGN KEY (`REFERENCE_GENOME_ID`) REFERENCES `reference_genome` (`REFERENCE_GENOME_ID`) ON DELETE RESTRICT +); + +-- -------------------------------------------------------- +CREATE TABLE `cancer_study_tags` ( + `CANCER_STUDY_ID` int(11) NOT NULL, + `TAGS` text NOT NULL, + PRIMARY KEY (`CANCER_STUDY_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `users` ( + `EMAIL` varchar(128) NOT NULL, + `NAME` varchar(255) NOT NULL, + `ENABLED` BOOLEAN NOT NULL, + PRIMARY KEY (`EMAIL`) +); + +-- -------------------------------------------------------- +CREATE TABLE `authorities` ( + `EMAIL` varchar(128) NOT NULL, + `AUTHORITY` varchar(255) NOT NULL +); + +-- -------------------------------------------------------- +CREATE TABLE `patient` ( + `INTERNAL_ID` int(11) NOT NULL auto_increment, + `STABLE_ID` varchar(50) NOT NULL, + `CANCER_STUDY_ID` int(11) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `sample` ( + `INTERNAL_ID` int(11) NOT NULL auto_increment, + `STABLE_ID` varchar(63) NOT NULL, + `SAMPLE_TYPE` varchar(255) NOT NULL, + `PATIENT_ID` int(11) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`), + FOREIGN KEY (`PATIENT_ID`) REFERENCES `patient` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `sample_list` ( + `LIST_ID` int(11) NOT NULL auto_increment, + `STABLE_ID` varchar(255) NOT NULL, + `CATEGORY` varchar(255) NOT NULL, + `CANCER_STUDY_ID` int(11) NOT NULL, + `NAME` varchar(255) NOT NULL, + `DESCRIPTION` mediumtext, + PRIMARY KEY (`LIST_ID`), + UNIQUE (`STABLE_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `sample_list_list` ( + `LIST_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + PRIMARY KEY (`LIST_ID`,`SAMPLE_ID`), + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- + +CREATE TABLE `genetic_entity` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ENTITY_TYPE` varchar(45) NOT NULL, + `STABLE_ID` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `gene` ( + `ENTREZ_GENE_ID` int(11) NOT NULL, + `HUGO_GENE_SYMBOL` varchar(255) NOT NULL, + `GENETIC_ENTITY_ID` int(11) NOT NULL, + `TYPE` varchar(50), + PRIMARY KEY (`ENTREZ_GENE_ID`), + UNIQUE KEY `GENETIC_ENTITY_ID_UNIQUE` (`GENETIC_ENTITY_ID`), + KEY `HUGO_GENE_SYMBOL` (`HUGO_GENE_SYMBOL`), + FOREIGN KEY (`GENETIC_ENTITY_ID`) REFERENCES `genetic_entity` (`ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `gene_alias` ( + `ENTREZ_GENE_ID` int(11) NOT NULL, + `GENE_ALIAS` varchar(255) NOT NULL, + PRIMARY KEY (`ENTREZ_GENE_ID`,`GENE_ALIAS`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `geneset` ( + `ID` INT(11) NOT NULL auto_increment, + `GENETIC_ENTITY_ID` INT NOT NULL, + `EXTERNAL_ID` VARCHAR(200) NOT NULL, + `NAME` VARCHAR(200) NOT NULL, + `DESCRIPTION` VARCHAR(300) NOT NULL, + `REF_LINK` TEXT, + PRIMARY KEY (`ID`), + UNIQUE INDEX `NAME_UNIQUE` (`NAME` ASC), + UNIQUE INDEX `EXTERNAL_ID_COLL_UNIQUE` (`EXTERNAL_ID` ASC), + UNIQUE INDEX `GENESET_GENETIC_ENTITY_ID_UNIQUE` (`GENETIC_ENTITY_ID` ASC), + FOREIGN KEY (`GENETIC_ENTITY_ID`) REFERENCES `genetic_entity` (`ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `geneset_gene` ( + `GENESET_ID` INT(11) NOT NULL, + `ENTREZ_GENE_ID` INT(11) NOT NULL, + PRIMARY KEY (`GENESET_ID`, `ENTREZ_GENE_ID`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`GENESET_ID`) REFERENCES `geneset` (`ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `geneset_hierarchy_node` ( + `NODE_ID` BIGINT(20) NOT NULL auto_increment, + `NODE_NAME` VARCHAR(200) NOT NULL, + `PARENT_ID` BIGINT NULL DEFAULT NULL, + PRIMARY KEY (`NODE_ID`), + UNIQUE INDEX `NODE_NAME_UNIQUE` (`NODE_NAME` ASC, `PARENT_ID` ASC) +); + +-- -------------------------------------------------------- +CREATE TABLE `geneset_hierarchy_leaf` ( + `NODE_ID` BIGINT NOT NULL, + `GENESET_ID` INT NOT NULL, + PRIMARY KEY (`NODE_ID`, `GENESET_ID`), + FOREIGN KEY (`NODE_ID`) REFERENCES `geneset_hierarchy_node` (`NODE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`GENESET_ID`) REFERENCES `geneset` (`ID`) ON DELETE CASCADE +); + +-- ------------------------------------------------------ +CREATE TABLE `generic_entity_properties` ( + `ID` INT(11) NOT NULL auto_increment, + `GENETIC_ENTITY_ID` INT NOT NULL, + `NAME` varchar(255) NOT NULL, + `VALUE` varchar(5000) NOT NULL, + UNIQUE (`GENETIC_ENTITY_ID`, `NAME`), + PRIMARY KEY (`ID`), + FOREIGN KEY (`GENETIC_ENTITY_ID`) REFERENCES `genetic_entity` (`ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `genetic_profile` ( + `GENETIC_PROFILE_ID` int(11) NOT NULL AUTO_INCREMENT, + `STABLE_ID` varchar(255) NOT NULL, + `CANCER_STUDY_ID` int(11) NOT NULL, + `GENETIC_ALTERATION_TYPE` varchar(255) NOT NULL, + `GENERIC_ASSAY_TYPE` varchar(255) DEFAULT NULL, + `DATATYPE` varchar(255) NOT NULL, + `NAME` varchar(255) NOT NULL, + `DESCRIPTION` mediumtext, + `SHOW_PROFILE_IN_ANALYSIS_TAB` tinyint(1) NOT NULL, + `PIVOT_THRESHOLD` FLOAT DEFAULT NULL, + `SORT_ORDER` ENUM('ASC','DESC') DEFAULT NULL, + `PATIENT_LEVEL` boolean DEFAULT 0, + PRIMARY KEY (`GENETIC_PROFILE_ID`), + UNIQUE (`STABLE_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `genetic_profile_link` ( + `REFERRING_GENETIC_PROFILE_ID` INT NOT NULL, + `REFERRED_GENETIC_PROFILE_ID` INT NOT NULL, + `REFERENCE_TYPE` VARCHAR(45) NULL, -- COMMENT 'Values: AGGREGATION (e.g. for GSVA) or STATISTIC (e.g. for Z-SCORES) + PRIMARY KEY (`REFERRING_GENETIC_PROFILE_ID`, `REFERRED_GENETIC_PROFILE_ID`), + FOREIGN KEY (`REFERRING_GENETIC_PROFILE_ID` ) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`REFERRED_GENETIC_PROFILE_ID` ) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE NO ACTION ON UPDATE NO ACTION +); + +-- -------------------------------------------------------- +CREATE TABLE `genetic_alteration` ( + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `GENETIC_ENTITY_ID` int(11) NOT NULL, + `VALUES` longtext NOT NULL, + PRIMARY KEY (`GENETIC_PROFILE_ID`,`GENETIC_ENTITY_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`GENETIC_ENTITY_ID`) REFERENCES `genetic_entity` (`ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `genetic_profile_samples` ( + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `ORDERED_SAMPLE_LIST` longtext NOT NULL, + UNIQUE (`GENETIC_PROFILE_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `gene_panel` ( + `INTERNAL_ID` int(11) NOT NULL auto_increment, + `STABLE_ID` varchar(255) NOT NULL, + `DESCRIPTION` mediumtext, + PRIMARY KEY (`INTERNAL_ID`), + UNIQUE (`STABLE_ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `gene_panel_list` ( + `INTERNAL_ID` int(11) NOT NULL, + `GENE_ID` int(11) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`, `GENE_ID`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `gene_panel` (`INTERNAL_ID`) ON DELETE CASCADE, + FOREIGN KEY (`GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `sample_profile` ( + `SAMPLE_ID` int(11) NOT NULL, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `PANEL_ID` int(11) DEFAULT NULL, + UNIQUE KEY `UQ_SAMPLE_ID_GENETIC_PROFILE_ID` (`SAMPLE_ID`,`GENETIC_PROFILE_ID`), -- Constraint to allow each sample only once in each profile + KEY (`SAMPLE_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE, + FOREIGN KEY (`PANEL_ID`) REFERENCES `gene_panel` (`INTERNAL_ID`) ON DELETE RESTRICT +); + +-- -------------------------------------------------------- +CREATE TABLE `structural_variant` ( + `INTERNAL_ID` int(11) NOT NULL auto_increment, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `SITE1_ENTREZ_GENE_ID` int(11), + `SITE1_ENSEMBL_TRANSCRIPT_ID` varchar(25), + `SITE1_CHROMOSOME` varchar(5), + `SITE1_REGION` varchar(25), + `SITE1_REGION_NUMBER` int(11), + `SITE1_CONTIG` varchar(100), + `SITE1_POSITION` int(11), + `SITE1_DESCRIPTION` varchar(255), + `SITE2_ENTREZ_GENE_ID` int(11), + `SITE2_ENSEMBL_TRANSCRIPT_ID` varchar(25), + `SITE2_CHROMOSOME` varchar(5), + `SITE2_REGION` varchar(25), + `SITE2_REGION_NUMBER` int(11), + `SITE2_CONTIG` varchar(100), + `SITE2_POSITION` int(11), + `SITE2_DESCRIPTION` varchar(255), + `SITE2_EFFECT_ON_FRAME` varchar(25), + `NCBI_BUILD` varchar(10), + `DNA_SUPPORT` varchar(3), + `RNA_SUPPORT` varchar(3), + `NORMAL_READ_COUNT` int(11), + `TUMOR_READ_COUNT` int(11), + `NORMAL_VARIANT_COUNT` int(11), + `TUMOR_VARIANT_COUNT` int(11), + `NORMAL_PAIRED_END_READ_COUNT` int(11), + `TUMOR_PAIRED_END_READ_COUNT` int(11), + `NORMAL_SPLIT_READ_COUNT` int(11), + `TUMOR_SPLIT_READ_COUNT` int(11), + `ANNOTATION` varchar(255), + `BREAKPOINT_TYPE` varchar(25), + `CONNECTION_TYPE` varchar(25), + `EVENT_INFO` varchar(255), + `CLASS` varchar(25), + `LENGTH` int(11), + `COMMENTS` varchar(255), + `SV_STATUS` varchar(25) NOT NULL DEFAULT 'SOMATIC' COMMENT 'GERMLINE or SOMATIC.', + `ANNOTATION_JSON` JSON, + PRIMARY KEY (`INTERNAL_ID`), + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SITE1_ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SITE2_ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `alteration_driver_annotation` ( + `ALTERATION_EVENT_ID` int(255) NOT NULL, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `DRIVER_FILTER` VARCHAR(20), + `DRIVER_FILTER_ANNOTATION` VARCHAR(80), + `DRIVER_TIERS_FILTER` VARCHAR(50), + `DRIVER_TIERS_FILTER_ANNOTATION` VARCHAR(80), + PRIMARY KEY (`ALTERATION_EVENT_ID`, `GENETIC_PROFILE_ID`, `SAMPLE_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE, + INDEX (`DRIVER_FILTER`), + INDEX (`DRIVER_TIERS_FILTER`) +) COMMENT='Alteration driver annotation'; + +-- -------------------------------------------------------- +CREATE TABLE `mutation_event` ( + `MUTATION_EVENT_ID` int(255) NOT NULL auto_increment, + `ENTREZ_GENE_ID` int(11) NOT NULL, + `CHR` varchar(5), + `START_POSITION` bigint(20), + `END_POSITION` bigint(20), + `REFERENCE_ALLELE` text, + `TUMOR_SEQ_ALLELE` text, + `PROTEIN_CHANGE` varchar(255), + `MUTATION_TYPE` varchar(255) COMMENT 'e.g. Missense, Nonsence, etc.', + `NCBI_BUILD` varchar(10), + `STRAND` varchar(2), + `VARIANT_TYPE` varchar(15), + `DB_SNP_RS` varchar(25), + `DB_SNP_VAL_STATUS` varchar(255), + `REFSEQ_MRNA_ID` varchar(64), + `CODON_CHANGE` varchar(255), + `UNIPROT_ACCESSION` varchar(64), + `PROTEIN_POS_START` int(11), + `PROTEIN_POS_END` int(11), + `CANONICAL_TRANSCRIPT` boolean, + `KEYWORD` varchar(255) DEFAULT NULL COMMENT 'e.g. truncating, V200 Missense, E338del, ', + KEY (`KEYWORD`), + PRIMARY KEY (`MUTATION_EVENT_ID`), +-- Line removed for H2 compatibility : KEY `KEY_MUTATION_EVENT_DETAILS` (`CHR`, `START_POSITION`, `END_POSITION`, `TUMOR_SEQ_ALLELE`(240), `ENTREZ_GENE_ID`, `PROTEIN_CHANGE`, `MUTATION_TYPE`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`), + INDEX (`MUTATION_TYPE`) +) COMMENT='Mutation Data'; + +-- -------------------------------------------------------- +CREATE TABLE `mutation` ( + `MUTATION_EVENT_ID` int(255) NOT NULL, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `ENTREZ_GENE_ID` int(11) NOT NULL, + `CENTER` varchar(100), + `SEQUENCER` varchar(255), + `MUTATION_STATUS` varchar(25) COMMENT 'Germline, Somatic or LOH.', + `VALIDATION_STATUS` varchar(25), + `TUMOR_SEQ_ALLELE1` TEXT, + `TUMOR_SEQ_ALLELE2` TEXT, + `MATCHED_NORM_SAMPLE_BARCODE` varchar(255), + `MATCH_NORM_SEQ_ALLELE1` TEXT, + `MATCH_NORM_SEQ_ALLELE2` TEXT, + `TUMOR_VALIDATION_ALLELE1` TEXT, + `TUMOR_VALIDATION_ALLELE2` TEXT, + `MATCH_NORM_VALIDATION_ALLELE1` TEXT, + `MATCH_NORM_VALIDATION_ALLELE2` TEXT, + `VERIFICATION_STATUS` varchar(10), + `SEQUENCING_PHASE` varchar(100), + `SEQUENCE_SOURCE` varchar(255) NOT NULL, + `VALIDATION_METHOD` varchar(255), + `SCORE` varchar(100), + `BAM_FILE` varchar(255), + `TUMOR_ALT_COUNT` int(11), + `TUMOR_REF_COUNT` int(11), + `NORMAL_ALT_COUNT` int(11), + `NORMAL_REF_COUNT` int(11), + `AMINO_ACID_CHANGE` varchar(255), + `ANNOTATION_JSON` JSON, + UNIQUE KEY `UQ_MUTATION_EVENT_ID_GENETIC_PROFILE_ID_SAMPLE_ID` (`MUTATION_EVENT_ID`,`GENETIC_PROFILE_ID`,`SAMPLE_ID`), -- Constraint to block duplicated mutation entries + KEY (`GENETIC_PROFILE_ID`,`ENTREZ_GENE_ID`), + KEY (`GENETIC_PROFILE_ID`,`SAMPLE_ID`), + KEY (`GENETIC_PROFILE_ID`), + KEY (`ENTREZ_GENE_ID`), + KEY (`SAMPLE_ID`), + KEY (`MUTATION_EVENT_ID`), + FOREIGN KEY (`MUTATION_EVENT_ID`) REFERENCES `mutation_event` (`MUTATION_EVENT_ID`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +) COMMENT='Mutation Data Details'; + +-- -------------------------------------------------------- +CREATE TABLE `mutation_count_by_keyword` ( + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `KEYWORD` varchar(255) DEFAULT NULL, + `ENTREZ_GENE_ID` int(11) NOT NULL, + `KEYWORD_COUNT` int NOT NULL, + `GENE_COUNT` int NOT NULL, + KEY (`GENETIC_PROFILE_ID`,`KEYWORD`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `clinical_patient` ( + `INTERNAL_ID` int(11) NOT NULL, + `ATTR_ID` varchar(255) NOT NULL, + `ATTR_VALUE` varchar(255) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`, `ATTR_ID`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `patient` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `clinical_sample` ( + `INTERNAL_ID` int(11) NOT NULL, + `ATTR_ID` varchar(255) NOT NULL, + `ATTR_VALUE` varchar(255) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`,`ATTR_ID`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `clinical_attribute_meta` ( + `ATTR_ID` varchar(255) NOT NULL, + `DISPLAY_NAME` varchar(255) NOT NULL, + `DESCRIPTION` varchar(2048) NOT NULL, + `DATATYPE` varchar(255) NOT NULL COMMENT 'NUMBER, BOOLEAN, or STRING', + `PATIENT_ATTRIBUTE` BOOLEAN NOT NULL, + `PRIORITY` varchar(255) NOT NULL, + `CANCER_STUDY_ID` int(11) NOT NULL, + PRIMARY KEY (`ATTR_ID`,`CANCER_STUDY_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `mut_sig` ( + `CANCER_STUDY_ID` int(11) NOT NULL, + `ENTREZ_GENE_ID` int(11) NOT NULL, + `RANK` int(11) NOT NULL, + `NumBasesCovered` int(11) NOT NULL, + `NumMutations` int(11) NOT NULL, + `P_VALUE` float NOT NULL, + `Q_VALUE` float NOT NULL, + PRIMARY KEY (`CANCER_STUDY_ID`, `ENTREZ_GENE_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE, + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `gistic` ( + `GISTIC_ROI_ID` bigint(20) NOT NULL auto_increment, + `CANCER_STUDY_ID` int(11) NOT NULL, + `CHROMOSOME` int(11) NOT NULL, + `CYTOBAND` varchar(255) NOT NULL, + `WIDE_PEAK_START` int(11) NOT NULL, + `WIDE_PEAK_END` int(11) NOT NULL, + `Q_VALUE` double NOT NULL, + `AMP` tinyint(1) NOT NULL, + PRIMARY KEY (`GISTIC_ROI_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `gistic_to_gene` ( + `GISTIC_ROI_ID` bigint(20) NOT NULL, + `ENTREZ_GENE_ID` int(11) NOT NULL, + PRIMARY KEY(`GISTIC_ROI_ID`, `ENTREZ_GENE_ID`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`), + FOREIGN KEY (`GISTIC_ROI_ID`) REFERENCES `gistic` (`GISTIC_ROI_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `cna_event` ( + `CNA_EVENT_ID` int(255) NOT NULL auto_increment, + `ENTREZ_GENE_ID` int(11) NOT NULL, + `ALTERATION` tinyint NOT NULL, + PRIMARY KEY (`CNA_EVENT_ID`), + UNIQUE (`ENTREZ_GENE_ID`, `ALTERATION`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`), + INDEX (`ALTERATION`) +); + +-- -------------------------------------------------------- +CREATE TABLE `sample_cna_event` ( + `CNA_EVENT_ID` int(255) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `ANNOTATION_JSON` JSON, + KEY (`GENETIC_PROFILE_ID`,`SAMPLE_ID`), + PRIMARY KEY (`CNA_EVENT_ID`, `SAMPLE_ID`, `GENETIC_PROFILE_ID`), + FOREIGN KEY (`CNA_EVENT_ID`) REFERENCES `cna_event` (`CNA_EVENT_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `copy_number_seg` ( + `SEG_ID` bigint(20) NOT NULL auto_increment, + `CANCER_STUDY_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `CHR` varchar(5) NOT NULL, + `START` int(11) NOT NULL, + `END` int(11) NOT NULL, + `NUM_PROBES` int(11) NOT NULL, + `SEGMENT_MEAN` double NOT NULL, + KEY (`CANCER_STUDY_ID`,`SAMPLE_ID`), + PRIMARY KEY (`SEG_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `copy_number_seg_file` ( + `SEG_FILE_ID` int(11) NOT NULL auto_increment, + `CANCER_STUDY_ID` int(11) NOT NULL, + `REFERENCE_GENOME_ID` varchar(10) NOT NULL, + `DESCRIPTION` varchar(255) NOT NULL, + `FILENAME` varchar(255) NOT NULL, + PRIMARY KEY(`SEG_FILE_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `cosmic_mutation` ( + `COSMIC_MUTATION_ID` varchar(30) NOT NULL, + `CHR` varchar(5), + `START_POSITION` bigint(20), + `REFERENCE_ALLELE` varchar(255), + `TUMOR_SEQ_ALLELE` varchar(255), + `STRAND` varchar(2), + `CODON_CHANGE` varchar(255), + `ENTREZ_GENE_ID` int(11) NOT NULL, + `PROTEIN_CHANGE` varchar(255) NOT NULL, + `COUNT` int(11) NOT NULL, + `KEYWORD` varchar(50) DEFAULT NULL, + KEY (`KEYWORD`), + PRIMARY KEY (`COSMIC_MUTATION_ID`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `clinical_event` ( + `CLINICAL_EVENT_ID` int NOT NULL auto_increment, + `PATIENT_ID` int(11) NOT NULL, + `START_DATE` int NOT NULL, + `STOP_DATE` int, + `EVENT_TYPE` varchar(20) NOT NULL, + PRIMARY KEY (`CLINICAL_EVENT_ID`), + KEY (`PATIENT_ID`, `EVENT_TYPE`), + FOREIGN KEY (`PATIENT_ID`) REFERENCES `patient` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `clinical_event_data` ( + `CLINICAL_EVENT_ID` int(255) NOT NULL, + `KEY` varchar(255) NOT NULL, + `VALUE` varchar(5000) NOT NULL, + FOREIGN KEY (`CLINICAL_EVENT_ID`) REFERENCES `clinical_event` (`CLINICAL_EVENT_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `reference_genome_gene` ( + `ENTREZ_GENE_ID` int(11) NOT NULL, + `REFERENCE_GENOME_ID` int(4) NOT NULL, + `CHR` varchar(5) DEFAULT NULL, + `CYTOBAND` varchar(64) DEFAULT NULL, + `START` bigint(20) DEFAULT NULL, + `END` bigint(20) DEFAULT NULL, + PRIMARY KEY (`ENTREZ_GENE_ID`,`REFERENCE_GENOME_ID`), + FOREIGN KEY (`REFERENCE_GENOME_ID`) REFERENCES `reference_genome` (`REFERENCE_GENOME_ID`) ON DELETE CASCADE, + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `data_access_tokens` ( + `TOKEN` varchar(50) NOT NULL, + `USERNAME` varchar(128) NOT NULL, + `EXPIRATION` datetime NOT NULL, + `CREATION` datetime NOT NULL, + PRIMARY KEY (`TOKEN`), + FOREIGN KEY (`USERNAME`) REFERENCES `users` (`EMAIL`) ON DELETE CASCADE +); +-- -------------------------------------------------------- +CREATE TABLE `allele_specific_copy_number` ( + `MUTATION_EVENT_ID` int(255) NOT NULL, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `ASCN_INTEGER_COPY_NUMBER` int DEFAULT NULL, + `ASCN_METHOD` varchar(24) NOT NULL, + `CCF_EXPECTED_COPIES_UPPER` float DEFAULT NULL, + `CCF_EXPECTED_COPIES` float DEFAULT NULL, + `CLONAL` varchar(16) DEFAULT NULL, + `MINOR_COPY_NUMBER` int DEFAULT NULL, + `EXPECTED_ALT_COPIES` int DEFAULT NULL, + `TOTAL_COPY_NUMBER` int DEFAULT NULL, + UNIQUE KEY `UQ_ASCN_MUTATION_EVENT_ID_GENETIC_PROFILE_ID_SAMPLE_ID` (`MUTATION_EVENT_ID`,`GENETIC_PROFILE_ID`,`SAMPLE_ID`), -- Constraint to block duplicated mutation entries + FOREIGN KEY (`MUTATION_EVENT_ID`) REFERENCES `mutation_event` (`MUTATION_EVENT_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); +-- -------------------------------------------------------- +CREATE TABLE `info` ( + `DB_SCHEMA_VERSION` varchar(24), + `GENESET_VERSION` varchar(24) +); + +-- -------------------------------------------------------- +CREATE TABLE `resource_definition` ( + `RESOURCE_ID` varchar(255) NOT NULL, + `DISPLAY_NAME` varchar(255) NOT NULL, + `DESCRIPTION` varchar(2048) DEFAULT NULL, + `RESOURCE_TYPE` ENUM('STUDY', 'PATIENT', 'SAMPLE') NOT NULL, + `OPEN_BY_DEFAULT` BOOLEAN DEFAULT 0, + `PRIORITY` int(11) NOT NULL, + `CANCER_STUDY_ID` int(11) NOT NULL, + PRIMARY KEY (`RESOURCE_ID`,`CANCER_STUDY_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `resource_sample` ( + `INTERNAL_ID` int(11) NOT NULL, + `RESOURCE_ID` varchar(255) NOT NULL, + `URL` varchar(255) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`, `RESOURCE_ID`, `URL`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `resource_patient` ( + `INTERNAL_ID` int(11) NOT NULL, + `RESOURCE_ID` varchar(255) NOT NULL, + `URL` varchar(255) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`, `RESOURCE_ID`, `URL`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `patient` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `resource_study` ( + `INTERNAL_ID` int(11) NOT NULL, + `RESOURCE_ID` varchar(255) NOT NULL, + `URL` varchar(255) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`, `RESOURCE_ID`, `URL`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- THIS MUST BE KEPT IN SYNC WITH db.version PROPERTY IN pom.xml +INSERT INTO info VALUES ('2.13.1', NULL); + diff --git a/src/test/resources/cgds.sql b/src/test/resources/cgds.sql new file mode 100644 index 00000000000..2971b3d1be6 --- /dev/null +++ b/src/test/resources/cgds.sql @@ -0,0 +1,759 @@ +-- +-- Copyright (c) 2016 - 2022 Memorial Sloan Kettering Cancer Center. +-- +-- This library is distributed in the hope that it will be useful, but WITHOUT +-- ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS +-- FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder +-- is on an "as is" basis, and Memorial Sloan Kettering Cancer Center has no +-- obligations to provide maintenance, support, updates, enhancements or +-- modifications. In no event shall Memorial Sloan Kettering Cancer Center be +-- liable to any party for direct, indirect, special, incidental or +-- consequential damages, including lost profits, arising out of the use of this +-- software and its documentation, even if Memorial Sloan Kettering Cancer +-- Center has been advised of the possibility of such damage. +-- +-- This file is part of cBioPortal. +-- +-- cBioPortal is free software: you can redistribute it and/or modify +-- it under the terms of the GNU Affero General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU Affero General Public License for more details. +-- +-- You should have received a copy of the GNU Affero General Public License +-- along with this program. If not, see . +-- ---------------------------------------------------------------------------- +-- +-- Database: `cgds` +-- +-- -------------------------------------------------------- +-- Database table schemas and version number +-- -------------------------------------------------------- +-- The order of the following DROP TABLE statements is +-- significant. If a table has a FOREIGN_KEY referring to +-- another table, then it should be dropped before the +-- other table is dropped. The approach taken here is to +-- order the CREATE TABLE statements so that refererenced +-- tables are created before referring tables. +-- DROP TABLE statements are here in the reverse order. +-- -------------------------------------------------------- + +DROP TABLE IF EXISTS `info`; +DROP TABLE IF EXISTS `clinical_event_data`; +DROP TABLE IF EXISTS `clinical_event`; +DROP TABLE IF EXISTS `pdb_uniprot_residue_mapping`; +DROP TABLE IF EXISTS `pdb_uniprot_alignment`; +DROP TABLE IF EXISTS `cosmic_mutation`; +DROP TABLE IF EXISTS `copy_number_seg_file`; +DROP TABLE IF EXISTS `copy_number_seg`; +DROP TABLE IF EXISTS `sample_cna_event`; +DROP TABLE IF EXISTS `cna_event`; +DROP TABLE IF EXISTS `gistic_to_gene`; +DROP TABLE IF EXISTS `gistic`; +DROP TABLE IF EXISTS `mut_sig`; +DROP TABLE IF EXISTS `clinical_attribute_meta`; +DROP TABLE IF EXISTS `clinical_sample`; +DROP TABLE IF EXISTS `clinical_patient`; +DROP TABLE IF EXISTS `resource_definition`; +DROP TABLE IF EXISTS `resource_sample`; +DROP TABLE IF EXISTS `resource_patient`; +DROP TABLE IF EXISTS `resource_study`; +DROP TABLE IF EXISTS `mutation_count_by_keyword`; +DROP TABLE IF EXISTS `allele_specific_copy_number`; +DROP TABLE IF EXISTS `mutation`; +DROP TABLE IF EXISTS `mutation_event`; +DROP TABLE IF EXISTS `structural_variant`; +DROP TABLE IF EXISTS `sample_profile`; +DROP TABLE IF EXISTS `gene_panel_list`; +DROP TABLE IF EXISTS `gene_panel`; +DROP TABLE IF EXISTS `genetic_profile_samples`; +DROP TABLE IF EXISTS `genetic_alteration`; +DROP TABLE IF EXISTS `genetic_profile_link`; +DROP TABLE IF EXISTS `alteration_driver_annotation`; +DROP TABLE IF EXISTS `genetic_profile`; +DROP TABLE IF EXISTS `gene_alias`; +DROP TABLE IF EXISTS `geneset_gene`; +DROP TABLE IF EXISTS `reference_genome_gene`; +DROP TABLE IF EXISTS `gene`; +DROP TABLE IF EXISTS `sample_list_list`; +DROP TABLE IF EXISTS `sample_list`; +DROP TABLE IF EXISTS `sample`; +DROP TABLE IF EXISTS `patient`; +DROP TABLE IF EXISTS `authorities`; +DROP TABLE IF EXISTS `data_access_tokens`; +DROP TABLE IF EXISTS `users`; +DROP TABLE IF EXISTS `cancer_study_tags`; +DROP TABLE IF EXISTS `cancer_study`; +DROP TABLE IF EXISTS `type_of_cancer`; +DROP TABLE IF EXISTS `geneset_hierarchy_leaf`; +DROP TABLE IF EXISTS `geneset_hierarchy_node`; +DROP TABLE IF EXISTS `geneset`; +DROP TABLE IF EXISTS `generic_entity_properties`; +DROP TABLE IF EXISTS `genetic_entity`; +DROP TABLE IF EXISTS `reference_genome`; + +-- -------------------------------------------------------- +CREATE TABLE `type_of_cancer` ( + `TYPE_OF_CANCER_ID` varchar(63) NOT NULL, + `NAME` varchar(255) NOT NULL, + `DEDICATED_COLOR` char(31) NOT NULL, + `SHORT_NAME` varchar(127), + `PARENT` varchar(63), + PRIMARY KEY (`TYPE_OF_CANCER_ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `reference_genome` ( + `REFERENCE_GENOME_ID` int(4) NOT NULL AUTO_INCREMENT, + `SPECIES` varchar(64) NOT NULL, + `NAME` varchar(64) NOT NULL, + `BUILD_NAME` varchar(64) NOT NULL, + `GENOME_SIZE` bigint(20) NULL, + `URL` varchar(256) NOT NULL, + `RELEASE_DATE` datetime DEFAULT NULL, + PRIMARY KEY (`REFERENCE_GENOME_ID`), + UNIQUE INDEX `BUILD_NAME_UNIQUE` (`BUILD_NAME` ASC) +); + +-- -------------------------------------------------------- +CREATE TABLE `cancer_study` ( + `CANCER_STUDY_ID` int(11) NOT NULL auto_increment, + `CANCER_STUDY_IDENTIFIER` varchar(255), + `TYPE_OF_CANCER_ID` varchar(63) NOT NULL, + `NAME` varchar(255) NOT NULL, + `DESCRIPTION` varchar(1024) NOT NULL, + `PUBLIC` BOOLEAN NOT NULL, + `PMID` varchar(1024) DEFAULT NULL, + `CITATION` varchar(200) DEFAULT NULL, + `GROUPS` varchar(200) DEFAULT NULL, + `STATUS` int(1) DEFAULT NULL, + `IMPORT_DATE` datetime DEFAULT NULL, + `REFERENCE_GENOME_ID` int(4) DEFAULT 1, + PRIMARY KEY (`CANCER_STUDY_ID`), + UNIQUE (`CANCER_STUDY_IDENTIFIER`), + FOREIGN KEY (`TYPE_OF_CANCER_ID`) REFERENCES `type_of_cancer` (`TYPE_OF_CANCER_ID`), + FOREIGN KEY (`REFERENCE_GENOME_ID`) REFERENCES `reference_genome` (`REFERENCE_GENOME_ID`) ON DELETE RESTRICT +); + +-- -------------------------------------------------------- +CREATE TABLE `cancer_study_tags` ( + `CANCER_STUDY_ID` int(11) NOT NULL, + `TAGS` text NOT NULL, + PRIMARY KEY (`CANCER_STUDY_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `users` ( + `EMAIL` varchar(128) NOT NULL, + `NAME` varchar(255) NOT NULL, + `ENABLED` BOOLEAN NOT NULL, + PRIMARY KEY (`EMAIL`) +); + +-- -------------------------------------------------------- +CREATE TABLE `authorities` ( + `EMAIL` varchar(128) NOT NULL, + `AUTHORITY` varchar(255) NOT NULL +); + +-- -------------------------------------------------------- +CREATE TABLE `patient` ( + `INTERNAL_ID` int(11) NOT NULL auto_increment, + `STABLE_ID` varchar(50) NOT NULL, + `CANCER_STUDY_ID` int(11) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `sample` ( + `INTERNAL_ID` int(11) NOT NULL auto_increment, + `STABLE_ID` varchar(63) NOT NULL, + `SAMPLE_TYPE` varchar(255) NOT NULL, + `PATIENT_ID` int(11) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`), + FOREIGN KEY (`PATIENT_ID`) REFERENCES `patient` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `sample_list` ( + `LIST_ID` int(11) NOT NULL auto_increment, + `STABLE_ID` varchar(255) NOT NULL, + `CATEGORY` varchar(255) NOT NULL, + `CANCER_STUDY_ID` int(11) NOT NULL, + `NAME` varchar(255) NOT NULL, + `DESCRIPTION` mediumtext, + PRIMARY KEY (`LIST_ID`), + UNIQUE (`STABLE_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `sample_list_list` ( + `LIST_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + PRIMARY KEY (`LIST_ID`,`SAMPLE_ID`), + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- + +CREATE TABLE `genetic_entity` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `ENTITY_TYPE` varchar(45) NOT NULL, + `STABLE_ID` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `gene` ( + `ENTREZ_GENE_ID` int(11) NOT NULL, + `HUGO_GENE_SYMBOL` varchar(255) NOT NULL, + `GENETIC_ENTITY_ID` int(11) NOT NULL, + `TYPE` varchar(50), + PRIMARY KEY (`ENTREZ_GENE_ID`), + UNIQUE KEY `GENETIC_ENTITY_ID_UNIQUE` (`GENETIC_ENTITY_ID`), + KEY `HUGO_GENE_SYMBOL` (`HUGO_GENE_SYMBOL`), + FOREIGN KEY (`GENETIC_ENTITY_ID`) REFERENCES `genetic_entity` (`ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `gene_alias` ( + `ENTREZ_GENE_ID` int(11) NOT NULL, + `GENE_ALIAS` varchar(255) NOT NULL, + PRIMARY KEY (`ENTREZ_GENE_ID`,`GENE_ALIAS`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `geneset` ( + `ID` INT(11) NOT NULL auto_increment, + `GENETIC_ENTITY_ID` INT NOT NULL, + `EXTERNAL_ID` VARCHAR(200) NOT NULL, + `NAME` VARCHAR(200) NOT NULL, + `DESCRIPTION` VARCHAR(300) NOT NULL, + `REF_LINK` TEXT, + PRIMARY KEY (`ID`), + UNIQUE INDEX `NAME_UNIQUE` (`NAME` ASC), + UNIQUE INDEX `EXTERNAL_ID_COLL_UNIQUE` (`EXTERNAL_ID` ASC), + UNIQUE INDEX `GENESET_GENETIC_ENTITY_ID_UNIQUE` (`GENETIC_ENTITY_ID` ASC), + FOREIGN KEY (`GENETIC_ENTITY_ID`) REFERENCES `genetic_entity` (`ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `geneset_gene` ( + `GENESET_ID` INT(11) NOT NULL, + `ENTREZ_GENE_ID` INT(11) NOT NULL, + PRIMARY KEY (`GENESET_ID`, `ENTREZ_GENE_ID`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`GENESET_ID`) REFERENCES `geneset` (`ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `geneset_hierarchy_node` ( + `NODE_ID` BIGINT(20) NOT NULL auto_increment, + `NODE_NAME` VARCHAR(200) NOT NULL, + `PARENT_ID` BIGINT NULL DEFAULT NULL, + PRIMARY KEY (`NODE_ID`), + UNIQUE INDEX `NODE_NAME_UNIQUE` (`NODE_NAME` ASC, `PARENT_ID` ASC) +); + +-- -------------------------------------------------------- +CREATE TABLE `geneset_hierarchy_leaf` ( + `NODE_ID` BIGINT NOT NULL, + `GENESET_ID` INT NOT NULL, + PRIMARY KEY (`NODE_ID`, `GENESET_ID`), + FOREIGN KEY (`NODE_ID`) REFERENCES `geneset_hierarchy_node` (`NODE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`GENESET_ID`) REFERENCES `geneset` (`ID`) ON DELETE CASCADE +); + +-- ------------------------------------------------------ +CREATE TABLE `generic_entity_properties` ( + `ID` INT(11) NOT NULL auto_increment, + `GENETIC_ENTITY_ID` INT NOT NULL, + `NAME` varchar(255) NOT NULL, + `VALUE` varchar(5000) NOT NULL, + UNIQUE (`GENETIC_ENTITY_ID`, `NAME`), + PRIMARY KEY (`ID`), + FOREIGN KEY (`GENETIC_ENTITY_ID`) REFERENCES `genetic_entity` (`ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `genetic_profile` ( + `GENETIC_PROFILE_ID` int(11) NOT NULL AUTO_INCREMENT, + `STABLE_ID` varchar(255) NOT NULL, + `CANCER_STUDY_ID` int(11) NOT NULL, + `GENETIC_ALTERATION_TYPE` varchar(255) NOT NULL, + `GENERIC_ASSAY_TYPE` varchar(255) DEFAULT NULL, + `DATATYPE` varchar(255) NOT NULL, + `NAME` varchar(255) NOT NULL, + `DESCRIPTION` mediumtext, + `SHOW_PROFILE_IN_ANALYSIS_TAB` tinyint(1) NOT NULL, + `PIVOT_THRESHOLD` FLOAT DEFAULT NULL, + `SORT_ORDER` ENUM('ASC','DESC') DEFAULT NULL, + `PATIENT_LEVEL` boolean DEFAULT 0, + PRIMARY KEY (`GENETIC_PROFILE_ID`), + UNIQUE (`STABLE_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `genetic_profile_link` ( + `REFERRING_GENETIC_PROFILE_ID` INT NOT NULL, + `REFERRED_GENETIC_PROFILE_ID` INT NOT NULL, + `REFERENCE_TYPE` VARCHAR(45) NULL, -- COMMENT 'Values: AGGREGATION (e.g. for GSVA) or STATISTIC (e.g. for Z-SCORES) + PRIMARY KEY (`REFERRING_GENETIC_PROFILE_ID`, `REFERRED_GENETIC_PROFILE_ID`), + FOREIGN KEY (`REFERRING_GENETIC_PROFILE_ID` ) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`REFERRED_GENETIC_PROFILE_ID` ) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE NO ACTION ON UPDATE NO ACTION +); + +-- -------------------------------------------------------- +CREATE TABLE `genetic_alteration` ( + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `GENETIC_ENTITY_ID` int(11) NOT NULL, + `VALUES` longtext NOT NULL, + PRIMARY KEY (`GENETIC_PROFILE_ID`,`GENETIC_ENTITY_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`GENETIC_ENTITY_ID`) REFERENCES `genetic_entity` (`ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `genetic_profile_samples` ( + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `ORDERED_SAMPLE_LIST` longtext NOT NULL, + UNIQUE (`GENETIC_PROFILE_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `gene_panel` ( + `INTERNAL_ID` int(11) NOT NULL auto_increment, + `STABLE_ID` varchar(255) NOT NULL, + `DESCRIPTION` mediumtext, + PRIMARY KEY (`INTERNAL_ID`), + UNIQUE (`STABLE_ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `gene_panel_list` ( + `INTERNAL_ID` int(11) NOT NULL, + `GENE_ID` int(11) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`, `GENE_ID`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `gene_panel` (`INTERNAL_ID`) ON DELETE CASCADE, + FOREIGN KEY (`GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `sample_profile` ( + `SAMPLE_ID` int(11) NOT NULL, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `PANEL_ID` int(11) DEFAULT NULL, + UNIQUE KEY `UQ_SAMPLE_ID_GENETIC_PROFILE_ID` (`SAMPLE_ID`,`GENETIC_PROFILE_ID`), -- Constraint to allow each sample only once in each profile + KEY (`SAMPLE_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE, + FOREIGN KEY (`PANEL_ID`) REFERENCES `gene_panel` (`INTERNAL_ID`) ON DELETE RESTRICT +); + +-- -------------------------------------------------------- +CREATE TABLE `structural_variant` ( + `INTERNAL_ID` int(11) NOT NULL auto_increment, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `SITE1_ENTREZ_GENE_ID` int(11), + `SITE1_ENSEMBL_TRANSCRIPT_ID` varchar(25), + `SITE1_CHROMOSOME` varchar(5), + `SITE1_REGION` varchar(25), + `SITE1_REGION_NUMBER` int(11), + `SITE1_CONTIG` varchar(100), + `SITE1_POSITION` int(11), + `SITE1_DESCRIPTION` varchar(255), + `SITE2_ENTREZ_GENE_ID` int(11), + `SITE2_ENSEMBL_TRANSCRIPT_ID` varchar(25), + `SITE2_CHROMOSOME` varchar(5), + `SITE2_REGION` varchar(25), + `SITE2_REGION_NUMBER` int(11), + `SITE2_CONTIG` varchar(100), + `SITE2_POSITION` int(11), + `SITE2_DESCRIPTION` varchar(255), + `SITE2_EFFECT_ON_FRAME` varchar(25), + `NCBI_BUILD` varchar(10), + `DNA_SUPPORT` varchar(3), + `RNA_SUPPORT` varchar(3), + `NORMAL_READ_COUNT` int(11), + `TUMOR_READ_COUNT` int(11), + `NORMAL_VARIANT_COUNT` int(11), + `TUMOR_VARIANT_COUNT` int(11), + `NORMAL_PAIRED_END_READ_COUNT` int(11), + `TUMOR_PAIRED_END_READ_COUNT` int(11), + `NORMAL_SPLIT_READ_COUNT` int(11), + `TUMOR_SPLIT_READ_COUNT` int(11), + `ANNOTATION` varchar(255), + `BREAKPOINT_TYPE` varchar(25), + `CONNECTION_TYPE` varchar(25), + `EVENT_INFO` varchar(255), + `CLASS` varchar(25), + `LENGTH` int(11), + `COMMENTS` varchar(255), + `SV_STATUS` varchar(25) NOT NULL DEFAULT 'SOMATIC' COMMENT 'GERMLINE or SOMATIC.', + `ANNOTATION_JSON` JSON, + PRIMARY KEY (`INTERNAL_ID`), + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SITE1_ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SITE2_ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `alteration_driver_annotation` ( + `ALTERATION_EVENT_ID` int(255) NOT NULL, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `DRIVER_FILTER` VARCHAR(20), + `DRIVER_FILTER_ANNOTATION` VARCHAR(80), + `DRIVER_TIERS_FILTER` VARCHAR(50), + `DRIVER_TIERS_FILTER_ANNOTATION` VARCHAR(80), + PRIMARY KEY (`ALTERATION_EVENT_ID`, `GENETIC_PROFILE_ID`, `SAMPLE_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE, + INDEX (`DRIVER_FILTER`), + INDEX (`DRIVER_TIERS_FILTER`) +) COMMENT='Alteration driver annotation'; + +-- -------------------------------------------------------- +CREATE TABLE `mutation_event` ( + `MUTATION_EVENT_ID` int(255) NOT NULL auto_increment, + `ENTREZ_GENE_ID` int(11) NOT NULL, + `CHR` varchar(5), + `START_POSITION` bigint(20), + `END_POSITION` bigint(20), + `REFERENCE_ALLELE` text, + `TUMOR_SEQ_ALLELE` text, + `PROTEIN_CHANGE` varchar(255), + `MUTATION_TYPE` varchar(255) COMMENT 'e.g. Missense, Nonsence, etc.', + `NCBI_BUILD` varchar(10), + `STRAND` varchar(2), + `VARIANT_TYPE` varchar(15), + `DB_SNP_RS` varchar(25), + `DB_SNP_VAL_STATUS` varchar(255), + `REFSEQ_MRNA_ID` varchar(64), + `CODON_CHANGE` varchar(255), + `UNIPROT_ACCESSION` varchar(64), + `PROTEIN_POS_START` int(11), + `PROTEIN_POS_END` int(11), + `CANONICAL_TRANSCRIPT` boolean, + `KEYWORD` varchar(255) DEFAULT NULL COMMENT 'e.g. truncating, V200 Missense, E338del, ', + KEY (`KEYWORD`), + PRIMARY KEY (`MUTATION_EVENT_ID`), + KEY `KEY_MUTATION_EVENT_DETAILS` (`CHR`, `START_POSITION`, `END_POSITION`, `TUMOR_SEQ_ALLELE`(240), `ENTREZ_GENE_ID`, `PROTEIN_CHANGE`, `MUTATION_TYPE`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`), + INDEX (`MUTATION_TYPE`) +) COMMENT='Mutation Data'; + +-- -------------------------------------------------------- +CREATE TABLE `mutation` ( + `MUTATION_EVENT_ID` int(255) NOT NULL, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `ENTREZ_GENE_ID` int(11) NOT NULL, + `CENTER` varchar(100), + `SEQUENCER` varchar(255), + `MUTATION_STATUS` varchar(25) COMMENT 'Germline, Somatic or LOH.', + `VALIDATION_STATUS` varchar(25), + `TUMOR_SEQ_ALLELE1` TEXT, + `TUMOR_SEQ_ALLELE2` TEXT, + `MATCHED_NORM_SAMPLE_BARCODE` varchar(255), + `MATCH_NORM_SEQ_ALLELE1` TEXT, + `MATCH_NORM_SEQ_ALLELE2` TEXT, + `TUMOR_VALIDATION_ALLELE1` TEXT, + `TUMOR_VALIDATION_ALLELE2` TEXT, + `MATCH_NORM_VALIDATION_ALLELE1` TEXT, + `MATCH_NORM_VALIDATION_ALLELE2` TEXT, + `VERIFICATION_STATUS` varchar(10), + `SEQUENCING_PHASE` varchar(100), + `SEQUENCE_SOURCE` varchar(255) NOT NULL, + `VALIDATION_METHOD` varchar(255), + `SCORE` varchar(100), + `BAM_FILE` varchar(255), + `TUMOR_ALT_COUNT` int(11), + `TUMOR_REF_COUNT` int(11), + `NORMAL_ALT_COUNT` int(11), + `NORMAL_REF_COUNT` int(11), + `AMINO_ACID_CHANGE` varchar(255), + `ANNOTATION_JSON` JSON, + UNIQUE KEY `UQ_MUTATION_EVENT_ID_GENETIC_PROFILE_ID_SAMPLE_ID` (`MUTATION_EVENT_ID`,`GENETIC_PROFILE_ID`,`SAMPLE_ID`), -- Constraint to block duplicated mutation entries + KEY (`GENETIC_PROFILE_ID`,`ENTREZ_GENE_ID`), + KEY (`GENETIC_PROFILE_ID`,`SAMPLE_ID`), + KEY (`GENETIC_PROFILE_ID`), + KEY (`ENTREZ_GENE_ID`), + KEY (`SAMPLE_ID`), + KEY (`MUTATION_EVENT_ID`), + FOREIGN KEY (`MUTATION_EVENT_ID`) REFERENCES `mutation_event` (`MUTATION_EVENT_ID`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +) COMMENT='Mutation Data Details'; + +-- -------------------------------------------------------- +CREATE TABLE `mutation_count_by_keyword` ( + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `KEYWORD` varchar(255) DEFAULT NULL, + `ENTREZ_GENE_ID` int(11) NOT NULL, + `KEYWORD_COUNT` int NOT NULL, + `GENE_COUNT` int NOT NULL, + KEY (`GENETIC_PROFILE_ID`,`KEYWORD`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `clinical_patient` ( + `INTERNAL_ID` int(11) NOT NULL, + `ATTR_ID` varchar(255) NOT NULL, + `ATTR_VALUE` varchar(255) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`, `ATTR_ID`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `patient` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `clinical_sample` ( + `INTERNAL_ID` int(11) NOT NULL, + `ATTR_ID` varchar(255) NOT NULL, + `ATTR_VALUE` varchar(255) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`,`ATTR_ID`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `clinical_attribute_meta` ( + `ATTR_ID` varchar(255) NOT NULL, + `DISPLAY_NAME` varchar(255) NOT NULL, + `DESCRIPTION` varchar(2048) NOT NULL, + `DATATYPE` varchar(255) NOT NULL COMMENT 'NUMBER, BOOLEAN, or STRING', + `PATIENT_ATTRIBUTE` BOOLEAN NOT NULL, + `PRIORITY` varchar(255) NOT NULL, + `CANCER_STUDY_ID` int(11) NOT NULL, + PRIMARY KEY (`ATTR_ID`,`CANCER_STUDY_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `mut_sig` ( + `CANCER_STUDY_ID` int(11) NOT NULL, + `ENTREZ_GENE_ID` int(11) NOT NULL, + `RANK` int(11) NOT NULL, + `NumBasesCovered` int(11) NOT NULL, + `NumMutations` int(11) NOT NULL, + `P_VALUE` float NOT NULL, + `Q_VALUE` float NOT NULL, + PRIMARY KEY (`CANCER_STUDY_ID`, `ENTREZ_GENE_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE, + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `gistic` ( + `GISTIC_ROI_ID` bigint(20) NOT NULL auto_increment, + `CANCER_STUDY_ID` int(11) NOT NULL, + `CHROMOSOME` int(11) NOT NULL, + `CYTOBAND` varchar(255) NOT NULL, + `WIDE_PEAK_START` int(11) NOT NULL, + `WIDE_PEAK_END` int(11) NOT NULL, + `Q_VALUE` double NOT NULL, + `AMP` tinyint(1) NOT NULL, + PRIMARY KEY (`GISTIC_ROI_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `gistic_to_gene` ( + `GISTIC_ROI_ID` bigint(20) NOT NULL, + `ENTREZ_GENE_ID` int(11) NOT NULL, + PRIMARY KEY(`GISTIC_ROI_ID`, `ENTREZ_GENE_ID`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`), + FOREIGN KEY (`GISTIC_ROI_ID`) REFERENCES `gistic` (`GISTIC_ROI_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `cna_event` ( + `CNA_EVENT_ID` int(255) NOT NULL auto_increment, + `ENTREZ_GENE_ID` int(11) NOT NULL, + `ALTERATION` tinyint NOT NULL, + PRIMARY KEY (`CNA_EVENT_ID`), + UNIQUE (`ENTREZ_GENE_ID`, `ALTERATION`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`), + INDEX (`ALTERATION`) +); + +-- -------------------------------------------------------- +CREATE TABLE `sample_cna_event` ( + `CNA_EVENT_ID` int(255) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `ANNOTATION_JSON` JSON, + KEY (`GENETIC_PROFILE_ID`,`SAMPLE_ID`), + PRIMARY KEY (`CNA_EVENT_ID`, `SAMPLE_ID`, `GENETIC_PROFILE_ID`), + FOREIGN KEY (`CNA_EVENT_ID`) REFERENCES `cna_event` (`CNA_EVENT_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `copy_number_seg` ( + `SEG_ID` bigint(20) NOT NULL auto_increment, + `CANCER_STUDY_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `CHR` varchar(5) NOT NULL, + `START` int(11) NOT NULL, + `END` int(11) NOT NULL, + `NUM_PROBES` int(11) NOT NULL, + `SEGMENT_MEAN` double NOT NULL, + KEY (`CANCER_STUDY_ID`,`SAMPLE_ID`), + PRIMARY KEY (`SEG_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `copy_number_seg_file` ( + `SEG_FILE_ID` int(11) NOT NULL auto_increment, + `CANCER_STUDY_ID` int(11) NOT NULL, + `REFERENCE_GENOME_ID` varchar(10) NOT NULL, + `DESCRIPTION` varchar(255) NOT NULL, + `FILENAME` varchar(255) NOT NULL, + PRIMARY KEY(`SEG_FILE_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `cosmic_mutation` ( + `COSMIC_MUTATION_ID` varchar(30) NOT NULL, + `CHR` varchar(5), + `START_POSITION` bigint(20), + `REFERENCE_ALLELE` varchar(255), + `TUMOR_SEQ_ALLELE` varchar(255), + `STRAND` varchar(2), + `CODON_CHANGE` varchar(255), + `ENTREZ_GENE_ID` int(11) NOT NULL, + `PROTEIN_CHANGE` varchar(255) NOT NULL, + `COUNT` int(11) NOT NULL, + `KEYWORD` varchar(50) DEFAULT NULL, + KEY (`KEYWORD`), + PRIMARY KEY (`COSMIC_MUTATION_ID`), + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) +); + +-- -------------------------------------------------------- +CREATE TABLE `clinical_event` ( + `CLINICAL_EVENT_ID` int NOT NULL auto_increment, + `PATIENT_ID` int(11) NOT NULL, + `START_DATE` int NOT NULL, + `STOP_DATE` int, + `EVENT_TYPE` varchar(20) NOT NULL, + PRIMARY KEY (`CLINICAL_EVENT_ID`), + KEY (`PATIENT_ID`, `EVENT_TYPE`), + FOREIGN KEY (`PATIENT_ID`) REFERENCES `patient` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `clinical_event_data` ( + `CLINICAL_EVENT_ID` int(255) NOT NULL, + `KEY` varchar(255) NOT NULL, + `VALUE` varchar(5000) NOT NULL, + FOREIGN KEY (`CLINICAL_EVENT_ID`) REFERENCES `clinical_event` (`CLINICAL_EVENT_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `reference_genome_gene` ( + `ENTREZ_GENE_ID` int(11) NOT NULL, + `REFERENCE_GENOME_ID` int(4) NOT NULL, + `CHR` varchar(5) DEFAULT NULL, + `CYTOBAND` varchar(64) DEFAULT NULL, + `START` bigint(20) DEFAULT NULL, + `END` bigint(20) DEFAULT NULL, + PRIMARY KEY (`ENTREZ_GENE_ID`,`REFERENCE_GENOME_ID`), + FOREIGN KEY (`REFERENCE_GENOME_ID`) REFERENCES `reference_genome` (`REFERENCE_GENOME_ID`) ON DELETE CASCADE, + FOREIGN KEY (`ENTREZ_GENE_ID`) REFERENCES `gene` (`ENTREZ_GENE_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `data_access_tokens` ( + `TOKEN` varchar(50) NOT NULL, + `USERNAME` varchar(128) NOT NULL, + `EXPIRATION` datetime NOT NULL, + `CREATION` datetime NOT NULL, + PRIMARY KEY (`TOKEN`), + FOREIGN KEY (`USERNAME`) REFERENCES `users` (`EMAIL`) ON DELETE CASCADE +); +-- -------------------------------------------------------- +CREATE TABLE `allele_specific_copy_number` ( + `MUTATION_EVENT_ID` int(255) NOT NULL, + `GENETIC_PROFILE_ID` int(11) NOT NULL, + `SAMPLE_ID` int(11) NOT NULL, + `ASCN_INTEGER_COPY_NUMBER` int DEFAULT NULL, + `ASCN_METHOD` varchar(24) NOT NULL, + `CCF_EXPECTED_COPIES_UPPER` float DEFAULT NULL, + `CCF_EXPECTED_COPIES` float DEFAULT NULL, + `CLONAL` varchar(16) DEFAULT NULL, + `MINOR_COPY_NUMBER` int DEFAULT NULL, + `EXPECTED_ALT_COPIES` int DEFAULT NULL, + `TOTAL_COPY_NUMBER` int DEFAULT NULL, + UNIQUE KEY `UQ_ASCN_MUTATION_EVENT_ID_GENETIC_PROFILE_ID_SAMPLE_ID` (`MUTATION_EVENT_ID`,`GENETIC_PROFILE_ID`,`SAMPLE_ID`), -- Constraint to block duplicated mutation entries + FOREIGN KEY (`MUTATION_EVENT_ID`) REFERENCES `mutation_event` (`MUTATION_EVENT_ID`), + FOREIGN KEY (`GENETIC_PROFILE_ID`) REFERENCES `genetic_profile` (`GENETIC_PROFILE_ID`) ON DELETE CASCADE, + FOREIGN KEY (`SAMPLE_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); +-- -------------------------------------------------------- +CREATE TABLE `info` ( + `DB_SCHEMA_VERSION` varchar(24), + `GENESET_VERSION` varchar(24) +); + +-- -------------------------------------------------------- +CREATE TABLE `resource_definition` ( + `RESOURCE_ID` varchar(255) NOT NULL, + `DISPLAY_NAME` varchar(255) NOT NULL, + `DESCRIPTION` varchar(2048) DEFAULT NULL, + `RESOURCE_TYPE` ENUM('STUDY', 'PATIENT', 'SAMPLE') NOT NULL, + `OPEN_BY_DEFAULT` BOOLEAN DEFAULT 0, + `PRIORITY` int(11) NOT NULL, + `CANCER_STUDY_ID` int(11) NOT NULL, + PRIMARY KEY (`RESOURCE_ID`,`CANCER_STUDY_ID`), + FOREIGN KEY (`CANCER_STUDY_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `resource_sample` ( + `INTERNAL_ID` int(11) NOT NULL, + `RESOURCE_ID` varchar(255) NOT NULL, + `URL` varchar(255) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`, `RESOURCE_ID`, `URL`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `sample` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `resource_patient` ( + `INTERNAL_ID` int(11) NOT NULL, + `RESOURCE_ID` varchar(255) NOT NULL, + `URL` varchar(255) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`, `RESOURCE_ID`, `URL`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `patient` (`INTERNAL_ID`) ON DELETE CASCADE +); + +-- -------------------------------------------------------- +CREATE TABLE `resource_study` ( + `INTERNAL_ID` int(11) NOT NULL, + `RESOURCE_ID` varchar(255) NOT NULL, + `URL` varchar(255) NOT NULL, + PRIMARY KEY (`INTERNAL_ID`, `RESOURCE_ID`, `URL`), + FOREIGN KEY (`INTERNAL_ID`) REFERENCES `cancer_study` (`CANCER_STUDY_ID`) ON DELETE CASCADE +); + +-- THIS MUST BE KEPT IN SYNC WITH db.version PROPERTY IN pom.xml +INSERT INTO info VALUES ('2.13.1', NULL); + diff --git a/web/src/test/resources/custom-dataset-minimal.json b/src/test/resources/custom-dataset-minimal.json similarity index 100% rename from web/src/test/resources/custom-dataset-minimal.json rename to src/test/resources/custom-dataset-minimal.json diff --git a/web/src/test/resources/custom-dataset.json b/src/test/resources/custom-dataset.json similarity index 100% rename from web/src/test/resources/custom-dataset.json rename to src/test/resources/custom-dataset.json diff --git a/src/test/resources/data.sql b/src/test/resources/data.sql new file mode 100644 index 00000000000..4a92467d052 --- /dev/null +++ b/src/test/resources/data.sql @@ -0,0 +1,523 @@ +INSERT INTO type_of_cancer (TYPE_OF_CANCER_ID,NAME,DEDICATED_COLOR,SHORT_NAME,PARENT) VALUES ('brca','Breast Invasive Carcinoma','HotPink','Breast','tissue'); +INSERT INTO type_of_cancer (TYPE_OF_CANCER_ID,NAME,DEDICATED_COLOR,SHORT_NAME,PARENT) VALUES ('acc','Adrenocortical Carcinoma','Purple','ACC','adrenal_gland'); + +INSERT INTO `reference_genome` VALUES (1, 'human', 'hg19', 'GRCh37', NULL, 'http://hgdownload.cse.ucsc.edu/goldenPath/hg19/bigZips', '2009-02-01 00:00:00'); +INSERT INTO `reference_genome` VALUES (2, 'human', 'hg38', 'GRCh38', NULL, 'http://hgdownload.cse.ucsc.edu/goldenPath/hg38/bigZips', '2013-12-01 00:00:00'); + +INSERT INTO cancer_study (CANCER_STUDY_ID,CANCER_STUDY_IDENTIFIER,TYPE_OF_CANCER_ID,NAME,DESCRIPTION,PUBLIC,PMID,CITATION,GROUPS,STATUS,IMPORT_DATE,REFERENCE_GENOME_ID) VALUES(1,'study_tcga_pub','brca','Breast Invasive Carcinoma (TCGA, Nature 2012)','The Cancer Genome Atlas (TCGA) Breast Invasive Carcinoma project. 825 cases.
    Nature 2012. Raw data via the TCGA Data Portal.',1,'23000897,26451490','TCGA, Nature 2012, ...','SU2C-PI3K;PUBLIC;GDAC',0,'2011-12-18 13:17:17+00:00',1); +INSERT INTO cancer_study (CANCER_STUDY_ID,CANCER_STUDY_IDENTIFIER,TYPE_OF_CANCER_ID,NAME,DESCRIPTION,PUBLIC,PMID,CITATION,GROUPS,STATUS,IMPORT_DATE,REFERENCE_GENOME_ID) VALUES(2,'acc_tcga','acc','Adrenocortical Carcinoma (TCGA, Provisional)','TCGA Adrenocortical Carcinoma; raw data at the NCI.',1,'23000897','TCGA, Nature 2012','SU2C-PI3K;PUBLIC;GDAC',0,'2013-10-12 11:11:15+00:00',1); + +INSERT INTO cancer_study_tags (CANCER_STUDY_ID,TAGS) VALUES(1,'{"Analyst": {"Name": "Jack", "Email": "jack@something.com"}, "Load id": 35}'); +INSERT INTO cancer_study_tags (CANCER_STUDY_ID,TAGS) VALUES(2,'{"Load id": 36}'); + +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (1,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (2,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (3,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (4,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (5,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (6,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (7,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (8,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (9,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (10,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (11,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (12,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (13,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (14,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (15,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (16,'GENE', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (17,'GENESET', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (18,'GENESET', NULL); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (19,'GENERIC_ASSAY','17-AAG'); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (20,'GENERIC_ASSAY','AEW541'); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (28,'GENERIC_ASSAY','mean_1'); +INSERT INTO genetic_entity (ID,ENTITY_TYPE,STABLE_ID) VALUES (29,'GENERIC_ASSAY','mean_2'); + +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(207,'AKT1',1,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(208,'AKT2',2,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(10000,'AKT3',3,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(369,'ARAF',4,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(472,'ATM',5,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(673,'BRAF',6,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(672,'BRCA1',7,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(675,'BRCA2',8,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(3265,'HRAS',9,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(3845,'KRAS',10,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(4893,'NRAS',11,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(79501,'OR4F5',12,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(148398,'SAMD11',13,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(26155,'NOC2L',14,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(2064,'ERBB2',15,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(2886,'GRB7',16,'protein-coding'); +INSERT INTO cosmic_mutation (COSMIC_MUTATION_ID,PROTEIN_CHANGE,ENTREZ_GENE_ID,COUNT,KEYWORD) VALUES(3677745,'D45A',79501,1,'OR4F5 D45 missense'); +INSERT INTO cosmic_mutation (COSMIC_MUTATION_ID,PROTEIN_CHANGE,ENTREZ_GENE_ID,COUNT,KEYWORD) VALUES(426644,'G145C',79501,1,'OR4F5 G145 missense'); +INSERT INTO cosmic_mutation (COSMIC_MUTATION_ID,PROTEIN_CHANGE,ENTREZ_GENE_ID,COUNT,KEYWORD) VALUES(460103,'P23P',148398,1,'SAMD11 P23 silent'); +INSERT INTO cosmic_mutation (COSMIC_MUTATION_ID,PROTEIN_CHANGE,ENTREZ_GENE_ID,COUNT,KEYWORD) VALUES(4010395,'S146S',26155,1,'NOC2L S146 silent'); +INSERT INTO cosmic_mutation (COSMIC_MUTATION_ID,PROTEIN_CHANGE,ENTREZ_GENE_ID,COUNT,KEYWORD) VALUES(1290240,'M1T',26155,1,'NOC2L truncating'); +INSERT INTO cosmic_mutation (COSMIC_MUTATION_ID,PROTEIN_CHANGE,ENTREZ_GENE_ID,COUNT,KEYWORD) VALUES(4010425,'Q197*',26155,1,'NOC2L truncating'); + +INSERT INTO gene_alias (ENTREZ_GENE_ID,GENE_ALIAS) VALUES (207,'AKT alias'); +INSERT INTO gene_alias (ENTREZ_GENE_ID,GENE_ALIAS) VALUES (207,'AKT alias2'); +INSERT INTO gene_alias (ENTREZ_GENE_ID,GENE_ALIAS) VALUES (675,'BRCA1 alias'); + +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(207,'14q32.33',10838,105235686,105262088,14,1); +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(207,'14q32.33',11162,104769349,104795751,14,2); +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(208,'19q13.2',15035, 40736224, 40791443,19,1); +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(208,'19q13.2',15035, 40230317, 40285536,19,2); + +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB) VALUES (2,'study_tcga_pub_gistic',1,'COPY_NUMBER_ALTERATION','DISCRETE','Putative copy-number alterations from GISTIC','Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification.',1); +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB) VALUES (3,'study_tcga_pub_mrna',1,'MRNA_EXPRESSION','Z-SCORE','mRNA expression (microarray)','Expression levels (Agilent microarray).',0); +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB) VALUES (10,'study_tcga_pub_m_na',1,'MRNA_EXPRESSION','Z-SCORE','mRNA expression (microarray)','Expression levels (Agilent microarray).',0); +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB) VALUES (4,'study_tcga_pub_log2CNA',1,'COPY_NUMBER_ALTERATION','LOG2-VALUE','Log2 copy-number values','Log2 copy-number VALUESfor each gene (from Affymetrix SNP6).',0); +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB) VALUES (5,'study_tcga_pub_methylation_hm27',1,'METHYLATION','CONTINUOUS','Methylation (HM27)','Methylation beta-VALUES (HM27 platform). For genes with multiple methylation probes, the probe least correlated with expression is selected.',0); +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB) VALUES (6,'study_tcga_pub_mutations',1,'MUTATION_EXTENDED','MAF','Mutations','Mutation data from whole exome sequencing.',1); +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB) VALUES (7,'study_tcga_pub_sv',1,'STRUCTURAL_VARIANT','SV','Structural Variants','Structural Variants detected by Illumina HiSeq sequencing.',1); +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB) VALUES (8,'acc_tcga_mutations',2,'MUTATION_EXTENDED','MAF','Mutations','Mutation data from whole exome sequencing.',1); +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB) VALUES (9,'study_tcga_pub_gsva_scores',1,'GENESET_SCORE','GSVA-SCORE','GSVA scores','GSVA scores for oncogenic signature gene sets from MsigDB calculated with GSVA version 1.22.4, R version 3.3.2.',1); +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB,GENERIC_ASSAY_TYPE) VALUES (11,'study_tcga_pub_treatment_ic50',1,'GENERIC_ASSAY','IC50','Treatment IC50 values','Treatment response IC50 values',1,'TREATMENT_RESPONSE'); +INSERT INTO genetic_profile (GENETIC_PROFILE_ID,STABLE_ID,CANCER_STUDY_ID,GENETIC_ALTERATION_TYPE,DATATYPE,NAME,DESCRIPTION,SHOW_PROFILE_IN_ANALYSIS_TAB,GENERIC_ASSAY_TYPE) VALUES (12,'study_tcga_pub_mutational_signature',1,'GENERIC_ASSAY','LIMIT-VALUE','mutational_signature values','mutational_signature values',1,'MUTATIONAL_SIGNATURE'); + +INSERT INTO genetic_profile_samples (GENETIC_PROFILE_ID,ORDERED_SAMPLE_LIST) VALUES (2,'1,2,3,4,5,6,7,8,9,10,11,12,13,14,'); +INSERT INTO genetic_profile_samples (GENETIC_PROFILE_ID,ORDERED_SAMPLE_LIST) VALUES (3,'2,3,6,8,9,10,12,13,'); +INSERT INTO genetic_profile_samples (GENETIC_PROFILE_ID,ORDERED_SAMPLE_LIST) VALUES (4,'1,2,3,4,5,6,7,8,9,10,11,12,13,14,'); +INSERT INTO genetic_profile_samples (GENETIC_PROFILE_ID,ORDERED_SAMPLE_LIST) VALUES (5,'2,'); +INSERT INTO genetic_profile_samples (GENETIC_PROFILE_ID,ORDERED_SAMPLE_LIST) VALUES (11,'1,2,3,4,5,6,7,8,9,10,11,12,13,14,'); + +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (1,'TCGA-A1-A0SB',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (2,'TCGA-A1-A0SD',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (3,'TCGA-A1-A0SE',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (4,'TCGA-A1-A0SF',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (5,'TCGA-A1-A0SG',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (6,'TCGA-A1-A0SH',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (7,'TCGA-A1-A0SI',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (8,'TCGA-A1-A0SJ',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (9,'TCGA-A1-A0SK',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (10,'TCGA-A1-A0SM',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (11,'TCGA-A1-A0SN',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (12,'TCGA-A1-A0SO',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (13,'TCGA-A1-A0SP',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (14,'TCGA-A1-A0SQ',1); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (15,'TCGA-A1-B0SO',2); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (16,'TCGA-A1-B0SP',2); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (17,'TCGA-A1-B0SQ',2); +INSERT INTO patient (INTERNAL_ID,STABLE_ID,CANCER_STUDY_ID) VALUES (18,'TCGA-A1-A0SB',2); +INSERT INTO genetic_profile_samples (GENETIC_PROFILE_ID,ORDERED_SAMPLE_LIST) VALUES(10,'1,2,3,4,5,6,7,8,9,10,11,'); + +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (1,'TCGA-A1-A0SB-01','Primary Solid Tumor',1); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (2,'TCGA-A1-A0SD-01','Primary Solid Tumor',2); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (3,'TCGA-A1-A0SE-01','Primary Solid Tumor',3); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (4,'TCGA-A1-A0SF-01','Primary Solid Tumor',4); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (5,'TCGA-A1-A0SG-01','Primary Solid Tumor',5); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (6,'TCGA-A1-A0SH-01','Primary Solid Tumor',6); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (7,'TCGA-A1-A0SI-01','Primary Solid Tumor',7); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (8,'TCGA-A1-A0SJ-01','Primary Solid Tumor',8); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (9,'TCGA-A1-A0SK-01','Primary Solid Tumor',9); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (10,'TCGA-A1-A0SM-01','Primary Solid Tumor',10); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (11,'TCGA-A1-A0SN-01','Primary Solid Tumor',11); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (12,'TCGA-A1-A0SO-01','Primary Solid Tumor',12); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (13,'TCGA-A1-A0SP-01','Primary Solid Tumor',13); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (14,'TCGA-A1-A0SQ-01','Primary Solid Tumor',14); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (15,'TCGA-A1-B0SO-01','Primary Solid Tumor',15); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (16,'TCGA-A1-B0SP-01','Primary Solid Tumor',16); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (17,'TCGA-A1-B0SQ-01','Primary Solid Tumor',17); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (18,'TCGA-A1-A0SB-02','Primary Solid Tumor',1); +INSERT INTO sample (INTERNAL_ID,STABLE_ID,SAMPLE_TYPE,PATIENT_ID) VALUES (19,'TCGA-A1-A0SB-01','Primary Solid Tumor',18); + + +INSERT INTO mutation_event (MUTATION_EVENT_ID,ENTREZ_GENE_ID,CHR,START_POSITION,END_POSITION,REFERENCE_ALLELE,TUMOR_SEQ_ALLELE,PROTEIN_CHANGE,MUTATION_TYPE,FUNCTIONAL_IMPACT_SCORE,FIS_VALUE,LINK_XVAR,LINK_PDB,LINK_MSA,NCBI_BUILD,STRAND,VARIANT_TYPE,DB_SNP_RS,DB_SNP_VAL_STATUS,ONCOTATOR_DBSNP_RS,ONCOTATOR_REFSEQ_MRNA_ID,ONCOTATOR_CODON_CHANGE,ONCOTATOR_UNIPROT_ENTRY_NAME,ONCOTATOR_UNIPROT_ACCESSION,ONCOTATOR_PROTEIN_POS_START,ONCOTATOR_PROTEIN_POS_END,CANONICAL_TRANSCRIPT,KEYWORD) VALUES (2038,672,'17',41244748,41244748,'G','A','Q934*','Nonsense_Mutation','NA',0,'getma.org/?cm=var&var=hg19,17,41244748,G,A&fts=all','NA','NA','37','+','SNP','rs80357223','unknown','rs80357223','NM_007294','c.(2800-2802)CAG>TAG','BRCA1_HUMAN','P38398',934,934,1,'BRCA1 truncating'); +INSERT INTO mutation_event (MUTATION_EVENT_ID,ENTREZ_GENE_ID,CHR,START_POSITION,END_POSITION,REFERENCE_ALLELE,TUMOR_SEQ_ALLELE,PROTEIN_CHANGE,MUTATION_TYPE,FUNCTIONAL_IMPACT_SCORE,FIS_VALUE,LINK_XVAR,LINK_PDB,LINK_MSA,NCBI_BUILD,STRAND,VARIANT_TYPE,DB_SNP_RS,DB_SNP_VAL_STATUS,ONCOTATOR_DBSNP_RS,ONCOTATOR_REFSEQ_MRNA_ID,ONCOTATOR_CODON_CHANGE,ONCOTATOR_UNIPROT_ENTRY_NAME,ONCOTATOR_UNIPROT_ACCESSION,ONCOTATOR_PROTEIN_POS_START,ONCOTATOR_PROTEIN_POS_END,CANONICAL_TRANSCRIPT,KEYWORD) VALUES (22604,672,'17',41258504,41258504,'A','C','C61G','Missense_Mutation','H',4.355,'getma.org/?cm=var&var=hg19,17,41258504,A,C&fts=all','getma.org/pdb.php?prot=BRCA1_HUMAN&from=24&to=64&var=C61G','getma.org/?cm=msa&ty=f&p=BRCA1_HUMAN&rb=24&re=64&var=C61G','37','+','SNP','rs28897672','byCluster','rs28897672','NM_007294','c.(181-183)TGT>GGT','BRCA1_HUMAN','P38398',61,61,1,'BRCA1 C61 missense'); +INSERT INTO mutation_event (MUTATION_EVENT_ID,ENTREZ_GENE_ID,CHR,START_POSITION,END_POSITION,REFERENCE_ALLELE,TUMOR_SEQ_ALLELE,PROTEIN_CHANGE,MUTATION_TYPE,FUNCTIONAL_IMPACT_SCORE,FIS_VALUE,LINK_XVAR,LINK_PDB,LINK_MSA,NCBI_BUILD,STRAND,VARIANT_TYPE,DB_SNP_RS,DB_SNP_VAL_STATUS,ONCOTATOR_DBSNP_RS,ONCOTATOR_REFSEQ_MRNA_ID,ONCOTATOR_CODON_CHANGE,ONCOTATOR_UNIPROT_ENTRY_NAME,ONCOTATOR_UNIPROT_ACCESSION,ONCOTATOR_PROTEIN_POS_START,ONCOTATOR_PROTEIN_POS_END,CANONICAL_TRANSCRIPT,KEYWORD) VALUES (2039,672,'17',41276033,41276033,'C','T','C27_splice','Splice_Site','NA',1.4013e-45,'NA','NA','NA','37','+','SNP','rs80358010','byCluster','rs80358010','NM_007294','c.e2+1','NA','NA',-1,-1,1,'BRCA1 truncating'); +INSERT INTO mutation_event (MUTATION_EVENT_ID,ENTREZ_GENE_ID,CHR,START_POSITION,END_POSITION,REFERENCE_ALLELE,TUMOR_SEQ_ALLELE,PROTEIN_CHANGE,MUTATION_TYPE,FUNCTIONAL_IMPACT_SCORE,FIS_VALUE,LINK_XVAR,LINK_PDB,LINK_MSA,NCBI_BUILD,STRAND,VARIANT_TYPE,DB_SNP_RS,DB_SNP_VAL_STATUS,ONCOTATOR_DBSNP_RS,ONCOTATOR_REFSEQ_MRNA_ID,ONCOTATOR_CODON_CHANGE,ONCOTATOR_UNIPROT_ENTRY_NAME,ONCOTATOR_UNIPROT_ACCESSION,ONCOTATOR_PROTEIN_POS_START,ONCOTATOR_PROTEIN_POS_END,CANONICAL_TRANSCRIPT,KEYWORD) VALUES (2040,207,'17',41244748,41244748,'G','A','Q934*','Nonsense_Mutation','NA',0,'getma.org/?cm=var&var=hg19,17,41244748,G,A&fts=all','NA','NA','37','+','SNP','rs80357223','unknown','rs80357223','NM_007294','c.(2800-2802)CAG>TAG','BRCA1_HUMAN','P38398',934,934,1,'BRCA1 truncating'); +INSERT INTO mutation_event (MUTATION_EVENT_ID,ENTREZ_GENE_ID,CHR,START_POSITION,END_POSITION,REFERENCE_ALLELE,TUMOR_SEQ_ALLELE,PROTEIN_CHANGE,MUTATION_TYPE,FUNCTIONAL_IMPACT_SCORE,FIS_VALUE,LINK_XVAR,LINK_PDB,LINK_MSA,NCBI_BUILD,STRAND,VARIANT_TYPE,DB_SNP_RS,DB_SNP_VAL_STATUS,ONCOTATOR_DBSNP_RS,ONCOTATOR_REFSEQ_MRNA_ID,ONCOTATOR_CODON_CHANGE,ONCOTATOR_UNIPROT_ENTRY_NAME,ONCOTATOR_UNIPROT_ACCESSION,ONCOTATOR_PROTEIN_POS_START,ONCOTATOR_PROTEIN_POS_END,CANONICAL_TRANSCRIPT,KEYWORD) VALUES (2041,207,'17',41258504,41258504,'A','C','C61G','Missense_Mutation','H',4.355,'getma.org/?cm=var&var=hg19,17,41258504,A,C&fts=all','getma.org/pdb.php?prot=BRCA1_HUMAN&from=24&to=64&var=C61G','getma.org/?cm=msa&ty=f&p=BRCA1_HUMAN&rb=24&re=64&var=C61G','37','+','SNP','rs28897672','byCluster','rs28897672','NM_007294','c.(181-183)TGT>GGT','BRCA1_HUMAN','P38398',61,61,1,'BRCA1 C61 missense'); +INSERT INTO mutation_event (MUTATION_EVENT_ID,ENTREZ_GENE_ID,CHR,START_POSITION,END_POSITION,REFERENCE_ALLELE,TUMOR_SEQ_ALLELE,PROTEIN_CHANGE,MUTATION_TYPE,FUNCTIONAL_IMPACT_SCORE,FIS_VALUE,LINK_XVAR,LINK_PDB,LINK_MSA,NCBI_BUILD,STRAND,VARIANT_TYPE,DB_SNP_RS,DB_SNP_VAL_STATUS,ONCOTATOR_DBSNP_RS,ONCOTATOR_REFSEQ_MRNA_ID,ONCOTATOR_CODON_CHANGE,ONCOTATOR_UNIPROT_ENTRY_NAME,ONCOTATOR_UNIPROT_ACCESSION,ONCOTATOR_PROTEIN_POS_START,ONCOTATOR_PROTEIN_POS_END,CANONICAL_TRANSCRIPT,KEYWORD) VALUES (2042,208,'17',41276033,41276033,'C','T','C27_splice','Splice_Site','NA',1.4013e-45,'NA','NA','NA','37','+','SNP','rs80358010','byCluster','rs80358010','NM_007294','c.e2+1','NA','NA',-1,-1,1,'BRCA1 truncating'); +INSERT INTO mutation_event (MUTATION_EVENT_ID,ENTREZ_GENE_ID,CHR,START_POSITION,END_POSITION,REFERENCE_ALLELE,TUMOR_SEQ_ALLELE,PROTEIN_CHANGE,MUTATION_TYPE,FUNCTIONAL_IMPACT_SCORE,FIS_VALUE,LINK_XVAR,LINK_PDB,LINK_MSA,NCBI_BUILD,STRAND,VARIANT_TYPE,DB_SNP_RS,DB_SNP_VAL_STATUS,ONCOTATOR_DBSNP_RS,ONCOTATOR_REFSEQ_MRNA_ID,ONCOTATOR_CODON_CHANGE,ONCOTATOR_UNIPROT_ENTRY_NAME,ONCOTATOR_UNIPROT_ACCESSION,ONCOTATOR_PROTEIN_POS_START,ONCOTATOR_PROTEIN_POS_END,CANONICAL_TRANSCRIPT,KEYWORD) VALUES (1000,2064,'NA',-1,-1,'NA','','ERBB2-TEST Fusion','Fusion','NA',-1,'NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA',-1,-1,1,'ERBB2-TEST Fusion'); + +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (2038,6,6, 'Putative_Driver', 'Pathogenic', 'Tier 1', 'Highly Actionable'); +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (22604,6,6, 'Putative_Passenger', 'Pathogenic', 'Tier 2', 'Potentially Actionable'); +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (2039,6,12, 'Putative_Passenger', 'Pathogenic', 'Tier 1', 'Highly Actionable'); +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (2038,6,7, 'Putative_Driver', 'Pathogenic', 'Tier 2', 'Potentially Actionable'); +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (2039,6,13, 'Putative_Driver', 'Pathogenic', 'Tier 1', 'Highly Actionable'); +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (2040,6,1, 'Putative_Driver', 'Pathogenic', 'Tier 1', 'Highly Actionable'); +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (2041,6,2, 'Putative_Passenger', 'Pathogenic', 'Tier 2', 'Potentially Actionable'); +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (2042,6,3, 'Putative_Passenger', 'Pathogenic', 'Tier 1', 'Highly Actionable'); +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (2042,8,15, 'Putative_Driver', 'Pathogenic', 'Tier 1', 'Highly Actionable'); + +INSERT INTO mutation (MUTATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID,ENTREZ_GENE_ID,CENTER,SEQUENCER,MUTATION_STATUS,VALIDATION_STATUS,TUMOR_SEQ_ALLELE1,TUMOR_SEQ_ALLELE2,MATCHED_NORM_SAMPLE_BARCODE,MATCH_NORM_SEQ_ALLELE1,MATCH_NORM_SEQ_ALLELE2,TUMOR_VALIDATION_ALLELE1,TUMOR_VALIDATION_ALLELE2,MATCH_NORM_VALIDATION_ALLELE1,MATCH_NORM_VALIDATION_ALLELE2,VERIFICATION_STATUS,SEQUENCING_PHASE,SEQUENCE_SOURCE,VALIDATION_METHOD,SCORE,BAM_FILE,TUMOR_ALT_COUNT,TUMOR_REF_COUNT,NORMAL_ALT_COUNT,NORMAL_REF_COUNT,AMINO_ACID_CHANGE,ANNOTATION_JSON) VALUES (2038,6,6,672,'genome.wustl.edu','IlluminaGAIIx','NA','Unknown','G','A','TCGA-A1-A0SH-10A-03D-A099-09','G','A','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',1,0,-1,-1,'cyclases/Protein','{"zygosity":{"status": "heterozygous"}}'); +INSERT INTO mutation (MUTATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID,ENTREZ_GENE_ID,CENTER,SEQUENCER,MUTATION_STATUS,VALIDATION_STATUS,TUMOR_SEQ_ALLELE1,TUMOR_SEQ_ALLELE2,MATCHED_NORM_SAMPLE_BARCODE,MATCH_NORM_SEQ_ALLELE1,MATCH_NORM_SEQ_ALLELE2,TUMOR_VALIDATION_ALLELE1,TUMOR_VALIDATION_ALLELE2,MATCH_NORM_VALIDATION_ALLELE1,MATCH_NORM_VALIDATION_ALLELE2,VERIFICATION_STATUS,SEQUENCING_PHASE,SEQUENCE_SOURCE,VALIDATION_METHOD,SCORE,BAM_FILE,TUMOR_ALT_COUNT,TUMOR_REF_COUNT,NORMAL_ALT_COUNT,NORMAL_REF_COUNT,AMINO_ACID_CHANGE,ANNOTATION_JSON) VALUES (22604,6,6,672,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','A','C','TCGA-A1-A0SH-10A-03D-A099-09','A','C','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1,'cyclases/Protein','{"zygosity":{"status": "heterozygous"}}'); +INSERT INTO mutation (MUTATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID,ENTREZ_GENE_ID,CENTER,SEQUENCER,MUTATION_STATUS,VALIDATION_STATUS,TUMOR_SEQ_ALLELE1,TUMOR_SEQ_ALLELE2,MATCHED_NORM_SAMPLE_BARCODE,MATCH_NORM_SEQ_ALLELE1,MATCH_NORM_SEQ_ALLELE2,TUMOR_VALIDATION_ALLELE1,TUMOR_VALIDATION_ALLELE2,MATCH_NORM_VALIDATION_ALLELE1,MATCH_NORM_VALIDATION_ALLELE2,VERIFICATION_STATUS,SEQUENCING_PHASE,SEQUENCE_SOURCE,VALIDATION_METHOD,SCORE,BAM_FILE,TUMOR_ALT_COUNT,TUMOR_REF_COUNT,NORMAL_ALT_COUNT,NORMAL_REF_COUNT,AMINO_ACID_CHANGE,ANNOTATION_JSON) VALUES (2039,6,12,672,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','T','T','TCGA-A1-A0SO-10A-03D-A099-09','T','T','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1,'cyclases/Protein','{"zygosity":{"status": "heterozygous"}}'); +INSERT INTO mutation (MUTATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID,ENTREZ_GENE_ID,CENTER,SEQUENCER,MUTATION_STATUS,VALIDATION_STATUS,TUMOR_SEQ_ALLELE1,TUMOR_SEQ_ALLELE2,MATCHED_NORM_SAMPLE_BARCODE,MATCH_NORM_SEQ_ALLELE1,MATCH_NORM_SEQ_ALLELE2,TUMOR_VALIDATION_ALLELE1,TUMOR_VALIDATION_ALLELE2,MATCH_NORM_VALIDATION_ALLELE1,MATCH_NORM_VALIDATION_ALLELE2,VERIFICATION_STATUS,SEQUENCING_PHASE,SEQUENCE_SOURCE,VALIDATION_METHOD,SCORE,BAM_FILE,TUMOR_ALT_COUNT,TUMOR_REF_COUNT,NORMAL_ALT_COUNT,NORMAL_REF_COUNT,AMINO_ACID_CHANGE,ANNOTATION_JSON) VALUES (2038,6,7,672,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','G','A','TCGA-A1-A0SH-10A-03D-A099-09','G','A','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1,'cyclases/Protein','{"zygosity":{"status": "heterozygous"}}'); +INSERT INTO mutation (MUTATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID,ENTREZ_GENE_ID,CENTER,SEQUENCER,MUTATION_STATUS,VALIDATION_STATUS,TUMOR_SEQ_ALLELE1,TUMOR_SEQ_ALLELE2,MATCHED_NORM_SAMPLE_BARCODE,MATCH_NORM_SEQ_ALLELE1,MATCH_NORM_SEQ_ALLELE2,TUMOR_VALIDATION_ALLELE1,TUMOR_VALIDATION_ALLELE2,MATCH_NORM_VALIDATION_ALLELE1,MATCH_NORM_VALIDATION_ALLELE2,VERIFICATION_STATUS,SEQUENCING_PHASE,SEQUENCE_SOURCE,VALIDATION_METHOD,SCORE,BAM_FILE,TUMOR_ALT_COUNT,TUMOR_REF_COUNT,NORMAL_ALT_COUNT,NORMAL_REF_COUNT,AMINO_ACID_CHANGE,ANNOTATION_JSON) VALUES (2039,6,13,672,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','T','T','TCGA-A1-A0SO-10A-03D-A099-09','T','T','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1,'cyclases/Protein','{"zygosity":{"status": "heterozygous"}}'); +INSERT INTO mutation (MUTATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID,ENTREZ_GENE_ID,CENTER,SEQUENCER,MUTATION_STATUS,VALIDATION_STATUS,TUMOR_SEQ_ALLELE1,TUMOR_SEQ_ALLELE2,MATCHED_NORM_SAMPLE_BARCODE,MATCH_NORM_SEQ_ALLELE1,MATCH_NORM_SEQ_ALLELE2,TUMOR_VALIDATION_ALLELE1,TUMOR_VALIDATION_ALLELE2,MATCH_NORM_VALIDATION_ALLELE1,MATCH_NORM_VALIDATION_ALLELE2,VERIFICATION_STATUS,SEQUENCING_PHASE,SEQUENCE_SOURCE,VALIDATION_METHOD,SCORE,BAM_FILE,TUMOR_ALT_COUNT,TUMOR_REF_COUNT,NORMAL_ALT_COUNT,NORMAL_REF_COUNT,AMINO_ACID_CHANGE,ANNOTATION_JSON) VALUES (2040,6,1,207,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','G','A','TCGA-A1-A0SH-10A-03D-A099-09','G','A','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1,'cyclases/Protein','{"zygosity":{"status": "heterozygous"}}'); +INSERT INTO mutation (MUTATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID,ENTREZ_GENE_ID,CENTER,SEQUENCER,MUTATION_STATUS,VALIDATION_STATUS,TUMOR_SEQ_ALLELE1,TUMOR_SEQ_ALLELE2,MATCHED_NORM_SAMPLE_BARCODE,MATCH_NORM_SEQ_ALLELE1,MATCH_NORM_SEQ_ALLELE2,TUMOR_VALIDATION_ALLELE1,TUMOR_VALIDATION_ALLELE2,MATCH_NORM_VALIDATION_ALLELE1,MATCH_NORM_VALIDATION_ALLELE2,VERIFICATION_STATUS,SEQUENCING_PHASE,SEQUENCE_SOURCE,VALIDATION_METHOD,SCORE,BAM_FILE,TUMOR_ALT_COUNT,TUMOR_REF_COUNT,NORMAL_ALT_COUNT,NORMAL_REF_COUNT,AMINO_ACID_CHANGE,ANNOTATION_JSON) VALUES (2041,6,2,207,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','A','C','TCGA-A1-A0SH-10A-03D-A099-09','A','C','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',0,-1,-1,-1,'cyclases/Protein','{"zygosity":{"status": "heterozygous"}}'); +INSERT INTO mutation (MUTATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID,ENTREZ_GENE_ID,CENTER,SEQUENCER,MUTATION_STATUS,VALIDATION_STATUS,TUMOR_SEQ_ALLELE1,TUMOR_SEQ_ALLELE2,MATCHED_NORM_SAMPLE_BARCODE,MATCH_NORM_SEQ_ALLELE1,MATCH_NORM_SEQ_ALLELE2,TUMOR_VALIDATION_ALLELE1,TUMOR_VALIDATION_ALLELE2,MATCH_NORM_VALIDATION_ALLELE1,MATCH_NORM_VALIDATION_ALLELE2,VERIFICATION_STATUS,SEQUENCING_PHASE,SEQUENCE_SOURCE,VALIDATION_METHOD,SCORE,BAM_FILE,TUMOR_ALT_COUNT,TUMOR_REF_COUNT,NORMAL_ALT_COUNT,NORMAL_REF_COUNT,AMINO_ACID_CHANGE,ANNOTATION_JSON) VALUES (2042,6,3,208,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','T','T','TCGA-A1-A0SO-10A-03D-A099-09','T','T','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1,'cyclases/Protein','{"zygosity":{"status": "heterozygous"}}'); +INSERT INTO mutation (MUTATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID,ENTREZ_GENE_ID,CENTER,SEQUENCER,MUTATION_STATUS,VALIDATION_STATUS,TUMOR_SEQ_ALLELE1,TUMOR_SEQ_ALLELE2,MATCHED_NORM_SAMPLE_BARCODE,MATCH_NORM_SEQ_ALLELE1,MATCH_NORM_SEQ_ALLELE2,TUMOR_VALIDATION_ALLELE1,TUMOR_VALIDATION_ALLELE2,MATCH_NORM_VALIDATION_ALLELE1,MATCH_NORM_VALIDATION_ALLELE2,VERIFICATION_STATUS,SEQUENCING_PHASE,SEQUENCE_SOURCE,VALIDATION_METHOD,SCORE,BAM_FILE,TUMOR_ALT_COUNT,TUMOR_REF_COUNT,NORMAL_ALT_COUNT,NORMAL_REF_COUNT,AMINO_ACID_CHANGE,ANNOTATION_JSON) VALUES (2042,8,15,208,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','T','T','TCGA-A1-A0SO-10A-03D-A099-09','T','T','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1,'cyclases/Protein','{"zygosity":{"status": "heterozygous"}}'); +INSERT INTO mutation (MUTATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID,ENTREZ_GENE_ID,CENTER,SEQUENCER,MUTATION_STATUS,VALIDATION_STATUS,TUMOR_SEQ_ALLELE1,TUMOR_SEQ_ALLELE2,MATCHED_NORM_SAMPLE_BARCODE,MATCH_NORM_SEQ_ALLELE1,MATCH_NORM_SEQ_ALLELE2,TUMOR_VALIDATION_ALLELE1,TUMOR_VALIDATION_ALLELE2,MATCH_NORM_VALIDATION_ALLELE1,MATCH_NORM_VALIDATION_ALLELE2,VERIFICATION_STATUS,SEQUENCING_PHASE,SEQUENCE_SOURCE,VALIDATION_METHOD,SCORE,BAM_FILE,TUMOR_ALT_COUNT,TUMOR_REF_COUNT,NORMAL_ALT_COUNT,NORMAL_REF_COUNT,AMINO_ACID_CHANGE,ANNOTATION_JSON) VALUES (1000,6,7,2064,'uranus','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA','NA',-1,-1,-1,-1,'','{"zygosity":{"status": "heterozygous"}}'); + +INSERT INTO gene_panel (INTERNAL_ID,STABLE_ID,DESCRIPTION) VALUES (1,'TESTPANEL1','A test panel consisting of a few genes'); +INSERT INTO gene_panel (INTERNAL_ID,STABLE_ID,DESCRIPTION) VALUES (2,'TESTPANEL2','Another test panel consisting of a few genes'); + +INSERT INTO gene_panel_list (INTERNAL_ID,GENE_ID) VALUES (1,207); +INSERT INTO gene_panel_list (INTERNAL_ID,GENE_ID) VALUES (1,369); +INSERT INTO gene_panel_list (INTERNAL_ID,GENE_ID) VALUES (1,672); +INSERT INTO gene_panel_list (INTERNAL_ID,GENE_ID) VALUES (2,207); +INSERT INTO gene_panel_list (INTERNAL_ID,GENE_ID) VALUES (2,208); +INSERT INTO gene_panel_list (INTERNAL_ID,GENE_ID) VALUES (2,4893); + +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (1,2,1); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (1,3,1); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (1,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (1,6,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (2,2,2); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (2,3,1); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (2,4,2); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (2,5,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (2,6,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (3,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (3,3,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (3,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (3,6,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (4,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (4,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (5,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (5,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (6,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (6,3,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (6,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (6,6,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (7,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (7,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (7,6,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (8,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (8,3,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (8,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (8,6,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (9,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (9,3,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (9,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (9,6,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (10,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (10,3,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (10,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (10,6,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (11,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (11,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (12,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (12,3,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (12,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (12,6,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (13,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (13,3,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (13,4,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (13,6,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (14,2,NULL); +INSERT INTO sample_profile (SAMPLE_ID,GENETIC_PROFILE_ID,PANEL_ID) VALUES (14,4,NULL); + +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (1,'study_tcga_pub_all','other',1,'All Tumors','All tumor samples'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (2,'study_tcga_pub_acgh','other',1,'Tumors aCGH','All tumors with aCGH data'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (3,'study_tcga_pub_cnaseq','other',1,'Tumors with sequencing and aCGH data','All tumor samples that have CNA and sequencing data'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (4,'study_tcga_pub_complete','other',1,'Complete samples (mutations, copy-number, expression)','Samples with complete data'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (5,'study_tcga_pub_log2CNA','other',1,'Tumors log2 copy-number','All tumors with log2 copy-number data'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (6,'study_tcga_pub_methylation_hm27','all_cases_with_mutation_data',1,'Tumors with methylation data','All samples with methylation (HM27) data'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (7,'study_tcga_pub_mrna','other',1,'Tumors with mRNA data (Agilent microarray)','All samples with mRNA expression data'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (8,'study_tcga_pub_sequenced','other',1,'Sequenced Tumors','All sequenced samples'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (9,'study_tcga_pub_cna','other',1,'Tumor Samples with CNA data','All tumors with CNA data'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (10,'study_tcga_pub_rna_seq_v2_mrna','other',1,'Tumor Samples with mRNA data (RNA Seq V2)','All samples with mRNA expression data'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (11,'study_tcga_pub_microrna','other',1,'Tumors with microRNA data (microRNA-Seq)','All samples with microRNA data'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (12,'study_tcga_pub_rppa','other',1,'Tumor Samples with RPPA data','Tumors with reverse phase protein array (RPPA) data for about 200 antibodies'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (13,'study_tcga_pub_3way_complete','other',1,'All Complete Tumors','All tumor samples that have mRNA,CNA and sequencing data'); +INSERT INTO sample_list (LIST_ID,STABLE_ID,CATEGORY,CANCER_STUDY_ID,NAME,DESCRIPTION) VALUES (14,'acc_tcga_all','other',2,'All Tumors','All tumor samples'); + +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,1); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,3); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,4); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,5); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,6); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,7); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,8); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,9); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,10); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,11); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,12); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,13); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (1,14); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,1); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,3); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,4); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,5); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,6); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,7); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,8); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,9); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,10); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,11); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,12); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,13); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (2,14); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (3,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (3,3); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (3,6); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (3,8); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (3,9); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (3,10); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (3,12); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (4,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (4,3); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (4,6); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (4,8); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (4,9); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (4,10); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (4,12); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,1); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,3); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,4); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,5); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,6); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,7); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,8); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,9); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,10); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,11); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,12); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,13); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (5,14); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (6,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (7,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (7,3); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (7,6); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (7,8); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (7,9); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (7,10); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (7,12); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (7,13); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (8,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (8,3); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (8,6); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (8,8); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (8,9); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (8,10); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (8,12); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (9,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (9,3); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (9,6); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (9,8); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (9,9); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (9,10); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (9,12); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (10,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (10,3); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (10,6); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (10,8); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (10,9); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (10,10); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (10,12); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (13,2); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (13,3); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (13,6); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (13,8); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (13,9); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (13,10); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (13,12); +INSERT INTO sample_list_list (LIST_ID,SAMPLE_ID) VALUES (14,15); + +INSERT INTO copy_number_seg (SEG_ID,CANCER_STUDY_ID,SAMPLE_ID,CHR,START,END,NUM_PROBES,SEGMENT_MEAN) VALUES (50236594,1,1,'1',324556,180057677,291,0.0519); +INSERT INTO copy_number_seg (SEG_ID,CANCER_STUDY_ID,SAMPLE_ID,CHR,START,END,NUM_PROBES,SEGMENT_MEAN) VALUES (50236595,1,1,'2',224556,327677,391,0.0219); +INSERT INTO copy_number_seg (SEG_ID,CANCER_STUDY_ID,SAMPLE_ID,CHR,START,END,NUM_PROBES,SEGMENT_MEAN) VALUES (50236593,1,2, '2',1402650,190262486,207,0.0265); +INSERT INTO copy_number_seg (SEG_ID,CANCER_STUDY_ID,SAMPLE_ID,CHR,START,END,NUM_PROBES,SEGMENT_MEAN) VALUES (50236592,1,3, '3',1449872,194238390,341,0.0347); +INSERT INTO copy_number_seg (SEG_ID,CANCER_STUDY_ID,SAMPLE_ID,CHR,START,END,NUM_PROBES,SEGMENT_MEAN) VALUES (50236500,2,15, '2',14492,19423390,41,0.047); + +INSERT INTO clinical_patient (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (1,'RETROSPECTIVE_COLLECTION','NO'); +INSERT INTO clinical_patient (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (1,'FORM_COMPLETION_DATE','2013-12-5'); +INSERT INTO clinical_patient (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (1,'OTHER_PATIENT_ID','286CF147-B7F7-4A05-8E41-7FBD3717AD71'); +INSERT INTO clinical_patient (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (2,'PROSPECTIVE_COLLECTION','YES'); +INSERT INTO clinical_patient (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (15,'DFS_MONTHS','5.72'); +INSERT INTO clinical_patient (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (15,'DFS_STATUS','1:Recurred/Progressed'); +INSERT INTO clinical_patient (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (15,'OS_MONTHS','12.3'); +INSERT INTO clinical_patient (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (15,'OS_STATUS','0:LIVING'); +INSERT INTO clinical_patient (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (18,'RETROSPECTIVE_COLLECTION','NO'); + +INSERT INTO clinical_sample (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (1,'OTHER_SAMPLE_ID','5C631CE8-F96A-4C35-A459-556FC4AB21E1'); +INSERT INTO clinical_sample (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (1,'DAYS_TO_COLLECTION','276'); +INSERT INTO clinical_sample (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (1,'IS_FFPE','NO'); +INSERT INTO clinical_sample (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (2,'OCT_EMBEDDED','false'); +INSERT INTO clinical_sample (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (2,'PATHOLOGY_REPORT_FILE_NAME','TCGA-GC-A3BM.F3408556-9259-4700-B9A0-F41E516B420C.pdf'); +INSERT INTO clinical_sample (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (2,'SAMPLE_TYPE','Primary Tumor'); +INSERT INTO clinical_sample (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (15,'OTHER_SAMPLE_ID','91E7F41C-17B3-4724-96EF-D3C207B964E1'); +INSERT INTO clinical_sample (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (15,'DAYS_TO_COLLECTION','111'); +INSERT INTO clinical_sample (INTERNAL_ID,ATTR_ID,ATTR_VALUE) VALUES (19,'DAYS_TO_COLLECTION','111'); + + +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('RETROSPECTIVE_COLLECTION','Tissue Retrospective Collection Indicator','Text indicator for the time frame of tissue procurement,indicating that the tissue was obtained and stored prior to the initiation of the project.','STRING',1,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('PROSPECTIVE_COLLECTION','Tissue Prospective Collection Indicator','Text indicator for the time frame of tissue procurement,indicating that the tissue was procured in parallel to the project.','STRING',1,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('FORM_COMPLETION_DATE','Form completion date','Form completion date','STRING',1,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('OTHER_PATIENT_ID','Other Patient ID','Legacy DMP patient identifier (DMPnnnn)','STRING',1,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('DFS_MONTHS','Disease Free (Months)','Disease free (months) since initial treatment.','NUMBER',1,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('DFS_STATUS','Disease Free Status','Disease free status since initial treatment.','STRING',1,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('OS_MONTHS','Overall Survival (Months)','Overall survival in months since initial diagonosis.','NUMBER',1,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('OS_STATUS','Overall Survival Status','Overall patient survival status.','STRING',1,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('OTHER_SAMPLE_ID','Other Sample ID','Legacy DMP sample identifier (DMPnnnn)','STRING',0,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('DAYS_TO_COLLECTION','Days to Sample Collection.','Days to sample collection.','STRING',0,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('IS_FFPE','Is FFPE','If the sample is from FFPE','STRING',0,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('OCT_EMBEDDED','Oct embedded','Oct embedded','STRING',0,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('PATHOLOGY_REPORT_FILE_NAME','Pathology Report File Name','Pathology Report File Name','STRING',0,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('SAMPLE_TYPE','Sample Type','The type of sample (i.e.,normal,primary,met,recurrence).','STRING',0,'1',1); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('RETROSPECTIVE_COLLECTION','Tissue Retrospective Collection Indicator','Text indicator for the time frame of tissue procurement,indicating that the tissue was obtained and stored prior to the initiation of the project.','STRING',1,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('PROSPECTIVE_COLLECTION','Tissue Prospective Collection Indicator','Text indicator for the time frame of tissue procurement,indicating that the tissue was procured in parallel to the project.','STRING',1,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('FORM_COMPLETION_DATE','Form completion date','Form completion date','STRING',1,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('OTHER_PATIENT_ID','Other Patient ID','Legacy DMP patient identifier (DMPnnnn)','STRING',1,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('DFS_MONTHS','Disease Free (Months)','Disease free (months) since initial treatment.','NUMBER',1,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('DFS_STATUS','Disease Free Status','Disease free status since initial treatment.','STRING',1,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('OS_MONTHS','Overall Survival (Months)','Overall survival in months since initial diagonosis.','NUMBER',1,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('OS_STATUS','Overall Survival Status','Overall patient survival status.','STRING',1,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('OTHER_SAMPLE_ID','Other Sample ID','Legacy DMP sample identifier (DMPnnnn)','STRING',0,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('DAYS_TO_COLLECTION','Days to Sample Collection.','Days to sample collection.','STRING',0,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('IS_FFPE','Is FFPE','If the sample is from FFPE','STRING',0,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('OCT_EMBEDDED','Oct embedded','Oct embedded','STRING',0,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('PATHOLOGY_REPORT_FILE_NAME','Pathology Report File Name','Pathology Report File Name','STRING',0,'1',2); +INSERT INTO clinical_attribute_meta (ATTR_ID,DISPLAY_NAME,DESCRIPTION,DATATYPE,PATIENT_ATTRIBUTE,PRIORITY,CANCER_STUDY_ID) VALUES ('SAMPLE_TYPE','Sample Type','The type of sample (i.e.,normal,primary,met,recurrence).','STRING',0,'1',2); + +-- Add genes, genetic entities and structural variants for structural_variant +INSERT INTO genetic_entity (ID,ENTITY_TYPE) VALUES(21,'GENE'); +INSERT INTO genetic_entity (ID,ENTITY_TYPE) VALUES(22,'GENE'); +INSERT INTO genetic_entity (ID,ENTITY_TYPE) VALUES(23,'GENE'); +INSERT INTO genetic_entity (ID,ENTITY_TYPE) VALUES(24,'GENE'); +INSERT INTO genetic_entity (ID,ENTITY_TYPE) VALUES(25,'GENE'); +INSERT INTO genetic_entity (ID,ENTITY_TYPE) VALUES(26,'GENE'); +INSERT INTO genetic_entity (ID,ENTITY_TYPE) VALUES(27,'GENE'); + +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(57670,'KIAA1549',21,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(8031,'NCOA4',22,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(5979,'RET',23,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(27436,'EML4',24,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(238,'ALK',25,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(7113,'TMPRSS2',26,'protein-coding'); +INSERT INTO gene (ENTREZ_GENE_ID,HUGO_GENE_SYMBOL,GENETIC_ENTITY_ID,TYPE) VALUES(2078,'ERG',27,'protein-coding'); + +INSERT INTO structural_variant (INTERNAL_ID, GENETIC_PROFILE_ID, SAMPLE_ID, SITE1_ENTREZ_GENE_ID, SITE1_ENSEMBL_TRANSCRIPT_ID, SITE1_EXON, SITE1_CHROMOSOME, SITE1_POSITION, SITE1_DESCRIPTION, SITE2_ENTREZ_GENE_ID, SITE2_ENSEMBL_TRANSCRIPT_ID, SITE2_EXON, SITE2_CHROMOSOME, SITE2_POSITION, SITE2_DESCRIPTION, NCBI_BUILD, DNA_SUPPORT, RNA_SUPPORT, TUMOR_READ_COUNT, TUMOR_VARIANT_COUNT, ANNOTATION, EVENT_INFO, COMMENTS, EXTERNAL_ANNOTATION) + VALUES(1, 7, 1, 57670, 'ENST00000242365', 15, '7', 138536968, 'KIAA1549-BRAF.K16B10.COSF509_1', 673, 'ENST00000288602', 10, '7' , 140482957, 'KIAA1549-BRAF.K16B10.COSF509_2', 'GRCh37', 'no', 'yes', 100000, 90000, 'KIAA1549-BRAF.K16B10.COSF509', 'Fusion', 'Gain-of-Function', 'COSMIC:COSF509'); +INSERT INTO structural_variant (GENETIC_PROFILE_ID, SAMPLE_ID, SITE1_ENTREZ_GENE_ID, SITE1_ENSEMBL_TRANSCRIPT_ID, SITE1_EXON, SITE1_CHROMOSOME, SITE1_POSITION, SITE1_DESCRIPTION, SITE2_ENTREZ_GENE_ID, SITE2_ENSEMBL_TRANSCRIPT_ID, SITE2_EXON, SITE2_CHROMOSOME, SITE2_POSITION, SITE2_DESCRIPTION, NCBI_BUILD, DNA_SUPPORT, RNA_SUPPORT, TUMOR_READ_COUNT, TUMOR_VARIANT_COUNT, ANNOTATION, EVENT_INFO, COMMENTS, EXTERNAL_ANNOTATION) + VALUES(7, 1, 8031, 'ENST00000344348', 7, '10', 51582939, 'NCOA4-RET.N7R12_1', 5979, 'ENST00000340058', 12, '10', 43612031, 'NCOA4-RET.N7R12_2', 'GRCh37', 'no', 'yes', 100001, 80000, 'NCOA4-RET.N7R1', 'Fusion', 'Gain-of-Function', NULL); +INSERT INTO structural_variant (GENETIC_PROFILE_ID, SAMPLE_ID, SITE1_ENTREZ_GENE_ID, SITE1_ENSEMBL_TRANSCRIPT_ID, SITE1_EXON, SITE1_CHROMOSOME, SITE1_POSITION, SITE1_DESCRIPTION, SITE2_ENTREZ_GENE_ID, SITE2_ENSEMBL_TRANSCRIPT_ID, SITE2_EXON, SITE2_CHROMOSOME, SITE2_POSITION, SITE2_DESCRIPTION, NCBI_BUILD, DNA_SUPPORT, RNA_SUPPORT, TUMOR_READ_COUNT, TUMOR_VARIANT_COUNT, ANNOTATION, EVENT_INFO, COMMENTS, EXTERNAL_ANNOTATION) + VALUES(7, 1, 27436, 'ENST00000318522', 6, '2', 42492091, 'EML4-ALK.E6bA20.AB374362_1', 238, 'ENST00000389048', 20, '2', 29446394, 'EML4-ALK.E6bA20.AB374362_2', 'GRCh37', 'no', 'yes', 100002, 70000, 'EML4-ALK.E6bA20.AB374362', 'Fusion', 'Gain-of-Function', 'GENBANK:AB374362'); +INSERT INTO structural_variant (GENETIC_PROFILE_ID, SAMPLE_ID, SITE1_ENTREZ_GENE_ID, SITE1_ENSEMBL_TRANSCRIPT_ID, SITE1_EXON, SITE1_CHROMOSOME, SITE1_POSITION, SITE1_DESCRIPTION, SITE2_ENTREZ_GENE_ID, SITE2_ENSEMBL_TRANSCRIPT_ID, SITE2_EXON, SITE2_CHROMOSOME, SITE2_POSITION, SITE2_DESCRIPTION, NCBI_BUILD, DNA_SUPPORT, RNA_SUPPORT, TUMOR_READ_COUNT, TUMOR_VARIANT_COUNT, ANNOTATION, EVENT_INFO, COMMENTS, EXTERNAL_ANNOTATION) + VALUES(7, 1, 7113, 'ENST00000332149', 1, '21', 42880007, 'TMPRSS2-ERG.T1E2.COSF23.1_1', 2078, 'ENST00000442448', 2, '21', 39956869, 'TMPRSS2-ERG.T1E2.COSF23.1_2', 'GRCh37', 'no', 'yes', 100003, 60000, 'TMPRSS2-ERG.T1E2.COSF23.1', 'Fusion', 'Gain-of-Function', 'COSMIC:COSF23'); +INSERT INTO structural_variant (GENETIC_PROFILE_ID, SAMPLE_ID, SITE1_ENTREZ_GENE_ID, SITE1_ENSEMBL_TRANSCRIPT_ID, SITE1_EXON, SITE1_CHROMOSOME, SITE1_POSITION, SITE1_DESCRIPTION, SITE2_ENTREZ_GENE_ID, SITE2_ENSEMBL_TRANSCRIPT_ID, SITE2_EXON, SITE2_CHROMOSOME, SITE2_POSITION, SITE2_DESCRIPTION, NCBI_BUILD, DNA_SUPPORT, RNA_SUPPORT, TUMOR_READ_COUNT, TUMOR_VARIANT_COUNT, ANNOTATION, EVENT_INFO, COMMENTS, EXTERNAL_ANNOTATION) + VALUES(7, 2, 57670, 'ENST00000242365', 15, '7', 138536968, 'KIAA1549-BRAF.K16B10.COSF509_1', 673, 'ENST00000288602', 10, '7' , 140482957, 'KIAA1549-BRAF.K16B10.COSF509_2', 'GRCh37', 'no', 'yes', 100000, 90000, 'KIAA1549-BRAF.K16B10.COSF509', 'Fusion', 'Gain-of-Function', 'COSMIC:COSF509'); +INSERT INTO structural_variant (GENETIC_PROFILE_ID, SAMPLE_ID, SITE1_ENTREZ_GENE_ID, SITE1_ENSEMBL_TRANSCRIPT_ID, SITE1_EXON, SITE1_CHROMOSOME, SITE1_POSITION, SITE1_DESCRIPTION, SITE2_ENTREZ_GENE_ID, SITE2_ENSEMBL_TRANSCRIPT_ID, SITE2_EXON, SITE2_CHROMOSOME, SITE2_POSITION, SITE2_DESCRIPTION, NCBI_BUILD, DNA_SUPPORT, RNA_SUPPORT, TUMOR_READ_COUNT, TUMOR_VARIANT_COUNT, ANNOTATION, EVENT_INFO, COMMENTS, EXTERNAL_ANNOTATION) + VALUES(8, 15, 57670, 'ENST00000242365', 15, '7', 138536968, 'KIAA1549-BRAF.K16B10.COSF509_1', 673, 'ENST00000288602', 10, '7' , 140482957, 'KIAA1549-BRAF.K16B10.COSF509_2', 'GRCh37', 'no', 'yes', 100000, 90000, 'KIAA1549-BRAF.K16B10.COSF509', 'Fusion', 'Gain-of-Function', 'COSMIC:COSF509'); +INSERT INTO structural_variant (GENETIC_PROFILE_ID, SAMPLE_ID, SITE1_ENTREZ_GENE_ID, SITE1_ENSEMBL_TRANSCRIPT_ID, SITE1_EXON, SITE1_CHROMOSOME, SITE1_POSITION, SITE1_DESCRIPTION, SITE2_ENTREZ_GENE_ID, SITE2_ENSEMBL_TRANSCRIPT_ID, SITE2_EXON, SITE2_CHROMOSOME, SITE2_POSITION, SITE2_DESCRIPTION, NCBI_BUILD, DNA_SUPPORT, RNA_SUPPORT, TUMOR_READ_COUNT, TUMOR_VARIANT_COUNT, ANNOTATION, EVENT_INFO, COMMENTS, EXTERNAL_ANNOTATION) + VALUES(8, 15, 8031, 'ENST00000344348', 7, '10', 51582939, 'NCOA4-RET.N7R12_1', 5979, 'ENST00000340058', 12, '10', 43612031, 'NCOA4-RET.N7R12_2', 'GRCh37', 'no', 'yes', 100001, 80000, 'NCOA4-RET.N7R1', 'Fusion', 'Gain-of-Function', NULL); + +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (1,7,1, 'Putative_Passenger', 'Pathogenic', 'Tier 1', 'Potentially Actionable'); + +INSERT INTO mut_sig (CANCER_STUDY_ID,ENTREZ_GENE_ID,RANK,NumBasesCovered,NumMutations,P_VALUE,Q_VALUE) VALUES (1,207,1,998421,17,0.00000315,0.00233); +INSERT INTO mut_sig (CANCER_STUDY_ID,ENTREZ_GENE_ID,RANK,NumBasesCovered,NumMutations,P_VALUE,Q_VALUE) VALUES (1,208,2,3200341,351,0.000000012,0.00000000000212); + +INSERT INTO genetic_alteration (GENETIC_PROFILE_ID,GENETIC_ENTITY_ID,`VALUES`) VALUES (2,1,'-0.4674,-0.6270,-1.2266,-1.2479,-1.2262,0.6962,-0.3338,-0.1264,0.7559,-1.1267,-0.5893,-1.1546,-1.0027,-1.3157,'); +INSERT INTO genetic_alteration (GENETIC_PROFILE_ID,GENETIC_ENTITY_ID,`VALUES`) VALUES (2,2,'1.4146,-0.0662,-0.8585,-1.6576,-0.3552,-0.8306,0.8102,0.1146,0.3498,0.0349,0.4927,-0.8665,-0.4754,-0.7221,'); +INSERT INTO genetic_alteration (GENETIC_PROFILE_ID,GENETIC_ENTITY_ID,`VALUES`) VALUES (3,2,'-0.8097,0.7360,-1.0225,-0.8922,0.7247,0.3537,1.2702,-0.1419,'); + +INSERT INTO cna_event (CNA_EVENT_ID,ENTREZ_GENE_ID,ALTERATION) VALUES (1,207,-2); +INSERT INTO cna_event (CNA_EVENT_ID,ENTREZ_GENE_ID,ALTERATION) VALUES (2,208,2); +INSERT INTO cna_event (CNA_EVENT_ID,ENTREZ_GENE_ID,ALTERATION) VALUES (3,207,2); + +INSERT INTO sample_cna_event (CNA_EVENT_ID,SAMPLE_ID,GENETIC_PROFILE_ID) VALUES (1,1,2); +INSERT INTO sample_cna_event (CNA_EVENT_ID,SAMPLE_ID,GENETIC_PROFILE_ID) VALUES (2,1,2); +INSERT INTO sample_cna_event (CNA_EVENT_ID,SAMPLE_ID,GENETIC_PROFILE_ID) VALUES (3,2,2); + +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (1,2,1, 'Putative_Driver', 'Pathogenic', 'Tier 1', 'Highly Actionable'); +INSERT INTO alteration_driver_annotation (ALTERATION_EVENT_ID,GENETIC_PROFILE_ID,SAMPLE_ID, DRIVER_FILTER, DRIVER_FILTER_ANNOTATION, DRIVER_TIERS_FILTER, DRIVER_TIERS_FILTER_ANNOTATION) VALUES (3,2,2, 'Putative_Passenger', 'Pathogenic', 'Tier 2', 'Potentially Actionable'); + +INSERT INTO gistic (GISTIC_ROI_ID,CANCER_STUDY_ID,CHROMOSOME,CYTOBAND,WIDE_PEAK_START,WIDE_PEAK_END,Q_VALUE,AMP) VALUES (1,1,1,'1q32.32',123,136,0.0208839997649193,0); +INSERT INTO gistic (GISTIC_ROI_ID,CANCER_STUDY_ID,CHROMOSOME,CYTOBAND,WIDE_PEAK_START,WIDE_PEAK_END,Q_VALUE,AMP) VALUES (2,1,2,'2q30.32',324234,324280,0.000323799991747364,1); +INSERT INTO gistic (GISTIC_ROI_ID,CANCER_STUDY_ID,CHROMOSOME,CYTOBAND,WIDE_PEAK_START,WIDE_PEAK_END,Q_VALUE,AMP) VALUES (3,2,1,'1q3.32',123,136,0.000000129710002738648,0); + +INSERT INTO gistic_to_gene (GISTIC_ROI_ID,ENTREZ_GENE_ID) VALUES (1,207); +INSERT INTO gistic_to_gene (GISTIC_ROI_ID,ENTREZ_GENE_ID) VALUES (1,208); +INSERT INTO gistic_to_gene (GISTIC_ROI_ID,ENTREZ_GENE_ID) VALUES (2,207); +INSERT INTO gistic_to_gene (GISTIC_ROI_ID,ENTREZ_GENE_ID) VALUES (3,208); + +INSERT INTO clinical_event (CLINICAL_EVENT_ID,PATIENT_ID,START_DATE,STOP_DATE,EVENT_TYPE) VALUES (1,1,123,NULL,'STATUS'); +INSERT INTO clinical_event (CLINICAL_EVENT_ID,PATIENT_ID,START_DATE,STOP_DATE,EVENT_TYPE) VALUES (2,1,233,345,'SPECIMEN'); +INSERT INTO clinical_event (CLINICAL_EVENT_ID,PATIENT_ID,START_DATE,STOP_DATE,EVENT_TYPE) VALUES (3,2,213,445,'TREATMENT'); +INSERT INTO clinical_event (CLINICAL_EVENT_ID,PATIENT_ID,START_DATE,STOP_DATE,EVENT_TYPE) VALUES (4,2,211,441,'SEQENCING'); + +INSERT INTO clinical_event_data (CLINICAL_EVENT_ID,KEY,VALUE) VALUES (1,'STATUS','radiographic_progression'); +INSERT INTO clinical_event_data (CLINICAL_EVENT_ID,KEY,VALUE) VALUES (1,'SAMPLE_ID','TCGA-A1-A0SB-01'); +INSERT INTO clinical_event_data (CLINICAL_EVENT_ID,KEY,VALUE) VALUES (2,'SURGERY','OA II Initial'); +INSERT INTO clinical_event_data (CLINICAL_EVENT_ID,KEY,VALUE) VALUES (3,'EVENT_TYPE_DETAILED','AA III Recurrence1'); +INSERT INTO clinical_event_data (CLINICAL_EVENT_ID,KEY,VALUE) VALUES (3,'AGENT','Madeupanib'); +INSERT INTO clinical_event_data (CLINICAL_EVENT_ID,KEY,VALUE) VALUES (3,'SAMPLE_ID','TCGA-A1-A0SD-01'); +INSERT INTO clinical_event_data (CLINICAL_EVENT_ID,KEY,VALUE) VALUES (4,'SAMPLE_ID','TCGA-A1-A0SD-01'); + +INSERT INTO geneset (ID,GENETIC_ENTITY_ID,EXTERNAL_ID,NAME,DESCRIPTION,REF_LINK) VALUES (1,17,'MORF_ATRX','MORF ATRX name','Morf description','https://morf_link'); +INSERT INTO geneset (ID,GENETIC_ENTITY_ID,EXTERNAL_ID,NAME,DESCRIPTION,REF_LINK) VALUES (2,18,'HINATA_NFKB_MATRIX','HINATA NFKB MATRIX name','Hinata description','https://hinata_link'); + +INSERT INTO geneset_gene (GENESET_ID,ENTREZ_GENE_ID) VALUES (1,207); +INSERT INTO geneset_gene (GENESET_ID,ENTREZ_GENE_ID) VALUES (1,208); +INSERT INTO geneset_gene (GENESET_ID,ENTREZ_GENE_ID) VALUES (1,10000); +INSERT INTO geneset_gene (GENESET_ID,ENTREZ_GENE_ID) VALUES (2,369); +INSERT INTO geneset_gene (GENESET_ID,ENTREZ_GENE_ID) VALUES (2,472); + +INSERT INTO genetic_alteration (GENETIC_PROFILE_ID,GENETIC_ENTITY_ID,`VALUES`) VALUES (9,17,'-0.0670,-0.6270,-1.2266,-1.2079,-1.2262,0.6962,-0.3338,-0.1260,0.7559,-1.1267,-0.5893,-1.1506,-1.0027,-1.3157,'); +INSERT INTO genetic_alteration (GENETIC_PROFILE_ID,GENETIC_ENTITY_ID,`VALUES`) VALUES (9,18,'1.0106,-0.0662,-0.8585,-1.6576,-0.3552,-0.8306,0.8102,0.1106,0.3098,0.0309,0.0927,-0.8665,-0.0750,-0.7221,'); + + +-- Root node -> sub node A -> parent node 1 -> MORF_ATRX +-- " " " -> HINATA_NFKB_MATRIX +-- " " -> parent node 2 -> HINATA_NFKB_MATRIX +-- Root node -> sub node B -> x (dead branch) +INSERT INTO geneset_hierarchy_node (NODE_ID,NODE_NAME,PARENT_ID) VALUES (1,'Root node',NULL); +INSERT INTO geneset_hierarchy_node (NODE_ID,NODE_NAME,PARENT_ID) VALUES (2,'Sub node A',1); +INSERT INTO geneset_hierarchy_node (NODE_ID,NODE_NAME,PARENT_ID) VALUES (3,'Sub node B',1); +INSERT INTO geneset_hierarchy_node (NODE_ID,NODE_NAME,PARENT_ID) VALUES (4,'Parent node 1',2); +INSERT INTO geneset_hierarchy_node (NODE_ID,NODE_NAME,PARENT_ID) VALUES (5,'Parent node 2',2); + +INSERT INTO geneset_hierarchy_leaf (NODE_ID,GENESET_ID) VALUES (4,1); +INSERT INTO geneset_hierarchy_leaf (NODE_ID,GENESET_ID) VALUES (4,2); +INSERT INTO geneset_hierarchy_leaf (NODE_ID,GENESET_ID) VALUES (5,2); + +INSERT INTO mutation_count_by_keyword (GENETIC_PROFILE_ID,KEYWORD,ENTREZ_GENE_ID,KEYWORD_COUNT,GENE_COUNT) VALUES (6, 'AKT1 truncating', 207, 54, 64); +INSERT INTO mutation_count_by_keyword (GENETIC_PROFILE_ID,KEYWORD,ENTREZ_GENE_ID,KEYWORD_COUNT,GENE_COUNT) VALUES (6, NULL, 207, 21, 22); +INSERT INTO mutation_count_by_keyword (GENETIC_PROFILE_ID,KEYWORD,ENTREZ_GENE_ID,KEYWORD_COUNT,GENE_COUNT) VALUES (6, 'ARAF G1513 missense', 369, 1, 2); +INSERT INTO mutation_count_by_keyword (GENETIC_PROFILE_ID,KEYWORD,ENTREZ_GENE_ID,KEYWORD_COUNT,GENE_COUNT) VALUES (6, 'ARAF G1514 missense', 369, 4, 7); +INSERT INTO mutation_count_by_keyword (GENETIC_PROFILE_ID,KEYWORD,ENTREZ_GENE_ID,KEYWORD_COUNT,GENE_COUNT) VALUES (8, 'NOC2L truncating', 26155, 1, 3); + +INSERT INTO users (EMAIL, NAME, ENABLED) VALUES ('mockemail@email.com', 'MOCK USER', 1); +INSERT INTO users (EMAIL, NAME, ENABLED) VALUES ('mockemail2@email.com', 'MOCK USER 2', 1); +INSERT INTO users (EMAIL, NAME, ENABLED) VALUES ('mockemail3@email.com', 'MOCK USER 3', 1); +INSERT INTO users (EMAIL, NAME, ENABLED) VALUES ('mockemail4@email.com', 'MOCK USER 4', 1); + +INSERT INTO data_access_tokens (TOKEN, USERNAME, EXPIRATION, CREATION) VALUES ('6c9a641e-9719-4b09-974c-f17e089b37e8', 'mockemail@email.com', '2018-11-12 11:11:15+00:00', '2018-10-12 11:11:15+00:00'); +INSERT INTO data_access_tokens (TOKEN, USERNAME, EXPIRATION, CREATION) VALUES ('6c9a641e-9719-fake-data-f17e089b37e8', 'mockemail2@email.com', '2018-5-14 11:11:15+00:00', '2018-4-14 11:11:15+00:00'); +INSERT INTO data_access_tokens (TOKEN, USERNAME, EXPIRATION, CREATION) VALUES ('12345678-119e-4bC9-9a4c-f123kl9b37e8', 'mockemail3@email.com', '2017-1-12 11:11:15+00:00', '2016-12-12 11:11:15+00:00'); +INSERT INTO data_access_tokens (TOKEN, USERNAME, EXPIRATION, CREATION) VALUES ('6c9a641e-9719-4b09-974c-4rb1tr4ry5tr', 'mockemail3@email.com', '2017-10-9 11:11:15+00:00', '2017-9-9 11:11:15+00:00'); +INSERT INTO data_access_tokens (TOKEN, USERNAME, EXPIRATION, CREATION) VALUES ('1337rand-ki1n-4bna-974c-s4sk3n4rut0l', 'mockemail3@email.com', '2018-8-25 11:11:15+00:00', '2018-7-25 11:11:15+00:00'); +INSERT INTO data_access_tokens (TOKEN, USERNAME, EXPIRATION, CREATION) VALUES ('12445678-119e-4bC9-9a4c-f124kl9b47e8', 'mockemail4@email.com', '2017-1-12 11:11:15+00:00', '2016-12-12 11:11:15+00:00'); +INSERT INTO data_access_tokens (TOKEN, USERNAME, EXPIRATION, CREATION) VALUES ('6cokl41e-9719-4b09-974c-4rb1tr4ry5tr', 'mockemail4@email.com', '2017-10-9 11:11:15+00:00', '2017-9-9 11:11:15+00:00'); +INSERT INTO data_access_tokens (TOKEN, USERNAME, EXPIRATION, CREATION) VALUES ('1447rand-ki1n-4bna-974c-s4sk4n4rut0l', 'mockemail4@email.com', '2018-8-25 11:11:15+00:00', '2018-7-25 11:11:15+00:00'); + +-- treatment test data +INSERT INTO generic_entity_properties (ID,GENETIC_ENTITY_ID,NAME,VALUE) VALUES (1,19,'NAME','Tanespimycin'); +INSERT INTO generic_entity_properties (ID,GENETIC_ENTITY_ID,NAME,VALUE) VALUES (2,19,'DESCRIPTION','Hsp90 inhibitor'); +INSERT INTO generic_entity_properties (ID,GENETIC_ENTITY_ID,NAME,VALUE) VALUES (3,19,'URL','https://en.wikipedia.org/wiki/Tanespimycin'); +INSERT INTO generic_entity_properties (ID,GENETIC_ENTITY_ID,NAME,VALUE) VALUES (4,20,'NAME','Larotrectinib'); +INSERT INTO generic_entity_properties (ID,GENETIC_ENTITY_ID,NAME,VALUE) VALUES (5,20,'DESCRIPTION','TrkA/B/C inhibitor'); +INSERT INTO generic_entity_properties (ID,GENETIC_ENTITY_ID,NAME,VALUE) VALUES (6,20,'URL','https://en.wikipedia.org/wiki/Larotrectinib'); +INSERT INTO genetic_alteration (GENETIC_PROFILE_ID,GENETIC_ENTITY_ID,`VALUES`) VALUES (11,19,'-0.0670,-0.6270,-1.2266,-1.2079,-1.2262,0.6962,-0.3338,-0.1260,0.7559,-1.1267,-0.5893,-1.1506,-1.0027,-1.3157,'); +INSERT INTO genetic_alteration (GENETIC_PROFILE_ID,GENETIC_ENTITY_ID,`VALUES`) VALUES (11,20,'1.0106,-0.0662,-0.8585,-1.6576,-0.3552,-0.8306,0.8102,0.1106,0.3098,0.0309,0.0927,-0.8665,-0.0750,-0.7221,'); + +-- allele specific copy number data +INSERT INTO allele_specific_copy_number (MUTATION_EVENT_ID, GENETIC_PROFILE_ID, SAMPLE_ID, ASCN_INTEGER_COPY_NUMBER, ASCN_METHOD, CCF_EXPECTED_COPIES_UPPER, CCF_EXPECTED_COPIES, CLONAL, MINOR_COPY_NUMBER, EXPECTED_ALT_COPIES, TOTAL_COPY_NUMBER) VALUES (2040, 6, 1, 3, 'FACETS', 1.25, 1.75, 'CLONAL', 2, 1, 4); +INSERT INTO allele_specific_copy_number (MUTATION_EVENT_ID, GENETIC_PROFILE_ID, SAMPLE_ID, ASCN_INTEGER_COPY_NUMBER, ASCN_METHOD, CCF_EXPECTED_COPIES_UPPER, CCF_EXPECTED_COPIES, CLONAL, MINOR_COPY_NUMBER, EXPECTED_ALT_COPIES, TOTAL_COPY_NUMBER) VALUES (2038, 6, 6, 1, 'FACETS', 1.25, 1.75, 'SUBCLONAL', 1, 1, 2); +-- generic assay test data +-- mutational signature test data +INSERT INTO generic_entity_properties (ID,GENETIC_ENTITY_ID,NAME,VALUE) VALUES (7,28,'name','mean_1'); +INSERT INTO generic_entity_properties (ID,GENETIC_ENTITY_ID,NAME,VALUE) VALUES (8,28,'description','description of mean_1'); +INSERT INTO generic_entity_properties (ID,GENETIC_ENTITY_ID,NAME,VALUE) VALUES (9,29,'name','mean_2'); +INSERT INTO generic_entity_properties (ID,GENETIC_ENTITY_ID,NAME,VALUE) VALUES (10,29,'description','description of mean_2'); + +INSERT INTO genetic_alteration (GENETIC_PROFILE_ID,GENETIC_ENTITY_ID,`VALUES`) VALUES (12,28,'-0.0670,-0.6270,-1.2266,-1.2079,-1.2262,0.6962,-0.3338,-0.1260,0.7559,-1.1267,-0.5893,-1.1506,-1.0027,-1.3157,'); +INSERT INTO genetic_alteration (GENETIC_PROFILE_ID,GENETIC_ENTITY_ID,`VALUES`) VALUES (12,29,'1.0106,-0.0662,-0.8585,-1.6576,-0.3552,-0.8306,0.8102,0.1106,0.3098,0.0309,0.0927,-0.8665,-0.0750,-0.7221,'); diff --git a/src/test/resources/logback-test.xml b/src/test/resources/logback-test.xml new file mode 100644 index 00000000000..7622b7344b2 --- /dev/null +++ b/src/test/resources/logback-test.xml @@ -0,0 +1,13 @@ + + + + + %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n + + + + + + + + diff --git a/core/src/test/resources/logback.xml b/src/test/resources/logback.xml similarity index 100% rename from core/src/test/resources/logback.xml rename to src/test/resources/logback.xml diff --git a/web/src/test/resources/maven.properties b/src/test/resources/maven.properties similarity index 100% rename from web/src/test/resources/maven.properties rename to src/test/resources/maven.properties diff --git a/web/src/test/resources/numerical-custom-dataset-filter-applier.json b/src/test/resources/numerical-custom-dataset-filter-applier.json similarity index 100% rename from web/src/test/resources/numerical-custom-dataset-filter-applier.json rename to src/test/resources/numerical-custom-dataset-filter-applier.json diff --git a/src/test/resources/security/keycloak-configuration-generated.json b/src/test/resources/security/keycloak-configuration-generated.json new file mode 100644 index 00000000000..2f4d513791a --- /dev/null +++ b/src/test/resources/security/keycloak-configuration-generated.json @@ -0,0 +1,1904 @@ +{ + "id": "cbio", + "realm": "cbio", + "displayName": "cBioPortal", + "notBefore": 0, + "defaultSignatureAlgorithm": "RS256", + "revokeRefreshToken": false, + "refreshTokenMaxReuse": 0, + "accessTokenLifespan": 300, + "accessTokenLifespanForImplicitFlow": 900, + "ssoSessionIdleTimeout": 1800, + "ssoSessionMaxLifespan": 36000, + "ssoSessionIdleTimeoutRememberMe": 0, + "ssoSessionMaxLifespanRememberMe": 0, + "offlineSessionIdleTimeout": 2592000, + "offlineSessionMaxLifespanEnabled": false, + "offlineSessionMaxLifespan": 5184000, + "clientSessionIdleTimeout": 0, + "clientSessionMaxLifespan": 0, + "clientOfflineSessionIdleTimeout": 0, + "clientOfflineSessionMaxLifespan": 0, + "accessCodeLifespan": 60, + "accessCodeLifespanUserAction": 300, + "accessCodeLifespanLogin": 1800, + "actionTokenGeneratedByAdminLifespan": 43200, + "actionTokenGeneratedByUserLifespan": 300, + "oauth2DeviceCodeLifespan": 600, + "oauth2DevicePollingInterval": 5, + "enabled": true, + "sslRequired": "none", + "registrationAllowed": false, + "registrationEmailAsUsername": false, + "rememberMe": false, + "verifyEmail": false, + "loginWithEmailAllowed": false, + "duplicateEmailsAllowed": false, + "resetPasswordAllowed": false, + "editUsernameAllowed": false, + "bruteForceProtected": false, + "permanentLockout": false, + "maxFailureWaitSeconds": 900, + "minimumQuickLoginWaitSeconds": 60, + "waitIncrementSeconds": 60, + "quickLoginCheckMilliSeconds": 1000, + "maxDeltaTimeSeconds": 43200, + "failureFactor": 30, + "defaultRole": { + "id": "bb770785-c99d-4491-ac1c-6f1a571e43dc", + "name": "default-roles-cbio", + "description": "${role_default-roles}", + "composite": true, + "clientRole": false, + "containerId": "cbio" + }, + "defaultGroups": [ + "/PUBLIC_STUDIES" + ], + "requiredCredentials": [ + "password" + ], + "otpPolicyType": "totp", + "otpPolicyAlgorithm": "HmacSHA1", + "otpPolicyInitialCounter": 0, + "otpPolicyDigits": 6, + "otpPolicyLookAheadWindow": 1, + "otpPolicyPeriod": 30, + "otpSupportedApplications": [ + "FreeOTP", + "Google Authenticator" + ], + "webAuthnPolicyRpEntityName": "keycloak", + "webAuthnPolicySignatureAlgorithms": [ + "ES256" + ], + "webAuthnPolicyRpId": "", + "webAuthnPolicyAttestationConveyancePreference": "not specified", + "webAuthnPolicyAuthenticatorAttachment": "not specified", + "webAuthnPolicyRequireResidentKey": "not specified", + "webAuthnPolicyUserVerificationRequirement": "not specified", + "webAuthnPolicyCreateTimeout": 0, + "webAuthnPolicyAvoidSameAuthenticatorRegister": false, + "webAuthnPolicyAcceptableAaguids": [], + "webAuthnPolicyPasswordlessRpEntityName": "keycloak", + "webAuthnPolicyPasswordlessSignatureAlgorithms": [ + "ES256" + ], + "webAuthnPolicyPasswordlessRpId": "", + "webAuthnPolicyPasswordlessAttestationConveyancePreference": "not specified", + "webAuthnPolicyPasswordlessAuthenticatorAttachment": "not specified", + "webAuthnPolicyPasswordlessRequireResidentKey": "not specified", + "webAuthnPolicyPasswordlessUserVerificationRequirement": "not specified", + "webAuthnPolicyPasswordlessCreateTimeout": 0, + "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister": false, + "webAuthnPolicyPasswordlessAcceptableAaguids": [], + "scopeMappings": [ + { + "clientScope": "offline_access", + "roles": [ + "offline_access" + ] + } + ], + "clientScopeMappings": { + "account": [ + { + "client": "account-console", + "roles": [ + "manage-account" + ] + } + ] + }, + "clients": [ + { + "id": "447cb732-9d28-411b-b712-22a7986c029e", + "clientId": "account", + "name": "${client_account}", + "rootUrl": "${authBaseUrl}", + "baseUrl": "/realms/cbio/account/", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "redirectUris": [ + "/realms/cbio/account/*" + ], + "webOrigins": [], + "notBefore": 0, + "bearerOnly": false, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": false, + "serviceAccountsEnabled": false, + "publicClient": true, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": {}, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": false, + "nodeReRegistrationTimeout": 0, + "defaultClientScopes": [ + "web-origins", + "roles", + "profile", + "email" + ], + "optionalClientScopes": [ + "address", + "phone", + "offline_access", + "microprofile-jwt" + ] + }, + { + "id": "fc7e8395-b7f3-43d3-9c07-3c7e3cacb7ee", + "clientId": "account-console", + "name": "${client_account-console}", + "rootUrl": "${authBaseUrl}", + "baseUrl": "/realms/cbio/account/", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "redirectUris": [ + "/realms/cbio/account/*" + ], + "webOrigins": [], + "notBefore": 0, + "bearerOnly": false, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": false, + "serviceAccountsEnabled": false, + "publicClient": true, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": { + "pkce.code.challenge.method": "S256" + }, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": false, + "nodeReRegistrationTimeout": 0, + "protocolMappers": [ + { + "id": "3cf582e8-7b31-448d-972b-32ce17e9527b", + "name": "audience resolve", + "protocol": "openid-connect", + "protocolMapper": "oidc-audience-resolve-mapper", + "consentRequired": false, + "config": {} + } + ], + "defaultClientScopes": [ + "web-origins", + "roles", + "profile", + "email" + ], + "optionalClientScopes": [ + "address", + "phone", + "offline_access", + "microprofile-jwt" + ] + }, + { + "id": "91156b1e-4585-440c-a706-058af196d622", + "clientId": "admin-cli", + "name": "${client_admin-cli}", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "redirectUris": [], + "webOrigins": [], + "notBefore": 0, + "bearerOnly": false, + "consentRequired": false, + "standardFlowEnabled": false, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": true, + "serviceAccountsEnabled": false, + "publicClient": true, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": {}, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": false, + "nodeReRegistrationTimeout": 0, + "defaultClientScopes": [ + "web-origins", + "roles", + "profile", + "email" + ], + "optionalClientScopes": [ + "address", + "phone", + "offline_access", + "microprofile-jwt" + ] + }, + { + "id": "83f338ca-c017-428e-818b-f497a4d0a493", + "clientId": "broker", + "name": "${client_broker}", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "redirectUris": [], + "webOrigins": [], + "notBefore": 0, + "bearerOnly": true, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": false, + "serviceAccountsEnabled": false, + "publicClient": false, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": {}, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": false, + "nodeReRegistrationTimeout": 0, + "defaultClientScopes": [ + "web-origins", + "roles", + "profile", + "email" + ], + "optionalClientScopes": [ + "address", + "phone", + "offline_access", + "microprofile-jwt" + ] + }, + { + "id": "4b5c2aa6-bc44-458d-ac1f-1a2166520f4d", + "clientId": "cbioportal", + "adminUrl": "http://host.testcontainers.internal:8080/saml", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "redirectUris": [ + "http://host.testcontainers.internal:8080/*" + ], + "webOrigins": [ + "http://host.testcontainers.internal:8080" + ], + "notBefore": 0, + "bearerOnly": false, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": false, + "serviceAccountsEnabled": false, + "publicClient": false, + "frontchannelLogout": false, + "protocol": "saml", + "attributes": { + "saml.assertion.signature": "false", + "saml.force.post.binding": "false", + "saml_single_logout_service_url_post": "http://host.testcontainers.internal:8080/logout/saml2/slo", + "signing.private.key": "MIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQDJTDNHzHv19kM4tVLOIjpR/vez4QJk70PMbghQBdCp1Er1yU8GkQRMx0QtumQB2ML1p2f63EEd7WsAPMEVYNQv6MHJDhAIDt+npWmYrGl3PrkVA3GNzZcD+GQEMZdGcECvfocOy2tB6iMOhdnFqu4L/QfFG2yJ+CpimpijvW78cJ35oYmOTnD7R9LBAJQuBlQDpOvB+I/dFeCiNKw61HQy0nMf6oe0pBy4E7bImQ0HY/soxBnzbvPUzbBvnhb2d97l3wn6ElUMrZuQSyI+OyVgBMyv9gcgV4Wq16oEuNkWFIdY2j8GeiDlqy9KJAttgLXBjGua2lRML0a+nrfF1VbBLgyzAZZP2IS/P3QYcSE2GbPWiWXjov2vF63/VnARzQhPhuLGilWp1Nxqr0HztgSiAyx0D3wqEBic0ERAQDVuHQZdjPd7RJaJ6MBnZH9mMVQOrjspIP5Sc6Z7omou26LPTjWNwmNWnfrq1sU8ADg4Uj09PWYcuWhPKxe6K9Zm4PLGXA0fR/fCVPDKaJPXIC7FGzDDdh/uSb9OURlgHwe319FCdvm1k7xD6tEfsyORjWJFoYvyT015j9LdBuO5fwt40EPCzNezqWCaimES7u3Puyg+4mbnRDh1UuouHOHVZ4jWySrrEktI0l6JkxrqdT2ilw7ICtmFx2fsjO9qso4tGwIDAQABAoICAFT7iprBRYQtl2uVgYPtB1oenkyerfgW2zSvL2s5SUKpkYv6lRZcmsgfSDVV/2qYLJaxOkC6Q/NyjD3paEqyOmKPjWBoQ3RjcyC/wLjn8Q6auGCat5H6Pcs7Tl5G4WqncWelrzcbwght5Kb481t0MlN1W5ZnYYdN8fb29YILM5P3p3oALKabjy9Gvz8kE2rq2QVA1xdo7LOVzOQuAJhFoVjjaB8NUIV+03ETQZOmqc149EvdnmcbbG1m+RnmUCN1r/C0HO4qVyWnFYnxbl9/cOP8or2WzKNmz9O0gN7Fe0DLIejtGraNUN4lSy2t0fVE5Xb05WjWy8fuHZvUPhmTW7Ap1WBGPpfjsbp+e5kx10rwWrWlKgcF7tNUUN9v0vJWKoF2Lr0+C5dphIz6LEZO7lThjh3oOXjN4jbtoZbd9tZ614dwUTPlllgQiHhNYeAK13REpX/Jx6Dgn6w5s2g+e7++4U93FMNkYjzArXAYhQd6CisFH32fr9Cc1WuUwhe6E7fABcynmMfpZhkwcCTPT+Qb1CGsMvDUdETY1J4pL+Wlgwxidd0IKyOgIu6SpQ6JEeghJzl4XOnCWlJIlO8rts7oy/0PaPWanl5rCUeeK5g32yv85bvUNJnkZ2YGBPM8c8wqsL91A+30WX1tE65JzqNI3LGDLD/WGzCYMMR1Q0/hAoIBAQD/R6bpASFPhjgDJwqjrnEhd92I5q97f+fkGqbEsVVaZQrkw2O74EyFjMWwNNG1VzYeOAAjbRkv0mXg6v6Djbuz5omkjF+qwyxXmgpYe8aJ5sU34BWVoIJsXkdCkAC49q2KsoiYT+fFw3IjlpVcIvfkV7YnVeveJ47Z9+xjrBSkKEIfZhBsd57wV+0LZ42Q/ULuPPnTlXQ77nqtBu6DusOjO1cYod5M4k0JlJwqNn39rwxCgIr5CI1UqsVJHsZz+lGQsu5ClC02V8HOTh8UjJtAcVslo+i6gLOHxB4zvDRzAXnsFIrrukqp4Bz4djoE8np/mWDtSpanoBuF84/prpTvAoIBAQDJ3ZDIBZlmTPhDUEbb6jG/AEsqeDUBgG5igLHxUg3StWgVL4cbNcRyeKD5VxMrO7pIfBm02GRqCRpmxqeOadlBgTe52oG5MIrEVIHt1KT6E1LAP7jD0ABvf3P7e9wtXlDRAsIGLIDIsb4toQFotUi6ayl07zB0+vJ1tWU+qB1ZJWWYRpDmCQG6/1vz3dBkjRPGzT79zXSxbY2beNxKYIsL1LVR0BeLd4Tbn8mLL+fxjRep4qGO1fu+w62RqQvClSUIBgZJlpEcuhRFbAL+zhqmuaq0MkcF65bHQCs/iddF9dUpNYSzUnR6N7fb9MkJZX9ww7tHLbefu+lGVTD/8mKVAoIBAQCw4JOsxGSxNj1fKdD8YqTuXKA5+CTEvHYPHcxJYtnR/UrUAPH8vkgnDMf49FANhvTvcTvfT/twoCaI9ioNOspAt07NnZm3tu3lcM0UTAbfi+9AbNpnx0Q3FAfp/d8SSZErFdMBPfRImchfEjpBEdWS+Jc0oBsC3YPkUR0QXq4ao+5U1SIyFZwhybpr+X8kY+bZLZSoXtifofiMJM5kpaZiVn5dieJ+gRqBtd+SfBlGCeDDv08LiDps3Lo/lLxKpbmYOfJOXV8KVTnq2UQ9t8LmnuRZqz1Y5E4AlwmaLSBmQzKYOg+bj4OmOqu4GCrRPLVV7g8zu0exs4T+hilD7/wvAoIBAE3KMyvRdI7GpHkUK2o9spPfIhgooIyGmIMfAvNy4l7Lh2N6oD7tFlnigG31jy5+4sdiA2n8ZZ2zCliGvzUTNySWDgpx2MGroh4MTtF+u2CfJ6lsJOBYfIJ7BA/qaCuXh98zh99nMO2mCRp+TBO0oGUuPJiSQAMkXWDc2TovALhEwATRVK9A00jjdOTiGpdVAkT+/QJDNW/WPtal2YZT8+FIQ+NWJGybTzhvN/SKLoCYFYFjE0z+yvd1YqKaGS0P2mhgIfYjrqH6Vyt1dyYH+J89Nzofkd0HL2BzKvdeP/X2yQELXarY4IfkhtadWwdi9JxY4QeJ55QHjtqKo8pN9o0CggEAWg3kw1pLAsEtRO+5w+TLMAx8JXxhbIG2ITtGHU/eCd7YO2Ax+LHd8UjjJI59QXpmytfLd6czy8bvYaAW/LtbOPYwdWGVetWMjim5KceAz64koHcBsVK1Su4i72MWagbEcwfAlZbwrIEcccZHW0/wTvwtZzllafCJhplN0+Et6vPLG00v7+x9krZOT9zGAFbt79J/kNrwZ1BRNJIl+UPM1K18AKA4xFEmClqctejNSLLubPrwC0Vdokm8tYDRBI6r+M8w6wcHW9NXYQzQ27UZKAqrtyFXJ1coQQpwHCYJi7vztacjMOLEPuKvKNSWUanv0GBYB9lnaY3wS/ncYpn8MQ==", + "saml.server.signature": "true", + "saml.signing.certificate": "MIIFazCCA1OgAwIBAgIUVMt2XXqYekaunKy/fhcJNQzJ0uQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0yMTExMTkxMzUyMzFaFw0yMjExMTkxMzUyMzFaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJTDNHzHv19kM4tVLOIjpR/vez4QJk70PMbghQBdCp1Er1yU8GkQRMx0QtumQB2ML1p2f63EEd7WsAPMEVYNQv6MHJDhAIDt+npWmYrGl3PrkVA3GNzZcD+GQEMZdGcECvfocOy2tB6iMOhdnFqu4L/QfFG2yJ+CpimpijvW78cJ35oYmOTnD7R9LBAJQuBlQDpOvB+I/dFeCiNKw61HQy0nMf6oe0pBy4E7bImQ0HY/soxBnzbvPUzbBvnhb2d97l3wn6ElUMrZuQSyI+OyVgBMyv9gcgV4Wq16oEuNkWFIdY2j8GeiDlqy9KJAttgLXBjGua2lRML0a+nrfF1VbBLgyzAZZP2IS/P3QYcSE2GbPWiWXjov2vF63/VnARzQhPhuLGilWp1Nxqr0HztgSiAyx0D3wqEBic0ERAQDVuHQZdjPd7RJaJ6MBnZH9mMVQOrjspIP5Sc6Z7omou26LPTjWNwmNWnfrq1sU8ADg4Uj09PWYcuWhPKxe6K9Zm4PLGXA0fR/fCVPDKaJPXIC7FGzDDdh/uSb9OURlgHwe319FCdvm1k7xD6tEfsyORjWJFoYvyT015j9LdBuO5fwt40EPCzNezqWCaimES7u3Puyg+4mbnRDh1UuouHOHVZ4jWySrrEktI0l6JkxrqdT2ilw7ICtmFx2fsjO9qso4tGwIDAQABo1MwUTAdBgNVHQ4EFgQU0JL52xvzhG/48H01Rxac3MOgZYEwHwYDVR0jBBgwFoAU0JL52xvzhG/48H01Rxac3MOgZYEwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAYYbj4v37eUTo9mtWgtZ2hHjWtdScPlZGxZanPZZpAcN8JR07ps/wow68rQMOZR9hFS6c2+izbn3HkR3OwCK9sZeuWzrLVPUBSiXxEbRkpK/pXAd/Irat+f1ylA3j3J4VyDJymqiuIBOE9kzGWpbMdyqlHdH5XG/giLEOY66p6k5QrtKDXKzfQ7BBzO1WTe1BkWp7HerEKqM7mRSA4pRT5J7UAGn4gHOU39bnOHZPhko/rFagI2iO8T3fSBL+IWx76ROoG3DUnaZmDIuMxzeEZD7G8aPWOJCP0/mnBrAQhsEUg0bcsRa6qzWFigY4oWjxOSc2aQMRSjxrVf59Geplyhh8AY0yI49uhJJc6SztwuiX9fksCm1/Z9YZeeJr/oOkBduGpX6BQbPA7N2yKg5APdn8DVIHFALijwobz+94+d6uv4+ihlQ8jBgbo1kwMZps+BAVOODgX3RpFKmqcyX9bjWaapw+XE1U8Rtt3mcgN9qchvcIqcnGZ1PfaY1ultvAzUa4TCECiYRXSOXT4iAXv+M1i2XisuThtw7dC9HMY1D/0oA/cRxwknLsuKRRGJWbUN/Ts4GMjLmvKejQOWfS+/wHS9kQdPKS3BKZYQgqli4OG1xRErykL6SRWTKJA3+VNditbHFkJuL9dGZLu0Dmaww6K1SSnYai77uTTPdOHoc=", + "saml.artifact.binding.identifier": "eY7tz0hmV0aMmBtL/oU7BOy5kUY=", + "saml.signature.algorithm": "RSA_SHA256", + "saml_force_name_id_format": "true", + "saml.client.signature": "true", + "saml.authnstatement": "true", + "saml_name_id_format": "email", + "saml_signature_canonicalization_method": "http://www.w3.org/2001/10/xml-exc-c14n#" + }, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": false, + "nodeReRegistrationTimeout": -1, + "protocolMappers": [ + { + "id": "fab43918-1994-40d4-8b4c-d0e41de7d61b", + "name": "role list", + "protocol": "saml", + "protocolMapper": "saml-role-list-mapper", + "consentRequired": false, + "config": { + "single": "false", + "attribute.nameformat": "Basic", + "attribute.name": "Role" + } + }, + { + "id": "ef7aa6fb-3bbe-478b-808e-6d56d5c8c87c", + "name": "X500 email", + "protocol": "saml", + "protocolMapper": "saml-user-property-mapper", + "consentRequired": false, + "config": { + "attribute.nameformat": "Basic", + "user.attribute": "email", + "friendly.name": "email", + "attribute.name": "email" + } + } + ], + "defaultClientScopes": [], + "optionalClientScopes": [] + }, + { + "id": "f6045634-733c-43e6-9ec5-baabd518db6c", + "clientId": "cbioportal_oauth2", + "name": "cBioPortal OIDC client", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "secret": "client_secret", + "redirectUris": [ + "http://host.testcontainers.internal:8080/*" + ], + "webOrigins": [ + "http://host.testcontainers.internal:8080" + ], + "notBefore": 0, + "bearerOnly": false, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": false, + "serviceAccountsEnabled": false, + "publicClient": false, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": {}, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": true, + "nodeReRegistrationTimeout": -1, + "protocolMappers": [ + { + "id": "08812f2b-f12f-4460-93d0-ca9d5fadf4b8", + "name": "cbioportal_api_audience", + "protocol": "openid-connect", + "protocolMapper": "oidc-audience-mapper", + "consentRequired": false, + "config": { + "included.client.audience": "cbioportal_api", + "id.token.claim": "false", + "access.token.claim": "true", + "userinfo.token.claim": "false" + } + } + ], + "defaultClientScopes": [ + "email" + ], + "optionalClientScopes": [ + "offline_access", + "roles" + ] + }, + { + "id": "8d317944-4523-43e9-a198-431be79edb0f", + "clientId": "realm-management", + "name": "${client_realm-management}", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "redirectUris": [], + "webOrigins": [], + "notBefore": 0, + "bearerOnly": true, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": false, + "serviceAccountsEnabled": false, + "publicClient": false, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": {}, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": false, + "nodeReRegistrationTimeout": 0, + "defaultClientScopes": [ + "web-origins", + "roles", + "profile", + "email" + ], + "optionalClientScopes": [ + "address", + "phone", + "offline_access", + "microprofile-jwt" + ] + }, + { + "id": "0f4c7e47-9f6b-4171-8290-283f62d02701", + "clientId": "security-admin-console", + "name": "${client_security-admin-console}", + "rootUrl": "${authAdminUrl}", + "baseUrl": "/admin/cbio/console/", + "surrogateAuthRequired": false, + "enabled": true, + "alwaysDisplayInConsole": false, + "clientAuthenticatorType": "client-secret", + "redirectUris": [ + "/admin/cbio/console/*" + ], + "webOrigins": [ + "+" + ], + "notBefore": 0, + "bearerOnly": false, + "consentRequired": false, + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": false, + "serviceAccountsEnabled": false, + "publicClient": true, + "frontchannelLogout": false, + "protocol": "openid-connect", + "attributes": { + "pkce.code.challenge.method": "S256" + }, + "authenticationFlowBindingOverrides": {}, + "fullScopeAllowed": false, + "nodeReRegistrationTimeout": 0, + "protocolMappers": [ + { + "id": "831f7ad1-c369-4237-942f-88626cec64e3", + "name": "locale", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "locale", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "locale", + "jsonType.label": "String" + } + } + ], + "defaultClientScopes": [ + "web-origins", + "roles", + "profile", + "email" + ], + "optionalClientScopes": [ + "address", + "phone", + "offline_access", + "microprofile-jwt" + ] + } + ], + "clientScopes": [ + { + "id": "6624568b-9db3-46ab-9d95-8419753ad28c", + "name": "role_list", + "description": "SAML role list", + "protocol": "saml", + "attributes": { + "consent.screen.text": "${samlRoleListScopeConsentText}", + "display.on.consent.screen": "true" + }, + "protocolMappers": [ + { + "id": "564b568d-911b-442a-a490-a423d974caef", + "name": "role list", + "protocol": "saml", + "protocolMapper": "saml-role-list-mapper", + "consentRequired": false, + "config": { + "single": "false", + "attribute.nameformat": "Basic", + "attribute.name": "Role" + } + } + ] + }, + { + "id": "2c2c551a-e90f-4adc-b09a-12421ecfc1f2", + "name": "microprofile-jwt", + "description": "Microprofile - JWT built-in scope", + "protocol": "openid-connect", + "attributes": { + "include.in.token.scope": "true", + "display.on.consent.screen": "false" + }, + "protocolMappers": [ + { + "id": "d9dbf260-7b93-4044-ba15-68bc45facc72", + "name": "groups", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-realm-role-mapper", + "consentRequired": false, + "config": { + "multivalued": "true", + "user.attribute": "foo", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "groups", + "jsonType.label": "String" + } + }, + { + "id": "f4a0ae6d-2f2d-48d4-a55e-d9860b2e348d", + "name": "upn", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-property-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "username", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "upn", + "jsonType.label": "String" + } + } + ] + }, + { + "id": "efd3125c-7be3-4550-9862-3ec9039102e8", + "name": "offline_access", + "description": "OpenID Connect built-in scope: offline_access", + "protocol": "openid-connect", + "attributes": { + "consent.screen.text": "${offlineAccessScopeConsentText}", + "display.on.consent.screen": "true" + } + }, + { + "id": "2cbfef6c-ea0d-4fc0-a386-17986ce68c8f", + "name": "web-origins", + "description": "OpenID Connect scope for add allowed web origins to the access token", + "protocol": "openid-connect", + "attributes": { + "include.in.token.scope": "false", + "display.on.consent.screen": "false", + "consent.screen.text": "" + }, + "protocolMappers": [ + { + "id": "c362e4af-0bca-4cda-8ce8-08fbe6ed93b7", + "name": "allowed web origins", + "protocol": "openid-connect", + "protocolMapper": "oidc-allowed-origins-mapper", + "consentRequired": false, + "config": {} + } + ] + }, + { + "id": "261ac9c1-0f3e-43fb-b85c-6ef615631051", + "name": "phone", + "description": "OpenID Connect built-in scope: phone", + "protocol": "openid-connect", + "attributes": { + "include.in.token.scope": "true", + "display.on.consent.screen": "true", + "consent.screen.text": "${phoneScopeConsentText}" + }, + "protocolMappers": [ + { + "id": "03c75c00-2b46-4cfc-85b0-37813f4730c8", + "name": "phone number", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "phoneNumber", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "phone_number", + "jsonType.label": "String" + } + }, + { + "id": "5b81ae41-fb64-4e5e-9165-ecd74d27160c", + "name": "phone number verified", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "phoneNumberVerified", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "phone_number_verified", + "jsonType.label": "boolean" + } + } + ] + }, + { + "id": "38806f4c-bff9-41c6-b111-36dd67953b13", + "name": "roles", + "description": "OpenID Connect scope for add user roles to the access token", + "protocol": "openid-connect", + "attributes": { + "include.in.token.scope": "false", + "display.on.consent.screen": "true", + "consent.screen.text": "${rolesScopeConsentText}" + }, + "protocolMappers": [ + { + "id": "39bdb32a-43e9-4193-ab6d-73315dd1edb2", + "name": "audience resolve", + "protocol": "openid-connect", + "protocolMapper": "oidc-audience-resolve-mapper", + "consentRequired": false, + "config": {} + }, + { + "id": "4e09ee37-8e25-4335-a98b-c88945ab00b4", + "name": "realm roles", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-realm-role-mapper", + "consentRequired": false, + "config": { + "user.attribute": "foo", + "access.token.claim": "true", + "claim.name": "realm_access.roles", + "jsonType.label": "String", + "multivalued": "true" + } + }, + { + "id": "dbcdd3b9-3fbb-46bb-b0eb-e924d7982c1a", + "name": "client roles", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-client-role-mapper", + "consentRequired": false, + "config": { + "multivalued": "true", + "userinfo.token.claim": "true", + "user.attribute": "foo", + "access.token.claim": "true", + "claim.name": "resource_access.${client_id}.roles", + "jsonType.label": "String" + } + } + ] + }, + { + "id": "ba043066-3611-44f3-8ce7-0d63ee7214e6", + "name": "email", + "description": "OpenID Connect built-in scope: email", + "protocol": "openid-connect", + "attributes": { + "include.in.token.scope": "true", + "display.on.consent.screen": "true", + "consent.screen.text": "${emailScopeConsentText}" + }, + "protocolMappers": [ + { + "id": "3a55b7fa-84bd-4f68-9ed2-34359b04c3c2", + "name": "email", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-property-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "email", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "email", + "jsonType.label": "String" + } + }, + { + "id": "09fc3174-1c39-4a98-8727-8571d7196213", + "name": "email verified", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-property-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "emailVerified", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "email_verified", + "jsonType.label": "boolean" + } + } + ] + }, + { + "id": "39463f1e-621e-411a-8820-a9b83d579fc5", + "name": "profile", + "description": "OpenID Connect built-in scope: profile", + "protocol": "openid-connect", + "attributes": { + "include.in.token.scope": "true", + "display.on.consent.screen": "true", + "consent.screen.text": "${profileScopeConsentText}" + }, + "protocolMappers": [ + { + "id": "c65a4612-d8e1-4588-886b-8e7946acf5a9", + "name": "full name", + "protocol": "openid-connect", + "protocolMapper": "oidc-full-name-mapper", + "consentRequired": false, + "config": { + "id.token.claim": "true", + "access.token.claim": "true", + "userinfo.token.claim": "true" + } + }, + { + "id": "78ec825f-a961-490e-8128-659d1d70c4e6", + "name": "birthdate", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "birthdate", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "birthdate", + "jsonType.label": "String" + } + }, + { + "id": "65cae517-5bf6-4af0-90da-7ed6cff2a6a3", + "name": "username", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-property-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "username", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "preferred_username", + "jsonType.label": "String" + } + }, + { + "id": "4bd831ec-e2db-45b8-8d20-c2636d9b592e", + "name": "profile", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "profile", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "profile", + "jsonType.label": "String" + } + }, + { + "id": "8275c531-59cd-450a-9499-53549aedda41", + "name": "gender", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "gender", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "gender", + "jsonType.label": "String" + } + }, + { + "id": "aa3a327a-7039-4f67-94ae-972d5be7b1af", + "name": "zoneinfo", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "zoneinfo", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "zoneinfo", + "jsonType.label": "String" + } + }, + { + "id": "97591cbb-a403-49b2-8f34-192913218437", + "name": "website", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "website", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "website", + "jsonType.label": "String" + } + }, + { + "id": "bedf23ca-a1fd-40a5-8acb-19bedf7da354", + "name": "picture", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "picture", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "picture", + "jsonType.label": "String" + } + }, + { + "id": "40988b4c-3c7f-415c-9bf5-f4463b611fc2", + "name": "family name", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-property-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "lastName", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "family_name", + "jsonType.label": "String" + } + }, + { + "id": "d3f3f74d-c9ab-4d0a-8ebd-51673cdbf151", + "name": "updated at", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "updatedAt", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "updated_at", + "jsonType.label": "String" + } + }, + { + "id": "1973c75f-bc92-48a4-ac74-fb900dabe17a", + "name": "given name", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-property-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "firstName", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "given_name", + "jsonType.label": "String" + } + }, + { + "id": "321e898f-d85c-4d8e-9900-1cf94b49fff1", + "name": "middle name", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "middleName", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "middle_name", + "jsonType.label": "String" + } + }, + { + "id": "bb4b6b50-8cc9-45b3-be23-6a2671f0bcf0", + "name": "locale", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "locale", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "locale", + "jsonType.label": "String" + } + }, + { + "id": "ddaf0658-e10d-4a8a-8657-16c69eaa7d1e", + "name": "nickname", + "protocol": "openid-connect", + "protocolMapper": "oidc-usermodel-attribute-mapper", + "consentRequired": false, + "config": { + "userinfo.token.claim": "true", + "user.attribute": "nickname", + "id.token.claim": "true", + "access.token.claim": "true", + "claim.name": "nickname", + "jsonType.label": "String" + } + } + ] + }, + { + "id": "17e90911-d87b-44de-9448-8e8ed92c5ae7", + "name": "address", + "description": "OpenID Connect built-in scope: address", + "protocol": "openid-connect", + "attributes": { + "include.in.token.scope": "true", + "display.on.consent.screen": "true", + "consent.screen.text": "${addressScopeConsentText}" + }, + "protocolMappers": [ + { + "id": "a0e1d5be-5d5f-49b1-8467-9052561914e9", + "name": "address", + "protocol": "openid-connect", + "protocolMapper": "oidc-address-mapper", + "consentRequired": false, + "config": { + "user.attribute.formatted": "formatted", + "user.attribute.country": "country", + "user.attribute.postal_code": "postal_code", + "userinfo.token.claim": "true", + "user.attribute.street": "street", + "id.token.claim": "true", + "user.attribute.region": "region", + "access.token.claim": "true", + "user.attribute.locality": "locality" + } + } + ] + } + ], + "defaultDefaultClientScopes": [ + "web-origins", + "roles", + "profile", + "role_list", + "email" + ], + "defaultOptionalClientScopes": [ + "address", + "phone", + "microprofile-jwt", + "offline_access" + ], + "browserSecurityHeaders": { + "contentSecurityPolicyReportOnly": "", + "xContentTypeOptions": "nosniff", + "xRobotsTag": "none", + "xFrameOptions": "SAMEORIGIN", + "contentSecurityPolicy": "frame-src 'self'; frame-ancestors 'self'; object-src 'none';", + "xXSSProtection": "1; mode=block", + "strictTransportSecurity": "max-age=31536000; includeSubDomains" + }, + "smtpServer": {}, + "eventsEnabled": false, + "eventsListeners": [ + "jboss-logging" + ], + "enabledEventTypes": [], + "adminEventsEnabled": false, + "adminEventsDetailsEnabled": false, + "identityProviders": [], + "identityProviderMappers": [], + "components": { + "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy": [ + { + "id": "889a17cb-5649-4149-8582-33076c1c3317", + "name": "Allowed Client Scopes", + "providerId": "allowed-client-templates", + "subType": "authenticated", + "subComponents": {}, + "config": { + "allow-default-scopes": [ + "true" + ] + } + }, + { + "id": "4c79fd7c-b4fe-470d-8786-f58ab99a518e", + "name": "Allowed Client Scopes", + "providerId": "allowed-client-templates", + "subType": "anonymous", + "subComponents": {}, + "config": { + "allow-default-scopes": [ + "true" + ] + } + }, + { + "id": "6fbe15a3-e5b2-4342-97cb-bde10366963c", + "name": "Allowed Protocol Mapper Types", + "providerId": "allowed-protocol-mappers", + "subType": "authenticated", + "subComponents": {}, + "config": { + "allowed-protocol-mapper-types": [ + "saml-user-attribute-mapper", + "oidc-full-name-mapper", + "oidc-usermodel-attribute-mapper", + "saml-user-property-mapper", + "oidc-address-mapper", + "oidc-sha256-pairwise-sub-mapper", + "oidc-usermodel-property-mapper", + "saml-role-list-mapper" + ] + } + }, + { + "id": "c7824d6e-b0e6-49cc-bff6-68b2f011a542", + "name": "Trusted Hosts", + "providerId": "trusted-hosts", + "subType": "anonymous", + "subComponents": {}, + "config": { + "host-sending-registration-request-must-match": [ + "true" + ], + "client-uris-must-match": [ + "true" + ] + } + }, + { + "id": "196f1f2a-bc8b-425a-89d9-86cdfb20fcfd", + "name": "Max Clients Limit", + "providerId": "max-clients", + "subType": "anonymous", + "subComponents": {}, + "config": { + "max-clients": [ + "200" + ] + } + }, + { + "id": "9e90ed2b-a6a2-42fd-988e-58ea0ddeb63d", + "name": "Allowed Protocol Mapper Types", + "providerId": "allowed-protocol-mappers", + "subType": "anonymous", + "subComponents": {}, + "config": { + "allowed-protocol-mapper-types": [ + "oidc-full-name-mapper", + "saml-role-list-mapper", + "oidc-sha256-pairwise-sub-mapper", + "saml-user-property-mapper", + "saml-user-attribute-mapper", + "oidc-usermodel-attribute-mapper", + "oidc-address-mapper", + "oidc-usermodel-property-mapper" + ] + } + }, + { + "id": "2ce4cd15-6601-482f-81e2-c7c5621e06f9", + "name": "Full Scope Disabled", + "providerId": "scope", + "subType": "anonymous", + "subComponents": {}, + "config": {} + }, + { + "id": "1375acc0-7aa9-4b3f-a0c0-a40c290e3f73", + "name": "Consent Required", + "providerId": "consent-required", + "subType": "anonymous", + "subComponents": {}, + "config": {} + } + ], + "org.keycloak.keys.KeyProvider": [ + { + "id": "53680454-4c6c-4486-861f-e5e74befe868", + "name": "hmac-generated", + "providerId": "hmac-generated", + "subComponents": {}, + "config": { + "priority": [ + "100" + ], + "algorithm": [ + "HS256" + ] + } + }, + { + "id": "e684156b-42ad-4576-b047-e1cb35f3fc05", + "name": "rsa-generated", + "providerId": "rsa-generated", + "subComponents": {}, + "config": { + "keyUse": [ + "sig" + ], + "priority": [ + "100" + ] + } + }, + { + "id": "014ff5f5-de31-48d2-952f-1445e8da62e1", + "name": "aes-generated", + "providerId": "aes-generated", + "subComponents": {}, + "config": { + "priority": [ + "100" + ] + } + }, + { + "id": "557a3a1f-1036-4fd5-8656-35ef6c482f50", + "name": "rsa-enc-generated", + "providerId": "rsa-generated", + "subComponents": {}, + "config": { + "keyUse": [ + "enc" + ], + "priority": [ + "100" + ] + } + } + ] + }, + "internationalizationEnabled": false, + "supportedLocales": [], + "authenticationFlows": [ + { + "id": "d09f86a8-3eb7-4b08-8c02-36a56f6a2a2c", + "alias": "Account verification options", + "description": "Method with which to verity the existing account", + "providerId": "basic-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "idp-email-verification", + "authenticatorFlow": false, + "requirement": "ALTERNATIVE", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticatorFlow": true, + "requirement": "ALTERNATIVE", + "priority": 20, + "flowAlias": "Verify Existing Account by Re-authentication", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "3801ca86-b775-4af6-a7cc-a5125e1a67b1", + "alias": "Authentication Options", + "description": "Authentication options.", + "providerId": "basic-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "basic-auth", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "basic-auth-otp", + "authenticatorFlow": false, + "requirement": "DISABLED", + "priority": 20, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "auth-spnego", + "authenticatorFlow": false, + "requirement": "DISABLED", + "priority": 30, + "userSetupAllowed": false, + "autheticatorFlow": false + } + ] + }, + { + "id": "2f229147-9906-45ed-bbf9-a7cb9e0a6650", + "alias": "Browser - Conditional OTP", + "description": "Flow to determine if the OTP is required for the authentication", + "providerId": "basic-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "conditional-user-configured", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "auth-otp-form", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 20, + "userSetupAllowed": false, + "autheticatorFlow": false + } + ] + }, + { + "id": "50e71410-d2fd-4b68-8972-c9e49ecee7c0", + "alias": "Direct Grant - Conditional OTP", + "description": "Flow to determine if the OTP is required for the authentication", + "providerId": "basic-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "conditional-user-configured", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "direct-grant-validate-otp", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 20, + "userSetupAllowed": false, + "autheticatorFlow": false + } + ] + }, + { + "id": "7f4cfad2-bd68-4ac4-8d8d-d22ed18214fe", + "alias": "First broker login - Conditional OTP", + "description": "Flow to determine if the OTP is required for the authentication", + "providerId": "basic-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "conditional-user-configured", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "auth-otp-form", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 20, + "userSetupAllowed": false, + "autheticatorFlow": false + } + ] + }, + { + "id": "dbbb7d22-5602-4ce4-aa53-40bf6391b50c", + "alias": "Handle Existing Account", + "description": "Handle what to do if there is existing account with same email/username like authenticated identity provider", + "providerId": "basic-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "idp-confirm-link", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticatorFlow": true, + "requirement": "REQUIRED", + "priority": 20, + "flowAlias": "Account verification options", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "6e414865-f4f0-4295-83f4-ca5edce533f0", + "alias": "Reset - Conditional OTP", + "description": "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.", + "providerId": "basic-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "conditional-user-configured", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "reset-otp", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 20, + "userSetupAllowed": false, + "autheticatorFlow": false + } + ] + }, + { + "id": "85f5eeb7-78e7-4ef4-962e-c23fba388dd6", + "alias": "User creation or linking", + "description": "Flow for the existing/non-existing user alternatives", + "providerId": "basic-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticatorConfig": "create unique user config", + "authenticator": "idp-create-user-if-unique", + "authenticatorFlow": false, + "requirement": "ALTERNATIVE", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticatorFlow": true, + "requirement": "ALTERNATIVE", + "priority": 20, + "flowAlias": "Handle Existing Account", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "4e9649e7-a343-4f82-8293-c020c26e14d5", + "alias": "Verify Existing Account by Re-authentication", + "description": "Reauthentication of existing account", + "providerId": "basic-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "idp-username-password-form", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticatorFlow": true, + "requirement": "CONDITIONAL", + "priority": 20, + "flowAlias": "First broker login - Conditional OTP", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "c4297697-2daf-4b81-9340-2244f5f6f4d1", + "alias": "browser", + "description": "browser based authentication", + "providerId": "basic-flow", + "topLevel": true, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "auth-cookie", + "authenticatorFlow": false, + "requirement": "ALTERNATIVE", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "auth-spnego", + "authenticatorFlow": false, + "requirement": "DISABLED", + "priority": 20, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "identity-provider-redirector", + "authenticatorFlow": false, + "requirement": "ALTERNATIVE", + "priority": 25, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticatorFlow": true, + "requirement": "ALTERNATIVE", + "priority": 30, + "flowAlias": "forms", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "c9f07e45-6e38-45e8-938d-7314d2596b63", + "alias": "clients", + "description": "Base authentication for clients", + "providerId": "client-flow", + "topLevel": true, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "client-secret", + "authenticatorFlow": false, + "requirement": "ALTERNATIVE", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "client-jwt", + "authenticatorFlow": false, + "requirement": "ALTERNATIVE", + "priority": 20, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "client-secret-jwt", + "authenticatorFlow": false, + "requirement": "ALTERNATIVE", + "priority": 30, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "client-x509", + "authenticatorFlow": false, + "requirement": "ALTERNATIVE", + "priority": 40, + "userSetupAllowed": false, + "autheticatorFlow": false + } + ] + }, + { + "id": "55cf854b-47fb-4b05-9eef-6840f92fee79", + "alias": "direct grant", + "description": "OpenID Connect Resource Owner Grant", + "providerId": "basic-flow", + "topLevel": true, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "direct-grant-validate-username", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "direct-grant-validate-password", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 20, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticatorFlow": true, + "requirement": "CONDITIONAL", + "priority": 30, + "flowAlias": "Direct Grant - Conditional OTP", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "14fe6c33-9d93-4c95-988b-d5e0a1d2fe4b", + "alias": "docker auth", + "description": "Used by Docker clients to authenticate against the IDP", + "providerId": "basic-flow", + "topLevel": true, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "docker-http-basic-authenticator", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + } + ] + }, + { + "id": "bce646e3-ebd1-4d8e-8703-ea91621f3550", + "alias": "first broker login", + "description": "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account", + "providerId": "basic-flow", + "topLevel": true, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticatorConfig": "review profile config", + "authenticator": "idp-review-profile", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticatorFlow": true, + "requirement": "REQUIRED", + "priority": 20, + "flowAlias": "User creation or linking", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "fae27840-4d5e-4a27-a1b5-1b44414b776f", + "alias": "forms", + "description": "Username, password, otp and other auth forms.", + "providerId": "basic-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "auth-username-password-form", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticatorFlow": true, + "requirement": "CONDITIONAL", + "priority": 20, + "flowAlias": "Browser - Conditional OTP", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "d391fa3e-0975-4db4-8ab1-d2f8348ed395", + "alias": "http challenge", + "description": "An authentication flow based on challenge-response HTTP Authentication Schemes", + "providerId": "basic-flow", + "topLevel": true, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "no-cookie-redirect", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticatorFlow": true, + "requirement": "REQUIRED", + "priority": 20, + "flowAlias": "Authentication Options", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "380a97f7-a283-4716-88e9-c21e5efd3867", + "alias": "registration", + "description": "registration flow", + "providerId": "basic-flow", + "topLevel": true, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "registration-page-form", + "authenticatorFlow": true, + "requirement": "REQUIRED", + "priority": 10, + "flowAlias": "registration form", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "0a5ea500-02e9-490a-9cb4-b7d030ed3372", + "alias": "registration form", + "description": "registration form", + "providerId": "form-flow", + "topLevel": false, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "registration-user-creation", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 20, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "registration-profile-action", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 40, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "registration-password-action", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 50, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "registration-recaptcha-action", + "authenticatorFlow": false, + "requirement": "DISABLED", + "priority": 60, + "userSetupAllowed": false, + "autheticatorFlow": false + } + ] + }, + { + "id": "1dace197-f541-4109-9c50-aa172ce6ac14", + "alias": "reset credentials", + "description": "Reset credentials for a user if they forgot their password or something", + "providerId": "basic-flow", + "topLevel": true, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "reset-credentials-choose-user", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "reset-credential-email", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 20, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticator": "reset-password", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 30, + "userSetupAllowed": false, + "autheticatorFlow": false + }, + { + "authenticatorFlow": true, + "requirement": "CONDITIONAL", + "priority": 40, + "flowAlias": "Reset - Conditional OTP", + "userSetupAllowed": false, + "autheticatorFlow": true + } + ] + }, + { + "id": "744c784a-2933-4ea7-9c98-b89b37cdfafc", + "alias": "saml ecp", + "description": "SAML ECP Profile Authentication Flow", + "providerId": "basic-flow", + "topLevel": true, + "builtIn": true, + "authenticationExecutions": [ + { + "authenticator": "http-basic-authenticator", + "authenticatorFlow": false, + "requirement": "REQUIRED", + "priority": 10, + "userSetupAllowed": false, + "autheticatorFlow": false + } + ] + } + ], + "authenticatorConfig": [ + { + "id": "0231eced-f393-479f-9d3e-0deb23879cd2", + "alias": "create unique user config", + "config": { + "require.password.update.after.registration": "false" + } + }, + { + "id": "24782868-8536-44aa-a808-c8af37085ce5", + "alias": "review profile config", + "config": { + "update.profile.on.first.login": "missing" + } + } + ], + "requiredActions": [ + { + "alias": "CONFIGURE_TOTP", + "name": "Configure OTP", + "providerId": "CONFIGURE_TOTP", + "enabled": true, + "defaultAction": false, + "priority": 10, + "config": {} + }, + { + "alias": "terms_and_conditions", + "name": "Terms and Conditions", + "providerId": "terms_and_conditions", + "enabled": false, + "defaultAction": false, + "priority": 20, + "config": {} + }, + { + "alias": "UPDATE_PASSWORD", + "name": "Update Password", + "providerId": "UPDATE_PASSWORD", + "enabled": true, + "defaultAction": false, + "priority": 30, + "config": {} + }, + { + "alias": "UPDATE_PROFILE", + "name": "Update Profile", + "providerId": "UPDATE_PROFILE", + "enabled": true, + "defaultAction": false, + "priority": 40, + "config": {} + }, + { + "alias": "VERIFY_EMAIL", + "name": "Verify Email", + "providerId": "VERIFY_EMAIL", + "enabled": true, + "defaultAction": false, + "priority": 50, + "config": {} + }, + { + "alias": "delete_account", + "name": "Delete Account", + "providerId": "delete_account", + "enabled": false, + "defaultAction": false, + "priority": 60, + "config": {} + }, + { + "alias": "update_user_locale", + "name": "Update User Locale", + "providerId": "update_user_locale", + "enabled": true, + "defaultAction": false, + "priority": 1000, + "config": {} + } + ], + "browserFlow": "browser", + "registrationFlow": "registration", + "directGrantFlow": "direct grant", + "resetCredentialsFlow": "reset credentials", + "clientAuthenticationFlow": "clients", + "dockerAuthenticationFlow": "docker auth", + "attributes": { + "cibaBackchannelTokenDeliveryMode": "poll", + "cibaExpiresIn": "120", + "cibaAuthRequestedUserHint": "login_hint", + "oauth2DeviceCodeLifespan": "600", + "oauth2DevicePollingInterval": "5", + "parRequestUriLifespan": "60", + "cibaInterval": "5" + }, + "keycloakVersion": "15.0.2", + "userManagedAccessAllowed": false, + "clientProfiles": { + "profiles": [] + }, + "clientPolicies": { + "policies": [] + }, + "users": [ + { + "username": "testuser", + "enabled": true, + "email": "testuser@thehyve.nl", + "credentials": [ + { + "type": "password", + "value": "P@ssword1" + } + ], + "realmRoles": [ + "offline_access" + ], + "groups": [ + "/PUBLIC_STUDIES" + ] + } + ], + "groups": [ + { + "name": "PUBLIC_STUDIES", + "clientRoles": { + "cbioportal": [ + "study_tcga_pub" + ] + } + } + ] +} \ No newline at end of file diff --git a/src/test/resources/security/signing-cert.pem b/src/test/resources/security/signing-cert.pem new file mode 100644 index 00000000000..01883dcafef --- /dev/null +++ b/src/test/resources/security/signing-cert.pem @@ -0,0 +1,31 @@ +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIUVMt2XXqYekaunKy/fhcJNQzJ0uQwDQYJKoZIhvcNAQEL +BQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoM +GEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0yMTExMTkxMzUyMzFaFw0yMjEx +MTkxMzUyMzFaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEw +HwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQDJTDNHzHv19kM4tVLOIjpR/vez4QJk70PMbghQBdCp +1Er1yU8GkQRMx0QtumQB2ML1p2f63EEd7WsAPMEVYNQv6MHJDhAIDt+npWmYrGl3 +PrkVA3GNzZcD+GQEMZdGcECvfocOy2tB6iMOhdnFqu4L/QfFG2yJ+CpimpijvW78 +cJ35oYmOTnD7R9LBAJQuBlQDpOvB+I/dFeCiNKw61HQy0nMf6oe0pBy4E7bImQ0H +Y/soxBnzbvPUzbBvnhb2d97l3wn6ElUMrZuQSyI+OyVgBMyv9gcgV4Wq16oEuNkW +FIdY2j8GeiDlqy9KJAttgLXBjGua2lRML0a+nrfF1VbBLgyzAZZP2IS/P3QYcSE2 +GbPWiWXjov2vF63/VnARzQhPhuLGilWp1Nxqr0HztgSiAyx0D3wqEBic0ERAQDVu +HQZdjPd7RJaJ6MBnZH9mMVQOrjspIP5Sc6Z7omou26LPTjWNwmNWnfrq1sU8ADg4 +Uj09PWYcuWhPKxe6K9Zm4PLGXA0fR/fCVPDKaJPXIC7FGzDDdh/uSb9OURlgHwe3 +19FCdvm1k7xD6tEfsyORjWJFoYvyT015j9LdBuO5fwt40EPCzNezqWCaimES7u3P +uyg+4mbnRDh1UuouHOHVZ4jWySrrEktI0l6JkxrqdT2ilw7ICtmFx2fsjO9qso4t +GwIDAQABo1MwUTAdBgNVHQ4EFgQU0JL52xvzhG/48H01Rxac3MOgZYEwHwYDVR0j +BBgwFoAU0JL52xvzhG/48H01Rxac3MOgZYEwDwYDVR0TAQH/BAUwAwEB/zANBgkq +hkiG9w0BAQsFAAOCAgEAYYbj4v37eUTo9mtWgtZ2hHjWtdScPlZGxZanPZZpAcN8 +JR07ps/wow68rQMOZR9hFS6c2+izbn3HkR3OwCK9sZeuWzrLVPUBSiXxEbRkpK/p +XAd/Irat+f1ylA3j3J4VyDJymqiuIBOE9kzGWpbMdyqlHdH5XG/giLEOY66p6k5Q +rtKDXKzfQ7BBzO1WTe1BkWp7HerEKqM7mRSA4pRT5J7UAGn4gHOU39bnOHZPhko/ +rFagI2iO8T3fSBL+IWx76ROoG3DUnaZmDIuMxzeEZD7G8aPWOJCP0/mnBrAQhsEU +g0bcsRa6qzWFigY4oWjxOSc2aQMRSjxrVf59Geplyhh8AY0yI49uhJJc6SztwuiX +9fksCm1/Z9YZeeJr/oOkBduGpX6BQbPA7N2yKg5APdn8DVIHFALijwobz+94+d6u +v4+ihlQ8jBgbo1kwMZps+BAVOODgX3RpFKmqcyX9bjWaapw+XE1U8Rtt3mcgN9qc +hvcIqcnGZ1PfaY1ultvAzUa4TCECiYRXSOXT4iAXv+M1i2XisuThtw7dC9HMY1D/ +0oA/cRxwknLsuKRRGJWbUN/Ts4GMjLmvKejQOWfS+/wHS9kQdPKS3BKZYQgqli4O +G1xRErykL6SRWTKJA3+VNditbHFkJuL9dGZLu0Dmaww6K1SSnYai77uTTPdOHoc= +-----END CERTIFICATE----- diff --git a/src/test/resources/security/signing-key.pem b/src/test/resources/security/signing-key.pem new file mode 100644 index 00000000000..ee46d3f2156 --- /dev/null +++ b/src/test/resources/security/signing-key.pem @@ -0,0 +1,52 @@ +-----BEGIN PRIVATE KEY----- +MIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQDJTDNHzHv19kM4 +tVLOIjpR/vez4QJk70PMbghQBdCp1Er1yU8GkQRMx0QtumQB2ML1p2f63EEd7WsA +PMEVYNQv6MHJDhAIDt+npWmYrGl3PrkVA3GNzZcD+GQEMZdGcECvfocOy2tB6iMO +hdnFqu4L/QfFG2yJ+CpimpijvW78cJ35oYmOTnD7R9LBAJQuBlQDpOvB+I/dFeCi +NKw61HQy0nMf6oe0pBy4E7bImQ0HY/soxBnzbvPUzbBvnhb2d97l3wn6ElUMrZuQ +SyI+OyVgBMyv9gcgV4Wq16oEuNkWFIdY2j8GeiDlqy9KJAttgLXBjGua2lRML0a+ +nrfF1VbBLgyzAZZP2IS/P3QYcSE2GbPWiWXjov2vF63/VnARzQhPhuLGilWp1Nxq +r0HztgSiAyx0D3wqEBic0ERAQDVuHQZdjPd7RJaJ6MBnZH9mMVQOrjspIP5Sc6Z7 +omou26LPTjWNwmNWnfrq1sU8ADg4Uj09PWYcuWhPKxe6K9Zm4PLGXA0fR/fCVPDK +aJPXIC7FGzDDdh/uSb9OURlgHwe319FCdvm1k7xD6tEfsyORjWJFoYvyT015j9Ld +BuO5fwt40EPCzNezqWCaimES7u3Puyg+4mbnRDh1UuouHOHVZ4jWySrrEktI0l6J +kxrqdT2ilw7ICtmFx2fsjO9qso4tGwIDAQABAoICAFT7iprBRYQtl2uVgYPtB1oe +nkyerfgW2zSvL2s5SUKpkYv6lRZcmsgfSDVV/2qYLJaxOkC6Q/NyjD3paEqyOmKP +jWBoQ3RjcyC/wLjn8Q6auGCat5H6Pcs7Tl5G4WqncWelrzcbwght5Kb481t0MlN1 +W5ZnYYdN8fb29YILM5P3p3oALKabjy9Gvz8kE2rq2QVA1xdo7LOVzOQuAJhFoVjj +aB8NUIV+03ETQZOmqc149EvdnmcbbG1m+RnmUCN1r/C0HO4qVyWnFYnxbl9/cOP8 +or2WzKNmz9O0gN7Fe0DLIejtGraNUN4lSy2t0fVE5Xb05WjWy8fuHZvUPhmTW7Ap +1WBGPpfjsbp+e5kx10rwWrWlKgcF7tNUUN9v0vJWKoF2Lr0+C5dphIz6LEZO7lTh +jh3oOXjN4jbtoZbd9tZ614dwUTPlllgQiHhNYeAK13REpX/Jx6Dgn6w5s2g+e7++ +4U93FMNkYjzArXAYhQd6CisFH32fr9Cc1WuUwhe6E7fABcynmMfpZhkwcCTPT+Qb +1CGsMvDUdETY1J4pL+Wlgwxidd0IKyOgIu6SpQ6JEeghJzl4XOnCWlJIlO8rts7o +y/0PaPWanl5rCUeeK5g32yv85bvUNJnkZ2YGBPM8c8wqsL91A+30WX1tE65JzqNI +3LGDLD/WGzCYMMR1Q0/hAoIBAQD/R6bpASFPhjgDJwqjrnEhd92I5q97f+fkGqbE +sVVaZQrkw2O74EyFjMWwNNG1VzYeOAAjbRkv0mXg6v6Djbuz5omkjF+qwyxXmgpY +e8aJ5sU34BWVoIJsXkdCkAC49q2KsoiYT+fFw3IjlpVcIvfkV7YnVeveJ47Z9+xj +rBSkKEIfZhBsd57wV+0LZ42Q/ULuPPnTlXQ77nqtBu6DusOjO1cYod5M4k0JlJwq +Nn39rwxCgIr5CI1UqsVJHsZz+lGQsu5ClC02V8HOTh8UjJtAcVslo+i6gLOHxB4z +vDRzAXnsFIrrukqp4Bz4djoE8np/mWDtSpanoBuF84/prpTvAoIBAQDJ3ZDIBZlm +TPhDUEbb6jG/AEsqeDUBgG5igLHxUg3StWgVL4cbNcRyeKD5VxMrO7pIfBm02GRq +CRpmxqeOadlBgTe52oG5MIrEVIHt1KT6E1LAP7jD0ABvf3P7e9wtXlDRAsIGLIDI +sb4toQFotUi6ayl07zB0+vJ1tWU+qB1ZJWWYRpDmCQG6/1vz3dBkjRPGzT79zXSx +bY2beNxKYIsL1LVR0BeLd4Tbn8mLL+fxjRep4qGO1fu+w62RqQvClSUIBgZJlpEc +uhRFbAL+zhqmuaq0MkcF65bHQCs/iddF9dUpNYSzUnR6N7fb9MkJZX9ww7tHLbef +u+lGVTD/8mKVAoIBAQCw4JOsxGSxNj1fKdD8YqTuXKA5+CTEvHYPHcxJYtnR/UrU +APH8vkgnDMf49FANhvTvcTvfT/twoCaI9ioNOspAt07NnZm3tu3lcM0UTAbfi+9A +bNpnx0Q3FAfp/d8SSZErFdMBPfRImchfEjpBEdWS+Jc0oBsC3YPkUR0QXq4ao+5U +1SIyFZwhybpr+X8kY+bZLZSoXtifofiMJM5kpaZiVn5dieJ+gRqBtd+SfBlGCeDD +v08LiDps3Lo/lLxKpbmYOfJOXV8KVTnq2UQ9t8LmnuRZqz1Y5E4AlwmaLSBmQzKY +Og+bj4OmOqu4GCrRPLVV7g8zu0exs4T+hilD7/wvAoIBAE3KMyvRdI7GpHkUK2o9 +spPfIhgooIyGmIMfAvNy4l7Lh2N6oD7tFlnigG31jy5+4sdiA2n8ZZ2zCliGvzUT +NySWDgpx2MGroh4MTtF+u2CfJ6lsJOBYfIJ7BA/qaCuXh98zh99nMO2mCRp+TBO0 +oGUuPJiSQAMkXWDc2TovALhEwATRVK9A00jjdOTiGpdVAkT+/QJDNW/WPtal2YZT +8+FIQ+NWJGybTzhvN/SKLoCYFYFjE0z+yvd1YqKaGS0P2mhgIfYjrqH6Vyt1dyYH ++J89Nzofkd0HL2BzKvdeP/X2yQELXarY4IfkhtadWwdi9JxY4QeJ55QHjtqKo8pN +9o0CggEAWg3kw1pLAsEtRO+5w+TLMAx8JXxhbIG2ITtGHU/eCd7YO2Ax+LHd8Ujj +JI59QXpmytfLd6czy8bvYaAW/LtbOPYwdWGVetWMjim5KceAz64koHcBsVK1Su4i +72MWagbEcwfAlZbwrIEcccZHW0/wTvwtZzllafCJhplN0+Et6vPLG00v7+x9krZO +T9zGAFbt79J/kNrwZ1BRNJIl+UPM1K18AKA4xFEmClqctejNSLLubPrwC0Vdokm8 +tYDRBI6r+M8w6wcHW9NXYQzQ27UZKAqrtyFXJ1coQQpwHCYJi7vztacjMOLEPuKv +KNSWUanv0GBYB9lnaY3wS/ncYpn8MQ== +-----END PRIVATE KEY----- diff --git a/src/test/resources/seed_mini.sql b/src/test/resources/seed_mini.sql new file mode 100644 index 00000000000..a4b224d9294 --- /dev/null +++ b/src/test/resources/seed_mini.sql @@ -0,0 +1,620 @@ +-- +-- Copyright (c) 2015 - 2016 Memorial Sloan-Kettering Cancer Center. +-- +-- This library is distributed in the hope that it will be useful,but WITHOUT +-- ANY WARRANTY,WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS +-- FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder +-- is on an "as is" basis,and Memorial Sloan-Kettering Cancer Center has no +-- obligations to provide maintenance,support,updates,enhancements or +-- modifications. In no event shall Memorial Sloan-Kettering Cancer Center be +-- liable to any party for direct,indirect,special,incidental or +-- consequential damages,including lost profits,arising out of the use of this +-- software and its documentation,even if Memorial Sloan-Kettering Cancer +-- Center has been advised of the possibility of such damage. +-- +-- This file is part of cBioPortal. +-- +-- cBioPortal is free software: you can redistribute it and/or modify +-- it under the terms of the GNU Affero General Public License as +-- published by the Free Software Foundation,either version 3 of the +-- License. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU Affero General Public License for more details. +-- +-- You should have received a copy of the GNU Affero General Public License +-- along with this program. If not,see . +-- ---------------------------------------------------------------------------- +-- A manually extracted subset of data for a small number of genes and samples from the BRCA +-- data set. This is intended to be used during unit testing,to validate the portal APIs. +-- In theory,it should be enough to run up a portal. +-- +-- Prepared by Stuart Watt -- 13th May 2015 + +SET SESSION sql_mode = 'ANSI_QUOTES'; + +DELETE FROM structural_variant; +DELETE FROM clinical_event_data; +DELETE FROM clinical_event; +DELETE FROM pdb_uniprot_residue_mapping; +DELETE FROM pdb_uniprot_alignment; +DELETE FROM cosmic_mutation; +DELETE FROM copy_number_seg_file; +DELETE FROM copy_number_seg; +DELETE FROM sample_cna_event; +DELETE FROM cna_event; +DELETE FROM drug_interaction; +DELETE FROM drug; +DELETE FROM pfam_graphics; +DELETE FROM text_cache; +DELETE FROM gistic_to_gene; +DELETE FROM gistic; +DELETE FROM sanger_cancer_census; +DELETE FROM protein_array_cancer_study; +DELETE FROM protein_array_data; +DELETE FROM protein_array_target; +DELETE FROM protein_array_info; +DELETE FROM mut_sig; +DELETE FROM interaction; +DELETE FROM clinical_attribute_meta; +DELETE FROM mutation; +DELETE FROM mutation_event; +DELETE FROM sample_profile; +DELETE FROM gene_panel; +DELETE FROM gene_panel_list; +DELETE FROM genetic_profile_samples; +DELETE FROM genetic_alteration; +DELETE FROM genetic_profile; +DELETE FROM uniprot_id_mapping; +DELETE FROM gene_alias; +DELETE FROM gene; +DELETE FROM clinical_sample; +DELETE FROM sample; +DELETE FROM sample_list_list; +DELETE FROM sample_list; +DELETE FROM clinical_patient; +DELETE FROM patient; +DELETE FROM authorities; +DELETE FROM users; +DELETE FROM cancer_study; +DELETE FROM type_of_cancer; +DELETE FROM genetic_entity; + +-- type_of_cancer +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('acc','Adrenocortical Carcinoma','Purple','ACC','tissue'); +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('acbc','Adenoid Cystic Breast Cancer','HotPink','ACBC','tissue'); +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('acyc','Adenoid Cystic Carcinoma','DarkRed','ACyC','tissue'); +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('aeca','Sweat Gland Carcinoma (Apocrine Eccrine Carcinoma)','Black','AECA','tissue'); +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('afx','Atypical Fibroxanthoma','Black','AFX','tissue'); +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('all','Pediatric Acute Lymphoid Leukemia','LightSalmon','ALL','tissue'); +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('aml','Acute Monocytic Leukemia','LightSalmon','AML-M5','tissue'); +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('blad','Bladder Urothelial Adenocarcinoma','Yellow','Bladder','tissue'); +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('blca','Bladder Urothelial Carcinoma','Yellow','Bladder','tissue'); +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('bpdcn','Blastic Plasmacytoid Dendritic Cell Neoplasm','LightSalmon','BPDCN','tissue'); +INSERT INTO "type_of_cancer" ("TYPE_OF_CANCER_ID","NAME","DEDICATED_COLOR","SHORT_NAME","PARENT") VALUES ('brca','Breast Invasive Carcinoma','HotPink','Breast','tissue'); + +-- reference_genome +INSERT INTO `reference_genome` VALUES (1,'human','hg19','GRCh37',2897310462,'http://hgdownload.cse.ucsc.edu/goldenPath/hg19/bigZips','2009-02-01'); +INSERT INTO `reference_genome` VALUES (2,'human','hg38','GRCh38',3049315783,'http://hgdownload.cse.ucsc.edu/goldenPath/hg38/bigZips','2013-12-01'); + +-- cancer_study +INSERT INTO "cancer_study" ("CANCER_STUDY_ID","CANCER_STUDY_IDENTIFIER","TYPE_OF_CANCER_ID","NAME","DESCRIPTION","PUBLIC","PMID","CITATION","GROUPS","REFERENCE_GENOME_ID") +VALUES (1,'study_tcga_pub','brca','Breast Invasive Carcinoma (TCGA,Nature 2012)','The Cancer Genome Atlas (TCGA) Breast Invasive Carcinoma project. 825 cases.
    Nature 2012. Raw data via the TCGA Data Portal.',1,'23000897,26451490','TCGA,Nature 2012,...','SU2C-PI3K;PUBLIC;GDAC',1); + +-- gene as genetic_entity +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,207,'AKT1','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,208,'AKT2','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,10000,'AKT3','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,369,'ARAF','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,472,'ATM','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,673,'BRAF','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,672,'BRCA1','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,675,'BRCA2','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,3265,'HRAS','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,3845,'KRAS','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,4893,'NRAS','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,51259,'TMEM216','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,282770,'OR10AG1','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,983,'CDK1','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,8085,'KMT2D','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +-- add genes for structural variant events +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,57670,'KIAA1549','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,27436,'EML4','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,238,'ALK','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,2115,'ETV1','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,7273,'TTN','protein-coding'); + +-- for test panels 1 and 2 +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,3983,'ABLIM1','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,80070,'ADAMTS20','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,253559,'CADM2','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,1838,'DTNB','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,2648,'KAT2A','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,4437,'MSH3','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,4602,'MYB','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,440348,'NPIPB15','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,56914,'OTOR','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,27334,'P2RY10','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,9780,'PIEZO1','protein-coding'); +INSERT INTO "genetic_entity" ("ENTITY_TYPE") VALUES ('GENE'); +SET @max_entity_id = (Select MAX(ID) from genetic_entity); +INSERT INTO "gene" ("GENETIC_ENTITY_ID","ENTREZ_GENE_ID","HUGO_GENE_SYMBOL","TYPE") VALUES (@max_entity_id,2261,'FGFR3','protein-coding'); + +-- cna_event +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (20093,207,-2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (20092,207,2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (26161,208,2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (2774,10000,2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (16668,472,-2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (16669,472,2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (11284,673,-2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (11283,673,2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (23934,672,-2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (23933,672,2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (18460,675,-2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (18459,675,2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (15117,3265,-2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (15118,3265,2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (17280,3845,2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (1678,4893,-2); +INSERT INTO "cna_event" ("CNA_EVENT_ID","ENTREZ_GENE_ID","ALTERATION") VALUES (1677,4893,2); + +-- cosmic_mutation +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('78883','17',41197784,'G','A','-','c.5503C>T',672,'R1835*',2,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('23923','17',41199686,'GC','G','-','c.5440delG',672,'A1814fs*20',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('24529','17',41201160,'A','AA','-','c.5383_5384insT',672,'S1796fs*34',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1577248','17',41201164,'C','A','-','c.5380G>T',672,'E1794*',2,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('35891','17',41209082,'G','GG','-','c.5263_5264insC',672,'Q1756fs*74',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('51256','17',41209095,'G','A','-','c.5251C>T',672,'R1751*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('24528','17',41215370,'C','A','-','c.5173G>T',672,'E1725*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('68967','17',41215913,'TC','T','-','c.5129delG',672,'G1710fs*4',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('95581','17',41223001,'C','A','-','c.4930G>T',672,'E1644*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('219051','17',41223106,'C','A','-','c.4825G>T',672,'E1609*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('78884','17',41226411,'G','A','-','c.4612C>T',672,'Q1538*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('187264','17',41226515,'G','T','-','c.4508C>A',672,'S1503*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('3983467','17',41228590,'G','A','-','c.4399C>T',672,'Q1467*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('979730','17',41234451,'G','A','-','c.4327C>T',672,'R1443*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('23959','17',41243685,'TC','T','-','c.3862delG',672,'E1288fs*19',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1302865','17',41243707,'G','A','-','c.3841C>T',672,'Q1281*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1577247','17',41243721,'A','T','-','c.3827T>A',672,'L1276*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('69203','17',41243753,'A','ATT','-','c.3794_3795insAA',672,'N1265fs*4',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1577246','17',41243781,'GTGTTC','G','-','c.3762_3766delGAACA',672,'K1254fs*11',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('112117','17',41243899,'A','ATAAGTTCT','-','c.3648_3649insAGAACTTA',672,'S1217fs*21',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1325059','17',41243984,'CCT','C','-','c.3562_3563delAG',672,'R1188fs*3',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('23931','17',41243998,'CTT','C','-','c.3548_3549delAA',672,'K1183fs*4',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1666857','17',41244021,'AC','A','-','c.3526_3526delG',672,'V1176fs*34',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('706227','17',41244070,'T','A','-','c.3478A>T',672,'K1160*',1,'BRCA1 truncating'); +INSERT INTO "cosmic_mutation" ("COSMIC_MUTATION_ID","CHR","START_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","STRAND","CODON_CHANGE","ENTREZ_GENE_ID","PROTEIN_CHANGE","COUNT","KEYWORD") VALUES ('1325058','17',41244082,'C','CATCTAACA','-','c.3465_3466insTGTTAGAT',672,'D1156fs*2',1,'BRCA1 truncating'); + +-- gene_alias +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (207,'AKT'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (207,'CWS6'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (208,'HIHGHH'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (208,'PKBB'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (10000,'MPPH'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (10000,'MPPH2'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (369,'A-RAF'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (369,'ARAF1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (472,'AT1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (472,'ATA'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (673,'B-RAF1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (673,'BRAF1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (672,'BRCAI'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (672,'BRCC1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (675,'BRCC2'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (675,'BROVCA2'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (675,'FACD'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3265,'C-BAS/HAS'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3265,'C-H-RAS'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3845,'C-K-RAS'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3845,'KRAS1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3845,'KRAS2'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4893,'N-ras'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4893,'NCMS'); + +-- for test panels 1 and 2 +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (56914,'FDP'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (56914,'MIAL1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (253559,'IGSF4D'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (253559,'Necl-3'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (253559,'NECL3'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (253559,'SynCAM 2'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (253559,'synCAM2'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4437,'MRP1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4437,'DUP'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4437,'FAP4'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (27334,'P2Y10'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (27334,'LYPSR2'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (80070,'ADAM-TS20'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (80070,'GON-1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (80070,'ADAMTS-20'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2648,'hGCN5'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2648,'GCN5'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2648,'GCN5L2'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2648,'PCAF-b'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4602,'c-myb_CDS'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4602,'Cmyb'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4602,'c-myb'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (4602,'efg'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (440348,'A-761H5.4'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (440348,'NPIPL2'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3983,'LIMAB1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3983,'abLIM-1'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3983,'ABLIM'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (3983,'LIMATIN'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (9780,'FAM38A'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (9780,'Mib'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (9780,'LMPH3'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (9780,'DHS'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2261,'JTK4'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2261,'HSFGFR3EX'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2261,'ACH'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2261,'CEK2'); +INSERT INTO "gene_alias" ("ENTREZ_GENE_ID","GENE_ALIAS") VALUES (2261,'CD333'); + +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(207,'14q32.33',10838,105235686,105262088,14,1); +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(207,'14q32.33',11162,104769349,104795751,14,2); +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(208,'19q13.2',15035,40736224,40791443,19,1); +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(208,'19q13.2',15035,40230317,40285536,19,2); +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(51259,'11q12.2',2364,61159159,61166335,11,1); +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(51259,'11q12.2',2364,61391687,61398863,11,2); +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(282770,'11q12.1',2814,55734975,55735990,11,1); +INSERT INTO reference_genome_gene (ENTREZ_GENE_ID,CYTOBAND,EXONIC_LENGTH,START,END,CHR,REFERENCE_GENOME_ID) VALUES(282770,'11q12.1',2814,55967558,55968463,11,2); + +INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (2,'study_tcga_pub_gistic',1,'COPY_NUMBER_ALTERATION','DISCRETE','Putative copy-number alterations from GISTIC','Putative copy-number from GISTIC 2.0. Values: -2 = homozygous deletion; -1 = hemizygous deletion; 0 = neutral / no change; 1 = gain; 2 = high level amplification.','1'); +INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (3,'study_tcga_pub_mrna',1,'MRNA_EXPRESSION','Z-SCORE','mRNA expression (microarray)','Expression levels (Agilent microarray).','0'); +INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (4,'study_tcga_pub_log2CNA',1,'COPY_NUMBER_ALTERATION','LOG2-VALUE','Log2 copy-number values','Log2 copy-number values for each gene (from Affymetrix SNP6).','0'); +INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (5,'study_tcga_pub_methylation_hm27',1,'METHYLATION','CONTINUOUS','Methylation (HM27)','Methylation beta-values (HM27 platform). For genes with multiple methylation probes,the probe least correlated with expression is selected.','0'); +INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (6,'study_tcga_pub_mutations',1,'MUTATION_EXTENDED','MAF','Mutations','Mutation data from whole exome sequencing.','1'); +INSERT INTO "genetic_profile" ("GENETIC_PROFILE_ID","STABLE_ID","CANCER_STUDY_ID","GENETIC_ALTERATION_TYPE","DATATYPE","NAME","DESCRIPTION","SHOW_PROFILE_IN_ANALYSIS_TAB") VALUES (7,'study_tcga_pub_structural_variants',1,'STRUCTURAL_VARIANT','SV','Structural Variants','Structural Variants test data.','1'); + +-- genetic_alteration +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 10000),'0,0,1,2,0,1,1,1,0,1,1,1,0,1,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 207),'0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 208),'0,0,0,1,0,0,0,1,0,0,0,2,0,2,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3265),'0,0,0,0,0,0,1,0,0,0,0,-1,0,0,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3845),'0,0,0,1,0,0,-1,1,1,0,1,2,2,0,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 472),'0,-1,-1,0,0,-1,0,1,0,-1,-1,1,-1,-1,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 4893),'0,-1,0,-1,0,0,0,0,-1,1,-1,0,0,0,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 672),'0,0,0,0,0,1,0,-1,0,-1,-1,0,-1,0,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 673),'0,0,0,1,0,0,0,0,0,0,-1,0,0,0,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (2,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 675),'0,-1,0,0,0,0,-1,0,1,0,-1,1,-1,-1,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 10000),'-0.473833333333333,1.51866666666667,0.148333333333333,-0.187666666666667,0.914,-0.664333333333333,-1.70783333333333,0.976,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 207),'-1.102375,-0.24375,0.018625,-0.157,0.33075,1.008,0.68175,-0.664875,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 208),'-1.22235714285714,-0.592571428571429,-0.176642857142857,-0.310428571428571,-1.19892857142857,-0.670142857142857,0.0779285714285714,-0.302642857142857,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3265),'0.068,-0.062,-0.167833333333333,0.511666666666667,2.02066666666667,0.389166666666667,-0.724666666666666,0.9485,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 369),'-1.12475,-0.30675,0.1805,-0.59775,0.16625,0.402,0.243,-0.996,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3845),'-0.17075,0.4045,0.185333333333333,0.4285,1.67616666666667,0.238,0.469833333333333,2.15883333333333,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 472),'-1.50341666666667,-1.92183333333333,-1.75541666666667,-1.57325,-1.02958333333333,-1.39791666666667,-1.51483333333333,-2.07091666666667,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 4893),'-1.91125,-2.0595,-1.22825,-1.319,-4.16675,-1.187875,0.280625,-0.13075,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 672),'-1.66108333333333,-1.38791666666667,-1.92483333333333,-1.65625,-0.35825,-1.99566666666667,-0.136416666666667,-0.70975,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 673),'0.2305,0.56,-0.10225,-0.0855,-0.012,0.138,0.141,0.6095,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (3,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 675),'-0.57075,-1.3405,-1.541,-0.40475,0.629,-1.2315,0.768,-0.033,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 10000),'0.017,0.032,0.872,0.704,0.009,0.485,0.848,0.685,-0.270,1.054,0.658,0.455,0.256,0.628,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 207),'-0.005,-0.003,-0.022,0.072,-0.042,0.015,0.045,0.026,-0.441,-0.030,0.009,0.154,-0.348,0.011,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 208),'0.045,-0.048,0.043,0.324,-0.064,0.036,0.147,0.404,0.112,0.012,0.043,1.418,0.069,1.670,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3265),'0.003,-0.043,0.009,0.009,-0.043,0.031,0.411,-0.048,0.049,-0.030,0.056,-0.695,-0.022,-0.001,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3845),'-0.009,0.001,0.006,0.379,0.022,-0.010,-0.473,1.172,2.823,0.014,0.339,1.450,3.160,0.026,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 472),'-0.006,-0.500,-0.462,-0.013,-0.003,-0.448,0.135,0.522,0.211,-0.578,-0.350,0.655,-0.449,-0.668,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 4893),'0.011,-0.420,0.014,-0.341,-0.019,0.020,0.032,-0.052,-0.453,0.455,-0.318,0.278,0.240,0.034,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 672),'0.044,-0.082,0.027,-0.003,-0.012,0.486,-0.300,-0.397,-0.284,-0.547,-0.301,0.218,-0.389,-0.011,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 673),'0.015,0.005,0.005,0.344,-0.011,0.171,0.140,-0.013,0.021,0.010,-0.385,-0.177,0.075,0.002,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (4,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 675),'-0.005,-0.502,-0.240,0.016,0.022,-0.029,-0.319,0.004,1.020,-0.024,-0.366,0.768,-0.397,-0.667,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 10000),'0.841525757,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 207),'0.134488708,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 208),'0.072712077,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3265),'0.039372,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 369),'0.125441004,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 3845),'0.049338479,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 472),'0.025402093,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 4893),'0.105977072,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 672),'0.066638638,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 673),'0.020369562,'); +INSERT INTO "genetic_alteration" ("GENETIC_PROFILE_ID","GENETIC_ENTITY_ID","VALUES") VALUES (5,(Select "GENETIC_ENTITY_ID" from "gene" where "ENTREZ_GENE_ID" = 675),'0.793930197,'); + +-- genetic_profile_samples +INSERT INTO "genetic_profile_samples" ("GENETIC_PROFILE_ID","ORDERED_SAMPLE_LIST") VALUES (2,'1,2,3,4,5,6,7,8,9,10,11,12,13,14,'); +INSERT INTO "genetic_profile_samples" ("GENETIC_PROFILE_ID","ORDERED_SAMPLE_LIST") VALUES (3,'2,3,6,8,9,10,12,13,'); +INSERT INTO "genetic_profile_samples" ("GENETIC_PROFILE_ID","ORDERED_SAMPLE_LIST") VALUES (4,'1,2,3,4,5,6,7,8,9,10,11,12,13,14,'); +INSERT INTO "genetic_profile_samples" ("GENETIC_PROFILE_ID","ORDERED_SAMPLE_LIST") VALUES (5,'2,'); + +-- patient +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (1,'TCGA-A1-A0SB',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (2,'TCGA-A1-A0SD',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (3,'TCGA-A1-A0SE',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (4,'TCGA-A1-A0SF',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (5,'TCGA-A1-A0SG',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (6,'TCGA-A1-A0SH',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (7,'TCGA-A1-A0SI',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (8,'TCGA-A1-A0SJ',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (9,'TCGA-A1-A0SK',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (10,'TCGA-A1-A0SM',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (11,'TCGA-A1-A0SN',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (12,'TCGA-A1-A0SO',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (13,'TCGA-A1-A0SP',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (14,'TCGA-A1-A0SQ',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (15,'TCGA-XX-0800',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (16,'TCGA-XX-0900',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (17,'TCGA-AA-3664',1); +INSERT INTO "patient" ("INTERNAL_ID","STABLE_ID","CANCER_STUDY_ID") VALUES (18,'TCGA-AA-3665',1); + +-- sample +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (1,'TCGA-A1-A0SB-01','Primary Solid Tumor',1); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (2,'TCGA-A1-A0SD-01','Primary Solid Tumor',2); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (3,'TCGA-A1-A0SE-01','Primary Solid Tumor',3); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (4,'TCGA-A1-A0SF-01','Primary Solid Tumor',4); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (5,'TCGA-A1-A0SG-01','Primary Solid Tumor',5); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (6,'TCGA-A1-A0SH-01','Primary Solid Tumor',6); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (7,'TCGA-A1-A0SI-01','Primary Solid Tumor',7); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (8,'TCGA-A1-A0SJ-01','Primary Solid Tumor',8); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (9,'TCGA-A1-A0SK-01','Primary Solid Tumor',9); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (10,'TCGA-A1-A0SM-01','Primary Solid Tumor',10); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (11,'TCGA-A1-A0SN-01','Primary Solid Tumor',11); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (12,'TCGA-A1-A0SO-01','Primary Solid Tumor',12); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (13,'TCGA-A1-A0SP-01','Primary Solid Tumor',13); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (14,'TCGA-A1-A0SQ-01','Primary Solid Tumor',14); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (15,'TCGA-XX-0800-01','Primary Solid Tumor',15); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (16,'TCGA-XX-0900-01','Primary Solid Tumor',16); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (17,'TCGA-AA-3664-01','Primary Solid Tumor',17); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (18,'TCGA-AA-3665-01','Primary Solid Tumor',18); +INSERT INTO "sample" ("INTERNAL_ID","STABLE_ID","SAMPLE_TYPE","PATIENT_ID") VALUES (19,'TCGA-A1-A0SB-02','Primary Solid Tumor',1); + +-- mutation_event +INSERT INTO "mutation_event" ("MUTATION_EVENT_ID","ENTREZ_GENE_ID","CHR","START_POSITION","END_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","PROTEIN_CHANGE","MUTATION_TYPE","FUNCTIONAL_IMPACT_SCORE","FIS_VALUE","LINK_XVAR","LINK_PDB","LINK_MSA","NCBI_BUILD","STRAND","VARIANT_TYPE","DB_SNP_RS","DB_SNP_VAL_STATUS","ONCOTATOR_DBSNP_RS","ONCOTATOR_REFSEQ_MRNA_ID","ONCOTATOR_CODON_CHANGE","ONCOTATOR_UNIPROT_ENTRY_NAME","ONCOTATOR_UNIPROT_ACCESSION","ONCOTATOR_PROTEIN_POS_START","ONCOTATOR_PROTEIN_POS_END","CANONICAL_TRANSCRIPT","KEYWORD") VALUES (2038,672,'17',41244748,41244748,'G','A','Q934*','Nonsense_Mutation','NA',0,'getma.org/?cm=var&var=hg19,17,41244748,G,A&fts=all','NA','NA','37','+','SNP','rs80357223','unknown','rs80357223','NM_007294','c.(2800-2802)CAG>TAG','BRCA1_HUMAN','P38398',934,934,1,'BRCA1 truncating'); +INSERT INTO "mutation_event" ("MUTATION_EVENT_ID","ENTREZ_GENE_ID","CHR","START_POSITION","END_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","PROTEIN_CHANGE","MUTATION_TYPE","FUNCTIONAL_IMPACT_SCORE","FIS_VALUE","LINK_XVAR","LINK_PDB","LINK_MSA","NCBI_BUILD","STRAND","VARIANT_TYPE","DB_SNP_RS","DB_SNP_VAL_STATUS","ONCOTATOR_DBSNP_RS","ONCOTATOR_REFSEQ_MRNA_ID","ONCOTATOR_CODON_CHANGE","ONCOTATOR_UNIPROT_ENTRY_NAME","ONCOTATOR_UNIPROT_ACCESSION","ONCOTATOR_PROTEIN_POS_START","ONCOTATOR_PROTEIN_POS_END","CANONICAL_TRANSCRIPT","KEYWORD") VALUES (22604,672,'17',41258504,41258504,'A','C','C61G','Missense_Mutation','H',4.355,'getma.org/?cm=var&var=hg19,17,41258504,A,C&fts=all','getma.org/pdb.php?prot=BRCA1_HUMAN&from=24&to=64&var=C61G','getma.org/?cm=msa&ty=f&p=BRCA1_HUMAN&rb=24&re=64&var=C61G','37','+','SNP','rs28897672','byCluster','rs28897672','NM_007294','c.(181-183)TGT>GGT','BRCA1_HUMAN','P38398',61,61,1,'BRCA1 C61 missense'); +INSERT INTO "mutation_event" ("MUTATION_EVENT_ID","ENTREZ_GENE_ID","CHR","START_POSITION","END_POSITION","REFERENCE_ALLELE","TUMOR_SEQ_ALLELE","PROTEIN_CHANGE","MUTATION_TYPE","FUNCTIONAL_IMPACT_SCORE","FIS_VALUE","LINK_XVAR","LINK_PDB","LINK_MSA","NCBI_BUILD","STRAND","VARIANT_TYPE","DB_SNP_RS","DB_SNP_VAL_STATUS","ONCOTATOR_DBSNP_RS","ONCOTATOR_REFSEQ_MRNA_ID","ONCOTATOR_CODON_CHANGE","ONCOTATOR_UNIPROT_ENTRY_NAME","ONCOTATOR_UNIPROT_ACCESSION","ONCOTATOR_PROTEIN_POS_START","ONCOTATOR_PROTEIN_POS_END","CANONICAL_TRANSCRIPT","KEYWORD") VALUES (2039,672,'17',41276033,41276033,'C','T','C27_splice','Splice_Site','NA',1.4013e-45,'NA','NA','NA','37','+','SNP','rs80358010','byCluster','rs80358010','NM_007294','c.e2+1','NA','NA',-1,-1,1,'BRCA1 truncating'); + +-- mutation +INSERT INTO "mutation" ("MUTATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","ENTREZ_GENE_ID","CENTER","SEQUENCER","MUTATION_STATUS","VALIDATION_STATUS","TUMOR_SEQ_ALLELE1","TUMOR_SEQ_ALLELE2","MATCHED_NORM_SAMPLE_BARCODE","MATCH_NORM_SEQ_ALLELE1","MATCH_NORM_SEQ_ALLELE2","TUMOR_VALIDATION_ALLELE1","TUMOR_VALIDATION_ALLELE2","MATCH_NORM_VALIDATION_ALLELE1","MATCH_NORM_VALIDATION_ALLELE2","VERIFICATION_STATUS","SEQUENCING_PHASE","SEQUENCE_SOURCE","VALIDATION_METHOD","SCORE","BAM_FILE","TUMOR_ALT_COUNT","TUMOR_REF_COUNT","NORMAL_ALT_COUNT","NORMAL_REF_COUNT") VALUES (2038,6,6,672,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','G','A','TCGA-A1-A0SH-10A-03D-A099-09','G','A','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1); +INSERT INTO "mutation" ("MUTATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","ENTREZ_GENE_ID","CENTER","SEQUENCER","MUTATION_STATUS","VALIDATION_STATUS","TUMOR_SEQ_ALLELE1","TUMOR_SEQ_ALLELE2","MATCHED_NORM_SAMPLE_BARCODE","MATCH_NORM_SEQ_ALLELE1","MATCH_NORM_SEQ_ALLELE2","TUMOR_VALIDATION_ALLELE1","TUMOR_VALIDATION_ALLELE2","MATCH_NORM_VALIDATION_ALLELE1","MATCH_NORM_VALIDATION_ALLELE2","VERIFICATION_STATUS","SEQUENCING_PHASE","SEQUENCE_SOURCE","VALIDATION_METHOD","SCORE","BAM_FILE","TUMOR_ALT_COUNT","TUMOR_REF_COUNT","NORMAL_ALT_COUNT","NORMAL_REF_COUNT") VALUES (22604,6,6,672,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','A','C','TCGA-A1-A0SH-10A-03D-A099-09','A','C','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1); +INSERT INTO "mutation" ("MUTATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","ENTREZ_GENE_ID","CENTER","SEQUENCER","MUTATION_STATUS","VALIDATION_STATUS","TUMOR_SEQ_ALLELE1","TUMOR_SEQ_ALLELE2","MATCHED_NORM_SAMPLE_BARCODE","MATCH_NORM_SEQ_ALLELE1","MATCH_NORM_SEQ_ALLELE2","TUMOR_VALIDATION_ALLELE1","TUMOR_VALIDATION_ALLELE2","MATCH_NORM_VALIDATION_ALLELE1","MATCH_NORM_VALIDATION_ALLELE2","VERIFICATION_STATUS","SEQUENCING_PHASE","SEQUENCE_SOURCE","VALIDATION_METHOD","SCORE","BAM_FILE","TUMOR_ALT_COUNT","TUMOR_REF_COUNT","NORMAL_ALT_COUNT","NORMAL_REF_COUNT") VALUES (2039,6,12,672,'genome.wustl.edu','IlluminaGAIIx','Germline','Unknown','T','T','TCGA-A1-A0SO-10A-03D-A099-09','T','T','NA','NA','NA','NA','Unknown','Phase_IV','Capture','NA','1','dbGAP',-1,-1,-1,-1); + +-- sample_list +INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (1,'study_tcga_pub_all','other',1,'All Tumors','All tumor samples (14 samples)'); +INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (2,'study_tcga_pub_acgh','other',1,'Tumors aCGH','All tumors with aCGH data (778 samples)'); +INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (3,'study_tcga_pub_cnaseq','other',1,'Tumors with sequencing and aCGH data','All tumor samples that have CNA and sequencing data (482 samples)'); +INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (4,'study_tcga_pub_complete','other',1,'Complete samples (mutations,copy-number,expression)','Samples with complete data (463 samples)'); +INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (5,'study_tcga_pub_log2CNA','other',1,'Tumors log2 copy-number','All tumors with log2 copy-number data (778 samples)'); +INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (6,'study_tcga_pub_methylation_hm27','other',1,'Tumors with methylation data','All samples with methylation (HM27) data (311 samples)'); +INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (7,'study_tcga_pub_mrna','other',1,'Tumors with mRNA data (Agilent microarray)','All samples with mRNA expression data (526 samples)'); +INSERT INTO "sample_list" ("LIST_ID","STABLE_ID","CATEGORY","CANCER_STUDY_ID","NAME","DESCRIPTION") VALUES (8,'study_tcga_pub_sequenced','other',1,'Sequenced Tumors','All sequenced samples (507 samples)'); + +-- sample_list_list +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,1); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,2); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,3); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,4); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,5); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,6); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,7); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,8); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,9); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,10); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,11); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,12); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,13); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (1,14); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,1); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,2); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,3); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,4); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,5); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,6); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,7); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,8); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,9); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,10); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,11); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,12); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,13); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (2,14); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,2); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,3); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,6); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,8); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,9); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,10); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (3,12); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,2); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,3); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,6); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,8); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,9); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,10); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (4,12); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,1); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,2); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,3); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,4); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,5); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,6); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,7); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,8); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,9); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,10); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,11); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,12); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,13); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (5,14); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (6,2); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,2); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,3); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,6); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,8); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,9); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,10); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,12); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (7,13); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,2); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,3); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,6); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,8); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,9); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,10); +INSERT INTO "sample_list_list" ("LIST_ID","SAMPLE_ID") VALUES (8,12); + +-- sample_cna_event +INSERT INTO "sample_cna_event" ("CNA_EVENT_ID","SAMPLE_ID","GENETIC_PROFILE_ID") VALUES (2774,4,2); +INSERT INTO "sample_cna_event" ("CNA_EVENT_ID","SAMPLE_ID","GENETIC_PROFILE_ID") VALUES (17280,12,2); +INSERT INTO "sample_cna_event" ("CNA_EVENT_ID","SAMPLE_ID","GENETIC_PROFILE_ID") VALUES (26161,12,2); +INSERT INTO "sample_cna_event" ("CNA_EVENT_ID","SAMPLE_ID","GENETIC_PROFILE_ID") VALUES (17280,13,2); +INSERT INTO "sample_cna_event" ("CNA_EVENT_ID","SAMPLE_ID","GENETIC_PROFILE_ID") VALUES (26161,14,2); + +-- alteration_driver_annotation + -- from sample_cna_event +INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (2774,2,4,'Putative_Driver','Pathogenic','Tier 1','Highly Actionable'); +INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (17280,2,12,'Putative_Driver','Pathogenic','Tier 1','Highly Actionable'); +INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (26161,2,12,'Putative_Passenger','Pathogenic','Tier 2','Potentially Actionable'); +INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (17280,2,13,'Putative_Passenger','Pathogenic','Tier 1','Highly Actionable'); +INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (26161,2,14,'Putative_Driver','Pathogenic','Tier 2','Potentially Actionable'); + -- from mutation +INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (26161,6,6,'Putative_Driver','Pathogenic','Tier 1','Highly Actionable'); +INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (22604,6,6,'Putative_Passenger','Pathogenic','Tier 2','Potentially Actionable'); +INSERT INTO "alteration_driver_annotation" ("ALTERATION_EVENT_ID","GENETIC_PROFILE_ID","SAMPLE_ID","DRIVER_FILTER","DRIVER_FILTER_ANNOTATION","DRIVER_TIERS_FILTER","DRIVER_TIERS_FILTER_ANNOTATION") VALUES (2039,6,12,'Putative_Passenger','Pathogenic','Tier 1','Highly Actionable'); + +-- sample_profile +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (1,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (1,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (2,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (2,3,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (2,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (2,5,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (2,6,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (3,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (3,3,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (3,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (3,6,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (4,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (4,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (5,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (5,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (6,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (6,3,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (6,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (6,6,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (7,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (7,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (8,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (8,3,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (8,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (8,6,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (9,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (9,3,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (9,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (9,6,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (10,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (10,3,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (10,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (10,6,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (11,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (11,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (12,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (12,3,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (12,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (12,6,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (13,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (13,3,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (13,4,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (14,2,NULL); +INSERT INTO "sample_profile" ("SAMPLE_ID","GENETIC_PROFILE_ID","PANEL_ID") VALUES (14,4,NULL); + +-- uniprot_id_mapping +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('P31749','AKT1_HUMAN',207); +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('P31751','AKT2_HUMAN',208); +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('Q9Y243','AKT3_HUMAN',10000); +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('P10398','ARAF_HUMAN',369); +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('Q13315','ATM_HUMAN',472); +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('P15056','BRAF_HUMAN',673); +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('P38398','BRCA1_HUMAN',672); +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('P51587','BRCA2_HUMAN',675); +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('P01112','RASH_HUMAN',3265); +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('P01116','RASK_HUMAN',3845); +INSERT INTO "uniprot_id_mapping" ("UNIPROT_ACC","UNIPROT_ID","ENTREZ_GENE_ID") VALUES ('P01111','RASN_HUMAN',4893); + +-- pfam_graphics +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('P31749','[{\"length\":\"480\",\"regions\":[{\"modelStart\":\"1\",\"modelEnd\":\"102\",\"colour\":\"#2dcf00\",\"endStyle\":\"jagged\",\"end\":108,\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"106\",\"modelLength\":\"104\",\"text\":\"PH\",\"href\":\"/family/PF00169\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"7.7e-10\",\"description\":\"PH domain\",\"end\":\"108\",\"accession\":\"PF00169\",\"database\":\"pfam\",\"aliEnd\":\"106\",\"identifier\":\"PH\",\"type\":\"Domain\",\"aliStart\":\"6\",\"start\":\"6\"},\"aliStart\":\"6\",\"start\":6},{\"modelStart\":\"2\",\"modelEnd\":\"260\",\"colour\":\"#ff5353\",\"endStyle\":\"curved\",\"end\":\"408\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"408\",\"modelLength\":\"260\",\"text\":\"Pkinase\",\"href\":\"/family/PF00069\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"1.2e-71\",\"description\":\"Protein kinase domain\",\"end\":\"408\",\"accession\":\"PF00069\",\"database\":\"pfam\",\"aliEnd\":\"408\",\"identifier\":\"Pkinase\",\"type\":\"Domain\",\"aliStart\":\"151\",\"start\":\"150\"},\"aliStart\":\"151\",\"start\":\"150\"},{\"modelStart\":\"1\",\"modelEnd\":\"45\",\"colour\":\"#5b5bff\",\"endStyle\":\"straight\",\"end\":\"477\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"475\",\"modelLength\":\"48\",\"text\":\"Pkinase_C\",\"href\":\"/family/PF00433\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"0.00051\",\"description\":\"Protein kinase C terminal domain\",\"end\":\"477\",\"accession\":\"PF00433\",\"database\":\"pfam\",\"aliEnd\":\"475\",\"identifier\":\"Pkinase_C\",\"type\":\"Family\",\"aliStart\":\"428\",\"start\":\"428\"},\"aliStart\":\"428\",\"start\":\"428\"}],\"markups\":[{\"lineColour\":\"#ff0000\",\"colour\":\"#aaaaaa\",\"end\":77,\"display\":true,\"v_align\":\"top\",\"metadata\":{\"database\":\"UniProt\",\"type\":\"disulphide\",\"start\":\"60\",\"end\":\"77\"},\"type\":\"disulphide\",\"start\":60},{\"lineColour\":\"#ff0000\",\"colour\":\"#aaaaaa\",\"end\":\"310\",\"display\":true,\"v_align\":\"top\",\"metadata\":{\"database\":\"UniProt\",\"type\":\"disulphide\",\"start\":\"296\",\"end\":\"310\"},\"type\":\"disulphide\",\"start\":\"296\"}],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"AKT1_HUMAN\",\"description\":\"RAC-alpha serine/threonine-protein kinase EC=2.7.11.1\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"P31749\",\"taxid\":\"9606\"},\"motifs\":[{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"39\",\"end\":\"43\"},\"start\":39,\"end\":43,\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"47\",\"end\":\"50\"},\"start\":47,\"end\":50,\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"59\",\"end\":\"61\"},\"start\":59,\"end\":61,\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"101\",\"end\":\"106\"},\"start\":101,\"end\":106,\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"114\",\"end\":\"138\"},\"start\":114,\"end\":\"138\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"390\",\"end\":\"391\"},\"start\":\"390\",\"end\":\"391\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"393\",\"end\":\"396\"},\"start\":\"393\",\"end\":\"396\",\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"424\",\"end\":\"425\"},\"start\":\"424\",\"end\":\"425\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"448\",\"end\":\"464\"},\"start\":\"448\",\"end\":\"464\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"471\",\"end\":\"474\"},\"start\":\"471\",\"end\":\"474\",\"display\":false}]}]'); +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('P31751','[{\"length\":\"481\",\"regions\":[{\"modelStart\":\"1\",\"modelEnd\":\"102\",\"colour\":\"#2dcf00\",\"endStyle\":\"jagged\",\"end\":108,\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"106\",\"modelLength\":\"104\",\"text\":\"PH\",\"href\":\"/family/PF00169\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"1.5e-10\",\"description\":\"PH domain\",\"end\":\"108\",\"accession\":\"PF00169\",\"database\":\"pfam\",\"aliEnd\":\"106\",\"identifier\":\"PH\",\"type\":\"Domain\",\"aliStart\":\"6\",\"start\":\"6\"},\"aliStart\":\"6\",\"start\":6},{\"modelStart\":\"3\",\"modelEnd\":\"260\",\"colour\":\"#ff5353\",\"endStyle\":\"curved\",\"end\":\"409\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"409\",\"modelLength\":\"260\",\"text\":\"Pkinase\",\"href\":\"/family/PF00069\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"1.1e-71\",\"description\":\"Protein kinase domain\",\"end\":\"409\",\"accession\":\"PF00069\",\"database\":\"pfam\",\"aliEnd\":\"409\",\"identifier\":\"Pkinase\",\"type\":\"Domain\",\"aliStart\":\"154\",\"start\":\"152\"},\"aliStart\":\"154\",\"start\":\"152\"},{\"modelStart\":\"1\",\"modelEnd\":\"45\",\"colour\":\"#5b5bff\",\"endStyle\":\"straight\",\"end\":\"478\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"476\",\"modelLength\":\"48\",\"text\":\"Pkinase_C\",\"href\":\"/family/PF00433\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"0.0013\",\"description\":\"Protein kinase C terminal domain\",\"end\":\"478\",\"accession\":\"PF00433\",\"database\":\"pfam\",\"aliEnd\":\"476\",\"identifier\":\"Pkinase_C\",\"type\":\"Family\",\"aliStart\":\"429\",\"start\":\"429\"},\"aliStart\":\"429\",\"start\":\"429\"}],\"markups\":[{\"lineColour\":\"#ff0000\",\"colour\":\"#aaaaaa\",\"end\":77,\"display\":true,\"v_align\":\"top\",\"metadata\":{\"database\":\"UniProt\",\"type\":\"disulphide\",\"start\":\"60\",\"end\":\"77\"},\"type\":\"disulphide\",\"start\":60},{\"lineColour\":\"#ff0000\",\"colour\":\"#aaaaaa\",\"end\":\"311\",\"display\":true,\"v_align\":\"top\",\"metadata\":{\"database\":\"UniProt\",\"type\":\"disulphide\",\"start\":\"297\",\"end\":\"311\"},\"type\":\"disulphide\",\"start\":\"297\"}],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"AKT2_HUMAN\",\"description\":\"RAC-beta serine/threonine-protein kinase EC=2.7.11.1\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"P31751\",\"taxid\":\"9606\"},\"motifs\":[{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"39\",\"end\":\"43\"},\"start\":39,\"end\":43,\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"47\",\"end\":\"50\"},\"start\":47,\"end\":50,\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"60\",\"end\":\"61\"},\"start\":60,\"end\":61,\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"116\",\"end\":\"129\"},\"start\":116,\"end\":\"129\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"133\",\"end\":\"137\"},\"start\":\"133\",\"end\":\"137\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"139\",\"end\":\"140\"},\"start\":\"139\",\"end\":\"140\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"394\",\"end\":\"397\"},\"start\":\"394\",\"end\":\"397\",\"display\":false}]}]'); +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('P10398','[{\"length\":\"606\",\"regions\":[{\"modelStart\":\"2\",\"modelEnd\":\"71\",\"colour\":\"#2dcf00\",\"endStyle\":\"curved\",\"end\":91,\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"91\",\"modelLength\":\"71\",\"text\":\"RBD\",\"href\":\"/family/PF02196\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"3.2e-25\",\"description\":\"Raf-like Ras-binding domain\",\"end\":\"91\",\"accession\":\"PF02196\",\"database\":\"pfam\",\"aliEnd\":\"91\",\"identifier\":\"RBD\",\"type\":\"Domain\",\"aliStart\":\"20\",\"start\":\"19\"},\"aliStart\":\"20\",\"start\":19},{\"modelStart\":\"1\",\"modelEnd\":\"51\",\"colour\":\"#ff5353\",\"endStyle\":\"straight\",\"end\":\"147\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"145\",\"modelLength\":\"53\",\"text\":\"C1_1\",\"href\":\"/family/PF00130\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"8.6e-07\",\"description\":\"Phorbol esters/diacylglycerol binding domain (C1 domain)\",\"end\":\"147\",\"accession\":\"PF00130\",\"database\":\"pfam\",\"aliEnd\":\"145\",\"identifier\":\"C1_1\",\"type\":\"Domain\",\"aliStart\":\"99\",\"start\":\"99\"},\"aliStart\":\"99\",\"start\":99},{\"modelStart\":\"2\",\"modelEnd\":\"257\",\"colour\":\"#5b5bff\",\"endStyle\":\"jagged\",\"end\":\"567\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"565\",\"modelLength\":\"259\",\"text\":\"Pkinase_Tyr\",\"href\":\"/family/PF07714\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"1.2e-57\",\"description\":\"Protein tyrosine kinase\",\"end\":\"567\",\"accession\":\"PF07714\",\"database\":\"pfam\",\"aliEnd\":\"565\",\"identifier\":\"Pkinase_Tyr\",\"type\":\"Domain\",\"aliStart\":\"311\",\"start\":\"310\"},\"aliStart\":\"311\",\"start\":\"310\"}],\"markups\":[],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"ARAF_HUMAN\",\"description\":\"Serine/threonine-protein kinase A-Raf EC=2.7.11.1\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"P10398\",\"taxid\":\"9606\"},\"motifs\":[{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1\",\"end\":\"13\"},\"start\":1,\"end\":13,\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"156\",\"end\":\"290\"},\"start\":\"156\",\"end\":\"290\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"351\",\"end\":\"352\"},\"start\":\"351\",\"end\":\"352\",\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"581\",\"end\":\"582\"},\"start\":\"581\",\"end\":\"582\",\"display\":true}]}]'); +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('Q13315','[{\"length\":\"3056\",\"regions\":[{\"modelStart\":\"3\",\"modelEnd\":\"154\",\"colour\":\"#2dcf00\",\"endStyle\":\"jagged\",\"end\":\"166\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"165\",\"modelLength\":\"155\",\"text\":\"TAN\",\"href\":\"/family/PF11640\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"1.5e-32\",\"description\":\"Telomere-length maintenance and DNA damage repair\",\"end\":\"166\",\"accession\":\"PF11640\",\"database\":\"pfam\",\"aliEnd\":\"165\",\"identifier\":\"TAN\",\"type\":\"Domain\",\"aliStart\":\"7\",\"start\":\"5\"},\"aliStart\":\"7\",\"start\":5},{\"modelStart\":\"2\",\"modelEnd\":\"351\",\"colour\":\"#ff5353\",\"endStyle\":\"jagged\",\"end\":\"2489\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"2488\",\"modelLength\":\"352\",\"text\":\"FAT\",\"href\":\"/family/PF02259\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"2.2e-45\",\"description\":\"FAT domain\",\"end\":\"2489\",\"accession\":\"PF02259\",\"database\":\"pfam\",\"aliEnd\":\"2488\",\"identifier\":\"FAT\",\"type\":\"Family\",\"aliStart\":\"2097\",\"start\":\"2096\"},\"aliStart\":\"2097\",\"start\":\"2096\"},{\"modelStart\":\"4\",\"modelEnd\":\"234\",\"colour\":\"#5b5bff\",\"endStyle\":\"jagged\",\"end\":\"2962\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"2961\",\"modelLength\":\"235\",\"text\":\"PI3_PI4_kinase\",\"href\":\"/family/PF00454\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"8.6e-42\",\"description\":\"Phosphatidylinositol 3- and 4-kinase\",\"end\":\"2962\",\"accession\":\"PF00454\",\"database\":\"pfam\",\"aliEnd\":\"2961\",\"identifier\":\"PI3_PI4_kinase\",\"type\":\"Family\",\"aliStart\":\"2714\",\"start\":\"2711\"},\"aliStart\":\"2714\",\"start\":\"2711\"},{\"modelStart\":\"2\",\"modelEnd\":\"32\",\"colour\":\"#ebd61d\",\"endStyle\":\"straight\",\"end\":\"3056\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"3055\",\"modelLength\":\"33\",\"text\":\"FATC\",\"href\":\"/family/PF02260\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"5.5e-08\",\"description\":\"FATC domain\",\"end\":\"3056\",\"accession\":\"PF02260\",\"database\":\"pfam\",\"aliEnd\":\"3055\",\"identifier\":\"FATC\",\"type\":\"Family\",\"aliStart\":\"3025\",\"start\":\"3024\"},\"aliStart\":\"3025\",\"start\":\"3024\"}],\"markups\":[],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"ATM_HUMAN\",\"description\":\"Serine-protein kinase ATM EC=2.7.11.1\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"Q13315\",\"taxid\":\"9606\"},\"motifs\":[{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"41\",\"end\":\"42\"},\"start\":41,\"end\":42,\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"837\",\"end\":\"846\"},\"start\":\"837\",\"end\":\"846\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"863\",\"end\":\"874\"},\"start\":\"863\",\"end\":\"874\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"876\",\"end\":\"878\"},\"start\":\"876\",\"end\":\"878\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1131\",\"end\":\"1132\"},\"start\":\"1131\",\"end\":\"1132\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1135\",\"end\":\"1136\"},\"start\":\"1135\",\"end\":\"1136\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1138\",\"end\":\"1139\"},\"start\":\"1138\",\"end\":\"1139\",\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1972\",\"end\":\"1977\"},\"start\":\"1972\",\"end\":\"1977\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1986\",\"end\":\"1989\"},\"start\":\"1986\",\"end\":\"1989\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2582\",\"end\":\"2595\"},\"start\":\"2582\",\"end\":\"2595\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2715\",\"end\":\"2716\"},\"start\":\"2715\",\"end\":\"2716\",\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2978\",\"end\":\"2986\"},\"start\":\"2978\",\"end\":\"2986\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"coiled_coil\",\"metadata\":{\"database\":\"ncoils\",\"type\":\"coiled_coil\",\"start\":\"1614\",\"end\":\"1634\"},\"start\":\"1614\",\"end\":\"1634\",\"display\":false},{\"colour\":\"#32cd32\",\"type\":\"coiled_coil\",\"metadata\":{\"database\":\"ncoils\",\"type\":\"coiled_coil\",\"start\":\"3003\",\"end\":\"3023\"},\"start\":\"3003\",\"end\":\"3023\",\"display\":true},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.2900\",\"type\":\"low_complexity\",\"start\":\"432\",\"end\":\"446\"},\"start\":\"432\",\"end\":\"446\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.1300\",\"type\":\"low_complexity\",\"start\":\"641\",\"end\":\"653\"},\"start\":\"641\",\"end\":\"653\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.2700\",\"type\":\"low_complexity\",\"start\":\"894\",\"end\":\"907\"},\"start\":\"894\",\"end\":\"907\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.4000\",\"type\":\"low_complexity\",\"start\":\"2443\",\"end\":\"2458\"},\"start\":\"2443\",\"end\":\"2458\",\"display\":false},{\"colour\":[\"#f0ff7f\",\"#7ff0ff\",\"#ff7ff0\"],\"href\":\"/pfamb/PB013450\",\"type\":\"pfamb\",\"metadata\":{\"database\":\"pfam\",\"identifier\":\"Pfam-B_13450\",\"type\":\"Pfam-B\",\"start\":\"602\",\"end\":\"830\",\"accession\":\"PB013450\"},\"start\":\"602\",\"end\":\"830\",\"display\":true},{\"colour\":[\"#7fff7f\",\"#7f7fff\",\"#ff7f7f\"],\"href\":\"/pfamb/PB017604\",\"type\":\"pfamb\",\"metadata\":{\"database\":\"pfam\",\"identifier\":\"Pfam-B_17604\",\"type\":\"Pfam-B\",\"start\":\"1819\",\"end\":\"1953\",\"accession\":\"PB017604\"},\"start\":\"1819\",\"end\":\"1953\",\"display\":true},{\"colour\":[\"#7ffff0\",\"#f07fff\",\"#fff07f\"],\"href\":\"/pfamb/PB016049\",\"type\":\"pfamb\",\"metadata\":{\"database\":\"pfam\",\"identifier\":\"Pfam-B_16049\",\"type\":\"Pfam-B\",\"start\":\"1715\",\"end\":\"1818\",\"accession\":\"PB016049\"},\"start\":\"1715\",\"end\":\"1818\",\"display\":true},{\"colour\":[\"#7f9dff\",\"#ff7f9d\",\"#9dff7f\"],\"href\":\"/pfamb/PB010220\",\"type\":\"pfamb\",\"metadata\":{\"database\":\"pfam\",\"identifier\":\"Pfam-B_10220\",\"type\":\"Pfam-B\",\"start\":\"1575\",\"end\":\"1713\",\"accession\":\"PB010220\"},\"start\":\"1575\",\"end\":\"1713\",\"display\":true},{\"colour\":[\"#d27fff\",\"#ffd27f\",\"#7fffd2\"],\"href\":\"/pfamb/PB003386\",\"type\":\"pfamb\",\"metadata\":{\"database\":\"pfam\",\"identifier\":\"Pfam-B_3386\",\"type\":\"Pfam-B\",\"start\":\"861\",\"end\":\"1458\",\"accession\":\"PB003386\"},\"start\":\"861\",\"end\":\"1458\",\"display\":true}]}]'); +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('P38398','[{\"length\":\"1863\",\"regions\":[{\"modelStart\":\"1\",\"modelEnd\":\"41\",\"colour\":\"#2dcf00\",\"endStyle\":\"straight\",\"end\":64,\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"64\",\"modelLength\":\"41\",\"text\":\"zf-C3HC4\",\"href\":\"/family/PF00097\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"6.6e-06\",\"description\":\"Zinc finger,C3HC4 type (RING finger)\",\"end\":\"64\",\"accession\":\"PF00097\",\"database\":\"pfam\",\"aliEnd\":\"64\",\"identifier\":\"zf-C3HC4\",\"type\":\"Domain\",\"aliStart\":\"24\",\"start\":\"24\"},\"aliStart\":\"24\",\"start\":24},{\"modelStart\":\"1\",\"modelEnd\":\"164\",\"colour\":\"#ff5353\",\"endStyle\":\"jagged\",\"end\":\"508\",\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"507\",\"modelLength\":\"165\",\"text\":\"BRCT_assoc\",\"href\":\"/family/PF12820\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"6.4e-83\",\"description\":\"Serine-rich domain associated with BRCT\",\"end\":\"508\",\"accession\":\"PF12820\",\"database\":\"pfam\",\"aliEnd\":\"507\",\"identifier\":\"BRCT_assoc\",\"type\":\"Domain\",\"aliStart\":\"344\",\"start\":\"344\"},\"aliStart\":\"344\",\"start\":\"344\"},{\"modelStart\":\"1\",\"modelEnd\":\"354\",\"colour\":\"#5b5bff\",\"endStyle\":\"curved\",\"end\":\"978\",\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"978\",\"modelLength\":\"354\",\"text\":\"EIN3\",\"href\":\"/family/PF04873\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"1.2e-89\",\"description\":\"Ethylene insensitive 3\",\"end\":\"978\",\"accession\":\"PF04873\",\"database\":\"pfam\",\"aliEnd\":\"978\",\"identifier\":\"EIN3\",\"type\":\"Family\",\"aliStart\":\"648\",\"start\":\"648\"},\"aliStart\":\"648\",\"start\":\"648\"},{\"modelStart\":\"24\",\"modelEnd\":\"78\",\"colour\":\"#ebd61d\",\"endStyle\":\"curved\",\"end\":\"1723\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"1723\",\"modelLength\":\"78\",\"text\":\"BRCT\",\"href\":\"/family/PF00533\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"0.00016\",\"description\":\"BRCA1 C Terminus (BRCT) domain\",\"end\":\"1723\",\"accession\":\"PF00533\",\"database\":\"pfam\",\"aliEnd\":\"1723\",\"identifier\":\"BRCT\",\"type\":\"Family\",\"aliStart\":\"1662\",\"start\":\"1648\"},\"aliStart\":\"1662\",\"start\":\"1648\"},{\"modelStart\":\"2\",\"modelEnd\":\"78\",\"colour\":\"#ebd61d\",\"endStyle\":\"curved\",\"end\":\"1842\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"1842\",\"modelLength\":\"78\",\"text\":\"BRCT\",\"href\":\"/family/PF00533\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"3.3e-05\",\"description\":\"BRCA1 C Terminus (BRCT) domain\",\"end\":\"1842\",\"accession\":\"PF00533\",\"database\":\"pfam\",\"aliEnd\":\"1842\",\"identifier\":\"BRCT\",\"type\":\"Family\",\"aliStart\":\"1757\",\"start\":\"1756\"},\"aliStart\":\"1757\",\"start\":\"1756\"}],\"markups\":[],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"BRCA1_HUMAN\",\"description\":\"Breast cancer type 1 susceptibility protein EC=6.3.2.-\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"P38398\",\"taxid\":\"9606\"},\"motifs\":[{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"135\",\"end\":\"153\"},\"start\":\"135\",\"end\":\"153\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"163\",\"end\":\"168\"},\"start\":\"163\",\"end\":\"168\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"176\",\"end\":\"184\"},\"start\":\"176\",\"end\":\"184\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"191\",\"end\":\"195\"},\"start\":\"191\",\"end\":\"195\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"202\",\"end\":\"204\"},\"start\":\"202\",\"end\":\"204\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"207\",\"end\":\"216\"},\"start\":\"207\",\"end\":\"216\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"218\",\"end\":\"221\"},\"start\":\"218\",\"end\":\"221\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"227\",\"end\":\"293\"},\"start\":\"227\",\"end\":\"293\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"301\",\"end\":\"346\"},\"start\":\"301\",\"end\":343,\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"353\",\"end\":\"367\"},\"start\":\"353\",\"end\":\"367\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"371\",\"end\":\"373\"},\"start\":\"371\",\"end\":\"373\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"390\",\"end\":\"410\"},\"start\":\"390\",\"end\":\"410\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"426\",\"end\":\"428\"},\"start\":\"426\",\"end\":\"428\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"443\",\"end\":\"444\"},\"start\":\"443\",\"end\":\"444\",\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"494\",\"end\":\"629\"},\"start\":545,\"end\":\"629\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"631\",\"end\":\"632\"},\"start\":\"631\",\"end\":\"632\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"636\",\"end\":\"643\"},\"start\":\"636\",\"end\":642,\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"647\",\"end\":\"706\"},\"start\":\"647\",\"end\":647,\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"708\",\"end\":\"709\"},\"start\":\"708\",\"end\":\"709\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"713\",\"end\":\"714\"},\"start\":\"713\",\"end\":\"714\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"718\",\"end\":\"776\"},\"start\":\"718\",\"end\":\"776\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"782\",\"end\":\"783\"},\"start\":\"782\",\"end\":\"783\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"786\",\"end\":\"789\"},\"start\":\"786\",\"end\":\"789\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"816\",\"end\":\"821\"},\"start\":\"816\",\"end\":\"821\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"825\",\"end\":\"851\"},\"start\":\"825\",\"end\":\"851\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"856\",\"end\":\"857\"},\"start\":\"856\",\"end\":\"857\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"868\",\"end\":\"870\"},\"start\":\"868\",\"end\":\"870\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"872\",\"end\":\"873\"},\"start\":\"872\",\"end\":\"873\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"880\",\"end\":\"881\"},\"start\":\"880\",\"end\":\"881\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"883\",\"end\":\"887\"},\"start\":\"883\",\"end\":\"887\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"896\",\"end\":\"920\"},\"start\":\"896\",\"end\":\"920\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"927\",\"end\":\"932\"},\"start\":\"927\",\"end\":\"932\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"964\",\"end\":\"972\"},\"start\":\"964\",\"end\":\"972\",\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1000\",\"end\":\"1027\"},\"start\":\"1000\",\"end\":\"1027\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1030\",\"end\":\"1032\"},\"start\":\"1030\",\"end\":\"1032\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1034\",\"end\":\"1035\"},\"start\":\"1034\",\"end\":\"1035\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1037\",\"end\":\"1076\"},\"start\":\"1037\",\"end\":\"1076\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1080\",\"end\":\"1081\"},\"start\":\"1080\",\"end\":\"1081\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1095\",\"end\":\"1116\"},\"start\":\"1095\",\"end\":\"1116\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1127\",\"end\":\"1165\"},\"start\":\"1127\",\"end\":\"1165\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1185\",\"end\":\"1218\"},\"start\":\"1185\",\"end\":1208,\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1242\",\"end\":\"1251\"},\"start\":\"1242\",\"end\":\"1251\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1277\",\"end\":\"1279\"},\"start\":\"1277\",\"end\":\"1279\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1281\",\"end\":\"1282\"},\"start\":\"1281\",\"end\":\"1282\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1308\",\"end\":\"1309\"},\"start\":\"1308\",\"end\":\"1309\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1311\",\"end\":\"1505\"},\"start\":1494,\"end\":\"1505\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1507\",\"end\":\"1508\"},\"start\":\"1507\",\"end\":\"1508\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1512\",\"end\":\"1517\"},\"start\":\"1512\",\"end\":\"1517\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1519\",\"end\":\"1559\"},\"start\":\"1519\",\"end\":\"1559\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1563\",\"end\":\"1596\"},\"start\":1588,\"end\":\"1596\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1601\",\"end\":\"1645\"},\"start\":\"1601\",\"end\":\"1645\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1647\",\"end\":\"1648\"},\"start\":\"1647\",\"end\":1647,\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1740\",\"end\":\"1741\"},\"start\":\"1740\",\"end\":\"1741\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1745\",\"end\":\"1749\"},\"start\":\"1745\",\"end\":\"1749\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1751\",\"end\":\"1752\"},\"start\":\"1751\",\"end\":\"1752\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"transmembrane\",\"metadata\":{\"database\":\"Phobius\",\"type\":\"transmembrane\",\"start\":\"1701\",\"end\":\"1719\"},\"start\":\"1701\",\"end\":\"1719\",\"display\":false},{\"colour\":\"#32cd32\",\"type\":\"coiled_coil\",\"metadata\":{\"database\":\"ncoils\",\"type\":\"coiled_coil\",\"start\":\"1253\",\"end\":\"1273\"},\"start\":\"1253\",\"end\":\"1273\",\"display\":true},{\"colour\":\"#32cd32\",\"type\":\"coiled_coil\",\"metadata\":{\"database\":\"ncoils\",\"type\":\"coiled_coil\",\"start\":\"1397\",\"end\":\"1424\"},\"start\":\"1397\",\"end\":1403,\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.1900\",\"type\":\"low_complexity\",\"start\":\"394\",\"end\":\"405\"},\"start\":\"394\",\"end\":\"405\",\"display\":false},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.1900\",\"type\":\"low_complexity\",\"start\":\"533\",\"end\":\"544\"},\"start\":\"533\",\"end\":\"544\",\"display\":true},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.0800\",\"type\":\"low_complexity\",\"start\":\"643\",\"end\":\"654\"},\"start\":\"643\",\"end\":647,\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"1.3000\",\"type\":\"low_complexity\",\"start\":\"729\",\"end\":\"736\"},\"start\":\"729\",\"end\":\"736\",\"display\":false},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.0200\",\"type\":\"low_complexity\",\"start\":\"1209\",\"end\":\"1223\"},\"start\":\"1209\",\"end\":\"1223\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.4400\",\"type\":\"low_complexity\",\"start\":\"1254\",\"end\":\"1268\"},\"start\":\"1254\",\"end\":\"1268\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.2000\",\"type\":\"low_complexity\",\"start\":\"1425\",\"end\":\"1437\"},\"start\":\"1425\",\"end\":\"1437\",\"display\":false},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.4100\",\"type\":\"low_complexity\",\"start\":\"1572\",\"end\":\"1587\"},\"start\":\"1572\",\"end\":\"1587\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.4100\",\"type\":\"low_complexity\",\"start\":\"1673\",\"end\":\"1686\"},\"start\":\"1673\",\"end\":\"1686\",\"display\":false},{\"colour\":[\"#86ff7f\",\"#7f88ff\",\"#ff7f87\"],\"href\":\"/pfamb/PB017893\",\"type\":\"pfamb\",\"metadata\":{\"database\":\"pfam\",\"identifier\":\"Pfam-B_17893\",\"type\":\"Pfam-B\",\"start\":\"1404\",\"end\":\"1493\",\"accession\":\"PB017893\"},\"start\":\"1404\",\"end\":\"1493\",\"display\":true},{\"colour\":\"#00ffff\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1311\",\"end\":\"1505\"},\"type\":\"disorder\",\"display\":false,\"end\":1403,\"start\":1404},{\"colour\":\"#cccccc\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1311\",\"end\":\"1505\"},\"type\":\"disorder\",\"display\":true,\"end\":1396,\"start\":\"1311\"},{\"colour\":\"#cccccc\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"494\",\"end\":\"629\"},\"type\":\"disorder\",\"display\":true,\"end\":532,\"start\":509},{\"colour\":\"#cccccc\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1563\",\"end\":\"1596\"},\"type\":\"disorder\",\"display\":true,\"end\":1571,\"start\":\"1563\"}]}]'); +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('P15056','[{\"length\":\"766\",\"regions\":[{\"modelStart\":\"2\",\"modelEnd\":\"71\",\"colour\":\"#2dcf00\",\"endStyle\":\"curved\",\"end\":\"227\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"227\",\"modelLength\":\"71\",\"text\":\"RBD\",\"href\":\"/family/PF02196\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"5.8e-27\",\"description\":\"Raf-like Ras-binding domain\",\"end\":\"227\",\"accession\":\"PF02196\",\"database\":\"pfam\",\"aliEnd\":\"227\",\"identifier\":\"RBD\",\"type\":\"Domain\",\"aliStart\":\"156\",\"start\":\"155\"},\"aliStart\":\"156\",\"start\":\"155\"},{\"modelStart\":\"1\",\"modelEnd\":\"50\",\"colour\":\"#ff5353\",\"endStyle\":\"straight\",\"end\":\"282\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"280\",\"modelLength\":\"53\",\"text\":\"C1_1\",\"href\":\"/family/PF00130\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"2.3e-08\",\"description\":\"Phorbol esters/diacylglycerol binding domain (C1 domain)\",\"end\":\"282\",\"accession\":\"PF00130\",\"database\":\"pfam\",\"aliEnd\":\"280\",\"identifier\":\"C1_1\",\"type\":\"Domain\",\"aliStart\":\"235\",\"start\":\"235\"},\"aliStart\":\"235\",\"start\":\"235\"},{\"modelStart\":\"2\",\"modelEnd\":\"257\",\"colour\":\"#5b5bff\",\"endStyle\":\"jagged\",\"end\":\"714\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"712\",\"modelLength\":\"259\",\"text\":\"Pkinase_Tyr\",\"href\":\"/family/PF07714\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"4.4e-61\",\"description\":\"Protein tyrosine kinase\",\"end\":\"714\",\"accession\":\"PF07714\",\"database\":\"pfam\",\"aliEnd\":\"712\",\"identifier\":\"Pkinase_Tyr\",\"type\":\"Domain\",\"aliStart\":\"458\",\"start\":\"457\"},\"aliStart\":\"458\",\"start\":\"457\"}],\"markups\":[],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"BRAF_HUMAN\",\"description\":\"Serine/threonine-protein kinase B-raf EC=2.7.11.1\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"P15056\",\"taxid\":\"0\"},\"motifs\":[{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2\",\"end\":\"7\"},\"start\":2,\"end\":5,\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"9\",\"end\":\"38\"},\"start\":12,\"end\":26,\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"64\",\"end\":\"67\"},\"start\":64,\"end\":67,\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"96\",\"end\":\"97\"},\"start\":96,\"end\":97,\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"103\",\"end\":\"105\"},\"start\":103,\"end\":105,\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"111\",\"end\":\"116\"},\"start\":111,\"end\":116,\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"122\",\"end\":\"123\"},\"start\":122,\"end\":123,\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"141\",\"end\":\"149\"},\"start\":\"141\",\"end\":\"149\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"305\",\"end\":\"377\"},\"start\":344,\"end\":\"377\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"380\",\"end\":\"456\"},\"start\":433,\"end\":\"456\",\"display\":true},{\"colour\":\"#32cd32\",\"type\":\"coiled_coil\",\"metadata\":{\"database\":\"ncoils\",\"type\":\"coiled_coil\",\"start\":\"82\",\"end\":\"102\"},\"start\":82,\"end\":102,\"display\":true},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"type\":\"low_complexity\",\"start\":\"6\",\"end\":\"11\"},\"start\":6,\"end\":11,\"display\":true},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"1.3300\",\"type\":\"low_complexity\",\"start\":\"27\",\"end\":\"39\"},\"start\":27,\"end\":39,\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.0800\",\"type\":\"low_complexity\",\"start\":\"92\",\"end\":\"103\"},\"start\":103,\"end\":103,\"display\":false},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.1900\",\"type\":\"low_complexity\",\"start\":\"110\",\"end\":\"137\"},\"start\":110,\"end\":\"137\",\"display\":true},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.2900\",\"type\":\"low_complexity\",\"start\":\"314\",\"end\":\"328\"},\"start\":\"314\",\"end\":\"328\",\"display\":true},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"1.8200\",\"type\":\"low_complexity\",\"start\":\"333\",\"end\":\"343\"},\"start\":\"333\",\"end\":\"343\",\"display\":true},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"type\":\"low_complexity\",\"start\":\"428\",\"end\":\"432\"},\"start\":\"428\",\"end\":\"432\",\"display\":true},{\"colour\":\"#cccccc\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"305\",\"end\":\"377\"},\"type\":\"disorder\",\"display\":true,\"end\":313,\"start\":\"305\"},{\"colour\":\"#cccccc\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"305\",\"end\":\"377\"},\"type\":\"disorder\",\"display\":true,\"end\":332,\"start\":329},{\"colour\":\"#cccccc\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"380\",\"end\":\"456\"},\"type\":\"disorder\",\"display\":true,\"end\":427,\"start\":\"380\"}]}]'); +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('P51587','[{\"length\":\"3418\",\"regions\":[{\"modelStart\":\"1\",\"modelEnd\":\"35\",\"colour\":\"#2dcf00\",\"endStyle\":\"straight\",\"end\":\"1036\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"1036\",\"modelLength\":\"35\",\"text\":\"BRCA2\",\"href\":\"/family/PF00634\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"8.9e-09\",\"description\":\"BRCA2 repeat\",\"end\":\"1036\",\"accession\":\"PF00634\",\"database\":\"pfam\",\"aliEnd\":\"1036\",\"identifier\":\"BRCA2\",\"type\":\"Family\",\"aliStart\":\"1002\",\"start\":\"1002\"},\"aliStart\":\"1002\",\"start\":\"1002\"},{\"modelStart\":\"1\",\"modelEnd\":\"35\",\"colour\":\"#2dcf00\",\"endStyle\":\"straight\",\"end\":\"1246\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"1246\",\"modelLength\":\"35\",\"text\":\"BRCA2\",\"href\":\"/family/PF00634\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"1.9e-08\",\"description\":\"BRCA2 repeat\",\"end\":\"1246\",\"accession\":\"PF00634\",\"database\":\"pfam\",\"aliEnd\":\"1246\",\"identifier\":\"BRCA2\",\"type\":\"Family\",\"aliStart\":\"1212\",\"start\":\"1212\"},\"aliStart\":\"1212\",\"start\":\"1212\"},{\"modelStart\":\"1\",\"modelEnd\":\"34\",\"colour\":\"#2dcf00\",\"endStyle\":\"straight\",\"end\":\"1455\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"1454\",\"modelLength\":\"35\",\"text\":\"BRCA2\",\"href\":\"/family/PF00634\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"6.7e-08\",\"description\":\"BRCA2 repeat\",\"end\":\"1455\",\"accession\":\"PF00634\",\"database\":\"pfam\",\"aliEnd\":\"1454\",\"identifier\":\"BRCA2\",\"type\":\"Family\",\"aliStart\":\"1421\",\"start\":\"1421\"},\"aliStart\":\"1421\",\"start\":\"1421\"},{\"modelStart\":\"1\",\"modelEnd\":\"34\",\"colour\":\"#2dcf00\",\"endStyle\":\"straight\",\"end\":\"1551\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"1550\",\"modelLength\":\"35\",\"text\":\"BRCA2\",\"href\":\"/family/PF00634\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"2.6e-10\",\"description\":\"BRCA2 repeat\",\"end\":\"1551\",\"accession\":\"PF00634\",\"database\":\"pfam\",\"aliEnd\":\"1550\",\"identifier\":\"BRCA2\",\"type\":\"Family\",\"aliStart\":\"1517\",\"start\":\"1517\"},\"aliStart\":\"1517\",\"start\":\"1517\"},{\"modelStart\":\"1\",\"modelEnd\":\"33\",\"colour\":\"#2dcf00\",\"endStyle\":\"straight\",\"end\":\"1698\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"1696\",\"modelLength\":\"35\",\"text\":\"BRCA2\",\"href\":\"/family/PF00634\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"3.9e-08\",\"description\":\"BRCA2 repeat\",\"end\":\"1698\",\"accession\":\"PF00634\",\"database\":\"pfam\",\"aliEnd\":\"1696\",\"identifier\":\"BRCA2\",\"type\":\"Family\",\"aliStart\":\"1664\",\"start\":\"1664\"},\"aliStart\":\"1664\",\"start\":\"1664\"},{\"modelStart\":\"1\",\"modelEnd\":\"33\",\"colour\":\"#2dcf00\",\"endStyle\":\"straight\",\"end\":\"1871\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"1869\",\"modelLength\":\"35\",\"text\":\"BRCA2\",\"href\":\"/family/PF00634\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"6.3e-08\",\"description\":\"BRCA2 repeat\",\"end\":\"1871\",\"accession\":\"PF00634\",\"database\":\"pfam\",\"aliEnd\":\"1869\",\"identifier\":\"BRCA2\",\"type\":\"Family\",\"aliStart\":\"1837\",\"start\":\"1837\"},\"aliStart\":\"1837\",\"start\":\"1837\"},{\"modelStart\":\"2\",\"modelEnd\":\"35\",\"colour\":\"#2dcf00\",\"endStyle\":\"straight\",\"end\":\"2005\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"2005\",\"modelLength\":\"35\",\"text\":\"BRCA2\",\"href\":\"/family/PF00634\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"2e-10\",\"description\":\"BRCA2 repeat\",\"end\":\"2005\",\"accession\":\"PF00634\",\"database\":\"pfam\",\"aliEnd\":\"2005\",\"identifier\":\"BRCA2\",\"type\":\"Family\",\"aliStart\":\"1972\",\"start\":\"1971\"},\"aliStart\":\"1972\",\"start\":\"1971\"},{\"modelStart\":\"1\",\"modelEnd\":\"34\",\"colour\":\"#2dcf00\",\"endStyle\":\"straight\",\"end\":\"2085\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"2084\",\"modelLength\":\"35\",\"text\":\"BRCA2\",\"href\":\"/family/PF00634\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"3.3e-08\",\"description\":\"BRCA2 repeat\",\"end\":\"2085\",\"accession\":\"PF00634\",\"database\":\"pfam\",\"aliEnd\":\"2084\",\"identifier\":\"BRCA2\",\"type\":\"Family\",\"aliStart\":\"2051\",\"start\":\"2051\"},\"aliStart\":\"2051\",\"start\":\"2051\"},{\"modelStart\":\"1\",\"modelEnd\":\"195\",\"colour\":\"#ff5353\",\"endStyle\":\"curved\",\"end\":\"2667\",\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"2667\",\"modelLength\":\"195\",\"text\":\"BRCA-2_helical\",\"href\":\"/family/PF09169\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"1.5e-98\",\"description\":\"BRCA2,helical\",\"end\":\"2667\",\"accession\":\"PF09169\",\"database\":\"pfam\",\"aliEnd\":\"2667\",\"identifier\":\"BRCA-2_helical\",\"type\":\"Domain\",\"aliStart\":\"2479\",\"start\":\"2479\"},\"aliStart\":\"2479\",\"start\":\"2479\"},{\"modelStart\":\"1\",\"modelEnd\":\"117\",\"colour\":\"#5b5bff\",\"endStyle\":\"jagged\",\"end\":\"2800\",\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"2799\",\"modelLength\":\"118\",\"text\":\"BRCA-2_OB1\",\"href\":\"/family/PF09103\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"1.3e-39\",\"description\":\"BRCA2,oligonucleotide/oligosaccharide-binding,domain 1\",\"end\":\"2800\",\"accession\":\"PF09103\",\"database\":\"pfam\",\"aliEnd\":\"2799\",\"identifier\":\"BRCA-2_OB1\",\"type\":\"Domain\",\"aliStart\":\"2670\",\"start\":\"2670\"},\"aliStart\":\"2670\",\"start\":\"2670\"},{\"modelStart\":\"1\",\"modelEnd\":\"42\",\"colour\":\"#ebd61d\",\"endStyle\":\"straight\",\"end\":\"2872\",\"display\":true,\"startStyle\":\"straight\",\"aliEnd\":\"2872\",\"modelLength\":\"42\",\"text\":\"Tower\",\"href\":\"/family/PF09121\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"4.9e-19\",\"description\":\"Tower\",\"end\":\"2872\",\"accession\":\"PF09121\",\"database\":\"pfam\",\"aliEnd\":\"2872\",\"identifier\":\"Tower\",\"type\":\"Domain\",\"aliStart\":\"2831\",\"start\":\"2831\"},\"aliStart\":\"2831\",\"start\":\"2831\"},{\"modelStart\":\"1\",\"modelEnd\":\"143\",\"colour\":\"#ba21e0\",\"endStyle\":\"curved\",\"end\":\"3190\",\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"3190\",\"modelLength\":\"143\",\"text\":\"BRCA-2_OB3\",\"href\":\"/family/PF09104\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"2.7e-60\",\"description\":\"BRCA2,oligonucleotide/oligosaccharide-binding,domain 3\",\"end\":\"3190\",\"accession\":\"PF09104\",\"database\":\"pfam\",\"aliEnd\":\"3190\",\"identifier\":\"BRCA-2_OB3\",\"type\":\"Domain\",\"aliStart\":\"3052\",\"start\":\"3052\"},\"aliStart\":\"3052\",\"start\":\"3052\"}],\"markups\":[],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"BRCA2_HUMAN\",\"description\":\"Breast cancer type 2 susceptibility protein\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"P51587\",\"taxid\":\"9606\"},\"motifs\":[{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"38\",\"end\":\"68\"},\"start\":38,\"end\":68,\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"73\",\"end\":\"74\"},\"start\":73,\"end\":74,\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"102\",\"end\":\"104\"},\"start\":102,\"end\":104,\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"112\",\"end\":\"123\"},\"start\":112,\"end\":123,\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"176\",\"end\":\"187\"},\"start\":\"176\",\"end\":\"187\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"191\",\"end\":\"197\"},\"start\":\"191\",\"end\":192,\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"205\",\"end\":\"209\"},\"start\":208,\"end\":\"209\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"220\",\"end\":\"221\"},\"start\":\"220\",\"end\":\"221\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"232\",\"end\":\"234\"},\"start\":\"232\",\"end\":\"234\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"244\",\"end\":\"267\"},\"start\":\"244\",\"end\":\"267\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"277\",\"end\":\"279\"},\"start\":\"277\",\"end\":\"279\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"290\",\"end\":\"291\"},\"start\":\"290\",\"end\":\"291\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"293\",\"end\":\"296\"},\"start\":\"293\",\"end\":\"296\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"326\",\"end\":\"329\"},\"start\":\"326\",\"end\":\"329\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"334\",\"end\":\"336\"},\"start\":\"334\",\"end\":\"336\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"352\",\"end\":\"379\"},\"start\":\"352\",\"end\":\"379\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"425\",\"end\":\"427\"},\"start\":\"425\",\"end\":\"427\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"430\",\"end\":\"437\"},\"start\":\"430\",\"end\":\"437\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"439\",\"end\":\"471\"},\"start\":\"439\",\"end\":\"471\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"516\",\"end\":\"534\"},\"start\":\"516\",\"end\":\"534\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"540\",\"end\":\"541\"},\"start\":\"540\",\"end\":\"541\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"558\",\"end\":\"560\"},\"start\":\"558\",\"end\":\"560\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"644\",\"end\":\"645\"},\"start\":\"644\",\"end\":\"645\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"713\",\"end\":\"714\"},\"start\":\"713\",\"end\":\"714\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"722\",\"end\":\"724\"},\"start\":\"722\",\"end\":\"724\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"794\",\"end\":\"801\"},\"start\":\"794\",\"end\":\"801\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"803\",\"end\":\"811\"},\"start\":\"803\",\"end\":\"811\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"835\",\"end\":\"837\"},\"start\":\"835\",\"end\":\"837\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"844\",\"end\":\"847\"},\"start\":\"844\",\"end\":\"847\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"853\",\"end\":\"858\"},\"start\":\"853\",\"end\":\"858\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"860\",\"end\":\"863\"},\"start\":\"860\",\"end\":\"863\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"868\",\"end\":\"878\"},\"start\":\"868\",\"end\":\"878\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"902\",\"end\":\"905\"},\"start\":\"902\",\"end\":\"905\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"962\",\"end\":\"963\"},\"start\":\"962\",\"end\":\"963\",\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1097\",\"end\":\"1098\"},\"start\":\"1097\",\"end\":\"1098\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1102\",\"end\":\"1105\"},\"start\":\"1102\",\"end\":\"1105\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1108\",\"end\":\"1110\"},\"start\":\"1108\",\"end\":\"1110\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1153\",\"end\":\"1155\"},\"start\":\"1153\",\"end\":\"1155\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1252\",\"end\":\"1253\"},\"start\":\"1252\",\"end\":\"1253\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1255\",\"end\":\"1256\"},\"start\":\"1255\",\"end\":\"1256\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1305\",\"end\":\"1337\"},\"start\":\"1305\",\"end\":\"1337\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1400\",\"end\":\"1416\"},\"start\":\"1400\",\"end\":\"1416\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1461\",\"end\":\"1464\"},\"start\":\"1461\",\"end\":\"1464\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1501\",\"end\":\"1510\"},\"start\":\"1501\",\"end\":\"1510\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1517\",\"end\":\"1520\"},\"start\":\"1517\",\"end\":\"1520\",\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1602\",\"end\":\"1603\"},\"start\":\"1602\",\"end\":\"1603\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1648\",\"end\":\"1651\"},\"start\":\"1648\",\"end\":\"1651\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1709\",\"end\":\"1711\"},\"start\":\"1709\",\"end\":\"1711\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1722\",\"end\":\"1739\"},\"start\":\"1722\",\"end\":\"1739\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1743\",\"end\":\"1744\"},\"start\":\"1743\",\"end\":\"1744\",\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"1774\",\"end\":\"1775\"},\"start\":\"1774\",\"end\":\"1775\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2025\",\"end\":\"2033\"},\"start\":\"2025\",\"end\":\"2033\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2097\",\"end\":\"2100\"},\"start\":\"2097\",\"end\":\"2100\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2102\",\"end\":\"2114\"},\"start\":\"2102\",\"end\":\"2114\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2116\",\"end\":\"2120\"},\"start\":\"2116\",\"end\":\"2120\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2137\",\"end\":\"2139\"},\"start\":\"2137\",\"end\":\"2139\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2141\",\"end\":\"2144\"},\"start\":\"2141\",\"end\":\"2144\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2149\",\"end\":\"2153\"},\"start\":\"2149\",\"end\":\"2153\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2185\",\"end\":\"2188\"},\"start\":\"2185\",\"end\":\"2188\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2190\",\"end\":\"2197\"},\"start\":\"2190\",\"end\":\"2197\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2241\",\"end\":\"2242\"},\"start\":\"2241\",\"end\":\"2242\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2246\",\"end\":\"2252\"},\"start\":\"2246\",\"end\":\"2252\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2256\",\"end\":\"2257\"},\"start\":\"2256\",\"end\":\"2257\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2264\",\"end\":\"2267\"},\"start\":\"2264\",\"end\":\"2267\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2300\",\"end\":\"2311\"},\"start\":\"2300\",\"end\":\"2311\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2336\",\"end\":\"2339\"},\"start\":\"2336\",\"end\":\"2339\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2341\",\"end\":\"2351\"},\"start\":\"2341\",\"end\":\"2351\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2379\",\"end\":\"2384\"},\"start\":\"2379\",\"end\":\"2384\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2388\",\"end\":\"2404\"},\"start\":\"2388\",\"end\":\"2404\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2407\",\"end\":\"2410\"},\"start\":\"2407\",\"end\":\"2410\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2421\",\"end\":\"2425\"},\"start\":\"2421\",\"end\":\"2425\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2427\",\"end\":\"2458\"},\"start\":2449,\"end\":\"2458\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2460\",\"end\":\"2461\"},\"start\":\"2460\",\"end\":\"2461\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2465\",\"end\":\"2466\"},\"start\":\"2465\",\"end\":\"2466\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2491\",\"end\":\"2492\"},\"start\":\"2491\",\"end\":\"2492\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2494\",\"end\":\"2499\"},\"start\":\"2494\",\"end\":\"2499\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2852\",\"end\":\"2854\"},\"start\":\"2852\",\"end\":\"2854\",\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2876\",\"end\":\"2886\"},\"start\":2880,\"end\":\"2886\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2932\",\"end\":\"2934\"},\"start\":\"2932\",\"end\":\"2934\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"2947\",\"end\":\"2950\"},\"start\":\"2947\",\"end\":\"2950\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3202\",\"end\":\"3203\"},\"start\":\"3202\",\"end\":\"3203\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3245\",\"end\":\"3247\"},\"start\":\"3245\",\"end\":\"3247\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3250\",\"end\":\"3253\"},\"start\":\"3250\",\"end\":\"3253\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3257\",\"end\":\"3259\"},\"start\":\"3257\",\"end\":\"3259\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3300\",\"end\":\"3301\"},\"start\":\"3300\",\"end\":\"3301\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3309\",\"end\":\"3313\"},\"start\":\"3309\",\"end\":\"3313\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3315\",\"end\":\"3316\"},\"start\":\"3315\",\"end\":\"3316\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3319\",\"end\":\"3321\"},\"start\":\"3319\",\"end\":\"3321\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3363\",\"end\":\"3368\"},\"start\":\"3363\",\"end\":\"3368\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3373\",\"end\":\"3374\"},\"start\":\"3373\",\"end\":\"3374\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3376\",\"end\":\"3378\"},\"start\":\"3376\",\"end\":\"3378\",\"display\":true},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"3391\",\"end\":\"3408\"},\"start\":\"3391\",\"end\":\"3408\",\"display\":true},{\"colour\":\"#32cd32\",\"type\":\"coiled_coil\",\"metadata\":{\"database\":\"ncoils\",\"type\":\"coiled_coil\",\"start\":\"2855\",\"end\":\"2879\"},\"start\":2873,\"end\":\"2879\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"coiled_coil\",\"metadata\":{\"database\":\"ncoils\",\"type\":\"coiled_coil\",\"start\":\"3159\",\"end\":\"3179\"},\"start\":\"3159\",\"end\":\"3179\",\"display\":false},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.2900\",\"type\":\"low_complexity\",\"start\":\"193\",\"end\":\"207\"},\"start\":\"193\",\"end\":\"207\",\"display\":true},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"1.8800\",\"type\":\"low_complexity\",\"start\":\"1741\",\"end\":\"1753\"},\"start\":\"1741\",\"end\":\"1753\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.1200\",\"type\":\"low_complexity\",\"start\":\"2052\",\"end\":\"2063\"},\"start\":\"2052\",\"end\":\"2063\",\"display\":false},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.6800\",\"type\":\"low_complexity\",\"start\":\"2792\",\"end\":\"2813\"},\"start\":2801,\"end\":\"2813\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.5000\",\"type\":\"low_complexity\",\"start\":\"2844\",\"end\":\"2860\"},\"start\":\"2844\",\"end\":\"2860\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"1.0600\",\"type\":\"low_complexity\",\"start\":\"2871\",\"end\":\"2878\"},\"start\":2873,\"end\":\"2878\",\"display\":false},{\"colour\":\"#86bcff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"2.0500\",\"type\":\"low_complexity\",\"start\":\"3274\",\"end\":\"3285\"},\"start\":\"3274\",\"end\":\"3285\",\"display\":true},{\"colour\":[\"#7fb1ff\",\"#ff7fb2\",\"#b2ff7f\"],\"href\":\"/pfamb/PB008258\",\"type\":\"pfamb\",\"metadata\":{\"database\":\"pfam\",\"identifier\":\"Pfam-B_8258\",\"type\":\"Pfam-B\",\"start\":\"651\",\"end\":\"989\",\"accession\":\"PB008258\"},\"start\":\"651\",\"end\":\"989\",\"display\":true},{\"colour\":[\"#bd7fff\",\"#ffbd7f\",\"#7fffbd\"],\"href\":\"/pfamb/PB047717\",\"type\":\"pfamb\",\"metadata\":{\"database\":\"pfam\",\"identifier\":\"Pfam-B_47717\",\"type\":\"Pfam-B\",\"start\":\"2449\",\"end\":\"2478\",\"accession\":\"PB047717\"},\"start\":\"2449\",\"end\":\"2478\",\"display\":true},{\"colour\":[\"#ff7fcf\",\"#d0ff7f\",\"#7fd0ff\"],\"href\":\"/pfamb/PB013057\",\"type\":\"pfamb\",\"metadata\":{\"database\":\"pfam\",\"identifier\":\"Pfam-B_13057\",\"type\":\"Pfam-B\",\"start\":\"2141\",\"end\":\"2448\",\"accession\":\"PB013057\"},\"start\":\"2141\",\"end\":\"2448\",\"display\":true}]}]'); +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('P01112','[{\"length\":\"189\",\"regions\":[{\"modelStart\":\"1\",\"modelEnd\":\"161\",\"colour\":\"#2dcf00\",\"endStyle\":\"jagged\",\"end\":\"165\",\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"164\",\"modelLength\":\"162\",\"text\":\"Ras\",\"href\":\"/family/PF00071\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"3.2e-55\",\"description\":\"Ras family\",\"end\":\"165\",\"accession\":\"PF00071\",\"database\":\"pfam\",\"aliEnd\":\"164\",\"identifier\":\"Ras\",\"type\":\"Domain\",\"aliStart\":\"5\",\"start\":\"5\"},\"aliStart\":\"5\",\"start\":5}],\"markups\":[],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"RASH_HUMAN\",\"description\":\"GTPase HRas\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"P01112\",\"taxid\":\"9606\"},\"motifs\":[{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"168\",\"end\":\"172\"},\"start\":\"168\",\"end\":\"172\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"1.3900\",\"type\":\"low_complexity\",\"start\":\"7\",\"end\":\"15\"},\"start\":7,\"end\":15,\"display\":false}]}]'); +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('P01116','[{\"length\":\"189\",\"regions\":[{\"modelStart\":\"1\",\"modelEnd\":\"161\",\"colour\":\"#2dcf00\",\"endStyle\":\"jagged\",\"end\":\"165\",\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"164\",\"modelLength\":\"162\",\"text\":\"Ras\",\"href\":\"/family/PF00071\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"4.2e-55\",\"description\":\"Ras family\",\"end\":\"165\",\"accession\":\"PF00071\",\"database\":\"pfam\",\"aliEnd\":\"164\",\"identifier\":\"Ras\",\"type\":\"Domain\",\"aliStart\":\"5\",\"start\":\"5\"},\"aliStart\":\"5\",\"start\":5}],\"markups\":[],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"RASK_HUMAN\",\"description\":\"GTPase KRas\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"P01116\",\"taxid\":\"9606\"},\"motifs\":[{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"1.3900\",\"type\":\"low_complexity\",\"start\":\"7\",\"end\":\"15\"},\"start\":7,\"end\":15,\"display\":false}]}]'); +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('P01111','[{\"length\":\"189\",\"regions\":[{\"modelStart\":\"1\",\"modelEnd\":\"161\",\"colour\":\"#2dcf00\",\"endStyle\":\"jagged\",\"end\":\"165\",\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"164\",\"modelLength\":\"162\",\"text\":\"Ras\",\"href\":\"/family/PF00071\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"2.7e-54\",\"description\":\"Ras family\",\"end\":\"165\",\"accession\":\"PF00071\",\"database\":\"pfam\",\"aliEnd\":\"164\",\"identifier\":\"Ras\",\"type\":\"Domain\",\"aliStart\":\"5\",\"start\":\"5\"},\"aliStart\":\"5\",\"start\":5}],\"markups\":[],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"RASN_HUMAN\",\"description\":\"GTPase NRas\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"P01111\",\"taxid\":\"9606\"},\"motifs\":[{\"colour\":\"#00ffff\",\"type\":\"low_complexity\",\"metadata\":{\"database\":\"seg\",\"score\":\"1.3900\",\"type\":\"low_complexity\",\"start\":\"7\",\"end\":\"15\"},\"start\":7,\"end\":15,\"display\":false}]}]'); +INSERT INTO "pfam_graphics" ("UNIPROT_ACC","JSON_DATA") VALUES ('Q9Y243','[{\"length\":\"479\",\"regions\":[{\"modelStart\":\"1\",\"modelEnd\":\"102\",\"colour\":\"#2dcf00\",\"endStyle\":\"jagged\",\"end\":107,\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"105\",\"modelLength\":\"104\",\"text\":\"PH\",\"href\":\"/family/PF00169\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"3.7e-08\",\"description\":\"PH domain\",\"end\":\"107\",\"accession\":\"PF00169\",\"database\":\"pfam\",\"aliEnd\":\"105\",\"identifier\":\"PH\",\"type\":\"Domain\",\"aliStart\":\"6\",\"start\":\"6\"},\"aliStart\":\"6\",\"start\":6},{\"modelStart\":\"3\",\"modelEnd\":\"260\",\"colour\":\"#ff5353\",\"endStyle\":\"curved\",\"end\":\"405\",\"display\":true,\"startStyle\":\"jagged\",\"aliEnd\":\"405\",\"modelLength\":\"260\",\"text\":\"Pkinase\",\"href\":\"/family/PF00069\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"3.5e-72\",\"description\":\"Protein kinase domain\",\"end\":\"405\",\"accession\":\"PF00069\",\"database\":\"pfam\",\"aliEnd\":\"405\",\"identifier\":\"Pkinase\",\"type\":\"Domain\",\"aliStart\":\"150\",\"start\":\"148\"},\"aliStart\":\"150\",\"start\":\"148\"},{\"modelStart\":\"1\",\"modelEnd\":\"45\",\"colour\":\"#5b5bff\",\"endStyle\":\"jagged\",\"end\":\"476\",\"display\":true,\"startStyle\":\"curved\",\"aliEnd\":\"474\",\"modelLength\":\"48\",\"text\":\"Pkinase_C\",\"href\":\"/family/PF00433\",\"type\":\"pfama\",\"metadata\":{\"scoreName\":\"e-value\",\"score\":\"0.0012\",\"description\":\"Protein kinase C terminal domain\",\"end\":\"476\",\"accession\":\"PF00433\",\"database\":\"pfam\",\"aliEnd\":\"474\",\"identifier\":\"Pkinase_C\",\"type\":\"Family\",\"aliStart\":\"425\",\"start\":\"425\"},\"aliStart\":\"425\",\"start\":\"425\"}],\"markups\":[{\"lineColour\":\"#ff0000\",\"colour\":\"#aaaaaa\",\"end\":76,\"display\":true,\"v_align\":\"top\",\"metadata\":{\"database\":\"UniProt\",\"type\":\"disulphide\",\"start\":\"59\",\"end\":\"76\"},\"type\":\"disulphide\",\"start\":59},{\"lineColour\":\"#ff0000\",\"colour\":\"#aaaaaa\",\"end\":\"307\",\"display\":true,\"v_align\":\"top\",\"metadata\":{\"database\":\"UniProt\",\"type\":\"disulphide\",\"start\":\"293\",\"end\":\"307\"},\"type\":\"disulphide\",\"start\":\"293\"}],\"metadata\":{\"database\":\"uniprot\",\"identifier\":\"AKT3_HUMAN\",\"description\":\"RAC-gamma serine/threonine-protein kinase EC=2.7.11.1\",\"organism\":\"Homo sapiens (Human)\",\"accession\":\"Q9Y243\",\"taxid\":\"9606\"},\"motifs\":[{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"100\",\"end\":\"104\"},\"start\":100,\"end\":104,\"display\":false},{\"colour\":\"#cccccc\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"112\",\"end\":\"139\"},\"start\":116,\"end\":\"139\",\"display\":true},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"392\",\"end\":\"393\"},\"start\":\"392\",\"end\":\"393\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"438\",\"end\":\"439\"},\"start\":\"438\",\"end\":\"439\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"445\",\"end\":\"448\"},\"start\":\"445\",\"end\":\"448\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"450\",\"end\":\"461\"},\"start\":\"450\",\"end\":\"461\",\"display\":false},{\"colour\":\"#00ffff\",\"type\":\"disorder\",\"metadata\":{\"database\":\"IUPred\",\"type\":\"disorder\",\"start\":\"463\",\"end\":\"476\"},\"start\":\"463\",\"end\":\"476\",\"display\":false},{\"colour\":\"#32cd32\",\"type\":\"coiled_coil\",\"metadata\":{\"database\":\"ncoils\",\"type\":\"coiled_coil\",\"start\":\"95\",\"end\":\"115\"},\"start\":108,\"end\":115,\"display\":true}]}]'); + +-- users +INSERT INTO users (EMAIL,NAME,ENABLED) values ('jami@gmail.com','Jami Bax',1); +INSERT INTO users (EMAIL,NAME,ENABLED) values ('Lonnie@openid.org','Lonnie Penaloza',0); +INSERT INTO users (EMAIL,NAME,ENABLED) values ('Dhorak@yahoo.com','Darryl Horak',1); + +-- authorities +INSERT INTO authorities (EMAIL,AUTHORITY) values ('jami@gmail.com','ROLE_USER'); +INSERT INTO authorities (EMAIL,AUTHORITY) values ('Lonnie@openid.org','ROLE_USER'); +INSERT INTO authorities (EMAIL,AUTHORITY) values ('Dhorak@yahoo.com','ROLE_USER'); +INSERT INTO authorities (EMAIL,AUTHORITY) values ('Dhorak@yahoo.com','ROLE_MANAGER'); diff --git a/persistence/persistence-mybatis/src/test/resources/testContextDatabase.xml b/src/test/resources/testContextDatabase.xml similarity index 100% rename from persistence/persistence-mybatis/src/test/resources/testContextDatabase.xml rename to src/test/resources/testContextDatabase.xml diff --git a/persistence/persistence-mybatis/src/test/resources/testSql.sql b/src/test/resources/testSql.sql similarity index 100% rename from persistence/persistence-mybatis/src/test/resources/testSql.sql rename to src/test/resources/testSql.sql diff --git a/test/integration/docker-compose-localbuild.yml b/test/integration/docker-compose-localbuild.yml index cd3d8adc17e..539e928c6ad 100644 --- a/test/integration/docker-compose-localbuild.yml +++ b/test/integration/docker-compose-localbuild.yml @@ -5,13 +5,13 @@ version: '3' services: cbioportal: - command: /bin/sh -c "java -Xms2g -Xmx4g -Dauthenticate=noauthsessionservice -Dsession.service.url=http://cbioportal_session:5000/api/sessions/my_portal/ -jar webapp-runner.jar -AmaxHttpHeaderSize=16384 -AconnectionTimeout=20000 --enable-compression /app.war" + command: /bin/sh -c "java -Xms2g -Xmx4g -jar cbioportal/target/cbioportal-exec.jar --spring.config.location=cbioportal/application.properties --authenticate=false" volumes: - - $PORTAL_INFO_DIR:/portalinfo/ + #- $PORTAL_INFO_DIR:/portalinfo/ # make docker compose run the cbioportal version-under-test # by volume mounting the local portal source folder into the container # and running - $PORTAL_SOURCE_DIR:/cbioportal/ - - $PORTAL_SOURCE_DIR/portal/target/cbioportal.war:/app.war - # TODO: remove line below after upgrade of cbioportal-docker-compose to > v5.3.20 + - $PORTAL_SOURCE_DIR/src/main/resources/db-scripts:/cbioportal/db-scripts - $PORTAL_SOURCE_DIR/docker/web-and-data/docker-entrypoint.sh:/usr/local/bin/docker-entrypoint.sh + - $PORTAL_SOURCE_DIR/test/integration/integration_test_oncokb_import.sh:/cbioportal/integration_test_oncokb_import.sh diff --git a/test/integration/integration_test_oncokb_import.sh b/test/integration/integration_test_oncokb_import.sh index c49740ccc62..01bfe9b7f7a 100755 --- a/test/integration/integration_test_oncokb_import.sh +++ b/test/integration/integration_test_oncokb_import.sh @@ -2,14 +2,13 @@ # Test OncoKB import against local portal info dump (requires no Internet) and # live oncokb.org instance (requires Internet and OncoKB to be up-and-running) - -cd "$PORTAL_SOURCE_DIR"/core/src/main/scripts/importer -python3 ./metaImport.py \ - --study_directory="$PORTAL_SOURCE_DIR"/core/src/test/scripts/test_data/study_oncokb_import \ +cd /core/scripts/importer +python3 metaImport.py \ + --study_directory=/cbioportal/test/test_data/study_oncokb_import \ --url_server="https://www.cbioportal.org" \ --import_oncokb \ --skip_db_import && -cd "$PORTAL_SOURCE_DIR"/core/src/test/scripts/test_data/study_oncokb_import && +cd /cbioportal/test/test_data/study_oncokb_import && test -e data_cna_pd_annotations.txt && test -e ONCOKB_IMPORT_BACKUP_data_mutations_extended.maf && test -e ONCOKB_IMPORT_BACKUP_meta_cna_discrete.txt && diff --git a/test/integration/test_integration_test_oncokb_import.sh b/test/integration/test_integration_test_oncokb_import.sh new file mode 100755 index 00000000000..e50bd829e76 --- /dev/null +++ b/test/integration/test_integration_test_oncokb_import.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# exit when any of these fails +set -e +export DOCKER_IMAGE_CBIOPORTAL=cbioportal/cbioportal:demo-rfc72-squash + +run_in_service() { + service=$1 + shift + docker-compose -f docker-compose.yml -f $PORTAL_SOURCE_DIR/test/integration/docker-compose-localbuild.yml \ + run --rm \ + "$service" bash -c "$@" +} + +run_in_service cbioportal "cd /cbioportal && ./integration_test_oncokb_import.sh" \ No newline at end of file diff --git a/test/integration/test_load_study.sh b/test/integration/test_load_study.sh index d0d60663f3e..64dff5fd32c 100755 --- a/test/integration/test_load_study.sh +++ b/test/integration/test_load_study.sh @@ -2,6 +2,7 @@ # exit when any of these fails set -e +export DOCKER_IMAGE_CBIOPORTAL=cbioportal/cbioportal:demo-rfc72-squash run_in_service() { service=$1 @@ -13,23 +14,23 @@ run_in_service() { # load panels echo "Testing the loading of gene panels..." -run_in_service cbioportal "cd /cbioportal/core/src/main/scripts/ && perl importGenePanel.pl --data \ - /cbioportal/core/src/test/scripts/test_data/study_es_0/data_gene_panel_testpanel1.txt" -run_in_service cbioportal "cd /cbioportal/core/src/main/scripts/ && perl importGenePanel.pl --data \ - /cbioportal/core/src/test/scripts/test_data/study_es_0/data_gene_panel_testpanel2.txt" -run_in_service cbioportal "cd /cbioportal/core/src/main/scripts/ && echo yes | ./importGenesetData.pl --data /cbioportal/core/src/test/resources/genesets/study_es_0_genesets.gmt --new-version msigdb_7.5.1 --supp /cbioportal/core/src/test/resources/genesets/study_es_0_supp-genesets.txt" -run_in_service cbioportal "cd /cbioportal/core/src/main/scripts/ && ./importGenesetHierarchy.pl --data /cbioportal/core/src/test/resources/genesets/study_es_0_tree.yaml" +run_in_service cbioportal "cd /core/scripts/ && perl importGenePanel.pl --data \ + /cbioportal/test/test_data/study_es_0/data_gene_panel_testpanel1.txt" +run_in_service cbioportal "cd /core/scripts/ && perl importGenePanel.pl --data \ + /cbioportal/test/test_data/study_es_0/data_gene_panel_testpanel2.txt" +run_in_service cbioportal "cd /core/scripts/ && echo yes | ./importGenesetData.pl --data /cbioportal/test/test_data/genesets/study_es_0_genesets.gmt --new-version msigdb_7.5.1 --supp /cbioportal/test/test_data/genesets/study_es_0_supp-genesets.txt" +run_in_service cbioportal "cd /core/scripts/ && ./importGenesetHierarchy.pl --data /cbioportal/test/test_data/genesets/study_es_0_tree.yaml" # dump portal info echo "Testing the dump of local portal info directory..." -run_in_service cbioportal 'cd cbioportal/core/src/main/scripts/ && perl dumpPortalInfo.pl /portalinfo' +run_in_service cbioportal 'cd core/scripts/ && perl dumpPortalInfo.pl /cbioportal/portalinfo' # validate study_es_0 using local portal info directory echo "Testing validation based on local portalinfo..." -run_in_service cbioportal 'validateData.py -v -p /portalinfo -s /cbioportal/core/src/test/scripts/test_data/study_es_0/' +run_in_service cbioportal 'validateData.py -v -p /cbioportal/portalinfo -s /cbioportal/test/test_data/study_es_0/' # load study_es_0 using API validation echo "Testing loading of study with API validation..." -run_in_service cbioportal 'metaImport.py -v -u http://cbioportal-container:8080 -o -s /cbioportal/core/src/test/scripts/test_data/study_es_0/' +run_in_service cbioportal 'metaImport.py -v -u http://cbioportal-container:8080 -o -s /cbioportal/test/test_data/study_es_0/' exit 0 diff --git a/test/integration/test_update_oncokb.sh b/test/integration/test_update_oncokb.sh index b41de84ec6c..5fefb51a766 100755 --- a/test/integration/test_update_oncokb.sh +++ b/test/integration/test_update_oncokb.sh @@ -2,7 +2,7 @@ # exit when any of these fails set -e - +export DOCKER_IMAGE_CBIOPORTAL=cbioportal/cbioportal:demo-rfc72-squash run_in_service() { service=$1 shift @@ -13,10 +13,10 @@ run_in_service() { # load study_es_0 using API validation echo "Testing update of OncoKB annotations..." -run_in_service cbioportal 'metaImport.py -v -u http://cbioportal-container:8080 -o -s /cbioportal/core/src/test/scripts/test_data/study_oncokb_update/' +run_in_service cbioportal 'metaImport.py -v -u http://cbioportal-container:8080 -o -s /cbioportal/test/test_data/study_oncokb_update/' # execute updateOncokb script -run_in_service cbioportal 'python3 /cbioportal/core/src/main/scripts/importer/updateOncokbAnnotations.py -s study_es_0 -p /cbioportal/portal.properties' +run_in_service cbioportal 'python3 /core/scripts/importer/updateOncokbAnnotations.py -s study_es_0 -p /cbioportal/application.properties' # Check that mutation annotations have been updated # 2 annotations should be changed to "Putative_Driver" (depends on OncoKB version) diff --git a/core/src/test/resources/genesets/study_es_0_genesets.gmt b/test/test_data/genesets/study_es_0_genesets.gmt similarity index 100% rename from core/src/test/resources/genesets/study_es_0_genesets.gmt rename to test/test_data/genesets/study_es_0_genesets.gmt diff --git a/core/src/test/resources/genesets/study_es_0_supp-genesets.txt b/test/test_data/genesets/study_es_0_supp-genesets.txt similarity index 100% rename from core/src/test/resources/genesets/study_es_0_supp-genesets.txt rename to test/test_data/genesets/study_es_0_supp-genesets.txt diff --git a/core/src/test/resources/genesets/study_es_0_tree.yaml b/test/test_data/genesets/study_es_0_tree.yaml similarity index 100% rename from core/src/test/resources/genesets/study_es_0_tree.yaml rename to test/test_data/genesets/study_es_0_tree.yaml diff --git a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/case_lists/cases_cna.txt b/test/test_data/study_es_0/case_lists/cases_cna.txt similarity index 100% rename from core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/case_lists/cases_cna.txt rename to test/test_data/study_es_0/case_lists/cases_cna.txt diff --git a/core/src/test/scripts/test_data/study_es_0/case_lists/cases_cnaseq.txt b/test/test_data/study_es_0/case_lists/cases_cnaseq.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/case_lists/cases_cnaseq.txt rename to test/test_data/study_es_0/case_lists/cases_cnaseq.txt diff --git a/core/src/test/scripts/test_data/study_es_0/case_lists/cases_custom.txt b/test/test_data/study_es_0/case_lists/cases_custom.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/case_lists/cases_custom.txt rename to test/test_data/study_es_0/case_lists/cases_custom.txt diff --git a/core/src/test/scripts/test_data/study_es_0/case_lists/cases_sequenced.txt b/test/test_data/study_es_0/case_lists/cases_sequenced.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/case_lists/cases_sequenced.txt rename to test/test_data/study_es_0/case_lists/cases_sequenced.txt diff --git a/core/src/test/scripts/test_data/study_es_0/case_lists/cases_test.txt b/test/test_data/study_es_0/case_lists/cases_test.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/case_lists/cases_test.txt rename to test/test_data/study_es_0/case_lists/cases_test.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_cancer_type.txt b/test/test_data/study_es_0/data_cancer_type.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_cancer_type.txt rename to test/test_data/study_es_0/data_cancer_type.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_clinical_patients.txt b/test/test_data/study_es_0/data_clinical_patients.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_clinical_patients.txt rename to test/test_data/study_es_0/data_clinical_patients.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_clinical_samples.txt b/test/test_data/study_es_0/data_clinical_samples.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_clinical_samples.txt rename to test/test_data/study_es_0/data_clinical_samples.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_cna_discrete.txt b/test/test_data/study_es_0/data_cna_discrete.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_cna_discrete.txt rename to test/test_data/study_es_0/data_cna_discrete.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_cna_hg19.seg b/test/test_data/study_es_0/data_cna_hg19.seg similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_cna_hg19.seg rename to test/test_data/study_es_0/data_cna_hg19.seg diff --git a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/data_cna_log2.txt b/test/test_data/study_es_0/data_cna_log2.txt similarity index 100% rename from core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/data_cna_log2.txt rename to test/test_data/study_es_0/data_cna_log2.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_expression_median.txt b/test/test_data/study_es_0/data_expression_median.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_expression_median.txt rename to test/test_data/study_es_0/data_expression_median.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_expression_median_Zscores.txt b/test/test_data/study_es_0/data_expression_median_Zscores.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_expression_median_Zscores.txt rename to test/test_data/study_es_0/data_expression_median_Zscores.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_gene_panel_matrix.txt b/test/test_data/study_es_0/data_gene_panel_matrix.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_gene_panel_matrix.txt rename to test/test_data/study_es_0/data_gene_panel_matrix.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_gene_panel_testpanel1.txt b/test/test_data/study_es_0/data_gene_panel_testpanel1.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_gene_panel_testpanel1.txt rename to test/test_data/study_es_0/data_gene_panel_testpanel1.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_gene_panel_testpanel2.txt b/test/test_data/study_es_0/data_gene_panel_testpanel2.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_gene_panel_testpanel2.txt rename to test/test_data/study_es_0/data_gene_panel_testpanel2.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_generic_assay_patient_test.txt b/test/test_data/study_es_0/data_generic_assay_patient_test.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_generic_assay_patient_test.txt rename to test/test_data/study_es_0/data_generic_assay_patient_test.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_gistic_genes_amp.txt b/test/test_data/study_es_0/data_gistic_genes_amp.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_gistic_genes_amp.txt rename to test/test_data/study_es_0/data_gistic_genes_amp.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_gsva_pvalues.txt b/test/test_data/study_es_0/data_gsva_pvalues.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_gsva_pvalues.txt rename to test/test_data/study_es_0/data_gsva_pvalues.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_gsva_scores.txt b/test/test_data/study_es_0/data_gsva_scores.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_gsva_scores.txt rename to test/test_data/study_es_0/data_gsva_scores.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_methylation_hm27.txt b/test/test_data/study_es_0/data_methylation_hm27.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_methylation_hm27.txt rename to test/test_data/study_es_0/data_methylation_hm27.txt diff --git a/test/test_data/study_es_0/data_mutational_signature.txt b/test/test_data/study_es_0/data_mutational_signature.txt new file mode 100644 index 00000000000..04c4351cdc6 --- /dev/null +++ b/test/test_data/study_es_0/data_mutational_signature.txt @@ -0,0 +1,61 @@ +ENTITY_STABLE_ID name description confidenceStatement TCGA-A1-A0SB-01 TCGA-A1-A0SD-01 TCGA-A1-A0SE-01 TCGA-A1-A0SH-01 TCGA-A2-A04U-01 TCGA-B6-A0RS-01 TCGA-BH-A0HP-01 TCGA-BH-A18P-01 +mean_1 mean_1 mean_1 Signature 1, the aging signature, is detected in this case. 0.370266873 0.010373016 0.005419294 0.022753384 0.037687823 0.016708976 0.100042446 0.104214723 +mean_10 mean_10 mean_10 Signature 10, the POLE signature, is detected in this case. It is associated with functions to the exonucleus domain of the POLE gene and enormous mutational burden. Oftentimes MMR signatures 6, 14,16, 20,21 and 26 co-occur with the POLE signature. 0.002709404 0.009212318 0.002650657 0.005475484 0.074175715 0.033049207 0.027323826 0.008861145 +mean_11 mean_11 mean_11 Signature 11, the Temozolomide (TMZ) signature, is detected in this case. 0.006035782 0.010095773 0.011926486 0.010637541 0.012168938 0.006641113 0.025730547 0.020463421 +mean_12 mean_12 mean_12 Signature 12 is detected in this case. We are not confident that we are able to detect signature 9 in the IMPACT cohort. In the literature it is found in liver cancer. 0.026432791 0.012953054 0.002587003 0.02225923 0.031026708 0.01642898 0.022392184 0.013437576 +mean_13 mean_13 mean_13 Signature 13, the APOBEC signature, is detected in this case. This signature often coccurs with signature 2, the other APOBEC signature. 0.002533773 0.012080707 0.06750656 0.403672528 0.011124 0.007631916 0.018970187 0.006076126 +mean_14 mean_14 mean_14 Signature 14, the signature of simultaneous MMR and POLE dysfunction is detected in this case. This signature usually occurs in cases with the POLE signature (signature 10) and other MMR signatures (6, 15, 20, 21 26). 0.006562519 0.009705064 0.005008429 0.01169992 0.02000342 0.014500145 0.034613722 0.030906098 +mean_15 mean_15 mean_15 Signature 15, a MMR signature, is detected in this case. It is usually associated with high mutational burden. 0.011970661 0.013967505 0.003583145 0.066176992 0.024139531 0.012422269 0.035150854 0.024233274 +mean_16 mean_16 mean_16 Signature 16 is detected in this case. We are not confident that we are able to detect signature 16 in the IMPACT cohort. In the literature it is associated with Liver cancer and alcohol consumption. 0.018075581 0.016174795 0.004085478 0.044836595 0.021500178 0.033960161 0.017962899 0.018849434 +mean_17 mean_17 mean_17 Signature 17 is detected in this case. The aetiology of this signature is unknown. It is predominantly found in gastric cancers. 0.004132642 0.017328434 0.001582939 0.00748642 0.018217142 0.008715209 0.029658706 0.021823903 +mean_18 mean_18 mean_18 Signature 18 is detected in this case. This signature is associated with MUTYH dysfunction and neuroblastoma. 0.005101312 0.027691339 0.078176692 0.007035636 0.016781154 0.226542324 0.030862216 0.05876765 +mean_19 mean_19 mean_19 Signature 19 is detected in this case. We are not confident that we are able to detect signature 19 in the IMPACT cohort. 0.018196853 0.016768977 0.010922822 0.014000266 0.011772131 0.011231503 0.035316214 0.094947481 +mean_2 mean_2 mean_2 Signature 2, the APOBEC signature, is detected in this case. This signature often coccurs with signature 13, the other APOBEC signature. 0.002663685 0.009194336 0.003716748 0.067693367 0.019050891 0.008820839 0.024258107 0.005814542 +mean_20 mean_20 mean_20 Signature 20 is detected in this case. This signature is associated with MMR and usually occurs in cases with the POLE signature (signature 10) and other MMR signatures (6, 14, 15, 21, 26). 0.03066836 0.012905178 0.003569324 0.014119672 0.022474579 0.014813438 0.055457368 0.030155165 +mean_21 mean_21 mean_21 Signature 21 is detected in this case. This signature is associated with MMR and usually co-occurs with other MMR signatures (6, 14, 15, 21, 26). 0.010964959 0.011272353 0.002258851 0.051853446 0.281501917 0.01281546 0.044179589 0.008190074 +mean_22 mean_22 mean_22 Signature 22 is detected in this case. We are not confident that we are able to detect signature 22 in the IMPACT cohort. In the literature it is associated with exposure to Aristolochic Acid. 0.028491957 0.010217024 0.004586289 0.011222009 0.019770493 0.008535491 0.024637853 0.020913163 +mean_23 mean_23 mean_23 Signature 23 is detected in this case. We are not confident that we are able to detect signature 23 in the IMPACT cohort. 0.00396734 0.010046981 0.01277244 0.007964559 0.011004478 0.008391836 0.034836096 0.03286779 +mean_24 mean_24 mean_24 Signature 24 is detected in this case. We are not confident that we are able to detect signature 24 in the IMPACT cohort. In the literature it is associated with aflatoxin exposure. In our cohort we believe it is detected by accident in cases with the smoking signature (signature 4). 0.032792827 0.078245387 0.066150339 0.014742662 0.017324086 0.061761186 0.017605536 0.051708779 +mean_25 mean_25 mean_25 Signature 25 is detected in this case. We are not confident that we are able to detect signature 25 in the IMPACT cohort. 0.011646217 0.048154399 0.03076214 0.013605822 0.038587852 0.013944057 0.023546505 0.037501919 +mean_26 mean_26 mean_26 Signature 26 is detected in this case. This signature is associated with MMR and usually co-occurs with other MMR signatures (6, 14, 15, 20, 21). 0.015537112 0.013825612 0.002464907 0.028813826 0.070298683 0.01999462 0.030799083 0.009143951 +mean_27 mean_27 mean_27 Signature 27 is detected in this case. We are not confident that we are able to detect signature 27 in the IMPACT cohort. 0.003465676 0.012766477 0.004909123 0.00658944 0.010038977 0.008511252 0.023474418 0.009076485 +mean_28 mean_28 mean_28 Signature 28 is detected in this case. We are not confident that we are able to detect signature 28 in the IMPACT cohort. It often co-occurs with signature 28. 0.003755223 0.011667726 0.001739293 0.005067195 0.012723938 0.007772049 0.021565925 0.007837668 +mean_29 mean_29 mean_29 Signature 29, the mutational signature of chewing tobacco is detected in this case. 0.010813509 0.013306168 0.034629865 0.011708457 0.01498353 0.042949985 0.030807758 0.04361619 +mean_3 mean_3 mean_3 Signature 3, the signature of Homologous Recombination Repair deficiency is detected in this case. This signature is most commonly associated with BRCA mutations. 0.012076334 0.399378181 0.058149399 0.024712129 0.022463858 0.069775315 0.022253226 0.023919542 +mean_30 mean_30 mean_30 Signature 30 is detected in this case. We are not confident that we are able to detect signature 30 in the IMPACT cohort. 0.021187235 0.019180665 0.007104322 0.015637667 0.021432941 0.020436345 0.036460701 0.022300431 +mean_4 mean_4 mean_4 Signature 4, the smoking signature is detected in this case. 0.02998631 0.05161966 0.066550323 0.017921856 0.016096543 0.179497941 0.024659786 0.097992724 +mean_5 mean_5 mean_5 Signature 5 is detected in this case. We are not confident that we are able to detect signature 5 in the IMPACT cohort. It is a 'flat' signature--when it is detected it is more likely to be an artefact. In the literature it is associated with age. 0.065346508 0.065105663 0.005317173 0.039082099 0.025806853 0.071908149 0.028765511 0.030413987 +mean_6 mean_6 mean_6 Signature 6, a MMR signature, is detected in this case. It is usually associated with high mutational burden. This signature often co-occurs with other MMR signatures (14, 15, 20, 21 26). 0.215904676 0.009298163 0.004855268 0.020464262 0.030032579 0.01055262 0.094946543 0.100148333 +mean_7 mean_7 mean_7 Signature 7, the UV light signature, is detected in this case. 0.008428142 0.011008883 0.009634254 0.010727403 0.037470752 0.007375711 0.036357093 0.025096172 +mean_8 mean_8 mean_8 Signature 8 is detected in this case. We are not confident that we are able to detect signature 8 in the IMPACT cohort. It is a 'flat' signature--when it is detected it is more likely to be an artefact. In the literature it is associated with HRD defects. 0.009033066 0.04154581 0.483003282 0.014265047 0.029063134 0.028977736 0.026974185 0.031083861 +mean_9 mean_9 mean_9 Signature 9 is detected in this case. We are not confident that we are able to detect signature 9 in the IMPACT cohort. In the literature it is associated with POLH. 0.011252674 0.014910352 0.004377151 0.007775086 0.021277177 0.015334168 0.020390915 0.009638392 +confidence_1 confidence_1 confidence_1 NA 0.653 0.066 0.05 0.129 0.1415 0.079 0.234 0.274 +confidence_10 confidence_10 confidence_10 NA 0.0235 0.0645 0.022 0.0465 0.2595 0.1505 0.1 0.062 +confidence_11 confidence_11 confidence_11 NA 0.0465 0.067 0.115 0.0775 0.0745 0.0535 0.0995 0.098 +confidence_12 confidence_12 confidence_12 NA 0.1375 0.068 0.024 0.1275 0.1165 0.0945 0.09 0.074 +confidence_13 confidence_13 confidence_13 NA 0.0185 0.0685 0.5655 0.936 0.0665 0.052 0.083 0.0515 +confidence_14 confidence_14 confidence_14 NA 0.054 0.067 0.0405 0.0785 0.0845 0.0755 0.119 0.1415 +confidence_15 confidence_15 confidence_15 NA 0.0745 0.0745 0.034 0.284 0.092 0.0745 0.1185 0.1215 +confidence_16 confidence_16 confidence_16 NA 0.1025 0.0795 0.031 0.196 0.1 0.139 0.0815 0.0895 +confidence_17 confidence_17 confidence_17 NA 0.036 0.0825 0.011 0.0605 0.094 0.0555 0.11 0.1105 +confidence_18 confidence_18 confidence_18 NA 0.0445 0.1105 0.297 0.0615 0.069 0.434 0.1055 0.1965 +confidence_19 confidence_19 confidence_19 NA 0.0955 0.073 0.0885 0.086 0.0725 0.065 0.114 0.2685 +confidence_2 confidence_2 confidence_2 NA 0.0235 0.0525 0.0325 0.293 0.0945 0.057 0.1015 0.0415 +confidence_20 confidence_20 confidence_20 NA 0.14 0.0745 0.0305 0.0835 0.101 0.0725 0.1505 0.1325 +confidence_21 confidence_21 confidence_21 NA 0.0725 0.072 0.0215 0.24 0.5255 0.09 0.131 0.0635 +confidence_22 confidence_22 confidence_22 NA 0.2335 0.0685 0.0415 0.09 0.0865 0.063 0.103 0.126 +confidence_23 confidence_23 confidence_23 NA 0.0365 0.0605 0.12 0.0635 0.064 0.0615 0.112 0.1525 +confidence_24 confidence_24 confidence_24 NA 0.1975 0.1925 0.297 0.0905 0.081 0.215 0.08 0.195 +confidence_25 confidence_25 confidence_25 NA 0.0695 0.134 0.132 0.083 0.123 0.079 0.094 0.1365 +confidence_26 confidence_26 confidence_26 NA 0.0955 0.073 0.023 0.1475 0.183 0.0995 0.109 0.067 +confidence_27 confidence_27 confidence_27 NA 0.0305 0.0795 0.05 0.053 0.0675 0.0605 0.0955 0.064 +confidence_28 confidence_28 confidence_28 NA 0.0325 0.077 0.0135 0.044 0.0785 0.0555 0.1 0.0605 +confidence_29 confidence_29 confidence_29 NA 0.0835 0.0725 0.172 0.074 0.08 0.138 0.111 0.164 +confidence_3 confidence_3 confidence_3 NA 0.083 0.629 0.1835 0.12 0.101 0.21 0.0845 0.1215 +confidence_30 confidence_30 confidence_30 NA 0.123 0.096 0.0625 0.091 0.0995 0.107 0.1145 0.107 +confidence_4 confidence_4 confidence_4 NA 0.1685 0.1485 0.2155 0.1005 0.08 0.382 0.0995 0.2815 +confidence_5 confidence_5 confidence_5 NA 0.218 0.1645 0.0445 0.1665 0.1045 0.187 0.114 0.1155 +confidence_6 confidence_6 confidence_6 NA 0.4325 0.062 0.043 0.1275 0.113 0.069 0.2225 0.2885 +confidence_7 confidence_7 confidence_7 NA 0.0705 0.075 0.0975 0.0765 0.137 0.0545 0.1105 0.1225 +confidence_8 confidence_8 confidence_8 NA 0.07 0.132 0.859 0.0935 0.106 0.123 0.106 0.131 +confidence_9 confidence_9 confidence_9 NA 0.081 0.0775 0.033 0.0615 0.0845 0.082 0.09 0.064 \ No newline at end of file diff --git a/core/src/test/scripts/test_data/study_es_0/data_mutations_extended.maf b/test/test_data/study_es_0/data_mutations_extended.maf similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_mutations_extended.maf rename to test/test_data/study_es_0/data_mutations_extended.maf diff --git a/core/src/test/scripts/test_data/study_es_0/data_resource_definition.txt b/test/test_data/study_es_0/data_resource_definition.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_resource_definition.txt rename to test/test_data/study_es_0/data_resource_definition.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_resource_patient.txt b/test/test_data/study_es_0/data_resource_patient.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_resource_patient.txt rename to test/test_data/study_es_0/data_resource_patient.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_resource_sample.txt b/test/test_data/study_es_0/data_resource_sample.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_resource_sample.txt rename to test/test_data/study_es_0/data_resource_sample.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_resource_study.txt b/test/test_data/study_es_0/data_resource_study.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_resource_study.txt rename to test/test_data/study_es_0/data_resource_study.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_structural_variants.txt b/test/test_data/study_es_0/data_structural_variants.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_structural_variants.txt rename to test/test_data/study_es_0/data_structural_variants.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_treatment_ec50.txt b/test/test_data/study_es_0/data_treatment_ec50.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_treatment_ec50.txt rename to test/test_data/study_es_0/data_treatment_ec50.txt diff --git a/core/src/test/scripts/test_data/study_es_0/data_treatment_ic50.txt b/test/test_data/study_es_0/data_treatment_ic50.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/data_treatment_ic50.txt rename to test/test_data/study_es_0/data_treatment_ic50.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_cancer_type.txt b/test/test_data/study_es_0/meta_cancer_type.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_cancer_type.txt rename to test/test_data/study_es_0/meta_cancer_type.txt diff --git a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/meta_clinical_patients.txt b/test/test_data/study_es_0/meta_clinical_patients.txt similarity index 100% rename from core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/meta_clinical_patients.txt rename to test/test_data/study_es_0/meta_clinical_patients.txt diff --git a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/meta_clinical_samples.txt b/test/test_data/study_es_0/meta_clinical_samples.txt similarity index 100% rename from core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/meta_clinical_samples.txt rename to test/test_data/study_es_0/meta_clinical_samples.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_cna_discrete.txt b/test/test_data/study_es_0/meta_cna_discrete.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_cna_discrete.txt rename to test/test_data/study_es_0/meta_cna_discrete.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_cna_hg19_seg.txt b/test/test_data/study_es_0/meta_cna_hg19_seg.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_cna_hg19_seg.txt rename to test/test_data/study_es_0/meta_cna_hg19_seg.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_cna_log2.txt b/test/test_data/study_es_0/meta_cna_log2.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_cna_log2.txt rename to test/test_data/study_es_0/meta_cna_log2.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_expression_median.txt b/test/test_data/study_es_0/meta_expression_median.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_expression_median.txt rename to test/test_data/study_es_0/meta_expression_median.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_expression_median_Zscores.txt b/test/test_data/study_es_0/meta_expression_median_Zscores.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_expression_median_Zscores.txt rename to test/test_data/study_es_0/meta_expression_median_Zscores.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_gene_panel_matrix.txt b/test/test_data/study_es_0/meta_gene_panel_matrix.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_gene_panel_matrix.txt rename to test/test_data/study_es_0/meta_gene_panel_matrix.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_generic_assay_patient_test.txt b/test/test_data/study_es_0/meta_generic_assay_patient_test.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_generic_assay_patient_test.txt rename to test/test_data/study_es_0/meta_generic_assay_patient_test.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_gistic_genes_amp.txt b/test/test_data/study_es_0/meta_gistic_genes_amp.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_gistic_genes_amp.txt rename to test/test_data/study_es_0/meta_gistic_genes_amp.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_gsva_pvalues.txt b/test/test_data/study_es_0/meta_gsva_pvalues.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_gsva_pvalues.txt rename to test/test_data/study_es_0/meta_gsva_pvalues.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_gsva_scores.txt b/test/test_data/study_es_0/meta_gsva_scores.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_gsva_scores.txt rename to test/test_data/study_es_0/meta_gsva_scores.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_methylation_hm27.txt b/test/test_data/study_es_0/meta_methylation_hm27.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_methylation_hm27.txt rename to test/test_data/study_es_0/meta_methylation_hm27.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_mutational_signature.txt b/test/test_data/study_es_0/meta_mutational_signature.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_mutational_signature.txt rename to test/test_data/study_es_0/meta_mutational_signature.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_mutations_extended.txt b/test/test_data/study_es_0/meta_mutations_extended.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_mutations_extended.txt rename to test/test_data/study_es_0/meta_mutations_extended.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_resource_definition.txt b/test/test_data/study_es_0/meta_resource_definition.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_resource_definition.txt rename to test/test_data/study_es_0/meta_resource_definition.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_resource_patient.txt b/test/test_data/study_es_0/meta_resource_patient.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_resource_patient.txt rename to test/test_data/study_es_0/meta_resource_patient.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_resource_sample.txt b/test/test_data/study_es_0/meta_resource_sample.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_resource_sample.txt rename to test/test_data/study_es_0/meta_resource_sample.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_resource_study.txt b/test/test_data/study_es_0/meta_resource_study.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_resource_study.txt rename to test/test_data/study_es_0/meta_resource_study.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_structural_variants.txt b/test/test_data/study_es_0/meta_structural_variants.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_structural_variants.txt rename to test/test_data/study_es_0/meta_structural_variants.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_study.txt b/test/test_data/study_es_0/meta_study.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_study.txt rename to test/test_data/study_es_0/meta_study.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_treatment_ec50.txt b/test/test_data/study_es_0/meta_treatment_ec50.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_treatment_ec50.txt rename to test/test_data/study_es_0/meta_treatment_ec50.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_treatment_ic50.txt b/test/test_data/study_es_0/meta_treatment_ic50.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_treatment_ic50.txt rename to test/test_data/study_es_0/meta_treatment_ic50.txt diff --git a/test/test_data/study_es_0/result_report.html b/test/test_data/study_es_0/result_report.html new file mode 100644 index 00000000000..a73fb7944a0 --- /dev/null +++ b/test/test_data/study_es_0/result_report.html @@ -0,0 +1,3195 @@ + + + + + + + + + + + + + cBioPortal validation report: study in 'test_data/study_es_0/' + + + + + +
    +
    +
    +

    cBioPortal validation report

    +

    Study directory:
    test_data/study_es_0/

    +

    For details, please see the documentation on file formats supported by cBioPortal

    +

    cBioPortal version unknown -- offline instance

    +
    +
    + + +
    +
    +
    + Validation status: + + Success + +
    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugReading portal information from test_data/api_json_system_tests/cancer-types.json
    DebugReading portal information from test_data/api_json_system_tests/genes.json
    DebugReading portal information from test_data/api_json_system_tests/genesets.json
    DebugReading portal information from test_data/api_json_system_tests/genesets_version.json
    DebugReading portal information from test_data/api_json_system_tests/gene-panels.json
    DebugReading portal information from test_data/api_json_system_tests/genesaliases.json
    DebugRetrieving chromosome lengths from '/cbioportal/core/src/main/resources/scripts/importer/chromosome_sizes.json'
    DebugRetrieving chromosome lengths from '/cbioportal/core/src/main/resources/scripts/importer/chromosome_sizes.json'
    DebugStudy Tag file found. It will be validated.
    DebugValidating case lists
    InfoValidation of case list folder complete
    InfoValidation complete
    +
    +
    +
    + + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 1 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 846 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 850 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Info154, 155, 844…6Values contained in the column cbp_driver_tiers that will appear in the "Mutation Color" menu of the OncoprintClass 2, Class 1 + See all 4 values + +
    InfoValidation of file complete
    InfoRead 6305 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 10 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 8 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 7 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 6 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Info1This column can be replaced by a 'gene_panel' property in the respective meta filegistic
    InfoValidation of file complete
    InfoRead 21 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 3 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 12 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 8 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 8 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 9 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 61 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Info4, 5, 6…164Values contained in the column cbp_driver_tiers that will appear in the "Mutation Color" menu of the OncoprintClass 2, Class 1, Class 4… + See all 11 values + +
    Info7, 9Line will not be loaded due to the variant classification filter. Filtered types: [Silent, Intron, 3'UTR, 3'Flank, 5'UTR, 5'Flank, IGR, RNA]Silent
    InfoValidation of file complete
    InfoRead 38 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 4 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 4 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 4 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 2 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    Info48No Entrez gene id or gene symbol provided for site 2. Assuming either the intragenic, deletion, duplication, translocation or inversion variant
    Info49No Entrez gene id or gene symbol provided for site 1. Assuming either the intragenic, deletion, duplication, translocation or inversion variant
    InfoValidation of file complete
    InfoRead 49 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 11 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of file
    InfoValidation of file complete
    InfoRead 11 lines. Lines with warning: 0. Lines with error: 0
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    InfoSetting reference genome to human (GRCh37, hg19)
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of meta file
    InfoValidation of meta file complete
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Line NumberColumn NumberMessageValue Encountered
    DebugStarting validation of study tags file
    InfoValidation of study tags file complete.
    +
    +
    +
    + + +
    +
    +
    +
    +
    +

    Legend

    +
    +
    +

    + Click on a filename below to see a table of messages about the data + in the file. The colors in the tables have the following meanings: +

    + + + + + + + + + + + + + + + + + + + +
    ErrorError: cBioPortal will not know how to load this, please revise or remove
    WarningWarning: possible cause of confusion, please check whether this is intended
    InfoInfo: this looks good, no action required
    DebugVerbose output: details on the progress of the validation script
    +
    +
    +
    + + \ No newline at end of file diff --git a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/study_tags.yml b/test/test_data/study_es_0/study_tags.yml similarity index 100% rename from core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/study_tags.yml rename to test/test_data/study_es_0/study_tags.yml diff --git a/core/src/test/scripts/test_data/study_oncokb_import/case_lists/cases_cna.txt b/test/test_data/study_oncokb_import/case_lists/cases_cna.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_import/case_lists/cases_cna.txt rename to test/test_data/study_oncokb_import/case_lists/cases_cna.txt diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_cnaseq.txt b/test/test_data/study_oncokb_import/case_lists/cases_cnaseq.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/case_lists/cases_cnaseq.txt rename to test/test_data/study_oncokb_import/case_lists/cases_cnaseq.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_import/case_lists/cases_sequenced.txt b/test/test_data/study_oncokb_import/case_lists/cases_sequenced.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_import/case_lists/cases_sequenced.txt rename to test/test_data/study_oncokb_import/case_lists/cases_sequenced.txt diff --git a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/data_clinical_patients.txt b/test/test_data/study_oncokb_import/data_clinical_patients.txt similarity index 100% rename from core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/data_clinical_patients.txt rename to test/test_data/study_oncokb_import/data_clinical_patients.txt diff --git a/core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/data_clinical_samples.txt b/test/test_data/study_oncokb_import/data_clinical_samples.txt similarity index 100% rename from core/src/test/scripts/test_data/meta_study/invalid_show_profile_setting_cna/data_clinical_samples.txt rename to test/test_data/study_oncokb_import/data_clinical_samples.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_import/data_cna_discrete.txt b/test/test_data/study_oncokb_import/data_cna_discrete.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_import/data_cna_discrete.txt rename to test/test_data/study_oncokb_import/data_cna_discrete.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_import/data_mutations_extended.maf b/test/test_data/study_oncokb_import/data_mutations_extended.maf similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_import/data_mutations_extended.maf rename to test/test_data/study_oncokb_import/data_mutations_extended.maf diff --git a/core/src/test/scripts/test_data/study_es_0/meta_clinical_patients.txt b/test/test_data/study_oncokb_import/meta_clinical_patients.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_clinical_patients.txt rename to test/test_data/study_oncokb_import/meta_clinical_patients.txt diff --git a/core/src/test/scripts/test_data/study_es_0/meta_clinical_samples.txt b/test/test_data/study_oncokb_import/meta_clinical_samples.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0/meta_clinical_samples.txt rename to test/test_data/study_oncokb_import/meta_clinical_samples.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_import/meta_cna_discrete.txt b/test/test_data/study_oncokb_import/meta_cna_discrete.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_import/meta_cna_discrete.txt rename to test/test_data/study_oncokb_import/meta_cna_discrete.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_import/meta_mutations_extended.txt b/test/test_data/study_oncokb_import/meta_mutations_extended.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_import/meta_mutations_extended.txt rename to test/test_data/study_oncokb_import/meta_mutations_extended.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_import/meta_study.txt b/test/test_data/study_oncokb_import/meta_study.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_import/meta_study.txt rename to test/test_data/study_oncokb_import/meta_study.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/case_lists/cases_cna.txt b/test/test_data/study_oncokb_update/case_lists/cases_cna.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/case_lists/cases_cna.txt rename to test/test_data/study_oncokb_update/case_lists/cases_cna.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/case_lists/cases_cnaseq.txt b/test/test_data/study_oncokb_update/case_lists/cases_cnaseq.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/case_lists/cases_cnaseq.txt rename to test/test_data/study_oncokb_update/case_lists/cases_cnaseq.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/case_lists/cases_sequenced.txt b/test/test_data/study_oncokb_update/case_lists/cases_sequenced.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/case_lists/cases_sequenced.txt rename to test/test_data/study_oncokb_update/case_lists/cases_sequenced.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/data_clinical_patients.txt b/test/test_data/study_oncokb_update/data_clinical_patients.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/data_clinical_patients.txt rename to test/test_data/study_oncokb_update/data_clinical_patients.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/data_clinical_samples.txt b/test/test_data/study_oncokb_update/data_clinical_samples.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/data_clinical_samples.txt rename to test/test_data/study_oncokb_update/data_clinical_samples.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/data_cna_discrete.txt b/test/test_data/study_oncokb_update/data_cna_discrete.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/data_cna_discrete.txt rename to test/test_data/study_oncokb_update/data_cna_discrete.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/data_cna_pd_annotations.txt b/test/test_data/study_oncokb_update/data_cna_pd_annotations.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/data_cna_pd_annotations.txt rename to test/test_data/study_oncokb_update/data_cna_pd_annotations.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/data_mutations_extended.maf b/test/test_data/study_oncokb_update/data_mutations_extended.maf similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/data_mutations_extended.maf rename to test/test_data/study_oncokb_update/data_mutations_extended.maf diff --git a/core/src/test/scripts/test_data/study_oncokb_import/meta_clinical_patients.txt b/test/test_data/study_oncokb_update/meta_clinical_patients.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_import/meta_clinical_patients.txt rename to test/test_data/study_oncokb_update/meta_clinical_patients.txt diff --git a/core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_clinical_samples.txt b/test/test_data/study_oncokb_update/meta_clinical_samples.txt similarity index 100% rename from core/src/test/scripts/test_data/study_es_0_legacy_cna_discrete/meta_clinical_samples.txt rename to test/test_data/study_oncokb_update/meta_clinical_samples.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/meta_cna_discrete.txt b/test/test_data/study_oncokb_update/meta_cna_discrete.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/meta_cna_discrete.txt rename to test/test_data/study_oncokb_update/meta_cna_discrete.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/meta_mutations_extended.txt b/test/test_data/study_oncokb_update/meta_mutations_extended.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/meta_mutations_extended.txt rename to test/test_data/study_oncokb_update/meta_mutations_extended.txt diff --git a/core/src/test/scripts/test_data/study_oncokb_update/meta_study.txt b/test/test_data/study_oncokb_update/meta_study.txt similarity index 100% rename from core/src/test/scripts/test_data/study_oncokb_update/meta_study.txt rename to test/test_data/study_oncokb_update/meta_study.txt diff --git a/test/test_db_version.sh b/test/test_db_version.sh old mode 100644 new mode 100755 index 1a723d7d92d..e370ed930ca --- a/test/test_db_version.sh +++ b/test/test_db_version.sh @@ -14,11 +14,11 @@ echo "Making sure all db versions are the same in cgds.sql, pom.xml and migratio POM_DB_VERSION=$(grep db.version ${DIR}/../pom.xml | cut -d'>' -f2 | cut -d'<' -f1) echo pom.xml db version is $POM_DB_VERSION -CGDS_DB_SQL_VERSION=$(grep 'INSERT INTO info' ${DIR}/../db-scripts/src/main/resources/cgds.sql | cut -d"'" -f2 | cut -d"'" -f1) -echo db-scripts/src/main/resources/cgds.sql db version is $CGDS_DB_SQL_VERSION +CGDS_DB_SQL_VERSION=$(grep 'INSERT INTO info' ${DIR}/../src/main/resources/db-scripts/cgds.sql | cut -d"'" -f2 | cut -d"'" -f1) +echo src/main/resources/db-scripts/cgds.sql db version is $CGDS_DB_SQL_VERSION -MIGRATION_DB_VERSION=$(grep 'UPDATE `info`' ${DIR}/../db-scripts/src/main/resources/migration.sql | tail -1 | cut -d '"' -f2 | cut -d'"' -f1) -echo db-scripts/src/main/resources/migration.sql db version is $MIGRATION_DB_VERSION +MIGRATION_DB_VERSION=$(grep 'UPDATE `info`' ${DIR}/../src/main/resources/db-scripts/migration.sql | tail -1 | cut -d '"' -f2 | cut -d'"' -f1) +echo src/main/resources/db-scripts/migration.sql db version is $MIGRATION_DB_VERSION if [ "$POM_DB_VERSION" == "$CGDS_DB_SQL_VERSION" ] && [ "$CGDS_DB_SQL_VERSION" == "$MIGRATION_DB_VERSION" ] then diff --git a/utils/pom.xml b/utils/pom.xml deleted file mode 100644 index 1edebdd38e5..00000000000 --- a/utils/pom.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - master - org.mskcc.cbio - 0-unknown-version-SNAPSHOT - - 4.0.0 - utils - Portal utils - Utility classes used in different modules - - - org.springframework - spring-core - - - org.springframework - spring-context - - - org.mockito - mockito-core - - - junit - junit - - - - \ No newline at end of file diff --git a/utils/src/main/java/org/cbioportal/utils/config/OnExpressionCondition.java b/utils/src/main/java/org/cbioportal/utils/config/OnExpressionCondition.java deleted file mode 100644 index f377b7afb31..00000000000 --- a/utils/src/main/java/org/cbioportal/utils/config/OnExpressionCondition.java +++ /dev/null @@ -1,48 +0,0 @@ -package org.cbioportal.utils.config; - -import org.cbioportal.utils.config.annotation.ConditionalOnExpression; -import org.springframework.beans.factory.config.BeanExpressionContext; -import org.springframework.beans.factory.config.BeanExpressionResolver; -import org.springframework.beans.factory.config.ConfigurableListableBeanFactory; -import org.springframework.context.annotation.Condition; -import org.springframework.context.annotation.ConditionContext; -import org.springframework.context.expression.StandardBeanExpressionResolver; -import org.springframework.core.type.AnnotatedTypeMetadata; - -// Adapted from Spring Boot -public class OnExpressionCondition implements Condition { - - public OnExpressionCondition() { - super(); - } - - @Override - public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) { - String expression = (String) metadata.getAnnotationAttributes(ConditionalOnExpression.class.getName()).get("value"); - expression = wrapIfNecessary(expression); - expression = context.getEnvironment().resolvePlaceholders(expression); - ConfigurableListableBeanFactory beanFactory = context.getBeanFactory(); - if (beanFactory != null) { - return evaluateExpression(beanFactory, expression); - } - return false; - } - - private Boolean evaluateExpression(ConfigurableListableBeanFactory beanFactory, String expression) { - BeanExpressionResolver resolver = beanFactory.getBeanExpressionResolver(); - if (resolver == null) { - resolver = new StandardBeanExpressionResolver(); - } - BeanExpressionContext expressionContext = new BeanExpressionContext(beanFactory, null); - Object result = resolver.evaluate(expression, expressionContext); - return (result != null && (boolean) result); - } - - private String wrapIfNecessary(String expression) { - if (!expression.startsWith("#{")) { - return "#{" + expression + "}"; - } - return expression; - } - -} diff --git a/utils/src/main/java/org/cbioportal/utils/config/annotation/ConditionalOnExpression.java b/utils/src/main/java/org/cbioportal/utils/config/annotation/ConditionalOnExpression.java deleted file mode 100644 index 310fd8a5310..00000000000 --- a/utils/src/main/java/org/cbioportal/utils/config/annotation/ConditionalOnExpression.java +++ /dev/null @@ -1,18 +0,0 @@ -package org.cbioportal.utils.config.annotation; - -import org.cbioportal.utils.config.OnExpressionCondition; -import org.springframework.context.annotation.Conditional; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -@Target({ElementType.TYPE, ElementType.METHOD}) -@Retention(RetentionPolicy.RUNTIME) -@Conditional(value = OnExpressionCondition.class) -public @interface ConditionalOnExpression { - - String value() default "true"; - -} diff --git a/utils/src/main/java/org/cbioportal/utils/security/PortalSecurityConfig.java b/utils/src/main/java/org/cbioportal/utils/security/PortalSecurityConfig.java deleted file mode 100644 index 9369bd10787..00000000000 --- a/utils/src/main/java/org/cbioportal/utils/security/PortalSecurityConfig.java +++ /dev/null @@ -1,14 +0,0 @@ -package org.cbioportal.utils.security; - -public class PortalSecurityConfig { - - // This method is the equivalent of GlobalProperties.usersMustAuthenticate() - // method in the org.mskcc.cbio.portal.util package. Update both when changes are needed. - public static boolean userAuthorizationEnabled(String authenticate) { - return authenticate != null - && !authenticate.equals("false") - && !authenticate.equals("noauthsessionservice") - && !authenticate.contains("social_auth"); - } - -} diff --git a/utils/src/test/resources/logback.xml b/utils/src/test/resources/logback.xml deleted file mode 100644 index 9d21a927c45..00000000000 --- a/utils/src/test/resources/logback.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n - - - - - - - - - - - \ No newline at end of file diff --git a/web/pom.xml b/web/pom.xml deleted file mode 100644 index 6fd0482d0df..00000000000 --- a/web/pom.xml +++ /dev/null @@ -1,168 +0,0 @@ - - - - - master - org.mskcc.cbio - - 0-unknown-version-SNAPSHOT - - 4.0.0 - web - Portal Web Layer - Web Module for Portal - - - - org.mskcc.cbio - service - - - cglib - cglib - - - javax.servlet - javax.servlet-api - - - - com.googlecode.json-simple - json-simple - - - io.springfox - springfox-oas - - - io.springfox - springfox-spring-web - - - - io.springfox - springfox-boot-starter - - - io.springfox - springfox-bean-validators - - - org.mapstruct - mapstruct - - - junit - junit - - - org.springframework - spring-test - - - com.jayway.jsonpath - json-path-assert - - - org.apache.commons - commons-lang3 - - - com.github.romain-warnan - simple-java-bitly - - - commons-validator - commons-validator - - - io.sentry - sentry-spring - - - org.aspectj - aspectjweaver - - - com.datumbox - datumbox-framework-lib - - - org.mongodb - mongo-java-driver - - - com.fasterxml.jackson.core - jackson-databind - - - org.mockito - mockito-core - - - org.springframework.security - spring-security-web - - - org.springframework.security - spring-security-test - - - org.springframework - spring-jdbc - - - org.springframework - spring-webmvc - - - org.springframework - spring-web - - - javax.el - javax.el-api - - - org.glassfish.web - javax.el - - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - - - copy-parent-resources - process-sources - - copy-resources - - - ${project.build.directory}/classes - - - ${project.parent.basedir}/src/main/resources - - **/springfox.properties - - - - - - - - - - - diff --git a/web/src/main/java/org/cbioportal/logging/LoggingAspect.java b/web/src/main/java/org/cbioportal/logging/LoggingAspect.java deleted file mode 100644 index abe7122dd8a..00000000000 --- a/web/src/main/java/org/cbioportal/logging/LoggingAspect.java +++ /dev/null @@ -1,32 +0,0 @@ -package org.cbioportal.logging; - -import org.aspectj.lang.JoinPoint; -import org.aspectj.lang.annotation.After; -import org.aspectj.lang.annotation.Aspect; -import org.aspectj.lang.annotation.Before; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.stereotype.Component; -import org.cbioportal.utils.config.annotation.ConditionalOnProperty; - -@Aspect -@Component -@ConditionalOnProperty(name = "aspect.enable.logging", havingValue = "true") -public class LoggingAspect { - - private static final Logger logger = LoggerFactory.getLogger("LoggingAspect"); - - @Before("execution(* org.cbioportal.web..*(..)) || execution(* org.cbioportal.service.impl..*(..)) || " + - "execution(* org.cbioportal.persistence.mybatis..*(..))") - public void logBefore(JoinPoint joinPoint) { - logger.debug("Entered: " + joinPoint.getTarget().getClass().getName() + "." + - joinPoint.getSignature().getName()); - } - - @After("execution(* org.cbioportal.web..*(..)) || execution(* org.cbioportal.service.impl..*(..)) || " + - "execution(* org.cbioportal.persistence.mybatis..*(..))") - public void logAfter(JoinPoint joinPoint) { - logger.debug("Exited: " + joinPoint.getTarget().getClass().getName() + "." + - joinPoint.getSignature().getName()); - } -} diff --git a/web/src/main/java/org/cbioportal/logging/SentryClientFactory.java b/web/src/main/java/org/cbioportal/logging/SentryClientFactory.java deleted file mode 100644 index 62e99735298..00000000000 --- a/web/src/main/java/org/cbioportal/logging/SentryClientFactory.java +++ /dev/null @@ -1,25 +0,0 @@ -package org.cbioportal.logging; - -import io.sentry.*; -import io.sentry.dsn.Dsn; -import io.sentry.event.helper.ContextBuilderHelper; -import io.sentry.event.helper.ForwardedAddressResolver; -import io.sentry.event.helper.HttpEventBuilderHelper; - -public class SentryClientFactory extends DefaultSentryClientFactory { - @Override - public SentryClient createSentryClient(Dsn dsn) { - SentryClient sentryClient = new SentryClient(createConnection(dsn), getContextManager(dsn)); - - /* - Create and use the ForwardedAddressResolver, which will use the - X-FORWARDED-FOR header for the remote address if it exists. - */ - ForwardedAddressResolver forwardedAddressResolver = new ForwardedAddressResolver(); - - sentryClient.addBuilderHelper(new HttpEventBuilderHelper(forwardedAddressResolver)); - - sentryClient.addBuilderHelper(new ContextBuilderHelper(sentryClient)); - return configureSentryClient(sentryClient, dsn); - } -} \ No newline at end of file diff --git a/web/src/main/java/org/cbioportal/proxy/ProxyController.java b/web/src/main/java/org/cbioportal/proxy/ProxyController.java deleted file mode 100644 index 92cce19ae58..00000000000 --- a/web/src/main/java/org/cbioportal/proxy/ProxyController.java +++ /dev/null @@ -1,218 +0,0 @@ -package org.cbioportal.proxy; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.*; -import org.springframework.http.converter.StringHttpMessageConverter; -import org.springframework.util.StringUtils; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.ResponseStatus; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.web.client.RestTemplate; - -import javax.servlet.http.HttpServletRequest; - -import java.io.*; -import java.net.URI; -import java.net.URISyntaxException; -import java.nio.charset.StandardCharsets; -import java.util.Properties; - - -@RestController -public class ProxyController { - private static final String DEFAULT_ONCOKB_URL = "https://public.api.oncokb.org/api/v1"; - private Properties properties; - - private Logger LOG = LoggerFactory.getLogger(ProxyController.class); - - @Autowired - private Monkifier monkifier; - - @RequestMapping("/**") - public String proxy(@RequestBody(required = false) String body, HttpMethod method, HttpServletRequest request) - throws URISyntaxException { - HttpHeaders httpHeaders = initHeaders(request); - - return exchangeData(body, - buildUri(request.getPathInfo(), request.getQueryString(), false), - method, - httpHeaders, - String.class - ).getBody(); - } - - @RequestMapping("/oncokb/**") - public String proxyOncokb( - @RequestBody(required = false) String body, - HttpMethod method, - HttpServletRequest request - ) throws URISyntaxException { - String token = request.getHeader("X-Proxy-User-Agreement"); - token = (token == null || token.isEmpty()) ? "NA": token; - - return exchangeOncokbData( - body, - request.getPathInfo().replaceFirst("/oncokb", ""), - request.getQueryString(), - method, - getOncokbHeaders(request, token) - ); - } - - @RequestMapping("/A8F74CD7851BDEE8DCD2E86AB4E2A711/**") - public String proxyEncodedOncokb( - @RequestBody(required = false) String body, - HttpMethod method, - HttpServletRequest request - ) throws URISyntaxException, UnsupportedEncodingException { - // make sure that the custom Proxy User Agreement header exists - String proxyUserAgreement = request.getHeader("X-Proxy-User-Agreement"); - if (proxyUserAgreement == null || !proxyUserAgreement.equals( - "I/We do NOT use this obfuscated proxy to programmatically obtain private OncoKB data. " + - "I/We know that I/we should get a valid data access token by registering at https://www.oncokb.org/account/register." - )) { - throw new OncoKBProxyUserAgreementException(); - } - - String decodedBody = body == null ? null: this.monkifier.decodeBase64(body); - String encodedPath = request.getPathInfo().replaceFirst("/A8F74CD7851BDEE8DCD2E86AB4E2A711/", ""); - String decodedPath = this.monkifier.decodeBase64(encodedPath); - String decodedQueryString = this.monkifier.decodeQueryString(request); - - String response = exchangeOncokbData( - decodedBody, - decodedPath, - decodedQueryString, - method, - getOncokbHeaders(request) - ); - - return "\"" + this.monkifier.encodeBase64(response) + "\""; - } - - private String exchangeOncokbData( - String body, - String pathInfo, - String queryString, - HttpMethod method, - HttpHeaders httpHeaders - ) throws URISyntaxException { - return exchangeData( - body, - buildUri(getOncokbApiUrl() + pathInfo, queryString), - method, - httpHeaders, - String.class - ).getBody(); - } - - private String getOncokbApiUrl() { - return getProperty("oncokb.public_api.url", DEFAULT_ONCOKB_URL); - } - - private HttpHeaders getOncokbHeaders(HttpServletRequest request) { - return this.getOncokbHeaders(request, null); - } - - private HttpHeaders getOncokbHeaders(HttpServletRequest request, String token) { - // load portal.properties - this.properties = loadProperties(getResourceStream("portal.properties")); - boolean showOncokb = Boolean.parseBoolean(getProperty("show.oncokb", "true")); - String oncokbToken = token == null ? getProperty("oncokb.token", ""): token; - - if (!showOncokb) { - throw new OncoKBServiceIsDisabledException(); - } - - HttpHeaders httpHeaders = initHeaders(request); - - if (!StringUtils.isEmpty(oncokbToken)) { - httpHeaders.add("Authorization", "Bearer " + oncokbToken); - } - - return httpHeaders; - } - - private HttpHeaders initHeaders(HttpServletRequest request) { - HttpHeaders httpHeaders = new HttpHeaders(); - - String contentType = request.getHeader("Content-Type"); - if (contentType != null) { - httpHeaders.setContentType(MediaType.valueOf(contentType)); - } - - return httpHeaders; - } - - private URI buildUri(String path, String queryString, boolean useSecureProtocol) throws URISyntaxException { - return buildUri((useSecureProtocol ? "https" : "http") + ":/" + path, queryString); - } - - private URI buildUri(String path, String queryString) throws URISyntaxException { - return new URI(path + (queryString == null ? "" : "?" + queryString)); - } - - private ResponseEntity exchangeData(String body, URI uri, HttpMethod method, HttpHeaders httpHeaders, Class responseType) { - RestTemplate restTemplate = new RestTemplate(); - restTemplate.getMessageConverters().add(0, new StringHttpMessageConverter(StandardCharsets.UTF_8)); - return restTemplate.exchange(uri, method, new HttpEntity<>(body, httpHeaders), responseType); - } - - private String getProperty(String key, String defaultValue) { - String propertyValue = this.properties.getProperty(key, defaultValue); - return System.getProperty(key, propertyValue); - } - - private InputStream getResourceStream(String propertiesFileName) - { - String resourceFilename = null; - InputStream resourceFIS = null; - - try { - String home = System.getenv("PORTAL_HOME"); - if (home != null) { - resourceFilename = - home + File.separator + propertiesFileName; - resourceFIS = new FileInputStream(resourceFilename); - } - } catch (FileNotFoundException e) { - } - - if (resourceFIS == null) { - resourceFIS = this.getClass().getClassLoader(). - getResourceAsStream(propertiesFileName); - } - - return resourceFIS; - } - private Properties loadProperties(InputStream resourceInputStream) - { - Properties properties = new Properties(); - - try { - properties.load(resourceInputStream); - resourceInputStream.close(); - } - catch (IOException e) { - System.out.println("Error loading properties file: " + e.getMessage()); - } - - return properties; - } - - @ResponseStatus(code = HttpStatus.NOT_FOUND, reason = "OncoKB service is disabled") - public class OncoKBServiceIsDisabledException extends RuntimeException { - } - - @ResponseStatus(code = HttpStatus.FORBIDDEN, reason = "No OncoKB access token is provided") - public class NoOncoKBTokenProvidedException extends RuntimeException { - } - - @ResponseStatus(code = HttpStatus.BAD_REQUEST, reason = "Fair Usage Agreement is missing") - public class OncoKBProxyUserAgreementException extends RuntimeException { - } - -} \ No newline at end of file diff --git a/web/src/main/java/org/cbioportal/web/AlterationDriverAnnotationController.java b/web/src/main/java/org/cbioportal/web/AlterationDriverAnnotationController.java deleted file mode 100644 index 724d89403c0..00000000000 --- a/web/src/main/java/org/cbioportal/web/AlterationDriverAnnotationController.java +++ /dev/null @@ -1,43 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import org.cbioportal.model.CustomDriverAnnotationReport; -import org.cbioportal.service.AlterationDriverAnnotationService; -import org.cbioportal.web.config.annotation.InternalApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import java.util.List; - -@InternalApi -@RestController -@Validated -@Api(tags = "Custom driver annotations", description = " ") -public class AlterationDriverAnnotationController { - - @Autowired - private AlterationDriverAnnotationService alterationDriverAnnotationService; - - @PreAuthorize("hasPermission(#molecularProfileIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @PostMapping(value = "/custom-driver-annotation-report/fetch", - consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Return availability of custom driver annotations for molecular profiles") - public ResponseEntity fetchAlterationDriverAnnotationReport( - @RequestBody(required = true) List molecularProfileIds) { - - CustomDriverAnnotationReport customDriverAnnotationReport = alterationDriverAnnotationService.getCustomDriverAnnotationProps(molecularProfileIds); - - return new ResponseEntity<>(customDriverAnnotationReport, HttpStatus.OK); - } -} - diff --git a/web/src/main/java/org/cbioportal/web/AlterationEnrichmentController.java b/web/src/main/java/org/cbioportal/web/AlterationEnrichmentController.java deleted file mode 100644 index 2c86cc08469..00000000000 --- a/web/src/main/java/org/cbioportal/web/AlterationEnrichmentController.java +++ /dev/null @@ -1,63 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.*; -import org.cbioportal.service.AlterationEnrichmentService; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.*; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.*; -import springfox.documentation.annotations.ApiIgnore; - -import javax.validation.Valid; -import java.util.*; -import java.util.stream.Collectors; - -@InternalApi -@RestController -@Validated -@Api(tags = "Alteration Enrichments", description = " ") -public class AlterationEnrichmentController { - - @Autowired - private AlterationEnrichmentService alterationEnrichmentService; - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @PostMapping(value = "/alteration-enrichments/fetch", - consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch alteration enrichments in molecular profiles") - public ResponseEntity> fetchAlterationEnrichments( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore - // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedMolecularProfileCasesGroupFilters") List interceptedMolecularProfileCasesGroupFilters, - @ApiIgnore - @Valid @RequestAttribute(required = false, value = "alterationEventTypes") AlterationFilter alterationEventTypes, - @ApiParam("Type of the enrichment e.g. SAMPLE or PATIENT") - @RequestParam(defaultValue = "SAMPLE") EnrichmentType enrichmentType, - @ApiParam(required = true, value = "List of groups containing sample identifiers and list of Alteration Types") - @Valid @RequestBody(required = false) MolecularProfileCasesGroupAndAlterationTypeFilter groupsAndAlterationTypes) throws MolecularProfileNotFoundException { - - Map> groupCaseIdentifierSet = interceptedMolecularProfileCasesGroupFilters.stream() - .collect(Collectors.toMap(MolecularProfileCasesGroupFilter::getName, - MolecularProfileCasesGroupFilter::getMolecularProfileCaseIdentifiers)); - - List alterationEnrichments = alterationEnrichmentService.getAlterationEnrichments( - groupCaseIdentifierSet, - enrichmentType, - alterationEventTypes); - - return new ResponseEntity<>(alterationEnrichments, HttpStatus.OK); - } -} - diff --git a/web/src/main/java/org/cbioportal/web/CacheController.java b/web/src/main/java/org/cbioportal/web/CacheController.java deleted file mode 100644 index cdf42972849..00000000000 --- a/web/src/main/java/org/cbioportal/web/CacheController.java +++ /dev/null @@ -1,78 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.persistence.StudyRepository; -import org.cbioportal.service.CacheService; -import org.cbioportal.service.exception.CacheOperationException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestHeader; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import java.util.List; -import java.util.stream.Collectors; - -@RestController -@Validated -@InternalApi -@Api(tags = "Cache") -public class CacheController { - - @Autowired - private CacheService cacheService; - - @Value("${cache.endpoint.api-key:not set}") - private String requiredApiKey; - - @Value("${cache.endpoint.enabled:false}") - private boolean cacheEndpointEnabled; - - @RequestMapping(value = "/cache", method = RequestMethod.DELETE, produces = MediaType.TEXT_PLAIN_VALUE) - @ApiOperation("Clear and reinitialize caches") - public ResponseEntity clearAllCaches( - @ApiParam("Secret API key passed in HTTP header. The key is configured in portal.properties of the portal instance.") - @RequestHeader(value = "X-API-KEY") String providedApiKey, - @ApiParam("Clear Spring-managed caches") - @RequestParam(defaultValue = "true", required = false) final boolean springManagedCache) - throws CacheOperationException { - if (!cacheEndpointEnabled) { - return new ResponseEntity<>("Cache endpoint is disabled for this instance.", HttpStatus.NOT_FOUND); - } - if ("not set".equals(requiredApiKey) || ! requiredApiKey.equals(providedApiKey)) { - return new ResponseEntity<>("", HttpStatus.UNAUTHORIZED); - } - cacheService.clearCaches(springManagedCache); - return new ResponseEntity<>("Flushed all caches!!!", HttpStatus.OK); - } - - @RequestMapping(value = "/cache/{studyId}", method = RequestMethod.DELETE, produces = MediaType.TEXT_PLAIN_VALUE) - @ApiOperation("Clear and reinitialize caches after import/removal/update of a study") - public ResponseEntity clearCachesForStudy( - @ApiParam("Secret API key passed in HTTP header. The key is configured in portal.properties of the portal instance.") - @RequestHeader(value = "X-API-KEY") String providedApiKey, - @PathVariable String studyId, - @ApiParam("Clear Spring-managed caches") - @RequestParam(defaultValue = "true", required = false) final boolean springManagedCache) - throws CacheOperationException { - if (!cacheEndpointEnabled) { - return new ResponseEntity<>("Cache endpoint is disabled for this instance.", HttpStatus.NOT_FOUND); - } - if ("not set".equals(requiredApiKey) || ! requiredApiKey.equals(providedApiKey)) { - return new ResponseEntity<>("", HttpStatus.UNAUTHORIZED); - } - - cacheService.clearCachesForStudy(studyId, springManagedCache); - return new ResponseEntity<>("Flushed "+ studyId +" caches!!!", HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/CacheStatsController.java b/web/src/main/java/org/cbioportal/web/CacheStatsController.java deleted file mode 100644 index c8418280f74..00000000000 --- a/web/src/main/java/org/cbioportal/web/CacheStatsController.java +++ /dev/null @@ -1,55 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.service.CacheStatisticsService; -import org.cbioportal.service.exception.CacheNotFoundException; -import org.cbioportal.utils.config.annotation.ConditionalOnProperty; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -import java.util.List; - -@RestController -@Validated -@Api(tags = "CacheStats", hidden = true, description = " ") -@ApiIgnore -@ConditionalOnProperty(name = "persistence.cache_type", havingValue = {"ehcache-heap", "ehcache-disk", "ehcache-hybrid", "redis"}) -public class CacheStatsController { - - @Autowired - public CacheStatisticsService cacheStatisticsService; - - @RequestMapping(value = "/{cache}/keysInCache", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get list of keys in cache") - public ResponseEntity> getKeysInCache( - @ApiParam(required = true, value = "Cache name") - @PathVariable String cache) throws CacheNotFoundException { - List strings = cacheStatisticsService.getKeysInCache(cache); - return new ResponseEntity<>(strings, HttpStatus.OK); - } - - @RequestMapping(value = "/{cache}/keyCountsPerClass", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get counts of keys per repository class") - public ResponseEntity> getKeyCountsPerClass( - @ApiParam(required = true, value = "Cache name") - @PathVariable String cache) throws CacheNotFoundException { - List strings = cacheStatisticsService.getKeyCountsPerClass(cache); - return new ResponseEntity<>(strings, HttpStatus.OK); - } - - @RequestMapping(value = "/cacheStatistics", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get general cache statistics") - public ResponseEntity getCacheStatistics() throws CacheNotFoundException { - return new ResponseEntity<>(cacheStatisticsService.getCacheStatistics(), HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/CancerTypeController.java b/web/src/main/java/org/cbioportal/web/CancerTypeController.java deleted file mode 100644 index facef9d4561..00000000000 --- a/web/src/main/java/org/cbioportal/web/CancerTypeController.java +++ /dev/null @@ -1,78 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.TypeOfCancer; -import org.cbioportal.service.CancerTypeService; -import org.cbioportal.service.exception.CancerTypeNotFoundException; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.sort.CancerTypeSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import java.util.List; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.CANCER_TYPES, description = " ") -public class CancerTypeController { - - @Autowired - private CancerTypeService cancerTypeService; - - @RequestMapping(value = "/cancer-types", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all cancer types") - public ResponseEntity> getAllCancerTypes( - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") final Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) final Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) final Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) final CancerTypeSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") final Direction direction) { - - if (projection == Projection.META) { - final HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, cancerTypeService.getMetaCancerTypes().getTotalCount() - .toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - cancerTypeService.getAllCancerTypes(projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @RequestMapping(value = "/cancer-types/{cancerTypeId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get a cancer type") - public ResponseEntity getCancerType( - @ApiParam(required = true, value = "Cancer Type ID e.g. acc") - @PathVariable final String cancerTypeId) throws CancerTypeNotFoundException { - return new ResponseEntity<>(cancerTypeService.getCancerType(cancerTypeId), HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/ClinicalAttributeController.java b/web/src/main/java/org/cbioportal/web/ClinicalAttributeController.java deleted file mode 100644 index b51f1020675..00000000000 --- a/web/src/main/java/org/cbioportal/web/ClinicalAttributeController.java +++ /dev/null @@ -1,151 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import java.util.*; -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; -import javax.validation.Valid; -import org.cbioportal.model.ClinicalAttribute; -import org.cbioportal.model.ClinicalAttributeCount; -import org.cbioportal.service.ClinicalAttributeService; -import org.cbioportal.service.exception.ClinicalAttributeNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.ClinicalAttributeCountFilter; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.SampleIdentifier; -import org.cbioportal.web.parameter.sort.ClinicalAttributeSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.CLINICAL_ATTRIBUTES, description = " ") -public class ClinicalAttributeController { - - @Autowired - private ClinicalAttributeService clinicalAttributeService; - - @RequestMapping(value = "/clinical-attributes", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all clinical attributes") - public ResponseEntity> getAllClinicalAttributes( - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ClinicalAttributeSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalAttributeService.getMetaClinicalAttributes() - .getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - clinicalAttributeService.getAllClinicalAttributes(projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/clinical-attributes", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all clinical attributes in the specified study") - public ResponseEntity> getAllClinicalAttributesInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ClinicalAttributeSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalAttributeService - .getMetaClinicalAttributesInStudy(studyId).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - clinicalAttributeService.getAllClinicalAttributesInStudy(studyId, projection.name(), pageSize, - pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), - HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/clinical-attributes/{clinicalAttributeId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get specified clinical attribute") - public ResponseEntity getClinicalAttributeInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam(required = true, value= "Clinical Attribute ID e.g. CANCER_TYPE") - @PathVariable String clinicalAttributeId) - throws ClinicalAttributeNotFoundException, StudyNotFoundException { - - return new ResponseEntity<>(clinicalAttributeService.getClinicalAttribute(studyId, clinicalAttributeId), - HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#studyIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/clinical-attributes/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch clinical attributes") - public ResponseEntity> fetchClinicalAttributes( - @ApiParam(required = true, value = "List of Study IDs") - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @RequestBody List studyIds, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalAttributeService.fetchMetaClinicalAttributes( - studyIds).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>(clinicalAttributeService.fetchClinicalAttributes(studyIds, projection.name()), - HttpStatus.OK); - } - } - -} diff --git a/web/src/main/java/org/cbioportal/web/ClinicalAttributeCountController.java b/web/src/main/java/org/cbioportal/web/ClinicalAttributeCountController.java deleted file mode 100644 index ffc708d16b2..00000000000 --- a/web/src/main/java/org/cbioportal/web/ClinicalAttributeCountController.java +++ /dev/null @@ -1,79 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import java.util.*; -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; -import javax.validation.Valid; -import org.cbioportal.model.ClinicalAttribute; -import org.cbioportal.model.ClinicalAttributeCount; -import org.cbioportal.service.ClinicalAttributeService; -import org.cbioportal.service.exception.ClinicalAttributeNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.web.config.InternalApiTags; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.ClinicalAttributeCountFilter; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.SampleIdentifier; -import org.cbioportal.web.parameter.sort.ClinicalAttributeSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -@InternalApi -@RestController -@Validated -@Api(tags = InternalApiTags.CLINICAL_ATTRIBUTES_COUNT, description = " ") -public class ClinicalAttributeCountController { - - @Autowired - private ClinicalAttributeService clinicalAttributeService; - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/clinical-attributes/counts/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get counts for clinical attributes according to their data availability for selected samples/patients") - public ResponseEntity> getClinicalAttributeCounts( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedClinicalAttributeCountFilter") ClinicalAttributeCountFilter interceptedClinicalAttributeCountFilter, - @ApiParam(required = true, value = "List of SampleIdentifiers or Sample List ID") - @Valid @RequestBody(required = false) ClinicalAttributeCountFilter clinicalAttributeCountFilter) { - - List clinicalAttributeCountList; - if (interceptedClinicalAttributeCountFilter.getSampleListId() != null) { - clinicalAttributeCountList = clinicalAttributeService.getClinicalAttributeCountsBySampleListId( - interceptedClinicalAttributeCountFilter.getSampleListId()); - } else { - List sampleIdentifiers = interceptedClinicalAttributeCountFilter.getSampleIdentifiers(); - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - for (SampleIdentifier sampleIdentifier : sampleIdentifiers) { - studyIds.add(sampleIdentifier.getStudyId()); - sampleIds.add(sampleIdentifier.getSampleId()); - } - clinicalAttributeCountList = clinicalAttributeService.getClinicalAttributeCountsBySampleIds(studyIds, sampleIds); - } - - return new ResponseEntity<>(clinicalAttributeCountList, HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/ClinicalDataController.java b/web/src/main/java/org/cbioportal/web/ClinicalDataController.java deleted file mode 100644 index 687f9e0fe83..00000000000 --- a/web/src/main/java/org/cbioportal/web/ClinicalDataController.java +++ /dev/null @@ -1,233 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import java.util.*; -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.Valid; -import org.cbioportal.model.ClinicalData; -import org.cbioportal.service.ClinicalDataService; -import org.cbioportal.service.exception.PatientNotFoundException; -import org.cbioportal.service.exception.SampleNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.ClinicalDataIdentifier; -import org.cbioportal.web.parameter.ClinicalDataMultiStudyFilter; -import org.cbioportal.web.parameter.ClinicalDataSingleStudyFilter; -import org.cbioportal.web.parameter.ClinicalDataType; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.sort.ClinicalDataSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.CLINICAL_DATA, description = " ") -public class ClinicalDataController { - - public static final int CLINICAL_DATA_MAX_PAGE_SIZE = 10000000; - private static final String CLINICAL_DATA_DEFAULT_PAGE_SIZE = "10000000"; - - @Autowired - private ClinicalDataService clinicalDataService; - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/samples/{sampleId}/clinical-data", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all clinical data of a sample in a study") - public ResponseEntity> getAllClinicalDataOfSampleInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam(required = true, value = "Sample ID e.g. TCGA-OR-A5J2-01") - @PathVariable String sampleId, - @ApiParam("Attribute ID e.g. CANCER_TYPE") - @RequestParam(required = false) String attributeId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(CLINICAL_DATA_MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = CLINICAL_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ClinicalDataSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws SampleNotFoundException, - StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalDataService.getMetaSampleClinicalData( - studyId, sampleId, attributeId).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - clinicalDataService.getAllClinicalDataOfSampleInStudy( - studyId, sampleId, attributeId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/patients/{patientId}/clinical-data", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all clinical data of a patient in a study") - public ResponseEntity> getAllClinicalDataOfPatientInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam(required = true, value = "Patient ID e.g. TCGA-OR-A5J2") - @PathVariable String patientId, - @ApiParam("Attribute ID e.g. AGE") - @RequestParam(required = false) String attributeId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(CLINICAL_DATA_MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = CLINICAL_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ClinicalDataSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws PatientNotFoundException, - StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalDataService.getMetaPatientClinicalData( - studyId, patientId, attributeId).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - clinicalDataService.getAllClinicalDataOfPatientInStudy( - studyId, patientId, attributeId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/clinical-data", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all clinical data in a study") - public ResponseEntity> getAllClinicalDataInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Attribute ID e.g. CANCER_TYPE") - @RequestParam(required = false) String attributeId, - @ApiParam("Type of the clinical data") - @RequestParam(defaultValue = "SAMPLE") ClinicalDataType clinicalDataType, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(CLINICAL_DATA_MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = CLINICAL_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ClinicalDataSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalDataService.getMetaAllClinicalData(studyId, - attributeId, clinicalDataType.name()).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - clinicalDataService.getAllClinicalDataInStudy(studyId, attributeId, - clinicalDataType.name(), projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/clinical-data/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch clinical data by patient IDs or sample IDs (specific study)") - public ResponseEntity> fetchAllClinicalDataInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Type of the clinical data") - @RequestParam(defaultValue = "SAMPLE") ClinicalDataType clinicalDataType, - @ApiParam(required = true, value = "List of patient or sample IDs and attribute IDs") - @Valid @RequestBody ClinicalDataSingleStudyFilter clinicalDataSingleStudyFilter, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) throws StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalDataService.fetchMetaClinicalDataInStudy( - studyId, clinicalDataSingleStudyFilter.getIds(), clinicalDataSingleStudyFilter.getAttributeIds(), - clinicalDataType.name()).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - clinicalDataService.fetchAllClinicalDataInStudy(studyId, clinicalDataSingleStudyFilter.getIds(), - clinicalDataSingleStudyFilter.getAttributeIds(), clinicalDataType.name(), projection.name()), - HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/clinical-data/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch clinical data by patient IDs or sample IDs (all studies)") - public ResponseEntity> fetchClinicalData( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedClinicalDataMultiStudyFilter") ClinicalDataMultiStudyFilter interceptedClinicalDataMultiStudyFilter, - @ApiParam("Type of the clinical data") - @RequestParam(defaultValue = "SAMPLE") ClinicalDataType clinicalDataType, - @ApiParam(required = true, value = "List of patient or sample identifiers and attribute IDs") - @Valid @RequestBody(required = false) ClinicalDataMultiStudyFilter clinicalDataMultiStudyFilter, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) { - - List studyIds = new ArrayList<>(); - List ids = new ArrayList<>(); - - for (ClinicalDataIdentifier identifier : interceptedClinicalDataMultiStudyFilter.getIdentifiers()) { - studyIds.add(identifier.getStudyId()); - ids.add(identifier.getEntityId()); - } - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalDataService.fetchMetaClinicalData(studyIds, ids, - interceptedClinicalDataMultiStudyFilter.getAttributeIds(), clinicalDataType.name()).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - clinicalDataService.fetchClinicalData(studyIds, ids, interceptedClinicalDataMultiStudyFilter.getAttributeIds(), - clinicalDataType.name(), projection.name()), HttpStatus.OK); - } - } -} diff --git a/web/src/main/java/org/cbioportal/web/ClinicalEventController.java b/web/src/main/java/org/cbioportal/web/ClinicalEventController.java deleted file mode 100644 index e9b07cae95a..00000000000 --- a/web/src/main/java/org/cbioportal/web/ClinicalEventController.java +++ /dev/null @@ -1,114 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.ClinicalEvent; -import org.cbioportal.service.ClinicalEventService; -import org.cbioportal.service.exception.PatientNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.web.config.InternalApiTags; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.sort.ClinicalEventSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import java.util.List; - -@InternalApi -@RestController -@Validated -@Api(tags = InternalApiTags.CLINICAL_EVENTS, description = " ") -public class ClinicalEventController { - - @Autowired - private ClinicalEventService clinicalEventService; - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/patients/{patientId}/clinical-events", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all clinical events of a patient in a study") - public ResponseEntity> getAllClinicalEventsOfPatientInStudy( - @ApiParam(required = true, value = "Study ID e.g. lgg_ucsf_2014") - @PathVariable String studyId, - @ApiParam(required = true, value = "Patient ID e.g. P01") - @PathVariable String patientId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ClinicalEventSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws PatientNotFoundException, - StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalEventService.getMetaPatientClinicalEvents( - studyId, patientId).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - clinicalEventService.getAllClinicalEventsOfPatientInStudy( - studyId, patientId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/clinical-events", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all clinical events in a study") - public ResponseEntity> getAllClinicalEventsInStudy( - @ApiParam(required = true, value = "Study ID e.g. lgg_ucsf_2014") - @PathVariable String studyId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ClinicalEventSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws PatientNotFoundException, - StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, clinicalEventService.getMetaClinicalEvents( - studyId).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - clinicalEventService.getAllClinicalEventsInStudy( - studyId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } -} diff --git a/web/src/main/java/org/cbioportal/web/CoExpressionController.java b/web/src/main/java/org/cbioportal/web/CoExpressionController.java deleted file mode 100644 index fd208ce2af3..00000000000 --- a/web/src/main/java/org/cbioportal/web/CoExpressionController.java +++ /dev/null @@ -1,75 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.CoExpression; -import org.cbioportal.model.EntityType; -import org.cbioportal.service.CoExpressionService; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.CoExpressionFilter; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import javax.validation.Valid; -import java.util.List; - -@InternalApi -@RestController -@Validated -@Api(tags = "Co-Expressions", description = " ") -public class CoExpressionController { - - @Autowired - private CoExpressionService coExpressionService; - - // requires permission to access both molecularProfileIdA and molecularProfileIdB because service layer does not enforce requirement that both profiles are in the same study - @PreAuthorize("hasPermission(#molecularProfileIdA, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ) and hasPermission(#molecularProfileIdB, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/molecular-profiles/co-expressions/fetch", - method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Calculates correlations between a genetic entity from a specific profile and another profile from the same study") - public ResponseEntity> fetchCoExpressions( - @ApiParam(required = true, value = "Molecular Profile ID from the Genetic Entity referenced in the co-expression filter e.g. acc_tcga_rna_seq_v2_mrna") - @RequestParam String molecularProfileIdA, - @ApiParam(required = true, value = "Molecular Profile ID (can be the same as molecularProfileIdA) e.g. acc_tcga_rna_seq_v2_mrna") - @RequestParam String molecularProfileIdB, - @ApiParam(required = true, value = "List of Sample IDs/Sample List ID and Entrez Gene ID/Gene set ID") - @Valid @RequestBody CoExpressionFilter coExpressionFilter, - @ApiParam("Threshold") - @RequestParam(defaultValue = "0.3") Double threshold) throws Exception { - - List coExpressionList; - String geneticEntityId = null; - EntityType geneticEntityType = null; - - if (coExpressionFilter.getEntrezGeneId() != null) { - geneticEntityId = coExpressionFilter.getEntrezGeneId().toString(); - geneticEntityType = EntityType.GENE; - } else { - geneticEntityId = coExpressionFilter.getGenesetId(); - geneticEntityType = EntityType.GENESET; - } - - if (coExpressionFilter.getSampleListId() != null) { - coExpressionList = coExpressionService.getCoExpressions(geneticEntityId, - geneticEntityType, coExpressionFilter.getSampleListId(), molecularProfileIdA, molecularProfileIdB, - threshold); - } else { - coExpressionList = coExpressionService.fetchCoExpressions(geneticEntityId, - geneticEntityType, coExpressionFilter.getSampleIds(), molecularProfileIdA, molecularProfileIdB, - threshold); - } - - return new ResponseEntity<>(coExpressionList, HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/CopyNumberSegmentController.java b/web/src/main/java/org/cbioportal/web/CopyNumberSegmentController.java deleted file mode 100644 index 95f6ee5e75b..00000000000 --- a/web/src/main/java/org/cbioportal/web/CopyNumberSegmentController.java +++ /dev/null @@ -1,126 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.CopyNumberSeg; -import org.cbioportal.service.CopyNumberSegmentService; -import org.cbioportal.service.exception.SampleNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.SampleIdentifier; -import org.cbioportal.web.parameter.sort.CopyNumberSegmentSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; -import java.util.*; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.COPY_NUMBER_SEGMENTS, description = " ") -public class CopyNumberSegmentController { - - private static final int COPY_NUMBER_SEGMENT_MAX_PAGE_SIZE = 20000; - private static final String COPY_NUMBER_SEGMENT_DEFAULT_PAGE_SIZE = "20000"; - - @Autowired - private CopyNumberSegmentService copyNumberSegmentService; - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/samples/{sampleId}/copy-number-segments", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get copy number segments in a sample in a study") - public ResponseEntity> getCopyNumberSegmentsInSampleInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam(required = true, value = "Sample ID e.g. TCGA-OR-A5J2-01") - @PathVariable String sampleId, - @ApiParam("Chromosome") - @RequestParam(required = false) String chromosome, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(COPY_NUMBER_SEGMENT_MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = COPY_NUMBER_SEGMENT_DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) CopyNumberSegmentSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws SampleNotFoundException, - StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, copyNumberSegmentService - .getMetaCopyNumberSegmentsInSampleInStudy(studyId, sampleId, chromosome).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - copyNumberSegmentService.getCopyNumberSegmentsInSampleInStudy(studyId, sampleId, chromosome, - projection.name(), pageSize, pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), - direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/copy-number-segments/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch copy number segments by sample ID") - public ResponseEntity> fetchCopyNumberSegments( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @RequestAttribute(required = false, value = "interceptedSampleIdentifiers") List interceptedSampleIdentifiers, - @ApiParam(required = true, value = "List of sample identifiers") - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @RequestBody(required = false) List sampleIdentifiers, - @ApiParam("Chromosome") - @RequestParam(required = false) String chromosome, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) { - - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - - for (SampleIdentifier sampleIdentifier : interceptedSampleIdentifiers) { - studyIds.add(sampleIdentifier.getStudyId()); - sampleIds.add(sampleIdentifier.getSampleId()); - } - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, copyNumberSegmentService - .fetchMetaCopyNumberSegments(studyIds, sampleIds, chromosome).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - copyNumberSegmentService.fetchCopyNumberSegments(studyIds, sampleIds, chromosome, projection.name()), - HttpStatus.OK); - } - } -} diff --git a/web/src/main/java/org/cbioportal/web/CosmicCountController.java b/web/src/main/java/org/cbioportal/web/CosmicCountController.java deleted file mode 100644 index 3fea8c823f1..00000000000 --- a/web/src/main/java/org/cbioportal/web/CosmicCountController.java +++ /dev/null @@ -1,43 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.CosmicMutation; -import org.cbioportal.service.CosmicCountService; -import org.cbioportal.web.config.annotation.InternalApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; - -import javax.validation.constraints.Size; -import java.util.List; - -@InternalApi -@RestController -@Validated -@Api(tags = "Cosmic Counts", description = " ") -public class CosmicCountController { - - private static final int COSMIC_COUNT_MAX_PAGE_SIZE = 50000; - - @Autowired - private CosmicCountService cosmicCountService; - - @RequestMapping(value = "/cosmic-counts/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get counts within the COSMIC database by keywords") - public ResponseEntity> fetchCosmicCounts( - @ApiParam(required = true, value = "List of keywords") - @Size(min = 1, max = COSMIC_COUNT_MAX_PAGE_SIZE) - @RequestBody List keywords) { - - return new ResponseEntity<>(cosmicCountService.fetchCosmicCountsByKeywords(keywords), HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/DataAccessTokenController.java b/web/src/main/java/org/cbioportal/web/DataAccessTokenController.java deleted file mode 100644 index 06ddc00f27e..00000000000 --- a/web/src/main/java/org/cbioportal/web/DataAccessTokenController.java +++ /dev/null @@ -1,144 +0,0 @@ -/* -* This file is part of cBioPortal. -* -* cBioPortal is free software: you can redistribute it and/or modify -* it under the terms of the GNU Affero General Public License as -* published by the Free Software Foundation, either version 3 of the -* License. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Affero General Public License for more details. -* -* You should have received a copy of the GNU Affero General Public License -* along with this program. If not, see . -*/ - -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.apache.commons.lang3.StringUtils; -import org.cbioportal.model.DataAccessToken; -import org.cbioportal.service.DataAccessTokenService; -import org.cbioportal.service.exception.DataAccessTokenNoUserIdentityException; -import org.cbioportal.service.exception.DataAccessTokenProhibitedUserException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.core.Authentication; -import org.springframework.security.core.authority.SimpleGrantedAuthority; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.*; -import org.springframework.web.client.HttpClientErrorException; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.util.Arrays; -import java.util.HashSet; -import java.util.List; -import java.util.Set; - -@InternalApi -@RequestMapping // replaces @RestController; controller is created conditionally in DataAccessTokenConfig of security-spring module -@ResponseBody // needed when not using @RestController annotation -@Validated -@Api(tags = "Data Access Tokens", description = " ") -public class DataAccessTokenController { - - @Value("${dat.unauth_users:anonymousUser}") - private String[] USERS_WHO_CANNOT_USE_TOKENS; - - private static String userRoleToAccessToken; - @Value("${download_group:}") // default is empty string - public void setUserRoleToAccessToken(String property) { userRoleToAccessToken = property; } - - @Autowired - private DataAccessTokenService tokenService; - private Set usersWhoCannotUseTokenSet; - - @Autowired - private void initializeUsersWhoCannotUseTokenSet() { - usersWhoCannotUseTokenSet = new HashSet<>(Arrays.asList(USERS_WHO_CANNOT_USE_TOKENS)); - } - - private String fileName = "cbioportal_data_access_token.txt"; - - @PostMapping(value = "/data-access-tokens", produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all data access tokens") - public ResponseEntity createDataAccessToken(Authentication authentication) throws HttpClientErrorException { - String userName = getAuthenticatedUser(authentication); - DataAccessToken token = tokenService.createDataAccessToken(userName); - if (token == null) { - return new ResponseEntity<>(token, HttpStatus.NOT_FOUND); - } - return new ResponseEntity<>(token, HttpStatus.CREATED); - } - - @RequestMapping(method = RequestMethod.GET, value = "/data-access-tokens") - @ApiOperation("Retrieve all data access tokens") - public ResponseEntity> getAllDataAccessTokens(HttpServletRequest request, - Authentication authentication) { - String userName = getAuthenticatedUser(authentication); - List allDataAccessTokens = tokenService.getAllDataAccessTokens(userName); - return new ResponseEntity<>(allDataAccessTokens, HttpStatus.OK); - } - - @RequestMapping(method = RequestMethod.GET, value = "/data-access-tokens/{token}") - @ApiOperation("Retrieve an existing data access token") - public ResponseEntity getDataAccessToken( - @ApiParam(required = true, value = "token") @PathVariable String token) { - DataAccessToken dataAccessToken = tokenService.getDataAccessTokenInfo(token); - return new ResponseEntity<>(dataAccessToken, HttpStatus.OK); - } - - @RequestMapping(method = RequestMethod.DELETE, value = "/data-access-tokens") - @ApiOperation("Delete all data access tokens") - public void revokeAllDataAccessTokens(Authentication authentication) { - tokenService.revokeAllDataAccessTokens(getAuthenticatedUser(authentication)); - } - - @RequestMapping(method = RequestMethod.DELETE, value = "/data-access-tokens/{token}") - @ApiOperation("Delete a data access token") - public void revokeDataAccessToken(@ApiParam(required = true, value = "token") @PathVariable String token) { - tokenService.revokeDataAccessToken(token); - } - - // this is the entrypoint for the cBioPortal frontend to download a single user token - @RequestMapping(method = RequestMethod.GET, value = "/data-access-token") - @ApiOperation("Create a new data access token") - public ResponseEntity downloadDataAccessToken(Authentication authentication, - HttpServletRequest request, HttpServletResponse response) throws IOException { - - // for other methods add header to trigger download of the token by the browser - response.setHeader("Content-Disposition", "attachment; filename=" + fileName); - String userName = getAuthenticatedUser(authentication); - DataAccessToken token = tokenService.createDataAccessToken(userName); - if (token == null) { - return new ResponseEntity<>(null, HttpStatus.NOT_FOUND); - } - - return new ResponseEntity<>(token.toString(), HttpStatus.CREATED); - } - - private String getAuthenticatedUser(Authentication authentication) { - if (authentication == null || !authentication.isAuthenticated()) { - throw new DataAccessTokenNoUserIdentityException(); - } - String username = authentication.getName(); - if (usersWhoCannotUseTokenSet.contains(username)) { - throw new DataAccessTokenProhibitedUserException(); - } - if(StringUtils.isNotEmpty(userRoleToAccessToken) && - !authentication.getAuthorities().contains(new SimpleGrantedAuthority(userRoleToAccessToken))) { - throw new DataAccessTokenProhibitedUserException(); - } - return username; - } -} diff --git a/web/src/main/java/org/cbioportal/web/DiscreteCopyNumberCountController.java b/web/src/main/java/org/cbioportal/web/DiscreteCopyNumberCountController.java deleted file mode 100644 index dbe37f05e48..00000000000 --- a/web/src/main/java/org/cbioportal/web/DiscreteCopyNumberCountController.java +++ /dev/null @@ -1,73 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.CopyNumberCount; -import org.cbioportal.model.DiscreteCopyNumberData; -import org.cbioportal.model.meta.BaseMeta; -import org.cbioportal.service.DiscreteCopyNumberService; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.web.config.InternalApiTags; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.CopyNumberCountIdentifier; -import org.cbioportal.web.parameter.DiscreteCopyNumberEventType; -import org.cbioportal.web.parameter.DiscreteCopyNumberFilter; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.Projection; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import javax.validation.Valid; -import javax.validation.constraints.Size; -import java.util.ArrayList; -import java.util.List; - -@InternalApi -@RestController -@Validated -@Api(tags = InternalApiTags.DISCRETE_COPY_NUMBER_ALTERATION_COUNTS, description = " ") -public class DiscreteCopyNumberCountController { - - private static final int COPY_NUMBER_COUNT_MAX_PAGE_SIZE = 50000; - - @Autowired - private DiscreteCopyNumberService discreteCopyNumberService; - - @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/discrete-copy-number-counts/fetch", - method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get counts of specific genes and alterations within a CNA molecular profile") - public ResponseEntity> fetchCopyNumberCounts( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_gistic") - @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "List of copy number count identifiers") - @Size(min = 1, max = COPY_NUMBER_COUNT_MAX_PAGE_SIZE) - @RequestBody List copyNumberCountIdentifiers) - throws MolecularProfileNotFoundException { - - List entrezGeneIds = new ArrayList<>(); - List alterations = new ArrayList<>(); - - for (CopyNumberCountIdentifier copyNumberCountIdentifier : copyNumberCountIdentifiers) { - - entrezGeneIds.add(copyNumberCountIdentifier.getEntrezGeneId()); - alterations.add(copyNumberCountIdentifier.getAlteration()); - } - - return new ResponseEntity<>(discreteCopyNumberService.fetchCopyNumberCounts(molecularProfileId, entrezGeneIds, - alterations), HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/ExpressionEnrichmentController.java b/web/src/main/java/org/cbioportal/web/ExpressionEnrichmentController.java deleted file mode 100644 index 4072480eb13..00000000000 --- a/web/src/main/java/org/cbioportal/web/ExpressionEnrichmentController.java +++ /dev/null @@ -1,106 +0,0 @@ -package org.cbioportal.web; - -import java.util.*; -import java.util.stream.Collectors; - -import javax.validation.Valid; - -import org.cbioportal.model.ExpressionEnrichment; -import org.cbioportal.model.GenericAssayEnrichment; -import org.cbioportal.model.GenomicEnrichment; -import org.cbioportal.model.MolecularProfileCaseIdentifier; -import org.cbioportal.service.ExpressionEnrichmentService; -import org.cbioportal.service.exception.GenericAssayNotFoundException; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.model.EnrichmentType; -import org.cbioportal.web.parameter.MolecularProfileCasesGroupFilter; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.*; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import springfox.documentation.annotations.ApiIgnore; - -@InternalApi -@RestController -@Validated -@Api(tags = "Enrichments", description = " ") -public class ExpressionEnrichmentController { - @Autowired - private ExpressionEnrichmentService expressionEnrichmentService; - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/expression-enrichments/fetch", - method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch genomic enrichments in a molecular profile") - public ResponseEntity> fetchGenomicEnrichments( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiParam("Type of the enrichment e.g. SAMPLE or PATIENT") - @RequestParam(defaultValue = "SAMPLE") EnrichmentType enrichmentType, - @ApiParam(required = true, value = "List of groups containing sample and molecular profile identifiers") - @Valid @RequestBody(required = false) List groups, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedMolecularProfileCasesGroupFilters") List interceptedMolecularProfileCasesGroupFilters) throws MolecularProfileNotFoundException { - - return new ResponseEntity<>( - fetchExpressionEnrichments(enrichmentType, interceptedMolecularProfileCasesGroupFilters, false), - HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/generic-assay-enrichments/fetch", - method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch generic assay enrichments in a molecular profile") - public ResponseEntity> fetchGenericAssayEnrichments( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiParam("Type of the enrichment e.g. SAMPLE or PATIENT") - @RequestParam(defaultValue = "SAMPLE") EnrichmentType enrichmentType, - @ApiParam(required = true, value = "List of groups containing sample and molecular profile identifiers") - @Valid @RequestBody(required = false) List groups, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedMolecularProfileCasesGroupFilters") List interceptedMolecularProfileCasesGroupFilters) - throws MolecularProfileNotFoundException, UnsupportedOperationException, GenericAssayNotFoundException { - - return new ResponseEntity<>( - fetchExpressionEnrichments(enrichmentType, interceptedMolecularProfileCasesGroupFilters, true), - HttpStatus.OK); - } - - private List fetchExpressionEnrichments(EnrichmentType enrichmentType, - List interceptedMolecularProfileCasesGroupFilters, - Boolean isRequestForGenericAssayEnrichments) throws MolecularProfileNotFoundException { - - Map> groupCaseIdentifierSet = interceptedMolecularProfileCasesGroupFilters - .stream().collect(Collectors.toMap(MolecularProfileCasesGroupFilter::getName, - MolecularProfileCasesGroupFilter::getMolecularProfileCaseIdentifiers)); - - Set molecularProfileIds = groupCaseIdentifierSet.values().stream() - .flatMap(molecularProfileCaseSet -> molecularProfileCaseSet.stream() - .map(MolecularProfileCaseIdentifier::getMolecularProfileId)) - .collect(Collectors.toSet()); - - if (molecularProfileIds.size() > 1) { - throw new UnsupportedOperationException("Multi-study expression enrichments is not yet implemented"); - } - - if (isRequestForGenericAssayEnrichments) { - return (List) expressionEnrichmentService.getGenericAssayNumericalEnrichments( - molecularProfileIds.iterator().next(), groupCaseIdentifierSet, enrichmentType); - } - - return (List) expressionEnrichmentService.getGenomicEnrichments(molecularProfileIds.iterator().next(), - groupCaseIdentifierSet, enrichmentType); - - } -} diff --git a/web/src/main/java/org/cbioportal/web/GeneController.java b/web/src/main/java/org/cbioportal/web/GeneController.java deleted file mode 100644 index 59adfbf1494..00000000000 --- a/web/src/main/java/org/cbioportal/web/GeneController.java +++ /dev/null @@ -1,119 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.Gene; -import org.cbioportal.service.GeneService; -import org.cbioportal.service.exception.GeneNotFoundException; -import org.cbioportal.service.exception.GeneWithMultipleEntrezIdsException; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.GeneIdType; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.sort.GeneSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; -import java.util.List; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.GENES, description = " ") -public class GeneController { - - @Autowired - private GeneService geneService; - - @RequestMapping(value = "/genes", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all genes") - public ResponseEntity> getAllGenes( - @ApiParam("Search keyword that applies to hugo gene symbol of the genes") - @RequestParam(required = false) String keyword, - @ApiParam("Alias of the gene") - @RequestParam(required = false) String alias, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) GeneSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, geneService.getMetaGenes(keyword, alias).getTotalCount() - .toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - geneService.getAllGenes(keyword, alias, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @RequestMapping(value = "/genes/{geneId}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get a gene") - public ResponseEntity getGene( - @ApiParam(required = true, value = "Entrez Gene ID or Hugo Gene Symbol e.g. 1 or A1BG") - @PathVariable String geneId) throws GeneNotFoundException, GeneWithMultipleEntrezIdsException { - - return new ResponseEntity<>(geneService.getGene(geneId), HttpStatus.OK); - } - - @RequestMapping(value = "/genes/{geneId}/aliases", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get aliases of a gene") - public ResponseEntity> getAliasesOfGene( - @ApiParam(required = true, value = "Entrez Gene ID or Hugo Gene Symbol e.g. 1 or A1BG") - @PathVariable String geneId) throws GeneNotFoundException, GeneWithMultipleEntrezIdsException { - - return new ResponseEntity<>(geneService.getAliasesOfGene(geneId), HttpStatus.OK); - } - - @RequestMapping(value = "/genes/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch genes by ID") - public ResponseEntity> fetchGenes( - @ApiParam("Type of gene ID") - @RequestParam(defaultValue = "ENTREZ_GENE_ID") GeneIdType geneIdType, - @ApiParam(required = true, value = "List of Entrez Gene IDs or Hugo Gene Symbols") - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @RequestBody List geneIds, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, geneService.fetchMetaGenes(geneIds, geneIdType.name()) - .getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>(geneService.fetchGenes(geneIds, geneIdType.name(), projection.name()), - HttpStatus.OK); - } - } -} diff --git a/web/src/main/java/org/cbioportal/web/GenePanelController.java b/web/src/main/java/org/cbioportal/web/GenePanelController.java deleted file mode 100644 index 93e3c293f14..00000000000 --- a/web/src/main/java/org/cbioportal/web/GenePanelController.java +++ /dev/null @@ -1,101 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.GenePanel; -import org.cbioportal.model.GenePanelData; -import org.cbioportal.model.MolecularProfileCaseIdentifier; -import org.cbioportal.service.exception.GenePanelNotFoundException; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.service.GenePanelService; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.*; -import org.cbioportal.web.parameter.sort.GenePanelSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.util.CollectionUtils; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; -import javax.validation.Valid; -import java.util.*; -import java.util.stream.Collectors; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.GENE_PANELS, description = " ") -public class GenePanelController { - - @Autowired - private GenePanelService genePanelService; - - @RequestMapping(value = "/gene-panels", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all gene panels") - public ResponseEntity> getAllGenePanels( - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) GenePanelSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, genePanelService.getMetaGenePanels() - .getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - genePanelService.getAllGenePanels(projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @RequestMapping(value = "/gene-panels/{genePanelId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get gene panel") - public ResponseEntity getGenePanel( - @ApiParam(required = true, value = "Gene Panel ID e.g. NSCLC_UNITO_2016_PANEL") - @PathVariable String genePanelId) throws GenePanelNotFoundException { - - return new ResponseEntity<>(genePanelService.getGenePanel(genePanelId), HttpStatus.OK); - } - - @RequestMapping(value = "/gene-panels/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get gene panel") - public ResponseEntity> fetchGenePanels( - @ApiParam(required = true, value = "List of Gene Panel IDs") - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @RequestBody List genePanelIds, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) { - - return new ResponseEntity<>(genePanelService.fetchGenePanels(genePanelIds, projection.name()), HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/GenePanelDataController.java b/web/src/main/java/org/cbioportal/web/GenePanelDataController.java deleted file mode 100644 index 03ebec52c4f..00000000000 --- a/web/src/main/java/org/cbioportal/web/GenePanelDataController.java +++ /dev/null @@ -1,98 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.GenePanel; -import org.cbioportal.model.GenePanelData; -import org.cbioportal.model.MolecularProfileCaseIdentifier; -import org.cbioportal.service.GenePanelService; -import org.cbioportal.service.exception.GenePanelNotFoundException; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.*; -import org.cbioportal.web.parameter.sort.GenePanelSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.util.CollectionUtils; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.*; -import springfox.documentation.annotations.ApiIgnore; - -import javax.validation.Valid; -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; -import java.util.Collection; -import java.util.HashSet; -import java.util.List; -import java.util.stream.Collectors; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.GENE_PANEL_DATA, description = " ") -public class GenePanelDataController { - - @Autowired - private GenePanelService genePanelService; - - @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/gene-panel-data/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get gene panel data") - public ResponseEntity> getGenePanelData( - @ApiParam(required = true, value = "Molecular Profile ID e.g. nsclc_unito_2016_mutations") - @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "List of Sample IDs/Sample List ID and Entrez Gene IDs") - @Valid @RequestBody GenePanelDataFilter genePanelDataFilter) throws MolecularProfileNotFoundException { - - List genePanelDataList; - if (genePanelDataFilter.getSampleListId() != null) { - genePanelDataList = genePanelService.getGenePanelData(molecularProfileId, - genePanelDataFilter.getSampleListId()); - } else { - genePanelDataList = genePanelService.fetchGenePanelData(molecularProfileId, - genePanelDataFilter.getSampleIds()); - } - - return new ResponseEntity<>(genePanelDataList, HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/gene-panel-data/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch gene panel data") - public ResponseEntity> fetchGenePanelDataInMultipleMolecularProfiles( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedGenePanelDataMultipleStudyFilter") GenePanelDataMultipleStudyFilter interceptedGenePanelDataMultipleStudyFilter, - @ApiParam(required = true, value = "Gene panel data filter object") - @RequestBody(required = false) GenePanelDataMultipleStudyFilter genePanelDataMultipleStudyFilter) { - - List genePanelDataList; - if(CollectionUtils.isEmpty(interceptedGenePanelDataMultipleStudyFilter.getMolecularProfileIds())) { - List molecularProfileSampleIdentifiers = interceptedGenePanelDataMultipleStudyFilter.getSampleMolecularIdentifiers() - .stream() - .map(sampleMolecularIdentifier -> { - MolecularProfileCaseIdentifier profileCaseIdentifier = new MolecularProfileCaseIdentifier(); - profileCaseIdentifier.setMolecularProfileId(sampleMolecularIdentifier.getMolecularProfileId()); - profileCaseIdentifier.setCaseId(sampleMolecularIdentifier.getSampleId()); - return profileCaseIdentifier; - }) - .collect(Collectors.toList()); - - genePanelDataList = genePanelService.fetchGenePanelDataInMultipleMolecularProfiles(molecularProfileSampleIdentifiers); - } else { - genePanelDataList = genePanelService.fetchGenePanelDataByMolecularProfileIds(new HashSet<>(interceptedGenePanelDataMultipleStudyFilter.getMolecularProfileIds())); - } - - return new ResponseEntity<>(genePanelDataList, HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/GenericAssayController.java b/web/src/main/java/org/cbioportal/web/GenericAssayController.java deleted file mode 100644 index 652ffe3e97d..00000000000 --- a/web/src/main/java/org/cbioportal/web/GenericAssayController.java +++ /dev/null @@ -1,106 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.apache.commons.lang3.StringUtils; -import springfox.documentation.annotations.ApiIgnore; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.List; -import java.util.stream.Collectors; - -import javax.validation.Valid; - -import org.cbioportal.model.GenericAssayData; -import org.cbioportal.model.meta.GenericAssayMeta; -import org.cbioportal.service.GenericAssayService; -import org.cbioportal.service.exception.GenericAssayNotFoundException; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.GenericAssayFilter; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.GenericAssayDataMultipleStudyFilter; -import org.cbioportal.web.parameter.GenericAssayMetaFilter; -import org.cbioportal.web.parameter.SampleMolecularIdentifier; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.GENERIC_ASSAYS, description = " ") -public class GenericAssayController { - - @Autowired - private GenericAssayService genericAssayService; - - // PreAuthorize is removed for performance reason - @RequestMapping(value = "/generic_assay_meta/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch meta data for generic-assay by ID") - public ResponseEntity> fetchGenericAssayMeta( - @ApiParam(required = true, value = "List of Molecular Profile ID or List of Stable ID") - @Valid @RequestBody GenericAssayMetaFilter genericAssayMetaFilter, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) throws GenericAssayNotFoundException { - List result; - - if (genericAssayMetaFilter.getGenericAssayStableIds() == null) { - result = genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(null, genericAssayMetaFilter.getMolecularProfileIds(), projection.name()); - } else if (genericAssayMetaFilter.getMolecularProfileIds() == null) { - result = genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(genericAssayMetaFilter.getGenericAssayStableIds(), null, projection.name()); - } else { - result = genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(genericAssayMetaFilter.getGenericAssayStableIds(), genericAssayMetaFilter.getMolecularProfileIds(), projection.name()); - } - return new ResponseEntity<>(result, HttpStatus.OK); - } - - // PreAuthorize is removed for performance reason - @RequestMapping(value = "/generic-assay-meta/{molecularProfileId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch meta data for generic-assay by ID") - public ResponseEntity> getGenericAssayMeta( - @ApiParam(required = true, value = "Molecular Profile ID") - @PathVariable String molecularProfileId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) throws GenericAssayNotFoundException { - List result; - - result = genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(null, Arrays.asList(molecularProfileId), projection.name()); - - return new ResponseEntity<>(result, HttpStatus.OK); - } - - @RequestMapping(value = "/generic-assay-meta/generic-assay/{genericAssayStableId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch meta data for generic-assay by ID") - public ResponseEntity> getGenericAssayMeta_ga( - @ApiParam(required = false, value = "Generic Assay stable ID") - @PathVariable String genericAssayStableId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) throws GenericAssayNotFoundException { - List result; - result = genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(Arrays.asList(genericAssayStableId), null, projection.name()); - - return new ResponseEntity<>(result, HttpStatus.OK); - } - - -} diff --git a/web/src/main/java/org/cbioportal/web/GenericAssayDataController.java b/web/src/main/java/org/cbioportal/web/GenericAssayDataController.java deleted file mode 100644 index 5b546f63889..00000000000 --- a/web/src/main/java/org/cbioportal/web/GenericAssayDataController.java +++ /dev/null @@ -1,147 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.apache.commons.lang3.StringUtils; -import org.cbioportal.model.GenePanel; -import org.cbioportal.model.GenericAssayData; -import org.cbioportal.service.GenericAssayService; -import org.cbioportal.service.exception.GenePanelNotFoundException; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.*; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.*; -import springfox.documentation.annotations.ApiIgnore; - -import javax.validation.Valid; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.List; -import java.util.stream.Collectors; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.GENERIC_ASSAY_DATA, description = " ") -public class GenericAssayDataController { - - @Autowired - private GenericAssayService genericAssayService; - - @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/generic-assay-data/{molecularProfileId}/generic-assay/{genericAssayStableId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get generic_assay_data in a molecular profile") - public ResponseEntity> getGenericAssayDataInMolecularProfile( - @ApiParam(required = true, value = "Molecular Profile ID") - @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "Generic Assay stable ID") - @PathVariable String genericAssayStableId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) throws MolecularProfileNotFoundException { - - List result; - result = filterEmptyGenericAssayData(genericAssayService.fetchGenericAssayData(molecularProfileId, - null, Arrays.asList(genericAssayStableId) , projection.name())); - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, String.valueOf(result.size())); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>(result, HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/generic_assay_data/{molecularProfileId}/fetch", - method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("fetch generic_assay_data in a molecular profile") - public ResponseEntity> fetchGenericAssayDataInMolecularProfile( - @ApiParam(required = true, value = "Molecular Profile ID") - @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "List of Sample IDs/Sample List ID and Generic Assay IDs") - @Valid @RequestBody GenericAssayFilter genericAssayDataFilter, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) throws MolecularProfileNotFoundException { - - List result; - if (genericAssayDataFilter.getSampleListId() != null) { - result = filterEmptyGenericAssayData(genericAssayService.getGenericAssayData(molecularProfileId, - genericAssayDataFilter.getSampleListId(), genericAssayDataFilter.getGenericAssayStableIds(), projection.name())); - } else { - result = filterEmptyGenericAssayData(genericAssayService.fetchGenericAssayData(molecularProfileId, - genericAssayDataFilter.getSampleIds(), genericAssayDataFilter.getGenericAssayStableIds(), projection.name())); - } - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, String.valueOf(result.size())); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>(result, HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/generic_assay_data/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch generic_assay_data") - public ResponseEntity> fetchGenericAssayDataInMultipleMolecularProfiles( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @RequestAttribute(required = false, value = "interceptedGenericAssayDataMultipleStudyFilter") GenericAssayDataMultipleStudyFilter interceptedGenericAssayDataMultipleStudyFilter, - @ApiParam(required = true, value = "List of Molecular Profile ID and Sample ID pairs or List of Molecular" + - "Profile IDs and Generic Assay IDs") - @Valid @RequestBody(required = false) GenericAssayDataMultipleStudyFilter genericAssayDataMultipleStudyFilter, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) throws MolecularProfileNotFoundException { - - List result; - if (interceptedGenericAssayDataMultipleStudyFilter.getMolecularProfileIds() != null) { - result = filterEmptyGenericAssayData(genericAssayService.fetchGenericAssayData( - interceptedGenericAssayDataMultipleStudyFilter.getMolecularProfileIds(), null, - interceptedGenericAssayDataMultipleStudyFilter.getGenericAssayStableIds(), projection.name())); - } else { - - List molecularProfileIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - extractMolecularProfileAndSampleIds(interceptedGenericAssayDataMultipleStudyFilter, molecularProfileIds, sampleIds); - result = filterEmptyGenericAssayData(genericAssayService.fetchGenericAssayData(molecularProfileIds, - sampleIds, interceptedGenericAssayDataMultipleStudyFilter.getGenericAssayStableIds(), projection.name())); - } - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, String.valueOf(result.size())); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>(result, HttpStatus.OK); - } - } - - private void extractMolecularProfileAndSampleIds(GenericAssayDataMultipleStudyFilter molecularDataMultipleStudyFilter, List molecularProfileIds, List sampleIds) { - for (SampleMolecularIdentifier sampleMolecularIdentifier : molecularDataMultipleStudyFilter.getSampleMolecularIdentifiers()) { - molecularProfileIds.add(sampleMolecularIdentifier.getMolecularProfileId()); - sampleIds.add(sampleMolecularIdentifier.getSampleId()); - } - } - - private List filterEmptyGenericAssayData(List genericAssayDataList) { - return genericAssayDataList.stream() - .filter(g -> StringUtils.isNotEmpty(g.getValue()) && !g.getValue().equals("NA")) - .collect(Collectors.toList()); - } -} diff --git a/web/src/main/java/org/cbioportal/web/GenesetController.java b/web/src/main/java/org/cbioportal/web/GenesetController.java deleted file mode 100644 index 9684e8830a1..00000000000 --- a/web/src/main/java/org/cbioportal/web/GenesetController.java +++ /dev/null @@ -1,92 +0,0 @@ -package org.cbioportal.web; - -import java.util.List; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; - -import org.cbioportal.model.Geneset; -import org.cbioportal.service.GenesetService; -import org.cbioportal.service.exception.GenesetNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; - -@InternalApi -@RestController -@Validated -@Api(tags = "Gene Sets", description = " ") -public class GenesetController { - - @Autowired - private GenesetService genesetService; - - @RequestMapping(value = "/genesets", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all gene sets") - public ResponseEntity> getAllGenesets( - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(Integer.MAX_VALUE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber) { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, genesetService.getMetaGenesets().getTotalCount() - .toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - genesetService.getAllGenesets(projection.name(), pageSize, pageNumber), HttpStatus.OK); - } - } - - @RequestMapping(value = "/genesets/{genesetId}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get a gene set") - public ResponseEntity getGeneset( - @ApiParam(required = true, value = "Gene set ID e.g. GNF2_ZAP70") - @PathVariable String genesetId) throws GenesetNotFoundException { - - return new ResponseEntity<>(genesetService.getGeneset(genesetId), HttpStatus.OK); - } - - @RequestMapping(value = "/genesets/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch gene sets by ID") - public ResponseEntity> fetchGenesets( - @ApiParam(required = true, value = "List of Gene set IDs") - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @RequestBody List genesetIds) { - - return new ResponseEntity<>(genesetService.fetchGenesets(genesetIds), HttpStatus.OK); - } - - @RequestMapping(value = "/genesets/version", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get the geneset version") - public ResponseEntity getGenesetVersion() { - - return new ResponseEntity<>(genesetService.getGenesetVersion(), HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/GenesetCorrelationController.java b/web/src/main/java/org/cbioportal/web/GenesetCorrelationController.java deleted file mode 100644 index 65ddee6e4b6..00000000000 --- a/web/src/main/java/org/cbioportal/web/GenesetCorrelationController.java +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.web; - -import java.util.List; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; - -import org.cbioportal.model.GenesetCorrelation; -import org.cbioportal.service.GenesetCorrelationService; -import org.cbioportal.service.exception.GenesetNotFoundException; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.service.exception.SampleListNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; - -@InternalApi -@RestController -@Validated -@Api(tags = "Gene Set Correlation", description = " ") -public class GenesetCorrelationController { - - @Autowired - private GenesetCorrelationService genesetCorrelationService; - - @PreAuthorize("hasPermission(#geneticProfileId, 'GeneticProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/genesets/{genesetId}/expression-correlation/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get the genes in a gene set that have expression correlated to the gene set scores (calculated using Spearman's correlation)") - public ResponseEntity> fetchCorrelatedGenes( - @ApiParam(required = true, value = "Gene set ID, e.g. HINATA_NFKB_MATRIX.") - @PathVariable String genesetId, - @ApiParam(required = true, value = "Genetic Profile ID e.g. gbm_tcga_gsva_scores") - @RequestParam String geneticProfileId, - @ApiParam("Correlation threshold (for absolute correlation value, Spearman correlation)") - @Max(1) - @Min(0) - @RequestParam(defaultValue = "0.3") Double correlationThreshold, - @ApiParam(required = false, value = "Identifier of pre-defined sample list with samples to query, e.g. brca_tcga_all") - @RequestParam(required = false) String sampleListId, - @ApiParam(required = false, value = "Fill this one if you want to specify a subset of samples:" - + " sampleIds: custom list of samples or patients to query, e.g. [\"TCGA-A1-A0SD-01\", \"TCGA-A1-A0SE-01\"]") - @RequestBody(required = false) List sampleIds) - throws MolecularProfileNotFoundException, SampleListNotFoundException, GenesetNotFoundException { - - if (sampleListId != null && sampleListId.trim().length() > 0) { - return new ResponseEntity<>( - genesetCorrelationService.fetchCorrelatedGenes(genesetId, geneticProfileId, sampleListId, correlationThreshold.doubleValue()), - HttpStatus.OK); - } - if (sampleIds != null && sampleIds.size() > 0) { - return new ResponseEntity<>( - genesetCorrelationService.fetchCorrelatedGenes(genesetId, geneticProfileId, sampleIds, correlationThreshold.doubleValue()), - HttpStatus.OK); - } else { - return new ResponseEntity<>( - genesetCorrelationService.fetchCorrelatedGenes(genesetId, geneticProfileId, correlationThreshold.doubleValue()), - HttpStatus.OK); - } - } -} diff --git a/web/src/main/java/org/cbioportal/web/GenesetDataController.java b/web/src/main/java/org/cbioportal/web/GenesetDataController.java deleted file mode 100644 index 41af427a615..00000000000 --- a/web/src/main/java/org/cbioportal/web/GenesetDataController.java +++ /dev/null @@ -1,62 +0,0 @@ -package org.cbioportal.web; - -import java.util.List; - -import org.cbioportal.model.GenesetMolecularData; -import org.cbioportal.service.GenesetDataService; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.service.exception.SampleListNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.GenesetDataFilterCriteria; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; - -@InternalApi -@RestController -@Validated -@Api(tags = "Gene Set Scores", description = " ") -public class GenesetDataController { - - - @Autowired - private GenesetDataService genesetDataService; - - @PreAuthorize("hasPermission(#geneticProfileId, 'GeneticProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/genetic-profiles/{geneticProfileId}/geneset-genetic-data/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch gene set \"genetic data\" items (gene set scores) by profile Id, gene set ids and sample ids") - public ResponseEntity> fetchGeneticDataItems( - @ApiParam(required = true, value = "Genetic profile ID, e.g. gbm_tcga_gsva_scores") - @PathVariable String geneticProfileId, - @ApiParam(required = true, value = "Search criteria to return the values for a given set of samples and gene set items. " - + "genesetIds: The list of identifiers for the gene sets of interest, e.g. HINATA_NFKB_MATRIX. " - + "Use one of these if you want to specify a subset of samples:" - + "(1) sampleListId: Identifier of pre-defined sample list with samples to query, e.g. brca_tcga_all " - + "or (2) sampleIds: custom list of samples or patients to query, e.g. TCGA-BH-A1EO-01, TCGA-AR-A1AR-01") - @RequestBody GenesetDataFilterCriteria genesetDataFilterCriteria) throws MolecularProfileNotFoundException, SampleListNotFoundException { - - if (genesetDataFilterCriteria.getSampleListId() != null && genesetDataFilterCriteria.getSampleListId().trim().length() > 0) { - return new ResponseEntity<>( - genesetDataService.fetchGenesetData(geneticProfileId, genesetDataFilterCriteria.getSampleListId(), - genesetDataFilterCriteria.getGenesetIds()), HttpStatus.OK); - } else { - return new ResponseEntity<>( - genesetDataService.fetchGenesetData(geneticProfileId, genesetDataFilterCriteria.getSampleIds(), - genesetDataFilterCriteria.getGenesetIds()), HttpStatus.OK); - } - } - -} diff --git a/web/src/main/java/org/cbioportal/web/GenesetHierarchyController.java b/web/src/main/java/org/cbioportal/web/GenesetHierarchyController.java deleted file mode 100644 index 40ec5883a9b..00000000000 --- a/web/src/main/java/org/cbioportal/web/GenesetHierarchyController.java +++ /dev/null @@ -1,103 +0,0 @@ -/* - * Copyright (c) 2016 The Hyve B.V. - * This code is licensed under the GNU Affero General Public License (AGPL), - * version 3, or (at your option) any later version. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.web; - -import java.util.List; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; - -import org.cbioportal.model.GenesetHierarchyInfo; -import org.cbioportal.service.GenesetHierarchyService; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.service.exception.SampleListNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; - -@InternalApi -@RestController -@Validated -@Api(tags = "Gene Set Hierarchy", description = " ") -public class GenesetHierarchyController { - - @Autowired - private GenesetHierarchyService genesetHierarchyService; - - @PreAuthorize("hasPermission(#geneticProfileId, 'GeneticProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/geneset-hierarchy/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get gene set hierarchical organization information. I.e. how different gene sets relate to other gene sets, in a hierarchy") - public ResponseEntity> fetchGenesetHierarchyInfo( - @ApiParam(required = true, value = "Genetic Profile ID e.g. gbm_tcga_gsva_scores. The final hierarchy " - + " will only include gene sets scored in the specified profile.") - @RequestParam String geneticProfileId, - @ApiParam("Percentile (for score calculation). Which percentile to use when determining the *representative score*") - @Max(100) - @Min(1) - @RequestParam(defaultValue = "75") Integer percentile, - @ApiParam("Gene set score threshold (for absolute score value). Filters out gene sets where the GSVA(like) *representative score* is under this threshold.") - @Max(1) - @Min(0) - @RequestParam(defaultValue = "0.4") Double scoreThreshold, - @ApiParam("p-value threshold. Filters out gene sets for which the score p-value is higher than this threshold.") - @Max(1) - @Min(0) - @RequestParam(defaultValue = "0.05") Double pvalueThreshold, - @ApiParam(required = false, value = "Identifier of pre-defined sample list with samples to query, e.g. brca_tcga_all") - @RequestParam(required = false) String sampleListId, - @ApiParam(required = false, value = "Fill this one if you want to specify a subset of samples:" - + " sampleIds: custom list of samples or patients to query, e.g. [\"TCGA-A1-A0SD-01\", \"TCGA-A1-A0SE-01\"]") - @RequestBody(required = false) List sampleIds) - throws MolecularProfileNotFoundException, SampleListNotFoundException { - - if (sampleListId != null && sampleListId.trim().length() > 0) { - return new ResponseEntity<>( - genesetHierarchyService.fetchGenesetHierarchyInfo(geneticProfileId, percentile, scoreThreshold, pvalueThreshold, sampleListId), - HttpStatus.OK); - } else if (sampleIds != null && sampleIds.size() > 0){ - return new ResponseEntity<>( - genesetHierarchyService.fetchGenesetHierarchyInfo(geneticProfileId, percentile, scoreThreshold, pvalueThreshold, sampleIds), - HttpStatus.OK); - } else { - return new ResponseEntity<>( - genesetHierarchyService.fetchGenesetHierarchyInfo(geneticProfileId, percentile, scoreThreshold, pvalueThreshold), - HttpStatus.OK); - } - - } -} diff --git a/web/src/main/java/org/cbioportal/web/MatchMinerController.java b/web/src/main/java/org/cbioportal/web/MatchMinerController.java deleted file mode 100644 index 874dfa4f6dd..00000000000 --- a/web/src/main/java/org/cbioportal/web/MatchMinerController.java +++ /dev/null @@ -1,67 +0,0 @@ -package org.cbioportal.web; - -import org.apache.commons.codec.binary.Base64; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.json.simple.JSONObject; -import org.json.simple.parser.JSONParser; -import org.json.simple.parser.ParseException; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.http.*; -import org.springframework.http.converter.StringHttpMessageConverter; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.web.client.RestTemplate; - -import javax.servlet.http.HttpServletRequest; -import java.net.URI; -import java.net.URISyntaxException; -import java.nio.charset.Charset; -import java.nio.charset.StandardCharsets; - -@RestController -@RequestMapping("/matchminer") -public class MatchMinerController { - - private static final Logger LOG = LoggerFactory.getLogger( MatchMinerController.class); - - @Value("${matchminer.url:}") - private String url; - - @Value("${matchminer.token:}") - private String token; - - @RequestMapping(value = "/**", produces = "application/json") - public ResponseEntity proxy(@RequestBody(required = false) JSONObject body, HttpMethod method, HttpServletRequest request) { - try { - String path = request.getPathInfo().replace("/matchminer", ""); - URI uri = new URI(this.url + path); - - HttpHeaders httpHeaders = new HttpHeaders(); - String contentType = request.getHeader("Content-Type"); - if (contentType != null) { - httpHeaders.setContentType(MediaType.valueOf(contentType)); - } - if (this.token != "") { - String auth = this.token + ":"; - byte[] encodedAuth = Base64.encodeBase64(auth.getBytes(Charset.forName("US-ASCII"))); - String authHeader = "Basic " + new String(encodedAuth); - httpHeaders.set("Authorization", authHeader); - } - - RestTemplate restTemplate = new RestTemplate(); - restTemplate.getMessageConverters().add(0, new StringHttpMessageConverter(StandardCharsets.UTF_8)); - ResponseEntity responseEntity = restTemplate.exchange(uri, method, new HttpEntity<>(body, httpHeaders), String.class); - // The response might be a json object or a json array, so I return Object to cover both cases. - Object response = new JSONParser().parse(responseEntity.getBody()); - return new ResponseEntity<>(response, responseEntity.getStatusCode()); - } catch (URISyntaxException e) { - LOG.error("Error occurred", e); - return new ResponseEntity<>(HttpStatus.BAD_REQUEST); - } catch (ParseException e) { - LOG.error("Error occurred", e); - return new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR); - } - } -} \ No newline at end of file diff --git a/web/src/main/java/org/cbioportal/web/MolecularProfileController.java b/web/src/main/java/org/cbioportal/web/MolecularProfileController.java deleted file mode 100644 index 2474b2a060d..00000000000 --- a/web/src/main/java/org/cbioportal/web/MolecularProfileController.java +++ /dev/null @@ -1,162 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.meta.BaseMeta; -import org.cbioportal.model.MolecularProfile; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.service.MolecularProfileService; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.MolecularProfileFilter; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.sort.MolecularProfileSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.Valid; -import java.util.*; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.MOLECULAR_PROFILES, description = " ") -public class MolecularProfileController { - - @Autowired - private MolecularProfileService molecularProfileService; - - @RequestMapping(value = "/molecular-profiles", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all molecular profiles") - public ResponseEntity> getAllMolecularProfiles( - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) MolecularProfileSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, molecularProfileService.getMetaMolecularProfiles() - .getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - molecularProfileService.getAllMolecularProfiles(projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/molecular-profiles/{molecularProfileId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get molecular profile") - public ResponseEntity getMolecularProfile( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_mutations") - @PathVariable String molecularProfileId) throws MolecularProfileNotFoundException { - - return new ResponseEntity<>(molecularProfileService.getMolecularProfile(molecularProfileId), HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/molecular-profiles", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all molecular profiles in a study") - public ResponseEntity> getAllMolecularProfilesInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) MolecularProfileSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, molecularProfileService - .getMetaMolecularProfilesInStudy(studyId).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - molecularProfileService.getAllMolecularProfilesInStudy(studyId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/molecular-profiles/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch molecular profiles") - public ResponseEntity> fetchMolecularProfiles( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedMolecularProfileFilter") MolecularProfileFilter interceptedMolecularProfileFilter, - @ApiParam(required = true, value = "List of Molecular Profile IDs or List of Study IDs") - @Valid @RequestBody(required = false) MolecularProfileFilter molecularProfileFilter, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - BaseMeta baseMeta; - - if (interceptedMolecularProfileFilter.getStudyIds() != null) { - baseMeta = molecularProfileService.getMetaMolecularProfilesInStudies( - interceptedMolecularProfileFilter.getStudyIds()); - } else { - baseMeta = molecularProfileService.getMetaMolecularProfiles( - interceptedMolecularProfileFilter.getMolecularProfileIds()); - } - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, baseMeta.getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - List molecularProfiles; - if (interceptedMolecularProfileFilter.getStudyIds() != null) { - molecularProfiles = molecularProfileService.getMolecularProfilesInStudies( - interceptedMolecularProfileFilter.getStudyIds(), projection.name()); - } else { - molecularProfiles = molecularProfileService.getMolecularProfiles( - interceptedMolecularProfileFilter.getMolecularProfileIds(), projection.name()); - } - return new ResponseEntity<>(molecularProfiles, HttpStatus.OK); - } - } -} diff --git a/web/src/main/java/org/cbioportal/web/MrnaPercentileController.java b/web/src/main/java/org/cbioportal/web/MrnaPercentileController.java deleted file mode 100644 index ef445fdd833..00000000000 --- a/web/src/main/java/org/cbioportal/web/MrnaPercentileController.java +++ /dev/null @@ -1,54 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.MrnaPercentile; -import org.cbioportal.service.MrnaPercentileService; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.PagingConstants; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import javax.validation.constraints.Size; -import java.util.List; - -@InternalApi -@RestController -@Validated -@Api(tags = "mRNA Percentile", description = " ") -public class MrnaPercentileController { - - @Autowired - private MrnaPercentileService mrnaPercentileService; - - @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/mrna-percentile/fetch", - method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get mRNA expression percentiles for list of genes for a sample") - public ResponseEntity> fetchMrnaPercentile( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_rna_seq_v2_mrna") - @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "Sample ID e.g. TCGA-OR-A5J2-01") - @RequestParam String sampleId, - @ApiParam(required = true, value = "List of Entrez Gene IDs") - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @RequestBody List entrezGeneIds) - throws MolecularProfileNotFoundException { - - return new ResponseEntity<>( - mrnaPercentileService.fetchMrnaPercentile(molecularProfileId, sampleId, entrezGeneIds), HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/MutationCountController.java b/web/src/main/java/org/cbioportal/web/MutationCountController.java deleted file mode 100644 index 9a087a9318e..00000000000 --- a/web/src/main/java/org/cbioportal/web/MutationCountController.java +++ /dev/null @@ -1,78 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.meta.MutationMeta; -import org.cbioportal.model.Mutation; -import org.cbioportal.model.MutationCountByPosition; -import org.cbioportal.service.MolecularProfileService; -import org.cbioportal.service.MutationService; -import org.cbioportal.web.config.InternalApiTags; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.MutationFilter; -import org.cbioportal.web.parameter.MutationMultipleStudyFilter; -import org.cbioportal.web.parameter.MutationPositionIdentifier; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.SampleMolecularIdentifier; -import org.cbioportal.web.parameter.sort.MutationSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; -import javax.validation.Valid; -import java.util.*; - -@InternalApi -@RestController -@Validated -@Api(tags = InternalApiTags.MUTATIONS_COUNT, description = " ") -public class MutationCountController { - - public static final int MUTATION_MAX_PAGE_SIZE = 10000000; - - @Autowired - private MutationService mutationService; - - @RequestMapping(value = "/mutation-counts-by-position/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch mutation counts in all studies by gene and position") - public ResponseEntity> fetchMutationCountsByPosition( - @ApiParam(required = true, value = "List of gene and positions") - @Size(min = 1, max = MUTATION_MAX_PAGE_SIZE) - @RequestBody List mutationPositionIdentifiers) { - - List entrezGeneIds = new ArrayList<>(); - List proteinPosStarts = new ArrayList<>(); - List proteinPosEnds = new ArrayList<>(); - for (MutationPositionIdentifier mutationPositionIdentifier : mutationPositionIdentifiers) { - - entrezGeneIds.add(mutationPositionIdentifier.getEntrezGeneId()); - proteinPosStarts.add(mutationPositionIdentifier.getProteinPosStart()); - proteinPosEnds.add(mutationPositionIdentifier.getProteinPosEnd()); - } - - return new ResponseEntity<>(mutationService.fetchMutationCountsByPosition(entrezGeneIds, proteinPosStarts, - proteinPosEnds), HttpStatus.OK); - } - - -} diff --git a/web/src/main/java/org/cbioportal/web/MutationSpectrumController.java b/web/src/main/java/org/cbioportal/web/MutationSpectrumController.java deleted file mode 100644 index e6e50f135ec..00000000000 --- a/web/src/main/java/org/cbioportal/web/MutationSpectrumController.java +++ /dev/null @@ -1,57 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.MutationSpectrum; -import org.cbioportal.service.MutationSpectrumService; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.MutationSpectrumFilter; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import javax.validation.Valid; -import java.util.List; - -@InternalApi -@RestController -@Validated -@Api(tags = "Mutation Spectrums", description = " ") -public class MutationSpectrumController { - - @Autowired - private MutationSpectrumService mutationSpectrumService; - - @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/mutation-spectrums/fetch", - method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch mutation spectrums in a molecular profile") - public ResponseEntity> fetchMutationSpectrums( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_mutations") - @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "List of Sample IDs/Sample List ID") - @Valid @RequestBody MutationSpectrumFilter mutationSpectrumFilter) throws MolecularProfileNotFoundException { - - List mutationSpectrums; - if (mutationSpectrumFilter.getSampleListId() != null) { - mutationSpectrums = mutationSpectrumService.getMutationSpectrums(molecularProfileId, - mutationSpectrumFilter.getSampleListId()); - } else { - mutationSpectrums = mutationSpectrumService.fetchMutationSpectrums(molecularProfileId, - mutationSpectrumFilter.getSampleIds()); - } - - return new ResponseEntity<>(mutationSpectrums, HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/OAuth2DataAccessTokenController.java b/web/src/main/java/org/cbioportal/web/OAuth2DataAccessTokenController.java deleted file mode 100644 index 1b98a12abbc..00000000000 --- a/web/src/main/java/org/cbioportal/web/OAuth2DataAccessTokenController.java +++ /dev/null @@ -1,178 +0,0 @@ -/* - * Copyright (c) 2020 The Hyve B.V. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.apache.commons.lang3.StringUtils; -import org.cbioportal.model.DataAccessToken; -import org.cbioportal.service.DataAccessTokenService; -import org.cbioportal.service.exception.DataAccessTokenNoUserIdentityException; -import org.cbioportal.service.exception.DataAccessTokenProhibitedUserException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.core.Authentication; -import org.springframework.security.core.authority.SimpleGrantedAuthority; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.*; -import org.springframework.web.client.HttpClientErrorException; -import springfox.documentation.annotations.ApiIgnore; - -import javax.annotation.PostConstruct; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; -import java.io.UnsupportedEncodingException; -import java.net.URLEncoder; -import java.nio.charset.StandardCharsets; -import java.util.List; - -@InternalApi -@RequestMapping // replaces @RestController; controller is created conditionally in DataAccessTokenConfig of security-spring module -@ResponseBody // needed when not using @RestController annotation -@Validated -@Api(tags = "Data Access Tokens", description = " ") -public class OAuth2DataAccessTokenController { - - @Value("${dat.oauth2.userAuthorizationUri}") - private String userAuthorizationUri; - - @Value("${dat.oauth2.redirectUri}") - private String redirectUri; - - @Value("${dat.oauth2.clientId}") - private String clientId; - - @Value("${dat.filter_user_role:}") // default is empty string - private String userRoleToAccessToken; - - @Autowired - private DataAccessTokenService tokenService; - private String authorizationUrl; - private String fileName = "cbioportal_data_access_token.txt"; - - @PostConstruct - public void postConstruct() throws UnsupportedEncodingException { - - String scopeEncoded = URLEncoder.encode("openid offline_access", StandardCharsets.UTF_8.toString()); - String clientIdEncoded = URLEncoder.encode(clientId, StandardCharsets.UTF_8.toString()); - String redirUriEncode = URLEncoder.encode(redirectUri, StandardCharsets.UTF_8.toString()); - - authorizationUrl = String.format("%s?response_type=%s&scope=%s&client_id=%s&redirect_uri=%s", userAuthorizationUri, "code", scopeEncoded, clientIdEncoded, redirUriEncode); - } - - // This is the entrypoint for the cBioPortal frontend to download a single user token. - // Redirect the browser to the authorizationUrl. - @RequestMapping(method = RequestMethod.GET, value = "/data-access-token") - @ApiOperation("Create a new data access token") - public ResponseEntity downloadDataAccessToken(Authentication authentication, - HttpServletRequest request, HttpServletResponse response) throws IOException { - - isUserAuthorizedToAccess(authentication); - - // redirect to authentication endpoint - HttpHeaders headers = new HttpHeaders(); - headers.add("Location", authorizationUrl); - return new ResponseEntity<>(headers, HttpStatus.FOUND); - - } - - // retrieve and trigger download OAuth2 offline token - @RequestMapping(method = RequestMethod.GET, value = "/data-access-token/oauth2") - @ApiIgnore - public ResponseEntity downloadOAuth2DataAccessToken(HttpServletRequest request, HttpServletResponse response) throws IOException { - - String accessCode = request.getParameter("code"); - DataAccessToken offlineToken = tokenService.createDataAccessToken(accessCode); - - if (offlineToken == null) { - throw new DataAccessTokenProhibitedUserException(); - } - - // add header to trigger download of the token by the browser - response.setHeader("Content-Disposition", "attachment; filename=" + fileName); - - return new ResponseEntity<>(offlineToken.toString(), HttpStatus.OK); - } - - @RequestMapping(method = RequestMethod.POST, value = "/data-access-tokens", produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all data access tokens") - public ResponseEntity createDataAccessToken(Authentication authentication) throws HttpClientErrorException { - throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); - } - - @RequestMapping(method = RequestMethod.GET, value = "/data-access-tokens") - @ApiOperation("Retrieve all data access tokens") - public ResponseEntity> getAllDataAccessTokens(HttpServletRequest request, - Authentication authentication) { - throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); - } - - @RequestMapping(method = RequestMethod.GET, value = "/data-access-tokens/{token}") - @ApiOperation("Retrieve an existing data access token") - public ResponseEntity getDataAccessToken( - @ApiParam(required = true, value = "token") @PathVariable String token) { - throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); - - } - - @RequestMapping(method = RequestMethod.DELETE, value = "/data-access-tokens") - @ApiOperation("Delete all data access tokens") - public void revokeAllDataAccessTokens(Authentication authentication) { - throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); - } - - @RequestMapping(method = RequestMethod.DELETE, value = "/data-access-tokens/{token}") - @ApiOperation("Delete a data access token") - public void revokeDataAccessToken(@ApiParam(required = true, value = "token") @PathVariable String token) { - throw new UnsupportedOperationException("this endpoint is does not apply to OAuth2 data access token method."); - } - - private void isUserAuthorizedToAccess(Authentication authentication) { - if (authentication == null || !authentication.isAuthenticated()) { - throw new DataAccessTokenNoUserIdentityException(); - } - - if(StringUtils.isNotEmpty(userRoleToAccessToken) && - !authentication.getAuthorities().contains(new SimpleGrantedAuthority(userRoleToAccessToken))) { - throw new DataAccessTokenProhibitedUserException(); - } - } - -} diff --git a/web/src/main/java/org/cbioportal/web/PatientController.java b/web/src/main/java/org/cbioportal/web/PatientController.java deleted file mode 100644 index 84ec5585483..00000000000 --- a/web/src/main/java/org/cbioportal/web/PatientController.java +++ /dev/null @@ -1,171 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.Patient; -import org.cbioportal.service.exception.PatientNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.service.PatientService; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.*; -import org.cbioportal.web.parameter.sort.PatientSortBy; -import org.cbioportal.web.util.UniqueKeyExtractor; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.Valid; -import java.util.*; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.PATIENTS, description = " ") -public class PatientController { - - @Autowired - private PatientService patientService; - - @Autowired - private UniqueKeyExtractor uniqueKeyExtractor; - - @RequestMapping(value = "/patients", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all patients") - public ResponseEntity> getAllPatients( - @ApiParam("Search keyword that applies to ID of the patients") - @RequestParam(required = false) String keyword, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) PatientSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, patientService.getMetaPatients(keyword) - .getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - patientService.getAllPatients(keyword, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/patients", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all patients in a study") - public ResponseEntity> getAllPatientsInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) PatientSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, patientService.getMetaPatientsInStudy(studyId) - .getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - patientService.getAllPatientsInStudy(studyId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/patients/{patientId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get a patient in a study") - public ResponseEntity getPatientInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam(required = true, value = "Patient ID e.g. TCGA-OR-A5J2") - @PathVariable String patientId) throws PatientNotFoundException, StudyNotFoundException { - - return new ResponseEntity<>(patientService.getPatientInStudy(studyId, patientId), HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/patients/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - public ResponseEntity> fetchPatients( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedPatientFilter") PatientFilter interceptedPatientFilter, - @ApiParam(required = true, value = "List of patient identifiers") - @Valid @RequestBody(required = false) PatientFilter patientFilter, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) { - - List studyIds = new ArrayList<>(); - List patientIds = new ArrayList<>(); - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - if (interceptedPatientFilter.getPatientIdentifiers() != null) { - extractStudyAndPatientIds(interceptedPatientFilter, studyIds, patientIds); - } else { - uniqueKeyExtractor.extractUniqueKeys(interceptedPatientFilter.getUniquePatientKeys(), studyIds, patientIds); - } - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, patientService.fetchMetaPatients(studyIds, patientIds) - .getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - if (interceptedPatientFilter.getPatientIdentifiers() != null) { - extractStudyAndPatientIds(interceptedPatientFilter, studyIds, patientIds); - } else { - uniqueKeyExtractor.extractUniqueKeys(interceptedPatientFilter.getUniquePatientKeys(), studyIds, patientIds); - } - //TODO: since we are already extracting the studyIds in the interceptor, we might not need to use the service here - return new ResponseEntity<>( - patientService.fetchPatients(studyIds, patientIds, projection.name()), HttpStatus.OK); - } - } - - private void extractStudyAndPatientIds(PatientFilter patientFilter, List studyIds, List patientIds) { - - for (PatientIdentifier patientIdentifier : patientFilter.getPatientIdentifiers()) { - studyIds.add(patientIdentifier.getStudyId()); - patientIds.add(patientIdentifier.getPatientId()); - } - } -} diff --git a/web/src/main/java/org/cbioportal/web/ReferenceGenomeGeneController.java b/web/src/main/java/org/cbioportal/web/ReferenceGenomeGeneController.java deleted file mode 100644 index b2ae8d04ab6..00000000000 --- a/web/src/main/java/org/cbioportal/web/ReferenceGenomeGeneController.java +++ /dev/null @@ -1,105 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.ReferenceGenomeGene; -import org.cbioportal.service.GeneMemoizerService; -import org.cbioportal.service.ReferenceGenomeGeneService; -import org.cbioportal.service.StaticDataTimestampService; -import org.cbioportal.service.exception.GeneNotFoundException; -import org.cbioportal.web.config.InternalApiTags; -import org.cbioportal.web.config.annotation.InternalApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; - -import javax.validation.constraints.Size; -import java.text.ParseException; -import java.text.SimpleDateFormat; -import java.util.*; -import java.util.stream.Collectors; - -@InternalApi -@RestController -@Validated -@Api(tags = InternalApiTags.REFERENCE_GENOME_GENES, description = " ") -public class ReferenceGenomeGeneController { - private static final int GENE_MAX_PAGE_SIZE = 100000; - private static final String GENE_DEFAULT_PAGE_SIZE = "100000"; - - @Autowired - private ReferenceGenomeGeneService referenceGenomeGeneService; - - @Autowired - private GeneMemoizerService geneMemoizerService; - - /** - * The memoization logic in this method is a temporary fix to make this work until - * Ehcache is working correctly on cbioportal.org. - * This endpoint creates a large response and seems to bloat the webserver's heap - * size, leading to poor performance and crashes. The caching seems to improve - * processor load, heap size and response time. - */ - @RequestMapping(value = "/reference-genome-genes/{genomeName}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all reference genes") - public ResponseEntity> getAllReferenceGenomeGenes( - @ApiParam(required = true, value = "Name of Reference Genome hg19") - @PathVariable String genomeName) { - - List genes = geneMemoizerService.fetchGenes(genomeName); - if (genes == null) { - genes = referenceGenomeGeneService.fetchAllReferenceGenomeGenes(genomeName); - geneMemoizerService.cacheGenes(genes, genomeName); - } - return new ResponseEntity<>(genes, HttpStatus.OK); - } - - @RequestMapping(value = "/reference-genome-genes/{genomeName}/{geneId}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get a gene of a reference genome of interest") - public ResponseEntity getReferenceGenomeGene( - @ApiParam(required = true, value = "Name of Reference Genome hg19") - @PathVariable String genomeName, - @ApiParam(required = true, value = "Entrez Gene ID 207") - @PathVariable Integer geneId) throws GeneNotFoundException { - - return new ResponseEntity<>(referenceGenomeGeneService.getReferenceGenomeGene(geneId, genomeName), HttpStatus.OK); - } - - @RequestMapping(value = "/reference-genome-genes/{genomeName}/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch genes of reference genome of interest") - public ResponseEntity> fetchReferenceGenomeGenes( - @ApiParam(required = true, value = "Name of Reference Genome hg19") - @PathVariable String genomeName, - @ApiParam(required = true, value = "List of Entrez Gene IDs") - @Size(min = 1, max = GENE_MAX_PAGE_SIZE) - @RequestBody List geneIds) { - - if (isInteger(geneIds.get(0))) { - List newIds = geneIds.stream().map(s -> Integer.parseInt(s)).collect(Collectors.toList()); - return new ResponseEntity<>(referenceGenomeGeneService.fetchGenesByGenomeName(newIds, genomeName), HttpStatus.OK); - } else { - return new ResponseEntity<>(referenceGenomeGeneService.fetchGenesByHugoGeneSymbolsAndGenomeName( - geneIds, genomeName), HttpStatus.OK); - } - } - - private boolean isInteger(String s) { - try { - Integer.parseInt(s); - } catch(NumberFormatException | NullPointerException e) { - return false; - } - return true; - } -} - diff --git a/web/src/main/java/org/cbioportal/web/ResourceDataController.java b/web/src/main/java/org/cbioportal/web/ResourceDataController.java deleted file mode 100644 index 0ccd72b9b1f..00000000000 --- a/web/src/main/java/org/cbioportal/web/ResourceDataController.java +++ /dev/null @@ -1,145 +0,0 @@ -package org.cbioportal.web; - -import java.util.List; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; - -import org.cbioportal.model.ResourceData; -import org.cbioportal.service.ResourceDataService; -import org.cbioportal.service.exception.PatientNotFoundException; -import org.cbioportal.service.exception.SampleNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.web.config.InternalApiTags; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.sort.ResourceDataSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.*; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.*; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; - -@InternalApi -@RestController -@Validated -@Api(tags = InternalApiTags.RESOURCE_DATA, description = " ") -public class ResourceDataController { - - public static final int RESOURCE_DATA_MAX_PAGE_SIZE = 10000000; - private static final String RESOURCE_DATA_DEFAULT_PAGE_SIZE = "10000000"; - - @Autowired - private ResourceDataService resourceDataService; - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/samples/{sampleId}/resource-data", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all resource data of a sample in a study") - public ResponseEntity> getAllResourceDataOfSampleInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam(required = true, value = "Sample ID e.g. TCGA-OR-A5J2-01") - @PathVariable String sampleId, - @ApiParam("Resource ID") - @RequestParam(required = false) String resourceId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(RESOURCE_DATA_MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = RESOURCE_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ResourceDataSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws SampleNotFoundException, - StudyNotFoundException { - - if (projection == Projection.META) { - throw new UnsupportedOperationException("Requested API is not implemented yet"); - } else { - return new ResponseEntity<>( - resourceDataService.getAllResourceDataOfSampleInStudy( - studyId, sampleId, resourceId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/patients/{patientId}/resource-data", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all resource data of a patient in a study") - public ResponseEntity> getAllResourceDataOfPatientInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam(required = true, value = "Patient ID e.g. TCGA-OR-A5J2") - @PathVariable String patientId, - @ApiParam("Resource ID") - @RequestParam(required = false) String resourceId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(RESOURCE_DATA_MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = RESOURCE_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ResourceDataSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws PatientNotFoundException, - StudyNotFoundException { - - if (projection == Projection.META) { - throw new UnsupportedOperationException("Requested API is not implemented yet"); - } else { - return new ResponseEntity<>( - resourceDataService.getAllResourceDataOfPatientInStudy( - studyId, patientId, resourceId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/resource-data", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all resource data for a study") - public ResponseEntity> getAllStudyResourceDataInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Resource ID") - @RequestParam(required = false) String resourceId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(RESOURCE_DATA_MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = RESOURCE_DATA_DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ResourceDataSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - throw new UnsupportedOperationException("Requested API is not implemented yet"); - } else { - return new ResponseEntity<>( - resourceDataService.getAllResourceDataForStudy(studyId, resourceId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - -} diff --git a/web/src/main/java/org/cbioportal/web/ResourceDefinitionController.java b/web/src/main/java/org/cbioportal/web/ResourceDefinitionController.java deleted file mode 100644 index 372202aa77d..00000000000 --- a/web/src/main/java/org/cbioportal/web/ResourceDefinitionController.java +++ /dev/null @@ -1,96 +0,0 @@ -package org.cbioportal.web; - -import java.util.List; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; - -import org.cbioportal.model.ResourceDefinition; -import org.cbioportal.service.ResourceDefinitionService; -import org.cbioportal.service.exception.ResourceDefinitionNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.web.config.InternalApiTags; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.*; -import org.cbioportal.web.parameter.sort.ResourceDefinitionSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.*; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.*; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; - -@InternalApi -@RestController -@Validated -@Api(tags = InternalApiTags.RESOURCE_DEFINITIONS, description = " ") -public class ResourceDefinitionController { - - @Autowired - private ResourceDefinitionService resourceDefinitionService; - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/resource-definitions", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all resource definitions in the specified study") - public ResponseEntity> getAllResourceDefinitionsInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) ResourceDefinitionSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - throw new UnsupportedOperationException("Requested API is not implemented yet"); - } else { - return new ResponseEntity<>( - resourceDefinitionService.getAllResourceDefinitionsInStudy(studyId, projection.name(), pageSize, - pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), - HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/resource-definitions/{resourceId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get specified resource definition") - public ResponseEntity getResourceDefinitionInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam(required = true, value= "Resource ID") - @PathVariable String resourceId) - throws StudyNotFoundException, ResourceDefinitionNotFoundException { - - return new ResponseEntity<>(resourceDefinitionService.getResourceDefinition(studyId, resourceId), - HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#studyIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/resource-definitions/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all resource definitions for specified studies") - public ResponseEntity> fetchResourceDefinitions( - @ApiParam(required = true, value = "List of Study IDs") - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @RequestBody List studyIds, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) throws StudyNotFoundException { - - return new ResponseEntity<>(resourceDefinitionService.fetchResourceDefinitions(studyIds, projection.name()), - HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/SampleController.java b/web/src/main/java/org/cbioportal/web/SampleController.java deleted file mode 100644 index d34d1e1abc5..00000000000 --- a/web/src/main/java/org/cbioportal/web/SampleController.java +++ /dev/null @@ -1,288 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.CancerStudy; -import org.cbioportal.model.SampleList; -import org.cbioportal.model.meta.BaseMeta; -import org.cbioportal.model.Sample; -import org.cbioportal.service.SampleListService; -import org.cbioportal.service.StudyService; -import org.cbioportal.service.exception.PatientNotFoundException; -import org.cbioportal.service.exception.SampleListNotFoundException; -import org.cbioportal.service.exception.SampleNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.service.SampleService; -import org.cbioportal.utils.security.AccessLevel; -import org.cbioportal.utils.security.PortalSecurityConfig; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.*; -import org.cbioportal.web.parameter.sort.SampleSortBy; -import org.cbioportal.web.util.UniqueKeyExtractor; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.Valid; -import java.util.*; -import java.util.stream.Collectors; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.SAMPLES, description = " ") -public class SampleController { - - public static final int SAMPLE_MAX_PAGE_SIZE = 10000000; - private static final String SAMPLE_DEFAULT_PAGE_SIZE = "10000000"; - - @Value("${authenticate}") - private String authenticate; - - @Autowired - private SampleService sampleService; - - @Autowired - private SampleListService sampleListService; - - @Autowired - private StudyService studyService; - - @Autowired - private UniqueKeyExtractor uniqueKeyExtractor; - - @RequestMapping(value = "/samples", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all samples matching keyword") - public ResponseEntity> getSamplesByKeyword( - @ApiParam("Search keyword that applies to the study ID") - @RequestParam(required = false) String keyword, - - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) SampleSortBy sortBy, - - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction - ) { - String sort = sortBy == null ? null : sortBy.getOriginalValue(); - List studyIds = null; - if (PortalSecurityConfig.userAuthorizationEnabled(authenticate)) { - /* - If using auth, filter the list of samples returned using the list of study ids the - user has access to. If the user has access to no studies, the endpoint should not 403, - but instead return an empty list. - */ - studyIds = studyService - .getAllStudies( - null, - Projection.SUMMARY.name(), // force to summary so that post filter doesn't NPE - PagingConstants.MAX_PAGE_SIZE, - 0, - null, - direction.name(), - null, - AccessLevel.READ - ) - .stream() - .map(CancerStudy::getCancerStudyIdentifier) - .collect(Collectors.toList()); - } - - if (projection == Projection.META) { - HttpHeaders httpHeaders = new HttpHeaders(); - httpHeaders.add( - HeaderKeyConstants.TOTAL_COUNT, - sampleService.getMetaSamples(keyword, studyIds).getTotalCount().toString()); - return new ResponseEntity<>(httpHeaders, HttpStatus.OK); - } - return new ResponseEntity<>( - sampleService.getAllSamples(keyword, studyIds, projection.name(), pageSize, pageNumber, sort, direction.name()), - HttpStatus.OK - ); - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/samples", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all samples in a study") - public ResponseEntity> getAllSamplesInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(SAMPLE_MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = SAMPLE_DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) SampleSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, sampleService.getMetaSamplesInStudy(studyId) - .getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - sampleService.getAllSamplesInStudy(studyId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/samples/{sampleId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get a sample in a study") - public ResponseEntity getSampleInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam(required = true, value = "Sample ID e.g. TCGA-OR-A5J2-01") - @PathVariable String sampleId) throws SampleNotFoundException, StudyNotFoundException { - - return new ResponseEntity<>(sampleService.getSampleInStudy(studyId, sampleId), HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/patients/{patientId}/samples", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all samples of a patient in a study") - public ResponseEntity> getAllSamplesOfPatientInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam(required = true, value = "Patient ID e.g. TCGA-OR-A5J2") - @PathVariable String patientId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(SAMPLE_MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = SAMPLE_DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) SampleSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws PatientNotFoundException, - StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, - sampleService.getMetaSamplesOfPatientInStudy(studyId, patientId).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - sampleService.getAllSamplesOfPatientInStudy(studyId, patientId, projection.name(), pageSize, - pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/samples/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch samples by ID") - public ResponseEntity> fetchSamples( - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedSampleFilter") SampleFilter interceptedSampleFilter, - @ApiParam(required = true, value = "List of sample identifiers") - @Valid @RequestBody(required = false) SampleFilter sampleFilter, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) throws SampleListNotFoundException { - - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - BaseMeta baseMeta; - - if (interceptedSampleFilter.getSampleListIds() != null) { - baseMeta = sampleService.fetchMetaSamples(interceptedSampleFilter.getSampleListIds()); - } else { - if (interceptedSampleFilter.getSampleIdentifiers() != null) { - extractStudyAndSampleIds(interceptedSampleFilter, studyIds, sampleIds); - } else { - uniqueKeyExtractor.extractUniqueKeys(interceptedSampleFilter.getUniqueSampleKeys(), studyIds, sampleIds); - } - baseMeta = sampleService.fetchMetaSamples(studyIds, sampleIds); - } - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, baseMeta.getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - List samples; - if (interceptedSampleFilter.getSampleListIds() != null) { - List sampleListIds = interceptedSampleFilter.getSampleListIds(); - - samples = new ArrayList(); - - for (String sampleListId : sampleListIds) { - // check that all sample lists exist (this method throws an exception if one does not) - sampleListService.getSampleList(sampleListId); - } - - for (String sampleListId : sampleListIds) { - // fetch by sampleId so that we get cache at level of id instead list of ids - samples.addAll( - sampleService.fetchSamples(Arrays.asList(sampleListId), projection.name()) - ); - } - - //samples = sampleService.fetchSamples(sampleListIds, projection.name()); - - } else { - if (interceptedSampleFilter.getSampleIdentifiers() != null) { - extractStudyAndSampleIds(interceptedSampleFilter, studyIds, sampleIds); - } else { - uniqueKeyExtractor.extractUniqueKeys(interceptedSampleFilter.getUniqueSampleKeys(), studyIds, sampleIds); - } - samples = sampleService.fetchSamples(studyIds, sampleIds, projection.name()); - } - - return new ResponseEntity<>(samples, HttpStatus.OK); - } - } - - private void extractStudyAndSampleIds(SampleFilter sampleFilter, List studyIds, List sampleIds) { - - for (SampleIdentifier sampleIdentifier : sampleFilter.getSampleIdentifiers()) { - studyIds.add(sampleIdentifier.getStudyId()); - sampleIds.add(sampleIdentifier.getSampleId()); - } - } -} diff --git a/web/src/main/java/org/cbioportal/web/SampleListController.java b/web/src/main/java/org/cbioportal/web/SampleListController.java deleted file mode 100644 index 92d4807eec6..00000000000 --- a/web/src/main/java/org/cbioportal/web/SampleListController.java +++ /dev/null @@ -1,143 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.SampleList; -import org.cbioportal.service.SampleListService; -import org.cbioportal.service.exception.SampleListNotFoundException; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.web.config.PublicApiTags; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.sort.SampleListSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import javax.validation.constraints.Size; -import java.util.List; - -@PublicApi -@RestController -@Validated -@Api(tags = PublicApiTags.SAMPLE_LISTS, description = " ") -public class SampleListController { - - @Autowired - private SampleListService sampleListService; - - @RequestMapping(value = "/sample-lists", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all sample lists") - public ResponseEntity> getAllSampleLists( - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) SampleListSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, sampleListService.getMetaSampleLists() - .getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - sampleListService.getAllSampleLists(projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#sampleListId, 'SampleListId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/sample-lists/{sampleListId}", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get sample list") - public ResponseEntity getSampleList( - @ApiParam(required = true, value = "Sample List ID e.g. acc_tcga_all") - @PathVariable String sampleListId) throws SampleListNotFoundException { - - return new ResponseEntity<>(sampleListService.getSampleList(sampleListId), HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/sample-lists", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all sample lists in a study") - public ResponseEntity> getAllSampleListsInStudy( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) SampleListSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, sampleListService - .getMetaSampleListsInStudy(studyId).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - sampleListService.getAllSampleListsInStudy(studyId, projection.name(), pageSize, pageNumber, - sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } - - @PreAuthorize("hasPermission(#sampleListId, 'SampleListId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/sample-lists/{sampleListId}/sample-ids", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all sample IDs in a sample list") - public ResponseEntity> getAllSampleIdsInSampleList( - @ApiParam(required = true, value = "Sample List ID e.g. acc_tcga_all") - @PathVariable String sampleListId) throws SampleListNotFoundException { - - return new ResponseEntity<>(sampleListService.getAllSampleIdsInSampleList(sampleListId), HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#sampleListIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/sample-lists/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch sample lists by ID") - public ResponseEntity> fetchSampleLists( - @ApiParam(required = true, value = "List of sample list IDs") - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @RequestBody List sampleListIds, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection) { - - return new ResponseEntity<>(sampleListService.fetchSampleLists(sampleListIds, projection.name()), HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/ServerStatusController.java b/web/src/main/java/org/cbioportal/web/ServerStatusController.java deleted file mode 100644 index 6a24a017581..00000000000 --- a/web/src/main/java/org/cbioportal/web/ServerStatusController.java +++ /dev/null @@ -1,34 +0,0 @@ -package org.cbioportal.web; - -import org.cbioportal.service.ServerStatusService; -import org.cbioportal.service.impl.ServerStatusServiceImpl.ServerStatusMessage; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.config.annotation.PublicApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; - -@PublicApi -@RestController -@Validated -@Api(tags = "Server running status", description = "This end point does not require authentication") -public class ServerStatusController { - - @Autowired - private ServerStatusService serverStatusService; - - @RequestMapping(value = "/health", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get the running status of the server") - public ResponseEntity getServerStatus() { - return new ResponseEntity<>(serverStatusService.getServerStatus(), HttpStatus.OK); - } - -} diff --git a/web/src/main/java/org/cbioportal/web/SignificantCopyNumberRegionController.java b/web/src/main/java/org/cbioportal/web/SignificantCopyNumberRegionController.java deleted file mode 100644 index b5d55648da4..00000000000 --- a/web/src/main/java/org/cbioportal/web/SignificantCopyNumberRegionController.java +++ /dev/null @@ -1,74 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.Gistic; -import org.cbioportal.service.SignificantCopyNumberRegionService; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.sort.SignificantCopyNumberRegionSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import java.util.List; - -@InternalApi -@RestController -@Validated -@Api(tags = "Significant Copy Number Regions", description = " ") -public class SignificantCopyNumberRegionController { - - @Autowired - private SignificantCopyNumberRegionService significantCopyNumberRegionService; - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/significant-copy-number-regions", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get significant copy number alteration regions in a study") - public ResponseEntity> getSignificantCopyNumberRegions( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) SignificantCopyNumberRegionSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, - significantCopyNumberRegionService.getMetaSignificantCopyNumberRegions(studyId).getTotalCount() - .toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - significantCopyNumberRegionService.getSignificantCopyNumberRegions(studyId, projection.name(), pageSize, - pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } -} diff --git a/web/src/main/java/org/cbioportal/web/SignificantlyMutatedGenesController.java b/web/src/main/java/org/cbioportal/web/SignificantlyMutatedGenesController.java deleted file mode 100644 index bdae59293e1..00000000000 --- a/web/src/main/java/org/cbioportal/web/SignificantlyMutatedGenesController.java +++ /dev/null @@ -1,73 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.MutSig; -import org.cbioportal.service.SignificantlyMutatedGeneService; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.Direction; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.PagingConstants; -import org.cbioportal.web.parameter.Projection; -import org.cbioportal.web.parameter.sort.SignificantlyMutatedGeneSortBy; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import java.util.List; - -@InternalApi -@RestController -@Validated -@Api(tags = "Significantly Mutated Genes", description = " ") -public class SignificantlyMutatedGenesController { - - @Autowired - private SignificantlyMutatedGeneService significantlyMutatedGeneService; - - @PreAuthorize("hasPermission(#studyId, 'CancerStudyId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/studies/{studyId}/significantly-mutated-genes", method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get significantly mutated genes in a study") - public ResponseEntity> getSignificantlyMutatedGenes( - @ApiParam(required = true, value = "Study ID e.g. acc_tcga") - @PathVariable String studyId, - @ApiParam("Level of detail of the response") - @RequestParam(defaultValue = "SUMMARY") Projection projection, - @ApiParam("Page size of the result list") - @Max(PagingConstants.MAX_PAGE_SIZE) - @Min(PagingConstants.MIN_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_SIZE) Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) Integer pageNumber, - @ApiParam("Name of the property that the result list is sorted by") - @RequestParam(required = false) SignificantlyMutatedGeneSortBy sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") Direction direction) throws StudyNotFoundException { - - if (projection == Projection.META) { - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, - significantlyMutatedGeneService.getMetaSignificantlyMutatedGenes(studyId).getTotalCount().toString()); - return new ResponseEntity<>(responseHeaders, HttpStatus.OK); - } else { - return new ResponseEntity<>( - significantlyMutatedGeneService.getSignificantlyMutatedGenes(studyId, projection.name(), pageSize, - pageNumber, sortBy == null ? null : sortBy.getOriginalValue(), direction.name()), HttpStatus.OK); - } - } -} diff --git a/web/src/main/java/org/cbioportal/web/StaticDataTimestampController.java b/web/src/main/java/org/cbioportal/web/StaticDataTimestampController.java deleted file mode 100644 index d8b0fa68667..00000000000 --- a/web/src/main/java/org/cbioportal/web/StaticDataTimestampController.java +++ /dev/null @@ -1,33 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import org.cbioportal.service.StaticDataTimestampService; -import org.cbioportal.web.config.annotation.InternalApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; - -import java.util.*; - -@InternalApi -@RestController -@Validated -@Api(tags = "Timestamps", description = " ") -public class StaticDataTimestampController { - public static final List TIMESTAMP_TABLES = Arrays.asList("gene", "reference_genome_gene"); - @Autowired - private StaticDataTimestampService service; - - @RequestMapping(value = "/timestamps", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get the last time each static resource was updated") - public ResponseEntity> getAllTimestamps() { - return new ResponseEntity<>(service.getTimestamps(TIMESTAMP_TABLES), HttpStatus.OK); - } - -} diff --git a/web/src/main/java/org/cbioportal/web/StudyViewController.java b/web/src/main/java/org/cbioportal/web/StudyViewController.java deleted file mode 100644 index f4ca464cf50..00000000000 --- a/web/src/main/java/org/cbioportal/web/StudyViewController.java +++ /dev/null @@ -1,1078 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; - -import org.apache.commons.collections4.CollectionUtils; -import org.apache.commons.lang3.math.NumberUtils; -import org.apache.commons.lang3.tuple.ImmutablePair; -import org.apache.commons.math3.stat.correlation.PearsonsCorrelation; -import org.apache.commons.math3.stat.correlation.SpearmansCorrelation; -import org.apache.commons.math3.util.Pair; -import org.cbioportal.model.*; -import org.cbioportal.service.*; -import org.cbioportal.service.exception.StudyNotFoundException; -import org.cbioportal.service.util.ClinicalAttributeUtil; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.model.AlterationFilter; -import org.cbioportal.web.parameter.*; -import org.cbioportal.web.util.*; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.cache.annotation.Cacheable; -import org.springframework.context.ApplicationContext; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestAttribute; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; -import springfox.documentation.annotations.ApiIgnore; - -import javax.annotation.PostConstruct; -import javax.validation.Valid; -import javax.validation.constraints.Max; -import javax.validation.constraints.Min; -import java.math.BigDecimal; -import java.util.*; -import java.util.function.Function; -import java.util.stream.Collectors; - -@InternalApi -@RestController -@Validated -@Api(tags = "Study View", description = " ") -public class StudyViewController { - - public static final int CLINICAL_TAB_MAX_PAGE_SIZE = 1000000; - - @Autowired - private ApplicationContext applicationContext; - StudyViewController instance; - @PostConstruct - private void init() { - instance = applicationContext.getBean(StudyViewController.class); - } - - @Autowired - private StudyViewFilterApplier studyViewFilterApplier; - @Autowired - private ClinicalDataService clinicalDataService; - @Autowired - private ClinicalDataFetcher clinicalDataFetcher; - @Autowired - private SampleService sampleService; - @Autowired - private PatientService patientService; - @Autowired - private StudyViewFilterUtil studyViewFilterUtil; - @Autowired - private ClinicalAttributeService clinicalAttributeService; - @Autowired - private ViolinPlotService violinPlotService; - @Autowired - private ClinicalAttributeUtil clinicalAttributeUtil; - @Autowired - private SampleListService sampleListService; - @Autowired - private StudyViewService studyViewService; - @Autowired - private ClinicalDataBinUtil clinicalDataBinUtil; - @Autowired - private ClinicalEventService clinicalEventService; - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/clinical-data-counts/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch clinical data counts by study view filter") - public ResponseEntity> fetchClinicalDataCounts( - @ApiParam(required = true, value = "Clinical data count filter") - @Valid @RequestBody(required = false) ClinicalDataCountFilter clinicalDataCountFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedClinicalDataCountFilter") ClinicalDataCountFilter interceptedClinicalDataCountFilter) { - - List attributes = interceptedClinicalDataCountFilter.getAttributes(); - StudyViewFilter studyViewFilter = interceptedClinicalDataCountFilter.getStudyViewFilter(); - - if (attributes.size() == 1) { - studyViewFilterUtil.removeSelfFromFilter(attributes.get(0).getAttributeId(), studyViewFilter); - } - boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(studyViewFilter); - List result = - instance.cachedClinicalDataCounts(interceptedClinicalDataCountFilter,singleStudyUnfiltered); - return new ResponseEntity<>(result, HttpStatus.OK); - - } - - @Cacheable( - cacheResolver = "staticRepositoryCacheOneResolver", - condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" - ) - public List cachedClinicalDataCounts( - ClinicalDataCountFilter interceptedClinicalDataCountFilter, boolean singleStudyUnfiltered - ) { - List attributes = interceptedClinicalDataCountFilter.getAttributes(); - StudyViewFilter studyViewFilter = interceptedClinicalDataCountFilter.getStudyViewFilter(); - if (attributes.size() == 1) { - studyViewFilterUtil.removeSelfFromFilter(attributes.get(0).getAttributeId(), studyViewFilter); - } - List filteredSampleIdentifiers = studyViewFilterApplier.apply(studyViewFilter); - - if (filteredSampleIdentifiers.isEmpty()) { - return new ArrayList<>(); - } - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, studyIds, sampleIds); - - List result = clinicalDataService.fetchClinicalDataCounts( - studyIds, sampleIds, attributes.stream().map(a -> a.getAttributeId()).collect(Collectors.toList())); - - return result; - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/clinical-data-bin-counts/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch clinical data bin counts by study view filter") - public ResponseEntity> fetchClinicalDataBinCounts( - @ApiParam("Method for data binning") - @RequestParam(defaultValue = "DYNAMIC") DataBinMethod dataBinMethod, - @ApiParam(required = true, value = "Clinical data bin count filter") - @Valid @RequestBody(required = false) ClinicalDataBinCountFilter clinicalDataBinCountFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedClinicalDataBinCountFilter") ClinicalDataBinCountFilter interceptedClinicalDataBinCountFilter - ) { - StudyViewFilter studyViewFilter = clinicalDataBinUtil.removeSelfFromFilter(interceptedClinicalDataBinCountFilter); - boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(studyViewFilter); - List clinicalDataBins = - instance.cachableFetchClinicalDataBinCounts(dataBinMethod, interceptedClinicalDataBinCountFilter, singleStudyUnfiltered); - - return new ResponseEntity<>(clinicalDataBins, HttpStatus.OK); - } - - @Cacheable( - cacheResolver = "staticRepositoryCacheOneResolver", - condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" - ) - public List cachableFetchClinicalDataBinCounts( - DataBinMethod dataBinMethod, - ClinicalDataBinCountFilter interceptedClinicalDataBinCountFilter, - boolean singleStudyUnfiltered - ) { - return clinicalDataBinUtil.fetchClinicalDataBinCounts( - dataBinMethod, - interceptedClinicalDataBinCountFilter, - // we don't need to remove filter again since we already did it in the previous step - false - ); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/custom-data-bin-counts/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch custom data bin counts by study view filter") - public ResponseEntity> fetchCustomDataBinCounts( - @ApiParam("Method for data binning") - @RequestParam(defaultValue = "DYNAMIC") DataBinMethod dataBinMethod, - @ApiParam(required = true, value = "Clinical data bin count filter") - @Valid @RequestBody(required = false) ClinicalDataBinCountFilter clinicalDataBinCountFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedClinicalDataBinCountFilter") ClinicalDataBinCountFilter interceptedClinicalDataBinCountFilter - ) { - // TODO code shared with ClinicalDataController.fetchCustomDataCounts - List attributes = interceptedClinicalDataBinCountFilter.getAttributes(); - StudyViewFilter studyViewFilter = interceptedClinicalDataBinCountFilter.getStudyViewFilter(); - if (attributes.size() == 1) { - studyViewFilterUtil.removeSelfCustomDataFromFilter(attributes.get(0).getAttributeId(), studyViewFilter); - } - List filteredSampleIdentifiers = studyViewFilterApplier.apply(studyViewFilter); - - if (filteredSampleIdentifiers.isEmpty()) { - return new ResponseEntity<>(new ArrayList<>(), HttpStatus.OK); - } - - final List clinicalDataBins = clinicalDataBinUtil.fetchCustomDataBinCounts(dataBinMethod, interceptedClinicalDataBinCountFilter, false); - - return new ResponseEntity<>(clinicalDataBins, HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection',T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/mutated-genes/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch mutated genes by study view filter") - public ResponseEntity> fetchMutatedGenes( - @ApiParam(required = true, value = "Study view filter") - @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter - ) throws StudyNotFoundException { - boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); - List alterationCountByGenes = instance.cachedFetchMutatedGenes(interceptedStudyViewFilter, singleStudyUnfiltered); - return new ResponseEntity<>(alterationCountByGenes, HttpStatus.OK); - } - - @Cacheable( - cacheResolver = "staticRepositoryCacheOneResolver", - condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" - ) - public List cachedFetchMutatedGenes( - StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered - ) throws StudyNotFoundException { - AlterationFilter annotationFilters = interceptedStudyViewFilter.getAlterationFilter(); - - List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); - List alterationCountByGenes = new ArrayList<>(); - if(CollectionUtils.isNotEmpty(sampleIdentifiers)) { - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - studyViewFilterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); - alterationCountByGenes = studyViewService.getMutationAlterationCountByGenes(studyIds, sampleIds, annotationFilters); - } - return alterationCountByGenes; - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/structuralvariant-genes/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch structural variant genes by study view filter") - public ResponseEntity> fetchStructuralVariantGenes( - @ApiParam(required = true, value = "Study view filter") - @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. This attribute is needed for the @PreAuthorize tag above. - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. - @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter - ) throws StudyNotFoundException { - - boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); - List alterationCountByGenes = - instance.cacheableFetchStructuralVariantGenes(interceptedStudyViewFilter, singleStudyUnfiltered); - return new ResponseEntity<>(alterationCountByGenes, HttpStatus.OK); - } - - @Cacheable( - cacheResolver = "staticRepositoryCacheOneResolver", - condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" - ) - public List cacheableFetchStructuralVariantGenes( - StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered - ) throws StudyNotFoundException { - AlterationFilter annotationFilters = interceptedStudyViewFilter.getAlterationFilter(); - - List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); - List alterationCountByGenes = new ArrayList<>(); - if(CollectionUtils.isNotEmpty(sampleIdentifiers)) { - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - studyViewFilterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); - alterationCountByGenes = studyViewService.getStructuralVariantAlterationCountByGenes(studyIds, sampleIds, annotationFilters); - } - return alterationCountByGenes; - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/structuralvariant-counts/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch structural variant genes by study view filter") - public ResponseEntity> fetchStructuralVariantCounts( - @ApiParam(required = true, value = "Study view filter") - @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. This attribute is needed for the @PreAuthorize tag above. - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. - @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter - ) throws StudyNotFoundException { - - boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); - List alterationCountByStructuralVariants = - instance.cacheableFetchStructuralVariantCounts(interceptedStudyViewFilter, singleStudyUnfiltered); - return new ResponseEntity<>(alterationCountByStructuralVariants, HttpStatus.OK); - } - - @Cacheable( - cacheResolver = "staticRepositoryCacheOneResolver", - condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" - ) - public List cacheableFetchStructuralVariantCounts( - StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered - ) throws StudyNotFoundException { - - List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); - if(CollectionUtils.isNotEmpty(sampleIdentifiers)) { - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - studyViewFilterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); - return studyViewService.getStructuralVariantAlterationCounts(studyIds, sampleIds, interceptedStudyViewFilter.getAlterationFilter()); - } - return new ArrayList<>(); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/cna-genes/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch CNA genes by study view filter") - public ResponseEntity> fetchCNAGenes( - @ApiParam(required = true, value = "Study view filter") - @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter - ) throws StudyNotFoundException { - boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); - List copyNumberCountByGenes = instance.cacheableFetchCNAGenes(interceptedStudyViewFilter, singleStudyUnfiltered); - return new ResponseEntity<>(copyNumberCountByGenes, HttpStatus.OK); - } - - @Cacheable( - cacheResolver = "staticRepositoryCacheOneResolver", - condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" - ) - public List cacheableFetchCNAGenes(StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered) throws StudyNotFoundException { - AlterationFilter alterationFilter = interceptedStudyViewFilter.getAlterationFilter(); - - List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); - List copyNumberCountByGenes = new ArrayList<>(); - if(CollectionUtils.isNotEmpty(sampleIdentifiers)) { - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - studyViewFilterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); - copyNumberCountByGenes = studyViewService.getCNAAlterationCountByGenes(studyIds, sampleIds, alterationFilter); - } - return copyNumberCountByGenes; - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/filtered-samples/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch sample IDs by study view filter") - public ResponseEntity> fetchFilteredSamples( - @ApiParam("Whether to negate the study view filters") - @RequestParam(defaultValue = "false") Boolean negateFilters, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter, - @ApiParam(required = true, value = "Study view filter") - @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter) { - - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - - studyViewFilterUtil.extractStudyAndSampleIds( - studyViewFilterApplier.apply(interceptedStudyViewFilter, negateFilters), studyIds, sampleIds); - - List result = new ArrayList<>(); - if (!sampleIds.isEmpty()) { - result = sampleService.fetchSamples(studyIds, sampleIds, Projection.ID.name()); - } - return new ResponseEntity<>(result, HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/molecular-profile-sample-counts/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch sample counts by study view filter") - public ResponseEntity> fetchMolecularProfileSampleCounts( - @ApiParam(required = true, value = "Study view filter") - @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter - ) - { - boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); - List sampleCounts = instance.cacheableFetchMolecularProfileSampleCounts(interceptedStudyViewFilter, singleStudyUnfiltered); - return new ResponseEntity<>(sampleCounts, HttpStatus.OK); - } - - @Cacheable( - cacheResolver = "staticRepositoryCacheOneResolver", - condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" - ) - public List cacheableFetchMolecularProfileSampleCounts( - StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered - ) { - List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); - List genomicDataCounts = new ArrayList<>(); - if(CollectionUtils.isNotEmpty(sampleIdentifiers)) { - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - studyViewFilterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); - genomicDataCounts = studyViewService.getGenomicDataCounts(studyIds, sampleIds); - } - return genomicDataCounts; - } - - private static boolean isLogScalePossibleForAttribute(String clinicalAttributeId) { - return clinicalAttributeId.equals("MUTATION_COUNT"); - } - - private static double logScale(double val) { - return Math.log(1+val); - } - - private static double parseValueLog(ClinicalData c) { - return StudyViewController.logScale(Double.parseDouble(c.getAttrValue())); - } - - private static double parseValueLinear(ClinicalData c) { - return Double.parseDouble(c.getAttrValue()); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/clinical-data-density-plot/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch clinical data density plot bins by study view filter") - @Validated - public ResponseEntity fetchClinicalDataDensityPlot( - @ApiParam(required = true, value = "Clinical Attribute ID of the X axis") - @RequestParam String xAxisAttributeId, - @ApiParam("Number of the bins in X axis") - @RequestParam(defaultValue = "50") Integer xAxisBinCount, - @ApiParam("Starting point of the X axis, if different than smallest value") - @RequestParam(required = false) BigDecimal xAxisStart, - @ApiParam("Starting point of the X axis, if different than largest value") - @RequestParam(required = false) BigDecimal xAxisEnd, - @ApiParam(required = true, value = "Clinical Attribute ID of the Y axis") - @RequestParam String yAxisAttributeId, - @ApiParam("Number of the bins in Y axis") - @RequestParam(defaultValue = "50") Integer yAxisBinCount, - @ApiParam("Starting point of the Y axis, if different than smallest value") - @RequestParam(required = false) BigDecimal yAxisStart, - @ApiParam("Starting point of the Y axis, if different than largest value") - @RequestParam(required = false) BigDecimal yAxisEnd, - @ApiParam(value="Use log scale for X axis") - @RequestParam(required = false, defaultValue = "false") Boolean xAxisLogScale, - @ApiParam(value="Use log scale for Y axis", defaultValue = "false") - @RequestParam(required = false, defaultValue = "false") Boolean yAxisLogScale, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter, - @ApiParam(required = true, value = "Study view filter") - @RequestBody(required = false) StudyViewFilter studyViewFilter) { - - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - studyViewFilterUtil.extractStudyAndSampleIds(studyViewFilterApplier.apply(interceptedStudyViewFilter), studyIds, sampleIds); - DensityPlotData result = new DensityPlotData(); - result.setBins(new ArrayList<>()); - if (sampleIds.isEmpty()) { - return new ResponseEntity<>(result, HttpStatus.OK); - } - - List sampleAttributeIds = new ArrayList<>(); - List patientAttributeIds = new ArrayList<>(); - - List clinicalAttributes = clinicalAttributeService - .getClinicalAttributesByStudyIdsAndAttributeIds(studyIds, - Arrays.asList(xAxisAttributeId, yAxisAttributeId)); - - clinicalAttributeUtil.extractCategorizedClinicalAttributes(clinicalAttributes, sampleAttributeIds, patientAttributeIds, patientAttributeIds); - - List patientIds = new ArrayList<>(); - List studyIdsOfPatients = new ArrayList<>(); - Map>> patientToSamples = null; - - - if (CollectionUtils.isNotEmpty(patientAttributeIds)) { - List samples = sampleService.fetchSamples(studyIds, sampleIds, Projection.DETAILED.name()); - List patients = patientService.getPatientsOfSamples(studyIds, sampleIds); - patientIds = patients.stream().map(Patient::getStableId).collect(Collectors.toList()); - studyIdsOfPatients = patients.stream().map(Patient::getCancerStudyIdentifier).collect(Collectors.toList()); - patientToSamples = samples.stream().collect( - Collectors.groupingBy(Sample::getPatientStableId, Collectors.groupingBy(Sample::getCancerStudyIdentifier)) - ); - } - - List clinicalDataList = clinicalDataFetcher.fetchClinicalData( - studyIds, sampleIds, patientIds, studyIdsOfPatients, sampleAttributeIds, patientAttributeIds, null - ); - - List sampleClinicalDataList; - // put all clinical data into sample form - if (CollectionUtils.isNotEmpty(patientAttributeIds)) { - sampleClinicalDataList = new ArrayList<>(); - for (ClinicalData d: clinicalDataList) { - if (d.getSampleId() == null) { - // null sample id means its a patient data, - // we need to distribute the value to samples - List samplesForPatient = patientToSamples.get( - d.getPatientId() - ).get(d.getStudyId()); - if (samplesForPatient != null) { - for (Sample s: samplesForPatient) { - ClinicalData newData = new ClinicalData(); - newData.setAttrId(d.getAttrId()); - newData.setPatientId(d.getPatientId()); - newData.setStudyId(d.getStudyId()); - newData.setAttrValue(d.getAttrValue()); - newData.setSampleId(s.getStableId()); - sampleClinicalDataList.add(newData); - } - } else { - // patient has no samples - this shouldn't happen and could affect the integrity - // of the data analysis - return new ResponseEntity<>(null, HttpStatus.INTERNAL_SERVER_ERROR); - } - } else { - // if its a sample data, just add it to the list - sampleClinicalDataList.add(d); - } - } - } else { - sampleClinicalDataList = clinicalDataList; - } - - // clinicalDataMap is a map sampleId->studyId->data - Map>> clinicalDataMap = sampleClinicalDataList.stream().collect(Collectors.groupingBy(ClinicalData::getSampleId, - Collectors.groupingBy(ClinicalData::getStudyId))); - - List filteredClinicalDataList = new ArrayList<>(); - clinicalDataMap.forEach((k, v) -> v.forEach((m, n) -> { - if ( - // n.size() == 2 means we have clinical data for the sample for both of the queried attributes - n.size() == 2 && - // check if both of the sample data are numerical - NumberUtils.isCreatable(n.get(0).getAttrValue()) && NumberUtils.isCreatable(n.get(1).getAttrValue())) { - filteredClinicalDataList.addAll(n); - } - })); - if (filteredClinicalDataList.isEmpty()) { - return new ResponseEntity<>(result, HttpStatus.OK); - } - - Map> partition = filteredClinicalDataList.stream().collect( - Collectors.partitioningBy(c -> c.getAttrId().equals(xAxisAttributeId))); - - boolean useXLogScale = xAxisLogScale && StudyViewController.isLogScalePossibleForAttribute(xAxisAttributeId); - boolean useYLogScale = yAxisLogScale && StudyViewController.isLogScalePossibleForAttribute(yAxisAttributeId); - - double[] xValues = partition.get(true).stream().mapToDouble( - useXLogScale ? StudyViewController::parseValueLog : StudyViewController::parseValueLinear - ).toArray(); - double[] yValues = partition.get(false).stream().mapToDouble( - useYLogScale ? StudyViewController::parseValueLog : StudyViewController::parseValueLinear - ).toArray(); - double[] xValuesCopy = Arrays.copyOf(xValues, xValues.length); - double[] yValuesCopy = Arrays.copyOf(yValues, yValues.length); - Arrays.sort(xValuesCopy); - Arrays.sort(yValuesCopy); - - double xAxisStartValue = xAxisStart == null ? xValuesCopy[0] : - (useXLogScale ? StudyViewController.logScale(xAxisStart.doubleValue()) : xAxisStart.doubleValue()); - double xAxisEndValue = xAxisEnd == null ? xValuesCopy[xValuesCopy.length - 1] : - (useXLogScale ? StudyViewController.logScale(xAxisEnd.doubleValue()) : xAxisEnd.doubleValue()); - double yAxisStartValue = yAxisStart == null ? yValuesCopy[0] : - (useYLogScale ? StudyViewController.logScale(yAxisStart.doubleValue()) : yAxisStart.doubleValue()); - double yAxisEndValue = yAxisEnd == null ? yValuesCopy[yValuesCopy.length - 1] : - (useYLogScale ? StudyViewController.logScale(yAxisEnd.doubleValue()) : yAxisEnd.doubleValue()); - double xAxisBinInterval = (xAxisEndValue - xAxisStartValue) / xAxisBinCount; - double yAxisBinInterval = (yAxisEndValue - yAxisStartValue) / yAxisBinCount; - List bins = result.getBins(); - for (int i = 0; i < xAxisBinCount; i++) { - for (int j = 0; j < yAxisBinCount; j++) { - DensityPlotBin densityPlotBin = new DensityPlotBin(); - densityPlotBin.setBinX(new BigDecimal(xAxisStartValue + (i * xAxisBinInterval))); - densityPlotBin.setBinY(new BigDecimal(yAxisStartValue + (j * yAxisBinInterval))); - densityPlotBin.setCount(0); - bins.add(densityPlotBin); - } - } - - for (int i = 0; i < xValues.length; i++) { - double xValue = xValues[i]; - double yValue = yValues[i]; - int xBinIndex = (int) ((xValue - xAxisStartValue) / xAxisBinInterval); - int yBinIndex = (int) ((yValue - yAxisStartValue) / yAxisBinInterval); - int index = (int) (((xBinIndex - (xBinIndex == xAxisBinCount ? 1 : 0)) * yAxisBinCount) + - (yBinIndex - (yBinIndex == yAxisBinCount ? 1 : 0))); - DensityPlotBin densityPlotBin = bins.get(index); - densityPlotBin.setCount(densityPlotBin.getCount() + 1); - BigDecimal xValueBigDecimal = new BigDecimal(xValue); - BigDecimal yValueBigDecimal = new BigDecimal(yValue); - if (densityPlotBin.getMinX() != null) { - if (densityPlotBin.getMinX().compareTo(xValueBigDecimal) > 0) { - densityPlotBin.setMinX(xValueBigDecimal); - } - } else { - densityPlotBin.setMinX(xValueBigDecimal); - } - if (densityPlotBin.getMaxX() != null) { - if (densityPlotBin.getMaxX().compareTo(xValueBigDecimal) < 0) { - densityPlotBin.setMaxX(xValueBigDecimal); - } - } else { - densityPlotBin.setMaxX(xValueBigDecimal); - } - if (densityPlotBin.getMinY() != null) { - if (densityPlotBin.getMinY().compareTo(yValueBigDecimal) > 0) { - densityPlotBin.setMinY(yValueBigDecimal); - } - } else { - densityPlotBin.setMinY(yValueBigDecimal); - } - if (densityPlotBin.getMaxY() != null) { - if (densityPlotBin.getMaxY().compareTo(yValueBigDecimal) < 0) { - densityPlotBin.setMaxY(yValueBigDecimal); - } - } else { - densityPlotBin.setMaxY(yValueBigDecimal); - } - } - - if (xValues.length > 1) { - // need at least 2 entries in each to compute correlation - result.setPearsonCorr(new PearsonsCorrelation().correlation(xValues, yValues)); - result.setSpearmanCorr(new SpearmansCorrelation().correlation(xValues, yValues)); - } else { - // if less than 1 entry, just set 0 correlation - result.setSpearmanCorr(0.0); - result.setPearsonCorr(0.0); - } - - // filter out empty bins - result.setBins(result.getBins().stream().filter((bin)->(bin.getCount() > 0)).collect(Collectors.toList())); - - return new ResponseEntity<>(result, HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/clinical-data-violin-plots/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch violin plot curves per categorical clinical data value, filtered by study view filter") - public ResponseEntity fetchClinicalDataViolinPlots( - @ApiParam(required = true, value = "Clinical Attribute ID of the categorical attribute") - @RequestParam String categoricalAttributeId, - @ApiParam(required = true, value = "Clinical Attribute ID of the numerical attribute") - @RequestParam String numericalAttributeId, - @ApiParam("Starting point of the violin plot axis, if different than smallest value") - @RequestParam(required = false) BigDecimal axisStart, - @ApiParam("Ending point of the violin plot axis, if different than largest value") - @RequestParam(required = false) BigDecimal axisEnd, - @ApiParam("Number of points in the curve") - @RequestParam(required = false, defaultValue = "100") BigDecimal numCurvePoints, - @ApiParam(value="Use log scale for the numerical attribute") - @RequestParam(required = false, defaultValue = "false") Boolean logScale, - @ApiParam(value="Sigma stepsize multiplier") - @RequestParam(required = false, defaultValue = "1") BigDecimal sigmaMultiplier, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter, - @ApiParam(required = true, value = "Study view filter") - @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter) { - - ClinicalViolinPlotData result = new ClinicalViolinPlotData(); - - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - // first get samples that are filtered by all current filters - this will give us - // the by-row sample counts - studyViewFilterUtil.extractStudyAndSampleIds(studyViewFilterApplier.apply(interceptedStudyViewFilter), studyIds, sampleIds); - List filteredSamples = sampleService.fetchSamples(studyIds, sampleIds, Projection.DETAILED.name()); - - List studyIdsWithoutNumericalFilter = new ArrayList<>(); - List sampleIdsWithoutNumericalFilter = new ArrayList<>(); - // next, get samples that are filtered without the numerical filter - this will - // give us the violin plot data - if (interceptedStudyViewFilter.getClinicalDataFilters() != null) { - // Remove numerical clinical data filter, if there is one - interceptedStudyViewFilter.getClinicalDataFilters().stream() - .filter(f->f.getAttributeId().equals(numericalAttributeId)) - .findAny() - .ifPresent(f->interceptedStudyViewFilter.getClinicalDataFilters().remove(f)); - } - studyViewFilterUtil.extractStudyAndSampleIds( - studyViewFilterApplier.apply(interceptedStudyViewFilter), - studyIdsWithoutNumericalFilter, - sampleIdsWithoutNumericalFilter - ); - - if (sampleIds.isEmpty()) { - return new ResponseEntity<>(result, HttpStatus.OK); - } - - List sampleAttributeIds = new ArrayList<>(); - List patientAttributeIds = new ArrayList<>(); - - List clinicalAttributes = clinicalAttributeService - .getClinicalAttributesByStudyIdsAndAttributeIds(studyIds, - Arrays.asList(categoricalAttributeId, numericalAttributeId)); - - clinicalAttributeUtil.extractCategorizedClinicalAttributes(clinicalAttributes, sampleAttributeIds, patientAttributeIds, patientAttributeIds); - - List patientIds = new ArrayList<>(); - List studyIdsOfPatients = new ArrayList<>(); - Map>> patientToSamples = null; - - if (CollectionUtils.isNotEmpty(patientAttributeIds)) { - List samplesWithoutNumericalFilter = sampleService.fetchSamples(studyIdsWithoutNumericalFilter, sampleIdsWithoutNumericalFilter, Projection.DETAILED.name()); - List patients = patientService.getPatientsOfSamples(studyIdsWithoutNumericalFilter, sampleIdsWithoutNumericalFilter); - patientIds = patients.stream().map(Patient::getStableId).collect(Collectors.toList()); - studyIdsOfPatients = patients.stream().map(Patient::getCancerStudyIdentifier).collect(Collectors.toList()); - patientToSamples = samplesWithoutNumericalFilter.stream().collect( - Collectors.groupingBy(Sample::getPatientStableId, Collectors.groupingBy(Sample::getCancerStudyIdentifier)) - ); - } - - List clinicalDataList = clinicalDataFetcher.fetchClinicalData( - studyIdsWithoutNumericalFilter, sampleIdsWithoutNumericalFilter, patientIds, studyIdsOfPatients, sampleAttributeIds, patientAttributeIds, null - ); - - List sampleClinicalDataList; - // put all clinical data into sample form - if (CollectionUtils.isNotEmpty(patientAttributeIds)) { - sampleClinicalDataList = new ArrayList<>(); - for (ClinicalData d: clinicalDataList) { - if (d.getSampleId() == null) { - // null sample id means its a patient data, - // we need to distribute the value to samples - List samplesForPatient = patientToSamples.get(d.getPatientId()).get(d.getStudyId()); - if (samplesForPatient != null) { - for (Sample s: samplesForPatient) { - ClinicalData newData = new ClinicalData(); - newData.setInternalId(s.getInternalId()); - newData.setAttrId(d.getAttrId()); - newData.setPatientId(d.getPatientId()); - newData.setStudyId(d.getStudyId()); - newData.setAttrValue(d.getAttrValue()); - newData.setSampleId(s.getStableId()); - sampleClinicalDataList.add(newData); - } - } else { - // patient has no samples - this shouldn't happen and could affect the integrity - // of the data analysis - return new ResponseEntity<>(null, HttpStatus.INTERNAL_SERVER_ERROR); - } - } else { - // if its a sample data, just add it to the list - sampleClinicalDataList.add(d); - } - } - } else { - sampleClinicalDataList = clinicalDataList; - } - - boolean useLogScale = logScale && StudyViewController.isLogScalePossibleForAttribute(numericalAttributeId); - - - result = violinPlotService.getClinicalViolinPlotData( - sampleClinicalDataList, - filteredSamples, - axisStart, - axisEnd, - numCurvePoints, - useLogScale, - sigmaMultiplier - ); - - return new ResponseEntity<>(result, HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/sample-lists-counts/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch case list sample counts by study view filter") - public List fetchCaseListCounts( - @ApiParam(required = true, value = "Study view filter") - @Valid @RequestBody(required = false) StudyViewFilter studyViewFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") StudyViewFilter interceptedStudyViewFilter) { - - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - List filteredSampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); - studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, studyIds, sampleIds); - List sampleLists = sampleListService.getAllSampleListsInStudies(studyIds, - Projection.DETAILED.name()); - - HashMap sampleCountBySampleListId = new HashMap(); - - Map filteredSampleSet = filteredSampleIdentifiers.stream() - .collect(Collectors.toMap(sampleidentifier -> studyViewFilterUtil - .getCaseUniqueKey(sampleidentifier.getStudyId(), sampleidentifier.getSampleId()), - Function.identity())); - - for (SampleList sampleList : sampleLists) { - for (String sampleId : sampleList.getSampleIds()) { - if (filteredSampleSet.containsKey( - studyViewFilterUtil.getCaseUniqueKey(sampleList.getCancerStudyIdentifier(), sampleId))) { - Integer count = sampleCountBySampleListId.getOrDefault(sampleList.getStableId(), 0); - sampleCountBySampleListId.put(sampleList.getStableId(), count + 1); - } - } - } - - return studyViewFilterUtil - .categorizeSampleLists(sampleLists) - .entrySet() - .stream() - .map(entry -> { - CaseListDataCount dataCount = new CaseListDataCount(); - dataCount.setValue(entry.getKey()); - - Integer count = entry.getValue().stream().mapToInt(sampleList -> { - return sampleCountBySampleListId.getOrDefault(sampleList.getStableId(), 0); - }).sum(); - - dataCount.setCount(count); - dataCount.setLabel(entry.getValue().get(0).getName()); - - return dataCount; - }) - .filter(dataCount -> dataCount.getCount() > 0) - .collect(Collectors.toList()); - - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/genomic-data-bin-counts/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch genomic data bin counts by study view filter") - public ResponseEntity> fetchGenomicDataBinCounts( - @ApiParam("Method for data binning") @RequestParam(defaultValue = "DYNAMIC") DataBinMethod dataBinMethod, - @ApiParam(required = true, value = "Genomic data bin count filter") @Valid @RequestBody(required = false) GenomicDataBinCountFilter genomicDataBinCountFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this - // attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedGenomicDataBinCountFilter") GenomicDataBinCountFilter interceptedGenomicDataBinCountFilter) { - - return new ResponseEntity<>(studyViewFilterApplier.getDataBins(dataBinMethod, interceptedGenomicDataBinCountFilter), HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/genomic-data-counts/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch genomic data counts by GenomicDataCountFilter") - public ResponseEntity> fetchGenomicDataCounts( - @ApiParam(required = true, value = "Genomic data count filter") @Valid @RequestBody(required = false) GenomicDataCountFilter genomicDataCountFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiParam(required = true, value = "Intercepted Genomic Data Count Filter") - @ApiIgnore - @Valid @RequestAttribute(required = false, value = "interceptedGenomicDataCountFilter") GenomicDataCountFilter interceptedGenomicDataCountFilter - ) throws StudyNotFoundException { - List gdFilters = interceptedGenomicDataCountFilter.getGenomicDataFilters(); - StudyViewFilter studyViewFilter = interceptedGenomicDataCountFilter.getStudyViewFilter(); - // when there is only one filter, it means study view is doing a single chart filter operation - // remove filter from studyViewFilter to return all data counts - // the reason we do this is to make sure after chart get filtered, user can still see unselected portion of the chart - if (gdFilters.size() == 1) { - studyViewFilterUtil.removeSelfFromGenomicDataFilter( - gdFilters.get(0).getHugoGeneSymbol(), - gdFilters.get(0).getProfileType(), - studyViewFilter); - } - List filteredSampleIdentifiers = studyViewFilterApplier.apply(studyViewFilter); - - if (filteredSampleIdentifiers.isEmpty()) { - return new ResponseEntity<>(new ArrayList<>(), HttpStatus.OK); - } - - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, studyIds, sampleIds); - - List result = studyViewService.getCNAAlterationCountsByGeneSpecific( - studyIds, - sampleIds, - gdFilters.stream().map(gdFilter -> new Pair<>(gdFilter.getHugoGeneSymbol(), gdFilter.getProfileType())).collect(Collectors.toList())); - - return new ResponseEntity<>(result, HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/generic-assay-data-counts/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch generic assay data counts by study view filter") - public ResponseEntity> fetchGenericAssayDataCounts( - @ApiParam(required = true, value = "Generic assay data count filter") @Valid @RequestBody(required = false) GenericAssayDataCountFilter genericAssayDataCountFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this - // attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedGenericAssayDataCountFilter") GenericAssayDataCountFilter interceptedGenericAssayDataCountFilter) { - - List gaFilters = interceptedGenericAssayDataCountFilter.getGenericAssayDataFilters(); - StudyViewFilter studyViewFilter = interceptedGenericAssayDataCountFilter.getStudyViewFilter(); - // when there is only one filter, it means study view is doing a single chart filter operation - // remove filter from studyViewFilter to return all data counts - // the reason we do this is to make sure after chart get filtered, user can still see unselected portion of the chart - if (gaFilters.size() == 1) { - studyViewFilterUtil.removeSelfFromGenericAssayFilter(gaFilters.get(0).getStableId(), studyViewFilter); - } - List filteredSampleIdentifiers = studyViewFilterApplier.apply(studyViewFilter); - - if (filteredSampleIdentifiers.isEmpty()) { - return new ResponseEntity<>(new ArrayList<>(), HttpStatus.OK); - } - - List studyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, studyIds, sampleIds); - - List result = studyViewService.fetchGenericAssayDataCounts( - sampleIds, - studyIds, - gaFilters.stream().map(GenericAssayDataFilter::getStableId).collect(Collectors.toList()), - gaFilters.stream().map(GenericAssayDataFilter::getProfileType).collect(Collectors.toList())); - - return new ResponseEntity<>(result, HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/generic-assay-data-bin-counts/fetch", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch generic assay data bin counts by study view filter") - public ResponseEntity> fetchGenericAssayDataBinCounts( - @ApiParam("Method for data binning") @RequestParam(defaultValue = "DYNAMIC") DataBinMethod dataBinMethod, - @ApiParam(required = true, value = "Generic assay data bin count filter") @Valid @RequestBody(required = false) GenericAssayDataBinCountFilter genericAssayDataBinCountFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this - // attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedGenericAssayDataBinCountFilter") GenericAssayDataBinCountFilter interceptedGenericAssayDataBinCountFilter) { - - return new ResponseEntity<>(studyViewFilterApplier.getDataBins(dataBinMethod, interceptedGenericAssayDataBinCountFilter), HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/clinical-data-table/fetch", method = RequestMethod.POST, - consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Fetch clinical data for the Clinical Tab of Study View") - public ResponseEntity fetchClinicalDataClinicalTable( - @ApiParam(required = true, value = "Study view filter") - @Valid @RequestBody(required = false) - StudyViewFilter studyViewFilter, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") - Collection involvedCancerStudies, - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid @RequestAttribute(required = false, value = "interceptedStudyViewFilter") - StudyViewFilter interceptedStudyViewFilter, - @ApiParam("Page size of the result list") - @Max(CLINICAL_TAB_MAX_PAGE_SIZE) - @Min(PagingConstants.NO_PAGING_PAGE_SIZE) - @RequestParam(defaultValue = PagingConstants.DEFAULT_NO_PAGING_PAGE_SIZE) - Integer pageSize, - @ApiParam("Page number of the result list") - @Min(PagingConstants.MIN_PAGE_NUMBER) - @RequestParam(defaultValue = PagingConstants.DEFAULT_PAGE_NUMBER) - Integer pageNumber, - @ApiParam("Search term to filter sample rows. Samples are returned " + - "with a partial match to the search term for any sample clinical attribute.") - @RequestParam(defaultValue = "") - String searchTerm, - @ApiParam(value = "sampleId, patientId, or the ATTR_ID to sorted by") - @RequestParam(required = false) - // TODO: Can we narrow down this string to a specific enum? - String sortBy, - @ApiParam("Direction of the sort") - @RequestParam(defaultValue = "ASC") - Direction direction - ) { - List sampleStudyIds = new ArrayList<>(); - List sampleIds = new ArrayList<>(); - List filteredSampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); - studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, sampleStudyIds, sampleIds); - - List sampleClinicalData = clinicalDataService.fetchSampleClinicalTable( - sampleStudyIds, - sampleIds, - pageSize, - pageNumber, - searchTerm, - sortBy, - direction.name() - ); - Integer total = clinicalDataService.fetchSampleClinicalTableCount( - sampleStudyIds, - sampleIds, - searchTerm, - sortBy, - direction.name() - ); - - // Return empty when possible. - if (sampleClinicalData.isEmpty()) { - return new ResponseEntity<>(new ClinicalDataCollection(), HttpStatus.OK); - } - - // Resolve for which patient clinical data should be included. - final List> patientIdentifiers = sampleClinicalData.stream() - .map(d -> new ImmutablePair<>(d.getStudyId(), d.getPatientId())) - .distinct() - .collect(Collectors.toList()); - List patientStudyIds = patientIdentifiers.stream().map(p -> p.getLeft()).collect(Collectors.toList()); - List patientIds = patientIdentifiers.stream().map(p -> p.getRight()).collect(Collectors.toList()); - - - List searchAllAttributes = null; - final List patientClinicalData = clinicalDataService.fetchClinicalData(patientStudyIds, patientIds, - searchAllAttributes, ClinicalDataType.PATIENT.name(), Projection.SUMMARY.name()); - - final ClinicalDataCollection clinicalDataCollection = new ClinicalDataCollection(); - clinicalDataCollection.setSampleClinicalData(sampleClinicalData); - clinicalDataCollection.setPatientClinicalData(patientClinicalData); - - HttpHeaders responseHeaders = new HttpHeaders(); - responseHeaders.add(HeaderKeyConstants.TOTAL_COUNT, total.toString()); - return new ResponseEntity<>(clinicalDataCollection, responseHeaders, HttpStatus.OK); - } - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @PostMapping(value = "/clinical-event-type-counts/fetch", consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get Counts of Clinical Event Types by Study View Filter") - public ResponseEntity> getClinicalEventTypeCounts( - @ApiParam(required = true, value = "Study view filter") - @Valid - @RequestBody(required = false) - StudyViewFilter studyViewFilter, - - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") - Collection involvedCancerStudies, - - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid - @RequestAttribute(required = false, value = "interceptedStudyViewFilter") - StudyViewFilter interceptedStudyViewFilter - ) { - boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); - List eventTypeCounts = instance.cachedClinicalEventTypeCounts(interceptedStudyViewFilter, singleStudyUnfiltered); - return new ResponseEntity<>(eventTypeCounts, HttpStatus.OK); - } - - @Cacheable( - cacheResolver = "staticRepositoryCacheOneResolver", - condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" - ) - public List cachedClinicalEventTypeCounts( - StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered - ){ - List filteredSampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); - List sampleIds = new ArrayList<>(); - List studyIds = new ArrayList<>(); - studyViewFilterUtil.extractStudyAndSampleIds(filteredSampleIdentifiers, studyIds, sampleIds); - return clinicalEventService.getClinicalEventTypeCounts(studyIds, sampleIds); - } -} diff --git a/web/src/main/java/org/cbioportal/web/TreatmentController.java b/web/src/main/java/org/cbioportal/web/TreatmentController.java deleted file mode 100644 index c17ecda37f2..00000000000 --- a/web/src/main/java/org/cbioportal/web/TreatmentController.java +++ /dev/null @@ -1,188 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.PatientTreatmentRow; -import org.cbioportal.model.SampleTreatmentRow; -import org.cbioportal.model.ClinicalEventKeyCode; -import org.cbioportal.service.TreatmentService; -import org.cbioportal.web.config.annotation.PublicApi; -import org.cbioportal.web.parameter.*; -import org.cbioportal.web.util.StudyViewFilterApplier; -import org.cbioportal.web.util.StudyViewFilterUtil; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.cache.annotation.Cacheable; -import org.springframework.context.ApplicationContext; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.*; -import springfox.documentation.annotations.ApiIgnore; - -import javax.annotation.PostConstruct; -import javax.validation.Valid; -import javax.validation.constraints.Size; -import java.util.ArrayList; -import java.util.Collection; -import java.util.List; -import java.util.Set; - -@PublicApi -@RestController -@Validated -@Api(tags = "Treatments", description = " ") -public class TreatmentController { - @Autowired - private ApplicationContext applicationContext; - TreatmentController instance; - @PostConstruct - private void init() { - instance = applicationContext.getBean(TreatmentController.class); - } - - @Autowired - private StudyViewFilterUtil studyViewFilterUtil; - @Autowired - private StudyViewFilterUtil filterUtil; - - @Autowired - private TreatmentService treatmentService; - - @Autowired - private StudyViewFilterApplier studyViewFilterApplier; - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/treatments/patient", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all patient level treatments") - public ResponseEntity> getAllPatientTreatments( - @ApiParam(required = false, defaultValue = "Agent") - @RequestParam(name = "tier", required = false, defaultValue = "Agent") - ClinicalEventKeyCode tier, - - @ApiParam(required = true, value = "Study view filter") - @Valid - @RequestBody(required = false) - StudyViewFilter studyViewFilter, - - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") - Collection involvedCancerStudies, - - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid - @RequestAttribute(required = false, value = "interceptedStudyViewFilter") - StudyViewFilter interceptedStudyViewFilter - ) { - boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); - List treatments = - instance.cachableGetAllPatientTreatments(tier, interceptedStudyViewFilter, singleStudyUnfiltered); - return new ResponseEntity<>(treatments, HttpStatus.OK); - } - - @Cacheable( - cacheResolver = "staticRepositoryCacheOneResolver", - condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" - ) - public List cachableGetAllPatientTreatments( - ClinicalEventKeyCode tier, StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered - ) { - List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); - List sampleIds = new ArrayList<>(); - List studyIds = new ArrayList<>(); - filterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); - - return treatmentService.getAllPatientTreatmentRows(sampleIds, studyIds, tier); - } - - - @PreAuthorize("hasPermission(#involvedCancerStudies, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/treatments/sample", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get all sample level treatments") - public ResponseEntity> getAllSampleTreatments( - @ApiParam(required = false, defaultValue = "Agent") - @RequestParam(name = "tier", required = false, defaultValue = "Agent") - ClinicalEventKeyCode tier, - - @ApiParam(required = true, value = "Study view filter") - @Valid - @RequestBody(required = false) - StudyViewFilter studyViewFilter, - - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface - @RequestAttribute(required = false, value = "involvedCancerStudies") - Collection involvedCancerStudies, - - @ApiIgnore // prevent reference to this attribute in the swagger-ui interface. this attribute is needed for the @PreAuthorize tag above. - @Valid - @RequestAttribute(required = false, value = "interceptedStudyViewFilter") - StudyViewFilter interceptedStudyViewFilter - ) { - boolean singleStudyUnfiltered = studyViewFilterUtil.isSingleStudyUnfiltered(interceptedStudyViewFilter); - List treatments = - instance.cacheableGetAllSampleTreatments(tier, interceptedStudyViewFilter, singleStudyUnfiltered); - return new ResponseEntity<>(treatments, HttpStatus.OK); - } - - @Cacheable( - cacheResolver = "staticRepositoryCacheOneResolver", - condition = "@cacheEnabledConfig.getEnabled() && #singleStudyUnfiltered" - ) - public List cacheableGetAllSampleTreatments( - ClinicalEventKeyCode tier, StudyViewFilter interceptedStudyViewFilter, boolean singleStudyUnfiltered - ) { - List sampleIdentifiers = studyViewFilterApplier.apply(interceptedStudyViewFilter); - List sampleIds = new ArrayList<>(); - List studyIds = new ArrayList<>(); - filterUtil.extractStudyAndSampleIds(sampleIdentifiers, studyIds, sampleIds); - - return treatmentService.getAllSampleTreatmentRows(sampleIds, studyIds, tier); - } - - @PreAuthorize("hasPermission(#studyIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/treatments/display-patient", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Should patient level treatments be displayed") - public ResponseEntity getContainsTreatmentData( - @ApiParam(required = false, defaultValue = "Agent") - @RequestParam(name = "tier", required = false, defaultValue = "Agent") - ClinicalEventKeyCode tier, - - @ApiParam(required = true, value = "List of Study IDs") - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @RequestBody - Set studyIds - ) { - Boolean containsTreatmentData = instance.cacheableGetContainsTreatmentData(studyIds, tier); - return new ResponseEntity<>(containsTreatmentData, HttpStatus.OK); - } - - // Caching enabled for any number of studies as the requests contains only studyIds and the response is a boolean - @Cacheable(cacheResolver = "generalRepositoryCacheResolver", condition = "@cacheEnabledConfig.getEnabled()") - public Boolean cacheableGetContainsTreatmentData(Set studyIds, ClinicalEventKeyCode tier) { - return treatmentService.containsTreatmentData(new ArrayList<>(studyIds), tier); - } - - @PreAuthorize("hasPermission(#studyIds, 'Collection', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/treatments/display-sample", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Should sample level treatments be displayed") - public ResponseEntity getContainsSampleTreatmentData( - @ApiParam(required = false, defaultValue = "Agent") - @RequestParam(name = "tier", required = false, defaultValue = "Agent") - ClinicalEventKeyCode tier, - - @ApiParam(required = true, value = "List of Study IDs") - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - @RequestBody - Set studyIds - ) { - Boolean containsTreatmentData = instance.cacheableGetContainsSampleTreatmentData(studyIds, tier); - return new ResponseEntity<>(containsTreatmentData, HttpStatus.OK); - } - - @Cacheable(cacheResolver = "generalRepositoryCacheResolver", condition = "@cacheEnabledConfig.getEnabled()") - public Boolean cacheableGetContainsSampleTreatmentData(Set studyIds, ClinicalEventKeyCode tier) { - return treatmentService.containsSampleTreatmentData(new ArrayList<>(studyIds), tier); - } -} diff --git a/web/src/main/java/org/cbioportal/web/VariantCountController.java b/web/src/main/java/org/cbioportal/web/VariantCountController.java deleted file mode 100644 index 43e9b097582..00000000000 --- a/web/src/main/java/org/cbioportal/web/VariantCountController.java +++ /dev/null @@ -1,62 +0,0 @@ -package org.cbioportal.web; - -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiParam; -import org.cbioportal.model.VariantCount; -import org.cbioportal.service.VariantCountService; -import org.cbioportal.service.exception.MolecularProfileNotFoundException; -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.parameter.VariantCountIdentifier; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.security.access.prepost.PreAuthorize; - -import javax.validation.constraints.Size; -import java.util.ArrayList; -import java.util.List; - -@InternalApi -@RestController -@Validated -@Api(tags = "Variant Counts", description = " ") -public class VariantCountController { - - private static final int VARIANT_COUNT_MAX_PAGE_SIZE = 50000; - - @Autowired - private VariantCountService variantCountService; - - @PreAuthorize("hasPermission(#molecularProfileId, 'MolecularProfileId', T(org.cbioportal.utils.security.AccessLevel).READ)") - @RequestMapping(value = "/molecular-profiles/{molecularProfileId}/variant-counts/fetch", - method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, - produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation("Get counts of specific variants within a mutation molecular profile") - public ResponseEntity> fetchVariantCounts( - @ApiParam(required = true, value = "Molecular Profile ID e.g. acc_tcga_mutations") - @PathVariable String molecularProfileId, - @ApiParam(required = true, value = "List of variant count identifiers") - @Size(min = 1, max = VARIANT_COUNT_MAX_PAGE_SIZE) - @RequestBody List variantCountIdentifiers) throws MolecularProfileNotFoundException { - - List entrezGeneIds = new ArrayList<>(); - List keywords = new ArrayList<>(); - - for (VariantCountIdentifier variantCountIdentifier : variantCountIdentifiers) { - - entrezGeneIds.add(variantCountIdentifier.getEntrezGeneId()); - keywords.add(variantCountIdentifier.getKeyword()); - } - - return new ResponseEntity<>(variantCountService.fetchVariantCounts(molecularProfileId, entrezGeneIds, keywords), - HttpStatus.OK); - } -} diff --git a/web/src/main/java/org/cbioportal/web/config/DataAccessTokenConfig.java b/web/src/main/java/org/cbioportal/web/config/DataAccessTokenConfig.java deleted file mode 100644 index e2768262d00..00000000000 --- a/web/src/main/java/org/cbioportal/web/config/DataAccessTokenConfig.java +++ /dev/null @@ -1,31 +0,0 @@ -package org.cbioportal.web.config; - -import org.cbioportal.utils.config.annotation.ConditionalOnProperty; -import org.cbioportal.web.DataAccessTokenController; -import org.cbioportal.web.OAuth2DataAccessTokenController; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.PropertySource; -import org.springframework.context.annotation.PropertySources; - -@Configuration -@PropertySources({ - @PropertySource(value="classpath:portal.properties", ignoreResourceNotFound=true), - @PropertySource(value="file:///${PORTAL_HOME}/portal.properties", ignoreResourceNotFound=true) -}) -public class DataAccessTokenConfig { - - // controller - @Bean - @ConditionalOnProperty(name = "dat.method", havingValue = "oauth2") - public OAuth2DataAccessTokenController oauth2DataAccessTokenController() { - return new OAuth2DataAccessTokenController(); - } - - @Bean - @ConditionalOnProperty(name = "dat.method", havingValue = "oauth2", isNot = true) - public DataAccessTokenController dataAccessTokenController() { - return new DataAccessTokenController(); - } - -} \ No newline at end of file diff --git a/web/src/main/java/org/cbioportal/web/config/SwaggerConfig.java b/web/src/main/java/org/cbioportal/web/config/SwaggerConfig.java deleted file mode 100644 index c335ee9852b..00000000000 --- a/web/src/main/java/org/cbioportal/web/config/SwaggerConfig.java +++ /dev/null @@ -1,102 +0,0 @@ -package org.cbioportal.web.config; - -import org.cbioportal.web.config.annotation.InternalApi; -import org.cbioportal.web.config.annotation.PublicApi; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.PropertySource; -import springfox.documentation.builders.RequestHandlerSelectors; -import springfox.documentation.service.ApiInfo; -import springfox.documentation.service.Contact; -import springfox.documentation.service.Tag; -import springfox.documentation.spi.DocumentationType; -import springfox.documentation.spring.web.plugins.Docket; -import springfox.documentation.swagger.web.UiConfiguration; -import springfox.documentation.swagger.web.UiConfigurationBuilder; -import springfox.documentation.swagger2.annotations.EnableSwagger2; - -import java.util.Collections; - -@Configuration -@EnableSwagger2 -@PropertySource("classpath:springfox.properties") -public class SwaggerConfig { - @Bean - public Docket publicApi() { - Docket d = new Docket(DocumentationType.SWAGGER_2) - .select() - .apis(RequestHandlerSelectors.withClassAnnotation(PublicApi.class)) - .build() - .useDefaultResponseMessages(false) - .apiInfo(publicApiInfo()); - - d.tags( - new Tag(PublicApiTags.CANCER_TYPES, "", 0), - new Tag(PublicApiTags.STUDIES, "", 1), - new Tag(PublicApiTags.PATIENTS, "", 2), - new Tag(PublicApiTags.SAMPLES, "", 3), - new Tag(PublicApiTags.SAMPLE_LISTS, "", 4), - new Tag(PublicApiTags.CLINICAL_ATTRIBUTES, "", 5), - new Tag(PublicApiTags.CLINICAL_DATA, "", 6), - new Tag(PublicApiTags.MOLECULAR_DATA, "", 7), - new Tag(PublicApiTags.MOLECULAR_PROFILES, "", 8), - new Tag(PublicApiTags.MUTATIONS, "", 9), - new Tag(PublicApiTags.DISCRETE_COPY_NUMBER_ALTERATIONS, "", 10), - new Tag(PublicApiTags.COPY_NUMBER_SEGMENTS, "", 11), - new Tag(PublicApiTags.GENES, "", 12), - new Tag(PublicApiTags.GENE_PANELS, "", 13), - new Tag(PublicApiTags.GENERIC_ASSAYS, "", 14), - new Tag(PublicApiTags.GENERIC_ASSAY_DATA, "", 15), - new Tag(PublicApiTags.INFO, "", 16) - ); - - return d; - } - - @Bean - public Docket internalApi() { - return new Docket(DocumentationType.SWAGGER_2).groupName("internal") - .select() - .apis(RequestHandlerSelectors.withClassAnnotation(InternalApi.class)) - .build() - .useDefaultResponseMessages(false) - .apiInfo(internalApiInfo()); - } - - @Bean - UiConfiguration uiConfig() { - return UiConfigurationBuilder.builder() - .displayRequestDuration(true) - .validatorUrl("") - .build(); - } - - private ApiInfo publicApiInfo() { - return new ApiInfo( - "cBioPortal web Public API [Beta]", - "A web service for supplying JSON formatted data to cBioPortal clients. " + - "Please note that this API is currently in beta and subject to change.", - "1.0 (beta). Backwards compatibility will be maintained (after 1.0 release)", - null, - new Contact("cBioPortal", "https://www.cbioportal.org", "cbioportal@googlegroups.com"), - "License", - "https://github.com/cBioPortal/cbioportal/blob/master/LICENSE", - Collections.emptyList() - ); - } - - private ApiInfo internalApiInfo() { - return new ApiInfo( - "cBioPortal web Internal API [Beta]", - "A web service for supplying JSON formatted data to cBioPortal clients. " + - "Please note that interal API is currently in beta and subject to change.", - "1.0 (beta). Internal API are prone to change.", - null, - new Contact("cBioPortal", "https://www.cbioportal.org", "cbioportal@googlegroups.com"), - "License", - "https://github.com/cBioPortal/cbioportal/blob/master/LICENSE", - Collections.emptyList() - ); - } -} diff --git a/web/src/main/java/org/cbioportal/web/mixin/MutationMixin.java b/web/src/main/java/org/cbioportal/web/mixin/MutationMixin.java deleted file mode 100644 index 86b80142466..00000000000 --- a/web/src/main/java/org/cbioportal/web/mixin/MutationMixin.java +++ /dev/null @@ -1,19 +0,0 @@ -package org.cbioportal.web.mixin; - -import com.fasterxml.jackson.annotation.JsonProperty; - -public class MutationMixin { - - @JsonProperty("variantAllele") - private String tumorSeqAllele; - @JsonProperty("refseqMrnaId") - private String refseqMrnaId; - @JsonProperty("proteinPosStart") - private Integer proteinPosStart; - @JsonProperty("proteinPosEnd") - private Integer proteinPosEnd; - @JsonProperty("chr") - private String chr; - @JsonProperty("namespaceColumns") - private String annotationJSON; -} diff --git a/web/src/main/java/org/cbioportal/web/parameter/MutationFilter.java b/web/src/main/java/org/cbioportal/web/parameter/MutationFilter.java deleted file mode 100644 index 52ee7d646ba..00000000000 --- a/web/src/main/java/org/cbioportal/web/parameter/MutationFilter.java +++ /dev/null @@ -1,43 +0,0 @@ -package org.cbioportal.web.parameter; - -import javax.validation.constraints.AssertTrue; -import javax.validation.constraints.Size; -import java.util.List; - -public class MutationFilter { - - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - private List sampleIds; - private String sampleListId; - @Size(min = 1, max = PagingConstants.MAX_PAGE_SIZE) - private List entrezGeneIds; - - @AssertTrue - private boolean isEitherSampleListIdOrSampleIdsPresent() { - return sampleListId != null ^ sampleIds != null; - } - - public List getSampleIds() { - return sampleIds; - } - - public void setSampleIds(List sampleIds) { - this.sampleIds = sampleIds; - } - - public String getSampleListId() { - return sampleListId; - } - - public void setSampleListId(String sampleListId) { - this.sampleListId = sampleListId; - } - - public List getEntrezGeneIds() { - return entrezGeneIds; - } - - public void setEntrezGeneIds(List entrezGeneIds) { - this.entrezGeneIds = entrezGeneIds; - } -} diff --git a/web/src/main/java/org/cbioportal/web/parameter/VirtualStudy.java b/web/src/main/java/org/cbioportal/web/parameter/VirtualStudy.java deleted file mode 100644 index 9d6a52ce14a..00000000000 --- a/web/src/main/java/org/cbioportal/web/parameter/VirtualStudy.java +++ /dev/null @@ -1,47 +0,0 @@ -package org.cbioportal.web.parameter; - -import java.io.IOException; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.cbioportal.session_service.domain.Session; -import org.cbioportal.session_service.domain.SessionType; - -import com.fasterxml.jackson.annotation.JsonIgnore; -import com.fasterxml.jackson.annotation.JsonIgnoreProperties; -import com.fasterxml.jackson.databind.ObjectMapper; - -@JsonIgnoreProperties(ignoreUnknown = true) -public class VirtualStudy extends Session { - - private final Logger LOG = LoggerFactory.getLogger(VirtualStudy.class); - private VirtualStudyData data; - - @Override - public void setData(Object data) { - ObjectMapper mapper = new ObjectMapper(); - try { - this.data = mapper.readValue(mapper.writeValueAsString(data), VirtualStudyData.class); - } catch (IOException e) { - LOG.error("Error occurred", e); - } - } - - @Override - public VirtualStudyData getData() { - return data; - } - - @JsonIgnore - @Override - public String getSource() { - return super.getSource(); - } - - @JsonIgnore - @Override - public SessionType getType() { - return super.getType(); - } - -} diff --git a/web/src/main/java/org/cbioportal/web/util/GoogleAnalyticsInterceptor.java b/web/src/main/java/org/cbioportal/web/util/GoogleAnalyticsInterceptor.java deleted file mode 100644 index 0624cafef5f..00000000000 --- a/web/src/main/java/org/cbioportal/web/util/GoogleAnalyticsInterceptor.java +++ /dev/null @@ -1,117 +0,0 @@ -package org.cbioportal.web.util; - -import org.slf4j.*; - -import java.util.*; -import javax.servlet.http.*; -import javax.annotation.PostConstruct; -import java.util.concurrent.CompletableFuture; - -import org.springframework.http.*; -import org.springframework.web.client.*; -import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; -import org.springframework.stereotype.Component; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.util.LinkedMultiValueMap; - -@Component -public class GoogleAnalyticsInterceptor extends HandlerInterceptorAdapter { - - @Value("${google.analytics.tracking.code.api}") - private String trackingId; - - @Value("${google.analytics.application.client.id}") - private String clientId; - - private static HttpHeaders defaultHeaders; - private static LinkedMultiValueMap globalURIVariables; - private static final Logger LOG = LoggerFactory.getLogger(GoogleAnalyticsInterceptor.class); - private static boolean missingGoogleAnalyticsCredentials; - - @PostConstruct - private void initializeDefaultParams() { - - if (trackingId == null || trackingId.isEmpty()) { - missingGoogleAnalyticsCredentials = true; - } - if (clientId == null || clientId.isEmpty()) { - missingGoogleAnalyticsCredentials = true; - } - - if (missingGoogleAnalyticsCredentials) { - if (LOG.isInfoEnabled()) { - LOG.info("@PostContruct:"); - LOG.info("Google Analytics tracking id: " + ((trackingId == null) ? "null" : trackingId)); - LOG.info("Google Analytics client id: " + ((clientId == null) ? "null" : clientId)); - } - return; - } - - defaultHeaders = new HttpHeaders(); - defaultHeaders.setAccept(Arrays.asList(MediaType.ALL)); - defaultHeaders.setContentType(MediaType.APPLICATION_FORM_URLENCODED); - defaultHeaders.set(HttpHeaders.USER_AGENT, "cBioPortal API Reporting/1.0 via org.cbioportal.web.util.GoogleAnalyticsInterceptor"); - - globalURIVariables = new LinkedMultiValueMap(); - globalURIVariables.add("v", "1"); - globalURIVariables.add("dt", "request logged by GoogleAnalyticsInterceptor"); - globalURIVariables.add("t", "pageview"); - globalURIVariables.add("tid", trackingId); - globalURIVariables.add("cid", clientId); - globalURIVariables.add("dh", "cbioportal.org"); - } - - @Override - public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) - throws Exception { - - if (invalidAfterCompletionArgs(response)) { - return; - } - - CompletableFuture.runAsync(() -> { - LinkedMultiValueMap thisTasksURIVariables = new LinkedMultiValueMap<>(); - thisTasksURIVariables.putAll(globalURIVariables); - thisTasksURIVariables.add("dp", request.getRequestURI()); - HttpEntity> requestEntity = - new HttpEntity>(thisTasksURIVariables, defaultHeaders); - try { - RestTemplate restTemplate = new RestTemplate(); - ResponseEntity responseEntity = - restTemplate.exchange("https://www.google-analytics.com/collect", HttpMethod.POST, requestEntity, String.class); - HttpStatus responseStatus = responseEntity.getStatusCode(); - if (responseStatus.is2xxSuccessful()) { - if (LOG.isInfoEnabled()) { - LOG.info("CompletableFuture.runAsync(): POST request successfully sent to Google Analytics: "); - LOG.info(requestEntity.toString()); - } - } - else { - if (LOG.isInfoEnabled()) { - LOG.info("CompletableFuture.runAsync(): POST request to Google Analytics failed. HTTP status code: " - + Integer.toString(responseStatus.value())); - } - } - } - catch(RestClientException e) { - e.printStackTrace(); - } - }); - } - - private boolean invalidAfterCompletionArgs(HttpServletResponse response) { - if (missingGoogleAnalyticsCredentials || response.getHeader("referer") != null) { - if (LOG.isInfoEnabled()) { - LOG.info("afterCompletion() cannot be completed:"); - if (missingGoogleAnalyticsCredentials) { - LOG.info("Invalid Google Analytics credentials (see @PostConstruct log entry)"); - } - else { - LOG.info("Response referer is not null"); - } - } - return true; - } - return false; - } -} diff --git a/web/src/main/java/org/cbioportal/web/util/ResettableHttpServletRequestFilter.java b/web/src/main/java/org/cbioportal/web/util/ResettableHttpServletRequestFilter.java deleted file mode 100644 index b0003e2fa15..00000000000 --- a/web/src/main/java/org/cbioportal/web/util/ResettableHttpServletRequestFilter.java +++ /dev/null @@ -1,37 +0,0 @@ -package org.cbioportal.web.util; - -import java.io.IOException; -import javax.servlet.*; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import org.slf4j.LoggerFactory; -import org.slf4j.Logger; -import org.springframework.web.util.ContentCachingRequestWrapper; -import org.springframework.web.util.ContentCachingResponseWrapper; - - -/** - * - * @author ochoaa - */ -public class ResettableHttpServletRequestFilter implements Filter { - private Logger LOG = LoggerFactory.getLogger(ResettableHttpServletRequestFilter.class); - - @Override - public void init(FilterConfig aChain) throws ServletException { - // do nothing - } - - @Override - public void doFilter(ServletRequest aRequest, ServletResponse aResponse, FilterChain aChain) throws IOException, ServletException { - ContentCachingRequestWrapper wrappedRequest = new ContentCachingRequestWrapper((HttpServletRequest) aRequest); - ContentCachingResponseWrapper wrappedResponse = new ContentCachingResponseWrapper((HttpServletResponse) aResponse); - aChain.doFilter(wrappedRequest, wrappedResponse); - wrappedResponse.copyBodyToResponse(); - } - - @Override - public void destroy() { - // do nothing - } -} diff --git a/web/src/main/resources/applicationContext-logging.xml b/web/src/main/resources/applicationContext-logging.xml deleted file mode 100644 index b0a840aad9f..00000000000 --- a/web/src/main/resources/applicationContext-logging.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/web/src/main/resources/applicationContext-proxy.xml b/web/src/main/resources/applicationContext-proxy.xml deleted file mode 100644 index cdb7d4334d1..00000000000 --- a/web/src/main/resources/applicationContext-proxy.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - classpath:portal.properties - file:///${PORTAL_HOME}/portal.properties - classpath:maven.properties - classpath:git.properties - - - - - - - - diff --git a/web/src/main/resources/applicationContext-url-shortener.xml b/web/src/main/resources/applicationContext-url-shortener.xml deleted file mode 100644 index f92bcfcb70c..00000000000 --- a/web/src/main/resources/applicationContext-url-shortener.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - classpath:portal.properties - file:///${PORTAL_HOME}/portal.properties - classpath:maven.properties - - - - - - - - diff --git a/web/src/main/resources/applicationContext-web.xml b/web/src/main/resources/applicationContext-web.xml deleted file mode 100644 index 73ab535f75e..00000000000 --- a/web/src/main/resources/applicationContext-web.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - classpath:portal.properties - file:///${PORTAL_HOME}/portal.properties - classpath:maven.properties - classpath:git.properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/web/src/test/java/org/cbioportal/web/CacheControllerTest.java b/web/src/test/java/org/cbioportal/web/CacheControllerTest.java deleted file mode 100644 index bb5217200f5..00000000000 --- a/web/src/test/java/org/cbioportal/web/CacheControllerTest.java +++ /dev/null @@ -1,171 +0,0 @@ -package org.cbioportal.web; - -import org.cbioportal.model.CancerStudy; -import org.cbioportal.persistence.StudyRepository; -import org.cbioportal.service.CacheService; -import org.cbioportal.service.exception.CacheOperationException; -import org.junit.Before; -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.http.MediaType; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; -import org.springframework.test.util.ReflectionTestUtils; -import org.springframework.test.web.servlet.MockMvc; -import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; -import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.Arrays; -import java.util.List; - -import static org.mockito.Mockito.*; - -@RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration -public class CacheControllerTest { - - @Autowired - private WebApplicationContext wac; - - private MockMvc mockMvc; - - @Autowired - private CacheController cacheController; - - // ---- Imitate @MockBean annotations of Spring Boot - @Autowired - private CacheService cacheService; - @Bean - public CacheService cacheService() { - return mock(CacheService.class); - } - // ---- - - @Before - public void setUp() throws Exception { - reset(cacheService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - - @Test - public void clearAllCachesNoKeyProvided() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.delete("/cache")) - .andExpect(MockMvcResultMatchers.status().isBadRequest()); - verify(cacheService, never()).clearCaches(true); - } - - @Test - public void clearAllCachesUnauthorized() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.delete("/cache") - .header("X-API-KEY", "incorrect-key")) - .andExpect(MockMvcResultMatchers.status().isUnauthorized()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); - verify(cacheService, never()).clearCaches(true); - } - - @Test - public void clearAllCachesSuccess() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.delete("/cache") - .header("X-API-KEY", "correct-key")) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); - verify(cacheService, times(1)).clearCaches(true); - } - - @Test - public void clearAllCachesDisabled() throws Exception { - ReflectionTestUtils.setField(cacheController, "cacheEndpointEnabled", false); - mockMvc.perform(MockMvcRequestBuilders.delete("/cache") - .header("X-API-KEY", "correct-key")) - .andExpect(MockMvcResultMatchers.status().isNotFound()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); - verify(cacheService, never()).clearCaches(true); - ReflectionTestUtils.setField(cacheController, "cacheEndpointEnabled", true); - } - - @Test - public void clearAllCachesSkipSpringManaged() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.delete("/cache").param("springManagedCache", "false") - .header("X-API-KEY", "correct-key")) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); - verify(cacheService, times(1)).clearCaches(false); - } - - @Ignore // Unable to to configure context with the GlobalExceptionHandler ControllerAdvise. - @Test - public void clearAllCachesServiceException() throws Exception { - doThrow(CacheOperationException.class).when(cacheService).clearCaches(anyBoolean()); - mockMvc.perform(MockMvcRequestBuilders.delete("/cache") - .header("X-API-KEY", "correct-key")) - .andExpect(MockMvcResultMatchers.status().isInternalServerError()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); - verify(cacheService, times(1)).clearCaches(true); - } - - @Test - public void clearCacheForStudyNoKeyProvided() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.delete("/cache/study_es_0")) - .andExpect(MockMvcResultMatchers.status().isBadRequest()); - verify(cacheService, never()).clearCachesForStudy(anyString(), anyBoolean()); - } - - @Test - public void clearCacheForStudyUnauthorized() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.delete("/cache/study_es_0") - .header("X-API-KEY", "incorrect-key")) - .andExpect(MockMvcResultMatchers.status().isUnauthorized()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); - verify(cacheService, never()).clearCachesForStudy(anyString(), anyBoolean()); - } - - @Test - public void clearCacheForStudySuccess() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.delete("/cache/study_es_0") - .header("X-API-KEY", "correct-key")) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); - verify(cacheService, times(1)).clearCachesForStudy(eq("study_es_0"), anyBoolean()); - } - - @Test - public void clearCacheForStudyDisabled() throws Exception { - ReflectionTestUtils.setField(cacheController, "cacheEndpointEnabled", false); - mockMvc.perform(MockMvcRequestBuilders.delete("/cache/study_es_0") - .header("X-API-KEY", "correct-key")) - .andExpect(MockMvcResultMatchers.status().isNotFound()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); - verify(cacheService, never()).clearCachesForStudy(anyString(), anyBoolean()); - ReflectionTestUtils.setField(cacheController, "cacheEndpointEnabled", true); - } - - @Test - public void clearCacheForStudySkipSpringManaged() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.delete("/cache/study_es_0").param("springManagedCache", "false") - .header("X-API-KEY", "correct-key")) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); - verify(cacheService, times(1)).clearCachesForStudy(anyString(), eq(false)); - } - - @Ignore // Unable to to configure context with the GlobalExceptionHandler ControllerAdvise. - @Test - public void clearCacheForStudyServiceException() throws Exception { - doThrow(CacheOperationException.class).when(cacheService).clearCachesForStudy(eq("study_es_0"), anyBoolean()); - mockMvc.perform(MockMvcRequestBuilders.delete("/cache/study_es_0") - .header("X-API-KEY", "correct-key")) - .andExpect(MockMvcResultMatchers.status().isInternalServerError()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN_VALUE)); - verify(cacheService, times(1)).clearCachesForStudy(anyString(), eq(true)); - } - -} diff --git a/web/src/test/java/org/cbioportal/web/CacheStatsControllerTest.java b/web/src/test/java/org/cbioportal/web/CacheStatsControllerTest.java deleted file mode 100644 index c832f1778c8..00000000000 --- a/web/src/test/java/org/cbioportal/web/CacheStatsControllerTest.java +++ /dev/null @@ -1,113 +0,0 @@ -package org.cbioportal.web; - -import org.cbioportal.service.CacheStatisticsService; -import org.cbioportal.service.exception.CacheNotFoundException; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.Mockito; -import org.mockito.invocation.InvocationOnMock; -import org.mockito.stubbing.Answer; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.http.MediaType; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.TestPropertySource; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; -import org.springframework.test.web.servlet.MockMvc; -import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; -import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.ArrayList; -import java.util.List; - -@RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@TestPropertySource( - properties = "persistence.cache_type=redis" -) -@Configuration -public class CacheStatsControllerTest { - - public static final String VALID_CACHE_ALIAS = "GeneralRepositoryCache"; - - public static final String INVALID_CACHE_ALIAS = "InvalidCacheForTesting"; - - @Autowired - private WebApplicationContext wac; - - private MockMvc mockMvc; - - @Autowired - @Qualifier("mockCacheStatisticsService") - public CacheStatisticsService cacheStatisticsService; - - @Before - public void setUp() throws Exception { - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - - @Bean - @Qualifier("mockCacheStatisticsService") - public static CacheStatisticsService cacheStatisticsService() throws CacheNotFoundException { - CacheStatisticsService cacheStatisticsServiceMock = Mockito.mock(CacheStatisticsService.class); - Mockito.when(cacheStatisticsServiceMock.getKeyCountsPerClass(Mockito.anyString())).thenAnswer(new Answer>() { - public List answer(InvocationOnMock invocation) throws CacheNotFoundException { - Object[] args = invocation.getArguments(); - String cacheAlias = (String)args[0]; - if (VALID_CACHE_ALIAS.equals(cacheAlias)) { - return new ArrayList(); - } - throw new CacheNotFoundException(cacheAlias); - } - }); - Mockito.when(cacheStatisticsServiceMock.getKeysInCache(Mockito.anyString())).thenAnswer(new Answer>() { - public List answer(InvocationOnMock invocation) throws CacheNotFoundException { - Object[] args = invocation.getArguments(); - String cacheAlias = (String)args[0]; - if (VALID_CACHE_ALIAS.equals(cacheAlias)) { - return new ArrayList(); - } - throw new CacheNotFoundException(cacheAlias); - } - }); - return cacheStatisticsServiceMock; - } - - @Test - public void testGetKeysInCache() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.get("/" + VALID_CACHE_ALIAS + "/keysInCache") - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)); - } - - @Test - public void testGetKeysInInvalidCache() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.get("/" + INVALID_CACHE_ALIAS + "/keysInCache") - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isNotFound()); - } - - @Test - public void testGetKeyCountsPerClass() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.get("/" + VALID_CACHE_ALIAS + "/keyCountsPerClass") - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)); - } - - @Test - public void testGetKeyCountsPerClassInvalidCache() throws Exception { - mockMvc.perform(MockMvcRequestBuilders.get("/" + INVALID_CACHE_ALIAS + "/keyCountsPerClass") - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isNotFound()); - } - -} diff --git a/web/src/test/java/org/cbioportal/web/ClinicalAttributeControllerTest.java b/web/src/test/java/org/cbioportal/web/ClinicalAttributeControllerTest.java deleted file mode 100644 index 47995c19533..00000000000 --- a/web/src/test/java/org/cbioportal/web/ClinicalAttributeControllerTest.java +++ /dev/null @@ -1,354 +0,0 @@ -package org.cbioportal.web; - -import com.fasterxml.jackson.databind.ObjectMapper; -import org.cbioportal.model.ClinicalAttribute; -import org.cbioportal.model.ClinicalAttributeCount; -import org.cbioportal.model.meta.BaseMeta; -import org.cbioportal.service.ClinicalAttributeService; -import org.cbioportal.service.exception.ClinicalAttributeNotFoundException; -import org.cbioportal.web.parameter.HeaderKeyConstants; -import org.cbioportal.web.parameter.ClinicalAttributeCountFilter; -import org.cbioportal.web.parameter.SampleIdentifier; -import org.hamcrest.Matchers; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.Mockito; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.http.MediaType; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; -import org.springframework.test.web.servlet.MockMvc; -import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; -import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; -import java.util.ArrayList; -import java.util.List; - -@RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration -public class ClinicalAttributeControllerTest { - - private static final String TEST_ATTR_ID_1 = "test_attr_id_1"; - private static final int TEST_CANCER_STUDY_ID_1 = 1; - private static final String TEST_CANCER_STUDY_IDENTIFIER_1 = "test_study_1"; - private static final String TEST_SAMPLE_ID_1 = "test_sample_id_1"; - private static final String TEST_DATATYPE_1 = "test_datatype_1"; - private static final String TEST_DESCRIPTION_1 = "test_description_1"; - private static final String TEST_DISPLAY_NAME_1 = "test_display_name_1"; - private static final boolean TEST_PATIENT_ATTRIBUTE_1 = true; - private static final String TEST_PRIORITY_1 = "test_priority_1"; - private static final Integer TEST_ATTRIBUTE_COUNT_1 = 3; - private static final String TEST_ATTR_ID_2 = "test_attr_id_2"; - private static final int TEST_CANCER_STUDY_ID_2 = 2; - private static final String TEST_CANCER_STUDY_IDENTIFIER_2 = "test_study_2"; - private static final String TEST_SAMPLE_ID_2 = "test_sample_id_2"; - private static final String TEST_DATATYPE_2 = "test_datatype_2"; - private static final String TEST_DESCRIPTION_2 = "test_description_2"; - private static final String TEST_DISPLAY_NAME_2 = "test_display_name_2"; - private static final boolean TEST_PATIENT_ATTRIBUTE_2 = false; - private static final String TEST_PRIORITY_2 = "test_priority_2"; - private static final Integer TEST_ATTRIBUTE_COUNT_2 = 1; - - @Autowired - private WebApplicationContext wac; - - @Autowired - private ClinicalAttributeService clinicalAttributeService; - - private ObjectMapper objectMapper = new ObjectMapper(); - - private MockMvc mockMvc; - - @Bean - public ClinicalAttributeService clinicalAttributeService() { - return Mockito.mock(ClinicalAttributeService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(clinicalAttributeService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - - @Test - public void getAllClinicalAttributesDefaultProjection() throws Exception { - - List clinicalAttributes = createExampleClinicalAttributes(); - - Mockito.when(clinicalAttributeService.getAllClinicalAttributes(Mockito.any(), Mockito.any(), - Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(clinicalAttributes); - - mockMvc.perform(MockMvcRequestBuilders.get("/clinical-attributes") - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].cancerStudyId").doesNotExist()) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].clinicalAttributeId").value(TEST_ATTR_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].datatype").value(TEST_DATATYPE_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].displayName").value(TEST_DISPLAY_NAME_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].description").value(TEST_DESCRIPTION_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].priority").value(TEST_PRIORITY_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].cancerStudyId").doesNotExist()) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].clinicalAttributeId").value(TEST_ATTR_ID_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].datatype").value(TEST_DATATYPE_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].displayName").value(TEST_DISPLAY_NAME_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].description").value(TEST_DESCRIPTION_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].priority").value(TEST_PRIORITY_2)); - } - - @Test - public void getAllClinicalAttributesMetaProjection() throws Exception { - - BaseMeta baseMeta = new BaseMeta(); - baseMeta.setTotalCount(2); - - Mockito.when(clinicalAttributeService.getMetaClinicalAttributes()).thenReturn(baseMeta); - - mockMvc.perform(MockMvcRequestBuilders.get("/clinical-attributes") - .param("projection", "META")) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); - } - - @Test - public void getAllClinicalAttributesInStudyDefaultProjection() throws Exception { - - List clinicalAttributes = createExampleClinicalAttributes(); - - Mockito.when(clinicalAttributeService.getAllClinicalAttributesInStudy(Mockito.any(), Mockito.any(), - Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())) - .thenReturn(clinicalAttributes); - - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/clinical-attributes") - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].cancerStudyId").doesNotExist()) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].clinicalAttributeId").value(TEST_ATTR_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].datatype").value(TEST_DATATYPE_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].displayName").value(TEST_DISPLAY_NAME_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].description").value(TEST_DESCRIPTION_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].priority").value(TEST_PRIORITY_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].cancerStudyId").doesNotExist()) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].clinicalAttributeId").value(TEST_ATTR_ID_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].datatype").value(TEST_DATATYPE_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].displayName").value(TEST_DISPLAY_NAME_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].description").value(TEST_DESCRIPTION_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].priority").value(TEST_PRIORITY_2)); - } - - @Test - public void getAllClinicalAttributesInStudyMetaProjection() throws Exception { - - BaseMeta baseMeta = new BaseMeta(); - baseMeta.setTotalCount(2); - - Mockito.when(clinicalAttributeService.getMetaClinicalAttributesInStudy(Mockito.anyString())) - .thenReturn(baseMeta); - - mockMvc.perform(MockMvcRequestBuilders.get("/studies/test_study_id/clinical-attributes") - .param("projection", "META")) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.header().string(HeaderKeyConstants.TOTAL_COUNT, "2")); - } - - @Test - public void getClinicalAttributeInStudyNotFound() throws Exception { - - Mockito.when(clinicalAttributeService.getClinicalAttribute(Mockito.anyString(), Mockito.anyString())).thenThrow( - new ClinicalAttributeNotFoundException("test_study_id", "test_clinical_attribute_id")); - - mockMvc.perform(MockMvcRequestBuilders - .get("/studies/test_study_id/clinical-attributes/test_clinical_attribute_id") - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isNotFound()) - .andExpect(MockMvcResultMatchers.jsonPath("$.message") - .value("Clinical attribute not found in study test_study_id: test_clinical_attribute_id")); - } - - @Test - public void getClinicalAttributeInStudy() throws Exception { - - ClinicalAttribute clinicalAttribute = new ClinicalAttribute(); - clinicalAttribute.setAttrId(TEST_ATTR_ID_1); - clinicalAttribute.setCancerStudyId(TEST_CANCER_STUDY_ID_1); - clinicalAttribute.setCancerStudyIdentifier(TEST_CANCER_STUDY_IDENTIFIER_1); - clinicalAttribute.setDatatype(TEST_DATATYPE_1); - clinicalAttribute.setDescription(TEST_DESCRIPTION_1); - clinicalAttribute.setDisplayName(TEST_DISPLAY_NAME_1); - clinicalAttribute.setPatientAttribute(TEST_PATIENT_ATTRIBUTE_1); - clinicalAttribute.setPriority(TEST_PRIORITY_1); - - Mockito.when(clinicalAttributeService.getClinicalAttribute(Mockito.anyString(), Mockito.anyString())) - .thenReturn(clinicalAttribute); - - mockMvc.perform(MockMvcRequestBuilders - .get("/studies/test_study_id/clinical-attributes/test_clinical_attribute_id") - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$.cancerStudyId").doesNotExist()) - .andExpect(MockMvcResultMatchers.jsonPath("$.clinicalAttributeId").value(TEST_ATTR_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$.studyId").value(TEST_CANCER_STUDY_IDENTIFIER_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$.datatype").value(TEST_DATATYPE_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$.displayName").value(TEST_DISPLAY_NAME_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$.patientAttribute").value(TEST_PATIENT_ATTRIBUTE_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$.description").value(TEST_DESCRIPTION_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$.priority").value(TEST_PRIORITY_1)); - } - - @Test - public void fetchClinicalAttributes() throws Exception { - - List clinicalAttributes = createExampleClinicalAttributes(); - - Mockito.when(clinicalAttributeService.fetchClinicalAttributes(Mockito.anyList(), Mockito.anyString())) - .thenReturn(clinicalAttributes); - - List studyIds = new ArrayList<>(); - studyIds.add("study_id_1"); - studyIds.add("study_id_2"); - - mockMvc.perform(MockMvcRequestBuilders.post("/clinical-attributes/fetch") - .accept(MediaType.APPLICATION_JSON) - .contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(studyIds))) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].cancerStudyId").doesNotExist()) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].clinicalAttributeId").value(TEST_ATTR_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].datatype").value(TEST_DATATYPE_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].displayName").value(TEST_DISPLAY_NAME_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].description").value(TEST_DESCRIPTION_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].priority").value(TEST_PRIORITY_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].cancerStudyId").doesNotExist()) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].clinicalAttributeId").value(TEST_ATTR_ID_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].studyId").value(TEST_CANCER_STUDY_IDENTIFIER_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].datatype").value(TEST_DATATYPE_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].displayName").value(TEST_DISPLAY_NAME_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].patientAttribute").value(TEST_PATIENT_ATTRIBUTE_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].description").value(TEST_DESCRIPTION_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].priority").value(TEST_PRIORITY_2)); - } - - - @Test - public void getClinicalAttributeCountsBySampleIds() throws Exception { - - List clinicalAttributes = new ArrayList<>(); - ClinicalAttributeCount clinicalAttributeCount1 = new ClinicalAttributeCount(); - clinicalAttributeCount1.setAttrId(TEST_ATTR_ID_1); - clinicalAttributeCount1.setCount(TEST_ATTRIBUTE_COUNT_1); - clinicalAttributes.add(clinicalAttributeCount1); - ClinicalAttributeCount clinicalAttributeCount2 = new ClinicalAttributeCount(); - clinicalAttributeCount2.setAttrId(TEST_ATTR_ID_2); - clinicalAttributeCount2.setCount(TEST_ATTRIBUTE_COUNT_2); - clinicalAttributes.add(clinicalAttributeCount2); - - Mockito.when(clinicalAttributeService.getClinicalAttributeCountsBySampleIds(Mockito.any(), - Mockito.any())).thenReturn(clinicalAttributes); - - ClinicalAttributeCountFilter clinicalAttributeCountFilter = new ClinicalAttributeCountFilter(); - List sampleIdentifierList = new ArrayList<>(); - SampleIdentifier sampleIdentifier1 = new SampleIdentifier(); - sampleIdentifier1.setSampleId(TEST_SAMPLE_ID_1); - sampleIdentifier1.setStudyId(TEST_CANCER_STUDY_IDENTIFIER_1); - sampleIdentifierList.add(sampleIdentifier1); - SampleIdentifier sampleIdentifier2 = new SampleIdentifier(); - sampleIdentifier2.setSampleId(TEST_SAMPLE_ID_2); - sampleIdentifier2.setStudyId(TEST_CANCER_STUDY_IDENTIFIER_1); - sampleIdentifierList.add(sampleIdentifier2); - clinicalAttributeCountFilter.setSampleIdentifiers(sampleIdentifierList); - - mockMvc.perform(MockMvcRequestBuilders.post("/clinical-attributes/counts/fetch") - .accept(MediaType.APPLICATION_JSON) - .contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(clinicalAttributeCountFilter))) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].clinicalAttributeId").value(TEST_ATTR_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].count").value(TEST_ATTRIBUTE_COUNT_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].clinicalAttributeId").value(TEST_ATTR_ID_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].count").value(TEST_ATTRIBUTE_COUNT_2)); - } - - @Test - public void getClinicalAttributeCountsBySampleListId() throws Exception { - - List clinicalAttributes = new ArrayList<>(); - ClinicalAttributeCount clinicalAttributeCount1 = new ClinicalAttributeCount(); - clinicalAttributeCount1.setAttrId(TEST_ATTR_ID_1); - clinicalAttributeCount1.setCount(TEST_ATTRIBUTE_COUNT_1); - clinicalAttributes.add(clinicalAttributeCount1); - ClinicalAttributeCount clinicalAttributeCount2 = new ClinicalAttributeCount(); - clinicalAttributeCount2.setAttrId(TEST_ATTR_ID_2); - clinicalAttributeCount2.setCount(TEST_ATTRIBUTE_COUNT_2); - clinicalAttributes.add(clinicalAttributeCount2); - - Mockito.when(clinicalAttributeService.getClinicalAttributeCountsBySampleListId(Mockito.anyString())).thenReturn(clinicalAttributes); - - ClinicalAttributeCountFilter clinicalAttributeCountFilter = new ClinicalAttributeCountFilter(); - clinicalAttributeCountFilter.setSampleListId("test_sample_list_id"); - - mockMvc.perform(MockMvcRequestBuilders.post("/clinical-attributes/counts/fetch") - .accept(MediaType.APPLICATION_JSON) - .contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(clinicalAttributeCountFilter)) - .param("projection", "DETAILED")) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].clinicalAttributeId").value(TEST_ATTR_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].count").value(TEST_ATTRIBUTE_COUNT_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].clinicalAttributeId").value(TEST_ATTR_ID_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].count").value(TEST_ATTRIBUTE_COUNT_2)); - } - - private List createExampleClinicalAttributes() { - - List clinicalAttributeList = new ArrayList<>(); - ClinicalAttribute clinicalAttribute1 = new ClinicalAttribute(); - clinicalAttribute1.setAttrId(TEST_ATTR_ID_1); - clinicalAttribute1.setCancerStudyId(TEST_CANCER_STUDY_ID_1); - clinicalAttribute1.setCancerStudyIdentifier(TEST_CANCER_STUDY_IDENTIFIER_1); - clinicalAttribute1.setDatatype(TEST_DATATYPE_1); - clinicalAttribute1.setDescription(TEST_DESCRIPTION_1); - clinicalAttribute1.setDisplayName(TEST_DISPLAY_NAME_1); - clinicalAttribute1.setPatientAttribute(TEST_PATIENT_ATTRIBUTE_1); - clinicalAttribute1.setPriority(TEST_PRIORITY_1); - clinicalAttributeList.add(clinicalAttribute1); - ClinicalAttribute clinicalAttribute2 = new ClinicalAttribute(); - clinicalAttribute2.setAttrId(TEST_ATTR_ID_2); - clinicalAttribute2.setCancerStudyId(TEST_CANCER_STUDY_ID_2); - clinicalAttribute2.setCancerStudyIdentifier(TEST_CANCER_STUDY_IDENTIFIER_2); - clinicalAttribute2.setDatatype(TEST_DATATYPE_2); - clinicalAttribute2.setDescription(TEST_DESCRIPTION_2); - clinicalAttribute2.setDisplayName(TEST_DISPLAY_NAME_2); - clinicalAttribute2.setPatientAttribute(TEST_PATIENT_ATTRIBUTE_2); - clinicalAttribute2.setPriority(TEST_PRIORITY_2); - clinicalAttributeList.add(clinicalAttribute2); - return clinicalAttributeList; - } -} diff --git a/web/src/test/java/org/cbioportal/web/GenericAssayControllerTest.java b/web/src/test/java/org/cbioportal/web/GenericAssayControllerTest.java deleted file mode 100644 index 92aeaa55f12..00000000000 --- a/web/src/test/java/org/cbioportal/web/GenericAssayControllerTest.java +++ /dev/null @@ -1,172 +0,0 @@ -package org.cbioportal.web; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashMap; -import java.util.List; - -import com.fasterxml.jackson.databind.ObjectMapper; - -import org.cbioportal.model.GenericAssayData; -import org.cbioportal.model.meta.GenericAssayMeta; -import org.cbioportal.service.GenericAssayService; -import org.cbioportal.web.parameter.GenericAssayFilter; -import org.cbioportal.web.parameter.GenericAssayDataMultipleStudyFilter; -import org.cbioportal.web.parameter.GenericAssayMetaFilter; -import org.cbioportal.web.parameter.SampleMolecularIdentifier; -import org.hamcrest.Matchers; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.Mockito; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.http.MediaType; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; -import org.springframework.test.web.servlet.MockMvc; -import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; -import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -@RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration -public class GenericAssayControllerTest { - - private static final String PROF_ID = "test_prof_id"; - private static final String ENTITY_TYPE = "test_type"; - public static final String GENERIC_ASSAY_STABLE_ID_1 = "genericAssayStableId1"; - public static final String GENERIC_ASSAY_STABLE_ID_2 = "genericAssayStableId2"; - public static final String GENERIC_ASSAY_STABLE_ID_3 = "genericAssayStableId3"; - public static final String GENERIC_ASSAY_STABLE_ID_4 = "genericAssayStableId4"; - private static final String SAMPLE_ID = "test_sample_stable_id_1"; - private static final String VALUE_1 = "0.25"; - private static final String VALUE_2 = "-0.75"; - private static final String VALUE_3 = ""; - private static final String VALUE_4 = "NA"; - private static final String TEST_NAME = "name"; - private static final String TEST_NAME_VALUE = "test_name"; - private static final String TEST_DESCRIPTION = "description"; - private static final String TEST_DESCRIPTION_VALUE = "test_description"; - private static final HashMap GENERIC_ENTITY_META_PROPERTIES = new HashMap() {{ - put(TEST_NAME,TEST_NAME_VALUE); - put(TEST_DESCRIPTION,TEST_DESCRIPTION_VALUE); - }}; - - @Autowired - private WebApplicationContext wac; - - @Autowired - private GenericAssayService genericAssayService; - private MockMvc mockMvc; - - private ObjectMapper objectMapper = new ObjectMapper(); - - @Bean - public GenericAssayService genericAssayService() { - return Mockito.mock(GenericAssayService.class); - } - - @Before - public void setUp() throws Exception { - - Mockito.reset(genericAssayService); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - - @Test - public void testGenericAssayMetaGetMolecularProfileId() throws Exception { - List genericAssayMetaItems = createGenericAssayMetaItemsList(); - - Mockito.when(genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(genericAssayMetaItems); - - mockMvc.perform(MockMvcRequestBuilders.get("/generic-assay-meta/" + PROF_ID) - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].entityType").value(ENTITY_TYPE)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].stableId").value(GENERIC_ASSAY_STABLE_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].entityType").value(ENTITY_TYPE)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].stableId").value(GENERIC_ASSAY_STABLE_ID_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasKey(TEST_NAME))) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasValue(TEST_NAME_VALUE))) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasKey(TEST_DESCRIPTION))) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasValue(TEST_DESCRIPTION_VALUE))); - } - - - @Test - public void testGenericAssayMetaGetGenericAssayStableId() throws Exception { - List genericAssayMetaSingleItem = createGenericAssayMetaSingleItem(); - - Mockito.when(genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(genericAssayMetaSingleItem); - - mockMvc.perform(MockMvcRequestBuilders.get("/generic-assay-meta/generic-assay/" + GENERIC_ASSAY_STABLE_ID_2) - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(1))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].entityType").value(ENTITY_TYPE)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].stableId").value(GENERIC_ASSAY_STABLE_ID_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].genericEntityMetaProperties", Matchers.hasKey(TEST_NAME))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].genericEntityMetaProperties", Matchers.hasValue(TEST_NAME_VALUE))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].genericEntityMetaProperties", Matchers.hasKey(TEST_DESCRIPTION))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].genericEntityMetaProperties", Matchers.hasValue(TEST_DESCRIPTION_VALUE))); - } - - @Test - public void testGenericAssayMetaFetch() throws Exception { - List genericAssayMetaItems = createGenericAssayMetaItemsList(); - List genericAssayStableIds = Arrays.asList(GENERIC_ASSAY_STABLE_ID_1, GENERIC_ASSAY_STABLE_ID_2); - GenericAssayMetaFilter genericAssayMetaFilter = new GenericAssayMetaFilter(); - genericAssayMetaFilter.setGenericAssayStableIds(genericAssayStableIds); - - Mockito.when(genericAssayService.getGenericAssayMetaByStableIdsAndMolecularIds(Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(genericAssayMetaItems); - - mockMvc.perform(MockMvcRequestBuilders.post("/generic_assay_meta/fetch") - .accept(MediaType.APPLICATION_JSON) - .contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(genericAssayMetaFilter))) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$", Matchers.hasSize(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].entityType").value(ENTITY_TYPE)) - .andExpect(MockMvcResultMatchers.jsonPath("$[0].stableId").value(GENERIC_ASSAY_STABLE_ID_1)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].entityType").value(ENTITY_TYPE)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].stableId").value(GENERIC_ASSAY_STABLE_ID_2)) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasKey(TEST_NAME))) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasValue(TEST_NAME_VALUE))) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasKey(TEST_DESCRIPTION))) - .andExpect(MockMvcResultMatchers.jsonPath("$[1].genericEntityMetaProperties", Matchers.hasValue(TEST_DESCRIPTION_VALUE))); - } - - private List createGenericAssayMetaSingleItem() { - - List genericAssayMetaItems = new ArrayList<>(); - - GenericAssayMeta item2 = new GenericAssayMeta(ENTITY_TYPE, GENERIC_ASSAY_STABLE_ID_2, GENERIC_ENTITY_META_PROPERTIES); - genericAssayMetaItems.add(item2); - - return genericAssayMetaItems; - } - - private List createGenericAssayMetaItemsList() { - - List genericAssayMetaItems = new ArrayList<>(); - - GenericAssayMeta item1 = new GenericAssayMeta(ENTITY_TYPE, GENERIC_ASSAY_STABLE_ID_1); - genericAssayMetaItems.add(item1); - - GenericAssayMeta item2 = new GenericAssayMeta(ENTITY_TYPE, GENERIC_ASSAY_STABLE_ID_2, GENERIC_ENTITY_META_PROPERTIES); - genericAssayMetaItems.add(item2); - - return genericAssayMetaItems; - } -} \ No newline at end of file diff --git a/web/src/test/java/org/cbioportal/web/InfoControllerTest.java b/web/src/test/java/org/cbioportal/web/InfoControllerTest.java deleted file mode 100644 index fa78cbd25d1..00000000000 --- a/web/src/test/java/org/cbioportal/web/InfoControllerTest.java +++ /dev/null @@ -1,44 +0,0 @@ -package org.cbioportal.web; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Configuration; -import org.springframework.http.MediaType; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; -import org.springframework.test.web.servlet.MockMvc; -import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; -import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -@RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration -public class InfoControllerTest { - - @Autowired - private WebApplicationContext wac; - - private MockMvc mockMvc; - - @Before - public void setUp() throws Exception { - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - - @Test - public void getInfo() throws Exception { - - mockMvc.perform(MockMvcRequestBuilders.get("/info") - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.jsonPath("$.portalVersion").value("test_portal_version")) - .andExpect(MockMvcResultMatchers.jsonPath("$.dbVersion").value("test_db_version")); - } -} diff --git a/web/src/test/java/org/cbioportal/web/StaticDataTimestampControllerTest.java b/web/src/test/java/org/cbioportal/web/StaticDataTimestampControllerTest.java deleted file mode 100644 index 61ed230fd26..00000000000 --- a/web/src/test/java/org/cbioportal/web/StaticDataTimestampControllerTest.java +++ /dev/null @@ -1,54 +0,0 @@ -package org.cbioportal.web; - -import org.cbioportal.service.StaticDataTimestampService; -import org.hamcrest.Matchers; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.Mockito; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.http.MediaType; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; -import org.springframework.test.web.servlet.MockMvc; -import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; -import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.web.context.WebApplicationContext; - -import java.util.HashMap; - -@RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration("/applicationContext-web-test.xml") -@Configuration -public class StaticDataTimestampControllerTest { - @Autowired - private WebApplicationContext wac; - - @Autowired - private StaticDataTimestampService service; - - private MockMvc mockMvc; - - @Before - public void setUp() throws Exception { - Mockito.reset(service); - mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); - } - - @Test - public void getAllTimestamps() throws Exception { - HashMap pairs = new HashMap<>(); - pairs.put("gene", "1997-08-13 22:00:00"); - Mockito.when(service.getTimestamps(Mockito.anyList())).thenReturn(pairs); - - mockMvc.perform(MockMvcRequestBuilders.get("/timestamps") - .accept(MediaType.APPLICATION_JSON)) - .andExpect(MockMvcResultMatchers.status().isOk()) - .andExpect(MockMvcResultMatchers.jsonPath("$.gene").value("1997-08-13 22:00:00")); - } -} \ No newline at end of file diff --git a/web/src/test/java/org/cbioportal/web/config/RestAuthenticationEntryPoint.java b/web/src/test/java/org/cbioportal/web/config/RestAuthenticationEntryPoint.java deleted file mode 100644 index bdd259ccce4..00000000000 --- a/web/src/test/java/org/cbioportal/web/config/RestAuthenticationEntryPoint.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.web.config; - -import java.io.IOException; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.springframework.security.core.AuthenticationException; -import org.springframework.security.web.AuthenticationEntryPoint; -import org.springframework.stereotype.Component; - -@Component -public class RestAuthenticationEntryPoint implements AuthenticationEntryPoint { - - @Override - public void commence( HttpServletRequest request, HttpServletResponse response, - AuthenticationException authException ) throws IOException{ - response.sendError( HttpServletResponse.SC_UNAUTHORIZED, "Unauthorized" ); - } -} diff --git a/web/src/test/java/org/cbioportal/web/config/TokenAuthenticationSuccessHandler.java b/web/src/test/java/org/cbioportal/web/config/TokenAuthenticationSuccessHandler.java deleted file mode 100644 index 29ce1b7e7e7..00000000000 --- a/web/src/test/java/org/cbioportal/web/config/TokenAuthenticationSuccessHandler.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) 2018 Memorial Sloan-Kettering Cancer Center. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS - * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder - * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no - * obligations to provide maintenance, support, updates, enhancements or - * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be - * liable to any party for direct, indirect, special, incidental or - * consequential damages, including lost profits, arising out of the use of this - * software and its documentation, even if Memorial Sloan-Kettering Cancer - * Center has been advised of the possibility of such damage. - */ - -/* - * This file is part of cBioPortal. - * - * cBioPortal is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . -*/ - -package org.cbioportal.web.config; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.springframework.security.core.Authentication; -import org.springframework.security.web.authentication.AuthenticationSuccessHandler; - -public class TokenAuthenticationSuccessHandler implements AuthenticationSuccessHandler { - - @Override - public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) { - // We do not need to do anything extra on REST authentication success, because there is no page to redirect to - } - -} diff --git a/web/src/test/resources/applicationContext-security-test.xml b/web/src/test/resources/applicationContext-security-test.xml deleted file mode 100644 index b8c32b77ce5..00000000000 --- a/web/src/test/resources/applicationContext-security-test.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/web/src/test/resources/applicationContext-web-test.xml b/web/src/test/resources/applicationContext-web-test.xml deleted file mode 100644 index 7ddf28340cb..00000000000 --- a/web/src/test/resources/applicationContext-web-test.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - classpath:test.properties - - - - - - - - diff --git a/web/src/test/resources/logback.xml b/web/src/test/resources/logback.xml deleted file mode 100644 index 9d21a927c45..00000000000 --- a/web/src/test/resources/logback.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n - - - - - - - - - - - \ No newline at end of file diff --git a/web/src/test/resources/test.properties b/web/src/test/resources/test.properties deleted file mode 100644 index fa7fb58e6c0..00000000000 --- a/web/src/test/resources/test.properties +++ /dev/null @@ -1,2 +0,0 @@ -cache.endpoint.enabled=true -cache.endpoint.api-key=correct-key